<?xml version="1.0" encoding="UTF-8"?>
<rss  xmlns:atom="http://www.w3.org/2005/Atom" 
      xmlns:media="http://search.yahoo.com/mrss/" 
      xmlns:content="http://purl.org/rss/1.0/modules/content/" 
      xmlns:dc="http://purl.org/dc/elements/1.1/" 
      version="2.0">
<channel>
<title>Ibis</title>
<link>https://ibis-project.org/posts.html</link>
<atom:link href="https://ibis-project.org/posts.xml" rel="self" type="application/rss+xml"/>
<description>the portable Python dataframe library</description>
<generator>quarto-1.9.18</generator>
<lastBuildDate>Wed, 12 Feb 2025 00:00:00 GMT</lastBuildDate>
<item>
  <title>Dynamic UDF Rewriting with Predicate Pushdowns</title>
  <dc:creator>Hussain Sultan</dc:creator>
  <link>https://ibis-project.org/posts/udf-rewriting/</link>
  <description><![CDATA[ 






<section id="introduction" class="level2">
<h2 class="anchored" data-anchor-id="introduction">Introduction</h2>
<p>In an ideal world, deploying machine learning models within SQL queries would be as simple as calling a built-in function. Unfortunately, many ML predictions live inside <strong>User-Defined Functions (UDFs)</strong> that traditional SQL planners can’t modify, preventing optimizations like predicate pushdowns.</p>
<p>This blog post will showcase how you can <strong>prune decision tree models based on query filters</strong> by dynamically rewriting your expression using <strong>Ibis</strong> and <strong>quickgrove</strong>, an experimental <a href="https://developers.google.com/machine-learning/decision-forests/intro-to-gbdt">GBDT</a> inference library built in Rust. We’ll also show how <a href="https://github.com/letsql/letsql">LetSQL</a> can simplify this pattern further and integrate seamlessly into your ML workflows.</p>
</section>
<section id="ml-models-meet-sql" class="level2">
<h2 class="anchored" data-anchor-id="ml-models-meet-sql">ML models meet SQL</h2>
<p>When you deploy machine learning models (like a gradient-boosted trees model from XGBoost) in a data warehouse, you typically wrap them in a UDF. Something like:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode sql code-with-copy"><code class="sourceCode sql"><span id="cb1-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">SELECT</span></span>
<span id="cb1-2">    my_udf_predict(carat, <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">depth</span>, color, clarity, <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">..</span>.)</span>
<span id="cb1-3"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">FROM</span> diamonds</span>
<span id="cb1-4"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">WHERE</span> color_i <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">AND</span> clarity_vvs2 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span></span></code></pre></div></div>
<p>The challenge is that <strong>SQL planners don’t know what’s happening inside the UDF</strong>. Even if you filter <code>color_i &lt; 1</code>, the full model, including skippable tree paths, are evaluated for every row. With tree-based models, entire branches might never be evaluated at all — so the ideal scenario is to prune those unnecessary branches <em>before</em> evaluating them.</p>
</section>
<section id="smart-udfs-with-ibis" class="level2">
<h2 class="anchored" data-anchor-id="smart-udfs-with-ibis">Smart UDFs with Ibis</h2>
<p><strong>Ibis</strong> is known for letting you write engine-agnostic deferred expressions in Python without losing the power of underlying engines like Spark, DuckDB, or BigQuery. Meanwhile, quickgrove provides a mechanism to prune Gradient Boosted Decision Tree (GBDT) models based on known filter conditions.</p>
<p><strong>Key Ideas</strong>:</p>
<ol type="1">
<li><strong>Prune decision trees</strong> by removing branches that can never be reached, given the known filters</li>
<li><strong>Rewrite expressions</strong> with the pruned model into the query plan to skip unnecessary computations</li>
</ol>
<section id="understanding-tree-pruning" class="level3">
<h3 class="anchored" data-anchor-id="understanding-tree-pruning">Understanding tree pruning</h3>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/udf-rewriting/images/tree-pruning.png" class="img-fluid figure-img"></p>
<figcaption>Tree Pruning</figcaption>
</figure>
</div>
<p>Take a simple example: a decision tree that splits on <code>color_i &lt; 1</code>. If your query also has a predicate <code>color &lt; 1</code>, any branches with feature <code>color_i &gt;= 1</code> will never be evaluated. By <strong>removing</strong> that branch, the tree becomes smaller and faster to evaluate—especially when you have hundreds of trees (as in many gradient-boosted models).</p>
<p><strong>Reference</strong>: Check out the <a href="https://arxiv.org/pdf/2206.00136">Raven optimizer</a> paper. It demonstrates how you can prune nodes in query plans for tree-based inference, so we’re taking a similar approach here for <strong>forests</strong> (GBDTs) using <strong>Ibis.</strong></p>
</section>
<section id="quickgrove-prunable-gbdt-models" class="level3">
<h3 class="anchored" data-anchor-id="quickgrove-prunable-gbdt-models">Quickgrove: prunable GBDT models</h3>
<p>Quickgrove is an experimental package that can load GBDT JSON models and provides a <code>.prune(...)</code> API to remove unreachable branches. For example:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#pip install quickgrove</span></span>
<span id="cb2-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> quickgrove</span>
<span id="cb2-3"></span>
<span id="cb2-4">model <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> quickgrove.json_load(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"diamonds_model.json"</span>)  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Load an XGBoost model</span></span>
<span id="cb2-5">model.prune([quickgrove.Feature(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color_i"</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.2</span>]) <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Prune based on known predicate</span></span></code></pre></div></div>
<p>Once pruned, the model is leaner to evaluate. Note: The results heavily depend on model splits and interactions with predicate pushdowns.</p>
</section>
</section>
<section id="scalar-pyarrow-udfs-in-ibis" class="level2 page-columns page-full">
<h2 class="anchored" data-anchor-id="scalar-pyarrow-udfs-in-ibis">Scalar PyArrow UDFs in Ibis</h2>

<div class="no-row-height column-margin column-container"><div class="">
<p>Please note that we are using our own modified DataFusion backend. The DataFusion backend and DuckDB backend behave differently: DuckDB expects a <code>ChunkedArray</code> while DataFusion UDFs expect <code>ArrayRef</code>. We are working on extending quickgrove to work with the DuckDB backend.</p>
</div></div><p>We’ll define a simple Ibis UDF that calls our <code>model.predict_arrays</code> under the hood:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb3-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.expr.datatypes <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> dt</span>
<span id="cb3-3"></span>
<span id="cb3-4">ibis.set_backend(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"datafusion"</span>)</span>
<span id="cb3-5"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@ibis.udf.scalar.pyarrow</span></span>
<span id="cb3-6"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> predict_gbdt(</span>
<span id="cb3-7">    carat: dt.float64,</span>
<span id="cb3-8">    depth: dt.float64,</span>
<span id="cb3-9">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># ... other features ...</span></span>
<span id="cb3-10">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> dt.float32:</span>
<span id="cb3-11">    array_list <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [carat, depth, ...]</span>
<span id="cb3-12">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> model.predict_arrays(array_list)</span></code></pre></div></div>
<p>Currently, UDFs are opaque to Ibis. We need Ibis to teach Ibis how to rewrite a udf based on predicates it knows about.</p>
</section>
<section id="making-ibis-udfs-predicate-aware" class="level2">
<h2 class="anchored" data-anchor-id="making-ibis-udfs-predicate-aware">Making Ibis UDFs predicate-aware</h2>
<p>Here’s the general process:</p>
<ol type="1">
<li><strong>Collect predicates</strong> from the user’s filter (e.g.&nbsp;<code>x &lt; 0.3</code>).</li>
<li><strong>Prune</strong> the model based on those predicates (removing unreachable tree branches).</li>
<li><strong>Rewrite</strong> a new UDF that references the pruned model, preserving the rest of the query plan.</li>
</ol>
<section id="collecting-predicates" class="level3">
<h3 class="anchored" data-anchor-id="collecting-predicates">1. Collecting predicates</h3>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.expr.operations <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Filter, Less, Field, Literal</span>
<span id="cb4-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> typing <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> List, Dict</span>
<span id="cb4-3"></span>
<span id="cb4-4"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> collect_predicates(filter_op: Filter) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> List[<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>]:</span>
<span id="cb4-5">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Extract 'column &lt; value' predicates from a Filter operation."""</span></span>
<span id="cb4-6">    predicates <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> []</span>
<span id="cb4-7">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> pred <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> filter_op.predicates:</span>
<span id="cb4-8">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">isinstance</span>(pred, Less) <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">and</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">isinstance</span>(pred.left, Field):</span>
<span id="cb4-9">            <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">isinstance</span>(pred.right, Literal):</span>
<span id="cb4-10">                predicates.append({</span>
<span id="cb4-11">                    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"column"</span>: pred.left.name,</span>
<span id="cb4-12">                    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"op"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Less"</span>,</span>
<span id="cb4-13">                    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"value"</span>: pred.right.value</span>
<span id="cb4-14">                })</span>
<span id="cb4-15">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> predicates</span></code></pre></div></div>
</section>
<section id="pruning-model-and-creating-a-new-udf" class="level3">
<h3 class="anchored" data-anchor-id="pruning-model-and-creating-a-new-udf">2. Pruning model and creating a new UDF</h3>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> functools</span>
<span id="cb5-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.expr.operations <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ScalarUDF</span>
<span id="cb5-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.common.collections <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> FrozenDict</span>
<span id="cb5-4"></span>
<span id="cb5-5"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> create_pruned_udf(original_udf, model, predicates):</span>
<span id="cb5-6">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Create a new UDF using the pruned model based on the collected predicates."""</span></span>
<span id="cb5-7">    <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> quickgrove <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Feature</span>
<span id="cb5-8"></span>
<span id="cb5-9">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Prune the model</span></span>
<span id="cb5-10">    pruned_model <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> model.prune([</span>
<span id="cb5-11">        Feature(pred[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"column"</span>]) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> pred[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"value"</span>]</span>
<span id="cb5-12">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> pred <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> predicates</span>
<span id="cb5-13">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> pred[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"op"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Less"</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">and</span> pred[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"value"</span>] <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">is</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">not</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span></span>
<span id="cb5-14">    ])</span>
<span id="cb5-15">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># For simplicity, let’s assume we know the relevant features or keep them the same.</span></span>
<span id="cb5-16"></span>
<span id="cb5-17">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> fn_from_arrays(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span>arrays):</span>
<span id="cb5-18">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> pruned_model.predict_arrays(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>(arrays))</span>
<span id="cb5-19"></span>
<span id="cb5-20">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Construct a dynamic UDF class</span></span>
<span id="cb5-21">    meta <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> {</span>
<span id="cb5-22">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"dtype"</span>: dt.float32,</span>
<span id="cb5-23">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"__input_type__"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pyarrow"</span>,</span>
<span id="cb5-24">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"__func__"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">property</span>(<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>: fn_from_arrays),</span>
<span id="cb5-25">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"__config__"</span>: FrozenDict(volatility<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"immutable"</span>),</span>
<span id="cb5-26">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"__udf_namespace__"</span>: original_udf.__module_</span>
<span id="cb5-27">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"__module__"</span>: original_udf.__module__,</span>
<span id="cb5-28">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"__func_name__"</span>: original_udf.<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">__name__</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"_pruned"</span></span>
<span id="cb5-29">    }</span>
<span id="cb5-30"></span>
<span id="cb5-31">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Create a new ScalarUDF node type on the fly</span></span>
<span id="cb5-32">    node <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">type</span>(original_udf.<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">__name__</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"_pruned"</span>, (ScalarUDF,), {<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>fields, <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>meta})</span>
<span id="cb5-33"></span>
<span id="cb5-34">    <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@functools.wraps</span>(fn_from_arrays)</span>
<span id="cb5-35">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> construct(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span>args, <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>kwargs):</span>
<span id="cb5-36">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> node(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span>args, <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>kwargs).to_expr()</span>
<span id="cb5-37"></span>
<span id="cb5-38">    construct.fn <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> fn_from_arrays</span>
<span id="cb5-39">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> construct</span></code></pre></div></div>
</section>
<section id="rewriting-the-plan" class="level3">
<h3 class="anchored" data-anchor-id="rewriting-the-plan">3. Rewriting the plan</h3>
<p>Now we use an Ibis rewrite rule (or a custom function) to <strong>detect filters</strong> on the expression, prune the model, and produce a new project/filter node.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.expr.operations <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Project</span>
<span id="cb6-2"></span>
<span id="cb6-3"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@replace</span>(p.Filter)</span>
<span id="cb6-4"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> prune_gbdt_model(filter_op, original_udf, model):</span>
<span id="cb6-5">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Rewrite rule to prune GBDT model based on filter predicates."""</span></span>
<span id="cb6-6"></span>
<span id="cb6-7">    predicates <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> collect_predicates(filter_op)</span>
<span id="cb6-8">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">not</span> predicates:</span>
<span id="cb6-9">        <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Nothing to prune if no relevant predicates</span></span>
<span id="cb6-10">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> filter_op</span>
<span id="cb6-11">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># in a real implementation you'd want to match on a ScalarUDF and ensure that the instance of the model type is</span></span>
<span id="cb6-12">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># the one implemented with quickgrove</span></span>
<span id="cb6-13">    pruned_udf, required_features <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> create_pruned_udf(original_udf, model, predicates)</span>
<span id="cb6-14"></span>
<span id="cb6-15">    parent_op <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> filter_op.parent</span>
<span id="cb6-16">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Build a new projection with the pruned UDF</span></span>
<span id="cb6-17">    new_values <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> {}</span>
<span id="cb6-18">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> name, value <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> parent_op.values.items():</span>
<span id="cb6-19">        <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># If it’s the column that calls the UDF, swap with pruned version</span></span>
<span id="cb6-20">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> name <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"prediction"</span>:</span>
<span id="cb6-21">            <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># For brevity, assume we pass the same columns to the pruned UDF</span></span>
<span id="cb6-22">            new_values[name] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pruned_udf(value.op().args[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>], value.op().args[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>])</span>
<span id="cb6-23">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">else</span>:</span>
<span id="cb6-24">            new_values[name] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> value</span>
<span id="cb6-25"></span>
<span id="cb6-26">    new_project <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> Project(parent_op.parent, new_values)</span>
<span id="cb6-27"></span>
<span id="cb6-28">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Re-add the filter conditions on top</span></span>
<span id="cb6-29">    new_predicates <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> []</span>
<span id="cb6-30">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> pred <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> filter_op.predicates:</span>
<span id="cb6-31">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">isinstance</span>(pred, Less) <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">and</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">isinstance</span>(pred.left, Field):</span>
<span id="cb6-32">            new_predicates.append(</span>
<span id="cb6-33">                Less(Field(new_project, pred.left.name), pred.right)</span>
<span id="cb6-34">            )</span>
<span id="cb6-35">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">else</span>:</span>
<span id="cb6-36">            new_predicates.append(pred)</span>
<span id="cb6-37"></span>
<span id="cb6-38">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> Filter(parent<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>new_project, predicates<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>new_predicates)</span></code></pre></div></div>
</section>
<section id="diff" class="level3">
<h3 class="anchored" data-anchor-id="diff">Diff</h3>
<p>For a query like the following:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb7-2">    t.mutate(prediction<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>predict_gbdt(t.carat, t.depth, ...))</span>
<span id="cb7-3">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(</span>
<span id="cb7-4">        (t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"clarity_vvs2"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb7-5">        (t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color_i"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb7-6">        (t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color_j"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb7-7">    )</span>
<span id="cb7-8">    .select(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"prediction"</span>)</span>
<span id="cb7-9">)</span></code></pre></div></div>
<p>See the diff below:</p>
<p>Notice that with pruning we can drop some of the projections in the UDF e.g., <code>color_i</code>, <code>color_j</code> and <code>clarity_vvs2</code>. The underlying engine (e.g., DataFusion) may optimize this further when pulling data for UDFs. We cannot completely drop these from the query expression.</p>
<pre class="shell"><code>- predict_gbdt_3(
+ predict_gbdt_pruned(
    carat, depth, table, x, y, z,
    cut_good, cut_ideal, cut_premium, cut_very_good,
-   color_e, color_f, color_g, color_h, color_i, color_j,
+   color_e, color_f, color_g, color_h,
    clarity_if, clarity_si1, clarity_si2, clarity_vs1,
-   clarity_vs2, clarity_vvs1, clarity_vvs2
+   clarity_vs2, clarity_vvs1
)</code></pre>
</section>
</section>
<section id="putting-it-all-together" class="level2">
<h2 class="anchored" data-anchor-id="putting-it-all-together">Putting it all together</h2>
<p>The complete example can be found <a href="https://github.com/letsql/trusty/blob/main/python/examples/ibis_filter_condition.py">here</a>.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 1. Load your dataset into Ibis</span></span>
<span id="cb9-2">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_csv(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"diamonds_data.csv"</span>)</span>
<span id="cb9-3"></span>
<span id="cb9-4">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb9-5">    t.mutate(prediction<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>predict_gbdt(t.carat, t.depth, ...))</span>
<span id="cb9-6">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(</span>
<span id="cb9-7">        (t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"clarity_vvs2"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb9-8">        (t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color_i"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb9-9">        (t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color_j"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb9-10">    )</span>
<span id="cb9-11">    .select(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"prediction"</span>)</span>
<span id="cb9-12">)</span>
<span id="cb9-13"></span>
<span id="cb9-14"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 3. Apply your custom optimization</span></span>
<span id="cb9-15">optimized_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> prune_gbdt_model(expr.op(), predict_gbdt, model)</span>
<span id="cb9-16"></span>
<span id="cb9-17"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># 4. Execute the optimized query</span></span>
<span id="cb9-18">result <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> optimized_expr.to_expr().execute()</span></code></pre></div></div>
<p>When this is done, the model inside <code>predict_gbdt</code> will be <strong>pruned</strong> based on the expression’s filter conditions. This can yield significant speedups on large datasets (see Table&nbsp;1).</p>
</section>
<section id="performance-impact" class="level2">
<h2 class="anchored" data-anchor-id="performance-impact">Performance impact</h2>
<p><a href="https://github.com/letsql/quickgrove/blob/main/python/examples/ibis_filter_condition_bench.py">Here</a> is the benchmark results ran on Apple M2 Mac Mini, 8 cores / 8GB Memory run with a model trained with 100 trees and depth 6 with following filter conditions:</p>
<pre><code>_.carat &lt; 1,
_.clarity_vvs2 &lt; 1,
_.color_i &lt; 1,
_.color_j &lt; 1,</code></pre>
<p>Benchmark results:</p>
<div id="tbl-perf" class="quarto-float quarto-figure quarto-figure-center anchored">
<figure class="quarto-float quarto-float-tbl figure">
<figcaption class="quarto-float-caption-top quarto-float-caption quarto-float-tbl" id="tbl-perf-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
Table&nbsp;1: Performance improvements
</figcaption>
<div aria-describedby="tbl-perf-caption-0ceaefa1-69ba-4598-a22c-09a6ac19f8ca">
<table class="caption-top table">
<thead>
<tr class="header">
<th>File Size</th>
<th>Regular (s)</th>
<th>Optimized (s)</th>
<th>Improvement</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>5M</td>
<td>0.82 ±0.02</td>
<td>0.67 ±0.02</td>
<td>18.0%</td>
</tr>
<tr class="even">
<td>25M</td>
<td>4.16 ±0.01</td>
<td>3.46 ±0.05</td>
<td>16.7%</td>
</tr>
<tr class="odd">
<td>100M</td>
<td>16.80 ±0.17</td>
<td>14.07 ±0.11</td>
<td>16.3%</td>
</tr>
</tbody>
</table>
</div>
</figure>
</div>
<p><strong>Key takeaway</strong>: As data volume grows, skipping unneeded tree branches can translate to real compute savings, albeit heavily dependent on how pertinent the filter conditions might be.</p>
</section>
<section id="letsql-simplifying-udf-rewriting" class="level2">
<h2 class="anchored" data-anchor-id="letsql-simplifying-udf-rewriting">LetSQL: simplifying UDF rewriting</h2>
<p><a href="https://letsql.com/">LetSQL</a> makes advanced UDF rewriting and multi-engine pipelines much simpler. It builds on the same ideas we explored here but wraps them in a higher-level API.</p>
<p>Here’s a quick glimpse of how LetSQL might simplify the pattern:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># pip install letsql</span></span>
<span id="cb11-2"></span>
<span id="cb11-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> letsql <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> ls</span>
<span id="cb11-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> letsql.expr.ml <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> make_quickgrove_udf, rewrite_quickgrove_expression</span>
<span id="cb11-5"></span>
<span id="cb11-6">model_path <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"xgboost_model.json"</span></span>
<span id="cb11-7">predict_udf <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> make_quickgrove_udf(model_path)</span>
<span id="cb11-8"></span>
<span id="cb11-9">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ls.memtable(df).mutate(pred<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>predict_udf.on_expr).<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(ls._.carat <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb11-10">optimized_t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> rewrite_quickgrove_expression(t)</span>
<span id="cb11-11"></span>
<span id="cb11-12">result <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ls.execute(optimized_t)</span></code></pre></div></div>
<p>The complete example can be found <a href="https://github.com/letsql/letsql/blob/main/examples/quickgrove_udf.py">here</a>. With LetSQL, you get a <strong>shorter, more declarative approach</strong> to the same optimization logic we manually coded with Ibis. It abstracts away the gritty parts of rewriting your query plan.</p>
</section>
<section id="best-practices-considerations" class="level2">
<h2 class="anchored" data-anchor-id="best-practices-considerations">Best practices &amp; considerations</h2>
<ul>
<li><strong>Predicate Types</strong>: Currently, we demonstrated <code>column &lt; value</code> logic. You can extend it to handle <code>&lt;=</code>, <code>&gt;</code>, <code>BETWEEN</code>, or even categorical splits.</li>
<li><strong>Quickgrove</strong> only supports a handful of objective functions and most notably does not have categorical support yet. In theory, categorical variables make better candidates for pruning based on filter conditions. It only supports XGBoost format.</li>
<li><strong>Model Format</strong>: XGBoost JSON is straightforward to parse. Other formats (e.g.&nbsp;LightGBM, scikit-learn trees) require similar logic or conversion steps.</li>
<li><strong>Edge Cases</strong>: If the filter references columns not in the model features, or if multiple filters combine in more complex ways, your rewriting logic may need more robust parsing.</li>
<li><strong>When to Use</strong>: This approach is beneficial when queries often filter on the same columns your trees split on. For purely adhoc queries or rarely used filters, the overhead of rewriting might outweigh the benefit.</li>
</ul>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>Combining <strong>Ibis</strong> with a prune-friendly framework like quickgrove lets you optimize large-scale ML inference inside ML workflows. By <strong>pushing filter predicates down into your decision trees</strong>, you speed up queries significantly.</p>
<p>With LetSQL, you can streamline this entire process—especially if you’re looking for an out-of-the-box solution that integrates with multiple engines along with batteries included features like caching and aggregate/window UDFs. For the next steps, consider experimenting with more complex models, exploring different tree pruning strategies, or even extending this pattern to other ML models beyond GBDTs.</p>
<ul>
<li><strong>Try it out</strong>: Explore the Ibis documentation to learn how to build custom UDFs.</li>
<li><strong>Dive deeper</strong>: Check out <a href="https://github.com/letsql/trusty">quickgrove</a> or read the Raven optimizer <a href="https://arxiv.org/pdf/2206.00136">paper</a>.</li>
<li><strong>Experiment with LetSQL</strong>: If you need a polished solution for dynamic ML UDF rewriting, <a href="https://github.com/letsql/letsql">LetSQL</a> may be just the ticket.</li>
</ul>
<hr>
</section>
<section id="resources" class="level2">
<h2 class="anchored" data-anchor-id="resources">Resources</h2>
<ul>
<li><strong>Raven Paper</strong>: <a href="https://arxiv.org/pdf/2206.00136">End-to-end Optimization of Machine Learning Prediction Queries</a></li>
<li><strong>Ibis + Torch</strong>: <a href="https://ibis-project.org/posts/torch/">Ibis Project Blog Post</a></li>
<li><a href="https://www.letsql.com/posts/multi-engine-data-stack-ibis/">Multi-Engine Data Stack with Ibis</a></li>
</ul>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>case study</category>
  <category>machine learning</category>
  <category>ecosystem</category>
  <guid>https://ibis-project.org/posts/udf-rewriting/</guid>
  <pubDate>Wed, 12 Feb 2025 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/udf-rewriting/images/tree-pruning.png" medium="image" type="image/png" height="84" width="144"/>
</item>
<item>
  <title>Does Ibis understand SQL?</title>
  <dc:creator>Deepyaman Datta</dc:creator>
  <link>https://ibis-project.org/posts/does-ibis-understand-sql/</link>
  <description><![CDATA[ 






<p>Last month, an <a href="https://docs.getdbt.com/blog/the-levels-of-sql-comprehension">insightful article on the dbt Developer Blog on what SQL comprehension really means</a> came across my LinkedIn feed. The big deal about SDF is that it, unlike dbt, actually <em>understands</em> SQL. As an Ibis user and contributor, several of the concepts covered in the post were familiar—in fact, I first learned about Ibis because the product I was working on required an <a href="https://en.wikipedia.org/wiki/Intermediate_representation">intermediate representation</a> that could be compiled to Flink SQL code. In that case, as a dataframe library that interfaces with databases, does Ibis also understand SQL?</p>
<section id="tldr" class="level2">
<h2 class="anchored" data-anchor-id="tldr">Tl;dr</h2>
<p>Ibis doesn’t understand SQL per se, but it does understand what you’re trying to do. Ibis, much like SQL, defines a standardized interface for working with databases. Because Ibis understands queries expressed through this user interface, it also provides users with some of the unique capabilities SDF offers, including the ability to execute said logic on the backend of the user’s choice.</p>
</section>
<section id="how-does-ibis-work" class="level2">
<h2 class="anchored" data-anchor-id="how-does-ibis-work">How does Ibis work?</h2>
<p>To answer the question of whether Ibis understands SQL, we first need to understand the internals of Ibis. Specifically, how is the code that users write with Ibis eventually executed on a SQL backend?</p>
<section id="building-an-expression" class="level3">
<h3 class="anchored" data-anchor-id="building-an-expression">Building an expression</h3>
<p>Ibis provides a dataframe API for writing expressions. A <a href="https://docs.getdbt.com/blog/sql-comprehension-technologies">follow-up article on the dbt Developer Blog on the key technologies behind SQL comprehension</a> used the following SQL query in illustrating what the parser and compiler do:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode sql code-with-copy"><code class="sourceCode sql"><span id="cb1-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">select</span> x <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">as</span> u <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">from</span> t <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">where</span> x <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span></span></code></pre></div></div>
<p>In SQL, the <em>binder</em> adds type information to the syntax tree produced by the <em>parser</em>. This order of operations differs from the way Ibis works; in Ibis, <a href="../../concepts/internals.html#the-ibis.expr.types.node-class"><code>Node</code></a>s— the core operations that can be applied to expressions, such as <code>ibis.expr.operations.Add</code> and <code>ibis.expr.operations.WindowFunction</code>—must be applied to <a href="../../concepts/internals.html#the-expr-class"><code>Expr</code></a> objects containing data type and shape information.</p>
<p>The <a href="../../reference/expression-tables.html#ibis.expr.types.relations.Table"><code>Table</code></a> is one of the core Ibis data structures, analogous to a SQL table. It’s also an <code>Expr</code> subclass. We begin by manually defining a <code>Table</code> with our desired schema here, but one can also construct a table from an existing database table, file, or in-memory data representation:</p>
<div id="830dc91c" class="cell" data-execution_count="1">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb2-2"></span>
<span id="cb2-3">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.table(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>(x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"int32"</span>, y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"float"</span>, z<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"string"</span>), name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"t"</span>)</span></code></pre></div></div>
</div>
<p>Next, we apply a filter and rename the <code>x</code> column as in the SQL query above:</p>
<div id="7b29a9e3" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(t.x <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>).select(t.x.name(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"u"</span>))</span></code></pre></div></div>
</div>
<p>In SQL, the <em>parser</em> translates the query into a syntax tree, but in Ibis, expressions are inherently represented as a tree of <code>Expr</code> and <code>Node</code> objects. Ibis enables users to <a href="../../reference/expression-tables.html#ibis.expr.types.relations.Table.visualize"><code>visualize()</code></a> this intermediate representation for any expression:</p>
<div id="9ab3ff61" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.expr.visualize <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> to_graph</span>
<span id="cb4-2"></span>
<span id="cb4-3">to_graph(expr)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="3">
<div>
<figure class="figure">
<p><img src="https://ibis-project.org/posts/does-ibis-understand-sql/index_files/figure-html/cell-4-output-1.svg" class="img-fluid figure-img"></p>
</figure>
</div>
</div>
</div>
<p>In non-interactive mode, pretty-printing the expression yields an equivalent textual representation:</p>
<div id="ab2eb270" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1">expr</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="4">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">r0 := UnboundTable: t
  x int32
  y float64
  z string

r1 := Filter[r0]
  r0.x &gt; 0

Project[r1]
  u: r1.x
</pre>
</div>
</div>
<p>Look at that! Unsurprisingly, the resulting <code>repr()</code> matches the generated logical plan from the SQL comprehension technologies article:</p>
<p><img src="https://ibis-project.org/posts/does-ibis-understand-sql/logical_plan.png" class="img-fluid"></p>
<p>Note that the abstract syntax tree is an artifact of the parsing step and has no direct Ibis analog.</p>
</section>
<section id="compiling-the-expression" class="level3">
<h3 class="anchored" data-anchor-id="compiling-the-expression">Compiling the expression</h3>
<p>In the past, Ibis would compile expressions to SQL using its own SQL generation logic. However, with the <a href="https://ibis-project.org/posts/ibis-version-9.0.0-release/">completion of “the big refactor” in Ibis 9.0</a>, Ibis fully transitioned to producing <a href="https://github.com/tobymao/sqlglot">SQLGlot</a> expressions under the hood.</p>
<p>We can see the intermediate SQLGlot representation of our expression using the <code>to_sqlglot()</code> method on an Ibis backend compiler implementation:</p>
<div id="a7a3d766" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.backends.sql.compilers.duckdb <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> compiler</span>
<span id="cb6-2"></span>
<span id="cb6-3">query <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> compiler.to_sqlglot(expr)</span>
<span id="cb6-4">query</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="5">
<pre><code>Select(
  expressions=[
    Alias(
      this=Column(
        this=Identifier(this='x', quoted=True),
        table=Identifier(this='t0', quoted=True)),
      alias=Identifier(this='u', quoted=True))],
  from=From(
    this=Table(
      this=Identifier(this='t', quoted=True),
      alias=Identifier(this='t0', quoted=True))),
  where=Where(
    this=GT(
      this=Column(
        this=Identifier(this='x', quoted=True),
        table=Identifier(this='t0', quoted=True)),
      expression=Literal(this=0, is_string=False))))</code></pre>
</div>
</div>
<p>Ibis delegates SQL generation to SQLGlot, essentially calling the <code>sql()</code> method on the above query:</p>
<div id="2c34887d" class="cell" data-execution_count="6">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1">query.sql()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="6">
<pre><code>'SELECT "t0"."x" AS "u" FROM "t" AS "t0" WHERE "t0"."x" &gt; 0'</code></pre>
</div>
</div>
<p>Ibis also provides a top-level <a href="../../reference/expression-generic.html#ibis.to_sql"><code>to_sql()</code></a> method, so most users don’t need to be aware of SQLGlot or the inner workings of Ibis expression compilation—unless they want to:</p>
<div id="6ab89df4" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1">ibis.to_sql(expr)</span></code></pre></div></div>
<div class="cell-output cell-output-display cell-output-markdown" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode sql code-with-copy"><code class="sourceCode sql"><span id="cb11-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">SELECT</span></span>
<span id="cb11-2">  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"x"</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">AS</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"u"</span></span>
<span id="cb11-3"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">FROM</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t"</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">AS</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span></span>
<span id="cb11-4"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">WHERE</span></span>
<span id="cb11-5">  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"x"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span></span></code></pre></div></div>
</div>
</div>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Tip</span>Why SQLGlot?
</div>
</div>
<div class="callout-body-container callout-body">
<p><a href="https://sqlglot.com/sqlglot.html">SQLGlot is a no-dependency SQL parser, transpiler, optimizer, and engine.</a> It’s a widely-used open-source project that powers the SQL comprehension and generation capabilities of tools like <a href="https://github.com/TobikoData/sqlmesh">SQLMesh</a>, <a href="https://github.com/apache/superset">Apache Superset</a>, and <a href="https://github.com/dagster-io/dagster">Dagster</a>. In fact, SQLGlot is also the engine behind the column-level lineage feature available in dbt Cloud!</p>
<p>The specifics of why Ibis chose SQLGlot are beyond the scope of this article, but you can learn more about the reasoning from a <a href="https://github.com/ibis-project/ibis/discussions/7213">GitHub discussion on moving the SQL backends from SQLAlchemy to SQLGlot</a>.</p>
</div>
</div>
</section>
<section id="executing-the-compiled-expression" class="level3">
<h3 class="anchored" data-anchor-id="executing-the-compiled-expression">Executing the compiled expression</h3>
<p>Execution is the most straightforward part of the process. For most Ibis-supported SQL backends, the <code>execute()</code> method uses the database connection associated with the backend instance—usually managed by the underlying Python client library—to submit and fetch results for the compiled query. Last but not least, Ibis massages the returned data into the desired format (e.g.&nbsp;a pandas DataFrame for easy consumption). Because this final processing step falls outside the expression-understanding process, we’ll end our journey through the Ibis execution flow here.</p>
<p>Note that the database still performs all of the activities covered by the SQL comprehension levels; the database is completely oblivious to whatever Ibis did prior to providing the raw SQL to execute.</p>
</section>
</section>
<section id="so-does-ibis-understand-sql" class="level2">
<h2 class="anchored" data-anchor-id="so-does-ibis-understand-sql">So, does Ibis understand SQL?</h2>
<p>Ibis’s expressive dataframe API lets users avoid writing handcrafted SQL queries in most situations, but there are still cases where you may need to <a href="../../how-to/extending/sql.html">use SQL strings in your Ibis code</a>. <a href="../../reference/expression-tables.html#ibis.expr.types.relations.Table.sql"><code>Table.sql()</code></a> and <a href="../../backends/duckdb.html#ibis.backends.duckdb.Backend.sql"><code>Backend.sql()</code></a> work very similarly to each other. To explore both of these options, we’ll need to initialize a backend connection (DuckDB works perfectly for this purpose) and register our table:</p>
<div id="011020cb" class="cell" data-execution_count="8">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb12-1">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.duckdb.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>()</span>
<span id="cb12-2">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.create_table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"t"</span>, t)</span></code></pre></div></div>
</div>
<p>Now we can use the <code>Table.sql()</code> method to handle our SQL query:</p>
<div id="4be05874" class="cell" data-execution_count="9">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb13-1">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.sql(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"select x as u from t where x &gt; 0"</span>)</span>
<span id="cb13-2">expr</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="9">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">r0 := DatabaseTable: memory.main.t
  x int32
  y float64
  z string

SQLStringView[r0]
  query:
    select x as u from t where x &gt; 0
  schema:
    u int32
</pre>
</div>
</div>
<p>Note that the expression tree doesn’t have the same level of detail as the one we built using the dataframe API in the first section. Instead, a <a href="../../reference/operations.html#ibis.expr.operations.relations.SQLStringView"><code>SQLStringView</code></a> node encapsulates the query. Ibis only understands the output schema for the operation, which it uses to validate any downstream operations.</p>
<p>The main difference between <code>Table.sql()</code> and <code>Backend.sql()</code> is that <code>Backend.sql()</code> can only refer to tables that already exist in the database. We see that reflected in the expression tree <code>repr()</code>; the <code>DatabaseTable</code> node is not present in the <code>Backend.sql()</code> case, and a <a href="../../reference/operations.html#ibis.expr.operations.relations.SQLQueryResult"><code>SQLQueryResult</code></a> node (that does not contain a reference to another Ibis relation) replaces the <code>SQLStringView</code> node:</p>
<div id="93b4feeb" class="cell" data-execution_count="10">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb14-1">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.sql(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"select x as u from t where x &gt; 0"</span>)</span>
<span id="cb14-2">expr</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="10">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">SQLQueryResult
  query:
    select x as u from t where x &gt; 0
  schema:
    u int32
</pre>
</div>
</div>
<p>That said, the intermediate SQLGlot representations are identical for both alternatives:</p>
<div id="5e6e5ac2" class="cell" data-execution_count="11">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb15-1">con.compiler.to_sqlglot(expr)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="11">
<pre><code>Select(
  expressions=[
    Alias(
      this=Column(
        this=Identifier(this=x, quoted=False)),
      alias=Identifier(this=u, quoted=False))],
  from=From(
    this=Table(
      this=Identifier(this=t, quoted=False))),
  where=Where(
    this=GT(
      this=Column(
        this=Identifier(this=x, quoted=False)),
      expression=Literal(this=0, is_string=False))))</code></pre>
</div>
</div>
<p>In fact, the resulting SQLGlot expression is only slightly, nonfunctionally different from the one we got from the dataframe API. Similarly, the compiled SQL is identical except for the table alias:</p>
<div id="3e7f73df" class="cell" data-execution_count="12">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb17-1">ibis.to_sql(expr)</span></code></pre></div></div>
<div class="cell-output cell-output-display cell-output-markdown" data-execution_count="12">
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode sql code-with-copy"><code class="sourceCode sql"><span id="cb18-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">SELECT</span></span>
<span id="cb18-2">  x <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">AS</span> u</span>
<span id="cb18-3"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">FROM</span> t</span>
<span id="cb18-4"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">WHERE</span></span>
<span id="cb18-5">  x <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span></span></code></pre></div></div>
</div>
</div>
<p>In short, while Ibis doesn’t understand the inner structure of SQL queries passed to <code>Table.sql()</code> or <code>Backend.sql()</code>, it still compiles to SQLGlot expressions under the hood, which means SQLGlot’s capabilities (like producing column-level lineage) are still applicable.</p>
<p>The third option for writing SQL strings in Ibis, <a href="../../backends/duckdb.html#ibis.backends.duckdb.Backend.raw_sql"><code>Backend.raw_sql()</code></a>, is opaque and only exists for situations where the user needs to run arbitrary SQL code. Ibis simply executes the code and returns the associated cursor; it does not attempt to understand the SQL.</p>
</section>
<section id="further-reading" class="level2">
<h2 class="anchored" data-anchor-id="further-reading">Further reading</h2>
<p>In this article, we explored how Ibis constructs expressions and compiles them to SQL using SQLGlot. Even as somebody who has contributed significantly to Ibis over the years, I learned a lot about the inner workings of the library. While it was too much to cover in a single blog post, I’ll end with a few resources I found interesting while drafting this article for those interested in diving deeper:</p>
<ul>
<li><a href="https://github.com/ibis-project/ibis/discussions/7213">Phillip Cloud on why Ibis moved away from SQLAlchemy to SQLGlot</a></li>
<li><a href="https://www.linkedin.com/posts/toby-mao_the-way-sqlglot-computes-column-level-lineage-activity-7166683013311852547-on21/">Toby Mao on the way SQLGlot computes column-level lineage</a></li>
<li><a href="https://github.com/ibis-project/ibis/pull/7752">Krisztián Szűcs’s PR that split the relational operations and created a new Ibis expression IR</a></li>
</ul>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>internals</category>
  <category>sql</category>
  <guid>https://ibis-project.org/posts/does-ibis-understand-sql/</guid>
  <pubDate>Thu, 06 Feb 2025 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/does-ibis-understand-sql/thumbnail.webp" medium="image" type="image/webp"/>
</item>
<item>
  <title>Querying Amazon Athena from the comfort of your Python interpreter</title>
  <dc:creator>Anja Boskovic</dc:creator>
  <link>https://ibis-project.org/posts/ibis-athena/</link>
  <description><![CDATA[ 






<p>Have you ever wanted to harness the power of AWS Athena, but found yourself tangled up in Presto SQL syntax? Good news! Ibis now supports <a href="https://aws.amazon.com/athena/">Amazon Athena</a> as its <a href="https://ibis-project.org/backends/athena">newest backend</a>, bringing you the familiar comfort of DataFrame operations while tapping into AWS’s robust data lake architecture.</p>
<section id="why" class="level2">
<h2 class="anchored" data-anchor-id="why">Why?</h2>
<p>There’s even more to love about this integration. Athena’s pay-per-query pricing model means that users pay for each query they run. With Ibis’ query optimisation before execution, you can potentially reduce costs without needing to agonise over query efficiency. Plus, since Athena can query data directly from S3, this new backend lets you analyse your data lake contents with beloved Python libraries like PyArrow and pandas without the hassle of downloading or moving massive datasets.</p>
</section>
<section id="installation-prerequisites" class="level2">
<h2 class="anchored" data-anchor-id="installation-prerequisites">Installation Prerequisites</h2>
<p>Make sure you have an <a href="https://docs.aws.amazon.com/cli/latest/userguide/getting-started-prereqs.html">IAM account</a> and that your <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html">credentials are in an expected location in your local environment</a>.</p>
<p>Additionally, using the same account and region that you are using for Athena, you will need to <a href="https://docs.aws.amazon.com/AmazonS3/latest/user-guide/create-bucket.html">create an S3 bucket</a> where Athena can dump query results. This bucket will be set to <code>s3_staging_dir</code> in the connection call to the Athena backend.</p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>If you are not able to query Athena through awscli, your queries will similarly not work on Ibis. Please note that AWS charges will apply for queries to Athena executed in following this tutorial.</p>
</div>
</div>
</section>
<section id="installation" class="level2">
<h2 class="anchored" data-anchor-id="installation">Installation</h2>
<p>Install Ibis with the dependencies needed to work with AWS Athena:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">$</span> pip install <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'ibis-framework[athena]'</span></span></code></pre></div></div>
</section>
<section id="data" class="level2">
<h2 class="anchored" data-anchor-id="data">Data</h2>
<p>We are going to be creating some sample ecological data about ibis behaviour. The data will contain multiple columns with information about species, location, weather, group size, behaviour, and location temperature.</p>
<div id="eb6a158a" class="cell" data-execution_count="1">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pandas <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pd</span>
<span id="cb2-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> numpy <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> np</span>
<span id="cb2-3"></span>
<span id="cb2-4"></span>
<span id="cb2-5"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> create_observations(n: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>, seed: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">42</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> pd.DataFrame:</span>
<span id="cb2-6">    ibis_species <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Sacred Ibis"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Scarlet Ibis"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Glossy Ibis"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"White Ibis"</span>]</span>
<span id="cb2-7">    locations <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Wetland"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Grassland"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Coastal"</span>]</span>
<span id="cb2-8">    behaviors <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Feeding"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Nesting"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Flying"</span>]</span>
<span id="cb2-9">    weather_conditions <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Sunny"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Rainy"</span>]</span>
<span id="cb2-10"></span>
<span id="cb2-11">    np.random.seed(seed)  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># For reproducibility</span></span>
<span id="cb2-12"></span>
<span id="cb2-13">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> pd.DataFrame(</span>
<span id="cb2-14">        {</span>
<span id="cb2-15">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"observation_date"</span>: np.full(n, np.datetime64(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2024-01-01"</span>))</span>
<span id="cb2-16">                <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> np.random.randint(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">365</span>, size<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>n).astype(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timedelta64[D]"</span>),</span>
<span id="cb2-17">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"species"</span>: np.random.choice(ibis_species, size<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>n),</span>
<span id="cb2-18">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"location"</span>: np.random.choice(locations, size<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>n),</span>
<span id="cb2-19">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"group_size"</span>: np.random.randint(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">20</span>, size<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>n),</span>
<span id="cb2-20">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"behavior"</span>: np.random.choice(behaviors, size<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>n),</span>
<span id="cb2-21">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"weather"</span>: np.random.choice(weather_conditions, size<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>n),</span>
<span id="cb2-22">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"temperature_c"</span>: np.random.normal(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">25</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>, size<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>n)  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Mean 25°C, std 5°C</span></span>
<span id="cb2-23">        }</span>
<span id="cb2-24">    )</span>
<span id="cb2-25"></span>
<span id="cb2-26"></span>
<span id="cb2-27">ibis_observations <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> create_observations(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1000</span>)</span></code></pre></div></div>
</div>
</section>
<section id="demo" class="level2">
<h2 class="anchored" data-anchor-id="demo">Demo</h2>
<p>Let’s start by opening a connection to AWS Athena with Ibis, using the S3 bucket we created to store query results.</p>
<div id="60b87df9" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.interactive <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb3-2"></span>
<span id="cb3-3">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.athena.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(</span>
<span id="cb3-4">    s3_staging_dir<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"s3://aws-athena-query-results-ibis-testing"</span>,</span>
<span id="cb3-5">    region_name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"us-east-2"</span>,</span>
<span id="cb3-6">)</span></code></pre></div></div>
</div>
<p>Let’s create some data using our <code>ibis_observations</code> pandas DataFrame.</p>
<div id="d6ff6be5" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1">con.create_database(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mydatabase"</span>, force<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>)</span>
<span id="cb4-2">con.drop_table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis_observations"</span>, force<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>)</span>
<span id="cb4-3">con.create_table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis_observations"</span>, obj<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis_observations, database<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mydatabase"</span>)</span>
<span id="cb4-4">con.list_tables(database<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mydatabase"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="3">
<pre><code>['ibis_observations']</code></pre>
</div>
</div>
<p>And we can grab information about table schemas to help us out with our queries:</p>
<div id="ed99ac80" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1">con.get_schema(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis_observations"</span>, database<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mydatabase"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="4">
<pre><code>ibis.Schema {
  observation_date  timestamp
  species           string
  location          string
  group_size        int64
  behavior          string
  weather           string
  temperature_c     float64
}</code></pre>
</div>
</div>
<p>And now we are able to grab the table, and make some Ibis queries! Like what is the average group size by species?</p>
<div id="a4ce5647" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis_observations"</span>, database<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mydatabase"</span>)</span>
<span id="cb8-2"></span>
<span id="cb8-3"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># Average group size by species</span></span>
<span id="cb8-4">t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"species"</span>).aggregate(avg_group<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t.group_size.mean())</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="5">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃<span style="font-weight: bold"> species      </span>┃<span style="font-weight: bold"> avg_group </span>┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │
├──────────────┼───────────┤
│ <span style="color: #008000; text-decoration-color: #008000">Glossy Ibis </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10.003906</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Sacred Ibis </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10.030075</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Scarlet Ibis</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9.673307</span> │
│ <span style="color: #008000; text-decoration-color: #008000">White Ibis  </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10.259912</span> │
└──────────────┴───────────┘
</pre>
</div>
</div>
<p>And ibis does all the work on generating the Presto SQL that Athena can understand:</p>
<p>How about most common behaviour during rainy weather?</p>
<div id="d7b9db20" class="cell" data-execution_count="6">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1">(</span>
<span id="cb9-2">    t.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(t.weather <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Rainy"</span>)</span>
<span id="cb9-3">    .group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"behavior"</span>)</span>
<span id="cb9-4">    .aggregate(count<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> t: t.count())</span>
<span id="cb9-5">    .order_by(ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"count"</span>))</span>
<span id="cb9-6">)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="6">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> behavior </span>┃<span style="font-weight: bold"> count </span>┃
┡━━━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├──────────┼───────┤
│ <span style="color: #008000; text-decoration-color: #008000">Feeding </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">172</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Nesting </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">168</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Flying  </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">166</span> │
└──────────┴───────┘
</pre>
</div>
</div>
<p>Temperature effects on behaviour?</p>
<div id="3a7dc031" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1">t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"behavior"</span>).aggregate(avg_temp<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t.temperature_c.mean()).order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"avg_temp"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="7">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━┳━━━━━━━━━━━┓
┃<span style="font-weight: bold"> behavior </span>┃<span style="font-weight: bold"> avg_temp  </span>┃
┡━━━━━━━━━━╇━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │
├──────────┼───────────┤
│ <span style="color: #008000; text-decoration-color: #008000">Feeding </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">25.006455</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Flying  </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">25.116323</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Nesting </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">25.133050</span> │
└──────────┴───────────┘
</pre>
</div>
</div>
<p>Now that we’re nearing the end of this demo, I wanted to show you that you can also delete tables and databases using ibis:</p>
<div id="47ca3c96" class="cell" data-execution_count="8">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1">con.drop_table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis_observations"</span>, database<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mydatabase"</span>)</span>
<span id="cb11-2">con.drop_database(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mydatabase"</span>)</span>
<span id="cb11-3">con.disconnect()</span></code></pre></div></div>
</div>
<p>You wouldn’t need to fiddle with Athena’s SDK!</p>
</section>
<section id="how-does-this-all-work" class="level2">
<h2 class="anchored" data-anchor-id="how-does-this-all-work">How does this all work?</h2>
<p>Under the hood, AWS Athena runs on a version of Trino (formerly known as Presto SQL). Instead of writing a completely new SQL compiler for Athena, we were able to leverage Ibis’ existing Trino compiler with some careful adjustments.</p>
<p>This provides significant benefits in code efficiency - the Athena backend implementation required only about 40 lines of unique code.</p>
<p>There are some nuances to note: since Athena runs on an older version of Trino, not all of Trino’s newest features are available. For a detailed comparison of supported features across different backends, please check out the <a href="ihttps://ibis-project.org/backends/support/matrix">Ibis backend support matrix</a>.</p>
<p>If you’re new here, welcome. Here are some resources to learn more about Ibis:</p>
<ul>
<li><a href="https://ibis-project.org/">Ibis Docs</a></li>
<li><a href="https://github.com/ibis-project/ibis">Ibis GitHub</a></li>
</ul>
<p>Chat with us on Zulip:</p>
<ul>
<li><a href="https://ibis-project.zulipchat.com/">Ibis Zulip Chat</a></li>
</ul>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>athena</category>
  <guid>https://ibis-project.org/posts/ibis-athena/</guid>
  <pubDate>Tue, 04 Feb 2025 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Classification metrics on the backend</title>
  <dc:creator>Tyler White</dc:creator>
  <link>https://ibis-project.org/posts/classification-metrics-on-the-backend/</link>
  <description><![CDATA[ 






<p>A review of binary classification models, metrics used to evaluate them, and corresponding metric calculations with Ibis.</p>
<p>We’re going explore common classification metrics such as accuracy, precision, recall, and F1 score, demonstrating how to compute each one using Ibis. In this example, we’ll use DuckDB, the default Ibis backend, but we could use this same code to execute against another backend such as Postgres or Snowflake. This capability is useful as it offers an easy and performant way to evaluate model performance without extracting data from the source system.</p>
<section id="classification-models" class="level2">
<h2 class="anchored" data-anchor-id="classification-models">Classification models</h2>
<p>In machine learning, classification entails categorizing data into different groups. Binary classification, which is what we’ll be covering in this post, specifically involves sorting data into only two distinct groups. For example, a model could differentiate between whether or not an email is spam.</p>
</section>
<section id="model-evaluation" class="level2">
<h2 class="anchored" data-anchor-id="model-evaluation">Model evaluation</h2>
<p>It’s important to validate the performance of the model to ensure it makes correct predictions consistently and doesn’t only perform well on the data it was trained on. These metrics help us understand not just the errors the model makes, but also the types of errors. For example, we might want to know if the model is more likely to predict a positive outcome when the actual outcome is negative.</p>
<p>The easiest way to break down how this works is to look at a confusion matrix.</p>
<section id="confusion-matrix" class="level3">
<h3 class="anchored" data-anchor-id="confusion-matrix">Confusion matrix</h3>
<p>A confusion matrix is a table used to describe the performance of a classification model on a set of data for which the true values are known. As binary classification only involves two categories, the confusion matrix only contains true positives, false positives, false negatives, and true negatives.</p>
<p><img src="https://ibis-project.org/posts/classification-metrics-on-the-backend/confusion_matrix.png" class="img-fluid"></p>
<p>Here’s a breakdown of the terms with examples.</p>
<dl>
<dt>True Positives (TP)</dt>
<dd>
Correctly predicted positive examples.
</dd>
</dl>
<p>We guessed it was a spam email, and it was. This email is going straight to the junk folder.</p>
<dl>
<dt>False Positives (FP)</dt>
<dd>
Incorrectly predicted as positive.
</dd>
</dl>
<p>We guessed it was a spam email, but it actually wasn’t. Hopefully, the recipient doesn’t miss anything important as this email is going to the junk folder.</p>
<dl>
<dt>False Negatives (FN)</dt>
<dd>
Incorrectly predicted as negative.
</dd>
</dl>
<p>We didn’t guess it was a spam email, but it really was. Hopefully, the recipient doesn’t click any links!</p>
<dl>
<dt>True Negatives (TN)</dt>
<dd>
Correctly predicted negative examples.
</dd>
</dl>
<p>We guessed it was not a spam email, and it actually was not. The recipient can read this email as intended.</p>
</section>
<section id="building-a-confusion-matrix" class="level3">
<h3 class="anchored" data-anchor-id="building-a-confusion-matrix">Building a confusion matrix</h3>
<section id="sample-dataset" class="level4">
<h4 class="anchored" data-anchor-id="sample-dataset">Sample dataset</h4>
<p>Let’s create a sample dataset that includes twelve rows with two columns: <code>actual</code> and <code>prediction</code>. The <code>actual</code> column contains the true values, and the <code>prediction</code> column contains the model’s predictions.</p>
<div id="a9745342" class="cell" data-execution_count="1">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.interactive <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb1-2"></span>
<span id="cb1-3">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.memtable(</span>
<span id="cb1-4">    {</span>
<span id="cb1-5">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"id"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">13</span>),</span>
<span id="cb1-6">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"actual"</span>: [<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>],</span>
<span id="cb1-7">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"prediction"</span>: [<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>],</span>
<span id="cb1-8">    }</span>
<span id="cb1-9">)</span>
<span id="cb1-10"></span>
<span id="cb1-11">t</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="1">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> id    </span>┃<span style="font-weight: bold"> actual </span>┃<span style="font-weight: bold"> prediction </span>┃
┡━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │
├───────┼────────┼────────────┤
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└───────┴────────┴────────────┘
</pre>
</div>
</div>
<p>We can use the <code>case</code> function to create a new column that categorizes the outcomes.</p>
<div id="89f71974" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1">case_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.cases(</span>
<span id="cb2-2">    ((_.actual <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> (_.prediction <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"TN"</span>),</span>
<span id="cb2-3">    ((_.actual <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> (_.prediction <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"FP"</span>),</span>
<span id="cb2-4">    ((_.actual <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> (_.prediction <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"FN"</span>),</span>
<span id="cb2-5">    ((_.actual <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> (_.prediction <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"TP"</span>),</span>
<span id="cb2-6">)</span>
<span id="cb2-7"></span>
<span id="cb2-8">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.mutate(outcome<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>case_expr)</span>
<span id="cb2-9"></span>
<span id="cb2-10">t</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="2">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┓
┃<span style="font-weight: bold"> id    </span>┃<span style="font-weight: bold"> actual </span>┃<span style="font-weight: bold"> prediction </span>┃<span style="font-weight: bold"> outcome </span>┃
┡━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │
├───────┼────────┼────────────┼─────────┤
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">TP     </span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008000; text-decoration-color: #008000">TN     </span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008000; text-decoration-color: #008000">TN     </span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">TP     </span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008000; text-decoration-color: #008000">FN     </span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008000; text-decoration-color: #008000">TN     </span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">FP     </span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">FP     </span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008000; text-decoration-color: #008000">FN     </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">TP     </span> │
│     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │
└───────┴────────┴────────────┴─────────┘
</pre>
</div>
</div>
<p>To create the confusion matrix, we’ll group by the outcome, count the occurrences, and use <code>pivot_wider</code>. Widening our data makes it possible to perform column-wise operations on the table expression for metric calculations.</p>
<div id="3f519230" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1">cm <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb3-2">    t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"outcome"</span>)</span>
<span id="cb3-3">    .agg(counted<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.count())</span>
<span id="cb3-4">    .pivot_wider(names_from<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"outcome"</span>, values_from<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"counted"</span>)</span>
<span id="cb3-5">    .select(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"TP"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"FP"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"FN"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"TN"</span>)</span>
<span id="cb3-6">)</span>
<span id="cb3-7"></span>
<span id="cb3-8">cm</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="3">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> TP    </span>┃<span style="font-weight: bold"> FP    </span>┃<span style="font-weight: bold"> FN    </span>┃<span style="font-weight: bold"> TN    </span>┃
┡━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├───────┼───────┼───────┼───────┤
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │
└───────┴───────┴───────┴───────┘
</pre>
</div>
</div>
<p>We can plot the confusion matrix to visualize the results.</p>
<div id="a7d0ce20" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> matplotlib.pyplot <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> plt</span>
<span id="cb4-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> seaborn <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> sns</span>
<span id="cb4-3"></span>
<span id="cb4-4">data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> cm.to_pyarrow().to_pydict()</span>
<span id="cb4-5"></span>
<span id="cb4-6">plt.figure(figsize<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>))</span>
<span id="cb4-7">sns.heatmap(</span>
<span id="cb4-8">    [[data[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"TP"</span>][<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>], data[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"FP"</span>][<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>]], [data[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"FN"</span>][<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>], data[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"TN"</span>][<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>]]],</span>
<span id="cb4-9">    annot<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="cb4-10">    fmt<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"d"</span>,</span>
<span id="cb4-11">    cmap<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Blues"</span>,</span>
<span id="cb4-12">    cbar<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>,</span>
<span id="cb4-13">    xticklabels<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Predicted Positive"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Predicted Negative"</span>],</span>
<span id="cb4-14">    yticklabels<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Actual Positive"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Actual Negative"</span>],</span>
<span id="cb4-15">)</span>
<span id="cb4-16">plt.title(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Confusion Matrix"</span>)</span>
<span id="cb4-17">plt.show()</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>
<figure class="figure">
<p><img src="https://ibis-project.org/posts/classification-metrics-on-the-backend/index_files/figure-html/cell-5-output-1.png" width="488" height="357" class="figure-img"></p>
</figure>
</div>
</div>
</div>
<p>Now that we’ve built a confusion matrix, we’re able to more easily calculate a few common classification metrics.</p>
</section>
</section>
<section id="metrics" class="level3">
<h3 class="anchored" data-anchor-id="metrics">Metrics</h3>
<p>Here are the metrics we’ll calculate as well as a brief description of each.</p>
<dl>
<dt>Accuracy</dt>
<dd>
The proportion of correct predictions out of all predictions made. This measures the overall effectiveness of the model across all classes.
</dd>
<dt>Precision</dt>
<dd>
The proportion of true positive predictions out of all positive predictions made. This tells us how many of the predicted positives were actually correct.
</dd>
<dt>Recall</dt>
<dd>
The proportion of true positive predictions out of all actual positive examples. This measures how well the model identifies all actual positives.
</dd>
<dt>F1 Score</dt>
<dd>
A metric that combines precision and recall into a single score by taking their weighted average. This balances the trade-off between precision and recall, making it especially useful for imbalanced datasets.
</dd>
</dl>
<p>We can calculate these metrics using the columns from the confusion matrix we created earlier.</p>
<div id="fb7ebbe7" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1">accuracy_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (_.TP <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> _.TN) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> (_.TP <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> _.TN <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> _.FP <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> _.FN)</span>
<span id="cb5-2">precision_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> _.TP <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> (_.TP <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> _.FP)</span>
<span id="cb5-3">recall_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> _.TP <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> (_.TP <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> _.FN)</span>
<span id="cb5-4">f1_score_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> (precision_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> recall_expr) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> (precision_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> recall_expr)</span>
<span id="cb5-5"></span>
<span id="cb5-6">metrics <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> cm.select(</span>
<span id="cb5-7">    accuracy<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>accuracy_expr,</span>
<span id="cb5-8">    precision<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>precision_expr,</span>
<span id="cb5-9">    recall<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>recall_expr,</span>
<span id="cb5-10">    f1_score<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>f1_score_expr,</span>
<span id="cb5-11">)</span>
<span id="cb5-12"></span>
<span id="cb5-13">metrics</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="5">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┓
┃<span style="font-weight: bold"> accuracy </span>┃<span style="font-weight: bold"> precision </span>┃<span style="font-weight: bold"> recall   </span>┃<span style="font-weight: bold"> f1_score </span>┃
┡━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>  │
├──────────┼───────────┼──────────┼──────────┤
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.583333</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.666667</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.571429</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.615385</span> │
└──────────┴───────────┴──────────┴──────────┘
</pre>
</div>
</div>
</section>
</section>
<section id="a-more-efficient-approach" class="level2">
<h2 class="anchored" data-anchor-id="a-more-efficient-approach">A more efficient approach</h2>
<p>In the illustrative example above, we used a case expression and pivoted the data to demonstrate where the values would fall in the confusion matrix before performing our metric calculations using the pivoted data. We can actually skip this step using column aggregation.</p>
<div id="49c69b2f" class="cell" data-execution_count="6">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1">tp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (t.actual <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> t.prediction).<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()</span>
<span id="cb6-2">fp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.prediction.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> tp</span>
<span id="cb6-3">fn <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.actual.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> tp</span>
<span id="cb6-4">tn <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.actual.count() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> tp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> fp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> fn</span>
<span id="cb6-5"></span>
<span id="cb6-6">accuracy_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (t.actual <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> t.prediction).mean()</span>
<span id="cb6-7">precision_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> tp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> t.prediction.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()</span>
<span id="cb6-8">recall_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> tp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> t.actual.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()</span>
<span id="cb6-9">f1_score_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> tp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> (t.actual.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> t.prediction.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>())</span>
<span id="cb6-10"></span>
<span id="cb6-11"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(</span>
<span id="cb6-12">    <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"accuracy=</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>accuracy_expr<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>to_pyarrow()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>as_py()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>,</span>
<span id="cb6-13">    <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"precision=</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>precision_expr<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>to_pyarrow()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>as_py()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>,</span>
<span id="cb6-14">    <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"recall_expr=</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>recall_expr<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>to_pyarrow()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>as_py()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>,</span>
<span id="cb6-15">    <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"f1_score=</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>f1_score_expr<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>to_pyarrow()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>as_py()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>,</span>
<span id="cb6-16">    sep<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span><span class="ch" style="color: #20794D;
background-color: null;
font-style: inherit;">\n</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>,</span>
<span id="cb6-17">)</span></code></pre></div></div>
<div class="cell-output cell-output-stdout">
<pre><code>accuracy=0.5833333333333334
precision=0.6666666666666666
recall_expr=0.5714285714285714
f1_score=0.6153846153846154</code></pre>
</div>
</div>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>By pushing the computation down to the backend, the performance is as powerful as the backend we’re connected to. This capability allows us to easily scale to different backends without modifying any code.</p>
<p>We hope you give this a try and let us know how it goes. If you have any questions or feedback, please reach out to us on <a href="https://github.com/ibis-project">GitHub</a> or <a href="https://ibis-project.zulipchat.com/">Zulip</a>.</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>machine learning</category>
  <category>portability</category>
  <guid>https://ibis-project.org/posts/classification-metrics-on-the-backend/</guid>
  <pubDate>Thu, 05 Dec 2024 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/classification-metrics-on-the-backend/thumbnail.png" medium="image" type="image/png" height="144" width="144"/>
</item>
<item>
  <title>Taking a random cube for a walk and making it talk</title>
  <dc:creator>Cody Peterson</dc:creator>
  <link>https://ibis-project.org/posts/walking-talking-cube/</link>
  <description><![CDATA[ 






<p><strong><em>Synthetic data with Ibis, DuckDB, Python UDFs, and Faker.</em></strong></p>
<p>To follow along, install the required libraries:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'ibis-framework[duckdb]'</span> faker plotly</span></code></pre></div></div>
<section id="a-random-cube" class="level2">
<h2 class="anchored" data-anchor-id="a-random-cube">A random cube</h2>
<p>We’ll generate a random cube of data with Ibis (default DuckDB backend) and visualize it as a 3D line plot:</p>
<div id="0daf46ce" class="cell" data-execution_count="2">
<details class="code-fold">
<summary>Show me the code!</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-2" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="1">1</button><span id="annotated-cell-2-1" class="code-annotation-target"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="annotated-cell-2-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.selectors <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> s</span>
<span id="annotated-cell-2-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> plotly.express <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> px</span>
<span id="annotated-cell-2-4"></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="2">2</button><span id="annotated-cell-2-5" class="code-annotation-target">ibis.options.interactive <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span>
<span id="annotated-cell-2-6">ibis.options.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">repr</span>.interactive.max_rows <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span></span>
<span id="annotated-cell-2-7"></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="3">3</button><span id="annotated-cell-2-8" class="code-annotation-target">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"duckdb://synthetic.ddb"</span>)</span>
<span id="annotated-cell-2-9"></span>
<span id="annotated-cell-2-10"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"source"</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> con.list_tables():</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="4">4</button><span id="annotated-cell-2-11" class="code-annotation-target">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"source"</span>)</span>
<span id="annotated-cell-2-12"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">else</span>:</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="5">5</button><span id="annotated-cell-2-13" class="code-annotation-target">    lookback <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.interval(days<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="annotated-cell-2-14">    step <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.interval(seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="annotated-cell-2-15"></span>
<span id="annotated-cell-2-16">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="annotated-cell-2-17">        (</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="6">6</button><span id="annotated-cell-2-18" class="code-annotation-target">            ibis.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(</span>
<span id="annotated-cell-2-19">                ibis.now() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> lookback,</span>
<span id="annotated-cell-2-20">                ibis.now(),</span>
<span id="annotated-cell-2-21">                step<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>step,</span>
<span id="annotated-cell-2-22">            )</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="7">7</button><span id="annotated-cell-2-23" class="code-annotation-target">            .unnest()</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="8">8</button><span id="annotated-cell-2-24" class="code-annotation-target">            .name(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>)</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="9">9</button><span id="annotated-cell-2-25" class="code-annotation-target">            .as_table()</span>
<span id="annotated-cell-2-26">        )</span>
<span id="annotated-cell-2-27">        .mutate(</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="10">10</button><span id="annotated-cell-2-28" class="code-annotation-target">            index<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>(ibis.row_number().over(order_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>)),</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="11">11</button><span id="annotated-cell-2-29" class="code-annotation-target">            <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>{col: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> (ibis.random() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.5</span>) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> col <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c"</span>]},</span>
<span id="annotated-cell-2-30">        )</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="12">12</button><span id="annotated-cell-2-31" class="code-annotation-target">        .mutate(color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"index"</span>].histogram(nbins<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">8</span>))</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="13">13</button><span id="annotated-cell-2-32" class="code-annotation-target">        .drop(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"index"</span>)</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="14">14</button><span id="annotated-cell-2-33" class="code-annotation-target">        .relocate(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color"</span>)</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="15">15</button><span id="annotated-cell-2-34" class="code-annotation-target">        .order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>)</span>
<span id="annotated-cell-2-35">    )</span>
<span id="annotated-cell-2-36"></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="16">16</button><span id="annotated-cell-2-37" class="code-annotation-target">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.create_table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"source"</span>, t.to_pyarrow())</span>
<span id="annotated-cell-2-38"></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="17">17</button><span id="annotated-cell-2-39" class="code-annotation-target">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.line_3d(</span>
<span id="annotated-cell-2-40">    t,</span>
<span id="annotated-cell-2-41">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>,</span>
<span id="annotated-cell-2-42">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>,</span>
<span id="annotated-cell-2-43">    z<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c"</span>,</span>
<span id="annotated-cell-2-44">    color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color"</span>,</span>
<span id="annotated-cell-2-45">    hover_data<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>],</span>
<span id="annotated-cell-2-46">)</span>
<span id="annotated-cell-2-47">c</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
</details>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-2" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="1,3" data-code-annotation="1">Import the necessary libraries.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="5,6" data-code-annotation="2">Enable interactive mode for Ibis.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="3">3</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="8" data-code-annotation="3">Connect to an on-disk DuckDB database.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="4">4</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="11" data-code-annotation="4">Load the table if it already exists.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="5">5</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="13,14" data-code-annotation="5">Define the time range and step for the data.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="6">6</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="18,22" data-code-annotation="6">Create the array of timestamps.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="7">7</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="23" data-code-annotation="7">Unnest the array to a column.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="8">8</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="24" data-code-annotation="8">Name the column “timestamp”.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="9">9</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="25" data-code-annotation="9">Convert the column into a table.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="10">10</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="28" data-code-annotation="10">Create a monotonically increasing index column.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="11">11</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="29" data-code-annotation="11">Create three columns of random numbers.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="12">12</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="31" data-code-annotation="12">Create a color column based on the index (help visualize the time series).</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="13">13</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="32" data-code-annotation="13">Drop the index column.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="14">14</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="33" data-code-annotation="14">Rearrange the columns.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="15">15</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="34" data-code-annotation="15">Order the table by timestamp.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="16">16</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="37" data-code-annotation="16">Store the table in the on-disk database.</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="17">17</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="39,46" data-code-annotation="17">Create a 3D line plot of the data.</span>
</dd>
</dl>
</div>
<div class="cell-output cell-output-display">
<div>                            <div id="0d577812-746a-4be5-b262-3385f51e35d5" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("0d577812-746a-4be5-b262-3385f51e35d5")) {                    Plotly.newPlot(                        "0d577812-746a-4be5-b262-3385f51e35d5",                        [{"customdata":[["2024-07-23T23:35:06.010000"],["2024-07-23T23:35:07.010000"],["2024-07-23T23:35:08.010000"],["2024-07-23T23:35:09.010000"],["2024-07-23T23:35:10.010000"],["2024-07-23T23:35:11.010000"],["2024-07-23T23:35:12.010000"],["2024-07-23T23:35:13.010000"],["2024-07-23T23:35:14.010000"],["2024-07-23T23:35:15.010000"],["2024-07-23T23:35:16.010000"],["2024-07-23T23:35:17.010000"],["2024-07-23T23:35:18.010000"],["2024-07-23T23:35:19.010000"],["2024-07-23T23:35:20.010000"],["2024-07-23T23:35:21.010000"],["2024-07-23T23:35:22.010000"],["2024-07-23T23:35:23.010000"],["2024-07-23T23:35:24.010000"],["2024-07-23T23:35:25.010000"],["2024-07-23T23:35:26.010000"],["2024-07-23T23:35:27.010000"],["2024-07-23T23:35:28.010000"],["2024-07-23T23:35:29.010000"],["2024-07-23T23:35:30.010000"],["2024-07-23T23:35:31.010000"],["2024-07-23T23:35:32.010000"],["2024-07-23T23:35:33.010000"],["2024-07-23T23:35:34.010000"],["2024-07-23T23:35:35.010000"],["2024-07-23T23:35:36.010000"],["2024-07-23T23:35:37.010000"],["2024-07-23T23:35:38.010000"],["2024-07-23T23:35:39.010000"],["2024-07-23T23:35:40.010000"],["2024-07-23T23:35:41.010000"],["2024-07-23T23:35:42.010000"],["2024-07-23T23:35:43.010000"],["2024-07-23T23:35:44.010000"],["2024-07-23T23:35:45.010000"],["2024-07-23T23:35:46.010000"],["2024-07-23T23:35:47.010000"],["2024-07-23T23:35:48.010000"],["2024-07-23T23:35:49.010000"],["2024-07-23T23:35:50.010000"],["2024-07-23T23:35:51.010000"],["2024-07-23T23:35:52.010000"],["2024-07-23T23:35:53.010000"],["2024-07-23T23:35:54.010000"],["2024-07-23T23:35:55.010000"],["2024-07-23T23:35:56.010000"],["2024-07-23T23:35:57.010000"],["2024-07-23T23:35:58.010000"],["2024-07-23T23:35:59.010000"],["2024-07-23T23:36:00.010000"],["2024-07-23T23:36:01.010000"],["2024-07-23T23:36:02.010000"],["2024-07-23T23:36:03.010000"],["2024-07-23T23:36:04.010000"],["2024-07-23T23:36:05.010000"],["2024-07-23T23:36:06.010000"],["2024-07-23T23:36:07.010000"],["2024-07-23T23:36:08.010000"],["2024-07-23T23:36:09.010000"],["2024-07-23T23:36:10.010000"],["2024-07-23T23:36:11.010000"],["2024-07-23T23:36:12.010000"],["2024-07-23T23:36:13.010000"],["2024-07-23T23:36:14.010000"],["2024-07-23T23:36:15.010000"],["2024-07-23T23:36:16.010000"],["2024-07-23T23:36:17.010000"],["2024-07-23T23:36:18.010000"],["2024-07-23T23:36:19.010000"],["2024-07-23T23:36:20.010000"],["2024-07-23T23:36:21.010000"],["2024-07-23T23:36:22.010000"],["2024-07-23T23:36:23.010000"],["2024-07-23T23:36:24.010000"],["2024-07-23T23:36:25.010000"],["2024-07-23T23:36:26.010000"],["2024-07-23T23:36:27.010000"],["2024-07-23T23:36:28.010000"],["2024-07-23T23:36:29.010000"],["2024-07-23T23:36:30.010000"],["2024-07-23T23:36:31.010000"],["2024-07-23T23:36:32.010000"],["2024-07-23T23:36:33.010000"],["2024-07-23T23:36:34.010000"],["2024-07-23T23:36:35.010000"],["2024-07-23T23:36:36.010000"],["2024-07-23T23:36:37.010000"],["2024-07-23T23:36:38.010000"],["2024-07-23T23:36:39.010000"],["2024-07-23T23:36:40.010000"],["2024-07-23T23:36:41.010000"],["2024-07-23T23:36:42.010000"],["2024-07-23T23:36:43.010000"],["2024-07-23T23:36:44.010000"],["2024-07-23T23:36:45.010000"],["2024-07-23T23:36:46.010000"],["2024-07-23T23:36:47.010000"],["2024-07-23T23:36:48.010000"],["2024-07-23T23:36:49.010000"],["2024-07-23T23:36:50.010000"],["2024-07-23T23:36:51.010000"],["2024-07-23T23:36:52.010000"],["2024-07-23T23:36:53.010000"],["2024-07-23T23:36:54.010000"],["2024-07-23T23:36:55.010000"],["2024-07-23T23:36:56.010000"],["2024-07-23T23:36:57.010000"],["2024-07-23T23:36:58.010000"],["2024-07-23T23:36:59.010000"],["2024-07-23T23:37:00.010000"],["2024-07-23T23:37:01.010000"],["2024-07-23T23:37:02.010000"],["2024-07-23T23:37:03.010000"],["2024-07-23T23:37:04.010000"],["2024-07-23T23:37:05.010000"],["2024-07-23T23:37:06.010000"],["2024-07-23T23:37:07.010000"],["2024-07-23T23:37:08.010000"],["2024-07-23T23:37:09.010000"],["2024-07-23T23:37:10.010000"],["2024-07-23T23:37:11.010000"],["2024-07-23T23:37:12.010000"],["2024-07-23T23:37:13.010000"],["2024-07-23T23:37:14.010000"],["2024-07-23T23:37:15.010000"],["2024-07-23T23:37:16.010000"],["2024-07-23T23:37:17.010000"],["2024-07-23T23:37:18.010000"],["2024-07-23T23:37:19.010000"],["2024-07-23T23:37:20.010000"],["2024-07-23T23:37:21.010000"],["2024-07-23T23:37:22.010000"],["2024-07-23T23:37:23.010000"],["2024-07-23T23:37:24.010000"],["2024-07-23T23:37:25.010000"],["2024-07-23T23:37:26.010000"],["2024-07-23T23:37:27.010000"],["2024-07-23T23:37:28.010000"],["2024-07-23T23:37:29.010000"],["2024-07-23T23:37:30.010000"],["2024-07-23T23:37:31.010000"],["2024-07-23T23:37:32.010000"],["2024-07-23T23:37:33.010000"],["2024-07-23T23:37:34.010000"],["2024-07-23T23:37:35.010000"],["2024-07-23T23:37:36.010000"],["2024-07-23T23:37:37.010000"],["2024-07-23T23:37:38.010000"],["2024-07-23T23:37:39.010000"],["2024-07-23T23:37:40.010000"],["2024-07-23T23:37:41.010000"],["2024-07-23T23:37:42.010000"],["2024-07-23T23:37:43.010000"],["2024-07-23T23:37:44.010000"],["2024-07-23T23:37:45.010000"],["2024-07-23T23:37:46.010000"],["2024-07-23T23:37:47.010000"],["2024-07-23T23:37:48.010000"],["2024-07-23T23:37:49.010000"],["2024-07-23T23:37:50.010000"],["2024-07-23T23:37:51.010000"],["2024-07-23T23:37:52.010000"],["2024-07-23T23:37:53.010000"],["2024-07-23T23:37:54.010000"],["2024-07-23T23:37:55.010000"],["2024-07-23T23:37:56.010000"],["2024-07-23T23:37:57.010000"],["2024-07-23T23:37:58.010000"],["2024-07-23T23:37:59.010000"],["2024-07-23T23:38:00.010000"],["2024-07-23T23:38:01.010000"],["2024-07-23T23:38:02.010000"],["2024-07-23T23:38:03.010000"],["2024-07-23T23:38:04.010000"],["2024-07-23T23:38:05.010000"],["2024-07-23T23:38:06.010000"],["2024-07-23T23:38:07.010000"],["2024-07-23T23:38:08.010000"],["2024-07-23T23:38:09.010000"],["2024-07-23T23:38:10.010000"],["2024-07-23T23:38:11.010000"],["2024-07-23T23:38:12.010000"],["2024-07-23T23:38:13.010000"],["2024-07-23T23:38:14.010000"],["2024-07-23T23:38:15.010000"],["2024-07-23T23:38:16.010000"],["2024-07-23T23:38:17.010000"],["2024-07-23T23:38:18.010000"],["2024-07-23T23:38:19.010000"],["2024-07-23T23:38:20.010000"],["2024-07-23T23:38:21.010000"],["2024-07-23T23:38:22.010000"],["2024-07-23T23:38:23.010000"],["2024-07-23T23:38:24.010000"],["2024-07-23T23:38:25.010000"],["2024-07-23T23:38:26.010000"],["2024-07-23T23:38:27.010000"],["2024-07-23T23:38:28.010000"],["2024-07-23T23:38:29.010000"],["2024-07-23T23:38:30.010000"],["2024-07-23T23:38:31.010000"],["2024-07-23T23:38:32.010000"],["2024-07-23T23:38:33.010000"],["2024-07-23T23:38:34.010000"],["2024-07-23T23:38:35.010000"],["2024-07-23T23:38:36.010000"],["2024-07-23T23:38:37.010000"],["2024-07-23T23:38:38.010000"],["2024-07-23T23:38:39.010000"],["2024-07-23T23:38:40.010000"],["2024-07-23T23:38:41.010000"],["2024-07-23T23:38:42.010000"],["2024-07-23T23:38:43.010000"],["2024-07-23T23:38:44.010000"],["2024-07-23T23:38:45.010000"],["2024-07-23T23:38:46.010000"],["2024-07-23T23:38:47.010000"],["2024-07-23T23:38:48.010000"],["2024-07-23T23:38:49.010000"],["2024-07-23T23:38:50.010000"],["2024-07-23T23:38:51.010000"],["2024-07-23T23:38:52.010000"],["2024-07-23T23:38:53.010000"],["2024-07-23T23:38:54.010000"],["2024-07-23T23:38:55.010000"],["2024-07-23T23:38:56.010000"],["2024-07-23T23:38:57.010000"],["2024-07-23T23:38:58.010000"],["2024-07-23T23:38:59.010000"],["2024-07-23T23:39:00.010000"],["2024-07-23T23:39:01.010000"],["2024-07-23T23:39:02.010000"],["2024-07-23T23:39:03.010000"],["2024-07-23T23:39:04.010000"],["2024-07-23T23:39:05.010000"],["2024-07-23T23:39:06.010000"],["2024-07-23T23:39:07.010000"],["2024-07-23T23:39:08.010000"],["2024-07-23T23:39:09.010000"],["2024-07-23T23:39:10.010000"],["2024-07-23T23:39:11.010000"],["2024-07-23T23:39:12.010000"],["2024-07-23T23:39:13.010000"],["2024-07-23T23:39:14.010000"],["2024-07-23T23:39:15.010000"],["2024-07-23T23:39:16.010000"],["2024-07-23T23:39:17.010000"],["2024-07-23T23:39:18.010000"],["2024-07-23T23:39:19.010000"],["2024-07-23T23:39:20.010000"],["2024-07-23T23:39:21.010000"],["2024-07-23T23:39:22.010000"],["2024-07-23T23:39:23.010000"],["2024-07-23T23:39:24.010000"],["2024-07-23T23:39:25.010000"],["2024-07-23T23:39:26.010000"],["2024-07-23T23:39:27.010000"],["2024-07-23T23:39:28.010000"],["2024-07-23T23:39:29.010000"],["2024-07-23T23:39:30.010000"],["2024-07-23T23:39:31.010000"],["2024-07-23T23:39:32.010000"],["2024-07-23T23:39:33.010000"],["2024-07-23T23:39:34.010000"],["2024-07-23T23:39:35.010000"],["2024-07-23T23:39:36.010000"],["2024-07-23T23:39:37.010000"],["2024-07-23T23:39:38.010000"],["2024-07-23T23:39:39.010000"],["2024-07-23T23:39:40.010000"],["2024-07-23T23:39:41.010000"],["2024-07-23T23:39:42.010000"],["2024-07-23T23:39:43.010000"],["2024-07-23T23:39:44.010000"],["2024-07-23T23:39:45.010000"],["2024-07-23T23:39:46.010000"],["2024-07-23T23:39:47.010000"],["2024-07-23T23:39:48.010000"],["2024-07-23T23:39:49.010000"],["2024-07-23T23:39:50.010000"],["2024-07-23T23:39:51.010000"],["2024-07-23T23:39:52.010000"],["2024-07-23T23:39:53.010000"],["2024-07-23T23:39:54.010000"],["2024-07-23T23:39:55.010000"],["2024-07-23T23:39:56.010000"],["2024-07-23T23:39:57.010000"],["2024-07-23T23:39:58.010000"],["2024-07-23T23:39:59.010000"],["2024-07-23T23:40:00.010000"],["2024-07-23T23:40:01.010000"],["2024-07-23T23:40:02.010000"],["2024-07-23T23:40:03.010000"],["2024-07-23T23:40:04.010000"],["2024-07-23T23:40:05.010000"],["2024-07-23T23:40:06.010000"],["2024-07-23T23:40:07.010000"],["2024-07-23T23:40:08.010000"],["2024-07-23T23:40:09.010000"],["2024-07-23T23:40:10.010000"],["2024-07-23T23:40:11.010000"],["2024-07-23T23:40:12.010000"],["2024-07-23T23:40:13.010000"],["2024-07-23T23:40:14.010000"],["2024-07-23T23:40:15.010000"],["2024-07-23T23:40:16.010000"],["2024-07-23T23:40:17.010000"],["2024-07-23T23:40:18.010000"],["2024-07-23T23:40:19.010000"],["2024-07-23T23:40:20.010000"],["2024-07-23T23:40:21.010000"],["2024-07-23T23:40:22.010000"],["2024-07-23T23:40:23.010000"],["2024-07-23T23:40:24.010000"],["2024-07-23T23:40:25.010000"],["2024-07-23T23:40:26.010000"],["2024-07-23T23:40:27.010000"],["2024-07-23T23:40:28.010000"],["2024-07-23T23:40:29.010000"],["2024-07-23T23:40:30.010000"],["2024-07-23T23:40:31.010000"],["2024-07-23T23:40:32.010000"],["2024-07-23T23:40:33.010000"],["2024-07-23T23:40:34.010000"],["2024-07-23T23:40:35.010000"],["2024-07-23T23:40:36.010000"],["2024-07-23T23:40:37.010000"],["2024-07-23T23:40:38.010000"],["2024-07-23T23:40:39.010000"],["2024-07-23T23:40:40.010000"],["2024-07-23T23:40:41.010000"],["2024-07-23T23:40:42.010000"],["2024-07-23T23:40:43.010000"],["2024-07-23T23:40:44.010000"],["2024-07-23T23:40:45.010000"],["2024-07-23T23:40:46.010000"],["2024-07-23T23:40:47.010000"],["2024-07-23T23:40:48.010000"],["2024-07-23T23:40:49.010000"],["2024-07-23T23:40:50.010000"],["2024-07-23T23:40:51.010000"],["2024-07-23T23:40:52.010000"],["2024-07-23T23:40:53.010000"],["2024-07-23T23:40:54.010000"],["2024-07-23T23:40:55.010000"],["2024-07-23T23:40:56.010000"],["2024-07-23T23:40:57.010000"],["2024-07-23T23:40:58.010000"],["2024-07-23T23:40:59.010000"],["2024-07-23T23:41:00.010000"],["2024-07-23T23:41:01.010000"],["2024-07-23T23:41:02.010000"],["2024-07-23T23:41:03.010000"],["2024-07-23T23:41:04.010000"],["2024-07-23T23:41:05.010000"],["2024-07-23T23:41:06.010000"],["2024-07-23T23:41:07.010000"],["2024-07-23T23:41:08.010000"],["2024-07-23T23:41:09.010000"],["2024-07-23T23:41:10.010000"],["2024-07-23T23:41:11.010000"],["2024-07-23T23:41:12.010000"],["2024-07-23T23:41:13.010000"],["2024-07-23T23:41:14.010000"],["2024-07-23T23:41:15.010000"],["2024-07-23T23:41:16.010000"],["2024-07-23T23:41:17.010000"],["2024-07-23T23:41:18.010000"],["2024-07-23T23:41:19.010000"],["2024-07-23T23:41:20.010000"],["2024-07-23T23:41:21.010000"],["2024-07-23T23:41:22.010000"],["2024-07-23T23:41:23.010000"],["2024-07-23T23:41:24.010000"],["2024-07-23T23:41:25.010000"],["2024-07-23T23:41:26.010000"],["2024-07-23T23:41:27.010000"],["2024-07-23T23:41:28.010000"],["2024-07-23T23:41:29.010000"],["2024-07-23T23:41:30.010000"],["2024-07-23T23:41:31.010000"],["2024-07-23T23:41:32.010000"],["2024-07-23T23:41:33.010000"],["2024-07-23T23:41:34.010000"],["2024-07-23T23:41:35.010000"],["2024-07-23T23:41:36.010000"],["2024-07-23T23:41:37.010000"],["2024-07-23T23:41:38.010000"],["2024-07-23T23:41:39.010000"],["2024-07-23T23:41:40.010000"],["2024-07-23T23:41:41.010000"],["2024-07-23T23:41:42.010000"],["2024-07-23T23:41:43.010000"],["2024-07-23T23:41:44.010000"],["2024-07-23T23:41:45.010000"],["2024-07-23T23:41:46.010000"],["2024-07-23T23:41:47.010000"],["2024-07-23T23:41:48.010000"],["2024-07-23T23:41:49.010000"],["2024-07-23T23:41:50.010000"],["2024-07-23T23:41:51.010000"],["2024-07-23T23:41:52.010000"],["2024-07-23T23:41:53.010000"],["2024-07-23T23:41:54.010000"],["2024-07-23T23:41:55.010000"],["2024-07-23T23:41:56.010000"],["2024-07-23T23:41:57.010000"],["2024-07-23T23:41:58.010000"],["2024-07-23T23:41:59.010000"],["2024-07-23T23:42:00.010000"],["2024-07-23T23:42:01.010000"],["2024-07-23T23:42:02.010000"],["2024-07-23T23:42:03.010000"],["2024-07-23T23:42:04.010000"],["2024-07-23T23:42:05.010000"],["2024-07-23T23:42:06.010000"],["2024-07-23T23:42:07.010000"],["2024-07-23T23:42:08.010000"],["2024-07-23T23:42:09.010000"],["2024-07-23T23:42:10.010000"],["2024-07-23T23:42:11.010000"],["2024-07-23T23:42:12.010000"],["2024-07-23T23:42:13.010000"],["2024-07-23T23:42:14.010000"],["2024-07-23T23:42:15.010000"],["2024-07-23T23:42:16.010000"],["2024-07-23T23:42:17.010000"],["2024-07-23T23:42:18.010000"],["2024-07-23T23:42:19.010000"],["2024-07-23T23:42:20.010000"],["2024-07-23T23:42:21.010000"],["2024-07-23T23:42:22.010000"],["2024-07-23T23:42:23.010000"],["2024-07-23T23:42:24.010000"],["2024-07-23T23:42:25.010000"],["2024-07-23T23:42:26.010000"],["2024-07-23T23:42:27.010000"],["2024-07-23T23:42:28.010000"],["2024-07-23T23:42:29.010000"],["2024-07-23T23:42:30.010000"],["2024-07-23T23:42:31.010000"],["2024-07-23T23:42:32.010000"],["2024-07-23T23:42:33.010000"],["2024-07-23T23:42:34.010000"],["2024-07-23T23:42:35.010000"],["2024-07-23T23:42:36.010000"],["2024-07-23T23:42:37.010000"],["2024-07-23T23:42:38.010000"],["2024-07-23T23:42:39.010000"],["2024-07-23T23:42:40.010000"],["2024-07-23T23:42:41.010000"],["2024-07-23T23:42:42.010000"],["2024-07-23T23:42:43.010000"],["2024-07-23T23:42:44.010000"],["2024-07-23T23:42:45.010000"],["2024-07-23T23:42:46.010000"],["2024-07-23T23:42:47.010000"],["2024-07-23T23:42:48.010000"],["2024-07-23T23:42:49.010000"],["2024-07-23T23:42:50.010000"],["2024-07-23T23:42:51.010000"],["2024-07-23T23:42:52.010000"],["2024-07-23T23:42:53.010000"],["2024-07-23T23:42:54.010000"],["2024-07-23T23:42:55.010000"],["2024-07-23T23:42:56.010000"],["2024-07-23T23:42:57.010000"],["2024-07-23T23:42:58.010000"],["2024-07-23T23:42:59.010000"],["2024-07-23T23:43:00.010000"],["2024-07-23T23:43:01.010000"],["2024-07-23T23:43:02.010000"],["2024-07-23T23:43:03.010000"],["2024-07-23T23:43:04.010000"],["2024-07-23T23:43:05.010000"],["2024-07-23T23:43:06.010000"],["2024-07-23T23:43:07.010000"],["2024-07-23T23:43:08.010000"],["2024-07-23T23:43:09.010000"],["2024-07-23T23:43:10.010000"],["2024-07-23T23:43:11.010000"],["2024-07-23T23:43:12.010000"],["2024-07-23T23:43:13.010000"],["2024-07-23T23:43:14.010000"],["2024-07-23T23:43:15.010000"],["2024-07-23T23:43:16.010000"],["2024-07-23T23:43:17.010000"],["2024-07-23T23:43:18.010000"],["2024-07-23T23:43:19.010000"],["2024-07-23T23:43:20.010000"],["2024-07-23T23:43:21.010000"],["2024-07-23T23:43:22.010000"],["2024-07-23T23:43:23.010000"],["2024-07-23T23:43:24.010000"],["2024-07-23T23:43:25.010000"],["2024-07-23T23:43:26.010000"],["2024-07-23T23:43:27.010000"],["2024-07-23T23:43:28.010000"],["2024-07-23T23:43:29.010000"],["2024-07-23T23:43:30.010000"],["2024-07-23T23:43:31.010000"],["2024-07-23T23:43:32.010000"],["2024-07-23T23:43:33.010000"],["2024-07-23T23:43:34.010000"],["2024-07-23T23:43:35.010000"],["2024-07-23T23:43:36.010000"],["2024-07-23T23:43:37.010000"],["2024-07-23T23:43:38.010000"],["2024-07-23T23:43:39.010000"],["2024-07-23T23:43:40.010000"],["2024-07-23T23:43:41.010000"],["2024-07-23T23:43:42.010000"],["2024-07-23T23:43:43.010000"],["2024-07-23T23:43:44.010000"],["2024-07-23T23:43:45.010000"],["2024-07-23T23:43:46.010000"],["2024-07-23T23:43:47.010000"],["2024-07-23T23:43:48.010000"],["2024-07-23T23:43:49.010000"],["2024-07-23T23:43:50.010000"],["2024-07-23T23:43:51.010000"],["2024-07-23T23:43:52.010000"],["2024-07-23T23:43:53.010000"],["2024-07-23T23:43:54.010000"],["2024-07-23T23:43:55.010000"],["2024-07-23T23:43:56.010000"],["2024-07-23T23:43:57.010000"],["2024-07-23T23:43:58.010000"],["2024-07-23T23:43:59.010000"],["2024-07-23T23:44:00.010000"],["2024-07-23T23:44:01.010000"],["2024-07-23T23:44:02.010000"],["2024-07-23T23:44:03.010000"],["2024-07-23T23:44:04.010000"],["2024-07-23T23:44:05.010000"],["2024-07-23T23:44:06.010000"],["2024-07-23T23:44:07.010000"],["2024-07-23T23:44:08.010000"],["2024-07-23T23:44:09.010000"],["2024-07-23T23:44:10.010000"],["2024-07-23T23:44:11.010000"],["2024-07-23T23:44:12.010000"],["2024-07-23T23:44:13.010000"],["2024-07-23T23:44:14.010000"],["2024-07-23T23:44:15.010000"],["2024-07-23T23:44:16.010000"],["2024-07-23T23:44:17.010000"],["2024-07-23T23:44:18.010000"],["2024-07-23T23:44:19.010000"],["2024-07-23T23:44:20.010000"],["2024-07-23T23:44:21.010000"],["2024-07-23T23:44:22.010000"],["2024-07-23T23:44:23.010000"],["2024-07-23T23:44:24.010000"],["2024-07-23T23:44:25.010000"],["2024-07-23T23:44:26.010000"],["2024-07-23T23:44:27.010000"],["2024-07-23T23:44:28.010000"],["2024-07-23T23:44:29.010000"],["2024-07-23T23:44:30.010000"],["2024-07-23T23:44:31.010000"],["2024-07-23T23:44:32.010000"],["2024-07-23T23:44:33.010000"],["2024-07-23T23:44:34.010000"],["2024-07-23T23:44:35.010000"],["2024-07-23T23:44:36.010000"],["2024-07-23T23:44:37.010000"],["2024-07-23T23:44:38.010000"],["2024-07-23T23:44:39.010000"],["2024-07-23T23:44:40.010000"],["2024-07-23T23:44:41.010000"],["2024-07-23T23:44:42.010000"],["2024-07-23T23:44:43.010000"],["2024-07-23T23:44:44.010000"],["2024-07-23T23:44:45.010000"],["2024-07-23T23:44:46.010000"],["2024-07-23T23:44:47.010000"],["2024-07-23T23:44:48.010000"],["2024-07-23T23:44:49.010000"],["2024-07-23T23:44:50.010000"],["2024-07-23T23:44:51.010000"],["2024-07-23T23:44:52.010000"],["2024-07-23T23:44:53.010000"],["2024-07-23T23:44:54.010000"],["2024-07-23T23:44:55.010000"],["2024-07-23T23:44:56.010000"],["2024-07-23T23:44:57.010000"],["2024-07-23T23:44:58.010000"],["2024-07-23T23:44:59.010000"],["2024-07-23T23:45:00.010000"],["2024-07-23T23:45:01.010000"],["2024-07-23T23:45:02.010000"],["2024-07-23T23:45:03.010000"],["2024-07-23T23:45:04.010000"],["2024-07-23T23:45:05.010000"],["2024-07-23T23:45:06.010000"],["2024-07-23T23:45:07.010000"],["2024-07-23T23:45:08.010000"],["2024-07-23T23:45:09.010000"],["2024-07-23T23:45:10.010000"],["2024-07-23T23:45:11.010000"],["2024-07-23T23:45:12.010000"],["2024-07-23T23:45:13.010000"],["2024-07-23T23:45:14.010000"],["2024-07-23T23:45:15.010000"],["2024-07-23T23:45:16.010000"],["2024-07-23T23:45:17.010000"],["2024-07-23T23:45:18.010000"],["2024-07-23T23:45:19.010000"],["2024-07-23T23:45:20.010000"],["2024-07-23T23:45:21.010000"],["2024-07-23T23:45:22.010000"],["2024-07-23T23:45:23.010000"],["2024-07-23T23:45:24.010000"],["2024-07-23T23:45:25.010000"],["2024-07-23T23:45:26.010000"],["2024-07-23T23:45:27.010000"],["2024-07-23T23:45:28.010000"],["2024-07-23T23:45:29.010000"],["2024-07-23T23:45:30.010000"],["2024-07-23T23:45:31.010000"],["2024-07-23T23:45:32.010000"],["2024-07-23T23:45:33.010000"],["2024-07-23T23:45:34.010000"],["2024-07-23T23:45:35.010000"],["2024-07-23T23:45:36.010000"],["2024-07-23T23:45:37.010000"],["2024-07-23T23:45:38.010000"],["2024-07-23T23:45:39.010000"],["2024-07-23T23:45:40.010000"],["2024-07-23T23:45:41.010000"],["2024-07-23T23:45:42.010000"],["2024-07-23T23:45:43.010000"],["2024-07-23T23:45:44.010000"],["2024-07-23T23:45:45.010000"],["2024-07-23T23:45:46.010000"],["2024-07-23T23:45:47.010000"],["2024-07-23T23:45:48.010000"],["2024-07-23T23:45:49.010000"],["2024-07-23T23:45:50.010000"],["2024-07-23T23:45:51.010000"],["2024-07-23T23:45:52.010000"],["2024-07-23T23:45:53.010000"],["2024-07-23T23:45:54.010000"],["2024-07-23T23:45:55.010000"],["2024-07-23T23:45:56.010000"],["2024-07-23T23:45:57.010000"],["2024-07-23T23:45:58.010000"],["2024-07-23T23:45:59.010000"],["2024-07-23T23:46:00.010000"],["2024-07-23T23:46:01.010000"],["2024-07-23T23:46:02.010000"],["2024-07-23T23:46:03.010000"],["2024-07-23T23:46:04.010000"],["2024-07-23T23:46:05.010000"],["2024-07-23T23:46:06.010000"],["2024-07-23T23:46:07.010000"],["2024-07-23T23:46:08.010000"],["2024-07-23T23:46:09.010000"],["2024-07-23T23:46:10.010000"],["2024-07-23T23:46:11.010000"],["2024-07-23T23:46:12.010000"],["2024-07-23T23:46:13.010000"],["2024-07-23T23:46:14.010000"],["2024-07-23T23:46:15.010000"],["2024-07-23T23:46:16.010000"],["2024-07-23T23:46:17.010000"],["2024-07-23T23:46:18.010000"],["2024-07-23T23:46:19.010000"],["2024-07-23T23:46:20.010000"],["2024-07-23T23:46:21.010000"],["2024-07-23T23:46:22.010000"],["2024-07-23T23:46:23.010000"],["2024-07-23T23:46:24.010000"],["2024-07-23T23:46:25.010000"],["2024-07-23T23:46:26.010000"],["2024-07-23T23:46:27.010000"],["2024-07-23T23:46:28.010000"],["2024-07-23T23:46:29.010000"],["2024-07-23T23:46:30.010000"],["2024-07-23T23:46:31.010000"],["2024-07-23T23:46:32.010000"],["2024-07-23T23:46:33.010000"],["2024-07-23T23:46:34.010000"],["2024-07-23T23:46:35.010000"],["2024-07-23T23:46:36.010000"],["2024-07-23T23:46:37.010000"],["2024-07-23T23:46:38.010000"],["2024-07-23T23:46:39.010000"],["2024-07-23T23:46:40.010000"],["2024-07-23T23:46:41.010000"],["2024-07-23T23:46:42.010000"],["2024-07-23T23:46:43.010000"],["2024-07-23T23:46:44.010000"],["2024-07-23T23:46:45.010000"],["2024-07-23T23:46:46.010000"],["2024-07-23T23:46:47.010000"],["2024-07-23T23:46:48.010000"],["2024-07-23T23:46:49.010000"],["2024-07-23T23:46:50.010000"],["2024-07-23T23:46:51.010000"],["2024-07-23T23:46:52.010000"],["2024-07-23T23:46:53.010000"],["2024-07-23T23:46:54.010000"],["2024-07-23T23:46:55.010000"],["2024-07-23T23:46:56.010000"],["2024-07-23T23:46:57.010000"],["2024-07-23T23:46:58.010000"],["2024-07-23T23:46:59.010000"],["2024-07-23T23:47:00.010000"],["2024-07-23T23:47:01.010000"],["2024-07-23T23:47:02.010000"],["2024-07-23T23:47:03.010000"],["2024-07-23T23:47:04.010000"],["2024-07-23T23:47:05.010000"],["2024-07-23T23:47:06.010000"],["2024-07-23T23:47:07.010000"],["2024-07-23T23:47:08.010000"],["2024-07-23T23:47:09.010000"],["2024-07-23T23:47:10.010000"],["2024-07-23T23:47:11.010000"],["2024-07-23T23:47:12.010000"],["2024-07-23T23:47:13.010000"],["2024-07-23T23:47:14.010000"],["2024-07-23T23:47:15.010000"],["2024-07-23T23:47:16.010000"],["2024-07-23T23:47:17.010000"],["2024-07-23T23:47:18.010000"],["2024-07-23T23:47:19.010000"],["2024-07-23T23:47:20.010000"],["2024-07-23T23:47:21.010000"],["2024-07-23T23:47:22.010000"],["2024-07-23T23:47:23.010000"],["2024-07-23T23:47:24.010000"],["2024-07-23T23:47:25.010000"],["2024-07-23T23:47:26.010000"],["2024-07-23T23:47:27.010000"],["2024-07-23T23:47:28.010000"],["2024-07-23T23:47:29.010000"],["2024-07-23T23:47:30.010000"],["2024-07-23T23:47:31.010000"],["2024-07-23T23:47:32.010000"],["2024-07-23T23:47:33.010000"],["2024-07-23T23:47:34.010000"],["2024-07-23T23:47:35.010000"],["2024-07-23T23:47:36.010000"],["2024-07-23T23:47:37.010000"],["2024-07-23T23:47:38.010000"],["2024-07-23T23:47:39.010000"],["2024-07-23T23:47:40.010000"],["2024-07-23T23:47:41.010000"],["2024-07-23T23:47:42.010000"],["2024-07-23T23:47:43.010000"],["2024-07-23T23:47:44.010000"],["2024-07-23T23:47:45.010000"],["2024-07-23T23:47:46.010000"],["2024-07-23T23:47:47.010000"],["2024-07-23T23:47:48.010000"],["2024-07-23T23:47:49.010000"],["2024-07-23T23:47:50.010000"],["2024-07-23T23:47:51.010000"],["2024-07-23T23:47:52.010000"],["2024-07-23T23:47:53.010000"],["2024-07-23T23:47:54.010000"],["2024-07-23T23:47:55.010000"],["2024-07-23T23:47:56.010000"],["2024-07-23T23:47:57.010000"],["2024-07-23T23:47:58.010000"],["2024-07-23T23:47:59.010000"],["2024-07-23T23:48:00.010000"],["2024-07-23T23:48:01.010000"],["2024-07-23T23:48:02.010000"],["2024-07-23T23:48:03.010000"],["2024-07-23T23:48:04.010000"],["2024-07-23T23:48:05.010000"],["2024-07-23T23:48:06.010000"],["2024-07-23T23:48:07.010000"],["2024-07-23T23:48:08.010000"],["2024-07-23T23:48:09.010000"],["2024-07-23T23:48:10.010000"],["2024-07-23T23:48:11.010000"],["2024-07-23T23:48:12.010000"],["2024-07-23T23:48:13.010000"],["2024-07-23T23:48:14.010000"],["2024-07-23T23:48:15.010000"],["2024-07-23T23:48:16.010000"],["2024-07-23T23:48:17.010000"],["2024-07-23T23:48:18.010000"],["2024-07-23T23:48:19.010000"],["2024-07-23T23:48:20.010000"],["2024-07-23T23:48:21.010000"],["2024-07-23T23:48:22.010000"],["2024-07-23T23:48:23.010000"],["2024-07-23T23:48:24.010000"],["2024-07-23T23:48:25.010000"],["2024-07-23T23:48:26.010000"],["2024-07-23T23:48:27.010000"],["2024-07-23T23:48:28.010000"],["2024-07-23T23:48:29.010000"],["2024-07-23T23:48:30.010000"],["2024-07-23T23:48:31.010000"],["2024-07-23T23:48:32.010000"],["2024-07-23T23:48:33.010000"],["2024-07-23T23:48:34.010000"],["2024-07-23T23:48:35.010000"],["2024-07-23T23:48:36.010000"],["2024-07-23T23:48:37.010000"],["2024-07-23T23:48:38.010000"],["2024-07-23T23:48:39.010000"],["2024-07-23T23:48:40.010000"],["2024-07-23T23:48:41.010000"],["2024-07-23T23:48:42.010000"],["2024-07-23T23:48:43.010000"],["2024-07-23T23:48:44.010000"],["2024-07-23T23:48:45.010000"],["2024-07-23T23:48:46.010000"],["2024-07-23T23:48:47.010000"],["2024-07-23T23:48:48.010000"],["2024-07-23T23:48:49.010000"],["2024-07-23T23:48:50.010000"],["2024-07-23T23:48:51.010000"],["2024-07-23T23:48:52.010000"],["2024-07-23T23:48:53.010000"],["2024-07-23T23:48:54.010000"],["2024-07-23T23:48:55.010000"],["2024-07-23T23:48:56.010000"],["2024-07-23T23:48:57.010000"],["2024-07-23T23:48:58.010000"],["2024-07-23T23:48:59.010000"],["2024-07-23T23:49:00.010000"],["2024-07-23T23:49:01.010000"],["2024-07-23T23:49:02.010000"],["2024-07-23T23:49:03.010000"],["2024-07-23T23:49:04.010000"],["2024-07-23T23:49:05.010000"],["2024-07-23T23:49:06.010000"],["2024-07-23T23:49:07.010000"],["2024-07-23T23:49:08.010000"],["2024-07-23T23:49:09.010000"],["2024-07-23T23:49:10.010000"],["2024-07-23T23:49:11.010000"],["2024-07-23T23:49:12.010000"],["2024-07-23T23:49:13.010000"],["2024-07-23T23:49:14.010000"],["2024-07-23T23:49:15.010000"],["2024-07-23T23:49:16.010000"],["2024-07-23T23:49:17.010000"],["2024-07-23T23:49:18.010000"],["2024-07-23T23:49:19.010000"],["2024-07-23T23:49:20.010000"],["2024-07-23T23:49:21.010000"],["2024-07-23T23:49:22.010000"],["2024-07-23T23:49:23.010000"],["2024-07-23T23:49:24.010000"],["2024-07-23T23:49:25.010000"],["2024-07-23T23:49:26.010000"],["2024-07-23T23:49:27.010000"],["2024-07-23T23:49:28.010000"],["2024-07-23T23:49:29.010000"],["2024-07-23T23:49:30.010000"],["2024-07-23T23:49:31.010000"],["2024-07-23T23:49:32.010000"],["2024-07-23T23:49:33.010000"],["2024-07-23T23:49:34.010000"],["2024-07-23T23:49:35.010000"],["2024-07-23T23:49:36.010000"],["2024-07-23T23:49:37.010000"],["2024-07-23T23:49:38.010000"],["2024-07-23T23:49:39.010000"],["2024-07-23T23:49:40.010000"],["2024-07-23T23:49:41.010000"],["2024-07-23T23:49:42.010000"],["2024-07-23T23:49:43.010000"],["2024-07-23T23:49:44.010000"],["2024-07-23T23:49:45.010000"],["2024-07-23T23:49:46.010000"],["2024-07-23T23:49:47.010000"],["2024-07-23T23:49:48.010000"],["2024-07-23T23:49:49.010000"],["2024-07-23T23:49:50.010000"],["2024-07-23T23:49:51.010000"],["2024-07-23T23:49:52.010000"],["2024-07-23T23:49:53.010000"],["2024-07-23T23:49:54.010000"],["2024-07-23T23:49:55.010000"],["2024-07-23T23:49:56.010000"],["2024-07-23T23:49:57.010000"],["2024-07-23T23:49:58.010000"],["2024-07-23T23:49:59.010000"],["2024-07-23T23:50:00.010000"],["2024-07-23T23:50:01.010000"],["2024-07-23T23:50:02.010000"],["2024-07-23T23:50:03.010000"],["2024-07-23T23:50:04.010000"],["2024-07-23T23:50:05.010000"],["2024-07-23T23:50:06.010000"],["2024-07-23T23:50:07.010000"],["2024-07-23T23:50:08.010000"],["2024-07-23T23:50:09.010000"],["2024-07-23T23:50:10.010000"],["2024-07-23T23:50:11.010000"],["2024-07-23T23:50:12.010000"],["2024-07-23T23:50:13.010000"],["2024-07-23T23:50:14.010000"],["2024-07-23T23:50:15.010000"],["2024-07-23T23:50:16.010000"],["2024-07-23T23:50:17.010000"],["2024-07-23T23:50:18.010000"],["2024-07-23T23:50:19.010000"],["2024-07-23T23:50:20.010000"],["2024-07-23T23:50:21.010000"],["2024-07-23T23:50:22.010000"],["2024-07-23T23:50:23.010000"],["2024-07-23T23:50:24.010000"],["2024-07-23T23:50:25.010000"],["2024-07-23T23:50:26.010000"],["2024-07-23T23:50:27.010000"],["2024-07-23T23:50:28.010000"],["2024-07-23T23:50:29.010000"],["2024-07-23T23:50:30.010000"],["2024-07-23T23:50:31.010000"],["2024-07-23T23:50:32.010000"],["2024-07-23T23:50:33.010000"],["2024-07-23T23:50:34.010000"],["2024-07-23T23:50:35.010000"],["2024-07-23T23:50:36.010000"],["2024-07-23T23:50:37.010000"],["2024-07-23T23:50:38.010000"],["2024-07-23T23:50:39.010000"],["2024-07-23T23:50:40.010000"],["2024-07-23T23:50:41.010000"],["2024-07-23T23:50:42.010000"],["2024-07-23T23:50:43.010000"],["2024-07-23T23:50:44.010000"],["2024-07-23T23:50:45.010000"],["2024-07-23T23:50:46.010000"],["2024-07-23T23:50:47.010000"],["2024-07-23T23:50:48.010000"],["2024-07-23T23:50:49.010000"],["2024-07-23T23:50:50.010000"],["2024-07-23T23:50:51.010000"],["2024-07-23T23:50:52.010000"],["2024-07-23T23:50:53.010000"],["2024-07-23T23:50:54.010000"],["2024-07-23T23:50:55.010000"],["2024-07-23T23:50:56.010000"],["2024-07-23T23:50:57.010000"],["2024-07-23T23:50:58.010000"],["2024-07-23T23:50:59.010000"],["2024-07-23T23:51:00.010000"],["2024-07-23T23:51:01.010000"],["2024-07-23T23:51:02.010000"],["2024-07-23T23:51:03.010000"],["2024-07-23T23:51:04.010000"],["2024-07-23T23:51:05.010000"],["2024-07-23T23:51:06.010000"],["2024-07-23T23:51:07.010000"],["2024-07-23T23:51:08.010000"],["2024-07-23T23:51:09.010000"],["2024-07-23T23:51:10.010000"],["2024-07-23T23:51:11.010000"],["2024-07-23T23:51:12.010000"],["2024-07-23T23:51:13.010000"],["2024-07-23T23:51:14.010000"],["2024-07-23T23:51:15.010000"],["2024-07-23T23:51:16.010000"],["2024-07-23T23:51:17.010000"],["2024-07-23T23:51:18.010000"],["2024-07-23T23:51:19.010000"],["2024-07-23T23:51:20.010000"],["2024-07-23T23:51:21.010000"],["2024-07-23T23:51:22.010000"],["2024-07-23T23:51:23.010000"],["2024-07-23T23:51:24.010000"],["2024-07-23T23:51:25.010000"],["2024-07-23T23:51:26.010000"],["2024-07-23T23:51:27.010000"],["2024-07-23T23:51:28.010000"],["2024-07-23T23:51:29.010000"],["2024-07-23T23:51:30.010000"],["2024-07-23T23:51:31.010000"],["2024-07-23T23:51:32.010000"],["2024-07-23T23:51:33.010000"],["2024-07-23T23:51:34.010000"],["2024-07-23T23:51:35.010000"],["2024-07-23T23:51:36.010000"],["2024-07-23T23:51:37.010000"],["2024-07-23T23:51:38.010000"],["2024-07-23T23:51:39.010000"],["2024-07-23T23:51:40.010000"],["2024-07-23T23:51:41.010000"],["2024-07-23T23:51:42.010000"],["2024-07-23T23:51:43.010000"],["2024-07-23T23:51:44.010000"],["2024-07-23T23:51:45.010000"],["2024-07-23T23:51:46.010000"],["2024-07-23T23:51:47.010000"],["2024-07-23T23:51:48.010000"],["2024-07-23T23:51:49.010000"],["2024-07-23T23:51:50.010000"],["2024-07-23T23:51:51.010000"],["2024-07-23T23:51:52.010000"],["2024-07-23T23:51:53.010000"],["2024-07-23T23:51:54.010000"],["2024-07-23T23:51:55.010000"],["2024-07-23T23:51:56.010000"],["2024-07-23T23:51:57.010000"],["2024-07-23T23:51:58.010000"],["2024-07-23T23:51:59.010000"],["2024-07-23T23:52:00.010000"],["2024-07-23T23:52:01.010000"],["2024-07-23T23:52:02.010000"],["2024-07-23T23:52:03.010000"],["2024-07-23T23:52:04.010000"],["2024-07-23T23:52:05.010000"],["2024-07-23T23:52:06.010000"],["2024-07-23T23:52:07.010000"],["2024-07-23T23:52:08.010000"],["2024-07-23T23:52:09.010000"],["2024-07-23T23:52:10.010000"],["2024-07-23T23:52:11.010000"],["2024-07-23T23:52:12.010000"],["2024-07-23T23:52:13.010000"],["2024-07-23T23:52:14.010000"],["2024-07-23T23:52:15.010000"],["2024-07-23T23:52:16.010000"],["2024-07-23T23:52:17.010000"],["2024-07-23T23:52:18.010000"],["2024-07-23T23:52:19.010000"],["2024-07-23T23:52:20.010000"],["2024-07-23T23:52:21.010000"],["2024-07-23T23:52:22.010000"],["2024-07-23T23:52:23.010000"],["2024-07-23T23:52:24.010000"],["2024-07-23T23:52:25.010000"],["2024-07-23T23:52:26.010000"],["2024-07-23T23:52:27.010000"],["2024-07-23T23:52:28.010000"],["2024-07-23T23:52:29.010000"],["2024-07-23T23:52:30.010000"],["2024-07-23T23:52:31.010000"],["2024-07-23T23:52:32.010000"],["2024-07-23T23:52:33.010000"],["2024-07-23T23:52:34.010000"],["2024-07-23T23:52:35.010000"],["2024-07-23T23:52:36.010000"],["2024-07-23T23:52:37.010000"],["2024-07-23T23:52:38.010000"],["2024-07-23T23:52:39.010000"],["2024-07-23T23:52:40.010000"],["2024-07-23T23:52:41.010000"],["2024-07-23T23:52:42.010000"],["2024-07-23T23:52:43.010000"],["2024-07-23T23:52:44.010000"],["2024-07-23T23:52:45.010000"],["2024-07-23T23:52:46.010000"],["2024-07-23T23:52:47.010000"],["2024-07-23T23:52:48.010000"],["2024-07-23T23:52:49.010000"],["2024-07-23T23:52:50.010000"],["2024-07-23T23:52:51.010000"],["2024-07-23T23:52:52.010000"],["2024-07-23T23:52:53.010000"],["2024-07-23T23:52:54.010000"],["2024-07-23T23:52:55.010000"],["2024-07-23T23:52:56.010000"],["2024-07-23T23:52:57.010000"],["2024-07-23T23:52:58.010000"],["2024-07-23T23:52:59.010000"],["2024-07-23T23:53:00.010000"],["2024-07-23T23:53:01.010000"],["2024-07-23T23:53:02.010000"],["2024-07-23T23:53:03.010000"],["2024-07-23T23:53:04.010000"],["2024-07-23T23:53:05.010000"],["2024-07-23T23:53:06.010000"],["2024-07-23T23:53:07.010000"],["2024-07-23T23:53:08.010000"],["2024-07-23T23:53:09.010000"],["2024-07-23T23:53:10.010000"],["2024-07-23T23:53:11.010000"],["2024-07-23T23:53:12.010000"],["2024-07-23T23:53:13.010000"],["2024-07-23T23:53:14.010000"],["2024-07-23T23:53:15.010000"],["2024-07-23T23:53:16.010000"],["2024-07-23T23:53:17.010000"],["2024-07-23T23:53:18.010000"],["2024-07-23T23:53:19.010000"],["2024-07-23T23:53:20.010000"],["2024-07-23T23:53:21.010000"],["2024-07-23T23:53:22.010000"],["2024-07-23T23:53:23.010000"],["2024-07-23T23:53:24.010000"],["2024-07-23T23:53:25.010000"],["2024-07-23T23:53:26.010000"],["2024-07-23T23:53:27.010000"],["2024-07-23T23:53:28.010000"],["2024-07-23T23:53:29.010000"],["2024-07-23T23:53:30.010000"],["2024-07-23T23:53:31.010000"],["2024-07-23T23:53:32.010000"],["2024-07-23T23:53:33.010000"],["2024-07-23T23:53:34.010000"],["2024-07-23T23:53:35.010000"],["2024-07-23T23:53:36.010000"],["2024-07-23T23:53:37.010000"],["2024-07-23T23:53:38.010000"],["2024-07-23T23:53:39.010000"],["2024-07-23T23:53:40.010000"],["2024-07-23T23:53:41.010000"],["2024-07-23T23:53:42.010000"],["2024-07-23T23:53:43.010000"],["2024-07-23T23:53:44.010000"],["2024-07-23T23:53:45.010000"],["2024-07-23T23:53:46.010000"],["2024-07-23T23:53:47.010000"],["2024-07-23T23:53:48.010000"],["2024-07-23T23:53:49.010000"],["2024-07-23T23:53:50.010000"],["2024-07-23T23:53:51.010000"],["2024-07-23T23:53:52.010000"],["2024-07-23T23:53:53.010000"],["2024-07-23T23:53:54.010000"],["2024-07-23T23:53:55.010000"],["2024-07-23T23:53:56.010000"],["2024-07-23T23:53:57.010000"],["2024-07-23T23:53:58.010000"],["2024-07-23T23:53:59.010000"],["2024-07-23T23:54:00.010000"],["2024-07-23T23:54:01.010000"],["2024-07-23T23:54:02.010000"],["2024-07-23T23:54:03.010000"],["2024-07-23T23:54:04.010000"],["2024-07-23T23:54:05.010000"],["2024-07-23T23:54:06.010000"],["2024-07-23T23:54:07.010000"],["2024-07-23T23:54:08.010000"],["2024-07-23T23:54:09.010000"],["2024-07-23T23:54:10.010000"],["2024-07-23T23:54:11.010000"],["2024-07-23T23:54:12.010000"],["2024-07-23T23:54:13.010000"],["2024-07-23T23:54:14.010000"],["2024-07-23T23:54:15.010000"],["2024-07-23T23:54:16.010000"],["2024-07-23T23:54:17.010000"],["2024-07-23T23:54:18.010000"],["2024-07-23T23:54:19.010000"],["2024-07-23T23:54:20.010000"],["2024-07-23T23:54:21.010000"],["2024-07-23T23:54:22.010000"],["2024-07-23T23:54:23.010000"],["2024-07-23T23:54:24.010000"],["2024-07-23T23:54:25.010000"],["2024-07-23T23:54:26.010000"],["2024-07-23T23:54:27.010000"],["2024-07-23T23:54:28.010000"],["2024-07-23T23:54:29.010000"],["2024-07-23T23:54:30.010000"],["2024-07-23T23:54:31.010000"],["2024-07-23T23:54:32.010000"],["2024-07-23T23:54:33.010000"],["2024-07-23T23:54:34.010000"],["2024-07-23T23:54:35.010000"],["2024-07-23T23:54:36.010000"],["2024-07-23T23:54:37.010000"],["2024-07-23T23:54:38.010000"],["2024-07-23T23:54:39.010000"],["2024-07-23T23:54:40.010000"],["2024-07-23T23:54:41.010000"],["2024-07-23T23:54:42.010000"],["2024-07-23T23:54:43.010000"],["2024-07-23T23:54:44.010000"],["2024-07-23T23:54:45.010000"],["2024-07-23T23:54:46.010000"],["2024-07-23T23:54:47.010000"],["2024-07-23T23:54:48.010000"],["2024-07-23T23:54:49.010000"],["2024-07-23T23:54:50.010000"],["2024-07-23T23:54:51.010000"],["2024-07-23T23:54:52.010000"],["2024-07-23T23:54:53.010000"],["2024-07-23T23:54:54.010000"],["2024-07-23T23:54:55.010000"],["2024-07-23T23:54:56.010000"],["2024-07-23T23:54:57.010000"],["2024-07-23T23:54:58.010000"],["2024-07-23T23:54:59.010000"],["2024-07-23T23:55:00.010000"],["2024-07-23T23:55:01.010000"],["2024-07-23T23:55:02.010000"],["2024-07-23T23:55:03.010000"],["2024-07-23T23:55:04.010000"],["2024-07-23T23:55:05.010000"],["2024-07-23T23:55:06.010000"],["2024-07-23T23:55:07.010000"],["2024-07-23T23:55:08.010000"],["2024-07-23T23:55:09.010000"],["2024-07-23T23:55:10.010000"],["2024-07-23T23:55:11.010000"],["2024-07-23T23:55:12.010000"],["2024-07-23T23:55:13.010000"],["2024-07-23T23:55:14.010000"],["2024-07-23T23:55:15.010000"],["2024-07-23T23:55:16.010000"],["2024-07-23T23:55:17.010000"],["2024-07-23T23:55:18.010000"],["2024-07-23T23:55:19.010000"],["2024-07-23T23:55:20.010000"],["2024-07-23T23:55:21.010000"],["2024-07-23T23:55:22.010000"],["2024-07-23T23:55:23.010000"],["2024-07-23T23:55:24.010000"],["2024-07-23T23:55:25.010000"],["2024-07-23T23:55:26.010000"],["2024-07-23T23:55:27.010000"],["2024-07-23T23:55:28.010000"],["2024-07-23T23:55:29.010000"],["2024-07-23T23:55:30.010000"],["2024-07-23T23:55:31.010000"],["2024-07-23T23:55:32.010000"],["2024-07-23T23:55:33.010000"],["2024-07-23T23:55:34.010000"],["2024-07-23T23:55:35.010000"],["2024-07-23T23:55:36.010000"],["2024-07-23T23:55:37.010000"],["2024-07-23T23:55:38.010000"],["2024-07-23T23:55:39.010000"],["2024-07-23T23:55:40.010000"],["2024-07-23T23:55:41.010000"],["2024-07-23T23:55:42.010000"],["2024-07-23T23:55:43.010000"],["2024-07-23T23:55:44.010000"],["2024-07-23T23:55:45.010000"],["2024-07-23T23:55:46.010000"],["2024-07-23T23:55:47.010000"],["2024-07-23T23:55:48.010000"],["2024-07-23T23:55:49.010000"],["2024-07-23T23:55:50.010000"],["2024-07-23T23:55:51.010000"],["2024-07-23T23:55:52.010000"],["2024-07-23T23:55:53.010000"],["2024-07-23T23:55:54.010000"],["2024-07-23T23:55:55.010000"],["2024-07-23T23:55:56.010000"],["2024-07-23T23:55:57.010000"],["2024-07-23T23:55:58.010000"],["2024-07-23T23:55:59.010000"],["2024-07-23T23:56:00.010000"],["2024-07-23T23:56:01.010000"],["2024-07-23T23:56:02.010000"],["2024-07-23T23:56:03.010000"],["2024-07-23T23:56:04.010000"],["2024-07-23T23:56:05.010000"],["2024-07-23T23:56:06.010000"],["2024-07-23T23:56:07.010000"],["2024-07-23T23:56:08.010000"],["2024-07-23T23:56:09.010000"],["2024-07-23T23:56:10.010000"],["2024-07-23T23:56:11.010000"],["2024-07-23T23:56:12.010000"],["2024-07-23T23:56:13.010000"],["2024-07-23T23:56:14.010000"],["2024-07-23T23:56:15.010000"],["2024-07-23T23:56:16.010000"],["2024-07-23T23:56:17.010000"],["2024-07-23T23:56:18.010000"],["2024-07-23T23:56:19.010000"],["2024-07-23T23:56:20.010000"],["2024-07-23T23:56:21.010000"],["2024-07-23T23:56:22.010000"],["2024-07-23T23:56:23.010000"],["2024-07-23T23:56:24.010000"],["2024-07-23T23:56:25.010000"],["2024-07-23T23:56:26.010000"],["2024-07-23T23:56:27.010000"],["2024-07-23T23:56:28.010000"],["2024-07-23T23:56:29.010000"],["2024-07-23T23:56:30.010000"],["2024-07-23T23:56:31.010000"],["2024-07-23T23:56:32.010000"],["2024-07-23T23:56:33.010000"],["2024-07-23T23:56:34.010000"],["2024-07-23T23:56:35.010000"],["2024-07-23T23:56:36.010000"],["2024-07-23T23:56:37.010000"],["2024-07-23T23:56:38.010000"],["2024-07-23T23:56:39.010000"],["2024-07-23T23:56:40.010000"],["2024-07-23T23:56:41.010000"],["2024-07-23T23:56:42.010000"],["2024-07-23T23:56:43.010000"],["2024-07-23T23:56:44.010000"],["2024-07-23T23:56:45.010000"],["2024-07-23T23:56:46.010000"],["2024-07-23T23:56:47.010000"],["2024-07-23T23:56:48.010000"],["2024-07-23T23:56:49.010000"],["2024-07-23T23:56:50.010000"],["2024-07-23T23:56:51.010000"],["2024-07-23T23:56:52.010000"],["2024-07-23T23:56:53.010000"],["2024-07-23T23:56:54.010000"],["2024-07-23T23:56:55.010000"],["2024-07-23T23:56:56.010000"],["2024-07-23T23:56:57.010000"],["2024-07-23T23:56:58.010000"],["2024-07-23T23:56:59.010000"],["2024-07-23T23:57:00.010000"],["2024-07-23T23:57:01.010000"],["2024-07-23T23:57:02.010000"],["2024-07-23T23:57:03.010000"],["2024-07-23T23:57:04.010000"],["2024-07-23T23:57:05.010000"],["2024-07-23T23:57:06.010000"],["2024-07-23T23:57:07.010000"],["2024-07-23T23:57:08.010000"],["2024-07-23T23:57:09.010000"],["2024-07-23T23:57:10.010000"],["2024-07-23T23:57:11.010000"],["2024-07-23T23:57:12.010000"],["2024-07-23T23:57:13.010000"],["2024-07-23T23:57:14.010000"],["2024-07-23T23:57:15.010000"],["2024-07-23T23:57:16.010000"],["2024-07-23T23:57:17.010000"],["2024-07-23T23:57:18.010000"],["2024-07-23T23:57:19.010000"],["2024-07-23T23:57:20.010000"],["2024-07-23T23:57:21.010000"],["2024-07-23T23:57:22.010000"],["2024-07-23T23:57:23.010000"],["2024-07-23T23:57:24.010000"],["2024-07-23T23:57:25.010000"],["2024-07-23T23:57:26.010000"],["2024-07-23T23:57:27.010000"],["2024-07-23T23:57:28.010000"],["2024-07-23T23:57:29.010000"],["2024-07-23T23:57:30.010000"],["2024-07-23T23:57:31.010000"],["2024-07-23T23:57:32.010000"],["2024-07-23T23:57:33.010000"],["2024-07-23T23:57:34.010000"],["2024-07-23T23:57:35.010000"],["2024-07-23T23:57:36.010000"],["2024-07-23T23:57:37.010000"],["2024-07-23T23:57:38.010000"],["2024-07-23T23:57:39.010000"],["2024-07-23T23:57:40.010000"],["2024-07-23T23:57:41.010000"],["2024-07-23T23:57:42.010000"],["2024-07-23T23:57:43.010000"],["2024-07-23T23:57:44.010000"],["2024-07-23T23:57:45.010000"],["2024-07-23T23:57:46.010000"],["2024-07-23T23:57:47.010000"],["2024-07-23T23:57:48.010000"],["2024-07-23T23:57:49.010000"],["2024-07-23T23:57:50.010000"],["2024-07-23T23:57:51.010000"],["2024-07-23T23:57:52.010000"],["2024-07-23T23:57:53.010000"],["2024-07-23T23:57:54.010000"],["2024-07-23T23:57:55.010000"],["2024-07-23T23:57:56.010000"],["2024-07-23T23:57:57.010000"],["2024-07-23T23:57:58.010000"],["2024-07-23T23:57:59.010000"],["2024-07-23T23:58:00.010000"],["2024-07-23T23:58:01.010000"],["2024-07-23T23:58:02.010000"],["2024-07-23T23:58:03.010000"],["2024-07-23T23:58:04.010000"],["2024-07-23T23:58:05.010000"],["2024-07-23T23:58:06.010000"],["2024-07-23T23:58:07.010000"],["2024-07-23T23:58:08.010000"],["2024-07-23T23:58:09.010000"],["2024-07-23T23:58:10.010000"],["2024-07-23T23:58:11.010000"],["2024-07-23T23:58:12.010000"],["2024-07-23T23:58:13.010000"],["2024-07-23T23:58:14.010000"],["2024-07-23T23:58:15.010000"],["2024-07-23T23:58:16.010000"],["2024-07-23T23:58:17.010000"],["2024-07-23T23:58:18.010000"],["2024-07-23T23:58:19.010000"],["2024-07-23T23:58:20.010000"],["2024-07-23T23:58:21.010000"],["2024-07-23T23:58:22.010000"],["2024-07-23T23:58:23.010000"],["2024-07-23T23:58:24.010000"],["2024-07-23T23:58:25.010000"],["2024-07-23T23:58:26.010000"],["2024-07-23T23:58:27.010000"],["2024-07-23T23:58:28.010000"],["2024-07-23T23:58:29.010000"],["2024-07-23T23:58:30.010000"],["2024-07-23T23:58:31.010000"],["2024-07-23T23:58:32.010000"],["2024-07-23T23:58:33.010000"],["2024-07-23T23:58:34.010000"],["2024-07-23T23:58:35.010000"],["2024-07-23T23:58:36.010000"],["2024-07-23T23:58:37.010000"],["2024-07-23T23:58:38.010000"],["2024-07-23T23:58:39.010000"],["2024-07-23T23:58:40.010000"],["2024-07-23T23:58:41.010000"],["2024-07-23T23:58:42.010000"],["2024-07-23T23:58:43.010000"],["2024-07-23T23:58:44.010000"],["2024-07-23T23:58:45.010000"],["2024-07-23T23:58:46.010000"],["2024-07-23T23:58:47.010000"],["2024-07-23T23:58:48.010000"],["2024-07-23T23:58:49.010000"],["2024-07-23T23:58:50.010000"],["2024-07-23T23:58:51.010000"],["2024-07-23T23:58:52.010000"],["2024-07-23T23:58:53.010000"],["2024-07-23T23:58:54.010000"],["2024-07-23T23:58:55.010000"],["2024-07-23T23:58:56.010000"],["2024-07-23T23:58:57.010000"],["2024-07-23T23:58:58.010000"],["2024-07-23T23:58:59.010000"],["2024-07-23T23:59:00.010000"],["2024-07-23T23:59:01.010000"],["2024-07-23T23:59:02.010000"],["2024-07-23T23:59:03.010000"],["2024-07-23T23:59:04.010000"],["2024-07-23T23:59:05.010000"],["2024-07-23T23:59:06.010000"],["2024-07-23T23:59:07.010000"],["2024-07-23T23:59:08.010000"],["2024-07-23T23:59:09.010000"],["2024-07-23T23:59:10.010000"],["2024-07-23T23:59:11.010000"],["2024-07-23T23:59:12.010000"],["2024-07-23T23:59:13.010000"],["2024-07-23T23:59:14.010000"],["2024-07-23T23:59:15.010000"],["2024-07-23T23:59:16.010000"],["2024-07-23T23:59:17.010000"],["2024-07-23T23:59:18.010000"],["2024-07-23T23:59:19.010000"],["2024-07-23T23:59:20.010000"],["2024-07-23T23:59:21.010000"],["2024-07-23T23:59:22.010000"],["2024-07-23T23:59:23.010000"],["2024-07-23T23:59:24.010000"],["2024-07-23T23:59:25.010000"],["2024-07-23T23:59:26.010000"],["2024-07-23T23:59:27.010000"],["2024-07-23T23:59:28.010000"],["2024-07-23T23:59:29.010000"],["2024-07-23T23:59:30.010000"],["2024-07-23T23:59:31.010000"],["2024-07-23T23:59:32.010000"],["2024-07-23T23:59:33.010000"],["2024-07-23T23:59:34.010000"],["2024-07-23T23:59:35.010000"],["2024-07-23T23:59:36.010000"],["2024-07-23T23:59:37.010000"],["2024-07-23T23:59:38.010000"],["2024-07-23T23:59:39.010000"],["2024-07-23T23:59:40.010000"],["2024-07-23T23:59:41.010000"],["2024-07-23T23:59:42.010000"],["2024-07-23T23:59:43.010000"],["2024-07-23T23:59:44.010000"],["2024-07-23T23:59:45.010000"],["2024-07-23T23:59:46.010000"],["2024-07-23T23:59:47.010000"],["2024-07-23T23:59:48.010000"],["2024-07-23T23:59:49.010000"],["2024-07-23T23:59:50.010000"],["2024-07-23T23:59:51.010000"],["2024-07-23T23:59:52.010000"],["2024-07-23T23:59:53.010000"],["2024-07-23T23:59:54.010000"],["2024-07-23T23:59:55.010000"],["2024-07-23T23:59:56.010000"],["2024-07-23T23:59:57.010000"],["2024-07-23T23:59:58.010000"],["2024-07-23T23:59:59.010000"],["2024-07-24T00:00:00.010000"],["2024-07-24T00:00:01.010000"],["2024-07-24T00:00:02.010000"],["2024-07-24T00:00:03.010000"],["2024-07-24T00:00:04.010000"],["2024-07-24T00:00:05.010000"],["2024-07-24T00:00:06.010000"],["2024-07-24T00:00:07.010000"],["2024-07-24T00:00:08.010000"],["2024-07-24T00:00:09.010000"],["2024-07-24T00:00:10.010000"],["2024-07-24T00:00:11.010000"],["2024-07-24T00:00:12.010000"],["2024-07-24T00:00:13.010000"],["2024-07-24T00:00:14.010000"],["2024-07-24T00:00:15.010000"],["2024-07-24T00:00:16.010000"],["2024-07-24T00:00:17.010000"],["2024-07-24T00:00:18.010000"],["2024-07-24T00:00:19.010000"],["2024-07-24T00:00:20.010000"],["2024-07-24T00:00:21.010000"],["2024-07-24T00:00:22.010000"],["2024-07-24T00:00:23.010000"],["2024-07-24T00:00:24.010000"],["2024-07-24T00:00:25.010000"],["2024-07-24T00:00:26.010000"],["2024-07-24T00:00:27.010000"],["2024-07-24T00:00:28.010000"],["2024-07-24T00:00:29.010000"],["2024-07-24T00:00:30.010000"],["2024-07-24T00:00:31.010000"],["2024-07-24T00:00:32.010000"],["2024-07-24T00:00:33.010000"],["2024-07-24T00:00:34.010000"],["2024-07-24T00:00:35.010000"],["2024-07-24T00:00:36.010000"],["2024-07-24T00:00:37.010000"],["2024-07-24T00:00:38.010000"],["2024-07-24T00:00:39.010000"],["2024-07-24T00:00:40.010000"],["2024-07-24T00:00:41.010000"],["2024-07-24T00:00:42.010000"],["2024-07-24T00:00:43.010000"],["2024-07-24T00:00:44.010000"],["2024-07-24T00:00:45.010000"],["2024-07-24T00:00:46.010000"],["2024-07-24T00:00:47.010000"],["2024-07-24T00:00:48.010000"],["2024-07-24T00:00:49.010000"],["2024-07-24T00:00:50.010000"],["2024-07-24T00:00:51.010000"],["2024-07-24T00:00:52.010000"],["2024-07-24T00:00:53.010000"],["2024-07-24T00:00:54.010000"],["2024-07-24T00:00:55.010000"],["2024-07-24T00:00:56.010000"],["2024-07-24T00:00:57.010000"],["2024-07-24T00:00:58.010000"],["2024-07-24T00:00:59.010000"],["2024-07-24T00:01:00.010000"],["2024-07-24T00:01:01.010000"],["2024-07-24T00:01:02.010000"],["2024-07-24T00:01:03.010000"],["2024-07-24T00:01:04.010000"],["2024-07-24T00:01:05.010000"],["2024-07-24T00:01:06.010000"],["2024-07-24T00:01:07.010000"],["2024-07-24T00:01:08.010000"],["2024-07-24T00:01:09.010000"],["2024-07-24T00:01:10.010000"],["2024-07-24T00:01:11.010000"],["2024-07-24T00:01:12.010000"],["2024-07-24T00:01:13.010000"],["2024-07-24T00:01:14.010000"],["2024-07-24T00:01:15.010000"],["2024-07-24T00:01:16.010000"],["2024-07-24T00:01:17.010000"],["2024-07-24T00:01:18.010000"],["2024-07-24T00:01:19.010000"],["2024-07-24T00:01:20.010000"],["2024-07-24T00:01:21.010000"],["2024-07-24T00:01:22.010000"],["2024-07-24T00:01:23.010000"],["2024-07-24T00:01:24.010000"],["2024-07-24T00:01:25.010000"],["2024-07-24T00:01:26.010000"],["2024-07-24T00:01:27.010000"],["2024-07-24T00:01:28.010000"],["2024-07-24T00:01:29.010000"],["2024-07-24T00:01:30.010000"],["2024-07-24T00:01:31.010000"],["2024-07-24T00:01:32.010000"],["2024-07-24T00:01:33.010000"],["2024-07-24T00:01:34.010000"],["2024-07-24T00:01:35.010000"],["2024-07-24T00:01:36.010000"],["2024-07-24T00:01:37.010000"],["2024-07-24T00:01:38.010000"],["2024-07-24T00:01:39.010000"],["2024-07-24T00:01:40.010000"],["2024-07-24T00:01:41.010000"],["2024-07-24T00:01:42.010000"],["2024-07-24T00:01:43.010000"],["2024-07-24T00:01:44.010000"],["2024-07-24T00:01:45.010000"],["2024-07-24T00:01:46.010000"],["2024-07-24T00:01:47.010000"],["2024-07-24T00:01:48.010000"],["2024-07-24T00:01:49.010000"],["2024-07-24T00:01:50.010000"],["2024-07-24T00:01:51.010000"],["2024-07-24T00:01:52.010000"],["2024-07-24T00:01:53.010000"],["2024-07-24T00:01:54.010000"],["2024-07-24T00:01:55.010000"],["2024-07-24T00:01:56.010000"],["2024-07-24T00:01:57.010000"],["2024-07-24T00:01:58.010000"],["2024-07-24T00:01:59.010000"],["2024-07-24T00:02:00.010000"],["2024-07-24T00:02:01.010000"],["2024-07-24T00:02:02.010000"],["2024-07-24T00:02:03.010000"],["2024-07-24T00:02:04.010000"],["2024-07-24T00:02:05.010000"],["2024-07-24T00:02:06.010000"],["2024-07-24T00:02:07.010000"],["2024-07-24T00:02:08.010000"],["2024-07-24T00:02:09.010000"],["2024-07-24T00:02:10.010000"],["2024-07-24T00:02:11.010000"],["2024-07-24T00:02:12.010000"],["2024-07-24T00:02:13.010000"],["2024-07-24T00:02:14.010000"],["2024-07-24T00:02:15.010000"],["2024-07-24T00:02:16.010000"],["2024-07-24T00:02:17.010000"],["2024-07-24T00:02:18.010000"],["2024-07-24T00:02:19.010000"],["2024-07-24T00:02:20.010000"],["2024-07-24T00:02:21.010000"],["2024-07-24T00:02:22.010000"],["2024-07-24T00:02:23.010000"],["2024-07-24T00:02:24.010000"],["2024-07-24T00:02:25.010000"],["2024-07-24T00:02:26.010000"],["2024-07-24T00:02:27.010000"],["2024-07-24T00:02:28.010000"],["2024-07-24T00:02:29.010000"],["2024-07-24T00:02:30.010000"],["2024-07-24T00:02:31.010000"],["2024-07-24T00:02:32.010000"],["2024-07-24T00:02:33.010000"],["2024-07-24T00:02:34.010000"],["2024-07-24T00:02:35.010000"],["2024-07-24T00:02:36.010000"],["2024-07-24T00:02:37.010000"],["2024-07-24T00:02:38.010000"],["2024-07-24T00:02:39.010000"],["2024-07-24T00:02:40.010000"],["2024-07-24T00:02:41.010000"],["2024-07-24T00:02:42.010000"],["2024-07-24T00:02:43.010000"],["2024-07-24T00:02:44.010000"],["2024-07-24T00:02:45.010000"],["2024-07-24T00:02:46.010000"],["2024-07-24T00:02:47.010000"],["2024-07-24T00:02:48.010000"],["2024-07-24T00:02:49.010000"],["2024-07-24T00:02:50.010000"],["2024-07-24T00:02:51.010000"],["2024-07-24T00:02:52.010000"],["2024-07-24T00:02:53.010000"],["2024-07-24T00:02:54.010000"],["2024-07-24T00:02:55.010000"],["2024-07-24T00:02:56.010000"],["2024-07-24T00:02:57.010000"],["2024-07-24T00:02:58.010000"],["2024-07-24T00:02:59.010000"],["2024-07-24T00:03:00.010000"],["2024-07-24T00:03:01.010000"],["2024-07-24T00:03:02.010000"],["2024-07-24T00:03:03.010000"],["2024-07-24T00:03:04.010000"],["2024-07-24T00:03:05.010000"],["2024-07-24T00:03:06.010000"],["2024-07-24T00:03:07.010000"],["2024-07-24T00:03:08.010000"],["2024-07-24T00:03:09.010000"],["2024-07-24T00:03:10.010000"],["2024-07-24T00:03:11.010000"],["2024-07-24T00:03:12.010000"],["2024-07-24T00:03:13.010000"],["2024-07-24T00:03:14.010000"],["2024-07-24T00:03:15.010000"],["2024-07-24T00:03:16.010000"],["2024-07-24T00:03:17.010000"],["2024-07-24T00:03:18.010000"],["2024-07-24T00:03:19.010000"],["2024-07-24T00:03:20.010000"],["2024-07-24T00:03:21.010000"],["2024-07-24T00:03:22.010000"],["2024-07-24T00:03:23.010000"],["2024-07-24T00:03:24.010000"],["2024-07-24T00:03:25.010000"],["2024-07-24T00:03:26.010000"],["2024-07-24T00:03:27.010000"],["2024-07-24T00:03:28.010000"],["2024-07-24T00:03:29.010000"],["2024-07-24T00:03:30.010000"],["2024-07-24T00:03:31.010000"],["2024-07-24T00:03:32.010000"],["2024-07-24T00:03:33.010000"],["2024-07-24T00:03:34.010000"],["2024-07-24T00:03:35.010000"],["2024-07-24T00:03:36.010000"],["2024-07-24T00:03:37.010000"],["2024-07-24T00:03:38.010000"],["2024-07-24T00:03:39.010000"],["2024-07-24T00:03:40.010000"],["2024-07-24T00:03:41.010000"],["2024-07-24T00:03:42.010000"],["2024-07-24T00:03:43.010000"],["2024-07-24T00:03:44.010000"],["2024-07-24T00:03:45.010000"],["2024-07-24T00:03:46.010000"],["2024-07-24T00:03:47.010000"],["2024-07-24T00:03:48.010000"],["2024-07-24T00:03:49.010000"],["2024-07-24T00:03:50.010000"],["2024-07-24T00:03:51.010000"],["2024-07-24T00:03:52.010000"],["2024-07-24T00:03:53.010000"],["2024-07-24T00:03:54.010000"],["2024-07-24T00:03:55.010000"],["2024-07-24T00:03:56.010000"],["2024-07-24T00:03:57.010000"],["2024-07-24T00:03:58.010000"],["2024-07-24T00:03:59.010000"],["2024-07-24T00:04:00.010000"],["2024-07-24T00:04:01.010000"],["2024-07-24T00:04:02.010000"],["2024-07-24T00:04:03.010000"],["2024-07-24T00:04:04.010000"],["2024-07-24T00:04:05.010000"],["2024-07-24T00:04:06.010000"],["2024-07-24T00:04:07.010000"],["2024-07-24T00:04:08.010000"],["2024-07-24T00:04:09.010000"],["2024-07-24T00:04:10.010000"],["2024-07-24T00:04:11.010000"],["2024-07-24T00:04:12.010000"],["2024-07-24T00:04:13.010000"],["2024-07-24T00:04:14.010000"],["2024-07-24T00:04:15.010000"],["2024-07-24T00:04:16.010000"],["2024-07-24T00:04:17.010000"],["2024-07-24T00:04:18.010000"],["2024-07-24T00:04:19.010000"],["2024-07-24T00:04:20.010000"],["2024-07-24T00:04:21.010000"],["2024-07-24T00:04:22.010000"],["2024-07-24T00:04:23.010000"],["2024-07-24T00:04:24.010000"],["2024-07-24T00:04:25.010000"],["2024-07-24T00:04:26.010000"],["2024-07-24T00:04:27.010000"],["2024-07-24T00:04:28.010000"],["2024-07-24T00:04:29.010000"],["2024-07-24T00:04:30.010000"],["2024-07-24T00:04:31.010000"],["2024-07-24T00:04:32.010000"],["2024-07-24T00:04:33.010000"],["2024-07-24T00:04:34.010000"],["2024-07-24T00:04:35.010000"],["2024-07-24T00:04:36.010000"],["2024-07-24T00:04:37.010000"],["2024-07-24T00:04:38.010000"],["2024-07-24T00:04:39.010000"],["2024-07-24T00:04:40.010000"],["2024-07-24T00:04:41.010000"],["2024-07-24T00:04:42.010000"],["2024-07-24T00:04:43.010000"],["2024-07-24T00:04:44.010000"],["2024-07-24T00:04:45.010000"],["2024-07-24T00:04:46.010000"],["2024-07-24T00:04:47.010000"],["2024-07-24T00:04:48.010000"],["2024-07-24T00:04:49.010000"],["2024-07-24T00:04:50.010000"],["2024-07-24T00:04:51.010000"],["2024-07-24T00:04:52.010000"],["2024-07-24T00:04:53.010000"],["2024-07-24T00:04:54.010000"],["2024-07-24T00:04:55.010000"],["2024-07-24T00:04:56.010000"],["2024-07-24T00:04:57.010000"],["2024-07-24T00:04:58.010000"],["2024-07-24T00:04:59.010000"],["2024-07-24T00:05:00.010000"],["2024-07-24T00:05:01.010000"],["2024-07-24T00:05:02.010000"],["2024-07-24T00:05:03.010000"],["2024-07-24T00:05:04.010000"],["2024-07-24T00:05:05.010000"],["2024-07-24T00:05:06.010000"],["2024-07-24T00:05:07.010000"],["2024-07-24T00:05:08.010000"],["2024-07-24T00:05:09.010000"],["2024-07-24T00:05:10.010000"],["2024-07-24T00:05:11.010000"],["2024-07-24T00:05:12.010000"],["2024-07-24T00:05:13.010000"],["2024-07-24T00:05:14.010000"],["2024-07-24T00:05:15.010000"],["2024-07-24T00:05:16.010000"],["2024-07-24T00:05:17.010000"],["2024-07-24T00:05:18.010000"],["2024-07-24T00:05:19.010000"],["2024-07-24T00:05:20.010000"],["2024-07-24T00:05:21.010000"],["2024-07-24T00:05:22.010000"],["2024-07-24T00:05:23.010000"],["2024-07-24T00:05:24.010000"],["2024-07-24T00:05:25.010000"],["2024-07-24T00:05:26.010000"],["2024-07-24T00:05:27.010000"],["2024-07-24T00:05:28.010000"],["2024-07-24T00:05:29.010000"],["2024-07-24T00:05:30.010000"],["2024-07-24T00:05:31.010000"],["2024-07-24T00:05:32.010000"],["2024-07-24T00:05:33.010000"],["2024-07-24T00:05:34.010000"],["2024-07-24T00:05:35.010000"],["2024-07-24T00:05:36.010000"],["2024-07-24T00:05:37.010000"],["2024-07-24T00:05:38.010000"],["2024-07-24T00:05:39.010000"],["2024-07-24T00:05:40.010000"],["2024-07-24T00:05:41.010000"],["2024-07-24T00:05:42.010000"],["2024-07-24T00:05:43.010000"],["2024-07-24T00:05:44.010000"],["2024-07-24T00:05:45.010000"],["2024-07-24T00:05:46.010000"],["2024-07-24T00:05:47.010000"],["2024-07-24T00:05:48.010000"],["2024-07-24T00:05:49.010000"],["2024-07-24T00:05:50.010000"],["2024-07-24T00:05:51.010000"],["2024-07-24T00:05:52.010000"],["2024-07-24T00:05:53.010000"],["2024-07-24T00:05:54.010000"],["2024-07-24T00:05:55.010000"],["2024-07-24T00:05:56.010000"],["2024-07-24T00:05:57.010000"],["2024-07-24T00:05:58.010000"],["2024-07-24T00:05:59.010000"],["2024-07-24T00:06:00.010000"],["2024-07-24T00:06:01.010000"],["2024-07-24T00:06:02.010000"],["2024-07-24T00:06:03.010000"],["2024-07-24T00:06:04.010000"],["2024-07-24T00:06:05.010000"],["2024-07-24T00:06:06.010000"],["2024-07-24T00:06:07.010000"],["2024-07-24T00:06:08.010000"],["2024-07-24T00:06:09.010000"],["2024-07-24T00:06:10.010000"],["2024-07-24T00:06:11.010000"],["2024-07-24T00:06:12.010000"],["2024-07-24T00:06:13.010000"],["2024-07-24T00:06:14.010000"],["2024-07-24T00:06:15.010000"],["2024-07-24T00:06:16.010000"],["2024-07-24T00:06:17.010000"],["2024-07-24T00:06:18.010000"],["2024-07-24T00:06:19.010000"],["2024-07-24T00:06:20.010000"],["2024-07-24T00:06:21.010000"],["2024-07-24T00:06:22.010000"],["2024-07-24T00:06:23.010000"],["2024-07-24T00:06:24.010000"],["2024-07-24T00:06:25.010000"],["2024-07-24T00:06:26.010000"],["2024-07-24T00:06:27.010000"],["2024-07-24T00:06:28.010000"],["2024-07-24T00:06:29.010000"],["2024-07-24T00:06:30.010000"],["2024-07-24T00:06:31.010000"],["2024-07-24T00:06:32.010000"],["2024-07-24T00:06:33.010000"],["2024-07-24T00:06:34.010000"],["2024-07-24T00:06:35.010000"],["2024-07-24T00:06:36.010000"],["2024-07-24T00:06:37.010000"],["2024-07-24T00:06:38.010000"],["2024-07-24T00:06:39.010000"],["2024-07-24T00:06:40.010000"],["2024-07-24T00:06:41.010000"],["2024-07-24T00:06:42.010000"],["2024-07-24T00:06:43.010000"],["2024-07-24T00:06:44.010000"],["2024-07-24T00:06:45.010000"],["2024-07-24T00:06:46.010000"],["2024-07-24T00:06:47.010000"],["2024-07-24T00:06:48.010000"],["2024-07-24T00:06:49.010000"],["2024-07-24T00:06:50.010000"],["2024-07-24T00:06:51.010000"],["2024-07-24T00:06:52.010000"],["2024-07-24T00:06:53.010000"],["2024-07-24T00:06:54.010000"],["2024-07-24T00:06:55.010000"],["2024-07-24T00:06:56.010000"],["2024-07-24T00:06:57.010000"],["2024-07-24T00:06:58.010000"],["2024-07-24T00:06:59.010000"],["2024-07-24T00:07:00.010000"],["2024-07-24T00:07:01.010000"],["2024-07-24T00:07:02.010000"],["2024-07-24T00:07:03.010000"],["2024-07-24T00:07:04.010000"],["2024-07-24T00:07:05.010000"],["2024-07-24T00:07:06.010000"],["2024-07-24T00:07:07.010000"],["2024-07-24T00:07:08.010000"],["2024-07-24T00:07:09.010000"],["2024-07-24T00:07:10.010000"],["2024-07-24T00:07:11.010000"],["2024-07-24T00:07:12.010000"],["2024-07-24T00:07:13.010000"],["2024-07-24T00:07:14.010000"],["2024-07-24T00:07:15.010000"],["2024-07-24T00:07:16.010000"],["2024-07-24T00:07:17.010000"],["2024-07-24T00:07:18.010000"],["2024-07-24T00:07:19.010000"],["2024-07-24T00:07:20.010000"],["2024-07-24T00:07:21.010000"],["2024-07-24T00:07:22.010000"],["2024-07-24T00:07:23.010000"],["2024-07-24T00:07:24.010000"],["2024-07-24T00:07:25.010000"],["2024-07-24T00:07:26.010000"],["2024-07-24T00:07:27.010000"],["2024-07-24T00:07:28.010000"],["2024-07-24T00:07:29.010000"],["2024-07-24T00:07:30.010000"],["2024-07-24T00:07:31.010000"],["2024-07-24T00:07:32.010000"],["2024-07-24T00:07:33.010000"],["2024-07-24T00:07:34.010000"],["2024-07-24T00:07:35.010000"],["2024-07-24T00:07:36.010000"],["2024-07-24T00:07:37.010000"],["2024-07-24T00:07:38.010000"],["2024-07-24T00:07:39.010000"],["2024-07-24T00:07:40.010000"],["2024-07-24T00:07:41.010000"],["2024-07-24T00:07:42.010000"],["2024-07-24T00:07:43.010000"],["2024-07-24T00:07:44.010000"],["2024-07-24T00:07:45.010000"],["2024-07-24T00:07:46.010000"],["2024-07-24T00:07:47.010000"],["2024-07-24T00:07:48.010000"],["2024-07-24T00:07:49.010000"],["2024-07-24T00:07:50.010000"],["2024-07-24T00:07:51.010000"],["2024-07-24T00:07:52.010000"],["2024-07-24T00:07:53.010000"],["2024-07-24T00:07:54.010000"],["2024-07-24T00:07:55.010000"],["2024-07-24T00:07:56.010000"],["2024-07-24T00:07:57.010000"],["2024-07-24T00:07:58.010000"],["2024-07-24T00:07:59.010000"],["2024-07-24T00:08:00.010000"],["2024-07-24T00:08:01.010000"],["2024-07-24T00:08:02.010000"],["2024-07-24T00:08:03.010000"],["2024-07-24T00:08:04.010000"],["2024-07-24T00:08:05.010000"],["2024-07-24T00:08:06.010000"],["2024-07-24T00:08:07.010000"],["2024-07-24T00:08:08.010000"],["2024-07-24T00:08:09.010000"],["2024-07-24T00:08:10.010000"],["2024-07-24T00:08:11.010000"],["2024-07-24T00:08:12.010000"],["2024-07-24T00:08:13.010000"],["2024-07-24T00:08:14.010000"],["2024-07-24T00:08:15.010000"],["2024-07-24T00:08:16.010000"],["2024-07-24T00:08:17.010000"],["2024-07-24T00:08:18.010000"],["2024-07-24T00:08:19.010000"],["2024-07-24T00:08:20.010000"],["2024-07-24T00:08:21.010000"],["2024-07-24T00:08:22.010000"],["2024-07-24T00:08:23.010000"],["2024-07-24T00:08:24.010000"],["2024-07-24T00:08:25.010000"],["2024-07-24T00:08:26.010000"],["2024-07-24T00:08:27.010000"],["2024-07-24T00:08:28.010000"],["2024-07-24T00:08:29.010000"],["2024-07-24T00:08:30.010000"],["2024-07-24T00:08:31.010000"],["2024-07-24T00:08:32.010000"],["2024-07-24T00:08:33.010000"],["2024-07-24T00:08:34.010000"],["2024-07-24T00:08:35.010000"],["2024-07-24T00:08:36.010000"],["2024-07-24T00:08:37.010000"],["2024-07-24T00:08:38.010000"],["2024-07-24T00:08:39.010000"],["2024-07-24T00:08:40.010000"],["2024-07-24T00:08:41.010000"],["2024-07-24T00:08:42.010000"],["2024-07-24T00:08:43.010000"],["2024-07-24T00:08:44.010000"],["2024-07-24T00:08:45.010000"],["2024-07-24T00:08:46.010000"],["2024-07-24T00:08:47.010000"],["2024-07-24T00:08:48.010000"],["2024-07-24T00:08:49.010000"],["2024-07-24T00:08:50.010000"],["2024-07-24T00:08:51.010000"],["2024-07-24T00:08:52.010000"],["2024-07-24T00:08:53.010000"],["2024-07-24T00:08:54.010000"],["2024-07-24T00:08:55.010000"],["2024-07-24T00:08:56.010000"],["2024-07-24T00:08:57.010000"],["2024-07-24T00:08:58.010000"],["2024-07-24T00:08:59.010000"],["2024-07-24T00:09:00.010000"],["2024-07-24T00:09:01.010000"],["2024-07-24T00:09:02.010000"],["2024-07-24T00:09:03.010000"],["2024-07-24T00:09:04.010000"],["2024-07-24T00:09:05.010000"],["2024-07-24T00:09:06.010000"],["2024-07-24T00:09:07.010000"],["2024-07-24T00:09:08.010000"],["2024-07-24T00:09:09.010000"],["2024-07-24T00:09:10.010000"],["2024-07-24T00:09:11.010000"],["2024-07-24T00:09:12.010000"],["2024-07-24T00:09:13.010000"],["2024-07-24T00:09:14.010000"],["2024-07-24T00:09:15.010000"],["2024-07-24T00:09:16.010000"],["2024-07-24T00:09:17.010000"],["2024-07-24T00:09:18.010000"],["2024-07-24T00:09:19.010000"],["2024-07-24T00:09:20.010000"],["2024-07-24T00:09:21.010000"],["2024-07-24T00:09:22.010000"],["2024-07-24T00:09:23.010000"],["2024-07-24T00:09:24.010000"],["2024-07-24T00:09:25.010000"],["2024-07-24T00:09:26.010000"],["2024-07-24T00:09:27.010000"],["2024-07-24T00:09:28.010000"],["2024-07-24T00:09:29.010000"],["2024-07-24T00:09:30.010000"],["2024-07-24T00:09:31.010000"],["2024-07-24T00:09:32.010000"],["2024-07-24T00:09:33.010000"],["2024-07-24T00:09:34.010000"],["2024-07-24T00:09:35.010000"],["2024-07-24T00:09:36.010000"],["2024-07-24T00:09:37.010000"],["2024-07-24T00:09:38.010000"],["2024-07-24T00:09:39.010000"],["2024-07-24T00:09:40.010000"],["2024-07-24T00:09:41.010000"],["2024-07-24T00:09:42.010000"],["2024-07-24T00:09:43.010000"],["2024-07-24T00:09:44.010000"],["2024-07-24T00:09:45.010000"],["2024-07-24T00:09:46.010000"],["2024-07-24T00:09:47.010000"],["2024-07-24T00:09:48.010000"],["2024-07-24T00:09:49.010000"],["2024-07-24T00:09:50.010000"],["2024-07-24T00:09:51.010000"],["2024-07-24T00:09:52.010000"],["2024-07-24T00:09:53.010000"],["2024-07-24T00:09:54.010000"],["2024-07-24T00:09:55.010000"],["2024-07-24T00:09:56.010000"],["2024-07-24T00:09:57.010000"],["2024-07-24T00:09:58.010000"],["2024-07-24T00:09:59.010000"],["2024-07-24T00:10:00.010000"],["2024-07-24T00:10:01.010000"],["2024-07-24T00:10:02.010000"],["2024-07-24T00:10:03.010000"],["2024-07-24T00:10:04.010000"],["2024-07-24T00:10:05.010000"],["2024-07-24T00:10:06.010000"],["2024-07-24T00:10:07.010000"],["2024-07-24T00:10:08.010000"],["2024-07-24T00:10:09.010000"],["2024-07-24T00:10:10.010000"],["2024-07-24T00:10:11.010000"],["2024-07-24T00:10:12.010000"],["2024-07-24T00:10:13.010000"],["2024-07-24T00:10:14.010000"],["2024-07-24T00:10:15.010000"],["2024-07-24T00:10:16.010000"],["2024-07-24T00:10:17.010000"],["2024-07-24T00:10:18.010000"],["2024-07-24T00:10:19.010000"],["2024-07-24T00:10:20.010000"],["2024-07-24T00:10:21.010000"],["2024-07-24T00:10:22.010000"],["2024-07-24T00:10:23.010000"],["2024-07-24T00:10:24.010000"],["2024-07-24T00:10:25.010000"],["2024-07-24T00:10:26.010000"],["2024-07-24T00:10:27.010000"],["2024-07-24T00:10:28.010000"],["2024-07-24T00:10:29.010000"],["2024-07-24T00:10:30.010000"],["2024-07-24T00:10:31.010000"],["2024-07-24T00:10:32.010000"],["2024-07-24T00:10:33.010000"],["2024-07-24T00:10:34.010000"],["2024-07-24T00:10:35.010000"],["2024-07-24T00:10:36.010000"],["2024-07-24T00:10:37.010000"],["2024-07-24T00:10:38.010000"],["2024-07-24T00:10:39.010000"],["2024-07-24T00:10:40.010000"],["2024-07-24T00:10:41.010000"],["2024-07-24T00:10:42.010000"],["2024-07-24T00:10:43.010000"],["2024-07-24T00:10:44.010000"],["2024-07-24T00:10:45.010000"],["2024-07-24T00:10:46.010000"],["2024-07-24T00:10:47.010000"],["2024-07-24T00:10:48.010000"],["2024-07-24T00:10:49.010000"],["2024-07-24T00:10:50.010000"],["2024-07-24T00:10:51.010000"],["2024-07-24T00:10:52.010000"],["2024-07-24T00:10:53.010000"],["2024-07-24T00:10:54.010000"],["2024-07-24T00:10:55.010000"],["2024-07-24T00:10:56.010000"],["2024-07-24T00:10:57.010000"],["2024-07-24T00:10:58.010000"],["2024-07-24T00:10:59.010000"],["2024-07-24T00:11:00.010000"],["2024-07-24T00:11:01.010000"],["2024-07-24T00:11:02.010000"],["2024-07-24T00:11:03.010000"],["2024-07-24T00:11:04.010000"],["2024-07-24T00:11:05.010000"],["2024-07-24T00:11:06.010000"],["2024-07-24T00:11:07.010000"],["2024-07-24T00:11:08.010000"],["2024-07-24T00:11:09.010000"],["2024-07-24T00:11:10.010000"],["2024-07-24T00:11:11.010000"],["2024-07-24T00:11:12.010000"],["2024-07-24T00:11:13.010000"],["2024-07-24T00:11:14.010000"],["2024-07-24T00:11:15.010000"],["2024-07-24T00:11:16.010000"],["2024-07-24T00:11:17.010000"],["2024-07-24T00:11:18.010000"],["2024-07-24T00:11:19.010000"],["2024-07-24T00:11:20.010000"],["2024-07-24T00:11:21.010000"],["2024-07-24T00:11:22.010000"],["2024-07-24T00:11:23.010000"],["2024-07-24T00:11:24.010000"],["2024-07-24T00:11:25.010000"],["2024-07-24T00:11:26.010000"],["2024-07-24T00:11:27.010000"],["2024-07-24T00:11:28.010000"],["2024-07-24T00:11:29.010000"],["2024-07-24T00:11:30.010000"],["2024-07-24T00:11:31.010000"],["2024-07-24T00:11:32.010000"],["2024-07-24T00:11:33.010000"],["2024-07-24T00:11:34.010000"],["2024-07-24T00:11:35.010000"],["2024-07-24T00:11:36.010000"],["2024-07-24T00:11:37.010000"],["2024-07-24T00:11:38.010000"],["2024-07-24T00:11:39.010000"],["2024-07-24T00:11:40.010000"],["2024-07-24T00:11:41.010000"],["2024-07-24T00:11:42.010000"],["2024-07-24T00:11:43.010000"],["2024-07-24T00:11:44.010000"],["2024-07-24T00:11:45.010000"],["2024-07-24T00:11:46.010000"],["2024-07-24T00:11:47.010000"],["2024-07-24T00:11:48.010000"],["2024-07-24T00:11:49.010000"],["2024-07-24T00:11:50.010000"],["2024-07-24T00:11:51.010000"],["2024-07-24T00:11:52.010000"],["2024-07-24T00:11:53.010000"],["2024-07-24T00:11:54.010000"],["2024-07-24T00:11:55.010000"],["2024-07-24T00:11:56.010000"],["2024-07-24T00:11:57.010000"],["2024-07-24T00:11:58.010000"],["2024-07-24T00:11:59.010000"],["2024-07-24T00:12:00.010000"],["2024-07-24T00:12:01.010000"],["2024-07-24T00:12:02.010000"],["2024-07-24T00:12:03.010000"],["2024-07-24T00:12:04.010000"],["2024-07-24T00:12:05.010000"],["2024-07-24T00:12:06.010000"],["2024-07-24T00:12:07.010000"],["2024-07-24T00:12:08.010000"],["2024-07-24T00:12:09.010000"],["2024-07-24T00:12:10.010000"],["2024-07-24T00:12:11.010000"],["2024-07-24T00:12:12.010000"],["2024-07-24T00:12:13.010000"],["2024-07-24T00:12:14.010000"],["2024-07-24T00:12:15.010000"],["2024-07-24T00:12:16.010000"],["2024-07-24T00:12:17.010000"],["2024-07-24T00:12:18.010000"],["2024-07-24T00:12:19.010000"],["2024-07-24T00:12:20.010000"],["2024-07-24T00:12:21.010000"],["2024-07-24T00:12:22.010000"],["2024-07-24T00:12:23.010000"],["2024-07-24T00:12:24.010000"],["2024-07-24T00:12:25.010000"],["2024-07-24T00:12:26.010000"],["2024-07-24T00:12:27.010000"],["2024-07-24T00:12:28.010000"],["2024-07-24T00:12:29.010000"],["2024-07-24T00:12:30.010000"],["2024-07-24T00:12:31.010000"],["2024-07-24T00:12:32.010000"],["2024-07-24T00:12:33.010000"],["2024-07-24T00:12:34.010000"],["2024-07-24T00:12:35.010000"],["2024-07-24T00:12:36.010000"],["2024-07-24T00:12:37.010000"],["2024-07-24T00:12:38.010000"],["2024-07-24T00:12:39.010000"],["2024-07-24T00:12:40.010000"],["2024-07-24T00:12:41.010000"],["2024-07-24T00:12:42.010000"],["2024-07-24T00:12:43.010000"],["2024-07-24T00:12:44.010000"],["2024-07-24T00:12:45.010000"],["2024-07-24T00:12:46.010000"],["2024-07-24T00:12:47.010000"],["2024-07-24T00:12:48.010000"],["2024-07-24T00:12:49.010000"],["2024-07-24T00:12:50.010000"],["2024-07-24T00:12:51.010000"],["2024-07-24T00:12:52.010000"],["2024-07-24T00:12:53.010000"],["2024-07-24T00:12:54.010000"],["2024-07-24T00:12:55.010000"],["2024-07-24T00:12:56.010000"],["2024-07-24T00:12:57.010000"],["2024-07-24T00:12:58.010000"],["2024-07-24T00:12:59.010000"],["2024-07-24T00:13:00.010000"],["2024-07-24T00:13:01.010000"],["2024-07-24T00:13:02.010000"],["2024-07-24T00:13:03.010000"],["2024-07-24T00:13:04.010000"],["2024-07-24T00:13:05.010000"],["2024-07-24T00:13:06.010000"],["2024-07-24T00:13:07.010000"],["2024-07-24T00:13:08.010000"],["2024-07-24T00:13:09.010000"],["2024-07-24T00:13:10.010000"],["2024-07-24T00:13:11.010000"],["2024-07-24T00:13:12.010000"],["2024-07-24T00:13:13.010000"],["2024-07-24T00:13:14.010000"],["2024-07-24T00:13:15.010000"],["2024-07-24T00:13:16.010000"],["2024-07-24T00:13:17.010000"],["2024-07-24T00:13:18.010000"],["2024-07-24T00:13:19.010000"],["2024-07-24T00:13:20.010000"],["2024-07-24T00:13:21.010000"],["2024-07-24T00:13:22.010000"],["2024-07-24T00:13:23.010000"],["2024-07-24T00:13:24.010000"],["2024-07-24T00:13:25.010000"],["2024-07-24T00:13:26.010000"],["2024-07-24T00:13:27.010000"],["2024-07-24T00:13:28.010000"],["2024-07-24T00:13:29.010000"],["2024-07-24T00:13:30.010000"],["2024-07-24T00:13:31.010000"],["2024-07-24T00:13:32.010000"],["2024-07-24T00:13:33.010000"],["2024-07-24T00:13:34.010000"],["2024-07-24T00:13:35.010000"],["2024-07-24T00:13:36.010000"],["2024-07-24T00:13:37.010000"],["2024-07-24T00:13:38.010000"],["2024-07-24T00:13:39.010000"],["2024-07-24T00:13:40.010000"],["2024-07-24T00:13:41.010000"],["2024-07-24T00:13:42.010000"],["2024-07-24T00:13:43.010000"],["2024-07-24T00:13:44.010000"],["2024-07-24T00:13:45.010000"],["2024-07-24T00:13:46.010000"],["2024-07-24T00:13:47.010000"],["2024-07-24T00:13:48.010000"],["2024-07-24T00:13:49.010000"],["2024-07-24T00:13:50.010000"],["2024-07-24T00:13:51.010000"],["2024-07-24T00:13:52.010000"],["2024-07-24T00:13:53.010000"],["2024-07-24T00:13:54.010000"],["2024-07-24T00:13:55.010000"],["2024-07-24T00:13:56.010000"],["2024-07-24T00:13:57.010000"],["2024-07-24T00:13:58.010000"],["2024-07-24T00:13:59.010000"],["2024-07-24T00:14:00.010000"],["2024-07-24T00:14:01.010000"],["2024-07-24T00:14:02.010000"],["2024-07-24T00:14:03.010000"],["2024-07-24T00:14:04.010000"],["2024-07-24T00:14:05.010000"],["2024-07-24T00:14:06.010000"],["2024-07-24T00:14:07.010000"],["2024-07-24T00:14:08.010000"],["2024-07-24T00:14:09.010000"],["2024-07-24T00:14:10.010000"],["2024-07-24T00:14:11.010000"],["2024-07-24T00:14:12.010000"],["2024-07-24T00:14:13.010000"],["2024-07-24T00:14:14.010000"],["2024-07-24T00:14:15.010000"],["2024-07-24T00:14:16.010000"],["2024-07-24T00:14:17.010000"],["2024-07-24T00:14:18.010000"],["2024-07-24T00:14:19.010000"],["2024-07-24T00:14:20.010000"],["2024-07-24T00:14:21.010000"],["2024-07-24T00:14:22.010000"],["2024-07-24T00:14:23.010000"],["2024-07-24T00:14:24.010000"],["2024-07-24T00:14:25.010000"],["2024-07-24T00:14:26.010000"],["2024-07-24T00:14:27.010000"],["2024-07-24T00:14:28.010000"],["2024-07-24T00:14:29.010000"],["2024-07-24T00:14:30.010000"],["2024-07-24T00:14:31.010000"],["2024-07-24T00:14:32.010000"],["2024-07-24T00:14:33.010000"],["2024-07-24T00:14:34.010000"],["2024-07-24T00:14:35.010000"],["2024-07-24T00:14:36.010000"],["2024-07-24T00:14:37.010000"],["2024-07-24T00:14:38.010000"],["2024-07-24T00:14:39.010000"],["2024-07-24T00:14:40.010000"],["2024-07-24T00:14:41.010000"],["2024-07-24T00:14:42.010000"],["2024-07-24T00:14:43.010000"],["2024-07-24T00:14:44.010000"],["2024-07-24T00:14:45.010000"],["2024-07-24T00:14:46.010000"],["2024-07-24T00:14:47.010000"],["2024-07-24T00:14:48.010000"],["2024-07-24T00:14:49.010000"],["2024-07-24T00:14:50.010000"],["2024-07-24T00:14:51.010000"],["2024-07-24T00:14:52.010000"],["2024-07-24T00:14:53.010000"],["2024-07-24T00:14:54.010000"],["2024-07-24T00:14:55.010000"],["2024-07-24T00:14:56.010000"],["2024-07-24T00:14:57.010000"],["2024-07-24T00:14:58.010000"],["2024-07-24T00:14:59.010000"],["2024-07-24T00:15:00.010000"],["2024-07-24T00:15:01.010000"],["2024-07-24T00:15:02.010000"],["2024-07-24T00:15:03.010000"],["2024-07-24T00:15:04.010000"],["2024-07-24T00:15:05.010000"],["2024-07-24T00:15:06.010000"],["2024-07-24T00:15:07.010000"],["2024-07-24T00:15:08.010000"],["2024-07-24T00:15:09.010000"],["2024-07-24T00:15:10.010000"],["2024-07-24T00:15:11.010000"],["2024-07-24T00:15:12.010000"],["2024-07-24T00:15:13.010000"],["2024-07-24T00:15:14.010000"],["2024-07-24T00:15:15.010000"],["2024-07-24T00:15:16.010000"],["2024-07-24T00:15:17.010000"],["2024-07-24T00:15:18.010000"],["2024-07-24T00:15:19.010000"],["2024-07-24T00:15:20.010000"],["2024-07-24T00:15:21.010000"],["2024-07-24T00:15:22.010000"],["2024-07-24T00:15:23.010000"],["2024-07-24T00:15:24.010000"],["2024-07-24T00:15:25.010000"],["2024-07-24T00:15:26.010000"],["2024-07-24T00:15:27.010000"],["2024-07-24T00:15:28.010000"],["2024-07-24T00:15:29.010000"],["2024-07-24T00:15:30.010000"],["2024-07-24T00:15:31.010000"],["2024-07-24T00:15:32.010000"],["2024-07-24T00:15:33.010000"],["2024-07-24T00:15:34.010000"],["2024-07-24T00:15:35.010000"],["2024-07-24T00:15:36.010000"],["2024-07-24T00:15:37.010000"],["2024-07-24T00:15:38.010000"],["2024-07-24T00:15:39.010000"],["2024-07-24T00:15:40.010000"],["2024-07-24T00:15:41.010000"],["2024-07-24T00:15:42.010000"],["2024-07-24T00:15:43.010000"],["2024-07-24T00:15:44.010000"],["2024-07-24T00:15:45.010000"],["2024-07-24T00:15:46.010000"],["2024-07-24T00:15:47.010000"],["2024-07-24T00:15:48.010000"],["2024-07-24T00:15:49.010000"],["2024-07-24T00:15:50.010000"],["2024-07-24T00:15:51.010000"],["2024-07-24T00:15:52.010000"],["2024-07-24T00:15:53.010000"],["2024-07-24T00:15:54.010000"],["2024-07-24T00:15:55.010000"],["2024-07-24T00:15:56.010000"],["2024-07-24T00:15:57.010000"],["2024-07-24T00:15:58.010000"],["2024-07-24T00:15:59.010000"],["2024-07-24T00:16:00.010000"],["2024-07-24T00:16:01.010000"],["2024-07-24T00:16:02.010000"],["2024-07-24T00:16:03.010000"],["2024-07-24T00:16:04.010000"],["2024-07-24T00:16:05.010000"],["2024-07-24T00:16:06.010000"],["2024-07-24T00:16:07.010000"],["2024-07-24T00:16:08.010000"],["2024-07-24T00:16:09.010000"],["2024-07-24T00:16:10.010000"],["2024-07-24T00:16:11.010000"],["2024-07-24T00:16:12.010000"],["2024-07-24T00:16:13.010000"],["2024-07-24T00:16:14.010000"],["2024-07-24T00:16:15.010000"],["2024-07-24T00:16:16.010000"],["2024-07-24T00:16:17.010000"],["2024-07-24T00:16:18.010000"],["2024-07-24T00:16:19.010000"],["2024-07-24T00:16:20.010000"],["2024-07-24T00:16:21.010000"],["2024-07-24T00:16:22.010000"],["2024-07-24T00:16:23.010000"],["2024-07-24T00:16:24.010000"],["2024-07-24T00:16:25.010000"],["2024-07-24T00:16:26.010000"],["2024-07-24T00:16:27.010000"],["2024-07-24T00:16:28.010000"],["2024-07-24T00:16:29.010000"],["2024-07-24T00:16:30.010000"],["2024-07-24T00:16:31.010000"],["2024-07-24T00:16:32.010000"],["2024-07-24T00:16:33.010000"],["2024-07-24T00:16:34.010000"],["2024-07-24T00:16:35.010000"],["2024-07-24T00:16:36.010000"],["2024-07-24T00:16:37.010000"],["2024-07-24T00:16:38.010000"],["2024-07-24T00:16:39.010000"],["2024-07-24T00:16:40.010000"],["2024-07-24T00:16:41.010000"],["2024-07-24T00:16:42.010000"],["2024-07-24T00:16:43.010000"],["2024-07-24T00:16:44.010000"],["2024-07-24T00:16:45.010000"],["2024-07-24T00:16:46.010000"],["2024-07-24T00:16:47.010000"],["2024-07-24T00:16:48.010000"],["2024-07-24T00:16:49.010000"],["2024-07-24T00:16:50.010000"],["2024-07-24T00:16:51.010000"],["2024-07-24T00:16:52.010000"],["2024-07-24T00:16:53.010000"],["2024-07-24T00:16:54.010000"],["2024-07-24T00:16:55.010000"],["2024-07-24T00:16:56.010000"],["2024-07-24T00:16:57.010000"],["2024-07-24T00:16:58.010000"],["2024-07-24T00:16:59.010000"],["2024-07-24T00:17:00.010000"],["2024-07-24T00:17:01.010000"],["2024-07-24T00:17:02.010000"],["2024-07-24T00:17:03.010000"],["2024-07-24T00:17:04.010000"],["2024-07-24T00:17:05.010000"],["2024-07-24T00:17:06.010000"],["2024-07-24T00:17:07.010000"],["2024-07-24T00:17:08.010000"],["2024-07-24T00:17:09.010000"],["2024-07-24T00:17:10.010000"],["2024-07-24T00:17:11.010000"],["2024-07-24T00:17:12.010000"],["2024-07-24T00:17:13.010000"],["2024-07-24T00:17:14.010000"],["2024-07-24T00:17:15.010000"],["2024-07-24T00:17:16.010000"],["2024-07-24T00:17:17.010000"],["2024-07-24T00:17:18.010000"],["2024-07-24T00:17:19.010000"],["2024-07-24T00:17:20.010000"],["2024-07-24T00:17:21.010000"],["2024-07-24T00:17:22.010000"],["2024-07-24T00:17:23.010000"],["2024-07-24T00:17:24.010000"],["2024-07-24T00:17:25.010000"],["2024-07-24T00:17:26.010000"],["2024-07-24T00:17:27.010000"],["2024-07-24T00:17:28.010000"],["2024-07-24T00:17:29.010000"],["2024-07-24T00:17:30.010000"],["2024-07-24T00:17:31.010000"],["2024-07-24T00:17:32.010000"],["2024-07-24T00:17:33.010000"],["2024-07-24T00:17:34.010000"],["2024-07-24T00:17:35.010000"],["2024-07-24T00:17:36.010000"],["2024-07-24T00:17:37.010000"],["2024-07-24T00:17:38.010000"],["2024-07-24T00:17:39.010000"],["2024-07-24T00:17:40.010000"],["2024-07-24T00:17:41.010000"],["2024-07-24T00:17:42.010000"],["2024-07-24T00:17:43.010000"],["2024-07-24T00:17:44.010000"],["2024-07-24T00:17:45.010000"],["2024-07-24T00:17:46.010000"],["2024-07-24T00:17:47.010000"],["2024-07-24T00:17:48.010000"],["2024-07-24T00:17:49.010000"],["2024-07-24T00:17:50.010000"],["2024-07-24T00:17:51.010000"],["2024-07-24T00:17:52.010000"],["2024-07-24T00:17:53.010000"],["2024-07-24T00:17:54.010000"],["2024-07-24T00:17:55.010000"],["2024-07-24T00:17:56.010000"],["2024-07-24T00:17:57.010000"],["2024-07-24T00:17:58.010000"],["2024-07-24T00:17:59.010000"],["2024-07-24T00:18:00.010000"],["2024-07-24T00:18:01.010000"],["2024-07-24T00:18:02.010000"],["2024-07-24T00:18:03.010000"],["2024-07-24T00:18:04.010000"],["2024-07-24T00:18:05.010000"],["2024-07-24T00:18:06.010000"],["2024-07-24T00:18:07.010000"],["2024-07-24T00:18:08.010000"],["2024-07-24T00:18:09.010000"],["2024-07-24T00:18:10.010000"],["2024-07-24T00:18:11.010000"],["2024-07-24T00:18:12.010000"],["2024-07-24T00:18:13.010000"],["2024-07-24T00:18:14.010000"],["2024-07-24T00:18:15.010000"],["2024-07-24T00:18:16.010000"],["2024-07-24T00:18:17.010000"],["2024-07-24T00:18:18.010000"],["2024-07-24T00:18:19.010000"],["2024-07-24T00:18:20.010000"],["2024-07-24T00:18:21.010000"],["2024-07-24T00:18:22.010000"],["2024-07-24T00:18:23.010000"],["2024-07-24T00:18:24.010000"],["2024-07-24T00:18:25.010000"],["2024-07-24T00:18:26.010000"],["2024-07-24T00:18:27.010000"],["2024-07-24T00:18:28.010000"],["2024-07-24T00:18:29.010000"],["2024-07-24T00:18:30.010000"],["2024-07-24T00:18:31.010000"],["2024-07-24T00:18:32.010000"],["2024-07-24T00:18:33.010000"],["2024-07-24T00:18:34.010000"],["2024-07-24T00:18:35.010000"],["2024-07-24T00:18:36.010000"],["2024-07-24T00:18:37.010000"],["2024-07-24T00:18:38.010000"],["2024-07-24T00:18:39.010000"],["2024-07-24T00:18:40.010000"],["2024-07-24T00:18:41.010000"],["2024-07-24T00:18:42.010000"],["2024-07-24T00:18:43.010000"],["2024-07-24T00:18:44.010000"],["2024-07-24T00:18:45.010000"],["2024-07-24T00:18:46.010000"],["2024-07-24T00:18:47.010000"],["2024-07-24T00:18:48.010000"],["2024-07-24T00:18:49.010000"],["2024-07-24T00:18:50.010000"],["2024-07-24T00:18:51.010000"],["2024-07-24T00:18:52.010000"],["2024-07-24T00:18:53.010000"],["2024-07-24T00:18:54.010000"],["2024-07-24T00:18:55.010000"],["2024-07-24T00:18:56.010000"],["2024-07-24T00:18:57.010000"],["2024-07-24T00:18:58.010000"],["2024-07-24T00:18:59.010000"],["2024-07-24T00:19:00.010000"],["2024-07-24T00:19:01.010000"],["2024-07-24T00:19:02.010000"],["2024-07-24T00:19:03.010000"],["2024-07-24T00:19:04.010000"],["2024-07-24T00:19:05.010000"],["2024-07-24T00:19:06.010000"],["2024-07-24T00:19:07.010000"],["2024-07-24T00:19:08.010000"],["2024-07-24T00:19:09.010000"],["2024-07-24T00:19:10.010000"],["2024-07-24T00:19:11.010000"],["2024-07-24T00:19:12.010000"],["2024-07-24T00:19:13.010000"],["2024-07-24T00:19:14.010000"],["2024-07-24T00:19:15.010000"],["2024-07-24T00:19:16.010000"],["2024-07-24T00:19:17.010000"],["2024-07-24T00:19:18.010000"],["2024-07-24T00:19:19.010000"],["2024-07-24T00:19:20.010000"],["2024-07-24T00:19:21.010000"],["2024-07-24T00:19:22.010000"],["2024-07-24T00:19:23.010000"],["2024-07-24T00:19:24.010000"],["2024-07-24T00:19:25.010000"],["2024-07-24T00:19:26.010000"],["2024-07-24T00:19:27.010000"],["2024-07-24T00:19:28.010000"],["2024-07-24T00:19:29.010000"],["2024-07-24T00:19:30.010000"],["2024-07-24T00:19:31.010000"],["2024-07-24T00:19:32.010000"],["2024-07-24T00:19:33.010000"],["2024-07-24T00:19:34.010000"],["2024-07-24T00:19:35.010000"],["2024-07-24T00:19:36.010000"],["2024-07-24T00:19:37.010000"],["2024-07-24T00:19:38.010000"],["2024-07-24T00:19:39.010000"],["2024-07-24T00:19:40.010000"],["2024-07-24T00:19:41.010000"],["2024-07-24T00:19:42.010000"],["2024-07-24T00:19:43.010000"],["2024-07-24T00:19:44.010000"],["2024-07-24T00:19:45.010000"],["2024-07-24T00:19:46.010000"],["2024-07-24T00:19:47.010000"],["2024-07-24T00:19:48.010000"],["2024-07-24T00:19:49.010000"],["2024-07-24T00:19:50.010000"],["2024-07-24T00:19:51.010000"],["2024-07-24T00:19:52.010000"],["2024-07-24T00:19:53.010000"],["2024-07-24T00:19:54.010000"],["2024-07-24T00:19:55.010000"],["2024-07-24T00:19:56.010000"],["2024-07-24T00:19:57.010000"],["2024-07-24T00:19:58.010000"],["2024-07-24T00:19:59.010000"],["2024-07-24T00:20:00.010000"],["2024-07-24T00:20:01.010000"],["2024-07-24T00:20:02.010000"],["2024-07-24T00:20:03.010000"],["2024-07-24T00:20:04.010000"],["2024-07-24T00:20:05.010000"],["2024-07-24T00:20:06.010000"],["2024-07-24T00:20:07.010000"],["2024-07-24T00:20:08.010000"],["2024-07-24T00:20:09.010000"],["2024-07-24T00:20:10.010000"],["2024-07-24T00:20:11.010000"],["2024-07-24T00:20:12.010000"],["2024-07-24T00:20:13.010000"],["2024-07-24T00:20:14.010000"],["2024-07-24T00:20:15.010000"],["2024-07-24T00:20:16.010000"],["2024-07-24T00:20:17.010000"],["2024-07-24T00:20:18.010000"],["2024-07-24T00:20:19.010000"],["2024-07-24T00:20:20.010000"],["2024-07-24T00:20:21.010000"],["2024-07-24T00:20:22.010000"],["2024-07-24T00:20:23.010000"],["2024-07-24T00:20:24.010000"],["2024-07-24T00:20:25.010000"],["2024-07-24T00:20:26.010000"],["2024-07-24T00:20:27.010000"],["2024-07-24T00:20:28.010000"],["2024-07-24T00:20:29.010000"],["2024-07-24T00:20:30.010000"],["2024-07-24T00:20:31.010000"],["2024-07-24T00:20:32.010000"],["2024-07-24T00:20:33.010000"],["2024-07-24T00:20:34.010000"],["2024-07-24T00:20:35.010000"],["2024-07-24T00:20:36.010000"],["2024-07-24T00:20:37.010000"],["2024-07-24T00:20:38.010000"],["2024-07-24T00:20:39.010000"],["2024-07-24T00:20:40.010000"],["2024-07-24T00:20:41.010000"],["2024-07-24T00:20:42.010000"],["2024-07-24T00:20:43.010000"],["2024-07-24T00:20:44.010000"],["2024-07-24T00:20:45.010000"],["2024-07-24T00:20:46.010000"],["2024-07-24T00:20:47.010000"],["2024-07-24T00:20:48.010000"],["2024-07-24T00:20:49.010000"],["2024-07-24T00:20:50.010000"],["2024-07-24T00:20:51.010000"],["2024-07-24T00:20:52.010000"],["2024-07-24T00:20:53.010000"],["2024-07-24T00:20:54.010000"],["2024-07-24T00:20:55.010000"],["2024-07-24T00:20:56.010000"],["2024-07-24T00:20:57.010000"],["2024-07-24T00:20:58.010000"],["2024-07-24T00:20:59.010000"],["2024-07-24T00:21:00.010000"],["2024-07-24T00:21:01.010000"],["2024-07-24T00:21:02.010000"],["2024-07-24T00:21:03.010000"],["2024-07-24T00:21:04.010000"],["2024-07-24T00:21:05.010000"],["2024-07-24T00:21:06.010000"],["2024-07-24T00:21:07.010000"],["2024-07-24T00:21:08.010000"],["2024-07-24T00:21:09.010000"],["2024-07-24T00:21:10.010000"],["2024-07-24T00:21:11.010000"],["2024-07-24T00:21:12.010000"],["2024-07-24T00:21:13.010000"],["2024-07-24T00:21:14.010000"],["2024-07-24T00:21:15.010000"],["2024-07-24T00:21:16.010000"],["2024-07-24T00:21:17.010000"],["2024-07-24T00:21:18.010000"],["2024-07-24T00:21:19.010000"],["2024-07-24T00:21:20.010000"],["2024-07-24T00:21:21.010000"],["2024-07-24T00:21:22.010000"],["2024-07-24T00:21:23.010000"],["2024-07-24T00:21:24.010000"],["2024-07-24T00:21:25.010000"],["2024-07-24T00:21:26.010000"],["2024-07-24T00:21:27.010000"],["2024-07-24T00:21:28.010000"],["2024-07-24T00:21:29.010000"],["2024-07-24T00:21:30.010000"],["2024-07-24T00:21:31.010000"],["2024-07-24T00:21:32.010000"],["2024-07-24T00:21:33.010000"],["2024-07-24T00:21:34.010000"],["2024-07-24T00:21:35.010000"],["2024-07-24T00:21:36.010000"],["2024-07-24T00:21:37.010000"],["2024-07-24T00:21:38.010000"],["2024-07-24T00:21:39.010000"],["2024-07-24T00:21:40.010000"],["2024-07-24T00:21:41.010000"],["2024-07-24T00:21:42.010000"],["2024-07-24T00:21:43.010000"],["2024-07-24T00:21:44.010000"],["2024-07-24T00:21:45.010000"],["2024-07-24T00:21:46.010000"],["2024-07-24T00:21:47.010000"],["2024-07-24T00:21:48.010000"],["2024-07-24T00:21:49.010000"],["2024-07-24T00:21:50.010000"],["2024-07-24T00:21:51.010000"],["2024-07-24T00:21:52.010000"],["2024-07-24T00:21:53.010000"],["2024-07-24T00:21:54.010000"],["2024-07-24T00:21:55.010000"],["2024-07-24T00:21:56.010000"],["2024-07-24T00:21:57.010000"],["2024-07-24T00:21:58.010000"],["2024-07-24T00:21:59.010000"],["2024-07-24T00:22:00.010000"],["2024-07-24T00:22:01.010000"],["2024-07-24T00:22:02.010000"],["2024-07-24T00:22:03.010000"],["2024-07-24T00:22:04.010000"],["2024-07-24T00:22:05.010000"],["2024-07-24T00:22:06.010000"],["2024-07-24T00:22:07.010000"],["2024-07-24T00:22:08.010000"],["2024-07-24T00:22:09.010000"],["2024-07-24T00:22:10.010000"],["2024-07-24T00:22:11.010000"],["2024-07-24T00:22:12.010000"],["2024-07-24T00:22:13.010000"],["2024-07-24T00:22:14.010000"],["2024-07-24T00:22:15.010000"],["2024-07-24T00:22:16.010000"],["2024-07-24T00:22:17.010000"],["2024-07-24T00:22:18.010000"],["2024-07-24T00:22:19.010000"],["2024-07-24T00:22:20.010000"],["2024-07-24T00:22:21.010000"],["2024-07-24T00:22:22.010000"],["2024-07-24T00:22:23.010000"],["2024-07-24T00:22:24.010000"],["2024-07-24T00:22:25.010000"],["2024-07-24T00:22:26.010000"],["2024-07-24T00:22:27.010000"],["2024-07-24T00:22:28.010000"],["2024-07-24T00:22:29.010000"],["2024-07-24T00:22:30.010000"],["2024-07-24T00:22:31.010000"],["2024-07-24T00:22:32.010000"],["2024-07-24T00:22:33.010000"],["2024-07-24T00:22:34.010000"],["2024-07-24T00:22:35.010000"],["2024-07-24T00:22:36.010000"],["2024-07-24T00:22:37.010000"],["2024-07-24T00:22:38.010000"],["2024-07-24T00:22:39.010000"],["2024-07-24T00:22:40.010000"],["2024-07-24T00:22:41.010000"],["2024-07-24T00:22:42.010000"],["2024-07-24T00:22:43.010000"],["2024-07-24T00:22:44.010000"],["2024-07-24T00:22:45.010000"],["2024-07-24T00:22:46.010000"],["2024-07-24T00:22:47.010000"],["2024-07-24T00:22:48.010000"],["2024-07-24T00:22:49.010000"],["2024-07-24T00:22:50.010000"],["2024-07-24T00:22:51.010000"],["2024-07-24T00:22:52.010000"],["2024-07-24T00:22:53.010000"],["2024-07-24T00:22:54.010000"],["2024-07-24T00:22:55.010000"],["2024-07-24T00:22:56.010000"],["2024-07-24T00:22:57.010000"],["2024-07-24T00:22:58.010000"],["2024-07-24T00:22:59.010000"],["2024-07-24T00:23:00.010000"],["2024-07-24T00:23:01.010000"],["2024-07-24T00:23:02.010000"],["2024-07-24T00:23:03.010000"],["2024-07-24T00:23:04.010000"],["2024-07-24T00:23:05.010000"],["2024-07-24T00:23:06.010000"],["2024-07-24T00:23:07.010000"],["2024-07-24T00:23:08.010000"],["2024-07-24T00:23:09.010000"],["2024-07-24T00:23:10.010000"],["2024-07-24T00:23:11.010000"],["2024-07-24T00:23:12.010000"],["2024-07-24T00:23:13.010000"],["2024-07-24T00:23:14.010000"],["2024-07-24T00:23:15.010000"],["2024-07-24T00:23:16.010000"],["2024-07-24T00:23:17.010000"],["2024-07-24T00:23:18.010000"],["2024-07-24T00:23:19.010000"],["2024-07-24T00:23:20.010000"],["2024-07-24T00:23:21.010000"],["2024-07-24T00:23:22.010000"],["2024-07-24T00:23:23.010000"],["2024-07-24T00:23:24.010000"],["2024-07-24T00:23:25.010000"],["2024-07-24T00:23:26.010000"],["2024-07-24T00:23:27.010000"],["2024-07-24T00:23:28.010000"],["2024-07-24T00:23:29.010000"],["2024-07-24T00:23:30.010000"],["2024-07-24T00:23:31.010000"],["2024-07-24T00:23:32.010000"],["2024-07-24T00:23:33.010000"],["2024-07-24T00:23:34.010000"],["2024-07-24T00:23:35.010000"],["2024-07-24T00:23:36.010000"],["2024-07-24T00:23:37.010000"],["2024-07-24T00:23:38.010000"],["2024-07-24T00:23:39.010000"],["2024-07-24T00:23:40.010000"],["2024-07-24T00:23:41.010000"],["2024-07-24T00:23:42.010000"],["2024-07-24T00:23:43.010000"],["2024-07-24T00:23:44.010000"],["2024-07-24T00:23:45.010000"],["2024-07-24T00:23:46.010000"],["2024-07-24T00:23:47.010000"],["2024-07-24T00:23:48.010000"],["2024-07-24T00:23:49.010000"],["2024-07-24T00:23:50.010000"],["2024-07-24T00:23:51.010000"],["2024-07-24T00:23:52.010000"],["2024-07-24T00:23:53.010000"],["2024-07-24T00:23:54.010000"],["2024-07-24T00:23:55.010000"],["2024-07-24T00:23:56.010000"],["2024-07-24T00:23:57.010000"],["2024-07-24T00:23:58.010000"],["2024-07-24T00:23:59.010000"],["2024-07-24T00:24:00.010000"],["2024-07-24T00:24:01.010000"],["2024-07-24T00:24:02.010000"],["2024-07-24T00:24:03.010000"],["2024-07-24T00:24:04.010000"],["2024-07-24T00:24:05.010000"],["2024-07-24T00:24:06.010000"],["2024-07-24T00:24:07.010000"],["2024-07-24T00:24:08.010000"],["2024-07-24T00:24:09.010000"],["2024-07-24T00:24:10.010000"],["2024-07-24T00:24:11.010000"],["2024-07-24T00:24:12.010000"],["2024-07-24T00:24:13.010000"],["2024-07-24T00:24:14.010000"],["2024-07-24T00:24:15.010000"],["2024-07-24T00:24:16.010000"],["2024-07-24T00:24:17.010000"],["2024-07-24T00:24:18.010000"],["2024-07-24T00:24:19.010000"],["2024-07-24T00:24:20.010000"],["2024-07-24T00:24:21.010000"],["2024-07-24T00:24:22.010000"],["2024-07-24T00:24:23.010000"],["2024-07-24T00:24:24.010000"],["2024-07-24T00:24:25.010000"],["2024-07-24T00:24:26.010000"],["2024-07-24T00:24:27.010000"],["2024-07-24T00:24:28.010000"],["2024-07-24T00:24:29.010000"],["2024-07-24T00:24:30.010000"],["2024-07-24T00:24:31.010000"],["2024-07-24T00:24:32.010000"],["2024-07-24T00:24:33.010000"],["2024-07-24T00:24:34.010000"],["2024-07-24T00:24:35.010000"],["2024-07-24T00:24:36.010000"],["2024-07-24T00:24:37.010000"],["2024-07-24T00:24:38.010000"],["2024-07-24T00:24:39.010000"],["2024-07-24T00:24:40.010000"],["2024-07-24T00:24:41.010000"],["2024-07-24T00:24:42.010000"],["2024-07-24T00:24:43.010000"],["2024-07-24T00:24:44.010000"],["2024-07-24T00:24:45.010000"],["2024-07-24T00:24:46.010000"],["2024-07-24T00:24:47.010000"],["2024-07-24T00:24:48.010000"],["2024-07-24T00:24:49.010000"],["2024-07-24T00:24:50.010000"],["2024-07-24T00:24:51.010000"],["2024-07-24T00:24:52.010000"],["2024-07-24T00:24:53.010000"],["2024-07-24T00:24:54.010000"],["2024-07-24T00:24:55.010000"],["2024-07-24T00:24:56.010000"],["2024-07-24T00:24:57.010000"],["2024-07-24T00:24:58.010000"],["2024-07-24T00:24:59.010000"],["2024-07-24T00:25:00.010000"],["2024-07-24T00:25:01.010000"],["2024-07-24T00:25:02.010000"],["2024-07-24T00:25:03.010000"],["2024-07-24T00:25:04.010000"],["2024-07-24T00:25:05.010000"],["2024-07-24T00:25:06.010000"],["2024-07-24T00:25:07.010000"],["2024-07-24T00:25:08.010000"],["2024-07-24T00:25:09.010000"],["2024-07-24T00:25:10.010000"],["2024-07-24T00:25:11.010000"],["2024-07-24T00:25:12.010000"],["2024-07-24T00:25:13.010000"],["2024-07-24T00:25:14.010000"],["2024-07-24T00:25:15.010000"],["2024-07-24T00:25:16.010000"],["2024-07-24T00:25:17.010000"],["2024-07-24T00:25:18.010000"],["2024-07-24T00:25:19.010000"],["2024-07-24T00:25:20.010000"],["2024-07-24T00:25:21.010000"],["2024-07-24T00:25:22.010000"],["2024-07-24T00:25:23.010000"],["2024-07-24T00:25:24.010000"],["2024-07-24T00:25:25.010000"],["2024-07-24T00:25:26.010000"],["2024-07-24T00:25:27.010000"],["2024-07-24T00:25:28.010000"],["2024-07-24T00:25:29.010000"],["2024-07-24T00:25:30.010000"],["2024-07-24T00:25:31.010000"],["2024-07-24T00:25:32.010000"],["2024-07-24T00:25:33.010000"],["2024-07-24T00:25:34.010000"],["2024-07-24T00:25:35.010000"],["2024-07-24T00:25:36.010000"],["2024-07-24T00:25:37.010000"],["2024-07-24T00:25:38.010000"],["2024-07-24T00:25:39.010000"],["2024-07-24T00:25:40.010000"],["2024-07-24T00:25:41.010000"],["2024-07-24T00:25:42.010000"],["2024-07-24T00:25:43.010000"],["2024-07-24T00:25:44.010000"],["2024-07-24T00:25:45.010000"],["2024-07-24T00:25:46.010000"],["2024-07-24T00:25:47.010000"],["2024-07-24T00:25:48.010000"],["2024-07-24T00:25:49.010000"],["2024-07-24T00:25:50.010000"],["2024-07-24T00:25:51.010000"],["2024-07-24T00:25:52.010000"],["2024-07-24T00:25:53.010000"],["2024-07-24T00:25:54.010000"],["2024-07-24T00:25:55.010000"],["2024-07-24T00:25:56.010000"],["2024-07-24T00:25:57.010000"],["2024-07-24T00:25:58.010000"],["2024-07-24T00:25:59.010000"],["2024-07-24T00:26:00.010000"],["2024-07-24T00:26:01.010000"],["2024-07-24T00:26:02.010000"],["2024-07-24T00:26:03.010000"],["2024-07-24T00:26:04.010000"],["2024-07-24T00:26:05.010000"],["2024-07-24T00:26:06.010000"],["2024-07-24T00:26:07.010000"],["2024-07-24T00:26:08.010000"],["2024-07-24T00:26:09.010000"],["2024-07-24T00:26:10.010000"],["2024-07-24T00:26:11.010000"],["2024-07-24T00:26:12.010000"],["2024-07-24T00:26:13.010000"],["2024-07-24T00:26:14.010000"],["2024-07-24T00:26:15.010000"],["2024-07-24T00:26:16.010000"],["2024-07-24T00:26:17.010000"],["2024-07-24T00:26:18.010000"],["2024-07-24T00:26:19.010000"],["2024-07-24T00:26:20.010000"],["2024-07-24T00:26:21.010000"],["2024-07-24T00:26:22.010000"],["2024-07-24T00:26:23.010000"],["2024-07-24T00:26:24.010000"],["2024-07-24T00:26:25.010000"],["2024-07-24T00:26:26.010000"],["2024-07-24T00:26:27.010000"],["2024-07-24T00:26:28.010000"],["2024-07-24T00:26:29.010000"],["2024-07-24T00:26:30.010000"],["2024-07-24T00:26:31.010000"],["2024-07-24T00:26:32.010000"],["2024-07-24T00:26:33.010000"],["2024-07-24T00:26:34.010000"],["2024-07-24T00:26:35.010000"],["2024-07-24T00:26:36.010000"],["2024-07-24T00:26:37.010000"],["2024-07-24T00:26:38.010000"],["2024-07-24T00:26:39.010000"],["2024-07-24T00:26:40.010000"],["2024-07-24T00:26:41.010000"],["2024-07-24T00:26:42.010000"],["2024-07-24T00:26:43.010000"],["2024-07-24T00:26:44.010000"],["2024-07-24T00:26:45.010000"],["2024-07-24T00:26:46.010000"],["2024-07-24T00:26:47.010000"],["2024-07-24T00:26:48.010000"],["2024-07-24T00:26:49.010000"],["2024-07-24T00:26:50.010000"],["2024-07-24T00:26:51.010000"],["2024-07-24T00:26:52.010000"],["2024-07-24T00:26:53.010000"],["2024-07-24T00:26:54.010000"],["2024-07-24T00:26:55.010000"],["2024-07-24T00:26:56.010000"],["2024-07-24T00:26:57.010000"],["2024-07-24T00:26:58.010000"],["2024-07-24T00:26:59.010000"],["2024-07-24T00:27:00.010000"],["2024-07-24T00:27:01.010000"],["2024-07-24T00:27:02.010000"],["2024-07-24T00:27:03.010000"],["2024-07-24T00:27:04.010000"],["2024-07-24T00:27:05.010000"],["2024-07-24T00:27:06.010000"],["2024-07-24T00:27:07.010000"],["2024-07-24T00:27:08.010000"],["2024-07-24T00:27:09.010000"],["2024-07-24T00:27:10.010000"],["2024-07-24T00:27:11.010000"],["2024-07-24T00:27:12.010000"],["2024-07-24T00:27:13.010000"],["2024-07-24T00:27:14.010000"],["2024-07-24T00:27:15.010000"],["2024-07-24T00:27:16.010000"],["2024-07-24T00:27:17.010000"],["2024-07-24T00:27:18.010000"],["2024-07-24T00:27:19.010000"],["2024-07-24T00:27:20.010000"],["2024-07-24T00:27:21.010000"],["2024-07-24T00:27:22.010000"],["2024-07-24T00:27:23.010000"],["2024-07-24T00:27:24.010000"],["2024-07-24T00:27:25.010000"],["2024-07-24T00:27:26.010000"],["2024-07-24T00:27:27.010000"],["2024-07-24T00:27:28.010000"],["2024-07-24T00:27:29.010000"],["2024-07-24T00:27:30.010000"],["2024-07-24T00:27:31.010000"],["2024-07-24T00:27:32.010000"],["2024-07-24T00:27:33.010000"],["2024-07-24T00:27:34.010000"],["2024-07-24T00:27:35.010000"],["2024-07-24T00:27:36.010000"],["2024-07-24T00:27:37.010000"],["2024-07-24T00:27:38.010000"],["2024-07-24T00:27:39.010000"],["2024-07-24T00:27:40.010000"],["2024-07-24T00:27:41.010000"],["2024-07-24T00:27:42.010000"],["2024-07-24T00:27:43.010000"],["2024-07-24T00:27:44.010000"],["2024-07-24T00:27:45.010000"],["2024-07-24T00:27:46.010000"],["2024-07-24T00:27:47.010000"],["2024-07-24T00:27:48.010000"],["2024-07-24T00:27:49.010000"],["2024-07-24T00:27:50.010000"],["2024-07-24T00:27:51.010000"],["2024-07-24T00:27:52.010000"],["2024-07-24T00:27:53.010000"],["2024-07-24T00:27:54.010000"],["2024-07-24T00:27:55.010000"],["2024-07-24T00:27:56.010000"],["2024-07-24T00:27:57.010000"],["2024-07-24T00:27:58.010000"],["2024-07-24T00:27:59.010000"],["2024-07-24T00:28:00.010000"],["2024-07-24T00:28:01.010000"],["2024-07-24T00:28:02.010000"],["2024-07-24T00:28:03.010000"],["2024-07-24T00:28:04.010000"],["2024-07-24T00:28:05.010000"],["2024-07-24T00:28:06.010000"],["2024-07-24T00:28:07.010000"],["2024-07-24T00:28:08.010000"],["2024-07-24T00:28:09.010000"],["2024-07-24T00:28:10.010000"],["2024-07-24T00:28:11.010000"],["2024-07-24T00:28:12.010000"],["2024-07-24T00:28:13.010000"],["2024-07-24T00:28:14.010000"],["2024-07-24T00:28:15.010000"],["2024-07-24T00:28:16.010000"],["2024-07-24T00:28:17.010000"],["2024-07-24T00:28:18.010000"],["2024-07-24T00:28:19.010000"],["2024-07-24T00:28:20.010000"],["2024-07-24T00:28:21.010000"],["2024-07-24T00:28:22.010000"],["2024-07-24T00:28:23.010000"],["2024-07-24T00:28:24.010000"],["2024-07-24T00:28:25.010000"],["2024-07-24T00:28:26.010000"],["2024-07-24T00:28:27.010000"],["2024-07-24T00:28:28.010000"],["2024-07-24T00:28:29.010000"],["2024-07-24T00:28:30.010000"],["2024-07-24T00:28:31.010000"],["2024-07-24T00:28:32.010000"],["2024-07-24T00:28:33.010000"],["2024-07-24T00:28:34.010000"],["2024-07-24T00:28:35.010000"],["2024-07-24T00:28:36.010000"],["2024-07-24T00:28:37.010000"],["2024-07-24T00:28:38.010000"],["2024-07-24T00:28:39.010000"],["2024-07-24T00:28:40.010000"],["2024-07-24T00:28:41.010000"],["2024-07-24T00:28:42.010000"],["2024-07-24T00:28:43.010000"],["2024-07-24T00:28:44.010000"],["2024-07-24T00:28:45.010000"],["2024-07-24T00:28:46.010000"],["2024-07-24T00:28:47.010000"],["2024-07-24T00:28:48.010000"],["2024-07-24T00:28:49.010000"],["2024-07-24T00:28:50.010000"],["2024-07-24T00:28:51.010000"],["2024-07-24T00:28:52.010000"],["2024-07-24T00:28:53.010000"],["2024-07-24T00:28:54.010000"],["2024-07-24T00:28:55.010000"],["2024-07-24T00:28:56.010000"],["2024-07-24T00:28:57.010000"],["2024-07-24T00:28:58.010000"],["2024-07-24T00:28:59.010000"],["2024-07-24T00:29:00.010000"],["2024-07-24T00:29:01.010000"],["2024-07-24T00:29:02.010000"],["2024-07-24T00:29:03.010000"],["2024-07-24T00:29:04.010000"],["2024-07-24T00:29:05.010000"],["2024-07-24T00:29:06.010000"],["2024-07-24T00:29:07.010000"],["2024-07-24T00:29:08.010000"],["2024-07-24T00:29:09.010000"],["2024-07-24T00:29:10.010000"],["2024-07-24T00:29:11.010000"],["2024-07-24T00:29:12.010000"],["2024-07-24T00:29:13.010000"],["2024-07-24T00:29:14.010000"],["2024-07-24T00:29:15.010000"],["2024-07-24T00:29:16.010000"],["2024-07-24T00:29:17.010000"],["2024-07-24T00:29:18.010000"],["2024-07-24T00:29:19.010000"],["2024-07-24T00:29:20.010000"],["2024-07-24T00:29:21.010000"],["2024-07-24T00:29:22.010000"],["2024-07-24T00:29:23.010000"],["2024-07-24T00:29:24.010000"],["2024-07-24T00:29:25.010000"],["2024-07-24T00:29:26.010000"],["2024-07-24T00:29:27.010000"],["2024-07-24T00:29:28.010000"],["2024-07-24T00:29:29.010000"],["2024-07-24T00:29:30.010000"],["2024-07-24T00:29:31.010000"],["2024-07-24T00:29:32.010000"],["2024-07-24T00:29:33.010000"],["2024-07-24T00:29:34.010000"],["2024-07-24T00:29:35.010000"],["2024-07-24T00:29:36.010000"],["2024-07-24T00:29:37.010000"],["2024-07-24T00:29:38.010000"],["2024-07-24T00:29:39.010000"],["2024-07-24T00:29:40.010000"],["2024-07-24T00:29:41.010000"],["2024-07-24T00:29:42.010000"],["2024-07-24T00:29:43.010000"],["2024-07-24T00:29:44.010000"],["2024-07-24T00:29:45.010000"],["2024-07-24T00:29:46.010000"],["2024-07-24T00:29:47.010000"],["2024-07-24T00:29:48.010000"],["2024-07-24T00:29:49.010000"],["2024-07-24T00:29:50.010000"],["2024-07-24T00:29:51.010000"],["2024-07-24T00:29:52.010000"],["2024-07-24T00:29:53.010000"],["2024-07-24T00:29:54.010000"],["2024-07-24T00:29:55.010000"],["2024-07-24T00:29:56.010000"],["2024-07-24T00:29:57.010000"],["2024-07-24T00:29:58.010000"],["2024-07-24T00:29:59.010000"],["2024-07-24T00:30:00.010000"],["2024-07-24T00:30:01.010000"],["2024-07-24T00:30:02.010000"],["2024-07-24T00:30:03.010000"],["2024-07-24T00:30:04.010000"],["2024-07-24T00:30:05.010000"],["2024-07-24T00:30:06.010000"],["2024-07-24T00:30:07.010000"],["2024-07-24T00:30:08.010000"],["2024-07-24T00:30:09.010000"],["2024-07-24T00:30:10.010000"],["2024-07-24T00:30:11.010000"],["2024-07-24T00:30:12.010000"],["2024-07-24T00:30:13.010000"],["2024-07-24T00:30:14.010000"],["2024-07-24T00:30:15.010000"],["2024-07-24T00:30:16.010000"],["2024-07-24T00:30:17.010000"],["2024-07-24T00:30:18.010000"],["2024-07-24T00:30:19.010000"],["2024-07-24T00:30:20.010000"],["2024-07-24T00:30:21.010000"],["2024-07-24T00:30:22.010000"],["2024-07-24T00:30:23.010000"],["2024-07-24T00:30:24.010000"],["2024-07-24T00:30:25.010000"],["2024-07-24T00:30:26.010000"],["2024-07-24T00:30:27.010000"],["2024-07-24T00:30:28.010000"],["2024-07-24T00:30:29.010000"],["2024-07-24T00:30:30.010000"],["2024-07-24T00:30:31.010000"],["2024-07-24T00:30:32.010000"],["2024-07-24T00:30:33.010000"],["2024-07-24T00:30:34.010000"],["2024-07-24T00:30:35.010000"],["2024-07-24T00:30:36.010000"],["2024-07-24T00:30:37.010000"],["2024-07-24T00:30:38.010000"],["2024-07-24T00:30:39.010000"],["2024-07-24T00:30:40.010000"],["2024-07-24T00:30:41.010000"],["2024-07-24T00:30:42.010000"],["2024-07-24T00:30:43.010000"],["2024-07-24T00:30:44.010000"],["2024-07-24T00:30:45.010000"],["2024-07-24T00:30:46.010000"],["2024-07-24T00:30:47.010000"],["2024-07-24T00:30:48.010000"],["2024-07-24T00:30:49.010000"],["2024-07-24T00:30:50.010000"],["2024-07-24T00:30:51.010000"],["2024-07-24T00:30:52.010000"],["2024-07-24T00:30:53.010000"],["2024-07-24T00:30:54.010000"],["2024-07-24T00:30:55.010000"],["2024-07-24T00:30:56.010000"],["2024-07-24T00:30:57.010000"],["2024-07-24T00:30:58.010000"],["2024-07-24T00:30:59.010000"],["2024-07-24T00:31:00.010000"],["2024-07-24T00:31:01.010000"],["2024-07-24T00:31:02.010000"],["2024-07-24T00:31:03.010000"],["2024-07-24T00:31:04.010000"],["2024-07-24T00:31:05.010000"],["2024-07-24T00:31:06.010000"],["2024-07-24T00:31:07.010000"],["2024-07-24T00:31:08.010000"],["2024-07-24T00:31:09.010000"],["2024-07-24T00:31:10.010000"],["2024-07-24T00:31:11.010000"],["2024-07-24T00:31:12.010000"],["2024-07-24T00:31:13.010000"],["2024-07-24T00:31:14.010000"],["2024-07-24T00:31:15.010000"],["2024-07-24T00:31:16.010000"],["2024-07-24T00:31:17.010000"],["2024-07-24T00:31:18.010000"],["2024-07-24T00:31:19.010000"],["2024-07-24T00:31:20.010000"],["2024-07-24T00:31:21.010000"],["2024-07-24T00:31:22.010000"],["2024-07-24T00:31:23.010000"],["2024-07-24T00:31:24.010000"],["2024-07-24T00:31:25.010000"],["2024-07-24T00:31:26.010000"],["2024-07-24T00:31:27.010000"],["2024-07-24T00:31:28.010000"],["2024-07-24T00:31:29.010000"],["2024-07-24T00:31:30.010000"],["2024-07-24T00:31:31.010000"],["2024-07-24T00:31:32.010000"],["2024-07-24T00:31:33.010000"],["2024-07-24T00:31:34.010000"],["2024-07-24T00:31:35.010000"],["2024-07-24T00:31:36.010000"],["2024-07-24T00:31:37.010000"],["2024-07-24T00:31:38.010000"],["2024-07-24T00:31:39.010000"],["2024-07-24T00:31:40.010000"],["2024-07-24T00:31:41.010000"],["2024-07-24T00:31:42.010000"],["2024-07-24T00:31:43.010000"],["2024-07-24T00:31:44.010000"],["2024-07-24T00:31:45.010000"],["2024-07-24T00:31:46.010000"],["2024-07-24T00:31:47.010000"],["2024-07-24T00:31:48.010000"],["2024-07-24T00:31:49.010000"],["2024-07-24T00:31:50.010000"],["2024-07-24T00:31:51.010000"],["2024-07-24T00:31:52.010000"],["2024-07-24T00:31:53.010000"],["2024-07-24T00:31:54.010000"],["2024-07-24T00:31:55.010000"],["2024-07-24T00:31:56.010000"],["2024-07-24T00:31:57.010000"],["2024-07-24T00:31:58.010000"],["2024-07-24T00:31:59.010000"],["2024-07-24T00:32:00.010000"],["2024-07-24T00:32:01.010000"],["2024-07-24T00:32:02.010000"],["2024-07-24T00:32:03.010000"],["2024-07-24T00:32:04.010000"],["2024-07-24T00:32:05.010000"],["2024-07-24T00:32:06.010000"],["2024-07-24T00:32:07.010000"],["2024-07-24T00:32:08.010000"],["2024-07-24T00:32:09.010000"],["2024-07-24T00:32:10.010000"],["2024-07-24T00:32:11.010000"],["2024-07-24T00:32:12.010000"],["2024-07-24T00:32:13.010000"],["2024-07-24T00:32:14.010000"],["2024-07-24T00:32:15.010000"],["2024-07-24T00:32:16.010000"],["2024-07-24T00:32:17.010000"],["2024-07-24T00:32:18.010000"],["2024-07-24T00:32:19.010000"],["2024-07-24T00:32:20.010000"],["2024-07-24T00:32:21.010000"],["2024-07-24T00:32:22.010000"],["2024-07-24T00:32:23.010000"],["2024-07-24T00:32:24.010000"],["2024-07-24T00:32:25.010000"],["2024-07-24T00:32:26.010000"],["2024-07-24T00:32:27.010000"],["2024-07-24T00:32:28.010000"],["2024-07-24T00:32:29.010000"],["2024-07-24T00:32:30.010000"],["2024-07-24T00:32:31.010000"],["2024-07-24T00:32:32.010000"],["2024-07-24T00:32:33.010000"],["2024-07-24T00:32:34.010000"],["2024-07-24T00:32:35.010000"],["2024-07-24T00:32:36.010000"],["2024-07-24T00:32:37.010000"],["2024-07-24T00:32:38.010000"],["2024-07-24T00:32:39.010000"],["2024-07-24T00:32:40.010000"],["2024-07-24T00:32:41.010000"],["2024-07-24T00:32:42.010000"],["2024-07-24T00:32:43.010000"],["2024-07-24T00:32:44.010000"],["2024-07-24T00:32:45.010000"],["2024-07-24T00:32:46.010000"],["2024-07-24T00:32:47.010000"],["2024-07-24T00:32:48.010000"],["2024-07-24T00:32:49.010000"],["2024-07-24T00:32:50.010000"],["2024-07-24T00:32:51.010000"],["2024-07-24T00:32:52.010000"],["2024-07-24T00:32:53.010000"],["2024-07-24T00:32:54.010000"],["2024-07-24T00:32:55.010000"],["2024-07-24T00:32:56.010000"],["2024-07-24T00:32:57.010000"],["2024-07-24T00:32:58.010000"],["2024-07-24T00:32:59.010000"],["2024-07-24T00:33:00.010000"],["2024-07-24T00:33:01.010000"],["2024-07-24T00:33:02.010000"],["2024-07-24T00:33:03.010000"],["2024-07-24T00:33:04.010000"],["2024-07-24T00:33:05.010000"],["2024-07-24T00:33:06.010000"],["2024-07-24T00:33:07.010000"],["2024-07-24T00:33:08.010000"],["2024-07-24T00:33:09.010000"],["2024-07-24T00:33:10.010000"],["2024-07-24T00:33:11.010000"],["2024-07-24T00:33:12.010000"],["2024-07-24T00:33:13.010000"],["2024-07-24T00:33:14.010000"],["2024-07-24T00:33:15.010000"],["2024-07-24T00:33:16.010000"],["2024-07-24T00:33:17.010000"],["2024-07-24T00:33:18.010000"],["2024-07-24T00:33:19.010000"],["2024-07-24T00:33:20.010000"],["2024-07-24T00:33:21.010000"],["2024-07-24T00:33:22.010000"],["2024-07-24T00:33:23.010000"],["2024-07-24T00:33:24.010000"],["2024-07-24T00:33:25.010000"],["2024-07-24T00:33:26.010000"],["2024-07-24T00:33:27.010000"],["2024-07-24T00:33:28.010000"],["2024-07-24T00:33:29.010000"],["2024-07-24T00:33:30.010000"],["2024-07-24T00:33:31.010000"],["2024-07-24T00:33:32.010000"],["2024-07-24T00:33:33.010000"],["2024-07-24T00:33:34.010000"],["2024-07-24T00:33:35.010000"],["2024-07-24T00:33:36.010000"],["2024-07-24T00:33:37.010000"],["2024-07-24T00:33:38.010000"],["2024-07-24T00:33:39.010000"],["2024-07-24T00:33:40.010000"],["2024-07-24T00:33:41.010000"],["2024-07-24T00:33:42.010000"],["2024-07-24T00:33:43.010000"],["2024-07-24T00:33:44.010000"],["2024-07-24T00:33:45.010000"],["2024-07-24T00:33:46.010000"],["2024-07-24T00:33:47.010000"],["2024-07-24T00:33:48.010000"],["2024-07-24T00:33:49.010000"],["2024-07-24T00:33:50.010000"],["2024-07-24T00:33:51.010000"],["2024-07-24T00:33:52.010000"],["2024-07-24T00:33:53.010000"],["2024-07-24T00:33:54.010000"],["2024-07-24T00:33:55.010000"],["2024-07-24T00:33:56.010000"],["2024-07-24T00:33:57.010000"],["2024-07-24T00:33:58.010000"],["2024-07-24T00:33:59.010000"],["2024-07-24T00:34:00.010000"],["2024-07-24T00:34:01.010000"],["2024-07-24T00:34:02.010000"],["2024-07-24T00:34:03.010000"],["2024-07-24T00:34:04.010000"],["2024-07-24T00:34:05.010000"],["2024-07-24T00:34:06.010000"],["2024-07-24T00:34:07.010000"],["2024-07-24T00:34:08.010000"],["2024-07-24T00:34:09.010000"],["2024-07-24T00:34:10.010000"],["2024-07-24T00:34:11.010000"],["2024-07-24T00:34:12.010000"],["2024-07-24T00:34:13.010000"],["2024-07-24T00:34:14.010000"],["2024-07-24T00:34:15.010000"],["2024-07-24T00:34:16.010000"],["2024-07-24T00:34:17.010000"],["2024-07-24T00:34:18.010000"],["2024-07-24T00:34:19.010000"],["2024-07-24T00:34:20.010000"],["2024-07-24T00:34:21.010000"],["2024-07-24T00:34:22.010000"],["2024-07-24T00:34:23.010000"],["2024-07-24T00:34:24.010000"],["2024-07-24T00:34:25.010000"],["2024-07-24T00:34:26.010000"],["2024-07-24T00:34:27.010000"],["2024-07-24T00:34:28.010000"],["2024-07-24T00:34:29.010000"],["2024-07-24T00:34:30.010000"],["2024-07-24T00:34:31.010000"],["2024-07-24T00:34:32.010000"],["2024-07-24T00:34:33.010000"],["2024-07-24T00:34:34.010000"],["2024-07-24T00:34:35.010000"],["2024-07-24T00:34:36.010000"],["2024-07-24T00:34:37.010000"],["2024-07-24T00:34:38.010000"],["2024-07-24T00:34:39.010000"],["2024-07-24T00:34:40.010000"],["2024-07-24T00:34:41.010000"],["2024-07-24T00:34:42.010000"],["2024-07-24T00:34:43.010000"],["2024-07-24T00:34:44.010000"],["2024-07-24T00:34:45.010000"],["2024-07-24T00:34:46.010000"],["2024-07-24T00:34:47.010000"],["2024-07-24T00:34:48.010000"],["2024-07-24T00:34:49.010000"],["2024-07-24T00:34:50.010000"],["2024-07-24T00:34:51.010000"],["2024-07-24T00:34:52.010000"],["2024-07-24T00:34:53.010000"],["2024-07-24T00:34:54.010000"],["2024-07-24T00:34:55.010000"],["2024-07-24T00:34:56.010000"],["2024-07-24T00:34:57.010000"],["2024-07-24T00:34:58.010000"],["2024-07-24T00:34:59.010000"],["2024-07-24T00:35:00.010000"],["2024-07-24T00:35:01.010000"],["2024-07-24T00:35:02.010000"],["2024-07-24T00:35:03.010000"],["2024-07-24T00:35:04.010000"],["2024-07-24T00:35:05.010000"],["2024-07-24T00:35:06.010000"],["2024-07-24T00:35:07.010000"],["2024-07-24T00:35:08.010000"],["2024-07-24T00:35:09.010000"],["2024-07-24T00:35:10.010000"],["2024-07-24T00:35:11.010000"],["2024-07-24T00:35:12.010000"],["2024-07-24T00:35:13.010000"],["2024-07-24T00:35:14.010000"],["2024-07-24T00:35:15.010000"],["2024-07-24T00:35:16.010000"],["2024-07-24T00:35:17.010000"],["2024-07-24T00:35:18.010000"],["2024-07-24T00:35:19.010000"],["2024-07-24T00:35:20.010000"],["2024-07-24T00:35:21.010000"],["2024-07-24T00:35:22.010000"],["2024-07-24T00:35:23.010000"],["2024-07-24T00:35:24.010000"],["2024-07-24T00:35:25.010000"],["2024-07-24T00:35:26.010000"],["2024-07-24T00:35:27.010000"],["2024-07-24T00:35:28.010000"],["2024-07-24T00:35:29.010000"],["2024-07-24T00:35:30.010000"],["2024-07-24T00:35:31.010000"],["2024-07-24T00:35:32.010000"],["2024-07-24T00:35:33.010000"],["2024-07-24T00:35:34.010000"],["2024-07-24T00:35:35.010000"],["2024-07-24T00:35:36.010000"],["2024-07-24T00:35:37.010000"],["2024-07-24T00:35:38.010000"],["2024-07-24T00:35:39.010000"],["2024-07-24T00:35:40.010000"],["2024-07-24T00:35:41.010000"],["2024-07-24T00:35:42.010000"],["2024-07-24T00:35:43.010000"],["2024-07-24T00:35:44.010000"],["2024-07-24T00:35:45.010000"],["2024-07-24T00:35:46.010000"],["2024-07-24T00:35:47.010000"],["2024-07-24T00:35:48.010000"],["2024-07-24T00:35:49.010000"],["2024-07-24T00:35:50.010000"],["2024-07-24T00:35:51.010000"],["2024-07-24T00:35:52.010000"],["2024-07-24T00:35:53.010000"],["2024-07-24T00:35:54.010000"],["2024-07-24T00:35:55.010000"],["2024-07-24T00:35:56.010000"],["2024-07-24T00:35:57.010000"],["2024-07-24T00:35:58.010000"],["2024-07-24T00:35:59.010000"],["2024-07-24T00:36:00.010000"],["2024-07-24T00:36:01.010000"],["2024-07-24T00:36:02.010000"],["2024-07-24T00:36:03.010000"],["2024-07-24T00:36:04.010000"],["2024-07-24T00:36:05.010000"],["2024-07-24T00:36:06.010000"],["2024-07-24T00:36:07.010000"],["2024-07-24T00:36:08.010000"],["2024-07-24T00:36:09.010000"],["2024-07-24T00:36:10.010000"],["2024-07-24T00:36:11.010000"],["2024-07-24T00:36:12.010000"],["2024-07-24T00:36:13.010000"],["2024-07-24T00:36:14.010000"],["2024-07-24T00:36:15.010000"],["2024-07-24T00:36:16.010000"],["2024-07-24T00:36:17.010000"],["2024-07-24T00:36:18.010000"],["2024-07-24T00:36:19.010000"],["2024-07-24T00:36:20.010000"],["2024-07-24T00:36:21.010000"],["2024-07-24T00:36:22.010000"],["2024-07-24T00:36:23.010000"],["2024-07-24T00:36:24.010000"],["2024-07-24T00:36:25.010000"],["2024-07-24T00:36:26.010000"],["2024-07-24T00:36:27.010000"],["2024-07-24T00:36:28.010000"],["2024-07-24T00:36:29.010000"],["2024-07-24T00:36:30.010000"],["2024-07-24T00:36:31.010000"],["2024-07-24T00:36:32.010000"],["2024-07-24T00:36:33.010000"],["2024-07-24T00:36:34.010000"],["2024-07-24T00:36:35.010000"],["2024-07-24T00:36:36.010000"],["2024-07-24T00:36:37.010000"],["2024-07-24T00:36:38.010000"],["2024-07-24T00:36:39.010000"],["2024-07-24T00:36:40.010000"],["2024-07-24T00:36:41.010000"],["2024-07-24T00:36:42.010000"],["2024-07-24T00:36:43.010000"],["2024-07-24T00:36:44.010000"],["2024-07-24T00:36:45.010000"],["2024-07-24T00:36:46.010000"],["2024-07-24T00:36:47.010000"],["2024-07-24T00:36:48.010000"],["2024-07-24T00:36:49.010000"],["2024-07-24T00:36:50.010000"],["2024-07-24T00:36:51.010000"],["2024-07-24T00:36:52.010000"],["2024-07-24T00:36:53.010000"],["2024-07-24T00:36:54.010000"],["2024-07-24T00:36:55.010000"],["2024-07-24T00:36:56.010000"],["2024-07-24T00:36:57.010000"],["2024-07-24T00:36:58.010000"],["2024-07-24T00:36:59.010000"],["2024-07-24T00:37:00.010000"],["2024-07-24T00:37:01.010000"],["2024-07-24T00:37:02.010000"],["2024-07-24T00:37:03.010000"],["2024-07-24T00:37:04.010000"],["2024-07-24T00:37:05.010000"],["2024-07-24T00:37:06.010000"],["2024-07-24T00:37:07.010000"],["2024-07-24T00:37:08.010000"],["2024-07-24T00:37:09.010000"],["2024-07-24T00:37:10.010000"],["2024-07-24T00:37:11.010000"],["2024-07-24T00:37:12.010000"],["2024-07-24T00:37:13.010000"],["2024-07-24T00:37:14.010000"],["2024-07-24T00:37:15.010000"],["2024-07-24T00:37:16.010000"],["2024-07-24T00:37:17.010000"],["2024-07-24T00:37:18.010000"],["2024-07-24T00:37:19.010000"],["2024-07-24T00:37:20.010000"],["2024-07-24T00:37:21.010000"],["2024-07-24T00:37:22.010000"],["2024-07-24T00:37:23.010000"],["2024-07-24T00:37:24.010000"],["2024-07-24T00:37:25.010000"],["2024-07-24T00:37:26.010000"],["2024-07-24T00:37:27.010000"],["2024-07-24T00:37:28.010000"],["2024-07-24T00:37:29.010000"],["2024-07-24T00:37:30.010000"],["2024-07-24T00:37:31.010000"],["2024-07-24T00:37:32.010000"],["2024-07-24T00:37:33.010000"],["2024-07-24T00:37:34.010000"],["2024-07-24T00:37:35.010000"],["2024-07-24T00:37:36.010000"],["2024-07-24T00:37:37.010000"],["2024-07-24T00:37:38.010000"],["2024-07-24T00:37:39.010000"],["2024-07-24T00:37:40.010000"],["2024-07-24T00:37:41.010000"],["2024-07-24T00:37:42.010000"],["2024-07-24T00:37:43.010000"],["2024-07-24T00:37:44.010000"],["2024-07-24T00:37:45.010000"],["2024-07-24T00:37:46.010000"],["2024-07-24T00:37:47.010000"],["2024-07-24T00:37:48.010000"],["2024-07-24T00:37:49.010000"],["2024-07-24T00:37:50.010000"],["2024-07-24T00:37:51.010000"],["2024-07-24T00:37:52.010000"],["2024-07-24T00:37:53.010000"],["2024-07-24T00:37:54.010000"],["2024-07-24T00:37:55.010000"],["2024-07-24T00:37:56.010000"],["2024-07-24T00:37:57.010000"],["2024-07-24T00:37:58.010000"],["2024-07-24T00:37:59.010000"],["2024-07-24T00:38:00.010000"],["2024-07-24T00:38:01.010000"],["2024-07-24T00:38:02.010000"],["2024-07-24T00:38:03.010000"],["2024-07-24T00:38:04.010000"],["2024-07-24T00:38:05.010000"],["2024-07-24T00:38:06.010000"],["2024-07-24T00:38:07.010000"],["2024-07-24T00:38:08.010000"],["2024-07-24T00:38:09.010000"],["2024-07-24T00:38:10.010000"],["2024-07-24T00:38:11.010000"],["2024-07-24T00:38:12.010000"],["2024-07-24T00:38:13.010000"],["2024-07-24T00:38:14.010000"],["2024-07-24T00:38:15.010000"],["2024-07-24T00:38:16.010000"],["2024-07-24T00:38:17.010000"],["2024-07-24T00:38:18.010000"],["2024-07-24T00:38:19.010000"],["2024-07-24T00:38:20.010000"],["2024-07-24T00:38:21.010000"],["2024-07-24T00:38:22.010000"],["2024-07-24T00:38:23.010000"],["2024-07-24T00:38:24.010000"],["2024-07-24T00:38:25.010000"],["2024-07-24T00:38:26.010000"],["2024-07-24T00:38:27.010000"],["2024-07-24T00:38:28.010000"],["2024-07-24T00:38:29.010000"],["2024-07-24T00:38:30.010000"],["2024-07-24T00:38:31.010000"],["2024-07-24T00:38:32.010000"],["2024-07-24T00:38:33.010000"],["2024-07-24T00:38:34.010000"],["2024-07-24T00:38:35.010000"],["2024-07-24T00:38:36.010000"],["2024-07-24T00:38:37.010000"],["2024-07-24T00:38:38.010000"],["2024-07-24T00:38:39.010000"],["2024-07-24T00:38:40.010000"],["2024-07-24T00:38:41.010000"],["2024-07-24T00:38:42.010000"],["2024-07-24T00:38:43.010000"],["2024-07-24T00:38:44.010000"],["2024-07-24T00:38:45.010000"],["2024-07-24T00:38:46.010000"],["2024-07-24T00:38:47.010000"],["2024-07-24T00:38:48.010000"],["2024-07-24T00:38:49.010000"],["2024-07-24T00:38:50.010000"],["2024-07-24T00:38:51.010000"],["2024-07-24T00:38:52.010000"],["2024-07-24T00:38:53.010000"],["2024-07-24T00:38:54.010000"],["2024-07-24T00:38:55.010000"],["2024-07-24T00:38:56.010000"],["2024-07-24T00:38:57.010000"],["2024-07-24T00:38:58.010000"],["2024-07-24T00:38:59.010000"],["2024-07-24T00:39:00.010000"],["2024-07-24T00:39:01.010000"],["2024-07-24T00:39:02.010000"],["2024-07-24T00:39:03.010000"],["2024-07-24T00:39:04.010000"],["2024-07-24T00:39:05.010000"],["2024-07-24T00:39:06.010000"],["2024-07-24T00:39:07.010000"],["2024-07-24T00:39:08.010000"],["2024-07-24T00:39:09.010000"],["2024-07-24T00:39:10.010000"],["2024-07-24T00:39:11.010000"],["2024-07-24T00:39:12.010000"],["2024-07-24T00:39:13.010000"],["2024-07-24T00:39:14.010000"],["2024-07-24T00:39:15.010000"],["2024-07-24T00:39:16.010000"],["2024-07-24T00:39:17.010000"],["2024-07-24T00:39:18.010000"],["2024-07-24T00:39:19.010000"],["2024-07-24T00:39:20.010000"],["2024-07-24T00:39:21.010000"],["2024-07-24T00:39:22.010000"],["2024-07-24T00:39:23.010000"],["2024-07-24T00:39:24.010000"],["2024-07-24T00:39:25.010000"],["2024-07-24T00:39:26.010000"],["2024-07-24T00:39:27.010000"],["2024-07-24T00:39:28.010000"],["2024-07-24T00:39:29.010000"],["2024-07-24T00:39:30.010000"],["2024-07-24T00:39:31.010000"],["2024-07-24T00:39:32.010000"],["2024-07-24T00:39:33.010000"],["2024-07-24T00:39:34.010000"],["2024-07-24T00:39:35.010000"],["2024-07-24T00:39:36.010000"],["2024-07-24T00:39:37.010000"],["2024-07-24T00:39:38.010000"],["2024-07-24T00:39:39.010000"],["2024-07-24T00:39:40.010000"],["2024-07-24T00:39:41.010000"],["2024-07-24T00:39:42.010000"],["2024-07-24T00:39:43.010000"],["2024-07-24T00:39:44.010000"],["2024-07-24T00:39:45.010000"],["2024-07-24T00:39:46.010000"],["2024-07-24T00:39:47.010000"],["2024-07-24T00:39:48.010000"],["2024-07-24T00:39:49.010000"],["2024-07-24T00:39:50.010000"],["2024-07-24T00:39:51.010000"],["2024-07-24T00:39:52.010000"],["2024-07-24T00:39:53.010000"],["2024-07-24T00:39:54.010000"],["2024-07-24T00:39:55.010000"],["2024-07-24T00:39:56.010000"],["2024-07-24T00:39:57.010000"],["2024-07-24T00:39:58.010000"],["2024-07-24T00:39:59.010000"],["2024-07-24T00:40:00.010000"],["2024-07-24T00:40:01.010000"],["2024-07-24T00:40:02.010000"],["2024-07-24T00:40:03.010000"],["2024-07-24T00:40:04.010000"],["2024-07-24T00:40:05.010000"],["2024-07-24T00:40:06.010000"],["2024-07-24T00:40:07.010000"],["2024-07-24T00:40:08.010000"],["2024-07-24T00:40:09.010000"],["2024-07-24T00:40:10.010000"],["2024-07-24T00:40:11.010000"],["2024-07-24T00:40:12.010000"],["2024-07-24T00:40:13.010000"],["2024-07-24T00:40:14.010000"],["2024-07-24T00:40:15.010000"],["2024-07-24T00:40:16.010000"],["2024-07-24T00:40:17.010000"],["2024-07-24T00:40:18.010000"],["2024-07-24T00:40:19.010000"],["2024-07-24T00:40:20.010000"],["2024-07-24T00:40:21.010000"],["2024-07-24T00:40:22.010000"],["2024-07-24T00:40:23.010000"],["2024-07-24T00:40:24.010000"],["2024-07-24T00:40:25.010000"],["2024-07-24T00:40:26.010000"],["2024-07-24T00:40:27.010000"],["2024-07-24T00:40:28.010000"],["2024-07-24T00:40:29.010000"],["2024-07-24T00:40:30.010000"],["2024-07-24T00:40:31.010000"],["2024-07-24T00:40:32.010000"],["2024-07-24T00:40:33.010000"],["2024-07-24T00:40:34.010000"],["2024-07-24T00:40:35.010000"],["2024-07-24T00:40:36.010000"],["2024-07-24T00:40:37.010000"],["2024-07-24T00:40:38.010000"],["2024-07-24T00:40:39.010000"],["2024-07-24T00:40:40.010000"],["2024-07-24T00:40:41.010000"],["2024-07-24T00:40:42.010000"],["2024-07-24T00:40:43.010000"],["2024-07-24T00:40:44.010000"],["2024-07-24T00:40:45.010000"],["2024-07-24T00:40:46.010000"],["2024-07-24T00:40:47.010000"],["2024-07-24T00:40:48.010000"],["2024-07-24T00:40:49.010000"],["2024-07-24T00:40:50.010000"],["2024-07-24T00:40:51.010000"],["2024-07-24T00:40:52.010000"],["2024-07-24T00:40:53.010000"],["2024-07-24T00:40:54.010000"],["2024-07-24T00:40:55.010000"],["2024-07-24T00:40:56.010000"],["2024-07-24T00:40:57.010000"],["2024-07-24T00:40:58.010000"],["2024-07-24T00:40:59.010000"],["2024-07-24T00:41:00.010000"],["2024-07-24T00:41:01.010000"],["2024-07-24T00:41:02.010000"],["2024-07-24T00:41:03.010000"],["2024-07-24T00:41:04.010000"],["2024-07-24T00:41:05.010000"],["2024-07-24T00:41:06.010000"],["2024-07-24T00:41:07.010000"],["2024-07-24T00:41:08.010000"],["2024-07-24T00:41:09.010000"],["2024-07-24T00:41:10.010000"],["2024-07-24T00:41:11.010000"],["2024-07-24T00:41:12.010000"],["2024-07-24T00:41:13.010000"],["2024-07-24T00:41:14.010000"],["2024-07-24T00:41:15.010000"],["2024-07-24T00:41:16.010000"],["2024-07-24T00:41:17.010000"],["2024-07-24T00:41:18.010000"],["2024-07-24T00:41:19.010000"],["2024-07-24T00:41:20.010000"],["2024-07-24T00:41:21.010000"],["2024-07-24T00:41:22.010000"],["2024-07-24T00:41:23.010000"],["2024-07-24T00:41:24.010000"],["2024-07-24T00:41:25.010000"],["2024-07-24T00:41:26.010000"],["2024-07-24T00:41:27.010000"],["2024-07-24T00:41:28.010000"],["2024-07-24T00:41:29.010000"],["2024-07-24T00:41:30.010000"],["2024-07-24T00:41:31.010000"],["2024-07-24T00:41:32.010000"],["2024-07-24T00:41:33.010000"],["2024-07-24T00:41:34.010000"],["2024-07-24T00:41:35.010000"],["2024-07-24T00:41:36.010000"],["2024-07-24T00:41:37.010000"],["2024-07-24T00:41:38.010000"],["2024-07-24T00:41:39.010000"],["2024-07-24T00:41:40.010000"],["2024-07-24T00:41:41.010000"],["2024-07-24T00:41:42.010000"],["2024-07-24T00:41:43.010000"],["2024-07-24T00:41:44.010000"],["2024-07-24T00:41:45.010000"],["2024-07-24T00:41:46.010000"],["2024-07-24T00:41:47.010000"],["2024-07-24T00:41:48.010000"],["2024-07-24T00:41:49.010000"],["2024-07-24T00:41:50.010000"],["2024-07-24T00:41:51.010000"],["2024-07-24T00:41:52.010000"],["2024-07-24T00:41:53.010000"],["2024-07-24T00:41:54.010000"],["2024-07-24T00:41:55.010000"],["2024-07-24T00:41:56.010000"],["2024-07-24T00:41:57.010000"],["2024-07-24T00:41:58.010000"],["2024-07-24T00:41:59.010000"],["2024-07-24T00:42:00.010000"],["2024-07-24T00:42:01.010000"],["2024-07-24T00:42:02.010000"],["2024-07-24T00:42:03.010000"],["2024-07-24T00:42:04.010000"],["2024-07-24T00:42:05.010000"],["2024-07-24T00:42:06.010000"],["2024-07-24T00:42:07.010000"],["2024-07-24T00:42:08.010000"],["2024-07-24T00:42:09.010000"],["2024-07-24T00:42:10.010000"],["2024-07-24T00:42:11.010000"],["2024-07-24T00:42:12.010000"],["2024-07-24T00:42:13.010000"],["2024-07-24T00:42:14.010000"],["2024-07-24T00:42:15.010000"],["2024-07-24T00:42:16.010000"],["2024-07-24T00:42:17.010000"],["2024-07-24T00:42:18.010000"],["2024-07-24T00:42:19.010000"],["2024-07-24T00:42:20.010000"],["2024-07-24T00:42:21.010000"],["2024-07-24T00:42:22.010000"],["2024-07-24T00:42:23.010000"],["2024-07-24T00:42:24.010000"],["2024-07-24T00:42:25.010000"],["2024-07-24T00:42:26.010000"],["2024-07-24T00:42:27.010000"],["2024-07-24T00:42:28.010000"],["2024-07-24T00:42:29.010000"],["2024-07-24T00:42:30.010000"],["2024-07-24T00:42:31.010000"],["2024-07-24T00:42:32.010000"],["2024-07-24T00:42:33.010000"],["2024-07-24T00:42:34.010000"],["2024-07-24T00:42:35.010000"],["2024-07-24T00:42:36.010000"],["2024-07-24T00:42:37.010000"],["2024-07-24T00:42:38.010000"],["2024-07-24T00:42:39.010000"],["2024-07-24T00:42:40.010000"],["2024-07-24T00:42:41.010000"],["2024-07-24T00:42:42.010000"],["2024-07-24T00:42:43.010000"],["2024-07-24T00:42:44.010000"],["2024-07-24T00:42:45.010000"],["2024-07-24T00:42:46.010000"],["2024-07-24T00:42:47.010000"],["2024-07-24T00:42:48.010000"],["2024-07-24T00:42:49.010000"],["2024-07-24T00:42:50.010000"],["2024-07-24T00:42:51.010000"],["2024-07-24T00:42:52.010000"],["2024-07-24T00:42:53.010000"],["2024-07-24T00:42:54.010000"],["2024-07-24T00:42:55.010000"],["2024-07-24T00:42:56.010000"],["2024-07-24T00:42:57.010000"],["2024-07-24T00:42:58.010000"],["2024-07-24T00:42:59.010000"],["2024-07-24T00:43:00.010000"],["2024-07-24T00:43:01.010000"],["2024-07-24T00:43:02.010000"],["2024-07-24T00:43:03.010000"],["2024-07-24T00:43:04.010000"],["2024-07-24T00:43:05.010000"],["2024-07-24T00:43:06.010000"],["2024-07-24T00:43:07.010000"],["2024-07-24T00:43:08.010000"],["2024-07-24T00:43:09.010000"],["2024-07-24T00:43:10.010000"],["2024-07-24T00:43:11.010000"],["2024-07-24T00:43:12.010000"],["2024-07-24T00:43:13.010000"],["2024-07-24T00:43:14.010000"],["2024-07-24T00:43:15.010000"],["2024-07-24T00:43:16.010000"],["2024-07-24T00:43:17.010000"],["2024-07-24T00:43:18.010000"],["2024-07-24T00:43:19.010000"],["2024-07-24T00:43:20.010000"],["2024-07-24T00:43:21.010000"],["2024-07-24T00:43:22.010000"],["2024-07-24T00:43:23.010000"],["2024-07-24T00:43:24.010000"],["2024-07-24T00:43:25.010000"],["2024-07-24T00:43:26.010000"],["2024-07-24T00:43:27.010000"],["2024-07-24T00:43:28.010000"],["2024-07-24T00:43:29.010000"],["2024-07-24T00:43:30.010000"],["2024-07-24T00:43:31.010000"],["2024-07-24T00:43:32.010000"],["2024-07-24T00:43:33.010000"],["2024-07-24T00:43:34.010000"],["2024-07-24T00:43:35.010000"],["2024-07-24T00:43:36.010000"],["2024-07-24T00:43:37.010000"],["2024-07-24T00:43:38.010000"],["2024-07-24T00:43:39.010000"],["2024-07-24T00:43:40.010000"],["2024-07-24T00:43:41.010000"],["2024-07-24T00:43:42.010000"],["2024-07-24T00:43:43.010000"],["2024-07-24T00:43:44.010000"],["2024-07-24T00:43:45.010000"],["2024-07-24T00:43:46.010000"],["2024-07-24T00:43:47.010000"],["2024-07-24T00:43:48.010000"],["2024-07-24T00:43:49.010000"],["2024-07-24T00:43:50.010000"],["2024-07-24T00:43:51.010000"],["2024-07-24T00:43:52.010000"],["2024-07-24T00:43:53.010000"],["2024-07-24T00:43:54.010000"],["2024-07-24T00:43:55.010000"],["2024-07-24T00:43:56.010000"],["2024-07-24T00:43:57.010000"],["2024-07-24T00:43:58.010000"],["2024-07-24T00:43:59.010000"],["2024-07-24T00:44:00.010000"],["2024-07-24T00:44:01.010000"],["2024-07-24T00:44:02.010000"],["2024-07-24T00:44:03.010000"],["2024-07-24T00:44:04.010000"],["2024-07-24T00:44:05.010000"],["2024-07-24T00:44:06.010000"],["2024-07-24T00:44:07.010000"],["2024-07-24T00:44:08.010000"],["2024-07-24T00:44:09.010000"],["2024-07-24T00:44:10.010000"],["2024-07-24T00:44:11.010000"],["2024-07-24T00:44:12.010000"],["2024-07-24T00:44:13.010000"],["2024-07-24T00:44:14.010000"],["2024-07-24T00:44:15.010000"],["2024-07-24T00:44:16.010000"],["2024-07-24T00:44:17.010000"],["2024-07-24T00:44:18.010000"],["2024-07-24T00:44:19.010000"],["2024-07-24T00:44:20.010000"],["2024-07-24T00:44:21.010000"],["2024-07-24T00:44:22.010000"],["2024-07-24T00:44:23.010000"],["2024-07-24T00:44:24.010000"],["2024-07-24T00:44:25.010000"],["2024-07-24T00:44:26.010000"],["2024-07-24T00:44:27.010000"],["2024-07-24T00:44:28.010000"],["2024-07-24T00:44:29.010000"],["2024-07-24T00:44:30.010000"],["2024-07-24T00:44:31.010000"],["2024-07-24T00:44:32.010000"],["2024-07-24T00:44:33.010000"],["2024-07-24T00:44:34.010000"],["2024-07-24T00:44:35.010000"],["2024-07-24T00:44:36.010000"],["2024-07-24T00:44:37.010000"],["2024-07-24T00:44:38.010000"],["2024-07-24T00:44:39.010000"],["2024-07-24T00:44:40.010000"],["2024-07-24T00:44:41.010000"],["2024-07-24T00:44:42.010000"],["2024-07-24T00:44:43.010000"],["2024-07-24T00:44:44.010000"],["2024-07-24T00:44:45.010000"],["2024-07-24T00:44:46.010000"],["2024-07-24T00:44:47.010000"],["2024-07-24T00:44:48.010000"],["2024-07-24T00:44:49.010000"],["2024-07-24T00:44:50.010000"],["2024-07-24T00:44:51.010000"],["2024-07-24T00:44:52.010000"],["2024-07-24T00:44:53.010000"],["2024-07-24T00:44:54.010000"],["2024-07-24T00:44:55.010000"],["2024-07-24T00:44:56.010000"],["2024-07-24T00:44:57.010000"],["2024-07-24T00:44:58.010000"],["2024-07-24T00:44:59.010000"],["2024-07-24T00:45:00.010000"],["2024-07-24T00:45:01.010000"],["2024-07-24T00:45:02.010000"],["2024-07-24T00:45:03.010000"],["2024-07-24T00:45:04.010000"],["2024-07-24T00:45:05.010000"],["2024-07-24T00:45:06.010000"],["2024-07-24T00:45:07.010000"],["2024-07-24T00:45:08.010000"],["2024-07-24T00:45:09.010000"],["2024-07-24T00:45:10.010000"],["2024-07-24T00:45:11.010000"],["2024-07-24T00:45:12.010000"],["2024-07-24T00:45:13.010000"],["2024-07-24T00:45:14.010000"],["2024-07-24T00:45:15.010000"],["2024-07-24T00:45:16.010000"],["2024-07-24T00:45:17.010000"],["2024-07-24T00:45:18.010000"],["2024-07-24T00:45:19.010000"],["2024-07-24T00:45:20.010000"],["2024-07-24T00:45:21.010000"],["2024-07-24T00:45:22.010000"],["2024-07-24T00:45:23.010000"],["2024-07-24T00:45:24.010000"],["2024-07-24T00:45:25.010000"],["2024-07-24T00:45:26.010000"],["2024-07-24T00:45:27.010000"],["2024-07-24T00:45:28.010000"],["2024-07-24T00:45:29.010000"],["2024-07-24T00:45:30.010000"],["2024-07-24T00:45:31.010000"],["2024-07-24T00:45:32.010000"],["2024-07-24T00:45:33.010000"],["2024-07-24T00:45:34.010000"],["2024-07-24T00:45:35.010000"],["2024-07-24T00:45:36.010000"],["2024-07-24T00:45:37.010000"],["2024-07-24T00:45:38.010000"],["2024-07-24T00:45:39.010000"],["2024-07-24T00:45:40.010000"],["2024-07-24T00:45:41.010000"],["2024-07-24T00:45:42.010000"],["2024-07-24T00:45:43.010000"],["2024-07-24T00:45:44.010000"],["2024-07-24T00:45:45.010000"],["2024-07-24T00:45:46.010000"],["2024-07-24T00:45:47.010000"],["2024-07-24T00:45:48.010000"],["2024-07-24T00:45:49.010000"],["2024-07-24T00:45:50.010000"],["2024-07-24T00:45:51.010000"],["2024-07-24T00:45:52.010000"],["2024-07-24T00:45:53.010000"],["2024-07-24T00:45:54.010000"],["2024-07-24T00:45:55.010000"],["2024-07-24T00:45:56.010000"],["2024-07-24T00:45:57.010000"],["2024-07-24T00:45:58.010000"],["2024-07-24T00:45:59.010000"],["2024-07-24T00:46:00.010000"],["2024-07-24T00:46:01.010000"],["2024-07-24T00:46:02.010000"],["2024-07-24T00:46:03.010000"],["2024-07-24T00:46:04.010000"],["2024-07-24T00:46:05.010000"],["2024-07-24T00:46:06.010000"],["2024-07-24T00:46:07.010000"],["2024-07-24T00:46:08.010000"],["2024-07-24T00:46:09.010000"],["2024-07-24T00:46:10.010000"],["2024-07-24T00:46:11.010000"],["2024-07-24T00:46:12.010000"],["2024-07-24T00:46:13.010000"],["2024-07-24T00:46:14.010000"],["2024-07-24T00:46:15.010000"],["2024-07-24T00:46:16.010000"],["2024-07-24T00:46:17.010000"],["2024-07-24T00:46:18.010000"],["2024-07-24T00:46:19.010000"],["2024-07-24T00:46:20.010000"],["2024-07-24T00:46:21.010000"],["2024-07-24T00:46:22.010000"],["2024-07-24T00:46:23.010000"],["2024-07-24T00:46:24.010000"],["2024-07-24T00:46:25.010000"],["2024-07-24T00:46:26.010000"],["2024-07-24T00:46:27.010000"],["2024-07-24T00:46:28.010000"],["2024-07-24T00:46:29.010000"],["2024-07-24T00:46:30.010000"],["2024-07-24T00:46:31.010000"],["2024-07-24T00:46:32.010000"],["2024-07-24T00:46:33.010000"],["2024-07-24T00:46:34.010000"],["2024-07-24T00:46:35.010000"],["2024-07-24T00:46:36.010000"],["2024-07-24T00:46:37.010000"],["2024-07-24T00:46:38.010000"],["2024-07-24T00:46:39.010000"],["2024-07-24T00:46:40.010000"],["2024-07-24T00:46:41.010000"],["2024-07-24T00:46:42.010000"],["2024-07-24T00:46:43.010000"],["2024-07-24T00:46:44.010000"],["2024-07-24T00:46:45.010000"],["2024-07-24T00:46:46.010000"],["2024-07-24T00:46:47.010000"],["2024-07-24T00:46:48.010000"],["2024-07-24T00:46:49.010000"],["2024-07-24T00:46:50.010000"],["2024-07-24T00:46:51.010000"],["2024-07-24T00:46:52.010000"],["2024-07-24T00:46:53.010000"],["2024-07-24T00:46:54.010000"],["2024-07-24T00:46:55.010000"],["2024-07-24T00:46:56.010000"],["2024-07-24T00:46:57.010000"],["2024-07-24T00:46:58.010000"],["2024-07-24T00:46:59.010000"],["2024-07-24T00:47:00.010000"],["2024-07-24T00:47:01.010000"],["2024-07-24T00:47:02.010000"],["2024-07-24T00:47:03.010000"],["2024-07-24T00:47:04.010000"],["2024-07-24T00:47:05.010000"],["2024-07-24T00:47:06.010000"],["2024-07-24T00:47:07.010000"],["2024-07-24T00:47:08.010000"],["2024-07-24T00:47:09.010000"],["2024-07-24T00:47:10.010000"],["2024-07-24T00:47:11.010000"],["2024-07-24T00:47:12.010000"],["2024-07-24T00:47:13.010000"],["2024-07-24T00:47:14.010000"],["2024-07-24T00:47:15.010000"],["2024-07-24T00:47:16.010000"],["2024-07-24T00:47:17.010000"],["2024-07-24T00:47:18.010000"],["2024-07-24T00:47:19.010000"],["2024-07-24T00:47:20.010000"],["2024-07-24T00:47:21.010000"],["2024-07-24T00:47:22.010000"],["2024-07-24T00:47:23.010000"],["2024-07-24T00:47:24.010000"],["2024-07-24T00:47:25.010000"],["2024-07-24T00:47:26.010000"],["2024-07-24T00:47:27.010000"],["2024-07-24T00:47:28.010000"],["2024-07-24T00:47:29.010000"],["2024-07-24T00:47:30.010000"],["2024-07-24T00:47:31.010000"],["2024-07-24T00:47:32.010000"],["2024-07-24T00:47:33.010000"],["2024-07-24T00:47:34.010000"],["2024-07-24T00:47:35.010000"],["2024-07-24T00:47:36.010000"],["2024-07-24T00:47:37.010000"],["2024-07-24T00:47:38.010000"],["2024-07-24T00:47:39.010000"],["2024-07-24T00:47:40.010000"],["2024-07-24T00:47:41.010000"],["2024-07-24T00:47:42.010000"],["2024-07-24T00:47:43.010000"],["2024-07-24T00:47:44.010000"],["2024-07-24T00:47:45.010000"],["2024-07-24T00:47:46.010000"],["2024-07-24T00:47:47.010000"],["2024-07-24T00:47:48.010000"],["2024-07-24T00:47:49.010000"],["2024-07-24T00:47:50.010000"],["2024-07-24T00:47:51.010000"],["2024-07-24T00:47:52.010000"],["2024-07-24T00:47:53.010000"],["2024-07-24T00:47:54.010000"],["2024-07-24T00:47:55.010000"],["2024-07-24T00:47:56.010000"],["2024-07-24T00:47:57.010000"],["2024-07-24T00:47:58.010000"],["2024-07-24T00:47:59.010000"],["2024-07-24T00:48:00.010000"],["2024-07-24T00:48:01.010000"],["2024-07-24T00:48:02.010000"],["2024-07-24T00:48:03.010000"],["2024-07-24T00:48:04.010000"],["2024-07-24T00:48:05.010000"],["2024-07-24T00:48:06.010000"],["2024-07-24T00:48:07.010000"],["2024-07-24T00:48:08.010000"],["2024-07-24T00:48:09.010000"],["2024-07-24T00:48:10.010000"],["2024-07-24T00:48:11.010000"],["2024-07-24T00:48:12.010000"],["2024-07-24T00:48:13.010000"],["2024-07-24T00:48:14.010000"],["2024-07-24T00:48:15.010000"],["2024-07-24T00:48:16.010000"],["2024-07-24T00:48:17.010000"],["2024-07-24T00:48:18.010000"],["2024-07-24T00:48:19.010000"],["2024-07-24T00:48:20.010000"],["2024-07-24T00:48:21.010000"],["2024-07-24T00:48:22.010000"],["2024-07-24T00:48:23.010000"],["2024-07-24T00:48:24.010000"],["2024-07-24T00:48:25.010000"],["2024-07-24T00:48:26.010000"],["2024-07-24T00:48:27.010000"],["2024-07-24T00:48:28.010000"],["2024-07-24T00:48:29.010000"],["2024-07-24T00:48:30.010000"],["2024-07-24T00:48:31.010000"],["2024-07-24T00:48:32.010000"],["2024-07-24T00:48:33.010000"],["2024-07-24T00:48:34.010000"],["2024-07-24T00:48:35.010000"],["2024-07-24T00:48:36.010000"],["2024-07-24T00:48:37.010000"],["2024-07-24T00:48:38.010000"],["2024-07-24T00:48:39.010000"],["2024-07-24T00:48:40.010000"],["2024-07-24T00:48:41.010000"],["2024-07-24T00:48:42.010000"],["2024-07-24T00:48:43.010000"],["2024-07-24T00:48:44.010000"],["2024-07-24T00:48:45.010000"],["2024-07-24T00:48:46.010000"],["2024-07-24T00:48:47.010000"],["2024-07-24T00:48:48.010000"],["2024-07-24T00:48:49.010000"],["2024-07-24T00:48:50.010000"],["2024-07-24T00:48:51.010000"],["2024-07-24T00:48:52.010000"],["2024-07-24T00:48:53.010000"],["2024-07-24T00:48:54.010000"],["2024-07-24T00:48:55.010000"],["2024-07-24T00:48:56.010000"],["2024-07-24T00:48:57.010000"],["2024-07-24T00:48:58.010000"],["2024-07-24T00:48:59.010000"],["2024-07-24T00:49:00.010000"],["2024-07-24T00:49:01.010000"],["2024-07-24T00:49:02.010000"],["2024-07-24T00:49:03.010000"],["2024-07-24T00:49:04.010000"],["2024-07-24T00:49:05.010000"],["2024-07-24T00:49:06.010000"],["2024-07-24T00:49:07.010000"],["2024-07-24T00:49:08.010000"],["2024-07-24T00:49:09.010000"],["2024-07-24T00:49:10.010000"],["2024-07-24T00:49:11.010000"],["2024-07-24T00:49:12.010000"],["2024-07-24T00:49:13.010000"],["2024-07-24T00:49:14.010000"],["2024-07-24T00:49:15.010000"],["2024-07-24T00:49:16.010000"],["2024-07-24T00:49:17.010000"],["2024-07-24T00:49:18.010000"],["2024-07-24T00:49:19.010000"],["2024-07-24T00:49:20.010000"],["2024-07-24T00:49:21.010000"],["2024-07-24T00:49:22.010000"],["2024-07-24T00:49:23.010000"],["2024-07-24T00:49:24.010000"],["2024-07-24T00:49:25.010000"],["2024-07-24T00:49:26.010000"],["2024-07-24T00:49:27.010000"],["2024-07-24T00:49:28.010000"],["2024-07-24T00:49:29.010000"],["2024-07-24T00:49:30.010000"],["2024-07-24T00:49:31.010000"],["2024-07-24T00:49:32.010000"],["2024-07-24T00:49:33.010000"],["2024-07-24T00:49:34.010000"],["2024-07-24T00:49:35.010000"],["2024-07-24T00:49:36.010000"],["2024-07-24T00:49:37.010000"],["2024-07-24T00:49:38.010000"],["2024-07-24T00:49:39.010000"],["2024-07-24T00:49:40.010000"],["2024-07-24T00:49:41.010000"],["2024-07-24T00:49:42.010000"],["2024-07-24T00:49:43.010000"],["2024-07-24T00:49:44.010000"],["2024-07-24T00:49:45.010000"],["2024-07-24T00:49:46.010000"],["2024-07-24T00:49:47.010000"],["2024-07-24T00:49:48.010000"],["2024-07-24T00:49:49.010000"],["2024-07-24T00:49:50.010000"],["2024-07-24T00:49:51.010000"],["2024-07-24T00:49:52.010000"],["2024-07-24T00:49:53.010000"],["2024-07-24T00:49:54.010000"],["2024-07-24T00:49:55.010000"],["2024-07-24T00:49:56.010000"],["2024-07-24T00:49:57.010000"],["2024-07-24T00:49:58.010000"],["2024-07-24T00:49:59.010000"],["2024-07-24T00:50:00.010000"],["2024-07-24T00:50:01.010000"],["2024-07-24T00:50:02.010000"],["2024-07-24T00:50:03.010000"],["2024-07-24T00:50:04.010000"],["2024-07-24T00:50:05.010000"],["2024-07-24T00:50:06.010000"],["2024-07-24T00:50:07.010000"],["2024-07-24T00:50:08.010000"],["2024-07-24T00:50:09.010000"],["2024-07-24T00:50:10.010000"],["2024-07-24T00:50:11.010000"],["2024-07-24T00:50:12.010000"],["2024-07-24T00:50:13.010000"],["2024-07-24T00:50:14.010000"],["2024-07-24T00:50:15.010000"],["2024-07-24T00:50:16.010000"],["2024-07-24T00:50:17.010000"],["2024-07-24T00:50:18.010000"],["2024-07-24T00:50:19.010000"],["2024-07-24T00:50:20.010000"],["2024-07-24T00:50:21.010000"],["2024-07-24T00:50:22.010000"],["2024-07-24T00:50:23.010000"],["2024-07-24T00:50:24.010000"],["2024-07-24T00:50:25.010000"],["2024-07-24T00:50:26.010000"],["2024-07-24T00:50:27.010000"],["2024-07-24T00:50:28.010000"],["2024-07-24T00:50:29.010000"],["2024-07-24T00:50:30.010000"],["2024-07-24T00:50:31.010000"],["2024-07-24T00:50:32.010000"],["2024-07-24T00:50:33.010000"],["2024-07-24T00:50:34.010000"],["2024-07-24T00:50:35.010000"],["2024-07-24T00:50:36.010000"],["2024-07-24T00:50:37.010000"],["2024-07-24T00:50:38.010000"],["2024-07-24T00:50:39.010000"],["2024-07-24T00:50:40.010000"],["2024-07-24T00:50:41.010000"],["2024-07-24T00:50:42.010000"],["2024-07-24T00:50:43.010000"],["2024-07-24T00:50:44.010000"],["2024-07-24T00:50:45.010000"],["2024-07-24T00:50:46.010000"],["2024-07-24T00:50:47.010000"],["2024-07-24T00:50:48.010000"],["2024-07-24T00:50:49.010000"],["2024-07-24T00:50:50.010000"],["2024-07-24T00:50:51.010000"],["2024-07-24T00:50:52.010000"],["2024-07-24T00:50:53.010000"],["2024-07-24T00:50:54.010000"],["2024-07-24T00:50:55.010000"],["2024-07-24T00:50:56.010000"],["2024-07-24T00:50:57.010000"],["2024-07-24T00:50:58.010000"],["2024-07-24T00:50:59.010000"],["2024-07-24T00:51:00.010000"],["2024-07-24T00:51:01.010000"],["2024-07-24T00:51:02.010000"],["2024-07-24T00:51:03.010000"],["2024-07-24T00:51:04.010000"],["2024-07-24T00:51:05.010000"],["2024-07-24T00:51:06.010000"],["2024-07-24T00:51:07.010000"],["2024-07-24T00:51:08.010000"],["2024-07-24T00:51:09.010000"],["2024-07-24T00:51:10.010000"],["2024-07-24T00:51:11.010000"],["2024-07-24T00:51:12.010000"],["2024-07-24T00:51:13.010000"],["2024-07-24T00:51:14.010000"],["2024-07-24T00:51:15.010000"],["2024-07-24T00:51:16.010000"],["2024-07-24T00:51:17.010000"],["2024-07-24T00:51:18.010000"],["2024-07-24T00:51:19.010000"],["2024-07-24T00:51:20.010000"],["2024-07-24T00:51:21.010000"],["2024-07-24T00:51:22.010000"],["2024-07-24T00:51:23.010000"],["2024-07-24T00:51:24.010000"],["2024-07-24T00:51:25.010000"],["2024-07-24T00:51:26.010000"],["2024-07-24T00:51:27.010000"],["2024-07-24T00:51:28.010000"],["2024-07-24T00:51:29.010000"],["2024-07-24T00:51:30.010000"],["2024-07-24T00:51:31.010000"],["2024-07-24T00:51:32.010000"],["2024-07-24T00:51:33.010000"],["2024-07-24T00:51:34.010000"],["2024-07-24T00:51:35.010000"],["2024-07-24T00:51:36.010000"],["2024-07-24T00:51:37.010000"],["2024-07-24T00:51:38.010000"],["2024-07-24T00:51:39.010000"],["2024-07-24T00:51:40.010000"],["2024-07-24T00:51:41.010000"],["2024-07-24T00:51:42.010000"],["2024-07-24T00:51:43.010000"],["2024-07-24T00:51:44.010000"],["2024-07-24T00:51:45.010000"],["2024-07-24T00:51:46.010000"],["2024-07-24T00:51:47.010000"],["2024-07-24T00:51:48.010000"],["2024-07-24T00:51:49.010000"],["2024-07-24T00:51:50.010000"],["2024-07-24T00:51:51.010000"],["2024-07-24T00:51:52.010000"],["2024-07-24T00:51:53.010000"],["2024-07-24T00:51:54.010000"],["2024-07-24T00:51:55.010000"],["2024-07-24T00:51:56.010000"],["2024-07-24T00:51:57.010000"],["2024-07-24T00:51:58.010000"],["2024-07-24T00:51:59.010000"],["2024-07-24T00:52:00.010000"],["2024-07-24T00:52:01.010000"],["2024-07-24T00:52:02.010000"],["2024-07-24T00:52:03.010000"],["2024-07-24T00:52:04.010000"],["2024-07-24T00:52:05.010000"],["2024-07-24T00:52:06.010000"],["2024-07-24T00:52:07.010000"],["2024-07-24T00:52:08.010000"],["2024-07-24T00:52:09.010000"],["2024-07-24T00:52:10.010000"],["2024-07-24T00:52:11.010000"],["2024-07-24T00:52:12.010000"],["2024-07-24T00:52:13.010000"],["2024-07-24T00:52:14.010000"],["2024-07-24T00:52:15.010000"],["2024-07-24T00:52:16.010000"],["2024-07-24T00:52:17.010000"],["2024-07-24T00:52:18.010000"],["2024-07-24T00:52:19.010000"],["2024-07-24T00:52:20.010000"],["2024-07-24T00:52:21.010000"],["2024-07-24T00:52:22.010000"],["2024-07-24T00:52:23.010000"],["2024-07-24T00:52:24.010000"],["2024-07-24T00:52:25.010000"],["2024-07-24T00:52:26.010000"],["2024-07-24T00:52:27.010000"],["2024-07-24T00:52:28.010000"],["2024-07-24T00:52:29.010000"],["2024-07-24T00:52:30.010000"],["2024-07-24T00:52:31.010000"],["2024-07-24T00:52:32.010000"],["2024-07-24T00:52:33.010000"],["2024-07-24T00:52:34.010000"],["2024-07-24T00:52:35.010000"],["2024-07-24T00:52:36.010000"],["2024-07-24T00:52:37.010000"],["2024-07-24T00:52:38.010000"],["2024-07-24T00:52:39.010000"],["2024-07-24T00:52:40.010000"],["2024-07-24T00:52:41.010000"],["2024-07-24T00:52:42.010000"],["2024-07-24T00:52:43.010000"],["2024-07-24T00:52:44.010000"],["2024-07-24T00:52:45.010000"],["2024-07-24T00:52:46.010000"],["2024-07-24T00:52:47.010000"],["2024-07-24T00:52:48.010000"],["2024-07-24T00:52:49.010000"],["2024-07-24T00:52:50.010000"],["2024-07-24T00:52:51.010000"],["2024-07-24T00:52:52.010000"],["2024-07-24T00:52:53.010000"],["2024-07-24T00:52:54.010000"],["2024-07-24T00:52:55.010000"],["2024-07-24T00:52:56.010000"],["2024-07-24T00:52:57.010000"],["2024-07-24T00:52:58.010000"],["2024-07-24T00:52:59.010000"],["2024-07-24T00:53:00.010000"],["2024-07-24T00:53:01.010000"],["2024-07-24T00:53:02.010000"],["2024-07-24T00:53:03.010000"],["2024-07-24T00:53:04.010000"],["2024-07-24T00:53:05.010000"],["2024-07-24T00:53:06.010000"],["2024-07-24T00:53:07.010000"],["2024-07-24T00:53:08.010000"],["2024-07-24T00:53:09.010000"],["2024-07-24T00:53:10.010000"],["2024-07-24T00:53:11.010000"],["2024-07-24T00:53:12.010000"],["2024-07-24T00:53:13.010000"],["2024-07-24T00:53:14.010000"],["2024-07-24T00:53:15.010000"],["2024-07-24T00:53:16.010000"],["2024-07-24T00:53:17.010000"],["2024-07-24T00:53:18.010000"],["2024-07-24T00:53:19.010000"],["2024-07-24T00:53:20.010000"],["2024-07-24T00:53:21.010000"],["2024-07-24T00:53:22.010000"],["2024-07-24T00:53:23.010000"],["2024-07-24T00:53:24.010000"],["2024-07-24T00:53:25.010000"],["2024-07-24T00:53:26.010000"],["2024-07-24T00:53:27.010000"],["2024-07-24T00:53:28.010000"],["2024-07-24T00:53:29.010000"],["2024-07-24T00:53:30.010000"],["2024-07-24T00:53:31.010000"],["2024-07-24T00:53:32.010000"],["2024-07-24T00:53:33.010000"],["2024-07-24T00:53:34.010000"],["2024-07-24T00:53:35.010000"],["2024-07-24T00:53:36.010000"],["2024-07-24T00:53:37.010000"],["2024-07-24T00:53:38.010000"],["2024-07-24T00:53:39.010000"],["2024-07-24T00:53:40.010000"],["2024-07-24T00:53:41.010000"],["2024-07-24T00:53:42.010000"],["2024-07-24T00:53:43.010000"],["2024-07-24T00:53:44.010000"],["2024-07-24T00:53:45.010000"],["2024-07-24T00:53:46.010000"],["2024-07-24T00:53:47.010000"],["2024-07-24T00:53:48.010000"],["2024-07-24T00:53:49.010000"],["2024-07-24T00:53:50.010000"],["2024-07-24T00:53:51.010000"],["2024-07-24T00:53:52.010000"],["2024-07-24T00:53:53.010000"],["2024-07-24T00:53:54.010000"],["2024-07-24T00:53:55.010000"],["2024-07-24T00:53:56.010000"],["2024-07-24T00:53:57.010000"],["2024-07-24T00:53:58.010000"],["2024-07-24T00:53:59.010000"],["2024-07-24T00:54:00.010000"],["2024-07-24T00:54:01.010000"],["2024-07-24T00:54:02.010000"],["2024-07-24T00:54:03.010000"],["2024-07-24T00:54:04.010000"],["2024-07-24T00:54:05.010000"],["2024-07-24T00:54:06.010000"],["2024-07-24T00:54:07.010000"],["2024-07-24T00:54:08.010000"],["2024-07-24T00:54:09.010000"],["2024-07-24T00:54:10.010000"],["2024-07-24T00:54:11.010000"],["2024-07-24T00:54:12.010000"],["2024-07-24T00:54:13.010000"],["2024-07-24T00:54:14.010000"],["2024-07-24T00:54:15.010000"],["2024-07-24T00:54:16.010000"],["2024-07-24T00:54:17.010000"],["2024-07-24T00:54:18.010000"],["2024-07-24T00:54:19.010000"],["2024-07-24T00:54:20.010000"],["2024-07-24T00:54:21.010000"],["2024-07-24T00:54:22.010000"],["2024-07-24T00:54:23.010000"],["2024-07-24T00:54:24.010000"],["2024-07-24T00:54:25.010000"],["2024-07-24T00:54:26.010000"],["2024-07-24T00:54:27.010000"],["2024-07-24T00:54:28.010000"],["2024-07-24T00:54:29.010000"],["2024-07-24T00:54:30.010000"],["2024-07-24T00:54:31.010000"],["2024-07-24T00:54:32.010000"],["2024-07-24T00:54:33.010000"],["2024-07-24T00:54:34.010000"],["2024-07-24T00:54:35.010000"],["2024-07-24T00:54:36.010000"],["2024-07-24T00:54:37.010000"],["2024-07-24T00:54:38.010000"],["2024-07-24T00:54:39.010000"],["2024-07-24T00:54:40.010000"],["2024-07-24T00:54:41.010000"],["2024-07-24T00:54:42.010000"],["2024-07-24T00:54:43.010000"],["2024-07-24T00:54:44.010000"],["2024-07-24T00:54:45.010000"],["2024-07-24T00:54:46.010000"],["2024-07-24T00:54:47.010000"],["2024-07-24T00:54:48.010000"],["2024-07-24T00:54:49.010000"],["2024-07-24T00:54:50.010000"],["2024-07-24T00:54:51.010000"],["2024-07-24T00:54:52.010000"],["2024-07-24T00:54:53.010000"],["2024-07-24T00:54:54.010000"],["2024-07-24T00:54:55.010000"],["2024-07-24T00:54:56.010000"],["2024-07-24T00:54:57.010000"],["2024-07-24T00:54:58.010000"],["2024-07-24T00:54:59.010000"],["2024-07-24T00:55:00.010000"],["2024-07-24T00:55:01.010000"],["2024-07-24T00:55:02.010000"],["2024-07-24T00:55:03.010000"],["2024-07-24T00:55:04.010000"],["2024-07-24T00:55:05.010000"],["2024-07-24T00:55:06.010000"],["2024-07-24T00:55:07.010000"],["2024-07-24T00:55:08.010000"],["2024-07-24T00:55:09.010000"],["2024-07-24T00:55:10.010000"],["2024-07-24T00:55:11.010000"],["2024-07-24T00:55:12.010000"],["2024-07-24T00:55:13.010000"],["2024-07-24T00:55:14.010000"],["2024-07-24T00:55:15.010000"],["2024-07-24T00:55:16.010000"],["2024-07-24T00:55:17.010000"],["2024-07-24T00:55:18.010000"],["2024-07-24T00:55:19.010000"],["2024-07-24T00:55:20.010000"],["2024-07-24T00:55:21.010000"],["2024-07-24T00:55:22.010000"],["2024-07-24T00:55:23.010000"],["2024-07-24T00:55:24.010000"],["2024-07-24T00:55:25.010000"],["2024-07-24T00:55:26.010000"],["2024-07-24T00:55:27.010000"],["2024-07-24T00:55:28.010000"],["2024-07-24T00:55:29.010000"],["2024-07-24T00:55:30.010000"],["2024-07-24T00:55:31.010000"],["2024-07-24T00:55:32.010000"],["2024-07-24T00:55:33.010000"],["2024-07-24T00:55:34.010000"],["2024-07-24T00:55:35.010000"],["2024-07-24T00:55:36.010000"],["2024-07-24T00:55:37.010000"],["2024-07-24T00:55:38.010000"],["2024-07-24T00:55:39.010000"],["2024-07-24T00:55:40.010000"],["2024-07-24T00:55:41.010000"],["2024-07-24T00:55:42.010000"],["2024-07-24T00:55:43.010000"],["2024-07-24T00:55:44.010000"],["2024-07-24T00:55:45.010000"],["2024-07-24T00:55:46.010000"],["2024-07-24T00:55:47.010000"],["2024-07-24T00:55:48.010000"],["2024-07-24T00:55:49.010000"],["2024-07-24T00:55:50.010000"],["2024-07-24T00:55:51.010000"],["2024-07-24T00:55:52.010000"],["2024-07-24T00:55:53.010000"],["2024-07-24T00:55:54.010000"],["2024-07-24T00:55:55.010000"],["2024-07-24T00:55:56.010000"],["2024-07-24T00:55:57.010000"],["2024-07-24T00:55:58.010000"],["2024-07-24T00:55:59.010000"],["2024-07-24T00:56:00.010000"],["2024-07-24T00:56:01.010000"],["2024-07-24T00:56:02.010000"],["2024-07-24T00:56:03.010000"],["2024-07-24T00:56:04.010000"],["2024-07-24T00:56:05.010000"],["2024-07-24T00:56:06.010000"],["2024-07-24T00:56:07.010000"],["2024-07-24T00:56:08.010000"],["2024-07-24T00:56:09.010000"],["2024-07-24T00:56:10.010000"],["2024-07-24T00:56:11.010000"],["2024-07-24T00:56:12.010000"],["2024-07-24T00:56:13.010000"],["2024-07-24T00:56:14.010000"],["2024-07-24T00:56:15.010000"],["2024-07-24T00:56:16.010000"],["2024-07-24T00:56:17.010000"],["2024-07-24T00:56:18.010000"],["2024-07-24T00:56:19.010000"],["2024-07-24T00:56:20.010000"],["2024-07-24T00:56:21.010000"],["2024-07-24T00:56:22.010000"],["2024-07-24T00:56:23.010000"],["2024-07-24T00:56:24.010000"],["2024-07-24T00:56:25.010000"],["2024-07-24T00:56:26.010000"],["2024-07-24T00:56:27.010000"],["2024-07-24T00:56:28.010000"],["2024-07-24T00:56:29.010000"],["2024-07-24T00:56:30.010000"],["2024-07-24T00:56:31.010000"],["2024-07-24T00:56:32.010000"],["2024-07-24T00:56:33.010000"],["2024-07-24T00:56:34.010000"],["2024-07-24T00:56:35.010000"],["2024-07-24T00:56:36.010000"],["2024-07-24T00:56:37.010000"],["2024-07-24T00:56:38.010000"],["2024-07-24T00:56:39.010000"],["2024-07-24T00:56:40.010000"],["2024-07-24T00:56:41.010000"],["2024-07-24T00:56:42.010000"],["2024-07-24T00:56:43.010000"],["2024-07-24T00:56:44.010000"],["2024-07-24T00:56:45.010000"],["2024-07-24T00:56:46.010000"],["2024-07-24T00:56:47.010000"],["2024-07-24T00:56:48.010000"],["2024-07-24T00:56:49.010000"],["2024-07-24T00:56:50.010000"],["2024-07-24T00:56:51.010000"],["2024-07-24T00:56:52.010000"],["2024-07-24T00:56:53.010000"],["2024-07-24T00:56:54.010000"],["2024-07-24T00:56:55.010000"],["2024-07-24T00:56:56.010000"],["2024-07-24T00:56:57.010000"],["2024-07-24T00:56:58.010000"],["2024-07-24T00:56:59.010000"],["2024-07-24T00:57:00.010000"],["2024-07-24T00:57:01.010000"],["2024-07-24T00:57:02.010000"],["2024-07-24T00:57:03.010000"],["2024-07-24T00:57:04.010000"],["2024-07-24T00:57:05.010000"],["2024-07-24T00:57:06.010000"],["2024-07-24T00:57:07.010000"],["2024-07-24T00:57:08.010000"],["2024-07-24T00:57:09.010000"],["2024-07-24T00:57:10.010000"],["2024-07-24T00:57:11.010000"],["2024-07-24T00:57:12.010000"],["2024-07-24T00:57:13.010000"],["2024-07-24T00:57:14.010000"],["2024-07-24T00:57:15.010000"],["2024-07-24T00:57:16.010000"],["2024-07-24T00:57:17.010000"],["2024-07-24T00:57:18.010000"],["2024-07-24T00:57:19.010000"],["2024-07-24T00:57:20.010000"],["2024-07-24T00:57:21.010000"],["2024-07-24T00:57:22.010000"],["2024-07-24T00:57:23.010000"],["2024-07-24T00:57:24.010000"],["2024-07-24T00:57:25.010000"],["2024-07-24T00:57:26.010000"],["2024-07-24T00:57:27.010000"],["2024-07-24T00:57:28.010000"],["2024-07-24T00:57:29.010000"],["2024-07-24T00:57:30.010000"],["2024-07-24T00:57:31.010000"],["2024-07-24T00:57:32.010000"],["2024-07-24T00:57:33.010000"],["2024-07-24T00:57:34.010000"],["2024-07-24T00:57:35.010000"],["2024-07-24T00:57:36.010000"],["2024-07-24T00:57:37.010000"],["2024-07-24T00:57:38.010000"],["2024-07-24T00:57:39.010000"],["2024-07-24T00:57:40.010000"],["2024-07-24T00:57:41.010000"],["2024-07-24T00:57:42.010000"],["2024-07-24T00:57:43.010000"],["2024-07-24T00:57:44.010000"],["2024-07-24T00:57:45.010000"],["2024-07-24T00:57:46.010000"],["2024-07-24T00:57:47.010000"],["2024-07-24T00:57:48.010000"],["2024-07-24T00:57:49.010000"],["2024-07-24T00:57:50.010000"],["2024-07-24T00:57:51.010000"],["2024-07-24T00:57:52.010000"],["2024-07-24T00:57:53.010000"],["2024-07-24T00:57:54.010000"],["2024-07-24T00:57:55.010000"],["2024-07-24T00:57:56.010000"],["2024-07-24T00:57:57.010000"],["2024-07-24T00:57:58.010000"],["2024-07-24T00:57:59.010000"],["2024-07-24T00:58:00.010000"],["2024-07-24T00:58:01.010000"],["2024-07-24T00:58:02.010000"],["2024-07-24T00:58:03.010000"],["2024-07-24T00:58:04.010000"],["2024-07-24T00:58:05.010000"],["2024-07-24T00:58:06.010000"],["2024-07-24T00:58:07.010000"],["2024-07-24T00:58:08.010000"],["2024-07-24T00:58:09.010000"],["2024-07-24T00:58:10.010000"],["2024-07-24T00:58:11.010000"],["2024-07-24T00:58:12.010000"],["2024-07-24T00:58:13.010000"],["2024-07-24T00:58:14.010000"],["2024-07-24T00:58:15.010000"],["2024-07-24T00:58:16.010000"],["2024-07-24T00:58:17.010000"],["2024-07-24T00:58:18.010000"],["2024-07-24T00:58:19.010000"],["2024-07-24T00:58:20.010000"],["2024-07-24T00:58:21.010000"],["2024-07-24T00:58:22.010000"],["2024-07-24T00:58:23.010000"],["2024-07-24T00:58:24.010000"],["2024-07-24T00:58:25.010000"],["2024-07-24T00:58:26.010000"],["2024-07-24T00:58:27.010000"],["2024-07-24T00:58:28.010000"],["2024-07-24T00:58:29.010000"],["2024-07-24T00:58:30.010000"],["2024-07-24T00:58:31.010000"],["2024-07-24T00:58:32.010000"],["2024-07-24T00:58:33.010000"],["2024-07-24T00:58:34.010000"],["2024-07-24T00:58:35.010000"],["2024-07-24T00:58:36.010000"],["2024-07-24T00:58:37.010000"],["2024-07-24T00:58:38.010000"],["2024-07-24T00:58:39.010000"],["2024-07-24T00:58:40.010000"],["2024-07-24T00:58:41.010000"],["2024-07-24T00:58:42.010000"],["2024-07-24T00:58:43.010000"],["2024-07-24T00:58:44.010000"],["2024-07-24T00:58:45.010000"],["2024-07-24T00:58:46.010000"],["2024-07-24T00:58:47.010000"],["2024-07-24T00:58:48.010000"],["2024-07-24T00:58:49.010000"],["2024-07-24T00:58:50.010000"],["2024-07-24T00:58:51.010000"],["2024-07-24T00:58:52.010000"],["2024-07-24T00:58:53.010000"],["2024-07-24T00:58:54.010000"],["2024-07-24T00:58:55.010000"],["2024-07-24T00:58:56.010000"],["2024-07-24T00:58:57.010000"],["2024-07-24T00:58:58.010000"],["2024-07-24T00:58:59.010000"],["2024-07-24T00:59:00.010000"],["2024-07-24T00:59:01.010000"],["2024-07-24T00:59:02.010000"],["2024-07-24T00:59:03.010000"],["2024-07-24T00:59:04.010000"],["2024-07-24T00:59:05.010000"],["2024-07-24T00:59:06.010000"],["2024-07-24T00:59:07.010000"],["2024-07-24T00:59:08.010000"],["2024-07-24T00:59:09.010000"],["2024-07-24T00:59:10.010000"],["2024-07-24T00:59:11.010000"],["2024-07-24T00:59:12.010000"],["2024-07-24T00:59:13.010000"],["2024-07-24T00:59:14.010000"],["2024-07-24T00:59:15.010000"],["2024-07-24T00:59:16.010000"],["2024-07-24T00:59:17.010000"],["2024-07-24T00:59:18.010000"],["2024-07-24T00:59:19.010000"],["2024-07-24T00:59:20.010000"],["2024-07-24T00:59:21.010000"],["2024-07-24T00:59:22.010000"],["2024-07-24T00:59:23.010000"],["2024-07-24T00:59:24.010000"],["2024-07-24T00:59:25.010000"],["2024-07-24T00:59:26.010000"],["2024-07-24T00:59:27.010000"],["2024-07-24T00:59:28.010000"],["2024-07-24T00:59:29.010000"],["2024-07-24T00:59:30.010000"],["2024-07-24T00:59:31.010000"],["2024-07-24T00:59:32.010000"],["2024-07-24T00:59:33.010000"],["2024-07-24T00:59:34.010000"],["2024-07-24T00:59:35.010000"],["2024-07-24T00:59:36.010000"],["2024-07-24T00:59:37.010000"],["2024-07-24T00:59:38.010000"],["2024-07-24T00:59:39.010000"],["2024-07-24T00:59:40.010000"],["2024-07-24T00:59:41.010000"],["2024-07-24T00:59:42.010000"],["2024-07-24T00:59:43.010000"],["2024-07-24T00:59:44.010000"],["2024-07-24T00:59:45.010000"],["2024-07-24T00:59:46.010000"],["2024-07-24T00:59:47.010000"],["2024-07-24T00:59:48.010000"],["2024-07-24T00:59:49.010000"],["2024-07-24T00:59:50.010000"],["2024-07-24T00:59:51.010000"],["2024-07-24T00:59:52.010000"],["2024-07-24T00:59:53.010000"],["2024-07-24T00:59:54.010000"],["2024-07-24T00:59:55.010000"],["2024-07-24T00:59:56.010000"],["2024-07-24T00:59:57.010000"],["2024-07-24T00:59:58.010000"],["2024-07-24T00:59:59.010000"],["2024-07-24T01:00:00.010000"],["2024-07-24T01:00:01.010000"],["2024-07-24T01:00:02.010000"],["2024-07-24T01:00:03.010000"],["2024-07-24T01:00:04.010000"],["2024-07-24T01:00:05.010000"],["2024-07-24T01:00:06.010000"],["2024-07-24T01:00:07.010000"],["2024-07-24T01:00:08.010000"],["2024-07-24T01:00:09.010000"],["2024-07-24T01:00:10.010000"],["2024-07-24T01:00:11.010000"],["2024-07-24T01:00:12.010000"],["2024-07-24T01:00:13.010000"],["2024-07-24T01:00:14.010000"],["2024-07-24T01:00:15.010000"],["2024-07-24T01:00:16.010000"],["2024-07-24T01:00:17.010000"],["2024-07-24T01:00:18.010000"],["2024-07-24T01:00:19.010000"],["2024-07-24T01:00:20.010000"],["2024-07-24T01:00:21.010000"],["2024-07-24T01:00:22.010000"],["2024-07-24T01:00:23.010000"],["2024-07-24T01:00:24.010000"],["2024-07-24T01:00:25.010000"],["2024-07-24T01:00:26.010000"],["2024-07-24T01:00:27.010000"],["2024-07-24T01:00:28.010000"],["2024-07-24T01:00:29.010000"],["2024-07-24T01:00:30.010000"],["2024-07-24T01:00:31.010000"],["2024-07-24T01:00:32.010000"],["2024-07-24T01:00:33.010000"],["2024-07-24T01:00:34.010000"],["2024-07-24T01:00:35.010000"],["2024-07-24T01:00:36.010000"],["2024-07-24T01:00:37.010000"],["2024-07-24T01:00:38.010000"],["2024-07-24T01:00:39.010000"],["2024-07-24T01:00:40.010000"],["2024-07-24T01:00:41.010000"],["2024-07-24T01:00:42.010000"],["2024-07-24T01:00:43.010000"],["2024-07-24T01:00:44.010000"],["2024-07-24T01:00:45.010000"],["2024-07-24T01:00:46.010000"],["2024-07-24T01:00:47.010000"],["2024-07-24T01:00:48.010000"],["2024-07-24T01:00:49.010000"],["2024-07-24T01:00:50.010000"],["2024-07-24T01:00:51.010000"],["2024-07-24T01:00:52.010000"],["2024-07-24T01:00:53.010000"],["2024-07-24T01:00:54.010000"],["2024-07-24T01:00:55.010000"],["2024-07-24T01:00:56.010000"],["2024-07-24T01:00:57.010000"],["2024-07-24T01:00:58.010000"],["2024-07-24T01:00:59.010000"],["2024-07-24T01:01:00.010000"],["2024-07-24T01:01:01.010000"],["2024-07-24T01:01:02.010000"],["2024-07-24T01:01:03.010000"],["2024-07-24T01:01:04.010000"],["2024-07-24T01:01:05.010000"],["2024-07-24T01:01:06.010000"],["2024-07-24T01:01:07.010000"],["2024-07-24T01:01:08.010000"],["2024-07-24T01:01:09.010000"],["2024-07-24T01:01:10.010000"],["2024-07-24T01:01:11.010000"],["2024-07-24T01:01:12.010000"],["2024-07-24T01:01:13.010000"],["2024-07-24T01:01:14.010000"],["2024-07-24T01:01:15.010000"],["2024-07-24T01:01:16.010000"],["2024-07-24T01:01:17.010000"],["2024-07-24T01:01:18.010000"],["2024-07-24T01:01:19.010000"],["2024-07-24T01:01:20.010000"],["2024-07-24T01:01:21.010000"],["2024-07-24T01:01:22.010000"],["2024-07-24T01:01:23.010000"],["2024-07-24T01:01:24.010000"],["2024-07-24T01:01:25.010000"],["2024-07-24T01:01:26.010000"],["2024-07-24T01:01:27.010000"],["2024-07-24T01:01:28.010000"],["2024-07-24T01:01:29.010000"],["2024-07-24T01:01:30.010000"],["2024-07-24T01:01:31.010000"],["2024-07-24T01:01:32.010000"],["2024-07-24T01:01:33.010000"],["2024-07-24T01:01:34.010000"],["2024-07-24T01:01:35.010000"],["2024-07-24T01:01:36.010000"],["2024-07-24T01:01:37.010000"],["2024-07-24T01:01:38.010000"],["2024-07-24T01:01:39.010000"],["2024-07-24T01:01:40.010000"],["2024-07-24T01:01:41.010000"],["2024-07-24T01:01:42.010000"],["2024-07-24T01:01:43.010000"],["2024-07-24T01:01:44.010000"],["2024-07-24T01:01:45.010000"],["2024-07-24T01:01:46.010000"],["2024-07-24T01:01:47.010000"],["2024-07-24T01:01:48.010000"],["2024-07-24T01:01:49.010000"],["2024-07-24T01:01:50.010000"],["2024-07-24T01:01:51.010000"],["2024-07-24T01:01:52.010000"],["2024-07-24T01:01:53.010000"],["2024-07-24T01:01:54.010000"],["2024-07-24T01:01:55.010000"],["2024-07-24T01:01:56.010000"],["2024-07-24T01:01:57.010000"],["2024-07-24T01:01:58.010000"],["2024-07-24T01:01:59.010000"],["2024-07-24T01:02:00.010000"],["2024-07-24T01:02:01.010000"],["2024-07-24T01:02:02.010000"],["2024-07-24T01:02:03.010000"],["2024-07-24T01:02:04.010000"],["2024-07-24T01:02:05.010000"],["2024-07-24T01:02:06.010000"],["2024-07-24T01:02:07.010000"],["2024-07-24T01:02:08.010000"],["2024-07-24T01:02:09.010000"],["2024-07-24T01:02:10.010000"],["2024-07-24T01:02:11.010000"],["2024-07-24T01:02:12.010000"],["2024-07-24T01:02:13.010000"],["2024-07-24T01:02:14.010000"],["2024-07-24T01:02:15.010000"],["2024-07-24T01:02:16.010000"],["2024-07-24T01:02:17.010000"],["2024-07-24T01:02:18.010000"],["2024-07-24T01:02:19.010000"],["2024-07-24T01:02:20.010000"],["2024-07-24T01:02:21.010000"],["2024-07-24T01:02:22.010000"],["2024-07-24T01:02:23.010000"],["2024-07-24T01:02:24.010000"],["2024-07-24T01:02:25.010000"],["2024-07-24T01:02:26.010000"],["2024-07-24T01:02:27.010000"],["2024-07-24T01:02:28.010000"],["2024-07-24T01:02:29.010000"],["2024-07-24T01:02:30.010000"],["2024-07-24T01:02:31.010000"],["2024-07-24T01:02:32.010000"],["2024-07-24T01:02:33.010000"],["2024-07-24T01:02:34.010000"],["2024-07-24T01:02:35.010000"],["2024-07-24T01:02:36.010000"],["2024-07-24T01:02:37.010000"],["2024-07-24T01:02:38.010000"],["2024-07-24T01:02:39.010000"],["2024-07-24T01:02:40.010000"],["2024-07-24T01:02:41.010000"],["2024-07-24T01:02:42.010000"],["2024-07-24T01:02:43.010000"],["2024-07-24T01:02:44.010000"],["2024-07-24T01:02:45.010000"],["2024-07-24T01:02:46.010000"],["2024-07-24T01:02:47.010000"],["2024-07-24T01:02:48.010000"],["2024-07-24T01:02:49.010000"],["2024-07-24T01:02:50.010000"],["2024-07-24T01:02:51.010000"],["2024-07-24T01:02:52.010000"],["2024-07-24T01:02:53.010000"],["2024-07-24T01:02:54.010000"],["2024-07-24T01:02:55.010000"],["2024-07-24T01:02:56.010000"],["2024-07-24T01:02:57.010000"],["2024-07-24T01:02:58.010000"],["2024-07-24T01:02:59.010000"],["2024-07-24T01:03:00.010000"],["2024-07-24T01:03:01.010000"],["2024-07-24T01:03:02.010000"],["2024-07-24T01:03:03.010000"],["2024-07-24T01:03:04.010000"],["2024-07-24T01:03:05.010000"],["2024-07-24T01:03:06.010000"],["2024-07-24T01:03:07.010000"],["2024-07-24T01:03:08.010000"],["2024-07-24T01:03:09.010000"],["2024-07-24T01:03:10.010000"],["2024-07-24T01:03:11.010000"],["2024-07-24T01:03:12.010000"],["2024-07-24T01:03:13.010000"],["2024-07-24T01:03:14.010000"],["2024-07-24T01:03:15.010000"],["2024-07-24T01:03:16.010000"],["2024-07-24T01:03:17.010000"],["2024-07-24T01:03:18.010000"],["2024-07-24T01:03:19.010000"],["2024-07-24T01:03:20.010000"],["2024-07-24T01:03:21.010000"],["2024-07-24T01:03:22.010000"],["2024-07-24T01:03:23.010000"],["2024-07-24T01:03:24.010000"],["2024-07-24T01:03:25.010000"],["2024-07-24T01:03:26.010000"],["2024-07-24T01:03:27.010000"],["2024-07-24T01:03:28.010000"],["2024-07-24T01:03:29.010000"],["2024-07-24T01:03:30.010000"],["2024-07-24T01:03:31.010000"],["2024-07-24T01:03:32.010000"],["2024-07-24T01:03:33.010000"],["2024-07-24T01:03:34.010000"],["2024-07-24T01:03:35.010000"],["2024-07-24T01:03:36.010000"],["2024-07-24T01:03:37.010000"],["2024-07-24T01:03:38.010000"],["2024-07-24T01:03:39.010000"],["2024-07-24T01:03:40.010000"],["2024-07-24T01:03:41.010000"],["2024-07-24T01:03:42.010000"],["2024-07-24T01:03:43.010000"],["2024-07-24T01:03:44.010000"],["2024-07-24T01:03:45.010000"],["2024-07-24T01:03:46.010000"],["2024-07-24T01:03:47.010000"],["2024-07-24T01:03:48.010000"],["2024-07-24T01:03:49.010000"],["2024-07-24T01:03:50.010000"],["2024-07-24T01:03:51.010000"],["2024-07-24T01:03:52.010000"],["2024-07-24T01:03:53.010000"],["2024-07-24T01:03:54.010000"],["2024-07-24T01:03:55.010000"],["2024-07-24T01:03:56.010000"],["2024-07-24T01:03:57.010000"],["2024-07-24T01:03:58.010000"],["2024-07-24T01:03:59.010000"],["2024-07-24T01:04:00.010000"],["2024-07-24T01:04:01.010000"],["2024-07-24T01:04:02.010000"],["2024-07-24T01:04:03.010000"],["2024-07-24T01:04:04.010000"],["2024-07-24T01:04:05.010000"],["2024-07-24T01:04:06.010000"],["2024-07-24T01:04:07.010000"],["2024-07-24T01:04:08.010000"],["2024-07-24T01:04:09.010000"],["2024-07-24T01:04:10.010000"],["2024-07-24T01:04:11.010000"],["2024-07-24T01:04:12.010000"],["2024-07-24T01:04:13.010000"],["2024-07-24T01:04:14.010000"],["2024-07-24T01:04:15.010000"],["2024-07-24T01:04:16.010000"],["2024-07-24T01:04:17.010000"],["2024-07-24T01:04:18.010000"],["2024-07-24T01:04:19.010000"],["2024-07-24T01:04:20.010000"],["2024-07-24T01:04:21.010000"],["2024-07-24T01:04:22.010000"],["2024-07-24T01:04:23.010000"],["2024-07-24T01:04:24.010000"],["2024-07-24T01:04:25.010000"],["2024-07-24T01:04:26.010000"],["2024-07-24T01:04:27.010000"],["2024-07-24T01:04:28.010000"],["2024-07-24T01:04:29.010000"],["2024-07-24T01:04:30.010000"],["2024-07-24T01:04:31.010000"],["2024-07-24T01:04:32.010000"],["2024-07-24T01:04:33.010000"],["2024-07-24T01:04:34.010000"],["2024-07-24T01:04:35.010000"],["2024-07-24T01:04:36.010000"],["2024-07-24T01:04:37.010000"],["2024-07-24T01:04:38.010000"],["2024-07-24T01:04:39.010000"],["2024-07-24T01:04:40.010000"],["2024-07-24T01:04:41.010000"],["2024-07-24T01:04:42.010000"],["2024-07-24T01:04:43.010000"],["2024-07-24T01:04:44.010000"],["2024-07-24T01:04:45.010000"],["2024-07-24T01:04:46.010000"],["2024-07-24T01:04:47.010000"],["2024-07-24T01:04:48.010000"],["2024-07-24T01:04:49.010000"],["2024-07-24T01:04:50.010000"],["2024-07-24T01:04:51.010000"],["2024-07-24T01:04:52.010000"],["2024-07-24T01:04:53.010000"],["2024-07-24T01:04:54.010000"],["2024-07-24T01:04:55.010000"],["2024-07-24T01:04:56.010000"],["2024-07-24T01:04:57.010000"],["2024-07-24T01:04:58.010000"],["2024-07-24T01:04:59.010000"],["2024-07-24T01:05:00.010000"],["2024-07-24T01:05:01.010000"],["2024-07-24T01:05:02.010000"],["2024-07-24T01:05:03.010000"],["2024-07-24T01:05:04.010000"],["2024-07-24T01:05:05.010000"],["2024-07-24T01:05:06.010000"],["2024-07-24T01:05:07.010000"],["2024-07-24T01:05:08.010000"],["2024-07-24T01:05:09.010000"],["2024-07-24T01:05:10.010000"],["2024-07-24T01:05:11.010000"],["2024-07-24T01:05:12.010000"],["2024-07-24T01:05:13.010000"],["2024-07-24T01:05:14.010000"],["2024-07-24T01:05:15.010000"],["2024-07-24T01:05:16.010000"],["2024-07-24T01:05:17.010000"],["2024-07-24T01:05:18.010000"],["2024-07-24T01:05:19.010000"],["2024-07-24T01:05:20.010000"],["2024-07-24T01:05:21.010000"],["2024-07-24T01:05:22.010000"],["2024-07-24T01:05:23.010000"],["2024-07-24T01:05:24.010000"],["2024-07-24T01:05:25.010000"],["2024-07-24T01:05:26.010000"],["2024-07-24T01:05:27.010000"],["2024-07-24T01:05:28.010000"],["2024-07-24T01:05:29.010000"],["2024-07-24T01:05:30.010000"],["2024-07-24T01:05:31.010000"],["2024-07-24T01:05:32.010000"],["2024-07-24T01:05:33.010000"],["2024-07-24T01:05:34.010000"],["2024-07-24T01:05:35.010000"],["2024-07-24T01:05:36.010000"],["2024-07-24T01:05:37.010000"],["2024-07-24T01:05:38.010000"],["2024-07-24T01:05:39.010000"],["2024-07-24T01:05:40.010000"],["2024-07-24T01:05:41.010000"],["2024-07-24T01:05:42.010000"],["2024-07-24T01:05:43.010000"],["2024-07-24T01:05:44.010000"],["2024-07-24T01:05:45.010000"],["2024-07-24T01:05:46.010000"],["2024-07-24T01:05:47.010000"],["2024-07-24T01:05:48.010000"],["2024-07-24T01:05:49.010000"],["2024-07-24T01:05:50.010000"],["2024-07-24T01:05:51.010000"],["2024-07-24T01:05:52.010000"],["2024-07-24T01:05:53.010000"],["2024-07-24T01:05:54.010000"],["2024-07-24T01:05:55.010000"],["2024-07-24T01:05:56.010000"],["2024-07-24T01:05:57.010000"],["2024-07-24T01:05:58.010000"],["2024-07-24T01:05:59.010000"],["2024-07-24T01:06:00.010000"],["2024-07-24T01:06:01.010000"],["2024-07-24T01:06:02.010000"],["2024-07-24T01:06:03.010000"],["2024-07-24T01:06:04.010000"],["2024-07-24T01:06:05.010000"],["2024-07-24T01:06:06.010000"],["2024-07-24T01:06:07.010000"],["2024-07-24T01:06:08.010000"],["2024-07-24T01:06:09.010000"],["2024-07-24T01:06:10.010000"],["2024-07-24T01:06:11.010000"],["2024-07-24T01:06:12.010000"],["2024-07-24T01:06:13.010000"],["2024-07-24T01:06:14.010000"],["2024-07-24T01:06:15.010000"],["2024-07-24T01:06:16.010000"],["2024-07-24T01:06:17.010000"],["2024-07-24T01:06:18.010000"],["2024-07-24T01:06:19.010000"],["2024-07-24T01:06:20.010000"],["2024-07-24T01:06:21.010000"],["2024-07-24T01:06:22.010000"],["2024-07-24T01:06:23.010000"],["2024-07-24T01:06:24.010000"],["2024-07-24T01:06:25.010000"],["2024-07-24T01:06:26.010000"],["2024-07-24T01:06:27.010000"],["2024-07-24T01:06:28.010000"],["2024-07-24T01:06:29.010000"],["2024-07-24T01:06:30.010000"],["2024-07-24T01:06:31.010000"],["2024-07-24T01:06:32.010000"],["2024-07-24T01:06:33.010000"],["2024-07-24T01:06:34.010000"],["2024-07-24T01:06:35.010000"],["2024-07-24T01:06:36.010000"],["2024-07-24T01:06:37.010000"],["2024-07-24T01:06:38.010000"],["2024-07-24T01:06:39.010000"],["2024-07-24T01:06:40.010000"],["2024-07-24T01:06:41.010000"],["2024-07-24T01:06:42.010000"],["2024-07-24T01:06:43.010000"],["2024-07-24T01:06:44.010000"],["2024-07-24T01:06:45.010000"],["2024-07-24T01:06:46.010000"],["2024-07-24T01:06:47.010000"],["2024-07-24T01:06:48.010000"],["2024-07-24T01:06:49.010000"],["2024-07-24T01:06:50.010000"],["2024-07-24T01:06:51.010000"],["2024-07-24T01:06:52.010000"],["2024-07-24T01:06:53.010000"],["2024-07-24T01:06:54.010000"],["2024-07-24T01:06:55.010000"],["2024-07-24T01:06:56.010000"],["2024-07-24T01:06:57.010000"],["2024-07-24T01:06:58.010000"],["2024-07-24T01:06:59.010000"],["2024-07-24T01:07:00.010000"],["2024-07-24T01:07:01.010000"],["2024-07-24T01:07:02.010000"],["2024-07-24T01:07:03.010000"],["2024-07-24T01:07:04.010000"],["2024-07-24T01:07:05.010000"],["2024-07-24T01:07:06.010000"],["2024-07-24T01:07:07.010000"],["2024-07-24T01:07:08.010000"],["2024-07-24T01:07:09.010000"],["2024-07-24T01:07:10.010000"],["2024-07-24T01:07:11.010000"],["2024-07-24T01:07:12.010000"],["2024-07-24T01:07:13.010000"],["2024-07-24T01:07:14.010000"],["2024-07-24T01:07:15.010000"],["2024-07-24T01:07:16.010000"],["2024-07-24T01:07:17.010000"],["2024-07-24T01:07:18.010000"],["2024-07-24T01:07:19.010000"],["2024-07-24T01:07:20.010000"],["2024-07-24T01:07:21.010000"],["2024-07-24T01:07:22.010000"],["2024-07-24T01:07:23.010000"],["2024-07-24T01:07:24.010000"],["2024-07-24T01:07:25.010000"],["2024-07-24T01:07:26.010000"],["2024-07-24T01:07:27.010000"],["2024-07-24T01:07:28.010000"],["2024-07-24T01:07:29.010000"],["2024-07-24T01:07:30.010000"],["2024-07-24T01:07:31.010000"],["2024-07-24T01:07:32.010000"],["2024-07-24T01:07:33.010000"],["2024-07-24T01:07:34.010000"],["2024-07-24T01:07:35.010000"],["2024-07-24T01:07:36.010000"],["2024-07-24T01:07:37.010000"],["2024-07-24T01:07:38.010000"],["2024-07-24T01:07:39.010000"],["2024-07-24T01:07:40.010000"],["2024-07-24T01:07:41.010000"],["2024-07-24T01:07:42.010000"],["2024-07-24T01:07:43.010000"],["2024-07-24T01:07:44.010000"],["2024-07-24T01:07:45.010000"],["2024-07-24T01:07:46.010000"],["2024-07-24T01:07:47.010000"],["2024-07-24T01:07:48.010000"],["2024-07-24T01:07:49.010000"],["2024-07-24T01:07:50.010000"],["2024-07-24T01:07:51.010000"],["2024-07-24T01:07:52.010000"],["2024-07-24T01:07:53.010000"],["2024-07-24T01:07:54.010000"],["2024-07-24T01:07:55.010000"],["2024-07-24T01:07:56.010000"],["2024-07-24T01:07:57.010000"],["2024-07-24T01:07:58.010000"],["2024-07-24T01:07:59.010000"],["2024-07-24T01:08:00.010000"],["2024-07-24T01:08:01.010000"],["2024-07-24T01:08:02.010000"],["2024-07-24T01:08:03.010000"],["2024-07-24T01:08:04.010000"],["2024-07-24T01:08:05.010000"],["2024-07-24T01:08:06.010000"],["2024-07-24T01:08:07.010000"],["2024-07-24T01:08:08.010000"],["2024-07-24T01:08:09.010000"],["2024-07-24T01:08:10.010000"],["2024-07-24T01:08:11.010000"],["2024-07-24T01:08:12.010000"],["2024-07-24T01:08:13.010000"],["2024-07-24T01:08:14.010000"],["2024-07-24T01:08:15.010000"],["2024-07-24T01:08:16.010000"],["2024-07-24T01:08:17.010000"],["2024-07-24T01:08:18.010000"],["2024-07-24T01:08:19.010000"],["2024-07-24T01:08:20.010000"],["2024-07-24T01:08:21.010000"],["2024-07-24T01:08:22.010000"],["2024-07-24T01:08:23.010000"],["2024-07-24T01:08:24.010000"],["2024-07-24T01:08:25.010000"],["2024-07-24T01:08:26.010000"],["2024-07-24T01:08:27.010000"],["2024-07-24T01:08:28.010000"],["2024-07-24T01:08:29.010000"],["2024-07-24T01:08:30.010000"],["2024-07-24T01:08:31.010000"],["2024-07-24T01:08:32.010000"],["2024-07-24T01:08:33.010000"],["2024-07-24T01:08:34.010000"],["2024-07-24T01:08:35.010000"],["2024-07-24T01:08:36.010000"],["2024-07-24T01:08:37.010000"],["2024-07-24T01:08:38.010000"],["2024-07-24T01:08:39.010000"],["2024-07-24T01:08:40.010000"],["2024-07-24T01:08:41.010000"],["2024-07-24T01:08:42.010000"],["2024-07-24T01:08:43.010000"],["2024-07-24T01:08:44.010000"],["2024-07-24T01:08:45.010000"],["2024-07-24T01:08:46.010000"],["2024-07-24T01:08:47.010000"],["2024-07-24T01:08:48.010000"],["2024-07-24T01:08:49.010000"],["2024-07-24T01:08:50.010000"],["2024-07-24T01:08:51.010000"],["2024-07-24T01:08:52.010000"],["2024-07-24T01:08:53.010000"],["2024-07-24T01:08:54.010000"],["2024-07-24T01:08:55.010000"],["2024-07-24T01:08:56.010000"],["2024-07-24T01:08:57.010000"],["2024-07-24T01:08:58.010000"],["2024-07-24T01:08:59.010000"],["2024-07-24T01:09:00.010000"],["2024-07-24T01:09:01.010000"],["2024-07-24T01:09:02.010000"],["2024-07-24T01:09:03.010000"],["2024-07-24T01:09:04.010000"],["2024-07-24T01:09:05.010000"],["2024-07-24T01:09:06.010000"],["2024-07-24T01:09:07.010000"],["2024-07-24T01:09:08.010000"],["2024-07-24T01:09:09.010000"],["2024-07-24T01:09:10.010000"],["2024-07-24T01:09:11.010000"],["2024-07-24T01:09:12.010000"],["2024-07-24T01:09:13.010000"],["2024-07-24T01:09:14.010000"],["2024-07-24T01:09:15.010000"],["2024-07-24T01:09:16.010000"],["2024-07-24T01:09:17.010000"],["2024-07-24T01:09:18.010000"],["2024-07-24T01:09:19.010000"],["2024-07-24T01:09:20.010000"],["2024-07-24T01:09:21.010000"],["2024-07-24T01:09:22.010000"],["2024-07-24T01:09:23.010000"],["2024-07-24T01:09:24.010000"],["2024-07-24T01:09:25.010000"],["2024-07-24T01:09:26.010000"],["2024-07-24T01:09:27.010000"],["2024-07-24T01:09:28.010000"],["2024-07-24T01:09:29.010000"],["2024-07-24T01:09:30.010000"],["2024-07-24T01:09:31.010000"],["2024-07-24T01:09:32.010000"],["2024-07-24T01:09:33.010000"],["2024-07-24T01:09:34.010000"],["2024-07-24T01:09:35.010000"],["2024-07-24T01:09:36.010000"],["2024-07-24T01:09:37.010000"],["2024-07-24T01:09:38.010000"],["2024-07-24T01:09:39.010000"],["2024-07-24T01:09:40.010000"],["2024-07-24T01:09:41.010000"],["2024-07-24T01:09:42.010000"],["2024-07-24T01:09:43.010000"],["2024-07-24T01:09:44.010000"],["2024-07-24T01:09:45.010000"],["2024-07-24T01:09:46.010000"],["2024-07-24T01:09:47.010000"],["2024-07-24T01:09:48.010000"],["2024-07-24T01:09:49.010000"],["2024-07-24T01:09:50.010000"],["2024-07-24T01:09:51.010000"],["2024-07-24T01:09:52.010000"],["2024-07-24T01:09:53.010000"],["2024-07-24T01:09:54.010000"],["2024-07-24T01:09:55.010000"],["2024-07-24T01:09:56.010000"],["2024-07-24T01:09:57.010000"],["2024-07-24T01:09:58.010000"],["2024-07-24T01:09:59.010000"],["2024-07-24T01:10:00.010000"],["2024-07-24T01:10:01.010000"],["2024-07-24T01:10:02.010000"],["2024-07-24T01:10:03.010000"],["2024-07-24T01:10:04.010000"],["2024-07-24T01:10:05.010000"],["2024-07-24T01:10:06.010000"],["2024-07-24T01:10:07.010000"],["2024-07-24T01:10:08.010000"],["2024-07-24T01:10:09.010000"],["2024-07-24T01:10:10.010000"],["2024-07-24T01:10:11.010000"],["2024-07-24T01:10:12.010000"],["2024-07-24T01:10:13.010000"],["2024-07-24T01:10:14.010000"],["2024-07-24T01:10:15.010000"],["2024-07-24T01:10:16.010000"],["2024-07-24T01:10:17.010000"],["2024-07-24T01:10:18.010000"],["2024-07-24T01:10:19.010000"],["2024-07-24T01:10:20.010000"],["2024-07-24T01:10:21.010000"],["2024-07-24T01:10:22.010000"],["2024-07-24T01:10:23.010000"],["2024-07-24T01:10:24.010000"],["2024-07-24T01:10:25.010000"],["2024-07-24T01:10:26.010000"],["2024-07-24T01:10:27.010000"],["2024-07-24T01:10:28.010000"],["2024-07-24T01:10:29.010000"],["2024-07-24T01:10:30.010000"],["2024-07-24T01:10:31.010000"],["2024-07-24T01:10:32.010000"],["2024-07-24T01:10:33.010000"],["2024-07-24T01:10:34.010000"],["2024-07-24T01:10:35.010000"],["2024-07-24T01:10:36.010000"],["2024-07-24T01:10:37.010000"],["2024-07-24T01:10:38.010000"],["2024-07-24T01:10:39.010000"],["2024-07-24T01:10:40.010000"],["2024-07-24T01:10:41.010000"],["2024-07-24T01:10:42.010000"],["2024-07-24T01:10:43.010000"],["2024-07-24T01:10:44.010000"],["2024-07-24T01:10:45.010000"],["2024-07-24T01:10:46.010000"],["2024-07-24T01:10:47.010000"],["2024-07-24T01:10:48.010000"],["2024-07-24T01:10:49.010000"],["2024-07-24T01:10:50.010000"],["2024-07-24T01:10:51.010000"],["2024-07-24T01:10:52.010000"],["2024-07-24T01:10:53.010000"],["2024-07-24T01:10:54.010000"],["2024-07-24T01:10:55.010000"],["2024-07-24T01:10:56.010000"],["2024-07-24T01:10:57.010000"],["2024-07-24T01:10:58.010000"],["2024-07-24T01:10:59.010000"],["2024-07-24T01:11:00.010000"],["2024-07-24T01:11:01.010000"],["2024-07-24T01:11:02.010000"],["2024-07-24T01:11:03.010000"],["2024-07-24T01:11:04.010000"],["2024-07-24T01:11:05.010000"],["2024-07-24T01:11:06.010000"],["2024-07-24T01:11:07.010000"],["2024-07-24T01:11:08.010000"],["2024-07-24T01:11:09.010000"],["2024-07-24T01:11:10.010000"],["2024-07-24T01:11:11.010000"],["2024-07-24T01:11:12.010000"],["2024-07-24T01:11:13.010000"],["2024-07-24T01:11:14.010000"],["2024-07-24T01:11:15.010000"],["2024-07-24T01:11:16.010000"],["2024-07-24T01:11:17.010000"],["2024-07-24T01:11:18.010000"],["2024-07-24T01:11:19.010000"],["2024-07-24T01:11:20.010000"],["2024-07-24T01:11:21.010000"],["2024-07-24T01:11:22.010000"],["2024-07-24T01:11:23.010000"],["2024-07-24T01:11:24.010000"],["2024-07-24T01:11:25.010000"],["2024-07-24T01:11:26.010000"],["2024-07-24T01:11:27.010000"],["2024-07-24T01:11:28.010000"],["2024-07-24T01:11:29.010000"],["2024-07-24T01:11:30.010000"],["2024-07-24T01:11:31.010000"],["2024-07-24T01:11:32.010000"],["2024-07-24T01:11:33.010000"],["2024-07-24T01:11:34.010000"],["2024-07-24T01:11:35.010000"],["2024-07-24T01:11:36.010000"],["2024-07-24T01:11:37.010000"],["2024-07-24T01:11:38.010000"],["2024-07-24T01:11:39.010000"],["2024-07-24T01:11:40.010000"],["2024-07-24T01:11:41.010000"],["2024-07-24T01:11:42.010000"],["2024-07-24T01:11:43.010000"],["2024-07-24T01:11:44.010000"],["2024-07-24T01:11:45.010000"],["2024-07-24T01:11:46.010000"],["2024-07-24T01:11:47.010000"],["2024-07-24T01:11:48.010000"],["2024-07-24T01:11:49.010000"],["2024-07-24T01:11:50.010000"],["2024-07-24T01:11:51.010000"],["2024-07-24T01:11:52.010000"],["2024-07-24T01:11:53.010000"],["2024-07-24T01:11:54.010000"],["2024-07-24T01:11:55.010000"],["2024-07-24T01:11:56.010000"],["2024-07-24T01:11:57.010000"],["2024-07-24T01:11:58.010000"],["2024-07-24T01:11:59.010000"],["2024-07-24T01:12:00.010000"],["2024-07-24T01:12:01.010000"],["2024-07-24T01:12:02.010000"],["2024-07-24T01:12:03.010000"],["2024-07-24T01:12:04.010000"],["2024-07-24T01:12:05.010000"],["2024-07-24T01:12:06.010000"],["2024-07-24T01:12:07.010000"],["2024-07-24T01:12:08.010000"],["2024-07-24T01:12:09.010000"],["2024-07-24T01:12:10.010000"],["2024-07-24T01:12:11.010000"],["2024-07-24T01:12:12.010000"],["2024-07-24T01:12:13.010000"],["2024-07-24T01:12:14.010000"],["2024-07-24T01:12:15.010000"],["2024-07-24T01:12:16.010000"],["2024-07-24T01:12:17.010000"],["2024-07-24T01:12:18.010000"],["2024-07-24T01:12:19.010000"],["2024-07-24T01:12:20.010000"],["2024-07-24T01:12:21.010000"],["2024-07-24T01:12:22.010000"],["2024-07-24T01:12:23.010000"],["2024-07-24T01:12:24.010000"],["2024-07-24T01:12:25.010000"],["2024-07-24T01:12:26.010000"],["2024-07-24T01:12:27.010000"],["2024-07-24T01:12:28.010000"],["2024-07-24T01:12:29.010000"],["2024-07-24T01:12:30.010000"],["2024-07-24T01:12:31.010000"],["2024-07-24T01:12:32.010000"],["2024-07-24T01:12:33.010000"],["2024-07-24T01:12:34.010000"],["2024-07-24T01:12:35.010000"],["2024-07-24T01:12:36.010000"],["2024-07-24T01:12:37.010000"],["2024-07-24T01:12:38.010000"],["2024-07-24T01:12:39.010000"],["2024-07-24T01:12:40.010000"],["2024-07-24T01:12:41.010000"],["2024-07-24T01:12:42.010000"],["2024-07-24T01:12:43.010000"],["2024-07-24T01:12:44.010000"],["2024-07-24T01:12:45.010000"],["2024-07-24T01:12:46.010000"],["2024-07-24T01:12:47.010000"],["2024-07-24T01:12:48.010000"],["2024-07-24T01:12:49.010000"],["2024-07-24T01:12:50.010000"],["2024-07-24T01:12:51.010000"],["2024-07-24T01:12:52.010000"],["2024-07-24T01:12:53.010000"],["2024-07-24T01:12:54.010000"],["2024-07-24T01:12:55.010000"],["2024-07-24T01:12:56.010000"],["2024-07-24T01:12:57.010000"],["2024-07-24T01:12:58.010000"],["2024-07-24T01:12:59.010000"],["2024-07-24T01:13:00.010000"],["2024-07-24T01:13:01.010000"],["2024-07-24T01:13:02.010000"],["2024-07-24T01:13:03.010000"],["2024-07-24T01:13:04.010000"],["2024-07-24T01:13:05.010000"],["2024-07-24T01:13:06.010000"],["2024-07-24T01:13:07.010000"],["2024-07-24T01:13:08.010000"],["2024-07-24T01:13:09.010000"],["2024-07-24T01:13:10.010000"],["2024-07-24T01:13:11.010000"],["2024-07-24T01:13:12.010000"],["2024-07-24T01:13:13.010000"],["2024-07-24T01:13:14.010000"],["2024-07-24T01:13:15.010000"],["2024-07-24T01:13:16.010000"],["2024-07-24T01:13:17.010000"],["2024-07-24T01:13:18.010000"],["2024-07-24T01:13:19.010000"],["2024-07-24T01:13:20.010000"],["2024-07-24T01:13:21.010000"],["2024-07-24T01:13:22.010000"],["2024-07-24T01:13:23.010000"],["2024-07-24T01:13:24.010000"],["2024-07-24T01:13:25.010000"],["2024-07-24T01:13:26.010000"],["2024-07-24T01:13:27.010000"],["2024-07-24T01:13:28.010000"],["2024-07-24T01:13:29.010000"],["2024-07-24T01:13:30.010000"],["2024-07-24T01:13:31.010000"],["2024-07-24T01:13:32.010000"],["2024-07-24T01:13:33.010000"],["2024-07-24T01:13:34.010000"],["2024-07-24T01:13:35.010000"],["2024-07-24T01:13:36.010000"],["2024-07-24T01:13:37.010000"],["2024-07-24T01:13:38.010000"],["2024-07-24T01:13:39.010000"],["2024-07-24T01:13:40.010000"],["2024-07-24T01:13:41.010000"],["2024-07-24T01:13:42.010000"],["2024-07-24T01:13:43.010000"],["2024-07-24T01:13:44.010000"],["2024-07-24T01:13:45.010000"],["2024-07-24T01:13:46.010000"],["2024-07-24T01:13:47.010000"],["2024-07-24T01:13:48.010000"],["2024-07-24T01:13:49.010000"],["2024-07-24T01:13:50.010000"],["2024-07-24T01:13:51.010000"],["2024-07-24T01:13:52.010000"],["2024-07-24T01:13:53.010000"],["2024-07-24T01:13:54.010000"],["2024-07-24T01:13:55.010000"],["2024-07-24T01:13:56.010000"],["2024-07-24T01:13:57.010000"],["2024-07-24T01:13:58.010000"],["2024-07-24T01:13:59.010000"],["2024-07-24T01:14:00.010000"],["2024-07-24T01:14:01.010000"],["2024-07-24T01:14:02.010000"],["2024-07-24T01:14:03.010000"],["2024-07-24T01:14:04.010000"],["2024-07-24T01:14:05.010000"],["2024-07-24T01:14:06.010000"],["2024-07-24T01:14:07.010000"],["2024-07-24T01:14:08.010000"],["2024-07-24T01:14:09.010000"],["2024-07-24T01:14:10.010000"],["2024-07-24T01:14:11.010000"],["2024-07-24T01:14:12.010000"],["2024-07-24T01:14:13.010000"],["2024-07-24T01:14:14.010000"],["2024-07-24T01:14:15.010000"],["2024-07-24T01:14:16.010000"],["2024-07-24T01:14:17.010000"],["2024-07-24T01:14:18.010000"],["2024-07-24T01:14:19.010000"],["2024-07-24T01:14:20.010000"],["2024-07-24T01:14:21.010000"],["2024-07-24T01:14:22.010000"],["2024-07-24T01:14:23.010000"],["2024-07-24T01:14:24.010000"],["2024-07-24T01:14:25.010000"],["2024-07-24T01:14:26.010000"],["2024-07-24T01:14:27.010000"],["2024-07-24T01:14:28.010000"],["2024-07-24T01:14:29.010000"],["2024-07-24T01:14:30.010000"],["2024-07-24T01:14:31.010000"],["2024-07-24T01:14:32.010000"],["2024-07-24T01:14:33.010000"],["2024-07-24T01:14:34.010000"],["2024-07-24T01:14:35.010000"],["2024-07-24T01:14:36.010000"],["2024-07-24T01:14:37.010000"],["2024-07-24T01:14:38.010000"],["2024-07-24T01:14:39.010000"],["2024-07-24T01:14:40.010000"],["2024-07-24T01:14:41.010000"],["2024-07-24T01:14:42.010000"],["2024-07-24T01:14:43.010000"],["2024-07-24T01:14:44.010000"],["2024-07-24T01:14:45.010000"],["2024-07-24T01:14:46.010000"],["2024-07-24T01:14:47.010000"],["2024-07-24T01:14:48.010000"],["2024-07-24T01:14:49.010000"],["2024-07-24T01:14:50.010000"],["2024-07-24T01:14:51.010000"],["2024-07-24T01:14:52.010000"],["2024-07-24T01:14:53.010000"],["2024-07-24T01:14:54.010000"],["2024-07-24T01:14:55.010000"],["2024-07-24T01:14:56.010000"],["2024-07-24T01:14:57.010000"],["2024-07-24T01:14:58.010000"],["2024-07-24T01:14:59.010000"],["2024-07-24T01:15:00.010000"],["2024-07-24T01:15:01.010000"],["2024-07-24T01:15:02.010000"],["2024-07-24T01:15:03.010000"],["2024-07-24T01:15:04.010000"],["2024-07-24T01:15:05.010000"],["2024-07-24T01:15:06.010000"],["2024-07-24T01:15:07.010000"],["2024-07-24T01:15:08.010000"],["2024-07-24T01:15:09.010000"],["2024-07-24T01:15:10.010000"],["2024-07-24T01:15:11.010000"],["2024-07-24T01:15:12.010000"],["2024-07-24T01:15:13.010000"],["2024-07-24T01:15:14.010000"],["2024-07-24T01:15:15.010000"],["2024-07-24T01:15:16.010000"],["2024-07-24T01:15:17.010000"],["2024-07-24T01:15:18.010000"],["2024-07-24T01:15:19.010000"],["2024-07-24T01:15:20.010000"],["2024-07-24T01:15:21.010000"],["2024-07-24T01:15:22.010000"],["2024-07-24T01:15:23.010000"],["2024-07-24T01:15:24.010000"],["2024-07-24T01:15:25.010000"],["2024-07-24T01:15:26.010000"],["2024-07-24T01:15:27.010000"],["2024-07-24T01:15:28.010000"],["2024-07-24T01:15:29.010000"],["2024-07-24T01:15:30.010000"],["2024-07-24T01:15:31.010000"],["2024-07-24T01:15:32.010000"],["2024-07-24T01:15:33.010000"],["2024-07-24T01:15:34.010000"],["2024-07-24T01:15:35.010000"],["2024-07-24T01:15:36.010000"],["2024-07-24T01:15:37.010000"],["2024-07-24T01:15:38.010000"],["2024-07-24T01:15:39.010000"],["2024-07-24T01:15:40.010000"],["2024-07-24T01:15:41.010000"],["2024-07-24T01:15:42.010000"],["2024-07-24T01:15:43.010000"],["2024-07-24T01:15:44.010000"],["2024-07-24T01:15:45.010000"],["2024-07-24T01:15:46.010000"],["2024-07-24T01:15:47.010000"],["2024-07-24T01:15:48.010000"],["2024-07-24T01:15:49.010000"],["2024-07-24T01:15:50.010000"],["2024-07-24T01:15:51.010000"],["2024-07-24T01:15:52.010000"],["2024-07-24T01:15:53.010000"],["2024-07-24T01:15:54.010000"],["2024-07-24T01:15:55.010000"],["2024-07-24T01:15:56.010000"],["2024-07-24T01:15:57.010000"],["2024-07-24T01:15:58.010000"],["2024-07-24T01:15:59.010000"],["2024-07-24T01:16:00.010000"],["2024-07-24T01:16:01.010000"],["2024-07-24T01:16:02.010000"],["2024-07-24T01:16:03.010000"],["2024-07-24T01:16:04.010000"],["2024-07-24T01:16:05.010000"],["2024-07-24T01:16:06.010000"],["2024-07-24T01:16:07.010000"],["2024-07-24T01:16:08.010000"],["2024-07-24T01:16:09.010000"],["2024-07-24T01:16:10.010000"],["2024-07-24T01:16:11.010000"],["2024-07-24T01:16:12.010000"],["2024-07-24T01:16:13.010000"],["2024-07-24T01:16:14.010000"],["2024-07-24T01:16:15.010000"],["2024-07-24T01:16:16.010000"],["2024-07-24T01:16:17.010000"],["2024-07-24T01:16:18.010000"],["2024-07-24T01:16:19.010000"],["2024-07-24T01:16:20.010000"],["2024-07-24T01:16:21.010000"],["2024-07-24T01:16:22.010000"],["2024-07-24T01:16:23.010000"],["2024-07-24T01:16:24.010000"],["2024-07-24T01:16:25.010000"],["2024-07-24T01:16:26.010000"],["2024-07-24T01:16:27.010000"],["2024-07-24T01:16:28.010000"],["2024-07-24T01:16:29.010000"],["2024-07-24T01:16:30.010000"],["2024-07-24T01:16:31.010000"],["2024-07-24T01:16:32.010000"],["2024-07-24T01:16:33.010000"],["2024-07-24T01:16:34.010000"],["2024-07-24T01:16:35.010000"],["2024-07-24T01:16:36.010000"],["2024-07-24T01:16:37.010000"],["2024-07-24T01:16:38.010000"],["2024-07-24T01:16:39.010000"],["2024-07-24T01:16:40.010000"],["2024-07-24T01:16:41.010000"],["2024-07-24T01:16:42.010000"],["2024-07-24T01:16:43.010000"],["2024-07-24T01:16:44.010000"],["2024-07-24T01:16:45.010000"],["2024-07-24T01:16:46.010000"],["2024-07-24T01:16:47.010000"],["2024-07-24T01:16:48.010000"],["2024-07-24T01:16:49.010000"],["2024-07-24T01:16:50.010000"],["2024-07-24T01:16:51.010000"],["2024-07-24T01:16:52.010000"],["2024-07-24T01:16:53.010000"],["2024-07-24T01:16:54.010000"],["2024-07-24T01:16:55.010000"],["2024-07-24T01:16:56.010000"],["2024-07-24T01:16:57.010000"],["2024-07-24T01:16:58.010000"],["2024-07-24T01:16:59.010000"],["2024-07-24T01:17:00.010000"],["2024-07-24T01:17:01.010000"],["2024-07-24T01:17:02.010000"],["2024-07-24T01:17:03.010000"],["2024-07-24T01:17:04.010000"],["2024-07-24T01:17:05.010000"],["2024-07-24T01:17:06.010000"],["2024-07-24T01:17:07.010000"],["2024-07-24T01:17:08.010000"],["2024-07-24T01:17:09.010000"],["2024-07-24T01:17:10.010000"],["2024-07-24T01:17:11.010000"],["2024-07-24T01:17:12.010000"],["2024-07-24T01:17:13.010000"],["2024-07-24T01:17:14.010000"],["2024-07-24T01:17:15.010000"],["2024-07-24T01:17:16.010000"],["2024-07-24T01:17:17.010000"],["2024-07-24T01:17:18.010000"],["2024-07-24T01:17:19.010000"],["2024-07-24T01:17:20.010000"],["2024-07-24T01:17:21.010000"],["2024-07-24T01:17:22.010000"],["2024-07-24T01:17:23.010000"],["2024-07-24T01:17:24.010000"],["2024-07-24T01:17:25.010000"],["2024-07-24T01:17:26.010000"],["2024-07-24T01:17:27.010000"],["2024-07-24T01:17:28.010000"],["2024-07-24T01:17:29.010000"],["2024-07-24T01:17:30.010000"],["2024-07-24T01:17:31.010000"],["2024-07-24T01:17:32.010000"],["2024-07-24T01:17:33.010000"],["2024-07-24T01:17:34.010000"],["2024-07-24T01:17:35.010000"],["2024-07-24T01:17:36.010000"],["2024-07-24T01:17:37.010000"],["2024-07-24T01:17:38.010000"],["2024-07-24T01:17:39.010000"],["2024-07-24T01:17:40.010000"],["2024-07-24T01:17:41.010000"],["2024-07-24T01:17:42.010000"],["2024-07-24T01:17:43.010000"],["2024-07-24T01:17:44.010000"],["2024-07-24T01:17:45.010000"],["2024-07-24T01:17:46.010000"],["2024-07-24T01:17:47.010000"],["2024-07-24T01:17:48.010000"],["2024-07-24T01:17:49.010000"],["2024-07-24T01:17:50.010000"],["2024-07-24T01:17:51.010000"],["2024-07-24T01:17:52.010000"],["2024-07-24T01:17:53.010000"],["2024-07-24T01:17:54.010000"],["2024-07-24T01:17:55.010000"],["2024-07-24T01:17:56.010000"],["2024-07-24T01:17:57.010000"],["2024-07-24T01:17:58.010000"],["2024-07-24T01:17:59.010000"],["2024-07-24T01:18:00.010000"],["2024-07-24T01:18:01.010000"],["2024-07-24T01:18:02.010000"],["2024-07-24T01:18:03.010000"],["2024-07-24T01:18:04.010000"],["2024-07-24T01:18:05.010000"],["2024-07-24T01:18:06.010000"],["2024-07-24T01:18:07.010000"],["2024-07-24T01:18:08.010000"],["2024-07-24T01:18:09.010000"],["2024-07-24T01:18:10.010000"],["2024-07-24T01:18:11.010000"],["2024-07-24T01:18:12.010000"],["2024-07-24T01:18:13.010000"],["2024-07-24T01:18:14.010000"],["2024-07-24T01:18:15.010000"],["2024-07-24T01:18:16.010000"],["2024-07-24T01:18:17.010000"],["2024-07-24T01:18:18.010000"],["2024-07-24T01:18:19.010000"],["2024-07-24T01:18:20.010000"],["2024-07-24T01:18:21.010000"],["2024-07-24T01:18:22.010000"],["2024-07-24T01:18:23.010000"],["2024-07-24T01:18:24.010000"],["2024-07-24T01:18:25.010000"],["2024-07-24T01:18:26.010000"],["2024-07-24T01:18:27.010000"],["2024-07-24T01:18:28.010000"],["2024-07-24T01:18:29.010000"],["2024-07-24T01:18:30.010000"],["2024-07-24T01:18:31.010000"],["2024-07-24T01:18:32.010000"],["2024-07-24T01:18:33.010000"],["2024-07-24T01:18:34.010000"],["2024-07-24T01:18:35.010000"],["2024-07-24T01:18:36.010000"],["2024-07-24T01:18:37.010000"],["2024-07-24T01:18:38.010000"],["2024-07-24T01:18:39.010000"],["2024-07-24T01:18:40.010000"],["2024-07-24T01:18:41.010000"],["2024-07-24T01:18:42.010000"],["2024-07-24T01:18:43.010000"],["2024-07-24T01:18:44.010000"],["2024-07-24T01:18:45.010000"],["2024-07-24T01:18:46.010000"],["2024-07-24T01:18:47.010000"],["2024-07-24T01:18:48.010000"],["2024-07-24T01:18:49.010000"],["2024-07-24T01:18:50.010000"],["2024-07-24T01:18:51.010000"],["2024-07-24T01:18:52.010000"],["2024-07-24T01:18:53.010000"],["2024-07-24T01:18:54.010000"],["2024-07-24T01:18:55.010000"],["2024-07-24T01:18:56.010000"],["2024-07-24T01:18:57.010000"],["2024-07-24T01:18:58.010000"],["2024-07-24T01:18:59.010000"],["2024-07-24T01:19:00.010000"],["2024-07-24T01:19:01.010000"],["2024-07-24T01:19:02.010000"],["2024-07-24T01:19:03.010000"],["2024-07-24T01:19:04.010000"],["2024-07-24T01:19:05.010000"],["2024-07-24T01:19:06.010000"],["2024-07-24T01:19:07.010000"],["2024-07-24T01:19:08.010000"],["2024-07-24T01:19:09.010000"],["2024-07-24T01:19:10.010000"],["2024-07-24T01:19:11.010000"],["2024-07-24T01:19:12.010000"],["2024-07-24T01:19:13.010000"],["2024-07-24T01:19:14.010000"],["2024-07-24T01:19:15.010000"],["2024-07-24T01:19:16.010000"],["2024-07-24T01:19:17.010000"],["2024-07-24T01:19:18.010000"],["2024-07-24T01:19:19.010000"],["2024-07-24T01:19:20.010000"],["2024-07-24T01:19:21.010000"],["2024-07-24T01:19:22.010000"],["2024-07-24T01:19:23.010000"],["2024-07-24T01:19:24.010000"],["2024-07-24T01:19:25.010000"],["2024-07-24T01:19:26.010000"],["2024-07-24T01:19:27.010000"],["2024-07-24T01:19:28.010000"],["2024-07-24T01:19:29.010000"],["2024-07-24T01:19:30.010000"],["2024-07-24T01:19:31.010000"],["2024-07-24T01:19:32.010000"],["2024-07-24T01:19:33.010000"],["2024-07-24T01:19:34.010000"],["2024-07-24T01:19:35.010000"],["2024-07-24T01:19:36.010000"],["2024-07-24T01:19:37.010000"],["2024-07-24T01:19:38.010000"],["2024-07-24T01:19:39.010000"],["2024-07-24T01:19:40.010000"],["2024-07-24T01:19:41.010000"],["2024-07-24T01:19:42.010000"],["2024-07-24T01:19:43.010000"],["2024-07-24T01:19:44.010000"],["2024-07-24T01:19:45.010000"],["2024-07-24T01:19:46.010000"],["2024-07-24T01:19:47.010000"],["2024-07-24T01:19:48.010000"],["2024-07-24T01:19:49.010000"],["2024-07-24T01:19:50.010000"],["2024-07-24T01:19:51.010000"],["2024-07-24T01:19:52.010000"],["2024-07-24T01:19:53.010000"],["2024-07-24T01:19:54.010000"],["2024-07-24T01:19:55.010000"],["2024-07-24T01:19:56.010000"],["2024-07-24T01:19:57.010000"],["2024-07-24T01:19:58.010000"],["2024-07-24T01:19:59.010000"],["2024-07-24T01:20:00.010000"],["2024-07-24T01:20:01.010000"],["2024-07-24T01:20:02.010000"],["2024-07-24T01:20:03.010000"],["2024-07-24T01:20:04.010000"],["2024-07-24T01:20:05.010000"],["2024-07-24T01:20:06.010000"],["2024-07-24T01:20:07.010000"],["2024-07-24T01:20:08.010000"],["2024-07-24T01:20:09.010000"],["2024-07-24T01:20:10.010000"],["2024-07-24T01:20:11.010000"],["2024-07-24T01:20:12.010000"],["2024-07-24T01:20:13.010000"],["2024-07-24T01:20:14.010000"],["2024-07-24T01:20:15.010000"],["2024-07-24T01:20:16.010000"],["2024-07-24T01:20:17.010000"],["2024-07-24T01:20:18.010000"],["2024-07-24T01:20:19.010000"],["2024-07-24T01:20:20.010000"],["2024-07-24T01:20:21.010000"],["2024-07-24T01:20:22.010000"],["2024-07-24T01:20:23.010000"],["2024-07-24T01:20:24.010000"],["2024-07-24T01:20:25.010000"],["2024-07-24T01:20:26.010000"],["2024-07-24T01:20:27.010000"],["2024-07-24T01:20:28.010000"],["2024-07-24T01:20:29.010000"],["2024-07-24T01:20:30.010000"],["2024-07-24T01:20:31.010000"],["2024-07-24T01:20:32.010000"],["2024-07-24T01:20:33.010000"],["2024-07-24T01:20:34.010000"],["2024-07-24T01:20:35.010000"],["2024-07-24T01:20:36.010000"],["2024-07-24T01:20:37.010000"],["2024-07-24T01:20:38.010000"],["2024-07-24T01:20:39.010000"],["2024-07-24T01:20:40.010000"],["2024-07-24T01:20:41.010000"],["2024-07-24T01:20:42.010000"],["2024-07-24T01:20:43.010000"],["2024-07-24T01:20:44.010000"],["2024-07-24T01:20:45.010000"],["2024-07-24T01:20:46.010000"],["2024-07-24T01:20:47.010000"],["2024-07-24T01:20:48.010000"],["2024-07-24T01:20:49.010000"],["2024-07-24T01:20:50.010000"],["2024-07-24T01:20:51.010000"],["2024-07-24T01:20:52.010000"],["2024-07-24T01:20:53.010000"],["2024-07-24T01:20:54.010000"],["2024-07-24T01:20:55.010000"],["2024-07-24T01:20:56.010000"],["2024-07-24T01:20:57.010000"],["2024-07-24T01:20:58.010000"],["2024-07-24T01:20:59.010000"],["2024-07-24T01:21:00.010000"],["2024-07-24T01:21:01.010000"],["2024-07-24T01:21:02.010000"],["2024-07-24T01:21:03.010000"],["2024-07-24T01:21:04.010000"],["2024-07-24T01:21:05.010000"],["2024-07-24T01:21:06.010000"],["2024-07-24T01:21:07.010000"],["2024-07-24T01:21:08.010000"],["2024-07-24T01:21:09.010000"],["2024-07-24T01:21:10.010000"],["2024-07-24T01:21:11.010000"],["2024-07-24T01:21:12.010000"],["2024-07-24T01:21:13.010000"],["2024-07-24T01:21:14.010000"],["2024-07-24T01:21:15.010000"],["2024-07-24T01:21:16.010000"],["2024-07-24T01:21:17.010000"],["2024-07-24T01:21:18.010000"],["2024-07-24T01:21:19.010000"],["2024-07-24T01:21:20.010000"],["2024-07-24T01:21:21.010000"],["2024-07-24T01:21:22.010000"],["2024-07-24T01:21:23.010000"],["2024-07-24T01:21:24.010000"],["2024-07-24T01:21:25.010000"],["2024-07-24T01:21:26.010000"],["2024-07-24T01:21:27.010000"],["2024-07-24T01:21:28.010000"],["2024-07-24T01:21:29.010000"],["2024-07-24T01:21:30.010000"],["2024-07-24T01:21:31.010000"],["2024-07-24T01:21:32.010000"],["2024-07-24T01:21:33.010000"],["2024-07-24T01:21:34.010000"],["2024-07-24T01:21:35.010000"],["2024-07-24T01:21:36.010000"],["2024-07-24T01:21:37.010000"],["2024-07-24T01:21:38.010000"],["2024-07-24T01:21:39.010000"],["2024-07-24T01:21:40.010000"],["2024-07-24T01:21:41.010000"],["2024-07-24T01:21:42.010000"],["2024-07-24T01:21:43.010000"],["2024-07-24T01:21:44.010000"],["2024-07-24T01:21:45.010000"],["2024-07-24T01:21:46.010000"],["2024-07-24T01:21:47.010000"],["2024-07-24T01:21:48.010000"],["2024-07-24T01:21:49.010000"],["2024-07-24T01:21:50.010000"],["2024-07-24T01:21:51.010000"],["2024-07-24T01:21:52.010000"],["2024-07-24T01:21:53.010000"],["2024-07-24T01:21:54.010000"],["2024-07-24T01:21:55.010000"],["2024-07-24T01:21:56.010000"],["2024-07-24T01:21:57.010000"],["2024-07-24T01:21:58.010000"],["2024-07-24T01:21:59.010000"],["2024-07-24T01:22:00.010000"],["2024-07-24T01:22:01.010000"],["2024-07-24T01:22:02.010000"],["2024-07-24T01:22:03.010000"],["2024-07-24T01:22:04.010000"],["2024-07-24T01:22:05.010000"],["2024-07-24T01:22:06.010000"],["2024-07-24T01:22:07.010000"],["2024-07-24T01:22:08.010000"],["2024-07-24T01:22:09.010000"],["2024-07-24T01:22:10.010000"],["2024-07-24T01:22:11.010000"],["2024-07-24T01:22:12.010000"],["2024-07-24T01:22:13.010000"],["2024-07-24T01:22:14.010000"],["2024-07-24T01:22:15.010000"],["2024-07-24T01:22:16.010000"],["2024-07-24T01:22:17.010000"],["2024-07-24T01:22:18.010000"],["2024-07-24T01:22:19.010000"],["2024-07-24T01:22:20.010000"],["2024-07-24T01:22:21.010000"],["2024-07-24T01:22:22.010000"],["2024-07-24T01:22:23.010000"],["2024-07-24T01:22:24.010000"],["2024-07-24T01:22:25.010000"],["2024-07-24T01:22:26.010000"],["2024-07-24T01:22:27.010000"],["2024-07-24T01:22:28.010000"],["2024-07-24T01:22:29.010000"],["2024-07-24T01:22:30.010000"],["2024-07-24T01:22:31.010000"],["2024-07-24T01:22:32.010000"],["2024-07-24T01:22:33.010000"],["2024-07-24T01:22:34.010000"],["2024-07-24T01:22:35.010000"],["2024-07-24T01:22:36.010000"],["2024-07-24T01:22:37.010000"],["2024-07-24T01:22:38.010000"],["2024-07-24T01:22:39.010000"],["2024-07-24T01:22:40.010000"],["2024-07-24T01:22:41.010000"],["2024-07-24T01:22:42.010000"],["2024-07-24T01:22:43.010000"],["2024-07-24T01:22:44.010000"],["2024-07-24T01:22:45.010000"],["2024-07-24T01:22:46.010000"],["2024-07-24T01:22:47.010000"],["2024-07-24T01:22:48.010000"],["2024-07-24T01:22:49.010000"],["2024-07-24T01:22:50.010000"],["2024-07-24T01:22:51.010000"],["2024-07-24T01:22:52.010000"],["2024-07-24T01:22:53.010000"],["2024-07-24T01:22:54.010000"],["2024-07-24T01:22:55.010000"],["2024-07-24T01:22:56.010000"],["2024-07-24T01:22:57.010000"],["2024-07-24T01:22:58.010000"],["2024-07-24T01:22:59.010000"],["2024-07-24T01:23:00.010000"],["2024-07-24T01:23:01.010000"],["2024-07-24T01:23:02.010000"],["2024-07-24T01:23:03.010000"],["2024-07-24T01:23:04.010000"],["2024-07-24T01:23:05.010000"],["2024-07-24T01:23:06.010000"],["2024-07-24T01:23:07.010000"],["2024-07-24T01:23:08.010000"],["2024-07-24T01:23:09.010000"],["2024-07-24T01:23:10.010000"],["2024-07-24T01:23:11.010000"],["2024-07-24T01:23:12.010000"],["2024-07-24T01:23:13.010000"],["2024-07-24T01:23:14.010000"],["2024-07-24T01:23:15.010000"],["2024-07-24T01:23:16.010000"],["2024-07-24T01:23:17.010000"],["2024-07-24T01:23:18.010000"],["2024-07-24T01:23:19.010000"],["2024-07-24T01:23:20.010000"],["2024-07-24T01:23:21.010000"],["2024-07-24T01:23:22.010000"],["2024-07-24T01:23:23.010000"],["2024-07-24T01:23:24.010000"],["2024-07-24T01:23:25.010000"],["2024-07-24T01:23:26.010000"],["2024-07-24T01:23:27.010000"],["2024-07-24T01:23:28.010000"],["2024-07-24T01:23:29.010000"],["2024-07-24T01:23:30.010000"],["2024-07-24T01:23:31.010000"],["2024-07-24T01:23:32.010000"],["2024-07-24T01:23:33.010000"],["2024-07-24T01:23:34.010000"],["2024-07-24T01:23:35.010000"],["2024-07-24T01:23:36.010000"],["2024-07-24T01:23:37.010000"],["2024-07-24T01:23:38.010000"],["2024-07-24T01:23:39.010000"],["2024-07-24T01:23:40.010000"],["2024-07-24T01:23:41.010000"],["2024-07-24T01:23:42.010000"],["2024-07-24T01:23:43.010000"],["2024-07-24T01:23:44.010000"],["2024-07-24T01:23:45.010000"],["2024-07-24T01:23:46.010000"],["2024-07-24T01:23:47.010000"],["2024-07-24T01:23:48.010000"],["2024-07-24T01:23:49.010000"],["2024-07-24T01:23:50.010000"],["2024-07-24T01:23:51.010000"],["2024-07-24T01:23:52.010000"],["2024-07-24T01:23:53.010000"],["2024-07-24T01:23:54.010000"],["2024-07-24T01:23:55.010000"],["2024-07-24T01:23:56.010000"],["2024-07-24T01:23:57.010000"],["2024-07-24T01:23:58.010000"],["2024-07-24T01:23:59.010000"],["2024-07-24T01:24:00.010000"],["2024-07-24T01:24:01.010000"],["2024-07-24T01:24:02.010000"],["2024-07-24T01:24:03.010000"],["2024-07-24T01:24:04.010000"],["2024-07-24T01:24:05.010000"],["2024-07-24T01:24:06.010000"],["2024-07-24T01:24:07.010000"],["2024-07-24T01:24:08.010000"],["2024-07-24T01:24:09.010000"],["2024-07-24T01:24:10.010000"],["2024-07-24T01:24:11.010000"],["2024-07-24T01:24:12.010000"],["2024-07-24T01:24:13.010000"],["2024-07-24T01:24:14.010000"],["2024-07-24T01:24:15.010000"],["2024-07-24T01:24:16.010000"],["2024-07-24T01:24:17.010000"],["2024-07-24T01:24:18.010000"],["2024-07-24T01:24:19.010000"],["2024-07-24T01:24:20.010000"],["2024-07-24T01:24:21.010000"],["2024-07-24T01:24:22.010000"],["2024-07-24T01:24:23.010000"],["2024-07-24T01:24:24.010000"],["2024-07-24T01:24:25.010000"],["2024-07-24T01:24:26.010000"],["2024-07-24T01:24:27.010000"],["2024-07-24T01:24:28.010000"],["2024-07-24T01:24:29.010000"],["2024-07-24T01:24:30.010000"],["2024-07-24T01:24:31.010000"],["2024-07-24T01:24:32.010000"],["2024-07-24T01:24:33.010000"],["2024-07-24T01:24:34.010000"],["2024-07-24T01:24:35.010000"],["2024-07-24T01:24:36.010000"],["2024-07-24T01:24:37.010000"],["2024-07-24T01:24:38.010000"],["2024-07-24T01:24:39.010000"],["2024-07-24T01:24:40.010000"],["2024-07-24T01:24:41.010000"],["2024-07-24T01:24:42.010000"],["2024-07-24T01:24:43.010000"],["2024-07-24T01:24:44.010000"],["2024-07-24T01:24:45.010000"],["2024-07-24T01:24:46.010000"],["2024-07-24T01:24:47.010000"],["2024-07-24T01:24:48.010000"],["2024-07-24T01:24:49.010000"],["2024-07-24T01:24:50.010000"],["2024-07-24T01:24:51.010000"],["2024-07-24T01:24:52.010000"],["2024-07-24T01:24:53.010000"],["2024-07-24T01:24:54.010000"],["2024-07-24T01:24:55.010000"],["2024-07-24T01:24:56.010000"],["2024-07-24T01:24:57.010000"],["2024-07-24T01:24:58.010000"],["2024-07-24T01:24:59.010000"],["2024-07-24T01:25:00.010000"],["2024-07-24T01:25:01.010000"],["2024-07-24T01:25:02.010000"],["2024-07-24T01:25:03.010000"],["2024-07-24T01:25:04.010000"],["2024-07-24T01:25:05.010000"],["2024-07-24T01:25:06.010000"],["2024-07-24T01:25:07.010000"],["2024-07-24T01:25:08.010000"],["2024-07-24T01:25:09.010000"],["2024-07-24T01:25:10.010000"],["2024-07-24T01:25:11.010000"],["2024-07-24T01:25:12.010000"],["2024-07-24T01:25:13.010000"],["2024-07-24T01:25:14.010000"],["2024-07-24T01:25:15.010000"],["2024-07-24T01:25:16.010000"],["2024-07-24T01:25:17.010000"],["2024-07-24T01:25:18.010000"],["2024-07-24T01:25:19.010000"],["2024-07-24T01:25:20.010000"],["2024-07-24T01:25:21.010000"],["2024-07-24T01:25:22.010000"],["2024-07-24T01:25:23.010000"],["2024-07-24T01:25:24.010000"],["2024-07-24T01:25:25.010000"],["2024-07-24T01:25:26.010000"],["2024-07-24T01:25:27.010000"],["2024-07-24T01:25:28.010000"],["2024-07-24T01:25:29.010000"],["2024-07-24T01:25:30.010000"],["2024-07-24T01:25:31.010000"],["2024-07-24T01:25:32.010000"],["2024-07-24T01:25:33.010000"],["2024-07-24T01:25:34.010000"],["2024-07-24T01:25:35.010000"],["2024-07-24T01:25:36.010000"],["2024-07-24T01:25:37.010000"],["2024-07-24T01:25:38.010000"],["2024-07-24T01:25:39.010000"],["2024-07-24T01:25:40.010000"],["2024-07-24T01:25:41.010000"],["2024-07-24T01:25:42.010000"],["2024-07-24T01:25:43.010000"],["2024-07-24T01:25:44.010000"],["2024-07-24T01:25:45.010000"],["2024-07-24T01:25:46.010000"],["2024-07-24T01:25:47.010000"],["2024-07-24T01:25:48.010000"],["2024-07-24T01:25:49.010000"],["2024-07-24T01:25:50.010000"],["2024-07-24T01:25:51.010000"],["2024-07-24T01:25:52.010000"],["2024-07-24T01:25:53.010000"],["2024-07-24T01:25:54.010000"],["2024-07-24T01:25:55.010000"],["2024-07-24T01:25:56.010000"],["2024-07-24T01:25:57.010000"],["2024-07-24T01:25:58.010000"],["2024-07-24T01:25:59.010000"],["2024-07-24T01:26:00.010000"],["2024-07-24T01:26:01.010000"],["2024-07-24T01:26:02.010000"],["2024-07-24T01:26:03.010000"],["2024-07-24T01:26:04.010000"],["2024-07-24T01:26:05.010000"],["2024-07-24T01:26:06.010000"],["2024-07-24T01:26:07.010000"],["2024-07-24T01:26:08.010000"],["2024-07-24T01:26:09.010000"],["2024-07-24T01:26:10.010000"],["2024-07-24T01:26:11.010000"],["2024-07-24T01:26:12.010000"],["2024-07-24T01:26:13.010000"],["2024-07-24T01:26:14.010000"],["2024-07-24T01:26:15.010000"],["2024-07-24T01:26:16.010000"],["2024-07-24T01:26:17.010000"],["2024-07-24T01:26:18.010000"],["2024-07-24T01:26:19.010000"],["2024-07-24T01:26:20.010000"],["2024-07-24T01:26:21.010000"],["2024-07-24T01:26:22.010000"],["2024-07-24T01:26:23.010000"],["2024-07-24T01:26:24.010000"],["2024-07-24T01:26:25.010000"],["2024-07-24T01:26:26.010000"],["2024-07-24T01:26:27.010000"],["2024-07-24T01:26:28.010000"],["2024-07-24T01:26:29.010000"],["2024-07-24T01:26:30.010000"],["2024-07-24T01:26:31.010000"],["2024-07-24T01:26:32.010000"],["2024-07-24T01:26:33.010000"],["2024-07-24T01:26:34.010000"],["2024-07-24T01:26:35.010000"],["2024-07-24T01:26:36.010000"],["2024-07-24T01:26:37.010000"],["2024-07-24T01:26:38.010000"],["2024-07-24T01:26:39.010000"],["2024-07-24T01:26:40.010000"],["2024-07-24T01:26:41.010000"],["2024-07-24T01:26:42.010000"],["2024-07-24T01:26:43.010000"],["2024-07-24T01:26:44.010000"],["2024-07-24T01:26:45.010000"],["2024-07-24T01:26:46.010000"],["2024-07-24T01:26:47.010000"],["2024-07-24T01:26:48.010000"],["2024-07-24T01:26:49.010000"],["2024-07-24T01:26:50.010000"],["2024-07-24T01:26:51.010000"],["2024-07-24T01:26:52.010000"],["2024-07-24T01:26:53.010000"],["2024-07-24T01:26:54.010000"],["2024-07-24T01:26:55.010000"],["2024-07-24T01:26:56.010000"],["2024-07-24T01:26:57.010000"],["2024-07-24T01:26:58.010000"],["2024-07-24T01:26:59.010000"],["2024-07-24T01:27:00.010000"],["2024-07-24T01:27:01.010000"],["2024-07-24T01:27:02.010000"],["2024-07-24T01:27:03.010000"],["2024-07-24T01:27:04.010000"],["2024-07-24T01:27:05.010000"],["2024-07-24T01:27:06.010000"],["2024-07-24T01:27:07.010000"],["2024-07-24T01:27:08.010000"],["2024-07-24T01:27:09.010000"],["2024-07-24T01:27:10.010000"],["2024-07-24T01:27:11.010000"],["2024-07-24T01:27:12.010000"],["2024-07-24T01:27:13.010000"],["2024-07-24T01:27:14.010000"],["2024-07-24T01:27:15.010000"],["2024-07-24T01:27:16.010000"],["2024-07-24T01:27:17.010000"],["2024-07-24T01:27:18.010000"],["2024-07-24T01:27:19.010000"],["2024-07-24T01:27:20.010000"],["2024-07-24T01:27:21.010000"],["2024-07-24T01:27:22.010000"],["2024-07-24T01:27:23.010000"],["2024-07-24T01:27:24.010000"],["2024-07-24T01:27:25.010000"],["2024-07-24T01:27:26.010000"],["2024-07-24T01:27:27.010000"],["2024-07-24T01:27:28.010000"],["2024-07-24T01:27:29.010000"],["2024-07-24T01:27:30.010000"],["2024-07-24T01:27:31.010000"],["2024-07-24T01:27:32.010000"],["2024-07-24T01:27:33.010000"],["2024-07-24T01:27:34.010000"],["2024-07-24T01:27:35.010000"],["2024-07-24T01:27:36.010000"],["2024-07-24T01:27:37.010000"],["2024-07-24T01:27:38.010000"],["2024-07-24T01:27:39.010000"],["2024-07-24T01:27:40.010000"],["2024-07-24T01:27:41.010000"],["2024-07-24T01:27:42.010000"],["2024-07-24T01:27:43.010000"],["2024-07-24T01:27:44.010000"],["2024-07-24T01:27:45.010000"],["2024-07-24T01:27:46.010000"],["2024-07-24T01:27:47.010000"],["2024-07-24T01:27:48.010000"],["2024-07-24T01:27:49.010000"],["2024-07-24T01:27:50.010000"],["2024-07-24T01:27:51.010000"],["2024-07-24T01:27:52.010000"],["2024-07-24T01:27:53.010000"],["2024-07-24T01:27:54.010000"],["2024-07-24T01:27:55.010000"],["2024-07-24T01:27:56.010000"],["2024-07-24T01:27:57.010000"],["2024-07-24T01:27:58.010000"],["2024-07-24T01:27:59.010000"],["2024-07-24T01:28:00.010000"],["2024-07-24T01:28:01.010000"],["2024-07-24T01:28:02.010000"],["2024-07-24T01:28:03.010000"],["2024-07-24T01:28:04.010000"],["2024-07-24T01:28:05.010000"],["2024-07-24T01:28:06.010000"],["2024-07-24T01:28:07.010000"],["2024-07-24T01:28:08.010000"],["2024-07-24T01:28:09.010000"],["2024-07-24T01:28:10.010000"],["2024-07-24T01:28:11.010000"],["2024-07-24T01:28:12.010000"],["2024-07-24T01:28:13.010000"],["2024-07-24T01:28:14.010000"],["2024-07-24T01:28:15.010000"],["2024-07-24T01:28:16.010000"],["2024-07-24T01:28:17.010000"],["2024-07-24T01:28:18.010000"],["2024-07-24T01:28:19.010000"],["2024-07-24T01:28:20.010000"],["2024-07-24T01:28:21.010000"],["2024-07-24T01:28:22.010000"],["2024-07-24T01:28:23.010000"],["2024-07-24T01:28:24.010000"],["2024-07-24T01:28:25.010000"],["2024-07-24T01:28:26.010000"],["2024-07-24T01:28:27.010000"],["2024-07-24T01:28:28.010000"],["2024-07-24T01:28:29.010000"],["2024-07-24T01:28:30.010000"],["2024-07-24T01:28:31.010000"],["2024-07-24T01:28:32.010000"],["2024-07-24T01:28:33.010000"],["2024-07-24T01:28:34.010000"],["2024-07-24T01:28:35.010000"],["2024-07-24T01:28:36.010000"],["2024-07-24T01:28:37.010000"],["2024-07-24T01:28:38.010000"],["2024-07-24T01:28:39.010000"],["2024-07-24T01:28:40.010000"],["2024-07-24T01:28:41.010000"],["2024-07-24T01:28:42.010000"],["2024-07-24T01:28:43.010000"],["2024-07-24T01:28:44.010000"],["2024-07-24T01:28:45.010000"],["2024-07-24T01:28:46.010000"],["2024-07-24T01:28:47.010000"],["2024-07-24T01:28:48.010000"],["2024-07-24T01:28:49.010000"],["2024-07-24T01:28:50.010000"],["2024-07-24T01:28:51.010000"],["2024-07-24T01:28:52.010000"],["2024-07-24T01:28:53.010000"],["2024-07-24T01:28:54.010000"],["2024-07-24T01:28:55.010000"],["2024-07-24T01:28:56.010000"],["2024-07-24T01:28:57.010000"],["2024-07-24T01:28:58.010000"],["2024-07-24T01:28:59.010000"],["2024-07-24T01:29:00.010000"],["2024-07-24T01:29:01.010000"],["2024-07-24T01:29:02.010000"],["2024-07-24T01:29:03.010000"],["2024-07-24T01:29:04.010000"],["2024-07-24T01:29:05.010000"],["2024-07-24T01:29:06.010000"],["2024-07-24T01:29:07.010000"],["2024-07-24T01:29:08.010000"],["2024-07-24T01:29:09.010000"],["2024-07-24T01:29:10.010000"],["2024-07-24T01:29:11.010000"],["2024-07-24T01:29:12.010000"],["2024-07-24T01:29:13.010000"],["2024-07-24T01:29:14.010000"],["2024-07-24T01:29:15.010000"],["2024-07-24T01:29:16.010000"],["2024-07-24T01:29:17.010000"],["2024-07-24T01:29:18.010000"],["2024-07-24T01:29:19.010000"],["2024-07-24T01:29:20.010000"],["2024-07-24T01:29:21.010000"],["2024-07-24T01:29:22.010000"],["2024-07-24T01:29:23.010000"],["2024-07-24T01:29:24.010000"],["2024-07-24T01:29:25.010000"],["2024-07-24T01:29:26.010000"],["2024-07-24T01:29:27.010000"],["2024-07-24T01:29:28.010000"],["2024-07-24T01:29:29.010000"],["2024-07-24T01:29:30.010000"],["2024-07-24T01:29:31.010000"],["2024-07-24T01:29:32.010000"],["2024-07-24T01:29:33.010000"],["2024-07-24T01:29:34.010000"],["2024-07-24T01:29:35.010000"],["2024-07-24T01:29:36.010000"],["2024-07-24T01:29:37.010000"],["2024-07-24T01:29:38.010000"],["2024-07-24T01:29:39.010000"],["2024-07-24T01:29:40.010000"],["2024-07-24T01:29:41.010000"],["2024-07-24T01:29:42.010000"],["2024-07-24T01:29:43.010000"],["2024-07-24T01:29:44.010000"],["2024-07-24T01:29:45.010000"],["2024-07-24T01:29:46.010000"],["2024-07-24T01:29:47.010000"],["2024-07-24T01:29:48.010000"],["2024-07-24T01:29:49.010000"],["2024-07-24T01:29:50.010000"],["2024-07-24T01:29:51.010000"],["2024-07-24T01:29:52.010000"],["2024-07-24T01:29:53.010000"],["2024-07-24T01:29:54.010000"],["2024-07-24T01:29:55.010000"],["2024-07-24T01:29:56.010000"],["2024-07-24T01:29:57.010000"],["2024-07-24T01:29:58.010000"],["2024-07-24T01:29:59.010000"],["2024-07-24T01:30:00.010000"],["2024-07-24T01:30:01.010000"],["2024-07-24T01:30:02.010000"],["2024-07-24T01:30:03.010000"],["2024-07-24T01:30:04.010000"],["2024-07-24T01:30:05.010000"],["2024-07-24T01:30:06.010000"],["2024-07-24T01:30:07.010000"],["2024-07-24T01:30:08.010000"],["2024-07-24T01:30:09.010000"],["2024-07-24T01:30:10.010000"],["2024-07-24T01:30:11.010000"],["2024-07-24T01:30:12.010000"],["2024-07-24T01:30:13.010000"],["2024-07-24T01:30:14.010000"],["2024-07-24T01:30:15.010000"],["2024-07-24T01:30:16.010000"],["2024-07-24T01:30:17.010000"],["2024-07-24T01:30:18.010000"],["2024-07-24T01:30:19.010000"],["2024-07-24T01:30:20.010000"],["2024-07-24T01:30:21.010000"],["2024-07-24T01:30:22.010000"],["2024-07-24T01:30:23.010000"],["2024-07-24T01:30:24.010000"],["2024-07-24T01:30:25.010000"],["2024-07-24T01:30:26.010000"],["2024-07-24T01:30:27.010000"],["2024-07-24T01:30:28.010000"],["2024-07-24T01:30:29.010000"],["2024-07-24T01:30:30.010000"],["2024-07-24T01:30:31.010000"],["2024-07-24T01:30:32.010000"],["2024-07-24T01:30:33.010000"],["2024-07-24T01:30:34.010000"],["2024-07-24T01:30:35.010000"],["2024-07-24T01:30:36.010000"],["2024-07-24T01:30:37.010000"],["2024-07-24T01:30:38.010000"],["2024-07-24T01:30:39.010000"],["2024-07-24T01:30:40.010000"],["2024-07-24T01:30:41.010000"],["2024-07-24T01:30:42.010000"],["2024-07-24T01:30:43.010000"],["2024-07-24T01:30:44.010000"],["2024-07-24T01:30:45.010000"],["2024-07-24T01:30:46.010000"],["2024-07-24T01:30:47.010000"],["2024-07-24T01:30:48.010000"],["2024-07-24T01:30:49.010000"],["2024-07-24T01:30:50.010000"],["2024-07-24T01:30:51.010000"],["2024-07-24T01:30:52.010000"],["2024-07-24T01:30:53.010000"],["2024-07-24T01:30:54.010000"],["2024-07-24T01:30:55.010000"],["2024-07-24T01:30:56.010000"],["2024-07-24T01:30:57.010000"],["2024-07-24T01:30:58.010000"],["2024-07-24T01:30:59.010000"],["2024-07-24T01:31:00.010000"],["2024-07-24T01:31:01.010000"],["2024-07-24T01:31:02.010000"],["2024-07-24T01:31:03.010000"],["2024-07-24T01:31:04.010000"],["2024-07-24T01:31:05.010000"],["2024-07-24T01:31:06.010000"],["2024-07-24T01:31:07.010000"],["2024-07-24T01:31:08.010000"],["2024-07-24T01:31:09.010000"],["2024-07-24T01:31:10.010000"],["2024-07-24T01:31:11.010000"],["2024-07-24T01:31:12.010000"],["2024-07-24T01:31:13.010000"],["2024-07-24T01:31:14.010000"],["2024-07-24T01:31:15.010000"],["2024-07-24T01:31:16.010000"],["2024-07-24T01:31:17.010000"],["2024-07-24T01:31:18.010000"],["2024-07-24T01:31:19.010000"],["2024-07-24T01:31:20.010000"],["2024-07-24T01:31:21.010000"],["2024-07-24T01:31:22.010000"],["2024-07-24T01:31:23.010000"],["2024-07-24T01:31:24.010000"],["2024-07-24T01:31:25.010000"],["2024-07-24T01:31:26.010000"],["2024-07-24T01:31:27.010000"],["2024-07-24T01:31:28.010000"],["2024-07-24T01:31:29.010000"],["2024-07-24T01:31:30.010000"],["2024-07-24T01:31:31.010000"],["2024-07-24T01:31:32.010000"],["2024-07-24T01:31:33.010000"],["2024-07-24T01:31:34.010000"],["2024-07-24T01:31:35.010000"],["2024-07-24T01:31:36.010000"],["2024-07-24T01:31:37.010000"],["2024-07-24T01:31:38.010000"],["2024-07-24T01:31:39.010000"],["2024-07-24T01:31:40.010000"],["2024-07-24T01:31:41.010000"],["2024-07-24T01:31:42.010000"],["2024-07-24T01:31:43.010000"],["2024-07-24T01:31:44.010000"],["2024-07-24T01:31:45.010000"],["2024-07-24T01:31:46.010000"],["2024-07-24T01:31:47.010000"],["2024-07-24T01:31:48.010000"],["2024-07-24T01:31:49.010000"],["2024-07-24T01:31:50.010000"],["2024-07-24T01:31:51.010000"],["2024-07-24T01:31:52.010000"],["2024-07-24T01:31:53.010000"],["2024-07-24T01:31:54.010000"],["2024-07-24T01:31:55.010000"],["2024-07-24T01:31:56.010000"],["2024-07-24T01:31:57.010000"],["2024-07-24T01:31:58.010000"],["2024-07-24T01:31:59.010000"],["2024-07-24T01:32:00.010000"],["2024-07-24T01:32:01.010000"],["2024-07-24T01:32:02.010000"],["2024-07-24T01:32:03.010000"],["2024-07-24T01:32:04.010000"],["2024-07-24T01:32:05.010000"],["2024-07-24T01:32:06.010000"],["2024-07-24T01:32:07.010000"],["2024-07-24T01:32:08.010000"],["2024-07-24T01:32:09.010000"],["2024-07-24T01:32:10.010000"],["2024-07-24T01:32:11.010000"],["2024-07-24T01:32:12.010000"],["2024-07-24T01:32:13.010000"],["2024-07-24T01:32:14.010000"],["2024-07-24T01:32:15.010000"],["2024-07-24T01:32:16.010000"],["2024-07-24T01:32:17.010000"],["2024-07-24T01:32:18.010000"],["2024-07-24T01:32:19.010000"],["2024-07-24T01:32:20.010000"],["2024-07-24T01:32:21.010000"],["2024-07-24T01:32:22.010000"],["2024-07-24T01:32:23.010000"],["2024-07-24T01:32:24.010000"],["2024-07-24T01:32:25.010000"],["2024-07-24T01:32:26.010000"],["2024-07-24T01:32:27.010000"],["2024-07-24T01:32:28.010000"],["2024-07-24T01:32:29.010000"],["2024-07-24T01:32:30.010000"],["2024-07-24T01:32:31.010000"],["2024-07-24T01:32:32.010000"],["2024-07-24T01:32:33.010000"],["2024-07-24T01:32:34.010000"],["2024-07-24T01:32:35.010000"],["2024-07-24T01:32:36.010000"],["2024-07-24T01:32:37.010000"],["2024-07-24T01:32:38.010000"],["2024-07-24T01:32:39.010000"],["2024-07-24T01:32:40.010000"],["2024-07-24T01:32:41.010000"],["2024-07-24T01:32:42.010000"],["2024-07-24T01:32:43.010000"],["2024-07-24T01:32:44.010000"],["2024-07-24T01:32:45.010000"],["2024-07-24T01:32:46.010000"],["2024-07-24T01:32:47.010000"],["2024-07-24T01:32:48.010000"],["2024-07-24T01:32:49.010000"],["2024-07-24T01:32:50.010000"],["2024-07-24T01:32:51.010000"],["2024-07-24T01:32:52.010000"],["2024-07-24T01:32:53.010000"],["2024-07-24T01:32:54.010000"],["2024-07-24T01:32:55.010000"],["2024-07-24T01:32:56.010000"],["2024-07-24T01:32:57.010000"],["2024-07-24T01:32:58.010000"],["2024-07-24T01:32:59.010000"],["2024-07-24T01:33:00.010000"],["2024-07-24T01:33:01.010000"],["2024-07-24T01:33:02.010000"],["2024-07-24T01:33:03.010000"],["2024-07-24T01:33:04.010000"],["2024-07-24T01:33:05.010000"],["2024-07-24T01:33:06.010000"],["2024-07-24T01:33:07.010000"],["2024-07-24T01:33:08.010000"],["2024-07-24T01:33:09.010000"],["2024-07-24T01:33:10.010000"],["2024-07-24T01:33:11.010000"],["2024-07-24T01:33:12.010000"],["2024-07-24T01:33:13.010000"],["2024-07-24T01:33:14.010000"],["2024-07-24T01:33:15.010000"],["2024-07-24T01:33:16.010000"],["2024-07-24T01:33:17.010000"],["2024-07-24T01:33:18.010000"],["2024-07-24T01:33:19.010000"],["2024-07-24T01:33:20.010000"],["2024-07-24T01:33:21.010000"],["2024-07-24T01:33:22.010000"],["2024-07-24T01:33:23.010000"],["2024-07-24T01:33:24.010000"],["2024-07-24T01:33:25.010000"],["2024-07-24T01:33:26.010000"],["2024-07-24T01:33:27.010000"],["2024-07-24T01:33:28.010000"],["2024-07-24T01:33:29.010000"],["2024-07-24T01:33:30.010000"],["2024-07-24T01:33:31.010000"],["2024-07-24T01:33:32.010000"],["2024-07-24T01:33:33.010000"],["2024-07-24T01:33:34.010000"],["2024-07-24T01:33:35.010000"],["2024-07-24T01:33:36.010000"],["2024-07-24T01:33:37.010000"],["2024-07-24T01:33:38.010000"],["2024-07-24T01:33:39.010000"],["2024-07-24T01:33:40.010000"],["2024-07-24T01:33:41.010000"],["2024-07-24T01:33:42.010000"],["2024-07-24T01:33:43.010000"],["2024-07-24T01:33:44.010000"],["2024-07-24T01:33:45.010000"],["2024-07-24T01:33:46.010000"],["2024-07-24T01:33:47.010000"],["2024-07-24T01:33:48.010000"],["2024-07-24T01:33:49.010000"],["2024-07-24T01:33:50.010000"],["2024-07-24T01:33:51.010000"],["2024-07-24T01:33:52.010000"],["2024-07-24T01:33:53.010000"],["2024-07-24T01:33:54.010000"],["2024-07-24T01:33:55.010000"],["2024-07-24T01:33:56.010000"],["2024-07-24T01:33:57.010000"],["2024-07-24T01:33:58.010000"],["2024-07-24T01:33:59.010000"],["2024-07-24T01:34:00.010000"],["2024-07-24T01:34:01.010000"],["2024-07-24T01:34:02.010000"],["2024-07-24T01:34:03.010000"],["2024-07-24T01:34:04.010000"],["2024-07-24T01:34:05.010000"],["2024-07-24T01:34:06.010000"],["2024-07-24T01:34:07.010000"],["2024-07-24T01:34:08.010000"],["2024-07-24T01:34:09.010000"],["2024-07-24T01:34:10.010000"],["2024-07-24T01:34:11.010000"],["2024-07-24T01:34:12.010000"],["2024-07-24T01:34:13.010000"],["2024-07-24T01:34:14.010000"],["2024-07-24T01:34:15.010000"],["2024-07-24T01:34:16.010000"],["2024-07-24T01:34:17.010000"],["2024-07-24T01:34:18.010000"],["2024-07-24T01:34:19.010000"],["2024-07-24T01:34:20.010000"],["2024-07-24T01:34:21.010000"],["2024-07-24T01:34:22.010000"],["2024-07-24T01:34:23.010000"],["2024-07-24T01:34:24.010000"],["2024-07-24T01:34:25.010000"],["2024-07-24T01:34:26.010000"],["2024-07-24T01:34:27.010000"],["2024-07-24T01:34:28.010000"],["2024-07-24T01:34:29.010000"],["2024-07-24T01:34:30.010000"],["2024-07-24T01:34:31.010000"],["2024-07-24T01:34:32.010000"],["2024-07-24T01:34:33.010000"],["2024-07-24T01:34:34.010000"],["2024-07-24T01:34:35.010000"],["2024-07-24T01:34:36.010000"],["2024-07-24T01:34:37.010000"],["2024-07-24T01:34:38.010000"],["2024-07-24T01:34:39.010000"],["2024-07-24T01:34:40.010000"],["2024-07-24T01:34:41.010000"],["2024-07-24T01:34:42.010000"],["2024-07-24T01:34:43.010000"],["2024-07-24T01:34:44.010000"],["2024-07-24T01:34:45.010000"],["2024-07-24T01:34:46.010000"],["2024-07-24T01:34:47.010000"],["2024-07-24T01:34:48.010000"],["2024-07-24T01:34:49.010000"],["2024-07-24T01:34:50.010000"],["2024-07-24T01:34:51.010000"],["2024-07-24T01:34:52.010000"],["2024-07-24T01:34:53.010000"],["2024-07-24T01:34:54.010000"],["2024-07-24T01:34:55.010000"],["2024-07-24T01:34:56.010000"],["2024-07-24T01:34:57.010000"],["2024-07-24T01:34:58.010000"],["2024-07-24T01:34:59.010000"],["2024-07-24T01:35:00.010000"],["2024-07-24T01:35:01.010000"],["2024-07-24T01:35:02.010000"],["2024-07-24T01:35:03.010000"],["2024-07-24T01:35:04.010000"],["2024-07-24T01:35:05.010000"],["2024-07-24T01:35:06.010000"],["2024-07-24T01:35:07.010000"],["2024-07-24T01:35:08.010000"],["2024-07-24T01:35:09.010000"],["2024-07-24T01:35:10.010000"],["2024-07-24T01:35:11.010000"],["2024-07-24T01:35:12.010000"],["2024-07-24T01:35:13.010000"],["2024-07-24T01:35:14.010000"],["2024-07-24T01:35:15.010000"],["2024-07-24T01:35:16.010000"],["2024-07-24T01:35:17.010000"],["2024-07-24T01:35:18.010000"],["2024-07-24T01:35:19.010000"],["2024-07-24T01:35:20.010000"],["2024-07-24T01:35:21.010000"],["2024-07-24T01:35:22.010000"],["2024-07-24T01:35:23.010000"],["2024-07-24T01:35:24.010000"],["2024-07-24T01:35:25.010000"],["2024-07-24T01:35:26.010000"],["2024-07-24T01:35:27.010000"],["2024-07-24T01:35:28.010000"],["2024-07-24T01:35:29.010000"],["2024-07-24T01:35:30.010000"],["2024-07-24T01:35:31.010000"],["2024-07-24T01:35:32.010000"],["2024-07-24T01:35:33.010000"],["2024-07-24T01:35:34.010000"],["2024-07-24T01:35:35.010000"],["2024-07-24T01:35:36.010000"],["2024-07-24T01:35:37.010000"],["2024-07-24T01:35:38.010000"],["2024-07-24T01:35:39.010000"],["2024-07-24T01:35:40.010000"],["2024-07-24T01:35:41.010000"],["2024-07-24T01:35:42.010000"],["2024-07-24T01:35:43.010000"],["2024-07-24T01:35:44.010000"],["2024-07-24T01:35:45.010000"],["2024-07-24T01:35:46.010000"],["2024-07-24T01:35:47.010000"],["2024-07-24T01:35:48.010000"],["2024-07-24T01:35:49.010000"],["2024-07-24T01:35:50.010000"],["2024-07-24T01:35:51.010000"],["2024-07-24T01:35:52.010000"],["2024-07-24T01:35:53.010000"],["2024-07-24T01:35:54.010000"],["2024-07-24T01:35:55.010000"],["2024-07-24T01:35:56.010000"],["2024-07-24T01:35:57.010000"],["2024-07-24T01:35:58.010000"],["2024-07-24T01:35:59.010000"],["2024-07-24T01:36:00.010000"],["2024-07-24T01:36:01.010000"],["2024-07-24T01:36:02.010000"],["2024-07-24T01:36:03.010000"],["2024-07-24T01:36:04.010000"],["2024-07-24T01:36:05.010000"],["2024-07-24T01:36:06.010000"],["2024-07-24T01:36:07.010000"],["2024-07-24T01:36:08.010000"],["2024-07-24T01:36:09.010000"],["2024-07-24T01:36:10.010000"],["2024-07-24T01:36:11.010000"],["2024-07-24T01:36:12.010000"],["2024-07-24T01:36:13.010000"],["2024-07-24T01:36:14.010000"],["2024-07-24T01:36:15.010000"],["2024-07-24T01:36:16.010000"],["2024-07-24T01:36:17.010000"],["2024-07-24T01:36:18.010000"],["2024-07-24T01:36:19.010000"],["2024-07-24T01:36:20.010000"],["2024-07-24T01:36:21.010000"],["2024-07-24T01:36:22.010000"],["2024-07-24T01:36:23.010000"],["2024-07-24T01:36:24.010000"],["2024-07-24T01:36:25.010000"],["2024-07-24T01:36:26.010000"],["2024-07-24T01:36:27.010000"],["2024-07-24T01:36:28.010000"],["2024-07-24T01:36:29.010000"],["2024-07-24T01:36:30.010000"],["2024-07-24T01:36:31.010000"],["2024-07-24T01:36:32.010000"],["2024-07-24T01:36:33.010000"],["2024-07-24T01:36:34.010000"],["2024-07-24T01:36:35.010000"],["2024-07-24T01:36:36.010000"],["2024-07-24T01:36:37.010000"],["2024-07-24T01:36:38.010000"],["2024-07-24T01:36:39.010000"],["2024-07-24T01:36:40.010000"],["2024-07-24T01:36:41.010000"],["2024-07-24T01:36:42.010000"],["2024-07-24T01:36:43.010000"],["2024-07-24T01:36:44.010000"],["2024-07-24T01:36:45.010000"],["2024-07-24T01:36:46.010000"],["2024-07-24T01:36:47.010000"],["2024-07-24T01:36:48.010000"],["2024-07-24T01:36:49.010000"],["2024-07-24T01:36:50.010000"],["2024-07-24T01:36:51.010000"],["2024-07-24T01:36:52.010000"],["2024-07-24T01:36:53.010000"],["2024-07-24T01:36:54.010000"],["2024-07-24T01:36:55.010000"],["2024-07-24T01:36:56.010000"],["2024-07-24T01:36:57.010000"],["2024-07-24T01:36:58.010000"],["2024-07-24T01:36:59.010000"],["2024-07-24T01:37:00.010000"],["2024-07-24T01:37:01.010000"],["2024-07-24T01:37:02.010000"],["2024-07-24T01:37:03.010000"],["2024-07-24T01:37:04.010000"],["2024-07-24T01:37:05.010000"],["2024-07-24T01:37:06.010000"],["2024-07-24T01:37:07.010000"],["2024-07-24T01:37:08.010000"],["2024-07-24T01:37:09.010000"],["2024-07-24T01:37:10.010000"],["2024-07-24T01:37:11.010000"],["2024-07-24T01:37:12.010000"],["2024-07-24T01:37:13.010000"],["2024-07-24T01:37:14.010000"],["2024-07-24T01:37:15.010000"],["2024-07-24T01:37:16.010000"],["2024-07-24T01:37:17.010000"],["2024-07-24T01:37:18.010000"],["2024-07-24T01:37:19.010000"],["2024-07-24T01:37:20.010000"],["2024-07-24T01:37:21.010000"],["2024-07-24T01:37:22.010000"],["2024-07-24T01:37:23.010000"],["2024-07-24T01:37:24.010000"],["2024-07-24T01:37:25.010000"],["2024-07-24T01:37:26.010000"],["2024-07-24T01:37:27.010000"],["2024-07-24T01:37:28.010000"],["2024-07-24T01:37:29.010000"],["2024-07-24T01:37:30.010000"],["2024-07-24T01:37:31.010000"],["2024-07-24T01:37:32.010000"],["2024-07-24T01:37:33.010000"],["2024-07-24T01:37:34.010000"],["2024-07-24T01:37:35.010000"],["2024-07-24T01:37:36.010000"],["2024-07-24T01:37:37.010000"],["2024-07-24T01:37:38.010000"],["2024-07-24T01:37:39.010000"],["2024-07-24T01:37:40.010000"],["2024-07-24T01:37:41.010000"],["2024-07-24T01:37:42.010000"],["2024-07-24T01:37:43.010000"],["2024-07-24T01:37:44.010000"],["2024-07-24T01:37:45.010000"],["2024-07-24T01:37:46.010000"],["2024-07-24T01:37:47.010000"],["2024-07-24T01:37:48.010000"],["2024-07-24T01:37:49.010000"],["2024-07-24T01:37:50.010000"],["2024-07-24T01:37:51.010000"],["2024-07-24T01:37:52.010000"],["2024-07-24T01:37:53.010000"],["2024-07-24T01:37:54.010000"],["2024-07-24T01:37:55.010000"],["2024-07-24T01:37:56.010000"],["2024-07-24T01:37:57.010000"],["2024-07-24T01:37:58.010000"],["2024-07-24T01:37:59.010000"],["2024-07-24T01:38:00.010000"],["2024-07-24T01:38:01.010000"],["2024-07-24T01:38:02.010000"],["2024-07-24T01:38:03.010000"],["2024-07-24T01:38:04.010000"],["2024-07-24T01:38:05.010000"],["2024-07-24T01:38:06.010000"],["2024-07-24T01:38:07.010000"],["2024-07-24T01:38:08.010000"],["2024-07-24T01:38:09.010000"],["2024-07-24T01:38:10.010000"],["2024-07-24T01:38:11.010000"],["2024-07-24T01:38:12.010000"],["2024-07-24T01:38:13.010000"],["2024-07-24T01:38:14.010000"],["2024-07-24T01:38:15.010000"],["2024-07-24T01:38:16.010000"],["2024-07-24T01:38:17.010000"],["2024-07-24T01:38:18.010000"],["2024-07-24T01:38:19.010000"],["2024-07-24T01:38:20.010000"],["2024-07-24T01:38:21.010000"],["2024-07-24T01:38:22.010000"],["2024-07-24T01:38:23.010000"],["2024-07-24T01:38:24.010000"],["2024-07-24T01:38:25.010000"],["2024-07-24T01:38:26.010000"],["2024-07-24T01:38:27.010000"],["2024-07-24T01:38:28.010000"],["2024-07-24T01:38:29.010000"],["2024-07-24T01:38:30.010000"],["2024-07-24T01:38:31.010000"],["2024-07-24T01:38:32.010000"],["2024-07-24T01:38:33.010000"],["2024-07-24T01:38:34.010000"],["2024-07-24T01:38:35.010000"],["2024-07-24T01:38:36.010000"],["2024-07-24T01:38:37.010000"],["2024-07-24T01:38:38.010000"],["2024-07-24T01:38:39.010000"],["2024-07-24T01:38:40.010000"],["2024-07-24T01:38:41.010000"],["2024-07-24T01:38:42.010000"],["2024-07-24T01:38:43.010000"],["2024-07-24T01:38:44.010000"],["2024-07-24T01:38:45.010000"],["2024-07-24T01:38:46.010000"],["2024-07-24T01:38:47.010000"],["2024-07-24T01:38:48.010000"],["2024-07-24T01:38:49.010000"],["2024-07-24T01:38:50.010000"],["2024-07-24T01:38:51.010000"],["2024-07-24T01:38:52.010000"],["2024-07-24T01:38:53.010000"],["2024-07-24T01:38:54.010000"],["2024-07-24T01:38:55.010000"],["2024-07-24T01:38:56.010000"],["2024-07-24T01:38:57.010000"],["2024-07-24T01:38:58.010000"],["2024-07-24T01:38:59.010000"],["2024-07-24T01:39:00.010000"],["2024-07-24T01:39:01.010000"],["2024-07-24T01:39:02.010000"],["2024-07-24T01:39:03.010000"],["2024-07-24T01:39:04.010000"],["2024-07-24T01:39:05.010000"],["2024-07-24T01:39:06.010000"],["2024-07-24T01:39:07.010000"],["2024-07-24T01:39:08.010000"],["2024-07-24T01:39:09.010000"],["2024-07-24T01:39:10.010000"],["2024-07-24T01:39:11.010000"],["2024-07-24T01:39:12.010000"],["2024-07-24T01:39:13.010000"],["2024-07-24T01:39:14.010000"],["2024-07-24T01:39:15.010000"],["2024-07-24T01:39:16.010000"],["2024-07-24T01:39:17.010000"],["2024-07-24T01:39:18.010000"],["2024-07-24T01:39:19.010000"],["2024-07-24T01:39:20.010000"],["2024-07-24T01:39:21.010000"],["2024-07-24T01:39:22.010000"],["2024-07-24T01:39:23.010000"],["2024-07-24T01:39:24.010000"],["2024-07-24T01:39:25.010000"],["2024-07-24T01:39:26.010000"],["2024-07-24T01:39:27.010000"],["2024-07-24T01:39:28.010000"],["2024-07-24T01:39:29.010000"],["2024-07-24T01:39:30.010000"],["2024-07-24T01:39:31.010000"],["2024-07-24T01:39:32.010000"],["2024-07-24T01:39:33.010000"],["2024-07-24T01:39:34.010000"],["2024-07-24T01:39:35.010000"],["2024-07-24T01:39:36.010000"],["2024-07-24T01:39:37.010000"],["2024-07-24T01:39:38.010000"],["2024-07-24T01:39:39.010000"],["2024-07-24T01:39:40.010000"],["2024-07-24T01:39:41.010000"],["2024-07-24T01:39:42.010000"],["2024-07-24T01:39:43.010000"],["2024-07-24T01:39:44.010000"],["2024-07-24T01:39:45.010000"],["2024-07-24T01:39:46.010000"],["2024-07-24T01:39:47.010000"],["2024-07-24T01:39:48.010000"],["2024-07-24T01:39:49.010000"],["2024-07-24T01:39:50.010000"],["2024-07-24T01:39:51.010000"],["2024-07-24T01:39:52.010000"],["2024-07-24T01:39:53.010000"],["2024-07-24T01:39:54.010000"],["2024-07-24T01:39:55.010000"],["2024-07-24T01:39:56.010000"],["2024-07-24T01:39:57.010000"],["2024-07-24T01:39:58.010000"],["2024-07-24T01:39:59.010000"],["2024-07-24T01:40:00.010000"],["2024-07-24T01:40:01.010000"],["2024-07-24T01:40:02.010000"],["2024-07-24T01:40:03.010000"],["2024-07-24T01:40:04.010000"],["2024-07-24T01:40:05.010000"],["2024-07-24T01:40:06.010000"],["2024-07-24T01:40:07.010000"],["2024-07-24T01:40:08.010000"],["2024-07-24T01:40:09.010000"],["2024-07-24T01:40:10.010000"],["2024-07-24T01:40:11.010000"],["2024-07-24T01:40:12.010000"],["2024-07-24T01:40:13.010000"],["2024-07-24T01:40:14.010000"],["2024-07-24T01:40:15.010000"],["2024-07-24T01:40:16.010000"],["2024-07-24T01:40:17.010000"],["2024-07-24T01:40:18.010000"],["2024-07-24T01:40:19.010000"],["2024-07-24T01:40:20.010000"],["2024-07-24T01:40:21.010000"],["2024-07-24T01:40:22.010000"],["2024-07-24T01:40:23.010000"],["2024-07-24T01:40:24.010000"],["2024-07-24T01:40:25.010000"],["2024-07-24T01:40:26.010000"],["2024-07-24T01:40:27.010000"],["2024-07-24T01:40:28.010000"],["2024-07-24T01:40:29.010000"],["2024-07-24T01:40:30.010000"],["2024-07-24T01:40:31.010000"],["2024-07-24T01:40:32.010000"],["2024-07-24T01:40:33.010000"],["2024-07-24T01:40:34.010000"],["2024-07-24T01:40:35.010000"],["2024-07-24T01:40:36.010000"],["2024-07-24T01:40:37.010000"],["2024-07-24T01:40:38.010000"],["2024-07-24T01:40:39.010000"],["2024-07-24T01:40:40.010000"],["2024-07-24T01:40:41.010000"],["2024-07-24T01:40:42.010000"],["2024-07-24T01:40:43.010000"],["2024-07-24T01:40:44.010000"],["2024-07-24T01:40:45.010000"],["2024-07-24T01:40:46.010000"],["2024-07-24T01:40:47.010000"],["2024-07-24T01:40:48.010000"],["2024-07-24T01:40:49.010000"],["2024-07-24T01:40:50.010000"],["2024-07-24T01:40:51.010000"],["2024-07-24T01:40:52.010000"],["2024-07-24T01:40:53.010000"],["2024-07-24T01:40:54.010000"],["2024-07-24T01:40:55.010000"],["2024-07-24T01:40:56.010000"],["2024-07-24T01:40:57.010000"],["2024-07-24T01:40:58.010000"],["2024-07-24T01:40:59.010000"],["2024-07-24T01:41:00.010000"],["2024-07-24T01:41:01.010000"],["2024-07-24T01:41:02.010000"],["2024-07-24T01:41:03.010000"],["2024-07-24T01:41:04.010000"],["2024-07-24T01:41:05.010000"],["2024-07-24T01:41:06.010000"],["2024-07-24T01:41:07.010000"],["2024-07-24T01:41:08.010000"],["2024-07-24T01:41:09.010000"],["2024-07-24T01:41:10.010000"],["2024-07-24T01:41:11.010000"],["2024-07-24T01:41:12.010000"],["2024-07-24T01:41:13.010000"],["2024-07-24T01:41:14.010000"],["2024-07-24T01:41:15.010000"],["2024-07-24T01:41:16.010000"],["2024-07-24T01:41:17.010000"],["2024-07-24T01:41:18.010000"],["2024-07-24T01:41:19.010000"],["2024-07-24T01:41:20.010000"],["2024-07-24T01:41:21.010000"],["2024-07-24T01:41:22.010000"],["2024-07-24T01:41:23.010000"],["2024-07-24T01:41:24.010000"],["2024-07-24T01:41:25.010000"],["2024-07-24T01:41:26.010000"],["2024-07-24T01:41:27.010000"],["2024-07-24T01:41:28.010000"],["2024-07-24T01:41:29.010000"],["2024-07-24T01:41:30.010000"],["2024-07-24T01:41:31.010000"],["2024-07-24T01:41:32.010000"],["2024-07-24T01:41:33.010000"],["2024-07-24T01:41:34.010000"],["2024-07-24T01:41:35.010000"],["2024-07-24T01:41:36.010000"],["2024-07-24T01:41:37.010000"],["2024-07-24T01:41:38.010000"],["2024-07-24T01:41:39.010000"],["2024-07-24T01:41:40.010000"],["2024-07-24T01:41:41.010000"],["2024-07-24T01:41:42.010000"],["2024-07-24T01:41:43.010000"],["2024-07-24T01:41:44.010000"],["2024-07-24T01:41:45.010000"],["2024-07-24T01:41:46.010000"],["2024-07-24T01:41:47.010000"],["2024-07-24T01:41:48.010000"],["2024-07-24T01:41:49.010000"],["2024-07-24T01:41:50.010000"],["2024-07-24T01:41:51.010000"],["2024-07-24T01:41:52.010000"],["2024-07-24T01:41:53.010000"],["2024-07-24T01:41:54.010000"],["2024-07-24T01:41:55.010000"],["2024-07-24T01:41:56.010000"],["2024-07-24T01:41:57.010000"],["2024-07-24T01:41:58.010000"],["2024-07-24T01:41:59.010000"],["2024-07-24T01:42:00.010000"],["2024-07-24T01:42:01.010000"],["2024-07-24T01:42:02.010000"],["2024-07-24T01:42:03.010000"],["2024-07-24T01:42:04.010000"],["2024-07-24T01:42:05.010000"],["2024-07-24T01:42:06.010000"],["2024-07-24T01:42:07.010000"],["2024-07-24T01:42:08.010000"],["2024-07-24T01:42:09.010000"],["2024-07-24T01:42:10.010000"],["2024-07-24T01:42:11.010000"],["2024-07-24T01:42:12.010000"],["2024-07-24T01:42:13.010000"],["2024-07-24T01:42:14.010000"],["2024-07-24T01:42:15.010000"],["2024-07-24T01:42:16.010000"],["2024-07-24T01:42:17.010000"],["2024-07-24T01:42:18.010000"],["2024-07-24T01:42:19.010000"],["2024-07-24T01:42:20.010000"],["2024-07-24T01:42:21.010000"],["2024-07-24T01:42:22.010000"],["2024-07-24T01:42:23.010000"],["2024-07-24T01:42:24.010000"],["2024-07-24T01:42:25.010000"],["2024-07-24T01:42:26.010000"],["2024-07-24T01:42:27.010000"],["2024-07-24T01:42:28.010000"],["2024-07-24T01:42:29.010000"],["2024-07-24T01:42:30.010000"],["2024-07-24T01:42:31.010000"],["2024-07-24T01:42:32.010000"],["2024-07-24T01:42:33.010000"],["2024-07-24T01:42:34.010000"],["2024-07-24T01:42:35.010000"],["2024-07-24T01:42:36.010000"],["2024-07-24T01:42:37.010000"],["2024-07-24T01:42:38.010000"],["2024-07-24T01:42:39.010000"],["2024-07-24T01:42:40.010000"],["2024-07-24T01:42:41.010000"],["2024-07-24T01:42:42.010000"],["2024-07-24T01:42:43.010000"],["2024-07-24T01:42:44.010000"],["2024-07-24T01:42:45.010000"],["2024-07-24T01:42:46.010000"],["2024-07-24T01:42:47.010000"],["2024-07-24T01:42:48.010000"],["2024-07-24T01:42:49.010000"],["2024-07-24T01:42:50.010000"],["2024-07-24T01:42:51.010000"],["2024-07-24T01:42:52.010000"],["2024-07-24T01:42:53.010000"],["2024-07-24T01:42:54.010000"],["2024-07-24T01:42:55.010000"],["2024-07-24T01:42:56.010000"],["2024-07-24T01:42:57.010000"],["2024-07-24T01:42:58.010000"],["2024-07-24T01:42:59.010000"],["2024-07-24T01:43:00.010000"],["2024-07-24T01:43:01.010000"],["2024-07-24T01:43:02.010000"],["2024-07-24T01:43:03.010000"],["2024-07-24T01:43:04.010000"],["2024-07-24T01:43:05.010000"],["2024-07-24T01:43:06.010000"],["2024-07-24T01:43:07.010000"],["2024-07-24T01:43:08.010000"],["2024-07-24T01:43:09.010000"],["2024-07-24T01:43:10.010000"],["2024-07-24T01:43:11.010000"],["2024-07-24T01:43:12.010000"],["2024-07-24T01:43:13.010000"],["2024-07-24T01:43:14.010000"],["2024-07-24T01:43:15.010000"],["2024-07-24T01:43:16.010000"],["2024-07-24T01:43:17.010000"],["2024-07-24T01:43:18.010000"],["2024-07-24T01:43:19.010000"],["2024-07-24T01:43:20.010000"],["2024-07-24T01:43:21.010000"],["2024-07-24T01:43:22.010000"],["2024-07-24T01:43:23.010000"],["2024-07-24T01:43:24.010000"],["2024-07-24T01:43:25.010000"],["2024-07-24T01:43:26.010000"],["2024-07-24T01:43:27.010000"],["2024-07-24T01:43:28.010000"],["2024-07-24T01:43:29.010000"],["2024-07-24T01:43:30.010000"],["2024-07-24T01:43:31.010000"],["2024-07-24T01:43:32.010000"],["2024-07-24T01:43:33.010000"],["2024-07-24T01:43:34.010000"],["2024-07-24T01:43:35.010000"],["2024-07-24T01:43:36.010000"],["2024-07-24T01:43:37.010000"],["2024-07-24T01:43:38.010000"],["2024-07-24T01:43:39.010000"],["2024-07-24T01:43:40.010000"],["2024-07-24T01:43:41.010000"],["2024-07-24T01:43:42.010000"],["2024-07-24T01:43:43.010000"],["2024-07-24T01:43:44.010000"],["2024-07-24T01:43:45.010000"],["2024-07-24T01:43:46.010000"],["2024-07-24T01:43:47.010000"],["2024-07-24T01:43:48.010000"],["2024-07-24T01:43:49.010000"],["2024-07-24T01:43:50.010000"],["2024-07-24T01:43:51.010000"],["2024-07-24T01:43:52.010000"],["2024-07-24T01:43:53.010000"],["2024-07-24T01:43:54.010000"],["2024-07-24T01:43:55.010000"],["2024-07-24T01:43:56.010000"],["2024-07-24T01:43:57.010000"],["2024-07-24T01:43:58.010000"],["2024-07-24T01:43:59.010000"],["2024-07-24T01:44:00.010000"],["2024-07-24T01:44:01.010000"],["2024-07-24T01:44:02.010000"],["2024-07-24T01:44:03.010000"],["2024-07-24T01:44:04.010000"],["2024-07-24T01:44:05.010000"],["2024-07-24T01:44:06.010000"],["2024-07-24T01:44:07.010000"],["2024-07-24T01:44:08.010000"],["2024-07-24T01:44:09.010000"],["2024-07-24T01:44:10.010000"],["2024-07-24T01:44:11.010000"],["2024-07-24T01:44:12.010000"],["2024-07-24T01:44:13.010000"],["2024-07-24T01:44:14.010000"],["2024-07-24T01:44:15.010000"],["2024-07-24T01:44:16.010000"],["2024-07-24T01:44:17.010000"],["2024-07-24T01:44:18.010000"],["2024-07-24T01:44:19.010000"],["2024-07-24T01:44:20.010000"],["2024-07-24T01:44:21.010000"],["2024-07-24T01:44:22.010000"],["2024-07-24T01:44:23.010000"],["2024-07-24T01:44:24.010000"],["2024-07-24T01:44:25.010000"],["2024-07-24T01:44:26.010000"],["2024-07-24T01:44:27.010000"],["2024-07-24T01:44:28.010000"],["2024-07-24T01:44:29.010000"],["2024-07-24T01:44:30.010000"],["2024-07-24T01:44:31.010000"],["2024-07-24T01:44:32.010000"],["2024-07-24T01:44:33.010000"],["2024-07-24T01:44:34.010000"],["2024-07-24T01:44:35.010000"],["2024-07-24T01:44:36.010000"],["2024-07-24T01:44:37.010000"],["2024-07-24T01:44:38.010000"],["2024-07-24T01:44:39.010000"],["2024-07-24T01:44:40.010000"],["2024-07-24T01:44:41.010000"],["2024-07-24T01:44:42.010000"],["2024-07-24T01:44:43.010000"],["2024-07-24T01:44:44.010000"],["2024-07-24T01:44:45.010000"],["2024-07-24T01:44:46.010000"],["2024-07-24T01:44:47.010000"],["2024-07-24T01:44:48.010000"],["2024-07-24T01:44:49.010000"],["2024-07-24T01:44:50.010000"],["2024-07-24T01:44:51.010000"],["2024-07-24T01:44:52.010000"],["2024-07-24T01:44:53.010000"],["2024-07-24T01:44:54.010000"],["2024-07-24T01:44:55.010000"],["2024-07-24T01:44:56.010000"],["2024-07-24T01:44:57.010000"],["2024-07-24T01:44:58.010000"],["2024-07-24T01:44:59.010000"],["2024-07-24T01:45:00.010000"],["2024-07-24T01:45:01.010000"],["2024-07-24T01:45:02.010000"],["2024-07-24T01:45:03.010000"],["2024-07-24T01:45:04.010000"],["2024-07-24T01:45:05.010000"],["2024-07-24T01:45:06.010000"],["2024-07-24T01:45:07.010000"],["2024-07-24T01:45:08.010000"],["2024-07-24T01:45:09.010000"],["2024-07-24T01:45:10.010000"],["2024-07-24T01:45:11.010000"],["2024-07-24T01:45:12.010000"],["2024-07-24T01:45:13.010000"],["2024-07-24T01:45:14.010000"],["2024-07-24T01:45:15.010000"],["2024-07-24T01:45:16.010000"],["2024-07-24T01:45:17.010000"],["2024-07-24T01:45:18.010000"],["2024-07-24T01:45:19.010000"],["2024-07-24T01:45:20.010000"],["2024-07-24T01:45:21.010000"],["2024-07-24T01:45:22.010000"],["2024-07-24T01:45:23.010000"],["2024-07-24T01:45:24.010000"],["2024-07-24T01:45:25.010000"],["2024-07-24T01:45:26.010000"],["2024-07-24T01:45:27.010000"],["2024-07-24T01:45:28.010000"],["2024-07-24T01:45:29.010000"],["2024-07-24T01:45:30.010000"],["2024-07-24T01:45:31.010000"],["2024-07-24T01:45:32.010000"],["2024-07-24T01:45:33.010000"],["2024-07-24T01:45:34.010000"],["2024-07-24T01:45:35.010000"],["2024-07-24T01:45:36.010000"],["2024-07-24T01:45:37.010000"],["2024-07-24T01:45:38.010000"],["2024-07-24T01:45:39.010000"],["2024-07-24T01:45:40.010000"],["2024-07-24T01:45:41.010000"],["2024-07-24T01:45:42.010000"],["2024-07-24T01:45:43.010000"],["2024-07-24T01:45:44.010000"],["2024-07-24T01:45:45.010000"],["2024-07-24T01:45:46.010000"],["2024-07-24T01:45:47.010000"],["2024-07-24T01:45:48.010000"],["2024-07-24T01:45:49.010000"],["2024-07-24T01:45:50.010000"],["2024-07-24T01:45:51.010000"],["2024-07-24T01:45:52.010000"],["2024-07-24T01:45:53.010000"],["2024-07-24T01:45:54.010000"],["2024-07-24T01:45:55.010000"],["2024-07-24T01:45:56.010000"],["2024-07-24T01:45:57.010000"],["2024-07-24T01:45:58.010000"],["2024-07-24T01:45:59.010000"],["2024-07-24T01:46:00.010000"],["2024-07-24T01:46:01.010000"],["2024-07-24T01:46:02.010000"],["2024-07-24T01:46:03.010000"],["2024-07-24T01:46:04.010000"],["2024-07-24T01:46:05.010000"],["2024-07-24T01:46:06.010000"],["2024-07-24T01:46:07.010000"],["2024-07-24T01:46:08.010000"],["2024-07-24T01:46:09.010000"],["2024-07-24T01:46:10.010000"],["2024-07-24T01:46:11.010000"],["2024-07-24T01:46:12.010000"],["2024-07-24T01:46:13.010000"],["2024-07-24T01:46:14.010000"],["2024-07-24T01:46:15.010000"],["2024-07-24T01:46:16.010000"],["2024-07-24T01:46:17.010000"],["2024-07-24T01:46:18.010000"],["2024-07-24T01:46:19.010000"],["2024-07-24T01:46:20.010000"],["2024-07-24T01:46:21.010000"],["2024-07-24T01:46:22.010000"],["2024-07-24T01:46:23.010000"],["2024-07-24T01:46:24.010000"],["2024-07-24T01:46:25.010000"],["2024-07-24T01:46:26.010000"],["2024-07-24T01:46:27.010000"],["2024-07-24T01:46:28.010000"],["2024-07-24T01:46:29.010000"],["2024-07-24T01:46:30.010000"],["2024-07-24T01:46:31.010000"],["2024-07-24T01:46:32.010000"],["2024-07-24T01:46:33.010000"],["2024-07-24T01:46:34.010000"],["2024-07-24T01:46:35.010000"],["2024-07-24T01:46:36.010000"],["2024-07-24T01:46:37.010000"],["2024-07-24T01:46:38.010000"],["2024-07-24T01:46:39.010000"],["2024-07-24T01:46:40.010000"],["2024-07-24T01:46:41.010000"],["2024-07-24T01:46:42.010000"],["2024-07-24T01:46:43.010000"],["2024-07-24T01:46:44.010000"],["2024-07-24T01:46:45.010000"],["2024-07-24T01:46:46.010000"],["2024-07-24T01:46:47.010000"],["2024-07-24T01:46:48.010000"],["2024-07-24T01:46:49.010000"],["2024-07-24T01:46:50.010000"],["2024-07-24T01:46:51.010000"],["2024-07-24T01:46:52.010000"],["2024-07-24T01:46:53.010000"],["2024-07-24T01:46:54.010000"],["2024-07-24T01:46:55.010000"],["2024-07-24T01:46:56.010000"],["2024-07-24T01:46:57.010000"],["2024-07-24T01:46:58.010000"],["2024-07-24T01:46:59.010000"],["2024-07-24T01:47:00.010000"],["2024-07-24T01:47:01.010000"],["2024-07-24T01:47:02.010000"],["2024-07-24T01:47:03.010000"],["2024-07-24T01:47:04.010000"],["2024-07-24T01:47:05.010000"],["2024-07-24T01:47:06.010000"],["2024-07-24T01:47:07.010000"],["2024-07-24T01:47:08.010000"],["2024-07-24T01:47:09.010000"],["2024-07-24T01:47:10.010000"],["2024-07-24T01:47:11.010000"],["2024-07-24T01:47:12.010000"],["2024-07-24T01:47:13.010000"],["2024-07-24T01:47:14.010000"],["2024-07-24T01:47:15.010000"],["2024-07-24T01:47:16.010000"],["2024-07-24T01:47:17.010000"],["2024-07-24T01:47:18.010000"],["2024-07-24T01:47:19.010000"],["2024-07-24T01:47:20.010000"],["2024-07-24T01:47:21.010000"],["2024-07-24T01:47:22.010000"],["2024-07-24T01:47:23.010000"],["2024-07-24T01:47:24.010000"],["2024-07-24T01:47:25.010000"],["2024-07-24T01:47:26.010000"],["2024-07-24T01:47:27.010000"],["2024-07-24T01:47:28.010000"],["2024-07-24T01:47:29.010000"],["2024-07-24T01:47:30.010000"],["2024-07-24T01:47:31.010000"],["2024-07-24T01:47:32.010000"],["2024-07-24T01:47:33.010000"],["2024-07-24T01:47:34.010000"],["2024-07-24T01:47:35.010000"],["2024-07-24T01:47:36.010000"],["2024-07-24T01:47:37.010000"],["2024-07-24T01:47:38.010000"],["2024-07-24T01:47:39.010000"],["2024-07-24T01:47:40.010000"],["2024-07-24T01:47:41.010000"],["2024-07-24T01:47:42.010000"],["2024-07-24T01:47:43.010000"],["2024-07-24T01:47:44.010000"],["2024-07-24T01:47:45.010000"],["2024-07-24T01:47:46.010000"],["2024-07-24T01:47:47.010000"],["2024-07-24T01:47:48.010000"],["2024-07-24T01:47:49.010000"],["2024-07-24T01:47:50.010000"],["2024-07-24T01:47:51.010000"],["2024-07-24T01:47:52.010000"],["2024-07-24T01:47:53.010000"],["2024-07-24T01:47:54.010000"],["2024-07-24T01:47:55.010000"],["2024-07-24T01:47:56.010000"],["2024-07-24T01:47:57.010000"],["2024-07-24T01:47:58.010000"],["2024-07-24T01:47:59.010000"],["2024-07-24T01:48:00.010000"],["2024-07-24T01:48:01.010000"],["2024-07-24T01:48:02.010000"],["2024-07-24T01:48:03.010000"],["2024-07-24T01:48:04.010000"],["2024-07-24T01:48:05.010000"],["2024-07-24T01:48:06.010000"],["2024-07-24T01:48:07.010000"],["2024-07-24T01:48:08.010000"],["2024-07-24T01:48:09.010000"],["2024-07-24T01:48:10.010000"],["2024-07-24T01:48:11.010000"],["2024-07-24T01:48:12.010000"],["2024-07-24T01:48:13.010000"],["2024-07-24T01:48:14.010000"],["2024-07-24T01:48:15.010000"],["2024-07-24T01:48:16.010000"],["2024-07-24T01:48:17.010000"],["2024-07-24T01:48:18.010000"],["2024-07-24T01:48:19.010000"],["2024-07-24T01:48:20.010000"],["2024-07-24T01:48:21.010000"],["2024-07-24T01:48:22.010000"],["2024-07-24T01:48:23.010000"],["2024-07-24T01:48:24.010000"],["2024-07-24T01:48:25.010000"],["2024-07-24T01:48:26.010000"],["2024-07-24T01:48:27.010000"],["2024-07-24T01:48:28.010000"],["2024-07-24T01:48:29.010000"],["2024-07-24T01:48:30.010000"],["2024-07-24T01:48:31.010000"],["2024-07-24T01:48:32.010000"],["2024-07-24T01:48:33.010000"],["2024-07-24T01:48:34.010000"],["2024-07-24T01:48:35.010000"],["2024-07-24T01:48:36.010000"],["2024-07-24T01:48:37.010000"],["2024-07-24T01:48:38.010000"],["2024-07-24T01:48:39.010000"],["2024-07-24T01:48:40.010000"],["2024-07-24T01:48:41.010000"],["2024-07-24T01:48:42.010000"],["2024-07-24T01:48:43.010000"],["2024-07-24T01:48:44.010000"],["2024-07-24T01:48:45.010000"],["2024-07-24T01:48:46.010000"],["2024-07-24T01:48:47.010000"],["2024-07-24T01:48:48.010000"],["2024-07-24T01:48:49.010000"],["2024-07-24T01:48:50.010000"],["2024-07-24T01:48:51.010000"],["2024-07-24T01:48:52.010000"],["2024-07-24T01:48:53.010000"],["2024-07-24T01:48:54.010000"],["2024-07-24T01:48:55.010000"],["2024-07-24T01:48:56.010000"],["2024-07-24T01:48:57.010000"],["2024-07-24T01:48:58.010000"],["2024-07-24T01:48:59.010000"],["2024-07-24T01:49:00.010000"],["2024-07-24T01:49:01.010000"],["2024-07-24T01:49:02.010000"],["2024-07-24T01:49:03.010000"],["2024-07-24T01:49:04.010000"],["2024-07-24T01:49:05.010000"],["2024-07-24T01:49:06.010000"],["2024-07-24T01:49:07.010000"],["2024-07-24T01:49:08.010000"],["2024-07-24T01:49:09.010000"],["2024-07-24T01:49:10.010000"],["2024-07-24T01:49:11.010000"],["2024-07-24T01:49:12.010000"],["2024-07-24T01:49:13.010000"],["2024-07-24T01:49:14.010000"],["2024-07-24T01:49:15.010000"],["2024-07-24T01:49:16.010000"],["2024-07-24T01:49:17.010000"],["2024-07-24T01:49:18.010000"],["2024-07-24T01:49:19.010000"],["2024-07-24T01:49:20.010000"],["2024-07-24T01:49:21.010000"],["2024-07-24T01:49:22.010000"],["2024-07-24T01:49:23.010000"],["2024-07-24T01:49:24.010000"],["2024-07-24T01:49:25.010000"],["2024-07-24T01:49:26.010000"],["2024-07-24T01:49:27.010000"],["2024-07-24T01:49:28.010000"],["2024-07-24T01:49:29.010000"],["2024-07-24T01:49:30.010000"],["2024-07-24T01:49:31.010000"],["2024-07-24T01:49:32.010000"],["2024-07-24T01:49:33.010000"],["2024-07-24T01:49:34.010000"],["2024-07-24T01:49:35.010000"],["2024-07-24T01:49:36.010000"],["2024-07-24T01:49:37.010000"],["2024-07-24T01:49:38.010000"],["2024-07-24T01:49:39.010000"],["2024-07-24T01:49:40.010000"],["2024-07-24T01:49:41.010000"],["2024-07-24T01:49:42.010000"],["2024-07-24T01:49:43.010000"],["2024-07-24T01:49:44.010000"],["2024-07-24T01:49:45.010000"],["2024-07-24T01:49:46.010000"],["2024-07-24T01:49:47.010000"],["2024-07-24T01:49:48.010000"],["2024-07-24T01:49:49.010000"],["2024-07-24T01:49:50.010000"],["2024-07-24T01:49:51.010000"],["2024-07-24T01:49:52.010000"],["2024-07-24T01:49:53.010000"],["2024-07-24T01:49:54.010000"],["2024-07-24T01:49:55.010000"],["2024-07-24T01:49:56.010000"],["2024-07-24T01:49:57.010000"],["2024-07-24T01:49:58.010000"],["2024-07-24T01:49:59.010000"],["2024-07-24T01:50:00.010000"],["2024-07-24T01:50:01.010000"],["2024-07-24T01:50:02.010000"],["2024-07-24T01:50:03.010000"],["2024-07-24T01:50:04.010000"],["2024-07-24T01:50:05.010000"],["2024-07-24T01:50:06.010000"],["2024-07-24T01:50:07.010000"],["2024-07-24T01:50:08.010000"],["2024-07-24T01:50:09.010000"],["2024-07-24T01:50:10.010000"],["2024-07-24T01:50:11.010000"],["2024-07-24T01:50:12.010000"],["2024-07-24T01:50:13.010000"],["2024-07-24T01:50:14.010000"],["2024-07-24T01:50:15.010000"],["2024-07-24T01:50:16.010000"],["2024-07-24T01:50:17.010000"],["2024-07-24T01:50:18.010000"],["2024-07-24T01:50:19.010000"],["2024-07-24T01:50:20.010000"],["2024-07-24T01:50:21.010000"],["2024-07-24T01:50:22.010000"],["2024-07-24T01:50:23.010000"],["2024-07-24T01:50:24.010000"],["2024-07-24T01:50:25.010000"],["2024-07-24T01:50:26.010000"],["2024-07-24T01:50:27.010000"],["2024-07-24T01:50:28.010000"],["2024-07-24T01:50:29.010000"],["2024-07-24T01:50:30.010000"],["2024-07-24T01:50:31.010000"],["2024-07-24T01:50:32.010000"],["2024-07-24T01:50:33.010000"],["2024-07-24T01:50:34.010000"],["2024-07-24T01:50:35.010000"],["2024-07-24T01:50:36.010000"],["2024-07-24T01:50:37.010000"],["2024-07-24T01:50:38.010000"],["2024-07-24T01:50:39.010000"],["2024-07-24T01:50:40.010000"],["2024-07-24T01:50:41.010000"],["2024-07-24T01:50:42.010000"],["2024-07-24T01:50:43.010000"],["2024-07-24T01:50:44.010000"],["2024-07-24T01:50:45.010000"],["2024-07-24T01:50:46.010000"],["2024-07-24T01:50:47.010000"],["2024-07-24T01:50:48.010000"],["2024-07-24T01:50:49.010000"],["2024-07-24T01:50:50.010000"],["2024-07-24T01:50:51.010000"],["2024-07-24T01:50:52.010000"],["2024-07-24T01:50:53.010000"],["2024-07-24T01:50:54.010000"],["2024-07-24T01:50:55.010000"],["2024-07-24T01:50:56.010000"],["2024-07-24T01:50:57.010000"],["2024-07-24T01:50:58.010000"],["2024-07-24T01:50:59.010000"],["2024-07-24T01:51:00.010000"],["2024-07-24T01:51:01.010000"],["2024-07-24T01:51:02.010000"],["2024-07-24T01:51:03.010000"],["2024-07-24T01:51:04.010000"],["2024-07-24T01:51:05.010000"],["2024-07-24T01:51:06.010000"],["2024-07-24T01:51:07.010000"],["2024-07-24T01:51:08.010000"],["2024-07-24T01:51:09.010000"],["2024-07-24T01:51:10.010000"],["2024-07-24T01:51:11.010000"],["2024-07-24T01:51:12.010000"],["2024-07-24T01:51:13.010000"],["2024-07-24T01:51:14.010000"],["2024-07-24T01:51:15.010000"],["2024-07-24T01:51:16.010000"],["2024-07-24T01:51:17.010000"],["2024-07-24T01:51:18.010000"],["2024-07-24T01:51:19.010000"],["2024-07-24T01:51:20.010000"],["2024-07-24T01:51:21.010000"],["2024-07-24T01:51:22.010000"],["2024-07-24T01:51:23.010000"],["2024-07-24T01:51:24.010000"],["2024-07-24T01:51:25.010000"],["2024-07-24T01:51:26.010000"],["2024-07-24T01:51:27.010000"],["2024-07-24T01:51:28.010000"],["2024-07-24T01:51:29.010000"],["2024-07-24T01:51:30.010000"],["2024-07-24T01:51:31.010000"],["2024-07-24T01:51:32.010000"],["2024-07-24T01:51:33.010000"],["2024-07-24T01:51:34.010000"],["2024-07-24T01:51:35.010000"],["2024-07-24T01:51:36.010000"],["2024-07-24T01:51:37.010000"],["2024-07-24T01:51:38.010000"],["2024-07-24T01:51:39.010000"],["2024-07-24T01:51:40.010000"],["2024-07-24T01:51:41.010000"],["2024-07-24T01:51:42.010000"],["2024-07-24T01:51:43.010000"],["2024-07-24T01:51:44.010000"],["2024-07-24T01:51:45.010000"],["2024-07-24T01:51:46.010000"],["2024-07-24T01:51:47.010000"],["2024-07-24T01:51:48.010000"],["2024-07-24T01:51:49.010000"],["2024-07-24T01:51:50.010000"],["2024-07-24T01:51:51.010000"],["2024-07-24T01:51:52.010000"],["2024-07-24T01:51:53.010000"],["2024-07-24T01:51:54.010000"],["2024-07-24T01:51:55.010000"],["2024-07-24T01:51:56.010000"],["2024-07-24T01:51:57.010000"],["2024-07-24T01:51:58.010000"],["2024-07-24T01:51:59.010000"],["2024-07-24T01:52:00.010000"],["2024-07-24T01:52:01.010000"],["2024-07-24T01:52:02.010000"],["2024-07-24T01:52:03.010000"],["2024-07-24T01:52:04.010000"],["2024-07-24T01:52:05.010000"],["2024-07-24T01:52:06.010000"],["2024-07-24T01:52:07.010000"],["2024-07-24T01:52:08.010000"],["2024-07-24T01:52:09.010000"],["2024-07-24T01:52:10.010000"],["2024-07-24T01:52:11.010000"],["2024-07-24T01:52:12.010000"],["2024-07-24T01:52:13.010000"],["2024-07-24T01:52:14.010000"],["2024-07-24T01:52:15.010000"],["2024-07-24T01:52:16.010000"],["2024-07-24T01:52:17.010000"],["2024-07-24T01:52:18.010000"],["2024-07-24T01:52:19.010000"],["2024-07-24T01:52:20.010000"],["2024-07-24T01:52:21.010000"],["2024-07-24T01:52:22.010000"],["2024-07-24T01:52:23.010000"],["2024-07-24T01:52:24.010000"],["2024-07-24T01:52:25.010000"],["2024-07-24T01:52:26.010000"],["2024-07-24T01:52:27.010000"],["2024-07-24T01:52:28.010000"],["2024-07-24T01:52:29.010000"],["2024-07-24T01:52:30.010000"],["2024-07-24T01:52:31.010000"],["2024-07-24T01:52:32.010000"],["2024-07-24T01:52:33.010000"],["2024-07-24T01:52:34.010000"],["2024-07-24T01:52:35.010000"],["2024-07-24T01:52:36.010000"],["2024-07-24T01:52:37.010000"],["2024-07-24T01:52:38.010000"],["2024-07-24T01:52:39.010000"],["2024-07-24T01:52:40.010000"],["2024-07-24T01:52:41.010000"],["2024-07-24T01:52:42.010000"],["2024-07-24T01:52:43.010000"],["2024-07-24T01:52:44.010000"],["2024-07-24T01:52:45.010000"],["2024-07-24T01:52:46.010000"],["2024-07-24T01:52:47.010000"],["2024-07-24T01:52:48.010000"],["2024-07-24T01:52:49.010000"],["2024-07-24T01:52:50.010000"],["2024-07-24T01:52:51.010000"],["2024-07-24T01:52:52.010000"],["2024-07-24T01:52:53.010000"],["2024-07-24T01:52:54.010000"],["2024-07-24T01:52:55.010000"],["2024-07-24T01:52:56.010000"],["2024-07-24T01:52:57.010000"],["2024-07-24T01:52:58.010000"],["2024-07-24T01:52:59.010000"],["2024-07-24T01:53:00.010000"],["2024-07-24T01:53:01.010000"],["2024-07-24T01:53:02.010000"],["2024-07-24T01:53:03.010000"],["2024-07-24T01:53:04.010000"],["2024-07-24T01:53:05.010000"],["2024-07-24T01:53:06.010000"],["2024-07-24T01:53:07.010000"],["2024-07-24T01:53:08.010000"],["2024-07-24T01:53:09.010000"],["2024-07-24T01:53:10.010000"],["2024-07-24T01:53:11.010000"],["2024-07-24T01:53:12.010000"],["2024-07-24T01:53:13.010000"],["2024-07-24T01:53:14.010000"],["2024-07-24T01:53:15.010000"],["2024-07-24T01:53:16.010000"],["2024-07-24T01:53:17.010000"],["2024-07-24T01:53:18.010000"],["2024-07-24T01:53:19.010000"],["2024-07-24T01:53:20.010000"],["2024-07-24T01:53:21.010000"],["2024-07-24T01:53:22.010000"],["2024-07-24T01:53:23.010000"],["2024-07-24T01:53:24.010000"],["2024-07-24T01:53:25.010000"],["2024-07-24T01:53:26.010000"],["2024-07-24T01:53:27.010000"],["2024-07-24T01:53:28.010000"],["2024-07-24T01:53:29.010000"],["2024-07-24T01:53:30.010000"],["2024-07-24T01:53:31.010000"],["2024-07-24T01:53:32.010000"],["2024-07-24T01:53:33.010000"],["2024-07-24T01:53:34.010000"],["2024-07-24T01:53:35.010000"],["2024-07-24T01:53:36.010000"],["2024-07-24T01:53:37.010000"],["2024-07-24T01:53:38.010000"],["2024-07-24T01:53:39.010000"],["2024-07-24T01:53:40.010000"],["2024-07-24T01:53:41.010000"],["2024-07-24T01:53:42.010000"],["2024-07-24T01:53:43.010000"],["2024-07-24T01:53:44.010000"],["2024-07-24T01:53:45.010000"],["2024-07-24T01:53:46.010000"],["2024-07-24T01:53:47.010000"],["2024-07-24T01:53:48.010000"],["2024-07-24T01:53:49.010000"],["2024-07-24T01:53:50.010000"],["2024-07-24T01:53:51.010000"],["2024-07-24T01:53:52.010000"],["2024-07-24T01:53:53.010000"],["2024-07-24T01:53:54.010000"],["2024-07-24T01:53:55.010000"],["2024-07-24T01:53:56.010000"],["2024-07-24T01:53:57.010000"],["2024-07-24T01:53:58.010000"],["2024-07-24T01:53:59.010000"],["2024-07-24T01:54:00.010000"],["2024-07-24T01:54:01.010000"],["2024-07-24T01:54:02.010000"],["2024-07-24T01:54:03.010000"],["2024-07-24T01:54:04.010000"],["2024-07-24T01:54:05.010000"],["2024-07-24T01:54:06.010000"],["2024-07-24T01:54:07.010000"],["2024-07-24T01:54:08.010000"],["2024-07-24T01:54:09.010000"],["2024-07-24T01:54:10.010000"],["2024-07-24T01:54:11.010000"],["2024-07-24T01:54:12.010000"],["2024-07-24T01:54:13.010000"],["2024-07-24T01:54:14.010000"],["2024-07-24T01:54:15.010000"],["2024-07-24T01:54:16.010000"],["2024-07-24T01:54:17.010000"],["2024-07-24T01:54:18.010000"],["2024-07-24T01:54:19.010000"],["2024-07-24T01:54:20.010000"],["2024-07-24T01:54:21.010000"],["2024-07-24T01:54:22.010000"],["2024-07-24T01:54:23.010000"],["2024-07-24T01:54:24.010000"],["2024-07-24T01:54:25.010000"],["2024-07-24T01:54:26.010000"],["2024-07-24T01:54:27.010000"],["2024-07-24T01:54:28.010000"],["2024-07-24T01:54:29.010000"],["2024-07-24T01:54:30.010000"],["2024-07-24T01:54:31.010000"],["2024-07-24T01:54:32.010000"],["2024-07-24T01:54:33.010000"],["2024-07-24T01:54:34.010000"],["2024-07-24T01:54:35.010000"],["2024-07-24T01:54:36.010000"],["2024-07-24T01:54:37.010000"],["2024-07-24T01:54:38.010000"],["2024-07-24T01:54:39.010000"],["2024-07-24T01:54:40.010000"],["2024-07-24T01:54:41.010000"],["2024-07-24T01:54:42.010000"],["2024-07-24T01:54:43.010000"],["2024-07-24T01:54:44.010000"],["2024-07-24T01:54:45.010000"],["2024-07-24T01:54:46.010000"],["2024-07-24T01:54:47.010000"],["2024-07-24T01:54:48.010000"],["2024-07-24T01:54:49.010000"],["2024-07-24T01:54:50.010000"],["2024-07-24T01:54:51.010000"],["2024-07-24T01:54:52.010000"],["2024-07-24T01:54:53.010000"],["2024-07-24T01:54:54.010000"],["2024-07-24T01:54:55.010000"],["2024-07-24T01:54:56.010000"],["2024-07-24T01:54:57.010000"],["2024-07-24T01:54:58.010000"],["2024-07-24T01:54:59.010000"],["2024-07-24T01:55:00.010000"],["2024-07-24T01:55:01.010000"],["2024-07-24T01:55:02.010000"],["2024-07-24T01:55:03.010000"],["2024-07-24T01:55:04.010000"],["2024-07-24T01:55:05.010000"],["2024-07-24T01:55:06.010000"],["2024-07-24T01:55:07.010000"],["2024-07-24T01:55:08.010000"],["2024-07-24T01:55:09.010000"],["2024-07-24T01:55:10.010000"],["2024-07-24T01:55:11.010000"],["2024-07-24T01:55:12.010000"],["2024-07-24T01:55:13.010000"],["2024-07-24T01:55:14.010000"],["2024-07-24T01:55:15.010000"],["2024-07-24T01:55:16.010000"],["2024-07-24T01:55:17.010000"],["2024-07-24T01:55:18.010000"],["2024-07-24T01:55:19.010000"],["2024-07-24T01:55:20.010000"],["2024-07-24T01:55:21.010000"],["2024-07-24T01:55:22.010000"],["2024-07-24T01:55:23.010000"],["2024-07-24T01:55:24.010000"],["2024-07-24T01:55:25.010000"],["2024-07-24T01:55:26.010000"],["2024-07-24T01:55:27.010000"],["2024-07-24T01:55:28.010000"],["2024-07-24T01:55:29.010000"],["2024-07-24T01:55:30.010000"],["2024-07-24T01:55:31.010000"],["2024-07-24T01:55:32.010000"],["2024-07-24T01:55:33.010000"],["2024-07-24T01:55:34.010000"],["2024-07-24T01:55:35.010000"],["2024-07-24T01:55:36.010000"],["2024-07-24T01:55:37.010000"],["2024-07-24T01:55:38.010000"],["2024-07-24T01:55:39.010000"],["2024-07-24T01:55:40.010000"],["2024-07-24T01:55:41.010000"],["2024-07-24T01:55:42.010000"],["2024-07-24T01:55:43.010000"],["2024-07-24T01:55:44.010000"],["2024-07-24T01:55:45.010000"],["2024-07-24T01:55:46.010000"],["2024-07-24T01:55:47.010000"],["2024-07-24T01:55:48.010000"],["2024-07-24T01:55:49.010000"],["2024-07-24T01:55:50.010000"],["2024-07-24T01:55:51.010000"],["2024-07-24T01:55:52.010000"],["2024-07-24T01:55:53.010000"],["2024-07-24T01:55:54.010000"],["2024-07-24T01:55:55.010000"],["2024-07-24T01:55:56.010000"],["2024-07-24T01:55:57.010000"],["2024-07-24T01:55:58.010000"],["2024-07-24T01:55:59.010000"],["2024-07-24T01:56:00.010000"],["2024-07-24T01:56:01.010000"],["2024-07-24T01:56:02.010000"],["2024-07-24T01:56:03.010000"],["2024-07-24T01:56:04.010000"],["2024-07-24T01:56:05.010000"],["2024-07-24T01:56:06.010000"],["2024-07-24T01:56:07.010000"],["2024-07-24T01:56:08.010000"],["2024-07-24T01:56:09.010000"],["2024-07-24T01:56:10.010000"],["2024-07-24T01:56:11.010000"],["2024-07-24T01:56:12.010000"],["2024-07-24T01:56:13.010000"],["2024-07-24T01:56:14.010000"],["2024-07-24T01:56:15.010000"],["2024-07-24T01:56:16.010000"],["2024-07-24T01:56:17.010000"],["2024-07-24T01:56:18.010000"],["2024-07-24T01:56:19.010000"],["2024-07-24T01:56:20.010000"],["2024-07-24T01:56:21.010000"],["2024-07-24T01:56:22.010000"],["2024-07-24T01:56:23.010000"],["2024-07-24T01:56:24.010000"],["2024-07-24T01:56:25.010000"],["2024-07-24T01:56:26.010000"],["2024-07-24T01:56:27.010000"],["2024-07-24T01:56:28.010000"],["2024-07-24T01:56:29.010000"],["2024-07-24T01:56:30.010000"],["2024-07-24T01:56:31.010000"],["2024-07-24T01:56:32.010000"],["2024-07-24T01:56:33.010000"],["2024-07-24T01:56:34.010000"],["2024-07-24T01:56:35.010000"],["2024-07-24T01:56:36.010000"],["2024-07-24T01:56:37.010000"],["2024-07-24T01:56:38.010000"],["2024-07-24T01:56:39.010000"],["2024-07-24T01:56:40.010000"],["2024-07-24T01:56:41.010000"],["2024-07-24T01:56:42.010000"],["2024-07-24T01:56:43.010000"],["2024-07-24T01:56:44.010000"],["2024-07-24T01:56:45.010000"],["2024-07-24T01:56:46.010000"],["2024-07-24T01:56:47.010000"],["2024-07-24T01:56:48.010000"],["2024-07-24T01:56:49.010000"],["2024-07-24T01:56:50.010000"],["2024-07-24T01:56:51.010000"],["2024-07-24T01:56:52.010000"],["2024-07-24T01:56:53.010000"],["2024-07-24T01:56:54.010000"],["2024-07-24T01:56:55.010000"],["2024-07-24T01:56:56.010000"],["2024-07-24T01:56:57.010000"],["2024-07-24T01:56:58.010000"],["2024-07-24T01:56:59.010000"],["2024-07-24T01:57:00.010000"],["2024-07-24T01:57:01.010000"],["2024-07-24T01:57:02.010000"],["2024-07-24T01:57:03.010000"],["2024-07-24T01:57:04.010000"],["2024-07-24T01:57:05.010000"],["2024-07-24T01:57:06.010000"],["2024-07-24T01:57:07.010000"],["2024-07-24T01:57:08.010000"],["2024-07-24T01:57:09.010000"],["2024-07-24T01:57:10.010000"],["2024-07-24T01:57:11.010000"],["2024-07-24T01:57:12.010000"],["2024-07-24T01:57:13.010000"],["2024-07-24T01:57:14.010000"],["2024-07-24T01:57:15.010000"],["2024-07-24T01:57:16.010000"],["2024-07-24T01:57:17.010000"],["2024-07-24T01:57:18.010000"],["2024-07-24T01:57:19.010000"],["2024-07-24T01:57:20.010000"],["2024-07-24T01:57:21.010000"],["2024-07-24T01:57:22.010000"],["2024-07-24T01:57:23.010000"],["2024-07-24T01:57:24.010000"],["2024-07-24T01:57:25.010000"],["2024-07-24T01:57:26.010000"],["2024-07-24T01:57:27.010000"],["2024-07-24T01:57:28.010000"],["2024-07-24T01:57:29.010000"],["2024-07-24T01:57:30.010000"],["2024-07-24T01:57:31.010000"],["2024-07-24T01:57:32.010000"],["2024-07-24T01:57:33.010000"],["2024-07-24T01:57:34.010000"],["2024-07-24T01:57:35.010000"],["2024-07-24T01:57:36.010000"],["2024-07-24T01:57:37.010000"],["2024-07-24T01:57:38.010000"],["2024-07-24T01:57:39.010000"],["2024-07-24T01:57:40.010000"],["2024-07-24T01:57:41.010000"],["2024-07-24T01:57:42.010000"],["2024-07-24T01:57:43.010000"],["2024-07-24T01:57:44.010000"],["2024-07-24T01:57:45.010000"],["2024-07-24T01:57:46.010000"],["2024-07-24T01:57:47.010000"],["2024-07-24T01:57:48.010000"],["2024-07-24T01:57:49.010000"],["2024-07-24T01:57:50.010000"],["2024-07-24T01:57:51.010000"],["2024-07-24T01:57:52.010000"],["2024-07-24T01:57:53.010000"],["2024-07-24T01:57:54.010000"],["2024-07-24T01:57:55.010000"],["2024-07-24T01:57:56.010000"],["2024-07-24T01:57:57.010000"],["2024-07-24T01:57:58.010000"],["2024-07-24T01:57:59.010000"],["2024-07-24T01:58:00.010000"],["2024-07-24T01:58:01.010000"],["2024-07-24T01:58:02.010000"],["2024-07-24T01:58:03.010000"],["2024-07-24T01:58:04.010000"],["2024-07-24T01:58:05.010000"],["2024-07-24T01:58:06.010000"],["2024-07-24T01:58:07.010000"],["2024-07-24T01:58:08.010000"],["2024-07-24T01:58:09.010000"],["2024-07-24T01:58:10.010000"],["2024-07-24T01:58:11.010000"],["2024-07-24T01:58:12.010000"],["2024-07-24T01:58:13.010000"],["2024-07-24T01:58:14.010000"],["2024-07-24T01:58:15.010000"],["2024-07-24T01:58:16.010000"],["2024-07-24T01:58:17.010000"],["2024-07-24T01:58:18.010000"],["2024-07-24T01:58:19.010000"],["2024-07-24T01:58:20.010000"],["2024-07-24T01:58:21.010000"],["2024-07-24T01:58:22.010000"],["2024-07-24T01:58:23.010000"],["2024-07-24T01:58:24.010000"],["2024-07-24T01:58:25.010000"],["2024-07-24T01:58:26.010000"],["2024-07-24T01:58:27.010000"],["2024-07-24T01:58:28.010000"],["2024-07-24T01:58:29.010000"],["2024-07-24T01:58:30.010000"],["2024-07-24T01:58:31.010000"],["2024-07-24T01:58:32.010000"],["2024-07-24T01:58:33.010000"],["2024-07-24T01:58:34.010000"],["2024-07-24T01:58:35.010000"],["2024-07-24T01:58:36.010000"],["2024-07-24T01:58:37.010000"],["2024-07-24T01:58:38.010000"],["2024-07-24T01:58:39.010000"],["2024-07-24T01:58:40.010000"],["2024-07-24T01:58:41.010000"],["2024-07-24T01:58:42.010000"],["2024-07-24T01:58:43.010000"],["2024-07-24T01:58:44.010000"],["2024-07-24T01:58:45.010000"],["2024-07-24T01:58:46.010000"],["2024-07-24T01:58:47.010000"],["2024-07-24T01:58:48.010000"],["2024-07-24T01:58:49.010000"],["2024-07-24T01:58:50.010000"],["2024-07-24T01:58:51.010000"],["2024-07-24T01:58:52.010000"],["2024-07-24T01:58:53.010000"],["2024-07-24T01:58:54.010000"],["2024-07-24T01:58:55.010000"],["2024-07-24T01:58:56.010000"],["2024-07-24T01:58:57.010000"],["2024-07-24T01:58:58.010000"],["2024-07-24T01:58:59.010000"],["2024-07-24T01:59:00.010000"],["2024-07-24T01:59:01.010000"],["2024-07-24T01:59:02.010000"],["2024-07-24T01:59:03.010000"],["2024-07-24T01:59:04.010000"],["2024-07-24T01:59:05.010000"],["2024-07-24T01:59:06.010000"],["2024-07-24T01:59:07.010000"],["2024-07-24T01:59:08.010000"],["2024-07-24T01:59:09.010000"],["2024-07-24T01:59:10.010000"],["2024-07-24T01:59:11.010000"],["2024-07-24T01:59:12.010000"],["2024-07-24T01:59:13.010000"],["2024-07-24T01:59:14.010000"],["2024-07-24T01:59:15.010000"],["2024-07-24T01:59:16.010000"],["2024-07-24T01:59:17.010000"],["2024-07-24T01:59:18.010000"],["2024-07-24T01:59:19.010000"],["2024-07-24T01:59:20.010000"],["2024-07-24T01:59:21.010000"],["2024-07-24T01:59:22.010000"],["2024-07-24T01:59:23.010000"],["2024-07-24T01:59:24.010000"],["2024-07-24T01:59:25.010000"],["2024-07-24T01:59:26.010000"],["2024-07-24T01:59:27.010000"],["2024-07-24T01:59:28.010000"],["2024-07-24T01:59:29.010000"],["2024-07-24T01:59:30.010000"],["2024-07-24T01:59:31.010000"],["2024-07-24T01:59:32.010000"],["2024-07-24T01:59:33.010000"],["2024-07-24T01:59:34.010000"],["2024-07-24T01:59:35.010000"],["2024-07-24T01:59:36.010000"],["2024-07-24T01:59:37.010000"],["2024-07-24T01:59:38.010000"],["2024-07-24T01:59:39.010000"],["2024-07-24T01:59:40.010000"],["2024-07-24T01:59:41.010000"],["2024-07-24T01:59:42.010000"],["2024-07-24T01:59:43.010000"],["2024-07-24T01:59:44.010000"],["2024-07-24T01:59:45.010000"],["2024-07-24T01:59:46.010000"],["2024-07-24T01:59:47.010000"],["2024-07-24T01:59:48.010000"],["2024-07-24T01:59:49.010000"],["2024-07-24T01:59:50.010000"],["2024-07-24T01:59:51.010000"],["2024-07-24T01:59:52.010000"],["2024-07-24T01:59:53.010000"],["2024-07-24T01:59:54.010000"],["2024-07-24T01:59:55.010000"],["2024-07-24T01:59:56.010000"],["2024-07-24T01:59:57.010000"],["2024-07-24T01:59:58.010000"],["2024-07-24T01:59:59.010000"],["2024-07-24T02:00:00.010000"],["2024-07-24T02:00:01.010000"],["2024-07-24T02:00:02.010000"],["2024-07-24T02:00:03.010000"],["2024-07-24T02:00:04.010000"],["2024-07-24T02:00:05.010000"],["2024-07-24T02:00:06.010000"],["2024-07-24T02:00:07.010000"],["2024-07-24T02:00:08.010000"],["2024-07-24T02:00:09.010000"],["2024-07-24T02:00:10.010000"],["2024-07-24T02:00:11.010000"],["2024-07-24T02:00:12.010000"],["2024-07-24T02:00:13.010000"],["2024-07-24T02:00:14.010000"],["2024-07-24T02:00:15.010000"],["2024-07-24T02:00:16.010000"],["2024-07-24T02:00:17.010000"],["2024-07-24T02:00:18.010000"],["2024-07-24T02:00:19.010000"],["2024-07-24T02:00:20.010000"],["2024-07-24T02:00:21.010000"],["2024-07-24T02:00:22.010000"],["2024-07-24T02:00:23.010000"],["2024-07-24T02:00:24.010000"],["2024-07-24T02:00:25.010000"],["2024-07-24T02:00:26.010000"],["2024-07-24T02:00:27.010000"],["2024-07-24T02:00:28.010000"],["2024-07-24T02:00:29.010000"],["2024-07-24T02:00:30.010000"],["2024-07-24T02:00:31.010000"],["2024-07-24T02:00:32.010000"],["2024-07-24T02:00:33.010000"],["2024-07-24T02:00:34.010000"],["2024-07-24T02:00:35.010000"],["2024-07-24T02:00:36.010000"],["2024-07-24T02:00:37.010000"],["2024-07-24T02:00:38.010000"],["2024-07-24T02:00:39.010000"],["2024-07-24T02:00:40.010000"],["2024-07-24T02:00:41.010000"],["2024-07-24T02:00:42.010000"],["2024-07-24T02:00:43.010000"],["2024-07-24T02:00:44.010000"],["2024-07-24T02:00:45.010000"],["2024-07-24T02:00:46.010000"],["2024-07-24T02:00:47.010000"],["2024-07-24T02:00:48.010000"],["2024-07-24T02:00:49.010000"],["2024-07-24T02:00:50.010000"],["2024-07-24T02:00:51.010000"],["2024-07-24T02:00:52.010000"],["2024-07-24T02:00:53.010000"],["2024-07-24T02:00:54.010000"],["2024-07-24T02:00:55.010000"],["2024-07-24T02:00:56.010000"],["2024-07-24T02:00:57.010000"],["2024-07-24T02:00:58.010000"],["2024-07-24T02:00:59.010000"],["2024-07-24T02:01:00.010000"],["2024-07-24T02:01:01.010000"],["2024-07-24T02:01:02.010000"],["2024-07-24T02:01:03.010000"],["2024-07-24T02:01:04.010000"],["2024-07-24T02:01:05.010000"],["2024-07-24T02:01:06.010000"],["2024-07-24T02:01:07.010000"],["2024-07-24T02:01:08.010000"],["2024-07-24T02:01:09.010000"],["2024-07-24T02:01:10.010000"],["2024-07-24T02:01:11.010000"],["2024-07-24T02:01:12.010000"],["2024-07-24T02:01:13.010000"],["2024-07-24T02:01:14.010000"],["2024-07-24T02:01:15.010000"],["2024-07-24T02:01:16.010000"],["2024-07-24T02:01:17.010000"],["2024-07-24T02:01:18.010000"],["2024-07-24T02:01:19.010000"],["2024-07-24T02:01:20.010000"],["2024-07-24T02:01:21.010000"],["2024-07-24T02:01:22.010000"],["2024-07-24T02:01:23.010000"],["2024-07-24T02:01:24.010000"],["2024-07-24T02:01:25.010000"],["2024-07-24T02:01:26.010000"],["2024-07-24T02:01:27.010000"],["2024-07-24T02:01:28.010000"],["2024-07-24T02:01:29.010000"],["2024-07-24T02:01:30.010000"],["2024-07-24T02:01:31.010000"],["2024-07-24T02:01:32.010000"],["2024-07-24T02:01:33.010000"],["2024-07-24T02:01:34.010000"],["2024-07-24T02:01:35.010000"],["2024-07-24T02:01:36.010000"],["2024-07-24T02:01:37.010000"],["2024-07-24T02:01:38.010000"],["2024-07-24T02:01:39.010000"],["2024-07-24T02:01:40.010000"],["2024-07-24T02:01:41.010000"],["2024-07-24T02:01:42.010000"],["2024-07-24T02:01:43.010000"],["2024-07-24T02:01:44.010000"],["2024-07-24T02:01:45.010000"],["2024-07-24T02:01:46.010000"],["2024-07-24T02:01:47.010000"],["2024-07-24T02:01:48.010000"],["2024-07-24T02:01:49.010000"],["2024-07-24T02:01:50.010000"],["2024-07-24T02:01:51.010000"],["2024-07-24T02:01:52.010000"],["2024-07-24T02:01:53.010000"],["2024-07-24T02:01:54.010000"],["2024-07-24T02:01:55.010000"],["2024-07-24T02:01:56.010000"],["2024-07-24T02:01:57.010000"],["2024-07-24T02:01:58.010000"],["2024-07-24T02:01:59.010000"],["2024-07-24T02:02:00.010000"],["2024-07-24T02:02:01.010000"],["2024-07-24T02:02:02.010000"],["2024-07-24T02:02:03.010000"],["2024-07-24T02:02:04.010000"],["2024-07-24T02:02:05.010000"],["2024-07-24T02:02:06.010000"],["2024-07-24T02:02:07.010000"],["2024-07-24T02:02:08.010000"],["2024-07-24T02:02:09.010000"],["2024-07-24T02:02:10.010000"],["2024-07-24T02:02:11.010000"],["2024-07-24T02:02:12.010000"],["2024-07-24T02:02:13.010000"],["2024-07-24T02:02:14.010000"],["2024-07-24T02:02:15.010000"],["2024-07-24T02:02:16.010000"],["2024-07-24T02:02:17.010000"],["2024-07-24T02:02:18.010000"],["2024-07-24T02:02:19.010000"],["2024-07-24T02:02:20.010000"],["2024-07-24T02:02:21.010000"],["2024-07-24T02:02:22.010000"],["2024-07-24T02:02:23.010000"],["2024-07-24T02:02:24.010000"],["2024-07-24T02:02:25.010000"],["2024-07-24T02:02:26.010000"],["2024-07-24T02:02:27.010000"],["2024-07-24T02:02:28.010000"],["2024-07-24T02:02:29.010000"],["2024-07-24T02:02:30.010000"],["2024-07-24T02:02:31.010000"],["2024-07-24T02:02:32.010000"],["2024-07-24T02:02:33.010000"],["2024-07-24T02:02:34.010000"],["2024-07-24T02:02:35.010000"],["2024-07-24T02:02:36.010000"],["2024-07-24T02:02:37.010000"],["2024-07-24T02:02:38.010000"],["2024-07-24T02:02:39.010000"],["2024-07-24T02:02:40.010000"],["2024-07-24T02:02:41.010000"],["2024-07-24T02:02:42.010000"],["2024-07-24T02:02:43.010000"],["2024-07-24T02:02:44.010000"],["2024-07-24T02:02:45.010000"],["2024-07-24T02:02:46.010000"],["2024-07-24T02:02:47.010000"],["2024-07-24T02:02:48.010000"],["2024-07-24T02:02:49.010000"],["2024-07-24T02:02:50.010000"],["2024-07-24T02:02:51.010000"],["2024-07-24T02:02:52.010000"],["2024-07-24T02:02:53.010000"],["2024-07-24T02:02:54.010000"],["2024-07-24T02:02:55.010000"],["2024-07-24T02:02:56.010000"],["2024-07-24T02:02:57.010000"],["2024-07-24T02:02:58.010000"],["2024-07-24T02:02:59.010000"],["2024-07-24T02:03:00.010000"],["2024-07-24T02:03:01.010000"],["2024-07-24T02:03:02.010000"],["2024-07-24T02:03:03.010000"],["2024-07-24T02:03:04.010000"],["2024-07-24T02:03:05.010000"],["2024-07-24T02:03:06.010000"],["2024-07-24T02:03:07.010000"],["2024-07-24T02:03:08.010000"],["2024-07-24T02:03:09.010000"],["2024-07-24T02:03:10.010000"],["2024-07-24T02:03:11.010000"],["2024-07-24T02:03:12.010000"],["2024-07-24T02:03:13.010000"],["2024-07-24T02:03:14.010000"],["2024-07-24T02:03:15.010000"],["2024-07-24T02:03:16.010000"],["2024-07-24T02:03:17.010000"],["2024-07-24T02:03:18.010000"],["2024-07-24T02:03:19.010000"],["2024-07-24T02:03:20.010000"],["2024-07-24T02:03:21.010000"],["2024-07-24T02:03:22.010000"],["2024-07-24T02:03:23.010000"],["2024-07-24T02:03:24.010000"],["2024-07-24T02:03:25.010000"],["2024-07-24T02:03:26.010000"],["2024-07-24T02:03:27.010000"],["2024-07-24T02:03:28.010000"],["2024-07-24T02:03:29.010000"],["2024-07-24T02:03:30.010000"],["2024-07-24T02:03:31.010000"],["2024-07-24T02:03:32.010000"],["2024-07-24T02:03:33.010000"],["2024-07-24T02:03:34.010000"],["2024-07-24T02:03:35.010000"],["2024-07-24T02:03:36.010000"],["2024-07-24T02:03:37.010000"],["2024-07-24T02:03:38.010000"],["2024-07-24T02:03:39.010000"],["2024-07-24T02:03:40.010000"],["2024-07-24T02:03:41.010000"],["2024-07-24T02:03:42.010000"],["2024-07-24T02:03:43.010000"],["2024-07-24T02:03:44.010000"],["2024-07-24T02:03:45.010000"],["2024-07-24T02:03:46.010000"],["2024-07-24T02:03:47.010000"],["2024-07-24T02:03:48.010000"],["2024-07-24T02:03:49.010000"],["2024-07-24T02:03:50.010000"],["2024-07-24T02:03:51.010000"],["2024-07-24T02:03:52.010000"],["2024-07-24T02:03:53.010000"],["2024-07-24T02:03:54.010000"],["2024-07-24T02:03:55.010000"],["2024-07-24T02:03:56.010000"],["2024-07-24T02:03:57.010000"],["2024-07-24T02:03:58.010000"],["2024-07-24T02:03:59.010000"],["2024-07-24T02:04:00.010000"],["2024-07-24T02:04:01.010000"],["2024-07-24T02:04:02.010000"],["2024-07-24T02:04:03.010000"],["2024-07-24T02:04:04.010000"],["2024-07-24T02:04:05.010000"],["2024-07-24T02:04:06.010000"],["2024-07-24T02:04:07.010000"],["2024-07-24T02:04:08.010000"],["2024-07-24T02:04:09.010000"],["2024-07-24T02:04:10.010000"],["2024-07-24T02:04:11.010000"],["2024-07-24T02:04:12.010000"],["2024-07-24T02:04:13.010000"],["2024-07-24T02:04:14.010000"],["2024-07-24T02:04:15.010000"],["2024-07-24T02:04:16.010000"],["2024-07-24T02:04:17.010000"],["2024-07-24T02:04:18.010000"],["2024-07-24T02:04:19.010000"],["2024-07-24T02:04:20.010000"],["2024-07-24T02:04:21.010000"],["2024-07-24T02:04:22.010000"],["2024-07-24T02:04:23.010000"],["2024-07-24T02:04:24.010000"],["2024-07-24T02:04:25.010000"],["2024-07-24T02:04:26.010000"],["2024-07-24T02:04:27.010000"],["2024-07-24T02:04:28.010000"],["2024-07-24T02:04:29.010000"],["2024-07-24T02:04:30.010000"],["2024-07-24T02:04:31.010000"],["2024-07-24T02:04:32.010000"],["2024-07-24T02:04:33.010000"],["2024-07-24T02:04:34.010000"],["2024-07-24T02:04:35.010000"],["2024-07-24T02:04:36.010000"],["2024-07-24T02:04:37.010000"],["2024-07-24T02:04:38.010000"],["2024-07-24T02:04:39.010000"],["2024-07-24T02:04:40.010000"],["2024-07-24T02:04:41.010000"],["2024-07-24T02:04:42.010000"],["2024-07-24T02:04:43.010000"],["2024-07-24T02:04:44.010000"],["2024-07-24T02:04:45.010000"],["2024-07-24T02:04:46.010000"],["2024-07-24T02:04:47.010000"],["2024-07-24T02:04:48.010000"],["2024-07-24T02:04:49.010000"],["2024-07-24T02:04:50.010000"],["2024-07-24T02:04:51.010000"],["2024-07-24T02:04:52.010000"],["2024-07-24T02:04:53.010000"],["2024-07-24T02:04:54.010000"],["2024-07-24T02:04:55.010000"],["2024-07-24T02:04:56.010000"],["2024-07-24T02:04:57.010000"],["2024-07-24T02:04:58.010000"],["2024-07-24T02:04:59.010000"],["2024-07-24T02:05:00.010000"],["2024-07-24T02:05:01.010000"],["2024-07-24T02:05:02.010000"],["2024-07-24T02:05:03.010000"],["2024-07-24T02:05:04.010000"],["2024-07-24T02:05:05.010000"],["2024-07-24T02:05:06.010000"],["2024-07-24T02:05:07.010000"],["2024-07-24T02:05:08.010000"],["2024-07-24T02:05:09.010000"],["2024-07-24T02:05:10.010000"],["2024-07-24T02:05:11.010000"],["2024-07-24T02:05:12.010000"],["2024-07-24T02:05:13.010000"],["2024-07-24T02:05:14.010000"],["2024-07-24T02:05:15.010000"],["2024-07-24T02:05:16.010000"],["2024-07-24T02:05:17.010000"],["2024-07-24T02:05:18.010000"],["2024-07-24T02:05:19.010000"],["2024-07-24T02:05:20.010000"],["2024-07-24T02:05:21.010000"],["2024-07-24T02:05:22.010000"],["2024-07-24T02:05:23.010000"],["2024-07-24T02:05:24.010000"],["2024-07-24T02:05:25.010000"],["2024-07-24T02:05:26.010000"],["2024-07-24T02:05:27.010000"],["2024-07-24T02:05:28.010000"],["2024-07-24T02:05:29.010000"],["2024-07-24T02:05:30.010000"],["2024-07-24T02:05:31.010000"],["2024-07-24T02:05:32.010000"],["2024-07-24T02:05:33.010000"],["2024-07-24T02:05:34.010000"],["2024-07-24T02:05:35.010000"],["2024-07-24T02:05:36.010000"],["2024-07-24T02:05:37.010000"],["2024-07-24T02:05:38.010000"],["2024-07-24T02:05:39.010000"],["2024-07-24T02:05:40.010000"],["2024-07-24T02:05:41.010000"],["2024-07-24T02:05:42.010000"],["2024-07-24T02:05:43.010000"],["2024-07-24T02:05:44.010000"],["2024-07-24T02:05:45.010000"],["2024-07-24T02:05:46.010000"],["2024-07-24T02:05:47.010000"],["2024-07-24T02:05:48.010000"],["2024-07-24T02:05:49.010000"],["2024-07-24T02:05:50.010000"],["2024-07-24T02:05:51.010000"],["2024-07-24T02:05:52.010000"],["2024-07-24T02:05:53.010000"],["2024-07-24T02:05:54.010000"],["2024-07-24T02:05:55.010000"],["2024-07-24T02:05:56.010000"],["2024-07-24T02:05:57.010000"],["2024-07-24T02:05:58.010000"],["2024-07-24T02:05:59.010000"],["2024-07-24T02:06:00.010000"],["2024-07-24T02:06:01.010000"],["2024-07-24T02:06:02.010000"],["2024-07-24T02:06:03.010000"],["2024-07-24T02:06:04.010000"],["2024-07-24T02:06:05.010000"],["2024-07-24T02:06:06.010000"],["2024-07-24T02:06:07.010000"],["2024-07-24T02:06:08.010000"],["2024-07-24T02:06:09.010000"],["2024-07-24T02:06:10.010000"],["2024-07-24T02:06:11.010000"],["2024-07-24T02:06:12.010000"],["2024-07-24T02:06:13.010000"],["2024-07-24T02:06:14.010000"],["2024-07-24T02:06:15.010000"],["2024-07-24T02:06:16.010000"],["2024-07-24T02:06:17.010000"],["2024-07-24T02:06:18.010000"],["2024-07-24T02:06:19.010000"],["2024-07-24T02:06:20.010000"],["2024-07-24T02:06:21.010000"],["2024-07-24T02:06:22.010000"],["2024-07-24T02:06:23.010000"],["2024-07-24T02:06:24.010000"],["2024-07-24T02:06:25.010000"],["2024-07-24T02:06:26.010000"],["2024-07-24T02:06:27.010000"],["2024-07-24T02:06:28.010000"],["2024-07-24T02:06:29.010000"],["2024-07-24T02:06:30.010000"],["2024-07-24T02:06:31.010000"],["2024-07-24T02:06:32.010000"],["2024-07-24T02:06:33.010000"],["2024-07-24T02:06:34.010000"],["2024-07-24T02:06:35.010000"],["2024-07-24T02:06:36.010000"],["2024-07-24T02:06:37.010000"],["2024-07-24T02:06:38.010000"],["2024-07-24T02:06:39.010000"],["2024-07-24T02:06:40.010000"],["2024-07-24T02:06:41.010000"],["2024-07-24T02:06:42.010000"],["2024-07-24T02:06:43.010000"],["2024-07-24T02:06:44.010000"],["2024-07-24T02:06:45.010000"],["2024-07-24T02:06:46.010000"],["2024-07-24T02:06:47.010000"],["2024-07-24T02:06:48.010000"],["2024-07-24T02:06:49.010000"],["2024-07-24T02:06:50.010000"],["2024-07-24T02:06:51.010000"],["2024-07-24T02:06:52.010000"],["2024-07-24T02:06:53.010000"],["2024-07-24T02:06:54.010000"],["2024-07-24T02:06:55.010000"],["2024-07-24T02:06:56.010000"],["2024-07-24T02:06:57.010000"],["2024-07-24T02:06:58.010000"],["2024-07-24T02:06:59.010000"],["2024-07-24T02:07:00.010000"],["2024-07-24T02:07:01.010000"],["2024-07-24T02:07:02.010000"],["2024-07-24T02:07:03.010000"],["2024-07-24T02:07:04.010000"],["2024-07-24T02:07:05.010000"],["2024-07-24T02:07:06.010000"],["2024-07-24T02:07:07.010000"],["2024-07-24T02:07:08.010000"],["2024-07-24T02:07:09.010000"],["2024-07-24T02:07:10.010000"],["2024-07-24T02:07:11.010000"],["2024-07-24T02:07:12.010000"],["2024-07-24T02:07:13.010000"],["2024-07-24T02:07:14.010000"],["2024-07-24T02:07:15.010000"],["2024-07-24T02:07:16.010000"],["2024-07-24T02:07:17.010000"],["2024-07-24T02:07:18.010000"],["2024-07-24T02:07:19.010000"],["2024-07-24T02:07:20.010000"],["2024-07-24T02:07:21.010000"],["2024-07-24T02:07:22.010000"],["2024-07-24T02:07:23.010000"],["2024-07-24T02:07:24.010000"],["2024-07-24T02:07:25.010000"],["2024-07-24T02:07:26.010000"],["2024-07-24T02:07:27.010000"],["2024-07-24T02:07:28.010000"],["2024-07-24T02:07:29.010000"],["2024-07-24T02:07:30.010000"],["2024-07-24T02:07:31.010000"],["2024-07-24T02:07:32.010000"],["2024-07-24T02:07:33.010000"],["2024-07-24T02:07:34.010000"],["2024-07-24T02:07:35.010000"],["2024-07-24T02:07:36.010000"],["2024-07-24T02:07:37.010000"],["2024-07-24T02:07:38.010000"],["2024-07-24T02:07:39.010000"],["2024-07-24T02:07:40.010000"],["2024-07-24T02:07:41.010000"],["2024-07-24T02:07:42.010000"],["2024-07-24T02:07:43.010000"],["2024-07-24T02:07:44.010000"],["2024-07-24T02:07:45.010000"],["2024-07-24T02:07:46.010000"],["2024-07-24T02:07:47.010000"],["2024-07-24T02:07:48.010000"],["2024-07-24T02:07:49.010000"],["2024-07-24T02:07:50.010000"],["2024-07-24T02:07:51.010000"],["2024-07-24T02:07:52.010000"],["2024-07-24T02:07:53.010000"],["2024-07-24T02:07:54.010000"],["2024-07-24T02:07:55.010000"],["2024-07-24T02:07:56.010000"],["2024-07-24T02:07:57.010000"],["2024-07-24T02:07:58.010000"],["2024-07-24T02:07:59.010000"],["2024-07-24T02:08:00.010000"],["2024-07-24T02:08:01.010000"],["2024-07-24T02:08:02.010000"],["2024-07-24T02:08:03.010000"],["2024-07-24T02:08:04.010000"],["2024-07-24T02:08:05.010000"],["2024-07-24T02:08:06.010000"],["2024-07-24T02:08:07.010000"],["2024-07-24T02:08:08.010000"],["2024-07-24T02:08:09.010000"],["2024-07-24T02:08:10.010000"],["2024-07-24T02:08:11.010000"],["2024-07-24T02:08:12.010000"],["2024-07-24T02:08:13.010000"],["2024-07-24T02:08:14.010000"],["2024-07-24T02:08:15.010000"],["2024-07-24T02:08:16.010000"],["2024-07-24T02:08:17.010000"],["2024-07-24T02:08:18.010000"],["2024-07-24T02:08:19.010000"],["2024-07-24T02:08:20.010000"],["2024-07-24T02:08:21.010000"],["2024-07-24T02:08:22.010000"],["2024-07-24T02:08:23.010000"],["2024-07-24T02:08:24.010000"],["2024-07-24T02:08:25.010000"],["2024-07-24T02:08:26.010000"],["2024-07-24T02:08:27.010000"],["2024-07-24T02:08:28.010000"],["2024-07-24T02:08:29.010000"],["2024-07-24T02:08:30.010000"],["2024-07-24T02:08:31.010000"],["2024-07-24T02:08:32.010000"],["2024-07-24T02:08:33.010000"],["2024-07-24T02:08:34.010000"],["2024-07-24T02:08:35.010000"],["2024-07-24T02:08:36.010000"],["2024-07-24T02:08:37.010000"],["2024-07-24T02:08:38.010000"],["2024-07-24T02:08:39.010000"],["2024-07-24T02:08:40.010000"],["2024-07-24T02:08:41.010000"],["2024-07-24T02:08:42.010000"],["2024-07-24T02:08:43.010000"],["2024-07-24T02:08:44.010000"],["2024-07-24T02:08:45.010000"],["2024-07-24T02:08:46.010000"],["2024-07-24T02:08:47.010000"],["2024-07-24T02:08:48.010000"],["2024-07-24T02:08:49.010000"],["2024-07-24T02:08:50.010000"],["2024-07-24T02:08:51.010000"],["2024-07-24T02:08:52.010000"],["2024-07-24T02:08:53.010000"],["2024-07-24T02:08:54.010000"],["2024-07-24T02:08:55.010000"],["2024-07-24T02:08:56.010000"],["2024-07-24T02:08:57.010000"],["2024-07-24T02:08:58.010000"],["2024-07-24T02:08:59.010000"],["2024-07-24T02:09:00.010000"],["2024-07-24T02:09:01.010000"],["2024-07-24T02:09:02.010000"],["2024-07-24T02:09:03.010000"],["2024-07-24T02:09:04.010000"],["2024-07-24T02:09:05.010000"],["2024-07-24T02:09:06.010000"],["2024-07-24T02:09:07.010000"],["2024-07-24T02:09:08.010000"],["2024-07-24T02:09:09.010000"],["2024-07-24T02:09:10.010000"],["2024-07-24T02:09:11.010000"],["2024-07-24T02:09:12.010000"],["2024-07-24T02:09:13.010000"],["2024-07-24T02:09:14.010000"],["2024-07-24T02:09:15.010000"],["2024-07-24T02:09:16.010000"],["2024-07-24T02:09:17.010000"],["2024-07-24T02:09:18.010000"],["2024-07-24T02:09:19.010000"],["2024-07-24T02:09:20.010000"],["2024-07-24T02:09:21.010000"],["2024-07-24T02:09:22.010000"],["2024-07-24T02:09:23.010000"],["2024-07-24T02:09:24.010000"],["2024-07-24T02:09:25.010000"],["2024-07-24T02:09:26.010000"],["2024-07-24T02:09:27.010000"],["2024-07-24T02:09:28.010000"],["2024-07-24T02:09:29.010000"],["2024-07-24T02:09:30.010000"],["2024-07-24T02:09:31.010000"],["2024-07-24T02:09:32.010000"],["2024-07-24T02:09:33.010000"],["2024-07-24T02:09:34.010000"],["2024-07-24T02:09:35.010000"],["2024-07-24T02:09:36.010000"],["2024-07-24T02:09:37.010000"],["2024-07-24T02:09:38.010000"],["2024-07-24T02:09:39.010000"],["2024-07-24T02:09:40.010000"],["2024-07-24T02:09:41.010000"],["2024-07-24T02:09:42.010000"],["2024-07-24T02:09:43.010000"],["2024-07-24T02:09:44.010000"],["2024-07-24T02:09:45.010000"],["2024-07-24T02:09:46.010000"],["2024-07-24T02:09:47.010000"],["2024-07-24T02:09:48.010000"],["2024-07-24T02:09:49.010000"],["2024-07-24T02:09:50.010000"],["2024-07-24T02:09:51.010000"],["2024-07-24T02:09:52.010000"],["2024-07-24T02:09:53.010000"],["2024-07-24T02:09:54.010000"],["2024-07-24T02:09:55.010000"],["2024-07-24T02:09:56.010000"],["2024-07-24T02:09:57.010000"],["2024-07-24T02:09:58.010000"],["2024-07-24T02:09:59.010000"],["2024-07-24T02:10:00.010000"],["2024-07-24T02:10:01.010000"],["2024-07-24T02:10:02.010000"],["2024-07-24T02:10:03.010000"],["2024-07-24T02:10:04.010000"],["2024-07-24T02:10:05.010000"],["2024-07-24T02:10:06.010000"],["2024-07-24T02:10:07.010000"],["2024-07-24T02:10:08.010000"],["2024-07-24T02:10:09.010000"],["2024-07-24T02:10:10.010000"],["2024-07-24T02:10:11.010000"],["2024-07-24T02:10:12.010000"],["2024-07-24T02:10:13.010000"],["2024-07-24T02:10:14.010000"],["2024-07-24T02:10:15.010000"],["2024-07-24T02:10:16.010000"],["2024-07-24T02:10:17.010000"],["2024-07-24T02:10:18.010000"],["2024-07-24T02:10:19.010000"],["2024-07-24T02:10:20.010000"],["2024-07-24T02:10:21.010000"],["2024-07-24T02:10:22.010000"],["2024-07-24T02:10:23.010000"],["2024-07-24T02:10:24.010000"],["2024-07-24T02:10:25.010000"],["2024-07-24T02:10:26.010000"],["2024-07-24T02:10:27.010000"],["2024-07-24T02:10:28.010000"],["2024-07-24T02:10:29.010000"],["2024-07-24T02:10:30.010000"],["2024-07-24T02:10:31.010000"],["2024-07-24T02:10:32.010000"],["2024-07-24T02:10:33.010000"],["2024-07-24T02:10:34.010000"],["2024-07-24T02:10:35.010000"],["2024-07-24T02:10:36.010000"],["2024-07-24T02:10:37.010000"],["2024-07-24T02:10:38.010000"],["2024-07-24T02:10:39.010000"],["2024-07-24T02:10:40.010000"],["2024-07-24T02:10:41.010000"],["2024-07-24T02:10:42.010000"],["2024-07-24T02:10:43.010000"],["2024-07-24T02:10:44.010000"],["2024-07-24T02:10:45.010000"],["2024-07-24T02:10:46.010000"],["2024-07-24T02:10:47.010000"],["2024-07-24T02:10:48.010000"],["2024-07-24T02:10:49.010000"],["2024-07-24T02:10:50.010000"],["2024-07-24T02:10:51.010000"],["2024-07-24T02:10:52.010000"],["2024-07-24T02:10:53.010000"],["2024-07-24T02:10:54.010000"],["2024-07-24T02:10:55.010000"],["2024-07-24T02:10:56.010000"],["2024-07-24T02:10:57.010000"],["2024-07-24T02:10:58.010000"],["2024-07-24T02:10:59.010000"],["2024-07-24T02:11:00.010000"],["2024-07-24T02:11:01.010000"],["2024-07-24T02:11:02.010000"],["2024-07-24T02:11:03.010000"],["2024-07-24T02:11:04.010000"],["2024-07-24T02:11:05.010000"],["2024-07-24T02:11:06.010000"],["2024-07-24T02:11:07.010000"],["2024-07-24T02:11:08.010000"],["2024-07-24T02:11:09.010000"],["2024-07-24T02:11:10.010000"],["2024-07-24T02:11:11.010000"],["2024-07-24T02:11:12.010000"],["2024-07-24T02:11:13.010000"],["2024-07-24T02:11:14.010000"],["2024-07-24T02:11:15.010000"],["2024-07-24T02:11:16.010000"],["2024-07-24T02:11:17.010000"],["2024-07-24T02:11:18.010000"],["2024-07-24T02:11:19.010000"],["2024-07-24T02:11:20.010000"],["2024-07-24T02:11:21.010000"],["2024-07-24T02:11:22.010000"],["2024-07-24T02:11:23.010000"],["2024-07-24T02:11:24.010000"],["2024-07-24T02:11:25.010000"],["2024-07-24T02:11:26.010000"],["2024-07-24T02:11:27.010000"],["2024-07-24T02:11:28.010000"],["2024-07-24T02:11:29.010000"],["2024-07-24T02:11:30.010000"],["2024-07-24T02:11:31.010000"],["2024-07-24T02:11:32.010000"],["2024-07-24T02:11:33.010000"],["2024-07-24T02:11:34.010000"],["2024-07-24T02:11:35.010000"],["2024-07-24T02:11:36.010000"],["2024-07-24T02:11:37.010000"],["2024-07-24T02:11:38.010000"],["2024-07-24T02:11:39.010000"],["2024-07-24T02:11:40.010000"],["2024-07-24T02:11:41.010000"],["2024-07-24T02:11:42.010000"],["2024-07-24T02:11:43.010000"],["2024-07-24T02:11:44.010000"],["2024-07-24T02:11:45.010000"],["2024-07-24T02:11:46.010000"],["2024-07-24T02:11:47.010000"],["2024-07-24T02:11:48.010000"],["2024-07-24T02:11:49.010000"],["2024-07-24T02:11:50.010000"],["2024-07-24T02:11:51.010000"],["2024-07-24T02:11:52.010000"],["2024-07-24T02:11:53.010000"],["2024-07-24T02:11:54.010000"],["2024-07-24T02:11:55.010000"],["2024-07-24T02:11:56.010000"],["2024-07-24T02:11:57.010000"],["2024-07-24T02:11:58.010000"],["2024-07-24T02:11:59.010000"],["2024-07-24T02:12:00.010000"],["2024-07-24T02:12:01.010000"],["2024-07-24T02:12:02.010000"],["2024-07-24T02:12:03.010000"],["2024-07-24T02:12:04.010000"],["2024-07-24T02:12:05.010000"],["2024-07-24T02:12:06.010000"],["2024-07-24T02:12:07.010000"],["2024-07-24T02:12:08.010000"],["2024-07-24T02:12:09.010000"],["2024-07-24T02:12:10.010000"],["2024-07-24T02:12:11.010000"],["2024-07-24T02:12:12.010000"],["2024-07-24T02:12:13.010000"],["2024-07-24T02:12:14.010000"],["2024-07-24T02:12:15.010000"],["2024-07-24T02:12:16.010000"],["2024-07-24T02:12:17.010000"],["2024-07-24T02:12:18.010000"],["2024-07-24T02:12:19.010000"],["2024-07-24T02:12:20.010000"],["2024-07-24T02:12:21.010000"],["2024-07-24T02:12:22.010000"],["2024-07-24T02:12:23.010000"],["2024-07-24T02:12:24.010000"],["2024-07-24T02:12:25.010000"],["2024-07-24T02:12:26.010000"],["2024-07-24T02:12:27.010000"],["2024-07-24T02:12:28.010000"],["2024-07-24T02:12:29.010000"],["2024-07-24T02:12:30.010000"],["2024-07-24T02:12:31.010000"],["2024-07-24T02:12:32.010000"],["2024-07-24T02:12:33.010000"],["2024-07-24T02:12:34.010000"],["2024-07-24T02:12:35.010000"],["2024-07-24T02:12:36.010000"],["2024-07-24T02:12:37.010000"],["2024-07-24T02:12:38.010000"],["2024-07-24T02:12:39.010000"],["2024-07-24T02:12:40.010000"],["2024-07-24T02:12:41.010000"],["2024-07-24T02:12:42.010000"],["2024-07-24T02:12:43.010000"],["2024-07-24T02:12:44.010000"],["2024-07-24T02:12:45.010000"],["2024-07-24T02:12:46.010000"],["2024-07-24T02:12:47.010000"],["2024-07-24T02:12:48.010000"],["2024-07-24T02:12:49.010000"],["2024-07-24T02:12:50.010000"],["2024-07-24T02:12:51.010000"],["2024-07-24T02:12:52.010000"],["2024-07-24T02:12:53.010000"],["2024-07-24T02:12:54.010000"],["2024-07-24T02:12:55.010000"],["2024-07-24T02:12:56.010000"],["2024-07-24T02:12:57.010000"],["2024-07-24T02:12:58.010000"],["2024-07-24T02:12:59.010000"],["2024-07-24T02:13:00.010000"],["2024-07-24T02:13:01.010000"],["2024-07-24T02:13:02.010000"],["2024-07-24T02:13:03.010000"],["2024-07-24T02:13:04.010000"],["2024-07-24T02:13:05.010000"],["2024-07-24T02:13:06.010000"],["2024-07-24T02:13:07.010000"],["2024-07-24T02:13:08.010000"],["2024-07-24T02:13:09.010000"],["2024-07-24T02:13:10.010000"],["2024-07-24T02:13:11.010000"],["2024-07-24T02:13:12.010000"],["2024-07-24T02:13:13.010000"],["2024-07-24T02:13:14.010000"],["2024-07-24T02:13:15.010000"],["2024-07-24T02:13:16.010000"],["2024-07-24T02:13:17.010000"],["2024-07-24T02:13:18.010000"],["2024-07-24T02:13:19.010000"],["2024-07-24T02:13:20.010000"],["2024-07-24T02:13:21.010000"],["2024-07-24T02:13:22.010000"],["2024-07-24T02:13:23.010000"],["2024-07-24T02:13:24.010000"],["2024-07-24T02:13:25.010000"],["2024-07-24T02:13:26.010000"],["2024-07-24T02:13:27.010000"],["2024-07-24T02:13:28.010000"],["2024-07-24T02:13:29.010000"],["2024-07-24T02:13:30.010000"],["2024-07-24T02:13:31.010000"],["2024-07-24T02:13:32.010000"],["2024-07-24T02:13:33.010000"],["2024-07-24T02:13:34.010000"],["2024-07-24T02:13:35.010000"],["2024-07-24T02:13:36.010000"],["2024-07-24T02:13:37.010000"],["2024-07-24T02:13:38.010000"],["2024-07-24T02:13:39.010000"],["2024-07-24T02:13:40.010000"],["2024-07-24T02:13:41.010000"],["2024-07-24T02:13:42.010000"],["2024-07-24T02:13:43.010000"],["2024-07-24T02:13:44.010000"],["2024-07-24T02:13:45.010000"],["2024-07-24T02:13:46.010000"],["2024-07-24T02:13:47.010000"],["2024-07-24T02:13:48.010000"],["2024-07-24T02:13:49.010000"],["2024-07-24T02:13:50.010000"],["2024-07-24T02:13:51.010000"],["2024-07-24T02:13:52.010000"],["2024-07-24T02:13:53.010000"],["2024-07-24T02:13:54.010000"],["2024-07-24T02:13:55.010000"],["2024-07-24T02:13:56.010000"],["2024-07-24T02:13:57.010000"],["2024-07-24T02:13:58.010000"],["2024-07-24T02:13:59.010000"],["2024-07-24T02:14:00.010000"],["2024-07-24T02:14:01.010000"],["2024-07-24T02:14:02.010000"],["2024-07-24T02:14:03.010000"],["2024-07-24T02:14:04.010000"],["2024-07-24T02:14:05.010000"],["2024-07-24T02:14:06.010000"],["2024-07-24T02:14:07.010000"],["2024-07-24T02:14:08.010000"],["2024-07-24T02:14:09.010000"],["2024-07-24T02:14:10.010000"],["2024-07-24T02:14:11.010000"],["2024-07-24T02:14:12.010000"],["2024-07-24T02:14:13.010000"],["2024-07-24T02:14:14.010000"],["2024-07-24T02:14:15.010000"],["2024-07-24T02:14:16.010000"],["2024-07-24T02:14:17.010000"],["2024-07-24T02:14:18.010000"],["2024-07-24T02:14:19.010000"],["2024-07-24T02:14:20.010000"],["2024-07-24T02:14:21.010000"],["2024-07-24T02:14:22.010000"],["2024-07-24T02:14:23.010000"],["2024-07-24T02:14:24.010000"],["2024-07-24T02:14:25.010000"],["2024-07-24T02:14:26.010000"],["2024-07-24T02:14:27.010000"],["2024-07-24T02:14:28.010000"],["2024-07-24T02:14:29.010000"],["2024-07-24T02:14:30.010000"],["2024-07-24T02:14:31.010000"],["2024-07-24T02:14:32.010000"],["2024-07-24T02:14:33.010000"],["2024-07-24T02:14:34.010000"],["2024-07-24T02:14:35.010000"],["2024-07-24T02:14:36.010000"],["2024-07-24T02:14:37.010000"],["2024-07-24T02:14:38.010000"],["2024-07-24T02:14:39.010000"],["2024-07-24T02:14:40.010000"],["2024-07-24T02:14:41.010000"],["2024-07-24T02:14:42.010000"],["2024-07-24T02:14:43.010000"],["2024-07-24T02:14:44.010000"],["2024-07-24T02:14:45.010000"],["2024-07-24T02:14:46.010000"],["2024-07-24T02:14:47.010000"],["2024-07-24T02:14:48.010000"],["2024-07-24T02:14:49.010000"],["2024-07-24T02:14:50.010000"],["2024-07-24T02:14:51.010000"],["2024-07-24T02:14:52.010000"],["2024-07-24T02:14:53.010000"],["2024-07-24T02:14:54.010000"],["2024-07-24T02:14:55.010000"],["2024-07-24T02:14:56.010000"],["2024-07-24T02:14:57.010000"],["2024-07-24T02:14:58.010000"],["2024-07-24T02:14:59.010000"],["2024-07-24T02:15:00.010000"],["2024-07-24T02:15:01.010000"],["2024-07-24T02:15:02.010000"],["2024-07-24T02:15:03.010000"],["2024-07-24T02:15:04.010000"],["2024-07-24T02:15:05.010000"],["2024-07-24T02:15:06.010000"],["2024-07-24T02:15:07.010000"],["2024-07-24T02:15:08.010000"],["2024-07-24T02:15:09.010000"],["2024-07-24T02:15:10.010000"],["2024-07-24T02:15:11.010000"],["2024-07-24T02:15:12.010000"],["2024-07-24T02:15:13.010000"],["2024-07-24T02:15:14.010000"],["2024-07-24T02:15:15.010000"],["2024-07-24T02:15:16.010000"],["2024-07-24T02:15:17.010000"],["2024-07-24T02:15:18.010000"],["2024-07-24T02:15:19.010000"],["2024-07-24T02:15:20.010000"],["2024-07-24T02:15:21.010000"],["2024-07-24T02:15:22.010000"],["2024-07-24T02:15:23.010000"],["2024-07-24T02:15:24.010000"],["2024-07-24T02:15:25.010000"],["2024-07-24T02:15:26.010000"],["2024-07-24T02:15:27.010000"],["2024-07-24T02:15:28.010000"],["2024-07-24T02:15:29.010000"],["2024-07-24T02:15:30.010000"],["2024-07-24T02:15:31.010000"],["2024-07-24T02:15:32.010000"],["2024-07-24T02:15:33.010000"],["2024-07-24T02:15:34.010000"],["2024-07-24T02:15:35.010000"],["2024-07-24T02:15:36.010000"],["2024-07-24T02:15:37.010000"],["2024-07-24T02:15:38.010000"],["2024-07-24T02:15:39.010000"],["2024-07-24T02:15:40.010000"],["2024-07-24T02:15:41.010000"],["2024-07-24T02:15:42.010000"],["2024-07-24T02:15:43.010000"],["2024-07-24T02:15:44.010000"],["2024-07-24T02:15:45.010000"],["2024-07-24T02:15:46.010000"],["2024-07-24T02:15:47.010000"],["2024-07-24T02:15:48.010000"],["2024-07-24T02:15:49.010000"],["2024-07-24T02:15:50.010000"],["2024-07-24T02:15:51.010000"],["2024-07-24T02:15:52.010000"],["2024-07-24T02:15:53.010000"],["2024-07-24T02:15:54.010000"],["2024-07-24T02:15:55.010000"],["2024-07-24T02:15:56.010000"],["2024-07-24T02:15:57.010000"],["2024-07-24T02:15:58.010000"],["2024-07-24T02:15:59.010000"],["2024-07-24T02:16:00.010000"],["2024-07-24T02:16:01.010000"],["2024-07-24T02:16:02.010000"],["2024-07-24T02:16:03.010000"],["2024-07-24T02:16:04.010000"],["2024-07-24T02:16:05.010000"],["2024-07-24T02:16:06.010000"],["2024-07-24T02:16:07.010000"],["2024-07-24T02:16:08.010000"],["2024-07-24T02:16:09.010000"],["2024-07-24T02:16:10.010000"],["2024-07-24T02:16:11.010000"],["2024-07-24T02:16:12.010000"],["2024-07-24T02:16:13.010000"],["2024-07-24T02:16:14.010000"],["2024-07-24T02:16:15.010000"],["2024-07-24T02:16:16.010000"],["2024-07-24T02:16:17.010000"],["2024-07-24T02:16:18.010000"],["2024-07-24T02:16:19.010000"],["2024-07-24T02:16:20.010000"],["2024-07-24T02:16:21.010000"],["2024-07-24T02:16:22.010000"],["2024-07-24T02:16:23.010000"],["2024-07-24T02:16:24.010000"],["2024-07-24T02:16:25.010000"],["2024-07-24T02:16:26.010000"],["2024-07-24T02:16:27.010000"],["2024-07-24T02:16:28.010000"],["2024-07-24T02:16:29.010000"],["2024-07-24T02:16:30.010000"],["2024-07-24T02:16:31.010000"],["2024-07-24T02:16:32.010000"],["2024-07-24T02:16:33.010000"],["2024-07-24T02:16:34.010000"],["2024-07-24T02:16:35.010000"],["2024-07-24T02:16:36.010000"],["2024-07-24T02:16:37.010000"],["2024-07-24T02:16:38.010000"],["2024-07-24T02:16:39.010000"],["2024-07-24T02:16:40.010000"],["2024-07-24T02:16:41.010000"],["2024-07-24T02:16:42.010000"],["2024-07-24T02:16:43.010000"],["2024-07-24T02:16:44.010000"],["2024-07-24T02:16:45.010000"],["2024-07-24T02:16:46.010000"],["2024-07-24T02:16:47.010000"],["2024-07-24T02:16:48.010000"],["2024-07-24T02:16:49.010000"],["2024-07-24T02:16:50.010000"],["2024-07-24T02:16:51.010000"],["2024-07-24T02:16:52.010000"],["2024-07-24T02:16:53.010000"],["2024-07-24T02:16:54.010000"],["2024-07-24T02:16:55.010000"],["2024-07-24T02:16:56.010000"],["2024-07-24T02:16:57.010000"],["2024-07-24T02:16:58.010000"],["2024-07-24T02:16:59.010000"],["2024-07-24T02:17:00.010000"],["2024-07-24T02:17:01.010000"],["2024-07-24T02:17:02.010000"],["2024-07-24T02:17:03.010000"],["2024-07-24T02:17:04.010000"],["2024-07-24T02:17:05.010000"],["2024-07-24T02:17:06.010000"],["2024-07-24T02:17:07.010000"],["2024-07-24T02:17:08.010000"],["2024-07-24T02:17:09.010000"],["2024-07-24T02:17:10.010000"],["2024-07-24T02:17:11.010000"],["2024-07-24T02:17:12.010000"],["2024-07-24T02:17:13.010000"],["2024-07-24T02:17:14.010000"],["2024-07-24T02:17:15.010000"],["2024-07-24T02:17:16.010000"],["2024-07-24T02:17:17.010000"],["2024-07-24T02:17:18.010000"],["2024-07-24T02:17:19.010000"],["2024-07-24T02:17:20.010000"],["2024-07-24T02:17:21.010000"],["2024-07-24T02:17:22.010000"],["2024-07-24T02:17:23.010000"],["2024-07-24T02:17:24.010000"],["2024-07-24T02:17:25.010000"],["2024-07-24T02:17:26.010000"],["2024-07-24T02:17:27.010000"],["2024-07-24T02:17:28.010000"],["2024-07-24T02:17:29.010000"],["2024-07-24T02:17:30.010000"],["2024-07-24T02:17:31.010000"],["2024-07-24T02:17:32.010000"],["2024-07-24T02:17:33.010000"],["2024-07-24T02:17:34.010000"],["2024-07-24T02:17:35.010000"],["2024-07-24T02:17:36.010000"],["2024-07-24T02:17:37.010000"],["2024-07-24T02:17:38.010000"],["2024-07-24T02:17:39.010000"],["2024-07-24T02:17:40.010000"],["2024-07-24T02:17:41.010000"],["2024-07-24T02:17:42.010000"],["2024-07-24T02:17:43.010000"],["2024-07-24T02:17:44.010000"],["2024-07-24T02:17:45.010000"],["2024-07-24T02:17:46.010000"],["2024-07-24T02:17:47.010000"],["2024-07-24T02:17:48.010000"],["2024-07-24T02:17:49.010000"],["2024-07-24T02:17:50.010000"],["2024-07-24T02:17:51.010000"],["2024-07-24T02:17:52.010000"],["2024-07-24T02:17:53.010000"],["2024-07-24T02:17:54.010000"],["2024-07-24T02:17:55.010000"],["2024-07-24T02:17:56.010000"],["2024-07-24T02:17:57.010000"],["2024-07-24T02:17:58.010000"],["2024-07-24T02:17:59.010000"],["2024-07-24T02:18:00.010000"],["2024-07-24T02:18:01.010000"],["2024-07-24T02:18:02.010000"],["2024-07-24T02:18:03.010000"],["2024-07-24T02:18:04.010000"],["2024-07-24T02:18:05.010000"],["2024-07-24T02:18:06.010000"],["2024-07-24T02:18:07.010000"],["2024-07-24T02:18:08.010000"],["2024-07-24T02:18:09.010000"],["2024-07-24T02:18:10.010000"],["2024-07-24T02:18:11.010000"],["2024-07-24T02:18:12.010000"],["2024-07-24T02:18:13.010000"],["2024-07-24T02:18:14.010000"],["2024-07-24T02:18:15.010000"],["2024-07-24T02:18:16.010000"],["2024-07-24T02:18:17.010000"],["2024-07-24T02:18:18.010000"],["2024-07-24T02:18:19.010000"],["2024-07-24T02:18:20.010000"],["2024-07-24T02:18:21.010000"],["2024-07-24T02:18:22.010000"],["2024-07-24T02:18:23.010000"],["2024-07-24T02:18:24.010000"],["2024-07-24T02:18:25.010000"],["2024-07-24T02:18:26.010000"],["2024-07-24T02:18:27.010000"],["2024-07-24T02:18:28.010000"],["2024-07-24T02:18:29.010000"],["2024-07-24T02:18:30.010000"],["2024-07-24T02:18:31.010000"],["2024-07-24T02:18:32.010000"],["2024-07-24T02:18:33.010000"],["2024-07-24T02:18:34.010000"],["2024-07-24T02:18:35.010000"],["2024-07-24T02:18:36.010000"],["2024-07-24T02:18:37.010000"],["2024-07-24T02:18:38.010000"],["2024-07-24T02:18:39.010000"],["2024-07-24T02:18:40.010000"],["2024-07-24T02:18:41.010000"],["2024-07-24T02:18:42.010000"],["2024-07-24T02:18:43.010000"],["2024-07-24T02:18:44.010000"],["2024-07-24T02:18:45.010000"],["2024-07-24T02:18:46.010000"],["2024-07-24T02:18:47.010000"],["2024-07-24T02:18:48.010000"],["2024-07-24T02:18:49.010000"],["2024-07-24T02:18:50.010000"],["2024-07-24T02:18:51.010000"],["2024-07-24T02:18:52.010000"],["2024-07-24T02:18:53.010000"],["2024-07-24T02:18:54.010000"],["2024-07-24T02:18:55.010000"],["2024-07-24T02:18:56.010000"],["2024-07-24T02:18:57.010000"],["2024-07-24T02:18:58.010000"],["2024-07-24T02:18:59.010000"],["2024-07-24T02:19:00.010000"],["2024-07-24T02:19:01.010000"],["2024-07-24T02:19:02.010000"],["2024-07-24T02:19:03.010000"],["2024-07-24T02:19:04.010000"],["2024-07-24T02:19:05.010000"],["2024-07-24T02:19:06.010000"],["2024-07-24T02:19:07.010000"],["2024-07-24T02:19:08.010000"],["2024-07-24T02:19:09.010000"],["2024-07-24T02:19:10.010000"],["2024-07-24T02:19:11.010000"],["2024-07-24T02:19:12.010000"],["2024-07-24T02:19:13.010000"],["2024-07-24T02:19:14.010000"],["2024-07-24T02:19:15.010000"],["2024-07-24T02:19:16.010000"],["2024-07-24T02:19:17.010000"],["2024-07-24T02:19:18.010000"],["2024-07-24T02:19:19.010000"],["2024-07-24T02:19:20.010000"],["2024-07-24T02:19:21.010000"],["2024-07-24T02:19:22.010000"],["2024-07-24T02:19:23.010000"],["2024-07-24T02:19:24.010000"],["2024-07-24T02:19:25.010000"],["2024-07-24T02:19:26.010000"],["2024-07-24T02:19:27.010000"],["2024-07-24T02:19:28.010000"],["2024-07-24T02:19:29.010000"],["2024-07-24T02:19:30.010000"],["2024-07-24T02:19:31.010000"],["2024-07-24T02:19:32.010000"],["2024-07-24T02:19:33.010000"],["2024-07-24T02:19:34.010000"],["2024-07-24T02:19:35.010000"],["2024-07-24T02:19:36.010000"],["2024-07-24T02:19:37.010000"],["2024-07-24T02:19:38.010000"],["2024-07-24T02:19:39.010000"],["2024-07-24T02:19:40.010000"],["2024-07-24T02:19:41.010000"],["2024-07-24T02:19:42.010000"],["2024-07-24T02:19:43.010000"],["2024-07-24T02:19:44.010000"],["2024-07-24T02:19:45.010000"],["2024-07-24T02:19:46.010000"],["2024-07-24T02:19:47.010000"],["2024-07-24T02:19:48.010000"],["2024-07-24T02:19:49.010000"],["2024-07-24T02:19:50.010000"],["2024-07-24T02:19:51.010000"],["2024-07-24T02:19:52.010000"],["2024-07-24T02:19:53.010000"],["2024-07-24T02:19:54.010000"],["2024-07-24T02:19:55.010000"],["2024-07-24T02:19:56.010000"],["2024-07-24T02:19:57.010000"],["2024-07-24T02:19:58.010000"],["2024-07-24T02:19:59.010000"],["2024-07-24T02:20:00.010000"],["2024-07-24T02:20:01.010000"],["2024-07-24T02:20:02.010000"],["2024-07-24T02:20:03.010000"],["2024-07-24T02:20:04.010000"],["2024-07-24T02:20:05.010000"],["2024-07-24T02:20:06.010000"],["2024-07-24T02:20:07.010000"],["2024-07-24T02:20:08.010000"],["2024-07-24T02:20:09.010000"],["2024-07-24T02:20:10.010000"],["2024-07-24T02:20:11.010000"],["2024-07-24T02:20:12.010000"],["2024-07-24T02:20:13.010000"],["2024-07-24T02:20:14.010000"],["2024-07-24T02:20:15.010000"],["2024-07-24T02:20:16.010000"],["2024-07-24T02:20:17.010000"],["2024-07-24T02:20:18.010000"],["2024-07-24T02:20:19.010000"],["2024-07-24T02:20:20.010000"],["2024-07-24T02:20:21.010000"],["2024-07-24T02:20:22.010000"],["2024-07-24T02:20:23.010000"],["2024-07-24T02:20:24.010000"],["2024-07-24T02:20:25.010000"],["2024-07-24T02:20:26.010000"],["2024-07-24T02:20:27.010000"],["2024-07-24T02:20:28.010000"],["2024-07-24T02:20:29.010000"],["2024-07-24T02:20:30.010000"],["2024-07-24T02:20:31.010000"],["2024-07-24T02:20:32.010000"],["2024-07-24T02:20:33.010000"],["2024-07-24T02:20:34.010000"],["2024-07-24T02:20:35.010000"],["2024-07-24T02:20:36.010000"],["2024-07-24T02:20:37.010000"],["2024-07-24T02:20:38.010000"],["2024-07-24T02:20:39.010000"],["2024-07-24T02:20:40.010000"],["2024-07-24T02:20:41.010000"],["2024-07-24T02:20:42.010000"],["2024-07-24T02:20:43.010000"],["2024-07-24T02:20:44.010000"],["2024-07-24T02:20:45.010000"],["2024-07-24T02:20:46.010000"],["2024-07-24T02:20:47.010000"],["2024-07-24T02:20:48.010000"],["2024-07-24T02:20:49.010000"],["2024-07-24T02:20:50.010000"],["2024-07-24T02:20:51.010000"],["2024-07-24T02:20:52.010000"],["2024-07-24T02:20:53.010000"],["2024-07-24T02:20:54.010000"],["2024-07-24T02:20:55.010000"],["2024-07-24T02:20:56.010000"],["2024-07-24T02:20:57.010000"],["2024-07-24T02:20:58.010000"],["2024-07-24T02:20:59.010000"],["2024-07-24T02:21:00.010000"],["2024-07-24T02:21:01.010000"],["2024-07-24T02:21:02.010000"],["2024-07-24T02:21:03.010000"],["2024-07-24T02:21:04.010000"],["2024-07-24T02:21:05.010000"],["2024-07-24T02:21:06.010000"],["2024-07-24T02:21:07.010000"],["2024-07-24T02:21:08.010000"],["2024-07-24T02:21:09.010000"],["2024-07-24T02:21:10.010000"],["2024-07-24T02:21:11.010000"],["2024-07-24T02:21:12.010000"],["2024-07-24T02:21:13.010000"],["2024-07-24T02:21:14.010000"],["2024-07-24T02:21:15.010000"],["2024-07-24T02:21:16.010000"],["2024-07-24T02:21:17.010000"],["2024-07-24T02:21:18.010000"],["2024-07-24T02:21:19.010000"],["2024-07-24T02:21:20.010000"],["2024-07-24T02:21:21.010000"],["2024-07-24T02:21:22.010000"],["2024-07-24T02:21:23.010000"],["2024-07-24T02:21:24.010000"],["2024-07-24T02:21:25.010000"],["2024-07-24T02:21:26.010000"],["2024-07-24T02:21:27.010000"],["2024-07-24T02:21:28.010000"],["2024-07-24T02:21:29.010000"],["2024-07-24T02:21:30.010000"],["2024-07-24T02:21:31.010000"],["2024-07-24T02:21:32.010000"],["2024-07-24T02:21:33.010000"],["2024-07-24T02:21:34.010000"],["2024-07-24T02:21:35.010000"],["2024-07-24T02:21:36.010000"],["2024-07-24T02:21:37.010000"],["2024-07-24T02:21:38.010000"],["2024-07-24T02:21:39.010000"],["2024-07-24T02:21:40.010000"],["2024-07-24T02:21:41.010000"],["2024-07-24T02:21:42.010000"],["2024-07-24T02:21:43.010000"],["2024-07-24T02:21:44.010000"],["2024-07-24T02:21:45.010000"],["2024-07-24T02:21:46.010000"],["2024-07-24T02:21:47.010000"],["2024-07-24T02:21:48.010000"],["2024-07-24T02:21:49.010000"],["2024-07-24T02:21:50.010000"],["2024-07-24T02:21:51.010000"],["2024-07-24T02:21:52.010000"],["2024-07-24T02:21:53.010000"],["2024-07-24T02:21:54.010000"],["2024-07-24T02:21:55.010000"],["2024-07-24T02:21:56.010000"],["2024-07-24T02:21:57.010000"],["2024-07-24T02:21:58.010000"],["2024-07-24T02:21:59.010000"],["2024-07-24T02:22:00.010000"],["2024-07-24T02:22:01.010000"],["2024-07-24T02:22:02.010000"],["2024-07-24T02:22:03.010000"],["2024-07-24T02:22:04.010000"],["2024-07-24T02:22:05.010000"],["2024-07-24T02:22:06.010000"],["2024-07-24T02:22:07.010000"],["2024-07-24T02:22:08.010000"],["2024-07-24T02:22:09.010000"],["2024-07-24T02:22:10.010000"],["2024-07-24T02:22:11.010000"],["2024-07-24T02:22:12.010000"],["2024-07-24T02:22:13.010000"],["2024-07-24T02:22:14.010000"],["2024-07-24T02:22:15.010000"],["2024-07-24T02:22:16.010000"],["2024-07-24T02:22:17.010000"],["2024-07-24T02:22:18.010000"],["2024-07-24T02:22:19.010000"],["2024-07-24T02:22:20.010000"],["2024-07-24T02:22:21.010000"],["2024-07-24T02:22:22.010000"],["2024-07-24T02:22:23.010000"],["2024-07-24T02:22:24.010000"],["2024-07-24T02:22:25.010000"],["2024-07-24T02:22:26.010000"],["2024-07-24T02:22:27.010000"],["2024-07-24T02:22:28.010000"],["2024-07-24T02:22:29.010000"],["2024-07-24T02:22:30.010000"],["2024-07-24T02:22:31.010000"],["2024-07-24T02:22:32.010000"],["2024-07-24T02:22:33.010000"],["2024-07-24T02:22:34.010000"],["2024-07-24T02:22:35.010000"],["2024-07-24T02:22:36.010000"],["2024-07-24T02:22:37.010000"],["2024-07-24T02:22:38.010000"],["2024-07-24T02:22:39.010000"],["2024-07-24T02:22:40.010000"],["2024-07-24T02:22:41.010000"],["2024-07-24T02:22:42.010000"],["2024-07-24T02:22:43.010000"],["2024-07-24T02:22:44.010000"],["2024-07-24T02:22:45.010000"],["2024-07-24T02:22:46.010000"],["2024-07-24T02:22:47.010000"],["2024-07-24T02:22:48.010000"],["2024-07-24T02:22:49.010000"],["2024-07-24T02:22:50.010000"],["2024-07-24T02:22:51.010000"],["2024-07-24T02:22:52.010000"],["2024-07-24T02:22:53.010000"],["2024-07-24T02:22:54.010000"],["2024-07-24T02:22:55.010000"],["2024-07-24T02:22:56.010000"],["2024-07-24T02:22:57.010000"],["2024-07-24T02:22:58.010000"],["2024-07-24T02:22:59.010000"],["2024-07-24T02:23:00.010000"],["2024-07-24T02:23:01.010000"],["2024-07-24T02:23:02.010000"],["2024-07-24T02:23:03.010000"],["2024-07-24T02:23:04.010000"],["2024-07-24T02:23:05.010000"],["2024-07-24T02:23:06.010000"],["2024-07-24T02:23:07.010000"],["2024-07-24T02:23:08.010000"],["2024-07-24T02:23:09.010000"],["2024-07-24T02:23:10.010000"],["2024-07-24T02:23:11.010000"],["2024-07-24T02:23:12.010000"],["2024-07-24T02:23:13.010000"],["2024-07-24T02:23:14.010000"],["2024-07-24T02:23:15.010000"],["2024-07-24T02:23:16.010000"],["2024-07-24T02:23:17.010000"],["2024-07-24T02:23:18.010000"],["2024-07-24T02:23:19.010000"],["2024-07-24T02:23:20.010000"],["2024-07-24T02:23:21.010000"],["2024-07-24T02:23:22.010000"],["2024-07-24T02:23:23.010000"],["2024-07-24T02:23:24.010000"],["2024-07-24T02:23:25.010000"],["2024-07-24T02:23:26.010000"],["2024-07-24T02:23:27.010000"],["2024-07-24T02:23:28.010000"],["2024-07-24T02:23:29.010000"],["2024-07-24T02:23:30.010000"],["2024-07-24T02:23:31.010000"],["2024-07-24T02:23:32.010000"],["2024-07-24T02:23:33.010000"],["2024-07-24T02:23:34.010000"],["2024-07-24T02:23:35.010000"],["2024-07-24T02:23:36.010000"],["2024-07-24T02:23:37.010000"],["2024-07-24T02:23:38.010000"],["2024-07-24T02:23:39.010000"],["2024-07-24T02:23:40.010000"],["2024-07-24T02:23:41.010000"],["2024-07-24T02:23:42.010000"],["2024-07-24T02:23:43.010000"],["2024-07-24T02:23:44.010000"],["2024-07-24T02:23:45.010000"],["2024-07-24T02:23:46.010000"],["2024-07-24T02:23:47.010000"],["2024-07-24T02:23:48.010000"],["2024-07-24T02:23:49.010000"],["2024-07-24T02:23:50.010000"],["2024-07-24T02:23:51.010000"],["2024-07-24T02:23:52.010000"],["2024-07-24T02:23:53.010000"],["2024-07-24T02:23:54.010000"],["2024-07-24T02:23:55.010000"],["2024-07-24T02:23:56.010000"],["2024-07-24T02:23:57.010000"],["2024-07-24T02:23:58.010000"],["2024-07-24T02:23:59.010000"],["2024-07-24T02:24:00.010000"],["2024-07-24T02:24:01.010000"],["2024-07-24T02:24:02.010000"],["2024-07-24T02:24:03.010000"],["2024-07-24T02:24:04.010000"],["2024-07-24T02:24:05.010000"],["2024-07-24T02:24:06.010000"],["2024-07-24T02:24:07.010000"],["2024-07-24T02:24:08.010000"],["2024-07-24T02:24:09.010000"],["2024-07-24T02:24:10.010000"],["2024-07-24T02:24:11.010000"],["2024-07-24T02:24:12.010000"],["2024-07-24T02:24:13.010000"],["2024-07-24T02:24:14.010000"],["2024-07-24T02:24:15.010000"],["2024-07-24T02:24:16.010000"],["2024-07-24T02:24:17.010000"],["2024-07-24T02:24:18.010000"],["2024-07-24T02:24:19.010000"],["2024-07-24T02:24:20.010000"],["2024-07-24T02:24:21.010000"],["2024-07-24T02:24:22.010000"],["2024-07-24T02:24:23.010000"],["2024-07-24T02:24:24.010000"],["2024-07-24T02:24:25.010000"],["2024-07-24T02:24:26.010000"],["2024-07-24T02:24:27.010000"],["2024-07-24T02:24:28.010000"],["2024-07-24T02:24:29.010000"],["2024-07-24T02:24:30.010000"],["2024-07-24T02:24:31.010000"],["2024-07-24T02:24:32.010000"],["2024-07-24T02:24:33.010000"],["2024-07-24T02:24:34.010000"],["2024-07-24T02:24:35.010000"],["2024-07-24T02:24:36.010000"],["2024-07-24T02:24:37.010000"],["2024-07-24T02:24:38.010000"],["2024-07-24T02:24:39.010000"],["2024-07-24T02:24:40.010000"],["2024-07-24T02:24:41.010000"],["2024-07-24T02:24:42.010000"],["2024-07-24T02:24:43.010000"],["2024-07-24T02:24:44.010000"],["2024-07-24T02:24:45.010000"],["2024-07-24T02:24:46.010000"],["2024-07-24T02:24:47.010000"],["2024-07-24T02:24:48.010000"],["2024-07-24T02:24:49.010000"],["2024-07-24T02:24:50.010000"],["2024-07-24T02:24:51.010000"],["2024-07-24T02:24:52.010000"],["2024-07-24T02:24:53.010000"],["2024-07-24T02:24:54.010000"],["2024-07-24T02:24:55.010000"],["2024-07-24T02:24:56.010000"],["2024-07-24T02:24:57.010000"],["2024-07-24T02:24:58.010000"],["2024-07-24T02:24:59.010000"],["2024-07-24T02:25:00.010000"],["2024-07-24T02:25:01.010000"],["2024-07-24T02:25:02.010000"],["2024-07-24T02:25:03.010000"],["2024-07-24T02:25:04.010000"],["2024-07-24T02:25:05.010000"],["2024-07-24T02:25:06.010000"],["2024-07-24T02:25:07.010000"],["2024-07-24T02:25:08.010000"],["2024-07-24T02:25:09.010000"],["2024-07-24T02:25:10.010000"],["2024-07-24T02:25:11.010000"],["2024-07-24T02:25:12.010000"],["2024-07-24T02:25:13.010000"],["2024-07-24T02:25:14.010000"],["2024-07-24T02:25:15.010000"],["2024-07-24T02:25:16.010000"],["2024-07-24T02:25:17.010000"],["2024-07-24T02:25:18.010000"],["2024-07-24T02:25:19.010000"],["2024-07-24T02:25:20.010000"],["2024-07-24T02:25:21.010000"],["2024-07-24T02:25:22.010000"],["2024-07-24T02:25:23.010000"],["2024-07-24T02:25:24.010000"],["2024-07-24T02:25:25.010000"],["2024-07-24T02:25:26.010000"],["2024-07-24T02:25:27.010000"],["2024-07-24T02:25:28.010000"],["2024-07-24T02:25:29.010000"],["2024-07-24T02:25:30.010000"],["2024-07-24T02:25:31.010000"],["2024-07-24T02:25:32.010000"],["2024-07-24T02:25:33.010000"],["2024-07-24T02:25:34.010000"],["2024-07-24T02:25:35.010000"],["2024-07-24T02:25:36.010000"],["2024-07-24T02:25:37.010000"],["2024-07-24T02:25:38.010000"],["2024-07-24T02:25:39.010000"],["2024-07-24T02:25:40.010000"],["2024-07-24T02:25:41.010000"],["2024-07-24T02:25:42.010000"],["2024-07-24T02:25:43.010000"],["2024-07-24T02:25:44.010000"],["2024-07-24T02:25:45.010000"],["2024-07-24T02:25:46.010000"],["2024-07-24T02:25:47.010000"],["2024-07-24T02:25:48.010000"],["2024-07-24T02:25:49.010000"],["2024-07-24T02:25:50.010000"],["2024-07-24T02:25:51.010000"],["2024-07-24T02:25:52.010000"],["2024-07-24T02:25:53.010000"],["2024-07-24T02:25:54.010000"],["2024-07-24T02:25:55.010000"],["2024-07-24T02:25:56.010000"],["2024-07-24T02:25:57.010000"],["2024-07-24T02:25:58.010000"],["2024-07-24T02:25:59.010000"],["2024-07-24T02:26:00.010000"],["2024-07-24T02:26:01.010000"],["2024-07-24T02:26:02.010000"],["2024-07-24T02:26:03.010000"],["2024-07-24T02:26:04.010000"],["2024-07-24T02:26:05.010000"],["2024-07-24T02:26:06.010000"],["2024-07-24T02:26:07.010000"],["2024-07-24T02:26:08.010000"],["2024-07-24T02:26:09.010000"],["2024-07-24T02:26:10.010000"],["2024-07-24T02:26:11.010000"],["2024-07-24T02:26:12.010000"],["2024-07-24T02:26:13.010000"],["2024-07-24T02:26:14.010000"],["2024-07-24T02:26:15.010000"],["2024-07-24T02:26:16.010000"],["2024-07-24T02:26:17.010000"],["2024-07-24T02:26:18.010000"],["2024-07-24T02:26:19.010000"],["2024-07-24T02:26:20.010000"],["2024-07-24T02:26:21.010000"],["2024-07-24T02:26:22.010000"],["2024-07-24T02:26:23.010000"],["2024-07-24T02:26:24.010000"],["2024-07-24T02:26:25.010000"],["2024-07-24T02:26:26.010000"],["2024-07-24T02:26:27.010000"],["2024-07-24T02:26:28.010000"],["2024-07-24T02:26:29.010000"],["2024-07-24T02:26:30.010000"],["2024-07-24T02:26:31.010000"],["2024-07-24T02:26:32.010000"],["2024-07-24T02:26:33.010000"],["2024-07-24T02:26:34.010000"],["2024-07-24T02:26:35.010000"],["2024-07-24T02:26:36.010000"],["2024-07-24T02:26:37.010000"],["2024-07-24T02:26:38.010000"],["2024-07-24T02:26:39.010000"],["2024-07-24T02:26:40.010000"],["2024-07-24T02:26:41.010000"],["2024-07-24T02:26:42.010000"],["2024-07-24T02:26:43.010000"],["2024-07-24T02:26:44.010000"],["2024-07-24T02:26:45.010000"],["2024-07-24T02:26:46.010000"],["2024-07-24T02:26:47.010000"],["2024-07-24T02:26:48.010000"],["2024-07-24T02:26:49.010000"],["2024-07-24T02:26:50.010000"],["2024-07-24T02:26:51.010000"],["2024-07-24T02:26:52.010000"],["2024-07-24T02:26:53.010000"],["2024-07-24T02:26:54.010000"],["2024-07-24T02:26:55.010000"],["2024-07-24T02:26:56.010000"],["2024-07-24T02:26:57.010000"],["2024-07-24T02:26:58.010000"],["2024-07-24T02:26:59.010000"],["2024-07-24T02:27:00.010000"],["2024-07-24T02:27:01.010000"],["2024-07-24T02:27:02.010000"],["2024-07-24T02:27:03.010000"],["2024-07-24T02:27:04.010000"],["2024-07-24T02:27:05.010000"],["2024-07-24T02:27:06.010000"],["2024-07-24T02:27:07.010000"],["2024-07-24T02:27:08.010000"],["2024-07-24T02:27:09.010000"],["2024-07-24T02:27:10.010000"],["2024-07-24T02:27:11.010000"],["2024-07-24T02:27:12.010000"],["2024-07-24T02:27:13.010000"],["2024-07-24T02:27:14.010000"],["2024-07-24T02:27:15.010000"],["2024-07-24T02:27:16.010000"],["2024-07-24T02:27:17.010000"],["2024-07-24T02:27:18.010000"],["2024-07-24T02:27:19.010000"],["2024-07-24T02:27:20.010000"],["2024-07-24T02:27:21.010000"],["2024-07-24T02:27:22.010000"],["2024-07-24T02:27:23.010000"],["2024-07-24T02:27:24.010000"],["2024-07-24T02:27:25.010000"],["2024-07-24T02:27:26.010000"],["2024-07-24T02:27:27.010000"],["2024-07-24T02:27:28.010000"],["2024-07-24T02:27:29.010000"],["2024-07-24T02:27:30.010000"],["2024-07-24T02:27:31.010000"],["2024-07-24T02:27:32.010000"],["2024-07-24T02:27:33.010000"],["2024-07-24T02:27:34.010000"],["2024-07-24T02:27:35.010000"],["2024-07-24T02:27:36.010000"],["2024-07-24T02:27:37.010000"],["2024-07-24T02:27:38.010000"],["2024-07-24T02:27:39.010000"],["2024-07-24T02:27:40.010000"],["2024-07-24T02:27:41.010000"],["2024-07-24T02:27:42.010000"],["2024-07-24T02:27:43.010000"],["2024-07-24T02:27:44.010000"],["2024-07-24T02:27:45.010000"],["2024-07-24T02:27:46.010000"],["2024-07-24T02:27:47.010000"],["2024-07-24T02:27:48.010000"],["2024-07-24T02:27:49.010000"],["2024-07-24T02:27:50.010000"],["2024-07-24T02:27:51.010000"],["2024-07-24T02:27:52.010000"],["2024-07-24T02:27:53.010000"],["2024-07-24T02:27:54.010000"],["2024-07-24T02:27:55.010000"],["2024-07-24T02:27:56.010000"],["2024-07-24T02:27:57.010000"],["2024-07-24T02:27:58.010000"],["2024-07-24T02:27:59.010000"],["2024-07-24T02:28:00.010000"],["2024-07-24T02:28:01.010000"],["2024-07-24T02:28:02.010000"],["2024-07-24T02:28:03.010000"],["2024-07-24T02:28:04.010000"],["2024-07-24T02:28:05.010000"],["2024-07-24T02:28:06.010000"],["2024-07-24T02:28:07.010000"],["2024-07-24T02:28:08.010000"],["2024-07-24T02:28:09.010000"],["2024-07-24T02:28:10.010000"],["2024-07-24T02:28:11.010000"],["2024-07-24T02:28:12.010000"],["2024-07-24T02:28:13.010000"],["2024-07-24T02:28:14.010000"],["2024-07-24T02:28:15.010000"],["2024-07-24T02:28:16.010000"],["2024-07-24T02:28:17.010000"],["2024-07-24T02:28:18.010000"],["2024-07-24T02:28:19.010000"],["2024-07-24T02:28:20.010000"],["2024-07-24T02:28:21.010000"],["2024-07-24T02:28:22.010000"],["2024-07-24T02:28:23.010000"],["2024-07-24T02:28:24.010000"],["2024-07-24T02:28:25.010000"],["2024-07-24T02:28:26.010000"],["2024-07-24T02:28:27.010000"],["2024-07-24T02:28:28.010000"],["2024-07-24T02:28:29.010000"],["2024-07-24T02:28:30.010000"],["2024-07-24T02:28:31.010000"],["2024-07-24T02:28:32.010000"],["2024-07-24T02:28:33.010000"],["2024-07-24T02:28:34.010000"],["2024-07-24T02:28:35.010000"],["2024-07-24T02:28:36.010000"],["2024-07-24T02:28:37.010000"],["2024-07-24T02:28:38.010000"],["2024-07-24T02:28:39.010000"],["2024-07-24T02:28:40.010000"],["2024-07-24T02:28:41.010000"],["2024-07-24T02:28:42.010000"],["2024-07-24T02:28:43.010000"],["2024-07-24T02:28:44.010000"],["2024-07-24T02:28:45.010000"],["2024-07-24T02:28:46.010000"],["2024-07-24T02:28:47.010000"],["2024-07-24T02:28:48.010000"],["2024-07-24T02:28:49.010000"],["2024-07-24T02:28:50.010000"],["2024-07-24T02:28:51.010000"],["2024-07-24T02:28:52.010000"],["2024-07-24T02:28:53.010000"],["2024-07-24T02:28:54.010000"],["2024-07-24T02:28:55.010000"],["2024-07-24T02:28:56.010000"],["2024-07-24T02:28:57.010000"],["2024-07-24T02:28:58.010000"],["2024-07-24T02:28:59.010000"],["2024-07-24T02:29:00.010000"],["2024-07-24T02:29:01.010000"],["2024-07-24T02:29:02.010000"],["2024-07-24T02:29:03.010000"],["2024-07-24T02:29:04.010000"],["2024-07-24T02:29:05.010000"],["2024-07-24T02:29:06.010000"],["2024-07-24T02:29:07.010000"],["2024-07-24T02:29:08.010000"],["2024-07-24T02:29:09.010000"],["2024-07-24T02:29:10.010000"],["2024-07-24T02:29:11.010000"],["2024-07-24T02:29:12.010000"],["2024-07-24T02:29:13.010000"],["2024-07-24T02:29:14.010000"],["2024-07-24T02:29:15.010000"],["2024-07-24T02:29:16.010000"],["2024-07-24T02:29:17.010000"],["2024-07-24T02:29:18.010000"],["2024-07-24T02:29:19.010000"],["2024-07-24T02:29:20.010000"],["2024-07-24T02:29:21.010000"],["2024-07-24T02:29:22.010000"],["2024-07-24T02:29:23.010000"],["2024-07-24T02:29:24.010000"],["2024-07-24T02:29:25.010000"],["2024-07-24T02:29:26.010000"],["2024-07-24T02:29:27.010000"],["2024-07-24T02:29:28.010000"],["2024-07-24T02:29:29.010000"],["2024-07-24T02:29:30.010000"],["2024-07-24T02:29:31.010000"],["2024-07-24T02:29:32.010000"],["2024-07-24T02:29:33.010000"],["2024-07-24T02:29:34.010000"],["2024-07-24T02:29:35.010000"],["2024-07-24T02:29:36.010000"],["2024-07-24T02:29:37.010000"],["2024-07-24T02:29:38.010000"],["2024-07-24T02:29:39.010000"],["2024-07-24T02:29:40.010000"],["2024-07-24T02:29:41.010000"],["2024-07-24T02:29:42.010000"],["2024-07-24T02:29:43.010000"],["2024-07-24T02:29:44.010000"],["2024-07-24T02:29:45.010000"],["2024-07-24T02:29:46.010000"],["2024-07-24T02:29:47.010000"],["2024-07-24T02:29:48.010000"],["2024-07-24T02:29:49.010000"],["2024-07-24T02:29:50.010000"],["2024-07-24T02:29:51.010000"],["2024-07-24T02:29:52.010000"],["2024-07-24T02:29:53.010000"],["2024-07-24T02:29:54.010000"],["2024-07-24T02:29:55.010000"],["2024-07-24T02:29:56.010000"],["2024-07-24T02:29:57.010000"],["2024-07-24T02:29:58.010000"],["2024-07-24T02:29:59.010000"],["2024-07-24T02:30:00.010000"],["2024-07-24T02:30:01.010000"],["2024-07-24T02:30:02.010000"],["2024-07-24T02:30:03.010000"],["2024-07-24T02:30:04.010000"],["2024-07-24T02:30:05.010000"],["2024-07-24T02:30:06.010000"],["2024-07-24T02:30:07.010000"],["2024-07-24T02:30:08.010000"],["2024-07-24T02:30:09.010000"],["2024-07-24T02:30:10.010000"],["2024-07-24T02:30:11.010000"],["2024-07-24T02:30:12.010000"],["2024-07-24T02:30:13.010000"],["2024-07-24T02:30:14.010000"],["2024-07-24T02:30:15.010000"],["2024-07-24T02:30:16.010000"],["2024-07-24T02:30:17.010000"],["2024-07-24T02:30:18.010000"],["2024-07-24T02:30:19.010000"],["2024-07-24T02:30:20.010000"],["2024-07-24T02:30:21.010000"],["2024-07-24T02:30:22.010000"],["2024-07-24T02:30:23.010000"],["2024-07-24T02:30:24.010000"],["2024-07-24T02:30:25.010000"],["2024-07-24T02:30:26.010000"],["2024-07-24T02:30:27.010000"],["2024-07-24T02:30:28.010000"],["2024-07-24T02:30:29.010000"],["2024-07-24T02:30:30.010000"],["2024-07-24T02:30:31.010000"],["2024-07-24T02:30:32.010000"],["2024-07-24T02:30:33.010000"],["2024-07-24T02:30:34.010000"],["2024-07-24T02:30:35.010000"],["2024-07-24T02:30:36.010000"],["2024-07-24T02:30:37.010000"],["2024-07-24T02:30:38.010000"],["2024-07-24T02:30:39.010000"],["2024-07-24T02:30:40.010000"],["2024-07-24T02:30:41.010000"],["2024-07-24T02:30:42.010000"],["2024-07-24T02:30:43.010000"],["2024-07-24T02:30:44.010000"],["2024-07-24T02:30:45.010000"],["2024-07-24T02:30:46.010000"],["2024-07-24T02:30:47.010000"],["2024-07-24T02:30:48.010000"],["2024-07-24T02:30:49.010000"],["2024-07-24T02:30:50.010000"],["2024-07-24T02:30:51.010000"],["2024-07-24T02:30:52.010000"],["2024-07-24T02:30:53.010000"],["2024-07-24T02:30:54.010000"],["2024-07-24T02:30:55.010000"],["2024-07-24T02:30:56.010000"],["2024-07-24T02:30:57.010000"],["2024-07-24T02:30:58.010000"],["2024-07-24T02:30:59.010000"],["2024-07-24T02:31:00.010000"],["2024-07-24T02:31:01.010000"],["2024-07-24T02:31:02.010000"],["2024-07-24T02:31:03.010000"],["2024-07-24T02:31:04.010000"],["2024-07-24T02:31:05.010000"],["2024-07-24T02:31:06.010000"],["2024-07-24T02:31:07.010000"],["2024-07-24T02:31:08.010000"],["2024-07-24T02:31:09.010000"],["2024-07-24T02:31:10.010000"],["2024-07-24T02:31:11.010000"],["2024-07-24T02:31:12.010000"],["2024-07-24T02:31:13.010000"],["2024-07-24T02:31:14.010000"],["2024-07-24T02:31:15.010000"],["2024-07-24T02:31:16.010000"],["2024-07-24T02:31:17.010000"],["2024-07-24T02:31:18.010000"],["2024-07-24T02:31:19.010000"],["2024-07-24T02:31:20.010000"],["2024-07-24T02:31:21.010000"],["2024-07-24T02:31:22.010000"],["2024-07-24T02:31:23.010000"],["2024-07-24T02:31:24.010000"],["2024-07-24T02:31:25.010000"],["2024-07-24T02:31:26.010000"],["2024-07-24T02:31:27.010000"],["2024-07-24T02:31:28.010000"],["2024-07-24T02:31:29.010000"],["2024-07-24T02:31:30.010000"],["2024-07-24T02:31:31.010000"],["2024-07-24T02:31:32.010000"],["2024-07-24T02:31:33.010000"],["2024-07-24T02:31:34.010000"],["2024-07-24T02:31:35.010000"],["2024-07-24T02:31:36.010000"],["2024-07-24T02:31:37.010000"],["2024-07-24T02:31:38.010000"],["2024-07-24T02:31:39.010000"],["2024-07-24T02:31:40.010000"],["2024-07-24T02:31:41.010000"],["2024-07-24T02:31:42.010000"],["2024-07-24T02:31:43.010000"],["2024-07-24T02:31:44.010000"],["2024-07-24T02:31:45.010000"],["2024-07-24T02:31:46.010000"],["2024-07-24T02:31:47.010000"],["2024-07-24T02:31:48.010000"],["2024-07-24T02:31:49.010000"],["2024-07-24T02:31:50.010000"],["2024-07-24T02:31:51.010000"],["2024-07-24T02:31:52.010000"],["2024-07-24T02:31:53.010000"],["2024-07-24T02:31:54.010000"],["2024-07-24T02:31:55.010000"],["2024-07-24T02:31:56.010000"],["2024-07-24T02:31:57.010000"],["2024-07-24T02:31:58.010000"],["2024-07-24T02:31:59.010000"],["2024-07-24T02:32:00.010000"],["2024-07-24T02:32:01.010000"],["2024-07-24T02:32:02.010000"],["2024-07-24T02:32:03.010000"],["2024-07-24T02:32:04.010000"],["2024-07-24T02:32:05.010000"],["2024-07-24T02:32:06.010000"],["2024-07-24T02:32:07.010000"],["2024-07-24T02:32:08.010000"],["2024-07-24T02:32:09.010000"],["2024-07-24T02:32:10.010000"],["2024-07-24T02:32:11.010000"],["2024-07-24T02:32:12.010000"],["2024-07-24T02:32:13.010000"],["2024-07-24T02:32:14.010000"],["2024-07-24T02:32:15.010000"],["2024-07-24T02:32:16.010000"],["2024-07-24T02:32:17.010000"],["2024-07-24T02:32:18.010000"],["2024-07-24T02:32:19.010000"],["2024-07-24T02:32:20.010000"],["2024-07-24T02:32:21.010000"],["2024-07-24T02:32:22.010000"],["2024-07-24T02:32:23.010000"],["2024-07-24T02:32:24.010000"],["2024-07-24T02:32:25.010000"],["2024-07-24T02:32:26.010000"],["2024-07-24T02:32:27.010000"],["2024-07-24T02:32:28.010000"],["2024-07-24T02:32:29.010000"],["2024-07-24T02:32:30.010000"],["2024-07-24T02:32:31.010000"],["2024-07-24T02:32:32.010000"],["2024-07-24T02:32:33.010000"],["2024-07-24T02:32:34.010000"],["2024-07-24T02:32:35.010000"],["2024-07-24T02:32:36.010000"],["2024-07-24T02:32:37.010000"],["2024-07-24T02:32:38.010000"],["2024-07-24T02:32:39.010000"],["2024-07-24T02:32:40.010000"],["2024-07-24T02:32:41.010000"],["2024-07-24T02:32:42.010000"],["2024-07-24T02:32:43.010000"],["2024-07-24T02:32:44.010000"],["2024-07-24T02:32:45.010000"],["2024-07-24T02:32:46.010000"],["2024-07-24T02:32:47.010000"],["2024-07-24T02:32:48.010000"],["2024-07-24T02:32:49.010000"],["2024-07-24T02:32:50.010000"],["2024-07-24T02:32:51.010000"],["2024-07-24T02:32:52.010000"],["2024-07-24T02:32:53.010000"],["2024-07-24T02:32:54.010000"],["2024-07-24T02:32:55.010000"],["2024-07-24T02:32:56.010000"],["2024-07-24T02:32:57.010000"],["2024-07-24T02:32:58.010000"],["2024-07-24T02:32:59.010000"],["2024-07-24T02:33:00.010000"],["2024-07-24T02:33:01.010000"],["2024-07-24T02:33:02.010000"],["2024-07-24T02:33:03.010000"],["2024-07-24T02:33:04.010000"],["2024-07-24T02:33:05.010000"],["2024-07-24T02:33:06.010000"],["2024-07-24T02:33:07.010000"],["2024-07-24T02:33:08.010000"],["2024-07-24T02:33:09.010000"],["2024-07-24T02:33:10.010000"],["2024-07-24T02:33:11.010000"],["2024-07-24T02:33:12.010000"],["2024-07-24T02:33:13.010000"],["2024-07-24T02:33:14.010000"],["2024-07-24T02:33:15.010000"],["2024-07-24T02:33:16.010000"],["2024-07-24T02:33:17.010000"],["2024-07-24T02:33:18.010000"],["2024-07-24T02:33:19.010000"],["2024-07-24T02:33:20.010000"],["2024-07-24T02:33:21.010000"],["2024-07-24T02:33:22.010000"],["2024-07-24T02:33:23.010000"],["2024-07-24T02:33:24.010000"],["2024-07-24T02:33:25.010000"],["2024-07-24T02:33:26.010000"],["2024-07-24T02:33:27.010000"],["2024-07-24T02:33:28.010000"],["2024-07-24T02:33:29.010000"],["2024-07-24T02:33:30.010000"],["2024-07-24T02:33:31.010000"],["2024-07-24T02:33:32.010000"],["2024-07-24T02:33:33.010000"],["2024-07-24T02:33:34.010000"],["2024-07-24T02:33:35.010000"],["2024-07-24T02:33:36.010000"],["2024-07-24T02:33:37.010000"],["2024-07-24T02:33:38.010000"],["2024-07-24T02:33:39.010000"],["2024-07-24T02:33:40.010000"],["2024-07-24T02:33:41.010000"],["2024-07-24T02:33:42.010000"],["2024-07-24T02:33:43.010000"],["2024-07-24T02:33:44.010000"],["2024-07-24T02:33:45.010000"],["2024-07-24T02:33:46.010000"],["2024-07-24T02:33:47.010000"],["2024-07-24T02:33:48.010000"],["2024-07-24T02:33:49.010000"],["2024-07-24T02:33:50.010000"],["2024-07-24T02:33:51.010000"],["2024-07-24T02:33:52.010000"],["2024-07-24T02:33:53.010000"],["2024-07-24T02:33:54.010000"],["2024-07-24T02:33:55.010000"],["2024-07-24T02:33:56.010000"],["2024-07-24T02:33:57.010000"],["2024-07-24T02:33:58.010000"],["2024-07-24T02:33:59.010000"],["2024-07-24T02:34:00.010000"],["2024-07-24T02:34:01.010000"],["2024-07-24T02:34:02.010000"],["2024-07-24T02:34:03.010000"],["2024-07-24T02:34:04.010000"],["2024-07-24T02:34:05.010000"],["2024-07-24T02:34:06.010000"],["2024-07-24T02:34:07.010000"],["2024-07-24T02:34:08.010000"],["2024-07-24T02:34:09.010000"],["2024-07-24T02:34:10.010000"],["2024-07-24T02:34:11.010000"],["2024-07-24T02:34:12.010000"],["2024-07-24T02:34:13.010000"],["2024-07-24T02:34:14.010000"],["2024-07-24T02:34:15.010000"],["2024-07-24T02:34:16.010000"],["2024-07-24T02:34:17.010000"],["2024-07-24T02:34:18.010000"],["2024-07-24T02:34:19.010000"],["2024-07-24T02:34:20.010000"],["2024-07-24T02:34:21.010000"],["2024-07-24T02:34:22.010000"],["2024-07-24T02:34:23.010000"],["2024-07-24T02:34:24.010000"],["2024-07-24T02:34:25.010000"],["2024-07-24T02:34:26.010000"],["2024-07-24T02:34:27.010000"],["2024-07-24T02:34:28.010000"],["2024-07-24T02:34:29.010000"],["2024-07-24T02:34:30.010000"],["2024-07-24T02:34:31.010000"],["2024-07-24T02:34:32.010000"],["2024-07-24T02:34:33.010000"],["2024-07-24T02:34:34.010000"],["2024-07-24T02:34:35.010000"],["2024-07-24T02:34:36.010000"],["2024-07-24T02:34:37.010000"],["2024-07-24T02:34:38.010000"],["2024-07-24T02:34:39.010000"],["2024-07-24T02:34:40.010000"],["2024-07-24T02:34:41.010000"],["2024-07-24T02:34:42.010000"],["2024-07-24T02:34:43.010000"],["2024-07-24T02:34:44.010000"],["2024-07-24T02:34:45.010000"],["2024-07-24T02:34:46.010000"],["2024-07-24T02:34:47.010000"],["2024-07-24T02:34:48.010000"],["2024-07-24T02:34:49.010000"],["2024-07-24T02:34:50.010000"],["2024-07-24T02:34:51.010000"],["2024-07-24T02:34:52.010000"],["2024-07-24T02:34:53.010000"],["2024-07-24T02:34:54.010000"],["2024-07-24T02:34:55.010000"],["2024-07-24T02:34:56.010000"],["2024-07-24T02:34:57.010000"],["2024-07-24T02:34:58.010000"],["2024-07-24T02:34:59.010000"],["2024-07-24T02:35:00.010000"],["2024-07-24T02:35:01.010000"],["2024-07-24T02:35:02.010000"],["2024-07-24T02:35:03.010000"],["2024-07-24T02:35:04.010000"],["2024-07-24T02:35:05.010000"],["2024-07-24T02:35:06.010000"],["2024-07-24T02:35:07.010000"],["2024-07-24T02:35:08.010000"],["2024-07-24T02:35:09.010000"],["2024-07-24T02:35:10.010000"],["2024-07-24T02:35:11.010000"],["2024-07-24T02:35:12.010000"],["2024-07-24T02:35:13.010000"],["2024-07-24T02:35:14.010000"],["2024-07-24T02:35:15.010000"],["2024-07-24T02:35:16.010000"],["2024-07-24T02:35:17.010000"],["2024-07-24T02:35:18.010000"],["2024-07-24T02:35:19.010000"],["2024-07-24T02:35:20.010000"],["2024-07-24T02:35:21.010000"],["2024-07-24T02:35:22.010000"],["2024-07-24T02:35:23.010000"],["2024-07-24T02:35:24.010000"],["2024-07-24T02:35:25.010000"],["2024-07-24T02:35:26.010000"],["2024-07-24T02:35:27.010000"],["2024-07-24T02:35:28.010000"],["2024-07-24T02:35:29.010000"],["2024-07-24T02:35:30.010000"],["2024-07-24T02:35:31.010000"],["2024-07-24T02:35:32.010000"],["2024-07-24T02:35:33.010000"],["2024-07-24T02:35:34.010000"],["2024-07-24T02:35:35.010000"],["2024-07-24T02:35:36.010000"],["2024-07-24T02:35:37.010000"],["2024-07-24T02:35:38.010000"],["2024-07-24T02:35:39.010000"],["2024-07-24T02:35:40.010000"],["2024-07-24T02:35:41.010000"],["2024-07-24T02:35:42.010000"],["2024-07-24T02:35:43.010000"],["2024-07-24T02:35:44.010000"],["2024-07-24T02:35:45.010000"],["2024-07-24T02:35:46.010000"],["2024-07-24T02:35:47.010000"],["2024-07-24T02:35:48.010000"],["2024-07-24T02:35:49.010000"],["2024-07-24T02:35:50.010000"],["2024-07-24T02:35:51.010000"],["2024-07-24T02:35:52.010000"],["2024-07-24T02:35:53.010000"],["2024-07-24T02:35:54.010000"],["2024-07-24T02:35:55.010000"],["2024-07-24T02:35:56.010000"],["2024-07-24T02:35:57.010000"],["2024-07-24T02:35:58.010000"],["2024-07-24T02:35:59.010000"],["2024-07-24T02:36:00.010000"],["2024-07-24T02:36:01.010000"],["2024-07-24T02:36:02.010000"],["2024-07-24T02:36:03.010000"],["2024-07-24T02:36:04.010000"],["2024-07-24T02:36:05.010000"],["2024-07-24T02:36:06.010000"],["2024-07-24T02:36:07.010000"],["2024-07-24T02:36:08.010000"],["2024-07-24T02:36:09.010000"],["2024-07-24T02:36:10.010000"],["2024-07-24T02:36:11.010000"],["2024-07-24T02:36:12.010000"],["2024-07-24T02:36:13.010000"],["2024-07-24T02:36:14.010000"],["2024-07-24T02:36:15.010000"],["2024-07-24T02:36:16.010000"],["2024-07-24T02:36:17.010000"],["2024-07-24T02:36:18.010000"],["2024-07-24T02:36:19.010000"],["2024-07-24T02:36:20.010000"],["2024-07-24T02:36:21.010000"],["2024-07-24T02:36:22.010000"],["2024-07-24T02:36:23.010000"],["2024-07-24T02:36:24.010000"],["2024-07-24T02:36:25.010000"],["2024-07-24T02:36:26.010000"],["2024-07-24T02:36:27.010000"],["2024-07-24T02:36:28.010000"],["2024-07-24T02:36:29.010000"],["2024-07-24T02:36:30.010000"],["2024-07-24T02:36:31.010000"],["2024-07-24T02:36:32.010000"],["2024-07-24T02:36:33.010000"],["2024-07-24T02:36:34.010000"],["2024-07-24T02:36:35.010000"],["2024-07-24T02:36:36.010000"],["2024-07-24T02:36:37.010000"],["2024-07-24T02:36:38.010000"],["2024-07-24T02:36:39.010000"],["2024-07-24T02:36:40.010000"],["2024-07-24T02:36:41.010000"],["2024-07-24T02:36:42.010000"],["2024-07-24T02:36:43.010000"],["2024-07-24T02:36:44.010000"],["2024-07-24T02:36:45.010000"],["2024-07-24T02:36:46.010000"],["2024-07-24T02:36:47.010000"],["2024-07-24T02:36:48.010000"],["2024-07-24T02:36:49.010000"],["2024-07-24T02:36:50.010000"],["2024-07-24T02:36:51.010000"],["2024-07-24T02:36:52.010000"],["2024-07-24T02:36:53.010000"],["2024-07-24T02:36:54.010000"],["2024-07-24T02:36:55.010000"],["2024-07-24T02:36:56.010000"],["2024-07-24T02:36:57.010000"],["2024-07-24T02:36:58.010000"],["2024-07-24T02:36:59.010000"],["2024-07-24T02:37:00.010000"],["2024-07-24T02:37:01.010000"],["2024-07-24T02:37:02.010000"],["2024-07-24T02:37:03.010000"],["2024-07-24T02:37:04.010000"],["2024-07-24T02:37:05.010000"],["2024-07-24T02:37:06.010000"],["2024-07-24T02:37:07.010000"],["2024-07-24T02:37:08.010000"],["2024-07-24T02:37:09.010000"],["2024-07-24T02:37:10.010000"],["2024-07-24T02:37:11.010000"],["2024-07-24T02:37:12.010000"],["2024-07-24T02:37:13.010000"],["2024-07-24T02:37:14.010000"],["2024-07-24T02:37:15.010000"],["2024-07-24T02:37:16.010000"],["2024-07-24T02:37:17.010000"],["2024-07-24T02:37:18.010000"],["2024-07-24T02:37:19.010000"],["2024-07-24T02:37:20.010000"],["2024-07-24T02:37:21.010000"],["2024-07-24T02:37:22.010000"],["2024-07-24T02:37:23.010000"],["2024-07-24T02:37:24.010000"],["2024-07-24T02:37:25.010000"],["2024-07-24T02:37:26.010000"],["2024-07-24T02:37:27.010000"],["2024-07-24T02:37:28.010000"],["2024-07-24T02:37:29.010000"],["2024-07-24T02:37:30.010000"],["2024-07-24T02:37:31.010000"],["2024-07-24T02:37:32.010000"],["2024-07-24T02:37:33.010000"],["2024-07-24T02:37:34.010000"],["2024-07-24T02:37:35.010000"],["2024-07-24T02:37:36.010000"],["2024-07-24T02:37:37.010000"],["2024-07-24T02:37:38.010000"],["2024-07-24T02:37:39.010000"],["2024-07-24T02:37:40.010000"],["2024-07-24T02:37:41.010000"],["2024-07-24T02:37:42.010000"],["2024-07-24T02:37:43.010000"],["2024-07-24T02:37:44.010000"],["2024-07-24T02:37:45.010000"],["2024-07-24T02:37:46.010000"],["2024-07-24T02:37:47.010000"],["2024-07-24T02:37:48.010000"],["2024-07-24T02:37:49.010000"],["2024-07-24T02:37:50.010000"],["2024-07-24T02:37:51.010000"],["2024-07-24T02:37:52.010000"],["2024-07-24T02:37:53.010000"],["2024-07-24T02:37:54.010000"],["2024-07-24T02:37:55.010000"],["2024-07-24T02:37:56.010000"],["2024-07-24T02:37:57.010000"],["2024-07-24T02:37:58.010000"],["2024-07-24T02:37:59.010000"],["2024-07-24T02:38:00.010000"],["2024-07-24T02:38:01.010000"],["2024-07-24T02:38:02.010000"],["2024-07-24T02:38:03.010000"],["2024-07-24T02:38:04.010000"],["2024-07-24T02:38:05.010000"],["2024-07-24T02:38:06.010000"],["2024-07-24T02:38:07.010000"],["2024-07-24T02:38:08.010000"],["2024-07-24T02:38:09.010000"],["2024-07-24T02:38:10.010000"],["2024-07-24T02:38:11.010000"],["2024-07-24T02:38:12.010000"],["2024-07-24T02:38:13.010000"],["2024-07-24T02:38:14.010000"],["2024-07-24T02:38:15.010000"],["2024-07-24T02:38:16.010000"],["2024-07-24T02:38:17.010000"],["2024-07-24T02:38:18.010000"],["2024-07-24T02:38:19.010000"],["2024-07-24T02:38:20.010000"],["2024-07-24T02:38:21.010000"],["2024-07-24T02:38:22.010000"],["2024-07-24T02:38:23.010000"],["2024-07-24T02:38:24.010000"],["2024-07-24T02:38:25.010000"],["2024-07-24T02:38:26.010000"],["2024-07-24T02:38:27.010000"],["2024-07-24T02:38:28.010000"],["2024-07-24T02:38:29.010000"],["2024-07-24T02:38:30.010000"],["2024-07-24T02:38:31.010000"],["2024-07-24T02:38:32.010000"],["2024-07-24T02:38:33.010000"],["2024-07-24T02:38:34.010000"],["2024-07-24T02:38:35.010000"],["2024-07-24T02:38:36.010000"],["2024-07-24T02:38:37.010000"],["2024-07-24T02:38:38.010000"],["2024-07-24T02:38:39.010000"],["2024-07-24T02:38:40.010000"],["2024-07-24T02:38:41.010000"],["2024-07-24T02:38:42.010000"],["2024-07-24T02:38:43.010000"],["2024-07-24T02:38:44.010000"],["2024-07-24T02:38:45.010000"],["2024-07-24T02:38:46.010000"],["2024-07-24T02:38:47.010000"],["2024-07-24T02:38:48.010000"],["2024-07-24T02:38:49.010000"],["2024-07-24T02:38:50.010000"],["2024-07-24T02:38:51.010000"],["2024-07-24T02:38:52.010000"],["2024-07-24T02:38:53.010000"],["2024-07-24T02:38:54.010000"],["2024-07-24T02:38:55.010000"],["2024-07-24T02:38:56.010000"],["2024-07-24T02:38:57.010000"],["2024-07-24T02:38:58.010000"],["2024-07-24T02:38:59.010000"],["2024-07-24T02:39:00.010000"],["2024-07-24T02:39:01.010000"],["2024-07-24T02:39:02.010000"],["2024-07-24T02:39:03.010000"],["2024-07-24T02:39:04.010000"],["2024-07-24T02:39:05.010000"],["2024-07-24T02:39:06.010000"],["2024-07-24T02:39:07.010000"],["2024-07-24T02:39:08.010000"],["2024-07-24T02:39:09.010000"],["2024-07-24T02:39:10.010000"],["2024-07-24T02:39:11.010000"],["2024-07-24T02:39:12.010000"],["2024-07-24T02:39:13.010000"],["2024-07-24T02:39:14.010000"],["2024-07-24T02:39:15.010000"],["2024-07-24T02:39:16.010000"],["2024-07-24T02:39:17.010000"],["2024-07-24T02:39:18.010000"],["2024-07-24T02:39:19.010000"],["2024-07-24T02:39:20.010000"],["2024-07-24T02:39:21.010000"],["2024-07-24T02:39:22.010000"],["2024-07-24T02:39:23.010000"],["2024-07-24T02:39:24.010000"],["2024-07-24T02:39:25.010000"],["2024-07-24T02:39:26.010000"],["2024-07-24T02:39:27.010000"],["2024-07-24T02:39:28.010000"],["2024-07-24T02:39:29.010000"],["2024-07-24T02:39:30.010000"],["2024-07-24T02:39:31.010000"],["2024-07-24T02:39:32.010000"],["2024-07-24T02:39:33.010000"],["2024-07-24T02:39:34.010000"],["2024-07-24T02:39:35.010000"],["2024-07-24T02:39:36.010000"],["2024-07-24T02:39:37.010000"],["2024-07-24T02:39:38.010000"],["2024-07-24T02:39:39.010000"],["2024-07-24T02:39:40.010000"],["2024-07-24T02:39:41.010000"],["2024-07-24T02:39:42.010000"],["2024-07-24T02:39:43.010000"],["2024-07-24T02:39:44.010000"],["2024-07-24T02:39:45.010000"],["2024-07-24T02:39:46.010000"],["2024-07-24T02:39:47.010000"],["2024-07-24T02:39:48.010000"],["2024-07-24T02:39:49.010000"],["2024-07-24T02:39:50.010000"],["2024-07-24T02:39:51.010000"],["2024-07-24T02:39:52.010000"],["2024-07-24T02:39:53.010000"],["2024-07-24T02:39:54.010000"],["2024-07-24T02:39:55.010000"],["2024-07-24T02:39:56.010000"],["2024-07-24T02:39:57.010000"],["2024-07-24T02:39:58.010000"],["2024-07-24T02:39:59.010000"],["2024-07-24T02:40:00.010000"],["2024-07-24T02:40:01.010000"],["2024-07-24T02:40:02.010000"],["2024-07-24T02:40:03.010000"],["2024-07-24T02:40:04.010000"],["2024-07-24T02:40:05.010000"],["2024-07-24T02:40:06.010000"],["2024-07-24T02:40:07.010000"],["2024-07-24T02:40:08.010000"],["2024-07-24T02:40:09.010000"],["2024-07-24T02:40:10.010000"],["2024-07-24T02:40:11.010000"],["2024-07-24T02:40:12.010000"],["2024-07-24T02:40:13.010000"],["2024-07-24T02:40:14.010000"],["2024-07-24T02:40:15.010000"],["2024-07-24T02:40:16.010000"],["2024-07-24T02:40:17.010000"],["2024-07-24T02:40:18.010000"],["2024-07-24T02:40:19.010000"],["2024-07-24T02:40:20.010000"],["2024-07-24T02:40:21.010000"],["2024-07-24T02:40:22.010000"],["2024-07-24T02:40:23.010000"],["2024-07-24T02:40:24.010000"],["2024-07-24T02:40:25.010000"],["2024-07-24T02:40:26.010000"],["2024-07-24T02:40:27.010000"],["2024-07-24T02:40:28.010000"],["2024-07-24T02:40:29.010000"],["2024-07-24T02:40:30.010000"],["2024-07-24T02:40:31.010000"],["2024-07-24T02:40:32.010000"],["2024-07-24T02:40:33.010000"],["2024-07-24T02:40:34.010000"],["2024-07-24T02:40:35.010000"],["2024-07-24T02:40:36.010000"],["2024-07-24T02:40:37.010000"],["2024-07-24T02:40:38.010000"],["2024-07-24T02:40:39.010000"],["2024-07-24T02:40:40.010000"],["2024-07-24T02:40:41.010000"],["2024-07-24T02:40:42.010000"],["2024-07-24T02:40:43.010000"],["2024-07-24T02:40:44.010000"],["2024-07-24T02:40:45.010000"],["2024-07-24T02:40:46.010000"],["2024-07-24T02:40:47.010000"],["2024-07-24T02:40:48.010000"],["2024-07-24T02:40:49.010000"],["2024-07-24T02:40:50.010000"],["2024-07-24T02:40:51.010000"],["2024-07-24T02:40:52.010000"],["2024-07-24T02:40:53.010000"],["2024-07-24T02:40:54.010000"],["2024-07-24T02:40:55.010000"],["2024-07-24T02:40:56.010000"],["2024-07-24T02:40:57.010000"],["2024-07-24T02:40:58.010000"],["2024-07-24T02:40:59.010000"],["2024-07-24T02:41:00.010000"],["2024-07-24T02:41:01.010000"],["2024-07-24T02:41:02.010000"],["2024-07-24T02:41:03.010000"],["2024-07-24T02:41:04.010000"],["2024-07-24T02:41:05.010000"],["2024-07-24T02:41:06.010000"],["2024-07-24T02:41:07.010000"],["2024-07-24T02:41:08.010000"],["2024-07-24T02:41:09.010000"],["2024-07-24T02:41:10.010000"],["2024-07-24T02:41:11.010000"],["2024-07-24T02:41:12.010000"],["2024-07-24T02:41:13.010000"],["2024-07-24T02:41:14.010000"],["2024-07-24T02:41:15.010000"],["2024-07-24T02:41:16.010000"],["2024-07-24T02:41:17.010000"],["2024-07-24T02:41:18.010000"],["2024-07-24T02:41:19.010000"],["2024-07-24T02:41:20.010000"],["2024-07-24T02:41:21.010000"],["2024-07-24T02:41:22.010000"],["2024-07-24T02:41:23.010000"],["2024-07-24T02:41:24.010000"],["2024-07-24T02:41:25.010000"],["2024-07-24T02:41:26.010000"],["2024-07-24T02:41:27.010000"],["2024-07-24T02:41:28.010000"],["2024-07-24T02:41:29.010000"],["2024-07-24T02:41:30.010000"],["2024-07-24T02:41:31.010000"],["2024-07-24T02:41:32.010000"],["2024-07-24T02:41:33.010000"],["2024-07-24T02:41:34.010000"],["2024-07-24T02:41:35.010000"],["2024-07-24T02:41:36.010000"],["2024-07-24T02:41:37.010000"],["2024-07-24T02:41:38.010000"],["2024-07-24T02:41:39.010000"],["2024-07-24T02:41:40.010000"],["2024-07-24T02:41:41.010000"],["2024-07-24T02:41:42.010000"],["2024-07-24T02:41:43.010000"],["2024-07-24T02:41:44.010000"],["2024-07-24T02:41:45.010000"],["2024-07-24T02:41:46.010000"],["2024-07-24T02:41:47.010000"],["2024-07-24T02:41:48.010000"],["2024-07-24T02:41:49.010000"],["2024-07-24T02:41:50.010000"],["2024-07-24T02:41:51.010000"],["2024-07-24T02:41:52.010000"],["2024-07-24T02:41:53.010000"],["2024-07-24T02:41:54.010000"],["2024-07-24T02:41:55.010000"],["2024-07-24T02:41:56.010000"],["2024-07-24T02:41:57.010000"],["2024-07-24T02:41:58.010000"],["2024-07-24T02:41:59.010000"],["2024-07-24T02:42:00.010000"],["2024-07-24T02:42:01.010000"],["2024-07-24T02:42:02.010000"],["2024-07-24T02:42:03.010000"],["2024-07-24T02:42:04.010000"],["2024-07-24T02:42:05.010000"],["2024-07-24T02:42:06.010000"],["2024-07-24T02:42:07.010000"],["2024-07-24T02:42:08.010000"],["2024-07-24T02:42:09.010000"],["2024-07-24T02:42:10.010000"],["2024-07-24T02:42:11.010000"],["2024-07-24T02:42:12.010000"],["2024-07-24T02:42:13.010000"],["2024-07-24T02:42:14.010000"],["2024-07-24T02:42:15.010000"],["2024-07-24T02:42:16.010000"],["2024-07-24T02:42:17.010000"],["2024-07-24T02:42:18.010000"],["2024-07-24T02:42:19.010000"],["2024-07-24T02:42:20.010000"],["2024-07-24T02:42:21.010000"],["2024-07-24T02:42:22.010000"],["2024-07-24T02:42:23.010000"],["2024-07-24T02:42:24.010000"],["2024-07-24T02:42:25.010000"],["2024-07-24T02:42:26.010000"],["2024-07-24T02:42:27.010000"],["2024-07-24T02:42:28.010000"],["2024-07-24T02:42:29.010000"],["2024-07-24T02:42:30.010000"],["2024-07-24T02:42:31.010000"],["2024-07-24T02:42:32.010000"],["2024-07-24T02:42:33.010000"],["2024-07-24T02:42:34.010000"],["2024-07-24T02:42:35.010000"],["2024-07-24T02:42:36.010000"],["2024-07-24T02:42:37.010000"],["2024-07-24T02:42:38.010000"],["2024-07-24T02:42:39.010000"],["2024-07-24T02:42:40.010000"],["2024-07-24T02:42:41.010000"],["2024-07-24T02:42:42.010000"],["2024-07-24T02:42:43.010000"],["2024-07-24T02:42:44.010000"],["2024-07-24T02:42:45.010000"],["2024-07-24T02:42:46.010000"],["2024-07-24T02:42:47.010000"],["2024-07-24T02:42:48.010000"],["2024-07-24T02:42:49.010000"],["2024-07-24T02:42:50.010000"],["2024-07-24T02:42:51.010000"],["2024-07-24T02:42:52.010000"],["2024-07-24T02:42:53.010000"],["2024-07-24T02:42:54.010000"],["2024-07-24T02:42:55.010000"],["2024-07-24T02:42:56.010000"],["2024-07-24T02:42:57.010000"],["2024-07-24T02:42:58.010000"],["2024-07-24T02:42:59.010000"],["2024-07-24T02:43:00.010000"],["2024-07-24T02:43:01.010000"],["2024-07-24T02:43:02.010000"],["2024-07-24T02:43:03.010000"],["2024-07-24T02:43:04.010000"],["2024-07-24T02:43:05.010000"],["2024-07-24T02:43:06.010000"],["2024-07-24T02:43:07.010000"],["2024-07-24T02:43:08.010000"],["2024-07-24T02:43:09.010000"],["2024-07-24T02:43:10.010000"],["2024-07-24T02:43:11.010000"],["2024-07-24T02:43:12.010000"],["2024-07-24T02:43:13.010000"],["2024-07-24T02:43:14.010000"],["2024-07-24T02:43:15.010000"],["2024-07-24T02:43:16.010000"],["2024-07-24T02:43:17.010000"],["2024-07-24T02:43:18.010000"],["2024-07-24T02:43:19.010000"],["2024-07-24T02:43:20.010000"],["2024-07-24T02:43:21.010000"],["2024-07-24T02:43:22.010000"],["2024-07-24T02:43:23.010000"],["2024-07-24T02:43:24.010000"],["2024-07-24T02:43:25.010000"],["2024-07-24T02:43:26.010000"],["2024-07-24T02:43:27.010000"],["2024-07-24T02:43:28.010000"],["2024-07-24T02:43:29.010000"],["2024-07-24T02:43:30.010000"],["2024-07-24T02:43:31.010000"],["2024-07-24T02:43:32.010000"],["2024-07-24T02:43:33.010000"],["2024-07-24T02:43:34.010000"],["2024-07-24T02:43:35.010000"],["2024-07-24T02:43:36.010000"],["2024-07-24T02:43:37.010000"],["2024-07-24T02:43:38.010000"],["2024-07-24T02:43:39.010000"],["2024-07-24T02:43:40.010000"],["2024-07-24T02:43:41.010000"],["2024-07-24T02:43:42.010000"],["2024-07-24T02:43:43.010000"],["2024-07-24T02:43:44.010000"],["2024-07-24T02:43:45.010000"],["2024-07-24T02:43:46.010000"],["2024-07-24T02:43:47.010000"],["2024-07-24T02:43:48.010000"],["2024-07-24T02:43:49.010000"],["2024-07-24T02:43:50.010000"],["2024-07-24T02:43:51.010000"],["2024-07-24T02:43:52.010000"],["2024-07-24T02:43:53.010000"],["2024-07-24T02:43:54.010000"],["2024-07-24T02:43:55.010000"],["2024-07-24T02:43:56.010000"],["2024-07-24T02:43:57.010000"],["2024-07-24T02:43:58.010000"],["2024-07-24T02:43:59.010000"],["2024-07-24T02:44:00.010000"],["2024-07-24T02:44:01.010000"],["2024-07-24T02:44:02.010000"],["2024-07-24T02:44:03.010000"],["2024-07-24T02:44:04.010000"],["2024-07-24T02:44:05.010000"],["2024-07-24T02:44:06.010000"],["2024-07-24T02:44:07.010000"],["2024-07-24T02:44:08.010000"],["2024-07-24T02:44:09.010000"],["2024-07-24T02:44:10.010000"],["2024-07-24T02:44:11.010000"],["2024-07-24T02:44:12.010000"],["2024-07-24T02:44:13.010000"],["2024-07-24T02:44:14.010000"],["2024-07-24T02:44:15.010000"],["2024-07-24T02:44:16.010000"],["2024-07-24T02:44:17.010000"],["2024-07-24T02:44:18.010000"],["2024-07-24T02:44:19.010000"],["2024-07-24T02:44:20.010000"],["2024-07-24T02:44:21.010000"],["2024-07-24T02:44:22.010000"],["2024-07-24T02:44:23.010000"],["2024-07-24T02:44:24.010000"],["2024-07-24T02:44:25.010000"],["2024-07-24T02:44:26.010000"],["2024-07-24T02:44:27.010000"],["2024-07-24T02:44:28.010000"],["2024-07-24T02:44:29.010000"],["2024-07-24T02:44:30.010000"],["2024-07-24T02:44:31.010000"],["2024-07-24T02:44:32.010000"],["2024-07-24T02:44:33.010000"],["2024-07-24T02:44:34.010000"],["2024-07-24T02:44:35.010000"],["2024-07-24T02:44:36.010000"],["2024-07-24T02:44:37.010000"],["2024-07-24T02:44:38.010000"],["2024-07-24T02:44:39.010000"],["2024-07-24T02:44:40.010000"],["2024-07-24T02:44:41.010000"],["2024-07-24T02:44:42.010000"],["2024-07-24T02:44:43.010000"],["2024-07-24T02:44:44.010000"],["2024-07-24T02:44:45.010000"],["2024-07-24T02:44:46.010000"],["2024-07-24T02:44:47.010000"],["2024-07-24T02:44:48.010000"],["2024-07-24T02:44:49.010000"],["2024-07-24T02:44:50.010000"],["2024-07-24T02:44:51.010000"],["2024-07-24T02:44:52.010000"],["2024-07-24T02:44:53.010000"],["2024-07-24T02:44:54.010000"],["2024-07-24T02:44:55.010000"],["2024-07-24T02:44:56.010000"],["2024-07-24T02:44:57.010000"],["2024-07-24T02:44:58.010000"],["2024-07-24T02:44:59.010000"],["2024-07-24T02:45:00.010000"],["2024-07-24T02:45:01.010000"],["2024-07-24T02:45:02.010000"],["2024-07-24T02:45:03.010000"],["2024-07-24T02:45:04.010000"],["2024-07-24T02:45:05.010000"],["2024-07-24T02:45:06.010000"],["2024-07-24T02:45:07.010000"],["2024-07-24T02:45:08.010000"],["2024-07-24T02:45:09.010000"],["2024-07-24T02:45:10.010000"],["2024-07-24T02:45:11.010000"],["2024-07-24T02:45:12.010000"],["2024-07-24T02:45:13.010000"],["2024-07-24T02:45:14.010000"],["2024-07-24T02:45:15.010000"],["2024-07-24T02:45:16.010000"],["2024-07-24T02:45:17.010000"],["2024-07-24T02:45:18.010000"],["2024-07-24T02:45:19.010000"],["2024-07-24T02:45:20.010000"],["2024-07-24T02:45:21.010000"],["2024-07-24T02:45:22.010000"],["2024-07-24T02:45:23.010000"],["2024-07-24T02:45:24.010000"],["2024-07-24T02:45:25.010000"],["2024-07-24T02:45:26.010000"],["2024-07-24T02:45:27.010000"],["2024-07-24T02:45:28.010000"],["2024-07-24T02:45:29.010000"],["2024-07-24T02:45:30.010000"],["2024-07-24T02:45:31.010000"],["2024-07-24T02:45:32.010000"],["2024-07-24T02:45:33.010000"],["2024-07-24T02:45:34.010000"],["2024-07-24T02:45:35.010000"],["2024-07-24T02:45:36.010000"],["2024-07-24T02:45:37.010000"],["2024-07-24T02:45:38.010000"],["2024-07-24T02:45:39.010000"],["2024-07-24T02:45:40.010000"],["2024-07-24T02:45:41.010000"],["2024-07-24T02:45:42.010000"],["2024-07-24T02:45:43.010000"],["2024-07-24T02:45:44.010000"],["2024-07-24T02:45:45.010000"],["2024-07-24T02:45:46.010000"],["2024-07-24T02:45:47.010000"],["2024-07-24T02:45:48.010000"],["2024-07-24T02:45:49.010000"],["2024-07-24T02:45:50.010000"],["2024-07-24T02:45:51.010000"],["2024-07-24T02:45:52.010000"],["2024-07-24T02:45:53.010000"],["2024-07-24T02:45:54.010000"],["2024-07-24T02:45:55.010000"],["2024-07-24T02:45:56.010000"],["2024-07-24T02:45:57.010000"],["2024-07-24T02:45:58.010000"],["2024-07-24T02:45:59.010000"],["2024-07-24T02:46:00.010000"],["2024-07-24T02:46:01.010000"],["2024-07-24T02:46:02.010000"],["2024-07-24T02:46:03.010000"],["2024-07-24T02:46:04.010000"],["2024-07-24T02:46:05.010000"],["2024-07-24T02:46:06.010000"],["2024-07-24T02:46:07.010000"],["2024-07-24T02:46:08.010000"],["2024-07-24T02:46:09.010000"],["2024-07-24T02:46:10.010000"],["2024-07-24T02:46:11.010000"],["2024-07-24T02:46:12.010000"],["2024-07-24T02:46:13.010000"],["2024-07-24T02:46:14.010000"],["2024-07-24T02:46:15.010000"],["2024-07-24T02:46:16.010000"],["2024-07-24T02:46:17.010000"],["2024-07-24T02:46:18.010000"],["2024-07-24T02:46:19.010000"],["2024-07-24T02:46:20.010000"],["2024-07-24T02:46:21.010000"],["2024-07-24T02:46:22.010000"],["2024-07-24T02:46:23.010000"],["2024-07-24T02:46:24.010000"],["2024-07-24T02:46:25.010000"],["2024-07-24T02:46:26.010000"],["2024-07-24T02:46:27.010000"],["2024-07-24T02:46:28.010000"],["2024-07-24T02:46:29.010000"],["2024-07-24T02:46:30.010000"],["2024-07-24T02:46:31.010000"],["2024-07-24T02:46:32.010000"],["2024-07-24T02:46:33.010000"],["2024-07-24T02:46:34.010000"],["2024-07-24T02:46:35.010000"],["2024-07-24T02:46:36.010000"],["2024-07-24T02:46:37.010000"],["2024-07-24T02:46:38.010000"],["2024-07-24T02:46:39.010000"],["2024-07-24T02:46:40.010000"],["2024-07-24T02:46:41.010000"],["2024-07-24T02:46:42.010000"],["2024-07-24T02:46:43.010000"],["2024-07-24T02:46:44.010000"],["2024-07-24T02:46:45.010000"],["2024-07-24T02:46:46.010000"],["2024-07-24T02:46:47.010000"],["2024-07-24T02:46:48.010000"],["2024-07-24T02:46:49.010000"],["2024-07-24T02:46:50.010000"],["2024-07-24T02:46:51.010000"],["2024-07-24T02:46:52.010000"],["2024-07-24T02:46:53.010000"],["2024-07-24T02:46:54.010000"],["2024-07-24T02:46:55.010000"],["2024-07-24T02:46:56.010000"],["2024-07-24T02:46:57.010000"],["2024-07-24T02:46:58.010000"],["2024-07-24T02:46:59.010000"],["2024-07-24T02:47:00.010000"],["2024-07-24T02:47:01.010000"],["2024-07-24T02:47:02.010000"],["2024-07-24T02:47:03.010000"],["2024-07-24T02:47:04.010000"],["2024-07-24T02:47:05.010000"],["2024-07-24T02:47:06.010000"],["2024-07-24T02:47:07.010000"],["2024-07-24T02:47:08.010000"],["2024-07-24T02:47:09.010000"],["2024-07-24T02:47:10.010000"],["2024-07-24T02:47:11.010000"],["2024-07-24T02:47:12.010000"],["2024-07-24T02:47:13.010000"],["2024-07-24T02:47:14.010000"],["2024-07-24T02:47:15.010000"],["2024-07-24T02:47:16.010000"],["2024-07-24T02:47:17.010000"],["2024-07-24T02:47:18.010000"],["2024-07-24T02:47:19.010000"],["2024-07-24T02:47:20.010000"],["2024-07-24T02:47:21.010000"],["2024-07-24T02:47:22.010000"],["2024-07-24T02:47:23.010000"],["2024-07-24T02:47:24.010000"],["2024-07-24T02:47:25.010000"],["2024-07-24T02:47:26.010000"],["2024-07-24T02:47:27.010000"],["2024-07-24T02:47:28.010000"],["2024-07-24T02:47:29.010000"],["2024-07-24T02:47:30.010000"],["2024-07-24T02:47:31.010000"],["2024-07-24T02:47:32.010000"],["2024-07-24T02:47:33.010000"],["2024-07-24T02:47:34.010000"],["2024-07-24T02:47:35.010000"],["2024-07-24T02:47:36.010000"],["2024-07-24T02:47:37.010000"],["2024-07-24T02:47:38.010000"],["2024-07-24T02:47:39.010000"],["2024-07-24T02:47:40.010000"],["2024-07-24T02:47:41.010000"],["2024-07-24T02:47:42.010000"],["2024-07-24T02:47:43.010000"],["2024-07-24T02:47:44.010000"],["2024-07-24T02:47:45.010000"],["2024-07-24T02:47:46.010000"],["2024-07-24T02:47:47.010000"],["2024-07-24T02:47:48.010000"],["2024-07-24T02:47:49.010000"],["2024-07-24T02:47:50.010000"],["2024-07-24T02:47:51.010000"],["2024-07-24T02:47:52.010000"],["2024-07-24T02:47:53.010000"],["2024-07-24T02:47:54.010000"],["2024-07-24T02:47:55.010000"],["2024-07-24T02:47:56.010000"],["2024-07-24T02:47:57.010000"],["2024-07-24T02:47:58.010000"],["2024-07-24T02:47:59.010000"],["2024-07-24T02:48:00.010000"],["2024-07-24T02:48:01.010000"],["2024-07-24T02:48:02.010000"],["2024-07-24T02:48:03.010000"],["2024-07-24T02:48:04.010000"],["2024-07-24T02:48:05.010000"],["2024-07-24T02:48:06.010000"],["2024-07-24T02:48:07.010000"],["2024-07-24T02:48:08.010000"],["2024-07-24T02:48:09.010000"],["2024-07-24T02:48:10.010000"],["2024-07-24T02:48:11.010000"],["2024-07-24T02:48:12.010000"],["2024-07-24T02:48:13.010000"],["2024-07-24T02:48:14.010000"],["2024-07-24T02:48:15.010000"],["2024-07-24T02:48:16.010000"],["2024-07-24T02:48:17.010000"],["2024-07-24T02:48:18.010000"],["2024-07-24T02:48:19.010000"],["2024-07-24T02:48:20.010000"],["2024-07-24T02:48:21.010000"],["2024-07-24T02:48:22.010000"],["2024-07-24T02:48:23.010000"],["2024-07-24T02:48:24.010000"],["2024-07-24T02:48:25.010000"],["2024-07-24T02:48:26.010000"],["2024-07-24T02:48:27.010000"],["2024-07-24T02:48:28.010000"],["2024-07-24T02:48:29.010000"],["2024-07-24T02:48:30.010000"],["2024-07-24T02:48:31.010000"],["2024-07-24T02:48:32.010000"],["2024-07-24T02:48:33.010000"],["2024-07-24T02:48:34.010000"],["2024-07-24T02:48:35.010000"],["2024-07-24T02:48:36.010000"],["2024-07-24T02:48:37.010000"],["2024-07-24T02:48:38.010000"],["2024-07-24T02:48:39.010000"],["2024-07-24T02:48:40.010000"],["2024-07-24T02:48:41.010000"],["2024-07-24T02:48:42.010000"],["2024-07-24T02:48:43.010000"],["2024-07-24T02:48:44.010000"],["2024-07-24T02:48:45.010000"],["2024-07-24T02:48:46.010000"],["2024-07-24T02:48:47.010000"],["2024-07-24T02:48:48.010000"],["2024-07-24T02:48:49.010000"],["2024-07-24T02:48:50.010000"],["2024-07-24T02:48:51.010000"],["2024-07-24T02:48:52.010000"],["2024-07-24T02:48:53.010000"],["2024-07-24T02:48:54.010000"],["2024-07-24T02:48:55.010000"],["2024-07-24T02:48:56.010000"],["2024-07-24T02:48:57.010000"],["2024-07-24T02:48:58.010000"],["2024-07-24T02:48:59.010000"],["2024-07-24T02:49:00.010000"],["2024-07-24T02:49:01.010000"],["2024-07-24T02:49:02.010000"],["2024-07-24T02:49:03.010000"],["2024-07-24T02:49:04.010000"],["2024-07-24T02:49:05.010000"],["2024-07-24T02:49:06.010000"],["2024-07-24T02:49:07.010000"],["2024-07-24T02:49:08.010000"],["2024-07-24T02:49:09.010000"],["2024-07-24T02:49:10.010000"],["2024-07-24T02:49:11.010000"],["2024-07-24T02:49:12.010000"],["2024-07-24T02:49:13.010000"],["2024-07-24T02:49:14.010000"],["2024-07-24T02:49:15.010000"],["2024-07-24T02:49:16.010000"],["2024-07-24T02:49:17.010000"],["2024-07-24T02:49:18.010000"],["2024-07-24T02:49:19.010000"],["2024-07-24T02:49:20.010000"],["2024-07-24T02:49:21.010000"],["2024-07-24T02:49:22.010000"],["2024-07-24T02:49:23.010000"],["2024-07-24T02:49:24.010000"],["2024-07-24T02:49:25.010000"],["2024-07-24T02:49:26.010000"],["2024-07-24T02:49:27.010000"],["2024-07-24T02:49:28.010000"],["2024-07-24T02:49:29.010000"],["2024-07-24T02:49:30.010000"],["2024-07-24T02:49:31.010000"],["2024-07-24T02:49:32.010000"],["2024-07-24T02:49:33.010000"],["2024-07-24T02:49:34.010000"],["2024-07-24T02:49:35.010000"],["2024-07-24T02:49:36.010000"],["2024-07-24T02:49:37.010000"],["2024-07-24T02:49:38.010000"],["2024-07-24T02:49:39.010000"],["2024-07-24T02:49:40.010000"],["2024-07-24T02:49:41.010000"],["2024-07-24T02:49:42.010000"],["2024-07-24T02:49:43.010000"],["2024-07-24T02:49:44.010000"],["2024-07-24T02:49:45.010000"],["2024-07-24T02:49:46.010000"],["2024-07-24T02:49:47.010000"],["2024-07-24T02:49:48.010000"],["2024-07-24T02:49:49.010000"],["2024-07-24T02:49:50.010000"],["2024-07-24T02:49:51.010000"],["2024-07-24T02:49:52.010000"],["2024-07-24T02:49:53.010000"],["2024-07-24T02:49:54.010000"],["2024-07-24T02:49:55.010000"],["2024-07-24T02:49:56.010000"],["2024-07-24T02:49:57.010000"],["2024-07-24T02:49:58.010000"],["2024-07-24T02:49:59.010000"],["2024-07-24T02:50:00.010000"],["2024-07-24T02:50:01.010000"],["2024-07-24T02:50:02.010000"],["2024-07-24T02:50:03.010000"],["2024-07-24T02:50:04.010000"],["2024-07-24T02:50:05.010000"],["2024-07-24T02:50:06.010000"],["2024-07-24T02:50:07.010000"],["2024-07-24T02:50:08.010000"],["2024-07-24T02:50:09.010000"],["2024-07-24T02:50:10.010000"],["2024-07-24T02:50:11.010000"],["2024-07-24T02:50:12.010000"],["2024-07-24T02:50:13.010000"],["2024-07-24T02:50:14.010000"],["2024-07-24T02:50:15.010000"],["2024-07-24T02:50:16.010000"],["2024-07-24T02:50:17.010000"],["2024-07-24T02:50:18.010000"],["2024-07-24T02:50:19.010000"],["2024-07-24T02:50:20.010000"],["2024-07-24T02:50:21.010000"],["2024-07-24T02:50:22.010000"],["2024-07-24T02:50:23.010000"],["2024-07-24T02:50:24.010000"],["2024-07-24T02:50:25.010000"],["2024-07-24T02:50:26.010000"],["2024-07-24T02:50:27.010000"],["2024-07-24T02:50:28.010000"],["2024-07-24T02:50:29.010000"],["2024-07-24T02:50:30.010000"],["2024-07-24T02:50:31.010000"],["2024-07-24T02:50:32.010000"],["2024-07-24T02:50:33.010000"],["2024-07-24T02:50:34.010000"],["2024-07-24T02:50:35.010000"],["2024-07-24T02:50:36.010000"],["2024-07-24T02:50:37.010000"],["2024-07-24T02:50:38.010000"],["2024-07-24T02:50:39.010000"],["2024-07-24T02:50:40.010000"],["2024-07-24T02:50:41.010000"],["2024-07-24T02:50:42.010000"],["2024-07-24T02:50:43.010000"],["2024-07-24T02:50:44.010000"],["2024-07-24T02:50:45.010000"],["2024-07-24T02:50:46.010000"],["2024-07-24T02:50:47.010000"],["2024-07-24T02:50:48.010000"],["2024-07-24T02:50:49.010000"],["2024-07-24T02:50:50.010000"],["2024-07-24T02:50:51.010000"],["2024-07-24T02:50:52.010000"],["2024-07-24T02:50:53.010000"],["2024-07-24T02:50:54.010000"],["2024-07-24T02:50:55.010000"],["2024-07-24T02:50:56.010000"],["2024-07-24T02:50:57.010000"],["2024-07-24T02:50:58.010000"],["2024-07-24T02:50:59.010000"],["2024-07-24T02:51:00.010000"],["2024-07-24T02:51:01.010000"],["2024-07-24T02:51:02.010000"],["2024-07-24T02:51:03.010000"],["2024-07-24T02:51:04.010000"],["2024-07-24T02:51:05.010000"],["2024-07-24T02:51:06.010000"],["2024-07-24T02:51:07.010000"],["2024-07-24T02:51:08.010000"],["2024-07-24T02:51:09.010000"],["2024-07-24T02:51:10.010000"],["2024-07-24T02:51:11.010000"],["2024-07-24T02:51:12.010000"],["2024-07-24T02:51:13.010000"],["2024-07-24T02:51:14.010000"],["2024-07-24T02:51:15.010000"],["2024-07-24T02:51:16.010000"],["2024-07-24T02:51:17.010000"],["2024-07-24T02:51:18.010000"],["2024-07-24T02:51:19.010000"],["2024-07-24T02:51:20.010000"],["2024-07-24T02:51:21.010000"],["2024-07-24T02:51:22.010000"],["2024-07-24T02:51:23.010000"],["2024-07-24T02:51:24.010000"],["2024-07-24T02:51:25.010000"],["2024-07-24T02:51:26.010000"],["2024-07-24T02:51:27.010000"],["2024-07-24T02:51:28.010000"],["2024-07-24T02:51:29.010000"],["2024-07-24T02:51:30.010000"],["2024-07-24T02:51:31.010000"],["2024-07-24T02:51:32.010000"],["2024-07-24T02:51:33.010000"],["2024-07-24T02:51:34.010000"],["2024-07-24T02:51:35.010000"],["2024-07-24T02:51:36.010000"],["2024-07-24T02:51:37.010000"],["2024-07-24T02:51:38.010000"],["2024-07-24T02:51:39.010000"],["2024-07-24T02:51:40.010000"],["2024-07-24T02:51:41.010000"],["2024-07-24T02:51:42.010000"],["2024-07-24T02:51:43.010000"],["2024-07-24T02:51:44.010000"],["2024-07-24T02:51:45.010000"],["2024-07-24T02:51:46.010000"],["2024-07-24T02:51:47.010000"],["2024-07-24T02:51:48.010000"],["2024-07-24T02:51:49.010000"],["2024-07-24T02:51:50.010000"],["2024-07-24T02:51:51.010000"],["2024-07-24T02:51:52.010000"],["2024-07-24T02:51:53.010000"],["2024-07-24T02:51:54.010000"],["2024-07-24T02:51:55.010000"],["2024-07-24T02:51:56.010000"],["2024-07-24T02:51:57.010000"],["2024-07-24T02:51:58.010000"],["2024-07-24T02:51:59.010000"],["2024-07-24T02:52:00.010000"],["2024-07-24T02:52:01.010000"],["2024-07-24T02:52:02.010000"],["2024-07-24T02:52:03.010000"],["2024-07-24T02:52:04.010000"],["2024-07-24T02:52:05.010000"],["2024-07-24T02:52:06.010000"],["2024-07-24T02:52:07.010000"],["2024-07-24T02:52:08.010000"],["2024-07-24T02:52:09.010000"],["2024-07-24T02:52:10.010000"],["2024-07-24T02:52:11.010000"],["2024-07-24T02:52:12.010000"],["2024-07-24T02:52:13.010000"],["2024-07-24T02:52:14.010000"],["2024-07-24T02:52:15.010000"],["2024-07-24T02:52:16.010000"],["2024-07-24T02:52:17.010000"],["2024-07-24T02:52:18.010000"],["2024-07-24T02:52:19.010000"],["2024-07-24T02:52:20.010000"],["2024-07-24T02:52:21.010000"],["2024-07-24T02:52:22.010000"],["2024-07-24T02:52:23.010000"],["2024-07-24T02:52:24.010000"],["2024-07-24T02:52:25.010000"],["2024-07-24T02:52:26.010000"],["2024-07-24T02:52:27.010000"],["2024-07-24T02:52:28.010000"],["2024-07-24T02:52:29.010000"],["2024-07-24T02:52:30.010000"],["2024-07-24T02:52:31.010000"],["2024-07-24T02:52:32.010000"],["2024-07-24T02:52:33.010000"],["2024-07-24T02:52:34.010000"],["2024-07-24T02:52:35.010000"],["2024-07-24T02:52:36.010000"],["2024-07-24T02:52:37.010000"],["2024-07-24T02:52:38.010000"],["2024-07-24T02:52:39.010000"],["2024-07-24T02:52:40.010000"],["2024-07-24T02:52:41.010000"],["2024-07-24T02:52:42.010000"],["2024-07-24T02:52:43.010000"],["2024-07-24T02:52:44.010000"],["2024-07-24T02:52:45.010000"],["2024-07-24T02:52:46.010000"],["2024-07-24T02:52:47.010000"],["2024-07-24T02:52:48.010000"],["2024-07-24T02:52:49.010000"],["2024-07-24T02:52:50.010000"],["2024-07-24T02:52:51.010000"],["2024-07-24T02:52:52.010000"],["2024-07-24T02:52:53.010000"],["2024-07-24T02:52:54.010000"],["2024-07-24T02:52:55.010000"],["2024-07-24T02:52:56.010000"],["2024-07-24T02:52:57.010000"],["2024-07-24T02:52:58.010000"],["2024-07-24T02:52:59.010000"],["2024-07-24T02:53:00.010000"],["2024-07-24T02:53:01.010000"],["2024-07-24T02:53:02.010000"],["2024-07-24T02:53:03.010000"],["2024-07-24T02:53:04.010000"],["2024-07-24T02:53:05.010000"],["2024-07-24T02:53:06.010000"],["2024-07-24T02:53:07.010000"],["2024-07-24T02:53:08.010000"],["2024-07-24T02:53:09.010000"],["2024-07-24T02:53:10.010000"],["2024-07-24T02:53:11.010000"],["2024-07-24T02:53:12.010000"],["2024-07-24T02:53:13.010000"],["2024-07-24T02:53:14.010000"],["2024-07-24T02:53:15.010000"],["2024-07-24T02:53:16.010000"],["2024-07-24T02:53:17.010000"],["2024-07-24T02:53:18.010000"],["2024-07-24T02:53:19.010000"],["2024-07-24T02:53:20.010000"],["2024-07-24T02:53:21.010000"],["2024-07-24T02:53:22.010000"],["2024-07-24T02:53:23.010000"],["2024-07-24T02:53:24.010000"],["2024-07-24T02:53:25.010000"],["2024-07-24T02:53:26.010000"],["2024-07-24T02:53:27.010000"],["2024-07-24T02:53:28.010000"],["2024-07-24T02:53:29.010000"],["2024-07-24T02:53:30.010000"],["2024-07-24T02:53:31.010000"],["2024-07-24T02:53:32.010000"],["2024-07-24T02:53:33.010000"],["2024-07-24T02:53:34.010000"],["2024-07-24T02:53:35.010000"],["2024-07-24T02:53:36.010000"],["2024-07-24T02:53:37.010000"],["2024-07-24T02:53:38.010000"],["2024-07-24T02:53:39.010000"],["2024-07-24T02:53:40.010000"],["2024-07-24T02:53:41.010000"],["2024-07-24T02:53:42.010000"],["2024-07-24T02:53:43.010000"],["2024-07-24T02:53:44.010000"],["2024-07-24T02:53:45.010000"],["2024-07-24T02:53:46.010000"],["2024-07-24T02:53:47.010000"],["2024-07-24T02:53:48.010000"],["2024-07-24T02:53:49.010000"],["2024-07-24T02:53:50.010000"],["2024-07-24T02:53:51.010000"],["2024-07-24T02:53:52.010000"],["2024-07-24T02:53:53.010000"],["2024-07-24T02:53:54.010000"],["2024-07-24T02:53:55.010000"],["2024-07-24T02:53:56.010000"],["2024-07-24T02:53:57.010000"],["2024-07-24T02:53:58.010000"],["2024-07-24T02:53:59.010000"],["2024-07-24T02:54:00.010000"],["2024-07-24T02:54:01.010000"],["2024-07-24T02:54:02.010000"],["2024-07-24T02:54:03.010000"],["2024-07-24T02:54:04.010000"],["2024-07-24T02:54:05.010000"],["2024-07-24T02:54:06.010000"],["2024-07-24T02:54:07.010000"],["2024-07-24T02:54:08.010000"],["2024-07-24T02:54:09.010000"],["2024-07-24T02:54:10.010000"],["2024-07-24T02:54:11.010000"],["2024-07-24T02:54:12.010000"],["2024-07-24T02:54:13.010000"],["2024-07-24T02:54:14.010000"],["2024-07-24T02:54:15.010000"],["2024-07-24T02:54:16.010000"],["2024-07-24T02:54:17.010000"],["2024-07-24T02:54:18.010000"],["2024-07-24T02:54:19.010000"],["2024-07-24T02:54:20.010000"],["2024-07-24T02:54:21.010000"],["2024-07-24T02:54:22.010000"],["2024-07-24T02:54:23.010000"],["2024-07-24T02:54:24.010000"],["2024-07-24T02:54:25.010000"],["2024-07-24T02:54:26.010000"],["2024-07-24T02:54:27.010000"],["2024-07-24T02:54:28.010000"],["2024-07-24T02:54:29.010000"],["2024-07-24T02:54:30.010000"],["2024-07-24T02:54:31.010000"],["2024-07-24T02:54:32.010000"],["2024-07-24T02:54:33.010000"],["2024-07-24T02:54:34.010000"],["2024-07-24T02:54:35.010000"],["2024-07-24T02:54:36.010000"],["2024-07-24T02:54:37.010000"],["2024-07-24T02:54:38.010000"],["2024-07-24T02:54:39.010000"],["2024-07-24T02:54:40.010000"],["2024-07-24T02:54:41.010000"],["2024-07-24T02:54:42.010000"],["2024-07-24T02:54:43.010000"],["2024-07-24T02:54:44.010000"],["2024-07-24T02:54:45.010000"],["2024-07-24T02:54:46.010000"],["2024-07-24T02:54:47.010000"],["2024-07-24T02:54:48.010000"],["2024-07-24T02:54:49.010000"],["2024-07-24T02:54:50.010000"],["2024-07-24T02:54:51.010000"],["2024-07-24T02:54:52.010000"],["2024-07-24T02:54:53.010000"],["2024-07-24T02:54:54.010000"],["2024-07-24T02:54:55.010000"],["2024-07-24T02:54:56.010000"],["2024-07-24T02:54:57.010000"],["2024-07-24T02:54:58.010000"],["2024-07-24T02:54:59.010000"],["2024-07-24T02:55:00.010000"],["2024-07-24T02:55:01.010000"],["2024-07-24T02:55:02.010000"],["2024-07-24T02:55:03.010000"],["2024-07-24T02:55:04.010000"],["2024-07-24T02:55:05.010000"],["2024-07-24T02:55:06.010000"],["2024-07-24T02:55:07.010000"],["2024-07-24T02:55:08.010000"],["2024-07-24T02:55:09.010000"],["2024-07-24T02:55:10.010000"],["2024-07-24T02:55:11.010000"],["2024-07-24T02:55:12.010000"],["2024-07-24T02:55:13.010000"],["2024-07-24T02:55:14.010000"],["2024-07-24T02:55:15.010000"],["2024-07-24T02:55:16.010000"],["2024-07-24T02:55:17.010000"],["2024-07-24T02:55:18.010000"],["2024-07-24T02:55:19.010000"],["2024-07-24T02:55:20.010000"],["2024-07-24T02:55:21.010000"],["2024-07-24T02:55:22.010000"],["2024-07-24T02:55:23.010000"],["2024-07-24T02:55:24.010000"],["2024-07-24T02:55:25.010000"],["2024-07-24T02:55:26.010000"],["2024-07-24T02:55:27.010000"],["2024-07-24T02:55:28.010000"],["2024-07-24T02:55:29.010000"],["2024-07-24T02:55:30.010000"],["2024-07-24T02:55:31.010000"],["2024-07-24T02:55:32.010000"],["2024-07-24T02:55:33.010000"],["2024-07-24T02:55:34.010000"],["2024-07-24T02:55:35.010000"],["2024-07-24T02:55:36.010000"],["2024-07-24T02:55:37.010000"],["2024-07-24T02:55:38.010000"],["2024-07-24T02:55:39.010000"],["2024-07-24T02:55:40.010000"],["2024-07-24T02:55:41.010000"],["2024-07-24T02:55:42.010000"],["2024-07-24T02:55:43.010000"],["2024-07-24T02:55:44.010000"],["2024-07-24T02:55:45.010000"],["2024-07-24T02:55:46.010000"],["2024-07-24T02:55:47.010000"],["2024-07-24T02:55:48.010000"],["2024-07-24T02:55:49.010000"],["2024-07-24T02:55:50.010000"],["2024-07-24T02:55:51.010000"],["2024-07-24T02:55:52.010000"],["2024-07-24T02:55:53.010000"],["2024-07-24T02:55:54.010000"],["2024-07-24T02:55:55.010000"],["2024-07-24T02:55:56.010000"],["2024-07-24T02:55:57.010000"],["2024-07-24T02:55:58.010000"],["2024-07-24T02:55:59.010000"],["2024-07-24T02:56:00.010000"],["2024-07-24T02:56:01.010000"],["2024-07-24T02:56:02.010000"],["2024-07-24T02:56:03.010000"],["2024-07-24T02:56:04.010000"],["2024-07-24T02:56:05.010000"],["2024-07-24T02:56:06.010000"],["2024-07-24T02:56:07.010000"],["2024-07-24T02:56:08.010000"],["2024-07-24T02:56:09.010000"],["2024-07-24T02:56:10.010000"],["2024-07-24T02:56:11.010000"],["2024-07-24T02:56:12.010000"],["2024-07-24T02:56:13.010000"],["2024-07-24T02:56:14.010000"],["2024-07-24T02:56:15.010000"],["2024-07-24T02:56:16.010000"],["2024-07-24T02:56:17.010000"],["2024-07-24T02:56:18.010000"],["2024-07-24T02:56:19.010000"],["2024-07-24T02:56:20.010000"],["2024-07-24T02:56:21.010000"],["2024-07-24T02:56:22.010000"],["2024-07-24T02:56:23.010000"],["2024-07-24T02:56:24.010000"],["2024-07-24T02:56:25.010000"],["2024-07-24T02:56:26.010000"],["2024-07-24T02:56:27.010000"],["2024-07-24T02:56:28.010000"],["2024-07-24T02:56:29.010000"],["2024-07-24T02:56:30.010000"],["2024-07-24T02:56:31.010000"],["2024-07-24T02:56:32.010000"],["2024-07-24T02:56:33.010000"],["2024-07-24T02:56:34.010000"],["2024-07-24T02:56:35.010000"],["2024-07-24T02:56:36.010000"],["2024-07-24T02:56:37.010000"],["2024-07-24T02:56:38.010000"],["2024-07-24T02:56:39.010000"],["2024-07-24T02:56:40.010000"],["2024-07-24T02:56:41.010000"],["2024-07-24T02:56:42.010000"],["2024-07-24T02:56:43.010000"],["2024-07-24T02:56:44.010000"],["2024-07-24T02:56:45.010000"],["2024-07-24T02:56:46.010000"],["2024-07-24T02:56:47.010000"],["2024-07-24T02:56:48.010000"],["2024-07-24T02:56:49.010000"],["2024-07-24T02:56:50.010000"],["2024-07-24T02:56:51.010000"],["2024-07-24T02:56:52.010000"],["2024-07-24T02:56:53.010000"],["2024-07-24T02:56:54.010000"],["2024-07-24T02:56:55.010000"],["2024-07-24T02:56:56.010000"],["2024-07-24T02:56:57.010000"],["2024-07-24T02:56:58.010000"],["2024-07-24T02:56:59.010000"],["2024-07-24T02:57:00.010000"],["2024-07-24T02:57:01.010000"],["2024-07-24T02:57:02.010000"],["2024-07-24T02:57:03.010000"],["2024-07-24T02:57:04.010000"],["2024-07-24T02:57:05.010000"],["2024-07-24T02:57:06.010000"],["2024-07-24T02:57:07.010000"],["2024-07-24T02:57:08.010000"],["2024-07-24T02:57:09.010000"],["2024-07-24T02:57:10.010000"],["2024-07-24T02:57:11.010000"],["2024-07-24T02:57:12.010000"],["2024-07-24T02:57:13.010000"],["2024-07-24T02:57:14.010000"],["2024-07-24T02:57:15.010000"],["2024-07-24T02:57:16.010000"],["2024-07-24T02:57:17.010000"],["2024-07-24T02:57:18.010000"],["2024-07-24T02:57:19.010000"],["2024-07-24T02:57:20.010000"],["2024-07-24T02:57:21.010000"],["2024-07-24T02:57:22.010000"],["2024-07-24T02:57:23.010000"],["2024-07-24T02:57:24.010000"],["2024-07-24T02:57:25.010000"],["2024-07-24T02:57:26.010000"],["2024-07-24T02:57:27.010000"],["2024-07-24T02:57:28.010000"],["2024-07-24T02:57:29.010000"],["2024-07-24T02:57:30.010000"],["2024-07-24T02:57:31.010000"],["2024-07-24T02:57:32.010000"],["2024-07-24T02:57:33.010000"],["2024-07-24T02:57:34.010000"],["2024-07-24T02:57:35.010000"],["2024-07-24T02:57:36.010000"],["2024-07-24T02:57:37.010000"],["2024-07-24T02:57:38.010000"],["2024-07-24T02:57:39.010000"],["2024-07-24T02:57:40.010000"],["2024-07-24T02:57:41.010000"],["2024-07-24T02:57:42.010000"],["2024-07-24T02:57:43.010000"],["2024-07-24T02:57:44.010000"],["2024-07-24T02:57:45.010000"],["2024-07-24T02:57:46.010000"],["2024-07-24T02:57:47.010000"],["2024-07-24T02:57:48.010000"],["2024-07-24T02:57:49.010000"],["2024-07-24T02:57:50.010000"],["2024-07-24T02:57:51.010000"],["2024-07-24T02:57:52.010000"],["2024-07-24T02:57:53.010000"],["2024-07-24T02:57:54.010000"],["2024-07-24T02:57:55.010000"],["2024-07-24T02:57:56.010000"],["2024-07-24T02:57:57.010000"],["2024-07-24T02:57:58.010000"],["2024-07-24T02:57:59.010000"],["2024-07-24T02:58:00.010000"],["2024-07-24T02:58:01.010000"],["2024-07-24T02:58:02.010000"],["2024-07-24T02:58:03.010000"],["2024-07-24T02:58:04.010000"],["2024-07-24T02:58:05.010000"],["2024-07-24T02:58:06.010000"],["2024-07-24T02:58:07.010000"],["2024-07-24T02:58:08.010000"],["2024-07-24T02:58:09.010000"],["2024-07-24T02:58:10.010000"],["2024-07-24T02:58:11.010000"],["2024-07-24T02:58:12.010000"],["2024-07-24T02:58:13.010000"],["2024-07-24T02:58:14.010000"],["2024-07-24T02:58:15.010000"],["2024-07-24T02:58:16.010000"],["2024-07-24T02:58:17.010000"],["2024-07-24T02:58:18.010000"],["2024-07-24T02:58:19.010000"],["2024-07-24T02:58:20.010000"],["2024-07-24T02:58:21.010000"],["2024-07-24T02:58:22.010000"],["2024-07-24T02:58:23.010000"],["2024-07-24T02:58:24.010000"],["2024-07-24T02:58:25.010000"],["2024-07-24T02:58:26.010000"],["2024-07-24T02:58:27.010000"],["2024-07-24T02:58:28.010000"],["2024-07-24T02:58:29.010000"],["2024-07-24T02:58:30.010000"],["2024-07-24T02:58:31.010000"],["2024-07-24T02:58:32.010000"],["2024-07-24T02:58:33.010000"],["2024-07-24T02:58:34.010000"],["2024-07-24T02:58:35.010000"],["2024-07-24T02:58:36.010000"],["2024-07-24T02:58:37.010000"],["2024-07-24T02:58:38.010000"],["2024-07-24T02:58:39.010000"],["2024-07-24T02:58:40.010000"],["2024-07-24T02:58:41.010000"],["2024-07-24T02:58:42.010000"],["2024-07-24T02:58:43.010000"],["2024-07-24T02:58:44.010000"],["2024-07-24T02:58:45.010000"],["2024-07-24T02:58:46.010000"],["2024-07-24T02:58:47.010000"],["2024-07-24T02:58:48.010000"],["2024-07-24T02:58:49.010000"],["2024-07-24T02:58:50.010000"],["2024-07-24T02:58:51.010000"],["2024-07-24T02:58:52.010000"],["2024-07-24T02:58:53.010000"],["2024-07-24T02:58:54.010000"],["2024-07-24T02:58:55.010000"],["2024-07-24T02:58:56.010000"],["2024-07-24T02:58:57.010000"],["2024-07-24T02:58:58.010000"],["2024-07-24T02:58:59.010000"],["2024-07-24T02:59:00.010000"],["2024-07-24T02:59:01.010000"],["2024-07-24T02:59:02.010000"],["2024-07-24T02:59:03.010000"],["2024-07-24T02:59:04.010000"],["2024-07-24T02:59:05.010000"],["2024-07-24T02:59:06.010000"],["2024-07-24T02:59:07.010000"],["2024-07-24T02:59:08.010000"],["2024-07-24T02:59:09.010000"],["2024-07-24T02:59:10.010000"],["2024-07-24T02:59:11.010000"],["2024-07-24T02:59:12.010000"],["2024-07-24T02:59:13.010000"],["2024-07-24T02:59:14.010000"],["2024-07-24T02:59:15.010000"],["2024-07-24T02:59:16.010000"],["2024-07-24T02:59:17.010000"],["2024-07-24T02:59:18.010000"],["2024-07-24T02:59:19.010000"],["2024-07-24T02:59:20.010000"],["2024-07-24T02:59:21.010000"],["2024-07-24T02:59:22.010000"],["2024-07-24T02:59:23.010000"],["2024-07-24T02:59:24.010000"],["2024-07-24T02:59:25.010000"],["2024-07-24T02:59:26.010000"],["2024-07-24T02:59:27.010000"],["2024-07-24T02:59:28.010000"],["2024-07-24T02:59:29.010000"],["2024-07-24T02:59:30.010000"],["2024-07-24T02:59:31.010000"],["2024-07-24T02:59:32.010000"],["2024-07-24T02:59:33.010000"],["2024-07-24T02:59:34.010000"],["2024-07-24T02:59:35.010000"],["2024-07-24T02:59:36.010000"],["2024-07-24T02:59:37.010000"],["2024-07-24T02:59:38.010000"],["2024-07-24T02:59:39.010000"],["2024-07-24T02:59:40.010000"],["2024-07-24T02:59:41.010000"],["2024-07-24T02:59:42.010000"],["2024-07-24T02:59:43.010000"],["2024-07-24T02:59:44.010000"],["2024-07-24T02:59:45.010000"],["2024-07-24T02:59:46.010000"],["2024-07-24T02:59:47.010000"],["2024-07-24T02:59:48.010000"],["2024-07-24T02:59:49.010000"],["2024-07-24T02:59:50.010000"],["2024-07-24T02:59:51.010000"],["2024-07-24T02:59:52.010000"],["2024-07-24T02:59:53.010000"],["2024-07-24T02:59:54.010000"],["2024-07-24T02:59:55.010000"],["2024-07-24T02:59:56.010000"],["2024-07-24T02:59:57.010000"],["2024-07-24T02:59:58.010000"],["2024-07-24T02:59:59.010000"],["2024-07-24T03:00:00.010000"],["2024-07-24T03:00:01.010000"],["2024-07-24T03:00:02.010000"],["2024-07-24T03:00:03.010000"],["2024-07-24T03:00:04.010000"],["2024-07-24T03:00:05.010000"],["2024-07-24T03:00:06.010000"],["2024-07-24T03:00:07.010000"],["2024-07-24T03:00:08.010000"],["2024-07-24T03:00:09.010000"],["2024-07-24T03:00:10.010000"],["2024-07-24T03:00:11.010000"],["2024-07-24T03:00:12.010000"],["2024-07-24T03:00:13.010000"],["2024-07-24T03:00:14.010000"],["2024-07-24T03:00:15.010000"],["2024-07-24T03:00:16.010000"],["2024-07-24T03:00:17.010000"],["2024-07-24T03:00:18.010000"],["2024-07-24T03:00:19.010000"],["2024-07-24T03:00:20.010000"],["2024-07-24T03:00:21.010000"],["2024-07-24T03:00:22.010000"],["2024-07-24T03:00:23.010000"],["2024-07-24T03:00:24.010000"],["2024-07-24T03:00:25.010000"],["2024-07-24T03:00:26.010000"],["2024-07-24T03:00:27.010000"],["2024-07-24T03:00:28.010000"],["2024-07-24T03:00:29.010000"],["2024-07-24T03:00:30.010000"],["2024-07-24T03:00:31.010000"],["2024-07-24T03:00:32.010000"],["2024-07-24T03:00:33.010000"],["2024-07-24T03:00:34.010000"],["2024-07-24T03:00:35.010000"],["2024-07-24T03:00:36.010000"],["2024-07-24T03:00:37.010000"],["2024-07-24T03:00:38.010000"],["2024-07-24T03:00:39.010000"],["2024-07-24T03:00:40.010000"],["2024-07-24T03:00:41.010000"],["2024-07-24T03:00:42.010000"],["2024-07-24T03:00:43.010000"],["2024-07-24T03:00:44.010000"],["2024-07-24T03:00:45.010000"],["2024-07-24T03:00:46.010000"],["2024-07-24T03:00:47.010000"],["2024-07-24T03:00:48.010000"],["2024-07-24T03:00:49.010000"],["2024-07-24T03:00:50.010000"],["2024-07-24T03:00:51.010000"],["2024-07-24T03:00:52.010000"],["2024-07-24T03:00:53.010000"],["2024-07-24T03:00:54.010000"],["2024-07-24T03:00:55.010000"],["2024-07-24T03:00:56.010000"],["2024-07-24T03:00:57.010000"],["2024-07-24T03:00:58.010000"],["2024-07-24T03:00:59.010000"],["2024-07-24T03:01:00.010000"],["2024-07-24T03:01:01.010000"],["2024-07-24T03:01:02.010000"],["2024-07-24T03:01:03.010000"],["2024-07-24T03:01:04.010000"],["2024-07-24T03:01:05.010000"],["2024-07-24T03:01:06.010000"],["2024-07-24T03:01:07.010000"],["2024-07-24T03:01:08.010000"],["2024-07-24T03:01:09.010000"],["2024-07-24T03:01:10.010000"],["2024-07-24T03:01:11.010000"],["2024-07-24T03:01:12.010000"],["2024-07-24T03:01:13.010000"],["2024-07-24T03:01:14.010000"],["2024-07-24T03:01:15.010000"],["2024-07-24T03:01:16.010000"],["2024-07-24T03:01:17.010000"],["2024-07-24T03:01:18.010000"],["2024-07-24T03:01:19.010000"],["2024-07-24T03:01:20.010000"],["2024-07-24T03:01:21.010000"],["2024-07-24T03:01:22.010000"],["2024-07-24T03:01:23.010000"],["2024-07-24T03:01:24.010000"],["2024-07-24T03:01:25.010000"],["2024-07-24T03:01:26.010000"],["2024-07-24T03:01:27.010000"],["2024-07-24T03:01:28.010000"],["2024-07-24T03:01:29.010000"],["2024-07-24T03:01:30.010000"],["2024-07-24T03:01:31.010000"],["2024-07-24T03:01:32.010000"],["2024-07-24T03:01:33.010000"],["2024-07-24T03:01:34.010000"],["2024-07-24T03:01:35.010000"],["2024-07-24T03:01:36.010000"],["2024-07-24T03:01:37.010000"],["2024-07-24T03:01:38.010000"],["2024-07-24T03:01:39.010000"],["2024-07-24T03:01:40.010000"],["2024-07-24T03:01:41.010000"],["2024-07-24T03:01:42.010000"],["2024-07-24T03:01:43.010000"],["2024-07-24T03:01:44.010000"],["2024-07-24T03:01:45.010000"],["2024-07-24T03:01:46.010000"],["2024-07-24T03:01:47.010000"],["2024-07-24T03:01:48.010000"],["2024-07-24T03:01:49.010000"],["2024-07-24T03:01:50.010000"],["2024-07-24T03:01:51.010000"],["2024-07-24T03:01:52.010000"],["2024-07-24T03:01:53.010000"],["2024-07-24T03:01:54.010000"],["2024-07-24T03:01:55.010000"],["2024-07-24T03:01:56.010000"],["2024-07-24T03:01:57.010000"],["2024-07-24T03:01:58.010000"],["2024-07-24T03:01:59.010000"],["2024-07-24T03:02:00.010000"],["2024-07-24T03:02:01.010000"],["2024-07-24T03:02:02.010000"],["2024-07-24T03:02:03.010000"],["2024-07-24T03:02:04.010000"],["2024-07-24T03:02:05.010000"],["2024-07-24T03:02:06.010000"],["2024-07-24T03:02:07.010000"],["2024-07-24T03:02:08.010000"],["2024-07-24T03:02:09.010000"],["2024-07-24T03:02:10.010000"],["2024-07-24T03:02:11.010000"],["2024-07-24T03:02:12.010000"],["2024-07-24T03:02:13.010000"],["2024-07-24T03:02:14.010000"],["2024-07-24T03:02:15.010000"],["2024-07-24T03:02:16.010000"],["2024-07-24T03:02:17.010000"],["2024-07-24T03:02:18.010000"],["2024-07-24T03:02:19.010000"],["2024-07-24T03:02:20.010000"],["2024-07-24T03:02:21.010000"],["2024-07-24T03:02:22.010000"],["2024-07-24T03:02:23.010000"],["2024-07-24T03:02:24.010000"],["2024-07-24T03:02:25.010000"],["2024-07-24T03:02:26.010000"],["2024-07-24T03:02:27.010000"],["2024-07-24T03:02:28.010000"],["2024-07-24T03:02:29.010000"],["2024-07-24T03:02:30.010000"],["2024-07-24T03:02:31.010000"],["2024-07-24T03:02:32.010000"],["2024-07-24T03:02:33.010000"],["2024-07-24T03:02:34.010000"],["2024-07-24T03:02:35.010000"],["2024-07-24T03:02:36.010000"],["2024-07-24T03:02:37.010000"],["2024-07-24T03:02:38.010000"],["2024-07-24T03:02:39.010000"],["2024-07-24T03:02:40.010000"],["2024-07-24T03:02:41.010000"],["2024-07-24T03:02:42.010000"],["2024-07-24T03:02:43.010000"],["2024-07-24T03:02:44.010000"],["2024-07-24T03:02:45.010000"],["2024-07-24T03:02:46.010000"],["2024-07-24T03:02:47.010000"],["2024-07-24T03:02:48.010000"],["2024-07-24T03:02:49.010000"],["2024-07-24T03:02:50.010000"],["2024-07-24T03:02:51.010000"],["2024-07-24T03:02:52.010000"],["2024-07-24T03:02:53.010000"],["2024-07-24T03:02:54.010000"],["2024-07-24T03:02:55.010000"],["2024-07-24T03:02:56.010000"],["2024-07-24T03:02:57.010000"],["2024-07-24T03:02:58.010000"],["2024-07-24T03:02:59.010000"],["2024-07-24T03:03:00.010000"],["2024-07-24T03:03:01.010000"],["2024-07-24T03:03:02.010000"],["2024-07-24T03:03:03.010000"],["2024-07-24T03:03:04.010000"],["2024-07-24T03:03:05.010000"],["2024-07-24T03:03:06.010000"],["2024-07-24T03:03:07.010000"],["2024-07-24T03:03:08.010000"],["2024-07-24T03:03:09.010000"],["2024-07-24T03:03:10.010000"],["2024-07-24T03:03:11.010000"],["2024-07-24T03:03:12.010000"],["2024-07-24T03:03:13.010000"],["2024-07-24T03:03:14.010000"],["2024-07-24T03:03:15.010000"],["2024-07-24T03:03:16.010000"],["2024-07-24T03:03:17.010000"],["2024-07-24T03:03:18.010000"],["2024-07-24T03:03:19.010000"],["2024-07-24T03:03:20.010000"],["2024-07-24T03:03:21.010000"],["2024-07-24T03:03:22.010000"],["2024-07-24T03:03:23.010000"],["2024-07-24T03:03:24.010000"],["2024-07-24T03:03:25.010000"],["2024-07-24T03:03:26.010000"],["2024-07-24T03:03:27.010000"],["2024-07-24T03:03:28.010000"],["2024-07-24T03:03:29.010000"],["2024-07-24T03:03:30.010000"],["2024-07-24T03:03:31.010000"],["2024-07-24T03:03:32.010000"],["2024-07-24T03:03:33.010000"],["2024-07-24T03:03:34.010000"],["2024-07-24T03:03:35.010000"],["2024-07-24T03:03:36.010000"],["2024-07-24T03:03:37.010000"],["2024-07-24T03:03:38.010000"],["2024-07-24T03:03:39.010000"],["2024-07-24T03:03:40.010000"],["2024-07-24T03:03:41.010000"],["2024-07-24T03:03:42.010000"],["2024-07-24T03:03:43.010000"],["2024-07-24T03:03:44.010000"],["2024-07-24T03:03:45.010000"],["2024-07-24T03:03:46.010000"],["2024-07-24T03:03:47.010000"],["2024-07-24T03:03:48.010000"],["2024-07-24T03:03:49.010000"],["2024-07-24T03:03:50.010000"],["2024-07-24T03:03:51.010000"],["2024-07-24T03:03:52.010000"],["2024-07-24T03:03:53.010000"],["2024-07-24T03:03:54.010000"],["2024-07-24T03:03:55.010000"],["2024-07-24T03:03:56.010000"],["2024-07-24T03:03:57.010000"],["2024-07-24T03:03:58.010000"],["2024-07-24T03:03:59.010000"],["2024-07-24T03:04:00.010000"],["2024-07-24T03:04:01.010000"],["2024-07-24T03:04:02.010000"],["2024-07-24T03:04:03.010000"],["2024-07-24T03:04:04.010000"],["2024-07-24T03:04:05.010000"],["2024-07-24T03:04:06.010000"],["2024-07-24T03:04:07.010000"],["2024-07-24T03:04:08.010000"],["2024-07-24T03:04:09.010000"],["2024-07-24T03:04:10.010000"],["2024-07-24T03:04:11.010000"],["2024-07-24T03:04:12.010000"],["2024-07-24T03:04:13.010000"],["2024-07-24T03:04:14.010000"],["2024-07-24T03:04:15.010000"],["2024-07-24T03:04:16.010000"],["2024-07-24T03:04:17.010000"],["2024-07-24T03:04:18.010000"],["2024-07-24T03:04:19.010000"],["2024-07-24T03:04:20.010000"],["2024-07-24T03:04:21.010000"],["2024-07-24T03:04:22.010000"],["2024-07-24T03:04:23.010000"],["2024-07-24T03:04:24.010000"],["2024-07-24T03:04:25.010000"],["2024-07-24T03:04:26.010000"],["2024-07-24T03:04:27.010000"],["2024-07-24T03:04:28.010000"],["2024-07-24T03:04:29.010000"],["2024-07-24T03:04:30.010000"],["2024-07-24T03:04:31.010000"],["2024-07-24T03:04:32.010000"],["2024-07-24T03:04:33.010000"],["2024-07-24T03:04:34.010000"],["2024-07-24T03:04:35.010000"],["2024-07-24T03:04:36.010000"],["2024-07-24T03:04:37.010000"],["2024-07-24T03:04:38.010000"],["2024-07-24T03:04:39.010000"],["2024-07-24T03:04:40.010000"],["2024-07-24T03:04:41.010000"],["2024-07-24T03:04:42.010000"],["2024-07-24T03:04:43.010000"],["2024-07-24T03:04:44.010000"],["2024-07-24T03:04:45.010000"],["2024-07-24T03:04:46.010000"],["2024-07-24T03:04:47.010000"],["2024-07-24T03:04:48.010000"],["2024-07-24T03:04:49.010000"],["2024-07-24T03:04:50.010000"],["2024-07-24T03:04:51.010000"],["2024-07-24T03:04:52.010000"],["2024-07-24T03:04:53.010000"],["2024-07-24T03:04:54.010000"],["2024-07-24T03:04:55.010000"],["2024-07-24T03:04:56.010000"],["2024-07-24T03:04:57.010000"],["2024-07-24T03:04:58.010000"],["2024-07-24T03:04:59.010000"],["2024-07-24T03:05:00.010000"],["2024-07-24T03:05:01.010000"],["2024-07-24T03:05:02.010000"],["2024-07-24T03:05:03.010000"],["2024-07-24T03:05:04.010000"],["2024-07-24T03:05:05.010000"],["2024-07-24T03:05:06.010000"],["2024-07-24T03:05:07.010000"],["2024-07-24T03:05:08.010000"],["2024-07-24T03:05:09.010000"],["2024-07-24T03:05:10.010000"],["2024-07-24T03:05:11.010000"],["2024-07-24T03:05:12.010000"],["2024-07-24T03:05:13.010000"],["2024-07-24T03:05:14.010000"],["2024-07-24T03:05:15.010000"],["2024-07-24T03:05:16.010000"],["2024-07-24T03:05:17.010000"],["2024-07-24T03:05:18.010000"],["2024-07-24T03:05:19.010000"],["2024-07-24T03:05:20.010000"],["2024-07-24T03:05:21.010000"],["2024-07-24T03:05:22.010000"],["2024-07-24T03:05:23.010000"],["2024-07-24T03:05:24.010000"],["2024-07-24T03:05:25.010000"],["2024-07-24T03:05:26.010000"],["2024-07-24T03:05:27.010000"],["2024-07-24T03:05:28.010000"],["2024-07-24T03:05:29.010000"],["2024-07-24T03:05:30.010000"],["2024-07-24T03:05:31.010000"],["2024-07-24T03:05:32.010000"],["2024-07-24T03:05:33.010000"],["2024-07-24T03:05:34.010000"],["2024-07-24T03:05:35.010000"],["2024-07-24T03:05:36.010000"],["2024-07-24T03:05:37.010000"],["2024-07-24T03:05:38.010000"],["2024-07-24T03:05:39.010000"],["2024-07-24T03:05:40.010000"],["2024-07-24T03:05:41.010000"],["2024-07-24T03:05:42.010000"],["2024-07-24T03:05:43.010000"],["2024-07-24T03:05:44.010000"],["2024-07-24T03:05:45.010000"],["2024-07-24T03:05:46.010000"],["2024-07-24T03:05:47.010000"],["2024-07-24T03:05:48.010000"],["2024-07-24T03:05:49.010000"],["2024-07-24T03:05:50.010000"],["2024-07-24T03:05:51.010000"],["2024-07-24T03:05:52.010000"],["2024-07-24T03:05:53.010000"],["2024-07-24T03:05:54.010000"],["2024-07-24T03:05:55.010000"],["2024-07-24T03:05:56.010000"],["2024-07-24T03:05:57.010000"],["2024-07-24T03:05:58.010000"],["2024-07-24T03:05:59.010000"],["2024-07-24T03:06:00.010000"],["2024-07-24T03:06:01.010000"],["2024-07-24T03:06:02.010000"],["2024-07-24T03:06:03.010000"],["2024-07-24T03:06:04.010000"],["2024-07-24T03:06:05.010000"],["2024-07-24T03:06:06.010000"],["2024-07-24T03:06:07.010000"],["2024-07-24T03:06:08.010000"],["2024-07-24T03:06:09.010000"],["2024-07-24T03:06:10.010000"],["2024-07-24T03:06:11.010000"],["2024-07-24T03:06:12.010000"],["2024-07-24T03:06:13.010000"],["2024-07-24T03:06:14.010000"],["2024-07-24T03:06:15.010000"],["2024-07-24T03:06:16.010000"],["2024-07-24T03:06:17.010000"],["2024-07-24T03:06:18.010000"],["2024-07-24T03:06:19.010000"],["2024-07-24T03:06:20.010000"],["2024-07-24T03:06:21.010000"],["2024-07-24T03:06:22.010000"],["2024-07-24T03:06:23.010000"],["2024-07-24T03:06:24.010000"],["2024-07-24T03:06:25.010000"],["2024-07-24T03:06:26.010000"],["2024-07-24T03:06:27.010000"],["2024-07-24T03:06:28.010000"],["2024-07-24T03:06:29.010000"],["2024-07-24T03:06:30.010000"],["2024-07-24T03:06:31.010000"],["2024-07-24T03:06:32.010000"],["2024-07-24T03:06:33.010000"],["2024-07-24T03:06:34.010000"],["2024-07-24T03:06:35.010000"],["2024-07-24T03:06:36.010000"],["2024-07-24T03:06:37.010000"],["2024-07-24T03:06:38.010000"],["2024-07-24T03:06:39.010000"],["2024-07-24T03:06:40.010000"],["2024-07-24T03:06:41.010000"],["2024-07-24T03:06:42.010000"],["2024-07-24T03:06:43.010000"],["2024-07-24T03:06:44.010000"],["2024-07-24T03:06:45.010000"],["2024-07-24T03:06:46.010000"],["2024-07-24T03:06:47.010000"],["2024-07-24T03:06:48.010000"],["2024-07-24T03:06:49.010000"],["2024-07-24T03:06:50.010000"],["2024-07-24T03:06:51.010000"],["2024-07-24T03:06:52.010000"],["2024-07-24T03:06:53.010000"],["2024-07-24T03:06:54.010000"],["2024-07-24T03:06:55.010000"],["2024-07-24T03:06:56.010000"],["2024-07-24T03:06:57.010000"],["2024-07-24T03:06:58.010000"],["2024-07-24T03:06:59.010000"],["2024-07-24T03:07:00.010000"],["2024-07-24T03:07:01.010000"],["2024-07-24T03:07:02.010000"],["2024-07-24T03:07:03.010000"],["2024-07-24T03:07:04.010000"],["2024-07-24T03:07:05.010000"],["2024-07-24T03:07:06.010000"],["2024-07-24T03:07:07.010000"],["2024-07-24T03:07:08.010000"],["2024-07-24T03:07:09.010000"],["2024-07-24T03:07:10.010000"],["2024-07-24T03:07:11.010000"],["2024-07-24T03:07:12.010000"],["2024-07-24T03:07:13.010000"],["2024-07-24T03:07:14.010000"],["2024-07-24T03:07:15.010000"],["2024-07-24T03:07:16.010000"],["2024-07-24T03:07:17.010000"],["2024-07-24T03:07:18.010000"],["2024-07-24T03:07:19.010000"],["2024-07-24T03:07:20.010000"],["2024-07-24T03:07:21.010000"],["2024-07-24T03:07:22.010000"],["2024-07-24T03:07:23.010000"],["2024-07-24T03:07:24.010000"],["2024-07-24T03:07:25.010000"],["2024-07-24T03:07:26.010000"],["2024-07-24T03:07:27.010000"],["2024-07-24T03:07:28.010000"],["2024-07-24T03:07:29.010000"],["2024-07-24T03:07:30.010000"],["2024-07-24T03:07:31.010000"],["2024-07-24T03:07:32.010000"],["2024-07-24T03:07:33.010000"],["2024-07-24T03:07:34.010000"],["2024-07-24T03:07:35.010000"],["2024-07-24T03:07:36.010000"],["2024-07-24T03:07:37.010000"],["2024-07-24T03:07:38.010000"],["2024-07-24T03:07:39.010000"],["2024-07-24T03:07:40.010000"],["2024-07-24T03:07:41.010000"],["2024-07-24T03:07:42.010000"],["2024-07-24T03:07:43.010000"],["2024-07-24T03:07:44.010000"],["2024-07-24T03:07:45.010000"],["2024-07-24T03:07:46.010000"],["2024-07-24T03:07:47.010000"],["2024-07-24T03:07:48.010000"],["2024-07-24T03:07:49.010000"],["2024-07-24T03:07:50.010000"],["2024-07-24T03:07:51.010000"],["2024-07-24T03:07:52.010000"],["2024-07-24T03:07:53.010000"],["2024-07-24T03:07:54.010000"],["2024-07-24T03:07:55.010000"],["2024-07-24T03:07:56.010000"],["2024-07-24T03:07:57.010000"],["2024-07-24T03:07:58.010000"],["2024-07-24T03:07:59.010000"],["2024-07-24T03:08:00.010000"],["2024-07-24T03:08:01.010000"],["2024-07-24T03:08:02.010000"],["2024-07-24T03:08:03.010000"],["2024-07-24T03:08:04.010000"],["2024-07-24T03:08:05.010000"],["2024-07-24T03:08:06.010000"],["2024-07-24T03:08:07.010000"],["2024-07-24T03:08:08.010000"],["2024-07-24T03:08:09.010000"],["2024-07-24T03:08:10.010000"],["2024-07-24T03:08:11.010000"],["2024-07-24T03:08:12.010000"],["2024-07-24T03:08:13.010000"],["2024-07-24T03:08:14.010000"],["2024-07-24T03:08:15.010000"],["2024-07-24T03:08:16.010000"],["2024-07-24T03:08:17.010000"],["2024-07-24T03:08:18.010000"],["2024-07-24T03:08:19.010000"],["2024-07-24T03:08:20.010000"],["2024-07-24T03:08:21.010000"],["2024-07-24T03:08:22.010000"],["2024-07-24T03:08:23.010000"],["2024-07-24T03:08:24.010000"],["2024-07-24T03:08:25.010000"],["2024-07-24T03:08:26.010000"],["2024-07-24T03:08:27.010000"],["2024-07-24T03:08:28.010000"],["2024-07-24T03:08:29.010000"],["2024-07-24T03:08:30.010000"],["2024-07-24T03:08:31.010000"],["2024-07-24T03:08:32.010000"],["2024-07-24T03:08:33.010000"],["2024-07-24T03:08:34.010000"],["2024-07-24T03:08:35.010000"],["2024-07-24T03:08:36.010000"],["2024-07-24T03:08:37.010000"],["2024-07-24T03:08:38.010000"],["2024-07-24T03:08:39.010000"],["2024-07-24T03:08:40.010000"],["2024-07-24T03:08:41.010000"],["2024-07-24T03:08:42.010000"],["2024-07-24T03:08:43.010000"],["2024-07-24T03:08:44.010000"],["2024-07-24T03:08:45.010000"],["2024-07-24T03:08:46.010000"],["2024-07-24T03:08:47.010000"],["2024-07-24T03:08:48.010000"],["2024-07-24T03:08:49.010000"],["2024-07-24T03:08:50.010000"],["2024-07-24T03:08:51.010000"],["2024-07-24T03:08:52.010000"],["2024-07-24T03:08:53.010000"],["2024-07-24T03:08:54.010000"],["2024-07-24T03:08:55.010000"],["2024-07-24T03:08:56.010000"],["2024-07-24T03:08:57.010000"],["2024-07-24T03:08:58.010000"],["2024-07-24T03:08:59.010000"],["2024-07-24T03:09:00.010000"],["2024-07-24T03:09:01.010000"],["2024-07-24T03:09:02.010000"],["2024-07-24T03:09:03.010000"],["2024-07-24T03:09:04.010000"],["2024-07-24T03:09:05.010000"],["2024-07-24T03:09:06.010000"],["2024-07-24T03:09:07.010000"],["2024-07-24T03:09:08.010000"],["2024-07-24T03:09:09.010000"],["2024-07-24T03:09:10.010000"],["2024-07-24T03:09:11.010000"],["2024-07-24T03:09:12.010000"],["2024-07-24T03:09:13.010000"],["2024-07-24T03:09:14.010000"],["2024-07-24T03:09:15.010000"],["2024-07-24T03:09:16.010000"],["2024-07-24T03:09:17.010000"],["2024-07-24T03:09:18.010000"],["2024-07-24T03:09:19.010000"],["2024-07-24T03:09:20.010000"],["2024-07-24T03:09:21.010000"],["2024-07-24T03:09:22.010000"],["2024-07-24T03:09:23.010000"],["2024-07-24T03:09:24.010000"],["2024-07-24T03:09:25.010000"],["2024-07-24T03:09:26.010000"],["2024-07-24T03:09:27.010000"],["2024-07-24T03:09:28.010000"],["2024-07-24T03:09:29.010000"],["2024-07-24T03:09:30.010000"],["2024-07-24T03:09:31.010000"],["2024-07-24T03:09:32.010000"],["2024-07-24T03:09:33.010000"],["2024-07-24T03:09:34.010000"],["2024-07-24T03:09:35.010000"],["2024-07-24T03:09:36.010000"],["2024-07-24T03:09:37.010000"],["2024-07-24T03:09:38.010000"],["2024-07-24T03:09:39.010000"],["2024-07-24T03:09:40.010000"],["2024-07-24T03:09:41.010000"],["2024-07-24T03:09:42.010000"],["2024-07-24T03:09:43.010000"],["2024-07-24T03:09:44.010000"],["2024-07-24T03:09:45.010000"],["2024-07-24T03:09:46.010000"],["2024-07-24T03:09:47.010000"],["2024-07-24T03:09:48.010000"],["2024-07-24T03:09:49.010000"],["2024-07-24T03:09:50.010000"],["2024-07-24T03:09:51.010000"],["2024-07-24T03:09:52.010000"],["2024-07-24T03:09:53.010000"],["2024-07-24T03:09:54.010000"],["2024-07-24T03:09:55.010000"],["2024-07-24T03:09:56.010000"],["2024-07-24T03:09:57.010000"],["2024-07-24T03:09:58.010000"],["2024-07-24T03:09:59.010000"],["2024-07-24T03:10:00.010000"],["2024-07-24T03:10:01.010000"],["2024-07-24T03:10:02.010000"],["2024-07-24T03:10:03.010000"],["2024-07-24T03:10:04.010000"],["2024-07-24T03:10:05.010000"],["2024-07-24T03:10:06.010000"],["2024-07-24T03:10:07.010000"],["2024-07-24T03:10:08.010000"],["2024-07-24T03:10:09.010000"],["2024-07-24T03:10:10.010000"],["2024-07-24T03:10:11.010000"],["2024-07-24T03:10:12.010000"],["2024-07-24T03:10:13.010000"],["2024-07-24T03:10:14.010000"],["2024-07-24T03:10:15.010000"],["2024-07-24T03:10:16.010000"],["2024-07-24T03:10:17.010000"],["2024-07-24T03:10:18.010000"],["2024-07-24T03:10:19.010000"],["2024-07-24T03:10:20.010000"],["2024-07-24T03:10:21.010000"],["2024-07-24T03:10:22.010000"],["2024-07-24T03:10:23.010000"],["2024-07-24T03:10:24.010000"],["2024-07-24T03:10:25.010000"],["2024-07-24T03:10:26.010000"],["2024-07-24T03:10:27.010000"],["2024-07-24T03:10:28.010000"],["2024-07-24T03:10:29.010000"],["2024-07-24T03:10:30.010000"],["2024-07-24T03:10:31.010000"],["2024-07-24T03:10:32.010000"],["2024-07-24T03:10:33.010000"],["2024-07-24T03:10:34.010000"],["2024-07-24T03:10:35.010000"],["2024-07-24T03:10:36.010000"],["2024-07-24T03:10:37.010000"],["2024-07-24T03:10:38.010000"],["2024-07-24T03:10:39.010000"],["2024-07-24T03:10:40.010000"],["2024-07-24T03:10:41.010000"],["2024-07-24T03:10:42.010000"],["2024-07-24T03:10:43.010000"],["2024-07-24T03:10:44.010000"],["2024-07-24T03:10:45.010000"],["2024-07-24T03:10:46.010000"],["2024-07-24T03:10:47.010000"],["2024-07-24T03:10:48.010000"],["2024-07-24T03:10:49.010000"],["2024-07-24T03:10:50.010000"],["2024-07-24T03:10:51.010000"],["2024-07-24T03:10:52.010000"],["2024-07-24T03:10:53.010000"],["2024-07-24T03:10:54.010000"],["2024-07-24T03:10:55.010000"],["2024-07-24T03:10:56.010000"],["2024-07-24T03:10:57.010000"],["2024-07-24T03:10:58.010000"],["2024-07-24T03:10:59.010000"],["2024-07-24T03:11:00.010000"],["2024-07-24T03:11:01.010000"],["2024-07-24T03:11:02.010000"],["2024-07-24T03:11:03.010000"],["2024-07-24T03:11:04.010000"],["2024-07-24T03:11:05.010000"],["2024-07-24T03:11:06.010000"],["2024-07-24T03:11:07.010000"],["2024-07-24T03:11:08.010000"],["2024-07-24T03:11:09.010000"],["2024-07-24T03:11:10.010000"],["2024-07-24T03:11:11.010000"],["2024-07-24T03:11:12.010000"],["2024-07-24T03:11:13.010000"],["2024-07-24T03:11:14.010000"],["2024-07-24T03:11:15.010000"],["2024-07-24T03:11:16.010000"],["2024-07-24T03:11:17.010000"],["2024-07-24T03:11:18.010000"],["2024-07-24T03:11:19.010000"],["2024-07-24T03:11:20.010000"],["2024-07-24T03:11:21.010000"],["2024-07-24T03:11:22.010000"],["2024-07-24T03:11:23.010000"],["2024-07-24T03:11:24.010000"],["2024-07-24T03:11:25.010000"],["2024-07-24T03:11:26.010000"],["2024-07-24T03:11:27.010000"],["2024-07-24T03:11:28.010000"],["2024-07-24T03:11:29.010000"],["2024-07-24T03:11:30.010000"],["2024-07-24T03:11:31.010000"],["2024-07-24T03:11:32.010000"],["2024-07-24T03:11:33.010000"],["2024-07-24T03:11:34.010000"],["2024-07-24T03:11:35.010000"],["2024-07-24T03:11:36.010000"],["2024-07-24T03:11:37.010000"],["2024-07-24T03:11:38.010000"],["2024-07-24T03:11:39.010000"],["2024-07-24T03:11:40.010000"],["2024-07-24T03:11:41.010000"],["2024-07-24T03:11:42.010000"],["2024-07-24T03:11:43.010000"],["2024-07-24T03:11:44.010000"],["2024-07-24T03:11:45.010000"],["2024-07-24T03:11:46.010000"],["2024-07-24T03:11:47.010000"],["2024-07-24T03:11:48.010000"],["2024-07-24T03:11:49.010000"],["2024-07-24T03:11:50.010000"],["2024-07-24T03:11:51.010000"],["2024-07-24T03:11:52.010000"],["2024-07-24T03:11:53.010000"],["2024-07-24T03:11:54.010000"],["2024-07-24T03:11:55.010000"],["2024-07-24T03:11:56.010000"],["2024-07-24T03:11:57.010000"],["2024-07-24T03:11:58.010000"],["2024-07-24T03:11:59.010000"],["2024-07-24T03:12:00.010000"],["2024-07-24T03:12:01.010000"],["2024-07-24T03:12:02.010000"],["2024-07-24T03:12:03.010000"],["2024-07-24T03:12:04.010000"],["2024-07-24T03:12:05.010000"],["2024-07-24T03:12:06.010000"],["2024-07-24T03:12:07.010000"],["2024-07-24T03:12:08.010000"],["2024-07-24T03:12:09.010000"],["2024-07-24T03:12:10.010000"],["2024-07-24T03:12:11.010000"],["2024-07-24T03:12:12.010000"],["2024-07-24T03:12:13.010000"],["2024-07-24T03:12:14.010000"],["2024-07-24T03:12:15.010000"],["2024-07-24T03:12:16.010000"],["2024-07-24T03:12:17.010000"],["2024-07-24T03:12:18.010000"],["2024-07-24T03:12:19.010000"],["2024-07-24T03:12:20.010000"],["2024-07-24T03:12:21.010000"],["2024-07-24T03:12:22.010000"],["2024-07-24T03:12:23.010000"],["2024-07-24T03:12:24.010000"],["2024-07-24T03:12:25.010000"],["2024-07-24T03:12:26.010000"],["2024-07-24T03:12:27.010000"],["2024-07-24T03:12:28.010000"],["2024-07-24T03:12:29.010000"],["2024-07-24T03:12:30.010000"],["2024-07-24T03:12:31.010000"],["2024-07-24T03:12:32.010000"],["2024-07-24T03:12:33.010000"],["2024-07-24T03:12:34.010000"],["2024-07-24T03:12:35.010000"],["2024-07-24T03:12:36.010000"],["2024-07-24T03:12:37.010000"],["2024-07-24T03:12:38.010000"],["2024-07-24T03:12:39.010000"],["2024-07-24T03:12:40.010000"],["2024-07-24T03:12:41.010000"],["2024-07-24T03:12:42.010000"],["2024-07-24T03:12:43.010000"],["2024-07-24T03:12:44.010000"],["2024-07-24T03:12:45.010000"],["2024-07-24T03:12:46.010000"],["2024-07-24T03:12:47.010000"],["2024-07-24T03:12:48.010000"],["2024-07-24T03:12:49.010000"],["2024-07-24T03:12:50.010000"],["2024-07-24T03:12:51.010000"],["2024-07-24T03:12:52.010000"],["2024-07-24T03:12:53.010000"],["2024-07-24T03:12:54.010000"],["2024-07-24T03:12:55.010000"],["2024-07-24T03:12:56.010000"],["2024-07-24T03:12:57.010000"],["2024-07-24T03:12:58.010000"],["2024-07-24T03:12:59.010000"],["2024-07-24T03:13:00.010000"],["2024-07-24T03:13:01.010000"],["2024-07-24T03:13:02.010000"],["2024-07-24T03:13:03.010000"],["2024-07-24T03:13:04.010000"],["2024-07-24T03:13:05.010000"],["2024-07-24T03:13:06.010000"],["2024-07-24T03:13:07.010000"],["2024-07-24T03:13:08.010000"],["2024-07-24T03:13:09.010000"],["2024-07-24T03:13:10.010000"],["2024-07-24T03:13:11.010000"],["2024-07-24T03:13:12.010000"],["2024-07-24T03:13:13.010000"],["2024-07-24T03:13:14.010000"],["2024-07-24T03:13:15.010000"],["2024-07-24T03:13:16.010000"],["2024-07-24T03:13:17.010000"],["2024-07-24T03:13:18.010000"],["2024-07-24T03:13:19.010000"],["2024-07-24T03:13:20.010000"],["2024-07-24T03:13:21.010000"],["2024-07-24T03:13:22.010000"],["2024-07-24T03:13:23.010000"],["2024-07-24T03:13:24.010000"],["2024-07-24T03:13:25.010000"],["2024-07-24T03:13:26.010000"],["2024-07-24T03:13:27.010000"],["2024-07-24T03:13:28.010000"],["2024-07-24T03:13:29.010000"],["2024-07-24T03:13:30.010000"],["2024-07-24T03:13:31.010000"],["2024-07-24T03:13:32.010000"],["2024-07-24T03:13:33.010000"],["2024-07-24T03:13:34.010000"],["2024-07-24T03:13:35.010000"],["2024-07-24T03:13:36.010000"],["2024-07-24T03:13:37.010000"],["2024-07-24T03:13:38.010000"],["2024-07-24T03:13:39.010000"],["2024-07-24T03:13:40.010000"],["2024-07-24T03:13:41.010000"],["2024-07-24T03:13:42.010000"],["2024-07-24T03:13:43.010000"],["2024-07-24T03:13:44.010000"],["2024-07-24T03:13:45.010000"],["2024-07-24T03:13:46.010000"],["2024-07-24T03:13:47.010000"],["2024-07-24T03:13:48.010000"],["2024-07-24T03:13:49.010000"],["2024-07-24T03:13:50.010000"],["2024-07-24T03:13:51.010000"],["2024-07-24T03:13:52.010000"],["2024-07-24T03:13:53.010000"],["2024-07-24T03:13:54.010000"],["2024-07-24T03:13:55.010000"],["2024-07-24T03:13:56.010000"],["2024-07-24T03:13:57.010000"],["2024-07-24T03:13:58.010000"],["2024-07-24T03:13:59.010000"],["2024-07-24T03:14:00.010000"],["2024-07-24T03:14:01.010000"],["2024-07-24T03:14:02.010000"],["2024-07-24T03:14:03.010000"],["2024-07-24T03:14:04.010000"],["2024-07-24T03:14:05.010000"],["2024-07-24T03:14:06.010000"],["2024-07-24T03:14:07.010000"],["2024-07-24T03:14:08.010000"],["2024-07-24T03:14:09.010000"],["2024-07-24T03:14:10.010000"],["2024-07-24T03:14:11.010000"],["2024-07-24T03:14:12.010000"],["2024-07-24T03:14:13.010000"],["2024-07-24T03:14:14.010000"],["2024-07-24T03:14:15.010000"],["2024-07-24T03:14:16.010000"],["2024-07-24T03:14:17.010000"],["2024-07-24T03:14:18.010000"],["2024-07-24T03:14:19.010000"],["2024-07-24T03:14:20.010000"],["2024-07-24T03:14:21.010000"],["2024-07-24T03:14:22.010000"],["2024-07-24T03:14:23.010000"],["2024-07-24T03:14:24.010000"],["2024-07-24T03:14:25.010000"],["2024-07-24T03:14:26.010000"],["2024-07-24T03:14:27.010000"],["2024-07-24T03:14:28.010000"],["2024-07-24T03:14:29.010000"],["2024-07-24T03:14:30.010000"],["2024-07-24T03:14:31.010000"],["2024-07-24T03:14:32.010000"],["2024-07-24T03:14:33.010000"],["2024-07-24T03:14:34.010000"],["2024-07-24T03:14:35.010000"],["2024-07-24T03:14:36.010000"],["2024-07-24T03:14:37.010000"],["2024-07-24T03:14:38.010000"],["2024-07-24T03:14:39.010000"],["2024-07-24T03:14:40.010000"],["2024-07-24T03:14:41.010000"],["2024-07-24T03:14:42.010000"],["2024-07-24T03:14:43.010000"],["2024-07-24T03:14:44.010000"],["2024-07-24T03:14:45.010000"],["2024-07-24T03:14:46.010000"],["2024-07-24T03:14:47.010000"],["2024-07-24T03:14:48.010000"],["2024-07-24T03:14:49.010000"],["2024-07-24T03:14:50.010000"],["2024-07-24T03:14:51.010000"],["2024-07-24T03:14:52.010000"],["2024-07-24T03:14:53.010000"],["2024-07-24T03:14:54.010000"],["2024-07-24T03:14:55.010000"],["2024-07-24T03:14:56.010000"],["2024-07-24T03:14:57.010000"],["2024-07-24T03:14:58.010000"],["2024-07-24T03:14:59.010000"],["2024-07-24T03:15:00.010000"],["2024-07-24T03:15:01.010000"],["2024-07-24T03:15:02.010000"],["2024-07-24T03:15:03.010000"],["2024-07-24T03:15:04.010000"],["2024-07-24T03:15:05.010000"],["2024-07-24T03:15:06.010000"],["2024-07-24T03:15:07.010000"],["2024-07-24T03:15:08.010000"],["2024-07-24T03:15:09.010000"],["2024-07-24T03:15:10.010000"],["2024-07-24T03:15:11.010000"],["2024-07-24T03:15:12.010000"],["2024-07-24T03:15:13.010000"],["2024-07-24T03:15:14.010000"],["2024-07-24T03:15:15.010000"],["2024-07-24T03:15:16.010000"],["2024-07-24T03:15:17.010000"],["2024-07-24T03:15:18.010000"],["2024-07-24T03:15:19.010000"],["2024-07-24T03:15:20.010000"],["2024-07-24T03:15:21.010000"],["2024-07-24T03:15:22.010000"],["2024-07-24T03:15:23.010000"],["2024-07-24T03:15:24.010000"],["2024-07-24T03:15:25.010000"],["2024-07-24T03:15:26.010000"],["2024-07-24T03:15:27.010000"],["2024-07-24T03:15:28.010000"],["2024-07-24T03:15:29.010000"],["2024-07-24T03:15:30.010000"],["2024-07-24T03:15:31.010000"],["2024-07-24T03:15:32.010000"],["2024-07-24T03:15:33.010000"],["2024-07-24T03:15:34.010000"],["2024-07-24T03:15:35.010000"],["2024-07-24T03:15:36.010000"],["2024-07-24T03:15:37.010000"],["2024-07-24T03:15:38.010000"],["2024-07-24T03:15:39.010000"],["2024-07-24T03:15:40.010000"],["2024-07-24T03:15:41.010000"],["2024-07-24T03:15:42.010000"],["2024-07-24T03:15:43.010000"],["2024-07-24T03:15:44.010000"],["2024-07-24T03:15:45.010000"],["2024-07-24T03:15:46.010000"],["2024-07-24T03:15:47.010000"],["2024-07-24T03:15:48.010000"],["2024-07-24T03:15:49.010000"],["2024-07-24T03:15:50.010000"],["2024-07-24T03:15:51.010000"],["2024-07-24T03:15:52.010000"],["2024-07-24T03:15:53.010000"],["2024-07-24T03:15:54.010000"],["2024-07-24T03:15:55.010000"],["2024-07-24T03:15:56.010000"],["2024-07-24T03:15:57.010000"],["2024-07-24T03:15:58.010000"],["2024-07-24T03:15:59.010000"],["2024-07-24T03:16:00.010000"],["2024-07-24T03:16:01.010000"],["2024-07-24T03:16:02.010000"],["2024-07-24T03:16:03.010000"],["2024-07-24T03:16:04.010000"],["2024-07-24T03:16:05.010000"],["2024-07-24T03:16:06.010000"],["2024-07-24T03:16:07.010000"],["2024-07-24T03:16:08.010000"],["2024-07-24T03:16:09.010000"],["2024-07-24T03:16:10.010000"],["2024-07-24T03:16:11.010000"],["2024-07-24T03:16:12.010000"],["2024-07-24T03:16:13.010000"],["2024-07-24T03:16:14.010000"],["2024-07-24T03:16:15.010000"],["2024-07-24T03:16:16.010000"],["2024-07-24T03:16:17.010000"],["2024-07-24T03:16:18.010000"],["2024-07-24T03:16:19.010000"],["2024-07-24T03:16:20.010000"],["2024-07-24T03:16:21.010000"],["2024-07-24T03:16:22.010000"],["2024-07-24T03:16:23.010000"],["2024-07-24T03:16:24.010000"],["2024-07-24T03:16:25.010000"],["2024-07-24T03:16:26.010000"],["2024-07-24T03:16:27.010000"],["2024-07-24T03:16:28.010000"],["2024-07-24T03:16:29.010000"],["2024-07-24T03:16:30.010000"],["2024-07-24T03:16:31.010000"],["2024-07-24T03:16:32.010000"],["2024-07-24T03:16:33.010000"],["2024-07-24T03:16:34.010000"],["2024-07-24T03:16:35.010000"],["2024-07-24T03:16:36.010000"],["2024-07-24T03:16:37.010000"],["2024-07-24T03:16:38.010000"],["2024-07-24T03:16:39.010000"],["2024-07-24T03:16:40.010000"],["2024-07-24T03:16:41.010000"],["2024-07-24T03:16:42.010000"],["2024-07-24T03:16:43.010000"],["2024-07-24T03:16:44.010000"],["2024-07-24T03:16:45.010000"],["2024-07-24T03:16:46.010000"],["2024-07-24T03:16:47.010000"],["2024-07-24T03:16:48.010000"],["2024-07-24T03:16:49.010000"],["2024-07-24T03:16:50.010000"],["2024-07-24T03:16:51.010000"],["2024-07-24T03:16:52.010000"],["2024-07-24T03:16:53.010000"],["2024-07-24T03:16:54.010000"],["2024-07-24T03:16:55.010000"],["2024-07-24T03:16:56.010000"],["2024-07-24T03:16:57.010000"],["2024-07-24T03:16:58.010000"],["2024-07-24T03:16:59.010000"],["2024-07-24T03:17:00.010000"],["2024-07-24T03:17:01.010000"],["2024-07-24T03:17:02.010000"],["2024-07-24T03:17:03.010000"],["2024-07-24T03:17:04.010000"],["2024-07-24T03:17:05.010000"],["2024-07-24T03:17:06.010000"],["2024-07-24T03:17:07.010000"],["2024-07-24T03:17:08.010000"],["2024-07-24T03:17:09.010000"],["2024-07-24T03:17:10.010000"],["2024-07-24T03:17:11.010000"],["2024-07-24T03:17:12.010000"],["2024-07-24T03:17:13.010000"],["2024-07-24T03:17:14.010000"],["2024-07-24T03:17:15.010000"],["2024-07-24T03:17:16.010000"],["2024-07-24T03:17:17.010000"],["2024-07-24T03:17:18.010000"],["2024-07-24T03:17:19.010000"],["2024-07-24T03:17:20.010000"],["2024-07-24T03:17:21.010000"],["2024-07-24T03:17:22.010000"],["2024-07-24T03:17:23.010000"],["2024-07-24T03:17:24.010000"],["2024-07-24T03:17:25.010000"],["2024-07-24T03:17:26.010000"],["2024-07-24T03:17:27.010000"],["2024-07-24T03:17:28.010000"],["2024-07-24T03:17:29.010000"],["2024-07-24T03:17:30.010000"],["2024-07-24T03:17:31.010000"],["2024-07-24T03:17:32.010000"],["2024-07-24T03:17:33.010000"],["2024-07-24T03:17:34.010000"],["2024-07-24T03:17:35.010000"],["2024-07-24T03:17:36.010000"],["2024-07-24T03:17:37.010000"],["2024-07-24T03:17:38.010000"],["2024-07-24T03:17:39.010000"],["2024-07-24T03:17:40.010000"],["2024-07-24T03:17:41.010000"],["2024-07-24T03:17:42.010000"],["2024-07-24T03:17:43.010000"],["2024-07-24T03:17:44.010000"],["2024-07-24T03:17:45.010000"],["2024-07-24T03:17:46.010000"],["2024-07-24T03:17:47.010000"],["2024-07-24T03:17:48.010000"],["2024-07-24T03:17:49.010000"],["2024-07-24T03:17:50.010000"],["2024-07-24T03:17:51.010000"],["2024-07-24T03:17:52.010000"],["2024-07-24T03:17:53.010000"],["2024-07-24T03:17:54.010000"],["2024-07-24T03:17:55.010000"],["2024-07-24T03:17:56.010000"],["2024-07-24T03:17:57.010000"],["2024-07-24T03:17:58.010000"],["2024-07-24T03:17:59.010000"],["2024-07-24T03:18:00.010000"],["2024-07-24T03:18:01.010000"],["2024-07-24T03:18:02.010000"],["2024-07-24T03:18:03.010000"],["2024-07-24T03:18:04.010000"],["2024-07-24T03:18:05.010000"],["2024-07-24T03:18:06.010000"],["2024-07-24T03:18:07.010000"],["2024-07-24T03:18:08.010000"],["2024-07-24T03:18:09.010000"],["2024-07-24T03:18:10.010000"],["2024-07-24T03:18:11.010000"],["2024-07-24T03:18:12.010000"],["2024-07-24T03:18:13.010000"],["2024-07-24T03:18:14.010000"],["2024-07-24T03:18:15.010000"],["2024-07-24T03:18:16.010000"],["2024-07-24T03:18:17.010000"],["2024-07-24T03:18:18.010000"],["2024-07-24T03:18:19.010000"],["2024-07-24T03:18:20.010000"],["2024-07-24T03:18:21.010000"],["2024-07-24T03:18:22.010000"],["2024-07-24T03:18:23.010000"],["2024-07-24T03:18:24.010000"],["2024-07-24T03:18:25.010000"],["2024-07-24T03:18:26.010000"],["2024-07-24T03:18:27.010000"],["2024-07-24T03:18:28.010000"],["2024-07-24T03:18:29.010000"],["2024-07-24T03:18:30.010000"],["2024-07-24T03:18:31.010000"],["2024-07-24T03:18:32.010000"],["2024-07-24T03:18:33.010000"],["2024-07-24T03:18:34.010000"],["2024-07-24T03:18:35.010000"],["2024-07-24T03:18:36.010000"],["2024-07-24T03:18:37.010000"],["2024-07-24T03:18:38.010000"],["2024-07-24T03:18:39.010000"],["2024-07-24T03:18:40.010000"],["2024-07-24T03:18:41.010000"],["2024-07-24T03:18:42.010000"],["2024-07-24T03:18:43.010000"],["2024-07-24T03:18:44.010000"],["2024-07-24T03:18:45.010000"],["2024-07-24T03:18:46.010000"],["2024-07-24T03:18:47.010000"],["2024-07-24T03:18:48.010000"],["2024-07-24T03:18:49.010000"],["2024-07-24T03:18:50.010000"],["2024-07-24T03:18:51.010000"],["2024-07-24T03:18:52.010000"],["2024-07-24T03:18:53.010000"],["2024-07-24T03:18:54.010000"],["2024-07-24T03:18:55.010000"],["2024-07-24T03:18:56.010000"],["2024-07-24T03:18:57.010000"],["2024-07-24T03:18:58.010000"],["2024-07-24T03:18:59.010000"],["2024-07-24T03:19:00.010000"],["2024-07-24T03:19:01.010000"],["2024-07-24T03:19:02.010000"],["2024-07-24T03:19:03.010000"],["2024-07-24T03:19:04.010000"],["2024-07-24T03:19:05.010000"],["2024-07-24T03:19:06.010000"],["2024-07-24T03:19:07.010000"],["2024-07-24T03:19:08.010000"],["2024-07-24T03:19:09.010000"],["2024-07-24T03:19:10.010000"],["2024-07-24T03:19:11.010000"],["2024-07-24T03:19:12.010000"],["2024-07-24T03:19:13.010000"],["2024-07-24T03:19:14.010000"],["2024-07-24T03:19:15.010000"],["2024-07-24T03:19:16.010000"],["2024-07-24T03:19:17.010000"],["2024-07-24T03:19:18.010000"],["2024-07-24T03:19:19.010000"],["2024-07-24T03:19:20.010000"],["2024-07-24T03:19:21.010000"],["2024-07-24T03:19:22.010000"],["2024-07-24T03:19:23.010000"],["2024-07-24T03:19:24.010000"],["2024-07-24T03:19:25.010000"],["2024-07-24T03:19:26.010000"],["2024-07-24T03:19:27.010000"],["2024-07-24T03:19:28.010000"],["2024-07-24T03:19:29.010000"],["2024-07-24T03:19:30.010000"],["2024-07-24T03:19:31.010000"],["2024-07-24T03:19:32.010000"],["2024-07-24T03:19:33.010000"],["2024-07-24T03:19:34.010000"],["2024-07-24T03:19:35.010000"],["2024-07-24T03:19:36.010000"],["2024-07-24T03:19:37.010000"],["2024-07-24T03:19:38.010000"],["2024-07-24T03:19:39.010000"],["2024-07-24T03:19:40.010000"],["2024-07-24T03:19:41.010000"],["2024-07-24T03:19:42.010000"],["2024-07-24T03:19:43.010000"],["2024-07-24T03:19:44.010000"],["2024-07-24T03:19:45.010000"],["2024-07-24T03:19:46.010000"],["2024-07-24T03:19:47.010000"],["2024-07-24T03:19:48.010000"],["2024-07-24T03:19:49.010000"],["2024-07-24T03:19:50.010000"],["2024-07-24T03:19:51.010000"],["2024-07-24T03:19:52.010000"],["2024-07-24T03:19:53.010000"],["2024-07-24T03:19:54.010000"],["2024-07-24T03:19:55.010000"],["2024-07-24T03:19:56.010000"],["2024-07-24T03:19:57.010000"],["2024-07-24T03:19:58.010000"],["2024-07-24T03:19:59.010000"],["2024-07-24T03:20:00.010000"],["2024-07-24T03:20:01.010000"],["2024-07-24T03:20:02.010000"],["2024-07-24T03:20:03.010000"],["2024-07-24T03:20:04.010000"],["2024-07-24T03:20:05.010000"],["2024-07-24T03:20:06.010000"],["2024-07-24T03:20:07.010000"],["2024-07-24T03:20:08.010000"],["2024-07-24T03:20:09.010000"],["2024-07-24T03:20:10.010000"],["2024-07-24T03:20:11.010000"],["2024-07-24T03:20:12.010000"],["2024-07-24T03:20:13.010000"],["2024-07-24T03:20:14.010000"],["2024-07-24T03:20:15.010000"],["2024-07-24T03:20:16.010000"],["2024-07-24T03:20:17.010000"],["2024-07-24T03:20:18.010000"],["2024-07-24T03:20:19.010000"],["2024-07-24T03:20:20.010000"],["2024-07-24T03:20:21.010000"],["2024-07-24T03:20:22.010000"],["2024-07-24T03:20:23.010000"],["2024-07-24T03:20:24.010000"],["2024-07-24T03:20:25.010000"],["2024-07-24T03:20:26.010000"],["2024-07-24T03:20:27.010000"],["2024-07-24T03:20:28.010000"],["2024-07-24T03:20:29.010000"],["2024-07-24T03:20:30.010000"],["2024-07-24T03:20:31.010000"],["2024-07-24T03:20:32.010000"],["2024-07-24T03:20:33.010000"],["2024-07-24T03:20:34.010000"],["2024-07-24T03:20:35.010000"],["2024-07-24T03:20:36.010000"],["2024-07-24T03:20:37.010000"],["2024-07-24T03:20:38.010000"],["2024-07-24T03:20:39.010000"],["2024-07-24T03:20:40.010000"],["2024-07-24T03:20:41.010000"],["2024-07-24T03:20:42.010000"],["2024-07-24T03:20:43.010000"],["2024-07-24T03:20:44.010000"],["2024-07-24T03:20:45.010000"],["2024-07-24T03:20:46.010000"],["2024-07-24T03:20:47.010000"],["2024-07-24T03:20:48.010000"],["2024-07-24T03:20:49.010000"],["2024-07-24T03:20:50.010000"],["2024-07-24T03:20:51.010000"],["2024-07-24T03:20:52.010000"],["2024-07-24T03:20:53.010000"],["2024-07-24T03:20:54.010000"],["2024-07-24T03:20:55.010000"],["2024-07-24T03:20:56.010000"],["2024-07-24T03:20:57.010000"],["2024-07-24T03:20:58.010000"],["2024-07-24T03:20:59.010000"],["2024-07-24T03:21:00.010000"],["2024-07-24T03:21:01.010000"],["2024-07-24T03:21:02.010000"],["2024-07-24T03:21:03.010000"],["2024-07-24T03:21:04.010000"],["2024-07-24T03:21:05.010000"],["2024-07-24T03:21:06.010000"],["2024-07-24T03:21:07.010000"],["2024-07-24T03:21:08.010000"],["2024-07-24T03:21:09.010000"],["2024-07-24T03:21:10.010000"],["2024-07-24T03:21:11.010000"],["2024-07-24T03:21:12.010000"],["2024-07-24T03:21:13.010000"],["2024-07-24T03:21:14.010000"],["2024-07-24T03:21:15.010000"],["2024-07-24T03:21:16.010000"],["2024-07-24T03:21:17.010000"],["2024-07-24T03:21:18.010000"],["2024-07-24T03:21:19.010000"],["2024-07-24T03:21:20.010000"],["2024-07-24T03:21:21.010000"],["2024-07-24T03:21:22.010000"],["2024-07-24T03:21:23.010000"],["2024-07-24T03:21:24.010000"],["2024-07-24T03:21:25.010000"],["2024-07-24T03:21:26.010000"],["2024-07-24T03:21:27.010000"],["2024-07-24T03:21:28.010000"],["2024-07-24T03:21:29.010000"],["2024-07-24T03:21:30.010000"],["2024-07-24T03:21:31.010000"],["2024-07-24T03:21:32.010000"],["2024-07-24T03:21:33.010000"],["2024-07-24T03:21:34.010000"],["2024-07-24T03:21:35.010000"],["2024-07-24T03:21:36.010000"],["2024-07-24T03:21:37.010000"],["2024-07-24T03:21:38.010000"],["2024-07-24T03:21:39.010000"],["2024-07-24T03:21:40.010000"],["2024-07-24T03:21:41.010000"],["2024-07-24T03:21:42.010000"],["2024-07-24T03:21:43.010000"],["2024-07-24T03:21:44.010000"],["2024-07-24T03:21:45.010000"],["2024-07-24T03:21:46.010000"],["2024-07-24T03:21:47.010000"],["2024-07-24T03:21:48.010000"],["2024-07-24T03:21:49.010000"],["2024-07-24T03:21:50.010000"],["2024-07-24T03:21:51.010000"],["2024-07-24T03:21:52.010000"],["2024-07-24T03:21:53.010000"],["2024-07-24T03:21:54.010000"],["2024-07-24T03:21:55.010000"],["2024-07-24T03:21:56.010000"],["2024-07-24T03:21:57.010000"],["2024-07-24T03:21:58.010000"],["2024-07-24T03:21:59.010000"],["2024-07-24T03:22:00.010000"],["2024-07-24T03:22:01.010000"],["2024-07-24T03:22:02.010000"],["2024-07-24T03:22:03.010000"],["2024-07-24T03:22:04.010000"],["2024-07-24T03:22:05.010000"],["2024-07-24T03:22:06.010000"],["2024-07-24T03:22:07.010000"],["2024-07-24T03:22:08.010000"],["2024-07-24T03:22:09.010000"],["2024-07-24T03:22:10.010000"],["2024-07-24T03:22:11.010000"],["2024-07-24T03:22:12.010000"],["2024-07-24T03:22:13.010000"],["2024-07-24T03:22:14.010000"],["2024-07-24T03:22:15.010000"],["2024-07-24T03:22:16.010000"],["2024-07-24T03:22:17.010000"],["2024-07-24T03:22:18.010000"],["2024-07-24T03:22:19.010000"],["2024-07-24T03:22:20.010000"],["2024-07-24T03:22:21.010000"],["2024-07-24T03:22:22.010000"],["2024-07-24T03:22:23.010000"],["2024-07-24T03:22:24.010000"],["2024-07-24T03:22:25.010000"],["2024-07-24T03:22:26.010000"],["2024-07-24T03:22:27.010000"],["2024-07-24T03:22:28.010000"],["2024-07-24T03:22:29.010000"],["2024-07-24T03:22:30.010000"],["2024-07-24T03:22:31.010000"],["2024-07-24T03:22:32.010000"],["2024-07-24T03:22:33.010000"],["2024-07-24T03:22:34.010000"],["2024-07-24T03:22:35.010000"],["2024-07-24T03:22:36.010000"],["2024-07-24T03:22:37.010000"],["2024-07-24T03:22:38.010000"],["2024-07-24T03:22:39.010000"],["2024-07-24T03:22:40.010000"],["2024-07-24T03:22:41.010000"],["2024-07-24T03:22:42.010000"],["2024-07-24T03:22:43.010000"],["2024-07-24T03:22:44.010000"],["2024-07-24T03:22:45.010000"],["2024-07-24T03:22:46.010000"],["2024-07-24T03:22:47.010000"],["2024-07-24T03:22:48.010000"],["2024-07-24T03:22:49.010000"],["2024-07-24T03:22:50.010000"],["2024-07-24T03:22:51.010000"],["2024-07-24T03:22:52.010000"],["2024-07-24T03:22:53.010000"],["2024-07-24T03:22:54.010000"],["2024-07-24T03:22:55.010000"],["2024-07-24T03:22:56.010000"],["2024-07-24T03:22:57.010000"],["2024-07-24T03:22:58.010000"],["2024-07-24T03:22:59.010000"],["2024-07-24T03:23:00.010000"],["2024-07-24T03:23:01.010000"],["2024-07-24T03:23:02.010000"],["2024-07-24T03:23:03.010000"],["2024-07-24T03:23:04.010000"],["2024-07-24T03:23:05.010000"],["2024-07-24T03:23:06.010000"],["2024-07-24T03:23:07.010000"],["2024-07-24T03:23:08.010000"],["2024-07-24T03:23:09.010000"],["2024-07-24T03:23:10.010000"],["2024-07-24T03:23:11.010000"],["2024-07-24T03:23:12.010000"],["2024-07-24T03:23:13.010000"],["2024-07-24T03:23:14.010000"],["2024-07-24T03:23:15.010000"],["2024-07-24T03:23:16.010000"],["2024-07-24T03:23:17.010000"],["2024-07-24T03:23:18.010000"],["2024-07-24T03:23:19.010000"],["2024-07-24T03:23:20.010000"],["2024-07-24T03:23:21.010000"],["2024-07-24T03:23:22.010000"],["2024-07-24T03:23:23.010000"],["2024-07-24T03:23:24.010000"],["2024-07-24T03:23:25.010000"],["2024-07-24T03:23:26.010000"],["2024-07-24T03:23:27.010000"],["2024-07-24T03:23:28.010000"],["2024-07-24T03:23:29.010000"],["2024-07-24T03:23:30.010000"],["2024-07-24T03:23:31.010000"],["2024-07-24T03:23:32.010000"],["2024-07-24T03:23:33.010000"],["2024-07-24T03:23:34.010000"],["2024-07-24T03:23:35.010000"],["2024-07-24T03:23:36.010000"],["2024-07-24T03:23:37.010000"],["2024-07-24T03:23:38.010000"],["2024-07-24T03:23:39.010000"],["2024-07-24T03:23:40.010000"],["2024-07-24T03:23:41.010000"],["2024-07-24T03:23:42.010000"],["2024-07-24T03:23:43.010000"],["2024-07-24T03:23:44.010000"],["2024-07-24T03:23:45.010000"],["2024-07-24T03:23:46.010000"],["2024-07-24T03:23:47.010000"],["2024-07-24T03:23:48.010000"],["2024-07-24T03:23:49.010000"],["2024-07-24T03:23:50.010000"],["2024-07-24T03:23:51.010000"],["2024-07-24T03:23:52.010000"],["2024-07-24T03:23:53.010000"],["2024-07-24T03:23:54.010000"],["2024-07-24T03:23:55.010000"],["2024-07-24T03:23:56.010000"],["2024-07-24T03:23:57.010000"],["2024-07-24T03:23:58.010000"],["2024-07-24T03:23:59.010000"],["2024-07-24T03:24:00.010000"],["2024-07-24T03:24:01.010000"],["2024-07-24T03:24:02.010000"],["2024-07-24T03:24:03.010000"],["2024-07-24T03:24:04.010000"],["2024-07-24T03:24:05.010000"],["2024-07-24T03:24:06.010000"],["2024-07-24T03:24:07.010000"],["2024-07-24T03:24:08.010000"],["2024-07-24T03:24:09.010000"],["2024-07-24T03:24:10.010000"],["2024-07-24T03:24:11.010000"],["2024-07-24T03:24:12.010000"],["2024-07-24T03:24:13.010000"],["2024-07-24T03:24:14.010000"],["2024-07-24T03:24:15.010000"],["2024-07-24T03:24:16.010000"],["2024-07-24T03:24:17.010000"],["2024-07-24T03:24:18.010000"],["2024-07-24T03:24:19.010000"],["2024-07-24T03:24:20.010000"],["2024-07-24T03:24:21.010000"],["2024-07-24T03:24:22.010000"],["2024-07-24T03:24:23.010000"],["2024-07-24T03:24:24.010000"],["2024-07-24T03:24:25.010000"],["2024-07-24T03:24:26.010000"],["2024-07-24T03:24:27.010000"],["2024-07-24T03:24:28.010000"],["2024-07-24T03:24:29.010000"],["2024-07-24T03:24:30.010000"],["2024-07-24T03:24:31.010000"],["2024-07-24T03:24:32.010000"],["2024-07-24T03:24:33.010000"],["2024-07-24T03:24:34.010000"],["2024-07-24T03:24:35.010000"],["2024-07-24T03:24:36.010000"],["2024-07-24T03:24:37.010000"],["2024-07-24T03:24:38.010000"],["2024-07-24T03:24:39.010000"],["2024-07-24T03:24:40.010000"],["2024-07-24T03:24:41.010000"],["2024-07-24T03:24:42.010000"],["2024-07-24T03:24:43.010000"],["2024-07-24T03:24:44.010000"],["2024-07-24T03:24:45.010000"],["2024-07-24T03:24:46.010000"],["2024-07-24T03:24:47.010000"],["2024-07-24T03:24:48.010000"],["2024-07-24T03:24:49.010000"],["2024-07-24T03:24:50.010000"],["2024-07-24T03:24:51.010000"],["2024-07-24T03:24:52.010000"],["2024-07-24T03:24:53.010000"],["2024-07-24T03:24:54.010000"],["2024-07-24T03:24:55.010000"],["2024-07-24T03:24:56.010000"],["2024-07-24T03:24:57.010000"],["2024-07-24T03:24:58.010000"],["2024-07-24T03:24:59.010000"],["2024-07-24T03:25:00.010000"],["2024-07-24T03:25:01.010000"],["2024-07-24T03:25:02.010000"],["2024-07-24T03:25:03.010000"],["2024-07-24T03:25:04.010000"],["2024-07-24T03:25:05.010000"],["2024-07-24T03:25:06.010000"],["2024-07-24T03:25:07.010000"],["2024-07-24T03:25:08.010000"],["2024-07-24T03:25:09.010000"],["2024-07-24T03:25:10.010000"],["2024-07-24T03:25:11.010000"],["2024-07-24T03:25:12.010000"],["2024-07-24T03:25:13.010000"],["2024-07-24T03:25:14.010000"],["2024-07-24T03:25:15.010000"],["2024-07-24T03:25:16.010000"],["2024-07-24T03:25:17.010000"],["2024-07-24T03:25:18.010000"],["2024-07-24T03:25:19.010000"],["2024-07-24T03:25:20.010000"],["2024-07-24T03:25:21.010000"],["2024-07-24T03:25:22.010000"],["2024-07-24T03:25:23.010000"],["2024-07-24T03:25:24.010000"],["2024-07-24T03:25:25.010000"],["2024-07-24T03:25:26.010000"],["2024-07-24T03:25:27.010000"],["2024-07-24T03:25:28.010000"],["2024-07-24T03:25:29.010000"],["2024-07-24T03:25:30.010000"],["2024-07-24T03:25:31.010000"],["2024-07-24T03:25:32.010000"],["2024-07-24T03:25:33.010000"],["2024-07-24T03:25:34.010000"],["2024-07-24T03:25:35.010000"],["2024-07-24T03:25:36.010000"],["2024-07-24T03:25:37.010000"],["2024-07-24T03:25:38.010000"],["2024-07-24T03:25:39.010000"],["2024-07-24T03:25:40.010000"],["2024-07-24T03:25:41.010000"],["2024-07-24T03:25:42.010000"],["2024-07-24T03:25:43.010000"],["2024-07-24T03:25:44.010000"],["2024-07-24T03:25:45.010000"],["2024-07-24T03:25:46.010000"],["2024-07-24T03:25:47.010000"],["2024-07-24T03:25:48.010000"],["2024-07-24T03:25:49.010000"],["2024-07-24T03:25:50.010000"],["2024-07-24T03:25:51.010000"],["2024-07-24T03:25:52.010000"],["2024-07-24T03:25:53.010000"],["2024-07-24T03:25:54.010000"],["2024-07-24T03:25:55.010000"],["2024-07-24T03:25:56.010000"],["2024-07-24T03:25:57.010000"],["2024-07-24T03:25:58.010000"],["2024-07-24T03:25:59.010000"],["2024-07-24T03:26:00.010000"],["2024-07-24T03:26:01.010000"],["2024-07-24T03:26:02.010000"],["2024-07-24T03:26:03.010000"],["2024-07-24T03:26:04.010000"],["2024-07-24T03:26:05.010000"],["2024-07-24T03:26:06.010000"],["2024-07-24T03:26:07.010000"],["2024-07-24T03:26:08.010000"],["2024-07-24T03:26:09.010000"],["2024-07-24T03:26:10.010000"],["2024-07-24T03:26:11.010000"],["2024-07-24T03:26:12.010000"],["2024-07-24T03:26:13.010000"],["2024-07-24T03:26:14.010000"],["2024-07-24T03:26:15.010000"],["2024-07-24T03:26:16.010000"],["2024-07-24T03:26:17.010000"],["2024-07-24T03:26:18.010000"],["2024-07-24T03:26:19.010000"],["2024-07-24T03:26:20.010000"],["2024-07-24T03:26:21.010000"],["2024-07-24T03:26:22.010000"],["2024-07-24T03:26:23.010000"],["2024-07-24T03:26:24.010000"],["2024-07-24T03:26:25.010000"],["2024-07-24T03:26:26.010000"],["2024-07-24T03:26:27.010000"],["2024-07-24T03:26:28.010000"],["2024-07-24T03:26:29.010000"],["2024-07-24T03:26:30.010000"],["2024-07-24T03:26:31.010000"],["2024-07-24T03:26:32.010000"],["2024-07-24T03:26:33.010000"],["2024-07-24T03:26:34.010000"],["2024-07-24T03:26:35.010000"],["2024-07-24T03:26:36.010000"],["2024-07-24T03:26:37.010000"],["2024-07-24T03:26:38.010000"],["2024-07-24T03:26:39.010000"],["2024-07-24T03:26:40.010000"],["2024-07-24T03:26:41.010000"],["2024-07-24T03:26:42.010000"],["2024-07-24T03:26:43.010000"],["2024-07-24T03:26:44.010000"],["2024-07-24T03:26:45.010000"],["2024-07-24T03:26:46.010000"],["2024-07-24T03:26:47.010000"],["2024-07-24T03:26:48.010000"],["2024-07-24T03:26:49.010000"],["2024-07-24T03:26:50.010000"],["2024-07-24T03:26:51.010000"],["2024-07-24T03:26:52.010000"],["2024-07-24T03:26:53.010000"],["2024-07-24T03:26:54.010000"],["2024-07-24T03:26:55.010000"],["2024-07-24T03:26:56.010000"],["2024-07-24T03:26:57.010000"],["2024-07-24T03:26:58.010000"],["2024-07-24T03:26:59.010000"],["2024-07-24T03:27:00.010000"],["2024-07-24T03:27:01.010000"],["2024-07-24T03:27:02.010000"],["2024-07-24T03:27:03.010000"],["2024-07-24T03:27:04.010000"],["2024-07-24T03:27:05.010000"],["2024-07-24T03:27:06.010000"],["2024-07-24T03:27:07.010000"],["2024-07-24T03:27:08.010000"],["2024-07-24T03:27:09.010000"],["2024-07-24T03:27:10.010000"],["2024-07-24T03:27:11.010000"],["2024-07-24T03:27:12.010000"],["2024-07-24T03:27:13.010000"],["2024-07-24T03:27:14.010000"],["2024-07-24T03:27:15.010000"],["2024-07-24T03:27:16.010000"],["2024-07-24T03:27:17.010000"],["2024-07-24T03:27:18.010000"],["2024-07-24T03:27:19.010000"],["2024-07-24T03:27:20.010000"],["2024-07-24T03:27:21.010000"],["2024-07-24T03:27:22.010000"],["2024-07-24T03:27:23.010000"],["2024-07-24T03:27:24.010000"],["2024-07-24T03:27:25.010000"],["2024-07-24T03:27:26.010000"],["2024-07-24T03:27:27.010000"],["2024-07-24T03:27:28.010000"],["2024-07-24T03:27:29.010000"],["2024-07-24T03:27:30.010000"],["2024-07-24T03:27:31.010000"],["2024-07-24T03:27:32.010000"],["2024-07-24T03:27:33.010000"],["2024-07-24T03:27:34.010000"],["2024-07-24T03:27:35.010000"],["2024-07-24T03:27:36.010000"],["2024-07-24T03:27:37.010000"],["2024-07-24T03:27:38.010000"],["2024-07-24T03:27:39.010000"],["2024-07-24T03:27:40.010000"],["2024-07-24T03:27:41.010000"],["2024-07-24T03:27:42.010000"],["2024-07-24T03:27:43.010000"],["2024-07-24T03:27:44.010000"],["2024-07-24T03:27:45.010000"],["2024-07-24T03:27:46.010000"],["2024-07-24T03:27:47.010000"],["2024-07-24T03:27:48.010000"],["2024-07-24T03:27:49.010000"],["2024-07-24T03:27:50.010000"],["2024-07-24T03:27:51.010000"],["2024-07-24T03:27:52.010000"],["2024-07-24T03:27:53.010000"],["2024-07-24T03:27:54.010000"],["2024-07-24T03:27:55.010000"],["2024-07-24T03:27:56.010000"],["2024-07-24T03:27:57.010000"],["2024-07-24T03:27:58.010000"],["2024-07-24T03:27:59.010000"],["2024-07-24T03:28:00.010000"],["2024-07-24T03:28:01.010000"],["2024-07-24T03:28:02.010000"],["2024-07-24T03:28:03.010000"],["2024-07-24T03:28:04.010000"],["2024-07-24T03:28:05.010000"],["2024-07-24T03:28:06.010000"],["2024-07-24T03:28:07.010000"],["2024-07-24T03:28:08.010000"],["2024-07-24T03:28:09.010000"],["2024-07-24T03:28:10.010000"],["2024-07-24T03:28:11.010000"],["2024-07-24T03:28:12.010000"],["2024-07-24T03:28:13.010000"],["2024-07-24T03:28:14.010000"],["2024-07-24T03:28:15.010000"],["2024-07-24T03:28:16.010000"],["2024-07-24T03:28:17.010000"],["2024-07-24T03:28:18.010000"],["2024-07-24T03:28:19.010000"],["2024-07-24T03:28:20.010000"],["2024-07-24T03:28:21.010000"],["2024-07-24T03:28:22.010000"],["2024-07-24T03:28:23.010000"],["2024-07-24T03:28:24.010000"],["2024-07-24T03:28:25.010000"],["2024-07-24T03:28:26.010000"],["2024-07-24T03:28:27.010000"],["2024-07-24T03:28:28.010000"],["2024-07-24T03:28:29.010000"],["2024-07-24T03:28:30.010000"],["2024-07-24T03:28:31.010000"],["2024-07-24T03:28:32.010000"],["2024-07-24T03:28:33.010000"],["2024-07-24T03:28:34.010000"],["2024-07-24T03:28:35.010000"],["2024-07-24T03:28:36.010000"],["2024-07-24T03:28:37.010000"],["2024-07-24T03:28:38.010000"],["2024-07-24T03:28:39.010000"],["2024-07-24T03:28:40.010000"],["2024-07-24T03:28:41.010000"],["2024-07-24T03:28:42.010000"],["2024-07-24T03:28:43.010000"],["2024-07-24T03:28:44.010000"],["2024-07-24T03:28:45.010000"],["2024-07-24T03:28:46.010000"],["2024-07-24T03:28:47.010000"],["2024-07-24T03:28:48.010000"],["2024-07-24T03:28:49.010000"],["2024-07-24T03:28:50.010000"],["2024-07-24T03:28:51.010000"],["2024-07-24T03:28:52.010000"],["2024-07-24T03:28:53.010000"],["2024-07-24T03:28:54.010000"],["2024-07-24T03:28:55.010000"],["2024-07-24T03:28:56.010000"],["2024-07-24T03:28:57.010000"],["2024-07-24T03:28:58.010000"],["2024-07-24T03:28:59.010000"],["2024-07-24T03:29:00.010000"],["2024-07-24T03:29:01.010000"],["2024-07-24T03:29:02.010000"],["2024-07-24T03:29:03.010000"],["2024-07-24T03:29:04.010000"],["2024-07-24T03:29:05.010000"],["2024-07-24T03:29:06.010000"],["2024-07-24T03:29:07.010000"],["2024-07-24T03:29:08.010000"],["2024-07-24T03:29:09.010000"],["2024-07-24T03:29:10.010000"],["2024-07-24T03:29:11.010000"],["2024-07-24T03:29:12.010000"],["2024-07-24T03:29:13.010000"],["2024-07-24T03:29:14.010000"],["2024-07-24T03:29:15.010000"],["2024-07-24T03:29:16.010000"],["2024-07-24T03:29:17.010000"],["2024-07-24T03:29:18.010000"],["2024-07-24T03:29:19.010000"],["2024-07-24T03:29:20.010000"],["2024-07-24T03:29:21.010000"],["2024-07-24T03:29:22.010000"],["2024-07-24T03:29:23.010000"],["2024-07-24T03:29:24.010000"],["2024-07-24T03:29:25.010000"],["2024-07-24T03:29:26.010000"],["2024-07-24T03:29:27.010000"],["2024-07-24T03:29:28.010000"],["2024-07-24T03:29:29.010000"],["2024-07-24T03:29:30.010000"],["2024-07-24T03:29:31.010000"],["2024-07-24T03:29:32.010000"],["2024-07-24T03:29:33.010000"],["2024-07-24T03:29:34.010000"],["2024-07-24T03:29:35.010000"],["2024-07-24T03:29:36.010000"],["2024-07-24T03:29:37.010000"],["2024-07-24T03:29:38.010000"],["2024-07-24T03:29:39.010000"],["2024-07-24T03:29:40.010000"],["2024-07-24T03:29:41.010000"],["2024-07-24T03:29:42.010000"],["2024-07-24T03:29:43.010000"],["2024-07-24T03:29:44.010000"],["2024-07-24T03:29:45.010000"],["2024-07-24T03:29:46.010000"],["2024-07-24T03:29:47.010000"],["2024-07-24T03:29:48.010000"],["2024-07-24T03:29:49.010000"],["2024-07-24T03:29:50.010000"],["2024-07-24T03:29:51.010000"],["2024-07-24T03:29:52.010000"],["2024-07-24T03:29:53.010000"],["2024-07-24T03:29:54.010000"],["2024-07-24T03:29:55.010000"],["2024-07-24T03:29:56.010000"],["2024-07-24T03:29:57.010000"],["2024-07-24T03:29:58.010000"],["2024-07-24T03:29:59.010000"],["2024-07-24T03:30:00.010000"],["2024-07-24T03:30:01.010000"],["2024-07-24T03:30:02.010000"],["2024-07-24T03:30:03.010000"],["2024-07-24T03:30:04.010000"],["2024-07-24T03:30:05.010000"],["2024-07-24T03:30:06.010000"],["2024-07-24T03:30:07.010000"],["2024-07-24T03:30:08.010000"],["2024-07-24T03:30:09.010000"],["2024-07-24T03:30:10.010000"],["2024-07-24T03:30:11.010000"],["2024-07-24T03:30:12.010000"],["2024-07-24T03:30:13.010000"],["2024-07-24T03:30:14.010000"],["2024-07-24T03:30:15.010000"],["2024-07-24T03:30:16.010000"],["2024-07-24T03:30:17.010000"],["2024-07-24T03:30:18.010000"],["2024-07-24T03:30:19.010000"],["2024-07-24T03:30:20.010000"],["2024-07-24T03:30:21.010000"],["2024-07-24T03:30:22.010000"],["2024-07-24T03:30:23.010000"],["2024-07-24T03:30:24.010000"],["2024-07-24T03:30:25.010000"],["2024-07-24T03:30:26.010000"],["2024-07-24T03:30:27.010000"],["2024-07-24T03:30:28.010000"],["2024-07-24T03:30:29.010000"],["2024-07-24T03:30:30.010000"],["2024-07-24T03:30:31.010000"],["2024-07-24T03:30:32.010000"],["2024-07-24T03:30:33.010000"],["2024-07-24T03:30:34.010000"],["2024-07-24T03:30:35.010000"],["2024-07-24T03:30:36.010000"],["2024-07-24T03:30:37.010000"],["2024-07-24T03:30:38.010000"],["2024-07-24T03:30:39.010000"],["2024-07-24T03:30:40.010000"],["2024-07-24T03:30:41.010000"],["2024-07-24T03:30:42.010000"],["2024-07-24T03:30:43.010000"],["2024-07-24T03:30:44.010000"],["2024-07-24T03:30:45.010000"],["2024-07-24T03:30:46.010000"],["2024-07-24T03:30:47.010000"],["2024-07-24T03:30:48.010000"],["2024-07-24T03:30:49.010000"],["2024-07-24T03:30:50.010000"],["2024-07-24T03:30:51.010000"],["2024-07-24T03:30:52.010000"],["2024-07-24T03:30:53.010000"],["2024-07-24T03:30:54.010000"],["2024-07-24T03:30:55.010000"],["2024-07-24T03:30:56.010000"],["2024-07-24T03:30:57.010000"],["2024-07-24T03:30:58.010000"],["2024-07-24T03:30:59.010000"],["2024-07-24T03:31:00.010000"],["2024-07-24T03:31:01.010000"],["2024-07-24T03:31:02.010000"],["2024-07-24T03:31:03.010000"],["2024-07-24T03:31:04.010000"],["2024-07-24T03:31:05.010000"],["2024-07-24T03:31:06.010000"],["2024-07-24T03:31:07.010000"],["2024-07-24T03:31:08.010000"],["2024-07-24T03:31:09.010000"],["2024-07-24T03:31:10.010000"],["2024-07-24T03:31:11.010000"],["2024-07-24T03:31:12.010000"],["2024-07-24T03:31:13.010000"],["2024-07-24T03:31:14.010000"],["2024-07-24T03:31:15.010000"],["2024-07-24T03:31:16.010000"],["2024-07-24T03:31:17.010000"],["2024-07-24T03:31:18.010000"],["2024-07-24T03:31:19.010000"],["2024-07-24T03:31:20.010000"],["2024-07-24T03:31:21.010000"],["2024-07-24T03:31:22.010000"],["2024-07-24T03:31:23.010000"],["2024-07-24T03:31:24.010000"],["2024-07-24T03:31:25.010000"],["2024-07-24T03:31:26.010000"],["2024-07-24T03:31:27.010000"],["2024-07-24T03:31:28.010000"],["2024-07-24T03:31:29.010000"],["2024-07-24T03:31:30.010000"],["2024-07-24T03:31:31.010000"],["2024-07-24T03:31:32.010000"],["2024-07-24T03:31:33.010000"],["2024-07-24T03:31:34.010000"],["2024-07-24T03:31:35.010000"],["2024-07-24T03:31:36.010000"],["2024-07-24T03:31:37.010000"],["2024-07-24T03:31:38.010000"],["2024-07-24T03:31:39.010000"],["2024-07-24T03:31:40.010000"],["2024-07-24T03:31:41.010000"],["2024-07-24T03:31:42.010000"],["2024-07-24T03:31:43.010000"],["2024-07-24T03:31:44.010000"],["2024-07-24T03:31:45.010000"],["2024-07-24T03:31:46.010000"],["2024-07-24T03:31:47.010000"],["2024-07-24T03:31:48.010000"],["2024-07-24T03:31:49.010000"],["2024-07-24T03:31:50.010000"],["2024-07-24T03:31:51.010000"],["2024-07-24T03:31:52.010000"],["2024-07-24T03:31:53.010000"],["2024-07-24T03:31:54.010000"],["2024-07-24T03:31:55.010000"],["2024-07-24T03:31:56.010000"],["2024-07-24T03:31:57.010000"],["2024-07-24T03:31:58.010000"],["2024-07-24T03:31:59.010000"],["2024-07-24T03:32:00.010000"],["2024-07-24T03:32:01.010000"],["2024-07-24T03:32:02.010000"],["2024-07-24T03:32:03.010000"],["2024-07-24T03:32:04.010000"],["2024-07-24T03:32:05.010000"],["2024-07-24T03:32:06.010000"],["2024-07-24T03:32:07.010000"],["2024-07-24T03:32:08.010000"],["2024-07-24T03:32:09.010000"],["2024-07-24T03:32:10.010000"],["2024-07-24T03:32:11.010000"],["2024-07-24T03:32:12.010000"],["2024-07-24T03:32:13.010000"],["2024-07-24T03:32:14.010000"],["2024-07-24T03:32:15.010000"],["2024-07-24T03:32:16.010000"],["2024-07-24T03:32:17.010000"],["2024-07-24T03:32:18.010000"],["2024-07-24T03:32:19.010000"],["2024-07-24T03:32:20.010000"],["2024-07-24T03:32:21.010000"],["2024-07-24T03:32:22.010000"],["2024-07-24T03:32:23.010000"],["2024-07-24T03:32:24.010000"],["2024-07-24T03:32:25.010000"],["2024-07-24T03:32:26.010000"],["2024-07-24T03:32:27.010000"],["2024-07-24T03:32:28.010000"],["2024-07-24T03:32:29.010000"],["2024-07-24T03:32:30.010000"],["2024-07-24T03:32:31.010000"],["2024-07-24T03:32:32.010000"],["2024-07-24T03:32:33.010000"],["2024-07-24T03:32:34.010000"],["2024-07-24T03:32:35.010000"],["2024-07-24T03:32:36.010000"],["2024-07-24T03:32:37.010000"],["2024-07-24T03:32:38.010000"],["2024-07-24T03:32:39.010000"],["2024-07-24T03:32:40.010000"],["2024-07-24T03:32:41.010000"],["2024-07-24T03:32:42.010000"],["2024-07-24T03:32:43.010000"],["2024-07-24T03:32:44.010000"],["2024-07-24T03:32:45.010000"],["2024-07-24T03:32:46.010000"],["2024-07-24T03:32:47.010000"],["2024-07-24T03:32:48.010000"],["2024-07-24T03:32:49.010000"],["2024-07-24T03:32:50.010000"],["2024-07-24T03:32:51.010000"],["2024-07-24T03:32:52.010000"],["2024-07-24T03:32:53.010000"],["2024-07-24T03:32:54.010000"],["2024-07-24T03:32:55.010000"],["2024-07-24T03:32:56.010000"],["2024-07-24T03:32:57.010000"],["2024-07-24T03:32:58.010000"],["2024-07-24T03:32:59.010000"],["2024-07-24T03:33:00.010000"],["2024-07-24T03:33:01.010000"],["2024-07-24T03:33:02.010000"],["2024-07-24T03:33:03.010000"],["2024-07-24T03:33:04.010000"],["2024-07-24T03:33:05.010000"],["2024-07-24T03:33:06.010000"],["2024-07-24T03:33:07.010000"],["2024-07-24T03:33:08.010000"],["2024-07-24T03:33:09.010000"],["2024-07-24T03:33:10.010000"],["2024-07-24T03:33:11.010000"],["2024-07-24T03:33:12.010000"],["2024-07-24T03:33:13.010000"],["2024-07-24T03:33:14.010000"],["2024-07-24T03:33:15.010000"],["2024-07-24T03:33:16.010000"],["2024-07-24T03:33:17.010000"],["2024-07-24T03:33:18.010000"],["2024-07-24T03:33:19.010000"],["2024-07-24T03:33:20.010000"],["2024-07-24T03:33:21.010000"],["2024-07-24T03:33:22.010000"],["2024-07-24T03:33:23.010000"],["2024-07-24T03:33:24.010000"],["2024-07-24T03:33:25.010000"],["2024-07-24T03:33:26.010000"],["2024-07-24T03:33:27.010000"],["2024-07-24T03:33:28.010000"],["2024-07-24T03:33:29.010000"],["2024-07-24T03:33:30.010000"],["2024-07-24T03:33:31.010000"],["2024-07-24T03:33:32.010000"],["2024-07-24T03:33:33.010000"],["2024-07-24T03:33:34.010000"],["2024-07-24T03:33:35.010000"],["2024-07-24T03:33:36.010000"],["2024-07-24T03:33:37.010000"],["2024-07-24T03:33:38.010000"],["2024-07-24T03:33:39.010000"],["2024-07-24T03:33:40.010000"],["2024-07-24T03:33:41.010000"],["2024-07-24T03:33:42.010000"],["2024-07-24T03:33:43.010000"],["2024-07-24T03:33:44.010000"],["2024-07-24T03:33:45.010000"],["2024-07-24T03:33:46.010000"],["2024-07-24T03:33:47.010000"],["2024-07-24T03:33:48.010000"],["2024-07-24T03:33:49.010000"],["2024-07-24T03:33:50.010000"],["2024-07-24T03:33:51.010000"],["2024-07-24T03:33:52.010000"],["2024-07-24T03:33:53.010000"],["2024-07-24T03:33:54.010000"],["2024-07-24T03:33:55.010000"],["2024-07-24T03:33:56.010000"],["2024-07-24T03:33:57.010000"],["2024-07-24T03:33:58.010000"],["2024-07-24T03:33:59.010000"],["2024-07-24T03:34:00.010000"],["2024-07-24T03:34:01.010000"],["2024-07-24T03:34:02.010000"],["2024-07-24T03:34:03.010000"],["2024-07-24T03:34:04.010000"],["2024-07-24T03:34:05.010000"],["2024-07-24T03:34:06.010000"],["2024-07-24T03:34:07.010000"],["2024-07-24T03:34:08.010000"],["2024-07-24T03:34:09.010000"],["2024-07-24T03:34:10.010000"],["2024-07-24T03:34:11.010000"],["2024-07-24T03:34:12.010000"],["2024-07-24T03:34:13.010000"],["2024-07-24T03:34:14.010000"],["2024-07-24T03:34:15.010000"],["2024-07-24T03:34:16.010000"],["2024-07-24T03:34:17.010000"],["2024-07-24T03:34:18.010000"],["2024-07-24T03:34:19.010000"],["2024-07-24T03:34:20.010000"],["2024-07-24T03:34:21.010000"],["2024-07-24T03:34:22.010000"],["2024-07-24T03:34:23.010000"],["2024-07-24T03:34:24.010000"],["2024-07-24T03:34:25.010000"],["2024-07-24T03:34:26.010000"],["2024-07-24T03:34:27.010000"],["2024-07-24T03:34:28.010000"],["2024-07-24T03:34:29.010000"],["2024-07-24T03:34:30.010000"],["2024-07-24T03:34:31.010000"],["2024-07-24T03:34:32.010000"],["2024-07-24T03:34:33.010000"],["2024-07-24T03:34:34.010000"],["2024-07-24T03:34:35.010000"],["2024-07-24T03:34:36.010000"],["2024-07-24T03:34:37.010000"],["2024-07-24T03:34:38.010000"],["2024-07-24T03:34:39.010000"],["2024-07-24T03:34:40.010000"],["2024-07-24T03:34:41.010000"],["2024-07-24T03:34:42.010000"],["2024-07-24T03:34:43.010000"],["2024-07-24T03:34:44.010000"],["2024-07-24T03:34:45.010000"],["2024-07-24T03:34:46.010000"],["2024-07-24T03:34:47.010000"],["2024-07-24T03:34:48.010000"],["2024-07-24T03:34:49.010000"],["2024-07-24T03:34:50.010000"],["2024-07-24T03:34:51.010000"],["2024-07-24T03:34:52.010000"],["2024-07-24T03:34:53.010000"],["2024-07-24T03:34:54.010000"],["2024-07-24T03:34:55.010000"],["2024-07-24T03:34:56.010000"],["2024-07-24T03:34:57.010000"],["2024-07-24T03:34:58.010000"],["2024-07-24T03:34:59.010000"],["2024-07-24T03:35:00.010000"],["2024-07-24T03:35:01.010000"],["2024-07-24T03:35:02.010000"],["2024-07-24T03:35:03.010000"],["2024-07-24T03:35:04.010000"],["2024-07-24T03:35:05.010000"],["2024-07-24T03:35:06.010000"],["2024-07-24T03:35:07.010000"],["2024-07-24T03:35:08.010000"],["2024-07-24T03:35:09.010000"],["2024-07-24T03:35:10.010000"],["2024-07-24T03:35:11.010000"],["2024-07-24T03:35:12.010000"],["2024-07-24T03:35:13.010000"],["2024-07-24T03:35:14.010000"],["2024-07-24T03:35:15.010000"],["2024-07-24T03:35:16.010000"],["2024-07-24T03:35:17.010000"],["2024-07-24T03:35:18.010000"],["2024-07-24T03:35:19.010000"],["2024-07-24T03:35:20.010000"],["2024-07-24T03:35:21.010000"],["2024-07-24T03:35:22.010000"],["2024-07-24T03:35:23.010000"],["2024-07-24T03:35:24.010000"],["2024-07-24T03:35:25.010000"],["2024-07-24T03:35:26.010000"],["2024-07-24T03:35:27.010000"],["2024-07-24T03:35:28.010000"],["2024-07-24T03:35:29.010000"],["2024-07-24T03:35:30.010000"],["2024-07-24T03:35:31.010000"],["2024-07-24T03:35:32.010000"],["2024-07-24T03:35:33.010000"],["2024-07-24T03:35:34.010000"],["2024-07-24T03:35:35.010000"],["2024-07-24T03:35:36.010000"],["2024-07-24T03:35:37.010000"],["2024-07-24T03:35:38.010000"],["2024-07-24T03:35:39.010000"],["2024-07-24T03:35:40.010000"],["2024-07-24T03:35:41.010000"],["2024-07-24T03:35:42.010000"],["2024-07-24T03:35:43.010000"],["2024-07-24T03:35:44.010000"],["2024-07-24T03:35:45.010000"],["2024-07-24T03:35:46.010000"],["2024-07-24T03:35:47.010000"],["2024-07-24T03:35:48.010000"],["2024-07-24T03:35:49.010000"],["2024-07-24T03:35:50.010000"],["2024-07-24T03:35:51.010000"],["2024-07-24T03:35:52.010000"],["2024-07-24T03:35:53.010000"],["2024-07-24T03:35:54.010000"],["2024-07-24T03:35:55.010000"],["2024-07-24T03:35:56.010000"],["2024-07-24T03:35:57.010000"],["2024-07-24T03:35:58.010000"],["2024-07-24T03:35:59.010000"],["2024-07-24T03:36:00.010000"],["2024-07-24T03:36:01.010000"],["2024-07-24T03:36:02.010000"],["2024-07-24T03:36:03.010000"],["2024-07-24T03:36:04.010000"],["2024-07-24T03:36:05.010000"],["2024-07-24T03:36:06.010000"],["2024-07-24T03:36:07.010000"],["2024-07-24T03:36:08.010000"],["2024-07-24T03:36:09.010000"],["2024-07-24T03:36:10.010000"],["2024-07-24T03:36:11.010000"],["2024-07-24T03:36:12.010000"],["2024-07-24T03:36:13.010000"],["2024-07-24T03:36:14.010000"],["2024-07-24T03:36:15.010000"],["2024-07-24T03:36:16.010000"],["2024-07-24T03:36:17.010000"],["2024-07-24T03:36:18.010000"],["2024-07-24T03:36:19.010000"],["2024-07-24T03:36:20.010000"],["2024-07-24T03:36:21.010000"],["2024-07-24T03:36:22.010000"],["2024-07-24T03:36:23.010000"],["2024-07-24T03:36:24.010000"],["2024-07-24T03:36:25.010000"],["2024-07-24T03:36:26.010000"],["2024-07-24T03:36:27.010000"],["2024-07-24T03:36:28.010000"],["2024-07-24T03:36:29.010000"],["2024-07-24T03:36:30.010000"],["2024-07-24T03:36:31.010000"],["2024-07-24T03:36:32.010000"],["2024-07-24T03:36:33.010000"],["2024-07-24T03:36:34.010000"],["2024-07-24T03:36:35.010000"],["2024-07-24T03:36:36.010000"],["2024-07-24T03:36:37.010000"],["2024-07-24T03:36:38.010000"],["2024-07-24T03:36:39.010000"],["2024-07-24T03:36:40.010000"],["2024-07-24T03:36:41.010000"],["2024-07-24T03:36:42.010000"],["2024-07-24T03:36:43.010000"],["2024-07-24T03:36:44.010000"],["2024-07-24T03:36:45.010000"],["2024-07-24T03:36:46.010000"],["2024-07-24T03:36:47.010000"],["2024-07-24T03:36:48.010000"],["2024-07-24T03:36:49.010000"],["2024-07-24T03:36:50.010000"],["2024-07-24T03:36:51.010000"],["2024-07-24T03:36:52.010000"],["2024-07-24T03:36:53.010000"],["2024-07-24T03:36:54.010000"],["2024-07-24T03:36:55.010000"],["2024-07-24T03:36:56.010000"],["2024-07-24T03:36:57.010000"],["2024-07-24T03:36:58.010000"],["2024-07-24T03:36:59.010000"],["2024-07-24T03:37:00.010000"],["2024-07-24T03:37:01.010000"],["2024-07-24T03:37:02.010000"],["2024-07-24T03:37:03.010000"],["2024-07-24T03:37:04.010000"],["2024-07-24T03:37:05.010000"],["2024-07-24T03:37:06.010000"],["2024-07-24T03:37:07.010000"],["2024-07-24T03:37:08.010000"],["2024-07-24T03:37:09.010000"],["2024-07-24T03:37:10.010000"],["2024-07-24T03:37:11.010000"],["2024-07-24T03:37:12.010000"],["2024-07-24T03:37:13.010000"],["2024-07-24T03:37:14.010000"],["2024-07-24T03:37:15.010000"],["2024-07-24T03:37:16.010000"],["2024-07-24T03:37:17.010000"],["2024-07-24T03:37:18.010000"],["2024-07-24T03:37:19.010000"],["2024-07-24T03:37:20.010000"],["2024-07-24T03:37:21.010000"],["2024-07-24T03:37:22.010000"],["2024-07-24T03:37:23.010000"],["2024-07-24T03:37:24.010000"],["2024-07-24T03:37:25.010000"],["2024-07-24T03:37:26.010000"],["2024-07-24T03:37:27.010000"],["2024-07-24T03:37:28.010000"],["2024-07-24T03:37:29.010000"],["2024-07-24T03:37:30.010000"],["2024-07-24T03:37:31.010000"],["2024-07-24T03:37:32.010000"],["2024-07-24T03:37:33.010000"],["2024-07-24T03:37:34.010000"],["2024-07-24T03:37:35.010000"],["2024-07-24T03:37:36.010000"],["2024-07-24T03:37:37.010000"],["2024-07-24T03:37:38.010000"],["2024-07-24T03:37:39.010000"],["2024-07-24T03:37:40.010000"],["2024-07-24T03:37:41.010000"],["2024-07-24T03:37:42.010000"],["2024-07-24T03:37:43.010000"],["2024-07-24T03:37:44.010000"],["2024-07-24T03:37:45.010000"],["2024-07-24T03:37:46.010000"],["2024-07-24T03:37:47.010000"],["2024-07-24T03:37:48.010000"],["2024-07-24T03:37:49.010000"],["2024-07-24T03:37:50.010000"],["2024-07-24T03:37:51.010000"],["2024-07-24T03:37:52.010000"],["2024-07-24T03:37:53.010000"],["2024-07-24T03:37:54.010000"],["2024-07-24T03:37:55.010000"],["2024-07-24T03:37:56.010000"],["2024-07-24T03:37:57.010000"],["2024-07-24T03:37:58.010000"],["2024-07-24T03:37:59.010000"],["2024-07-24T03:38:00.010000"],["2024-07-24T03:38:01.010000"],["2024-07-24T03:38:02.010000"],["2024-07-24T03:38:03.010000"],["2024-07-24T03:38:04.010000"],["2024-07-24T03:38:05.010000"],["2024-07-24T03:38:06.010000"],["2024-07-24T03:38:07.010000"],["2024-07-24T03:38:08.010000"],["2024-07-24T03:38:09.010000"],["2024-07-24T03:38:10.010000"],["2024-07-24T03:38:11.010000"],["2024-07-24T03:38:12.010000"],["2024-07-24T03:38:13.010000"],["2024-07-24T03:38:14.010000"],["2024-07-24T03:38:15.010000"],["2024-07-24T03:38:16.010000"],["2024-07-24T03:38:17.010000"],["2024-07-24T03:38:18.010000"],["2024-07-24T03:38:19.010000"],["2024-07-24T03:38:20.010000"],["2024-07-24T03:38:21.010000"],["2024-07-24T03:38:22.010000"],["2024-07-24T03:38:23.010000"],["2024-07-24T03:38:24.010000"],["2024-07-24T03:38:25.010000"],["2024-07-24T03:38:26.010000"],["2024-07-24T03:38:27.010000"],["2024-07-24T03:38:28.010000"],["2024-07-24T03:38:29.010000"],["2024-07-24T03:38:30.010000"],["2024-07-24T03:38:31.010000"],["2024-07-24T03:38:32.010000"],["2024-07-24T03:38:33.010000"],["2024-07-24T03:38:34.010000"],["2024-07-24T03:38:35.010000"],["2024-07-24T03:38:36.010000"],["2024-07-24T03:38:37.010000"],["2024-07-24T03:38:38.010000"],["2024-07-24T03:38:39.010000"],["2024-07-24T03:38:40.010000"],["2024-07-24T03:38:41.010000"],["2024-07-24T03:38:42.010000"],["2024-07-24T03:38:43.010000"],["2024-07-24T03:38:44.010000"],["2024-07-24T03:38:45.010000"],["2024-07-24T03:38:46.010000"],["2024-07-24T03:38:47.010000"],["2024-07-24T03:38:48.010000"],["2024-07-24T03:38:49.010000"],["2024-07-24T03:38:50.010000"],["2024-07-24T03:38:51.010000"],["2024-07-24T03:38:52.010000"],["2024-07-24T03:38:53.010000"],["2024-07-24T03:38:54.010000"],["2024-07-24T03:38:55.010000"],["2024-07-24T03:38:56.010000"],["2024-07-24T03:38:57.010000"],["2024-07-24T03:38:58.010000"],["2024-07-24T03:38:59.010000"],["2024-07-24T03:39:00.010000"],["2024-07-24T03:39:01.010000"],["2024-07-24T03:39:02.010000"],["2024-07-24T03:39:03.010000"],["2024-07-24T03:39:04.010000"],["2024-07-24T03:39:05.010000"],["2024-07-24T03:39:06.010000"],["2024-07-24T03:39:07.010000"],["2024-07-24T03:39:08.010000"],["2024-07-24T03:39:09.010000"],["2024-07-24T03:39:10.010000"],["2024-07-24T03:39:11.010000"],["2024-07-24T03:39:12.010000"],["2024-07-24T03:39:13.010000"],["2024-07-24T03:39:14.010000"],["2024-07-24T03:39:15.010000"],["2024-07-24T03:39:16.010000"],["2024-07-24T03:39:17.010000"],["2024-07-24T03:39:18.010000"],["2024-07-24T03:39:19.010000"],["2024-07-24T03:39:20.010000"],["2024-07-24T03:39:21.010000"],["2024-07-24T03:39:22.010000"],["2024-07-24T03:39:23.010000"],["2024-07-24T03:39:24.010000"],["2024-07-24T03:39:25.010000"],["2024-07-24T03:39:26.010000"],["2024-07-24T03:39:27.010000"],["2024-07-24T03:39:28.010000"],["2024-07-24T03:39:29.010000"],["2024-07-24T03:39:30.010000"],["2024-07-24T03:39:31.010000"],["2024-07-24T03:39:32.010000"],["2024-07-24T03:39:33.010000"],["2024-07-24T03:39:34.010000"],["2024-07-24T03:39:35.010000"],["2024-07-24T03:39:36.010000"],["2024-07-24T03:39:37.010000"],["2024-07-24T03:39:38.010000"],["2024-07-24T03:39:39.010000"],["2024-07-24T03:39:40.010000"],["2024-07-24T03:39:41.010000"],["2024-07-24T03:39:42.010000"],["2024-07-24T03:39:43.010000"],["2024-07-24T03:39:44.010000"],["2024-07-24T03:39:45.010000"],["2024-07-24T03:39:46.010000"],["2024-07-24T03:39:47.010000"],["2024-07-24T03:39:48.010000"],["2024-07-24T03:39:49.010000"],["2024-07-24T03:39:50.010000"],["2024-07-24T03:39:51.010000"],["2024-07-24T03:39:52.010000"],["2024-07-24T03:39:53.010000"],["2024-07-24T03:39:54.010000"],["2024-07-24T03:39:55.010000"],["2024-07-24T03:39:56.010000"],["2024-07-24T03:39:57.010000"],["2024-07-24T03:39:58.010000"],["2024-07-24T03:39:59.010000"],["2024-07-24T03:40:00.010000"],["2024-07-24T03:40:01.010000"],["2024-07-24T03:40:02.010000"],["2024-07-24T03:40:03.010000"],["2024-07-24T03:40:04.010000"],["2024-07-24T03:40:05.010000"],["2024-07-24T03:40:06.010000"],["2024-07-24T03:40:07.010000"],["2024-07-24T03:40:08.010000"],["2024-07-24T03:40:09.010000"],["2024-07-24T03:40:10.010000"],["2024-07-24T03:40:11.010000"],["2024-07-24T03:40:12.010000"],["2024-07-24T03:40:13.010000"],["2024-07-24T03:40:14.010000"],["2024-07-24T03:40:15.010000"],["2024-07-24T03:40:16.010000"],["2024-07-24T03:40:17.010000"],["2024-07-24T03:40:18.010000"],["2024-07-24T03:40:19.010000"],["2024-07-24T03:40:20.010000"],["2024-07-24T03:40:21.010000"],["2024-07-24T03:40:22.010000"],["2024-07-24T03:40:23.010000"],["2024-07-24T03:40:24.010000"],["2024-07-24T03:40:25.010000"],["2024-07-24T03:40:26.010000"],["2024-07-24T03:40:27.010000"],["2024-07-24T03:40:28.010000"],["2024-07-24T03:40:29.010000"],["2024-07-24T03:40:30.010000"],["2024-07-24T03:40:31.010000"],["2024-07-24T03:40:32.010000"],["2024-07-24T03:40:33.010000"],["2024-07-24T03:40:34.010000"],["2024-07-24T03:40:35.010000"],["2024-07-24T03:40:36.010000"],["2024-07-24T03:40:37.010000"],["2024-07-24T03:40:38.010000"],["2024-07-24T03:40:39.010000"],["2024-07-24T03:40:40.010000"],["2024-07-24T03:40:41.010000"],["2024-07-24T03:40:42.010000"],["2024-07-24T03:40:43.010000"],["2024-07-24T03:40:44.010000"],["2024-07-24T03:40:45.010000"],["2024-07-24T03:40:46.010000"],["2024-07-24T03:40:47.010000"],["2024-07-24T03:40:48.010000"],["2024-07-24T03:40:49.010000"],["2024-07-24T03:40:50.010000"],["2024-07-24T03:40:51.010000"],["2024-07-24T03:40:52.010000"],["2024-07-24T03:40:53.010000"],["2024-07-24T03:40:54.010000"],["2024-07-24T03:40:55.010000"],["2024-07-24T03:40:56.010000"],["2024-07-24T03:40:57.010000"],["2024-07-24T03:40:58.010000"],["2024-07-24T03:40:59.010000"],["2024-07-24T03:41:00.010000"],["2024-07-24T03:41:01.010000"],["2024-07-24T03:41:02.010000"],["2024-07-24T03:41:03.010000"],["2024-07-24T03:41:04.010000"],["2024-07-24T03:41:05.010000"],["2024-07-24T03:41:06.010000"],["2024-07-24T03:41:07.010000"],["2024-07-24T03:41:08.010000"],["2024-07-24T03:41:09.010000"],["2024-07-24T03:41:10.010000"],["2024-07-24T03:41:11.010000"],["2024-07-24T03:41:12.010000"],["2024-07-24T03:41:13.010000"],["2024-07-24T03:41:14.010000"],["2024-07-24T03:41:15.010000"],["2024-07-24T03:41:16.010000"],["2024-07-24T03:41:17.010000"],["2024-07-24T03:41:18.010000"],["2024-07-24T03:41:19.010000"],["2024-07-24T03:41:20.010000"],["2024-07-24T03:41:21.010000"],["2024-07-24T03:41:22.010000"],["2024-07-24T03:41:23.010000"],["2024-07-24T03:41:24.010000"],["2024-07-24T03:41:25.010000"],["2024-07-24T03:41:26.010000"],["2024-07-24T03:41:27.010000"],["2024-07-24T03:41:28.010000"],["2024-07-24T03:41:29.010000"],["2024-07-24T03:41:30.010000"],["2024-07-24T03:41:31.010000"],["2024-07-24T03:41:32.010000"],["2024-07-24T03:41:33.010000"],["2024-07-24T03:41:34.010000"],["2024-07-24T03:41:35.010000"],["2024-07-24T03:41:36.010000"],["2024-07-24T03:41:37.010000"],["2024-07-24T03:41:38.010000"],["2024-07-24T03:41:39.010000"],["2024-07-24T03:41:40.010000"],["2024-07-24T03:41:41.010000"],["2024-07-24T03:41:42.010000"],["2024-07-24T03:41:43.010000"],["2024-07-24T03:41:44.010000"],["2024-07-24T03:41:45.010000"],["2024-07-24T03:41:46.010000"],["2024-07-24T03:41:47.010000"],["2024-07-24T03:41:48.010000"],["2024-07-24T03:41:49.010000"],["2024-07-24T03:41:50.010000"],["2024-07-24T03:41:51.010000"],["2024-07-24T03:41:52.010000"],["2024-07-24T03:41:53.010000"],["2024-07-24T03:41:54.010000"],["2024-07-24T03:41:55.010000"],["2024-07-24T03:41:56.010000"],["2024-07-24T03:41:57.010000"],["2024-07-24T03:41:58.010000"],["2024-07-24T03:41:59.010000"],["2024-07-24T03:42:00.010000"],["2024-07-24T03:42:01.010000"],["2024-07-24T03:42:02.010000"],["2024-07-24T03:42:03.010000"],["2024-07-24T03:42:04.010000"],["2024-07-24T03:42:05.010000"],["2024-07-24T03:42:06.010000"],["2024-07-24T03:42:07.010000"],["2024-07-24T03:42:08.010000"],["2024-07-24T03:42:09.010000"],["2024-07-24T03:42:10.010000"],["2024-07-24T03:42:11.010000"],["2024-07-24T03:42:12.010000"],["2024-07-24T03:42:13.010000"],["2024-07-24T03:42:14.010000"],["2024-07-24T03:42:15.010000"],["2024-07-24T03:42:16.010000"],["2024-07-24T03:42:17.010000"],["2024-07-24T03:42:18.010000"],["2024-07-24T03:42:19.010000"],["2024-07-24T03:42:20.010000"],["2024-07-24T03:42:21.010000"],["2024-07-24T03:42:22.010000"],["2024-07-24T03:42:23.010000"],["2024-07-24T03:42:24.010000"],["2024-07-24T03:42:25.010000"],["2024-07-24T03:42:26.010000"],["2024-07-24T03:42:27.010000"],["2024-07-24T03:42:28.010000"],["2024-07-24T03:42:29.010000"],["2024-07-24T03:42:30.010000"],["2024-07-24T03:42:31.010000"],["2024-07-24T03:42:32.010000"],["2024-07-24T03:42:33.010000"],["2024-07-24T03:42:34.010000"],["2024-07-24T03:42:35.010000"],["2024-07-24T03:42:36.010000"],["2024-07-24T03:42:37.010000"],["2024-07-24T03:42:38.010000"],["2024-07-24T03:42:39.010000"],["2024-07-24T03:42:40.010000"],["2024-07-24T03:42:41.010000"],["2024-07-24T03:42:42.010000"],["2024-07-24T03:42:43.010000"],["2024-07-24T03:42:44.010000"],["2024-07-24T03:42:45.010000"],["2024-07-24T03:42:46.010000"],["2024-07-24T03:42:47.010000"],["2024-07-24T03:42:48.010000"],["2024-07-24T03:42:49.010000"],["2024-07-24T03:42:50.010000"],["2024-07-24T03:42:51.010000"],["2024-07-24T03:42:52.010000"],["2024-07-24T03:42:53.010000"],["2024-07-24T03:42:54.010000"],["2024-07-24T03:42:55.010000"],["2024-07-24T03:42:56.010000"],["2024-07-24T03:42:57.010000"],["2024-07-24T03:42:58.010000"],["2024-07-24T03:42:59.010000"],["2024-07-24T03:43:00.010000"],["2024-07-24T03:43:01.010000"],["2024-07-24T03:43:02.010000"],["2024-07-24T03:43:03.010000"],["2024-07-24T03:43:04.010000"],["2024-07-24T03:43:05.010000"],["2024-07-24T03:43:06.010000"],["2024-07-24T03:43:07.010000"],["2024-07-24T03:43:08.010000"],["2024-07-24T03:43:09.010000"],["2024-07-24T03:43:10.010000"],["2024-07-24T03:43:11.010000"],["2024-07-24T03:43:12.010000"],["2024-07-24T03:43:13.010000"],["2024-07-24T03:43:14.010000"],["2024-07-24T03:43:15.010000"],["2024-07-24T03:43:16.010000"],["2024-07-24T03:43:17.010000"],["2024-07-24T03:43:18.010000"],["2024-07-24T03:43:19.010000"],["2024-07-24T03:43:20.010000"],["2024-07-24T03:43:21.010000"],["2024-07-24T03:43:22.010000"],["2024-07-24T03:43:23.010000"],["2024-07-24T03:43:24.010000"],["2024-07-24T03:43:25.010000"],["2024-07-24T03:43:26.010000"],["2024-07-24T03:43:27.010000"],["2024-07-24T03:43:28.010000"],["2024-07-24T03:43:29.010000"],["2024-07-24T03:43:30.010000"],["2024-07-24T03:43:31.010000"],["2024-07-24T03:43:32.010000"],["2024-07-24T03:43:33.010000"],["2024-07-24T03:43:34.010000"],["2024-07-24T03:43:35.010000"],["2024-07-24T03:43:36.010000"],["2024-07-24T03:43:37.010000"],["2024-07-24T03:43:38.010000"],["2024-07-24T03:43:39.010000"],["2024-07-24T03:43:40.010000"],["2024-07-24T03:43:41.010000"],["2024-07-24T03:43:42.010000"],["2024-07-24T03:43:43.010000"],["2024-07-24T03:43:44.010000"],["2024-07-24T03:43:45.010000"],["2024-07-24T03:43:46.010000"],["2024-07-24T03:43:47.010000"],["2024-07-24T03:43:48.010000"],["2024-07-24T03:43:49.010000"],["2024-07-24T03:43:50.010000"],["2024-07-24T03:43:51.010000"],["2024-07-24T03:43:52.010000"],["2024-07-24T03:43:53.010000"],["2024-07-24T03:43:54.010000"],["2024-07-24T03:43:55.010000"],["2024-07-24T03:43:56.010000"],["2024-07-24T03:43:57.010000"],["2024-07-24T03:43:58.010000"],["2024-07-24T03:43:59.010000"],["2024-07-24T03:44:00.010000"],["2024-07-24T03:44:01.010000"],["2024-07-24T03:44:02.010000"],["2024-07-24T03:44:03.010000"],["2024-07-24T03:44:04.010000"],["2024-07-24T03:44:05.010000"],["2024-07-24T03:44:06.010000"],["2024-07-24T03:44:07.010000"],["2024-07-24T03:44:08.010000"],["2024-07-24T03:44:09.010000"],["2024-07-24T03:44:10.010000"],["2024-07-24T03:44:11.010000"],["2024-07-24T03:44:12.010000"],["2024-07-24T03:44:13.010000"],["2024-07-24T03:44:14.010000"],["2024-07-24T03:44:15.010000"],["2024-07-24T03:44:16.010000"],["2024-07-24T03:44:17.010000"],["2024-07-24T03:44:18.010000"],["2024-07-24T03:44:19.010000"],["2024-07-24T03:44:20.010000"],["2024-07-24T03:44:21.010000"],["2024-07-24T03:44:22.010000"],["2024-07-24T03:44:23.010000"],["2024-07-24T03:44:24.010000"],["2024-07-24T03:44:25.010000"],["2024-07-24T03:44:26.010000"],["2024-07-24T03:44:27.010000"],["2024-07-24T03:44:28.010000"],["2024-07-24T03:44:29.010000"],["2024-07-24T03:44:30.010000"],["2024-07-24T03:44:31.010000"],["2024-07-24T03:44:32.010000"],["2024-07-24T03:44:33.010000"],["2024-07-24T03:44:34.010000"],["2024-07-24T03:44:35.010000"],["2024-07-24T03:44:36.010000"],["2024-07-24T03:44:37.010000"],["2024-07-24T03:44:38.010000"],["2024-07-24T03:44:39.010000"],["2024-07-24T03:44:40.010000"],["2024-07-24T03:44:41.010000"],["2024-07-24T03:44:42.010000"],["2024-07-24T03:44:43.010000"],["2024-07-24T03:44:44.010000"],["2024-07-24T03:44:45.010000"],["2024-07-24T03:44:46.010000"],["2024-07-24T03:44:47.010000"],["2024-07-24T03:44:48.010000"],["2024-07-24T03:44:49.010000"],["2024-07-24T03:44:50.010000"],["2024-07-24T03:44:51.010000"],["2024-07-24T03:44:52.010000"],["2024-07-24T03:44:53.010000"],["2024-07-24T03:44:54.010000"],["2024-07-24T03:44:55.010000"],["2024-07-24T03:44:56.010000"],["2024-07-24T03:44:57.010000"],["2024-07-24T03:44:58.010000"],["2024-07-24T03:44:59.010000"],["2024-07-24T03:45:00.010000"],["2024-07-24T03:45:01.010000"],["2024-07-24T03:45:02.010000"],["2024-07-24T03:45:03.010000"],["2024-07-24T03:45:04.010000"],["2024-07-24T03:45:05.010000"],["2024-07-24T03:45:06.010000"],["2024-07-24T03:45:07.010000"],["2024-07-24T03:45:08.010000"],["2024-07-24T03:45:09.010000"],["2024-07-24T03:45:10.010000"],["2024-07-24T03:45:11.010000"],["2024-07-24T03:45:12.010000"],["2024-07-24T03:45:13.010000"],["2024-07-24T03:45:14.010000"],["2024-07-24T03:45:15.010000"],["2024-07-24T03:45:16.010000"],["2024-07-24T03:45:17.010000"],["2024-07-24T03:45:18.010000"],["2024-07-24T03:45:19.010000"],["2024-07-24T03:45:20.010000"],["2024-07-24T03:45:21.010000"],["2024-07-24T03:45:22.010000"],["2024-07-24T03:45:23.010000"],["2024-07-24T03:45:24.010000"],["2024-07-24T03:45:25.010000"],["2024-07-24T03:45:26.010000"],["2024-07-24T03:45:27.010000"],["2024-07-24T03:45:28.010000"],["2024-07-24T03:45:29.010000"],["2024-07-24T03:45:30.010000"],["2024-07-24T03:45:31.010000"],["2024-07-24T03:45:32.010000"],["2024-07-24T03:45:33.010000"],["2024-07-24T03:45:34.010000"],["2024-07-24T03:45:35.010000"],["2024-07-24T03:45:36.010000"],["2024-07-24T03:45:37.010000"],["2024-07-24T03:45:38.010000"],["2024-07-24T03:45:39.010000"],["2024-07-24T03:45:40.010000"],["2024-07-24T03:45:41.010000"],["2024-07-24T03:45:42.010000"],["2024-07-24T03:45:43.010000"],["2024-07-24T03:45:44.010000"],["2024-07-24T03:45:45.010000"],["2024-07-24T03:45:46.010000"],["2024-07-24T03:45:47.010000"],["2024-07-24T03:45:48.010000"],["2024-07-24T03:45:49.010000"],["2024-07-24T03:45:50.010000"],["2024-07-24T03:45:51.010000"],["2024-07-24T03:45:52.010000"],["2024-07-24T03:45:53.010000"],["2024-07-24T03:45:54.010000"],["2024-07-24T03:45:55.010000"],["2024-07-24T03:45:56.010000"],["2024-07-24T03:45:57.010000"],["2024-07-24T03:45:58.010000"],["2024-07-24T03:45:59.010000"],["2024-07-24T03:46:00.010000"],["2024-07-24T03:46:01.010000"],["2024-07-24T03:46:02.010000"],["2024-07-24T03:46:03.010000"],["2024-07-24T03:46:04.010000"],["2024-07-24T03:46:05.010000"],["2024-07-24T03:46:06.010000"],["2024-07-24T03:46:07.010000"],["2024-07-24T03:46:08.010000"],["2024-07-24T03:46:09.010000"],["2024-07-24T03:46:10.010000"],["2024-07-24T03:46:11.010000"],["2024-07-24T03:46:12.010000"],["2024-07-24T03:46:13.010000"],["2024-07-24T03:46:14.010000"],["2024-07-24T03:46:15.010000"],["2024-07-24T03:46:16.010000"],["2024-07-24T03:46:17.010000"],["2024-07-24T03:46:18.010000"],["2024-07-24T03:46:19.010000"],["2024-07-24T03:46:20.010000"],["2024-07-24T03:46:21.010000"],["2024-07-24T03:46:22.010000"],["2024-07-24T03:46:23.010000"],["2024-07-24T03:46:24.010000"],["2024-07-24T03:46:25.010000"],["2024-07-24T03:46:26.010000"],["2024-07-24T03:46:27.010000"],["2024-07-24T03:46:28.010000"],["2024-07-24T03:46:29.010000"],["2024-07-24T03:46:30.010000"],["2024-07-24T03:46:31.010000"],["2024-07-24T03:46:32.010000"],["2024-07-24T03:46:33.010000"],["2024-07-24T03:46:34.010000"],["2024-07-24T03:46:35.010000"],["2024-07-24T03:46:36.010000"],["2024-07-24T03:46:37.010000"],["2024-07-24T03:46:38.010000"],["2024-07-24T03:46:39.010000"],["2024-07-24T03:46:40.010000"],["2024-07-24T03:46:41.010000"],["2024-07-24T03:46:42.010000"],["2024-07-24T03:46:43.010000"],["2024-07-24T03:46:44.010000"],["2024-07-24T03:46:45.010000"],["2024-07-24T03:46:46.010000"],["2024-07-24T03:46:47.010000"],["2024-07-24T03:46:48.010000"],["2024-07-24T03:46:49.010000"],["2024-07-24T03:46:50.010000"],["2024-07-24T03:46:51.010000"],["2024-07-24T03:46:52.010000"],["2024-07-24T03:46:53.010000"],["2024-07-24T03:46:54.010000"],["2024-07-24T03:46:55.010000"],["2024-07-24T03:46:56.010000"],["2024-07-24T03:46:57.010000"],["2024-07-24T03:46:58.010000"],["2024-07-24T03:46:59.010000"],["2024-07-24T03:47:00.010000"],["2024-07-24T03:47:01.010000"],["2024-07-24T03:47:02.010000"],["2024-07-24T03:47:03.010000"],["2024-07-24T03:47:04.010000"],["2024-07-24T03:47:05.010000"],["2024-07-24T03:47:06.010000"],["2024-07-24T03:47:07.010000"],["2024-07-24T03:47:08.010000"],["2024-07-24T03:47:09.010000"],["2024-07-24T03:47:10.010000"],["2024-07-24T03:47:11.010000"],["2024-07-24T03:47:12.010000"],["2024-07-24T03:47:13.010000"],["2024-07-24T03:47:14.010000"],["2024-07-24T03:47:15.010000"],["2024-07-24T03:47:16.010000"],["2024-07-24T03:47:17.010000"],["2024-07-24T03:47:18.010000"],["2024-07-24T03:47:19.010000"],["2024-07-24T03:47:20.010000"],["2024-07-24T03:47:21.010000"],["2024-07-24T03:47:22.010000"],["2024-07-24T03:47:23.010000"],["2024-07-24T03:47:24.010000"],["2024-07-24T03:47:25.010000"],["2024-07-24T03:47:26.010000"],["2024-07-24T03:47:27.010000"],["2024-07-24T03:47:28.010000"],["2024-07-24T03:47:29.010000"],["2024-07-24T03:47:30.010000"],["2024-07-24T03:47:31.010000"],["2024-07-24T03:47:32.010000"],["2024-07-24T03:47:33.010000"],["2024-07-24T03:47:34.010000"],["2024-07-24T03:47:35.010000"],["2024-07-24T03:47:36.010000"],["2024-07-24T03:47:37.010000"],["2024-07-24T03:47:38.010000"],["2024-07-24T03:47:39.010000"],["2024-07-24T03:47:40.010000"],["2024-07-24T03:47:41.010000"],["2024-07-24T03:47:42.010000"],["2024-07-24T03:47:43.010000"],["2024-07-24T03:47:44.010000"],["2024-07-24T03:47:45.010000"],["2024-07-24T03:47:46.010000"],["2024-07-24T03:47:47.010000"],["2024-07-24T03:47:48.010000"],["2024-07-24T03:47:49.010000"],["2024-07-24T03:47:50.010000"],["2024-07-24T03:47:51.010000"],["2024-07-24T03:47:52.010000"],["2024-07-24T03:47:53.010000"],["2024-07-24T03:47:54.010000"],["2024-07-24T03:47:55.010000"],["2024-07-24T03:47:56.010000"],["2024-07-24T03:47:57.010000"],["2024-07-24T03:47:58.010000"],["2024-07-24T03:47:59.010000"],["2024-07-24T03:48:00.010000"],["2024-07-24T03:48:01.010000"],["2024-07-24T03:48:02.010000"],["2024-07-24T03:48:03.010000"],["2024-07-24T03:48:04.010000"],["2024-07-24T03:48:05.010000"],["2024-07-24T03:48:06.010000"],["2024-07-24T03:48:07.010000"],["2024-07-24T03:48:08.010000"],["2024-07-24T03:48:09.010000"],["2024-07-24T03:48:10.010000"],["2024-07-24T03:48:11.010000"],["2024-07-24T03:48:12.010000"],["2024-07-24T03:48:13.010000"],["2024-07-24T03:48:14.010000"],["2024-07-24T03:48:15.010000"],["2024-07-24T03:48:16.010000"],["2024-07-24T03:48:17.010000"],["2024-07-24T03:48:18.010000"],["2024-07-24T03:48:19.010000"],["2024-07-24T03:48:20.010000"],["2024-07-24T03:48:21.010000"],["2024-07-24T03:48:22.010000"],["2024-07-24T03:48:23.010000"],["2024-07-24T03:48:24.010000"],["2024-07-24T03:48:25.010000"],["2024-07-24T03:48:26.010000"],["2024-07-24T03:48:27.010000"],["2024-07-24T03:48:28.010000"],["2024-07-24T03:48:29.010000"],["2024-07-24T03:48:30.010000"],["2024-07-24T03:48:31.010000"],["2024-07-24T03:48:32.010000"],["2024-07-24T03:48:33.010000"],["2024-07-24T03:48:34.010000"],["2024-07-24T03:48:35.010000"],["2024-07-24T03:48:36.010000"],["2024-07-24T03:48:37.010000"],["2024-07-24T03:48:38.010000"],["2024-07-24T03:48:39.010000"],["2024-07-24T03:48:40.010000"],["2024-07-24T03:48:41.010000"],["2024-07-24T03:48:42.010000"],["2024-07-24T03:48:43.010000"],["2024-07-24T03:48:44.010000"],["2024-07-24T03:48:45.010000"],["2024-07-24T03:48:46.010000"],["2024-07-24T03:48:47.010000"],["2024-07-24T03:48:48.010000"],["2024-07-24T03:48:49.010000"],["2024-07-24T03:48:50.010000"],["2024-07-24T03:48:51.010000"],["2024-07-24T03:48:52.010000"],["2024-07-24T03:48:53.010000"],["2024-07-24T03:48:54.010000"],["2024-07-24T03:48:55.010000"],["2024-07-24T03:48:56.010000"],["2024-07-24T03:48:57.010000"],["2024-07-24T03:48:58.010000"],["2024-07-24T03:48:59.010000"],["2024-07-24T03:49:00.010000"],["2024-07-24T03:49:01.010000"],["2024-07-24T03:49:02.010000"],["2024-07-24T03:49:03.010000"],["2024-07-24T03:49:04.010000"],["2024-07-24T03:49:05.010000"],["2024-07-24T03:49:06.010000"],["2024-07-24T03:49:07.010000"],["2024-07-24T03:49:08.010000"],["2024-07-24T03:49:09.010000"],["2024-07-24T03:49:10.010000"],["2024-07-24T03:49:11.010000"],["2024-07-24T03:49:12.010000"],["2024-07-24T03:49:13.010000"],["2024-07-24T03:49:14.010000"],["2024-07-24T03:49:15.010000"],["2024-07-24T03:49:16.010000"],["2024-07-24T03:49:17.010000"],["2024-07-24T03:49:18.010000"],["2024-07-24T03:49:19.010000"],["2024-07-24T03:49:20.010000"],["2024-07-24T03:49:21.010000"],["2024-07-24T03:49:22.010000"],["2024-07-24T03:49:23.010000"],["2024-07-24T03:49:24.010000"],["2024-07-24T03:49:25.010000"],["2024-07-24T03:49:26.010000"],["2024-07-24T03:49:27.010000"],["2024-07-24T03:49:28.010000"],["2024-07-24T03:49:29.010000"],["2024-07-24T03:49:30.010000"],["2024-07-24T03:49:31.010000"],["2024-07-24T03:49:32.010000"],["2024-07-24T03:49:33.010000"],["2024-07-24T03:49:34.010000"],["2024-07-24T03:49:35.010000"],["2024-07-24T03:49:36.010000"],["2024-07-24T03:49:37.010000"],["2024-07-24T03:49:38.010000"],["2024-07-24T03:49:39.010000"],["2024-07-24T03:49:40.010000"],["2024-07-24T03:49:41.010000"],["2024-07-24T03:49:42.010000"],["2024-07-24T03:49:43.010000"],["2024-07-24T03:49:44.010000"],["2024-07-24T03:49:45.010000"],["2024-07-24T03:49:46.010000"],["2024-07-24T03:49:47.010000"],["2024-07-24T03:49:48.010000"],["2024-07-24T03:49:49.010000"],["2024-07-24T03:49:50.010000"],["2024-07-24T03:49:51.010000"],["2024-07-24T03:49:52.010000"],["2024-07-24T03:49:53.010000"],["2024-07-24T03:49:54.010000"],["2024-07-24T03:49:55.010000"],["2024-07-24T03:49:56.010000"],["2024-07-24T03:49:57.010000"],["2024-07-24T03:49:58.010000"],["2024-07-24T03:49:59.010000"],["2024-07-24T03:50:00.010000"],["2024-07-24T03:50:01.010000"],["2024-07-24T03:50:02.010000"],["2024-07-24T03:50:03.010000"],["2024-07-24T03:50:04.010000"],["2024-07-24T03:50:05.010000"],["2024-07-24T03:50:06.010000"],["2024-07-24T03:50:07.010000"],["2024-07-24T03:50:08.010000"],["2024-07-24T03:50:09.010000"],["2024-07-24T03:50:10.010000"],["2024-07-24T03:50:11.010000"],["2024-07-24T03:50:12.010000"],["2024-07-24T03:50:13.010000"],["2024-07-24T03:50:14.010000"],["2024-07-24T03:50:15.010000"],["2024-07-24T03:50:16.010000"],["2024-07-24T03:50:17.010000"],["2024-07-24T03:50:18.010000"],["2024-07-24T03:50:19.010000"],["2024-07-24T03:50:20.010000"],["2024-07-24T03:50:21.010000"],["2024-07-24T03:50:22.010000"],["2024-07-24T03:50:23.010000"],["2024-07-24T03:50:24.010000"],["2024-07-24T03:50:25.010000"],["2024-07-24T03:50:26.010000"],["2024-07-24T03:50:27.010000"],["2024-07-24T03:50:28.010000"],["2024-07-24T03:50:29.010000"],["2024-07-24T03:50:30.010000"],["2024-07-24T03:50:31.010000"],["2024-07-24T03:50:32.010000"],["2024-07-24T03:50:33.010000"],["2024-07-24T03:50:34.010000"],["2024-07-24T03:50:35.010000"],["2024-07-24T03:50:36.010000"],["2024-07-24T03:50:37.010000"],["2024-07-24T03:50:38.010000"],["2024-07-24T03:50:39.010000"],["2024-07-24T03:50:40.010000"],["2024-07-24T03:50:41.010000"],["2024-07-24T03:50:42.010000"],["2024-07-24T03:50:43.010000"],["2024-07-24T03:50:44.010000"],["2024-07-24T03:50:45.010000"],["2024-07-24T03:50:46.010000"],["2024-07-24T03:50:47.010000"],["2024-07-24T03:50:48.010000"],["2024-07-24T03:50:49.010000"],["2024-07-24T03:50:50.010000"],["2024-07-24T03:50:51.010000"],["2024-07-24T03:50:52.010000"],["2024-07-24T03:50:53.010000"],["2024-07-24T03:50:54.010000"],["2024-07-24T03:50:55.010000"],["2024-07-24T03:50:56.010000"],["2024-07-24T03:50:57.010000"],["2024-07-24T03:50:58.010000"],["2024-07-24T03:50:59.010000"],["2024-07-24T03:51:00.010000"],["2024-07-24T03:51:01.010000"],["2024-07-24T03:51:02.010000"],["2024-07-24T03:51:03.010000"],["2024-07-24T03:51:04.010000"],["2024-07-24T03:51:05.010000"],["2024-07-24T03:51:06.010000"],["2024-07-24T03:51:07.010000"],["2024-07-24T03:51:08.010000"],["2024-07-24T03:51:09.010000"],["2024-07-24T03:51:10.010000"],["2024-07-24T03:51:11.010000"],["2024-07-24T03:51:12.010000"],["2024-07-24T03:51:13.010000"],["2024-07-24T03:51:14.010000"],["2024-07-24T03:51:15.010000"],["2024-07-24T03:51:16.010000"],["2024-07-24T03:51:17.010000"],["2024-07-24T03:51:18.010000"],["2024-07-24T03:51:19.010000"],["2024-07-24T03:51:20.010000"],["2024-07-24T03:51:21.010000"],["2024-07-24T03:51:22.010000"],["2024-07-24T03:51:23.010000"],["2024-07-24T03:51:24.010000"],["2024-07-24T03:51:25.010000"],["2024-07-24T03:51:26.010000"],["2024-07-24T03:51:27.010000"],["2024-07-24T03:51:28.010000"],["2024-07-24T03:51:29.010000"],["2024-07-24T03:51:30.010000"],["2024-07-24T03:51:31.010000"],["2024-07-24T03:51:32.010000"],["2024-07-24T03:51:33.010000"],["2024-07-24T03:51:34.010000"],["2024-07-24T03:51:35.010000"],["2024-07-24T03:51:36.010000"],["2024-07-24T03:51:37.010000"],["2024-07-24T03:51:38.010000"],["2024-07-24T03:51:39.010000"],["2024-07-24T03:51:40.010000"],["2024-07-24T03:51:41.010000"],["2024-07-24T03:51:42.010000"],["2024-07-24T03:51:43.010000"],["2024-07-24T03:51:44.010000"],["2024-07-24T03:51:45.010000"],["2024-07-24T03:51:46.010000"],["2024-07-24T03:51:47.010000"],["2024-07-24T03:51:48.010000"],["2024-07-24T03:51:49.010000"],["2024-07-24T03:51:50.010000"],["2024-07-24T03:51:51.010000"],["2024-07-24T03:51:52.010000"],["2024-07-24T03:51:53.010000"],["2024-07-24T03:51:54.010000"],["2024-07-24T03:51:55.010000"],["2024-07-24T03:51:56.010000"],["2024-07-24T03:51:57.010000"],["2024-07-24T03:51:58.010000"],["2024-07-24T03:51:59.010000"],["2024-07-24T03:52:00.010000"],["2024-07-24T03:52:01.010000"],["2024-07-24T03:52:02.010000"],["2024-07-24T03:52:03.010000"],["2024-07-24T03:52:04.010000"],["2024-07-24T03:52:05.010000"],["2024-07-24T03:52:06.010000"],["2024-07-24T03:52:07.010000"],["2024-07-24T03:52:08.010000"],["2024-07-24T03:52:09.010000"],["2024-07-24T03:52:10.010000"],["2024-07-24T03:52:11.010000"],["2024-07-24T03:52:12.010000"],["2024-07-24T03:52:13.010000"],["2024-07-24T03:52:14.010000"],["2024-07-24T03:52:15.010000"],["2024-07-24T03:52:16.010000"],["2024-07-24T03:52:17.010000"],["2024-07-24T03:52:18.010000"],["2024-07-24T03:52:19.010000"],["2024-07-24T03:52:20.010000"],["2024-07-24T03:52:21.010000"],["2024-07-24T03:52:22.010000"],["2024-07-24T03:52:23.010000"],["2024-07-24T03:52:24.010000"],["2024-07-24T03:52:25.010000"],["2024-07-24T03:52:26.010000"],["2024-07-24T03:52:27.010000"],["2024-07-24T03:52:28.010000"],["2024-07-24T03:52:29.010000"],["2024-07-24T03:52:30.010000"],["2024-07-24T03:52:31.010000"],["2024-07-24T03:52:32.010000"],["2024-07-24T03:52:33.010000"],["2024-07-24T03:52:34.010000"],["2024-07-24T03:52:35.010000"],["2024-07-24T03:52:36.010000"],["2024-07-24T03:52:37.010000"],["2024-07-24T03:52:38.010000"],["2024-07-24T03:52:39.010000"],["2024-07-24T03:52:40.010000"],["2024-07-24T03:52:41.010000"],["2024-07-24T03:52:42.010000"],["2024-07-24T03:52:43.010000"],["2024-07-24T03:52:44.010000"],["2024-07-24T03:52:45.010000"],["2024-07-24T03:52:46.010000"],["2024-07-24T03:52:47.010000"],["2024-07-24T03:52:48.010000"],["2024-07-24T03:52:49.010000"],["2024-07-24T03:52:50.010000"],["2024-07-24T03:52:51.010000"],["2024-07-24T03:52:52.010000"],["2024-07-24T03:52:53.010000"],["2024-07-24T03:52:54.010000"],["2024-07-24T03:52:55.010000"],["2024-07-24T03:52:56.010000"],["2024-07-24T03:52:57.010000"],["2024-07-24T03:52:58.010000"],["2024-07-24T03:52:59.010000"],["2024-07-24T03:53:00.010000"],["2024-07-24T03:53:01.010000"],["2024-07-24T03:53:02.010000"],["2024-07-24T03:53:03.010000"],["2024-07-24T03:53:04.010000"],["2024-07-24T03:53:05.010000"],["2024-07-24T03:53:06.010000"],["2024-07-24T03:53:07.010000"],["2024-07-24T03:53:08.010000"],["2024-07-24T03:53:09.010000"],["2024-07-24T03:53:10.010000"],["2024-07-24T03:53:11.010000"],["2024-07-24T03:53:12.010000"],["2024-07-24T03:53:13.010000"],["2024-07-24T03:53:14.010000"],["2024-07-24T03:53:15.010000"],["2024-07-24T03:53:16.010000"],["2024-07-24T03:53:17.010000"],["2024-07-24T03:53:18.010000"],["2024-07-24T03:53:19.010000"],["2024-07-24T03:53:20.010000"],["2024-07-24T03:53:21.010000"],["2024-07-24T03:53:22.010000"],["2024-07-24T03:53:23.010000"],["2024-07-24T03:53:24.010000"],["2024-07-24T03:53:25.010000"],["2024-07-24T03:53:26.010000"],["2024-07-24T03:53:27.010000"],["2024-07-24T03:53:28.010000"],["2024-07-24T03:53:29.010000"],["2024-07-24T03:53:30.010000"],["2024-07-24T03:53:31.010000"],["2024-07-24T03:53:32.010000"],["2024-07-24T03:53:33.010000"],["2024-07-24T03:53:34.010000"],["2024-07-24T03:53:35.010000"],["2024-07-24T03:53:36.010000"],["2024-07-24T03:53:37.010000"],["2024-07-24T03:53:38.010000"],["2024-07-24T03:53:39.010000"],["2024-07-24T03:53:40.010000"],["2024-07-24T03:53:41.010000"],["2024-07-24T03:53:42.010000"],["2024-07-24T03:53:43.010000"],["2024-07-24T03:53:44.010000"],["2024-07-24T03:53:45.010000"],["2024-07-24T03:53:46.010000"],["2024-07-24T03:53:47.010000"],["2024-07-24T03:53:48.010000"],["2024-07-24T03:53:49.010000"],["2024-07-24T03:53:50.010000"],["2024-07-24T03:53:51.010000"],["2024-07-24T03:53:52.010000"],["2024-07-24T03:53:53.010000"],["2024-07-24T03:53:54.010000"],["2024-07-24T03:53:55.010000"],["2024-07-24T03:53:56.010000"],["2024-07-24T03:53:57.010000"],["2024-07-24T03:53:58.010000"],["2024-07-24T03:53:59.010000"],["2024-07-24T03:54:00.010000"],["2024-07-24T03:54:01.010000"],["2024-07-24T03:54:02.010000"],["2024-07-24T03:54:03.010000"],["2024-07-24T03:54:04.010000"],["2024-07-24T03:54:05.010000"],["2024-07-24T03:54:06.010000"],["2024-07-24T03:54:07.010000"],["2024-07-24T03:54:08.010000"],["2024-07-24T03:54:09.010000"],["2024-07-24T03:54:10.010000"],["2024-07-24T03:54:11.010000"],["2024-07-24T03:54:12.010000"],["2024-07-24T03:54:13.010000"],["2024-07-24T03:54:14.010000"],["2024-07-24T03:54:15.010000"],["2024-07-24T03:54:16.010000"],["2024-07-24T03:54:17.010000"],["2024-07-24T03:54:18.010000"],["2024-07-24T03:54:19.010000"],["2024-07-24T03:54:20.010000"],["2024-07-24T03:54:21.010000"],["2024-07-24T03:54:22.010000"],["2024-07-24T03:54:23.010000"],["2024-07-24T03:54:24.010000"],["2024-07-24T03:54:25.010000"],["2024-07-24T03:54:26.010000"],["2024-07-24T03:54:27.010000"],["2024-07-24T03:54:28.010000"],["2024-07-24T03:54:29.010000"],["2024-07-24T03:54:30.010000"],["2024-07-24T03:54:31.010000"],["2024-07-24T03:54:32.010000"],["2024-07-24T03:54:33.010000"],["2024-07-24T03:54:34.010000"],["2024-07-24T03:54:35.010000"],["2024-07-24T03:54:36.010000"],["2024-07-24T03:54:37.010000"],["2024-07-24T03:54:38.010000"],["2024-07-24T03:54:39.010000"],["2024-07-24T03:54:40.010000"],["2024-07-24T03:54:41.010000"],["2024-07-24T03:54:42.010000"],["2024-07-24T03:54:43.010000"],["2024-07-24T03:54:44.010000"],["2024-07-24T03:54:45.010000"],["2024-07-24T03:54:46.010000"],["2024-07-24T03:54:47.010000"],["2024-07-24T03:54:48.010000"],["2024-07-24T03:54:49.010000"],["2024-07-24T03:54:50.010000"],["2024-07-24T03:54:51.010000"],["2024-07-24T03:54:52.010000"],["2024-07-24T03:54:53.010000"],["2024-07-24T03:54:54.010000"],["2024-07-24T03:54:55.010000"],["2024-07-24T03:54:56.010000"],["2024-07-24T03:54:57.010000"],["2024-07-24T03:54:58.010000"],["2024-07-24T03:54:59.010000"],["2024-07-24T03:55:00.010000"],["2024-07-24T03:55:01.010000"],["2024-07-24T03:55:02.010000"],["2024-07-24T03:55:03.010000"],["2024-07-24T03:55:04.010000"],["2024-07-24T03:55:05.010000"],["2024-07-24T03:55:06.010000"],["2024-07-24T03:55:07.010000"],["2024-07-24T03:55:08.010000"],["2024-07-24T03:55:09.010000"],["2024-07-24T03:55:10.010000"],["2024-07-24T03:55:11.010000"],["2024-07-24T03:55:12.010000"],["2024-07-24T03:55:13.010000"],["2024-07-24T03:55:14.010000"],["2024-07-24T03:55:15.010000"],["2024-07-24T03:55:16.010000"],["2024-07-24T03:55:17.010000"],["2024-07-24T03:55:18.010000"],["2024-07-24T03:55:19.010000"],["2024-07-24T03:55:20.010000"],["2024-07-24T03:55:21.010000"],["2024-07-24T03:55:22.010000"],["2024-07-24T03:55:23.010000"],["2024-07-24T03:55:24.010000"],["2024-07-24T03:55:25.010000"],["2024-07-24T03:55:26.010000"],["2024-07-24T03:55:27.010000"],["2024-07-24T03:55:28.010000"],["2024-07-24T03:55:29.010000"],["2024-07-24T03:55:30.010000"],["2024-07-24T03:55:31.010000"],["2024-07-24T03:55:32.010000"],["2024-07-24T03:55:33.010000"],["2024-07-24T03:55:34.010000"],["2024-07-24T03:55:35.010000"],["2024-07-24T03:55:36.010000"],["2024-07-24T03:55:37.010000"],["2024-07-24T03:55:38.010000"],["2024-07-24T03:55:39.010000"],["2024-07-24T03:55:40.010000"],["2024-07-24T03:55:41.010000"],["2024-07-24T03:55:42.010000"],["2024-07-24T03:55:43.010000"],["2024-07-24T03:55:44.010000"],["2024-07-24T03:55:45.010000"],["2024-07-24T03:55:46.010000"],["2024-07-24T03:55:47.010000"],["2024-07-24T03:55:48.010000"],["2024-07-24T03:55:49.010000"],["2024-07-24T03:55:50.010000"],["2024-07-24T03:55:51.010000"],["2024-07-24T03:55:52.010000"],["2024-07-24T03:55:53.010000"],["2024-07-24T03:55:54.010000"],["2024-07-24T03:55:55.010000"],["2024-07-24T03:55:56.010000"],["2024-07-24T03:55:57.010000"],["2024-07-24T03:55:58.010000"],["2024-07-24T03:55:59.010000"],["2024-07-24T03:56:00.010000"],["2024-07-24T03:56:01.010000"],["2024-07-24T03:56:02.010000"],["2024-07-24T03:56:03.010000"],["2024-07-24T03:56:04.010000"],["2024-07-24T03:56:05.010000"],["2024-07-24T03:56:06.010000"],["2024-07-24T03:56:07.010000"],["2024-07-24T03:56:08.010000"],["2024-07-24T03:56:09.010000"],["2024-07-24T03:56:10.010000"],["2024-07-24T03:56:11.010000"],["2024-07-24T03:56:12.010000"],["2024-07-24T03:56:13.010000"],["2024-07-24T03:56:14.010000"],["2024-07-24T03:56:15.010000"],["2024-07-24T03:56:16.010000"],["2024-07-24T03:56:17.010000"],["2024-07-24T03:56:18.010000"],["2024-07-24T03:56:19.010000"],["2024-07-24T03:56:20.010000"],["2024-07-24T03:56:21.010000"],["2024-07-24T03:56:22.010000"],["2024-07-24T03:56:23.010000"],["2024-07-24T03:56:24.010000"],["2024-07-24T03:56:25.010000"],["2024-07-24T03:56:26.010000"],["2024-07-24T03:56:27.010000"],["2024-07-24T03:56:28.010000"],["2024-07-24T03:56:29.010000"],["2024-07-24T03:56:30.010000"],["2024-07-24T03:56:31.010000"],["2024-07-24T03:56:32.010000"],["2024-07-24T03:56:33.010000"],["2024-07-24T03:56:34.010000"],["2024-07-24T03:56:35.010000"],["2024-07-24T03:56:36.010000"],["2024-07-24T03:56:37.010000"],["2024-07-24T03:56:38.010000"],["2024-07-24T03:56:39.010000"],["2024-07-24T03:56:40.010000"],["2024-07-24T03:56:41.010000"],["2024-07-24T03:56:42.010000"],["2024-07-24T03:56:43.010000"],["2024-07-24T03:56:44.010000"],["2024-07-24T03:56:45.010000"],["2024-07-24T03:56:46.010000"],["2024-07-24T03:56:47.010000"],["2024-07-24T03:56:48.010000"],["2024-07-24T03:56:49.010000"],["2024-07-24T03:56:50.010000"],["2024-07-24T03:56:51.010000"],["2024-07-24T03:56:52.010000"],["2024-07-24T03:56:53.010000"],["2024-07-24T03:56:54.010000"],["2024-07-24T03:56:55.010000"],["2024-07-24T03:56:56.010000"],["2024-07-24T03:56:57.010000"],["2024-07-24T03:56:58.010000"],["2024-07-24T03:56:59.010000"],["2024-07-24T03:57:00.010000"],["2024-07-24T03:57:01.010000"],["2024-07-24T03:57:02.010000"],["2024-07-24T03:57:03.010000"],["2024-07-24T03:57:04.010000"],["2024-07-24T03:57:05.010000"],["2024-07-24T03:57:06.010000"],["2024-07-24T03:57:07.010000"],["2024-07-24T03:57:08.010000"],["2024-07-24T03:57:09.010000"],["2024-07-24T03:57:10.010000"],["2024-07-24T03:57:11.010000"],["2024-07-24T03:57:12.010000"],["2024-07-24T03:57:13.010000"],["2024-07-24T03:57:14.010000"],["2024-07-24T03:57:15.010000"],["2024-07-24T03:57:16.010000"],["2024-07-24T03:57:17.010000"],["2024-07-24T03:57:18.010000"],["2024-07-24T03:57:19.010000"],["2024-07-24T03:57:20.010000"],["2024-07-24T03:57:21.010000"],["2024-07-24T03:57:22.010000"],["2024-07-24T03:57:23.010000"],["2024-07-24T03:57:24.010000"],["2024-07-24T03:57:25.010000"],["2024-07-24T03:57:26.010000"],["2024-07-24T03:57:27.010000"],["2024-07-24T03:57:28.010000"],["2024-07-24T03:57:29.010000"],["2024-07-24T03:57:30.010000"],["2024-07-24T03:57:31.010000"],["2024-07-24T03:57:32.010000"],["2024-07-24T03:57:33.010000"],["2024-07-24T03:57:34.010000"],["2024-07-24T03:57:35.010000"],["2024-07-24T03:57:36.010000"],["2024-07-24T03:57:37.010000"],["2024-07-24T03:57:38.010000"],["2024-07-24T03:57:39.010000"],["2024-07-24T03:57:40.010000"],["2024-07-24T03:57:41.010000"],["2024-07-24T03:57:42.010000"],["2024-07-24T03:57:43.010000"],["2024-07-24T03:57:44.010000"],["2024-07-24T03:57:45.010000"],["2024-07-24T03:57:46.010000"],["2024-07-24T03:57:47.010000"],["2024-07-24T03:57:48.010000"],["2024-07-24T03:57:49.010000"],["2024-07-24T03:57:50.010000"],["2024-07-24T03:57:51.010000"],["2024-07-24T03:57:52.010000"],["2024-07-24T03:57:53.010000"],["2024-07-24T03:57:54.010000"],["2024-07-24T03:57:55.010000"],["2024-07-24T03:57:56.010000"],["2024-07-24T03:57:57.010000"],["2024-07-24T03:57:58.010000"],["2024-07-24T03:57:59.010000"],["2024-07-24T03:58:00.010000"],["2024-07-24T03:58:01.010000"],["2024-07-24T03:58:02.010000"],["2024-07-24T03:58:03.010000"],["2024-07-24T03:58:04.010000"],["2024-07-24T03:58:05.010000"],["2024-07-24T03:58:06.010000"],["2024-07-24T03:58:07.010000"],["2024-07-24T03:58:08.010000"],["2024-07-24T03:58:09.010000"],["2024-07-24T03:58:10.010000"],["2024-07-24T03:58:11.010000"],["2024-07-24T03:58:12.010000"],["2024-07-24T03:58:13.010000"],["2024-07-24T03:58:14.010000"],["2024-07-24T03:58:15.010000"],["2024-07-24T03:58:16.010000"],["2024-07-24T03:58:17.010000"],["2024-07-24T03:58:18.010000"],["2024-07-24T03:58:19.010000"],["2024-07-24T03:58:20.010000"],["2024-07-24T03:58:21.010000"],["2024-07-24T03:58:22.010000"],["2024-07-24T03:58:23.010000"],["2024-07-24T03:58:24.010000"],["2024-07-24T03:58:25.010000"],["2024-07-24T03:58:26.010000"],["2024-07-24T03:58:27.010000"],["2024-07-24T03:58:28.010000"],["2024-07-24T03:58:29.010000"],["2024-07-24T03:58:30.010000"],["2024-07-24T03:58:31.010000"],["2024-07-24T03:58:32.010000"],["2024-07-24T03:58:33.010000"],["2024-07-24T03:58:34.010000"],["2024-07-24T03:58:35.010000"],["2024-07-24T03:58:36.010000"],["2024-07-24T03:58:37.010000"],["2024-07-24T03:58:38.010000"],["2024-07-24T03:58:39.010000"],["2024-07-24T03:58:40.010000"],["2024-07-24T03:58:41.010000"],["2024-07-24T03:58:42.010000"],["2024-07-24T03:58:43.010000"],["2024-07-24T03:58:44.010000"],["2024-07-24T03:58:45.010000"],["2024-07-24T03:58:46.010000"],["2024-07-24T03:58:47.010000"],["2024-07-24T03:58:48.010000"],["2024-07-24T03:58:49.010000"],["2024-07-24T03:58:50.010000"],["2024-07-24T03:58:51.010000"],["2024-07-24T03:58:52.010000"],["2024-07-24T03:58:53.010000"],["2024-07-24T03:58:54.010000"],["2024-07-24T03:58:55.010000"],["2024-07-24T03:58:56.010000"],["2024-07-24T03:58:57.010000"],["2024-07-24T03:58:58.010000"],["2024-07-24T03:58:59.010000"],["2024-07-24T03:59:00.010000"],["2024-07-24T03:59:01.010000"],["2024-07-24T03:59:02.010000"],["2024-07-24T03:59:03.010000"],["2024-07-24T03:59:04.010000"],["2024-07-24T03:59:05.010000"],["2024-07-24T03:59:06.010000"],["2024-07-24T03:59:07.010000"],["2024-07-24T03:59:08.010000"],["2024-07-24T03:59:09.010000"],["2024-07-24T03:59:10.010000"],["2024-07-24T03:59:11.010000"],["2024-07-24T03:59:12.010000"],["2024-07-24T03:59:13.010000"],["2024-07-24T03:59:14.010000"],["2024-07-24T03:59:15.010000"],["2024-07-24T03:59:16.010000"],["2024-07-24T03:59:17.010000"],["2024-07-24T03:59:18.010000"],["2024-07-24T03:59:19.010000"],["2024-07-24T03:59:20.010000"],["2024-07-24T03:59:21.010000"],["2024-07-24T03:59:22.010000"],["2024-07-24T03:59:23.010000"],["2024-07-24T03:59:24.010000"],["2024-07-24T03:59:25.010000"],["2024-07-24T03:59:26.010000"],["2024-07-24T03:59:27.010000"],["2024-07-24T03:59:28.010000"],["2024-07-24T03:59:29.010000"],["2024-07-24T03:59:30.010000"],["2024-07-24T03:59:31.010000"],["2024-07-24T03:59:32.010000"],["2024-07-24T03:59:33.010000"],["2024-07-24T03:59:34.010000"],["2024-07-24T03:59:35.010000"],["2024-07-24T03:59:36.010000"],["2024-07-24T03:59:37.010000"],["2024-07-24T03:59:38.010000"],["2024-07-24T03:59:39.010000"],["2024-07-24T03:59:40.010000"],["2024-07-24T03:59:41.010000"],["2024-07-24T03:59:42.010000"],["2024-07-24T03:59:43.010000"],["2024-07-24T03:59:44.010000"],["2024-07-24T03:59:45.010000"],["2024-07-24T03:59:46.010000"],["2024-07-24T03:59:47.010000"],["2024-07-24T03:59:48.010000"],["2024-07-24T03:59:49.010000"],["2024-07-24T03:59:50.010000"],["2024-07-24T03:59:51.010000"],["2024-07-24T03:59:52.010000"],["2024-07-24T03:59:53.010000"],["2024-07-24T03:59:54.010000"],["2024-07-24T03:59:55.010000"],["2024-07-24T03:59:56.010000"],["2024-07-24T03:59:57.010000"],["2024-07-24T03:59:58.010000"],["2024-07-24T03:59:59.010000"],["2024-07-24T04:00:00.010000"],["2024-07-24T04:00:01.010000"],["2024-07-24T04:00:02.010000"],["2024-07-24T04:00:03.010000"],["2024-07-24T04:00:04.010000"],["2024-07-24T04:00:05.010000"],["2024-07-24T04:00:06.010000"],["2024-07-24T04:00:07.010000"],["2024-07-24T04:00:08.010000"],["2024-07-24T04:00:09.010000"],["2024-07-24T04:00:10.010000"],["2024-07-24T04:00:11.010000"],["2024-07-24T04:00:12.010000"],["2024-07-24T04:00:13.010000"],["2024-07-24T04:00:14.010000"],["2024-07-24T04:00:15.010000"],["2024-07-24T04:00:16.010000"],["2024-07-24T04:00:17.010000"],["2024-07-24T04:00:18.010000"],["2024-07-24T04:00:19.010000"],["2024-07-24T04:00:20.010000"],["2024-07-24T04:00:21.010000"],["2024-07-24T04:00:22.010000"],["2024-07-24T04:00:23.010000"],["2024-07-24T04:00:24.010000"],["2024-07-24T04:00:25.010000"],["2024-07-24T04:00:26.010000"],["2024-07-24T04:00:27.010000"],["2024-07-24T04:00:28.010000"],["2024-07-24T04:00:29.010000"],["2024-07-24T04:00:30.010000"],["2024-07-24T04:00:31.010000"],["2024-07-24T04:00:32.010000"],["2024-07-24T04:00:33.010000"],["2024-07-24T04:00:34.010000"],["2024-07-24T04:00:35.010000"],["2024-07-24T04:00:36.010000"],["2024-07-24T04:00:37.010000"],["2024-07-24T04:00:38.010000"],["2024-07-24T04:00:39.010000"],["2024-07-24T04:00:40.010000"],["2024-07-24T04:00:41.010000"],["2024-07-24T04:00:42.010000"],["2024-07-24T04:00:43.010000"],["2024-07-24T04:00:44.010000"],["2024-07-24T04:00:45.010000"],["2024-07-24T04:00:46.010000"],["2024-07-24T04:00:47.010000"],["2024-07-24T04:00:48.010000"],["2024-07-24T04:00:49.010000"],["2024-07-24T04:00:50.010000"],["2024-07-24T04:00:51.010000"],["2024-07-24T04:00:52.010000"],["2024-07-24T04:00:53.010000"],["2024-07-24T04:00:54.010000"],["2024-07-24T04:00:55.010000"],["2024-07-24T04:00:56.010000"],["2024-07-24T04:00:57.010000"],["2024-07-24T04:00:58.010000"],["2024-07-24T04:00:59.010000"],["2024-07-24T04:01:00.010000"],["2024-07-24T04:01:01.010000"],["2024-07-24T04:01:02.010000"],["2024-07-24T04:01:03.010000"],["2024-07-24T04:01:04.010000"],["2024-07-24T04:01:05.010000"],["2024-07-24T04:01:06.010000"],["2024-07-24T04:01:07.010000"],["2024-07-24T04:01:08.010000"],["2024-07-24T04:01:09.010000"],["2024-07-24T04:01:10.010000"],["2024-07-24T04:01:11.010000"],["2024-07-24T04:01:12.010000"],["2024-07-24T04:01:13.010000"],["2024-07-24T04:01:14.010000"],["2024-07-24T04:01:15.010000"],["2024-07-24T04:01:16.010000"],["2024-07-24T04:01:17.010000"],["2024-07-24T04:01:18.010000"],["2024-07-24T04:01:19.010000"],["2024-07-24T04:01:20.010000"],["2024-07-24T04:01:21.010000"],["2024-07-24T04:01:22.010000"],["2024-07-24T04:01:23.010000"],["2024-07-24T04:01:24.010000"],["2024-07-24T04:01:25.010000"],["2024-07-24T04:01:26.010000"],["2024-07-24T04:01:27.010000"],["2024-07-24T04:01:28.010000"],["2024-07-24T04:01:29.010000"],["2024-07-24T04:01:30.010000"],["2024-07-24T04:01:31.010000"],["2024-07-24T04:01:32.010000"],["2024-07-24T04:01:33.010000"],["2024-07-24T04:01:34.010000"],["2024-07-24T04:01:35.010000"],["2024-07-24T04:01:36.010000"],["2024-07-24T04:01:37.010000"],["2024-07-24T04:01:38.010000"],["2024-07-24T04:01:39.010000"],["2024-07-24T04:01:40.010000"],["2024-07-24T04:01:41.010000"],["2024-07-24T04:01:42.010000"],["2024-07-24T04:01:43.010000"],["2024-07-24T04:01:44.010000"],["2024-07-24T04:01:45.010000"],["2024-07-24T04:01:46.010000"],["2024-07-24T04:01:47.010000"],["2024-07-24T04:01:48.010000"],["2024-07-24T04:01:49.010000"],["2024-07-24T04:01:50.010000"],["2024-07-24T04:01:51.010000"],["2024-07-24T04:01:52.010000"],["2024-07-24T04:01:53.010000"],["2024-07-24T04:01:54.010000"],["2024-07-24T04:01:55.010000"],["2024-07-24T04:01:56.010000"],["2024-07-24T04:01:57.010000"],["2024-07-24T04:01:58.010000"],["2024-07-24T04:01:59.010000"],["2024-07-24T04:02:00.010000"],["2024-07-24T04:02:01.010000"],["2024-07-24T04:02:02.010000"],["2024-07-24T04:02:03.010000"],["2024-07-24T04:02:04.010000"],["2024-07-24T04:02:05.010000"],["2024-07-24T04:02:06.010000"],["2024-07-24T04:02:07.010000"],["2024-07-24T04:02:08.010000"],["2024-07-24T04:02:09.010000"],["2024-07-24T04:02:10.010000"],["2024-07-24T04:02:11.010000"],["2024-07-24T04:02:12.010000"],["2024-07-24T04:02:13.010000"],["2024-07-24T04:02:14.010000"],["2024-07-24T04:02:15.010000"],["2024-07-24T04:02:16.010000"],["2024-07-24T04:02:17.010000"],["2024-07-24T04:02:18.010000"],["2024-07-24T04:02:19.010000"],["2024-07-24T04:02:20.010000"],["2024-07-24T04:02:21.010000"],["2024-07-24T04:02:22.010000"],["2024-07-24T04:02:23.010000"],["2024-07-24T04:02:24.010000"],["2024-07-24T04:02:25.010000"],["2024-07-24T04:02:26.010000"],["2024-07-24T04:02:27.010000"],["2024-07-24T04:02:28.010000"],["2024-07-24T04:02:29.010000"],["2024-07-24T04:02:30.010000"],["2024-07-24T04:02:31.010000"],["2024-07-24T04:02:32.010000"],["2024-07-24T04:02:33.010000"],["2024-07-24T04:02:34.010000"],["2024-07-24T04:02:35.010000"],["2024-07-24T04:02:36.010000"],["2024-07-24T04:02:37.010000"],["2024-07-24T04:02:38.010000"],["2024-07-24T04:02:39.010000"],["2024-07-24T04:02:40.010000"],["2024-07-24T04:02:41.010000"],["2024-07-24T04:02:42.010000"],["2024-07-24T04:02:43.010000"],["2024-07-24T04:02:44.010000"],["2024-07-24T04:02:45.010000"],["2024-07-24T04:02:46.010000"],["2024-07-24T04:02:47.010000"],["2024-07-24T04:02:48.010000"],["2024-07-24T04:02:49.010000"],["2024-07-24T04:02:50.010000"],["2024-07-24T04:02:51.010000"],["2024-07-24T04:02:52.010000"],["2024-07-24T04:02:53.010000"],["2024-07-24T04:02:54.010000"],["2024-07-24T04:02:55.010000"],["2024-07-24T04:02:56.010000"],["2024-07-24T04:02:57.010000"],["2024-07-24T04:02:58.010000"],["2024-07-24T04:02:59.010000"],["2024-07-24T04:03:00.010000"],["2024-07-24T04:03:01.010000"],["2024-07-24T04:03:02.010000"],["2024-07-24T04:03:03.010000"],["2024-07-24T04:03:04.010000"],["2024-07-24T04:03:05.010000"],["2024-07-24T04:03:06.010000"],["2024-07-24T04:03:07.010000"],["2024-07-24T04:03:08.010000"],["2024-07-24T04:03:09.010000"],["2024-07-24T04:03:10.010000"],["2024-07-24T04:03:11.010000"],["2024-07-24T04:03:12.010000"],["2024-07-24T04:03:13.010000"],["2024-07-24T04:03:14.010000"],["2024-07-24T04:03:15.010000"],["2024-07-24T04:03:16.010000"],["2024-07-24T04:03:17.010000"],["2024-07-24T04:03:18.010000"],["2024-07-24T04:03:19.010000"],["2024-07-24T04:03:20.010000"],["2024-07-24T04:03:21.010000"],["2024-07-24T04:03:22.010000"],["2024-07-24T04:03:23.010000"],["2024-07-24T04:03:24.010000"],["2024-07-24T04:03:25.010000"],["2024-07-24T04:03:26.010000"],["2024-07-24T04:03:27.010000"],["2024-07-24T04:03:28.010000"],["2024-07-24T04:03:29.010000"],["2024-07-24T04:03:30.010000"],["2024-07-24T04:03:31.010000"],["2024-07-24T04:03:32.010000"],["2024-07-24T04:03:33.010000"],["2024-07-24T04:03:34.010000"],["2024-07-24T04:03:35.010000"],["2024-07-24T04:03:36.010000"],["2024-07-24T04:03:37.010000"],["2024-07-24T04:03:38.010000"],["2024-07-24T04:03:39.010000"],["2024-07-24T04:03:40.010000"],["2024-07-24T04:03:41.010000"],["2024-07-24T04:03:42.010000"],["2024-07-24T04:03:43.010000"],["2024-07-24T04:03:44.010000"],["2024-07-24T04:03:45.010000"],["2024-07-24T04:03:46.010000"],["2024-07-24T04:03:47.010000"],["2024-07-24T04:03:48.010000"],["2024-07-24T04:03:49.010000"],["2024-07-24T04:03:50.010000"],["2024-07-24T04:03:51.010000"],["2024-07-24T04:03:52.010000"],["2024-07-24T04:03:53.010000"],["2024-07-24T04:03:54.010000"],["2024-07-24T04:03:55.010000"],["2024-07-24T04:03:56.010000"],["2024-07-24T04:03:57.010000"],["2024-07-24T04:03:58.010000"],["2024-07-24T04:03:59.010000"],["2024-07-24T04:04:00.010000"],["2024-07-24T04:04:01.010000"],["2024-07-24T04:04:02.010000"],["2024-07-24T04:04:03.010000"],["2024-07-24T04:04:04.010000"],["2024-07-24T04:04:05.010000"],["2024-07-24T04:04:06.010000"],["2024-07-24T04:04:07.010000"],["2024-07-24T04:04:08.010000"],["2024-07-24T04:04:09.010000"],["2024-07-24T04:04:10.010000"],["2024-07-24T04:04:11.010000"],["2024-07-24T04:04:12.010000"],["2024-07-24T04:04:13.010000"],["2024-07-24T04:04:14.010000"],["2024-07-24T04:04:15.010000"],["2024-07-24T04:04:16.010000"],["2024-07-24T04:04:17.010000"],["2024-07-24T04:04:18.010000"],["2024-07-24T04:04:19.010000"],["2024-07-24T04:04:20.010000"],["2024-07-24T04:04:21.010000"],["2024-07-24T04:04:22.010000"],["2024-07-24T04:04:23.010000"],["2024-07-24T04:04:24.010000"],["2024-07-24T04:04:25.010000"],["2024-07-24T04:04:26.010000"],["2024-07-24T04:04:27.010000"],["2024-07-24T04:04:28.010000"],["2024-07-24T04:04:29.010000"],["2024-07-24T04:04:30.010000"],["2024-07-24T04:04:31.010000"],["2024-07-24T04:04:32.010000"],["2024-07-24T04:04:33.010000"],["2024-07-24T04:04:34.010000"],["2024-07-24T04:04:35.010000"],["2024-07-24T04:04:36.010000"],["2024-07-24T04:04:37.010000"],["2024-07-24T04:04:38.010000"],["2024-07-24T04:04:39.010000"],["2024-07-24T04:04:40.010000"],["2024-07-24T04:04:41.010000"],["2024-07-24T04:04:42.010000"],["2024-07-24T04:04:43.010000"],["2024-07-24T04:04:44.010000"],["2024-07-24T04:04:45.010000"],["2024-07-24T04:04:46.010000"],["2024-07-24T04:04:47.010000"],["2024-07-24T04:04:48.010000"],["2024-07-24T04:04:49.010000"],["2024-07-24T04:04:50.010000"],["2024-07-24T04:04:51.010000"],["2024-07-24T04:04:52.010000"],["2024-07-24T04:04:53.010000"],["2024-07-24T04:04:54.010000"],["2024-07-24T04:04:55.010000"],["2024-07-24T04:04:56.010000"],["2024-07-24T04:04:57.010000"],["2024-07-24T04:04:58.010000"],["2024-07-24T04:04:59.010000"],["2024-07-24T04:05:00.010000"],["2024-07-24T04:05:01.010000"],["2024-07-24T04:05:02.010000"],["2024-07-24T04:05:03.010000"],["2024-07-24T04:05:04.010000"],["2024-07-24T04:05:05.010000"],["2024-07-24T04:05:06.010000"],["2024-07-24T04:05:07.010000"],["2024-07-24T04:05:08.010000"],["2024-07-24T04:05:09.010000"],["2024-07-24T04:05:10.010000"],["2024-07-24T04:05:11.010000"],["2024-07-24T04:05:12.010000"],["2024-07-24T04:05:13.010000"],["2024-07-24T04:05:14.010000"],["2024-07-24T04:05:15.010000"],["2024-07-24T04:05:16.010000"],["2024-07-24T04:05:17.010000"],["2024-07-24T04:05:18.010000"],["2024-07-24T04:05:19.010000"],["2024-07-24T04:05:20.010000"],["2024-07-24T04:05:21.010000"],["2024-07-24T04:05:22.010000"],["2024-07-24T04:05:23.010000"],["2024-07-24T04:05:24.010000"],["2024-07-24T04:05:25.010000"],["2024-07-24T04:05:26.010000"],["2024-07-24T04:05:27.010000"],["2024-07-24T04:05:28.010000"],["2024-07-24T04:05:29.010000"],["2024-07-24T04:05:30.010000"],["2024-07-24T04:05:31.010000"],["2024-07-24T04:05:32.010000"],["2024-07-24T04:05:33.010000"],["2024-07-24T04:05:34.010000"],["2024-07-24T04:05:35.010000"],["2024-07-24T04:05:36.010000"],["2024-07-24T04:05:37.010000"],["2024-07-24T04:05:38.010000"],["2024-07-24T04:05:39.010000"],["2024-07-24T04:05:40.010000"],["2024-07-24T04:05:41.010000"],["2024-07-24T04:05:42.010000"],["2024-07-24T04:05:43.010000"],["2024-07-24T04:05:44.010000"],["2024-07-24T04:05:45.010000"],["2024-07-24T04:05:46.010000"],["2024-07-24T04:05:47.010000"],["2024-07-24T04:05:48.010000"],["2024-07-24T04:05:49.010000"],["2024-07-24T04:05:50.010000"],["2024-07-24T04:05:51.010000"],["2024-07-24T04:05:52.010000"],["2024-07-24T04:05:53.010000"],["2024-07-24T04:05:54.010000"],["2024-07-24T04:05:55.010000"],["2024-07-24T04:05:56.010000"],["2024-07-24T04:05:57.010000"],["2024-07-24T04:05:58.010000"],["2024-07-24T04:05:59.010000"],["2024-07-24T04:06:00.010000"],["2024-07-24T04:06:01.010000"],["2024-07-24T04:06:02.010000"],["2024-07-24T04:06:03.010000"],["2024-07-24T04:06:04.010000"],["2024-07-24T04:06:05.010000"],["2024-07-24T04:06:06.010000"],["2024-07-24T04:06:07.010000"],["2024-07-24T04:06:08.010000"],["2024-07-24T04:06:09.010000"],["2024-07-24T04:06:10.010000"],["2024-07-24T04:06:11.010000"],["2024-07-24T04:06:12.010000"],["2024-07-24T04:06:13.010000"],["2024-07-24T04:06:14.010000"],["2024-07-24T04:06:15.010000"],["2024-07-24T04:06:16.010000"],["2024-07-24T04:06:17.010000"],["2024-07-24T04:06:18.010000"],["2024-07-24T04:06:19.010000"],["2024-07-24T04:06:20.010000"],["2024-07-24T04:06:21.010000"],["2024-07-24T04:06:22.010000"],["2024-07-24T04:06:23.010000"],["2024-07-24T04:06:24.010000"],["2024-07-24T04:06:25.010000"],["2024-07-24T04:06:26.010000"],["2024-07-24T04:06:27.010000"],["2024-07-24T04:06:28.010000"],["2024-07-24T04:06:29.010000"],["2024-07-24T04:06:30.010000"],["2024-07-24T04:06:31.010000"],["2024-07-24T04:06:32.010000"],["2024-07-24T04:06:33.010000"],["2024-07-24T04:06:34.010000"],["2024-07-24T04:06:35.010000"],["2024-07-24T04:06:36.010000"],["2024-07-24T04:06:37.010000"],["2024-07-24T04:06:38.010000"],["2024-07-24T04:06:39.010000"],["2024-07-24T04:06:40.010000"],["2024-07-24T04:06:41.010000"],["2024-07-24T04:06:42.010000"],["2024-07-24T04:06:43.010000"],["2024-07-24T04:06:44.010000"],["2024-07-24T04:06:45.010000"],["2024-07-24T04:06:46.010000"],["2024-07-24T04:06:47.010000"],["2024-07-24T04:06:48.010000"],["2024-07-24T04:06:49.010000"],["2024-07-24T04:06:50.010000"],["2024-07-24T04:06:51.010000"],["2024-07-24T04:06:52.010000"],["2024-07-24T04:06:53.010000"],["2024-07-24T04:06:54.010000"],["2024-07-24T04:06:55.010000"],["2024-07-24T04:06:56.010000"],["2024-07-24T04:06:57.010000"],["2024-07-24T04:06:58.010000"],["2024-07-24T04:06:59.010000"],["2024-07-24T04:07:00.010000"],["2024-07-24T04:07:01.010000"],["2024-07-24T04:07:02.010000"],["2024-07-24T04:07:03.010000"],["2024-07-24T04:07:04.010000"],["2024-07-24T04:07:05.010000"],["2024-07-24T04:07:06.010000"],["2024-07-24T04:07:07.010000"],["2024-07-24T04:07:08.010000"],["2024-07-24T04:07:09.010000"],["2024-07-24T04:07:10.010000"],["2024-07-24T04:07:11.010000"],["2024-07-24T04:07:12.010000"],["2024-07-24T04:07:13.010000"],["2024-07-24T04:07:14.010000"],["2024-07-24T04:07:15.010000"],["2024-07-24T04:07:16.010000"],["2024-07-24T04:07:17.010000"],["2024-07-24T04:07:18.010000"],["2024-07-24T04:07:19.010000"],["2024-07-24T04:07:20.010000"],["2024-07-24T04:07:21.010000"],["2024-07-24T04:07:22.010000"],["2024-07-24T04:07:23.010000"],["2024-07-24T04:07:24.010000"],["2024-07-24T04:07:25.010000"],["2024-07-24T04:07:26.010000"],["2024-07-24T04:07:27.010000"],["2024-07-24T04:07:28.010000"],["2024-07-24T04:07:29.010000"],["2024-07-24T04:07:30.010000"],["2024-07-24T04:07:31.010000"],["2024-07-24T04:07:32.010000"],["2024-07-24T04:07:33.010000"],["2024-07-24T04:07:34.010000"],["2024-07-24T04:07:35.010000"],["2024-07-24T04:07:36.010000"],["2024-07-24T04:07:37.010000"],["2024-07-24T04:07:38.010000"],["2024-07-24T04:07:39.010000"],["2024-07-24T04:07:40.010000"],["2024-07-24T04:07:41.010000"],["2024-07-24T04:07:42.010000"],["2024-07-24T04:07:43.010000"],["2024-07-24T04:07:44.010000"],["2024-07-24T04:07:45.010000"],["2024-07-24T04:07:46.010000"],["2024-07-24T04:07:47.010000"],["2024-07-24T04:07:48.010000"],["2024-07-24T04:07:49.010000"],["2024-07-24T04:07:50.010000"],["2024-07-24T04:07:51.010000"],["2024-07-24T04:07:52.010000"],["2024-07-24T04:07:53.010000"],["2024-07-24T04:07:54.010000"],["2024-07-24T04:07:55.010000"],["2024-07-24T04:07:56.010000"],["2024-07-24T04:07:57.010000"],["2024-07-24T04:07:58.010000"],["2024-07-24T04:07:59.010000"],["2024-07-24T04:08:00.010000"],["2024-07-24T04:08:01.010000"],["2024-07-24T04:08:02.010000"],["2024-07-24T04:08:03.010000"],["2024-07-24T04:08:04.010000"],["2024-07-24T04:08:05.010000"],["2024-07-24T04:08:06.010000"],["2024-07-24T04:08:07.010000"],["2024-07-24T04:08:08.010000"],["2024-07-24T04:08:09.010000"],["2024-07-24T04:08:10.010000"],["2024-07-24T04:08:11.010000"],["2024-07-24T04:08:12.010000"],["2024-07-24T04:08:13.010000"],["2024-07-24T04:08:14.010000"],["2024-07-24T04:08:15.010000"],["2024-07-24T04:08:16.010000"],["2024-07-24T04:08:17.010000"],["2024-07-24T04:08:18.010000"],["2024-07-24T04:08:19.010000"],["2024-07-24T04:08:20.010000"],["2024-07-24T04:08:21.010000"],["2024-07-24T04:08:22.010000"],["2024-07-24T04:08:23.010000"],["2024-07-24T04:08:24.010000"],["2024-07-24T04:08:25.010000"],["2024-07-24T04:08:26.010000"],["2024-07-24T04:08:27.010000"],["2024-07-24T04:08:28.010000"],["2024-07-24T04:08:29.010000"],["2024-07-24T04:08:30.010000"],["2024-07-24T04:08:31.010000"],["2024-07-24T04:08:32.010000"],["2024-07-24T04:08:33.010000"],["2024-07-24T04:08:34.010000"],["2024-07-24T04:08:35.010000"],["2024-07-24T04:08:36.010000"],["2024-07-24T04:08:37.010000"],["2024-07-24T04:08:38.010000"],["2024-07-24T04:08:39.010000"],["2024-07-24T04:08:40.010000"],["2024-07-24T04:08:41.010000"],["2024-07-24T04:08:42.010000"],["2024-07-24T04:08:43.010000"],["2024-07-24T04:08:44.010000"],["2024-07-24T04:08:45.010000"],["2024-07-24T04:08:46.010000"],["2024-07-24T04:08:47.010000"],["2024-07-24T04:08:48.010000"],["2024-07-24T04:08:49.010000"],["2024-07-24T04:08:50.010000"],["2024-07-24T04:08:51.010000"],["2024-07-24T04:08:52.010000"],["2024-07-24T04:08:53.010000"],["2024-07-24T04:08:54.010000"],["2024-07-24T04:08:55.010000"],["2024-07-24T04:08:56.010000"],["2024-07-24T04:08:57.010000"],["2024-07-24T04:08:58.010000"],["2024-07-24T04:08:59.010000"],["2024-07-24T04:09:00.010000"],["2024-07-24T04:09:01.010000"],["2024-07-24T04:09:02.010000"],["2024-07-24T04:09:03.010000"],["2024-07-24T04:09:04.010000"],["2024-07-24T04:09:05.010000"],["2024-07-24T04:09:06.010000"],["2024-07-24T04:09:07.010000"],["2024-07-24T04:09:08.010000"],["2024-07-24T04:09:09.010000"],["2024-07-24T04:09:10.010000"],["2024-07-24T04:09:11.010000"],["2024-07-24T04:09:12.010000"],["2024-07-24T04:09:13.010000"],["2024-07-24T04:09:14.010000"],["2024-07-24T04:09:15.010000"],["2024-07-24T04:09:16.010000"],["2024-07-24T04:09:17.010000"],["2024-07-24T04:09:18.010000"],["2024-07-24T04:09:19.010000"],["2024-07-24T04:09:20.010000"],["2024-07-24T04:09:21.010000"],["2024-07-24T04:09:22.010000"],["2024-07-24T04:09:23.010000"],["2024-07-24T04:09:24.010000"],["2024-07-24T04:09:25.010000"],["2024-07-24T04:09:26.010000"],["2024-07-24T04:09:27.010000"],["2024-07-24T04:09:28.010000"],["2024-07-24T04:09:29.010000"],["2024-07-24T04:09:30.010000"],["2024-07-24T04:09:31.010000"],["2024-07-24T04:09:32.010000"],["2024-07-24T04:09:33.010000"],["2024-07-24T04:09:34.010000"],["2024-07-24T04:09:35.010000"],["2024-07-24T04:09:36.010000"],["2024-07-24T04:09:37.010000"],["2024-07-24T04:09:38.010000"],["2024-07-24T04:09:39.010000"],["2024-07-24T04:09:40.010000"],["2024-07-24T04:09:41.010000"],["2024-07-24T04:09:42.010000"],["2024-07-24T04:09:43.010000"],["2024-07-24T04:09:44.010000"],["2024-07-24T04:09:45.010000"],["2024-07-24T04:09:46.010000"],["2024-07-24T04:09:47.010000"],["2024-07-24T04:09:48.010000"],["2024-07-24T04:09:49.010000"],["2024-07-24T04:09:50.010000"],["2024-07-24T04:09:51.010000"],["2024-07-24T04:09:52.010000"],["2024-07-24T04:09:53.010000"],["2024-07-24T04:09:54.010000"],["2024-07-24T04:09:55.010000"],["2024-07-24T04:09:56.010000"],["2024-07-24T04:09:57.010000"],["2024-07-24T04:09:58.010000"],["2024-07-24T04:09:59.010000"],["2024-07-24T04:10:00.010000"],["2024-07-24T04:10:01.010000"],["2024-07-24T04:10:02.010000"],["2024-07-24T04:10:03.010000"],["2024-07-24T04:10:04.010000"],["2024-07-24T04:10:05.010000"],["2024-07-24T04:10:06.010000"],["2024-07-24T04:10:07.010000"],["2024-07-24T04:10:08.010000"],["2024-07-24T04:10:09.010000"],["2024-07-24T04:10:10.010000"],["2024-07-24T04:10:11.010000"],["2024-07-24T04:10:12.010000"],["2024-07-24T04:10:13.010000"],["2024-07-24T04:10:14.010000"],["2024-07-24T04:10:15.010000"],["2024-07-24T04:10:16.010000"],["2024-07-24T04:10:17.010000"],["2024-07-24T04:10:18.010000"],["2024-07-24T04:10:19.010000"],["2024-07-24T04:10:20.010000"],["2024-07-24T04:10:21.010000"],["2024-07-24T04:10:22.010000"],["2024-07-24T04:10:23.010000"],["2024-07-24T04:10:24.010000"],["2024-07-24T04:10:25.010000"],["2024-07-24T04:10:26.010000"],["2024-07-24T04:10:27.010000"],["2024-07-24T04:10:28.010000"],["2024-07-24T04:10:29.010000"],["2024-07-24T04:10:30.010000"],["2024-07-24T04:10:31.010000"],["2024-07-24T04:10:32.010000"],["2024-07-24T04:10:33.010000"],["2024-07-24T04:10:34.010000"],["2024-07-24T04:10:35.010000"],["2024-07-24T04:10:36.010000"],["2024-07-24T04:10:37.010000"],["2024-07-24T04:10:38.010000"],["2024-07-24T04:10:39.010000"],["2024-07-24T04:10:40.010000"],["2024-07-24T04:10:41.010000"],["2024-07-24T04:10:42.010000"],["2024-07-24T04:10:43.010000"],["2024-07-24T04:10:44.010000"],["2024-07-24T04:10:45.010000"],["2024-07-24T04:10:46.010000"],["2024-07-24T04:10:47.010000"],["2024-07-24T04:10:48.010000"],["2024-07-24T04:10:49.010000"],["2024-07-24T04:10:50.010000"],["2024-07-24T04:10:51.010000"],["2024-07-24T04:10:52.010000"],["2024-07-24T04:10:53.010000"],["2024-07-24T04:10:54.010000"],["2024-07-24T04:10:55.010000"],["2024-07-24T04:10:56.010000"],["2024-07-24T04:10:57.010000"],["2024-07-24T04:10:58.010000"],["2024-07-24T04:10:59.010000"],["2024-07-24T04:11:00.010000"],["2024-07-24T04:11:01.010000"],["2024-07-24T04:11:02.010000"],["2024-07-24T04:11:03.010000"],["2024-07-24T04:11:04.010000"],["2024-07-24T04:11:05.010000"],["2024-07-24T04:11:06.010000"],["2024-07-24T04:11:07.010000"],["2024-07-24T04:11:08.010000"],["2024-07-24T04:11:09.010000"],["2024-07-24T04:11:10.010000"],["2024-07-24T04:11:11.010000"],["2024-07-24T04:11:12.010000"],["2024-07-24T04:11:13.010000"],["2024-07-24T04:11:14.010000"],["2024-07-24T04:11:15.010000"],["2024-07-24T04:11:16.010000"],["2024-07-24T04:11:17.010000"],["2024-07-24T04:11:18.010000"],["2024-07-24T04:11:19.010000"],["2024-07-24T04:11:20.010000"],["2024-07-24T04:11:21.010000"],["2024-07-24T04:11:22.010000"],["2024-07-24T04:11:23.010000"],["2024-07-24T04:11:24.010000"],["2024-07-24T04:11:25.010000"],["2024-07-24T04:11:26.010000"],["2024-07-24T04:11:27.010000"],["2024-07-24T04:11:28.010000"],["2024-07-24T04:11:29.010000"],["2024-07-24T04:11:30.010000"],["2024-07-24T04:11:31.010000"],["2024-07-24T04:11:32.010000"],["2024-07-24T04:11:33.010000"],["2024-07-24T04:11:34.010000"],["2024-07-24T04:11:35.010000"],["2024-07-24T04:11:36.010000"],["2024-07-24T04:11:37.010000"],["2024-07-24T04:11:38.010000"],["2024-07-24T04:11:39.010000"],["2024-07-24T04:11:40.010000"],["2024-07-24T04:11:41.010000"],["2024-07-24T04:11:42.010000"],["2024-07-24T04:11:43.010000"],["2024-07-24T04:11:44.010000"],["2024-07-24T04:11:45.010000"],["2024-07-24T04:11:46.010000"],["2024-07-24T04:11:47.010000"],["2024-07-24T04:11:48.010000"],["2024-07-24T04:11:49.010000"],["2024-07-24T04:11:50.010000"],["2024-07-24T04:11:51.010000"],["2024-07-24T04:11:52.010000"],["2024-07-24T04:11:53.010000"],["2024-07-24T04:11:54.010000"],["2024-07-24T04:11:55.010000"],["2024-07-24T04:11:56.010000"],["2024-07-24T04:11:57.010000"],["2024-07-24T04:11:58.010000"],["2024-07-24T04:11:59.010000"],["2024-07-24T04:12:00.010000"],["2024-07-24T04:12:01.010000"],["2024-07-24T04:12:02.010000"],["2024-07-24T04:12:03.010000"],["2024-07-24T04:12:04.010000"],["2024-07-24T04:12:05.010000"],["2024-07-24T04:12:06.010000"],["2024-07-24T04:12:07.010000"],["2024-07-24T04:12:08.010000"],["2024-07-24T04:12:09.010000"],["2024-07-24T04:12:10.010000"],["2024-07-24T04:12:11.010000"],["2024-07-24T04:12:12.010000"],["2024-07-24T04:12:13.010000"],["2024-07-24T04:12:14.010000"],["2024-07-24T04:12:15.010000"],["2024-07-24T04:12:16.010000"],["2024-07-24T04:12:17.010000"],["2024-07-24T04:12:18.010000"],["2024-07-24T04:12:19.010000"],["2024-07-24T04:12:20.010000"],["2024-07-24T04:12:21.010000"],["2024-07-24T04:12:22.010000"],["2024-07-24T04:12:23.010000"],["2024-07-24T04:12:24.010000"],["2024-07-24T04:12:25.010000"],["2024-07-24T04:12:26.010000"],["2024-07-24T04:12:27.010000"],["2024-07-24T04:12:28.010000"],["2024-07-24T04:12:29.010000"],["2024-07-24T04:12:30.010000"],["2024-07-24T04:12:31.010000"],["2024-07-24T04:12:32.010000"],["2024-07-24T04:12:33.010000"],["2024-07-24T04:12:34.010000"],["2024-07-24T04:12:35.010000"],["2024-07-24T04:12:36.010000"],["2024-07-24T04:12:37.010000"],["2024-07-24T04:12:38.010000"],["2024-07-24T04:12:39.010000"],["2024-07-24T04:12:40.010000"],["2024-07-24T04:12:41.010000"],["2024-07-24T04:12:42.010000"],["2024-07-24T04:12:43.010000"],["2024-07-24T04:12:44.010000"],["2024-07-24T04:12:45.010000"],["2024-07-24T04:12:46.010000"],["2024-07-24T04:12:47.010000"],["2024-07-24T04:12:48.010000"],["2024-07-24T04:12:49.010000"],["2024-07-24T04:12:50.010000"],["2024-07-24T04:12:51.010000"],["2024-07-24T04:12:52.010000"],["2024-07-24T04:12:53.010000"],["2024-07-24T04:12:54.010000"],["2024-07-24T04:12:55.010000"],["2024-07-24T04:12:56.010000"],["2024-07-24T04:12:57.010000"],["2024-07-24T04:12:58.010000"],["2024-07-24T04:12:59.010000"],["2024-07-24T04:13:00.010000"],["2024-07-24T04:13:01.010000"],["2024-07-24T04:13:02.010000"],["2024-07-24T04:13:03.010000"],["2024-07-24T04:13:04.010000"],["2024-07-24T04:13:05.010000"],["2024-07-24T04:13:06.010000"],["2024-07-24T04:13:07.010000"],["2024-07-24T04:13:08.010000"],["2024-07-24T04:13:09.010000"],["2024-07-24T04:13:10.010000"],["2024-07-24T04:13:11.010000"],["2024-07-24T04:13:12.010000"],["2024-07-24T04:13:13.010000"],["2024-07-24T04:13:14.010000"],["2024-07-24T04:13:15.010000"],["2024-07-24T04:13:16.010000"],["2024-07-24T04:13:17.010000"],["2024-07-24T04:13:18.010000"],["2024-07-24T04:13:19.010000"],["2024-07-24T04:13:20.010000"],["2024-07-24T04:13:21.010000"],["2024-07-24T04:13:22.010000"],["2024-07-24T04:13:23.010000"],["2024-07-24T04:13:24.010000"],["2024-07-24T04:13:25.010000"],["2024-07-24T04:13:26.010000"],["2024-07-24T04:13:27.010000"],["2024-07-24T04:13:28.010000"],["2024-07-24T04:13:29.010000"],["2024-07-24T04:13:30.010000"],["2024-07-24T04:13:31.010000"],["2024-07-24T04:13:32.010000"],["2024-07-24T04:13:33.010000"],["2024-07-24T04:13:34.010000"],["2024-07-24T04:13:35.010000"],["2024-07-24T04:13:36.010000"],["2024-07-24T04:13:37.010000"],["2024-07-24T04:13:38.010000"],["2024-07-24T04:13:39.010000"],["2024-07-24T04:13:40.010000"],["2024-07-24T04:13:41.010000"],["2024-07-24T04:13:42.010000"],["2024-07-24T04:13:43.010000"],["2024-07-24T04:13:44.010000"],["2024-07-24T04:13:45.010000"],["2024-07-24T04:13:46.010000"],["2024-07-24T04:13:47.010000"],["2024-07-24T04:13:48.010000"],["2024-07-24T04:13:49.010000"],["2024-07-24T04:13:50.010000"],["2024-07-24T04:13:51.010000"],["2024-07-24T04:13:52.010000"],["2024-07-24T04:13:53.010000"],["2024-07-24T04:13:54.010000"],["2024-07-24T04:13:55.010000"],["2024-07-24T04:13:56.010000"],["2024-07-24T04:13:57.010000"],["2024-07-24T04:13:58.010000"],["2024-07-24T04:13:59.010000"],["2024-07-24T04:14:00.010000"],["2024-07-24T04:14:01.010000"],["2024-07-24T04:14:02.010000"],["2024-07-24T04:14:03.010000"],["2024-07-24T04:14:04.010000"],["2024-07-24T04:14:05.010000"],["2024-07-24T04:14:06.010000"],["2024-07-24T04:14:07.010000"],["2024-07-24T04:14:08.010000"],["2024-07-24T04:14:09.010000"],["2024-07-24T04:14:10.010000"],["2024-07-24T04:14:11.010000"],["2024-07-24T04:14:12.010000"],["2024-07-24T04:14:13.010000"],["2024-07-24T04:14:14.010000"],["2024-07-24T04:14:15.010000"],["2024-07-24T04:14:16.010000"],["2024-07-24T04:14:17.010000"],["2024-07-24T04:14:18.010000"],["2024-07-24T04:14:19.010000"],["2024-07-24T04:14:20.010000"],["2024-07-24T04:14:21.010000"],["2024-07-24T04:14:22.010000"],["2024-07-24T04:14:23.010000"],["2024-07-24T04:14:24.010000"],["2024-07-24T04:14:25.010000"],["2024-07-24T04:14:26.010000"],["2024-07-24T04:14:27.010000"],["2024-07-24T04:14:28.010000"],["2024-07-24T04:14:29.010000"],["2024-07-24T04:14:30.010000"],["2024-07-24T04:14:31.010000"],["2024-07-24T04:14:32.010000"],["2024-07-24T04:14:33.010000"],["2024-07-24T04:14:34.010000"],["2024-07-24T04:14:35.010000"],["2024-07-24T04:14:36.010000"],["2024-07-24T04:14:37.010000"],["2024-07-24T04:14:38.010000"],["2024-07-24T04:14:39.010000"],["2024-07-24T04:14:40.010000"],["2024-07-24T04:14:41.010000"],["2024-07-24T04:14:42.010000"],["2024-07-24T04:14:43.010000"],["2024-07-24T04:14:44.010000"],["2024-07-24T04:14:45.010000"],["2024-07-24T04:14:46.010000"],["2024-07-24T04:14:47.010000"],["2024-07-24T04:14:48.010000"],["2024-07-24T04:14:49.010000"],["2024-07-24T04:14:50.010000"],["2024-07-24T04:14:51.010000"],["2024-07-24T04:14:52.010000"],["2024-07-24T04:14:53.010000"],["2024-07-24T04:14:54.010000"],["2024-07-24T04:14:55.010000"],["2024-07-24T04:14:56.010000"],["2024-07-24T04:14:57.010000"],["2024-07-24T04:14:58.010000"],["2024-07-24T04:14:59.010000"],["2024-07-24T04:15:00.010000"],["2024-07-24T04:15:01.010000"],["2024-07-24T04:15:02.010000"],["2024-07-24T04:15:03.010000"],["2024-07-24T04:15:04.010000"],["2024-07-24T04:15:05.010000"],["2024-07-24T04:15:06.010000"],["2024-07-24T04:15:07.010000"],["2024-07-24T04:15:08.010000"],["2024-07-24T04:15:09.010000"],["2024-07-24T04:15:10.010000"],["2024-07-24T04:15:11.010000"],["2024-07-24T04:15:12.010000"],["2024-07-24T04:15:13.010000"],["2024-07-24T04:15:14.010000"],["2024-07-24T04:15:15.010000"],["2024-07-24T04:15:16.010000"],["2024-07-24T04:15:17.010000"],["2024-07-24T04:15:18.010000"],["2024-07-24T04:15:19.010000"],["2024-07-24T04:15:20.010000"],["2024-07-24T04:15:21.010000"],["2024-07-24T04:15:22.010000"],["2024-07-24T04:15:23.010000"],["2024-07-24T04:15:24.010000"],["2024-07-24T04:15:25.010000"],["2024-07-24T04:15:26.010000"],["2024-07-24T04:15:27.010000"],["2024-07-24T04:15:28.010000"],["2024-07-24T04:15:29.010000"],["2024-07-24T04:15:30.010000"],["2024-07-24T04:15:31.010000"],["2024-07-24T04:15:32.010000"],["2024-07-24T04:15:33.010000"],["2024-07-24T04:15:34.010000"],["2024-07-24T04:15:35.010000"],["2024-07-24T04:15:36.010000"],["2024-07-24T04:15:37.010000"],["2024-07-24T04:15:38.010000"],["2024-07-24T04:15:39.010000"],["2024-07-24T04:15:40.010000"],["2024-07-24T04:15:41.010000"],["2024-07-24T04:15:42.010000"],["2024-07-24T04:15:43.010000"],["2024-07-24T04:15:44.010000"],["2024-07-24T04:15:45.010000"],["2024-07-24T04:15:46.010000"],["2024-07-24T04:15:47.010000"],["2024-07-24T04:15:48.010000"],["2024-07-24T04:15:49.010000"],["2024-07-24T04:15:50.010000"],["2024-07-24T04:15:51.010000"],["2024-07-24T04:15:52.010000"],["2024-07-24T04:15:53.010000"],["2024-07-24T04:15:54.010000"],["2024-07-24T04:15:55.010000"],["2024-07-24T04:15:56.010000"],["2024-07-24T04:15:57.010000"],["2024-07-24T04:15:58.010000"],["2024-07-24T04:15:59.010000"],["2024-07-24T04:16:00.010000"],["2024-07-24T04:16:01.010000"],["2024-07-24T04:16:02.010000"],["2024-07-24T04:16:03.010000"],["2024-07-24T04:16:04.010000"],["2024-07-24T04:16:05.010000"],["2024-07-24T04:16:06.010000"],["2024-07-24T04:16:07.010000"],["2024-07-24T04:16:08.010000"],["2024-07-24T04:16:09.010000"],["2024-07-24T04:16:10.010000"],["2024-07-24T04:16:11.010000"],["2024-07-24T04:16:12.010000"],["2024-07-24T04:16:13.010000"],["2024-07-24T04:16:14.010000"],["2024-07-24T04:16:15.010000"],["2024-07-24T04:16:16.010000"],["2024-07-24T04:16:17.010000"],["2024-07-24T04:16:18.010000"],["2024-07-24T04:16:19.010000"],["2024-07-24T04:16:20.010000"],["2024-07-24T04:16:21.010000"],["2024-07-24T04:16:22.010000"],["2024-07-24T04:16:23.010000"],["2024-07-24T04:16:24.010000"],["2024-07-24T04:16:25.010000"],["2024-07-24T04:16:26.010000"],["2024-07-24T04:16:27.010000"],["2024-07-24T04:16:28.010000"],["2024-07-24T04:16:29.010000"],["2024-07-24T04:16:30.010000"],["2024-07-24T04:16:31.010000"],["2024-07-24T04:16:32.010000"],["2024-07-24T04:16:33.010000"],["2024-07-24T04:16:34.010000"],["2024-07-24T04:16:35.010000"],["2024-07-24T04:16:36.010000"],["2024-07-24T04:16:37.010000"],["2024-07-24T04:16:38.010000"],["2024-07-24T04:16:39.010000"],["2024-07-24T04:16:40.010000"],["2024-07-24T04:16:41.010000"],["2024-07-24T04:16:42.010000"],["2024-07-24T04:16:43.010000"],["2024-07-24T04:16:44.010000"],["2024-07-24T04:16:45.010000"],["2024-07-24T04:16:46.010000"],["2024-07-24T04:16:47.010000"],["2024-07-24T04:16:48.010000"],["2024-07-24T04:16:49.010000"],["2024-07-24T04:16:50.010000"],["2024-07-24T04:16:51.010000"],["2024-07-24T04:16:52.010000"],["2024-07-24T04:16:53.010000"],["2024-07-24T04:16:54.010000"],["2024-07-24T04:16:55.010000"],["2024-07-24T04:16:56.010000"],["2024-07-24T04:16:57.010000"],["2024-07-24T04:16:58.010000"],["2024-07-24T04:16:59.010000"],["2024-07-24T04:17:00.010000"],["2024-07-24T04:17:01.010000"],["2024-07-24T04:17:02.010000"],["2024-07-24T04:17:03.010000"],["2024-07-24T04:17:04.010000"],["2024-07-24T04:17:05.010000"],["2024-07-24T04:17:06.010000"],["2024-07-24T04:17:07.010000"],["2024-07-24T04:17:08.010000"],["2024-07-24T04:17:09.010000"],["2024-07-24T04:17:10.010000"],["2024-07-24T04:17:11.010000"],["2024-07-24T04:17:12.010000"],["2024-07-24T04:17:13.010000"],["2024-07-24T04:17:14.010000"],["2024-07-24T04:17:15.010000"],["2024-07-24T04:17:16.010000"],["2024-07-24T04:17:17.010000"],["2024-07-24T04:17:18.010000"],["2024-07-24T04:17:19.010000"],["2024-07-24T04:17:20.010000"],["2024-07-24T04:17:21.010000"],["2024-07-24T04:17:22.010000"],["2024-07-24T04:17:23.010000"],["2024-07-24T04:17:24.010000"],["2024-07-24T04:17:25.010000"],["2024-07-24T04:17:26.010000"],["2024-07-24T04:17:27.010000"],["2024-07-24T04:17:28.010000"],["2024-07-24T04:17:29.010000"],["2024-07-24T04:17:30.010000"],["2024-07-24T04:17:31.010000"],["2024-07-24T04:17:32.010000"],["2024-07-24T04:17:33.010000"],["2024-07-24T04:17:34.010000"],["2024-07-24T04:17:35.010000"],["2024-07-24T04:17:36.010000"],["2024-07-24T04:17:37.010000"],["2024-07-24T04:17:38.010000"],["2024-07-24T04:17:39.010000"],["2024-07-24T04:17:40.010000"],["2024-07-24T04:17:41.010000"],["2024-07-24T04:17:42.010000"],["2024-07-24T04:17:43.010000"],["2024-07-24T04:17:44.010000"],["2024-07-24T04:17:45.010000"],["2024-07-24T04:17:46.010000"],["2024-07-24T04:17:47.010000"],["2024-07-24T04:17:48.010000"],["2024-07-24T04:17:49.010000"],["2024-07-24T04:17:50.010000"],["2024-07-24T04:17:51.010000"],["2024-07-24T04:17:52.010000"],["2024-07-24T04:17:53.010000"],["2024-07-24T04:17:54.010000"],["2024-07-24T04:17:55.010000"],["2024-07-24T04:17:56.010000"],["2024-07-24T04:17:57.010000"],["2024-07-24T04:17:58.010000"],["2024-07-24T04:17:59.010000"],["2024-07-24T04:18:00.010000"],["2024-07-24T04:18:01.010000"],["2024-07-24T04:18:02.010000"],["2024-07-24T04:18:03.010000"],["2024-07-24T04:18:04.010000"],["2024-07-24T04:18:05.010000"],["2024-07-24T04:18:06.010000"],["2024-07-24T04:18:07.010000"],["2024-07-24T04:18:08.010000"],["2024-07-24T04:18:09.010000"],["2024-07-24T04:18:10.010000"],["2024-07-24T04:18:11.010000"],["2024-07-24T04:18:12.010000"],["2024-07-24T04:18:13.010000"],["2024-07-24T04:18:14.010000"],["2024-07-24T04:18:15.010000"],["2024-07-24T04:18:16.010000"],["2024-07-24T04:18:17.010000"],["2024-07-24T04:18:18.010000"],["2024-07-24T04:18:19.010000"],["2024-07-24T04:18:20.010000"],["2024-07-24T04:18:21.010000"],["2024-07-24T04:18:22.010000"],["2024-07-24T04:18:23.010000"],["2024-07-24T04:18:24.010000"],["2024-07-24T04:18:25.010000"],["2024-07-24T04:18:26.010000"],["2024-07-24T04:18:27.010000"],["2024-07-24T04:18:28.010000"],["2024-07-24T04:18:29.010000"],["2024-07-24T04:18:30.010000"],["2024-07-24T04:18:31.010000"],["2024-07-24T04:18:32.010000"],["2024-07-24T04:18:33.010000"],["2024-07-24T04:18:34.010000"],["2024-07-24T04:18:35.010000"],["2024-07-24T04:18:36.010000"],["2024-07-24T04:18:37.010000"],["2024-07-24T04:18:38.010000"],["2024-07-24T04:18:39.010000"],["2024-07-24T04:18:40.010000"],["2024-07-24T04:18:41.010000"],["2024-07-24T04:18:42.010000"],["2024-07-24T04:18:43.010000"],["2024-07-24T04:18:44.010000"],["2024-07-24T04:18:45.010000"],["2024-07-24T04:18:46.010000"],["2024-07-24T04:18:47.010000"],["2024-07-24T04:18:48.010000"],["2024-07-24T04:18:49.010000"],["2024-07-24T04:18:50.010000"],["2024-07-24T04:18:51.010000"],["2024-07-24T04:18:52.010000"],["2024-07-24T04:18:53.010000"],["2024-07-24T04:18:54.010000"],["2024-07-24T04:18:55.010000"],["2024-07-24T04:18:56.010000"],["2024-07-24T04:18:57.010000"],["2024-07-24T04:18:58.010000"],["2024-07-24T04:18:59.010000"],["2024-07-24T04:19:00.010000"],["2024-07-24T04:19:01.010000"],["2024-07-24T04:19:02.010000"],["2024-07-24T04:19:03.010000"],["2024-07-24T04:19:04.010000"],["2024-07-24T04:19:05.010000"],["2024-07-24T04:19:06.010000"],["2024-07-24T04:19:07.010000"],["2024-07-24T04:19:08.010000"],["2024-07-24T04:19:09.010000"],["2024-07-24T04:19:10.010000"],["2024-07-24T04:19:11.010000"],["2024-07-24T04:19:12.010000"],["2024-07-24T04:19:13.010000"],["2024-07-24T04:19:14.010000"],["2024-07-24T04:19:15.010000"],["2024-07-24T04:19:16.010000"],["2024-07-24T04:19:17.010000"],["2024-07-24T04:19:18.010000"],["2024-07-24T04:19:19.010000"],["2024-07-24T04:19:20.010000"],["2024-07-24T04:19:21.010000"],["2024-07-24T04:19:22.010000"],["2024-07-24T04:19:23.010000"],["2024-07-24T04:19:24.010000"],["2024-07-24T04:19:25.010000"],["2024-07-24T04:19:26.010000"],["2024-07-24T04:19:27.010000"],["2024-07-24T04:19:28.010000"],["2024-07-24T04:19:29.010000"],["2024-07-24T04:19:30.010000"],["2024-07-24T04:19:31.010000"],["2024-07-24T04:19:32.010000"],["2024-07-24T04:19:33.010000"],["2024-07-24T04:19:34.010000"],["2024-07-24T04:19:35.010000"],["2024-07-24T04:19:36.010000"],["2024-07-24T04:19:37.010000"],["2024-07-24T04:19:38.010000"],["2024-07-24T04:19:39.010000"],["2024-07-24T04:19:40.010000"],["2024-07-24T04:19:41.010000"],["2024-07-24T04:19:42.010000"],["2024-07-24T04:19:43.010000"],["2024-07-24T04:19:44.010000"],["2024-07-24T04:19:45.010000"],["2024-07-24T04:19:46.010000"],["2024-07-24T04:19:47.010000"],["2024-07-24T04:19:48.010000"],["2024-07-24T04:19:49.010000"],["2024-07-24T04:19:50.010000"],["2024-07-24T04:19:51.010000"],["2024-07-24T04:19:52.010000"],["2024-07-24T04:19:53.010000"],["2024-07-24T04:19:54.010000"],["2024-07-24T04:19:55.010000"],["2024-07-24T04:19:56.010000"],["2024-07-24T04:19:57.010000"],["2024-07-24T04:19:58.010000"],["2024-07-24T04:19:59.010000"],["2024-07-24T04:20:00.010000"],["2024-07-24T04:20:01.010000"],["2024-07-24T04:20:02.010000"],["2024-07-24T04:20:03.010000"],["2024-07-24T04:20:04.010000"],["2024-07-24T04:20:05.010000"],["2024-07-24T04:20:06.010000"],["2024-07-24T04:20:07.010000"],["2024-07-24T04:20:08.010000"],["2024-07-24T04:20:09.010000"],["2024-07-24T04:20:10.010000"],["2024-07-24T04:20:11.010000"],["2024-07-24T04:20:12.010000"],["2024-07-24T04:20:13.010000"],["2024-07-24T04:20:14.010000"],["2024-07-24T04:20:15.010000"],["2024-07-24T04:20:16.010000"],["2024-07-24T04:20:17.010000"],["2024-07-24T04:20:18.010000"],["2024-07-24T04:20:19.010000"],["2024-07-24T04:20:20.010000"],["2024-07-24T04:20:21.010000"],["2024-07-24T04:20:22.010000"],["2024-07-24T04:20:23.010000"],["2024-07-24T04:20:24.010000"],["2024-07-24T04:20:25.010000"],["2024-07-24T04:20:26.010000"],["2024-07-24T04:20:27.010000"],["2024-07-24T04:20:28.010000"],["2024-07-24T04:20:29.010000"],["2024-07-24T04:20:30.010000"],["2024-07-24T04:20:31.010000"],["2024-07-24T04:20:32.010000"],["2024-07-24T04:20:33.010000"],["2024-07-24T04:20:34.010000"],["2024-07-24T04:20:35.010000"],["2024-07-24T04:20:36.010000"],["2024-07-24T04:20:37.010000"],["2024-07-24T04:20:38.010000"],["2024-07-24T04:20:39.010000"],["2024-07-24T04:20:40.010000"],["2024-07-24T04:20:41.010000"],["2024-07-24T04:20:42.010000"],["2024-07-24T04:20:43.010000"],["2024-07-24T04:20:44.010000"],["2024-07-24T04:20:45.010000"],["2024-07-24T04:20:46.010000"],["2024-07-24T04:20:47.010000"],["2024-07-24T04:20:48.010000"],["2024-07-24T04:20:49.010000"],["2024-07-24T04:20:50.010000"],["2024-07-24T04:20:51.010000"],["2024-07-24T04:20:52.010000"],["2024-07-24T04:20:53.010000"],["2024-07-24T04:20:54.010000"],["2024-07-24T04:20:55.010000"],["2024-07-24T04:20:56.010000"],["2024-07-24T04:20:57.010000"],["2024-07-24T04:20:58.010000"],["2024-07-24T04:20:59.010000"],["2024-07-24T04:21:00.010000"],["2024-07-24T04:21:01.010000"],["2024-07-24T04:21:02.010000"],["2024-07-24T04:21:03.010000"],["2024-07-24T04:21:04.010000"],["2024-07-24T04:21:05.010000"],["2024-07-24T04:21:06.010000"],["2024-07-24T04:21:07.010000"],["2024-07-24T04:21:08.010000"],["2024-07-24T04:21:09.010000"],["2024-07-24T04:21:10.010000"],["2024-07-24T04:21:11.010000"],["2024-07-24T04:21:12.010000"],["2024-07-24T04:21:13.010000"],["2024-07-24T04:21:14.010000"],["2024-07-24T04:21:15.010000"],["2024-07-24T04:21:16.010000"],["2024-07-24T04:21:17.010000"],["2024-07-24T04:21:18.010000"],["2024-07-24T04:21:19.010000"],["2024-07-24T04:21:20.010000"],["2024-07-24T04:21:21.010000"],["2024-07-24T04:21:22.010000"],["2024-07-24T04:21:23.010000"],["2024-07-24T04:21:24.010000"],["2024-07-24T04:21:25.010000"],["2024-07-24T04:21:26.010000"],["2024-07-24T04:21:27.010000"],["2024-07-24T04:21:28.010000"],["2024-07-24T04:21:29.010000"],["2024-07-24T04:21:30.010000"],["2024-07-24T04:21:31.010000"],["2024-07-24T04:21:32.010000"],["2024-07-24T04:21:33.010000"],["2024-07-24T04:21:34.010000"],["2024-07-24T04:21:35.010000"],["2024-07-24T04:21:36.010000"],["2024-07-24T04:21:37.010000"],["2024-07-24T04:21:38.010000"],["2024-07-24T04:21:39.010000"],["2024-07-24T04:21:40.010000"],["2024-07-24T04:21:41.010000"],["2024-07-24T04:21:42.010000"],["2024-07-24T04:21:43.010000"],["2024-07-24T04:21:44.010000"],["2024-07-24T04:21:45.010000"],["2024-07-24T04:21:46.010000"],["2024-07-24T04:21:47.010000"],["2024-07-24T04:21:48.010000"],["2024-07-24T04:21:49.010000"],["2024-07-24T04:21:50.010000"],["2024-07-24T04:21:51.010000"],["2024-07-24T04:21:52.010000"],["2024-07-24T04:21:53.010000"],["2024-07-24T04:21:54.010000"],["2024-07-24T04:21:55.010000"],["2024-07-24T04:21:56.010000"],["2024-07-24T04:21:57.010000"],["2024-07-24T04:21:58.010000"],["2024-07-24T04:21:59.010000"],["2024-07-24T04:22:00.010000"],["2024-07-24T04:22:01.010000"],["2024-07-24T04:22:02.010000"],["2024-07-24T04:22:03.010000"],["2024-07-24T04:22:04.010000"],["2024-07-24T04:22:05.010000"],["2024-07-24T04:22:06.010000"],["2024-07-24T04:22:07.010000"],["2024-07-24T04:22:08.010000"],["2024-07-24T04:22:09.010000"],["2024-07-24T04:22:10.010000"],["2024-07-24T04:22:11.010000"],["2024-07-24T04:22:12.010000"],["2024-07-24T04:22:13.010000"],["2024-07-24T04:22:14.010000"],["2024-07-24T04:22:15.010000"],["2024-07-24T04:22:16.010000"],["2024-07-24T04:22:17.010000"],["2024-07-24T04:22:18.010000"],["2024-07-24T04:22:19.010000"],["2024-07-24T04:22:20.010000"],["2024-07-24T04:22:21.010000"],["2024-07-24T04:22:22.010000"],["2024-07-24T04:22:23.010000"],["2024-07-24T04:22:24.010000"],["2024-07-24T04:22:25.010000"],["2024-07-24T04:22:26.010000"],["2024-07-24T04:22:27.010000"],["2024-07-24T04:22:28.010000"],["2024-07-24T04:22:29.010000"],["2024-07-24T04:22:30.010000"],["2024-07-24T04:22:31.010000"],["2024-07-24T04:22:32.010000"],["2024-07-24T04:22:33.010000"],["2024-07-24T04:22:34.010000"],["2024-07-24T04:22:35.010000"],["2024-07-24T04:22:36.010000"],["2024-07-24T04:22:37.010000"],["2024-07-24T04:22:38.010000"],["2024-07-24T04:22:39.010000"],["2024-07-24T04:22:40.010000"],["2024-07-24T04:22:41.010000"],["2024-07-24T04:22:42.010000"],["2024-07-24T04:22:43.010000"],["2024-07-24T04:22:44.010000"],["2024-07-24T04:22:45.010000"],["2024-07-24T04:22:46.010000"],["2024-07-24T04:22:47.010000"],["2024-07-24T04:22:48.010000"],["2024-07-24T04:22:49.010000"],["2024-07-24T04:22:50.010000"],["2024-07-24T04:22:51.010000"],["2024-07-24T04:22:52.010000"],["2024-07-24T04:22:53.010000"],["2024-07-24T04:22:54.010000"],["2024-07-24T04:22:55.010000"],["2024-07-24T04:22:56.010000"],["2024-07-24T04:22:57.010000"],["2024-07-24T04:22:58.010000"],["2024-07-24T04:22:59.010000"],["2024-07-24T04:23:00.010000"],["2024-07-24T04:23:01.010000"],["2024-07-24T04:23:02.010000"],["2024-07-24T04:23:03.010000"],["2024-07-24T04:23:04.010000"],["2024-07-24T04:23:05.010000"],["2024-07-24T04:23:06.010000"],["2024-07-24T04:23:07.010000"],["2024-07-24T04:23:08.010000"],["2024-07-24T04:23:09.010000"],["2024-07-24T04:23:10.010000"],["2024-07-24T04:23:11.010000"],["2024-07-24T04:23:12.010000"],["2024-07-24T04:23:13.010000"],["2024-07-24T04:23:14.010000"],["2024-07-24T04:23:15.010000"],["2024-07-24T04:23:16.010000"],["2024-07-24T04:23:17.010000"],["2024-07-24T04:23:18.010000"],["2024-07-24T04:23:19.010000"],["2024-07-24T04:23:20.010000"],["2024-07-24T04:23:21.010000"],["2024-07-24T04:23:22.010000"],["2024-07-24T04:23:23.010000"],["2024-07-24T04:23:24.010000"],["2024-07-24T04:23:25.010000"],["2024-07-24T04:23:26.010000"],["2024-07-24T04:23:27.010000"],["2024-07-24T04:23:28.010000"],["2024-07-24T04:23:29.010000"],["2024-07-24T04:23:30.010000"],["2024-07-24T04:23:31.010000"],["2024-07-24T04:23:32.010000"],["2024-07-24T04:23:33.010000"],["2024-07-24T04:23:34.010000"],["2024-07-24T04:23:35.010000"],["2024-07-24T04:23:36.010000"],["2024-07-24T04:23:37.010000"],["2024-07-24T04:23:38.010000"],["2024-07-24T04:23:39.010000"],["2024-07-24T04:23:40.010000"],["2024-07-24T04:23:41.010000"],["2024-07-24T04:23:42.010000"],["2024-07-24T04:23:43.010000"],["2024-07-24T04:23:44.010000"],["2024-07-24T04:23:45.010000"],["2024-07-24T04:23:46.010000"],["2024-07-24T04:23:47.010000"],["2024-07-24T04:23:48.010000"],["2024-07-24T04:23:49.010000"],["2024-07-24T04:23:50.010000"],["2024-07-24T04:23:51.010000"],["2024-07-24T04:23:52.010000"],["2024-07-24T04:23:53.010000"],["2024-07-24T04:23:54.010000"],["2024-07-24T04:23:55.010000"],["2024-07-24T04:23:56.010000"],["2024-07-24T04:23:57.010000"],["2024-07-24T04:23:58.010000"],["2024-07-24T04:23:59.010000"],["2024-07-24T04:24:00.010000"],["2024-07-24T04:24:01.010000"],["2024-07-24T04:24:02.010000"],["2024-07-24T04:24:03.010000"],["2024-07-24T04:24:04.010000"],["2024-07-24T04:24:05.010000"],["2024-07-24T04:24:06.010000"],["2024-07-24T04:24:07.010000"],["2024-07-24T04:24:08.010000"],["2024-07-24T04:24:09.010000"],["2024-07-24T04:24:10.010000"],["2024-07-24T04:24:11.010000"],["2024-07-24T04:24:12.010000"],["2024-07-24T04:24:13.010000"],["2024-07-24T04:24:14.010000"],["2024-07-24T04:24:15.010000"],["2024-07-24T04:24:16.010000"],["2024-07-24T04:24:17.010000"],["2024-07-24T04:24:18.010000"],["2024-07-24T04:24:19.010000"],["2024-07-24T04:24:20.010000"],["2024-07-24T04:24:21.010000"],["2024-07-24T04:24:22.010000"],["2024-07-24T04:24:23.010000"],["2024-07-24T04:24:24.010000"],["2024-07-24T04:24:25.010000"],["2024-07-24T04:24:26.010000"],["2024-07-24T04:24:27.010000"],["2024-07-24T04:24:28.010000"],["2024-07-24T04:24:29.010000"],["2024-07-24T04:24:30.010000"],["2024-07-24T04:24:31.010000"],["2024-07-24T04:24:32.010000"],["2024-07-24T04:24:33.010000"],["2024-07-24T04:24:34.010000"],["2024-07-24T04:24:35.010000"],["2024-07-24T04:24:36.010000"],["2024-07-24T04:24:37.010000"],["2024-07-24T04:24:38.010000"],["2024-07-24T04:24:39.010000"],["2024-07-24T04:24:40.010000"],["2024-07-24T04:24:41.010000"],["2024-07-24T04:24:42.010000"],["2024-07-24T04:24:43.010000"],["2024-07-24T04:24:44.010000"],["2024-07-24T04:24:45.010000"],["2024-07-24T04:24:46.010000"],["2024-07-24T04:24:47.010000"],["2024-07-24T04:24:48.010000"],["2024-07-24T04:24:49.010000"],["2024-07-24T04:24:50.010000"],["2024-07-24T04:24:51.010000"],["2024-07-24T04:24:52.010000"],["2024-07-24T04:24:53.010000"],["2024-07-24T04:24:54.010000"],["2024-07-24T04:24:55.010000"],["2024-07-24T04:24:56.010000"],["2024-07-24T04:24:57.010000"],["2024-07-24T04:24:58.010000"],["2024-07-24T04:24:59.010000"],["2024-07-24T04:25:00.010000"],["2024-07-24T04:25:01.010000"],["2024-07-24T04:25:02.010000"],["2024-07-24T04:25:03.010000"],["2024-07-24T04:25:04.010000"],["2024-07-24T04:25:05.010000"],["2024-07-24T04:25:06.010000"],["2024-07-24T04:25:07.010000"],["2024-07-24T04:25:08.010000"],["2024-07-24T04:25:09.010000"],["2024-07-24T04:25:10.010000"],["2024-07-24T04:25:11.010000"],["2024-07-24T04:25:12.010000"],["2024-07-24T04:25:13.010000"],["2024-07-24T04:25:14.010000"],["2024-07-24T04:25:15.010000"],["2024-07-24T04:25:16.010000"],["2024-07-24T04:25:17.010000"],["2024-07-24T04:25:18.010000"],["2024-07-24T04:25:19.010000"],["2024-07-24T04:25:20.010000"],["2024-07-24T04:25:21.010000"],["2024-07-24T04:25:22.010000"],["2024-07-24T04:25:23.010000"],["2024-07-24T04:25:24.010000"],["2024-07-24T04:25:25.010000"],["2024-07-24T04:25:26.010000"],["2024-07-24T04:25:27.010000"],["2024-07-24T04:25:28.010000"],["2024-07-24T04:25:29.010000"],["2024-07-24T04:25:30.010000"],["2024-07-24T04:25:31.010000"],["2024-07-24T04:25:32.010000"],["2024-07-24T04:25:33.010000"],["2024-07-24T04:25:34.010000"],["2024-07-24T04:25:35.010000"],["2024-07-24T04:25:36.010000"],["2024-07-24T04:25:37.010000"],["2024-07-24T04:25:38.010000"],["2024-07-24T04:25:39.010000"],["2024-07-24T04:25:40.010000"],["2024-07-24T04:25:41.010000"],["2024-07-24T04:25:42.010000"],["2024-07-24T04:25:43.010000"],["2024-07-24T04:25:44.010000"],["2024-07-24T04:25:45.010000"],["2024-07-24T04:25:46.010000"],["2024-07-24T04:25:47.010000"],["2024-07-24T04:25:48.010000"],["2024-07-24T04:25:49.010000"],["2024-07-24T04:25:50.010000"],["2024-07-24T04:25:51.010000"],["2024-07-24T04:25:52.010000"],["2024-07-24T04:25:53.010000"],["2024-07-24T04:25:54.010000"],["2024-07-24T04:25:55.010000"],["2024-07-24T04:25:56.010000"],["2024-07-24T04:25:57.010000"],["2024-07-24T04:25:58.010000"],["2024-07-24T04:25:59.010000"],["2024-07-24T04:26:00.010000"],["2024-07-24T04:26:01.010000"],["2024-07-24T04:26:02.010000"],["2024-07-24T04:26:03.010000"],["2024-07-24T04:26:04.010000"],["2024-07-24T04:26:05.010000"],["2024-07-24T04:26:06.010000"],["2024-07-24T04:26:07.010000"],["2024-07-24T04:26:08.010000"],["2024-07-24T04:26:09.010000"],["2024-07-24T04:26:10.010000"],["2024-07-24T04:26:11.010000"],["2024-07-24T04:26:12.010000"],["2024-07-24T04:26:13.010000"],["2024-07-24T04:26:14.010000"],["2024-07-24T04:26:15.010000"],["2024-07-24T04:26:16.010000"],["2024-07-24T04:26:17.010000"],["2024-07-24T04:26:18.010000"],["2024-07-24T04:26:19.010000"],["2024-07-24T04:26:20.010000"],["2024-07-24T04:26:21.010000"],["2024-07-24T04:26:22.010000"],["2024-07-24T04:26:23.010000"],["2024-07-24T04:26:24.010000"],["2024-07-24T04:26:25.010000"],["2024-07-24T04:26:26.010000"],["2024-07-24T04:26:27.010000"],["2024-07-24T04:26:28.010000"],["2024-07-24T04:26:29.010000"],["2024-07-24T04:26:30.010000"],["2024-07-24T04:26:31.010000"],["2024-07-24T04:26:32.010000"],["2024-07-24T04:26:33.010000"],["2024-07-24T04:26:34.010000"],["2024-07-24T04:26:35.010000"],["2024-07-24T04:26:36.010000"],["2024-07-24T04:26:37.010000"],["2024-07-24T04:26:38.010000"],["2024-07-24T04:26:39.010000"],["2024-07-24T04:26:40.010000"],["2024-07-24T04:26:41.010000"],["2024-07-24T04:26:42.010000"],["2024-07-24T04:26:43.010000"],["2024-07-24T04:26:44.010000"],["2024-07-24T04:26:45.010000"],["2024-07-24T04:26:46.010000"],["2024-07-24T04:26:47.010000"],["2024-07-24T04:26:48.010000"],["2024-07-24T04:26:49.010000"],["2024-07-24T04:26:50.010000"],["2024-07-24T04:26:51.010000"],["2024-07-24T04:26:52.010000"],["2024-07-24T04:26:53.010000"],["2024-07-24T04:26:54.010000"],["2024-07-24T04:26:55.010000"],["2024-07-24T04:26:56.010000"],["2024-07-24T04:26:57.010000"],["2024-07-24T04:26:58.010000"],["2024-07-24T04:26:59.010000"],["2024-07-24T04:27:00.010000"],["2024-07-24T04:27:01.010000"],["2024-07-24T04:27:02.010000"],["2024-07-24T04:27:03.010000"],["2024-07-24T04:27:04.010000"],["2024-07-24T04:27:05.010000"],["2024-07-24T04:27:06.010000"],["2024-07-24T04:27:07.010000"],["2024-07-24T04:27:08.010000"],["2024-07-24T04:27:09.010000"],["2024-07-24T04:27:10.010000"],["2024-07-24T04:27:11.010000"],["2024-07-24T04:27:12.010000"],["2024-07-24T04:27:13.010000"],["2024-07-24T04:27:14.010000"],["2024-07-24T04:27:15.010000"],["2024-07-24T04:27:16.010000"],["2024-07-24T04:27:17.010000"],["2024-07-24T04:27:18.010000"],["2024-07-24T04:27:19.010000"],["2024-07-24T04:27:20.010000"],["2024-07-24T04:27:21.010000"],["2024-07-24T04:27:22.010000"],["2024-07-24T04:27:23.010000"],["2024-07-24T04:27:24.010000"],["2024-07-24T04:27:25.010000"],["2024-07-24T04:27:26.010000"],["2024-07-24T04:27:27.010000"],["2024-07-24T04:27:28.010000"],["2024-07-24T04:27:29.010000"],["2024-07-24T04:27:30.010000"],["2024-07-24T04:27:31.010000"],["2024-07-24T04:27:32.010000"],["2024-07-24T04:27:33.010000"],["2024-07-24T04:27:34.010000"],["2024-07-24T04:27:35.010000"],["2024-07-24T04:27:36.010000"],["2024-07-24T04:27:37.010000"],["2024-07-24T04:27:38.010000"],["2024-07-24T04:27:39.010000"],["2024-07-24T04:27:40.010000"],["2024-07-24T04:27:41.010000"],["2024-07-24T04:27:42.010000"],["2024-07-24T04:27:43.010000"],["2024-07-24T04:27:44.010000"],["2024-07-24T04:27:45.010000"],["2024-07-24T04:27:46.010000"],["2024-07-24T04:27:47.010000"],["2024-07-24T04:27:48.010000"],["2024-07-24T04:27:49.010000"],["2024-07-24T04:27:50.010000"],["2024-07-24T04:27:51.010000"],["2024-07-24T04:27:52.010000"],["2024-07-24T04:27:53.010000"],["2024-07-24T04:27:54.010000"],["2024-07-24T04:27:55.010000"],["2024-07-24T04:27:56.010000"],["2024-07-24T04:27:57.010000"],["2024-07-24T04:27:58.010000"],["2024-07-24T04:27:59.010000"],["2024-07-24T04:28:00.010000"],["2024-07-24T04:28:01.010000"],["2024-07-24T04:28:02.010000"],["2024-07-24T04:28:03.010000"],["2024-07-24T04:28:04.010000"],["2024-07-24T04:28:05.010000"],["2024-07-24T04:28:06.010000"],["2024-07-24T04:28:07.010000"],["2024-07-24T04:28:08.010000"],["2024-07-24T04:28:09.010000"],["2024-07-24T04:28:10.010000"],["2024-07-24T04:28:11.010000"],["2024-07-24T04:28:12.010000"],["2024-07-24T04:28:13.010000"],["2024-07-24T04:28:14.010000"],["2024-07-24T04:28:15.010000"],["2024-07-24T04:28:16.010000"],["2024-07-24T04:28:17.010000"],["2024-07-24T04:28:18.010000"],["2024-07-24T04:28:19.010000"],["2024-07-24T04:28:20.010000"],["2024-07-24T04:28:21.010000"],["2024-07-24T04:28:22.010000"],["2024-07-24T04:28:23.010000"],["2024-07-24T04:28:24.010000"],["2024-07-24T04:28:25.010000"],["2024-07-24T04:28:26.010000"],["2024-07-24T04:28:27.010000"],["2024-07-24T04:28:28.010000"],["2024-07-24T04:28:29.010000"],["2024-07-24T04:28:30.010000"],["2024-07-24T04:28:31.010000"],["2024-07-24T04:28:32.010000"],["2024-07-24T04:28:33.010000"],["2024-07-24T04:28:34.010000"],["2024-07-24T04:28:35.010000"],["2024-07-24T04:28:36.010000"],["2024-07-24T04:28:37.010000"],["2024-07-24T04:28:38.010000"],["2024-07-24T04:28:39.010000"],["2024-07-24T04:28:40.010000"],["2024-07-24T04:28:41.010000"],["2024-07-24T04:28:42.010000"],["2024-07-24T04:28:43.010000"],["2024-07-24T04:28:44.010000"],["2024-07-24T04:28:45.010000"],["2024-07-24T04:28:46.010000"],["2024-07-24T04:28:47.010000"],["2024-07-24T04:28:48.010000"],["2024-07-24T04:28:49.010000"],["2024-07-24T04:28:50.010000"],["2024-07-24T04:28:51.010000"],["2024-07-24T04:28:52.010000"],["2024-07-24T04:28:53.010000"],["2024-07-24T04:28:54.010000"],["2024-07-24T04:28:55.010000"],["2024-07-24T04:28:56.010000"],["2024-07-24T04:28:57.010000"],["2024-07-24T04:28:58.010000"],["2024-07-24T04:28:59.010000"],["2024-07-24T04:29:00.010000"],["2024-07-24T04:29:01.010000"],["2024-07-24T04:29:02.010000"],["2024-07-24T04:29:03.010000"],["2024-07-24T04:29:04.010000"],["2024-07-24T04:29:05.010000"],["2024-07-24T04:29:06.010000"],["2024-07-24T04:29:07.010000"],["2024-07-24T04:29:08.010000"],["2024-07-24T04:29:09.010000"],["2024-07-24T04:29:10.010000"],["2024-07-24T04:29:11.010000"],["2024-07-24T04:29:12.010000"],["2024-07-24T04:29:13.010000"],["2024-07-24T04:29:14.010000"],["2024-07-24T04:29:15.010000"],["2024-07-24T04:29:16.010000"],["2024-07-24T04:29:17.010000"],["2024-07-24T04:29:18.010000"],["2024-07-24T04:29:19.010000"],["2024-07-24T04:29:20.010000"],["2024-07-24T04:29:21.010000"],["2024-07-24T04:29:22.010000"],["2024-07-24T04:29:23.010000"],["2024-07-24T04:29:24.010000"],["2024-07-24T04:29:25.010000"],["2024-07-24T04:29:26.010000"],["2024-07-24T04:29:27.010000"],["2024-07-24T04:29:28.010000"],["2024-07-24T04:29:29.010000"],["2024-07-24T04:29:30.010000"],["2024-07-24T04:29:31.010000"],["2024-07-24T04:29:32.010000"],["2024-07-24T04:29:33.010000"],["2024-07-24T04:29:34.010000"],["2024-07-24T04:29:35.010000"],["2024-07-24T04:29:36.010000"],["2024-07-24T04:29:37.010000"],["2024-07-24T04:29:38.010000"],["2024-07-24T04:29:39.010000"],["2024-07-24T04:29:40.010000"],["2024-07-24T04:29:41.010000"],["2024-07-24T04:29:42.010000"],["2024-07-24T04:29:43.010000"],["2024-07-24T04:29:44.010000"],["2024-07-24T04:29:45.010000"],["2024-07-24T04:29:46.010000"],["2024-07-24T04:29:47.010000"],["2024-07-24T04:29:48.010000"],["2024-07-24T04:29:49.010000"],["2024-07-24T04:29:50.010000"],["2024-07-24T04:29:51.010000"],["2024-07-24T04:29:52.010000"],["2024-07-24T04:29:53.010000"],["2024-07-24T04:29:54.010000"],["2024-07-24T04:29:55.010000"],["2024-07-24T04:29:56.010000"],["2024-07-24T04:29:57.010000"],["2024-07-24T04:29:58.010000"],["2024-07-24T04:29:59.010000"],["2024-07-24T04:30:00.010000"],["2024-07-24T04:30:01.010000"],["2024-07-24T04:30:02.010000"],["2024-07-24T04:30:03.010000"],["2024-07-24T04:30:04.010000"],["2024-07-24T04:30:05.010000"],["2024-07-24T04:30:06.010000"],["2024-07-24T04:30:07.010000"],["2024-07-24T04:30:08.010000"],["2024-07-24T04:30:09.010000"],["2024-07-24T04:30:10.010000"],["2024-07-24T04:30:11.010000"],["2024-07-24T04:30:12.010000"],["2024-07-24T04:30:13.010000"],["2024-07-24T04:30:14.010000"],["2024-07-24T04:30:15.010000"],["2024-07-24T04:30:16.010000"],["2024-07-24T04:30:17.010000"],["2024-07-24T04:30:18.010000"],["2024-07-24T04:30:19.010000"],["2024-07-24T04:30:20.010000"],["2024-07-24T04:30:21.010000"],["2024-07-24T04:30:22.010000"],["2024-07-24T04:30:23.010000"],["2024-07-24T04:30:24.010000"],["2024-07-24T04:30:25.010000"],["2024-07-24T04:30:26.010000"],["2024-07-24T04:30:27.010000"],["2024-07-24T04:30:28.010000"],["2024-07-24T04:30:29.010000"],["2024-07-24T04:30:30.010000"],["2024-07-24T04:30:31.010000"],["2024-07-24T04:30:32.010000"],["2024-07-24T04:30:33.010000"],["2024-07-24T04:30:34.010000"],["2024-07-24T04:30:35.010000"],["2024-07-24T04:30:36.010000"],["2024-07-24T04:30:37.010000"],["2024-07-24T04:30:38.010000"],["2024-07-24T04:30:39.010000"],["2024-07-24T04:30:40.010000"],["2024-07-24T04:30:41.010000"],["2024-07-24T04:30:42.010000"],["2024-07-24T04:30:43.010000"],["2024-07-24T04:30:44.010000"],["2024-07-24T04:30:45.010000"],["2024-07-24T04:30:46.010000"],["2024-07-24T04:30:47.010000"],["2024-07-24T04:30:48.010000"],["2024-07-24T04:30:49.010000"],["2024-07-24T04:30:50.010000"],["2024-07-24T04:30:51.010000"],["2024-07-24T04:30:52.010000"],["2024-07-24T04:30:53.010000"],["2024-07-24T04:30:54.010000"],["2024-07-24T04:30:55.010000"],["2024-07-24T04:30:56.010000"],["2024-07-24T04:30:57.010000"],["2024-07-24T04:30:58.010000"],["2024-07-24T04:30:59.010000"],["2024-07-24T04:31:00.010000"],["2024-07-24T04:31:01.010000"],["2024-07-24T04:31:02.010000"],["2024-07-24T04:31:03.010000"],["2024-07-24T04:31:04.010000"],["2024-07-24T04:31:05.010000"],["2024-07-24T04:31:06.010000"],["2024-07-24T04:31:07.010000"],["2024-07-24T04:31:08.010000"],["2024-07-24T04:31:09.010000"],["2024-07-24T04:31:10.010000"],["2024-07-24T04:31:11.010000"],["2024-07-24T04:31:12.010000"],["2024-07-24T04:31:13.010000"],["2024-07-24T04:31:14.010000"],["2024-07-24T04:31:15.010000"],["2024-07-24T04:31:16.010000"],["2024-07-24T04:31:17.010000"],["2024-07-24T04:31:18.010000"],["2024-07-24T04:31:19.010000"],["2024-07-24T04:31:20.010000"],["2024-07-24T04:31:21.010000"],["2024-07-24T04:31:22.010000"],["2024-07-24T04:31:23.010000"],["2024-07-24T04:31:24.010000"],["2024-07-24T04:31:25.010000"],["2024-07-24T04:31:26.010000"],["2024-07-24T04:31:27.010000"],["2024-07-24T04:31:28.010000"],["2024-07-24T04:31:29.010000"],["2024-07-24T04:31:30.010000"],["2024-07-24T04:31:31.010000"],["2024-07-24T04:31:32.010000"],["2024-07-24T04:31:33.010000"],["2024-07-24T04:31:34.010000"],["2024-07-24T04:31:35.010000"],["2024-07-24T04:31:36.010000"],["2024-07-24T04:31:37.010000"],["2024-07-24T04:31:38.010000"],["2024-07-24T04:31:39.010000"],["2024-07-24T04:31:40.010000"],["2024-07-24T04:31:41.010000"],["2024-07-24T04:31:42.010000"],["2024-07-24T04:31:43.010000"],["2024-07-24T04:31:44.010000"],["2024-07-24T04:31:45.010000"],["2024-07-24T04:31:46.010000"],["2024-07-24T04:31:47.010000"],["2024-07-24T04:31:48.010000"],["2024-07-24T04:31:49.010000"],["2024-07-24T04:31:50.010000"],["2024-07-24T04:31:51.010000"],["2024-07-24T04:31:52.010000"],["2024-07-24T04:31:53.010000"],["2024-07-24T04:31:54.010000"],["2024-07-24T04:31:55.010000"],["2024-07-24T04:31:56.010000"],["2024-07-24T04:31:57.010000"],["2024-07-24T04:31:58.010000"],["2024-07-24T04:31:59.010000"],["2024-07-24T04:32:00.010000"],["2024-07-24T04:32:01.010000"],["2024-07-24T04:32:02.010000"],["2024-07-24T04:32:03.010000"],["2024-07-24T04:32:04.010000"],["2024-07-24T04:32:05.010000"],["2024-07-24T04:32:06.010000"],["2024-07-24T04:32:07.010000"],["2024-07-24T04:32:08.010000"],["2024-07-24T04:32:09.010000"],["2024-07-24T04:32:10.010000"],["2024-07-24T04:32:11.010000"],["2024-07-24T04:32:12.010000"],["2024-07-24T04:32:13.010000"],["2024-07-24T04:32:14.010000"],["2024-07-24T04:32:15.010000"],["2024-07-24T04:32:16.010000"],["2024-07-24T04:32:17.010000"],["2024-07-24T04:32:18.010000"],["2024-07-24T04:32:19.010000"],["2024-07-24T04:32:20.010000"],["2024-07-24T04:32:21.010000"],["2024-07-24T04:32:22.010000"],["2024-07-24T04:32:23.010000"],["2024-07-24T04:32:24.010000"],["2024-07-24T04:32:25.010000"],["2024-07-24T04:32:26.010000"],["2024-07-24T04:32:27.010000"],["2024-07-24T04:32:28.010000"],["2024-07-24T04:32:29.010000"],["2024-07-24T04:32:30.010000"],["2024-07-24T04:32:31.010000"],["2024-07-24T04:32:32.010000"],["2024-07-24T04:32:33.010000"],["2024-07-24T04:32:34.010000"],["2024-07-24T04:32:35.010000"],["2024-07-24T04:32:36.010000"],["2024-07-24T04:32:37.010000"],["2024-07-24T04:32:38.010000"],["2024-07-24T04:32:39.010000"],["2024-07-24T04:32:40.010000"],["2024-07-24T04:32:41.010000"],["2024-07-24T04:32:42.010000"],["2024-07-24T04:32:43.010000"],["2024-07-24T04:32:44.010000"],["2024-07-24T04:32:45.010000"],["2024-07-24T04:32:46.010000"],["2024-07-24T04:32:47.010000"],["2024-07-24T04:32:48.010000"],["2024-07-24T04:32:49.010000"],["2024-07-24T04:32:50.010000"],["2024-07-24T04:32:51.010000"],["2024-07-24T04:32:52.010000"],["2024-07-24T04:32:53.010000"],["2024-07-24T04:32:54.010000"],["2024-07-24T04:32:55.010000"],["2024-07-24T04:32:56.010000"],["2024-07-24T04:32:57.010000"],["2024-07-24T04:32:58.010000"],["2024-07-24T04:32:59.010000"],["2024-07-24T04:33:00.010000"],["2024-07-24T04:33:01.010000"],["2024-07-24T04:33:02.010000"],["2024-07-24T04:33:03.010000"],["2024-07-24T04:33:04.010000"],["2024-07-24T04:33:05.010000"],["2024-07-24T04:33:06.010000"],["2024-07-24T04:33:07.010000"],["2024-07-24T04:33:08.010000"],["2024-07-24T04:33:09.010000"],["2024-07-24T04:33:10.010000"],["2024-07-24T04:33:11.010000"],["2024-07-24T04:33:12.010000"],["2024-07-24T04:33:13.010000"],["2024-07-24T04:33:14.010000"],["2024-07-24T04:33:15.010000"],["2024-07-24T04:33:16.010000"],["2024-07-24T04:33:17.010000"],["2024-07-24T04:33:18.010000"],["2024-07-24T04:33:19.010000"],["2024-07-24T04:33:20.010000"],["2024-07-24T04:33:21.010000"],["2024-07-24T04:33:22.010000"],["2024-07-24T04:33:23.010000"],["2024-07-24T04:33:24.010000"],["2024-07-24T04:33:25.010000"],["2024-07-24T04:33:26.010000"],["2024-07-24T04:33:27.010000"],["2024-07-24T04:33:28.010000"],["2024-07-24T04:33:29.010000"],["2024-07-24T04:33:30.010000"],["2024-07-24T04:33:31.010000"],["2024-07-24T04:33:32.010000"],["2024-07-24T04:33:33.010000"],["2024-07-24T04:33:34.010000"],["2024-07-24T04:33:35.010000"],["2024-07-24T04:33:36.010000"],["2024-07-24T04:33:37.010000"],["2024-07-24T04:33:38.010000"],["2024-07-24T04:33:39.010000"],["2024-07-24T04:33:40.010000"],["2024-07-24T04:33:41.010000"],["2024-07-24T04:33:42.010000"],["2024-07-24T04:33:43.010000"],["2024-07-24T04:33:44.010000"],["2024-07-24T04:33:45.010000"],["2024-07-24T04:33:46.010000"],["2024-07-24T04:33:47.010000"],["2024-07-24T04:33:48.010000"],["2024-07-24T04:33:49.010000"],["2024-07-24T04:33:50.010000"],["2024-07-24T04:33:51.010000"],["2024-07-24T04:33:52.010000"],["2024-07-24T04:33:53.010000"],["2024-07-24T04:33:54.010000"],["2024-07-24T04:33:55.010000"],["2024-07-24T04:33:56.010000"],["2024-07-24T04:33:57.010000"],["2024-07-24T04:33:58.010000"],["2024-07-24T04:33:59.010000"],["2024-07-24T04:34:00.010000"],["2024-07-24T04:34:01.010000"],["2024-07-24T04:34:02.010000"],["2024-07-24T04:34:03.010000"],["2024-07-24T04:34:04.010000"],["2024-07-24T04:34:05.010000"],["2024-07-24T04:34:06.010000"],["2024-07-24T04:34:07.010000"],["2024-07-24T04:34:08.010000"],["2024-07-24T04:34:09.010000"],["2024-07-24T04:34:10.010000"],["2024-07-24T04:34:11.010000"],["2024-07-24T04:34:12.010000"],["2024-07-24T04:34:13.010000"],["2024-07-24T04:34:14.010000"],["2024-07-24T04:34:15.010000"],["2024-07-24T04:34:16.010000"],["2024-07-24T04:34:17.010000"],["2024-07-24T04:34:18.010000"],["2024-07-24T04:34:19.010000"],["2024-07-24T04:34:20.010000"],["2024-07-24T04:34:21.010000"],["2024-07-24T04:34:22.010000"],["2024-07-24T04:34:23.010000"],["2024-07-24T04:34:24.010000"],["2024-07-24T04:34:25.010000"],["2024-07-24T04:34:26.010000"],["2024-07-24T04:34:27.010000"],["2024-07-24T04:34:28.010000"],["2024-07-24T04:34:29.010000"],["2024-07-24T04:34:30.010000"],["2024-07-24T04:34:31.010000"],["2024-07-24T04:34:32.010000"],["2024-07-24T04:34:33.010000"],["2024-07-24T04:34:34.010000"],["2024-07-24T04:34:35.010000"],["2024-07-24T04:34:36.010000"],["2024-07-24T04:34:37.010000"],["2024-07-24T04:34:38.010000"],["2024-07-24T04:34:39.010000"],["2024-07-24T04:34:40.010000"],["2024-07-24T04:34:41.010000"],["2024-07-24T04:34:42.010000"],["2024-07-24T04:34:43.010000"],["2024-07-24T04:34:44.010000"],["2024-07-24T04:34:45.010000"],["2024-07-24T04:34:46.010000"],["2024-07-24T04:34:47.010000"],["2024-07-24T04:34:48.010000"],["2024-07-24T04:34:49.010000"],["2024-07-24T04:34:50.010000"],["2024-07-24T04:34:51.010000"],["2024-07-24T04:34:52.010000"],["2024-07-24T04:34:53.010000"],["2024-07-24T04:34:54.010000"],["2024-07-24T04:34:55.010000"],["2024-07-24T04:34:56.010000"],["2024-07-24T04:34:57.010000"],["2024-07-24T04:34:58.010000"],["2024-07-24T04:34:59.010000"],["2024-07-24T04:35:00.010000"],["2024-07-24T04:35:01.010000"],["2024-07-24T04:35:02.010000"],["2024-07-24T04:35:03.010000"],["2024-07-24T04:35:04.010000"],["2024-07-24T04:35:05.010000"],["2024-07-24T04:35:06.010000"],["2024-07-24T04:35:07.010000"],["2024-07-24T04:35:08.010000"],["2024-07-24T04:35:09.010000"],["2024-07-24T04:35:10.010000"],["2024-07-24T04:35:11.010000"],["2024-07-24T04:35:12.010000"],["2024-07-24T04:35:13.010000"],["2024-07-24T04:35:14.010000"],["2024-07-24T04:35:15.010000"],["2024-07-24T04:35:16.010000"],["2024-07-24T04:35:17.010000"],["2024-07-24T04:35:18.010000"],["2024-07-24T04:35:19.010000"],["2024-07-24T04:35:20.010000"],["2024-07-24T04:35:21.010000"],["2024-07-24T04:35:22.010000"],["2024-07-24T04:35:23.010000"],["2024-07-24T04:35:24.010000"],["2024-07-24T04:35:25.010000"],["2024-07-24T04:35:26.010000"],["2024-07-24T04:35:27.010000"],["2024-07-24T04:35:28.010000"],["2024-07-24T04:35:29.010000"],["2024-07-24T04:35:30.010000"],["2024-07-24T04:35:31.010000"],["2024-07-24T04:35:32.010000"],["2024-07-24T04:35:33.010000"],["2024-07-24T04:35:34.010000"],["2024-07-24T04:35:35.010000"],["2024-07-24T04:35:36.010000"],["2024-07-24T04:35:37.010000"],["2024-07-24T04:35:38.010000"],["2024-07-24T04:35:39.010000"],["2024-07-24T04:35:40.010000"],["2024-07-24T04:35:41.010000"],["2024-07-24T04:35:42.010000"],["2024-07-24T04:35:43.010000"],["2024-07-24T04:35:44.010000"],["2024-07-24T04:35:45.010000"],["2024-07-24T04:35:46.010000"],["2024-07-24T04:35:47.010000"],["2024-07-24T04:35:48.010000"],["2024-07-24T04:35:49.010000"],["2024-07-24T04:35:50.010000"],["2024-07-24T04:35:51.010000"],["2024-07-24T04:35:52.010000"],["2024-07-24T04:35:53.010000"],["2024-07-24T04:35:54.010000"],["2024-07-24T04:35:55.010000"],["2024-07-24T04:35:56.010000"],["2024-07-24T04:35:57.010000"],["2024-07-24T04:35:58.010000"],["2024-07-24T04:35:59.010000"],["2024-07-24T04:36:00.010000"],["2024-07-24T04:36:01.010000"],["2024-07-24T04:36:02.010000"],["2024-07-24T04:36:03.010000"],["2024-07-24T04:36:04.010000"],["2024-07-24T04:36:05.010000"],["2024-07-24T04:36:06.010000"],["2024-07-24T04:36:07.010000"],["2024-07-24T04:36:08.010000"],["2024-07-24T04:36:09.010000"],["2024-07-24T04:36:10.010000"],["2024-07-24T04:36:11.010000"],["2024-07-24T04:36:12.010000"],["2024-07-24T04:36:13.010000"],["2024-07-24T04:36:14.010000"],["2024-07-24T04:36:15.010000"],["2024-07-24T04:36:16.010000"],["2024-07-24T04:36:17.010000"],["2024-07-24T04:36:18.010000"],["2024-07-24T04:36:19.010000"],["2024-07-24T04:36:20.010000"],["2024-07-24T04:36:21.010000"],["2024-07-24T04:36:22.010000"],["2024-07-24T04:36:23.010000"],["2024-07-24T04:36:24.010000"],["2024-07-24T04:36:25.010000"],["2024-07-24T04:36:26.010000"],["2024-07-24T04:36:27.010000"],["2024-07-24T04:36:28.010000"],["2024-07-24T04:36:29.010000"],["2024-07-24T04:36:30.010000"],["2024-07-24T04:36:31.010000"],["2024-07-24T04:36:32.010000"],["2024-07-24T04:36:33.010000"],["2024-07-24T04:36:34.010000"],["2024-07-24T04:36:35.010000"],["2024-07-24T04:36:36.010000"],["2024-07-24T04:36:37.010000"],["2024-07-24T04:36:38.010000"],["2024-07-24T04:36:39.010000"],["2024-07-24T04:36:40.010000"],["2024-07-24T04:36:41.010000"],["2024-07-24T04:36:42.010000"],["2024-07-24T04:36:43.010000"],["2024-07-24T04:36:44.010000"],["2024-07-24T04:36:45.010000"],["2024-07-24T04:36:46.010000"],["2024-07-24T04:36:47.010000"],["2024-07-24T04:36:48.010000"],["2024-07-24T04:36:49.010000"],["2024-07-24T04:36:50.010000"],["2024-07-24T04:36:51.010000"],["2024-07-24T04:36:52.010000"],["2024-07-24T04:36:53.010000"],["2024-07-24T04:36:54.010000"],["2024-07-24T04:36:55.010000"],["2024-07-24T04:36:56.010000"],["2024-07-24T04:36:57.010000"],["2024-07-24T04:36:58.010000"],["2024-07-24T04:36:59.010000"],["2024-07-24T04:37:00.010000"],["2024-07-24T04:37:01.010000"],["2024-07-24T04:37:02.010000"],["2024-07-24T04:37:03.010000"],["2024-07-24T04:37:04.010000"],["2024-07-24T04:37:05.010000"],["2024-07-24T04:37:06.010000"],["2024-07-24T04:37:07.010000"],["2024-07-24T04:37:08.010000"],["2024-07-24T04:37:09.010000"],["2024-07-24T04:37:10.010000"],["2024-07-24T04:37:11.010000"],["2024-07-24T04:37:12.010000"],["2024-07-24T04:37:13.010000"],["2024-07-24T04:37:14.010000"],["2024-07-24T04:37:15.010000"],["2024-07-24T04:37:16.010000"],["2024-07-24T04:37:17.010000"],["2024-07-24T04:37:18.010000"],["2024-07-24T04:37:19.010000"],["2024-07-24T04:37:20.010000"],["2024-07-24T04:37:21.010000"],["2024-07-24T04:37:22.010000"],["2024-07-24T04:37:23.010000"],["2024-07-24T04:37:24.010000"],["2024-07-24T04:37:25.010000"],["2024-07-24T04:37:26.010000"],["2024-07-24T04:37:27.010000"],["2024-07-24T04:37:28.010000"],["2024-07-24T04:37:29.010000"],["2024-07-24T04:37:30.010000"],["2024-07-24T04:37:31.010000"],["2024-07-24T04:37:32.010000"],["2024-07-24T04:37:33.010000"],["2024-07-24T04:37:34.010000"],["2024-07-24T04:37:35.010000"],["2024-07-24T04:37:36.010000"],["2024-07-24T04:37:37.010000"],["2024-07-24T04:37:38.010000"],["2024-07-24T04:37:39.010000"],["2024-07-24T04:37:40.010000"],["2024-07-24T04:37:41.010000"],["2024-07-24T04:37:42.010000"],["2024-07-24T04:37:43.010000"],["2024-07-24T04:37:44.010000"],["2024-07-24T04:37:45.010000"],["2024-07-24T04:37:46.010000"],["2024-07-24T04:37:47.010000"],["2024-07-24T04:37:48.010000"],["2024-07-24T04:37:49.010000"],["2024-07-24T04:37:50.010000"],["2024-07-24T04:37:51.010000"],["2024-07-24T04:37:52.010000"],["2024-07-24T04:37:53.010000"],["2024-07-24T04:37:54.010000"],["2024-07-24T04:37:55.010000"],["2024-07-24T04:37:56.010000"],["2024-07-24T04:37:57.010000"],["2024-07-24T04:37:58.010000"],["2024-07-24T04:37:59.010000"],["2024-07-24T04:38:00.010000"],["2024-07-24T04:38:01.010000"],["2024-07-24T04:38:02.010000"],["2024-07-24T04:38:03.010000"],["2024-07-24T04:38:04.010000"],["2024-07-24T04:38:05.010000"],["2024-07-24T04:38:06.010000"],["2024-07-24T04:38:07.010000"],["2024-07-24T04:38:08.010000"],["2024-07-24T04:38:09.010000"],["2024-07-24T04:38:10.010000"],["2024-07-24T04:38:11.010000"],["2024-07-24T04:38:12.010000"],["2024-07-24T04:38:13.010000"],["2024-07-24T04:38:14.010000"],["2024-07-24T04:38:15.010000"],["2024-07-24T04:38:16.010000"],["2024-07-24T04:38:17.010000"],["2024-07-24T04:38:18.010000"],["2024-07-24T04:38:19.010000"],["2024-07-24T04:38:20.010000"],["2024-07-24T04:38:21.010000"],["2024-07-24T04:38:22.010000"],["2024-07-24T04:38:23.010000"],["2024-07-24T04:38:24.010000"],["2024-07-24T04:38:25.010000"],["2024-07-24T04:38:26.010000"],["2024-07-24T04:38:27.010000"],["2024-07-24T04:38:28.010000"],["2024-07-24T04:38:29.010000"],["2024-07-24T04:38:30.010000"],["2024-07-24T04:38:31.010000"],["2024-07-24T04:38:32.010000"],["2024-07-24T04:38:33.010000"],["2024-07-24T04:38:34.010000"],["2024-07-24T04:38:35.010000"],["2024-07-24T04:38:36.010000"],["2024-07-24T04:38:37.010000"],["2024-07-24T04:38:38.010000"],["2024-07-24T04:38:39.010000"],["2024-07-24T04:38:40.010000"],["2024-07-24T04:38:41.010000"],["2024-07-24T04:38:42.010000"],["2024-07-24T04:38:43.010000"],["2024-07-24T04:38:44.010000"],["2024-07-24T04:38:45.010000"],["2024-07-24T04:38:46.010000"],["2024-07-24T04:38:47.010000"],["2024-07-24T04:38:48.010000"],["2024-07-24T04:38:49.010000"],["2024-07-24T04:38:50.010000"],["2024-07-24T04:38:51.010000"],["2024-07-24T04:38:52.010000"],["2024-07-24T04:38:53.010000"],["2024-07-24T04:38:54.010000"],["2024-07-24T04:38:55.010000"],["2024-07-24T04:38:56.010000"],["2024-07-24T04:38:57.010000"],["2024-07-24T04:38:58.010000"],["2024-07-24T04:38:59.010000"],["2024-07-24T04:39:00.010000"],["2024-07-24T04:39:01.010000"],["2024-07-24T04:39:02.010000"],["2024-07-24T04:39:03.010000"],["2024-07-24T04:39:04.010000"],["2024-07-24T04:39:05.010000"],["2024-07-24T04:39:06.010000"],["2024-07-24T04:39:07.010000"],["2024-07-24T04:39:08.010000"],["2024-07-24T04:39:09.010000"],["2024-07-24T04:39:10.010000"],["2024-07-24T04:39:11.010000"],["2024-07-24T04:39:12.010000"],["2024-07-24T04:39:13.010000"],["2024-07-24T04:39:14.010000"],["2024-07-24T04:39:15.010000"],["2024-07-24T04:39:16.010000"],["2024-07-24T04:39:17.010000"],["2024-07-24T04:39:18.010000"],["2024-07-24T04:39:19.010000"],["2024-07-24T04:39:20.010000"],["2024-07-24T04:39:21.010000"],["2024-07-24T04:39:22.010000"],["2024-07-24T04:39:23.010000"],["2024-07-24T04:39:24.010000"],["2024-07-24T04:39:25.010000"],["2024-07-24T04:39:26.010000"],["2024-07-24T04:39:27.010000"],["2024-07-24T04:39:28.010000"],["2024-07-24T04:39:29.010000"],["2024-07-24T04:39:30.010000"],["2024-07-24T04:39:31.010000"],["2024-07-24T04:39:32.010000"],["2024-07-24T04:39:33.010000"],["2024-07-24T04:39:34.010000"],["2024-07-24T04:39:35.010000"],["2024-07-24T04:39:36.010000"],["2024-07-24T04:39:37.010000"],["2024-07-24T04:39:38.010000"],["2024-07-24T04:39:39.010000"],["2024-07-24T04:39:40.010000"],["2024-07-24T04:39:41.010000"],["2024-07-24T04:39:42.010000"],["2024-07-24T04:39:43.010000"],["2024-07-24T04:39:44.010000"],["2024-07-24T04:39:45.010000"],["2024-07-24T04:39:46.010000"],["2024-07-24T04:39:47.010000"],["2024-07-24T04:39:48.010000"],["2024-07-24T04:39:49.010000"],["2024-07-24T04:39:50.010000"],["2024-07-24T04:39:51.010000"],["2024-07-24T04:39:52.010000"],["2024-07-24T04:39:53.010000"],["2024-07-24T04:39:54.010000"],["2024-07-24T04:39:55.010000"],["2024-07-24T04:39:56.010000"],["2024-07-24T04:39:57.010000"],["2024-07-24T04:39:58.010000"],["2024-07-24T04:39:59.010000"],["2024-07-24T04:40:00.010000"],["2024-07-24T04:40:01.010000"],["2024-07-24T04:40:02.010000"],["2024-07-24T04:40:03.010000"],["2024-07-24T04:40:04.010000"],["2024-07-24T04:40:05.010000"],["2024-07-24T04:40:06.010000"],["2024-07-24T04:40:07.010000"],["2024-07-24T04:40:08.010000"],["2024-07-24T04:40:09.010000"],["2024-07-24T04:40:10.010000"],["2024-07-24T04:40:11.010000"],["2024-07-24T04:40:12.010000"],["2024-07-24T04:40:13.010000"],["2024-07-24T04:40:14.010000"],["2024-07-24T04:40:15.010000"],["2024-07-24T04:40:16.010000"],["2024-07-24T04:40:17.010000"],["2024-07-24T04:40:18.010000"],["2024-07-24T04:40:19.010000"],["2024-07-24T04:40:20.010000"],["2024-07-24T04:40:21.010000"],["2024-07-24T04:40:22.010000"],["2024-07-24T04:40:23.010000"],["2024-07-24T04:40:24.010000"],["2024-07-24T04:40:25.010000"],["2024-07-24T04:40:26.010000"],["2024-07-24T04:40:27.010000"],["2024-07-24T04:40:28.010000"],["2024-07-24T04:40:29.010000"],["2024-07-24T04:40:30.010000"],["2024-07-24T04:40:31.010000"],["2024-07-24T04:40:32.010000"],["2024-07-24T04:40:33.010000"],["2024-07-24T04:40:34.010000"],["2024-07-24T04:40:35.010000"],["2024-07-24T04:40:36.010000"],["2024-07-24T04:40:37.010000"],["2024-07-24T04:40:38.010000"],["2024-07-24T04:40:39.010000"],["2024-07-24T04:40:40.010000"],["2024-07-24T04:40:41.010000"],["2024-07-24T04:40:42.010000"],["2024-07-24T04:40:43.010000"],["2024-07-24T04:40:44.010000"],["2024-07-24T04:40:45.010000"],["2024-07-24T04:40:46.010000"],["2024-07-24T04:40:47.010000"],["2024-07-24T04:40:48.010000"],["2024-07-24T04:40:49.010000"],["2024-07-24T04:40:50.010000"],["2024-07-24T04:40:51.010000"],["2024-07-24T04:40:52.010000"],["2024-07-24T04:40:53.010000"],["2024-07-24T04:40:54.010000"],["2024-07-24T04:40:55.010000"],["2024-07-24T04:40:56.010000"],["2024-07-24T04:40:57.010000"],["2024-07-24T04:40:58.010000"],["2024-07-24T04:40:59.010000"],["2024-07-24T04:41:00.010000"],["2024-07-24T04:41:01.010000"],["2024-07-24T04:41:02.010000"],["2024-07-24T04:41:03.010000"],["2024-07-24T04:41:04.010000"],["2024-07-24T04:41:05.010000"],["2024-07-24T04:41:06.010000"],["2024-07-24T04:41:07.010000"],["2024-07-24T04:41:08.010000"],["2024-07-24T04:41:09.010000"],["2024-07-24T04:41:10.010000"],["2024-07-24T04:41:11.010000"],["2024-07-24T04:41:12.010000"],["2024-07-24T04:41:13.010000"],["2024-07-24T04:41:14.010000"],["2024-07-24T04:41:15.010000"],["2024-07-24T04:41:16.010000"],["2024-07-24T04:41:17.010000"],["2024-07-24T04:41:18.010000"],["2024-07-24T04:41:19.010000"],["2024-07-24T04:41:20.010000"],["2024-07-24T04:41:21.010000"],["2024-07-24T04:41:22.010000"],["2024-07-24T04:41:23.010000"],["2024-07-24T04:41:24.010000"],["2024-07-24T04:41:25.010000"],["2024-07-24T04:41:26.010000"],["2024-07-24T04:41:27.010000"],["2024-07-24T04:41:28.010000"],["2024-07-24T04:41:29.010000"],["2024-07-24T04:41:30.010000"],["2024-07-24T04:41:31.010000"],["2024-07-24T04:41:32.010000"],["2024-07-24T04:41:33.010000"],["2024-07-24T04:41:34.010000"],["2024-07-24T04:41:35.010000"],["2024-07-24T04:41:36.010000"],["2024-07-24T04:41:37.010000"],["2024-07-24T04:41:38.010000"],["2024-07-24T04:41:39.010000"],["2024-07-24T04:41:40.010000"],["2024-07-24T04:41:41.010000"],["2024-07-24T04:41:42.010000"],["2024-07-24T04:41:43.010000"],["2024-07-24T04:41:44.010000"],["2024-07-24T04:41:45.010000"],["2024-07-24T04:41:46.010000"],["2024-07-24T04:41:47.010000"],["2024-07-24T04:41:48.010000"],["2024-07-24T04:41:49.010000"],["2024-07-24T04:41:50.010000"],["2024-07-24T04:41:51.010000"],["2024-07-24T04:41:52.010000"],["2024-07-24T04:41:53.010000"],["2024-07-24T04:41:54.010000"],["2024-07-24T04:41:55.010000"],["2024-07-24T04:41:56.010000"],["2024-07-24T04:41:57.010000"],["2024-07-24T04:41:58.010000"],["2024-07-24T04:41:59.010000"],["2024-07-24T04:42:00.010000"],["2024-07-24T04:42:01.010000"],["2024-07-24T04:42:02.010000"],["2024-07-24T04:42:03.010000"],["2024-07-24T04:42:04.010000"],["2024-07-24T04:42:05.010000"],["2024-07-24T04:42:06.010000"],["2024-07-24T04:42:07.010000"],["2024-07-24T04:42:08.010000"],["2024-07-24T04:42:09.010000"],["2024-07-24T04:42:10.010000"],["2024-07-24T04:42:11.010000"],["2024-07-24T04:42:12.010000"],["2024-07-24T04:42:13.010000"],["2024-07-24T04:42:14.010000"],["2024-07-24T04:42:15.010000"],["2024-07-24T04:42:16.010000"],["2024-07-24T04:42:17.010000"],["2024-07-24T04:42:18.010000"],["2024-07-24T04:42:19.010000"],["2024-07-24T04:42:20.010000"],["2024-07-24T04:42:21.010000"],["2024-07-24T04:42:22.010000"],["2024-07-24T04:42:23.010000"],["2024-07-24T04:42:24.010000"],["2024-07-24T04:42:25.010000"],["2024-07-24T04:42:26.010000"],["2024-07-24T04:42:27.010000"],["2024-07-24T04:42:28.010000"],["2024-07-24T04:42:29.010000"],["2024-07-24T04:42:30.010000"],["2024-07-24T04:42:31.010000"],["2024-07-24T04:42:32.010000"],["2024-07-24T04:42:33.010000"],["2024-07-24T04:42:34.010000"],["2024-07-24T04:42:35.010000"],["2024-07-24T04:42:36.010000"],["2024-07-24T04:42:37.010000"],["2024-07-24T04:42:38.010000"],["2024-07-24T04:42:39.010000"],["2024-07-24T04:42:40.010000"],["2024-07-24T04:42:41.010000"],["2024-07-24T04:42:42.010000"],["2024-07-24T04:42:43.010000"],["2024-07-24T04:42:44.010000"],["2024-07-24T04:42:45.010000"],["2024-07-24T04:42:46.010000"],["2024-07-24T04:42:47.010000"],["2024-07-24T04:42:48.010000"],["2024-07-24T04:42:49.010000"],["2024-07-24T04:42:50.010000"],["2024-07-24T04:42:51.010000"],["2024-07-24T04:42:52.010000"],["2024-07-24T04:42:53.010000"],["2024-07-24T04:42:54.010000"],["2024-07-24T04:42:55.010000"],["2024-07-24T04:42:56.010000"],["2024-07-24T04:42:57.010000"],["2024-07-24T04:42:58.010000"],["2024-07-24T04:42:59.010000"],["2024-07-24T04:43:00.010000"],["2024-07-24T04:43:01.010000"],["2024-07-24T04:43:02.010000"],["2024-07-24T04:43:03.010000"],["2024-07-24T04:43:04.010000"],["2024-07-24T04:43:05.010000"],["2024-07-24T04:43:06.010000"],["2024-07-24T04:43:07.010000"],["2024-07-24T04:43:08.010000"],["2024-07-24T04:43:09.010000"],["2024-07-24T04:43:10.010000"],["2024-07-24T04:43:11.010000"],["2024-07-24T04:43:12.010000"],["2024-07-24T04:43:13.010000"],["2024-07-24T04:43:14.010000"],["2024-07-24T04:43:15.010000"],["2024-07-24T04:43:16.010000"],["2024-07-24T04:43:17.010000"],["2024-07-24T04:43:18.010000"],["2024-07-24T04:43:19.010000"],["2024-07-24T04:43:20.010000"],["2024-07-24T04:43:21.010000"],["2024-07-24T04:43:22.010000"],["2024-07-24T04:43:23.010000"],["2024-07-24T04:43:24.010000"],["2024-07-24T04:43:25.010000"],["2024-07-24T04:43:26.010000"],["2024-07-24T04:43:27.010000"],["2024-07-24T04:43:28.010000"],["2024-07-24T04:43:29.010000"],["2024-07-24T04:43:30.010000"],["2024-07-24T04:43:31.010000"],["2024-07-24T04:43:32.010000"],["2024-07-24T04:43:33.010000"],["2024-07-24T04:43:34.010000"],["2024-07-24T04:43:35.010000"],["2024-07-24T04:43:36.010000"],["2024-07-24T04:43:37.010000"],["2024-07-24T04:43:38.010000"],["2024-07-24T04:43:39.010000"],["2024-07-24T04:43:40.010000"],["2024-07-24T04:43:41.010000"],["2024-07-24T04:43:42.010000"],["2024-07-24T04:43:43.010000"],["2024-07-24T04:43:44.010000"],["2024-07-24T04:43:45.010000"],["2024-07-24T04:43:46.010000"],["2024-07-24T04:43:47.010000"],["2024-07-24T04:43:48.010000"],["2024-07-24T04:43:49.010000"],["2024-07-24T04:43:50.010000"],["2024-07-24T04:43:51.010000"],["2024-07-24T04:43:52.010000"],["2024-07-24T04:43:53.010000"],["2024-07-24T04:43:54.010000"],["2024-07-24T04:43:55.010000"],["2024-07-24T04:43:56.010000"],["2024-07-24T04:43:57.010000"],["2024-07-24T04:43:58.010000"],["2024-07-24T04:43:59.010000"],["2024-07-24T04:44:00.010000"],["2024-07-24T04:44:01.010000"],["2024-07-24T04:44:02.010000"],["2024-07-24T04:44:03.010000"],["2024-07-24T04:44:04.010000"],["2024-07-24T04:44:05.010000"],["2024-07-24T04:44:06.010000"],["2024-07-24T04:44:07.010000"],["2024-07-24T04:44:08.010000"],["2024-07-24T04:44:09.010000"],["2024-07-24T04:44:10.010000"],["2024-07-24T04:44:11.010000"],["2024-07-24T04:44:12.010000"],["2024-07-24T04:44:13.010000"],["2024-07-24T04:44:14.010000"],["2024-07-24T04:44:15.010000"],["2024-07-24T04:44:16.010000"],["2024-07-24T04:44:17.010000"],["2024-07-24T04:44:18.010000"],["2024-07-24T04:44:19.010000"],["2024-07-24T04:44:20.010000"],["2024-07-24T04:44:21.010000"],["2024-07-24T04:44:22.010000"],["2024-07-24T04:44:23.010000"],["2024-07-24T04:44:24.010000"],["2024-07-24T04:44:25.010000"],["2024-07-24T04:44:26.010000"],["2024-07-24T04:44:27.010000"],["2024-07-24T04:44:28.010000"],["2024-07-24T04:44:29.010000"],["2024-07-24T04:44:30.010000"],["2024-07-24T04:44:31.010000"],["2024-07-24T04:44:32.010000"],["2024-07-24T04:44:33.010000"],["2024-07-24T04:44:34.010000"],["2024-07-24T04:44:35.010000"],["2024-07-24T04:44:36.010000"],["2024-07-24T04:44:37.010000"],["2024-07-24T04:44:38.010000"],["2024-07-24T04:44:39.010000"],["2024-07-24T04:44:40.010000"],["2024-07-24T04:44:41.010000"],["2024-07-24T04:44:42.010000"],["2024-07-24T04:44:43.010000"],["2024-07-24T04:44:44.010000"],["2024-07-24T04:44:45.010000"],["2024-07-24T04:44:46.010000"],["2024-07-24T04:44:47.010000"],["2024-07-24T04:44:48.010000"],["2024-07-24T04:44:49.010000"],["2024-07-24T04:44:50.010000"],["2024-07-24T04:44:51.010000"],["2024-07-24T04:44:52.010000"],["2024-07-24T04:44:53.010000"],["2024-07-24T04:44:54.010000"],["2024-07-24T04:44:55.010000"],["2024-07-24T04:44:56.010000"],["2024-07-24T04:44:57.010000"],["2024-07-24T04:44:58.010000"],["2024-07-24T04:44:59.010000"],["2024-07-24T04:45:00.010000"],["2024-07-24T04:45:01.010000"],["2024-07-24T04:45:02.010000"],["2024-07-24T04:45:03.010000"],["2024-07-24T04:45:04.010000"],["2024-07-24T04:45:05.010000"],["2024-07-24T04:45:06.010000"],["2024-07-24T04:45:07.010000"],["2024-07-24T04:45:08.010000"],["2024-07-24T04:45:09.010000"],["2024-07-24T04:45:10.010000"],["2024-07-24T04:45:11.010000"],["2024-07-24T04:45:12.010000"],["2024-07-24T04:45:13.010000"],["2024-07-24T04:45:14.010000"],["2024-07-24T04:45:15.010000"],["2024-07-24T04:45:16.010000"],["2024-07-24T04:45:17.010000"],["2024-07-24T04:45:18.010000"],["2024-07-24T04:45:19.010000"],["2024-07-24T04:45:20.010000"],["2024-07-24T04:45:21.010000"],["2024-07-24T04:45:22.010000"],["2024-07-24T04:45:23.010000"],["2024-07-24T04:45:24.010000"],["2024-07-24T04:45:25.010000"],["2024-07-24T04:45:26.010000"],["2024-07-24T04:45:27.010000"],["2024-07-24T04:45:28.010000"],["2024-07-24T04:45:29.010000"],["2024-07-24T04:45:30.010000"],["2024-07-24T04:45:31.010000"],["2024-07-24T04:45:32.010000"],["2024-07-24T04:45:33.010000"],["2024-07-24T04:45:34.010000"],["2024-07-24T04:45:35.010000"],["2024-07-24T04:45:36.010000"],["2024-07-24T04:45:37.010000"],["2024-07-24T04:45:38.010000"],["2024-07-24T04:45:39.010000"],["2024-07-24T04:45:40.010000"],["2024-07-24T04:45:41.010000"],["2024-07-24T04:45:42.010000"],["2024-07-24T04:45:43.010000"],["2024-07-24T04:45:44.010000"],["2024-07-24T04:45:45.010000"],["2024-07-24T04:45:46.010000"],["2024-07-24T04:45:47.010000"],["2024-07-24T04:45:48.010000"],["2024-07-24T04:45:49.010000"],["2024-07-24T04:45:50.010000"],["2024-07-24T04:45:51.010000"],["2024-07-24T04:45:52.010000"],["2024-07-24T04:45:53.010000"],["2024-07-24T04:45:54.010000"],["2024-07-24T04:45:55.010000"],["2024-07-24T04:45:56.010000"],["2024-07-24T04:45:57.010000"],["2024-07-24T04:45:58.010000"],["2024-07-24T04:45:59.010000"],["2024-07-24T04:46:00.010000"],["2024-07-24T04:46:01.010000"],["2024-07-24T04:46:02.010000"],["2024-07-24T04:46:03.010000"],["2024-07-24T04:46:04.010000"],["2024-07-24T04:46:05.010000"],["2024-07-24T04:46:06.010000"],["2024-07-24T04:46:07.010000"],["2024-07-24T04:46:08.010000"],["2024-07-24T04:46:09.010000"],["2024-07-24T04:46:10.010000"],["2024-07-24T04:46:11.010000"],["2024-07-24T04:46:12.010000"],["2024-07-24T04:46:13.010000"],["2024-07-24T04:46:14.010000"],["2024-07-24T04:46:15.010000"],["2024-07-24T04:46:16.010000"],["2024-07-24T04:46:17.010000"],["2024-07-24T04:46:18.010000"],["2024-07-24T04:46:19.010000"],["2024-07-24T04:46:20.010000"],["2024-07-24T04:46:21.010000"],["2024-07-24T04:46:22.010000"],["2024-07-24T04:46:23.010000"],["2024-07-24T04:46:24.010000"],["2024-07-24T04:46:25.010000"],["2024-07-24T04:46:26.010000"],["2024-07-24T04:46:27.010000"],["2024-07-24T04:46:28.010000"],["2024-07-24T04:46:29.010000"],["2024-07-24T04:46:30.010000"],["2024-07-24T04:46:31.010000"],["2024-07-24T04:46:32.010000"],["2024-07-24T04:46:33.010000"],["2024-07-24T04:46:34.010000"],["2024-07-24T04:46:35.010000"],["2024-07-24T04:46:36.010000"],["2024-07-24T04:46:37.010000"],["2024-07-24T04:46:38.010000"],["2024-07-24T04:46:39.010000"],["2024-07-24T04:46:40.010000"],["2024-07-24T04:46:41.010000"],["2024-07-24T04:46:42.010000"],["2024-07-24T04:46:43.010000"],["2024-07-24T04:46:44.010000"],["2024-07-24T04:46:45.010000"],["2024-07-24T04:46:46.010000"],["2024-07-24T04:46:47.010000"],["2024-07-24T04:46:48.010000"],["2024-07-24T04:46:49.010000"],["2024-07-24T04:46:50.010000"],["2024-07-24T04:46:51.010000"],["2024-07-24T04:46:52.010000"],["2024-07-24T04:46:53.010000"],["2024-07-24T04:46:54.010000"],["2024-07-24T04:46:55.010000"],["2024-07-24T04:46:56.010000"],["2024-07-24T04:46:57.010000"],["2024-07-24T04:46:58.010000"],["2024-07-24T04:46:59.010000"],["2024-07-24T04:47:00.010000"],["2024-07-24T04:47:01.010000"],["2024-07-24T04:47:02.010000"],["2024-07-24T04:47:03.010000"],["2024-07-24T04:47:04.010000"],["2024-07-24T04:47:05.010000"],["2024-07-24T04:47:06.010000"],["2024-07-24T04:47:07.010000"],["2024-07-24T04:47:08.010000"],["2024-07-24T04:47:09.010000"],["2024-07-24T04:47:10.010000"],["2024-07-24T04:47:11.010000"],["2024-07-24T04:47:12.010000"],["2024-07-24T04:47:13.010000"],["2024-07-24T04:47:14.010000"],["2024-07-24T04:47:15.010000"],["2024-07-24T04:47:16.010000"],["2024-07-24T04:47:17.010000"],["2024-07-24T04:47:18.010000"],["2024-07-24T04:47:19.010000"],["2024-07-24T04:47:20.010000"],["2024-07-24T04:47:21.010000"],["2024-07-24T04:47:22.010000"],["2024-07-24T04:47:23.010000"],["2024-07-24T04:47:24.010000"],["2024-07-24T04:47:25.010000"],["2024-07-24T04:47:26.010000"],["2024-07-24T04:47:27.010000"],["2024-07-24T04:47:28.010000"],["2024-07-24T04:47:29.010000"],["2024-07-24T04:47:30.010000"],["2024-07-24T04:47:31.010000"],["2024-07-24T04:47:32.010000"],["2024-07-24T04:47:33.010000"],["2024-07-24T04:47:34.010000"],["2024-07-24T04:47:35.010000"],["2024-07-24T04:47:36.010000"],["2024-07-24T04:47:37.010000"],["2024-07-24T04:47:38.010000"],["2024-07-24T04:47:39.010000"],["2024-07-24T04:47:40.010000"],["2024-07-24T04:47:41.010000"],["2024-07-24T04:47:42.010000"],["2024-07-24T04:47:43.010000"],["2024-07-24T04:47:44.010000"],["2024-07-24T04:47:45.010000"],["2024-07-24T04:47:46.010000"],["2024-07-24T04:47:47.010000"],["2024-07-24T04:47:48.010000"],["2024-07-24T04:47:49.010000"],["2024-07-24T04:47:50.010000"],["2024-07-24T04:47:51.010000"],["2024-07-24T04:47:52.010000"],["2024-07-24T04:47:53.010000"],["2024-07-24T04:47:54.010000"],["2024-07-24T04:47:55.010000"],["2024-07-24T04:47:56.010000"],["2024-07-24T04:47:57.010000"],["2024-07-24T04:47:58.010000"],["2024-07-24T04:47:59.010000"],["2024-07-24T04:48:00.010000"],["2024-07-24T04:48:01.010000"],["2024-07-24T04:48:02.010000"],["2024-07-24T04:48:03.010000"],["2024-07-24T04:48:04.010000"],["2024-07-24T04:48:05.010000"],["2024-07-24T04:48:06.010000"],["2024-07-24T04:48:07.010000"],["2024-07-24T04:48:08.010000"],["2024-07-24T04:48:09.010000"],["2024-07-24T04:48:10.010000"],["2024-07-24T04:48:11.010000"],["2024-07-24T04:48:12.010000"],["2024-07-24T04:48:13.010000"],["2024-07-24T04:48:14.010000"],["2024-07-24T04:48:15.010000"],["2024-07-24T04:48:16.010000"],["2024-07-24T04:48:17.010000"],["2024-07-24T04:48:18.010000"],["2024-07-24T04:48:19.010000"],["2024-07-24T04:48:20.010000"],["2024-07-24T04:48:21.010000"],["2024-07-24T04:48:22.010000"],["2024-07-24T04:48:23.010000"],["2024-07-24T04:48:24.010000"],["2024-07-24T04:48:25.010000"],["2024-07-24T04:48:26.010000"],["2024-07-24T04:48:27.010000"],["2024-07-24T04:48:28.010000"],["2024-07-24T04:48:29.010000"],["2024-07-24T04:48:30.010000"],["2024-07-24T04:48:31.010000"],["2024-07-24T04:48:32.010000"],["2024-07-24T04:48:33.010000"],["2024-07-24T04:48:34.010000"],["2024-07-24T04:48:35.010000"],["2024-07-24T04:48:36.010000"],["2024-07-24T04:48:37.010000"],["2024-07-24T04:48:38.010000"],["2024-07-24T04:48:39.010000"],["2024-07-24T04:48:40.010000"],["2024-07-24T04:48:41.010000"],["2024-07-24T04:48:42.010000"],["2024-07-24T04:48:43.010000"],["2024-07-24T04:48:44.010000"],["2024-07-24T04:48:45.010000"],["2024-07-24T04:48:46.010000"],["2024-07-24T04:48:47.010000"],["2024-07-24T04:48:48.010000"],["2024-07-24T04:48:49.010000"],["2024-07-24T04:48:50.010000"],["2024-07-24T04:48:51.010000"],["2024-07-24T04:48:52.010000"],["2024-07-24T04:48:53.010000"],["2024-07-24T04:48:54.010000"],["2024-07-24T04:48:55.010000"],["2024-07-24T04:48:56.010000"],["2024-07-24T04:48:57.010000"],["2024-07-24T04:48:58.010000"],["2024-07-24T04:48:59.010000"],["2024-07-24T04:49:00.010000"],["2024-07-24T04:49:01.010000"],["2024-07-24T04:49:02.010000"],["2024-07-24T04:49:03.010000"],["2024-07-24T04:49:04.010000"],["2024-07-24T04:49:05.010000"],["2024-07-24T04:49:06.010000"],["2024-07-24T04:49:07.010000"],["2024-07-24T04:49:08.010000"],["2024-07-24T04:49:09.010000"],["2024-07-24T04:49:10.010000"],["2024-07-24T04:49:11.010000"],["2024-07-24T04:49:12.010000"],["2024-07-24T04:49:13.010000"],["2024-07-24T04:49:14.010000"],["2024-07-24T04:49:15.010000"],["2024-07-24T04:49:16.010000"],["2024-07-24T04:49:17.010000"],["2024-07-24T04:49:18.010000"],["2024-07-24T04:49:19.010000"],["2024-07-24T04:49:20.010000"],["2024-07-24T04:49:21.010000"],["2024-07-24T04:49:22.010000"],["2024-07-24T04:49:23.010000"],["2024-07-24T04:49:24.010000"],["2024-07-24T04:49:25.010000"],["2024-07-24T04:49:26.010000"],["2024-07-24T04:49:27.010000"],["2024-07-24T04:49:28.010000"],["2024-07-24T04:49:29.010000"],["2024-07-24T04:49:30.010000"],["2024-07-24T04:49:31.010000"],["2024-07-24T04:49:32.010000"],["2024-07-24T04:49:33.010000"],["2024-07-24T04:49:34.010000"],["2024-07-24T04:49:35.010000"],["2024-07-24T04:49:36.010000"],["2024-07-24T04:49:37.010000"],["2024-07-24T04:49:38.010000"],["2024-07-24T04:49:39.010000"],["2024-07-24T04:49:40.010000"],["2024-07-24T04:49:41.010000"],["2024-07-24T04:49:42.010000"],["2024-07-24T04:49:43.010000"],["2024-07-24T04:49:44.010000"],["2024-07-24T04:49:45.010000"],["2024-07-24T04:49:46.010000"],["2024-07-24T04:49:47.010000"],["2024-07-24T04:49:48.010000"],["2024-07-24T04:49:49.010000"],["2024-07-24T04:49:50.010000"],["2024-07-24T04:49:51.010000"],["2024-07-24T04:49:52.010000"],["2024-07-24T04:49:53.010000"],["2024-07-24T04:49:54.010000"],["2024-07-24T04:49:55.010000"],["2024-07-24T04:49:56.010000"],["2024-07-24T04:49:57.010000"],["2024-07-24T04:49:58.010000"],["2024-07-24T04:49:59.010000"],["2024-07-24T04:50:00.010000"],["2024-07-24T04:50:01.010000"],["2024-07-24T04:50:02.010000"],["2024-07-24T04:50:03.010000"],["2024-07-24T04:50:04.010000"],["2024-07-24T04:50:05.010000"],["2024-07-24T04:50:06.010000"],["2024-07-24T04:50:07.010000"],["2024-07-24T04:50:08.010000"],["2024-07-24T04:50:09.010000"],["2024-07-24T04:50:10.010000"],["2024-07-24T04:50:11.010000"],["2024-07-24T04:50:12.010000"],["2024-07-24T04:50:13.010000"],["2024-07-24T04:50:14.010000"],["2024-07-24T04:50:15.010000"],["2024-07-24T04:50:16.010000"],["2024-07-24T04:50:17.010000"],["2024-07-24T04:50:18.010000"],["2024-07-24T04:50:19.010000"],["2024-07-24T04:50:20.010000"],["2024-07-24T04:50:21.010000"],["2024-07-24T04:50:22.010000"],["2024-07-24T04:50:23.010000"],["2024-07-24T04:50:24.010000"],["2024-07-24T04:50:25.010000"],["2024-07-24T04:50:26.010000"],["2024-07-24T04:50:27.010000"],["2024-07-24T04:50:28.010000"],["2024-07-24T04:50:29.010000"],["2024-07-24T04:50:30.010000"],["2024-07-24T04:50:31.010000"],["2024-07-24T04:50:32.010000"],["2024-07-24T04:50:33.010000"],["2024-07-24T04:50:34.010000"],["2024-07-24T04:50:35.010000"],["2024-07-24T04:50:36.010000"],["2024-07-24T04:50:37.010000"],["2024-07-24T04:50:38.010000"],["2024-07-24T04:50:39.010000"],["2024-07-24T04:50:40.010000"],["2024-07-24T04:50:41.010000"],["2024-07-24T04:50:42.010000"],["2024-07-24T04:50:43.010000"],["2024-07-24T04:50:44.010000"],["2024-07-24T04:50:45.010000"],["2024-07-24T04:50:46.010000"],["2024-07-24T04:50:47.010000"],["2024-07-24T04:50:48.010000"],["2024-07-24T04:50:49.010000"],["2024-07-24T04:50:50.010000"],["2024-07-24T04:50:51.010000"],["2024-07-24T04:50:52.010000"],["2024-07-24T04:50:53.010000"],["2024-07-24T04:50:54.010000"],["2024-07-24T04:50:55.010000"],["2024-07-24T04:50:56.010000"],["2024-07-24T04:50:57.010000"],["2024-07-24T04:50:58.010000"],["2024-07-24T04:50:59.010000"],["2024-07-24T04:51:00.010000"],["2024-07-24T04:51:01.010000"],["2024-07-24T04:51:02.010000"],["2024-07-24T04:51:03.010000"],["2024-07-24T04:51:04.010000"],["2024-07-24T04:51:05.010000"],["2024-07-24T04:51:06.010000"],["2024-07-24T04:51:07.010000"],["2024-07-24T04:51:08.010000"],["2024-07-24T04:51:09.010000"],["2024-07-24T04:51:10.010000"],["2024-07-24T04:51:11.010000"],["2024-07-24T04:51:12.010000"],["2024-07-24T04:51:13.010000"],["2024-07-24T04:51:14.010000"],["2024-07-24T04:51:15.010000"],["2024-07-24T04:51:16.010000"],["2024-07-24T04:51:17.010000"],["2024-07-24T04:51:18.010000"],["2024-07-24T04:51:19.010000"],["2024-07-24T04:51:20.010000"],["2024-07-24T04:51:21.010000"],["2024-07-24T04:51:22.010000"],["2024-07-24T04:51:23.010000"],["2024-07-24T04:51:24.010000"],["2024-07-24T04:51:25.010000"],["2024-07-24T04:51:26.010000"],["2024-07-24T04:51:27.010000"],["2024-07-24T04:51:28.010000"],["2024-07-24T04:51:29.010000"],["2024-07-24T04:51:30.010000"],["2024-07-24T04:51:31.010000"],["2024-07-24T04:51:32.010000"],["2024-07-24T04:51:33.010000"],["2024-07-24T04:51:34.010000"],["2024-07-24T04:51:35.010000"],["2024-07-24T04:51:36.010000"],["2024-07-24T04:51:37.010000"],["2024-07-24T04:51:38.010000"],["2024-07-24T04:51:39.010000"],["2024-07-24T04:51:40.010000"],["2024-07-24T04:51:41.010000"],["2024-07-24T04:51:42.010000"],["2024-07-24T04:51:43.010000"],["2024-07-24T04:51:44.010000"],["2024-07-24T04:51:45.010000"],["2024-07-24T04:51:46.010000"],["2024-07-24T04:51:47.010000"],["2024-07-24T04:51:48.010000"],["2024-07-24T04:51:49.010000"],["2024-07-24T04:51:50.010000"],["2024-07-24T04:51:51.010000"],["2024-07-24T04:51:52.010000"],["2024-07-24T04:51:53.010000"],["2024-07-24T04:51:54.010000"],["2024-07-24T04:51:55.010000"],["2024-07-24T04:51:56.010000"],["2024-07-24T04:51:57.010000"],["2024-07-24T04:51:58.010000"],["2024-07-24T04:51:59.010000"],["2024-07-24T04:52:00.010000"],["2024-07-24T04:52:01.010000"],["2024-07-24T04:52:02.010000"],["2024-07-24T04:52:03.010000"],["2024-07-24T04:52:04.010000"],["2024-07-24T04:52:05.010000"],["2024-07-24T04:52:06.010000"],["2024-07-24T04:52:07.010000"],["2024-07-24T04:52:08.010000"],["2024-07-24T04:52:09.010000"],["2024-07-24T04:52:10.010000"],["2024-07-24T04:52:11.010000"],["2024-07-24T04:52:12.010000"],["2024-07-24T04:52:13.010000"],["2024-07-24T04:52:14.010000"],["2024-07-24T04:52:15.010000"],["2024-07-24T04:52:16.010000"],["2024-07-24T04:52:17.010000"],["2024-07-24T04:52:18.010000"],["2024-07-24T04:52:19.010000"],["2024-07-24T04:52:20.010000"],["2024-07-24T04:52:21.010000"],["2024-07-24T04:52:22.010000"],["2024-07-24T04:52:23.010000"],["2024-07-24T04:52:24.010000"],["2024-07-24T04:52:25.010000"],["2024-07-24T04:52:26.010000"],["2024-07-24T04:52:27.010000"],["2024-07-24T04:52:28.010000"],["2024-07-24T04:52:29.010000"],["2024-07-24T04:52:30.010000"],["2024-07-24T04:52:31.010000"],["2024-07-24T04:52:32.010000"],["2024-07-24T04:52:33.010000"],["2024-07-24T04:52:34.010000"],["2024-07-24T04:52:35.010000"],["2024-07-24T04:52:36.010000"],["2024-07-24T04:52:37.010000"],["2024-07-24T04:52:38.010000"],["2024-07-24T04:52:39.010000"],["2024-07-24T04:52:40.010000"],["2024-07-24T04:52:41.010000"],["2024-07-24T04:52:42.010000"],["2024-07-24T04:52:43.010000"],["2024-07-24T04:52:44.010000"],["2024-07-24T04:52:45.010000"],["2024-07-24T04:52:46.010000"],["2024-07-24T04:52:47.010000"],["2024-07-24T04:52:48.010000"],["2024-07-24T04:52:49.010000"],["2024-07-24T04:52:50.010000"],["2024-07-24T04:52:51.010000"],["2024-07-24T04:52:52.010000"],["2024-07-24T04:52:53.010000"],["2024-07-24T04:52:54.010000"],["2024-07-24T04:52:55.010000"],["2024-07-24T04:52:56.010000"],["2024-07-24T04:52:57.010000"],["2024-07-24T04:52:58.010000"],["2024-07-24T04:52:59.010000"],["2024-07-24T04:53:00.010000"],["2024-07-24T04:53:01.010000"],["2024-07-24T04:53:02.010000"],["2024-07-24T04:53:03.010000"],["2024-07-24T04:53:04.010000"],["2024-07-24T04:53:05.010000"],["2024-07-24T04:53:06.010000"],["2024-07-24T04:53:07.010000"],["2024-07-24T04:53:08.010000"],["2024-07-24T04:53:09.010000"],["2024-07-24T04:53:10.010000"],["2024-07-24T04:53:11.010000"],["2024-07-24T04:53:12.010000"],["2024-07-24T04:53:13.010000"],["2024-07-24T04:53:14.010000"],["2024-07-24T04:53:15.010000"],["2024-07-24T04:53:16.010000"],["2024-07-24T04:53:17.010000"],["2024-07-24T04:53:18.010000"],["2024-07-24T04:53:19.010000"],["2024-07-24T04:53:20.010000"],["2024-07-24T04:53:21.010000"],["2024-07-24T04:53:22.010000"],["2024-07-24T04:53:23.010000"],["2024-07-24T04:53:24.010000"],["2024-07-24T04:53:25.010000"],["2024-07-24T04:53:26.010000"],["2024-07-24T04:53:27.010000"],["2024-07-24T04:53:28.010000"],["2024-07-24T04:53:29.010000"],["2024-07-24T04:53:30.010000"],["2024-07-24T04:53:31.010000"],["2024-07-24T04:53:32.010000"],["2024-07-24T04:53:33.010000"],["2024-07-24T04:53:34.010000"],["2024-07-24T04:53:35.010000"],["2024-07-24T04:53:36.010000"],["2024-07-24T04:53:37.010000"],["2024-07-24T04:53:38.010000"],["2024-07-24T04:53:39.010000"],["2024-07-24T04:53:40.010000"],["2024-07-24T04:53:41.010000"],["2024-07-24T04:53:42.010000"],["2024-07-24T04:53:43.010000"],["2024-07-24T04:53:44.010000"],["2024-07-24T04:53:45.010000"],["2024-07-24T04:53:46.010000"],["2024-07-24T04:53:47.010000"],["2024-07-24T04:53:48.010000"],["2024-07-24T04:53:49.010000"],["2024-07-24T04:53:50.010000"],["2024-07-24T04:53:51.010000"],["2024-07-24T04:53:52.010000"],["2024-07-24T04:53:53.010000"],["2024-07-24T04:53:54.010000"],["2024-07-24T04:53:55.010000"],["2024-07-24T04:53:56.010000"],["2024-07-24T04:53:57.010000"],["2024-07-24T04:53:58.010000"],["2024-07-24T04:53:59.010000"],["2024-07-24T04:54:00.010000"],["2024-07-24T04:54:01.010000"],["2024-07-24T04:54:02.010000"],["2024-07-24T04:54:03.010000"],["2024-07-24T04:54:04.010000"],["2024-07-24T04:54:05.010000"],["2024-07-24T04:54:06.010000"],["2024-07-24T04:54:07.010000"],["2024-07-24T04:54:08.010000"],["2024-07-24T04:54:09.010000"],["2024-07-24T04:54:10.010000"],["2024-07-24T04:54:11.010000"],["2024-07-24T04:54:12.010000"],["2024-07-24T04:54:13.010000"],["2024-07-24T04:54:14.010000"],["2024-07-24T04:54:15.010000"],["2024-07-24T04:54:16.010000"],["2024-07-24T04:54:17.010000"],["2024-07-24T04:54:18.010000"],["2024-07-24T04:54:19.010000"],["2024-07-24T04:54:20.010000"],["2024-07-24T04:54:21.010000"],["2024-07-24T04:54:22.010000"],["2024-07-24T04:54:23.010000"],["2024-07-24T04:54:24.010000"],["2024-07-24T04:54:25.010000"],["2024-07-24T04:54:26.010000"],["2024-07-24T04:54:27.010000"],["2024-07-24T04:54:28.010000"],["2024-07-24T04:54:29.010000"],["2024-07-24T04:54:30.010000"],["2024-07-24T04:54:31.010000"],["2024-07-24T04:54:32.010000"],["2024-07-24T04:54:33.010000"],["2024-07-24T04:54:34.010000"],["2024-07-24T04:54:35.010000"],["2024-07-24T04:54:36.010000"],["2024-07-24T04:54:37.010000"],["2024-07-24T04:54:38.010000"],["2024-07-24T04:54:39.010000"],["2024-07-24T04:54:40.010000"],["2024-07-24T04:54:41.010000"],["2024-07-24T04:54:42.010000"],["2024-07-24T04:54:43.010000"],["2024-07-24T04:54:44.010000"],["2024-07-24T04:54:45.010000"],["2024-07-24T04:54:46.010000"],["2024-07-24T04:54:47.010000"],["2024-07-24T04:54:48.010000"],["2024-07-24T04:54:49.010000"],["2024-07-24T04:54:50.010000"],["2024-07-24T04:54:51.010000"],["2024-07-24T04:54:52.010000"],["2024-07-24T04:54:53.010000"],["2024-07-24T04:54:54.010000"],["2024-07-24T04:54:55.010000"],["2024-07-24T04:54:56.010000"],["2024-07-24T04:54:57.010000"],["2024-07-24T04:54:58.010000"],["2024-07-24T04:54:59.010000"],["2024-07-24T04:55:00.010000"],["2024-07-24T04:55:01.010000"],["2024-07-24T04:55:02.010000"],["2024-07-24T04:55:03.010000"],["2024-07-24T04:55:04.010000"],["2024-07-24T04:55:05.010000"],["2024-07-24T04:55:06.010000"],["2024-07-24T04:55:07.010000"],["2024-07-24T04:55:08.010000"],["2024-07-24T04:55:09.010000"],["2024-07-24T04:55:10.010000"],["2024-07-24T04:55:11.010000"],["2024-07-24T04:55:12.010000"],["2024-07-24T04:55:13.010000"],["2024-07-24T04:55:14.010000"],["2024-07-24T04:55:15.010000"],["2024-07-24T04:55:16.010000"],["2024-07-24T04:55:17.010000"],["2024-07-24T04:55:18.010000"],["2024-07-24T04:55:19.010000"],["2024-07-24T04:55:20.010000"],["2024-07-24T04:55:21.010000"],["2024-07-24T04:55:22.010000"],["2024-07-24T04:55:23.010000"],["2024-07-24T04:55:24.010000"],["2024-07-24T04:55:25.010000"],["2024-07-24T04:55:26.010000"],["2024-07-24T04:55:27.010000"],["2024-07-24T04:55:28.010000"],["2024-07-24T04:55:29.010000"],["2024-07-24T04:55:30.010000"],["2024-07-24T04:55:31.010000"],["2024-07-24T04:55:32.010000"],["2024-07-24T04:55:33.010000"],["2024-07-24T04:55:34.010000"],["2024-07-24T04:55:35.010000"],["2024-07-24T04:55:36.010000"],["2024-07-24T04:55:37.010000"],["2024-07-24T04:55:38.010000"],["2024-07-24T04:55:39.010000"],["2024-07-24T04:55:40.010000"],["2024-07-24T04:55:41.010000"],["2024-07-24T04:55:42.010000"],["2024-07-24T04:55:43.010000"],["2024-07-24T04:55:44.010000"],["2024-07-24T04:55:45.010000"],["2024-07-24T04:55:46.010000"],["2024-07-24T04:55:47.010000"],["2024-07-24T04:55:48.010000"],["2024-07-24T04:55:49.010000"],["2024-07-24T04:55:50.010000"],["2024-07-24T04:55:51.010000"],["2024-07-24T04:55:52.010000"],["2024-07-24T04:55:53.010000"],["2024-07-24T04:55:54.010000"],["2024-07-24T04:55:55.010000"],["2024-07-24T04:55:56.010000"],["2024-07-24T04:55:57.010000"],["2024-07-24T04:55:58.010000"],["2024-07-24T04:55:59.010000"],["2024-07-24T04:56:00.010000"],["2024-07-24T04:56:01.010000"],["2024-07-24T04:56:02.010000"],["2024-07-24T04:56:03.010000"],["2024-07-24T04:56:04.010000"],["2024-07-24T04:56:05.010000"],["2024-07-24T04:56:06.010000"],["2024-07-24T04:56:07.010000"],["2024-07-24T04:56:08.010000"],["2024-07-24T04:56:09.010000"],["2024-07-24T04:56:10.010000"],["2024-07-24T04:56:11.010000"],["2024-07-24T04:56:12.010000"],["2024-07-24T04:56:13.010000"],["2024-07-24T04:56:14.010000"],["2024-07-24T04:56:15.010000"],["2024-07-24T04:56:16.010000"],["2024-07-24T04:56:17.010000"],["2024-07-24T04:56:18.010000"],["2024-07-24T04:56:19.010000"],["2024-07-24T04:56:20.010000"],["2024-07-24T04:56:21.010000"],["2024-07-24T04:56:22.010000"],["2024-07-24T04:56:23.010000"],["2024-07-24T04:56:24.010000"],["2024-07-24T04:56:25.010000"],["2024-07-24T04:56:26.010000"],["2024-07-24T04:56:27.010000"],["2024-07-24T04:56:28.010000"],["2024-07-24T04:56:29.010000"],["2024-07-24T04:56:30.010000"],["2024-07-24T04:56:31.010000"],["2024-07-24T04:56:32.010000"],["2024-07-24T04:56:33.010000"],["2024-07-24T04:56:34.010000"],["2024-07-24T04:56:35.010000"],["2024-07-24T04:56:36.010000"],["2024-07-24T04:56:37.010000"],["2024-07-24T04:56:38.010000"],["2024-07-24T04:56:39.010000"],["2024-07-24T04:56:40.010000"],["2024-07-24T04:56:41.010000"],["2024-07-24T04:56:42.010000"],["2024-07-24T04:56:43.010000"],["2024-07-24T04:56:44.010000"],["2024-07-24T04:56:45.010000"],["2024-07-24T04:56:46.010000"],["2024-07-24T04:56:47.010000"],["2024-07-24T04:56:48.010000"],["2024-07-24T04:56:49.010000"],["2024-07-24T04:56:50.010000"],["2024-07-24T04:56:51.010000"],["2024-07-24T04:56:52.010000"],["2024-07-24T04:56:53.010000"],["2024-07-24T04:56:54.010000"],["2024-07-24T04:56:55.010000"],["2024-07-24T04:56:56.010000"],["2024-07-24T04:56:57.010000"],["2024-07-24T04:56:58.010000"],["2024-07-24T04:56:59.010000"],["2024-07-24T04:57:00.010000"],["2024-07-24T04:57:01.010000"],["2024-07-24T04:57:02.010000"],["2024-07-24T04:57:03.010000"],["2024-07-24T04:57:04.010000"],["2024-07-24T04:57:05.010000"],["2024-07-24T04:57:06.010000"],["2024-07-24T04:57:07.010000"],["2024-07-24T04:57:08.010000"],["2024-07-24T04:57:09.010000"],["2024-07-24T04:57:10.010000"],["2024-07-24T04:57:11.010000"],["2024-07-24T04:57:12.010000"],["2024-07-24T04:57:13.010000"],["2024-07-24T04:57:14.010000"],["2024-07-24T04:57:15.010000"],["2024-07-24T04:57:16.010000"],["2024-07-24T04:57:17.010000"],["2024-07-24T04:57:18.010000"],["2024-07-24T04:57:19.010000"],["2024-07-24T04:57:20.010000"],["2024-07-24T04:57:21.010000"],["2024-07-24T04:57:22.010000"],["2024-07-24T04:57:23.010000"],["2024-07-24T04:57:24.010000"],["2024-07-24T04:57:25.010000"],["2024-07-24T04:57:26.010000"],["2024-07-24T04:57:27.010000"],["2024-07-24T04:57:28.010000"],["2024-07-24T04:57:29.010000"],["2024-07-24T04:57:30.010000"],["2024-07-24T04:57:31.010000"],["2024-07-24T04:57:32.010000"],["2024-07-24T04:57:33.010000"],["2024-07-24T04:57:34.010000"],["2024-07-24T04:57:35.010000"],["2024-07-24T04:57:36.010000"],["2024-07-24T04:57:37.010000"],["2024-07-24T04:57:38.010000"],["2024-07-24T04:57:39.010000"],["2024-07-24T04:57:40.010000"],["2024-07-24T04:57:41.010000"],["2024-07-24T04:57:42.010000"],["2024-07-24T04:57:43.010000"],["2024-07-24T04:57:44.010000"],["2024-07-24T04:57:45.010000"],["2024-07-24T04:57:46.010000"],["2024-07-24T04:57:47.010000"],["2024-07-24T04:57:48.010000"],["2024-07-24T04:57:49.010000"],["2024-07-24T04:57:50.010000"],["2024-07-24T04:57:51.010000"],["2024-07-24T04:57:52.010000"],["2024-07-24T04:57:53.010000"],["2024-07-24T04:57:54.010000"],["2024-07-24T04:57:55.010000"],["2024-07-24T04:57:56.010000"],["2024-07-24T04:57:57.010000"],["2024-07-24T04:57:58.010000"],["2024-07-24T04:57:59.010000"],["2024-07-24T04:58:00.010000"],["2024-07-24T04:58:01.010000"],["2024-07-24T04:58:02.010000"],["2024-07-24T04:58:03.010000"],["2024-07-24T04:58:04.010000"],["2024-07-24T04:58:05.010000"],["2024-07-24T04:58:06.010000"],["2024-07-24T04:58:07.010000"],["2024-07-24T04:58:08.010000"],["2024-07-24T04:58:09.010000"],["2024-07-24T04:58:10.010000"],["2024-07-24T04:58:11.010000"],["2024-07-24T04:58:12.010000"],["2024-07-24T04:58:13.010000"],["2024-07-24T04:58:14.010000"],["2024-07-24T04:58:15.010000"],["2024-07-24T04:58:16.010000"],["2024-07-24T04:58:17.010000"],["2024-07-24T04:58:18.010000"],["2024-07-24T04:58:19.010000"],["2024-07-24T04:58:20.010000"],["2024-07-24T04:58:21.010000"],["2024-07-24T04:58:22.010000"],["2024-07-24T04:58:23.010000"],["2024-07-24T04:58:24.010000"],["2024-07-24T04:58:25.010000"],["2024-07-24T04:58:26.010000"],["2024-07-24T04:58:27.010000"],["2024-07-24T04:58:28.010000"],["2024-07-24T04:58:29.010000"],["2024-07-24T04:58:30.010000"],["2024-07-24T04:58:31.010000"],["2024-07-24T04:58:32.010000"],["2024-07-24T04:58:33.010000"],["2024-07-24T04:58:34.010000"],["2024-07-24T04:58:35.010000"],["2024-07-24T04:58:36.010000"],["2024-07-24T04:58:37.010000"],["2024-07-24T04:58:38.010000"],["2024-07-24T04:58:39.010000"],["2024-07-24T04:58:40.010000"],["2024-07-24T04:58:41.010000"],["2024-07-24T04:58:42.010000"],["2024-07-24T04:58:43.010000"],["2024-07-24T04:58:44.010000"],["2024-07-24T04:58:45.010000"],["2024-07-24T04:58:46.010000"],["2024-07-24T04:58:47.010000"],["2024-07-24T04:58:48.010000"],["2024-07-24T04:58:49.010000"],["2024-07-24T04:58:50.010000"],["2024-07-24T04:58:51.010000"],["2024-07-24T04:58:52.010000"],["2024-07-24T04:58:53.010000"],["2024-07-24T04:58:54.010000"],["2024-07-24T04:58:55.010000"],["2024-07-24T04:58:56.010000"],["2024-07-24T04:58:57.010000"],["2024-07-24T04:58:58.010000"],["2024-07-24T04:58:59.010000"],["2024-07-24T04:59:00.010000"],["2024-07-24T04:59:01.010000"],["2024-07-24T04:59:02.010000"],["2024-07-24T04:59:03.010000"],["2024-07-24T04:59:04.010000"],["2024-07-24T04:59:05.010000"],["2024-07-24T04:59:06.010000"],["2024-07-24T04:59:07.010000"],["2024-07-24T04:59:08.010000"],["2024-07-24T04:59:09.010000"],["2024-07-24T04:59:10.010000"],["2024-07-24T04:59:11.010000"],["2024-07-24T04:59:12.010000"],["2024-07-24T04:59:13.010000"],["2024-07-24T04:59:14.010000"],["2024-07-24T04:59:15.010000"],["2024-07-24T04:59:16.010000"],["2024-07-24T04:59:17.010000"],["2024-07-24T04:59:18.010000"],["2024-07-24T04:59:19.010000"],["2024-07-24T04:59:20.010000"],["2024-07-24T04:59:21.010000"],["2024-07-24T04:59:22.010000"],["2024-07-24T04:59:23.010000"],["2024-07-24T04:59:24.010000"],["2024-07-24T04:59:25.010000"],["2024-07-24T04:59:26.010000"],["2024-07-24T04:59:27.010000"],["2024-07-24T04:59:28.010000"],["2024-07-24T04:59:29.010000"],["2024-07-24T04:59:30.010000"],["2024-07-24T04:59:31.010000"],["2024-07-24T04:59:32.010000"],["2024-07-24T04:59:33.010000"],["2024-07-24T04:59:34.010000"],["2024-07-24T04:59:35.010000"],["2024-07-24T04:59:36.010000"],["2024-07-24T04:59:37.010000"],["2024-07-24T04:59:38.010000"],["2024-07-24T04:59:39.010000"],["2024-07-24T04:59:40.010000"],["2024-07-24T04:59:41.010000"],["2024-07-24T04:59:42.010000"],["2024-07-24T04:59:43.010000"],["2024-07-24T04:59:44.010000"],["2024-07-24T04:59:45.010000"],["2024-07-24T04:59:46.010000"],["2024-07-24T04:59:47.010000"],["2024-07-24T04:59:48.010000"],["2024-07-24T04:59:49.010000"],["2024-07-24T04:59:50.010000"],["2024-07-24T04:59:51.010000"],["2024-07-24T04:59:52.010000"],["2024-07-24T04:59:53.010000"],["2024-07-24T04:59:54.010000"],["2024-07-24T04:59:55.010000"],["2024-07-24T04:59:56.010000"],["2024-07-24T04:59:57.010000"],["2024-07-24T04:59:58.010000"],["2024-07-24T04:59:59.010000"],["2024-07-24T05:00:00.010000"],["2024-07-24T05:00:01.010000"],["2024-07-24T05:00:02.010000"],["2024-07-24T05:00:03.010000"],["2024-07-24T05:00:04.010000"],["2024-07-24T05:00:05.010000"],["2024-07-24T05:00:06.010000"],["2024-07-24T05:00:07.010000"],["2024-07-24T05:00:08.010000"],["2024-07-24T05:00:09.010000"],["2024-07-24T05:00:10.010000"],["2024-07-24T05:00:11.010000"],["2024-07-24T05:00:12.010000"],["2024-07-24T05:00:13.010000"],["2024-07-24T05:00:14.010000"],["2024-07-24T05:00:15.010000"],["2024-07-24T05:00:16.010000"],["2024-07-24T05:00:17.010000"],["2024-07-24T05:00:18.010000"],["2024-07-24T05:00:19.010000"],["2024-07-24T05:00:20.010000"],["2024-07-24T05:00:21.010000"],["2024-07-24T05:00:22.010000"],["2024-07-24T05:00:23.010000"],["2024-07-24T05:00:24.010000"],["2024-07-24T05:00:25.010000"],["2024-07-24T05:00:26.010000"],["2024-07-24T05:00:27.010000"],["2024-07-24T05:00:28.010000"],["2024-07-24T05:00:29.010000"],["2024-07-24T05:00:30.010000"],["2024-07-24T05:00:31.010000"],["2024-07-24T05:00:32.010000"],["2024-07-24T05:00:33.010000"],["2024-07-24T05:00:34.010000"],["2024-07-24T05:00:35.010000"],["2024-07-24T05:00:36.010000"],["2024-07-24T05:00:37.010000"],["2024-07-24T05:00:38.010000"],["2024-07-24T05:00:39.010000"],["2024-07-24T05:00:40.010000"],["2024-07-24T05:00:41.010000"],["2024-07-24T05:00:42.010000"],["2024-07-24T05:00:43.010000"],["2024-07-24T05:00:44.010000"],["2024-07-24T05:00:45.010000"],["2024-07-24T05:00:46.010000"],["2024-07-24T05:00:47.010000"],["2024-07-24T05:00:48.010000"],["2024-07-24T05:00:49.010000"],["2024-07-24T05:00:50.010000"],["2024-07-24T05:00:51.010000"],["2024-07-24T05:00:52.010000"],["2024-07-24T05:00:53.010000"],["2024-07-24T05:00:54.010000"],["2024-07-24T05:00:55.010000"],["2024-07-24T05:00:56.010000"],["2024-07-24T05:00:57.010000"],["2024-07-24T05:00:58.010000"],["2024-07-24T05:00:59.010000"],["2024-07-24T05:01:00.010000"],["2024-07-24T05:01:01.010000"],["2024-07-24T05:01:02.010000"],["2024-07-24T05:01:03.010000"],["2024-07-24T05:01:04.010000"],["2024-07-24T05:01:05.010000"],["2024-07-24T05:01:06.010000"],["2024-07-24T05:01:07.010000"],["2024-07-24T05:01:08.010000"],["2024-07-24T05:01:09.010000"],["2024-07-24T05:01:10.010000"],["2024-07-24T05:01:11.010000"],["2024-07-24T05:01:12.010000"],["2024-07-24T05:01:13.010000"],["2024-07-24T05:01:14.010000"],["2024-07-24T05:01:15.010000"],["2024-07-24T05:01:16.010000"],["2024-07-24T05:01:17.010000"],["2024-07-24T05:01:18.010000"],["2024-07-24T05:01:19.010000"],["2024-07-24T05:01:20.010000"],["2024-07-24T05:01:21.010000"],["2024-07-24T05:01:22.010000"],["2024-07-24T05:01:23.010000"],["2024-07-24T05:01:24.010000"],["2024-07-24T05:01:25.010000"],["2024-07-24T05:01:26.010000"],["2024-07-24T05:01:27.010000"],["2024-07-24T05:01:28.010000"],["2024-07-24T05:01:29.010000"],["2024-07-24T05:01:30.010000"],["2024-07-24T05:01:31.010000"],["2024-07-24T05:01:32.010000"],["2024-07-24T05:01:33.010000"],["2024-07-24T05:01:34.010000"],["2024-07-24T05:01:35.010000"],["2024-07-24T05:01:36.010000"],["2024-07-24T05:01:37.010000"],["2024-07-24T05:01:38.010000"],["2024-07-24T05:01:39.010000"],["2024-07-24T05:01:40.010000"],["2024-07-24T05:01:41.010000"],["2024-07-24T05:01:42.010000"],["2024-07-24T05:01:43.010000"],["2024-07-24T05:01:44.010000"],["2024-07-24T05:01:45.010000"],["2024-07-24T05:01:46.010000"],["2024-07-24T05:01:47.010000"],["2024-07-24T05:01:48.010000"],["2024-07-24T05:01:49.010000"],["2024-07-24T05:01:50.010000"],["2024-07-24T05:01:51.010000"],["2024-07-24T05:01:52.010000"],["2024-07-24T05:01:53.010000"],["2024-07-24T05:01:54.010000"],["2024-07-24T05:01:55.010000"],["2024-07-24T05:01:56.010000"],["2024-07-24T05:01:57.010000"],["2024-07-24T05:01:58.010000"],["2024-07-24T05:01:59.010000"],["2024-07-24T05:02:00.010000"],["2024-07-24T05:02:01.010000"],["2024-07-24T05:02:02.010000"],["2024-07-24T05:02:03.010000"],["2024-07-24T05:02:04.010000"],["2024-07-24T05:02:05.010000"],["2024-07-24T05:02:06.010000"],["2024-07-24T05:02:07.010000"],["2024-07-24T05:02:08.010000"],["2024-07-24T05:02:09.010000"],["2024-07-24T05:02:10.010000"],["2024-07-24T05:02:11.010000"],["2024-07-24T05:02:12.010000"],["2024-07-24T05:02:13.010000"],["2024-07-24T05:02:14.010000"],["2024-07-24T05:02:15.010000"],["2024-07-24T05:02:16.010000"],["2024-07-24T05:02:17.010000"],["2024-07-24T05:02:18.010000"],["2024-07-24T05:02:19.010000"],["2024-07-24T05:02:20.010000"],["2024-07-24T05:02:21.010000"],["2024-07-24T05:02:22.010000"],["2024-07-24T05:02:23.010000"],["2024-07-24T05:02:24.010000"],["2024-07-24T05:02:25.010000"],["2024-07-24T05:02:26.010000"],["2024-07-24T05:02:27.010000"],["2024-07-24T05:02:28.010000"],["2024-07-24T05:02:29.010000"],["2024-07-24T05:02:30.010000"],["2024-07-24T05:02:31.010000"],["2024-07-24T05:02:32.010000"],["2024-07-24T05:02:33.010000"],["2024-07-24T05:02:34.010000"],["2024-07-24T05:02:35.010000"],["2024-07-24T05:02:36.010000"],["2024-07-24T05:02:37.010000"],["2024-07-24T05:02:38.010000"],["2024-07-24T05:02:39.010000"],["2024-07-24T05:02:40.010000"],["2024-07-24T05:02:41.010000"],["2024-07-24T05:02:42.010000"],["2024-07-24T05:02:43.010000"],["2024-07-24T05:02:44.010000"],["2024-07-24T05:02:45.010000"],["2024-07-24T05:02:46.010000"],["2024-07-24T05:02:47.010000"],["2024-07-24T05:02:48.010000"],["2024-07-24T05:02:49.010000"],["2024-07-24T05:02:50.010000"],["2024-07-24T05:02:51.010000"],["2024-07-24T05:02:52.010000"],["2024-07-24T05:02:53.010000"],["2024-07-24T05:02:54.010000"],["2024-07-24T05:02:55.010000"],["2024-07-24T05:02:56.010000"],["2024-07-24T05:02:57.010000"],["2024-07-24T05:02:58.010000"],["2024-07-24T05:02:59.010000"],["2024-07-24T05:03:00.010000"],["2024-07-24T05:03:01.010000"],["2024-07-24T05:03:02.010000"],["2024-07-24T05:03:03.010000"],["2024-07-24T05:03:04.010000"],["2024-07-24T05:03:05.010000"],["2024-07-24T05:03:06.010000"],["2024-07-24T05:03:07.010000"],["2024-07-24T05:03:08.010000"],["2024-07-24T05:03:09.010000"],["2024-07-24T05:03:10.010000"],["2024-07-24T05:03:11.010000"],["2024-07-24T05:03:12.010000"],["2024-07-24T05:03:13.010000"],["2024-07-24T05:03:14.010000"],["2024-07-24T05:03:15.010000"],["2024-07-24T05:03:16.010000"],["2024-07-24T05:03:17.010000"],["2024-07-24T05:03:18.010000"],["2024-07-24T05:03:19.010000"],["2024-07-24T05:03:20.010000"],["2024-07-24T05:03:21.010000"],["2024-07-24T05:03:22.010000"],["2024-07-24T05:03:23.010000"],["2024-07-24T05:03:24.010000"],["2024-07-24T05:03:25.010000"],["2024-07-24T05:03:26.010000"],["2024-07-24T05:03:27.010000"],["2024-07-24T05:03:28.010000"],["2024-07-24T05:03:29.010000"],["2024-07-24T05:03:30.010000"],["2024-07-24T05:03:31.010000"],["2024-07-24T05:03:32.010000"],["2024-07-24T05:03:33.010000"],["2024-07-24T05:03:34.010000"],["2024-07-24T05:03:35.010000"],["2024-07-24T05:03:36.010000"],["2024-07-24T05:03:37.010000"],["2024-07-24T05:03:38.010000"],["2024-07-24T05:03:39.010000"],["2024-07-24T05:03:40.010000"],["2024-07-24T05:03:41.010000"],["2024-07-24T05:03:42.010000"],["2024-07-24T05:03:43.010000"],["2024-07-24T05:03:44.010000"],["2024-07-24T05:03:45.010000"],["2024-07-24T05:03:46.010000"],["2024-07-24T05:03:47.010000"],["2024-07-24T05:03:48.010000"],["2024-07-24T05:03:49.010000"],["2024-07-24T05:03:50.010000"],["2024-07-24T05:03:51.010000"],["2024-07-24T05:03:52.010000"],["2024-07-24T05:03:53.010000"],["2024-07-24T05:03:54.010000"],["2024-07-24T05:03:55.010000"],["2024-07-24T05:03:56.010000"],["2024-07-24T05:03:57.010000"],["2024-07-24T05:03:58.010000"],["2024-07-24T05:03:59.010000"],["2024-07-24T05:04:00.010000"],["2024-07-24T05:04:01.010000"],["2024-07-24T05:04:02.010000"],["2024-07-24T05:04:03.010000"],["2024-07-24T05:04:04.010000"],["2024-07-24T05:04:05.010000"],["2024-07-24T05:04:06.010000"],["2024-07-24T05:04:07.010000"],["2024-07-24T05:04:08.010000"],["2024-07-24T05:04:09.010000"],["2024-07-24T05:04:10.010000"],["2024-07-24T05:04:11.010000"],["2024-07-24T05:04:12.010000"],["2024-07-24T05:04:13.010000"],["2024-07-24T05:04:14.010000"],["2024-07-24T05:04:15.010000"],["2024-07-24T05:04:16.010000"],["2024-07-24T05:04:17.010000"],["2024-07-24T05:04:18.010000"],["2024-07-24T05:04:19.010000"],["2024-07-24T05:04:20.010000"],["2024-07-24T05:04:21.010000"],["2024-07-24T05:04:22.010000"],["2024-07-24T05:04:23.010000"],["2024-07-24T05:04:24.010000"],["2024-07-24T05:04:25.010000"],["2024-07-24T05:04:26.010000"],["2024-07-24T05:04:27.010000"],["2024-07-24T05:04:28.010000"],["2024-07-24T05:04:29.010000"],["2024-07-24T05:04:30.010000"],["2024-07-24T05:04:31.010000"],["2024-07-24T05:04:32.010000"],["2024-07-24T05:04:33.010000"],["2024-07-24T05:04:34.010000"],["2024-07-24T05:04:35.010000"],["2024-07-24T05:04:36.010000"],["2024-07-24T05:04:37.010000"],["2024-07-24T05:04:38.010000"],["2024-07-24T05:04:39.010000"],["2024-07-24T05:04:40.010000"],["2024-07-24T05:04:41.010000"],["2024-07-24T05:04:42.010000"],["2024-07-24T05:04:43.010000"],["2024-07-24T05:04:44.010000"],["2024-07-24T05:04:45.010000"],["2024-07-24T05:04:46.010000"],["2024-07-24T05:04:47.010000"],["2024-07-24T05:04:48.010000"],["2024-07-24T05:04:49.010000"],["2024-07-24T05:04:50.010000"],["2024-07-24T05:04:51.010000"],["2024-07-24T05:04:52.010000"],["2024-07-24T05:04:53.010000"],["2024-07-24T05:04:54.010000"],["2024-07-24T05:04:55.010000"],["2024-07-24T05:04:56.010000"],["2024-07-24T05:04:57.010000"],["2024-07-24T05:04:58.010000"],["2024-07-24T05:04:59.010000"],["2024-07-24T05:05:00.010000"],["2024-07-24T05:05:01.010000"],["2024-07-24T05:05:02.010000"],["2024-07-24T05:05:03.010000"],["2024-07-24T05:05:04.010000"],["2024-07-24T05:05:05.010000"],["2024-07-24T05:05:06.010000"],["2024-07-24T05:05:07.010000"],["2024-07-24T05:05:08.010000"],["2024-07-24T05:05:09.010000"],["2024-07-24T05:05:10.010000"],["2024-07-24T05:05:11.010000"],["2024-07-24T05:05:12.010000"],["2024-07-24T05:05:13.010000"],["2024-07-24T05:05:14.010000"],["2024-07-24T05:05:15.010000"],["2024-07-24T05:05:16.010000"],["2024-07-24T05:05:17.010000"],["2024-07-24T05:05:18.010000"],["2024-07-24T05:05:19.010000"],["2024-07-24T05:05:20.010000"],["2024-07-24T05:05:21.010000"],["2024-07-24T05:05:22.010000"],["2024-07-24T05:05:23.010000"],["2024-07-24T05:05:24.010000"],["2024-07-24T05:05:25.010000"],["2024-07-24T05:05:26.010000"],["2024-07-24T05:05:27.010000"],["2024-07-24T05:05:28.010000"],["2024-07-24T05:05:29.010000"],["2024-07-24T05:05:30.010000"],["2024-07-24T05:05:31.010000"],["2024-07-24T05:05:32.010000"],["2024-07-24T05:05:33.010000"],["2024-07-24T05:05:34.010000"],["2024-07-24T05:05:35.010000"],["2024-07-24T05:05:36.010000"],["2024-07-24T05:05:37.010000"],["2024-07-24T05:05:38.010000"],["2024-07-24T05:05:39.010000"],["2024-07-24T05:05:40.010000"],["2024-07-24T05:05:41.010000"],["2024-07-24T05:05:42.010000"],["2024-07-24T05:05:43.010000"],["2024-07-24T05:05:44.010000"],["2024-07-24T05:05:45.010000"],["2024-07-24T05:05:46.010000"],["2024-07-24T05:05:47.010000"],["2024-07-24T05:05:48.010000"],["2024-07-24T05:05:49.010000"],["2024-07-24T05:05:50.010000"],["2024-07-24T05:05:51.010000"],["2024-07-24T05:05:52.010000"],["2024-07-24T05:05:53.010000"],["2024-07-24T05:05:54.010000"],["2024-07-24T05:05:55.010000"],["2024-07-24T05:05:56.010000"],["2024-07-24T05:05:57.010000"],["2024-07-24T05:05:58.010000"],["2024-07-24T05:05:59.010000"],["2024-07-24T05:06:00.010000"],["2024-07-24T05:06:01.010000"],["2024-07-24T05:06:02.010000"],["2024-07-24T05:06:03.010000"],["2024-07-24T05:06:04.010000"],["2024-07-24T05:06:05.010000"],["2024-07-24T05:06:06.010000"],["2024-07-24T05:06:07.010000"],["2024-07-24T05:06:08.010000"],["2024-07-24T05:06:09.010000"],["2024-07-24T05:06:10.010000"],["2024-07-24T05:06:11.010000"],["2024-07-24T05:06:12.010000"],["2024-07-24T05:06:13.010000"],["2024-07-24T05:06:14.010000"],["2024-07-24T05:06:15.010000"],["2024-07-24T05:06:16.010000"],["2024-07-24T05:06:17.010000"],["2024-07-24T05:06:18.010000"],["2024-07-24T05:06:19.010000"],["2024-07-24T05:06:20.010000"],["2024-07-24T05:06:21.010000"],["2024-07-24T05:06:22.010000"],["2024-07-24T05:06:23.010000"],["2024-07-24T05:06:24.010000"],["2024-07-24T05:06:25.010000"],["2024-07-24T05:06:26.010000"],["2024-07-24T05:06:27.010000"],["2024-07-24T05:06:28.010000"],["2024-07-24T05:06:29.010000"],["2024-07-24T05:06:30.010000"],["2024-07-24T05:06:31.010000"],["2024-07-24T05:06:32.010000"],["2024-07-24T05:06:33.010000"],["2024-07-24T05:06:34.010000"],["2024-07-24T05:06:35.010000"],["2024-07-24T05:06:36.010000"],["2024-07-24T05:06:37.010000"],["2024-07-24T05:06:38.010000"],["2024-07-24T05:06:39.010000"],["2024-07-24T05:06:40.010000"],["2024-07-24T05:06:41.010000"],["2024-07-24T05:06:42.010000"],["2024-07-24T05:06:43.010000"],["2024-07-24T05:06:44.010000"],["2024-07-24T05:06:45.010000"],["2024-07-24T05:06:46.010000"],["2024-07-24T05:06:47.010000"],["2024-07-24T05:06:48.010000"],["2024-07-24T05:06:49.010000"],["2024-07-24T05:06:50.010000"],["2024-07-24T05:06:51.010000"],["2024-07-24T05:06:52.010000"],["2024-07-24T05:06:53.010000"],["2024-07-24T05:06:54.010000"],["2024-07-24T05:06:55.010000"],["2024-07-24T05:06:56.010000"],["2024-07-24T05:06:57.010000"],["2024-07-24T05:06:58.010000"],["2024-07-24T05:06:59.010000"],["2024-07-24T05:07:00.010000"],["2024-07-24T05:07:01.010000"],["2024-07-24T05:07:02.010000"],["2024-07-24T05:07:03.010000"],["2024-07-24T05:07:04.010000"],["2024-07-24T05:07:05.010000"],["2024-07-24T05:07:06.010000"],["2024-07-24T05:07:07.010000"],["2024-07-24T05:07:08.010000"],["2024-07-24T05:07:09.010000"],["2024-07-24T05:07:10.010000"],["2024-07-24T05:07:11.010000"],["2024-07-24T05:07:12.010000"],["2024-07-24T05:07:13.010000"],["2024-07-24T05:07:14.010000"],["2024-07-24T05:07:15.010000"],["2024-07-24T05:07:16.010000"],["2024-07-24T05:07:17.010000"],["2024-07-24T05:07:18.010000"],["2024-07-24T05:07:19.010000"],["2024-07-24T05:07:20.010000"],["2024-07-24T05:07:21.010000"],["2024-07-24T05:07:22.010000"],["2024-07-24T05:07:23.010000"],["2024-07-24T05:07:24.010000"],["2024-07-24T05:07:25.010000"],["2024-07-24T05:07:26.010000"],["2024-07-24T05:07:27.010000"],["2024-07-24T05:07:28.010000"],["2024-07-24T05:07:29.010000"],["2024-07-24T05:07:30.010000"],["2024-07-24T05:07:31.010000"],["2024-07-24T05:07:32.010000"],["2024-07-24T05:07:33.010000"],["2024-07-24T05:07:34.010000"],["2024-07-24T05:07:35.010000"],["2024-07-24T05:07:36.010000"],["2024-07-24T05:07:37.010000"],["2024-07-24T05:07:38.010000"],["2024-07-24T05:07:39.010000"],["2024-07-24T05:07:40.010000"],["2024-07-24T05:07:41.010000"],["2024-07-24T05:07:42.010000"],["2024-07-24T05:07:43.010000"],["2024-07-24T05:07:44.010000"],["2024-07-24T05:07:45.010000"],["2024-07-24T05:07:46.010000"],["2024-07-24T05:07:47.010000"],["2024-07-24T05:07:48.010000"],["2024-07-24T05:07:49.010000"],["2024-07-24T05:07:50.010000"],["2024-07-24T05:07:51.010000"],["2024-07-24T05:07:52.010000"],["2024-07-24T05:07:53.010000"],["2024-07-24T05:07:54.010000"],["2024-07-24T05:07:55.010000"],["2024-07-24T05:07:56.010000"],["2024-07-24T05:07:57.010000"],["2024-07-24T05:07:58.010000"],["2024-07-24T05:07:59.010000"],["2024-07-24T05:08:00.010000"],["2024-07-24T05:08:01.010000"],["2024-07-24T05:08:02.010000"],["2024-07-24T05:08:03.010000"],["2024-07-24T05:08:04.010000"],["2024-07-24T05:08:05.010000"],["2024-07-24T05:08:06.010000"],["2024-07-24T05:08:07.010000"],["2024-07-24T05:08:08.010000"],["2024-07-24T05:08:09.010000"],["2024-07-24T05:08:10.010000"],["2024-07-24T05:08:11.010000"],["2024-07-24T05:08:12.010000"],["2024-07-24T05:08:13.010000"],["2024-07-24T05:08:14.010000"],["2024-07-24T05:08:15.010000"],["2024-07-24T05:08:16.010000"],["2024-07-24T05:08:17.010000"],["2024-07-24T05:08:18.010000"],["2024-07-24T05:08:19.010000"],["2024-07-24T05:08:20.010000"],["2024-07-24T05:08:21.010000"],["2024-07-24T05:08:22.010000"],["2024-07-24T05:08:23.010000"],["2024-07-24T05:08:24.010000"],["2024-07-24T05:08:25.010000"],["2024-07-24T05:08:26.010000"],["2024-07-24T05:08:27.010000"],["2024-07-24T05:08:28.010000"],["2024-07-24T05:08:29.010000"],["2024-07-24T05:08:30.010000"],["2024-07-24T05:08:31.010000"],["2024-07-24T05:08:32.010000"],["2024-07-24T05:08:33.010000"],["2024-07-24T05:08:34.010000"],["2024-07-24T05:08:35.010000"],["2024-07-24T05:08:36.010000"],["2024-07-24T05:08:37.010000"],["2024-07-24T05:08:38.010000"],["2024-07-24T05:08:39.010000"],["2024-07-24T05:08:40.010000"],["2024-07-24T05:08:41.010000"],["2024-07-24T05:08:42.010000"],["2024-07-24T05:08:43.010000"],["2024-07-24T05:08:44.010000"],["2024-07-24T05:08:45.010000"],["2024-07-24T05:08:46.010000"],["2024-07-24T05:08:47.010000"],["2024-07-24T05:08:48.010000"],["2024-07-24T05:08:49.010000"],["2024-07-24T05:08:50.010000"],["2024-07-24T05:08:51.010000"],["2024-07-24T05:08:52.010000"],["2024-07-24T05:08:53.010000"],["2024-07-24T05:08:54.010000"],["2024-07-24T05:08:55.010000"],["2024-07-24T05:08:56.010000"],["2024-07-24T05:08:57.010000"],["2024-07-24T05:08:58.010000"],["2024-07-24T05:08:59.010000"],["2024-07-24T05:09:00.010000"],["2024-07-24T05:09:01.010000"],["2024-07-24T05:09:02.010000"],["2024-07-24T05:09:03.010000"],["2024-07-24T05:09:04.010000"],["2024-07-24T05:09:05.010000"],["2024-07-24T05:09:06.010000"],["2024-07-24T05:09:07.010000"],["2024-07-24T05:09:08.010000"],["2024-07-24T05:09:09.010000"],["2024-07-24T05:09:10.010000"],["2024-07-24T05:09:11.010000"],["2024-07-24T05:09:12.010000"],["2024-07-24T05:09:13.010000"],["2024-07-24T05:09:14.010000"],["2024-07-24T05:09:15.010000"],["2024-07-24T05:09:16.010000"],["2024-07-24T05:09:17.010000"],["2024-07-24T05:09:18.010000"],["2024-07-24T05:09:19.010000"],["2024-07-24T05:09:20.010000"],["2024-07-24T05:09:21.010000"],["2024-07-24T05:09:22.010000"],["2024-07-24T05:09:23.010000"],["2024-07-24T05:09:24.010000"],["2024-07-24T05:09:25.010000"],["2024-07-24T05:09:26.010000"],["2024-07-24T05:09:27.010000"],["2024-07-24T05:09:28.010000"],["2024-07-24T05:09:29.010000"],["2024-07-24T05:09:30.010000"],["2024-07-24T05:09:31.010000"],["2024-07-24T05:09:32.010000"],["2024-07-24T05:09:33.010000"],["2024-07-24T05:09:34.010000"],["2024-07-24T05:09:35.010000"],["2024-07-24T05:09:36.010000"],["2024-07-24T05:09:37.010000"],["2024-07-24T05:09:38.010000"],["2024-07-24T05:09:39.010000"],["2024-07-24T05:09:40.010000"],["2024-07-24T05:09:41.010000"],["2024-07-24T05:09:42.010000"],["2024-07-24T05:09:43.010000"],["2024-07-24T05:09:44.010000"],["2024-07-24T05:09:45.010000"],["2024-07-24T05:09:46.010000"],["2024-07-24T05:09:47.010000"],["2024-07-24T05:09:48.010000"],["2024-07-24T05:09:49.010000"],["2024-07-24T05:09:50.010000"],["2024-07-24T05:09:51.010000"],["2024-07-24T05:09:52.010000"],["2024-07-24T05:09:53.010000"],["2024-07-24T05:09:54.010000"],["2024-07-24T05:09:55.010000"],["2024-07-24T05:09:56.010000"],["2024-07-24T05:09:57.010000"],["2024-07-24T05:09:58.010000"],["2024-07-24T05:09:59.010000"],["2024-07-24T05:10:00.010000"],["2024-07-24T05:10:01.010000"],["2024-07-24T05:10:02.010000"],["2024-07-24T05:10:03.010000"],["2024-07-24T05:10:04.010000"],["2024-07-24T05:10:05.010000"],["2024-07-24T05:10:06.010000"],["2024-07-24T05:10:07.010000"],["2024-07-24T05:10:08.010000"],["2024-07-24T05:10:09.010000"],["2024-07-24T05:10:10.010000"],["2024-07-24T05:10:11.010000"],["2024-07-24T05:10:12.010000"],["2024-07-24T05:10:13.010000"],["2024-07-24T05:10:14.010000"],["2024-07-24T05:10:15.010000"],["2024-07-24T05:10:16.010000"],["2024-07-24T05:10:17.010000"],["2024-07-24T05:10:18.010000"],["2024-07-24T05:10:19.010000"],["2024-07-24T05:10:20.010000"],["2024-07-24T05:10:21.010000"],["2024-07-24T05:10:22.010000"],["2024-07-24T05:10:23.010000"],["2024-07-24T05:10:24.010000"],["2024-07-24T05:10:25.010000"],["2024-07-24T05:10:26.010000"],["2024-07-24T05:10:27.010000"],["2024-07-24T05:10:28.010000"],["2024-07-24T05:10:29.010000"],["2024-07-24T05:10:30.010000"],["2024-07-24T05:10:31.010000"],["2024-07-24T05:10:32.010000"],["2024-07-24T05:10:33.010000"],["2024-07-24T05:10:34.010000"],["2024-07-24T05:10:35.010000"],["2024-07-24T05:10:36.010000"],["2024-07-24T05:10:37.010000"],["2024-07-24T05:10:38.010000"],["2024-07-24T05:10:39.010000"],["2024-07-24T05:10:40.010000"],["2024-07-24T05:10:41.010000"],["2024-07-24T05:10:42.010000"],["2024-07-24T05:10:43.010000"],["2024-07-24T05:10:44.010000"],["2024-07-24T05:10:45.010000"],["2024-07-24T05:10:46.010000"],["2024-07-24T05:10:47.010000"],["2024-07-24T05:10:48.010000"],["2024-07-24T05:10:49.010000"],["2024-07-24T05:10:50.010000"],["2024-07-24T05:10:51.010000"],["2024-07-24T05:10:52.010000"],["2024-07-24T05:10:53.010000"],["2024-07-24T05:10:54.010000"],["2024-07-24T05:10:55.010000"],["2024-07-24T05:10:56.010000"],["2024-07-24T05:10:57.010000"],["2024-07-24T05:10:58.010000"],["2024-07-24T05:10:59.010000"],["2024-07-24T05:11:00.010000"],["2024-07-24T05:11:01.010000"],["2024-07-24T05:11:02.010000"],["2024-07-24T05:11:03.010000"],["2024-07-24T05:11:04.010000"],["2024-07-24T05:11:05.010000"],["2024-07-24T05:11:06.010000"],["2024-07-24T05:11:07.010000"],["2024-07-24T05:11:08.010000"],["2024-07-24T05:11:09.010000"],["2024-07-24T05:11:10.010000"],["2024-07-24T05:11:11.010000"],["2024-07-24T05:11:12.010000"],["2024-07-24T05:11:13.010000"],["2024-07-24T05:11:14.010000"],["2024-07-24T05:11:15.010000"],["2024-07-24T05:11:16.010000"],["2024-07-24T05:11:17.010000"],["2024-07-24T05:11:18.010000"],["2024-07-24T05:11:19.010000"],["2024-07-24T05:11:20.010000"],["2024-07-24T05:11:21.010000"],["2024-07-24T05:11:22.010000"],["2024-07-24T05:11:23.010000"],["2024-07-24T05:11:24.010000"],["2024-07-24T05:11:25.010000"],["2024-07-24T05:11:26.010000"],["2024-07-24T05:11:27.010000"],["2024-07-24T05:11:28.010000"],["2024-07-24T05:11:29.010000"],["2024-07-24T05:11:30.010000"],["2024-07-24T05:11:31.010000"],["2024-07-24T05:11:32.010000"],["2024-07-24T05:11:33.010000"],["2024-07-24T05:11:34.010000"],["2024-07-24T05:11:35.010000"],["2024-07-24T05:11:36.010000"],["2024-07-24T05:11:37.010000"],["2024-07-24T05:11:38.010000"],["2024-07-24T05:11:39.010000"],["2024-07-24T05:11:40.010000"],["2024-07-24T05:11:41.010000"],["2024-07-24T05:11:42.010000"],["2024-07-24T05:11:43.010000"],["2024-07-24T05:11:44.010000"],["2024-07-24T05:11:45.010000"],["2024-07-24T05:11:46.010000"],["2024-07-24T05:11:47.010000"],["2024-07-24T05:11:48.010000"],["2024-07-24T05:11:49.010000"],["2024-07-24T05:11:50.010000"],["2024-07-24T05:11:51.010000"],["2024-07-24T05:11:52.010000"],["2024-07-24T05:11:53.010000"],["2024-07-24T05:11:54.010000"],["2024-07-24T05:11:55.010000"],["2024-07-24T05:11:56.010000"],["2024-07-24T05:11:57.010000"],["2024-07-24T05:11:58.010000"],["2024-07-24T05:11:59.010000"],["2024-07-24T05:12:00.010000"],["2024-07-24T05:12:01.010000"],["2024-07-24T05:12:02.010000"],["2024-07-24T05:12:03.010000"],["2024-07-24T05:12:04.010000"],["2024-07-24T05:12:05.010000"],["2024-07-24T05:12:06.010000"],["2024-07-24T05:12:07.010000"],["2024-07-24T05:12:08.010000"],["2024-07-24T05:12:09.010000"],["2024-07-24T05:12:10.010000"],["2024-07-24T05:12:11.010000"],["2024-07-24T05:12:12.010000"],["2024-07-24T05:12:13.010000"],["2024-07-24T05:12:14.010000"],["2024-07-24T05:12:15.010000"],["2024-07-24T05:12:16.010000"],["2024-07-24T05:12:17.010000"],["2024-07-24T05:12:18.010000"],["2024-07-24T05:12:19.010000"],["2024-07-24T05:12:20.010000"],["2024-07-24T05:12:21.010000"],["2024-07-24T05:12:22.010000"],["2024-07-24T05:12:23.010000"],["2024-07-24T05:12:24.010000"],["2024-07-24T05:12:25.010000"],["2024-07-24T05:12:26.010000"],["2024-07-24T05:12:27.010000"],["2024-07-24T05:12:28.010000"],["2024-07-24T05:12:29.010000"],["2024-07-24T05:12:30.010000"],["2024-07-24T05:12:31.010000"],["2024-07-24T05:12:32.010000"],["2024-07-24T05:12:33.010000"],["2024-07-24T05:12:34.010000"],["2024-07-24T05:12:35.010000"],["2024-07-24T05:12:36.010000"],["2024-07-24T05:12:37.010000"],["2024-07-24T05:12:38.010000"],["2024-07-24T05:12:39.010000"],["2024-07-24T05:12:40.010000"],["2024-07-24T05:12:41.010000"],["2024-07-24T05:12:42.010000"],["2024-07-24T05:12:43.010000"],["2024-07-24T05:12:44.010000"],["2024-07-24T05:12:45.010000"],["2024-07-24T05:12:46.010000"],["2024-07-24T05:12:47.010000"],["2024-07-24T05:12:48.010000"],["2024-07-24T05:12:49.010000"],["2024-07-24T05:12:50.010000"],["2024-07-24T05:12:51.010000"],["2024-07-24T05:12:52.010000"],["2024-07-24T05:12:53.010000"],["2024-07-24T05:12:54.010000"],["2024-07-24T05:12:55.010000"],["2024-07-24T05:12:56.010000"],["2024-07-24T05:12:57.010000"],["2024-07-24T05:12:58.010000"],["2024-07-24T05:12:59.010000"],["2024-07-24T05:13:00.010000"],["2024-07-24T05:13:01.010000"],["2024-07-24T05:13:02.010000"],["2024-07-24T05:13:03.010000"],["2024-07-24T05:13:04.010000"],["2024-07-24T05:13:05.010000"],["2024-07-24T05:13:06.010000"],["2024-07-24T05:13:07.010000"],["2024-07-24T05:13:08.010000"],["2024-07-24T05:13:09.010000"],["2024-07-24T05:13:10.010000"],["2024-07-24T05:13:11.010000"],["2024-07-24T05:13:12.010000"],["2024-07-24T05:13:13.010000"],["2024-07-24T05:13:14.010000"],["2024-07-24T05:13:15.010000"],["2024-07-24T05:13:16.010000"],["2024-07-24T05:13:17.010000"],["2024-07-24T05:13:18.010000"],["2024-07-24T05:13:19.010000"],["2024-07-24T05:13:20.010000"],["2024-07-24T05:13:21.010000"],["2024-07-24T05:13:22.010000"],["2024-07-24T05:13:23.010000"],["2024-07-24T05:13:24.010000"],["2024-07-24T05:13:25.010000"],["2024-07-24T05:13:26.010000"],["2024-07-24T05:13:27.010000"],["2024-07-24T05:13:28.010000"],["2024-07-24T05:13:29.010000"],["2024-07-24T05:13:30.010000"],["2024-07-24T05:13:31.010000"],["2024-07-24T05:13:32.010000"],["2024-07-24T05:13:33.010000"],["2024-07-24T05:13:34.010000"],["2024-07-24T05:13:35.010000"],["2024-07-24T05:13:36.010000"],["2024-07-24T05:13:37.010000"],["2024-07-24T05:13:38.010000"],["2024-07-24T05:13:39.010000"],["2024-07-24T05:13:40.010000"],["2024-07-24T05:13:41.010000"],["2024-07-24T05:13:42.010000"],["2024-07-24T05:13:43.010000"],["2024-07-24T05:13:44.010000"],["2024-07-24T05:13:45.010000"],["2024-07-24T05:13:46.010000"],["2024-07-24T05:13:47.010000"],["2024-07-24T05:13:48.010000"],["2024-07-24T05:13:49.010000"],["2024-07-24T05:13:50.010000"],["2024-07-24T05:13:51.010000"],["2024-07-24T05:13:52.010000"],["2024-07-24T05:13:53.010000"],["2024-07-24T05:13:54.010000"],["2024-07-24T05:13:55.010000"],["2024-07-24T05:13:56.010000"],["2024-07-24T05:13:57.010000"],["2024-07-24T05:13:58.010000"],["2024-07-24T05:13:59.010000"],["2024-07-24T05:14:00.010000"],["2024-07-24T05:14:01.010000"],["2024-07-24T05:14:02.010000"],["2024-07-24T05:14:03.010000"],["2024-07-24T05:14:04.010000"],["2024-07-24T05:14:05.010000"],["2024-07-24T05:14:06.010000"],["2024-07-24T05:14:07.010000"],["2024-07-24T05:14:08.010000"],["2024-07-24T05:14:09.010000"],["2024-07-24T05:14:10.010000"],["2024-07-24T05:14:11.010000"],["2024-07-24T05:14:12.010000"],["2024-07-24T05:14:13.010000"],["2024-07-24T05:14:14.010000"],["2024-07-24T05:14:15.010000"],["2024-07-24T05:14:16.010000"],["2024-07-24T05:14:17.010000"],["2024-07-24T05:14:18.010000"],["2024-07-24T05:14:19.010000"],["2024-07-24T05:14:20.010000"],["2024-07-24T05:14:21.010000"],["2024-07-24T05:14:22.010000"],["2024-07-24T05:14:23.010000"],["2024-07-24T05:14:24.010000"],["2024-07-24T05:14:25.010000"],["2024-07-24T05:14:26.010000"],["2024-07-24T05:14:27.010000"],["2024-07-24T05:14:28.010000"],["2024-07-24T05:14:29.010000"],["2024-07-24T05:14:30.010000"],["2024-07-24T05:14:31.010000"],["2024-07-24T05:14:32.010000"],["2024-07-24T05:14:33.010000"],["2024-07-24T05:14:34.010000"],["2024-07-24T05:14:35.010000"],["2024-07-24T05:14:36.010000"],["2024-07-24T05:14:37.010000"],["2024-07-24T05:14:38.010000"],["2024-07-24T05:14:39.010000"],["2024-07-24T05:14:40.010000"],["2024-07-24T05:14:41.010000"],["2024-07-24T05:14:42.010000"],["2024-07-24T05:14:43.010000"],["2024-07-24T05:14:44.010000"],["2024-07-24T05:14:45.010000"],["2024-07-24T05:14:46.010000"],["2024-07-24T05:14:47.010000"],["2024-07-24T05:14:48.010000"],["2024-07-24T05:14:49.010000"],["2024-07-24T05:14:50.010000"],["2024-07-24T05:14:51.010000"],["2024-07-24T05:14:52.010000"],["2024-07-24T05:14:53.010000"],["2024-07-24T05:14:54.010000"],["2024-07-24T05:14:55.010000"],["2024-07-24T05:14:56.010000"],["2024-07-24T05:14:57.010000"],["2024-07-24T05:14:58.010000"],["2024-07-24T05:14:59.010000"],["2024-07-24T05:15:00.010000"],["2024-07-24T05:15:01.010000"],["2024-07-24T05:15:02.010000"],["2024-07-24T05:15:03.010000"],["2024-07-24T05:15:04.010000"],["2024-07-24T05:15:05.010000"],["2024-07-24T05:15:06.010000"],["2024-07-24T05:15:07.010000"],["2024-07-24T05:15:08.010000"],["2024-07-24T05:15:09.010000"],["2024-07-24T05:15:10.010000"],["2024-07-24T05:15:11.010000"],["2024-07-24T05:15:12.010000"],["2024-07-24T05:15:13.010000"],["2024-07-24T05:15:14.010000"],["2024-07-24T05:15:15.010000"],["2024-07-24T05:15:16.010000"],["2024-07-24T05:15:17.010000"],["2024-07-24T05:15:18.010000"],["2024-07-24T05:15:19.010000"],["2024-07-24T05:15:20.010000"],["2024-07-24T05:15:21.010000"],["2024-07-24T05:15:22.010000"],["2024-07-24T05:15:23.010000"],["2024-07-24T05:15:24.010000"],["2024-07-24T05:15:25.010000"],["2024-07-24T05:15:26.010000"],["2024-07-24T05:15:27.010000"],["2024-07-24T05:15:28.010000"],["2024-07-24T05:15:29.010000"],["2024-07-24T05:15:30.010000"],["2024-07-24T05:15:31.010000"],["2024-07-24T05:15:32.010000"],["2024-07-24T05:15:33.010000"],["2024-07-24T05:15:34.010000"],["2024-07-24T05:15:35.010000"],["2024-07-24T05:15:36.010000"],["2024-07-24T05:15:37.010000"],["2024-07-24T05:15:38.010000"],["2024-07-24T05:15:39.010000"],["2024-07-24T05:15:40.010000"],["2024-07-24T05:15:41.010000"],["2024-07-24T05:15:42.010000"],["2024-07-24T05:15:43.010000"],["2024-07-24T05:15:44.010000"],["2024-07-24T05:15:45.010000"],["2024-07-24T05:15:46.010000"],["2024-07-24T05:15:47.010000"],["2024-07-24T05:15:48.010000"],["2024-07-24T05:15:49.010000"],["2024-07-24T05:15:50.010000"],["2024-07-24T05:15:51.010000"],["2024-07-24T05:15:52.010000"],["2024-07-24T05:15:53.010000"],["2024-07-24T05:15:54.010000"],["2024-07-24T05:15:55.010000"],["2024-07-24T05:15:56.010000"],["2024-07-24T05:15:57.010000"],["2024-07-24T05:15:58.010000"],["2024-07-24T05:15:59.010000"],["2024-07-24T05:16:00.010000"],["2024-07-24T05:16:01.010000"],["2024-07-24T05:16:02.010000"],["2024-07-24T05:16:03.010000"],["2024-07-24T05:16:04.010000"],["2024-07-24T05:16:05.010000"],["2024-07-24T05:16:06.010000"],["2024-07-24T05:16:07.010000"],["2024-07-24T05:16:08.010000"],["2024-07-24T05:16:09.010000"],["2024-07-24T05:16:10.010000"],["2024-07-24T05:16:11.010000"],["2024-07-24T05:16:12.010000"],["2024-07-24T05:16:13.010000"],["2024-07-24T05:16:14.010000"],["2024-07-24T05:16:15.010000"],["2024-07-24T05:16:16.010000"],["2024-07-24T05:16:17.010000"],["2024-07-24T05:16:18.010000"],["2024-07-24T05:16:19.010000"],["2024-07-24T05:16:20.010000"],["2024-07-24T05:16:21.010000"],["2024-07-24T05:16:22.010000"],["2024-07-24T05:16:23.010000"],["2024-07-24T05:16:24.010000"],["2024-07-24T05:16:25.010000"],["2024-07-24T05:16:26.010000"],["2024-07-24T05:16:27.010000"],["2024-07-24T05:16:28.010000"],["2024-07-24T05:16:29.010000"],["2024-07-24T05:16:30.010000"],["2024-07-24T05:16:31.010000"],["2024-07-24T05:16:32.010000"],["2024-07-24T05:16:33.010000"],["2024-07-24T05:16:34.010000"],["2024-07-24T05:16:35.010000"],["2024-07-24T05:16:36.010000"],["2024-07-24T05:16:37.010000"],["2024-07-24T05:16:38.010000"],["2024-07-24T05:16:39.010000"],["2024-07-24T05:16:40.010000"],["2024-07-24T05:16:41.010000"],["2024-07-24T05:16:42.010000"],["2024-07-24T05:16:43.010000"],["2024-07-24T05:16:44.010000"],["2024-07-24T05:16:45.010000"],["2024-07-24T05:16:46.010000"],["2024-07-24T05:16:47.010000"],["2024-07-24T05:16:48.010000"],["2024-07-24T05:16:49.010000"],["2024-07-24T05:16:50.010000"],["2024-07-24T05:16:51.010000"],["2024-07-24T05:16:52.010000"],["2024-07-24T05:16:53.010000"],["2024-07-24T05:16:54.010000"],["2024-07-24T05:16:55.010000"],["2024-07-24T05:16:56.010000"],["2024-07-24T05:16:57.010000"],["2024-07-24T05:16:58.010000"],["2024-07-24T05:16:59.010000"],["2024-07-24T05:17:00.010000"],["2024-07-24T05:17:01.010000"],["2024-07-24T05:17:02.010000"],["2024-07-24T05:17:03.010000"],["2024-07-24T05:17:04.010000"],["2024-07-24T05:17:05.010000"],["2024-07-24T05:17:06.010000"],["2024-07-24T05:17:07.010000"],["2024-07-24T05:17:08.010000"],["2024-07-24T05:17:09.010000"],["2024-07-24T05:17:10.010000"],["2024-07-24T05:17:11.010000"],["2024-07-24T05:17:12.010000"],["2024-07-24T05:17:13.010000"],["2024-07-24T05:17:14.010000"],["2024-07-24T05:17:15.010000"],["2024-07-24T05:17:16.010000"],["2024-07-24T05:17:17.010000"],["2024-07-24T05:17:18.010000"],["2024-07-24T05:17:19.010000"],["2024-07-24T05:17:20.010000"],["2024-07-24T05:17:21.010000"],["2024-07-24T05:17:22.010000"],["2024-07-24T05:17:23.010000"],["2024-07-24T05:17:24.010000"],["2024-07-24T05:17:25.010000"],["2024-07-24T05:17:26.010000"],["2024-07-24T05:17:27.010000"],["2024-07-24T05:17:28.010000"],["2024-07-24T05:17:29.010000"],["2024-07-24T05:17:30.010000"],["2024-07-24T05:17:31.010000"],["2024-07-24T05:17:32.010000"],["2024-07-24T05:17:33.010000"],["2024-07-24T05:17:34.010000"],["2024-07-24T05:17:35.010000"],["2024-07-24T05:17:36.010000"],["2024-07-24T05:17:37.010000"],["2024-07-24T05:17:38.010000"],["2024-07-24T05:17:39.010000"],["2024-07-24T05:17:40.010000"],["2024-07-24T05:17:41.010000"],["2024-07-24T05:17:42.010000"],["2024-07-24T05:17:43.010000"],["2024-07-24T05:17:44.010000"],["2024-07-24T05:17:45.010000"],["2024-07-24T05:17:46.010000"],["2024-07-24T05:17:47.010000"],["2024-07-24T05:17:48.010000"],["2024-07-24T05:17:49.010000"],["2024-07-24T05:17:50.010000"],["2024-07-24T05:17:51.010000"],["2024-07-24T05:17:52.010000"],["2024-07-24T05:17:53.010000"],["2024-07-24T05:17:54.010000"],["2024-07-24T05:17:55.010000"],["2024-07-24T05:17:56.010000"],["2024-07-24T05:17:57.010000"],["2024-07-24T05:17:58.010000"],["2024-07-24T05:17:59.010000"],["2024-07-24T05:18:00.010000"],["2024-07-24T05:18:01.010000"],["2024-07-24T05:18:02.010000"],["2024-07-24T05:18:03.010000"],["2024-07-24T05:18:04.010000"],["2024-07-24T05:18:05.010000"],["2024-07-24T05:18:06.010000"],["2024-07-24T05:18:07.010000"],["2024-07-24T05:18:08.010000"],["2024-07-24T05:18:09.010000"],["2024-07-24T05:18:10.010000"],["2024-07-24T05:18:11.010000"],["2024-07-24T05:18:12.010000"],["2024-07-24T05:18:13.010000"],["2024-07-24T05:18:14.010000"],["2024-07-24T05:18:15.010000"],["2024-07-24T05:18:16.010000"],["2024-07-24T05:18:17.010000"],["2024-07-24T05:18:18.010000"],["2024-07-24T05:18:19.010000"],["2024-07-24T05:18:20.010000"],["2024-07-24T05:18:21.010000"],["2024-07-24T05:18:22.010000"],["2024-07-24T05:18:23.010000"],["2024-07-24T05:18:24.010000"],["2024-07-24T05:18:25.010000"],["2024-07-24T05:18:26.010000"],["2024-07-24T05:18:27.010000"],["2024-07-24T05:18:28.010000"],["2024-07-24T05:18:29.010000"],["2024-07-24T05:18:30.010000"],["2024-07-24T05:18:31.010000"],["2024-07-24T05:18:32.010000"],["2024-07-24T05:18:33.010000"],["2024-07-24T05:18:34.010000"],["2024-07-24T05:18:35.010000"],["2024-07-24T05:18:36.010000"],["2024-07-24T05:18:37.010000"],["2024-07-24T05:18:38.010000"],["2024-07-24T05:18:39.010000"],["2024-07-24T05:18:40.010000"],["2024-07-24T05:18:41.010000"],["2024-07-24T05:18:42.010000"],["2024-07-24T05:18:43.010000"],["2024-07-24T05:18:44.010000"],["2024-07-24T05:18:45.010000"],["2024-07-24T05:18:46.010000"],["2024-07-24T05:18:47.010000"],["2024-07-24T05:18:48.010000"],["2024-07-24T05:18:49.010000"],["2024-07-24T05:18:50.010000"],["2024-07-24T05:18:51.010000"],["2024-07-24T05:18:52.010000"],["2024-07-24T05:18:53.010000"],["2024-07-24T05:18:54.010000"],["2024-07-24T05:18:55.010000"],["2024-07-24T05:18:56.010000"],["2024-07-24T05:18:57.010000"],["2024-07-24T05:18:58.010000"],["2024-07-24T05:18:59.010000"],["2024-07-24T05:19:00.010000"],["2024-07-24T05:19:01.010000"],["2024-07-24T05:19:02.010000"],["2024-07-24T05:19:03.010000"],["2024-07-24T05:19:04.010000"],["2024-07-24T05:19:05.010000"],["2024-07-24T05:19:06.010000"],["2024-07-24T05:19:07.010000"],["2024-07-24T05:19:08.010000"],["2024-07-24T05:19:09.010000"],["2024-07-24T05:19:10.010000"],["2024-07-24T05:19:11.010000"],["2024-07-24T05:19:12.010000"],["2024-07-24T05:19:13.010000"],["2024-07-24T05:19:14.010000"],["2024-07-24T05:19:15.010000"],["2024-07-24T05:19:16.010000"],["2024-07-24T05:19:17.010000"],["2024-07-24T05:19:18.010000"],["2024-07-24T05:19:19.010000"],["2024-07-24T05:19:20.010000"],["2024-07-24T05:19:21.010000"],["2024-07-24T05:19:22.010000"],["2024-07-24T05:19:23.010000"],["2024-07-24T05:19:24.010000"],["2024-07-24T05:19:25.010000"],["2024-07-24T05:19:26.010000"],["2024-07-24T05:19:27.010000"],["2024-07-24T05:19:28.010000"],["2024-07-24T05:19:29.010000"],["2024-07-24T05:19:30.010000"],["2024-07-24T05:19:31.010000"],["2024-07-24T05:19:32.010000"],["2024-07-24T05:19:33.010000"],["2024-07-24T05:19:34.010000"],["2024-07-24T05:19:35.010000"],["2024-07-24T05:19:36.010000"],["2024-07-24T05:19:37.010000"],["2024-07-24T05:19:38.010000"],["2024-07-24T05:19:39.010000"],["2024-07-24T05:19:40.010000"],["2024-07-24T05:19:41.010000"],["2024-07-24T05:19:42.010000"],["2024-07-24T05:19:43.010000"],["2024-07-24T05:19:44.010000"],["2024-07-24T05:19:45.010000"],["2024-07-24T05:19:46.010000"],["2024-07-24T05:19:47.010000"],["2024-07-24T05:19:48.010000"],["2024-07-24T05:19:49.010000"],["2024-07-24T05:19:50.010000"],["2024-07-24T05:19:51.010000"],["2024-07-24T05:19:52.010000"],["2024-07-24T05:19:53.010000"],["2024-07-24T05:19:54.010000"],["2024-07-24T05:19:55.010000"],["2024-07-24T05:19:56.010000"],["2024-07-24T05:19:57.010000"],["2024-07-24T05:19:58.010000"],["2024-07-24T05:19:59.010000"],["2024-07-24T05:20:00.010000"],["2024-07-24T05:20:01.010000"],["2024-07-24T05:20:02.010000"],["2024-07-24T05:20:03.010000"],["2024-07-24T05:20:04.010000"],["2024-07-24T05:20:05.010000"],["2024-07-24T05:20:06.010000"],["2024-07-24T05:20:07.010000"],["2024-07-24T05:20:08.010000"],["2024-07-24T05:20:09.010000"],["2024-07-24T05:20:10.010000"],["2024-07-24T05:20:11.010000"],["2024-07-24T05:20:12.010000"],["2024-07-24T05:20:13.010000"],["2024-07-24T05:20:14.010000"],["2024-07-24T05:20:15.010000"],["2024-07-24T05:20:16.010000"],["2024-07-24T05:20:17.010000"],["2024-07-24T05:20:18.010000"],["2024-07-24T05:20:19.010000"],["2024-07-24T05:20:20.010000"],["2024-07-24T05:20:21.010000"],["2024-07-24T05:20:22.010000"],["2024-07-24T05:20:23.010000"],["2024-07-24T05:20:24.010000"],["2024-07-24T05:20:25.010000"],["2024-07-24T05:20:26.010000"],["2024-07-24T05:20:27.010000"],["2024-07-24T05:20:28.010000"],["2024-07-24T05:20:29.010000"],["2024-07-24T05:20:30.010000"],["2024-07-24T05:20:31.010000"],["2024-07-24T05:20:32.010000"],["2024-07-24T05:20:33.010000"],["2024-07-24T05:20:34.010000"],["2024-07-24T05:20:35.010000"],["2024-07-24T05:20:36.010000"],["2024-07-24T05:20:37.010000"],["2024-07-24T05:20:38.010000"],["2024-07-24T05:20:39.010000"],["2024-07-24T05:20:40.010000"],["2024-07-24T05:20:41.010000"],["2024-07-24T05:20:42.010000"],["2024-07-24T05:20:43.010000"],["2024-07-24T05:20:44.010000"],["2024-07-24T05:20:45.010000"],["2024-07-24T05:20:46.010000"],["2024-07-24T05:20:47.010000"],["2024-07-24T05:20:48.010000"],["2024-07-24T05:20:49.010000"],["2024-07-24T05:20:50.010000"],["2024-07-24T05:20:51.010000"],["2024-07-24T05:20:52.010000"],["2024-07-24T05:20:53.010000"],["2024-07-24T05:20:54.010000"],["2024-07-24T05:20:55.010000"],["2024-07-24T05:20:56.010000"],["2024-07-24T05:20:57.010000"],["2024-07-24T05:20:58.010000"],["2024-07-24T05:20:59.010000"],["2024-07-24T05:21:00.010000"],["2024-07-24T05:21:01.010000"],["2024-07-24T05:21:02.010000"],["2024-07-24T05:21:03.010000"],["2024-07-24T05:21:04.010000"],["2024-07-24T05:21:05.010000"],["2024-07-24T05:21:06.010000"],["2024-07-24T05:21:07.010000"],["2024-07-24T05:21:08.010000"],["2024-07-24T05:21:09.010000"],["2024-07-24T05:21:10.010000"],["2024-07-24T05:21:11.010000"],["2024-07-24T05:21:12.010000"],["2024-07-24T05:21:13.010000"],["2024-07-24T05:21:14.010000"],["2024-07-24T05:21:15.010000"],["2024-07-24T05:21:16.010000"],["2024-07-24T05:21:17.010000"],["2024-07-24T05:21:18.010000"],["2024-07-24T05:21:19.010000"],["2024-07-24T05:21:20.010000"],["2024-07-24T05:21:21.010000"],["2024-07-24T05:21:22.010000"],["2024-07-24T05:21:23.010000"],["2024-07-24T05:21:24.010000"],["2024-07-24T05:21:25.010000"],["2024-07-24T05:21:26.010000"],["2024-07-24T05:21:27.010000"],["2024-07-24T05:21:28.010000"],["2024-07-24T05:21:29.010000"],["2024-07-24T05:21:30.010000"],["2024-07-24T05:21:31.010000"],["2024-07-24T05:21:32.010000"],["2024-07-24T05:21:33.010000"],["2024-07-24T05:21:34.010000"],["2024-07-24T05:21:35.010000"],["2024-07-24T05:21:36.010000"],["2024-07-24T05:21:37.010000"],["2024-07-24T05:21:38.010000"],["2024-07-24T05:21:39.010000"],["2024-07-24T05:21:40.010000"],["2024-07-24T05:21:41.010000"],["2024-07-24T05:21:42.010000"],["2024-07-24T05:21:43.010000"],["2024-07-24T05:21:44.010000"],["2024-07-24T05:21:45.010000"],["2024-07-24T05:21:46.010000"],["2024-07-24T05:21:47.010000"],["2024-07-24T05:21:48.010000"],["2024-07-24T05:21:49.010000"],["2024-07-24T05:21:50.010000"],["2024-07-24T05:21:51.010000"],["2024-07-24T05:21:52.010000"],["2024-07-24T05:21:53.010000"],["2024-07-24T05:21:54.010000"],["2024-07-24T05:21:55.010000"],["2024-07-24T05:21:56.010000"],["2024-07-24T05:21:57.010000"],["2024-07-24T05:21:58.010000"],["2024-07-24T05:21:59.010000"],["2024-07-24T05:22:00.010000"],["2024-07-24T05:22:01.010000"],["2024-07-24T05:22:02.010000"],["2024-07-24T05:22:03.010000"],["2024-07-24T05:22:04.010000"],["2024-07-24T05:22:05.010000"],["2024-07-24T05:22:06.010000"],["2024-07-24T05:22:07.010000"],["2024-07-24T05:22:08.010000"],["2024-07-24T05:22:09.010000"],["2024-07-24T05:22:10.010000"],["2024-07-24T05:22:11.010000"],["2024-07-24T05:22:12.010000"],["2024-07-24T05:22:13.010000"],["2024-07-24T05:22:14.010000"],["2024-07-24T05:22:15.010000"],["2024-07-24T05:22:16.010000"],["2024-07-24T05:22:17.010000"],["2024-07-24T05:22:18.010000"],["2024-07-24T05:22:19.010000"],["2024-07-24T05:22:20.010000"],["2024-07-24T05:22:21.010000"],["2024-07-24T05:22:22.010000"],["2024-07-24T05:22:23.010000"],["2024-07-24T05:22:24.010000"],["2024-07-24T05:22:25.010000"],["2024-07-24T05:22:26.010000"],["2024-07-24T05:22:27.010000"],["2024-07-24T05:22:28.010000"],["2024-07-24T05:22:29.010000"],["2024-07-24T05:22:30.010000"],["2024-07-24T05:22:31.010000"],["2024-07-24T05:22:32.010000"],["2024-07-24T05:22:33.010000"],["2024-07-24T05:22:34.010000"],["2024-07-24T05:22:35.010000"],["2024-07-24T05:22:36.010000"],["2024-07-24T05:22:37.010000"],["2024-07-24T05:22:38.010000"],["2024-07-24T05:22:39.010000"],["2024-07-24T05:22:40.010000"],["2024-07-24T05:22:41.010000"],["2024-07-24T05:22:42.010000"],["2024-07-24T05:22:43.010000"],["2024-07-24T05:22:44.010000"],["2024-07-24T05:22:45.010000"],["2024-07-24T05:22:46.010000"],["2024-07-24T05:22:47.010000"],["2024-07-24T05:22:48.010000"],["2024-07-24T05:22:49.010000"],["2024-07-24T05:22:50.010000"],["2024-07-24T05:22:51.010000"],["2024-07-24T05:22:52.010000"],["2024-07-24T05:22:53.010000"],["2024-07-24T05:22:54.010000"],["2024-07-24T05:22:55.010000"],["2024-07-24T05:22:56.010000"],["2024-07-24T05:22:57.010000"],["2024-07-24T05:22:58.010000"],["2024-07-24T05:22:59.010000"],["2024-07-24T05:23:00.010000"],["2024-07-24T05:23:01.010000"],["2024-07-24T05:23:02.010000"],["2024-07-24T05:23:03.010000"],["2024-07-24T05:23:04.010000"],["2024-07-24T05:23:05.010000"],["2024-07-24T05:23:06.010000"],["2024-07-24T05:23:07.010000"],["2024-07-24T05:23:08.010000"],["2024-07-24T05:23:09.010000"],["2024-07-24T05:23:10.010000"],["2024-07-24T05:23:11.010000"],["2024-07-24T05:23:12.010000"],["2024-07-24T05:23:13.010000"],["2024-07-24T05:23:14.010000"],["2024-07-24T05:23:15.010000"],["2024-07-24T05:23:16.010000"],["2024-07-24T05:23:17.010000"],["2024-07-24T05:23:18.010000"],["2024-07-24T05:23:19.010000"],["2024-07-24T05:23:20.010000"],["2024-07-24T05:23:21.010000"],["2024-07-24T05:23:22.010000"],["2024-07-24T05:23:23.010000"],["2024-07-24T05:23:24.010000"],["2024-07-24T05:23:25.010000"],["2024-07-24T05:23:26.010000"],["2024-07-24T05:23:27.010000"],["2024-07-24T05:23:28.010000"],["2024-07-24T05:23:29.010000"],["2024-07-24T05:23:30.010000"],["2024-07-24T05:23:31.010000"],["2024-07-24T05:23:32.010000"],["2024-07-24T05:23:33.010000"],["2024-07-24T05:23:34.010000"],["2024-07-24T05:23:35.010000"],["2024-07-24T05:23:36.010000"],["2024-07-24T05:23:37.010000"],["2024-07-24T05:23:38.010000"],["2024-07-24T05:23:39.010000"],["2024-07-24T05:23:40.010000"],["2024-07-24T05:23:41.010000"],["2024-07-24T05:23:42.010000"],["2024-07-24T05:23:43.010000"],["2024-07-24T05:23:44.010000"],["2024-07-24T05:23:45.010000"],["2024-07-24T05:23:46.010000"],["2024-07-24T05:23:47.010000"],["2024-07-24T05:23:48.010000"],["2024-07-24T05:23:49.010000"],["2024-07-24T05:23:50.010000"],["2024-07-24T05:23:51.010000"],["2024-07-24T05:23:52.010000"],["2024-07-24T05:23:53.010000"],["2024-07-24T05:23:54.010000"],["2024-07-24T05:23:55.010000"],["2024-07-24T05:23:56.010000"],["2024-07-24T05:23:57.010000"],["2024-07-24T05:23:58.010000"],["2024-07-24T05:23:59.010000"],["2024-07-24T05:24:00.010000"],["2024-07-24T05:24:01.010000"],["2024-07-24T05:24:02.010000"],["2024-07-24T05:24:03.010000"],["2024-07-24T05:24:04.010000"],["2024-07-24T05:24:05.010000"],["2024-07-24T05:24:06.010000"],["2024-07-24T05:24:07.010000"],["2024-07-24T05:24:08.010000"],["2024-07-24T05:24:09.010000"],["2024-07-24T05:24:10.010000"],["2024-07-24T05:24:11.010000"],["2024-07-24T05:24:12.010000"],["2024-07-24T05:24:13.010000"],["2024-07-24T05:24:14.010000"],["2024-07-24T05:24:15.010000"],["2024-07-24T05:24:16.010000"],["2024-07-24T05:24:17.010000"],["2024-07-24T05:24:18.010000"],["2024-07-24T05:24:19.010000"],["2024-07-24T05:24:20.010000"],["2024-07-24T05:24:21.010000"],["2024-07-24T05:24:22.010000"],["2024-07-24T05:24:23.010000"],["2024-07-24T05:24:24.010000"],["2024-07-24T05:24:25.010000"],["2024-07-24T05:24:26.010000"],["2024-07-24T05:24:27.010000"],["2024-07-24T05:24:28.010000"],["2024-07-24T05:24:29.010000"],["2024-07-24T05:24:30.010000"],["2024-07-24T05:24:31.010000"],["2024-07-24T05:24:32.010000"],["2024-07-24T05:24:33.010000"],["2024-07-24T05:24:34.010000"],["2024-07-24T05:24:35.010000"],["2024-07-24T05:24:36.010000"],["2024-07-24T05:24:37.010000"],["2024-07-24T05:24:38.010000"],["2024-07-24T05:24:39.010000"],["2024-07-24T05:24:40.010000"],["2024-07-24T05:24:41.010000"],["2024-07-24T05:24:42.010000"],["2024-07-24T05:24:43.010000"],["2024-07-24T05:24:44.010000"],["2024-07-24T05:24:45.010000"],["2024-07-24T05:24:46.010000"],["2024-07-24T05:24:47.010000"],["2024-07-24T05:24:48.010000"],["2024-07-24T05:24:49.010000"],["2024-07-24T05:24:50.010000"],["2024-07-24T05:24:51.010000"],["2024-07-24T05:24:52.010000"],["2024-07-24T05:24:53.010000"],["2024-07-24T05:24:54.010000"],["2024-07-24T05:24:55.010000"],["2024-07-24T05:24:56.010000"],["2024-07-24T05:24:57.010000"],["2024-07-24T05:24:58.010000"],["2024-07-24T05:24:59.010000"],["2024-07-24T05:25:00.010000"],["2024-07-24T05:25:01.010000"],["2024-07-24T05:25:02.010000"],["2024-07-24T05:25:03.010000"],["2024-07-24T05:25:04.010000"],["2024-07-24T05:25:05.010000"],["2024-07-24T05:25:06.010000"],["2024-07-24T05:25:07.010000"],["2024-07-24T05:25:08.010000"],["2024-07-24T05:25:09.010000"],["2024-07-24T05:25:10.010000"],["2024-07-24T05:25:11.010000"],["2024-07-24T05:25:12.010000"],["2024-07-24T05:25:13.010000"],["2024-07-24T05:25:14.010000"],["2024-07-24T05:25:15.010000"],["2024-07-24T05:25:16.010000"],["2024-07-24T05:25:17.010000"],["2024-07-24T05:25:18.010000"],["2024-07-24T05:25:19.010000"],["2024-07-24T05:25:20.010000"],["2024-07-24T05:25:21.010000"],["2024-07-24T05:25:22.010000"],["2024-07-24T05:25:23.010000"],["2024-07-24T05:25:24.010000"],["2024-07-24T05:25:25.010000"],["2024-07-24T05:25:26.010000"],["2024-07-24T05:25:27.010000"],["2024-07-24T05:25:28.010000"],["2024-07-24T05:25:29.010000"],["2024-07-24T05:25:30.010000"],["2024-07-24T05:25:31.010000"],["2024-07-24T05:25:32.010000"],["2024-07-24T05:25:33.010000"],["2024-07-24T05:25:34.010000"],["2024-07-24T05:25:35.010000"],["2024-07-24T05:25:36.010000"],["2024-07-24T05:25:37.010000"],["2024-07-24T05:25:38.010000"],["2024-07-24T05:25:39.010000"],["2024-07-24T05:25:40.010000"],["2024-07-24T05:25:41.010000"],["2024-07-24T05:25:42.010000"],["2024-07-24T05:25:43.010000"],["2024-07-24T05:25:44.010000"],["2024-07-24T05:25:45.010000"],["2024-07-24T05:25:46.010000"],["2024-07-24T05:25:47.010000"],["2024-07-24T05:25:48.010000"],["2024-07-24T05:25:49.010000"],["2024-07-24T05:25:50.010000"],["2024-07-24T05:25:51.010000"],["2024-07-24T05:25:52.010000"],["2024-07-24T05:25:53.010000"],["2024-07-24T05:25:54.010000"],["2024-07-24T05:25:55.010000"],["2024-07-24T05:25:56.010000"],["2024-07-24T05:25:57.010000"],["2024-07-24T05:25:58.010000"],["2024-07-24T05:25:59.010000"],["2024-07-24T05:26:00.010000"],["2024-07-24T05:26:01.010000"],["2024-07-24T05:26:02.010000"],["2024-07-24T05:26:03.010000"],["2024-07-24T05:26:04.010000"],["2024-07-24T05:26:05.010000"],["2024-07-24T05:26:06.010000"],["2024-07-24T05:26:07.010000"],["2024-07-24T05:26:08.010000"],["2024-07-24T05:26:09.010000"],["2024-07-24T05:26:10.010000"],["2024-07-24T05:26:11.010000"],["2024-07-24T05:26:12.010000"],["2024-07-24T05:26:13.010000"],["2024-07-24T05:26:14.010000"],["2024-07-24T05:26:15.010000"],["2024-07-24T05:26:16.010000"],["2024-07-24T05:26:17.010000"],["2024-07-24T05:26:18.010000"],["2024-07-24T05:26:19.010000"],["2024-07-24T05:26:20.010000"],["2024-07-24T05:26:21.010000"],["2024-07-24T05:26:22.010000"],["2024-07-24T05:26:23.010000"],["2024-07-24T05:26:24.010000"],["2024-07-24T05:26:25.010000"],["2024-07-24T05:26:26.010000"],["2024-07-24T05:26:27.010000"],["2024-07-24T05:26:28.010000"],["2024-07-24T05:26:29.010000"],["2024-07-24T05:26:30.010000"],["2024-07-24T05:26:31.010000"],["2024-07-24T05:26:32.010000"],["2024-07-24T05:26:33.010000"],["2024-07-24T05:26:34.010000"],["2024-07-24T05:26:35.010000"],["2024-07-24T05:26:36.010000"],["2024-07-24T05:26:37.010000"],["2024-07-24T05:26:38.010000"],["2024-07-24T05:26:39.010000"],["2024-07-24T05:26:40.010000"],["2024-07-24T05:26:41.010000"],["2024-07-24T05:26:42.010000"],["2024-07-24T05:26:43.010000"],["2024-07-24T05:26:44.010000"],["2024-07-24T05:26:45.010000"],["2024-07-24T05:26:46.010000"],["2024-07-24T05:26:47.010000"],["2024-07-24T05:26:48.010000"],["2024-07-24T05:26:49.010000"],["2024-07-24T05:26:50.010000"],["2024-07-24T05:26:51.010000"],["2024-07-24T05:26:52.010000"],["2024-07-24T05:26:53.010000"],["2024-07-24T05:26:54.010000"],["2024-07-24T05:26:55.010000"],["2024-07-24T05:26:56.010000"],["2024-07-24T05:26:57.010000"],["2024-07-24T05:26:58.010000"],["2024-07-24T05:26:59.010000"],["2024-07-24T05:27:00.010000"],["2024-07-24T05:27:01.010000"],["2024-07-24T05:27:02.010000"],["2024-07-24T05:27:03.010000"],["2024-07-24T05:27:04.010000"],["2024-07-24T05:27:05.010000"],["2024-07-24T05:27:06.010000"],["2024-07-24T05:27:07.010000"],["2024-07-24T05:27:08.010000"],["2024-07-24T05:27:09.010000"],["2024-07-24T05:27:10.010000"],["2024-07-24T05:27:11.010000"],["2024-07-24T05:27:12.010000"],["2024-07-24T05:27:13.010000"],["2024-07-24T05:27:14.010000"],["2024-07-24T05:27:15.010000"],["2024-07-24T05:27:16.010000"],["2024-07-24T05:27:17.010000"],["2024-07-24T05:27:18.010000"],["2024-07-24T05:27:19.010000"],["2024-07-24T05:27:20.010000"],["2024-07-24T05:27:21.010000"],["2024-07-24T05:27:22.010000"],["2024-07-24T05:27:23.010000"],["2024-07-24T05:27:24.010000"],["2024-07-24T05:27:25.010000"],["2024-07-24T05:27:26.010000"],["2024-07-24T05:27:27.010000"],["2024-07-24T05:27:28.010000"],["2024-07-24T05:27:29.010000"],["2024-07-24T05:27:30.010000"],["2024-07-24T05:27:31.010000"],["2024-07-24T05:27:32.010000"],["2024-07-24T05:27:33.010000"],["2024-07-24T05:27:34.010000"],["2024-07-24T05:27:35.010000"],["2024-07-24T05:27:36.010000"],["2024-07-24T05:27:37.010000"],["2024-07-24T05:27:38.010000"],["2024-07-24T05:27:39.010000"],["2024-07-24T05:27:40.010000"],["2024-07-24T05:27:41.010000"],["2024-07-24T05:27:42.010000"],["2024-07-24T05:27:43.010000"],["2024-07-24T05:27:44.010000"],["2024-07-24T05:27:45.010000"],["2024-07-24T05:27:46.010000"],["2024-07-24T05:27:47.010000"],["2024-07-24T05:27:48.010000"],["2024-07-24T05:27:49.010000"],["2024-07-24T05:27:50.010000"],["2024-07-24T05:27:51.010000"],["2024-07-24T05:27:52.010000"],["2024-07-24T05:27:53.010000"],["2024-07-24T05:27:54.010000"],["2024-07-24T05:27:55.010000"],["2024-07-24T05:27:56.010000"],["2024-07-24T05:27:57.010000"],["2024-07-24T05:27:58.010000"],["2024-07-24T05:27:59.010000"],["2024-07-24T05:28:00.010000"],["2024-07-24T05:28:01.010000"],["2024-07-24T05:28:02.010000"],["2024-07-24T05:28:03.010000"],["2024-07-24T05:28:04.010000"],["2024-07-24T05:28:05.010000"],["2024-07-24T05:28:06.010000"],["2024-07-24T05:28:07.010000"],["2024-07-24T05:28:08.010000"],["2024-07-24T05:28:09.010000"],["2024-07-24T05:28:10.010000"],["2024-07-24T05:28:11.010000"],["2024-07-24T05:28:12.010000"],["2024-07-24T05:28:13.010000"],["2024-07-24T05:28:14.010000"],["2024-07-24T05:28:15.010000"],["2024-07-24T05:28:16.010000"],["2024-07-24T05:28:17.010000"],["2024-07-24T05:28:18.010000"],["2024-07-24T05:28:19.010000"],["2024-07-24T05:28:20.010000"],["2024-07-24T05:28:21.010000"],["2024-07-24T05:28:22.010000"],["2024-07-24T05:28:23.010000"],["2024-07-24T05:28:24.010000"],["2024-07-24T05:28:25.010000"],["2024-07-24T05:28:26.010000"],["2024-07-24T05:28:27.010000"],["2024-07-24T05:28:28.010000"],["2024-07-24T05:28:29.010000"],["2024-07-24T05:28:30.010000"],["2024-07-24T05:28:31.010000"],["2024-07-24T05:28:32.010000"],["2024-07-24T05:28:33.010000"],["2024-07-24T05:28:34.010000"],["2024-07-24T05:28:35.010000"],["2024-07-24T05:28:36.010000"],["2024-07-24T05:28:37.010000"],["2024-07-24T05:28:38.010000"],["2024-07-24T05:28:39.010000"],["2024-07-24T05:28:40.010000"],["2024-07-24T05:28:41.010000"],["2024-07-24T05:28:42.010000"],["2024-07-24T05:28:43.010000"],["2024-07-24T05:28:44.010000"],["2024-07-24T05:28:45.010000"],["2024-07-24T05:28:46.010000"],["2024-07-24T05:28:47.010000"],["2024-07-24T05:28:48.010000"],["2024-07-24T05:28:49.010000"],["2024-07-24T05:28:50.010000"],["2024-07-24T05:28:51.010000"],["2024-07-24T05:28:52.010000"],["2024-07-24T05:28:53.010000"],["2024-07-24T05:28:54.010000"],["2024-07-24T05:28:55.010000"],["2024-07-24T05:28:56.010000"],["2024-07-24T05:28:57.010000"],["2024-07-24T05:28:58.010000"],["2024-07-24T05:28:59.010000"],["2024-07-24T05:29:00.010000"],["2024-07-24T05:29:01.010000"],["2024-07-24T05:29:02.010000"],["2024-07-24T05:29:03.010000"],["2024-07-24T05:29:04.010000"],["2024-07-24T05:29:05.010000"],["2024-07-24T05:29:06.010000"],["2024-07-24T05:29:07.010000"],["2024-07-24T05:29:08.010000"],["2024-07-24T05:29:09.010000"],["2024-07-24T05:29:10.010000"],["2024-07-24T05:29:11.010000"],["2024-07-24T05:29:12.010000"],["2024-07-24T05:29:13.010000"],["2024-07-24T05:29:14.010000"],["2024-07-24T05:29:15.010000"],["2024-07-24T05:29:16.010000"],["2024-07-24T05:29:17.010000"],["2024-07-24T05:29:18.010000"],["2024-07-24T05:29:19.010000"],["2024-07-24T05:29:20.010000"],["2024-07-24T05:29:21.010000"],["2024-07-24T05:29:22.010000"],["2024-07-24T05:29:23.010000"],["2024-07-24T05:29:24.010000"],["2024-07-24T05:29:25.010000"],["2024-07-24T05:29:26.010000"],["2024-07-24T05:29:27.010000"],["2024-07-24T05:29:28.010000"],["2024-07-24T05:29:29.010000"],["2024-07-24T05:29:30.010000"],["2024-07-24T05:29:31.010000"],["2024-07-24T05:29:32.010000"],["2024-07-24T05:29:33.010000"],["2024-07-24T05:29:34.010000"],["2024-07-24T05:29:35.010000"],["2024-07-24T05:29:36.010000"],["2024-07-24T05:29:37.010000"],["2024-07-24T05:29:38.010000"],["2024-07-24T05:29:39.010000"],["2024-07-24T05:29:40.010000"],["2024-07-24T05:29:41.010000"],["2024-07-24T05:29:42.010000"],["2024-07-24T05:29:43.010000"],["2024-07-24T05:29:44.010000"],["2024-07-24T05:29:45.010000"],["2024-07-24T05:29:46.010000"],["2024-07-24T05:29:47.010000"],["2024-07-24T05:29:48.010000"],["2024-07-24T05:29:49.010000"],["2024-07-24T05:29:50.010000"],["2024-07-24T05:29:51.010000"],["2024-07-24T05:29:52.010000"],["2024-07-24T05:29:53.010000"],["2024-07-24T05:29:54.010000"],["2024-07-24T05:29:55.010000"],["2024-07-24T05:29:56.010000"],["2024-07-24T05:29:57.010000"],["2024-07-24T05:29:58.010000"],["2024-07-24T05:29:59.010000"],["2024-07-24T05:30:00.010000"],["2024-07-24T05:30:01.010000"],["2024-07-24T05:30:02.010000"],["2024-07-24T05:30:03.010000"],["2024-07-24T05:30:04.010000"],["2024-07-24T05:30:05.010000"],["2024-07-24T05:30:06.010000"],["2024-07-24T05:30:07.010000"],["2024-07-24T05:30:08.010000"],["2024-07-24T05:30:09.010000"],["2024-07-24T05:30:10.010000"],["2024-07-24T05:30:11.010000"],["2024-07-24T05:30:12.010000"],["2024-07-24T05:30:13.010000"],["2024-07-24T05:30:14.010000"],["2024-07-24T05:30:15.010000"],["2024-07-24T05:30:16.010000"],["2024-07-24T05:30:17.010000"],["2024-07-24T05:30:18.010000"],["2024-07-24T05:30:19.010000"],["2024-07-24T05:30:20.010000"],["2024-07-24T05:30:21.010000"],["2024-07-24T05:30:22.010000"],["2024-07-24T05:30:23.010000"],["2024-07-24T05:30:24.010000"],["2024-07-24T05:30:25.010000"],["2024-07-24T05:30:26.010000"],["2024-07-24T05:30:27.010000"],["2024-07-24T05:30:28.010000"],["2024-07-24T05:30:29.010000"],["2024-07-24T05:30:30.010000"],["2024-07-24T05:30:31.010000"],["2024-07-24T05:30:32.010000"],["2024-07-24T05:30:33.010000"],["2024-07-24T05:30:34.010000"],["2024-07-24T05:30:35.010000"],["2024-07-24T05:30:36.010000"],["2024-07-24T05:30:37.010000"],["2024-07-24T05:30:38.010000"],["2024-07-24T05:30:39.010000"],["2024-07-24T05:30:40.010000"],["2024-07-24T05:30:41.010000"],["2024-07-24T05:30:42.010000"],["2024-07-24T05:30:43.010000"],["2024-07-24T05:30:44.010000"],["2024-07-24T05:30:45.010000"],["2024-07-24T05:30:46.010000"],["2024-07-24T05:30:47.010000"],["2024-07-24T05:30:48.010000"],["2024-07-24T05:30:49.010000"],["2024-07-24T05:30:50.010000"],["2024-07-24T05:30:51.010000"],["2024-07-24T05:30:52.010000"],["2024-07-24T05:30:53.010000"],["2024-07-24T05:30:54.010000"],["2024-07-24T05:30:55.010000"],["2024-07-24T05:30:56.010000"],["2024-07-24T05:30:57.010000"],["2024-07-24T05:30:58.010000"],["2024-07-24T05:30:59.010000"],["2024-07-24T05:31:00.010000"],["2024-07-24T05:31:01.010000"],["2024-07-24T05:31:02.010000"],["2024-07-24T05:31:03.010000"],["2024-07-24T05:31:04.010000"],["2024-07-24T05:31:05.010000"],["2024-07-24T05:31:06.010000"],["2024-07-24T05:31:07.010000"],["2024-07-24T05:31:08.010000"],["2024-07-24T05:31:09.010000"],["2024-07-24T05:31:10.010000"],["2024-07-24T05:31:11.010000"],["2024-07-24T05:31:12.010000"],["2024-07-24T05:31:13.010000"],["2024-07-24T05:31:14.010000"],["2024-07-24T05:31:15.010000"],["2024-07-24T05:31:16.010000"],["2024-07-24T05:31:17.010000"],["2024-07-24T05:31:18.010000"],["2024-07-24T05:31:19.010000"],["2024-07-24T05:31:20.010000"],["2024-07-24T05:31:21.010000"],["2024-07-24T05:31:22.010000"],["2024-07-24T05:31:23.010000"],["2024-07-24T05:31:24.010000"],["2024-07-24T05:31:25.010000"],["2024-07-24T05:31:26.010000"],["2024-07-24T05:31:27.010000"],["2024-07-24T05:31:28.010000"],["2024-07-24T05:31:29.010000"],["2024-07-24T05:31:30.010000"],["2024-07-24T05:31:31.010000"],["2024-07-24T05:31:32.010000"],["2024-07-24T05:31:33.010000"],["2024-07-24T05:31:34.010000"],["2024-07-24T05:31:35.010000"],["2024-07-24T05:31:36.010000"],["2024-07-24T05:31:37.010000"],["2024-07-24T05:31:38.010000"],["2024-07-24T05:31:39.010000"],["2024-07-24T05:31:40.010000"],["2024-07-24T05:31:41.010000"],["2024-07-24T05:31:42.010000"],["2024-07-24T05:31:43.010000"],["2024-07-24T05:31:44.010000"],["2024-07-24T05:31:45.010000"],["2024-07-24T05:31:46.010000"],["2024-07-24T05:31:47.010000"],["2024-07-24T05:31:48.010000"],["2024-07-24T05:31:49.010000"],["2024-07-24T05:31:50.010000"],["2024-07-24T05:31:51.010000"],["2024-07-24T05:31:52.010000"],["2024-07-24T05:31:53.010000"],["2024-07-24T05:31:54.010000"],["2024-07-24T05:31:55.010000"],["2024-07-24T05:31:56.010000"],["2024-07-24T05:31:57.010000"],["2024-07-24T05:31:58.010000"],["2024-07-24T05:31:59.010000"],["2024-07-24T05:32:00.010000"],["2024-07-24T05:32:01.010000"],["2024-07-24T05:32:02.010000"],["2024-07-24T05:32:03.010000"],["2024-07-24T05:32:04.010000"],["2024-07-24T05:32:05.010000"],["2024-07-24T05:32:06.010000"],["2024-07-24T05:32:07.010000"],["2024-07-24T05:32:08.010000"],["2024-07-24T05:32:09.010000"],["2024-07-24T05:32:10.010000"],["2024-07-24T05:32:11.010000"],["2024-07-24T05:32:12.010000"],["2024-07-24T05:32:13.010000"],["2024-07-24T05:32:14.010000"],["2024-07-24T05:32:15.010000"],["2024-07-24T05:32:16.010000"],["2024-07-24T05:32:17.010000"],["2024-07-24T05:32:18.010000"],["2024-07-24T05:32:19.010000"],["2024-07-24T05:32:20.010000"],["2024-07-24T05:32:21.010000"],["2024-07-24T05:32:22.010000"],["2024-07-24T05:32:23.010000"],["2024-07-24T05:32:24.010000"],["2024-07-24T05:32:25.010000"],["2024-07-24T05:32:26.010000"],["2024-07-24T05:32:27.010000"],["2024-07-24T05:32:28.010000"],["2024-07-24T05:32:29.010000"],["2024-07-24T05:32:30.010000"],["2024-07-24T05:32:31.010000"],["2024-07-24T05:32:32.010000"],["2024-07-24T05:32:33.010000"],["2024-07-24T05:32:34.010000"],["2024-07-24T05:32:35.010000"],["2024-07-24T05:32:36.010000"],["2024-07-24T05:32:37.010000"],["2024-07-24T05:32:38.010000"],["2024-07-24T05:32:39.010000"],["2024-07-24T05:32:40.010000"],["2024-07-24T05:32:41.010000"],["2024-07-24T05:32:42.010000"],["2024-07-24T05:32:43.010000"],["2024-07-24T05:32:44.010000"],["2024-07-24T05:32:45.010000"],["2024-07-24T05:32:46.010000"],["2024-07-24T05:32:47.010000"],["2024-07-24T05:32:48.010000"],["2024-07-24T05:32:49.010000"],["2024-07-24T05:32:50.010000"],["2024-07-24T05:32:51.010000"],["2024-07-24T05:32:52.010000"],["2024-07-24T05:32:53.010000"],["2024-07-24T05:32:54.010000"],["2024-07-24T05:32:55.010000"],["2024-07-24T05:32:56.010000"],["2024-07-24T05:32:57.010000"],["2024-07-24T05:32:58.010000"],["2024-07-24T05:32:59.010000"],["2024-07-24T05:33:00.010000"],["2024-07-24T05:33:01.010000"],["2024-07-24T05:33:02.010000"],["2024-07-24T05:33:03.010000"],["2024-07-24T05:33:04.010000"],["2024-07-24T05:33:05.010000"],["2024-07-24T05:33:06.010000"],["2024-07-24T05:33:07.010000"],["2024-07-24T05:33:08.010000"],["2024-07-24T05:33:09.010000"],["2024-07-24T05:33:10.010000"],["2024-07-24T05:33:11.010000"],["2024-07-24T05:33:12.010000"],["2024-07-24T05:33:13.010000"],["2024-07-24T05:33:14.010000"],["2024-07-24T05:33:15.010000"],["2024-07-24T05:33:16.010000"],["2024-07-24T05:33:17.010000"],["2024-07-24T05:33:18.010000"],["2024-07-24T05:33:19.010000"],["2024-07-24T05:33:20.010000"],["2024-07-24T05:33:21.010000"],["2024-07-24T05:33:22.010000"],["2024-07-24T05:33:23.010000"],["2024-07-24T05:33:24.010000"],["2024-07-24T05:33:25.010000"],["2024-07-24T05:33:26.010000"],["2024-07-24T05:33:27.010000"],["2024-07-24T05:33:28.010000"],["2024-07-24T05:33:29.010000"],["2024-07-24T05:33:30.010000"],["2024-07-24T05:33:31.010000"],["2024-07-24T05:33:32.010000"],["2024-07-24T05:33:33.010000"],["2024-07-24T05:33:34.010000"],["2024-07-24T05:33:35.010000"],["2024-07-24T05:33:36.010000"],["2024-07-24T05:33:37.010000"],["2024-07-24T05:33:38.010000"],["2024-07-24T05:33:39.010000"],["2024-07-24T05:33:40.010000"],["2024-07-24T05:33:41.010000"],["2024-07-24T05:33:42.010000"],["2024-07-24T05:33:43.010000"],["2024-07-24T05:33:44.010000"],["2024-07-24T05:33:45.010000"],["2024-07-24T05:33:46.010000"],["2024-07-24T05:33:47.010000"],["2024-07-24T05:33:48.010000"],["2024-07-24T05:33:49.010000"],["2024-07-24T05:33:50.010000"],["2024-07-24T05:33:51.010000"],["2024-07-24T05:33:52.010000"],["2024-07-24T05:33:53.010000"],["2024-07-24T05:33:54.010000"],["2024-07-24T05:33:55.010000"],["2024-07-24T05:33:56.010000"],["2024-07-24T05:33:57.010000"],["2024-07-24T05:33:58.010000"],["2024-07-24T05:33:59.010000"],["2024-07-24T05:34:00.010000"],["2024-07-24T05:34:01.010000"],["2024-07-24T05:34:02.010000"],["2024-07-24T05:34:03.010000"],["2024-07-24T05:34:04.010000"],["2024-07-24T05:34:05.010000"],["2024-07-24T05:34:06.010000"],["2024-07-24T05:34:07.010000"],["2024-07-24T05:34:08.010000"],["2024-07-24T05:34:09.010000"],["2024-07-24T05:34:10.010000"],["2024-07-24T05:34:11.010000"],["2024-07-24T05:34:12.010000"],["2024-07-24T05:34:13.010000"],["2024-07-24T05:34:14.010000"],["2024-07-24T05:34:15.010000"],["2024-07-24T05:34:16.010000"],["2024-07-24T05:34:17.010000"],["2024-07-24T05:34:18.010000"],["2024-07-24T05:34:19.010000"],["2024-07-24T05:34:20.010000"],["2024-07-24T05:34:21.010000"],["2024-07-24T05:34:22.010000"],["2024-07-24T05:34:23.010000"],["2024-07-24T05:34:24.010000"],["2024-07-24T05:34:25.010000"],["2024-07-24T05:34:26.010000"],["2024-07-24T05:34:27.010000"],["2024-07-24T05:34:28.010000"],["2024-07-24T05:34:29.010000"],["2024-07-24T05:34:30.010000"],["2024-07-24T05:34:31.010000"],["2024-07-24T05:34:32.010000"],["2024-07-24T05:34:33.010000"],["2024-07-24T05:34:34.010000"],["2024-07-24T05:34:35.010000"],["2024-07-24T05:34:36.010000"],["2024-07-24T05:34:37.010000"],["2024-07-24T05:34:38.010000"],["2024-07-24T05:34:39.010000"],["2024-07-24T05:34:40.010000"],["2024-07-24T05:34:41.010000"],["2024-07-24T05:34:42.010000"],["2024-07-24T05:34:43.010000"],["2024-07-24T05:34:44.010000"],["2024-07-24T05:34:45.010000"],["2024-07-24T05:34:46.010000"],["2024-07-24T05:34:47.010000"],["2024-07-24T05:34:48.010000"],["2024-07-24T05:34:49.010000"],["2024-07-24T05:34:50.010000"],["2024-07-24T05:34:51.010000"],["2024-07-24T05:34:52.010000"],["2024-07-24T05:34:53.010000"],["2024-07-24T05:34:54.010000"],["2024-07-24T05:34:55.010000"],["2024-07-24T05:34:56.010000"],["2024-07-24T05:34:57.010000"],["2024-07-24T05:34:58.010000"],["2024-07-24T05:34:59.010000"],["2024-07-24T05:35:00.010000"],["2024-07-24T05:35:01.010000"],["2024-07-24T05:35:02.010000"],["2024-07-24T05:35:03.010000"],["2024-07-24T05:35:04.010000"],["2024-07-24T05:35:05.010000"]],"hovertemplate":"color=0\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0","scene":"scene","showlegend":true,"x":[-0.8374067144468427,0.30747889587655663,0.13619490480050445,-0.2618666784837842,0.8136234516277909,-0.10023499373346567,0.9850668227300048,0.5705754025839269,-0.24647402251139283,-0.18067322531715035,-0.7255302392877638,-0.8472686316817999,0.632894289214164,-0.8585035158321261,0.7782877599820495,-0.08292323956266046,-0.7576617458835244,0.7430018489249051,-0.9493093406781554,-0.9015213139355183,0.22609952930361032,-0.08249027328565717,-0.3143915981054306,0.5112394993193448,-0.05304221576079726,-0.488451212644577,0.5229214979335666,0.4677516967058182,0.9578218124806881,-0.37056714948266745,-0.4292241116054356,-0.8104628305882215,-0.8985458370298147,-0.28117267368361354,0.7901013009250164,-0.30408702371641994,-0.7075937697663903,0.17332550277933478,0.37026697862893343,-0.10051788808777928,-0.7359753865748644,0.98842199658975,0.10447871824726462,0.9902034136466682,0.44069544319063425,0.3968390659429133,-0.6550803384743631,-0.5147367957979441,0.9985402203164995,0.19157215394079685,0.9153357134200633,-0.4546794877387583,0.39535927632823586,-0.36320473812520504,0.3172201653942466,-0.19698612624779344,-0.026965171564370394,0.9209727281704545,0.6687730862759054,-0.2171371472068131,0.652291324455291,-0.16787113714963198,-0.1702729039825499,-0.315082352142781,-0.08215267630293965,0.3719042157754302,-0.7058440227992833,0.23563794139772654,0.5988804874941707,0.5768546280451119,-0.1467785551212728,0.5331949461251497,-0.169736803509295,0.15564445592463017,0.7215965362265706,-0.26096796290948987,0.6161839296109974,-0.6538432249799371,-0.38876049080863595,0.8687318526208401,0.29456346202641726,0.37925275415182114,-0.9389358363114297,-0.6878159395419061,-0.07611907320097089,0.2907441654242575,0.8114596493542194,0.6307425899431109,-0.5964535693638027,-0.5820054085925221,0.4999622981995344,-0.6115644834935665,0.2139613265171647,-0.16130046313628554,0.8954593567177653,-0.2829625615850091,0.9343293141573668,-0.1658170255832374,0.7496998482383788,-0.7042196071706712,-0.03172227181494236,-0.7515448518097401,0.9575139218941331,0.29184151580557227,-0.6657925578765571,-0.44082078663632274,-0.666609974578023,0.8516043010167778,0.08631181763485074,-0.5117216249927878,0.9921951568685472,-0.3145969845354557,-0.7650205213576555,-0.062327984254807234,-0.11067396076396108,-0.6163123208098114,0.7999832765199244,-0.0743068833835423,0.5247234255075455,0.37519408017396927,0.8206019042991102,0.0954270288348198,-0.5251550413668156,0.1057879189029336,-0.7076384830288589,0.7985867988318205,-0.1988718924112618,-0.80450837360695,0.70092455111444,0.6271317326463759,-0.2154364767484367,-0.7218609717674553,0.8946043117903173,-0.032525887712836266,-0.8786286162212491,-0.6179120521992445,-0.02889488311484456,-0.7433296707458794,0.9056194913573563,0.9836684260517359,0.37306656083092093,0.2542061456479132,-0.48983314260840416,-0.9128147684969008,0.826732249930501,0.7496294765733182,-0.1190506024286151,0.37677905475720763,0.24917698232457042,0.5262842439115047,0.3513031052425504,-0.028975996654480696,0.9803334530442953,0.028239809442311525,0.6604266669601202,0.12656667828559875,-0.197899064514786,0.4509592675603926,-0.49480564100667834,-0.6656398978084326,0.27826450066640973,-0.7186651667580009,0.6936586215160787,-0.7997543402016163,0.5798425637185574,0.10421608295291662,-0.8621036759577692,0.4842616682872176,0.07140611531212926,0.3495452655479312,-0.23469067178666592,-0.9407188482582569,0.5929280733689666,-0.9199526621960104,0.9604737744666636,-0.16312554432079196,0.1512858308851719,0.4980441457591951,0.2780888224951923,0.10864343959838152,0.8932201783172786,0.03348206263035536,0.6031088046729565,0.49180186726152897,-0.5003653466701508,-0.5074664927087724,0.7493951162323356,0.11797056859359145,0.9102508784271777,0.929494820535183,-0.48579554352909327,0.6639288053847849,0.07761627435684204,0.18513554008677602,-0.6917055160738528,0.6000664629973471,0.8429048825055361,-0.8321418277919292,0.3967671706341207,-0.6022385624237359,-0.3040887713432312,0.9610267756506801,0.4225206058472395,-0.2769091469235718,-0.9861897039227188,0.713989679235965,0.14076900202780962,-0.039416657760739326,-0.9529028884135187,0.767038426361978,-0.19194390531629324,0.9112470173276961,-0.9570505321025848,-0.5897756395861506,0.8897988041862845,0.576261836104095,0.2643640781752765,-0.909569482319057,0.9933842122554779,0.217372661922127,0.33021641755476594,-0.8084427365101874,0.44980654027312994,-0.7269755303859711,-0.6627800981514156,-0.6227322206832469,-0.26610320853069425,0.9506596634164453,0.6076747090555727,-0.5029829908162355,0.5771634825505316,-0.6535419677384198,-0.9654224528931081,-0.33187718549743295,-0.28997048269957304,0.053581676445901394,0.6887328051961958,-0.6425493182614446,-0.48535983404144645,-0.20881757605820894,-0.5664915945380926,0.7062786933965981,0.24828381603583694,0.5331458430737257,0.8524351171217859,0.9013074864633381,-0.9550742749124765,0.5836639073677361,0.3348534917458892,-0.6473352443426847,-0.36447596456855536,0.13742808904498816,0.3604907523840666,0.44303686870262027,0.09971857769414783,-0.7722670082002878,0.8934004637412727,-0.8792498800903559,-0.9701611339114606,0.50265042623505,-0.672716916538775,-0.37403271067887545,-0.7453093817457557,0.8714108662679791,0.5232713487930596,-0.9184631439857185,-0.9927065107040107,-0.4514856245368719,0.7883830843493342,-0.7833728580735624,-0.11928206076845527,0.6743353852070868,0.46101546939462423,0.8617659457959235,0.27886184211820364,0.7781527633778751,0.8098943391814828,0.18647379335016012,0.5125151113606989,-0.24461200647056103,0.4144678460434079,0.44656182965263724,-0.9939071550033987,-0.02070235274732113,0.7936115986667573,0.13496148539707065,0.7557245898060501,0.7273422917351127,-0.1975944610312581,-0.40845328150317073,-0.09958497574552894,-0.2264651907607913,-0.6393759190104902,-0.6049165423028171,0.25789104774594307,0.19451373955234885,0.5502168950624764,-0.5137840025126934,0.8382796421647072,-0.027203848585486412,-0.9536851178854704,0.29646686604246497,-0.1871194476261735,0.2803064505569637,0.6044477904215455,-0.49734030198305845,0.35525923082605004,-0.7885867953300476,-0.707080134190619,0.9032839112915099,0.646940762642771,-0.09578274330124259,-0.4144527739845216,-0.9763638307340443,-0.8692354443483055,-0.2702495795674622,-0.10443659452721477,-0.36325749149546027,-0.01607478316873312,0.08762325625866652,-0.9734416296705604,-0.2739992723800242,-0.7907215994782746,0.18191849207505584,0.3683814746327698,0.09575347509235144,0.8074758057482541,-0.27061347384005785,0.14563711546361446,0.7000933536328375,-0.77097308030352,0.6833967757411301,0.2758378558792174,-0.7309059682302177,0.18293310701847076,0.02554162684828043,0.2046753093600273,-0.7498135645873845,0.45254232827574015,0.4336662422865629,0.9878282188437879,-0.27107773115858436,0.821154773235321,-0.6768309092149138,-0.6376199941150844,0.6807391815818846,-0.9617636948823929,0.8264462570659816,-0.4432598361745477,0.513006804510951,-0.6214389852248132,0.05808405624702573,0.9143326673656702,0.37416906002908945,0.9906843323260546,-0.0030920892022550106,-0.37084117345511913,0.32547935750335455,-0.7780441679060459,0.9497269690036774,-0.06262014480307698,-0.22764108562842011,-0.38300849962979555,0.6768080997280777,-0.5536382468417287,-0.5995751586742699,0.5033508790656924,-0.5721948458813131,-0.07910659583285451,0.1638139123097062,-0.5827169916592538,-0.9212110242806375,-0.8039200860075653,-0.4405063185840845,0.9050401225686073,0.5852396693080664,0.25250581465661526,0.018198723439127207,0.9647284676320851,-0.8476672852411866,-0.7114832722581923,-0.3563465322367847,-0.34916453436017036,0.8663390120491385,-0.20755618857219815,-0.6600224748253822,-0.6506104785948992,-0.644288141746074,-0.6597849954850972,-0.2976794200949371,0.14724058005958796,0.004152450244873762,0.39857068099081516,-0.26693722838535905,-0.47268732311204076,0.5327173350378871,-0.12844556663185358,-0.6663231439888477,0.8654533298686147,-0.5761931473389268,-0.40732601983472705,-0.4082767660729587,0.6872218698263168,0.5312285050749779,0.688682783395052,-0.5466395420953631,-0.8929994683712721,0.5270912572741508,-0.7481072815135121,0.8766719899140298,-0.8509839135222137,0.8651788425631821,-0.906331398524344,0.4809955698437989,-0.1332778618671,-0.5123863588087261,0.544897201936692,0.22251365007832646,0.2506909240037203,0.10109829995781183,0.8057792182080448,-0.19693849282339215,0.17652104096487164,-0.0918035814538598,0.4352224846370518,0.29425417445600033,-0.2645615031942725,-0.5956252389587462,-0.5874458816833794,0.6982617606408894,0.828894401434809,-0.1853361176326871,-0.4799514547921717,-0.7950531668029726,-0.4478720878250897,0.10562033951282501,0.4319349071010947,-0.5992110734805465,-0.49109202064573765,-0.5483060986734927,-0.5445811664685607,0.37743825605139136,0.31404454726725817,0.2601139131002128,-0.15864206990227103,0.4336855881847441,0.2492519305087626,0.006815433967858553,-0.07332886336371303,0.09704636130481958,0.5130733465775847,-0.25453758146613836,0.6774468678049743,0.8081021690741181,0.42167846066877246,-0.7370568863116205,0.15079454518854618,0.536678901873529,0.800519797950983,-0.8070152504369617,0.46200817404314876,0.045835059601813555,0.2715827077627182,0.42698853788897395,-0.35971731366589665,-0.4674604902975261,0.726464968174696,-0.3305522701703012,-0.161145294085145,-0.33320314018055797,0.6311882575973868,-0.6910708304494619,-0.043196819722652435,0.06042373180389404,-0.7464939337223768,0.9015362905338407,-0.09160949243232608,-0.02541358256712556,-0.7510238126851618,-0.46728258579969406,0.11998468823730946,-0.48062603920698166,0.006807122379541397,0.305410694796592,0.8301591044291854,-0.7980498168617487,-0.18063506623730063,0.8794800452888012,-0.915561337955296,-0.10710882768034935,-0.03135030623525381,-0.25446956790983677,0.5203635026700795,-0.22012721979990602,-0.8863568590022624,0.8407817985862494,-0.17703072540462017,-0.3981361696496606,0.2656785538420081,0.03494501952081919,0.2226011366583407,-0.5378015046007931,0.658306164201349,-0.5277571380138397,-0.07946507073938847,-0.4776467806659639,0.8626624974422157,0.33000763272866607,-0.6143495035357773,-0.8592265229672194,0.9028942422010005,-0.1782727036625147,0.9527263273485005,0.9502796209417284,-0.9940222920849919,-0.3175737662240863,0.26276785088703036,-0.14516886696219444,-0.6238318015821278,-0.871929716784507,0.03957392694428563,-0.9129899553954601,0.5053110248409212,-0.16770861856639385,0.06496180407702923,0.7738711396232247,-0.5181226287968457,0.8244955078698695,0.16126928571611643,-0.45337513741105795,0.904141559265554,0.3890758194029331,-0.7463551354594529,0.6092116865329444,-0.5818509953096509,0.49041295563802123,-0.42826277995482087,0.9524981379508972,0.21324335457757115,-0.9816931919194758,0.7679008236154914,-0.9283790746703744,0.9076062287203968,0.0614220998249948,-0.10004713572561741,0.5764904860407114,-0.5351635860279202,-0.05605533206835389,-0.0087286913767457,-0.7403881875798106,-0.6759380879811943,0.06774564227089286,-0.6530498387292027,0.9705644696950912,0.2764710560441017,0.2978376061655581,0.39676592871546745,0.025403033941984177,0.8085847003385425,-0.40679140482097864,-0.6153565188869834,0.07107942132279277,0.6271791281178594,0.006310369353741407,0.7538952534087002,-0.6361596235074103,-0.26664635026827455,-0.14688766188919544,-0.31614372320473194,-0.13631764333695173,-0.9768443638458848,0.09152643848210573,0.5258556022308767,-0.8169520860537887,-0.42316560354083776,-0.3418849525041878,-0.003401333000510931,0.592153649777174,0.6600969759747386,-0.9328717668540776,0.6854105070233345,-0.9764147056266665,-0.4820135058835149,-0.04917737981304526,-0.9475850937888026,0.3959038257598877,0.6208142442628741,0.548821710050106,-0.4910664833150804,-0.16354843974113464,-0.04963215487077832,0.7686551003716886,0.3120334264822304,0.03215558873489499,-0.4838616093620658,-0.656531244982034,-0.08778370171785355,0.7854578224942088,-0.18975175311788917,-0.7328330590389669,-0.8646898861043155,-0.2662456971593201,0.05199551023542881,-0.6109816436655819,0.14900300558656454,0.5138767943717539,-0.8805859247222543,-0.9132935954257846,0.4065876044332981,-0.16902772709727287,-0.28632974391803145,-0.2608557054772973,-0.37044190196320415,-0.8682060060091317,0.6806205851025879,-0.8101129275746644,-0.15554501488804817,-0.028785725589841604,-0.1574711799621582,0.6902992287650704,-0.8291684119030833,0.3428199323825538,-0.014059670735150576,0.03926992183551192,-0.9064587634056807,0.5081285587511957,0.4241272541694343,0.41029555862769485,-0.3673056601546705,0.8584888032637537,0.08341243537142873,0.47662908118218184,0.2621972765773535,-0.9215955235995352,-0.674260949715972,0.2976330700330436,-0.3587651024572551,-0.07342211995273829,-0.8093913379125297,-0.757840461563319,0.26275651855394244,0.21953061409294605,0.4789792634546757,-0.010856370907276869,0.6319138957187533,0.7949369521811604,0.1455754959024489,-0.8370652119629085,-0.41050819819793105,-0.4703558520413935,-0.4042247082106769,0.17248634807765484,0.32960559520870447,0.1103014787659049,-0.5314651713706553,0.9239491480402648,-0.07065379433333874,0.40968914330005646,-0.5951850875280797,0.6457258863374591,-0.15006367303431034,-0.4468494248576462,0.4305887049995363,-0.30354515882208943,0.6533099794760346,0.7476202929392457,0.7125532138161361,0.008175098337233067,-0.845610708463937,-0.9025557800196111,-0.3925722688436508,-0.6767793158069253,0.49431592924520373,-0.9708165326155722,0.6400152114219964,-0.8059183075092733,0.41746243042871356,-0.9174771877005696,-0.42622379027307034,0.4893167200498283,-0.33213017135858536,0.46521247923374176,-0.9460309725254774,0.4989863554947078,-0.3307335311546922,0.6395669193007052,0.6772636151872575,-0.9727449524216354,0.5564587186090648,0.3239864422939718,-0.45054858177900314,-0.5446031708270311,-0.7572525558061898,0.5184297147206962,-0.6388576626777649,0.9786600372754037,0.6032785098068416,-0.2923687412403524,-0.30389954429119825,-0.09208414889872074,-0.279076314996928,0.08318719314411283,0.6680538221262395,0.588354367762804,-0.5918130846694112,-0.33014366682618856,0.5602559596300125,0.5677468474023044,-0.6586844949051738,0.1766375326551497,-0.3631038377061486,0.4846775266341865,-0.4572158376686275,-0.29125224333256483,0.9781589615158737,-0.49777485989034176,-0.8926664646714926,0.4769737906754017,-0.3772900840267539,-0.16737639950588346,0.5931533379480243,0.5969021865166724,0.012825498823076487,-0.3132028398104012,-0.3376730130985379,-0.27343279402703047,-0.12981870491057634,0.9294028542935848,0.0579122775234282,-0.6266748965717852,-0.0165239661000669,0.7311226916499436,0.8597276080399752,0.923850697465241,-0.38048288552090526,-0.627212034072727,0.015186629258096218,0.512489256914705,0.9698332659900188,-0.5720584215596318,0.18973038299009204,-0.7001493778079748,-0.4073340902104974,0.10387751460075378,-0.5986644881777465,0.23390949005261064,-0.27082262374460697,0.36396122816950083,0.6585463183000684,0.2654473469592631,0.5101825534366071,-0.8359158476814628,-0.1691201077774167,-0.7638874957337976,0.09739222144708037,0.542654505930841,-0.7225923170335591,-0.6411128588952124,0.6986343269236386,0.7518396344967186,-0.2945542801171541,0.14655135245993733,-0.26390548702329397,-0.2031468292698264,-0.21919659990817308,-0.3243056535720825,-0.9555695550516248,0.9228997146710753,-0.848669599276036,-0.06236419500783086,-0.722924240399152,0.5547788594849408,-0.5831000693142414,-0.7389078736305237,0.16598208574578166,-0.8649019217118621,-0.7330012246966362,0.6144032184965909,0.20219512656331062,-0.29543657368049026,-0.10032984986901283,0.19382479321211576,-0.801588986068964,0.07180147990584373,0.9014970907010138,-0.03900887258350849,0.5930182165466249,-0.9993590582162142,-0.31685026502236724,0.30334751727059484,-0.7177524850703776,0.9764345032162964,0.19368154183030128,0.22672736225649714,0.06676095630973577,0.17262232257053256,-0.14799390314146876,0.052816592156887054,0.08358886977657676,0.5609587118960917,-0.04014688078314066,-0.27554956218227744,-0.732522418256849,-0.9738969765603542,0.29316814709454775,-0.6402623900212348,0.0324440049007535,0.9389621373265982,0.011562871281057596,0.7085736594162881,0.9772560610435903,0.392255456186831,0.8819827507250011,0.7705566622316837,0.861550522968173,0.008783103432506323,0.8701850385405123,-0.22795317182317376,-0.30584189714863896,-0.18500230694189668,-0.7728916644118726,0.44840572914108634,-0.9113737675361335,0.8735756343230605,0.7561113885603845,-0.7900605234317482,0.2352748103439808,0.11223028972744942,0.5988660543225706,-0.3983246167190373,0.4386950209736824,-0.576152655761689,0.8124277479946613,-0.23525239620357752,-0.42030252469703555,0.4526501838117838,0.8191682817414403,-0.6342243291437626,0.03306908579543233,-0.8870723252184689,-0.49694789620116353,0.3573109214194119,-0.2550717182457447,0.8112112786620855,-0.798161983024329,0.4601750741712749,-0.8748880149796605,0.5606476929970086,-0.925751409959048,0.5818909341469407,-0.2812691917642951,0.13854213058948517,0.35476673766970634,-0.9809292145073414,0.6440512975677848,-0.2782489792443812,-0.11613425426185131,-0.5447633182629943,0.15251799067482352,-0.7356297019869089,-0.5996694401837885,0.4346416899934411,0.5592575622722507,0.9356387802399695,-0.09617308201268315,0.4918383206240833,0.11440571257844567,0.49142962228506804,-0.21503221057355404,0.13216428318992257,0.08400746015831828,-0.06757680419832468,-0.9522698502987623,-0.39584563998505473,0.3964048488996923,0.1756102330982685,-0.31100363889709115,-0.2827158602885902,-0.8384587150067091,0.1474970174022019,0.6768685625866055,0.24291137605905533,0.2243431401439011,-0.10738223465159535,-0.2703548572026193,-0.028533101547509432,0.8528642081655562,0.5857934993691742,0.7802956225350499,-0.07014979422092438,-0.30672408686950803,0.8033197815530002,-0.2659266968257725,0.8862888049334288,0.5100746462121606,0.40610887482762337,0.4464227417483926,-0.5432805772870779,0.1344862850382924,-0.33735545352101326,-0.7275811466388404,-0.5956135438755155,-0.9808952701278031,-0.897154285106808,0.5603087446652353,0.724169198423624,-0.3183079482987523,0.822092522867024,0.3856245088391006,-0.9245327501557767,-0.6701122224330902,-0.49078265158459544,-0.7817408791743219,-0.09949765354394913,-0.19603965617716312,0.5313290259800851,0.42681456031277776,-0.8339151130057871,0.9249691944569349,-0.2632429972290993,0.06341219553723931,-0.05705099506303668,0.17034553783014417,-0.2985796257853508,0.07293168688192964,0.9293190878815949,0.6084614456631243,-0.6886828327551484,-0.18196534691378474,-0.8057280923239887,0.4036524975672364,0.8158617643639445,0.07861322071403265,0.23945148661732674,0.02606272976845503,-0.4097910765558481,0.7598893884569407,-0.9693219754844904,0.5984678422100842,-0.33136838860809803,0.745841461699456,0.21661286754533648,0.9073158958926797,0.8385472767986357,0.2915452723391354,0.4901462639681995,0.6949918419122696,0.6832310394383967,-0.7465059771202505,0.8268515430390835,0.2996486793272197,0.12809670390561223,0.474785590544343,0.11361010512337089,-0.7240028888918459,0.925577349960804,-0.9687284212559462,-0.6845669136382639,0.7595855896361172,-0.009114054031670094,0.2335204933770001,0.5158415739424527,-0.512064415961504,0.8871696474961936,-0.38096035178750753,0.019783570431172848,-0.45653049228712916,-0.696302221622318,-0.151878182310611,0.5011859270744026,0.31051090033724904,0.22230543149635196,-0.5536951334215701,0.4397848737426102,-0.36330420430749655,0.5734065300785005,0.7849908522330225,-0.9257945721037686,0.17852221196517348,0.5056005883961916,0.24492206005379558,0.11236782930791378,-0.7155522424727678,0.5930275400169194,-0.5666327546350658,-0.9649876551702619,-0.5664085098542273,0.3574894121848047,0.23548382334411144,0.8353979662060738,-0.08830569544807076,-0.00846156757324934,-0.16690090205520391,0.10944097023457289,0.2748662428930402,0.5527791557833552,-0.6306144236586988,-0.06917031481862068,-0.8311050673946738,0.6703921859152615,-0.014801581390202045,0.34291576920077205,0.34244631323963404,0.7024445566348732,0.27091790875419974,-0.4043373647145927,0.859990855678916,-0.8731101732701063,-0.9417159138247371,0.1803066749125719,-0.8213651347905397,-0.036610187496989965,-0.48900243267416954,0.19208089308813214,-0.5103136165998876,-0.6507290187291801,0.8760780058801174,0.781913386657834,-0.5323648252524436,-0.045951494947075844,-0.4267835267819464,0.4639415838755667,-0.43678889935836196,0.41662041982635856,-0.2332370663061738,0.11225709412246943,-0.9733939124271274,0.9498889679089189,0.06701957015320659,-0.9650156032294035,0.9387052832171321,-0.14104440761730075,0.17691251868382096,0.545740598347038,0.7568309870548546,0.03591358056291938,-0.6181763592176139,-0.5507639572024345,0.8908822857774794,-0.4336298913694918,0.9820841643959284,0.10301853623241186,0.3608180433511734,-0.5145578142255545,-0.8691057027317584,-0.2959102988243103,-0.46814622869715095,-0.20862332452088594,-0.2219507577829063,-0.10062967520207167,0.8943105740472674,-0.010672322008758783,0.16284522786736488,0.20583548163995147,0.9714651969261467,0.704176330473274,0.5138508803211153,-0.8246865444816649,0.2074389373883605,-0.029649962671101093,-0.33488063560798764,-0.34489414002746344,0.2355048730969429,-0.8150684963911772,0.9002432324923575,0.2818103525787592,-0.7825278122909367,-0.1968328976072371,-0.6696667168289423,0.3829699079506099,0.18189057847484946,0.6309437160380185,0.4326929012313485,0.44474080158397555,0.6206176769919693,0.8697439674288034,-0.08631421718746424,-0.6686582462862134,0.028024744242429733,-0.7805569926276803,0.5925826374441385,-0.6322483499534428,0.08630308136343956,-0.3881466896273196,-0.5125507884658873,-0.8457098491489887,-0.3101059468463063,0.3017612206749618,-0.8892837781459093,0.05185743374750018,-0.8884749873541296,-0.24884837586432695,0.33237260254099965,0.34077089885249734,-0.4404466925188899,-0.07736643264070153,-0.2136684376746416,-0.8363652830012143,0.6675779763609171,0.2665567947551608,-0.2803941983729601,-0.32511682249605656,0.9155802009627223,0.12935699289664626,-0.9600439174100757,-0.6788624515756965,-0.036530294455587864,0.23713527945801616,-0.7214034185744822,0.8048996543511748,0.6193754430860281,-0.2953821513801813,0.3961595264263451,-0.24465327709913254,0.7496721651405096,0.14684777660295367,0.33273339876905084,-0.6184430066496134,-0.8228499200195074,-0.32465472631156445,0.7629555347375572,0.008539863862097263,0.2947954023256898,0.44052307959645987,-0.8146424489095807,0.2731793154962361,0.6767272483557463,0.1224484657868743,-0.4578637178055942,-0.8246415331959724,-0.3330035977996886,-0.35177450627088547,0.7825620882213116,-0.36351215885952115,-0.023841229733079672,-0.9245650167576969,-0.35560145741328597,-0.892174709122628,-0.6036192672327161,-0.7392755425535142,-0.768823720049113,-0.38959648460149765,0.881345434114337,0.841739275958389,-0.3519580774009228,-0.28122585033997893,0.6230653668753803,0.5571076534688473,-0.00361420726403594,-0.41511531034484506,-0.9553651232272387,-0.7879441357217729,-0.27713399892672896,0.7169589609839022,-0.3583187232725322,-0.4222559165209532,0.24908781936392188,-0.24481347762048244,-0.4706267826259136,-0.8788575613871217,-0.9369531441479921,-0.9012686731293797,-0.9807195910252631,0.9475049464963377,0.06612691562622786,-0.6170695847831666,-0.43858932610601187,-0.000959011260420084,0.8377034300938249,0.1450899913907051,0.2102978229522705,0.48764044465497136,-0.3669747281819582,0.5602877447381616,0.9147885250858963,-0.8607495748437941,-0.6838115742430091,-0.48723172675818205,0.6301211141981184,0.13040253007784486,0.49567963276058435,0.4606938548386097,0.03495359141379595,-0.30542266368865967,-0.955146805383265,-0.2328083124011755,0.13597142091020942,-0.2950056688860059,-0.8738726596347988,-0.37238028179854155,0.9498957814648747,-0.47299815714359283,-0.4901550719514489,0.983789321500808,0.5617415690794587,-0.018505489453673363,-0.05341917695477605,-0.6154161253944039,-0.10831129597499967,-0.07398076355457306,0.47417617170140147,-0.37161859264597297,0.9742455366067588,0.5290408530272543,0.23735436843708158,0.4780640760436654,-0.5835764901712537,0.13934358628466725,0.49350861739367247,-0.1933936346322298,-0.05587915237993002,0.000561918132007122,0.754110049456358,0.5041259620338678,0.6413714536465704,0.20046585565432906,0.330851090606302,0.3226822065189481,0.551324708852917,-0.8007509354501963,0.5000774064101279,-0.8356410758569837,0.3496727738529444,-0.7377670737914741,0.8523378944955766,-0.05071005458012223,-0.6801971718668938,0.17020814400166273,-0.9481938071548939,-0.18958003027364612,0.6147493678145111,0.7733579659834504,0.5202330918982625,-0.3299080799333751,0.5361122954636812,-0.849965350702405,-0.27224033884704113,0.6404981911182404,0.9593506176024675,-0.5343927084468305,0.930428387131542,0.8035253575071692,-0.07716802833601832,0.5624427981674671,-0.7321749948896468,0.30683673871681094,-0.4592014728114009,-0.8797394121065736,-0.1457853140309453,0.2710105888545513,0.5689691011793911,0.9295384795404971,-0.9350099149160087,0.762410775758326,-0.264582525473088,0.07093570800498128,-0.6550758639350533,0.886280186008662,0.47112813172861934,-0.6912022666074336,-0.35400415398180485,-0.5512880650348961,0.3365869615226984,0.229842321947217,-0.5238105789758265,-0.1670046765357256,0.11288280272856355,0.42349901935085654,0.9908331767655909,-0.16038871929049492,-0.8705642865970731,-0.0011511663906276226,-0.4935112399980426,-0.5899386750534177,-0.09578389674425125,-0.2194184116087854,-0.9580058301798999,0.5583633654750884,-0.44103744300082326,0.4082911782898009,0.33714384166523814,-0.5069446568377316,0.9488107063807547,-0.5323855532333255,-0.8425691011361778,-0.42808642890304327,-0.02351456554606557,0.41588610131293535,-0.05094516882672906,-0.8196858018636703,0.5980910621583462,-0.6623216052539647,0.4709808719344437,-0.5341164362616837,0.15389057947322726,-0.910479097161442,0.7150038271211088,-0.17651762114837766,0.08310976438224316,-0.7774159274995327,0.7270609489642084,0.26974622160196304,-0.8603344662114978,0.1698448210954666,0.8927359492518008,0.0961962821893394,-0.335024818778038,-0.10104154888540506,0.024026121478527784,-0.07627901108935475,-0.04157187603414059,-0.09019306255504489,0.7573473155498505,0.9295364348217845,-0.8281035143882036,0.11000402551144361,0.1426351796835661,0.7003894979134202,-0.8900154982693493,-0.5141606628894806,-0.8704739846289158,-0.9558706623502076,-0.4625908024609089,0.42158130230382085,-0.5206264983862638,0.19166816398501396,-0.43348345905542374,-0.47635302040725946,0.8337699016556144,-0.4968205215409398,0.5874132351018488,0.6825896361842752,-0.9467633445747197,0.9720647889189422,0.24492713855579495,-0.9329269886948168,0.6213700566440821,-0.5639320178888738,0.8538103974424303,-0.9277847995981574,-0.5112044373527169,0.0714426077902317,0.3125538001768291,0.15859047509729862,0.6463004997931421,0.9145219344645739,-0.03320127120241523,-0.16786404186859727,0.26450366945937276,-0.23758206889033318,-0.12840121844783425,-0.22286057192832232,0.06927268020808697,-0.637821544893086,-0.9680361626669765,-0.38166006095707417,-0.5158662558533251,-0.605860217474401,0.3581596212461591,-0.09340397082269192,-0.27948547108098865,0.6699429685249925,-0.008860296104103327,0.9153528767637908,-0.08714410196989775,0.483373798429966,-0.4242004482075572,0.3478944688104093,0.6019574902020395,-0.8216066686436534,0.1392796402797103,0.7994115436449647,0.9710127711296082,-0.22172218514606357,-0.606187463272363,0.8508798335678875,0.6329951747320592,-0.21253639878705144,0.9086323999799788,0.8251683488488197,0.429840300232172,0.027398882433772087,0.09156359080225229,0.3978851563297212,0.7656204556114972,0.5834815758280456,-0.8212367850355804,0.9383344608359039,0.12741097155958414,-0.48046567337587476,0.21091749425977468,0.45057013956829906,0.5868782880716026,-0.11009143479168415,-0.7156650400720537,0.8342935252003372,0.9731808570213616,-0.2518572141416371,0.7867161119356751,0.7343982150778174,-0.2861443543806672,0.3622878920286894,0.6632994799874723,-0.7997888741083443,0.9238301040604711,0.6714416570030153,-0.7662720032967627,-0.2193617527373135,0.31046374002471566,0.5762892044149339,0.19330268539488316,0.17827132530510426,-0.00024099834263324738,0.9243147284723818,0.17119671870023012,-0.22232210356742144,0.893603821285069,-0.02022979687899351,0.917651517316699,0.6049164230935276,-0.43511614156886935,-0.18694495456293225,-0.09316725470125675,-0.583090026397258,0.3704095156863332,0.8886684663593769,-0.6226240145042539,0.9533136044628918,-0.9349415055476129,0.939993055537343,-0.9377961037680507,0.20249246712774038,0.7287666667252779,0.8031683880835772,0.9752189796417952,-0.35170475021004677,-0.9924707431346178,0.12245196150615811,0.10375246731564403,0.20770133892074227,0.06424742843955755,0.9158114609308541,0.14506370248273015,0.2675883090123534,-0.22515073185786605,0.11527168424800038,-0.15962427435442805,0.6696672947145998,-0.10130621679127216,0.7766664298251271,0.031510446686297655,-0.9370441348291934,0.5573650407604873,0.8579427059739828,0.027262043207883835,-0.6005339920520782,-0.46648591151461005,-0.4169636727310717,0.48395863082259893,0.5462938318960369,0.6892310176044703,-0.7981964130885899,0.7592640984803438,-0.6399583397433162,-0.12415487272664905,-0.14611784322187304,-0.53052988788113,-0.556055189576,0.8875091820955276,-0.5790617945604026,-0.44800272211432457,0.7815271974541247,0.49939667247235775,0.3902276661247015,0.9726945282891393,-0.8903431356884539,-0.30800583492964506,0.3571801343932748,-0.15165861742570996,0.3890370801091194,0.2469380395486951,-0.6733963456936181,-0.7927840603515506,0.09360378095880151,-0.6400654902681708,0.43712267745286226,0.7877723351120949,0.3989575416781008,-0.9109063800424337,0.43767062993720174,-0.15278763603419065,0.9810201716609299,-0.4553681332617998,-0.6922279018908739,-0.38174714893102646,0.3601305829361081,-0.39970280369743705,0.7579351188614964,0.5330382902175188,-0.3391841775737703,0.5814559296704829,0.1643231324851513,0.5476021151989698,-0.00255403108894825,-0.5514242528006434,0.35634689358994365,-0.5197182740084827,0.1557871112599969,0.6042567128315568,0.37157795019447803,0.5757418083958328,-0.3582189492881298,0.3427241831086576,-0.3710241448134184,0.030304966028779745,-0.9525257810018957,-0.2540650889277458,0.5829775077290833,-0.6097314287908375,0.22604431817308068,0.3269780217669904,-0.1217869184911251,-0.9191874419339001,-0.9011675640940666,-0.3903377912938595,-0.3982640984468162,0.4422716489061713,-0.9418676178902388,-0.038764255587011576,-0.637141244020313,0.9945647716522217,-0.7794420775026083,-0.28655898105353117,0.24204588355496526,0.7585960389114916,-0.8554328228347003,-0.07669991161674261,0.4156975303776562,0.2133296811953187,0.8173743868246675,-0.8170434855856001,0.8465036237612367,0.22686146013438702,-0.19512472953647375,-0.22476381622254848,-0.7553034778684378,0.14435552433133125,-0.8431966360658407,0.8339071637019515,0.5811479231342673,0.2673775306902826,0.3130588596686721,0.1729403748176992,0.2817017366178334,-0.21463933726772666,0.46680996334180236,0.8273705095052719,-0.6632009604945779,-0.19105016952380538,0.34018754540011287,0.7535002399235964,-0.3852290064096451,0.6721365856938064,-0.5446769394911826,-0.6255328198894858,-0.5408415915444493,-0.5461249016225338,0.004024114925414324,0.03203998692333698,-0.8815659685060382,-0.3691309033893049,0.20370317762717605,0.5253098565153778,0.6102823866531253,0.35075433691963553,-0.6764080561697483,0.6951267896220088,-0.42990842601284385,0.4093279535882175,0.7015003813430667,0.5697469399310648,-0.29748872946947813,0.09956684475764632,0.8122620768845081,0.43749431567266583,-0.9979563662782311,-0.05704163666814566,-0.2639096169732511,-0.33061991026625037,-0.5055533773265779,0.6828469890169799,-0.9190533845685422,-0.22643969487398863,0.1357123740017414,0.12446577334776521,-0.6438173209317029,0.3846624866127968,-0.8214479782618582,0.26321594836190343,-0.9008753844536841,0.6365028647705913,0.7650252552703023,0.3265936505049467,0.3763690139167011,-0.16617830144241452,0.1228174059651792,0.6112167770043015,0.773923781234771,-0.9891099678352475,0.2560889218002558,0.4504107441753149,-0.18829304119572043,-0.006890084128826857,0.1597291394136846,0.3840602026320994,-0.1164716905914247,-0.36896554846316576,-0.5648700697347522,0.09660181403160095,0.03959678951650858,0.5653595165349543,0.1259430735372007,-0.11117423046380281,-0.2318880963139236,-0.055723344907164574,0.3392433547414839,-0.7689493065699935,0.08230877388268709,0.14017557259649038,0.43337753089144826,0.4228733698837459,-0.0832349699921906,0.5953946760855615,-0.1311848759651184,0.04417233308777213,0.6511466084048152,0.8120114514604211,-0.34724995167925954,0.11124158231541514,-0.09397987369447947,0.4531284999102354,-0.5757760871201754,-0.4781326628290117,0.015050987713038921,-0.9732611519284546,-0.9677273645065725,0.8992304373532534,0.08362869033589959,0.7897735377773643,0.4956560987047851,0.7363297855481505,-0.6528233615681529,0.5205879341810942,0.19297937210649252,-0.5345343006774783,-0.38837809581309557,0.035009763203561306,-0.6072583962231874,-0.381807261146605,0.39644798170775175,0.717771106865257,-0.18389764847233891,-0.33182073244825006,0.7354638664983213,0.8214950589463115,0.8718287870287895,0.566062442958355,0.018971672281622887,-0.6523008802905679,-0.9105094103142619,-0.8868965590372682,0.8397304401732981,-0.3995588719844818,0.12170473160222173,-0.6623637340962887,0.5302612911909819,0.4675788334570825,-0.1821571453474462,0.8984061344526708,-0.9839383508078754,0.050848433282226324,0.5394124547019601,-0.02311554830521345,-0.7700403220951557,0.6405652519315481,-0.20930503634735942,0.6304952912032604,-0.0553024304099381,0.5765616470016539,-0.6136827352456748,0.6585284867323935,-0.0646561998873949,-0.20556861767545342,-0.9958155867643654,0.7966471128165722,0.012223789934068918,-0.37615862861275673,-0.8142766826786101,0.2625759579241276,-0.38157910853624344,0.2776289074681699,0.4168053548783064,0.45818241219967604,0.926814298145473,-0.6683499584905803,-0.782629955559969,-0.021391574759036303,0.24025855492800474,0.6404202743433416,0.05474826507270336,-0.48520127311348915,0.6884546177461743,0.06289741257205606,0.663391734007746,-0.5942950444296002,0.008141246158629656,-0.7334002079442143,0.16192955616861582,0.5922194034792483,0.03966992627829313,0.6936905644834042,0.01475098729133606,0.7147862892597914,-0.4806379172950983,-0.6453465288504958,0.10388020938262343,-0.17325343005359173,0.41801035357639194,0.12777418969199061,-0.8908199230208993,-0.9683402664959431,0.3664603913202882,0.15435942774638534,0.0708551206625998,0.496277988422662,0.05838534375652671,0.9998284899629653,-0.20052281441166997,0.9731602724641562,0.6247594780288637,0.8588802712038159,-0.7637466751039028,-0.3063286957331002,-0.30577613646164536,-0.9502847944386303,0.7910776594653726,0.5467618894763291,0.04058704897761345,-0.9516940074972808,0.2545530661009252,-0.40005426574498415,0.2570485551841557,0.2858468624763191,0.09599697636440396,0.379369655624032,0.7973952889442444,-0.6009975448250771,-0.9317763959988952,-0.731586888898164,-0.03484899876639247,0.049419890623539686,0.3265573251992464,-0.10475967405363917,-0.027043477166444063,0.17525641107931733,0.2620937814936042,0.6299731261096895,0.0939161921851337,0.2771079516969621,0.980927197728306,0.9251735913567245,0.033618875313550234,0.3386807614006102,-0.7517441236414015,0.36066531855612993,-0.8996031102724373,-0.7788052912801504,-0.13100571557879448,-0.37916571041569114,0.4722111150622368,-0.40161220310255885,-0.06576180132105947,0.07105817086994648,-0.3870585518889129,-0.3353267558850348,0.7965827365405858,0.13295798189938068,0.6031560115516186,0.7304828064516187,0.8298975047655404,0.6187999802641571,-0.9449309487827122,-0.5855031525716186,-0.6203303798101842,-0.8227060711942613,0.36774863582104445,0.5847560190595686,-0.5922182882204652,0.28040250297635794,-0.7810952290892601,0.06066423747688532,0.8448999207466841,0.7877721665427089,-0.44757393561303616,-0.9355584909208119,0.6563294949010015,0.730442653875798,-0.91569509729743,0.5248005846515298,-0.3512084069661796,-0.3784714010544121,0.4365477110259235,-0.6034162980504334,0.3381928103044629,-0.6727190758101642,-0.16428994666785002,0.3071094392798841,0.6675053429789841,-0.10302894655615091,-0.3874078644439578,0.8674210766330361,0.6028565154410899,-0.48062290996313095,-0.22546066995710135,0.6342504853382707,-0.4755849461071193,0.8542539728805423,0.8994511310011148,0.28833616338670254,-0.989764804020524,-0.7883319309912622,0.2949208258651197,-0.5960145033895969,-0.8549148994497955,0.46422772016376257,-0.7350572724826634,-0.4120857217349112,0.6017481307499111,-0.540708698797971,0.6239386224187911,-0.8033712841570377,-0.3602157016284764,-0.849105276633054,0.9211895749904215,-0.3585162586532533,0.9985761400312185,-0.6533119305968285,0.17507750960066915,-0.07316495105624199,-0.2668267348781228,0.8485927367582917,-0.7664454150944948,-0.10304158460348845,-0.503236461430788,0.7783913225866854,0.6041697803884745,0.3483678437769413,-0.2965974323451519,-0.6010071621276438,0.302776156924665,0.6227847952395678,-0.5991790099069476,0.776421694085002,-0.4851856683380902,0.858187333215028,-0.7446947582066059,-0.16744184447452426,-0.719775790348649,-0.4574665417894721,0.15371862705796957,0.29566746624186635,-0.5305569632910192,-0.5515078618191183,0.29444018146023154,0.7223957274109125,-0.004517821595072746,-0.3828949253074825,-0.6672380114905536,0.4527549888007343,-0.06911378027871251,-0.7637609834782779,0.5567835904657841,-0.6358246607705951,0.4504497214220464,0.6457899524830282,0.7705769552849233,-0.7125979168340564,0.6062817210331559,0.3684163619764149,0.9937887703999877,-0.9790610424242914,-0.5574152232147753,-0.33100649807602167,-0.48749442351982,-0.7108119991607964,0.297941607888788,0.938785289414227,-0.4109648261219263,0.27372791757807136,-0.9479338638484478,0.0702008274383843,0.01451999694108963,-0.4315346572548151,-0.10415794188156724,0.6234690910205245,0.4006404308602214,-0.9118922650814056,0.02005038969218731,0.8933323821984231,-0.2572667603380978,0.4631996750831604,0.049166756216436625,-0.31820070557296276,-0.15154898492619395,0.0981638771481812,0.9482351681217551,0.6883931206539273,0.811883395537734,0.873646657448262,-0.6733470032922924,0.3033647844567895,-0.8459691144526005,-0.9793999693356454,0.015546119306236506,0.19012834085151553,0.8099435144104064,-0.907510744407773,0.4877149108797312,-0.6864776406437159,-0.9411848532035947,0.30386779364198446,0.8631563442759216,0.03506483882665634,-0.5592333120293915,0.3352186228148639,0.16938024340197444,0.8607524810358882,0.3063888237811625,-0.38891223445534706,-0.3126923185773194,-0.16073178919032216,-0.856348458211869,0.33513434045016766,-0.3795809061266482,0.21329170372337103,0.510339364875108,0.8308832407929003,-0.47997051617130637,0.2891516676172614,-0.9692769609391689,-0.7033079299144447,0.004489448387175798,0.18765032570809126,-0.30107445921748877,-0.8766887299716473,-0.04981497023254633,0.746322771999985,0.44197121541947126,0.26881564036011696,-0.9103060723282397,0.5044769556261599,-0.5212194207124412,0.4718030886724591,0.997198199853301,0.26458100276067853,-0.6802915544249117,-0.09655480040237308,-0.3096751645207405,-0.987341670319438,-0.20411085477098823,-0.6892058025114238,0.0289936363697052,0.7403276744298637,-0.4032143712975085,0.30534871853888035,-0.32968038180842996,0.5144853140227497,-0.056589387357234955,0.29352255119010806,0.35860362742096186,0.30631261551752687,-0.7357944129034877,-0.7284558177925646,-0.9761062269099057,-0.803540853317827,0.22172565246000886,-0.5948316538706422,-0.6711525237187743,0.3169616209343076,0.4694153042510152,-0.15886900620535016,-0.3974201590754092,0.967911986168474,-0.47318005841225386,-0.26161379227414727,-0.08895356114953756,-0.7686830358579755,-0.20864312537014484,0.6172953611239791,-0.9977130871266127,-0.43578257504850626,0.18255764851346612,-0.29161979304626584,-0.6678285161033273,0.32530228700488806,-0.5622749091126025,0.552736469078809,0.608831524848938,0.6462693177163601,0.645939763635397,-0.9781105588190258,0.06387357087805867,-0.13818222377449274,-0.023720695171505213,-0.35706667695194483,0.4112183884717524,0.7717926590703428,0.5120708183385432,-0.08289089286699891,0.8579389923252165,-0.9803518606349826,-0.6022195783443749,-0.07804903341457248,0.8181475275196135,-0.7784466906450689,0.9000812578015029,0.3609765013679862,0.6563153434544802,-0.7631841362453997,-0.5786522557027638,0.6004189751110971,0.4642909858375788,0.34143682522699237,0.8220902662724257,0.36531085846945643,0.23227466037496924,0.5057515040971339,-0.35625951597467065,0.8208699254319072,0.46863431902602315,0.7729708096012473,0.8437635963782668,-0.32796682976186275,-0.02507069567218423,-0.14379211654886603,-0.6096094390377402,0.24214137019589543,0.7889734045602381,-0.09848472476005554,0.34759709518402815,-0.08243865240365267,-0.3425495494157076,0.877718239556998,0.3597405878826976,-0.5851450888440013,-0.04350399551913142,-0.32263172790408134,-0.4309333339333534,0.7809686516411602,0.9078921102918684,-0.5720420917496085,-0.08728702692314982,0.176504862960428,0.12472928361967206,-0.7643161211162806,-0.2170403366908431,0.8404047060757875,-0.16435721050947905,0.02755884174257517,0.8666530246846378,-0.9544502622447908,-0.5861668731085956,-0.13325685495510697,-0.6976390252821147,0.6365349115803838,-0.7523840484209359,-0.8317333338782191,0.8618437093682587,-0.31853662384673953,-0.9033759790472686,-0.3189986189827323,0.9157448378391564,0.7454950804822147,-0.20401411317288876,-0.8762225485406816,-0.8174788672477007,0.6522500873543322,-0.015229768119752407,0.152593111153692,-0.7767307609319687,-0.5903834807686508,-0.39438166888430715,0.3489189147949219,0.6075582928024232,0.04750491492450237,0.1686601941473782,-0.06709008291363716,0.23315898515284061,-0.17229886399582028,-0.5016747396439314,-0.05902220867574215,0.5191647647880018,0.7497538244351745,-0.5953111168928444,-0.7963508181273937,-0.8520933240652084,0.34055107925087214,-0.28926495322957635,-0.8065328225493431,0.7459926404990256,0.43416970735415816,0.5520203243941069,-0.8143561976030469,-0.7622139886952937,0.6992524405941367,-0.6689544529654086,-0.5563968205824494,-0.64621218200773,-0.7881063376553357,0.627096775919199,0.7689300035126507,0.5915527096949518,0.3610956189222634,-0.9215508699417114,-0.8389428234659135,-0.4449098822660744,0.8257895316928625,0.43802253156900406,0.5193595103919506,0.6697499910369515,0.9149375958368182,0.4023648980073631,0.3285687458701432,0.9839718677103519,0.40812328457832336,-0.6506173452362418,-0.09424338582903147,0.5355282071977854,-0.5533373183570802,0.7686074743978679,0.3759658415801823,0.43428842118009925,0.8782530999742448,-0.01834536576643586,-0.5334284068085253,0.04936279356479645,-0.24691114062443376,0.041066473349928856,0.12973425816744566,-0.4060828094370663,-0.12828469090163708,0.798850632738322,0.49813756672665477,0.46584718069061637,0.2220996292307973,-0.3265204788185656,-0.21692696074023843,0.49474794743582606,0.3960687117651105,-0.43465343955904245,0.23144856421276927,-0.34283748967573047,-0.6028530737385154,-0.7417233120650053,-0.05555393686518073,0.6686897799372673,0.6451352969743311,0.5721845142543316,0.4293259182013571,-0.23147211503237486,0.8389818286523223,-0.23158915666863322,0.5502053438685834,0.6115708234719932,-0.44250802090391517,0.36803160002455115,-0.13527602050453424,-0.43386843614280224,-0.561612899415195,0.6405297825112939,-0.02030920796096325,-0.6552080190740526,-0.007490287069231272,-0.4132079966366291,-0.17721851635724306,0.49261958757415414,0.8325735330581665,0.26604254404082894,-0.04740688716992736,-0.847158913500607,-0.562454629689455,-0.9427113034762442,0.8181949513964355,-0.9018870126456022,0.9158296175301075,-0.4845077828504145,0.2509888024069369,-0.31006165966391563,0.09520293259993196,-0.3633257392793894,0.6266809529624879,-0.646858730353415,0.7975184405222535,0.989387346431613,-0.9372614580206573,-0.7165210349485278,-0.5858903578482568,-0.1257641240954399,-0.4824993349611759,0.6245409110561013,-0.19871702324599028,0.7280464693903923,0.40680697839707136,-0.6826074649579823,0.35550216445699334,0.0871087284758687,0.86121527524665,0.5749920182861388,0.014339476358145475,0.6956219435669482,-0.34557793010026217,0.05462552700191736,-0.06789096118882298,-0.6868719253689051,-0.6793217184022069,0.12323772860690951,-0.9004428242333233,0.9997081607580185,-0.016914297826588154,-0.11703712958842516,-0.37935387855395675,0.023591558448970318,0.77560666622594,-0.3611668925732374,0.978670668322593,-0.40454263985157013,0.8514820351265371,-0.4515438014641404,-0.6886381809599698,0.6805972899310291,0.6580821224488318,-0.6972889257594943,-0.5061027458868921,-0.8557718032971025,-0.25303418515250087,-0.5766624137759209,-0.4943883172236383,-0.24653877317905426,-0.48307331232354045,0.2776156244799495,0.28698326321318746,-0.7550120730884373,-0.40288460394367576,0.22097493382170796,-0.12073143385350704,0.12769640563055873,-0.22015777183696628,-0.8569411849603057,0.884995891712606,0.32316929334774613,-0.8417082806117833,-0.8348957784473896,0.8507741005159914,0.7053916994482279,0.8101577181369066,0.36954429373145103,0.0432303324341774,0.4984918483532965,-0.6104489448480308,-0.37816843623295426,-0.868075346108526,0.8741816435940564,0.09681607643142343,-0.44603315088897943,-0.15590613009408116,-0.3856007535941899,-0.39354126108810306,0.15538522927090526,0.7356734820641577,0.8814368261955678,0.5211396450176835,0.4542055740021169,0.23447580635547638,0.6359193548560143,0.49305962584912777,-0.9921909049153328,0.4164357054978609,0.13608798058703542,0.5269103939644992,-0.9836964015848935,0.2876926981844008,-0.4848297438584268,-0.0531466044485569,-0.26655213721096516,-0.11211216216906905,-0.8388148979283869,0.09915217431262136,-0.46183611592277884,-0.20776835177093744,0.9009165233001113,-0.8251560125499964,-0.7111285482533276,-0.34516843827441335,-0.2731449003331363,-0.6999025344848633,-0.6263414560817182,-0.8743980485014617,0.7574975923635066,-0.4079833487048745,-0.284341202583164,0.3644041968509555,-0.02176452288404107,-0.3628688030876219,0.261524255387485,-0.8504350371658802,0.15969748981297016,0.9886861611157656,-0.36986866081133485,0.4448220105841756,-0.9993884162977338,-0.0007845256477594376,0.3645620495080948,0.7177730742841959,-0.7398489457555115,0.899354140739888,-0.6529394243843853,0.21176347648724914,0.08349241642281413,-0.2658168585039675,0.685578403994441,-0.03916705958545208,-0.3116003153845668,-0.10939589096233249,0.37054310040548444,0.40750284818932414,0.3405755958519876,-0.10653732437640429,-0.3359465575776994,0.9579307958483696,0.4489798080176115,0.5622746399603784,-0.510133161675185,0.9310646308586001,0.35416676942259073,0.50284782378003,0.2893893076106906,-0.9369884161278605,-0.7768426202237606,0.19004503823816776,-0.8682034788653255,-0.8346383403986692,-0.13359100697562099,0.6886631161905825,0.7325119720771909,0.16719891596585512,0.8049047598615289,-0.5323398024775088,0.15781584195792675,0.4149984293617308,0.35641822777688503,-0.45935867726802826,-0.38434953847900033,0.9367286046035588,0.14313461259007454,-0.958611121866852,0.7357935956679285,0.7032827367074788,-0.7332409941591322,0.2770590167492628,-0.23877609660848975,-0.8801266718655825,-0.516810248605907,-0.16112328507006168,0.4472205201163888,0.13259945809841156,-0.2922581294551492,0.49760311655700207,-0.5048072347417474,-0.07189564825966954,0.5695495493710041,0.25114500895142555,0.38583003263920546,0.4748461665585637,-0.9866008516401052,-0.841424020472914,-0.9001911161467433,0.5678824288770556,-0.3209298816509545,-0.32759507885202765,0.32172907376661897,-0.8326207068748772,0.5418565506115556,0.2559608886949718,-0.7435253481380641,-0.9960640738718212,0.25468712486326694,0.518583772238344,0.10612935526296496,0.6898687826469541,0.31543121533468366,-0.9854865740053356,-0.6311815809458494,-0.4578080321662128,0.4661056553013623,0.46373069705441594,0.8701926218345761,-0.9198565320111811,-0.2833864572457969,0.7813136684708297,-0.336002126801759,0.6630529486574233,-0.7168352049775422,0.7763610691763461,0.10620578099042177,-0.9277523197233677,0.45194802805781364,0.5536669176071882,-0.0666621788404882,-0.9406583369709551,0.6983312205411494,-0.5692863133735955,0.06202211696654558,0.8748046276159585,0.16255222912877798,0.07392696524038911,-0.3953825612552464,0.02261605905368924,0.5983743467368186,0.5486431713216007,-0.6188377528451383,-0.5725946738384664,-0.3891400541178882,-0.2939888769760728,-0.7999525289051235,0.6294971466995776,-0.12643469078466296,-0.9959924910217524,0.6455658082850277,-0.026040130760520697,0.33153386786580086,0.10410732449963689,-0.7133924211375415,0.22691883239895105,0.45014963392168283,-0.24316581198945642,0.5385178932920098,-0.9620500323362648,0.9694371432997286,-0.0908881458453834,0.5520564978942275,0.6130571770481765,0.33582083135843277,0.5285592968575656,0.9205909902229905,-0.4474875289015472,-0.7400202993303537,-0.07966458797454834,0.6033220747485757,0.1219490971416235,-0.3977408390492201,0.13977243471890688,0.6690938142128289,-0.6370124979875982,-0.7769559435546398,0.10462693450972438,-0.21185441641137004,0.659494312480092,0.3124626437202096,0.7658128729090095,0.37741855159401894,-0.15128763066604733,0.1382147572003305,0.9828480803407729,0.3874364853836596,0.8057104297913611,0.5636116652749479,-0.575761737767607,0.23125417064875364,-0.424633146263659,0.09687212761491537,-0.6382017266005278,-0.6178848422132432,-0.31436765333637595,0.8955364082939923,-0.0792160788550973,-0.5869128070771694,0.042083876207470894,-0.9066401985473931,0.7161462851800025,0.44933831645175815,-0.43903084145858884,-0.3025615205988288,-0.441452375613153,-0.2076850845478475,-0.9436304401606321,-0.28132357681170106,-0.4014651267789304,0.01019191648811102,-0.5401751180179417,0.007848076056689024,-0.5110818860121071,-0.9940306241624057,0.7997688110917807,-0.6983029628172517,-0.5421059438958764,0.17978890100494027,0.7319126245565712,0.6175741101615131,0.3131611770950258,-0.18573417933657765,0.18983784411102533,-0.6248581665568054,-0.010375398676842451,0.5984767782501876,0.0814298614859581,-0.8551459540612996,0.937496704980731,0.9075069529935718,0.15412130020558834,0.4049371932633221,0.35721178632229567,0.31137617910280824,-0.1215402465313673,-0.9805802283808589,-0.14220809563994408,-0.11297430284321308,0.6206626738421619,-0.7573536895215511,-0.7136929952539504,0.18047688622027636,0.7972439071163535,0.22241687029600143,0.9009242509491742,-0.529991066083312,0.016255200374871492,0.13023142330348492,0.859577823895961,0.030612708535045385,0.3985867421142757,0.29385444102808833,0.02635876229032874,0.04888866422697902,0.07596143381670117,-0.214948785956949,-0.21499924175441265,0.7264576759189367,-0.07198773371055722,0.6004646737128496,0.999744935426861,-0.07131505478173494,0.3341591879725456,0.3811686085537076,-0.17584537295624614,-0.6598986969329417,0.6992156854830682,0.9697010731324553,0.3633582228794694,-0.7311323452740908,-0.6980725033208728,-0.8606988610699773,-0.09973166789859533,0.9332890473306179,-0.6789206955581903,-0.794959151186049,0.7600602838210762,-0.2705366965383291,-0.40957252541556954,-0.9568768874742091,0.6903101284988225,-0.36786751775071025,-0.41165410121902823,0.6934176394715905,-0.4839309360831976,-0.8625793685205281,-0.2962566604837775,0.9324246211908758,-0.9715296127833426,0.1778064677491784,0.7112253955565393,-0.357875669375062,0.36055495450273156,-0.34504101192578673,-0.8656824491918087,-0.5970926713198423,0.2913083932362497,0.4388843127526343,0.6812530164606869,-0.8350004944950342,0.8750721011310816,-0.7837593965232372,-0.05330180050805211,-0.2329218783415854,-0.6953395386226475,-0.8953896020539105,-0.25722789112478495,0.44722864404320717,0.5789080881513655,0.6969486651942134,-0.7146696136333048,0.1966638220474124,0.3758501526899636,-0.39812985621392727,0.34644924802705646,0.7893074513413012,-0.7244205167517066,0.1538046495988965,-0.948515915311873,0.19821882527321577,0.017423418816179037,0.4847309705801308,-0.9112691744230688,-0.8589196740649641,-0.9317980241030455,0.7523405505344272,-0.17369379149749875,0.8300438579171896,-0.42185295280069113,-0.6085582938976586,-0.13011857215315104,-0.8230174449272454,0.5930268564261496,-0.6994472970254719,0.8261806354857981,-0.8366622081957757,-0.24145121313631535,-0.8588025523349643,0.6427782610990107,-0.8973219571635127,0.013170279562473297,0.5226504974998534,0.574685724452138,-0.3904940504580736,0.4693949995562434,-0.16737453546375036,0.2370634339749813,0.25531715247780085,0.2251313733868301,-0.08106525288894773,-0.7997845099307597,0.8456806759350002,0.9392175665125251,0.586830829270184,-0.9342763377353549,-0.13178015872836113,0.8001513592898846,-0.3889723722822964,0.15124567644670606,-0.2663319925777614,0.6319814515300095,-0.10397184221073985,-0.5876686051487923,-0.18790442775934935,0.05777771444991231,-0.44901115354150534,-0.7276179995387793,0.9882772536948323,0.46304206969216466,-0.6829204522073269,-0.758506519254297,0.876112069003284,0.12448429083451629,-0.8469571210443974,-0.7260992121882737,0.3439024114049971,-0.006695375312119722,0.8452623500488698,-0.43551144702360034,-0.7072404325008392,0.030986475758254528,-0.2677074274979532,-0.118310640566051,0.9927499024197459,-0.04319149861112237,0.3412937568500638,-0.11647135578095913,-0.30198865476995707,-0.9576256326399744,-0.8467009901069105,-0.2321705142967403,-0.9255489218048751,-0.4312916346825659,0.8923474089242518,0.7566370898857713,-0.8918650671839714,0.6053315354511142,-0.5401075198315084,-0.8032866339199245,0.9976480579935014,0.43274990329518914,-0.6749199773184955,0.20958936167880893,-0.7922662338241935,-0.43767430866137147,-0.9177521974779665,0.40396816842257977,-0.9819852500222623,-0.2286657621152699,-0.19431869545951486,-0.0250447285361588,0.42743267258629203,-0.8408366413787007,0.015146251767873764,0.9622401441447437,0.5230940785259008,0.08923780731856823,-0.9923922135494649,-0.2819337588734925,0.49658322567120194,-0.07984235556796193,-0.3951624692417681,0.6498917122371495,-0.07350697973743081,-0.31396358693018556,0.08102880651131272,-0.07847528252750635,0.721986630000174,-0.397924592718482,-0.6445101946592331,0.18854722287505865,0.09576058480888605,-0.6289059221744537,-0.7547847591340542,0.8777452521026134,-0.5253059319220483,-0.013134048320353031,0.5961032183840871,0.09987003961578012,0.44830985832959414,0.912353522144258,0.7590945274569094,0.7099176389165223,-0.6355149475857615,0.1600477541796863,0.17305804369971156,-0.5141236949712038,-0.32900939509272575,0.6817740527912974,0.5187249211594462,0.4645896893925965,0.9595331689342856,0.5005753017030656,0.8801591764204204,-0.5482099005021155,-0.08172824000939727,-0.8860653359442949,0.5543110845610499,-0.37116159265860915,-0.03203648701310158,0.8510705553926528,0.7180729671381414,0.17974495375528932,0.5927312923595309,0.2618927089497447,-0.33696125401183963,-0.07841927465051413,0.07784764561802149,-0.47309200977906585,-0.7928190608508885,0.3929380076006055,0.02495431248098612,0.8722765734419227,-0.7180943377315998,0.36416108487173915,-0.30276652285829186,-0.35827134968712926,0.7537187724374235,0.6345313000492752,-0.7643255339935422,0.06816968787461519,-0.5959166600368917,0.09532125107944012,-0.41631358908489347,0.9666368314065039,0.10407470539212227,-0.7857040530070662,-0.7662490680813789,-0.3641058416105807,-0.2760000922717154,-0.11686096573248506,-0.33058383595198393,0.7828394495882094,0.727854703553021,0.4986273134127259,-0.14436607901006937,-0.8939411221072078,0.12342653796076775,-0.37820360343903303,-0.6241921479813755,0.6728932769037783,-0.7016636258922517,-0.7161421431228518,-0.925669542979449,-0.1795213152654469,-0.6906822202727199,0.21103103877976537,-0.27040874818339944,0.1322492826730013,0.7291956329718232,0.5302145020104945,0.5167720364406705,0.48889587726444006,-0.5992162330076098,-0.19458631286397576,-0.9396170857362449,-0.20872299000620842,-0.36971227219328284,-0.007437331136316061,-0.894817310385406,0.018395759165287018,-0.08773827878758311,0.9850723249837756,0.6272779176943004,0.1062056994996965,0.33125696843490005,-0.1508783893659711,0.5681463242508471,0.9522949913516641,-0.7660234160721302,0.5983439623378217,0.25764960376545787,-0.5012551676481962,0.7137484322302043,-0.7547977594658732,-0.7700336435809731,0.17879562033340335,0.8364549609832466,0.29560421500355005,0.7812396558001637,-0.6303065125830472,0.010231077205389738,0.6185770793817937,-0.4548585037700832,0.9548812718130648,-0.24960088217630982,0.6820386727340519,0.9713231311179698,0.9992292635142803,-0.9129575341939926,-0.4397034514695406,0.2424798090942204,-0.6279692221432924,0.2580132414586842,-0.39467913983389735,0.6748571367934346,0.7130532264709473,0.18329036235809326,0.15862332889810205,-0.5124327619560063,0.6058997940272093,-0.7989940219558775,-0.401565742213279,0.26384259620681405,-0.8827543891966343,-0.876896028406918,0.6044871183112264,0.5315071777440608,-0.961222983431071,0.7173175760544837,0.3245922108180821,-0.255939903203398,-0.08103578630834818,-0.6854221266694367,-0.2970212050713599,0.2557132630608976,0.8476915690116584,-0.21670740377157927,-0.12568554282188416,0.8036883263848722,-0.1892849295400083,-0.7707259580492973,-0.9454008177854121,-0.015587383415549994,-0.698338087182492,0.7134165042079985,-0.04866871051490307,0.4369366313330829,-0.7213152046315372,0.6580789568834007,-0.1481377249583602,-0.47812738036736846,0.8326517278328538,-0.40948194824159145,-0.921488432213664,0.7755860704928637,0.330342382658273,0.1117276269942522,-0.6073586870916188,-0.6357012465596199,-0.9112410452216864,0.5567146907560527,0.13627722533419728,0.5505671524442732,-0.18589500337839127,0.551775568164885,0.38427036721259356,0.5914438725449145,0.7910287599079311,0.7219440056942403,-0.6033300664275885,-0.08694960409775376,-0.7489372841082513,0.74465591320768,0.8856626320630312,0.7818451463244855,-0.6930644572712481,-0.48362145433202386,-0.2583731389604509,0.5546473083086312,0.9287549741566181,-0.8621420366689563,-0.9118748684413731,0.24792445311322808,0.03368648514151573,0.9220564998686314,0.8721392792649567,-0.373291892465204,0.3940359209664166,0.015403893776237965,0.3566284398548305,0.07430035807192326,0.4770680102519691,-0.5717572844587266,-0.6361725400201976,-0.15184073289856315,0.8089745799079537,0.1276671113446355,-0.4813689566217363,0.6346317850984633,-0.9687438691034913,0.0785704767331481,0.7856566295959055,0.40009221341460943,-0.037254716735333204,-0.8912591375410557,0.9140736381523311,-0.030081946402788162,-0.7029418875463307,0.33738868590444326,0.7512590256519616,0.4025590433739126,-0.10888422233983874,0.06510998401790857,-0.7488847533240914,0.006364400964230299,0.7018755115568638,-0.41628545243293047,-0.506161764729768,0.784566187299788,0.042988309636712074,0.4751356919296086,-0.5766061190515757,0.6068747290410101,0.1992874820716679,-0.7230009902268648,0.4318867288529873,-0.49692573538050056,-0.9752192273736,0.2780241253785789,0.8084138529375196,-0.8503974452614784,0.6382224033586681,-0.5611215056851506,-0.27391876000911,-0.9304730528965592,0.6468982817605138,-0.6163147944025695,-0.5147103671915829,-0.8710688538849354,-0.00197006668895483,0.3006334169767797,0.35506913159042597,0.37038433318957686,0.4387552714906633,0.6591651174239814,-0.570902599953115,0.9998848424293101,-0.5709741371683776,0.2274495935998857,0.8484519110061228,0.23919881787151098,-0.30090063950046897,0.8229861888103187,-0.30741002690047026,-0.3352070767432451,-0.6942007234320045,-0.4433943461626768,0.8083415771834552,-0.7661089445464313,0.8656614222563803,0.0005899663083255291,-0.04493616474792361,0.10386220458894968,-0.9915679432451725,0.2952241562306881,-0.6918920706957579,0.8946605604141951,-0.30892849201336503,-0.2927467059344053,-0.5412819860503078,0.0451018400490284,0.8030161494389176,-0.9681142335757613,0.8342290068976581,0.7622507382184267,0.37825302174314857,0.2462888560257852,0.27383945928886533,-0.07353679137304425,-0.7463951245881617,-0.2764689461328089,0.6171368774957955,0.6632933728396893,-0.0499902069568634,-0.011693017091602087,0.8659446961246431,0.4101738380268216,-0.7857745750807226,-0.7113862317055464,-0.5471592438407242,-0.9989307676441967,-0.4140070010907948,-0.9190068026073277,-0.6170236733742058,0.11727567994967103,-0.9222215129993856,-0.7595830820500851,0.7253456735052168,0.4188432702794671,-0.5704620145261288,0.6970100426115096,0.9175364337861538,-0.06386912474408746,0.6865986823104322,0.6801496432162821,0.45730972243472934,0.9480445422232151,-0.5839636432938278,0.0491484678350389,-0.8853266411460936,0.5695588300004601,-0.3555087116546929,0.8980372357182205,0.23577880021184683,0.29208970349282026,0.7469156128354371,0.4643527730368078,0.7707123034633696,-0.5451129633001983,0.1133666429668665,0.09249907359480858,0.3587075276300311,-0.3603945728391409,0.2667977623641491,-0.158335963729769,0.8288002079352736,0.9315638146363199,0.9704205854795873,0.7813605079427361,0.46907056169584394,0.7500882418826222,0.4267990542575717,0.2315473109483719,-0.23394512897357345,0.6803933680057526,-0.06441739061847329,0.6738572446629405,-0.81695935735479,0.9214692376554012,-0.31652886653319,-0.537515124771744,0.6879389109089971,0.48043875861912966,0.9147848528809845,-0.9869817863218486,-0.5927907964214683,-0.17514278646558523,-0.5575509523041546,0.6246953932568431,-0.2640667292289436,0.6433896641246974,0.3352424497716129,0.7159608183428645,0.07945407880470157,0.8522542994469404,-0.7658789311535656,0.12427535373717546,0.40626329090446234,-0.7249597408808768,0.35943980189040303,-0.9983105673454702,0.257795752491802,0.34460654109716415,0.6357743940316141,0.3219704614020884,-0.7429691185243428,-0.4765901113860309,0.870557620190084,0.9142401199787855,0.6217022989876568,-0.9268832611851394,-0.4353175815194845,-0.9332423857413232,0.6159798600710928,0.9360471009276807,0.6106009953655303,-0.7514246958307922,0.07038454292342067,-0.5173876513727009,0.5932717975229025,-0.04190415050834417,0.12226480152457952,0.4480046620592475,0.4541800203733146,-0.3444186174310744,-0.14175471104681492,0.831233536824584,0.9963555345311761,-0.9936908124946058,0.39394064620137215,0.7857194105163217,-0.3077853098511696,-0.019128292333334684,0.2883966648951173,0.5631080721504986,0.7233545137569308,-0.5529979388229549,0.9461964862421155,0.40589991118758917,0.9186158063821495,0.8230747333727777,0.07444564439356327,-0.016459648963063955,0.010504748672246933,0.6727127376943827,-0.9170607114210725,-0.30333577934652567,0.4956265580840409,-0.06043410813435912,0.12668516021221876,-0.8651848728768528,-0.44549357471987605,0.4935284713283181,-0.7838581432588398,-0.6279811160638928,0.15323337679728866,-0.6508801113814116,-0.4549446776509285,-0.27272199420258403,-0.5295923436060548,0.8498629438690841,0.6211013477295637,-0.37880992284044623,-0.2176454053260386,0.28750081546604633,-0.9493743232451379,0.27112684957683086,-0.11680866871029139,-0.3103596130385995,-0.9644605885259807,0.28394580632448196,-0.2807577243074775,0.9484931966289878,0.26038987189531326,-0.505051473621279,0.9091647807508707,0.11876541934907436,0.4585530157200992,0.8104722760617733,-0.04328248742967844,0.8632538691163063,-0.09628967056050897,0.47921500727534294,-0.9980381205677986,0.7847009147517383,0.20461183553561568,0.08184803230687976,0.5999760674312711,-0.07138476800173521,0.2041283822618425,0.7411073152907193,0.10251002805307508,0.3151806788519025,0.9787241797894239,-0.06792187737300992,-0.20940044336020947,0.42974908323958516,-0.5808175201527774,0.14672075724229217,-0.5438310126774013,-0.3825407191179693,-0.2410643110051751,0.26644000271335244,-0.5972094400785863,0.15210474422201514,0.14865162363275886,-0.35322025045752525,-0.34098632680252194,-0.793471469078213,0.18702681129798293,-0.19327487610280514,0.4361550989560783,-0.7642572564072907,-0.7818567771464586,-0.7222937154583633,0.27835289714857936,-0.7369541004300117,0.8106777537614107,-0.5248990473337471,-0.8445743168704212,-0.6596898823045194,-0.31642173416912556,-0.9944859887473285,-0.5371612538583577,0.2982379994355142,0.9371617962606251,-0.3633780498057604,0.8288868293166161,-0.15665848646312952,-0.2043985640630126,0.4445147872902453,0.5754791470244527,0.12346258573234081,-0.3914645821787417,0.5677065667696297,-0.9508345676586032,0.16343149449676275,-0.4717367570847273,-0.6964852209202945,-0.07832831935957074,-0.3925279341638088,0.7013247758150101,0.15565700270235538,-0.5257785618305206,0.49407179513946176,-0.3979380768723786,-0.028018131386488676,0.11425622785463929,0.8010078412480652,0.89481210289523,-0.751129690092057,-0.7613253928720951,0.09448028216138482,0.5806605792604387,0.6053006984293461,-0.47820572508499026,-0.1409359946846962,0.2411408326588571,0.43759797513484955,-0.40583176258951426,0.5162498420104384,-0.5320633486844599,-0.9461921132169664,0.2648302111774683,-0.4695942276157439,-0.758504815865308,0.008596043568104506,-0.7703143944963813,0.8602096172980964,0.7580645116977394,-0.599168392829597,0.0028277686797082424,-0.9962082328274846,-0.7317902110517025,0.029659276362508535,-0.0728952158242464,-0.09700255934149027,0.9714417536742985,0.32828234881162643,0.9062867634929717,-0.8011163552291691,-0.030064139515161514,0.11072736885398626,-0.21654214058071375,0.9311304055154324,-0.06488953297957778,-0.32954598357900977,-0.5528482021763921,0.49143151100724936,-0.8526139301247895,-0.4694429421797395,0.6085147326812148,-0.7507952521555126,0.8412527162581682,-0.605568012688309,0.30083558475598693,0.9722749120555818,0.6917184377089143,0.5523636406287551,-0.6732596596702933,-0.5919057461433113,0.2684594742022455,0.3397600455209613,-0.5475274976342916,-0.5587048144079745,-0.5624514240771532,0.3227219870314002,-0.17198561131954193,-0.09114211285486817,-0.9425141955725849,-0.2306497748941183,-0.26644575130194426,-0.5247893738560379,-0.42191713815554976,0.48157660104334354,-0.9919305210933089,-0.265250570140779,-0.7322048186324537,-0.6739684487693012,0.6989228175953031,0.3059325944632292,-0.17804237315431237,0.20439635310322046,0.7302584555000067,-0.550514763686806,-0.32104924879968166,-0.7126568192616105,0.8072428768500686,-0.9752108887769282,-0.5210019662044942,0.07033562054857612,0.8908567470498383,0.7659047581255436,0.45228653168305755,-0.5891495393589139,0.18090361822396517,0.09143719682469964,0.15833356278017163,0.2992809731513262,-0.07522392366081476,-0.5128383659757674,-0.01873966958373785,0.2672562296502292,-0.09997122222557664,0.8531317012384534,-0.5556442709639668,-0.4909045244567096,0.13930951058864594,-0.021925664506852627,-0.7192335333675146,-0.2894034394994378,0.9387441072613001,-0.01935004210099578,0.37699361983686686,0.18651591753587127,-0.18452699575573206,0.9847235647030175,0.44690068159252405,-0.28492498584091663,-0.39988321904093027,0.1192785962484777,0.41215953417122364,-0.6412040456198156,0.8787746150046587,0.20504140062257648,-0.2790691931731999,-0.6081471480429173,-0.01751740789040923,-0.48143897065892816,0.382369632832706,-0.38905542716383934,-0.18968014931306243,-0.6044501848518848,-0.48418259574100375,-0.9601198965683579,0.36861222982406616,0.33335556276142597,0.054961384274065495,-0.9268406694754958,-0.6194924809969962,0.6749195866286755,-0.08140576025471091,0.9458125876262784,0.5320798098109663,-0.008500073570758104,-0.275301577989012,-0.9340603342279792,-0.017513129860162735,0.35237034829333425,-0.452113667037338,-0.28644690196961164,0.37509283516556025,-0.7559252330102026,-0.7976857051253319,-0.12814789777621627,-0.32108228048309684,0.24339785426855087,-0.01341471029445529,0.5703731952235103,0.2797248689457774,0.005547876004129648,-0.4554840186610818,0.3145783292129636,-0.72385258320719,0.2703984593972564,0.82830127235502,0.16381772700697184,-0.4971615830436349,0.984885604120791,-0.48197375144809484,-0.44877636432647705,0.05426119873300195,0.03692606184631586,0.534415028989315,0.601988801266998,0.07537869783118367,0.6403691507875919,-0.535127766430378,-0.35020483983680606,0.09605030622333288,0.01960181863978505,0.17275272216647863,0.7321474687196314,0.5355274844914675,-0.21110846381634474,-0.1917396793141961,-0.34620350133627653,0.5434391219168901,0.6509682978503406,0.2911689239554107,0.6162552973255515,-0.9652666803449392,0.42596225114539266,-0.4709066292271018,0.5178777845576406,-0.6940020360052586,0.7776408386416733,-0.8458517869003117,0.7768430998548865,-0.9281186168082058,0.5523127093911171,-0.19396677613258362,-0.06423970637843013,-0.11248726490885019,0.9777593300677836,-0.4560912009328604,0.23761698277667165,-0.9746978972107172,-0.06363776559010148,0.531047725584358,0.07983290730044246,0.3207581168971956,0.6759256995283067,-0.9009805792011321,0.20508583914488554,0.12874350557103753,-0.48278726218268275,0.9799688700586557,-0.9401710359379649,-0.6259283246472478,0.8851035293191671,0.48193282075226307,-0.5906146727502346,-0.8011401118710637,0.4950232747942209,0.506073887925595,-0.3959544347599149,0.030658149626106024,0.3865619786083698,0.5748831583186984,-0.4829944525845349,0.7475978941656649,-0.43419678788632154,0.7916820622049272,0.3932948661968112,-0.4481146428734064,0.672551573254168,-0.7699274918995798,0.46495860628783703,0.7976938136853278,-0.04012934258207679,-0.28532018698751926,0.417282085865736,0.2759469114243984,0.6635185307823122,-0.8140357155352831,-0.4896211517043412,-0.7014339123852551,0.5639363955706358,-0.848612408619374,-0.6777699301019311,0.8625221895053983,-0.9949785396456718,-0.3877653693780303,0.513740380294621,-0.21333775017410517,-0.5907709081657231,-0.37189468927681446,-0.757587150670588,-0.989024908747524,-0.6263292171061039,0.2930535664781928,0.2041437979787588,0.6897750864736736,-0.8161569512449205,-0.6840454749763012,0.3481597937643528,-0.3631132924929261,-0.7463339008390903,-0.896262934897095,-0.2558789667673409,0.4996430166065693,0.7913958095014095,0.004509964492172003,0.1659149844199419,-0.42775217117741704,0.334189155139029,0.1453873929567635,0.6514324028976262,-0.8663558578118682,-0.7770373784005642,0.2632896206341684,-0.5390684953890741,-0.3166568730957806,-0.41888649109750986,-0.16952070547267795,-0.5446201930753887,-0.8097086041234434,-0.6655820431187749,0.9336049598641694,0.9358571553602815,0.945237772539258,-0.04008118202909827,-0.2151024634949863,0.5654956516809762,-0.22788508655503392,0.023485971614718437,0.23658448178321123,0.2529830620624125,-0.10602686507627368,-0.4265540516935289,0.9852718161419034,0.8937664721161127,0.914359622169286,0.18703663581982255,-0.04557333653792739,0.9405134529806674,0.5760191287845373,-0.37956042075529695,-0.8343529063276947,0.46038532722741365,0.2805039780214429,0.4708516211248934,-0.562949959654361,-0.7012715167365968,-0.7133852085098624,-0.6569757116958499,0.1437399685382843,0.7608813652768731,0.03207067772746086,0.2267114082351327,-0.9121663393452764,-0.1296176598407328,0.4628694662824273,0.6647123992443085,-0.4516332899220288,0.3643767759203911,0.8074977435171604,-0.9589970107190311,-0.025671237148344517,0.5252675875090063,-0.8138486407697201,-0.5545800272375345,-0.3247852870263159,-0.3964906260371208,0.49023386323824525,0.5417767898179591,0.32904659444466233,0.305225508287549,0.4360669404268265,-0.48943437449634075,-0.7070813635364175,-0.5047977534122765,-0.05145805608481169,-0.4092838019132614,0.7816427610814571,0.8703717240132391,-0.8117709583602846,-0.8083642027340829,-0.108029639814049,-0.9461257592774928,-0.9207381149753928,0.9338870700448751,0.45889005064964294,0.6249078237451613,0.3662712569348514,0.7917950144037604,0.013007490895688534,0.1905861785635352,0.17933698231354356,-0.10431836312636733,-0.6705163731239736,0.7714269640855491,0.8455089163035154,0.12880936870351434,0.8239216222427785,-0.39177026227116585,-0.8004942438565195,-0.2619144353084266,0.3278032043017447,0.7747628716751933,0.941396068315953,-0.40403067879378796,0.7382689816877246,-0.9168192762881517,0.825995413120836,-0.9491938864812255,0.34795937687158585,0.572742139454931,0.009347852319478989,0.04238209640607238,0.6911097406409681,0.31686114287003875,-0.7723914328962564,0.06446789903566241,-0.9543507448397577,0.21958967903628945,-0.5139353405684233,-0.6043040500953794,0.9003587453626096,-0.5279497965238988,-0.8155231699347496,-0.4087855243124068,0.6472621485590935,0.3359632408246398,0.2546960674226284,0.15386240929365158,-0.14503572508692741,0.8300946988165379,-0.6034211008809507,-0.2920323056168854,-0.2609930313192308,-0.2524541108869016,-0.8150696670636535,-0.9847800545394421,0.7425006642006338,-0.4727620645426214,0.6904223547317088,-0.5789513704366982,-0.6945344577543437,-0.8644670103676617,-0.5454956609755754,-0.6060919943265617,-0.5173064232803881,0.424260888248682,-0.18858856707811356,-0.33293308271095157,-0.28634005319327116,0.009147793520241976,-0.7813053717836738,-0.8054190003313124,0.7303637061268091,0.7676011538133025,0.0025993678718805313,-0.03185507468879223,-0.11283554928377271,0.017310381401330233,-0.27254200354218483,-0.5356867169030011,-0.3535003764554858,-0.9793694876134396,0.3834772682748735,0.1286003808490932,-0.9763580341823399,-0.706253900192678,-0.3732438632287085,-0.43124263640493155,0.9714523907750845,-0.9288568161427975,-0.3186616119928658,-0.1363414074294269,-0.008563518058508635,0.501770703587681,-0.8100723186507821,0.7002155934460461,0.2752918377518654,-0.4426623862236738,-0.13532469607889652,-0.9242756441235542,0.5119595304131508,0.8732872777618468,-0.30199124151840806,0.9322724170051515,-0.31469286791980267,0.33581100357696414,0.357055033557117,0.9537352253682911,-0.170859444886446,-0.372425417881459,-0.08520214119926095,0.004108801018446684,-0.4798520877957344,-0.7664179974235594,-0.6936102760955691,-0.6060183583758771,-0.20442692749202251,0.09074126835912466,-0.7847321596927941,0.864482618868351,-0.4327907687984407,0.4175264253281057,0.7068996303714812,-0.4322858517989516,0.800224079284817,0.30413177656009793,-0.8038438311778009,-0.5375686683692038,-0.47824758663773537,-0.2317472193390131,0.6396243330091238,-0.4363766056485474,-0.7341372752562165,0.38076264737173915,-0.279095696285367,-0.8234917465597391,0.6742888344451785,-0.8195818173699081,0.1249632379040122,-0.8387496750801802,0.1638289289548993,-0.4358274098485708,0.40250994358211756,0.7922530435025692,-0.10690135322511196,0.5481596188619733,-0.026315840426832438,-0.11655632127076387,0.4845267431810498,-0.07494518719613552,0.8530646553263068,0.5784351578913629,0.6875845887698233,-0.5741596492007375,-0.44939879421144724,0.39086033357307315,-0.08730216138064861,-0.6238043899647892,0.19904241058975458,0.30437961919233203,0.7774365367367864,0.6642482737079263,-0.38498785998672247,-0.15098324278369546,0.6991873658262193,-0.46416864125058055,-0.019826640374958515,-0.21908814692869782,-0.4442073809914291,-0.6069687330164015,-0.5467210686765611,0.9682481740601361,0.7311950852163136,-0.4535406739450991,-0.7125123939476907,0.6330989776179194,-0.5501783527433872,0.19284403463825583,0.41430559242144227,0.02870220923796296,0.9183651278726757,0.8945716596208513,0.22477814042940736,0.35364868585020304,-0.3002228820696473,0.5842668414115906,0.21608774131163955,-0.5328358015976846,0.9185514762066305,0.514833630528301,0.9024422108195722,0.9351524063386023,-0.02041591051965952,-0.785671291872859,-0.5807923246175051,-0.2912770872935653,0.5838191108778119,-0.9979467708617449,-0.780329470988363,0.1617119344882667,0.569295397028327,-0.922404223587364,0.9380850540474057,-0.7311395718716085,-0.9850434525869787,0.9640622357837856,0.26481813099235296,0.16861653607338667,-0.7351108910515904,-0.3156178933568299,0.10123350098729134,-0.10615281015634537,0.16321990173310041,-0.1786473309621215,-0.18777560349553823,0.705092036165297,0.6258268766105175,0.08939703460782766,-0.4808521796949208,0.4369596824981272,-0.6615735311061144,0.507510541472584,0.2133185463026166,-0.7247809427790344,-0.07561874808743596,-0.6413120566867292,0.8043815451674163,0.6626705047674477,-0.868914092425257,-0.378090956248343,0.2963647274300456,-0.6696045268326998,-0.5369818010367453,0.647166458889842,-0.3122787778265774,-0.33505051117390394,-0.4279531678184867,0.5183429555036128,-0.9539546216838062,0.5169335105456412,0.38511893060058355,-0.9726536213420331,0.5961724533699453,-0.663058876991272,0.6689789961092174,0.1687260903418064,-0.6028023543767631,0.8175228419713676,-0.6832661898806691,0.2709045480005443,-0.6301076314412057,-0.7711952053941786,-0.10709079960361123,-0.9773956052958965,0.8485872321762145,-0.6493690540082753,0.0585706434212625,-0.5703405910171568,-0.5087741860188544,-0.8703730273991823,0.1211622771807015,0.5735103408806026,-0.9454116593115032,0.48242053296417,-0.5494020553305745,-0.6317793680354953,-0.9026739951223135,0.8524513952434063,0.8974016564898193,0.06789902970194817,-0.09302872186526656,0.3088525980710983,-0.10379954986274242,-0.7307348418980837,0.38994896598160267,0.8839034750126302,0.6380730122327805,-0.3980305199511349,0.22647101152688265,0.6489329161122441,0.6733826235868037,-0.7665884080342948,-0.651647413149476,0.862723074387759,0.786152817774564,0.5301923584192991,0.18140329839661717,-0.1488721678033471,0.5416481555439532,-0.6439789840951562,0.26320141134783626,-0.15967964055016637,0.45752662932500243,0.6746531119570136,0.34506300231441855,0.48991983802989125,-0.1061141537502408,-0.40135811315849423,-0.10851536458358169,-0.038204777520149946,0.670843489933759,-0.7400964107364416,-0.9541251133196056,0.7169978516176343,-0.27565994672477245,0.41731091355904937,0.38545334758237004,0.4868986876681447,-0.6487178346142173,-0.24963711388409138,-0.167438720818609,-0.11654573725536466,0.4203402507118881,-0.0488711423240602,-0.2677326872944832,-0.6946664527058601,-0.6938407882116735,0.3763352921232581,-0.8163744495250285,-0.5722829150035977,-0.2666565962135792,-0.4216806599870324,-0.30972310760989785,0.26122274016961455,0.2827354269102216,-0.15445891954004765,0.6169560994021595,0.4730789279565215,0.18819952802732587,-0.3164745243266225,-0.5364868184551597,0.8624566681683064,-0.09150095004588366,0.26781143713742495,-0.4576645032502711,0.2110911700874567,-0.03072875179350376,0.22570304851979017,-0.20051204320043325,-0.9951233314350247,-0.01000379491597414,0.3049596739001572,-0.10051651624962687,-0.4271828169003129,-0.10013367095962167,-0.5654113027267158,-0.8058799332939088,-0.03911981964483857,-0.31920552533119917,-0.42639574129134417,0.18571787048131227,0.7411069590598345,-0.6825547041371465,-0.1682595149613917,0.7198690357618034,0.07970248209312558,-0.7181084551848471,-0.809716708958149,-0.198345092125237,0.13713533291593194,0.2962448815815151,-0.8419880163855851,0.40917797619476914,-0.2336680688895285,0.9732914608903229,-0.7634525042958558,0.5893654166720808,0.603126086294651,-0.6961402548477054,-0.5240035122260451,-0.024541416205465794,0.529134186450392,0.5834928718395531,-0.06751333130523562,-0.4407900278456509,-0.34695612406358123,0.5567668047733605,-0.9667475242167711,-0.5471764006651938,0.42445466481149197,-0.5123203755356371,-0.8649090086109936,0.21481214696541429,0.19436359917744994,0.39528855588287115,0.44990777783095837,0.9130062991753221,-0.4284329037182033,0.06679539289325476,-0.5684583210386336,-0.17186904419213533,0.21547419531270862,-0.21021451149135828,0.6089311214163899,0.9648685292340815,0.2146330690011382,0.7361218142323196,-0.018794210627675056,0.7701982846483588,0.6817511762492359,-0.516339813824743,0.9781542336568236,0.2817701008170843,0.5038678324781358,-0.27563079399988055,0.17155177192762494,0.008517901878803968,-0.179942371789366,-0.9598664208315313,-0.8462854102253914,-0.7055074735544622,0.04793140757828951,0.6200012373737991,0.8352487566880882,-0.2898741248063743,-0.023321307729929686,0.40295875491574407,-0.8173120575957,-0.3427173118107021,-0.8759741801768541,0.7368306452408433,0.1542012980207801,0.0576930632814765,0.864603927358985,0.5113761564716697,0.031714871525764465,-0.7856753636151552,-0.8995153326541185,0.5348620675504208,-0.7042498765513301,-0.719436411280185,-0.5059068915434182,-0.5655276528559625,-0.7900503161363304,-0.8271675375290215,-0.23285169154405594,0.5924536478705704,-0.32168480567634106,-0.25056272093206644,0.46027621626853943,-0.7792728263884783,0.2884312062524259,-0.7308581438846886,-0.014493339695036411,-0.48302918719127774,-0.08770922012627125,-0.9593643727712333,0.7179387118667364,0.7193465982563794,0.5238208505325019,0.6476010424084961,-0.09093424817547202,0.8522497722879052,-0.2630174704827368,-0.7135156658478081,0.8272455045953393,-0.2613119948655367,-0.03695899108424783,-0.9167827111668885,0.8812854099087417,0.020056177861988544,-0.8685273039154708,-0.2886031810194254,0.16595595562830567,0.7806438286788762,-0.34278366388753057,-0.4091869234107435,-0.8340042806230485,-0.6199893741868436,0.2240140396170318,-0.9996063346043229,0.8223874503746629,-0.49673469457775354,-0.8601964921690524,0.39181313617154956,-0.788228603079915,-0.6159232314676046,-0.6115335710346699,-0.15023717982694507,-0.647342486307025,-0.15805075550451875,0.7378722950816154,0.5816504005342722,0.10650977306067944,-0.4637202234007418,0.6546382568776608,-0.4844635254703462,-0.6098719635047019,0.043517224956303835,-0.5467927381396294,-0.08960993867367506,0.563072893768549,0.695456103887409,-0.6443291171453893,0.03771842457354069,0.6980275241658092,-0.17695799423381686,-0.958664536010474,0.706460140645504,0.7062674020417035,-0.812132048420608,0.512072904035449,-0.9593999022617936,0.18261957541108131,0.09592033317312598,-0.3509577182121575,0.6634792080149055,0.013785761315375566,0.025513531640172005,-0.2586085465736687,-0.09435248235240579,-0.48318207915872335,0.47488612961024046,-0.28969587851315737,-0.36912072263658047,-0.9929415732622147,-0.8996485169045627,-0.7807569424621761,-0.47227716352790594,-0.7205354301258922,0.5946021443232894,0.38970028469339013,-0.11249128403142095,-0.3295832169242203,-0.6294233305379748,0.010186795610934496,0.8352772505022585,0.002568711992353201,-0.8527692565694451,-0.6099219368770719,-0.5303104100748897,-0.21289062779396772,-0.4586149649694562,0.026439348701387644,-0.4460070454515517,0.2769109043292701,0.6206742264330387,-0.5089204660616815,0.8125969655811787,0.6091997097246349,0.9908371842466295,-0.9207047084346414,-0.9639711230993271,-0.3514795517548919,-0.2500921105965972,-0.4364643022418022,0.41534273978322744,-0.31294316286221147,0.1412041331641376,0.08488307986408472,-0.3772154483012855,-0.6475986340083182,0.06881759269163013,0.6327591831795871,0.7531852638348937,-0.8059839652851224,-0.1334823640063405,0.43224608385935426,-0.981421722099185,-0.9850418018177152,0.771813799161464,0.2383445268496871,-0.43670559022575617,-0.17777711851522326,-0.8602385427802801,-0.29389064898714423,-0.23450550669804215,-0.8380906162783504,-0.6688491860404611,-0.5821580560877919,0.15981136448681355,-0.926578660029918,-0.30061571951955557,-0.8178090946748853,-0.4454064494930208,-0.18289427226409316,0.15942615317180753,-0.24538218649104238,0.17415242455899715,0.1538705164566636,0.5660591633059084,-0.4533974933438003,-0.7651590569876134,-0.9398558475077152,-0.6891940617933869,-0.44163441890850663,-0.058897698763757944,-0.20477561792358756,-0.2682242696173489,-0.08818679908290505,-0.7651104708202183,-0.16776722017675638,0.5055203516967595,0.08595827361568809,0.993827051948756,0.721001991070807,0.31669204495847225,-0.9545910865999758,-0.4353307755663991,-0.7895521959289908,0.8868366233073175,-0.015490068588405848,-0.5191283547319472,-0.6288844314403832,0.07455008151009679,-0.15093208802863955,-0.09466274082660675,-0.5424826839007437,0.06479273550212383,0.6390388319268823,-0.48472433211281896,0.7423983779735863,-0.5721896546892822,-0.4308162350207567,-0.3259575292468071,-0.9416769975796342,-0.5218204939737916,-0.859525429084897,-0.971141988877207,-0.14139032503589988,0.6694880947470665,-0.8828959902748466,0.04385181935504079,-0.2576484754681587,-0.1739117382094264,0.4562322976998985,-0.46056446759030223,0.7970281853340566,0.7629469498060644,0.9972886093892157,-0.18607696099206805,0.025321817491203547,0.701723522040993,0.5711233457550406,0.2663665064610541,-0.024277532007545233,0.3663463918492198,0.6712806541472673,0.4927801829762757,-0.7134200278669596,0.7549971439875662,0.7446839641779661,0.21260489895939827,0.5364820212125778,-0.08080671541392803,0.5625866684131324,0.4782037581317127,0.6045727711170912,-0.9230882655829191,-0.8648853814229369,-0.7224740111269057,-0.10328973876312375,0.930647146422416,0.5635470454581082,-0.8838817500509322,-0.8925151904113591,0.4333997219800949,0.22424731124192476,0.844234979711473,-0.9100845195353031,-0.03034668043255806,-0.5200544190593064,0.8327856422401965,-0.15757506573572755,0.702808327972889,-0.50258344784379,-0.46865954902023077,-0.14475079998373985,-0.2715219887904823,0.0732431155629456,0.6309869680553675,-0.31077024759724736,-0.5195981860160828,0.4423724259249866,-0.3713023420423269,-0.1133202975615859,0.700228055473417,0.5822034650482237,0.2199898650869727,0.49333087215200067,0.01589707238599658,0.9601697158068419,-0.7566649788059294,0.8740187371149659,-0.26034731743857265,-0.6609986410476267,-0.6200653947889805,-0.8695419039577246,0.5709606898017228,0.5614483300596476,-0.27295247465372086,-0.15444414736703038,-0.15197940124198794,-0.5986696453765035,-0.26368224155157804,0.5936229885555804,0.634986899793148,0.7827836791984737,0.5200739577412605,0.074670834466815,-0.5714790136553347,-0.5672663496807218,0.966958140488714,-0.30619233287870884,-0.936092502437532,-0.06896270206198096,0.561508821323514,0.7594963954761624,-0.9583241357468069,0.47989686531946063,-0.949459451250732,-0.40618963073939085,0.9065347546711564,0.08066696161404252,-0.9838168695569038,0.4238205347210169,-0.7925154776312411,-0.6162813021801412,-0.40338863199576735,0.32633824087679386,-0.9343286976218224,0.9392188061028719,0.9647796279750764,-0.7376124695874751,-0.8996418179012835,-0.6143829608336091,-0.7762294779531658,-0.24871752178296447,-0.25452786637470126,0.06288083828985691,0.06478584744036198,0.2803286933340132,-0.4066692544147372,0.36397340800613165,-0.21637311717495322,-0.5677892062813044,0.45829384168609977,0.568380341399461,0.012589417397975922,0.7946157050319016,0.7474931105971336,0.6267942925915122,0.9592003906145692,-0.004827091936022043,-0.10733305756002665,-0.3856980404816568,0.54414375545457,0.41398236993700266,-0.2451260844245553,0.9995069289579988,-0.5698926225304604,0.7785568870604038,-0.06740758987143636,-0.23796363547444344,0.24929422326385975,0.23707168642431498,-0.03642204683274031,0.9075371869839728,0.19941847445443273,0.6211712206713855,-0.04372767684981227,-0.9637529496103525,0.48506813729181886,0.7720687002874911,-0.11323118070140481,0.5727941170334816,0.6109461798332632,-0.20656226482242346,-0.6356845735572278,0.28453264897689223,-0.5848583811894059,-0.5253593069501221,-0.021156214643269777,-0.13738354574888945,-0.4359677555039525,-0.34378978703171015,-0.9451097128912807,-0.5551870903000236,-0.3593611693941057,0.18706451309844851,-0.17839460680261254,-0.7604029220528901,0.9117163741029799,-0.03243162948638201,0.13159440457820892,-0.6834632637910545,-0.2149214567616582,-0.32042662100866437,0.4284819229505956,-0.27213631896302104,0.35246488731354475,0.34159982670098543,0.27075323462486267,-0.5457974812015891,0.7404798129573464,0.3679105993360281,-0.24557385919615626,0.36838811403140426,-0.07355590537190437,-0.9748253445141017,-0.5966240935958922,0.15898158680647612,0.3324874257668853,-0.29862695559859276,-0.7394441827200353,0.8256990881636739,-0.7059916770085692,0.6998444958589971,-0.6449694144539535,-0.47887892136350274,0.17322364309802651,-0.7954325200989842,0.9934743787162006,0.5837421021424234,-0.4812927898019552,-0.022751278709620237,-0.6258531748317182,-0.43507660180330276,0.0319424020126462,0.6046350416727364,-0.46860347827896476,-0.35516306618228555,0.43563387217000127,0.23638429306447506,-0.8360623475164175,-0.9880755697377026,-0.387123953551054,0.7781379213556647,0.6664666510187089,0.19653951283544302,0.35736630856990814,0.3783413306809962,-0.22270441940054297,0.21705239545553923,0.5926718995906413,-0.9431093181483448,-0.22687391564249992,0.026822753716260195,0.9715759833343327,0.006443023215979338,0.55445197224617,0.6973156630992889,-0.3723733499646187,-0.4402214903384447,0.8829157156869769,-0.38820916414260864,0.1538104205392301,-0.04730364074930549,0.05177188850939274,-0.9864129880443215,-0.7391854701563716,0.29157899087294936,-0.953716226387769,0.12328336108475924,0.6873685317113996,0.8679298758506775,0.868957532569766,-0.3866713191382587,-0.8485251599922776,0.8431345792487264,0.15548353642225266,0.31985896453261375,-0.3294699811376631,-0.8322714013047516,0.8809685870073736,-0.024780680425465107,-0.8174034873954952,0.536369226872921,0.3545684963464737,0.12990021565929055,-0.04010622063651681,-0.39673646725714207,0.5266077304258943,-0.8935015825554729,-0.5855898889712989,-0.19016477512195706,0.5724362335167825,-0.33940634597092867,-0.40730693517252803,-0.27538141794502735,-0.15443668700754642,0.20619104895740747,-0.8428148520179093,0.4021037253551185,0.32442927500233054,0.3347616931423545,-0.2629802250303328,-0.471048173494637,-0.6017954838462174,0.03639438422396779,-0.8057991373352706,-0.9639436928555369,0.9966389471665025,-0.14158051228150725,-0.07237489335238934,-0.007135481107980013,-0.11854440253227949,0.5260425521992147,0.9145438745617867,0.9449700200930238,0.15312771778553724,0.9988981327041984,-0.9368096478283405,0.5658725309185684,-0.18426779611036181,-0.2937566004693508,-0.526996070984751,-0.766872679349035,-0.47631479101255536,-0.9988847528584301,0.2703931676223874,-0.6284302622079849,0.08445406472310424,0.20934491185471416,-0.018299564719200134,-0.7134496471844614,-0.10687339352443814,0.11926142266020179,-0.12975561246275902,0.34488042863085866,-0.9415501961484551,0.6916727917268872,-0.4214239311404526,-0.23805720685049891,-0.39462114591151476,-0.26613987842574716,-0.003999078180640936,0.7982467925176024,0.043768301606178284,-0.9253221452236176,0.13200620142742991,0.7629210683517158,-0.9224770772270858,-0.6537045408040285,0.3975268676877022,0.03334927558898926,-0.973412430845201,-0.7613026201725006,-0.5994181889109313,-0.3524174722842872,0.42890177061781287,0.6789021412841976,0.14327968237921596,-0.6422426663339138,-0.136988777667284,-0.7712014340795577,0.6262057418935001,0.6785095673985779,0.3520625517703593,-0.3785222019068897,0.6048626662231982,0.6719936104491353,0.3327875197865069,0.22203136747702956,0.7429271335713565,-0.11571362987160683,-0.11933937948197126,0.7441487279720604,0.9532683282159269,-0.45630495762452483,-0.02953016385436058,-0.8304667035117745,-0.22008055727928877,0.4344153772108257,0.04403254156932235,-0.4320912347175181,0.35018969513475895,0.565375994425267,0.3956178855150938,0.9583713128231466,0.9153733649291098,-0.2853752323426306,0.4072111751884222,-0.6628141007386148,0.9564222795888782,-0.03834156785160303,-0.604280523955822,0.23298960411921144,0.0059357439167797565,0.5162783740088344,-0.5480055278167129,0.03387067001312971,-0.9026119187474251,-0.1630256175994873,0.12797914166003466,-0.9337291629053652,0.03569041658192873,-0.05147220008075237,0.04999057948589325,0.9557008468545973,0.6826707553118467,-0.549641408957541,-0.6103701801039279,0.8239956870675087,-0.5345748751424253,0.4304830301553011,-0.7722687846980989,0.8537411452271044,-0.6179095520637929,0.8083459925837815,-0.31494534527882934,-0.4395744241774082,0.09427272947505116,-0.0023805308155715466,-0.7580979946069419,0.9342398336157203,0.979708643630147,-0.1269189123995602,0.4161171419546008,0.4781020190566778,-0.7054690760560334,-0.3827316826209426,-0.837248002178967,-0.03651267243549228,-0.747963136062026,-0.8607277260161936,0.949081034399569,-0.07273469725623727,-0.5642184144817293,-0.39133954234421253,-0.9365868773311377,0.21357607236132026,0.9976707547903061,0.6067080679349601,0.5564110381528735,0.4122406872920692,0.8107632608152926,0.7291291933506727,-0.9400660726241767,-0.45488075632601976,0.13276636181399226,0.8487045112997293,-0.6516232779249549,-0.27090887166559696,-0.30400054110214114,-0.15070920577272773,-0.7257263604551554,-0.1633065240457654,-0.12885066820308566,0.4884600550867617,0.13173224171623588,-0.41238489374518394,0.15007313946262002,-0.7553077549673617,-0.3887125146575272,0.12565044360235333,-0.4613036154769361,-0.4788407450541854,0.8485473208129406,0.6412774482741952,0.7410519411787391,-0.25278848549351096,0.3828246062621474,0.14125474635511637,0.2785103591158986,0.6206538677215576,0.6777313221246004,0.8925029672682285,0.34763938933610916,0.15948163298889995,0.7426459365524352,-0.7610831428319216,0.9583649840205908,0.11057972768321633,0.7925655827857554,0.3564094081521034,0.7092139450833201,0.664091148879379,-0.2060062293894589,-0.7900785021483898,0.48738823225721717,-0.8927812757901847,-0.9608011431992054,0.9723229580558836,-0.9185902904719114,-0.05979875475168228,-0.5160340736620128,-0.23941677482798696,0.6415148861706257,0.5686659566126764,0.952442102599889,0.40402840776368976,0.4345206394791603,0.8536287974566221,-0.5037422422319651,-0.38760142866522074,-0.3245737631805241,0.7512585665099323,-0.427817071788013,0.1260291156359017,-0.5628923866897821,-0.39306759741157293,-0.8638925864361227,0.5764456889592111,0.1390046146698296,0.2320990297012031,-0.7132799536921084,0.1120308181270957,0.7789047732949257,0.6072317352518439,-0.7219013264402747,-0.3250955417752266,-0.3169721500016749,0.18976308731362224,-0.9050201964564621,-0.24276024010032415,0.326189408544451,-0.3574496475048363,-0.8869394203647971,-0.2890175390057266,0.37174203526228666,0.12139534251764417,0.03462215233594179,-0.7439216589555144,0.7593061635270715,0.438374453689903,0.7355864872224629,-0.7595240739174187,0.4613138106651604,0.8651006226427853,-0.27727554691955447,-0.3454672680236399,0.8298742342740297,0.22740948060527444,0.9754330292344093,-0.5260412669740617,-0.733247744385153,-0.5535678043961525,0.5071626002900302,-0.9899730901233852,-0.2923766518943012,0.3062140326946974,0.8715604799799621,0.5448180278763175,0.16166003560647368,-0.5312391086481512,0.6455844482406974,0.5291848140768707,-0.8827602686360478,0.9730682610534132,-0.3214750103652477,0.7227991227991879,-0.5320961074903607,0.12862054770812392,0.5662794033996761,0.9392208009958267,0.2823583846911788,0.43695512181147933,-0.8608263172209263,0.7300726873800159,-0.7829837002791464,0.4343385132960975,-0.4700141088105738,-0.13853870937600732,-0.32460589380934834,0.41608486929908395,0.7705085300840437,0.27662101248279214,0.22693094750866294,-0.0926684713922441,-0.666466208640486,0.387363791000098,0.20838091848418117,-0.4109377027489245,0.42427152767777443,0.8094351422041655,0.5790418554097414,0.7449895478785038,0.42711541801691055,-0.04114303318783641,0.94434400415048,-0.9763579317368567,0.6012365999631584,-0.011387671809643507,0.11965761659666896,-0.07694979151710868,-0.2858966402709484,-0.016152117867022753,0.4149531750008464,-0.6117757963947952,-0.3821693523786962,-0.057173133827745914,-0.2076507075689733,0.9737818404100835,0.6310792337171733,-0.7636940493248403,0.7270903959870338,-0.9656777381896973,-0.0016326955519616604,0.9430179549381137,0.055307341273874044,-0.785991714335978,0.6715434896759689,-0.7040507439523935,-0.20899747963994741,0.8727779029868543,0.5970379677601159,0.03639434231445193,-0.8274019630625844,0.0606815735809505,-0.500359273981303,-0.18865276500582695,-0.2757038068957627,0.3750077239237726,-0.9744798853062093,0.8729292750358582,-0.35162924509495497,-0.7514212485402822,0.08870211476460099,-0.0745347561314702,0.04567456291988492,-0.44500541407614946,-0.6934141791425645,0.028494902420789003,-0.4884804552420974,0.26216589706018567,0.7034684247337282,0.7660785135813057,-0.49750308133661747,-0.023228563833981752,0.01889348356053233,-0.6227407706901431,0.6193302548490465,-0.37921894481405616,0.7104336153715849,0.4563196296803653,0.8298013033345342,0.2071432964876294,0.6336840935982764,-0.47323652310296893,0.5296572013758123,-0.26335608260706067,0.6414713594131172,0.27331547625362873,0.09788286639377475,-0.41032157745212317,0.9404738070443273,0.7778653237037361,0.8418895499780774,0.5480363951064646,-0.04457500530406833,-0.09362834319472313,0.8769849152304232,-0.13246565265581012,-0.9165679034776986,0.7089441092684865,0.7275170963257551,0.8961803559213877,0.3925608852878213,-0.9135128785856068,-0.6434746501035988,-0.5094012976624072,-0.41640129080042243,0.004813297186046839,-0.6276648594066501,-0.47141456697136164,0.4247782598249614,-0.7409455412998796,0.8443437437526882,0.24783588713034987,-0.617607232183218,-0.8560023144818842,-0.8425103011541069,-0.8401287640444934,0.5738684921525419,0.9872206249274313,-0.5430369735695422,-0.5787237389013171,0.995160099118948,-0.8051962358877063,-0.6493737865239382,-0.814892650116235,-0.9603698584251106,-0.040443675592541695,-0.6626195912249386,-0.8478053971193731,-0.05934989079833031,0.25455440720543265,0.2970481156371534,0.06034363992512226,-0.5529713816940784,-0.2390849213115871,0.2449959022924304,-0.87600116757676,-0.49024721467867494,0.8653705394826829,-0.027475009206682444,-0.9474139949306846,-0.44043993670493364,0.04182881396263838,-0.3782148491591215,0.46020330488681793,-0.515548727940768,0.43368623359128833,0.6591902137733996,0.8462229068391025,-0.7909822259098291,0.9322938220575452,-0.1385927996598184,0.7172743952833116,0.1659961324185133,0.03746003285050392,-0.26141022657975554,0.4871646277606487,0.08990280190482736,0.41555530577898026,0.4848033394664526,0.24987945333123207,-0.8544349675066769,0.008711687754839659,-0.3364347852766514,-0.06558439275249839,-0.19496891414746642,0.23361372435465455,0.3894792776554823,-0.07187691703438759,-0.03181265061721206,0.2528173835016787,0.2382762897759676,-0.4722643322311342,-0.924762740265578,0.8230382548645139,0.477778113912791,-0.6907913195900619,0.2296652444638312,0.7355154491961002,0.34567911736667156,0.7715556821785867,-0.6774429264478385,0.7312438166700304,0.8582884152419865,-0.6203603111207485,0.6509213792160153,0.35631913924589753,-0.6154594523832202,-0.8152073104865849,-0.955155286937952,-0.05920842755585909,-0.16762147564440966,0.8278550454415381,-0.01768994191661477,-0.1277340780943632,0.9228817210532725,0.09687667200341821,0.37175264162942767,-0.8847190239466727,0.8437544838525355,0.5102610881440341,0.15875427145510912,-0.6601510504260659,-0.740566570777446,-0.8059679251164198,0.2827729554846883,0.9303061575628817,0.3090339731425047,-0.2096872804686427,0.7314971177838743,-0.28976278798654675,-0.8076003883033991,-0.8570062462240458,0.3694516336545348,0.6286219330504537,-0.34872271167114377,0.21882139751687646,0.3382834577932954,0.3348554000258446,-0.18396422220394015,0.4777081971988082,-0.38875896763056517,-0.06863290769979358,-0.8953233337961137,-0.11871138447895646,0.2889045109041035,0.18029037537053227,0.5817567994818091,-0.4779290361329913,-0.17688207747414708,0.7139391829259694,0.9330456415191293,-0.7038374403491616,-0.34879530780017376,-0.8953906036913395,-0.5764267509803176,0.6683621136471629,-0.6776683228090405,0.733126325532794,0.5370764005929232,-0.44903166498988867,0.39760719053447247,0.7424847292713821,-0.18358090380206704,0.4225216759368777,-0.2634242754429579,-0.6489283046685159,0.4167925356887281,-0.6722991340793669,0.30201625311747193,0.3315896005369723,-0.3003398613072932,-0.28484529815614223,-0.13352887891232967,-0.9795776433311403,-0.9126016371883452,0.07291424833238125,0.3459508693777025,-0.9605483287014067,0.31844437727704644,-0.21300717862322927,0.482803066726774,0.5942991781048477,0.35574066126719117,-0.34432706516236067,-0.37130124075338244,0.967171979136765,0.08565079001709819,0.060247029177844524,-0.16347677260637283,0.23212352953851223,0.9378024833276868,-0.9600093690678477,0.9576891991309822,0.4388713054358959,0.2671623006463051,0.02428862964734435,-0.38567322539165616,0.6012027063407004,-0.8726802244782448,0.4114173729903996,-0.6691576209850609,-0.8189414255321026,-0.277542385738343,-0.49093743693083525,-0.8153244964778423,-0.8469029911793768,-0.8033331953920424,-0.21155254961922765,0.35857141437008977,-0.6609857124276459,0.959104435518384,-0.4730149107053876,-0.5740134660154581,-0.4130618805065751,0.8641139543615282,0.40845865197479725,0.4898100243881345,-0.2748416350223124,0.56192526826635,0.14021904300898314,0.8947492181323469,-0.17881070356816053,-0.6378522082231939,-0.4254016517661512,0.6475055022165179,0.11083279084414244,0.8777264282107353,0.9901269809342921,-0.049660847056657076,-0.030808061826974154,-0.7706790827214718,0.6285606441088021,-0.5487471385858953,-0.14096018113195896,-0.8989615072496235,-0.7210371564142406,0.498054769821465,-0.8305334853939712,0.6982313245534897,-0.845344552770257,0.2934862491674721,-0.2838189108297229,0.692962281871587,-0.4861305854283273,-0.6913312096148729,0.12236774945631623,0.42244516871869564,-0.18109128158539534,-0.12736917659640312,0.9896978088654578,-0.7514678672887385,-0.45378768909722567,-0.3900464903563261,0.24508266244083643,-0.929475246462971,0.620698528829962,0.6547976923175156,0.15920067206025124,-0.6545310379005969,0.41539509454742074,-0.6702787294052541,-0.7409833492711186,-0.01744779944419861,0.7628828720189631,0.9539473876357079,-0.1873246692121029,0.7875590892508626,-0.8293631081469357,-0.5173780000768602,0.12238313257694244,-0.2764193760231137,0.7108145235106349,-0.37596568977460265,-0.25138419354334474,-0.914462061598897,-0.058101408649235964,-0.03932791715487838,0.2857918329536915,-0.6135408505797386,-0.2779792887158692,-0.2295740987174213,0.9605322098359466,0.1634540557861328,-0.9326676419004798,-0.041139686945825815,-0.5010044639930129,0.4996369001455605,0.916283673606813,-0.5420270962640643,0.9215165534988046,0.3796111303381622,0.8329848581925035,0.5604931474663317,-0.2901106169447303,-0.407510703895241,-0.9007443115115166,-0.49347251234576106,-0.24771728506311774,-0.2509813476353884,-0.8767913128249347,0.05219083372503519,0.5140445679426193,0.9289189432747662,0.2961734482087195,0.21671766741201282,-0.5815321845002472,-0.0929870973341167,-0.047515363432466984,0.9491796907968819,-0.24762231158092618,0.419899835716933,-0.9914633226580918,0.4832065086811781,-0.4448176329024136,0.07191829942166805,-0.42577585112303495,-0.8848478035070002,-0.5136905438266695,0.7836840762756765,-0.04648486524820328,-0.8676558090373874,-0.9635160588659346,-0.9011697554960847,0.8322393437847495,-0.7625880744308233,0.9911301615647972,0.7253113384358585,0.1251230826601386,0.8070611413568258,0.12110983859747648,0.37255231151357293,-0.14079218916594982,0.6873049074783921,0.39160428242757916,0.5923656593076885,0.6958776488900185,-0.6765907942317426,0.6203293045982718,-0.36632855189964175,-0.5729586672969162,0.9375542690977454,-0.612543058115989,0.5541145838797092,0.049128039740026,0.588918128516525,0.07894870731979609,-0.1624030382372439,0.7284177443943918,0.5813494720496237,-0.7133479369804263,-0.29464502399787307,0.783548126462847,-0.6557338610291481,0.8776547946035862,0.2970358030870557,-0.1900659529492259,-0.8513534562662244,-0.4499792158603668,0.562331270892173,-0.43214080622419715,0.7830478381365538,-0.37823212519288063,-0.5020109587348998,0.9882802236825228,-0.6904923361726105,-0.677226273342967,-0.10167112154886127,-0.23723827674984932,0.009780163411051035,-0.5169822010211647,-0.47037439653649926,-0.29079920891672373,-0.20498451543971896,-0.3020347054116428,0.04694236675277352,0.09550433605909348,-0.5837207860313356,0.8813553610816598,-0.15136821661144495,0.9825471076183021,0.6092586540617049,-0.08779209665954113,-0.524037666618824,0.5135379247367382,0.638783338945359,-0.5324122570455074,-0.20068496000021696,-0.7984368125908077,0.6632569753564894,-0.37320052552968264,-0.48066231794655323,-0.658351902384311,-0.6413511773571372,0.4124996582977474,-0.0732590383850038,-0.03926630271598697,0.7627596613019705,-0.930163552518934,-0.09829803509637713,0.41878942027688026,-0.7875511706806719,-0.3658028393983841,-0.8887937120161951,-0.5450472682714462,-0.5083750542253256,-0.31487730890512466,-0.16473972192034125,-0.30839740950614214,0.43226220086216927,0.5550104384310544,-0.8568068644963205,0.9706600531935692,0.7309032096527517,-0.8622659584507346,0.29264014633372426,-0.09665657533332705,-0.9249993576668203,0.5912379613146186,0.07950178487226367,-0.17092501558363438,0.5566300572827458,-0.46638349117711186,-0.8793325060978532,-0.911814705003053,-0.33869872661307454,-0.7813960365019739,-0.9757040520198643,-0.03418597253039479,0.18028294621035457,-0.5249317781999707,0.4119813619181514,0.5400062496773899,0.49790648138150573,-0.303009073715657,-0.8732107100076973,0.558876184746623,-0.28203041618689895,0.21582085778936744,-0.8526991889812052,-0.5290572140365839,0.47968500200659037,-0.18374683754518628,0.15341310808435082,0.5563371125608683,0.7941028978675604,-0.8936242777854204,-0.17716843215748668,0.7835609363391995,0.11692787008360028,0.5129136429168284,-0.10776551812887192,-0.2929035439155996,-0.029529031366109848,-0.5868010260164738,0.022638704627752304,0.30305030662566423,-0.14096114225685596,-0.011891832575201988,0.7601098138839006,0.6852864781394601,-0.26775233494117856,0.5528176371008158,0.005961637012660503,0.8068401380442083,-0.16300290636718273,0.16275753220543265,0.12192826764658093,-0.3478172761388123,0.7308046710677445,-0.06245926395058632,0.9027534015476704,-0.8664034060202539,-0.010009060148149729,-0.561250283382833,0.5423248843289912,0.40007958048954606,-0.7750927419401705,-0.9612168124876916,-0.8490013456903398,0.7522398415021598,-0.05194164579734206,0.7112903725355864,-0.7026729416102171,-0.7026020782068372,0.9380183769389987,-0.1861608326435089,0.8870579972863197,-0.25263561261817813,0.5075672552920878,-0.16947060823440552,-0.2816822053864598,-0.45514087844640017,-0.04976835148409009,-0.05255546234548092,-0.19359106803312898,0.772413341794163,-0.07595524657517672,0.3671310222707689,0.972913917619735,-0.8370956480503082,0.3113126661628485,-0.9780624052509665,0.7898869174532592,0.5902392170391977,0.6466609444469213,0.792247861623764,-0.7196192727424204,0.9176179734058678,0.8500433941371739,0.6894904486835003,-0.7774255075491965,-0.6045840890146792,0.47787689650431275,0.07173248147591949,-0.02956623863428831,-0.6211228091269732,-0.9420022126287222,-0.5003856737166643,-0.5772107946686447,0.5785839883610606,0.8443521414883435,0.31699783401563764,-0.5230069160461426,-0.7636585640721023,-0.5079312324523926,-0.020126890391111374,-0.936684594489634,0.1582398870959878,-0.8379273428581655,0.6415620921179652,0.6925710565410554,-0.8961653388105333,-0.5518880747258663,-0.6434909263625741,-0.8528031543828547,0.34852449176833034,0.08943147072568536,-0.8171470132656395,0.5229401248507202,0.2754403343424201,0.883225163910538,0.8368923901580274,-0.801843932364136,-0.6773776728659868,0.649744703900069,-0.776264872867614,-0.46569420490413904,-0.20664822636172175,0.2632132852450013,0.34981602942571044,-0.640691670589149,-0.8370928023941815,-0.9713608105666935,0.5468578897416592,0.7384319789707661,-0.14577431976795197,0.7912022611126304,-0.8026447934098542,-0.6071784091182053,-0.14742836775258183,0.6629731236025691,0.06798999197781086,0.9901512456126511,0.5627175872214139,0.8660201230086386,-0.01959194988012314,0.731602153275162,0.1199009595438838,-0.2749846549704671,0.4549592533148825,-0.09882523352280259,-0.032339722383767366,0.012326362542808056,0.6577045838348567,-0.40567872021347284,0.17037255642935634,-0.05185166001319885,-0.820615790784359,0.5322509435936809,-0.49134768126532435,0.377203447278589,-0.7411154084838927,-0.5286806751973927,0.4110097480006516,-0.6381982415914536,-0.8350056437775493,0.0846392959356308,0.556320168543607,-0.8062290977686644,0.8338087019510567,-0.39640798093751073,0.9773337016813457,-0.7266181679442525,-0.1292641367763281,0.31807373277843,0.8396457461640239,0.9665662157349288,-0.09596250345930457,-0.16087225219234824,0.09365173289552331,0.2755202301777899,0.603945265058428,-0.14559007994830608,0.26043009757995605,0.9293227787129581,0.3793112160637975,0.7404804057441652,0.5329781179316342,0.9450264773331583,0.15337043581530452,0.4649503258988261,-0.4421044043265283,-0.5917832576669753,0.6640318538993597,-0.735699640121311,0.04027005424723029,0.5871783220209181,-0.16994069889187813,0.047491900622844696,0.18289532978087664,-0.3648853893391788,-0.22054583439603448,-0.1875383611768484,0.14148679794743657,0.21198005182668567,0.9696516655385494,0.626103320159018,0.65621656505391,-0.4238058803603053,-0.30864332243800163,-0.4791796221397817,0.6286793500185013,0.32109790574759245,-0.8781907400116324,-0.9285171711817384,-0.3847751710563898,-0.21153108635917306,0.4693262306973338,0.8019082336686552,0.3884614766575396,0.14637163514271379,-0.051779364701360464,-0.3091430622152984,0.7176147690042853,0.34746229834854603,-0.8463938762433827,-0.5169527437537909,-0.7218592707067728,0.29440909205004573,-0.7725943489931524,-0.5567792132496834,-0.7346424404531717,0.1941893589682877,-0.7234672433696687,0.9458878352306783,0.6832185657694936,-0.2569715157151222,-0.0964790373109281,-0.12957306066527963,0.48489397671073675,0.42810218036174774,0.22587749361991882,-0.46426369436085224,-0.37914025550708175,0.5984159419313073,0.1405738340690732,-0.43301574047654867,-0.6503725042566657,0.5153642524965107,0.5857572229579091,-0.89802399976179,0.7181479325518012,-0.18066881969571114,0.6461072629317641,-0.9209763314574957,0.17347756633535028,0.7505801031365991,-0.4499634997919202,-0.55979128414765,-0.9040313954465091,0.7607770110480487,-0.5699223359115422,-0.021458070259541273,0.4918865426443517,-0.8281033704988658,-0.15781228384003043,-0.2773724873550236,-0.2584143760614097,0.5597351347096264,0.7398683885112405,0.39650551602244377,-0.3289203313179314,0.27486370876431465,0.36524484027177095,0.234252140391618,0.13843110762536526,0.45369724184274673,0.5100619662553072,-0.026550360023975372,-0.7674266691319644,-0.36017920821905136,0.9259735667146742,-0.4372349148616195,0.5861963075585663,-0.8864915808662772,-0.36558019230142236,-0.49313746439293027,0.1967238849028945,-0.7535265479236841,-0.4214965011924505,0.5160735002718866,0.08007067954167724,-0.7924608467146754,0.13884781766682863,0.6208775988779962,-0.40399630554020405,0.9979502893984318,0.35493933502584696,0.6220330740325153,0.03369327448308468,0.12717598490417004,-0.11876264354214072,-0.7754826750606298,0.5699195810593665,-0.7784071462228894,-0.14710690965875983,0.30479754554107785,0.011463355273008347,0.8773423377424479,-0.7319820439442992,0.45138272177428007,0.08038784563541412,-0.7979934103786945,0.9443720993585885,0.7160087777301669,-0.45954406214877963,-0.7956414367072284,-0.37090949481353164,-0.13270354410633445,0.4280272116884589,-0.7266875109635293,0.9823264461010695,0.3228550520725548,-0.336533413734287,-0.4151348122395575,-0.39248337829485536,-0.21451125713065267,0.3067950839176774,-0.4283051574602723,-0.890634979121387,-0.21200568228960037,0.3784565287642181,0.9266673680394888,0.664703072514385,-0.2315494786016643,-0.8311368841677904,-0.3002488538622856,-0.02921953611075878,-0.7699877717532218,0.6000969493761659,-0.5108039993792772,-0.3401749590411782,-0.27550972951576114,0.08004692057147622,0.3957616067491472,0.07021052995696664,0.5666744676418602,0.38468565698713064,0.22544559510424733,-0.7718202532269061,-0.2864346355199814,-0.9685808680951595,-0.043188776820898056,-0.5089913047850132,0.8833897686563432,-0.07761064963415265,0.5597865418531001,-0.7391855721361935,-0.13274675654247403,0.8646139395423234,0.23848804971203208,0.059914831537753344,-0.37685035401955247,-0.6333606103435159,0.06955685559660196,-0.6557395989075303,-0.46661337139084935,0.6244806884787977,0.44067265652120113,0.10997929517179728,-0.8232479421421885,-0.09739277232438326,-0.6870457325130701,-0.07253461191430688,0.8035401650704443,-0.979614719748497,-0.7690124618820846,-0.15050099417567253,-0.8264698297716677,0.9973238375969231,0.588012202642858,-0.4471803084015846,0.7160046328790486,0.23603492509573698,0.14978207321837544,0.20410466706380248,0.1689147176221013,-0.36367454286664724,0.7650551423430443,-0.4668287020176649,-0.15435116412118077,0.5144011238589883,-0.16639865888282657,-0.8138797031715512,-0.6302829068154097,0.9094475596211851,0.7498084516264498,0.2039610967040062,-0.4623181689530611,0.6866951575502753,0.3681901302188635,-0.8151368931867182,0.9389693508855999,-0.2171722324565053,0.835400165989995,-0.4859285866841674,0.21796923410147429,0.28512477735057473,0.7017110856249928,0.2906529032625258,-0.1399393416941166,-0.28546981466934085,0.28996213572099805,-0.2033285810612142,0.6396781476214528,-0.8111628997139633,0.31048155669122934,0.5793776595965028,-0.6373665393330157,-0.48277466325089335,-0.975648669525981,-0.2609041566029191,0.6955650518648326,0.9518845449201763,0.6453845631331205,-0.19773905351758003,0.2883148235268891,-0.752135525457561,-0.930268953088671,0.41438776161521673,-0.9405792374163866,0.28973145689815283,0.5996990357525647,-0.1627132212743163,0.05968092288821936,-0.5747023257426918,0.7491338173858821,-0.592942813411355,0.8866040138527751,0.4417246300727129,0.5885675330646336,0.2651151595637202,0.6215938399545848,-0.4316115095280111,-0.6569120963104069,-0.3413645694963634,-0.4613849646411836,0.454998929053545,0.11130781238898635,0.5549989589489996,-0.8683870532549918,0.5942822606302798,0.8980230488814414,-0.40971852093935013,-0.32182302651926875,-0.6489731026813388,0.39182063518092036,0.4160308591090143,0.8962931395508349,-0.8411020571365952,0.3239586125127971,-0.7838050979189575,0.18672960670664907,0.717955275438726,-0.6949397209100425,-0.9569869581609964,-0.19136154651641846,-0.3319551572203636,-0.5667800232768059,0.3119366215541959,0.10526172444224358,-0.28798577282577753,-0.31073536025360227,-0.3730237539857626,0.2756962673738599,-0.5435414360836148,-0.6366529762744904,-0.5390459066256881,-0.868235775269568,0.711577741894871,0.8140863901935518,-0.19348787423223257,-0.5745662418194115,0.9994516531005502,0.3412134703248739,-0.9844416324049234,-0.27738725300878286,0.7152709625661373,-0.037687679287046194,-0.9541111798025668,0.9135846220888197,0.3137856568209827,0.675552963744849,-0.34115599701181054,-0.5237379400059581,-0.716444902587682,0.5711547858081758,0.15879563288763165,0.1715943650342524,0.2778746262192726,-0.35743600269779563,0.8967190939001739,0.2082012053579092,-0.2727374164387584,0.5759636890143156,0.6587025974877179,-0.5998540399596095,-0.3973190546967089,-0.4021740173920989,0.20991957327350974,-0.5258842231705785,0.870369769167155,-0.19210626557469368,0.10662252409383655,-0.5966067314147949,0.5040019792504609,-0.894387767650187,-0.11797449830919504,-0.02503239968791604,-0.20026458613574505,0.7039132956415415,-0.7352971667423844,0.20427545486018062,0.4060572157613933,-0.6599771887995303,0.4503333796747029,0.5857480373233557,0.7866987576708198,0.3872982054017484,-0.7182288835756481,0.5217974074184895,0.29017871664837,-0.005693103652447462,0.36313728615641594,-0.3964619510807097,-0.6266952478326857,-0.3459522044286132,-0.9189025536179543,0.343955809250474,-0.5306957075372338,0.1052269134670496,0.05918568931519985,-0.5002186661586165,0.3910090890713036,-0.9540939098224044,-0.8735058563761413,-0.6783286584541202,-0.7708139903843403,0.8564012921415269,0.7359016961418092,-0.33543673157691956,0.37987855868414044,-0.2898420859128237,-0.41949325473979115,0.23782639810815454,0.4937412622384727,-0.7827139380387962,-0.5368806277401745,-0.5436267890036106,-0.31793933222070336,0.23264201823621988,0.923611281439662,-0.176233671605587,0.09889126196503639,0.005785818211734295,0.5075351274572313,-0.06458038417622447,-0.6779902162961662,-0.8453198047354817,0.6240069638006389,0.03630800498649478,0.13167132250964642,0.23278772691264749,0.7963806325569749,-0.55043525993824,0.3462093295529485,-0.5888544940389693,0.6358913341537118,-0.16806812584400177,-0.08989728428423405,-0.9247894957661629,-0.8460119464434683,-0.374680845066905,-0.3626694744452834,0.5256790388375521,0.5907531096599996,-0.8501519560813904,-0.8954422599636018,-0.1391898370347917,-0.8869905141182244,-0.3934171521104872,-0.014350248966366053,-0.9754168069921434,0.8627467332407832,-0.5712272603996098,-0.6436851909384131,-0.11047909455373883,0.8602735796011984,0.1861963951960206,-0.7609155750833452,0.23107576929032803,-0.6541498173028231,0.300226429477334,0.046316726598888636,0.022003937978297472,-0.5338783250190318,0.6110098855569959,-0.03151823207736015,-0.018877576105296612,-0.7291139615699649,-0.9890979002229869,-0.155904290266335,-0.821788517292589,-0.7720354646444321,-0.07000968605279922,0.024540824815630913,0.4275078494101763,-0.8200182402506471,0.19402774842455983,-0.21389982756227255,0.8107780558057129,-0.04279322782531381,-0.3402087427675724,-0.5981746790930629,0.04862519446760416,-0.1728766211308539,-0.272543054074049,0.6606180174276233,-0.1337730186060071,0.9287686422467232,0.7699676984921098,0.06234683282673359,-0.1363027193583548,-0.17373479437083006,-0.04283302230760455,-0.40500291949138045,0.8187512382864952,-0.17543613025918603,0.3186414008960128,-0.1815794720314443,0.9421334881335497,-0.8722924049943686,0.48049002373591065,-0.3949055220000446,-0.3871900965459645,0.7871536598540843,0.6699419035576284,-0.7969824629835784,-0.06503980187699199,-0.20324440067633986,0.437813735101372,0.10073203640058637,0.22585539380088449,0.6166752576828003,0.8456138912588358,-0.40174736687913537,0.6559044267050922,0.4209081237204373,0.7531802617013454,-0.21907802484929562,-0.07797948503866792,0.02952049160376191,-0.21768661215901375,0.4840488969348371,0.940302100032568,-0.9988662153482437,-0.5125512513332069,-0.9533810983411968,-0.6134317182004452,-0.05959005141630769,-0.6559695000760257,0.857093857601285,0.800771513953805,0.17986598005518317,-0.6128592002205551,-0.48394215386360884,-0.8497770666144788,0.8630632171407342,0.2892025699838996,-0.18804475292563438,0.5222805277444422,-0.36873122677206993,-0.22157225059345365,-0.9940656023100019,0.9971854537725449,-0.15988244023174047,0.21189176198095083,0.3725041141733527,0.08689474500715733,0.9886855874210596,0.33313391730189323,-0.39520936645567417,-0.035969619173556566,-0.07294447813183069,-0.5844273148104548,-0.026026553474366665,0.30074405763298273,-0.7876598797738552,0.44845148269087076,-0.5045202393084764,0.5632716030813754,0.2802364402450621,-0.3015727293677628,0.1546006607823074,-0.17849030811339617,0.07285755407065153,-0.26747125620022416,0.16948519879952073,-0.08821354294195771,-0.3686481690965593,-0.8853359590284526,-0.7642761231400073,0.22327662911266088,-0.09507241239771247,-0.824257277417928,-0.2565688914619386,-0.05340079264715314,-0.07293059350922704,0.14767094934359193,-0.7113748793490231,0.5559438182972372,0.9634855319745839,-0.7986247697845101,-0.03761534485965967,-0.2709982539527118,0.1097408989444375,-0.1887307963334024,-0.5172797231934965,-0.6524965823628008,-0.6111344951204956,0.3398214736953378,0.16444075759500265,-0.6113962009549141,0.118645288515836,-0.319389074575156,0.6402157228440046,-0.7309632557444274,0.6163831418380141,-0.11452098516747355,0.5996311926282942,0.9765434497967362,-0.8400097512640059,0.3597424477338791,-0.35992504516616464,-0.13793231546878815,-0.53067760867998,-0.08479948481544852,-0.5005986532196403,-0.9068537633866072,0.4616017327643931,0.1658034916035831,0.9683812232688069,-0.009886522777378559,0.29304848425090313,0.7338360310532153,-0.6775112967006862,-0.7523890151642263,-0.5353443659842014,-0.5925873569212854,-0.41364233288913965,0.9613767708651721,-0.16844350658357143,-0.2832698537968099,0.05317614087834954,0.6454682191833854,-0.8665932808071375,-0.2615439868532121,0.7352673038840294,-0.8702360452152789,0.41965512186288834,-0.18390503246337175,0.3880949690937996,0.5521350461058319,-0.35058271791785955,0.18795791314914823,-0.3592973127961159,-0.17117485124617815,0.7538414909504354,0.4344127820804715,0.7279412997886539,-0.5393108930438757,-0.5285286763682961,-0.6305133881978691,0.48060438549146056,-0.8111149352043867,0.09475601417943835,-0.6742431549355388,0.10569303994998336,-0.8713581692427397,0.2746599316596985,0.24432768998667598,-0.502497695852071,-0.6741255172528327,0.2880557491444051,-0.22509725857526064,-0.877844946924597,-0.9913435624912381,-0.029194872826337814,0.9955258304253221,-0.8993626772426069,0.8840050348080695,0.46060303691774607,0.7976954313926399,-0.060282682068645954,-0.09022084530442953,-0.08990804245695472,-0.7140212799422443,-0.16025369614362717,0.045839820988476276,-0.3162584397941828,-0.020553463138639927,-0.35639546485617757,-0.8330700267106295,-0.5013134987093508,-0.5383184980601072,0.1048153624869883,-0.4282882227562368,-0.33203887147828937,-0.5863641039468348,-0.2485543917864561,0.006631565745919943,0.11472606705501676,0.2187078120186925,-0.5981135745532811,0.5529789091087878,-0.29139391239732504,-0.9841219680383801,0.430759621784091,-0.163460164796561,0.5549083109945059,-0.03496696660295129,0.829489154741168,0.5907484963536263,0.675784396007657,-0.20837452402338386,-0.8613470480777323,-0.7588474447838962,-0.12037162994965911,-0.6469873962923884,-0.3088268176652491,0.7793643055483699,-0.5157734560780227,0.9899556450545788,0.4956102976575494,-0.19552995916455984,0.7876601596362889,-0.1928962399251759,-0.6115290746092796,0.8140165340155363,-0.9767748978920281,0.6088507543317974,-0.6575448643416166,-0.23913841834291816,-0.6367943151853979,0.22126582264900208,-0.822701252065599,-0.9566975045017898,0.34863358875736594,0.3158884886652231,-0.17364730965346098,-0.8163458900526166,-0.1918681664392352,0.6091157807968557,0.6607498382218182,0.24633929133415222,-0.03611281281337142,-0.20702684810385108,0.4896519030444324,-0.5879859225824475,0.16691006114706397,0.8111638128757477,-0.602649096865207,0.9346076170913875,0.8158148867078125,-0.19703363720327616,-0.9610562575981021,0.5050140148960054,-0.9983995156362653,0.3225124287419021,0.39006479689851403,-0.14320547692477703,-0.27389585180208087,0.6789019433781505,0.15441057505086064,-0.007486422546207905,-0.6027657547965646,0.9375255331397057,-0.28026096150279045,-0.2751392126083374,-0.28233221685513854,-0.680455126799643,0.3412203653715551,-0.2296466277912259,0.925728801637888,0.5562142529524863,-0.7148599065840244,0.05187128856778145,0.854722885414958,-0.5236579631455243,0.6395785911008716,0.32749875728040934,0.3115655640140176,-0.19235325511544943,0.688789376989007,-0.8600352420471609,-0.6910158516839147,-0.8190400335006416,-0.9445286463014781,0.13509698444977403,0.43478167708963156,-0.5976679036393762,-0.1782137998379767,0.2749994611367583,0.747057028580457,0.8249258194118738,-0.5740885338746011,-0.7684144526720047,-0.3356079808436334,-0.1657725111581385,0.7396033350378275,-0.22160474257543683,0.20126041024923325,-0.5476487479172647,0.29002974880859256,-0.8717589606530964,0.5115139577537775,-0.8261387310922146,-0.07626899564638734,-0.33935657097026706,0.08858666615560651,0.27739627845585346,0.05096036894246936,-0.8541789441369474,0.14816074818372726,-0.8010284546762705,-0.9610271388664842,0.8638392421416938,-0.36301340721547604,0.13975156284868717,0.6207339796237648,-0.1620345120318234,-0.46703353337943554,0.7514784932136536,-0.17622417537495494,-0.30744038382545114,0.8886880553327501,0.4549787286669016,-0.8154401639476418,-0.25765806436538696,-0.3728685169480741,-0.7519972268491983,-0.2086097188293934,0.1307827983982861,0.24107559910044074,0.4500099066644907,0.256987361703068,-0.03336062515154481,0.44223466282710433,-0.753115339204669,0.1596700786612928,0.38415385223925114,0.9326615072786808,0.253143894020468,0.6543157412670553,-0.6044580573216081,0.24689641827717423,0.21319518517702818,-0.9141465350985527,-0.15445695910602808,0.6707173688337207,0.7422942607663572,-0.07438204623758793,-0.8944750600494444,-0.4100104495882988,0.6303384089842439,-0.4680644986219704,0.8125724089331925,-0.09825465036556125,0.5514115807600319,0.3936228100210428,0.29195991763845086,0.6907837390899658,0.06297127669677138,-0.5760737736709416,0.21876397682353854,0.5413755187764764,0.511157882399857,-0.03774302778765559,0.20392415300011635,-0.20684645371511579,-0.510345883667469,0.2571475822478533,-0.40585800167173147,0.9030792010016739,-0.7717641252093017,-0.3777734418399632,0.8062524073757231,0.7279203152284026,-0.45768748922273517,-0.36267784144729376,-0.47876086039468646,-0.4153086068108678,0.6093108705244958,-0.5293716611340642,0.4604680403135717,0.3027631100267172,-0.7658242876641452,-0.8807949363254011,-0.7441508360207081,-0.31792641803622246,-0.6336793247610331,0.965808137319982,-0.9313718895427883,0.12419981835409999,-0.1291498146019876,0.5255190674215555,-0.8477231073193252,-0.9556918437592685,-0.9682104345411062,0.4654916562139988,0.12722695898264647,0.09591232240200043,0.7885613963007927,0.8575156321749091,0.038243718445301056,-0.7447418747469783,-0.761350997723639,-0.32698252238333225,-0.6816171025857329,0.01871647359803319,-0.03058108827099204,0.6895649149082601,0.6257744398899376,-0.4966839444823563,-0.45453221583738923,-0.45918381633237004,-0.5643879524432123,0.9647310860455036,0.49513951456174254,0.4369042697362602,-0.5411618291400373,-0.40573659632354975,0.08088401891291142,0.8022183808498085,0.7531496048904955,-0.043078258633613586,-0.4202796956524253,0.20589702343568206,0.07137306965887547,-0.015876135788857937,0.9094731132499874,-0.526572794187814,-0.5640879515558481,-0.8699765927158296,-0.8803084054961801,0.6420400780625641,-0.7991714528761804,0.955605246592313,0.6384630994871259,0.9775258488953114,0.05930528789758682,-0.03953526867553592,0.5937094488181174,0.17132663819938898,0.19306460628286004,0.3599657746963203,0.6357118343003094,0.36300446884706616,0.13397337310016155,-0.9023850853554904,-0.7749247550964355,-0.8464437895454466,0.3031090097501874,-0.03171169804409146,0.6312001049518585,-0.03366452315822244,0.6776837725192308,-0.9335728478617966,-0.39357444224879146,0.5535415089689195,0.6423516166396439,-0.8251009066589177,0.11603155266493559,-0.5075914328917861,-0.5537949041463435,-0.7885038340464234,-0.6506198029965162,-0.04558354802429676,0.978123945184052,-0.11186839966103435,0.4837176203727722,0.67343465751037,-0.7673256173729897,-0.8561660735867918,-0.3969914698973298,-0.09064561780542135,-0.1890073916874826,-0.19536918494850397,-0.03987429058179259,-0.016941712703555822,0.9460796457715333,0.5676730386912823,-0.7086797715164721,-0.8214767905883491,0.8055617893114686,-0.9658885183744133,-0.8467643060721457,-0.31066556088626385,-0.017768026795238256,-0.30701162200421095,0.94734564749524,-0.6116551398299634,0.04914674675092101,0.01721474900841713,-0.639036301523447,0.07537307078018785,0.05887855123728514,0.010039625689387321,-0.8283924632705748,-0.137450878508389,0.3789118342101574,-0.3488481151871383,0.589876632206142,0.09351654490455985,-0.0029769418761134148,-0.4157554367557168,-0.9127064244821668,-0.6179200112819672,-0.5511955870315433,0.6039390712976456,0.4022802487015724,0.49530385714024305,-0.144861223641783,-0.4505685013718903,-0.8918261486105621,0.5313172428868711,-0.18508230801671743,-0.9779833871871233,-0.2268096935003996,0.14109983062371612,0.09983870573341846,0.10353181604295969,0.4373383638449013,-0.5601206836290658,-0.448216509539634,-0.6246583517640829,0.6069775465875864,-0.21396436262875795,-0.5165980360470712,0.6249344749376178,0.385991923045367,0.4509637989103794,0.45300130685791373,-0.24771679565310478,-0.9053830271586776,-0.19070396572351456,0.44162149354815483,0.1793934595771134,-0.7087134807370603,0.04509457852691412,-0.8872606176882982,-0.6710678404197097,0.23482011537998915,0.18293194053694606,-0.8465872099623084,-0.666436601895839,-0.5643129274249077,0.5776036777533591,0.07261464511975646,-0.6594786085188389,0.4444748046807945,0.7682966697029769,-0.9550844016484916,0.43478649156168103,-0.534707625862211,0.5877964315004647,0.8277966291643679,0.6012766947969794,0.7860054760240018,0.7540872902609408,-0.5735772573389113,-0.5306259789504111,0.631093633826822,0.9670556257478893,-0.17727688141167164,-0.3788435538299382,0.11709983088076115,0.17652445938438177,-0.7263010423630476,-0.7652614442631602,-0.6536546563729644,0.7922948426567018,-0.003966012503951788,-0.02411011839285493,-0.35013809707015753,-0.22397132124751806,0.5147170536220074,0.3672137875109911,-0.24585474468767643,0.9808519990183413,0.5275776209309697,-0.7090217303484678,0.9757143827155232,-0.9235785533674061,0.4632654655724764,-0.42948893224820495,-0.21831172611564398,0.003219873644411564,-0.8782288050279021,-0.08639258751645684,0.3911719606257975,-0.2044791392982006,0.5580779421143234,-0.679360599257052,0.1921408073976636,0.33259314205497503,-0.17954408004879951,-0.3086796565912664,-0.8582736938260496,-0.2437965963035822,0.8184713181108236,0.22399228159338236,-0.8458362203091383,0.11500455625355244,0.06262036552652717,-0.34962586499750614,0.550553448498249,0.14866245863959193,0.08406261866912246,-0.11704985797405243,-0.031477711629122496,-0.335243702866137,-0.757952437736094,-0.18111641658470035,-0.028949697967618704,-0.21863471576943994,0.4631015621125698,-0.9040554193779826,0.3112195339053869,-0.77945461217314,0.2395700947381556,-0.10062310192734003,0.8757246839813888,0.9852795456536114,-0.6836854005232453,0.6868634326383471,0.6414285372011364,0.35165679128840566,-0.37497933534905314,-0.4217234277166426,-0.9380172784440219,0.9453230830840766,0.33374739764258265,0.5516771827824414,0.936940188985318,0.08989522513002157,0.44229813339188695,0.4670454254373908,0.9020521761849523,0.011507576797157526,0.9540855959057808,0.760073802433908,-0.19149619340896606,-0.5598844098858535,-0.4496138305403292,0.14109781943261623,0.7808328815735877,0.66973329288885,0.2831531963311136,0.5927579863928258,-0.5428750114515424,0.9127971474081278,-0.8749625878408551,-0.897914485540241,-0.22294893441721797,0.316152585670352,-0.4533455050550401,0.20831705257296562,-0.913100684992969,0.11361926002427936,0.93043521232903,-0.7262493963353336,0.9662820734083652,0.8204553495161235,0.6580882458947599,-0.4149810504168272,0.996564663015306,0.0025087003596127033,-0.7810725369490683,0.8570847287774086,0.7920476472936571,-0.5325272134505212,0.8815042870119214,-0.29126465134322643,0.7590386210940778,-0.7385059511289,0.3784045693464577,-0.8600361179560423,0.6353347469121218,0.4788429904729128,0.006980885751545429,-0.95278983656317,0.7602397119626403,-0.7754425029270351,0.8854561718180776,-0.6238667163997889,0.4098366699181497,-0.46280559385195374,0.21011833380907774,0.39331099903211,-0.8629248617216945,0.523997725918889,0.39405140466988087,-0.31057558581233025,-0.5371153661981225,0.09103964362293482,0.3009973596781492,0.24347322760149837,0.8622095789760351,-0.8215714013203979,-0.7032588571310043,-0.10060558188706636,-0.8031883505173028,0.2708519855514169,-0.40812277141958475,0.7573543139733374,-0.9985864427872002,-0.31521389074623585,-0.6047777417115867,0.6910360739566386,0.25207080971449614,-0.04484652495011687,0.1499836123548448,-0.2680445169098675,0.42474126862362027,-0.84476945316419,-0.3845082772895694,-0.9101291080005467,-0.025123088620603085,0.7464176965877414,0.23163849860429764,0.5913628153502941,0.5803379993885756,-0.40229111071676016,-0.6628650682978332,0.4006828395649791,0.710802836343646,-0.0030781440436840057,0.6794225815683603,0.2272178940474987,-0.6242795675061643,0.4188921423628926,0.5964605053886771,0.6326757026836276,-0.8234486524015665,0.9665387854911387,0.028174230828881264,0.6361302924342453,-0.39851558674126863,-0.004500593990087509,-0.952730746474117,0.5150833865627646,0.5574239115230739,-0.27335943654179573,0.14907810697332025,0.9801394594833255,-0.7043191799893975,0.3750384054146707,0.12619891064241529,-0.717346278950572,0.2753614499233663,0.7710792068392038,-0.37644309597089887,-0.5013688686303794,-0.407480466645211,-0.7011543428525329,0.21120285848155618,-0.788654156960547,-0.1406992794945836,0.06219051592051983,-0.971548137255013,0.303474597632885,-0.3147484348155558,-0.852109698113054,0.8831287231296301,0.9424160365015268,0.08525930903851986,-0.4340091678313911,-0.9447307055816054,-0.6708127516321838,-0.25576911913231015,0.19117867713794112,-0.17343396972864866,0.17776394309476018,0.02252484019845724,-0.6586534758098423,-0.2700670016929507,0.5570105812512338,0.4745596102438867,-0.22338945884257555,0.8157326565124094,-0.2840400221757591,-0.3951396783813834,-0.992663097102195,-0.701883286703378,-0.9974732180126011,-0.6722183879464865,0.27591165341436863,0.7817232240922749,-0.40223218128085136,-0.15315614454448223,0.49127745628356934,-0.11305769346654415,0.9008195786736906,-0.7830974101088941,0.6163888624869287,-0.8393181851133704,0.6139496532268822,0.07886774744838476,-0.5949393925257027,-0.9553488735109568,0.9943376313894987,-0.24999819602817297,0.8124182433821261,-0.2965923831798136,0.9442465454339981,0.9024121779948473,0.2712611434981227,-0.7331683170050383,-0.9758264026604593,0.8113000639714301,0.11852273903787136,-0.7536909757182002,-0.7870182674378157,-0.8325054263696074,-0.5800814717076719,0.3450627629645169,-0.7818205505609512,-0.08102886332198977,-0.1493455832824111,0.6624765126034617,-0.6709748758003116,0.19662950932979584,0.7118371604010463,-0.2600103700533509,0.567629505880177,-0.2259958190843463,-0.9441096466034651,0.8889505248516798,-0.8107056501321495,-0.21987101575359702,-0.29982614144682884,-0.7781249713152647,0.06304934481158853,0.5910747041925788,-0.5501784458756447,0.252045183442533,-0.30824308888986707,0.3817526241764426,0.09628896228969097,0.5925418599508703,0.46026858827099204,-0.8463974306359887,0.6011908873915672,0.4889253028668463,0.35475456761196256,-0.38672653771936893,-0.3092092494480312,-0.10891146073117852,-0.9615480303764343,-0.9211097443476319,0.12890290701761842,0.3245455417782068,0.1977135711349547,0.49334595119580626,-0.5912241968326271,0.2810716489329934,0.8674717540852726,-0.15446482738479972,-0.24801178136840463,-0.1713528516702354,0.8292804169468582,-0.13646290870383382,0.7887260164134204,-0.21666173823177814,0.49037898890674114,0.41435572132468224,0.9404491023160517,-0.15027594566345215,0.7924868571572006,-0.2075598631054163,-0.8886073408648372,-0.3821941399946809,0.6052467515692115,-0.5654277396388352,0.5449617644771934,0.1719948067329824,-0.7807358964346349,-0.15760282799601555,-0.02732166787609458,0.06018643965944648,-0.7277432614937425,-0.598874184768647,-0.9541140594519675,-0.6874324372038245,0.22583376802504063,-0.49462686805054545,0.04568689130246639,-0.23332896968349814,0.9857086990959942,0.8319393801502883,0.3747413530945778,0.4803421623073518,-0.5795408207923174,-0.040855768602341413,-0.09382544877007604,0.9810853265225887,-0.6908181766048074,-0.7300271918065846,0.14701616065576673,-0.5156318233348429,-0.0987642714753747,-0.6590343355201185,0.43790979450568557,-0.59390151174739,0.7195783811621368,-0.031497728545218706,-0.916866849642247,0.3403837410733104,0.1593841123394668,0.6987749608233571,-0.9669833155348897,0.9404399604536593,0.18487226171419024,-0.48624572716653347,0.016705546993762255,0.8940615840256214,-0.016417573671787977,-0.7503438103012741,-0.09879788011312485,0.3740810239687562,0.581603379920125,-0.002750250045210123,0.10886512883007526,0.8587175654247403,-0.005585395265370607,-0.4644381799735129,0.8354054815135896,0.0016727740876376629,0.575928702019155,0.06519768200814724,-0.40185105754062533,0.1541870255023241,-0.2610938651487231,0.11743839783594012,-0.07503474457189441,0.222290710080415,0.3047961350530386,-0.004926803521811962,-0.6014878903515637,0.19835249660536647,-0.09471574006602168,-0.16873550694435835,0.48820930486544967,-0.038866760209202766,-0.39689293410629034,-0.5881494912318885,-0.5202559526078403,0.08202143898233771,-0.11100309621542692,0.7864836566150188,-0.7929920232854784,-0.9217503755353391,-0.26857108529657125,0.4819928016513586,0.7808096250519156,0.24141726503148675,0.3672815803438425,0.5878306082449853,-0.1316320258192718,-0.3400385305285454,-0.27153615606948733,0.09381856257095933,-0.9378989762626588,0.9825206575915217,0.19878191128373146,0.8425731114111841,-0.06360924895852804,0.6465949439443648,-0.859250077046454,-0.03459965344518423,0.517727667465806,0.9297807109542191,0.38975339476019144,0.11471891263499856,-0.8969562067650259,0.6259936704300344,-0.4634106638841331,0.9646978257223964,-0.1407894236035645,0.45040210662409663,0.2728017386980355,0.2491187285631895,0.13914527045562863,0.6925850659608841,0.4878106922842562,0.9371511559002101,0.48048532009124756,0.7026575328782201,-0.03991040727123618,-0.28668975457549095,0.8600538615137339,-0.26525608263909817,0.8402567715384066,0.5406659012660384,-0.41248517483472824,0.5648387894034386,-0.5473229582421482,-0.7181368009187281,0.49263537069782615,-0.9944211253896356,0.7394741727039218,0.2734187450259924,-0.17826416343450546,-0.975951187312603,0.5951482835225761,0.1562873194925487,0.7020166059955955,0.4625835488550365,-0.31709493789821863,0.8315094509162009,0.11780046438798308,0.02284959377720952,0.3231141669675708,0.4269186556339264,0.5354819721542299,0.8534942073747516,-0.060160839930176735,-0.6546744764782488,-0.013463009148836136,-0.14668002724647522,0.07662166887894273,0.6225678729824722,-0.1430848352611065,-0.3011720175854862,0.1724103009328246,0.9966717306524515,-0.19340566685423255,-0.2165778037160635,-0.9550365321338177,0.319208447355777,0.5259152394719422,0.8513884111307561,0.8459837003611028,-0.05620920658111572,0.7412613993510604,0.05953059904277325,-0.5831755925901234,-0.5642987876199186,-0.11901327688246965,0.026507454458624125,-0.17455215333029628,0.43575612362474203,-0.0036859489046037197,0.3208915889263153,-0.7510642609559,0.42559665301814675,-0.8365189926698804,-0.3169535859487951,0.2126484694890678,0.32891999557614326,0.5018019396811724,0.10975981270894408,0.29654510552063584,-0.6417717132717371,0.7754213442094624,-0.07102390797808766,0.5490979989990592,0.11776224290952086,0.5635185744613409,-0.5028820899315178,-0.4987396877259016,-0.771484621334821,0.043489235918968916,-0.2915687817148864,-0.8994904863648117,-0.4397605531848967,0.9517622804269195,-0.18573202285915613,0.9579118713736534,-0.3253282941877842,0.1964860325679183,-0.7117421948350966,-0.2824566774070263,-0.8308150065131485,0.6531956470571458,0.14696695655584335,-0.5534667307510972,-0.2933453465811908,0.6356649189256132,-0.7428725208155811,0.12837928859516978,0.246569590177387,-0.22878027241677046,0.5356002231128514,0.7717186040244997,-0.7333646398037672,-0.894680448807776,-0.9243463203310966,-0.3600431187078357,-0.7552892370149493,0.3922645072452724,-0.7022985550574958,0.7281541079282761,-0.8498544916510582,0.5489974641241133,0.6706161317415535,0.491887082811445,0.7329909997060895,-0.9043625360354781,0.7244823970831931,0.37044196482747793,-0.9682801254093647,0.7041388093493879,-0.2797242975793779,-0.9762595221400261,0.1629464807920158,-0.9074274529702961,0.9147160546854138,0.44325847551226616,-0.14761120593175292,0.06780398357659578,0.3390017282217741,0.5190532929264009,-0.44703183975070715,0.1942728436551988,-0.46013296162709594,-0.1221295720897615,-0.8685172591358423,0.5780219221487641,-0.4791666530072689,-0.9553973227739334,0.7817703559994698,0.4967410112731159,0.601604389026761,0.6708386559039354,-0.8370841322466731,-0.42243023915216327,-0.5838419152423739,0.1806423873640597,-0.16980867739766836,-0.8070693071931601,0.5903499429114163,-0.9577550333924592,0.9441550932824612,0.09907711669802666,0.8116631344892085,0.4818029119633138,0.8154361275956035,0.43902344536036253,-0.3732177307829261,0.04363871179521084,0.5351493158377707,0.26846220437437296,-0.5646354001946747,-0.11774751264601946,0.6222242712974548,0.10347714833915234,0.9299705345183611,0.7771905185654759,-0.8242221539840102,0.27201912086457014,0.06270261807367206,-0.29973503528162837,-0.6801089299842715,-0.24790165713056922,0.5557871330529451,-0.8077600975520909,-0.7490516565740108,0.48074056673794985,0.5704876738600433,0.696306683588773,-0.5096203722059727,-0.46337402286008,0.527557066641748,-0.47776719694957137,0.901482998393476,-0.09639960015192628,0.8178818011656404,-0.13142497511580586,0.6459073578007519,-0.6901265471242368,0.6550419316627085,-0.8996742842718959,0.5995707656256855,0.7949758735485375,0.09319882094860077,0.04072352359071374,0.04670793330296874,-0.7347897966392338,0.2579744989052415,0.5043262662366033,0.4973422917537391,0.9580730558373034,-0.04748193081468344,-0.737883822992444,-0.3819362740032375,0.7891204655170441,-0.7866881843656301,-0.030063606332987547,-0.9265740821138024,0.16338942060247064,0.32708280347287655,0.1301788822747767,-0.37890589982271194,0.20798421511426568,0.22785817552357912,0.5179799702018499,0.6456625694409013,-0.21301583014428616,-0.5073109180666506,0.5373876099474728,0.6811816105619073,0.17312685446813703,0.7167190969921649,-0.9169783205725253,-0.2214326853863895,0.11332844523712993,-0.323545322753489,-0.22562179574742913,-0.0706372270360589,-0.2120044967159629,-0.7587403017096221,0.6883704294450581,-0.44224549224600196,-0.9951613200828433,-0.6316500692628324,0.9305695360526443,0.6043010875582695,-0.021507549565285444,-0.8349159001372755,0.17668488342314959,-0.15728782955557108,0.32301355665549636,-0.750457915943116,0.9680564408190548,-0.7843941329047084,-0.7176300133578479,0.6440715161152184,-0.8431796366348863,0.34106997214257717,-0.6954043260775506,-0.564574830699712,-0.14708145475015044,0.18380896328017116,0.02945263171568513,-0.6618320024572313,-0.9852787349373102,-0.7867546575143933,0.3834341294132173,-0.4154030396603048,-0.854251129552722,-0.2897201469168067,-0.8526987135410309,0.29406737769022584,-0.21952097909525037,0.44956194143742323,-0.7415744070895016,0.4619309180416167,0.9725025100633502,-0.9718338800594211,-0.8258003666996956,-0.8428259817883372,-0.566013221628964,-0.29389176052063704,0.96935507748276,0.9854336734861135,0.4954870636574924,-0.7948818854056299,-0.08706597657874227,0.4368423572741449,0.21064028423279524,-0.5076276026666164,0.7476493823342025,-0.9189772857353091,-0.7329130633734167,-0.13238124223425984,-0.5665395031683147,-0.009768886025995016,-0.4523702710866928,0.004746663849800825,-0.6949041048064828,0.5946452924981713,-0.8003158369101584,-0.7219495717436075,0.5754672992043197,0.09270385466516018,0.5379856554791331,-0.33136009704321623,0.35539229679852724,-0.9510341794230044,0.21309206588193774,0.6714361696504056,-0.42084826761856675,0.35354444244876504,0.7714938251301646,0.37536090705543756,-0.5873242588713765,-0.07682556053623557,0.0855597835034132,0.29792651860043406,0.3038999489508569,0.3693623077124357,0.5678390776738524,-0.35355435544624925,0.5101554589346051,-0.02394301863387227,0.11717627570033073,-0.17991854110732675,-0.049125398974865675,-0.42792014172300696,-0.9573645540513098,0.15411097323521972,-0.1535873026587069,0.6186572900041938,-0.3603410725481808,0.37896300572901964,-0.5785991130396724,-0.1824714532122016,-0.2702195639722049,-0.2904957882128656,0.13482152251526713,-0.06818453408777714,-0.8146440801210701,0.3760750098153949,-0.26059948559850454,-0.012450760696083307,-0.9919910654425621,-0.5019249254837632,0.623109451495111,0.7676026853732765,0.7589545119553804,-0.04418581631034613,0.2794603849761188,0.34135398967191577,-0.11945353867486119,-0.5223514260724187,-0.399481029715389,-0.8507880824618042,-0.0980023080483079,0.36302690487354994,-0.2581888362765312,-0.520342486910522,0.5208684694953263,0.38197315437719226,-0.010870921891182661,-0.9702306687831879,0.9125580117106438,-0.15381029527634382,0.7486263872124255,-0.23653670959174633,-0.19507021084427834,-0.14584541833028197,0.6555883232504129,0.8122417009435594,0.7621715841814876,-0.3178166067227721,-0.74848568206653,0.39630952337756753,-0.16214172262698412,-0.7858244925737381,-0.2702415492385626,0.12803385313600302,-0.06102009490132332,-0.8377597061917186,0.08994340663775802,0.9547525276429951,0.6157901701517403,0.943633605260402,-0.8315002783201635,-0.41049602115526795,-0.6783864935860038,-0.13722870824858546,0.3025575033389032,-0.3580389036796987,-0.6097786664031446,-0.2943269507959485,-0.5047951112501323,0.5175068564713001,0.9246090231463313,0.32260624086484313,-0.9015006413683295,0.7633488639257848,-0.9893098813481629,0.04501476278528571,0.8622555886395276,-0.6832936122082174,-0.028412821236997843,-0.4879346936941147,0.4260479062795639,-0.03916659113019705,-0.3625580011866987,0.2644591610878706,0.9735493306070566,0.7881020763888955,-0.08946678461506963,0.7862033848650753,0.4970420910976827,0.29178485414013267,-0.6453862772323191,0.2312333290465176,0.9936101683415473,-0.7449835916049778,0.44333137944340706,0.20038734376430511,-0.5426151300780475,0.2140029319562018,0.6773440218530595,-0.34390387311577797,0.7442260105162859,-0.014412245247513056,0.9772722814232111,-0.3112071184441447,-0.5755875329487026,-0.6236584247089922,0.7402207278646529,0.4283193601295352,0.2464736746624112,0.21610460337251425,-0.9207816235721111,0.4955639634281397,0.32723118737339973,-0.16653806809335947,0.4480210184119642,0.040660972241312265,0.8412137678824365,-0.7930712238885462,0.2646645838394761,0.684341985732317,0.94727375311777,0.54830979462713,-0.9400664209388196,-0.9926690757274628,-0.09824608778581023,-0.03639770671725273,-0.4180250349454582,-0.9692017869092524,-0.8272515111602843,0.7727247849106789,-0.3966979347169399,0.26334596145898104,-0.8456354970112443,-0.30281129106879234,-0.3183592823334038,-0.06240811850875616,0.5441408851183951,0.730687496252358,0.2708923611789942,0.48803759878501296,-0.5886828545480967,0.4224819070659578,-0.11969109578058124,0.5407897541299462,-0.7761259046383202,-0.15076478105038404,0.569085699506104,-0.4238294973038137,-0.42037764796987176,0.5986158195883036,0.9385983040556312,-0.8911412600427866,0.3483677855692804,0.6392774390988052,0.8879012726247311,-0.44601156329736114,0.8301001461222768,0.48513889871537685,-0.02038130909204483,0.1551470784470439,0.3445500102825463,0.7551680952310562,-0.26036227168515325,-0.008089021313935518,0.781804149504751,0.6242060787044466,0.22899042489007115,-0.812721717171371,0.8414888996630907,0.7146779741160572,0.05838596075773239,0.5654562902636826,-0.7099198093637824,-0.8382235481403768,0.43713584123179317,-0.08107340196147561,-0.9091585269197822,0.4895951892249286,-0.8758976035751402,0.11092780344188213,-0.668059007730335,0.43244423577561975,0.7452411106787622,-0.17277591302990913,-0.44113114895299077,0.022989917546510696,-0.9212987092323601,0.09688332956284285,-0.5731929582543671,-0.6538950833491981,0.18950862810015678,-0.039354815147817135,0.12406447995454073,0.975128561258316,0.9922629301436245,-0.20483387261629105,0.42693270137533545,-0.549001089297235,-0.15447513572871685,-0.5432439618743956,-0.17887388309463859,-0.9678808432072401,0.21822851989418268,0.15540916612371802,0.05598997510969639,-0.5844647190533578,-0.07732916297391057,0.3471103613264859,-0.08531320840120316,-0.1781583116389811,-0.9381940304301679,-0.317256738897413,-0.8535291748121381,-0.6112760952673852,-0.8255780176259577,-0.5217907913029194,-0.5791769628413022,0.807386102154851,-0.7382548553869128,-0.7956578484736383,0.9470336195081472,0.7069120802916586,0.4664850179105997,-0.07526068994775414,0.2638048678636551,-0.5415509971790016,0.6180993709713221,0.287147946190089,-0.6330693364143372,0.2972745322622359,0.1489364760927856,-0.4087199494242668,0.19664627686142921,-0.01796602737158537,-0.618770569562912,-0.8157544904388487,0.5772788720205426,0.7847883231006563,0.9210842777974904,-0.805507920216769,0.2523118909448385,-0.5556245371699333,-0.4903556490316987,-0.1310717430897057,-0.976547222584486,0.8782993322238326,0.2861552075482905,0.8415475143119693,-0.46526797814294696,-0.3137388378381729,-0.8739168783649802,0.574258831795305,0.6099398955702782,-0.8437699861824512,-0.5764374886639416,0.5610539764165878,0.502784725278616,0.3830082551576197,-0.6322180218994617,0.79312739148736,0.8848861809819937,-0.19757474400103092,0.7759423064999282,0.8591845473274589,0.9788968153297901,-0.8915475346148014,-0.6683479128405452,-0.8620643126778305,0.19784159259870648,0.883034207392484,-0.9948780233971775,-0.8938622921705246,-0.1200200142338872,-0.577287491876632,-0.80718207731843,0.85158746317029,0.12837256444618106,-0.5361581589095294,-0.7425440261140466,0.9151157643646002,-0.5067086452618241,0.13826424069702625,0.12208417942747474,-0.3521595965139568,0.6892766701057553,-0.32421896513551474,0.36903655575588346,0.5403556167148054,-0.08856842061504722,0.1232362873852253,0.6522603817284107,0.3271022462286055,0.381853801663965,-0.6750752492807806,0.20798985986039042,-0.7160213431343436,-0.13265435118228197,-0.9342576977796853,-0.7914306172169745,-0.5226792609319091,-0.08954993169754744,0.05868451902642846,0.2077171616256237,0.36351999873295426,0.11648646835237741,-0.014230071566998959,-0.9384837080724537,0.2620554966852069,-0.042423530481755733,0.053787045646458864,0.07656296482309699,-0.117393690161407,0.3349426635541022,0.687636508140713,-0.1594067350961268,0.3888935847207904,0.7738307160325348,0.5486716451123357,0.7150240014307201,0.6712067341431975,0.12154334085062146,-0.05589711619541049,-0.7572458037175238,0.896074335090816,-0.3207822721451521,-0.4334453041665256,0.09180269902572036,0.588126712013036,-0.22119887359440327,0.265846133697778,0.7511354642920196,0.6104958802461624,0.07456468138843775,-0.40071712201461196,0.10046134190633893,0.22613155422732234,-0.9133130107074976,0.669220102019608,0.12058434588834643,-0.7685596700757742,0.8160836263559759,-0.014962412416934967,-0.696175757329911,0.06118461582809687,-0.9090441493317485,-0.29168898006901145,-0.8339167139492929,0.6080197594128549,-0.446703284047544,0.17747911857441068,-0.33744173496961594,0.3287735288031399,-0.5936290803365409,-0.9253337965346873,-0.39978356193751097,0.08762876223772764,0.4174269619397819,-0.8515799548476934,0.4819029117934406,-0.6362870167940855,-0.5664033638313413,-0.8118784832768142,0.2052864758297801,-0.4498937907628715,-0.5250490554608405,0.5100882919505239,-0.92567033553496,-0.8777382266707718,0.14733632607385516,0.8081164597533643,0.7257115277461708,-0.7479215892963111,0.015273918863385916,-0.47046585381031036,0.8250890458002687,0.3115387107245624,-0.34128107549622655,0.4684784011915326,-0.2213036003522575,0.11043709283694625,0.8216808224096894,-0.7685348689556122,0.23206523526459932,-0.04778591822832823,-0.39958456763997674,-0.2633042591623962,-0.7780315671116114,0.5006167329847813,0.462365438695997,0.4964929814450443,-0.660069324541837,-0.21703395061194897,0.7685145456343889,-0.5318412203341722,0.49250848731026053,-0.549925145227462,0.7224044995382428,0.1518246354535222,-0.08710033539682627,0.14864021306857467,-0.7829785742796957,-0.0021376535296440125,-0.4189647906459868,0.07908285222947598,0.2910583605989814,-0.03228373872116208,-0.7977296523749828,0.34825366362929344,0.2785270409658551,-0.11920837964862585,0.16665078653022647,0.9674945138394833,-0.6768095199950039,-0.3496102369390428,0.8817786066792905,-0.8467503217980266,-0.14726149011403322,-0.23480509454384446,-0.5345993065275252,0.8054180108010769,-0.504669344983995,-0.3424986070021987,0.4414283777587116,0.0025254725478589535,-0.9250820800662041,0.051097439136356115,0.6883758567273617,0.925103715620935,0.6902929521165788,0.5307742902077734,-0.7373437187634408,-0.29929932951927185,0.9683558880351484,0.9524092953652143,0.7355789672583342,-0.4008016767911613,0.38227252988144755,0.9513616464100778,-0.8543053357861936,-0.3150995369069278,-0.7307799221016467,-0.6574123278260231,0.6347823333926499,0.5728968810290098,0.6484948513098061,-0.3803401393815875,0.4146301718428731,-0.0812963517382741,-0.6925068721175194,-0.18143611727282405,0.017602616921067238,0.9853038541041315,0.296321926638484,0.7857141713611782,0.5018069883808494,-0.055636269971728325,-0.07288447907194495,0.23645462654531002,0.012821971904486418,0.13234558934345841,-0.45422647381201386,0.1031268504448235,0.04470807686448097,0.5723512512631714,0.6198531435802579,-0.12373568583279848,0.4896016656421125,-0.9169344110414386,-0.688726996537298,0.9559112624265254,-0.07606539269909263,0.9471406079828739,0.6527547081932425,-0.09994303109124303,0.6535819894634187,-0.9629900236614048,0.6067544352263212,0.1683965278789401,0.40083046490326524,0.9163291291333735,-0.26561581110581756,-0.04565726779401302,-0.6701758946292102,-0.2889583567157388,-0.1848357981070876,-0.5772393550723791,-0.8323520850390196,0.021905491594225168,0.4755503870546818,-0.5718996934592724,0.718951559625566,0.703528381884098,0.20853640418499708,-0.36721615586429834,0.9304045680910349,0.9589380049146712,0.15261668805032969,-0.38748063519597054,0.467567534185946,0.8357650493271649,-0.060939437709748745,-0.21259219804778695,0.7002323004417121,0.6641760389320552,0.06890279240906239,0.07264085998758674,0.2511641290038824,-0.8878251146525145,-0.06047035614028573,0.26744217751547694,-0.7880067396908998,-0.4360312889330089,0.11983589734882116,-0.007342584431171417,-0.5508855204097927,0.9711121660657227,0.46585274673998356,0.6773166218772531,-0.40792572824284434,0.0692017818801105,-0.16281315498054028,-0.2008837596513331,-0.1083960048854351,0.27410692162811756,0.3725452986545861,-0.9547830778174102,-0.23618109291419387,-0.8860668311826885,0.49552912125363946,0.3684633090160787,0.04327772092074156,-0.13687038281932473,0.8207452399656177,0.2851066845469177,-0.8158812168985605,-0.029527194797992706,-0.31895100977271795,0.192516531329602,-0.6942281741648912,-0.8923133057542145,-0.6840392500162125,-0.28608366334810853,0.26661186339333653,0.6731350026093423,0.37443129858002067,-0.3440342880785465,0.9163845875300467,0.13936171401292086,0.939790278673172,0.35467891627922654,-0.8390866885893047,0.43895554495975375,-0.8500541965477169,-0.29750525252893567,0.749209722969681,-0.8286767108365893,0.35489226737990975,-0.8978356807492673,-0.5317727290093899,0.653135915286839,0.35713741555809975,0.6004685265943408,-0.09127063676714897,-0.3638264061883092,-0.5261806533671916,0.42528022173792124,0.2106981142424047,-0.3368578623048961,0.7658713920973241,-0.1920860167592764,-0.26086911791935563,-0.13591675693169236,0.007681745570152998,-0.49621045403182507,0.18781738821417093,-0.6032089898362756,-0.31509186420589685,-0.24531076336279511,0.029849269427359104,-0.2063749497756362,0.15296447230502963,-0.6872434220276773,0.2261345856823027,0.2690088548697531,-0.5852300799451768,0.626206292770803,-0.03379998356103897,-0.3626782507635653,-0.45550772501155734,0.7557588559575379,-0.21013044053688645,-0.3129965770058334,-0.093057697173208,0.39703752798959613,-0.42226928286254406,-0.8659061561338603,-0.0736048873513937,0.6298985215835273,0.07745092688128352,0.6926076104864478,-0.7176482775248587,0.5133145600557327,-0.9536183974705637,-0.7196663403883576,-0.5857132878154516,0.9449618887156248,-0.7880555926822126,0.5968092768453062,0.008112179581075907,0.9651484754867852,-0.21573959523811936,0.5602784026414156,0.5558073460124433,-0.26431969925761223,-0.8745111515745521,-0.4128575618378818,-0.01914240140467882,0.9459348022937775,0.059907193295657635,0.8568942192941904,-0.8540733242407441,0.9394953651353717,-0.14023672742769122,-0.6293389284983277,-0.4211155427619815,0.005719858221709728,0.561997874174267,0.8414518609642982,0.568332398775965,-0.09038718231022358,-0.026136808563023806,0.3304787827655673,0.30710975732654333,-0.828535424079746,-0.4857369465753436,0.6853318903595209,0.9350048485212028,-0.2273527248762548,-0.6283477088436484,0.4560116049833596,0.6122980089858174,-0.7795180957764387,0.8543923464603722,-0.9413653500378132,-0.3253993554972112,-0.6699687405489385,0.8153924127109349,-0.8099410170689225,0.17299640364944935,-0.8616025308147073,-0.7622500266879797,-0.23033218691125512,0.011510149110108614,-0.6270864554680884,0.7169956741854548,-0.826897241640836,0.9443447641097009,0.9490947937592864,0.6995257516391575,-0.2041058260947466,0.4506022143177688,-0.9781319601461291,-0.1546510080806911,0.9849162073805928,0.7117304280400276,0.2517417441122234,0.13629344245418906,0.6049618544057012,-0.013269720133394003,-0.03730603912845254,0.852479743771255,-0.9452796326950192,-0.8333209636621177,-0.837577598169446,-0.09343258244916797,0.26950256060808897,-0.6072662947699428,-0.5476568955928087,0.6916593131609261,0.49177243188023567,-0.29427262116223574,0.16915539791807532,0.027172768488526344,0.923373035620898,-0.9044552091509104,0.8605699138715863,0.47932233987376094,-0.3201993959955871,0.3288153768517077,-0.7660345146432519,0.054651327431201935,-0.33329664869233966,0.4590075179003179,-0.6519856108352542,0.7971906601451337,0.6060816934332252,0.29941515903919935,0.13992548221722245,0.10332724126055837,-0.1349735907278955,0.21067145140841603,-0.7898061531595886,-0.3473319080658257,-0.2918153563514352,0.44164285948500037,-0.680042615160346,0.9254613262601197,-0.40402392391115427,0.3210745081305504,0.3747729817405343,0.08341441955417395,0.45359730906784534,-0.8392698094248772,-0.783924896735698,0.16314319847151637,-0.48866752348840237,0.19673083443194628,-0.14428934128955007,-0.5716766198165715,-0.12266767770051956,-0.13714942429214716,-0.3541931617073715,-0.44992817658931017,-0.12491432996466756,0.8810411528684199,0.3092875122092664,-0.3819209928624332,0.557287831325084,-0.6753015946596861,-0.904717116151005,-0.7557530961930752,0.8839074708521366,-0.5248970952816308,0.7541546514257789,0.2819683374837041,-0.3363623134791851,-0.1452513006515801,0.6441026106476784,0.41030318662524223,0.003195695113390684,-0.721362963784486,0.28203452471643686,-0.054818404372781515,-0.682120272424072,0.1837579752318561,0.26739471266046166,0.4358676094561815,0.5676653999835253,0.26528088795021176,-0.2144219339825213,-0.765559135004878,0.8181941541843116,-0.4895188747905195,-0.5640862011350691,0.3574532810598612,0.48126946948468685,0.05039117904379964,-0.3954186998307705,-0.6956066899001598,-0.6143060559406877,0.31402854388579726,-0.9434635536745191,0.8762825485318899,-0.5154214780777693,-0.6984806694090366,-0.06353634037077427,-0.3601081050001085,0.10787284187972546,-0.6054656896740198,0.3010142417624593,0.8245547688566148,0.3762004906311631,0.7480063163675368,-0.3426280478015542,-0.2159033576026559,0.1496746363118291,-0.21444363333284855,0.14981995755806565,0.3265541666187346,-0.5938659952953458,0.8553922972641885,-0.6025328869000077,0.9955669525079429,-0.002403317019343376,-0.9749645069241524,-0.6166878663934767,-0.2912633861415088,0.15953158913180232,-0.15723396139219403,0.5098419361747801,0.5838414146564901,-0.7306597093120217,0.6003167252056301,-0.057005171198397875,-0.9069771110080183,-0.741958359722048,-0.4246123619377613,-0.2409825623035431,0.8852211819030344,-0.17691683862358332,0.743501796387136,0.7066212436184287,-0.9604565752670169,0.17476139264181256,-0.03684737253934145,0.6096427128650248,-0.5408806526102126,-0.14242142345756292,0.4431037646718323,-0.8553294148296118,0.15153681812807918,-0.8991867550648749,0.08225168427452445,0.2121523772366345,-0.8199742268770933,0.3654170613735914,-0.5477599259465933,-0.23952359054237604,0.9632729031145573,0.7536450871266425,-0.8317344137467444,0.21608852967619896,0.9160346202552319,-0.890630267560482,-0.018349016550928354,0.8364601451903582,-0.4203580114990473,-0.30858868220821023,0.7651228345930576,0.20514279790222645,-0.7675265339203179,-0.5939535866491497,0.443306443747133,0.6273401249200106,-0.7691905181854963,0.04598465980961919,0.8129666661843657,0.2540714154019952,0.09058062732219696,0.3632166958414018,0.3824970521964133,0.20381772937253118,-0.38504543295130134,-0.7361460067331791,-0.405910762026906,0.2546010264195502,0.24025565339252353,-0.6700874953530729,-0.46551512321457267,-0.5535902222618461,-0.26478206645697355,-0.04095179680734873,-0.5640308954752982,-0.7475295546464622,0.8594606840051711,-0.5305620273575187,-0.5569125209003687,-0.36555313179269433,-0.8925396865233779,-0.9736938457936049,0.9266220391727984,0.8907604133710265,0.19054906349629164,-0.29234352661296725,0.5893328604288399,-0.21568164555355906,0.406279060523957,-0.9314159341156483,0.4010698781348765,0.35891758976504207,0.06990951532498002,0.25853536697104573,0.5476471022702754,0.8071601395495236,-0.6924399682320654,0.7976137856021523,0.03478688281029463,-0.27710231579840183,0.7876995564438403,0.9498095610179007,-0.8520317319780588,0.34034682298079133,-0.15379317477345467,-0.6148277041502297,0.7390314941294491,0.07337460294365883,-0.7857968313619494,0.14898014720529318,-0.15589921176433563,0.9084605891257524,0.08962063817307353,-0.44468281138688326,-0.5995587958022952,-0.5316126858815551,0.9511804883368313,-0.9950644783675671,0.17205372918397188,-0.48392862221226096,0.7925534867681563,-0.16901505505666137,0.8992491192184389,0.9381824061274529,0.890519677195698,-0.5235344264656305,-0.026952608488500118,-0.20753153646364808,-0.5176049661822617,-0.362926097586751,-0.9920056988485157,0.46547700138762593,0.8322677435353398,-0.39433589298278093,0.027909476310014725,-0.22199742263182998,-0.16806735703721642,-0.30152689991518855,-0.16581747541204095,0.2440183931030333,0.479555815923959,0.9357293751090765,0.13964742003008723,-0.8709500967524946,-0.9679397689178586,-0.9072097507305443,0.5430392790585756,-0.009054721798747778,0.030410035513341427,0.7364909457974136,0.6998123419471085,-0.503699797205627,0.439388164319098,0.5581869957968593,0.9680666257627308,0.4162518694065511,0.5495325964875519,0.5539931086823344,-0.763311414513737,-0.15449505392462015,-0.7087056660093367,0.7798418230377138,-0.03857114491984248,0.7541184076108038,0.3551827045157552,-0.5516813397407532,-0.9600916649214923,0.41746035777032375,0.20284682093188167,0.05885847145691514,0.8993136929348111,-0.3298090440221131,0.4188434244133532,0.23928983602672815,-0.5957485768012702,0.3445690870285034,-0.16706284135580063,-0.960610756650567,0.9304317943751812,-0.9061454976908863,0.2775850812904537,-0.7155625461600721,0.17018132470548153,-0.48550309939309955,-0.769431249704212,0.32102081133052707,-0.3884661588817835,-0.9618720398284495,-0.8579796203412116,-0.5833503785543144,-0.9332770355977118,-0.47021496621891856,-0.22939468547701836,0.7382385493256152,-0.8347050929442048,0.7374588050879538,0.7595522371120751,-0.11660878732800484,-0.2516588009893894,-0.8897405755706131,-0.8165356260724366,0.9636629442684352,0.0950974770821631,-0.057746234349906445,1.0907649993896484e-05,0.9806589167565107,0.09424523450434208,-0.8162820879369974,0.32834332156926394,-0.31076955841854215,0.3981951461173594,-0.7465880569070578,0.027920997235924006,0.9434541375376284,-0.6666248524561524,0.9423136687837541,0.7158550079911947,0.389558894559741,0.3788802847266197,0.2806146638467908,0.37989459186792374,-0.9549425588920712,-0.008906065486371517,0.9374730181880295,-0.6367146633565426,0.5543509260751307,0.04271890874952078,-0.06829736614599824,0.8118223915807903,0.47553757950663567,0.44966233940795064,0.2754698940552771,-0.7424313486553729,0.5883356272242963,-0.9617483466863632,-0.9661941058002412,0.5046872678212821,-0.40317974984645844,-0.005208916962146759,0.15803537517786026,-0.26640347950160503,0.6829833555966616,-0.4345222944393754,-0.5387827544473112,-0.8825811711139977,0.028417061548680067,-0.9754914259538054,-0.49911909317597747,-0.7150767897255719,0.6893223617225885,-0.28578850300982594,0.61429781652987,-0.806845382321626,0.09914771979674697,0.29964654007926583,-0.23126391135156155,0.7791959904134274,-0.00031220633536577225,0.4830719023011625,-0.8725393712520599,0.5607737521640956,0.8743732697330415,0.28896081959828734,0.40343286050483584,0.013706783298403025,0.9944943077862263,0.513184605166316,-0.686924624722451,-0.716508686542511,-0.7678102995269,0.8251647306606174,-0.2904206309467554,-0.48990275571122766,-0.8988035591319203,-0.7689559855498374,0.17997849406674504,-0.8139058649539948,0.725342349614948,0.2722572023048997,-0.8150525060482323,0.26354657020419836,-0.5883781122975051,-0.6868754178285599,-0.10951959993690252,-0.0959566361270845,0.580386124085635,0.23245465755462646,-0.2732019340619445,0.37213812256231904,0.5967218340374529,0.21264140447601676,0.06283178040757775,-0.56960594560951,-0.027481083758175373,-0.2517262455075979,0.08297688886523247,0.0804420867934823,0.4357754122465849,0.8623322723433375,-0.650151401758194,-0.5236476231366396,0.22727567050606012,-0.08090500673279166,-0.5695208045653999,0.3154830923303962,0.43865210143849254,0.6991157229058444,0.5877736858092248,-0.04049647133797407,-0.3134067105129361,-0.24698737263679504,-0.6882418836466968,-0.6700900965370238,0.9736992968246341,-0.1410051267594099,-0.0781264933757484,0.5408602626994252,0.036730336491018534,0.9198698149994016,0.4536232021637261,0.37371171498671174,-0.09916061023250222,-0.8185062161646783,0.20045993383973837,-0.36833322141319513,-0.12982861464843154,0.16665203170850873,0.43841180857270956,0.36036345828324556,-0.1619454058818519,-0.6038005505688488,-0.5359292044304311,0.582042399328202,-0.33480538707226515,0.5433770730160177,0.2580336285755038,-0.276681340765208,-0.8457074649631977,-0.5764452191069722,-0.9360886118374765,-0.9564221822656691,0.33079705061390996,-0.28059678990393877,0.03935077507048845,0.6486178343184292,-0.2801111489534378,-0.3757842658087611,0.7578899511136115,0.3065273412503302,0.4223076840862632,-0.37747918581590056,0.7431176439858973,0.5174082643352449,0.7983232452534139,0.7377534336410463,-0.13726320443674922,0.753924444783479,0.18915290897712111,0.8381757251918316,-0.9843362770043314,0.6585116563364863,0.7858425043523312,-0.7973424368537962,0.4206264400854707,0.9421250792220235,0.6747897355817258,-0.24368653120473027,-0.26022801036015153,-0.02696876833215356,-0.5467359717004001,-0.003029151353985071,-0.3654786651022732,-0.32710151746869087,-0.3413539784960449,0.661079153418541,0.22266674740239978,0.5189872579649091,-0.3776502823457122,-0.6106549762189388,0.6820367421023548,-0.19432750437408686,-0.29621432442218065,0.002869885880500078,0.7145083737559617,-0.9829160906374454,0.4088364280760288,0.4018792621791363,0.031177773606032133,0.45792908780276775,-0.6632626638747752,-0.97338981134817,-0.49004407972097397,-0.5214274604804814,-0.5434092283248901,-0.4619142562150955,-0.7208498478867114,-0.5014617200940847,0.9608853091485798,-0.025715221650898457,0.6751032490283251,-0.3139066072180867,-0.19105085264891386,0.7969455625861883,-0.9474573219195008,0.7729262397624552,0.3539281543344259,0.5197335509583354,-0.20503715332597494,-0.6915222778916359,0.0641229092143476,-0.6838084082119167,0.33834406500682235,0.6770377340726554,-0.22593363700434566,0.9172111502848566,0.9346452131867409,-0.07447368185967207,-0.9591211867518723,0.07565667806193233,-0.923293808940798,0.6243096068501472,-0.27276806998997927,-0.8516736477613449,0.4645345057360828,-0.09528208710253239,-0.4991388809867203,-0.2796862809918821,-0.24679595325142145,-0.3017081436701119,0.4092570482753217,0.8652023859322071,0.8559531481005251,0.7787436596117914,0.8566197296604514,0.0934833837673068,-0.07082918845117092,0.45335362339392304,0.3764274278655648,-0.6223311186768115,0.6179577382281423,0.937277196906507,0.9486913494765759,-0.5643581603653729,0.18806059379130602,0.6219379957765341,0.13532612705603242,-0.5824739648960531,-0.020410792902112007,0.03539414331316948,0.916216108482331,0.07499502785503864,0.9844130319543183,-0.2992317886091769,0.9752535042352974,0.07085942570120096,-0.1562986494973302,0.0172020741738379,-0.9566124328412116,0.5138860582374036,-0.27253473410382867,-0.9648981560021639,-0.9760510949417949,-0.6790956482291222,-0.475645300000906,0.9929784936830401,-0.6404211507178843,-0.8885849365033209,0.6835899371653795,0.7958440007641912,0.15113048208877444,-0.5415225573815405,0.27145449072122574,0.45706689916551113,0.7858467986807227,-0.7093437407165766,-0.8406739146448672,-0.33214789908379316,0.4433424682356417,0.38183411629870534,-0.5105639412067831,-0.412335405126214,0.7798679978586733,-0.20331990392878652,0.5172496689483523,-0.28737613605335355,-0.14998968411237001,-0.20477087469771504,-0.23278653156012297,-0.027917948085814714,0.07742045633494854,0.4704885990358889,0.2218246879056096,0.21623361203819513,-0.8287304225377738,0.3677299772389233,0.22485606279224157,0.4441443192772567,-0.8443583222106099,-0.5590771082788706,0.6361098648048937,-0.9900686554610729,-0.755658183246851,0.04838414629921317,0.5258095082826912,0.37741534877568483,-0.49163689464330673,-0.2701741778291762,-0.8313683811575174,0.5762358456850052,0.1667260336689651,0.7317158156074584,-0.8295140657573938,0.6954466132447124,-0.04806392453610897,-0.2767076510936022,0.6189447310753167,-0.16283431323245168,-0.36552575416862965,-0.030594348907470703,0.7673309785313904,-0.7252715709619224,-0.15210891095921397,0.5179249099455774,0.8215927630662918,-0.7039953744970262,-0.7941633299924433,0.7173470305278897,-0.30069817369803786,-0.5047353385016322,-0.7671856447122991,0.14566029328852892,-0.27922135638073087,0.8246209104545414,0.921634423546493,-0.20905426004901528,0.5657509621232748,-0.5973393716849387,0.43530493369325995,-0.3986044805496931,0.4180583073757589,-0.5573160275816917,-0.037315227556973696,-0.012930301949381828,0.8519545132294297,-0.5370686752721667,0.220252753701061,-0.715707830619067,0.4794012578204274,-0.37287194188684225,-0.400287376716733,0.5200165598653257,0.8445024867542088,0.746093540918082,0.8109353464096785,-0.5387535826303065,0.49436052655801177,0.9946176302619278,0.16793871764093637,0.3339284756220877,-0.6052635083906353,-0.6275244359858334,0.6520816972479224,-0.1823372347280383,0.23539972491562366,0.8884169366210699,-0.9165189769119024,-0.7279443657025695,-0.46264176489785314,0.263881110586226,-0.30415905918926,0.8042820026166737,-0.9363579507917166,-0.018188238609582186,0.15668043354526162,0.700901014264673,-0.3154529696330428,0.5152932615019381,0.09339632093906403,-0.7716129147447646,0.3694010362960398,-0.18909204984083772,0.05760800139978528,-0.23366311565041542,-0.08776959218084812,-0.7314057433977723,0.6042777984403074,-0.29848865792155266,0.6609829729422927,0.423634328879416,0.43788988422602415,-0.9250125521793962,-0.5903084189631045,0.9181308844126761,-0.07397175626829267,0.5203135055489838,0.2780656307004392,-0.329585918225348,-0.9093034090474248,-0.3006604667752981,0.42808678839355707,-0.9883122397586703,-0.9153396058827639,0.2712961728684604,0.9172938838601112,0.34860869497060776,0.7811835100874305,-0.6818283130414784,0.0188518688082695,-0.4213543548248708,-0.3455212856642902,-0.4290948072448373,0.16210575215518475,0.8381648696959019,0.7052301056683064,0.2139301486313343,-0.9575636084191501,-0.1394150466658175,0.2831775355152786,0.2505633248947561,0.9549753186292946,0.6171830608509481,-0.645176472608,-0.22348122717812657,0.802176583558321,0.631346708163619,-0.7343597286380827,-0.7045763288624585,0.2860002531670034,-0.8216171055100858,-0.34299782337620854,-0.21419617719948292,0.8333095666021109,0.0685130232013762,-0.4609788525849581,0.8784209033474326,0.3614476602524519,-0.9947705809026957,0.7922110785730183,-0.9644429893232882,0.9794933684170246,0.18770359735935926,-0.06500958744436502,-0.8724118345417082,0.8790967017412186,-0.9747692937962711,-0.8959774528630078,-0.7877105190418661,-0.8033310584723949,0.9385316506959498,-0.6530977985821664,0.23955671908333898,-0.9329061270691454,0.14772358955815434,0.5472018579021096,0.21141608012840152,0.5968442182056606,-0.697961192112416,0.043243950698524714,0.40791964950039983,-0.7142294561490417,-0.7192748785018921,-0.34900203440338373,-0.3008648199029267,0.5055510262027383,-0.04260535957291722,-0.3432164881378412,0.7520945640280843,-0.5733905378729105,-0.9062274992465973,-0.614287375472486,0.5443401974625885,0.03143671387806535,-0.53646608768031,-0.33730439515784383,0.17421805346384645,0.45105790020897985,-0.9993479843251407,-0.559383878018707,0.47835533414036036,0.5920806732028723,0.8483700957149267,0.65105921914801,0.16390350693836808,-0.842540177050978,-0.0036907889880239964,-0.1810239627957344,0.07883517490699887,0.45705256098881364,-0.23913358617573977,-0.9700404950417578,0.5718933348543942,0.0779339880682528,-0.35534575395286083,0.24381079897284508,0.3191761113703251,0.419480562210083,-0.9141303664073348,-0.13263211445882916,-0.4391232654452324,-0.18767513195052743,0.23952000867575407,-0.4193163081072271,-0.5489263492636383,-0.6516254208981991,0.5893807555548847,0.15170997753739357,0.8793128500692546,-0.6211065221577883,0.1597411590628326,-0.5142282242886722,0.9676414662972093,-0.6409202637150884,0.8291958230547607,0.1527332658879459,-0.4879591981880367,0.6780745894648135,-0.29733599489554763,-0.7831230000592768,-0.6488826954737306,0.19284566957503557,0.18746106140315533,-0.20693234400823712,0.7686425182037055,0.4534111712127924,-0.3389967633411288,-0.1994781200774014,-0.3885851977393031,-0.08421677676960826,0.45137972105294466,0.4648069883696735,0.1517476332373917,0.9778489856980741,-0.8669729614630342,-0.11931006098166108,-0.5275286110118032,0.8082863376475871,0.03923865035176277,0.03602987062186003,0.3338323603384197,-0.9753603925928473,-0.525101977866143,-0.9431705316528678,-0.5766606442630291,-0.23927054973319173,0.7501422665081918,0.6669375468045473,-0.9793943399563432,-0.6859891475178301,0.350940459407866,-0.2433860320597887,0.13227954087778926,0.7018468934111297,0.12127942917868495,-0.9673107760027051,-0.4836734444834292,-0.9031340591609478,-0.6755707864649594,-0.4348864653147757,0.8978372951969504,0.432351834140718,0.42387437354773283,0.3769336133264005,-0.00599855137988925,0.28633266082033515,0.21882632886990905,-0.5181091395206749,0.2728248513303697,0.6721951104700565,-0.30477810092270374,0.12478780513629317,-0.7443166803568602,0.17609988246113062,-0.045478211250156164,0.6989560201764107,0.2906836261972785,0.16482811467722058,-0.02652476029470563,0.7658059210516512,-0.6082127913832664,0.583114595618099,0.29541013529524207,-0.1332869459874928,0.27437276439741254,-0.434859411790967,-0.4612055206671357,-0.8833443196490407,-0.4843490105122328,0.3831278048455715,0.9660902377218008,0.950456346385181,-0.595943755004555,0.7366636404767632,-0.5458762706257403,-0.33451425516977906,0.402830493170768,-0.5775029179640114,0.6699223103933036,0.8004935467615724,-0.6878937408328056,-0.8542408188804984,-0.11564188916236162,-0.9453664720058441,0.452024906873703,-0.7104955529794097,0.2164794155396521,-0.3744776966050267,-0.12588688032701612,-0.356550982221961,0.3575749252922833,-0.8092948691919446,0.7683394863270223,0.2326987599954009,-0.16941153397783637,0.13406214257702231,0.9901997833512723,0.7873337627388537,0.48293804144486785,0.40663838014006615,0.5777327097021043,0.12632781639695168,-0.821018795017153,0.704722513910383,0.5942830028943717,-0.2529029785655439,-0.932673376519233,-0.5773598114028573,-0.7305959477089345,0.4939311626367271,0.18702130299061537,-0.9206400471739471,0.6844685175456107,0.9301474876701832,-0.5543300588615239,0.9009051406756043,-0.23462641332298517,0.8094356013461947,0.6883025667630136,-0.1555862333625555,-0.2483143717981875,0.4839727426879108,0.2519731307402253,-0.22419586777687073,-0.009811089839786291,0.8321435041725636,0.15683664800599217,-0.18211684422567487,-0.015458941459655762,-0.8439896535128355,0.1865667118690908,0.12752382550388575,-0.7319727879948914,-0.6524691083468497,0.7048228969797492,-0.4974716273136437,-0.867669187951833,0.9074901635758579,0.12798193795606494,0.08508130814880133,-0.9572874782606959,0.8200496635399759,-0.07443668367341161,-0.28810134856030345,-0.3684006682597101,0.0542656104080379,-0.20056001283228397,0.09761955263093114,-0.2779500363394618,-0.35497293481603265,0.5317651419900358,0.16883684508502483,0.3052022787742317,-0.045649370178580284,-0.0704123848117888,0.22015262162312865,0.006290491204708815,-0.976079739164561,0.793967452365905,0.42034155083820224,0.6321852495893836,0.2318320143967867,-0.8654052936471999,-0.08883833885192871,-0.37741326121613383,0.9107812456786633,-0.7927552871406078,-0.8471581460908055,0.5715905069373548,-0.08393303630873561,-0.880866018589586,-0.8547754283063114,0.8962163268588483,-0.9704765789210796,0.9979607714340091,-0.5602181507274508,-0.6390339243225753,-0.2387014632113278,0.24460599478334188,-0.6443615681491792,-0.20210854895412922,-0.4147953181527555,-0.9947436759248376,0.08693054784089327,-0.9999307910911739,-0.3703823247924447,-0.9007562566548586,0.8641624203883111,-0.41523961070925,0.38700421107932925,0.5806027795188129,0.7724903915077448,0.13794116955250502,-0.0761754740960896,0.23666214896366,-0.5224802861921489,0.05948568042367697,-0.23719646409153938,0.7825058223679662,0.4445848474279046,0.7068208935670555,0.7024247422814369,-0.6104103340767324,0.24569355556741357,0.7009880617260933,-0.07032384490594268,0.6219520648010075,-0.6775175738148391,0.8733632126823068,-0.5897315200418234,0.018991910852491856,0.5522661302238703,-0.3822655356489122,-0.6089278873987496,-0.6484494772739708,0.977398119866848,0.3577459640800953,0.12000003550201654,0.4862788808532059,-0.8725418341346085,-0.6612699287943542,0.2072744220495224,-0.2663852977566421,-0.2465740884654224,0.568804666865617,0.5297335279174149,0.8456421946175396,0.042065834160894156,-0.41079980973154306,-0.6658499836921692,-0.6270376862958074,0.18132517114281654,0.599214831367135,0.34578131791204214,-0.60879724053666,-0.451426278334111,-0.24868930224329233,-0.9449294377118349,0.33854023599997163,0.35610563261434436,-0.34550491673871875,-0.5014618234708905,-0.3242177623324096,-0.17779980320483446,0.46020441642031074,-0.06809485424309969,-0.5988924158737063,0.9589493982493877,0.4048910546116531,0.5424833027645946,0.751877702306956,-0.5638351119123399,0.05310426838696003,0.6386860511265695,0.9128130748867989,-0.15355825843289495,0.2430952130816877,-0.21812917944043875,0.6909896726720035,-0.01231913035735488,0.6975532281212509,-0.8461094521917403,0.5424274536781013,-0.9704599911347032,0.10893200011923909,-0.03830533288419247,-0.8426396762952209,0.42984992219135165,0.4182841437868774,0.3713560551404953,0.5976043129339814,0.413103218190372,-0.3565484695136547,0.021364650689065456,-0.84683519275859,0.2690693219192326,-0.8733415575698018,-0.9974526455625892,-0.21199864335358143,-0.37580829160287976,-0.2605666285380721,0.12312706001102924,-0.09682880714535713,0.30021892907097936,0.46008672937750816,0.9943483392708004,0.13217604300007224,0.22752168821170926,-0.7451304756104946,-0.6777188726700842,0.43438994185999036,0.36255438392981887,0.6643765661865473,0.9335730099119246,-0.0833274251781404,0.5482100625522435,0.020198975689709187,0.2472410020418465,-0.7125520831905305,0.6239076587371528,0.6870731259696186,0.4190132669173181,-0.1374238133430481,0.5158194275572896,0.8434762544929981,-0.8052350883372128,0.4180626035667956,0.9077659598551691,0.577932387124747,-0.0719950683414936,0.6123568932525814,0.351746438536793,0.6255333172157407,0.7978036450222135,0.09439424891024828,-0.5394085408188403,-0.6771716359071434,-0.9428604310378432,-0.6397239491343498,-0.17265446856617928,0.9233841537497938,0.7571903541684151,0.08391244523227215,0.3098024232313037,-0.42478890204802155,-0.45800400618463755,-0.17899089166894555,0.8450951902195811,0.40939922304823995,-0.11857517762109637,0.3751000352203846,0.4723079646937549,-0.6321877394802868,0.6225812458433211,0.5923211015760899,-0.022670548409223557,0.3596187811344862,0.09036591881886125,-0.9178426312282681,0.5915273674763739,0.9748506620526314,-0.2593521634116769,-0.44063869304955006,-0.7888253787532449,0.9971015322953463,-0.5666932831518352,0.9092009030282497,-0.9125675479881465,-0.454063022043556,-0.3921747924759984,0.9505900144577026,-0.9867663532495499,0.9645513631403446,0.3102604001760483,-0.11773791024461389,0.20083001535385847,-0.4836817616596818,0.8211678685620427,-0.5054174908436835,0.5784751754254103,-0.41677672788500786,-0.7941804910078645,-0.06064793327823281,-0.7795581412501633,-0.6447157892398536,-0.8059074622578919,-0.2409764532931149,0.2349446644075215,-0.41383242793381214,-0.35125678731128573,-0.40236966125667095,0.517081880941987,-0.5932921399362385,-0.5170829305425286,0.06432363577187061,0.4573245537467301,-0.6023418591357768,0.42055754782631993,0.9965666509233415,0.345068481285125,-0.28404645482078195,-0.8533863853663206,0.5850055124610662,0.09455649461597204,0.9384259204380214,-0.6609821561723948,0.6206526048481464,0.8171359514817595,-0.5352861415594816,-0.21574029326438904,-0.7371588423848152,-0.29983575688675046,-0.8163309651426971,0.9178185001946986,-0.5491138780489564,0.11902558291330934,0.5115629676729441,-0.32386563438922167,-0.1901812651194632,-0.17169918259605765,-0.32910711597651243,0.8273241259157658,0.7834082189947367,0.9704444380477071,-0.7919121878221631,-0.14546874165534973,0.019077721517533064,-0.04536698618903756,-0.4542073691263795,0.6938458820804954,0.040301882196217775,0.10267953434959054,0.5017567863687873,0.8930806168355048,0.4418964860960841,0.06749663548544049,0.9522285778075457,0.9625729937106371,-0.22854341240599751,-0.7164942836388946,-0.18142220005393028,0.6822655885480344,0.15237768273800611,0.2752589890733361,0.3643564530648291,0.801446333527565,-0.34979687817394733,0.46590421767905354,0.6437736628577113,-0.16134428698569536,-0.7098130672238767,-0.8700884529389441,0.5407244404777884,-0.6985764550045133,0.7925765067338943,-0.9609370757825673,-0.7668898445554078,-0.7656681896187365,0.9478894881904125,-0.6774537032470107,-0.5218363981693983,0.3642811942845583,-0.14666583249345422,0.05299212597310543,-0.054640029557049274,0.2521208608523011,0.7567051970399916,-0.823884220328182,-0.8052284833975136,0.6310903308913112,-0.27688639471307397,-0.012732133269309998,0.3959886743687093,-0.3884330145083368,0.2923913379199803,0.7425177609547973,0.4352981229312718,0.661367645021528,-0.7059229947626591,-0.6023426409810781,-0.8113314448855817,0.0907401000149548,0.07398393284529448,0.3304704325273633,-0.5389098925516009,0.9522956223227084,0.3840900263749063,-0.1783411568030715,-0.6330734393559396,-0.31294914009049535,-0.6353593501262367,0.9274726849980652,0.5811423710547388,0.16191320773214102,-0.8863052572123706,0.34960944997146726,0.4528760686516762,-0.40257447212934494,-0.8032196359708905,0.812174394261092,-0.7406779904849827,-0.21587019599974155,0.3562337667681277,0.3395912731066346,0.9771594293415546,0.6922768079675734,-0.6847955896519125,0.4081128602847457,-0.7727083726786077,-0.5813605678267777,-0.13333260547369719,-0.2315778681077063,0.9526899009943008,-0.9057538211345673,-0.4285362367518246,-0.2860630238428712,-0.13648528326302767,0.7749110031872988,0.648880522698164,0.36160742212086916,-0.6975646154023707,-0.06429151352494955,-0.9480877527967095,-0.5904902685433626,-0.7066449737176299,0.7093274430371821,0.16193040879443288,-0.21011385461315513,-0.43181331316009164,-0.4035310484468937,0.6655129711143672,-0.5027586314827204,-0.20060246484354138,0.00912474561482668,0.6433268506079912,-0.8842338598333299,0.947270629927516,-0.007197950500994921,-0.6500065033324063,0.820015886798501,-0.8681322098709643,-0.6833365326747298,0.44552540220320225,0.1285858736373484,0.38215891970321536,-0.5221694675274193,0.24252425879240036,-0.06606429163366556,0.8111769934184849,-0.565963517408818,0.6613392033614218,-0.011302322149276733,-0.5833612135611475,-0.3326719501055777,0.7523884824477136,-0.1290598725900054,-0.6228545303456485,0.2392727336846292,-0.6871298924088478,-0.08241827599704266,-0.14142047986388206,0.15541286999359727,-0.14446631725877523,-0.9450567997992039,0.8382173641584814,0.47727190516889095,0.2399157085455954,0.413905365858227,-0.524685712531209,0.27868773275986314,0.8317804499529302,-0.1708271182142198,0.04571634158492088,-0.7506328038871288,0.2830461566336453,-0.5238212291151285,0.6206944864243269,0.037775281351059675,-0.16238799691200256,0.3293949686922133,-0.07193291699513793,-0.26637136191129684,-0.287208188790828,0.13167965086176991,-0.32596738496795297,0.10941666923463345,-0.7776585845276713,-0.1936056506820023,0.9921141630038619,0.30767568526789546,-0.400433034170419,-0.4448600448668003,0.4012571959756315,-0.790388707537204,0.85213564010337,0.37196423299610615,0.16021300479769707,0.01653053192421794,0.7180075030773878,0.09271114971488714,-0.7353257429786026,0.9727430981583893,0.8523534224368632,0.4019913263618946,0.512076769489795,0.13300172286108136,-0.23301743483170867,0.5471067340113223,0.21564390789717436,0.4068563706241548,0.06326067307963967,0.18123354203999043,0.8838125057518482,0.4880004245787859,0.9312668414786458,-0.9825871773064137,-0.27418567333370447,-0.7259490033611655,0.513601329177618,-0.8035643645562232,0.24644726421684027,-0.8277594377286732,0.7421882725320756,0.32697342289611697,0.38546797074377537,-0.941936457529664,-0.6862345528788865,0.012146016582846642,0.3366969102062285,0.5685010068118572,-0.2970734825357795,0.7143145995214581,-0.8357766657136381,-0.7694530836306512,-0.12656819680705667,-0.5799933392554522,-0.20036482624709606,-0.41263390611857176,-0.142067804466933,-0.3794931396842003,-0.5308758085593581,-0.6814048923552036,0.4610437247902155,-0.510772149078548,-0.7357683815062046,-0.8899976368993521,0.255975634790957,-0.9859755709767342,-0.4363771849311888,0.7813997669145465,0.3328369092196226,0.4942299798130989,-0.4444801863282919,0.7968786037527025,-0.9780938648618758,0.4140815776772797,0.16960206534713507,-0.2183341351337731,-0.8607420306652784,-0.36767361406236887,-0.8487611711025238,0.8321968712843955,0.4924550778232515,-0.8647383884526789,0.9673178219236434,-0.05180444894358516,0.22932192590087652,0.7583624487742782,-0.24323316290974617,0.6717883618548512,-0.986681155860424,-0.7311771521344781,-0.5500603439286351,-0.8043684377335012,-0.31356082344427705,0.2136567602865398,0.6285860249772668,0.40706033585593104,0.3273565750569105,0.8267343710176647,-0.017430543433874846,-0.9792547533288598,0.5692580533213913,0.7160022710449994,-0.6533927721902728,0.28059338172897696,0.8738294369541109,-0.8618895304389298,-0.5064312540926039,0.9929335871711373,0.28857156494632363,-0.28489076206460595,-0.5126353898085654,0.9338829247280955,-0.6712561259046197,0.6095566540025175,-0.856799699831754,0.2031030859798193,-0.628199779894203,0.7870969958603382,0.3574176672846079,0.8427253854461014,0.03792510088533163,-0.9625500896945596,0.5221685538999736,0.30063942819833755,0.9838454555720091,-0.7320417072623968,0.24330242816358805,-0.9997784392908216,-0.6926339883357286,0.7853516447357833,-0.5367391188628972,0.44945438392460346,0.4400670253671706,-0.9651011931709945,0.24422049662098289,0.7798437741585076,-0.5400347663089633,0.2823050091974437,0.629199686460197,0.6223910199478269,-0.9630809663794935,0.19477225467562675,0.5491518289782107,0.5173417846672237,-0.5079205734655261,-0.7959138127043843,-0.26577212009578943,0.5417506881058216,-0.3228022255934775,-0.6764261834323406,0.24487173650413752,-0.33554676501080394,0.33260861225426197,0.9149145497940481,-0.29998336965218186,0.39369388157501817,0.7516689663752913,0.5232029259204865,0.12155987787991762,0.21872778329998255,-0.41384606063365936,0.8573760888539255,0.6954266186803579,-0.44422953901812434,0.20674025965854526,0.4997817291878164,0.22654962446540594,-0.3325297897681594,0.7142935777083039,0.07966989884153008,0.1143911830149591,-0.9947126903571188,-0.025652206502854824,0.9691916201263666,0.4928988548927009,0.22211690619587898,0.21360373124480247,0.24479868588969111,0.7001253585331142,-0.4301740135997534,-0.4481722158379853,-0.9312819042243063,-0.23259009374305606,-0.3681777846068144,0.3169633080251515,0.45869194716215134,0.7168348641134799,-0.6913044448010623,-0.20912943314760923,0.897714754100889,-0.22126928204670548,0.3181657544337213,0.9600526914000511,-0.40137642016634345,0.7502079247497022,0.3851046795025468,-0.13070113118737936,-0.9874411313794553,0.15416750079020858,-0.7767003793269396,-0.06647037295624614,-0.3755561779253185,0.7054526037536561,0.5045661316253245,-0.6146795270033181,0.8464693613350391,-0.5273386095650494,-0.20296069607138634,0.5655997968278825,0.9157830835320055,0.43552306992933154,0.9629333913326263,-0.9954001093283296,-0.37091233395040035,-0.4163352809846401,-0.7037935270927846,0.1918045859783888,-0.04294514376670122,0.12757388269528747,0.9598364466801286,0.3265071320347488,-0.6198918782174587,0.07674277666956186,0.5838561356067657,-0.3664502101019025,0.32156268833205104,0.5033795298077166,0.913758484646678,0.17194323427975178,0.3501285524107516,0.39998823776841164,-0.24485711613669991,-0.23764620535075665,0.7692593396641314,0.9823921620845795,0.25090284273028374,0.6850390071049333,-0.5290497625246644,-0.8195656244643033,0.1726787481456995,0.9290577741339803,0.30650902865454555,0.7585816853679717,-0.5316920033656061,0.2553191427141428,-0.05203099688515067,-0.5926790861412883,0.00990043394267559,0.6387711269780993,-0.5630031246691942,-0.3171339617110789,0.9935110220685601,0.534905273001641,0.5667038848623633,-0.5859870496205986,0.3824087344110012,-0.9716854966245592,-0.06485053477808833,-0.8885985319502652,0.865748587064445,-0.7977667222730815,-0.6250614924356341,-0.525011298712343,0.24723098753020167,0.9102095537818968,-0.572787263430655,0.7930514579638839,-0.726623700466007,0.8278808379545808,0.7824365571141243,0.45577658526599407,-0.39078898541629314,0.09847898269072175,0.10538834473118186,0.263073053676635,0.16273160045966506,-0.037946696393191814,0.5056530316360295,-0.7429029392078519,-0.8499233718030155,-0.9859851053915918,-0.27518220944330096,0.8167033926583827,-0.4432976674288511,0.8028939515352249,-0.27291538240388036,-0.44093677308410406,-0.19834533194079995,-0.8100203922949731,-0.9040330103598535,0.8917683172039688,-0.04205509228631854,0.6214518854394555,0.49875222565606236,-0.7746506077237427,-0.9519062004983425,0.9774467805400491,-0.31476103886961937,-0.8523691794835031,0.6997592058032751,-0.34825511230155826,-0.32140300469473004,-0.09202150627970695,-0.8586648250930011,-0.24779408751055598,-0.18077682005241513,0.5308972117491066,-0.5839118249714375,-0.5401561479084194,-0.519595209043473,0.5813409993425012,-0.6866174386814237,0.4011652753688395,-0.6635007099248469,0.4264622633345425,0.09346116986125708,-0.37637758580967784,0.9720972361974418,0.5323317400179803,-0.906669398304075,-0.4197184909135103,0.003245239146053791,-0.05884710839018226,-0.7261451035737991,-0.5441959714516997,0.7969326600432396,0.9250050820410252,-0.37115349993109703,-0.32185535365715623,-0.6808275892399251,0.34415109315887094,0.922927281819284,0.21275267517194152,0.5939703369513154,0.6675113439559937,0.7096036332659423,-0.5079706576652825,0.3465166101232171,0.6137011987157166,-0.5348213971592486,0.12589360168203712,-0.7327364827506244,0.6735910614952445,0.4338455516844988,-0.32970686675980687,0.42954378854483366,0.8257852899841964,-0.5944265695288777,0.9754441562108696,0.4791461396962404,-0.2618305245414376,-0.29860324831679463,-0.2555901659652591,0.7361908839084208,-0.8939210954122245,-0.6921415920369327,0.7506244098767638,-0.6084532462991774,0.05647470522671938,0.5774551350623369,0.771553541533649,0.5398855381645262,-0.07605366548523307,0.08076495118439198,0.6158596137538552,-0.8195441104471684,0.28194219106808305,0.8496068073436618,0.07478777226060629,0.35869617387652397,-0.18184887990355492,0.8695085877552629,0.7197361462749541,0.11541561828926206,0.5757213681936264,0.07765324646607041,-0.30690106889232993,0.3580209854990244,-0.1321917180903256,0.050206538289785385,-0.9730504592880607,-0.39763419050723314,0.22272714599967003,0.6874601179733872,0.31555513106286526,-0.12448616372421384,0.47066520573571324,0.5822348245419562,0.11724382918328047,-0.07415997982025146,-0.985228112898767,-0.13775499165058136,0.8824928561225533,-0.8446233631111681,-0.7267151912674308,-0.3228464028798044,-0.8930074465461075,-0.5688291722908616,-0.6157210683450103,-0.440989522729069,-0.36519089015200734,0.5521179609932005,-0.6335000419057906,-0.43541853688657284,0.746660172007978,-0.6230533220805228,0.09645633958280087,0.5784603790380061,0.761744492687285,-0.6337232543155551,0.6761986184865236,-0.33039204915985465,0.1982519761659205,-0.13115521101281047,-0.5113762635737658,0.0696423458866775,-0.5792737430892885,-0.05247850064188242,-0.1552349883131683,0.7793380403891206,0.10432344116270542,0.28517505107447505,-0.0076186759397387505,-0.018207188230007887,0.7161485743708909,-0.5031422525644302,0.32468334771692753,-0.36012764694169164,0.105222771409899,-0.3584600514732301,-0.38431248161941767,-0.06292668078094721,0.2547444151714444,-0.5882574678398669,-0.8157436796464026,-0.5503929317928851,0.2626891336403787,0.6867467337287962,0.8002968332730234,-0.06146505521610379,0.5244126548059285,0.20212718192487955,0.48958502151072025,-0.3332490990869701,0.909250398632139,0.4684027284383774,0.6043339273892343,-0.9876806968823075,-0.7212926801294088,0.8157820096239448,0.3450392452068627,-0.9382961904630065,0.3793484130874276,0.8136458820663393,-0.1179457139223814,-0.9238156424835324,0.3113256776705384,0.5938672972843051,0.39240121887996793,0.6668440783396363,-0.09251045202836394,0.8001019875518978,0.4201388945803046,-0.5707586975768209,-0.47124424669891596,-0.3854997646994889,-0.2120668115094304,0.6440791301429272,0.6195151978172362,0.9428287385962903,0.5809724745340645,-0.722588527482003,0.09760508174076676,-0.5814015311188996,-0.9091379600577056,-0.7873900779522955,-0.08599847741425037,-0.5582028906792402,-0.3461287459358573,-0.7991544511169195,0.597252091858536,-0.2795018400065601,-0.2778310300782323,-0.2606464638374746,-0.8279352425597608,-0.18522306205704808,-0.9896680596284568,0.669309027493,0.709011044818908,0.8069190932437778,-0.45730964932590723,-0.4368824437260628,-0.8439070614986122,0.39209239883348346,0.8732820176519454,-0.8926003351807594,-0.3634147001430392,-0.2745834910310805,-0.37758791306987405,0.9533337564207613,-0.9966924544423819,0.6452678670175374,0.004233010113239288,0.1864851312711835,-0.25283773010596633,0.29253514762967825,0.8981464025564492,-0.4710007798857987,-0.5859037158079445,0.04790376825258136,0.9103924357332289,-0.6237512202933431,0.853238710667938,-0.6916383006609976,0.7181755197234452,-0.6935495655052364,-0.2621326385997236,-0.21265085646882653,-0.5463762395083904,0.1725213835015893,0.4427564051002264,-0.9032325875014067,0.7494980501942337,0.7853280459530652,-0.973412289749831,-0.01805931981652975,0.17897451762109995,-0.3552042064256966,0.142631602473557,-0.47450569132342935,0.9227187638171017,0.027850826736539602,-0.878557357005775,0.9183216667734087,0.3790012286044657,0.3543638279661536,0.014493212103843689,-0.6239370317198336,0.6579749034717679,0.47713733138516545,-0.28007213678210974,0.3151813098229468,0.010879225563257933,-0.7899792534299195,0.7974429377354681,-0.06953448383137584,-0.5472696465440094,0.8879841025918722,0.7037074295803905,-0.1540108877234161,-0.4206375163048506,0.16877805115655065,0.979242286644876,-0.2404456245712936,-0.9320253184996545,0.9200814408250153,0.6648056958802044,-0.7076736390590668,-0.2595473653636873,0.688077328260988,0.0768751404248178,-0.1518277726136148,0.6719032782129943,0.5871496722102165,0.7095319489017129,0.9170173099264503,0.2502335235476494,-0.3525610198266804,0.20960833877325058,-0.37705882638692856,0.6258172388188541,0.15896611846983433,-0.6441199802793562,-0.8387332889251411,0.7143474416807294,0.784751215018332,-0.07895379699766636,0.5439834068529308,-0.11404074588790536,0.9327067909762263,0.9589802771806717,-0.38683284213766456,-0.7218576581217349,0.7315708231180906,0.2494270564056933,0.2215498243458569,-0.1860949951224029,-0.8583591193892062,-0.14068706333637238,0.31474867183715105,0.7545389528386295,0.4144995743408799,0.6473804013803601,0.4200023668818176,0.726289875805378,-0.5609141252934933,0.34770999336615205,0.4109982647933066,-0.5227412460371852,-0.19200688553974032,0.69513547886163,0.6045093289576471,0.9876049868762493,0.9208592036738992,0.4246479053981602,-0.630789749789983,0.20974315982311964,0.42797457287088037,-0.7990214084275067,-0.7184903770685196,0.48532896814867854,0.5239043007604778,-0.2522167437709868,-0.5027882400900126,-0.44495887588709593,-0.4189445609226823,-0.15602496219798923,0.10330943576991558,0.24249964766204357,-0.7154046492651105,-0.7749972720630467,0.2929527601227164,-0.8664213474839926,0.44145613070577383,0.44718123506754637,-0.5694041014648974,0.26734225265681744,-0.7321848198771477,-0.0962074059061706,-0.35216745594516397,-0.6191331567242742,0.4091426720842719,-0.7196268029510975,0.8709210623055696,-0.4980084262788296,0.0827279519289732,0.5516899470239878,-0.8172920770011842,0.3556008469313383,-0.8657612917013466,-0.2829266218468547,0.9122736980207264,-0.3379542864859104,-0.16811206424608827,0.6304738787002861,-0.49995392467826605,-0.5655446015298367,-0.9584828210063279,-0.6277934820391238,-0.4313414399512112,-0.7344648907892406,-0.21634765341877937,-0.6683069937862456,-0.6995481788180768,-0.5243346663191915,0.3355395304970443,-0.1221230374649167,-0.32740594260394573,0.5459282221272588,0.7141946358606219,-0.006343811750411987,-0.043353136628866196,-0.7357632904313505,0.26700004283338785,-0.48673151759430766,-0.8978162566199899,0.6142998924478889,-0.3480259068310261,-0.8583054933696985,-0.07856031460687518,0.6906975181773305,-0.35792015166953206,0.8980373390950263,0.5030973530374467,0.17922988766804338,-0.757291832473129,-0.9460867983289063,0.830714943818748,0.7653837888501585,-0.5358280134387314,-0.5223161019384861,0.018201241735368967,0.68746901396662,-0.6889223926700652,-0.6905003292486072,0.09061919152736664,0.26459516398608685,-0.030005963053554296,0.5816901163198054,-0.09971897164359689,-0.6869432451203465,-0.6022710329852998,0.31678308779373765,-0.1924942433834076,-0.33605549624189734,-0.9028319888748229,-0.2739487155340612,0.19778805784881115,-0.04112201137468219,0.3175641028210521,-0.3041322398930788,-0.503977332264185,0.15615971432998776,-0.36364253610372543,-0.9248180645518005,0.325052993837744,0.0030729547142982483,0.2530023828148842,-0.035431522876024246,0.21096505317837,-0.5864152871072292,0.6166512290947139,-0.6644899323582649,0.6158793554641306,-0.9909087056294084,0.32653114665299654,0.14633473055437207,-0.8500651307404041,0.7893606722354889,-0.6114834127947688,-0.35126005951315165,0.70133271580562,0.427265458740294,-0.46871190052479506,-0.3217491996474564,-0.550981851760298,-0.20829774206504226,-0.00862348172813654,0.581167250405997,-0.09286948898807168,-0.9323123749345541,-0.3997890162281692,0.43697137804701924,-0.885930247604847,-0.8740393500775099,0.1985827232711017,0.140900366473943,-0.8658497459255159,-0.5937103843316436,-0.9672288806177676,-0.15942213777452707,-0.019184982404112816,0.23142102174460888,0.5850028381682932,-0.2233892623335123,-0.18663487816229463,-0.7947405516169965,-0.2978216726332903,0.6719842902384698,-0.5513104060664773,0.6520975232124329,0.5721681313589215,-0.24086564406752586,-0.9613127252086997,0.9577622325159609,-0.18167787557467818,-0.23394166212528944,0.9588555707596242,-0.1399416234344244,0.6622363207861781,0.5288142790086567,-0.8359166695736349,0.17749530216678977,-0.29157077660784125,0.6348375915549695,-0.7633683821186423,-0.46956090116873384,0.806687546428293,-0.7989081675186753,-0.31842198269441724,-0.10272317146882415,-0.6252256399020553,-0.4045936674810946,0.8955820365808904,0.4387556528672576,0.5610721693374217,0.4459531516768038,0.5740122068673372,-0.7671289672143757,0.9488606634549797,0.2098612035624683,-0.7063180734403431,0.23497543297708035,-0.734077213332057,-0.3667623992078006,0.7839307454414666,0.11525964317843318,0.7958404710516334,0.8059275136329234,-0.5395643603987992,-0.8395075649023056,-0.5322021818719804,-0.0123477503657341,0.650311061181128,0.21906035486608744,0.7177662206813693,0.8112352527678013,0.3026474453508854,-0.4256907878443599,0.42857516556978226,0.14773965813219547,-0.8988467338494956,-0.8064351947978139,-0.9098922261036932,-0.674557454418391,0.19893540814518929,0.6001449567265809,-0.3012465159408748,0.4585003675892949,0.19543940853327513,-0.3625925467349589,-0.7158879032358527,-0.7040072460658848,0.8842579647898674,-0.15668915817514062,0.22903008433058858,0.3452891483902931,0.9209835636429489,0.1075150459073484,-0.04681782564148307,0.5259025692939758,-0.8881018352694809,-0.055574413388967514,-0.352720876224339,0.44408691255375743,-0.2683015908114612,0.9467669259756804,-0.029708971735090017,0.4067457336932421,0.1403704984113574,-0.1239288430660963,-0.08387515088543296,0.09620029851794243,0.09931599907577038,-0.4319845996797085,0.6608385005965829,-0.24373546103015542,-0.9786095381714404,-0.16671573789790273,0.27984824078157544,-0.4873044672422111,0.47706387052312493,-0.07424663519486785,0.5424835551530123,0.05780727881938219,-0.7184289437718689,-0.2336164889857173,0.22207553731277585,0.8185764704830945,0.811137595679611,-0.8271364406682551,-0.6919199451804161,-0.6616595196537673,-0.27207948314026,0.8936658804304898,0.642963133752346,-0.5600444190204144,0.7932593659497797,-0.7073324955999851,-0.288132568821311,-0.2623926470987499,-0.04372282326221466,-0.12754323054105043,-0.13762782234698534,0.6108786761760712,-0.02901961375027895,0.7217244585044682,-0.22167712450027466,-0.040692065842449665,0.8307560011744499,-0.9465463818050921,0.5638017351739109,0.794643406290561,-0.5442770174704492,0.08376061078161001,-0.7294501578435302,-0.9919581017456949,-0.41359739704057574,0.12838777108117938,-0.9203771762549877,0.958013188559562,-0.1570626236498356,-0.05291724484413862,0.23920470708981156,-0.8675823686644435,0.8063923642039299,0.03893196349963546,0.679108050186187,-0.24158327328041196,0.42059279093518853,-0.0660511995665729,0.12423816043883562,-0.35088613675907254,0.09145406493917108,-0.1849013827741146,-0.7494118367321789,0.014478098135441542,-0.41097541619092226,0.9425714607350528,-0.4734064331278205,-0.02300879079848528,-0.9795618741773069,-0.5640107938088477,-0.5002021207474172,0.1433688341639936,0.7171665257774293,0.5390395782887936,-0.5355319371446967,0.3910662508569658,-0.028466613497585058,-0.2843516357243061,-0.27595688542351127,-0.09910498326644301,-0.4373905900865793,-0.9029229767620564,0.8997809533029795,0.7381295557133853,0.23033695295453072,0.4645028095692396,0.28549359971657395,-0.5745866093784571,0.30418520886451006,-0.6223293258808553,0.0967151285149157,0.35990083403885365,0.8016865407116711,0.9626816185191274,0.4406631952151656,-0.828503190074116,0.8881348012946546,0.14509808411821723,-0.5878958208486438,0.9118784214369953,-0.7327466318383813,0.20861223945394158,0.028163126669824123,-0.5273906481452286,-0.01716742431744933,0.8447922193445265,-0.12764232931658626,-0.9579645097255707,-0.2606621477752924,0.49611575761809945,0.17992082051932812,0.8530911840498447,0.828744696918875,-0.6698358999565244,-0.04661299707368016,0.11453164368867874,0.5917949480935931,-0.6182332248426974,0.8065649741329253,-0.7806970193050802,0.5376581507734954,0.29829078540205956,0.9647879777476192,0.5456843222491443,-0.22034105192869902,-0.2364298147149384,0.5138456737622619,0.7835592515766621,0.9767112038098276,-0.6182597456499934,-0.6628669211640954,-0.41447722679004073,-0.037224617786705494,-0.008751051966100931,-0.7045921208336949,-0.579169706441462,-0.09599925111979246,-0.1217426578514278,-0.31235602917149663,0.6025185459293425,-0.7951175072230399,-0.5845942758023739,0.9331126408651471,-0.4374270592816174,-0.7844893005676568,-0.45106939505785704,0.8573118764907122,0.10991576313972473,0.4176973244175315,0.5277067548595369,0.8126522088423371,0.3194473525509238,-0.15692047914490104,-0.5711679439991713,-0.4266812759451568,-0.7314309952780604,0.9041093913838267,0.5487872040830553,-0.15703816153109074,0.15273174410685897,0.6233634455129504,-0.9357096431776881,0.013233548495918512,0.8222332219593227,0.7160776606760919,0.5710251638665795,0.7030924237333238,-0.5477071898058057,0.08729236014187336,0.5695321313105524,-0.1440889141522348,0.21739895874634385,-0.35171730909496546,-0.9716256242245436,0.08181673428043723,-0.6420345138758421,0.4191050585359335,-0.17922654282301664,0.028910850640386343,0.9589370097965002,0.6331350528635085,-0.1617300696671009,-0.6683964696712792,-0.5055703800171614,0.760339037515223,0.030254211276769638,-0.2379389489069581,0.08578180149197578,-0.7252266719006002,0.5100778276100755,0.15109420521184802,0.14040173776447773,0.004451361019164324,-0.8972408096306026,-0.42885963153094053,0.4794106795452535,0.6253544958308339,-0.14062253572046757,-0.5610477742739022,-0.6366868647746742,-0.12255950318649411,-0.4919433109462261,-0.6522329058498144,-0.18183293286710978,0.696116590872407,0.9771073078736663,-0.7705925814807415,0.11347816279157996,0.7612828840501606,0.6192171089351177,0.6172850425355136,-0.09491013921797276,0.7151298183016479,0.5961141418665648,-0.9738479573279619,-0.8340283166617155,-0.6617664182558656,0.5018934076651931,-0.48810663539916277,0.9585256935097277,0.09374662721529603,0.1638990151695907,0.9884024187922478,0.3376615568995476,-0.2957008508965373,-0.4784392951987684,0.9584190174937248,-0.13664124440401793,0.24242755584418774,0.04337410535663366,0.5705780028365552,-0.19436948793008924,-0.8279157439246774,-0.5024212030693889,-0.41780885169282556,0.28697159979492426,-0.6783081642352045,0.5068932021968067,0.7326303818263113,0.5618395106866956,-0.9247950450517237,-0.4368260661140084,0.5464278273284435,-0.29004142666235566,0.009407631121575832,0.8365926085971296,0.8906095502898097,0.3517206800170243,-0.2546100812032819,-0.7638719747774303,-0.6689932523295283,0.8523189658299088,-0.024304911494255066,0.39494136720895767,-0.45621501095592976,0.5772306979633868,-0.9057190641760826,0.3946841321885586,0.5061168777756393,0.1251929304562509,0.3472497770562768,-0.9715625760145485,0.5387949952855706,0.3262496520765126,-0.5481947241351008,-0.8797166869044304,-0.6071480680257082,0.5505622681230307,-0.4749833079986274,-0.916979122441262,-0.02312040701508522,0.25059867929667234,0.7648264588788152,-0.8836120157502592,-0.23959623789414763,-0.9445131127722561,0.7835164610296488,-0.2944647828117013,-0.961559358984232,-0.35694021405652165,0.45121648209169507,-0.5127970282919705,-0.43597053410485387,-0.8299876786768436,-0.0002745990641415119,0.4624023186042905,-0.027838338166475296,-0.24615680566057563,0.5172771504148841,-0.5905098160728812,0.6810782682150602,0.08432955807074904,-0.8094300734810531,-0.23410928575322032,0.8439645310863853,0.6135791311971843,-0.9370454279705882,-0.6155905593186617,-0.3225251226685941,0.1503819222562015,0.3901160852983594,0.2208872172050178,0.5741934119723737,0.4833634989336133,-0.06573820440098643,0.7804166967980564,0.32789373164996505,0.44225030532106757,-0.6591879683546722,-0.6085328622721136,-0.8585799443535507,0.7639042721129954,-0.2085050456225872,-0.5671934024430811,-0.8588694534264505,0.4947284832596779,-0.9323323159478605,0.026586337015032768,0.03224015608429909,-0.4201853657141328,0.9006723761558533,-0.26220822194591165,0.7496063145808876,0.3667813427746296,0.9330205949954689,-0.5927122980356216,0.8161722384393215,-0.8754609408788383,-0.8944301879964769,0.9596575852483511,0.6807716167531908,0.209233402274549,-0.8044303096830845,0.49019998079165816,-0.039487560745328665,-0.4006908042356372,0.03482938650995493,-0.6662552114576101,0.5362665997818112,0.34225251944735646,0.5638858606107533,-0.25924413185566664,0.9489240711554885,-0.4877552380785346,0.45168819138780236,0.6927771796472371,0.512103134766221,-0.017992436420172453,-0.6661594118922949,0.3943805010057986,-0.5922156940214336,0.9550895281136036,-0.1580810621380806,-0.7510301182046533,0.023464680183678865,-0.20785562274977565,0.19940922735258937,0.5113747022114694,0.46604769630357623,0.6270711738616228,-0.20030511636286974,0.44543990958482027,0.022721512708812952,0.9036627979949117,-0.176362297963351,0.31915452517569065,0.6133901164866984,-0.25059885578230023,0.914050409104675,0.17649924848228693,0.032631576992571354,0.7108881184831262,0.2277305438183248,0.7673223502933979,0.8715379349887371,0.7350201476365328,0.3396138232201338,0.6611591223627329,-0.19181220699101686,-0.2024044170975685,0.9235409274697304,-0.9138471204787493,-0.5169018055312335,-0.19558312045410275,-0.037648521829396486,-0.7907076398842037,-0.12172175478190184,-0.5967981750145555,0.2997596897184849,0.5753322499804199,0.7199880457483232,-0.8622185299172997,0.516416419763118,-0.8873492414131761,-0.12351555796340108,0.6370205236598849,0.7774695535190403,-0.8234899095259607,-0.42417392414063215,0.06684555765241385,0.35890645906329155,-0.19997169403359294,0.08171118656173348,0.31457285676151514,0.8826520158909261,0.05600695498287678,0.8344538742676377,0.8660727879032493,0.8719476847909391,-0.6288980050012469,-0.6094240504316986,0.2160762813873589,-0.576400151476264,0.4440042767673731,0.06966930069029331,0.32100675720721483,0.7142861005850136,0.3258218625560403,-0.898835607804358,-0.2089022365398705,-0.6108936043456197,-0.052484926767647266,0.35574809135869145,-0.6558510730974376,0.7984650684520602,0.052508141845464706,0.6098101418465376,-0.28003221144899726,0.028381147887557745,-0.15310753835365176,0.4538134206086397,-0.603706176392734,-0.7670960132963955,-0.14994729356840253,-0.44689457351341844,0.6194955795072019,-0.5341236381791532,-0.10748714627698064,0.246561614330858,0.4286117432639003,-0.6878784010186791,-0.20523329870775342,0.34929109597578645,-0.7908134898170829,0.8233391735702753,-0.13361648796126246,0.05052190134301782,0.9791519828140736,-0.1316474392078817,-0.9543824745342135,-0.48156923428177834,-0.12644054973497987,-0.18348310701549053,-0.8372210618108511,-0.023031598888337612,0.3205856364220381,-0.7737554893828928,-0.7505142828449607,-0.9540253905579448,0.336224811617285,-0.11031135637313128,-0.3988904496654868,0.2289941245689988,0.9390769866295159,0.5664536114782095,-0.42193444445729256,-0.6746368152089417,-0.6627970752306283,0.6611689291894436,0.8766020485199988,0.2313072751276195,-0.8044660571031272,0.8227067324332893,0.8517310805618763,0.05590450717136264,-0.9563792729750276,0.29162431648001075,0.575306458864361,-0.12892053928226233,-0.581612201873213,0.19021264230832458,-0.5437492625787854,0.787944701500237,-0.3437377247028053,-0.14185699308291078,-0.4757347274571657,-0.8458315329626203,-0.585066347848624,0.35680351173505187,0.6487103612162173,-0.15372519893571734,-0.7516558170318604,-0.9523197207599878,-0.31204077508300543,0.14094295538961887,-0.2958151986822486,-0.7045412459410727,-0.96032142220065,-0.7205802681855857,-0.5221354658715427,-0.8763176132924855,0.3269407213665545,0.9194867312908173,0.5286387414671481,0.07285609701648355,0.16026580659672618,0.10009521804749966,-0.7075021211057901,-0.32370519638061523,-0.11241953354328871,0.24272787617519498,0.8845255509950221,0.47330749314278364,-0.28736482840031385,-0.09351599775254726,0.8448729887604713,-0.009198768064379692,-0.9478017347864807,-0.1549471733160317,-0.44353941455483437,0.3408585502766073,0.3433249779045582,-0.07830421067774296,0.5265068360604346,0.1342321871779859,-0.4439307078719139,0.3183026909828186,-0.8621176085434854,-0.04686171701177955,0.9661652739159763,-0.31263082614168525,0.3570753778330982,-0.9684144319035113,0.6612486806698143,-0.13535495707765222,0.10598298953846097,-0.4748060517013073,0.9606754099950194,0.783373836427927,0.6528927735053003,-0.5339036323130131,-0.17102295020595193,-0.2954026465304196,-0.7997357272543013,0.924395130481571,0.864178508054465,-0.4848947199061513,-0.2608416471630335,0.5403709220699966,0.15787723241373897,-0.9384020916186273,0.34100924944505095,0.45198129303753376,0.46276656351983547,-0.6476169028319418,0.3594586029648781,-0.6018482027575374,0.805439137853682,-0.17227824172005057,-0.4590392583049834,0.19934128178283572,-0.014418715611100197,0.6024820990860462,-0.16462056385353208,-0.6521865860559046,0.5931936050765216,-0.9492089902050793,0.6385154305025935,-0.4889842956326902,0.35956904850900173,0.7117206701077521,-0.34943313198164105,0.27199322637170553,-0.45476522017270327,-0.2630328983068466,-0.9348620944656432,0.7256743046455085,0.6856372058391571,-0.5005357838235795,-0.6980202519334853,-0.9653768576681614,-0.07590165082365274,0.7135596266016364,-0.7953354837372899,-0.9049559463746846,0.9065176849253476,0.4414089797064662,0.9622485553845763,-0.1454409915022552,0.7681019781157374,-0.21991593344137073,0.4133503935299814,0.7099263216368854,0.4371598130092025,0.045310623943805695,-0.2148852744139731,-0.9034714954905212,0.22181199304759502,-0.3288419423624873,0.5276209046132863,0.2353712683543563,-0.4840687462128699,-0.9701869557611644,0.7264500823803246,-0.3568065017461777,0.29981150291860104,-0.5066263843327761,0.9653769573196769,-0.9096026634797454,0.46861692098900676,0.9033877146430314,0.413168057333678,-0.6066995039582253,0.6203550635837018,0.3188356515020132,-0.9636972448788583,0.42482090229168534,0.05027016485109925,0.9771194197237492,0.9965786118991673,-0.8882132503204048,-0.7551443735137582,-0.9713999042287469,0.30875378008931875,0.717740242369473,-0.8506918204948306,-0.6812180606648326,0.5758627089671791,-0.11103255860507488,-0.8146892073564231,-0.2744247233495116,0.5856117801740766,0.3500431082211435,-0.5470513179898262,-0.48080213321372867,-0.04652533959597349,0.9379564165137708,0.3685331102460623,0.9800212932750583,0.6752667087130249,0.264891748316586,0.6900367052294314,-0.5094285476952791,0.47916249884292483,0.4745358810760081,0.16220370633527637,0.5906870584003627,0.6709825405851007,-0.6064978064969182,0.8984768372029066,-0.7651433432474732,-0.3418075176887214,-0.8461688295938075,-0.8335451553575695,-0.763084891717881,0.874438438564539,0.689504130743444,0.3181800260208547,0.8902316433377564,0.3120872750878334,0.9093640120700002,-0.32236778549849987,-0.595124926418066,-0.3267169347964227,-0.4967591310851276,-0.9261825084686279,0.6135500646196306,0.6845118422061205,0.6296538254246116,-0.6720537068322301,-0.3194456142373383,0.6618646318092942,0.7742421235889196,-0.8925073468126357,-0.13629503035917878,-0.9265372334048152,-0.7298168856650591,-0.12841431330889463,0.016160011757165194,0.8931426610797644,0.7608042028732598,-0.6946693947538733,0.1951651913113892,-0.7604324594140053,-0.18696042941883206,0.14657720271497965,-0.555569707415998,0.3674258543178439,0.015864871442317963,-0.0642665158957243,-0.28226578049361706,0.9497482576407492,-0.09821573551744223,0.30711216665804386,-0.1280453596264124,-0.6285008662380278,0.38384345453232527,0.6755691510625184,0.6275168149732053,-0.4547257348895073,0.8706997339613736,-0.22992786020040512,0.8158400454558432,-0.07744858600199223,0.5260736718773842,0.959221460390836,-0.9066874464042485,-0.6626805933192372,-0.40261681843549013,0.6190275466069579,-0.9262821082957089,0.5403942721895874,-0.6464153556153178,-0.8774124891497195,-0.3960343240760267,-0.5582502079196274,0.5368412714451551,-0.9364422713406384,-0.4356605838984251,0.4899067976512015,-0.3496179389767349,-0.06458115251734853,0.0999688571318984,-0.9008829034864902,0.18170495191588998,0.5162995299324393,-0.6704993797466159,0.16075718123465776,-0.35799327958375216,0.7327074925415218,-0.6338903848081827,0.8351100627332926,0.7238661274313927,-0.5448671518824995,0.22544979490339756,0.8994612186215818,-0.10917178122326732,0.0662180189974606,-0.8545959871262312,0.7665152191184461,-0.2942340658046305,-0.9660167898982763,0.6873552817851305,0.33221523370593786,-0.8803186137229204,0.7373535935766995,0.010311569552868605,-0.8308446346782148,0.6302884328179061,0.49775362899526954,-0.5232943086884916,0.7250943412072957,-0.6021848367527127,0.7420268841087818,-0.6361499847844243,0.6564116147346795,-0.2586271152831614,0.5907197678461671,-0.2149103069677949,0.1880977051332593,0.6752843149006367,-0.1552553572691977,-0.01255676057189703,-0.5864656651392579,0.2978412522934377,0.7237899666652083,0.3004722190089524,0.5069612553343177,-0.9181315451860428,-0.5857007117010653,-0.976572678424418,0.0799412839114666,-0.40084785548970103,0.2276143692433834,-0.17332899756729603,0.5108711668290198,0.7511969883926213,-0.9402512717060745,0.8166932105086744,0.05851450329646468,-0.2806363720446825,0.4898533965460956,0.8169530425220728,0.4532637083902955,0.28917234716936946,-0.3191344002261758,-0.8894480266608298,-0.033171015325933695,0.27533426182344556,-0.9787376634776592,0.18623175472021103,-0.7952044862322509,0.7932454636320472,0.5190990627743304,0.5745053058490157,0.9111728980205953,-0.9489309140481055,-0.8974129841662943,-0.6919034253805876,-0.09634350007399917,0.6997139770537615,0.22826771344989538,0.326889262534678,-0.6811558837071061,-0.33362244721502066,-0.28207087283954024,-0.6107460800558329,-0.7238205149769783,-0.7511076969094574,-0.8773182551376522,0.4411467304453254,-0.21721427189186215,-0.25110822170972824,0.7623748704791069,-0.6309124180115759,-0.42848245706409216,-0.20989286247640848,-0.4597786208614707,-0.33671142207458615,-0.6309686065651476,-0.6069174753502011,0.6348426407203078,-0.10349341249093413,-0.6352331326343119,-0.024716856889426708,-0.043844813015311956,0.11670268792659044,0.47001704946160316,0.3734981706365943,0.5408305544406176,0.5683781201951206,-0.4317452562972903,-0.6824399991892278,-0.6833436256274581,-0.6088292305357754,-0.8571020802482963,0.4446974000893533,-0.39949083235114813,-0.33080473309382796,0.7446751077659428,-0.21430195542052388,0.05360412644222379,-0.7121585411950946,-0.7762498990632594,0.8597403457388282,0.21200155559927225,-0.8740334962494671,0.6120697730220854,-0.7870168904773891,-0.005873076617717743,0.5954869859851897,-0.8426615167409182,-0.32989561185240746,0.3580506155267358,-0.7798071508295834,-0.03296728665009141,-0.7029475094750524,-0.0528868967667222,-0.7948336508125067,-0.35641616489738226,0.24010164104402065,-0.9494303548708558,-0.885502518620342,0.2722056224010885,0.7128434865735471,-0.3592339754104614,-0.17766544967889786,-0.6016013980843127,0.30851817643269897,0.15632715541869402,0.8375558550469577,-0.39375800592824817,0.7312489170581102,0.6670054090209305,-0.4006664822809398,-0.08831520425155759,0.02579402830451727,-0.17024497129023075,-0.6103016552515328,0.020307940896600485,-0.5599552341736853,0.1043481333181262,0.8611932820640504,-0.45421278197318316,-0.4341740789823234,-0.5451583755202591,-0.9173650555312634,0.535146395675838,0.3591770576313138,-0.010394532699137926,-0.23424626514315605,0.9585095820948482,-0.49778071930631995,0.31406243285164237,-0.23701198166236281,0.9893185361288488,-0.7145271408371627,0.9376503364183009,0.8821101277135313,-0.27901441417634487,0.9523876863531768,0.9651744519360363,-0.6857178476639092,0.5245687663555145,-0.10036149667575955,0.8940325570292771,-0.9999488238245249,-0.36791275395080447,-0.4250376266427338,-0.9220652114599943,-0.6281835422851145,-0.40606701793149114,-0.4905408136546612,-0.7083846884779632,0.18193589989095926,0.4368500532582402,-0.487576627638191,0.4884112705476582,0.2712468099780381,-0.36381377885118127,0.7268796009011567,0.11395995505154133,-0.8634554613381624,-0.32114655897021294,-0.8599255927838385,0.612980677280575,-0.21367311291396618,0.06857608491554856,-0.2939360705204308,0.9495669808238745,-0.08754329429939389,-0.6270440048538148,0.3914383505471051,0.7977477363310754,0.6666447794996202,0.1683900603093207,-0.4813786814920604,0.044773610308766365,-0.9313056287355721,-0.1531277596950531,0.21530263032764196,0.16178256925195456,0.39806829346343875,-0.2818731819279492,0.16316715022549033,-0.03075120085850358,0.7141431262716651,0.6643178360536695,0.4032782828435302,-0.3874840121716261,-0.8830510703846812,0.03989471169188619,-0.7410291815176606,-0.9993681749328971,0.8800021735951304,-0.6682633026503026,0.5156518504954875,-0.3776446357369423,-0.8044958794489503,-0.3967709974385798,-0.8610607390291989,0.8189789871685207,-0.40871378779411316,0.39984398800879717,-0.1632695272564888,0.8093191930092871,0.24958544736728072,-0.5062128761783242,-0.213735762052238,0.9652055217884481,0.7058372450992465,0.3145247236825526,0.15593550819903612,0.5693365577608347,-0.1103450758382678,0.4879754069261253,-0.3734997767023742,-0.5299770208075643,0.35244885832071304,-0.2874365970492363,-0.6267824857495725,0.11398138012737036,0.10398571379482746,0.5321655417792499,0.49615528248250484,-0.4499198994599283,0.11408223258331418,0.27321527525782585,0.1430663736537099,0.7289229733869433,0.3358644274994731,0.42116303090006113,-0.2591747217811644,-0.5654417704790831,0.7735931104980409,-0.5475282506085932,-0.41004274832084775,0.9349806373938918,-0.6471715467050672,-0.734791501890868,-0.8255998971872032,0.11768033262342215,0.7206230969168246,-0.49498562375083566,0.3171796714887023,-0.9528893227688968,0.39321220805868506,0.24405616614967585,-0.3148432485759258,0.12754585966467857,0.869073866866529,-0.8651565336622298,0.08379451464861631,0.43236718978732824,0.09945931239053607,-0.8404809753410518,0.34870701283216476,0.957588791847229,-0.6617121291346848,0.03496072068810463,0.83391686482355,-0.4374365988187492,-0.8901543724350631,0.18313969764858484,0.29299359442666173,0.6208607787266374,-0.15051026176661253,0.9930570940487087,-0.09801010135561228,0.7821182594634593,0.716441101860255,-0.8024894366972148,0.7870213510468602,0.7013767827302217,-0.7027182136662304,0.030018406454473734,-0.8321317536756396,0.6131890625692904,0.9392125215381384,-0.052216337993741035,-0.9992370195686817,-0.20388491172343493,0.04500419832766056,0.763575620483607,0.5423273993656039,0.1491764602251351,0.49590477254241705,0.7879956122487783,0.17198894638568163,-0.47962576150894165,-0.8204588172957301,0.9637502548284829,-0.5660317856818438,0.45148352487012744,0.44235467119142413,-0.7481865407899022,-0.95222212607041,0.5994416186586022,0.6226645181886852,0.6760650323703885,-0.506606831215322,-0.9040807629935443,-0.7770292032510042,-0.3044911460019648,0.716646992135793,-0.4608873934485018,0.36140595097094774,0.8209321242757142,-0.9972122181206942,0.429565520491451,-0.8396119019016623,0.6810213509015739,0.49263440212234855,-0.5378923006355762,0.4934820244088769,-0.8005252820439637,0.8264174307696521,0.47624437185004354,-0.6437540501356125,0.7712936890311539,-0.2655829219147563,-0.8697249940596521,0.9712009849026799,-0.7302645654417574,0.8868969040922821,-0.08633256470784545,-0.6639933935366571,-0.9378054337576032,0.5535884005948901,0.8818960771895945,0.35492229415103793,0.5355323883704841,0.35239970637485385,0.8285052184946835,-0.23031576164066792,0.29322725301608443,-0.36845963820815086,0.7452595485374331,0.6866461988538504,-0.8330564186908305,0.6628142385743558,0.9646413289010525,-0.850323049351573,-0.12604286381974816,-0.06697487132623792,-0.9851262988522649,-0.25987178226932883,-0.9073869567364454,0.689808034338057,0.7842073435895145,0.23867173958569765,0.9919288055971265,-0.7470254870131612,-0.024016755167394876,0.4163924753665924,0.9245692109689116,0.9163572657853365,0.5723953181877732,0.5697220982983708,0.8179407273419201,0.7589903208427131,-0.07842261623591185,0.19447560794651508,-0.12538325507193804,0.3958465647883713,-0.04349300265312195,0.8644405640661716,-0.7868588976562023,-0.7985151153989136,0.7816919260658324,-0.12223661132156849,0.5901982989162207,-0.0366359013132751,0.8080825423821807,0.265182891394943,0.2874180478975177,-0.3528981520794332,0.03766332333907485,0.31896979873999953,0.4346366887912154,0.7352333082817495,0.1026940867304802,0.3229114031419158,0.8284204546362162,0.7761369929648936,-0.3261735695414245,0.579441545996815,0.6751555819064379,-0.963593389838934,-0.9111724481917918,0.23834423022344708,-0.15284114982932806,-0.8363301604986191,0.9902426209300756,0.04228288447484374,0.4228785405866802,0.11866410076618195,-0.3023913875222206,-0.9790992848575115,-0.8182950369082391,0.4394749444909394,-0.837867762427777,-0.35280035249888897,-0.443301938008517,0.7956707393750548,-0.49711606139317155,-0.044180129654705524,-0.35515863075852394,0.21709523582831025,0.45192643254995346,0.1151003073900938,0.4392958600074053,-0.9268252067267895,-0.194329840131104,-0.08584965439513326,0.19380344497039914,0.35855727083981037,-0.6114417687058449,0.06578854937106371,-0.24461197294294834,-0.7616811152547598,-0.09413130907341838,0.9954320695251226,-0.010564730037003756,0.6920704119838774,-0.28748747147619724,-0.5163503745570779,-0.16252879239618778,0.8575918194837868,0.701641468796879,0.7735352758318186,-0.37952285213395953,0.03956606751307845,-0.16001534275710583,0.6719563263468444,-0.9956992557272315,0.2836680612526834,0.6530786007642746,-0.8299205987714231,-0.859045768622309,-0.9880340532399714,0.7295184447430074,-0.7326114377938211,-0.5971920904703438,0.28645056392997503,-0.05826425179839134,-0.7337959040887654,0.03908515255898237,-0.5713223544880748,0.5844708648510277,-0.5237445440143347,-0.5435876660048962,0.45476582972332835,-0.7256820746697485,-0.07991546439006925,0.49120877543464303,0.7593719935975969,0.8970374763011932,-0.055940312799066305,0.6935351267457008,0.17132630804553628,-0.6557657443918288,-0.23879729444161057,0.6651426996104419,0.09755164291709661,-0.3932215911336243,-0.8796173678711057,0.7198461783118546,-0.4342565634287894,-0.4602826563641429,-0.64398154290393,-0.1121593420393765,-0.8028220981359482,-0.40774321742355824,0.8638647310435772,-0.8763386644423008,0.556469954084605,-0.16247555380687118,-0.7190798609517515,-0.21428505657240748,0.5811936878599226,0.8402329147793353,0.8654803005047143,-0.078551578335464,-0.28018324729055166,-0.2555885650217533,0.757100073620677,0.028129277750849724,-0.14591815089806914,-0.8628142569214106,0.9319495274685323,0.6600027214735746,-0.4502775580622256,-0.257426961325109,-0.08159251185134053,-0.40392623003572226,0.247383794747293,-0.4106441433541477,-0.9483645712025464,-0.5914643569849432,0.9238825836218894,-0.816973919980228,-0.4063107334077358,0.398929201066494,-0.6712346668355167,-0.8994099688716233,-0.4448215300217271,-0.16377409221604466,0.6812040386721492,0.4781422894448042,-0.43441003700718284,0.6456911657005548,-0.5413797493092716,-0.8126201080158353,0.32779973139986396,0.7357188980095088,-0.032955614384263754,-0.0748414034023881,0.2848151037469506,-0.11140356957912445,0.12150933314114809,-0.33055089227855206,0.8896008152514696,0.5986560736782849,-0.2019716566428542,-0.3333851518109441,-0.3705421406775713,-0.6581322164274752,-0.6370337074622512,0.12680924963206053,-0.36935551511123776,0.8288577678613365,0.9320961721241474,-0.526100343093276,0.7505817878991365,-0.9032375975511968,0.8930855053476989,0.0672712055966258,-0.7468548477627337,-0.04008234338834882,0.0422498038969934,0.4659812352620065,-0.782173409126699,0.7572595537640154,-0.09042090829461813,-0.9635099433362484,-0.9119826764799654,-0.9425054145976901,0.6316218469291925,-0.801134517416358,0.8559712688438594,0.3067806982435286,0.6430537616834044,0.3259330107830465,0.32684841426089406,-0.3242742498405278,-0.9709173701703548,-0.7374700605869293,0.6473090462386608,0.1663378761149943,-0.07781154848635197,-0.439629805739969,-0.2708054627291858,0.11754941288381815,-0.9214091897010803,0.40979977138340473,-0.8222405593842268,0.4267447399906814,0.8246678072027862,0.24090772261843085,0.7072390462271869,0.6982442671433091,0.9878510986454785,-0.7534600533545017,-0.49084235820919275,-0.54737936751917,0.269036496989429,-0.22807237366214395,-0.2946164356544614,-0.541184239089489,-0.9465552167966962,-0.481130407191813,0.8010036470368505,-0.41599153773859143,-0.13485127268359065,0.9268755633383989,0.24228410609066486,0.629572810139507,-0.6285313558764756,-0.7619064818136394,-0.594518412835896,0.8521424736827612,-0.9540455946698785,-0.5310094654560089,0.23443470103666186,-0.21863375371322036,-0.839128268416971,0.6234841058030725,-0.41994259133934975,-0.21861022198572755,0.8525607618503273,-0.6552911065518856,-0.9535483638755977,-0.22078220453113317,-0.43006277177482843,-0.9555876078084111,-0.218812788836658,0.20706165814772248,0.20964046148583293,0.6630971408449113,-0.3427654909901321,0.5879574031569064,0.891408046707511,-0.6303659556433558,-0.3160147531889379,-0.985507826320827,0.6155940126627684,-0.057692695409059525,-0.2245754706673324,0.6820397381670773,-0.49317604256793857,0.17154837166890502,0.86289470968768,-0.4911343138664961,-0.7278090072795749,-0.2244539954699576,-0.5801891451701522,0.7732587405480444,0.9179425779730082,0.19748151302337646,-0.03739872807636857,-0.6583891669288278,-0.11141700251027942,0.7981134252622724,-0.18687243619933724,0.7478639469482005,-0.265478340908885,0.44032663432881236,0.1032056724652648,-0.9923449545167387,-0.5660835499875247,0.7094863373786211,-0.8409097250550985,-0.7633691383525729,0.6916974340565503,0.4570059971883893,-0.18809020007029176,-0.025401382707059383,0.5626097312197089,-0.10233551636338234,-0.3872626801021397,-0.4777454324066639,-0.8357156990095973,-0.7219393602572381,-0.7933316179551184,-0.39764213003218174,0.1015418665483594,0.102916210424155,0.20836894446983933,-0.7119822506792843,0.25562381325289607,-0.43785917619243264,-0.06559152761474252,-0.4525984851643443,-0.2769216508604586,-0.30170563189312816,-0.831702686380595,-0.11748952232301235,-0.0668583963997662,0.5847335546277463,0.8349422123283148,-0.5742822419852018,0.9103125305846334,-0.3499883427284658,0.6359781352803111,0.9755443683825433,0.5286670280620456,0.8380982587113976,-0.5486941644921899,-0.90612090844661,-0.41849843645468354,0.7360379761084914,-0.7510963496752083,-0.7902410989627242,0.08580296253785491,0.7262277230620384,0.9276056452654302,0.19351366255432367,0.5061184987425804,0.866735749412328,0.13252549106255174,-0.18298622081056237,-0.25240894965827465,-0.17511133709922433,0.6586462850682437,0.42715646000579,-0.0849970686249435,0.18104131845757365,-0.9691126984544098,-0.32147261779755354,-0.022750176023691893,-0.009349345695227385,-0.6693060649558902,-0.16496366262435913,-0.48039132356643677,0.7764812163077295,0.6361458669416606,-0.8246184587478638,-0.857478981371969,-0.697173782158643,-0.6059324974194169,0.2765267672948539,0.28504959493875504,-0.02584968600422144,-0.9094356806017458,-0.9313601511530578,-0.8521021492779255,0.07468793587759137,-0.664418607018888,0.6632844945415854,0.8802926358766854,0.6768006752245128,-0.072256441693753,-0.9248744207434356,0.10565121192485094,-0.08010776666924357,0.2662319829687476,0.30873997788876295,0.3689708970487118,0.5656055817380548,0.5561474631540477,0.5293777901679277,0.39575574174523354,-0.12363613583147526,-0.7937695155851543,0.5150781241245568,0.7769184089265764,-0.2832158668898046,0.6318315169773996,-0.11295823846012354,0.6287052156403661,0.221613853238523,0.7924351780675352,0.5793339707888663,0.26666346937417984,0.24549124343320727,0.8216859376989305,-0.8755401130765676,0.1395464614033699,-0.7849360629916191,-0.21305345464497805,0.4286432038061321,0.42173933424055576,0.17906821239739656,0.838285987265408,0.6437886883504689,0.37931613624095917,-0.10564433457329869,-0.41412800271064043,0.9351609186269343,-0.7662317319773138,0.22114959685131907,0.132204991299659,-0.08983919490128756,-0.38907360984012485,0.8687572982162237,0.22975083533674479,-0.8353055594488978,-0.921648743096739,0.6305610351264477,-0.39697230234742165,-0.2408955553546548,0.5437057469971478,0.5455033578909934,0.17754634795710444,0.6102095590904355,0.8504627528600395,-0.21720477240160108,0.5541603099554777,-0.3398835896514356,0.7316231224685907,-0.24683965696021914,-0.6818537651561201,-0.31945357471704483,0.8827885715290904,0.9622230450622737,-0.30041740415617824,-0.049421120434999466,0.5851191114634275,0.5418735276907682,0.6432465026155114,0.49503852939233184,0.5061419890262187,-0.32168390648439527,0.808203780092299,-0.6325707924552262,-0.2615650799125433,0.8910000533796847,0.9824608690105379,0.14764509070664644,-0.14713198877871037,0.45196303352713585,-0.32564947474747896,0.3750026416964829,-0.06618273118510842,0.8574621919542551,-0.17095009237527847,0.9358661244623363,0.5163569212891161,0.568237837869674,0.15684473374858499,-0.9044765643775463,0.6664783074520528,0.4943620329722762,0.986666586715728,-0.9490039404481649,0.3601305861957371,-0.21862289868295193,-0.5542528782971203,0.6876355158165097,-0.08167142327874899,-0.10578397987410426,-0.3173417798243463,0.25424704840406775,-0.8045237516053021,0.1352939261123538,-0.11388219567015767,0.7672045729123056,-0.6155866337940097,0.03665634756907821,-0.3116755303926766,-0.8342962027527392,-0.5142380483448505,-0.9110558219254017,-0.322743518743664,0.9027082123793662,-0.9354781871661544,0.4351907791569829,-0.9099780260585248,-0.34961720556020737,0.8994898311793804,0.17578011751174927,-0.6781378746964037,-0.33013864466920495,-0.6122414628043771,0.26454399386420846,-0.6233021505177021,-0.17903190152719617,0.552662456408143,-0.7960266382433474,-0.9139782353304327,0.6109447008930147,0.880978730507195,0.2315572388470173,-0.6157589945942163,-0.12943209102377295,0.4574306416325271,0.8526981598697603,-0.6172425271943212,0.808818029705435,0.687116744928062,0.4434887068346143,-0.34068655828014016,-0.23341273283585906,-0.3353706798516214,0.7356944237835705,0.05396027257665992,-0.09539659228175879,0.7619289611466229,0.750820966437459,-0.6398108322173357,0.47955992445349693,-0.709957798011601,-0.22492401907220483,0.6842046943493187,0.9974660351872444,0.8731655878946185,0.180109147913754,-0.8099910374730825,0.266580190975219,0.18142027175053954,0.32052267622202635,-0.535220792517066,-0.2741393521428108,0.9608279746025801,-0.088902922347188,0.883320935536176,0.6077827075496316,-0.29510777024552226,-0.6969104772433639,0.7245406215079129,0.7304558898322284,-0.08781360648572445,-0.6540302643552423,0.15123442886397243,-0.10231512319296598,-0.629188138525933,0.5786971719935536,0.3977773725055158,0.027776820119470358,-0.24177359649911523,0.11619596183300018,0.1834243913181126,0.23829157231375575,0.46374940406531096,-0.6777307097800076,0.0019408902153372765,0.17540458356961608,0.2262490359134972,0.6858883993700147,-0.08748887339606881,0.8174230474978685,0.8424841407686472,0.4247968061827123,0.5327116688713431,0.4052389017306268,0.5639697541482747,0.9811693611554801,0.09198738727718592,0.62436104984954,-0.4161797887645662,-0.7229257836006582,-0.22859313385561109,-0.4946096185594797,0.10194629104807973,0.17068370524793863,-0.2581531614996493,-0.8111669165082276,-0.416393312625587,0.25819452200084925,-0.1778456368483603,-0.4691831786185503,0.9525207411497831,-0.4970693439245224,0.6394031555391848,-0.8205019091255963,0.9131711702793837,0.7855084161274135,-0.0529785817489028,0.6856216909363866,0.3834320195019245,-0.17375464225187898,-0.8577703102491796,-0.3138522212393582,0.6038463464938104,-0.6222954615950584,-0.1813549492508173,0.7344347257167101,0.35010330844670534,0.07729090144857764,-0.9393699150532484,0.6140313930809498,0.3781156297773123,0.0914667034521699,0.1039723139256239,-0.23277037497609854,-0.9435058203525841,-0.36119646951556206,-0.10166037641465664,0.8337685707956553,-0.9153434229083359,0.039528995752334595,0.13252824218943715,-0.6419254145585,0.3735301005654037,0.34544846415519714,-0.5283990064635873,-0.12377122323960066,0.10904884804040194,0.2205476788803935,-0.3506585988216102,0.816441101487726,-0.46596130076795816,-0.43634594744071364,0.6656660530716181,-0.8945086798630655,0.018914015032351017,0.14763910649344325,-0.057653214782476425,0.0776506750844419,-0.37512758979573846,-0.41793969506397843,0.9642387861385942,0.21755180228501558,-0.35731775499880314,0.8160679042339325,-0.4218565854243934,0.9341892600059509,0.87374302232638,0.1525671142153442,-0.10614846041426063,0.6548971803858876,-0.6135096494108438,0.9712705346755683,0.2544565494172275,0.7766771242022514,0.08765970868989825,0.8644822826609015,0.28252787375822663,-0.4740253575146198,0.12812298955395818,-0.5280320309102535,-0.03148556221276522,-0.27394927898421884,0.22158994246274233,-0.25984850572422147,-0.7308140797540545,0.6156052029691637,0.7547530746087432,0.3745424714870751,-0.2219476392492652,-0.9575942847877741,0.056861779652535915,-0.09158291108906269,-0.9271898097358644,-0.5704557411372662,0.7941768257878721,-0.8094140444882214,0.11478707380592823,0.7257669526152313,0.9416213668882847,-0.08972023986279964,0.07943137129768729,-0.5098873907700181,0.915124602150172,-0.7781931227073073,0.31517454888671637,0.4261222733184695,0.3090895088389516,0.39405112294480205,-0.7176162581890821,0.6562653663568199,-0.639453899115324,0.33818234829232097,0.7533608665689826,0.42945724772289395,0.7662112805992365,-0.5060735726729035,0.8856276259757578,0.7879226366057992,-0.962046645116061,-0.8379111159592867,-0.2944835857488215,0.8533814563415945,0.27907123416662216,0.09852584498003125,-0.6955120633356273,-0.9161872463300824,0.21079635713249445,-0.27871998539194465,-0.12800292391330004,-0.666346866171807,0.19448460265994072,-0.3754403591156006,0.26861197082325816,-0.925469237845391,-0.301009813323617,0.46191579522565007,-0.3901075222529471,0.5499852309003472,0.3535758201032877,0.7610893277451396,-0.17186037078499794,-0.8806844847276807,-0.07260503014549613,-0.39852537866681814,0.4602951626293361,0.159505614079535,-0.4001789675094187,0.7393867112696171,-0.802406208589673,-0.593083621468395,0.13822989212349057,0.3844374269247055,0.14524013875052333,0.26462029572576284,0.29304299410432577,0.7110992288216949,-0.9003768698312342,0.5107114263810217,-0.19048193842172623,-0.7833639048039913,0.9358890717849135,-0.26050127018243074,0.6968703074380755,-0.6348518230952322,0.348048975225538,-0.8902239692397416,0.9366537895984948,0.5841337670572102,-0.3323129233904183,0.267366508487612,-0.8270697519183159,0.3192559303715825,-0.6857151631265879,0.5513871456496418,-0.7745560682378709,-0.7454593554139137,0.19730532355606556,0.2634730511344969,-0.5369421113282442,-0.0738992621190846,-0.8030263334512711,-0.704627329017967,-0.8155118534341455,0.18293454498052597,0.7345020864158869,-0.7401159922592342,-0.03433697018772364,-0.008136874064803123,-0.8961351965554059,0.6622681999579072,0.6778154536150396,0.8997737639583647,-0.8328329329378903,0.05105965584516525,-0.400049464777112,-0.5305113708600402,0.9048600695095956,-0.3539191633462906,-0.620122516527772,-0.3095045960508287,-0.6174980239011347,0.5745358550921082,0.3650160017423332,0.05901162885129452,0.5597322406247258,-0.5920814536511898,0.13454326149076223,0.8018809799104929,0.6742472439073026,0.9903381648473442,0.7095141159370542,0.24308184068650007,0.27683511143550277,0.19833234697580338,-0.3706006179563701,0.40943970903754234,-0.5569070195779204,-0.7676552929915488,0.664382295217365,0.8010425455868244,0.5680770059116185,-0.8674086611717939,0.7730034138076007,0.37586142402142286,0.45233364775776863,0.554276667535305,-0.10390384029597044,-0.7916574641130865,0.5332695404067636,-0.08976723439991474,-0.12450100481510162,-0.37209176644682884,-0.44451614283025265,0.2812683777883649,-0.979452402330935,0.31406343588605523,0.049478859174996614,-0.07639839639887214,-0.8072843877598643,-0.2235972611233592,-0.7938003824092448,0.15331812063232064,-0.13933555828407407,-0.7963669025339186,-0.5042458409443498,-0.4405387709848583,-0.7157828668132424,-0.47014929400756955,0.7000517589040101,0.550968314986676,-0.2496892143972218,-0.9040598282590508,0.5553510333411396,-0.932959342841059,0.6315402500331402,0.178026401437819,0.36218235921114683,-0.759017494507134,-0.5859771678224206,-0.1618636567145586,0.8515212684869766,0.7892318577505648,0.812057314440608,-0.1620173268020153,-0.22605534084141254,-0.9843595861457288,-0.7723105777986348,0.7195739415474236,0.8561419830657542,-0.5768708623945713,0.3585786912590265,0.7281038220971823,-0.47067220974713564,-0.8430429315194488,-0.5635537998750806,0.336235417984426,-0.6438446249812841,-0.3435928700491786,0.08806486334651709,-0.5814968510530889,0.0459789177402854,-0.6325776297599077,-0.6738000586628914,-0.12450524652376771,0.1627836162224412,-0.17751610558480024,-0.3593950937502086,0.6009419034235179,0.0012716171331703663,0.13053850177675486,0.7433665748685598,0.2754564634524286,-0.9554996159859002,-0.9160099294967949,0.8638037322089076,0.21571875549852848,0.7125032092444599,0.8963367487303913,0.07376295235008001,0.6180582754313946,-0.9664530172012746,0.7031403034925461,-0.900530593469739,-0.2722937995567918,-0.16639246186241508,-0.4960326040163636,-0.08401285577565432,0.17420653579756618,-0.9673034003935754,-0.45707527780905366,0.9343296200968325,0.9471807503141463,-0.6018911409191787,0.9971358552575111,-0.756221414078027,-0.01681760558858514,0.11314207129180431,-0.7887073666788638,-0.08829608140513301,0.3632406941615045,0.374569418374449,0.506352985277772,-0.355296035297215,-0.1615832564420998,0.6455606631934643,0.9391762856394053,-0.6801273073069751,-0.10759169282391667,0.8369478867389262,-0.6035136207938194,-0.7334882849827409,-0.7157292705960572,-0.7129533919505775,-0.9721763362176716,-0.6064671925269067,0.284042970277369,0.7741832020692527,0.5071923867799342,-0.46715714409947395,0.805621700361371,-0.46368702268227935,0.6433819406665862,-0.8725547301582992,-0.30782035226002336,0.17446078266948462,0.469581788405776,0.49354950012639165,-0.17492091609165072,0.8156561749055982,0.4862280860543251,0.8433920764364302,0.7650156985037029,-0.9150123344734311,0.27203682763502,0.30175791308283806,-0.16377589153125882,-0.6577704241499305,0.38352588564157486,-0.8998288363218307,0.5643266038969159,-0.9778327508829534,0.8216045815497637,-0.4324687537737191,0.6885017165914178,0.034924843814224005,-0.6774042528122663,0.043564032297581434,-0.7425843812525272,-0.5896059470251203,0.3041971158236265,0.8095582397654653,0.8469453267753124,-0.23666721116751432,-0.5124154225923121,-0.5899105034768581,0.32833734480664134,-0.9674068819731474,-0.4996490143239498,0.450607234146446,-0.9647426344454288,0.9073023712262511,-0.8034605761058629,0.8168413895182312,-0.5780207877978683,0.752609200309962,0.4762362795881927,-0.6394111514091492,-0.4615331278182566,0.1960410764440894,0.9694049544632435,0.05448071891441941,-0.34002745151519775,-0.9540840676054358,-0.5859558605588973,0.6307898866944015,-0.006121933925896883,0.2960799066349864,-0.13629663130268455,-0.21740790037438273,-0.6415751329623163,-0.926360557321459,0.6245419844053686,-0.37867943476885557,-0.08032237691804767,-0.1899114092811942,0.3642478557303548,0.2380841299891472,0.027701377402991056,-0.07128005381673574,0.544078488368541,-0.0820736987516284,0.8797632441855967,-0.4545524572022259,0.6384949358180165,0.9434057399630547,0.9906911351718009,-0.851686310954392,-0.6736395205371082,-0.6438072095625103,0.8876855978742242,-0.34184443578124046,-0.7241796138696373,0.9958953741006553,0.6695054238662124,0.7253551413305104,-0.27645139349624515,-0.10219132527709007,0.9284453699365258,0.3975070738233626,0.3714907062239945,-0.8815817944705486,-0.9059652630239725,0.8039191835559905,-0.20035442104563117,0.1108796582557261,0.1376530290581286,-0.5745511795394123,-0.21307710837572813,-0.6845973893068731,0.15913318609818816,0.2287367032840848,-0.9299386772327125,-0.9044274901971221,0.5911930496804416,0.6567346793599427,-0.3031810987740755,-0.7120157680474222,-0.11871821386739612,-0.880634737201035,-0.951247641351074,0.5546466680243611,0.869115874171257,0.42168210446834564,-0.6011305437423289,-0.6064560557715595,0.9056286476552486,-0.628034979570657,-0.6069557233713567,0.11017754953354597,0.6492234249599278,-0.791128920391202,-0.9795300881378353,-0.3613030510023236,-0.6586992116644979,0.635762978810817,0.3373000845313072,0.220611194614321,0.28537394013255835,0.6422898839227855,-0.2795040146447718,-0.9787360606715083,0.11029778514057398,0.7839835677295923,-0.3091949508525431,-0.24382000183686614,0.6926976866088808,0.1904950039461255,0.8689949586987495,-0.8488042345270514,-0.058035129215568304,0.18108986131846905,-0.8334738309495151,0.48654840840026736,0.5611060252413154,-0.6380475787445903,-0.6668156725354493,-0.7140799518674612,0.8002696270123124,0.44471664912998676,-0.49266588082537055,-0.9876576992683113,0.20824139192700386,0.4566304315812886,0.6528551420196891,-0.45595204643905163,-0.4857602072879672,0.5480491621419787,0.0659173377789557,0.6681116912513971,0.13481887988746166,0.12312118662521243,0.8987898421473801,0.7943983054719865,0.11706360289826989,-0.936847185716033,0.37739885924384,0.009612050838768482,-0.3211593134328723,0.5047519775107503,-0.6985524976626039,0.8963434481993318,-0.21050302730873227,-0.07140227081254125,-0.6586437616497278,-0.6313933986239135,-0.7285776436328888,-0.05991087108850479,0.4729988765902817,0.6964953257702291,0.3083557030186057,0.11060584709048271,0.7215223726816475,-0.3587107276543975,-0.5297026666812599,0.4968854687176645,-0.2763590360991657,0.02249521901831031,0.10099588986486197,-0.7604509652592242,0.9666755930520594,-0.4890049612149596,0.2874934198334813,0.03871682612225413,-0.5721914148889482,-0.29154058871790767,-0.4581440365873277,0.1858941693790257,0.9189084628596902,0.30167903238907456,-0.38772372296079993,0.59051663428545,-0.2778453812934458,-0.9669268289580941,-0.5197431524284184,-0.527118421625346,0.940720297396183,0.06599625432863832,0.9387827687896788,-0.13508461695164442,-0.1319489860907197,0.39111329847946763,0.03024181444197893,0.1504367245361209,-0.33543625101447105,-0.41163822589442134,0.5974300364032388,-0.16324691521003842,-0.21912863245233893,-0.6691199992783368,0.6501810071058571,0.6301453644409776,0.3259554053656757,-0.6957440134137869,-0.6042338381521404,0.2526659592986107,0.698951056227088,-0.5300584719516337,-0.6450087740086019,0.004438039381057024,-0.5744924508035183,0.6764853955246508,0.3930588439106941,0.9940826753154397,0.7034871815703809,-0.6820793119259179,0.872418018989265,0.32312260614708066,-0.10630950704216957,-0.30086483899503946,0.5816053133457899,-0.2624613638035953,0.11583686200901866,0.05568694928660989,-0.21597316395491362,0.023130196146667004,-0.7887426801025867,-0.6105730319395661,-0.5468339109793305,-0.6527466373518109,-0.899083336815238,-0.05178846372291446,0.7514111213386059,0.6336879092268646,-0.9818391427397728,0.3198094288818538,-0.9287515063770115,-0.5579731031320989,-0.6542999884113669,-0.6968863774091005,-0.9470113324932754,0.7070124917663634,0.12221015011891723,-0.27301673078909516,-0.8286856361664832,0.07838991424068809,0.9842859213240445,0.6645244476385415,-0.16437998274341226,0.3456283053383231,0.9204295724630356,-0.2098767221905291,0.17618524422869086,-0.488369130063802,-0.3000900438055396,0.9887498100288212,0.24105457728728652,0.8970001637935638,-0.01037660101428628,0.6770740989595652,0.3963591679930687,0.5635729325003922,-0.4726475579664111,0.2948527615517378,0.5229526846669614,-0.11732969852164388,-0.7509347563609481,-0.4380280589684844,-0.2161928922869265,0.13114415341988206,-0.09121373621746898,-0.92135130148381,0.6468584826216102,-0.5088289706036448,0.9669417459517717,-0.7066294755786657,-0.45915197022259235,-0.7355892923660576,0.5796622391790152,0.9422546508722007,0.14766533579677343,-0.8517260877415538,-0.6056836666539311,-0.7565737389959395,-0.7084236973896623,-0.7503664907999337,0.9099090527743101,-0.26261376310139894,-0.7776720873080194,0.7356554940342903,-0.42425796017050743,0.8842832543887198,-0.8966752034612,0.944807015825063,-0.8529951460659504,-0.41418682830408216,-0.03068786719813943,0.37363438261672854,0.770644866861403,-0.3765016030520201,0.01824580319225788,-0.8507197797298431,0.7329796752892435,0.7578138578683138,0.8699580798856914,0.9834629031829536,0.21062504220753908,-0.5240612220950425,-0.08372506080195308,-0.6477268133312464,0.11137796565890312,-0.6724297408945858,0.4005404319614172,0.31355504458770156,0.6480341656133533,-0.922669175080955,-0.2270639119669795,-0.8645334639586508,0.6649878588505089,0.6519057149998844,0.049607434310019016,0.025686399545520544,-0.7357264924794436,0.8153345552273095,-0.1105873603373766,0.9569703605957329,0.44315984658896923,0.4911936051212251,-0.16900600818917155,0.41072867065668106,0.49940188974142075,-0.1532127154059708,-0.1089527034200728,-0.06911793956533074,0.13132104510441422,-0.6154594542458653,0.593291771132499,0.6599563648924232,0.9750485247932374,-0.6784299886785448,0.4324110457673669,-0.7719358517788351,-0.6018262510187924,-0.6166161065921187,-0.004450931679457426,-0.07787919417023659,-0.124535390175879,-0.24333882797509432,-0.4841348249465227,-0.2786740637384355,-0.36672327015548944,-0.7396022700704634,0.5305287758819759,-0.9026560853235424,-0.5644520283676684,0.02316427230834961,0.5260827536694705,0.15792764024809003,0.12440344365313649,0.7019572439603508,0.7932709935121238,-0.37821783777326345,-0.8045850051566958,0.7537153884768486,-0.9057330125942826,-0.701369060203433,0.08275149995461106,0.1126052150502801,-0.7407320407219231,-0.07297082198783755,0.19380968855693936,0.745526653714478,-0.18629585346207023,0.006800767499953508,-0.7991952765733004,0.23600844526663423,0.3120995135977864,0.4352058689109981,-0.22675276827067137,-0.014924179762601852,-0.6948405210860074,0.6093321177177131,-0.7402936164289713,-0.4279775647446513,0.9767850222997367,-0.29346959199756384,0.48936876840889454,-0.96919648302719,-0.48301284853369,0.04559805942699313,0.7272449466399848,-0.6274247854016721,-0.8299899529665709,-0.6503156842663884,0.12799878371879458,0.00805786531418562,-0.6682326882146299,-0.03186563076451421,0.46327104046940804,-0.05738183343783021,-0.3990563340485096,0.6045521018095315,0.7971746348775923,-0.58267558272928,0.5794132887385786,-0.6889427681453526,-0.4523025150410831,0.8144225124269724,-0.025108558125793934,-0.2227628850378096,-0.039830994326621294,0.0724675809033215,-0.8709534825757146,-0.41204920690506697,0.38566011749207973,-0.8578328737057745,-0.6694329720921814,0.6851413841359317,-0.38997118081897497,-0.6108387960121036,0.10734456870704889,-0.7005466273985803,0.32941293297335505,-0.7834983924403787,0.021492857951670885,-0.5824851663783193,-0.23347916174679995,-0.699247298296541,0.5627660141326487,-0.8669491140171885,0.9899159339256585,0.30589139834046364,-0.4103744886815548,0.783038888592273,0.6754213310778141,-0.03126319218426943,0.6132749738171697,0.11773750325664878,-0.053179515060037374,0.05293611763045192,0.3568732072599232,-0.3036298891529441,0.2676217560656369,-0.7941191792488098,-0.5711875814013183,-0.5481324950233102,-0.8171922978945076,-0.6513496567495167,0.717346457298845,0.8462611045688391,-0.61451326450333,-0.01692578662186861,0.5334383882582188,0.9939399659633636,0.7640530467033386,-0.377265443559736,-0.11690254276618361,0.025189276318997145,-0.7125642425380647,-0.37941059190779924,0.9710282981395721,0.013728778343647718,0.1903064390644431,-0.16540612699463964,0.04066045815125108,0.447791192214936,-0.8715435643680394,-0.6333788326010108,-0.6195028279908001,0.13218375900760293,-0.7244318858720362,0.14497512858361006,-0.43447451991960406,-0.5639761877246201,-0.31199231930077076,0.6862372606992722,0.6055279178544879,-0.5902587971650064,-0.10227466141805053,0.06830026442185044,0.34069468174129725,-0.8446340756490827,0.053753956221044064,0.47196685895323753,-0.40311067132279277,-0.6297696530818939,-0.7317136470228434,0.43775708228349686,0.1332226782105863,0.4002380850724876,0.019603309221565723,-0.8218493987806141,-0.28267406299710274,-0.7089053178206086,0.6780773648060858,-0.44575936580076814,0.6552664823830128,-0.023904415778815746,0.736042847391218,-0.3943596938624978,0.3915235586464405,-0.5266145328059793,-0.6357087083160877,0.19667968340218067,-0.6343591385520995,-0.5258388505317271,0.28382996283471584,-0.6059088483452797,0.4400785369798541,-0.6808749493211508,0.9671382498927414,-0.3854103907942772,-0.28140070103108883,0.4745119628496468,0.7287381938658655,0.5022024656645954,-0.725671770516783,-0.4372182791121304,0.524559079669416,0.8876287136226892,-0.8619671370834112,-0.36348019167780876,0.08026494877412915,0.6137841967865825,0.16843927465379238,-0.9347257749177516,-0.20457875449210405,0.554168083705008,-0.8212009035050869,-0.17169206636026502,-0.4210552633740008,0.022200702223926783,-0.6770783383399248,-0.670718512032181,-0.4001838634721935,-0.6950533208437264,-0.9301580870524049,-0.20579477539286017,0.7402303484268486,-0.6221670261584222,-0.5222138091921806,-0.35189792793244123,0.5961844054982066,0.4793509137816727,0.7159862257540226,0.18342551589012146,-0.4042339310981333,0.4396768151782453,-0.9779214044101536,0.3376295743510127,-0.7949147773906589,0.6425967183895409,-0.1560420268215239,0.5193212018348277,-0.21740239579230547,0.9015379762277007,0.47643448784947395,0.8935558660887182,0.14843030972406268,0.5772877861745656,-0.36604781402274966,0.9483319018036127,-0.791286890860647,-0.199015059042722,-0.4681580262258649,-0.9640577537938952,0.5357253109104931,-0.25462661078199744,0.7827359042130411,0.9022997952997684,0.8414413421414793,0.8891335623338819,0.21439641527831554,0.5768186985515058,0.2962537449784577,0.9749210732989013,0.0034935600124299526,-0.44999671867117286,-0.09009582549333572,0.21921980939805508,0.6007573390379548,-0.39551654271781445,0.33070505037903786,-0.2643741979263723,-0.3075884412974119,0.19118256866931915,0.8837094530463219,-0.6205322192981839,-0.7570456992834806,0.20754263969138265,0.8026512488722801,0.6823739968240261,-0.39784083468839526,0.5350175839848816,-0.35848091822117567,-0.3766433079726994,-0.4243744113482535,0.8338053501211107,0.5129506317898631,0.034086741507053375,-0.9083391656167805,0.14374414645135403,-0.2607152839191258,0.8610153747722507,0.9077459312975407,-0.23206254094839096,-0.9976249020546675,0.1240993239916861,0.04193028761073947,0.2898477492853999,-0.19537968328222632,0.5985245127230883,0.874306607991457,-0.07611469179391861,0.09814869053661823,0.18108939426019788,0.9822407895699143,-0.13460641028359532,-0.5471338001079857,0.040477178525179625,-0.6570413261651993,-0.7809264468960464,0.09708474110811949,0.41006905399262905,0.05937463091686368,0.4240515208803117,0.03604906564578414,0.8494393597356975,-0.21004813397303224,-0.3393537811934948,0.752140726428479,0.9261289550922811,-0.4225550531409681,-0.2064293548464775,-0.0971946669742465,0.8569546355865896,-0.28603079728782177,-0.9424548861570656,0.4969601556658745,0.16050520073622465,-0.3858470511622727,0.9974274206906557,-0.0986565463244915,0.28586753737181425,0.8388980361633003,-0.4878607806749642,-0.497352815233171,-0.6037762579508126,-0.8057187730446458,-0.5176897686906159,0.8023571036756039,0.8789156745187938,-0.19901161547750235,0.2710395879112184,-0.8434651209972799,-0.7580337258987129,-0.7843869933858514,-0.6478767013177276,-0.8723488706164062,0.6495741750113666,-0.6322892550379038,0.6025135614909232,-0.8576707919128239,-0.052895273081958294,0.13192522106692195,-0.6240122173912823,-0.018904642201960087,0.9010497271083295,0.6175604206509888,-0.8282303893938661,0.7301792399957776,0.13615841325372458,-0.38547698175534606,0.3783191340044141,0.05766944866627455,-0.03472399525344372,0.6106078792363405,0.5862065842375159,-0.445226498413831,0.2009270335547626,-0.8646788843907416,-0.918018571101129,0.5450676935724914,0.6100939544849098,0.37363493349403143,0.22025748947635293,0.14867640798911452,-0.42649390595033765,0.8311352566815913,-0.3521448075771332,-0.26574784982949495,0.5036400887183845,0.27582037076354027,0.08725852705538273,0.8375095585361123,0.3385557495057583,-0.7574296053498983,-0.8282876526936889,-0.7694478398188949,-0.4256096389144659,-0.5176468463614583,-0.12547132326290011,-0.20028967410326004,-0.6743563790805638,-0.36453992407768965,-0.6157114524394274,0.8259231215342879,-0.8571004858240485,0.9750550505705178,0.26787635404616594,0.880030479747802,0.5114481220953166,0.36516244895756245,-0.9293399727903306,0.08853383176028728,-0.5282312077470124,0.39704575156793,0.9695784035138786,-0.4572250097990036,-0.5971665559336543,0.7093957895413041,0.7966278102248907,0.8348762062378228,-0.14646047493442893,-0.44198382273316383,-0.788415115326643,0.34290648391470313,-0.6569747128523886,0.4606257528066635,0.5357286403886974,0.5421053757891059,-0.6287403930909932,0.8813604796305299,-0.3698168904520571,0.9897467158734798,-0.22457034746184945,-0.6679673241451383,0.7571615166962147,0.5375678930431604,-0.28501111920922995,0.3635547533631325,-0.01168656162917614,0.9298459063284099,-0.4493238106369972,0.5131070306524634,-0.5954626789316535,0.5934808016754687,-0.9954255986958742,-0.22414798056706786,-0.12741046911105514,-0.08129118010401726,-0.563175814691931,0.746217196341604,0.05506086954846978,-0.07430697744712234,-0.4689512653276324,0.213093145750463,0.5939159099943936,-0.40216848300769925,-0.892616059165448,-0.03438901295885444,0.6096296226605773,-0.9884021976031363,-0.25933118537068367,-0.7352428431622684,-0.1354143680073321,-0.906094157602638,0.5954894940368831,-0.5467594265937805,0.984533553943038,-0.736883953679353,0.20858183270320296,0.2375500462949276,0.06494257785379887,-0.08835205528885126,-0.027190180495381355,-0.8851864403113723,-0.3550195908173919,-0.9299140418879688,-0.35411167424172163,-0.22917968034744263,0.03134582471102476,-0.12041029054671526,-0.8634695555083454,0.3966362774372101,-0.3564100405201316,-0.7971990541554987,-0.5490466691553593,0.2942765289917588,0.5318627767264843,-0.8091680379584432,0.6055971165187657,-0.007253518793731928,0.24896172294393182,-0.9287765887565911,0.8689277656376362,0.9267337257042527,0.4861952690407634,-0.8678309060633183,0.149209245108068,-0.5489909215830266,-0.8581219743937254,-0.23455952759832144,-0.5540624498389661,0.4316778816282749,-0.2479993486776948,0.7111918539740145,-0.1574147124774754,-0.6392687917686999,-0.6275351289659739,-0.2563290223479271,0.5480642053298652,0.9159857155755162,0.39257960580289364,-0.2547606360167265,-0.11378972325474024,-0.778503327164799,0.4658745899796486,0.5124728926457465,-0.5740560968406498,-0.026057669892907143,-0.15337334480136633,0.04664461361244321,0.6809204877354205,-0.561943044885993,0.5912604685872793,-0.7613343298435211,0.5042856601066887,-0.27318578492850065,0.062279966194182634,0.7613208633847535,-0.17510884953662753,0.44202603306621313,-0.4805405489169061,0.6363920089788735,-0.9468703642487526,0.8540777736343443,-0.6112406374886632,-0.11437455052509904,-0.7217734297737479,0.7912658820860088,-0.7010725000873208,-0.5417507491074502,-0.9386443844996393,0.9558620438911021,-0.44589080195873976,-0.593584833201021,0.024527119006961584,0.9720189129002392,-0.5577596630901098,-0.07028936734423041,-0.9493142738938332,0.2362635163590312,0.08138098614290357,0.28059903578832746,0.7546722325496376,-0.643326757941395,0.23003158904612064,-0.593814461492002,0.6974954982288182,-0.44440086651593447,0.5741990860551596,-0.6224830043502152,0.550195628311485,0.06397711159661412,-0.3802083721384406,0.8933494947850704,0.7510138722136617,-0.2219764762558043,0.32249214593321085,0.7807026840746403,-0.9325184095650911,0.27159481728449464,0.15281144808977842,-0.011748659890145063,-0.9297282700426877,0.7096419990994036,0.018556825816631317,0.8245894466526806,-0.23734705010429025,-0.28777958173304796,0.6011142279021442,-0.6123320064507425,-0.5367831639014184,-0.48352068243548274,-0.6220298428088427,-0.883263573050499,0.5630920464172959,-0.510766782797873,0.7174248429946601,-0.15461168764159083,-0.3095203614793718,-0.04134897282347083,0.70569765008986,-0.9974735360592604,-0.701798849273473,-0.2733900905586779,-0.8431481225416064,0.9703432503156364,0.3203949690796435,0.12468126276507974,-0.13531219540163875,0.20313317934051156,-0.3432211778126657,0.049266132060438395,0.3060016883537173,-0.8141888990066946,-0.790145599283278,-0.7989986930042505,-0.4126404821872711,-0.3185862326063216,0.5532242436893284,-0.28331466810777783,0.7418095711618662,0.3095119306817651,-0.24234290001913905,0.29433152824640274,0.8248572810553014,-0.15493339765816927,-0.47605559788644314,0.5275346180424094,0.30406086798757315,0.6567292390391231,0.9230385012924671,-0.1652390374802053,0.7960855267010629,0.7313971272669733,-0.06176828499883413,-0.39320841571316123,0.268416543956846,-0.8092450723052025,0.07867397228255868,-0.11622748523950577,-0.8511964492499828,-0.9110114802606404,0.5619887304492295,0.5983745898120105,0.12451304262503982,-0.8011783645488322,-0.2841029348783195,0.3753941226750612,0.0010106759145855904,0.3845589659176767,0.9023449127562344,0.2235182635486126,0.7054981933906674,-0.35768806328997016,-0.12346022995188832,-0.5754688433371484,-0.47242830414325,-0.4801799412816763,-0.4627498188056052,-0.6073696208186448,-0.6240374422632158,0.12412899266928434,-0.5763918533921242,0.7770291725173593,-0.5049286824651062,-0.19628230994567275,0.7018685941584408,0.6556629920378327,0.11973081855103374,-0.7889088960364461,-0.20674884598702192,0.6866851402446628,-0.5554827358573675,-0.31846349127590656,-0.4652448077686131,0.29029487166553736,-0.5260798721574247,0.8742671106010675,0.45853685261681676,-0.5186117347329855,0.9821247537620366,0.4937038286589086,-0.6300503928214312,-0.7335618548095226,0.3537711747922003,0.7206741282716393,-0.43949373764917254,-0.2564644617959857,-0.7270450596697628,-0.28229648154228926,0.8481620321981609,0.5133707202039659,0.28870394406840205,-0.11647905502468348,-0.44541764399036765,0.3734442498534918,-0.7855104808695614,-0.979706693906337,0.010326995514333248,-0.2923104749061167,0.30749432323500514,-0.8165727448649704,-0.8225647313520312,0.6984347449615598,0.5508960806764662,-0.8813783787190914,-0.050457592122256756,-0.4374266597442329,0.5510542369447649,0.8899012082256377,0.48263065703213215,0.9836232932284474,0.570893176831305,0.660454039927572,0.7441176734864712,-0.36538145085796714,-0.02662660088390112,-0.05896979523822665,0.5347669618204236,-0.6939619607292116,0.5309761166572571,-0.03863874636590481,0.30715366546064615,0.9185620774514973,0.9844808652997017,0.9010674920864403,-0.7011280860751867,0.5341252163052559,0.5179901216179132,0.5561053110286593,0.9910352085717022,-0.5339464331045747,-0.10746822832152247,-0.7340324190445244,0.03730253456160426,-0.0029004020616412163,0.6338981008157134,0.722231809515506,-0.05847874144092202,-0.05813721800222993,0.8657234217971563,-0.7004687627777457,0.8665215871296823,-0.11307675065472722,-0.6175595922395587,-0.3241698108613491,0.2877438520081341,0.77049072785303,0.9839583351276815,0.7587066260166466,-0.016401287633925676,0.22359691886231303,0.721134283579886,0.32098667370155454,0.4169169273227453,-0.3782835970632732,0.8571191062219441,0.7012677099555731,-0.22820484871044755,-0.7122682887129486,-0.2388449376448989,0.7580642718821764,-0.8065203833393753,0.5495429495349526,-0.4261381132528186,0.32805477594956756,0.1968201519921422,0.9901581723242998,0.213427706155926,0.9100102782249451,0.767552356235683,-0.6231258385814726,-0.6341154491528869,0.8254442159086466,0.0007769349031150341,0.6631399760954082,0.12380791688337922,-0.8533588605932891,-0.8564334982074797,0.17071100929751992,-0.34342982387170196,0.6276169843040407,-0.33423954900354147,0.35979421390220523,0.23779040994122624,0.163873553276062,-0.5579381808638573,0.12203074106946588,0.7123346668668091,0.2330986144952476,0.22192289726808667,-0.2179383779875934,-0.3956421222537756,-0.7600189731456339,-0.33394882595166564,0.912050892598927,0.8333278587087989,0.31899382127448916,0.9645934449508786,-0.9173261090181768,0.7060422045178711,0.5777632771059871,0.38777298806235194,-0.6258367276750505,0.1958601619116962,-0.6824310757219791,-0.23256024112924933,0.7617098460905254,0.7179239923134446,-0.1767233139835298,0.1361617404036224,0.1521728285588324,-0.7914376109838486,-0.8651938028633595,-0.46917423186823726,-0.17647704435512424,0.8411593236960471,0.6668117120862007,0.8124418463557959,-0.7452673376537859,0.2858501058071852,-0.03227893775328994,0.1831694385036826,-0.5880100717768073,0.9934049895964563,0.1176709346473217,0.41380709782242775,0.7142928265966475,-0.015611426439136267,-0.47719863848760724,-0.08254226250573993,0.493903290014714,-0.5788805414922535,-0.9290707940235734,-0.6557167889550328,-0.8887170339003205,0.6871224553324282,-0.6724080489948392,-0.9421153422445059,-0.3009239109233022,0.9763660873286426,-0.4317375682294369,-0.9226469197310507,0.10046542901545763,0.18972195591777563,-0.1272073481231928,0.47635293984785676,0.915436546318233,0.9880763636901975,-0.7932602963410318,-0.9001951650716364,-0.4434114354662597,0.9718214618042111,-0.12242332519963384,-0.17154052667319775,-0.6041520773433149,0.4978643134236336,-0.9721406190656126,-0.1111127296462655,0.16076549887657166,0.13974971184507012,-0.5100013031624258,-0.8471989114768803,0.7602819711901248,0.6544045000337064,0.5344796911813319,-0.7721760449931026,-0.2199851549230516,-0.4784187860786915,0.3917986871674657,0.8118333271704614,0.6857542209327221,-0.27374912053346634,0.4918613759800792,0.5444428930059075,-0.06517275143414736,0.07499390933662653,-0.5103834737092257,-0.8961513717658818,0.21212660474702716,0.04886242048814893,0.59518186096102,0.5648850756697357,0.5403608065098524,-0.4151341523975134,-0.30459262942895293,-0.07927348744124174,0.6344827958382666,-0.24299817625433207,-0.9807390654459596,-0.5340440194122493,-0.5929278871044517,-0.11497669853270054,0.015175266657024622,-0.22457815892994404,0.3249276662245393,0.4433355084620416,-0.06477362057194114,-0.24162868224084377,-0.40340338880196214,0.753110442776233,-0.3429398792795837,0.7705837017856538,-0.31850217934697866,0.7436967636458576,-0.5181867936626077,-0.0888505601324141,-0.37893649749457836,0.7879879754036665,0.6129200770519674,-0.5171580389142036,-0.8742684591561556,-0.6998028471134603,-0.26036992808803916,-0.855429467279464,-0.7160630263388157,-0.13664964074268937,0.39632388669997454,-0.04697761172428727,-0.7762793903239071,0.7853311584331095,0.03803380997851491,0.08368728216737509,0.925018438603729,-0.048235624097287655,-0.4773888187482953,-0.7642593253403902,0.8385847271420062,0.06425204034894705,-0.8547667702659965,0.336358695756644,-0.18242395762354136,-0.9363820604048669,-0.7169088670052588,-0.17689974047243595,0.3893801225349307,-0.5238704741932452,0.9819137519225478,0.9366007624194026,0.7181277824565768,-0.6973245986737311,0.6155284764245152,0.3141004731878638,-0.10598872695118189,0.3706764904782176,-0.9623081865720451,-0.10855907667428255,-0.7352368528954685,0.8733539008535445,-0.19448311300948262,0.4491064166650176,0.17656380264088511,-0.47589106438681483,-0.2420733394101262,0.6003136169165373,0.859768417198211,-0.4470942663028836,0.24095317907631397,-0.7481824979186058,-0.5048645450733602,0.09784402744844556,-0.3666989114135504,0.9969303477555513,0.21566934091970325,0.20247805258259177,0.006338078062981367,-0.5649146153591573,0.4045231998898089,-0.617079044226557,0.25880482280626893,0.2850193972699344,0.15480318339541554,-0.044421153608709574,0.5005304170772433,-0.9367440808564425,-0.2650934709236026,-0.3120904928073287,-0.5238449322059751,0.8221734934486449,0.7602142379619181,-0.5074865072965622,-0.42832305701449513,-0.6912520374171436,0.9709759335964918,0.9668515571393073,-0.40499851712957025,0.7918385975062847,0.9140814025886357,-0.694212797563523,-0.8190640048123896,-0.46053295815363526,0.5919267837889493,0.5461550480686128,-0.2534187282435596,-0.7065600822679698,-0.5779830715619028,0.6623548059724271,0.2688022027723491,0.060752163641154766,-0.009830327704548836,0.9490412748418748,-0.596919868607074,-0.7921934090554714,-0.905932770576328,-0.9916856451891363,-0.565940132830292,0.2875659321434796,-0.5593778942711651,0.1602787529118359,0.77700059954077,0.35847513237968087,-0.41219976311549544,-0.5355364778079093,0.2172428509220481,0.8187252613715827,-0.977251514326781,0.5283918315544724,-0.804423127323389,-0.12191653531044722,-0.7497104411013424,0.8244853913784027,0.15744679141789675,-0.6784047782421112,0.5164488581940532,0.27138577913865447,-0.3148114285431802,-0.5104514956474304,0.4416582412086427,0.8180693965405226,-0.1921304021961987,-0.07859065802767873,-0.5901027470827103,0.7173399715684354,-0.07924525951966643,-0.3429806185886264,-0.5421803710050881,-0.04862889600917697,-0.9031210080720484,0.8780661434866488,-0.7142144781537354,-0.10450202645733953,0.27211255999282,0.6909459005109966,0.44660294940695167,-0.8842600677162409,-0.3656091243028641,0.17441469011828303,-0.5812218147329986,-0.8515200950205326,-0.18738270225003362,0.7282588137313724,0.04788923403248191,0.40217636665329337,-0.060548420529812574,0.804677729960531,-0.8071370245888829,-0.6711142407730222,-0.3559495396912098,-0.8599139675498009,-0.06736870622262359,-0.2576334662735462,0.8441833727993071,0.2132691964507103,-0.4975608792155981,0.6887282561510801,-0.8131091818213463,0.024830623529851437,0.36742537189275026,0.9800320588983595,0.8276487751863897,-0.35402736347168684,-0.1996997189708054,-0.5994059313088655,-0.44083597511053085,0.1776982881128788,0.7539231986738741,0.16772906156256795,0.9647750500589609,0.30645897425711155,-0.7947806469164789,0.45164310559630394,0.14510811166837811,0.9542531240731478,-0.6152398707345128,-0.5166722503490746,-0.7128262622281909,0.14516441151499748,0.6671980898827314,-0.23242994444444776,-0.5279503860510886,0.5410720063373446,-0.4826275687664747,-0.6274898862466216,-0.9200861528515816,0.6825025477446616,0.9778171577490866,0.7340921727009118,0.8334650578908622,-0.8255369574762881,0.9239446334540844,0.2874630466103554,0.8074932396411896,0.9443700294941664,0.5665116417221725,0.6406871401704848,0.13572085555642843,0.19694592244923115,-0.12990027386695147,-0.7457447624765337,-0.5711729032918811,0.8956111827865243,-0.5086178919300437,-0.5163188185542822,0.27346700010821223,-0.36921404441818595,-0.1275527416728437,-0.3062809510156512,0.8351521021686494,0.8072666707448661,-0.013824481517076492,0.4800115767866373,-0.4009945052675903,-0.4810142684727907,-0.9936698013916612,-0.6570376544259489,0.09499477175995708,-0.5392429307103157,-0.6645678258500993,0.4944404033012688,0.040365954395383596,0.6101291659288108,0.453916035592556,0.8422878365963697,-0.08151005068793893,-0.0896427147090435,0.8935965206474066,0.8131476384587586,-0.546945720911026,0.021304972004145384,0.07984158908948302,-0.04918252397328615,-0.4174677236005664,0.3671010062098503,-0.21016824012622237,0.4244964816607535,0.7014366877265275,0.1029207119718194,0.4022765667177737,-0.3268085983581841,0.63915661489591,-0.22532848408445716,-0.22080125380307436,-0.7950485795736313,0.06211175676435232,-0.8796701729297638,-0.4215260222554207,0.2072419193573296,0.09486808674409986,0.012749163433909416,0.739446958526969,0.670163398142904,-0.7295623212121427,-0.40270615415647626,0.5719220200553536,0.6572351725772023,-0.6417510798200965,-0.6120771998539567,-0.9022014196962118,-0.8281225659884512,-0.2854839744977653,-0.7578537329100072,-0.35332928923889995,0.2913081315346062,0.03841538494452834,0.17390196351334453,0.8823177227750421,0.8318356056697667,0.2174897799268365,0.2976997015066445,-0.9396240999922156,-0.8379123848862946,0.6528212586417794,0.656822684686631,-0.9281182670965791,-0.9443383822217584,0.5381047362461686,-0.5861160336062312,0.7081433199346066,0.8289580303244293,0.48755800165235996,0.7286443011835217,0.6989926020614803,0.9753916575573385,0.12753757182508707,0.274210833478719,-0.09007401997223496,-0.6569682466797531,0.6523981816135347,-0.6954216063022614,0.5015795114450157,0.9893584907986224,0.05669974163174629,-0.24096315447241068,-0.6233048080466688,0.21601737942546606,0.0770011623390019,0.6364269265905023,-0.9510194626636803,-0.9700679825618863,0.8446821239776909,0.38588502490893006,0.49308700347319245,0.25624549435451627,-0.30077052069827914,0.03923430945724249,-0.4607506589964032,-0.9613590813241899,-0.9283373160287738,0.7680811840109527,0.8606412028893828,0.881239150185138,-0.9464209438301623,-0.7666632905602455,0.9740209616720676,-0.7971892976202071,0.9945003874599934,0.28084900975227356,-0.466229485347867,-0.4558456391096115,0.35033919336274266,0.16258925758302212,-0.8867717399261892,-0.8217545710504055,-0.2655562120489776,0.9552385006099939,-0.2968113166280091,0.2679932340979576,-0.12224868824705482,-0.6378739639185369,-0.2868445236235857,-0.02754866937175393,-0.9359191954135895,0.507124247495085,-0.5966944973915815,0.7741056107915938,-0.20557046867907047,0.9749836097471416,-0.16936724912375212,-0.53590347757563,0.07812490360811353,-0.5266962428577244,-0.04302751086652279,0.6001732149161398,-0.8489666604436934,-0.4341608053073287,-0.8350738249719143,0.9872540659271181,-0.22496626060456038,0.39367858320474625,-0.41215299582108855,0.7319374792277813,-0.005860862787812948,0.5142794861458242,-0.2998283081687987,0.18565127300098538,0.07452595280483365,0.9619867615401745,0.6257121930830181,-0.08548300387337804,-0.43659840198233724,-0.7268735528923571,-0.6044634878635406,-0.9877123953774571,0.2615281562320888,-0.9121901653707027,0.11593691073358059,0.013804091140627861,0.323439653031528,-0.9293164946138859,-0.5631602257490158,-0.5551231810823083,0.5745315179228783,0.8386961077339947,0.044159356504678726,-0.38306873198598623,0.9807348316535354,0.3459826912730932,0.5341040515340865,-0.7620906457304955,0.6114598871208727,-0.5707731395959854,0.4105142247863114,0.12240449571982026,0.8867835276760161,-0.24453023402020335,0.5483962716534734,0.35040604835376143,-0.49902871437370777,-0.5209557372145355,0.25418701814487576,0.913836338557303,0.25223361048847437,-0.6837741886265576,0.1054533626884222,-0.853054681327194,-0.1966521912254393,-0.5121521502733231,-0.3696824498474598,0.45442566787824035,0.7014747248031199,-0.03735165297985077,0.19928796356543899,-0.5718083321116865,-0.10126763442531228,-0.7195949913002551,0.41405440028756857,0.7636822084896266,-0.4880866124294698,0.9287148383446038,-0.7326289666816592,-0.9721278264187276,0.2931944695301354,-0.11858830321580172,-0.21409968938678503,-0.06951476400718093,0.20891336165368557,-0.23153717909008265,0.7577329031191766,0.45081703551113605,0.26004366064444184,-0.739658520091325,0.027867520693689585,0.5813796822912991,-0.043434059247374535,0.5956771378405392,0.7537583839148283,0.2610742012038827,-0.474230804014951,-0.8955651037395,-0.46578407008200884,0.31656538834795356,0.5759735768660903,-0.5037621492519975,-0.45184769527986646,0.6438708920031786,0.6930665113031864,0.3180346731096506,-0.10920538892969489,-0.7621664060279727,-0.32154191425070167,0.6032803249545395,0.07549904519692063,-0.9056023443117738,-0.7527999645099044,-0.3262773253954947,-0.5295219593681395,-0.8674139990471303,0.983024884480983,-0.225808116607368,0.6183820003643632,-0.9151372965425253,-0.5939478459767997,0.5890667191706598,-0.13979255501180887,-0.16135744331404567,0.09464288083836436,-0.2848637066781521,-0.46854402031749487,0.6082829106599092,0.1359408674761653,-0.04154642345383763,-0.5169554627500474,-0.0045166779309511185,-0.015176932793110609,-0.40215057181194425,0.6669812542386353,0.08655776688829064,0.5096931532025337,-0.4323354815132916,-0.5895946584641933,-0.7480208571068943,-0.44794541830196977,-0.021999436430633068,0.649362382479012,0.1045169522985816,0.9250979856587946,0.871270411182195,-0.4185864217579365,0.8572305687703192,0.6216783630661666,0.5090057728812099,-0.5694163218140602,0.05333978543058038,-0.842154664453119,0.6745324982330203,0.46974833961576223,-0.32013416942209005,0.9063329598866403,-0.8581172828562558,0.8391113830730319,0.6991029377095401,-0.14502426097169518,0.0828105891123414,-0.37020246777683496,-0.0623387792147696,0.4081303277052939,0.44216768676415086,0.05362989194691181,-0.3572636670432985,0.5871982015669346,-0.4004771402105689,-0.27798536233603954,0.8554091132245958,0.6672812085598707,-0.7417238489724696,0.5454154224134982,-0.343318376224488,0.873918719124049,0.10249703750014305,-0.7358256378211081,-0.8626459697261453,-0.2947047082707286,-0.4982019579038024,0.9008701392449439,0.06737743550911546,0.8561570839956403,0.44783099461346865,0.27182294707745314,-0.666639550589025,0.5298171332105994,-0.38402175391092896,-0.45846341038122773,0.19843269186094403,-0.09835406299680471,0.11004596948623657,-0.8677098453044891,0.5770505531691015,0.9780673114582896,-0.7521886648610234,-0.4150896747596562,-0.15210480522364378,-0.933783445507288,-0.12475863192230463,0.9738211859948933,0.7428313568234444,0.1250952142290771,-0.010453370865434408,0.3051692727021873,0.7428572652861476,-0.04615289065986872,0.31557158986106515,0.157508606556803,-0.7602046132087708,-0.21913243038579822,-0.7130420939065516,-0.8124582432210445,-0.6857649707235396,-0.4661554521881044,0.3499212362803519,-0.07755050389096141,-0.06852073688060045,0.7061445550061762,-0.5034061935730278,0.1316733192652464,-0.2070202985778451,-0.519330395385623,0.849382383748889,-0.9746937938034534,-0.18565312633290887,0.8739658324047923,-0.6992444265633821,0.24847872043028474,0.16101927310228348,-0.7986573316156864,-0.6374325007200241,-0.21287388214841485,-0.12504429509863257,-0.48999628983438015,-0.2001445866189897,-0.18844592897221446,-0.20611036522313952,0.265675981529057,-0.6638081963174045,-0.21736862370744348,-0.0576153970323503,-0.8909213664010167,-0.5173569279722869,-0.6594843710772693,-0.9109147256240249,0.9636910133995116,0.2550700637511909,0.34185876371338964,-0.7100649424828589,-0.9562778784893453,0.6365089709870517,-0.9246564102359116,-0.6870733327232301,0.25912667671218514,-0.10837589344009757,-0.3067627027630806,0.9158302834257483,-0.9890590757131577,-0.8754097209312022,0.721330929081887,0.9527567815966904,-0.7869219328276813,-0.573637374676764,-0.5192985413596034,-0.6537319314666092,0.2648463095538318,-0.5047541214153171,-0.6023841793648899,-0.5795501177199185,-0.39507380267605186,0.8127538822591305,0.10136006958782673,-0.35581277776509523,0.7224931470118463,-0.8906203741207719,-0.3337615397758782,-0.9710265519097447,-0.73749362770468,0.014592761639505625,-0.6623300788924098,0.958776205778122,-0.8520559226162732,-0.725541572086513,-0.17313905572518706,-0.7906278539448977,0.23019453370943666,-0.8485101191326976,0.7096333680674434,-0.5558889643289149,0.9177639209665358,0.22301297634840012,0.07970725186169147,0.21956504182890058,-0.740689582657069,-0.9413214563392103,0.22005690354853868,-0.32487488025799394,-0.2841518744826317,-0.4880017628893256,-0.8851289679296315,0.9388563567772508,-0.015396900475025177,0.7572586596943438,0.9268579352647066,0.19362364057451487,-0.8451011176221073,0.3594094938598573,0.6478247060440481,0.9169757971540093,-0.7569293477572501,0.11911565996706486,-0.9504222176037729,-0.40266828145831823,-0.3732796902768314,0.6742444825358689,-0.3502414580434561,-0.5304382033646107,0.8929342916235328,-0.5505209220573306,0.08606480620801449,-0.6695795622654259,-0.7961884373798966,0.2190704089589417,0.9917288236320019,0.8853430552408099,0.42650338215753436,-0.7111856453120708,0.38604717468842864,-0.005782224237918854,-0.4007362728007138,0.2644325355067849,0.5614800998009741,-0.8534170622006059,0.6224325112998486,0.6175561700947583,-0.25828811433166265,-0.36247346457093954,0.3750235568732023,-0.502754672896117,0.42671535490080714,-0.5917032710276544,-0.02444819314405322,0.4589657406322658,0.8229918982833624,0.7165044993162155,0.24793110229074955,-0.2207136768847704,-0.42533633252605796,-0.3134631831198931,-0.5791983781382442,-0.45598394190892577,-0.29083968978375196,-0.4608680089004338,0.3355146860703826,0.09774052770808339,0.05938734533265233,0.6317617679014802,-0.09840540634468198,-0.19949659425765276,-0.04268864542245865,-0.9925636826083064,-0.1853476855903864,0.8853332488797605,0.8420000448822975,0.8723474750295281,-0.16269960487261415,0.25522245233878493,0.31947097508236766,0.5547169735655189,-0.49601526837795973,0.18610098771750927,-0.10268637863919139,0.100559301674366,-0.023265022784471512,0.978010636754334,0.5408564936369658,-0.42853735527023673,0.49792707012966275,0.637447401881218,0.9121191734448075,-0.9149033352732658,0.8762472029775381,-0.6659035822376609,0.11535375844687223,0.13351534213870764,0.8375539099797606,0.6718110805377364,-0.8937758691608906,-0.3024652968160808,0.8660616069100797,-0.8794863512739539,0.7818408217281103,-0.36766795674338937,-0.5290456688962877,0.29885876737535,-0.0412762057967484,0.7706301738508046,-0.49343693908303976,0.4437802783213556,-0.3163502183742821,0.7831312222406268,0.8269033036194742,0.046181139536201954,-0.24821118963882327,-0.6283407895825803,-0.38645152328535914,-0.8624390405602753,-0.8350213412195444,0.4953850875608623,-0.8304863972589374,0.45239186054095626,-0.4208482694812119,0.8882965333759785,-0.33912770403549075,-0.25192456878721714,-0.6215993096120656,-0.5134950266219676,-0.4720425591804087,0.7241573384962976,-0.0007946775294840336,-0.8704687990248203,0.7932927017100155,-0.7638050531968474,0.44799568643793464,0.6579085397534072,0.8246193937957287,-0.14449977222830057,0.37978760665282607,0.7134496849030256,0.996604953892529,0.24967753095552325,0.22784124361351132,0.05129323760047555,-0.6378619209863245,-0.4523442932404578,0.9119769111275673,-0.5969173414632678,-0.3535876455716789,0.07273066556081176,0.22907280875369906,-0.5541438483633101,-0.6929924534633756,0.5583272338844836,0.20166868716478348,-0.9431854230351746,-0.9659899948164821,-0.06586235715076327,-0.06605238001793623,0.08572726184502244,-0.4518816168420017,-0.8420947454869747,-0.4437262206338346,0.4754097731783986,0.9585917429067194,-0.7918520760722458,-0.46494877291843295,-0.4076462429948151,-0.7314529749564826,0.6621421701274812,-0.5740947970189154,-0.08226212859153748,0.2971968404017389,-0.05856541218236089,0.8754023141227663,0.8382692444138229,0.33766486728563905,0.8842828022316098,0.12751012574881315,-0.7304668561555445,0.08211884181946516,-0.16958813974633813,0.5789124486036599,0.2829502052627504,-0.7790116029791534,0.005066986661404371,0.40088945534080267,0.7450981722213328,0.597780475858599,-0.8007244388572872,-0.10219468642026186,-0.13835618644952774,-0.8986757923848927,-0.8995967232622206,-0.19248398207128048,0.6548365782946348,0.23309708712622523,0.7749967076815665,0.4707085257396102,-0.620691854506731,0.34923680359497666,-0.4632933526299894,-0.35854230308905244,0.39330643881112337,-0.3838054374791682,0.4469253742136061,-0.028772112913429737,0.25312657793983817,0.21981084998697042,0.5807137503288686,0.5809692647308111,-0.4830922526307404,0.5641284259036183,0.48860509414225817,0.37230743188411,0.12108624959364533,0.7531872447580099,-0.751119626685977,0.4738956419751048,-0.5472298720851541,-0.5250634336844087,0.6613030568696558,0.9360074065625668,0.9851090647280216,0.09604135481640697,-0.569715934805572,0.5822600862011313,-0.23502127965912223,0.5673039448447526,-0.5005418490618467,0.8215028732083738,-0.764832685701549,-0.39049100410193205,-0.3686331151984632,0.9895321475341916,0.790222913492471,0.5747849624603987,-0.4416012712754309,-0.79687384609133,-0.5609305961988866,-0.7193591669201851,-0.02940490422770381,-0.23625043919309974,0.26013952819630504,0.195571793243289,0.3156070630066097,-0.9600216629914939,-0.3219466172158718,0.729720700532198,0.433275971096009,0.31485352804884315,0.17605340760201216,-0.9533945228904486,-0.30746285524219275,-0.19935886096209288,0.5336716244928539,0.5221301624551415,0.045845352578908205,0.09669246943667531,0.12085729278624058,-0.30563675751909614,0.7111448431387544,0.7947961622849107,0.8392107044346631,-0.15021093795076013,0.4383080117404461,-0.8877949011512101,-0.9947441052645445,-0.7856412502005696,-0.9902427047491074,-0.6602164874784648,0.09475621860474348,0.3469946817494929,0.5840369602665305,-0.4482080568559468,0.934579866938293,0.2353608449921012,0.9801373821683228,0.7327547203749418,0.31009149504825473,-0.7422423986718059,-0.8618960864841938,0.058042054530233145,0.5035607456229627,-0.8894877093844116,-0.42936032358556986,-0.811116598546505,0.5064420732669532,0.595900917891413,-0.6370108122937381,-0.700055115390569,0.28578066965565085,0.7768758721649647,-0.9648667401634157,-0.8514117375016212,0.8288205685093999,0.8774912254884839,0.233198712579906,0.9264707509428263,0.6910616480745375,0.5252342210151255,-0.6329235616140068,0.9452457735314965,0.7274296418763697,0.08351270528510213,-0.6090501546859741,0.34179000183939934,-0.37043941114097834,-0.211928382050246,-0.9993500905111432,-0.017220450565218925,0.9035048936493695,-0.35985747212544084,-0.42173125548288226,0.7228701999410987,0.06698771892115474,0.3221547338180244,-0.4164999760687351,-0.7389895524829626,0.6453877151943743,0.06254288228228688,-0.5711020966991782,0.5862448876723647,-0.6302166222594678,0.031383220106363297,-0.09027819242328405,0.2093730941414833,0.15772048849612474,-0.42580515379086137,0.44405768904834986,-0.5315452725626528,0.7922788551077247,0.9956387742422521,0.7686801822856069,0.7941037421114743,0.8538969224318862,0.19699911680072546,-0.6068821744993329,-0.41077644750475883,0.06277141440659761,0.8614923804998398,-0.050575701519846916,-0.6751252226531506,0.151308158878237,0.5888577718287706,-0.3134801252745092,0.5448316312395036,-0.3703235471621156,0.7921065958216786,-0.1244994793087244,0.6386128515005112,-0.5289453295990825,-0.7174057462252676,0.9559734291397035,0.3561098203063011,-0.7084486098028719,0.480707046110183,0.2119184397161007,0.2606931864283979,-0.6692784097976983,0.9461345812305808,0.8535930453799665,0.55428960127756,-0.23831780208274722,0.33988799806684256,-0.04104174533858895,-0.8073629676364362,-0.33696732809767127,-0.8130808374844491,-0.5378433368168771,-0.15553022595122457,0.0989699736237526,0.9640620052814484,-0.21773382555693388,0.13159241573885083,-0.3797775814309716,-0.8459364697337151,-0.8533138856291771,0.7707450687885284,0.7131623262539506,0.25200921576470137,0.8267164113931358,-0.03636952908709645,-0.6547256740741432,-0.03335440158843994,-0.4058116115629673,0.9574130000546575,-0.5764933335594833,0.60048663103953,0.36339670419692993,-0.8015761058777571,-0.34413430467247963,0.07844680128619075,0.33682374842464924,0.42570981942117214,-0.09581781690940261,0.09551259130239487,0.140197376254946,-0.3953600972890854,-0.15413125976920128,0.45852553518489003,0.009619278367608786,-0.8399684401229024,0.32006167946383357,-0.0858863927423954,0.9034973457455635,0.5743097169324756,0.8858125950209796,0.6257106228731573,0.49931696336716413,0.8425031267106533,0.7479716963134706,0.9439080925658345,0.8827922390773892,-0.008757507428526878,0.5634782342240214,0.4665112355723977,-0.6338609694503248,0.3016582992859185,-0.8365476485341787,-0.4991171155124903,-0.4477392607368529,-0.7729326500557363,-0.11921203043311834,0.33788721170276403,0.16816178057342768,-0.3372955583035946,0.5900752819143236,0.8942677415907383,-0.6422796971164644,-0.48866712348535657,-0.7941117766313255,0.248588508926332,-0.020389881916344166,0.41450118040665984,-0.37687643291428685,0.4923623641952872,0.6651119231246412,-0.48636488895863295,0.34937535412609577,0.3735157214105129,-0.6403906485065818,-0.32436311105266213,-0.8990201205015182,0.29335012985393405,-0.4162931884638965,-0.17379507841542363,-0.8375656544230878,0.3693240713328123,0.9961865837685764,0.6055469675920904,0.7713807784020901,-0.8935422794893384,-0.04025463666766882,-0.08664720132946968,0.18930440163239837,0.9017193713225424,0.7132021267898381,-0.13936652382835746,-0.6253737425431609,-0.21895588701590896,-0.5827573416754603,-0.8454223875887692,-0.8337812568061054,-0.1378871607594192,0.6491364277899265,-0.34141477989032865,0.13506898190826178,-0.03200535802170634,0.8873027199879289,-0.8643288547173142,0.9583168756216764,0.8070199540816247,-0.1400440763682127,0.4015083662234247,-0.4794270507991314,0.45055357925593853,0.19250746490433812,0.6420661504380405,-0.8284496911801398,0.2963568940758705,0.5214585927315056,-0.6652059792540967,-0.3839525352232158,-0.8741990798152983,0.23404260305687785,0.3965568896383047,-0.04978991346433759,0.8496857979334891,0.5554390586912632,0.10362237738445401,-0.1276831841096282,0.8046019268222153,-0.4994373987428844,0.7003290932625532,0.9280274487100542,0.4599396330304444,0.4558636718429625,-0.379702540114522,-0.30104932421818376,0.0012917360290884972,-0.6002516816370189,-0.6308757159858942,0.457914131693542,0.7290283353067935,-0.7893500295467675,-0.3297485504299402,-0.2449141014367342,-0.7904167925007641,0.14600710710510612,-0.9703723294660449,0.5801493464969099,-0.5647742706350982,-0.5230631581507623,-0.5772801423445344,0.1777720390819013,0.640462257899344,0.07870693085715175,0.8629153212532401,0.5392894740216434,0.20064792362973094,0.2890091366134584,-0.6038686726242304,-0.46011431561782956,-0.42393171647563577,-0.3884897097013891,0.9290252383798361,-0.5031607081182301,0.5121203381568193,-0.9731554272584617,-0.3222763300873339,-0.6650605914182961,0.8647476541809738,-0.7978486525826156,-0.40588211501017213,-0.6765462881885469,-0.2146527892909944,0.65341453300789,0.027596290688961744,0.5785592328757048,-0.16908924467861652,-0.2901550270617008,0.7418621559627354,-0.3021871871314943,0.178478779271245,0.9758323905989528,-0.0870435661636293,0.4604463707655668,0.2062382772564888,-0.5603525834158063,0.1797427460551262,-0.21811331622302532,0.7378477500751615,-0.08386935712769628,-0.019082723185420036,0.2728606485761702,-0.018656374886631966,-0.792008017655462,0.6356004574336112,0.9417913588695228,0.36685263412073255,0.21263585751876235,0.3121116189286113,-0.04486770322546363,-0.8201929554343224,-0.09618197474628687,0.46408601803705096,0.4539361270144582,-0.24346873303875327,-0.36726848455145955,0.21272656228393316,0.7137766513042152,-0.9516165619716048,0.2312160562723875,-0.7659703604876995,0.4639947754330933,-0.8511935700662434,-0.9900416014716029,-0.4789937795139849,0.08817578479647636,0.21762030757963657,-0.1159189767204225,0.2523085540160537,0.2545783114619553,-0.40614129696041346,0.07235822407528758,-0.8546706242486835,0.9529108358547091,0.08567065419629216,0.38789080968126655,-0.6518015838228166,0.3590822326950729,0.13169728964567184,0.2184775797650218,0.0581615143455565,0.7712105992250144,0.2878765962086618,-0.09296916564926505,0.9304237104952335,0.2886972976848483,0.9969247006811202,-0.6645901361480355,-0.2367443428374827,-0.9988928404636681,-0.8713504704646766,-0.019328442867845297,0.3684704494662583,-0.2563954181969166,0.3350433064624667,0.09223156981170177,0.19760406902059913,-0.6510657975450158,0.3778519229963422,0.6498065893538296,0.049194002058357,-0.5902505349367857,-0.0753735201433301,0.22977543575689197,-0.6103030918166041,0.9075085446238518,-0.05304365744814277,0.2669667834416032,-0.1926942877471447,0.541409570723772,0.17916909232735634,0.7303016316145658,0.6047286954708397,0.30300192488357425,0.8161485339514911,0.44593573827296495,-0.6798281520605087,0.09598066424950957,-0.09988930262625217,0.8870291067287326,0.25617316318675876,0.40223824651911855,-0.8164565917104483,0.7006985833868384,-0.6966115301474929,0.284295042976737,0.5366502311080694,-0.8570334506221116,0.9404389024712145,-0.3388196090236306,-0.3132584523409605,-0.8412670148536563,0.6301385876722634,0.13988407794386148,0.6765186176635325,0.30856255535036325,0.7905365522019565,-0.5118526318110526,-0.026766020338982344,0.8637651894241571,0.654343475587666,-0.5592600791715086,0.7117652157321572,0.9759200694970787,0.7849512603133917,0.5528394090943038,-0.5714184194803238,0.8599975132383406,0.3887588926590979,-0.8218122432008386,-0.4863232336938381,0.240421658847481,0.8087990735657513,0.36296221148222685,-0.7850606082938612,-0.8376067313365638,0.642947900108993,0.39254551753401756,0.4594693472608924,-0.5504350531846285,0.4155779341235757,0.8658917886205018,-0.8365033171139657,-0.7119030607864261,-0.10592317907139659,0.2709372886456549,-0.5037469048984349,-0.1434863549657166,-0.9532248182222247,-0.9410134148783982,0.10352122224867344,-0.6838951851241291,0.2186140762642026,0.494742676615715,-0.7245693341828883,0.11903548566624522,0.03151692682877183,0.4337947820313275,-0.22349502658471465,-0.13698989152908325,0.013567695394158363,-0.680449265986681,-0.609331885818392,-0.15848888596519828,-0.5506369504146278,-0.1189637677744031,0.041750837583094835,-0.30739312665537,-0.1350214947015047,-0.5182967889122665,-0.073374985717237,-0.8231239044107497,0.5479473909363151,-0.01114101754501462,0.0595933198928833,0.12507411930710077,0.10420761164277792,-0.03582568932324648,0.03588554635643959,-0.004410466179251671,0.8537067365832627,0.46250737411901355,0.919045789167285,0.2066888571716845,0.43041164986789227,-0.6352646737359464,0.6720489151775837,0.9160388545133173,-0.1723589957691729,0.5858298824168742,0.4556931871920824,-0.6217991267330945,0.9314371659420431,-0.8268970982171595,-0.4226550757884979,0.9269387973472476,-0.17663126438856125,-0.6574997552670538,-0.41763786412775517,0.7318759863264859,0.5842771772295237,-0.15950117446482182,-0.7509099394083023,0.9656689916737378,0.8901223735883832,-0.8978196419775486,-0.3948507406748831,-0.039995407685637474,0.3868508911691606,-0.7576023167930543,-0.3243337068706751,-0.4556761006824672,-0.2890626136213541,0.9270621975883842,0.22672951966524124,0.1934174532070756,0.5189226754009724,-0.21383001934736967,-0.8797739804722369,0.41513443645089865,0.768911958206445,-0.8094504154287279,-0.4540014392696321,0.6632361053489149,0.33148588333278894,0.6643503215163946,-0.6221290593966842,0.4686057078652084,-0.6681967340409756,-0.7810391765087843,-0.9792344123125076,-0.00030573923140764236,-0.2314969664439559,-0.28699448937550187,-0.20102812116965652,-0.27289014123380184,0.03388898400589824,-0.3531901394017041,0.8754749288782477,-0.3687921273522079,-0.0523016145452857,-0.9225423061288893,0.6144834132865071,-0.7222844511270523,-0.6234299545176327,-0.5100955097004771,-0.6966479122638702,-0.6209553112275898,-0.19615280535072088,-0.7504301820881665,-0.17978847352787852,0.4308392838574946,0.9922806425020099,-0.9669498517177999,-0.8867265363223851,-0.933697059750557,-0.33662770921364427,0.33508863393217325,0.2198563776910305,-0.68655278487131,-0.55917411390692,0.026263305451720953,-0.8691151533275843,0.4799747569486499,-0.31846327101811767,-0.06051858561113477,0.42063281405717134,-0.358417852781713,0.9496589098125696,-0.7492877286858857,-0.37187537318095565,-0.5632651802152395,0.8882451774552464,-0.7616773410700262,0.31387140322476625,-0.4357719402760267,0.9908725596033037,0.7994339447468519,-0.7768096369691193,-0.8473277557641268,0.8446906176395714,0.3189356350339949,-0.5950311264023185,0.44562617503106594,-0.9703519865870476,0.7014758833684027,0.26491338200867176,-0.1556862983852625,-0.9186039906926453,0.8606364969164133,0.362497806083411,-0.8505572639405727,0.6861137510277331,-0.3639025380834937,0.6044184602797031,0.9040953135117888,0.7784409672021866,0.021105843130499125,-0.8127915388904512,-0.1738362079486251,0.3388745579868555,-0.2037416803650558,0.6147967735305429,-0.7480362351052463,0.8199090077541769,-0.1027216031216085,0.9397983462549746,0.2584993224591017,0.5319164921529591,-0.8706162660382688,-0.4413771405816078,0.7097319578751922,-0.8330019009299576,-0.6891292682848871,0.3975311270914972,-0.09095954289659858,0.1555079622194171,-0.0254768212325871,-0.9243929404765368,0.16819016076624393,0.5327216954901814,0.03433074522763491,-0.3641709485091269,-0.8136679623275995,0.6938627399504185,0.3047212469391525,-0.05422919476404786,0.447979852091521,-0.9962002737447619,-0.3882434843108058,-0.6932817390188575,0.9839455494657159,0.13140270486474037,0.6503733331337571,-0.3757860865443945,0.4791425559669733,0.2424466828815639,0.4992947457358241,-0.1228508991189301,0.4140968113206327,0.6589787248522043,-0.8200286407954991,0.051904082763940096,-0.2634136895649135,-0.4250274710357189,0.9143332266248763,-0.3598783677443862,0.06634306535124779,-0.045517089776694775,-0.8230135273188353,0.8647256772965193,-0.3035389636643231,0.9592191921547055,0.8490700693801045,0.8049047887325287,-0.13348934706300497,-0.9083923795260489,0.021771599072963,-0.481806387193501,0.18410463351756334,0.05994305992498994,-0.8560342756099999,-0.8944168221205473,0.8802936300635338,0.10275453887879848,-0.10541894938796759,-0.956587330903858,-0.18609766801819205,0.20164074981585145,0.7269255081191659,-0.9400947093963623,-0.08072134386748075,-0.06424885150045156,0.9680963242426515,-0.09806302515789866,-0.6671204599551857,-0.4605237413197756,-0.15313721634447575,0.2881846451200545,0.17827834421768785,-0.4875745535828173,0.7432602331973612,-0.8345853071659803,-0.2248408761806786,0.9753284039907157,-0.3977817497216165,-0.1315798689611256,-0.42342676036059856,-0.6170598166063428,0.2374028181657195,0.14550253236666322,0.03854236891493201,-0.10155247058719397,0.14450040506199002,0.9609217643737793,0.34302790462970734,0.4294621297158301,0.12908809538930655,0.24112745327875018,0.7448415057733655,0.05307413171976805,0.704530609305948,-0.5350007796660066,-0.4863490201532841,-0.3257398046553135,-0.3054018705151975,0.6285577877424657,0.6773470058105886,0.6900744414888322,-0.4291215380653739,0.8746762187220156,0.15851804986596107,-0.17717102728784084,-0.6004178645089269,0.45947090769186616,-0.519816916435957,0.5266553522087634,0.5666736327111721,0.3724110103212297,0.520324454177171,0.9355584746226668,0.9920351724140346,-0.8432829244993627,-0.27162543358281255,0.22473482694476843,-0.7681931047700346,0.6066794083453715,0.3308931696228683,0.7499628425575793,0.23077049991115928,0.6165990838780999,-0.8316888520494103,-0.889497812371701,0.2768290303647518,-0.5565860057249665,0.5747480853460729,-0.37264898838475347,0.4457605089992285,0.9012553938664496,0.7367765726521611,0.9338586567901075,-0.8956342190504074,-0.20792740676552057,-0.6477599116042256,-0.48682008078321815,-0.6295625623315573,-0.9807720729149878,-0.3989826636388898,-0.8790158913470805,0.8731981511227787,-0.35316075664013624,-0.6157936388626695,-0.20664661983028054,-0.5661617792211473,-0.8881581514142454,0.2335608210414648,0.33456639759242535,0.7345727677457035,-0.7801542654633522,-0.8942586467601359,0.915649373549968,0.8327328357845545,0.22364284098148346,-0.9128791629336774,0.9345145956613123,-0.3539762981235981,0.4515548045746982,0.6279230508953333,0.41374005610123277,-0.13906070543453097,-0.15243991184979677,0.14194445498287678,-0.11617032904177904,0.12113666906952858,-0.1667184541001916,0.24742847913876176,0.8929161112755537,-0.8068254701793194,-0.745301412884146,0.7600058373063803,0.3365937974303961,-0.5289630750194192,0.3842768114991486,-0.02809078712016344,-0.3287034356035292,-0.7710429467260838,-0.8376104957424104,0.9364874749444425,0.1418982152827084,0.15897933626547456,-0.014311781618744135,-0.39500998659059405,0.8124743043445051,-0.8397101466543972,0.07743783807381988,0.6679129842668772,0.3917730893008411,-0.5323370583355427,0.8486477662809193,-0.45834618574008346,-0.8664756021462381,-0.3982985601760447,0.7786201108247042,0.6960694640874863,0.47265627700835466,-0.22150174155831337,-0.7083790996111929,0.02059774613007903,0.40061703976243734,-0.1214252533391118,0.26909774681553245,-0.21647151792421937,0.6460963641293347,0.7134150518104434,0.21509311767295003,0.24001379404217005,0.7834349451586604,-0.39316093921661377,0.49874425074085593,-0.9303158298134804,0.16711009992286563,0.31507368572056293,-0.5063836248591542,0.07245196029543877,0.7180732269771397,0.5174128981307149,0.8174011055380106,0.6363518969155848,0.31976033840328455,0.1810121489688754,-0.8031932758167386,-0.5492093153297901,0.49869425781071186,0.5467816363088787,-0.3150619505904615,0.7774348868988454,-0.3320934008806944,0.7994610723108053,-0.5136158126406372,0.8855015099979937,-0.7015689718537033,0.24408396519720554,-0.2092951270751655,-0.44218891207128763,-0.28746294509619474,-0.12888656230643392,-0.04681999143213034,-0.9573709378018975,-0.5345421326346695,-0.3736110460013151,-0.453101746737957,-0.691745039075613,-0.49778125528246164,-0.5283853621222079,-0.9918119413778186,0.27675888035446405,-0.5764307361096144,0.37473735585808754,-0.06438929820433259,0.4584077000617981,-0.9460285427048802,-0.7744888011366129,-0.1861590202897787,0.5215583615936339,0.769455324858427,0.3936834945343435,-0.3074699570424855,-0.1733933831565082,-0.13677942287176847,0.0688282628543675,0.5883876625448465,-0.2149666645564139,0.3906439305283129,-0.2543676821514964,0.32474023662507534,-0.3820169698446989,0.8656510985456407,0.46132726361975074,0.09130462072789669,0.2624680991284549,-0.005760274361819029,0.6416355273686349,-0.6860825764015317,0.8983652871102095,-0.9720350936986506,0.8950880998745561,-0.5852411803789437,-0.48680387111380696,-0.3689360707066953,0.25333869084715843,0.35970005160197616,0.22771823033690453,0.4156751218251884,-0.7276203157380223,-0.7652834076434374,-0.009447151329368353,0.23117431672289968,-0.009429411496967077,0.27277124859392643,-0.7322498639114201,0.2804472534917295,-0.5366710871458054,0.1839193943887949,-0.8216011472977698,0.2441118834540248,-0.9238248602487147,-0.07390363281592727,-0.14280351344496012,-0.6322996630333364,-0.7855981215834618,-0.7767046787776053,0.9288232284598053,0.6708330377005041,0.43064184859395027,-0.3619065163657069,0.6458726204000413,0.09709287621080875,0.017168823163956404,-0.089834313839674,-0.8287208122201264,0.009456748608499765,0.5028754752129316,0.6527618989348412,-0.012523294892162085,0.4262678832747042,-0.587461244314909,0.45469976821914315,0.12947961874306202,0.5111762285232544,0.12183041404932737,0.15396135719493032,-0.042451394721865654,-0.4789955522865057,-0.08873272407799959,0.6408997639082372,-0.7241666410118341,-0.8119241236709058,-0.8930014707148075,0.6087108440697193,-0.42258029943332076,0.6585299065336585,-0.05845194170251489,0.7193075208924711,-0.07710663275793195,0.39176855562254786,0.475906141102314,0.28386437986046076,0.6597172040492296,-0.8966973475180566,0.3100243699736893,0.13371326308697462,0.9559824024327099,-0.543486597482115,-0.19955330528318882,-0.6357038994319737,0.7560904086567461,0.943842048291117,-0.6206354359164834,0.8598470068536699,0.11356922425329685,-0.6111051612533629,0.268274306319654,-0.4337536310777068,0.9066215031780303,0.7264094138517976,-0.553356705699116,0.15967818722128868,-0.026556414552032948,-0.7843069471418858,-0.6648579905740917,-0.47089722100645304,-0.05605237791314721,0.17083346284925938,0.19187308801338077,0.15162858925759792,-0.03613311983644962,0.2123202565126121,0.1983164087869227,-0.6993615259416401,0.20426855003461242,0.06464688247069716,-0.1409300258383155,0.49892439506947994,0.9024378885515034,0.6322131208144128,0.9227336472831666,0.562383356038481,0.15664167143404484,-0.1116446889936924,-0.6538164182566106,0.9741967231966555,0.31496465764939785,0.9936199593357742,0.5759383700788021,0.5362526499666274,0.8154732203111053,0.8083647373132408,-0.5406368998810649,0.6931159873493016,0.045665571466088295,-0.20449417270720005,-0.017406878527253866,-0.8222902324050665,-0.8511829050257802,0.217526541557163,0.19544853456318378,0.4140078197233379,0.12284018937498331,-0.2111398857086897,0.7216451233252883,0.18120276648551226,-0.12265503499656916,0.8911494673229754,-0.21781969023868442,0.9790499974042177,0.7645736434496939,-0.9901390238665044,-0.7603946602903306,0.040522776544094086,-0.7359588211402297,-0.7977029117755592,-0.1262042010203004,0.6677959924563766,0.005216946359723806,0.9725175453349948,-0.023206987883895636,0.7952081887051463,-0.11194900702685118,0.6808704352006316,-0.770014704670757,0.28711621602997184,0.9604984885081649,-0.41924622980877757,0.48309437884017825,-0.8700580489821732,-0.9385585351847112,0.12156400876119733,-0.16251546936109662,0.9148345729336143,-0.4145931079983711,0.007128243800252676,-0.9560910812579095,0.42779575986787677,0.7271252362988889,-0.1580244731158018,-0.8056458411738276,0.8252320252358913,0.4365264540538192,-0.1643255609087646,0.2748307138681412,-0.09844762226566672,-0.89497941872105,0.0020955544896423817,-0.6568321357481182,-0.3279332877136767,0.43619825318455696,-0.2467924333177507,0.37340109422802925,0.5249863849021494,-0.4784566471353173,-0.9705897360108793,0.396941686514765,0.48145741084590554,0.7987703182734549,0.3451118743978441,0.6209954149089754,-0.9732492649927735,-0.38513360265642405,0.4287490248680115,0.45679954811930656,0.6169378678314388,-0.5422367877326906,0.06135018076747656,-0.4301470806822181,-0.4671328724361956,-0.3169394303113222,0.5328292078338563,-0.2332260413095355,0.6213885047473013,0.9007150400429964,-0.7930486397817731,-0.008480182848870754,-0.5077609410509467,-0.7986030620522797,0.08956546755507588,-0.32869083201512694,0.39297805773094296,0.7194318473339081,0.43579004192724824,0.801247559953481,0.11972174420952797,0.3023357638157904,0.9751164894551039,-0.7388240066356957,-0.6413175016641617,0.9739590925164521,-0.2745386799797416,-0.38575440691784024,0.768708142451942,0.44212917936965823,-0.804804602637887,-0.9303359845653176,-0.7509227483533323,-0.04296555882319808,-0.11008364893496037,-0.9577641366049647,0.5342269623652101,0.750129240565002,-0.9732671016827226,-0.4028444206342101,0.970685594715178,-0.8240186758339405,0.23706291383132339,0.162510197609663,0.0374906063079834,-0.5996913984417915,-0.6384091028012335,-0.6918541239574552,0.01597336446866393,0.5122101055458188,0.44936893321573734,-0.6159748253412545,-0.4516424727626145,-0.24907316965982318,0.011280227918177843,-0.056214816868305206,-0.3893594709224999,-0.4467943273484707,-0.7286449717357755,0.6926976223476231,-0.1287035164423287,-0.02914645941928029,0.6779152546077967,-0.7695214585401118,-0.1763722295872867,-0.611627462785691,-0.6912199705839157,0.673640314489603,-0.8496254771016538,0.8032159027643502,0.5271907290443778,0.9584119385108352,0.8698495947755873,-0.5585341090336442,-0.3683672887273133,-0.4204072505235672,0.7110519632697105,-0.9335859268903732,0.9660997111350298,0.8328785360790789,0.2744788769632578,-0.7461234680376947,-0.9909399077296257,-0.6367347678169608,-0.23239068733528256,-0.0022168555296957493,-0.3196119414642453,-0.1931829615496099,0.9171032062731683,-0.2131142308935523,0.8355555650778115,0.268361235037446,0.3867140100337565,0.45942491106688976,-0.7585541536100209,0.32230175798758864,0.8649201835505664,-0.9564599543809891,0.6205535396002233,-0.10622453177347779,0.9206386972218752,0.4481379338540137,-0.936983429826796,0.9529471709392965,0.47566413786262274,-0.14063607389107347,0.8576059369370341,0.6193017861805856,0.013668801635503769,0.5961219966411591,0.9277610336430371,0.3891255562193692,0.5757228704169393,0.7459127679467201,-0.21549135586246848,0.26769352424889803,-0.023061031941324472,0.1988036767579615,0.13640482118353248,0.8793978649191558,-0.7968746521510184,-0.0675977598875761,-0.1948208436369896,-0.36390360817313194,0.8748445073142648,0.4696069643832743,0.6081990115344524,-0.9603600432164967,-0.7455091839656234,0.8867258843965828,-0.7136597307398915,-0.5908797010779381,0.09630533074960113,0.5360314683057368,0.7815224528312683,-0.9895992027595639,0.4518760242499411,-0.9940238655544817,-0.47054707910865545,0.7340163551270962,-0.42805171431973577,0.46295461570844054,0.28313193237408996,-0.710809369571507,-0.04105935199186206,-0.14466041699051857,0.7917209984734654,0.5529192686080933,-0.406031284481287,0.5357009875588119,-0.5100607755593956,-0.19674577517434955,-0.7703156722709537,-0.19165531964972615,-0.8494043676182628,0.6897717360407114,-0.17624248890206218,0.9359925650060177,-0.6763434475287795,0.5336865317076445,-0.29359225695952773,-0.6269474755972624,0.11708773113787174,-0.6201538988389075,0.12025974597781897,-0.7059557540342212,-0.6912719230167568,-0.4765173736959696,0.6001726817339659,-0.8082427610643208,-0.788055035751313,-0.7769912481307983,0.4527637492865324,0.29623068077489734,0.039920801762491465,0.5380372968502343,0.13994661951437593,0.5791947618126869,0.31308078300207853,-0.9694136460311711,0.249104181304574,0.6962515348568559,-0.9280819054692984,-0.7580388230271637,0.475680286064744,-0.9975604615174234,-0.6832673661410809,-0.8712212219834328,0.2657468211837113,-0.46022115321829915,0.3802551510743797,0.6870743334293365,0.7412161454558372,0.0076195974834263325,-0.6746065709739923,-0.7683288133703172,-0.600481865927577,-0.4721809681504965,-0.5982993058860302,0.1238673347979784,0.7861599042080343,-0.9936848636716604,0.005547826644033194,0.811085726134479,-0.9847124638035893,-0.012458433862775564,-0.038013982586562634,-0.24647681275382638,-0.23552896827459335,0.10482993768528104,-0.2996753277257085,-0.588608025573194,0.15563980536535382,0.2451068996451795,-0.15538975363597274,0.7959717409685254,-0.3385585988871753,-0.9196527870371938,0.28621050622314215,0.028164958115667105,0.23200020287185907,-0.28064497373998165,-0.038511850871145725,0.5027147461660206,0.7006083140149713,-0.038969202898442745,0.297876734752208,0.6952015561982989,-0.22145701525732875,-0.034141691867262125,-0.26874084398150444,0.4769260911270976,-0.15220366837456822,-0.8739073849283159,0.5351528278551996,-0.3021142608486116,0.48478476610034704,0.9652532441541553,0.28067181212827563,-0.07954802131280303,0.36380793806165457,0.14952594880014658,-0.26487729931250215,-0.6270231041125953,-0.6280764252878726,-0.5471001612022519,0.9513444053009152,0.25491413939744234,0.7633114964701235,0.24226145166903734,-0.9433750566095114,0.462068441323936,-0.4444490522146225,0.841267358046025,-0.32492027385160327,0.4817869788967073,-0.9535290743224323,-0.24178338097408414,0.724453670438379,0.8614175380207598,-0.25711646350100636,-0.29969487618654966,-0.6156855104491115,-0.5199460103176534,-0.6477825362235308,-0.9906503306701779,-0.12072429060935974,-0.05957219051197171,-0.34762086207047105,-0.1330749001353979,0.8498197612352669,-0.5080449623055756,0.9190629702061415,-0.36061010835692286,-0.09569065645337105,0.9439663905650377,-0.7641973593272269,0.35918399784713984,-0.8753637135960162,-0.007124118506908417,-0.1675818543881178,-0.5819550328887999,-0.02487418195232749,0.8688957551494241,0.9039335073903203,0.5947195198386908,-0.22602241998538375,0.05230690259486437,-0.2765606790781021,0.0671826140023768,-0.0356706827878952,0.4840917997062206,-0.9986208993941545,0.8942156927660108,-0.30176666378974915,-0.2635411764495075,-0.5567858759313822,-0.9493388333357871,-0.5175175750628114,-0.11463895114138722,-0.14054117677733302,0.34453525859862566,-0.2785222069360316,0.7586035281419754,-0.16025289567187428,0.20453562820330262,-0.05079575069248676,0.9475399539805949,-0.48352405009791255,0.22921123541891575,0.806786275934428,-0.091373470146209,0.39430617075413465,-0.25813781190663576,-0.49651099694892764,0.8623869637958705,-0.8991126557812095,-0.22934835171326995,-0.3214060999453068,-0.13638321263715625,0.7001825305633247,0.9216404906474054,0.6114230812527239,-0.568168826866895,-0.9610156328417361,-0.7006138172000647,-0.14302561711519957,0.4520196900703013,-0.35463308077305555,0.9491263898089528,0.8567037871107459,0.5324054989032447,-0.5529758762568235,0.6605153642594814,0.7145773554220796,-0.9169716569595039,-0.9136999472975731,-0.10139980167150497,-0.08176607545465231,-0.7512158979661763,-0.3504724930971861,0.8481437126174569,0.2850691406056285,0.5778888599015772,0.745853828266263,-0.09312128974124789,0.17575340252369642,0.6217610025778413,-0.23727474734187126,0.14317555027082562,0.24561926536262035,0.6921571595594287,0.18732895329594612,0.6205287836492062,0.03823094628751278,-0.14965921640396118,-0.006157764233648777,-0.6158111151307821,0.7013604096136987,-0.40213582245633006,0.5694393566809595,-0.5161607610061765,-0.4512004083953798,-0.3148809955455363,-0.36998688289895654,-0.8584156297147274,-0.6855245879851282,0.8405393878929317,-0.6267432644963264,0.8156812214292586,0.9273851346224546,-0.4171437621116638,-0.43037053057923913,0.8660371811129153,-0.8840335602872074,-0.2464130213484168,-0.09438888309523463,-0.4059304082766175,0.07525525009259582,-0.2789732734672725,0.38006780855357647,0.555199277587235,0.06331868749111891,0.42579431319609284,-0.7368284431286156,0.11122006410732865,0.7574898558668792,0.5383999473415315,-0.805092295166105,0.7704819422215223,0.4954499532468617,-0.9474955373443663,-0.3086536373011768,0.2528316886164248,0.040013542864471674,-0.7619199818000197,0.6552708242088556,0.8700716043822467,-0.6723857815377414,0.6485089841298759,-0.7869976847432554,-0.7365041272714734,-0.5943934060633183,-0.14894146472215652,-0.8217037538997829,0.8361177295446396,0.03567223949357867,-0.3469369593076408,-0.29097604705020785,0.2676618564873934,0.7850764440372586,-0.5162604697979987,0.3369777905754745,0.16691851383075118,0.15007651783525944,-0.7154578706249595,-0.18039780296385288,0.9787012063898146,-0.03048478439450264,-0.13602447137236595,0.18789429543539882,-0.10321017447859049,-0.8496678131632507,-0.6152362204156816,0.9498720252886415,-0.22882514307275414,0.5307693718932569,-0.6246756268665195,0.8323206785134971,-0.8000453980639577,-0.045212164521217346,0.6505297715775669,0.45712405908852816,-0.2189485696144402,0.11839644983410835,-0.7341379350982606,0.5269482941366732,0.7405342403799295,0.047166223637759686,0.9977801511995494,-0.31440819473937154,0.3587933499366045,-0.5479655670933425,0.7053690138272941,0.8901616567745805,0.4961920906789601,0.8865093472413719,-0.6753075425513089,0.636749214027077,-0.3229064657352865,0.33664851542562246,0.40228904923424125,-0.9617912638932467,-0.9188717668876052,0.4006005171686411,0.08949735341593623,-0.7934234268032014,-0.4157515843398869,0.9712674124166369,-0.34715030435472727,0.9202636410482228,-0.763196908403188,0.37561021046712995,0.6708050114102662,0.7188628409057856,-0.21346212830394506,-0.06273254007101059,-0.07839613687247038,-0.19209794839844108,0.3985688234679401,0.9465240896679461,-0.1919362316839397,0.4406602601520717,-0.7695466815494001,0.4596005445346236,0.4264711206778884,-0.1584439454600215,0.7837845613248646,0.35704488353803754,-0.32673705322667956,-0.5945099401287735,0.6079503702931106,-0.0506507302634418,0.30644363909959793,-0.10672339797019958,0.15049404092133045,0.3061739346012473,-0.8139140945859253,0.9688354250974953,0.4240856431424618,-0.8893693247810006,0.8589524189010262,0.9842570372857153,-0.3837542529217899,0.9144069100730121,0.21773504419252276,0.5508374236524105,0.4275205251760781,-0.853400475345552,-0.8584039718843997,-0.8230804307386279,0.20251525891944766,0.6624557180330157,-0.16870052833110094,-0.09825095441192389,0.08030783105641603,0.5813959049992263,0.47743153665214777,-0.5841247201897204,0.7118150568567216,0.1929269372485578,-0.6055487478151917,0.0067681847140192986,0.7942348225042224,-0.9967676033265889,0.0137303969822824,0.8138210703618824,-0.21009174408391118,0.14360289415344596,-0.5751799414865673,0.14175856625661254,-0.555420477874577,0.9106279122643173,-0.6538007385097444,-0.775883546564728,0.021379088517278433,-0.8208644753322005,0.9020262355916202,-0.07610746333375573,-0.08925082441419363,-0.5456078858114779,-0.97232222603634,-0.9066768707707524,0.3465032526291907,-0.5243255826644599,0.3741701818071306,-0.08813444897532463,0.42421701177954674,-0.9635577271692455,-0.40300264675170183,0.005821078084409237,0.45694491313770413,-0.2977820672094822,-0.8018287499435246,-0.531528287101537,0.5830795662477612,-0.7217865120619535,0.5436819670721889,0.7373708137311041,0.4763682559132576,-0.16190135711804032,-0.10864583542570472,0.45476678758859634,0.5898412349633873,0.17060449486598372,-0.08295584935694933,-0.5069119166582823,0.8621230511926115,0.32012959010899067,0.18852083524689078,0.5906185968779027,0.717454303521663,0.7896095043979585,-0.7826210879720747,0.07588619226589799,0.3988586631603539,-0.39056265354156494,0.543079724535346,-0.005934923887252808,-0.950862736441195,-0.8381859925575554,0.9825806026346982,-0.2651282884180546,-0.37900841934606433,-0.39671402517706156,-0.9128827769309282,-0.5221161134541035,-0.7585849408060312,0.49836791306734085,-0.5028812754899263,0.7993343812413514,-0.010682994034141302,-0.7911496134474874,-0.034828691743314266,-0.9945654822513461,-0.6680947141721845,0.8267163657583296,-0.2837617704644799,0.5153238866478205,-0.7216891688294709,0.47483935998752713,-0.31887869723141193,-0.3531948123127222,0.2867004214785993,-0.27143918722867966,-0.45026240311563015,0.5042816549539566,-0.8050787481479347,-0.05416697543114424,0.1255923262797296,-0.538954874034971,-0.1062139542773366,0.22271461272612214,-0.5370943201705813,-0.3166727046482265,-0.4117650743573904,-0.2081939484924078,-0.7995827081613243,0.6035877740941942,-0.040935608092695475,-0.8185477671213448,-0.8140446725301445,-0.676766315009445,-0.41859675059095025,0.20328613370656967,-0.8149358397349715,0.49591973004862666,-0.8967789025045931,0.8485849360004067,0.7350126830860972,-0.7113208211958408,-0.4463705769740045,-0.49653023295104504,-0.9045381550677121,0.5976251866668463,0.5857802582904696,-0.09162439964711666,0.2766258562915027,0.2471329211257398,0.6212437762878835,-0.4633857444860041,-0.9988561025820673,-0.9669189853593707,-0.2478196262381971,0.20592420315369964,0.9964865278452635,0.91630934830755,0.9884611209854484,0.7743430817499757,0.40138345258310437,0.9965306869708002,0.0987782422453165,-0.5948283756151795,0.16027853218838573,0.6671797763556242,-0.7271107085980475,0.9572086571715772,-0.14619505731388927,-0.6107138157822192,0.48720543552190065,-0.0849676369689405,0.9610623246990144,0.3952102861367166,0.07659115828573704,0.8083909321576357,-0.293316347990185,-0.584273636341095,-0.34472002275288105,0.5991607448086143,0.2557765729725361,-0.6327078505419195,-0.42896959790959954,0.9756893999874592,0.6187674971297383,-0.5850022034719586,-0.560711310710758,0.37054190784692764,-0.24455261509865522,0.48619027342647314,-0.6239589089527726,-0.3381332941353321,-0.3013360807672143,-0.057211401872336864,0.8944191210903227,0.46515159495174885,-0.7610334977507591,-0.8596460642293096,0.7736278781667352,-0.8629660466685891,-0.62100166734308,0.5278305020183325,0.5091145406477153,0.24253766797482967,-0.7693966766819358,0.3258260930888355,-0.9600209123454988,0.14757500682026148,-0.8418663707561791,0.8961942875757813,-0.5906769945286214,0.9315904527902603,0.9140262342989445,-0.9343958562240005,0.21510869869962335,-0.6717347069643438,0.559325632173568,0.12908947886899114,0.5816351361572742,0.46519782580435276,-0.6000579614192247,0.04249771125614643,-0.024882257916033268,0.5302217369899154,0.1729097026400268,-0.9970422028563917,-0.6058669034391642,0.447639096993953,0.5048807868734002,-0.26251129107549787,0.13183439802378416,0.15678249299526215,-0.025520304683595896,0.33453515032306314,-0.6110465903766453,0.7896999306976795,0.08951750444248319,-0.32276021176949143,0.41169184213504195,0.5521051362156868,0.49258206505328417,-0.2410936481319368,-0.33856599451974034,0.9903259337879717,-0.7319101174362004,0.8527865880168974,0.020718717016279697,0.4813494086265564,0.15123648149892688,0.48914944380521774,-0.1397649790160358,-0.8262006724253297,0.22449316270649433,-0.3698803372681141,-0.05535144405439496,-0.07564642699435353,-0.803444738034159,-0.31005628127604723,-0.08428047271445394,-0.8694995157420635,0.8509415406733751,0.13892003102228045,0.02811161009594798,0.8941864990629256,0.9286391618661582,-0.34961338667199016,-0.8286184947937727,-0.054850966203957796,-0.27809921000152826,-0.21438387734815478,0.5822325213812292,-0.32199055049568415,-0.6845576693303883,0.22607879620045424,0.7463129013776779,0.04026324348524213,0.9901554798707366,-0.6960317105986178,0.05191977648064494,0.5436042100191116,-0.37423391127958894,0.4097161521203816,0.7196403630077839,0.10385281639173627,0.510354895144701,0.8783751036971807,0.7668245146051049,-0.37290062801912427,-0.7011939473450184,0.617185790091753,-0.6784914010204375,-0.8835798394866288,-0.769373678136617,0.5463225562125444,0.4127213675528765,-0.05147569673135877,-0.8314201822504401,-0.7109916405752301,-0.3017133930698037,-0.3787781991995871,-0.8916353532113135,-0.3946462678723037,0.823025418445468,0.1971889967098832,-0.1572687327861786,-0.5511951628141105,-0.7814790476113558,0.11206257622689009,0.3171307062730193,-0.7867664736695588,-0.14725184999406338,0.11488381819799542,-0.5253084148280323,-0.8103250162675977,-0.7902163998223841,-0.3682953086681664,0.7765588341280818,-0.6789359520189464,0.7159214792773128,0.8950845361687243,-0.3601080854423344,0.5662789782509208,-0.8499758895486593,-0.7725532772019506,0.14815458143129945,0.22107852809131145,-0.17027424275875092,-0.18735138606280088,-0.0796094685792923,0.9399211765266955,0.3227798081934452,0.9410435408353806,0.9723413367755711,0.5575727340765297,0.9627304757013917,-0.3738656439818442,0.6642583436332643,-0.2508922051638365,-0.9484355878084898,-0.01815877528861165,-0.592871178407222,0.3120275819674134,0.6200985773466527,-0.829683082178235,-0.3857994293794036,-0.3730794508010149,0.05804008571431041,0.5787799274548888,0.2987611470744014,0.6369670149870217,0.2018801672384143,0.21468242909759283,-0.274774671997875,0.1507942727766931,0.18428345443680882,0.9726419444195926,0.5879141222685575,-0.5856267907656729,0.03900727350264788,-0.11360925016924739,0.19690655078738928,-0.7704528798349202,0.48499235277995467,-0.45259313145652413,0.6810347368009388,0.5133099174126983,-0.6478830752894282,0.3091856869868934,0.44953924184665084,-0.20359679264947772,0.7568626711145043,0.5571824703365564,-0.4451864706352353,0.5599511419422925,0.6187686310149729,0.8000841839239001,-0.9067833661101758,-0.6836981200613081,0.40963868144899607,0.30559614626690745,-0.7844912279397249,0.1708204559981823,-0.9547697370871902,-0.27498605474829674,0.24520279886201024,-0.450857600197196,-0.3270309790968895,-0.8621290405280888,-0.08299158187583089,-0.15507655357941985,0.9283380280248821,-0.10543795395642519,-0.8648800770752132,-0.8811667840927839,-0.3335152301006019,0.8517419882118702,0.8520166631788015,0.9396141381002963,-0.5392166068777442,0.7014014115557075,0.07490635989233851,-0.8417906127870083,0.7811424629762769,0.5901232655160129,0.08323374018073082,-0.6106115328148007,0.6553474203683436,0.13961132848635316,-0.9249331257306039,-0.3791835377924144,0.7507267505861819,0.9860633742064238,0.9447451485320926,0.8509136959910393,0.909402041696012,-0.2932532890699804,-0.921213042922318,0.46869108732789755,-0.5180993634276092,0.8567528231069446,0.9699363107793033,-0.6973912641406059,-0.9328011288307607,-0.40585432201623917,0.7774977320805192,-0.12485901545733213,-0.40472412947565317,0.36119676334783435,-0.6288369041867554,-0.8684367933310568,-0.4341257563792169,0.9920403859578073,0.32101833587512374,0.8092774599790573,-0.3239676640368998,-0.6088295388035476,0.3614637111313641,0.9171030237339437,0.8982365815900266,-0.680550932418555,0.4048838783055544,-0.8164396109059453,-0.39396426687017083,-0.5211438713595271,0.4842309639789164,0.5925626587122679,-0.697074378374964,0.8886450305581093,0.2503289319574833,-0.6968918908387423,0.3290319759398699,0.19880601344630122,0.4279493745416403,-0.46120051154866815,0.03514301870018244,-0.7085485938005149,0.6511974311433733,0.6411931575275958,-0.30227934615686536,0.890694644767791,-0.48001786740496755,-0.8117796038277447,-0.024556749500334263,0.404391017742455,0.04813300026580691,0.690976541955024,-0.7684479057788849,-0.9377385065890849,0.8984247935004532,-0.26809324277564883,-0.42455686535686255,0.4870674917474389,-0.12027160776779056,0.15474798157811165,-0.00982905039563775,-0.3115215366706252,-0.5126391653902829,0.49570398638024926,-0.7977939341217279,-0.818363580852747,0.9840333149768412,-0.2799030193127692,0.4977359469048679,-0.8305777469649911,0.31707409489899874,0.8034951612353325,0.5529989562928677,-0.2852365323342383,0.8647928698919713,-0.4360305746085942,-0.7829609364271164,-0.4740389441139996,-0.7220819378271699,0.32441784301772714,0.8445158898830414,0.6413115528412163,0.603955355938524,-0.49775045877322555,-0.4793200152926147,0.06503996718674898,0.134615836199373,0.33220424922183156,-0.08997435355558991,0.027455960400402546,0.6453133975155652,0.032926217652857304,-0.6165586961433291,-0.305097748991102,-0.9059937749989331,0.8586749318055809,-0.42040723795071244,0.48032375145703554,0.0338623933494091,-0.4022572934627533,0.34960250882431865,-0.815647283103317,-0.7851333376020193,-0.7622526432387531,-0.061310393270105124,0.21276794094592333,-0.3385835397057235,0.5507351621054113,-0.57746606413275,0.3220437662675977,0.7341538332402706,-0.20687637757509947,-0.8966185497120023,-0.21017034072428942,-0.10184037359431386,0.8409917429089546,0.38427283288910985,-0.9124739528633654,0.26380872912704945,0.08159208344295621,0.8084737360477448,-0.8666190002113581,0.10350546846166253,0.26907041762024164,0.38370226696133614,0.3415567628107965,-0.7342994529753923,0.033405426889657974,0.08685872051864862,0.6626676740124822,0.6001986702904105,0.7841408527456224,-0.7065219767391682,0.7481677588075399,-0.7396860588341951,0.6632582643069327,-0.13340533059090376,-0.0513685536570847,0.5247719967737794,0.26326733408495784,-0.10261137504130602,0.9609292284585536,-0.026536709163337946,0.4718723180703819,-0.640103314537555,-0.5645992243662477,0.9944771402515471,-0.8114916835911572,-0.04829989140853286,0.8042217805050313,0.771635081153363,0.4199872510507703,0.462125061545521,-0.4739579642191529,0.3292235108092427,-0.10875086672604084,0.24071490578353405,0.21586606185883284,0.5603599054738879,0.8048844379372895,-0.01587259117513895,-0.513001864310354,0.216853859834373,-0.8057501586154103,0.036752489395439625,-0.23681909637525678,0.09464906947687268,-0.0744231017306447,-0.21722034504637122,0.4682125370018184,0.18657023552805185,-0.9826163989491761,-0.8440821929834783,0.30007218942046165,-0.44145278399810195,-0.5672520180232823,0.3946222634986043,-0.668576872907579,0.3465317520312965,-0.9692253763787448,-0.6996396286413074,-0.8610787405632436,0.3383914679288864,-0.35546169243752956,-0.9753837045282125,-0.298868419136852,0.02626427449285984,-0.16261780634522438,0.39347200095653534,0.4986659116111696,-0.16533930925652385,-0.7692463002167642,-0.9649703954346478,0.6171778850257397,-0.010722446255385876,-0.3315836573019624,0.8914468283765018,0.7404820686206222,0.6691696713678539,-0.7849055575206876,0.11831864574924111,0.9389574495144188,0.6097837458364666,0.2601084248162806,0.973578036762774,0.3342830934561789,-0.7278847047127783,0.12576082395389676,-0.8328188671730459,-0.3003849140368402,-0.04662483185529709,-0.09912988124415278,0.10418499168008566,0.6179593955166638,0.8933578282594681,0.6325707491487265,0.553744641598314,0.5910427840426564,-0.479173272382468,-0.5419597625732422,0.33911097049713135,-0.015004523564130068,-0.9969726903364062,0.7212308887392282,-0.42774806171655655,0.2868835311383009,-0.5448551177978516,0.446930430829525,-0.7208420112729073,0.5362403346225619,-0.6134005454368889,0.6964379856362939,0.8928820234723389,-0.9832839155569673,-0.13512864708900452,0.4184305462986231,-0.9081349703483284,-0.9092600150033832,-0.9642291441559792,-0.892789120785892,-0.5967103675939143,0.791460863314569,-0.8284840472042561,-0.9100533835589886,0.8440905530005693,0.030173990409821272,0.21367367077618837,0.35136711690574884,-0.5787408058531582,-0.9765492011792958,-0.21563556184992194,0.10603859974071383,0.32631509471684694,-0.5675658471882343,-0.6200483376160264,-0.41215395042672753,0.6296821078285575,-0.6780433529056609,-0.3071774705313146,0.1521837399341166,0.7791396044194698,-0.9067113338969648,-0.8684298512525856,0.4702884587459266,-0.7627591956406832,0.8942444869317114,-0.7579226815141737,0.383254480548203,0.7115668002516031,-0.5616008476354182,0.009371297899633646,-0.3507650760002434,0.6581737478263676,-0.49500419292598963,-0.4353223401121795,0.52730627451092,0.2996339751407504,0.9854373675771058,0.03202175721526146,-0.2932743397541344,0.355309309437871,0.9537895829416811,0.2002073605544865,-0.1428158190101385,-0.8048538682051003,0.44703925400972366,0.3195980773307383,0.0027477326802909374,-0.43951841862872243,-0.6317731468006968,-0.1652045431546867,0.7404188788495958,-0.21570459473878145,0.3151379185728729,0.1961054438725114,0.8547154720872641,-0.14368531946092844,-0.8811610015109181,0.6398342163302004,-0.31731820898130536,-0.2430053255520761,-0.8420276758261025,0.7007922455668449,-0.473056728951633,0.29300303710624576,0.9928935966454446,0.1474127252586186,0.28423613170161843,0.20563125517219305,-0.3590823784470558,-0.07042299536988139,0.28390928311273456,-0.5099882083013654,0.8383011720143259,0.37483139522373676,0.7349320584908128,0.2517005638219416,-0.48393849190324545,-0.3370750811882317,-0.5443151644431055,-0.24559346679598093,-0.9425835511647165,-0.5040770638734102,0.7124896026216447,0.7591321934014559,-0.7282927986234426,0.7852906864136457,-0.61876474134624,-0.27655584132298827,0.1205271603539586,0.6148558268323541,-0.8963662195019424,-0.9188292291946709,0.15622831881046295,0.7442433196119964,-0.22545669320970774,0.25538779189810157,0.5821924088522792,0.4900185512378812,-0.6500599686987698,-0.3926985003054142,-0.5978600885719061,-0.2256896267645061,0.007527712266892195,-0.6185482628643513,0.784672433976084,0.28038397151976824,0.3893464980646968,-0.42235356476157904,0.7727281479164958,-0.9671661467291415,0.8504328769631684,0.3116682362742722,0.5396202597767115,-0.24060657806694508,0.6163893351331353,-0.8973003458231688,-0.8636870146729052,0.23420052602887154,-0.8600977752357721,0.5626519876532257,-0.6383831026032567,0.42875644424930215,0.21941926330327988,-0.08679510373622179,0.9147315737791359,0.8788080182857811,0.1875703651458025,0.4366916073486209,0.8860905473120511,-0.6244245734997094,0.36158517841249704,0.05659498833119869,-0.6854362087324262,-0.10693657491356134,-0.8164007584564388,0.7462524976581335,0.07588260155171156,-0.928001815918833,-0.8607796272262931,-0.9068468250334263,-0.5390939069911838,-0.2031775303184986,0.6420153849758208,0.7312985653989017,-0.09502104157581925,-0.8985038320533931,-0.6842453768476844,0.5038023083470762,-0.4434159845113754,0.017502610106021166,0.5574150420725346,0.782952627632767,-0.41921326937153935,-0.07177008781582117,0.6471210685558617,-0.48624909156933427,-0.24518566625192761,0.8078722613863647,0.1811740081757307,-0.8042457131668925,0.7897371766157448,-0.5902582313865423,-0.1487582172267139,-0.7431245944462717,-0.11209708312526345,0.2598407454788685,0.3192556253634393,-0.6771484431810677,-0.2099107000976801,0.9525660136714578,-0.4169478490948677,-0.8177036084234715,-0.6581786121241748,0.45291907945647836,0.023027918301522732,0.5304201925173402,0.5173070812597871,-0.7310874373652041,0.7653443105518818,0.49186086654663086,0.7844849503599107,-0.291934828273952,-0.6033462318591774,0.3043437823653221,0.10045309038832784,-0.8997372048906982,0.23376050405204296,-0.8536163158714771,0.516461358871311,-0.5217111203819513,-0.6535263936966658,-0.6697319615632296,-0.3718866449780762,-0.3439218243584037,0.6234845821745694,-0.714386370498687,-0.6776243522763252,-0.7117578955367208,-0.023259285371750593,-0.6099906996823847,0.012358942069113255,0.9716694061644375,-0.19468833738937974,0.14541747281327844,-0.4732075030915439,-0.4589954880066216,0.1251700734719634,0.16897872649133205,-0.42185497796162963,-0.5503657734952867,0.3132168687880039,-0.163791811093688,-0.13040111307054758,0.813886902295053,0.2933083479292691,0.7510747294872999,-0.00673811137676239,-0.47910084994509816,-0.5840508872643113,-0.5697398264892399,-0.5680116550065577,-0.3189971065148711,0.0903537948615849,0.42387507064267993,-0.09446474770084023,0.6593424123711884,0.6459650634787977,-0.898750385735184,-0.8910069726407528,0.936366374604404,-0.28662516828626394,-0.3942483337596059,-0.10033364128321409,-0.7295965193770826,-0.7779757822863758,-0.5318902074359357,0.8763989345170557,0.328384802211076,0.1552422260865569,-0.8324637948535383,-0.03020217688754201,0.5616517774760723,-0.23418295197188854,0.4223639350384474,0.33166141994297504,-0.41046327957883477,-0.3789775399491191,-0.16125715803354979,-0.4133072658441961,0.796993799507618,-0.6481059049256146,-0.8561393609270453,-0.8987446459941566,0.7831596899777651,0.41669293586164713,0.3515239809639752,0.08891934948042035,-0.9762134412303567,-0.8686704533174634,0.528844584710896,-0.5539260329678655,-0.6507170358672738,0.012110302690416574,0.4763613506220281,-0.20419000647962093,-0.672381091862917,-0.4535983959212899,-0.14837945438921452,0.9173763254657388,0.39255968015640974,-0.43333672685548663,-0.0908354027196765,-0.3355998103506863,0.2659930717200041,0.7317233220674098,0.9219421478919685,-0.06286576204001904,-0.3788315993733704,-0.5380402496084571,0.6926802252419293,0.9498985717073083,-0.2505879057571292,0.1871384959667921,-0.24401165777817369,-0.2865217546932399,0.7690505888313055,-0.5638846699148417,-0.6208886508829892,-0.9984725415706635,-0.2844252195209265,-0.8646914958953857,0.43185415491461754,-0.6801885655149817,0.9805633998475969,0.45496383821591735,-0.9431478762999177,0.5300192181020975,0.11872102599591017,0.28378200344741344,0.004813798237591982,0.3077369839884341,-0.8100371840409935,-0.21526704216375947,0.018181282561272383,0.11697914311662316,0.10720559023320675,0.6452560164034367,0.6501792180351913,-0.5832740664482117,0.3419069955125451,-0.7117633312009275,0.7842304180376232,0.9792197523638606,0.015802075155079365,-0.5353153725154698,-0.28521915059536695,-0.26564664859324694,-0.24443730246275663,0.7612526416778564,0.1543410075828433,0.021541320253163576,-0.12803457584232092,0.43914335407316685,0.040194434113800526,-0.9353088918142021,0.9921253360807896,0.8233869173564017,-0.2862844867631793,0.2525143972598016,0.3575346586294472,-0.3912966758944094,-0.9288686183281243,0.7267211033031344,0.4896745174191892,0.786212535109371,0.9870849982835352,-0.3858656557276845,0.38035527896136045,0.06789154279977083,-0.2120327497832477,-0.2711645718663931,0.8052791520021856,0.9887450765818357,0.6255513564683497,-0.6067968029528856,0.4570304434746504,-0.9801727598533034,-0.44785479363054037,0.06210810178890824,-0.23437268333509564,0.9599230666644871,-0.38089959882199764,0.04591788724064827,0.20197799522429705,-0.8029600619338453,0.22831581067293882,-0.3920691548846662,0.1570572229102254,-0.07524629030376673,-0.12224394688382745,-0.2333253687247634,-0.36039675446227193,0.7407779828645289,-0.5600799159146845,-0.7858317280188203,0.06486431928351521,0.00634362269192934,0.2818271266296506,0.42977044032886624,0.8431384805589914,-0.3281312729232013,0.9821844226680696,-0.4454727852717042,0.8545446032658219,-0.8022157899104059,-0.08331099944189191,0.8984485142864287,0.870656746905297,-0.5893119280226529,0.21906108362600207,0.9689328209497035,0.5118744480423629,-0.8387668123468757,0.9375524297356606,-0.8002542038448155,-0.6363331992179155,-0.0027664173394441605,-0.7842597998678684,-0.21545629855245352,-0.22203052137047052,0.9713504631072283,0.6702156285755336,-0.07905263593420386,0.5388848022557795,-0.6672236509621143,-0.9829101585783064,0.5024019470438361,-0.7165924636647105,0.8888338501565158,0.4999190787784755,0.2771350760012865,-0.5173558560200036,-0.16552630392834544,-0.28389847930520773,-0.11823915271088481,-0.977367983199656,0.09130357811227441,-0.8032773733139038,0.8844900424592197,0.9912847643718123,-0.17090273089706898,0.3805185020901263,-0.03411969682201743,-0.6452930085361004,0.9293270166963339,-0.6366208717226982,0.04463230213150382,0.513736383523792,0.6762966252863407,0.29302875651046634,-0.4702862105332315,-0.18592351069673896,0.6228452045470476,-0.15631153294816613,0.1871554064564407,-0.8143517165444791,0.8397362702526152,-0.5872465376742184,0.2970321732573211,-0.05561714107170701,0.382479852065444,-0.9563545384444296,-0.08102915110066533,-0.3234766246750951,0.5462260493077338,-0.9100612075999379,0.8308831243775785,-0.010129052679985762,0.08291870262473822,0.5036869435571134,0.17190353013575077,-0.7983599617145956,0.14822387788444757,-0.7555814841762185,-0.009415671695023775,0.817121485248208,0.8284416114911437,0.7812070189975202,0.10924117639660835,0.7678032745607197,0.09621688863262534,-0.01807265356183052,0.8218661388382316,-0.9657483184710145,0.873008503112942,-0.508791483938694,-0.9087823024019599,-0.2401607148349285,0.809381727129221,-0.20335897244513035,-0.1156877325847745,-0.491466767154634,0.018272864632308483,-0.5444091996178031,0.6539544495753944,-0.19801939092576504,-0.767990002874285,0.6946002175100148,-0.5282512907870114,-0.13355193519964814,0.5010124421678483,0.3130239970050752,-0.13998969597741961,0.3840147526934743,-0.26858688052743673,0.23666890850290656,0.7294912477955222,0.339935215190053,-0.4770975550636649,0.7388988956809044,-0.021238476503640413,-0.42042553005740047,0.8574328674003482,-0.37633412471041083,-0.192502377089113,-0.3332676673308015,0.8707601805217564,-0.37371268635615706,-0.919609759002924,0.5636012717150152,-0.27591155795380473,0.5130739584565163,-0.7931414376944304,-0.7427560314536095,0.3178170183673501,0.4103254028595984,0.5224772850051522,-0.5600713132880628,-0.5673346701078117,0.6418678816407919,0.20753606222569942,0.409451134968549,-0.971992808394134,0.06366118090227246,0.9171496271155775,0.9522173632867634,-0.0099428272806108,0.7397156720981002,-0.33217813773080707,0.4865198298357427,0.39631240675225854,0.5523709240369499,-0.6607908182777464,-0.5407563135959208,-0.18612442258745432,-0.5793773327022791,-0.0307361320592463,-0.13201281474903226,0.9495135061442852,-0.2984482585452497,-0.7279586191289127,0.7857042397372425,-0.5232701729983091,-0.5878527965396643,-0.49363948917016387,0.9390650070272386,0.09755861898884177,0.13126055104658008,0.5453894627280533,0.5168336536735296,-0.672276726923883,-0.025518085807561874,-0.08311021281406283,0.6915939361788332,-0.14854759024456143,0.6359878061339259,0.08680751966312528,0.09968385752290487,0.5316832782700658,0.5049194162711501,-0.5204908484593034,-0.7536814105696976,-0.9200465911999345,0.027026450261473656,-0.6381204477511346,0.09312378941103816,-0.18543215142562985,0.9388312580995262,0.5288683581165969,0.7576741436496377,0.916139951441437,-0.2142687956802547,-0.15650310227647424,0.2202085410244763,0.6903899656608701,0.8541441219858825,0.0739184026606381,-0.6177843525074422,-0.8830724549479783,-0.38672728510573506,0.05552329448983073,0.26072622230276465,-0.15175958536565304,-0.38887612614780664,-0.23044056352227926,0.2628639442846179,-0.9493247726932168,0.8310714857652783,-0.0009117177687585354,0.3646418200805783,-0.9713867115788162,0.7688542837277055,0.8019441366195679,-0.18126550409942865,0.2093347366899252,0.697391995228827,0.21199388150125742,-0.34298413386568427,0.2819584566168487,-0.34752577682957053,0.5194251709617674,0.5839468683116138,0.011933717411011457,0.8416524552740157,-0.028567031025886536,-0.09225065540522337,-0.20301337772980332,-0.9380697323940694,-0.029125210363417864,0.61540921125561,-0.6278851954266429,-0.7561591919511557,0.9418401676230133,-0.7523081479594111,0.23008363181725144,0.9666075832210481,0.46643162285909057,-0.3078516982495785,-0.7261818549595773,-0.9037439161911607,0.9832101478241384,-0.7124854517169297,0.6145501639693975,-0.7679078998044133,0.1303870896808803,-0.7965916362591088,-0.1529834745451808,0.18903108732774854,0.3029880914837122,-0.051773385144770145,-0.01646172534674406,-0.527713552583009,0.7143669915385544,0.9176857769489288,-0.9956152066588402,0.8357680118642747,-0.3614349835552275,-0.6426684781908989,-0.05867300881072879,0.26946417801082134,0.2966719148680568,-0.6392757268622518,0.699589915573597,0.6037001167424023,-0.9714665161445737,0.9087908673100173,0.8799743349663913,-0.5802866783924401,-0.18400058569386601,0.22938660206273198,0.39280499052256346,-0.9261898812837899,0.9729858320206404,-0.2714279294013977,-0.5165264182724059,0.2663770099170506,0.6815655217505991,0.9889491368085146,0.6196696744300425,0.25882755452767015,0.08168611535802484,-0.3688700878992677,0.10233736503869295,-0.32059170631691813,0.09856272954493761,-0.3841817155480385,-0.5887949005700648,0.5639290157705545,-0.26297546178102493,-0.9232790037058294,-0.3682261393405497,-0.04502160381525755,-0.293465250171721,-0.9314899239689112,0.3554081441834569,-0.28159258095547557,-0.7109584286808968,0.44819146813824773,-0.051210612058639526,0.8837782964110374,0.8636739747598767,-0.5306650926358998,0.9528908878564835,0.7996015870012343,-0.7190420352853835,-0.5756915439851582,0.44320009695366025,-0.046723395586013794,-0.8596974769607186,-0.014377993997186422,-0.7954830229282379,0.5436518401838839,-0.20133339567109942,0.7144640134647489,-0.4168099742382765,0.9062302852980793,-0.5279461820609868,0.8149047074839473,-0.6121966307982802,0.8778526405803859,-0.3266980843618512,-0.5230763354338706,-0.5840546167455614,-0.9412292754277587,-0.5048130634240806,-0.28059346741065383,-0.041257945355027914,0.11694400385022163,-0.46368636190891266,-0.789324451237917,-0.6875769491307437,-0.4784854450263083,-0.9275402016937733,0.8483153562992811,0.2525019315071404,-0.05281549273058772,-0.6857295935042202,-0.39078129222616553,-0.019161174073815346,-0.7402272624894977,0.20765784895047545,-0.33091807272285223,0.9746077670715749,-0.629738284740597,-0.9402308613061905,0.9851054921746254,0.8121755989268422,-0.7566422554664314,-0.1872224872931838,-0.19831757759675384,0.7234955304302275,0.508975769393146,-0.18880441458895802,0.444466239772737,-0.4057413483969867,0.9962022812105715,0.40975342970341444,-0.940800164360553,-0.34099128330126405,-0.5719607975333929,-0.1694892905652523,0.5574713125824928,-0.08671794505789876,0.08381196297705173,-0.21583934500813484,-0.09863122785463929,0.13579130545258522,-0.8206706130877137,-0.18790015764534473,-0.14173627272248268,-0.7896020291373134,-0.4163266704417765,-0.820772532839328,0.9547152714803815,0.27557430416345596,0.6132440655492246,-0.37307574739679694,-0.3009884459897876,-0.03249009000137448,-0.4934470592997968,0.03091572504490614,0.22223568800836802,-0.991203976329416,0.05671644816175103,-0.45357405161485076,-0.0615429999306798,-0.07427466195076704,0.33088513230904937,0.9702478521503508,-0.13219466898590326,-0.8488810756243765,0.49082086933776736,-0.11077579250559211,0.431838795542717,0.47385809384286404,-0.898537146858871,-0.08057725243270397,0.698383238632232,0.4013403165154159,0.688861879054457,-0.6981228585354984,-0.39252116065472364,-0.38621437503024936,-0.9709568484686315,0.17374112643301487,0.7074735020287335,0.5167778157629073,0.16518387012183666,-0.7331724436953664,-0.12942433822900057,-0.09209470544010401,-0.13687420915812254,-0.4443290177732706,-0.8085861159488559,0.9010826712474227,0.14600058551877737,0.60767637565732,-0.14853877807036042,-0.2947572050616145,-0.030872126575559378,-0.813407086301595,-0.7770657315850258,-0.6189763331785798,-0.8934476943686604,0.4675417644903064,0.14500902080908418,0.06841104198247194,-0.1011229301802814,-0.08535298239439726,0.397339376155287,0.06885301321744919,0.28850198024883866,0.570835292339325,-0.20599577063694596,-0.924600959289819,-0.43500859709456563,-0.9143972634337842,-0.05602792464196682,-0.06733933556824923,0.9024477563798428,-0.25192141765728593,-0.9759224774315953,-0.9566867966204882,-0.1824689065106213,0.85003119148314,-0.5276247495785356,-0.9543875544331968,-0.2088987287133932,-0.5455601718276739,-0.19356992049142718,0.30854450492188334,-0.741468595340848,-0.28378485795110464,-0.5091152526438236,0.23830521246418357,0.2305156751535833,0.12829617829993367,-0.3212372111156583,-0.9019686076790094,0.014417560305446386,0.8075144463218749,0.8409129739739001,-0.6985368044115603,-0.6022666953504086,0.29745608754456043,0.8310247845947742,-0.6762303207069635,0.4329635174944997,-0.9734530700370669,-0.5535163916647434,0.6625377549789846,-0.03596768295392394,0.6667319093830884,-0.7129556080326438,0.13683833414688706,-0.9198040259070694,0.8848595903255045,-0.6598222604952753,-0.21894039772450924,0.8520709467120469,0.4647218296304345,-0.8419106137007475,0.4473440358415246,-0.4837383874692023,-0.6929107028990984,0.6349761043675244,0.941442335024476,-0.1125545953400433,0.697419851552695,-0.2540888227522373,0.02071646088734269,-0.19883000757545233,0.6375779691152275,0.2029234729707241,0.5744529911316931,0.1973909973166883,0.3278323356062174,-0.08204522635787725,-0.5194029044359922,0.4523656079545617,0.7559099071659148,0.20101494528353214,-0.13097715470939875,0.2847048263065517,-0.0856100395321846,0.35431250277906656,-0.22507820231840014,-0.2250745538622141,0.3860218273475766,0.7320135291665792,0.827888609841466,0.3647369290702045,0.902731157373637,-0.6860375083051622,0.5460988082922995,0.41430819453671575,0.8531973091885448,-0.8067056513391435,0.20141017576679587,-0.15611389139667153,-0.6789986197836697,-0.6413801787421107,-0.9634367879480124,0.7320768227800727,-0.9022838613018394,0.39722048211842775,-0.9973865207284689,0.9711319352500141,0.9705888535827398,-0.2768208305351436,-0.5952236754819751,0.49764027120545506,-0.3644586489535868,0.2094125421717763,0.9931647418998182,-0.9802594883367419,0.6603989852592349,-0.25753373745828867,0.7139506684616208,0.9010913274250925,0.8367898371070623,-0.5110418242402375,-0.08099652966484427,-0.12750205863267183,-0.4086391576565802,-0.23824377544224262,0.7016150136478245,0.9369477732107043,0.14798169676214457,-0.29300887743011117,0.6348687950521708,-0.7237195782363415,0.4420565711334348,0.11646079551428556,-0.7784241302870214,-0.1197224878706038,-0.13778938353061676,0.7197399544529617,-0.6058108350262046,0.04957357980310917,-0.35220139380544424,-0.5833064038306475,0.9066953239962459,0.8600616590119898,-0.5937838535755873,0.5251797316595912,0.09296860918402672,0.43588112154975533,-0.3057073950767517,0.216032222378999,0.507349016610533,-0.6002718308009207,-0.07801345223560929,0.7161858007311821,0.10664343042299151,0.5541649218648672,0.6833857269957662,0.7226351210847497,0.8207565904594958,-0.09829939529299736,0.7142235743813217,0.43857328640297055,-0.16972534079104662,-0.7240772331133485,-0.16831393539905548,-0.5934273102320731,-0.926379397045821,-0.738518092315644,0.6594975143671036,-0.6045744405128062,0.1541271391324699,0.535535960458219,-0.41071674693375826,-0.8634369233623147,0.30138622503727674,-0.6371172750368714,0.15207190299406648,0.49210534431040287,0.4395647030323744,0.38712023478001356,0.8330220659263432,0.5192190636880696,-0.8325379923917353,-0.17127563804388046,0.11762327188625932,0.36375062074512243,-0.8329311390407383,-0.7645855029113591,0.22034080140292645,0.18709380645304918,-0.6757713803090155,0.3875266923569143,0.08461074810475111,0.4330636882223189,-0.02287968434393406,-0.4899346479214728,0.35822837986052036,0.6687921732664108,0.48790752375498414,-0.6628478029742837,0.0931090610101819,0.4934391132555902,0.22045024437829852,0.5154118733480573,-0.7213501241058111,0.8619848829694092,0.04320613853633404,-0.20081719616428018,-0.2566053560003638,0.44357313914224505,-0.9027994754724205,-0.5458634374663234,-0.1033069733530283,-0.5128971957601607,0.9570185458287597,0.13245242787525058,-0.11775106564164162,-0.3654713034629822,0.28107375744730234,-0.963638449087739,0.9445385420694947,0.24801046308130026,0.6143193277530372,0.46295059146359563,-0.7932806904427707,-0.7969731758348644,-0.19874670216813684,0.4314727270975709,0.7147305412217975,-0.03576342621818185,-0.38915541861206293,0.9383447640575469,0.38826418621465564,0.625588733702898,0.47763026459142566,-0.6807733778841794,0.6793772829696536,-0.9677280304022133,-0.9045783993788064,-0.4731540367938578,0.2408842984586954,-0.5732719036750495,0.4987482996657491,-0.4042567661963403,-0.40470871422439814,0.48440267238765955,-0.0358041487634182,-0.9150615870021284,-0.6531725092791021,-0.8031828198581934,0.2862836071290076,-0.944675964768976,0.7552379090338945,0.39800201915204525,0.7495415066368878,-0.6924322247505188,-0.985865019261837,-0.3731140047311783,-0.6085016508586705,-0.245036443695426,0.7851048433221877,0.1511268625035882,-0.0935742212459445,0.21198580414056778,-0.9662115471437573,0.38157203514128923,-0.17336932430043817,-0.9711018083617091,-0.26280695851892233,0.5856179469265044,-0.7739055408164859,0.2907719942741096,0.5424229330383241,-0.6382906758226454,0.5045707831159234,0.9821585211902857,0.8430732828564942,-0.1283515840768814,0.2014151089824736,0.32559117674827576,-0.8758601667359471,0.652460421435535,0.16154006263241172,-0.6832235176116228,0.8989908895455301,0.6605946430936456,0.04190303385257721,0.7263216651044786,0.057865154929459095,0.803860520478338,-0.12024038936942816,0.5083637894131243,0.746767754200846,0.33881118847057223,-0.7462389273568988,0.45368409203365445,-0.9442321714013815,0.31648357398808,-0.42333763279020786,0.9165723412297666,-0.012396110221743584,-0.6168467234820127,0.7779554985463619,-0.37441345024853945,0.061751679982990026,0.48811283661052585,-0.5472113415598869,0.6538826562464237,-0.684684163890779,-0.7538469275459647,0.19453999027609825,-0.9576722662895918,-0.971340668387711,0.25242669647559524,0.13736643362790346,0.787045402918011,-0.8437636811286211,0.1784243155270815,-0.5732662742957473,0.7146334438584745,0.09006903739646077,-0.5936662470921874,-0.994965011253953,-0.8710900819860399,-0.34345086896792054,-0.1088319537229836,-0.2729057250544429,-0.2761331326328218,-0.9089087066240609,0.4093971215188503,0.15996744576841593,0.14378432231023908,-0.11460648383945227,0.45705092139542103,-0.8343892297707498,0.10183506272733212,-0.8277766457758844,0.35930403182283044,-0.3948640110902488,0.5470395050942898,0.11524056503549218,0.8324370230548084,-0.49689657613635063,0.20296179130673409,0.08309734473004937,0.019851217977702618,0.18259942810982466,-0.2956427801400423,-0.1857199422083795,0.7459610379301012,0.23490116046741605,0.6300540179945529,-0.9877013228833675,-0.8349612974561751,-0.09993731090798974,0.8983473246917129,-0.7261914927512407,-0.09500949829816818,-0.9395536663942039,-0.9578480366617441,0.9114561574533582,0.2604978522285819,-0.930325307417661,0.0952807106077671,0.905412845313549,-0.46868960093706846,-0.24115741718560457,0.6109209917485714,-0.2624145755544305,0.16900074062868953,0.5162157188169658,-0.17131314473226666,-0.5894726663827896,-0.46220966475084424,-0.6526081319898367,0.0966377230361104,-0.8402822040952742,-0.15031160600483418,0.8524253340438008,-0.3206689776852727,0.20576633233577013,0.7088149241171777,0.32968026492744684,0.7050370299257338,-0.7265214924700558,-0.7682047537527978,-0.9830287345685065,0.6723096743226051,0.6736448020674288,0.051504182163625956,0.8474915931001306,0.3237868407741189,0.6090579242445529,-0.5198665652424097,-0.6259940611198545,0.04776869947090745,-0.587335295509547,0.7946387859992683,-0.7140070633031428,-0.7159002395346761,0.20720381336286664,0.7557733925059438,0.5227840505540371,-0.4829887142404914,0.3976142327301204,-0.4680559542030096,-0.16282198764383793,-0.37335045682266355,0.4732168815098703,0.10107139823958278,-0.47576627926900983,0.6161124217323959,-0.3158951196819544,0.40240826178342104,0.23412578040733933,-0.09406290529295802,-0.03698116960003972,-0.015474517364054918,0.5484099211171269,-0.5905629717744887,0.1972723244689405,0.6336457137949765,0.7059316365048289,-0.19472013879567385,0.7626725039444864,-0.11076664505526423,-0.9389351126737893,0.5299615296535194,-0.827238139230758,0.36694430746138096,0.3061595540493727,-0.7803928842768073,-0.23898016894236207,0.7183285802602768,-0.35813641222193837,0.5791389276273549,-0.5039333407767117,-0.4955622791312635,0.7189386645331979,0.9860279397107661,-0.16966894501820207,0.8101499113254249,-0.2249425519257784,-0.18455252051353455,0.5718736769631505,-0.14147488493472338,-0.7805672343820333,0.21752389054745436,-0.01324923150241375,-0.8813821943476796,-0.7647352498024702,-0.3053710674867034,0.5984643353149295,0.24210889544337988,-0.49823170993477106,-0.17515931325033307,-0.2875970215536654,-0.3840223900042474,-0.3851474435068667,0.3247136468999088,-0.8142549698241055,-0.553905454929918,-0.0939944856800139,0.023837088607251644,0.6058180173859,-0.3483437760733068,0.050056351348757744,0.45442845299839973,0.1476527350023389,-0.8447158574126661,0.7049870644696057,0.35378323029726744,-0.7375630266033113,-0.01751568540930748,-0.07571086380630732,-0.7628965312615037,0.36532915150746703,-0.03575083240866661,-0.15918374760076404,-0.9500087290070951,0.8256543157622218,0.24906230717897415,-0.42120057065039873,0.6397180897183716,-0.4258701913058758,0.7769075203686953,0.6523539163172245,0.3196489894762635,-0.5567341493442655,-0.48279527109116316,0.7233031676150858,0.8320920448750257,-0.0990604180842638,-0.6331425253301859,0.7513596746139228,0.7963200495578349,-0.22448428440839052,-0.5570911769755185,-0.33688044594600797,0.04354790085926652,0.6328276917338371,-0.9537890078499913,-0.40861895214766264,-0.4882328319363296,0.4530099374242127,0.8713980610482395,-0.41301220702007413,0.27878018794581294,-0.5810274574905634,0.4584876708686352,-0.13895364990457892,-0.9882944491691887,-0.2025274345651269,-0.0686045978218317,-0.14344497164711356,0.13374377135187387,0.9475588728673756,0.262663169298321,0.9470063848420978,-0.3482461841776967,-0.09595617791637778,-0.1540504447184503,0.0621324609965086,-0.3117966358549893,0.6941353897564113,-0.5489645283669233,0.8768556076101959,-0.4460413483902812,0.22714248020201921,-0.6089504673145711,0.4110502121038735,0.6467716675251722,0.203104461543262,-0.6403222833760083,0.914759608451277,-0.3779565952718258,0.6003320878371596,0.4484239583835006,-0.5010910746641457,-0.5091660991311073,0.555725172162056,0.49404672905802727,-0.0751667246222496,0.14620285760611296,0.9174013640731573,-0.9252549302764237,0.04663852462545037,0.4862395115196705,-0.9921000399626791,-0.37118772650137544,-0.5143751129508018,0.5415190625935793,0.45963440043851733,0.8832994210533798,0.8821995314210653,0.5665762643329799,-0.6255344310775399,0.9380867541767657,-0.07606817595660686,-0.37285869428887963,0.32468739384785295,0.5099428952671587,-0.2442694022320211,-0.7003885158337653,0.27495489083230495,-0.43729267409071326,-0.7974104378372431,0.38767014956101775,0.15047229686751962,-0.6472213068045676,-0.5459809177555144,0.9194961609318852,0.7626801668666303,-0.1733879460953176,0.8942135903052986,0.6237296937033534,0.28309615049511194,0.7378880730830133,0.36241330578923225,-0.1561691123060882,0.6013436894863844,0.7011040928773582,0.08126227976754308,-0.45653273072093725,0.9930899003520608,-0.2717050965875387,-0.8806461044587195,-0.6606350792571902,0.29184310138225555,-0.8106348589062691,-0.3445402537472546,0.011561631690710783,-0.4317601933144033,0.22859322698786855,0.21115821599960327,0.1398334982804954,-0.5506818704307079,0.5307734850794077,-0.4474479225464165,-0.25809620786458254,0.9444504529237747,-0.7818548213690519,-0.7359610926359892,0.9962839707732201,0.5623039565980434,0.289122321177274,0.9211968337185681,-0.03337085759267211,-0.9582206341437995,-0.9936880627647042,-0.7278742138296366,0.6893092789687216,0.20375058706849813,0.38704985938966274,0.9400543407537043,-0.2769692554138601,-0.6286004176363349,0.7451551286503673,0.5508216954767704,0.5177670526318252,-0.563662433065474,0.45741911605000496,-0.5919241406954825,0.8462633723393083,0.012247882317751646,0.20339768333360553,0.1852408740669489,0.8184410724788904,0.812216117978096,-0.7950785402208567,0.7752137524075806,-0.8903314294293523,0.8938316088169813,-0.36180239729583263,-0.5660946182906628,-0.5068096634931862,0.8909257035702467,-0.34267594991251826,-0.11808883026242256,-0.33915207954123616,0.21867426810786128,-0.4204572718590498,-0.8231962285935879,-0.44087066128849983,-0.045947319362312555,0.8089872389100492,0.527457064948976,-0.8920458303764462,0.5176570899784565,0.6710413070395589,0.26305906055495143,-0.9166165627539158,-0.742730381898582,-0.05429313704371452,0.8000891534611583,0.8884233278222382,0.3143538045696914,-0.06443437468260527,-0.8775346674956381,0.4666412486694753,0.9429381527006626,-0.5928455721586943,-0.09093266585841775,-0.013169250451028347,0.3552538091316819,-0.9432102320715785,0.1292255432344973,-0.11794820707291365,-0.6860434599220753,-0.7075923378579319,-0.9373537744395435,0.1362308538518846,-0.19795407867059112,-0.5204428560100496,-0.8249775497242808,0.06014449242502451,0.819409822113812,0.8803449547849596,-0.6946721714921296,-0.3245172402821481,0.3251786371693015,0.16486347559839487,0.05534706450998783,0.24969393434002995,0.686181744094938,0.5532288514077663,-0.928174848202616,-0.9034913661889732,-0.17542743543162942,0.6635860935784876,-0.9087792187929153,0.3587462133727968,-0.8167793177999556,-0.26154165901243687,-0.14718954265117645,-0.5600274782627821,0.06815023254603148,0.4836164144799113,-0.3329266500659287,-0.3215691386722028,0.24149855319410563,0.3096054960042238,0.8839396210387349,-0.7319212169386446,0.41190426144748926,0.6448965528979897,-0.4740424221381545,-0.7866448052227497,-0.3735069171525538,-0.5606110054068267,0.7336310422979295,0.9343312592245638,0.9342710142955184,-0.41871213307604194,0.9223840772174299,-0.4820072581060231,0.6682246550917625,-0.23720204550772905,-0.40711917309090495,-0.7506763665005565,0.9110692217946053,0.37325616739690304,-0.6029627225361764,-0.09689989313483238,-0.15936516923829913,0.9918763437308371,0.597646243404597,-0.6186475013382733,-0.4526059119962156,0.2174438457004726,0.6409846222959459,0.3152163908816874,-0.8238865318708122,0.8299627071246505,0.6363794198259711,-0.24190342193469405,0.48942380864173174,0.38912947848439217,-0.9639179892838001,-0.5903688278049231,-0.11417264118790627,0.8946614153683186,-0.2603966239839792,0.20958193391561508,0.24572790041565895,0.2747321082279086,0.6100428574718535,0.6961517208255827,-0.6171937710605562,0.9053899757564068,0.47928492818027735,-0.5522657106630504,-0.8212372735142708,0.42939065117388964,0.43802246218547225,0.6369205694645643,-0.05966930463910103,0.19167400617152452,0.581441743299365,0.7670956277288496,-0.651636450085789,-0.44353154115378857,-0.1464004823938012,-0.5522168334573507,0.4363837600685656,0.5312141175381839,0.34473541704937816,0.06999535299837589,-0.061165688559412956,-0.24846438644453883,-0.0005939588882029057,-0.9839191688224673,-0.12204977311193943,-0.41961076110601425,0.2926340261474252,0.19684377778321505,0.12566959857940674,0.7081468994729221,-0.4650146528147161,-0.8085690443404019,0.4083228958770633,0.752608360722661,0.8737415838986635,0.3320787213742733,-0.590154992416501,0.8665210735052824,-0.15435513760894537,0.15375074511393905,0.5385645646601915,-0.36060153460130095,-0.02423727884888649,-0.49878128385171294,0.9594683954492211,-0.23138404358178377,-0.8532292479649186,-0.8603270850144327,-0.29777092672884464,-0.16244837176054716,0.3083403347991407,0.07242878479883075,-0.5158562790602446,-0.557174991350621,0.9942026189528406,-0.767339835409075,0.0075645665638148785,-0.10662921331822872,-0.17641149647533894,-0.312591727823019,-0.9428411922417581,-0.4236120074056089,-0.36090599466115236,-0.6816515075042844,0.873845998197794,0.6772579425014555,-0.5548064988106489,-0.06839433265849948,-0.3723062709905207,0.6284140949137509,0.7313098912127316,0.334345415700227,0.656540933996439,-0.15113586094230413,-0.2624054974876344,-0.6499905930832028,0.9692090419121087,-0.31204051384702325,-0.7899078894406557,-0.19297371665015817,0.8115070825442672,0.737734223715961,-0.5139767811633646,-0.20485656801611185,0.43165965331718326,0.5919444328173995,0.5487382081337273,0.7209650548174977,-0.767040753737092,-0.9369335174560547,-0.32317850133404136,0.015746310353279114,-0.20090240379795432,-0.3474496095441282,-0.6373140797950327,0.3752301326021552,-0.2713766759261489,0.5354931289330125,0.6299151000566781,0.24540633568540215,0.333528664894402,-0.7266221158206463,-0.48557506408542395,-0.8727671951055527,-0.7570911506190896,0.4189001745544374,-0.44270060351118445,-0.8040831950493157,0.41569557785987854,-0.8801078135147691,0.7527527883648872,0.08048655418679118,-0.9844344109296799,0.10365250427275896,-0.18304571555927396,0.337817148771137,-0.46507554640993476,-0.3125324286520481,0.7446668804623187,-0.7788562113419175,0.24586000759154558,-0.6308206166140735,0.7481412324123085,-0.502092195674777,0.6839863490313292,-0.1786708841100335,0.04483175603672862,-0.14265862433239818,0.3547582169994712,-0.8854493680410087,-0.20258089248090982,-0.36360192112624645,-0.06955307349562645,-0.37293386505916715,0.38020158279687166,-0.08865174930542707,0.6228079446591437,0.4875950566492975,0.3641397221945226,0.45270388945937157,0.1873109582811594,0.9027881431393325,-0.448648439720273,0.7544328612275422,0.7179779638536274,-0.15121070109307766,0.8507356578484178,0.012723409570753574,0.9298341670073569,0.08113913191482425,0.1307167997583747,0.4494042885489762,-0.1479536620900035,-0.8196090711280704,0.29929692298173904,-0.3863112614490092,0.9161180010996759,0.3497624406591058,-0.12731063785031438,0.8242283910512924,0.6190167004242539,0.7990718055516481,-0.4656932787038386,-0.7085057944059372,0.9703715411014855,-0.7569674770347774,0.44905766379088163,0.6141134314239025,-0.30800344329327345,0.3357555386610329,0.00698472885414958,-0.925287879537791,-0.07185803400352597,-0.9638579692691565,0.06633773213252425,-0.3869964578188956,-0.4928605565801263,-0.1665627658367157,0.8282922278158367,0.3278381680138409,0.583473414182663,-0.4319345811381936,0.7364179957658052,0.6637849565595388,0.08409785851836205,0.9372950047254562,0.9089864534325898,-0.5215633637271821,-0.8300036140717566,-0.5182306682690978,-0.33860133588314056,0.9803666886873543,-0.16678122570738196,0.44389281468465924,-0.37705886736512184,-0.6838142718188465,-0.04807351157069206,-0.018864184617996216,-0.19528405833989382,-0.6269259648397565,-0.8721011588349938,-0.7082324963994324,0.5933529362082481,0.5426771496422589,0.36411240976303816,-0.9083398664370179,0.5385706103406847,-0.44316655956208706,-0.049734297674149275,0.6233918648213148,-0.058663136791437864,-0.06890403293073177,-0.05947661632671952,0.7597655677236617,-0.45725701563060284,0.13550317101180553,-0.863034354057163,0.4171955627389252,0.5342786712571979,0.5537252640351653,0.15365373669192195,-0.3726608855649829,-0.21535196853801608,0.8850283841602504,0.5486295372247696,0.7232178044505417,-0.19257967174053192,0.7734662424772978,0.5933972089551389,-0.5839439923875034,0.37346048653125763,0.7833017413504422,0.9717876776121557,-0.9521463694982231,0.2632919610477984,0.06375794764608145,-0.022343964781612158,0.774445628747344,0.40174086298793554,0.6150504816323519,-0.9797228826209903,0.30750381713733077,0.7872835560701787,0.0038971095345914364,0.3370428867638111,0.4277016711421311,0.8167956531979144,0.6461734962649643,0.288411617744714,0.35299927508458495,-0.48778846440836787,0.07416895218193531,-0.9648903352208436,0.5565908942371607,-0.46134095173329115,0.6439836416393518,-0.2519754362292588,-0.4449939103797078,-0.1954818582162261,0.7614548043347895,0.3881773534230888,-0.7167534874752164,0.29856000328436494,0.23864055518060923,0.681089230813086,-0.8935197335667908,-0.5352104594931006,0.28591289557516575,0.42050704453140497,-0.4633177313953638,-0.6684419112280011,-0.10590138752013445,0.49409923516213894,0.39877612236887217,0.8206636966206133,-0.5506600989028811,0.6386856860481203,0.006663503125309944,-0.8787076356820762,0.6429269830696285,0.6312848711386323,0.4105554618872702,0.07534822821617126,-0.542403909843415,0.42338354093953967,-0.7185013541020453,0.12343171425163746,0.8329162490554154,0.1806656769476831,-0.47600454464554787,0.3167814193293452,-0.7619771105237305,0.1864060633815825,-0.1077727498486638,-0.9017289904877543,-0.33103094762191176,-0.09726269403472543,0.7928888644091785,0.09929274721071124,0.24669698625802994,0.5356424092315137,-0.40940021723508835,0.6828872454352677,-0.41362603986635804,-0.5351770049892366,0.8551472485996783,-0.5131407603621483,0.7037769146263599,0.9325821176171303,0.12812639167532325,-0.8829810423776507,0.7613611137494445,-0.8401822349987924,-0.4318725233897567,-0.27367482986301184,-0.003208727575838566,0.6417089109309018,-0.48910740623250604,0.7715656328946352,-0.319123940076679,-0.4338958519510925,-0.7201326359063387,0.7666692864149809,-0.9357418557628989,-0.8375932378694415,-0.34964009560644627,0.43820269545540214,0.7013461594469845,0.5344800571911037,-0.9291400606743991,-0.1338593470863998,0.1848148093558848,0.08412864478304982,0.23699287278577685,-0.2948974743485451,-0.8533021602779627,-0.8525005993433297,0.9107227786444128,-0.023219275288283825,0.6623847582377493,0.05886245798319578,0.7602999568916857,-0.5072799511253834,-0.17179527878761292,-0.21689530601724982,0.8232561787590384,-0.9269117573276162,0.7733338261023164,-0.22047474700957537,-0.5687466864474118,0.8262769435532391,0.39615418668836355,-0.09002368245273829,-0.2667350387200713,-0.9802063670940697,0.7322625494562089,-0.5145925097167492,0.7986202226020396,0.2969841272570193,-0.9495730618946254,-0.45301280869171023,-0.7231976785697043,-0.4516092031262815,-0.29305057832971215,0.4685252420604229,0.19298287061974406,-0.64075767993927,0.34640363696962595,-0.6933595431037247,0.11508215451613069,0.6023384453728795,0.44722858304157853,-0.8535387208685279,0.12067201174795628,-0.31414232263341546,0.2967401701025665,-0.7235244694165885,0.4050795193761587,-0.7200370403006673,0.5029677366837859,-0.4254526090808213,-0.9502897267229855,-0.6807802245020866,0.6547985780052841,-0.09305273881182075,-0.9273881013505161,0.7703242623247206,0.03540454478934407,-0.21847553364932537,-0.22251494647935033,0.6253592232242227,-0.935730995144695,-0.6117007057182491,0.09752797428518534,0.3296487652696669,0.7063298760913312,-0.7083237892948091,0.36990342009812593,0.6865758141502738,0.3667149990797043,-0.6102136340923607,0.4976586354896426,0.39418856240808964,-0.8661980922333896,0.7435599742457271,-0.3542578611522913,-0.20526444213464856,0.7995035392232239,0.42008282616734505,0.13516875030472875,-0.7609019195660949,-0.6018351782113314,0.0665075364522636,-0.7918388932012022,0.1157657140865922,-0.062211450189352036,0.22076241672039032,0.5678676636889577,0.987589503172785,0.13298753276467323,-0.29085898119956255,-0.46501870080828667,0.3164593745023012,0.45046004746109247,0.8505711387842894,0.5144401793368161,-0.6459126099944115,-0.07762659760192037,0.510469127446413,0.12224061787128448,-0.7498849653638899,0.9331947276368737,0.05962795903906226,0.6594641781412065,-0.6425908296369016,0.5129588823765516,-0.0019546826370060444,0.35442676814273,-0.13550343364477158,0.9960189056582749,-0.31076321564614773,-0.5712009212002158,-0.6558321821503341,0.3518144520930946,-0.24799608159810305,0.4940495905466378,0.8749389424920082,-0.8067343784496188,-0.6336058741435409,0.07415017439052463,-0.8661151407286525,-0.16339335963129997,-0.9890382024459541,0.6370823583565652,0.9013254158198833,0.17578872293233871,0.20214138459414244,-0.4076396613381803,-0.7533133258111775,0.9629766400903463,0.9527912880294025,0.04785324074327946,-0.3876885906793177,0.4332890543155372,-0.6149697341024876,0.1395762413740158,-0.39414147939532995,-0.5867114141583443,-0.5698429779149592,0.3750937692821026,-0.9432275220751762,-0.7861665706150234,-0.47929728077724576,-0.40370844257995486,0.3723031892441213,0.998934063129127,0.9185548666864634,-0.453137737698853,-0.36504016630351543,0.16708911303430796,0.9692349908873439,-0.5528600066900253,0.41708272183313966,0.4777717241086066,-0.34983828058466315,-0.13165567396208644,0.5968640237115324,0.29472068464383483,-0.0012497385032474995,0.6452534031122923,-0.2813195683993399,0.9876466514542699,0.09484662674367428,0.6212357692420483,0.6292651374824345,0.6976637793704867,-0.9024022445082664,0.0016361912712454796,-0.45033236173912883,0.5959264049306512,0.5189882577396929,-0.9148494629189372,0.3316317396238446,0.15993357310071588,-0.644063375890255,-0.027914219070225954,0.6834781314246356,-0.9855677611194551,0.21134082460775971,-0.7381200953386724,0.5208438173867762,-0.6071449210867286,-0.6156957997009158,-0.5322666144929826,0.24442143877968192,-0.8369390591979027,-0.7618096307851374,0.7080525225028396,0.07919600466266274,0.42705267993733287,0.9872747994959354,0.5707467934116721,-0.7831048499792814,-0.33742366498336196,-0.3761041206307709,-0.6635361332446337,0.5884329928085208,0.07446382334455848,-0.48866818053647876,0.7666524737142026,-0.48953990172594786,0.7898791502229869,-0.5865714563988149,-0.12093269359320402,0.6718499609269202,0.15576518326997757,0.3826059019193053,-0.13102198159322143,-0.7530773859471083,0.06402181275188923,-0.22341632144525647,0.6261095185764134,-0.8196466783992946,-0.5378900612704456,-0.9647149667143822,-0.30245645390823483,-0.05472037196159363,-0.4989348272792995,-0.8503792290575802,0.9640499665401876,0.7022124319337308,0.20956260664388537,0.8983881282620132,-0.44686739752069116,-0.05277225049212575,0.7063545607961714,-0.843990245833993,-0.20066156052052975,0.8642045934684575,0.9803585507906973,0.5655810749158263,-0.7306088758632541,-0.948487299028784,-0.07284369226545095,-0.2263041539117694,-0.6394538460299373,-0.5254070786759257,-0.1625378499738872,-0.1930835722014308,0.3762755235657096,-0.5596922552213073,0.09698067093268037,0.8891016379930079,-0.6592902699485421,0.5051699751056731,0.3698041741736233,0.48647081200033426,0.1951300734654069,0.25972208520397544,0.4536916520446539,-0.6684564598836005,-0.2000641622580588,0.5672072870656848,-0.43573693791404366,0.5657736891880631,-0.03276796359568834,-0.9180815895088017,0.26271604001522064,0.14914323017001152,-0.23276675818488002,0.8164242315106094,-0.5557647552341223,0.8692934797145426,0.42769376980140805,0.3662447561509907,-0.3719152440316975,-0.8976681870408356,0.47398517467081547,-0.7547311778180301,-0.6211220184341073,-0.3649088339880109,0.4803211372345686,-0.304212449118495,-0.2083052797242999,0.7319784737192094,-0.06437227735295892,0.4552840329706669,0.0010187835432589054,-0.4352858066558838,0.10338665638118982,-0.028446835465729237,-0.5413910555653274,-0.8369548860937357,0.1312801418825984,-0.2762997876852751,0.9382614316418767,-0.034583944361656904,0.6050523458980024,-0.350862049497664,0.5605437941849232,-0.880533894058317,-0.7600166699849069,-0.7886442453600466,0.5373560166917741,-0.26292271772399545,0.9031470604240894,-0.21190221095457673,-0.5409958749078214,0.7850792421959341,0.8267840384505689,-0.1865801834501326,-0.32984182657673955,-0.15523134218528867,0.056344705168157816,0.47139979945495725,0.78750402899459,-0.6025868752039969,0.6300025321543217,-0.34279692033305764,0.1861839615739882,-0.45562590984627604,0.7344157169573009,-0.2331331023015082,0.01223179791122675,0.8420368139632046,-0.5570862893946469,0.22283207532018423,0.41336285741999745,-0.6600800645537674,-0.5104045672342181,0.23246119543910027,-0.9915332994423807,0.7345791510306299,-0.5677129542455077,0.159145244397223,0.3843329823575914,-0.5184064288623631,-0.05334076751023531,0.7361024026758969,0.6552847139537334,0.9038329343311489,-0.11080772615969181,-0.6610285653732717,0.760580322239548,0.4825590383261442,-0.7128143715672195,0.8350398791953921,-0.8211501892656088,0.21724510425701737,0.5672648982144892,0.8173956354148686,-0.482478910125792,-0.9294137791730464,0.9503077240660787,-0.3840337507426739,0.0012479131110012531,0.7581084673292935,-0.11592732835561037,0.2482515862211585,0.04757353896275163,-0.29746749671176076,-0.72478232299909,-0.7029868676327169,-0.841339398175478,0.17330603068694472,0.3588275369256735,-0.1631519291549921,-0.6311024287715554,-0.9938729647547007,0.2995400307700038,-0.32246342673897743,0.26950007397681475,0.8132098857313395,0.7224075580015779,0.14083616761490703,0.22751131653785706,-0.4849769454449415,0.6438549100421369,0.0017875279299914837,-0.35481000365689397,-0.47271903418004513,0.02522800862789154,0.9824649128131568,-0.004242814611643553,-0.11672907928004861,0.033519365824759007,-0.054127287585288286,-0.5281692161224782,0.9912302042357624,-0.7731142188422382,0.7299305717460811,-0.017025765497237444,-0.5767319067381322,-0.8192826882004738,0.854655756149441,0.8389753322117031,0.8234553411602974,-0.4245923403650522,0.950172133743763,0.9935360634699464,-0.6499979994259775,0.18049336783587933,-0.7240329217165709,-0.558619390707463,0.34035181533545256,0.023505311459302902,0.4651583433151245,0.06314131524413824,-0.6760883373208344,0.2884390880353749,0.7105993940494955,0.6484901588410139,0.3299969066865742,-0.754516264423728,0.09890306647866964,-0.1325029842555523,0.2933255759999156,-0.8657462601549923,-0.26203616755083203,-0.797706953715533,-0.1467073173262179,-0.0876907897181809,0.7230359730310738,0.718405363149941,-0.3348004575818777,0.10142317414283752,0.4161291471682489,-0.9341309345327318,-0.5382388243451715,0.23522905400022864,-0.0486330077983439,0.5014294967986643,-0.02045871689915657,-0.4167884383350611,-0.5093214786611497,0.8285877658054233,0.7920953496359289,0.6402405682019889,-0.8961192583665252,-0.9432642795145512,-0.5878151399083436,-0.8162953904829919,-0.5907538114115596,-0.5110084428451955,-0.3932338929735124,-0.19205247471109033,0.1416811258532107,0.28088872227817774,0.6116314055398107,-0.8348558843135834,0.3790035857819021,0.6316424189135432,-0.8087277677841485,-0.40526069374755025,0.9525526575744152,-0.05443953815847635,0.5009225755929947,0.4600113187916577,-0.6505717248655856,0.36452337075024843,-0.66622569039464,-0.6389998802915215,-0.21149159502238035,0.753493725322187,0.5174176227301359,-0.3542537223547697,0.36844007298350334,-0.34050026908516884,0.7290743137709796,-0.40745560312643647,-0.10892117163166404,-0.33736057486385107,0.612897056620568,-0.07749619893729687,0.6342427437193692,-0.8955221497453749,-0.26125550642609596,0.5939893578179181,-0.6960891676135361,0.9263398419134319,-0.5298845414072275,0.9081065943464637,-0.39172935858368874,0.5050398907624185,0.06562440702691674,0.88443533051759,-0.4970241580158472,-0.32719411328434944,-0.21944216918200254,0.5342877684161067,0.4149243268184364,-0.8103421586565673,-0.32477941224351525,-0.6238542506471276,0.25697559490799904,-0.8310281136073172,0.16291519487276673,0.29510863637551665,-0.6016038591042161,-0.5572367873974144,-0.17814106307923794,-0.5966547820717096,-0.5770524069666862,0.07515201764181256,-0.7331375628709793,-0.35348281310871243,0.03338471241295338,-0.44885734049603343,0.6730909100733697,0.9378454545512795,0.32377882674336433,0.5863237851299345,-0.7943491693586111,-0.8919557882472873,0.9616037458181381,0.7310392591170967,-0.05551190860569477,-0.0693532689474523,0.12277702149003744,0.6111367945559323,0.3487293841317296,-0.19826769828796387,-0.33002677001059055,-0.21699457755312324,0.5231357631273568,-0.8475345652550459,0.3180418452247977,-0.39489273307844996,0.5415271068923175,0.4080942333675921,0.33284923853352666,0.7714296015910804,-0.5616731545887887,-0.11176432948559523,-0.8810579092241824,0.22941069630905986,0.4930410860106349,-0.4717173217795789,0.8808915014378726,-0.8061418402940035,0.7172763836570084,-0.9098529131151736,0.20288189314305782,0.16909678326919675,0.26810800191015005,0.12587087834253907,-0.9076659041456878,-0.5067445198073983,-0.10998925426974893,0.42943000700324774,-0.8501843581907451,-0.8749553626403213,0.8761499309912324,0.23179512936621904,-0.3721984145231545,-0.001017318107187748,-0.8695488590747118,0.11678518448024988,0.6686238492839038,0.5809374139644206,-0.7618341594934464,0.205343266017735,-0.4481546408496797,0.7392854453064501,0.5194653505459428,-0.9856842141598463,0.9973942497745156,-0.5797304296866059,0.5047323107719421,-0.12468452053144574,0.6855480917729437,0.5983362616971135,0.9653377900831401,0.16840024199336767,0.15931790322065353,-0.6910569430328906,-0.3603904200717807,0.617609138134867,-0.03381494665518403,-0.012325660791248083,-0.14903555484488606,-0.17447312362492085,-0.5104097658768296,-0.35265841661021113,0.24754229513928294,-0.04717023251578212,0.3983719698153436,-0.9614835963584483,0.6302984287030995,-0.12111938698217273,0.8936231210827827,-0.9319886555895209,-0.19444256462156773,0.5352619658224285,-0.34710505651310086,-0.8970621996559203,0.5690547339618206,0.7619593278504908,-0.4447422605007887,-0.591918611433357,0.8722629938274622,-0.4316665674559772,0.474537992849946,0.16852769581601024,-0.9943785038776696,0.8863949845544994,0.035166488494724035,-0.30947317462414503,0.9570003156550229,-0.9286342784762383,0.0434504053555429,0.24588180053979158,0.5841479883529246,-0.17336463322862983,-0.12545665493234992,-0.10740659106522799,-0.9246121430769563,-0.04236271046102047,0.8060316108167171,0.10534911742433906,-0.681711311917752,0.30152401933446527,0.9902941593900323,0.5351566825993359,0.3250016435049474,-0.7893782602623105,-0.8026504656299949,0.8481598808430135,-0.4942552372813225,-0.8036000574938953,-0.015142695512622595,0.7269036388024688,0.9829976023174822,-0.9578187414444983,-0.04199931817129254,-0.8081335979513824,-0.0685495245270431,0.3347264938056469,-0.6788092749193311,-0.6613198854029179,0.9555241148918867,0.29162313509732485,0.6770272776484489,0.7731121461838484,-0.11256929207593203,0.34514802787452936,0.5685705803334713,0.8150158883072436,-0.9052625806070864,0.17875589430332184,0.8437453494407237,0.5475994450971484,-0.23971931030973792,0.7008734601549804,0.7323694424703717,-0.23482085904106498,-0.8246185639873147,0.5623747906647623,0.9347005900926888,0.10812946036458015,-0.291408684104681,-0.6255198325961828,-0.5299683753401041,-0.32009482523426414,0.402864258736372,-0.3892613463103771,-0.26708326349034905,0.3489300590008497,-0.5201209005899727,-0.3942467113956809,0.8264913749881089,-0.9498496572487056,0.9469773476012051,-0.6669906680472195,0.1266179047524929,0.39115886483341455,0.05953396763652563,0.58055136539042,0.8632603920996189,0.12772599887102842,0.2250993582420051,0.9264234062284231,-0.8860118850134313,-0.11262035090476274,0.21876004710793495,-0.7419668566435575,0.7878926172852516,0.05161760048940778,0.0627063806168735,-0.15951632987707853,-0.6006254609674215,-0.5441661588847637,-0.47772390441969037,0.5844415766187012,-0.35117949498817325,-0.9158208314329386,0.0061188144609332085,-0.5331444679759443,0.7740935911424458,-0.2627780162729323,0.33435886818915606,0.6653960286639631,-0.3903013183735311,-0.5609867163002491,0.11097452510148287,-0.39763440703973174,-0.9517478877678514,-0.5659786649048328,-0.6901511754840612,-0.31106061208993196,0.17659860430285335,-0.45499557023867965,-0.07365779532119632,-0.8909814120270312,0.7263760869391263,0.5531000629998744,0.6744939815253019,-0.11050874134525657,0.5591360125690699,0.0615426548756659,-0.14537523547187448,-0.07693337555974722,-0.47401532530784607,0.468712295871228,-0.6505995239131153,0.03560963738709688,0.6174750565551221,-0.6731030521914363,0.420020439196378,0.25066021736711264,-0.3265407867729664,-0.3226690241135657,-0.05257321801036596,0.10443356959149241,-0.2910102093592286,0.9296096391044557,-0.22573352977633476,0.42323452699929476,-0.9408687702380121,0.5954155130311847,-0.3751215972006321,0.576831815764308,0.8819490680471063,0.38184397062286735,0.29494989197701216,-0.6793801817111671,-0.30304438108578324,0.5382474474608898,0.6153183439746499,0.8079260163940489,-0.2170706749893725,0.033746350556612015,-0.1595418625511229,-0.12510188575834036,-0.11971571110188961,0.7895633154548705,0.33142658369615674,-0.7515985248610377,-0.5972481286153197,-0.2728325957432389,0.9231513724662364,-0.24500891705974936,-0.3643722156994045,-0.7315699229948223,0.03431425988674164,-0.6038673827424645,-0.732596782501787,0.6191981793381274,-0.9165272451937199,0.4426855444908142,0.11170121980831027,0.7750393897294998,0.13387719448655844,0.6616463880054653,-0.6496770824305713,0.83786675427109,-0.6087472280487418,-0.9598020995035768,-0.13356020441278815,0.98317687259987,-0.8649266450665891,0.6720244670286775,-0.06963769486173987,0.7126492508687079,-0.5800886577926576,0.48406768357381225,0.6171335028484464,-0.3791429493576288,-0.6152460868470371,0.7990692076273263,0.7827767739072442,0.1381193776614964,0.02654502307996154,-0.4393969373777509,0.7653719787485898,0.8250902439467609,0.7246326417662203,-0.42997415317222476,0.6206533554941416,-0.3427809961140156,0.20885002007707953,-0.946154419798404,0.08093280624598265,-0.13769060326740146,0.4524126034229994,-0.7154493681155145,-0.24982226872816682,0.4911733167245984,-0.3531017708592117,0.8828954854980111,0.6847298531793058,-0.14763848623260856,0.5739151164889336,0.2177118486724794,-0.06091119023039937,-0.6048734411597252,0.32278498401865363,-0.7824063608422875,-0.9228446404449642,-0.5841631484217942,0.10902997944504023,0.9195148800499737,0.9764509284868836,0.10081717744469643,0.900289501529187,0.7159442943520844,-0.41182394279167056,-0.6959466459229589,-0.45574199315160513,-0.4097243114374578,0.5334914759732783,0.17222632933408022,-0.6257157661020756,-0.4990519895218313,0.7612629681825638,-0.6442806092090905,0.8554632682353258,-0.29475877108052373,0.5182287041097879,0.7019330007024109,0.5219359560869634,-0.09406541753560305,-0.13594450009986758,0.40950821340084076,-0.1806471343152225,0.22903924947604537,-0.8798046642914414,-0.5788161219097674,-0.06958848657086492,0.15052679646760225,0.7680712984874845,0.12263129837810993,-0.9828364001587033,0.40243921615183353,-0.6690113618969917,-0.12521397275850177,0.4272078196518123,0.3977292338386178,0.5036351415328681,0.76718520373106,-0.458258343860507,-0.9631542484275997,0.592281844932586,-0.9679583101533353,0.17986667435616255,0.24380489392206073,0.7564348788000643,-0.5280917682684958,0.6036867029033601,0.10379592468962073,0.13975506462156773,0.3901571608148515,0.43413179414346814,-0.29897209256887436,-0.47907011304050684,-0.8633919660933316,0.3974419394508004,-0.38517292914912105,-0.588504467625171,0.6932278238236904,0.3680620929226279,0.3823238406330347,0.0797486575320363,-0.43896675296127796,0.07283874833956361,-0.9678063569590449,0.9749772846698761,0.08055785624310374,0.9063443280756474,-0.29268136667087674,0.45923411287367344,-0.06920478120446205,0.30872236751019955,0.21081216633319855,0.5521626537665725,-0.17726185265928507,-0.006216909270733595,-0.4706050641834736,0.9983806824311614,0.7459630467928946,-0.23309739166870713,-0.8984056138433516,0.573003126308322,-0.6924111545085907,-0.6672172411344945,-0.8442841288633645,-0.40022250078618526,0.5553237590938807,0.03375103883445263,0.09434135537594557,0.4730894733220339,-0.6354143177159131,0.05038688564673066,0.7608831799589097,0.37196844862774014,0.05012633977457881,0.36964518763124943,-0.8522942392155528,-0.7678398159332573,-0.9135506018064916,0.88248669821769,0.7530222022905946,-0.46923446049913764,-0.9303785609081388,-0.9529497111216187,0.9865628243423998,-0.9521992774680257,0.32052232371643186,-0.8268780591897666,-0.4906993629410863,0.37714447919279337,-0.20011464320123196,-0.7509753736667335,0.7052203803323209,0.9655755860731006,0.2917261905968189,0.22837061015889049,0.39593715453520417,0.04208986880257726,-0.6048870286904275,-0.7053369227796793,-0.03291498636826873,-0.36065118107944727,-0.2682740902528167,-0.17273534927517176,-0.5342417429201305,0.6350592272356153,0.5482271364890039,0.7333059590309858,-0.7810002136975527,-0.112928272690624,-0.8821620442904532,-0.39656247571110725,-0.8375472514890134,0.16524816351011395,0.5397023549303412,-0.870020832400769,-0.583966035861522,0.8750826581381261,0.21373797161504626,0.15196998696774244,-0.4559706998988986,0.5180795649066567,-0.3986007799394429,-0.07530527422204614,-0.43796255020424724,-0.6111179660074413,0.10089804837480187,0.19064577063545585,-0.1451351661235094,-0.8585206465795636,-0.6579063436947763,-0.2656457149423659,0.10727993911132216,0.1295366925187409,0.21892522228881717,-0.2541245762258768,0.7749525387771428,0.09461156465113163,0.8724977076053619,0.14957468211650848,-0.9658079403452575,0.8210228430107236,0.06717836949974298,0.7921951082535088,-0.9703419203869998,0.8808005470782518,0.6985627040266991,0.925211576744914,-0.7440559486858547,-0.32457429077476263,0.83839060831815,-0.7064717132598162,0.2966932882554829,0.994479879271239,-0.9378072870895267,0.3558178865350783,0.8977604424580932,0.42579904943704605,-0.5029416126199067,0.06354406150057912,-0.11997658107429743,0.09702678769826889,-0.093491040635854,0.28130510775372386,0.27365848096087575,0.24887086544185877,0.6692112903110683,-0.43527498561888933,-0.7247061650268734,-0.17242035269737244,0.14623130857944489,0.6457125656306744,-0.09603403089568019,-0.5081476792693138,-0.8120942106470466,-0.7404311709105968,0.674311438575387,-0.9333840813487768,0.5324543351307511,-0.2533890902996063,-0.476612851023674,-0.4993095309473574,-0.9315959815867245,-0.17839349154382944,0.6427289173007011,0.0017472789622843266,-0.15839252714067698,-0.016003283206373453,0.9964077565819025,-0.974800628144294,0.9424141198396683,0.9291435428895056,-0.45490687107667327,0.9679212062619627,0.5533690140582621,-0.5771282780915499,0.1943920161575079,-0.01052654767408967,-0.5483004902489483,-0.28203244181349874,0.6084886440075934,-0.7842727298848331,-0.7669214569032192,-0.7231040862388909,-0.9297762596979737,-0.45138468919321895,-0.02021810319274664,0.9336771871894598,0.06938085565343499,-0.6895840046927333,0.3507206132635474,-0.7531985752284527,0.03147226106375456,-0.9035071274265647,-0.7737534232437611,0.9352894541807473,0.9860180984251201,-0.8346066875383258,-0.9984226296655834,0.7705507487989962,0.5291315256617963,0.49409911409020424,0.4247146314010024,0.8367059398442507,0.8478622366674244,0.26945273159071803,0.5705802468582988,0.5492450315505266,0.6932122358120978,-0.3998436462134123,0.6334223318845034,-0.48348994459956884,-0.9963657972402871,-0.9155526659451425,-0.37493414198979735,0.923226110637188,-0.6273044976405799,0.05354861123487353,0.23871080903336406,-0.29637574683874846,0.44906817749142647,0.31533644814044237,-0.5719398674555123,-0.5596725544892251,0.5659380536526442,0.9688522364012897,-0.515178807079792,0.42412377800792456,0.529915489256382,0.5808834317140281,0.3737199208699167,0.19899588404223323,0.9972457750700414,0.6412314143963158,-0.9560198234394193,0.25796022545546293,0.9466000124812126,-0.7069306201301515,-0.3191862809471786,0.4071747101843357,-0.716840386390686,0.5743193849921227,0.30351497372612357,0.7012529699131846,0.44641152350232005,0.5563387437723577,0.2968571884557605,0.7967380443587899,-0.34452437004074454,0.027217199094593525,0.8132258118130267,-0.9509304352104664,0.3473480585962534,0.5780916316434741,-0.4199703186750412,-0.3687876113690436,-0.9618297312408686,-0.16622475069016218,0.03250908851623535,-0.5229165898635983,-0.045387592166662216,0.945556222461164,-0.4622707376256585,0.7334649981930852,-0.2893969207070768,0.3430190826766193,-0.18254414666444063,0.49657926382496953,0.01211880473420024,0.4902471089735627,0.9093239894136786,-0.4036940289661288,-0.6219937722198665,0.46521584037691355,0.2809292059391737,0.709530362393707,0.7828480056487024,-0.02627368038520217,0.20037055108696222,-0.4554729536175728,-0.04047925164923072,0.3495164914056659,0.21419154666364193,-0.08980376878753304,0.04584106896072626,0.7899441020563245,-0.9379093996249139,-0.10936497803777456,0.7038420378230512,-0.09961137175559998,0.37322639022022486,0.31633902015164495,0.4421820640563965,0.9895156444981694,0.2792893988080323,0.045163373462855816,0.09325639251619577,0.8845035429112613,0.8547898759134114,0.16009885491803288,0.45736670726910233,-0.34499221481382847,-0.43952383380383253,-0.2248650724068284,-0.23135906551033258,-0.9788216091692448,-0.05993279768154025,0.5724213193170726,-0.1438197884708643,0.2653471361845732,0.39422697806730866,-0.3114480525255203,-0.5111030922271311,-0.19639591686427593,0.20552965067327023,-0.6650300393812358,-0.2554059405811131,-0.7348453802987933,-0.3615125669166446,0.08965674275532365,-0.11134083988144994,0.5654656025581062,-0.01702979300171137,0.8670272077433765,-0.8942729854024947,0.3134030825458467,0.26860753493383527,-0.6764855105429888,-0.5513581112027168,-0.11844797991216183,0.4661189732141793,-0.0019418015144765377,0.40213096840307117,0.9586288132704794,-0.18450416438281536,-0.6525951107032597,0.14902909519150853,0.6522187408991158,0.5659650978632271,-0.3909442136064172,0.1583276172168553,0.4382910104468465,0.8936587134376168,-0.7713483953848481,0.10517186718061566,-0.5759153128601611,0.38257065275684,0.7513373550027609,-0.05094197764992714,0.1597996735945344,-0.8748455788008869,0.6968478416092694,-0.6418748800642788,-0.8880991693586111,-0.3208039137534797,-0.5845211306586862,-0.8413836839608848,0.5319535089656711,-0.8959789057262242,0.4220364629290998,-0.6010505924932659,0.6605745544657111,-0.4132902412675321,-0.6796113555319607,-0.1274861739948392,0.627466996666044,-0.293849288020283,0.4551385217346251,0.16144148958846927,0.24664857797324657,-0.26431002421304584,-0.089886583853513,0.4280602685175836,-0.5051150992512703,0.49012578884139657,-0.3327503940090537,-0.6807260341010988,-0.9667730769142509,0.916163198184222,-0.5109199797734618,-0.5639186697080731,-0.48853217298164964,-0.7628881921991706,-0.46412308188155293,0.11148933600634336,0.8300215867348015,-0.20559816155582666,0.5556856631301343,-0.5145318773575127,-0.1697800257243216,0.1094264592975378,0.1757020903751254,0.3491442808881402,-0.6540357423946261,-0.601539802737534,0.2342246132902801,-0.5906691430136561,-0.22519862232729793,0.5482953628525138,-0.342972943559289,0.21238933596760035,-0.4676592294126749,0.5676717199385166,-0.5189726003445685,-0.47801011661067605,0.4227737244218588,-0.545440100133419,-0.05144380871206522,-0.6064660851843655,-0.34352189768105745,-0.7160303592681885,-0.7625958514399827,0.4121080688200891,0.09036157093942165,-0.6977564818225801,-0.6929954360239208,0.19268719712272286,0.24482761602848768,0.39528829464688897,0.883034763392061,0.304489288944751,0.4322265312075615,-0.4602626571431756,0.8087928779423237,0.401916631963104,-0.5109063847921789,0.008234265726059675,0.500565976370126,-0.48246194515377283,-0.6241649105213583,-0.6443352969363332,-0.5638115620240569,0.21808060072362423,-0.38700544461607933,-0.5597569118253887,0.5530862780287862,-0.25008728774264455,-0.4932615589350462,0.9371089325286448,0.3298046183772385,0.620929173193872,-0.026278414763510227,-0.42450853483751416,-0.9508753628470004,0.19211119739338756,0.80743976123631,0.12092677457258105,-0.2154054930433631,-0.4024701449088752,-0.49005198990926147,-0.10197087563574314,-0.8530420428141952,-0.8853118568658829,0.9105364358983934,-0.7561968746595085,-0.8874913435429335,-0.911860151682049,0.6922993105836213,0.08847858291119337,0.6052712285891175,0.3001071712933481,-0.493887891061604,0.8688108576461673,0.561408381909132,-0.4307289463467896,0.18798948777839541,0.7845249683596194,0.9221363696269691,-0.6609610212035477,0.04834513459354639,0.7546006166376173,0.0038599916733801365,0.9765624986030161,0.7030225777998567,0.7140667303465307,-0.40878181625157595,0.5990619282238185,-0.03018048219382763,0.9146507987752557,0.8713414901867509,-0.64336126903072,0.09773616725578904,-0.7307472606189549,-0.16912755696102977,0.29426353005692363,-0.2230788073502481,0.46416830364614725,-0.0021683750674128532,-0.791736613959074,0.8746428131125867,-0.06398116238415241,0.7831456735730171,0.5482946489937603,0.35239892825484276,-0.9338039215654135,-0.01722328132018447,0.41395157016813755,-0.5422615706920624,-0.077437081374228,-0.5612496510148048,0.11498475866392255,-0.5734860743395984,-0.4139920864254236,0.6069852439686656,-0.8149182614870369,-0.004529289435595274,0.02602191874757409,0.7826852649450302,0.40507184714078903,0.7340210559777915,0.3453721636906266,0.5158246210776269,-0.7518045352771878,0.7478131880052388,-0.9154791091568768,0.8017516206018627,-0.11447479669004679,0.3557371376082301,-0.26568600721657276,-0.8126999852247536,0.9820432956330478,0.2666570241563022,-0.6616598595865071,0.9136745943687856,0.919790840242058,-0.7621882981620729,-0.10243143560364842,-0.6345069091767073,0.9114078688435256,0.8356830920092762,0.3488877322524786,-0.04266026569530368,0.33697439078241587,-0.15651879459619522,0.2161356550641358,-0.4719297247938812,-0.38973932107910514,0.4812641851603985,0.6425910210236907,0.5163611709140241,-0.8281641490757465,0.5831493721343577,0.7461040858179331,-0.6700110016390681,0.2594479275867343,-0.39606817346066236,0.8395787472836673,0.3078870214521885,-0.851060158573091,-0.3341456656344235,-0.1894356720149517,-0.2490741154178977,0.5107922684401274,0.27793128322809935,-0.13251654570922256,0.927605077624321,-0.5713664209470153,0.8016500235535204,-0.5230592051520944,-0.695553875528276,0.9705293425358832,-0.34332268591970205,0.6736369598656893,-0.27573214983567595,-0.558549843262881,0.7498945249244571,-0.8639405933208764,-0.8159451461397111,-0.2138097151182592,0.7774558672681451,-0.8862229371443391,0.03954295255243778,0.9706573719158769,0.8846562695689499,0.6295117600820959,0.9448096640408039,0.39858030062168837,0.43885558703914285,0.005512511823326349,-0.7860504374839365,0.37629812443628907,0.36601509153842926,0.515643899794668,-0.5588315492495894,0.7440361366607249,0.8501671934500337,0.14383503003045917,0.875328921712935,0.5829956294037402,0.36743117356672883,-0.32750615756958723,0.7197540700435638,0.18601897964254022,-0.07545540248975158,-0.7641061940230429,-0.7049381630495191,-0.7116529205814004,0.6024808213114738,-0.8093471038155258,0.02883380465209484,-0.8083017827011645,-0.22669078316539526,-0.9244554229080677,0.8925669835880399,-0.546044085174799,-0.06942383805289865,-0.32721998915076256,0.021719219628721476,0.9948682799004018,-0.16217359248548746,-0.9110265909694135,-0.9166088285855949,0.7712545562535524,-0.7257092972286046,-0.39554617553949356,0.8449363261461258,-0.8569394843652844,0.6476922170259058,-0.9041742458939552,0.7239717016927898,0.2229590667411685,0.7173391585238278,-0.44648349890485406,-0.19302733382210135,0.5334524884819984,-0.3127349531278014,-0.2852700366638601,-0.6045785448513925,-0.9977556043304503,0.22555860178545117,-0.6747106313705444,0.425759507343173,0.8313258625566959,0.3500988367013633,0.3180803316645324,0.8877820922061801,0.9325071456842124,0.7261540065519512,0.013481257017701864,-0.9690566277131438,0.5561795704998076,-0.9391848198138177,-0.3826434430666268,0.20832571852952242,0.9888074640184641,-0.5345092946663499,0.3413051594980061,-0.7556383502669632,-0.5161095885559916,0.07331770518794656,-0.9795282683335245,-0.13250893726944923,-0.9510754477232695,0.16476306086406112,-0.7511356896720827,0.1114079155959189,-0.7631962676532567,-0.7724301051348448,-0.08010242925956845,-0.5371455512940884,-0.865493266377598,-0.8231903277337551,0.2598353559151292,0.2939157118089497,0.7814048151485622,0.29667796241119504,-0.6550429756753147,-0.15571605181321502,-0.004107898101210594,0.5276055047288537,-0.152553241699934,-0.08673682017251849,-0.6751479310914874,0.5426655132323503,0.18685894319787621,-0.30844146898016334,0.3849374423734844,-0.41840573120862246,0.9581004884094,0.10038316994905472,-0.6432665474712849,0.9884937405586243,-0.5196494599804282,-0.7648733663372695,-0.9438800807110965,-0.9295930592343211,-0.7570414184592664,-0.44622994773089886,0.19376159692183137,-0.7504173824563622,0.6182501832954586,-0.8095670794136822,-0.17243677843362093,0.9453205522149801,0.9244433734565973,0.22075763810425997,0.2745959907770157,-0.2417059587314725,-0.031189849134534597,0.23530906904488802,-0.3370624706149101,0.7191305025480688,0.1751662092283368,0.8796733669005334,-0.6930319415405393,-0.6283564995974302,-0.6711130659095943,-0.08574414625763893,-0.5222279070876539,0.9230663352645934,0.0006280010566115379,-0.4858135124668479,-0.3393714311532676,-0.10949231591075659,-0.3620055401697755,0.19788866583257914,-0.1143711288459599,0.5609663049690425,0.315824749879539,-0.7414454915560782,0.8334327880293131,-0.14541658060625196,0.14616214763373137,-0.30055567855015397,0.5253255665302277,-0.7517275479622185,-0.7699145120568573,-0.3189916769042611,-0.7622294365428388,-0.2882975875400007,-0.8012216854840517,-0.5805845889262855,0.379092815797776,-0.07587583130225539,-0.6669236645102501,-0.41436627646908164,0.9912504316307604,-0.7299268962815404,0.0709577496163547,0.8975366065278649,-0.8239343627355993,0.10765560762956738,-0.8718206412158906,0.3925886834040284,0.9601988699287176,-0.1855030837468803,-0.7826367747038603,0.22937099169939756,-0.32395738596096635,-0.6373980576172471,0.8961823182180524,-0.4377861339598894,0.30991054279729724,0.2524937014095485,-0.3889910653233528,-0.6231743581593037,0.27121192403137684,0.44582648016512394,0.47267481265589595,-0.5572622464969754,0.5016473405994475,-0.6883951360359788,-0.758142501115799,0.30283171869814396,-0.08597390679642558,-0.18823222815990448,-0.449653044808656,0.4024257459677756,-0.3034100797958672,-0.399058491922915,0.7793965614400804,0.9701671525835991,-0.9581782529130578,-0.44002224830910563,-0.5395961748436093,0.46098602656275034,0.7088923905976117,-0.2752187782898545,0.07691787229850888,-0.9261532197706401,-0.8530567106790841,-0.0244234437122941,0.34830112662166357,0.540131963789463,0.5384704200550914,-0.6361342230811715,-0.45183134265244007,0.4167463048361242,-0.5321788657456636,-0.884741592220962,0.53270673006773,0.23742889938876033,-0.15693503757938743,-0.7996612004935741,-0.39093068009242415,-0.35493134474381804,0.049630106426775455,0.48732946440577507,-0.35466205421835184,0.8811096949502826,-0.36908043222501874,-0.07288198079913855,-0.05793562950566411,-0.2846987545490265,-0.8357213470153511,-0.5206344942562282,0.34176725894212723,0.9389335419982672,0.07926022680476308,-0.044671034440398216,-0.46506424294784665,0.7365596788004041,-0.7273612772114575,-0.205374157987535,-0.559340504463762,-0.9500024020671844,-0.2804928533732891,0.8853207798674703,0.2924523619003594,-0.6997624118812382,-0.5768919573165476,0.7957446798682213,0.33330171182751656,-0.42186833173036575,0.9731978783383965,-0.6361352298408747,-0.2521877302788198,-0.3982949140481651,-0.5940235173329711,0.2376790065318346,0.35312667209655046,-0.5344319548457861,0.03267169464379549,0.6214767503552139,-0.5819751964882016,-0.8905365434475243,-0.23398966761305928,-0.11625182116404176,-0.18040901655331254,0.4053817023523152,0.9422915526665747,0.17961672460660338,-0.3476773966103792,-0.6747554335743189,0.6805171514861286,0.010152562987059355,0.4895462957210839,-0.7235734723508358,0.8369807228446007,-0.6322858757339418,-0.6097456943243742,-0.15274085896089673,-0.8770041954703629,0.2675009281374514,-0.2414359380491078,-0.9102654373273253,-0.4094165279529989,0.24121420178562403,-0.13215142628178,0.3411462460644543,-0.4276130944490433,0.9579210611991584,0.7490238463506103,0.7506821975111961,0.27044225158169866,0.25053022243082523,0.9691749475896358,0.4965857337228954,0.9149579089134932,0.5732752946205437,-0.23681484768167138,-0.08011845266446471,-0.19563149940222502,0.8675815858878195,0.4083870882168412,-0.9578352975659072,-0.8251910796388984,0.8877844586968422,0.5612604841589928,-0.33772608544677496,0.9147830791771412,-0.8268600376322865,0.8819667096249759,0.7197941215708852,-0.3300450355745852,0.5465677892789245,0.19660761347040534,0.07955205347388983,-0.6203546724282205,0.5221773879602551,0.39623708138242364,-0.2869141362607479,-0.6997014144435525,0.3696356392465532,0.9299777620472014,0.612871965393424,-0.24076120043173432,-0.6948636681772768,-0.8688675183802843,-0.14876633090898395,-0.04787445534020662,0.020768797025084496,0.1703064041212201,0.3805367457680404,0.3631738293915987,0.12158380867913365,0.5275145601481199,0.760328003205359,-0.0435479199513793,-0.7007620315998793,0.10012062033638358,-0.9817485017701983,-0.6707509248517454,0.9299598960205913,0.6782370968721807,0.16203304007649422,0.8024161574430764,-0.10618581529706717,-0.0008339318446815014,0.04667409183457494,-0.098099275957793,-0.7332382858730853,0.6054195021279156,0.9825211721472442,-0.836601200979203,0.5166145088151097,-0.18192912871018052,-0.8989233090542257,-0.4808858036994934,0.04977498855441809,0.5414135255850852,0.5915168523788452,0.24420251650735736,0.36142023280262947,-0.8682394349016249,0.5050540519878268,-0.2732226252555847,0.18418624345213175,-0.9105816576629877,-0.0017093881033360958,-0.6079636793583632,0.025519873946905136,0.24345148960128427,-0.6882206411100924,0.627138074953109,-0.651143248192966,-0.038157505448907614,0.5940431379713118,0.18078127084299922,-0.13191624591127038,0.8925244049169123,-0.7779147420078516,0.15487327752634883,-0.5499807200394571,-0.7566550504416227,0.11272615194320679,-0.3104244479909539,0.5337922824546695,-0.5805035238154233,-0.8004389717243612,0.6223329226486385,-0.04338835785165429,-0.8563339528627694,0.32788375671952963,-0.18684678059071302,-0.4511932167224586,-0.1898639714345336,-0.8367701657116413,0.12998040160164237,0.4938937360420823,0.9065633239224553,-0.9372772397473454,-0.8744237311184406,0.6058377986773849,0.3478028541430831,0.3748276331461966,-0.7835985026322305,-0.47645652294158936,-0.3659712024964392,-0.30239636451005936,-0.025040157604962587,0.11159751657396555,-0.5437464686110616,0.5549075161106884,-0.24993560975417495,-0.23446864122524858,0.12052435334771872,-0.9667787780053914,0.5850904500111938,0.44605930242687464,-0.05789397191256285,0.02380286529660225,-0.31173611897975206,-0.7981684864498675,-0.7363748871721327,0.411310788244009,-0.19622961431741714,0.5766521501354873,0.7204135889187455,0.8281043353490531,-0.017319024074822664,0.053629161324352026,0.8828830821439624,-0.388672417961061,0.22096223197877407,0.9326610015705228,0.6073727053590119,0.7456729365512729,0.20854212995618582,0.30825208127498627,-0.09169679880142212,-0.1518139485269785,0.6162720234133303,0.45310823107138276,-0.9674558560363948,0.328324178699404,0.9799030665308237,0.7380327838473022,0.4642410581000149,-0.4932240596972406,0.8429088545963168,-0.07285858411341906,-0.5806924318894744,0.1542601683177054,0.659065998159349,0.7534324135631323,0.4120400734245777,-0.3374007656238973,0.7338749985210598,-0.7331678275950253,0.22422356205061078,0.6326979170553386,0.9905168614350259,-0.7246875679120421,0.9988942923955619,-0.5295348106883466,-0.028499839827418327,-0.5976543193683028,-0.5304071460850537,-0.9846376497298479,0.9245158871635795,0.07218157080933452,0.3677010708488524,-0.06337972870096564,-0.28576732566580176,0.3644126155413687,-0.969856493640691,0.055607242975384,-0.7321034460328519,0.35728134447708726,0.25975178461521864,-0.6266763946041465,0.1876255706883967,-0.37207315443083644,0.25344974733889103,0.004920315463095903,-0.17504690866917372,0.4501857743598521,0.10012079682201147,-0.42255868250504136,-0.3157952157780528,-0.6718069836497307,-0.6068120924755931,0.7677813353948295,-0.21869429759681225,0.7913524759933352,0.9886781610548496,-0.38456175941973925,-0.6374893258325756,0.8796938955783844,0.2977157118730247,0.9960112506523728,-0.6259125708602369,-0.5886628371663392,0.6720537971705198,-0.47730482555925846,0.4036245555616915,0.9080833308398724,-0.16290209954604506,0.0903926189057529,0.9570278516039252,0.5646335370838642,-0.7407718328759074,0.302251779474318,-0.20209377817809582,0.14267490850761533,0.780436226632446,0.31360166100785136,-0.9494223133660853,-0.24485847586765885,-0.26210597762838006,0.2568908059038222,-0.33977474458515644,-0.8193424721248448,0.06401851121336222,0.16789976600557566,0.5123940613120794,0.39158969977870584,0.09308063983917236,0.7871568142436445,-0.3660726808011532,0.2384260124526918,0.8354040458798409,0.36923057259991765,-0.540962970815599,-0.04614776559174061,-0.1242539375089109,0.9374762000516057,0.8765855133533478,-0.2107879971154034,-0.5084827207028866,-0.7938493019901216,-0.5638029179535806,0.7856527608819306,-0.9287166115827858,0.6888989536091685,0.9502195916138589,-0.2241903953254223,0.3360669747926295,-0.3501806599088013,0.9702125522308052,0.0034991339780390263,0.38419454311951995,0.32675987714901567,-0.015458273701369762,-0.17946095950901508,0.30039478931576014,-0.14170344918966293,-0.37383203906938434,-0.3338120258413255,-0.4424932552501559,0.9280524859204888,-0.5362992407754064,0.975033211056143,0.9045491721481085,0.8952524363994598,-0.6668181093409657,-0.007835921831429005,-0.31667131884023547,0.5652241455391049,0.06438054516911507,0.5104902517050505,-0.12376467185094953,-0.9797256221063435,-0.8571254829876125,-0.7048085741698742,0.23771578818559647,0.27569855470210314,0.9854431268759072,-0.10710615944117308,-0.7289738524705172,0.7759891832247376,0.33790410635992885,0.18027819320559502,0.010953165125101805,-0.2298246193677187,-0.8057174296118319,-0.9527471684850752,0.8909475477412343,0.13677517930045724,0.274026055354625,0.6395948557183146,0.6795355468057096,-0.38114550011232495,-0.018198954872787,-0.9359184661880136,0.8132358649745584,-0.30569491954520345,-0.6471416088752449,0.01070905290544033,-0.2610383084975183,0.853303543291986,0.34390989504754543,-0.5190432746894658,0.16959064872935414,-0.8037545359693468,-0.839478550478816,-0.08555122138932347,0.34569091023877263,0.7608968745917082,-0.7853557001799345,-0.07394426269456744,0.19663296220824122,-0.24955096375197172,-0.6035709725692868,0.6806308063678443,-0.40601161820814013,-0.5707097849808633,-0.21795449405908585,0.5623654061928391,-0.9879666049964726,-0.9244381748139858,-0.3347072657197714,-0.6856516427360475,0.9675254132598639,-0.48524518916383386,-0.5750285475514829,0.743296679109335,0.6248258338309824,0.2745240479707718,0.7462502676062286,-0.818646727129817,0.9185766382142901,0.34076084289699793,0.5733347414061427,-0.6796658067032695,0.9079522541724145,0.8527205092832446,-0.477048821747303,0.18248519580811262,-0.4297258099541068,0.4072443568147719,0.9106174483895302,-0.03810073249042034,0.6033775452524424,-0.2927680192515254,0.022476643323898315,-0.5002338807098567,0.1599030983634293,-0.4592593121342361,0.014899102039635181,0.3922056215815246,0.8425556244328618,-0.5090812356211245,0.24804969457909465,-0.33049409929662943,0.7627122430130839,0.40739778708666563,-0.3913144487887621,-0.44281311659142375,0.5263833208009601,0.2782762194983661,0.024815005715936422,-0.14696141006425023,-0.041334610898047686,0.29908199654892087,0.4825267125852406,-0.2060204828158021,0.06701576709747314,0.07796387374401093,0.18218792835250497,0.5143345757387578,-0.7443651407957077,0.7660646149888635,-0.7720681456848979,-0.18488470604643226,0.40828805370256305,0.7007671841420233,-0.7818047315813601,-0.5279751196503639,0.7225448512472212,0.4884593077003956,-0.19934215350076556,-0.1830328623764217,0.860279287211597,-0.8073364985175431,-0.924869071226567,0.6847113417461514,0.5800453051924706,0.8016172274947166,0.6056490889750421,-0.6538063720799983,0.6209273189306259,-0.7127228947356343,-0.6711335834115744,-0.23721197992563248,0.9588089995086193,-0.6162720285356045,0.009780870284885168,0.07722839061170816,-0.45029089879244566,-0.9823069209232926,0.41560903936624527,-0.2639216757379472,0.4984092931263149,-0.8984985053539276,0.5868369773961604,-0.9460605806671083,-0.5717202159576118,-0.8691561850719154,0.8716534064151347,0.8080392144620419,-0.30973876966163516,0.2837500739842653,0.19281270448118448,-0.19731571804732084,0.43192229326814413,0.2880843933671713,0.17787426570430398,0.15090299025177956,-0.37433739146217704,-0.09940596763044596,-0.6809045518748462,0.311865484341979,-0.6871888237074018,0.34183789510279894,-0.5774653367698193,-0.6145020732656121,-0.7983038108795881,-0.3815755737014115,-0.6474701431579888,-0.6409288914874196,0.3519714321009815,0.6004175595007837,0.4137061536312103,-0.5570649183355272,-0.338080779183656,-0.08919422375038266,-0.09576836926862597,0.2595782754942775,-0.6764904619194567,0.8889312362298369,0.29130049142986536,0.6925975047051907,0.5407670671120286,0.5176766458898783,-0.46678796084597707,-0.8288629571907222,-0.6199002615176141,0.14399635000154376,0.6599843534640968,0.9890221641398966,-0.47195421112701297,-0.6793365166522563,0.7875044364482164,-0.27335337782278657,-0.01708065625280142,0.1904492317698896,-0.6271122908219695,-0.5410988829098642,-0.5590797695331275,-0.6629255213774741,0.2890088837593794,0.49378422787413,0.8679376738145947,-0.3149999906308949,-0.8036188161931932,-0.9975841208361089,-0.7727366471663117,0.7035920913331211,0.1258753864094615,0.07563913613557816,-0.4046205999329686,0.07174838706851006,0.7375275832600892,0.2398671586997807,-0.9068621234036982,0.5670891343615949,-0.041022212244570255,-0.7517287358641624,-0.4259778279811144,-0.062428596429526806,0.6800279426388443,0.9317906815558672,-0.7568069379776716,-0.7599380509927869,-0.0335449269041419,-0.6000893209129572,-0.4680651221424341,-0.6839853120036423,-0.8521536123007536,0.44670354248955846,-0.5987396375276148,0.49763131979852915,0.25654354179278016,-0.12860140157863498,0.0908799902535975,0.25720577128231525,-0.863483861554414,-0.28525844356045127,0.22754436125978827,0.37553007481619716,-0.46943848114460707,-0.4896684493869543,-0.8834992540068924,-0.3625859674066305,-0.44730884674936533,0.3659025230444968,-0.08470017882063985,0.7943951552733779,0.1922741299495101,0.47655756678432226,0.8300315383821726,0.05698035005480051,-0.14879441540688276,0.7149381632916629,0.03891626885160804,0.6978203812614083,-0.7619142071343958,-0.7117234505712986,0.8903121198527515,-0.9763138815760612,0.27649027528241277,0.7444610381498933,0.6233033020980656,-0.23677079938352108,-0.8800123212859035,0.6708454531617463,0.9236476439982653,0.046290642116218805,0.953233057167381,-0.9355292906984687,-0.9421982723288238,-0.9839405394159257,-0.523205703124404,0.026666327845305204,-0.1020422326400876,0.6799319027923048,-0.05524254823103547,-0.22917687566950917,-0.17076269537210464,-0.42983642173931,0.610900953412056,0.5162711050361395,-0.21429470321163535,-0.8643046291545033,-0.4194223191589117,0.7362025934271514,0.29205864667892456,-0.2584624602459371,-0.884652394335717,-0.3984858044423163,-0.6887648068368435,-0.737736092414707,-0.6334493951871991,-0.6423704358749092,-0.5689310086891055,0.800014128908515,-0.3574560103006661,-0.9224296691827476,-0.8263867129571736,-0.21161204297095537,-0.9932351014576852,0.812623726669699,-0.06366753345355392,-0.05110743548721075,0.8764261789619923,0.4053382775746286,-0.6790336649864912,0.056486384477466345,-0.24378720531240106,0.3605453856289387,-0.0727837486192584,-0.2563183861784637,-0.958794329315424,-0.20898511912673712,-0.2296732636168599,0.281761490739882,-0.8834096286445856,-0.8687526867724955,0.4487877618521452,-0.5528519283980131,0.29959684098139405,-0.4803966418839991,0.551121253054589,0.8471289821900427,-0.24274556199088693,-0.8953169290907681,-0.6521528009325266,-0.45149917993694544,0.22682348545640707,-0.22616485273465514,-0.7695639682933688,-0.7694270010106266,0.8000288507901132,0.5120853646658361,-0.19832165585830808,0.9151630820706487,0.8411579085513949,0.6870794864371419,0.14646579138934612,0.6907900795340538,-0.8249907149001956,0.2599979559890926,0.06046121194958687,0.7544472622685134,-0.48023487720638514,-0.7561640618368983,-0.2788756540976465,0.8299920312128961,-0.4685765169560909,-0.6030087606050074,-0.03453099261969328,-0.2772026169113815,-0.9576139324344695,0.13316463446244597,-0.43486247723922133,-0.7843921496532857,0.68385742418468,0.8363871462643147,0.22789036063477397,0.314823514316231,0.5216323519125581,-0.7264480227604508,0.9620280549861491,0.20607577404007316,0.1642861240543425,0.6651579546742141,0.5531566618010402,-0.7654364849440753,-0.13437741249799728,-0.6116384244523942,0.7355263996869326,0.3870810349471867,-0.17853258550167084,0.26822846196591854,0.401296759955585,0.6488767815753818,-0.15023765712976456,-0.8551724604330957,-0.604897731449455,0.08806362422183156,0.5356021281331778,0.5781916435807943,-0.5380569435656071,0.44230145402252674,-0.6154564404860139,-0.6974699217826128,0.32968657510355115,0.6086594979278743,-0.9561969707719982,0.5575598310679197,-0.23342366237193346,-0.951297496445477,0.27065569534897804,0.7416722169145942,-0.5692092827521265,-0.021609913557767868,0.7833554553799331,-0.10235505551099777,-0.9399983887560666,0.21146026719361544,-0.3224473837763071,0.8243136997334659,-0.8130501685664058,-0.8652559691108763,-0.8173383148387074,-0.3999921875074506,-0.5554941589944065,-0.6477151978760958,-0.6628337567672133,0.32636758452281356,0.00017330236732959747,-0.03377410629764199,0.06346702622249722,0.037511453963816166,-0.6475018239580095,-0.3254977944307029,0.008297559339553118,-0.4517937023192644,0.3951571537181735,0.41379183484241366,0.3777825445868075,0.5915470072068274,-0.09620049269869924,-0.3830136456526816,-0.5977188809774816,0.5812606643885374,-0.690162141341716,0.10636270046234131,-0.36182570783421397,0.6571266767568886,0.6453256416134536,-0.9552799677476287,0.40911116963252425,0.9429927482269704,0.1634850325062871,-0.051081988494843245,0.7090895702131093,-0.28731131227687,0.8456594166345894,-0.42160807829350233,-0.9046341348439455,0.17376449378207326,0.02317281998693943,-0.2852021907456219,0.11694907071068883,0.8737307991832495,0.9997711107134819,0.748216537758708,0.9347866121679544,-0.1260687056928873,0.04529697773978114,-0.06288242433220148,0.1775418510660529,0.018416593316942453,-0.4931549518369138,0.7134094629436731,-0.29950811993330717,0.15767935011535883,0.6004413925111294,0.8783851051703095,-0.933429135940969,0.1368894879706204,-0.337419836781919,0.11127610644325614,0.42573657585307956,0.5706173074431717,-0.4349175086244941,0.6313654202967882,0.4209570251405239,-0.12270886171609163,0.8868164885789156,0.47366748470813036,-0.02556150918826461,-0.7324441415257752,0.08118048822507262,0.26940418081358075,0.751288905274123,-0.028173386584967375,-0.3505152086727321,-0.20798203209415078,0.19646475231274962,0.7452584342099726,-0.3143571210093796,-0.039596283342689276,0.31945006689056754,-0.7829809342510998,0.14803152391687036,0.37082069693133235,-0.42955115670338273,0.019965615589171648,0.4945269408635795,-0.7344134631566703,-0.40987099008634686,0.5344314449466765,0.8648684206418693,-0.9363600965589285,-0.048923238180577755,0.01989767514169216,0.020430220756679773,-0.3722796677611768,-0.5858313282951713,0.779838222078979,0.5290652019903064,0.9279559249989688,0.22666666703298688,0.30003258027136326,0.29963600914925337,0.18737198039889336,-0.5192284393124282,-0.06778620649129152,-0.8205379801802337,0.5099572082981467,0.6205450687557459,0.362876886036247,0.8633165201172233,0.8250154834240675,0.467799324542284,0.45124294701963663,-0.3866952988319099,0.5388949746266007,-0.027165138628333807,0.295108484569937,-0.3272584076039493,-0.22696106182411313,-0.6366922603920102,0.2142111980356276,-0.8643873794935644,0.5842616674490273,0.5960252932272851,-0.5231806682422757,-0.7644396261312068,-0.7497685519047081,-0.5580697217956185,-0.30627251556143165,0.8631311333738267,-0.42976911552250385,-0.1593935308046639,-0.8910835017450154,0.4969110903330147,0.849343700800091,-0.6661887145601213,0.4929913547821343,-0.5260045598261058,0.8867233726195991,0.7992804604582489,0.9694249480962753,-0.78863530093804,0.1639764690771699,0.3929846021346748,0.9069420835003257,0.7319046105258167,0.14004681818187237,-0.2176745980978012,-0.004317180719226599,-0.6802162495441735,0.021414677146822214,-0.4496870129369199,0.5923799267038703,-0.7732265410013497,-0.10215023253113031,-0.47174621233716607,-0.20055034337565303,0.08211058843880892,-0.13510886719450355,0.2821528809145093,0.7950458112172782,-0.0598443066701293,0.668577803298831,0.17640979308634996,-0.306960626039654,0.7434018258936703,0.03791174432262778,-0.54589366260916,-0.5767091689631343,0.044006768614053726,0.6296105524525046,0.7399466512724757,-0.17920761974528432,0.3164349594153464,-0.6597410133108497,0.4283228921703994,0.8490987354889512,0.3549763262271881,-0.6583419987000525,-0.947245947085321,0.7942463988438249,0.5855718334205449,0.7231335379183292,-0.9983658855780959,-0.5533162215724587,-0.915013833437115,-0.23198018176481128,0.5670455629006028,-0.8637046413496137,0.8853565561585128,-0.23125038109719753,-0.41815358866006136,0.6116915112361312,-0.18301381217315793,-0.19907701900228858,0.1603639218956232,-0.4662116477265954,0.5914143291302025,-0.48861855641007423,0.1533773997798562,0.3219094811938703,0.9803935308009386,-0.07343746814876795,0.3132390477694571,0.1903956914320588,-0.6467758943326771,0.535630657337606,0.05024113040417433,0.4627483692020178,0.8044371632859111,-0.14955893624573946,0.1795603120699525,0.7042916873469949,-0.6690113921649754,-0.520311641972512,0.654718148522079,0.9691346031613648,-0.2176902024075389,-0.8826724593527615,-0.6465771640650928,-0.9959607748314738,-0.27048418251797557,-0.38608796522021294,-0.5979123399592936,-0.5562137584201992,-0.9397984500974417,-0.23654103837907314,0.27358671138063073,0.8047463386319578,-0.456896779127419,0.1145848804153502,0.4333785339258611,0.8055572933517396,0.7022868590429425,-0.6224117213860154,0.678375159855932,-0.6300698448903859,-0.6704823784530163,0.7259880728088319,-0.9993130918592215,-0.6137442425824702,-0.09854625724256039,0.17084070201963186,-0.0951664405874908,-0.6440970306284726,-0.6986187817528844,0.5575247080996633,0.34780309069901705,-0.6166070038452744,0.006330487318336964,0.43483506375923753,0.007259673904627562,0.1918104225769639,0.6894610021263361,-0.3445385629311204,-0.92597466846928,-0.7213191692717373,0.2819825652986765,-0.9646509056910872,0.5334456618875265,-0.59382364153862,0.037980052176862955,0.9548741951584816,-0.7637941255234182,-0.5471894661895931,0.20150486333295703,0.39403725508600473,0.05290577746927738,-0.1575679429806769,0.8579610753804445,-0.8168939226306975,0.6282321619801223,0.10935965785756707,0.02307677548378706,0.2804329991340637,0.09476621961221099,0.5138280019164085,-0.9002972790040076,-0.06190714705735445,-0.699429290369153,0.29922594502568245,0.17859065299853683,-0.6242568185552955,0.4023843538016081,-0.538105670362711,-0.8353291042149067,0.31889286171644926,-0.285439710598439,0.9851773763075471,-0.15882209688425064,-0.5324948932975531,-0.2235154896043241,0.15035643987357616,-0.10238014394417405,-0.6324261007830501,-0.6979585941880941,0.9020484792999923,0.09405040182173252,0.37930043088272214,-0.06172025389969349,0.34861151967197657,-0.19275495829060674,0.6534181921742857,0.04649769747629762,0.6036629951559007,-0.4964595092460513,0.6331293294206262,0.12741161370649934,-0.8350587282329798,-0.6864737835712731,-0.9922374188899994,-0.026857085525989532,-0.2558043086901307,-0.25669269543141127,-0.3583128512836993,-0.11469189822673798,-0.9005335844121873,-0.8786927657201886,0.35144447162747383,0.035564097575843334,0.3514949749223888,0.3339884481392801,-0.39568477077409625,0.18806039541959763,-0.08657063357532024,0.6967450990341604,-0.05897039407864213,0.82393410615623,-0.3166761822067201,-0.7929296586662531,0.24924787506461143,-0.4603992118500173,-0.014477189630270004,0.2926142509095371,0.12302618939429522,-0.9117090106010437,-0.05437925038859248,-0.20458395266905427,0.6138581866398454,-0.8472957452759147,-0.48371239798143506,0.38751728599891067,0.7455253964290023,0.6128212711773813,0.25944237038493156,0.3474287074059248,0.9388543558306992,-0.5212444481439888,-0.013381661381572485,0.966919545084238,-0.3507449319586158,0.07185613783076406,0.48688152339309454,0.5321620851755142,-0.3179466840811074,-0.7404416706413031,-0.7913862196728587,0.4441721634939313,-0.6650941502302885,-0.06013180175796151,-0.25498235784471035,-0.35395323112607,-0.5955740502104163,-0.1394349499605596,-0.27216819301247597,-0.5955763361416757,0.3846029401756823,-0.32997478917241096,0.7032638476230204,0.3775945948436856,0.6301486073061824,-0.739369586110115,0.26250720024108887,-0.7132658744230866,0.3373799757100642,0.9471420687623322,-0.8519279058091342,0.4953573956154287,-0.9094650084152818,-0.9211370861157775,0.6307401591911912,0.3230515201576054,0.7894707312807441,0.2831847434863448,0.11708013620227575,0.01908162096515298,0.7688556173816323,0.8136767018586397,-0.09273447329178452,0.5695701376534998,-0.8727940800599754,-0.5899800751358271,0.4397698394022882,0.8908461621031165,0.18209763430058956,0.18408021796494722,-0.26726890495046973,0.235133889131248,0.7269090511836112,-0.5753889190964401,-0.2708836724050343,0.2583507434464991,-0.5644603003747761,0.26177255576476455,0.09997542994096875,-0.29447835870087147,0.6384021416306496,0.8090147324837744,-0.1384630836546421,-0.4727026508189738,-0.5273952060379088,0.15947341406717896,-0.03905255114659667,-0.8301726183854043,0.48378130327910185,0.9292679424397647,-0.034973808098584414,0.20068422006443143,-0.7582451836206019,0.23950493056327105,-0.4133456442505121,-0.6249339594505727,-0.33706344617530704,0.09861292038112879,0.060145055409520864,0.340630323626101,0.47042218316346407,-0.7349935192614794,-0.8693688684143126,-0.9103999873623252,0.3731134934350848,-0.12067787069827318,0.18829657463356853,0.19307599496096373,0.8909656014293432,0.20228198263794184,0.23166267713531852,0.5686252182349563,0.9257632056251168,0.7220098697580397,0.1320530492812395,-0.4012958901003003,-0.49670583941042423,0.43688838742673397,-0.7019313587807119,0.20168389286845922,0.9319642139598727,-0.5042876079678535,0.12449278449639678,0.7033576346002519,0.48142868280410767,-0.8212969629094005,0.8260940685868263,0.7463457458652556,-0.5256026736460626,-0.7756061498075724,0.11825963901355863,-0.8489556815475225,-0.45396211510524154,0.2323348866775632,0.8826716616749763,-0.02705823676660657,0.5826788800768554,0.7265250659547746,0.9881730582565069,-0.9934413908049464,-0.07037390023469925,0.3105894266627729,-0.14708832884207368,-0.9414135925471783,0.7573421518318355,-0.5727840191684663,0.7755576209165156,0.15191221330314875,-0.2824970157817006,0.8248517597094178,0.8406018554233015,0.055956652387976646,0.6172794965095818,0.849535180721432,-0.23408423410728574,0.21894800197333097,-0.5086741712875664,-0.3835831079632044,0.49236755771562457,-0.9597028028219938,0.6094030919484794,0.3194378106854856,0.4270053585059941,0.33271427918225527,-0.31577993370592594,-0.905600858386606,-0.5183802698738873,0.9348185248672962,0.5679775793105364,0.6164901284500957,-0.6859109262004495,-0.800440366845578,-0.6541623934172094,-0.41696310183033347,-0.5161326178349555,0.5412370557896793,0.5355400061234832,-0.4251540903933346,-0.06864795554429293,0.6464124931953847,0.23242716444656253,0.3487477204762399,-0.9622480450198054,-0.12514723557978868,0.8391588018275797,0.44623455917462707,-0.7290984722785652,0.3118338412605226,0.7224508672952652,-0.3638370935805142,-0.7216160888783634,0.995420946739614,-0.8162836972624063,0.36196266300976276,-0.2888645650818944,0.8324931743554771,0.037313939072191715,0.34774912521243095,-0.24289687862619758,0.35288867307826877,-0.31293362146243453,0.5864417720586061,-0.2120871301740408,0.6015053978189826,-0.26910784328356385,-0.8609394156374037,0.0523991989903152,-0.2490211008116603,-0.36187456641346216,0.19853794714435935,0.7556202095001936,-0.01030275784432888,-0.49749502819031477,-0.28063577646389604,-0.2813410987146199,0.8498061671853065,-0.32059921650215983,0.6071504936553538,0.4435549946501851,-0.6365931211039424,-0.12191433319821954,-0.8429518756456673,0.49718150682747364,-0.0002922345884144306,-0.3976454557850957,-0.8830665713176131,-0.6976779475808144,-0.17207747604697943,0.16551198111847043,-0.658451568800956,-0.16150193009525537,-0.10447406535968184,-0.7526486930437386,-0.19452213821932673,-0.3090948914177716,0.9738583141006529,0.8506674831733108,0.6911936309188604,0.375631473492831,-0.6942970636300743,-0.6624929299578071,0.744808865711093,-0.3652126071974635,-0.6504045017063618,-0.08003253582865,0.7630388969555497,0.8852158254012465,-0.9591851229779422,-0.10491318255662918,-0.38653661077842116,-0.18108096159994602,-0.43048823857679963,0.7634060173295438,0.8696553991176188,0.21899716462939978,0.23964062426239252,0.5593832661397755,-0.16544945444911718,0.8169711395166814,-0.7276365919969976,-0.024587181862443686,-0.13360653445124626,0.8352803373709321,-0.5960118151269853,0.9713279535062611,0.49636090034618974,-0.014101267792284489,0.1411837707273662,0.8924637981690466,-0.07429750310257077,0.30461221979930997,-0.5676591517403722,0.3512656823731959,-0.5403033797629178,-0.8873429666273296,-0.6836523325182498,0.2725760438479483,0.3432027972303331,-0.22248768899589777,0.09173794649541378,0.2769507155753672,0.4955414063297212,-0.5057998211123049,-0.7121270168572664,0.0017311982810497284,-0.9503588639199734,-0.10890944115817547,-0.7501903087832034,-0.32392555521801114,-0.28576856944710016,-0.784458015114069,-0.9001470697112381,0.3968639471568167,-0.734266220126301,0.731830395758152,-0.31664753006771207,0.19626005785539746,-0.8808047417551279,0.8922659028321505,-0.3122543543577194,-0.19718919368460774,-0.6721780272200704,-0.36322530871257186,0.7990838214755058,0.259047488681972,-0.5425933743827045,-0.42711564572528005,0.7844293350353837,0.9940423867665231,0.3500159182585776,0.8642114121466875,-0.2158637624233961,-0.908649770077318,-0.20257348474115133,-0.47813008399680257,0.8336005299352109,0.7469482393935323,0.6720377109013498,0.4088891106657684,0.9594155703671277,0.5671487194485962,0.4244221765547991,0.7547905510291457,-0.7874595196917653,-0.7960323682054877,0.7409906671382487,0.2362381755374372,0.7856942862272263,-0.12662896513938904,0.23188131814822555,0.46576319681480527,-0.47845612559467554,-0.5312495897524059,0.17576839309185743,0.4992877384647727,0.8083318001590669,-0.5165079184807837,-0.3076152200810611,0.36762794898822904,-0.6869143536314368,-0.6598043921403587,0.5870238360948861,-0.9382896106690168,0.6068892441689968,-0.1600235290825367,0.6595322978682816,0.17814888758584857,-0.29276322433725,0.16293400805443525,0.7056452599354088,-0.6695282547734678,-0.9945973940193653,-0.5801072674803436,0.4306660695001483,-0.1517951274290681,0.880068730097264,0.49348799884319305,0.6772648240439594,-0.5390286413021386,0.036567929200828075,-0.06889942847192287,0.9992859829217196,-0.9798305896110833,0.9367003981024027,0.4716131826862693,-0.3086426421068609,-0.7243662984110415,-0.03859083913266659,0.16528606228530407,-0.5997740738093853,0.5321320863440633,0.4396083429455757,0.032617869321256876,-0.22105722595006227,0.4090140466578305,0.08781781839206815,-0.9881329033523798,0.7818338358774781,-0.24361703591421247,0.39708189433440566,0.45203153789043427,0.1979674007743597,-0.8968923762440681,-0.3584454511292279,-0.7166470983065665,0.9110066490247846,0.5489913793280721,0.4538097670301795,-0.2559973672032356,0.7097139707766473,0.12429840210825205,-0.963132836855948,-0.7130318805575371,-0.9551945398561656,0.2910886430181563,0.907885629683733,-0.0019086562097072601,0.4020542735233903,0.3663401850499213,-0.9986199648119509,-0.20812172442674637,0.3311906699091196,-0.6635222611948848,-0.3821100858040154,0.8596683144569397,0.10397968348115683,0.9847505721263587,-0.5897007710300386,-0.5079279071651399,-0.6410009670071304,-0.6706614242866635,-0.3676120899617672,-0.9339323514141142,0.05633684014901519,0.611266324762255,-0.8823969257064164,-0.27448534220457077,-0.3706946554593742,-0.31709454767405987,0.11304202163591981,-0.3195067676715553,-0.7116967476904392,0.7806997029110789,-0.2156547443009913,0.7921081939712167,-0.8755869045853615,-0.3354263440705836,-0.9577457732520998,-0.7422280535101891,0.8310853587463498,0.9698693379759789,0.09194506797939539,-0.4123269491828978,0.967445099260658,0.2763303588144481,-0.7768668094649911,-0.649475515820086,-0.44589161733165383,-0.8232592670246959,0.22403401928022504,-0.22861313167959452,0.7032249863259494,-0.7841131761670113,0.09975130157545209,-0.4273494128137827,-0.5322642452083528,0.9875944666564465,-0.190542493481189,0.6332836095243692,0.15433317050337791,0.6473721317015588,0.5566097563132644,-0.2817864380776882,0.06644078902900219,-0.03134984290227294,0.36529198847711086,-0.6615697457455099,-0.15850215265527368,0.1124197244644165,-0.413129445631057,-0.03299222746863961,-0.2887390968389809,-0.7821859461255372,-0.14067358383908868,-0.09031714173033834,0.2342597171664238,-0.5471435533836484,-0.7397775957360864,0.982015579007566,-0.16561948927119374,0.7539576054550707,0.47938879393041134,0.9227369036525488,-0.5050138155929744,0.08498079422861338,-0.3793018297292292,-0.9822235885076225,-0.489469263702631,-0.7707951692864299,-0.4462995808571577,-0.5594113352708519,0.14241155982017517,-0.1782613373361528,-0.7056955765001476,0.8394786748103797,-0.009660910815000534,-0.6749838027171791,0.510384644381702,-0.5361058241687715,-0.5871504577808082,-0.505638210568577,-0.9324181727133691,-0.25634993333369493,-0.6585808373056352,-0.30019952170550823,-0.3239771006628871,0.7178446124307811,0.2577184159308672,-0.27400807989761233,0.09843247663229704,0.4589360002428293,0.12153936643153429,-0.01786104729399085,-0.14857802959159017,0.25130203226581216,-0.16433421522378922,0.5814212341792881,-0.9978846134617925,-0.022365509532392025,-0.9488561409525573,0.7415384133346379,-0.2649143757298589,-0.8331470657140017,-0.1267375093884766,0.792954898905009,0.9748337278142571,-0.017545479349792004,-0.4734194609336555,0.9370580092072487,-0.41282850317656994,0.1157867955043912,0.2983716977760196,0.453263848554343,-0.5508786253631115,0.5435141338966787,-0.9527829037979245,0.16109633026644588,-0.6427582548931241,0.5744066145271063,0.6068578809499741,0.7055594366975129,0.8174075256101787,-0.5990927652455866,-0.24882427044212818,-0.7073722826316953,-0.048359804321080446,-0.818135510198772,-0.2062882618047297,0.24541691783815622,-0.7871781568974257,-0.7854490419849753,-0.5888508786447346,-0.6708244802430272,-0.06337995734065771,0.9380816277116537,-0.5425953241065145,0.5809842702001333,-0.7195852007716894,0.34745689714327455,-0.20871991757303476,-0.6624237280339003,-0.3304218975827098,-0.7409345712512732,-0.29498010221868753,-0.6545255463570356,-0.20656571816653013,-0.0284508028998971,-0.8100768076255918,-0.9177265353500843,0.5240437523461878,0.49106729216873646,0.7733232537284493,0.5628393199294806,-0.460493968334049,0.8158361348323524,-0.8740135477855802,0.7578332452103496,-0.16067275637760758,0.7151242718100548,0.69071039929986,0.4885565503500402,0.9210122795775533,0.07696019532158971,-0.2211050852201879,0.6345274490304291,0.07597239641472697,-0.4476028964854777,-0.37989478278905153,-0.22495604678988457,0.32083724020048976,-0.662561384961009,-0.39807984279468656,-0.8268372332677245,-0.23716193111613393,-0.8680923697538674,-0.289788831025362,-0.9776101503521204,-0.6909933043643832,0.1190675487741828,-0.11180942365899682,0.5252379449084401,0.38778170570731163,-0.1019524373114109,-0.789494248572737,-0.8441348215565085,-0.39289992209523916,0.795044532045722,-0.8047511884942651,-0.9085491234436631,0.2808693237602711,-0.27979985112324357,-0.6365391695871949,0.8302495796233416,-0.3227978488430381,-0.21850122790783644,0.24843963980674744,-0.5761783979833126,0.7028061836026609,0.599685384426266,0.9610785925760865,-0.4083991558291018,-0.10257295332849026,-0.2498433799482882,-0.9950654855929315,-0.3548163049854338,-0.9803415988571942,0.27623571967706084,0.17026097932830453,0.44369595730677247,-0.2287389663979411,0.8901179293170571,-0.06414002552628517,-0.7653290568850935,-0.5547094554640353,0.7668896391987801,-0.5179417268373072,0.033395576756447554,0.037215023301541805,0.21255286457017064,0.1163358329795301,0.627430830616504,0.3232674663886428,0.5801520436070859,0.6643037004396319,0.7554125916212797,-0.8830051561817527,-0.684264256618917,0.0541992555372417,-0.714532217476517,0.6360161756165326,-0.7928836126811802,0.8249006392434239,-0.496355639770627,0.33645664248615503,0.5666121267713606,0.1417740061879158,0.276062305085361,0.28767639119178057,0.20388362323865294,-0.07024293439462781,-0.6368841957300901,0.9199518589302897,-0.5012380671687424,-0.27886961959302425,-0.7970763840712607,-0.42413096548989415,-0.4532515681348741,-0.5262687564827502,0.831470069475472,0.8807288482785225,-0.5057051931507885,0.7830714210867882,0.33871255023404956,-0.2397080371156335,-0.3291665129363537,0.7409187937155366,-0.42784501891583204,0.28232267126441,0.50854053767398,0.8418946261517704,0.05965409381315112,-0.041066067293286324,-0.15193951642140746,-0.7421889430843294,0.5334190274588764,0.5074265832081437,0.7113199140876532,0.7477217046543956,-0.24829397397115827,-0.5534456274472177,0.49406335689127445,-0.866330049932003,-0.664475919213146,0.13356373505666852,-0.5683911829255521,-0.023393434938043356,-0.9008379722945392],"y":[-0.6817164467647672,-0.9237007065676153,0.6045831548981369,0.9252867768518627,0.25528739066794515,0.6183058815076947,0.03270084783434868,0.5796656790189445,0.867511635646224,0.034970286302268505,0.8645125958137214,-0.3168964982032776,-0.4849744737148285,0.3291185796260834,0.08466343581676483,-0.5564704593271017,0.09511172352358699,0.9683390697464347,0.28551477706059813,0.3013687888160348,0.6765956413000822,0.8646927075460553,0.5701733189634979,-0.19830578053370118,0.29990655882284045,0.6541331303305924,0.6985475039109588,-0.9312392752617598,0.20814131386578083,0.4514961843378842,-0.8563130577094853,-0.7729166685603559,-0.44447555392980576,-0.24264279520139098,-0.8433071146719158,-0.5729517359286547,0.26368309697136283,-0.37869151029735804,0.2011690642684698,0.09193838154897094,0.10066910414025187,-0.37687137350440025,0.06451413175091147,-0.28134676115587354,-0.8626483147963881,0.5394140910357237,-0.6091789668425918,-0.4223706042394042,-0.06612772773951292,0.6317709274590015,-0.994514805264771,0.007573734037578106,-0.7268867050297558,-0.13229736732318997,-0.4692036248743534,-0.14573511853814125,-0.4889486152678728,0.8544537657871842,-0.5895231883041561,0.5479183532297611,-0.5359542253427207,-0.8801916651427746,0.4980008420534432,0.2515620761550963,-0.36345363268628716,0.3206300870515406,0.0376824508421123,0.6851028492674232,-0.3117567505687475,-0.1765456199645996,-0.47666103299707174,0.8488968117162585,-0.9246315793134272,0.7594112330116332,-0.829383721575141,-0.6018571234308183,0.27665106020867825,0.7516608638688922,-0.22389255138114095,-0.8130275229923427,0.46560830948874354,0.041231272742152214,-0.7829096801578999,0.9491529180668294,0.7931411606259644,0.5578986974433064,0.24121370492503047,0.30509676318615675,0.1128380037844181,-0.39901561569422483,0.33388974284753203,0.20567583478987217,-0.9538249298930168,-0.02795463800430298,-0.47769496962428093,0.3543737237341702,-0.3323948006145656,0.631970857270062,-0.4103915928862989,-0.09321996849030256,-0.290785382501781,-0.1301827197894454,-0.6583375008776784,0.41907028295099735,0.27529665594920516,0.8953864122740924,0.18365032132714987,0.9481825763359666,-0.46949254581704736,0.07391892746090889,-0.17984607303515077,-0.8631874909624457,-0.45961220376193523,0.9647622760385275,0.06702750734984875,-0.027774729765951633,0.21380341285839677,-0.3322251867502928,-0.5810471340082586,-0.9904715619049966,-0.47260489221662283,-0.9964925502426922,-0.615385721437633,-0.36078750900924206,0.1847923817113042,-0.742029394954443,0.3180541708134115,0.39774827333167195,0.4982395162805915,-0.6753281615674496,-0.0621347026899457,-0.33950082771480083,-0.9769413862377405,-0.32960224244743586,0.29909870214760303,0.8023411007598042,0.6422070213593543,-0.9352111294865608,0.9993453873321414,0.03107552044093609,0.8720594383776188,0.06984130293130875,0.8017040095292032,-0.36879579024389386,-0.9720838177017868,-0.38162419106811285,-0.742800154723227,0.7785862740129232,-0.37268025940284133,-0.4760174653492868,0.69475166965276,0.05269112903624773,0.37395891174674034,-0.6909553287550807,-0.33011302910745144,-0.3426109873689711,-0.8276792489923537,0.76009401679039,-0.8654486928135157,-0.24704456888139248,-0.5943957217969,-0.6499615986831486,-0.6972813080064952,0.26896253507584333,0.7174219493754208,0.6522929961793125,0.21213712403550744,-0.2728989841416478,0.9978819275274873,-0.5382474595680833,-0.9255404779687524,-0.006501753814518452,-0.5755176078528166,0.4206783580593765,0.8180812988430262,-0.05408192798495293,-0.5297587304376066,0.7868309440091252,-0.1899345712736249,0.5390171119943261,0.016841836273670197,-0.24529995257034898,-0.5228338497690856,0.9212608197703958,-0.7717436640523374,-0.866022503003478,0.00873839482665062,0.5254632020369172,-0.8859227341599762,-0.5926661607809365,-0.44474629405885935,-0.06126768887042999,-0.6208933517336845,0.400184313300997,0.7342942119576037,0.706797534134239,0.8280225591734052,0.5503293783403933,-0.9742595870047808,0.44368703104555607,-0.6983177964575589,0.3978901794180274,-0.9483692720532417,-0.27159864408895373,0.42605425836518407,-0.999570369720459,0.41725159529596567,0.37098534032702446,-0.3512039822526276,-0.5740942698903382,0.5294650155119598,-0.32298342837020755,0.07466291962191463,-0.09210951486602426,-0.8489103284664452,-0.9459563558921218,0.6269451435655355,0.6342664710246027,-0.9373627486638725,0.23677571304142475,-0.8409303384833038,-0.36112985759973526,-0.37759832199662924,0.10040051862597466,-0.8540226528421044,0.5243962509557605,-0.054232263937592506,-0.42636958602815866,0.4280550214461982,0.16203641379252076,0.17543096095323563,-0.7451910614036024,-0.6106133991852403,0.22509544249624014,-0.10143892886117101,-0.5086881085298955,0.02629832737147808,-0.9073665249161422,0.9179523200727999,0.5650176806375384,0.29023460065945983,0.1962331747636199,0.688998568803072,-0.6681731464341283,-0.9963398356921971,0.44533386547118425,-0.15900678746402264,-0.2670842735096812,-0.22715193359181285,0.4314317815005779,-0.1764884665608406,0.6938353241421282,-0.1592204780317843,-0.061350743751972914,-0.10252332082018256,-0.03331804135814309,0.47191173769533634,-0.7097461698576808,-0.5558948153629899,0.8117124494165182,0.4655926041305065,0.4149761884473264,-0.11643974017351866,0.5854375241324306,-0.8034631009213626,0.1412781598046422,-0.7988475626334548,0.1009226837195456,-0.6760319154709578,0.9588247961364686,-0.6698426883667707,0.03134163096547127,0.8962867525406182,-0.11445134412497282,0.4944362244568765,0.35166310612112284,-0.9663699325174093,-0.1830051513388753,-0.33781870966777205,-0.11782113509252667,-0.07389512564986944,-0.08028812240809202,0.045264062471687794,0.6486379066482186,0.8079915787093341,0.03216305514797568,0.7224484705366194,0.843761473428458,-0.008329511154443026,-0.11477516684681177,0.5524135637097061,0.3546107788570225,0.3594967070966959,0.01853500586003065,-0.801994466688484,-0.6298249121755362,0.8599298219196498,0.18026284081861377,-0.0904947011731565,0.9431325104087591,-0.6345871449448168,-0.46607040939852595,-0.35142737021669745,0.185561653226614,-0.8284357818774879,0.8315981803461909,-0.9615343394689262,-0.5085202008485794,-0.6506053139455616,-0.1540060550905764,-0.6937604723498225,0.5139941358938813,0.3548213732428849,-0.0015040780417621136,-0.3310681381262839,-0.009752127807587385,-0.546039086766541,0.13592813210561872,0.31753970170393586,0.7336274231784046,-0.5130108636803925,-0.7385153160430491,-0.025189518928527832,-0.11393077811226249,0.5770380087196827,-0.7586359595879912,-0.12017253506928682,0.06021310854703188,-0.6799064031802118,0.03880475368350744,-0.4174309610389173,0.8011511168442667,-0.2926656869240105,-0.08264070143923163,0.32780562760308385,-0.5526040061376989,-0.7874904763884842,-0.11015886999666691,0.45557595463469625,-0.9311979617923498,-0.9677103003486991,0.2749692224897444,0.09986689453944564,0.005899292882531881,-0.6936416011303663,-0.31047198548913,0.8261614027433097,0.7893566377460957,-0.9208907284773886,0.6762419636361301,-0.6778027475811541,0.23633285844698548,-0.28245911886915565,0.22196360072121024,0.32878669910132885,0.2155901025980711,-0.5634248284623027,0.12328627239912748,0.15168435871601105,-0.8115752227604389,0.5615594643168151,-0.7240775758400559,-0.25440105702728033,0.7999723101966083,-0.8724806299433112,0.34576751152053475,-0.37793830037117004,-0.010878169909119606,-0.24794126022607088,0.7798136086203158,0.682470123283565,-0.026098687667399645,0.6440113708376884,0.8121225517243147,0.5049901371821761,-0.2664021165110171,-0.9482616228051484,0.5289907068945467,0.17872537393122911,0.3611141052097082,0.6903957719914615,0.8357412773184478,0.49350033793598413,0.3371811588294804,-0.3204842167906463,0.29925595223903656,0.24457323644310236,-0.31655623856931925,0.7006144435144961,0.06906011328101158,0.4637559652328491,-0.6104284506291151,0.8314836416393518,0.619261119980365,-0.4071543524041772,-0.9851735727861524,-0.4920718944631517,0.7177898166701198,-0.723357415292412,-0.8361694957129657,0.8834732351824641,-0.507883652113378,0.3715231092646718,-0.13057756004855037,0.990405791439116,0.753921034745872,-0.492027850355953,0.434920915402472,0.10891369264572859,0.08545227395370603,-0.5598976323381066,-0.2160997693426907,-0.3818281749263406,-0.5733374948613346,-0.4573401822708547,-0.15546962665393949,0.17610536143183708,0.974995443597436,-0.525142015889287,0.5733750178478658,0.958805373404175,-0.13274212693795562,-0.941065180581063,-0.30631026066839695,0.8632144895382226,0.38809480983763933,0.07626820355653763,-0.9540511639788747,0.5557208592072129,0.8211453235708177,0.6869350713677704,0.5415527848526835,0.286900348495692,-0.2589876507408917,0.41711420100182295,-0.32275759847834706,0.9135964522138238,0.8747297003865242,-0.09183079283684492,0.5342280962504447,0.6010316936299205,0.1296623181551695,0.4542621220462024,-0.3257716102525592,-0.9267109069041908,0.7738423505797982,-0.7978383954614401,-0.4371380312368274,0.07666374742984772,-0.2641561785712838,0.2853743568994105,0.8403326915577054,0.7838591453619301,0.11355830216780305,-0.20535674504935741,-0.38222920475527644,0.7406657366082072,-0.7104822392575443,0.4357096650637686,0.4547750945203006,0.8138484703376889,-0.4669278613291681,-0.6511915749870241,0.09034838760271668,-0.7735105399042368,0.24274548422545195,-0.27461218973621726,0.34796311566606164,0.8625099812634289,-0.38541771564632654,-0.5167618221603334,-0.7745041847229004,0.5067613427527249,0.06520097143948078,0.5206660851836205,0.3773299283348024,0.6445620455779135,0.9443348227068782,0.7067478518001735,-0.10537120513617992,-0.8507393905892968,0.5017408756539226,-0.3184938346967101,0.12355854641646147,0.03222513711079955,0.0204906165599823,0.35818306915462017,0.597132011782378,-0.47520088916644454,0.27685484662652016,-0.3279999364167452,-0.3189181936904788,-0.8698989343829453,0.5893085277639329,-0.42228898126631975,-0.6165043795481324,0.868461084086448,0.6423143912106752,-0.9389168564230204,-0.7212783484719694,0.8652891730889678,0.23389067314565182,0.09612199105322361,0.2413228084333241,-0.6164751807227731,-0.5527745373547077,-0.237041010055691,-0.8957674968987703,0.45088578620925546,-0.17435370199382305,-0.32689678063616157,0.8838509120978415,-0.8826351971365511,-0.2656610584817827,0.39770821295678616,0.5467254207469523,0.9371510264463723,-0.4848963930271566,-0.622834715526551,0.6340098641812801,-0.97792680375278,0.9653586628846824,-0.13980781333521008,-0.6315629566088319,0.038288014475256205,-0.958934532944113,0.05111357429996133,-0.31279283575713634,0.8696628748439252,-0.9038347662426531,0.2790538873523474,0.3536159722134471,-0.9187882859259844,-0.7102696229703724,-0.8652028306387365,0.4003429221920669,0.7970867259427905,-0.6478409259580076,0.5750352563336492,-0.07141061779111624,0.4594289264641702,-0.5762281347997487,0.29444574797526,-0.5803117142058909,-0.631799518596381,0.9849085337482393,-0.7722908011637628,-0.5989502337761223,-0.4829078149050474,0.7826991155743599,-0.11279447143897414,0.054763367399573326,0.8081508306786418,-0.9309833054430783,-0.6666631526313722,0.3427920676767826,0.22142897499725223,0.659790541511029,0.05516419839113951,-0.5160086867399514,0.816502945497632,0.29253556625917554,-0.7056697411462665,-0.42981718899682164,0.3439101274125278,-0.9490050105378032,-0.8886575475335121,-0.6485372516326606,-0.6786084272898734,0.2384287784807384,-0.7125767492689192,0.5272339759394526,0.35864343168213964,-0.9770814361982048,0.9408916877582669,0.5379915004596114,0.6569340974092484,0.7471467875875533,-0.9985920372419059,-0.6088534547016025,0.051800334360450506,0.2590376641601324,-0.8397177550941706,0.7602714137174189,0.4856932470574975,-0.6034138943068683,-0.42914815060794353,0.17845349432900548,-0.3220905214548111,0.7487931493669748,0.8176191756501794,0.7695554737001657,0.17995953280478716,0.18831741996109486,-0.18723103450611234,0.3729879632592201,-0.4848159565590322,0.5392362903803587,-0.49998086504638195,-0.7774469922296703,-0.5060955164954066,0.6819222187623382,0.15740051632747054,0.7765360842458904,-0.1169072100892663,0.5574109824374318,0.7452859883196652,0.9436914580874145,-0.7040231786668301,-0.5195435900241137,0.3016354735009372,0.47680170414969325,-0.2009290806017816,-0.8556280904449522,0.06168943829834461,-0.5965276239439845,-0.12595664290711284,0.7181259989738464,-0.044263285119086504,0.7198743177577853,0.3187371394596994,0.502311373129487,-0.5343177639879286,-0.027534343767911196,0.9709654846228659,-0.7224275288172066,0.1156843937933445,-0.585062796715647,-0.3945283670909703,-0.8462122324854136,-0.9997296263463795,-0.6343728331848979,0.573506566695869,0.5047218422405422,0.614118492230773,0.2131229038350284,-0.0030859732069075108,-0.17321835411712527,-0.03739782189950347,0.3124294667504728,-0.7223269664682448,-0.44624271243810654,0.9600924495607615,-0.6121241478249431,-0.5479066614061594,-0.12112290784716606,-0.5049796029925346,-0.8542600777000189,0.7360549424774945,0.5915475734509528,0.7290388257242739,0.31332810735329986,0.6206549135968089,-0.32016486627981067,-0.5235315938480198,0.5781318941153586,0.9698388748802245,0.47913172096014023,-0.7264053863473237,-0.8183859223499894,-0.17083531711250544,0.6881358409300447,-0.35596503550186753,-0.14500988135114312,0.6947998222894967,0.2405919129960239,0.918117230758071,0.24477866850793362,-0.17697921628132463,0.016537691466510296,-0.018100666347891092,0.18482443504035473,0.7982115540653467,-0.38338443916291,0.5152777619659901,0.17251612385734916,0.07569286832585931,-0.11672305362299085,-0.7357703922316432,-0.5641033537685871,-0.9172105956822634,0.5350882429629564,-0.49497195053845644,-0.7165587530471385,0.3663707561790943,-0.3349410383962095,-0.8503492102026939,0.42990458523854613,0.12240045936778188,0.24321811040863395,-0.9359810571186244,0.45650562876835465,0.5843432508409023,0.34412116510793567,-0.11903328076004982,-0.9257385353557765,-0.6986658042296767,0.4459393201395869,-0.851011601742357,0.306288939435035,-0.009232180658727884,0.18353241169825196,0.06370380241423845,-0.47122218227013946,0.7093260786496103,-0.5225767833180726,0.44429118698462844,0.4687017551623285,-0.21900361869484186,-0.5540371588431299,-0.21692864783108234,0.18300828337669373,-0.3005310706794262,-0.6146988226100802,-0.465507713612169,-0.7016458185389638,-0.9553785910829902,-0.23947480786591768,-0.12385987071320415,-0.29361256351694465,-0.6633944027125835,0.8216992900706828,0.6996309640817344,0.8802737314254045,0.7421878222376108,-0.40564874466508627,0.8132479335181415,0.11916758771985769,0.03777587367221713,0.9757146090269089,0.6684736455790699,-0.7164515983313322,0.27775669237598777,0.8910113791935146,0.3934063031338155,0.3466652166098356,0.608910652808845,0.4730753442272544,0.6580398604273796,-0.6267358385957778,-0.013389142695814371,0.5505718817003071,0.6882106671109796,-0.4968127920292318,0.6173879886046052,0.23452329961583018,-0.6360571924597025,-0.4021880505606532,-0.4968079044483602,-0.8418474369682372,0.71969786984846,0.07276430493220687,-0.7160284551791847,-0.35342060634866357,0.7405139617621899,-0.4129420015960932,0.619976136367768,0.6641622073948383,0.017074155155569315,0.044699976686388254,0.5242002084851265,-0.3768310868181288,0.8094286546111107,0.8278418965637684,-0.5723353228531778,0.30070753721520305,-0.1971704103052616,-0.724241737741977,0.4446441847831011,-0.400300360750407,-0.5412592664361,0.2669692039489746,0.654539069160819,-0.13749134121462703,0.4928845795802772,-0.6781827989034355,-0.4947752011939883,0.18336053378880024,-0.030233034398406744,-0.7954720044508576,0.6498274337500334,-0.18704967899248004,0.9081368851475418,-0.2463535200804472,0.7294315965846181,0.1520888926461339,0.541579918935895,-0.4616055632941425,0.4620727929286659,0.4189431630074978,0.07453220151364803,0.2114508654922247,0.8046002611517906,-0.4773032469674945,-0.5274582938291132,0.07891563419252634,-0.23753564339131117,-0.699694468639791,0.4065595050342381,0.9113168437033892,0.2258797618560493,-0.5308390455320477,0.219613469671458,-0.1880586282350123,-0.4450986357405782,-0.023643265012651682,0.9863974330946803,-0.8863797807134688,-0.31779131200164557,0.6264848816208541,-0.051433960907161236,0.8604722274467349,-0.8108391929417849,0.03420077729970217,0.9344512759707868,-0.022827095352113247,-0.6572424494661391,0.3720831470564008,-0.6703059659339488,0.41571586625650525,-0.7997555467300117,0.9565093615092337,-0.36369623290374875,-0.7505377344787121,0.6564600802958012,0.5405164994299412,0.6548394574783742,0.14611188415437937,-0.4049868294969201,-0.13330394821241498,-0.004834148567169905,-0.6212197169661522,0.4460638798773289,-0.710763968527317,-0.3857883848249912,-0.8995900438167155,0.9118634033948183,-0.06284912629052997,0.8560478477738798,-0.8342214301228523,0.4971351670101285,-0.6700318409129977,0.7386562405154109,-0.4346996839158237,-0.400955134537071,0.33502177568152547,0.3309439579024911,0.42132943915203214,0.9514993252232671,0.5295272585935891,-0.599028856959194,-0.07305084727704525,-0.3592236153781414,0.9983258647844195,-0.6125709246844053,-0.09658925933763385,0.5027091586962342,-0.07717790547758341,-0.7195235090330243,-0.3570465864613652,0.15195882273837924,-0.7876007976010442,0.8752340478822589,-0.9081920222379267,-0.8718660222366452,-0.4146534577012062,0.1478996896184981,-0.24272027658298612,0.8313003303483129,-0.14027646370232105,-0.1668004826642573,-0.6511561730876565,0.4493655217811465,0.4128179680556059,0.2258467674255371,0.13886498333886266,0.8427603202871978,0.0661281906068325,0.5808791541494429,-0.3791190949268639,-0.4977782191708684,0.8141120094805956,-0.47479312820360065,0.8423923570662737,0.8599852714687586,-0.32043700804933906,-0.09449600894004107,-0.24877585284411907,-0.7764452784322202,-0.06584573397412896,-0.22038982203230262,0.781981407199055,0.02149985544383526,-0.9956495319493115,-0.023946312256157398,0.40197137044742703,-0.5364593821577728,0.3309103990904987,-0.3090563998557627,0.6305020819418132,-0.20115553215146065,-0.9923827438615263,0.4786655865609646,-0.50640550814569,0.20686974562704563,0.9996127346530557,0.06707017496228218,-0.08058953238651156,-0.9099979144521058,0.6265208460390568,-0.4534119786694646,-0.04786196257919073,0.8470394760370255,-0.6830916334874928,0.5875834240578115,0.24974198918789625,0.23234007135033607,-0.5705004311166704,0.08406329015269876,0.009908579289913177,0.4051601644605398,-0.5363140185363591,0.929080821108073,-0.7037885254248977,-0.5903838197700679,-0.8758842372335494,0.07252065511420369,-0.09160828171297908,0.2059396211989224,0.9769203411415219,0.5890186312608421,0.6347760176286101,-0.0835547330789268,-0.7432080204598606,-0.4700198941864073,-0.8030990795232356,0.11772955348715186,0.9575090603902936,0.9751306073740125,0.28958140732720494,0.8774798871017992,-0.7311821822077036,-0.045879377983510494,0.67006706725806,-0.8295878865756094,-0.02658186014741659,-0.18833589553833008,0.004316849168390036,-0.14389683678746223,-0.2483164300210774,0.21542648738250136,-0.61643634038046,-0.2874295595102012,0.5921259052120149,-0.2959605809301138,-0.1745153171941638,0.8356658639386296,-0.9450708059594035,0.22791981464251876,0.8281883308663964,-0.7048861240036786,-0.3838158901780844,-0.6450106096453965,0.23565411986783147,0.5044260434806347,0.42015215242281556,-0.7440213314257562,0.08433713857084513,0.10759867262095213,-0.941764765419066,-0.899802174884826,0.5885167331434786,0.6070646257139742,0.43022267101332545,0.7138940514996648,-0.45392675045877695,-0.35345706017687917,-0.7510984004475176,-0.4508857009932399,-0.6533109308220446,-0.8589348867535591,-0.1986740678548813,0.7207459383644164,0.6525739012286067,0.29148751217871904,0.8863400728441775,0.6342119635082781,-0.9430975052528083,0.22081628814339638,0.7164966459386051,0.7079276801086962,0.7760920994915068,0.877072162926197,0.24855453614145517,-0.0038278247229754925,0.8324102982878685,-0.6346438517794013,-0.6899090623483062,0.22944192169234157,0.974075238686055,0.219435750041157,-0.9764566202647984,-0.10744988359510899,0.27196851558983326,0.8581445147283375,0.9968803045339882,-0.5819911011494696,-0.06392214680090547,0.420782539062202,0.8054980412125587,0.1462766956537962,-0.03471726691350341,-0.45118383038789034,-0.48550254851579666,0.42627644445747137,0.05534500861540437,-0.8619739022105932,0.5049161515198648,0.12456926750019193,-0.6311858664266765,-0.6030511553399265,0.9209334584884346,-0.7824621018953621,0.04351733159273863,0.9354299874976277,0.6121611269190907,-0.33246112102642655,-0.04152424354106188,0.2186878426000476,0.581374695058912,-0.0739660058170557,-0.8635454559698701,0.9816157822497189,-0.5937695018947124,0.36282644513994455,0.7657380178570747,-0.7040599454194307,0.25445113983005285,-0.9845231105573475,0.5401052115485072,0.847192722838372,-0.48837232729420066,0.5584271308034658,0.31576938834041357,0.4719384629279375,0.1741906888782978,0.02699210401624441,0.9217385449446738,0.5291129569523036,0.7661124635487795,-0.5522828614339232,-0.1504197083413601,0.7285081883892417,-0.4710209616459906,-0.3678579544648528,0.09690215531736612,-0.6749480166472495,-0.18311663437634706,0.5943363532423973,-0.23356272745877504,0.6633137492462993,-0.3778583356179297,0.1438898341730237,0.44431070517748594,0.5359935299493372,0.32765757432207465,-0.9364943294785917,-0.4234658475033939,0.6005365080200136,0.3467606185004115,-0.3204131186939776,0.9428435615263879,-0.5970559157431126,0.9746550270356238,0.5513400183990598,0.11543939262628555,0.4245181577280164,0.4369425163604319,0.09365694923326373,0.6579080782830715,-0.2306966194882989,0.12526171561330557,-0.9110592808574438,0.9699874897487462,-0.8248580968938768,0.838478634133935,-0.9175564465112984,-0.1695640399120748,-0.025696252938359976,-0.7142922910861671,-0.479422802105546,-0.47539180889725685,0.25846977392211556,-0.15962632466107607,0.04910479532554746,0.877039223909378,0.60413554077968,-0.0062385862693190575,0.8312524575740099,0.2134175286628306,-0.8720362209714949,0.7456879136152565,-0.5545452116057277,-0.48617501836270094,-0.3529278701171279,0.11018796032294631,0.6009960109367967,0.15314257750287652,0.7489452254958451,-0.856589900329709,-0.7006082558073103,-0.37780804419890046,0.5809498643502593,0.5590119520202279,0.1859990837983787,-0.08851504605263472,-0.25285211810842156,-0.4311223207041621,-0.03261367650702596,-0.8221509819850326,-0.37961390148848295,-0.6609165444970131,0.2715827478095889,0.5952365882694721,-0.07795973913744092,0.8086529858410358,0.4914763504639268,-0.7172760353423655,-0.21971170092001557,0.9811997851356864,0.4071661354973912,-0.7690002690069377,0.7026860187761486,-0.6792848543263972,0.4945826530456543,0.3134731319732964,-0.2907789438031614,-0.1831775358878076,0.38894430408254266,-0.6735665630549192,-0.10520074237138033,-0.11171427834779024,0.14741186145693064,-0.26140464982017875,0.7972284136340022,0.39255066588521004,-0.9892804329283535,0.848918738309294,-0.4551375531591475,0.9719484462402761,-0.593288466334343,-0.6531122392043471,0.7174650691449642,0.34350810712203383,0.6643174388445914,0.7552999816834927,0.8318553133867681,0.5706871557049453,0.7077600094489753,-0.22104744147509336,-0.6525679384358227,0.08774116355925798,-0.013108095154166222,-0.8119428558275104,-0.5007283855229616,-0.8165402077138424,-0.3341027982532978,-0.26001427974551916,0.9417928825132549,-0.8277082950808108,0.5990282534621656,-0.8169641899876297,0.8091281317174435,0.8048274177126586,0.2521257968619466,-0.6999715249985456,0.42559917690232396,-0.9319058116525412,-0.877260247245431,0.6868712333962321,-0.7922609481029212,0.6105905114673078,-0.48727947287261486,-0.9592269929125905,0.5217080358415842,0.1792683405801654,0.09733478585258126,-0.16372312512248755,0.7490368909202516,-0.9225331749767065,-0.722136820666492,-0.9555566599592566,0.5844437261112034,0.29229300282895565,-0.012472026515752077,-0.9953422942198813,0.07228235621005297,-0.8740439182147384,-0.10622250754386187,-0.8465781211853027,0.5703945504501462,0.6917980355210602,-0.7457311386242509,0.16945238132029772,-0.3109235907904804,-0.15460605779662728,0.8539168410934508,-0.9884531307034194,0.4288004287518561,-0.7506263768300414,0.6967740543186665,0.548952670302242,0.3543886370025575,-0.42325289733707905,-0.4492960311472416,0.7538417791947722,0.297134424559772,-0.5678686271421611,0.7941570682451129,0.7199871027842164,-0.34902701852843165,0.9368692766875029,-0.883724114857614,0.35826308466494083,-0.5635296553373337,-0.9997214335016906,-0.9094310868531466,0.7472980883903801,-0.8078967286273837,0.651421376504004,0.7072297371923923,-0.6944330460391939,0.2748733679763973,-0.4096599076874554,-0.5368128987029195,-0.46631925739347935,0.19282299978658557,-0.6476775873452425,-0.2037832480855286,0.002135245595127344,-0.5326725854538381,0.8645249819383025,0.7769413855858147,0.11090658186003566,0.7131314710713923,-0.1845216960646212,0.7711282069794834,-0.3055044445209205,-0.9381540194153786,0.6358515326865017,0.6165847443044186,-0.9749273518100381,-0.20171760488301516,-0.25079915951937437,0.4282675478607416,0.9139188565313816,0.8007134129293263,-0.5274575534276664,-0.4855388510040939,-0.40264245914295316,0.14765803655609488,-0.903240114916116,0.17184821236878633,0.9847398954443634,0.20608967589214444,0.40941885579377413,-0.8844118970446289,0.14690832095220685,-0.15534484572708607,-0.0020092418417334557,0.28077085921540856,-0.03935166075825691,-0.8873177724890411,0.4994467147625983,-0.8969886871054769,0.8601301638409495,0.21443491289392114,0.8801792650483549,0.5378963011316955,0.9374576350674033,-0.1304936376400292,0.5824903226457536,0.4149575149640441,0.262111590243876,0.6929425830021501,-0.35640782630071044,-0.8019732632674277,0.024050765205174685,-0.14186644740402699,0.9790338245220482,0.3869753205217421,0.7983226832002401,-0.39416989870369434,0.0383752416819334,-0.1550470581278205,-0.7408158672042191,-0.06169313145801425,-0.022485025227069855,-0.8407733934000134,0.8623443292453885,-0.3702175966463983,0.6456234087236226,0.677582218311727,-0.8423081953078508,0.3123090276494622,0.1253380784764886,-0.41620991565287113,-0.9723185393959284,-0.27897237055003643,0.21069174213334918,-0.8261520969681442,0.0711062764748931,-0.4568269201554358,0.9005888123065233,0.8843711391091347,-0.46613151812925935,-0.8288264484144747,0.22667039232328534,-0.6795167922973633,0.7025370611809194,-0.38291689194738865,-0.4072574460878968,0.8356738542206585,0.05654655210673809,-0.04922839626669884,-0.4785958956927061,-0.6938088135793805,-0.8583754445426166,0.6205270760692656,0.08625357458367944,-0.12818153761327267,-0.2792102610692382,0.5300700808875263,-0.31625107070431113,-0.48325742594897747,0.2465864452533424,-0.15621530078351498,0.7411474199034274,-0.7606344954110682,0.36420865589752793,0.2841140925884247,-0.848936902359128,0.3831495032645762,-0.07642075605690479,0.353256753180176,0.030878504272550344,-0.35149629320949316,-0.9181897426024079,0.20402309484779835,-0.5953953093849123,-0.14804665558040142,0.9572719600982964,0.04719334747642279,0.1462356518022716,0.5189474835060537,0.4352815253660083,0.9328156397677958,-0.4463537074625492,0.08948978129774332,0.8107865396887064,-0.7552649192512035,0.9005303713493049,0.4394855140708387,-0.8307110485620797,0.06650639371946454,0.9158316431567073,0.27275109430775046,-0.9438026547431946,-0.24136381084099412,-0.5772183970548213,-0.6252014492638409,-0.2990032476373017,0.8584620067849755,0.01252688467502594,0.48727208795025945,-0.05155700072646141,-0.68051727861166,-0.9505622116848826,0.18340576766058803,0.6705786748789251,-0.06394995423033834,-0.8061478459276259,0.7945523881353438,0.5403422131203115,-0.6986800273880363,-0.42569422721862793,0.2938659326173365,0.002134764101356268,0.15865048579871655,0.6916071721352637,-0.5290837623178959,-0.06386350188404322,0.11887903837487102,0.30217380728572607,-0.46120775351300836,0.7948599522933364,-0.4560899827629328,-0.9933442194014788,-0.319158679805696,-0.19275938859209418,0.03168078092858195,-0.3461941513232887,0.9927129596471786,-0.7791176945902407,-0.23798288218677044,0.3184468802064657,0.676908703520894,0.3335454515181482,0.4600849496200681,-0.8978889617137611,-0.7742541003972292,-0.4431324410252273,0.12341869482770562,0.2622194215655327,0.02967688161879778,-0.36548162112012506,0.6005672039464116,0.6035184469074011,0.7056375527754426,0.9165506698191166,-0.5747040067799389,-0.5690170917659998,-0.10086852684617043,-0.21353471837937832,0.806691403966397,0.5463341209106147,-0.9687299849465489,0.48141590086743236,0.23511275928467512,0.9548635608516634,-0.09125743946060538,0.8927866034209728,0.9148565381765366,-0.7427255413495004,-0.5445489231497049,-0.06328003760427237,0.898525224532932,-0.984625777695328,-0.5917593715712428,0.5857699904590845,0.633659097366035,0.6494673513807356,-0.1585029996931553,-0.46572170313447714,-0.3736888994462788,-0.9242206308990717,-0.14169672317802906,0.945021890103817,-0.8144849804230034,-0.4581286245957017,0.6996020353399217,-0.46870615892112255,0.3757043033838272,-0.8846009690314531,0.6390576646663249,0.12539040250703692,-0.8403826127760112,-0.20147290267050266,-0.3118894468061626,-0.9722669371403754,0.12663283571600914,-0.41603629803285,0.6859115376137197,0.4499949626624584,0.18832596903666854,-0.009061693213880062,-0.5195668158121407,0.9040836906060576,0.5470477715134621,0.09953205985948443,0.3040381711907685,0.5836535543203354,-0.42423459235578775,-0.18739727791398764,-0.019768238998949528,-0.6160017792135477,-0.21228494122624397,0.3845767183229327,0.6377687971107662,0.8355623120442033,-0.148129906039685,-0.16636702651157975,-0.47239790251478553,-0.495260376483202,-0.1467253086157143,0.3018173323944211,0.6042809374630451,-0.6751656625419855,-0.15085026063024998,-0.6479893014766276,-0.6855341852642596,0.2980754664167762,0.31637911731377244,0.4586835503578186,0.0702013410627842,-0.3775469232350588,0.16172630805522203,0.45272517297416925,0.836750868242234,0.864133408293128,0.8768973778933287,0.2420652606524527,0.5730655235238373,0.19003642164170742,0.8928413465619087,-0.40409590024501085,0.24905635323375463,-0.42327199364081025,0.049117155373096466,0.7752152476459742,-0.4220621562562883,0.3778554005548358,-0.5794309792108834,-0.5145028727129102,0.8789201201871037,0.5099096037447453,0.9525848357006907,-0.010298541747033596,-0.29992408445104957,-0.8149614799767733,0.37987437238916755,0.16335609694942832,-0.7647481583990157,0.3474695743061602,-0.9603466130793095,-0.5368577353656292,-0.7546733291819692,0.8215344315394759,0.052789286244660616,-0.7742804735898972,0.5134702380746603,0.7346181245520711,0.1848819348961115,0.8066080394200981,-0.18889711936935782,0.8078156034462154,0.4480079752393067,0.9924652841873467,-0.28851719945669174,-0.5742769381031394,-0.40471774945035577,0.8815562617965043,0.4055794016458094,0.25621409015730023,-0.9749356135725975,-0.21130587253719568,0.8055735775269568,0.23944926541298628,0.11250234581530094,0.42545248568058014,0.4834515396505594,0.24015656113624573,0.5592705528251827,-0.6503714891150594,0.7698778291232884,0.6487146764993668,0.7278192169032991,-0.09852949436753988,-0.31242115516215563,-0.18676697742193937,-0.9462773445993662,-0.2214547097682953,0.17906349198892713,-0.3914269511587918,-0.12298275995999575,0.4463288183324039,-0.7427467536181211,-0.566526401322335,-0.028370206244289875,-0.5993033712729812,-0.3984659821726382,0.4865661095827818,0.9632866242900491,-0.9823765521869063,-0.6788866058923304,0.7356051192618906,0.794650353025645,0.1165738208219409,0.2222931059077382,0.7512720860540867,-0.6031510038301349,0.41643338464200497,-0.7974542691372335,0.12384429154917598,-0.7014372600242496,-0.7937898458912969,-0.03612210089340806,0.14485488831996918,-0.2768797464668751,-0.49013987835496664,-0.9137850981205702,-0.3384701437316835,-0.22487218491733074,0.30313044507056475,-0.9942561881616712,0.07596957590430975,-0.5268206945620477,-0.03458724822849035,-0.6529220300726593,0.3851115726865828,-0.08397623198106885,-0.901591963134706,0.7689002347178757,0.23470006557181478,-0.7796315280720592,0.7050444153137505,-0.04057870525866747,-0.5426359539851546,-0.4383024889975786,-0.8438909850083292,-0.3965325220488012,0.8496757820248604,-0.7267668996937573,0.2271143444813788,-0.7297789775766432,0.8559026699513197,0.006147056818008423,0.6352158933877945,-0.4126304122619331,0.8258177107200027,-0.9493345781229436,-0.3168201823718846,-0.9057263797149062,0.6414576703682542,0.049297618214040995,0.11423662165179849,0.558292165864259,0.18755878135561943,0.07690585125237703,-0.27579429978504777,-0.31403817469254136,-0.4061173968948424,0.7794040464796126,0.8795449282042682,-0.10950358724221587,-0.0020362366922199726,-0.027276040986180305,-0.2979609011672437,-0.18078814027830958,0.05535423941910267,-0.45831083646044135,0.3269655159674585,-0.6702462723478675,0.9769192286767066,0.2326133120805025,-0.09377572452649474,0.6816179542802274,-0.48699533799663186,-0.4237196668982506,0.4074098076671362,0.8772012162953615,0.05768424225971103,0.996836039237678,0.31124692037701607,-0.203651855699718,-0.9447914506308734,0.13842362212017179,-0.20966914761811495,-0.1755484575405717,-0.3582121483050287,0.990665263030678,-0.5927807418629527,-0.24857477005571127,0.6482976591214538,0.9583746292628348,-0.25583668053150177,0.6398691018112004,-0.928833928424865,0.5468897256068885,-0.8498309035785496,0.44139704620465636,-0.22849767515435815,-0.26129093300551176,0.6087589478120208,-0.7822386482730508,-0.19236983777955174,0.35508531192317605,0.6997552472166717,0.0031797843985259533,-0.18629113445058465,-0.8640861571766436,0.8371708774939179,0.402189654763788,-0.921322304289788,-0.9489283892326057,0.6977139017544687,-0.009777972009032965,-0.5818951269611716,0.23328543081879616,-0.8543537463992834,-0.04743891255930066,0.7115434925071895,-0.4635390439070761,0.6187384547665715,0.7198394937440753,0.16075139958411455,-0.41988894157111645,0.10708003910258412,0.9955797414295375,0.7691164598800242,0.7517372234724462,-0.9455981901846826,-0.11778332525864244,0.13000865932554007,-0.30963187851011753,-0.9237865549512208,-0.7466609152033925,-0.4408487780019641,-0.19454316049814224,-0.07358182780444622,0.20006002858281136,-0.09779335279017687,0.8408587914891541,0.7604533596895635,0.5863738777115941,-0.5696228118613362,0.6415654178708792,-0.24449315993115306,-0.8140766364522278,0.9105081781744957,-0.16005538357421756,-0.31465634424239397,0.04767443938180804,-0.7731165001168847,0.8195650423876941,0.5741843683645129,0.6813568747602403,0.12263720575720072,-0.8370900810696185,-0.06569129647687078,-0.1441699150018394,-0.7633086233399808,0.8104511913843453,-0.04288469720631838,-0.07327858870849013,0.8339473577216268,-0.5883509395644069,0.2685376428999007,-0.4820859655737877,0.19893941143527627,0.41409102408215404,0.028170857578516006,0.2744767996482551,0.1740265996195376,-0.6529590142890811,0.27704856637865305,0.3356180298142135,-0.13325835205614567,-0.6102148201316595,0.16744556557387114,0.019499632995575666,0.00027046119794249535,0.8983199815265834,0.747674404643476,-0.38603200297802687,0.9678242658264935,-0.6604533991776407,-0.536988525185734,-0.45801481464877725,-0.9847849574871361,0.3214229019358754,-0.6512921336106956,-0.9888892406597733,-0.07239944394677877,0.35253714490681887,0.8513351674191654,-0.4118656017817557,0.26939121494069695,-0.27018417743965983,-0.28511910885572433,-0.09692485444247723,-0.7634301837533712,0.6144705209881067,-0.20724101783707738,0.12790963193401694,-0.2321545034646988,-0.9436573111452162,-0.3846011282876134,0.6965635982342064,0.08724715560674667,0.66688490845263,-0.040468568447977304,-0.8204775513149798,0.9506203858181834,0.6402399875223637,-0.7168129337951541,-0.21568097872659564,0.9080175589770079,-0.2826697095297277,0.7164744762703776,-0.19767795922234654,-0.0029492564499378204,0.832810000050813,0.5198433203622699,-0.08746159635484219,0.0022903778590261936,-0.9675475866533816,0.07901872089132667,-0.07119110552594066,0.6974163614213467,-0.675951886922121,0.9762317151762545,0.9475666903890669,0.4467300116084516,-0.737973955925554,-0.8714132970198989,0.7614425243809819,0.4455502377822995,-0.10177932120859623,-0.035911406856030226,0.24221672303974628,-0.09599064290523529,-0.7694130749441683,0.3020026651211083,0.3635466997511685,0.7572147930040956,0.8350602556020021,0.5370777091011405,-0.7128508626483381,-0.10810898570343852,-0.7741392781026661,-0.7970056803897023,0.059820813592523336,-0.15531737683340907,-0.08369118394330144,-0.6010379646904767,-0.23045368073508143,0.23456360213458538,-0.06100012455135584,0.31735585583373904,-0.7580380770377815,0.5337426527403295,0.4506651791743934,-0.725170869845897,0.7341996761970222,-0.8544052829965949,-0.23422158090397716,0.4631811250001192,0.8854290409944952,-0.4321424341760576,-0.3418879243545234,-0.1950146174058318,-0.4284548801369965,-0.25510718394070864,0.00509289838373661,-0.3793150233104825,0.6753105162642896,-0.8200314273126423,0.9535167701542377,-0.7873575501143932,-0.7447940758429468,-0.40814249496906996,0.42944654589518905,-0.5401375619694591,-0.07317441329360008,0.5508451876230538,0.9496497609652579,-0.3409623713232577,-0.0057379635982215405,0.8051422722637653,-0.8177905208431184,-0.10295981774106622,0.6368986004963517,0.06893318146467209,0.16947139706462622,0.9939950238913298,-0.5173615412786603,-0.5641037221066654,0.9800914502702653,-0.8340067965909839,0.9883981212042272,-0.3878401885740459,0.88088433817029,-0.8188279527239501,-0.7690971381962299,-0.7949912017211318,0.9178454782813787,-0.46911519672721624,0.2664917455986142,-0.2582107740454376,-0.3276648735627532,0.6538354968652129,0.793975826818496,-0.3137213122099638,-0.8009301382116973,0.24347480619326234,0.062006278429180384,-0.09836020227521658,-0.9622338740155101,0.7856239499524236,0.8297440418973565,-0.6753310598433018,-0.9354237355291843,0.5629618861712515,-0.5291738458909094,0.8006818681024015,0.5246767909266055,0.5435744994319975,0.5344091504812241,0.6609802949242294,-0.2916414854116738,-0.019276032224297523,-0.6753474804572761,0.1286425502039492,0.5766346361488104,-0.6193327885121107,0.6351089044474065,-0.9373220577836037,-0.11070349253714085,-0.7995435977354646,0.6554879317991436,0.6169629925861955,-0.3251616796478629,-0.7761860550381243,-0.13867439283058047,-0.3136060736142099,-0.1894270135089755,0.06382775632664561,-0.6688486514613032,-0.4895842201076448,0.43361521093174815,0.28846735693514347,-0.4943647473119199,-0.7028120281174779,-0.2124045267701149,0.8027446144260466,-0.34900818252936006,-0.4352316646836698,0.7762446263805032,-0.6986180637031794,0.16859496291726828,0.8335164282470942,-0.470775599591434,-0.7195614585652947,-0.48374124336987734,-0.02517821080982685,-0.22207674104720354,0.5027119349688292,-0.6932328166440129,0.057858007960021496,-0.6907986206933856,0.6475858460180461,-0.22149890754371881,0.08241727063432336,0.15490251127630472,-0.12978493329137564,0.618411133531481,0.8303224123083055,0.3662843909114599,-0.04267397103831172,-0.4031204399652779,-0.6132611855864525,-0.43070745607838035,0.1375938644632697,-0.9549609567038715,-0.9798167156986892,0.05614672787487507,-0.5432236911728978,-0.06089726323261857,-0.6106366235762835,0.6171819246374071,0.350835707038641,-0.3391931732185185,-0.9278916027396917,0.10957527812570333,0.5891110873781145,-0.28569224337115884,0.731102938298136,0.2207841402851045,-0.8470294550061226,0.14777439925819635,0.3094206075184047,0.44723088201135397,0.08984994562342763,-0.30953277787193656,0.48520211037248373,0.17522486113011837,0.3411397794261575,-0.8567263819277287,-0.4155284082517028,0.9933545920066535,-0.4829261936247349,-0.023202238604426384,-0.8398940730839968,-0.3213994870893657,0.5354975461959839,-0.9931994159705937,0.28074201848357916,-0.9481414058245718,-0.672276312019676,0.9602920575998724,0.8775670509785414,-0.96870988747105,0.28194075264036655,0.9311361215077341,0.9470798941329122,0.971545232925564,-0.4524684678763151,0.4497795570641756,-0.09186114137992263,0.3769394061528146,-0.8539370568469167,0.8477508532814682,0.23012265749275684,-0.7113468148745596,0.3819568590261042,-0.5056080208159983,0.6210132297128439,-0.34079797845333815,0.8061666991561651,0.2917904476635158,-0.559728866443038,0.7870009541511536,-0.17183091398328543,0.17622077092528343,-0.7976160007528961,-0.8422838863916695,0.032658937852829695,-0.8415136621333659,-0.9964499231427908,0.31707369117066264,0.12963591422885656,-0.0404687044210732,-0.11037964234128594,-0.09255020460113883,-0.9049072582274675,0.9588565449230373,-0.07532409578561783,0.9317824416793883,-0.9780049426481128,-0.010982653591781855,0.34278035489842296,0.30906757386401296,-0.5590844871476293,-0.09815143188461661,0.2668104278855026,0.29100873693823814,0.8042333894409239,-0.11759275291115046,0.11958233173936605,0.7654092288576066,0.7628899002447724,0.961254243273288,-0.09659489942714572,-0.36039399169385433,-0.6631614197976887,-0.7810258287936449,-0.4429150833748281,0.31745848851278424,-0.2783107361756265,-0.8476809072308242,0.721200383733958,-0.34727002400904894,0.761979756411165,0.6519672544673085,0.7707569282501936,0.8701233500614762,-0.8518003271892667,0.4187539257109165,0.801414342597127,-0.14390499098226428,0.8818820593878627,0.41332992166280746,0.5421556928195059,0.905957626644522,0.7319511594250798,0.5363734853453934,-0.2779996576718986,0.5801505716517568,-0.9881932167336345,0.942671240773052,-0.5046400283463299,0.6637811013497412,-0.5045017953962088,-0.767045496031642,-0.23644123692065477,-0.5564195043407381,-0.16646331455558538,-0.9292971706017852,0.23542109364643693,0.25967823481187224,0.08659960934892297,-0.3757939343340695,0.013587591703981161,-0.6902365940622985,0.2777463090606034,-0.6660102615132928,0.29091051034629345,0.17572251381352544,0.13860208727419376,-0.280290387570858,0.9726986144669354,0.9904131134971976,-0.5939450012519956,-0.6106194346211851,0.3620154345408082,0.5473206145688891,-0.1430470570921898,-0.8715956234373152,-0.4818942556157708,-0.7350283311679959,0.5709369769319892,-0.8603567113168538,-0.25113380048424006,0.7544220192357898,0.05735723627731204,0.6178416996262968,0.25225062016397715,0.5006736204959452,0.5325005184859037,-0.3177538984455168,-0.2579815974459052,0.7901465049944818,-0.6513723647221923,0.43946527782827616,-0.877502029761672,0.5846678214147687,-0.7022679159417748,0.9842617632821202,0.7613066462799907,-0.5921546989120543,0.39216550486162305,0.4191709472797811,0.6395066920667887,-0.5430287574417889,-0.5232955142855644,-0.7317352765239775,-0.7944236574694514,-0.11439242586493492,-0.2723844824358821,0.1778809204697609,-0.8686845088377595,-0.9033798542805016,-0.6823342270217836,0.3766411654651165,0.7890713703818619,0.5731664295308292,0.8514568163082004,-0.9323287615552545,-0.191230405587703,-0.6297120586968958,-0.6659602536819875,-0.8367433799430728,-0.6842154809273779,0.2745374506339431,-0.5314377965405583,-0.40438434621319175,-0.4895664593204856,0.33844892168417573,-0.9060634216293693,0.430378089658916,0.259842268191278,-0.31418868945911527,-0.0076152253895998,-0.5098568294197321,-0.6715934588573873,-0.1410122704692185,0.23954758187755942,0.0419489536434412,-0.6789343729615211,0.6847199592739344,-0.12087726220488548,0.2974753859452903,-0.029634089209139347,-0.21916950168088078,0.28400408616289496,0.12797555699944496,0.5882757045328617,-0.8752350872382522,-0.9516038694418967,-0.13191531784832478,-0.20116725750267506,-0.7288614301942289,-0.4920940254814923,-0.9908130723051727,0.41034776205196977,-0.24044478219002485,0.33948988607153296,0.6009215475060046,0.6612039054743946,0.9403168074786663,0.6384620605967939,0.05752787133678794,-0.7583006261847913,-0.7304183775559068,-0.2785007106140256,0.907132560852915,0.9469944997690618,-0.03794591361656785,0.1924522747285664,0.6351283262483776,-0.8061955184675753,-0.25495169404894114,0.6293713981285691,0.7414934928528965,0.4300140622071922,-0.674928608816117,0.1684491247870028,0.7315635397098958,0.7036074455827475,-0.26773341093212366,0.25618827622383833,-0.37004568288102746,-0.4110818412154913,0.12515044678002596,0.5769743979908526,0.8481170837767422,0.7245452762581408,-0.5931774047203362,-0.38366494607180357,-0.8708761218003929,0.8557750186882913,-0.7492321683093905,-0.4353373125195503,0.048688553273677826,0.5110704968683422,-0.21503179287537932,0.969357275404036,0.10551914712414145,-0.9766185497865081,0.6739043691195548,0.007488213945180178,0.07642856240272522,0.1642014691606164,-0.6756345527246594,-0.12117540556937456,-0.9581606113351882,0.003424716182053089,-0.13006708212196827,0.20079377060756087,-0.9201051625423133,0.22087766090407968,0.09503215039148927,-0.7506039128638804,0.9094346822239459,0.5473947334103286,0.722086294554174,0.943313623778522,0.45203408878296614,-0.23776787985116243,-0.8695891425013542,-0.9357244833372533,0.10460310755297542,0.9031928940676153,0.39917175471782684,-0.4955832213163376,-0.6609231340698898,0.9846168416552246,0.3455954333767295,0.2175763533450663,0.7306778817437589,0.6673758351244032,0.7801158968359232,-0.8970714909955859,0.14821601379662752,0.03696616878733039,0.6516378610394895,0.9340098658576608,-0.34526990773156285,0.8421514737419784,0.025114321615546942,-0.901300944853574,0.34152646316215396,-0.9508145251311362,-0.33528709318488836,-0.8839620584622025,0.227034246083349,-0.9174017356708646,0.07632623054087162,-0.08859162777662277,-0.3266442511230707,-0.34811137011274695,0.9400791809894145,0.5818446823395789,-0.6932590478099883,-0.6554175154305995,0.679673123639077,0.5522968610748649,0.5969756972044706,-0.5218528392724693,0.5694139609113336,-0.9344289251603186,-0.20875192061066628,-0.11017072154209018,0.1891006357036531,0.7718964172527194,-0.02207791805267334,-0.5234004789963365,0.3846924155950546,-0.33437354303896427,-0.8494684267789125,0.854964897967875,0.3104821848683059,0.008711039088666439,0.722954657394439,-0.169259088113904,-0.09012702666223049,-0.49947640812024474,0.4257505116984248,-0.5823451243340969,-0.6031496273353696,0.5663104895502329,0.9710519518703222,-0.06992008537054062,-0.1689454666338861,0.8936829590238631,-0.21717063523828983,-0.0814512143842876,0.6219549188390374,-0.6834756592288613,-0.16419685585424304,-0.6942832712084055,0.46169981732964516,-0.5713073778897524,-0.4501228700391948,-0.8746512271463871,0.7501836982555687,-0.6357164597138762,0.5787744158878922,0.17779730632901192,-0.9704656614921987,-0.5892169014550745,0.5772595275193453,0.02479279227554798,0.30925125489011407,0.9887594417668879,-0.4114212398417294,0.7576408698223531,-0.8514376636594534,0.2795852548442781,-0.24419058533385396,-0.6203075293451548,0.5629793792031705,0.10139180393889546,0.5360653903335333,-0.36591564817354083,-0.49451624508947134,0.14036408765241504,-0.5053304000757635,0.24158543720841408,0.47692116303369403,0.5254692249000072,-0.8156923269852996,-0.3541526817716658,-0.5981134972535074,-0.22317175334319472,0.5947187142446637,0.5408407445065677,-0.1916060782968998,-0.18317421339452267,0.9029642702080309,0.6324585708789527,0.7094467263668776,0.06617482891306281,-0.04929200652986765,0.9796905657276511,-0.9494056510739028,0.380542223341763,-0.18870439333841205,-0.8934012525714934,0.4045457411557436,-0.5631442540325224,0.5097588049247861,-0.8513674135319889,-0.02153283590450883,0.16233107633888721,0.9879994615912437,0.5230044228956103,-0.08125860756263137,0.008121936582028866,0.5672751758247614,-0.9115213425830007,0.41960389725863934,0.5814250498078763,0.9166135299019516,0.14080703631043434,0.012456715106964111,0.9812849243171513,-0.0016134199686348438,-0.7325467895716429,-0.12281856872141361,-0.4931201133877039,0.05607455503195524,0.03643880598247051,0.622545680962503,-0.7398512409999967,0.3422560920007527,-0.5179466237314045,0.4369123545475304,-0.7788421120494604,0.8735065758228302,0.01900017075240612,0.6000734646804631,-0.08725816057994962,0.14290766045451164,0.44959740340709686,-0.6298585217446089,-0.5004241410642862,0.2936258907429874,0.272163147572428,0.964525228831917,-0.458636196795851,-0.3331883396022022,-0.2120421794243157,0.5209839721210301,0.49377444572746754,0.2459350312128663,-0.8184479810297489,-0.7686886927112937,-0.48155935341492295,-0.22538660699501634,0.05996112897992134,-0.37300327979028225,-0.1545511637814343,-0.6503057214431465,-0.18272084603086114,-0.6094976728782058,-0.22999247582629323,-0.744674501940608,-0.9913548114709556,0.9919882290996611,-0.43631040770560503,-0.24192845495417714,-0.31889720587059855,0.665063685271889,-0.022608374245464802,0.30036939214915037,0.36315064365044236,-0.4020659192465246,0.736283085308969,0.09527408657595515,-0.7827292145229876,0.02829022752121091,0.5584205044433475,0.7339886254630983,0.2216034778393805,-0.772385872900486,-0.18756654160097241,0.7572433454915881,0.810755233746022,0.33484144508838654,-0.32282735081389546,0.016149720642715693,-0.9869171869941056,-0.47587092593312263,0.7477056318894029,0.7573683536611497,0.07846010942012072,0.7052621031180024,-0.9353952459059656,-0.31204131012782454,-0.5063599073328078,-0.38230307027697563,0.6121240509673953,-0.8556802086532116,0.12974564731121063,-0.2579386616125703,0.3975973278284073,0.277965993154794,0.6748877987265587,0.47777665313333273,-0.437828395050019,-0.39046058524399996,0.9276726399548352,0.46426484966650605,-0.227501614484936,0.4525923519395292,-0.5371053623966873,0.22243126388639212,-0.06745704542845488,0.11794978706166148,0.327852301299572,-0.23232599487528205,-0.4712440073490143,-0.08713157847523689,0.4257947066798806,-0.969632311258465,-0.1627200865186751,-0.6679910966195166,-0.7760096611455083,0.6211628587916493,-0.17343651549890637,0.5683369901962578,-0.6975177307613194,0.08112239604815841,0.5315112103708088,-0.2296091835014522,-0.49768657283857465,0.67986542545259,-0.6680197948589921,0.5210172031074762,0.5905223591253161,0.9785170615650713,0.3343402179889381,-0.2509899791330099,0.887285343836993,-0.5666113020852208,-0.755555868614465,0.2586025227792561,0.06456854986026883,0.9054627832956612,0.5138075849972665,0.2079220893792808,-0.4618554241023958,-0.37615370377898216,-0.11362032359465957,0.6612908025272191,-0.3860544082708657,-0.7892625140957534,-0.604652370326221,0.669756465125829,-0.0026506567373871803,-0.8029940100386739,0.4073359169997275,0.004431299865245819,-0.03145506978034973,0.9160619080066681,-0.317869711201638,0.7111792284995317,-0.10078405542299151,0.01032998412847519,0.08966741990298033,0.9244485967792571,-0.2947227950207889,0.625127722043544,0.03156326850876212,0.86481530405581,-0.16280646855011582,-0.03129785507917404,-0.22950440924614668,-0.13220237148925662,0.9536380018107593,0.042743791826069355,0.008028571493923664,0.6140781873837113,-0.8268360774964094,-0.02291069459170103,-0.07004308560863137,-0.724402585066855,0.5710632698610425,-0.17939932644367218,-0.8650341364555061,0.06939604878425598,-0.9153133342042565,0.15423536440357566,0.04422976775094867,0.3281567278318107,0.5521403909660876,0.5738520245067775,0.6832369333133101,-0.9550716178491712,-0.8382813464850187,-0.06480222521349788,-0.8479090598411858,-0.6826837244443595,0.7406076928600669,-0.9987083566375077,-0.8871585251763463,0.891280306968838,0.22647396381944418,0.1594355646520853,0.4543572920374572,0.26051847357302904,0.25254955096170306,0.9081196486949921,0.07455343287438154,-0.014615113381296396,-0.7191489324904978,0.5292503512464464,0.8490617116913199,0.09194586612284184,0.24704923294484615,-0.028571536764502525,0.8690071157179773,0.8879047888331115,0.6285612606443465,0.009119803551584482,-0.39536562794819474,0.2967430637218058,-0.9805571986362338,0.17924169404432178,-0.974671661388129,0.8994972379878163,0.29103255784139037,0.7063010181300342,-0.6975888004526496,-0.9602425168268383,-0.7646981282159686,-0.4115110416896641,0.3554500141181052,0.7301301378756762,0.7082286817021668,-0.05087876692414284,0.7744691926054657,0.9432685878127813,0.9213597713969648,0.9499657885171473,-0.8827526737004519,0.44380307430401444,0.6933686048723757,-0.4292439413256943,-0.8445591502822936,0.548099169973284,0.9545912970788777,0.8984956415370107,0.5006727329455316,-0.4412561166100204,0.779160934034735,-0.9737010425888002,0.03203054750338197,0.8063810630701482,-0.8957840716466308,0.30409765569493175,0.340660419780761,0.18955586571246386,-0.7941229878924787,-0.18069261405617,0.9809864764101803,0.6017000707797706,0.6943383612670004,-0.024402739945799112,0.7436638278886676,0.0801749611273408,-0.4884184985421598,0.7429223032668233,0.6162821361795068,0.30078311171382666,0.8114249282516539,-0.39802600303664804,-0.3711878559552133,-0.7572231674566865,-0.2418367308564484,-0.2905818345025182,0.8189413980580866,-0.6315427389927208,-0.07166316267102957,0.5733346035704017,-0.7271691663190722,0.4901849329471588,0.36035714391618967,-0.9611710417084396,-0.20638334332033992,0.028219664003700018,-0.348859965801239,0.2265827157534659,-0.448407513089478,0.5101971640251577,-0.3487743306905031,0.9469000534154475,0.8916503358632326,-0.7392608290538192,0.7689729160629213,-0.8306575613096356,0.047649867832660675,-0.7475948613137007,0.18624097434803843,-0.5851083961315453,-0.9388085152022541,-0.3896789886057377,-0.598354946821928,0.37012653052806854,-0.44178149942308664,-0.6222746004350483,0.594450896140188,0.6618632609024644,-0.2571432525292039,0.7923325072042644,-0.761027832981199,-0.7747003920376301,-0.5666868104599416,-0.7337295580655336,-0.23232242511585355,0.2520438749343157,-0.44315050821751356,0.8891307353042066,0.8907835311256349,-0.8099562451243401,0.6423612092621624,-0.9102205648086965,0.6298270979896188,-0.2291795965284109,-0.9099136721342802,0.9553123018704355,-0.6986279762350023,0.13462352380156517,-0.443653320427984,-0.38404591009020805,0.5913264285773039,0.8007995565421879,0.8294305624440312,-0.315374786965549,0.3634678889065981,-0.5705520641058683,-0.8812857302837074,0.011694304179400206,-0.2040037508122623,-0.46216200618073344,0.32106340024620295,-0.7021393408067524,0.9006256028078496,-0.5518882796168327,-0.724068745970726,-0.03855291148647666,-0.8014185773208737,-0.8611779622733593,0.52476244000718,0.9264275380410254,0.7468714215792716,0.3060033041983843,0.8795971712097526,-0.07929790578782558,-0.4933995413593948,0.3464309019036591,0.7503568320535123,-0.9230660712346435,-0.36610545264557004,-0.9435084154829383,0.10821440955623984,-0.7905775494873524,0.8863796899095178,0.20199406566098332,-0.2996167493984103,-0.4133533174172044,0.24935905821621418,-0.37841250794008374,-0.7661705724895,0.16343571059405804,-0.7667498639784753,-0.388413421344012,0.9398480663076043,-0.8323581502772868,0.3960508340969682,0.9698631656356156,0.762351343408227,-0.35384661750867963,0.5381039534695446,-0.7845266847871244,0.6845097593031824,0.42026321217417717,-0.2208727882243693,0.18252607248723507,-0.9036067719571292,0.5427326592616737,-0.7488702656701207,-0.7242856086231768,0.562419013120234,-0.18304613651707768,-0.12860190542414784,0.03771981364116073,-0.2348364507779479,0.3022212949581444,-0.9675124562345445,-0.8419472286477685,-0.9141426039859653,0.8561734203249216,0.1076054903678596,-0.7662748424336314,-0.8482726719230413,-0.14619826711714268,-0.5778650594875216,-0.6908713174052536,-0.6714526759460568,-0.5854286849498749,-0.20871900906786323,-0.4560503805987537,-0.7298884983174503,-0.2387965638190508,0.9465422024950385,-0.07190065225586295,-0.09226134046912193,0.3240835890173912,0.6699367011897266,-0.9399819104000926,0.6996861291117966,-0.17412545252591372,-0.5820536222308874,-0.41029114555567503,0.011890729889273643,0.3190291584469378,0.12928138673305511,-0.6243573455139995,-0.19913732958957553,0.6121548051014543,0.052555715665221214,0.6146155642345548,0.25264198752120137,0.7315647373907268,0.3069242797791958,-0.14425296429544687,-0.5698797381483018,0.3841595849953592,-0.5808370490558445,0.9341031932272017,0.23847994301468134,-0.25915296049788594,-0.8245880249887705,-0.3146973103284836,-0.28141350811347365,0.9301149006932974,0.7169358711689711,-0.38848898839205503,-0.8179335654713213,0.9091134699992836,-0.23274001805111766,-0.08414655085653067,-0.49272137600928545,-0.3217442058958113,-0.3836547271348536,0.2141533480025828,-0.9381216843612492,-0.40333458688110113,0.46081568533554673,0.2966402368620038,-0.6597450338304043,0.2620384655892849,0.7537406412884593,0.45776261715218425,0.7704166085459292,0.6735809971578419,-0.3059969521127641,0.10281573049724102,0.23903107782825828,-0.7101040068082511,-0.7999180909246206,-0.6699986811727285,-0.619764287956059,0.3460519346408546,0.01364142494276166,0.35049744322896004,-0.056070310063660145,-0.7738140956498682,-0.8902498725801706,-0.7316229026764631,-0.6065217508003116,-0.9770349250175059,-0.9914293861947954,-0.3610547259449959,0.17333292728289962,0.5947215296328068,-0.608261535409838,-0.6564204762689769,0.7819669810123742,0.7165649947710335,-0.5734479064121842,0.2209528647363186,-0.6850753356702626,0.9415252935141325,-0.8999766130000353,-0.8928414536640048,0.9347117277793586,0.36189119331538677,-0.3132763961330056,-0.5808276389725506,0.1910275644622743,-0.11969560524448752,-0.622288407292217,0.4936389783397317,0.9085118155926466,-0.9820475419983268,0.6647079768590629,0.8377216313965619,0.6859654788859189,0.5677198660559952,-0.757949345279485,0.06287933047860861,0.7509714309126139,0.7803697185590863,-0.12574366992339492,-0.9387527699582279,0.5795187312178314,-0.5542969754897058,0.7223732648417354,0.7277550254948437,-0.9815648687072098,0.6151540358550847,-0.9852891163900495,-0.8877368327230215,-0.8856464149430394,-0.7277707550674677,0.35959421284496784,-0.46406429912894964,0.784985862672329,-0.38427443942055106,0.6898251930251718,-0.8347389702685177,0.2523947888985276,-0.19526237808167934,0.9652370545081794,-0.4462693533860147,-0.0070063527673482895,0.814109097700566,0.5759671339765191,-0.9531095428392291,-0.2033822531811893,-0.30756343249231577,0.40814476180821657,-0.8337865038774908,0.3905311394482851,0.39554787473753095,0.21572887897491455,-0.9189409562386572,0.37221801467239857,-0.07105305790901184,-0.6472713216207922,0.7311586984433234,0.9923029304482043,-0.12868112232536077,-0.309135923627764,-0.5919971992261708,-0.021875038277357817,-0.8174003791064024,-0.734799160156399,0.9040824230760336,-0.06695790169760585,0.3417061395011842,0.6742947176098824,-0.8244495084509254,0.7548618125729263,-0.9601702378131449,0.7661419445648789,0.8499945029616356,0.4906872399151325,-0.799210162833333,-0.9325150270015001,0.0428710887208581,0.04652474680915475,0.048611934296786785,-0.35218993248417974,0.5146790468133986,-0.08696541981771588,0.446395271923393,0.4607516098767519,-0.6658525876700878,-0.7838394641876221,-0.7828027447685599,0.2397728255018592,-0.44360126135870814,-0.08589758444577456,0.8621922302991152,-0.029610087163746357,-0.4045387408696115,-0.6372048379853368,-0.7929134448058903,0.3862299877218902,-0.6064644469879568,-0.45005066227167845,-0.21909182611852884,-0.10743125481531024,0.1973688341677189,0.6601029406301677,-0.30330811394378543,0.23713370272889733,-0.19357211282476783,0.7496653064154088,-0.2909759166650474,-0.5368863167241216,-0.5462297713384032,-0.6098163714632392,0.04886922053992748,0.8053315044380724,-0.46412301203235984,0.88245565071702,-0.7975881458260119,-0.37605253141373396,-0.2713382323272526,0.4100030167028308,0.4107065051794052,0.667688509915024,-0.5040391716174781,-0.014927895274013281,-0.6248263409361243,0.8341199858114123,0.7488348907791078,-0.10357184940949082,-0.3015135880559683,0.35915520740672946,-0.41072119073942304,0.151920635253191,0.2513256794773042,-0.593552278354764,-0.4521245644427836,0.11525189690291882,0.5008491352200508,-0.4225983377546072,-0.5045985169708729,0.24170349584892392,0.7429846744053066,0.93592928070575,0.22822381742298603,0.2650248697027564,-0.13909261813387275,-0.05188323091715574,-0.9117674762383103,-0.07050640601664782,-0.5361839761026204,0.5240526557900012,0.6191440704278648,-0.7691759876906872,-0.7568761399015784,0.8113431492820382,0.24897620966657996,-0.41456324560567737,-0.6567411660216749,0.7233364661224186,0.8707066858187318,0.10980052314698696,-0.6146839689463377,0.8366560954600573,0.781699494458735,-0.6087796012870967,0.8350355052389205,-0.8265654956921935,0.2740562856197357,0.9577436484396458,-0.842998078558594,0.45515489485114813,0.7808346133679152,0.8791851405985653,-0.8560734437778592,0.8020347133278847,-0.03524147067219019,0.345268527045846,-0.8211335055530071,-0.22418628633022308,0.6925392453558743,0.18986144801601768,0.9819054366089404,-0.30074094654992223,0.9543571448884904,0.20345723954960704,-0.7041043536737561,0.6187265855260193,-0.5020417990162969,-0.585817585233599,0.11904369108378887,-0.37082982482388616,0.5053492290899158,0.9389268737286329,-0.10262743476778269,0.5433149905875325,-0.4501902055926621,0.9521946394816041,0.20982551202178001,-0.7785033001564443,0.18332694191485643,-0.338885260745883,0.329791693482548,-0.4550396124832332,-0.5178816406987607,-0.8088425709865987,0.06741448631510139,0.6467651929706335,0.25857130624353886,0.29088642774149776,-0.23528091376647353,-0.4152944376692176,0.1927105663344264,-0.381777077447623,0.704310942441225,-0.23682923708111048,0.05972794722765684,0.7594435103237629,0.3338211765512824,0.4261288777925074,-0.42795917857438326,-0.6853235187008977,-0.4043243220075965,0.6639390718191862,-0.3720710324123502,-0.2551237610168755,0.2992007667198777,-0.5935039352625608,-0.2856718343682587,-0.5678484938107431,-0.01363756088539958,-0.9031845699064434,-0.26643590442836285,-0.14157405123114586,-0.9098502090200782,0.6628266149200499,0.5084762191399932,0.27311391150578856,0.8217382961884141,0.0018980950117111206,0.27299042558297515,-0.08355857711285353,-0.4790834253653884,-0.06681288732215762,0.4401021786034107,0.8022436229512095,0.35282863583415747,0.47432822920382023,0.3738633766770363,0.6487422101199627,0.375197961460799,0.22255797823891044,-0.850588018540293,0.9372626566328108,0.10393165098503232,-0.049571031238883734,-0.487755520734936,0.4590517086908221,-0.1788419522345066,-0.17734597669914365,0.3269713846966624,-0.2841691947542131,-0.4865605519153178,0.619808716699481,0.8863628744147718,-0.20278599858283997,0.055969576351344585,0.60567856580019,-0.3405321086756885,0.4033866999670863,-0.8130709058605134,0.817830836866051,-0.9384161033667624,0.7841283362358809,0.3444905448704958,0.2356255273334682,0.33423818508163095,-0.6287131072022021,0.7796120583079755,-0.5609229630790651,-0.33562455559149384,-0.8741350648924708,0.13391833705827594,0.77758984034881,-0.3302882593125105,0.23981258692219853,-0.5340682435780764,0.015687425155192614,0.7812943351455033,-0.41345846001058817,0.366720587015152,0.984462009742856,0.03340964112430811,0.7186821112409234,-0.5185094703920186,-0.4356702431105077,-0.655828133225441,-0.6303343959152699,-0.1539051029831171,-0.21085240179672837,0.8699388592503965,0.44757177541032434,-0.060936175752431154,-0.5397668033838272,-0.1322496780194342,-0.19152687909081578,-0.9781469660811126,-0.6163787748664618,0.6045613251626492,0.3113549333065748,-0.08174846926704049,-0.5304079125635326,0.8879288462921977,-0.6822102647274733,0.2724577123299241,-0.4983247513882816,-0.9290968240238726,-0.40171964187175035,-0.963259800337255,-0.6260288180783391,-0.6010680100880563,-0.1470629177056253,0.6046917461790144,0.44709258200600743,0.17766385758295655,0.4621436493471265,-0.5312413205392659,0.7728030001744628,0.9145418968982995,0.7907178304158151,-0.8813402242958546,0.09533698065206409,-0.373784301802516,0.7959902319125831,0.5329016391187906,0.9131123386323452,-0.09608483454212546,0.4887785157188773,0.30505115864798427,-0.7786510814912617,0.9150379113852978,-0.041311359498649836,0.9769101687707007,-0.20462499605491757,-0.0796980787999928,-0.5910827522166073,0.650870846118778,0.20997099997475743,-0.9248313973657787,0.9826478050090373,0.6369680198840797,0.061776131857186556,-0.8468310572206974,0.24662802135571837,-0.9376954571343958,-0.3771586059592664,0.4645108049735427,-0.14625546941533685,0.011453588958829641,-0.47851583641022444,-0.5125149409286678,-0.08495417749509215,-0.5921220504678786,-0.3196858293376863,-0.7906169826164842,-0.7781036859378219,-0.9942113650031388,0.6634326437488198,-0.0016558198258280754,-0.33276716573163867,-0.2478404608555138,0.0883421041071415,0.4537045047618449,-0.6841147169470787,-0.9518929868936539,0.11668338859453797,0.5506379092112184,0.46492721186950803,0.11687217187136412,0.6981081338599324,0.1943986308760941,-0.7476768814958632,0.9721065629273653,-0.7148176883347332,-0.8613348007202148,0.9822406219318509,-0.17390146618708968,-0.5354219418950379,-0.13089812267571688,-0.21295426925644279,0.35076080076396465,0.08917320892214775,-0.549994973000139,0.5742808151990175,0.9196935980580747,0.412898491602391,0.27484299009665847,0.7387727694585919,-0.7566181691363454,-0.1019130926579237,0.817498326767236,-0.1422375338152051,0.956050596665591,0.19321646867319942,-0.40120554668828845,0.6236683344468474,0.20919337309896946,0.8863638802431524,-0.45245017716661096,-0.2047443250194192,-0.6140687461011112,0.18865912733599544,-0.27894522342830896,-0.23926013801246881,-0.24376142444089055,0.417419564910233,0.9639198239892721,0.561672973446548,-0.18574112514033914,0.2441698727197945,-0.7174114910885692,0.05837355647236109,0.9890745156444609,-0.9468488818965852,-0.6355585008859634,0.5937314005568624,0.7847887384705245,-0.3130909111350775,-0.684378360863775,-0.6313932910561562,-0.23284380789846182,0.3672816236503422,-0.6145527097396553,0.6153679033741355,0.07744374871253967,0.04989565862342715,0.25249424716457725,0.37265154626220465,0.019607755821198225,-0.23574676970019937,0.8043013727292418,-0.7742917034775019,0.7083764155395329,0.3039376186206937,-0.7885441398248076,-0.596191646065563,0.5424061128869653,0.2300614546984434,0.48048842838034034,-0.27138369996100664,0.4044825825840235,0.8793658092617989,-0.6593843968585134,0.7474965858273208,-0.6063162069767714,0.0793286575935781,0.7870747521519661,-0.46976467268541455,0.10877851210534573,0.8979895645752549,-0.503129790071398,-0.4647740554064512,-0.09902432980015874,0.10873463982716203,0.17290506046265364,-0.7110715508460999,-0.6433902685530484,-0.5233532562851906,-0.5520368381403387,0.2872023764066398,0.9994408753700554,0.5418323068879545,0.24457652773708105,0.6999499048106372,0.7848233059048653,-0.45723056979477406,-0.04359445348381996,0.3176704244688153,-0.023496403358876705,-0.32373300194740295,0.10929448064416647,-0.2033537719398737,-0.9124537240713835,-0.6409733616746962,0.5467617986723781,0.31413475051522255,-0.0024124793708324432,-0.9462452470324934,-0.5727549539878964,0.8963344511575997,-0.4690319844521582,-0.4404919818043709,0.19313610531389713,0.7885261536575854,-0.5830213166773319,0.11986208660528064,-0.08622090984135866,-0.24706104584038258,0.6737761502154171,0.4388220710679889,-0.598371964879334,0.6933596800081432,0.7345782392658293,0.5856982059776783,0.6350472611375153,-0.7003611628897488,0.6132561098784208,-0.039058553986251354,0.2792330561205745,-0.30191477248445153,0.21106963139027357,-0.8627106714993715,0.46571299713104963,-0.5883533805608749,0.7392482538707554,-0.06794730015099049,0.03682263055816293,0.8004265925846994,-0.04080583155155182,-0.7065564151853323,0.7562090307474136,0.36675733840093017,0.4452018686570227,-0.854261392261833,0.5812057950533926,-0.050742048770189285,-0.7010067454539239,0.17690766556188464,0.03072069212794304,0.3470320743508637,-0.24298059893772006,0.20226485654711723,0.35388655634596944,-0.11723752692341805,-0.30028714099898934,-0.471457720734179,-0.29387797554954886,0.3102583549916744,0.42191180493682623,-0.7558811218477786,0.7293032030574977,0.18750716047361493,0.5848213429562747,-0.6954020182602108,0.9629630371928215,-0.17960469285026193,0.3585728290490806,-0.5105451168492436,0.622994938865304,-0.39638037141412497,0.0057336390018463135,0.45652076322585344,-0.38580681988969445,0.6885406346991658,0.5200072955340147,-0.6841264115646482,-0.6608614679425955,0.6249201907776296,0.9788545998744667,0.5645678448490798,0.4591392194852233,-0.0330340089276433,-0.48935174103826284,0.9910191218368709,-0.6906126453541219,0.8826880673877895,-0.46504156896844506,0.5397828803397715,-0.9178639408200979,0.10622990503907204,-0.7673212140798569,0.8201333633624017,0.8377267075702548,0.6084438352845609,0.4331653234548867,-0.47644630912691355,-0.25873994641005993,-0.8386633517220616,0.3398948684334755,0.07214688649401069,-0.4587931833229959,0.3931843489408493,-0.6082062162458897,0.779638649430126,-0.16602875851094723,0.8685982176102698,-0.2373197595588863,0.15797785017639399,-0.5141065674833953,-0.022207006346434355,-0.27574190963059664,0.02222101017832756,-0.8476760680787265,-0.0022154063917696476,-0.8283498231321573,0.87133898306638,-0.8627468622289598,-0.44265584321692586,-0.9855896420776844,-0.5863230004906654,-0.9180090157315135,-0.8480895720422268,-0.32915929425507784,-0.8564652041532099,-0.37830563401803374,0.33050655387341976,-0.5546855670399964,-0.8385033728554845,-0.8205102328211069,-0.7700934954918921,-0.8463088781572878,0.26983972219750285,0.06973956571891904,0.624749937094748,0.04275268875062466,0.1765222679823637,-0.6254636850208044,-0.3080286951735616,-0.8927624803036451,0.43098546704277396,-0.5222794148139656,0.7527140583842993,-0.9385920059867203,-0.42611049208790064,-0.7832765630446374,-0.5275351144373417,-0.2290081763640046,-0.13445581821724772,-0.5828121844679117,0.5756169464439154,-0.5272755026817322,-0.12296697543933988,-0.03853239677846432,0.4501917730085552,-0.09260773146525025,-0.05180773325264454,-0.19893662398681045,-0.6135937366634607,0.6611734605394304,0.08059176336973906,0.3847714951261878,-0.012416909448802471,0.626071588601917,-0.8321212958544493,0.44386303052306175,-0.45979407243430614,0.18873984878882766,-0.5977037837728858,0.6272954232990742,-0.12742786761373281,-0.3974507334642112,-0.08483741758391261,0.7271330282092094,0.4596132831647992,0.5020995200611651,0.879344570916146,0.6554256835952401,-0.1968324426561594,-0.06220150087028742,0.17949389573186636,0.8613407318480313,0.09278967790305614,0.26070625707507133,0.5810730797238648,0.09626100957393646,-0.7792954193428159,-0.36756607750430703,0.10586039070039988,0.2225471045821905,0.13513376750051975,0.6664909035898745,0.8276119166985154,-0.9679249059408903,-0.7349859224632382,0.775433296803385,0.21835518162697554,0.9646092006005347,0.3148037022911012,-0.14220014959573746,0.48143886774778366,0.1836496815085411,0.5989715680480003,-0.6364023820497096,0.9327166769653559,0.8882319345138967,-0.9013519329018891,0.2628513923846185,-0.6725455280393362,0.1926337326876819,-0.9932195930741727,0.7392167937941849,-0.5080231828615069,0.48369397316128016,0.5016116141341627,-0.21794049302116036,-0.392999951262027,0.5306672742590308,0.839333773124963,-0.63926353584975,0.37278552167117596,-0.4980016755871475,0.27518202969804406,-0.4478521775454283,0.3429965591058135,-0.2800435684621334,0.40064676525071263,0.048704000655561686,-0.6686613829806447,0.00898569542914629,-0.11437633680179715,-0.7466065753251314,-0.02362250117585063,-0.2707286016084254,0.7402269560843706,-0.7665123892948031,0.8252413193695247,0.40418957313522696,-0.7061230754479766,-0.3907198873348534,0.6575935473665595,-0.3922078856267035,0.28869567811489105,-0.16628927737474442,-0.6051210938021541,-0.4744303347542882,0.5444082864560187,-0.62209079740569,-0.7803262937813997,0.8700040383264422,0.11148905102163553,0.9926489964127541,-0.12646473292261362,0.12803414138033986,0.14986400166526437,-0.6255775396712124,-0.34065209375694394,0.3360403124243021,-0.4215275966562331,-0.611970339436084,-0.49161363998427987,0.007658588699996471,0.25133355567231774,0.3454926861450076,0.7378527903929353,0.583090016618371,0.6915253051556647,0.41636927984654903,0.4315520077943802,0.9111081999726593,-0.7886065267957747,0.4595111859962344,0.06100409757345915,0.3988671717233956,0.9769253889098763,-0.9547219667583704,-0.9183138036169112,0.02248897822573781,-0.5311846053227782,0.12670178757980466,0.25359658617526293,-0.024017504416406155,-0.5643745977431536,-0.8125631338916719,0.008500705007463694,0.11396556021645665,0.04407172556966543,0.29889595275744796,-0.2569640055298805,-0.34594634221866727,-0.12964252848178148,-0.5736470627598464,-0.03126830002292991,0.2179454918950796,-0.47014624951407313,-0.12238607322797179,0.8707895437255502,-0.7493439335376024,-0.45175980776548386,-0.4902800787240267,0.4687613286077976,-0.30124979093670845,0.21096225827932358,-0.5726173971779644,-0.9414990902878344,0.6656023892574012,0.8971991669386625,-0.7906825616955757,0.17746566236019135,-0.782799812965095,-0.7015749095007777,0.37325561232864857,-0.4934696638956666,0.31216412549838424,0.2285891640931368,-0.6468821614980698,-0.21208726288750768,-0.8820213032886386,0.4078251672908664,0.6134503646753728,-0.9880921458825469,0.6083131986670196,-0.5634562601335347,0.5349490102380514,0.7170170261524618,0.01357896625995636,-0.7048070752061903,-0.3787975534796715,0.5784991816617548,0.9636328159831464,-0.651625307276845,-0.2573096598498523,-0.15014640521258116,-0.8046696465462446,0.33147537149488926,-0.8792944825254381,0.37574108270928264,0.5770247764885426,0.27697181003168225,-0.07025770656764507,-0.31291492469608784,0.8060814291238785,0.9211718561127782,-0.17650291603058577,-0.03257606225088239,-0.15638234233483672,-0.5977189657278359,-0.3941225837916136,-0.8234681417234242,-0.9883387871086597,-0.4576967363245785,-0.015494689345359802,-0.3126539778895676,-0.510251582134515,-0.5393246496096253,-0.7869383306242526,0.580472816247493,-0.6366391177289188,-0.4881398845463991,-0.8594846264459193,0.530149819329381,0.909952896181494,-0.42033656733110547,0.5803942675702274,-0.03070799307897687,-0.941318632569164,-0.3843738827854395,0.9423352261073887,0.8732395535334945,-0.12423271872103214,0.5879006679169834,0.19875630363821983,-0.6042311303317547,0.24740499770268798,-0.5973068648017943,-0.7435722374357283,0.8308630334213376,-0.4850511089898646,-0.3579269303008914,-0.33794898027554154,-0.031882659532129765,-0.4587498982436955,-0.124710937961936,-0.6348860622383654,0.9332323493435979,0.35657040355727077,0.8543769479729235,-0.6451390157453716,-0.6212607198394835,0.5827372088097036,0.15182218281552196,0.031238533090800047,0.5869338037446141,0.7574899299070239,0.309439558070153,-0.3913603783585131,0.8162120222114027,-0.8291741693392396,0.9710692814551294,0.9722272465005517,0.8629226619377732,0.43090184265747666,-0.5594621081836522,-0.688758100848645,-0.1313115293160081,-0.903643480502069,0.7057432816363871,0.3774042408913374,0.648202137555927,-0.04554939176887274,-0.45715465350076556,-0.5486796861514449,0.6741118072532117,0.7396957371383905,0.29500304302200675,-0.9221471091732383,-0.03598979441449046,-0.1252410737797618,0.684611919336021,-0.3030607863329351,-0.899268071167171,-0.2119855904020369,-0.7680180673487484,0.36684752628207207,-0.05353442998602986,-0.02105109067633748,0.8692788081243634,0.2908636531792581,0.9156448426656425,-0.29762490186840296,-0.4599572829902172,0.6918978332541883,-0.20021738531067967,-0.6441467506811023,-0.826054404489696,-0.047000284306705,0.961915030144155,0.03579032048583031,0.8215516554191709,-0.44243677938356996,-0.29145365627482533,0.2966704606078565,-0.1384407770819962,-0.39873571367934346,-0.7542772274464369,0.5200413526035845,0.6895996420644224,-0.666136761661619,-0.9764292575418949,0.9103555078618228,-0.03473365865647793,-0.8969749445095658,-0.9233577037230134,-0.13904781267046928,0.755786478985101,-0.8230335721746087,0.8304710020311177,0.7788549629040062,0.6329813911579549,0.717225193977356,0.9280365542508662,0.9887406933121383,-0.4526186166331172,-0.8898639371618629,-0.9981799595989287,-0.8424426079727709,0.5629449253901839,-0.36063735792413354,0.5755395800806582,-0.13432641932740808,-0.7646415894851089,-0.13940752716735005,-0.06929472088813782,0.6671182569116354,0.9307977105490863,-0.1761715211905539,-0.9805771866813302,-0.4890571041032672,-0.3257594290189445,-0.06396101135760546,0.3651843494735658,-0.897238748613745,0.8856196189299226,0.7596788490191102,-0.8457355368882418,0.41306841606274247,0.5496913529932499,-0.9887770991772413,0.429425748065114,-0.48630049359053373,0.6222921013832092,-0.8124988134950399,0.2735012429766357,0.6973838219419122,0.4322922080755234,-0.4353341553360224,-0.16137394588440657,-0.5078970994800329,0.09936444321647286,-0.9278237265534699,0.763563278131187,-0.5594109259545803,0.5019172239117324,0.4983682306483388,-0.5612657777965069,-0.4817951740697026,-0.028019691817462444,-0.8226830908097327,-0.8090943424031138,0.4382027154788375,0.5187787003815174,-0.6106670266017318,0.30190581688657403,0.28120782831683755,0.500112175475806,-0.5701134889386594,-0.11542640626430511,-0.017136667389422655,-0.18751193583011627,-0.473049852065742,0.09724623057991266,-0.5944842575117946,-0.5393384704366326,-0.9496918949298561,-0.061047451104968786,-0.46185411838814616,0.7304021408781409,0.6136030042544007,0.26415717974305153,-0.24572278559207916,0.07917188946157694,-0.08282423485070467,0.5639022556133568,-0.8220503116026521,-0.7637270642444491,0.5559115456417203,0.36285338643938303,0.41224308824166656,-0.27990974113345146,-0.27715769270434976,0.3717158157378435,-0.7513350835070014,-0.1350640757009387,-0.045729251112788916,-0.2519588088616729,0.4963898523710668,-0.5174204846844077,-0.8430192079395056,-0.7045693933032453,0.02558239083737135,0.6791561935096979,0.061882208567112684,0.21374086942523718,0.6067677298560739,0.8361373236402869,0.48861795058473945,0.699574701488018,-0.9692530361935496,0.10934023512527347,-0.18743805680423975,-0.17792509077116847,0.28216526843607426,0.5798161155544221,0.1555027118884027,-0.017127057071775198,-0.029504958540201187,-0.37173558631911874,0.217475778888911,-0.43831878853961825,-0.11829928820952773,-0.628954853862524,-0.4210367249324918,-0.811186985578388,-0.6717064459808171,-0.4033226454630494,0.209912886377424,0.6980398702435195,-0.6849248218350112,-0.1835707500576973,-0.8318256670609117,-0.7225875249132514,0.9385302430018783,-0.7424962860532105,0.9250623118132353,-0.7757939924485981,-0.9262869362719357,-0.8400593702681363,-0.7124740141443908,-0.44850983284413815,-0.016674406826496124,0.9696288025006652,-0.6460693986155093,0.6089150682091713,-0.7265401198528707,0.9146741474978626,0.5314302868209779,-0.4184892470948398,0.874096202198416,-0.17511353781446815,0.034672267735004425,0.5206259032711387,0.9171726014465094,-0.39132574293762445,0.4592768927104771,0.8691885145381093,0.9676854913122952,-0.295624032150954,-0.950750321149826,-0.6335357073694468,-0.13817503303289413,-0.09284077445045114,-0.6659039068035781,0.9194901278242469,0.6006532143801451,-0.6774605922400951,0.20036147674545646,0.08966561034321785,-0.09452510857954621,-0.4228661200031638,-0.2763003366999328,-0.4910393552854657,0.4934538980014622,0.8326575788669288,-0.6964230937883258,-0.39926384994760156,-0.3232225948013365,0.04472328256815672,-0.8848448619246483,-0.2934449636377394,0.28074229042977095,-0.3149227285757661,-0.919042345136404,0.5213462547399104,0.5805080933496356,-0.18184579582884908,0.6347496975213289,-0.42964127846062183,-0.5462128007784486,-0.1720493878237903,-0.32008401956409216,0.9135183622129261,0.19096003891900182,0.6194693157449365,0.5491796084679663,0.40532538993284106,-0.7327196015976369,0.6221396652981639,-0.5325680845417082,-0.743827810510993,0.8616498885676265,-0.5936718857847154,-0.6777775892987847,-0.25039336178451777,0.604081426281482,0.706865890417248,0.9532433268614113,0.6182236997410655,0.7012987211346626,0.22908062487840652,0.294455005787313,0.019303958863019943,-0.44625261472538114,-0.6980180623941123,-0.12449592258781195,-0.5882870587520301,-0.447289970703423,0.26151607977226377,-0.9514570375904441,0.8289178544655442,-0.6019170428626239,0.5920482194051147,0.5636865459382534,-0.11570404283702374,0.25956333335489035,0.6598524977453053,-0.6002293732017279,-0.11608338402584195,0.5595083977095783,0.38913001166656613,0.23951735580340028,-0.7453324138186872,0.8008014671504498,0.5169229181483388,0.30434351367875934,0.6556083494797349,-0.017583769746124744,0.6957670487463474,-0.4660993185825646,0.3890574872493744,0.2183271562680602,0.6370984218083322,-0.2593257795087993,0.6835218877531588,-0.7303925016894937,-0.9619634542614222,-0.36971233366057277,0.6647156779654324,0.6275392323732376,-0.9748965320177376,0.4938933029770851,0.023568037431687117,0.8275783988647163,0.8596160020679235,-0.3722147555090487,0.382348018232733,-0.9213435715064406,-0.8776616863906384,0.0838498305529356,0.3309762398712337,0.3849201239645481,0.9536372739821672,0.595486843958497,-0.9689784445799887,0.8863869584165514,0.6625272464007139,0.9919119039550424,0.49920781375840306,-0.9792230040766299,0.7942627593874931,0.022224829997867346,-0.49503599759191275,-0.6197028402239084,-0.8211869704537094,0.9563982235267758,-0.677977264393121,-0.4454197701998055,0.26910264417529106,0.4315203921869397,0.4713989091105759,-0.8317015017382801,-0.038352946285158396,0.8644652720540762,0.07075931644067168,-0.7729288628324866,-0.9416873631998897,-0.057474385015666485,-0.7668700222857296,-0.5037270784378052,-0.3224895130842924,-0.5514252684079111,0.9903305019252002,-0.11317374743521214,0.2761402823962271,0.8738010716624558,0.8142342087812722,0.6683316719718277,0.09083430143073201,-0.11586360121145844,0.3825449622236192,0.3002755781635642,0.09004047885537148,-0.5322976196184754,-0.6849655639380217,0.2784099676646292,0.1655957060866058,0.23203530022874475,0.22708821902051568,-0.9453564183786511,-0.6274611945264041,-0.47135608922690153,0.4394775964319706,0.9066124022938311,-0.7770614516921341,-0.5366529729217291,-0.05172625184059143,-0.39237130526453257,-0.1824330547824502,-0.9765370776876807,-0.25520200515165925,0.9499131320044398,0.878755122423172,0.27706116810441017,-0.7852900326251984,0.5240933699533343,-0.9234890933148563,-0.21023604646325111,-0.12903311057016253,-0.7632816978730261,-0.3156647337600589,0.7301163780502975,-0.5560247027315199,0.5934341219253838,0.03967266529798508,0.9251757361926138,0.34112829668447375,-0.6972126215696335,-0.2501047640107572,0.3674059482291341,0.8705795523710549,-0.3204943221062422,0.20572903426364064,-0.5805192971602082,-0.9681887989863753,-0.9131082501262426,0.6429916750639677,0.43760531349107623,-0.2841480108909309,-0.2624170654453337,0.6895601116120815,-0.4482335336506367,-0.7318291608244181,0.9321087310090661,-0.14605872053653002,0.4368443158455193,0.5714044417254627,-0.7115272986702621,0.5290708355605602,0.14360277354717255,-0.8657925175502896,-0.44915754720568657,0.10056716343387961,-0.7424818663857877,0.5072230701334774,-0.15237859031185508,-0.0004340587183833122,0.7725504599511623,-0.3453226340934634,-0.40829129284247756,0.7943530860356987,0.49184408504515886,-0.0013626846484839916,0.4528434663079679,-0.6571489539928734,-0.809847395401448,0.6676719486713409,-0.9666147171519697,-0.1489493832923472,-0.3479287335649133,0.8344094376079738,-0.286921878810972,-0.746206016279757,0.37361837178468704,0.6689657759852707,0.9637622083537281,0.6781767760403454,0.05743723129853606,-0.6889365869574249,-0.9230774277821183,-0.8492473582737148,0.7453946555033326,0.8330216514877975,0.256600696593523,-0.3955197655595839,0.9633543430827558,-0.9043165929615498,0.23406360065564513,0.1657494972459972,0.9136498882435262,-0.17724884068593383,-0.2842493592761457,-0.5805824021808803,-0.12482979195192456,-0.7529167383909225,-0.5351718831807375,-0.9600735893473029,-0.3084193170070648,0.8861609953455627,-0.4147283136844635,0.2619719011709094,0.020670039113610983,-0.6688308073207736,0.4829271282069385,0.7863594717346132,0.865185774397105,0.7386119710281491,-0.7309351777657866,0.07119841454550624,-0.34117876971140504,0.7272912068292499,0.2359739439561963,-0.719597949180752,-0.039635793305933475,-0.10265740752220154,0.7467883615754545,0.8930836524814367,-0.30206960113719106,-0.39870045660063624,-0.5401561800390482,-0.08325978321954608,0.4191536162979901,0.6816249145194888,0.9107672711834311,-0.11939938087016344,0.1922827591188252,0.5508295744657516,-0.8783942554146051,0.8417830262333155,0.988484004046768,-0.01661833096295595,-0.32497915951535106,-0.9189785425551236,-0.8739280984736979,-0.17048871610313654,0.2612104211002588,0.9178123204037547,0.4157101772725582,-0.2454209979623556,-0.10818473529070616,0.06918902229517698,-0.5880883894860744,0.3185027842409909,0.7444093250669539,-0.4041931782849133,-0.15934082958847284,0.35555896582081914,0.5091882194392383,-0.8264786046929657,0.48715967452153563,0.9814149350859225,0.4532735887914896,-0.5323456223122776,-0.703649387229234,-0.4500570395030081,-0.6282221237197518,0.4740132954902947,-0.48538746032863855,-0.5736991595476866,0.4923435435630381,-0.8974533430300653,0.6388063286431134,-0.032720581628382206,-0.505863472353667,0.13866065442562103,0.9485436752438545,-0.37073213746771216,0.15631544683128595,-0.7227060389705002,0.1380690047517419,0.8778660683892667,0.23936217138543725,-0.39961996441707015,0.10273634130135179,-0.44559378596022725,0.9185451841913164,0.04993189265951514,-0.25648209219798446,0.9430548516102135,0.6730868532322347,-0.8880815575830638,0.028307565953582525,-0.4537167549133301,-0.7233390491455793,0.3581186323426664,-0.5206228322349489,-0.14061614964157343,-0.3950115414336324,-0.7221805271692574,0.5935644116252661,0.337250514421612,0.4924728940241039,-0.9244709773920476,0.5985817108303308,-0.7817989424802363,0.5554085946641862,0.38531260332092643,-0.807439508382231,-0.6321284724399447,-0.8144912431016564,0.48670404916629195,0.8558579687960446,-0.3878753646276891,-0.37951407115906477,0.2782530477270484,-0.5584060396067798,0.9261792842298746,-0.5021992912515998,0.4019934986717999,-0.9905678820796311,0.3100659279152751,0.3656983166001737,0.8615818470716476,0.996374923735857,-0.9709947491064668,-0.38941635843366385,-0.11461685178801417,-0.16879025707021356,-0.41864671325311065,-0.9270515935495496,0.07911825459450483,0.520269381813705,0.5984486299566925,0.9743262669071555,0.9689956684596837,-0.048400023486465216,0.8542312979698181,-0.956314233597368,0.6011840156279504,0.89954888029024,-0.4895082451403141,-0.26317714573815465,0.3580186730250716,-0.8568601901642978,0.606670958455652,-0.38489070488139987,0.36301284981891513,-0.27321198722347617,-0.6537580541335046,-0.9981801062822342,-0.7162469001486897,-0.3004925404675305,-0.32601866219192743,0.17761537665501237,-0.726443946827203,-0.016729448456317186,-0.04429017519578338,0.13894390780478716,0.30291325226426125,0.19673573970794678,-0.6930659548379481,0.1803882704116404,-0.5157600534148514,0.3257891330868006,0.180161040276289,0.49646089784801006,0.9312140550464392,0.4679558710195124,-0.12517803814262152,0.9250817177817225,0.1681809388101101,0.27275506407022476,0.4587859180755913,-0.6952941939234734,0.7004362558946013,0.9430912495590746,0.4231419707648456,0.7126358696259558,0.15600484190508723,0.07141330419108272,0.6625073128379881,0.4056424628943205,0.4588040942326188,0.8332271911203861,0.5201549702323973,0.21834177803248167,0.09577349713072181,-0.46759684197604656,0.029804357327520847,-0.9519078521989286,-0.33519957587122917,-0.04473233735188842,-0.5860500698909163,0.12534137023612857,0.3318121093325317,0.038679434452205896,0.3478106437250972,0.20702020032331347,-0.6898684091866016,-0.22249160334467888,-0.6497328020632267,-0.16149380011484027,-0.9267107215709984,0.5098846992477775,-0.06699426006525755,-0.4389832504093647,0.8864246271550655,0.46698419796302915,-0.6243048678152263,0.5269161774776876,0.6384853892959654,-0.37657088693231344,0.46985103841871023,-0.6878340244293213,-0.919290604069829,-0.1782586663030088,0.6298568709753454,0.5195733676664531,-0.4424957172013819,-0.5541222752071917,0.7751210974529386,-0.0007351376116275787,-0.09653448360040784,0.2872380572371185,-0.1797614200040698,0.8295035096816719,0.26698202593252063,-0.3395070587284863,-0.90963135054335,-0.4020300628617406,-0.9872751687653363,-0.8146515213884413,0.9571659532375634,0.9970707502216101,-0.7139822728931904,-0.5544379418715835,0.05401072697713971,-0.6548439357429743,0.7269586813636124,-0.6949383630417287,-0.45955645851790905,-0.42642802838236094,-0.575772209558636,-0.511537813115865,0.34718571696430445,0.10413669422268867,0.2861180938780308,0.5585213284939528,0.5933178276754916,-0.7181605524383485,-0.27028619684278965,-0.08200697880238295,-0.27916718693450093,0.909583973698318,0.42241258127614856,0.35567250987514853,0.4835102749057114,0.5113877197727561,-0.40025856578722596,0.3002892751246691,-0.8408450963906944,-0.9645185843110085,-0.8475902802310884,0.6102847023867071,0.3718583988957107,-0.3101628408767283,0.534001023042947,-0.7104411809705198,0.5792450504377484,-0.8581711607985198,0.778037569951266,0.7294433228671551,0.06594591727480292,0.47750186640769243,-0.7907488024793565,0.13732644449919462,0.5527858231216669,-0.8475792352110147,0.1211281125433743,0.002341773360967636,0.9823443675413728,0.5777810630388558,-0.4666092027910054,-0.8435091362334788,-0.8898705393075943,-0.6825222852639854,0.6322896284982562,0.2505038161762059,-0.09320671390742064,-0.7509925691410899,0.8734031193889678,-0.035556585527956486,0.6375668668188155,0.373516789637506,-0.21784658171236515,-0.8392285029403865,0.5715729049406946,0.1612870623357594,-0.4918949012644589,-0.3014114904217422,-0.6604670048691332,0.5070759220980108,0.9575242907740176,0.48636744637042284,0.12091538682579994,-0.6540990150533617,0.127133309841156,-0.5353450556285679,-0.8269195915199816,0.7704819263890386,-0.7368242274969816,-0.2530072694644332,0.4693282046355307,-0.40465329261496663,-0.20441662799566984,0.7752778055146337,0.6259180130437016,0.47401453042402864,-0.6506424625404179,-0.33080901158973575,-0.35813505854457617,0.866960103623569,0.18537558754906058,0.11853508464992046,0.8427985198795795,0.33587830793112516,-0.8717619650997221,0.43329945718869567,0.4400766585022211,-0.07101292302832007,0.34334048721939325,0.7860175282694399,0.5222504371777177,0.5538208317011595,-0.7912223436869681,0.7374981534667313,-0.451984909363091,-0.41274052718654275,-0.24024296551942825,0.31511843809857965,0.4188597071915865,-0.8758617374114692,-0.9666048241779208,-0.6997854323126376,0.34528981847688556,-0.014659021515399218,0.40939808636903763,0.9214604506269097,0.2800631704740226,0.7455691494978964,0.4104983163997531,-0.6062653386034071,0.47789118345826864,-0.016074666753411293,-0.2565739322453737,-0.5597618627361953,0.6885968074202538,-0.8132955241017044,0.7935729171149433,-0.2877438757568598,-0.12918904470279813,0.7631539693102241,0.1240796335041523,0.404121748637408,0.2316047321073711,-0.9618245693854988,0.7878082850947976,-0.2995532206259668,-0.107398496940732,0.895547310821712,-0.7130847964435816,-0.05100769316777587,0.302054344676435,0.06176119390875101,-0.7891260799951851,0.8974340744316578,-0.9751691985875368,-0.9045451893471181,0.6061284490860999,-0.25242829881608486,-0.03766638692468405,0.9498721091076732,-0.10188265237957239,-0.9783899951726198,0.6617463789880276,-0.6251086024567485,0.2564691794104874,0.05761457793414593,-0.16503677610307932,-0.40095682069659233,0.8778291433118284,-0.5021489094942808,-0.428548501804471,-0.8466086592525244,-0.27826076513156295,0.8851587637327611,0.5644606780260801,-0.4902728353627026,0.7512581516057253,0.9258906631730497,-0.8763105478137732,-0.6852927557192743,-0.016154459211975336,0.3940728488378227,-0.5151172038167715,-0.12444225652143359,0.23880933783948421,0.9698218470439315,-0.9757314189337194,0.14217546628788114,0.9460582127794623,0.8465415118262172,-0.9202318079769611,0.5102154929190874,0.3703217664733529,-0.38142616814002395,-0.7098267190158367,0.41386054875329137,0.23844844801351428,-0.8963602343574166,0.3203252851963043,0.7149411337450147,0.08088788110762835,-0.8670615232549608,-0.7412003404460847,-0.31821548053994775,0.6171776033006608,0.13780257059261203,-0.24510017316788435,-0.38928477047011256,0.3384645003825426,-0.45071297232061625,0.46131672617048025,-0.9604208972305059,-0.8948365179821849,-0.48773935763165355,-0.9278019331395626,0.8062773030251265,-0.2630591746419668,-0.755307586863637,0.6472626128233969,-0.21132061537355185,-0.5649596098810434,-0.9708123439922929,-0.1820984808728099,0.603473573923111,0.13052432984113693,-0.23292260710150003,-0.4963398724794388,-0.30218246346339583,-0.9430396566167474,0.5866390974260867,0.7679291078820825,0.48169858986511827,-0.9832074311561882,0.08123687095940113,0.7602507416158915,-0.3583965850993991,-0.12278563668951392,-0.5523323197849095,0.0910033299587667,-0.3816659627482295,0.47448482969775796,0.7983743785880506,-0.6229582666419446,0.7340721758082509,0.5564337903633714,0.5414031902328134,-0.7388155511580408,-0.008016367442905903,0.2892886595800519,0.997018781490624,-0.8517781584523618,0.6373857669532299,-0.7388327945955098,-0.2568009807728231,0.6584867429919541,-0.7036727042868733,-0.2636587885208428,0.04529997380450368,-0.6133014988154173,-0.6717109093442559,-0.9443399668671191,-0.2847982975654304,0.98812769446522,-0.3597587747499347,0.028298617340624332,-0.8802379458211362,0.024294260889291763,-0.7909589600749314,-0.4831356811337173,0.3528575301170349,0.8687346880324185,-0.6283698766492307,-0.43796404730528593,-0.921295833773911,-0.10519641498103738,-0.7682005534879863,0.06980074290186167,0.7724931733682752,0.20297836093232036,0.4239045428112149,-0.6035354994237423,0.04063542140647769,-0.38647723803296685,-0.33795282198116183,0.1098397308960557,-0.7308452106080949,0.3404466132633388,-0.4587631309404969,0.5251918099820614,-0.3323974101804197,-0.0025002448819577694,-0.16865633893758059,0.22770368168130517,0.03453911188989878,-0.43617223110049963,-0.39102771366015077,0.8387093702331185,-0.6405908721499145,-0.3923191619105637,0.5890421126969159,-0.8992656948976219,-0.5496720569208264,0.5262084952555597,-0.6425120700150728,0.5404417049139738,0.37299083173274994,0.41855835262686014,0.19606273854151368,0.7006758521310985,0.8219114108942449,-0.6227724719792604,-0.9250997384078801,0.17871912010014057,0.5163510548882186,0.24032308999449015,0.7533491533249617,0.11083431402221322,-0.9937008749693632,-0.5901852124370635,0.46153936348855495,0.10828995797783136,-0.6432637008838356,0.4759136587381363,-0.04477647226303816,-0.9129784470424056,-0.30318185221403837,-0.22210667468607426,-0.7739767832681537,-0.6761933756060898,-0.4309854940511286,-0.6375072565861046,-0.3130243346095085,-0.019541007466614246,0.6464519719593227,0.8327239868231118,-0.8213348165154457,0.8012532386928797,0.17399851931259036,0.4812183976173401,0.6280276835896075,-0.00045999884605407715,0.968571400269866,0.9946970813907683,-0.7003226424567401,0.6374001367948949,-0.20133958803489804,0.2776490361429751,-0.9258096967823803,-0.9825312527827919,0.45017971843481064,-0.5763440323062241,0.5843790620565414,-0.7372621824033558,0.34356409683823586,0.26459714118391275,-0.03745103674009442,-0.5887978137470782,-0.22302747471258044,-0.13396585453301668,-0.3802843359299004,0.36614298867061734,-0.6860122140496969,0.6087661935016513,0.6767532066442072,0.8203392741270363,-0.42499167658388615,-0.04408232867717743,-0.5582042634487152,0.8904906869865954,0.13935540011152625,0.6521576172672212,0.8636491023935378,-0.35859560314565897,-0.8360594054684043,-0.6014409177005291,0.7496753083541989,0.30712654208764434,0.7670943904668093,0.22737967455759645,0.6621663332916796,0.6177840526215732,0.5418411842547357,-0.3011795566417277,0.05439995275810361,-0.9495938252657652,-0.5692580188624561,-0.43642406770959496,0.0782605791464448,0.057416035793721676,0.14954671589657664,-0.7112029194831848,-0.04689146438613534,0.09059046767652035,0.33330441964790225,-0.7728768172673881,0.807503649033606,0.903372201602906,0.9724787324666977,-0.13500535115599632,-0.4915182823315263,-0.8433139859698713,-0.903414461761713,0.32884030556306243,0.9670528545975685,-0.47761791525408626,-0.23806821461766958,-0.9398923562839627,-0.32732922164723277,-0.3018943010829389,-0.6024744370952249,0.9761676588095725,0.8600127943791449,-0.6638595848344266,0.8028468964621425,-0.9200563579797745,-0.23410499095916748,-0.7535594161599874,-0.29316770657896996,-0.5763400564901531,0.7181628979742527,-0.7567775277420878,-0.20687442272901535,0.8067251346074045,-0.7862718650139868,0.15764840319752693,-0.28512973710894585,-0.5144501309841871,0.9649390848353505,-0.38701389776542783,-0.07166431285440922,0.056913300417363644,-0.22212729277089238,0.152643374633044,0.20831000013276935,0.6298325341194868,-0.6405725036747754,-0.9511784501373768,-0.0012362790293991566,0.02848660061135888,-0.28198733972385526,-0.2628618418239057,0.7844915483146906,-0.7846437958069146,-0.04359959764406085,0.3177549783140421,-0.9871666440740228,0.8965054303407669,-0.3685896471142769,0.682217397261411,0.338273738976568,0.7000986118800938,0.8120101634413004,-0.07852710131555796,-0.08939775358885527,-0.6409442201256752,-0.907630164641887,-0.703553025610745,-0.656503395177424,0.17557577090337873,0.08953752228990197,0.6974707301706076,0.4520361190661788,-0.6493685496971011,-0.42750893300399184,-0.6352340523153543,0.5879320101812482,0.02788550266996026,0.5923584983684123,0.9550144989043474,0.004269347991794348,0.1462923469953239,0.9860270484350622,-0.00487078633159399,-0.43047123262658715,0.8071488733403385,0.6826841570436954,-0.9095181627199054,0.3206487447023392,0.8773440457880497,0.5187639934010804,-0.08974726917222142,-0.5087101021781564,0.9351242333650589,-0.4562234836630523,0.01302401628345251,-0.9197542360052466,0.288083007093519,-0.8387195370160043,0.5797021291218698,-0.61075857328251,0.44297039695084095,-0.5541520528495312,-0.3311944347806275,0.4202196612022817,-0.7349539743736386,0.35506298625841737,-0.45653735334053636,0.6977468407712877,0.47237460501492023,0.25593178533017635,0.5256346263922751,-0.515824094414711,0.4247717563994229,0.35692756390199065,0.280666196718812,-0.1425188691355288,0.9765996201895177,-0.10693706898018718,-0.8277033758349717,-0.6189912934787571,0.8442228129133582,-0.8710533636622131,0.16272104205563664,-0.2584537360817194,-0.7696112422272563,0.4002575962804258,-0.5201516640372574,0.9812546195462346,0.000995498150587082,0.6496540689840913,-0.8963320343755186,-0.6113971453160048,0.04778381297364831,-0.1055057724006474,0.7673115339130163,0.11909016687422991,-0.7120906342752278,0.4611509940586984,0.041195235680788755,-0.1203852710314095,0.6842315322719514,0.8793810000643134,-0.9625031934119761,0.04690577695146203,0.0742877977900207,0.9283707775175571,0.27097148820757866,-0.027509371284395456,-0.37546036019921303,0.4589842245914042,0.2554557747207582,-0.9576806966215372,0.9054017891176045,0.8757535698823631,-0.8323104758746922,0.9725722311995924,-0.5176854920573533,-0.8283181851729751,-0.9910189076326787,0.23565973388031125,0.5412232726812363,0.4741688431240618,0.09284040145576,-0.5993868997320533,-0.7525327536277473,0.7486341414041817,-0.5382983065210283,0.3472223482094705,-0.6123974695801735,-0.547894046176225,-0.08566102990880609,-0.7083133617416024,0.21251229755580425,0.3643881920725107,-0.6958917952142656,0.6091219075024128,-0.8282636473886669,-0.7298659104853868,0.028611366171389818,-0.37119105784222484,-0.7414862387813628,-0.16212359443306923,0.5895681050606072,0.492607438005507,0.5240725660696626,-0.4665807052515447,0.3348949099890888,-0.5826285206712782,-0.863272522110492,0.6354477852582932,-0.3933594739064574,-0.07766802096739411,-0.3549125627614558,0.6457703015767038,0.561550204642117,-0.7405039956793189,0.4647163231857121,-0.6894813985563815,-0.7181986635550857,0.02438767021521926,0.1254552868194878,0.518576780334115,-0.003638272173702717,-0.6311154644936323,-0.8760751485824585,-0.3854023418389261,0.10316399717703462,0.2667615651153028,-0.45375623647123575,0.7810655240900815,-0.466243386734277,0.0284756850451231,-0.7787560811266303,-0.045880780555307865,0.10038083977997303,0.9710053135640919,-0.1102122780866921,-0.37308788066729903,0.6487835869193077,-0.0639067436568439,0.4821647093631327,-0.2092511304654181,-0.7378064729273319,-0.2870947252959013,-0.012472059112042189,0.8541425592266023,0.7768360157497227,-0.5262376456521451,0.07634451799094677,-0.09579649148508906,-0.8016700660809875,-0.44816149305552244,0.305540160741657,0.40795826353132725,0.6729366579093039,-0.9185923486948013,0.28013712959364057,0.3585025672800839,-0.2909326069056988,0.07270747935399413,0.3899158351123333,-0.40441248333081603,0.05587760591879487,-0.06401635520160198,-0.20769862039014697,-0.5274608843028545,0.11603227909654379,0.43751303758472204,-0.6708027594722807,-0.5978788663633168,0.9910065066069365,-0.2924337778240442,0.9825675408355892,-0.9845436150208116,-0.9393291706219316,-0.09942351328209043,0.6352705508470535,0.4010583218187094,-0.22930447105318308,0.4288857476785779,0.05912096472457051,0.7957927105017006,-0.4471017294563353,-0.7143359547480941,-0.7975342655554414,0.2318173497915268,0.0536284395493567,0.7566468049772084,0.9047554451972246,-0.6341973287053406,-0.9496687049977481,-0.1998789580538869,-0.06364214606583118,0.07723609823733568,0.5201361831277609,0.8236208660528064,-0.5275498363189399,0.8574151117354631,0.9938961751759052,0.9544290280900896,0.3964767078869045,-0.3354486208409071,0.7703277696855366,0.5815661833621562,-0.013461642432957888,-0.39478954719379544,-0.993663621135056,-0.6230486617423594,-0.24165288405492902,-0.08603831939399242,0.4479478267021477,-0.1858119866810739,0.7577263936400414,-0.3359327306970954,-0.932184876408428,0.7608437701128423,0.39383664913475513,0.3500366318039596,-0.5325936861336231,0.10719758365303278,-0.7661779746413231,-0.9474215605296195,0.2301632398739457,-0.9340422046370804,-0.1690360796637833,0.7214710670523345,-0.39265300799161196,0.049974541179835796,0.8497485318221152,0.5410742182284594,-0.6912834830582142,0.6706483736634254,-0.5203999322839081,-0.5587112251669168,-0.45689315581694245,-0.8169604605063796,0.4939403892494738,0.5194106069393456,0.9871598719619215,-0.5545822535641491,-0.01403382420539856,0.434726953972131,-0.498725026845932,0.4627388040535152,0.43025273364037275,-0.6390946838073432,-0.6479427558369935,0.7500558611936867,0.9666741886176169,-0.6892274147830904,-0.49675084464251995,0.625388284213841,0.5054908404126763,0.4389243386685848,-0.46240683924406767,-0.92466930905357,0.6562757194042206,0.5489069917239249,-0.7266086032614112,-0.33745935279875994,-0.8654478811658919,-0.8537631523795426,-0.054557488299906254,0.032882002647966146,-0.484156068880111,-0.12018736684694886,0.6452781381085515,-0.976588077377528,0.15724927047267556,-0.6127690323628485,-0.5573662663809955,-0.5511353090405464,-0.5756537555716932,-0.29313082387670875,-0.2039178954437375,-0.4625239879824221,-0.8741388884373009,-0.8112598950974643,-0.7409019684419036,0.1535280328243971,-0.7413521283306181,0.02301323227584362,-0.7267341744154692,0.9431507242843509,-0.21890301443636417,-0.26621901569887996,-0.3174587390385568,-0.48813012707978487,-0.011788710951805115,0.6996044921688735,-0.5891735879704356,-0.5300679719075561,0.9550526328384876,0.8256782302632928,-0.06063638720661402,0.8880111258476973,-0.2969226399436593,-0.9769030828028917,-0.1213049809448421,-0.02164462860673666,0.40806528041139245,0.6180473435670137,-0.24373836908489466,-0.35109271202236414,0.12573698814958334,-0.7246802044101059,0.4231474711559713,-0.2149601853452623,-0.9213461168110371,0.1953997085802257,0.5735401138663292,-0.6328863324597478,0.4883367568254471,-0.6440933169797063,0.26629701582714915,-0.8859594445675611,-0.6091460515744984,0.18268788093701005,0.3271095370873809,-0.7174007105641067,0.8823670130223036,-0.6119222017005086,0.23690590867772698,-0.10459021246060729,-0.9906625403091311,-0.6323621580377221,0.5744612771086395,-0.2178062740713358,-0.10362886218354106,-0.3464526319876313,0.8735044901259243,0.4120178110897541,-0.7240990777499974,0.0010496811009943485,-0.20041194465011358,0.30330645153298974,-0.20173574285581708,-0.8041304470971227,0.7345522348769009,-0.9793930873274803,0.9971445705741644,0.4614629936404526,-0.29601031029596925,0.16878427984192967,0.922373054549098,0.06721788691356778,-0.32274550246074796,-0.6770474966615438,0.9159956052899361,-0.2936134207993746,0.4049854469485581,0.14820482954382896,-0.12083480833098292,-0.6839415295980871,0.2854013033211231,-0.9725847751833498,-0.005179387517273426,-0.5052853464148939,-0.6973111815750599,0.4348381361924112,0.0905962223187089,0.9832344283349812,-0.14180788164958358,0.2007203777320683,-0.22164236521348357,0.7688797395676374,0.781477318610996,-0.854455423541367,-0.9975590626709163,0.3977244487032294,0.7583428625948727,0.15039081126451492,0.5133430259302258,0.23262576153501868,-0.4206421095877886,-0.30901891831308603,0.8029535580426455,-0.16697923559695482,0.6117403986863792,-0.18464934825897217,-0.7950142696499825,0.2695470592007041,-0.18636561557650566,-0.8406677893362939,0.034072236623615026,0.2881287490017712,0.21034887433052063,-0.4158960632048547,-0.39327821834012866,0.015772600658237934,0.48831405444070697,0.8431362295523286,-0.14810790726915002,0.4597052470780909,0.43834420992061496,0.9845298230648041,-0.937250676099211,0.3814627188257873,0.7609266811050475,-0.022863993421196938,-0.2925620866008103,-0.6126709878444672,-0.04343361780047417,0.8823949405923486,-0.8818501923233271,0.1457062466070056,0.611676677595824,-0.7633703658357263,0.5596410990692675,0.16500094858929515,0.03757378039881587,0.027280522044748068,-0.526799104642123,-0.19499343819916248,-0.9457195112481713,-0.9306016634218395,0.9520893744193017,-0.17121615493670106,0.6439673798158765,0.947514284402132,-0.6316413125023246,0.12538282806053758,0.04484950006008148,0.08001351589336991,-0.9075155444443226,-0.26284555066376925,-0.06081135431304574,0.8646888299845159,-0.025598234497010708,-0.09995168214663863,-0.4434740240685642,0.8134995824657381,-0.9034584825858474,0.3008300266228616,0.9424340459518135,-0.34698078595101833,-0.9697371125221252,-0.5432652081362903,0.28061123145744205,-0.6944160195998847,-0.41155237099155784,0.23654274782165885,-0.11583169270306826,-0.25824238173663616,0.7949706041254103,0.10858266847208142,0.08950320770964026,0.43431594455614686,0.11101543623954058,0.11457333108410239,0.3539835871197283,0.1029618363827467,-0.6514933970756829,-0.759952487424016,0.1904271999374032,-0.9086516313254833,-0.6582066807895899,0.02440550457686186,0.03587210411205888,0.9092758987098932,-0.9238741528242826,-0.7569803693331778,-0.576137154828757,-0.5652905581519008,-0.895427169278264,-0.7461622711271048,-0.4792136331088841,-0.2353383586741984,0.2922071684151888,0.8473112401552498,-0.02592134103178978,-0.2288331468589604,-0.07133501674979925,-0.35603827983140945,0.8616281412541866,-0.31135013746097684,-0.24268171191215515,0.034963765647262335,-0.3135796128772199,0.9003978096880019,0.5021512708626688,0.011773895006626844,-0.8724931245669723,-0.3358666906133294,0.568873324431479,0.7386584775522351,0.7608026079833508,-0.7924978598020971,-0.09872583346441388,0.6286440640687943,0.8116411385126412,0.8413760405965149,-0.4727515825070441,0.37700967863202095,0.2016369253396988,-0.45636494597420096,-0.21213858714327216,-0.8568141325376928,-0.3672774722799659,-0.7445661188103259,-0.6184648624621332,0.7613609028048813,0.14854039810597897,-0.09614137094467878,0.8018803875893354,0.39548007817938924,-0.003136285115033388,0.5578337488695979,0.6003518742509186,0.31656654132530093,0.6178432358428836,-0.26513386564329267,-0.3786795004270971,0.294929220341146,0.1938915099017322,0.450408102478832,-0.8026622403413057,0.022512811236083508,0.12407096615061164,-0.5443072603084147,-0.9219756540842354,-0.6702537504024804,-0.7086444795131683,-0.6663990765810013,0.044179986231029034,0.6814794451929629,-0.10523899039253592,0.4482039688155055,-0.2746458421461284,0.027940211351960897,0.8805996715091169,0.3155954126268625,0.8177660382352769,-0.21002526907250285,0.9158600149676204,0.5067765605635941,-0.08028384996578097,-0.11591784516349435,-0.8584935236722231,-0.8143074619583786,-0.6226291577331722,-0.5052265878766775,0.6018104646354914,0.22653581434860826,0.7777962815016508,-0.14847235707566142,-0.5731638050638139,0.3781330497004092,0.3125677714124322,-0.6875140620395541,0.7583094788715243,-0.9603266697376966,-0.46508614672347903,0.9395843031816185,-0.6945161665789783,-0.5334572182036936,-0.12658122461289167,-0.8695387411862612,0.6315237674862146,0.25811424059793353,0.9396317470818758,0.36923001799732447,-0.4366108519025147,0.5239271530881524,0.24647453194484115,0.5863990080542862,-0.5959751778282225,-0.910317974165082,-0.19916714541614056,0.7815085183829069,-0.551246568094939,-0.5051051881164312,-0.3285593497566879,-0.9315382903441787,0.018966007977724075,-0.10099155129864812,-0.4625592674128711,-0.3136085248552263,0.4247949384152889,0.9589493456296623,0.4662260599434376,0.8636243306100368,0.831041781231761,0.4439898761920631,-0.3423922033980489,0.0008054636418819427,-0.016832836903631687,0.28390535712242126,0.46263899467885494,0.29879527585580945,0.5398580743931234,0.6674883095547557,-0.029798141214996576,0.9613889390602708,0.0799660780467093,0.8033898281864822,0.4090554197318852,0.38205861300230026,0.9493491351604462,0.7975899181328714,-0.3079430777579546,-0.5793619873002172,-0.29544328106567264,-0.0455072526820004,-0.7145107877440751,0.4906327771022916,0.5315979737788439,-0.6933298972435296,0.9583028550259769,-0.16901635564863682,-0.14723521564155817,-0.660977138672024,-0.15462200855836272,-0.7994103538803756,0.7127221343107522,-0.5584919727407396,0.24366094917058945,0.6100903428159654,-0.9040582431480289,-0.905671447981149,0.10767619544640183,-0.39323051692917943,0.7809567106887698,-0.9390811361372471,-0.17085090512409806,-0.8723939503543079,0.4115311154164374,0.448625803925097,-0.15978248044848442,-0.8008208768442273,0.8716822764836252,0.17592523293569684,0.4191150120459497,-0.909042268525809,-0.10717419628053904,-0.21196851693093777,-0.535431323107332,0.7701485706493258,0.20715369889512658,-0.8109090006910264,0.7804564167745411,-0.9740523062646389,-0.8145132334902883,0.7241470823064446,-0.7289688885211945,0.12646505562588573,0.5872189938090742,-0.09070891560986638,-0.34518745075911283,0.30644137179479003,0.05209215544164181,-0.2191765638999641,-0.4370089680887759,0.24974843254312873,-0.42301030550152063,0.7165812798775733,0.007632344029843807,-0.21074276603758335,-0.3832413633354008,0.7400116976350546,0.6001536315307021,-0.18897439073771238,0.11930809961631894,0.9883136046119034,0.2113822977989912,-0.8652005563490093,-0.7604081062600017,-0.620977446436882,-0.5768668712116778,-0.9984516017138958,0.05836843233555555,0.8484064103104174,-0.048586828634142876,-0.2351320651359856,0.3448814554139972,-0.05064524384215474,-0.9140121066011488,0.6534585519693792,-0.7293660286813974,-0.8738443884067237,-0.4340206286869943,0.056514689698815346,0.9167158184573054,-0.07313129492104053,-0.16216640220955014,0.9197319648228586,-0.520616689696908,0.3098433129489422,-0.5481252586469054,-0.32793622743338346,0.5809025363996625,-0.37544944137334824,0.8432029210962355,0.7726021972484887,-0.43797846231609583,0.6500681573525071,-0.3321853312663734,-0.8520524986088276,-0.7219413970597088,0.3528478075750172,-0.5165779269300401,0.7007130486890674,0.9222930846735835,0.11989921145141125,-0.20127264503389597,-0.03271853690966964,0.3420740533620119,0.014839143957942724,-0.3627373753115535,-0.18531910749152303,-0.3845684938132763,-0.44670385122299194,-0.6267485078424215,0.711899243760854,0.5556996893137693,-0.7379016326740384,-0.6256816945970058,-0.22799549717456102,-0.6848007864318788,0.6184764825738966,-0.46322959614917636,-0.5610987017862499,0.6317067868076265,-0.29423917550593615,0.41109494026750326,-0.9512126562185585,-0.9439500579610467,-0.16560519021004438,-0.365367088932544,0.9572760742157698,-0.7978577357716858,-0.4876528545282781,-0.4463285035453737,0.09402384469285607,0.7159457257948816,-0.7354381419718266,0.6789474501274526,-0.9319021911360323,-0.9127960144542158,0.3738191560842097,0.8659417992457747,-0.5248010288923979,0.7252223477698863,-0.5300991982221603,0.45358627662062645,0.13055374613031745,0.4910470452159643,0.9477243153378367,0.8856771448627114,-0.9647545665502548,0.3573798472061753,0.3726350720971823,0.7407096857205033,-0.09298677975311875,0.999585042707622,0.07382142543792725,0.6978418291546404,-0.7236870299093425,0.7274043597280979,-0.38968192506581545,0.9243330042809248,0.19580247439444065,0.43825636710971594,-0.431271234061569,0.2979556368663907,-0.8091180375777185,0.24285901663824916,0.5752087007276714,-0.9701316836290061,0.5216255700215697,-0.7213065489195287,0.1306706303730607,-0.7209033989347517,0.10137929068878293,0.04834231687709689,-0.6246525919996202,-0.7755411439575255,0.8975900369696319,-0.06657109875231981,0.709043269045651,0.42593371542170644,-0.020511572249233723,-0.644756923429668,0.3309251945465803,-0.0658874330110848,0.9676490044221282,-0.5462755253538489,-0.9234898188151419,-0.7893439806066453,0.641707977745682,-0.7206783904694021,-0.8877969840541482,-0.22966272151097655,0.48745894711464643,0.3294140105135739,0.348782645072788,-0.07674311613664031,0.09487332962453365,-0.5676397350616753,-0.325228005181998,0.5702632968313992,0.37819000938907266,-0.5843674214556813,0.5249344734475017,0.8507066923193634,-0.23759802570566535,0.8083247300237417,-0.7299163392744958,-0.687685374636203,0.4333766703493893,-0.12134704692289233,0.636362798511982,-0.79066963493824,0.11378516722470522,-0.5117681012488902,-0.6266737710684538,-0.17090577213093638,0.5497823534533381,-0.2933033877052367,0.8254848048090935,-0.2292203172110021,-0.3712917692027986,0.4026763685978949,0.9354942427016795,-0.5373247372917831,-0.9158354946412146,-0.5798592194914818,0.8478014236316085,0.10763614065945148,0.5382585236802697,-0.45937070855870843,-0.41549690905958414,-0.01315100397914648,-0.11641400260850787,-0.4803674896247685,0.38460077345371246,-0.8670411556959152,-0.034935115836560726,0.5878190821968019,-0.7919924664311111,0.24464934691786766,-0.20783520070835948,0.9701764136552811,0.8231647852808237,-0.9031620328314602,-0.254731398075819,0.13798596896231174,0.4088439028710127,0.23179793637245893,-0.2707761344499886,-0.30578225711360574,-0.2040307531133294,-0.024515893310308456,0.5884768390096724,-0.9251360185444355,-0.7205669549293816,0.06110271951183677,0.7980439770035446,0.021893960889428854,-0.5603636302985251,0.4466655026189983,0.500053325202316,0.9868585532531142,0.17609620979055762,-0.1270108032040298,-0.5317313121631742,-0.6893298756331205,0.2330474564805627,0.8333431584760547,0.9530675900168717,-0.5604346548207104,0.6449931380338967,0.8520820303820074,0.7677906923927367,0.08901159418746829,0.7980106575414538,-0.047161872033029795,-0.9797926703467965,0.9106861231848598,-0.39336621621623635,-0.2005706666968763,-0.22221584152430296,0.3284386112354696,0.542904359754175,0.7112316200509667,-0.6812564837746322,-0.14883002126589417,-0.31388040632009506,0.15353275975212455,-0.29867379972711205,0.2587134437635541,0.8286282191984355,-0.09391870768740773,-0.9317260663956404,0.33868054673075676,0.8941169381141663,0.4476048336364329,0.8801166387274861,0.2636792538687587,-0.07126069534569979,0.09789066202938557,0.6388181834481657,0.9072798108682036,0.9408586011268198,-0.8107781503349543,0.6859215293079615,0.43663637805730104,-0.1459753094241023,-0.05697238398715854,-0.9772492884658277,0.6117098978720605,-0.8046539914794266,-0.49902735743671656,0.7546350522898138,-0.13329678075388074,0.7643626732751727,0.0938937459141016,0.4933503223583102,-0.8078820388764143,-0.24251877656206489,0.277800886426121,-0.9588946141302586,0.7174475858919322,0.3144337381236255,0.6406132285483181,-0.6266954294405878,0.644993357360363,0.23627425776794553,0.06407078308984637,-0.8324961392208934,-0.09905223781242967,0.0797117087058723,0.8235886814072728,0.35458355117589235,-0.21513674454763532,0.6896595694124699,0.8282098164781928,-0.7780092018656433,-0.748074185103178,-0.7995918206870556,0.032560350839048624,0.6061452156864107,-0.004980065394192934,0.35292360605672,0.8437527855858207,0.8606016333214939,0.022927749902009964,0.8765476020053029,0.28436987195163965,0.2360774320550263,-0.7957213707268238,0.5259043988771737,-0.5256597977131605,0.3627757914364338,0.5353206372819841,0.21770762698724866,-0.27607162250205874,-0.6351489722728729,-0.2217173520475626,0.7894272459670901,-0.14918871922418475,0.395161306951195,0.43754059122875333,-0.28771418053656816,-0.383785433601588,-0.06053170468658209,0.657686214428395,0.14601377537474036,-0.6894155633635819,-0.759697690140456,-0.14034756273031235,0.7631824072450399,0.8654610421508551,0.015347924549132586,0.23300843546167016,0.13676239270716906,0.34593948954716325,0.15345812309533358,-0.31440533604472876,0.9872455955483019,-0.12300390936434269,0.29149385914206505,-0.7280587535351515,-0.42917407071217895,-0.0873149074614048,0.736033939756453,0.5813721525482833,0.37672083685174584,0.865881456527859,0.7663986952975392,0.7572531807236373,-0.34150453144684434,-0.9014387628994882,-0.5707689542323351,-0.175083477050066,0.6868959618732333,-0.8948941631242633,0.4316161214374006,-0.2545660147443414,-0.8422904624603689,-0.864820453338325,-0.7020590286701918,-0.26856360491365194,-0.4831111915409565,0.29878679709509015,-0.5475913425907493,-0.6585294539108872,-0.37786541879177094,-0.8733461415395141,0.9089641789905727,0.26116015668958426,-0.7525486741214991,-0.18161451490595937,0.24308645585551858,-0.8727304097265005,-0.8608286776579916,-0.7974284938536584,0.6100676744244993,0.6865616501308978,0.23854998499155045,-0.8682357799261808,0.8799499380402267,0.5045855077914894,0.23012477392330766,-0.04331184038892388,0.6957775810733438,-0.08767930325120687,-0.0921010784804821,-0.6652099555358291,-0.3636838705278933,-0.5725150997750461,0.7561015891842544,-0.6154328882694244,-0.9765689703635871,-0.37899158243089914,-0.29008503817021847,0.6669865851290524,0.9268048205412924,-0.400020738132298,-0.3981827711686492,0.30397080071270466,0.9617728940211236,-0.7616839837282896,-0.9067799518816173,0.0012899981811642647,0.6235301760025322,0.5039024287834764,-0.06710744556039572,0.3961318847723305,-0.5627273702993989,-0.2946811495348811,-0.9904893226921558,-0.018072123173624277,-0.25056979851797223,-0.07555522955954075,-0.6223765956237912,-0.2753118663094938,0.04469193844124675,0.08808075357228518,0.7489886609837413,0.9185471343807876,0.6954170637764037,0.30317342141643167,-0.5152999307028949,-0.7932121446356177,0.2547387261874974,0.07566030928865075,0.6729779071174562,0.28525150334462523,0.7013379922136664,-0.029803579207509756,0.2508110483177006,-0.714048860128969,-0.5548226935788989,-0.2133653168566525,-0.5062963264063001,-0.48991257417947054,-0.15046133007854223,-0.309182190336287,-0.25802978686988354,0.37877922784537077,-0.5466652414761484,0.386487428098917,-0.6309431623667479,-0.14739442989230156,0.07980516413226724,0.8796679377555847,-0.9310311200097203,-0.8694506520405412,-0.6143973236903548,-0.538741959258914,0.9399586105719209,0.19233472412452102,0.058702156879007816,0.8098563039675355,0.6996771884150803,0.7147281588986516,0.2889366466552019,-0.06354777561500669,0.714786384254694,-0.5378335076384246,-0.9661967656575143,0.5622831122018397,-0.5550144179724157,-0.1659652809612453,-0.8706948640756309,-0.22736419644206762,-0.625210193451494,0.8916825423948467,0.22656451631337404,-0.6598592125810683,0.7178159179165959,-0.9363266839645803,0.46018192917108536,-0.022431575693190098,-0.9255436016246676,-0.636221210937947,-0.23546472191810608,0.9400657508522272,-0.34075552225112915,-0.6430545765906572,0.7117420192807913,0.7005065996199846,0.5134456600062549,-0.8264720914885402,0.546361948363483,0.03486682195216417,-0.24751101853325963,0.5036258189938962,-0.05564871756359935,0.482248667627573,-0.6213922938331962,-0.7402136255986989,0.6335200052708387,0.210270959418267,-0.21843326790258288,-0.004446256440132856,0.46367581840604544,0.2455947156995535,-0.3954561185091734,0.2939281351864338,-0.017646207008510828,0.5950411483645439,0.5475760246627033,-0.6242933762259781,-0.1658936790190637,0.5190035104751587,0.5870739370584488,0.35967765748500824,0.5901190615259111,0.485547817312181,-0.7657749620266259,-0.5994044519029558,-0.4199306536465883,0.3398410393856466,0.645766990724951,-0.5063606281764805,-0.9991744137369096,0.2911067265085876,-0.3097993596456945,-0.6326553113758564,0.10849805129691958,-0.9329858683049679,0.24146200250834227,0.3327898532152176,0.020520293153822422,-0.3468814673833549,0.4096834002994001,-0.29706417163833976,0.04264095798134804,0.4917013421654701,0.43006930919364095,0.022556917741894722,-0.3920426182448864,0.8277693884447217,0.5912043666467071,0.9866719082929194,0.48565208446234465,-0.04177460353821516,-0.40760675398632884,-0.005940956063568592,-0.8598008924163878,-0.5260398723185062,0.900671212002635,-0.5923959081992507,0.5084049915894866,0.759970445651561,0.022809664253145456,-0.6055246382020414,-0.013527276925742626,0.4123069648630917,0.5035235895775259,-0.5033571682870388,-0.3759050089865923,-0.011914307717233896,0.4601862384006381,0.3593431725166738,-0.49807163560763,-0.6304776798933744,-0.7410125900059938,0.058415991719812155,0.5296900547109544,-0.32876753713935614,-0.3762376746162772,0.2260262337513268,-0.7620524964295328,-0.8945622933097184,-0.2307470738887787,0.6367547772824764,0.8942847978323698,0.03437546780332923,-0.31335317343473434,0.7480654316022992,-0.6473955539986491,-0.18715050583705306,-0.8848229218274355,0.8672902900725603,-0.3964727730490267,0.10360429156571627,-0.7526111984625459,0.5280778622254729,-0.47173258289694786,-0.1274874582886696,-0.11223598895594478,-0.8491155854426324,0.41928232926875353,-0.9446793678216636,0.7247818321920931,-0.6164573295973241,0.7936527137644589,-0.30305624566972256,-0.7860777769237757,0.9943093075416982,0.8442593342624605,0.031282451935112476,-0.496838690713048,0.3011813359335065,-0.9265470737591386,-0.11414784984663129,-0.997423751745373,-0.6817890494130552,-0.03464297857135534,-0.029950267169624567,0.3794727521017194,-0.08986426796764135,-0.5690980129875243,0.31527868611738086,-0.5120047004893422,-0.6451950138434768,-0.6559777092188597,-0.20182536635547876,0.49860937101766467,-0.28820118634030223,0.06342319585382938,-0.9323929520323873,0.7598093035630882,0.6107194479554892,0.1406611488200724,-0.15821720100939274,0.7213763534091413,0.4664144408889115,-0.8051451882347465,0.9778137211687863,-0.38320846343412995,0.9154287301935256,0.13416486186906695,0.10425421129912138,0.7630732478573918,0.4592661214992404,0.24641892407089472,-0.7461447911337018,0.5300536737777293,-0.6674110679887235,0.662200078368187,-0.7814782820641994,0.5843619289807975,0.23237709933891892,-0.16883159428834915,0.7910384051501751,0.01827542530372739,-0.20870864344760776,-0.07393498998135328,0.3931146147660911,-0.5707077318802476,-0.43440647423267365,0.40141463791951537,0.7815344491973519,-0.22979657724499702,0.12074796855449677,0.051594420336186886,0.6609882893972099,-0.39701743656769395,0.6262033432722092,-0.8861881531774998,-0.022788128815591335,0.5713160675950348,0.4481364372186363,-0.4101323578506708,0.4968349481932819,0.5462292451411486,-0.6256814636290073,0.6667476543225348,0.5178369786590338,0.3320087529718876,-0.7573288753628731,-0.42773529840633273,-0.027921646367758512,0.09399505564942956,-0.356083398219198,0.8409926956519485,0.6004200861789286,-0.4416782590560615,-0.3781456295400858,0.7746002385392785,0.735759902279824,0.3644182779826224,0.26728960406035185,-0.6860533123835921,-0.49848766112700105,0.2181139593012631,0.6272449712269008,-0.36157826986163855,-0.30017077503725886,-0.7451393310911953,-0.1117548723705113,-0.4675527233630419,-0.4584328676573932,0.9893144899979234,0.9417394273914397,0.8279737904667854,0.6982261403463781,-0.369389861356467,0.16887153452262282,0.41458032187074423,-0.339525138027966,0.7757168696261942,-0.2759296069853008,-0.3214155756868422,-0.9756212369538844,0.2832387504167855,-0.21850518556311727,-0.09603431494906545,-0.2968137268908322,0.4966065608896315,0.7173812901601195,0.8890363029204309,0.5616692737676203,-0.5282010827213526,-0.04260266665369272,-0.6633987133391201,-0.04274686658754945,-0.36411353293806314,0.2861233134754002,-0.6149800634011626,-0.07879883144050837,0.7865531910210848,0.37793842144310474,-0.8943226360715926,-0.37576127564534545,-0.8493132246658206,0.012919838540256023,0.7453579548746347,0.5455005834810436,-0.7979471269063652,-0.08279254520311952,-0.9190809526480734,-0.3105800859630108,0.5374042261391878,0.426694986410439,-0.5169150265865028,0.696699121966958,0.237548996694386,0.4521274259313941,-0.8714879332110286,0.618351920042187,0.6853576404973865,0.5978171122260392,-0.37825356191024184,-0.7667635474354029,0.99880739627406,-0.800523173995316,0.14610389061272144,0.7423197599127889,0.7476880587637424,0.9374953964725137,-0.9436487331986427,-0.6063301181420684,-0.1558587490580976,-0.812406477984041,0.7580380020663142,-0.7891599223949015,-0.7990247318521142,-0.20497351698577404,-0.77442542091012,-0.7981228502467275,-0.37976826122030616,0.03137586731463671,0.4632768644951284,0.1347765689715743,0.170880613848567,-0.5514312963932753,-0.029512455686926842,0.5015796786174178,0.4611192485317588,-0.8031278573907912,-0.28787876572459936,-0.9127622940577567,-0.33697501523420215,0.6919842455536127,0.8327898723073304,-0.6838413421064615,-0.48005389561876655,-0.13861955935135484,0.5436198888346553,0.41759441141039133,0.6554572768509388,-0.21398378536105156,-0.23460573377087712,0.5446712486445904,0.6138800457119942,0.026807939168065786,-0.5501700742170215,0.14060441916808486,-0.5536368992179632,0.1767923953011632,0.289760522544384,0.5575833874754608,-0.0759119694121182,0.5171459293924272,-0.5374675570055842,0.25449522119015455,-0.1192891108803451,0.49138275254517794,0.8413586453534663,0.22814517375081778,-0.4253886598162353,0.0635581542737782,0.5353102595545352,-0.9649784746579826,0.4732931419275701,0.2530256793834269,-0.3057949640788138,-0.6018172418698668,-0.3055168860591948,0.7482434078119695,-0.5759722176007926,0.6746393777430058,-0.9414187683723867,0.03643315425142646,-0.5709043866954744,-0.12129063811153173,-0.018499555997550488,0.8701686710119247,-0.10697769932448864,-0.22821878036484122,-0.7788747074082494,0.053216262720525265,0.7803789186291397,-0.6730318358168006,0.4642414846457541,-0.1430822927504778,0.48232746217399836,0.7964394115842879,-0.5062146717682481,-0.6301179234869778,0.9465264957398176,-0.6439701062627137,0.9360315301455557,-0.7453133198432624,-0.8609480201266706,-0.021488608792424202,-0.6966481488198042,-0.5320565453730524,-0.588772801682353,0.39031849754974246,-0.1674263635650277,0.9836429432034492,-0.11220457218587399,-0.7458421140909195,-0.2696721348911524,0.060872461181133986,0.09790800604969263,0.4903629580512643,-0.21834451518952847,0.18842003028839827,-0.7864888911135495,0.35605171089991927,0.4654953805729747,-0.8942713993601501,0.6867847461253405,0.1383683574385941,-0.26424803771078587,-0.7787930015474558,0.014722412452101707,-0.9491271036677063,-0.26081008231267333,-0.3277361039072275,0.6926519572734833,-0.7834365074522793,-0.021481302566826344,0.2980410624295473,0.09317046077921987,0.5921010854654014,-0.1936789038591087,0.8435532446019351,0.44567424058914185,0.8977491995319724,0.07476344984024763,-0.9778684955090284,-0.1268619024194777,-0.19080790085718036,-0.02813849551603198,0.5084793423302472,0.38427409855648875,0.5219834935851395,0.25889130029827356,0.08003306528553367,-0.6298107821494341,0.19809000473469496,-0.25172962713986635,0.9460202255286276,-0.3780235485173762,-0.5695802238769829,-0.6168820802122355,0.21481646317988634,0.770849097520113,-0.6320515326224267,-0.4328732527792454,0.7461868990212679,0.5253206742927432,0.3990857251919806,0.2695014560595155,-0.3776334226131439,-0.37551108561456203,0.975739202927798,0.5873738350346684,0.19501389656215906,-0.7215292556211352,0.26382321398705244,0.16522057307884097,-0.28913482278585434,0.3542648162692785,0.6569506702944636,-0.8772511896677315,-0.9820711021311581,0.6352982083335519,-0.5849225963465869,0.6360127297230065,0.3409607531502843,0.9003665312193334,-0.8051018971018493,-0.10772846033796668,-0.277375303208828,0.5949990777298808,-0.9053719867952168,0.9733464061282575,0.18428312614560127,-0.8383920313790441,0.05453144200146198,-0.2263154238462448,-0.10998713690787554,0.14307645382359624,0.9547824072651565,-0.42805284447968006,0.569307800848037,-0.17036339780315757,0.4762117532081902,0.016322539187967777,0.1537451008334756,0.12058754405006766,0.7631082786247134,-0.625729170627892,0.8032168736681342,0.13608828326687217,0.5449694646522403,-0.08510316908359528,0.495932443998754,-0.09166668215766549,-0.8566229455173016,0.4351724265143275,0.11021615378558636,-0.08454038249328732,-0.5719629479572177,0.03612391324713826,-0.5603387132287025,0.31489241775125265,0.6346189863979816,0.8149290038272738,0.8074835953302681,-0.3892888752743602,0.3613131348975003,0.5966241364367306,0.4520242386497557,-0.506944288033992,-0.3336132923141122,-0.6807992453686893,-0.21703581884503365,0.24618233740329742,0.3617159500718117,0.24493783619254827,-0.11228390876203775,-0.973259739112109,0.2808177648112178,-0.3358213254250586,0.518533116672188,0.026390717830508947,-0.028166706673800945,0.30512714991346,-0.5329710650257766,0.32131247874349356,0.7977587012574077,0.8911653920076787,0.7570280255749822,-0.7765461555682123,0.9263077131472528,0.5612628059461713,-0.9049808355048299,-0.484495067037642,0.4510103343054652,0.6974429683759809,-0.6552910599857569,-0.7968410141766071,0.545225408859551,-0.6357895149849355,0.25111432652920485,-0.7183078797534108,-0.6484040827490389,0.3758892398327589,-0.8249590001069009,0.8229385996237397,-0.15244861179962754,-0.10802043601870537,-0.15355914272367954,0.5120268929749727,-0.6000674339011312,0.2495857155881822,0.03382214857265353,0.03528427192941308,-0.1380851394496858,-0.9848080296069384,-0.1587394461967051,-0.4198041623458266,0.966520881280303,0.158037721645087,-0.8867519488558173,-0.9231241270899773,0.3239032574929297,0.24532031314447522,0.7875118530355394,-0.9703420964069664,0.25102965626865625,-0.4705896284431219,-0.19064556155353785,0.6071120831184089,-0.38160126749426126,0.7439579083584249,0.3441426521167159,0.3246859824284911,0.5193888596259058,0.9823384005576372,-0.3826020830310881,0.9469126840122044,0.15180373610928655,-0.07142203720286489,0.742818858474493,-0.7564975279383361,-0.7749981181696057,-0.8773099933750927,-0.2690366585738957,0.26658723456785083,0.9428571453318,-0.9674791800789535,0.2712492998689413,-0.5812134742736816,-0.3432711223140359,0.2991306805051863,0.632216043304652,0.04710478521883488,0.1279161386191845,0.8966188607737422,0.42721667513251305,0.8472337401472032,0.6433145715855062,0.5413566865026951,0.21181922173127532,-0.813463272061199,0.13390060979872942,-0.7623149058781564,-0.38306914269924164,0.9859902020543814,0.88246466871351,0.25340959057211876,0.5934935947880149,0.03134063398465514,-0.754633822478354,0.5506594767794013,-0.7099880920723081,-0.40210592839866877,0.25860097585245967,0.45144554087892175,0.4517506081610918,0.6221335427835584,-0.47253652522340417,-0.6325195231474936,-0.5050312206149101,0.6371102849952877,0.31118066562339664,0.9767476031556726,-0.7026514764875174,0.10027765855193138,-0.3329528593458235,0.7706414191052318,-0.8164383457042277,0.7107052807696164,-0.3878906201571226,0.4718693639151752,0.20933074690401554,0.6625869870185852,0.1352696930989623,0.6479021375998855,0.34392895083874464,0.1716076065786183,0.852558015845716,-0.3109653666615486,0.34348712768405676,0.2713900487869978,0.46466893469914794,-0.009630568791180849,-0.3980484432540834,-0.43700392870232463,-0.7560321972705424,0.531698732636869,0.5733972755260766,0.28540731780231,0.32804267993196845,-0.26274507446214557,0.7075922391377389,0.8745722724124789,0.7106422916986048,-0.6416861084289849,0.6943171722814441,-0.40395203744992614,-0.289036697242409,-0.22433602530509233,-0.8058213456533849,-0.9013871937058866,0.5947109120897949,-0.6624681344255805,0.7570680305361748,-0.3291633753105998,-0.536362312734127,0.18160365149378777,0.672860277350992,0.8843417493626475,-0.8202560134232044,0.784056079108268,0.7464537299238145,0.44862111285328865,-0.4145394843071699,0.46149367140606046,0.9249972882680595,0.953508360311389,0.8632240928709507,0.8563007730990648,0.7335710166953504,-0.8211225150153041,-0.7756767463870347,-0.5771850692108274,-0.688257671892643,0.31321746995672584,0.5116097927093506,-0.5503626642748713,-0.49727933295071125,0.2958944346755743,0.6995196016505361,0.6973924706690013,-0.6244168491102755,0.7787376181222498,0.9613625495694578,0.6136359120719135,-0.4960719309747219,-0.6773160309530795,0.07094796001911163,-0.48738078074529767,0.14180543320253491,0.8557852432131767,-0.36439373856410384,0.9900664589367807,0.7286217575892806,0.8198101492598653,0.25740944780409336,0.322846167255193,0.9135816642083228,0.9220635136589408,-0.5885920473374426,0.7873721700161695,-0.6954940026625991,-0.5390419219620526,0.606396830175072,-0.13693206710740924,0.05173153290525079,-0.230186615139246,-0.07584589021280408,-0.11633262317627668,0.04757571034133434,0.7166792824864388,-0.8540685963816941,-0.7940773372538388,-0.023299331311136484,0.654627448413521,-0.4807489197701216,0.4629857805557549,-0.6371236988343298,0.45865578716620803,0.9032564479857683,-0.03407568484544754,0.8887128457427025,0.8945038164965808,0.8084969213232398,-0.5550366435199976,-0.1393678574822843,0.07895454252138734,-0.8831002833321691,-0.11898628575727344,-0.29831072967499495,0.1727385362610221,0.7183734229765832,-0.3471119673922658,0.13110911985859275,-0.26360199926421046,-0.7108463109470904,0.5612853984348476,-0.4226698079146445,-0.22086714999750257,-0.37883072765544057,0.26094565773382783,0.2960656308569014,0.34871599543839693,0.7853284841403365,0.09211829490959644,0.3808717234060168,-0.28979913610965014,0.6766646807081997,-0.06918801367282867,0.47863628109917045,-0.14458056166768074,-0.20896888291463256,0.42271967651322484,-0.16908901650458574,0.4003554196096957,0.5194906387478113,0.8481008149683475,0.8374812914989889,-0.31895574973896146,0.49479443952441216,0.20452461671084166,-0.8906611264683306,0.7866882639937103,-0.7334871790371835,0.15626493655145168,0.6679516057483852,-0.8638438959605992,0.7494121231138706,0.4407111769542098,-0.34729750687256455,0.1373349535278976,0.3770543453283608,-0.8274998706765473,0.6434845244511962,-0.4257448138669133,0.4272668291814625,0.19358886312693357,-0.28875393839553,0.960024188272655,0.9856792143546045,-0.4518002038821578,-0.5615560207515955,0.021064526867121458,0.19917830871418118,0.33544502733275294,-0.7774214008823037,0.2871014797128737,-0.36443010065704584,0.26618661638349295,0.4715725602582097,0.9034098349511623,0.44548390340059996,0.7738258056342602,0.07532513933256269,0.36522974306717515,0.09436685452237725,-0.10720993438735604,-0.3489321288652718,0.988913114182651,0.6834051450714469,0.2823537685908377,-0.27471972862258554,0.14063292182981968,0.8298526131547987,0.3597051561810076,-0.38641670532524586,0.03630621358752251,-0.7990795904770494,-0.38474739994853735,0.060233531054109335,-0.17141289729624987,-0.4129474610090256,0.7045384990051389,0.5033065136522055,-0.8365780166350305,0.5076937414705753,-0.8434616904705763,-0.9954429310746491,-0.9524012776091695,-0.6919949878938496,-0.6695861020125449,0.565013796556741,-0.002568246331065893,-0.7089250758290291,-0.08300603041425347,0.27635239670053124,0.5271914284676313,-0.08968403423205018,-0.41895289765670896,0.9102770448662341,-0.009413197170943022,0.593713310547173,0.7219960242509842,0.5624679066240788,-0.40777406468987465,-0.044941323809325695,0.11420202162116766,0.6463766796514392,-0.4034402999095619,-0.12437466299161315,0.8321547112427652,-0.768371531739831,-0.4625903060659766,-0.7955258386209607,-0.9891706816852093,-0.5208713635802269,0.4680442758835852,0.4725073631852865,0.14597409404814243,-0.3311416395008564,-0.11030362639576197,-0.32685766229406,0.5869337106123567,0.9385809963569045,0.7933618072420359,0.4734589238651097,0.6835531489923596,0.9129233825951815,0.42306696297600865,0.48487253952771425,-0.7989476956427097,-0.15628665825352073,0.878654652275145,0.0012327563017606735,-0.9553697314113379,-0.1309354524128139,0.252740406896919,-0.9074354525655508,0.6777714695781469,0.990683862939477,-0.538956904783845,-0.04335294337943196,0.40714194206520915,-0.2267389097250998,0.01674228347837925,-0.4248460768721998,0.6916156592778862,-0.08759815851226449,0.2116805692203343,-0.12972668977454305,0.37974258745089173,0.06102877389639616,-0.6595978327095509,0.08712440822273493,0.9136419110000134,-0.5408047591336071,-0.6441624728031456,0.11638594977557659,0.5946908965706825,0.43033554730936885,0.20576426340267062,0.8963813274167478,0.4325710623525083,-0.27752581005916,0.5822106027044356,0.01715012500062585,0.5193654885515571,0.2438653539866209,-0.44534020591527224,0.9102275632321835,0.8880022852681577,0.30377941159531474,-0.4375389846973121,-0.23727226676419377,-0.9571620714850724,0.2858187942765653,-0.3244948424398899,-0.08374420832842588,0.8768142079934478,-0.33472146512940526,0.31817354867234826,0.4740519723854959,-0.37961975717917085,0.0722250402905047,-0.7742423210293055,0.9549384107813239,-0.8633992928080261,0.4327209177426994,0.1618494656868279,-0.9673527511768043,0.9685652893967927,0.6600244427099824,-0.5328256650827825,-0.5994145520962775,0.9916338538751006,-0.8711095592007041,-0.2590395896695554,0.16584049118682742,0.8106834813952446,0.9045515805482864,0.07356328936293721,-0.1857506767846644,-0.3106276374310255,-0.6840722067281604,0.3721924368292093,-0.6861175135709345,0.28137237345799804,-0.19105689506977797,0.0011978666298091412,0.5137518756091595,0.32500869827345014,-0.9069421864114702,-0.7346114567480981,-0.7182215144857764,0.6145035405643284,0.6841979622840881,-0.23022529482841492,-0.2467468217946589,-0.5618889736942947,0.28875036677345634,-0.7419273788109422,0.556666717864573,0.5744978697039187,-0.8774692914448678,-0.6905247415415943,0.5724558508954942,0.14681987650692463,0.2440248872153461,0.8894063881598413,-0.13606096524745226,0.7234754511155188,0.8018795060925186,0.5262169521301985,-0.9495507548563182,0.7552877026610076,0.6222338201478124,0.5494470177218318,-0.6390117011032999,-0.09421589784324169,-0.8467274648137391,0.6785231688991189,0.428767581935972,-0.8304229117929935,-0.0840538814663887,0.458487531170249,0.809469411149621,-0.6771775879897177,-0.041163370013237,-0.15918345097452402,-0.957252727355808,-0.4605836789123714,-0.5385713651776314,0.8190727150067687,-0.9766877624206245,0.1115540349856019,-0.950644482858479,-0.5391600471921265,0.9301144736818969,0.6071158680133522,-0.5551129668019712,-0.32012775307521224,-0.16904125502333045,-0.5237077362835407,0.41052407678216696,0.801998492795974,-0.6422689547762275,0.9204701422713697,-0.3840042934753001,-0.8718932834453881,0.5906203566119075,0.637645645532757,0.7286066547967494,-0.7722575343213975,-0.08748477511107922,0.47767322696745396,-0.31708992877975106,-0.24792546685785055,-0.295250894036144,0.8403902663849294,-0.5354692093096673,0.3355884235352278,-0.3850259645842016,-0.9826588379219174,-0.31077690329402685,0.12433912511914968,-0.3511588997207582,0.3323189006187022,0.26243660040199757,-0.8643967476673424,-0.7223849785514176,-0.997409398201853,-0.3604443254880607,0.6110370475798845,0.5225734910927713,-0.09965959889814258,0.9740195306949317,-0.8569157565943897,0.24256517319008708,0.5318355830386281,0.6256382833234966,-0.24851160077378154,-0.5213686283677816,-0.05515378853306174,-0.42025860771536827,0.3794694826938212,-0.28778158919885755,-0.11765101226046681,0.8977712653577328,-0.3588338242843747,-0.6844419506378472,-0.2511982135474682,0.5644806972704828,-0.5687375897541642,0.9153695870190859,-0.25511908158659935,-0.7489963774569333,0.45471803937107325,0.12330176727846265,0.24929728358983994,-0.9740306516177952,-0.8838602132163942,0.13600097689777613,0.20233825268223882,0.2652942189015448,-0.5086781503632665,0.5262104421854019,-0.4622864471748471,0.871834282297641,0.31752863246947527,-0.6273624133318663,0.1579127823933959,0.8763450984843075,-0.3167410804890096,0.574815196916461,0.764645554125309,0.38900226075202227,-0.33122457237914205,0.6428501354530454,-0.30004763370379806,0.6411141380667686,0.7450702460482717,-0.564060827717185,-0.5117610991001129,0.41196624003350735,0.16191982058808208,-0.5488170902244747,-0.3401026385836303,0.5121900602243841,0.8585290741175413,-0.2811890281736851,-0.7330692312680185,0.5107616260647774,0.6838556467555463,-0.628197677899152,-0.6268211384303868,0.26988501753658056,-0.2559574511833489,-0.95197389787063,0.8480658121407032,0.676534759812057,0.07272921409457922,0.28167751990258694,0.48449779534712434,-0.8299179109744728,-0.5805598255246878,0.2651900495402515,0.4859721860848367,-0.07220838451758027,0.08221921371296048,0.7163606081157923,-0.08946525817736983,-0.49152427166700363,-0.8889925046823919,-0.8567071720026433,0.47477210871875286,-0.48265939950942993,-0.5100512630306184,-0.2961141290143132,0.7929134587757289,0.6980898273177445,-0.31091274693608284,-0.2193389250896871,0.8152820589020848,-0.33140033204108477,0.7173755499534309,0.8957058163359761,0.4744028551504016,0.08635856444016099,-0.09285097988322377,-0.23400577437132597,0.36893174331635237,0.8327473248355091,-0.8620600705035031,-0.7472663172520697,0.41100412840023637,-0.19093415467068553,0.4693739074282348,0.7871160646900535,0.3719346169382334,-0.5333152217790484,0.09040719456970692,0.2777052763849497,0.4032160993665457,-0.006687130779027939,0.9633149770088494,-0.94830052414909,-0.23086051642894745,0.4974870518781245,-0.8491706112399697,-0.3429627111181617,0.4103907565586269,-0.5063519929535687,0.5886875265277922,-0.516801293939352,0.5873833885416389,0.555777101777494,0.09068401111289859,0.5597595372237265,-0.17377284914255142,-0.9549688748084009,-0.6282167672179639,-0.245031607337296,-0.2682277522981167,0.9259715918451548,0.31643742229789495,0.24809974199160933,-0.7088818061165512,0.03961958456784487,-0.8784655560739338,-0.19929856481030583,0.7944105700589716,-0.5839768466539681,-0.6106712678447366,-0.9289656728506088,-0.056988843251019716,0.20288199465721846,0.2821322279050946,-0.9752599522471428,0.07912024529650807,-0.021177703514695168,-0.5205699191428721,-0.6649382584728301,-0.023236508946865797,0.8231554995290935,0.1812296430580318,0.7347236196510494,-0.4242502092383802,-0.5167704750783741,-0.09726884169504046,0.7913372926414013,-0.3116714311763644,0.6822383152320981,0.7137099415995181,0.8878441038541496,0.9599394588731229,-0.17282264400273561,0.7807029923424125,0.7122735599987209,-0.02156278444454074,0.782111702952534,-0.12754225824028254,-0.238698017783463,0.17083402862772346,-0.910534905269742,0.7818480939604342,-0.5152677302248776,-0.6681918473914266,-0.18787514977157116,-0.48578687850385904,-0.9036557525396347,0.15553842717781663,0.9990748562850058,0.7909735338762403,0.6603621877729893,0.06917532254010439,-0.23594744317233562,0.7739994279108942,-0.319261078722775,-0.8251293492503464,0.7561941654421389,0.2997313002124429,-0.16957944817841053,0.3607798255980015,-0.38344684010371566,0.13958923099562526,-0.759369901381433,-0.930467686150223,-0.41942731756716967,-0.6349767800420523,-0.8655308866873384,0.2964041302911937,-0.4563035164028406,0.33903925074264407,0.6261268076486886,0.8212167867459357,-0.378040780313313,-0.18763338215649128,0.8909670421853662,0.5753311333246529,-0.07942302664741874,-0.6960063325241208,0.27458944264799356,-0.4545732415281236,0.35598093224689364,-0.7722752941772342,-0.5789797613397241,-0.9651417923159897,-0.988727112300694,0.9904253771528602,-0.716341121122241,-0.22802416794002056,-0.6129562593996525,0.9646328021772206,-0.44109223736450076,-0.3435942614451051,0.9962487407028675,-0.44461610401049256,-0.727262407541275,0.5075120013207197,0.31693548802286386,0.41583170322701335,0.7353972624987364,0.06535569904372096,-0.44668518705293536,0.3112293663434684,0.14999531395733356,-0.15544904163107276,-0.36744645424187183,-0.9694823720492423,0.8868241221643984,-0.7962100147269666,-0.943500348366797,0.7167707607150078,0.4532124064862728,0.6023419671691954,0.7874014228582382,0.22948716534301639,-0.9648032924160361,-0.8236560304649174,-0.24364737188443542,0.33314106008037925,-0.25672189658507705,0.3117583440616727,0.3348142639733851,-0.28526850743219256,0.6917068879120052,0.9799396307207644,0.033411430194973946,-0.6484361323527992,-0.7749097631312907,-0.9428528500720859,0.2527870489284396,0.6922314777038991,0.6983096548356116,0.776477181352675,-0.5654472974129021,-0.17210829490795732,0.41255818447098136,-0.05381220951676369,0.17544664070010185,-0.9392310017719865,0.4464794513769448,0.7108846618793905,0.22725971834734082,-0.4692055000923574,-0.1840471662580967,-0.15086820116266608,-0.08850007364526391,-0.8593460558913648,-0.3655376974493265,-0.0902217524126172,0.11153609724715352,0.023079691920429468,-0.37086659111082554,0.024476917926222086,0.6863554273732007,-0.19212707970291376,0.7209700937382877,0.6158446660265326,-0.9121931344270706,0.058583414647728205,-0.10649194288998842,-0.9724767645820975,-0.4133962420746684,0.5198076162487268,0.014241291210055351,-0.3426327286288142,-0.8022844409570098,-0.5480386554263532,0.1816156329587102,-0.11681366339325905,0.30597159126773477,0.6351417540572584,0.24561333656311035,0.18596269097179174,-0.6251427186653018,-0.41242348216474056,-0.7733296188525856,-0.6148285935632885,-0.10334643581882119,0.9507441972382367,-0.7097720187157393,-0.16558208176866174,0.726481368765235,-0.33013208908960223,-0.8609236418269575,0.6138522513210773,0.2456574854440987,-0.2184377945959568,0.05043331440538168,-0.385555949062109,-0.6499815136194229,-0.06415464961901307,-0.9763716030865908,-0.5021299500949681,0.4297359981574118,0.8747896151617169,0.018356026150286198,-0.8281248286366463,-0.47527874493971467,-0.4585277885198593,0.5756589365191758,0.663876268081367,-0.3198948516510427,0.976484457962215,-0.19294325821101665,0.4367120317183435,-0.11251630494371057,-0.6584315840154886,-0.7555719711817801,-0.08365117060020566,-0.4245135383680463,0.6257906560786068,0.10382159519940615,-0.9723042300902307,-0.9740738971158862,0.9611003142781556,-0.49900918966159225,0.946822224650532,0.9096503076143563,0.1052301274612546,-0.6109384968876839,0.9529599309898913,-0.9183347844518721,0.7157959612086415,0.024537608493119478,0.947873248718679,0.7145548900589347,-0.8677880084142089,0.05831503868103027,0.35658757388591766,-0.6141696758568287,0.6233308343216777,0.8971900660544634,0.8826838945969939,0.07687792321667075,0.7017193338833749,-0.7413139422424138,0.351973386015743,-0.5440975213423371,-0.05163900274783373,-0.8260989766567945,0.2983626495115459,-0.6325140856206417,-0.32704704301431775,-0.5175475678406656,0.5014444938860834,-0.5706043881364167,-0.9053218984045088,0.06369725242257118,0.43178253853693604,-0.2223621215671301,0.46073921909555793,-0.2955870274454355,0.4842778271995485,-0.7685891375876963,-0.08103404613211751,-0.921638066880405,-0.9992754361592233,-0.09982925839722157,0.9795597698539495,0.5751191419549286,0.6382171679288149,-0.756044136825949,0.8562923660501838,-0.9245416163466871,-0.006469519343227148,0.9184981253929436,-0.05347736878320575,-0.7432858683168888,-0.6698635090142488,-0.33764523919671774,0.6342112170532346,0.8647778201848269,0.7542641093023121,0.285292390268296,-0.27838019048795104,0.5502018998377025,0.518687357660383,0.9670201549306512,-0.3721043514087796,0.1918355030938983,0.15553487511351705,0.8691508760675788,-0.6734417239204049,-0.7281396114267409,-0.32812215900048614,0.9615630269981921,0.803405549377203,-0.9309774385765195,0.31462237564846873,-0.6722678090445697,-0.6130404938012362,-0.9462257577106357,0.4177542719990015,0.8671778463758528,0.5208670352585614,0.5037232842296362,0.37999338284134865,0.6997847124002874,0.8594359653070569,-0.6313404352404177,0.9414262748323381,0.41811701748520136,0.4696031385101378,-0.23210171749815345,-0.5362500427290797,0.16359693044796586,0.6431916416622698,0.25241758581250906,0.7437633322551847,0.2659710799343884,0.5696178330108523,0.6126915337517858,0.5553455408662558,-0.11864523170515895,-0.5385309956036508,0.45028245309367776,0.33121986826881766,-0.7101920335553586,-0.042371226008981466,0.5395462480373681,-0.04766839789226651,-0.9330382458865643,-0.9655840606428683,0.4544646912254393,-0.20299386512488127,-0.7496485379524529,-0.9333097976632416,0.5396872046403587,0.5579380500130355,0.22722704662010074,-0.631391981150955,-0.13342719804495573,-0.4218494021333754,-0.19306456530466676,-0.6595911853946745,-0.5565355108119547,0.03929196950048208,0.8228070149198174,0.8686540336348116,0.6081010196357965,-0.09226654982194304,0.4456465565599501,0.600603764411062,-0.8831235743127763,0.30755537236109376,0.3702047732658684,0.5880287834443152,0.5658739302307367,-0.2767876195721328,-0.9669810626655817,0.9756624335423112,-0.10445226635783911,-0.6120286365039647,0.9345356789417565,-0.09311447432264686,0.7132534929551184,0.03630893025547266,0.2635949430987239,-0.326755166053772,-0.06371329072862864,-0.04387068562209606,0.00019705574959516525,0.3930268036201596,-0.26755034970119596,0.40437174402177334,0.8161088335327804,0.14382761577144265,-0.8106971750967205,-0.9932259041815996,-0.1762820165604353,0.08154790150001645,0.31205001985654235,0.41254022950306535,-0.8532781046815217,0.7808008999563754,-0.7181608583778143,-0.41801983304321766,0.2506259991787374,-0.1836326732300222,-0.645078448113054,0.3340824763290584,-0.14355621440336108,-0.3008751259185374,0.03290493227541447,-0.42043162090703845,0.4087423929013312,-0.8162009171210229,0.760166232008487,-0.8954147193580866,-0.35879700304940343,0.007952789776027203,-0.306806449778378,0.1805727919563651,-0.19865937856957316,0.6981447143480182,0.10538243409246206,-0.015574655029922724,-0.311933231074363,0.7863821838982403,0.5400898326188326,-0.922140093985945,0.9292251262813807,-0.3676244174130261,0.9825616935268044,-0.08934343932196498,0.9456591717898846,0.459748609457165,-0.1907937820069492,0.7306524887681007,0.34296767553314567,0.36453562742099166,-0.9605016866698861,-0.7785734394565225,-0.9365343586541712,-0.1637347978539765,-0.3644862868823111,-0.6204682174138725,-0.11606175499036908,-0.8588113989681005,-0.24679834302514791,0.8644261718727648,0.914099452085793,-0.16926013072952628,-0.531647156458348,0.8764871773310006,-0.0355940037406981,-0.06938204495236278,0.9320442685857415,-0.24577230541035533,0.8513169889338315,-0.38426704285666347,0.01591577846556902,0.8061645859852433,0.7751149837858975,0.8150550504215062,-0.5506598060019314,0.3220513314008713,-0.8669784483499825,0.007999892346560955,0.02713511837646365,0.30900662625208497,-0.8278386741876602,-0.7259488222189248,0.11392965354025364,0.5859721559099853,0.29424636345356703,-0.523671864066273,0.8447492816485465,0.051337686367332935,-0.01139132585376501,-0.07350866449996829,0.5027002175338566,-0.018698842730373144,-0.9984029131010175,-0.7865129853598773,-0.0694543793797493,-0.5374943627975881,-0.15149185713380575,-0.11761197308078408,-0.6312565803527832,0.31649532448500395,0.8171527008526027,-0.515749144833535,0.1166417058557272,-0.6631393083371222,0.12033414887264371,0.1302467710338533,0.46991865523159504,-0.32506541907787323,0.8188626393675804,-0.1013519586995244,-0.055906834080815315,0.11697047343477607,0.865220055449754,-0.4949065847322345,0.5062721557915211,0.8703087563626468,-0.11846238374710083,-0.48232547054067254,-0.4622749495320022,-0.7986044394783676,0.749017349909991,-0.41945233196020126,0.15992719074711204,-0.12885789386928082,-0.365083581302315,-0.08476014621555805,0.19506031507626176,0.335465841460973,-0.7767719519324601,-0.2631745655089617,-0.6824179789982736,0.0811591213569045,-0.6069578160531819,-0.27094677137210965,0.8985901107080281,0.2927808165550232,0.8903248966671526,0.23281186120584607,-0.17285349359735847,0.4717489411123097,-0.11140844970941544,-0.5461424137465656,0.0022245272994041443,-0.5864496971480548,0.058798013255000114,-0.8471458940766752,-0.056321035604923964,0.9324587029404938,-0.7546504894271493,0.6299312668852508,-0.9175633452832699,0.04831870459020138,-0.571527908090502,0.7764604375697672,-0.9891538042575121,0.489436115603894,-0.10286557674407959,0.5914947954006493,-0.30153388902544975,0.48609382193535566,0.24792977515608072,0.5349029065109789,-0.4340517264790833,0.30256297904998064,0.3419449762441218,-0.7831445392221212,-0.349674875382334,-0.7474605455063283,-0.05061700474470854,-0.631879554130137,-0.07236662553623319,0.23906611325219274,-0.30175649281591177,0.4717194619588554,-0.02109119901433587,-0.5715896799229085,-0.7808214840479195,-0.48552748980000615,0.08989513898268342,0.07815105561167002,0.42760640988126397,0.1291313273832202,-0.31844508508220315,0.2924807430244982,-0.0852408786304295,-0.8888053954578936,-0.632083292119205,0.4496927415020764,-0.0743117923848331,0.6815883768722415,-0.8360692770220339,-0.6956300451420248,0.8530605570413172,-0.3113379366695881,-0.31870522955432534,0.060820186510682106,0.22145290626212955,-0.07976514007896185,0.8064455264247954,-0.8197447345592082,0.6179466326721013,-0.6814529951661825,-0.3939521564170718,-0.6892203246243298,-0.6138060153461993,0.8977284538559616,0.9929449614137411,-0.992214816622436,0.92195815872401,0.47244090074673295,0.6404789052903652,-0.7809673775918782,-0.968174762558192,0.5125904018059373,0.7207437735050917,0.40842771530151367,0.21392598748207092,0.24845927814021707,0.9127638740465045,-0.2111241677775979,0.44715522043406963,0.6283837342634797,-0.04400369292125106,0.3060413608327508,-0.4293094901368022,0.3801895836368203,0.8746271277777851,0.08131930604577065,-0.5379008185118437,0.2914046053774655,0.21344264410436153,-0.25221472326666117,0.36759120086207986,0.6002931408584118,-0.4048100705258548,0.11186793772503734,-0.06532327365130186,-0.712036682292819,-0.4590165284462273,0.06813602522015572,-0.5291268727742136,0.7816536482423544,-0.8138562324456871,-0.4651303472928703,0.04523503361269832,0.054537054151296616,0.9542500632815063,0.11314963502809405,0.9752884022891521,0.1755240852944553,-0.884049154818058,0.44686732394620776,0.9781508781015873,-0.08597806841135025,-0.12447444768622518,0.6001772205345333,-0.34226052183657885,-0.537913198582828,0.06645435141399503,0.41608935547992587,-0.161572331096977,-0.20993010001257062,0.23802049458026886,0.946971564553678,0.5216245073825121,0.3361861133016646,-0.009668266866356134,0.9785198215395212,-0.7207115995697677,0.5535051925107837,-0.8429382396861911,0.7327636610716581,0.9316985541954637,-0.11664174497127533,0.9946572789922357,0.4875194658525288,-0.7302703713066876,0.43314409581944346,-0.1417725645005703,-0.788180276285857,0.8620835281908512,-0.23135261656716466,-0.1259934799745679,0.09933961182832718,-0.4466217365115881,-0.4016732666641474,0.5719324611127377,0.7572271432727575,-0.059561383444815874,-0.39155180426314473,-0.8544634166173637,-0.7567342640832067,-0.984437835868448,-0.3027349985204637,-0.07071605464443564,0.4144005929119885,0.04590328969061375,-0.3519624089822173,-0.42272123554721475,-0.9614763152785599,-0.6248078029602766,0.7851744685322046,0.24412880698218942,-0.052479205653071404,-0.9073333041742444,0.3798811547458172,0.6459983880631626,-0.6435883031226695,-0.940373049583286,-0.2746076243929565,-0.9754042173735797,-0.552467402536422,-0.716149318497628,-0.9028342738747597,-0.6189199755899608,0.9807347422465682,0.38675870280712843,-0.7789090243168175,0.5041625048033893,-0.8586809309199452,0.6036994471214712,0.24565098714083433,-0.6326721427030861,-0.6998126991093159,0.6629336150363088,0.4396279426291585,0.19086383236572146,0.761686532292515,-0.8270335211418569,0.8954120641574264,-0.9102286724373698,0.432185857091099,0.9978029630146921,0.8380232988856733,-0.7943786992691457,-0.5798103925772011,-0.918154330458492,0.40171428909525275,0.6275343708693981,0.5653423108160496,-0.39268993586301804,0.49327220767736435,-0.22779020899906754,-0.6443218495696783,0.22943399660289288,-0.9983160076662898,-0.4318931591697037,-0.9318719296716154,0.019839317072182894,-0.41232828376814723,0.5644173263572156,0.09965030383318663,0.9069706299342215,-0.9841502234339714,-0.14486659038811922,0.02096874127164483,0.6445822045207024,0.9806606434285641,0.9124529925175011,0.8787331278435886,-0.9208962391130626,-0.6735297054983675,0.6685487967915833,-0.5162585605867207,-0.9931639274582267,-0.6184912691824138,0.2010741289705038,-0.38195829652249813,-0.29175817547366023,0.6562058972194791,-0.1496018236503005,0.6420765575021505,-0.8474123328924179,-0.7021385487169027,0.9297009883448482,-0.4243755084462464,-0.0833821464329958,-0.7631657859310508,0.08657855167984962,-0.18383761635050178,-0.24281122023239732,0.9096867912448943,-0.2645058329217136,0.8336155880242586,0.8756435425020754,-0.5113937631249428,0.10659472132101655,-0.8566677933558822,0.5248428145423532,0.7254651403054595,-0.5242289700545371,0.6613377956673503,-0.21147414483129978,-0.4739289893768728,-0.7926285387948155,-0.26488324953243136,0.3070131465792656,0.6349928947165608,-0.22071774024516344,-0.5447305985726416,0.4640232459641993,-0.6212629941292107,-0.9754568990319967,0.4709809892810881,0.6337284022010863,0.6311715706251562,-0.3145535313524306,0.5692426725290716,0.3205605079419911,0.6470545018091798,0.7865651706233621,-0.43391438107937574,-0.592867795843631,-0.6910935104824603,0.2120110858231783,-0.9040352199226618,-0.8443603236228228,0.9987320303916931,-0.1041418588720262,0.9265400259755552,0.49519327841699123,0.176079910248518,0.4478749940171838,-0.5914571997709572,-0.9043543096631765,-0.8883868893608451,-0.36396004213020205,-0.05765513703227043,0.8481866070069373,-0.11227397434413433,-0.5223835208453238,0.9948103884235024,-0.7763455952517688,0.5028592916205525,0.6964278775267303,0.6818959377706051,0.424712679348886,-0.6930207274854183,0.9397141383960843,0.20368527807295322,0.16208931570872664,-0.3905644156038761,0.8214782681316137,-0.6754146404564381,0.5192517642863095,0.8016387433744967,-0.9016964095644653,-0.49021528335288167,0.8695218954235315,-0.7795037659816444,-0.07804798893630505,-0.25693822419270873,0.5247584120370448,-0.049738621804863214,-0.006488488521426916,-0.9381251679733396,-0.07916877465322614,0.616793149150908,-0.19225455215200782,-0.39706440921872854,-0.06995785050094128,-0.7373884585686028,0.03905185405164957,0.15941366367042065,-0.48839194467291236,-0.9273158446885645,-0.04024117300286889,0.08139429520815611,-0.9917160230688751,0.5933129033073783,0.1832030643709004,0.6919170953333378,0.32085653161630034,0.8592394543811679,-0.7039273171685636,0.20171734876930714,-0.24818042665719986,-0.41665922151878476,-0.7686790749430656,0.999959409236908,0.657853364944458,-0.06232011970132589,-0.04477706179022789,-0.40681068086996675,0.36361762462183833,0.8634342676959932,-0.4329622578807175,-0.3159816386178136,-0.7295783404260874,0.6978035466745496,0.8737720586359501,-0.6833251304924488,-0.04933660198003054,-0.18972746562212706,-0.64547667093575,0.3959485189989209,0.24049350898712873,-0.7610725089907646,-0.7581696319393814,-0.7306654057465494,0.8876967383548617,-0.19191216118633747,0.1728093042038381,-0.5867789671756327,-0.18152795312926173,0.7067602770403028,-0.35932154720649123,0.30673477752134204,-0.8498238259926438,-0.37960830703377724,-0.4734462099149823,-0.35324793541803956,0.6615838287398219,-0.9245918323285878,0.4827392683364451,-0.9438177566044033,0.6394449207000434,-0.8314356631599367,-0.18315566377714276,0.9381117187440395,-0.4419483672827482,-0.6395642692223191,-0.7845106297172606,0.8140655057504773,0.776839884929359,0.925599514041096,-0.5767310820519924,0.2580388206988573,0.601714386139065,0.11467027897015214,0.5422563711181283,0.6064825304783881,0.6409619813784957,-0.09464373532682657,0.17769798543304205,-0.3029798730276525,-0.027201725635677576,-0.0032986081205308437,-0.1302977125160396,0.4098776448518038,0.6805153293535113,-0.4211472822353244,-0.21189342718571424,-0.2530089425854385,-0.9626305866986513,-0.6490093562752008,0.5415707505308092,-0.083337367977947,0.8629572205245495,0.27840614737942815,0.21485412307083607,-0.8263346506282687,0.2618471751920879,0.02881410624831915,0.6721686366945505,0.10387888457626104,0.122429093811661,0.9507669699378312,0.2543660053052008,0.44790106965228915,0.5736117106862366,-0.25187118258327246,0.7927469136193395,0.8995111049152911,0.8158294633030891,-0.9735757051967084,-0.5976514401845634,-0.2711989642120898,0.994154495652765,-0.3764982232823968,0.2779662264510989,-0.13211805606260896,0.5913012926466763,0.6623705257661641,-0.9571976191364229,0.002648595254868269,-0.5975777222774923,0.8173178969882429,0.7641948708333075,-0.7124140653759241,-0.6861565858125687,-0.8986197304911911,0.41497235372662544,-0.39238916942849755,-0.3930886657908559,0.07684614462777972,0.05142119061201811,-0.942915459163487,0.05391288874670863,-0.5029779742471874,0.8662715503014624,0.28277773642912507,0.5668723187409341,0.1175055387429893,0.8666418450884521,-0.47211553156375885,0.5605012066662312,0.9885509521700442,-0.8691089488565922,-0.24283379269763827,0.7327897362411022,0.727857023011893,-0.15531138936057687,0.7980954628437757,-0.1902412287890911,0.6715329219587147,-0.639751233626157,0.22507796622812748,0.15476348204538226,-0.5223453473299742,-0.310910003259778,0.6624248665757477,-0.8656259938143194,-0.15840424038469791,-0.8783592479303479,0.6758375866338611,-0.3773544249124825,0.0855430350638926,0.5731731099076569,-0.08092733472585678,0.019125828985124826,0.8861284097656608,0.11461703525856137,-0.6790485046803951,0.5783795989118516,-0.1562329805456102,0.9523331476375461,-0.6547860135324299,0.471979898866266,-0.09997724927961826,-0.8014390547759831,0.885010490193963,-0.2762710452079773,0.11477741878479719,0.9554686970077455,-0.9951039743609726,0.5104711716994643,0.13265090063214302,0.523506373167038,-0.7224440695717931,0.14994720509275794,-0.5442428253591061,0.595064293127507,0.15618947939947248,-0.39285857789218426,-0.4365326869301498,-0.32286083651706576,-0.30587180238217115,0.7728558462113142,-0.24140786239877343,0.09831694327294827,-0.44991557486355305,-0.8445149529725313,-0.28964454121887684,-0.9665870741009712,-0.34096834948286414,-0.014771959278732538,0.47332413820549846,0.3787216846831143,-0.03805164294317365,-0.5613518436439335,0.5222978689707816,0.021303695626556873,0.5431325873360038,-0.5581105165183544,-0.9265757370740175,0.613480350933969,-0.7056805989705026,-0.4495967933908105,0.5962205175310373,-0.541133557446301,-0.8481713742949069,-0.29593121726065874,-0.06876162439584732,-0.5683702202513814,-0.3408021139912307,0.5983833917416632,0.7533813347108662,-0.5293621001765132,0.20617545954883099,-0.764016892760992,0.6051712483167648,-0.7541078086942434,-0.5554321892559528,-0.17186790192499757,0.8327521719038486,-0.8098661215044558,0.35770354932174087,0.30518881045281887,0.20333855273202062,-0.742820471059531,-0.5603563040494919,0.30080527579411864,0.3430879767984152,0.90122996782884,0.9909351062960923,-0.16136754350736737,0.14963244926184416,0.2881717956624925,0.9980130195617676,0.06178771099075675,0.808630186598748,0.06729371240362525,0.02725170599296689,0.2741214204579592,-0.9569017011672258,0.5786493215709925,0.16441660607233644,-0.0026115532964468002,-0.2068085242062807,0.6996140922419727,-0.3222312028519809,-0.11645556753501296,-0.8630051733925939,-0.44187262281775475,0.6990775410085917,0.4584469529800117,-0.9989256258122623,0.6950380317866802,-0.8180515901185572,0.7799864769913256,0.6725479057058692,-0.11601329268887639,0.07037757942453027,-0.1373539320193231,0.7547926255501807,0.5932758687995374,-0.6422125627286732,0.8122805496677756,0.37009736616164446,0.937758341897279,-0.17195920692756772,0.9393297913484275,-0.20980522315949202,-0.6659369659610093,0.8987312261015177,0.6660750289447606,-0.8366254707798362,-0.7095019542612135,-0.8969262698665261,0.7291187350638211,0.42796293925493956,0.17411568062379956,0.5077407136559486,-0.6021444443613291,-0.36537328734993935,0.9668126963078976,0.7329476308077574,0.031216320116072893,-0.5760015188716352,0.8868596642278135,0.4226529560983181,-0.7155148922465742,-0.7376710548996925,0.10935417283326387,-0.46237746300175786,0.38575332378968596,0.6887927129864693,0.23423726623877883,0.8332001408562064,-0.2781735882163048,-0.4794363994151354,0.5180083555169404,0.6838911944068968,0.8635461577214301,-0.3865969516336918,0.7662493288516998,0.9763355324976146,0.9537041820585728,-0.7823291611857712,-0.6048255441710353,-0.7060556812211871,0.6765347234904766,-0.03796721948310733,0.6820944715291262,-0.6247417503036559,0.126492400187999,-0.4413581835106015,0.3912485218606889,-0.6714980150572956,0.6862343205139041,-0.742794250138104,0.2164410436525941,-0.9941997597925365,-0.20488636614754796,-0.032665603794157505,0.09427862009033561,-0.12258598674088717,-0.28740327805280685,0.8142824713140726,0.1417322657071054,0.42374670691788197,-0.9978826143778861,-0.33360754791647196,-0.9959848416037858,-0.30936132930219173,0.6344254445284605,0.7037015855312347,0.2652018256485462,-0.7960429666563869,-0.3178469589911401,-0.025625914335250854,0.939933845307678,-0.06385315535590053,0.5497453436255455,0.8471065792255104,0.8729187580756843,-0.3424816164188087,0.7115447334945202,0.5202996050938964,-0.43326374841853976,-0.9463111688382924,0.7596105556003749,0.12523215590044856,-0.21827855566516519,0.8446762566454709,-0.3464318150654435,0.4799903961829841,-0.26103478157892823,-0.4930926957167685,0.1185101605951786,-0.2480372847057879,-0.5825576949864626,-0.2122890637256205,0.37244474422186613,-0.44092754274606705,-0.5790882729925215,0.5377956060692668,-0.12320915190503001,0.07732581254094839,0.10526282573118806,-0.0062905121594667435,0.9327510138973594,-0.9612240898422897,0.5976473023183644,0.42623873706907034,0.6595901045948267,-0.164007646497339,0.9761927309446037,-0.38472875813022256,0.8076809830963612,-0.01762167504057288,-0.15345212956890464,-0.16236344957724214,0.21233937982469797,0.9152231686748564,-0.31069377809762955,-0.7853950844146311,0.6520037506707013,-0.051332421600818634,0.038953003007918596,0.9609908740967512,-0.2456924021244049,0.715497525408864,0.22014624206349254,-0.5459856651723385,0.3565362920053303,-0.0576816126704216,0.9850364085286856,0.024809294380247593,0.0727771082893014,0.8181775035336614,-0.9153658477589488,-0.20913185644894838,0.9950608252547681,0.3341271453537047,-0.1689704335294664,0.5704461173154414,-0.22967254323884845,-0.15139772137627006,0.6182826915755868,-0.8985974458046257,0.03315484756603837,-0.9510432435199618,0.6790774124674499,-0.25239322707057,-0.19356746412813663,-0.050783779472112656,0.6859491053037345,-0.17430923273786902,-0.3781779105775058,0.5895354398526251,0.0756488828919828,0.9096414395608008,-0.7174863452091813,0.5715107223950326,-0.7699214634485543,-0.9668726813979447,0.21258331276476383,-0.040977366268634796,0.8555672820657492,-0.8463314287364483,0.8546514250338078,0.49492210103198886,0.4813946969807148,-0.6985637419857085,0.7413270049728453,0.5869449465535581,0.6616164203733206,-0.26486564287915826,-0.9394312524236739,-0.2873269426636398,-0.3670432991348207,-0.35802900744602084,0.12398048676550388,-0.3146577994339168,0.51126126665622,-0.5689339716918766,-0.5453521823510528,-0.9133503073826432,0.031407956033945084,0.9294881788082421,-0.9087987011298537,-0.07930568559095263,-0.007103381212800741,-0.6109157758764923,0.5931744249537587,0.7088565095327795,0.1745344242081046,0.7487470083869994,-0.012765244580805302,0.07274687429890037,0.6836698288097978,0.7206853087991476,-0.8658064547926188,0.939286245033145,0.43758276477456093,0.5628081443719566,0.6609910214319825,0.3564864248037338,0.20479829190298915,-0.06042274180799723,0.39245192566886544,-0.30167064163833857,0.7871658923104405,-0.9365880265831947,0.9139409097842872,-0.07451816042885184,0.9128399300388992,0.924551454372704,0.2263502199202776,-0.5374550982378423,0.4722149511799216,-0.6581296971999109,-0.9451811774633825,0.8906608000397682,-0.5230036489665508,-0.4737228821031749,0.9340787217952311,-0.7909096358343959,0.8960438324138522,0.09570476086810231,0.6534151355735958,-0.133263754658401,0.29981943499296904,-0.3825877085328102,-0.6632693163119256,-0.1729343719780445,-0.942419683560729,0.6069831168279052,0.9124609678983688,0.2211905918084085,0.865685738157481,0.6244665295816958,-0.9985963199287653,0.3927413788624108,-0.6628500344231725,0.6760705937631428,0.8958418564870954,-0.7279574680142105,-0.0039083752781152725,-0.3000452471897006,0.6522364038974047,-0.4697578535415232,-0.8224253323860466,0.5111172078177333,0.4646072923205793,-0.47249864507466555,0.657013991381973,0.9510883511975408,-0.37208111165091395,-0.691551142372191,0.13815501611679792,0.07935612229630351,0.016270439606159925,-0.43261345010250807,0.6311418209224939,-0.2453650920651853,-0.91375528043136,0.8387076193466783,0.44297183072194457,0.05711054755374789,-0.6972916829399765,0.44597687339410186,-0.288235479965806,0.941649672575295,0.7294766767881811,-0.6447478355839849,0.26831014920026064,-0.21463028620928526,-0.7966123623773456,0.4113236963748932,-0.22134779766201973,-0.9330318891443312,-0.8287038719281554,-0.1336700040847063,-0.8844171348027885,0.24485149374231696,0.5704326946288347,-0.617895538918674,-0.2774497983045876,0.38978710025548935,0.30786398285999894,-0.06018067477270961,-0.023665800224989653,0.005253614392131567,-0.703305586706847,0.4296820554882288,0.5206276653334498,0.23246283642947674,0.11395064974203706,0.09768088534474373,0.07932130992412567,0.8511347225867212,0.15180408768355846,-0.8861438548192382,0.7649612897075713,-0.01012969994917512,-0.32102278200909495,0.008663169108331203,-0.7092254739254713,0.37473882315680385,0.7234882940538228,0.1909529552794993,-0.6250266833230853,0.1330232135951519,-0.32848567608743906,0.6765565988607705,-0.9654751368798316,0.6059920093975961,-0.4961174442432821,-0.8011456378735602,0.353623466566205,0.7153495750389993,-0.30175250908359885,0.12699378933757544,-0.12089652102440596,0.36901189386844635,-0.12912170542404056,-0.611337932292372,-0.4995954157784581,-0.5442404979839921,0.44649875722825527,0.2939282227307558,-0.5456668366678059,-0.6384914978407323,-0.38332981104031205,-0.18787058256566525,-0.9628728926181793,-0.970416456926614,0.18785062246024609,0.12663826486095786,-0.25452786730602384,0.7319502010941505,0.9732653489336371,-0.757838701363653,-0.38196254428476095,-0.24640907580032945,-0.042534536216408014,0.2874262952245772,-0.3309569889679551,0.2075720322318375,-0.06540795741602778,-0.14135323278605938,0.028808380011469126,0.8509366814978421,0.2820219066925347,0.9804520201869309,0.8664838098920882,0.688819800503552,0.3905732058919966,0.5317730503156781,-0.8434012103825808,-0.8638453301973641,0.4147161412984133,0.9820176786743104,0.5114881121553481,0.22318224282935262,-0.519684452097863,0.14614037331193686,-0.35216662054881454,-0.24399408232420683,0.8939387076534331,0.656706468667835,-0.028333385940641165,0.13109584618359804,-0.921613184735179,-0.5233023627661169,-0.48557444056496024,0.09436574950814247,-0.8180241892114282,-0.04543511103838682,-0.685152392834425,-0.075930655002594,-0.4601859897375107,0.04330201121047139,-0.13533427473157644,-0.9292553062550724,0.2487211711704731,0.6972740050405264,0.6843308741226792,-0.9341982826590538,-0.7348168483003974,0.0329536315985024,-0.4834706229157746,0.4675283948890865,0.6193043743260205,-0.02270695148035884,-0.3874620897695422,-0.3804316916503012,0.922219124622643,0.45464793778955936,-0.30383224273100495,-0.43941233353689313,-0.9971804851666093,-0.2977617117576301,-0.6799986870028079,-0.30066122813150287,0.2574238236993551,-0.6208750507794321,-0.8625191929750144,0.2760222335346043,-0.12292478326708078,-0.8731175954453647,-0.7984619289636612,0.29303974425420165,0.8413473628461361,0.2845109384506941,0.7681185500696301,-0.5712168584577739,0.6885176277719438,0.8899627909995615,-0.4554085498675704,0.9704726194031537,0.42953646555542946,0.49303528806194663,0.14737936947494745,-0.7335559637285769,-0.8875267580151558,-0.24022065568715334,0.9133787024766207,0.03173245210200548,-0.7806465774774551,-0.26211834512650967,0.772699624300003,-0.8146717632189393,-0.3597187912091613,0.3218439999036491,-0.49724814435467124,-0.7605722905136645,-0.8886834452860057,0.14717929903417826,0.8094489183276892,-0.9726232117973268,0.5884103579446673,-0.9668084308505058,-0.44836008874699473,0.7039261143654585,0.8433562288992107,-0.40932018123567104,-0.4469288024120033,0.8142144768498838,0.3308868748135865,0.024859837722033262,-0.48131081368774176,-0.2253583949059248,-0.3076987722888589,0.36517752055078745,-0.46844768105074763,0.17720026895403862,0.6383574181236327,0.929175368975848,0.28254825808107853,-0.5873026847839355,-0.2811668263748288,0.9538522786460817,-0.6136395460925996,0.6765239466913044,-0.26853488106280565,-0.34493015706539154,-0.5762217836454511,0.11047963984310627,0.35039463685825467,0.7408074382692575,-0.44826755905523896,0.3357960362918675,-0.3154656523838639,-0.25573093676939607,0.6023022374138236,-0.5524841733276844,-0.3700265334919095,0.731299941893667,-0.6505814022384584,0.6310792211443186,-0.2854658868163824,-0.21082676900550723,0.5407562479376793,0.2666653227061033,0.7923000478185713,-0.4541167342104018,0.30976536218076944,-0.7828408516943455,-0.7261127759702504,0.24508085381239653,0.6825175867415965,-0.6394760967232287,0.5875229062512517,-0.7040162375196815,0.5442844200879335,0.9707762077450752,0.546467418782413,0.10919490410014987,0.593893407844007,-0.6149300239048898,0.23564174259081483,-0.23550512734800577,0.16120802192017436,0.24485148303210735,0.20677945483475924,0.05821948265656829,-0.5010503577068448,-0.33784155966714025,-0.44671374605968595,-0.7159449788741767,0.16663763346150517,-0.11681017559021711,-0.3318813503719866,0.11486914241686463,-0.1747465473599732,-0.36486871680244803,-0.6127412063069642,0.2234835852868855,0.118017487693578,0.44003534223884344,-0.8646116084419191,0.7703566448763013,-0.572436360642314,-0.8129348270595074,-0.6756573836319149,-0.24007295491173863,0.6636873870156705,0.4707324574701488,-0.1751448200084269,0.9480805117636919,0.8685053335502744,-0.25617735972628,-0.8409721837379038,-0.911922306753695,0.24415338644757867,0.7093432848341763,-0.5978321745060384,0.13252461142838,0.21839183196425438,-0.3848323617130518,-0.5759369204752147,-0.3733006245456636,0.28441094793379307,0.4360656887292862,0.1954218028113246,0.26540055871009827,-0.3935589427128434,0.6127338698133826,0.04458952369168401,0.03362809447571635,0.8678372805006802,0.2459216588176787,-0.5684359525330365,0.20248836372047663,-0.43285937048494816,-0.961828681640327,-0.7055552597157657,0.37339040311053395,-0.44753488432615995,0.8990146084688604,-0.6489115380682051,-0.6133013335056603,0.7113296808674932,0.3486871081404388,0.47811197442933917,0.4484431012533605,-0.16279992554336786,0.8432594737969339,0.6660488485358655,0.3712016069330275,-0.18969118781387806,0.005402473267167807,-0.46637289272621274,-0.40959472488611937,-0.13877117168158293,-0.48807589523494244,-0.6454104329459369,0.7749865059740841,0.1269109328277409,-0.11463283654302359,0.5076078847050667,-0.6346182860434055,-0.36210900638252497,0.32656482933089137,-0.297821594402194,0.5480116987600923,0.9911735653877258,0.6511066015809774,-0.5480197621509433,-0.397419863846153,-0.912659811321646,0.7407448724843562,0.5483303042128682,0.5381330903619528,-0.03279218403622508,0.19275568472221494,-0.8694986472837627,-0.6290573519654572,-0.5196210858412087,0.49264316307380795,-0.2673440151847899,-0.37431546300649643,-0.6566391484811902,0.7597472346387804,-0.716627842746675,0.7782778674736619,-0.9533533016219735,0.40987010253593326,-0.1649040672928095,-0.7342940689995885,-0.977282356005162,-0.14321963442489505,0.7400424857623875,-0.32999124750494957,-0.5658354577608407,0.24947679601609707,0.314617604482919,-0.7043231832794845,0.21209378354251385,0.7245971453376114,0.9554874203167856,-0.6429492859169841,0.01948406593874097,-0.7624308452941477,-0.004635907243937254,-0.28144948184490204,0.38729722797870636,-0.06002629594877362,-0.677093353588134,0.9498495771549642,-0.03638213546946645,0.16657466581091285,-0.08684188174083829,0.29322678688913584,0.24126776028424501,-0.6632437566295266,-0.4332811897620559,-0.9541898034512997,0.22648912807926536,-0.6108071869239211,-0.5924482392147183,-0.5173622099682689,0.5961311855353415,0.7827361691743135,-0.9739116509445012,0.12387730926275253,-0.295673131942749,0.06423562671989202,0.7936363825574517,-0.9366573360748589,-0.5571417836472392,0.8088516443967819,0.0076626138761639595,0.29345243889838457,0.6199624924920499,-0.35782311437651515,-0.8280692584812641,-0.6955602183006704,-0.7778009944595397,-0.33377473102882504,-0.5202220743522048,0.37479035183787346,-0.3996500172652304,-0.8562858127988875,0.6600874410942197,-0.6743432027287781,0.9924938580952585,0.33186822244897485,-0.2923697652295232,0.5441099433228374,-0.45482004014775157,-0.7591299288906157,0.5414181677624583,0.4067880641669035,-0.9889633310958743,-0.9621628685854375,-0.5959635283797979,0.5603633434511721,0.828088394831866,-0.1876455694437027,-0.9979518963955343,0.29990898817777634,-0.009566670749336481,0.06276675453409553,-0.2838257527910173,0.907856460660696,-0.19071374740451574,-0.39821008732542396,-0.0060296328738331795,0.23379876976832747,0.1227098791860044,0.04685345105826855,-0.6542209880426526,0.6369046317413449,-0.2963635791093111,-0.7392658730968833,-0.8473582905717194,0.8597994134761393,-0.5597876128740609,0.9039145424030721,0.9862042423337698,0.9661114267073572,-0.9148165318183601,0.06208329787477851,0.09095116052776575,0.10747509868815541,-0.7186468043364584,0.4040924911387265,0.46256483206525445,0.33670471934601665,-0.5709046595729887,-0.924493117723614,0.4838559697382152,0.8548899963498116,-0.16498018009588122,-0.10203574085608125,0.5835116058588028,0.31435880484059453,-0.7671894151717424,0.48988976096734405,0.10511854058131576,0.29224146669730544,0.17497061379253864,-0.6895013237372041,-0.9738270482048392,0.9577425559982657,-0.9348513563163579,-0.8480436480604112,0.8942597103305161,-0.8005688549019396,-0.6338190687820315,0.600491454359144,0.9719987669959664,0.7050155620090663,-0.649162333458662,0.1102030468173325,0.8826781329698861,0.8508648560382426,0.6909244507551193,0.4128673537634313,0.11781831085681915,0.2658765926025808,0.5524755152873695,0.8024172708392143,-0.795473022852093,0.48974262829869986,0.5677801496349275,-0.05831669457256794,-0.2796699986793101,0.13750775391235948,-0.6369074075482786,-0.9083300540223718,0.6859820792451501,-0.1233269078657031,0.5596680720336735,0.5553273670375347,-0.9344176007434726,-0.988041412550956,0.04636672092601657,0.7899911911226809,-0.4553594831377268,-0.8542198669165373,0.35885931411758065,-0.19755899207666516,0.5897528673522174,0.1861915015615523,0.25881158374249935,-0.7310828864574432,-0.3107282919809222,0.5215746778994799,0.501594359986484,-0.688176681753248,0.07122753001749516,-0.7650828831829131,-0.7769840331748128,0.22062025126069784,-0.8740629530511796,-0.5379179040901363,-0.204250892624259,-0.3925148546695709,-0.25274696946144104,0.08824073057621717,0.8565546781755984,-0.948643559589982,-0.534881186671555,0.5341031481511891,-0.3640613160096109,0.8062561857514083,-0.8657758897170424,0.18158634658902884,0.42512391367927194,-0.45385310985147953,0.45288914954289794,0.9666167278774083,0.8306696689687669,-0.5043405615724623,0.5908936373889446,-0.7461242214776576,-0.04772171704098582,0.5511572239920497,-0.28876067511737347,-0.9939331607893109,-0.7393820621073246,0.6687189238145947,-0.7888750107958913,0.4737356095574796,0.2058275043964386,-0.10744788078591228,-0.7401159405708313,-0.32870759861543775,0.5335470261052251,0.19484574999660254,-0.33997278148308396,-0.4079374489374459,0.5584989595226943,0.8571274429559708,0.23341825837269425,-0.847981452010572,0.7778505412861705,0.9050677921622992,-0.8804207141511142,0.8405030318535864,0.09268425684422255,0.5886670132167637,-0.36781725008040667,-0.02575147245079279,-0.361535067204386,0.37124062795192003,-0.5849126777611673,0.011516974307596684,0.611404306255281,-0.7162382830865681,-0.9105028752237558,-0.7822673451155424,0.7420270447619259,-0.7169808545149863,0.5608261455781758,0.11589595023542643,0.5718637900426984,0.4983893008902669,0.43544641602784395,0.6177728045731783,-0.17559170350432396,0.5096863019280136,0.6887636822648346,0.3227405622601509,-0.5542205655947328,0.6006116680800915,-0.7733954470604658,0.011104736011475325,-0.21023820154368877,-0.8569370517507195,0.48936977330595255,-0.8972094575874507,0.5951687493361533,0.8741894327104092,-0.12668910482898355,0.2966502304188907,-0.28470367612317204,-0.7648081821389496,0.3175820130854845,-0.8187987254932523,-0.09993226593360305,0.7793261292390525,0.394674239680171,-0.42452780064195395,0.4790086909197271,-0.1525098206475377,-0.9952409472316504,0.6169503214769065,0.6814025295898318,0.26974210189655423,-0.06307892315089703,-0.3557043164037168,0.2723949090577662,-0.8369797789491713,-0.44906317442655563,0.44716150825843215,-0.30330511927604675,-0.3985968390479684,0.34747091494500637,-0.31532798847183585,-0.09237023023888469,-0.8182583171874285,0.5137997181154788,0.38243379862979054,-0.16441480722278357,-0.4169144853949547,0.2904947432689369,0.6830531288869679,-0.5629300610162318,0.9480476398020983,-0.6690925355069339,0.3389962683431804,-0.3417760864831507,0.2583669093437493,-0.49259127071127295,0.9747787113301456,-0.34372922079637647,-0.8947876645252109,0.08096544304862618,0.24181682104244828,0.23651461768895388,-0.4008745630271733,-0.3294105236418545,0.43271391093730927,0.9521293817088008,0.5565396584570408,0.4315998200327158,0.3307693428359926,0.6298016770742834,-0.6470537534914911,0.1298709292896092,-0.5138966520316899,-0.49518699385225773,-0.5255300640128553,0.5527859153226018,0.7916936757974327,-0.12184059666469693,-0.2600130024366081,0.7034189132973552,0.14216758450493217,-0.5823148279450834,-0.2900556344538927,0.5015384345315397,-0.11083753919228911,-0.10749700106680393,-0.027349865064024925,-0.8995125014334917,-0.48994269827380776,0.32561996346339583,-0.513165820389986,0.8877552449703217,-0.5250360113568604,0.1417790362611413,0.5148410173133016,0.8325557536445558,0.3503717756830156,0.5472047864459455,-0.8927780226804316,0.1649387264624238,0.6686295187100768,0.8804046120494604,0.8775877519510686,-0.6095447433181107,0.6506282584741712,0.2824894189834595,-0.9259637254290283,-0.8301101229153574,0.578451270237565,0.26473460625857115,-0.6482119001448154,-0.5130385500378907,-0.4626110061071813,0.6348057962022722,-0.4310466470196843,0.6223269533365965,-0.23885962273925543,-0.8609485933557153,-0.6113923559896648,-0.3009447786025703,-0.4891888936981559,0.7320898813195527,-0.24538200115785003,-0.48384300991892815,-0.2519941972568631,-0.054768886882811785,-0.30751172406598926,0.72680759197101,0.7642372520640492,0.6747369468212128,0.017957398667931557,-0.6292792507447302,0.6320145959034562,-0.2306787190027535,0.2807481293566525,-0.832593722268939,-0.04839774640277028,0.44642983144149184,-0.5032462580129504,-0.34215010004118085,-0.7698698081076145,0.23482936713844538,0.5139040905050933,0.37684033578261733,-0.5645394446328282,-0.5815446558408439,0.9773823483847082,-0.7160630193538964,0.8664976432919502,-0.495800101198256,0.6198688596487045,-0.5553289321251214,-0.8885313696227968,0.4974964358843863,0.05402839323505759,-0.9991416102275252,-0.2556616570800543,0.5360133210197091,0.5435581374913454,0.41497452137991786,-0.949080403894186,0.010566417127847672,-0.4243992776609957,-0.09824574459344149,-0.778381266631186,0.15402896469458938,-0.4145092158578336,-0.38721981924027205,-0.9058447913266718,0.3195193368010223,-0.014029253274202347,-0.7513338881544769,0.616508113220334,0.9213597099296749,0.24293220695108175,-0.8114877948537469,0.1748676267452538,0.25930586364120245,0.5613811700604856,0.7847825437784195,-0.075383679009974,-0.6028863661922514,0.9959749411791563,-0.4305534930899739,-0.7552186553366482,0.5826312941499054,-0.5076477490365505,0.7910495330579579,-0.7400406934320927,0.21121176797896624,-0.7586030657403171,0.4236424998380244,0.0004896861501038074,0.2732138610444963,0.8045256952755153,-0.01753312861546874,-0.15480390563607216,-0.6851907577365637,-0.3067026985809207,-0.5507578225806355,0.06200169771909714,-0.8301733713597059,-0.48861988820135593,-0.1593230376020074,-0.16946365172043443,0.8582318625412881,-0.766217325348407,-0.8515344001352787,-0.9223189777694643,-0.9129145219922066,0.3799373428337276,-0.9147309469990432,0.7730439859442413,0.07742865988984704,-0.5494026155211031,-0.4225904420018196,0.5820722552016377,0.450903651304543,0.7323655192740262,-0.09500297671183944,-0.8905664435587823,0.9652914041653275,0.42799114901572466,-0.5907286242581904,0.5629739789292216,0.2204561671242118,0.16715903347358108,-0.8144486406818032,-0.6765792998485267,0.4558856408111751,0.5985340354964137,-0.5496181645430624,-0.19160036789253354,0.6890089786611497,-0.8800758887082338,-0.17188632674515247,-0.5786114949733019,-0.07663053646683693,-0.38538910588249564,0.4726390363648534,0.02976832026615739,-0.8500847727991641,0.7991130617447197,-0.40557347424328327,-0.507872502785176,-0.10800675908103585,0.5871987068094313,-0.9893167754635215,-0.8184868898242712,-0.008016474079340696,-0.8655204460956156,-0.7359277405776083,0.3776416168548167,-0.5140442769043148,0.2844894719310105,-0.7543183621019125,0.14658876275643706,-0.8962104339152575,-0.9276407416909933,0.5018613450229168,-0.26395505061373115,0.25858446955680847,0.6748678791336715,-0.1427775793708861,0.29846111219376326,0.27852101949974895,-0.15164852002635598,-0.5937287034466863,-0.660276907030493,-0.14233383629471064,-0.11043824814260006,0.5464574624784291,-0.37342380126938224,-0.21222745953127742,0.7205349043942988,0.4660447812639177,-0.38934973534196615,0.8422119179740548,0.4536226508207619,0.016985645052045584,0.9580597151070833,0.9948211926966906,0.8867605072446167,-0.37387590715661645,-0.7560497019439936,-0.5482794465497136,0.6651806812733412,0.8682911465875804,0.0907568009570241,-0.9172257082536817,0.24910804443061352,0.4737301734276116,-0.42057301849126816,-0.5271029844880104,-0.5011418401263654,0.8618216286413372,-0.8845404665917158,-0.06747012166306376,-0.4015007894486189,-0.32545297546312213,0.04465821152552962,-0.2623253841884434,-0.002187416423112154,-0.9055797150358558,-0.6453334731049836,-0.2265982418321073,-0.5641708308830857,-0.479888039175421,0.183266157284379,0.1256501628085971,-0.34203490568324924,0.30258144345134497,-0.8857067744247615,0.06585891963914037,0.28173188446089625,-0.38547261198982596,0.8380620912648737,-0.24023466976359487,-0.11201974656432867,0.4752691639587283,-0.24248136673122644,-0.5287269242107868,-0.24887721287086606,-0.3845798699185252,0.14275728957727551,-0.003533079754561186,-0.8522080108523369,0.06082844315096736,0.9460284672677517,-0.5380533346906304,0.21842692606151104,0.2595414472743869,-0.21874780533835292,-0.1131669944152236,-0.07336658658459783,-0.4551762752234936,-0.7430831878446043,-0.7219796157442033,-0.4486167603172362,0.5717695984058082,0.3549993233755231,-0.12296579638496041,0.06678146682679653,0.3913096534088254,-0.5616743969731033,0.19206077232956886,-0.2964503737166524,0.5749650201760232,0.7125521139241755,0.5415952117182314,-0.45087790256366134,0.130019536241889,-0.5274266782216728,0.6538525894284248,0.7950951871462166,-0.569303719792515,0.5222311299294233,0.4246315420605242,-0.6822330537252128,-0.28019838500767946,0.5489685526117682,-0.9844684917479753,-0.9871667213737965,-0.5831790640950203,-0.12047506961971521,-0.19188852841034532,-0.06875550001859665,-0.41786990500986576,-0.728206301573664,-0.8961613494902849,-0.952144727576524,0.35942143527790904,0.5416363603435457,0.5849119229242206,-0.03665353450924158,-0.23875586362555623,0.8651534370146692,-0.16996113769710064,0.14502933993935585,0.5369000318460166,0.14856934361159801,-0.2454353361390531,0.47480469662696123,0.02040276862680912,0.45079844584688544,-0.16882434440776706,0.9560558185912669,0.35882956860587,0.03638347378000617,-0.8725852966308594,0.0969888074323535,-0.5010168324224651,0.974790679756552,0.07863036682829261,-0.3999956059269607,-0.44522509817034006,0.21237324783578515,0.29092043824493885,0.7599781458266079,0.8472512508742511,-0.5362680209800601,0.4062040108256042,-0.9101039748638868,-0.5421717399731278,-0.8648308324627578,-0.27563914097845554,-0.03566745575517416,0.5154914478771389,0.7006649500690401,0.9057073672302067,0.78815151238814,-0.2436354593373835,-0.571515457239002,-0.3247521352022886,0.30161317018792033,0.3808974828571081,0.3609955068677664,-0.24527490278705955,0.060074737295508385,-0.4879542957060039,0.6768295466899872,0.434752750210464,-0.5325593487359583,-0.574577949475497,0.7184018190018833,0.4087354950606823,0.42092722887173295,0.133290761616081,-0.6352786212228239,-0.25126914074644446,0.7349262177012861,0.3424671939574182,0.4082037890329957,0.9608058230951428,0.9708071942441165,-0.014154442586004734,0.3455630918033421,-0.9323829337954521,-0.7071908516809344,0.4626190746203065,0.6367009738460183,0.11563337966799736,0.31867397809401155,0.762358452193439,0.07993912184610963,0.8267017658799887,-0.3977963547222316,-0.5762433405034244,-0.5391540443524718,0.036196579691022635,-0.1478301864117384,0.6285182815045118,-0.8696001335047185,0.8945243437774479,-0.37852747971192,0.8773021423257887,0.6114998953416944,-0.5731454584747553,0.8161884746514261,-0.3267321605235338,0.4875780544243753,0.5764852929860353,0.5069148456677794,-0.3380410438403487,-0.7490747235715389,-0.1859565693885088,-0.28283501556143165,0.367363128811121,0.10828035045415163,0.8819841607473791,-0.21061790641397238,0.2889337739907205,0.602888145018369,0.0732799107208848,-0.18013546336442232,0.756253756582737,0.9434348735958338,0.8498460236005485,-0.8388806045986712,0.6752814301289618,-0.6682839803397655,-0.1512337583117187,0.32417863979935646,-0.9507292965427041,0.5455862497910857,-0.779908562079072,-0.09150071535259485,0.03838364453986287,0.11150061525404453,-0.6327345678582788,0.37824150873348117,-0.2417398146353662,-0.8217866248451173,-0.23731283750385046,0.316556541249156,0.6409420655108988,-0.4768555467016995,0.09728753427043557,0.8679047883488238,0.4267193488776684,-0.6750122318044305,-0.06922680791467428,-0.0013329540379345417,0.4305422022007406,-0.800301618874073,0.6422515865415335,-0.8177278158254921,-0.1026997184380889,0.36701125046238303,0.2378667057491839,0.9799392833374441,-0.05901813041418791,-0.5037478567101061,0.8261991972103715,0.13884717877954245,-0.10052909050136805,-0.36310203839093447,-0.45651583559811115,-0.9595558065921068,0.26886684680357575,-0.9943133890628815,0.1323182350024581,-0.37869739485904574,-0.1935261031612754,0.10550079168751836,-0.8310981951653957,-0.06409495836123824,0.8581550605595112,-0.6559439864940941,-0.35279482835903764,-0.906893331091851,-0.07163137942552567,0.5400596521794796,0.4548557144589722,-0.7280136267654598,0.7336094002239406,0.6105426792055368,-0.9035385446622968,0.04827108420431614,0.5445282142609358,-0.014465682674199343,0.3548001986928284,-0.18251315597444773,0.891856740694493,-0.24887210223823786,0.1339051858521998,0.6501348786987364,0.9591921856626868,-0.82763433130458,0.3292404618114233,-0.7699862383306026,-0.5833836882375181,0.2778762117959559,-0.23101323656737804,-0.5925593399442732,-0.4505658852867782,0.1258640242740512,0.6007387670688331,0.5989446518942714,0.7455624309368432,-0.4822952733375132,-0.692596576642245,0.1998776593245566,-0.631319506559521,0.9325871141627431,-0.8788983984850347,0.8227064586244524,0.5392219158820808,0.36183844646438956,0.14137124735862017,-0.297405784483999,-0.26997892325744033,0.05158026097342372,0.5045543182641268,0.7707419442012906,0.18111904291436076,-0.890691910404712,0.9754067873582244,-0.9048481909558177,0.8281960869207978,0.38003482623025775,0.936254077591002,-0.085091691929847,-0.9565557176247239,0.09035275224596262,-0.6636033011600375,-0.12499703792855144,0.26811836613342166,-0.124589201528579,0.8641176261007786,-0.35865166783332825,-0.14062297204509377,-0.5986105566844344,-0.13481425819918513,-0.5384648735634983,0.12405121698975563,-0.5980088897049427,-0.10817465698346496,-0.8816561745479703,0.8778408318758011,0.01230189111083746,-0.5045319353230298,0.8525674198754132,0.9818704235367477,-0.1963588995859027,0.7492281445302069,-0.4819340743124485,-0.40683570643886924,0.5296511985361576,0.7930622133426368,-0.6004794803448021,0.005699021276086569,-0.41204239893704653,-0.3103539193980396,-0.8029779079370201,0.07817304786294699,-0.283628745470196,-0.04186375206336379,-0.4672427773475647,-0.43043585773557425,-0.7072005225345492,0.8522218335419893,-0.7115002158097923,-0.29111233120784163,-0.7573498953133821,0.1164047890342772,0.633164188824594,-0.08970802603289485,0.13540283730253577,0.3940131003037095,-0.7583127063699067,-0.29242786578834057,-0.33120056008920074,0.5011186744086444,0.9569379230961204,0.4454675861634314,0.2162551572546363,-0.06554034305736423,0.1745111532509327,-0.7908439761959016,0.6127468403428793,0.7031488930806518,-0.5105816312134266,0.5839246320538223,-0.24632607074454427,-0.40819009533151984,0.23608814785256982,0.6195898321457207,0.05339176720008254,-0.7622234337031841,0.8257835595868528,-0.6792013449594378,0.12959428038448095,0.7563910321332514,-0.3450290556065738,0.6376465288922191,0.5394714483991265,0.91717997379601,0.40009867772459984,0.2746493495069444,0.4374055596999824,0.19285761751234531,0.8186056707054377,0.9240962602198124,0.8385645211674273,-0.5960457446053624,0.5675762286409736,0.35159374633803964,0.3280095439404249,-0.4686758923344314,0.1213795063085854,0.7098379698581994,-0.514080342836678,0.02078920789062977,-0.15336668491363525,0.47043320862576365,0.7013306324370205,-0.26888059079647064,0.38701123697683215,-0.8237375905737281,0.6567404349334538,-0.04839204903692007,-0.561178938485682,0.2726601557806134,-0.03750705160200596,0.517991067841649,0.8732284242287278,-0.4855421190150082,0.750499508343637,-0.7893712245859206,0.38528918009251356,-0.4479564419016242,-0.24036149587482214,-0.74160047294572,0.46736564161255956,0.47343098279088736,-0.7997934776358306,-0.46671811025589705,0.6422947687096894,-0.1961199976503849,0.9965553632937372,0.6955668055452406,0.9078618166968226,-0.6244379645213485,-0.9821960339322686,0.15349760092794895,-0.8028283952735364,-0.7956238333135843,-0.4991419203579426,-0.35019538551568985,0.6932498635724187,0.6848692982457578,-0.28596679773181677,0.1078362432308495,-0.5272067706100643,-0.437112448271364,0.015428933314979076,-0.3783481065183878,-0.8851897353306413,0.6475577815435827,0.5681068170815706,0.34655367536470294,-0.6726276576519012,0.8939994229003787,-0.2803498092107475,-0.8574659279547632,0.8313714470714331,0.6645854539237916,-0.8210155488923192,-0.5972719984129071,0.39482465805485845,-0.056694465689361095,-0.2175321918912232,-0.27615277701988816,0.0667940266430378,0.11823065439239144,0.9369646143168211,0.7373745106160641,-0.8678029444999993,-0.24257104424759746,0.5398568864911795,-0.2672506948001683,-0.3666178663261235,0.7401361060328782,-0.505399479996413,0.28033327497541904,0.9241269552148879,0.8612272362224758,-0.5650419159792364,0.8429918517358601,-0.8523366190493107,-0.6078283851966262,-0.9334725672379136,0.8863733196631074,0.18595940992236137,0.2796203619800508,0.558284227270633,0.9594587287865579,0.9552539684809744,0.25495149148628116,0.0967298811301589,0.9721356658264995,0.8698800909332931,-0.2521635959856212,-0.046036845073103905,0.022845580242574215,-0.49184846691787243,0.4013137686997652,0.47317564859986305,0.3415644830092788,0.5458487020805478,-0.6212519342079759,-0.41406595753505826,-0.8104523760266602,0.6961325285956264,0.830528776627034,0.5645116721279919,-0.8460699385032058,-0.701399827376008,-0.5207015788182616,-0.8427297086454928,-0.050104640424251556,-0.342393827624619,0.5106414691545069,0.6428548875264823,0.9666188764385879,-0.4336630329489708,-0.889115977101028,-0.8787108049727976,0.39465521974489093,-0.8840816053561866,-0.32027720799669623,0.5260367831215262,0.4858959778212011,0.4515624223276973,0.4893391355872154,0.02129712188616395,0.20009376108646393,0.06662953598424792,0.14904855284839869,-0.11484262440353632,-0.6614816598594189,0.233304132707417,-0.12605458265170455,-0.844824992120266,0.957953323610127,-0.37903924752026796,0.7435442125424743,-0.7791152843274176,-0.9623854379169643,0.581810737028718,0.5635186387225986,0.9545665485784411,0.8931656898930669,0.26989402947947383,-0.18809341033920646,-0.7234463775530457,-0.8491036402992904,0.9573271097615361,-0.9602974303998053,0.22181510366499424,0.1151138967834413,-0.0276587987318635,-0.006771503482013941,0.6856728726997972,0.8098909934051335,-0.775883971247822,0.5230191671289504,-0.15630903840065002,-0.35393734322860837,0.10877935169264674,0.7132471399381757,-0.31309401616454124,-0.2564487219788134,-0.5053133056499064,-0.022648609708994627,-0.8329262346960604,-0.5744643392972648,0.4671081928536296,0.3076756210066378,-0.456507823895663,0.5015424867160618,-0.7480887775309384,0.10859563201665878,0.4176911232061684,0.17933267913758755,-0.07516379840672016,0.008306634612381458,0.4309431160800159,-0.5621410291641951,0.5666739218868315,0.5263475030660629,0.8997571454383433,0.9663618952035904,0.3341559814289212,-0.23287539882585406,0.9511740892194211,-0.9733866113238037,0.2644649911671877,-0.7574117979966104,-0.3433502963744104,-0.11698268027976155,-0.3011076180264354,-0.8325633225031197,-0.08136939536780119,-0.06751960515975952,-0.6242690738290548,0.2498112367466092,0.47047032602131367,-0.08301197737455368,0.023052977863699198,0.9684768826700747,-0.5654163495637476,-0.11656510690227151,0.9930963180959225,-0.7285942402668297,0.4528398346155882,0.39195385249331594,0.17332952469587326,-0.9447389310225844,-0.6698133866302669,-0.5588837452232838,0.891960805747658,-0.9873238066211343,-0.5864494275301695,-0.7003836021758616,0.3597914082929492,-0.13434984209015965,0.4098150748759508,0.9712583557702601,0.6469095437787473,-0.6951543712057173,0.04629356041550636,0.7908684648573399,-0.6329551539383829,-0.6615855474956334,-0.3270080457441509,0.16072667809203267,-0.6619832240976393,0.9951326018199325,0.002324504777789116,-0.8539787488989532,-0.8588017323054373,0.3354157670401037,-0.47866780310869217,0.5091548613272607,0.7900240467861295,0.30415430711582303,-0.643447978887707,0.18024440156295896,-0.9034764929674566,-0.01762482849881053,0.7425357173196971,0.6989949089474976,0.8575051794759929,-0.3921730085276067,-0.4183208243921399,-0.6119633577764034,-0.22349169990047812,-0.5276994514279068,-0.6292799599468708,-0.21731858979910612,-0.15760843083262444,-0.6855758829042315,0.5620117685757577,-0.7380362320691347,-0.24867783952504396,-0.13479275861755013,-0.6738784839399159,-0.04568433854728937,0.9397641899995506,0.3540446902625263,-0.9457263015210629,0.45095500722527504,0.9786250228062272,0.7736771027557552,-0.5954445493407547,0.2815614817664027,0.1082772589288652,-0.9113203575834632,0.4883969221264124,-0.6110011232085526,0.7242487706243992,-0.3239403385668993,0.06374817760661244,0.005679608788341284,-0.4444599566049874,0.5014862567186356,0.4272638070397079,0.760902448091656,-0.4612916614860296,0.7393716732040048,-0.3530826033093035,-0.6912230206653476,-0.40179806016385555,-0.10640844935551286,-0.7692075702361763,0.9127487852238119,-0.1350125763565302,0.8313960363157094,-0.9343094658106565,-0.11904450226575136,-0.03582100244238973,0.21062585478648543,-0.6623991085216403,0.9306864822283387,-0.6630058917216957,0.27867556270211935,-0.9859395176172256,0.23185157729312778,-0.17406382877379656,0.36898205894976854,0.1594037995673716,-0.35318992706015706,-0.17323532747104764,-0.02093328908085823,-0.9061585385352373,-0.6538380044512451,0.699009726755321,0.35231180395931005,-0.2279722518287599,-0.2087600906379521,-0.7581432396546006,-0.17010286450386047,0.4209636249579489,0.16399656794965267,-0.06127068540081382,0.46585602033883333,-0.0686841681599617,-0.8594411448575556,0.06223765015602112,0.393311261665076,-0.39031574921682477,0.3111924100667238,-0.8845844101160765,-0.355613152962178,-0.0660032401792705,0.9641394102945924,-0.5376456780359149,-0.5391971585340798,0.057627324014902115,0.9518363396637142,-0.9898927183821797,0.6632955344393849,0.2336498755030334,-0.7370616719126701,-0.9728241767734289,0.8322254819795489,-0.6600196417421103,0.17554297903552651,0.1086972183547914,-0.9004781674593687,-0.9050955683924258,-0.9166644457727671,-0.030814260710030794,0.08833201695233583,0.4050240181386471,0.0019843727350234985,0.4592591035179794,-0.17586289765313268,-0.9436150598339736,-0.8406046382151544,0.4869302869774401,0.7245221151970327,0.5058381231501698,-0.24923823168501258,0.41431434033438563,0.4726812243461609,-0.13385994778946042,-0.2293480490334332,-0.8509643389843404,0.3759751389734447,-0.3746513365767896,0.4704691036604345,-0.6279682167805731,-0.3179404907859862,0.8071070862933993,-0.6996047012507915,-0.22949042124673724,-0.5385301504284143,0.2646141992881894,0.11143951397389174,-0.9276816658675671,0.14086650544777513,0.29935292806476355,0.43695204332470894,-0.2992350202985108,-0.19563032826408744,0.6247743326239288,-0.2729249191470444,-0.8684430592693388,0.46189636178314686,0.025314136408269405,0.8801394812762737,0.2954145851545036,0.29542440734803677,0.8780557522550225,-0.827281582634896,0.9439759468659759,-0.9406909863464534,0.11723546124994755,-0.8142790873534977,-0.4454064560122788,-0.7744674258865416,-0.1151382508687675,0.34469471080228686,-0.05026279482990503,-0.7007419890724123,-0.017939236480742693,0.49773524096235633,-0.6036999826319516,-0.32043215027078986,-0.4270986267365515,0.31734187388792634,0.8241218286566436,0.7409818307496607,-0.16413740627467632,-0.5655001252889633,-0.2633594353683293,0.44880019733682275,-0.9692612336948514,-0.9559773723594844,-0.2911088732071221,0.9428493068553507,-0.484900233335793,-0.5023632957600057,-0.871042946819216,-0.9423222206532955,0.9227449907921255,0.2159320400096476,0.6603126535192132,-0.6241719834506512,0.0069935740903019905,0.3161108326166868,-0.044758526142686605,-0.7868603109382093,-0.18101674923673272,0.290665527805686,0.7180798482149839,0.40386598091572523,0.8743613208644092,0.5066460138186812,0.6281886799260974,0.33637489611282945,-0.20705312397331,-0.7424346338957548,0.5990984067320824,0.5593128320761025,-0.08209005743265152,0.7370907422155142,-0.6827755193226039,0.2643704474903643,-0.20496856654062867,0.19379570288583636,0.2649168991483748,-0.9394598328508437,-0.5273601687513292,-0.5254294271580875,-0.5306773292832077,-0.7789316046983004,-0.4962096461094916,-0.9376090602017939,-0.018336439970880747,-0.14805574249476194,-0.7042975160293281,-0.9972115410491824,-0.8150691203773022,0.23646730789914727,0.2229170948266983,-0.6923987469635904,0.35164975794032216,-0.5888461912982166,-0.45707262586802244,-0.5429537491872907,0.5876561896875501,-0.8236654326319695,0.9492166824638844,-0.9802976194769144,-0.9018867444247007,0.0973351332359016,0.6628698017448187,-0.13833984592929482,0.051851700991392136,0.5436689113266766,-0.6208868906833231,-0.3684117519296706,0.2381926686502993,-0.04029636597260833,0.6067507024854422,0.8938362742774189,-0.5263036997057498,-0.8847035928629339,0.44248998956754804,-0.6636795862577856,-0.8879999807104468,-0.155045494902879,0.17292308574542403,-0.8099105400033295,0.27416506176814437,-0.3729185895062983,-0.4418872855603695,-0.5698935431428254,-0.07584655610844493,0.44143313728272915,-0.04555892292410135,-0.3521409002132714,0.9668412473984063,-0.5502979662269354,-0.2772878552787006,0.4692379427142441,-0.9971377677284181,-0.5830688429996371,-0.8834232636727393,-0.9544414631091058,-0.8111155652441084,0.9819317176006734,-0.4263218785636127,0.9341742470860481,-0.5152520318515599,0.2214467767626047,-0.8268657866865396,-0.057950851041823626,0.036482509691268206,0.4661791264079511,0.8905292083509266,-0.42505214363336563,-0.3123783082701266,-0.40458993148058653,-0.1868843985721469,0.27816956862807274,-0.6587427444756031,0.011548424605280161,0.41337584191933274,-0.7100000497885048,-0.7628775415942073,-0.649786923546344,0.18421354657039046,0.03729519387707114,0.6843950781039894,-0.17583230836316943,0.1760419961065054,0.8565150341019034,0.4314498617313802,-0.169791960157454,-0.30702265817672014,0.19027950102463365,-0.5520503236912191,0.40467032603919506,-0.638830428943038,-0.1869179317727685,-0.5417423662729561,0.9341559056192636,0.1669241883791983,-0.06884113606065512,-0.07135309232398868,-0.8229764639399946,0.2913756472989917,-0.18113096477463841,-0.5036136647686362,0.36107722111046314,-0.00838189572095871,-0.7274912483990192,0.060079462360590696,0.8101252638734877,-0.811957536265254,-0.12334406701847911,0.3131520110182464,-0.03475606394931674,0.8717173226177692,0.6653559510596097,0.053629760164767504,0.005255832802504301,-0.047819741535931826,-0.9836586276069283,0.13649439625442028,0.5426786602474749,0.6360558550804853,0.1397670558653772,-0.6353740557096899,0.6620923550799489,0.3130321232602,0.844783419277519,0.8096501622349024,0.5104955965653062,-0.18844654317945242,-0.7238386478275061,-0.8179836762137711,0.7074233978055418,-0.26874642027541995,-0.11176299629732966,-0.554131634067744,0.7120545357465744,-0.014634243678301573,0.3298748452216387,0.17131390143185854,0.46007364243268967,0.8316155844368041,0.024956598412245512,0.840363728813827,-0.052013246808201075,0.48428552132099867,-0.880802190862596,-0.6569129782728851,0.3788917800411582,-0.5264481650665402,0.3790526567026973,-0.6615282129496336,-0.7879659296013415,-0.296870534773916,-0.3154468098655343,0.4832787658087909,-0.4819315066561103,-0.33733389526605606,0.906324656214565,-0.6482770116999745,0.4840096337720752,-0.19172841636464,0.7004439369775355,-0.5812532310374081,0.6798583907075226,-0.8842101162299514,-0.3985820119269192,-0.1575269247405231,0.1656117239035666,0.27142986888065934,0.6209553987719119,0.16188810020685196,0.8573749298229814,0.5557631221599877,0.9825868704356253,-0.946435873862356,-0.685382654890418,0.34152305591851473,-0.7714787484146655,0.7101964191533625,-0.7561759711243212,0.27886395435780287,0.9121110485866666,-0.5185547065921128,0.19797215098515153,0.21836688462644815,-0.3042725073173642,-0.08061023242771626,-0.16019876580685377,-0.507194243837148,0.3829547557979822,0.665236156899482,-0.412598610855639,0.6920597734861076,0.3884216216392815,0.9401429952122271,-0.5990813374519348,-0.6897482709027827,0.22741766972467303,-0.44587095780298114,0.45518967788666487,-0.7034507058560848,0.38967353384941816,-0.7563999444246292,-0.6220425609499216,0.7312039565294981,-0.923174412921071,-0.9831935781985521,-0.8724907576106489,0.003982164431363344,-0.2293378347530961,0.5577562055550516,0.6217160746455193,0.29834986105561256,0.9987666020169854,0.34741886239498854,-0.3008471168577671,0.18678022222593427,0.6518420693464577,0.8476163754239678,-0.24541278975084424,-0.7418728368356824,-0.4318395699374378,-0.8734268713742495,0.12453920859843493,-0.9943556059151888,0.5805182820186019,-0.7688458599150181,-0.8722305777482688,-0.26720747724175453,-0.41899689892306924,0.5761488266289234,-0.20650605903938413,-0.4801276824437082,0.16746364440768957,-0.635663250926882,0.06117098731920123,-0.7981790113262832,0.8929537944495678,0.9795397366397083,0.34678542148321867,0.1607850966975093,0.5385786034166813,-0.42747197672724724,-0.3842804441228509,-0.12000994943082333,0.6903244410641491,-0.9897641846910119,0.9868079097941518,0.14058001386001706,-0.6089521683752537,-0.7426240863278508,-0.4415184371173382,-0.31595096504315734,-0.2717450293712318,-0.515447377692908,0.11452651815488935,0.2868101657368243,0.39158329647034407,-0.3818927640095353,-0.8865478616207838,0.6264534364454448,0.34380800696089864,-0.6989485253579915,-0.6315110074356198,-0.2974305055104196,0.662468081805855,-0.7882713982835412,0.6504978062584996,-0.15729150921106339,-0.46696927957236767,0.7093635881319642,0.7810505265370011,0.2452627015300095,-0.7391097899526358,-0.4696736610494554,0.8022413668222725,0.7427844693884254,0.006238502915948629,0.12391133792698383,-0.09222929878160357,0.9540607603266835,-0.2663619164377451,-0.7760525238700211,-0.32800431782379746,-0.8538175937719643,-0.22262700367718935,0.7273099212907255,-0.7936866809614003,-0.25449345726519823,-0.036538608837872744,-0.21913067204877734,0.7240432668477297,-0.5576989674009383,0.016047880053520203,-0.9057905948720872,-0.6138920583762228,-0.984771088231355,-0.7781755528412759,0.5080570746213198,-0.939181987196207,0.18013098556548357,0.05978382099419832,0.5263700340874493,0.9689582525752485,-0.4598358259536326,-0.8222179659642279,-0.6526705166324973,0.9597422578372061,0.921457476913929,-0.6964868633076549,-0.8672273433767259,-0.9063245495781302,0.8784465449862182,0.8939866940490901,-0.8452667356468737,-0.16372759453952312,0.8494661888107657,-0.4653740366920829,-0.48034761333838105,0.7287675878033042,0.9672678420320153,-0.023048882838338614,-0.7187430891208351,0.46356367878615856,0.9358196370303631,-0.7605296801775694,0.5791578916832805,-0.47739493381232023,0.4635738003998995,0.5643219123594463,-0.3471955466084182,-0.26605960074812174,0.5625347159802914,-0.3732413132674992,0.827564843930304,-0.1880390541628003,0.8100562915205956,-0.8479854799807072,0.2889242833480239,0.7120957719162107,-0.5630570170469582,-0.48372301552444696,0.5771814011968672,0.8041516253724694,0.2310107983648777,0.37587908236309886,-0.4975902959704399,-0.8490165560506284,-0.926153989508748,-0.9674691595137119,-0.013704079668968916,0.5963369938544929,-0.19142333744093776,0.8541487134061754,0.9330211719498038,-0.14970366517081857,-0.3393794107250869,0.41283572278916836,0.2609391240403056,0.24394750222563744,-0.37314064940437675,-0.4384876424446702,-0.1208629752509296,-0.47505212761461735,-0.9472270607948303,-0.8983155032619834,0.21991517348214984,-0.9928480302914977,0.8406471512280405,0.9794096620753407,0.5559333725832403,0.7776068546809256,0.033510387409478426,0.5415833299048245,-0.3442017761990428,-0.9975692392326891,-0.8207000913098454,-0.3581963567994535,-0.565842087380588,0.02929516788572073,0.4979105405509472,-0.12449538661167026,-0.31569028832018375,0.020765652414411306,0.01987593248486519,-0.11565362196415663,0.9633998041972518,0.7096585342660546,-0.03005686169490218,-0.5837158914655447,-0.12384201306849718,0.08943825820460916,0.197401974350214,0.35152867203578353,-0.9741394682787359,0.20430976944044232,0.7855137991718948,-0.05154398502781987,0.6138109448365867,0.26779917906969786,0.80856065871194,-0.5805870112963021,0.617616203147918,-0.7296377848833799,-0.6643179929815233,-0.6383782629854977,0.05949159059673548,0.700418193358928,0.004435354843735695,0.06034868909046054,0.4589968272484839,-0.3901861025951803,-0.0725983064621687,0.2639946760609746,0.589185128454119,-0.757182152941823,0.40070780040696263,-0.018621647264808416,-0.1474763141013682,-0.8280946514569223,-0.9864870025776327,-0.4764002123847604,-0.6077145664021373,0.9912394941784441,0.9395059086382389,-0.8195315380580723,0.042008310090750456,0.3292772378772497,-0.7239372888579965,0.21470919717103243,0.5508121866732836,-0.6018446255475283,0.9308836348354816,0.26732498314231634,0.8833057307638228,-0.9063448468223214,-0.008216960355639458,0.011499375104904175,-0.10295068332925439,0.9533966025337577,0.8593026068992913,0.7185225528664887,-0.9509007553569973,0.12000878946855664,-0.9273192477412522,0.6518082581460476,-0.7847962789237499,0.43575323885306716,-0.30073972046375275,0.14898613188415766,0.70939183793962,0.5470089451409876,0.43556424230337143,-0.3163610529154539,-0.4641190832480788,0.9558251216076314,-0.9766588136553764,0.7254959549754858,-0.8752317489124835,0.0483039659447968,-0.4385633282363415,-0.6099952282384038,-0.08188981004059315,0.4771553445607424,0.5648776353336871,0.9866109141148627,-0.460529547650367,-0.6222763452678919,-0.09395509213209152,0.032442720141261816,-0.23269534157589078,-0.6476359134539962,-0.27963262936100364,0.2898901659063995,-0.09829779760912061,0.12232458917424083,0.05036906013265252,0.0008318913169205189,-0.061460236087441444,-0.799810478463769,-0.3794018621556461,0.5869629080407321,0.7305540069937706,-0.685064229182899,-0.44111777655780315,0.12490784330293536,-0.37991335801780224,0.26219885190948844,-0.319501887075603,0.42150117782875896,0.6300882128998637,-0.8046064754016697,0.8677992504090071,-0.28766589099541306,-0.9086692896671593,0.7039165343157947,-0.28077125921845436,-0.33891169214621186,0.4145142324268818,0.5609467169269919,-0.31444833194836974,-0.42206516629084945,-0.07126772589981556,-0.5947298686951399,0.42851630970835686,0.42609947407618165,-0.0001337132416665554,0.7641529864631593,-0.8392729084007442,-0.48275798186659813,-0.5645649675279856,0.8916309187188745,-0.27444705832749605,0.5002269842661917,0.025902832858264446,-0.19313125358894467,0.712763823568821,-0.1966233435086906,-0.15525972936302423,-0.20836831582710147,-0.18661817023530602,-0.40482167387381196,0.08345345454290509,-0.7393846483901143,-0.3529846384190023,-0.6656279028393328,-0.1254481989890337,-0.7595842238515615,-0.20336335431784391,0.15845747850835323,-0.4330067387782037,0.47164702881127596,-0.20745046203956008,-0.14023345988243818,-0.39536650758236647,-0.22297424310818315,0.5512829823419452,0.26737394696101546,0.9274440873414278,0.5071904617361724,-0.08099438343197107,-0.5818412327207625,-0.0730581465177238,0.3670417070388794,-0.5398643990047276,0.6625183634459972,-0.6511573600582778,0.49106030026450753,-0.10767993470653892,-0.08678464498370886,-0.5166583796963096,0.914696279913187,0.375573115888983,-0.7743469127453864,0.009106185752898455,0.365304843056947,-0.12167380843311548,0.15828998805955052,-0.5447286171838641,0.301693900488317,-0.6002421639859676,-0.316667222417891,0.9005097337067127,0.10790490312501788,0.5599618828855455,0.4331192411482334,-0.5609079003334045,-0.5721838031895459,-0.7220339542254806,0.9134089695289731,-0.09440162219107151,0.3137257909402251,-0.47850587079301476,-0.7141686785034835,0.32988140545785427,0.9771027527749538,0.5122037976980209,0.6340967728756368,-0.8542777206748724,-0.620583807118237,0.022418220061808825,-0.6367002530023456,-0.011741667985916138,-0.14587145624682307,-0.8286881572566926,-0.7109233550727367,0.8537051733583212,-0.6349047403782606,0.5904910960234702,0.8074684678576887,-0.8602890074253082,0.6490913252346218,0.946920458227396,-0.9898461936973035,0.42219609720632434,0.3154638921841979,-0.9259165185503662,-0.3770660883747041,0.2836049385368824,-0.7743399064056575,0.20993142621591687,0.9710560832172632,-0.7483166721649468,-0.1076360889710486,-0.5693405284546316,-0.7113167541101575,-0.6380024496465921,-0.10719290701672435,0.823135799728334,-0.11536461161449552,0.4919412094168365,-0.12279046606272459,-0.06309356680139899,-0.550182435195893,-0.2729595168493688,0.5570342182181776,0.5392603860236704,0.5684586986899376,-0.6831153440289199,-0.3978524636477232,0.04828530503436923,-0.5038604722358286,0.40201001707464457,-0.3896610541269183,-0.09780859388411045,0.9837689958512783,0.3500275630503893,-0.21519757295027375,0.9413728998042643,-0.42467890214174986,-0.2367521971464157,-0.8111640810966492,0.2617753650993109,-0.9358281651511788,-0.14380139065906405,-0.00545667065307498,-0.3817396438680589,-0.08298538345843554,0.6713823648169637,-0.2073423322290182,-0.810244363732636,0.741702834609896,-0.12265521055087447,-0.541925739031285,0.09906383696943521,-0.49113774811849,-0.6904105171561241,0.8881510947830975,-0.3023518715053797,-0.6242149551399052,0.14107592357322574,-0.6998379756696522,-0.8651835806667805,0.28137510223314166,0.3221845403313637,0.851261583622545,0.25450890557840466,0.038628917187452316,0.7061835299246013,-0.05383072653785348,-0.5174023797735572,-0.9959195572882891,-0.6667307266034186,0.462463746778667,0.010427720844745636,0.13120093569159508,0.05558811780065298,-0.03060279507189989,-0.7308377549052238,-0.6628206502646208,0.6721375845372677,0.9370637875981629,-0.6281395289115608,0.999062831979245,0.6914132367819548,-0.040882907807826996,-0.28869129344820976,-0.6393363405950367,-0.056584654841572046,-0.6641810871660709,0.8316199779510498,0.8363738972693682,-0.5883738435804844,-0.032895912416279316,-0.30947073083370924,-0.21491942601278424,-0.20314778434112668,-0.8846182790584862,-0.9819578966125846,0.6741651524789631,0.2388279289007187,0.9055721508339047,0.9067953284829855,-0.4112852681428194,0.5594404195435345,-0.9422719851136208,-0.2352215894497931,0.5452062995173037,-0.7243741503916681,-0.6921503506600857,0.06392520060762763,0.8311022156849504,-0.7096240785904229,0.9655797304585576,-0.8398404200561345,-0.29265858279541135,0.3253098097629845,-0.14690365130081773,-0.8983315038494766,0.01785918604582548,0.6425325619056821,-0.507648270111531,0.9600348775275052,-0.6993494532071054,-0.08372139185667038,-0.1389259984716773,0.47739158384501934,0.10931419767439365,-0.27996455132961273,-0.6615982782095671,0.3927070675417781,-0.11771799763664603,-0.6959285936318338,0.8252374902367592,0.243515201844275,-0.7292231796309352,0.1506380126811564,-0.7583126462996006,0.8360570650547743,-0.7520036683417857,0.57377576129511,0.6272485228255391,0.8531928341835737,-0.006044918671250343,-0.7998468903824687,-0.9594846228137612,0.007301349192857742,0.7153483447618783,0.8021848779171705,0.2541874088346958,-0.8086976371705532,-0.10685078520327806,-0.3551520137116313,0.7568730595521629,-0.1378631223924458,-0.05395535519346595,0.6633592178113759,0.07216852530837059,0.7391355051659048,-0.5014496291987598,-0.4232642496936023,0.08736442727968097,-0.4969347221776843,0.030186181887984276,0.39149826765060425,-0.7297839848324656,-0.810696984641254,0.15028869966045022,-0.9436395149677992,0.644858471583575,0.9894415894523263,0.8557959902100265,0.6621173876337707,-0.11854291521012783,0.7709585968405008,0.9667921038344502,0.4483107035048306,0.6193339494057,-0.4811695097014308,-0.689322772435844,-0.9265793603844941,0.9617673507891595,0.5659712250344455,0.9041314353235066,-0.13580580987036228,-0.6165249715559185,-0.3345666043460369,-0.3011106322519481,0.36198623245581985,0.6992025589570403,-0.5611927565187216,-0.7720078085549176,-0.5699699921533465,0.9170739348046482,-0.8115442357957363,0.11244009714573622,-0.1298530688509345,-0.7006342671811581,-0.2050678003579378,0.4943278208374977,0.5374836227856576,0.3598507479764521,0.7251650528050959,0.037579820957034826,0.8500262652523816,-0.654628929682076,-0.3500710525549948,-0.27319576451554894,0.8146114642731845,0.5668121795170009,0.07774463342502713,0.7341678780503571,-0.8984801727347076,-0.5652933204546571,0.8842716976068914,0.8100005500018597,0.79451615922153,0.9577694027684629,-0.08675911417230964,0.028181175235658884,-0.7842576033435762,-0.4238367327488959,0.6949971094727516,-0.45826683286577463,-0.08789234235882759,0.19691260578110814,-0.4738069400191307,-0.11782631604000926,0.2803792152553797,0.6140006561763585,0.18567341472953558,-0.8869618251919746,0.943705840036273,-0.5728576704859734,-0.00037067942321300507,0.3982080668210983,0.7623796542175114,-0.9185770014300942,-0.4405972808599472,0.875567558221519,0.2958164564333856,-0.8769072247669101,0.9577575740404427,0.1725281705148518,0.023145131766796112,-0.15304602729156613,0.16082482552155852,0.43372098077088594,-0.018583633936941624,-0.5995142515748739,-0.9925376283936203,-0.40635818196460605,-0.2855882775038481,0.6709508080966771,0.24643424712121487,0.4697824432514608,0.9286669329740107,0.07257331209257245,0.4618869465775788,-0.057770589366555214,0.07386960973963141,-0.058968739584088326,-0.22268479270860553,-0.10828202310949564,0.13400598196312785,0.06596886506304145,-0.22996721090748906,-0.6741837128065526,0.6700295871123672,-0.4635958722792566,0.22513658087700605,-0.024102010764181614,-0.05948489112779498,0.36138439550995827,0.9931093654595315,0.2854775683954358,0.281215391587466,-0.9412333462387323,0.06572054559364915,-0.3090407270938158,-0.42035628063604236,0.645353835541755,-0.28349633049219847,-0.8122984585352242,0.3176717949099839,-0.8674286874011159,-0.5674554822035134,-0.7834148858673871,0.7099880119785666,-0.17559301154688,-0.2463249359279871,-0.44026902224868536,-0.10920664528384805,-0.10151060996577144,-0.5557653391733766,-0.32536127232015133,0.8952134121209383,0.9508926286362112,0.9601923259906471,0.9000384476967156,-0.8425258854404092,-0.8623147560283542,0.9784445324912667,-0.13192982878535986,0.12524389335885644,-0.8657591757364571,0.6399278407916427,0.8631089110858738,0.08311845548450947,0.18367243884131312,0.791000550147146,0.9619963215664029,0.16106098052114248,-0.6261917655356228,-0.4587171031162143,-0.0851152827963233,-0.5829844358377159,-0.25417314376682043,-0.610910905059427,-0.7620847821235657,-0.24111024988815188,-0.111238659825176,-0.9159994935616851,0.3592168800532818,-0.25965598318725824,0.2523334566503763,0.9855709220282733,0.2068044780753553,-0.052769528701901436,-0.4018828831613064,-0.8967223530635238,0.5603848611935973,-0.06684501841664314,0.9313762704841793,0.5578116723336279,-0.8418017118237913,-0.775220325216651,0.5648231762461364,-0.6808207649737597,-0.1466385363601148,-0.5285966685041785,0.7399250119924545,-0.9232004112564027,0.7346158754080534,0.9005389325320721,0.5688878954388201,-0.7529274118132889,0.09981544967740774,-0.5850632409565151,0.46330378018319607,-0.03633282985538244,0.08570268750190735,0.7647184575907886,0.9372335360385478,0.938589358702302,-0.9084129147231579,0.4250850393436849,-0.9587976923212409,-0.18288435507565737,0.33799160830676556,0.615621093660593,-0.9023865535855293,0.4901861250400543,-0.16308767534792423,0.988446906208992,-0.48523610504344106,-0.10531455790624022,-0.46341227320954204,0.41058886516839266,0.6655276431702077,0.29093160340562463,0.6075570448301733,-0.8842537421733141,-0.7336632278747857,-0.6904709348455071,-0.8236313825473189,-0.3692326103337109,-0.7723884205333889,-0.2869259063154459,0.2614201861433685,0.14012075727805495,-0.9396635731682181,-0.7218460380099714,-0.2947392212226987,0.38134091161191463,-0.7726770485751331,0.0673920027911663,0.437954087741673,-0.11066927248612046,-0.3499626670964062,-0.4094308475032449,0.8209292367100716,-0.4115862282924354,-0.4671516437083483,-0.8054027729667723,0.5359168006107211,0.6104548159055412,-0.4971310249529779,0.4626032314263284,-0.016985311172902584,0.6114541282877326,-0.19270988926291466,-0.18688281439244747,-0.17750394437462091,0.6568868416361511,-0.4612476034089923,0.056349397636950016,0.2667394648306072,-0.4148487620986998,-0.2951057287864387,0.9783028396777809,0.7621485837735236,0.15743910754099488,-0.2083716350607574,-0.37650653067976236,0.1960491887293756,0.5409997240640223,-0.1798765640705824,-0.027290733996778727,0.4350445466116071,0.0764474319294095,0.05206142691895366,-0.790140104945749,-0.005036449059844017,0.11876484798267484,-0.15587243065238,-0.32172324787825346,-0.6367725804448128,-0.8454147423617542,-0.46664254553616047,0.4768071980215609,-0.9931666441261768,-0.48085858719423413,-0.7016808157786727,-0.03923510201275349,-0.7128141815774143,-0.40087553346529603,0.10306451143696904,-0.6670066108927131,0.14758553868159652,0.2499227188527584,-0.8412919309921563,0.7225947291590273,-0.7430342761799693,-0.911108445841819,-0.11023028241470456,-0.0038138278760015965,0.7855180888436735,-0.8801528718322515,-0.5348837017081678,-0.7231422322802246,0.21984874550253153,0.6481874920427799,0.7574411318637431,0.9724789587780833,0.8991742264479399,-0.41954837273806334,-0.5123305702582002,-0.27643589675426483,-0.01239364268258214,-0.898031098768115,0.0871416456066072,0.5368598690256476,-0.6456254031509161,-0.8578105163760483,0.2183149247430265,-0.5786652090027928,0.16957808937877417,0.7466820008121431,-0.7822815598919988,-0.764923959504813,0.9378437492996454,-0.1396310031414032,0.18091863486915827,-0.7719309097155929,-0.5408068667165935,-0.2794806370511651,0.7874340317212045,-0.37979111075401306,0.5772100891917944,-0.5176115157082677,0.04487290279939771,0.3575677080079913,0.5531412805430591,-0.27631163876503706,0.5890772617422044,-0.7755014412105083,0.41095953108742833,-0.8014142634347081,-0.2678724699653685,-0.8787926658987999,-0.5569780287332833,0.8258087057620287,-0.8449155781418085,-0.060323156882077456,0.719641013070941,0.6367451483383775,0.21530158771201968,-0.03388080932199955,0.6811080714687705,-0.2508427673019469,-0.5991605841554701,-0.3353448431007564,-0.9465315202251077,0.5534001886844635,0.498753656167537,-0.17476894706487656,-0.7366724265739322,-0.3199866316281259,0.9893567650578916,-0.30872134305536747,-0.823914862703532,0.2557614892721176,0.29134386451914907,0.13639217149466276,0.27599574672058225,0.08298376714810729,-0.8807964529842138,-0.6813598428852856,0.34553843457251787,0.834892638027668,-0.46036204183474183,-0.5727954087778926,-0.5281145158223808,-0.9429634264670312,0.6315821912139654,-0.2835545348934829,0.030112520325928926,0.6902472651563585,0.623548960313201,-0.684641111176461,-0.6898706420324743,0.1854120772331953,-0.668959217146039,0.42926699900999665,-0.41646980633959174,-0.6526963389478624,0.48793884040787816,0.2730221073143184,0.8949866401962936,0.39855782501399517,0.9629086907953024,-0.02016255958005786,0.7980342512018979,0.30911274440586567,0.12045490276068449,0.25031683361157775,-0.7040565335191786,0.8517457651905715,0.08905479125678539,0.14433662593364716,0.10618187207728624,-0.7399495472200215,-0.3561346335336566,0.25679832650348544,-0.8104162313975394,-0.46513283159583807,-0.705428356770426,0.4157876861281693,0.686756394803524,-0.7563796150498092,-0.6986819365993142,0.3312597656622529,0.33625277085229754,-0.4381435248069465,-0.26761286286637187,0.18020713981240988,-0.7186708529479802,0.6464862623251975,0.5761112063191831,0.5332903251983225,-0.8177786446176469,-0.42853660322725773,0.48247407656162977,-0.13977956352755427,0.15664916718378663,0.842772837728262,0.19802110316231847,0.9680094169452786,-0.10014400677755475,0.5691628912463784,0.2529300609603524,-0.37016755575314164,-0.7032945570535958,-0.22882208647206426,-0.6553399618715048,-0.539458024315536,0.3914881688542664,0.8743343790993094,0.8848093617707491,-0.7628903011791408,-0.06814774917438626,0.7237113676965237,0.19625294068828225,0.5462401136755943,0.6487601837143302,0.2595858755521476,-0.7136581176891923,0.4851347580552101,-0.18185061309486628,-0.6021359199658036,0.6687938794493675,-0.08928957162424922,0.11440148763358593,-0.8103101081214845,0.8179942900314927,-0.9895406016148627,0.4887552415020764,0.16435615858063102,0.4317925195209682,0.7859615758061409,0.28292569192126393,-0.5277572749182582,-0.13138137245550752,-0.8055868213996291,-0.18547878647223115,-0.6913606398738921,0.6313953367061913,0.7325994316488504,-0.4486614800989628,0.8102481523528695,0.538391306065023,0.12115806806832552,0.36182115552946925,0.7699644272215664,0.6225446686148643,0.7433773847296834,-0.4155592708848417,0.784544715192169,-0.8698421129956841,0.22274556662887335,0.6628973307088017,-0.19096245942637324,-0.13334177248179913,0.11084745032712817,-0.5316800940781832,0.743872023653239,-0.7227276810444891,-0.8217071611434221,0.384309159591794,0.4163719080388546,-0.9912633774802089,0.4028456970117986,-0.05484073329716921,-0.6834727008827031,0.37781937373802066,-0.3658219133503735,0.3522697892040014,-0.06414858205243945,-0.24115655990317464,0.7785579576157033,-0.05212675966322422,-0.3633797289803624,-0.6018170863389969,-0.46946533815935254,-0.6231647012755275,-0.09593674959614873,0.8958914494141936,0.10764659941196442,-0.9480670331977308,-0.35867743752896786,-0.629348935559392,-0.563025978859514,0.3167442958801985,0.9075588388368487,-0.3038934553042054,0.6009050691500306,0.5774232530966401,-0.35810126550495625,0.731220961548388,0.7458468656986952,0.44923508912324905,-0.06076571065932512,0.06156887672841549,0.19679703237488866,0.8350463565438986,-0.3517596544697881,0.06304206559434533,0.18862299108877778,-0.5581957548856735,-0.07729841070249677,-0.3187693930231035,0.3703889390453696,0.978190413210541,0.36138184694573283,0.8307721177116036,-0.9647470340132713,-0.9702239171601832,0.9384872941300273,-0.08734128018841147,-0.9455969571135938,0.4914001920260489,-0.0558568830601871,-0.39315128792077303,0.9557716166600585,0.9082527351565659,-0.15070077497512102,-0.06314815627411008,0.33675810089334846,0.045588891953229904,0.5819740379229188,-0.6083476031199098,-0.10865097725763917,0.7952041197568178,0.3344216807745397,0.107308111153543,-0.38949999725446105,0.342426763381809,-0.8003492974676192,-0.2358299265615642,-0.7387720574624836,-0.536586080212146,0.5377121334895492,0.5045288614928722,-0.27133678551763296,-0.1108729369007051,0.7452297974377871,0.002580180298537016,0.11520807631313801,0.39161255676299334,-0.41435452410951257,0.09072001976892352,-0.8482923246920109,-0.8353792955167592,-0.9824407608248293,-0.9923254144378006,-0.7399613759480417,0.9904879662208259,0.9020154383033514,0.8935910263098776,-0.6854234775528312,0.31447875360026956,-0.8121180795133114,0.16903621330857277,0.8131656274199486,0.7534128841944039,-0.8944144784472883,-0.42009930312633514,-0.1441999883390963,0.9656016752123833,-0.11337938345968723,-0.3990780748426914,-0.6563555332832038,-0.9782086689956486,0.46657965471968055,-0.6740212324075401,-0.9802736612036824,0.5897960611619055,0.5183684816583991,0.13933510100468993,0.6066682212986052,-0.12911641504615545,-0.4776386050507426,0.5543787595815957,-0.7149851429276168,-0.30309452628716826,0.2531599453650415,-0.9061233680695295,-0.3917320198379457,0.05295566050335765,0.5811219327151775,0.48463978292420506,0.6853330708108842,0.2395501541905105,-0.94982421817258,-0.5651125255972147,-0.30460318038240075,0.33345614885911345,0.8279594471678138,-0.3871298907324672,-0.902386068366468,-0.23351490451022983,-0.4108300772495568,0.9677368267439306,0.4939529085531831,0.14865204831585288,0.310677838511765,0.5569392424076796,0.4362085280008614,0.9971389691345394,0.05911982525140047,-0.45302291586995125,-0.6366120739839971,-0.6861366513185203,0.5372007945552468,0.04831141559407115,0.1540699922479689,0.7827052213251591,0.9987066420726478,0.6021274053491652,0.9142358805984259,-0.19709962885826826,-0.6536565548740327,-0.5939327795058489,-0.7037787018343806,0.615398061927408,-0.4668867699801922,-0.04455643007531762,0.554693337995559,0.04852577485144138,0.16542543517425656,0.8114721183665097,0.41724414890632033,-0.17039939248934388,-0.30186058208346367,0.12303190724924207,-0.3174138884060085,-0.5623399196192622,0.4849779917858541,-0.14923248393461108,-0.878516108263284,0.8995381332933903,-0.4326456799171865,0.9603264178149402,0.4985610148869455,0.7470255163498223,0.5284377634525299,-0.6309543643146753,-0.2661007805727422,-0.11133012408390641,0.8779849470593035,0.2993238982744515,0.7484720940701663,0.5663207536563277,-0.623312755022198,-0.26707451324909925,0.3941325503401458,-0.5756974653340876,-0.8222351269796491,-0.3175206179730594,0.10367326997220516,0.8756802356801927,-0.7766834162175655,0.8966783760115504,0.944834771566093,0.9420132250525057,-0.9580202871002257,-0.5505895363166928,0.6718341326341033,-0.236214985139668,-0.8647475745528936,0.44254560489207506,-0.9004593198187649,0.22850320022553205,0.07496418850496411,0.7005870901048183,0.942573462612927,-0.7875446868129075,-0.5141607951372862,0.7473878748714924,0.6074728756211698,0.44087701942771673,-0.11962785432115197,-0.030723409727215767,0.8623347198590636,-0.30114666698500514,0.09731024177744985,-0.41745241824537516,0.7174399718642235,0.4374007876031101,0.2202598019503057,0.09416675614193082,0.0658125919289887,0.13438888965174556,0.7962269424460828,0.996431231033057,-0.30301502672955394,-0.5833058026619256,0.17813267325982451,-0.7623327760957181,0.5302674984559417,-0.34957542829215527,0.005381936673074961,0.0005563679151237011,-0.017461850307881832,0.3298074477352202,0.49433317268267274,-0.041551371570676565,0.996789334807545,-0.2998078693635762,-0.39286346873268485,-0.881919945590198,-0.07185124233365059,0.45371383614838123,0.5962400464341044,-0.2803532416000962,-0.21411599405109882,0.16366494726389647,0.11308379843831062,-0.00297992629930377,-0.8353741527535021,-0.6503874864429235,0.13552710553631186,-0.9199166717007756,-0.6086954949423671,-0.20607995009049773,-0.255760514177382,0.8282663356512785,0.7341583627276123,-0.13754297839477658,0.23078831657767296,-0.8992540063336492,-0.670965033583343,0.6148007824085653,-0.2612950038164854,0.856699394993484,0.9165349705144763,0.07591262646019459,0.23058859119191766,-0.8452339367941022,0.3416953394189477,-0.78976766532287,-0.3967385748401284,0.2956079887226224,-0.9431214146316051,-0.9330909238196909,-0.17237600544467568,0.8467013062909245,0.761531928088516,0.5991305373609066,0.6188538018614054,0.26334977615624666,-0.1970324874855578,-0.8073922591283917,-0.054618585389107466,-0.6877046460285783,-0.6932856542989612,0.09581766603514552,0.8787557021714747,0.4663552572019398,-0.003413618076592684,-0.6751566827297211,0.4425130970776081,-0.8410215373151004,0.031276531517505646,0.7713154875673354,-0.02233120333403349,0.5754545913077891,0.5005670441314578,0.2924131453037262,-0.5276409774087369,0.33710653986781836,-0.5044016120955348,0.6939325835555792,-0.24204856483265758,0.4540214533917606,0.36047454131767154,-0.142519096378237,0.2471459684893489,-0.30436280835419893,-0.8653079336509109,0.5512729794718325,0.2259747409261763,0.4348272131755948,-0.2703912672586739,0.46305469051003456,0.6469916705973446,-0.38204350462183356,-0.36061398312449455,0.3923431420698762,0.3876564111560583,-0.4435897767543793,-0.2963050822727382,-0.6665317905135453,0.15154689503833652,-0.19302329886704683,-0.42537618381902575,0.3777903034351766,0.35946983797475696,0.7363191535696387,-0.36172920372337103,-0.5340445945039392,-0.8620194820687175,0.43635853845626116,0.13439479703083634,-0.9085078644566238,-0.5002672807313502,-0.2675912342965603,-0.5318959979340434,0.8255853117443621,0.31737931026145816,-0.6915999269112945,-0.7159895817749202,-0.8963361480273306,-0.5093280076980591,-0.3246641238220036,0.9039699458517134,-0.9092154488898814,-0.1702220211736858,-0.9670290602371097,0.004022055305540562,0.9988290197215974,0.7572928699664772,-0.3711964460089803,0.032532654237002134,-0.5625562751665711,-0.025916340295225382,-0.732036828994751,-0.15638738544657826,0.8273291066288948,0.7051740582101047,-0.11267994530498981,-0.045911163091659546,0.7563211289234459,-0.5160089619457722,-0.5133463456295431,0.8452162332832813,-0.2871024711057544,0.3609324977733195,-0.6715986458584666,-0.3278298485092819,-0.4469543653540313,-0.8129901331849396,0.6535009248182178,-0.45914272125810385,-0.32848420459777117,0.4581851423718035,0.7563399071805179,0.6262933267280459,-0.09234064165502787,-0.40381226874887943,0.6550566419027746,-0.3260990222916007,0.49210464349016547,-0.22317378455772996,-0.012118769343942404,0.42500725388526917,-0.21837195241823792,-0.2212267778813839,-0.1815707767382264,0.8172920970246196,0.005007928237318993,0.3418552204966545,-0.9450679467990994,0.12461293349042535,-0.6946044019423425,-0.7530801654793322,0.18134473636746407,0.6090284390375018,-0.6392420060001314,-0.4284174577333033,0.48092473205178976,0.8887073281221092,-0.25756566086784005,0.4064816562458873,-0.26913053821772337,0.542142721824348,-0.9999439623206854,-0.28070414531975985,0.4591308836825192,-0.573783665895462,-0.42877936037257314,-0.08889665547758341,-0.600882085505873,-0.424032224342227,-0.34830943308770657,-0.21418329793959856,-0.5671875583939254,-0.40323659451678395,0.06422299845144153,0.16253405436873436,-0.07404614705592394,0.013173366896808147,-0.24440164305269718,0.6824994287453592,-0.8021809230558574,-0.07169862650334835,-0.9600043734535575,0.6797461328096688,-0.9708737256005406,0.013366953935474157,-0.910202348139137,0.2560912515036762,0.5962154013104737,0.9523670952767134,-0.7200262802653015,-0.7585972128435969,0.4463618444278836,-0.5862877275794744,-0.9186607259325683,0.20327972201630473,0.35284977965056896,0.9016036754474044,-0.29107642313465476,-0.8901111292652786,-0.19651669962331653,0.6264316341839731,0.23375783115625381,0.5947720659896731,0.7237508450634778,0.7071454869583249,0.8729196903295815,-0.39045321429148316,-0.7955622407607734,-0.9637497533112764,-0.40015025436878204,-0.5183896501548588,-0.08367135329172015,-0.3609546818770468,0.07942611631006002,0.4471714049577713,0.501247335691005,-0.5604756809771061,0.9660251718014479,0.6121338200755417,0.23388532921671867,-0.21785330586135387,-0.6711812219582498,-0.8624445223249495,0.10558484168723226,0.8273208071477711,-0.453745951410383,0.9842281290329993,-0.1130531788803637,0.31187397986650467,0.4664392122067511,0.27906493842601776,0.7800250621512532,-0.5450693815946579,0.013831241521984339,0.3211511420086026,-0.36230712104588747,0.1273390161804855,-0.7070574895478785,0.9319646242074668,-0.43121259612962604,0.4789019846357405,0.14540912210941315,0.6443982110358775,0.044073102064430714,-0.8257195660844445,0.7695137555710971,-0.38446111837401986,0.49955458380281925,-0.2707590698264539,0.4124314528889954,0.07280658651143312,0.19836049573495984,0.08590603107586503,-0.2994071003049612,-0.10144978249445558,-0.9183944868855178,-0.6300800093449652,-0.2601541159674525,0.3393243672326207,-0.043328889179974794,-0.054229351691901684,-0.11186019284650683,0.8228293024003506,0.23152377596125007,-0.08858111081644893,-0.4293101173825562,-0.42725468147546053,-0.4774069250561297,-0.7366713648661971,0.2833389639854431,-0.30508195608854294,-0.3783426219597459,-0.303347444627434,0.0052737705409526825,0.6756381075829268,0.4192256615497172,-0.3561426233500242,0.7418589857406914,-0.41042688582092524,-0.5214431369677186,0.3930595791898668,-0.6907081608660519,0.9901717551983893,-0.2458017384633422,0.5727922986261547,0.3009063280187547,-0.9445519195869565,0.5840792814269662,0.9839495550841093,-0.46020347252488136,-0.4286251263692975,0.11695201229304075,0.6220375131815672,-0.6953207240439951,-0.1792279239743948,-0.4441942535340786,-0.8176298243924975,-0.5172134838066995,0.1010759905911982,-0.4591512284241617,0.46948773274198174,0.6450269818305969,-0.7960896119475365,0.44304947229102254,0.31961245741695166,-0.09403049200773239,0.6181050883606076,0.019707671366631985,0.7102357069961727,-0.024488086812198162,-0.08931804308667779,0.17516019940376282,-0.9877121523022652,-0.22868717648088932,-0.4922615266405046,0.7140661836601794,0.9703820077702403,0.7672015279531479,-0.043379196897149086,-0.13975563365966082,-0.6326841432601213,0.3873479184694588,0.6261668531224132,-0.8187415259890258,0.8139117625541985,-0.8579581147059798,-0.06146339466795325,0.0034316787496209145,0.9925595573149621,-0.6371360374614596,0.7193871694616973,-0.5045546651817858,-0.2299662414006889,0.7723943926393986,0.312913098372519,-0.3628614558838308,0.20880804490298033,-0.6694097383879125,0.4911046423949301,0.6992261237464845,-0.9456509961746633,-0.24111280729994178,-0.6859759804792702,0.011257687117904425,-0.806179023347795,0.38903954438865185,-0.45225108368322253,0.00040679890662431717,0.6169635513797402,0.11365582188591361,-0.6099687898531556,0.4905204218812287,0.907999305985868,-0.2477206247858703,-0.9853248209692538,-0.2341064722277224,0.5831538294441998,-0.4853099468164146,0.3297347705811262,-0.45859624864533544,0.8968789516948164,-0.6060334146022797,-0.2639278592541814,0.8946066694334149,0.1703193886205554,-0.801637155469507,-0.9499626383185387,0.35357552161440253,0.04549742350354791,0.5340373450890183,-0.13410581182688475,0.6080336794257164,0.19087915029376745,-0.20054610772058368,-0.7876465115696192,-0.6678128112107515,0.5329218138940632,0.5740460478700697,0.9795990074053407,-0.968444247264415,0.8596835588105023,0.09185569267719984,0.40755862509831786,0.36191067611798644,-0.7805584170855582,-0.28632059087976813,0.49404403381049633,-0.998284530825913,0.39799501141533256,-0.7396264835260808,-0.7383935377001762,0.2932301191613078,-0.30759972985833883,-0.39854793157428503,-0.7222756934352219,0.5989521141164005,0.9438829184509814,-0.2048779120668769,0.12819612957537174,0.41893611662089825,0.64031996531412,-0.14338700287044048,0.1809537042863667,-0.45646964060142636,0.4231575159355998,0.9207944269292057,0.5400112015195191,-0.1959955794736743,0.5979836569167674,0.8034965307451785,-0.8955389480106533,-0.6272303746081889,-0.36125701619312167,0.4164298907853663,0.81061369786039,0.07143854815512896,0.7025961270555854,0.947689441498369,-0.3384932545013726,0.9301602025516331,-0.21970342518761754,0.5863196104764938,0.14306870801374316,-0.09807343455031514,-0.5270991534925997,-0.14333820529282093,-0.42583857476711273,0.30066931853070855,0.33461956633254886,-0.8982463176362216,-0.060236116871237755,-0.9559263153932989,-0.2901809620670974,0.43159829126670957,-0.1521038510836661,-0.16444699745625257,-0.8094492172822356,-0.8928901902399957,-0.6470544636249542,0.9069277001544833,0.41766509180888534,-0.7245362321846187,-0.6718520359136164,-0.3789202431216836,-0.5286956066265702,0.21102715050801635,0.6472176662646234,0.8253898206166923,-0.15820719813928008,-0.609962044749409,0.847590358927846,0.7480699946172535,0.9139883709140122,0.16952549573034048,0.6515992414206266,0.5391730843111873,-0.8575539481826127,-0.03609740175306797,0.5201306962408125,0.07336378982290626,0.07437652349472046,-0.29758277209475636,0.5371658164076507,0.3954981337301433,0.6882282965816557,-0.5199596122838557,-0.18634051689878106,-0.39423640724271536,0.705302941147238,0.6092183655127883,0.8361676437780261,-0.36301820259541273,-0.787380572874099,-0.2146299695596099,0.7594908815808594,-0.9565762155689299,-0.037791501730680466,-0.8362876940518618,-0.6495706741698086,-0.5504840589128435,-0.5156929297372699,-0.9063532296568155,0.5479031894356012,0.5109425941482186,-0.9602702581323683,-0.8447800190187991,-0.572354469448328,-0.02566478168591857,0.39751968579366803,0.9005486238747835,-0.5979723939672112,0.5348360762000084,0.8658701553940773,0.8040731684304774,-0.9129647882655263,-0.2935179863125086,0.7669360120780766,-0.34908553399145603,-0.5515309674665332,0.17225454514846206,-0.15377370454370975,0.7520482302643359,0.0628469199873507,0.1347839110530913,0.2664182335138321,0.2743243551813066,0.9544432871043682,0.24957912927493453,-0.8976739887148142,0.8932314356788993,0.8838947894982994,-0.305636209435761,-0.7955878935754299,-0.3191268411464989,0.18672228092327714,-0.9444224084727466,-0.6500265789218247,-0.47439606161788106,-0.2497253119945526,0.11482391878962517,0.2212092219851911,-0.7356556416489184,0.054223360028117895,0.023810880724340677,-0.952602896373719,-0.707514654379338,-0.7941119056195021,-0.15415149042382836,0.7080426872707903,-0.37862528767436743,-0.25982456654310226,-0.14329475862905383,-0.906127464491874,-0.5748904692009091,0.5214997371658683,-0.7120610047131777,-0.8871620814315975,0.10390149662271142,0.896227553486824,-0.7586284475401044,-0.809684197884053,0.6199831543490291,-0.5922989011742175,-0.36948609817773104,0.6521115903742611,0.014931290410459042,0.04968205792829394,0.8274501287378371,-0.2957949102856219,-0.8183153020218015,-0.6097973375581205,0.7634069318883121,-0.836222754791379,0.01721447240561247,0.8881735024042428,-0.014914820902049541,0.38248823350295424,-0.24055377673357725,0.27309023682028055,0.19144477881491184,-0.986576677300036,-0.6874179746955633,-0.9153837691992521,0.2998312348499894,-0.8308609868399799,-0.6887268861755729,-0.47725414810702205,-0.167688790243119,0.6962519213557243,-0.3996894131414592,0.911408397834748,-0.919441947247833,-0.14190373942255974,-0.8639043509028852,0.2922652503475547,-0.3325548321008682,-0.7854136293753982,0.7058317014016211,0.43796055018901825,0.6444642897695303,0.2476299754343927,-0.4325975808314979,0.4000494605861604,0.9364166264422238,0.5841973647475243,0.3223929014056921,0.9281095056794584,-0.7296929033473134,0.4704489656724036,0.39592312183231115,0.8314557387493551,-0.14260512916371226,0.13521005725488067,0.00832805735990405,-0.725707839243114,0.3621947350911796,-0.7956306091509759,0.24044000823050737,-0.22232233406975865,0.848683119751513,0.3938466105610132,0.40782470209524035,0.44468604773283005,-0.21858647512272,-0.6605223687365651,-0.7671118434518576,-0.5762864304706454,0.2163842343725264,-0.7823742171749473,0.04972325265407562,-0.502853608224541,0.7544404766522348,0.84621970821172,0.029116248711943626,-0.8112028813920915,-0.7949130102060735,-0.14751344360411167,-0.665285097900778,0.749874500092119,0.6670972835272551,-0.7495470442809165,-0.747721420135349,-0.11213174182921648,0.7480591121129692,0.9496373985894024,0.5614482187665999,0.4809781643562019,-0.5647545061074197,-0.8462342261336744,0.6367660812102258,0.8527181288227439,0.20151005871593952,-0.3643171894364059,-0.7418344202451408,-0.2281643794849515,-0.1970311221666634,0.13562140334397554,-0.21904292609542608,-0.3484979788772762,0.24496684316545725,-0.06803593318909407,0.2818956971168518,-0.29151902347803116,-0.3169412692077458,0.3330293083563447,0.6786850080825388,0.38087835162878036,-0.9858476687222719,-0.5753994309343398,0.9514480968937278,0.7171183489263058,0.3252566787414253,-0.6081776767969131,0.0640390831977129,0.775405709631741,0.831926366314292,0.7506881370209157,0.8008384304121137,0.43514096504077315,0.6564459423534572,0.64062345540151,-0.7894318629987538,0.4329427103511989,0.18602035706862807,-0.4845833471044898,0.1611947286874056,0.23713646875694394,-0.12147509539499879,-0.9006997845135629,0.11385099217295647,0.016335122287273407,-0.5326852854341269,-0.31331086764112115,0.8625347786583006,-0.7706814552657306,0.2239278508350253,0.3069893638603389,0.04576987633481622,-0.8077757311984897,0.493874738458544,-0.9804818192496896,0.050659090746194124,0.5731121446006,0.40827864268794656,-0.22680985648185015,-0.009239566512405872,0.32030111411586404,0.7833338086493313,-0.7303988593630493,-0.6519372635520995,0.7627126988954842,-0.8432397143915296,-0.08723234524950385,0.3443679139018059,0.49688484240323305,0.9284008154645562,0.7609642343595624,0.6121570421382785,-0.23649624967947602,0.1313496120274067,-0.4467645506374538,0.9627072801813483,0.42553889052942395,-0.48386458260938525,-0.5455232290551066,-0.5639165272004902,-0.859667556360364,0.992855450604111,-0.07903819950297475,-0.7068215808831155,0.9881778205744922,-0.41427115723490715,-0.1567157255485654,-0.6062953569926322,0.16610500682145357,-0.5469441418536007,-0.3672181135043502,-0.7648090817965567,0.3174590696580708,0.9778931802138686,-0.8318169000558555,-0.9773892210796475,-0.9261131705716252,-0.9686395358294249,0.7556896121241152,0.36938383849337697,0.1505353720858693,0.5997828803956509,0.708375935908407,0.4030162557028234,-0.06262652203440666,-0.6588957509957254,-0.21300547802820802,0.8954809070564806,0.8346749367192388,-0.4171855435706675,-0.5739938588812947,-0.59023222560063,-0.5764068714343011,0.1313995155505836,0.1320274998433888,-0.20541835809126496,-0.5821370650082827,-0.08779484545812011,0.4593920325860381,-0.33277643844485283,0.20706349657848477,-0.7270382051356137,-0.3174007781781256,0.30424678744748235,0.7190805557183921,-0.9323014938272536,0.4035698315128684,-0.1553915310651064,0.9303411329165101,0.38833700912073255,-0.9878704757429659,0.4809233103878796,0.35905185574665666,-0.7052491358481348,0.2837226423434913,0.8959978418424726,0.7418467486277223,0.7203680244274437,0.9202093770727515,0.3113068607635796,-0.3646638598293066,-0.45064272778108716,-0.4117534873075783,-0.15800544619560242,0.36612256430089474,-0.6757364254444838,0.07320938259363174,-0.6083212834782898,0.03935354249551892,-0.7057353663258255,-0.9004664332605898,0.6849151342175901,-0.26231492683291435,-0.4278392866253853,0.28354307962581515,-0.5204352643340826,0.6188205978833139,0.7799406489357352,-0.14209902053698897,0.60985410772264,-0.7835810361430049,-0.9321752162650228,-0.28201570687815547,-0.0077296956442296505,0.6745657068677247,-0.4907282395288348,-0.4895987040363252,0.1156143806874752,0.5219310317188501,0.14194761775434017,-0.1388227972202003,0.38908853894099593,0.7490052469074726,0.8754534013569355,0.8390684402547777,-0.3220858802087605,0.6904349774122238,0.6973442160524428,0.5365997888147831,-0.17204750748351216,-0.35776034696027637,-0.444050807505846,-0.08230403484776616,-0.4472201280295849,-0.6143146175891161,-0.47676662961021066,0.29028946394100785,-0.32004768354818225,0.4387604766525328,0.6377011849544942,-0.4255004492588341,0.12673702649772167,0.634263685438782,-0.43823876325041056,0.7906730673275888,-0.10572464438155293,-0.943156342022121,-0.7341831563971937,0.13138020411133766,0.24764904333278537,0.11943823657929897,0.2717022360302508,-0.05923718772828579,-0.9287580805830657,-0.16211489494889975,0.3558977977372706,-0.09828153625130653,0.4068988561630249,-0.7028108695521951,-0.6319353808648884,-0.7469428624026477,-0.6086181295104325,-0.4807659420184791,-0.2547635710798204,-0.2233316246420145,0.10192331951111555,-0.59237274620682,0.26582306483760476,-0.8833630923181772,0.658705654554069,0.8121018083766103,0.003333818633109331,-0.025842152070254087,-0.11531502986326814,-0.08523841248825192,0.9275317243300378,-0.7408670973964036,-0.653449151199311,-0.26219195825979114,0.9475157768465579,0.8938749148510396,-0.44280197843909264,-0.1563699278049171,-0.9594544759020209,-0.06525002792477608,0.1561035541817546,0.2527532302774489,-0.3672299603931606,0.9346844265237451,-0.32299476116895676,-0.25908295810222626,0.9036634755320847,0.3305504936724901,0.8427488384768367,-0.9103201576508582,0.0026233228854835033,-0.17196838511154056,-0.45235112961381674,-0.14596090838313103,0.10081510059535503,0.7626892351545393,0.9538825731724501,0.6688538920134306,-0.8227062309160829,-0.8916949220001698,-0.5986120658926666,-0.4249380021356046,0.6378930495120585,-0.7650702316313982,-0.4319097772240639,0.39674460561946034,-0.45231153862550855,-0.12453379901126027,-0.3590223020873964,-0.16264179069548845,-0.4830983583815396,-0.07155567640438676,0.27291456144303083,0.4909958434291184,-0.13364693243056536,0.21880677249282598,0.1369879599660635,-0.6116328998468816,-0.7362411883659661,-0.501731367316097,-0.3615239728242159,-0.163830254226923,0.23909434862434864,-0.3632353520952165,-0.7112756129354239,-0.057544248178601265,-0.40609825355932117,0.9205728769302368,-0.8126008273102343,0.3193494491279125,-0.7523248447105289,-0.8807566305622458,0.76445072889328,-0.18443229096010327,0.8752387943677604,0.17860817909240723,-0.5798101951368153,0.32864822167903185,0.7177167604677379,0.8602247862145305,0.3531446452252567,0.9635371072217822,-0.30943441996350884,-0.07213255623355508,-0.8069693855941296,0.0250220806337893,0.9871547622606158,0.6389781441539526,-0.2174686803482473,-0.6341834701597691,0.9407367720268667,0.9085334590636194,0.02405326347798109,-0.1763143832795322,-0.6720110750757158,0.3910590070299804,-0.4437903454527259,-0.19234387297183275,0.10117832431569695,-0.41515961242839694,0.6448335815221071,-0.12883140100166202,0.5241481959819794,-0.9799318867735565,-0.8412495465017855,0.6212595188990235,-0.5939005496911705,-0.0988701730966568,0.7097455221228302,-0.07912204414606094,-0.6928646303713322,0.04841348389163613,0.1662741252221167,-0.637509002815932,-0.7332870704121888,-0.4872518517076969,0.06420018617063761,0.6059644734486938,0.033563104923814535,0.09846629993990064,0.7683090236969292,0.3846914232708514,0.7031260910443962,0.49027272034436464,-0.8645467227324843,-0.781111637596041,-0.4782226267270744,0.9196675242856145,-0.5137180858291686,-0.7732618129812181,-0.3047372871078551,-0.5373718356713653,0.5051262192428112,-0.3717662082053721,0.3720024321228266,-0.23180864145979285,-0.32566737243905663,0.6867693713866174,-0.9878170350566506,0.9175954256206751,0.37938215397298336,0.30276699224486947,0.3507575490511954,0.3015097947791219,0.030599346850067377,-0.9207353573292494,-0.5301241404376924,0.393574480433017,0.5089049246162176,-0.5571137997321784,0.832276601344347,0.7591223381459713,-0.3245481522753835,-0.8038951340131462,0.8716085641644895,0.15802552876994014,-0.11164923524484038,0.38968526292592287,0.2517343442887068,-0.7431078352965415,-0.7538771503604949,0.7263858839869499,0.6985892397351563,0.5965126380324364,-0.014922731555998325,0.22850514948368073,-0.5547609836794436,0.40401741117239,-0.28016519360244274,-0.8347812504507601,0.323811290320009,-0.17008191207423806,0.19174736877903342,-0.610573154874146,0.6804201067425311,-0.7973276535049081,-0.7209155554883182,-0.5286505771800876,0.8682005251757801,0.41008826391771436,-0.12336750375106931,-0.003550289198756218,0.694797778967768,-0.8570806058123708,-0.3039708435535431,0.5893567441962659,-0.6524561485275626,-0.9520930191501975,-0.32664890866726637,0.7961861244402826,0.8609672817401588,-0.19443815061822534,0.5246089594438672,-0.3200209899805486,-0.8495113006792963,-0.15274052741006017,0.11388872843235731,-0.9485624986700714,0.8277644505724311,-0.5735973808914423,0.4600315410643816,0.327214352786541,0.5511475335806608,-0.5423290091566741,0.5415267925709486,0.3923209006898105,-0.03903164202347398,0.43312283465638757,0.5834422027692199,0.3704993291758001,0.3003907445818186,0.7361786752007902,0.27413530880585313,-0.8214919897727668,0.6907829269766808,-0.6241890541277826,0.9571498460136354,0.7412653085775673,-0.5690642287954688,0.912548222579062,0.8442070945166051,0.03607207350432873,0.5500577357597649,0.4337050523608923,-0.5251416391693056,0.16720163822174072,-0.6013683960773051,0.7903849026188254,0.954374257940799,0.3031811402179301,0.6807835414074361,0.6204039263539016,-0.09670562809333205,0.39051024382933974,0.3182705221697688,0.7167651578783989,-0.984271367546171,-0.8160609728656709,0.776451448444277,0.05874599190428853,0.044326895382255316,-0.7142855529673398,0.6464270218275487,0.42542854882776737,0.21016082167625427,-0.7473264117725194,0.5601146882399917,-0.858415914233774,-0.7463437491096556,0.7097644088789821,0.017786899581551552,0.9565805802121758,0.1396680804900825,-0.651924854144454,-0.014481700491160154,-0.4497007639147341,0.7195641584694386,0.006187334191054106,-0.43657203018665314,0.47750359307974577,-0.923340373672545,0.545239363797009,-0.690557059366256,-0.5517196808941662,-0.7998657422140241,-0.7246753363870084,0.5304701682180166,0.6099659893661737,0.8605752233415842,0.28887975262477994,-0.7773054921999574,0.15629359800368547,-0.9333424512296915,-0.08323305705562234,0.09993495233356953,-0.09202083852142096,0.6422462668269873,0.9003360285423696,-0.8413237873464823,-0.8126140478998423,-0.21262256056070328,-0.5619297944940627,0.21365099400281906,-0.37059874599799514,0.4760179426521063,0.18906798586249352,-0.5970046259462833,0.5601479047909379,0.4382834630087018,0.33944489946588874,0.4538418147712946,-0.45606851670891047,0.06260069226846099,-0.529744113329798,0.1327371490187943,-0.6346941259689629,-0.5258011240512133,0.4003594983369112,-0.37403273209929466,0.19924126006662846,0.8035476501099765,0.2260022102855146,-0.8849603147245944,0.6855377885513008,0.9105478716082871,-0.7180216545239091,0.9067862182855606,-0.10472852131351829,-0.6322964853607118,0.8503885176032782,0.9841781822033226,0.4716785354539752,-0.394339497666806,-0.49195620510727167,0.8204962736926973,0.316173845436424,0.44294092524796724,-0.8291156282648444,-0.8683044076897204,0.8982974896207452,-0.016279018949717283,-0.8373427279293537,-0.5809926660731435,-0.038918128702789545,-0.4662581798620522,0.30268310662359,-0.9587559425272048,0.1940880175679922,0.0778751689940691,0.8023123424500227,-0.4143088925629854,0.821697358507663,0.03997911559417844,-0.2439785529859364,0.529552398249507,0.16233062092214823,0.056737428065389395,0.485540010035038,-0.6606999505311251,0.5749477753415704,-0.1756063038483262,-0.24680097680538893,0.9059543022885919,-0.046435799449682236,0.7155246413312852,0.6450494597665966,0.06810282310470939,0.632810344453901,-0.16846386482939124,-0.2125565679743886,-0.2653950727544725,0.4421287407167256,0.2779369307681918,-0.15397783881053329,0.5962456786073744,-0.26376813603565097,0.5396622871048748,-0.6842208397574723,-0.8923456920310855,-0.38110280176624656,-0.685884038452059,-0.1118188938125968,0.43044004868716,-0.21680859802290797,0.4580110479146242,0.05852245353162289,-0.7944695833139122,-0.27130561834201217,-0.10549776628613472,0.19596165185794234,0.9652285305783153,0.5675037535838783,0.3138360963203013,-0.0013328935019671917,0.14456386724486947,0.6713543678633869,-0.5114336567930877,0.4556156313046813,0.6876832908019423,0.01733037130907178,-0.4027729947119951,0.6231987457722425,0.5875052670016885,-0.3610096829943359,-0.10319401137530804,-0.9567242753691971,0.6440253853797913,0.21928631700575352,0.7358240615576506,-0.3787180329672992,0.8399743544869125,0.5196567685343325,0.23420050228014588,0.5212280042469501,-0.07346820877864957,-0.13322036480531096,0.007753900717943907,-0.2563431696034968,-0.20038181357085705,0.4572739088907838,0.10503663402050734,0.5599020840600133,0.7951149274595082,0.5901320585981011,-0.5245497380383313,-0.8522615758702159,-0.909428789280355,0.5110621503554285,-0.18501885887235403,-0.29128276370465755,0.4474157402291894,-0.004471364431083202,-0.19553434336557984,-0.4535025581717491,-0.009450519923120737,0.8950057849287987,0.2671648170799017,-0.555741639342159,0.3270618822425604,0.5167699446901679,-0.4404871556907892,-0.4489586711861193,-0.6751865646801889,0.5605337233282626,0.5340179465711117,-0.7733869645744562,-0.8653294271789491,-0.3062832271680236,-0.4509526900947094,-0.9761249972507358,0.25216358713805676,-0.9162945542484522,-0.7073446870781481,0.5423093382269144,0.7105839452706277,0.7128381999209523,-0.26958082197234035,0.41518528247252107,0.45654845563694835,-0.41745482105761766,0.9479270754382014,-0.17142870975658298,0.5987163782119751,0.6438479125499725,-0.502442610450089,0.5522573930211365,-0.260796585585922,-0.31120246183127165,-0.8017125967890024,-0.29815402161329985,0.4424836589023471,0.923827497754246,0.08885427191853523,0.14936482068151236,-0.9155958411283791,-0.9356750878505409,0.49475967371836305,0.5108241797424853,-0.9960740688256919,0.093337113969028,-0.13445124868303537,0.3209592537023127,0.8675083555281162,0.8958398881368339,-0.972692125942558,0.7603861810639501,-0.1286391713656485,-0.5559644973836839,0.08073531370609999,0.2943180366419256,-0.16853510681539774,0.04095688043162227,-0.8958561667241156,0.37169190868735313,-0.9805691009387374,-0.07816645409911871,0.30685245571658015,-0.9724571639671922,-0.748219745233655,0.41732622124254704,0.26370997773483396,-0.45003608940169215,0.3178787538781762,0.3276077127084136,-0.21705492492765188,0.17950402991846204,-0.9193450072780252,-0.8329764497466385,-0.6227650549262762,-0.4060748843476176,0.9440403487533331,-0.22855695895850658,0.498027800116688,-0.7200457667931914,-0.7179193058982491,-0.020382822956889868,-0.9400727874599397,0.8812738959677517,-0.3379748361185193,-0.28878410486504436,-0.8736678948625922,0.4399332352913916,-0.44700875598937273,0.9399252436123788,-0.737646862398833,-0.8126011099666357,0.1792108928784728,0.8980610463768244,-0.908135571051389,0.6038201581686735,0.5983604229986668,0.10088859824463725,-0.5336955720558763,-0.6274441131390631,0.5320715638808906,0.6100790938362479,0.6100492472760379,-0.6914175674319267,0.8804154666140676,-0.8859092993661761,0.07260741572827101,0.4518119446001947,-0.48559315502643585,-0.818443551659584,-0.9232904235832393,0.31566690327599645,0.07820020522922277,0.27955259615555406,0.20878761261701584,-0.3068555314093828,-0.1394941215403378,-0.11776044638827443,0.6857439996674657,0.7862108536064625,-0.18224861100316048,0.35604190779849887,0.08162539592012763,-0.818640448153019,-0.4823187766596675,-0.6370062483474612,-0.6740814638324082,-0.8355958764441311,0.06733131455257535,-0.4620084287598729,-0.5212699989788234,0.31825035624206066,0.4830059795640409,0.4742446872405708,0.03987062815576792,0.5001907837577164,-0.6736602815799415,0.9959669895470142,0.6118627558462322,-0.007181268185377121,-0.7177002257667482,-0.9890561467036605,0.10016310913488269,-0.5009922990575433,-0.0028881211765110493,-0.4695314918644726,-0.620192639529705,-0.688259347807616,-0.269816224463284,0.79497050633654,-0.6340572163462639,0.9465210717171431,-0.16863961797207594,-0.2053555455058813,0.5376818361692131,0.5065687685273588,0.7257616315037012,0.014551241416484118,-0.04965288704261184,0.2521985466592014,0.3574653910472989,-0.8458275278098881,-0.6172910826280713,0.2645925050601363,0.4630486015230417,-0.7897786390967667,0.36369988694787025,0.5571917616762221,-0.4454246088862419,-0.9745581247843802,-0.6588186142034829,-0.4247859143652022,0.13360712490975857,-0.0233342619612813,-0.1514089135453105,0.8502162080258131,-0.574608311522752,-0.6739568416960537,0.2672206056304276,0.7182859140448272,0.07239202875643969,0.2601169007830322,0.9872586214914918,0.09100396558642387,-0.6482224282808602,0.18655423866584897,0.16394824581220746,-0.3725832705385983,-0.07911275001242757,-0.5622883709147573,-0.15240190969780087,-0.5588369397446513,-0.9551319316960871,-0.0662174066528678,-0.6087682619690895,-0.5771145573817194,-0.21796374442055821,-0.9941716659814119,0.8878202121704817,0.013067868538200855,-0.481355938129127,0.7474002414382994,0.27421912690624595,0.7898897025734186,0.0360396234318614,0.6475221361033618,0.5022972617298365,0.8492815638892353,-0.5684927175752819,0.1448211520910263,0.706933431327343,0.4076492809690535,0.7399152563884854,0.366572258528322,-0.12957813870161772,0.1856098691932857,-0.7166465702466667,-0.8844588096253574,-0.5959586570970714,-0.09120572917163372,0.5822739768773317,-0.5305997557006776,0.6878711404278874,0.20654354570433497,-0.10706142708659172,-0.4708509314805269,-0.6901612272486091,0.8872483000159264,-0.5282547976821661,0.14096070686355233,0.1479175533168018,-0.7799983136355877,-0.9146469351835549,-0.8924454655498266,-0.4830322954803705,0.7585654449649155,-0.1692558997310698,-0.1668360005132854,-0.978381120134145,-0.17933416552841663,-0.16845301492139697,-0.7675506728701293,-0.3863904122263193,0.9901078045368195,0.19760892260819674,0.2533992356620729,0.023451215121895075,0.6102006896398962,0.08704991405829787,-0.3115486325696111,-0.6307434216141701,-0.8557221628725529,-0.3695984836667776,0.18937435233965516,0.9675861084833741,-0.3129611858166754,-0.8532734964974225,-0.8859546692110598,0.2181652025319636,-0.3932125433348119,0.774584530852735,-0.8547406857833266,-0.48343879263848066,0.820207136683166,-0.18095493176952004,0.7623564479872584,0.38328621117398143,-0.5818976098671556,-0.8188697034493089,0.962201023939997,0.41544962860643864,0.030846386216580868,-0.2253134772181511,-0.9070923868566751,-0.5440821791999042,-0.8142938036471605,0.767600235529244,-0.3691727537661791,0.23499651066958904,-0.42381518008187413,-0.6168619864620268,0.9355112272314727,0.9613867239095271,0.08222332503646612,-0.1271573817357421,0.27399185858666897,-0.14646519208326936,-0.02289922395721078,0.5456762337125838,0.4363565342500806,-0.953636921942234,0.6552268289960921,-0.5024129268713295,-0.4657600517384708,-0.5443901624530554,0.5608862875960767,-0.9208489167504013,-0.3577648694626987,0.5429999721236527,0.7259406326338649,0.2572612501680851,0.802891694009304,-0.7168162278831005,0.14463958656415343,-0.19991273060441017,0.40363752096891403,0.3944157329387963,0.3512220839038491,0.8195914314128458,0.9769270839169621,-0.570296392776072,0.03893214277923107,-0.6555629153735936,0.7779211075976491,-0.39358667796477675,-0.7266426775604486,0.6949295583181083,0.1913774865679443,-0.41174368700012565,-0.01345562469214201,-0.6317645288072526,0.7231595497578382,-0.037391789723187685,-0.8135534124448895,-0.6782213905826211,0.9055364783853292,0.5007815393619239,-0.8791711004450917,0.5529696615412831,-0.9201648319140077,-0.7512623202055693,-0.7597183603793383,0.3284112955443561,0.3256251672282815,0.27968758903443813,-0.0860125245526433,-0.6083341026678681,0.7308232737705112,-0.8451761272735894,-0.87849459098652,-0.29135768953710794,-0.7725764396600425,0.6163177406415343,-0.20459987875074148,0.288263076916337,-0.16611922346055508,-0.15724525088444352,-0.7420289344154298,0.4689818536862731,-0.027940568514168262,-0.7584314635023475,0.6184243489988148,0.9163875170052052,-0.7625480289570987,0.21811854699626565,0.3233397928997874,0.34540061047300696,0.04912117403000593,-0.8297956623136997,-0.1723283533938229,-0.09226135117933154,-0.6878520478494465,-0.40141967544332147,-0.6937318765558302,-0.7585755046457052,0.8352025453932583,-0.7172813690267503,0.20988870551809669,-0.6451707039959729,-0.13502944959327579,-0.9358752341940999,-0.8719260874204338,0.7099809804931283,0.5325775272212923,0.7720713480375707,-0.41834923485293984,-0.567492414265871,-0.8508514519780874,-0.32072804076597095,0.36915774643421173,0.9184018983505666,-0.5477909604087472,-0.42560094874352217,0.5944675859063864,-0.12407749379053712,0.8732937835156918,0.16812570672482252,0.9389631636440754,-0.15005270577967167,-0.15308753307908773,-0.4349143994040787,-0.5431149951182306,0.05853354884311557,0.3923488245345652,0.16295495349913836,-0.3119820118881762,-0.8438440929166973,-0.4640477653592825,0.1453241379931569,-0.48751922231167555,0.7213888526894152,0.6555822337977588,0.30538841942325234,0.7977119921706617,0.05371399037539959,-0.33069076389074326,-0.16022790083661675,0.4863875540904701,0.9878360610455275,-0.11358269397169352,-0.9369525210931897,-0.4598102765157819,-0.20916482619941235,-0.8756680670194328,-0.4265675339847803,0.9240612904541194,0.19831947004422545,0.9810424880124629,-0.24535312177613378,-0.3480830090120435,-0.6322679682634771,-0.950597464106977,0.8002208098769188,-0.01001950353384018,-0.49968937458470464,-0.7028368604369462,-0.29724671179428697,-0.8874208224005997,-0.9532875493168831,-0.1555113485082984,-0.6521348864771426,0.2614993001334369,-0.5369671867229044,0.8832977516576648,-0.5192891354672611,-0.9938820879906416,-0.09397585364058614,-0.08571422193199396,-0.4819706087000668,-0.5067040636204183,-0.7668205117806792,-0.568633587565273,-0.6216825181618333,-0.949337444268167,-0.2513813334517181,0.6252691610716283,0.3897201335057616,-0.39867512322962284,0.9129131049849093,-0.8913866286166012,0.3275035545229912,-0.2549299453385174,-0.719657068606466,-0.8658873136155307,0.4508195389062166,-0.551467954646796,0.3857822441495955,-0.6335427239537239,0.7440280728042126,0.4957781722769141,0.003261095378547907,0.6079650288447738,-0.26068194257095456,0.7636625054292381,-0.9329734002240002,-0.4270011018961668,0.7220391826704144,0.7151023433543742,0.9614146915264428,-0.6148031512275338,0.5324662704952061,-0.7547512948513031,0.6181963486596942,0.8951046476140618,-0.33128830697387457,-0.09457620000466704,0.23438100516796112,0.29408940207213163,-0.38607856538146734,0.43446071399375796,0.636826747097075,-0.06202783342450857,0.287816250231117,0.5907502518966794,-0.5410808590240777,0.45359052810817957,0.19970611995086074,0.11506765149533749,-0.8267719009891152,-0.6503774211741984,0.17112740082666278,-0.7114352998323739,-0.5355435577221215,0.7676096735522151,-0.6995883407071233,0.5888127703219652,-0.3334283703006804,-0.30139999371021986,0.21759435487911105,-0.023032851982861757,0.9312201403081417,-0.516296898946166,-0.135095345787704,-0.4637044360861182,0.3753606961108744,0.25081342784687877,-0.2844386687502265,-0.6613377425819635,0.2040805285796523,-0.5406225901097059,0.9781977031379938,0.043887386564165354,-0.1416265293955803,-0.7954647019505501,0.4040092220529914,0.8451708620414138,0.8228531219065189,-0.10135690029710531,-0.6394163114018738,0.5750475306995213,-0.41262994054704905,0.9386125882156193,-0.03480644663795829,-0.05425602290779352,-0.8952841823920608,0.9030290548689663,0.6307683610357344,-0.1869367309845984,-0.9223852916620672,0.16918446589261293,0.18786634178832173,0.7088741702027619,-0.697675350587815,0.36767893843352795,0.17854443425312638,-0.4902586443349719,-0.6832843646407127,0.8363753193989396,-0.5064137657172978,-0.6300621423870325,-0.9896719017997384,-0.23473871080204844,-0.466626379173249,-0.4442400699481368,0.274015162140131,-0.10722270049154758,-0.7531656417995691,0.6968837594613433,-0.4616229888051748,-0.6543726660311222,0.33475490286946297,0.7821412184275687,-0.7759340321645141,-0.6393581149168313,0.6225618477910757,-0.3441922585479915,0.5126781170256436,0.9213419449515641,-0.7478193370625377,0.3141102963127196,0.37287127366289496,0.11001961724832654,0.00207309378311038,-0.16430760640650988,0.3154489421285689,-0.036501132883131504,-0.7853144379332662,-0.012933062855154276,-0.1288810889236629,0.2570368177257478,-0.8117298292927444,-0.49108221055939794,-0.23840199457481503,0.2656361018307507,0.0376365534029901,0.298789422493428,0.3855930850841105,-0.0013424474745988846,-0.5679285824298859,0.4392627957277,0.1910256058908999,-0.0817779516801238,0.8332265079952776,0.6827240190468729,0.28826106199994683,0.01020632591098547,-0.5394299565814435,-0.6235305266454816,-0.17574123991653323,0.7143018022179604,-0.5191060956567526,0.8415264533832669,0.3339659930206835,-0.6223687832243741,0.9484618753194809,0.30346053978428245,-0.949089303612709,0.6932910908944905,-0.046644906513392925,-0.08074798388406634,0.991032937541604,0.5814143773168325,0.7329279254190624,0.4943475192412734,-0.21041833283379674,0.41869219904765487,-0.4429447087459266,-0.2832127590663731,0.14598953956738114,-0.6646669418551028,0.865458682179451,0.5036475723609328,-0.9230169840157032,0.9457246651872993,0.7887648134492338,-0.9976467918604612,-0.563516522757709,-0.5954432436265051,0.4809657712467015,0.47125984309241176,-0.6719299177639186,-0.7862427942454815,-0.32744832150638103,0.22413541516289115,-0.5334945973008871,-0.5079975770786405,-0.7331113331019878,-0.6674775662831962,-0.9704994568601251,0.6038450812920928,-0.1957758069038391,0.7854332332499325,-0.8172328383661807,0.3091511260718107,0.7204403439536691,0.06180603662505746,-0.7309057251550257,0.5411863536573946,-0.11236396431922913,-0.6860680230893195,-0.9497622759081423,0.059772154316306114,-0.5854160427115858,0.5912434491328895,-0.3293060646392405,0.39503849064931273,0.6507837739773095,-0.08369919192045927,-0.21868962468579412,-0.8451385367661715,-0.942186027765274,0.1508585661649704,0.5635863547213376,-0.4095836328342557,0.8576490534469485,0.5217505330219865,-0.39294981118291616,-0.07003959035500884,0.39947869814932346,-0.4033426749520004,-0.998258275911212,0.054957432206720114,0.5611153957433999,0.9373874766752124,0.6167758251540363,0.004364162217825651,0.07355133909732103,0.5265851956792176,0.07135154446586967,-0.2756506511941552,0.6000822614878416,-0.20550514245405793,0.8874673419632018,0.0014471830800175667,-0.4884722284041345,-0.6713242782279849,0.61954504577443,-0.22138501284644008,0.24941814504563808,-0.4529339289292693,0.39262244245037436,-0.5155154699459672,-0.6252866145223379,-0.9960691998712718,0.847206920851022,-0.06516608968377113,0.36857187654823065,-0.7680224976502359,-0.356477462220937,-0.41460564779117703,-0.3585910233668983,0.9694448411464691,-0.30849656043574214,0.6525223571807146,-0.39722137665376067,-0.40819514403119683,0.6561172702349722,0.8000127775594592,0.9455613628961146,-0.8485306678339839,0.01618906296789646,-0.8473715074360371,0.5913286358118057,-0.5272443392314017,-0.1848082970827818,0.3822784670628607,0.17217922862619162,0.617907386738807,-0.16525293281301856,-0.45125148817896843,0.4669507662765682,0.5698321470990777,0.5269693429581821,0.8404074795544147,-0.4266783311031759,0.00986204482614994,-0.8688799282535911,0.3162913857959211,0.5956835420802236,-0.776955355424434,-0.5255989069119096,0.7693841545842588,0.34370266553014517,0.21208141464740038,-0.6093012462370098,-0.577644407749176,-0.9055699342861772,-0.4092641803435981,0.9380468344315886,0.5996745531447232,0.41224356926977634,0.8451481740921736,0.18790717795491219,-0.1542779067531228,-0.5603341478854418,0.16474180342629552,0.36326750041916966,-0.023132544942200184,0.1928945048712194,-0.41838429076597095,-0.12025451706722379,-0.9153487826697528,-0.7747665294446051,0.7384875966235995,-0.9318973701447248,0.41493099089711905,0.5938281831331551,-0.4980708914808929,-0.49261131417006254,0.48869034368544817,0.9233355824835598,0.291321256197989,0.32866715267300606,0.0675227427855134,-0.476131375413388,-0.6497071515768766,-0.6100007789209485,0.4968324927613139,-0.05102933943271637,-0.8203630186617374,-0.5447154119610786,0.11334556248039007,0.9068153626285493,-0.951578991021961,-0.0583598199300468,-0.14369561662897468,0.8110454701818526,0.6450656843371689,0.6372737032361329,0.8608185378834605,-0.9086274723522365,-0.83469248842448,-0.6918648593127728,-0.7919177557341754,0.3593067303299904,-0.8075015228241682,0.808288334403187,-0.3397247241809964,-0.8249982465058565,-0.15531163336709142,0.6232299990952015,-0.019466035533696413,-0.0942764705978334,0.9716687449254096,0.7561850417405367,-0.6798269436694682,0.19608200062066317,-0.5241791936568916,0.3874530838802457,-0.45133993308991194,-0.0822064378298819,-0.9373689363710582,0.8681424544192851,0.6610665004700422,-0.04266764223575592,0.5110723534598947,0.3798355897888541,-0.26788612082600594,-0.8818903537467122,-0.31413355749100447,0.21208722377195954,-0.5783024597913027,-0.2822154266759753,-0.5335397021844983,0.3496491340920329,0.3344391123391688,-0.07079350901767612,0.032450288999825716,0.4995383433997631,0.19879208644852042,-0.06602798495441675,0.9121933332644403,-0.16442691953852773,0.4995867651887238,-0.8206455586478114,-0.11321922997012734,-0.1936629256233573,0.3198535814881325,0.3416936616413295,0.07784493267536163,-0.5007317024283111,-0.015701398253440857,-0.8815187280997634,0.06100985407829285,-0.6517217950895429,-0.10208010766655207,0.9329067189246416,-0.9353411374613643,0.9344378863461316,-0.26052438328042626,-0.709553396794945,0.6559055056422949,-0.5043070702813566,-0.14679761230945587,-0.8048424497246742,-0.7188874329440296,-0.3954584849998355,-0.5649036415852606,-0.03699856577441096,0.4817205066792667,-0.3281878503039479,-0.2566004889085889,0.1673889821395278,-0.2097977800294757,-0.8123723925091326,-0.6654430353082716,-0.5621305843815207,0.4880042960867286,0.4534688047133386,0.6927073169499636,0.2901854934170842,-0.6646698550321162,0.04564201459288597,0.5725307888351381,-0.18579033808782697,-0.6815901449881494,0.774251189082861,-0.6689671501517296,-0.8600528324022889,-0.2069785287603736,0.615275998134166,-0.48612066311761737,0.6613876721821725,0.906607243232429,0.5078253224492073,0.015739731956273317,0.9881449788808823,0.8562178830616176,-0.599080846644938,-0.5723762498237193,0.9368675267323852,-0.5746093150228262,0.8954259259626269,0.34856986068189144,0.6543044997379184,-0.24444321123883128,0.11355046508833766,-0.38647330459207296,0.838731580413878,0.6333057950250804,0.5287686265073717,0.050673026125878096,-0.5693599358201027,-0.9382182890549302,-0.521945676766336,-0.6019783955998719,0.7095837886445224,0.5824205749668181,-0.6108759944327176,-0.9965062374249101,-0.9367079073563218,-0.028054927475750446,-0.5880689560435712,0.4605380198918283,0.0792579697445035,-0.882652260363102,-0.8072355119511485,0.5883975555188954,0.45157877542078495,-0.994920008815825,0.9419246413744986,-0.6161634246818721,-0.547990954015404,0.6191121102310717,-0.14303281903266907,-0.07728435192257166,0.41464478988200426,-0.0683306478895247,-0.35470400797203183,0.3667293176986277,-0.3832662617787719,0.46878941589966416,-0.6158137419261038,-0.500641031190753,-0.06411814130842686,-0.6716597210615873,0.9021583450958133,0.8683129395358264,-0.5667042820714414,-0.15968463476747274,0.6043922528624535,-0.8713350063189864,0.04836685163900256,-0.3023454206995666,0.7832651175558567,-0.02675568964332342,-0.9870140878483653,-0.9874970004893839,-0.242508374620229,-0.9068463142029941,-0.7928883600980043,0.5082019516266882,0.22734995745122433,-0.7730761095881462,0.5646935780532658,0.16646057274192572,0.03663873253390193,-0.3908708458766341,-0.1552432468160987,-0.3749741706997156,0.4954531779512763,-0.7282281145453453,-0.2997738332487643,0.6907960334792733,0.15743658458814025,0.9845397928729653,-0.2995952977798879,-0.795216104015708,-0.8295653881505132,0.36714428197592497,-0.10539490403607488,0.6398212052881718,-0.8773304023779929,0.4907725197263062,0.49655790627002716,0.3230200633406639,-0.2380524999462068,0.6135306181386113,-0.8350136298686266,0.18820790573954582,0.2803651415742934,-0.37996164662763476,-0.9787283311598003,0.665141309145838,0.6021215273067355,-0.7882188959047198,-0.8605298167094588,-0.0757787162438035,-0.7190176513977349,-0.13434734102338552,0.8187424233183265,-0.8564804513007402,-0.4117739205248654,-0.24201237177476287,0.923869239166379,-0.483727861661464,0.6584847965277731,-0.4740753583610058,-0.15032165590673685,0.271492222789675,-0.9976964178495109,-0.27144333673641086,0.45659648021683097,0.1665228195488453,0.914267438929528,0.82637526281178,-0.6373344585299492,-0.7747769984416664,0.1916119521483779,-0.12374665169045329,0.9045585300773382,0.24309096205979586,0.5849523777142167,0.27416178956627846,-0.35221591778099537,-0.5707646473310888,-0.8138206149451435,-0.39367341808974743,-0.7926099761389196,0.5739537761546671,-0.8524980740621686,0.9420217992737889,-0.7215688340365887,-0.5527848396450281,-0.9075176711194217,-0.901044946629554,-0.9919169242493808,-0.10928504029288888,-0.374704300891608,0.3203481752425432,0.6924710683524609,-0.0032767662778496742,0.7225773627869785,0.7598901861347258,-0.5612484156154096,-0.15761821903288364,-0.974562332034111,-0.9105870351195335,-0.6434592655859888,0.47070512594655156,0.4299096562899649,0.24223783193156123,-0.32179500721395016,0.9162875129841268,-0.13780850311741233,0.8698278702795506,0.765301441308111,-0.4481864683330059,0.3281987593509257,-0.1521933814510703,0.5470880828797817,-0.6127806436270475,-0.40352154430001974,0.7697518696077168,0.8416018970310688,-0.033872300293296576,0.761617427226156,-0.4875479484908283,0.13466770388185978,0.6901076431386173,-0.4079258912242949,-0.6012406470254064,0.5757664437405765,0.7177992910146713,0.28897341853007674,0.5769183863885701,-0.9339500432834029,0.7548081567510962,-0.22600596398115158,0.38251212937757373,-0.03218865813687444,-0.22004432836547494,0.7924950574524701,0.7462159343995154,0.22903447411954403,0.42940382612869143,0.9858039598912001,0.6398808700032532,-0.8308421680703759,0.4345244737342,0.7206913777627051,-0.9550326350145042,0.6051088743843138,-0.07211784040555358,-0.8289281125180423,-0.2736463104374707,-0.9950589677318931,-0.6128587988205254,-0.45767579041421413,-0.8506822302006185,0.7927701319567859,-0.29911419516429305,-0.2922400562092662,0.8024887060746551,-0.3039835193194449,0.2845476698130369,0.39718382013961673,0.47175191063433886,0.05882667098194361,0.27536659268662333,0.862072326708585,0.5911849536933005,0.9801958757452667,0.09384374273940921,0.8092819908633828,-0.13045457284897566,-0.22204294707626104,-0.05010013096034527,-0.9579150923527777,-0.692300982773304,-0.08716457337141037,0.15539741795510054,-0.7045440576039255,0.3766561313532293,0.9007494258694351,0.12444599205628037,-0.11473173834383488,-0.17605585372075438,-0.21045767050236464,0.6466390932910144,0.24402412492781878,-0.6828419705852866,-0.22073477040976286,0.9943045135587454,-0.27673358004540205,0.27609382290393114,-0.6895323926582932,0.3085402282886207,-0.4851828506216407,-0.9463493032380939,-0.06865246826782823,-0.2602417399175465,-0.9820502502843738,0.12366291228681803,-0.6859922516159713,-0.8792633549310267,-0.2841079034842551,-0.44617279060184956,-0.9095517606474459,0.23155403835698962,-0.664196053519845,0.261418997310102,-0.17691783094778657,-0.20632411492988467,-0.982758850324899,0.8285891525447369,0.11303336592391133,0.9459877340123057,-0.6673626289702952,0.15085004502907395,0.007590750698000193,0.05679794121533632,-0.11112732160836458,-0.7474895752966404,-0.43920410610735416,-0.7299405536614358,-0.5167201817966998,-0.813727599568665,0.8362776963040233,-0.8910591974854469,-0.34857597947120667,-0.0037499158643186092,-0.4327764455229044,0.08000211277976632,0.034646584652364254,0.3705919752828777,-0.9409375758841634,-0.22838867641985416,-0.13084575720131397,0.043183425441384315,0.0244116373360157,-0.03358932677656412,-0.9723877096548676,-0.9376409146934748,-0.4012059671804309,-0.44911343790590763,0.5849743890576065,0.7081005494110286,-0.3342907871119678,-0.3223713473416865,-0.23666864540427923,-0.29465866181999445,0.3094084947369993,-0.048653085716068745,-0.9025544244796038,0.3670942042954266,0.6577218947932124,-0.6678739283233881,0.21493062283843756,-0.9510048958472908,-0.6417132602073252,0.9442266882397234,0.37617384269833565,0.8048945376649499,-0.06305147660896182,0.4950202526524663,0.41140422876924276,-0.36522267619147897,0.4146793452091515,-0.006922612898051739,0.4596553756855428,0.18924860609695315,-0.39089914690703154,0.915076145902276,0.35489566484466195,0.5776493041776121,-0.5391741297207773,0.46371998777613044,0.05117683485150337,0.6473686038516462,0.6438831272535026,0.36268394254148006,-0.20390439685434103,0.545457465108484,0.4493617429398,0.3908707182854414,-0.26722261030226946,0.24063140526413918,0.7138589187525213,-0.05889188917353749,0.3658204125240445,0.6877961792051792,-0.6898800902999938,-0.8949471642263234,0.18233147216960788,-0.18315506260842085,0.18045615777373314,0.8696527243591845,0.2405918068252504,0.9741523857228458,-0.6867276905104518,-0.9502005805261433,0.37467505037784576,-0.31001750007271767,-0.25410341657698154,0.5918482369743288,-0.049628247041255236,-0.12506775930523872,-0.8246006332337856,0.11824778513982892,-0.6843654955737293,-0.43257544562220573,0.9187178527936339,-0.49305017199367285,-0.3958114627748728,0.780120653565973,0.3027938208542764,0.8284545047208667,-0.01738411234691739,-0.9020966780371964,-0.47885772166773677,-0.45054009184241295,-0.5228701666928828,0.004538564011454582,0.5045121270231903,-0.8730649501085281,0.138579991646111,0.7593065933324397,0.8285617418587208,0.43367172172293067,0.08862878708168864,-0.8822489390149713,-0.9575850111432374,-0.9473821250721812,-0.20544232008978724,-0.4978571701794863,-0.08318135095760226,0.9143615276552737,0.898591096047312,0.6582301347516477,-0.6546339648775756,0.6287501249462366,0.16445877589285374,-0.5401265174150467,0.6051329676993191,0.2808000622317195,0.6377016301266849,-0.3394097350537777,-0.8580014444887638,0.545237080194056,-0.7930170432664454,-0.6400793218053877,0.5721420156769454,0.06567443022504449,-0.30388905201107264,0.13854520116001368,-0.9151254142634571,-0.7525958498008549,0.833986300509423,0.6738919257186353,0.7392637175507843,0.2992027532309294,-0.3440312435850501,-0.5729976673610508,-0.8171477019786835,-0.41028025234118104,-0.6036258740350604,-0.8832106664776802,0.823321910109371,0.3726932988502085,0.5094357901252806,-0.2862643734551966,0.8065115623176098,0.08316559949889779,-0.7498948620632291,0.44055800698697567,-0.7680245647206903,-0.02810440259054303,-0.26372245233505964,0.6750651057809591,0.7700488194823265,0.9268934298306704,-0.6688769273459911,-0.5516664236783981,0.9503997787833214,-0.17012251820415258,0.42787327989935875,-0.4833553531207144,-0.49507278436794877,-0.3814258147031069,0.9833062617108226,0.8108269623480737,-0.8567211213521659,0.5834479467011988,0.4705821690149605,0.11858003679662943,-0.9805407980456948,0.9502768195234239,-0.8901807586662471,-0.4454704667441547,0.9182194410823286,0.31353146908804774,-0.6611910965293646,-0.9954019831493497,-0.9960547713562846,0.08375435648486018,-0.6152456076815724,0.48355324380099773,0.388620822224766,-0.3508790787309408,-0.9082812233828008,0.4409115142188966,0.8512724009342492,0.004703454673290253,0.8464551297947764,0.07624976802617311,0.9437189549207687,-0.7222867519594729,-0.9972322159446776,-0.16921041533350945,0.07725916104391217,-0.3354796380735934,-0.5593682122416794,-0.1264997269026935,-0.25921789091080427,0.3888973346911371,0.49284978536888957,0.2787840701639652,-0.41290132934227586,0.586668070871383,-0.023039838764816523,0.23584804823622108,0.6230366532690823,0.9359983718022704,-0.8303391081281006,-0.6509507419541478,-0.4434953909367323,0.2289502564817667,-0.7876218403689563,-0.5965959201566875,0.323979324195534,0.5883074724115431,-0.0398880741558969,-0.0661261728964746,0.020125855691730976,-0.8337515871971846,0.3515594662167132,-0.056803761050105095,-0.3137265769764781,0.4436324145644903,0.25670913234353065,-0.3062114450149238,0.12634307285770774,0.14310733135789633,-0.09410877525806427,0.897496135905385,-0.21518481662496924,0.4438719255849719,-0.9802723042666912,0.14708176208660007,-0.9058435587212443,-0.7596883797086775,0.17266382882371545,-0.3970075468532741,-0.12114343838766217,-0.7711343769915402,-0.23165999865159392,-0.7815157803706825,-0.3180206920951605,-0.6137639838270843,0.6867228443734348,-0.8988523911684752,0.40612418483942747,-0.3586570140905678,-0.3356611621566117,0.7592869829386473,0.8838877431116998,0.17304691998288035,-0.3412700672633946,-0.08989173080772161,0.4735507951118052,0.4845463656820357,-0.7738591888919473,-0.5250557400286198,0.7100098887458444,0.650453754235059,-0.56459188926965,-0.2182537280023098,0.05715038487687707,-0.200876594055444,-0.5542112668044865,-0.5555115938186646,-0.22593912528827786,-0.16144273011013865,0.4705303115770221,0.7435746062546968,-0.4811711497604847,0.12413134146481752,-0.4057286255992949,0.4717931258492172,-0.34553434886038303,0.47828281624242663,0.534587028902024,0.9640437578782439,0.21380518516525626,0.4993240488693118,-0.8684494434855878,0.09883585572242737,-0.3423873330466449,0.19586393050849438,0.4208871955052018,0.8206829861737788,0.5497316448017955,-0.8470757771283388,-0.630509243812412,0.31138229463249445,0.4963214839808643,-0.15944583294913173,-0.5901410179212689,-0.7176835313439369,-0.0675578243099153,-0.7280593127943575,-0.0937207997776568,0.5667700818739831,-0.7912571597844362,0.18356278212741017,0.12599508510902524,0.5864658267237246,0.12508425395935774,-0.936817143112421,-0.8919447478838265,0.28391187870875,0.5528029976412654,-0.046117343474179506,-0.1016674148850143,0.036152289249002934,0.44192409235984087,0.8719436591491103,-0.7286942657083273,-0.8620751672424376,-0.5248907143250108,-0.5595137984491885,0.8005636623129249,-0.8138150717131793,-0.42885735677555203,-0.31698949402198195,0.9119957620278001,-0.19705566857010126,0.4174303710460663,-0.5505181499756873,0.6592730283737183,0.049474721774458885,0.8950590658932924,0.2662932821549475,-0.9490843494422734,0.14019136875867844,0.015556988772004843,0.8567868168465793,0.8076880383305252,0.16175109799951315,-0.14694175124168396,0.5295778294093907,-0.11772812204435468,0.0014035184867680073,0.2739431639201939,-0.3234604150056839,0.8954465286806226,-0.8375992304645479,0.8560299347154796,-0.995882477145642,0.49560363916680217,0.2152939084917307,-0.8881983458995819,0.6208661706186831,-0.9655561815015972,-0.9187483233399689,-0.49464719323441386,0.8782201502472162,0.574390827678144,0.1472390224225819,-0.788055744022131,0.9396936153061688,0.6676820851862431,0.36661022203043103,-0.5728620300069451,-0.6695334617979825,-0.8442384852096438,-0.9769823490642011,-0.75521131278947,0.25159762892872095,0.7663240856491029,0.737970910500735,0.05202352022752166,0.1493335240520537,0.33354980824515224,-0.21453211409971118,-0.6802058988250792,0.12633870588615537,-0.2024570032954216,0.451976022683084,0.5076560135930777,0.9025629539974034,-0.8259309898130596,-0.8116749110631645,-0.49761850386857986,0.538344947155565,-0.533841893542558,0.30659265303984284,0.7248703720979393,0.34256371995434165,-0.6571349636651576,0.3338039149530232,0.3741953233256936,-0.39375195652246475,0.16756339324638247,0.5993462069891393,0.016554085072129965,-0.7973187668249011,0.9458942357450724,-0.48447874281555414,-0.9365127650089562,-0.11736836330965161,-0.7923842645250261,0.11384998308494687,0.6152218906208873,-0.9331243787892163,0.6544024394825101,0.7894854987971485,0.9604736072942615,-0.22122662793844938,0.4764458825811744,-0.6485708844847977,-0.4575406634248793,-0.6747181336395442,-0.15168294170871377,0.6725508356466889,0.6191132613457739,0.8772683991119266,-0.09329742658883333,-0.37405569292604923,-0.26175202801823616,0.21466923970729113,0.6360877589322627,-0.38269473891705275,-0.4043818060308695,-0.6552303219214082,-0.3693179255351424,-0.09597819857299328,-0.0027244254015386105,-0.43398309079930186,0.48723303619772196,0.1171724759042263,0.5542003461159766,0.038004010915756226,0.4029953069984913,0.34368957858532667,0.41685213753953576,0.7847803886979818,-0.2290325970388949,-0.5111023434437811,0.5059347818605602,0.4923875266686082,0.6857664925046265,-0.6187303815968335,-0.8245001304894686,0.49968943605199456,-0.21543893963098526,-0.8996172617189586,0.9208272695541382,0.5220270650461316,0.4714968972839415,0.35532240150496364,-0.26897709676995873,0.08310439577326179,0.8499947944656014,0.006699858698993921,-0.2756235096603632,-0.01269956910982728,-0.24865244003012776,-0.3590998975560069,-0.183672069106251,-0.8999026226811111,-0.8054262171499431,0.6783668138086796,0.8670406891033053,-0.8613115819171071,0.8255181997083127,0.8997209225781262,0.559830198995769,-0.044911280274391174,0.8874070160090923,-0.7795967273414135,0.4730259031057358,0.6220109476707876,-0.35411414224654436,0.6640883390791714,0.10861242609098554,-0.49767655646428466,0.29438505647704005,-0.25623744912445545,0.8753642551600933,-0.6156381014734507,-0.5431232661940157,0.860978651791811,0.7169116889126599,0.0751671502366662,-0.1796829872764647,-0.08724093437194824,-0.26241177739575505,-0.18820864893496037,-0.23682826617732644,-0.07791425008326769,-0.9185002162121236,-0.5073637231253088,-0.9406964243389666,-0.48891328275203705,0.7954538110643625,-0.8125028382055461,-0.9324930952861905,0.735897317994386,0.27134563960134983,0.25772499898448586,0.04463891452178359,-0.3655769247561693,-0.4266301551833749,-0.01618721103295684,-0.29704862367361784,-0.9152687275782228,-0.4974656612612307,0.9344824319705367,0.1952567775733769,0.08893551351502538,-0.030780251137912273,0.8987550921738148,-0.7118083140812814,-0.4454649453982711,0.47013303684070706,0.177829060703516,0.3975602239370346,0.7819531871937215,-0.5477674598805606,0.025985607877373695,0.3747942238114774,0.7234788150526583,-0.9847323088906705,-0.39659756515175104,0.5714572970755398,-0.16122841648757458,0.37319509498775005,-0.46213524509221315,-0.40580110158771276,0.6084404443390667,0.9071289133280516,-0.4501639441587031,0.1553656253963709,-0.1795316617935896,0.8197695971466601,0.1278516505844891,-0.6864122673869133,0.9962883177213371,0.20140798343345523,-0.3260939475148916,-0.6146264155395329,0.9218742810189724,-0.6838312596082687,0.23884774139150977,-0.17071940936148167,0.5281959287822247,0.7029468603432178,-0.476036018691957,-0.7746649850159883,-0.6140642878599465,0.7887340071611106,0.2473819158039987,0.949839954264462,0.9872137228958309,0.9400215414352715,0.38018556823953986,-0.12226801551878452,-0.800637383479625,0.22735477099195123,-0.4599741385318339,-0.5184218031354249,0.9636939004994929,0.17079536151140928,0.42444771714508533,0.0040890187956392765,0.29652453167364,0.8400259329937398,-0.18388233240693808,-0.38924984680488706,-0.7070335410535336,-0.9507140312343836,-0.42394030233845115,0.6268794117495418,-0.22851928370073438,0.0007050731219351292,-0.6198178022168577,0.05350127071142197,0.6382207814604044,-0.556581400334835,0.7682684315368533,0.8348711938597262,-0.038835244718939066,-0.17795045441016555,-0.43436458706855774,0.18119450006633997,-0.42536016181111336,-0.9611310223117471,0.6458053882233799,0.1543692061677575,0.06303622014820576,-0.8225275394506752,-0.18779555521905422,-0.23472564481198788,-0.9220730210654438,0.013590240385383368,0.7245650971308351,0.6357721602544188,-0.5850666589103639,-0.4265297441743314,0.9079325664788485,0.2532800096087158,0.6478136982768774,0.8785792281851172,0.3344605630263686,0.041055014822632074,-0.7645710548385978,-0.06895629176869988,0.24351795949041843,0.07592953275889158,0.7449946776032448,0.8373714638873935,-0.6908511123619974,-0.11774304928258061,-0.17640845384448767,0.9112441595643759,-0.7435604729689658,-0.3108825800009072,0.7372928042896092,0.03507987130433321,-0.8982115527614951,0.935491967946291,0.6584145380184054,0.7231221380643547,0.6204709867015481,0.10461069131270051,0.6421205531805754,0.9363007294014096,0.6332119712606072,-0.7045965767465532,-0.6804834362119436,-0.24638584908097982,-0.955548238940537,-0.8299345532432199,-0.7711630770936608,0.6139609394595027,-0.9743546107783914,0.4690542295575142,-0.4529014746658504,0.2010526447556913,-0.27907851431518793,0.5009863567538559,0.1721320915967226,0.5157575532793999,0.03312896564602852,0.9375438778661191,0.6940623577684164,-0.23138312622904778,-0.71792530734092,-0.9262843686155975,0.009079752024263144,0.34721548529341817,-0.8838530820794404,-0.34779126150533557,0.2760941996239126,0.8631008388474584,0.1292976038530469,0.10560655128210783,0.24004286108538508,-0.159152758307755,0.37140545481815934,0.8637343873269856,0.3474786556325853,0.3640040382742882,-0.8835962489247322,-0.6218366739340127,0.13100224919617176,-0.6129541993141174,0.7298532384447753,-0.7093733581714332,0.9256828064098954,0.7595690009184182,0.6747541073709726,0.7904667402617633,-0.47917308611795306,0.08213188778609037,0.2882306375540793,-0.26956460624933243,0.8434161823242903,0.977433574385941,0.9715381474234164,-0.25726607954129577,-0.11249763099476695,0.6995810088701546,-0.6157114622183144,-0.6424642419442534,-0.7772711245343089,0.8305796016938984,-0.5895433658733964,0.9894866719841957,-0.2802613088861108,0.27235564263537526,-0.574560540728271,0.2793856398202479,-0.007917008828371763,0.33172516291961074,-0.28715409291908145,0.16544046578928828,-0.5092686400748789,0.30815828312188387,0.516184788197279,0.049778448417782784,0.9350497969426215,-0.11680503329262137,-0.2424329575151205,0.21248007286339998,0.15732737677171826,0.2855040621943772,0.6777544072829187,-0.8129462767392397,-0.7925877147354186,-0.22508667362853885,0.9011907400563359,0.6503899581730366,0.622718739323318,0.792875227984041,-0.9139974685385823,-0.6429598494432867,0.626192367170006,0.19703978905454278,0.41730290092527866,-0.041168610099703074,-0.6782064265571535,0.49414036935195327,-0.15699341800063848,-0.8341477713547647,-0.7299704700708389,0.7737363371998072,0.9831774313934147,0.1690621073357761,0.15716448845341802,-0.14511540019884706,-0.8339597755111754,0.4883292238228023,0.6193300555460155,0.8336722920648754,0.24847415881231427,-0.7133321100845933,0.14559825835749507,-0.4725466859526932,-0.3868614360690117,0.5869962209835649,-0.8723866804502904,0.8451027073897421,0.17275838879868388,0.6762446691282094,0.8219740292988718,-0.39259075559675694,-0.9003742663189769,0.4032414029352367,-0.3131088553927839,0.14279181510210037,-0.7376518594101071,0.40404340671375394,-0.8725090511143208,-0.8747152895666659,0.5271033053286374,0.44947793055325747,-0.3775043128989637,-0.5533667872659862,-0.08985775103792548,-0.8587739523500204,-0.9025494619272649,-0.2792046978138387,-0.5479913372546434,-0.1930597322061658,-0.7697288934141397,-0.23979225382208824,0.45806735288351774,0.9102821107953787,0.177635183557868,-0.25869398517534137,0.8123821257613599,0.14734301529824734,-0.4347420912235975,0.7567965919151902,0.19105224078521132,-0.33017191383987665,-0.6437767315655947,-0.3992291409522295,-0.8758432152681053,0.243624456692487,-0.9022189737297595,0.6130312420427799,-0.6796773155219853,0.44326016679406166,0.6101237111724913,0.36247686482965946,0.15710090240463614,-0.08604511199519038,0.8145899293012917,0.2610007585026324,0.07119283499196172,-0.4737343955785036,0.3007547785528004,-0.340622182469815,0.6231622332707047,0.2505851639434695,-0.44053303077816963,0.5159602658823133,-0.169254036154598,0.4361208132468164,-0.8933521914295852,-0.6574479285627604,-0.5546604129485786,0.5548855760134757,-0.7468143976293504,0.025262122973799706,0.0928335259668529,0.04091609688475728,-0.040950674563646317,-0.3309343927539885,0.13398674875497818,0.795049216132611,-0.3142233183607459,0.817510599270463,-0.36342317052185535,-0.8523041824810207,-0.7861616280861199,-0.42584093287587166,0.004506620578467846,0.5507753398269415,0.49418690940365195,-0.2417225451208651,0.5503855640999973,-0.05238018278032541,0.545965202152729,0.7598554329015315,0.8235896546393633,-0.9243553904816508,0.6896966397762299,0.9247540226206183,-0.1565768481232226,0.7247861507348716,-0.7822242602705956,-0.5895684533752501,0.348353436216712,0.30229908926412463,0.5490145185030997,-0.08028801344335079,-0.1667844974435866,0.8068890748545527,0.15498245554044843,0.19394630938768387,0.6016933945938945,-0.2005308549851179,0.0632175887003541,-0.7998790200799704,0.42867558915168047,0.331330475397408,0.46538011683151126,-0.01957123912870884,0.08417453058063984,0.16832309681922197,0.5354732354171574,0.2047282587736845,-0.999731672462076,-0.1421698033809662,0.4082643799483776,0.015261226799339056,0.17813445907086134,-0.5191077189520001,-0.7256514700129628,0.1958093256689608,0.8777349344454706,0.84697086783126,-0.6605848083272576,-0.7683067028410733,0.3602907289750874,0.4916066457517445,0.8649749108590186,0.14111103769391775,0.36816690349951386,0.11057477397844195,0.17541750660166144,0.9069034443236887,0.5464604399167001,-0.10390109615400434,0.6969362450763583,-0.9153233962133527,0.15537431789562106,0.26943057775497437,0.836059186141938,0.6096740970388055,0.6127430275082588,0.15419589495286345,-0.881724520586431,-0.3663873812183738,-0.47706176014617085,-0.3525791009888053,-0.8709449958987534,0.587150463834405,-0.4356070817448199,-0.051312212366610765,-0.06787036405876279,0.9893074687570333,-0.6031067823059857,-0.9511204808950424,0.09048888692632318,0.7251156866550446,-0.6612732796929777,0.13826250890269876,-0.9467301750555634,0.14105068612843752,-0.5793069121427834,-0.08191651338711381,-0.2707556183449924,-0.006471937522292137,-0.893499028403312,-0.3001739252358675,0.7145271128974855,0.9252245803363621,0.7983398828655481,-0.959487609565258,0.2922550579532981,-0.9808670752681792,0.4779454870149493,-0.9669670690782368,-0.3739785593934357,0.5967740607447922,-0.7697961269877851,0.8059056899510324,-0.7714314851909876,0.8934693015180528,-0.3231776771135628,-0.2481147418729961,-0.5422723842784762,-0.7095845662988722,0.27402728935703635,0.009894041810184717,-0.2936967797577381,0.5683061685413122,-0.2947984910570085,-0.5768116088584065,-0.8224429101683199,0.33166302973404527,-0.5402288194745779,-0.2067251713015139,-0.9635965009219944,-0.29390945052728057,0.0679038162343204,-0.2205521399155259,0.9388611153699458,-0.5798020930960774,-0.02573275752365589,-0.3383822366595268,0.8365969881415367,-0.8619854459539056,0.2885131021030247,-0.510176454205066,-0.7544903350062668,-0.202073838096112,0.7107119443826377,-0.6164990169927478,-0.5146486219018698,0.5352406427264214,0.6545837442390621,-0.3911862997338176,0.5126432445831597,-0.9954817285761237,0.9825686444528401,-0.047499159816652536,-0.2799126971513033,-0.7016642442904413,-0.5248850989155471,-0.31388543313369155,0.9728055386804044,-0.01840095967054367,0.22805103799328208,0.5070065194740891,-0.5375704788602889,0.5178967826068401,-0.6503641624003649,-0.5774097922258079,0.38016865449026227,-0.8065191088244319,0.09107621945440769,-0.5435667396523058,0.6661181161180139,-0.37818249175325036,-0.5436021611094475,0.09414149448275566,0.36194121465086937,-0.002427283674478531,0.5248326095752418,0.027133706491440535,0.6280556065030396,0.5430500279180706,0.37839058553799987,0.573261396959424,-0.1734186289831996,0.12583398167043924,0.359290876891464,-0.3059212975203991,0.35111386235803366,0.2641301779076457,-0.34119453746825457,-0.785128764808178,-0.7182579720392823,0.6198697779327631,0.7020656112581491,0.5757121699862182,-0.09561066050082445,-0.45876906532794237,-0.024869420565664768,-0.8965852279216051,-0.3327595782466233,-0.8332809070125222,-0.8752429746091366,-0.8375637750141323,-0.8547847149893641,0.8751520784571767,-0.6039622221142054,0.2613191157579422,-0.6642020088620484,-0.5672558480873704,0.298534810077399,-0.23567169718444347,0.7650996767915785,0.4027561000548303,0.3476401367224753,0.9294280027970672,0.6039094123989344,-0.23945528268814087,0.3840115014463663,0.957807756960392,0.6544031803496182,0.6415035729296505,0.9352844986133277,0.8713534912094474,0.709512849804014,0.20799033995717764,-0.5790127771906555,0.5447740834206343,0.7123439852148294,-0.06169813871383667,0.5472003249451518,-0.07277913298457861,-0.39299778500571847,-0.9610240729525685,0.09432785864919424,-0.8084859768860042,0.43526833318173885,0.6367290504276752,0.4163794475607574,-0.4249526700004935,-0.48731495533138514,0.5579725336283445,-0.2283856230787933,-0.14704339299350977,0.14682935224846005,-0.4799015964381397,-0.5085060317069292,-0.1322461194358766,0.49377907207235694,-0.13695803610607982,-0.9020461644977331,-0.10974353551864624,-0.39757207641378045,0.0020629987120628357,0.06816737400367856,0.5945334807038307,-0.43434611335396767,-0.03006611531600356,0.7865330064669251,-0.9370841691270471,-0.8055173144675791,0.6815327508375049,-0.18482307018712163,-0.1686956682242453,-0.6359986080788076,0.971736007835716,0.4577162563800812,0.2609042515978217,0.637288719881326,0.9916308582760394,-0.1918470817618072,0.12393943360075355,-0.8172062770463526,0.46786460652947426,0.9167994852177799,-0.7891080435365438,-0.03339164378121495,-0.18552044034004211,-0.4802692770026624,0.39458899991586804,-0.5188528196886182,0.8505211682058871,-0.7419453016482294,0.8592504598200321,0.6589386067353189,-0.45514218835160136,0.393752867821604,-0.09343227837234735,-0.028313033748418093,-0.032108369283378124,0.2567160492762923,-0.3997150380164385,0.8386199534870684,-0.38411450339481235,-0.7349879750981927,-0.5699695758521557,0.8875850280746818,-0.6160214226692915,0.6615433804690838,0.7838058741763234,0.8680860744789243,0.10793343791738153,0.3194934646598995,0.3861303464509547,-0.8255090280435979,-0.21698662312701344,-0.8929149960167706,-0.5855709249153733,0.825332747772336,0.9673436763696373,0.25703241070732474,-0.9965926124714315,0.28313627326861024,-0.3623349703848362,0.19014316564425826,-0.1487209666520357,0.2901029293425381,0.39649718813598156,-0.23706962214782834,0.36179534438997507,0.3552243048325181,-0.7466976237483323,0.3705220469273627,0.2696251142770052,0.40552498679608107,-0.001905644778162241,0.6369839692488313,-0.27623228589072824,-0.4960268270224333,0.03228983283042908,0.5301499930210412,0.5484767532907426,-0.1657974673435092,-0.5103581850416958,-0.9940714272670448,-0.3982068025507033,-0.3791537075303495,0.5529578812420368,0.8778612012974918,-0.6911756242625415,-0.7009134711697698,-0.33784015756100416,-0.34970650915056467,-0.3944821576587856,0.15845763590186834,0.7819796847179532,0.18969613779336214,0.0669194320216775,-0.826570013538003,0.3325664666481316,0.5351794590242207,0.7843352584168315,-0.5186942145228386,-0.3967278115451336,0.521543936803937,0.754951037466526,0.27196601312607527,-0.4187001986429095,0.48229960212484,-0.7693530907854438,-0.3688500071875751,-0.9521511076018214,0.3727553831413388,-0.9955310984514654,0.6575897540897131,0.1424435479566455,-0.3855011253617704,-0.25189587753266096,-0.37019012216478586,0.2501695775426924,-0.6131466804072261,0.18141161417588592,0.6742527461610734,-0.7322566234506667,-0.0017053568735718727,-0.5124993240460753,-0.9953635805286467,-0.8767802878282964,-0.7145621804520488,-0.1305860155262053,0.38098357198759913,-0.12104312609881163,-0.35665947245433927,0.928295670542866,-0.8598168971948326,0.02044649561867118,-0.7908436614088714,0.6742159365676343,-0.9585489868186414,0.15988985868170857,-0.37498352490365505,-0.14229017915204167,-0.7463303650729358,0.2903681299649179,-0.6002971227280796,-0.8019079566001892,-0.27329448889940977,-0.651713915169239,-0.22552866814658046,-0.7781555326655507,0.27548360731452703,0.9456513752229512,-0.7301164236851037,0.333956400398165,0.5322126895189285,-0.7013966995291412,-0.5331805390305817,-0.2429565917700529,-0.5546486340463161,0.984400533605367,0.7296768799424171,-0.16606919560581446,0.4839804549701512,-0.3137754565104842,-0.9296153699979186,-0.05889207776635885,-0.6972949830815196,0.9419672386720777,-0.9376315837725997,0.5872922618873417,-0.6196827534586191,-0.08358557801693678,0.3312959270551801,0.3290081825107336,-0.34420633502304554,0.6163637083955109,-0.8724583713337779,0.26257070852443576,0.6931089721620083,0.7517551411874592,-0.47899287659674883,0.7353051993995905,-0.34205933893099427,0.334540584590286,0.38473190600052476,0.5593366408720613,-0.7210233677178621,-0.9545756438747048,-0.6037624888122082,-0.5187937757000327,0.11910523800179362,0.4062860324047506,-0.07933053467422724,0.6826319270767272,-0.971188697963953,-0.9307539169676602,-0.3742458703927696,0.48955572908744216,0.18629628792405128,0.5402760212309659,0.7003023470751941,0.04551062500104308,0.4406311335042119,-0.5055149369873106,-0.021897082682698965,0.4144826326519251,-0.20572413643822074,0.03180562984198332,-0.157045291736722,0.21642521116882563,-0.6324265855364501,-0.24831264466047287,-0.22666163789108396,-0.6649847296066582,-0.2788387881591916,0.84647745359689,-0.19984847027808428,-0.1887633642181754,-0.7289621350355446,0.5825823941268027,-0.013135675340890884,0.38127018278464675,-0.8650296884588897,-0.33570751035586,-0.8678992977365851,-0.8575999569147825,0.8460207423195243,0.038703986909240484,-0.24899133946746588,0.19952138047665358,0.22328577330335975,-0.537919697817415,0.9345669713802636,0.5017377194017172,0.7641079383902252,0.25630137883126736,-0.9111381652764976,0.7280575698241591,-0.7935210168361664,0.3729452253319323,0.9710766947828233,0.9806661764159799,-0.3598898034542799,0.12248387793079019,0.47779850056394935,0.4895155932754278,-0.0919295521453023,-0.9523305832408369,-0.025636249221861362,0.35239700973033905,-0.6646191063337028,-0.18504167022183537,0.8807875588536263,0.47523927688598633,-0.8230514330789447,0.5980469724163413,0.24348758440464735,0.5112938247621059,-0.9330664947628975,0.6012239307165146,-0.3916230220347643,0.4526690896600485,-0.6143119405023754,-0.3127831923775375,0.1728427610360086,0.10272455541417003,-0.09084119414910674,0.1831261096522212,0.2625752645544708,0.0925783826969564,-0.35369248036295176,0.3772153635509312,0.9707195605151355,0.05740427179262042,-0.931463296059519,0.4795718276873231,0.30975332856178284,-0.011362448334693909,0.6398821668699384,-0.5947039569728076,-0.834657059982419,-0.765063073951751,0.08933334704488516,0.9867849224247038,-0.44492014730349183,-0.18690942181274295,-0.7814590302295983,0.5442227246239781,-0.2132514244876802,0.7483534798957407,0.005015534348785877,-0.3221613662317395,-0.4782077088020742,0.05342562310397625,-0.926682825665921,0.8428265303373337,0.1944400304928422,0.44296206161379814,0.9367998815141618,-0.5954824020154774,0.7139459569007158,0.9092253572307527,0.0813965410925448,0.5290027549490333,-0.4882872151210904,-0.8329258402809501,-0.48249969817698,-0.7744795205071568,0.18392579909414053,0.23051760019734502,-0.060197280254215,0.6389698348939419,-0.7792081558145583,-0.11274496978148818,-0.5691380184143782,0.9985963660292327,0.2063232520595193,0.9843944553285837,-0.4549281387589872,-0.49390303809195757,0.3560111541301012,-0.4979338417761028,-0.7770644668489695,0.20202659349888563,-0.5722633018158376,-0.6586321578361094,0.20109644206240773,0.15854715881869197,-0.20882454421371222,-0.8791487645357847,0.5115230605006218,-0.37476193020120263,-0.9891455573961139,-0.16618596063926816,0.3465279331430793,0.8663051594048738,0.7116963975131512,0.4935116614215076,-0.14455794729292393,-0.24845498241484165,-0.5572757502086461,-0.5689924200996757,0.4400875708088279,-0.676213891711086,0.5577139249071479,-0.32507222471758723,-0.5133841708302498,-0.08576786937192082,0.8399253338575363,0.23791265347972512,-0.953990220092237,0.43140941159799695,0.9341640956699848,-0.5319644100964069,-0.03368125203996897,-0.32231056969612837,-0.4670944777317345,-0.604921146761626,0.548005785793066,0.8315676138736308,0.44675159361213446,-0.7404666161164641,-0.776854170486331,0.5054447124712169,0.14852307038381696,-0.3670872710645199,0.7806017100811005,-0.16522488510236144,-0.4094293490052223,-0.727212293073535,-0.6317804651334882,0.8579425360076129,0.4958189227618277,-0.7571311229839921,0.17935771262273192,0.9939979361370206,0.44043376622721553,-0.9000994483940303,0.5418680314905941,0.7387851537205279,0.9771747780032456,0.10851546796038747,-0.282544307410717,0.6180810406804085,0.5083366492763162,-0.8058368153870106,0.6327272136695683,-0.22466583782806993,0.8513983814045787,-0.6985862809233367,0.11438091611489654,-0.6587501331232488,0.2602797164581716,-0.8108844463713467,-0.6667801789008081,0.06908190157264471,-0.9225966231897473,-0.15961143607273698,0.32651937706395984,0.2335685547441244,-0.35539188142865896,-0.22984977439045906,-0.2580897007137537,0.028050192166119814,-0.22986216749995947,-0.8875002074055374,0.9868372664786875,-0.2529848897829652,0.7790999747812748,0.720981742721051,-0.28673135954886675,0.6175285428762436,0.337017307523638,0.5374832362867892,0.6453565694391727,0.1218811054714024,-0.3408113061450422,0.5377533612772822,-0.569749353453517,0.6125173168256879,-0.44962685694918036,-0.6383637390099466,-0.9320414094254375,0.43253394961357117,0.8538473388180137,-0.5284978966228664,0.7527356613427401,-0.1665747808292508,0.834648119751364,-0.3645678358152509,0.7693962478078902,0.2822281704284251,-0.5776070188730955,-0.4862521728500724,0.7834809147752821,0.06653595296666026,-0.8604658078402281,0.1900831856764853,-0.265102363191545,0.5426739817485213,0.42147880606353283,0.27645255578681827,0.6594194718636572,-0.1868171850219369,0.9894741242751479,-0.08880368480458856,-0.4440911575220525,0.582287001889199,0.3280676444992423,-0.8795587969943881,0.959644490852952,-0.24503728561103344,0.2529519866220653,-0.6920183799229562,0.381163798738271,0.9973203609697521,-0.3568498380482197,-0.6579071786254644,0.4817940127104521,0.49803497828543186,0.05079658841714263,0.21137183951213956,0.901038178242743,-0.6435373187996447,-0.7897822777740657,-0.9624257851392031,0.27560984482988715,-0.07354133436456323,-0.21365458983927965,-0.7111319336108863,0.09692551335319877,-0.88280772510916,-0.19373398600146174,0.18172317231073976,0.9663447737693787,0.9477751334197819,-0.7880710754543543,0.0028792074881494045,-0.1879155272617936,-0.9900269070640206,0.4744039196521044,0.5107209053821862,-0.004627238027751446,-0.2607498215511441,0.10852971440181136,0.24440428474918008,0.8072067070752382,0.3679787162691355,0.49086525524035096,-0.6528009497560561,-0.18846559524536133,-0.6422276706434786,-0.45035244757309556,-0.8301986712031066,-0.19984704535454512,0.9068305683322251,-0.8074682443402708,-0.8185853566974401,0.8964961576275527,-0.5985685349442065,-0.5537866074591875,-0.21062102541327477,-0.9531470942310989,0.6384728038683534,0.14593499200418591,-0.7241954179480672,-0.746256522834301,0.8315512584522367,-0.40142239816486835,0.6103391111828387,0.714023185428232,-0.25253520905971527,0.8122084117494524,0.05486453091725707,0.8138403496704996,-0.33171600801870227,0.986390570178628,-0.23947408609092236,0.1953514600172639,-0.8037549718283117,0.9105358454398811,0.11543663125485182,-0.9219570974819362,-0.9470601850189269,-0.03332453640177846,-0.6858391743153334,-0.9635636513121426,-0.803625731728971,-0.5181724182330072,-0.04193232813850045,-0.8224872276186943,0.48287124652415514,-0.08033362403512001,0.17990382621064782,-0.6046870774589479,0.34483393793925643,-0.16448229318484664,0.02075837505981326,-0.8692080494947731,0.34164025355130434,0.6575926062650979,0.8428658810444176,-0.007043997757136822,-0.5161295779980719,0.4835746162571013,-0.27806600648909807,-0.9731957474723458,-0.3322406755760312,0.5855435659177601,-0.9280494153499603,0.43530483171343803,0.8523417068645358,-0.572039763443172,-0.9695422565564513,0.8988729622215033,0.16327470494434237,-0.9841071278788149,0.4599497988820076,0.4673848217353225,-0.29376144288107753,0.6600214350037277,-0.13037291821092367,-0.4046212821267545,-0.4085960094816983,0.057766207959502935,-0.09662543702870607,-0.44334558490663767,-0.6205834425054491,0.40246525732800364,-0.6957054645754397,0.789697996340692,-0.4958042809739709,-0.3654114883393049,0.41667563561350107,0.935910627245903,-0.1789614399895072,-0.43412003153935075,-0.4545371034182608,-0.2507374892011285,-0.5808807769790292,0.25131603656336665,-0.14491640124469995,0.4289845759049058,-0.8230611379258335,0.6179184564389288,-0.2178406841121614,0.1651600208133459,0.5303500513546169,-0.21523663261905313,-0.9856312526389956,0.7804983262903988,0.2530367160215974,0.8806486614048481,0.8337276917882264,-0.8079973547719419,0.8376144650392234,0.7200570362620056,0.42226467141881585,0.12303974479436874,0.2880673138424754,0.6663207323290408,-0.184114137198776,0.27991939475759864,0.9396320721134543,0.18631952861323953,-0.8619419066235423,0.3435196899808943,0.5381825333461165,0.2925547640770674,-0.5697274641133845,-0.6890187948010862,0.7515593315474689,-0.9885016204789281,0.13148927129805088,0.7119966275058687,0.5638531311415136,0.7177043803967535,-0.7459091148339212,0.4078914769925177,0.631546763703227,-0.31825978541746736,0.06838661711663008,-0.4207820212468505,-0.46365606458857656,0.4704925362020731,0.5150909908115864,0.7498058904893696,0.3725870866328478,0.020481750834733248,-0.4982217848300934,-0.6659255963750184,-0.8764213635586202,-0.08988452656194568,0.7105762711726129,-0.5945079615339637,-0.5892910794354975,-0.8108954527415335,-0.8220739280804992,0.37387864803895354,0.01715812925249338,0.11555213201791048,0.6633705943822861,0.5378622813150287,0.6498590288683772,-0.565687901340425,-0.8421731828711927,0.35246726125478745,0.10193795897066593,0.2534665637649596,-0.4451476507820189,-0.3895288617350161,-0.9410765138454735,0.24362034117802978,0.33760620513930917,0.02011174289509654,0.9981689648702741,-0.37952692806720734,-0.44139283057302237,-0.09874147456139326,-0.9975083391182125,-0.9251362141221762,-0.9070313894189894,-0.711059064604342,-0.3419457352720201,0.14757092203944921,-0.1576509024016559,0.2340971054509282,0.6063174363225698,0.6927051739767194,-0.9104134673252702,0.2902666758745909,0.6722050020471215,-0.9802250014618039,-0.6309709283523262,-0.3261801959015429,-0.1448430554009974,0.44863423705101013,-0.49802799616008997,0.506279643625021,0.7589148594997823,-0.8844847232103348,0.9359107194468379,-0.24271865841001272,0.5150414011441171,0.22287684213370085,0.4267532075755298,-0.6502637760713696,-0.6332601420581341,-0.23083729203790426,-0.8304871330037713,0.2161125228740275,0.11280452599748969,-0.6067059426568449,0.9926938866265118,0.8111080010421574,-0.5583390668034554,0.7983519150875509,-0.3951591639779508,0.8640272617340088,0.7494009803049266,0.16638339217752218,-0.9114047875627875,0.8632376058958471,-0.4294606880284846,-0.2685633418150246,0.8715304252691567,0.6577240796759725,0.0015630284324288368,-0.3792179976589978,0.649635017849505,-0.6289046001620591,-0.7317556217312813,0.20874699437990785,0.9420648319646716,-0.878496078774333,0.9328841930255294,-0.20045845676213503,0.49201124906539917,-0.38517100317403674,0.12178363231942058,0.5915358979254961,0.7031830744817853,0.7642520563676953,0.5919720060192049,0.35448138136416674,-0.9457478686235845,0.6475716112181544,-0.06346193794161081,0.7906886120326817,-0.3172453995794058,-0.919272166211158,0.41224535554647446,0.17032671812921762,0.4227000083774328,-0.6433925023302436,-0.3295790343545377,0.45248418021947145,-0.4521377547644079,-0.5360983409918845,0.633831943385303,0.5596830332651734,0.44437233032658696,-0.36805956112220883,0.983547808136791,-0.7479562810622156,-0.4212447493337095,-0.696844301186502,0.6688548563979566,0.7506301980465651,0.5649407655000687,-0.7201490835286677,0.8173188152723014,-0.9390336466021836,0.0764185730367899,-0.013029679656028748,0.3281602095812559,0.1407992416061461,-0.84106933651492,-0.6573334350250661,-0.11265862779691815,-0.540588493924588,0.041493730153888464,-0.82166315196082,-0.02380399452522397,-0.003252605441957712,-0.958642884157598,-0.918650456238538,0.31479610688984394,-0.3289488605223596,-0.27570118894800544,0.9410497802309692,-0.40358995413407683,-0.8238830296322703,-0.5100077758543193,-0.12917163828387856,-0.05308880005031824,-0.36167326755821705,-0.1596496906131506,0.1902698460035026,-0.1916159619577229,0.46070098550990224,0.49350121710449457,0.13582143653184175,-0.42271229438483715,-0.5817447006702423,-0.46379841724410653,-0.30154992872849107,-0.7361157024279237,-0.039965817239135504,0.3663857923820615,0.17138089099898934,-0.6729482701048255,0.2580745308659971,-0.863160417880863,0.9392447387799621,0.7461702483706176,0.24299808545038104,-0.628472856245935,-0.14670542115345597,-0.5859290505759418,0.28716072253882885,0.773115660995245,0.07833283394575119,-0.36956688528880477,-0.9908657395280898,0.8178475070744753,0.5561342714354396,0.04631231911480427,0.9733113152906299,-0.044050498865544796,0.5771144540049136,0.1953702918253839,-0.8394188177771866,0.9350980632007122,-0.7272850605659187,-0.5137217864394188,-0.452833607327193,-0.8191745732910931,-0.99560237955302,0.07078435132279992,-0.848301600664854,0.9467158983461559,0.3405545908026397,0.9042336079291999,0.6798813929781318,0.43937602173537016,0.6824550391174853,0.5804632124491036,0.5505676558241248,0.39779395144432783,0.02152537601068616,0.888776823412627,-0.2654078588820994,0.11821257695555687,0.34605270018801093,-0.9316316698677838,0.32169743115082383,-0.3640790390782058,0.2892288276925683,-0.12319001415744424,0.20576030714437366,-0.42453336948528886,-0.3738513933494687,0.25161707820370793,0.9263077070936561,-0.18218948366120458,-0.9227551245130599,-0.49666093895211816,-0.8205030770041049,-0.5978117669001222,0.5794752985239029,-0.11217911448329687,0.911638995166868,0.6184422033838928,0.7207993771880865,0.014053420163691044,0.4345766231417656,-0.021338305436074734,-0.788056347053498,0.40698882238939404,-0.20736364647746086,0.44645891105756164,-0.9323887447826564,0.21253995038568974,-0.4287368725053966,0.4859776059165597,0.48294774163514376,-0.5490412577055395,-0.753527476452291,0.0869206739589572,0.46581050427630544,-0.5164626040495932,-0.15315548423677683,0.3738952036947012,0.4738600207492709,-0.5255913194268942,0.7549562938511372,0.17926220502704382,-0.01909003173932433,-0.8859928525052965,0.520972503349185,-0.8854113393463194,-0.43812337750568986,0.8846594896167517,-0.09463419113308191,-0.3170269373804331,-0.46812547789886594,-0.41688094986602664,0.32401144271716475,0.09957396471872926,0.7695538653060794,-0.27695889584720135,-0.1433498621918261,-0.019890591967850924,0.26909425761550665,-0.15055872267112136,-0.8908067704178393,-0.2761326776817441,-0.035841547418385744,0.22702256916090846,0.7967499503865838,0.26836120756343007,0.9075458175502717,0.08403319166973233,0.23832208197563887,0.6228320579975843,-0.15867074811831117,-0.06973726209253073,-0.8874671482481062,0.43402651976794004,0.9417777042835951,0.27640793239697814,0.6836842698976398,-0.854535146150738,0.4417442730627954,-0.4580267108976841,-0.2503620577044785,0.15701587963849306,-0.1221050238236785,-0.708056187722832,0.7791766775771976,0.11503263469785452,0.7163363802246749,-0.39416315499693155,0.19325195578858256,-0.964556428603828,0.5025084726512432,0.048622012604027987,0.0590999317355454,0.8413681569509208,-0.17445420706644654,-0.4468466844409704,0.25851609418168664,-0.7308806632645428,0.19974183570593596,-0.3434837320819497,0.5218112585134804,0.25740926852449775,-0.4153992859646678,-0.03550986805930734,0.6368621550500393,-0.6427540574222803,-0.613510973751545,-0.7780839204788208,-0.049407856073230505,0.2921924255788326,-0.6512242397293448,-0.3055303408764303,0.6017584819346666,-0.6262258184142411,-0.12420950457453728,-0.7058707820251584,-0.6461799112148583,0.8586568692699075,-0.6678434917703271,-0.36126005416736007,-0.4599333191290498,-0.21564617566764355,-0.041802933905273676,0.7997876489534974,0.6144441501237452,-0.41855712700635195,0.2828401792794466,-0.20239011384546757,-0.6401115003973246,0.3320068749599159,-0.6295595718547702,0.27891222666949034,0.11323648365214467,0.33441043412312865,-0.08979131700471044,0.85438521951437,0.3208590564318001,-0.12866789428517222,0.3962387549690902,-0.6057477621361613,-0.809331689029932,0.6709027560427785,-0.25027202256023884,0.9945680275559425,0.3463212721981108,-0.744628488086164,0.9948675958439708,-0.048196117859333754,0.010722286999225616,-0.8025051630102098,-0.9065115563571453,0.5489675956778228,-0.2369186719879508,0.8714352040551603,-0.10658763675019145,0.26171262469142675,-0.2284804997034371,-0.18921526428312063,0.7438411307521164,-0.07341466145589948,0.6655864282511175,0.3081564703024924,-0.21266823122277856,0.3213347331620753,0.9071953403763473,-0.7693001111038029,0.48491355683654547,-0.45733735151588917,0.28788879653438926,0.41557466285303235,0.575020981952548,-0.7897222908213735,-0.9905822486616671,0.6903315936215222,0.6344447736628354,0.2167529659345746,0.8180671017616987,-0.7665652446448803,0.6592893549241126,-0.2519257082603872,0.5982353445142508,0.2651731874793768,0.3851237539201975,-0.4149168198928237,-0.42507054284214973,-0.11502515291795135,0.37994195707142353,0.13330240081995726,-0.4810478291474283,-0.017922396771609783,-0.4546704813838005,-0.8567354776896536,0.48917702306061983,-0.25037449412047863,0.6119213155470788,0.37907551508396864,0.3629970168694854,0.8316481290385127,0.32632421096786857,0.8687347043305635,0.3891061753965914,-0.18352163257077336,0.6244245423004031,-0.0677492949180305,-0.007607723120599985,0.8234348786063492,0.8433765792287886,0.4386184560135007,0.023884998634457588,-0.30052715772762895,0.370070269331336,-0.42760332580655813,0.3474632906727493,-0.5992472125217319,0.2801286643370986,0.9987625246867537,0.5290297246538103,-0.08896953240036964,0.6180026675574481,-0.02604755526408553,-0.3704465511254966,0.8893710155971348,0.19386579608544707,-0.7929898723959923,0.966661749407649,0.6355080353096128,0.7581552313640714,-0.267540970351547,-0.5883682454004884,0.8054438941180706,-0.8585545471869409,-0.5498127648606896,0.6750129321590066,-0.5581457535736263,-0.1398284095339477,-0.9492825600318611,-0.8252743193879724,0.27648617047816515,0.3790117111057043,0.9378462666645646,-0.5130611178465188,-0.1820137919858098,0.2166108493693173,0.2955108340829611,-0.9009104482829571,-0.2079416303895414,-0.13395669823512435,-0.9151564510539174,-0.7665238818153739,0.6884335796348751,0.7680065487511456,0.04743564687669277,0.21668368531391025,0.825703295879066,0.940883781760931,-0.6788650760427117,-0.8920605382882059,-0.683868748601526,0.4148531104438007,-0.01570164831355214,0.6163192666135728,-0.8761225827038288,-0.588007356505841,-0.07590477587655187,-0.9933980740606785,0.7845464651472867,0.6028467249125242,-0.40396239887923,0.14381441194564104,-0.9801556109450758,-0.8281861073337495,-0.784913974814117,-0.5728523759171367,0.05924778338521719,0.15302442526444793,0.006720774341374636,-0.005751945078372955,0.829507022164762,0.8220238583162427,0.8649192643351853,0.743358557112515,-0.9315476105548441,0.5542349317111075,0.5237112171016634,0.7803227677941322,0.5754776513203979,0.55581175070256,0.7425426742993295,0.9528181375935674,-0.271173354703933,-0.2921481258235872,-0.6099431356415153,0.7375153661705554,-0.5445095584727824,0.02680376498028636,-0.016985683236271143,0.3595713279210031,-0.4102198425680399,0.5244735716842115,0.9210378970019519,0.4061699635349214,0.645764272660017,0.07015416864305735,-0.786325722001493,0.9652436515316367,0.5530082769691944,-0.571724365465343,0.4257671977393329,0.4151369286701083,0.852743502240628,-0.04837980912998319,-0.37770938966423273,-0.42456573341041803,0.0012023523449897766,-0.2231707195751369,-0.17676157224923372,-0.2891527321189642,0.4821428945288062,0.7459075492806733,-0.5892069875262678,0.7832753383554518,0.4836907805874944,0.5853818682953715,-0.5922136073932052,-0.8168884171172976,-0.18834917526692152,0.2354536303319037,0.839099042583257,-0.07014861097559333,-0.8735929792746902,0.32748023234307766,0.4737105439417064,0.7836933271028101,-0.8036218555644155,0.4287939011119306,0.23309350153431296,0.0200329408980906,0.4725597007200122,-0.4830519608221948,-0.10396445682272315,-0.1860519484616816,0.2850858746096492,0.9812355260364711,-0.9533001752570271,0.4475881028920412,0.09699473483487964,-0.01728673418983817,0.327209762763232,-0.7254225723445415,-0.3457842501811683,-0.24559412943199277,-0.5944694057106972,-0.5988644263707101,-0.4272215631790459,-0.7080717086791992,-0.5207575894892216,0.38188144098967314,-0.7384963501244783,-0.0859018312767148,-0.0656255385838449,-0.33402677439153194,0.36007056292146444,0.12839150102809072,0.11966278171166778,0.6498616677708924,-0.7438610498793423,0.7845258233137429,0.7759232907555997,0.9707793896086514,0.6813243427313864,0.26445085974410176,0.4406802337616682,0.4781417711637914,0.1845715600065887,-0.029082059394568205,0.07882870454341173,0.2554410295560956,-0.4514190787449479,0.4054021271876991,-0.23847112618386745,0.9881653725169599,0.0023664352484047413,-0.4273077961988747,0.3605620190501213,0.4027307000942528,-0.6462742877192795,-0.8877099244855344,-0.09651609556749463,-0.9652071697637439,-0.3624179228208959,0.3431872851215303,-0.9384578061290085,-0.4165069106966257,0.5789519273675978,-0.4136431091465056,-0.8793554613366723,-0.1880864785052836,0.43475345615297556,-0.9757490446791053,0.8460091333836317,0.5848371339961886,0.1491988431662321,0.5096712871454656,0.020829383749514818,-0.3887527398765087,-0.8138659726828337,0.3216998241841793,0.7576518040150404,0.11213290970772505,0.8638142417185009,-0.7489305972121656,-0.9798825299367309,0.07736159861087799,-0.1834951718337834,-0.19785253750160336,0.05082998564466834,-0.5337926899082959,0.4159535341896117,0.8094475627876818,0.027040835935622454,0.9595010122284293,0.43785469653084874,0.6954356906935573,-0.6213550101965666,0.12882843567058444,0.21157374139875174,-0.7421037429012358,0.5978194288909435,0.30811014445498586,0.953165864571929,-0.2511234115809202,-0.0048241144977509975,-0.5717773898504674,0.13252185890451074,0.7019077031873167,-0.06377236125990748,-0.28762222034856677,-0.002232869155704975,0.055334276519715786,0.5901978933252394,-0.2978850556537509,0.6783748068846762,-0.24511628225445747,-0.17524222610518336,0.8443459589034319,-0.06867232080549002,0.6898892880417407,-0.6941732638515532,-0.6436693714931607,-0.7283663186244667,-0.5675738300196826,0.10846019582822919,0.7436374053359032,0.057148035150021315,-0.8925400138832629,-0.08784884959459305,-0.1382069168612361,0.388756871689111,0.06361770210787654,-0.9451734875328839,0.8884239597246051,-0.9890519129112363,-0.23004918731749058,-0.23560184007510543,0.3069702461361885,-0.8138647242449224,-0.9097229423932731,0.4908956242725253,-0.5303479568101466,-0.05416141264140606,-0.7635863590985537,-0.32082235580310225,0.0015222993679344654,0.8412846396677196,0.11388682620599866,-0.425124176312238,0.4370486242696643,-0.5456101126037538,-0.8661934905685484,0.6085331160575151,-0.2172357877716422,-0.9032260323874652,0.6766089699231088,0.5015590679831803,-0.6826475150883198,-0.7532224892638624,-0.9887630348093808,0.8347303862683475,-0.6928941966034472,0.2873659757897258,0.16233905358240008,0.9062596345320344,-0.3705536248162389,0.7731321277096868,0.7641355050727725,-0.0563049353659153,-0.4584054695442319,0.9077704432420433,0.231529728975147,-0.044104871340096,-0.39195473305881023,0.19403038593009114,-0.21473379200324416,-0.3463187525048852,0.3748768987134099,0.9037854941561818,0.8507537334226072,-0.008711274713277817,-0.9578905333764851,-0.39890382112935185,-0.20897677494212985,0.37491662660613656,0.4274914222769439,0.521574595477432,0.588664008770138,0.9215794382616878,-0.3218840779736638,0.5284455702640116,-0.6899754670448601,-0.8560541882179677,0.7239134977571666,0.9337804247625172,0.5405662124976516,-0.08617406524717808,0.6924299993552268,-0.6221118355169892,0.3133044703863561,0.5299594048410654,0.27289761416614056,0.8896953132934868,-0.9022314031608403,-0.19862834783270955,0.35580575792118907,-0.761508742813021,0.5898576690815389,0.4874430955387652,-0.5872522084973752,-0.597881424240768,-0.8501685876399279,-0.569878377020359,-0.9549309024587274,0.6772882910445333,0.8479802017100155,0.9334441144019365,-0.208655777387321,0.9627782520838082,0.0653222999535501,-0.9926367527805269,0.6111922478303313,-0.36369588086381555,0.06684041256085038,0.284115853253752,-0.3109678737819195,0.17721622390672565,-0.0270721223205328,0.36570189660415053,0.19703104719519615,0.13187706470489502,-0.9782560598105192,0.4175370247103274,-0.9201277559623122,-0.7150840642862022,0.7622858104296029,0.7969504692591727,0.4074350488372147,-0.20320847490802407,0.34000689908862114,-0.035902783274650574,-0.657626673579216,0.653345606289804,0.4944984158501029,0.9160064645111561,-0.08349529420956969,0.20067393267527223,-0.30913653410971165,-0.7841536081396043,0.06486502662301064,0.8391527668572962,0.3496726406738162,0.6356555079109967,-0.8193316170945764,-0.3088559531606734,0.21297635417431593,-0.2755655855871737,0.2933152662590146,0.4325985061004758,-0.34689888823777437,0.8017180440947413,0.7849571350961924,0.05743958009406924,0.9134209519252181,0.06400223774835467,0.22706719022244215,0.3577176006510854,0.4441963969729841,-0.4639036045409739,-0.6973654218018055,-0.24490358494222164,-0.11352446349337697,0.6138426652178168,-0.7126769879832864,0.4149553985334933,-0.09552639303728938,-0.38054840732365847,-0.5794380097649992,-0.9503722968511283,0.24772601341828704,0.10527328541502357,0.034875642973929644,0.09071234473958611,0.5236746813170612,0.8475003209896386,0.14629918010905385,0.9482923005707562,0.22993378434330225,-0.6216505812481046,0.6248324466869235,0.5796653400175273,0.11823699716478586,0.7678401311859488,-0.5663980473764241,0.4249264607205987,-0.053124209865927696,0.6386871598660946,0.2661028844304383,0.5071573425084352,0.4838161147199571,0.4119087578728795,-0.07474443921819329,0.6694784434512258,0.3601017207838595,0.04709657281637192,0.7168915243819356,-0.1417841068468988,-0.4105173833668232,0.08105464931577444,-0.3181962603703141,0.33059003949165344,0.4869362525641918,-0.054533159360289574,-0.6241566478274763,0.6980035551823676,-0.7742379456758499,-0.8341961544938385,0.5053386772051454,-0.04196439078077674,-0.38850057451054454,-0.1805172604508698,0.3134077382273972,-0.9896803493611515,0.08241696795448661,0.2956279502250254,0.8021462135948241,0.38726293202489614,-0.43009063322097063,-0.5138487233780324,0.008765671867877245,0.4597411286085844,0.22456902218982577,0.9220556374639273,-0.031101992819458246,0.31969693629071116,-0.7732323762029409,-0.16198435798287392,-0.005512411706149578,-0.6223255260847509,-0.6277156113646924,0.3008378390222788,0.24668437708169222,-0.30269111739471555,0.07145292451605201,0.9627880332991481,0.6934987083077431,0.40478987945243716,0.7464261464774609,-0.2512333681806922,0.4344440847635269,0.9907036679796875,0.9048639764077961,-0.32428283151239157,0.9924313263036311,-0.057789957616478205,-0.7203926551155746,0.5625209077261388,0.46988173061981797,-0.5987384961917996,-0.7490307022817433,-0.970109885558486,0.09626859659329057,-0.010290331207215786,0.9878675448708236,0.66836778819561,-0.47073989221826196,0.6870790864340961,0.5623161885887384,0.6559208007529378,-0.174291402567178,0.8668021475896239,0.5603332058526576,-0.039377212058752775,0.13334078807383776,-0.12477048998698592,-0.17236565798521042,0.7970557785592973,0.9541431963443756,-0.2717800196260214,0.30670392885804176,0.44080086750909686,-0.3314689355902374,-0.8627454997040331,-0.49451756244525313,0.30109209939837456,-0.5878882058896124,-0.8820542353205383,-0.8552595539949834,-0.4415995250456035,-0.5184507691301405,0.39426465425640345,-0.3757838858291507,0.2797379046678543,-0.9947623223997653,-0.19306209729984403,-0.07075943006202579,0.20504892989993095,0.591193329077214,0.4696119809523225,-0.49105784203857183,0.5942464331164956,-0.6322499890811741,0.123569596093148,-0.5627021905966103,0.48138213716447353,0.1334686023183167,0.5732598281465471,-0.13008704455569386,-0.30562937213107944,0.9514400460757315,-0.1427999660372734,-0.01872687228024006,0.2816087706014514,0.20084147388115525,-0.9030052670277655,0.662585754878819,0.011087597347795963,0.5124627519398928,0.11359853344038129,-0.9331072559580207,-0.7170356633141637,0.12243014574050903,0.3752823490649462,0.304048057179898,0.21745303738862276,-0.8142732731066644,0.10073336120694876,-0.2875933670438826,0.4617272983305156,0.045565490145236254,-0.9182183630764484,0.09293626202270389,-0.2964603933505714,-0.710105943493545,-0.6868990031071007,0.0022964738309383392,0.32636146806180477,-0.9157724007964134,-0.3024156470783055,0.5441219201311469,0.6399987693876028,-0.5480720386840403,-0.01377941807731986,0.573553015012294,0.8213391280733049,0.7597612086683512,0.007312692701816559,-0.8591944756917655,-0.463616241235286,0.4615246169269085,-0.8539636605419219,0.7412119475193322,-0.1974027710966766,-0.7951836362481117,-0.4032810153439641,0.7131525157019496,0.6778397164307535,-0.37927366280928254,-0.5770670091733336,-0.5252073998562992,0.603070923127234,0.45511449594050646,-0.1965308440849185,-0.27223145216703415,-0.7183338170871139,-0.6248180600814521,0.6108077741228044,-0.6976281092502177,0.8745476882904768,0.4379024598747492,-0.5905332528054714,-0.8461547400802374,0.08990981429815292,-0.3800840056501329,0.9580393070355058,-0.9987858361564577,0.11340139154344797,0.03850405244156718,-0.30035808868706226,-0.5889823604375124,-0.6439265687949955,-0.498349754139781,0.2961958656087518,-0.43416719045490026,0.24620415922254324,0.19118256447836757,-0.039837583899497986,0.9326727585867047,0.9566333028487861,0.9602494011633098,-0.06516041560098529,-0.015914940275251865,-0.5137030519545078,0.9289730256423354,0.26778672356158495,0.004240620415657759,-0.4593996894545853,-0.5293535967357457,-0.6480141319334507,-0.36843662429600954,-0.1752611449919641,-0.6645143944770098,-0.9339748248457909,0.06755801104009151,-0.4876737049780786,0.18671584781259298,-0.3063450916670263,0.38388747069984674,-0.47585237259045243,0.4718310167081654,0.5754529573023319,-0.9793524537235498,0.37133388686925173,0.6495570275001228,-0.5773560046218336,0.12270228564739227,0.3052306957542896,0.9705665651708841,-0.5964702828787267,-0.1405324232764542,-0.4726669639348984,0.6388295623473823,0.04233252117410302,0.6404832499101758,-0.7826675451360643,0.5825404096394777,-0.5501939924433827,0.907641289755702,0.9295692881569266,0.7050281204283237,-0.6406857399269938,0.4817511234432459,-0.9197574411518872,-0.41211152682080865,0.5226046461611986,0.5004849694669247,0.9977770079858601,-0.9871202926151454,-0.33558737905696034,0.38067608745768666,0.11790603306144476,0.17533796885982156,0.04298996506258845,0.9944172338582575,0.5414295122027397,0.4216658743098378,0.7203750568442047,-0.8215469415299594,-0.06590839708223939,-0.2389023625291884,0.5785886663943529,-0.5332169495522976,0.5231707906350493,-0.7613497697748244,-0.2352280542254448,0.8949420507997274,-0.46721065463498235,-0.5815198011696339,-0.6654137703590095,0.7534868028014898,0.5020175576210022,0.7415464743971825,-0.4758538920432329,-0.0725444802083075,-0.03844092972576618,-0.8991623986512423,0.7601109622046351,-0.7319970615208149,-0.47605884447693825,-0.07700014486908913,-0.26202779170125723,-0.2659734645858407,0.193349233828485,0.9184925574809313,-0.2982237637042999,-0.3549146195873618,-0.287150323856622,-0.5525740962475538,0.632331807166338,-0.2894869581796229,0.7108830790966749,0.6955973147414625,0.35989219695329666,0.7539997701533139,-0.30776251945644617,-0.7374453670345247,-0.39985356107354164,0.8154932605102658,0.6619076640345156,-0.17568249069154263,-0.17342495312914252,-0.45865847589448094,0.46274816896766424,-0.8270668149925768,0.06790631730109453,0.9608182683587074,-0.15471773827448487,0.12440812075510621,-0.21652318770065904,-0.9398243054747581,0.0634540687315166,-0.22743582678958774,0.6394299790263176,0.4901460953988135,0.24997563986107707,0.3810068997554481,-0.7193630612455308,0.5108066811226308,-0.4878271948546171,-0.5951714608818293,0.728639839682728,-0.13236397644504905,-0.7903097812086344,0.48168606869876385,-0.4044472584500909,-0.5959624098613858,0.7499224706552923,-0.33077165484428406,-0.3721592593938112,-0.32128510158509016,0.31876893248409033,0.08759063063189387,0.29761523054912686,-0.34733305126428604,-0.36421337723731995,-0.10039797844365239,0.8369311145506799,-0.37253742152825,0.16483126254752278,0.33941278932616115,0.9612933774478734,0.5685330759733915,-0.7444846457801759,-0.6222555204294622,0.3175037372857332,0.06838661571964622,0.5931184897199273,0.287810280919075,-0.04977722419425845,0.3893719054758549,0.8500962504185736,-0.6153451264835894,0.761470990255475,0.14308640733361244,-0.12011266406625509,0.4867834039032459,0.41626330791041255,-0.37654919316992164,0.18784717237576842,-0.9318415182642639,0.48357248678803444,0.8606947953812778,-0.05381775600835681,-0.21878055576235056,0.6791012766771019,-0.08066114829853177,-0.511391781270504,0.29161975253373384,0.6500761634670198,0.42235826840624213,-0.08639710582792759,0.936814138200134,-0.005418872460722923,-0.11891291243955493,-0.3616480575874448,-0.8502705753780901,-0.6911637578159571,-0.2883942723274231,0.8976534302346408,0.4044781029224396,-0.6973757739178836,-0.052034810185432434,0.5392208066768944,-0.878181622363627,0.9810429769568145,-0.48753396794199944,-0.8661006116308272,0.16608064249157906,-0.5180372861213982,0.7533015194348991,-0.258803887758404,-0.9559898688457906,0.8182610524818301,0.13914435729384422,-0.2651909152045846,0.06898050475865602,-0.03567381575703621,0.6356370942667127,-0.3850612612441182,0.6380033432506025,0.963697288185358,-0.18982785986736417,-0.9369942084886134,0.007583858445286751,-0.9859378952533007,-0.2191537502221763,0.048071521800011396,0.4146509850397706,-0.5229784715920687,-0.9453872763551772,0.41624617110937834,0.8616544064134359,0.6746860714629292,-0.9561549900099635,0.7958036297932267,0.8106506345793605,0.5732912588864565,-0.7776952087879181,0.8273370498791337,-0.874184844084084,0.34264793060719967,0.5751551971770823,0.702701386064291,0.19920556899160147,-0.3955008862540126,-0.7336974311619997,-0.5218107793480158,0.8959311135113239,-0.11039292486384511,0.8825283828191459,-0.5288855857215822,-0.7378573990426958,0.42046636436134577,0.7440930968150496,-0.14489694265648723,-0.04103074688464403,0.8283256310969591,0.7374195433221757,-0.3960553132928908,0.9571202513761818,0.3759687524288893,-0.27675225865095854,-0.7036188668571413,-0.8657720875926316,-0.42299239430576563,0.9466411452740431,0.07607791153714061,-0.30743690114468336,0.6787248863838613,0.46907250257208943,0.6428569182753563,-0.36719023482874036,0.26449709851294756,0.31150786112993956,-0.37220674473792315,0.5024152905680239,-0.7878359868191183,-0.662277452647686,-0.7105868882499635,0.7132356078363955,-0.40635205153375864,-0.5906573394313455,0.5855366322211921,-0.44633048214018345,-0.4769583838060498,0.7510825400240719,0.6978322556242347,0.4506601565517485,-0.6245198934338987,-0.8184254402294755,0.41577270347625017,0.8807424856349826,0.9690923844464123,-0.8223235909827054,-0.339024371933192,0.14948372216895223,0.12827835977077484,-0.5514657162129879,0.6891002152115107,-0.5482895006425679,0.03373775165528059,-0.706192540936172,-0.3967248764820397,0.994653086643666,0.6469800723716617,-0.7637275350280106,0.6912614786997437,-0.8107705861330032,0.7326451032422483,-0.7296619713306427,-0.33609991101548076,0.8876711940392852,-0.6937617943622172,0.1547785666771233,0.6224655332043767,-0.9947189246304333,-0.5085106734186411,0.6854605125263333,-0.7192018097266555,-0.6008592625148594,-0.1882893624715507,0.7332047848030925,0.357716953381896,0.41740695340558887,0.6993640051223338,0.5569909950718284,-0.13535288907587528,-0.6388405649922788,-0.5313965557143092,-0.3976554814726114,0.9062706124968827,-0.3862954913638532,-0.3549750465899706,0.02121955156326294,0.3366505168378353,0.5986892660148442,0.22196945128962398,0.1692632050253451,-0.6297292085364461,0.23773294128477573,0.48609445383772254,-0.27562822168692946,0.9488455122336745,-0.6097728363238275,0.39465528540313244,0.47583752358332276,0.3637306001037359,0.28067724173888564,0.938043505884707,0.5974508649669588,-0.4450389901176095,-0.4833557065576315,0.027656910941004753,0.048830217216163874,-0.322290419600904,-0.6341111208312213,0.5338737731799483,0.35581016913056374,0.3411139673553407,-0.7459230488166213,0.8536264505237341,-0.6853708028793335,-0.8886089152656496,0.5662552509456873,0.14591875672340393,-0.8205116963945329,0.14033788768574595,-0.9080438134260476,-0.7143862335942686,-0.684270350728184,0.6374709424562752,-0.09699905291199684,0.4224599804729223,0.8589506186544895,-0.1084783598780632,0.742051815148443,-0.8589065251871943,0.30304549681022763,0.38768817763775587,0.3043742892332375,0.8357433015480638,0.6438530841842294,-0.947927008382976,-0.7882189396768808,0.8946566972881556,-0.6653432743623853,0.0434689954854548,-0.20603538304567337,0.6186464875936508,0.08507659891620278,-0.10213787760585546,-0.8375692144036293,0.3577231280505657,-0.03744971193373203,0.09960873425006866,0.5646534510888159,0.19808053923770785,-0.8019902668893337,0.1376184718683362,0.03302798746153712,0.9497365313582122,-0.424854860175401,0.11280787643045187,-0.18623024877160788,-0.8213659296743572,0.6002444452606142,0.2783426297828555,0.14815127244219184,-0.605319966096431,0.3297437350265682,-0.6742437882348895,-0.5331348278559744,0.18773952079936862,-0.47049939120188355,-0.5600288319401443,0.35689694760367274,-0.09027803363278508,0.887483287602663,-0.648125316016376,-0.4956060419790447,0.7707290817052126,0.7968574962578714,-0.9461444858461618,0.5832186192274094,-0.6349339890293777,0.10293466784060001,-0.4037553761154413,0.9162351884879172,0.6947477557696402,0.11463490501046181,0.17546985065564513,-0.3125439756549895,-0.8331396486610174,-0.6153311314992607,-0.4060720643028617,0.12485734652727842,-0.9350444856099784,0.022790444549173117,0.010585278272628784,-0.028229291085153818,0.3611327246762812,0.2783483169041574,-0.059229780454188585,-0.7849824614822865,-0.40327444206923246,-0.5397799494676292,-0.7904572761617601,-0.19744698703289032,-0.5735120177268982,-0.8344435566104949,-0.6016986821778119,0.7469430747441947,0.9266778607852757,0.036384714767336845,0.15178286051377654,-0.7541482746601105,0.38106879219412804,0.7858122047036886,-0.9462556745857,-0.363638018257916,0.7011791435070336,-0.2268812726251781,-0.07986494293436408,-0.5216788467951119,-0.24971083365380764,-0.19142057094722986,0.09167666453868151,0.6445813542231917,0.948171847499907,-0.07591109350323677,0.40099728340283036,-0.6297904066741467,0.6222424628213048,-0.1520163263194263,0.6610745876096189,0.7769036586396396,-0.8151761419139802,-0.7876515900716186,-0.7621096963994205,-0.8807753520086408,-0.5540624125860631,0.07350265607237816,-0.6135772950947285,0.9555135886184871,0.8390533444471657,-0.10580649320036173,0.5665528485551476,-0.6917848391458392,-0.9685285305604339,-0.3429488791152835,-0.8184857182204723,-0.8681991137564182,-0.37465039221569896,0.8445714772678912,-0.029265080578625202,0.8961718501523137,0.3159057912416756,0.3884949740022421,0.9676770432852209,0.6144766109064221,-0.3762802076525986,0.6514771683141589,0.8049627249129117,-0.06687586894258857,0.08362906565889716,-0.5521996961906552,0.8108828947879374,-0.9777696602977812,0.9022596273571253,0.18500370625406504,0.14290127949789166,0.5387957394123077,0.7397506632842124,-0.033704256638884544,0.2075107228010893,0.20462513994425535,0.44253475358709693,-0.39337285654619336,0.002550616394728422,-0.9949986776337028,0.828709829133004,-0.6508788662031293,-0.22219317127019167,0.12065169541165233,-0.7524187564849854,-0.800320633687079,0.3588421493768692,-0.2305915099568665,-0.9427779451943934,0.7584429602138698,-0.4327227184548974,-0.5522354287095368,0.23543898109346628,0.3893725019879639,-0.32106222631409764,0.6581323095597327,0.628703810274601,-0.078347641043365,0.061073423363268375,-0.5896535171195865,0.809483848977834,-0.25554339215159416,-0.5382593292742968,-0.17452161572873592,-0.5844048727303743,0.1951435524970293,0.8796582869254053,0.08222771529108286,-0.4249769952148199,-0.46904816944152117,-0.8101996961049736,0.8277606070041656,-0.34672377444803715,0.1241232636384666,-0.45151223381981254,-0.946784236934036,-0.6244104937650263,-0.051599464379251,0.9380563553422689,-0.7331883003935218,0.7621111921034753,-0.33063960913568735,0.058615442365407944,0.7176489722914994,-0.02427320834249258,-0.35739035718142986,-0.2727291858755052,0.9733626898378134,-0.005904229357838631,-0.2564292810857296,-0.04699513781815767,0.10936489747837186,0.7673821025528014,0.08952438738197088,0.145704154856503,-0.2105056345462799,-0.7286580353975296,-0.781384774018079,-0.7841664426960051,0.3116866322234273,-0.8824353413656354,-0.7790544223971665,0.5185018745251,-0.6166772255674005,-0.8579156417399645,0.46631437772884965,-0.3007710948586464,-0.5954347727820277,0.8548792046494782,-0.5129553396254778,-0.3428094587288797,-0.7159474571235478,-0.4602022203616798,0.33269021194428205,-0.033262540120631456,0.6744626858271658,0.1848301226273179,0.3537252224050462,0.20303318183869123,0.016851525753736496,-0.44153299927711487,-0.7202981542795897,-0.4169557117857039,0.37883356120437384,-0.9881460927426815,-0.05352593259885907,0.05575665505602956,-0.6667908299714327,-0.5371224572882056,0.5876537845470011,0.46360374754294753,-0.5183025104925036,0.8519603163003922,0.22572333831340075,0.6341002085246146,0.2825179365463555,0.8223419743590057,-0.52350103110075,-0.7682284354232252,0.32422450091689825,-0.8790817074477673,-0.20432251319289207,-0.10126019036397338,0.30909303575754166,-0.13803894724696875,-0.32853894028812647,-0.17102893581613898,0.7486568293534219,-0.5444588870741427,-0.0794750452041626,-0.15171195939183235,0.875637277495116,0.7029838403686881,-0.03299307217821479,0.13066939311102033,0.9224824965931475,0.12612467352300882,0.5516779632307589,-0.9034442873671651,0.8801722512580454,0.6769590550102293,0.6748205982148647,-0.3522508139722049,0.30478741228580475,0.8575102868489921,0.3940569940023124,-0.6332908337935805,0.2909552971832454,-0.497431059833616,0.48908927105367184,-0.6671634749509394,-0.5473189097829163,-0.1331796357408166,0.18234212510287762,0.7600182434543967,0.014335641637444496,0.5841271444223821,-0.3010823451913893,0.8450627094134688,-0.2921857973560691,-0.9455689615570009,0.12193637061864138,0.3376629394479096,0.5748139368370175,0.8222464825958014,0.5267273988574743,0.7675375849939883,-0.6345486952923238,-0.3499849350191653,0.8119366364553571,0.9708037744276226,0.6141231772489846,0.2944743763655424,0.2148693073540926,0.6453075115568936,-0.41842999029904604,0.6972281509079039,0.3378280699253082,-0.9852475305087864,0.5932119037024677,0.7622628654353321,0.8420284939929843,-0.26554697938263416,-0.8754586013965309,0.5906736850738525,-0.6437727762386203,0.3808669256977737,-0.8770308904349804,0.8413055911660194,-0.6643147924914956,-0.5937372311018407,0.14431602647528052,0.6550252893939614,0.061006270814687014,-0.9059965601190925,0.7036285395734012,0.6703589465469122,0.5695604369975626,-0.25919362623244524,-0.685100588016212,0.3850430245511234,0.154762364923954,-0.3910006773658097,0.48640316678211093,0.39361455431208014,-0.35925351921468973,-0.4419823167845607,0.4097300358116627,-0.5272832931950688,0.19176107039675117,0.5073779136873782,0.16657879250124097,0.07424845732748508,-0.44001596746966243,-0.8427205192856491,-0.2622641618363559,-0.39974442031234503,0.3381732674315572,-0.08745215134695172,0.43925967859104276,-0.6679707653820515,-0.7520326217636466,-0.6205220888368785,-0.12307470198720694,-0.3769585760310292,0.879146286752075,0.9852186208590865,0.03080097958445549,0.9827196593396366,-0.9937610845081508,0.8745182333514094,0.4283397663384676,-0.5261954530142248,-0.353469533380121,0.4838766320608556,0.4480424211360514,-0.7260909015312791,0.918142615351826,0.9313719645142555,0.3435171260498464,-0.7596678333356977,-0.6475397618487477,-0.2690162882208824,0.046561571303755045,-0.8173048552125692,-0.7250924329273403,0.5559157407842577,0.04897706303745508,-0.12565445434302092,0.5779883889481425,0.9876599796116352,-0.10186593281105161,-0.9975210041739047,0.8495205636136234,0.8979166178032756,-0.8501495160162449,-0.27333790296688676,0.4145251731388271,0.13774771383032203,0.02656918577849865,-0.8348353309556842,0.7804789617657661,0.2041818485595286,0.3079005996696651,-0.6524946885183454,-0.6826236695051193,0.03598648263141513,0.49874255061149597,0.7547391233965755,-0.35834684455767274,0.6686452943831682,-0.0839824378490448,0.4576838230714202,0.5224580271169543,-0.41959767462685704,-0.47632748633623123,-0.41057300474494696,-0.20646726107224822,-0.45896358182653785,0.45177989872172475,0.9868678939528763,0.1682767360471189,0.7081921622157097,-0.8529355120845139,0.3112191967666149,-0.9198476765304804,-0.8846706748008728,0.929756126832217,0.06731196958571672,-0.6435957066714764,-0.08967371936887503,-0.0232855174690485,0.10565595608204603,-0.058941928669810295,-0.01501991180703044,-0.7992087062448263,-0.864063513930887,-0.6905551864765584,0.4552176808938384,-0.19681513542309403,-0.26106034126132727,0.38352321879938245,-0.21176859084516764,0.38328674994409084,0.26151448767632246,-0.39607151970267296,0.38636155566200614,0.5167456269264221,0.590592454187572,-0.8249744856730103,-0.31942613050341606,0.5737809026613832,0.8851597881875932,-0.13861770741641521,0.3302494287490845,-0.8319865637458861,-0.42852609790861607,-0.04969293437898159,-0.08921218570321798,-0.08622580347582698,0.42183274449780583,-0.17160272086039186,0.04235857352614403,-0.5196330291219056,0.6269685747101903,0.3673916542902589,0.8223727839067578,0.6911795018240809,0.7379349069669843,-0.7161530535668135,-0.9421758530661464,-0.31652140617370605,-0.49388357950374484,-0.4654823001474142,-0.055118503049016,-0.9184952420182526,0.8491278998553753,-0.012992344796657562,-0.32939305575564504,-0.160475414711982,-0.25767259625718,-0.9163224385119975,-0.7161785662174225,0.6005080169998109,-0.46189553244039416,-0.15956780454143882,-0.6013360032811761,-0.10870768036693335,-0.681516042444855,0.11062653129920363,-0.9536275006830692,-0.7261188644915819,0.3480153833515942,0.4499930525198579,0.16127746971324086,0.8047175416722894,0.34272664366289973,-0.17035908019170165,0.3543854523450136,0.05961220059543848,-0.049943318124860525,0.8652892634272575,0.3918437319807708,0.665841672103852,0.2413965743035078,-0.060981317423284054,-0.9215588243678212,0.6031466848216951,-0.513154230080545,0.6063020206056535,0.29691130900755525,0.49661702662706375,-0.9682703227736056,0.8598426771350205,-0.8092618184164166,-0.3464790051802993,0.22519216826185584,-0.41343297343701124,0.5201137312687933,0.29798092506825924,0.36114890268072486,-0.7736184480600059,0.5558820976875722,0.2840290442109108,-0.39106809673830867,0.6978814685717225,-0.14125778386369348,0.4270510086789727,-0.7795673562213778,-0.579014116898179,-0.533341133967042,0.10182955116033554,-0.8715924308635294,0.11946140928193927,0.346268427092582,0.8465344063006341,0.4985203263349831,0.6244330140762031,0.9539253446273506,0.3960057129152119,0.7180399154312909,-0.7697800565510988,0.8177985497750342,-0.030859689228236675,-0.669317627325654,-0.7969995937310159,-0.41505738673731685,-0.2817855682224035,-0.05321134068071842,0.5756549006327987,0.04739130614325404,0.2689446061849594,-0.2389707420952618,0.3379545588977635,-0.4864568221382797,0.7352231312543154,0.8714946364052594,0.6771371904760599,0.36203816859051585,-0.9579435749910772,-0.724701170809567,-0.8006150042638183,-0.8181517599150538,0.46137250075116754,0.14262185292318463,0.8127077673561871,-0.6382838618010283,-0.6911592120304704,0.6064297207631171,0.28857602644711733,0.9774125320836902,0.5116465832106769,0.9556776299141347,-0.8514450299553573,-0.43254089588299394,0.486503133084625,0.7155593330971897,0.2959820721298456,0.6849403460510075,-0.3966912175528705,0.10160516295582056,-0.2721910737454891,-0.4911813233047724,0.7669361084699631,0.4188094660639763,0.7976806797087193,0.23546984186396003,-0.7104753567837179,-0.7467344836331904,-0.6980025977827609,0.8931354791857302,0.7068508411757648,-0.013823337852954865,0.4398605986498296,-0.32534563541412354,-0.6310723703354597,-0.34016056172549725,0.8777744229882956,-0.030862247571349144,0.3332548295147717,0.5520613347180188,0.8713379991240799,0.7027672054246068,-0.791526519227773,-0.7211182485334575,-0.22099003940820694,-0.3547049555927515,0.20197973772883415,0.5598466857336462,0.700533399824053,0.7461294438689947,-0.15219524456188083,-0.09079085104167461,0.8941614204086363,-0.6548982299864292,-0.12100958777591586,-0.8871238236315548,0.6775945392437279,-0.8102458133362234,-0.7958517991937697,0.6499886633828282,-0.5411657751537859,-0.479075419716537,-0.7666434203274548,-0.9539017784409225,0.9631668124347925,0.9779403945431113,-0.21857550693675876,-0.1953931450843811,0.1639087274670601,-0.9549104841426015,0.16170664923265576,0.8257282353006303,-0.8535335673950613,-0.9298861315473914,-0.11953752255067229,0.6827113190665841,0.30942943692207336,-0.7716453722678125,-0.680346998386085,-0.16546848509460688,0.5512915225699544,-0.24582629557698965,0.2611082964576781,0.70527413347736,0.4401755165308714,-0.42643433390185237,-0.22844105074182153,0.8688660589978099,-0.6822813926264644,0.9059679666534066,0.19514673901721835,-0.7906073308549821,0.23320623440667987,0.08969417028129101,-0.3411958431825042,-0.49257952393963933,-0.8842356875538826,0.2387737208046019,0.008828811813145876,-0.6220093378797174,-0.26730173267424107,0.08684071153402328,-0.4146623653359711,-0.08031211141496897,-0.2645090138539672,0.3754275836981833,-0.47041368018835783,0.6253514466807246,-0.5622611371800303,-0.02128119906410575,-0.33297702902927995,0.9028366566635668,0.5328879384323955,0.586414959281683,0.3944839281029999,-0.28562966687604785,-0.10475222393870354,0.7088857912458479,-0.3663397212512791,-0.5806329166516662,-0.1693077706731856,-0.9512271438725293,0.9962343848310411,-0.10118666896596551,-0.6614207280799747,-0.6908743320964277,0.09265303704887629,0.8017566846683621,0.2734920307993889,0.8362202467396855,-0.11361922463402152,-0.9274853649549186,0.9918247843161225,0.2525662244297564,0.8907981845550239,-0.8747844365425408,-0.7579093370586634,-0.10438948590308428,-0.4483710350468755,-0.1666828729212284,0.9208174394443631,-0.31980859907343984,0.07280447334051132,0.8151522646658123,-0.6050627278164029,0.8417330821976066,0.5900912857614458,-0.9375736401416361,0.07038088608533144,-0.3658079672604799,0.31286464584991336,-0.09148559626191854,0.30979916732758284,-0.24744842061772943,0.855488171800971,-0.30101062450557947,-0.7388974539935589,-0.8008732325397432,0.901801866479218,-0.9027964202687144,0.7701176893897355,-0.947199635207653,-0.45302924746647477,0.49358042515814304,-0.6712888348847628,-0.9830532046034932,0.5439128275029361,0.5992491315118968,0.9325297586619854,0.8262452566996217,0.875134245492518,-0.5348326307721436,0.3629099908284843,-0.9120990955270827,-0.14332273043692112,-0.38806138653308153,0.9876866973936558,0.608864267822355,0.17816323461011052,0.0778623684309423,-0.7923304308205843,0.9292867304757237,0.5381585396826267,0.9068500604480505,0.9351893193088472,0.022588077932596207,0.7511890833266079,0.6926101576536894,0.43347081169486046,-0.9684695075266063,0.8321201372891665,0.8163832742720842,0.5740122906863689,-0.18431130331009626,-0.7037747139111161,-0.3114235009998083,0.17320116376504302,0.7506619803607464,-0.1861131484620273,0.7891816939227283,-0.22017931798473,0.29872545367106795,-0.10625691385939717,0.8050682917237282,-0.5786226158961654,-0.5399305964820087,0.8752536908723414,-0.38113206718117,-0.9696019268594682,0.25318720331415534,-0.9690208043903112,0.38610390247777104,0.7860711207613349,-0.2658934108912945,0.5608753361739218,0.9299148712307215,0.15430534351617098,-0.018725740257650614,-0.19795835483819246,0.40347927436232567,0.9927120138891041,0.8123477813787758,0.039894959423691034,-0.9049561335705221,0.14216513186693192,-0.03897477267310023,0.9294601385481656,-0.25004779594019055,-0.758074164390564,-0.9128409796394408,0.1326069883070886,-0.022318510338664055,0.49993736669421196,0.40560850594192743,0.8161237859167159,-0.824015005491674,0.6505745300091803,0.2823158618994057,-0.5698738833889365,-0.9601212292909622,-0.9195335870608687,0.5933035933412611,-0.6656777649186552,-0.2432648865506053,0.2996008265763521,0.07523461012169719,-0.214584494009614,0.618949237279594,-0.10463776951655746,-0.41220685048028827,-0.6095253424718976,-0.2449668338522315,0.5855310531333089,-0.6764077967964113,0.4978281930088997,-0.005866207182407379,0.9250108106061816,-0.04724797187373042,0.4930497193709016,-0.1557411765679717,0.36533689638599753,-0.4449479919858277,-0.8001872459426522,-0.2367403614334762,0.9943469138815999,0.7213171077892184,-0.5215710233896971,-0.8453011955134571,-0.11270548310130835,0.07097105728462338,-0.5457117068581283,-0.926696099806577,-0.6950446255505085,0.9070506058633327,0.7473948514088988,-0.8815085277892649,-0.9854245004244149,-0.34519112948328257,-0.5913032707758248,0.026831665076315403,0.3814636841416359,-0.966057394631207,-0.22567470790818334,-0.08108872082084417,-0.8602029145695269,-0.14761538105085492,-0.6606386499479413,-0.67626319732517,0.07840089686214924,-0.9380062441341579,-0.16872945334762335,0.10127366660162807,0.4649095553904772,-0.7837843718007207,0.9250015718862414,0.5643175304867327,0.6021425942890346,-0.09727225452661514,-0.24894356494769454,0.09956794697791338,-0.16883837152272463,0.16646000044420362,-0.10120804840698838,-0.784163520205766,0.7886325856670737,-0.09739777306094766,0.8789426852017641,-0.629838262218982,-0.7605682890862226,-0.4394579501822591,-0.8924653362482786,0.7701190430670977,0.8728959416039288,-0.5500524742528796,0.452783462125808,-0.27976072672754526,-0.2720983000472188,0.3417587415315211,0.14782297192141414,0.13459141459316015,-0.2618624591268599,0.902013011276722,-0.3966796393506229,-0.19262893358245492,-0.9229326755739748,-0.8741835867986083,0.4525612988509238,0.5377848884090781,0.02759800525382161,-0.1913617136888206,-0.7038995651528239,0.20296939089894295,-0.7701811804436147,-0.10397167783230543,0.3623060118407011,-0.6907173353247344,0.6243907790631056,-0.323381788097322,-0.33542662346735597,0.8237352329306304,0.0179191785864532,0.768611226696521,-0.8879052810370922,-0.30399229004979134,0.04036280931904912,0.8655280829407275,-0.7544519039802253,-0.6288381195627153,0.3119798735715449,0.47161303693428636,-0.16961118625476956,0.04136757832020521,0.06508798012509942,0.33978706784546375,-0.11238731117919087,-0.12259240308776498,-0.026560280937701464,0.10761961154639721,-0.49960286915302277,0.4254105743020773,0.10136768780648708,0.7464575385674834,-0.02167061995714903,0.38335431227460504,0.9940314474515617,0.8363466653972864,-0.7374019562266767,-0.5482032704167068,0.7389205940999091,-0.43273639446124434,-0.6141280042938888,-0.48983386158943176,-0.5181043576449156,-0.8339389339089394,-0.79422636795789,-0.7718045627698302,0.01877528242766857,-0.3020573020912707,-0.796130882576108,-0.39226015750318766,-0.6358803911134601,0.01936155278235674,0.2995451330207288,0.2167301271110773,-0.011965896934270859,-0.30728999665006995,0.9356712959706783,0.20329022081568837,-0.7839649468660355,-0.12013168260455132,-0.7625829167664051,0.3751492155715823,0.5764782489277422,0.9128767885267735,0.9806875567883253,-0.5104828607290983,-0.3192829489707947,0.04393243184313178,-0.5070887259207666,-0.1069261054508388,-0.4206451210193336,-0.25001924159005284,-0.6653785333037376,-0.37579129403457046,0.9278614725917578,0.21322341728955507,0.9866830883547664,-0.14396316884085536,-0.030387240927666426,0.9971291031688452,0.6331600188277662,-0.3893656791187823,0.8650360410101712,-0.03644418576732278,0.873800493311137,-0.4590718522667885,0.6886956766247749,0.7191986050456762,0.5119652766734362,-0.2779826275072992,-0.11954921716824174,-0.041525513865053654,0.05266027711331844,0.26279977383092046,0.5416338038630784,-0.34269270161166787,0.4990532570518553,0.8520655101165175,0.37170628318563104,0.8764341282658279,0.4521218962036073,0.2582812742330134,0.6445326418615878,0.06602629600092769,-0.3207142446190119,0.20408706413581967,-0.3482480263337493,-0.0908792745321989,0.17590324161574244,0.4189992304891348,0.874645106960088,-0.3414803557097912,-0.9492399003356695,0.6488605812191963,0.3136462923139334,-0.8967978432774544,0.5231179664842784,-0.5244828718714416,0.7837907839566469,0.3143346426077187,-0.6358166239224374,-0.8124235384166241,0.09540678421035409,-0.587437845300883,0.8747408734634519,-0.8546605478040874,-0.23256540345028043,0.0038825543597340584,-0.9566169437021017,0.4025416085496545,0.5564018595032394,-0.854107778519392,-0.8067016829736531,0.21283000754192472,-0.5387285556644201,0.011257339268922806,-0.23085915064439178,0.5487357913516462,0.5174642209894955,-0.5447409623302519,-0.6515299859456718,-0.5814198460429907,0.3104235506616533,-0.41533489944413304,0.7349070739001036,0.7941047544591129,-0.8320054882206023,-0.5077053681015968,0.3612995916046202,0.7951459786854684,-0.3001107075251639,-0.6320998980663717,-0.739992200396955,-0.724675219040364,-0.5929175289347768,0.0647694175131619,-0.5416665240190923,0.7776956004090607,-0.7713671852834523,0.2822660366073251,0.2697252556681633,0.44224650133401155,-0.41827649157494307,-0.08366445312276483,-0.05597001500427723,0.021556970197707415,-0.5457545118406415,-0.6883859257213771,0.9886336643248796,-0.5782309137284756,-0.19637107383459806,0.907237381208688,-0.6258131582289934,0.3271282031200826,-0.06159112090244889,-0.42625407641753554,-0.09432029910385609,-0.5758974701166153,-0.91387925343588,-0.4847583840601146,-0.6192679130472243,-0.8598063313402236,0.5507632242515683,-0.7819624203257263,-0.9725258816033602,-0.4989733644761145,0.3625125540420413,0.011729291174560785,0.8359053106978536,0.11674680141732097,-0.6809996506199241,0.7975998427718878,-0.4125950918532908,0.1907689576037228,0.16412259405478835,-0.5486858878284693,-0.22028784593567252,-0.14466036623343825,-0.02628026669844985,0.5467233816161752,-0.5429802131839097,-0.4116765111684799,0.17307272413745522,0.026758164633065462,-0.500106283929199,0.4886622643098235,0.9873667573556304,-0.43434720672667027,-0.34396042209118605,-0.4492034111171961,0.29948640847578645,-0.19218624103814363,-0.7724268645979464,0.059265627060085535,-0.3873669467866421,0.17732601892203093,0.1748179029673338,-0.8985337130725384,0.009838874451816082,0.9306134018115699,0.875834952108562,-0.303524911403656,0.2503812969662249,-0.6005375501699746,0.9478462445549667,0.7222569333389401,-0.26232464611530304,0.841258772648871,-0.03618003474548459,-0.09620690764859319,0.5198708409443498,-0.3200079998932779,-0.7789906254038215,-0.4150458136573434,-0.17907533515244722,0.003356397617608309,0.9596811588853598,0.358287297654897,-0.9603992290794849,0.17914437036961317,-0.17413105815649033,-0.8335671494714916,-0.21505470527336001,0.08076556120067835,0.32483666064217687,0.17073125625029206,-0.9915427947416902,0.7970720054581761,-0.5260459585115314,0.19945585308596492,-0.5341980415396392,0.27518673334270716,0.07899764785543084,0.19534277729690075,0.687038850504905,-0.9088577195070684,0.17247708234936,0.16957136802375317,-0.4012514497153461,0.5452570607885718,0.4387512616813183,0.6330278818495572,-0.36510989628732204,-0.9602674837224185,-0.485140229575336,0.8285885998047888,-0.645497677847743,0.09364688629284501,0.6689773802645504,0.919267050921917,-0.2135377898812294,0.6423321557231247,-0.6905913231894374,0.871737552806735,0.05321785621345043,0.5592612065374851,-0.8214104739017785,0.47942311596125364,-0.7414804440923035,-0.8301033382304013,-0.4168332959525287,-0.4824129557237029,0.2118322686292231,0.5764635330997407,0.7058803797699511,-0.008319229818880558,0.06471000937744975,-0.6211345009505749,-0.6549934418871999,0.22336439602077007,0.30747929820790887,0.5996255245991051,0.5783370630815625,0.10741941910237074,-0.18261382216587663,0.1400084476917982,-0.4078066167421639,-0.16550594614818692,0.4052916946820915,-0.6589653971605003,-0.5499616302549839,0.09142223233357072,-0.2262195055373013,-0.188179527875036,0.36697665322571993,-0.7366407201625407,0.5272243577055633,0.6677094688639045,-0.5359901105985045,-0.07135649910196662,-0.803593136370182,0.8181251473724842,0.15566245280206203,-0.6898364364169538,-0.42425635643303394,-0.7358239339664578,0.139107306022197,-0.7600410557352006,-0.7799649522639811,0.7028188221156597,-0.6346637587994337,-0.5988484476692975,0.17629121523350477,0.3388204090297222,0.956124129705131,-0.31989593151956797,-0.6562512470409274,0.6384007409214973,-0.7106425128877163,0.7023511403240263,-0.2527132206596434,0.6342144422233105,0.530577702447772,0.9951130608096719,0.3358232006430626,-0.018425486981868744,0.5357115198858082,-0.6971875983290374,-0.7833533175289631,0.6561993146315217,0.8799488111399114,0.19890969386324286,0.41119039384648204,0.009844726882874966,-0.47854218585416675,-0.8805146277882159,-0.8939790744334459,-0.456482476554811,-0.6764472746290267,0.22967962035909295,-0.6551273567602038,0.3474281020462513,-0.36351253371685743,0.4599449336528778,-0.07745363051071763,-0.20867373840883374,-0.9044065331108868,-0.8235635538585484,0.9187765968963504,-0.05021373648196459,-0.4690110641531646,-0.5311874663457274,-0.7628190843388438,-0.799101434648037,-0.3361368956975639,-0.313555593136698,0.52835234394297,0.04000369552522898,-0.47089159255847335,-0.6420448496937752,-0.6048383768647909,-0.6271945033222437,-0.17848058557137847,0.12880174396559596,-0.8073871247470379,0.40687453746795654,0.931214161682874,0.10622751107439399,0.4153353590518236,-0.8569388766773045,0.1977278422564268,-0.3443659236654639,-0.40670620184391737,-0.6804064367897809,0.2939937962219119,-0.726406158413738,0.2875671978108585,-0.43145437352359295,0.8766333810053766,-0.17005800874903798,0.8579396563582122,-0.3250579060986638,-0.27668340131640434,0.4608975648880005,-0.6449067890644073,0.6186741250567138,-0.8396737291477621,0.8294015843421221,0.5464277425780892,-0.7230337299406528,0.25531703140586615,-0.9138729483820498,0.3091282886452973,-0.4036722960881889,0.4234375851228833,0.18523953016847372,-0.4452718975953758,0.2109481282532215,0.4361675321124494,-0.8262221580371261,0.5269808080047369,-0.6953923180699348,-0.389713529497385,0.09787066653370857,0.999659517314285,-0.9229273917153478,-0.07479190453886986,-0.7002051081508398,0.44097170094028115,0.6428371779620647,-0.23342898208647966,0.36345465341582894,-0.4730463926680386,0.5963140269741416,-0.9249392356723547,-0.07707065483555198,-0.2651519104838371,-0.48881463147699833,-0.2565937442705035,-0.5868854247964919,0.21784512884914875,-0.9940285002812743,-0.8655189457349479,0.2798465774394572,0.6248569670133293,0.025619082152843475,-0.3378062089905143,0.6294542960822582,-0.6668644617311656,0.4844065932556987,-0.9161394177936018,-0.9421646264381707,-0.9802519669756293,-0.18739072559401393,0.6092812311835587,0.3991649909876287,0.903046356048435,0.4048295682296157,0.31120195146650076,-0.5234481398947537,-0.40393415139988065,0.5970836249180138,-0.6389921433292329,0.6858486621640623,-0.46313557820394635,-0.2551157674752176,0.21104543888941407,-0.18912587547674775,-0.1900131399743259,-0.23956407979130745,-0.5746576166711748,0.3275278811343014,-0.6542471805587411,-0.6794015476480126,-0.27647914085537195,0.2937699290923774,0.8917854591272771,-0.6988679217174649,0.1751277376897633,0.48064762633293867,0.7946324688382447,0.782041443977505,-0.1892392784357071,-0.828418122138828,0.6651280554942787,-0.38707178132608533,-0.5523269237019122,-0.0002831104211509228,0.9175928174518049,-0.6283778022043407,-0.2765668430365622,-0.5647915536537766,-0.7284283400513232,0.9396313698962331,-0.6006510192528367,-0.9622382763773203,0.026140958536416292,0.02238835860043764,-0.25997035624459386,0.01870174426585436,0.13602754240855575,0.026920105796307325,-0.8199961446225643,-0.002583053894340992,0.6948371473699808,0.16148079885169864,-0.1609019711613655,-0.6750967223197222,-0.2971740774810314,-0.9556580721400678,-0.3362511177547276,0.6209770096465945,0.537752206902951,0.32380303321406245,0.4400509283877909,0.26083523174747825,-0.9968332308344543,0.20529825426638126,0.4393733711913228,0.18822705512866378,0.9969724295660853,0.7003079769201577,-0.737544653005898,-0.7866659024730325,0.06169845722615719,0.18639253824949265,0.7859507231041789,0.5848679007031024,-0.21002236334607005,-0.6299030417576432,0.7103083585388958,-0.8626303472556174,0.6347551657818258,0.2876051999628544,0.44969491101801395,0.1205302900634706,0.22230316931381822,0.6577594946138561,0.13622948480769992,-0.8165506650693715,0.8128374912776053,0.6751225553452969,0.6156863588839769,0.6630837759003043,0.6090805227868259,-0.6863497640006244,0.29099755035713315,-0.7094803121872246,-0.40916048595681787,-0.3377732210792601,0.14857920072972775,0.30932102678343654,0.6926764887757599,-0.32090477040037513,-0.9924100451171398,0.42296337243169546,0.682909645140171,-0.45651690009981394,-0.6782745504751801,-0.10116651700809598,0.37776408484205604,0.09946582745760679,0.9654972474090755,0.1843279511667788,-0.41871369257569313,0.9452958297915757,0.6774037638679147,-0.6461045476607978,-0.2884158566594124,0.46408405574038625,0.817637822125107,0.7894779150374234,0.3045351575128734,0.3034818093292415,0.8136068731546402,0.12886627111583948,0.058881690725684166,-0.2554285963997245,-0.23030045069754124,0.14221328496932983,-0.09323540981858969,-0.3214931581169367,0.3409402254037559,0.8330497671850026,-0.7097102697007358,0.31864648777991533,0.6279908758588135,-0.18549788417294621,-0.5585834505036473,0.18974469136446714,0.6647959412075579,0.34810033114627004,-0.7982559911906719,-0.04251091321930289,0.23387554939836264,0.38520145509392023,0.5326770674437284,-0.6934251897037029,0.7498046406544745,-0.41815854981541634,-0.07301385467872024,0.8284919438883662,-0.05437554465606809,0.2338206097483635,-0.5073837651871145,-0.06827120017260313,-0.4554483098909259,-0.7628587349317968,0.7751751658506691,0.8018101966008544,0.8164893314242363,0.4839883712120354,0.9020640961825848,-0.2079584482125938,-0.5962057295255363,0.3404025533236563,0.40278984140604734,-0.37237136298790574,-0.645771480165422,-0.3371384236961603,-0.028549947310239077,-0.6828400706872344,-0.7535358904860914,-0.7513156244531274,-0.7575150751508772,0.5098412036895752,-0.6471709473989904,0.23130106506869197,0.6794203585013747,0.29517685202881694,-0.9036878664046526,0.4869096437469125,0.41261120652779937,-0.7309857541695237,0.8983103348873556,-0.3477818174287677,0.016087610740214586,-0.994738687761128,0.47774797631427646,-0.32074627140536904,-0.07775073312222958,0.5649436512030661,0.8255848004482687,0.1432211184874177,-0.6235968512482941,-0.5634414865635335,-0.914157192222774,-0.1092860046774149,0.1255302457138896,0.5416520819999278,-0.1044889846816659,0.7025639447383583,-0.14548800606280565,0.7703754552640021,0.8550530476495624,-0.43018512474372983,0.3528906209394336,-0.2929319981485605,-0.6622137879021466,0.2905557337217033,0.124001853633672,0.19497588276863098,0.5767950052395463,-0.7275378745980561,-0.5805384945124388,0.14032882545143366,-0.32272339006885886,0.9822502909228206,-0.8732588835991919,0.34923570416867733,-0.8350883149541914,-0.22119708545506,0.42792182555422187,-0.8570617665536702,0.29391988134011626,0.7525713979266584,-0.06852858560159802,-0.6502625397406518,0.9786678049713373,0.049000993836671114,0.10252469498664141,0.8264904147945344,0.35243009170517325,0.20653312793001533,0.2698099729605019,-0.8199138529598713,-0.05610341439023614,0.22020398639142513,0.9895384176634252,-0.9519683527760208,-0.3804816845804453,-0.5710706617683172,-0.7178459507413208,-0.5135661051608622,-0.99709332594648,0.6829045061022043,-0.11445153737440705,0.11816183431074023,0.5082487007603049,-0.8375438512302935,-0.38988377479836345,-0.48911016108468175,-0.1834738776087761,0.6850023791193962,-0.6797141879796982,-0.8081579459831119,-0.9291625902988017,-0.8272971101105213,0.496984644792974,0.08630408672615886,-0.21897241240367293,0.030092533212155104,-0.473236374091357,0.3894791859202087,-0.9855633084662259,-0.34369186125695705,-0.2998563530854881,-0.8758085528388619,-0.13057591021060944,-0.42522931285202503,-0.8045584335923195,0.7257339055649936,0.05931921396404505,-0.6226601898670197,-0.9691670495085418,-0.0643127840012312,-0.007780261803418398,-0.4964847154915333,0.6036395477131009,0.10904155904427171,-0.4451414351351559,0.7285461970604956,0.047570628114044666,0.044997166842222214,-0.8261730382218957,-0.37766215670853853,0.9940440058708191,0.42208412708714604,0.5768531505018473,0.17452035192400217,0.87547299079597,-0.7224466372281313,0.7481048298068345,0.5418040440417826,-0.7218094659037888,0.8380679106339812,0.6555036790668964,-0.8488588975742459,0.9928708239458501,-0.7611198509112,-0.042798154056072235,-0.5176806547679007,0.3269008141942322,-0.626222618855536,-0.9506630492396653,0.8317444170825183,0.2202075831592083,-0.9150904337875545,-0.8807547227479517,-0.12956917053088546,0.2451090719550848,0.5591378887183964,-0.7662481982260942,-0.047034816816449165,0.3210622728802264,-0.16528568090870976,-0.027130414731800556,0.9787688297219574,0.06630734773352742,0.11670127557590604,0.39299306040629745,0.7564771953038871,-0.24722008360549808,0.19266111496835947,0.18857961567118764,-0.06346570095047355,0.3285716539248824,0.972836987581104,-0.42241549864411354,-0.6042244099080563,-0.7085441271774471,-0.2375899674370885,0.6662201755680144,-0.5659413952380419,0.36436380818486214,0.7418993371538818,-0.16702813329175115,-0.14715552236884832,0.8406382612884045,-0.7999824206344783,-0.6984297870658338,-0.49791419692337513,-0.9002058948390186,-0.8282007384113967,0.31575089832767844,0.9836794007569551,-0.04051133105531335,0.2634044545702636,-0.8540661940351129,-0.46578328870236874,-0.7545211827382445,0.9041259735822678,-0.3719289214350283,0.5716604073531926,-0.7895634933374822,-0.1411237590946257,0.8539628935977817,0.31622708961367607,0.9571795677766204,0.5135612483136356,-0.30034704180434346,-0.06953521817922592,0.7495827106758952,-0.7149074631743133,-0.7402946385554969,-0.8926387773826718,-0.6725995992310345,-0.7868572622537613,-0.5764758186414838,0.19385939510539174,-0.7134145298041403,-0.071089634206146,-0.08763661980628967,-0.17423935374245048,0.5686721121892333,0.3451868025586009,0.35197393177077174,-0.4358252235688269,0.04091676138341427,0.27311038691550493,-0.7187322163954377,0.7104619801975787,-0.5719170095399022,-0.09440335072577,-0.9801095258444548,0.9068371900357306,0.598454580642283,-0.5790017982944846,-0.531859272159636,-0.7423522830940783,0.017680592834949493,-0.4595305216498673,-0.6127895885147154,0.5465150438249111,0.9527785000391304,0.49298754148185253,-0.9321506819687784,-0.9979406455531716,-0.0027832468040287495,0.8696157056838274,0.6649353667162359,-0.7656971430405974,0.6992088197730482,0.35929805133491755,0.8661551871336997,-0.7253107479773462,-0.4654976958408952,-0.027442540507763624,-0.045074270106852055,0.002171986736357212,-0.3273648861795664,-0.5038394895382226,-0.6407951419241726,-0.49575023958459496,-0.4624950629658997,-0.9100459134206176,0.8485120115801692,0.7092595305293798,0.4426333215087652,-0.43665431067347527,0.721303197555244,-0.7620094195008278,0.9093246101401746,0.026177204679697752,-0.16603363631293178,-0.898737212177366,-0.3061810885556042,0.8846453297883272,-0.12566842418164015,0.9878594516776502,-0.2629396393895149,-0.7618430592119694,0.5353497988544405,-0.108838293235749,-0.5857363068498671,-0.9455325650051236,-0.6905256016179919,0.7410844713449478,-0.9890783173032105,-0.3996330900117755,-0.7942162095569074,-0.49389990605413914,0.3678581425920129,0.5599732049740851,0.6993619264103472,0.12761697685346007,-0.9630775731056929,-0.5633683758787811,0.8616494126617908,0.45851419446989894,0.08146944642066956,0.7950412062928081,0.6064458196051419,0.8027495662681758,0.8408162733539939,-0.3843053379096091,-0.058847660664469004,0.8573830793611705,0.4419349217787385,0.6900695986114442,0.48969409707933664,-0.2119556311517954,0.6492391135543585,0.6936310520395637,-0.9474310246296227,-0.42209548922255635,0.7938695424236357,0.9639456244185567,-0.03874221770092845,-0.9109256877563894,-0.9224327877163887,-0.24323686910793185,-0.8282591234892607,-0.37638601986691356,0.7605674350634217,0.06859903084114194,0.912951126229018,-0.07420064881443977,-0.05208317842334509,-0.6813903925940394,-0.6802444295026362,-0.3444032818078995,0.8808040460571647,-0.41078929556533694,0.8297834089025855,0.2131531210616231,0.6557147772982717,-0.42039329931139946,0.3609854355454445,0.22931022848933935,-0.12977400980889797,-0.8631705171428621,-0.4551297859288752,0.7980785788968205,0.2852394497022033,0.4717574487440288,0.9682057593017817,-0.978896105196327,0.2065402576699853,0.4693969823420048,0.29605351155623794,-0.07975235488265753,0.3191962572745979,0.3720365231856704,0.9307230981066823,-0.04941017646342516,-0.8164220624603331,-0.3342059603892267,-0.31045364681631327,0.48394812317565084,-0.5919813555665314,-0.27238535275682807,-0.6741176778450608,-0.3453554939478636,0.9586073760874569,0.31567657412961125,-0.19045587396249175,0.09724293975159526,-0.878664905205369,-0.8542100433260202,-0.7217987943440676,-0.3238345771096647,0.03438384598121047,-0.23658952163532376,-0.6800078516826034,-0.114190012216568,0.145205891225487,-0.10006312187761068,-0.5525733162648976,0.4642407037317753,0.3548524393700063,0.7814102899283171,-0.11253569461405277,0.5808196989819407,-0.894080616068095,-0.7853553481400013,0.4090839293785393,-0.9925032360479236,0.15768893668428063,0.4355299244634807,-0.8261771453544497,-0.048285224474966526,0.9921648185700178,0.6790995933115482,0.785428668372333,-0.5760011607781053,-0.8271971135400236,-0.5824702815152705,0.38204128947108984,-0.47336107678711414,0.4155575321055949,-0.8809358710423112,-0.2985994163900614,-0.1878589941188693,0.15846188459545374,0.8046918860636652,-0.3478392302058637,-0.44596705585718155,-0.27733520371839404,0.37482022354379296,-0.9284617071971297,0.5000170138664544,0.18851571483537555,-0.25653650518506765,-0.24649651674553752,0.5203360770829022,-0.26281660655513406,0.15007229894399643,-0.7866211039945483,-0.875494000967592,-0.3223856152035296,0.8024800685234368,-0.9820293514057994,-0.6338072870858014,0.011683817487210035,0.1846272051334381,0.6844055205583572,0.04257902503013611,-0.04443993652239442,0.5080842231400311,-0.825868000742048,-0.07508588582277298,-0.42779122851789,0.8814322534017265,0.45619187131524086,-0.447583403903991,0.5737382699735463,-0.8529650075361133,-0.9971731416881084,-0.01454087533056736,0.14315119991078973,-0.33109220676124096,-0.8295057630166411,0.5440332554280758,-0.13162757270038128,-0.33063532831147313,-0.49125590501353145,0.22910613799467683,-0.9095290414988995,0.06272670486941934,-0.3593721967190504,-0.2332217819057405,-0.9618845963850617,-0.40264044515788555,-0.3032743642106652,0.4941757614724338,0.39083059411495924,0.46307981200516224,0.3775152540765703,0.2934139249846339,-0.7780681932345033,-0.5446931254118681,0.7045929981395602,-0.6454251478426158,0.7402632776647806,-0.8268780875951052,-0.3108926066197455,0.7668465808965266,0.6646890249103308,-0.6232365323230624,0.22124326834455132,-0.6480619232170284,-0.3627845454029739,-0.2535922648385167,0.15209925640374422,-0.4938011537306011,-0.1551091610454023,-0.5175075880251825,-0.015110959764569998,-0.36294801253825426,-0.11041247472167015,0.6000705007463694,-0.4206232591532171,0.13245082506909966,-0.6267001866362989,-0.7202151692472398,-0.9091972014866769,-0.9657582705840468,0.47542529413476586,0.9378853673115373,0.251356084831059,-0.5193387349136174,-0.016993763856589794,-0.8700614180415869,0.7046003323048353,-0.8641953482292593,-0.23628803668543696,-0.5826531434431672,-0.9688545800745487,-0.06995279714465141,0.8726095934398472,0.3128481088206172,-0.5265950313769281,0.5286475019529462,-0.47025310806930065,0.9587368872016668,0.08884314727038145,-0.5451224697753787,-0.37441256642341614,-0.749065138399601,-0.775364647153765,-0.9464607904665172,-0.042307195253670216,-0.7399678425863385,-0.6153925065882504,0.49933657608926296,0.4240235351026058,0.4782990268431604,0.3551183803938329,0.1897451332770288,-0.7454113806597888,0.22975642001256347,0.18894576281309128,0.9249138799495995,0.7753515387885273,0.726393798366189,0.519015418831259,-0.1760901166126132,-0.25440024258568883,-0.2960845157504082,0.36896117497235537,0.706635975278914,0.37373728957027197,0.621336052659899,-0.803556733764708,-0.9013848495669663,0.9807682312093675,-0.24884569644927979,-0.9480860969051719,-0.8856181902810931,-0.14020153926685452,-0.45600268384441733,0.5098276087082922,0.3898644968867302,-0.3235187279060483,-0.16722986800596118,0.7519992412999272,0.8359442851506174,-0.13165721809491515,0.005168379750102758,-0.25815982837229967,0.8452717280015349,-0.5255167484283447,0.05733268056064844,0.5103402752429247,-0.8765878984704614,0.8428710768930614,0.2364302515052259,-0.3583227004855871,-0.17782633751630783,0.9837327389977872,-0.24499158142134547,0.08337934361770749,-0.40139470901340246,0.8767986171878874,0.4250378333963454,0.20604845881462097,0.011498498264700174,-0.42400468746200204,-0.40148981008678675,0.14213129831478,-0.5831287545152009,0.830145203974098,-0.20786628033965826,-0.4298987095244229,0.4903135444037616,0.02912002243101597,0.4840715159662068,0.6574045238085091,-0.09259278699755669,-0.7708346769213676,-0.29128850949928164,-0.6594129297882318,0.02552458457648754,0.6317877480760217,-0.5184368207119405,-0.6809923453256488,-0.29012360982596874,-0.7105040024034679,0.11753836227580905,-0.12679844070225954,-0.9286590106785297,0.1896354085765779,-0.3856476070359349,0.19748767372220755,-0.22772521199658513,-0.5470033260062337,0.4904130408540368,-0.4107725936919451,-0.03413089830428362,-0.6445539370179176,-0.4101734086871147,-0.18768340209499002,-0.8154813526198268,-0.7108708363957703,0.14191305823624134,0.30669473530724645,0.021259811241179705,0.8943094024434686,0.5006271647289395,-0.14046673197299242,-0.8844809671863914,-0.12768588308244944,0.44015083741396666,0.5820327526889741,0.6609192257747054,0.3095214762724936,-0.4718881957232952,-0.06462031695991755,-0.8763763038441539,-0.5198319326154888,-0.26586927007883787,-0.360352598130703,-0.15866041835397482,-0.9055846612900496,0.34703362081199884,-0.634838858153671,-0.5888624442741275,0.26866140961647034,-0.20267885643988848,0.4570681154727936,0.418467556592077,0.096402149181813,-0.438413527328521,0.9727108455263078,0.8684200365096331,-0.19301978219300508,0.2567607583478093,0.15857136016711593,0.24919320875778794,-0.9155517644248903,-0.25564999086782336,0.4822106156498194,-0.04150304291397333,-0.13164700288325548,0.13000287115573883,-0.45535832131281495,-0.25579302571713924,-0.29814526392146945,-0.24522576993331313,0.84698745328933,0.7200265740975738,-0.4522425248287618,0.4935301854275167,-0.1626873924396932,-0.24948344426229596,0.18884396832436323,-0.7663612384349108,-0.4929632842540741,0.036649948451668024,0.5968161011114717,-0.6467144540511072,0.9820982832461596,0.6425907886587083,-0.03214354533702135,0.920074503403157,0.0718174553476274,-0.8116055075079203,0.35843479726463556,0.7219948060810566,-0.5022019273601472,-0.17248808592557907,-0.7358741541393101,0.5452626030892134,0.5450485949404538,0.4907604278996587,0.727374339941889,0.86788439610973,0.39768807031214237,-0.04643140593543649,-0.7860780735500157,0.6844863425940275,0.5299399555660784,0.7632837225683033,0.08980689477175474,-0.7833911343477666,0.35660787764936686,-0.3818508847616613,0.4068140434101224,0.9477644455619156,-0.8677071337588131,0.6303808987140656,-0.794211104977876,-0.5033700102940202,-0.6001567603088915,-0.9506112365052104,-0.7839862201362848,-0.9167890786193311,0.60588813200593,-0.8498557033017278,-0.39108214527368546,-0.056902415584772825,-0.5839109146036208,0.922663435805589,0.051799389999359846,-0.11227290192618966,0.6509490041062236,0.42894397024065256,0.1681312876753509,-0.7501208847388625,0.2733097760938108,-0.6790159163065255,-0.7550561111420393,-0.8442522515542805,0.433092535007745,0.41286674700677395,0.631445184815675,0.11869677063077688,-0.7738241017796099,-0.9886906552128494,0.6852969159372151,-0.10038444492965937,-0.7129398412071168,-0.18712689727544785,-0.179023293312639,0.9216260397806764,-0.7482489245012403,0.12649559788405895,0.2892622803337872,0.597407846711576,-0.09414610033854842,-0.11659614276140928,0.6444005900993943,0.6659031165763736,0.40155212581157684,0.07875192817300558,0.9143147156573832,-0.12302751233801246,0.5411859340965748,-0.33506061416119337,-0.5460175829939544,-0.10960019659250975,0.14815276768058538,-0.14915708964690566,0.2187655596062541,0.8569740210659802,0.8496147361584008,0.5892699877731502,0.024692911189049482,-0.6052471753209829,0.9878460480831563,-0.8139260639436543,-0.5256709377281368,0.3161379215307534,-0.9945815745741129,0.286669057328254,-0.12427388178184628,-0.9328306089155376,0.9526436091400683,-0.9157163887284696,0.7222959389910102,0.3269111756235361,-0.852789203170687,-0.12452530534937978,-0.3769903094507754,-0.24533043382689357,0.7925358880311251,0.3321378552354872,0.7978886519558728,-0.6098821004852653,0.9795601638033986,0.5993986949324608,-0.5433555501513183,0.5017890627495944,0.0953155760653317,0.1896240240894258,-0.4434068468399346,0.7608256149105728,-0.05131343426182866,0.5657095657661557,0.08997427858412266,0.33132640924304724,0.662369791418314,-0.17693903716281056,0.42696471186354756,-0.37544745206832886,-0.29284605430439115,0.21670412085950375,-0.1809249147772789,0.7396637839265168,-0.1657902323640883,0.6840494875796139,-0.28572069481015205,-0.9601952135562897,0.795628709718585,-0.6424275347962976,-0.5591919873841107,-0.6354325590655208,0.29521574592217803,-0.623472310602665,0.35789919178932905,-0.5408528717234731,-0.11282888101413846,0.16431887773796916,0.3580670254305005,0.6419268138706684,0.7414649352431297,-0.7379050338640809,0.693435437977314,-0.808904804289341,-0.6840854645706713,-0.3684208462946117,-0.17006523394957185,-0.7749309744685888,-0.30346945859491825,-0.34553220542147756,-0.9537360211834311,-0.7878997372463346,0.22898800717666745,-0.7731894953176379,-0.7724725469015539,-0.11759617738425732,0.5593417752534151,-0.9078535260632634,0.3411246673204005,0.41170747904106975,0.5879046986810863,-0.025407662615180016,0.3536042501218617,0.27027894277125597,-0.8086966159753501,0.020766150671988726,0.5561369117349386,0.6421142807230353,0.29586168890818954,-0.6509742625057697,-0.9843684239313006,0.5963153629563749,-0.22214236622676253,0.06451023323461413,-0.9788546497002244,0.7313726539723575,-0.2885756967589259,0.09520750166848302,-0.05959000205621123,-0.003910302650183439,0.7268082709051669,0.7730837422423065,-0.4001332581974566,-0.5504945516586304,0.44577806256711483,0.9623827491886914,-0.8033585716038942,-0.8503299788571894,0.5835995702072978,-0.3011247916147113,-0.5122337015345693,0.47330405889078975,0.4587903153151274,-0.8063410436734557,0.8824255499057472,-0.6567424382083118,-0.2917354563251138,0.38470928790047765,-0.4595597586594522,0.4836168480105698,0.5177598977461457,-0.8628621594980359,0.49870092095807195,0.42036279989406466,0.259826036170125,0.42074452713131905,-0.48156403517350554,0.6827943976968527,0.34337072167545557,0.49742088513448834,-0.18108442844823003,0.8889338942244649,-0.03717398503795266,-0.3183940448798239,-0.8043621364049613,0.3734682109206915,0.07408303301781416,-0.46048165718093514,-0.72406942024827,0.2033471497707069,-0.5354216387495399,0.3146666847169399,-0.6781839993782341,0.19179131276905537,-0.11902030277997255,-0.2560906480066478,-0.7649485170841217,0.08064733585342765,0.33718403801321983,0.25825314735993743,0.3941352190449834,0.1763313263654709,0.8564776945859194,-0.682416969910264,-0.6124676479957998,-0.7437774748541415,-0.5686812126077712,-0.6134891021065414,-0.9407072733156383,-0.8230725508183241,0.23675722489133477,0.2675475520081818,0.8368090116418898,0.7918865866959095,-0.06125066988170147,-0.972931585740298,0.8347383970394731,0.8268705331720412,0.23995171254500747,-0.6855078507214785,-0.6730237100273371,0.11637748964130878,0.23754990985617042,-0.022559707053005695,-0.2997382082976401,-0.33201250713318586,0.9011362623423338,-0.02694227546453476,-0.35135492077097297,0.9090065974742174,0.8014529622159898,-0.33779859310016036,-0.17409100010991096,0.1436631460674107,-0.6004139031283557,-0.41783523513004184,0.4636182561516762,0.29871440259739757,0.09527545794844627,-0.929472734220326,0.7585295685566962,0.20207067392766476,0.053199978079646826,0.08097862591966987,0.4820600966922939,-0.8103771256282926,-0.3421373968012631,0.21116244606673717,-0.1368422475643456,-0.9573139804415405,0.5700997831299901,-0.998890754301101,0.0900985524058342,0.5680818404071033,-0.34908850910142064,-0.797660009469837,0.021621896885335445,0.23137280717492104,0.8034766316413879,-0.45784219168126583,-0.06431882735341787,-0.5068775149993598,-0.4624526617117226,-0.1893742559477687,0.5644347737543285,-0.7239877632819116,-0.8489585476927459,-0.23704680800437927,0.28316877549514174,0.4011642732657492,0.048744482919573784,-0.19270924665033817,0.8948707585223019,0.008959596510976553,0.6137602562084794,0.8677761591970921,0.24725458305329084,-0.668875484727323,0.5685377838090062,-0.6497609158977866,0.23167539294809103,-0.8239338449202478,0.7674265713430941,-0.5351665895432234,-0.21235704747959971,0.6121458192355931,0.5383083578199148,0.8376675150357187,-0.7625024444423616,0.6358173261396587,-0.18283187923952937,-0.9690535343252122,0.40969115402549505,0.6390962773002684,-0.6639505159109831,0.9188744737766683,-0.24510587519034743,-0.0004047066904604435,0.06489051692187786,0.6969529055058956,-0.797041751910001,-0.6446307450532913,-0.012103560846298933,-0.35930160665884614,-0.3489098157733679,-0.8506942582316697,-0.8518387447111309,0.4413987942971289,0.457522617187351,0.8999064089730382,-0.5315805980935693,-0.024267643224447966,0.7674396564252675,-0.5058306064456701,0.8714062101207674,0.5991460746154189,0.019013930577784777,-0.021962254773825407,-0.49141217954456806,0.766304237768054,0.7293090741150081,-0.43051726650446653,-0.18336030887439847,-0.22158352937549353,0.49585474375635386,0.1943644154816866,0.13358399830758572,0.002396645024418831,-0.7496367357671261,-0.7432236159220338,0.6352165681309998,0.9722354630939662,-0.11463980888947845,-0.9014318389818072,-0.3209107518196106,0.20815132232382894,0.14323009829968214,-0.32341335993260145,0.11352820694446564,0.7181875468231738,-0.5368233332410455,0.3943441896699369,0.13147865841165185,-0.8573969788849354,-0.8081135735847056,0.6677739047445357,-0.613075050059706,0.6663257339969277,0.3457006001845002,-0.2636548667214811,0.9594902722164989,0.4538241010159254,0.8548225350677967,-0.8757699732668698,-0.5945680942386389,0.6035824874415994,0.5214519998989999,0.7595267435535789,0.6412594332359731,-0.6451717000454664,0.7589760343544185,-0.6215122230350971,-0.6577268242835999,-0.6546667236834764,-0.3065100396052003,-0.0939526567235589,-0.7457793904468417,-0.8577413847669959,0.42173270182684064,-0.03779517766088247,0.7963035958819091,0.985607382375747,0.29143364168703556,-0.5330083849839866,0.3894457723945379,0.4752120762132108,-0.06778752338141203,0.5331933256238699,0.7545035039074719,-0.4733637273311615,-0.27894514752551913,-0.8953488604165614,0.4798024375922978,-0.5091167683713138,0.10480921249836683,-0.20254867197945714,0.9741494632326066,0.2066968372091651,-0.8556629717350006,0.6197181125171483,0.4356765109114349,0.8720040405169129,0.6017725602723658,0.296902387868613,-0.14343270659446716,-0.5134028908796608,0.9641001801937819,-0.7179638473317027,-0.5315511012449861,-0.5908092097379267,-0.35671496437862515,0.9274762091226876,0.5382517040707171,-0.3687004544772208,0.6942694433964789,-0.8528146333992481,-0.39462963212281466,-0.059216301422566175,-0.13250060752034187,0.6489058886654675,-0.15981509815901518,-0.8306649122387171,0.3336620065383613,0.5197536768391728,-0.7745529091916978,0.24928758572787046,0.864560051355511,0.31825256161391735,-0.6683393977582455,-0.9233175544068217,-0.1592680043540895,-0.09707820368930697,-0.5950140301138163,-0.40638703340664506,0.923115455545485,-0.17265585064888,0.9455587696284056,-0.7760811988264322,0.4663058901205659,-0.6827356871217489,0.9238122017122805,-0.9932854305952787,-0.6923071024939418,-0.4881105814129114,0.9989046775735915,-0.9885669522918761,0.954565211199224,0.5268564061261714,0.19103103736415505,-0.9792224266566336,0.19569874741137028,0.6251945658586919,-0.2961378563195467,0.7063644537702203,0.3816969096660614,-0.18834274541586637,-0.7254784475080669,0.6852096952497959,0.7427923777140677,-0.24594804272055626,0.39203742565587163,0.009037518873810768,0.6096903155557811,-0.5058228941634297,-0.005746339447796345,-0.23054388305172324,0.7483087377622724,0.30883810576051474,0.22126136627048254,0.30440326780080795,-0.8147910637781024,-0.9782468993216753,0.9450485045090318,-0.16253288742154837,0.4454361507669091,-0.39784055575728416,-0.5249940394423902,0.7295143171213567,-0.9568794555962086,-0.8413197752088308,-0.15444105584174395,-0.08387510990723968,0.2127165701240301,0.8736709235236049,0.3408499979414046,0.018383017741143703,-0.4781254827976227,0.2962501784786582,0.6597710624337196,0.3671272792853415,-0.543701293412596,-0.5753799886442721,-0.6607001121155918,0.5862671895883977,-0.2595912986434996,-0.9101199409924448,-0.7396439244039357,-0.506032349076122,-0.9890772844664752,-0.3363466444425285,-0.1856374661438167,0.6033901018090546,-0.0647654845379293,-0.8111943672411144,-0.642700248863548,0.6317583005875349,0.12391169415786862,-0.4025020254775882,-0.4972627363167703,0.9247001996263862,0.30175047321245074,0.4225759473629296,0.0348762683570385,0.3254216378554702,-0.7184823621064425,0.003282416146248579,-0.9151131655089557,-0.4810429704375565,0.9156176703982055,0.8065871293656528,0.5040257615037262,0.8998945872299373,-0.3670533141121268,0.6928952410817146,0.7648444944061339,-0.5004852786660194,-0.8810168229974806,0.6314329369924963,-0.9757346077822149,-0.39858509320765734,-0.7865972649306059,-0.9258372536860406,-0.180725977756083,0.4738771063275635,0.13715744204819202,-0.5437846416607499,0.4277763464488089,-0.12245837971568108,0.5338974799960852,0.005726040806621313,0.5858712187036872,0.9761550980620086,0.25184870697557926,-0.07436628360301256,-0.32317664148285985,0.5986996707506478,-0.8594081900082529,-0.1795786893926561,-0.614497899543494,0.43257596250623465,0.14091686252504587,0.9862808529287577,0.4763573915697634,-0.3312069228850305,0.15183059452101588,0.2937327749095857,0.4878108352422714,-0.47645329078659415,-0.445909624453634,-0.778084758669138,-0.9303584047593176,-0.29693057434633374,0.8084922195412219,-0.5801248955540359,0.92974614771083,-0.14479941176250577,-0.18057159800082445,0.6872576670721173,0.6264351648278534,-0.38693207455798984,-0.8489128104411066,-0.5311784404329956,0.5795782101340592,0.7377773695625365,0.029414948541671038,-0.7054183799773455,0.29777033627033234,-0.6325251860544086,-0.005574565380811691,0.6831832244060934,-0.537639974616468,0.7070409306325018,-0.07055010087788105,-0.6351787075400352,0.5448133535683155,-0.44375178031623363,-0.045365349389612675,-0.10365436738356948,-0.2600914742797613,0.9646940273232758,0.3398621827363968,-0.22066453006118536,-0.6865801233798265,0.05630769766867161,0.8819029736332595,0.02164744632318616,-0.42091107042506337,-0.7130689579062164,0.5634580990299582,-0.143295269459486,0.1535928356461227,0.40595074044540524,-0.5966666652821004,0.6334344446659088,0.529899297747761,-0.7947718966752291,0.0034665213897824287,0.03194272983819246,0.8347544348798692,0.6874805041588843,0.5999183706007898,-0.19040210777893662,0.25096935452893376,-0.30976404435932636,-0.7895595319569111,0.12441399227827787,-0.26998412562534213,-0.7020557685755193,0.9669675063341856,-0.035725850611925125,0.736022837460041,0.04632424097508192,0.39295897306874394,-0.6661027423106134,0.4583808477036655,-0.24240439478307962,-0.4943843143992126,-0.32808163901790977,0.0860398281365633,-0.7598813232034445,0.8593310164287686,-0.09424811787903309,0.7938664564862847,0.1880827541463077,0.26508807856589556,0.03891923651099205,-0.40254661813378334,-0.9207248375751078,-0.8917755940929055,0.8493479387834668,0.6579758943989873,-0.6367812901735306,-0.03204016899690032,0.3601358118467033,-0.026909322012215853,0.9789586504921317,-0.22261983342468739,-0.478066963609308,0.9335451871156693,-0.4375784480944276,-0.09717825101688504,0.6586982682347298,-0.7650674963369966,-0.00946882739663124,0.7197595848701894,0.4853763896971941,-0.5264317872934043,-0.6318037426099181,0.7758776596747339,-0.6130838431417942,0.43340209871530533,-0.3129545757547021,-0.21026667254045606,-0.4185163863003254,-0.8696077107451856,0.836039281450212,-0.5636314610019326,-0.11717551480978727,0.2304785824380815,-0.10381068335846066,0.7478778478689492,0.821557913441211,0.4947265605442226,0.5986802871339023,0.36608735332265496,-0.9100963757373393,0.9197417879477143,-0.3646410168148577,0.9455705531872809,0.551072093192488,-0.6304287076927722,-0.6392400534823537,0.15761952428147197,-0.6863358626142144,-0.39320101868361235,-0.31820361502468586,-0.1788895488716662,0.6530656651593745,-0.08894854364916682,-0.19822951266542077,-0.12832138827070594,-0.5899586761370301,0.10519355675205588,-0.7666339385323226,-0.2410272234119475,0.4984361999668181,-0.20699245808646083,0.608206432312727,0.5895931054838002,-0.7208344410173595,0.6126345358788967,0.4171961066313088,-0.02631637966260314,-0.009038537740707397,0.4689729386009276,-0.13064869353547692,0.040559655521065,-0.25760722206905484,0.6741409031674266,0.6053271074779332,-0.3821518952026963,0.5580421970225871,-0.9124261406250298,0.8547615804709494,-0.7374105779454112,0.18962579360231757,0.7931319950148463,0.469022782985121,-0.5598884359933436,0.2182040843181312,-0.10073397494852543,-0.6372036449611187,-0.3404781180433929,0.12394599663093686,0.46578026935458183,0.9397624535486102,-0.30952413147315383,-0.3080556485801935,0.34814503230154514,0.057350239250808954,0.7518958942964673,-0.21101871132850647,-0.5355446711182594,-0.852624615188688,0.5231911814771593,0.625728621147573,0.8070101519115269,-0.6612374647520483,-0.13482057815417647,0.15419432753697038,0.41454237047582865,-0.8016883693635464,0.713693670462817,0.0031660934910178185,0.28803523862734437,-0.1581752928905189,-0.8748661773279309,-0.3057489963248372,-0.2162938336841762,0.8415274801664054,0.564133832231164,0.5775225097313523,0.5249266070313752,0.2564162756316364,0.7575052524916828,0.9919576598331332,-0.44009048491716385,0.15920696686953306,0.47526062885299325,0.39335819659754634,-0.6948407674208283,0.7112517990171909,-0.5889084953814745,-0.9333198042586446,-0.5314726643264294,-0.2601056797429919,0.3799775163643062,-0.6422774642705917,0.5382236284203827,0.665416197385639,0.37994892336428165,0.2715435987338424,0.7318600635044277,0.37157281022518873,0.7916127890348434,-0.6835247329436243,0.4507709969766438,-0.019208576064556837,0.4533001147210598,0.01779091591015458,0.06823090929538012,0.7123798783868551,0.30952720902860165,-0.00905836746096611,-0.10496809054166079,-0.3848468577489257,-0.2041029050014913,0.9408508259803057,0.07533849822357297,-0.8615683345124125,0.347045726608485,0.664337838999927,0.4172445051372051,-0.17014795960858464,-0.9193868199363351,0.5505582229234278,-0.7236934169195592,-0.2383361510001123,0.12458449369296432,-0.7632684130221605,0.003023977857083082,-0.5583942462690175,-0.7312076464295387,0.22604029579088092,0.39603101508691907,-0.8293171911500394,-0.842029036488384,-0.6209370042197406,0.3054390880279243,0.6171880522742867,0.013912052847445011,0.4980020127259195,-0.8390008839778602,0.29342173505574465,0.9457847620360553,0.14955276669934392,0.2426301552914083,-0.4888302031904459,-0.36238430021330714,0.9423674526624382,0.7384480787441134,-0.8209662437438965,0.8113473663106561,-0.902326310519129,-0.6783023341558874,0.1010227957740426,0.30169769655913115,0.15197386033833027,-0.9191295625641942,-0.03192046610638499,0.24645995581522584,0.9817639677785337,-0.8421812853775918,-0.8572727432474494,0.4837515507824719,0.8849799297749996,-0.7216408308595419,0.6519385506398976,-0.9104435481131077,-0.012768662068992853,-0.03350217267870903,0.023039452731609344,0.7991713513620198,-0.5711901988834143,-0.3863884452730417,-0.39050704007968307,-0.7220331891439855,-0.9752273778431118,-0.5418157302774489,-0.5012378953397274,0.07351755676791072,-0.1855801409110427,-0.0033404333516955376,0.06302066287025809,0.6173286098055542,-0.8400553935207427,-0.27400442911311984,-0.5159538420848548,0.019147681072354317,-0.201135721988976,-0.49714348232373595,-0.2547157257795334,0.8864996102638543,-0.4142214930616319,0.4145681457594037,-0.4741573925130069,0.5933205652981997,-0.48403238970786333,-0.19220155850052834,0.09763421956449747,-0.824463021941483,-0.1688691871240735,0.9357005977071822,0.9672078196890652,-0.3408293593674898,-0.18995716562494636,0.5720976954326034,0.04625872476026416,0.7669527418911457,-0.10936803417280316,0.7721068249084055,-0.6729186726734042,-0.28509550727903843,0.6074167583137751,-0.33642546087503433,0.2589276651851833,0.3757837265729904,-0.9407271379604936,0.9457041528075933,-0.5543894744478166,-0.9279665816575289,-0.6340972408652306,-0.043116745073348284,0.542922789696604,0.07144011836498976,0.24944247351959348,-0.16422669915482402,-0.9097321406006813,0.5884414738975465,0.8222206817008555,-0.9168862840160728,0.2652597976848483,-0.39976011868566275,-0.15858141193166375,-0.8000338301062584,-0.6993432198651135,-0.4411074253730476,-0.5771323558874428,-0.9560489756986499,-0.34247054206207395,0.8886972265318036,0.1912612346932292,-0.17063743388280272,0.965967820957303,-0.7583435601554811,0.5300178206525743,0.04078857880085707,-0.8437112309038639,-0.4020950556732714,0.9616539226844907,0.046568782068789005,-0.09194778464734554,-0.005923567805439234,0.6944234222173691,0.7150195459835231,-0.7972199381329119,-0.5407561776228249,-0.8830239842645824,-0.09429927496239543,0.2772252634167671,0.14543702779337764,-0.4842687682248652,0.4840262597426772,-0.11568063823506236,-0.8218205473385751,0.12753284722566605,0.34483739361166954,-0.5841233362443745,0.7292988458648324,0.567389705684036,0.7503292099572718,0.625584524590522,0.6378787993453443,-0.9010634273290634,0.010220939759165049,0.4451122470200062,0.3467583302408457,-0.46648626727983356,-0.8435531463474035,0.02868563123047352,-0.010437905322760344,0.4937084815464914,0.7024735631421208,-0.9662357592023909,0.6142217647284269,0.024672674015164375,-0.3309731911867857,0.08507859101518989,-0.8646285478025675,0.5443467125296593,-0.6773536838591099,-0.6919226343743503,-0.40668547293171287,-0.7253175531513989,0.12641288107261062,-0.8092534085735679,0.9220552071928978,0.1658117175102234,0.5204801275394857,-0.2991662682034075,-0.7487324862740934,-0.9745527575723827,0.8736589066684246,-0.08247606363147497,-0.3561567850410938,-0.9040083307772875,-0.5096238958649337,-0.22233130782842636,0.24443748779594898,-0.784770455211401,-0.16168293310329318,-0.8214945043437183,-0.17166146729141474,-0.7546070702373981,-0.6952145197428763,-0.7081780079752207,0.24043524404987693,-0.421868740580976,-0.23138480633497238,-0.8229964417405427,-0.23015196435153484,-0.963614019099623,-0.602311089169234,-0.288175911642611,-0.041509310249239206,0.8103148541413248,-0.3648920487612486,-0.36405644938349724,0.943673703353852,-0.40688918344676495,-0.44128996785730124,0.8341407501138747,-0.3092817086726427,0.24377910001203418,-0.5520628374069929,-0.04031579988077283,-0.9999099201522768,0.4346430874429643,0.6288774590939283,-0.6943035833537579,0.5374963078647852,-0.2501522987149656,-0.8578511504456401,0.8255214197561145,0.7088123997673392,0.27454790147021413,0.5314079956151545,-0.437446559779346,-0.2835353882983327,0.19645297806710005,-0.8062266241759062,-0.8771239295601845,-0.15728915436193347,-0.23256375873461366,-0.19073255686089396,0.9966369564644992,0.13205367932096124,-0.09390457300469279,-0.02253381907939911,-0.9743833113461733,-0.21710353111848235,-0.9229749487712979,0.6523742447607219,-0.9771521505899727,0.36248044576495886,0.3519594008103013,-0.8110455637797713,-0.8915169471874833,0.5959099964238703,0.9664469361305237,-0.0008266116492450237,0.6848286795429885,0.6191436392255127,0.11843370459973812,-0.28722099447622895,-0.7904296675696969,-0.9554824694059789,0.07481428375467658,0.4809115999378264,-0.11310468520969152,-0.5231755254790187,-0.1274818042293191,0.37947400845587254,-0.6840089075267315,0.6988727780990303,0.289067308884114,-0.3885286985896528,-0.4620804423466325,-0.2047049324028194,0.9845269010402262,-0.22712645679712296,0.5429517165757716,-0.8320351997390389,-0.5515163000673056,-0.7324782256036997,0.9458731380291283,0.7136670132167637,0.3025262150913477,-0.07305562915280461,0.38764158403500915,0.7821632423438132,0.38240767642855644,-0.2837913972325623,0.24737041350454092,-0.6809648498892784,0.8986244271509349,-0.723734978120774,0.89005535421893,0.6379519137553871,-0.6649577175267041,-0.6530430032871664,0.2750070868059993,-0.16381461406126618,-0.9341367841698229,-0.3463777946308255,-0.9871513089165092,0.053770218975842,-0.23394020227715373,0.5530057172290981,0.16849901247769594,-0.7940426217392087,0.5480114449746907,-0.8154644872993231,0.22775673773139715,-0.03342785406857729,-0.046711286529898643,0.13766698818653822,-0.905255704652518,0.3167919614352286,-0.32979580014944077,-0.7611634605564177,-0.48383072623983026,0.45814991649240255,0.2642742646858096,0.8885512137785554,0.5994800152257085,-0.9540313985198736,-0.922833286691457,0.6224616095423698,0.28543284395709634,0.07641483610495925,0.007311810739338398,0.5537615772336721,-0.03764372458681464,-0.36220458755269647,-0.2922761719673872,-0.9487779699265957,-0.8966619530692697,0.9032483613118529,-0.005843916442245245,0.20826179580762982,-0.09140240028500557,-0.7398014054633677,0.7017233283258975,0.3016924262046814,0.8751252992078662,0.11269014794379473,-0.9560949471779168,0.37228113831952214,0.3154600141569972,0.3441610634326935,-0.8383429427631199,-0.6101924586109817,0.7678503193892539,-0.1803524438291788,0.213362209033221,0.31538322661072016,-0.8262366685084999,-0.3169911056756973,0.1535126487724483,-0.24088550126180053,-0.38439911510795355,0.35103114368394017,0.9243039218708873,-0.3153289845213294,-0.12328407727181911,0.7083339970558882,-0.5148600498214364,0.8993773199617863,0.6116652032360435,-0.544397646561265,0.5199722587130964,0.7834467394277453,-0.3371335007250309,-0.6541258241049945,-0.4804546250961721,-0.5727681783027947,0.2710538152605295,0.9864232614636421,0.5292201433330774,-0.043644330464303493,0.631947722285986,0.633164543658495,0.7398076467216015,0.5313131269067526,-0.3310219654813409,-0.9192525832913816,0.44237285386770964,0.7827928089536726,0.6330098509788513,0.09865582501515746,0.9199219984002411,0.38203254295513034,-0.646549406927079,0.12338693672791123,0.5714941769838333,0.4219775218516588,-0.4667797568254173,-0.30928354896605015,-0.882838455028832,-0.030060763005167246,0.08115842286497355,-0.9641144890338182,0.6801249459385872,0.719774141907692,-0.14529377548024058,0.04342514183372259,0.42107776971533895,-0.28160385973751545,-0.480226325802505,-0.007753149606287479,-0.37940916744992137,-0.9026334518566728,-0.31575198750942945,0.25260603427886963,0.8347691898234189,0.8520569908432662,0.47767282696440816,0.5745269055478275,0.7988594193011522,-0.18632768839597702,-0.26740053575485945,0.9778848909772933,-0.8940654755569994,0.3830712423659861,-0.8575808303430676,0.1163818771019578,-0.7353660259395838,-0.8851287947036326,-0.6810165084898472,0.5058406963944435,0.7271510884165764,0.47115148045122623,0.39469572622328997,-0.5184967569075525,-0.270024755038321,0.5511900675483048,0.8132470161654055,-0.7210535970516503,-0.7198850251734257,0.9763225885108113,-0.3314985679462552,-0.5222486378625035,-0.8315577683970332,0.37516007106751204,-0.7674621683545411,0.577728885691613,-0.1371975764632225,-0.8270314740948379,-0.8491502981632948,-0.1028710207901895,0.8429929818958044,-0.9955958449281752,0.281102926004678,0.005409337114542723,-0.24875000305473804,0.35463873017579317,0.8826921335421503,0.17491307808086276,0.137010270729661,-0.8555490104481578,-0.7572921318933368,0.14718192350119352,0.8398500843904912,-0.766900853253901,-0.12819576635956764,-0.20391360810026526,0.47319525340572,0.30809338949620724,0.5130623583681881,0.8898544278927147,0.33973763417452574,0.8267071135342121,0.7251831078901887,-0.6800507153384387,0.8842793828807771,0.5433452222496271,-0.12268995260819793,0.6511573102325201,0.4083412936888635,0.8732111896388233,-0.9352993131615222,0.05841273069381714,0.818165972828865,0.5059087886475027,-0.38083336502313614,0.36311064241454005,0.6760651827789843,0.646410025190562,-0.19036575080826879,-0.3586197285912931,0.41181619092822075,0.5486232824623585,-0.023950107861310244,-0.39957467606291175,-0.6027358556166291,0.5941860382445157,0.4795431043021381,-0.030703722033649683,0.48426914867013693,-0.7450748961418867,-0.5103122945874929,0.2623625206761062,-0.8154481360688806,-0.8344686916097999,0.10823934758082032,0.9928322974592447,0.8031002311035991,0.21335145784541965,0.8928378960117698,-0.6304771257564425,-0.7710205498151481,0.131036467384547,-0.8722953856922686,-0.25764865102246404,-0.5657729906961322,-0.5726487003266811,0.539453994948417,0.00249789422377944,-0.8611266021616757,-0.4787858994677663,0.5273319976404309,-0.0931005822494626,0.8950448799878359,-0.877910683862865,-0.7219615024514496,-0.32300439989194274,0.09783914685249329,0.00998027203604579,-0.7165993712842464,0.30635710107162595,0.472487426828593,0.4492348590865731,0.4859492634423077,-0.10931590991094708,-0.31338307075202465,-0.2227329653687775,-0.9059445336461067,-0.06482947384938598,0.5739155090413988,0.17152239754796028,0.44829687010496855,-0.24449263187125325,0.7278119283728302,0.42265329184010625,0.09609086532145739,0.3581858198158443,-0.8771782629191875,0.2940512001514435,0.6756469495594501,0.7104307352565229,-0.8180069196969271,0.044575638603419065,0.2849812414497137,0.4138372838497162,-0.3698754911310971,-0.7028401433490217,-0.9042072952724993,0.7603955171070993,-0.1701230676844716,0.4938438353128731,-0.7288285563699901,-0.15344330621883273,-0.5311504434794188,0.9054916747845709,-0.7215090659447014,0.6499090227298439,0.9082709145732224,-0.2265601046383381,-0.4482609028927982,0.7308547091670334,-0.24073722073808312,-0.49982528761029243,-0.14658461464568973,-0.24176233867183328,-0.5973223615437746,0.9028438213281333,0.3477068403735757,0.8955317013897002,-0.13523153634741902,0.2740487135015428,0.5246730362996459,-0.7269360455684364,0.45723405247554183,-0.4844791437499225,0.4029044066555798,-0.9543586205691099,-0.7742365533486009,0.9097136068157852,-0.8323936415836215,-0.7334682098589838,-0.9024092867039144,0.15986871486529708,-0.9653860502876341,-0.8919510217383504,-0.46717713586986065,0.17494466481730342,0.8990768939256668,-0.8835909063927829,0.1757451267912984,0.2686340739019215,-0.8268366712145507,-0.5105651593767107,0.7567817461676896,0.46787129435688257,-0.967861722689122,0.4616028508171439,0.5363356773741543,0.6311009279452264,-0.7889661523513496,-0.547773355152458,-0.7695264690555632,0.3803813043050468,-0.5315692368894815,-0.47130193328484893,0.36093718092888594,-0.7112677535042167,0.3485960108228028,-0.29084793711081147,-0.26239905320107937,0.8197284135967493,-0.036720415111631155,0.45076661463826895,-0.9840917559340596,-0.7253168923780322,0.9368817335925996,0.5153674921020865,0.28566618962213397,0.1731917429715395,-0.24048585258424282,0.48424275079742074,-0.6324153323657811,0.7593404478393495,-0.28204827196896076,0.07659403700381517,0.26282056514173746,0.9721702458336949,0.04873302485793829,-0.3020048509351909,0.8042995161376894,-0.7261872692033648,0.21782958414405584,0.6410889527760446,0.25083538657054305,0.2948190253227949,0.7147294776514173,-0.7533198394812644,-0.5293960454873741,0.38957220362499356,-0.721048935316503,0.49186068680137396,-0.7464952496811748,-0.3035337636247277,0.773902331944555,-0.549792607780546,0.5548887187615037,-0.8590606488287449,0.8848783732391894,0.21914032939821482,-0.5000192201696336,0.41612986847758293,0.5873436769470572,0.8909727358259261,-0.8076700367964804,0.2838050010614097,0.5581556283868849,0.7108313939534128,-0.6459414586424828,-0.8861724841408432,-0.4376240479759872,0.9570593950338662,0.4672412066720426,-0.8235712577588856,-0.5643879515118897,-0.5503249471075833,-0.43382341461256146,0.1912845065817237,0.5151167060248554,0.778809797950089,-0.5895297061651945,-0.8132607890293002,0.01147497072815895,0.2876836177892983,-0.7364038988016546,0.08320810366421938,0.8013968160375953,-0.3920957949012518,0.5930656571872532,0.4435043465346098,0.7505413652397692,0.8773300964385271,0.9263911168090999,-0.025131565984338522,0.9687318415381014,0.2818942619487643,0.5451805936172605,0.8494413420557976,-0.84836530033499,-0.32898943265900016,0.7734537166543305,-0.4892513365484774,-0.8414531964808702,0.6002704189158976,0.3869549809023738,0.7493852451443672,-0.7317177965305746,0.6954286345280707,0.3026466825976968,0.8312475951388478,-0.6344627039507031,-0.9594533466733992,0.546858957502991,-0.43122681928798556,-0.1608362621627748,-0.6482064006850123,0.059329069685190916,0.5252220700494945,0.29634441900998354,-0.017974195070564747,-0.0258006164804101,-0.18759935209527612,-0.49182327883318067,0.26985456235706806,-0.40958982333540916,0.3263785117305815,-0.901585778221488,0.5120415687561035,-0.4791285414248705,-0.5139174642972648,0.8956740335561335,0.8698513652198017,-0.24603672744706273,0.8620007038116455,-0.123511653393507,0.9209506958723068,0.5582910641096532,-0.6870243735611439,0.7250979710370302,0.25038345996290445,0.08793167443946004,-0.4770055217668414,0.9821524252183735,-0.2894817949272692,-0.4499123855493963,0.8569234670139849,0.7585609909147024,-0.8624150017276406,-0.3123358525335789,-0.9995577959343791,0.8624120284803212,-0.347745843231678,0.9821263505145907,-0.29206246323883533,-0.004558349493891001,-0.4406961416825652,-0.06203300133347511,-0.9743453711271286,0.27561905002221465,0.22274534730240703,-0.36695992993190885,-0.5002089105546474,0.4786004717461765,-0.35165733471512794,-0.3982352577149868,0.2684380323626101,0.6707843341864645,-0.45100025786086917,-0.35059229331091046,0.5336584071628749,-0.438954065553844,-0.3695026938803494,-0.26356956642121077,0.24330313503742218,-0.6981536182574928,-0.8698394908569753,-0.13293931493535638,0.7615204262547195,-0.2486692783422768,-0.1361194383352995,-0.003390286583453417,0.032011084258556366,0.9417211906984448,-0.20654610311612487,-0.635946445632726,0.22808380611240864,-0.20659724809229374,-0.7581099974922836,0.4270160156302154,-0.3860300472006202,-0.583817477338016,0.3650551149621606,-0.5183277488686144,-0.1303786006756127,0.0666691423393786,-0.9628323786891997,0.9698930219747126,-0.279529195278883,0.7915753489360213,0.04528608126565814,0.43354815896600485,-0.24314915062859654,-0.6196735403500497,0.07932331366464496,-0.7372176796197891,-0.37285866495221853,0.9420727798715234,-0.17734647169709206,0.40561852930113673,-0.9836118509992957,0.060729796066880226,0.6103871827945113,-0.9332504887133837,-0.9071671017445624,-0.9511946686543524,-0.027304967865347862,-0.19747041491791606,-0.612837256398052,-0.7355737094767392,0.26091771852225065,0.6539336070418358,0.5263924268074334,0.19833905575796962,-0.8460567649453878,-0.47423589788377285,0.9510221239179373,-0.5093729831278324,-0.49118457455188036,-0.648330036085099,-0.34747530659660697,-0.06414424069225788,-0.5148699744604528,0.483364989515394,0.9176960540935397,0.2926874696277082,0.7505744155496359,-0.7004973543807864,-0.20712067605927587,0.023370542097836733,-0.682508728466928,0.9214582843706012,0.8652023286558688,0.40733347553759813,0.6786483083851635,0.8515505618415773,-0.7061674473807216,0.2885340736247599,-0.8367449971847236,-0.010436767246574163,-0.2938376711681485,0.9334334186278284,-0.9331303504295647,-0.45643612975254655,0.04296747501939535,0.31297173351049423,0.014298304449766874,0.07526360265910625,-0.4044044683687389,0.9516491140238941,-0.9290178613737226,0.2996905902400613,0.04804286081343889,-0.4478096207603812,-0.01668119663372636,0.8194940993562341,0.35850206296890974,-0.7565321316942573,0.409879291895777,0.21425948152318597,0.8551903408952057,-0.2548870178870857,-0.42866587406024337,0.2643389613367617,0.1632048673927784,0.4442518507130444,-0.8944117436185479,-0.8408919693902135,-0.971755700185895,-0.40205778181552887,-0.8134414232335985,0.6633327063173056,0.4392122980207205,-0.4170361631549895,0.038652006071060896,-0.5088705969974399,-0.9867785098031163,0.31137718725949526,-0.8570754183456302,-0.768813269212842,-0.677735845092684,-0.6385848890058696,-0.4023778894916177,0.41866095596924424,-0.18904236983507872,0.010997245088219643,0.3747375449165702,-0.21919136447831988,-0.24008438922464848,0.010604426730424166,-0.6638866360299289,-0.7153152665123343,0.41308991238474846,0.9785409038886428,-0.716454382520169,0.9417604319751263,0.9838818158023059,-0.10308288969099522,0.18875342095270753,0.6925095366314054,-0.041576546151190996,-0.3831469723954797,-0.469398838467896,0.8396693649701774,-0.8947050338611007,-0.301924136467278,0.5037365616299212,0.5388677730225027,0.5613536750897765,0.6578215365298092,-0.4673156854696572,-0.8483783681876957,-0.18977742223069072,-0.5900665712542832,0.4609212428331375,-0.23046028008684516,-0.8200172423385084,0.8201438253745437,0.5690873540006578,-0.40612463979050517,0.7496630731038749,-0.24994631437584758,0.7688494166359305,0.5884442874230444,0.15396270714700222,0.8221673155203462,-0.1698500132188201,0.6506767421960831,-0.022040188312530518,0.6955376002006233,0.9829250951297581,-0.4365887502208352,0.07086958643049002,-0.8993368563242257,0.2904787096194923,0.5961799146607518,-0.2668438898399472,-0.21231017727404833,-0.7994436048902571,0.8229032261297107,0.8408259376883507,0.9127232106402516,0.9625272606499493,0.1892300620675087,-0.3279068246483803,-0.6699965172447264,0.003274577669799328,0.7548490432091057,-0.6694988873787224,-0.6943915621377528,0.5164145058952272,0.8482103878632188,0.4978277599439025,-0.8545113741420209,0.2991182995028794,0.4039031667634845,-0.10452485363930464,-0.0935857486911118,-0.01172914681956172,-0.01946642203256488,-0.5508645507507026,-0.6780467117205262,-0.08320599049329758,0.6665763044729829,-0.003486326429992914,-0.008530533872544765,-0.568990089930594,-0.9313461286947131,-0.8640980636700988,-0.6474523111246526,0.01744912937283516,-0.5254633873701096,-0.8475799169391394,0.6371257835999131,-0.40483017172664404,-0.3914910266175866,-0.5439330735243857,0.44712651148438454,0.7635555136948824,-0.7929459037259221,0.4130886336788535,-0.24155118269845843,0.4262930378317833,-0.7916492293588817,-0.049640326760709286,-0.6089394986629486,-0.856541502289474,-0.41144586727023125,0.7204326363280416,0.19206681055948138,-0.9223920572549105,0.26398208690807223,0.8759767115116119,0.3766089491546154,0.7364388923160732,0.22631866857409477,0.8786030621267855,0.7084374907426536,-0.8426026240922511,-0.16669388534501195,-0.2351500829681754,-0.5226463708095253,-0.6906231236644089,-0.8513881638646126,0.7670592539943755,-0.9919533655047417,-0.6267864885739982,0.8055936638265848,0.45303388265892863,-0.10878953849896789,0.8174520288594067,-0.2564210784621537,0.2890755943953991,0.6579936458729208,0.5858319876715541,0.7389764953404665,0.0011330083943903446,-0.24868864379823208,0.5759522160515189,-0.6776686757802963,0.887186590116471,0.11099909944459796,0.23923830827698112,-0.4927179687656462,0.46289735566824675,-0.02452237159013748,-0.7179933693259954,-0.5956196472980082,0.5582548300735652,0.26436091447249055,0.2895624628290534,0.6950923376716673,0.2902073389850557,-0.048883465584367514,-0.4074835064820945,-0.6036925185471773,-0.3718900643289089,0.19691241160035133,0.5063031031750143,0.8984721163287759,0.2830345234833658,-0.2752133156172931,0.2378118084743619,0.6126549504697323,0.033002616837620735,0.03625276545062661,0.3498081946745515,0.19297982985153794,0.9533634409308434,-0.8701077392324805,0.011244218330830336,0.5153928739018738,0.3877292796969414,0.04968678578734398,0.09056519391015172,0.9833777486346662,0.8242053431458771,-0.3991416939534247,-0.10906511917710304,-0.8984346492215991,-0.3186050453223288,0.57885437970981,-0.2908837213180959,0.7580186878331006,-0.0023338543251156807,-0.5494789215736091,0.5356093049049377,0.2890917188487947,0.26007337495684624,-0.13987620919942856,0.6072574071586132,-0.25000923592597246,-0.012205018661916256,0.9308736780658364,-0.48665059078484774,-0.3540371344424784,0.5650602737441659,0.9410154628567398,0.25403627566993237,0.3115689344704151,0.03561442391946912,-0.03313096892088652,0.273481217212975,-0.5908719478175044,0.14211424766108394,-0.051438259426504374,-0.1482646926306188,-0.5545893381349742,-0.15261126356199384,-0.44159805914387107,-0.43438836140558124,-0.7822850462980568,0.61036795983091,0.5694979978725314,-0.3169451360590756,-0.33499896293506026,-0.030063627287745476,0.9106727954931557,0.19561102939769626,-0.5664998618885875,-0.15698118461295962,-0.24360606260597706,-0.8044651499949396,0.06240879883989692,0.3911311780102551,-0.26305766263976693,-0.7165100132115185,-0.27850831719115376,-0.38466375693678856,-0.4324168502353132,-0.11393095226958394,0.7112184101715684,-0.35814332822337747,0.901021153666079,-0.7868603332899511,-0.026778473984450102,-0.05735916784033179,0.17234698869287968,0.1961236707866192,0.24806803464889526,0.13501462852582335,0.2873701346106827,0.39420757396146655,-0.42191545525565743,-0.8713945564813912,0.866248874925077,0.7875415883027017,-0.6737451697699726,-0.2663360256701708,0.372740529011935,-0.04780798079445958,0.025178792420774698,-0.037597726099193096,0.23485988192260265,-0.020159017760306597,0.4080873066559434,-0.6709125800989568,-0.7462184634059668,-0.971206430811435,-0.6841810108162463,0.68481081770733,0.09293819544836879,-0.9990797932259738,0.8200149005278945,0.23191511677578092,-0.71967156464234,0.036687666550278664,0.7312130462378263,0.24763894733041525,0.1892695501446724,-0.2558944229967892,0.8723220145329833,0.534205848351121,0.7732221316546202,0.6953052459284663,0.9769791406579316,-0.6651418819092214,0.821778820361942,-0.6727726403623819,-0.3351844875141978,0.9531335490755737,0.09808158036321402,-0.2582792192697525,-0.2692905953153968,0.02057299530133605,0.2674614619463682,0.22401942126452923,-0.25639313319697976,-0.9305943641811609,0.7715014587156475,-0.741025812458247,0.882416196167469,-0.3824765966273844,0.9830552814528346,-0.9915358289144933,-0.11821713345125318,-0.30253600468859076,0.794815531000495,0.5442181099206209,-0.5222475156188011,0.6449887924827635,0.07259549060836434,0.325992314144969,-0.6252175928093493,-0.35476123401895165,0.7734899311326444,0.9235140183009207,-0.9268078054301441,-0.11548626236617565,0.2883591018617153,-0.846464826259762,-0.10239450912922621,-0.11742513114586473,-0.07561400858685374,-0.1463786824606359,-0.5291164312511683,0.550017278175801,-0.968566513620317,0.11607643030583858,0.5568941337987781,-0.18866536859422922,-0.5080716861411929,0.3993583908304572,0.8708877335302532,-0.3547585317865014,-0.8846887047402561,-0.07344614947214723,0.4659204129129648,-0.38496242463588715,0.9309694138355553,-0.42542790342122316,-0.7870381688699126,-0.8175635957159102,0.06103429617360234,0.34691186947748065,0.4899675566703081,0.4271268742159009,0.11287541827186942,-0.07169470796361566,-0.21778956661000848,-0.2195161352865398,-0.5534101417288184,0.16401898860931396,-0.46340800542384386,-0.824240846093744,0.10388146061450243,0.30351640516892076,0.9770853398367763,0.849663554225117,-0.46405788604170084,-0.2959371777251363,-0.6180912698619068,-0.2637457554228604,0.030015225522220135,0.016402944922447205,0.05146578559651971,0.33879281766712666,0.8815703373402357,-0.3375607980415225,-0.43502756068482995,0.2690740651451051,0.08451229985803366,0.6240340317599475,0.9436882343143225,0.9790427074767649,-0.9125105370767415,0.21895821671932936,0.3385969400405884,-0.6581295607611537,-0.333277412224561,-0.7714221198111773,0.9520500116050243,0.7783134370110929,-0.23375811614096165,0.8405319503508508,-0.42201153049245477,-0.308228000998497,-0.9576931586489081,0.18788996012881398,0.10594834573566914,0.4020438566803932,-0.8932442525401711,0.6024934006854892,0.09052668325603008,-0.11693342169746757,-0.43866274878382683,-0.19754837732762098,-0.5856196219101548,0.09375055367127061,0.684533603489399,0.12101611448451877,0.9392964011058211,0.8629242000170052,-0.9107277388684452,0.6642018225975335,0.9969326416030526,0.884515801910311,-0.5265236645936966,-0.6042595976032317,0.8897167155519128,-0.6551238601095974,-0.7578759985044599,-0.36095829820260406,0.843547579832375,0.5042240130715072,-0.4567464590072632,0.3621400613337755,0.10086957551538944,-0.9757327847182751,-0.6186316618695855,-0.4176450613886118,-0.11796732060611248,0.006127432454377413,0.2356280260719359,-0.17319848015904427,0.08473876444622874,0.13435455411672592,-0.2930945889092982,0.4796336139552295,-0.22527559893205762,0.701960613951087,-0.8176429686136544,-0.767162955366075,0.21358837839215994,-0.6247910601086915,-0.7624444863758981,0.8882520734332502,-0.5529287704266608,0.7434295918792486,0.31991325924173,0.25095963291823864,0.9639465976506472,0.28472299315035343,0.8981556603685021,-0.14936016406863928,-0.7034709909930825,-0.9384948089718819,0.3365265103057027,0.36788790998980403,-0.8201045268215239,0.43593916669487953,0.9904417679645121,0.49429231230169535,0.14817198319360614,0.890528155490756,-0.434431625995785,-0.6551420530304313,0.578997680451721,0.7374053266830742,0.6078605288639665,-0.43726531509310007,-0.23567624017596245,0.3477128744125366,-0.07005355507135391,-0.2182406298816204,-0.30608215648680925,0.14328241255134344,0.2993892449885607,-0.8317047110758722,0.225348349660635,-0.9516985369846225,0.35678729321807623,0.891940837725997,0.9514752211980522,-0.3787035485729575,-0.48492468195036054,0.31792442686855793,-0.6809913818724453,0.24162603868171573,-0.40900880517438054,-0.8954502916894853,0.5888132825493813,0.6175957396626472,0.22443263046443462,0.17868122132495046,0.7028085915371776,0.21960458531975746,0.03628770262002945,0.32675501983612776,-0.9932193821296096,0.06803281418979168,0.26260084239766,0.40510704135522246,-0.5509259407408535,-0.20700560370460153,0.9649786124937236,-0.7389118201099336,0.6325347563251853,-0.9131364827044308,0.3470651637762785,0.8527650195173919,-0.7511633415706456,0.8222926869057119,0.5116323065012693,-0.04490838339552283,0.0801188494078815,-0.6332680550403893,-0.892454085405916,-0.7626229207962751,-0.12871283572167158,-0.11283761775121093,-0.576632771641016,-0.4425408849492669,-0.3369731162674725,-0.9813346527516842,-0.6303084073588252,-0.30537459114566445,-0.10855070827528834,-0.9196263439953327,0.5298866811208427,0.2733007026836276,0.052435329649597406,0.10422372398898005,-0.9959174846298993,-0.7654981235973537,0.940876167267561,0.11073298705741763,0.3511998360045254,-0.5352569096721709,-0.202684142626822,-0.056612811516970396,-0.284420742187649,0.7580017796717584,0.7872590785846114,-0.2842230121605098,-0.14787766570225358,0.9047325709834695,0.7263002758845687,-0.8780648126266897,-0.4161976305767894,0.8983689481392503,-0.9617173820734024,-0.5816580825485289,-0.2335278857499361,0.6881954432465136,0.4465776733122766,0.1586061012931168,-0.6360540953464806,-0.4620805745944381,-0.30746269319206476,0.8469984978437424,-0.6062424494884908,0.6183772697113454,-0.9329252103343606,-0.888070497661829,-0.5692035648971796,0.7603726768866181,0.9842270598746836,0.6063329628668725,-0.012150300666689873,-0.9342073271982372,0.5603834744542837,-0.9958946295082569,0.42985385889187455,-0.9597962717525661,0.9480611835606396,0.4629598534666002,0.8517614938318729,0.7116966093890369,0.7299482123926282,-0.6560953054577112,0.8949147867970169,0.6409925115294755,0.8854016680270433,0.09828482894226909,-0.46481631975620985,0.41978022223338485,-0.5748622259125113,0.5564618133939803,-0.4438395332545042,-0.04956675739958882,0.1275686640292406,-0.6897798529826105,-0.09180367644876242,-0.5994572667405009,0.43238241458311677,-0.1980568552389741,0.7633850420825183,-0.5301045896485448,-0.4402683791704476,0.06640198826789856,-0.5958062796853483,-0.8326950944028795,0.1589424191042781,0.4550190339796245,-0.7267880118452013,-0.7774292435497046,0.5768827912397683,0.596156828571111,-0.5850721839815378,-0.3304957137443125,0.21421386115252972,-0.9393089446239173,-0.25862584728747606,-0.46303615998476744,0.4922587382607162,-0.039551816415041685,0.130329261533916,0.932723815087229,-0.8652585241943598,0.8617185759358108,-0.6117255515418947,0.06477449275553226,0.34870556369423866,-0.7089990978129208,0.9649245836772025,-0.6642517037689686,0.6331460275687277,0.10151083767414093,-0.06793282693251967,0.6265358454547822,0.10545994061976671,0.07817525463178754,0.9423200646415353,0.2318808538839221,0.19504606816917658,0.030288354959338903,0.08647900773212314,0.4019138151779771,-0.8204444204457104,0.5553243840113282,0.9020311874337494,0.11029047891497612,0.7898298711515963,-0.5905859395861626,0.6721183932386339,-0.25276580918580294,0.08719149185344577,0.1719789677299559,0.619094236753881,0.558698866982013,-0.991039780434221,-0.09834448806941509,-0.12661099107936025,0.9303850112482905,-0.005529210437089205,-0.5897450805641711,-0.49699680553749204,-0.058608988765627146,0.4297347539104521,-0.8099597310647368,0.4008329180069268,-0.40161192463710904,0.31535383127629757,0.8879377213306725,0.2439372567459941,0.5281937667168677,0.35091718286275864,-0.7948178825899959,0.874877252150327,0.589112798217684,-0.09169462462887168,-0.14116036240011454,0.12771543627604842,-0.09075322886928916,-0.8642288586124778,-0.8196441899053752,-0.6271090717054904,-0.0862242542207241,-0.4353637923486531,-0.3840846470557153,-0.32813527155667543,0.03599408268928528,-0.4921448486857116,-0.7355864904820919,-0.5827752235345542,0.9120890088379383,-0.4442730164155364,-0.9153566071763635,0.49508875142782927,-0.20154636958613992,0.06692435732111335,-0.8001295845024288,0.7139336210675538,0.4557582032866776,0.3882808778434992,-0.7159563396126032,0.17080713482573628,0.09482376929372549,0.8301628502085805,-0.2857837020419538,-0.21745490655303001,-0.00020752707496285439,-0.4917052146047354,0.7371760061942041,0.5278199943713844,-0.20551223400980234,-0.4213479105383158,-0.5999104087240994,-0.6702451147139072,-0.4818137986585498,-0.7094112220220268,-0.26796297496184707,-0.17465905519202352,-0.8970902604050934,-0.03029592242091894,-0.1945549137890339,-0.7143429387360811,-0.2700875452719629,0.38096914533525705,-0.936155500356108,-0.8601077003404498],"z":[0.6928060264326632,-0.47967349411919713,0.07835958432406187,0.3390494007617235,-0.07917214184999466,0.48509815987199545,0.2560607772320509,0.05220034345984459,0.2167516457848251,0.5562248942442238,-0.3536406001076102,-0.9209570274688303,0.7895150352269411,-0.8319377517327666,0.5520518510602415,-0.6426731408573687,0.632281816098839,-0.68982017878443,-0.8788521927781403,-0.8390164426527917,0.39576099580153823,0.6348724169656634,-0.8561396170407534,-0.7283378853462636,0.965415695682168,-0.3279576161876321,-0.24706421280279756,-0.03427040250971913,0.14246256882324815,-0.2705234563909471,-0.8357628295198083,0.8341934755444527,-0.6947418828494847,-0.923096708022058,-0.14067246997728944,0.02865160210058093,0.47966222977265716,-0.7575814188458025,0.752862905152142,-0.4954480454325676,-0.655019911006093,-0.8301201211288571,-0.5577514474280179,0.1142593827098608,0.5062832846306264,0.9103403226472437,0.9129403093829751,0.04058249620720744,0.3351329038850963,0.8679547165520489,0.3040795628912747,-0.0622752127237618,0.8589215315878391,0.6018190905451775,-0.06615394307300448,-0.7978970720432699,-0.7971471264027059,-0.9137484915554523,-0.01492949528619647,-0.9613115428946912,0.9544492485001683,-0.6125306100584567,-0.349195861723274,-0.48877974273636937,0.17020293278619647,0.4625255549326539,-0.17951126210391521,-0.29260318214073777,0.5388869061134756,-0.12039381777867675,-0.3350007077679038,0.5524235055781901,0.29914478305727243,0.4017586223781109,-0.7855269545689225,0.3012136220932007,-0.4799025864340365,-0.5982286939397454,-0.2800651774741709,0.04105104133486748,-0.3013540147803724,-0.03153881384059787,0.7878393153659999,0.5463319323025644,0.21191177563741803,-0.6414421061053872,-0.3094804505817592,-0.41897413274273276,0.8395067979581654,-0.8378131245262921,-0.09070077398791909,0.051899781450629234,0.21549821877852082,0.4895876715891063,-0.17521916888654232,0.7771674026735127,0.1000446486286819,0.45183090306818485,0.5311394017189741,0.2915185671299696,-0.38385979644954205,-0.13263624114915729,-0.6751486822031438,0.6917979549616575,-0.953318193089217,0.40268874587491155,0.025746616534888744,0.24810051126405597,-0.8485164172016084,0.6758806048892438,-0.952973541803658,0.4599074418656528,-0.39394781924784184,-0.1855933740735054,0.36683344654738903,-0.4382650591433048,-0.05140312807634473,0.8151437104679644,0.05949778389185667,-0.2335242060944438,0.9103648010641336,0.9204862923361361,0.08543568942695856,0.5221464773640037,0.908711458556354,-0.5625729402527213,-0.4721103636547923,-0.7584096887148917,0.952977261506021,0.6509397174231708,-0.40695664938539267,0.7163848984055221,-0.9018445112742484,-0.6125788181088865,-0.8019620515406132,0.6824362017214298,0.18279927363619208,0.5901639475487173,-0.2616643817164004,-0.49953125044703484,-0.7550965822301805,0.6358434334397316,0.6341573880054057,-0.49198164884001017,-0.8625251525081694,0.3170522879809141,-0.8547033467330039,0.4697999316267669,0.4566321768797934,0.793316706083715,0.899987774901092,-0.6211691345088184,-0.7978774206712842,-0.30887844134122133,0.0941192489117384,0.26174281258136034,-0.1424935096874833,-0.32770603662356734,0.8210026668384671,-0.12135780230164528,-0.35711680306121707,-0.18655584286898375,-0.03813443798571825,0.001489714253693819,-0.4512388980947435,-0.563074130564928,-0.6842780173756182,0.1768251908943057,0.452867747284472,0.5934641263447702,0.1857684962451458,0.920396625995636,-0.6160249854438007,0.9344436046667397,0.4530351385474205,0.76932024769485,-0.3213438894599676,0.6993492697365582,-0.13814873015508056,0.8422318743541837,-0.6459664991125464,-0.18754500802606344,0.21330805402249098,0.6615126910619438,-0.9117939774878323,-0.9307628958486021,0.9651876706629992,-0.135618032887578,0.10771919460967183,-0.03711649542674422,-0.5317438263446093,-0.661207030992955,-0.2687591607682407,0.42789090843871236,-0.17223652638494968,-0.2342305714264512,-0.6362213040702045,-0.786173103377223,-0.6830251761712134,-0.7598507846705616,-0.07642320822924376,0.420623492449522,0.6178075764328241,-0.24497560504823923,0.6239909250289202,-0.5804829658009112,0.01750411605462432,-0.023789449129253626,-0.461637893691659,-0.2745904326438904,-0.8896316234022379,-0.7643191949464381,0.6854021898470819,0.11578434240072966,0.8583335313014686,-0.33639438450336456,-0.13142554042860866,0.04480566782876849,0.6965638394467533,0.43874814407899976,0.821712076663971,-0.058250810485333204,-0.06310519576072693,-0.4120281874202192,0.394643762614578,0.9323827284388244,-0.5953129925765097,0.08305394276976585,0.743097725789994,-0.9597143684513867,-0.8235709341242909,-0.5983077655546367,-0.9044078593142331,0.5868547572754323,-0.3393136444501579,0.9686160278506577,-0.3033461864106357,-0.8785332925617695,-0.7648176881484687,-0.5191683610901237,-0.6780130849219859,0.2383874780498445,0.07067223265767097,-0.2733790623024106,-0.5814994093962014,-0.1751298774033785,0.08101894939318299,-0.5314782969653606,-0.6614182582125068,-0.5692223687656224,0.937127553857863,-0.7619675016030669,0.5467058545909822,0.8763316087424755,-0.5941966339014471,-0.05943784769624472,-0.7077086889185011,-0.665041540749371,0.4696762622334063,-0.11365628894418478,-0.08784824516624212,-0.6467969110235572,-0.32486703898757696,-0.3972740927711129,0.02412996208295226,-0.9577165152877569,-0.31037886533886194,-0.7162314648739994,0.696217218413949,0.045017761178314686,-0.9467073166742921,0.5325796222314239,0.08892998984083533,0.5361773450858891,-0.04270240385085344,-0.3144602822139859,0.12934435531497002,0.20551787270233035,-0.5545245981775224,0.9718193793669343,0.31898080417886376,0.7458587912842631,-0.520864786580205,0.7339242552407086,-0.048131346236914396,-0.22619450464844704,-0.3021039688028395,-0.4063063799403608,-0.004933555610477924,-0.7013561720959842,0.4703923389315605,0.8357207495719194,0.30621584644541144,-0.7790940687991679,-0.9431968932040036,0.5530337207019329,0.2038558954373002,-0.22064878419041634,0.651514817494899,0.3487622714601457,-0.9169693482108414,0.5175861581228673,-0.5333993406966329,-0.5348187093622983,-0.31279622204601765,0.6526365708559752,-0.6115209395065904,-0.7090997216291726,0.8091351119801402,0.35247200820595026,0.19680959964171052,0.47587982984259725,0.07129063736647367,0.3949029133655131,-0.5816091555170715,0.8519666162319481,0.44291602494195104,-0.6200691987760365,0.1556496424600482,0.8975716447457671,-0.9639983368106186,0.28229793487116694,0.33244633628055453,0.945836000610143,0.8684083069674671,0.9049266153015196,-0.8258623983711004,0.9615415260195732,-0.20033923583105206,-0.25279635516926646,-0.494439990259707,0.17436236096546054,-0.5485483510419726,0.8508855178952217,-0.5866057253442705,0.11868186900392175,-0.18633431382477283,0.9809435098432004,0.19794093305245042,-0.24811695562675595,-0.49273465014994144,0.25393568770959973,0.34013186814263463,0.6077951057814062,0.4361054324544966,0.9188451385125518,0.14926460478454828,-0.2703528758138418,0.2526394594460726,-0.8678176803514361,-0.9121456202119589,0.04602571204304695,0.5711571285501122,-0.4729750379920006,0.09895226918160915,0.826167166698724,0.14096893649548292,-0.46508769039064646,-0.6370932930149138,-0.8583158371038735,-0.15580055210739374,0.3208109796978533,0.8377791731618345,0.6312924553640187,0.17474257480353117,0.1391167063266039,0.838089999742806,-0.7815274926833808,-0.7804559101350605,-0.0899546118453145,0.4654691847972572,0.35846652649343014,-0.2963011940009892,-0.7676130579784513,-0.8476110827177763,0.36269556591287255,-0.9110840177163482,-0.1873529739677906,0.13345577893778682,-0.9969823048450053,-0.6196738295257092,0.10616945708170533,0.7298371316865087,-0.09129011072218418,0.5443923179991543,0.9188695456832647,-0.4556658724322915,0.404820216819644,-0.8627254506573081,-0.538364018779248,0.08136225864291191,-0.9917468368075788,-0.8433053018525243,0.6038910681381822,0.057135016191750765,0.15445633325725794,0.8194172312505543,-0.8148285839706659,-0.18111252458766103,-0.24339830176904798,-0.1721670194528997,-0.6121381758712232,0.9121856358833611,-0.0024158423766493797,-0.10945005854591727,0.9612984573468566,-0.05137369455769658,0.29441566206514835,-0.6086629084311426,0.8014723393134773,-0.15817650128155947,-0.8944771345704794,-0.15538555476814508,0.47539162589237094,0.4001331804320216,-0.1767407120205462,0.6023313119076192,-0.5255203931592405,-0.7434617537073791,0.9948952817358077,-0.25238262536004186,0.0790832438506186,-0.6913549033924937,-0.25234730541706085,-0.4933178620412946,-0.06882442627102137,-0.9917696653865278,0.601747490465641,-0.12257399456575513,0.31251551816239953,0.04007420875132084,-0.29946533078327775,-0.15714601753279567,0.5241606910713017,0.4175979685969651,0.251284824218601,0.30701023433357477,-0.025216474663466215,0.07324823038652539,0.7868693177588284,-0.7288706512190402,0.3566088159568608,-0.525811676401645,0.6640648217871785,0.30535937240347266,-0.17410089168697596,0.9794272496365011,-0.48296306235715747,-0.6252860547974706,0.11546356044709682,0.7982925749383867,0.5037866453640163,-0.5667129731737077,0.24339316971600056,-0.5437948480248451,-0.26459638169035316,0.7751901196315885,0.11474949959665537,0.17392817186191678,0.9908729661256075,0.45956503925845027,0.08222184423357248,0.041224726010113955,-0.10988422529771924,-0.7054006750695407,-0.8107586773112416,-0.0542266103439033,-0.17127446131780744,-0.6015856652520597,-0.8267303546890616,0.020978751126676798,-0.03866107715293765,0.5071056322194636,0.5752145661972463,0.2274060770869255,-0.14529887214303017,0.30328043922781944,0.5967575958929956,0.05389544880017638,-0.14014775026589632,-0.11907299049198627,0.44593292148783803,0.910306335426867,-0.33073386875912547,0.38593743089586496,0.18531812308356166,0.8265122971497476,-0.9600970325991511,0.31682573538273573,-0.38506368175148964,-0.7516997209750116,0.7906949236057699,0.28039335599169135,0.03424239158630371,-0.9485545163042843,-0.608759711496532,0.4807853102684021,0.6797648263163865,-0.05251671466976404,0.26494994945824146,0.9232559530064464,-0.79153234930709,-0.6112447869963944,0.29214115953072906,0.2248074058443308,-0.1538457553833723,-0.9900617222301662,0.6682433183304965,0.15806143218651414,0.4428605870343745,-0.8520233607850969,0.7850035838782787,-0.2694158349186182,0.96770188678056,0.501893081702292,0.8615066460333765,0.045971681363880634,0.5585169880650938,-0.8215055004693568,-0.22391334921121597,-0.720619949977845,-0.23304929351434112,0.17845872044563293,0.6107067507691681,-0.7702873470261693,-0.10330867301672697,0.6096520330756903,0.9379917806945741,0.6779983853921294,-0.6365423975512385,-0.8514203820377588,-0.8959006103686988,-0.6398759107105434,-0.2322755209170282,-0.6446127542294562,0.38259319588541985,0.9696359862573445,-0.47881339956074953,0.06247941078618169,-0.3646867792122066,0.8841334888711572,0.6986035876907408,-0.8860894194804132,-0.355126840993762,-0.5412801234051585,-0.2505148136988282,0.4304704573005438,-0.6458256300538778,-0.19682684307917953,-0.6261548437178135,0.6436221757903695,0.7380006918683648,0.9657214200124145,-0.12758010206744075,-0.8811310483142734,0.13134889025241137,-0.25087135564535856,-0.46177887776866555,-0.5797624825499952,-0.41742160078138113,-0.9741537841036916,-0.5513529563322663,0.1675364188849926,-0.3719823928549886,0.6663760743103921,0.012946529779583216,0.10182089358568192,-0.9979078536853194,0.01922218967229128,0.1616495386697352,-0.39392942702397704,0.6458783000707626,-0.12086334777995944,0.6164689133875072,-0.012387511786073446,-0.21825120272114873,0.5182165424339473,0.395745066460222,0.002177303656935692,0.795826306566596,-0.20361238066107035,-0.3930243677459657,-0.8064170172438025,-0.8790088235400617,0.7610811199992895,0.24061088962480426,-0.022680751979351044,0.7724160612560809,-0.0669722338207066,-0.943810498341918,0.5467536537908018,0.29058483988046646,0.1760381986387074,0.1634929133579135,-0.8967634788714349,0.4874876248650253,-0.8096327418461442,0.6183735732920468,0.49593446822836995,-0.2802656842395663,0.8746677651070058,-0.3417315357364714,0.33023624448105693,0.7124118967913091,-0.6221058187074959,0.6462758821435273,-0.15156520204618573,-0.644290913362056,0.7042983574792743,-0.7432090239599347,0.9787462335079908,0.9551397520117462,-0.233419768512249,0.27082292921841145,-0.6406324384734035,0.024274414405226707,0.272144827991724,0.24980156542733312,-0.02700040815398097,0.9367095585912466,-0.697870884090662,-0.5391654665581882,0.3980209236033261,0.5684306463226676,0.6251815157011151,0.630474385805428,-0.6905733929015696,0.20248596975579858,0.016937520820647478,0.45470152609050274,0.918881215620786,0.3767123674042523,-0.6630087620578706,0.7338572577573359,0.17221880611032248,0.28313952405005693,-0.9406902552582324,0.4962359769269824,0.6368598560802639,0.2427127375267446,0.989081044215709,0.2966869962401688,-0.3415053845383227,0.5359829883091152,0.21425001230090857,-0.05280996207147837,-0.5861744992434978,-0.31376999942585826,-0.11856385925784707,0.98433290515095,-0.27728257700800896,-0.3029604251496494,0.8379930038936436,0.049922630190849304,0.046609917655587196,0.9651224194094539,-0.7043522344902158,0.09959116438403726,0.4791474393568933,-0.3181075854226947,-0.2956631020642817,0.7003957559354603,-0.8043539691716433,-0.3014138382859528,-0.9245351143181324,-0.8581449496559799,-0.895926985424012,-0.22293000062927604,0.48763065272942185,-0.02849985333159566,-0.2340873940847814,0.6571067818440497,0.5853515188209713,-0.12609847588464618,-0.24459820380434394,0.3394057070836425,0.2866660077124834,-0.19284739438444376,0.4970951643772423,-0.16310529969632626,-0.8883738820441067,0.775892878882587,0.7507235603407025,0.3234418947249651,-0.8776846029795706,0.8309993958100677,-0.9575624167919159,-0.1633158139884472,-0.46713958447799087,0.6739348112605512,-0.4924392756074667,0.9906424377113581,0.21944048767909408,0.1451268745586276,0.5872765691019595,0.7491448521614075,-0.861656182911247,0.5546116409823298,0.3848742311820388,0.9603343075141311,0.11687348037958145,0.3930873330682516,-0.44337579561397433,0.42140320874750614,0.16101085860282183,0.11537761893123388,0.1306076687760651,-0.4642787389457226,-0.13748894352465868,0.008088421076536179,0.09501996077597141,0.3150491965934634,0.667093921918422,0.7773429858498275,-0.28084694035351276,-0.9082072330638766,0.5004486618563533,-0.6093748304992914,-0.25735327508300543,0.4615458087064326,0.3279726658947766,0.18281156057491899,0.98366170655936,-0.4314788952469826,0.5385131384246051,0.43450910970568657,-0.12014793185517192,-0.5378662855364382,-0.05811651377007365,0.7074938775040209,0.2177912648767233,0.8678540517576039,-0.04360543377697468,0.6771431108936667,0.7134821419604123,0.2818161016330123,-0.31339747458696365,0.5826964504085481,-0.1454038848169148,0.3134626345708966,0.14993665274232626,0.8836248531006277,0.7659612740390003,0.2709445748478174,0.1753020603209734,0.04527277918532491,0.1648738095536828,0.9312743698246777,0.05575718032196164,-0.7224261183291674,0.2914349022321403,-0.94887839211151,-0.1318008890375495,0.021026700735092163,0.17110455967485905,-0.730368772521615,0.10223232861608267,0.8986761472187936,0.9318131501786411,-0.915311252232641,-0.8482151990756392,0.5484762671403587,-0.8342096265405416,0.3277887827716768,0.8518668804317713,-0.9433089434169233,0.5803505061194301,0.763541741296649,-0.7591209076344967,0.7432173443958163,-0.9628768721595407,-0.8788339318707585,-0.2161660250276327,0.2501298189163208,0.7432162999175489,-0.8311836589127779,-0.03670980595052242,-0.6266199862584472,-0.6780405766330659,-0.645720733795315,0.8679920877330005,-0.21128949848935008,0.3284598155878484,-0.2545573734678328,-0.6954930764622986,0.6523807602934539,0.8517606547102332,-0.21086275996640325,0.4605065770447254,0.3659698413684964,0.6322728381492198,-0.4405114222317934,-0.007311440538614988,0.001635214313864708,0.8948506242595613,-0.6901436313055456,0.48407670529559255,-0.8723283484578133,-0.27412503911182284,0.9823587737046182,-0.7158150654286146,-0.13637469802051783,-0.9746805345639586,0.5952371638268232,-0.6098420550115407,-0.07991046132519841,-0.533566468860954,-0.2653814759105444,0.47719739750027657,-0.6112093245610595,-0.7365098488517106,0.8182959454134107,-0.1480162492953241,-0.4914372693747282,-0.6350908204913139,0.7486473019234836,0.10722145764157176,-0.6455931644886732,0.24209457449615002,0.7395451664924622,-0.3966155215166509,-0.4631104012951255,0.9084591763094068,0.6621010606177151,-0.5398888671770692,0.013552457094192505,-0.7825569878332317,-0.7114427983760834,-0.19067330239340663,-0.43649290269240737,-0.8915165467187762,0.9634646619670093,-0.12625050311908126,-0.11386010563001037,0.43233413342386484,0.6805391809903085,0.6099069956690073,-0.5470590675249696,-0.33289950620383024,0.4388290150091052,-0.5056736255064607,0.5591035992838442,0.0859330166131258,0.7270314339548349,0.49614383559674025,0.609427573159337,0.14325166353955865,-0.8059808970429003,-0.5773223135620356,0.6232051644474268,0.5262698838487267,0.28719120379537344,-0.5948733277618885,-0.6253010928630829,-0.6891029933467507,0.9753910233266652,-0.5544870984740555,0.4366622408851981,-0.5143779967911541,0.7915859622880816,0.6341574522666633,0.8466591965407133,-0.4727494423277676,-0.8627992165274918,0.6708164429292083,-0.25316133070737123,-0.5393543159589171,-0.4651897279545665,0.35781502164900303,0.2986136516556144,0.9529702207073569,0.8609040705487132,-0.11754680145531893,-0.5487920953892171,0.31343481643125415,-0.6603695512749255,-0.0552725656889379,0.648678230587393,0.6120959776453674,-0.11832971312105656,-0.973721100948751,-0.8788646650500596,-0.45101009868085384,-0.09295650804415345,-0.8732728352770209,0.01033229660242796,-0.34816571278497577,-0.06225808849558234,0.3284989055246115,-0.1184246251359582,0.9632427394390106,-0.7028830265626311,0.3015418853610754,0.2330451630987227,0.12684564106166363,0.278670787345618,-0.21710755536332726,0.2337919594720006,-0.7255514687858522,0.7534217140637338,-0.9808651288039982,0.8106176564469934,-0.1002919222228229,0.29981034249067307,-0.5541277709417045,0.2575325802899897,-0.6737140035256743,-0.9485758552327752,0.4593638856895268,-0.4998303675092757,-0.06596444640308619,-0.24060615245252848,-0.1049555754289031,0.21566372038796544,-0.5247146948240697,-0.6710659209638834,-0.9021399556659162,0.13168285274878144,0.6005422407761216,-0.1497069112956524,0.8815810182131827,-0.5617603329010308,0.9123246558010578,0.8478762614540756,0.509238469414413,0.7264999561011791,0.431595697067678,0.7087729554623365,-0.45432594092562795,0.8622689340263605,0.4549968312494457,0.35651779640465975,0.9561300496570766,-0.3491640114225447,-0.8003685241565108,0.7369779660366476,-0.1895502619445324,0.5496307597495615,-0.6435870355926454,-0.15956834331154823,-0.24054305721074343,0.9935617260634899,0.5274406224489212,0.030999964103102684,0.1819857433438301,0.04104215884581208,0.4170218915678561,0.2882511578500271,0.47565252520143986,-0.6547314724884927,0.748354057315737,-0.7843607859686017,-0.527340694796294,0.6522104209288955,-0.4198412620462477,-0.6746110804378986,0.2061503864824772,-0.5485695474781096,0.5902472240850329,0.7454851814545691,0.08625410823151469,0.0966663658618927,0.4400996780022979,-0.6081698890775442,0.6973790875636041,-0.09902601921930909,0.7182046747766435,-0.4743631514720619,0.1672499100677669,0.17465164279565215,0.7759478930383921,0.6753674354404211,0.08181456290185452,0.7298641428351402,0.2813692567870021,-0.9632440828718245,-0.31609264109283686,-0.33419863833114505,-0.3426253763027489,0.90026560658589,-0.5368217225186527,0.7352953744120896,0.0616793530061841,0.5619138362817466,-0.3196161729283631,0.12260269559919834,-0.2140217781998217,-0.8418027264997363,0.08915422949939966,-0.9284855127334595,-0.08934077341109514,0.3935963800176978,-0.7688234304077923,0.7944772220216691,0.4752072896808386,0.3358365544117987,0.6687863115221262,0.6976139643229544,0.6865759142674506,-0.82812070986256,-0.526731348130852,0.47650672448799014,-0.783653418533504,-0.30070406990125775,-0.25674140686169267,-0.5421725800260901,0.7799654924310744,0.1604164969176054,-0.7643912807106972,-0.5287412749603391,0.009709789417684078,-0.6100956574082375,-0.7384363068267703,-0.7196824895218015,-0.03256276063621044,-0.10321182804182172,0.7888610768131912,0.4386670137755573,-0.7291540820151567,-0.8770740912295878,0.8041327311657369,-0.2316864817403257,-0.7332994746975601,0.22015358041971922,0.6682386603206396,0.06998585490509868,0.3453802242875099,0.9021756518632174,-0.02285458007827401,-0.2613932671956718,0.8464712505228817,-0.9029176062904298,-0.04768947185948491,0.023737280629575253,-0.43723882595077157,0.42078128596767783,-0.45110582932829857,-0.597122301813215,-0.7296985895372927,-0.1977079496718943,-0.10716821765527129,0.8376222755759954,0.1291391127742827,0.33233858877792954,-0.8539194972254336,-0.06389868818223476,-0.5761404037475586,-0.030621892772614956,0.6263661682605743,0.08791020233184099,0.6617439286783338,0.3017197595909238,0.8301581717096269,0.17146547557786107,-0.10989747103303671,-0.6099788532592356,0.9534567426890135,0.22883865982294083,-0.5901589188724756,0.005445112474262714,0.6607691277749836,0.5911811906844378,-0.5180355128832161,0.39912231359630823,-0.22331907879561186,0.34246214712038636,-0.05802561575546861,0.8016614047810435,-0.2685531033203006,-0.43610468739643693,-0.875808774959296,0.25046277185902,-0.9679652079939842,-0.751775139477104,-0.6847843448631465,-0.5905613019131124,-0.11495353979989886,-0.2655608453787863,0.8175811218097806,-0.6561932223848999,-0.5576183805242181,-0.9543111422099173,-0.34834520099684596,0.36735522700473666,-0.4606375526636839,0.3065319461748004,-0.8034407030791044,-0.9521223288029432,0.3731104340404272,0.6535720219835639,0.16391756292432547,-0.24623400438576937,0.31471987906843424,0.4149755868129432,-0.932035936973989,0.7467189179733396,0.9255799204111099,0.01881887996569276,0.3768565016798675,0.40096365939825773,0.0677610938437283,-0.642502523958683,0.3871510401368141,0.7118449248373508,-0.911046848166734,0.16803631838411093,-0.38776006223633885,-0.8576138224452734,-0.025619455613195896,0.04552001878619194,-0.21263421280309558,0.6796528333798051,0.5465972581878304,0.7865542583167553,-0.4902179576456547,0.9945967546664178,-0.6810741531662643,0.1447724811732769,-0.2893190183676779,0.8595529431477189,0.5924451923929155,0.3364710924215615,-0.3986221859231591,-0.78493671445176,0.09806745359674096,0.30576412891969085,0.9057770553044975,-0.49404191318899393,0.03593824803829193,0.31468828255310655,-0.9391563632525504,0.10352324228733778,0.17163110803812742,0.6570363058708608,-0.992288535926491,-0.6836335808038712,-0.3075311966240406,0.910487849265337,0.06421285727992654,0.15379484230652452,0.27117721177637577,-0.28494825027883053,-0.00691645173355937,-0.4840402211993933,-0.22499530483037233,0.6941828369162977,-0.5796452886424959,0.1433717356994748,-0.9963925071060658,0.5624278271570802,-0.2923604757525027,0.7940919985994697,-0.7940154843963683,0.4617811730131507,0.41041971649974585,-0.4838027390651405,0.5847555976361036,0.3828305429778993,0.5878951610065997,0.8240564838051796,0.9301598360762,0.4521080404520035,0.9602369414642453,0.7006405489519238,-0.9353484730236232,0.5664347405545413,0.07255596294999123,-0.21556857135146856,0.7737027243711054,0.1636199001222849,-0.9112467225641012,0.23770962934941053,0.24669089959934354,0.8853632751852274,-0.4886171552352607,-0.11716271750628948,0.6964035094715655,0.05236453050747514,-0.6068893084302545,-0.2673781346529722,-0.3200731207616627,-0.15238006925210357,0.8418921916745603,-0.7536292150616646,-0.3276280299760401,-0.2156340405344963,0.8981798351742327,-0.407559706363827,-0.33688415586948395,-0.8854604023508728,0.5597445424646139,0.9298652191646397,0.49808504432439804,-0.5428799805231392,-0.1986888376995921,0.66275595407933,0.8542417199350893,0.5802073576487601,0.7414422375150025,0.8014301368966699,-0.8034597667865455,0.2483640550635755,-0.4794712127186358,-0.5242834342643619,-0.6855990155600011,0.09112878842279315,0.3736621206626296,-0.5081727597862482,-0.3479426042176783,0.41085598571226,-0.16584967775270343,0.351897728163749,-0.22781109530478716,-0.3447265448048711,0.33240571385249496,0.21268264949321747,-0.896036715246737,-0.6401866870000958,0.262186577077955,0.6119255698285997,-0.7962269242852926,-0.18709119921550155,-0.8696506367996335,0.13416365627199411,0.3079371554777026,-0.7774398312903941,-0.5117415264248848,-0.9966223449446261,-0.6441872562281787,-0.7758027454838157,0.0732222213409841,0.5857518292032182,0.9567111898213625,-0.9085936020128429,-0.10372676886618137,-0.7860929854214191,-0.5190022974275053,0.6168869230896235,0.21703758789226413,0.10205568559467793,-0.26469008903950453,0.4613970755599439,0.8389801736921072,0.8055178946815431,0.6879837703891098,0.037734019104391336,-0.927075479645282,0.886752569116652,-0.18456268031150103,-0.6581411240622401,0.11589242704212666,0.3648220836184919,0.8360729468986392,-0.4204166168347001,-0.6759902946650982,0.36446755612269044,0.5930014946497977,0.6251965989358723,0.5577682526782155,0.1545427623204887,-0.034878337755799294,-0.9271032586693764,-0.9868936305865645,0.3607395701110363,-0.9959783451631665,-0.6027874886058271,0.9517734958790243,0.7866563182324171,0.016621262300759554,0.4910635743290186,0.1124554737471044,0.23034125287085772,0.011290534399449825,-0.8931921720504761,0.1472429009154439,-0.8945118905976415,0.2791241053491831,-0.9838687432929873,-0.4878099490888417,-0.755727814976126,-0.4631155780516565,0.7438163249753416,0.793382148258388,0.823610766325146,0.5624728086404502,-0.18797229696065187,0.9859491586685181,-0.9134789435192943,0.8608029810711741,0.7704190677031875,-0.498510183300823,0.6220481577329338,-0.21707576559856534,0.8784926934167743,-0.04215021897107363,-0.09739672159776092,-0.23220615927129984,-0.4111291519366205,0.39409467577934265,-0.5783059736713767,0.07097306521609426,-0.19233298674225807,0.7357671181671321,-0.48240511305630207,-0.20886273169890046,-0.8436592319048941,-0.2583877006545663,-0.899059200193733,-0.30253447871655226,-0.13414521049708128,-0.3623526804149151,0.29036611784249544,-0.8459260840900242,-0.651063778437674,0.1562286550179124,-0.970678336918354,0.5237736459821463,-0.8460973645560443,-0.28648291900753975,-0.7652435759082437,-0.09191124374046922,-0.580860027577728,0.6297729392535985,-0.342142419423908,-0.364907321985811,-0.8035497977398336,-0.460322187282145,0.017663396429270506,0.17894881404936314,0.2356585436500609,-0.4465698227286339,0.5642165853641927,0.6281599630601704,-0.009349967818707228,0.9865244398824871,0.9585810340940952,-0.4899653266184032,0.7308020200580359,-0.850431265309453,-0.37215988896787167,-0.2548003732226789,0.5972877736203372,0.0891757202334702,-0.38780845887959003,0.7622780352830887,0.8395706373266876,-0.1016306234523654,0.6725500784814358,0.11834193393588066,-0.9617802598513663,-0.8725927183404565,-0.8036436433903873,0.7059405278414488,0.4651479874737561,0.5709034488536417,0.042356252670288086,-0.41657929262146354,-0.7811157484538853,0.845725370105356,-0.446090757381171,0.5782576887868345,0.6745243705809116,0.7377545032650232,-0.2704349849373102,-0.01051211915910244,0.9134886367246509,-0.5139118786901236,0.7070290399715304,-0.5759836649522185,-0.29257940873503685,0.857836069073528,0.5987694063223898,-0.44924881448969245,-0.4120802478864789,-0.4046278861351311,-0.5435391664505005,-0.2775255092419684,-0.36663264175876975,0.5603273967280984,0.053022047970443964,-0.09378670249134302,-0.857644806150347,-0.5515153310261667,-0.15806408459320664,0.32996428897604346,0.16388148115947843,-0.9784260173328221,0.37830936443060637,0.7697364161722362,0.6848155898042023,-0.35486832400783896,-0.8465626956894994,-0.31316725304350257,0.0775086460635066,-0.16615785658359528,-0.7624169080518186,-0.8588274419307709,0.5481719556264579,0.7681681574322283,0.6385765434242785,0.5048476601950824,-0.2914858693256974,0.42273864010348916,0.6031960682012141,0.5562014491297305,0.9393390323966742,0.47394687216728926,0.15519750583916903,0.9647737555205822,-0.7736946316435933,0.9238407332450151,-0.5922389030456543,-0.6104408279061317,0.9667646316811442,-0.6650548214092851,-0.22712067095562816,-0.7883930220268667,0.09059293754398823,-0.5780109064653516,0.1578337918035686,-0.5963551010936499,-0.9479407765902579,0.18401640746742487,0.54724166309461,0.24324055342003703,-0.6102386475540698,0.695210984442383,-0.9202924924902618,0.24246199848130345,-0.3804960995912552,-0.6801180406473577,0.40549257956445217,0.1565415719524026,0.31820780504494905,0.8766508814878762,0.8963210554793477,0.01947600208222866,-0.12844526069238782,-0.5867693298496306,0.7561805080622435,0.5943966186605394,-0.7831372767686844,-0.4134268560446799,-0.4892154703848064,-0.9394089234992862,-0.8252761354669929,-0.7669806624762714,0.6225189710967243,-0.04985265899449587,-0.06217934237793088,0.8377975523471832,-0.32314088428393006,-0.5683520212769508,-0.3677419060841203,0.9281385624781251,-0.13965655816718936,0.7405542405322194,-0.6646847161464393,-0.053391674999147654,-0.3698328472673893,0.9321325933560729,-0.9972118316218257,-0.3251431887038052,-0.7582467282190919,0.8519400889053941,-0.5900969100184739,0.003926972392946482,-0.09752366505563259,-0.49807831551879644,0.5363786942325532,-0.9231375409290195,-0.7887669513002038,-0.6846927041187882,-0.4395763739012182,0.7282501487061381,0.9201953965239227,-0.2209135345183313,-0.9529852336272597,0.49070653272792697,-0.8771724617108703,-0.9447854640893638,0.8251289986073971,0.21779437083750963,-0.34638917865231633,-0.8110392666421831,-0.33015881991013885,-0.13982314988970757,-0.657983296085149,-0.16927784122526646,-0.6982112023979425,-0.2656043372116983,-0.12487045349553227,0.47167200967669487,0.12302251206710935,-0.13601979753002524,-0.5310574052855372,0.3267439203336835,0.13746794033795595,0.19487360771745443,-0.6320105153135955,-0.1200159415602684,0.8365748561918736,0.2706330041401088,-0.3866400965489447,0.5732295722700655,0.3359590182080865,0.6960949301719666,0.29035974526777864,0.6982123199850321,0.41053747246041894,-0.807164543773979,0.5519357938319445,0.10856595588847995,0.08691625576466322,-0.9951628777198493,0.31923775328323245,0.5618417202495039,0.9600651944056153,-0.17202406702563167,0.041948020458221436,0.7862797207199037,-0.7746904725208879,0.39514295384287834,-0.19052855437621474,-0.26047964161261916,0.09488862426951528,-0.16214375104755163,0.08319087792187929,-0.2690802956931293,0.5573718170635402,-0.4445653045549989,0.3857442601583898,0.25361169362440705,0.3723412752151489,0.5550375496968627,-0.14703856641426682,0.3187510194256902,0.10860746633261442,0.4263711394742131,-0.735512372571975,0.6090508457273245,0.7470434792339802,0.0511745298281312,-0.4186887824907899,0.6352448249235749,-0.11710054473951459,-0.2890093228779733,0.21447402890771627,0.3358576390892267,0.5590112498030066,0.21861327206715941,0.4346653022803366,-0.7432779213413596,-0.8671198207885027,0.5784295806661248,-0.5590552994981408,-0.3817674536257982,-0.13689369056373835,-0.0809444347396493,0.051874976605176926,-0.3278901493176818,-0.3921261467039585,0.3554710899479687,0.624723432585597,-0.7874096627347171,-0.3474411629140377,0.01903088577091694,0.720909652300179,-0.3024960346519947,-0.1530258171260357,-0.956580494530499,0.48501238180324435,0.5086125298403203,-0.007680047769099474,-0.7264835983514786,-0.2398496954701841,0.980291161686182,-0.7557791885919869,0.36545753851532936,-0.0607581683434546,0.26418860582634807,0.5312987705692649,-0.22526137391105294,0.8777766022831202,-0.10237711854279041,-0.8958726353012025,0.8707228847779334,-0.3711390751414001,-0.4171652910299599,0.3886541700921953,0.45261730905622244,-0.540480905212462,0.13744280254468322,-0.22494964255020022,0.6313346945680678,0.3395985495299101,0.9386678165756166,0.24104019114747643,-0.6226159296929836,-0.8337449990212917,0.18664651969447732,-0.13459090562537313,-0.20361139252781868,-0.041785771027207375,-0.061377784702926874,0.1441316674463451,0.5848897555842996,0.7168601313605905,-0.8575338656082749,-0.1255907672457397,-0.5261171441525221,0.03843243606388569,0.38452872447669506,-0.23798816883936524,-0.6595713277347386,-0.022194710560142994,-0.8512889659032226,-0.6962914685718715,-0.5190612650476396,0.8596210884861648,-0.798602435272187,0.09506747405976057,-0.9281062968075275,0.6237704707309604,-0.8157465308904648,0.26216117944568396,-0.17662766901776195,0.888904987834394,-0.5067809810861945,-0.5095348409377038,-0.1970800324343145,0.8574462630786002,-0.5012411749921739,-0.7734493408352137,0.29242935171350837,-0.35659414855763316,0.740561556071043,-0.03507430758327246,-0.4288447289727628,0.19839009596034884,-0.5247160969302058,-0.49237760389223695,-0.758040058426559,-0.7813379424624145,0.4093649089336395,0.8989655752666295,-0.9824834228493273,0.4714763294905424,-0.04556823102757335,-0.13943698536604643,0.4839733303524554,-0.9925305680371821,-0.6570445946417749,0.15632781060412526,0.5970621458254755,0.5344929601997137,-0.19113856134936213,-0.4451274131424725,0.6493871342390776,0.6444290643557906,0.6988611407577991,-0.401894707698375,0.002770199440419674,0.6345881884917617,0.646064137108624,0.10799971222877502,0.4255185700021684,0.32885457342490554,0.9917477034032345,-0.8083393801935017,-0.7958776969462633,0.6955509590916336,-0.4561917567625642,-0.4803675739094615,0.385977525729686,-0.9749516840092838,-0.4620044091716409,-0.38609316712245345,-0.09179429430514574,0.11003713682293892,0.9573422609828413,0.3442204911261797,0.9694555061869323,0.7257703798823059,-0.8529680883511901,-0.6478154575452209,-0.5565656386315823,0.4890753016807139,-0.4783312352374196,0.7819097531028092,0.6479462534189224,-0.6299287350848317,-0.5403778464533389,-0.4382807961665094,0.335089944768697,-0.815539734903723,0.2944148504175246,0.12749499129131436,-0.06355294398963451,0.9323884579353034,-0.8094858126714826,-0.8451334019191563,-0.02790106600150466,-0.717616081237793,0.27556141186505556,0.8723844075575471,-0.21184556977823377,0.5282741212286055,-0.3085029385983944,0.5976520790718496,-0.35465862415730953,0.23434954602271318,-0.6074380371719599,0.09725013608112931,0.9562735971994698,0.5763318669050932,0.5997366271913052,0.6737129641696811,0.45549865113571286,0.6934164143167436,0.9886399554088712,0.6603960283100605,-0.3885540207847953,0.10341378441080451,0.7249785820022225,-0.679129823576659,0.8381791189312935,-0.8700098055414855,-0.8812138992361724,0.22259738249704242,-0.38254743348807096,-0.29748781165108085,-0.9175811274908483,-0.2447685762308538,-0.6076031001284719,-0.8287881030701101,0.2551041264086962,0.24081250047311187,-0.17264939239248633,-0.29091057972982526,-0.20213103434070945,-0.1692778840661049,0.004863199777901173,0.9295158479362726,-0.09004293894395232,0.6637268359772861,-0.3961806735023856,-0.9935625232756138,0.16292645130306482,-0.04638818511739373,-0.5421534371562302,-0.526513563003391,-0.41329954424872994,-0.2935977694578469,0.4471041224896908,-0.695397362112999,-0.34353422513231635,-0.5847936933860183,-0.4998392309062183,0.9457995179109275,0.3017173293046653,-0.47785101691260934,0.12739982269704342,0.4500259067863226,0.20677170110866427,-0.9111888841725886,0.9926360663957894,0.5659340433776379,-0.6467796093784273,0.9590604701079428,-0.47462820587679744,0.08383989008143544,0.6248277146369219,0.5297511797398329,-0.6540680201724172,-0.22250083601102233,0.79563860129565,-0.062281583435833454,0.18109963089227676,-0.9316427335143089,0.10844594845548272,-0.18863679189234972,-0.736718017142266,0.44642346631735563,-0.0302782473154366,-0.3434059973806143,-0.42483549332246184,-0.3082336285151541,0.7194859352894127,0.08784477459266782,0.026995478197932243,0.4639557455666363,-0.28486957121640444,-0.767764194868505,0.13417521677911282,-0.7960943877696991,-0.6988019407726824,0.9615500536747277,0.3760385103523731,-0.9308383683674037,0.9684588019736111,0.15060051437467337,-0.27818031003698707,0.07295429613441229,-0.1347680320031941,-0.8000006400980055,0.2675090064294636,0.4322348553687334,-0.03204158181324601,-0.5212556980550289,-0.8707861108705401,-0.030320448335260153,-0.4391747792251408,-0.9598950799554586,0.6351660224609077,0.14324614824727178,-0.9201861848123372,0.5060699135065079,-0.9998500868678093,-0.5611018524505198,0.5327579854056239,-0.31591004645451903,-0.23277779575437307,0.9660975229926407,-0.5175315490923822,0.2608517436310649,-0.682238866109401,-0.7124444348737597,-0.46633334271609783,-0.9502448863349855,0.6989114242605865,-0.44039300410076976,-0.24297836981713772,0.5132634970359504,0.26648714346811175,-0.5663098501972854,-0.4548814292065799,0.6349287894554436,-0.23723223991692066,0.3531013741157949,0.6820591213181615,-0.25767971482127905,-0.46361599396914244,-0.9187259841710329,0.7166136549785733,0.7147612478584051,-0.24183377157896757,-0.020923149771988392,0.4174282709136605,-0.7256776010617614,-0.5306929950602353,0.6764313005842268,0.7814591592177749,0.6111330632120371,-0.46644366020336747,-0.042457598727196455,0.9705826318822801,0.6056221481412649,-0.9014193434268236,0.8625508393160999,0.7759494665078819,0.6086530229076743,-0.011749697849154472,-0.804335274733603,0.7884300365112722,0.8193904599174857,-0.7536385054700077,0.2637308486737311,-0.6401118515059352,-0.15544925816357136,-0.8356137038208544,0.2417844501323998,-0.3999248957261443,0.522616776637733,-0.6077875499613583,-0.06969677796587348,0.6764683709479868,0.5323904338292778,-0.9349695919081569,-0.8193778283894062,-0.10890500573441386,0.45263052778318524,0.9199016052298248,0.5629498767666519,0.8198360265232623,0.09501860477030277,-0.8331554075703025,0.5162286064587533,0.3695137924514711,0.7417681654915214,0.5958148688077927,-0.6170350345782936,-0.441017028875649,0.04136480716988444,-0.4833988416939974,-0.558646647259593,-0.5641271937638521,-0.33300118101760745,-0.3030362371355295,-0.025354697834700346,0.2620937619358301,-0.4911291776224971,0.11985215591266751,0.7212956752628088,-0.45203063590452075,-0.7445799810811877,-0.326301290653646,-0.7197508634999394,-0.6311095701530576,0.5472235246561468,-0.3853654647246003,-0.8806186551228166,0.8727109921164811,-0.3291006335057318,-0.758497676346451,0.01879757596179843,-0.3376622870564461,0.9533814135938883,-0.38727231649681926,-0.10853202734142542,0.38072419818490744,-0.81494433991611,0.5050232820212841,0.3568863021209836,-0.11329694231972098,0.06255358643829823,0.7782650315202773,-0.43109256820753217,0.9727522013708949,0.7155695790424943,-0.4402913083322346,0.5127003961242735,-0.8558320356532931,0.6104143550619483,-0.16467907093465328,-0.7278229743242264,0.16416716016829014,0.6062849038280547,-0.16770370351150632,-0.1719785863533616,-0.9959292132407427,-0.41554014664143324,-0.7463491759262979,-0.09241287969052792,0.4182362309657037,0.5659335618838668,0.6317436802200973,-0.418518905993551,0.3079939503222704,0.05852407729253173,0.961864956188947,-0.2265682341530919,0.018452576361596584,-0.8480402445420623,-0.23661552369594574,0.02472096588462591,-0.7834464134648442,-0.7098024925217032,0.383298025932163,0.5224221334792674,-0.6792900743894279,0.6349982433021069,-0.3044914836063981,-0.515237248968333,-0.345995154697448,0.5770554807968438,-0.8616037140600383,-0.7901437059044838,0.4418166405521333,0.7190645346418023,-0.7029700577259064,-0.0676443399861455,0.09644704172387719,0.37528415583074093,0.010899252258241177,0.11140087805688381,-0.5091055608354509,-0.8917130730114877,0.9863816979341209,0.4750301199965179,0.8524939133785665,-0.7794228666462004,0.6491415170021355,-0.9253455875441432,-0.28701778408139944,-0.25812483206391335,0.7428742595948279,-0.9495056015439332,-0.3493209592998028,-0.45218747155740857,-0.05907930247485638,-0.5351048372685909,-0.5225875023752451,0.38785272696986794,0.9465077887289226,-0.11085933865979314,0.2803529785014689,-0.4563745195046067,0.6125901928171515,-0.9783657579682767,0.5892927413806319,-0.7015681271441281,0.1542387092486024,0.67460120562464,-0.6705624936148524,0.072915468364954,-0.4535888060927391,-0.007670223247259855,0.013005455024540424,-0.6628916971385479,0.5728104403242469,-0.745182238984853,0.3804744486697018,0.3558102399110794,-0.7366997729986906,-0.7814215584658086,-0.7283064778894186,0.3755036499351263,0.21587885357439518,0.9467858509160578,-0.7875278820283711,-0.7869306700304151,-0.2897281935438514,0.35517788538709283,-0.3860737648792565,0.06753772450610995,0.33585206884890795,0.0944454101845622,0.05969518469646573,0.7570741986855865,-0.05342074343934655,-0.1498264973051846,-0.7496145665645599,0.01988705387338996,0.8153929370455444,0.9545513587072492,0.632810341194272,-0.479148936457932,-0.7294286075048149,0.6898264614865184,0.7501229792833328,-0.9339002147316933,-0.19537133676931262,-0.473848516587168,0.11451690690591931,-0.49015709152445197,0.8284245966933668,0.6935878382064402,-0.9971346925012767,0.5026760045439005,-0.8181966538541019,-0.9924813597463071,0.19068314228206873,0.46064946008846164,-0.6456794789992273,0.4612119812518358,-0.6269230982288718,0.5124346106313169,-0.5762212858535349,-0.9977665585465729,-0.8777610752731562,-0.990571390837431,-0.9734191484749317,0.9771647821180522,0.8282001717016101,-0.83839346235618,-0.4709289474412799,0.12608733167871833,-0.7164620151743293,-0.1937184133566916,0.037715750746428967,-0.12616883171722293,0.6615942902863026,-0.5210764463990927,-0.015661810524761677,0.2185245668515563,0.2410347810946405,-0.6665031011216342,-0.8250663359649479,-0.14990380918607116,0.6290487204678357,-0.22773441765457392,-0.30274991877377033,-0.6970884795300663,0.5083750057965517,-0.6261116717942059,-0.44554624194279313,0.5584989106282592,0.9874866134487092,0.2093176692724228,0.6753267534077168,0.17832708917558193,0.8948187180794775,-0.029887617100030184,-0.945109264459461,0.6856896220706403,-0.5007207617163658,0.6989697958342731,-0.932984805200249,0.2786184260621667,-0.4546926785260439,-0.6090048258192837,0.3897760547697544,-0.7758266334421933,-0.10440744226798415,0.5536628547124565,-0.21971063036471605,-0.7578143710270524,-0.4081654604524374,-0.1353677990846336,0.8704270054586232,-0.14621997578069568,0.9153248015791178,0.45020086131989956,-0.5337578752078116,-0.5229837740771472,0.8970805238932371,0.3211256442591548,0.8512793146073818,0.3514906642958522,-0.40888656536117196,-0.30882287165150046,-0.7954168897122145,-0.7933878414332867,0.084223966114223,-0.6726005612872541,0.5318180518224835,0.8665780466981232,0.5724202059209347,0.9938587094657123,0.07998249540105462,0.46243247715756297,0.43830825854092836,0.3380875992588699,0.5198594136163592,-0.6869089799001813,0.38564730901271105,-0.6776647008955479,0.5748606864362955,0.44598147366195917,-0.5356249432079494,-0.5879764533601701,0.014787133783102036,0.08352068951353431,-0.2495013396255672,-0.8404003973118961,-0.996144172269851,-0.726752607151866,-0.19187760120257735,-0.7857755841687322,-0.33748972276225686,-0.9818358365446329,-0.22255189018324018,0.026030527893453836,0.5615052441135049,0.6691619753837585,-0.8967600557953119,-0.6845817780122161,-0.6130283446982503,-0.9898874550126493,-0.7877676705829799,-0.5477278092876077,-0.9202434411272407,0.15891911974176764,-0.29782832972705364,0.824169400613755,-0.6747395158745348,-0.46828882256522775,-0.9557010680437088,-0.36004412127658725,-0.12246121512725949,0.4197824774309993,-0.38621801184490323,0.08818835020065308,-0.44463386898860335,0.8480865159071982,-0.6261984603479505,-0.4576234729029238,0.6186396582052112,0.8302067993208766,0.6772099696099758,0.7668006289750338,-0.0035636965185403824,0.6518947007134557,-0.5261890166439116,0.496505041141063,-0.7777007408440113,-0.5787931005470455,0.48467046581208706,-0.030716128647327423,-0.10982888052240014,-0.0985072166658938,0.7689567701891065,0.04801885690540075,0.7269086306914687,0.07305359886959195,0.46830476773902774,-0.6730105192400515,0.22553148260340095,-0.2663399074226618,0.16818495094776154,-0.7764210551977158,-0.3380425749346614,-0.5422933013178408,-0.4989759777672589,-0.7171246558427811,-0.8947814614512026,0.7234425353817642,-0.5399476382881403,0.4162533963099122,0.23344173142686486,-0.2106095035560429,-0.8959955680184066,0.006620591040700674,-0.4450700911693275,0.05811792192980647,0.7436085706576705,-0.6694109081290662,-0.4255341039970517,-0.26094021275639534,-0.7585666971281171,0.9457405125722289,0.9119173558428884,-0.00832819752395153,0.09810982551425695,0.4195738350972533,-0.8708042302168906,-0.990439304150641,0.4142235587351024,-0.0354952123016119,0.5403895233757794,0.8822766183875501,0.5469148331321776,0.5033610025420785,-0.868751716800034,0.8797620180994272,-0.015673998277634382,0.7777234185487032,-0.5598710104823112,-0.9559137066826224,0.5016708876937628,0.07124494621530175,0.1115422765724361,0.47145967092365026,0.8691621567122638,0.8672553626820445,-0.37321881065145135,0.6978486967273057,-0.2982236701063812,-0.158130485098809,-0.9286243594251573,-0.317212316673249,0.06942549161612988,0.7093171626329422,0.41222701175138354,-0.1788581982254982,0.17449070373550057,0.9842643225565553,0.023978855926543474,0.2987472815439105,0.04638892877846956,0.834230880253017,0.8661174178123474,-0.8082632469013333,0.47451959224417806,-0.57003880944103,0.9866091893054545,0.44465475250035524,0.3465460715815425,0.5829121600836515,-0.414798513520509,-0.9968037395738065,-0.4823843431659043,-0.8815350397489965,0.4597966386936605,0.6357743456028402,0.22945435345172882,-0.15288279484957457,0.8130146344192326,-0.028816683683544397,0.836418638471514,0.8507952010259032,0.4567118319682777,-0.29226843593642116,-0.6930012311786413,0.15862136939540505,-0.15098660672083497,0.41440069070085883,0.25380188319832087,-0.3682869323529303,-0.04491619486361742,0.7096214583143592,0.614758905954659,-0.1810425529256463,0.8634234452620149,-0.77369549497962,-0.3074934189207852,0.3576395879499614,0.8299621278420091,-0.4898496069945395,0.2130047627724707,-0.3349516768939793,-0.23755558673292398,0.28435118729248643,0.7635061708278954,0.2394283628091216,-0.12284400826320052,-0.1368159418925643,0.8395021283067763,0.2976396633312106,0.4107448346912861,-0.9149503456428647,0.08977113710716367,0.5179925877600908,-0.10181152075529099,-0.14248851966112852,0.4362605456262827,0.00442090816795826,0.6907242354936898,-0.10018753958866,0.5171490269713104,-0.9068141877651215,-0.32382185431197286,0.8239185786806047,-0.7491938383318484,-0.01912219589576125,0.1202642684802413,0.7619591164402664,-0.11058779153972864,0.59212043043226,-0.3940368569456041,-0.6852966346777976,0.0947641571983695,0.774625152349472,-0.31582812312990427,-0.6008666320703924,-0.3462690645828843,0.5152573259547353,-0.7977349432185292,0.7178978994488716,-0.4351885854266584,-0.5547964256256819,-0.501129372511059,-0.10484730498865247,-0.6790305185131729,-0.00787769677117467,-0.8989220396615565,-0.6364029077813029,-0.6328204879537225,-0.4080094853416085,0.8667770074680448,0.6704852636903524,-0.17697557201609015,0.19127424200996757,0.6105154328979552,0.5255694752559066,0.1656594411469996,0.5988566558808088,0.6834297217428684,-0.6781339286826551,-0.6466720388270915,-0.34207686269655824,0.36448954697698355,0.7481825505383313,0.9705421477556229,-0.6067206505686045,0.568224111571908,0.3939122622832656,0.06913580419495702,-0.2081049680709839,-0.8513065441511571,0.554321011994034,-0.8849067082628608,0.901337216142565,-0.26769403694197536,-0.41073030047118664,-0.7403614306822419,0.465086686424911,-0.17137630004435778,-0.39188045635819435,0.025926691945642233,-0.001426024828106165,0.023768788669258356,-0.4746538824401796,-0.07407698594033718,0.575283280108124,0.8027696590870619,0.1298928689211607,0.7202233467251062,-0.16142977075651288,0.9968399815261364,-0.14159291284158826,0.8555409726686776,-0.4653063816949725,-0.341000416316092,0.08429563930258155,-0.07745955558493733,0.9752197549678385,0.5537438867613673,0.8748481846414506,0.5608671489171684,-0.4853444523178041,0.4281577575020492,0.6892909221351147,-0.049741006921976805,0.8483046283945441,-0.5954031501896679,0.8013044148683548,-0.24924311321228743,-0.1704363813623786,-0.6303606936708093,-0.07318846974521875,0.15908497013151646,-0.9328433298505843,-0.17194439517334104,-0.0280715087428689,0.5259774392470717,-0.27250373968854547,-0.4481182056479156,0.9670685641467571,0.2819397896528244,0.9346898756921291,-0.22113594971597195,-0.010606036055833101,0.9551906497217715,-0.3559412551112473,0.29696786357089877,-0.03799961833283305,-0.4564639488235116,0.2651749439537525,0.46885811584070325,-0.9804971357807517,-0.3517580325715244,0.7674116129055619,0.9850065065547824,-0.9736746554262936,0.7261765236034989,-0.6305562225170434,-0.6914251535199583,-0.4687120392918587,-0.6300962595269084,-0.6134987063705921,-0.03635515784844756,-0.033956287894397974,-0.664997675921768,-0.3921098276041448,0.5480380142107606,-0.17771451966837049,-0.8592254649847746,-0.664607138838619,0.44163580099120736,0.9380805641412735,-0.47082702023908496,0.10974969062954187,0.1112129376269877,0.6648563756607473,-0.3196690990589559,-0.29314521374180913,-0.24772156169638038,-0.355497685726732,0.4352168799377978,-0.3685800228267908,-0.3999239793047309,-0.544181423727423,0.21507934667170048,-0.591500436887145,-0.28121201414614916,0.5889717950485647,-0.43367548985406756,-0.15445915423333645,0.452467302326113,0.1359323188662529,0.625854819547385,0.5019722781144083,-0.8665720229037106,0.20737454807385802,-0.6376578067429364,-0.28078026371076703,-0.542549385689199,0.006276900880038738,-0.6879493803717196,-0.7684102514758706,0.1725637991912663,-0.9744699401780963,-0.3437100346200168,0.379913323558867,-0.4060582281090319,0.5905288411304355,0.6382846492342651,0.05003837589174509,-0.9769481541588902,-0.7818683255463839,-0.043349979910999537,0.6931620412506163,0.8199876435101032,0.770004611928016,0.637131582479924,-0.062004574574530125,0.02416699333116412,-0.7444930351339281,-0.5657199388369918,-0.7119272821582854,-0.6587198758497834,-0.03030762681737542,-0.9761011763475835,-0.08781837904825807,-0.3378527872264385,0.4299867316149175,-0.11490091867744923,-0.6104258494451642,0.9869694053195417,0.4890609891153872,-0.9366278299130499,0.27957844734191895,0.20181147893890738,-0.12210158770903945,0.25952848559245467,-0.14112095441669226,-0.5895859254524112,0.41943700704723597,-0.3102798410691321,0.7361099352128804,-0.11194848269224167,-0.33933217683807015,-0.6956876050680876,-0.7237689779140055,-0.7442783555015922,-0.09361150581389666,0.8983190706931055,0.47690242249518633,0.4007747177965939,-0.443844657856971,-0.8157343426719308,-0.36125611513853073,-0.15057815331965685,-0.800611846614629,0.4841635525226593,-0.7901321980170906,-0.9181827027350664,0.9572024918161333,-0.033580204006284475,0.4625789080746472,-0.7520681410096586,0.9134924313984811,-0.2441673306748271,-0.6506996126845479,-0.30954002495855093,0.3598215011879802,0.07935601798817515,-0.4514729413203895,0.9375913282856345,0.8062253524549305,0.04166638711467385,0.09710576198995113,-0.03075701743364334,-0.09158101305365562,0.9540169523097575,-0.33308727480471134,0.939615614246577,0.1880180137231946,0.9004640867933631,0.198814838193357,0.7510343608446419,0.6471095564775169,-0.5854191700927913,0.807819330599159,-0.09236867679283023,0.21641542203724384,-0.15045675309374928,0.655829441267997,-0.046077783685177565,0.32178974291309714,0.4861812060698867,-0.42328262561932206,-0.24669401673600078,0.2292993376031518,-0.39262998197227716,0.9525916706770658,0.38805016269907355,-0.7186640738509595,0.45201601507142186,-0.41654308792203665,-0.1537990579381585,-0.721361184027046,-0.8084771363064647,-0.8455323744565248,0.1743857404217124,0.06259769527241588,0.6187978717498481,0.6278063394129276,-0.8535591238178313,0.15712711494415998,0.8667090190574527,-0.061626564245671034,0.17897877283394337,-0.4970813733525574,-0.21315584098920226,-0.5116335041821003,0.14718943648040295,-0.41613078443333507,0.8661425267346203,-0.7220507902093232,-0.49486171919852495,0.35375550109893084,0.5998387839645147,-0.430446392390877,0.8921270431019366,-0.35856437403708696,-0.36671688966453075,0.06943048536777496,0.45699988305568695,-0.10498203616589308,0.2897595544345677,-0.6712464103475213,-0.48077494837343693,-0.47534277802333236,-0.6936804237775505,-0.9611464524641633,-0.6780082727782428,-0.2893831627443433,0.5724988258443773,-0.5827764766290784,-0.413250386249274,-0.5671141440980136,0.7981628705747426,0.34414946427568793,-0.9435021691024303,0.1068760952912271,-0.4087992371059954,0.016764381900429726,0.3991340189240873,-0.10081657068803906,0.4709386616013944,-0.6399455321952701,-0.9847834543325007,-0.3287282660603523,0.37151859421283007,0.3199262283742428,-0.8820727318525314,-0.0858407081104815,-0.2776640676893294,0.8203057264909148,-0.061155658680945635,0.4068825813010335,0.2615899653173983,-0.28475511632859707,0.7848320943303406,0.19554255716502666,-0.973644798155874,0.310201283544302,-0.7674161177128553,-0.8917599092237651,-0.2823835080489516,-0.5955887134186924,0.3509998442605138,0.3624185239896178,0.40913566714152694,0.9554523713886738,-0.7611537594348192,-0.7964457725174725,-0.638109162915498,-0.7352585108019412,0.4175669988617301,-0.41821329621598125,0.8302118233405054,0.3327584844082594,-0.0032041906379163265,0.2534589464776218,0.7338072177954018,0.2923787999898195,-0.3935437691397965,-0.296298093162477,0.32451528357341886,-0.3962276545353234,0.5865360614843667,0.7091617314144969,-0.5266308323480189,-0.8182661319151521,-0.03283523814752698,-0.5913441856391728,0.6236423617228866,0.47918645571917295,0.7852663118392229,-0.434847597964108,0.5746887871064246,-0.39969917526468635,-0.5558711481280625,0.8812571610324085,-0.38245914364233613,0.8406844181008637,-0.4331007092259824,0.8062358521856368,-0.5885737449862063,0.030248348135501146,0.3367971950210631,0.8368895617313683,0.48350083315744996,0.014641272369772196,-0.2134084408171475,0.24660268519073725,0.6284537333995104,0.575972072314471,-0.4974597333930433,0.6455895756371319,-0.2965625924989581,0.07689659111201763,-0.4562738030217588,0.2933022645302117,-0.953696371987462,0.8844069479964674,0.6128674731589854,0.43003767170011997,-0.5664205602370203,0.7823012918233871,-0.7244680295698345,-0.5003861114382744,0.26046984596177936,0.6988021875731647,0.18216082407161593,-0.285523587372154,0.0240342547185719,-0.6151864975690842,-0.4709510928951204,-0.05125445406883955,0.012274932581931353,0.48185725091025233,-0.2381097385659814,0.028961199801415205,0.8265210320241749,0.27540867682546377,0.9959166599437594,0.5899345208890736,-0.4429937042295933,0.4211257197894156,-0.9826679998077452,0.3537094979546964,-0.5861329790204763,-0.4099000012502074,0.31861843168735504,0.271922723390162,-0.31351725570857525,0.22956886561587453,-0.6327505423687398,0.28471846925094724,0.9119039066135883,0.8888462535105646,0.8235964928753674,-0.19830705923959613,0.0043273079209029675,0.1766392607241869,0.8751521445810795,-0.20103984605520964,-0.3798128613270819,0.3507663803175092,-0.62528211530298,-0.3164474149234593,-0.6690125204622746,-0.026655858382582664,-0.20220295852050185,-0.7504161125980318,0.566475628875196,0.23805816657841206,-0.8122274489142001,0.924825634341687,0.07633663015440106,0.48953556176275015,0.16908452613279223,-0.5323034627363086,-0.27564393589273095,-0.5960501534864306,-0.07350690336897969,0.32036892184987664,0.8325873692519963,0.25071286130696535,-0.7791239144280553,0.804226924199611,-0.6151545136235654,0.8234164901077747,0.15799685008823872,-0.6417244737967849,0.9794884361326694,0.4558635614812374,0.48811399890109897,0.6486991462297738,0.12741916067898273,-0.8813597518019378,-0.6587632526643574,0.6723555969074368,-0.8901751041412354,-0.8742375588044524,0.20073592895641923,0.9222295386716723,0.6546944184228778,0.7772454107180238,0.8928716597147286,-0.895497125107795,-0.8964856998063624,0.7695996616967022,-0.72321194736287,0.6743179238401353,0.23798444168642163,-0.6640688916668296,0.02324505615979433,0.15278425393626094,0.7668493515811861,-0.5689983116462827,0.5508898664265871,-0.7031860486604273,-0.4160886160098016,0.6503640585578978,0.9811989450827241,-0.1729322667233646,-0.07465657172724605,0.48537763953208923,-0.5605949126183987,-0.16080032335594296,-0.8720501335337758,-0.8967453148216009,0.9265341553837061,0.3117576972581446,-0.05858774157240987,-0.1428045928478241,0.9736250056885183,-0.1003191526979208,0.3608397548086941,-0.6403358592651784,0.9097380959428847,0.486841952893883,0.7135968767106533,-0.5429696603678167,0.1410894743166864,0.5471021863631904,-0.01610712381079793,0.4310065354220569,-0.3467181478627026,-0.8234672113321722,0.4681419339030981,0.11328316759318113,-0.1748127886094153,0.7692827465943992,0.49664910696446896,-0.11555122910067439,0.015654493123292923,-0.9815774895250797,0.9119580714032054,-0.3883853452280164,0.791559231467545,0.13273432292044163,-0.7469223565421999,-0.958069259300828,-0.5904356436803937,-0.16419487865641713,0.6619837498292327,-0.5692356070503592,-0.32433156156912446,-0.3442729529924691,-0.2011592728085816,0.33930455427616835,0.37081296322867274,-0.7297391379252076,-0.4156713751144707,-0.1629279018379748,0.8916482161730528,-0.586958784610033,-0.9121688357554376,-0.21724865166470408,0.7003217684105039,0.2527518980205059,-0.18789565842598677,-0.37551613291725516,-0.68344083474949,0.9708504877053201,0.7166757951490581,0.04880084190517664,0.5065783951431513,-0.4163574865087867,-0.850978116504848,-0.16324796015396714,0.7889966103248298,0.7626674463972449,0.5706025627441704,0.5631690807640553,0.9572972287423909,-0.5570424012839794,-0.6673434008844197,-0.10288161877542734,-0.7887842101044953,-0.14450379135087132,-0.4901761254295707,0.07972403150051832,-0.6684094271622598,0.7188936155289412,-0.8222380448132753,-0.43638648791238666,-0.008112304843962193,0.5418112380430102,0.9165260582230985,0.3536796271800995,-0.9241215675137937,0.5015531308017671,0.2634349702857435,-0.0798409110866487,0.3604346099309623,0.5175955123268068,-0.008218774572014809,-0.2550879609771073,0.9925418826751411,0.7883701147511601,-0.079897066578269,0.6752837672829628,-0.07936438312754035,-0.8343727765604854,0.8297211867757142,-0.23379844287410378,0.22488841833546758,-0.8947189766913652,0.7038708468899131,-0.7649573632515967,-0.3230550503358245,-0.27758222073316574,-0.022986245341598988,0.6803097659721971,-0.29127736017107964,-0.6129513196647167,-0.18294871225953102,-0.953163811005652,0.59745858842507,-0.3383383471518755,0.2477171109057963,-0.41360148461535573,0.2279698634520173,-0.8463882389478385,-0.01261034095659852,0.07606328930705786,0.7938800435513258,0.687951447442174,0.7604873399250209,-0.4730737768113613,-0.7828626786358654,-0.44656851096078753,-0.010498818475753069,0.35367591492831707,0.16468562884256244,0.9859338011592627,0.9400195088237524,0.2718625804409385,0.8550052619539201,0.7065483811311424,-0.8751118588261306,0.022269347216933966,0.9966614791192114,0.6254614824429154,-0.6001150691881776,0.8794767260551453,0.792233650572598,0.5345710162073374,0.9995103552937508,-0.6127735059708357,-0.14914533030241728,-0.6446345276199281,0.7186980876140296,-0.5524430237710476,0.7343923752196133,-0.5980653217993677,-0.4540650607086718,0.5237199035473168,0.7662186408415437,0.461257447488606,-0.1282877428457141,0.09889934258535504,0.5658958456479013,0.3949003769084811,-0.30905106384307146,-0.5855331453494728,0.8620150978676975,0.17874113796278834,-0.3474416481330991,-0.7152840816415846,-0.7687039254233241,-0.008585924748331308,0.8313064286485314,0.22808700101450086,-0.050461248494684696,-0.837814390193671,-0.2189550455659628,0.9559874483384192,0.8596264477819204,0.9742114483378828,0.6207940210588276,0.8625400611199439,-0.15420925104990602,-0.6280910563655198,-0.18487352784723043,-0.8981654727831483,-0.1611913526430726,0.5560136800631881,-0.7344294912181795,-0.3664108216762543,0.31308451062068343,-0.08391064126044512,-0.12630291003733873,-0.45290290703997016,-0.5669067543931305,-0.8651261976920068,0.2716347388923168,0.35393540328368545,0.920017700176686,0.782289294525981,0.2812768379226327,-0.8790485067293048,0.8409596774727106,0.3255675588734448,0.38211727933958173,0.4192333519458771,-0.8118168977089226,-0.15791772305965424,-0.8702090666629374,-0.948771093506366,-0.4669993780553341,0.7788188681006432,0.36136189522221684,0.949538319837302,-0.8593258280307055,0.5030841277912259,-0.08543615601956844,-0.9627320715226233,0.11837522918358445,-0.48656648211181164,0.4909059419296682,-0.7478528907522559,-0.18818425526842475,-0.24769335240125656,0.8807408632710576,-0.8837406001985073,0.9544113604351878,0.4880242175422609,-0.1581380646675825,0.3075750949792564,0.4685328509658575,-0.29532473534345627,0.1610199762508273,0.6656550918705761,-0.016723331529647112,0.16982240928336978,-0.3639258546754718,-0.2202115566469729,0.20460650557652116,0.2975343633443117,0.7171719688922167,-0.2841432550922036,0.5842546322382987,-0.966705413069576,0.13053151359781623,-0.32240186305716634,-0.19180295523256063,0.7190821622498333,0.6561205429024994,0.14558175019919872,-0.3885694551281631,-0.7511188145726919,0.3766441708430648,0.9669788358733058,0.4994917376898229,-0.16961289010941982,0.5384244914166629,-0.3305965890176594,-0.8265378680080175,0.8278880342841148,0.5249717994593084,0.5497428365051746,0.7373836110346019,0.8838606011122465,0.20948417531326413,0.341067002620548,0.46856594225391746,-0.6093147271312773,0.16704049101099372,-0.030542210210114717,0.7919488227926195,-0.965841319411993,0.8139927261509001,-0.7380656995810568,0.17825102526694536,0.054920637514442205,0.6433723345398903,-0.996003788895905,0.16661228891462088,-0.5253406190313399,0.21485232282429934,0.512304428499192,0.3120491052977741,0.5130363693460822,-0.37067705299705267,-0.8135400670580566,0.5597179583273828,-0.8175398777239025,-0.09179595671594143,0.5215445104986429,-0.18092406960204244,0.8757871775887907,0.23706743586808443,-0.3465084065683186,0.19853281322866678,-0.16906589921563864,0.8425407959148288,-0.06339921476319432,-0.40099833253771067,0.06217701826244593,-0.2499054609797895,-0.7801160598173738,-0.4483774877153337,-0.2733632856979966,0.4741891333833337,0.45357467886060476,-0.5191697934642434,0.757663197349757,0.3999069295823574,-0.5975077445618808,-0.5775297805666924,0.2618326642550528,-0.6248882818035781,0.32488414365798235,0.44364521326497197,-0.331224353518337,-0.9448493937961757,-0.9780795839615166,-0.10408082278445363,0.1707632658071816,-0.19350882060825825,-0.4069090145640075,-0.6698721079155803,0.3961220718920231,-0.781718272715807,-0.6764675755985081,0.7096017114818096,-0.6755707678385079,0.7741652396507561,0.10118209198117256,-0.009108519647270441,-0.11443101335316896,-0.450578176882118,0.16853115241974592,-0.6800144026055932,0.7622010819613934,-0.7696149172261357,0.19428293872624636,-0.7990856850519776,-0.4648623946122825,0.13088299380615354,0.5407428415492177,0.45367109682410955,0.42956725414842367,-0.7673940416425467,0.772902449592948,-0.3776481398381293,0.40760608296841383,-0.2658662754110992,0.7404311755672097,0.4019369762390852,-0.9098250665701926,0.7218936220742762,0.37754285568371415,0.6797164245508611,0.6155464900657535,-0.24849693151190877,0.7960610277950764,0.7636563018895686,0.8477208968251944,-0.7027513850480318,-0.2910472908988595,-0.2646304424852133,0.6083862008526921,0.953871791716665,-0.08884807536378503,-0.6898345914669335,-0.4763009324669838,-0.5410132757388055,-0.5993327642790973,-0.9348935908637941,0.07476314809173346,0.8527533551678061,0.6865311469882727,0.11691993707790971,-0.6399168279021978,-0.6796998702920973,0.04023379599675536,0.8545497036539018,0.6760754454880953,-0.28371257055550814,-0.5760554829612374,-0.44561479333788157,0.47390740970149636,-0.44588274229317904,-0.5097932270728052,0.21164194867014885,-0.967668829485774,0.6796423397026956,0.39192977314814925,0.977283475920558,0.566538873128593,0.9805374029092491,0.6461417498067021,-0.5217629699036479,0.1724266167730093,0.32065254962071776,0.6324824350886047,-0.18351142248138785,0.25932590244337916,-0.3908031862229109,0.6195942512713373,-0.4183768364600837,-0.6098754415288568,0.7671571653336287,0.6716645960696042,0.9828164433129132,-0.06050605420023203,0.47572535183280706,0.16442502196878195,-0.3081361115910113,-0.7485239459201694,0.419633362442255,-0.2334121805615723,0.8977583614178002,0.0018250257708132267,-0.7900809058919549,-0.972545939963311,-0.8512383531779051,0.856827131472528,0.036847074050456285,0.3865267946384847,0.6370063032954931,0.6043414855375886,0.03813068009912968,-0.44216242572292686,0.5211929813958704,-0.29196068877354264,-0.5315743777900934,0.021649126894772053,-0.9060597359202802,-0.8858615220524371,-0.40725842909887433,0.11753832316026092,-0.3738154391758144,-0.2819271255284548,-0.7517081541009247,-0.017454749904572964,0.6136020487174392,0.26797758508473635,0.616989572532475,-0.6544683119282126,0.0818981365300715,-0.05182394804432988,-0.17219021636992693,0.8705433779396117,-0.5507838018238544,-0.48875343427062035,-0.7886084546335042,-0.37081366078928113,0.5429208786226809,0.6340361214242876,0.9869771338999271,-0.7563339271582663,-0.2831487809307873,0.5154354586265981,-0.18544842395931482,0.5492196758277714,-0.6554307476617396,0.2502832096070051,-0.08625082392245531,-0.42466032644733787,0.16390031296759844,-0.06490499200299382,0.48793327901512384,0.3822140768170357,-0.6492913793772459,0.1632155985571444,-0.35675967624410987,-0.7536771041341126,0.6433112570084631,-0.6682766433805227,-0.35298045771196485,-0.1983961397781968,-0.9835722772404552,0.4492759187705815,0.6285689356736839,0.5812294618226588,0.31534069450572133,0.841736891772598,0.9956556963734329,-0.273425969760865,-0.4861721987836063,0.481802134308964,-0.35282233310863376,0.8329785298556089,0.3194147660396993,-0.9660524385981262,-0.5067237378098071,0.5880592269822955,-0.6581391207873821,-0.37985327234491706,0.2269660676829517,0.12309489538893104,-0.21684348490089178,-0.528518058359623,-0.5728477714583278,-0.4346900577656925,0.5786084751598537,-0.026103415992110968,0.46575805405154824,0.7380083967000246,0.5402527879923582,0.8276680074632168,0.9512133318930864,0.8136806776747108,0.6260129325091839,-0.8807363333180547,0.39260628540068865,0.8903022604063153,-0.12162213819101453,0.6130402921698987,-0.2826646938920021,-0.15924505377188325,0.9950041999109089,-0.005468695890158415,-0.08990939892828465,-0.9571991567499936,0.0022139353677630424,0.5684781917370856,0.5459398133680224,0.231787474360317,0.902977756690234,-0.055283264722675085,0.5055362121202052,0.6807983135804534,0.5740549275651574,0.30444383108988404,0.7232948755845428,0.14915385516360402,-0.14448341634124517,-0.5532511174678802,-0.1747624627314508,-0.2611077995970845,-0.40233604377135634,0.39581020548939705,0.14103581011295319,0.00986894778907299,-0.5525070312432945,0.2688857661560178,-0.601001609582454,-0.6474531088024378,-0.41000263951718807,0.7794843032024801,-0.31497427402064204,0.5265696807764471,-0.3546338905580342,0.8467746148817241,0.37963742343708873,0.6635581851005554,0.30903439829126,0.7953229937702417,-0.3814455349929631,-0.2722860467620194,-0.04148916667327285,-0.2800708129070699,-0.16813979344442487,-0.039878308307379484,0.481753324624151,0.7356413267552853,-0.34404761949554086,-0.8867994155734777,-0.06376040866598487,0.6767191691324115,0.7171312854625285,-0.27868795674294233,0.9593945243395865,0.4450509329326451,-0.38342180475592613,-0.1341800349764526,-0.6489091641269624,0.0946914809755981,0.12516606878489256,0.3164815795607865,0.8244267706759274,0.7515448667109013,-0.9876560843549669,0.1449748445302248,0.6007061470299959,0.8701842608861625,0.3200716567225754,-0.15653748204931617,-0.5025667413137853,-0.8822082770057023,0.31731666438281536,0.2766286628320813,0.9122346937656403,0.06868405919522047,-0.49813533993437886,-0.7082058554515243,0.10386680951341987,0.15716069424524903,-0.15990071976557374,0.4169094110839069,-0.40995995746925473,0.9104283726774156,0.1230479241348803,0.5855015008710325,-0.9237681687809527,-0.6127857412211597,-0.7343599176965654,-0.7478887909092009,-0.9808865147642791,-0.9317817562259734,0.9388382728211582,0.8531975471414626,0.6181648527272046,-0.720860764849931,0.6524582905694842,-0.8530233101919293,-0.013402478769421577,0.4147276822477579,-0.19016176648437977,-0.32397470343858004,0.17256001895293593,0.39083140389993787,0.9173060921020806,-0.080057417973876,0.8263977076858282,0.07434231974184513,-0.14794198982417583,-0.20677368296310306,-0.9436511634849012,-0.6047553652897477,-0.40882118698209524,-0.25371528696268797,-0.880383656360209,-0.5435581901110709,-0.8208636119961739,0.19848235277459025,-0.1392779820598662,0.5256693507544696,-0.530834901612252,0.4743325663730502,0.5749427885748446,0.7035229718312621,-0.4842675058171153,0.9617384499870241,-0.09935379214584827,0.34433254366740584,-0.488623573910445,-0.37905780505388975,0.47120086243376136,-0.8410677458159626,0.1253892406821251,-0.7718740659765899,0.3423486687242985,0.40378565806895494,-0.9412673409096897,0.7234178842045367,-0.27690540067851543,-0.2096089692786336,-0.6432232744991779,0.33237389801070094,-0.4403606140986085,-0.6632709447294474,-0.585738162510097,-0.5234048855490983,0.636124022770673,-0.780869715847075,0.4484955999068916,-0.1733964686281979,-0.7754854140803218,0.6629852927289903,-0.7957962676882744,-0.7118944493122399,-0.8045789133757353,0.2195695568807423,0.36495801247656345,-0.9566770051606,0.5047108908183873,0.18222789652645588,0.7429134165868163,0.07527880510315299,-0.6678860425017774,-0.38290945580229163,0.05040173977613449,0.7141171996481717,0.0391410905867815,-0.3839304153807461,0.8866240247152746,0.5516255586408079,0.08656623074784875,-0.21685808058828115,-0.3088099337182939,0.7775212386623025,-0.00984309334307909,0.441377951297909,-0.08745447685942054,-0.20102967461571097,0.6011119284667075,-0.5619793902151287,0.9505380908958614,0.9971215398982167,0.0008217347785830498,0.9994825734756887,-0.895908934995532,-0.8121872707270086,-0.992167241871357,-0.4390493193641305,-0.9005661299452186,0.8804410961456597,-0.6871904078871012,0.9555705296806991,-0.2152444114908576,-0.5102795213460922,0.38331682374700904,-0.047239636071026325,0.32813692232593894,-0.3815120281651616,0.43487899424508214,0.7221221271902323,-0.032260613050311804,0.47919887164607644,-0.28153912583366036,-0.27590986667200923,-0.9530148482881486,0.3794846087694168,0.9772427356801927,0.615733855869621,-0.9227709933184087,-0.41278314031660557,0.17990651819854975,0.5213198573328555,0.9689104240387678,0.7764887013472617,0.050341709051281214,-0.5225241403095424,0.6049091923050582,0.6333187292329967,-0.6310479678213596,0.7032128111459315,0.9007891356013715,-0.9700939212925732,0.8190929633565247,0.7229331638664007,-0.5851990734227002,-0.30858421279117465,-0.42059575533494353,-0.987901525106281,-0.7869067653082311,-0.09102127747610211,0.9991387538611889,-0.32408970408141613,-0.9809773336164653,0.4129783883690834,-0.6899681491777301,0.3194234021939337,-0.865872451569885,-0.843932646792382,-0.1368283024057746,-0.8240936314687133,-0.5271170847117901,-0.3724941308610141,-0.6326906946487725,-0.27579103829339147,0.7200947739183903,0.3750590835697949,0.8828569296747446,0.31189495837315917,0.36217193119227886,-0.2815920524299145,0.23110955068841577,0.5175488218665123,0.9050379637628794,-0.847227219492197,-0.6095369211398065,0.04767717095091939,0.3463675584644079,-0.5912064043805003,-0.6776114995591342,-0.8609372740611434,0.29013677686452866,-0.7992169409990311,-0.13550287019461393,-0.12125379918143153,-0.6694958256557584,0.03322416730225086,-0.41444091591984034,-0.749195562209934,0.45613333210349083,-0.7409484069794416,0.5757218766957521,0.5824269438162446,-0.5595237817615271,0.14361351169645786,0.03525650966912508,-0.28371520759537816,-0.9039756488054991,0.5417234925553203,-0.30337071511894464,0.5334197180345654,-0.5598547495901585,0.6713144923560321,-0.7480354686267674,-0.6257321783341467,0.3427221071906388,0.2688013040460646,0.6650746543891728,-0.9572406271472573,-0.4021965619176626,-0.2762597040273249,-0.9893800988793373,0.6085875993594527,-0.051346428226679564,0.49018342047929764,-0.6261727367527783,-0.031399170868098736,0.9158891811966896,-0.7049181428737938,-0.9500261340290308,0.7523320382460952,0.8228327399119735,-0.7810236411169171,-0.36014025658369064,0.8956752852536738,-0.7098394422791898,-0.7892870316281915,-0.2526350445114076,0.320795014500618,-0.2644858886487782,-0.39053836930543184,-0.41224654810503125,0.698305522557348,-0.1832539113238454,-0.9347628373652697,0.7609842554666102,-0.8300138786435127,0.9647557879798114,-0.08282962068915367,-0.9593057208694518,0.28991465689614415,0.03640190977603197,0.3952021445147693,0.7931652069091797,-0.7481483444571495,-0.46915573067963123,0.6745457672514021,-0.9683499569073319,-0.6062147063203156,-0.23799577029421926,0.28854881040751934,0.9681163327768445,-0.9461741726845503,0.1391295026987791,0.6074251644313335,0.11446313979104161,-0.5592962154187262,-0.25056121591478586,-0.7885510986670852,0.9151007938198745,0.1509640789590776,-0.08219904964789748,0.9888166296295822,0.6528864549472928,-0.5497071202844381,0.2958946833387017,-0.7646174100227654,0.41857559885829687,-0.19640449015423656,0.20361179346218705,0.9059024499729276,0.6423030314035714,0.7835204168222845,-0.34507310204207897,-0.15615349682047963,0.6682221405208111,-0.9271945543587208,-0.9120201384648681,-0.578844272531569,-0.4411393105983734,-0.9649909613654017,0.7568965489044785,-0.0521092563867569,0.23262131679803133,0.9188352758064866,-0.9914048835635185,-0.5073444470763206,-0.8187884851358831,-0.3429246945306659,-0.3819340537302196,0.07105683162808418,-0.8621466313488781,-0.5761752659454942,0.27337819524109364,-0.7181672658771276,-0.6578449569642544,-0.5009562526829541,-0.4488866585306823,-0.8161397450603545,0.7003383771516383,0.0026625501923263073,-0.5257171676494181,0.7656569993123412,0.8053361373022199,-0.27607510751113296,-0.7763375621289015,-0.11452221916988492,0.4510136591270566,-0.8082835548557341,0.47084359358996153,-0.36200171196833253,0.2507894719019532,0.8905328456312418,-0.12708454811945558,0.5622752602212131,0.5847356952726841,-0.34291569516062737,-0.15434310212731361,0.8206999525427818,-0.6398392729461193,-0.4650292177684605,0.10649942886084318,0.027059999760240316,-0.9789530262351036,-0.3638174906373024,-0.9590287059545517,0.19034274201840162,0.9997466648928821,0.5999084999784827,-0.5444614542648196,-0.8990540886297822,0.8293522349558771,-0.8918179799802601,-0.7131498055532575,0.4376808274537325,-0.7191754393279552,-0.4937795144505799,0.12880040053278208,-0.1397192538715899,0.9443198344670236,0.10248989053070545,-0.5704043894074857,-0.71296964911744,0.016720843967050314,0.18775181053206325,-0.7886480269953609,-0.2934572878293693,0.9605457545258105,-0.02456535864621401,-0.099003950599581,0.05021830881014466,-0.21678230538964272,0.9872260363772511,-0.7684264779090881,-0.6531284307129681,0.5008652121759951,-0.49009883124381304,-0.3490370395593345,0.49866668321192265,-0.6268011229112744,0.8968426710925996,0.35757971461862326,0.630430611781776,-0.890350813511759,0.9734027697704732,0.9267222066409886,-0.3815018190070987,0.24524665949866176,0.4382556560449302,0.33067003451287746,-0.7148468098603189,0.6414183862507343,0.42602103762328625,0.7234979211352766,-0.3340047709643841,0.46982443472370505,0.7306069144979119,0.3867267118766904,0.2807633993215859,0.8427935093641281,0.9947592262178659,-0.2327237813733518,0.11857748497277498,-0.12130514159798622,0.8031376325525343,-0.5529671758413315,0.8078714972361922,0.7563736164011061,0.08160440996289253,0.11966001382097602,-0.07094050059095025,-0.7313232431188226,0.42345099337399006,-0.7102743145078421,0.26515728514641523,0.4982757829129696,-0.7240096717141569,-0.0661679613403976,-0.8625293369404972,-0.9492358448915184,0.1156856007874012,0.964066419750452,-0.5587053494527936,-0.8191975024528801,0.7762790531851351,0.0038266973569989204,0.07585585908964276,-0.8019701647572219,-0.1959806769154966,-0.030602377839386463,-0.23414597054943442,-0.12935665622353554,-0.34363360796123743,-0.6886014961637557,0.8905325117520988,-0.733333820477128,-0.9167908770032227,-0.4896801505237818,-0.957823219243437,-0.38579299580305815,-0.7693744394928217,0.7743903072550893,-0.6288979733362794,0.40760698495432734,-0.3303228705190122,-0.4573374013416469,0.4279912137426436,0.8753605312667787,-0.8884203690104187,-0.7602192009799182,0.2115107011049986,0.03285216586664319,0.5631533954292536,-0.23223754623904824,0.47096509858965874,0.5736192925833166,0.48438664758577943,0.8769455775618553,-0.3975862814113498,-0.08370707370340824,-0.8235753532499075,-0.7428746339865029,-0.2884477423503995,-0.3681200286373496,-0.5917130638845265,-0.7002907386049628,0.6480956287123263,-0.006425665691494942,0.6865352359600365,0.7416979637928307,0.8471432095393538,0.9273202866315842,-0.9194424222223461,0.011119570583105087,-0.5272244024090469,0.14775492157787085,-0.5441789743490517,0.3915653578005731,0.8048347216099501,-0.0244693448767066,0.9945617509074509,-0.8324283505789936,0.9459134214557707,0.6747123035602272,-0.14475508267059922,0.820353273767978,0.8881705203093588,0.9680056339129806,-0.8701362470164895,0.27437208499759436,0.09772789850831032,-0.47151541383937,-0.43962573260068893,-0.5990704949945211,-0.2819928810931742,0.6681571383960545,-0.9533143411390483,-0.07067373301833868,0.08342418959364295,-0.27406311221420765,-0.43462722608819604,0.8753233919851482,-0.07986347237601876,-0.9753461731597781,-0.25901194382458925,0.40697369584813714,0.5629012947902083,0.2008316577412188,0.9802067307755351,-0.5278314366005361,0.8009930644184351,0.7553355591371655,0.6835683733224869,-0.7992972959764302,0.8395949108526111,-0.7556209899485111,0.3484669467434287,0.004104274325072765,-0.7853875695727766,0.37638363242149353,0.5251951823011041,-0.6725606070831418,0.673556596506387,0.24787370301783085,0.9156736237928271,0.578779281117022,-0.6426424398086965,0.5528014046140015,0.8390197586268187,0.346648798789829,0.8412613086402416,0.8228130987845361,-0.5497255707159638,-0.5254821651615202,-0.3023922801949084,0.1831757901236415,-0.9341075248084962,0.9702032334171236,-0.4241397846490145,0.9674507277086377,0.653340179938823,0.8248428986407816,-0.9008659860119224,-0.05625863093882799,0.535896681714803,-0.25411051185801625,-0.10322959255427122,0.7785592782311141,-0.04337453981861472,0.6936621069908142,-0.7495508887805045,-0.02745798323303461,0.8828715919516981,0.33082909835502505,0.9443083754740655,-0.3446300132200122,-0.29966268315911293,-0.6052411287091672,0.6081755831837654,0.6600055214948952,-0.013513910584151745,0.008674281183630228,-0.700178328435868,-0.18374162260442972,0.9720978206023574,-0.16157685592770576,0.670917047187686,-0.4618052146397531,-0.4810995585285127,0.7175164693035185,0.9411205104552209,-0.6047929408960044,0.2823370420373976,-0.7399955550208688,-0.3991894074715674,-0.7346678921021521,0.6685741413384676,-0.8681685659103096,0.597183346748352,0.8068790999241173,0.9169630357064307,0.9146993793547153,0.18643530504778028,-0.40334193920716643,-0.12707761023193598,-0.2350621991790831,-0.40895669581368566,0.5840658317320049,-0.6590630752034485,-0.7103541432879865,-0.49355587735772133,0.7023513331077993,-0.30383893428370357,0.3234190517105162,-0.08335437811911106,-0.3859662925824523,0.2710459604859352,0.35442791786044836,-0.7779527860693634,0.7493039914406836,-0.15387959918007255,0.6669049090705812,0.8531402954831719,-0.7104690265841782,0.48975367844104767,0.08708771597594023,0.533503124024719,0.7913309284485877,-0.852221729233861,-0.13890611799433827,0.720171257853508,-0.02947499928995967,-0.46130187483504415,0.4649619134142995,0.15396074578166008,-0.22283952543511987,-0.3190278233960271,-0.5232866266742349,0.4601080762222409,-0.9116158951073885,-0.721496781334281,0.5409602751024067,-0.697733866982162,0.9230148708447814,-0.24265394173562527,0.8592645158059895,0.5800079819746315,0.9286682796664536,-0.0560284280218184,-0.8017041487619281,-0.30280760442838073,-0.5751709695905447,-0.2718457756564021,-0.5543083311058581,0.698859631549567,0.5643457425758243,0.38588351337239146,-0.5563046811148524,0.25296102091670036,0.09197827568277717,0.9571373267099261,-0.512794379144907,0.2273199688643217,-0.9333172501064837,0.6914213565178216,-0.5068668005988002,-0.5567791783250868,-0.9721054397523403,-0.22114634001627564,0.4941345164552331,-0.028265414759516716,-0.35644750157371163,0.13646827079355717,0.6827735439874232,0.17346470290794969,-0.5471128039062023,0.9306414513848722,0.8952546590007842,-0.3336490415968001,0.34127167612314224,0.8149581248871982,0.09610773017629981,-0.2741145668551326,-0.677401106338948,0.863725058734417,-0.5076199774630368,-0.6599972369149327,-0.3554165540263057,-0.5615400727838278,0.09146094834432006,0.6535579799674451,-0.26607422763481736,0.4618781888857484,-0.48428210197016597,0.3337868363596499,0.3404900161549449,0.138198453001678,-0.7672768030315638,0.30485807079821825,-0.9881808762438595,-0.5915925442241132,-0.051178238820284605,0.32917807903140783,0.5065785185433924,-0.011177953332662582,-0.6817826554179192,-0.1277772057801485,0.9902870915830135,0.4357403637841344,-0.14611641503870487,-0.9102617376483977,0.4892959427088499,-0.07391637051478028,-0.9186990768648684,0.2205474372021854,0.7280398993752897,0.7883364669978619,0.6977973002940416,-0.3293044972233474,0.10132719203829765,-0.0690759439021349,-0.15263032680377364,-0.6907636881805956,0.20443557621911168,-0.39706084644421935,-0.09162601921707392,-0.5953760049305856,0.11323873233050108,0.4634664934128523,-0.9415614288300276,-0.390784727409482,-0.05010984092950821,0.0787076037377119,-0.7991616223007441,0.5136943417601287,-0.3875823081471026,0.8867353573441505,0.6373999193310738,0.472168433945626,0.952327920589596,0.3226475496776402,-0.20244461065158248,0.5760119524784386,-0.37513347528874874,-0.5062382631003857,-0.8583974554203451,-0.6446746764704585,0.05991170322522521,-0.5224636634811759,0.7811879827640951,0.41249616350978613,0.31744045531377196,0.25779735669493675,0.6840050029568374,0.10290042357519269,-0.9396507916972041,-0.157346626278013,0.5590760796330869,0.48667191388085485,0.2896020640619099,-0.01977476989850402,0.9726141993887722,-0.41699542198330164,0.4815892120823264,-0.12269802344962955,0.5030720811337233,0.7079338505864143,0.8114099064841866,-0.6992716849781573,-0.31662063766270876,0.8244968843646348,0.030540187377482653,0.5413284869864583,-0.28777399053797126,0.3727552597410977,-0.8702581003308296,-0.4576354222372174,0.5889241751283407,0.9502046005800366,-0.33856902457773685,-0.0572420391254127,0.9627513643354177,-0.8281454714015126,-0.2684684079140425,0.38056861562654376,0.09071586839854717,0.05398033233359456,-0.023632060270756483,-0.7209008941426873,0.5180928288027644,0.5525474175810814,-0.38281977362930775,-0.6475416608154774,0.1639061439782381,-0.9291476481594145,-0.8190130447037518,0.7272986792959273,-0.5834759324789047,-0.49815752543509007,-0.37906575109809637,0.023090059403330088,-0.6771810408681631,0.07192714139819145,0.9562506484799087,0.45178607385605574,-0.6570976893417537,0.8991755740717053,-0.18289777729660273,-0.3940107151865959,-0.14025310100987554,0.3377607250586152,-0.17102960962802172,0.8939855201169848,-0.7315369108691812,-0.9253973895683885,0.16051065176725388,0.6476505361497402,-0.033541891258209944,-0.8265049695037305,0.006333588156849146,-0.7360071614384651,0.612400044221431,-0.8488549198955297,0.49044080544263124,0.8025023648515344,0.7577051175758243,0.0520641440525651,0.6747612557373941,0.2600872218608856,-0.22421494219452143,-0.7825176487676799,0.6710542836226523,-0.00610701460391283,-0.3619277821853757,0.18936154711991549,-0.015686857514083385,-0.9187832367606461,-0.6251732953824103,0.7329889549873769,-0.6733995191752911,0.5127285169437528,0.18815366830676794,0.06690465332940221,0.6020116247236729,0.027842802461236715,0.8702119188383222,0.8331385510973632,0.648625960573554,-0.9104537121020257,0.10689731454476714,0.6159560596570373,0.3757504094392061,0.5869476064108312,-0.18851410457864404,-0.8617669558152556,0.6782051916234195,-0.7307487442158163,-0.38957145623862743,-0.24219807889312506,-0.9728848780505359,-0.5732476115226746,-0.21144212502986193,-0.35172997741028666,-0.21352802542969584,-0.47823879355564713,-0.5065406649373472,-0.7784025459550321,0.9110561884008348,0.8067362033762038,0.5339345484972,0.9409759747795761,0.42922002961859107,0.1523987208493054,0.08768817409873009,-0.6636508372612298,0.04004685115069151,-0.2191479611210525,0.10790359741076827,0.7387335319072008,0.518006831407547,-0.7350281253457069,0.5880304025486112,0.053258879110217094,-0.3310805121436715,0.8914072732441127,-0.5541227203793824,-0.6034951782785356,-0.36672946624457836,-0.6674709813669324,0.9196554007939994,-0.21414780989289284,-0.19566389312967658,-0.24491215264424682,0.7813056646846235,-0.9707805798389018,-0.1250044321641326,0.9237938658334315,0.15769114717841148,0.9872623151168227,0.6062202476896346,-0.5978598059155047,0.7241765819489956,-0.13531078258529305,-0.11226410139352083,0.07424076739698648,-0.760413758456707,0.31955742835998535,0.7780989385209978,-0.48966172244399786,0.027509888168424368,-0.3374061556532979,0.9448775304481387,-0.028937150724232197,0.15555322309955955,-0.33798303455114365,0.4673326569609344,-0.6140809925273061,-0.4465598687529564,0.4692472484894097,-0.2829899457283318,-0.320601936429739,0.748531786724925,-0.07543423166498542,0.6221879129298031,-0.27300030225887895,0.7928910320624709,-0.675017274916172,-0.47549361689016223,-0.9789856020361185,0.03919842420145869,0.985086752101779,-0.6860672826878726,-0.10591648425906897,0.15869280323386192,0.6837959680706263,0.2635798226110637,0.06121818907558918,-0.8899005511775613,0.9030006839893758,-0.8840561592951417,-0.8227920937351882,0.2978155626915395,0.10178009560331702,0.541124323848635,0.8559740716591477,-0.462090942543,0.4306978201493621,0.3743783845566213,-0.527176367584616,-0.8162743127904832,0.35671720234677196,0.7538515198975801,0.5789377586916089,-0.9007483636960387,0.7946601384319365,-0.8168491045944393,-0.7645177873782814,0.20047309203073382,0.8489286550320685,0.5785263944417238,-0.3814884196035564,-0.7282221070490777,-0.03171674394980073,-0.07753080269321799,0.5741407368332148,0.8809861014597118,0.2140749515965581,0.779109108261764,-0.4312145416624844,0.560079772491008,0.0037444247864186764,-0.4818651773966849,-0.23942961124703288,-0.8391014626249671,-0.33652852894738317,-0.2517525302246213,0.9198912149295211,-0.4431519480422139,-0.7372185047715902,0.4821675890125334,-0.00754834059625864,0.8432995229959488,-0.08830295223742723,-0.1558792619034648,0.44829218462109566,-0.781107319984585,-0.013573930133134127,-0.8457661028951406,0.272382159717381,0.531387641094625,-0.8432507906109095,-0.7871045214124024,0.18990971194580197,-0.36399284517392516,0.7935801814310253,0.7738076085224748,0.4254531031474471,0.9039227496832609,0.6366983456537127,-0.13590326718986034,-0.6953339851461351,0.8865908100269735,-0.9104900108650327,-0.4881518604233861,-0.9131278358399868,0.25579387601464987,-0.14825062127783895,0.7610261775553226,-0.20121694542467594,-0.7903712051920593,0.2815120187588036,0.37228525755926967,0.5162528706714511,-0.20197720173746347,-0.08691368345171213,-0.5388169400393963,0.858056094031781,-0.3643983593210578,0.6564279282465577,0.7746432437561452,-0.31756113609299064,-0.3697000271640718,0.9934232155792415,0.6671869331039488,0.24589876225218177,-0.46948641166090965,0.9930403563193977,-0.8092234185896814,0.019170121289789677,-0.7861953140236437,-0.5684150410816073,-0.523631386924535,-0.19419878721237183,-0.1628519231453538,-0.8487460846081376,-0.7192289209924638,-0.8269483731128275,-0.11158789973706007,-0.7126087350770831,0.37040052469819784,0.20914921909570694,0.08904988132417202,-0.269525159150362,0.29107206547632813,0.9944400386884809,-0.3955704513937235,-0.11099871387705207,-0.024136297404766083,0.7677361881360412,-0.386281659360975,0.8719825907610357,-0.598209320101887,0.9993242411874235,-0.7790762246586382,0.3893548408523202,0.9148565134964883,0.00155979348346591,-0.4529766533523798,-0.8769514737650752,0.3434912343509495,0.21376805379986763,0.8563798191025853,0.5716776759363711,0.5533958496525884,-0.5727731185033917,0.9475995018146932,0.7491067023947835,0.5145126688294113,0.15696636028587818,0.9730925736948848,-0.31127294478937984,0.0021667839027941227,-0.05828538304194808,0.21233466267585754,-0.5135307307355106,-0.17557152779772878,0.10436642309650779,0.6008037636056542,0.6384889795444906,-0.2475434672087431,0.9059540731832385,0.6072083101607859,-0.14730465691536665,0.8577533666975796,-0.8799201273359358,0.14542865986004472,0.9397849170491099,0.24574118247255683,0.6538584218360484,0.3233048068359494,-0.1175428363494575,-0.7331184116192162,0.8788687763735652,0.5487349499017,-0.7643607049249113,-0.9237941615283489,-0.6911131571978331,0.5050225425511599,0.24978049425408244,-0.15524775721132755,0.10538580687716603,-0.7822657828219235,-0.369184285402298,0.44932569470256567,-0.1506056385114789,-0.06300217937678099,0.39495879877358675,0.014775345101952553,0.9529688032343984,0.5252984617836773,0.8875629887916148,0.5838740249164402,-0.663568614050746,-0.44461189303547144,-0.2542598652653396,-0.5220958390273154,0.18136815074831247,-0.3969633658416569,0.5716493423096836,0.6604068875312805,0.09017538232728839,0.18261253600940108,-0.7804202837869525,-0.6583454706706107,0.7147589679807425,-0.4367090235464275,-0.6762412888929248,0.6556982412002981,-0.38629884272813797,0.34157039830461144,0.694930633995682,0.8543943795375526,0.48614242440089583,0.8137205755338073,0.6910653854720294,-0.526938833296299,-0.9159679906442761,0.9506419324316084,0.6394632221199572,-0.8679183511994779,0.14593681041151285,-0.2880875635892153,-0.21649438282474875,0.39511218946427107,0.755119756795466,0.7350560021586716,0.13645799970254302,-0.1876051863655448,-0.8348849383182824,-0.47250183997675776,-0.027222133241593838,-0.3444854188710451,0.5107594104483724,0.10582469031214714,0.7239430453628302,0.023859163280576468,-0.9970075427554548,-0.533109774813056,0.16083751479163766,0.7522093248553574,0.29196903808042407,0.1679003187455237,-0.6832293467596173,0.16730445064604282,-0.41396015184000134,0.5389440623112023,0.2617202131077647,-0.5424698507413268,-0.46602051332592964,0.7317049643024802,-0.9833406442776322,-0.36052714847028255,0.011799442581832409,-0.21114389831200242,0.17458019964396954,0.555472201667726,0.24486425053328276,0.33019836619496346,0.4625384397804737,-0.7310765744186938,0.4375657713972032,0.3161864127032459,-0.666235285345465,0.8975959247909486,0.8768595061264932,0.5668808007612824,-0.042381396517157555,0.7690888270735741,-0.6310259401798248,0.04811557475477457,0.8278579544275999,0.20375837897881866,0.7731114765629172,0.4477454009465873,0.8873935653828084,0.11717317020520568,-0.47979070246219635,-0.2702776938676834,-0.6943989736028016,-0.016997026279568672,0.654278825968504,0.6518532950431108,0.19118317542597651,-0.5681966743431985,0.8886160710826516,0.033892818726599216,-0.9299536165781319,0.168268708512187,0.7223029034212232,0.1470606061629951,-0.8673945860937238,-0.48411095002666116,0.44159794645383954,0.7167697795666754,0.34581109741702676,0.42822294123470783,-0.2958712768740952,-0.5784984026104212,0.5623826319351792,-0.6398232094943523,-0.6833866592496634,-0.3933087093755603,0.6001940555870533,0.9893215443007648,0.07984847016632557,0.625353760086,-0.7172895157709718,-0.6948728547431529,-0.6739673372358084,-0.07311973161995411,-0.7937062056735158,0.922339292243123,-0.7264375570230186,0.4341178289614618,-0.3486946038901806,0.5711481617763638,0.7449005148373544,-0.2684790384955704,-0.34107745718210936,-0.1412171279080212,-0.7324234321713448,0.7200166471302509,-0.34601441118866205,0.9897073870524764,-0.6876798244193196,0.357474067248404,0.838545591570437,0.7143556899391115,-0.004749270621687174,-0.18604622455313802,-0.6672112280502915,0.6000695703551173,0.0871638641692698,0.9109505256637931,0.8656445262022316,-0.15109827648848295,-0.5205755233764648,-0.4455213830806315,0.579444071277976,-0.7758547216653824,-0.02285746391862631,0.47487985948100686,0.253470198251307,-0.22466128272935748,-0.08704619621858001,-0.39046352403238416,-0.29358663223683834,0.753484352491796,-0.8511788472533226,0.6013202769681811,0.20521300937980413,0.9636987918056548,-0.48226443165913224,0.7636833894066513,0.007651123218238354,0.10723954299464822,0.9275118024088442,-0.24950832221657038,-0.1958110169507563,0.9043862870894372,-0.8443902460858226,-0.0022556534968316555,0.9678189922124147,-0.7296306523494422,-0.7409261027351022,-0.8194449623115361,-0.7727541141211987,-0.26624053344130516,0.022655123844742775,-0.22367062652483582,-0.2212280659005046,-0.20522101502865553,0.48031075671315193,-0.6438864120282233,-0.3180843647569418,-0.1724674655124545,0.13887750636786222,-0.9986235196702182,0.7176734041422606,-0.5881681316532195,-0.9038638453930616,0.8956544795073569,-0.709002073854208,0.12946254666894674,0.892997769638896,0.5699364710599184,0.10092451330274343,0.87209766311571,-0.10836939793080091,0.10225995443761349,0.6432803818024695,0.7751299380324781,-0.5676975343376398,0.5327863022685051,0.32934185210615396,-0.30309922993183136,0.6563305109739304,-0.9019178324379027,-0.938593627884984,0.9465082436800003,-0.9016164499334991,-0.4444141029380262,-0.6455988357774913,0.019583506509661674,-0.3385867797769606,-0.1851296154782176,-0.3556067021563649,0.6768135600723326,0.6028649937361479,-0.14128671120852232,-0.02457321947440505,-0.8886385364457965,-0.9488366977311671,-0.5656398916617036,0.44841233221814036,0.0917417285963893,0.631024653557688,-0.5357147618196905,-0.6613867194391787,0.4126465171575546,-0.14267009124159813,0.5438395170494914,0.5824871519580483,-0.8949885182082653,0.7560526598244905,-0.3935613511130214,0.6661342727020383,0.07274434575811028,-0.6021672594361007,0.9663742398843169,0.6181876193732023,-0.8405412249267101,0.6593113746494055,-0.7866664654575288,-0.8372628060169518,0.3576324814930558,-0.21938239829614758,-0.8510455237701535,0.5887210727669299,-0.5953055135905743,0.7055702563375235,0.5560926594771445,-0.33954833121970296,0.8421210958622396,-0.9878015541471541,-0.7959187757223845,0.30331896757707,0.41211019130423665,0.025001459755003452,0.8889742298051715,0.0842689829878509,-0.6454230565577745,-0.7132097529247403,-0.39302417216822505,-0.03169210674241185,0.7155998991802335,0.7540556495077908,0.047508946154266596,0.40170607483014464,0.3942596148699522,0.18381509045138955,0.732924422249198,0.49695363733917475,0.2655098978430033,-0.9072350808419287,-0.2917355392128229,-0.8811393422074616,0.6187731535173953,0.19162917602807283,-0.2939592688344419,0.11550753377377987,-0.23407387686893344,0.26961286924779415,-0.5196832767687738,0.17338109901174903,0.9293288276530802,0.35361393308267,-0.27156583685427904,-0.748620752710849,0.581573664676398,-0.08600315963849425,-0.5541797918267548,-0.5925549897365272,0.26718662679195404,-0.9179076869040728,-0.5630140625871718,0.34090419625863433,-0.8864043969660997,0.15651692496612668,0.36557641392573714,-0.5010823369957507,-0.41852764831855893,0.7035911632701755,-0.5652658711187541,-0.9625394772738218,0.8222622592002153,0.7313784039579332,0.0815946557559073,0.24319358728826046,0.5526888859458268,-0.5909862695261836,0.2022088970988989,-0.9816437577828765,0.057965206913650036,0.39120457228273153,0.2510320171713829,0.05940265068784356,0.3731921329163015,-0.05696706473827362,-0.7989302994683385,0.5311230621300638,0.091889429371804,-0.6286543761380017,-0.5179959465749562,-0.98881870880723,-0.8266582535579801,-0.8651837427169085,-0.021709070075303316,0.866347442381084,0.7166181127540767,-0.06450616475194693,-0.1004645642824471,-0.837921854108572,-0.7006606943905354,0.5361770866438746,-0.3519260548055172,-0.8054813328199089,-0.06949829868972301,0.22938620625063777,-0.9900192860513926,0.7153221345506608,-0.08541872445493937,0.32238649437204003,-0.9807053906843066,0.0012315264903008938,-0.6659436067566276,0.27332652639597654,0.7382076443172991,-0.8558923806995153,0.9589989525265992,0.2878506928682327,-0.18820674484595656,-0.041101713199168444,-0.3689352385699749,0.16224037250503898,0.7846346730366349,-0.5020614829845726,0.2956667975522578,0.18945549195632339,0.6522903880104423,-0.8866495680995286,0.44878365052863955,0.007885465864092112,-0.39544658875092864,-0.6022663726471364,0.8137815399095416,-0.3329817201010883,0.20626256708055735,0.7895710985176265,0.8661129730753601,-0.4352519386447966,-0.08014032104983926,0.6968317860737443,0.023734500166028738,-0.40686966618523,0.9459558231756091,-0.13219393184408545,-0.6581017468124628,-0.22099434724077582,-0.16149574145674706,-0.6256815721280873,0.058175873942673206,0.04129168251529336,-0.44712771009653807,0.7985788802616298,-0.6202301746234298,0.07703916588798165,0.6752334171906114,-0.14151320327073336,-0.7433259631507099,-0.9830179866403341,-0.7050206051208079,0.1234410610049963,-0.28643724462017417,0.578606110997498,0.30484755663201213,0.23298092698678374,0.5298186703585088,-0.7982016042806208,0.9473683997057378,-0.560986849013716,-0.37356251245364547,0.5047131404280663,0.7536009876057506,0.22876067692413926,-0.7542144483886659,0.7052120477892458,-0.41614810889586806,0.5719643835909665,-0.9227243936620653,-0.41015807492658496,0.4915285650640726,0.09541427856311202,0.4548221337608993,-0.08780587185174227,0.9740086426027119,-0.9217755170539021,-0.11228582262992859,-0.3240066422149539,-0.4300492159090936,0.8726612948812544,-0.988094627391547,-0.5460732071660459,0.22936814231798053,0.8326569274067879,-0.2907366957515478,0.02709674695506692,-0.48379252571612597,-0.001348305493593216,-0.06774910213425756,-0.615754057187587,-0.7288729399442673,0.6024001790210605,-0.8887460236437619,-0.6196273420937359,-0.9545697583816946,-0.26606027549132705,0.992963511031121,-0.05652693519368768,-0.6663736482150853,0.6827034465968609,0.8158450149931014,0.5757313421927392,-0.7597993048839271,-0.00824417918920517,0.2319908207282424,-0.2743747388012707,-0.9105022037401795,0.27714554220438004,0.7780849779956043,-0.42703636921942234,0.9364290456287563,0.9197895065881312,-0.5341715691611171,-0.18616964993998408,-0.6803290452808142,0.9976817909628153,-0.8336538425646722,-0.5084923785179853,0.5599679951556027,-0.7812412050552666,-0.48697553342208266,0.5853518540970981,-0.8355423444882035,0.6386523554101586,-0.5077642276883125,-0.2500056428834796,2.691522240638733e-07,-0.6170183247886598,0.7380288518033922,0.1769851567223668,0.45528402645140886,0.236213858705014,0.803339053876698,-0.34671240858733654,0.7882599802687764,0.5339812096208334,0.21330447541549802,0.3953767488710582,0.025318745989352465,-0.22165948757901788,0.8685616818256676,0.4839284992776811,0.22458901861682534,-0.2764363228343427,-0.32785988692194223,-0.9448825963772833,0.9398999554105103,-0.3953031450510025,-0.4518759516067803,-0.2884437800385058,0.3629781696945429,0.8159442255273461,0.6034735240973532,-0.190848293248564,-0.06446620495989919,-0.27020443230867386,-0.3262712103314698,0.7942360159941018,0.1986071732826531,-0.7627658625133336,0.7947327853180468,-0.46774783777073026,-0.19436704507097602,0.8645699033513665,-0.16578251402825117,-0.9714284017682076,0.2234484013170004,0.3587939222343266,-0.4913157527334988,0.2651754361577332,0.9592374013736844,-0.039244699757546186,-0.013990627601742744,-0.21310842037200928,0.8645465378649533,0.9403078020550311,0.20245378091931343,-0.2717006369493902,0.9463782347738743,0.6979198744520545,-0.4195072781294584,0.6327473134733737,0.5667569627985358,0.5330245732329786,0.5982469888404012,0.3959072330035269,-0.6097460770979524,0.43663720414042473,0.12845917465165257,-0.5288524515926838,0.03199004754424095,0.46882665948942304,-0.37146815471351147,0.1968035171739757,0.09587651258334517,-0.49125982355326414,0.48415400460362434,0.9740167972631752,0.9788807877339423,-0.5784071222878993,0.6352877048775554,0.5317638255655766,-0.3554188418202102,-0.7005069027654827,0.33547879848629236,-0.5982300490140915,0.2563199517317116,0.7781540383584797,0.5930944425053895,0.9989358107559383,0.12652242556214333,-0.07058268180117011,0.6557822208851576,0.18193504866212606,0.9979498884640634,0.7552290321327746,-0.38638829067349434,0.2572816517204046,-0.9723542369902134,-0.5864708567969501,-0.9624033193103969,0.75439877435565,-0.4586539100855589,-0.6868844022974372,0.3632667949423194,0.9146274304948747,-0.1286930376663804,0.3578770332969725,0.511584309861064,0.27615166548639536,0.1586893117055297,-0.8383244145661592,-0.6525924187153578,0.9470023764297366,0.39768787985667586,-0.9144472880288959,-0.45161496941000223,-0.07186669763177633,-0.7808976187370718,-0.08331166906282306,0.4824248906224966,-0.46326069347560406,-0.3163833860307932,0.021694940980523825,-0.595104640815407,0.0705228690057993,0.33133920608088374,0.6735153808258474,0.7135601192712784,-0.24212234234437346,0.27944947592914104,-0.0141586409881711,0.04472748516127467,0.2511797705665231,-0.9747583689168096,0.2871901700273156,0.2553505031391978,0.7071548430249095,0.6569746029563248,0.8065855815075338,-0.008218744769692421,0.42197091365233064,-0.9072630782611668,0.8852293477393687,-0.3785022674128413,0.8357306127436459,-0.7959651751443744,-0.9281678954139352,0.25535300141200423,0.0011217608116567135,-0.267466080840677,-0.20889309886842966,-0.13810718711465597,-0.8393855667673051,0.6177836181595922,0.43086403980851173,-0.893064915202558,-0.8277239296585321,0.514976333361119,0.07473327359184623,0.047451453283429146,-0.810341018717736,0.2764571690931916,0.37550870096310973,-0.5739695355296135,0.637595062609762,0.10602726507931948,0.5059211263433099,0.14752758666872978,0.6485462924465537,0.7183832563459873,0.04263054905459285,0.7008157735690475,-0.49395945854485035,-0.6003645304590464,0.18180315289646387,0.3107800679281354,-0.8854154315777123,-0.2953988485969603,-0.40767806116491556,-0.8349028960801661,-0.14567903708666563,0.500401349272579,-0.8892493597231805,-0.906081872060895,-0.4779399670660496,0.2505388227291405,0.3357579563744366,0.2178442096337676,-0.00035832496359944344,-0.2638697256334126,-0.9702475038357079,0.7178066596388817,0.8102461593225598,0.8030536998994648,0.7896954389289021,0.2681197561323643,0.06928798789158463,0.7015185793861747,-0.7552537573501468,0.463645585346967,-0.6439463379792869,-0.9089047815650702,-0.16219474049285054,0.6624542786739767,0.7868991889990866,0.12423625960946083,0.41844334406778216,0.43196406308561563,0.8702847785316408,-0.6566227846778929,0.41729689482599497,0.44300079671666026,-0.8560821772553027,0.6811698414385319,-0.08951483154669404,-0.23771265894174576,0.8163892533630133,0.6905089723877609,-0.2945196623913944,0.08408522792160511,0.06954332906752825,0.5218954724259675,0.6707729226909578,0.04205848462879658,0.9536765702068806,0.9026923114433885,-0.1655363547615707,0.8072929964400828,0.08437849581241608,0.01890089362859726,-0.8081263774074614,0.23442281782627106,0.3616845440119505,0.7532307603396475,0.08130094362422824,0.622649447992444,-0.5695936079137027,-0.3378029642626643,0.9627959998324513,0.6278674616478384,0.8012256966903806,-0.873380184173584,-0.6118250442668796,-0.4899971941486001,0.8865253427065909,0.8827361152507365,0.587842358276248,-0.42733461037278175,0.1322689140215516,0.45528534799814224,-0.0720528275705874,0.28122781636193395,-0.6169825666584074,0.07648233650252223,-0.44555793795734644,0.6436181594617665,-0.10831598099321127,-0.3138364967890084,0.32334631914272904,0.5624682018533349,0.07077154703438282,0.13916964642703533,-0.8561693192459643,0.650874740909785,0.5334809576161206,0.5088275265879929,0.7329755905084312,-0.20771512389183044,-0.01808887580409646,0.4036240209825337,0.24434751411899924,-0.8241345267742872,-0.4912595860660076,-0.16784240677952766,-0.6483759921975434,-0.853679918218404,0.42049121437594295,0.40102779399603605,-0.6836156053468585,0.4239522940479219,0.9051922773942351,0.43207436660304666,0.9881514264270663,-0.42773723555728793,-0.09681250154972076,0.19885849999263883,-0.620911065954715,0.9851154503412545,0.13775313133373857,-0.46873530745506287,-0.28917292738333344,0.5539331729523838,0.7419643294997513,0.028448825236409903,-0.7716434113681316,-0.395039826631546,0.272426656447351,-0.5399066195823252,-0.7526184055022895,-0.2733937534503639,-0.3535152687691152,-0.42246808437630534,-0.6289153979159892,-0.08272445201873779,-0.3430918576195836,0.23821447230875492,-0.4953093188814819,-0.17098876181989908,0.3336373898200691,0.33618863485753536,0.7197807342745364,-0.26599304378032684,-0.1442397446371615,0.12719618389382958,-0.8782245879992843,0.37740863114595413,-0.7505822642706335,0.634097593370825,0.903012013528496,-0.45587060786783695,-0.22320725675672293,0.9519594013690948,-0.6916874316520989,0.3081942363642156,-0.7871229159645736,0.5550429080612957,-0.45822948310524225,-0.7767594079487026,-0.29347411543130875,0.7301545827649534,-0.05030585126951337,-0.3950029187835753,-0.714182002004236,-0.31369300140067935,-0.25091722793877125,-0.38765738205984235,-0.4748697420582175,-0.014236482325941324,0.050954689271748066,0.729618854355067,0.7262700251303613,-0.5692612612619996,-0.7152890427969396,-0.7823109999299049,-0.4534988719969988,-0.010021742433309555,-0.06395934335887432,0.2666005394421518,0.5442182570695877,-0.4382441113702953,-0.5219247881323099,0.9347618408501148,-0.6729449606500566,-0.8046186086721718,0.4495543302036822,-0.11741477949544787,0.24641618318855762,-0.5003446135669947,-0.8911443916149437,-0.03083752654492855,-0.2082897825166583,0.40128790913149714,-0.4114041938446462,-0.5224940162152052,0.28255639877170324,0.6874789437279105,-0.628360325936228,-0.7567594787105918,-0.11558752646669745,-0.4310475504025817,0.22479437850415707,0.509416117798537,0.68677130760625,0.9278033715672791,-0.1399639449082315,0.49567928770557046,-0.4970941790379584,-0.45254117297008634,0.03528574714437127,0.6234862306155264,0.44448505667969584,0.800628921482712,-0.6280084894970059,-0.4319388340227306,0.32045116275548935,0.4793664561584592,-0.584921624045819,0.545193625614047,0.07213240349665284,0.47626315522938967,-0.1308105317875743,-0.4329549968242645,0.6697101551108062,0.8899241518229246,-0.13296067947521806,0.4518268839456141,-0.7621831544674933,-0.40227445075288415,0.7772311214357615,0.7736143353395164,0.9337758994661272,0.44505115458741784,0.11580867553129792,0.8514195489697158,0.029980724211782217,-0.10351951653137803,-0.22473601438105106,0.4930433132685721,-0.00549126835539937,0.9163381620310247,0.6417469317093492,0.8414451684802771,0.2382874838076532,0.48198129748925567,0.2777507733553648,-0.4103505131788552,-0.8612391636706889,-0.39601143077015877,0.3566272407770157,0.7554864222183824,0.39870739728212357,0.1420648512430489,0.9889590931124985,0.6802910277619958,-0.4173980811610818,0.8799939700402319,0.07928240532055497,0.21689927391707897,-0.5497689871117473,0.3394273300655186,0.6955364788882434,-0.6757374191656709,-0.7162888189777732,-0.311905677895993,-0.3896884466521442,-0.657537491992116,-0.6766413315199316,-0.907681102398783,-0.16736860247328877,0.23124375054612756,0.05350260064005852,0.044050803408026695,-0.36992499930784106,0.22077581752091646,-0.8492638450115919,0.010842319577932358,-0.6704615433700383,-0.963206626009196,0.8498550527729094,0.057103732600808144,0.8489904175512493,0.412996135186404,0.08059076080098748,-0.04701028112322092,0.82688242290169,-0.6480439645238221,0.22325561055913568,-0.9601512998342514,-0.819511444773525,0.21268696058541536,0.8098522922955453,-0.20905000623315573,0.04207072267308831,0.11568951606750488,-0.20338602736592293,0.03279101708903909,0.3855537623167038,-0.03929456556215882,0.5395051701925695,0.9269295148551464,-0.6338227912783623,-0.3180847386829555,0.20408377284184098,-0.13226850843057036,0.5839926553890109,0.7961499122902751,-0.0507709295488894,-0.15889869770035148,-0.42729015508666635,0.08583905501291156,0.9337434088811278,-0.9162604385055602,-0.03351268591359258,0.5918424362316728,0.5938503229990602,-0.602125795558095,-0.5247002928517759,-0.7088454351760447,-0.0066512469202280045,-0.14272560738027096,0.6794712324626744,-0.5132392309606075,0.9138011801987886,0.8902468746528029,-0.43185366597026587,0.440699509344995,-0.5399233172647655,-0.7606860385276377,-0.8447413835674524,-0.6509412163868546,-0.6988969384692609,-0.5588240944780409,-0.40476845391094685,0.08194292290136218,0.9043027609586716,0.5049148853868246,-0.008543835952877998,-0.593996255658567,0.8981317696161568,0.9116831184364855,-0.5945494049228728,0.7073491308838129,0.6197941647842526,-0.7677655830048025,-0.7247607987374067,0.3843475170433521,-0.21808722103014588,0.5599326752126217,-0.00483783008530736,-0.3254467723891139,0.4427748150192201,-0.2867089305073023,0.10984469577670097,-0.34859576262533665,-0.10434594890102744,-0.2979426528327167,-0.7269144128076732,-0.7291690954007208,-0.1110551506280899,-0.9232232724316418,0.5049824654124677,-0.8678269707597792,-0.5628748326562345,-0.6088328193873167,-0.025863497983664274,0.06777930026873946,-0.0014820555225014687,0.6860534241423011,0.8198361108079553,0.5989077920094132,0.5187601363286376,-0.3566547273658216,0.05695655336603522,-0.5456124162301421,0.421359243337065,0.5884211878292263,-0.32976334216073155,-0.12499494990333915,0.15715346625074744,0.5237237769179046,0.9519417909905314,-0.9065534677356482,0.08698039501905441,-0.8506372002884746,0.7335659707896411,0.22411722363904119,0.9618819393217564,-0.19829912995919585,-0.4375557038001716,-0.8652473762631416,-0.21133933449164033,-0.5889120171777904,-0.3649732922203839,0.12705929623916745,0.4635958536528051,-0.10442249802872539,-0.8488947851583362,-0.7461404777131975,0.7414742377586663,0.08095565997064114,-0.5838383021764457,-0.14307656092569232,0.6525538638234138,-0.06358734238892794,-0.7279166933149099,0.7282758792862296,-0.08659471198916435,-0.9527826542034745,-0.9598488351330161,0.43188970908522606,0.3583399555645883,0.05187426647171378,0.8947844649665058,0.24724750639870763,0.5513547258451581,0.31422029668465257,-0.13061100197955966,0.8862173510715365,0.8694644616916776,-0.5473485314287245,-0.7398091787472367,0.6284205727279186,-0.5870076660066843,0.5472195455804467,-0.6353515647351742,-0.08931838488206267,-0.6260642777197063,-0.6498652826994658,-0.43313030526041985,0.3871585917659104,0.2836306202225387,-0.46748641319572926,0.07472108723595738,-0.3853384028188884,-0.9834878947585821,-0.805461990647018,-0.4702836605720222,-0.7551387795247138,0.8381839473731816,0.008283983450382948,-0.9112366619519889,0.06502824695780873,-0.617474315688014,0.4278208864852786,0.9950229632668197,0.6171350195072591,-0.9625845835544169,0.06366359675303102,-0.593596173916012,-0.8244684753008187,0.561233124230057,0.43329699244350195,0.5567940091714263,0.005613469053059816,-0.39228117372840643,-0.45186316315084696,-0.81037233537063,-0.2503682253882289,-0.48270694399252534,0.07041959371417761,0.20461444510146976,0.999973950907588,-0.011299932841211557,-0.7135505196638405,0.16891181655228138,0.23399404669180512,0.27871242072433233,-0.2022890425287187,0.7590678068809211,0.3358959620818496,0.061498993542045355,0.2874169098213315,-0.9837344703264534,-0.7755161202512681,0.01652286807075143,0.012448349967598915,-0.3728905878961086,-0.5692363088019192,0.15373426862061024,0.16507070511579514,-0.4442520262673497,-0.019988644402474165,-0.7529570949263871,-0.4043269078247249,-0.07041739951819181,0.980803360696882,0.34811702463775873,-0.1335153472609818,-0.22686762502416968,-0.8741937819868326,-0.7234342116862535,-0.6430252520367503,0.16752007883042097,-0.3185107256285846,-0.3142005824483931,0.3273025434464216,0.3856708761304617,-0.4860020633786917,-0.48829978751018643,0.2626769943162799,-0.3929745629429817,-0.7412092294543982,0.8859740933403373,-0.30425205221399665,0.4687499930150807,-0.18233982473611832,0.8315145936794579,0.7083981968462467,0.28268080204725266,0.20019612135365605,-0.9260201980359852,0.7244033766910434,-0.8426172388717532,0.2536307112313807,-0.6991297812201083,-0.3061326127499342,-0.7325541451573372,-0.8257529325783253,0.5996777871623635,-0.8496121084317565,-0.008851885795593262,-0.8677636976353824,-0.5277757891453803,0.2464400422759354,-0.641111861448735,0.5146139962598681,0.38158164033666253,0.32345439586788416,-0.24536380404606462,-0.10190049838274717,-0.9269852237775922,-0.6568793021142483,0.7666320870630443,0.5627180733717978,-0.817731776740402,0.8848743373528123,-0.9070567162707448,-0.6584725086577237,0.23538995860144496,0.3246224643662572,0.7937568826600909,0.025803042575716972,0.4164698333479464,0.8620197405107319,-0.7587795546278358,0.03305997373536229,0.8878779797814786,-0.9772305423393846,0.08366177650168538,0.4290799777954817,-0.9570912458002567,0.04981042584404349,-0.87044228753075,-0.7687304690480232,0.3870920045301318,-0.44454745715484023,0.6941091301850975,-0.5660881805233657,0.27842772053554654,0.8413910856470466,0.5378091605380177,0.6485978374257684,0.4170017042197287,-0.9496762827038765,0.34910735581070185,-0.2734377137385309,-0.3274568924680352,-0.1038072151131928,0.7701827334240079,-0.5682570901699364,-0.3833950222469866,0.41251894598826766,0.3237763214856386,-0.6295568002387881,-0.0823795460164547,-0.9150937236845493,0.7165712299756706,0.40398894529789686,0.07257199427112937,0.9713204745203257,-0.2012114212848246,-0.9506772169843316,0.5728292590938509,-0.3941211672499776,-0.10901323985308409,0.30104201566427946,-0.5784319038502872,-0.5375076713971794,-0.41043912759050727,-0.5593597698025405,-0.18765742238610983,0.19417127314954996,0.9933276693336666,0.8759220247156918,-0.39348198287189007,-0.03184353979304433,0.45129474624991417,0.830069478135556,-0.8073544511571527,-0.2299073887988925,0.33249511616304517,0.2548702619969845,-0.0077216736972332,0.37474121525883675,0.6299123628996313,0.17063826648518443,-0.4312858823686838,0.7135833632200956,-0.5337470499798656,0.6182648781687021,0.45676230918616056,-0.41023409459739923,-0.30101554095745087,-0.7272824048995972,0.1246506767347455,0.10232079494744539,0.6306349183432758,-0.5586636275984347,0.5367045281454921,0.5126669756136835,-0.6515069818124175,0.75302799558267,0.29305285355076194,0.9287939965724945,0.4773473097011447,0.1558281034231186,0.15365301445126534,-0.3972080135717988,-0.6776802153326571,0.7718418966978788,0.01924698567017913,0.22280855476856232,0.9967827303335071,0.26660693204030395,0.3171577276661992,0.8235294381156564,0.24570259358733892,-0.22547723166644573,-0.9509401852265,-0.23399766767397523,0.49875123519450426,0.7948349583894014,0.9319674116559327,-0.1361505319364369,-0.4484243649058044,0.6901530441828072,0.35535426484420896,0.9672205117531121,-0.41783845238387585,0.5012628841213882,0.24405920272693038,-0.06374386278912425,-0.846043505705893,-0.521061984822154,-0.5262673231773078,-0.859877741895616,-0.2119495701044798,0.8399792304262519,-0.82872524112463,-0.040300341323018074,-0.9717082264833152,-0.8374402597546577,0.3698243931867182,-0.5668352916836739,0.9221111303195357,0.40824925107881427,0.2789124483242631,-0.5378952557221055,-0.9598246314562857,0.8107424015179276,-0.5417737541720271,0.7739216545596719,0.13159401062875986,-0.9012757232412696,-0.9496526196599007,-0.8790457155555487,0.5734826209954917,0.715515679679811,-0.6476910142228007,0.9974261252209544,-0.7012763223610818,0.44050118420273066,0.07994482666254044,0.9693276365287602,0.35792355844751,0.652211825363338,-0.9977466748096049,-0.3107544300146401,0.1877095620147884,0.8928939905017614,0.5496250996366143,-0.7761041214689612,0.9942642906680703,0.4375205268152058,-0.5634622345678508,-0.11805033683776855,-0.5647879699245095,0.7944258488714695,0.6184241091832519,0.3663257206790149,0.7403749078512192,0.2128913546912372,-0.04362687608227134,-0.4189832457341254,0.033366731368005276,-0.5546105988323689,-0.6933933636173606,-0.0550808017142117,0.00476994039490819,-0.020424901973456144,-0.8566324803978205,0.8971650772728026,-0.27988026523962617,-0.621733333915472,0.6255782726220787,-0.27111213468015194,-0.7745735319331288,-0.34623113460838795,0.3100233389995992,-0.6468964922241867,-0.5414740648120642,-0.6809616135433316,-0.42162736551836133,-0.6145580639131367,-0.6548375952988863,-0.6231554439291358,0.41949648689478636,0.15550691401585937,-0.9303018683567643,0.27143480628728867,0.11060468386858702,0.3252172786742449,0.14163966150954366,-0.35148272290825844,0.6917303130030632,-0.9467934491112828,0.008849347475916147,-0.47511291271075606,0.1289612571708858,0.8890918609686196,0.8575603631325066,0.23132768739014864,0.5404830276966095,0.26859723031520844,0.4254348357208073,-0.3320832378230989,-0.44810210820287466,-0.4352829079143703,-0.6058715456165373,-0.18961531156674027,0.6304087224416435,0.5766116268932819,0.22196773765608668,-0.09621509490534663,0.9290259885601699,0.967900927644223,0.7739757560193539,0.24328360939398408,-0.9719609217718244,0.25533064221963286,0.12015375727787614,-0.8878822801634669,-0.1074249898083508,-0.6172025711275637,0.12653826316818595,-0.48476914083585143,0.043824545573443174,0.058271446730941534,-0.41616205498576164,0.20782575802877545,-0.1331738494336605,0.580634209793061,-0.5588215226307511,0.3309294357895851,0.5643332698382437,0.5818632999435067,0.03018789365887642,-0.6391372862271965,-0.5102418209426105,-0.27049595722928643,0.6117986436001956,0.7932889610528946,-0.35400250973179936,-0.23456853721290827,-0.253511824645102,-0.09393406426534057,-0.8938801386393607,0.7619280368089676,-0.8215478681959212,0.9481270043179393,-0.3732165670953691,0.528669832739979,0.8575575822032988,0.960935490205884,0.8378342133946717,0.4515766557306051,-0.6973133711144328,0.8326168772764504,0.1671335925348103,-0.45918089896440506,0.9589782506227493,0.3935810695402324,0.6736614657565951,-0.6295323325321078,0.879597355145961,-0.4836828070692718,0.6719655902124941,-0.4229027470573783,-0.30435674637556076,-0.7381121390499175,0.7080583423376083,-0.7418351229280233,0.04112359369173646,0.7063001114875078,0.07761623477563262,0.48335761902853847,0.2900408781133592,-0.6765184341929853,0.16664463933557272,-0.16662228992208838,0.8656191839836538,-0.553236763458699,-0.8168231430463493,0.172742014285177,0.09872048255056143,0.5374874109402299,0.07916432432830334,0.5184779046103358,0.6746773608028889,0.7843900793232024,-0.4000949626788497,0.803107978310436,0.03694333788007498,-0.6073479484766722,-0.5744446483440697,0.007864640560001135,-0.5515379044227302,-0.594120838213712,0.21717892261222005,-0.42655098531395197,-0.6892234850674868,-0.6197070889174938,0.3002472068183124,-0.5625747409649193,0.026918398682028055,-0.39588595274835825,0.22890805825591087,-0.5246404022909701,0.21258888021111488,-0.2958661299198866,0.03456634934991598,0.6895059552043676,-0.3720796136185527,0.7546110306866467,-0.8338602194562554,0.07832754449918866,-0.5434133154340088,-0.5360556445084512,0.9804768562316895,-0.839997380040586,-0.6960481111891568,0.9990650359541178,-0.147841970436275,0.5998745714314282,0.16028956044465303,0.4287346173077822,0.302622998598963,-0.7901513953693211,0.7866933103650808,-0.9147888720035553,-0.04428682057186961,-0.4686398687772453,0.24252299312502146,0.6685985196381807,-0.31000880990177393,0.4467359627597034,0.8747231960296631,-0.4751816466450691,0.5036430675536394,-0.22671742783859372,-0.853884787298739,0.1543099582195282,0.4037553393281996,0.7890949100255966,-0.1818804508075118,-0.4343926305882633,-0.2867077845148742,-0.4533897149376571,0.670369983650744,-0.40025885542854667,-0.8714658915996552,-0.6580546400509775,-0.17947306483983994,0.6155122038908303,-0.20220825774595141,0.8241011761128902,0.13873169757425785,-0.9543401943519711,-0.6636419859714806,-0.8323346711695194,0.07099982677027583,-0.35804573632776737,-0.17266435222700238,-0.1940932678990066,0.9713678699918091,0.6110684317536652,0.1212236643768847,0.3647115910425782,-0.08930121129378676,-0.582750397734344,-0.44298306154087186,-0.8477505361661315,-0.4144442845135927,0.06494067516177893,0.9120552884414792,-0.8297785622999072,-0.994388934224844,0.2950210082344711,-0.21969775995239615,-0.9129158300347626,-0.6561604174785316,-0.9080827957950532,0.24157258309423923,-0.79227539524436,0.9668103870935738,0.45830588322132826,0.1405206206254661,0.05330001190304756,0.8941987324506044,-0.23658417258411646,-0.5695055373944342,-0.3718748474493623,-0.07374227698892355,0.12213726388290524,-0.5042687887325883,-0.9931406923569739,-0.7500609769485891,0.8660152670927346,-0.48291320679709315,-0.4464623089879751,-0.8685487327165902,-0.9915972892194986,0.7992393728345633,0.5515478886663914,-0.08461373765021563,0.04934984399005771,-0.34880729438737035,-0.3298823330551386,-0.9408465707674623,0.8241966278292239,-0.9928728016093373,-0.8918248261325061,-0.23475374560803175,-0.16947937430813909,-0.8840466979891062,-0.014442503917962313,0.9955604067072272,-0.2025878168642521,-0.12999153090640903,0.09256858890876174,0.434412803966552,-0.7979722148738801,-0.9495458020828664,0.05757213989272714,0.1215709769167006,0.03783769626170397,-0.5660690423101187,0.46624876419082284,-0.3323648259975016,-0.3971455073915422,-0.4747615586966276,-0.9996157316491008,-0.038462030701339245,-0.4996949597261846,0.7525364588946104,0.2877620020881295,-0.5566423498094082,-0.7082512336783111,-0.4811244932934642,-0.8285563411191106,0.4518868806771934,0.19157335860654712,0.09433654183521867,-0.17340843193233013,0.33056967332959175,-0.7242727833800018,0.9868201492354274,-0.327029287815094,0.9825187902897596,0.7324429750442505,-0.6593952127732337,0.5201203455217183,0.7092016651295125,0.2429762501269579,0.9912762381136417,0.2536787800490856,-0.6771863512694836,0.5349197648465633,-0.25870475685223937,-0.8993940963409841,0.9968338343314826,-0.4455216536298394,-0.9486661721020937,-0.12176982965320349,0.02603831607848406,0.20088744768872857,-0.8866433892399073,-0.1532334233634174,0.7015030644834042,-0.8882670016027987,-0.5586431715637445,0.12868842855095863,-0.9108817148953676,0.9940416403114796,-0.9935212102718651,0.702021075412631,-0.6913168714381754,-0.2959891725331545,-0.009959451388567686,-0.7296701380982995,-0.19047723012045026,-0.529418371617794,0.7138421861454844,-0.811295815743506,0.8087816368788481,0.5304790535010397,-0.5652220621705055,-0.12727464269846678,-0.25227798987179995,0.568257512524724,-0.7070520725101233,0.8546303547918797,0.989710801281035,0.360439570620656,0.5166108408011496,0.06410454073920846,-0.683889321051538,0.7731296690180898,-0.6191889359615743,-0.5133857000619173,0.16549622640013695,0.1328754462301731,-0.7533936784602702,0.5364204640500247,0.0163895720615983,0.25176109094172716,0.8274727556854486,-0.7138089877553284,0.7562519833445549,0.33007679879665375,-0.9470683806575835,-0.704457241576165,0.4664485342800617,0.10153710888698697,-0.10838218918070197,-0.871368691790849,0.29702217876911163,-0.1329386313445866,0.18601279240101576,-0.04042127635329962,0.7002609171904624,0.36949624260887504,0.3322321097366512,-0.7024147063493729,0.30261037312448025,0.8345547839999199,-0.21074498258531094,0.45949316723272204,0.058734340127557516,-0.829527379013598,-0.8604465406388044,0.9145707152783871,-0.39047279860824347,-0.41558007802814245,-0.07010587071999907,0.074033722281456,-0.04484651377424598,0.49681452941149473,0.33816060004755855,-0.2080362648703158,-0.9929640148766339,0.8207749384455383,0.6320637143217027,0.17816414032131433,-0.9640162386931479,0.5688593732193112,0.5166801922023296,-0.6531227375380695,-0.41595895355567336,-0.9331728140823543,0.24205868691205978,-0.9625208633951843,-0.10214627720415592,0.498817699495703,0.33105206629261374,0.6887237462215126,-0.44668104918673635,0.44959141220897436,0.6799249206669629,-0.4545808439143002,0.46460691560059786,0.46406210772693157,-0.43012094404548407,-0.7590156216174364,0.036192466504871845,-0.8070676401257515,0.9088555290363729,-0.3565887091681361,-0.6491043395362794,0.01218448206782341,0.6632416290231049,0.5458165598101914,0.1736671244725585,-0.8766788742505014,-0.004792649298906326,0.4751744978129864,0.1890587187372148,0.8310965951532125,-0.8667778871022165,-0.4217656832188368,0.6808162457309663,-0.48106634384021163,0.18924447521567345,0.5970482537522912,0.40732946526259184,-0.18518342357128859,-0.34431644761934876,0.6159655107185245,0.06557907490059733,-0.5301361470483243,-0.986842549405992,-0.8270896468311548,0.7881604344584048,-0.9470115234144032,0.14191129384562373,0.3491575950756669,-0.749208576977253,0.49221321241930127,0.5353471837006509,0.15762035781517625,-0.8034906932152808,-0.913844991941005,0.39449202362447977,-0.8799302615225315,-0.6321244812570512,0.5443831668235362,0.6349381916224957,0.07413612538948655,0.38971016835421324,-0.35781329311430454,-0.1518150484189391,-0.12356049660593271,-0.40313949016854167,-0.10923967976123095,-0.3185105547308922,-0.34495938289910555,-0.9518416039645672,-0.8026416692882776,-0.43158515077084303,0.6939242435619235,-0.7942567127756774,0.9765437301248312,0.17443768167868257,-0.7165410616435111,-0.04717599553987384,0.6653060773387551,-0.4865157171152532,-0.3241892224177718,0.7057396434247494,-0.3128835679963231,-0.9773916904814541,0.9994844608008862,-0.744984682649374,-0.3713003424927592,-0.8154346058145165,-0.2780575384385884,0.04472452076151967,0.0453884806483984,-0.9445772636681795,-0.03449276043102145,-0.7291547418572009,-0.2438926831819117,0.5258764266036451,-0.5010986044071615,0.2902585337869823,-0.6688475864939392,0.45954918628558517,-0.5000529796816409,-0.033047792967408895,0.11098600411787629,-0.08122180588543415,0.11757156858220696,0.9035042366012931,0.5619442095048726,-0.9727505156770349,0.07177354022860527,-0.7834355044178665,0.3382177702151239,-0.8542706668376923,0.2693215082399547,-0.28226261120289564,0.6543588945642114,-0.6915994719602168,0.15673275105655193,-0.3151687802746892,0.37908183643594384,-0.8885715189389884,-0.27425198536366224,-0.7703869282267988,-0.4911380372941494,-0.9049446899443865,-0.5441326359286904,-0.06246310332790017,0.6155822575092316,0.809596014674753,-0.3967092935927212,-0.9263428351841867,-0.13783604791387916,-0.3544918382540345,-0.8067110562697053,0.6759202247485518,-0.0890517421066761,-0.9214102206751704,0.01631350675597787,0.7848431654274464,0.5570031111128628,-0.1163779841735959,0.9733962514437735,-0.5648488365113735,0.016610921826213598,-0.33659499138593674,0.9435832449235022,0.40483939880505204,-0.7557074497453868,0.20270005892962217,0.9460782841779292,-0.732693986967206,0.4971452811732888,-0.028034884482622147,-0.6070695393718779,-0.12194313853979111,-0.46206386433914304,-0.18162191845476627,-0.6283787684515119,0.5153865371830761,0.28003681637346745,-0.7374581065960228,0.946162230335176,0.5435537034645677,0.23864251840859652,0.35318904276937246,-0.962508202996105,0.9480831702239811,0.572221138048917,-0.03619447397068143,-0.39967677230015397,0.27375277085229754,0.254323142580688,0.07034612586721778,-0.5849229558371007,0.46690530655905604,-0.7706939806230366,0.6811423632316291,0.40515967924147844,0.15106867533177137,0.4276943984441459,-0.35394928231835365,-0.9050828153267503,-0.6763289659284055,0.8776471116580069,-0.2581497645005584,0.706063034478575,0.6762143243104219,-0.567947082221508,-0.34255692968145013,-0.4378680819645524,0.5496893599629402,0.14663525857031345,-0.2416838170029223,0.9579170313663781,0.5010801148600876,0.6400532838888466,0.4796757446601987,-0.9882974987849593,-0.08010341273620725,-0.662446032743901,-0.013324912637472153,-0.7750774892047048,-0.8939536628313363,0.8355423049069941,0.9665463087148964,-0.9529593847692013,0.39573074085637927,-0.47321315109729767,-0.6866917330771685,0.5207202471792698,-0.9573140707798302,0.22507352475076914,0.19226497039198875,-0.8007454965263605,0.7839587205089629,-0.2553113168105483,-0.8737034434452653,0.5548392930068076,-0.9943976546637714,-0.6018458176404238,0.13446384854614735,0.45025004260241985,0.6554514709860086,-0.5435410938225687,-0.5769719644449651,-0.0650446186773479,-0.9003160307183862,0.16360859759151936,-0.8940246291458607,-0.9437802499160171,0.577034012414515,-0.9196304022334516,0.02271555084735155,-0.9530003648251295,0.02038480155169964,0.0989338057115674,0.3488657083362341,0.9602051242254674,-0.36139243142679334,0.6230465094558895,0.7650665692053735,0.2762021627277136,0.46593291219323874,-0.024050817359238863,0.5467992718331516,-0.3517772820778191,-0.011563371401280165,-0.29675575997680426,0.008244522381573915,0.913814586121589,-0.5776372943073511,-0.1022848873399198,0.8291224879212677,-0.3360335770994425,-0.6464386666193604,-0.08752868371084332,-0.8266880996525288,0.6105608213692904,-0.26865644520148635,-0.17298714257776737,-0.08660445641726255,-0.7351864175871015,0.7754582827910781,0.0059047238901257515,-0.5565788559615612,0.1934343813918531,0.3911931086331606,0.572466550860554,0.2142473543062806,0.42097322549670935,-0.13028186466544867,0.4242165572941303,0.7897334173321724,-0.583932944573462,0.6127587435767055,0.3397249453701079,0.8700194391421974,0.47352007683366537,-0.31239323457702994,0.49248822312802076,-0.7242558794096112,0.425316393841058,0.08560707839205861,-0.00015428895130753517,0.7051094225607812,0.17685749428346753,0.5140078621916473,0.3697977280244231,0.20604550559073687,-0.960774574894458,-0.35072947992011905,0.1587061509490013,-0.37296588346362114,-0.7068127524107695,-0.3620067439042032,-0.09365735249593854,0.23222088813781738,0.760537859518081,0.31005537416785955,-0.16419168282300234,-0.7597499322146177,-0.9615792068652809,0.5684202299453318,0.7820516028441489,0.15584520623087883,-0.25274871615692973,-0.6651266939006746,-0.3856780747883022,-0.8705485928803682,-0.1538903503678739,0.6033225944265723,-0.4008612520992756,0.5070751626044512,-0.5285234153270721,0.06967486999928951,0.7794660492800176,0.1588886482641101,-0.48323341784998775,-0.4584987233392894,-0.1864927583374083,-0.09153173957020044,-0.22382904216647148,-0.4345519286580384,-0.9113210183568299,-0.10210828483104706,-0.7656746283173561,-0.3186137964949012,-0.2770411306992173,-0.3530102325603366,-0.680265954695642,-0.08837029570713639,-0.806139076128602,-0.3370112841948867,0.19662159867584705,-0.6660705395042896,-0.2796899816021323,-0.7091721431352198,-0.07283906918019056,0.03380245761945844,0.7344991699792445,0.3647517212666571,0.08959041628986597,0.20561341848224401,0.18822161527350545,0.1456295968964696,0.4820646997541189,0.5964131620712578,-0.07818202953785658,-0.02186802588403225,0.6735180411487818,-0.17842308524996042,0.8136437018401921,0.9314325260929763,-0.11721682082861662,-0.7893084636889398,0.07087497832253575,0.6217389949597418,-0.5568584031425416,0.45840254332870245,0.5518818008713424,0.9599333899095654,-0.6129563506692648,0.11527265422046185,0.48877621814608574,-0.3206001711077988,-0.5340547491796315,-0.9681452699005604,-0.3037135018967092,-0.20788460411131382,0.7413802212104201,-0.8343628034926951,-0.2312051714397967,0.014475925825536251,0.28980094008147717,0.893279567360878,-0.5755608519539237,-0.40168129093945026,0.5704206088557839,0.6830579959787428,-0.2579430234618485,-0.7330718957819045,-0.19104170752689242,-0.612714912276715,-0.39658185886219144,0.24104899121448398,0.9915213161148131,-0.435210679192096,0.2604806977324188,-0.16699811164289713,0.09002973884344101,-0.2486055209301412,0.10274479445070028,-0.48932873364537954,-0.9009936023503542,-0.05052658589556813,-0.1717452951706946,0.20298605505377054,0.2064864058047533,0.9688114789314568,-0.5211725016124547,-0.9661165699362755,-0.5863923658616841,-0.7700446736998856,0.6262374809011817,0.6514301062561572,0.27650506934151053,-0.543119253590703,0.6488400246016681,-0.46645359601825476,0.2870587413199246,-0.46114649437367916,0.9202445140108466,-0.3677240516990423,0.27968017663806677,-0.1351298075169325,0.05766728054732084,0.5581654976122081,-0.8906747344881296,-0.36263911286368966,0.6026081489399076,-0.06847249390557408,-0.08801547484472394,0.5789947025477886,-0.55985570512712,0.47833150438964367,0.6293474161066115,0.7823064015246928,0.30775821674615145,0.5817872993648052,0.24456466641277075,-0.0843813307583332,0.7397881420329213,-0.24044404597952962,-0.6641853423789144,-0.7545085246674716,0.81080555729568,-0.37998990528285503,0.2715711174532771,0.18973057065159082,-0.3135950551368296,0.31131053529679775,-0.17448341473937035,0.596589065156877,-0.9862680435180664,-0.957797097042203,-0.6892697983421385,-0.8357296264730394,0.496390447486192,0.6108154286630452,-0.3748844605870545,0.5871705529280007,0.44872401654720306,-0.9653621143661439,0.528930077329278,0.9452416514977813,-0.00041230954229831696,0.7853835490532219,-0.6502116615884006,-0.001595301553606987,0.5869572497904301,-0.04730160813778639,-0.8389929281547666,-0.23222225485369563,-0.0555674540810287,-0.4751494247466326,-0.6380833978764713,-0.53188860649243,-0.7665028688497841,0.07959815952926874,-0.9222295423969626,0.32810421753674746,-0.8678473825566471,0.4876936827786267,-0.6723369220271707,-0.6936140535399318,-0.25473627587780356,0.3422502977773547,-0.9217190961353481,0.482462405692786,-0.8933904021978378,0.6025957926176488,-0.6280689090490341,0.7504450106061995,0.959483808837831,-0.5402276269160211,-0.6328803985379636,-0.7455332493409514,-0.8206874988973141,0.6675949543714523,0.8200520323589444,0.9119132868945599,-0.4926773039624095,-0.1629232605919242,0.9959408645518124,-0.10890366975218058,-0.10737992357462645,0.7537470036186278,-0.057253852020949125,-0.2994035389274359,0.9840600593015552,0.42076842300593853,0.423770435154438,-0.8509015156887472,-0.23865860607475042,-0.7046019565314054,0.6719282944686711,-0.10217864438891411,-0.27778725465759635,-0.4405166800133884,-0.19979404425248504,-0.7969926060177386,0.4608859079889953,-0.11755658313632011,-0.4826321853324771,-0.1000249469652772,0.5948152397759259,-0.929688299074769,-0.845716854557395,-0.6821514568291605,-0.4140069358982146,-0.432632795535028,0.7445431016385555,-0.9390394510701299,0.7581773423589766,0.5315838060341775,0.5581711395643651,-0.8353135739453137,0.6928561949171126,-0.893340677022934,-0.08816113322973251,-0.7862877254374325,0.2462356397882104,0.3336253659799695,-0.8792464300058782,-0.18502016784623265,0.13196248607710004,-0.2722988077439368,-0.2838075621984899,-0.7270083799958229,0.9782181684859097,0.3493579253554344,-0.07280488032847643,0.3339902204461396,0.3102409141138196,0.07646221201866865,0.06087747821584344,-0.025804087985306978,-0.9940226948820055,0.2174236010760069,0.1139307925477624,0.5468060704879463,-0.36164767434820533,-0.8595558390952647,0.012496497482061386,-0.4731815275736153,0.809598236810416,0.06082282029092312,0.41774284839630127,-0.48154702922329307,0.06349093746393919,0.12781132571399212,0.7871035914868116,0.27708900393918157,-0.7921521686948836,0.8702019252814353,0.4534495072439313,0.257506774738431,-0.6050536343827844,-0.3329972508363426,-0.7887201486155391,-0.8555660960264504,-0.634863032028079,-0.4707054845057428,-0.9040016941726208,-0.40501637617126107,0.8993395897559822,0.6011652946472168,0.8520539617165923,0.7633159668184817,-0.4043705319054425,0.2454183683730662,-0.8368249922059476,-0.05141142290085554,-0.14424312580376863,0.13667858019471169,-0.4922898504883051,-0.1483687199652195,-0.027272839099168777,0.655160887632519,0.13943835021927953,0.7028638748452067,-0.07681090291589499,-0.37206675158813596,-0.35043736128136516,-0.47693795384839177,-0.3153202817775309,0.012514428701251745,-0.1890523382462561,-0.0949788992293179,0.6967671979218721,-0.3260997165925801,0.7044697189703584,-0.18556112656369805,0.3587938421405852,0.12175460392609239,-0.6625366755761206,0.8569475198164582,-0.9779654694721103,-0.06616680789738894,-0.20291825477033854,-0.5290029146708548,-0.6721630026586354,0.042333214078098536,-0.26927259750664234,0.35334573639556766,0.9789236090146005,-0.14856464276090264,0.2749356706626713,0.817803586833179,0.2627053977921605,-0.9275358757004142,0.09026726614683867,-0.5994546883739531,-0.2872968171723187,0.7696240362711251,0.274774560239166,-0.2354594711214304,-0.9433650099672377,0.2142387847416103,-0.6477103549987078,-0.6676244549453259,-0.9016152787953615,-0.52055923640728,0.9905485222116113,-0.14928756281733513,0.28853979613631964,0.31212075240910053,-0.17966546351090074,-0.3396895192563534,0.6408202792517841,-0.5066251931712031,-0.6598072680644691,-0.49734599282965064,0.5251647834666073,0.7938555218279362,0.5189280770719051,0.7475382536649704,0.9915018305182457,0.8038964541628957,0.8291174350306392,0.7752663693390787,-0.5826757624745369,0.8606190644204617,-0.8813219950534403,0.8604351803660393,0.9270234499126673,-0.9013890866190195,0.7035146462731063,0.6945679956115782,-0.25707288505509496,0.06016668817028403,-0.5828179004602134,0.21019877353683114,-0.6353700975887477,-0.27887810207903385,0.15844537364318967,0.49068782292306423,0.32706394838169217,-0.7996579520404339,-0.3955111699178815,-0.9660483952611685,0.9877751488238573,-0.24929286213591695,0.31606896920129657,-0.4033582219853997,0.1268963860347867,-0.8853179677389562,-0.6908861459232867,0.7419802886433899,0.6949105737730861,0.806343745905906,0.22872346499934793,-0.9454154800623655,0.6807428374886513,0.9642530540004373,-0.5141634992323816,0.2202255418524146,-0.11644551018252969,0.842389780562371,0.1359213818795979,-0.5199131197296083,0.4207773795351386,0.00099622318521142,-0.9230013424530625,-0.42045217426493764,-0.5685634426772594,-0.8321859906427562,-0.12096956931054592,-0.6024441421031952,-0.9357141363434494,-0.863016470335424,0.378654679749161,0.6197554878890514,-0.21643049363046885,-0.614659293089062,0.6367765343748033,-0.3816373301669955,-0.4491591099649668,0.8673851038329303,0.6200264771468937,-0.13198479684069753,0.9511984274722636,-0.04775457130745053,0.32005572644993663,0.3773175426758826,-0.7264241492375731,-0.13864586129784584,0.10202962113544345,0.11927332449704409,-0.1475804173387587,0.5956024676561356,0.7086350475437939,0.6629685554653406,0.8738845754414797,0.5633207983337343,0.7102186982519925,-0.535046465229243,-0.4965002997778356,-0.3031462403014302,-0.3646684377454221,-0.8082632711157203,-0.8458040338009596,0.022652678191661835,0.6056846184656024,0.9374603722244501,-0.6869580261409283,0.9273904673755169,-0.6467201933264732,-0.8984706187620759,0.2880391147918999,0.3504181243479252,-0.21680326340720057,-0.5814153719693422,-0.7451010686345398,0.6625400534830987,-0.179892648011446,0.5672316555865109,-0.40613921405747533,0.22311337338760495,0.19903176790103316,0.8466381607577205,0.6321885781362653,0.6106360922567546,-0.7047731122002006,-0.7086550612002611,-0.4308400289155543,0.3565228311344981,0.8320370656438172,0.1290572383441031,0.5281652738340199,0.13246882241219282,-0.7991359531879425,0.7938020061701536,-0.08364487020298839,0.9267700691707432,0.57090033730492,-0.4192956266924739,0.47098690923303366,0.4559630691073835,0.8985144197940826,-0.32385604176670313,0.840312800835818,-0.3521788469515741,0.08925703167915344,0.3490205220878124,-0.47027745470404625,-0.8860497353598475,0.08405740093439817,-0.3370672445744276,0.1853591543622315,0.9582549049519002,0.9515313021838665,0.2938739573583007,-0.5863569360226393,0.19334945129230618,-0.5796053567901254,0.5180613030679524,-0.4108221586793661,0.6367908525280654,0.09724083729088306,0.7482581529766321,0.7708529634401202,-0.9889816688373685,0.23330667987465858,0.883229176979512,-0.8925588140264153,-0.031128029339015484,0.2579975430853665,-0.030955517198890448,0.17178571689873934,0.8205857840366662,0.8525620689615607,-0.3073507291264832,0.7150964364409447,0.422920077573508,-0.48053828021511436,0.024320419877767563,-0.16100636590272188,0.39078715862706304,0.9184591718949378,0.8368710000067949,0.6524553899653256,-0.12423332734033465,0.017251700162887573,0.9958184165880084,-0.8971298984251916,0.9416671334765851,-0.960342098493129,0.1643474423326552,0.8158459216356277,-0.958495354745537,-0.4832797423005104,0.429107784293592,0.9584256834350526,-0.16786933224648237,-0.8046891032718122,0.010431340429931879,0.307429903652519,-0.548389392439276,0.806776215787977,0.15673738671466708,0.11519765434786677,-0.9604222131893039,0.9497499354183674,0.045422544702887535,-0.02423673728480935,0.056771036237478256,-0.7702468130737543,-0.24689832190051675,0.1968476129695773,0.8580826614052057,-0.2591484822332859,0.2709500528872013,0.629832040052861,0.5970044643618166,-0.30548998853191733,0.7777449749410152,0.868904042057693,-0.050668930634856224,0.09619740722700953,-0.09383662883192301,0.1460879947990179,0.2690166891552508,0.6230577379465103,0.7289939117617905,-0.4465550445020199,0.5436823861673474,0.9476436269469559,-0.5432914481498301,0.8721363567747176,-0.34867012687027454,-0.9611885813064873,0.36287460243329406,0.9718411080539227,0.7088971240445971,0.006615940947085619,-0.1651476165279746,0.08442632760852575,-0.004846363794058561,-0.805885418318212,0.3048268500715494,0.26858485396951437,0.7445833273231983,-0.7966936761513352,-0.34920405503362417,0.7306291069835424,0.4041811446659267,0.37466543400660157,-0.5859679207205772,-0.9663235549814999,-0.9484747177921236,0.9376007909886539,0.8377796113491058,0.34566966397687793,-0.2702530496753752,-0.5662353062070906,0.5890863500535488,0.9520385777577758,0.07899162918329239,-0.8506560809910297,-0.848700141068548,0.3560983082279563,-0.4838491529226303,0.9325510538183153,-0.4351009512320161,0.22244430100545287,-0.35786702623590827,0.06581919267773628,0.9032872756943107,0.31694510020315647,-0.8873304426670074,-0.5672424430958927,-0.49022615281865,-0.048607790376991034,-0.44885868998244405,0.878041747957468,0.21017280174419284,0.41166002210229635,-0.38531365245580673,-0.4271819666028023,-0.08720117574557662,-0.7802875209599733,-0.598604004830122,0.36363592464476824,-0.18792660208418965,-0.3423814997076988,0.05710715660825372,0.04955194937065244,-0.7447805036790669,-0.34300072537735105,-0.17070321692153811,0.6418002918362617,0.02324220910668373,-0.21069687185809016,-0.908622098620981,0.6822808645665646,0.1675282376818359,-0.20516998879611492,-0.5536671467125416,-0.1809972575865686,-0.5636367928236723,0.4149634172208607,0.8464229400269687,0.1826547970995307,-0.0964376968331635,-0.0020480123348534107,0.33079982129856944,0.9572654776275158,0.9502643710002303,-0.8253714637830853,0.03845687210559845,0.7280154242180288,-0.894926318898797,0.04968191450461745,0.11908736312761903,0.014839407987892628,-0.6515443357639015,-0.6385571267455816,-0.9392655547708273,0.6774658747017384,-0.9911159803159535,0.41511781979352236,0.6703944834880531,-0.6619215169921517,-0.3948542596772313,-0.37822618056088686,0.7450952562503517,-0.2972835497930646,-0.4342124196700752,-0.09838856244459748,0.6775083066895604,-0.6328204721212387,-0.36016396153718233,0.4733432405628264,-0.407440094742924,0.8119365759193897,0.06691284803673625,-0.0609175912104547,-0.37416065065190196,0.3478436032310128,0.3428652957081795,-0.7427548868581653,0.3372952230274677,0.13388295657932758,0.5411453805863857,0.35949438577517867,-0.5509577449411154,0.126969242002815,-0.894606152549386,-0.3971548113040626,0.2668918087147176,-0.20332283386960626,0.2822824325412512,-0.754186968319118,0.43773574149236083,-0.5016890945844352,-0.5073804021812975,0.08451743423938751,0.745586316101253,0.5863857455551624,-0.7264045677147806,-0.638161413371563,-0.4711170722730458,0.4211072660982609,0.8480509547516704,0.8676289385184646,0.9406416858546436,-0.7596739288419485,0.9241297361440957,0.594539129640907,0.2727101678028703,-0.9190685469657183,0.21337989019230008,0.6199252582155168,0.592008990701288,-0.44762985687702894,0.34734506253153086,-0.0018359511159360409,0.021225022617727518,0.1936521208845079,0.19903737865388393,0.03037946717813611,0.47725755348801613,-0.9803282842040062,-0.6484382087364793,0.007951606065034866,0.12009869469329715,-0.43463337421417236,0.974166264757514,-0.4853392345830798,-0.9911398524418473,0.03734576562419534,-0.378782392013818,0.23164965817704797,-0.49012776417657733,0.18278481112793088,-0.34516597213223577,-0.6217245711013675,0.13731283973902464,0.25269897747784853,0.8759726551361382,0.9377156612463295,0.41918183071538806,-0.8433533958159387,0.8698697001673281,-0.19979311060160398,0.790891211014241,-0.8046732423827052,0.670217941980809,0.2090292521752417,-0.8830373431555927,-0.49971070047467947,0.9295750511810184,-0.05044290190562606,-0.5301287691108882,0.05318830255419016,0.9758769171312451,-0.8224079408682883,0.04317904356867075,0.2545784693211317,-0.8550601648166776,-0.07202592911198735,-0.10733803920447826,-0.2153973700478673,-0.45584614807739854,0.4910583673045039,-0.4919974263757467,0.5366041054949164,-0.6391754862852395,-0.4744423655793071,-0.33239317778497934,0.9245557463727891,-0.18463445454835892,-0.14971530018374324,-0.34018729114905,-0.05959739815443754,-0.7260724371299148,-0.2056141896173358,0.5121056749485433,-0.5451718191616237,0.18036599550396204,-0.6395188490860164,0.7597474646754563,-0.25519485445693135,-0.4131458196789026,-0.16809876216575503,0.9918885743245482,-0.9306260235607624,0.8951221499592066,-0.22865061229094863,0.24340926902368665,-0.7294071647338569,-0.5349931074306369,0.2694125035777688,-0.5776360728777945,-0.3036724952980876,0.8890745937824249,-0.34633128624409437,-0.620624783448875,-0.40304384380578995,0.5963543257676065,-0.45131461089476943,-0.6153623508289456,-0.37706543831154704,0.5351151009090245,0.9376110471785069,0.6628100704401731,-0.9078257596120238,-0.5578488558530807,-0.08493738481774926,0.3586922502145171,-0.22475421195849776,0.24137762980535626,0.11093012383207679,-0.7965791230089962,0.37784218275919557,-0.5304109402932227,0.8562676799483597,-0.048523250967264175,0.738833736628294,0.1886578998528421,0.7549468353390694,0.15533343888819218,-0.35343030327931046,-0.5607187715359032,0.1117429775185883,-0.13452816382050514,-0.7750446237623692,-0.3932925066910684,-0.2740437868051231,0.6702613648958504,-0.34172956412658095,0.05691109783947468,0.8881696602329612,-0.4138836255297065,-0.07883934024721384,-0.480109378695488,0.8797998866066337,-0.5434986231848598,-0.31215338269248605,0.6062913830392063,0.5775147834792733,0.14742867276072502,0.06749449949711561,-0.005121299065649509,-0.7594659230671823,0.3450847025960684,-0.8743863045237958,-0.7554315682500601,-0.6861122283153236,0.8225868586450815,0.7237508152611554,-0.6742409644648433,0.8557283170521259,0.7336462261155248,-0.2575723729096353,-0.9597668945789337,-0.15258307522162795,-0.5373749728314579,-0.9904457265511155,-0.15831605764105916,-0.25729609467089176,-0.2196508995257318,0.3746490580961108,-0.0933513855561614,0.12600511405617,0.24991489527747035,0.7342672194354236,-0.15146585926413536,0.08821127563714981,-0.29230195423588157,0.4157563182525337,0.2761657377704978,0.8020647717639804,-0.19441468873992562,0.8806445454247296,0.8777914023958147,0.9760027299635112,-0.8339965757913888,-0.2144863191060722,-0.654839648399502,-0.04137717466801405,-0.9810862201265991,0.8382373778149486,0.036050427705049515,-0.7927801599726081,0.1860598553903401,0.9480351144447923,0.7414496084675193,-0.4818296981975436,-0.6190540571697056,-0.5385554651729763,-0.3723981035873294,0.1544692562893033,0.5900312662124634,0.7008024672977626,0.44027785304933786,-0.9433377757668495,-0.8189805787988007,0.807373033836484,-0.10632220096886158,-0.5624257479794323,0.8489290834404528,-0.39996981946751475,-0.43296532006934285,-0.2799993818625808,-0.7814949112944305,-0.26143543189391494,-0.9512022081762552,0.34588386211544275,0.6760454592294991,-0.5211622747592628,-0.8492779629305005,-0.9286646232940257,0.9516003830358386,-0.4217693512327969,-0.3801122447475791,-0.06715773837640882,0.7481355974450707,0.0849968371912837,-0.5773886102251709,0.90843490883708,0.17133003007620573,-0.6264366093091667,0.2869461392983794,-0.11638979613780975,-0.022742544766515493,0.8875037832185626,0.6203954229131341,0.1884416309185326,-0.08362157130613923,-0.6273870319128036,-0.5740791279822588,-0.1618349365890026,-0.7537322985008359,0.25053902994841337,-0.41036463947966695,-0.846983430441469,-0.09528760891407728,0.8716948563233018,-0.5068220947869122,0.7580668833106756,-0.054066894110292196,0.8339860364794731,-0.6528289881534874,-0.5214485465548933,-0.42717036698013544,-0.08959201816469431,-0.058595487382262945,-0.5140252839773893,-0.33425572980195284,0.43679019529372454,-0.5703864814713597,0.16291649313643575,0.8665095302276313,0.47758872527629137,0.18555588042363524,-0.02133844420313835,0.3263937230221927,0.4967644717544317,-0.8429079945199192,0.9971774443984032,-0.16647802479565144,0.850355647969991,0.38662744499742985,-0.9140066760592163,0.03488888405263424,-0.4222484431229532,-0.8224209235049784,0.2561367694288492,0.7396041797474027,-0.9190827212296426,0.004622938577085733,-0.11151784611865878,0.49387790402397513,0.5357256080023944,-0.9102949416264892,0.6933631678111851,-0.3690075450576842,0.7733082226477563,-0.9482231582514942,0.03473084373399615,-0.016731996089220047,0.09155366336926818,0.9595451015047729,0.5048317331820726,-0.5287450519390404,-0.3300482351332903,-0.5247631352394819,0.7542840433306992,-0.7417064793407917,0.7940075802616775,-0.7192111448384821,-0.35324642062187195,0.932499848306179,-0.5962485154159367,0.41760416654869914,-0.319869183935225,-0.7055705287493765,0.6131020984612405,-0.832676119171083,0.6527650454081595,0.48949856543913484,-0.16200672183185816,0.9470027242787182,0.5812180507928133,-0.9058848451822996,0.09521738346666098,0.7942956085316837,0.17675736965611577,0.5433920053765178,0.6067338543944061,0.03561278525739908,-0.36301867151632905,-0.15944525320082903,0.49481378914788365,-0.7377668488770723,0.9070899146609008,-0.488583370577544,0.5791700892150402,-0.44281195662915707,-0.26937342528253794,-0.7295865481719375,0.8912433171644807,-0.24055828992277384,0.11270191706717014,-0.8799364273436368,0.41742420848459005,0.6424268344417214,-0.554359293077141,-0.4134202296845615,-0.16738830134272575,0.497861766256392,0.9908412890508771,0.20470609469339252,0.05711908871307969,-0.7275055963546038,0.9426339603960514,0.8009834382683039,0.00887399772182107,-0.5152456830255687,0.8723236015066504,-0.6422937880270183,0.7899272874929011,0.9049520678818226,-0.20347045315429568,0.044950843788683414,-0.11313713015988469,0.8979140473529696,-0.49262653151527047,0.3567516761831939,0.4675533566623926,0.6954370951279998,0.12360026966780424,-0.8020523684099317,0.825593763962388,0.8813877981156111,-0.5151216834783554,-0.6727704694494605,0.412305049598217,-0.36746236169710755,0.13084586150944233,-0.5547230937518179,0.041787432972341776,0.501489304471761,0.5394935258664191,-0.9194122836925089,0.4875792101956904,-0.31000940408557653,0.3106300006620586,-0.7414921172894537,0.7757302564568818,0.7722610030323267,-0.8114985297434032,-0.4639884326606989,0.4290459882467985,0.3188774469308555,0.031158541794866323,0.25875633396208286,-0.6178087568841875,-0.746235653758049,0.29631998063996434,0.22906096279621124,0.9835141929797828,-0.09539069049060345,0.9283730098977685,0.7414854266680777,-0.6335621504113078,-0.6143979015760124,0.9676310531795025,0.6903436682187021,0.6856471681967378,-0.48794256057590246,-0.20242436369881034,0.06630883039906621,-0.7207662994042039,-0.6369009236805141,-0.6212119399569929,-0.6799306217581034,0.8829111657105386,-0.5792851415462792,0.21550046280026436,-0.5455887261778116,-0.6478666965849698,0.3620236343704164,0.6253061410970986,0.5901383464224637,-0.49086523335427046,-0.4265602962113917,0.9282943150028586,-0.6471801013685763,0.5827661552466452,-0.7869641841389239,0.8367179087363183,-0.6511648199521005,-0.6137988213449717,0.4990431475453079,-0.10851838905364275,-0.6251009209081531,0.28915039682760835,0.6568313762545586,0.386880693025887,-0.5091635975986719,-0.768645640462637,0.2320434977300465,-0.005153033882379532,0.3860539351589978,-0.19390501407906413,-0.43333164509385824,-0.7899873293936253,0.47236403124406934,-0.47984567284584045,-0.7913751709274948,0.3039749232120812,0.7385416273027658,0.9731370341032743,0.6292348327115178,0.18152743484824896,0.23677627090364695,-0.5660607279278338,0.27168924920260906,0.8942448990419507,-0.7142266784794629,-0.5615286119282246,0.14170145243406296,-0.18741405569016933,0.7912855292670429,-0.6015162160620093,-0.014527172315865755,0.5294497963041067,-0.44423904037103057,0.049159597139805555,-0.6839489750564098,-0.12455556634813547,-0.6554413582198322,-0.7956160148605704,-0.7297711833380163,0.7985228444449604,-0.8437342406250536,0.19283042196184397,-0.9708863003179431,-0.6717083631083369,-0.6516300803050399,0.6879711663350463,0.15458255726844072,0.1932927411980927,0.5594923826865852,0.7808129703626037,-0.6418969938531518,-0.7663590055890381,-0.09306849120184779,-0.5493166334927082,-0.6153790927492082,0.6114304540678859,0.3618514556437731,-0.7218379685655236,0.469288082793355,0.550827853847295,0.03165461681783199,-0.2750374600291252,0.8503108946606517,0.37463149381801486,-0.016641514841467142,0.7384948115795851,0.35129578737542033,0.34714028844609857,0.4042745428159833,0.7536528622731566,0.14427878241986036,0.08081025676801801,-0.2463549547828734,0.15186112420633435,-0.743222895078361,-0.7950770286843181,0.5922249015420675,-0.7120272577740252,0.5642838608473539,-0.8805671972222626,0.0980061013251543,-0.3117151400074363,-0.6453051408752799,-0.5403880104422569,-0.9117225171066821,-0.11790678091347218,0.05446596909314394,-0.6887387991882861,-0.13499856740236282,0.6544112609699368,-0.3851188812404871,0.4924457394517958,-0.759851174429059,-0.7831977140158415,-0.05307805631309748,-0.49650121573358774,-0.046351185999810696,-0.45412509329617023,0.8017958607524633,0.4750291076488793,0.1491393782198429,-0.3307328592054546,-0.6637624567374587,0.3119357256218791,0.09425443829968572,0.5792311788536608,0.6819185875356197,0.1507341619580984,0.761937954928726,0.9463395322673023,0.6873642071150243,-0.9729518485255539,0.6034098803065717,0.14210231602191925,0.06601607147604227,-0.14122880809009075,0.5003945212811232,-0.5262936144135892,0.736739132553339,0.7474657390266657,0.9781013899482787,-0.34956104308366776,-0.5918142599985003,0.5080393818207085,-0.9800461740233004,0.48073401488363743,0.23491069907322526,-0.7835195120424032,0.9335754015482962,0.4599471725523472,0.4451146647334099,-0.7790684942156076,0.13747676881030202,0.5662446892820299,-0.29469534987583756,-0.3842233163304627,0.2758867619559169,-0.5499269482679665,-0.9866039361804724,0.69212292926386,-0.2541468837298453,-0.4806795474141836,-0.7460099458694458,-0.0474432148039341,0.4974971548654139,0.9412058237940073,-0.3585293237119913,0.7976036439649761,-0.07121235597878695,0.5828386242501438,-0.05368347419425845,-0.2550491555593908,0.2276342292316258,-0.32959006587043405,0.050917630549520254,-0.919235288631171,0.5943246874958277,-0.20717261778190732,0.575494805816561,0.20600680774077773,0.5011540884152055,0.3596614641137421,-0.6752675008028746,-0.9910248154774308,0.17701394436880946,0.5450874930247664,0.4415449593216181,-0.37415290996432304,-0.37954556848853827,-0.29507128009572625,0.2723544519394636,0.8554439540021122,-0.9888162701390684,0.7199796056374907,0.6352558312937617,0.5471821106038988,0.6125835850834846,-0.8870778544805944,-0.6386604332365096,-0.8969626501202583,0.06495067570358515,0.4892766373232007,-0.10756513429805636,0.001350458711385727,-0.1630875626578927,-0.44203020399436355,-0.8872547796927392,-0.518925083335489,-0.8470646212808788,0.23478905949741602,-0.9656618242152035,0.3545364821329713,-0.5584776932373643,-0.8827586942352355,-0.6033860561437905,-0.19619874749332666,-0.6634610658511519,0.49062621407210827,-0.8464582208544016,0.47595249488949776,0.42279644031077623,0.4072944005019963,-0.1213913201354444,-0.14820528775453568,0.41836827201768756,-0.3003457044251263,-0.19036033283919096,0.22175839822739363,-0.21498824004083872,0.6920067770406604,-0.7144501376897097,-0.5044517195783556,-0.6687927492894232,0.2805801648646593,-0.23515140684321523,-0.22986562130972743,-0.38743642857298255,0.9702034625224769,0.5404179813340306,-0.22915966343134642,-0.9879557671956718,-0.6801442848518491,-0.0038963351398706436,-0.5522992084734142,-0.857310417573899,0.17869517905637622,0.6262856731191278,-0.11771268863230944,0.4496444989927113,-0.679655447602272,-0.07991300476714969,-0.5440607792697847,0.5109059112146497,-0.28304290352389216,0.7644170438870788,0.7954346402548254,0.42504659248515964,-0.14129471452906728,-0.570353873539716,-0.9093975098803639,-0.5687654041685164,-0.2058868957683444,0.5103299841284752,0.23512756219133735,-0.7811830444261432,0.5443819900974631,0.33048331178724766,-0.8040785305202007,0.5555595303885639,0.8828944154083729,0.10672485083341599,0.32503001764416695,-0.7288058651611209,0.20814997423440218,0.30243591824546456,0.4248557901009917,-0.49005316896364093,0.4526588246226311,0.6815034588798881,-0.17292383639141917,-0.47431974904611707,0.9495749515481293,0.4429382006637752,0.6851780139841139,-0.3010948309674859,-0.5102223032154143,-0.08999673509970307,0.9599477690644562,-0.8218077458441257,-0.6005634940229356,-0.9993935651145875,-0.7794232293963432,-0.6323445979505777,0.9630373916588724,-0.15761321410536766,-0.16923608165234327,-0.09196823695674539,-0.4647972257807851,0.4477310935035348,0.421001301612705,-0.1878601973876357,0.42670126538723707,0.8773405235260725,0.33138202829286456,0.8420682945288718,0.8891411148943007,0.6453805407509208,0.21814425429329276,0.9540929119102657,0.17473203968256712,-0.9962734021246433,-0.4866286632604897,0.8246651678346097,-0.7334913839586079,-0.46242042677477,-0.07765303691849113,0.6533698169514537,0.5197725128382444,0.33014638582244515,0.7269804440438747,-0.9657118376344442,-0.16690128250047565,0.15800309227779508,-0.4889579708687961,-0.10350429080426693,0.5724701727740467,0.05962166655808687,0.13099165633320808,0.025225211400538683,0.38563703931868076,0.360202731564641,-0.8906835140660405,-0.10436887806281447,0.677595030516386,-0.5858363918960094,0.9804923278279603,-0.0011670435778796673,0.16693519055843353,-0.2468501222319901,0.9539882107637823,-0.7876737592741847,-0.5944636696949601,0.9988580294884741,-0.7925711222924292,-0.16516186157241464,0.5700755552388728,0.7468866840936244,-0.4009838053025305,0.9321535578928888,0.9765806486830115,-0.7460912205278873,-0.9756508809514344,-0.8018564158119261,-0.17561307596042752,0.8004548428580165,-0.7139528803527355,0.8962007747031748,0.26337223406881094,0.4363427581265569,0.1332430806942284,0.3844738360494375,0.5437214206904173,-0.5574156930670142,0.42044603638350964,0.8948844205588102,0.6573612531647086,0.7062216410413384,-0.8867909382097423,-0.915799314621836,0.4537260811775923,0.2575149559415877,-0.4796070740558207,-0.08374791173264384,0.8138275276869535,0.7829810613766313,-0.6933471984229982,0.5294737326912582,0.4539637598209083,-0.038479918614029884,-0.7656723875552416,-0.6635745693929493,-0.35539464140310884,-0.6423162734135985,0.0029322667978703976,0.24659724021330476,-0.35130946803838015,0.01296260952949524,0.2621981888078153,0.013786665629595518,0.039388658944517374,-0.6905199666507542,-0.5530266310088336,0.1177535685710609,0.5062703001312912,-0.7607412501238286,0.8226372483186424,0.2233426757156849,-0.3485589437186718,-0.09372806223109365,0.5328734554350376,-0.754950035829097,-0.7842512698844075,-0.22786917071789503,0.3074518400244415,0.6507525471970439,-0.0037498027086257935,-0.5396268446929753,-0.008103212341666222,0.4690123228356242,-0.6428872253745794,0.60683598741889,-0.04222322581335902,0.9982978580519557,0.6658556256443262,0.014365593437105417,-0.7098281513899565,0.5685373307205737,-0.2047720393165946,-0.5798154198564589,-0.11743903625756502,0.8470265115611255,0.8004453210160136,-0.7651795358397067,0.4772151727229357,-0.07587297074496746,0.5803414406254888,-0.08667979435995221,-0.6279299715533853,0.964198081754148,-0.35083064483478665,-0.9017988331615925,-0.06832676194608212,-0.7831161124631763,-0.1478513963520527,-0.5144143346697092,-0.2501454632729292,-0.5336257629096508,-0.8084125984460115,-0.32643943931907415,-0.010319272987544537,0.6737920707091689,0.18204447720199823,-0.31172684812918305,-0.33398912008851767,-0.4133060583844781,0.18316087825223804,-0.4964152774773538,-0.4822153514251113,-0.3709827931597829,-0.9517765915952623,0.8407078203745186,0.48482231609523296,0.36074063181877136,0.32409744802862406,0.4239671709947288,0.9742716322652996,0.8935049045830965,0.4140111613087356,0.382220511790365,0.4722308455966413,-0.14353035390377045,-0.20113222301006317,-0.8935247249901295,0.7035913988947868,0.5724463686347008,-0.9688930446282029,-0.32023155642673373,0.7804837776347995,0.26362372003495693,0.4350197925232351,0.7563875331543386,0.9113293373957276,-0.04758849320933223,0.6816392606124282,0.7131823133677244,0.01678800815716386,-0.47080125100910664,0.47121712379157543,-0.6159447892569005,-0.3684023912064731,-0.48793126875534654,0.29257862037047744,0.609425388276577,0.2865756149403751,-0.11644129641354084,-0.695959575008601,-0.014412576332688332,-0.7676659752614796,0.8873838107101619,0.3951353309676051,-0.6473113391548395,0.2933749887160957,0.6717287232168019,-0.3818182172253728,0.06074040289968252,-0.3475933410227299,-0.6936706551350653,0.48947604931890965,-0.0009463340975344181,0.749250824097544,-0.32115949876606464,-0.3503386555239558,0.5714038489386439,0.8528223135508597,-0.3845757865346968,-0.3125620917417109,-0.14717362355440855,0.5706251179799438,0.41245922166854143,-0.9777036570012569,0.842207979876548,0.7175577636808157,0.6738746929913759,-0.9736608387902379,-0.20547134149819613,0.575537804979831,0.09982631029561162,0.03606986813247204,-0.8013078728690743,-0.0012431377544999123,-0.49738973937928677,0.03058485919609666,-0.7831885241903365,-0.9487864659167826,-0.9036220456473529,0.21847265027463436,-0.24569009989500046,0.7292260676622391,-0.9169969256035984,-0.6906905323266983,0.8852124577388167,0.5567368096671999,0.7501438367180526,-0.8039547391235828,0.3710441277362406,0.6944593680091202,-0.692601827904582,0.41961458744481206,0.08168742945417762,-0.48630288103595376,-0.9768311325460672,0.24338764837011695,-0.6175725967623293,-0.702920064330101,0.30206408025696874,0.8699922296218574,-0.9322318839840591,0.7654169755987823,0.44454457238316536,0.45002706488594413,0.43781260680407286,-0.060028187930583954,-0.203018581494689,-0.07470803707838058,-0.4788642222993076,-0.33599743945524096,-0.6470622443594038,0.7015441204421222,-0.5857795104384422,0.35859710816293955,-0.8988324427045882,0.1393905272707343,0.6392603968270123,-0.7490111268125474,0.3165842043235898,-0.27283307118341327,-0.5619674068875611,0.6934545249678195,0.3807213488034904,-0.9259052886627614,-0.7273007472977042,0.14433641079813242,0.14604840660467744,0.6983727649785578,-0.03250766126438975,0.07138543203473091,-0.9984718975611031,0.8037847625091672,-0.10585590545088053,-0.9822067972272635,0.8173985034227371,-0.707283535040915,0.8895400664769113,0.6582999625243247,-0.9657696080394089,-0.3583486694842577,0.18913287669420242,0.5212077405303717,-0.9172529820352793,-0.15940982615575194,-0.402754832059145,0.6660027750767767,-0.9495462174527347,0.4998123333789408,-0.5789672797545791,-0.7110967445187271,0.9683130411431193,-0.7096887934021652,0.1626234045252204,-0.06812715344130993,0.08710346603766084,0.3591953841969371,-0.7248047720640898,0.16050353413447738,0.4708793153986335,0.32546291779726744,0.6027929536066949,0.1158796432428062,0.237910651601851,0.08144069090485573,-0.3510542972944677,0.9709164882078767,0.4647848466411233,-0.36698796274140477,0.34075157810002565,0.3945513544604182,0.3671707287430763,0.5342859127558768,0.44256345462054014,0.2603904139250517,0.13607369270175695,0.3367231315933168,0.4635140663012862,-0.08347065141424537,0.5159491682425141,-0.5925474618561566,0.8668714612722397,0.9967170036397874,0.8425539736635983,0.8043324556201696,0.793512808624655,-0.9980056532658637,-0.8552970150485635,0.5353412763215601,0.10988018894568086,-0.7577866530045867,-0.5622306270524859,0.7073659934103489,0.3398142345249653,0.3311548689380288,0.4934455119073391,-0.3425244940444827,-0.5744134518317878,0.5067018549889326,0.42554867174476385,0.25510117318481207,-0.43933331314474344,0.14767776243388653,0.6895979167893529,-0.7472538496367633,-0.5579495634883642,0.555125349201262,-0.45519030652940273,-0.9260196262039244,-0.24608868872746825,0.06440094904974103,0.19635588582605124,-0.325508295558393,0.8988950080238283,0.7264625569805503,-0.2247514226473868,-0.07349983090534806,-0.7232324248179793,0.10033563198521733,-0.9016987029463053,0.08050393359735608,-0.8022000803612173,-0.6085436940193176,0.13493910850957036,0.42395765520632267,0.07865137234330177,0.6668129917234182,0.6418049181811512,-0.6751049365848303,-0.533800607547164,-0.10843801032751799,0.17678507696837187,0.06218862906098366,-0.022970071528106928,0.6847497308626771,-0.5500434618443251,-0.972881346475333,-0.15448947343975306,0.4697136986069381,-0.32405184023082256,0.9639038904570043,-0.46833750838413835,0.32630386808887124,-0.05097245145589113,0.09187833592295647,-0.9943100987002254,0.019247424323111773,0.8583912341855466,-0.3385857446119189,0.04272885713726282,-0.45457179518416524,-0.7043318888172507,-0.4377681352198124,0.8485797317698598,0.45965958619490266,-0.3541517900303006,-0.3524290737695992,0.9910122686997056,0.37034888193011284,-0.47326746955513954,-0.012293565087020397,0.07383135985583067,0.6692029344849288,-0.5938637289218605,-0.5170902530662715,-0.7432579006999731,0.2504978901706636,0.5199186345562339,0.08235214184969664,0.9779200297780335,-0.4832936548627913,-0.4741343092173338,0.8172020157799125,0.14443555008620024,-0.467631577514112,-0.14867308968678117,-0.039538574405014515,0.0017823944799602032,-0.08329646149650216,-0.006647684145718813,0.5594170461408794,0.677398128900677,-0.6107115764170885,-0.08156555891036987,0.45936955977231264,0.18662737542763352,0.32557656057178974,0.07914185104891658,-0.8411510880105197,0.7573547665961087,0.673516490496695,0.20899979025125504,0.7143210913054645,-0.367191250436008,-0.6303447019308805,-0.16849388787522912,-0.29694658797234297,-0.5089042158797383,-0.48093398194760084,0.5969613837078214,-0.9337389301508665,-0.13163358764722943,-0.67363500315696,-0.6484293946996331,-0.8667855369858444,-0.8793027852661908,0.9671432464383543,-0.3094122144393623,0.7039533811621368,0.18482058122754097,-0.818959916010499,-0.7372238798998296,-0.6807229747064412,0.6568935555405915,-0.00808417098596692,-0.5233501582406461,-0.4366773758083582,-0.0850964323617518,-0.6617914182133973,-0.37599859945476055,-0.1928265686146915,-0.8003911143168807,0.5587112875655293,-0.06642088340595365,0.20594003051519394,0.5817631357349455,0.1868205312639475,0.5317675522528589,-0.39284585509449244,-0.06095596728846431,-0.23685846524313092,-0.6546288733370602,-0.8646365781314671,-0.339159581810236,-0.9673895537853241,-0.5005193948745728,-0.13631204701960087,-0.21937593538314104,-0.4712566905654967,-0.46669523138552904,-0.29163024947047234,0.9937705411575735,-0.18036495335400105,-0.8473924193531275,0.512360904365778,0.18853054149076343,-0.13985569635406137,-0.9274727716110647,0.10554470587521791,-0.9401962016709149,0.6205472173169255,0.0006423755548894405,-0.3211757051758468,0.0822542398236692,0.9276599632576108,0.05232185497879982,0.5297210048884153,-0.21816770732402802,-0.857275621034205,-0.46571468003094196,0.16219509625807405,0.12819851655513048,0.7988547878339887,0.8437135834246874,0.4932265365496278,0.6055497480556369,0.7040069797076285,0.2773411120288074,-0.6602170318365097,0.5030833757482469,-0.03223936725407839,-0.6027083792723715,0.2903599855490029,0.5632912116125226,-0.7364839478395879,-0.6396386474370956,0.09517641644924879,0.39828055165708065,-0.6618582056835294,0.9227930186316371,0.43286021891981363,0.9941431772895157,0.25110705150291324,0.11381531739607453,0.6833625491708517,-0.6739034848287702,-0.6712285117246211,-0.984630212187767,-0.18957220949232578,-0.5128473248332739,0.007924018893390894,-0.16735917562618852,-0.2884208159521222,-0.78411849681288,-0.714475798420608,0.8574089170433581,-0.6059941463172436,0.386291631963104,-0.7559947804547846,-0.44845197489485145,0.2942689834162593,0.7248859233222902,-0.8217409304343164,-0.20590194780379534,0.8589965025894344,-0.6318376674316823,-0.09966336749494076,0.2524415347725153,0.6182867125608027,-0.7622938458807766,-0.7911429135128856,-0.12497869646176696,-0.8838744382373989,-0.7620616275817156,-0.021223085932433605,-0.9820959675125778,0.10932322591543198,0.12114742584526539,0.9001497193239629,0.7965985350310802,-0.1887762281112373,-0.6402656058780849,-0.49835835490375757,-0.08054302399978042,0.5741337188519537,0.5912455897778273,0.817142388317734,0.4617423410527408,-0.3860234413295984,-0.20299989031627774,-0.9014575704932213,0.7362835630774498,-0.017265059053897858,0.5954190217889845,0.11718318797647953,0.18173842038959265,-0.7867589551024139,0.9098099293187261,-0.24931438360363245,-0.05556235508993268,-0.27209216030314565,-0.9558905479498208,-0.6828760541975498,-0.3278935314156115,-0.5825715162791312,0.5053513366729021,-0.5059796310961246,0.08976813079789281,-0.15225621731951833,-0.366949416231364,0.797318363096565,-0.7062227292917669,0.6538304118439555,0.09195228153839707,-0.46637521451339126,0.7924372204579413,-0.0644809459336102,-0.8707306077703834,0.19264213647693396,-0.6682364162988961,-0.10751258581876755,0.32380192168056965,0.1849569147452712,0.5843172706663609,-0.1557596269994974,0.7291396018117666,-0.5958646303042769,0.29741337336599827,0.6110136737115681,0.7428703117184341,0.17577468417584896,-0.4219985422678292,-0.704007457010448,-0.41429385589435697,-0.49128890549764037,0.21265212260186672,0.6870604292489588,0.971071750856936,-0.879070058465004,-0.9305610293522477,0.45783914159983397,-0.811096541583538,0.5555449756793678,0.32034176541492343,0.5098195713944733,-0.4450451899319887,-0.469512359239161,0.5716959042474627,0.7744437083601952,-0.3384044608101249,-0.5842057410627604,0.7125366926193237,0.9002369726076722,-0.027122017461806536,0.382043213583529,-0.5049263876862824,0.822209813632071,0.14993333397433162,-0.030730945523828268,-0.4595298352651298,-0.1366363326087594,-0.4010979011654854,0.21623944817110896,0.20071058766916394,0.09864222630858421,0.016923588700592518,-0.21532678790390491,0.9792955759912729,0.8356645703315735,0.5947721092961729,0.5162553773261607,-0.833239478059113,-0.9339625188149512,0.5975608718581498,-0.10922604473307729,-0.18223632732406259,0.6235942021012306,-0.6035663816146553,-0.48100842209532857,-0.786055592354387,-0.6367649375461042,-0.6055106655694544,-0.5358633422292769,0.279089686460793,0.8744231276214123,0.3997395574115217,-0.07866057800129056,-0.7985486895777285,-0.8953123115934432,0.8589256908744574,0.46565886586904526,0.7418289952911437,-0.9818483176641166,-0.04094718350097537,-0.12648898689076304,0.934831771068275,-0.2180008920840919,-0.2848581047728658,-0.31756420573219657,-0.916701780166477,0.23250036919489503,-0.6539310328662395,0.640887669287622,-0.780841208063066,0.5299301380291581,0.5848542391322553,-0.6993502425029874,0.8498466447927058,-0.8708835332654417,0.27825984731316566,0.5362220774404705,-0.6157744745723903,0.2720600110478699,-0.15251158690080047,0.5928875640965998,0.2488485057838261,0.8148202588781714,-0.6430204669013619,0.06586476601660252,-0.027612969744950533,-0.5057269316166639,-0.6862512640655041,0.6820250605233014,-0.5817175535485148,-0.5028364760801196,0.31891807774081826,-0.013038825243711472,0.5111602200195193,-0.8075466402806342,-0.5659154620952904,0.6938265580683947,-0.17671962128952146,0.12089001899585128,0.8681318084709346,-0.20976518280804157,0.627102131024003,0.37325305212289095,-0.9722465346567333,0.8794757137075067,-0.20378090487793088,0.18446256034076214,0.6874493509531021,-0.20931057492271066,-0.8155434620566666,-0.5233044833876193,-0.9069638317450881,0.9872459443286061,0.76350257685408,0.4493655073456466,0.6743121300823987,0.3503776015713811,-0.2560017774812877,0.6137438202276826,-0.5168021977879107,0.8613923257216811,0.8441309365443885,0.7355847354047,0.5538112306967378,-0.9819133160635829,-0.4951700079254806,0.7072242642752826,-0.9148291144520044,-0.5475569893606007,0.6111300918273628,-0.7833419758826494,0.14937133016064763,-0.5889183818362653,-0.37567887594923377,0.5885073076933622,-0.9472553143277764,0.3249464835971594,0.663971645757556,-0.4498594128526747,0.3537419908680022,-0.3241374222561717,0.14067233353853226,-0.5880956421606243,0.4061775994487107,0.6338708777911961,-0.9182850541546941,0.9488234501332045,-0.5184405320324004,-0.8796347752213478,0.9189878860488534,-0.6775391288101673,-0.5529187214560807,0.7808620617724955,0.7246040431782603,-0.0508560249581933,0.4039355991408229,0.7287608981132507,0.742060596588999,-0.14743831055238843,0.6689040591008961,-0.5825848211534321,0.39731444139033556,-0.6603560531511903,-0.6962725729681551,-0.6707264385186136,-0.1360316057689488,0.5664789513684809,0.3172064395621419,-0.39952624030411243,0.572297278791666,0.2589102862402797,-0.8082088697701693,-0.1077652107924223,0.9648471884429455,-0.6931452509015799,-0.4832636988721788,-0.046012771781533957,-0.33322086557745934,-0.7508402224630117,-0.457868006080389,0.07826020894572139,-0.9906801381148398,-0.8366703330539167,-0.760039213579148,-0.373154834844172,0.18127531046047807,-0.7878537205979228,-0.3136370745487511,0.043547571171075106,0.5416238764300942,-0.1196358441375196,0.34600120410323143,-0.40060946345329285,0.8580185081809759,-0.5431824051775038,-0.5874662618152797,-0.24786260165274143,-0.31708104722201824,0.5366248316131532,0.9254695037379861,0.2366597610525787,-0.030378981959074736,-0.8291072188876569,0.9983546589501202,0.17496579652652144,0.22435490833595395,-0.6412894302047789,0.9601814979687333,-0.7176818195730448,0.5782805113121867,0.5846831575036049,0.3246040027588606,0.3531644940376282,-0.8723172573372722,-0.9165161391720176,0.3813673756085336,-0.42147697834298015,0.875625004991889,0.7713871635496616,0.7088226471096277,-0.15788375260308385,-0.11259527178481221,0.6277026757597923,-0.718032511882484,-0.7184975873678923,-0.2237183079123497,-0.4617822808213532,-0.38375225150957704,-0.2089530793018639,-0.6491925986483693,0.20984990242868662,0.3039132719859481,-0.583577654324472,-0.7123117223381996,0.8519002739340067,-0.9832736640237272,-0.1841083918698132,-0.9682987611740828,-0.975014312658459,0.4099506475031376,-0.005740083754062653,-0.9689823905937374,-0.9844424221664667,-0.41114181047305465,0.5121893659234047,-0.6159631558693945,-0.6158536071889102,-0.925416782964021,0.6078573735430837,0.19608345767483115,0.9699206864461303,0.9305712790228426,0.8974687065929174,-0.991746140178293,-0.4128797915764153,0.6498357183299959,-0.33160468516871333,0.16269587585702538,-0.17586034163832664,0.565438135061413,-0.8995748753659427,0.23441491136327386,0.20122014032676816,-0.2069697785191238,0.13854591874405742,0.8860261072404683,0.2486722799949348,0.24008608423173428,-0.5516840340569615,0.0958502166904509,0.8002727241255343,-0.5856955833733082,-0.02027952717617154,0.3530537663027644,0.7323266780003905,0.4290186585858464,-0.4658797816373408,0.35622918512672186,0.23722562566399574,0.19871770776808262,-0.12485748715698719,-0.26050667790696025,-0.6692726160399616,-0.5873741158284247,0.07843589363619685,-0.9772602464072406,0.5024230754934251,-0.1479678270407021,0.5041893245652318,0.764319144655019,0.751139160245657,-0.4247492700815201,0.7851921957917511,-0.15928793884813786,-0.4123711669817567,-0.6479129577055573,0.7022951538674533,0.1692456090822816,0.04464345844462514,-0.8102587554603815,-0.5606003301218152,0.37914264341816306,-0.2664242424070835,0.14537467900663614,0.16423884686082602,-0.3910956420004368,0.775284050963819,0.9068480273708701,0.6501110601238906,-0.006321468390524387,-0.04238973744213581,-0.6209741178900003,-0.8336330484598875,0.5345835774205625,-0.49286545906215906,0.6396439089439809,-0.6071002348326147,0.3612420381978154,0.38060507364571095,0.6923612444661558,0.6068045957945287,-0.2723442818969488,-0.4543041060678661,-0.05252634873613715,-0.8504003020934761,0.02357433782890439,-0.43886154517531395,0.8057413282804191,-0.7161525851115584,-0.4333107494749129,-0.8050622404552996,-0.6800013710744679,-0.7986401044763625,-0.43576751509681344,0.7109227008186281,0.7221897495910525,0.10804848233237863,0.005055073648691177,-0.9725616532377899,0.7317288410849869,0.11524366214871407,-0.4369151759892702,0.8731813323684037,-0.9415388372726738,-0.8667890015058219,-0.4388452786952257,0.27491614129394293,0.4800388589501381,-0.6785725993104279,-0.7064541978761554,0.2825778997503221,-0.0834594457410276,0.44950502924621105,-0.08924615057185292,0.01712428266182542,0.6058016638271511,-0.2969959620386362,-0.7963017546571791,0.9575554169714451,0.6836080304346979,0.36678904900327325,0.023220162373036146,-0.7458130270242691,0.08068351773545146,-0.9510020334273577,0.5223686085082591,0.1948213865980506,-0.8824584279209375,0.6534049152396619,0.5313043622300029,-0.08492965623736382,-0.2171531803905964,0.4027128415182233,-0.4562903819605708,-0.47891890862956643,0.8874513604678214,0.09388191439211369,0.16125563159585,-0.06690264167264104,0.2534479177556932,0.7991913356818259,0.5076008820906281,0.9968150495551527,-0.34138584043830633,-0.6488280482590199,0.8847603229805827,-0.4362305924296379,0.03370746923610568,-0.8218951257877052,-0.7953429506160319,0.5953951510600746,0.6547737647779286,-0.21033535292372108,0.2741726469248533,-0.5484703653492033,0.4106668741442263,-0.33352145506069064,0.07255173614248633,0.22940436704084277,0.07424363726750016,0.6502149077132344,-0.13091087667271495,0.9406699002720416,0.620763604529202,-0.25128481537103653,-0.634012512397021,-0.28950275061652064,-0.7119257263839245,0.09547050297260284,0.7832103502005339,0.22086186287924647,-0.5538915614597499,0.621690649073571,0.38947803108021617,0.7883092272095382,0.5295878788456321,-0.7985595213249326,0.524124703835696,-0.26275967387482524,0.6344024399295449,0.0690199569799006,-0.6212410381995142,0.6673453529365361,-0.7368576372973621,0.20498507283627987,0.8361326227895916,-0.12220921786502004,0.670216684229672,0.18876780942082405,-0.7136844429187477,-0.9263495723716915,0.7531631425954401,-0.09393934207037091,0.807586238719523,-0.7981046200729907,0.8972166809253395,-0.19900844851508737,-0.1685052029788494,0.9890918429009616,-0.7672046083025634,0.6515379599295557,0.6651974078267813,0.21883374359458685,-0.9868602245114744,0.30330181773751974,0.45871831430122256,0.3047356978058815,-0.7728993576020002,0.8214078666642308,-0.4641390875913203,0.7094390825368464,0.22722024656832218,0.2611718885600567,0.19115142617374659,0.026629753410816193,-0.5107326447032392,-0.32101454120129347,0.5078676347620785,0.7978791054338217,0.5727618844248354,-0.12841435987502337,-0.6397639513015747,0.3253179178573191,0.37153656175360084,0.3423923528753221,-0.8721290901303291,-0.7631977265700698,-0.844604333397001,0.9583206064999104,-0.6225507981143892,0.14147203182801604,0.2318404302932322,0.08284223498776555,0.7650215718895197,-0.6614674194715917,-0.4788234937004745,0.7769337873905897,0.7179457102902234,-0.2748635709285736,0.3129101116210222,-0.12799802608788013,-0.6376748331822455,-0.1275029736571014,-0.3467351384460926,-0.9232507948763669,-0.7385403062216938,-0.5929929511621594,0.03632515063509345,-0.20822734385728836,-0.5290457708761096,-0.2901337263174355,0.17214721394702792,-0.441619785502553,0.6843413207679987,0.2799455774948001,0.619145586155355,0.46606695745140314,0.9249047972261906,-0.7409847350791097,-0.8110327241010964,-0.7664387463591993,0.4060711292549968,0.2636127430014312,0.36523156333714724,0.12522257678210735,0.8755071912892163,-0.5066180597059429,-0.8367871399968863,0.08667359501123428,-0.8479776377789676,-0.9877304555848241,0.78855509031564,0.6407056720927358,0.22444216161966324,-0.08611461287364364,-0.3611962744034827,0.9596341145224869,0.3664476019330323,0.4099601963534951,-0.770919555798173,-0.6362770665436983,0.03447642223909497,-0.9920810111798346,-0.16727406065911055,0.9899015258997679,0.04692827025428414,0.9252118114382029,0.6638791323639452,0.7297917357645929,-0.31470913998782635,0.2548334584571421,-0.7714773318730295,-0.1772805042564869,-0.2536702938377857,-0.6615181150846183,-0.7817984949797392,-0.45493441773578525,-0.8983045504428446,0.5451274155639112,0.7205942887812853,0.7546104965731502,-0.5178926084190607,0.7251245873048902,-0.5231030434370041,-0.9918875796720386,-0.29808265157043934,-0.22775017656385899,0.995826895814389,0.3134235846810043,-0.23179355869069695,-0.10784970642998815,-0.8861490534618497,0.8159696198999882,0.9691733489744365,-0.7966775596141815,0.6354842958971858,0.4163387888111174,0.1960337720811367,0.6583018349483609,-0.3935666591860354,-0.4553392478264868,0.9835106395184994,-0.24949678732082248,-0.03258688421919942,-0.27353264298290014,-0.21570537891238928,-0.6660678428597748,-0.034366986714303493,-0.615582765545696,0.5422462914139032,-0.5463010678067803,-0.18610568810254335,0.3283577342517674,-0.04438061872497201,0.02854073792695999,0.021934740711003542,0.784240691922605,0.8167618294246495,0.1670782002620399,-0.8073100731708109,0.1809495398774743,0.167215327732265,0.6545981336385012,-0.0030045686289668083,-0.8699932340532541,0.129655996337533,-0.02506383042782545,-0.5513229081407189,-0.5538904191926122,-0.6415901123546064,-0.38852433720603585,0.9897168865427375,-0.8564449716359377,0.975359336938709,0.01736524049192667,-0.11366830347105861,0.1796599831432104,0.5359569825232029,0.98893514694646,0.9000406507402658,0.3669172930531204,0.6843317341990769,0.46585045708343387,0.8231095033697784,-0.07813194394111633,0.18850696086883545,0.4953802661038935,0.048648562747985125,-0.6294730352237821,-0.4294416066259146,-0.40781393414363265,0.7451106701046228,0.20476130535826087,0.6500408300198615,-0.5674326973967254,-0.31393598625436425,0.4122755485586822,-0.6600137557834387,-0.06200503371655941,0.4197882143780589,-0.6511083166114986,-0.501386514864862,0.12556089367717505,0.18562018126249313,-0.7226946479640901,-0.570041845086962,-0.2632841723971069,0.8992399438284338,0.9825014215894043,0.7902119653299451,0.689333438873291,-0.12184707075357437,-0.21508768713101745,-0.4403370334766805,0.799169400241226,-0.09411461837589741,-0.9254462397657335,0.6728768679313362,-0.2511253412812948,0.7983654695563018,0.41947880759835243,0.02465317538008094,0.1548020774498582,0.8533230577595532,-0.8773731859400868,-0.2788964412175119,-0.8449634849093854,-0.6543112127110362,-0.8223668341524899,-0.5968458419665694,0.5305104982107878,0.7074618930928409,-0.10757316602393985,0.3232632176950574,-0.2925974978134036,0.9101409083232284,-0.8243341185152531,-0.14683922892436385,0.36055783508345485,-0.5354969184845686,0.7210123366676271,-0.30060932971537113,0.7127186846919358,-0.8482610508799553,0.6550729325972497,-0.6752767763100564,0.22366231307387352,0.8478356637060642,-0.9513387284241617,-0.4320657514035702,0.9113006019033492,0.7358128731139004,0.5294042625464499,0.0903654401190579,-0.23116730712354183,0.14909989014267921,0.34021479729563,-0.8528773710131645,-0.8426259141415358,-0.294723367318511,-0.6047678580507636,0.9143651649355888,-0.5751335397362709,-0.7901831748895347,0.43068662844598293,-0.5868330197408795,-0.6849444014951587,0.7168642217293382,0.2077921866439283,-0.03478121571242809,0.5689100720919669,0.8625726392492652,-0.3422991745173931,0.11232751188799739,-0.5077056069858372,0.1772402268834412,0.33907540841028094,-0.254222156945616,-0.9737977697513998,0.7954439870081842,0.28778337920084596,0.35271355556324124,-0.3935274835675955,-0.985636773519218,-0.05248380033299327,-0.8481264333240688,0.2647372577339411,0.20121898455545306,0.47751286113634706,0.14657661132514477,-0.4931822679936886,0.48750174744054675,-0.06338017573580146,-0.16527974093332887,-0.4216277771629393,0.5099946954287589,-0.8269237084314227,0.40384890837594867,-0.6693803407251835,-0.5528951385058463,-0.5130065106786788,-0.5859530949965119,-0.8408242426812649,-0.91359439259395,0.2274747984483838,-0.40007629431784153,0.0828079991042614,-0.550897927954793,0.8761290786787868,-0.6297148955054581,0.8252429068088531,0.15609571849927306,-0.7112140185199678,0.6365710850805044,0.1336592030711472,0.1198549885302782,-0.9012221498414874,0.15642691310495138,0.6626177122816443,0.4871530341915786,-0.503877027425915,0.6325465189293027,-0.8100126311182976,-0.5655658980831504,0.5290183024480939,0.1096103535965085,0.06495063100010157,-0.7649925695732236,0.3755844454281032,0.5374565371312201,0.8004455016925931,-0.4147544954903424,0.3636394878849387,-0.7394633120857179,-0.27491426980122924,0.7673296215943992,0.7835275218822062,0.7583902208134532,0.8929519192315638,-0.39122826093807817,-0.8043715418316424,0.9857073691673577,-0.8813300710171461,0.9820421594195068,-0.42802200093865395,0.4320874083787203,0.7464608303271234,-0.654218087438494,-0.2706638635136187,-0.34748894767835736,-0.6226681307889521,0.6589706651866436,0.8565211412496865,0.8054737569764256,0.20017412910237908,0.964155638590455,0.09004891104996204,0.6390120079740882,0.9630636037327349,0.9707558932714164,0.8477211645804346,0.38737077126279473,0.9083275897428393,-0.02684271614998579,0.03868804033845663,0.007845943793654442,0.3354028034955263,-0.6219832049682736,0.45477646635845304,-0.7797198463231325,0.2331353179179132,0.40864343335852027,-0.6573501913808286,0.680607742164284,0.906179222278297,0.7449732427485287,-0.3813508921302855,-0.26016987953335047,-0.21719670481979847,-0.6068144757300615,-0.9785714219324291,-0.1391019681468606,-0.14109756890684366,0.6374459750950336,-0.9966992447152734,0.7033780533820391,-0.27377822948619723,0.920674363616854,-0.8272846755571663,-0.704372622538358,-0.9080390380695462,0.6366472137160599,0.6285039195790887,0.26340484665706754,-0.9322115201503038,-0.5188417597673833,-0.6806157235987484,0.39925028197467327,0.40381483593955636,0.3422108539380133,0.04184914845973253,0.1353588798083365,-0.18149643111974,0.5114081995561719,0.7018876867368817,0.06948617240414023,-0.2248346726410091,-0.015363822225481272,0.500728280749172,-0.3267332799732685,0.5784471654333174,-0.5630607549101114,0.04084076872095466,0.4038052442483604,-0.8451438085176051,-0.42391051398590207,0.5777920419350266,0.15067861881107092,-0.9831696534529328,-0.47422720212489367,0.44641935592517257,0.26702837366610765,-0.4911226909607649,-0.6490568686276674,0.04098702920600772,0.6562882796861231,-0.7003777697682381,-0.9318534093908966,-0.1163385477848351,0.6968961446546018,-0.4943765318021178,-0.07815278554335237,0.1759621207602322,-0.9389345184899867,-0.9139663586392999,0.8411167776212096,0.9992699190042913,0.9691812107339501,0.3785592559725046,0.28416577400639653,-0.2184326550923288,-0.13330531120300293,-0.7656029290519655,-0.29805043851956725,0.45994416903704405,0.9499632553197443,-0.33024686854332685,-0.5167760425247252,0.6936836368404329,-0.8001382192596793,0.044843957759439945,-0.8442012527957559,-0.3637146637775004,-0.46269086422398686,-0.11526220105588436,0.2140809972770512,0.9748621755279601,0.8637109766714275,0.3647971418686211,-0.9651749799959362,-0.24551068665459752,0.9164914241991937,0.2720957067795098,-0.9560287892818451,-0.9190041874535382,0.43473801761865616,-0.11702665267512202,0.9585382835939527,-0.55895069334656,-0.18072750745341182,-0.25085882749408484,0.5767663004808128,-0.9666771981865168,-0.20106698758900166,-0.1431868737563491,-0.47734753089025617,0.06056103529408574,-0.29824252612888813,-0.18029426923021674,-0.4852247592061758,0.4966444633901119,-0.22138554695993662,-0.6059798994101584,0.7420295504853129,0.4964297143742442,0.4798587285913527,0.6212219865992665,0.430148015730083,-0.18531107576563954,0.28874818701297045,-0.4672153419815004,0.259974189568311,-0.5386894633993506,0.4481723583303392,-0.3809880781918764,0.630251029971987,-0.203038914129138,-0.601534812245518,-0.1522883391007781,0.7749873218126595,-0.00013642385601997375,0.8328518578782678,-0.3334305202588439,0.9736117362044752,0.9919121544808149,-0.14350832300260663,0.3173743123188615,0.09076608810573816,0.14447932364419103,0.01963685778900981,0.9286132855340838,-0.6385176554322243,-0.09621220966801047,-0.5821686959825456,0.5911741619929671,0.430026785004884,-0.2178529119119048,0.5424417788162827,-0.6124641061760485,0.45317151490598917,0.623769617639482,0.23705562623217702,0.36299900943413377,0.2681846977211535,-0.5136579889804125,0.1392421117052436,0.802371263038367,-0.09859373141080141,-0.7460519932210445,-0.1133576207794249,-0.33271884359419346,-0.7304114741273224,-0.8111234339885414,0.4202207769267261,-0.8571011763997376,-0.8204058008268476,-0.5911092208698392,0.8523461609147489,-0.7265508840791881,0.02803119970485568,0.6510792514309287,0.6712795989587903,-0.4216613918542862,0.00188076077029109,-0.35978598054498434,-0.5476525281555951,-0.3959642010740936,0.13631152315065265,-0.9600759241729975,-0.5806881408207119,0.7722212392836809,-0.44371964083984494,-0.5298060001805425,-0.5428984463214874,0.007719372399151325,0.8122274349443614,0.524266954511404,0.8161161784082651,0.505172211676836,0.5620491979643703,-0.31605692813172936,0.13001035153865814,-0.826296204701066,-0.8016999764367938,-0.604102838318795,0.983549892436713,-0.7839956739917397,-0.12688437616452575,-0.45027805026620626,-0.07012440450489521,-0.30223223147913814,-0.5994877680204809,0.17238756688311696,-0.19567373441532254,0.4494096618145704,0.895508695859462,0.8296685027889907,0.7020303164608777,-0.21664122305810452,-0.6669189254753292,-0.5147680519148707,0.9636132642626762,-0.0032031629234552383,-0.11088898265734315,0.7414239472709596,-0.7368287309072912,0.27308977162465453,-0.47180174803361297,0.5537210204638541,-0.440684974193573,-0.37294329050928354,0.13397029042243958,0.8740112544037402,0.42707089660689235,-0.10785609157755971,0.23085546307265759,-0.043280597776174545,-0.44614951265975833,-0.7631715503521264,0.7729046479798853,-0.6875458508729935,-0.6506252675317228,0.3323656846769154,-0.9048096141777933,0.014712063129991293,-0.9700640211813152,0.8863390879705548,-0.7176011293195188,-0.12890094053000212,0.061175533570349216,0.25526871951296926,0.8097918541170657,0.8844187501817942,0.7368267863057554,0.13416973920539021,-0.8324766866862774,-0.27751654852181673,0.2094948561862111,0.22131108352914453,0.04727121302857995,-0.17780439788475633,-0.8302103285677731,-0.6374265495687723,0.2876067799516022,0.9736748421564698,0.37828861735761166,0.630893359426409,-0.5187825858592987,-0.6330443946644664,0.36914578825235367,-0.9576677191071212,-0.9768371065147221,0.04542187787592411,0.4065042599104345,-0.3055753284133971,-0.3650957206264138,-0.04804439703002572,-0.24246619315817952,-0.634118112269789,0.6759612280875444,-0.5065436968579888,0.6402437705546618,0.0396921350620687,-0.8489115526899695,0.7088016616180539,0.8282872261479497,0.05943552823737264,-0.7753138723783195,-0.8326375372707844,0.5284320185892284,-0.5492605227045715,-0.631573021877557,0.5865786713548005,0.8178778821602464,0.48967437352985144,0.40589619101956487,0.6037895544432104,-0.07712747389450669,0.20939974067732692,-0.21164536802098155,0.4557540584355593,-0.19721454847604036,-0.611469907220453,-0.11285545630380511,0.1646878281608224,-0.9006416527554393,-0.20186952129006386,-0.5401415294036269,-0.832768754567951,-0.0077325403690338135,0.0917496825568378,0.791660048533231,-0.6915119783952832,0.9969030753709376,-0.7118785921484232,0.26010536402463913,0.6689309077337384,-0.21563156740739942,-0.568679706659168,0.8468152801506221,-0.6881041894666851,0.8044741293415427,-0.1372660114429891,-0.44182783365249634,-0.891413580160588,-0.46586405392736197,0.056263871025294065,-0.632659612223506,0.9963511852547526,-0.8695082138292491,0.45141855860129,-0.1852347287349403,0.7800406566821039,0.13543275091797113,-0.8209464182145894,-0.7524438444525003,0.9226885158568621,0.23707511881366372,0.36503401724621654,0.8362084720283747,-0.3591417013667524,0.8383911573328078,-0.22484949743375182,0.43955914210528135,-0.4927652534097433,-0.7146001951768994,-0.42894440330564976,-0.22540101082995534,0.5693201078101993,0.6882325909100473,0.4902059342712164,0.6890525948256254,0.8332283995114267,-0.11095124902203679,-0.3300998955965042,-0.326571109239012,0.9860083772800863,0.8459054767154157,0.2283494002185762,0.60018608905375,0.5873123509809375,0.26640562573447824,-0.23359682317823172,0.9985193153843284,-0.31348080513998866,0.506347946356982,0.1369299995712936,0.10770893236622214,-0.4629385261796415,0.10468726418912411,-0.35471075400710106,0.5655994256958365,0.04557044059038162,-0.4185031461529434,0.0038416855968534946,-0.22573622921481729,-0.07977129146456718,-0.5172552666626871,-0.6908110943622887,0.07678743405267596,-0.056406550109386444,0.5814288975670934,-0.25849022390320897,-0.5769269452430308,-0.14381063869223,0.9039902230724692,0.7205945635214448,0.5008675646968186,0.2279225210659206,-0.11798057239502668,-0.09697387320920825,-0.6304245172068477,0.6974362600594759,-0.09319419600069523,-0.6195610850118101,0.3512304085306823,0.16064055589959025,-0.27757435431703925,-0.23942131316289306,0.7815784551203251,0.5014764573425055,-0.3879457479342818,0.03701707813888788,-0.661798064596951,0.03670874983072281,0.7364941858686507,0.674449413549155,0.6051664142869413,0.9959090040065348,-0.2531406059861183,0.9306659176945686,0.817737162578851,0.08104917500168085,0.9445581817999482,0.6990196593105793,-0.8168577686883509,-0.0769726112484932,0.2963938773609698,0.23826620494946837,0.6032480769790709,-0.8217553584836423,-0.444646324031055,0.5015661427751184,-0.17541888635605574,0.9977792501449585,0.848972056992352,0.02809573570266366,-0.5810128645971417,0.03644287073984742,-0.1316844061948359,0.3842926090583205,-0.22251203190535307,-0.014736691024154425,0.8074772912077606,0.058455376885831356,0.45569840678945184,0.7613257332704961,0.6611291207373142,0.6064678826369345,-0.31205280404537916,-0.3661217698827386,0.4848247324116528,0.6677541169337928,0.32473011454567313,0.2036970122717321,-0.976452820468694,0.5171739724464715,0.6143221911042929,0.6756063275970519,-0.6795943300239742,0.3039350025355816,-0.2851692955009639,-0.2398442910052836,-0.5328873111866415,0.3531460613012314,0.736709229182452,0.9899160293862224,0.6602983591146767,-0.4956107521429658,-0.20998044777661562,0.6516012279316783,0.20815483387559652,0.5491147781722248,0.24492236226797104,0.3893004138953984,-0.8083841847255826,-0.8968924628570676,-0.35646196408197284,-0.015354509465396404,-0.6921538556925952,-0.23654669523239136,-0.5174054438248277,-0.5086194621399045,0.43071829713881016,-0.49190768133848906,-0.7752983053214848,-0.5869788136333227,-0.08606588607653975,-0.0723821111023426,0.8873047204688191,0.141706305090338,0.6344892787747085,-0.9567665215581656,-0.4503279197961092,0.6835027188062668,0.29063685797154903,-0.32573048304766417,-0.33820157404989004,0.005397003144025803,-0.966629118192941,-0.38018214236944914,-0.01848849281668663,0.236099261790514,0.3005668306723237,-0.3341499581001699,-0.930080309510231,-0.08913587313145399,0.07895173225551844,-0.1327886637300253,-0.28647700557485223,-0.6667023557238281,-0.5471002249978483,0.21326034190133214,-0.6683329036459327,-0.9350701402872801,0.9443912575952709,-0.08787746587768197,-0.29950642539188266,0.5995083497837186,-0.9801540365442634,0.9877898558042943,0.003468906506896019,0.9122874015010893,0.11489637941122055,-0.7534528682008386,0.3752490784972906,-0.2827318040654063,-0.40815862733870745,0.20699089067056775,0.44719417998567224,0.9333983440883458,-0.5565555123612285,0.31221245555207133,0.8087358865886927,-0.620991500094533,0.6351552070118487,0.9158898554742336,0.13041510665789247,0.8086053375154734,-0.5912390407174826,-0.0921933320350945,-0.49474809831008315,0.5868080053478479,0.6995863416232169,0.010168458335101604,-0.6105798650532961,-0.35986435040831566,-0.5610514343716204,-0.4797207578085363,-0.9827962964773178,0.8921739724464715,0.43875041604042053,0.7011006572283804,0.8790744934231043,0.8357342630624771,0.7819894351996481,-0.7092777150683105,0.4632123284973204,0.5032468354329467,-0.2239533825777471,-0.7542449021711946,0.32957528717815876,-0.5140977553091943,-0.780107188038528,0.5809237281791866,0.014815913513302803,0.8619867782108486,0.019234425853937864,-0.4178774580359459,0.7470344929024577,-0.15981097286567092,-0.24225403321906924,0.31589449383318424,0.9550901409238577,0.14078556513413787,0.512692725751549,0.9475691812112927,-0.6913381600752473,0.05045353667810559,0.8571238908916712,0.6094402414746583,-0.9921353147365153,0.3254253505729139,0.42552483920007944,-0.7019327408634126,0.41729601938277483,0.9947522985748947,-0.645900540985167,-0.005316814407706261,0.23268470400944352,-0.9531207289546728,0.5910504614003003,-0.2784788799472153,0.9313061782158911,0.009276079945266247,0.3956678435206413,-0.14575534220784903,-0.7844372247345746,0.5051437341608107,0.9035053350962698,-0.8146623438224196,-0.11880367156118155,-0.29041200038045645,-0.7107918011024594,-0.1385243870317936,-0.34296351578086615,-0.5725905750878155,0.6067060111090541,0.24608765542507172,-0.6710860352031887,-0.6208305642940104,-0.4517024499364197,-0.6122349919751287,0.6566916881129146,-0.5471513830125332,0.437309208791703,-0.22454353794455528,0.8394806189462543,-0.41787883499637246,-0.14371577790006995,0.1015313882380724,-0.6135617713443935,0.15843351697549224,-0.5747607005760074,-0.25376730086281896,-0.7191809299401939,-0.8484439891763031,-0.029812450520694256,0.34815913205966353,-0.2247926383279264,0.008968510199338198,0.5872481344267726,0.09714951645582914,-0.8314755968749523,-0.5573332393541932,-0.16382442461326718,0.7978726653382182,0.17174264276400208,0.7342948224395514,0.6297531398013234,-0.706047217361629,0.601448368281126,-0.44546576123684645,0.7296776664443314,-0.006321688182651997,0.12457143189385533,0.1404200680553913,-0.835009113419801,-0.5737800700590014,0.4715140047483146,0.8262296696193516,-0.12085245689377189,0.11479775747284293,-0.46834094915539026,0.2532027140259743,0.470464410725981,-0.8110928465612233,-0.27760312985628843,-0.4620741941034794,-0.28469272144138813,-0.7381658344529569,0.01741092372685671,0.7447191602550447,0.061248818412423134,0.6503753601573408,-0.5334500758908689,0.2739721732214093,0.28733200673013926,0.37028253776952624,-0.5150120663456619,-0.5321186953224242,0.06869576079770923,0.7520278571173549,-0.8890962884761393,-0.4433672479353845,0.5761383231729269,0.823986888397485,-0.043739621527493,0.9420043588615954,-0.290132119320333,-0.15990391233935952,0.202861865516752,0.8667845921590924,0.7731554303318262,-0.32543534599244595,0.7592248800210655,-0.2510262802243233,0.14904811652377248,-0.26875219214707613,0.9242657087743282,0.08920653769746423,-0.3106688470579684,0.8338009361177683,0.1783363684080541,-0.37500190967693925,0.4909509252756834,-0.16853569680824876,-0.5014938204549253,0.10723390569910407,0.8905523233115673,-0.8542967764660716,0.04855768196284771,0.885019981302321,0.13867667550221086,-0.3854995360597968,-0.7432847945019603,0.6485732747241855,-0.502555975690484,0.26143963960930705,-0.8982569687068462,-0.607074324041605,0.08181472588330507,0.9136750637553632,0.4150712466798723,0.6291102804243565,-0.6143176145851612,-0.5994508978910744,0.541277049575001,-0.9567028735764325,-0.8188697136938572,0.4261740008369088,0.5612615388818085,0.9019273137673736,0.3550322549417615,-0.27736091427505016,-0.7060733241960406,-0.5317618772387505,0.00609551090747118,-0.2677093376405537,-0.41400256799533963,-0.43377801310271025,0.9481468019075692,0.49169609881937504,-0.15570085681974888,-0.7438964070752263,0.2868231642059982,-0.6252796994522214,-0.4625089969485998,-0.352349647320807,0.5693728565238416,-0.8046782268211246,-0.7730438690632582,0.20054141711443663,-0.8557042186148465,0.7451940746977925,0.009347706567496061,-0.9580110656097531,0.44984325719997287,-0.39827443612739444,0.8645106586627662,0.3093121047131717,0.6210702690295875,-0.4781998824328184,0.2230592966079712,-0.28723094053566456,0.036322059109807014,0.49080025497823954,0.5902358777821064,-0.7732090060599148,0.8406196595169604,-0.337773360311985,-0.43094968935474753,0.131788763217628,0.01717383787035942,-0.8037530244328082,0.5010073352605104,-0.9375571068376303,0.44003965612500906,0.30312745831906796,0.7295382125303149,0.49810262536630034,0.4575219671241939,0.062373341992497444,-0.5485294372774661,-0.6659182221628726,-0.4209450860507786,-0.3299400466494262,-0.7835329249501228,0.8814355377107859,0.842545002233237,0.2869673273526132,-0.9228986389935017,-0.5565718319267035,-0.4722981480881572,0.9756263117305934,0.08833148563280702,-0.9110243786126375,-0.4238171959295869,-0.35757491551339626,-0.2598439110442996,0.19808398745954037,0.28389157308265567,-0.8926095776259899,-0.8884051507338881,-0.8190330676734447,0.7515431409701705,-0.14020248549059033,0.7804158171638846,0.898549088742584,0.7020071032457054,-0.09265161957591772,0.6822161106392741,0.36146576376631856,0.8452077554538846,0.44002644903957844,0.6158024277538061,-0.06594153540208936,0.7613818245008588,-0.128391039557755,0.24659271351993084,-0.8253900692798197,0.32658379850909114,-0.475916865747422,0.5207543252035975,-0.9521406330168247,0.9180647055618465,-0.23792121559381485,0.23392758704721928,-0.671535330824554,-0.4018734102137387,0.8242870611138642,0.3879619399085641,0.5584109541960061,0.9547920729964972,0.9121525827795267,0.9493171665817499,0.42782305693253875,0.12906340369954705,-0.5806720210239291,0.2558849467895925,0.1909003988839686,0.9568322119303048,0.5049001574516296,0.22913731448352337,-0.2608844321221113,0.8466752199456096,-0.21136708138510585,-0.8420603177510202,-0.2473955051973462,-0.9371787048876286,-0.5031934562139213,-0.09325234452262521,-0.35570640582591295,-0.6171322767622769,-0.5250074355863035,-0.8943748748861253,-0.7900486830621958,-0.8751666625030339,-0.9184956639073789,-0.23661700449883938,-0.8007288137450814,-0.8782754056155682,0.9907305021770298,-0.30149521864950657,0.22741918312385678,-0.02733124839141965,-0.15950696170330048,0.6642255266197026,-0.5037196176126599,-0.9917990188114345,-0.1296278308145702,-0.06359102809801698,0.28938984544947743,0.560443826019764,-0.19123003259301186,0.3552002962678671,-0.7144863698631525,0.5041409702971578,0.20198533684015274,-0.5112535003572702,0.4876150223426521,-0.3175356378778815,-0.0004520942457020283,-0.47164754988625646,0.10020743403583765,-0.45509866811335087,0.977239849511534,0.3075902317650616,0.48341645998880267,-0.07917149877175689,0.765571101102978,0.753502856940031,-0.07126672146841884,0.07539662066847086,-0.9438617951236665,-0.5606243605725467,0.6288415431044996,0.4869733303785324,0.7663317951373756,0.7531299591064453,-0.7106731701642275,0.5510625136084855,0.12032925337553024,-0.5061217709444463,-0.24605097249150276,0.4523040484637022,-0.08902349788695574,-0.6243928680196404,-0.8488866239786148,-0.17866438766941428,0.010695003438740969,-0.7081484920345247,-0.9587258277460933,-0.08063054131343961,-0.49408325692638755,0.8052855157293379,-0.4991923342458904,0.8456871351227164,-0.5053516132757068,-0.22380212461575866,0.09091572323814034,-0.5518463482148945,-0.8419804517179728,0.40001337323337793,-0.3651622189208865,0.18470882903784513,-0.3506233668886125,-0.43715709540992975,-0.41282319091260433,-0.8569437158294022,-0.8056614683009684,-0.7458000192418694,0.1796356695704162,0.8373289741575718,-0.11849635280668736,0.321122030261904,0.6676626265980303,-0.16868815571069717,0.5340396403335035,-0.1317527098581195,0.880124936811626,-0.4279192709363997,0.2473952416330576,0.9107257635332644,0.06389062013477087,0.5154668879695237,-0.36391968466341496,0.583304354455322,0.9039245722815394,-0.7906402461230755,0.2771560736000538,-0.3082370744086802,-0.9048580983653665,-0.3830596902407706,-0.6316847139969468,0.005533311050385237,-0.4022290366701782,-0.6937486566603184,-0.7462822124361992,-0.8428265056572855,-0.07320966850966215,-0.0271345186047256,-0.2643874464556575,0.19231707835569978,-0.7689892742782831,-0.3667863071896136,-0.5370710687711835,0.9266087897121906,-0.4283158970065415,0.15450492221862078,-0.8751856926828623,0.5524686463177204,-0.9000875307247043,0.41732560144737363,0.43053906923159957,0.2776744067668915,0.8328954176977277,0.34583271434530616,0.22193149384111166,0.195155942812562,-0.32585891569033265,-0.8409368232823908,-0.7201666026376188,0.15727169485762715,0.6825426272116601,-0.85261404607445,0.27436004346236587,-0.4675518902949989,0.7060708911158144,-0.45884398091584444,-0.16740052215754986,-0.6163128232583404,0.49125298438593745,-0.782822176348418,0.5335458749905229,-0.34001158364117146,-0.5851385639980435,0.2773855612613261,0.6651299302466214,-0.7398136239498854,0.6960870730690658,0.7861354341730475,-0.8563699931837618,-0.4057870367541909,-0.4011614667251706,0.39978643599897623,-0.33007322903722525,0.013420597184449434,-0.5994567703455687,-0.46126241562888026,-0.31678629433736205,0.3080119928345084,-0.9736627070233226,-0.7014086632989347,0.9255292410962284,0.3355578198097646,0.18010217882692814,-0.399103996809572,-0.4106554314494133,-0.23386984644457698,-0.2638291670009494,-0.3730397657491267,-0.8699003309011459,0.6549508268944919,-0.39495308930054307,-0.6994623965583742,0.8213190431706607,0.3139353315345943,0.9581785430200398,0.5501514622010291,0.42996920831501484,0.5386317516677082,-0.2714990330860019,0.5966772334650159,0.9785657771863043,0.818154179956764,-0.2555852606892586,0.5639821765944362,0.528382530901581,-0.1189297204837203,0.17652351316064596,-0.6421559634618461,-0.013162418734282255,0.9872714951634407,-0.96148695750162,-0.4822849999181926,0.5298009477555752,0.6179260234348476,-0.2889318414963782,0.5843487600795925,0.6654664957895875,0.08233722392469645,-0.37335714558139443,-0.005221345461905003,0.9058583183214068,0.46032963786274195,0.8087748256511986,-0.5527320955879986,-0.48155258037149906,0.9918061271309853,-0.9973329757340252,-0.7406972767785192,-0.7253462886437774,0.4961265716701746,0.6586892744526267,0.14893139246851206,-0.4794895211234689,-0.1449637790210545,-0.2599865160882473,0.1880666264332831,0.40713101206347346,-0.3669498162344098,-0.8346446827054024,-0.9118921519257128,-0.36864477675408125,-0.001556025817990303,-0.8983249398879707,-0.29008561139926314,0.4328997302800417,-0.9502362888306379,-0.1579576339572668,-0.17273235926404595,0.15762479975819588,0.9526631315238774,0.370376945938915,-0.5453130160458386,0.06148634199053049,-0.8523690728470683,-0.5155656882561743,0.5867867222987115,0.42529190238565207,0.8277688161469996,0.767330109141767,-0.043690942227840424,-0.6448205024935305,0.4935667929239571,-0.31483939522877336,-0.7199349910952151,-0.8185364310629666,0.6424998841248453,0.9169515892863274,0.9999253591522574,-0.5589475762099028,-0.1936454544775188,-0.36435954412445426,-0.9803020623512566,-0.39939834689721465,-0.9777421969920397,0.15853722393512726,-0.7492698556743562,-0.5021921461448073,0.9751660064794123,0.016851910389959812,0.9966344912536442,-0.40084625966846943,-0.43211620673537254,0.37742987368255854,-0.22967034671455622,-0.7328011719509959,-0.5821890896186233,0.11516964994370937,0.2676673806272447,-0.4237513723783195,0.9830176359973848,-0.0741457361727953,-0.5463511804118752,-0.28398990677669644,-0.1694268067367375,0.7359325988218188,-0.960504483897239,0.9522889871150255,-0.5732928374782205,0.8711160779930651,0.899672616738826,0.122560178861022,-0.669368106406182,-0.9130369215272367,0.5572238438762724,0.8528154040686786,0.7763199610635638,-0.4365649693645537,0.20847690291702747,-0.11347248405218124,0.8869200851768255,0.3054810790345073,0.7142144562676549,0.06613768264651299,-0.21570239262655377,0.8913480332121253,-0.7875985368154943,-0.6050488785840571,0.712405176833272,0.10991907445713878,0.3679077308624983,0.6787683959119022,0.7682814816944301,-0.5944553217850626,-0.9712662203237414,0.3358436836861074,0.775863170158118,-0.7331548538058996,-0.7772992197424173,-0.9925740538164973,0.8139548203907907,-0.10391700267791748,0.7666569855064154,-0.03321190504357219,0.10386415105313063,0.5554292914457619,-0.8632401647046208,-0.21737337904050946,0.19846481131389737,-0.9828795623034239,0.03795809065923095,-0.11826587608084083,-0.052611286751925945,0.1219785469584167,0.7967994273640215,-0.8131846832111478,0.7112318007275462,0.20615182537585497,0.29182605259120464,-0.07842465722933412,-0.9554550149478018,0.09387742169201374,0.624869461171329,0.9682834832929075,-0.11815767223015428,0.17538224486634135,0.7877977476455271,0.3367528701201081,0.45864998642355204,0.4638061239384115,-0.10782393720000982,-0.7192811206914485,0.46391204884275794,-0.7534330952912569,0.9612144166603684,-0.3501877677626908,-0.9542972897179425,-0.48752188542857766,-0.4723651777021587,-0.7981393248774111,-0.6176493316888809,0.9243433885276318,0.5798799335025251,0.7560392343439162,0.7859732434153557,0.5024980446323752,-0.9388791024684906,0.07725261384621263,-0.9846796332858503,-0.7596149793826044,0.38401947217062116,-0.9903985252603889,-0.6908475230447948,0.008914793841540813,-0.6170344715937972,0.27004116447642446,-0.3255157466046512,0.6344520505517721,-0.651964062359184,0.8801134810782969,0.7374252937734127,0.9624158581718802,0.565513838082552,0.4442702950909734,-0.7123318226076663,0.8298349780961871,0.6088232500478625,0.21447833953425288,0.4030955242924392,0.9562591551803052,-0.9482757053337991,0.6629113322123885,0.43627736903727055,-0.6065265187062323,0.028809604700654745,0.09440876916050911,-0.8196374410763383,0.35832461761310697,0.8468260462395847,0.8726101010106504,-0.6072411118075252,-0.6806657267734408,0.48373335041105747,0.13141514779999852,-0.33615744579583406,0.14004530990496278,0.03948474070057273,0.6819431507028639,-0.6743816370144486,-0.3026321670040488,-0.4620969560928643,0.934292868245393,-0.2975614555180073,0.9657530053518713,0.7851807773113251,-0.14497480355203152,-0.6669534742832184,-0.3398473593406379,0.45792064955458045,0.919037168379873,0.36610795045271516,-0.709661727771163,-0.49443018715828657,-0.004851709585636854,0.3305228017270565,-0.0010114382021129131,-0.3626530757173896,0.3110581822693348,0.8866923432797194,0.16978266881778836,0.5900447093881667,0.7564200074411929,0.19390461407601833,-0.5695745083503425,0.4015583866275847,-0.9406485022045672,0.18475169781595469,0.15252706315368414,0.16462936345487833,0.9932996463030577,0.6401505107060075,0.07581856800243258,0.6357776150107384,-0.22123087523505092,-0.4191258125938475,0.37510944809764624,-0.46886160504072905,0.7394727920182049,0.3548818933777511,-0.903070580214262,-0.5655083931051195,0.05813766270875931,0.7681298358365893,0.7059930018149316,0.0587306902743876,0.40996677801012993,0.7452016216702759,-0.544329967815429,-0.8247010828927159,-0.9168499042280018,0.6041803755797446,-0.7157523804344237,-0.9448213409632444,0.4439542880281806,0.42724814964458346,0.4237676174379885,0.10409203544259071,-0.6265550116077065,0.5276507600210607,-0.8435935177840292,-0.49265176383778453,-0.07620247406885028,-0.4606842827051878,0.1719670109450817,-0.8285508863627911,0.14657724555581808,0.17412207229062915,0.8380547859705985,-0.29700712487101555,-0.45438606292009354,0.8118516630493104,-0.15037511801347136,0.902950793504715,-0.7925723781809211,-0.6979091512039304,-0.8346333168447018,0.6403850833885372,0.23978110309690237,-0.10669913282617927,-0.802583399694413,0.6125577515922487,0.3107739556580782,-0.8475700332783163,0.36676371889188886,0.1878894092515111,-0.013711996376514435,-0.34647303353995085,-0.5070885824970901,0.4773882878944278,0.16953406110405922,-0.7500293361954391,0.24778563901782036,0.2385674612596631,-0.14363917708396912,-0.10774333728477359,-0.332620638422668,0.29326689010486007,-0.39298190688714385,-0.16373800346627831,0.1910026939585805,0.862703574821353,-0.12405594112351537,-0.38587076123803854,-0.1638588486239314,-0.6091029336676002,-0.32989328168332577,-0.6675463235005736,-0.9935593018308282,-0.5567912487313151,-0.16569535853341222,-0.9242403223179281,0.14299881178885698,0.9761901344172657,0.05602503567934036,0.7943846113048494,-0.4337751027196646,-0.900622715242207,0.9016122808679938,-0.5712266676127911,-0.23449048353359103,0.24867997923865914,0.9238492767326534,-0.6744009382091463,0.5748170027509332,0.7593094403855503,0.2607384598813951,-0.16149002593010664,0.2374855033122003,-0.9460542546585202,-0.8484579371288419,0.7816342362202704,0.36186403408646584,0.8082986241206527,0.17801147187128663,-0.59807034349069,-0.20164526998996735,-0.7241724878549576,0.7664988059550524,-0.9567111004143953,-0.3860511747188866,-0.12942549725994468,0.006538914516568184,-0.8042569374665618,-0.0738262883387506,-0.1962527590803802,0.43725356133654714,-0.013750383630394936,0.761135948356241,0.5946193737909198,-0.1405554600059986,0.2709313347004354,-0.04266773723065853,-0.062136946711689234,0.287705525290221,0.5138237071223557,-0.6048438707366586,-0.8787943553179502,-0.2785254195332527,0.37616744358092546,-0.1063105994835496,0.02456815540790558,-0.585495067294687,-0.5159973176196218,0.9262230810709298,-0.03543125884607434,0.5829348876141012,0.6984839015640318,-0.9444358134642243,-0.13771521300077438,-0.2567825596779585,0.06559764547273517,0.3760074242018163,-0.839267959818244,0.6859318986535072,-0.05651960149407387,-0.980275253765285,-0.5590670397505164,0.6458515170961618,0.18354717176407576,0.41648044902831316,-0.15940783731639385,0.14781542494893074,-0.14477405650541186,0.25740088475868106,-0.06522383447736502,-0.27499414095655084,0.9499952979385853,-0.6728351078927517,0.7138964622281492,0.11230138363316655,-0.022425472736358643,-0.31608641520142555,0.5755423912778497,-0.8349041226319969,0.060007594525814056,-0.08281909208744764,0.1995118586346507,0.7450182903558016,-0.8922661514952779,-0.16816037520766258,-0.7259327694773674,-0.037768117152154446,-0.20460049342364073,-0.6379830525256693,0.3331519467756152,-0.7509152498096228,0.20562397642061114,0.5083995377644897,-0.7144516496919096,0.9827073700726032,-0.8766342829912901,0.6120830974541605,0.94640350388363,-0.5355934463441372,0.17445489298552275,0.7945850775577128,-0.4805620815604925,-0.8253701785579324,-0.11905378615483642,0.5132537116296589,-0.21668488439172506,0.7283433233387768,-0.972019650042057,0.7558915400877595,0.25114118959754705,-0.046441066078841686,-0.49720166716724634,0.29007401084527373,0.6882852544076741,0.2100505786947906,-0.5060354992747307,-0.05694459844380617,0.3603867329657078,-0.9664132399484515,0.6457652789540589,0.17732822196558118,0.9677585964091122,-0.5858037252910435,-0.7278751744888723,-0.4557170760817826,-0.8207243592478335,-0.8291286672465503,0.6312273647636175,0.8974618297070265,0.3573375754058361,-0.40582008427008986,0.07310732500627637,0.2961169029586017,-0.11767342360690236,-0.3453505183570087,0.22742847399786115,-0.8724749931134284,-0.3085503182373941,0.1000285530462861,0.8113524592481554,-0.8040011171251535,0.7710139700211585,0.43691524118185043,0.2733574425801635,0.614023941103369,0.5036944057792425,-0.03654516628012061,0.5544156269170344,-0.7603498306125402,0.6259242137894034,-0.5162388482131064,-0.8704075803980231,0.5325966449454427,0.7305713882669806,0.8789387899450958,0.12940990831702948,-0.7153079211711884,0.44694725098088384,0.16538139060139656,-0.23012335365638137,0.5447268267162144,-0.5642280532047153,-0.2913230489939451,-0.6057036835700274,-0.8062618835829198,0.3418764811940491,-0.32540916185826063,-0.7432295712642372,0.9415660477243364,0.6772400802001357,-0.3560084216296673,0.8631869805976748,-0.2769656116142869,-0.5783992796204984,0.6819413113407791,-0.17016799980774522,0.05075386166572571,0.07020943704992533,0.29470095969736576,0.8431434785015881,-0.5073746526613832,-0.058000728487968445,-0.4746905197389424,0.5161590543575585,-0.3631924702785909,0.46077278023585677,0.0349357002414763,0.6364230257458985,0.6563408495858312,-0.6277962885797024,0.9590557520277798,0.37360594188794494,-0.1431628204882145,-0.03732862789183855,-0.2091449648141861,-0.9504125216044486,-0.06640115613117814,0.8593223905190825,0.6357370112091303,-0.1975699714384973,-0.28788235830143094,0.4315322763286531,0.5355384908616543,-0.3668605852872133,0.9557390077970922,-0.2724062199704349,-0.29859754629433155,0.8056151978671551,0.8569059078581631,-0.16829968197271228,0.3179473811760545,-0.7821503677405417,-0.6861920794472098,-0.5612625246867537,-0.37173625361174345,0.49591689789667726,0.5851533026434481,0.22187343565747142,0.7007567891851068,-0.18010038463398814,-0.9670616490766406,-0.0157933896407485,-0.04620767943561077,0.5037744888104498,0.3754004375077784,0.10010824678465724,0.9244573856703937,0.0977476304396987,0.34937671571969986,-0.6406036582775414,0.3102108924649656,-0.15175080252811313,-0.16008555050939322,-0.8488990338519216,0.6585247684270144,-0.36947992257773876,-0.30399542720988393,0.016918157692998648,0.6770807718858123,-0.6808573850430548,0.6688880296424031,0.10018052533268929,0.9738889494910836,-0.9714372204616666,0.25744318403303623,0.83832280151546,0.2704946994781494,0.7560971933417022,-0.736339810770005,-0.9322272059507668,0.2974635101854801,0.7598796621896327,-0.9124432667158544,-0.700725682079792,0.006574033759534359,0.815092071890831,-0.694109863601625,-0.672678304836154,0.8197739636525512,-0.6838164320215583,-0.008341953158378601,0.6264828401617706,-0.36040763556957245,0.17600246239453554,0.4204366710036993,0.07777793612331152,-0.054543912410736084,0.3278302913531661,-0.956534706056118,-0.103122612927109,0.1734874057583511,0.005637609399855137,-0.7221390842460096,-0.21363989729434252,0.9406367400661111,0.36488834070041776,-0.055641486775130033,-0.06894896877929568,0.796207869425416,-0.3184870919212699,-0.8305994076654315,0.9230814748443663,-0.822484995238483,0.26897216122597456,0.3521305313333869,-0.7907542530447245,0.0887443320825696,-0.9818691690452397,0.05111950868740678,-0.39548760186880827,-0.0330823203548789,-0.8659688737243414,-0.7071259804069996,-0.3228256041184068,0.01499531278386712,-0.9331709765829146,-0.7663825782947242,0.9640049007721245,-0.1982205044478178,0.5606745444238186,0.8190413434058428,-0.3244030987843871,-0.0777532933279872,0.2244909694418311,-0.5825065346434712,-0.7028398467227817,-0.6116623850539327,-0.5344934458844364,-0.45325269224122167,-0.4373042923398316,0.05423837387934327,-0.7309308783151209,0.6737918527796865,-0.9459704253822565,-0.41437750635668635,0.5723265707492828,0.17165987566113472,0.9578987611457705,0.7702421089634299,-0.3511652359738946,0.5599065935239196,0.7581269042566419,-0.46316493209451437,0.4149135830812156,0.005099410656839609,-0.5622339881956577,-0.40657933335751295,0.8906071661040187,-0.42035306291654706,-0.22124348394572735,0.6869259593077004,-0.9414153397083282,0.7566126114688814,0.610785766504705,0.9386017769575119,-0.6883441037498415,0.8304994739592075,-0.4921574001200497,-0.4378312388435006,-0.6337086446583271,-0.12379699759185314,0.6198787735775113,-0.9837873363867402,-0.4484086949378252,-0.8592152283526957,-0.4911595843732357,-0.4148340681567788,-0.3654618966393173,-0.9188374187797308,-0.4856130136176944,-0.024328315164893866,-0.9534988943487406,-0.48306594509631395,-0.37351490603759885,0.47865233663469553,0.3196063758805394,0.2685317574068904,0.9588828193955123,-0.260503894649446,-0.32817129930481315,-0.20960468240082264,0.39103044802322984,0.5428097127005458,0.30200738180428743,0.8354677050374448,-0.4868922894820571,-0.6044471706263721,-0.05338175222277641,-0.26274921419098973,0.18306505959481,0.4291263991035521,0.9360616565681994,-0.10946893319487572,0.8374370271340013,0.6171216308139265,-0.16076583042740822,0.23434252012521029,0.22376226400956511,-0.3388363039121032,0.07900646282359958,-0.20427656965330243,-0.13268096698448062,0.10941492626443505,0.03955862671136856,0.2920822873711586,0.6847605723887682,0.6814681123942137,-0.19974189065396786,0.09472601069137454,-0.9127477072179317,-0.5470038303174078,0.3456093333661556,0.1810343861579895,0.19501270353794098,0.5587048018351197,0.6635827110148966,0.4016914744861424,0.6439303015358746,-0.5591481197625399,-0.3820116580463946,-0.6620594160631299,-0.3752538892440498,-0.1581170354038477,-0.27976097585633397,-0.41610498167574406,-0.9516835226677358,0.35040633426979184,-0.8981602140702307,0.13857057690620422,-0.4904087265022099,0.5569682284258306,0.4010675372555852,-0.16382160317152739,0.8286707592196763,0.64349435409531,-0.5597686120308936,-0.24656771449372172,0.9919998398981988,-0.6475903247483075,-0.4697548057883978,0.6081184949725866,-0.09738779347389936,-0.6327735120430589,-0.802290216088295,0.9791378192603588,-0.5718024242669344,0.8215635530650616,-0.38488413905724883,-0.7613423112779856,-0.591945300810039,0.9556354875676334,0.46522176498547196,-0.09837706293910742,0.545533636584878,0.35656879423186183,0.21096487436443567,0.26092138327658176,0.4255813304334879,0.5260072322562337,-0.3168850583024323,0.10727267898619175,-0.5613258685916662,-0.5036039198748767,0.36863528145477176,0.3025165027938783,-0.6778890402056277,0.4886220865882933,0.28430593851953745,-0.15671241097152233,0.791042871773243,0.6041424167342484,0.4538720706477761,0.34094345942139626,0.9748683571815491,0.7687002215534449,-0.961727605201304,0.6595757678151131,0.2162747965194285,0.028135541826486588,-0.709660398773849,-0.7962165409699082,-0.7474642032757401,0.3872742308303714,0.1645337068475783,-0.9628642927855253,-0.0351818548515439,0.15372089855372906,0.7739723674021661,0.6610059500671923,0.18351621786132455,0.9184100977145135,-0.5338860573247075,-0.839935080613941,0.6255633230321109,-0.8200959777459502,0.7105152481235564,-0.6159279346466064,-0.9611611892469227,0.9715225170366466,-0.3496667891740799,0.2551347245462239,-0.6661101011559367,0.9395594983361661,-0.43026925064623356,-0.0502116740681231,0.056666918098926544,-0.21504822047427297,-0.5061908112838864,0.03955834964290261,0.38413558807224035,0.6488906214945018,0.7920674206689,-0.8591562998481095,-0.9360057017765939,-0.23904201900586486,0.647693298291415,0.9766279668547213,-0.9676230833865702,-0.7953303912654519,0.7884351019747555,-0.4553612065501511,0.2878975602798164,0.5151995406486094,-0.3511326964944601,0.7709349752403796,-0.7444754526950419,0.582475767005235,-0.6897830879315734,-0.5176308588124812,-0.8543654591776431,-0.98480179393664,0.2737485677935183,-0.3122738138772547,0.8366573848761618,-0.45283267786726356,0.5755618074908853,0.030539617408066988,0.25681433640420437,0.9880138230510056,-0.20142607623711228,0.8461692375130951,0.6876910016871989,0.9395064637064934,-0.4539223280735314,0.7827641251496971,-0.6002135523594916,-0.30161543330177665,0.32082633301615715,0.07481870474293828,-0.14951001573354006,-0.7690685149282217,0.24565100437030196,0.493500467389822,0.6342177498154342,-0.5397399091161788,-0.3298378041945398,-0.5225752326659858,-0.6731606880202889,0.24469177704304457,0.3010580101981759,0.2637594980187714,0.7571710832417011,0.7058062800206244,0.1280926656909287,-0.20830012764781713,0.642770170699805,0.1031917599029839,0.9817592715844512,-0.24596519768238068,0.6192242451943457,-0.6736118486151099,-0.1118780467659235,0.03477975307032466,-0.28051331965252757,0.27388507360592484,0.013037148863077164,-0.8292121775448322,0.36916560074314475,0.5206694635562599,-0.36517335567623377,-0.5442100171931088,-0.5902022416703403,-0.8603419656865299,-0.9820712376385927,0.13309651939198375,0.8899715812876821,-0.278552929405123,0.1474634655751288,-0.563872279599309,0.5728351403959095,-0.21810745587572455,0.4774162583053112,0.389981834217906,0.22230847645550966,-0.7274432391859591,0.03948155278339982,-0.974112655967474,-0.5039077112451196,0.9971268060617149,0.14610506873577833,0.8574026725254953,-0.8497387934476137,-0.5271444073878229,-0.21150702703744173,-0.4572461061179638,-0.15489197662100196,0.057907788548618555,0.3271747403778136,0.6198590015992522,-0.32268278766423464,0.5067368242889643,0.00031128525733947754,-0.6254788008518517,-0.35521670896559954,-0.45274581434205174,-0.08227006206288934,-0.5753774344921112,-0.9444728586822748,-0.7486262894235551,0.4911069073714316,0.25594868045300245,-0.47428710013628006,-0.8354519023559988,0.5432511079125106,0.744865664280951,0.9350580521859229,0.7683734740130603,-0.7303985669277608,0.2632579142227769,-0.0944483932107687,0.8704980760812759,-0.9212831882759929,0.5331617216579616,-0.4769018506631255,0.7713150563649833,0.12355568213388324,0.8656153283081949,0.5409121424891055,0.2961669284850359,-0.36590867629274726,0.04594680294394493,0.39684786135330796,0.8533526072278619,0.14490291895344853,0.5151233435608447,-0.4822741677053273,-0.248122064396739,-0.07483775774016976,-0.5606679646298289,0.09314260305836797,0.10645619640126824,-0.9908883296884596,0.7784412009641528,0.7995487819425762,-0.15078099956735969,0.5613216548226774,-0.5254174564033747,0.6420438531786203,0.12095605535432696,-0.5742883933708072,0.0800748635083437,-0.6384059377014637,0.8397040963172913,-0.2995386035181582,0.4276725659146905,0.9375397455878556,0.13408983824774623,0.5145120332017541,-0.17353276070207357,0.45495785400271416,-0.09391138376668096,0.44160571973770857,0.49399912264198065,0.3804211341775954,0.14949194947257638,-0.6891481569036841,0.7440015119500458,-0.46595117496326566,0.879787553101778,-0.3553882399573922,-0.43795921094715595,-0.2592383027076721,0.9317748923785985,-0.9946201546117663,0.3421484623104334,-0.3044247352518141,0.3236134611070156,-0.04359831381589174,-0.7135001448914409,-0.05256400816142559,0.32906420761719346,-0.4311339524574578,-0.24949381686747074,-0.29475150909274817,-0.23669143579900265,-0.8983574248850346,0.6026333719491959,-0.7557141636498272,0.747890125028789,0.6508165937848389,0.7555205994285643,0.20797636592760682,0.4156775395385921,-0.550154791213572,-0.22270775260403752,-0.8744071372784674,-0.6065122117288411,-0.8227148987352848,-0.6965293204411864,-0.24527523526921868,-0.3079001111909747,-0.6416683252900839,0.7564556859433651,0.6142562706954777,0.8845525444485247,-0.0053369998931884766,-0.47151767648756504,0.062091825529932976,-0.10224539320915937,-0.43119988264515996,0.5385163277387619,0.07466891966760159,0.5122369644232094,-0.05435411771759391,-0.9819606239907444,0.5377739313989878,0.28497313149273396,-0.82938188361004,0.26926334714517,-0.6498750960454345,-0.6475518643856049,0.7826993907801807,-0.320703178178519,0.859380651731044,0.9595892676152289,0.8806284377351403,0.6529334071092308,0.07503763027489185,0.7477715257555246,0.6565139661543071,-0.2740676375105977,-0.8037438043393195,-0.7365118968300521,-0.6523076379671693,-0.5814788741990924,0.981952894013375,0.9365409561432898,-0.4824352874420583,-0.19886213541030884,0.9597601545974612,0.9368768762797117,0.14955741027370095,0.6158633097074926,-0.6845223270356655,0.29951706109568477,0.4082003398798406,0.5206707827746868,-0.41545430524274707,-0.3056055102497339,0.5825659572146833,0.9020093777216971,-0.01837574550881982,-0.18894687108695507,-0.1827175454236567,0.6934194504283369,0.19440336665138602,0.9273217050358653,0.796956124715507,0.5358331305906177,-0.5075035463087261,-0.5578742474317551,0.636291406583041,-0.6462113736197352,-0.3121427367441356,-0.8268844638951123,-0.2651727790944278,0.48896416183561087,0.7820378821343184,-0.9920345097780228,-0.5052797021344304,-0.44402500381693244,-0.7592946677468717,0.005804796703159809,-0.561679745092988,0.4832903016358614,0.9612286225892603,0.543624447658658,-0.5168571802787483,0.8169945734553039,-0.4612486599944532,-0.6304974318481982,-0.3113248902373016,0.22795031499117613,0.7533706338144839,-0.6995346760377288,0.07131828833371401,0.8553192266263068,-0.7664009989239275,-0.39353527687489986,-0.2679724548943341,0.3729496053420007,-0.7837349260225892,-0.5338103272952139,0.4057169589214027,-0.3259265208616853,-0.8692168020643294,-0.33345384057611227,-0.02613393496721983,0.5475711012259126,0.7587571386247873,-0.6043533417396247,0.7821870339103043,-0.23771534208208323,0.4933285196311772,0.32467345893383026,-0.13292620703577995,0.5147185809910297,0.8994664531201124,-0.9789795004762709,0.27149354852735996,0.24745572172105312,-0.04284803755581379,0.11949634738266468,0.9516670955345035,0.770840632263571,0.8271923596039414,0.3407963956706226,-0.589858453720808,0.09993933793157339,-0.2479574466124177,-0.5081675322726369,0.4905642606317997,-0.5865225070156157,-0.6192554612644017,0.33997818594798446,-0.8799539632163942,-0.6892767357639968,-0.6966943247243762,0.7511572623625398,0.3596634198911488,-0.36017578141763806,-0.6360877733677626,0.7716458733193576,0.17923340620473027,0.07296650717034936,-0.26310690538957715,-0.7097266456112266,0.041678131092339754,0.08408814622089267,0.5515898587182164,-0.5124382241629064,-0.0016699163243174553,-0.1381853213533759,-0.2921133185736835,-0.003469831310212612,-0.6094009662047029,0.7214165241457522,0.6323341275565326,0.293770604301244,-0.3230722062289715,0.7971245115622878,0.015318000689148903,-0.5092324018478394,-0.7331363009288907,-0.6999166863970459,0.7092147464863956,0.9064163994044065,0.7792195999063551,0.4622579971328378,-0.3050169595517218,-0.9295274810865521,-0.1035675616003573,0.5687957345508039,-0.8460797909647226,0.34398150350898504,-0.5389678743667901,-0.034312051720917225,0.5378261525183916,-0.007259428966790438,-0.435979722533375,-0.17407341254875064,0.061775078531354666,0.9377106162719429,-0.749555257614702,0.453029319178313,-0.14316874276846647,-0.8367462228052318,-0.40836030105128884,-0.043514139018952847,-0.6249921452254057,0.6412067445926368,0.9373129922896624,-0.9012933480553329,-0.13409319426864386,0.329498577862978,-0.22533320263028145,-0.6004441631957889,-0.5366003839299083,-0.5862215124070644,0.6762032001279294,-0.37659364892169833,-0.043877137824893,0.2534341891296208,0.03949420666322112,-0.5014497665688396,0.7363073132000864,-0.6326093063689768,-0.6761242230422795,-0.8317378819920123,-0.28628223342821,-0.9446351672522724,-0.7673800317570567,0.4937367052771151,0.6681867800652981,0.22097156289964914,-0.8532842774875462,-0.9560932978056371,0.45741541497409344,0.0993982907384634,-0.38050056295469403,0.33417965238913894,-0.29538464499637485,0.20229055359959602,-0.5095849805511534,0.5642386474646628,-0.13883021473884583,0.9747383906506002,0.8942667413502932,0.42197805317118764,-0.03202198538929224,-0.1836944492533803,-0.620985871180892,0.6648983918130398,-0.6436767135746777,0.09308443497866392,0.6716348230838776,-0.012733387295156717,0.1850946363992989,0.12009516637772322,-0.6980103757232428,0.8629953116178513,-0.8166046170517802,-0.7326203254051507,-0.7208314440213144,-0.8387309014797211,0.6935042287223041,-0.9335959190502763,-0.680052487179637,-0.9290537876076996,0.5218962202779949,0.7537945713847876,-0.984497562982142,0.0641674492508173,0.20396553678438067,-0.10340903280302882,-0.0716049843467772,0.48112594382837415,0.5649612490087748,0.5498798144981265,0.6798866046592593,0.6776097696274519,-0.2115753712132573,0.45029447693377733,0.973616958130151,0.7290531350299716,0.6633735178038478,-0.4753233469091356,-0.4367407578974962,0.3191858818754554,0.9389917473308742,0.8499918249435723,0.4009032342582941,-0.0810787258669734,0.5638799732550979,0.934789058752358,0.8051495146937668,-0.9231598740443587,0.5115663786418736,-0.5340649881400168,-0.37457287684082985,-0.225402120500803,-0.52321882173419,0.5254849418997765,0.6941054472699761,0.4052181523293257,-0.2571404492482543,0.870306883007288,-0.7111521200276911,0.3302154433913529,0.07206917833536863,0.01323143346235156,-0.7810601410456002,-0.35402740398421884,0.5394986905157566,0.4473057594150305,-0.9313834761269391,0.7993601178750396,-0.25283710937947035,0.8764199391007423,0.522855980321765,-0.41075569903478026,-0.7827342925593257,-0.12649611569941044,-0.8070484981872141,0.32720818743109703,0.007230058312416077,-0.8729199394583702,0.18210173165425658,0.39983874605968595,0.9363830657675862,-0.5404973858967423,0.9583702706731856,0.7227089921943843,0.23106202250346541,-0.5609479076229036,-0.5935247708112001,0.12779866298660636,0.40373215917497873,-0.6314593926072121,0.4102754220366478,-0.6093150209635496,-0.7495805541984737,0.6492365812882781,-0.8973372215405107,0.2787703978829086,-0.5497985216788948,-0.16880111861974,-0.7107320423237979,0.9277081098407507,0.5151592153124511,-0.6548224561847746,-0.49860692489892244,-0.5207729451358318,-0.1561016198247671,0.9017754485830665,-0.2647990291006863,-0.9259180380031466,0.11153755849227309,-0.5346473762765527,-0.8290884308516979,0.6378868496976793,-0.35246123978868127,-0.33955161925405264,0.2838994893245399,0.11985412053763866,0.7491977959871292,0.20954310288652778,0.5209681899286807,-0.5897970688529313,0.9521866147406399,0.02847804455086589,0.6895923954434693,-0.8871026406995952,-0.26489867689087987,0.9674373581074178,-0.6513877240940928,0.11077840439975262,0.808102868963033,0.5871047819964588,0.36954806186258793,0.6732299402356148,0.2997080604545772,-0.44082885468378663,-0.8574119578115642,0.54169543646276,0.2365837786346674,-0.0739632467739284,-0.8916470557451248,-0.9849386680871248,-0.27974642254412174,0.6585181723348796,-0.3018876644782722,0.7832729672081769,0.8721508551388979,-0.4057756680995226,-0.32672373624518514,0.7621823973022401,-0.5728287007659674,0.163058674428612,-0.7486262493766844,-0.9312802101485431,-0.012766257394105196,0.1528712105937302,0.7269887016154826,-0.645377904176712,-0.22803894337266684,-0.49275927152484655,0.12686453480273485,0.011439619585871696,0.42886351328343153,0.22695286246016622,-0.40794628905132413,-0.6907465034164488,-0.43964712833985686,0.8474116739816964,0.676174009218812,-0.32641507452353835,0.8056088746525347,-0.4124783198349178,0.5276627694256604,-0.6704516629688442,-0.4636279521510005,0.060186991933733225,-0.45255107758566737,-0.7583630029112101,0.7071834560483694,0.4639367302879691,-0.7583780861459672,0.6938970629125834,-0.32494061440229416,0.9285093611106277,-0.2621654309332371,-0.5039983070455492,-0.11736359866335988,-0.578612788580358,0.07461760519072413,0.5135013908147812,0.6311425976455212,-0.17450631596148014,0.5093243974260986,0.29280468821525574,-0.06303863227367401,-0.25724297296255827,-0.4446304738521576,-0.2854628600180149,-0.8258780166506767,-0.781580813229084,-0.7337023061700165,-0.9791483161970973,-0.4562153806909919,0.5266139954328537,0.4716570903547108,-0.37909376062452793,0.36460843309760094,-0.7652104706503451,-0.20436927629634738,-0.1614205096848309,0.5566778252832592,0.22395679727196693,0.801889262162149,-0.9682856295257807,0.7278888211585581,0.13014975376427174,0.47751978458836675,0.05410706717520952,0.11582192219793797,-0.00693651894107461,-0.44235497899353504,0.6113358568400145,0.877221014816314,0.08443883620202541,-0.7375252386555076,-0.027818798553198576,0.4366493383422494,-0.0208112015388906,-0.3111719316802919,-0.4582342500798404,-0.5950490334071219,0.8177915546111763,-0.6847956902347505,0.7887757415883243,0.24382723588496447,-0.24653969565406442,0.352167883887887,-0.6007193769328296,0.5184962819330394,0.11699990415945649,0.5479568531736732,0.3567549092695117,-0.7005127002485096,0.9641716061159968,0.27156880404800177,-0.0486888331361115,-0.2311099199578166,-0.30445612454786897,0.7205782816745341,-0.37770851654931903,-0.40295414766296744,0.586159102153033,-0.2710084607824683,-0.7442133291624486,-0.291155849583447,0.678315382450819,-0.8331828569062054,-0.383731787558645,0.08219023048877716,0.948191384319216,0.49452772084623575,0.8409902662970126,0.6921396031975746,0.729217438492924,-0.6306044082157314,0.34394886810332537,0.33563483133912086,-0.04826959781348705,-0.6644076239317656,0.6120412671007216,-0.12748881103470922,0.9415897643193603,0.6972687961533666,0.7576798340305686,-0.9406917355954647,-0.8235045801848173,-0.6025957888923585,-0.17939392616972327,0.8439447088167071,0.5125296823680401,0.20397263020277023,0.5673436080105603,0.1170911155641079,-0.08704701997339725,-0.955240776296705,0.12608279613777995,-0.5863630366511643,0.7757844873704016,-0.17504683695733547,-0.15805487614125013,-0.5719740930944681,-0.6935857511125505,0.0609439448453486,0.18351432168856263,0.4632883039303124,0.05733836116269231,-0.42789567122235894,-0.5906748911365867,0.9295430625788867,-0.23124868609011173,-0.8214951609261334,-0.4605796239338815,0.5382141266018152,-0.09822370484471321,-0.6031728442758322,-0.4193746140226722,-0.23604944488033652,-0.009640307165682316,-0.8041398827917874,0.2369776531122625,-0.9317549210973084,-0.40741469245404005,-0.6721009844914079,0.6268270979635417,0.6019109496846795,0.3327924902550876,-0.9757169038057327,-0.21591043006628752,-0.35923062171787024,-0.3023971295915544,0.9352399786002934,0.1644202950410545,0.7637630878016353,-0.456722067669034,-0.9708104520104825,0.48924454022198915,-0.3797495528124273,0.3898868300020695,0.3238047529011965,0.5585560551844537,-0.07153146900236607,0.5671225488185883,-0.9766519442200661,0.7029242399148643,0.6557566644623876,-0.5532349846325815,0.5466106217354536,0.648544839117676,0.5482757678255439,0.5267425961792469,-0.4030018770135939,0.09940459299832582,-0.9965109270997345,-0.07317478442564607,0.2963386820629239,-0.4918206101283431,0.8725156527943909,0.8855796889401972,-0.8458786392584443,0.25826102681457996,-0.7675017477013171,0.4542876100167632,-0.9274951382540166,0.4409315148368478,0.5386269460432231,0.4619089113548398,-0.10140290856361389,-0.10704225674271584,-0.015647693537175655,-0.7481633466668427,0.6251691551879048,-0.7713969182223082,0.10912539251148701,-0.894995778799057,0.3544707396067679,-0.36164511600509286,-0.1630974286235869,-0.25823199888691306,-0.8643164951354265,-0.43989075906574726,-0.2326056957244873,0.07217122800648212,0.5485846982337534,0.1579030454158783,0.5411765277385712,0.06488668359816074,0.8842574646696448,0.09424188593402505,0.4552552285604179,-0.7836092938669026,-0.8829442136920989,0.0532410703599453,-0.4642329611815512,-0.8996163597330451,-0.7560442215763032,0.4495965866371989,0.736918285023421,0.4695930085144937,0.9302918459288776,0.44887778582051396,-0.03532179957255721,0.3588868547230959,0.8240073407068849,-0.8708762908354402,-0.12827507825568318,-0.6680322284810245,0.24685970693826675,-0.12364790448918939,-0.4275655257515609,0.08092796243727207,-0.9292937149293721,0.8410878088325262,0.12570969434455037,0.6174507108516991,-0.8083823854103684,-0.035866903606802225,-0.5452936952933669,-0.18773265136405826,-0.9642947311513126,-0.8178440351039171,0.6044124253094196,-0.11616328544914722,0.18241776479408145,-0.45126392785459757,-0.6396301672793925,-0.4933066791854799,0.3112877174280584,-0.778104773722589,-0.49886288587003946,-0.08841308858245611,-0.3350683939643204,0.10376038867980242,-0.6924710529856384,0.4949261196888983,0.7541904808022082,0.51289038406685,0.9139924016781151,-0.4618732873350382,0.4831439829431474,-0.13196358503773808,-0.6899692383594811,-0.04059884790331125,-0.7606421317905188,0.17002183152362704,0.11036439565941691,0.9910554434172809,0.2936008949764073,0.7606199658475816,-0.7794389636255801,0.1378194745630026,0.2255587144754827,-0.8560842606239021,-0.5144785302691162,0.10934511665254831,-0.11101309675723314,-0.6428779289126396,-0.9779906109906733,0.6455043093301356,0.40405965503305197,0.6426012297160923,0.22618616186082363,-0.35203060740604997,0.05914551764726639,-0.510432512499392,0.8677185378037393,0.3558399216271937,0.0829489822499454,0.932175328489393,-0.4925671867094934,-0.30458582006394863,0.39653278049081564,-0.6804550187662244,0.5234500323422253,-0.3011085893958807,-0.6728061558678746,0.0351008758880198,-0.3886884590610862,-0.8328389856033027,-0.6956900521181524,-0.653362924233079,-0.4930248293094337,0.5751345395110548,0.46161938132718205,-0.5168621805496514,0.6179425879381597,-0.25763709004968405,-0.2757698274217546,-0.07695908192545176,0.14277863083407283,-0.8188097621314228,-0.4116190792992711,0.059845165349543095,-0.6998487780801952,-0.19713114853948355,0.8003025776706636,0.056937405839562416,0.7323221839033067,-0.6537511679343879,0.5834964481182396,-0.31650341348722577,-0.5248328372836113,-0.7924783704802394,0.024426912423223257,-0.37833180744200945,0.3722515390254557,-0.06343663297593594,0.7428290364332497,0.514568233396858,0.8163615977391601,0.9910340374335647,0.20019432436674833,0.47233439050614834,0.4221132807433605,0.027661917731165886,0.8060526889748871,0.994298601988703,0.22910264832898974,0.822666609659791,0.9885658374987543,-0.8833187455311418,-0.20608569495379925,-0.4086183668114245,0.47133884485810995,-0.6468566893599927,-0.5408067442476749,0.5895002447068691,0.7726082312874496,-0.9618065347895026,0.9903713320381939,0.8533193757757545,0.9514950183220208,0.0484992666170001,0.5014457865618169,-0.3544615749269724,-0.8571517965756357,-0.703518052585423,0.7728692940436304,0.3912528152577579,-0.43727512611076236,0.7408123863860965,0.2506311694160104,0.799354556016624,0.6792854405939579,-0.5399215300567448,-0.2691975743509829,-0.9643477974459529,0.4216020363382995,-0.220151178073138,-0.9558152453973889,0.8281604740768671,-0.42293897783383727,0.5517057026736438,0.34910950995981693,0.05560494167730212,-0.0837345770560205,-0.27710409136489034,0.37461125990375876,-0.09764383593574166,0.0220791632309556,0.03557026386260986,0.793218594044447,0.17117612482979894,-0.727382555603981,0.33612318942323327,0.4552447320893407,-0.8759328150190413,-0.7401107014156878,-0.8584890272468328,-0.20550256967544556,-0.8802261953242123,-0.8222439517267048,0.9111355431377888,-0.12076482735574245,0.20055792201310396,-0.332974084187299,-0.5010586339049041,-0.48077371157705784,0.837206422816962,0.29594762017950416,-0.34026383329182863,-0.8837048257701099,0.7893324485048652,0.1423791036941111,0.38743136543780565,-0.6914201905019581,0.5868512797169387,0.6989709539338946,0.32899666391313076,0.79605384869501,0.6470604329369962,0.79407660337165,0.09407937247306108,-0.6541287400759757,0.9156848285347223,0.7791133103892207,0.912928253877908,0.33190922206267715,-0.09373218705877662,0.9923470388166606,0.058636623434722424,0.3525356869213283,0.8417927813716233,-0.7190417568199337,0.7069044588133693,0.8404506240040064,-0.44451885018497705,-0.5154532250016928,0.4869408933445811,0.14963980298489332,-0.44247332168743014,0.07972757611423731,-0.27868874464184046,0.24894942622631788,-0.6039784741587937,0.7673278450965881,-0.6773966904729605,-0.4695148738101125,0.11570736346766353,0.36963192000985146,0.5602782522328198,-0.002678011544048786,0.7478069961071014,0.7156615955755115,-0.24725335417315364,-0.7452748198993504,0.5864771059714258,-0.624221533536911,-0.10413645952939987,-0.003436744213104248,0.18843703158199787,-0.792118591722101,-0.7484324239194393,-0.7768157254904509,0.6697488422505558,0.9953601527959108,-0.49580485466867685,0.6481786863878369,-0.5160903632640839,0.8734026113525033,0.15162856271490455,-0.22087765391916037,-0.9851157409138978,0.3739509768784046,-0.07685603341087699,0.10844715032726526,-0.052908618468791246,-0.8861384741030633,0.24148166552186012,-0.9468449144624174,-0.606347493827343,0.7807734902016819,0.04947428219020367,0.9071622481569648,-0.6530764321796596,0.1435738685540855,-0.4026882969774306,0.2625549780204892,0.43301107035949826,-0.6497180629521608,-0.952647352591157,0.532534820958972,0.684147144202143,-0.7459357911720872,0.4886854160577059,-0.07092596031725407,-0.7952753030695021,-0.7804688848555088,-0.3735871999524534,0.22775288065895438,0.9520103973336518,0.9976230361498892,0.3695819736458361,-0.822789769154042,0.08420223882421851,-0.9860235122032464,-0.5159421199932694,-0.4858471299521625,0.2614809460937977,0.699037604033947,-0.5535579319112003,0.049840458668768406,0.44706509867683053,-0.12164930999279022,-0.8081488301977515,-0.3317941757850349,0.7449042433872819,0.9948903010226786,0.4661710197106004,-0.4025013870559633,-0.5182324745692313,0.6952450461685658,0.1691398974508047,0.017804928589612246,0.935694626532495,0.7659940994344652,0.8411430073902011,0.43468313990160823,-0.7345069157890975,-0.4465431133285165,-0.27836649771779776,-0.3677556589245796,-0.8094128393568099,-0.511182164773345,0.04780457401648164,-0.2511134068481624,-0.5488292584195733,0.703162589110434,0.9036552626639605,-0.7175651346333325,0.6529860170558095,0.78938376205042,-0.8161969664506614,0.09261260693892837,-0.3314360436052084,-0.9168199365958571,0.8563843057490885,-0.4976696609519422,0.7835933319292963,-0.06739656254649162,0.9364343374036252,0.49915048107504845,0.32984365662559867,0.604311790317297,0.2861269321292639,0.037940014619380236,-0.02153745573014021,-0.45649512158706784,-0.7565187262371182,-0.9587540398351848,-0.2249097148887813,-0.5844706036150455,-0.5765482522547245,0.5865596444346011,-0.6262733405455947,0.6161395511589944,-0.6376594509929419,0.8237495301291347,0.7332093087024987,-0.7867927551269531,-0.3450870756059885,0.7274297741241753,0.3969774981960654,-0.1863879868760705,0.08429829264059663,0.509441314265132,0.9564416380599141,-0.09582913992926478,0.27633207151666284,0.050294728484004736,-0.44009742652997375,-0.1893960670568049,0.31591553101316094,0.15836404357105494,0.9340403024107218,-0.4741575620137155,-0.7314192797057331,-0.13213517563417554,-0.2576407785527408,-0.15119467303156853,0.46067732060328126,-0.9875518423505127,0.5135519718751311,-0.17767382692545652,0.8250811761245131,0.9763761209324002,-0.5962580367922783,0.9567454447969794,-0.10255133593454957,0.9326481642201543,0.4656037464737892,-0.5302006276324391,0.29483794746920466,-0.7526599853299558,0.8209092798642814,-0.40647649113088846,0.2747422168031335,-0.21660035056993365,-0.10694866813719273,-0.17270547524094582,0.028946911450475454,-0.021904591470956802,-0.5284957117401063,-0.5707266400568187,-0.8176867086440325,-0.7080140691250563,-0.550869382917881,0.40131687093526125,0.3351874011568725,0.9919807924889028,-0.3307059179060161,0.11313489591702819,-0.9192821839824319,0.10183444479480386,-0.56157386302948,-0.1354110580869019,0.6551144318655133,-0.6669092611409724,0.24539053859189153,0.12740311538800597,0.8736893516033888,-0.9341457588598132,-0.7249469878152013,0.6980765569023788,-0.7118463730439544,-0.11101990379393101,0.8072587121278048,-0.0950458119623363,0.007541358005255461,0.040233452804386616,-0.2912500584498048,0.1293131783604622,-0.115774170961231,-0.6197968702763319,-0.790128082036972,-0.6916846693493426,-0.601976522244513,0.2735572294332087,0.1394935678690672,0.843020330183208,0.32593723852187395,0.9885192271322012,-0.2364624640904367,0.2673617545515299,-0.5518079418689013,0.34410973731428385,-0.2760341572575271,-0.30571073945611715,-0.5009840442799032,-0.9379457170143723,-0.34081232314929366,-0.3662398811429739,0.633519166149199,0.13647610554471612,0.4501823903992772,0.13899904442951083,-0.14247813262045383,0.294164021499455,-0.46236847434192896,-0.505272913724184,0.9556878106668591,0.24620094429701567,0.6832433701492846,0.13873296370729804,-0.7465532822534442,0.05215377267450094,-0.16049042250961065,-0.9737007510848343,0.4909740835428238,0.30225847754627466,-0.472856227774173,0.9642780716530979,-0.2615894484333694,-0.46692241868004203,-0.3414712566882372,0.3274269257672131,-0.5582146169617772,-0.4675268065184355,0.09807999199256301,0.5054972893558443,-0.6359442290849984,-0.8904985799454153,0.3385030315257609,0.9639841457828879,0.7638623639941216,-0.12341922335326672,-0.9524445086717606,-0.3751803492195904,0.04547958727926016,-0.38593838550150394,0.8115250854752958,0.8799476497806609,0.9383158511482179,0.3445151746273041,0.0035861246287822723,0.0635705185122788,-0.14562810119241476,-0.5697128865867853,0.43528690468519926,-0.054229751229286194,-0.684994338080287,0.9417583150789142,0.7369098430499434,-0.46470617316663265,0.9361604996956885,0.9895110782235861,-0.6739125647582114,0.528607364743948,0.39928586268797517,-0.06505282921716571,-0.6715656849555671,-0.8471057405695319,-0.2882985114119947,0.8058724319562316,-0.7702219681814313,-0.08304684003815055,-0.7271832637488842,-0.7574343434534967,-0.7946764547377825,0.462888540700078,0.7374077797867358,0.7379836780019104,0.27519252011552453,0.5783075438812375,0.8066654843278229,0.04615502571687102,0.2137749777175486,-0.6398930521681905,-0.7042015143670142,-0.7430991847068071,-0.478513665497303,-0.022119321394711733,0.30124874599277973,0.08663550158962607,-0.6015313663519919,0.028828135691583157,-0.30678263306617737,-0.48466464318335056,0.7937067621387541,-0.5700121875852346,-0.14945601811632514,-0.10067662363871932,0.10164796188473701,0.010868946556001902,-0.9633163679391146,0.6770847109146416,-0.8745476519688964,-0.4732527621090412,-0.917371891438961,-0.7793356771580875,-0.4501867708750069,0.4129101228900254,-0.7137145167216659,-0.3360562948510051,-0.8171213981695473,0.5185808022506535,0.3524160045199096,0.03363513620570302,-0.8201457122340798,-0.8863573162816465,-0.19903804920613766,-0.6684639439918101,-0.4628202863968909,0.7527931197546422,0.43365607503801584,0.9315656181424856,-0.09410188533365726,-0.057959224097430706,-0.9330678009428084,-0.9776929067447782,0.2943148515187204,0.5784680554643273,0.9603610327467322,-0.6458835946395993,0.030533673707395792,0.38538346998393536,0.8184895594604313,-0.2967234761454165,-0.1630601235665381,0.4354277327656746,0.17685765633359551,-0.8387138904072344,0.2506712614558637,-0.267655111849308,-0.5739556918852031,0.9086211156100035,0.1214306722395122,0.9613539539277554,0.7826778329908848,-0.22478731907904148,-0.022015635389834642,-0.8524162680841982,0.073872996494174,0.5085277301259339,-0.22138806665316224,-0.6478778938762844,0.5820532441139221,-0.10569224273785949,0.35395958088338375,0.7456069178879261,-0.0526487841270864,0.15267671924084425,-0.6845205286517739,0.6976736481301486,0.41097186086699367,-0.24227988626807928,0.5412758653983474,-0.43237039959058166,0.10214752750471234,-0.735353619325906,-0.07048426102846861,-0.41663334099575877,-0.7839168170467019,-0.5011589471250772,-0.3724997639656067,0.9651967408135533,0.7545093456283212,-0.31228854367509484,0.4884962420910597,-0.962419031187892,0.6553442743606865,0.7710543493740261,-0.9842107938602567,-0.6597665911540389,-0.7811535825021565,0.30231625214219093,0.06133388075977564,-0.3615244156681001,-0.34617062052711844,0.47615958098322153,-0.021623130422085524,-0.44112364761531353,-0.08151556691154838,0.35616280511021614,-0.6465875990688801,0.3662261092104018,-0.17335750488564372,0.16833020746707916,-0.43457905435934663,-0.9591691694222391,-0.6071390006691217,-0.1161025152541697,0.5245372406207025,0.25230927253142,0.5022053634747863,0.5625363294966519,0.06928860442712903,-0.4178995476104319,0.8870253888890147,0.43999965861439705,-0.7890502503141761,-0.4829988079145551,-0.22589573683217168,0.9087943718768656,-0.8347233524546027,0.009786191396415234,0.9470115844160318,0.672499243170023,-0.5483916415832937,-0.1935783508233726,-0.8341944222338498,0.963699284940958,0.15938763972371817,0.8582772822119296,-0.83894536877051,0.44584797602146864,-0.048711169976741076,-0.06743789371103048,-0.32346584368497133,-0.24841010477393866,0.18980066943913698,-0.5223732846789062,0.5787197053432465,-0.10988793754950166,0.8109968518838286,0.7796419360674918,0.8953478438779712,0.5889683072455227,-0.34445273550227284,0.0024881986901164055,0.05132680060341954,-0.3953538127243519,0.6980844526551664,0.6666780128143728,0.6220977562479675,-0.39634672040119767,-0.21373336855322123,-0.39049069536849856,-0.3044187529012561,0.8048409824259579,0.8857689425349236,-0.20180304441601038,0.2729699374176562,0.7329793977551162,0.4369185911491513,-0.5223759217187762,-0.5567666725255549,0.8665203708223999,0.9228843147866428,-0.8638039254583418,-0.3633579290471971,0.4552295682951808,0.6996243349276483,-0.8539691907353699,0.7519612670876086,0.12974909087643027,-0.6478321002796292,-0.6209085155278444,-0.9769118293188512,0.36766612716019154,0.7627575099468231,0.267229329328984,-0.5245543625205755,-0.15213750628754497,0.9880889067426324,0.44270835211500525,0.7516678278334439,-0.7509051924571395,0.21753869485110044,0.9374207458458841,0.5818220898509026,-0.7852290533483028,0.250259627122432,-0.4661010755226016,0.686607941519469,0.9300251132808626,-0.6790021350607276,0.5279424921609461,0.4150957725942135,-0.03638601442798972,0.44644627906382084,-0.4448851477354765,-0.7862106054089963,0.3757454315200448,-0.4156461297534406,-0.8597868955694139,-0.5284521244466305,-0.5797111657448113,-0.12382183549925685,-0.026474565733224154,-0.7195363249629736,0.5884235799312592,0.07365505443885922,0.6462787920609117,-0.10174344759434462,-0.5626834095455706,0.7499665459617972,0.38197381095960736,0.4097747770138085,-0.39339108718559146,0.47471716441214085,-0.5249254140071571,-0.3975886949338019,0.04290454043075442,-0.22474702540785074,0.9950284948572516,-0.9919570754282176,-0.4905223255045712,-0.12405605474486947,0.7184113194234669,0.9746954599395394,-0.21150717278942466,0.7988019180484116,0.26885925186797976,0.44302211003378034,0.7982478942722082,0.6437833537347615,-0.6600294755771756,-0.0885573411360383,0.6147037660703063,-0.6832495527341962,-0.44780999049544334,0.8908473760820925,-0.3395561221987009,-0.9704501288942993,-0.26579913683235645,0.2992634563706815,0.8847177736461163,0.5715413019061089,0.03830865863710642,0.3877554754726589,-0.18411157792434096,0.6380344345234334,0.9423841191455722,0.2324387296102941,0.8985922602005303,0.4906356777064502,0.12819970771670341,0.5325542232021689,-0.336041450034827,-0.18776877271011472,0.8548125978559256,0.38435507053509355,0.9286314900964499,-0.21659138426184654,0.33486444503068924,0.44514781469479203,-0.25091002229601145,-0.973018133547157,0.24500970914959908,-0.9632842233404517,0.8584904996678233,-0.9227545186877251,-0.1788584254682064,-0.7240320630371571,-0.22185005247592926,-0.17613403545692563,-0.29557668790221214,0.19870537240058184,0.5214632200077176,0.15231982991099358,-0.08509123371914029,0.454946706071496,-0.869445329066366,-0.368564666248858,-0.714350217487663,0.8435668768361211,-0.5099087837152183,0.9959076712839305,0.6096210568211973,0.7662536562420428,0.34136351477354765,-0.2761142682284117,-0.7686820258386433,-0.5526172677055001,0.8339248830452561,0.3133571376092732,-0.7890800656750798,0.11203709244728088,0.25164001109078526,0.8522784584201872,-0.8105028760619462,0.1468568560667336,0.8589376122690737,-0.16927553666755557,0.38115878542885184,-0.05599625362083316,-0.46891891304403543,-0.39216353232041,0.9165136106312275,-0.778088609687984,-0.3307209899649024,0.8886301745660603,-0.3438286348246038,0.7287749378010631,-0.5127548412419856,0.08380277547985315,0.11500982893630862,0.3927028984762728,0.9607258667238057,0.9742563185282052,-0.4963999488390982,-0.678410760127008,-0.7494024941697717,0.34020992182195187,-0.9830247960053384,-0.6566384579055011,0.2874346817843616,-0.7888953448273242,0.6614115000702441,0.09615303901955485,-0.9806963605806231,0.00251868087798357,0.034586514346301556,-0.6058006542734802,-0.3624877007678151,-0.5265040555968881,0.3518511960282922,-0.9548539835959673,0.0779011850245297,0.5158616285771132,0.9363656891509891,0.4601100869476795,-0.2779769478365779,-0.4656853536143899,0.8612104607746005,-0.8907700311392546,-0.21902916301041842,0.23897731816396117,-0.4921562266536057,-0.6635592891834676,-0.4842867571860552,0.7232514508068562,0.2567920358851552,0.19047602685168386,-0.45666240993887186,-0.6714523714035749,-0.052196105010807514,-0.958175000268966,0.5804592319764197,0.04050903860479593,0.07162319496273994,0.6911369073204696,-0.36050544353201985,0.778154528234154,-0.6436016946099699,0.6658911276608706,-0.1919335681013763,-0.13284176914021373,-0.951269602868706,0.6524284561164677,-0.687620653770864,-0.7423503897152841,0.38819448137655854,-0.26628338638693094,0.10570825403556228,0.22019949927926064,-0.6643089102581143,0.6482821903191507,-0.07613192079588771,-0.3712245812639594,0.1968705840408802,-0.09524855436757207,-0.6900442312471569,-0.1780370739288628,0.9761358583346009,-0.35832682764157653,-0.8629208905622363,-0.2444677772000432,0.9470344381406903,-0.2163604092784226,-0.8030359642580152,0.30860655242577195,0.7725397194735706,0.7136642779223621,-0.8949467237107456,-0.4533150619827211,0.45440478902310133,-0.5176344336941838,0.014197813346982002,0.9386055856011808,-0.7180384784005582,0.5005661938339472,0.3384404322132468,-0.37841057451441884,0.828631219919771,0.08719775266945362,0.846818957477808,0.2496746382676065,-0.5825213510543108,-0.7409845246002078,0.6265928270295262,0.5272032106295228,-0.8880891241133213,0.24423790583387017,0.8339825207367539,0.010259110480546951,0.28075571823865175,0.4191935248672962,0.05538165709003806,-0.8395891673862934,-0.6968142818659544,0.5107260635122657,0.7238693009130657,0.18083035573363304,0.9004960651509464,-0.392520634457469,-0.3145870007574558,0.9386888900771737,-0.616692497394979,-0.9078090535476804,-0.9252440053969622,0.1332517359405756,-0.6338160810992122,0.5489592491649091,0.27410341845825315,-0.21088598296046257,0.8508406025357544,0.34497291781008244,0.4160822592675686,-0.24406763212755322,0.46437243511900306,0.5117811770178378,-0.8744064480997622,0.16446621576324105,0.5903006331063807,0.723883424885571,0.8001418858766556,-0.3154433062300086,0.6440342902205884,-0.8533598477952182,0.1256617563776672,0.8413345068693161,-0.47325308434665203,0.19650281826034188,-0.4977585361339152,-0.08221772033721209,-0.09236745676025748,-0.18338610418140888,0.35003962414339185,0.5103323948569596,-0.9897513496689498,0.6289103189483285,-0.84998435433954,0.15957842860370874,-0.3880280642770231,-0.9556579738855362,0.6651585972867906,-0.7515399656258523,0.5014254846610129,0.5060307984240353,-0.24848016630858183,-0.4262439380399883,0.9226295272819698,-0.6163257900625467,0.14465539250522852,-0.13528872234746814,-0.5759308841079473,0.3880329211242497,-0.07709325989708304,-0.1561739258468151,0.5354461669921875,-0.8769576014019549,0.9420877401717007,-0.26232305029407144,-0.7752330061048269,0.4241879330947995,0.8257671147584915,0.2540898872539401,-0.6024679746478796,0.7526763104833663,0.9740696684457362,-0.49931488651782274,0.8050568201579154,-0.4639278957620263,0.06178442621603608,-0.6368144489824772,0.9690323760733008,-0.899132848251611,0.058719654101878405,0.15028741164132953,0.4912445219233632,0.02223643846809864,-0.8531801137141883,-0.4109407034702599,0.8965889201499522,0.35473449528217316,0.38527964567765594,-0.8375010890886188,-0.2997096530161798,0.4783356422558427,-0.13102092035114765,0.06216988479718566,-0.4711463451385498,0.12323106080293655,0.6988542941398919,-0.8322946559637785,0.12314314860850573,-0.3180365744046867,-0.6013194308616221,-0.8827840965241194,0.6696087620221078,0.8177595343440771,0.752357644494623,0.5384826203808188,0.469697592779994,-0.4264023834839463,0.3116676229983568,0.23288078140467405,-0.9460497088730335,-0.30517762526869774,0.5193230244331062,-0.7057903716340661,-0.7495965152047575,-0.7998061580583453,0.5432142242789268,0.6233554156497121,-0.346210443880409,0.02575738774612546,0.4743839530274272,0.574203000869602,-0.5137419309467077,-0.19710814114660025,0.3083462789654732,-0.23494655126705766,0.15630541369318962,0.983211422804743,-0.38365180138498545,0.906032885890454,-0.8884361409582198,-0.416492460295558,0.5301032620482147,-0.0582750434987247,-0.8838382777757943,-0.294704114086926,-0.330248876940459,0.32440752908587456,-0.5965131372213364,-0.6782673024572432,-0.4583873115479946,-0.05737632093951106,-0.6815601722337306,-0.9661972927860916,-0.9209687043912709,0.12053382163867354,-0.966462176758796,0.8461491586640477,0.7759185670875013,-0.9776662876829505,0.30147655168548226,0.9291711864061654,0.7428615200333297,-0.44705673353746533,0.9973563021048903,-0.150622948538512,0.20809434913098812,0.8905486757867038,-0.29610477294772863,0.20020318683236837,0.9370280746370554,0.07532132836058736,-0.30171812511980534,0.6248341677710414,0.608371720649302,0.22921753767877817,-0.9650680283084512,-0.6323974188417196,0.18135003047063947,0.49271473614498973,0.7937033209018409,0.06323037296533585,-0.8527303161099553,-0.5109057878144085,0.7849060497246683,0.46314488910138607,0.1431410936638713,-0.33940371545031667,-0.519845096860081,0.35903529124334455,0.28348679887130857,0.8594225044362247,0.8824819531291723,0.3860092218965292,0.025371236260980368,0.42970934975892305,-0.9546314277686179,-0.7116527575999498,-0.5147682749666274,0.3141975263133645,-0.3799303211271763,-0.8742926497943699,0.5496465289033949,-0.7578109037131071,0.7451548557728529,0.38048279425129294,-0.4946058355271816,-0.0607691234908998,0.5174845112487674,0.440653745085001,-0.11819235142320395,-0.1288694767281413,-0.7764100474305451,0.3053977880626917,0.8719485527835786,-0.722257939632982,-0.612195965833962,0.0334684532135725,-0.48983841156587005,-0.7171934139914811,0.6134626865386963,-0.9956768313422799,-0.4279141630977392,-0.06553751789033413,0.8779237940907478,-0.75481957802549,0.5072148540057242,-0.055207026191055775,-0.4612190052866936,-0.8282171571627259,-0.5408310904167593,0.7482535149902105,0.8260083100758493,0.7723969062790275,0.048017042223364115,-0.10867868177592754,0.5264446563087404,0.652882591355592,-0.5581322526559234,0.02723385253921151,-0.16117471596226096,0.9493663292378187,-0.18731606425717473,-0.6711104037240148,0.3196295783855021,-0.3741004657931626,-0.6677787457592785,0.21405432652682066,0.15952387312427163,-0.4333553337492049,-0.8070850158110261,0.1970975617878139,-0.09996826620772481,-0.011997229419648647,-0.6826986083760858,-0.8814537515863776,0.006270730402320623,0.749054002109915,-0.6288804514333606,-0.5223892205394804,-0.6037288289517164,-0.8154122601263225,-0.5995918838307261,0.39090224215760827,0.06256317347288132,-0.9831144311465323,0.11672929488122463,-0.20114814303815365,-0.383817617315799,0.3838290926069021,0.8048068312928081,-0.47242223750799894,-0.47893392527475953,-0.3599895676597953,-0.06037019845098257,0.006364510394632816,0.9574694745242596,-0.43877961160615087,-0.20159424794837832,-0.5782346460036933,-0.32723372895270586,-0.16615193150937557,0.7895555552095175,-0.4814198981039226,-0.772803143132478,-0.1308122775517404,0.6344936015084386,0.44865207374095917,0.11465377453714609,-0.8249725680798292,-0.8213328877463937,0.8686082209460437,0.19601909490302205,-0.5532217463478446,-0.33604561537504196,0.474526422098279,0.173416034784168,-0.3196978629566729,0.48138194624334574,0.8152438858523965,0.09706798288971186,0.9674025774002075,0.6806741287000477,-0.9421466151252389,-0.40125848865136504,0.04876027861610055,-0.6591226276941597,0.1604285896755755,-0.8424659264273942,0.7471197517588735,0.29360794089734554,0.9358115699142218,-0.5342698539607227,-0.0314533831551671,-0.034944388549774885,-0.9679054203443229,0.9476935444399714,0.8071060539223254,-0.44655980402603745,-0.8361200480721891,-0.05530937295407057,-0.6333029996603727,-0.3481776020489633,-0.6625138898380101,0.42952470015734434,0.7041029366664588,0.03782590292394161,0.9799528107978404,-0.028457535430788994,0.3145683640614152,-0.1666857353411615,0.0297526977956295,0.43228865461423993,0.03845907235518098,0.4287453470751643,0.04800368566066027,-0.21137831080704927,-0.5587723692879081,-0.551220681052655,0.2985976100899279,0.8760215975344181,-0.43915523681789637,0.43882499169558287,-0.7050051661208272,-0.4890628741122782,-0.36655385373160243,0.1523543344810605,-0.15658127143979073,0.6857784148305655,0.22438222263008356,-0.12313403375446796,0.4486618950031698,0.7574369269423187,-0.38855253625661135,-0.054584805853664875,0.5057907444424927,-0.8139983187429607,-0.18537112744525075,0.022638948634266853,-0.15798850869759917,-0.9442512183450162,-0.6018430320546031,-0.023647490423172712,0.29037833539769053,-0.5282621388323605,0.7476504719816148,-0.39089837297797203,0.2784948251210153,-0.02180181909352541,-0.2812390457838774,0.8162662955000997,-0.7883861404843628,0.8086984516121447,-0.11435488658025861,-0.3202529326081276,0.14323031855747104,-0.052853009197860956,-0.6930439118295908,0.21102112997323275,0.6383915296755731,0.7142658648081124,0.6518526915460825,0.22167701739817858,0.8588524619117379,0.4072694997303188,-0.10522603429853916,0.32862902991473675,-0.514211461879313,-0.13299310766160488,-0.5465705534443259,0.5783494436182082,-0.0037233647890388966,-0.4323385041207075,0.12966075353324413,0.2298684800043702,-0.783542403485626,-0.39679783768951893,-0.5597787480801344,0.5938428384251893,0.5670688357204199,0.6337678623385727,-0.8120398498140275,-0.39914732007309794,0.5175386378541589,0.3011775594204664,0.5530995409935713,0.4552224101498723,-0.16153165325522423,0.5938043561764061,0.020999055355787277,0.35187103878706694,-0.8921772581525147,-0.31700237980112433,0.7190130092203617,-0.23197474470362067,-0.22678057244047523,-0.6188518977724016,0.6986121414229274,0.2305247886106372,0.5247951410710812,-0.06978115392848849,0.22518284060060978,0.2589586302638054,0.21796011086553335,0.31545150745660067,-0.15411609830334783,0.30650588124990463,-0.2005215985700488,-0.6336273071356118,0.17647305503487587,0.3282640469260514,0.5157464421354234,0.39059257647022605,0.04159745620563626,-0.3726094337180257,-0.7356700128875673,0.2644854518584907,0.13856444414705038,-0.5186592056415975,0.5531335989944637,-0.15043331822380424,0.1888985112309456,-0.2274673623032868,-0.06330992560833693,0.5845798910595477,0.7797835152596235,0.1260331105440855,-0.48137412685900927,-0.9060045322403312,-0.7294331877492368,-0.9557942948304117,-0.021049001719802618,-0.4350091624073684,0.8943757629022002,-0.5492198648862541,-0.4773094276897609,0.8896683882921934,-0.5955095840618014,0.4128900682553649,-0.998651372268796,0.5107575641013682,0.3292033658362925,-0.7649372890591621,-0.4079777644947171,0.5121026118285954,0.9559184522368014,-0.794218567200005,-0.215969146694988,-0.277664587367326,0.5399060505442321,-0.05915628233924508,-0.3031967054121196,0.7372010429389775,-0.03570315381512046,-0.8489365596324205,-0.15780558483675122,-0.5784683139063418,-0.35683240136131644,-0.5826497413218021,0.41224495647475123,-0.7199593563564122,-0.27438883297145367,-0.37182816956192255,0.6521246712654829,-0.15104996040463448,0.65791553305462,0.5521214161999524,0.9098543832078576,-0.6239957199431956,0.1589557551778853,0.953810216858983,0.27985957404598594,0.11141937645152211,0.14075217209756374,-0.4487720117904246,0.5034727943129838,0.8520859088748693,0.8254719558171928,-0.27348137833178043,0.10656965477392077,-0.5646182675845921,-0.8870977582409978,-0.17814176250249147,0.4538209978491068,0.9754029801115394,-0.47043258557096124,0.019677913282066584,-0.8674183255061507,-0.11268489621579647,-0.911395626142621,-0.4351312485523522,0.5714617790654302,0.8195474958047271,0.5398772289045155,0.3806374263949692,0.8421214548870921,0.37267740117385983,0.46936653926968575,-0.9994354397058487,0.13375945575535297,0.9595422921702266,-0.3682708228006959,0.6679164189845324,0.5252061560750008,0.1429651570506394,-0.7764998078346252,0.9791107913479209,0.8746416959911585,0.7781459102407098,-0.6287661539390683,-0.7288248152472079,0.25814614770933986,0.7742585530504584,-0.24417269323021173,-0.5003316490910947,0.5946485567837954,-0.3173357527703047,-0.06175882741808891,-0.23099444806575775,0.9762229104526341,0.7554756365716457,-0.09162315865978599,-0.29245246574282646,-0.9160243873484433,0.09881210792809725,0.9994089282117784,0.4479743023402989,-0.7139914687722921,-0.2942992984317243,-0.005603534635156393,0.7031519436277449,0.6030441303737462,-0.3461845242418349,-0.8254651711322367,-0.2632387517951429,0.5537716378457844,0.9927869876846671,0.12745669903233647,0.4004634548909962,0.12030995497480035,-0.4449466113001108,0.8572575114667416,-0.6290300507098436,-0.44716518511995673,0.8717460962943733,-0.25345345167443156,0.6658346829935908,-0.45482541155070066,0.6193257002159953,-0.0820600027218461,-0.1681936657987535,0.37345350394025445,0.3702782206237316,0.7672867765650153,-0.321880045812577,0.2766697583720088,-0.5073161297477782,0.8878303924575448,0.04415653087198734,0.04123088717460632,0.11301382491365075,-0.22608039481565356,-0.7597013306804001,0.6543808882124722,0.2256847508251667,-0.21799625689163804,0.12674762029200792,-0.3003439069725573,-0.9336707442998886,-0.44128136429935694,-0.19693509070202708,-0.479878222104162,0.820354403462261,0.5123642184771597,0.2761914781294763,-0.7339853714220226,-0.34767960710451007,0.5825685397721827,-0.5234501077793539,-0.264055710285902,-0.5917976312339306,0.23064305307343602,0.588052075356245,0.7395507711917162,0.2653520028106868,0.6558305751532316,0.5879692640155554,-0.7355536511167884,-0.6332721188664436,0.3051881045103073,-0.5457461546175182,0.5312150819227099,0.2306474014185369,-0.48241000482812524,-0.4281130456365645,-0.9967406955547631,0.012753444723784924,-0.7406431194394827,-0.5043117580935359,0.0451326142065227,-0.1312901950441301,0.5955975502729416,0.3737985440529883,-0.2636839859187603,-0.6947374069131911,-0.6342833954840899,-0.9337853332981467,-0.7864783736877143,0.8711815951392055,-0.5938693368807435,0.39080567099153996,0.1766986413858831,0.25966157438233495,0.9675973458215594,-0.7398002701811492,0.7913657408207655,0.2667944566346705,-0.7516044634394348,0.7458263807930052,-0.9055912257172167,0.517347898799926,0.28391017159447074,-0.14074359415099025,-0.609957832377404,0.2923040264286101,0.026628124993294477,0.8020555395632982,0.9707681559957564,-0.4534990447573364,0.010412657167762518,0.43222230300307274,-0.745942241512239,0.8656575665809214,-0.46594095742329955,-0.5394991496577859,-0.46085263695567846,-0.9927983097732067,-0.5985430646687746,-0.2119695502333343,0.5522436159662902,0.19383527571335435,-0.45490750623866916,-0.8041635663248599,0.9861143412999809,0.6659755459986627,0.5228220876306295,0.8958371123299003,-0.33710753405466676,-0.9480435447767377,-0.7375462972559035,0.25712352665141225,-0.5289694634266198,0.734131685923785,0.19096546340733767,-0.6807576548308134,-0.608153363224119,-0.7332134428434074,-0.21317048091441393,0.10480390209704638,0.5946065089665353,-0.9882351974956691,-0.6103727743029594,0.7898490326479077,-0.34536743676289916,0.5258748047053814,-0.49923109682276845,-0.02997139608487487,-0.14763131411746144,0.2943776482716203,0.9106896761804819,0.23783057881519198,0.8143114377744496,0.8165551810525358,0.6529016196727753,0.1130566531792283,-0.8533676466904581,0.1353103960864246,-0.8887719763442874,0.444169984664768,-0.21654370613396168,-0.0007443106733262539,-0.52176847262308,-0.8172734207473695,-0.04292856669053435,-0.07027396745979786,-0.1409587529487908,-0.4035435928963125,0.7050233450718224,0.20068563800305128,-0.10425487952306867,-0.6554183671250939,-0.4720300384797156,0.8811676255427301,0.6720130350440741,-0.9837927990593016,-0.7516710036434233,0.44762461306527257,-0.9913945943117142,-0.38169986521825194,-0.6379666305147111,-0.5984969511628151,-0.24007702246308327,-0.7477568206377327,-0.6085321577265859,-0.31800020718947053,0.44049857277423143,-0.3299675243906677,-0.8155735698528588,-0.18849428370594978,0.9853237336501479,0.8980010412633419,-0.040823600720614195,-0.08628599252551794,-0.09474023710936308,-0.8802640619687736,-0.6186969554983079,0.06325742369517684,-0.740225765388459,0.5175053104758263,-0.13284050952643156,-0.09736763825640082,0.8981000296771526,-0.6366518489085138,-0.08583696885034442,0.43722565239295363,-0.07295511336997151,0.9158103223890066,-0.38961563212797046,-0.0917766964994371,-0.9023806364275515,0.99963364796713,0.7518477900885046,0.9435542882420123,0.5344587471336126,0.8043441665358841,0.009486322291195393,0.13702041655778885,0.22171789966523647,-0.0845010126940906,-0.5247994274832308,0.8030748153105378,-0.9420587872155011,-0.423239438328892,-0.6250819056294858,-0.6594384131021798,-0.9864024720154703,-0.9022961435839534,-0.40201346203684807,-0.7780917570926249,-0.6760576092638075,-0.26263827504590154,-0.9732844410464168,0.35797286545857787,-0.043811754789203405,-0.2376955240033567,0.019089651759713888,-0.19724913174286485,0.6717071780003607,0.9616568377241492,0.08356237737461925,0.1410842933692038,0.39982376992702484,0.8869057702831924,0.6087965699844062,0.2858993816189468,-0.09378018090501428,-0.8787907231599092,0.5471611581742764,0.19151458842679858,0.7740390012040734,0.8272055261768401,0.9023013287223876,0.98533702082932,-0.9082582262344658,0.19752435805276036,-0.9549932703375816,0.4541988568380475,-0.7718311855569482,0.06734889838844538,-0.4070827756077051,0.08879774995148182,-0.08574714930728078,-0.22864063922315836,-0.6195730385370553,0.5509376041591167,0.8509507975541055,0.1914180568419397,-0.636408303398639,-0.20841981889680028,-0.06077335076406598,-0.21770739275962114,0.7127330461516976,-0.8661135705187917,0.6140136704780161,-0.4682371108792722,0.22821004828438163,0.7144095730036497,0.3691896442323923,0.6291681481525302,0.7587632220238447,-0.4177630729973316,-0.3469780436716974,-0.4210581718944013,-0.5289348647929728,-0.3227262324653566,0.007946933154016733,-0.4513149317353964,0.4193087196908891,-0.7700709416531026,-0.5613782182335854,0.3956926576793194,0.6013244297355413,-0.6865795720368624,-0.6749263303354383,-0.06459560617804527,0.27947191800922155,0.12380341766402125,-0.35834618052467704,0.051985824946314096,-0.665497908834368,-0.09455250902101398,0.49782000528648496,-0.1318179201334715,-0.6682337825186551,0.19916074769571424,-0.02797673176974058,-0.5302641070447862,-0.648808874655515,0.41132114827632904,0.22614067373797297,-0.31872096797451377,-0.27167062275111675,-0.9417237704619765,-0.9005820997990668,-0.975443254224956,-0.3498701574280858,-0.5098868790082633,-0.7560669407248497,0.23215829906985164,-0.034516488667577505,-0.24230364430695772,0.3300619884394109,0.4289840799756348,0.3559721689671278,0.11913372343406081,-0.22444463893771172,0.34066707687452435,0.3599551022052765,-0.5311089917086065,0.6391537608578801,-0.44388723326846957,-0.14553547417744994,0.27807504311203957,-0.273330120369792,-0.3314600270241499,-0.752445078920573,0.7643085769377649,0.5681111114099622,0.8456018385477364,-0.1459418497979641,-0.23922427464276552,-0.7898071086965501,-0.6451961668208241,-0.8013388174585998,-0.7657853965647519,0.9101367271505296,-0.370272699277848,0.1380007858388126,0.1227511134929955,-0.1058967369608581,0.3169718272984028,-0.24903694028034806,0.5519246510230005,-0.8997278967872262,-0.9761747415177524,-0.7570217773318291,0.9292750572785735,0.3038754090666771,-0.7909785346128047,0.05654578981921077,0.9083792809396982,0.4023205363191664,-0.3904585177078843,-0.8071488877758384,-0.4928323565982282,-0.16645537875592709,-0.9306334597058594,-0.5284879305399954,0.36321354703977704,0.8328853393904865,-0.868088795337826,0.3868103390559554,0.7671621334739029,0.974454540759325,-0.6916310493834317,0.4296966134570539,-0.21255505550652742,-0.9811023790389299,0.5393675779923797,0.6453724303282797,0.7867240211926401,-0.3921726574189961,-0.49764601280912757,-0.149964926764369,-0.6949797198176384,-0.4634532583877444,-0.9476367989555001,-0.412887851241976,0.20818843552842736,0.7302082125097513,0.7127849580720067,-0.8205299959518015,-0.5189433884806931,-0.9222878646105528,-0.9440054171718657,-0.10169146908447146,-0.3929130067117512,0.13040117966011167,0.5227420506998897,-0.3797315969131887,0.8343507861718535,0.6430953191593289,-0.2112864558584988,0.2935807518661022,0.6319493060000241,-0.2796350703574717,0.6134408307261765,0.03945207688957453,-0.7411419651471078,0.9377910038456321,0.9564265427179635,0.5483658616431057,0.08402521396055818,0.07221159897744656,-0.23655158607289195,0.22450621891766787,0.06714252755045891,-0.9559657480567694,-0.924594291485846,-0.9782150257378817,-0.9442209461703897,-0.29418736696243286,0.9510673708282411,-0.4390235636383295,-0.7002660315483809,0.931458234321326,0.0500818295404315,-0.967749320436269,-0.09328188002109528,-0.8669091979973018,0.6739061083644629,0.8657791302539408,-0.14718188298866153,0.22829909715801477,-0.5353228799067438,0.9010784500278533,0.5276858061552048,-0.7142434972338378,-0.6267324429936707,0.43446779111400247,0.30807224847376347,0.0574989365413785,0.6749520134180784,0.3207878898829222,-0.20990653289481997,-0.5900783916004002,-0.06474471464753151,-0.8987639485858381,0.7397667998448014,-0.2885361318476498,0.8533234433270991,-0.7562257372774184,0.8081985865719616,-0.7934236223809421,-0.07105348538607359,-0.828250793274492,0.8511355035007,-0.017672888468950987,0.6587663795799017,0.5015378138050437,-0.004855186212807894,-0.05071229487657547,0.7547069978900254,0.031710013281553984,0.5124320886097848,-0.6986927194520831,-0.8676921725273132,-0.06250912370160222,-0.824190725106746,0.25347210094332695,0.7320363610051572,-0.8979734084568918,-0.11507093952968717,-0.3280373555608094,-0.5018551358953118,0.43741027545183897,-0.8069199090823531,0.8469234728254378,-0.5715563790872693,0.891587988473475,0.18460917100310326,-0.19389774976298213,-0.4356999429874122,0.9603127455338836,0.32917011808604,-0.022188162431120872,-0.4653322175145149,-0.37291194638237357,-0.3199650621972978,-0.13937197672203183,-0.6637033224105835,0.46478817285969853,-0.9143493585288525,-0.7170181679539382,-0.5458940421231091,-0.26895212614908814,-0.5286629223264754,-0.6116187409497797,0.9280546088702977,-0.31703645968809724,0.4214237183332443,-0.3286069454625249,-0.034208028577268124,-0.04042636090889573,-0.3800642276182771,0.6297057839110494,-0.5886553539894521,-0.7503286758437753,0.42594774486497045,0.6223709839396179,0.6801208821125329,0.47399240266531706,0.42184907803311944,0.8458584249019623,0.19289352698251605,-0.8247611802071333,0.8905149609781802,0.07173255505040288,0.6154525359161198,-0.04120801668614149,-0.4646088117733598,-0.5947791179642081,-0.3899251651018858,-0.09551217034459114,0.9912382988259196,-0.8251171326264739,0.7987979762256145,0.869103267788887,-0.8442014176398516,0.4010784523561597,-0.16187540348619223,-0.4373176726512611,-0.9553237003274262,-0.5283496212214231,0.03825619397684932,-0.3334681889973581,-0.7923277346417308,-0.2208523857407272,0.5213017845526338,-0.07041894644498825,-0.7666344395838678,0.4650304135866463,0.9351855013519526,-0.6181565243750811,0.14432408148422837,-0.8627051613293588,-0.42138955742120743,0.6594624645076692,-0.3868753705173731,0.8862750162370503,-0.06634121900424361,-0.5494552422314882,0.420889254193753,0.7831628061830997,0.9405797799117863,0.9684833488427103,-0.6496612098999321,-0.17009369749575853,0.87919732183218,0.9596908511593938,-0.7100881808437407,0.6062659570015967,0.17661263654008508,-0.9594339895993471,-0.6804674388840795,0.9130941778421402,0.20580522064119577,0.5524377818219364,0.6824513510800898,0.10716214310377836,0.8357923491857946,-0.9614019654691219,0.1266246079467237,0.6616422683000565,-0.3890930819325149,-0.23670608922839165,0.18884612154215574,-0.2404421647079289,0.6612877529114485,-0.5360831012949347,-0.6620249426923692,-0.7752380515448749,0.30590340960770845,0.1923571927472949,-0.9377787690609694,-0.6058928240090609,0.9683206551708281,-0.717107217758894,0.8332272339612246,0.2620854708366096,0.6873573851771653,-0.8811163981445134,0.847058642655611,-0.5539299589581788,0.1144749685190618,0.24379706662148237,-0.3435997050255537,-0.12165111768990755,0.7519334037788212,0.9042939427308738,0.6217929604463279,-0.7539927810430527,0.2917905882932246,-0.7272549951449037,0.3041544375009835,0.7236293996684253,-0.045415046624839306,-0.8010069080628455,0.4911298621445894,0.09699228079989552,-0.1083333264105022,0.9665911039337516,0.8730470757000148,-0.5739130014553666,0.01983372727409005,0.5015631439164281,-0.29751852713525295,-0.754537780303508,0.04607354197651148,-0.3213322199881077,0.07467061141505837,0.5822078930214047,0.8260440765880048,0.48625099938362837,-0.6876926817931235,-0.3644976243376732,0.8067235499620438,-0.581878405995667,-0.9566057547926903,0.22738921456038952,-0.9793156203813851,-0.3561639962717891,-0.5519497529603541,0.654442485421896,-0.002212607767432928,-0.5488633722998202,-0.8928367015905678,-0.5539289768785238,-0.13312788121402264,-0.7485805684700608,0.541974350810051,0.5629102266393602,0.13347258465364575,0.9973537125624716,0.7861147788353264,0.5544141824357212,-0.800155384466052,0.4931198060512543,0.07777620293200016,0.9440065231174231,-0.3991036666557193,-0.38624236453324556,-0.7164977202191949,0.7612227811478078,-0.9128654138185084,-0.09477677568793297,0.5847316146828234,-0.44139346294105053,0.9217361151240766,0.7120235986076295,0.5341958543285728,0.34020384727045894,0.5069556017406285,0.6215239139273763,0.6294558751396835,0.1627323580905795,-0.2600430208258331,0.18023932678624988,-0.9081071480177343,-0.1668113972991705,0.8372585885226727,-0.45063393376767635,-0.6347748874686658,-0.9574585519731045,0.13507360965013504,0.7666495419107378,0.337967271450907,0.4016233943402767,0.6626860969699919,-0.5860303551889956,0.9080243716016412,-0.3771533356048167,-0.2878159754909575,0.39418414793908596,-0.5936136306263506,0.9783555828034878,-0.2854102458804846,-0.15430294955149293,0.5666331835091114,-0.7012290148995817,0.578277591150254,0.7344586392864585,-0.08612656034529209,-0.2708222819492221,0.02760285045951605,-0.830512463580817,0.389070778619498,0.026386523619294167,-0.7890936844050884,0.05539903836324811,0.2377785393036902,0.8437644010409713,-0.1335732019506395,0.8326989999040961,0.7684914176352322,0.543172474950552,0.05532850744202733,-0.11650417884811759,-0.44257668824866414,0.9907093509100378,0.6557911243289709,-0.9621894401498139,-0.9420510525815189,0.8813273156993091,-0.562313633505255,0.46093260683119297,0.969752533826977,-0.9161370280198753,0.06784832710400224,-0.5220326692797244,0.40282596834003925,0.28377659525722265,0.7606114810332656,-0.319868765771389,0.3202969185076654,0.6220819163136184,-0.08025593683123589,0.4667803468182683,0.22795855533331633,0.8336250456050038,0.15384476026520133,0.021559159737080336,-0.2646705899387598,0.5856707207858562,-0.7596487943083048,0.8304754220880568,0.6647645840421319,0.7899039965122938,0.7944823931902647,-0.5185418366454542,0.812240204308182,-0.9241376691497862,-0.9871857729740441,-0.5840804167091846,-0.6384929558262229,0.6396207534708083,-0.5098175299353898,-0.6539821168407798,-0.13529533799737692,0.6859178594313562,0.3192578707821667,-0.9221993032842875,-0.41939780628308654,-0.398093287833035,-0.6870933170430362,-0.5220926506444812,0.07286833506077528,-0.13682526722550392,-0.1856020619161427,0.569216794334352,0.7441697060130537,0.15488156815990806,-0.7771077891811728,0.5164558771066368,-0.6008260156959295,-0.12111811898648739,-0.981848934199661,-0.43761604791507125,0.697278412990272,0.7609328520484269,0.7610691138543189,0.9047531122341752,0.9116702531464398,-0.693931863643229,-0.9483994361944497,-0.8917971667833626,0.20980804646387696,-0.3786105811595917,-0.6888503916561604,0.7198918294161558,-0.03229049453511834,-0.19549976335838437,-0.4675864544697106,0.6669800328090787,-0.23085166234523058,0.7441845871508121,0.8264064406976104,-0.0031889337114989758,-0.15785292768850923,-0.966820721514523,-0.02880328381434083,-0.36533558182418346,0.6683593806810677,-0.22002364648506045,-0.7573632253333926,-0.7621186296455562,0.49826102796941996,0.6667352775111794,0.012984734494239092,0.5185135728679597,-0.479965859092772,0.918040209915489,0.7746539013460279,0.700438336469233,0.12541820714250207,0.31740279542282224,0.249773436691612,0.5588245331309736,0.7549135889858007,0.7043588040396571,0.2792636160738766,0.32230163272470236,-0.08512697694823146,0.28251139307394624,-0.5921875946223736,-0.8541682041250169,-0.08804048178717494,-0.1521662655286491,-0.7511644777841866,0.8520968034863472,0.8093968546018004,-0.6411100621335208,-0.11543599236756563,0.44091822346672416,-0.00039164163172245026,-0.574504176620394,0.36650262027978897,-0.15624184953048825,-0.7268474851734936,-0.22168697835877538,0.6139262798242271,-0.09285300550982356,-0.13297192472964525,0.4206090187653899,-0.9227514350786805,-0.7115884637460113,0.8739335471764207,-0.9391730823554099,0.4517098115757108,0.6933927088975906,0.9562812298536301,-0.186205277685076,0.7166942907497287,-0.5704314382746816,-0.24274370074272156,-0.22347539430484176,-0.8223450905643404,-0.4549985071644187,0.2095880121923983,-0.45555302454158664,-0.7251471811905503,-0.9517691810615361,0.7628958499990404,-0.08399400906637311,0.9537464748136699,-0.4860104061663151,0.7556043132208288,-0.9536144030280411,-0.5099538336507976,0.6768199340440333,-0.5487838550470769,0.015402222517877817,0.8237889865413308,-0.04791485285386443,0.09858685825020075,0.5376696358434856,-0.9274427103810012,0.14938192255795002,0.9519139328040183,0.6429346888326108,0.19393798569217324,-0.19638998247683048,0.7671138015575707,0.16901179403066635,-0.9903991003520787,-0.04316211864352226,-0.5095574487932026,-0.49254206009209156,-0.7570920214056969,0.1516440948471427,-0.4690654934383929,-0.569855862762779,0.954460580367595,-0.34403073927387595,-0.9075250928290188,-0.1254202974960208,0.7133373888209462,-0.6563124423846602,-0.6656317068263888,-0.8205200927332044,-0.9744476974010468,-0.9938867399469018,-0.851120593957603,-0.4217755268327892,-0.4651733268983662,0.8518472816795111,0.7140230564400554,0.9295815411023796,-0.626074702013284,-0.40274629555642605,0.2396787228062749,0.34864720422774553,-0.45714927138760686,-0.11805743537843227,-0.09270784724503756,-0.6122612883336842,0.8950531994923949,0.14756180020049214,0.2178606907837093,-0.1454562023282051,-0.8623419599607587,-0.35408591479063034,-0.883079073857516,-0.05649665277451277,0.4788883216679096,0.09744469029828906,-0.6378153008408844,0.9122767518274486,0.8008078620769083,-0.4623780082911253,-0.5711997305043042,0.20567764109000564,-0.2556323907338083,0.8218424348160625,-0.27936149854213,0.17383772088214755,-0.4777014390565455,0.6435086135752499,-0.8404035875573754,-0.5247484860010445,-0.4422431322745979,0.4156570481136441,-0.16081686550751328,-0.2341503002680838,0.29046877287328243,-0.5080167991109192,0.46721581276506186,0.7526700184680521,-0.3623800757341087,-0.1705601653084159,0.9484441834501922,0.93513652542606,0.42297731805592775,0.0693995296023786,-0.07538508903235197,0.7673947750590742,-0.8296464784070849,-0.47430246649309993,-0.8075161180458963,0.8264874177984893,0.9731430769897997,-0.5473852194845676,-0.32946758437901735,0.14089645771309733,0.6864926945418119,0.4128630864433944,-0.7208851734176278,0.9132551322691143,-0.1781295663677156,-0.5830200160853565,-0.4140693354420364,0.8602661183103919,-0.24844994116574526,-0.7547107003629208,-0.7652309788390994,-0.3012627246789634,0.5542583456262946,-0.14123272290453315,-0.94664639653638,-0.20020071556791663,0.09967671148478985,0.20273983385413885,-0.5313134142197669,-0.6157534061931074,-0.4610544159077108,0.3607862056232989,0.9398993840441108,0.6670167706906796,-0.681836936622858,-0.7766861477866769,0.40157320629805326,-0.9711881713010371,0.42796188686043024,-0.3243270115926862,0.010484888218343258,0.9546742374077439,-0.5421186042949557,-0.3938395190052688,0.5124821569770575,-0.843835880048573,0.05665444117039442,0.3805918414145708,0.40345814311876893,-0.3642730372957885,0.3510903799906373,0.43932206043973565,0.14991960814222693,-0.5810958566144109,-0.8243174836970866,-0.744215473998338,-0.9602218302898109,0.6961257006041706,0.7247268175706267,-0.6525506973266602,-0.8171366527676582,0.6686315862461925,0.2282486790791154,0.5492500527761877,-0.5114929103292525,-0.055311582051217556,0.2952948440797627,0.1543975123204291,0.9090591836720705,-0.732650700956583,-0.30233484134078026,0.6299663977697492,-0.2786107286810875,-0.9682935429736972,0.9163248320110142,-0.38527408009395003,0.3642737087793648,0.46677885251119733,0.9788156906142831,-0.36168206250295043,0.8440562724135816,0.19845887552946806,0.8644073833711445,-0.5610732440836728,0.728545649908483,0.41744570434093475,0.4605753915384412,0.4512805016711354,-0.5712190959602594,0.4885653695091605,-0.49407394230365753,-0.15966990310698748,0.2749059135094285,0.8516875337809324,-0.9856944447383285,0.5958358282223344,-0.9706145008094609,0.9539503618143499,-0.7014232338406146,-0.5988567769527435,-0.7612767051905394,0.22387254936620593,-0.3972183084115386,0.4133251402527094,0.6303978194482625,-0.4990806169807911,-0.05330964410677552,0.7393282218836248,-0.3663809634745121,0.8680474022403359,-0.22007274394854903,0.8468970688991249,0.8519731163978577,0.6690038722008467,0.2897860868833959,0.4334284155629575,0.3264631391502917,-0.42186958948150277,0.9980415683239698,-0.42213794542476535,0.9217080161906779,-0.628744491841644,-0.09453816758468747,-0.005783355329185724,-0.3507384308613837,-0.9734583566896617,-0.6141982325352728,-0.7256285715848207,-0.9235696881078184,-0.5727522992528975,0.7087296489626169,-0.2350395079702139,-0.7758077508769929,-0.2727876538410783,-0.10244251880794764,-0.3631178168579936,0.18145832978188992,0.6848911386914551,-0.18873427296057343,-0.45108283311128616,0.9460688256658614,-0.7756731752306223,0.15483192494139075,-0.2926360140554607,-0.17601904412731528,0.10181422205641866,-0.29846230847761035,0.16376052191480994,0.648053209297359,-0.9364536632783711,0.6026821061968803,0.6885669203475118,0.16164436284452677,0.48042035568505526,-0.7372474232688546,0.08939456101506948,-0.8430473590269685,-0.28594557475298643,-0.11772857652977109,0.21063025249168277,0.5061966497451067,0.23146949708461761,0.09624293027445674,0.46735544549301267,-0.6636891579255462,-0.49730949895456433,-0.5789889548905194,-0.7487076069228351,0.18607216328382492,0.7194846104830503,-0.2633603601716459,-0.7778870514594018,-0.8216090258210897,-0.41820213524624705,-0.8361353352665901,0.7611733404919505,0.13224983168765903,-0.1265393146313727,0.37760064378380775,0.7277738419361413,0.4746048622764647,-0.5157700022682548,-0.003688882105052471,-0.43786737974733114,0.17585265776142478,-0.08755775401368737,-0.431364041287452,-0.14113741600885987,-0.18739199405536056,0.9478730820119381,-0.7293414236046374,0.014153895433992147,0.372720078099519,-0.17982241325080395,0.7300790511071682,0.40909954626113176,-0.5715785752981901,0.2573932367376983,0.9206830677576363,0.3643855908885598,-0.4566006693057716,0.5753553695976734,-0.9106148206628859,0.6821945104748011,-0.34867623448371887,-0.021298755891621113,-0.22030548844486475,0.6661936845630407,0.08083197101950645,-0.479558446444571,0.47804099787026644,-0.8060321612283587,-0.9275900227949023,0.33765692403540015,-0.07173653785139322,-0.046338134445250034,0.717383817769587,-0.6074906303547323,0.5282830065116286,-0.6089055850170553,-0.7880128254182637,0.9835509872063994,-0.16854721773415804,0.9547414537519217,-0.9293884243816137,-0.5125629096291959,-0.10458495002239943,-0.9407097627408803,0.43171792663633823,0.38235482573509216,0.1577813900075853,-0.03380007715895772,-0.4100837535224855,0.7823758842423558,-0.6128361034207046,0.6809609504416585,-0.2854513479396701,-0.659737201873213,-0.06317083816975355,0.6482357126660645,0.131518199108541,0.46238091168925166,0.3230267954058945,0.759411767590791,-0.16167305409908295,-0.7782410345971584,0.19015296828001738,-0.9633247964084148,0.11032124003395438,0.126727893948555,-0.4341972819529474,-0.7424502996727824,0.9595818831585348,0.09806800307705998,0.046062187757343054,-0.6721620513126254,0.698725838214159,-0.5675555383786559,-0.5079729524441063,-0.7241589953191578,-0.19483771547675133,-0.45072867535054684,-0.06887108646333218,0.6028564306907356,-0.266668560449034,-0.4453593650832772,0.023836939595639706,-0.4317047679796815,0.09427452879026532,-0.7813400207087398,0.4266915749758482,0.19573764177039266,0.47907455591484904,-0.5406861216761172,-0.6376486723311245,-0.5399483628571033,0.39388882787898183,0.6656408146955073,-0.5578488372266293,-0.13111863331869245,0.36672056606039405,-0.45774524100124836,-0.8395631774328649,-0.3573283585719764,0.9348583379760385,-0.6941485861316323,-0.6757190688513219,-0.020095229148864746,0.606528140604496,0.9680798389017582,-0.7871455536223948,0.23636939469724894,-0.03125886945053935,0.14486657781526446,-0.977947932202369,-0.07876599999144673,0.7641310323961079,-0.7897613612003624,-0.5082857287488878,-0.7029451332055032,-0.38060618843883276,0.21283965324983,-0.3579194243066013,0.8729465235956013,0.9658376560546458,-0.7000487390905619,-0.9329217867925763,0.21172965923324227,-0.16604556841775775,-0.10706390906125307,-0.9481603805907071,-0.525027783587575,-0.0517981736920774,0.4803514997474849,0.7951485300436616,-0.17509675864130259,0.8960879221558571,-0.5737161561846733,-0.868438052944839,-0.16452450770884752,-0.34660083893686533,-0.7851305399090052,0.8429647060111165,0.01991244312375784,0.5784511901438236,0.7018074952065945,0.6041205259971321,0.776824894361198,0.25231142062693834,-0.1665232195518911,0.98042206838727,-0.9836659412831068,-0.7086165132932365,0.9913503150455654,-0.49797291681170464,0.48886178247630596,-0.7215042193420231,-0.07917181542143226,-0.7184982453472912,-0.6780433780513704,0.9859450473450124,-0.2195666772313416,0.015440496150404215,-0.08231407636776567,0.06487901695072651,-0.7381043396890163,0.8502769847400486,0.35298024490475655,-0.9361855806782842,0.7605535802431405,0.9829806322231889,-0.2728012101724744,0.11729107052087784,0.6340735829435289,0.5516683170571923,0.1779807172715664,-0.1942660822533071,0.9926588484086096,0.3140153819695115,0.05372649431228638,-0.15656196605414152,-0.8451506290584803,0.5028606187552214,0.7442820742726326,-0.7413000022061169,0.5996291902847588,-0.7419115332886577,0.16311959084123373,-0.11850732564926147,-0.9998504710383713,-0.7934420122765005,-0.07489993562921882,0.7338137845508754,-0.44101705867797136,-0.3523929500952363,0.1687662131153047,-0.9632252459414303,0.021442522760480642,0.6727476725354791,0.6625761133618653,-0.9196246922947466,0.8658777661621571,-0.11764016281813383,-0.6276591140776873,0.4379297411069274,-0.5844749449752271,0.2327811219729483,0.25591928604990244,-0.2761418274603784,-0.008743264246731997,0.2709323177114129,-0.2514721234329045,-0.7688308865763247,-0.37502401741221547,0.4076920822262764,-0.7957848780788481,0.17706518666818738,-0.9062062711454928,-0.36409145314246416,-0.16120525635778904,-0.06581581942737103,-0.9306829120032489,-0.22963189473375678,-0.6277149748057127,0.1976798251271248,-0.4371891962364316,-0.045804078225046396,-0.1386981587857008,-0.2871429594233632,-0.3851718786172569,0.8444998930208385,-0.05408522626385093,0.260530945379287,-0.274003847502172,-0.5677693905308843,0.8833621148951352,-0.48488200828433037,0.7230305490083992,-0.626108581200242,-0.012282162439078093,-0.4886896717362106,0.5811991891823709,-0.7149906656704843,-0.8348826989531517,0.6460913862101734,0.13185571553185582,0.6997227296233177,0.4227426052093506,0.08220794936642051,-0.7159834448248148,0.8484858544543386,-0.032854191958904266,-0.44726459961384535,0.9174837921746075,0.8648975067771971,0.8743523545563221,-0.3499361565336585,0.5580502771772444,-0.4942836598493159,-0.037584283854812384,0.6246630591340363,-0.35703737009316683,0.9622614062391222,0.08600720763206482,0.18781394558027387,0.9991125091910362,0.9794592927210033,-0.914120112080127,0.5814773263409734,-0.7476445087231696,-0.7284470684826374,0.782005222979933,-0.7857478284277022,0.14150748075917363,-0.48275873670354486,0.2480613524094224,-0.4810810121707618,0.14271425735205412,-0.7786186384037137,0.2641119007021189,0.3300392795354128,-0.9834301588125527,0.7008444089442492,0.2160659385845065,0.8380320272408426,0.12802285235375166,-0.09591928124427795,0.1815836327150464,-0.09866778738796711,0.061686764005571604,-0.34089147252961993,-0.9790578559041023,-0.8634713087230921,-0.8608548520132899,-0.06281192554160953,-0.21170177683234215,0.8677411181852221,0.3010890451259911,-0.05855984752997756,0.6247215708717704,0.622870453633368,0.3191089001484215,0.5928342645056546,0.1446440382860601,-0.32548301201313734,0.8473921781405807,0.4451275411993265,-0.20408141892403364,-0.7024728083051741,-0.42848512809723616,-0.33978224638849497,-0.05692758969962597,0.43110535526648164,-0.4531280193477869,-0.6841272283345461,-0.6812659339047968,0.7812133845873177,0.58670510398224,0.7237823847681284,0.847351856995374,-0.4338621352799237,0.830378363840282,-0.9761353135108948,-0.7444851542823017,-0.2997511038556695,0.6087810029275715,-0.12264821538701653,-0.4193921317346394,-0.46322368551045656,-0.01427516108378768,-0.59155552694574,-0.16779173351824284,-0.49851791793480515,0.7000031885690987,-0.7288246415555477,0.7522372924722731,-0.09894330939278007,0.22329458827152848,0.7222087737172842,0.5169236324727535,-0.9528325414285064,0.06502766394987702,-0.3237889604642987,-0.6657869187183678,0.718614038079977,0.9637514059431851,0.4290450322441757,-0.21637890907004476,0.23498273082077503,0.42715751752257347,-0.03076310269534588,-0.7776720547117293,-0.34762006951496005,0.28926221933215857,-0.8883732701651752,-0.5442964998073876,-0.5059994421899319,0.4911827673204243,0.8546061450615525,0.03531871875748038,0.24915630277246237,-0.8837024043314159,0.019513176754117012,-0.5734856054186821,0.12818680377677083,0.15614573331549764,-0.8859085934236646,0.5568974865600467,0.1345532122068107,0.30947417952120304,-0.6348316422663629,0.737209988757968,0.12166793551295996,-0.36904747830703855,-0.4267377695068717,0.9739632154814899,0.007189119700342417,-0.7328675971366465,0.06736364867538214,0.34802012285217643,-0.6033546715043485,-0.786614446900785,0.77555684838444,-0.3371156360954046,-0.9569235853850842,0.21173303108662367,0.23618401866406202,0.2414764855057001,0.39068401837721467,-0.8726658788509667,0.5761644765734673,-0.7237285012379289,-0.7195497686043382,-0.23239744175225496,-0.7710151644423604,-0.23127762507647276,-0.3761429679580033,0.021993270609527826,0.6246661483310163,-0.8788303122855723,0.9541284102015197,-0.641234440729022,0.4740591049194336,0.28608465380966663,-0.3367286045104265,0.7864435683004558,-0.7590331644751132,-0.6638729921542108,-0.6294157104566693,-0.454601411242038,-0.8422103910706937,-0.4656420350074768,0.03799424599856138,0.8264306844212115,-0.7640325780957937,0.341438177973032,-0.9053857582621276,0.1215061666443944,-0.673265976831317,-0.03906274447217584,-0.3928554365411401,0.9113954794593155,-0.03205793956294656,-0.25993490032851696,-0.46750867227092385,-0.03322464181110263,0.5873707630671561,-0.5752784572541714,-0.2580196908675134,-0.20587601931765676,-0.3259554971009493,0.23500333447009325,0.47131366515532136,-0.5103899030946195,0.05789831979200244,0.39845045981928706,-0.8604725170880556,0.6340212495997548,-0.6924675330519676,-0.2356714615598321,0.44488140381872654,0.46153691364452243,-0.7076257951557636,-0.6788200093433261,-0.032410170417279005,0.43747285893186927,-0.9519846658222377,0.34002235159277916,-0.7863323674537241,0.8793099047616124,-0.03868974559009075,0.9840463134460151,0.6956485640257597,-0.7691844222135842,0.8141991775482893,0.21049054292961955,-0.12228776188567281,0.06058548903092742,0.12139091361314058,-0.7613271935842931,0.1194399050436914,0.20374289620667696,-0.7669608416035771,0.17961918050423265,0.4410373931750655,0.6451816591434181,-0.9674966079182923,-0.7075187787413597,0.7364589534699917,-0.5893408982083201,-0.48078785417601466,-0.8286848338320851,0.8706308272667229,-0.7252035257406533,0.7498370362445712,0.6105436030775309,-0.9486419786699116,-0.6881103683263063,0.0692248111590743,0.3142795576713979,0.4503731355071068,-0.1715957005508244,-0.3743374883197248,-0.9114891393110156,0.9257398922927678,0.046474536415189505,0.4482367988675833,0.5289041087962687,0.1783425766043365,-0.7528748954646289,0.7011635894887149,-0.6455901591107249,0.36677559092640877,0.06689051259309053,0.45526059018447995,-0.9205908384174109,-0.9819481847807765,-0.2854458964429796,-0.8422883925959468,-0.5580052500590682,0.6041490770876408,-0.12170152459293604,-0.15623211627826095,0.13090771390125155,-0.3384144948795438,-0.03234051074832678,-0.9160049995407462,-0.2171165174804628,0.8058831756934524,0.8540514782071114,-0.9390305010601878,0.07242430653423071,-0.08777734031900764,-0.2877135998569429,-0.10683845356106758,0.9543128474615514,0.9814894599840045,0.4352496871724725,0.016734191216528416,-0.4103752742521465,0.5140968603082001,-0.7913833241909742,0.050250235479325056,-0.24255358474329114,-0.9788787881843746,0.06636945437639952,0.4597872789017856,-0.528949755243957,0.6789431748911738,0.9247608142904937,0.3204433568753302,0.8040737151168287,0.5584770482964814,-0.6979577085003257,-0.18006716668605804,0.32503754273056984,-0.4089737511239946,-0.2157143666408956,-0.10109775932505727,-0.882340197917074,-0.001799128483980894,-0.6600735560059547,-0.6114807319827378,-0.5216552214697003,0.37496344139799476,0.5440284451469779,-0.5693735852837563,-0.954093114938587,0.6580138560384512,0.5299612409435213,-0.02667526016011834,-0.910096749663353,0.12619441049173474,0.8920684242621064,0.010591082274913788,-0.13468207186087966,-0.5050440626218915,-0.9957642322406173,-0.19506423082202673,0.4527683057822287,0.30713115260005,-0.33508467581123114,0.5631423289887607,-0.2801633281633258,0.11551657458767295,-0.6275648162700236,-0.728933238890022,-0.7858903235755861,-0.4808747894130647,0.8411119244992733,0.4817482871003449,-0.13137608161196113,-0.22015486331656575,0.17148811556398869,-0.07645887043327093,-0.10806929692626,0.18632057961076498,0.5268011395819485,0.6252868971787393,-0.6033266228623688,-0.1698112189769745,0.6805888013914227,-0.8235966674983501,0.9325308869592845,0.17603927804157138,0.419074016623199,-0.05666898423805833,0.04883792996406555,0.6864111544564366,-0.2962243934161961,0.6592963105067611,-0.05940820276737213,0.7166014099493623,-0.3638071301393211,0.2531820870935917,0.5891479994170368,-0.4591619912534952,0.5220358390361071,-0.5426469366066158,-0.9345714612863958,0.7360989949665964,-0.3852499662898481,0.4669969971291721,-0.05488295992836356,0.024016795679926872,-0.5692237582989037,0.31359149795025587,-0.9708563592284918,0.024668818339705467,0.8820464834570885,-0.9919898426160216,0.9060042244382203,0.8029731549322605,-0.9176004840992391,-0.6618092870339751,0.336211702786386,0.48907731426879764,0.9537652707658708,-0.8831814383156598,0.743477844633162,0.35327909933403134,0.9504238325171173,-0.01308895694091916,-0.40015475358814,-0.09810659615322948,0.5336046093143523,0.3135821376927197,-0.578740805387497,0.32089266227558255,0.41753060603514314,0.7230077823624015,0.40119176683947444,-0.7424489832483232,0.2207557102665305,-0.8038273490965366,0.4311507507227361,0.6612083595246077,-0.99648401979357,-0.42514859279617667,0.8403980731964111,0.7897149054333568,-0.06762231932953,-0.587061814032495,0.5747124361805618,-0.8257567398250103,-0.8298520245589316,0.02128892857581377,0.5636906386353076,-0.8389751492068172,-0.3866376969963312,0.5239964262582362,-0.8088323720730841,0.582302953582257,-0.30825693951919675,0.6720720827579498,0.6848734808154404,0.26580226235091686,-0.6240021251142025,-0.06303201196715236,0.6081698029302061,-0.9681596173904836,0.4443294629454613,0.4914434957318008,0.2940018894150853,-0.925032299477607,0.9118817327544093,0.0005358532071113586,0.7027094764634967,-0.63862773636356,-0.5240663476288319,-0.9995028683915734,-0.25314147491008043,0.7015460534021258,-0.852225542999804,0.17641371861100197,-0.5815674331970513,0.4743542061187327,0.4923710869625211,-0.7652266300283372,-0.07732742791995406,-0.45822620717808604,-0.7845174395479262,-0.915136179421097,0.795720623806119,-0.20415636477991939,0.7006195355206728,0.2890545087866485,-0.6165367071516812,0.00041194306686520576,-0.9908412806689739,-0.06134026125073433,-0.4263627454638481,-0.2898772992193699,-0.9922932060435414,0.7414615233428776,0.22737104957923293,0.06100980285555124,-0.7769384356215596,0.32022437639534473,-0.5701946830376983,-0.3092893734574318,-0.127743115182966,0.47957145096734166,0.6375846131704748,-0.20512249786406755,-0.7375231347978115,-0.7289594085887074,0.1307039544917643,0.8303533317521214,0.624815296381712,0.6749287787824869,-0.15240436885505915,-0.6899603605270386,-0.852652046829462,-0.7420043838210404,-0.15496119018644094,0.5356187410652637,-0.10161619912832975,-0.4575477442704141,-0.44338307110592723,-0.8638577344827354,0.19992298912256956,0.7718562036752701,-0.06668598484247923,-0.9015950257889926,0.12844627862796187,0.12604936165735126,0.04031418589875102,0.3258089041337371,0.29860034538432956,-0.1337929437868297,0.6855391571298242,0.9963968563824892,0.4397500935010612,0.4961757333949208,-0.5379162160679698,0.6580407451838255,-0.41675168741494417,-0.9257664759643376,-0.8111823131330311,-0.010204501915723085,-0.6443638289347291,0.03439784049987793,-0.24136917432770133,-0.8045673980377614,-0.47230120515450835,-0.8691652435809374,0.3482049470767379,0.8301046495325863,-0.9243213990703225,0.48561357194557786,0.6746459156274796,0.5737749626860023,0.14040186069905758,0.3463796698488295,0.917696834076196,0.38691555662080646,0.15578373800963163,-0.19433933030813932,-0.3124181185849011,0.11360273510217667,-0.6255443678237498,0.5493980357423425,0.7154123373329639,0.31451617926359177,-0.8165115434676409,0.5927351079881191,-0.10159889189526439,-0.7962801544927061,0.890625792555511,0.5198668781667948,-0.4475377998314798,0.7015236783772707,-0.6596093317493796,0.7443035528995097,0.5168364983983338,0.8372184038162231,0.9128195396624506,0.7366778957657516,0.536693749949336,0.6323539232835174,0.8155758758075535,0.08398139337077737,0.5863508796319366,0.08691636845469475,0.20417759474366903,0.9459410412237048,-0.5448229210451245,0.4127528453245759,-0.569467622321099,0.8870445745997131,-0.04888451052829623,0.32949453918263316,-0.5645199720747769,0.1412551044486463,0.47458353778347373,-0.2115799505263567,0.5172158274799585,-0.9941928703337908,-0.41188385616987944,0.2514551831409335,0.4218075121752918,-0.7018974544480443,-0.10030641686171293,0.28252371214330196,-0.9545272411778569,0.7188244666904211,0.9972490388900042,-0.768595730420202,0.7209575842134655,-0.5344630586914718,0.9961691913194954,0.46248402167111635,-0.41076185926795006,0.20303004886955023,0.44092940306290984,0.7248695003800094,-0.7024121689610183,0.014943989459425211,0.12218752317130566,-0.601295827422291,0.3991788001731038,-0.233877245336771,0.947208653204143,-0.4228414334356785,-0.3102439842186868,0.1286507691256702,0.1102909934706986,0.01960654091089964,-0.5494766151532531,0.7535367622040212,-0.6154873529449105,-0.1262263050302863,-0.9152487926185131,0.6790495286695659,0.8775884490460157,-0.9502607583999634,-0.20476204669103026,0.11393048893660307,0.3943912759423256,-0.6079833903349936,-0.9315825165249407,-0.2968544540926814,-0.5059544062241912,-0.0518703842535615,-0.23229869129136205,0.30647581024095416,0.9250540104694664,0.4782492979429662,0.4606738490983844,0.49882217589765787,0.7072058408521116,0.9501470467075706,-0.06516217580065131,0.11872817808762193,-0.5360903991386294,0.19255948206409812,0.09015234233811498,0.5078142145648599,-0.7506408574990928,0.8789904802106321,-0.8751577651128173,0.6171261915005744,0.31260544806718826,0.8891654121689498,-0.5863925185985863,-0.9557577762752771,-0.5554371112957597,0.22060941951349378,-0.15285412687808275,-0.4574766387231648,-0.38549829088151455,0.10647464310750365,0.39073476381599903,0.3957163323648274,0.12427307339385152,0.24165144190192223,0.6275032609701157,-0.33383811032399535,0.0628601354546845,-0.09898076066747308,0.27806973550468683,-0.6336232624016702,-0.16175026213750243,0.5220794640481472,-0.3007495990023017,0.15121608832851052,0.0755889369174838,0.45371346501633525,0.3372076014056802,0.13466165028512478,0.042781305499374866,0.2675070594996214,0.08219855325296521,-0.4276207280345261,-0.8415604960173368,0.1713522607460618,0.8933370527811348,0.6705317697487772,-0.4937665038742125,0.662563119083643,-0.9148967959918082,0.4245599200949073,-0.5075325579382479,0.5501494607888162,0.357538677752018,0.7997175203636289,0.020668836310505867,-0.2961419252678752,0.9525633435696363,0.7885029944591224,0.3494142144918442,0.8597110416740179,0.20664422633126378,-0.2490743175148964,0.4228278147056699,0.07621591724455357,-0.8826697273179889,-0.0031725638546049595,0.8487027352675796,-0.718038450460881,0.4558954881504178,-0.47012299904599786,-0.6516193547286093,-0.8298252345994115,-0.1722879484295845,0.4228693707846105,-0.4912612331099808,-0.3965599834918976,0.7055200389586389,0.9460313958115876,-0.5402250061742961,-0.12788801733404398,-0.22259285859763622,0.03891181293874979,0.0921221268363297,0.4385937452316284,0.5294642802327871,0.2977212122641504,0.6800172026269138,0.10366742592304945,0.8994096498936415,-0.19323965813964605,-0.969061051029712,0.3442640765570104,-0.35681471321731806,-0.6069455654360354,0.21177216758951545,-0.712119685485959,-0.39194017369300127,-0.7956906533800066,0.6709597115404904,0.5385373737663031,-0.9437631662003696,-0.9054823629558086,0.9510481911711395,0.1677853395231068,-0.2063088547438383,0.6542425630614161,0.4104749020189047,-0.9954731306061149,0.6289303749799728,0.22794827166944742,0.04605837445706129,0.9137691874057055,0.9422534964978695,0.01732752099633217,-0.4858404090628028,-0.5866742082871497,0.4969510748051107,-0.1897330186329782,0.5066915559582412,0.558330895844847,0.27860935404896736,-0.6511659137904644,0.4819990745745599,0.10076021635904908,0.21688288357108831,0.5062942914664745,0.582387313246727,-0.4005349325016141,-0.7155814152210951,-0.04889704566448927,0.7794785387814045,-0.07754488056525588,-0.15864568669348955,0.5962345036678016,0.6256433115340769,-0.6257450846023858,-0.8493137736804783,-0.7040364192798734,-0.9403721485286951,0.49358575558289886,-0.9950502021238208,0.7667598864063621,0.07024909742176533,-0.5300635537132621,-0.10180526925250888,-0.1603605723939836,-0.05719563318416476,0.27746192924678326,-0.5971748405136168,-0.4550528032705188,0.3348141456954181,0.6053643967024982,0.4750731741078198,-0.6301366994157434,-0.5348729477263987,-0.1958922096528113,0.45968397660180926,-0.19845523266121745,-0.7446463466621935,-0.7939140698872507,-0.2742284685373306,-0.757725931238383,-0.6727851796895266,0.9760501240380108,-0.8446453288197517,-0.1742309550754726,0.4550706506706774,0.5431142393499613,-0.8506924845278263,0.5408457913435996,-0.5505351643078029,0.2406218140386045,-0.5098627721890807,-0.4193165679462254,-0.87375508248806,-0.16474759532138705,-0.9581478610634804,0.5008181617595255,-0.01337850745767355,-0.6925461273640394,-0.6974669978953898,0.855145011562854,0.39199974993243814,-0.45017350325360894,0.04281748319044709,0.11259207874536514,-0.35584788117557764,-0.3798028598539531,-0.857211827300489,0.42925812490284443,0.6498683276586235,-0.7385981981642544,0.11876311572268605,-0.9868972594849765,0.6586951189674437,-0.7596704610623419,-0.8887862339615822,-0.43411089666187763,-0.9117043763399124,0.12234727013856173,0.3577559073455632,0.4843075438402593,0.9585559046827257,0.4729687664657831,-0.0675130938179791,-0.7383628953248262,0.4549634768627584,0.6219137655571103,-0.13127346336841583,-0.7696971246041358,-0.5853728353977203,0.5609774296171963,-0.546271113678813,-0.8500472391024232,-0.7609082134440541,-0.9630693108774722,0.15758831752464175,0.7256897226907313,-0.3827749597840011,0.8816031776368618,0.686438319273293,-0.13245742488652468,0.3007642556913197,-0.43511680606752634,-0.42183534894138575,-0.8577977088280022,-0.23702081013470888,0.60431516636163,0.6975893760100007,-0.10813078377395868,-0.5263057760894299,-0.7285437202081084,-0.9373048911802471,0.9225533776916564,-0.29902179865166545,-0.21103453123942018,0.23736788658425212,-0.7776064733043313,0.5082704066298902,0.5493752546608448,-0.5777374352328479,0.6140983933582902,0.5069089070893824,-0.5010846494697034,0.233344960026443,0.7290553553029895,-0.4178623631596565,-0.24054831685498357,0.013733166735619307,-0.6759676723740995,0.7261259038932621,0.5929809487424791,-0.7444619978778064,0.8020688118413091,-0.29581970954313874,-0.6982377870008349,0.6225972957909107,0.35957930982112885,0.6542389737442136,0.08682210417464375,0.023434007540345192,0.08755124965682626,-0.413215016014874,0.4947679522447288,0.644693904556334,0.13394642062485218,0.624362962320447,-0.7300377902574837,0.3946055802516639,-0.6940003475174308,0.9050277159549296,0.6487743146717548,0.06564842024818063,0.5616975501179695,0.870186919812113,0.8897791164927185,0.055940401274710894,-0.6664538849145174,0.8234879458323121,-0.2945121480152011,0.3258898323401809,0.5147115951403975,0.9227829026058316,0.10764474282041192,0.7262032506987453,0.03649855451658368,0.26126558473333716,0.9606332732364535,-0.6058811396360397,-0.6764097041450441,-0.1226834706030786,-0.6145326010882854,-0.3270868044346571,0.3631371487863362,0.6421534423716366,-0.4741371376439929,-0.4890016866847873,0.5611206325702369,0.2575705945491791,0.9876300641335547,0.3114817747846246,0.7327813562005758,0.9112904677167535,-0.5846495958976448,-0.4488252536393702,-0.31926735397428274,-0.3178811501711607,-0.4117336110211909,-0.8702543140389025,-0.7171324836090207,0.25481150997802615,0.17389270896092057,-0.332710696849972,-0.9122264222241938,-0.6405340689234436,-0.7703709211200476,0.20678488770499825,0.9394982811063528,-0.7519315332174301,-0.7793652834370732,0.7149173668585718,-0.3357709627598524,-0.40998514322564006,0.8812879882752895,-0.7096252525225282,-0.9479250977747142,-0.0037164255045354366,-0.8949283408001065,-0.3966593691147864,-0.2874975735321641,0.38874292420223355,0.8649683902040124,0.1539695104584098,-0.45105184242129326,-0.6863530552946031,-0.9254298089072108,0.7799270027317107,-0.7079208362847567,0.6745423320680857,0.49391647009178996,-0.23339500231668353,-0.30753097077831626,-0.622007763478905,-0.9865475920960307,0.3195447283796966,-0.012770950328558683,-0.9878143845126033,0.28518084017559886,0.5006634849123657,0.4219134054146707,-0.9173593721352518,0.9311732091009617,-0.301868777256459,0.4075833521783352,-0.3371705529280007,0.3384763766080141,0.06975071178749204,0.9557208041660488,-0.42735611042007804,0.8170372839085758,-0.5129387839697301,-0.4331952785141766,0.12165512284263968,0.860530027654022,-0.35943912435323,-0.8866093447431922,0.4656073725782335,0.6986718024127185,-0.7632601633667946,-0.6149886632338166,0.3603874393738806,0.7365695433691144,0.4343916326761246,0.8870794042013586,0.737406441476196,0.010853710118681192,0.2778201582841575,0.19120018417015672,-0.44485751213505864,-0.6725696139037609,-0.9466679352335632,0.6217457046732306,-0.2996206763200462,-0.4943490279838443,-0.9001180808991194,0.7028566105291247,0.341876536142081,-0.6286433027125895,0.3099157945252955,0.0698049683123827,-0.30732932267710567,-0.11494477838277817,0.03405937412753701,-0.8583224015310407,-0.9147683926858008,0.3915617521852255,-0.08384227193892002,-0.616073539480567,0.8102194056846201,0.6196931954473257,-0.7860346026718616,0.4530277824960649,-0.1388318808749318,-0.550618908368051,0.8320979359559715,-0.9176472816616297,0.5522111025638878,-0.008763778023421764,0.7022571940906346,-0.34261638950556517,-0.23968079779297113,0.9982314468361437,-0.6763195684179664,-0.739026902243495,-0.18126532156020403,-0.38649672735482454,-0.23507665749639273,-0.45513317408040166,0.5258375792764127,-0.34359268099069595,-0.7042094026692212,-0.7336519015952945,-0.13560846028849483,0.5779203688725829,-0.4932936574332416,-0.663383508566767,0.24474959401413798,0.2901438265107572,-0.08940689731389284,0.778112999163568,0.39506187569350004,-0.049827547278255224,-0.29442304326221347,-0.8896166747435927,-0.3786409134045243,-0.17586734844371676,0.62899831822142,0.5068537858314812,0.4480913048610091,-0.09406841872259974,0.5752630461938679,0.019270986784249544,-0.9857357209548354,0.7116588368080556,-0.3121062056161463,-0.3570568389259279,0.01678718440234661,-0.8887119456194341,-0.2516008000820875,0.9728785338811576,0.7834127563983202,-0.9286031788215041,-0.05343443248420954,-0.7344112801365554,0.9450500691309571,-0.35809718212112784,0.2074771299958229,-0.9973536683246493,-0.8689181078225374,-0.1419252222403884,-0.095558051019907,0.6651427634060383,0.8728871215134859,0.9435939379036427,-0.22531131003051996,-0.20272306632250547,-0.26389158237725496,-0.4359163441695273,-0.4559713760390878,0.027291770558804274,-0.27690932713449,-0.33600523695349693,-0.6207314804196358,0.6594275217503309,0.7132479632273316,-0.6069113784469664,0.3112885248847306,-0.9965865574777126,0.893156424164772,0.7380400048568845,-0.7988458219915628,0.7061744201928377,0.6420648633502424,0.8639880586415529,0.14196649193763733,0.5047912239097059,-0.18709199270233512,-0.7860524235293269,0.4654810866340995,0.26466074120253325,-0.23939634393900633,0.5457503376528621,-0.6844112956896424,-0.8702487866394222,-0.12809644266963005,0.5538221085444093,-0.7091615116223693,0.978838365059346,0.5122170150279999,-0.7216322496533394,0.1813661796040833,0.7202272578142583,0.997270758729428,-0.9910237863659859,-0.4833665625192225,0.2627639537677169,-0.28353268979117274,-0.5819635423831642,-0.7176188873127103,-0.6819871561601758,0.5647404133342206,-0.1098168920725584,0.4036543071269989,0.5586956301704049,0.544275376945734,0.9033178794197738,-0.00011698435992002487,-0.7150369482114911,0.6908707083202899,-0.22363007441163063,-0.7989435335621238,0.9745855000801384,0.3762834817171097,-0.824084585532546,-0.5604360294528306,0.3821220616810024,0.259016296826303,0.034438449423760176,0.475075286347419,0.6028448576107621,-0.655080430675298,-0.4435068587772548,-0.6793006197549403,-0.6769170695915818,0.987163910176605,0.2445102254860103,0.5674684634432197,0.5529207363724709,-0.20982342306524515,0.03388169873505831,0.6137770833447576,0.6185724567621946,-0.6421420099213719,0.3599198693409562,0.6213765982538462,-0.06296031409874558,-0.4397349255159497,0.5607171156443655,0.7540343743748963,-0.5008677910082042,-0.4488686374388635,-0.6642578965984285,0.1353447027504444,0.37730242451652884,-0.3000081945210695,-0.09121406730264425,0.929228930734098,-0.04161565890535712,0.05422717146575451,0.8387873745523393,0.3234336609020829,0.08433220814913511,-0.24866409692913294,-0.8311502076685429,0.3830158426426351,-0.5639619617722929,0.4157078298740089,0.8567686728201807,0.8613976375199854,0.0252390643581748,-0.4379210430197418,0.4003838491626084,-0.38140137027949095,-0.6379849473014474,0.7751931203529239,-0.6051774905063212,0.6067653321661055,0.46813488518819213,-0.737619643099606,-0.23324121348559856,-0.017624134197831154,-0.4099237606860697,0.9262633016332984,0.380096725653857,-0.4269875301979482,0.3736870218999684,-0.48577889520674944,0.044280408415943384,-0.5114092412404716,-0.7132958373986185,0.3266749349422753,0.4341486101038754,0.6761483764275908,0.6961137363687158,-0.07946129469200969,0.03572133369743824,0.6051669241860509,0.8400775515474379,-0.5842588762752712,0.03234853222966194,-0.5948526216670871,-0.904418780002743,0.20537273865193129,-0.5550997382961214,-0.0348021169193089,-0.3091675485484302,0.484404472168535,0.9923911704681814,0.7387617416679859,-0.8265004232525826,-0.9438772718422115,0.6707660956308246,0.37647931231185794,-0.005301763769239187,0.6438019908964634,-0.5913906758651137,-0.9238459817133844,-0.7371457195840776,0.3864510152488947,-0.9470883659087121,-0.9487280659377575,0.5525974314659834,-0.7596041853539646,0.6433889558538795,0.24061787221580744,0.9265281152911484,0.4343595616519451,-0.4245754866860807,0.3938411623239517,0.6060428451746702,-0.10210381541401148,0.22573273023590446,0.9631373528391123,-0.38447455735877156,-0.27904070960357785,0.4482562132179737,0.518741749227047,-0.30219394294545054,0.7729907012544572,0.5918027851730585,-0.2642058162018657,0.997669127304107,0.15504521178081632,-0.20823529548943043,0.43495578970760107,0.5298426672816277,0.6078124465420842,-0.23172818357124925,0.35363139072433114,-0.16158341011032462,-0.7886678883805871,-0.5587988081388175,-0.5678619090467691,-0.671590537764132,0.7499687667004764,0.7595341387204826,-0.7687644311226904,-0.70746412826702,-0.11634322302415967,0.5800262759439647,0.3803823357447982,0.9883901015855372,-0.09218202391639352,-0.5685669495724142,0.08806076692417264,-0.695284933783114,-0.5799870667979121,0.8993162959814072,-0.8140532323159277,-0.15546519262716174,0.5362970880232751,0.9643604680895805,-0.7676946185529232,0.5674150628037751,0.08102587051689625,0.9062039945274591,0.5162510927766562,-0.41160991275683045,0.9667712366208434,0.0006773867644369602,-0.5028145778924227,-0.4458362180739641,-0.23581662261858582,0.7517805085517466,0.611317147500813,-0.8781477552838624,-0.7584151909686625,-0.3628005520440638,0.2363712815567851,0.9908029814250767,0.08963399287313223,-0.037775116972625256,0.4347440144047141,-0.8141241427510977,-0.1534743933007121,-0.7499013761989772,-0.5482000517658889,0.4563702242448926,-0.8112338748760521,0.781412539537996,0.6744420044124126,0.8524534055031836,-0.7292924798093736,-0.6999187497422099,-0.12531538307666779,0.8060855274088681,0.14445109711959958,-0.04842311982065439,-0.5352093637920916,0.6506474600173533,-0.2768905572593212,-0.06967741623520851,-0.5158378295600414,0.9004379659891129,-0.74968944163993,-0.37545045698061585,-0.6455644401721656,-0.0033764266408979893,-0.22509904019534588,0.25974302645772696,-0.33075242582708597,-0.02489333925768733,-0.3218531934544444,-0.3426548666320741,-0.7180418893694878,0.6399191468954086,0.9738942431285977,-0.3351443507708609,-0.8962030145339668,0.196974057238549,-0.11616700794547796,-0.8576886965893209,0.767921847756952,0.8632022878155112,-0.3677155519835651,0.19291897863149643,-0.7291837106458843,0.9693836611695588,0.6177189606241882,0.5591428759507835,0.44914494175463915,0.09058250207453966,-0.7110235067084432,0.38456707866862416,0.6480954652652144,0.4897649297490716,-0.5542636658065021,0.44057491701096296,0.7387301842682064,-0.7490267418324947,-0.4895754544995725,0.024258599150925875,-0.21039980091154575,-0.6887906864285469,0.19407427171245217,-0.004272988066077232,-0.8827868481166661,0.6426589493639767,0.30086019402369857,-0.8274157312698662,-0.2596206874586642,-0.9321881723590195,0.6978432298637927,0.774872524663806,0.21912609040737152,0.8671271977946162,0.6264407667331398,0.435614378657192,-0.9712063320912421,0.7560004345141351,-0.5978102399967611,0.042662333231419325,0.7552511594258249,-0.5416347561404109,-0.7622841750271618,-0.29006030410528183,0.5920068775303662,-0.38726827083155513,-0.4258800260722637,0.23888623667880893,-0.722742484882474,0.9323152904398739,0.4182437164708972,0.3806440234184265,0.30402072286233306,0.6754744919016957,0.9066093838773668,0.42853487096726894,-0.4883705652318895,-0.5849061934277415,0.459961514454335,0.5557029601186514,0.35289201978594065,-0.857726993970573,-0.9664571159519255,0.36704864259809256,0.05083515448495746,0.5548743004910648,-0.24234436498954892,-0.3494013431482017,-0.9988269759342074,0.8358353758230805,-0.4645189009606838,0.177531436085701,0.5642484626732767,0.957609445322305,0.11446414049714804,0.47059132205322385,-0.6731355637311935,0.9527814122848213,0.7573989401571453,-0.37685425858944654,-0.4677997687831521,-0.6282121618278325,0.6449249288998544,0.4649514742195606,-0.685908461920917,-0.036971454974263906,0.09063848480582237,-0.8679901612922549,0.6470216452144086,-0.28828279906883836,-0.49873912520706654,0.27449640864506364,0.9496286371722817,0.2638913099654019,-0.46079708356410265,0.40754077583551407,-0.23643980454653502,-0.46089112432673573,-0.6250579259358346,0.6876941733062267,-0.16577215818688273,0.07030778098851442,-0.129614663310349,-0.2666189633309841,-0.7612043009139597,-0.06560697685927153,0.5214174729771912,0.06666337558999658,-0.8391533005051315,0.15630020992830396,0.037159991916269064,0.8851255439221859,-0.6229489357210696,-0.6432194290682673,0.08819891978055239,0.6332737654447556,0.4092846317216754,-0.6140291569754481,0.9065345679409802,0.9290864495560527,-0.31944668386131525,0.18912622705101967,0.7074302537366748,-0.3294689655303955,0.7013015821576118,-0.8954447228461504,0.49838999658823013,0.5024695773608983,-0.41480319341644645,0.10762382438406348,0.8932100017555058,-0.5407604514621198,-0.8118938584811985,-0.09306717664003372,0.9203235134482384,0.14617946092039347,0.3324350039474666,0.029864579904824495,-0.7052567456848919,0.927403443492949,0.6971096605993807,-0.554935472086072,-0.45422505494207144,0.5084644411690533,-0.51006596442312,-0.7876901500858366,0.33767720963805914,0.1374894194304943,0.3324937177821994,0.5045523601584136,-0.8237160751596093,-0.14880219660699368,0.24960218323394656,-0.43142212368547916,0.9404527107253671,0.7210596958175302,0.6725330934859812,0.6871333955787122,0.2788920351304114,0.7766645136289299,-0.2327200910076499,0.03757275780662894,-0.1539284698665142,0.34436928993090987,-0.39670878928154707,-0.35964250145480037,0.3442090400494635,0.657159433234483,0.9768910962156951,0.6706190472468734,0.5413100142031908,-0.3419329058378935,0.3293284298852086,-0.6459554093889892,0.41625732462853193,-0.4181722295470536,0.6334929685108364,-0.567903018090874,-0.8732194793410599,-0.4249946200288832,0.7464581960812211,-0.8818192994222045,0.33775791013613343,0.6160017438232899,0.6198051101528108,0.8497931794263422,0.2777958605438471,-0.5291213081218302,-0.3876806814223528,-0.006899516098201275,-0.6808444270864129,-0.33705653343349695,0.019080222584307194,0.4795703338459134,-0.43486008886247873,0.8092665621079504,0.39478912204504013,-0.49595916410908103,-0.7217429303564131,-0.13795568561181426,-0.6663919710554183,-0.2845625947229564,-0.4010321944952011,0.6671385955996811,0.3372575785033405,0.4681136906147003,-0.6078515578992665,0.14722651429474354,0.9278004970401525,0.49817918287590146,0.7166805905289948,0.28256816416978836,0.4199196365661919,0.38680184772238135,0.284266943577677,0.19934108946472406,-0.8380113015882671,0.5247982465662062,-0.10375896841287613,0.6329032476060092,0.09078185399994254,0.5680149723775685,-0.46873299591243267,-0.2829768620431423,-0.3887262539938092,-0.5535891740582883,0.2807181775569916,0.8000269858166575,0.19692585803568363,-0.42739061219617724,-0.7718548639677465,-0.046418529469519854,0.5099714230746031,0.30088887084275484,-0.39469837537035346,-0.5466862060129642,0.5374613925814629,-0.6181546254083514,-0.5849318951368332,-0.17117239721119404,-0.15741996048018336,-0.05076438095420599,-0.9947273815050721,0.9260639571584761,-0.7797228065319359,0.4942793380469084,-0.09536861767992377,0.505883704405278,0.9233018825761974,0.39756144816055894,-0.6271046092733741,0.44317385321483016,-0.6236272696405649,0.8909582919441164,-0.6802240535616875,-0.6855836939066648,-0.0026550493203103542,-0.029559988994151354,-0.5965356081724167,-0.04158919071778655,0.1860111583955586,0.006259193178266287,-0.5112180821597576,0.34655192121863365,-0.9365455601364374,0.9065290405414999,-0.18961901869624853,0.46406724117696285,0.6484847092069685,-0.9475147668272257,0.9018242824822664,0.7849264144897461,-0.5155716193839908,-0.23472568206489086,0.5848108981736004,0.8869123212061822,-0.6404447271488607,-0.22571932850405574,0.9706111536361277,-0.5022969837300479,0.9186546616256237,0.203893406316638,0.5293179913423955,0.953536881133914,0.9098625602200627,0.9148871451616287,0.8070942382328212,0.6332513461820781,-0.980684953276068,0.07732130866497755,0.005212452262639999,-0.862630688585341,-0.16530665894970298,0.41853330889716744,-0.10624014493077993,0.9487200588919222,-0.5238251318223774,0.7243967233225703,0.010594117920845747,-0.7595385257154703,-0.004637863487005234,-0.34106053225696087,-0.7821836019866168,-0.5300899213179946,0.7604469219222665,-0.8002283233217895,0.400469146668911,-0.3080599410459399,-0.2930061756633222,0.8051217175088823,-0.08127029705792665,-0.6323643550276756,-0.45258993562310934,-0.6447138790972531,0.777585250325501,-0.18803512444719672,0.7380586764775217,0.524091808591038,-0.5758063644170761,-0.5974296336062253,-0.6860817666165531,-0.951121780090034,0.8075925838202238,0.7738157245330513,-0.04129332443699241,-0.3948427545838058,-0.7704604868777096,0.9228480742312968,-0.3694836748763919,0.4478805800899863,-0.10258281184360385,0.6294092228636146,-0.8240674673579633,0.9990954799577594,-0.4804975581355393,-0.9462943426333368,-0.017751007340848446,0.5119827562011778,0.9381141127087176,0.6646828935481608,0.10743050929158926,-0.8770926455035806,-0.6263309032656252,-0.30591976502910256,-0.5922413798980415,-0.454625865444541,0.7814777046442032,-0.4098379584029317,0.35078948037698865,-0.2551839160732925,0.44861290557309985,0.8606880526058376,-0.6159182945266366,0.15360127110034227,-0.26658906415104866,-0.1500195856206119,-0.2745582335628569,0.64261483727023,0.8151369858533144,0.6961744711734354,0.3529858603142202,0.921382165979594,-0.056128643453121185,-0.5756282932125032,-0.9687046832405031,-0.3869913066737354,-0.03778137033805251,0.046868233010172844,-0.06161711551249027,0.20814442168921232,0.5685260067693889,0.4220455698668957,-0.8672440438531339,-0.9757472835481167,-0.6369418865069747,-0.4681068998761475,0.8577974122017622,-0.28453180380165577,-0.7250190242193639,-0.5106139732524753,0.3302301103249192,0.12953423568978906,0.2981021190062165,-0.16460548946633935,-0.9492306746542454,-0.3110690014436841,0.24519923236221075,-0.28535655699670315,-0.5211852011270821,-0.391770513728261,0.421446334104985,0.9947328558191657,-0.2166522885672748,0.8110284055583179,0.7041443139314651,0.08056223532184958,-0.3691687826067209,0.26465765899047256,0.17515948554500937,-0.18338431837037206,0.11359103536233306,0.6224334836006165,-0.3302946491166949,0.3309970167465508,0.8697309112176299,-0.7521131169050932,0.3202434186823666,-0.3353732107207179,-0.6023284471593797,-0.3205917072482407,0.809517165645957,-0.24643056700006127,-0.92514424957335,-0.8696848684921861,-0.6308494005352259,0.9470033822581172,-0.3397762170061469,0.6798856966197491,0.9341756324283779,-0.5171581050381064,-0.677391154691577,0.977203955873847,-0.14409593865275383,-0.4391913674771786,0.7853808561339974,-0.9868103484623134,-0.052791926078498363,0.4521705796942115,0.901871298905462,0.5440771076828241,-0.6719774226658046,0.3275162847712636,-0.1380465324036777,-0.009364528115838766,0.9569594189524651,0.06361788930371404,-0.36812156438827515,-0.7347235851921141,0.8532444364391267,0.6137327193282545,0.8058594278991222,0.17232625605538487,0.4402744313701987,-0.19749940978363156,0.5042147035710514,-0.3703058739192784,0.2964211627840996,0.35926624899730086,-0.7948329914361238,0.6524760369211435,0.4683612338267267,0.5044717565178871,0.5781075404956937,0.6672067265026271,-0.27959900768473744,0.7741959746927023,0.5005174805410206,0.6372093129903078,-0.5405053379945457,-0.06356664188206196,0.007144330069422722,0.3181390231475234,-0.6360710388980806,-0.6342416391707957,-0.09905155608430505,0.13047255156561732,-0.18533584475517273,-0.5982264252379537,-0.16135231358930469,-0.5094385552220047,-0.007325946819037199,-0.5373531733639538,-0.8554986221715808,0.0011696014553308487,-0.6595264384523034,-0.40987387392669916,0.011550089810043573,-0.04918873915448785,0.4482727241702378,0.2960305092856288,0.2894174405373633,0.5027360985986888,-0.3213177961297333,-0.851169750560075,0.5627564387395978,0.6520646433345973,-0.8147517777979374,-0.24564814753830433,-0.598006356973201,0.40348476031795144,0.8372525363229215,-0.3058097278699279,0.36051141330972314,-0.9925442701205611,-0.7671061893925071,-0.4928564322181046,-0.5807443708181381,0.10874320939183235,-0.3412357745692134,0.5608536554500461,-0.04407120356336236,-0.07557978900149465,-0.695217008702457,-0.002533447928726673,0.5376493041403592,0.867321518715471,0.3190331179648638,0.9249569508247077,-0.25118037639185786,0.05260985950008035,-0.9600334325805306,0.5815835273824632,-0.6991837224923074,0.547940012998879,0.27315153554081917,0.6225958070717752,-0.6606971300207078,0.047339700162410736,0.6776946652680635,-0.992578461766243,0.8411230933852494,-0.04113610461354256,0.13359429175034165,0.45274131931364536,0.804198662750423,0.28480504732578993,-0.32736901519820094,0.3385541900061071,0.46350901247933507,0.3415732868015766,-0.8981412127614021,0.8244080943986773,0.8710925271734595,0.9300188682973385,0.44151221215724945,0.6087834965437651,0.7066143527626991,-0.3329031029716134,-0.05268840817734599,0.5107334996573627,-0.6717763962224126,0.5294610094279051,0.036703762132674456,0.3050844967365265,0.5964006269350648,-0.44042056472972035,0.3269118629395962,-0.34308455558493733,-0.9546249615959823,-0.7341072461567819,0.0874724043533206,0.5304044135846198,-0.47676651598885655,0.6985694384202361,-0.5990166100673378,-0.22637712443247437,0.7771408152766526,0.5144596071913838,-0.13267055107280612,0.6449959729798138,-0.6071744216606021,-0.8314488814212382,0.7402822263538837,0.5226918985135853,-0.11870707292109728,-0.7242260603234172,-0.8168134014122188,-0.1763013731688261,0.44220380764454603,0.27290680864825845,-0.9187249368987978,0.8211643449030817,0.8087482498958707,-0.051535564474761486,0.6762721869163215,-0.18811937049031258,0.5052537899464369,0.6567326290532947,-0.38320718985050917,0.41999740805476904,0.9688325226306915,0.630095602478832,0.318847946356982,0.13780753500759602,0.9803721527568996,0.9850966101512313,0.8788044559769332,-0.2414826611056924,-0.9088344145566225,0.9237605114467442,-0.950717790517956,0.8797070528380573,0.9155871602706611,0.8254671730101109,-0.5406980966217816,-0.8806699053384364,0.8810628866776824,-0.9031170099042356,0.5751899206079543,0.012048949021846056,0.07520514307543635,-0.21233328199014068,-0.44231638917699456,0.14479985181242228,0.5605512331239879,-0.32819906435906887,-0.9176488169468939,-0.3252736646682024,0.3326438763178885,-0.5979545023292303,-0.5074468399398029,-0.3068362516351044,0.31510106613859534,-0.4217507285065949,0.07487026276066899,-0.4309162744320929,-0.6447111833840609,0.01625623181462288,0.5372461238875985,-0.6191795542836189,0.9178059389814734,0.3401923426426947,-0.614991563372314,0.7511364747770131,-0.7003835961222649,-0.8522366262041032,-0.1586876013316214,-0.10482677211984992,0.5398394637741148,-0.47234935592859983,-0.704236869700253,0.9692729506641626,0.8877632655203342,-0.5572050712071359,-0.221260585822165,0.2793179382570088,-0.11347545590251684,-0.7692612330429256,0.038570940028876066,-0.9027874590829015,0.2836011699400842,0.6595522332936525,-0.326710507273674,-0.1512889307923615,-0.6878683855757117,-0.3959934958256781,0.14529656525701284,0.8455187003128231,-0.47756471624597907,0.17960259644314647,0.17432656604796648,0.0975377419963479,-0.1287841168232262,0.46384476870298386,-0.29888442531228065,0.6065244218334556,-0.023154299706220627,-0.6227367371320724,-0.8684212304651737,0.8549646819010377,0.6665755417197943,0.8704798328690231,0.9994560107588768,-0.8486854783259332,0.05263274535536766,-0.5815811259672046,0.2549014138057828,0.04454266978427768,0.9360198955982924,-0.7542385552078485,0.8386594713665545,0.6696409648284316,0.43418961530551314,0.9621146195568144,-0.20347183384001255,-0.17730810772627592,0.8949447660706937,0.8230025642551482,0.21907075867056847,0.6462840223684907,-0.14540927717462182,0.15378507319837809,-0.7344545559026301,0.29384373454377055,-0.9893928919918835,-0.6534942900761962,0.6043321574106812,0.6895178211852908,0.7420337335206568,0.7813439439050853,0.3198515377007425,0.34888940397650003,0.2917108074761927,0.5152104976586998,-0.24104906246066093,-0.5815567830577493,-0.7116459351964295,0.363584253937006,-0.9079912346787751,0.04716127971187234,0.3214395670220256,0.2900285264477134,0.10470635630190372,0.2514920155517757,0.27496154606342316,0.7291209404356778,-0.26382856583222747,0.3005622886121273,0.9431391251273453,0.7936210818588734,-0.1117906947620213,0.5831892308779061,-0.9165192632935941,0.7328084497712553,0.8806981034576893,0.949363837018609,0.9778907671570778,0.8387261866591871,0.6553582083433867,-0.7561674281023443,0.3090414800681174,-0.8107524891383946,-0.738184408750385,-0.9263654933311045,-0.8804736747406423,-0.26737563870847225,0.6520784269087017,0.11449045082554221,0.016677238512784243,0.8762409528717399,0.5335097499191761,-0.922597290482372,-0.7277468754909933,0.6816042154096067,-0.8690304132178426,0.6231401413679123,0.6303342264145613,0.01239869138225913,0.5442542308010161,0.3566561322659254,-0.8816229971125722,-0.020581921562552452,-0.21614687656983733,0.2602040749043226,0.11282905843108892,-0.5709465527907014,-0.8373451931402087,-0.9060614765621722,0.6733689503744245,-0.27998631773516536,-0.9709347505122423,-0.7156799854710698,-0.8864365350455046,-0.2950669564306736,-0.8208191227167845,0.3986048409715295,0.8798879380337894,-0.38471636874601245,0.17846492864191532,-0.5324328257702291,0.4129221308976412,-0.7418479826301336,0.07644167309626937,-0.25022374652326107,0.701677777338773,-0.4087070655077696,0.10077477712184191,0.5813685385510325,0.19252999359741807,0.8506178860552609,0.7819403293542564,0.016372427809983492,-0.6454600095748901,0.798331337980926,-0.3161504310555756,0.2977008717134595,0.3927934574894607,-0.056329948361963034,0.026698576286435127,-0.8757989178411663,-0.24931342899799347,0.5600215531885624,-0.9647212694399059,-0.03867114521563053,0.24163877731189132,-0.9126974097453058,0.6227374370209873,-0.563149566296488,0.6880261334590614,-0.02519072638824582,0.5546975592151284,0.1404439969919622,0.10453466139733791,-0.4830183959566057,-0.2187488405033946,0.9460979835130274,-0.3556457753293216,0.4154536509886384,-0.21707347314804792,-0.156418742146343,-0.12436926551163197,0.5590879507362843,-0.8633874622173607,-0.44620233960449696,-0.9196730996482074,-0.6415804363787174,0.8101770360954106,0.2904506898485124,0.2331507676281035,0.1250730766914785,-0.5141265606507659,-0.226243503857404,0.12907209573313594,0.19321353873237967,-0.29211101680994034,-0.6209652102552354,-0.12993457168340683,-0.6144320918247104,0.5392902973107994,0.031332905404269695,0.5066585666500032,0.19824820896610618,0.015265598893165588,0.016083995811641216,-0.20375959668308496,-0.6760999741964042,-0.5249365596100688,0.17800737032666802,-0.43175892625004053,-0.099953459110111,0.19078790582716465,0.6228229175321758,0.01921565132215619,-0.5582661870867014,-0.4769173953682184,-0.881906212773174,-0.456207986921072,0.20735821966081858,-0.7629569810815156,-0.010575082618743181,0.7812310559675097,0.23017743974924088,-0.9893321692943573,0.9139986499212682,-0.027390582021325827,-0.7200626884587109,0.6595354150049388,0.8634908110834658,0.1430876017548144,-0.48944219993427396,0.5942505048587918,0.07411753386259079,-0.2169368350878358,-0.597398491576314,0.895947172306478,0.6860473584383726,0.4558620806783438,-0.3276760042645037,0.6780589642003179,0.959366774186492,-0.9706293698400259,-0.8081834488548338,-0.43412787560373545,-0.0149447419680655,-0.6621454632841051,-0.16435820562765002,0.6670660516247153,0.2830855790525675,-0.8437773422338068,0.03529109060764313,-0.4015903864055872,-0.16059485776349902,-0.5007383567281067,0.4858392244204879,0.45495611196383834,0.7832989185117185,-0.5603246614336967,0.5915476907975972,0.0367491259239614,-0.6891592424362898,-0.27901705261319876,0.1890201037749648,0.8877867413684726,-0.7332190019078553,-0.3715637307614088,0.8374687349423766,0.8902685791254044,0.16213453328236938,-0.6922340770252049,-0.8431316199712455,0.3458047490566969,-0.8263416974805295,0.3728242740035057,-0.2771148532629013,0.3273455030284822,-0.42100499337539077,0.14734640531241894,0.2792065148241818,-0.6611409774050117,0.8342896751128137,-0.3351953630335629,0.3389148027636111,-0.46283187298104167,-0.9673012481071055,-0.4730128403753042,-0.041298081167042255,-0.26077264128252864,-0.1816553296521306,0.48941106954589486,-0.6166962161660194,0.6480767973698676,0.6238780915737152,0.9184241737239063,0.33323968248441815,-0.502395193092525,0.9024912407621741,0.3431201511994004,0.20284608844667673,0.021403057035058737,-0.1322987424209714,0.056205013766884804,0.5977940480224788,-0.4602755871601403,-0.01711292751133442,0.15591918025165796,0.193108098115772,-0.5710858451202512,-0.2128647812642157,0.6818451839499176,-0.027818373404443264,-0.1807341887615621,0.8474888084456325,0.6027947966940701,0.36987733002752066,-0.11497565358877182,-0.6562952506355941,-0.23453060956671834,0.8809390910901129,-0.1734222429804504,0.6327261407859623,0.014498260337859392,-0.6312522077932954,-0.6104918289929628,-0.7922368831932545,-0.543800744228065,0.9857682040892541,0.3199923727661371,0.9033170151524246,-0.2787333591841161,-0.3296294719912112,-0.3042360167019069,-0.49828694434836507,0.9679019823670387,0.7582323760725558,-0.7819884493947029,0.3435122496448457,0.04450170509517193,0.005771005991846323,-0.41537427389994264,0.7859827377833426,-0.03172591095790267,0.7065008338540792,0.14181097131222486,-0.9577291565947235,-0.863517576828599,0.730132894590497,-0.25941472174599767,0.5371409393846989,0.7365304003469646,-0.8045601537451148,-0.1781704816967249,0.30279823672026396,0.40404475992545485,-0.02176631521433592,0.182311593554914,-0.18150636088103056,0.1425835662521422,0.9960374659858644,-0.9897358706220984,-0.9179668198339641,0.32653336226940155,0.9008422154001892,0.8967743436805904,0.7854241579771042,0.4951059212908149,0.7562510664574802,0.4098320845514536,0.03379911743104458,-0.31974204117432237,-0.5932298791594803,-0.7795433276332915,0.04833291098475456,0.5300252600573003,0.10035659559071064,-0.40611783135682344,-0.814355680719018,-0.3464139816351235,-0.7029487933032215,0.6237075701355934,0.9262063764035702,-0.010413236916065216,-0.748388194013387,0.37039676029235125,0.9449162725359201,0.9781143115833402,0.5802113716490567,-0.8977057868614793,0.42368479911237955,0.31393812224268913,0.13448746036738157,0.20378745114430785,0.77675950108096,0.03667536610737443,-0.07719241920858622,0.4222057582810521,-0.44888055277988315,0.11283065192401409,-0.2946351245045662,-0.45663938159123063,0.7338373470120132,-0.20541792502626777,0.4463510042987764,-0.5516926283016801,-0.8795304666273296,-0.3965172041207552,0.21163184056058526,0.1736231278628111,-0.06171324523165822,0.8864363771863282,-0.31084685400128365,0.7722720871679485,0.9036948415450752,-0.9029711964540184,0.9673220422118902,0.87128741806373,0.19311266392469406,-0.4177103554829955,-0.8469015397131443,0.2613789108581841,0.5270236227661371,-0.24844738049432635,-0.9187601320445538,0.8924525012262166,0.8459274070337415,-0.7456732341088355,0.38637753669172525,-0.4798138849437237,-0.85651681618765,-0.5203754268586636,0.9074534024111927,-0.8827002099715173,-0.237638751976192,0.4769836822524667,-0.020520720165222883,0.35241357050836086,0.9831854444928467,-0.44282829714939,-0.6488991370424628,-0.6815602332353592,0.738083740696311,-0.7883619549684227,0.26065962156280875,-0.06390638230368495,-0.886136110406369,-0.17079987050965428,-0.1909991903230548,-0.2112064491957426,-0.5806350377388299,-0.5620469059795141,-0.7074220697395504,-0.14609901513904333,-0.1895981440320611,0.7295296704396605,0.4299944071099162,-0.44118180265650153,0.15442999126389623,-0.02374250255525112,0.6077093896456063,0.6563549404963851,0.9324825070798397,0.11842914531007409,-0.440882361959666,0.48721682699397206,-0.10704453615471721,0.8546333825215697,0.16588357277214527,0.4324894086457789,-0.8599392888136208,-0.43303280556574464,0.7904993933625519,-0.764749254565686,0.2705605998635292,0.206182477530092,0.09601307427510619,-0.35882307309657335,0.31474679661914706,-0.058886687736958265,-0.3301218939013779,0.8244978212751448,-0.49610337195917964,-0.7528819893486798,-0.9818561994470656,-0.7707774764858186,-0.6538610211573541,0.6950926505960524,0.18792536854743958,-0.3527868683449924,0.4689117702655494,-0.5176183078438044,0.6171994614414871,0.5943404552526772,-0.45856495341286063,0.9308319357223809,0.0400879574008286,0.12167122727259994,0.31269438890740275,0.6803979515098035,-0.2853794936090708,0.07397195277735591,-0.4229680295102298,-0.04444847023114562,0.16534789092838764,-0.18161892797797918,0.4385119001381099,0.20604969235137105,0.8313120226375759,0.9231990585103631,0.5304133910685778,-0.06823814427480102,0.9511838806793094,-0.13736878568306565,-0.3847378399223089,-0.9005800844170153,-0.0992829455062747,-0.48456231132149696,-0.40965120727196336,0.9360106368549168,0.27329612988978624,0.6238558939658105,0.16365370759740472,0.5929219890385866,0.7975657605566084,0.9938861159607768,-0.6698180069215596,-0.8422733177430928,-0.7456323690712452,0.005549618974328041,0.35127458814531565,0.3178038839250803,0.1141235213726759,0.5426404946483672,-0.8903295700438321,0.2516993167810142,-0.9267727513797581,0.2695441208779812,-0.0005218125879764557,0.9596581747755408,-0.1776519576087594,0.8233793652616441,0.6046835035085678,0.8126713610254228,-0.4004449029453099,0.7327652820385993,-0.004358540754765272,-0.8824383928440511,0.5072437454946339,-0.12395330425351858,0.8741300725378096,-0.2070480533875525,0.7806798708625138,0.25322395702823997,0.3672892046160996,0.49522328190505505,-0.7987569854594767,-0.5711303665302694,-0.8857814036309719,0.798509294167161,0.48441709112375975,-0.5376888951286674,0.2205883781425655,0.2862511253915727,-0.9319962402805686,-0.07245923299342394,0.14530670084059238,-0.08053291542455554,0.800720976665616,0.010614264756441116,-0.351840672083199,-0.07069335412234068,-0.802257941570133,0.0464448188431561,0.08771309768781066,-0.44255451345816255,-0.3266339534893632,-0.035273417830467224,0.3922818684950471,0.6294955746270716,-0.13927788939327002,-0.4845512770116329,0.1310130818746984,0.9545694701373577,-0.37229679245501757,-0.7727825120091438,-0.776583805680275,-0.7045856099575758,-0.10918373381718993,-0.5306429523043334,0.1821868373081088,-0.1782631641253829,-0.7906881589442492,-0.925052682403475,0.07157056080177426,0.20242602843791246,-0.8622730351053178,0.5015034903772175,0.17603360349312425,0.8441011658869684,0.7744601769372821,-0.7557638841681182,-0.03835653467103839,-0.7300534802488983,0.8851447929628193,0.19374192645773292,0.7913871980272233,0.6890715323388577,0.8304228978231549,-0.26849142042919993,0.5272862971760333,-0.6442366628907621,-0.23796578170731664,-0.16816973173990846,-0.6098483260720968,0.5204464620910585,-0.1489158715121448,0.8700937503017485,0.5049289599992335,0.5185887147672474,0.17555303080007434,0.5430591278709471,-0.263124069198966,0.8994557107798755,-0.41478949319571257,-0.09483737358823419,-0.6895850175060332,0.8608514713123441,-0.08126464765518904,-0.7792812814004719,0.8547661667689681,-0.9869751804508269,-0.8847460374236107,-0.41195314144715667,-0.3212463464587927,-0.6858783485367894,-0.2038626936264336,0.3048986098729074,-0.14157173689454794,0.2068116581067443,0.9014606107957661,0.12614653212949634,-0.7104583494365215,0.9733391585759819,-0.909218386746943,-0.3461612178944051,-0.26546346256509423,0.0646470170468092,-0.7085639666765928,0.6902537723071873,0.5114574143663049,0.6910925316624343,0.9857623693533242,0.786217181943357,-0.9537247698754072,-0.11238086270168424,-0.20311272190883756,0.3664118512533605,0.6979962955228984,0.6690632454119623,0.736628423910588,-0.9973501279018819,0.8803156395442784,-0.729757715947926,-0.9139853534288704,-0.26902253180742264,0.8461251729167998,-0.20103148696944118,0.008145862258970737,0.7181108104996383,0.13402923569083214,-0.4359644055366516,-0.3645500289276242,-0.631720582023263,-0.348548281006515,-0.9504654044285417,-0.33857584465295076,-0.9579176981933415,-0.002805770840495825,-0.06243210006505251,-0.9258476560935378,-0.5308697996661067,0.28592605562880635,0.7197267971932888,0.4455101774074137,0.5833315132185817,-0.09377964586019516,0.8984255841933191,-0.28861400997266173,-0.7667316771112382,-0.12359311059117317,0.8031836682930589,-0.4929113485850394,0.26862330501899123,-0.8203003783710301,-0.719568639062345,-0.14686654321849346,-0.8776172194629908,0.607732773758471,-0.9105825163424015,-0.9538582866080105,0.328447746578604,0.6344349570572376,-0.38708125008270144,0.16582953417673707,0.825772347394377,-0.39486782206222415,-0.16827800637111068,0.247752389870584,0.3525482160039246,0.740930984262377,0.38101667445153,-0.9249261231161654,0.14214807422831655,-0.475101669318974,0.02212638035416603,0.008638177067041397,0.03189677558839321,-0.6858249832876027,-0.25398148503154516,0.45293470891192555,0.9976414884440601,-0.9191980846226215,0.477846025954932,-0.010032453574240208,-0.44730927469208837,0.2809424065053463,0.38258768524974585,0.967260745819658,-0.7396794622763991,0.19949785573408008,-0.42611367581412196,0.567232861649245,0.6931557510979474,-0.2662272281013429,0.687234248034656,-0.8398561365902424,-0.9880146193318069,-0.3721627374179661,-0.9133764957077801,0.3015901315957308,-0.1538805398158729,0.3703000405803323,-0.8219511643983424,-0.2476824512705207,-0.8152358341030777,0.14477604068815708,0.9563254774548113,0.4761684979312122,0.986303421203047,-0.5760934357531369,-0.2126370850019157,-0.43292015651240945,-0.677996392827481,-0.32432299153879285,-0.9359160787425935,-0.48310709930956364,0.25402986630797386,0.3573273392394185,-0.07592293620109558,-0.6735348356887698,-0.17451980337500572,-0.8891939106397331,0.31432386999949813,0.06661079684272408,-0.7085556937381625,0.9744016877375543,0.6074611158110201,0.157730876468122,-0.04763762326911092,-0.18745986744761467,0.5586310252547264,-0.4646615837700665,-0.7580296485684812,0.08652178896591067,-0.8827333366498351,0.3725797696970403,0.19496003072708845,-0.7913554981350899,0.8800655733793974,0.22293143952265382,0.7439697836525738,0.0033030789345502853,0.3048572614789009,-0.823905217461288,-0.8340830537490547,-0.7727372292429209,0.45354893803596497,0.6585550284944475,0.46666276874020696,0.014481120277196169,-0.9457054864615202,0.4078575111925602,0.4398808516561985,-0.706273932941258,0.8551980485208333,0.1531714559532702,-0.10668519791215658,-0.20857959520071745,-0.15875706868246198,0.3816448342986405,-0.015567811205983162,-0.22275707963854074,-0.6793750277720392,-0.8584066368639469,0.9448805917054415,-0.6960631576366723,0.3753422889858484,-0.9145657634362578,0.6629243828356266,-0.39235403249040246,-0.023493551183491945,-0.8850074168294668,0.18638733960688114,0.15910075791180134,0.9614486922509968,0.014223413541913033,0.5430339379236102,0.038670080713927746,0.319144194945693,0.6699331253767014,0.028368641156703234,0.5351117183454335,0.8045929512009025,-0.22405819408595562,-0.014175031334161758,-0.11415050411596894,0.07706817938014865,0.9233550634235144,0.668841605540365,0.19061431474983692,-0.11195540986955166,-0.5952472244389355,-0.5640610493719578,-0.691719759721309,0.24580438574776053,0.19946167338639498,-0.8598062805831432,0.49305780371651053,0.3702859887853265,-0.14324676664546132,0.4591659875586629,-0.466353939846158,0.9371290234848857,0.7798700467683375,-0.799756474327296,0.03650836506858468,0.9466963615268469,-0.008731146343052387,-0.7185964998789132,-0.8688408238813281,-0.24957885267212987,0.053884460125118494,-0.957298711873591,0.788867608178407,-0.5539266220293939,-0.18195355078205466,-0.7966267350129783,0.8119464768096805,0.6047320202924311,-0.9431378524750471,-0.8690351010300219,-0.9182956228032708,-0.7915247799828649,-0.27328313374891877,-0.5056260908022523,0.5441045891493559,0.3706394797191024,0.3288561454974115,0.5627062879502773,0.8056448856368661,-0.4609488155692816,-0.9123135227710009,-0.16471231915056705,-0.6684445361606777,0.09484277199953794,0.15565571514889598,0.08398967375978827,0.5479488093405962,0.24761140998452902,0.3412728449329734,-0.7006355719640851,0.059337484650313854,0.7589874262921512,0.14502008724957705,0.5857818657532334,0.4175057914108038,-0.5786371626891196,-0.3685656334273517,0.6393293077126145,-0.24082357808947563,-0.32806499022990465,0.21796486107632518,-0.6815750477835536,0.2204130939207971,-0.4027929757721722,-0.7463488886132836,-0.4687171555124223,-0.8383986135013402,-0.3800285221077502,0.3130388935096562,0.25109507981687784,0.3489702073857188,-0.21668951213359833,0.13497610576450825,-0.023852516897022724,0.3044998412951827,-0.13466851087287068,0.028590582311153412,0.9298223606310785,-0.6784917837940156,-0.41996178589761257,0.3092476036399603,-0.2517775441519916,-0.9764154115691781,0.16645995108410716,0.9375639869831502,-0.5911007546819746,0.24403012823313475,-0.801785699557513,0.3714601481333375,0.3807669263333082,0.9143836973235011,-0.05717584956437349,-0.5111992498859763,0.5231946166604757,0.5961267044767737,-0.7345559718087316,0.7276044394820929,0.5375466402620077,0.9389336416497827,-0.2751483293250203,-0.19758816389366984,-0.14686967059969902,0.08261169819161296,-0.49239150807261467,0.979288034606725,0.9355854727327824,0.9803245565854013,-0.5832440853118896,-0.6477260258980095,0.9681625133380294,-0.9442005404271185,-0.3647469403222203,0.05133732035756111,0.3162144608795643,0.5683750216849148,0.8349611749872565,-0.4317274992354214,0.9587550293654203,-0.23925310699269176,-0.5008610286749899,0.8297042199410498,0.25865037413313985,0.08266443386673927,-0.5889680604450405,-0.8747210712172091,0.6463393941521645,-0.6231157924048603,-0.323026972822845,-0.7838302566669881,-0.1284722937270999,0.4315726705826819,0.1862645335495472,0.7598684057593346,-0.7893213359639049,-0.223726122174412,0.8616023729555309,-0.4514347338117659,-0.7902812245301902,-0.166710386518389,0.8824209412559867,0.05353380041196942,-0.3293314082548022,0.24092078115791082,0.37432341556996107,0.4174022162333131,0.7548872488550842,-0.15887456014752388,0.4433132684789598,0.1870714738033712,0.5393127449788153,-0.42289004335179925,0.7306004837155342,-0.7862902055494487,0.5257432037033141,-0.5265608187764883,-0.099170939065516,0.7524283430539072,-0.7370653408579528,0.14765979861840606,0.18121117260307074,-0.849962274543941,0.36181347304955125,0.6472661765292287,0.7163567235693336,-0.09315733565017581,-0.6727288775146008,0.7122922535054386,0.21879975870251656,0.4115391783416271,-0.49197070905938745,0.45295539731159806,-0.5902134105563164,-0.5435839593410492,0.6086389240808785,0.8889218759723008,-0.34523007506504655,0.41045963065698743,-0.9088465878739953,-0.49236068222671747,0.88091686880216,0.49196651251986623,0.44203786132857203,0.3787435539998114,-0.9305385835468769,-0.2599560911767185,-0.5478606461547315,0.9015496103093028,-0.9898535348474979,0.5112484004348516,0.8171613290905952,-0.8076112400740385,0.20811758376657963,-0.26652285642921925,0.31685610488057137,0.3144135898910463,0.24410154717043042,0.8385199229232967,-0.9071014085784554,0.7337772441096604,-0.0006138337776064873,0.4869895367883146,0.6175610120408237,-0.024029475636780262,-0.6643997328355908,0.6546336654573679,0.7477138424292207,0.7392024504952133,0.3528370028361678,0.6711497730575502,0.17039291188120842,-0.6779718897305429,0.4312884281389415,-0.6973305959254503,0.775510594714433,-0.4386269021779299,-0.3124842713586986,0.009567519184201956,-0.9142513899132609,0.061933059711009264,0.3070473619736731,-0.6100313449278474,-0.6856623236089945,0.3246808312833309,0.5334350932389498,-0.164286557585001,-0.296722237020731,0.705616760533303,-0.2464561858214438,-0.9088666052557528,-0.13347194017842412,-0.5435940297320485,-0.8137687458656728,-0.7189287575893104,0.6787999970838428,-0.35867118183523417,-0.8759914566762745,-0.3607668080367148,0.9524312554858625,0.8845487739890814,0.7971825022250414,-0.9017081265337765,-0.035298919305205345,0.7907765791751444,-0.4016103344038129,-0.04409646010026336,0.6623819945380092,-0.5230339840054512,-0.9193738251924515,-0.7387769003398716,-0.9915754953399301,0.16335620917379856,-0.05276760086417198,0.49446653574705124,-0.08896018425002694,-0.05065259477123618,0.11710865376517177,0.40948428865522146,0.48481868812814355,0.624690723605454,0.7422722796909511,-0.29616423277184367,-0.775748637970537,0.5301594608463347,-0.8687680913135409,-0.9002197994850576,0.32954885018989444,-0.5820177886635065,0.7434247550554574,-0.7920035584829748,0.16400759760290384,-0.43957150634378195,-0.7198690245859325,0.3474997063167393,-0.6191759239882231,-0.2059505837969482,-0.003040467854589224,0.6013621045276523,-0.7961619524285197,0.9177707047201693,-0.329487890470773,0.5955816335044801,0.4493645732291043,0.46865951316431165,-0.7783983810804784,0.2576407752931118,0.12189554935321212,-0.7716077277436852,0.0036904923617839813,0.11482062702998519,0.9952286905609071,-0.4913321901112795,-0.9196551884524524,-0.4708169223740697,0.7121994299814105,0.9409183547832072,0.5818689144216478,-0.5468421210534871,-0.6775417551398277,0.3074995679780841,0.38595716329291463,0.8891095397993922,0.10603446001186967,-0.6483220434747636,-0.5820487942546606,-0.7719695470295846,-0.1697264569811523,-0.8361460398882627,-0.37126776529476047,-0.3837841502390802,0.7964611016213894,0.4363614716567099,-0.08458971092477441,0.9080029516480863,0.04322168044745922,0.38140682270750403,-0.8267013328149915,0.6096810619346797,-0.7358513032086194,-0.07948498614132404,-0.14462365163490176,0.8897689925506711,-0.3348716557957232,0.8812414528802037,0.04254623455926776,0.9503305731341243,-0.7062913323752582,0.18330486863851547,-0.45057093538343906,-0.12026528175920248,0.6541680381633341,-0.3747871438972652,0.37553249206393957,-0.7282451717182994,-0.38242107909172773,-0.2319529210217297,-0.6661610477603972,-0.231564920861274,-0.6541071524843574,-0.3059452432207763,0.5561353112570941,0.5598394623957574,-0.8477343004196882,0.16123781818896532,0.9282969241030514,0.7874373774975538,0.31613434571772814,-0.553017174359411,-0.6759489811956882,0.003198971040546894,-0.5928452615626156,-0.5230513582937419,0.49922135611996055,0.41080497531220317,-0.00485186604782939,0.48948441771790385,-0.5986845218576491,0.7572746351361275,-0.42055424535647035,0.8763875216245651,0.8152198018506169,-0.6290965243242681,-0.6285058432258666,0.8828000435605645,-0.4594273027032614,0.1203293870203197,-0.5966808572411537,-0.8244802230037749,-0.6070411135442555,0.5695198816247284,-0.45780623611062765,-0.6056651379913092,0.5732920891605318,0.8873108336701989,-0.10032570408657193,0.95442636590451,0.45854664547368884,0.7719338862225413,0.7084189257584512,-0.27350539434701204,0.9579264284111559,-0.34763700840994716,-0.6891195261850953,0.04221724532544613,-0.8006637590005994,0.6787142991088331,0.7840422480367124,-0.8802654105238616,-0.3662924198433757,0.7456207731738687,0.060439582914114,0.49075829330831766,0.614964263048023,-0.8894907687790692,-0.20472053345292807,0.4274920909665525,-0.2434287229552865,0.5091539877466857,-0.32143949158489704,-0.833425241522491,-0.7670045392587781,-0.12921486841514707,0.7766418955288827,-0.7320490404963493,0.37220866745337844,0.991200334392488,0.15038867853581905,0.5575284929946065,0.31568019604310393,0.1760749719105661,-0.6503444681875408,0.5535153225064278,-0.07280965149402618,0.8880823026411235,-0.9161738348193467,0.5236816331744194,-0.41850070701912045,0.6145862997509539,0.03948019351810217,-0.9217940494418144,0.7114853020757437,0.6508477735333145,-0.9938097684644163,0.3875425923615694,0.7953964783810079,0.8762004487216473,0.12219174392521381,0.6332232025451958,0.1105279908515513,-0.2716079377569258,-0.9118016581051052,0.26495045190677047,-0.29649047274142504,0.48810072941705585,-0.7710436647757888,0.42154777236282825,0.1872738222591579,0.05891381250694394,-0.5275888498872519,-0.9485829561017454,-0.18238154519349337,0.3251247201114893,-0.8167489981278777,-0.740655685774982,-0.4643425866961479,0.5231178626418114,0.6020477609708905,0.6041315486654639,0.3385798027738929,0.9988937182351947,0.35196316288784146,-0.2868051743134856,0.913954065181315,0.956632514949888,-0.5071115791797638,0.4098901990801096,-0.04916081763803959,-0.8915654108859599,0.6892477655783296,0.8775810096412897,-0.9601730233989656,0.6560979639180005,-0.13883403921499848,0.10501214163377881,-0.8148362231440842,0.7671953742392361,-0.6821430413983762,-0.9027016526088119,-0.11146280588582158,-0.2646051160991192,-0.3370089204981923,-0.6161367646418512,-0.5248021050356328,-0.3257781947031617,-0.9712064489722252,0.662981285713613,0.8370604547671974,0.9285642132163048,0.3823328469879925,0.4543360094539821,0.2997401626780629,-0.7485894174315035,0.8510735505260527,0.9152509341947734,0.7603395213373005,0.9495618450455368,-0.7785102622583508,-0.9639549627900124,-0.3995895627886057,-0.10355764208361506,0.29260597424581647,0.014951287303119898,-0.3984469589777291,-0.35711689200252295,-0.7326835296116769,-0.8156865653581917,-0.5566852972842753,0.5615124478936195,-0.5742701818235219,-0.13727983692660928,0.42057153629139066,-0.5037731169722974,0.8447968661785126,-0.7604596386663616,-0.6049052369780838,-0.5677117328159511,0.5200711083598435,0.2538015879690647,-0.8479876997880638,-0.3975867531262338,0.3074776967987418,0.39458201732486486,-0.36655175825580955,0.30326056806370616,0.9229286257177591,-0.9564538914710283,0.6965245138853788,-0.38113964535295963,0.04572718869894743,0.5048946673050523,-0.6389813856221735,-0.1887511000968516,0.9195544603280723,0.4729748913086951,0.0763599332422018,0.20645977836102247,0.5479825148358941,-0.3256486561149359,0.691134437918663,-0.448843399528414,0.46595871029421687,0.3222905066795647,0.82299659634009,0.7292746445164084,-0.3719815746881068,-0.6039635762572289,0.6813893052749336,-0.28049131762236357,0.5095542604103684,-0.41869926266372204,0.5756316012702882,0.92891582287848,-0.14591841585934162,-0.5707680438645184,0.6161920647136867,-0.7883297898806632,0.034199113957583904,0.41404261346906424,0.6803237874992192,-0.47027393290773034,-0.8445980283431709,-0.8180820476263762,-0.7102360110729933,-0.6946366969496012,-0.8124159183353186,0.7864333800971508,-0.7087236670777202,0.2682400029152632,0.03141062008216977,-0.002251231577247381,-0.598235035315156,0.3956193341873586,0.6840362488292158,-0.24328776029869914,-0.7853298955596983,0.6598344552330673,-0.4891110952012241,-0.5031305393204093,-0.22933202609419823,0.6572805577889085,-0.6339602805674076,-0.15875554410740733,0.9773059017024934,-0.04279430350288749,0.23454922949895263,0.6450035339221358,-0.43856969894841313,0.42298823967576027,-0.9366468284279108,-0.6291865301318467,-0.8498761523514986,-0.20139330066740513,0.5030119339935482,0.05682613234966993,-0.6367184002883732,-0.8353629540652037,0.7369175883941352,-0.34016037872061133,-0.5820543486624956,0.05120009509846568,0.7099119629710913,0.29245547391474247,-0.09654890466481447,-0.21615133341401815,-0.4841213799081743,0.466436879709363,0.14335594791918993,-0.09152064984664321,0.5781159647740424,-0.7653302098624408,0.0744979283772409,0.457445393782109,0.20360244158655405,-0.8806469463743269,0.49532771203666925,0.39722875179722905,-0.3421235242858529,-0.11425888305529952,-0.18419545935466886,-0.9087767372839153,-0.8077077548950911,-0.7136271805502474,-0.3671083552762866,-0.23530792072415352,-0.3448770586401224,-0.5123546360991895,-0.819348560180515,0.24195966124534607,0.559628767427057,-0.1068364679813385,-0.5254516759887338,0.9559510140679777,-0.392668672837317,-0.21997764380648732,0.3348192204721272,0.9941935306414962,0.8683143500238657,0.855461583007127,-0.8640935467556119,-0.7175513999536633,0.47918807063251734,-0.02656950941309333,0.6374644301831722,-0.3000621530227363,0.4797609797678888,0.9845737661235034,0.19777729362249374,-0.5229643322527409,-0.5499634123407304,-0.8456498845480382,0.8101444463245571,0.3126879520714283,-0.6326391045004129,-0.9365764604881406,0.27653065836057067,0.7512266719713807,0.30991782201454043,0.4255863605067134,-0.1500345659442246,0.2070405650883913,0.4504854236729443,0.7879040357656777,-0.8539868691004813,0.5342870429158211,-0.4036308196373284,0.08805977646261454,-0.11561125470325351,0.45815065037459135,0.3320570602081716,-0.8824031818658113,0.43172147730365396,-0.770112092141062,0.2435006615705788,-0.4550396343693137,-0.12867095787078142,-0.20988046284765005,0.7497209198772907,-0.9633210087195039,-0.7448717285878956,-0.14871223364025354,-0.813417739700526,-0.37532057473436,-0.7342247134074569,0.5808175774291158,0.017778984736651182,-0.6294224872253835,-0.9855039548128843,0.4712446634657681,0.8210039963014424,-0.01722113136202097,0.08514268370345235,0.2844770373776555,-0.0926105254329741,-0.4361687684431672,0.8208001288585365,0.1348486584611237,0.070940759498626,-0.7637074836529791,0.7946723327040672,0.5442901384085417,-0.008839707355946302,0.572564719710499,0.6924721114337444,-0.668240999802947,0.8232014123350382,0.6302205193787813,-0.36860225815325975,-0.772979136556387,-0.7522545629180968,0.6305327350273728,-0.8183642476797104,0.15178348077461123,-0.8232050482183695,0.2753578098490834,-0.8786663338541985,0.7548896241933107,-0.10369784524664283,-0.6140024904161692,0.7672605151310563,-0.3733591828495264,-0.11832552775740623,0.3681133142672479,-0.03907414060086012,0.2672379072755575,0.9715819978155196,-0.12230752781033516,0.8717905855737627,0.19784517539665103,0.4594942186959088,0.12702766619622707,-0.19515959452837706,0.5348568209446967,-0.8037646161392331,0.3010920975357294,-0.9881109474226832,0.22243811981752515,0.2225947887636721,0.4430357478559017,0.9430487733334303,0.05052375514060259,0.11351262731477618,-0.918086985591799,-0.4065886614844203,-0.5761135299690068,0.23584392666816711,0.4017242328263819,-0.4039925532415509,0.6866327994503081,0.9565472262911499,-0.16059545380994678,0.46558509301394224,0.9696550513617694,-0.3352322378195822,-0.0668560117483139,-0.16149679385125637,-0.07800412736833096,-0.08940831897780299,0.7750391783192754,0.11790638603270054,-0.9488175800070167,0.8521278784610331,0.9508109400048852,-0.43441740656271577,-0.08838768769055605,-0.1445057662203908,-0.11291160900145769,-0.7221861691214144,0.8644577395170927,-0.5569776124320924,0.7468647928908467,-0.3026766637340188,-0.07823948515579104,0.5545826056040823,-0.3499915865249932,0.7008554246276617,0.31743208691477776,-0.09433142654597759,0.8852857849560678,-0.5295732161030173,0.42600802471861243,0.012124544475227594,0.6964042223989964,-0.41938644694164395,-0.7977443486452103,-0.37734906980767846,0.772929678671062,-0.33465947629883885,-0.8785669258795679,-0.763388897292316,0.32792110834270716,0.1472958531230688,0.31718391459435225,0.9135995367541909,-0.8536266274750233,0.2585040759295225,-0.8137968257069588,-0.30341236433014274,0.06426606979221106,0.6319015356712043,-0.8356807962991297,-0.10973810544237494,-0.3586329990066588,0.29527075635269284,0.6791818025521934,0.7502205572091043,0.8952512084506452,-0.31955779483541846,0.35145673900842667,0.7487313360907137,-0.9398386576212943,-0.5668197944760323,0.4294107141904533,-0.3858560365624726,0.9905503769405186,0.2895445479080081,-0.4577689184807241,0.3465116936713457,-0.9551507667638361,-0.46966962004080415,-0.8752694297581911,0.1402242360636592,0.36153566697612405,0.5018921694718301,-0.4702294166199863,-0.3932764530181885,-0.13418666366487741,0.7027108273468912,0.6440689587034285,-0.5031748414039612,-0.012270675972104073,-0.16523086233064532,0.35048862779513,-0.08360008616000414,0.2503639687784016,0.9259127690456808,-0.7065383577719331,-0.8459206959232688,-0.7478920686990023,-0.9922385541722178,0.7865664847195148,-0.227452022023499,-0.4928071848116815,-0.10246371245011687,-0.9054003302007914,0.9487204477190971,-0.2378309415653348,-0.5687775597907603,0.14097843505442142,0.5432838872075081,-0.025863281916826963,0.5251607620157301,0.171515803784132,0.927493333350867,-0.12882791040465236,-9.888084605336189e-05,0.7771889120340347,0.6630111648701131,-0.5882394602522254,-0.4778356603346765,-0.9533488410525024,-0.20953984325751662,-0.7054708451032639,0.45595366042107344,-0.33108831103891134,-0.9891115557402372,0.37452303851023316,-0.5591201712377369,0.40204500313848257,-0.14446634193882346,0.45718672312796116,-0.24770124489441514,-0.4956182003952563,-0.41270131152123213,-0.5376564902253449,0.7812757808715105,-0.1316495486535132,0.5037430743686855,0.5396679053083062,-0.47630355786532164,0.913978268392384,0.10613289102911949,-0.8910380001179874,-0.681883136741817,-0.3596293735317886,-0.6811317387036979,-0.9293441302143037,0.9564417717047036,0.4355597998946905,-0.6610241779126227,-0.5520604429766536,-0.8482194077223539,-0.8000905895605683,-0.2581079574301839,-0.4733766592107713,-0.5386675852350891,-0.684178102761507,0.4424867108464241,-0.1689173188060522,0.4746132092550397,-0.027592178899794817,0.7578459256328642,-0.8220948441885412,-0.8700346746481955,-0.6677762470208108,0.12699783267453313,0.45089530339464545,0.5616565519012511,-0.34436875069513917,0.1960024032741785,0.6096220314502716,-0.3938057981431484,0.6568649825640023,-0.47523128194734454,0.8356655510142446,-0.3092279345728457,-0.5577169614844024,-0.3280297154560685,-0.11042521335184574,-0.5140778869390488,-0.5456635924056172,0.22736645303666592,0.4164975304156542,-0.7613403419964015,-0.3075312674045563,0.1955623598769307,0.008938419166952372,-0.6813154248520732,-0.755361296236515,-0.9338419632986188,-0.11530269403010607,-0.1797717958688736,-0.15982156107202172,0.4219759297557175,-0.7632637149654329,-0.37162045668810606,-0.3301139357499778,-0.1921762814745307,0.7819701270200312,-0.9438536567613482,-0.039736717008054256,0.8588278088718653,-0.043979791924357414,0.057240132708102465,0.20011241175234318,0.09139130311086774,0.6319697513245046,0.16448583360761404,0.1032102657482028,0.196702862624079,0.18934925738722086,-0.4461463592015207,0.11268417676910758,-0.19491149950772524,-0.31888708379119635,0.55663533648476,0.9771866421215236,-0.6015469902195036,0.9277228941209614,0.1630280944518745,-0.10373085644096136,0.06432254239916801,-0.21841390524059534,-0.8767034555785358,0.5727459429763258,-0.9465830978006124,-0.06532304361462593,-0.18209802731871605,0.7635910548269749,0.5411212365143001,-0.5473848986439407,0.09952129703015089,0.7594892932102084,-0.8074937895871699,-0.42782887117937207,0.31589488685131073,-0.9402555152773857,-0.6424972712993622,0.25481006037443876,0.8618442690931261,-0.4740346884354949,0.6759449183009565,-0.1070045130327344,0.5915301418863237,-0.6383105306886137,-0.3311474472284317,-0.664269445464015,0.6772849638946354,-0.643935898784548,0.623190846759826,-0.5926277032122016,-0.827163971029222,0.3592445533722639,-0.9975510160438716,-0.5225585782900453,-0.2576098246499896,0.9824433550238609,0.33318728255108,-0.7468618317507207,0.5211394317448139,-0.3123370218090713,-0.7472531469538808,-0.9256333378143609,-0.22370148496702313,-0.6475563403218985,0.24543467303737998,-0.9313539266586304,0.19134536013007164,0.10955567564815283,0.18872383004054427,0.6582320095039904,-0.04741885280236602,0.09389012539759278,0.4753727875649929,0.04436319088563323,-0.36846513114869595,0.3890201295726001,0.258254736661911,-0.7577748144976795,-0.010528951417654753,-0.3233217867091298,0.3754829987883568,-0.07251749560236931,-0.23105838894844055,-0.7670965869911015,0.7660004519857466,0.424203391186893,-0.13592646876350045,0.9214347135275602,0.45201889192685485,-0.8387862774543464,-0.35100907972082496,-0.5458595105446875,0.41159576270729303,-0.28008119435980916,-0.5732281012460589,-0.8416073708795011,-0.9970561591908336,-0.5705652115866542,0.09313077107071877,0.477386720944196,-0.324175993911922,-0.2522493847645819,-0.37550084199756384,-0.4104858413338661,-0.10973446350544691,-0.6849051327444613,-0.5002516168169677,0.73306386731565,-0.3868685532361269,0.4526876648887992,-0.7740232273936272,-0.006527774967253208,-0.37192436680197716,-0.8904855470173061,-0.8065419141203165,-0.0008407924324274063,-0.8007148075848818,-0.5454581105150282,0.17983416048809886,0.0033260672353208065,-0.8420915203168988,0.2490274803712964,0.4251457769423723,0.8242490375414491,0.9682952761650085,0.13219565153121948,-0.06745476648211479,0.29058216279372573,0.3287830571644008,0.8630198370665312,0.4497275250032544,-0.706908434163779,0.608468790538609,0.7044974491000175,0.8739575599320233,0.6039359718561172,-0.416658706497401,-0.4558677631430328,-0.4611091250553727,-0.8322281767614186,0.5928764534182847,0.8252110970206559,0.10818262118846178,-0.9925479390658438,0.7366231274791062,0.06709374720230699,0.36717777512967587,-0.5473131155595183,0.6216896274127066,-0.9713114961050451,-0.12542152125388384,-0.015229320153594017,0.810138379689306,0.5180610185489058,0.881165599450469,-0.32958247512578964,0.02263815002515912,0.27433241764083505,0.140576655510813,0.0025509302504360676,0.9681655345484614,-0.4267566669732332,0.8278830647468567,-0.4837019257247448,0.49928754568099976,0.6115277577191591,-0.8770422120578587,-0.6460209605284035,0.6019093338400126,0.4396534822881222,-0.9471637820824981,0.3828671211376786,-0.596555766183883,0.6778378067538142,0.5254461131989956,0.9376647192984819,-0.9873883225955069,0.7259088195860386,-0.28288411954417825,0.5077563957311213,0.38162079080939293,-0.756834093015641,0.9489907519891858,0.23448192281648517,-0.7458002530038357,-0.5422278931364417,-0.4289642320945859,0.022545205894857645,-0.4863868746906519,-0.2712581539526582,0.3349072360433638,-0.5376426377333701,-0.10587890446186066,-0.5805913051590323,-0.9878952172584832,0.3651966364122927,-0.34156795497983694,-0.33447831589728594,-0.4647913775406778,0.41481283213943243,0.5436609736643732,-0.575274498667568,0.10892424313351512,-0.11661445489153266,-0.13084532460197806,-0.18226472148671746,0.29982668394222856,-0.08381628291681409,-0.8266910049133003,-0.26043131900951266,-0.10341436555609107,0.31946394918486476,0.7559099015779793,-0.06433654669672251,-0.5643633813597262,-0.7615638826973736,0.27624574350193143,-0.8342920197173953,0.4294976736418903,0.8027178570628166,0.8917201021686196,0.28592565143480897,-0.718305314425379,-0.04291706718504429,-0.7415104536339641,0.5976243950426579,-0.7882079146802425,-0.068413311149925,0.4939755746163428,0.5511739794164896,0.14238257752731442,-0.5544554716907442,0.8495525545440614,0.8894608314149082,0.11586326407268643,0.43576777819544077,0.11049312306568027,0.07261988753452897,-0.9776521613821387,0.8619147082790732,-0.4657140984199941,-0.4086805577389896,-0.05645398749038577,-0.5434602601453662,-0.01349487341940403,0.7063599308021367,0.11225435882806778,-0.6705672917887568,-0.8459206516854465,0.2183430059812963,-0.42521884199231863,0.8091109809465706,-0.8298415304161608,-0.3538277870975435,0.5125893014483154,0.844878425821662,0.496102521661669,-0.2507905410602689,-0.06357845105230808,0.0556385787203908,-0.9458492691628635,0.06788806011900306,-0.758286920376122,0.9262761329300702,0.580342233646661,0.2608977253548801,-0.07978833559900522,-0.12906315037980676,-0.8297123988159001,0.9015444945544004,-0.17636821186169982,-0.40970861446112394,0.25383871560916305,-0.6353666088543832,-0.04023816389963031,0.6288693971000612,0.10356233874335885,-0.1583905853331089,0.2182386014610529,-0.8158268174156547,-0.2985959122888744,-0.37307427544146776,0.962113231420517,0.3567258706316352,0.6409664019010961,0.217318260576576,-0.4211103469133377,-0.1982365851290524,0.5811054413206875,0.7431104392744601,-0.33452230505645275,0.194127612747252,-0.624869124032557,0.346205095294863,0.13218849059194326,0.9395667337812483,0.14098882349207997,-0.4154482292942703,0.11672740476205945,-0.1578858601860702,-0.7910314532928169,-0.2742465096525848,-0.3494616346433759,-0.495045458432287,-0.7626504343934357,0.9472765130922198,0.8065930847078562,0.16281198803335428,-0.9765890236012638,-0.1580705246888101,-0.25072871055454016,0.264962594024837,0.3630548124201596,-0.7189520979300141,-0.5417234944179654,-0.5713540334254503,-0.6243651867844164,0.2609559749253094,-0.5282415230758488,-0.03431888343766332,-0.2811296549625695,-0.312837737146765,-0.4023637231439352,0.004189338069409132,-0.4762498140335083,-0.682292778044939,-0.21540243038907647,0.005575948860496283,0.33701106533408165,0.06317337742075324,-0.031330091413110495,0.3522316734306514,0.14919444546103477,-0.8405132545158267,-0.5949332504533231,-0.7740392121486366,0.8140672892332077,0.6475918330252171,0.32466590916737914,0.16045223409309983,0.8465644977986813,0.8882292415946722,0.3744139797054231,-0.47189444256946445,-0.7717965757474303,-0.6221625567413867,-0.06019067671149969,-0.08066212991252542,-0.011704275384545326,-0.1771192755550146,0.3781574838794768,0.42508698534220457,-0.7263047378510237,-0.5910959527827799,-0.783106202725321,0.7799310372211039,-0.1929394705221057,0.3420451018027961,-0.6209537503309548,0.7641284540295601,-0.6749143409542739,0.9597116275690496,-0.5996058355085552,-0.6712541347369552,0.8458909685723484,0.4953102725557983,-0.5294588380493224,0.6616728650406003,0.8862938391976058,0.8996080178767443,-0.012683887965977192,0.5507540451362729,0.3050500601530075,0.8026749128475785,-0.09322763932868838,-0.8443522462621331,0.6373690804466605,-0.33840935910120606,0.703556323889643,-0.15513229044154286,-0.5838238699361682,-0.3508386784233153,-0.6311988276429474,-0.311437479685992,-0.1434955047443509,0.19294443121179938,-0.977848868817091,-0.9538849275559187,0.6338973622769117,-0.295634709764272,-0.5044145337305963,-0.8992226552218199,0.6314985570497811,0.6673000953160226,0.462588123511523,0.8376918057911098,0.7822863729670644,0.020601914264261723,-0.15230073453858495,-0.3669434916228056,-0.7850359510630369,0.3808877030387521,0.13167191110551357,0.45764415385201573,0.803910477552563,-0.5699732806533575,-0.28327006939798594,-0.30444660829380155,0.4887915728613734,-0.9193740263581276,0.22670724615454674,-0.01986535917967558,0.15287003945559263,-0.6354413800872862,-0.56224350258708,0.4299701461568475,0.9019880294799805,-0.37074993969872594,0.048595658503472805,-0.7090540686622262,-0.562686872202903,0.8358722813427448,0.16723999194800854,-0.3771345061250031,0.367183861322701,0.9265794302336872,0.6578268501907587,-0.6442557186819613,0.3883824204094708,-0.7669707941822708,0.019580690190196037,-0.37428974360227585,0.465170681476593,0.25385997258126736,0.9692150908522308,0.7321405289694667,0.08259199326857924,0.16264827316626906,0.4912454695440829,-0.6055752523243427,-0.46774889389052987,-0.31978992419317365,0.9972051805816591,0.9532672576606274,0.06325392611324787,-0.1763715292327106,0.2605431014671922,0.32883726293221116,0.694758306723088,-0.5788908586837351,-0.05819406779482961,0.02792612509801984,-0.3907375652343035,0.5012269159778953,-0.9632199942134321,0.9892304264940321,0.4858098574914038,-0.8859144547022879,-0.9865024238824844,-0.6578917163424194,-0.38273276574909687,-0.6870300839655101,0.5335736577399075,0.036542737390846014,0.49337234254926443,0.7910085353069007,0.10030347481369972,0.37331610918045044,-0.6037009605206549,-0.33768004551529884,0.7384545165114105,-0.11308918846771121,0.017852784600108862,0.5479051168076694,0.6581984609365463,0.6730375266633928,0.29853371204808354,-0.5143287517130375,0.910035795532167,-0.040788591373711824,-0.2013352820649743,-0.9479354023933411,-0.03221554681658745,-0.1255179368890822,0.646502295974642,-0.27272327058017254,-0.6285990010946989,-0.4565912955440581,0.5263854209333658,-0.9979911646805704,0.6250162799842656,-0.035238053649663925,0.3968621827661991,-0.13130838377401233,0.19819689448922873,-0.367049275431782,-0.00019253790378570557,0.4939896948635578,-0.05181992473080754,0.30595620814710855,-0.47633111383765936,-0.3106911350041628,0.3421030412428081,0.31827741768211126,0.5580214844085276,0.12980702240020037,0.2276675975881517,0.3428737851791084,0.6418439140543342,0.9674483337439597,0.5807157591916621,-0.5300720049999654,0.6858500307425857,0.12953754141926765,-0.17929247906431556,-0.3294768217019737,-0.3955619353801012,0.1352624148130417,0.3992001125589013,-0.1030558729544282,-0.6122828461229801,-0.1835217815823853,0.29014044906944036,0.513473482336849,-0.5331790144555271,0.6957414699718356,0.1637794030830264,-0.21512824716046453,-0.37306723883375525,0.041744329035282135,-0.3084757090546191,0.35598876792937517,0.9678043024614453,-0.9511477225460112,-0.3996455385349691,-0.18588173622265458,0.2999153845012188,0.6226642252877355,0.03474924713373184,-0.7117577828466892,0.9873264012858272,0.07873007142916322,0.062207913026213646,0.8572821393609047,0.3592575932852924,-0.23906961688771844,0.8556697703897953,0.1821830477565527,-0.40135443350300193,0.225821353495121,0.20760051161050797,-0.03570117615163326,-0.12210176093503833,0.7822115616872907,0.564691387116909,0.8205543532967567,0.20553250843659043,-0.3139845593832433,0.6517176893539727,-0.28834864823147655,-0.9303463525138795,0.9239403833635151,0.9254324971698225,-0.6215210612863302,0.22358394926413894,-0.01381339505314827,0.11231152433902025,0.06504646968096495,-0.46885781781747937,-0.5403444967232645,-0.9164508730173111,-0.009939017705619335,-0.44837820902466774,-0.4137999741360545,-0.5344761027954519,-0.27417184971272945,-0.9981155013665557,-0.5370953567326069,-0.1254466692917049,-0.7446993975900114,0.7865697857923806,-0.20965369138866663,-0.08292477112263441,0.6579121602699161,0.8389055044390261,-0.9251620676368475,-0.27322630677372217,0.7787009049206972,-0.6375164538621902,0.18937067175284028,-0.11517910100519657,0.3951189466752112,-0.19804300693795085,0.2596053318120539,-0.44821341475471854,0.12583735678344965,0.5871711960062385,0.25446517346426845,-0.14456609589979053,-0.7848968841135502,-0.3118502893485129,0.6738210050389171,-0.1056707720272243,-0.0688300677575171,-0.5581433889456093,0.8276758319698274,-0.9887160486541688,0.5952807907015085,-0.5803457810543478,-0.10903548030182719,-0.6143224718980491,-0.6402136841788888,0.9428114807233214,-0.9848960652016103,0.33515870478004217,0.5876716054044664,0.851704309694469,0.9738972121849656,-0.6974223824217916,-0.382020550314337,0.8519130907952785,0.556849408429116,-0.540737621486187,-0.5044775418937206,-0.09903566632419825,0.5182687295600772,-0.8030214160680771,-0.31928834645077586,0.7426013792864978,-0.0673404517583549,0.6405367366969585,-0.39709320291876793,-0.40675864508375525,-0.06641810107976198,0.17858933564275503,-0.10500942030921578,-0.8859564643353224,0.3960987702012062,-0.8351989476941526,0.29609751887619495,0.3791327807120979,0.24712709337472916,0.38456600019708276,-0.547408340498805,0.588097614236176,-0.9883695654571056,0.1555452784523368,-0.3037999360822141,0.6652980246581137,0.36799810780212283,0.1382434838451445,0.6984660276211798,-0.5575950155034661,-0.6428383425809443,-0.8358022752217948,-0.956281581427902,-0.07906355382874608,0.8197283153422177,-0.7043246561661363,-0.8050870415754616,-0.5539264129474759,-0.16327028581872582,-0.6952670346945524,0.3975626192986965,-0.705465248785913,-0.25587850948795676,-0.6194486613385379,0.556348379701376,0.8833113396540284,-0.23464389611035585,0.8633445627056062,-0.791682031005621,0.22423196723684669,-0.04102279432117939,0.928918372374028,0.605851118452847,0.43053681403398514,-0.8239565738476813,0.522404502145946,-0.4250762793235481,0.2816834431141615,0.32948849396780133,-0.15355119947344065,-0.644931701477617,-0.5481861098669469,-0.35118340235203505,0.1836583698168397,-0.4605699307285249,-0.7923073633573949,0.09561672527343035,0.8443738142959774,-0.2922944985330105,0.6583969765342772,-0.8821593150496483,-0.3849115218035877,-0.39370120968669653,0.2496892032213509,0.08561820397153497,-0.1401577964425087,-0.6051158821210265,-0.4052512408234179,-0.7659736489877105,0.8021954535506666,0.09663445735350251,-0.8875717781484127,-0.6338598416186869,-0.07121264887973666,0.35633138520643115,0.6002324339933693,0.9295233450829983,-0.8600153955630958,0.5730309020727873,0.4135494166985154,0.25148056680336595,0.9387674159370363,0.29854926094412804,-0.1918339184485376,0.9710979145020247,-0.3759603910148144,-0.8057065303437412,-0.07699697883799672,0.9966340027749538,0.9514760100282729,-0.8947311518713832,-0.17404889594763517,0.4549130345694721,-0.18323091324418783,-0.09003750467672944,-0.6561358883045614,-0.4849673416465521,0.6227133190259337,0.2657782598398626,-0.3440489014610648,0.2075653881765902,-0.9492251840420067,0.6559636695310473,-0.5194916599430144,-0.6550548961386085,0.7856417060829699,-0.1670585060492158,0.8031332152895629,-0.2919234554283321,-0.3789203353226185,-0.9083514166995883,0.28744757967069745,-0.5750412661582232,-0.6865520924329758,0.19343138905242085,-0.7442976995371282,0.8909578253515065,-0.05943162878975272,0.870581032242626,-0.5547629701904953,0.9865084704943001,0.10542599530890584,-0.7778041907586157,-0.39333283714950085,-0.8658458553254604,-0.8856235044077039,0.7118661226704717,-0.5311786355450749,-0.8194651626981795,-0.3206632467918098,-0.13127004075795412,0.4956701248884201,0.5674498504959047,-0.598436632193625,0.13933401089161634,0.21780202072113752,-0.7704074759967625,-0.13989150617271662,-0.6959451856091619,0.1441895803436637,0.39531337283551693,-0.6037275292910635,-0.7422639708966017,0.09220328321680427,-0.6878877631388605,-0.24413214018568397,0.9641490490175784,-0.3965462795458734,-0.12449859688058496,0.7026800205931067,-0.05721936747431755,-0.8701419406570494,-0.9037701119668782,0.32387465331703424,-0.1614852393977344,0.5686247190460563,-0.959101362619549,0.8749832049943507,-0.26895805448293686,-0.04811547929421067,-0.08458590833470225,0.8141956976614892,0.8581262486986816,0.20952045684680343,0.5499157062731683,-0.24640148133039474,0.09975020121783018,-0.2049756795167923,-0.4540315377525985,0.26086201472207904,0.5088730822317302,0.6431057062000036,0.6271424130536616,-0.9901883844286203,0.5817812951281667,0.24383187666535378,0.23090912494808435,-0.6866917898878455,0.28568697115406394,-0.42617986677214503,0.7202709740959108,-0.5428838836960495,0.1575359283015132,0.5860776784829795,-0.574884198140353,-0.31990117207169533,0.7408407023176551,-0.9950457238592207,0.6094674244523048,0.8450366705656052,0.5080676604993641,-0.6268939250148833,0.5622337725944817,-0.3600604673847556,0.4045426081866026,-0.8153653275221586,0.18615016574040055,-0.03992314217612147,0.02778923325240612,-0.2362427394837141,0.5384324719198048,0.36791971512138844,-0.8767665037885308,-0.34095322666689754,-0.7223777063190937,-0.6373606938868761,-0.27887159353122115,0.8631480713374913,-0.2665357980877161,-0.9722823933698237,-0.6641911831684411,0.4929900127463043,0.22173068998381495,-0.5374356550164521,0.3611290119588375,0.07226803246885538,0.2829181933775544,-0.7401266768574715,-0.9363243146799505,0.09123722650110722,0.8730780775658786,-0.5215165056288242,-0.929352396633476,0.8540854235179722,0.44082245882600546,0.8693803153000772,-0.9450931260362267,0.9550796966068447,-0.9468394150026143,-0.32367287622764707,0.5027806465514004,0.3537975219078362,-0.6368877557106316,-0.5294107589870691,-0.6087013240903616,-0.12084814254194498,0.4581014411523938,-0.7307609906420112,-0.3407830880023539,0.35259649669751525,0.9367183391004801,0.30153836449608207,-0.5161907211877406,-0.6594579829834402,-0.4659401779063046,0.7513603623956442,-0.14628598978742957,-0.3952266233973205,0.8721625991165638,-0.5641328734345734,0.1472502234391868,-0.6707721478305757,-0.1796433450654149,0.7543335929512978,-0.7586434339173138,0.6861741724424064,-0.4679421684704721,-0.9795476775616407,0.5390454097650945,-0.9640957764349878,-0.4054401274770498,0.3520212429575622,-0.7844723518937826,0.9676544503308833,-0.14216060936450958,0.6405612588860095,0.9960586661472917,0.6153506864793599,0.26305556343868375,-0.5512376371771097,0.6452437145635486,-0.45572003116831183,-0.9885100512765348,0.3201638637110591,0.23820890206843615,-0.23883963376283646,0.18606012873351574,-0.29941417882218957,-0.6138509605079889,-0.8108244091272354,-0.262392854783684,0.9603749206289649,-0.8646937566809356,-0.6074392846785486,0.8224095557816327,0.19104679487645626,-0.08719226205721498,-0.9066202193498611,-0.15720348106697202,0.5140273752622306,0.7442085864022374,0.44811022700741887,0.3823586776852608,0.3957484466955066,0.06428499612957239,0.385862675961107,-0.8441370655782521,0.4081764821894467,0.48165549198165536,-0.8912203316576779,-0.2715665088035166,0.41007761424407363,0.7308829333633184,-0.29577075131237507,-0.4309829636476934,0.9672260861843824,0.006953665520995855,-0.4554253099486232,-0.23341246228665113,-0.24131345748901367,-0.881852067541331,0.4738591625355184,-0.7196949608623981,-0.5961246732622385,-0.09503220207989216,-0.2768786414526403,-0.4098193412646651,-0.013277202844619751,-0.3628161628730595,-0.33747148560360074,-0.16822192026302218,0.2191742160357535,-0.4536022851243615,0.7729153134860098,-0.7255480005405843,-0.411426552105695,0.45841583935543895,0.9497237335890532,-0.7561404700390995,0.9218845926225185,0.830491344910115,0.4212393672205508,0.6346442406065762,-0.05136214289814234,-0.22492876229807734,0.2433460676111281,0.020782237872481346,-0.01076143467798829,-0.013832331169396639,0.04677402088418603,-0.4029792179353535,0.6766885267570615,-0.5700245657935739,0.5952416728250682,-0.7006849702447653,-0.7246065521612763,-0.2431849935092032,0.9339021970517933,0.8683609641157091,-0.735668315552175,0.8435715273953974,-0.45813307724893093,-0.11893274681642652,-0.13500363286584616,0.14227739814668894,0.9163882825523615,-0.635847685392946,0.9160659732297063,-0.24954808596521616,0.007462496403604746,-0.357603854034096,-0.9975483487360179,0.292025092523545,0.6672822060063481,0.6428275355137885,0.6938095078803599,0.7386206430383027,-0.9885540208779275,0.39029195345938206,0.19153820956125855,0.692909489851445,0.011815957725048065,-0.9875214644707739,-0.32641744147986174,-0.4041413995437324,-0.9889711514115334,-0.845336027443409,-0.6685987012460828,-0.5150500070303679,0.6626534257084131,-0.3384096925146878,-0.7427903348580003,-0.9401534763164818,0.4805065365508199,0.30572972958907485,-0.46846305998042226,0.6792425569146872,-0.28443204751238227,-0.8080881452187896,-0.03680380852892995,-0.19919416960328817,0.2827760330401361,0.01451042341068387,-0.2281938148662448,0.29963428247720003,0.07420161087065935,-0.4523545471020043,-0.19788079569116235,0.4370969161391258,0.7485782536678016,-0.5436406922526658,-0.37218256900087,0.15003060642629862,0.3630580836907029,0.4114436595700681,-0.033795657102018595,-0.6911117131821811,-0.9827250470407307,-0.7164449635893106,-0.6908821524120867,-0.2505287639796734,0.7167151928879321,0.7461693109944463,-0.4865694073960185,0.4074284303933382,0.07485423563048244,-0.5879704793915153,0.3885123860090971,-0.45873525459319353,0.3105465145781636,0.7469314238987863,-0.30071833496913314,0.751040868461132,0.06922792736440897,0.25904587050899863,0.5922639537602663,-0.2118290369398892,0.3100280659273267,0.8045610194094479,-0.5504638981074095,-0.2955885208211839,-0.9099992467090487,-0.22226816602051258,0.5589590538293123,0.6393633424304426,-0.6236401577480137,-0.6172051853500307,-0.21723606623709202,0.6445503570139408,0.47225172352045774,0.17709107138216496,-0.05862434022128582,-0.9099870496429503,-0.3385822307318449,-0.32878126483410597,0.19814069336280227,-0.7573686111718416,0.378202389460057,0.2323293350636959,0.4918969781138003,0.2682787273079157,-0.07609862042590976,0.7977452166378498,-0.5927168289199471,-0.9222795180976391,-0.08890114445239305,-0.8874932890757918,0.9578985059633851,-0.17812305223196745,-0.9394790278747678,-0.06993823405355215,-0.9761644820682704,-0.5592474602162838,-0.08151976717635989,0.771477397531271,-0.4974151593632996,-0.019073687493801117,0.10775614669546485,0.783635136205703,0.5212072096765041,-0.6499087470583618,0.9124439931474626,0.737764232326299,-0.7696239231154323,0.3087732479907572,0.9750433722510934,0.2646250929683447,-0.980990445241332,0.0364577891305089,-0.2425764286890626,0.17534946603700519,0.890338602475822,-0.04875760059803724,-0.131882069632411,-0.8311835625208914,0.48293454060330987,0.7906353804282844,-0.8835489740595222,-0.7095822249539196,-0.32528947526589036,-0.05698168883100152,-0.3454097229987383,0.06787748681381345,-0.7936903582885861,-0.3356841541826725,0.765211224090308,0.7573947259224951,0.3832774618640542,0.7048730226233602,-0.28833767399191856,0.8676138087175786,0.9137102435342968,-0.32906511798501015,-0.6076554539613426,-0.1238481248728931,-0.8512570257298648,0.09050048794597387,-0.4258127002976835,0.6103677852079272,-0.4168993174098432,0.34596098912879825,-0.1117511410266161,-0.595619160681963,0.19288202235475183,0.6643459531478584,0.48303882544860244,0.6714414735324681,0.08087512943893671,-0.6915466925129294,0.5612885267473757,0.33497668011114,-0.23616418428719044,0.8347389060072601,0.08065588120371103,0.4325940264388919,0.6885326444171369,-0.7861098679713905,0.4650859166868031,0.8177732452750206,0.1910476628690958,0.2512957467697561,-0.3160900049842894,0.4817033763974905,0.3739480613730848,-0.7310799327678978,-0.8240258418954909,-0.6460859212093055,0.9548334986902773,0.26218092953786254,-0.7955129472538829,0.2947278837673366,-0.3683473076671362,0.7604548870585859,0.4588897624053061,0.10751575650647283,-0.12479607807472348,-0.4238665928132832,-0.9286504071205854,-0.5867187413387001,-0.2194681572727859,0.2701466577127576,0.1424658540636301,-0.8840374602004886,-0.40628143632784486,-0.21932427352294326,-0.48956881696358323,0.3990146038122475,0.8169516315683722,-0.4134117104113102,-0.13716098992154002,-0.27867956133559346,-0.6871790229342878,0.002616938203573227,-0.5657191211357713,0.08385356515645981,0.8217635327018797,0.7515080496668816,0.8804091848433018,0.6941833412274718,0.9983903826214373,-0.5641351630911231,-0.7981351078487933,-0.10627931356430054,-0.04197598900645971,0.2709120330400765,0.13365996116772294,0.3974150223657489,0.12169038224965334,-0.9008690258488059,0.14918973110616207,-0.20463717868551612,0.48695129342377186,-0.017553176265209913,0.3252230561338365,0.9930782536976039,0.7796271815896034,0.15583161171525717,0.39635170390829444,0.11255983030423522,-0.6956804017536342,-0.6967661031521857,-0.31313193682581186,0.7582117565907538,0.7232089936733246,0.4983314387500286,-0.40257907984778285,0.05067144613713026,0.8246103832498193,0.4032964138314128,0.5738689894787967,0.10530400928109884,-0.11449723178520799,-0.3223225479014218,-0.615308104082942,0.4689224576577544,-0.07150209276005626,0.6677231602370739,-0.6443038205616176,0.042233193293213844,0.06640889495611191,0.5815602988004684,-0.49497508257627487,-0.44437685050070286,-0.8070956170558929,0.7116316468454897,-0.6358370473608375,0.6702261809259653,-0.8719410998746753,0.12657358450815082,0.8981180074624717,-0.028166052885353565,-0.9497280828654766,0.8796837432309985,-0.4391683069989085,-0.0031889723613858223,0.953565115109086,0.7507923007942736,0.9599513644352555,-0.8752338527701795,-0.3052019397728145,0.06004448002204299,0.8091467055492103,-0.6563619072549045,-0.30023278295993805,0.6115311216562986,-0.8631697124801576,0.15504670003429055,-0.1010019020177424,0.8248454220592976,0.2312861424870789,-0.004029977135360241,-0.8122231727465987,0.30229661613702774,0.5316960993222892,0.7515471577644348,-0.2560907625593245,-0.8782672816887498,0.893838110845536,-0.7899859175086021,-0.8588727070018649,-0.7231176570057869,0.08665911387652159,-0.20099913468584418,-0.7195078036747873,0.6238601445220411,-0.932411203160882,0.3018617513589561,-0.7485287822782993,-0.4118964336812496,0.361101265065372,-0.3336365045979619,0.3905118331313133,0.7987117352895439,0.7964485096745193,-0.6930604856461287,0.42403731774538755,0.7388713741675019,-0.44887028774246573,0.34046732913702726,-0.8749235295690596,-0.685644491109997,0.0556055111810565,-0.5766935013234615,0.5289350752718747,-0.5434336359612644,-0.08644960541278124,-0.11511951824650168,-0.9645120538771152,-0.4056063932366669,0.42372473422437906,-0.646886337082833,-0.7067832900211215,-0.6354132406413555,0.2715635788626969,0.6996582923457026,0.04737068060785532,0.5864869318902493,0.5197710422798991,0.01808602688834071,-0.5217305007390678,0.05517729418352246,0.9906025524251163,-0.5589035423472524,-0.5747589119710028,0.5485811666585505,-0.2742595262825489,-0.18091753777116537,-0.08076462848111987,-0.7122470964677632,-0.8917693984694779,0.2503488454967737,0.4661655053496361,-0.9630849077366292,-0.10329277999699116,0.8153600268997252,-0.14487158972769976,0.293167213909328,0.836262886878103,-0.5741934035904706,-0.8615826442837715,-0.5055184802040458,0.7625966612249613,-0.9935105899348855,0.6174396802671254,-0.8597862767055631,0.8044726899825037,0.05124868359416723,0.7083183759823442,0.02830813080072403,0.5170278269797564,-0.8947871411219239,0.8437882685102522,0.23624457092955709,0.8591904295608401,0.7056599925272167,0.3492314014583826,-0.4200463630259037,-0.40708131343126297,-0.20020227180793881,0.5160690131597221,0.15656769881024957,0.9594823415391147,0.3377648778259754,0.03099079756066203,-0.08286530897021294,0.6260957033373415,-0.7863268139772117,0.16606625448912382,0.28190703177824616,0.47566615464165807,-0.16459722304716706,0.15579235274344683,0.8230457440949976,0.10226448439061642,0.7130413935519755,0.8265852052718401,-0.4854782111942768,-0.7384742279537022,0.25359685765579343,0.11634861072525382,0.8611839208751917,-0.30642634024843574,0.2314349701628089,-0.68093227641657,-0.8518715752288699,0.021879578940570354,0.9633016297593713,0.9430866809561849,0.6625697067938745,-0.2441824246197939,-0.005085779819637537,0.638278033118695,0.27517304150387645,-0.7635180307552218,0.5227877022698522,0.6573956911452115,0.22254119627177715,-0.08951344713568687,0.07267512427642941,-0.8134487615898252,0.4598145862109959,0.6240581064485013,0.8148335590958595,0.8841527188196778,0.1870852131396532,-0.1975980270653963,-0.08920897683128715,0.6165611585602164,0.7218981524929404,0.9020150271244347,-0.5227018273435533,0.6465743337757885,-0.07937403628602624,-0.7130886544473469,0.782965587452054,-0.3001849385909736,-0.28664521779865026,-0.6737670693546534,0.2514731399714947,0.5369504671543837,0.34146932512521744,-0.0032132980413734913,0.1588648115284741,-0.9826450045220554,0.1247272677719593,0.4909730860963464,0.8285336578264832,-0.17318440275266767,-0.6966003961861134,-0.916003555059433,-0.5225058495998383,-0.659235866740346,0.9730179063044488,0.22255670465528965,-0.10330409929156303,-0.3815788282081485,0.7720177774317563,0.3679795884527266,0.28407254768535495,0.38878758950158954,-0.28193273954093456,-0.4107688660733402,-0.041766890324652195,0.632137973792851,0.8757625217549503,0.019831381738185883,0.9243150395341218,-0.7112062126398087,0.08637200575321913,0.022883485537022352,0.7839875970967114,-0.9429132658988237,0.2635342301800847,-0.6710292473435402,-0.4388112691231072,0.17496684985235333,-0.8308532782830298,-0.8364219795912504,0.41187599999830127,0.31340998504310846,-0.9168862826190889,-0.862604221329093,0.0729392091743648,-0.746997952926904,-0.6621199822984636,0.7536569447256625,-0.7140494212508202,-0.41630887100473046,-0.2982164095155895,-0.11651022545993328,-0.44002932077273726,0.938938912935555,0.03715068940073252,-0.05326027609407902,-0.2068630075082183,0.8998983120545745,-0.39588440116494894,0.9988936320878565,0.08178181760013103,-0.32273344649001956,0.12350549828261137,-0.9810957130976021,-0.7126314868219197,0.9097048807889223,-0.7712439582683146,-0.7719303667545319,-0.8434631866402924,-0.8586541214026511,-0.6541976975277066,0.3478189422748983,-0.2259439630433917,0.0863954471424222,0.13755596335977316,0.05558847775682807,0.8799892514944077,0.6336232898756862,-0.4284935095347464,-0.767551435623318,0.8259256407618523,0.38404852570965886,0.640291087795049,-0.42691735830157995,-0.10988823091611266,0.788394961040467,0.17468432150781155,-0.4660912952385843,-0.8767128344625235,-0.5453624529764056,-0.28203966235741973,0.7649910901673138,-0.33443553652614355,0.3784503024071455,-0.6172786992974579,-0.6349503300152719,0.08482403447851539,-0.7008265927433968,0.9303572359494865,0.16905419388785958,-0.6133935381658375,-0.6095642847940326,-0.9103633090853691,0.6405276511795819,-0.11518572131171823,0.5962023008614779,-0.675972783472389,-0.8992690555751324,0.7450322997756302,-0.613539251498878,0.5669727087952197,-0.5180738144554198,-0.4230623687617481,0.7756486884318292,0.9558530165813863,-0.5923172454349697,-0.9583100634627044,-0.949265546631068,0.22629994014278054,-0.00853907410055399,-0.6345307817682624,-0.7272395989857614,0.0006113899871706963,-0.8190563074313104,-0.6819797661155462,0.334187148604542,-0.9705528193153441,0.3411161620169878,0.4041932453401387,-0.18377391947433352,0.6926511507481337,0.101387495175004,-0.9880344537086785,0.6716930968686938,0.22224554838612676,-0.44107290310785174,0.8364047184586525,-0.896966952830553,-0.3887198632583022,-0.5352576524019241,-0.2719499762170017,-0.01356505649164319,-0.903779230080545,0.6567551884800196,-0.8220918104052544,0.01318908529356122,0.4204574632458389,-0.637151469476521,0.7084325510077178,-0.5304945004172623,0.15860230289399624,-0.630519600585103,-0.7666038544848561,-0.6240909839980304,0.696834793779999,0.2468145489692688,-0.3595698745921254,0.6557484064251184,-0.2974050845950842,-0.06140765640884638,0.6661663805134594,0.8649541563354433,-0.04903746349737048,0.2390706199221313,-0.9118584808893502,-0.669101235922426,-0.7152348500676453,0.5310567920096219,-0.6910908785648644,0.5077326479367912,0.7222065348178148,-0.894283214583993,-0.5854287766851485,-0.8883453710004687,0.26248712511733174,-0.4678723122924566,-0.43676506262272596,-0.44477897649630904,-0.48272297717630863,0.33431695168837905,-0.17785722389817238,-0.6468648407608271,0.7025515125133097,-0.2774941180832684,-0.0069794123992323875,-0.2827329160645604,-0.9235970517620444,-0.7091556945815682,-0.8469219324178994,-0.5224715853109956,0.7221960700117052,-0.10114760138094425,0.4362026248127222,0.689699325710535,0.8964135455898941,0.5796169391833246,0.45078494353219867,-0.03210206748917699,0.3354334896430373,-0.24407597025856376,-0.1552417720668018,0.9168037218041718,-0.0544288014061749,-0.05247574998065829,0.21990065136924386,-0.01248082472011447,-0.425533106084913,0.5039125671610236,0.1108513125218451,-0.7244292297400534,0.8760759546421468,0.48268630634993315,-0.7350932247936726,0.6885881321504712,-0.5047436482273042,0.5233097402378917,-0.12410377664491534,0.6796650299802423,-0.05704439012333751,0.7527168951928616,-0.03707804065197706,0.5632386095821857,0.4115603785030544,-0.025207519996911287,-0.332054537255317,-0.6176643446087837,-0.14074865682050586,-0.3802377958782017,0.625406717415899,0.9766344460658729,-0.212247880641371,-0.8117099041119218,-0.36436785012483597,-0.5686157853342593,-0.18952240515500307,0.3646780210547149,0.054636487271636724,-0.3108327495865524,-0.5371390739455819,-0.8632678375579417,-0.4210411594249308,0.8571409997530282,0.5682739834301174,-0.3498505209572613,-0.2867199834436178,-0.6982115120626986,-0.11696340888738632,0.5023228502832353,-0.9972770977765322,0.40962562384083867,0.39715233026072383,0.41352877113968134,0.2070652418769896,0.20935882069170475,0.8769435919821262,0.4253170760348439,0.6525161718018353,-0.10028814105316997,0.26368024200201035,-0.9992150319740176,0.6172173214145005,0.1806954313069582,-0.5456351758912206,0.801741985604167,0.5017956662923098,0.6700398083776236,-0.7280605202540755,-0.22695329878479242,0.34757363703101873,0.3945285798981786,-0.14469723543152213,-0.8604499413631856,-0.813233713619411,-0.45621470315381885,0.09157289890572429,-0.6659672358073294,-0.9745455649681389,-0.7886367766186595,-0.0905489381402731,0.8486864119768143,-0.5394190647639334,-0.08100491156801581,-0.7688652803190053,0.856400447897613,0.20007120724767447,-0.02490649838000536,-0.840077277738601,-0.9685533866286278,0.5798078398220241,-0.7924246001057327,-0.3933552778325975,0.1982457130216062,0.45823697792366147,-0.5632549580186605,-0.8811770011670887,-0.9069277695380151,-0.4567191326059401,-0.45335948187857866,0.22835271153599024,0.7826574123464525,0.9661641987040639,0.19566729245707393,-0.8781283060088754,0.1596410134807229,0.18177702790126204,-0.643635066691786,-0.346556531265378,-0.7637418732047081,-0.370976279489696,0.13220484321936965,-0.5889113461598754,0.8143632803112268,-0.0845806049183011,-0.3737665466032922,-0.5449710134416819,-0.6032245787791908,0.8392846817150712,-0.09429697459563613,-0.3293772409670055,-0.8326009805314243,-0.01739608868956566,-0.8449271912686527,0.37369727389886975,0.02521573193371296,0.3948807190172374,0.1828251238912344,-0.2751253773458302,0.09381707012653351,-0.007848906796425581,0.00290346285328269,0.5735095436684787,-0.2949466756545007,-0.6805681549012661,0.4474701820872724,-0.4341314076445997,-0.9517358154989779,-0.70362658938393,0.6729520973749459,-0.35795063246041536,-0.2884626593440771,-0.1648571933619678,-0.05200293334200978,-0.09643636923283339,0.46965623600408435,0.40121867833659053,0.9019822580739856,-0.2162078176625073,0.9954844978637993,-0.8816205579787493,0.7062794812954962,0.0016758311539888382,-0.7376937577500939,0.49938336480408907,-0.008807630278170109,-0.4297416196204722,-0.9141438887454569,-0.38193560717627406,-0.5766397304832935,0.4350532488897443,-0.3181708171032369,0.029985578265041113,-0.8510656063444912,0.6243886849842966,0.569152913056314,-0.15598458284512162,0.3705301317386329,-0.701015351805836,-0.19796006195247173,0.035959082655608654,-0.6616775831207633,0.18521153507754207,-0.636498779989779,-0.13175154523923993,0.1682084333151579,0.9918639785610139,0.2603420037776232,0.20415498176589608,0.8285679314285517,-0.16135102789849043,0.961097554769367,0.3183124349452555,-0.12352368654683232,-0.581465682014823,0.06971022253856063,-0.2871082900092006,0.27778560761362314,0.2648270525969565,0.5531568243168294,0.5868420233018696,0.33895307360216975,0.5112014571204782,-0.07516521075740457,-0.9800566700287163,-0.3056003921665251,0.0473074521869421,0.8354514315724373,0.9793662074953318,-0.7241847566328943,0.9789076335728168,-0.907079353928566,-0.8114197547547519,0.09243462840095162,0.8970275982283056,-0.9124110341072083,-0.9373045577667654,-0.29028691072016954,-0.8513891589827836,0.5464505441486835,-0.4640668765641749,0.35025490121915936,0.33508870704099536,-0.9445486553013325,-0.25063800951465964,-0.05043714679777622,0.8221929548308253,0.6793829901143909,0.9269288834184408,-0.9174527865834534,-0.7379062757827342,0.866595889441669,-0.5517615298740566,0.28596925688907504,0.957057393155992,0.22115212539210916,-0.7071793884970248,-0.31592763355001807,0.05041771801188588,-0.896187209058553,-0.27665953524410725,-0.9085854175500572,0.1029362971894443,-0.3288508360274136,0.3127852431498468,-0.5897770384326577,0.24336504051461816,-0.5190878277644515,0.7926000109873712,0.7211087765172124,-0.3794598919339478,0.20129697816446424,0.5709708421491086,-0.33491776045411825,0.24088715575635433,-0.8687612419016659,0.4073212184011936,0.38316751597449183,0.39164384407922626,-0.7045051860623062,0.16713451966643333,0.08895772835239768,-0.5406740633770823,0.36742743803188205,-0.2255715192295611,0.06912618968635798,-0.7655714000575244,0.9631536900997162,0.24586962023749948,-0.06293736305087805,0.38770604971796274,-0.4578687767498195,-0.514182819519192,-0.13744884077459574,-0.07487396104261279,-0.16483038384467363,-0.11086034215986729,-0.9234163383953273,0.03339522937312722,0.8113152184523642,0.03948284266516566,0.08844385296106339,-0.6067453105933964,-0.3273147498257458,-0.9697444871999323,0.2987385727465153,-0.15866870526224375,0.28502838034182787,0.1310605243779719,0.41602212376892567,0.2743463050574064,0.4532025386579335,0.18463253881782293,0.9915107912383974,0.958715102635324,0.8041199962608516,-0.21548509504646063,0.877061250153929,-0.03285851702094078,0.5906089232303202,0.8438813928514719,-0.3165509281679988,0.015826641116291285,0.6416002865880728,-0.2764201615937054,0.21368157910183072,-0.9776423061266541,-0.764352991245687,-0.8284485228359699,0.13607585802674294,0.8882582695223391,-0.3403362329117954,-0.554528430569917,0.34706002520397305,0.2649585413746536,-0.020312340930104256,-0.5185781950131059,-0.8597477180883288,-0.4669872811064124,0.7877185735851526,-0.9704166981391609,-0.05854002619162202,-0.7272889688611031,-0.8603104120120406,0.15953921154141426,0.45906270993873477,0.9896592237055302,-0.9870073082856834,0.05654330365359783,0.2721732184290886,-0.09676300594583154,0.5276661622337997,0.8644667360931635,-0.9196321396157146,0.6792399338446558,-0.8251144643872976,0.5609886725433171,0.6098569231107831,-0.9828945165500045,0.3010510727763176,-0.9163089138455689,-0.29730312060564756,-0.42299118684604764,-0.03488941304385662,0.7271052091382444,0.31278341682627797,-0.2980908118188381,-0.8993196398951113,0.16307696141302586,-0.6481106812134385,0.8731087008491158,-0.6666258806362748,0.6868154504336417,0.22559966333210468,-0.05338453222066164,-0.1833909680135548,-0.13176691951230168,-0.7798473183065653,-0.6670919433236122,-0.648299069609493,-0.7964973482303321,0.8408340220339596,0.04182413127273321,0.17399309668689966,0.3105309479869902,-0.3489584135822952,-0.8725471198558807,-0.10361061571165919,-0.06492067594081163,0.4066544412635267,0.41707075946033,-0.28502124547958374,0.1949178883805871,0.6855024937540293,-0.7821077625267208,0.45796599332243204,-0.9496385916136205,0.7084298706613481,-0.25017203763127327,0.6905467957258224,0.7827792754396796,-0.5455361381173134,-0.5844822721555829,0.35622339230030775,0.9867266467772424,0.06554841063916683,-0.8475648979656398,-0.23938211612403393,0.04725825320929289,-0.8789957258850336,0.3783386037684977,-0.8925882549956441,0.7598947882652283,0.3655586731620133,-0.8660985771566629,-0.21040954859927297,0.8767868620343506,-0.7812699028290808,0.8762457305565476,0.7323129824362695,-0.005148344207555056,0.7693935805000365,-0.14567065984010696,-0.24508621729910374,0.8854236844927073,-0.4143038489855826,0.9946317835710943,0.11008391343057156,-0.2972120037302375,-0.11385289300233126,-0.4652807731181383,-0.38082207879051566,0.17972453264519572,0.5755236041732132,-0.021788631100207567,0.644562432076782,-0.08990744082257152,-0.23264470184221864,0.158752023242414,0.2344691390171647,0.5147413983941078,0.14768657041713595,-0.9704540693201125,0.9685909799300134,-0.56477917637676,0.8708411850966513,-0.39678832702338696,-0.19708538008853793,-0.9050188553519547,-0.5351766534149647,-0.24968511750921607,-0.2105806227773428,0.699733676854521,0.4412343855947256,-0.04331282805651426,0.03229858633130789,-0.627637377474457,-0.47937268391251564,-0.7589494958519936,0.24792566802352667,-0.981094746850431,-0.9870823067612946,0.6418978148140013,0.5441604959778488,0.9238694086670876,0.010162631515413523,-0.8097572731785476,0.4086172911338508,-0.7541338880546391,-0.2673920365050435,0.9846095200628042,-0.1533012893050909,0.3863746579736471,0.15533782821148634,-0.5061806351877749,-0.24066199734807014,-0.8762362631969154,0.26167992502450943,0.5349310804158449,-0.5835243710316718,0.056562973652035,-0.9772579483687878,-0.8808548599481583,-0.6909820050932467,0.9774872418493032,0.3705013655126095,-0.49194402154535055,-0.4290562500245869,-0.020876558031886816,-0.22418876504525542,-0.6429637302644551,-0.8767153234221041,0.8009083117358387,-0.07344578206539154,-0.4935067119076848,0.7161755939014256,-0.8722448120824993,-0.5071911481209099,-0.09565976168960333,-0.37562427343800664,0.35817371355369687,-0.1869117859750986,0.17300840979442,0.5139362406916916,0.16445714375004172,-0.7615587958134711,-0.7317433953285217,-0.8274589497596025,-0.7772437552921474,0.25956808077171445,-0.42559651657938957,-0.0352568319067359,-0.3390957359224558,-0.965578502509743,-0.15983001049607992,0.29462360171601176,0.5892978911288083,-0.442973870318383,0.6394239021465182,-0.5912549421191216,-0.8680450590327382,0.22226681094616652,-0.7644583312794566,-0.865949169266969,-0.16693119099363685,-0.05655118776485324,0.24506369279697537,-0.8391000009141862,-0.5137532842345536,-0.5797296231612563,-0.17150651384145021,0.5800008373335004,-0.9543083938769996,-0.5515444329939783,0.7802061806432903,0.5315419849939644,-0.8800187706947327,0.5382226356305182,0.9889588383957744,0.2510519251227379,-0.89279461838305,-0.17881308123469353,0.36645433073863387,-0.9525920343585312,0.5724747814238071,0.28879340598359704,0.5758488816209137,-0.317055017221719,-0.9114767867140472,-0.3281874628737569,-0.07030818797647953,-0.9930693721398711,0.34828764386475086,-0.6271926234476268,-0.9933904260396957,0.5233674342744052,0.457577511202544,0.8765909750945866,0.8551115822046995,-0.6853187368251383,-0.47215896006673574,-0.6008133571594954,0.9804429956711829,-0.3529085721820593,0.8676760517992079,-0.8748312899842858,-0.880034264177084,0.4689402161166072,-0.8297616834752262,-0.6096156518906355,0.1822678572498262,0.09369838610291481,-0.5491185402497649,-0.6865408276207745,-0.8436557380482554,-0.9463054216466844,0.05480294721201062,-0.41974091762676835,0.26821848936378956,0.27068847697228193,-0.26362377777695656,0.7139383652247488,-0.24965153774246573,-0.21075729932636023,0.22262889426201582,0.5907706492580473,0.18385933991521597,-0.4912554477341473,-0.22777776047587395,0.28014215361326933,-0.6963097034022212,-0.38394294679164886,0.7959102801978588,0.33863423950970173,0.8664933922700584,0.21316988626495004,-0.36812184285372496,-0.9791374374181032,0.9302678657695651,-0.09986696299165487,0.7225080817006528,-0.5804700646549463,0.9531317381188273,-0.4931300776079297,-0.0385255110450089,-0.15696809394285083,0.801859765779227,0.17544676596298814,0.402798973955214,0.5112519753165543,-0.8619647403247654,0.5975474547594786,0.576019549742341,-0.23433814942836761,0.3929711375385523,-0.4558871150948107,0.9919715118594468,-0.32850547367706895,-0.002776889596134424,0.881080693565309,0.11942083248868585,-0.06331086624413729,0.9910233309492469,0.882067818660289,-0.13707370217889547,0.19418877642601728,0.7339869970455766,0.4952520648948848,0.6730181402526796,-0.9594373581930995,0.2843004819005728,0.9631828158162534,-0.24420113675296307,-0.28916281182318926,-0.21053346805274487,-0.9164140722714365,0.8745286278426647,0.45036848122254014,0.6444331095553935,0.7404333669692278,0.06832156470045447,-0.3457363792695105,-0.16115598008036613,-0.6731732878834009,-0.9211440957151353,0.10565981175750494,-0.5269708489067852,-0.18145996378734708,-0.4173647225834429,0.2913196561858058,0.14348347298800945,0.794135173317045,-0.18902423419058323,-0.44097730051726103,-0.3700309251435101,-0.5566951250657439,0.38677975069731474,0.09227545326575637,-0.8982506697066128,-0.593285505194217,-0.6328981416299939,0.783640222158283,-0.08518149424344301,-0.65345887420699,0.1421980052255094,-0.7267364347353578,-0.2950265845283866,-0.6422314317896962,0.8331012194976211,0.3697993350215256,0.8381612128578126,0.5377396661788225,0.11002914654091,0.7281810222193599,-0.9336720542050898,-0.24348204163834453,-0.5272539719007909,0.9690890908241272,-0.9495915118604898,0.006832472048699856,-0.9458926813676953,-0.9579859208315611,0.032432754058390856,0.19876329321414232,0.6653167116455734,0.9842049833387136,-0.9626264777034521,-0.5014969436451793,-0.025967098772525787,0.6042960430495441,0.05187914287671447,0.5126856011338532,0.32589704962447286,0.07405267143622041,-0.7697308422066271,-0.19353482779115438,-0.13096352946013212,-0.10304769221693277,-0.07148628728464246,0.8396222819574177,-0.2635091170668602,-0.051954290363937616,0.6431758771650493,0.7377333580516279,-0.9429131704382598,-0.5411461666226387,0.8511257381178439,0.06764405639842153,0.6654566721990705,0.3243449479341507,-0.4043231401592493,-0.8228756887838244,-0.4825082612223923,-0.926893952768296,0.018593681044876575,-0.8482551323249936,-0.4903375478461385,0.7136056441813707,0.699347538407892,-0.4600518010556698,0.5063539543189108,0.2538996175862849,0.4188620410859585,-0.06967574590817094,0.3852673815563321,-0.8465839349664748,0.7820245968177915,0.05773631343618035,-0.5603105444461107,0.17004109593108296,0.6687288535758853,-0.3725230931304395,0.017608003225177526,-0.5496860360726714,0.48878770135343075,0.3816585587337613,-0.0017322073690593243,-0.039118224289268255,0.5200543678365648,-0.10301398392766714,-0.34898484870791435,-0.12315108580514789,-0.34137088945135474,-0.49124243669211864,0.6304406309500337,-0.7955464506521821,0.29962531942874193,-0.48632325464859605,0.32128484081476927,0.9109521647915244,0.6868643271736801,-0.12421398982405663,0.8109095245599747,0.4414265053346753,0.8721523992717266,0.2954929047264159,-0.1929826415143907,-0.8266054792329669,0.4256451325491071,0.578757690731436,-0.4156790557317436,0.6352674053050578,-0.6095783589407802,0.08875861670821905,0.5587513912469149,-0.47989873867481947,-0.25295609794557095,-0.9855395052582026,-0.7571009523235261,0.39353993255645037,0.9159440752118826,-0.28291313955560327,0.19143207417801023,-0.8356320979073644,0.4234970910474658,-0.9039311916567385,-0.09619727218523622,0.6254718517884612,0.5165046812035143,-0.3316137567162514,-0.7718802788294852,0.5801969585008919,0.2976157097145915,0.9338581687770784,-0.8371873190626502,0.32932905573397875,0.5623111482709646,0.28702237270772457,-0.5502855954691768,-0.8453363734297454,-0.579868427477777,-0.7357032652944326,-0.169469831045717,0.8903067638166249,0.6301223738119006,-0.8786352481693029,0.9353702254593372,0.9718914101831615,0.8723997743800282,0.6814467143267393,-0.18901762552559376,-0.9175783288665116,0.3166013634763658,-0.13524128729477525,-0.51652776543051,0.370571194216609,-0.6994999852031469,-0.8470825497061014,0.6404747078195214,0.0806722124107182,-0.5905780917964876,-0.8679175488650799,0.7804396147839725,-0.13449502969160676,0.8137826411984861,-0.3399022505618632,-0.6082993685267866,0.6523642530664802,0.4441828643903136,-0.3102923487313092,-0.8401243560947478,0.11988566210493445,-0.519449966493994,0.26890915911644697,0.6067923852242529,0.8117617615498602,-0.8437312953174114,0.4650392411276698,-0.3373585119843483,0.7809454090893269,-0.21074977610260248,-0.8840363160707057,0.6191013250499964,-0.06890409300103784,-0.3614146476611495,0.23682265682145953,0.5903428182937205,-0.637399138417095,-0.3423475348390639,0.9897964550182223,-0.9973271144554019,-0.8644655486568809,-0.5498190694488585,0.22274920297786593,-0.13924411218613386,0.8442331831902266,-0.890400801319629,-0.4118726714514196,0.9498075493611395,-0.08428309950977564,-0.8450904274359345,-0.3120231330394745,-0.8863414945080876,0.24666658136993647,0.373791532125324,0.23536856984719634,-0.41581587260589004,-0.514156580902636,0.26999651174992323,0.5541753023862839,0.8716590381227434,-0.1178551809862256,-0.5495024723932147,-0.017323452979326248,-0.6639451556839049,-0.3009031191468239,-0.437613295391202,-0.8172229882329702,-0.4935679421760142,0.37418480636551976,-0.509193716570735,0.9045910467393696,0.9058106695301831,0.6813964312896132,-0.710934926290065,-0.783146564848721,-0.1479026605375111,0.02193837659433484,0.12210881896317005,0.7546180519275367,0.09545792266726494,0.7575076697394252,0.43855270044878125,0.691372562199831,0.3158566737547517,-0.960538491141051,0.7899571913294494,-0.5978186489082873,0.15887559717521071,0.8957944912835956,-0.15476340195164084,0.286264656111598,0.5196684156544507,-0.015058599878102541,0.7126588909886777,-0.5823909887112677,0.7312733214348555,-0.4808586002327502,-0.3515238161198795,0.136153734754771,0.9272265606559813,0.36593286879360676,-0.7609158102422953,0.766277277842164,-0.5831626914441586,-0.14448212925344706,-0.8207312994636595,0.36178364465013146,-0.186258259229362,-0.7158701992593706,0.24209488416090608,0.41822104481980205,0.27217822475358844,-0.5654724994674325,-0.4250853913836181,0.49370887223631144,0.34351587714627385,0.7392863230779767,-0.696370251942426,0.10613896185532212,-0.08878105040639639,-0.570418297778815,-0.22264222148805857,0.4295965884812176,0.8269992885179818,0.26273737801238894,0.37443287018686533,-0.7732158773578703,0.9615881131030619,-0.6019580983556807,0.9297022991813719,0.43877189327031374,-0.2844570120796561,-0.12069409713149071,0.25585993891581893,0.4442965309135616,0.6127985990606248,-0.6073497775942087,0.9422985236160457,-0.0403995169326663,-0.7640016819350421,0.26288298331201077,0.995964290574193,-0.021619174629449844,-0.8046492543071508,0.31431735260412097,0.26241612480953336,0.8125708433799446,-0.09299989324063063,0.7862546960823238,-0.8423071661964059,0.16175573831424117,-0.13452694192528725,-0.7790146209299564,0.5500876121222973,0.23575378954410553,-0.9786896063014865,0.8868396985344589,0.9025942762382329,0.25669983169063926,0.2845376068726182,-0.3476891964673996,0.2054621260613203,0.721317661460489,0.21342911710962653,-0.46646159421652555,-0.541416619438678,-0.8989670793525875,0.43995933094993234,-0.1126572610810399,-0.4210309009067714,-0.297725148499012,-0.9829800236038864,-0.4444498377852142,-0.5547198075801134,-0.08137773582711816,-0.592045268509537,0.998521710280329,-0.0776505065150559,-0.2975599975325167,-0.6223252499476075,-0.7947228690609336,0.8033480145968497,-0.5471226903609931,0.5850383979268372,-0.6752153947018087,0.277699280064553,0.22716156113892794,0.13653316674754024,0.9258534493856132,0.5812774337828159,-0.9641187353990972,-0.6498180702328682,-0.6598023911938071,-0.28491964330896735,0.046639150474220514,0.18201474146917462,-0.0015069292858242989,0.43255277443677187,0.4718100684694946,0.929553447291255,-0.8441515937447548,-0.19118242571130395,0.38203905522823334,-0.08547153603285551,-0.5883952733129263,0.28192474925890565,0.06485150335356593,-0.09990642638877034,-0.4600075101479888,0.5477359024807811,-0.6406846884638071,0.3615426952019334,0.07648466853424907,0.2910009669139981,0.007963462267071009,0.7976141073741019,0.3111297539435327,-0.0045552365481853485,-0.011009812820702791,0.9803779781796038,-0.7529038237407804,0.8583132149651647,0.2623191266320646,-0.9730336503125727,-0.7621912532486022,0.7978207422420382,-0.5031304461881518,0.8547961241565645,0.7281975448131561,-0.5871190004982054,0.2714689844287932,-0.22224895702674985,-0.047241331078112125,-0.9467331920750439,-0.4185691266320646,-0.24343072809278965,-0.5180309331044555,-0.24682416208088398,-0.9975254232995212,0.910841244738549,0.1901405993849039,0.9946297719143331,-0.22820939077064395,-0.07730604941025376,0.09819389786571264,0.9635361488908529,-0.22118601063266397,0.727723830845207,0.17325721681118011,-0.7034036167897284,-0.49512769328430295,-0.1235595541074872,-0.6217376566492021,0.573889072984457,0.556017882656306,-0.6426860755309463,0.4312301902100444,0.3404614902101457,0.08290364779531956,-0.0956225642003119,0.5113495900295675,0.6406985810026526,-0.1233459790237248,0.5178960780613124,-0.7152523123659194,0.5799710541032255,0.730455297511071,-0.04391628364101052,-0.03869074583053589,0.0021480214782059193,0.9285110076889396,0.3782685585319996,-0.3001330206170678,-0.5459624407812953,0.001906389370560646,-0.814247939735651,-0.5702598826028407,-0.4037588546052575,0.5304097556509078,0.6961784167215228,0.08302847621962428,-0.7475653607398272,0.9799458007328212,0.7193384943529963,0.2393248458392918,-0.7697017043828964,0.8074848069809377,0.024333647917956114,0.9410138493403792,-0.6024409234523773,0.9880741848610342,0.8762376708909869,-0.926143906544894,0.05354930926114321,0.28976372070610523,-0.6653183847665787,0.9492960502393544,-0.5267037278972566,0.30142536852508783,-0.32257873518392444,0.6283117812126875,-0.763880180194974,-0.839551109354943,0.5988807631656528,0.735906861256808,-0.8674818794243038,0.19717730674892664,-0.9803456701338291,-0.39203376695513725,-0.11263987608253956,0.20526107447221875,0.21121244225651026,0.9168483843095601,-0.8436554973013699,-0.5032486906275153,0.7595879356376827,-0.7738854787312448,0.39514651987701654,0.5875473883934319,-0.2098808092996478,-0.3702682959847152,-0.7936864295043051,-0.7229160736314952,-0.7590486938133836,-0.13061000080779195,-0.6554038454778492,0.23140692245215178,-0.08855481958016753,-0.7019146298989654,-0.836509870365262,0.8511923160403967,0.18666470935568213,-0.9894740860909224,-0.6788940113037825,-0.4588369959965348,0.4842534796334803,0.1322649633511901,-0.7086981269530952,0.48857425386086106,0.35708877444267273,-0.40701281279325485,0.28360652551054955,-0.11037007858976722,0.9069987521506846,0.06309590535238385,0.6929254122078419,-0.8514586850069463,-0.4413979803211987,0.9987538466230035,0.490715648047626,-0.220583391841501,0.7655594912357628,0.03969975933432579,-0.5574336871504784,0.750945090316236,-0.24568855576217175,0.5658800816163421,-0.48716979613527656,-0.6789963585324585,0.007419205270707607,0.29050325229763985,-0.9639298818074167,0.7085689464583993,0.9162472058087587,0.1665289718657732,-0.9380865190178156,0.9898899486288428,-0.6431824723258615,-0.876434619538486,-0.30611651856452227,-0.23931919364258647,0.3726403103210032,0.3275784426368773,0.5541091221384704,-0.6240822682157159,-0.09412665013223886,-0.2978804209269583,-0.6829639277420938,-0.9608388366177678,-0.5787206389941275,0.21270292159169912,0.02065070951357484,-0.6812211363576353,0.9070734367705882,0.8336636079475284,-0.7211082796566188,0.17477152356877923,0.8343090815469623,0.3394438889808953,-0.965633770916611,0.29657667223364115,0.4165607807226479,-0.21644346043467522,0.29366396367549896,0.2081787851639092,0.5843198425136507,-0.16520147072151303,0.5293446308933198,0.4636645265854895,0.7648625168949366,0.4294825019314885,0.9967797636054456,-0.933531979098916,-0.15596196753904223,0.773301194421947,-0.9642976769246161,-0.8649110770784318,-0.5656819241121411,0.8817879939451814,0.8895047032274306,0.7473328788764775,-0.5902674463577569,-0.6932086828164756,-0.6577631714753807,0.9156635547988117,-0.39954156475141644,-0.22595311794430017,0.8020530543290079,0.262402237392962,0.527554539963603,-0.6481187171302736,0.4541916409507394,0.02361212484538555,0.9839042201638222,0.32892796536907554,-0.7209426146000624,0.2725862297229469,0.20579892816022038,-0.11830368218943477,-0.8795981481671333,-0.6683858083561063,0.6638073967769742,-0.11776761524379253,0.5702425823546946,0.38779038144275546,0.06188456667587161,-0.8140676165930927,-0.4711684244684875,0.8181209019385278,0.6906406912021339,0.5635250275954604,0.6157793514430523,0.9063841109164059,-0.877044212538749,-0.20669376803562045,0.8634106884710491,-0.3595519457012415,-0.8272461048327386,-0.528399561997503,0.28378073731437325,-0.7960925581865013,0.11922795604914427,-0.4389728242531419,0.9372816598042846,-0.18997390754520893,-0.2383418558165431,-0.43200515070930123,0.18222922831773758,0.09013497037813067,-0.7159455893561244,0.7034168988466263,-0.9813085380010307,0.21819264255464077,-0.021733812522143126,0.3581222859211266,-0.6134475544095039,0.572485703509301,0.09028371283784509,-0.8473212062381208,-0.6375781958922744,-0.6970506315119565,-0.30651079257950187,-0.00320931663736701,0.17530531529337168,-0.3365828115493059,-0.19482354074716568,-0.8972599729895592,-0.3440427351742983,0.8701236355118454,-0.6939536388963461,0.9951761974953115,0.633666988927871,0.6674116514623165,-0.9304365906864405,0.9833378978073597,0.9192791394889355,0.5579953244887292,0.5684253140352666,-0.4934446541592479,0.6777503881603479,0.08525103284046054,0.7701054965145886,-0.3517145379446447,-0.8228279938921332,-0.11097841011360288,0.963193560950458,0.523729220032692,0.4948898022994399,-0.2991863777860999,0.3353816824965179,-0.5504811001010239,-0.9578940127976239,-0.23315488593652844,0.148174487054348,0.0820223018527031,0.7578017390333116,0.1853059376589954,0.7480007754638791,-0.33371739322319627,-0.3326204149052501,0.8628454366698861,0.6021130867302418,-0.055154663510620594,-0.33104110741987824,0.8714975975453854,0.3157083257101476,0.1548711396753788,-0.5610025911591947,-0.20877367677167058,-0.7726219948381186,0.03814865229651332,0.12535483483225107,-0.13304467732086778,-0.6345989140681922,0.6374895605258644,-0.5937788058072329,-0.13543049432337284,-0.2537107076495886,-0.013047439977526665,0.7867450574412942,-0.2271031616255641,0.6528954771347344,-0.39916418632492423,-0.5279049212113023,-0.42341568507254124,0.49125449685379863,0.7799708507955074,0.14252025913447142,0.9844870027154684,0.5246642995625734,-0.37041389290243387,0.5614448837004602,-0.11107179336249828,0.3688852312043309,-0.811692695133388,0.84312509233132,-0.7011900753714144,-0.4046129253692925,0.7931517260149121,0.09653327614068985,0.24629138549789786,0.4940124023705721,0.10453998297452927,0.9013136490248144,0.6967859249562025,-0.010376422200351954,0.9083773763850331,0.5729056685231626,0.25371792493388057,0.8388261119835079,0.31749847857281566,-0.6552274925634265,0.5147912772372365,0.9523153523914516,-0.4003507476300001,0.8825410893186927,-0.6490317988209426,0.5992209445685148,0.9617550116963685,0.33078250056132674,0.4216995728202164,-0.3378455601632595,-0.554620717652142,0.7341070165857673,0.9167409744113684,-0.9728737995028496,-0.7194420853629708,0.17017346573993564,-0.5849615833722055,-0.5106473872438073,0.21211762772873044,-0.4255213332362473,0.9696530923247337,-0.015708225313574076,-0.16139698773622513,-0.9779232959263027,0.05229172529652715,-0.5540078226476908,0.8101222990080714,0.7260118061676621,-0.3667495436966419,0.14994322834536433,0.3322880784980953,-0.5890214913524687,-0.049693613313138485,-0.44812594074755907,-0.6333072776906192,0.9742579045705497,-0.2100836168974638,-0.45312883891165257,0.400687291752547,-0.5465499223209918,-0.17566995788365602,-0.598039383534342,0.6537198796868324,-0.5492265657521784,-0.34250876074656844,-0.7755999071523547,-0.5017696665599942,0.5312034664675593,-0.774236832279712,-0.09734686277806759,0.3289522095583379,-0.3085146280936897,0.28865120792761445,0.9742343337275088,0.1608770852908492,-0.8059850931167603,-0.5474584954790771,0.8452999470755458,0.404660910833627,-0.9429441560059786,0.3595189284533262,-0.2525801253505051,-0.44229844212532043,-0.6764963548630476,0.18740092311054468,-0.9506369507871568,0.29969604266807437,-0.12240195274353027,0.5929769389331341,-0.6001545996405184,0.5152774113230407,0.5824462897144258,0.6003108872100711,0.3677433324046433,-0.08822822337970138,0.06762887677177787,0.5598161178641021,0.3554753940552473,-0.29646268486976624,0.45588665502145886,-0.30631819227710366,0.05842413241043687,-0.9785206955857575,0.006293497979640961,-0.49425141979008913,0.6808280795812607,0.5972465919330716,-0.23255981178954244,-0.25448760110884905,0.8951567276380956,0.08776573091745377,-0.6756119919009507,0.7657285374589264,0.427445481531322,0.6474177571944892,0.8638580534607172,0.012106495909392834,-0.5025985101237893,0.3044463754631579,-0.18652290338650346,0.2384084709919989,-0.6595568149350584,0.1821968127042055,-0.61734036821872,0.20931325806304812,-0.5396287348121405,-0.3106934358365834,0.10866101272404194,0.8498429106548429,-0.8189168255776167,-0.43888794584199786,-0.38396944059059024,0.8931856700219214,0.08756185229867697,0.35374509170651436,-0.7589421537704766,0.792537456844002,0.018972197081893682,-0.842515189666301,0.0467277173884213,0.889907356351614,0.17547539481893182,-0.45076718321070075,0.3155842791311443,0.7373443236574531,-0.5628698877990246,0.10074295336380601,-0.11647401470690966,-0.6017273757606745,-0.3778284518048167,0.42596622509881854,0.8915053983218968,0.8057149103842676,0.7700095381587744,-0.826605461537838,0.18429137161001563,0.4191166344098747,-0.8177502411417663,-0.20186110958456993,-0.2705461848527193,-0.22135408828034997,0.9742074864916503,0.9597794190049171,-0.6564060673117638,-0.7272115028463304,0.8233278333209455,-0.2303807777352631,0.40878132451325655,0.5762235028669238,-0.4188133617863059,0.7773122205398977,-0.6721715065650642,-0.041747181210666895,-0.48637536726891994,0.9108973555266857,0.7303194389678538,-0.1421117391437292,-0.09805604023858905,0.7288496955297887,-0.4674804266542196,0.18842344963923097,-0.3543009338900447,-0.14932510629296303,0.34415624709799886,0.22870416287332773,0.7038416806608438,0.35908803530037403,0.9057863936759531,0.23634091624990106,-0.5270996075123549,-0.9696758142672479,0.6790327769704163,0.9218894066289067,-0.8157412703149021,0.1938875955529511,-0.9412885289639235,-0.4960330273024738,0.02179107954725623,0.3204895253293216,0.2349457899108529,-0.21700312290340662,-0.621898265555501,0.49485596222802997,0.7851069942116737],"type":"scatter3d"},{"customdata":[["2024-07-24T05:35:06.010000"],["2024-07-24T05:35:07.010000"],["2024-07-24T05:35:08.010000"],["2024-07-24T05:35:09.010000"],["2024-07-24T05:35:10.010000"],["2024-07-24T05:35:11.010000"],["2024-07-24T05:35:12.010000"],["2024-07-24T05:35:13.010000"],["2024-07-24T05:35:14.010000"],["2024-07-24T05:35:15.010000"],["2024-07-24T05:35:16.010000"],["2024-07-24T05:35:17.010000"],["2024-07-24T05:35:18.010000"],["2024-07-24T05:35:19.010000"],["2024-07-24T05:35:20.010000"],["2024-07-24T05:35:21.010000"],["2024-07-24T05:35:22.010000"],["2024-07-24T05:35:23.010000"],["2024-07-24T05:35:24.010000"],["2024-07-24T05:35:25.010000"],["2024-07-24T05:35:26.010000"],["2024-07-24T05:35:27.010000"],["2024-07-24T05:35:28.010000"],["2024-07-24T05:35:29.010000"],["2024-07-24T05:35:30.010000"],["2024-07-24T05:35:31.010000"],["2024-07-24T05:35:32.010000"],["2024-07-24T05:35:33.010000"],["2024-07-24T05:35:34.010000"],["2024-07-24T05:35:35.010000"],["2024-07-24T05:35:36.010000"],["2024-07-24T05:35:37.010000"],["2024-07-24T05:35:38.010000"],["2024-07-24T05:35:39.010000"],["2024-07-24T05:35:40.010000"],["2024-07-24T05:35:41.010000"],["2024-07-24T05:35:42.010000"],["2024-07-24T05:35:43.010000"],["2024-07-24T05:35:44.010000"],["2024-07-24T05:35:45.010000"],["2024-07-24T05:35:46.010000"],["2024-07-24T05:35:47.010000"],["2024-07-24T05:35:48.010000"],["2024-07-24T05:35:49.010000"],["2024-07-24T05:35:50.010000"],["2024-07-24T05:35:51.010000"],["2024-07-24T05:35:52.010000"],["2024-07-24T05:35:53.010000"],["2024-07-24T05:35:54.010000"],["2024-07-24T05:35:55.010000"],["2024-07-24T05:35:56.010000"],["2024-07-24T05:35:57.010000"],["2024-07-24T05:35:58.010000"],["2024-07-24T05:35:59.010000"],["2024-07-24T05:36:00.010000"],["2024-07-24T05:36:01.010000"],["2024-07-24T05:36:02.010000"],["2024-07-24T05:36:03.010000"],["2024-07-24T05:36:04.010000"],["2024-07-24T05:36:05.010000"],["2024-07-24T05:36:06.010000"],["2024-07-24T05:36:07.010000"],["2024-07-24T05:36:08.010000"],["2024-07-24T05:36:09.010000"],["2024-07-24T05:36:10.010000"],["2024-07-24T05:36:11.010000"],["2024-07-24T05:36:12.010000"],["2024-07-24T05:36:13.010000"],["2024-07-24T05:36:14.010000"],["2024-07-24T05:36:15.010000"],["2024-07-24T05:36:16.010000"],["2024-07-24T05:36:17.010000"],["2024-07-24T05:36:18.010000"],["2024-07-24T05:36:19.010000"],["2024-07-24T05:36:20.010000"],["2024-07-24T05:36:21.010000"],["2024-07-24T05:36:22.010000"],["2024-07-24T05:36:23.010000"],["2024-07-24T05:36:24.010000"],["2024-07-24T05:36:25.010000"],["2024-07-24T05:36:26.010000"],["2024-07-24T05:36:27.010000"],["2024-07-24T05:36:28.010000"],["2024-07-24T05:36:29.010000"],["2024-07-24T05:36:30.010000"],["2024-07-24T05:36:31.010000"],["2024-07-24T05:36:32.010000"],["2024-07-24T05:36:33.010000"],["2024-07-24T05:36:34.010000"],["2024-07-24T05:36:35.010000"],["2024-07-24T05:36:36.010000"],["2024-07-24T05:36:37.010000"],["2024-07-24T05:36:38.010000"],["2024-07-24T05:36:39.010000"],["2024-07-24T05:36:40.010000"],["2024-07-24T05:36:41.010000"],["2024-07-24T05:36:42.010000"],["2024-07-24T05:36:43.010000"],["2024-07-24T05:36:44.010000"],["2024-07-24T05:36:45.010000"],["2024-07-24T05:36:46.010000"],["2024-07-24T05:36:47.010000"],["2024-07-24T05:36:48.010000"],["2024-07-24T05:36:49.010000"],["2024-07-24T05:36:50.010000"],["2024-07-24T05:36:51.010000"],["2024-07-24T05:36:52.010000"],["2024-07-24T05:36:53.010000"],["2024-07-24T05:36:54.010000"],["2024-07-24T05:36:55.010000"],["2024-07-24T05:36:56.010000"],["2024-07-24T05:36:57.010000"],["2024-07-24T05:36:58.010000"],["2024-07-24T05:36:59.010000"],["2024-07-24T05:37:00.010000"],["2024-07-24T05:37:01.010000"],["2024-07-24T05:37:02.010000"],["2024-07-24T05:37:03.010000"],["2024-07-24T05:37:04.010000"],["2024-07-24T05:37:05.010000"],["2024-07-24T05:37:06.010000"],["2024-07-24T05:37:07.010000"],["2024-07-24T05:37:08.010000"],["2024-07-24T05:37:09.010000"],["2024-07-24T05:37:10.010000"],["2024-07-24T05:37:11.010000"],["2024-07-24T05:37:12.010000"],["2024-07-24T05:37:13.010000"],["2024-07-24T05:37:14.010000"],["2024-07-24T05:37:15.010000"],["2024-07-24T05:37:16.010000"],["2024-07-24T05:37:17.010000"],["2024-07-24T05:37:18.010000"],["2024-07-24T05:37:19.010000"],["2024-07-24T05:37:20.010000"],["2024-07-24T05:37:21.010000"],["2024-07-24T05:37:22.010000"],["2024-07-24T05:37:23.010000"],["2024-07-24T05:37:24.010000"],["2024-07-24T05:37:25.010000"],["2024-07-24T05:37:26.010000"],["2024-07-24T05:37:27.010000"],["2024-07-24T05:37:28.010000"],["2024-07-24T05:37:29.010000"],["2024-07-24T05:37:30.010000"],["2024-07-24T05:37:31.010000"],["2024-07-24T05:37:32.010000"],["2024-07-24T05:37:33.010000"],["2024-07-24T05:37:34.010000"],["2024-07-24T05:37:35.010000"],["2024-07-24T05:37:36.010000"],["2024-07-24T05:37:37.010000"],["2024-07-24T05:37:38.010000"],["2024-07-24T05:37:39.010000"],["2024-07-24T05:37:40.010000"],["2024-07-24T05:37:41.010000"],["2024-07-24T05:37:42.010000"],["2024-07-24T05:37:43.010000"],["2024-07-24T05:37:44.010000"],["2024-07-24T05:37:45.010000"],["2024-07-24T05:37:46.010000"],["2024-07-24T05:37:47.010000"],["2024-07-24T05:37:48.010000"],["2024-07-24T05:37:49.010000"],["2024-07-24T05:37:50.010000"],["2024-07-24T05:37:51.010000"],["2024-07-24T05:37:52.010000"],["2024-07-24T05:37:53.010000"],["2024-07-24T05:37:54.010000"],["2024-07-24T05:37:55.010000"],["2024-07-24T05:37:56.010000"],["2024-07-24T05:37:57.010000"],["2024-07-24T05:37:58.010000"],["2024-07-24T05:37:59.010000"],["2024-07-24T05:38:00.010000"],["2024-07-24T05:38:01.010000"],["2024-07-24T05:38:02.010000"],["2024-07-24T05:38:03.010000"],["2024-07-24T05:38:04.010000"],["2024-07-24T05:38:05.010000"],["2024-07-24T05:38:06.010000"],["2024-07-24T05:38:07.010000"],["2024-07-24T05:38:08.010000"],["2024-07-24T05:38:09.010000"],["2024-07-24T05:38:10.010000"],["2024-07-24T05:38:11.010000"],["2024-07-24T05:38:12.010000"],["2024-07-24T05:38:13.010000"],["2024-07-24T05:38:14.010000"],["2024-07-24T05:38:15.010000"],["2024-07-24T05:38:16.010000"],["2024-07-24T05:38:17.010000"],["2024-07-24T05:38:18.010000"],["2024-07-24T05:38:19.010000"],["2024-07-24T05:38:20.010000"],["2024-07-24T05:38:21.010000"],["2024-07-24T05:38:22.010000"],["2024-07-24T05:38:23.010000"],["2024-07-24T05:38:24.010000"],["2024-07-24T05:38:25.010000"],["2024-07-24T05:38:26.010000"],["2024-07-24T05:38:27.010000"],["2024-07-24T05:38:28.010000"],["2024-07-24T05:38:29.010000"],["2024-07-24T05:38:30.010000"],["2024-07-24T05:38:31.010000"],["2024-07-24T05:38:32.010000"],["2024-07-24T05:38:33.010000"],["2024-07-24T05:38:34.010000"],["2024-07-24T05:38:35.010000"],["2024-07-24T05:38:36.010000"],["2024-07-24T05:38:37.010000"],["2024-07-24T05:38:38.010000"],["2024-07-24T05:38:39.010000"],["2024-07-24T05:38:40.010000"],["2024-07-24T05:38:41.010000"],["2024-07-24T05:38:42.010000"],["2024-07-24T05:38:43.010000"],["2024-07-24T05:38:44.010000"],["2024-07-24T05:38:45.010000"],["2024-07-24T05:38:46.010000"],["2024-07-24T05:38:47.010000"],["2024-07-24T05:38:48.010000"],["2024-07-24T05:38:49.010000"],["2024-07-24T05:38:50.010000"],["2024-07-24T05:38:51.010000"],["2024-07-24T05:38:52.010000"],["2024-07-24T05:38:53.010000"],["2024-07-24T05:38:54.010000"],["2024-07-24T05:38:55.010000"],["2024-07-24T05:38:56.010000"],["2024-07-24T05:38:57.010000"],["2024-07-24T05:38:58.010000"],["2024-07-24T05:38:59.010000"],["2024-07-24T05:39:00.010000"],["2024-07-24T05:39:01.010000"],["2024-07-24T05:39:02.010000"],["2024-07-24T05:39:03.010000"],["2024-07-24T05:39:04.010000"],["2024-07-24T05:39:05.010000"],["2024-07-24T05:39:06.010000"],["2024-07-24T05:39:07.010000"],["2024-07-24T05:39:08.010000"],["2024-07-24T05:39:09.010000"],["2024-07-24T05:39:10.010000"],["2024-07-24T05:39:11.010000"],["2024-07-24T05:39:12.010000"],["2024-07-24T05:39:13.010000"],["2024-07-24T05:39:14.010000"],["2024-07-24T05:39:15.010000"],["2024-07-24T05:39:16.010000"],["2024-07-24T05:39:17.010000"],["2024-07-24T05:39:18.010000"],["2024-07-24T05:39:19.010000"],["2024-07-24T05:39:20.010000"],["2024-07-24T05:39:21.010000"],["2024-07-24T05:39:22.010000"],["2024-07-24T05:39:23.010000"],["2024-07-24T05:39:24.010000"],["2024-07-24T05:39:25.010000"],["2024-07-24T05:39:26.010000"],["2024-07-24T05:39:27.010000"],["2024-07-24T05:39:28.010000"],["2024-07-24T05:39:29.010000"],["2024-07-24T05:39:30.010000"],["2024-07-24T05:39:31.010000"],["2024-07-24T05:39:32.010000"],["2024-07-24T05:39:33.010000"],["2024-07-24T05:39:34.010000"],["2024-07-24T05:39:35.010000"],["2024-07-24T05:39:36.010000"],["2024-07-24T05:39:37.010000"],["2024-07-24T05:39:38.010000"],["2024-07-24T05:39:39.010000"],["2024-07-24T05:39:40.010000"],["2024-07-24T05:39:41.010000"],["2024-07-24T05:39:42.010000"],["2024-07-24T05:39:43.010000"],["2024-07-24T05:39:44.010000"],["2024-07-24T05:39:45.010000"],["2024-07-24T05:39:46.010000"],["2024-07-24T05:39:47.010000"],["2024-07-24T05:39:48.010000"],["2024-07-24T05:39:49.010000"],["2024-07-24T05:39:50.010000"],["2024-07-24T05:39:51.010000"],["2024-07-24T05:39:52.010000"],["2024-07-24T05:39:53.010000"],["2024-07-24T05:39:54.010000"],["2024-07-24T05:39:55.010000"],["2024-07-24T05:39:56.010000"],["2024-07-24T05:39:57.010000"],["2024-07-24T05:39:58.010000"],["2024-07-24T05:39:59.010000"],["2024-07-24T05:40:00.010000"],["2024-07-24T05:40:01.010000"],["2024-07-24T05:40:02.010000"],["2024-07-24T05:40:03.010000"],["2024-07-24T05:40:04.010000"],["2024-07-24T05:40:05.010000"],["2024-07-24T05:40:06.010000"],["2024-07-24T05:40:07.010000"],["2024-07-24T05:40:08.010000"],["2024-07-24T05:40:09.010000"],["2024-07-24T05:40:10.010000"],["2024-07-24T05:40:11.010000"],["2024-07-24T05:40:12.010000"],["2024-07-24T05:40:13.010000"],["2024-07-24T05:40:14.010000"],["2024-07-24T05:40:15.010000"],["2024-07-24T05:40:16.010000"],["2024-07-24T05:40:17.010000"],["2024-07-24T05:40:18.010000"],["2024-07-24T05:40:19.010000"],["2024-07-24T05:40:20.010000"],["2024-07-24T05:40:21.010000"],["2024-07-24T05:40:22.010000"],["2024-07-24T05:40:23.010000"],["2024-07-24T05:40:24.010000"],["2024-07-24T05:40:25.010000"],["2024-07-24T05:40:26.010000"],["2024-07-24T05:40:27.010000"],["2024-07-24T05:40:28.010000"],["2024-07-24T05:40:29.010000"],["2024-07-24T05:40:30.010000"],["2024-07-24T05:40:31.010000"],["2024-07-24T05:40:32.010000"],["2024-07-24T05:40:33.010000"],["2024-07-24T05:40:34.010000"],["2024-07-24T05:40:35.010000"],["2024-07-24T05:40:36.010000"],["2024-07-24T05:40:37.010000"],["2024-07-24T05:40:38.010000"],["2024-07-24T05:40:39.010000"],["2024-07-24T05:40:40.010000"],["2024-07-24T05:40:41.010000"],["2024-07-24T05:40:42.010000"],["2024-07-24T05:40:43.010000"],["2024-07-24T05:40:44.010000"],["2024-07-24T05:40:45.010000"],["2024-07-24T05:40:46.010000"],["2024-07-24T05:40:47.010000"],["2024-07-24T05:40:48.010000"],["2024-07-24T05:40:49.010000"],["2024-07-24T05:40:50.010000"],["2024-07-24T05:40:51.010000"],["2024-07-24T05:40:52.010000"],["2024-07-24T05:40:53.010000"],["2024-07-24T05:40:54.010000"],["2024-07-24T05:40:55.010000"],["2024-07-24T05:40:56.010000"],["2024-07-24T05:40:57.010000"],["2024-07-24T05:40:58.010000"],["2024-07-24T05:40:59.010000"],["2024-07-24T05:41:00.010000"],["2024-07-24T05:41:01.010000"],["2024-07-24T05:41:02.010000"],["2024-07-24T05:41:03.010000"],["2024-07-24T05:41:04.010000"],["2024-07-24T05:41:05.010000"],["2024-07-24T05:41:06.010000"],["2024-07-24T05:41:07.010000"],["2024-07-24T05:41:08.010000"],["2024-07-24T05:41:09.010000"],["2024-07-24T05:41:10.010000"],["2024-07-24T05:41:11.010000"],["2024-07-24T05:41:12.010000"],["2024-07-24T05:41:13.010000"],["2024-07-24T05:41:14.010000"],["2024-07-24T05:41:15.010000"],["2024-07-24T05:41:16.010000"],["2024-07-24T05:41:17.010000"],["2024-07-24T05:41:18.010000"],["2024-07-24T05:41:19.010000"],["2024-07-24T05:41:20.010000"],["2024-07-24T05:41:21.010000"],["2024-07-24T05:41:22.010000"],["2024-07-24T05:41:23.010000"],["2024-07-24T05:41:24.010000"],["2024-07-24T05:41:25.010000"],["2024-07-24T05:41:26.010000"],["2024-07-24T05:41:27.010000"],["2024-07-24T05:41:28.010000"],["2024-07-24T05:41:29.010000"],["2024-07-24T05:41:30.010000"],["2024-07-24T05:41:31.010000"],["2024-07-24T05:41:32.010000"],["2024-07-24T05:41:33.010000"],["2024-07-24T05:41:34.010000"],["2024-07-24T05:41:35.010000"],["2024-07-24T05:41:36.010000"],["2024-07-24T05:41:37.010000"],["2024-07-24T05:41:38.010000"],["2024-07-24T05:41:39.010000"],["2024-07-24T05:41:40.010000"],["2024-07-24T05:41:41.010000"],["2024-07-24T05:41:42.010000"],["2024-07-24T05:41:43.010000"],["2024-07-24T05:41:44.010000"],["2024-07-24T05:41:45.010000"],["2024-07-24T05:41:46.010000"],["2024-07-24T05:41:47.010000"],["2024-07-24T05:41:48.010000"],["2024-07-24T05:41:49.010000"],["2024-07-24T05:41:50.010000"],["2024-07-24T05:41:51.010000"],["2024-07-24T05:41:52.010000"],["2024-07-24T05:41:53.010000"],["2024-07-24T05:41:54.010000"],["2024-07-24T05:41:55.010000"],["2024-07-24T05:41:56.010000"],["2024-07-24T05:41:57.010000"],["2024-07-24T05:41:58.010000"],["2024-07-24T05:41:59.010000"],["2024-07-24T05:42:00.010000"],["2024-07-24T05:42:01.010000"],["2024-07-24T05:42:02.010000"],["2024-07-24T05:42:03.010000"],["2024-07-24T05:42:04.010000"],["2024-07-24T05:42:05.010000"],["2024-07-24T05:42:06.010000"],["2024-07-24T05:42:07.010000"],["2024-07-24T05:42:08.010000"],["2024-07-24T05:42:09.010000"],["2024-07-24T05:42:10.010000"],["2024-07-24T05:42:11.010000"],["2024-07-24T05:42:12.010000"],["2024-07-24T05:42:13.010000"],["2024-07-24T05:42:14.010000"],["2024-07-24T05:42:15.010000"],["2024-07-24T05:42:16.010000"],["2024-07-24T05:42:17.010000"],["2024-07-24T05:42:18.010000"],["2024-07-24T05:42:19.010000"],["2024-07-24T05:42:20.010000"],["2024-07-24T05:42:21.010000"],["2024-07-24T05:42:22.010000"],["2024-07-24T05:42:23.010000"],["2024-07-24T05:42:24.010000"],["2024-07-24T05:42:25.010000"],["2024-07-24T05:42:26.010000"],["2024-07-24T05:42:27.010000"],["2024-07-24T05:42:28.010000"],["2024-07-24T05:42:29.010000"],["2024-07-24T05:42:30.010000"],["2024-07-24T05:42:31.010000"],["2024-07-24T05:42:32.010000"],["2024-07-24T05:42:33.010000"],["2024-07-24T05:42:34.010000"],["2024-07-24T05:42:35.010000"],["2024-07-24T05:42:36.010000"],["2024-07-24T05:42:37.010000"],["2024-07-24T05:42:38.010000"],["2024-07-24T05:42:39.010000"],["2024-07-24T05:42:40.010000"],["2024-07-24T05:42:41.010000"],["2024-07-24T05:42:42.010000"],["2024-07-24T05:42:43.010000"],["2024-07-24T05:42:44.010000"],["2024-07-24T05:42:45.010000"],["2024-07-24T05:42:46.010000"],["2024-07-24T05:42:47.010000"],["2024-07-24T05:42:48.010000"],["2024-07-24T05:42:49.010000"],["2024-07-24T05:42:50.010000"],["2024-07-24T05:42:51.010000"],["2024-07-24T05:42:52.010000"],["2024-07-24T05:42:53.010000"],["2024-07-24T05:42:54.010000"],["2024-07-24T05:42:55.010000"],["2024-07-24T05:42:56.010000"],["2024-07-24T05:42:57.010000"],["2024-07-24T05:42:58.010000"],["2024-07-24T05:42:59.010000"],["2024-07-24T05:43:00.010000"],["2024-07-24T05:43:01.010000"],["2024-07-24T05:43:02.010000"],["2024-07-24T05:43:03.010000"],["2024-07-24T05:43:04.010000"],["2024-07-24T05:43:05.010000"],["2024-07-24T05:43:06.010000"],["2024-07-24T05:43:07.010000"],["2024-07-24T05:43:08.010000"],["2024-07-24T05:43:09.010000"],["2024-07-24T05:43:10.010000"],["2024-07-24T05:43:11.010000"],["2024-07-24T05:43:12.010000"],["2024-07-24T05:43:13.010000"],["2024-07-24T05:43:14.010000"],["2024-07-24T05:43:15.010000"],["2024-07-24T05:43:16.010000"],["2024-07-24T05:43:17.010000"],["2024-07-24T05:43:18.010000"],["2024-07-24T05:43:19.010000"],["2024-07-24T05:43:20.010000"],["2024-07-24T05:43:21.010000"],["2024-07-24T05:43:22.010000"],["2024-07-24T05:43:23.010000"],["2024-07-24T05:43:24.010000"],["2024-07-24T05:43:25.010000"],["2024-07-24T05:43:26.010000"],["2024-07-24T05:43:27.010000"],["2024-07-24T05:43:28.010000"],["2024-07-24T05:43:29.010000"],["2024-07-24T05:43:30.010000"],["2024-07-24T05:43:31.010000"],["2024-07-24T05:43:32.010000"],["2024-07-24T05:43:33.010000"],["2024-07-24T05:43:34.010000"],["2024-07-24T05:43:35.010000"],["2024-07-24T05:43:36.010000"],["2024-07-24T05:43:37.010000"],["2024-07-24T05:43:38.010000"],["2024-07-24T05:43:39.010000"],["2024-07-24T05:43:40.010000"],["2024-07-24T05:43:41.010000"],["2024-07-24T05:43:42.010000"],["2024-07-24T05:43:43.010000"],["2024-07-24T05:43:44.010000"],["2024-07-24T05:43:45.010000"],["2024-07-24T05:43:46.010000"],["2024-07-24T05:43:47.010000"],["2024-07-24T05:43:48.010000"],["2024-07-24T05:43:49.010000"],["2024-07-24T05:43:50.010000"],["2024-07-24T05:43:51.010000"],["2024-07-24T05:43:52.010000"],["2024-07-24T05:43:53.010000"],["2024-07-24T05:43:54.010000"],["2024-07-24T05:43:55.010000"],["2024-07-24T05:43:56.010000"],["2024-07-24T05:43:57.010000"],["2024-07-24T05:43:58.010000"],["2024-07-24T05:43:59.010000"],["2024-07-24T05:44:00.010000"],["2024-07-24T05:44:01.010000"],["2024-07-24T05:44:02.010000"],["2024-07-24T05:44:03.010000"],["2024-07-24T05:44:04.010000"],["2024-07-24T05:44:05.010000"],["2024-07-24T05:44:06.010000"],["2024-07-24T05:44:07.010000"],["2024-07-24T05:44:08.010000"],["2024-07-24T05:44:09.010000"],["2024-07-24T05:44:10.010000"],["2024-07-24T05:44:11.010000"],["2024-07-24T05:44:12.010000"],["2024-07-24T05:44:13.010000"],["2024-07-24T05:44:14.010000"],["2024-07-24T05:44:15.010000"],["2024-07-24T05:44:16.010000"],["2024-07-24T05:44:17.010000"],["2024-07-24T05:44:18.010000"],["2024-07-24T05:44:19.010000"],["2024-07-24T05:44:20.010000"],["2024-07-24T05:44:21.010000"],["2024-07-24T05:44:22.010000"],["2024-07-24T05:44:23.010000"],["2024-07-24T05:44:24.010000"],["2024-07-24T05:44:25.010000"],["2024-07-24T05:44:26.010000"],["2024-07-24T05:44:27.010000"],["2024-07-24T05:44:28.010000"],["2024-07-24T05:44:29.010000"],["2024-07-24T05:44:30.010000"],["2024-07-24T05:44:31.010000"],["2024-07-24T05:44:32.010000"],["2024-07-24T05:44:33.010000"],["2024-07-24T05:44:34.010000"],["2024-07-24T05:44:35.010000"],["2024-07-24T05:44:36.010000"],["2024-07-24T05:44:37.010000"],["2024-07-24T05:44:38.010000"],["2024-07-24T05:44:39.010000"],["2024-07-24T05:44:40.010000"],["2024-07-24T05:44:41.010000"],["2024-07-24T05:44:42.010000"],["2024-07-24T05:44:43.010000"],["2024-07-24T05:44:44.010000"],["2024-07-24T05:44:45.010000"],["2024-07-24T05:44:46.010000"],["2024-07-24T05:44:47.010000"],["2024-07-24T05:44:48.010000"],["2024-07-24T05:44:49.010000"],["2024-07-24T05:44:50.010000"],["2024-07-24T05:44:51.010000"],["2024-07-24T05:44:52.010000"],["2024-07-24T05:44:53.010000"],["2024-07-24T05:44:54.010000"],["2024-07-24T05:44:55.010000"],["2024-07-24T05:44:56.010000"],["2024-07-24T05:44:57.010000"],["2024-07-24T05:44:58.010000"],["2024-07-24T05:44:59.010000"],["2024-07-24T05:45:00.010000"],["2024-07-24T05:45:01.010000"],["2024-07-24T05:45:02.010000"],["2024-07-24T05:45:03.010000"],["2024-07-24T05:45:04.010000"],["2024-07-24T05:45:05.010000"],["2024-07-24T05:45:06.010000"],["2024-07-24T05:45:07.010000"],["2024-07-24T05:45:08.010000"],["2024-07-24T05:45:09.010000"],["2024-07-24T05:45:10.010000"],["2024-07-24T05:45:11.010000"],["2024-07-24T05:45:12.010000"],["2024-07-24T05:45:13.010000"],["2024-07-24T05:45:14.010000"],["2024-07-24T05:45:15.010000"],["2024-07-24T05:45:16.010000"],["2024-07-24T05:45:17.010000"],["2024-07-24T05:45:18.010000"],["2024-07-24T05:45:19.010000"],["2024-07-24T05:45:20.010000"],["2024-07-24T05:45:21.010000"],["2024-07-24T05:45:22.010000"],["2024-07-24T05:45:23.010000"],["2024-07-24T05:45:24.010000"],["2024-07-24T05:45:25.010000"],["2024-07-24T05:45:26.010000"],["2024-07-24T05:45:27.010000"],["2024-07-24T05:45:28.010000"],["2024-07-24T05:45:29.010000"],["2024-07-24T05:45:30.010000"],["2024-07-24T05:45:31.010000"],["2024-07-24T05:45:32.010000"],["2024-07-24T05:45:33.010000"],["2024-07-24T05:45:34.010000"],["2024-07-24T05:45:35.010000"],["2024-07-24T05:45:36.010000"],["2024-07-24T05:45:37.010000"],["2024-07-24T05:45:38.010000"],["2024-07-24T05:45:39.010000"],["2024-07-24T05:45:40.010000"],["2024-07-24T05:45:41.010000"],["2024-07-24T05:45:42.010000"],["2024-07-24T05:45:43.010000"],["2024-07-24T05:45:44.010000"],["2024-07-24T05:45:45.010000"],["2024-07-24T05:45:46.010000"],["2024-07-24T05:45:47.010000"],["2024-07-24T05:45:48.010000"],["2024-07-24T05:45:49.010000"],["2024-07-24T05:45:50.010000"],["2024-07-24T05:45:51.010000"],["2024-07-24T05:45:52.010000"],["2024-07-24T05:45:53.010000"],["2024-07-24T05:45:54.010000"],["2024-07-24T05:45:55.010000"],["2024-07-24T05:45:56.010000"],["2024-07-24T05:45:57.010000"],["2024-07-24T05:45:58.010000"],["2024-07-24T05:45:59.010000"],["2024-07-24T05:46:00.010000"],["2024-07-24T05:46:01.010000"],["2024-07-24T05:46:02.010000"],["2024-07-24T05:46:03.010000"],["2024-07-24T05:46:04.010000"],["2024-07-24T05:46:05.010000"],["2024-07-24T05:46:06.010000"],["2024-07-24T05:46:07.010000"],["2024-07-24T05:46:08.010000"],["2024-07-24T05:46:09.010000"],["2024-07-24T05:46:10.010000"],["2024-07-24T05:46:11.010000"],["2024-07-24T05:46:12.010000"],["2024-07-24T05:46:13.010000"],["2024-07-24T05:46:14.010000"],["2024-07-24T05:46:15.010000"],["2024-07-24T05:46:16.010000"],["2024-07-24T05:46:17.010000"],["2024-07-24T05:46:18.010000"],["2024-07-24T05:46:19.010000"],["2024-07-24T05:46:20.010000"],["2024-07-24T05:46:21.010000"],["2024-07-24T05:46:22.010000"],["2024-07-24T05:46:23.010000"],["2024-07-24T05:46:24.010000"],["2024-07-24T05:46:25.010000"],["2024-07-24T05:46:26.010000"],["2024-07-24T05:46:27.010000"],["2024-07-24T05:46:28.010000"],["2024-07-24T05:46:29.010000"],["2024-07-24T05:46:30.010000"],["2024-07-24T05:46:31.010000"],["2024-07-24T05:46:32.010000"],["2024-07-24T05:46:33.010000"],["2024-07-24T05:46:34.010000"],["2024-07-24T05:46:35.010000"],["2024-07-24T05:46:36.010000"],["2024-07-24T05:46:37.010000"],["2024-07-24T05:46:38.010000"],["2024-07-24T05:46:39.010000"],["2024-07-24T05:46:40.010000"],["2024-07-24T05:46:41.010000"],["2024-07-24T05:46:42.010000"],["2024-07-24T05:46:43.010000"],["2024-07-24T05:46:44.010000"],["2024-07-24T05:46:45.010000"],["2024-07-24T05:46:46.010000"],["2024-07-24T05:46:47.010000"],["2024-07-24T05:46:48.010000"],["2024-07-24T05:46:49.010000"],["2024-07-24T05:46:50.010000"],["2024-07-24T05:46:51.010000"],["2024-07-24T05:46:52.010000"],["2024-07-24T05:46:53.010000"],["2024-07-24T05:46:54.010000"],["2024-07-24T05:46:55.010000"],["2024-07-24T05:46:56.010000"],["2024-07-24T05:46:57.010000"],["2024-07-24T05:46:58.010000"],["2024-07-24T05:46:59.010000"],["2024-07-24T05:47:00.010000"],["2024-07-24T05:47:01.010000"],["2024-07-24T05:47:02.010000"],["2024-07-24T05:47:03.010000"],["2024-07-24T05:47:04.010000"],["2024-07-24T05:47:05.010000"],["2024-07-24T05:47:06.010000"],["2024-07-24T05:47:07.010000"],["2024-07-24T05:47:08.010000"],["2024-07-24T05:47:09.010000"],["2024-07-24T05:47:10.010000"],["2024-07-24T05:47:11.010000"],["2024-07-24T05:47:12.010000"],["2024-07-24T05:47:13.010000"],["2024-07-24T05:47:14.010000"],["2024-07-24T05:47:15.010000"],["2024-07-24T05:47:16.010000"],["2024-07-24T05:47:17.010000"],["2024-07-24T05:47:18.010000"],["2024-07-24T05:47:19.010000"],["2024-07-24T05:47:20.010000"],["2024-07-24T05:47:21.010000"],["2024-07-24T05:47:22.010000"],["2024-07-24T05:47:23.010000"],["2024-07-24T05:47:24.010000"],["2024-07-24T05:47:25.010000"],["2024-07-24T05:47:26.010000"],["2024-07-24T05:47:27.010000"],["2024-07-24T05:47:28.010000"],["2024-07-24T05:47:29.010000"],["2024-07-24T05:47:30.010000"],["2024-07-24T05:47:31.010000"],["2024-07-24T05:47:32.010000"],["2024-07-24T05:47:33.010000"],["2024-07-24T05:47:34.010000"],["2024-07-24T05:47:35.010000"],["2024-07-24T05:47:36.010000"],["2024-07-24T05:47:37.010000"],["2024-07-24T05:47:38.010000"],["2024-07-24T05:47:39.010000"],["2024-07-24T05:47:40.010000"],["2024-07-24T05:47:41.010000"],["2024-07-24T05:47:42.010000"],["2024-07-24T05:47:43.010000"],["2024-07-24T05:47:44.010000"],["2024-07-24T05:47:45.010000"],["2024-07-24T05:47:46.010000"],["2024-07-24T05:47:47.010000"],["2024-07-24T05:47:48.010000"],["2024-07-24T05:47:49.010000"],["2024-07-24T05:47:50.010000"],["2024-07-24T05:47:51.010000"],["2024-07-24T05:47:52.010000"],["2024-07-24T05:47:53.010000"],["2024-07-24T05:47:54.010000"],["2024-07-24T05:47:55.010000"],["2024-07-24T05:47:56.010000"],["2024-07-24T05:47:57.010000"],["2024-07-24T05:47:58.010000"],["2024-07-24T05:47:59.010000"],["2024-07-24T05:48:00.010000"],["2024-07-24T05:48:01.010000"],["2024-07-24T05:48:02.010000"],["2024-07-24T05:48:03.010000"],["2024-07-24T05:48:04.010000"],["2024-07-24T05:48:05.010000"],["2024-07-24T05:48:06.010000"],["2024-07-24T05:48:07.010000"],["2024-07-24T05:48:08.010000"],["2024-07-24T05:48:09.010000"],["2024-07-24T05:48:10.010000"],["2024-07-24T05:48:11.010000"],["2024-07-24T05:48:12.010000"],["2024-07-24T05:48:13.010000"],["2024-07-24T05:48:14.010000"],["2024-07-24T05:48:15.010000"],["2024-07-24T05:48:16.010000"],["2024-07-24T05:48:17.010000"],["2024-07-24T05:48:18.010000"],["2024-07-24T05:48:19.010000"],["2024-07-24T05:48:20.010000"],["2024-07-24T05:48:21.010000"],["2024-07-24T05:48:22.010000"],["2024-07-24T05:48:23.010000"],["2024-07-24T05:48:24.010000"],["2024-07-24T05:48:25.010000"],["2024-07-24T05:48:26.010000"],["2024-07-24T05:48:27.010000"],["2024-07-24T05:48:28.010000"],["2024-07-24T05:48:29.010000"],["2024-07-24T05:48:30.010000"],["2024-07-24T05:48:31.010000"],["2024-07-24T05:48:32.010000"],["2024-07-24T05:48:33.010000"],["2024-07-24T05:48:34.010000"],["2024-07-24T05:48:35.010000"],["2024-07-24T05:48:36.010000"],["2024-07-24T05:48:37.010000"],["2024-07-24T05:48:38.010000"],["2024-07-24T05:48:39.010000"],["2024-07-24T05:48:40.010000"],["2024-07-24T05:48:41.010000"],["2024-07-24T05:48:42.010000"],["2024-07-24T05:48:43.010000"],["2024-07-24T05:48:44.010000"],["2024-07-24T05:48:45.010000"],["2024-07-24T05:48:46.010000"],["2024-07-24T05:48:47.010000"],["2024-07-24T05:48:48.010000"],["2024-07-24T05:48:49.010000"],["2024-07-24T05:48:50.010000"],["2024-07-24T05:48:51.010000"],["2024-07-24T05:48:52.010000"],["2024-07-24T05:48:53.010000"],["2024-07-24T05:48:54.010000"],["2024-07-24T05:48:55.010000"],["2024-07-24T05:48:56.010000"],["2024-07-24T05:48:57.010000"],["2024-07-24T05:48:58.010000"],["2024-07-24T05:48:59.010000"],["2024-07-24T05:49:00.010000"],["2024-07-24T05:49:01.010000"],["2024-07-24T05:49:02.010000"],["2024-07-24T05:49:03.010000"],["2024-07-24T05:49:04.010000"],["2024-07-24T05:49:05.010000"],["2024-07-24T05:49:06.010000"],["2024-07-24T05:49:07.010000"],["2024-07-24T05:49:08.010000"],["2024-07-24T05:49:09.010000"],["2024-07-24T05:49:10.010000"],["2024-07-24T05:49:11.010000"],["2024-07-24T05:49:12.010000"],["2024-07-24T05:49:13.010000"],["2024-07-24T05:49:14.010000"],["2024-07-24T05:49:15.010000"],["2024-07-24T05:49:16.010000"],["2024-07-24T05:49:17.010000"],["2024-07-24T05:49:18.010000"],["2024-07-24T05:49:19.010000"],["2024-07-24T05:49:20.010000"],["2024-07-24T05:49:21.010000"],["2024-07-24T05:49:22.010000"],["2024-07-24T05:49:23.010000"],["2024-07-24T05:49:24.010000"],["2024-07-24T05:49:25.010000"],["2024-07-24T05:49:26.010000"],["2024-07-24T05:49:27.010000"],["2024-07-24T05:49:28.010000"],["2024-07-24T05:49:29.010000"],["2024-07-24T05:49:30.010000"],["2024-07-24T05:49:31.010000"],["2024-07-24T05:49:32.010000"],["2024-07-24T05:49:33.010000"],["2024-07-24T05:49:34.010000"],["2024-07-24T05:49:35.010000"],["2024-07-24T05:49:36.010000"],["2024-07-24T05:49:37.010000"],["2024-07-24T05:49:38.010000"],["2024-07-24T05:49:39.010000"],["2024-07-24T05:49:40.010000"],["2024-07-24T05:49:41.010000"],["2024-07-24T05:49:42.010000"],["2024-07-24T05:49:43.010000"],["2024-07-24T05:49:44.010000"],["2024-07-24T05:49:45.010000"],["2024-07-24T05:49:46.010000"],["2024-07-24T05:49:47.010000"],["2024-07-24T05:49:48.010000"],["2024-07-24T05:49:49.010000"],["2024-07-24T05:49:50.010000"],["2024-07-24T05:49:51.010000"],["2024-07-24T05:49:52.010000"],["2024-07-24T05:49:53.010000"],["2024-07-24T05:49:54.010000"],["2024-07-24T05:49:55.010000"],["2024-07-24T05:49:56.010000"],["2024-07-24T05:49:57.010000"],["2024-07-24T05:49:58.010000"],["2024-07-24T05:49:59.010000"],["2024-07-24T05:50:00.010000"],["2024-07-24T05:50:01.010000"],["2024-07-24T05:50:02.010000"],["2024-07-24T05:50:03.010000"],["2024-07-24T05:50:04.010000"],["2024-07-24T05:50:05.010000"],["2024-07-24T05:50:06.010000"],["2024-07-24T05:50:07.010000"],["2024-07-24T05:50:08.010000"],["2024-07-24T05:50:09.010000"],["2024-07-24T05:50:10.010000"],["2024-07-24T05:50:11.010000"],["2024-07-24T05:50:12.010000"],["2024-07-24T05:50:13.010000"],["2024-07-24T05:50:14.010000"],["2024-07-24T05:50:15.010000"],["2024-07-24T05:50:16.010000"],["2024-07-24T05:50:17.010000"],["2024-07-24T05:50:18.010000"],["2024-07-24T05:50:19.010000"],["2024-07-24T05:50:20.010000"],["2024-07-24T05:50:21.010000"],["2024-07-24T05:50:22.010000"],["2024-07-24T05:50:23.010000"],["2024-07-24T05:50:24.010000"],["2024-07-24T05:50:25.010000"],["2024-07-24T05:50:26.010000"],["2024-07-24T05:50:27.010000"],["2024-07-24T05:50:28.010000"],["2024-07-24T05:50:29.010000"],["2024-07-24T05:50:30.010000"],["2024-07-24T05:50:31.010000"],["2024-07-24T05:50:32.010000"],["2024-07-24T05:50:33.010000"],["2024-07-24T05:50:34.010000"],["2024-07-24T05:50:35.010000"],["2024-07-24T05:50:36.010000"],["2024-07-24T05:50:37.010000"],["2024-07-24T05:50:38.010000"],["2024-07-24T05:50:39.010000"],["2024-07-24T05:50:40.010000"],["2024-07-24T05:50:41.010000"],["2024-07-24T05:50:42.010000"],["2024-07-24T05:50:43.010000"],["2024-07-24T05:50:44.010000"],["2024-07-24T05:50:45.010000"],["2024-07-24T05:50:46.010000"],["2024-07-24T05:50:47.010000"],["2024-07-24T05:50:48.010000"],["2024-07-24T05:50:49.010000"],["2024-07-24T05:50:50.010000"],["2024-07-24T05:50:51.010000"],["2024-07-24T05:50:52.010000"],["2024-07-24T05:50:53.010000"],["2024-07-24T05:50:54.010000"],["2024-07-24T05:50:55.010000"],["2024-07-24T05:50:56.010000"],["2024-07-24T05:50:57.010000"],["2024-07-24T05:50:58.010000"],["2024-07-24T05:50:59.010000"],["2024-07-24T05:51:00.010000"],["2024-07-24T05:51:01.010000"],["2024-07-24T05:51:02.010000"],["2024-07-24T05:51:03.010000"],["2024-07-24T05:51:04.010000"],["2024-07-24T05:51:05.010000"],["2024-07-24T05:51:06.010000"],["2024-07-24T05:51:07.010000"],["2024-07-24T05:51:08.010000"],["2024-07-24T05:51:09.010000"],["2024-07-24T05:51:10.010000"],["2024-07-24T05:51:11.010000"],["2024-07-24T05:51:12.010000"],["2024-07-24T05:51:13.010000"],["2024-07-24T05:51:14.010000"],["2024-07-24T05:51:15.010000"],["2024-07-24T05:51:16.010000"],["2024-07-24T05:51:17.010000"],["2024-07-24T05:51:18.010000"],["2024-07-24T05:51:19.010000"],["2024-07-24T05:51:20.010000"],["2024-07-24T05:51:21.010000"],["2024-07-24T05:51:22.010000"],["2024-07-24T05:51:23.010000"],["2024-07-24T05:51:24.010000"],["2024-07-24T05:51:25.010000"],["2024-07-24T05:51:26.010000"],["2024-07-24T05:51:27.010000"],["2024-07-24T05:51:28.010000"],["2024-07-24T05:51:29.010000"],["2024-07-24T05:51:30.010000"],["2024-07-24T05:51:31.010000"],["2024-07-24T05:51:32.010000"],["2024-07-24T05:51:33.010000"],["2024-07-24T05:51:34.010000"],["2024-07-24T05:51:35.010000"],["2024-07-24T05:51:36.010000"],["2024-07-24T05:51:37.010000"],["2024-07-24T05:51:38.010000"],["2024-07-24T05:51:39.010000"],["2024-07-24T05:51:40.010000"],["2024-07-24T05:51:41.010000"],["2024-07-24T05:51:42.010000"],["2024-07-24T05:51:43.010000"],["2024-07-24T05:51:44.010000"],["2024-07-24T05:51:45.010000"],["2024-07-24T05:51:46.010000"],["2024-07-24T05:51:47.010000"],["2024-07-24T05:51:48.010000"],["2024-07-24T05:51:49.010000"],["2024-07-24T05:51:50.010000"],["2024-07-24T05:51:51.010000"],["2024-07-24T05:51:52.010000"],["2024-07-24T05:51:53.010000"],["2024-07-24T05:51:54.010000"],["2024-07-24T05:51:55.010000"],["2024-07-24T05:51:56.010000"],["2024-07-24T05:51:57.010000"],["2024-07-24T05:51:58.010000"],["2024-07-24T05:51:59.010000"],["2024-07-24T05:52:00.010000"],["2024-07-24T05:52:01.010000"],["2024-07-24T05:52:02.010000"],["2024-07-24T05:52:03.010000"],["2024-07-24T05:52:04.010000"],["2024-07-24T05:52:05.010000"],["2024-07-24T05:52:06.010000"],["2024-07-24T05:52:07.010000"],["2024-07-24T05:52:08.010000"],["2024-07-24T05:52:09.010000"],["2024-07-24T05:52:10.010000"],["2024-07-24T05:52:11.010000"],["2024-07-24T05:52:12.010000"],["2024-07-24T05:52:13.010000"],["2024-07-24T05:52:14.010000"],["2024-07-24T05:52:15.010000"],["2024-07-24T05:52:16.010000"],["2024-07-24T05:52:17.010000"],["2024-07-24T05:52:18.010000"],["2024-07-24T05:52:19.010000"],["2024-07-24T05:52:20.010000"],["2024-07-24T05:52:21.010000"],["2024-07-24T05:52:22.010000"],["2024-07-24T05:52:23.010000"],["2024-07-24T05:52:24.010000"],["2024-07-24T05:52:25.010000"],["2024-07-24T05:52:26.010000"],["2024-07-24T05:52:27.010000"],["2024-07-24T05:52:28.010000"],["2024-07-24T05:52:29.010000"],["2024-07-24T05:52:30.010000"],["2024-07-24T05:52:31.010000"],["2024-07-24T05:52:32.010000"],["2024-07-24T05:52:33.010000"],["2024-07-24T05:52:34.010000"],["2024-07-24T05:52:35.010000"],["2024-07-24T05:52:36.010000"],["2024-07-24T05:52:37.010000"],["2024-07-24T05:52:38.010000"],["2024-07-24T05:52:39.010000"],["2024-07-24T05:52:40.010000"],["2024-07-24T05:52:41.010000"],["2024-07-24T05:52:42.010000"],["2024-07-24T05:52:43.010000"],["2024-07-24T05:52:44.010000"],["2024-07-24T05:52:45.010000"],["2024-07-24T05:52:46.010000"],["2024-07-24T05:52:47.010000"],["2024-07-24T05:52:48.010000"],["2024-07-24T05:52:49.010000"],["2024-07-24T05:52:50.010000"],["2024-07-24T05:52:51.010000"],["2024-07-24T05:52:52.010000"],["2024-07-24T05:52:53.010000"],["2024-07-24T05:52:54.010000"],["2024-07-24T05:52:55.010000"],["2024-07-24T05:52:56.010000"],["2024-07-24T05:52:57.010000"],["2024-07-24T05:52:58.010000"],["2024-07-24T05:52:59.010000"],["2024-07-24T05:53:00.010000"],["2024-07-24T05:53:01.010000"],["2024-07-24T05:53:02.010000"],["2024-07-24T05:53:03.010000"],["2024-07-24T05:53:04.010000"],["2024-07-24T05:53:05.010000"],["2024-07-24T05:53:06.010000"],["2024-07-24T05:53:07.010000"],["2024-07-24T05:53:08.010000"],["2024-07-24T05:53:09.010000"],["2024-07-24T05:53:10.010000"],["2024-07-24T05:53:11.010000"],["2024-07-24T05:53:12.010000"],["2024-07-24T05:53:13.010000"],["2024-07-24T05:53:14.010000"],["2024-07-24T05:53:15.010000"],["2024-07-24T05:53:16.010000"],["2024-07-24T05:53:17.010000"],["2024-07-24T05:53:18.010000"],["2024-07-24T05:53:19.010000"],["2024-07-24T05:53:20.010000"],["2024-07-24T05:53:21.010000"],["2024-07-24T05:53:22.010000"],["2024-07-24T05:53:23.010000"],["2024-07-24T05:53:24.010000"],["2024-07-24T05:53:25.010000"],["2024-07-24T05:53:26.010000"],["2024-07-24T05:53:27.010000"],["2024-07-24T05:53:28.010000"],["2024-07-24T05:53:29.010000"],["2024-07-24T05:53:30.010000"],["2024-07-24T05:53:31.010000"],["2024-07-24T05:53:32.010000"],["2024-07-24T05:53:33.010000"],["2024-07-24T05:53:34.010000"],["2024-07-24T05:53:35.010000"],["2024-07-24T05:53:36.010000"],["2024-07-24T05:53:37.010000"],["2024-07-24T05:53:38.010000"],["2024-07-24T05:53:39.010000"],["2024-07-24T05:53:40.010000"],["2024-07-24T05:53:41.010000"],["2024-07-24T05:53:42.010000"],["2024-07-24T05:53:43.010000"],["2024-07-24T05:53:44.010000"],["2024-07-24T05:53:45.010000"],["2024-07-24T05:53:46.010000"],["2024-07-24T05:53:47.010000"],["2024-07-24T05:53:48.010000"],["2024-07-24T05:53:49.010000"],["2024-07-24T05:53:50.010000"],["2024-07-24T05:53:51.010000"],["2024-07-24T05:53:52.010000"],["2024-07-24T05:53:53.010000"],["2024-07-24T05:53:54.010000"],["2024-07-24T05:53:55.010000"],["2024-07-24T05:53:56.010000"],["2024-07-24T05:53:57.010000"],["2024-07-24T05:53:58.010000"],["2024-07-24T05:53:59.010000"],["2024-07-24T05:54:00.010000"],["2024-07-24T05:54:01.010000"],["2024-07-24T05:54:02.010000"],["2024-07-24T05:54:03.010000"],["2024-07-24T05:54:04.010000"],["2024-07-24T05:54:05.010000"],["2024-07-24T05:54:06.010000"],["2024-07-24T05:54:07.010000"],["2024-07-24T05:54:08.010000"],["2024-07-24T05:54:09.010000"],["2024-07-24T05:54:10.010000"],["2024-07-24T05:54:11.010000"],["2024-07-24T05:54:12.010000"],["2024-07-24T05:54:13.010000"],["2024-07-24T05:54:14.010000"],["2024-07-24T05:54:15.010000"],["2024-07-24T05:54:16.010000"],["2024-07-24T05:54:17.010000"],["2024-07-24T05:54:18.010000"],["2024-07-24T05:54:19.010000"],["2024-07-24T05:54:20.010000"],["2024-07-24T05:54:21.010000"],["2024-07-24T05:54:22.010000"],["2024-07-24T05:54:23.010000"],["2024-07-24T05:54:24.010000"],["2024-07-24T05:54:25.010000"],["2024-07-24T05:54:26.010000"],["2024-07-24T05:54:27.010000"],["2024-07-24T05:54:28.010000"],["2024-07-24T05:54:29.010000"],["2024-07-24T05:54:30.010000"],["2024-07-24T05:54:31.010000"],["2024-07-24T05:54:32.010000"],["2024-07-24T05:54:33.010000"],["2024-07-24T05:54:34.010000"],["2024-07-24T05:54:35.010000"],["2024-07-24T05:54:36.010000"],["2024-07-24T05:54:37.010000"],["2024-07-24T05:54:38.010000"],["2024-07-24T05:54:39.010000"],["2024-07-24T05:54:40.010000"],["2024-07-24T05:54:41.010000"],["2024-07-24T05:54:42.010000"],["2024-07-24T05:54:43.010000"],["2024-07-24T05:54:44.010000"],["2024-07-24T05:54:45.010000"],["2024-07-24T05:54:46.010000"],["2024-07-24T05:54:47.010000"],["2024-07-24T05:54:48.010000"],["2024-07-24T05:54:49.010000"],["2024-07-24T05:54:50.010000"],["2024-07-24T05:54:51.010000"],["2024-07-24T05:54:52.010000"],["2024-07-24T05:54:53.010000"],["2024-07-24T05:54:54.010000"],["2024-07-24T05:54:55.010000"],["2024-07-24T05:54:56.010000"],["2024-07-24T05:54:57.010000"],["2024-07-24T05:54:58.010000"],["2024-07-24T05:54:59.010000"],["2024-07-24T05:55:00.010000"],["2024-07-24T05:55:01.010000"],["2024-07-24T05:55:02.010000"],["2024-07-24T05:55:03.010000"],["2024-07-24T05:55:04.010000"],["2024-07-24T05:55:05.010000"],["2024-07-24T05:55:06.010000"],["2024-07-24T05:55:07.010000"],["2024-07-24T05:55:08.010000"],["2024-07-24T05:55:09.010000"],["2024-07-24T05:55:10.010000"],["2024-07-24T05:55:11.010000"],["2024-07-24T05:55:12.010000"],["2024-07-24T05:55:13.010000"],["2024-07-24T05:55:14.010000"],["2024-07-24T05:55:15.010000"],["2024-07-24T05:55:16.010000"],["2024-07-24T05:55:17.010000"],["2024-07-24T05:55:18.010000"],["2024-07-24T05:55:19.010000"],["2024-07-24T05:55:20.010000"],["2024-07-24T05:55:21.010000"],["2024-07-24T05:55:22.010000"],["2024-07-24T05:55:23.010000"],["2024-07-24T05:55:24.010000"],["2024-07-24T05:55:25.010000"],["2024-07-24T05:55:26.010000"],["2024-07-24T05:55:27.010000"],["2024-07-24T05:55:28.010000"],["2024-07-24T05:55:29.010000"],["2024-07-24T05:55:30.010000"],["2024-07-24T05:55:31.010000"],["2024-07-24T05:55:32.010000"],["2024-07-24T05:55:33.010000"],["2024-07-24T05:55:34.010000"],["2024-07-24T05:55:35.010000"],["2024-07-24T05:55:36.010000"],["2024-07-24T05:55:37.010000"],["2024-07-24T05:55:38.010000"],["2024-07-24T05:55:39.010000"],["2024-07-24T05:55:40.010000"],["2024-07-24T05:55:41.010000"],["2024-07-24T05:55:42.010000"],["2024-07-24T05:55:43.010000"],["2024-07-24T05:55:44.010000"],["2024-07-24T05:55:45.010000"],["2024-07-24T05:55:46.010000"],["2024-07-24T05:55:47.010000"],["2024-07-24T05:55:48.010000"],["2024-07-24T05:55:49.010000"],["2024-07-24T05:55:50.010000"],["2024-07-24T05:55:51.010000"],["2024-07-24T05:55:52.010000"],["2024-07-24T05:55:53.010000"],["2024-07-24T05:55:54.010000"],["2024-07-24T05:55:55.010000"],["2024-07-24T05:55:56.010000"],["2024-07-24T05:55:57.010000"],["2024-07-24T05:55:58.010000"],["2024-07-24T05:55:59.010000"],["2024-07-24T05:56:00.010000"],["2024-07-24T05:56:01.010000"],["2024-07-24T05:56:02.010000"],["2024-07-24T05:56:03.010000"],["2024-07-24T05:56:04.010000"],["2024-07-24T05:56:05.010000"],["2024-07-24T05:56:06.010000"],["2024-07-24T05:56:07.010000"],["2024-07-24T05:56:08.010000"],["2024-07-24T05:56:09.010000"],["2024-07-24T05:56:10.010000"],["2024-07-24T05:56:11.010000"],["2024-07-24T05:56:12.010000"],["2024-07-24T05:56:13.010000"],["2024-07-24T05:56:14.010000"],["2024-07-24T05:56:15.010000"],["2024-07-24T05:56:16.010000"],["2024-07-24T05:56:17.010000"],["2024-07-24T05:56:18.010000"],["2024-07-24T05:56:19.010000"],["2024-07-24T05:56:20.010000"],["2024-07-24T05:56:21.010000"],["2024-07-24T05:56:22.010000"],["2024-07-24T05:56:23.010000"],["2024-07-24T05:56:24.010000"],["2024-07-24T05:56:25.010000"],["2024-07-24T05:56:26.010000"],["2024-07-24T05:56:27.010000"],["2024-07-24T05:56:28.010000"],["2024-07-24T05:56:29.010000"],["2024-07-24T05:56:30.010000"],["2024-07-24T05:56:31.010000"],["2024-07-24T05:56:32.010000"],["2024-07-24T05:56:33.010000"],["2024-07-24T05:56:34.010000"],["2024-07-24T05:56:35.010000"],["2024-07-24T05:56:36.010000"],["2024-07-24T05:56:37.010000"],["2024-07-24T05:56:38.010000"],["2024-07-24T05:56:39.010000"],["2024-07-24T05:56:40.010000"],["2024-07-24T05:56:41.010000"],["2024-07-24T05:56:42.010000"],["2024-07-24T05:56:43.010000"],["2024-07-24T05:56:44.010000"],["2024-07-24T05:56:45.010000"],["2024-07-24T05:56:46.010000"],["2024-07-24T05:56:47.010000"],["2024-07-24T05:56:48.010000"],["2024-07-24T05:56:49.010000"],["2024-07-24T05:56:50.010000"],["2024-07-24T05:56:51.010000"],["2024-07-24T05:56:52.010000"],["2024-07-24T05:56:53.010000"],["2024-07-24T05:56:54.010000"],["2024-07-24T05:56:55.010000"],["2024-07-24T05:56:56.010000"],["2024-07-24T05:56:57.010000"],["2024-07-24T05:56:58.010000"],["2024-07-24T05:56:59.010000"],["2024-07-24T05:57:00.010000"],["2024-07-24T05:57:01.010000"],["2024-07-24T05:57:02.010000"],["2024-07-24T05:57:03.010000"],["2024-07-24T05:57:04.010000"],["2024-07-24T05:57:05.010000"],["2024-07-24T05:57:06.010000"],["2024-07-24T05:57:07.010000"],["2024-07-24T05:57:08.010000"],["2024-07-24T05:57:09.010000"],["2024-07-24T05:57:10.010000"],["2024-07-24T05:57:11.010000"],["2024-07-24T05:57:12.010000"],["2024-07-24T05:57:13.010000"],["2024-07-24T05:57:14.010000"],["2024-07-24T05:57:15.010000"],["2024-07-24T05:57:16.010000"],["2024-07-24T05:57:17.010000"],["2024-07-24T05:57:18.010000"],["2024-07-24T05:57:19.010000"],["2024-07-24T05:57:20.010000"],["2024-07-24T05:57:21.010000"],["2024-07-24T05:57:22.010000"],["2024-07-24T05:57:23.010000"],["2024-07-24T05:57:24.010000"],["2024-07-24T05:57:25.010000"],["2024-07-24T05:57:26.010000"],["2024-07-24T05:57:27.010000"],["2024-07-24T05:57:28.010000"],["2024-07-24T05:57:29.010000"],["2024-07-24T05:57:30.010000"],["2024-07-24T05:57:31.010000"],["2024-07-24T05:57:32.010000"],["2024-07-24T05:57:33.010000"],["2024-07-24T05:57:34.010000"],["2024-07-24T05:57:35.010000"],["2024-07-24T05:57:36.010000"],["2024-07-24T05:57:37.010000"],["2024-07-24T05:57:38.010000"],["2024-07-24T05:57:39.010000"],["2024-07-24T05:57:40.010000"],["2024-07-24T05:57:41.010000"],["2024-07-24T05:57:42.010000"],["2024-07-24T05:57:43.010000"],["2024-07-24T05:57:44.010000"],["2024-07-24T05:57:45.010000"],["2024-07-24T05:57:46.010000"],["2024-07-24T05:57:47.010000"],["2024-07-24T05:57:48.010000"],["2024-07-24T05:57:49.010000"],["2024-07-24T05:57:50.010000"],["2024-07-24T05:57:51.010000"],["2024-07-24T05:57:52.010000"],["2024-07-24T05:57:53.010000"],["2024-07-24T05:57:54.010000"],["2024-07-24T05:57:55.010000"],["2024-07-24T05:57:56.010000"],["2024-07-24T05:57:57.010000"],["2024-07-24T05:57:58.010000"],["2024-07-24T05:57:59.010000"],["2024-07-24T05:58:00.010000"],["2024-07-24T05:58:01.010000"],["2024-07-24T05:58:02.010000"],["2024-07-24T05:58:03.010000"],["2024-07-24T05:58:04.010000"],["2024-07-24T05:58:05.010000"],["2024-07-24T05:58:06.010000"],["2024-07-24T05:58:07.010000"],["2024-07-24T05:58:08.010000"],["2024-07-24T05:58:09.010000"],["2024-07-24T05:58:10.010000"],["2024-07-24T05:58:11.010000"],["2024-07-24T05:58:12.010000"],["2024-07-24T05:58:13.010000"],["2024-07-24T05:58:14.010000"],["2024-07-24T05:58:15.010000"],["2024-07-24T05:58:16.010000"],["2024-07-24T05:58:17.010000"],["2024-07-24T05:58:18.010000"],["2024-07-24T05:58:19.010000"],["2024-07-24T05:58:20.010000"],["2024-07-24T05:58:21.010000"],["2024-07-24T05:58:22.010000"],["2024-07-24T05:58:23.010000"],["2024-07-24T05:58:24.010000"],["2024-07-24T05:58:25.010000"],["2024-07-24T05:58:26.010000"],["2024-07-24T05:58:27.010000"],["2024-07-24T05:58:28.010000"],["2024-07-24T05:58:29.010000"],["2024-07-24T05:58:30.010000"],["2024-07-24T05:58:31.010000"],["2024-07-24T05:58:32.010000"],["2024-07-24T05:58:33.010000"],["2024-07-24T05:58:34.010000"],["2024-07-24T05:58:35.010000"],["2024-07-24T05:58:36.010000"],["2024-07-24T05:58:37.010000"],["2024-07-24T05:58:38.010000"],["2024-07-24T05:58:39.010000"],["2024-07-24T05:58:40.010000"],["2024-07-24T05:58:41.010000"],["2024-07-24T05:58:42.010000"],["2024-07-24T05:58:43.010000"],["2024-07-24T05:58:44.010000"],["2024-07-24T05:58:45.010000"],["2024-07-24T05:58:46.010000"],["2024-07-24T05:58:47.010000"],["2024-07-24T05:58:48.010000"],["2024-07-24T05:58:49.010000"],["2024-07-24T05:58:50.010000"],["2024-07-24T05:58:51.010000"],["2024-07-24T05:58:52.010000"],["2024-07-24T05:58:53.010000"],["2024-07-24T05:58:54.010000"],["2024-07-24T05:58:55.010000"],["2024-07-24T05:58:56.010000"],["2024-07-24T05:58:57.010000"],["2024-07-24T05:58:58.010000"],["2024-07-24T05:58:59.010000"],["2024-07-24T05:59:00.010000"],["2024-07-24T05:59:01.010000"],["2024-07-24T05:59:02.010000"],["2024-07-24T05:59:03.010000"],["2024-07-24T05:59:04.010000"],["2024-07-24T05:59:05.010000"],["2024-07-24T05:59:06.010000"],["2024-07-24T05:59:07.010000"],["2024-07-24T05:59:08.010000"],["2024-07-24T05:59:09.010000"],["2024-07-24T05:59:10.010000"],["2024-07-24T05:59:11.010000"],["2024-07-24T05:59:12.010000"],["2024-07-24T05:59:13.010000"],["2024-07-24T05:59:14.010000"],["2024-07-24T05:59:15.010000"],["2024-07-24T05:59:16.010000"],["2024-07-24T05:59:17.010000"],["2024-07-24T05:59:18.010000"],["2024-07-24T05:59:19.010000"],["2024-07-24T05:59:20.010000"],["2024-07-24T05:59:21.010000"],["2024-07-24T05:59:22.010000"],["2024-07-24T05:59:23.010000"],["2024-07-24T05:59:24.010000"],["2024-07-24T05:59:25.010000"],["2024-07-24T05:59:26.010000"],["2024-07-24T05:59:27.010000"],["2024-07-24T05:59:28.010000"],["2024-07-24T05:59:29.010000"],["2024-07-24T05:59:30.010000"],["2024-07-24T05:59:31.010000"],["2024-07-24T05:59:32.010000"],["2024-07-24T05:59:33.010000"],["2024-07-24T05:59:34.010000"],["2024-07-24T05:59:35.010000"],["2024-07-24T05:59:36.010000"],["2024-07-24T05:59:37.010000"],["2024-07-24T05:59:38.010000"],["2024-07-24T05:59:39.010000"],["2024-07-24T05:59:40.010000"],["2024-07-24T05:59:41.010000"],["2024-07-24T05:59:42.010000"],["2024-07-24T05:59:43.010000"],["2024-07-24T05:59:44.010000"],["2024-07-24T05:59:45.010000"],["2024-07-24T05:59:46.010000"],["2024-07-24T05:59:47.010000"],["2024-07-24T05:59:48.010000"],["2024-07-24T05:59:49.010000"],["2024-07-24T05:59:50.010000"],["2024-07-24T05:59:51.010000"],["2024-07-24T05:59:52.010000"],["2024-07-24T05:59:53.010000"],["2024-07-24T05:59:54.010000"],["2024-07-24T05:59:55.010000"],["2024-07-24T05:59:56.010000"],["2024-07-24T05:59:57.010000"],["2024-07-24T05:59:58.010000"],["2024-07-24T05:59:59.010000"],["2024-07-24T06:00:00.010000"],["2024-07-24T06:00:01.010000"],["2024-07-24T06:00:02.010000"],["2024-07-24T06:00:03.010000"],["2024-07-24T06:00:04.010000"],["2024-07-24T06:00:05.010000"],["2024-07-24T06:00:06.010000"],["2024-07-24T06:00:07.010000"],["2024-07-24T06:00:08.010000"],["2024-07-24T06:00:09.010000"],["2024-07-24T06:00:10.010000"],["2024-07-24T06:00:11.010000"],["2024-07-24T06:00:12.010000"],["2024-07-24T06:00:13.010000"],["2024-07-24T06:00:14.010000"],["2024-07-24T06:00:15.010000"],["2024-07-24T06:00:16.010000"],["2024-07-24T06:00:17.010000"],["2024-07-24T06:00:18.010000"],["2024-07-24T06:00:19.010000"],["2024-07-24T06:00:20.010000"],["2024-07-24T06:00:21.010000"],["2024-07-24T06:00:22.010000"],["2024-07-24T06:00:23.010000"],["2024-07-24T06:00:24.010000"],["2024-07-24T06:00:25.010000"],["2024-07-24T06:00:26.010000"],["2024-07-24T06:00:27.010000"],["2024-07-24T06:00:28.010000"],["2024-07-24T06:00:29.010000"],["2024-07-24T06:00:30.010000"],["2024-07-24T06:00:31.010000"],["2024-07-24T06:00:32.010000"],["2024-07-24T06:00:33.010000"],["2024-07-24T06:00:34.010000"],["2024-07-24T06:00:35.010000"],["2024-07-24T06:00:36.010000"],["2024-07-24T06:00:37.010000"],["2024-07-24T06:00:38.010000"],["2024-07-24T06:00:39.010000"],["2024-07-24T06:00:40.010000"],["2024-07-24T06:00:41.010000"],["2024-07-24T06:00:42.010000"],["2024-07-24T06:00:43.010000"],["2024-07-24T06:00:44.010000"],["2024-07-24T06:00:45.010000"],["2024-07-24T06:00:46.010000"],["2024-07-24T06:00:47.010000"],["2024-07-24T06:00:48.010000"],["2024-07-24T06:00:49.010000"],["2024-07-24T06:00:50.010000"],["2024-07-24T06:00:51.010000"],["2024-07-24T06:00:52.010000"],["2024-07-24T06:00:53.010000"],["2024-07-24T06:00:54.010000"],["2024-07-24T06:00:55.010000"],["2024-07-24T06:00:56.010000"],["2024-07-24T06:00:57.010000"],["2024-07-24T06:00:58.010000"],["2024-07-24T06:00:59.010000"],["2024-07-24T06:01:00.010000"],["2024-07-24T06:01:01.010000"],["2024-07-24T06:01:02.010000"],["2024-07-24T06:01:03.010000"],["2024-07-24T06:01:04.010000"],["2024-07-24T06:01:05.010000"],["2024-07-24T06:01:06.010000"],["2024-07-24T06:01:07.010000"],["2024-07-24T06:01:08.010000"],["2024-07-24T06:01:09.010000"],["2024-07-24T06:01:10.010000"],["2024-07-24T06:01:11.010000"],["2024-07-24T06:01:12.010000"],["2024-07-24T06:01:13.010000"],["2024-07-24T06:01:14.010000"],["2024-07-24T06:01:15.010000"],["2024-07-24T06:01:16.010000"],["2024-07-24T06:01:17.010000"],["2024-07-24T06:01:18.010000"],["2024-07-24T06:01:19.010000"],["2024-07-24T06:01:20.010000"],["2024-07-24T06:01:21.010000"],["2024-07-24T06:01:22.010000"],["2024-07-24T06:01:23.010000"],["2024-07-24T06:01:24.010000"],["2024-07-24T06:01:25.010000"],["2024-07-24T06:01:26.010000"],["2024-07-24T06:01:27.010000"],["2024-07-24T06:01:28.010000"],["2024-07-24T06:01:29.010000"],["2024-07-24T06:01:30.010000"],["2024-07-24T06:01:31.010000"],["2024-07-24T06:01:32.010000"],["2024-07-24T06:01:33.010000"],["2024-07-24T06:01:34.010000"],["2024-07-24T06:01:35.010000"],["2024-07-24T06:01:36.010000"],["2024-07-24T06:01:37.010000"],["2024-07-24T06:01:38.010000"],["2024-07-24T06:01:39.010000"],["2024-07-24T06:01:40.010000"],["2024-07-24T06:01:41.010000"],["2024-07-24T06:01:42.010000"],["2024-07-24T06:01:43.010000"],["2024-07-24T06:01:44.010000"],["2024-07-24T06:01:45.010000"],["2024-07-24T06:01:46.010000"],["2024-07-24T06:01:47.010000"],["2024-07-24T06:01:48.010000"],["2024-07-24T06:01:49.010000"],["2024-07-24T06:01:50.010000"],["2024-07-24T06:01:51.010000"],["2024-07-24T06:01:52.010000"],["2024-07-24T06:01:53.010000"],["2024-07-24T06:01:54.010000"],["2024-07-24T06:01:55.010000"],["2024-07-24T06:01:56.010000"],["2024-07-24T06:01:57.010000"],["2024-07-24T06:01:58.010000"],["2024-07-24T06:01:59.010000"],["2024-07-24T06:02:00.010000"],["2024-07-24T06:02:01.010000"],["2024-07-24T06:02:02.010000"],["2024-07-24T06:02:03.010000"],["2024-07-24T06:02:04.010000"],["2024-07-24T06:02:05.010000"],["2024-07-24T06:02:06.010000"],["2024-07-24T06:02:07.010000"],["2024-07-24T06:02:08.010000"],["2024-07-24T06:02:09.010000"],["2024-07-24T06:02:10.010000"],["2024-07-24T06:02:11.010000"],["2024-07-24T06:02:12.010000"],["2024-07-24T06:02:13.010000"],["2024-07-24T06:02:14.010000"],["2024-07-24T06:02:15.010000"],["2024-07-24T06:02:16.010000"],["2024-07-24T06:02:17.010000"],["2024-07-24T06:02:18.010000"],["2024-07-24T06:02:19.010000"],["2024-07-24T06:02:20.010000"],["2024-07-24T06:02:21.010000"],["2024-07-24T06:02:22.010000"],["2024-07-24T06:02:23.010000"],["2024-07-24T06:02:24.010000"],["2024-07-24T06:02:25.010000"],["2024-07-24T06:02:26.010000"],["2024-07-24T06:02:27.010000"],["2024-07-24T06:02:28.010000"],["2024-07-24T06:02:29.010000"],["2024-07-24T06:02:30.010000"],["2024-07-24T06:02:31.010000"],["2024-07-24T06:02:32.010000"],["2024-07-24T06:02:33.010000"],["2024-07-24T06:02:34.010000"],["2024-07-24T06:02:35.010000"],["2024-07-24T06:02:36.010000"],["2024-07-24T06:02:37.010000"],["2024-07-24T06:02:38.010000"],["2024-07-24T06:02:39.010000"],["2024-07-24T06:02:40.010000"],["2024-07-24T06:02:41.010000"],["2024-07-24T06:02:42.010000"],["2024-07-24T06:02:43.010000"],["2024-07-24T06:02:44.010000"],["2024-07-24T06:02:45.010000"],["2024-07-24T06:02:46.010000"],["2024-07-24T06:02:47.010000"],["2024-07-24T06:02:48.010000"],["2024-07-24T06:02:49.010000"],["2024-07-24T06:02:50.010000"],["2024-07-24T06:02:51.010000"],["2024-07-24T06:02:52.010000"],["2024-07-24T06:02:53.010000"],["2024-07-24T06:02:54.010000"],["2024-07-24T06:02:55.010000"],["2024-07-24T06:02:56.010000"],["2024-07-24T06:02:57.010000"],["2024-07-24T06:02:58.010000"],["2024-07-24T06:02:59.010000"],["2024-07-24T06:03:00.010000"],["2024-07-24T06:03:01.010000"],["2024-07-24T06:03:02.010000"],["2024-07-24T06:03:03.010000"],["2024-07-24T06:03:04.010000"],["2024-07-24T06:03:05.010000"],["2024-07-24T06:03:06.010000"],["2024-07-24T06:03:07.010000"],["2024-07-24T06:03:08.010000"],["2024-07-24T06:03:09.010000"],["2024-07-24T06:03:10.010000"],["2024-07-24T06:03:11.010000"],["2024-07-24T06:03:12.010000"],["2024-07-24T06:03:13.010000"],["2024-07-24T06:03:14.010000"],["2024-07-24T06:03:15.010000"],["2024-07-24T06:03:16.010000"],["2024-07-24T06:03:17.010000"],["2024-07-24T06:03:18.010000"],["2024-07-24T06:03:19.010000"],["2024-07-24T06:03:20.010000"],["2024-07-24T06:03:21.010000"],["2024-07-24T06:03:22.010000"],["2024-07-24T06:03:23.010000"],["2024-07-24T06:03:24.010000"],["2024-07-24T06:03:25.010000"],["2024-07-24T06:03:26.010000"],["2024-07-24T06:03:27.010000"],["2024-07-24T06:03:28.010000"],["2024-07-24T06:03:29.010000"],["2024-07-24T06:03:30.010000"],["2024-07-24T06:03:31.010000"],["2024-07-24T06:03:32.010000"],["2024-07-24T06:03:33.010000"],["2024-07-24T06:03:34.010000"],["2024-07-24T06:03:35.010000"],["2024-07-24T06:03:36.010000"],["2024-07-24T06:03:37.010000"],["2024-07-24T06:03:38.010000"],["2024-07-24T06:03:39.010000"],["2024-07-24T06:03:40.010000"],["2024-07-24T06:03:41.010000"],["2024-07-24T06:03:42.010000"],["2024-07-24T06:03:43.010000"],["2024-07-24T06:03:44.010000"],["2024-07-24T06:03:45.010000"],["2024-07-24T06:03:46.010000"],["2024-07-24T06:03:47.010000"],["2024-07-24T06:03:48.010000"],["2024-07-24T06:03:49.010000"],["2024-07-24T06:03:50.010000"],["2024-07-24T06:03:51.010000"],["2024-07-24T06:03:52.010000"],["2024-07-24T06:03:53.010000"],["2024-07-24T06:03:54.010000"],["2024-07-24T06:03:55.010000"],["2024-07-24T06:03:56.010000"],["2024-07-24T06:03:57.010000"],["2024-07-24T06:03:58.010000"],["2024-07-24T06:03:59.010000"],["2024-07-24T06:04:00.010000"],["2024-07-24T06:04:01.010000"],["2024-07-24T06:04:02.010000"],["2024-07-24T06:04:03.010000"],["2024-07-24T06:04:04.010000"],["2024-07-24T06:04:05.010000"],["2024-07-24T06:04:06.010000"],["2024-07-24T06:04:07.010000"],["2024-07-24T06:04:08.010000"],["2024-07-24T06:04:09.010000"],["2024-07-24T06:04:10.010000"],["2024-07-24T06:04:11.010000"],["2024-07-24T06:04:12.010000"],["2024-07-24T06:04:13.010000"],["2024-07-24T06:04:14.010000"],["2024-07-24T06:04:15.010000"],["2024-07-24T06:04:16.010000"],["2024-07-24T06:04:17.010000"],["2024-07-24T06:04:18.010000"],["2024-07-24T06:04:19.010000"],["2024-07-24T06:04:20.010000"],["2024-07-24T06:04:21.010000"],["2024-07-24T06:04:22.010000"],["2024-07-24T06:04:23.010000"],["2024-07-24T06:04:24.010000"],["2024-07-24T06:04:25.010000"],["2024-07-24T06:04:26.010000"],["2024-07-24T06:04:27.010000"],["2024-07-24T06:04:28.010000"],["2024-07-24T06:04:29.010000"],["2024-07-24T06:04:30.010000"],["2024-07-24T06:04:31.010000"],["2024-07-24T06:04:32.010000"],["2024-07-24T06:04:33.010000"],["2024-07-24T06:04:34.010000"],["2024-07-24T06:04:35.010000"],["2024-07-24T06:04:36.010000"],["2024-07-24T06:04:37.010000"],["2024-07-24T06:04:38.010000"],["2024-07-24T06:04:39.010000"],["2024-07-24T06:04:40.010000"],["2024-07-24T06:04:41.010000"],["2024-07-24T06:04:42.010000"],["2024-07-24T06:04:43.010000"],["2024-07-24T06:04:44.010000"],["2024-07-24T06:04:45.010000"],["2024-07-24T06:04:46.010000"],["2024-07-24T06:04:47.010000"],["2024-07-24T06:04:48.010000"],["2024-07-24T06:04:49.010000"],["2024-07-24T06:04:50.010000"],["2024-07-24T06:04:51.010000"],["2024-07-24T06:04:52.010000"],["2024-07-24T06:04:53.010000"],["2024-07-24T06:04:54.010000"],["2024-07-24T06:04:55.010000"],["2024-07-24T06:04:56.010000"],["2024-07-24T06:04:57.010000"],["2024-07-24T06:04:58.010000"],["2024-07-24T06:04:59.010000"],["2024-07-24T06:05:00.010000"],["2024-07-24T06:05:01.010000"],["2024-07-24T06:05:02.010000"],["2024-07-24T06:05:03.010000"],["2024-07-24T06:05:04.010000"],["2024-07-24T06:05:05.010000"],["2024-07-24T06:05:06.010000"],["2024-07-24T06:05:07.010000"],["2024-07-24T06:05:08.010000"],["2024-07-24T06:05:09.010000"],["2024-07-24T06:05:10.010000"],["2024-07-24T06:05:11.010000"],["2024-07-24T06:05:12.010000"],["2024-07-24T06:05:13.010000"],["2024-07-24T06:05:14.010000"],["2024-07-24T06:05:15.010000"],["2024-07-24T06:05:16.010000"],["2024-07-24T06:05:17.010000"],["2024-07-24T06:05:18.010000"],["2024-07-24T06:05:19.010000"],["2024-07-24T06:05:20.010000"],["2024-07-24T06:05:21.010000"],["2024-07-24T06:05:22.010000"],["2024-07-24T06:05:23.010000"],["2024-07-24T06:05:24.010000"],["2024-07-24T06:05:25.010000"],["2024-07-24T06:05:26.010000"],["2024-07-24T06:05:27.010000"],["2024-07-24T06:05:28.010000"],["2024-07-24T06:05:29.010000"],["2024-07-24T06:05:30.010000"],["2024-07-24T06:05:31.010000"],["2024-07-24T06:05:32.010000"],["2024-07-24T06:05:33.010000"],["2024-07-24T06:05:34.010000"],["2024-07-24T06:05:35.010000"],["2024-07-24T06:05:36.010000"],["2024-07-24T06:05:37.010000"],["2024-07-24T06:05:38.010000"],["2024-07-24T06:05:39.010000"],["2024-07-24T06:05:40.010000"],["2024-07-24T06:05:41.010000"],["2024-07-24T06:05:42.010000"],["2024-07-24T06:05:43.010000"],["2024-07-24T06:05:44.010000"],["2024-07-24T06:05:45.010000"],["2024-07-24T06:05:46.010000"],["2024-07-24T06:05:47.010000"],["2024-07-24T06:05:48.010000"],["2024-07-24T06:05:49.010000"],["2024-07-24T06:05:50.010000"],["2024-07-24T06:05:51.010000"],["2024-07-24T06:05:52.010000"],["2024-07-24T06:05:53.010000"],["2024-07-24T06:05:54.010000"],["2024-07-24T06:05:55.010000"],["2024-07-24T06:05:56.010000"],["2024-07-24T06:05:57.010000"],["2024-07-24T06:05:58.010000"],["2024-07-24T06:05:59.010000"],["2024-07-24T06:06:00.010000"],["2024-07-24T06:06:01.010000"],["2024-07-24T06:06:02.010000"],["2024-07-24T06:06:03.010000"],["2024-07-24T06:06:04.010000"],["2024-07-24T06:06:05.010000"],["2024-07-24T06:06:06.010000"],["2024-07-24T06:06:07.010000"],["2024-07-24T06:06:08.010000"],["2024-07-24T06:06:09.010000"],["2024-07-24T06:06:10.010000"],["2024-07-24T06:06:11.010000"],["2024-07-24T06:06:12.010000"],["2024-07-24T06:06:13.010000"],["2024-07-24T06:06:14.010000"],["2024-07-24T06:06:15.010000"],["2024-07-24T06:06:16.010000"],["2024-07-24T06:06:17.010000"],["2024-07-24T06:06:18.010000"],["2024-07-24T06:06:19.010000"],["2024-07-24T06:06:20.010000"],["2024-07-24T06:06:21.010000"],["2024-07-24T06:06:22.010000"],["2024-07-24T06:06:23.010000"],["2024-07-24T06:06:24.010000"],["2024-07-24T06:06:25.010000"],["2024-07-24T06:06:26.010000"],["2024-07-24T06:06:27.010000"],["2024-07-24T06:06:28.010000"],["2024-07-24T06:06:29.010000"],["2024-07-24T06:06:30.010000"],["2024-07-24T06:06:31.010000"],["2024-07-24T06:06:32.010000"],["2024-07-24T06:06:33.010000"],["2024-07-24T06:06:34.010000"],["2024-07-24T06:06:35.010000"],["2024-07-24T06:06:36.010000"],["2024-07-24T06:06:37.010000"],["2024-07-24T06:06:38.010000"],["2024-07-24T06:06:39.010000"],["2024-07-24T06:06:40.010000"],["2024-07-24T06:06:41.010000"],["2024-07-24T06:06:42.010000"],["2024-07-24T06:06:43.010000"],["2024-07-24T06:06:44.010000"],["2024-07-24T06:06:45.010000"],["2024-07-24T06:06:46.010000"],["2024-07-24T06:06:47.010000"],["2024-07-24T06:06:48.010000"],["2024-07-24T06:06:49.010000"],["2024-07-24T06:06:50.010000"],["2024-07-24T06:06:51.010000"],["2024-07-24T06:06:52.010000"],["2024-07-24T06:06:53.010000"],["2024-07-24T06:06:54.010000"],["2024-07-24T06:06:55.010000"],["2024-07-24T06:06:56.010000"],["2024-07-24T06:06:57.010000"],["2024-07-24T06:06:58.010000"],["2024-07-24T06:06:59.010000"],["2024-07-24T06:07:00.010000"],["2024-07-24T06:07:01.010000"],["2024-07-24T06:07:02.010000"],["2024-07-24T06:07:03.010000"],["2024-07-24T06:07:04.010000"],["2024-07-24T06:07:05.010000"],["2024-07-24T06:07:06.010000"],["2024-07-24T06:07:07.010000"],["2024-07-24T06:07:08.010000"],["2024-07-24T06:07:09.010000"],["2024-07-24T06:07:10.010000"],["2024-07-24T06:07:11.010000"],["2024-07-24T06:07:12.010000"],["2024-07-24T06:07:13.010000"],["2024-07-24T06:07:14.010000"],["2024-07-24T06:07:15.010000"],["2024-07-24T06:07:16.010000"],["2024-07-24T06:07:17.010000"],["2024-07-24T06:07:18.010000"],["2024-07-24T06:07:19.010000"],["2024-07-24T06:07:20.010000"],["2024-07-24T06:07:21.010000"],["2024-07-24T06:07:22.010000"],["2024-07-24T06:07:23.010000"],["2024-07-24T06:07:24.010000"],["2024-07-24T06:07:25.010000"],["2024-07-24T06:07:26.010000"],["2024-07-24T06:07:27.010000"],["2024-07-24T06:07:28.010000"],["2024-07-24T06:07:29.010000"],["2024-07-24T06:07:30.010000"],["2024-07-24T06:07:31.010000"],["2024-07-24T06:07:32.010000"],["2024-07-24T06:07:33.010000"],["2024-07-24T06:07:34.010000"],["2024-07-24T06:07:35.010000"],["2024-07-24T06:07:36.010000"],["2024-07-24T06:07:37.010000"],["2024-07-24T06:07:38.010000"],["2024-07-24T06:07:39.010000"],["2024-07-24T06:07:40.010000"],["2024-07-24T06:07:41.010000"],["2024-07-24T06:07:42.010000"],["2024-07-24T06:07:43.010000"],["2024-07-24T06:07:44.010000"],["2024-07-24T06:07:45.010000"],["2024-07-24T06:07:46.010000"],["2024-07-24T06:07:47.010000"],["2024-07-24T06:07:48.010000"],["2024-07-24T06:07:49.010000"],["2024-07-24T06:07:50.010000"],["2024-07-24T06:07:51.010000"],["2024-07-24T06:07:52.010000"],["2024-07-24T06:07:53.010000"],["2024-07-24T06:07:54.010000"],["2024-07-24T06:07:55.010000"],["2024-07-24T06:07:56.010000"],["2024-07-24T06:07:57.010000"],["2024-07-24T06:07:58.010000"],["2024-07-24T06:07:59.010000"],["2024-07-24T06:08:00.010000"],["2024-07-24T06:08:01.010000"],["2024-07-24T06:08:02.010000"],["2024-07-24T06:08:03.010000"],["2024-07-24T06:08:04.010000"],["2024-07-24T06:08:05.010000"],["2024-07-24T06:08:06.010000"],["2024-07-24T06:08:07.010000"],["2024-07-24T06:08:08.010000"],["2024-07-24T06:08:09.010000"],["2024-07-24T06:08:10.010000"],["2024-07-24T06:08:11.010000"],["2024-07-24T06:08:12.010000"],["2024-07-24T06:08:13.010000"],["2024-07-24T06:08:14.010000"],["2024-07-24T06:08:15.010000"],["2024-07-24T06:08:16.010000"],["2024-07-24T06:08:17.010000"],["2024-07-24T06:08:18.010000"],["2024-07-24T06:08:19.010000"],["2024-07-24T06:08:20.010000"],["2024-07-24T06:08:21.010000"],["2024-07-24T06:08:22.010000"],["2024-07-24T06:08:23.010000"],["2024-07-24T06:08:24.010000"],["2024-07-24T06:08:25.010000"],["2024-07-24T06:08:26.010000"],["2024-07-24T06:08:27.010000"],["2024-07-24T06:08:28.010000"],["2024-07-24T06:08:29.010000"],["2024-07-24T06:08:30.010000"],["2024-07-24T06:08:31.010000"],["2024-07-24T06:08:32.010000"],["2024-07-24T06:08:33.010000"],["2024-07-24T06:08:34.010000"],["2024-07-24T06:08:35.010000"],["2024-07-24T06:08:36.010000"],["2024-07-24T06:08:37.010000"],["2024-07-24T06:08:38.010000"],["2024-07-24T06:08:39.010000"],["2024-07-24T06:08:40.010000"],["2024-07-24T06:08:41.010000"],["2024-07-24T06:08:42.010000"],["2024-07-24T06:08:43.010000"],["2024-07-24T06:08:44.010000"],["2024-07-24T06:08:45.010000"],["2024-07-24T06:08:46.010000"],["2024-07-24T06:08:47.010000"],["2024-07-24T06:08:48.010000"],["2024-07-24T06:08:49.010000"],["2024-07-24T06:08:50.010000"],["2024-07-24T06:08:51.010000"],["2024-07-24T06:08:52.010000"],["2024-07-24T06:08:53.010000"],["2024-07-24T06:08:54.010000"],["2024-07-24T06:08:55.010000"],["2024-07-24T06:08:56.010000"],["2024-07-24T06:08:57.010000"],["2024-07-24T06:08:58.010000"],["2024-07-24T06:08:59.010000"],["2024-07-24T06:09:00.010000"],["2024-07-24T06:09:01.010000"],["2024-07-24T06:09:02.010000"],["2024-07-24T06:09:03.010000"],["2024-07-24T06:09:04.010000"],["2024-07-24T06:09:05.010000"],["2024-07-24T06:09:06.010000"],["2024-07-24T06:09:07.010000"],["2024-07-24T06:09:08.010000"],["2024-07-24T06:09:09.010000"],["2024-07-24T06:09:10.010000"],["2024-07-24T06:09:11.010000"],["2024-07-24T06:09:12.010000"],["2024-07-24T06:09:13.010000"],["2024-07-24T06:09:14.010000"],["2024-07-24T06:09:15.010000"],["2024-07-24T06:09:16.010000"],["2024-07-24T06:09:17.010000"],["2024-07-24T06:09:18.010000"],["2024-07-24T06:09:19.010000"],["2024-07-24T06:09:20.010000"],["2024-07-24T06:09:21.010000"],["2024-07-24T06:09:22.010000"],["2024-07-24T06:09:23.010000"],["2024-07-24T06:09:24.010000"],["2024-07-24T06:09:25.010000"],["2024-07-24T06:09:26.010000"],["2024-07-24T06:09:27.010000"],["2024-07-24T06:09:28.010000"],["2024-07-24T06:09:29.010000"],["2024-07-24T06:09:30.010000"],["2024-07-24T06:09:31.010000"],["2024-07-24T06:09:32.010000"],["2024-07-24T06:09:33.010000"],["2024-07-24T06:09:34.010000"],["2024-07-24T06:09:35.010000"],["2024-07-24T06:09:36.010000"],["2024-07-24T06:09:37.010000"],["2024-07-24T06:09:38.010000"],["2024-07-24T06:09:39.010000"],["2024-07-24T06:09:40.010000"],["2024-07-24T06:09:41.010000"],["2024-07-24T06:09:42.010000"],["2024-07-24T06:09:43.010000"],["2024-07-24T06:09:44.010000"],["2024-07-24T06:09:45.010000"],["2024-07-24T06:09:46.010000"],["2024-07-24T06:09:47.010000"],["2024-07-24T06:09:48.010000"],["2024-07-24T06:09:49.010000"],["2024-07-24T06:09:50.010000"],["2024-07-24T06:09:51.010000"],["2024-07-24T06:09:52.010000"],["2024-07-24T06:09:53.010000"],["2024-07-24T06:09:54.010000"],["2024-07-24T06:09:55.010000"],["2024-07-24T06:09:56.010000"],["2024-07-24T06:09:57.010000"],["2024-07-24T06:09:58.010000"],["2024-07-24T06:09:59.010000"],["2024-07-24T06:10:00.010000"],["2024-07-24T06:10:01.010000"],["2024-07-24T06:10:02.010000"],["2024-07-24T06:10:03.010000"],["2024-07-24T06:10:04.010000"],["2024-07-24T06:10:05.010000"],["2024-07-24T06:10:06.010000"],["2024-07-24T06:10:07.010000"],["2024-07-24T06:10:08.010000"],["2024-07-24T06:10:09.010000"],["2024-07-24T06:10:10.010000"],["2024-07-24T06:10:11.010000"],["2024-07-24T06:10:12.010000"],["2024-07-24T06:10:13.010000"],["2024-07-24T06:10:14.010000"],["2024-07-24T06:10:15.010000"],["2024-07-24T06:10:16.010000"],["2024-07-24T06:10:17.010000"],["2024-07-24T06:10:18.010000"],["2024-07-24T06:10:19.010000"],["2024-07-24T06:10:20.010000"],["2024-07-24T06:10:21.010000"],["2024-07-24T06:10:22.010000"],["2024-07-24T06:10:23.010000"],["2024-07-24T06:10:24.010000"],["2024-07-24T06:10:25.010000"],["2024-07-24T06:10:26.010000"],["2024-07-24T06:10:27.010000"],["2024-07-24T06:10:28.010000"],["2024-07-24T06:10:29.010000"],["2024-07-24T06:10:30.010000"],["2024-07-24T06:10:31.010000"],["2024-07-24T06:10:32.010000"],["2024-07-24T06:10:33.010000"],["2024-07-24T06:10:34.010000"],["2024-07-24T06:10:35.010000"],["2024-07-24T06:10:36.010000"],["2024-07-24T06:10:37.010000"],["2024-07-24T06:10:38.010000"],["2024-07-24T06:10:39.010000"],["2024-07-24T06:10:40.010000"],["2024-07-24T06:10:41.010000"],["2024-07-24T06:10:42.010000"],["2024-07-24T06:10:43.010000"],["2024-07-24T06:10:44.010000"],["2024-07-24T06:10:45.010000"],["2024-07-24T06:10:46.010000"],["2024-07-24T06:10:47.010000"],["2024-07-24T06:10:48.010000"],["2024-07-24T06:10:49.010000"],["2024-07-24T06:10:50.010000"],["2024-07-24T06:10:51.010000"],["2024-07-24T06:10:52.010000"],["2024-07-24T06:10:53.010000"],["2024-07-24T06:10:54.010000"],["2024-07-24T06:10:55.010000"],["2024-07-24T06:10:56.010000"],["2024-07-24T06:10:57.010000"],["2024-07-24T06:10:58.010000"],["2024-07-24T06:10:59.010000"],["2024-07-24T06:11:00.010000"],["2024-07-24T06:11:01.010000"],["2024-07-24T06:11:02.010000"],["2024-07-24T06:11:03.010000"],["2024-07-24T06:11:04.010000"],["2024-07-24T06:11:05.010000"],["2024-07-24T06:11:06.010000"],["2024-07-24T06:11:07.010000"],["2024-07-24T06:11:08.010000"],["2024-07-24T06:11:09.010000"],["2024-07-24T06:11:10.010000"],["2024-07-24T06:11:11.010000"],["2024-07-24T06:11:12.010000"],["2024-07-24T06:11:13.010000"],["2024-07-24T06:11:14.010000"],["2024-07-24T06:11:15.010000"],["2024-07-24T06:11:16.010000"],["2024-07-24T06:11:17.010000"],["2024-07-24T06:11:18.010000"],["2024-07-24T06:11:19.010000"],["2024-07-24T06:11:20.010000"],["2024-07-24T06:11:21.010000"],["2024-07-24T06:11:22.010000"],["2024-07-24T06:11:23.010000"],["2024-07-24T06:11:24.010000"],["2024-07-24T06:11:25.010000"],["2024-07-24T06:11:26.010000"],["2024-07-24T06:11:27.010000"],["2024-07-24T06:11:28.010000"],["2024-07-24T06:11:29.010000"],["2024-07-24T06:11:30.010000"],["2024-07-24T06:11:31.010000"],["2024-07-24T06:11:32.010000"],["2024-07-24T06:11:33.010000"],["2024-07-24T06:11:34.010000"],["2024-07-24T06:11:35.010000"],["2024-07-24T06:11:36.010000"],["2024-07-24T06:11:37.010000"],["2024-07-24T06:11:38.010000"],["2024-07-24T06:11:39.010000"],["2024-07-24T06:11:40.010000"],["2024-07-24T06:11:41.010000"],["2024-07-24T06:11:42.010000"],["2024-07-24T06:11:43.010000"],["2024-07-24T06:11:44.010000"],["2024-07-24T06:11:45.010000"],["2024-07-24T06:11:46.010000"],["2024-07-24T06:11:47.010000"],["2024-07-24T06:11:48.010000"],["2024-07-24T06:11:49.010000"],["2024-07-24T06:11:50.010000"],["2024-07-24T06:11:51.010000"],["2024-07-24T06:11:52.010000"],["2024-07-24T06:11:53.010000"],["2024-07-24T06:11:54.010000"],["2024-07-24T06:11:55.010000"],["2024-07-24T06:11:56.010000"],["2024-07-24T06:11:57.010000"],["2024-07-24T06:11:58.010000"],["2024-07-24T06:11:59.010000"],["2024-07-24T06:12:00.010000"],["2024-07-24T06:12:01.010000"],["2024-07-24T06:12:02.010000"],["2024-07-24T06:12:03.010000"],["2024-07-24T06:12:04.010000"],["2024-07-24T06:12:05.010000"],["2024-07-24T06:12:06.010000"],["2024-07-24T06:12:07.010000"],["2024-07-24T06:12:08.010000"],["2024-07-24T06:12:09.010000"],["2024-07-24T06:12:10.010000"],["2024-07-24T06:12:11.010000"],["2024-07-24T06:12:12.010000"],["2024-07-24T06:12:13.010000"],["2024-07-24T06:12:14.010000"],["2024-07-24T06:12:15.010000"],["2024-07-24T06:12:16.010000"],["2024-07-24T06:12:17.010000"],["2024-07-24T06:12:18.010000"],["2024-07-24T06:12:19.010000"],["2024-07-24T06:12:20.010000"],["2024-07-24T06:12:21.010000"],["2024-07-24T06:12:22.010000"],["2024-07-24T06:12:23.010000"],["2024-07-24T06:12:24.010000"],["2024-07-24T06:12:25.010000"],["2024-07-24T06:12:26.010000"],["2024-07-24T06:12:27.010000"],["2024-07-24T06:12:28.010000"],["2024-07-24T06:12:29.010000"],["2024-07-24T06:12:30.010000"],["2024-07-24T06:12:31.010000"],["2024-07-24T06:12:32.010000"],["2024-07-24T06:12:33.010000"],["2024-07-24T06:12:34.010000"],["2024-07-24T06:12:35.010000"],["2024-07-24T06:12:36.010000"],["2024-07-24T06:12:37.010000"],["2024-07-24T06:12:38.010000"],["2024-07-24T06:12:39.010000"],["2024-07-24T06:12:40.010000"],["2024-07-24T06:12:41.010000"],["2024-07-24T06:12:42.010000"],["2024-07-24T06:12:43.010000"],["2024-07-24T06:12:44.010000"],["2024-07-24T06:12:45.010000"],["2024-07-24T06:12:46.010000"],["2024-07-24T06:12:47.010000"],["2024-07-24T06:12:48.010000"],["2024-07-24T06:12:49.010000"],["2024-07-24T06:12:50.010000"],["2024-07-24T06:12:51.010000"],["2024-07-24T06:12:52.010000"],["2024-07-24T06:12:53.010000"],["2024-07-24T06:12:54.010000"],["2024-07-24T06:12:55.010000"],["2024-07-24T06:12:56.010000"],["2024-07-24T06:12:57.010000"],["2024-07-24T06:12:58.010000"],["2024-07-24T06:12:59.010000"],["2024-07-24T06:13:00.010000"],["2024-07-24T06:13:01.010000"],["2024-07-24T06:13:02.010000"],["2024-07-24T06:13:03.010000"],["2024-07-24T06:13:04.010000"],["2024-07-24T06:13:05.010000"],["2024-07-24T06:13:06.010000"],["2024-07-24T06:13:07.010000"],["2024-07-24T06:13:08.010000"],["2024-07-24T06:13:09.010000"],["2024-07-24T06:13:10.010000"],["2024-07-24T06:13:11.010000"],["2024-07-24T06:13:12.010000"],["2024-07-24T06:13:13.010000"],["2024-07-24T06:13:14.010000"],["2024-07-24T06:13:15.010000"],["2024-07-24T06:13:16.010000"],["2024-07-24T06:13:17.010000"],["2024-07-24T06:13:18.010000"],["2024-07-24T06:13:19.010000"],["2024-07-24T06:13:20.010000"],["2024-07-24T06:13:21.010000"],["2024-07-24T06:13:22.010000"],["2024-07-24T06:13:23.010000"],["2024-07-24T06:13:24.010000"],["2024-07-24T06:13:25.010000"],["2024-07-24T06:13:26.010000"],["2024-07-24T06:13:27.010000"],["2024-07-24T06:13:28.010000"],["2024-07-24T06:13:29.010000"],["2024-07-24T06:13:30.010000"],["2024-07-24T06:13:31.010000"],["2024-07-24T06:13:32.010000"],["2024-07-24T06:13:33.010000"],["2024-07-24T06:13:34.010000"],["2024-07-24T06:13:35.010000"],["2024-07-24T06:13:36.010000"],["2024-07-24T06:13:37.010000"],["2024-07-24T06:13:38.010000"],["2024-07-24T06:13:39.010000"],["2024-07-24T06:13:40.010000"],["2024-07-24T06:13:41.010000"],["2024-07-24T06:13:42.010000"],["2024-07-24T06:13:43.010000"],["2024-07-24T06:13:44.010000"],["2024-07-24T06:13:45.010000"],["2024-07-24T06:13:46.010000"],["2024-07-24T06:13:47.010000"],["2024-07-24T06:13:48.010000"],["2024-07-24T06:13:49.010000"],["2024-07-24T06:13:50.010000"],["2024-07-24T06:13:51.010000"],["2024-07-24T06:13:52.010000"],["2024-07-24T06:13:53.010000"],["2024-07-24T06:13:54.010000"],["2024-07-24T06:13:55.010000"],["2024-07-24T06:13:56.010000"],["2024-07-24T06:13:57.010000"],["2024-07-24T06:13:58.010000"],["2024-07-24T06:13:59.010000"],["2024-07-24T06:14:00.010000"],["2024-07-24T06:14:01.010000"],["2024-07-24T06:14:02.010000"],["2024-07-24T06:14:03.010000"],["2024-07-24T06:14:04.010000"],["2024-07-24T06:14:05.010000"],["2024-07-24T06:14:06.010000"],["2024-07-24T06:14:07.010000"],["2024-07-24T06:14:08.010000"],["2024-07-24T06:14:09.010000"],["2024-07-24T06:14:10.010000"],["2024-07-24T06:14:11.010000"],["2024-07-24T06:14:12.010000"],["2024-07-24T06:14:13.010000"],["2024-07-24T06:14:14.010000"],["2024-07-24T06:14:15.010000"],["2024-07-24T06:14:16.010000"],["2024-07-24T06:14:17.010000"],["2024-07-24T06:14:18.010000"],["2024-07-24T06:14:19.010000"],["2024-07-24T06:14:20.010000"],["2024-07-24T06:14:21.010000"],["2024-07-24T06:14:22.010000"],["2024-07-24T06:14:23.010000"],["2024-07-24T06:14:24.010000"],["2024-07-24T06:14:25.010000"],["2024-07-24T06:14:26.010000"],["2024-07-24T06:14:27.010000"],["2024-07-24T06:14:28.010000"],["2024-07-24T06:14:29.010000"],["2024-07-24T06:14:30.010000"],["2024-07-24T06:14:31.010000"],["2024-07-24T06:14:32.010000"],["2024-07-24T06:14:33.010000"],["2024-07-24T06:14:34.010000"],["2024-07-24T06:14:35.010000"],["2024-07-24T06:14:36.010000"],["2024-07-24T06:14:37.010000"],["2024-07-24T06:14:38.010000"],["2024-07-24T06:14:39.010000"],["2024-07-24T06:14:40.010000"],["2024-07-24T06:14:41.010000"],["2024-07-24T06:14:42.010000"],["2024-07-24T06:14:43.010000"],["2024-07-24T06:14:44.010000"],["2024-07-24T06:14:45.010000"],["2024-07-24T06:14:46.010000"],["2024-07-24T06:14:47.010000"],["2024-07-24T06:14:48.010000"],["2024-07-24T06:14:49.010000"],["2024-07-24T06:14:50.010000"],["2024-07-24T06:14:51.010000"],["2024-07-24T06:14:52.010000"],["2024-07-24T06:14:53.010000"],["2024-07-24T06:14:54.010000"],["2024-07-24T06:14:55.010000"],["2024-07-24T06:14:56.010000"],["2024-07-24T06:14:57.010000"],["2024-07-24T06:14:58.010000"],["2024-07-24T06:14:59.010000"],["2024-07-24T06:15:00.010000"],["2024-07-24T06:15:01.010000"],["2024-07-24T06:15:02.010000"],["2024-07-24T06:15:03.010000"],["2024-07-24T06:15:04.010000"],["2024-07-24T06:15:05.010000"],["2024-07-24T06:15:06.010000"],["2024-07-24T06:15:07.010000"],["2024-07-24T06:15:08.010000"],["2024-07-24T06:15:09.010000"],["2024-07-24T06:15:10.010000"],["2024-07-24T06:15:11.010000"],["2024-07-24T06:15:12.010000"],["2024-07-24T06:15:13.010000"],["2024-07-24T06:15:14.010000"],["2024-07-24T06:15:15.010000"],["2024-07-24T06:15:16.010000"],["2024-07-24T06:15:17.010000"],["2024-07-24T06:15:18.010000"],["2024-07-24T06:15:19.010000"],["2024-07-24T06:15:20.010000"],["2024-07-24T06:15:21.010000"],["2024-07-24T06:15:22.010000"],["2024-07-24T06:15:23.010000"],["2024-07-24T06:15:24.010000"],["2024-07-24T06:15:25.010000"],["2024-07-24T06:15:26.010000"],["2024-07-24T06:15:27.010000"],["2024-07-24T06:15:28.010000"],["2024-07-24T06:15:29.010000"],["2024-07-24T06:15:30.010000"],["2024-07-24T06:15:31.010000"],["2024-07-24T06:15:32.010000"],["2024-07-24T06:15:33.010000"],["2024-07-24T06:15:34.010000"],["2024-07-24T06:15:35.010000"],["2024-07-24T06:15:36.010000"],["2024-07-24T06:15:37.010000"],["2024-07-24T06:15:38.010000"],["2024-07-24T06:15:39.010000"],["2024-07-24T06:15:40.010000"],["2024-07-24T06:15:41.010000"],["2024-07-24T06:15:42.010000"],["2024-07-24T06:15:43.010000"],["2024-07-24T06:15:44.010000"],["2024-07-24T06:15:45.010000"],["2024-07-24T06:15:46.010000"],["2024-07-24T06:15:47.010000"],["2024-07-24T06:15:48.010000"],["2024-07-24T06:15:49.010000"],["2024-07-24T06:15:50.010000"],["2024-07-24T06:15:51.010000"],["2024-07-24T06:15:52.010000"],["2024-07-24T06:15:53.010000"],["2024-07-24T06:15:54.010000"],["2024-07-24T06:15:55.010000"],["2024-07-24T06:15:56.010000"],["2024-07-24T06:15:57.010000"],["2024-07-24T06:15:58.010000"],["2024-07-24T06:15:59.010000"],["2024-07-24T06:16:00.010000"],["2024-07-24T06:16:01.010000"],["2024-07-24T06:16:02.010000"],["2024-07-24T06:16:03.010000"],["2024-07-24T06:16:04.010000"],["2024-07-24T06:16:05.010000"],["2024-07-24T06:16:06.010000"],["2024-07-24T06:16:07.010000"],["2024-07-24T06:16:08.010000"],["2024-07-24T06:16:09.010000"],["2024-07-24T06:16:10.010000"],["2024-07-24T06:16:11.010000"],["2024-07-24T06:16:12.010000"],["2024-07-24T06:16:13.010000"],["2024-07-24T06:16:14.010000"],["2024-07-24T06:16:15.010000"],["2024-07-24T06:16:16.010000"],["2024-07-24T06:16:17.010000"],["2024-07-24T06:16:18.010000"],["2024-07-24T06:16:19.010000"],["2024-07-24T06:16:20.010000"],["2024-07-24T06:16:21.010000"],["2024-07-24T06:16:22.010000"],["2024-07-24T06:16:23.010000"],["2024-07-24T06:16:24.010000"],["2024-07-24T06:16:25.010000"],["2024-07-24T06:16:26.010000"],["2024-07-24T06:16:27.010000"],["2024-07-24T06:16:28.010000"],["2024-07-24T06:16:29.010000"],["2024-07-24T06:16:30.010000"],["2024-07-24T06:16:31.010000"],["2024-07-24T06:16:32.010000"],["2024-07-24T06:16:33.010000"],["2024-07-24T06:16:34.010000"],["2024-07-24T06:16:35.010000"],["2024-07-24T06:16:36.010000"],["2024-07-24T06:16:37.010000"],["2024-07-24T06:16:38.010000"],["2024-07-24T06:16:39.010000"],["2024-07-24T06:16:40.010000"],["2024-07-24T06:16:41.010000"],["2024-07-24T06:16:42.010000"],["2024-07-24T06:16:43.010000"],["2024-07-24T06:16:44.010000"],["2024-07-24T06:16:45.010000"],["2024-07-24T06:16:46.010000"],["2024-07-24T06:16:47.010000"],["2024-07-24T06:16:48.010000"],["2024-07-24T06:16:49.010000"],["2024-07-24T06:16:50.010000"],["2024-07-24T06:16:51.010000"],["2024-07-24T06:16:52.010000"],["2024-07-24T06:16:53.010000"],["2024-07-24T06:16:54.010000"],["2024-07-24T06:16:55.010000"],["2024-07-24T06:16:56.010000"],["2024-07-24T06:16:57.010000"],["2024-07-24T06:16:58.010000"],["2024-07-24T06:16:59.010000"],["2024-07-24T06:17:00.010000"],["2024-07-24T06:17:01.010000"],["2024-07-24T06:17:02.010000"],["2024-07-24T06:17:03.010000"],["2024-07-24T06:17:04.010000"],["2024-07-24T06:17:05.010000"],["2024-07-24T06:17:06.010000"],["2024-07-24T06:17:07.010000"],["2024-07-24T06:17:08.010000"],["2024-07-24T06:17:09.010000"],["2024-07-24T06:17:10.010000"],["2024-07-24T06:17:11.010000"],["2024-07-24T06:17:12.010000"],["2024-07-24T06:17:13.010000"],["2024-07-24T06:17:14.010000"],["2024-07-24T06:17:15.010000"],["2024-07-24T06:17:16.010000"],["2024-07-24T06:17:17.010000"],["2024-07-24T06:17:18.010000"],["2024-07-24T06:17:19.010000"],["2024-07-24T06:17:20.010000"],["2024-07-24T06:17:21.010000"],["2024-07-24T06:17:22.010000"],["2024-07-24T06:17:23.010000"],["2024-07-24T06:17:24.010000"],["2024-07-24T06:17:25.010000"],["2024-07-24T06:17:26.010000"],["2024-07-24T06:17:27.010000"],["2024-07-24T06:17:28.010000"],["2024-07-24T06:17:29.010000"],["2024-07-24T06:17:30.010000"],["2024-07-24T06:17:31.010000"],["2024-07-24T06:17:32.010000"],["2024-07-24T06:17:33.010000"],["2024-07-24T06:17:34.010000"],["2024-07-24T06:17:35.010000"],["2024-07-24T06:17:36.010000"],["2024-07-24T06:17:37.010000"],["2024-07-24T06:17:38.010000"],["2024-07-24T06:17:39.010000"],["2024-07-24T06:17:40.010000"],["2024-07-24T06:17:41.010000"],["2024-07-24T06:17:42.010000"],["2024-07-24T06:17:43.010000"],["2024-07-24T06:17:44.010000"],["2024-07-24T06:17:45.010000"],["2024-07-24T06:17:46.010000"],["2024-07-24T06:17:47.010000"],["2024-07-24T06:17:48.010000"],["2024-07-24T06:17:49.010000"],["2024-07-24T06:17:50.010000"],["2024-07-24T06:17:51.010000"],["2024-07-24T06:17:52.010000"],["2024-07-24T06:17:53.010000"],["2024-07-24T06:17:54.010000"],["2024-07-24T06:17:55.010000"],["2024-07-24T06:17:56.010000"],["2024-07-24T06:17:57.010000"],["2024-07-24T06:17:58.010000"],["2024-07-24T06:17:59.010000"],["2024-07-24T06:18:00.010000"],["2024-07-24T06:18:01.010000"],["2024-07-24T06:18:02.010000"],["2024-07-24T06:18:03.010000"],["2024-07-24T06:18:04.010000"],["2024-07-24T06:18:05.010000"],["2024-07-24T06:18:06.010000"],["2024-07-24T06:18:07.010000"],["2024-07-24T06:18:08.010000"],["2024-07-24T06:18:09.010000"],["2024-07-24T06:18:10.010000"],["2024-07-24T06:18:11.010000"],["2024-07-24T06:18:12.010000"],["2024-07-24T06:18:13.010000"],["2024-07-24T06:18:14.010000"],["2024-07-24T06:18:15.010000"],["2024-07-24T06:18:16.010000"],["2024-07-24T06:18:17.010000"],["2024-07-24T06:18:18.010000"],["2024-07-24T06:18:19.010000"],["2024-07-24T06:18:20.010000"],["2024-07-24T06:18:21.010000"],["2024-07-24T06:18:22.010000"],["2024-07-24T06:18:23.010000"],["2024-07-24T06:18:24.010000"],["2024-07-24T06:18:25.010000"],["2024-07-24T06:18:26.010000"],["2024-07-24T06:18:27.010000"],["2024-07-24T06:18:28.010000"],["2024-07-24T06:18:29.010000"],["2024-07-24T06:18:30.010000"],["2024-07-24T06:18:31.010000"],["2024-07-24T06:18:32.010000"],["2024-07-24T06:18:33.010000"],["2024-07-24T06:18:34.010000"],["2024-07-24T06:18:35.010000"],["2024-07-24T06:18:36.010000"],["2024-07-24T06:18:37.010000"],["2024-07-24T06:18:38.010000"],["2024-07-24T06:18:39.010000"],["2024-07-24T06:18:40.010000"],["2024-07-24T06:18:41.010000"],["2024-07-24T06:18:42.010000"],["2024-07-24T06:18:43.010000"],["2024-07-24T06:18:44.010000"],["2024-07-24T06:18:45.010000"],["2024-07-24T06:18:46.010000"],["2024-07-24T06:18:47.010000"],["2024-07-24T06:18:48.010000"],["2024-07-24T06:18:49.010000"],["2024-07-24T06:18:50.010000"],["2024-07-24T06:18:51.010000"],["2024-07-24T06:18:52.010000"],["2024-07-24T06:18:53.010000"],["2024-07-24T06:18:54.010000"],["2024-07-24T06:18:55.010000"],["2024-07-24T06:18:56.010000"],["2024-07-24T06:18:57.010000"],["2024-07-24T06:18:58.010000"],["2024-07-24T06:18:59.010000"],["2024-07-24T06:19:00.010000"],["2024-07-24T06:19:01.010000"],["2024-07-24T06:19:02.010000"],["2024-07-24T06:19:03.010000"],["2024-07-24T06:19:04.010000"],["2024-07-24T06:19:05.010000"],["2024-07-24T06:19:06.010000"],["2024-07-24T06:19:07.010000"],["2024-07-24T06:19:08.010000"],["2024-07-24T06:19:09.010000"],["2024-07-24T06:19:10.010000"],["2024-07-24T06:19:11.010000"],["2024-07-24T06:19:12.010000"],["2024-07-24T06:19:13.010000"],["2024-07-24T06:19:14.010000"],["2024-07-24T06:19:15.010000"],["2024-07-24T06:19:16.010000"],["2024-07-24T06:19:17.010000"],["2024-07-24T06:19:18.010000"],["2024-07-24T06:19:19.010000"],["2024-07-24T06:19:20.010000"],["2024-07-24T06:19:21.010000"],["2024-07-24T06:19:22.010000"],["2024-07-24T06:19:23.010000"],["2024-07-24T06:19:24.010000"],["2024-07-24T06:19:25.010000"],["2024-07-24T06:19:26.010000"],["2024-07-24T06:19:27.010000"],["2024-07-24T06:19:28.010000"],["2024-07-24T06:19:29.010000"],["2024-07-24T06:19:30.010000"],["2024-07-24T06:19:31.010000"],["2024-07-24T06:19:32.010000"],["2024-07-24T06:19:33.010000"],["2024-07-24T06:19:34.010000"],["2024-07-24T06:19:35.010000"],["2024-07-24T06:19:36.010000"],["2024-07-24T06:19:37.010000"],["2024-07-24T06:19:38.010000"],["2024-07-24T06:19:39.010000"],["2024-07-24T06:19:40.010000"],["2024-07-24T06:19:41.010000"],["2024-07-24T06:19:42.010000"],["2024-07-24T06:19:43.010000"],["2024-07-24T06:19:44.010000"],["2024-07-24T06:19:45.010000"],["2024-07-24T06:19:46.010000"],["2024-07-24T06:19:47.010000"],["2024-07-24T06:19:48.010000"],["2024-07-24T06:19:49.010000"],["2024-07-24T06:19:50.010000"],["2024-07-24T06:19:51.010000"],["2024-07-24T06:19:52.010000"],["2024-07-24T06:19:53.010000"],["2024-07-24T06:19:54.010000"],["2024-07-24T06:19:55.010000"],["2024-07-24T06:19:56.010000"],["2024-07-24T06:19:57.010000"],["2024-07-24T06:19:58.010000"],["2024-07-24T06:19:59.010000"],["2024-07-24T06:20:00.010000"],["2024-07-24T06:20:01.010000"],["2024-07-24T06:20:02.010000"],["2024-07-24T06:20:03.010000"],["2024-07-24T06:20:04.010000"],["2024-07-24T06:20:05.010000"],["2024-07-24T06:20:06.010000"],["2024-07-24T06:20:07.010000"],["2024-07-24T06:20:08.010000"],["2024-07-24T06:20:09.010000"],["2024-07-24T06:20:10.010000"],["2024-07-24T06:20:11.010000"],["2024-07-24T06:20:12.010000"],["2024-07-24T06:20:13.010000"],["2024-07-24T06:20:14.010000"],["2024-07-24T06:20:15.010000"],["2024-07-24T06:20:16.010000"],["2024-07-24T06:20:17.010000"],["2024-07-24T06:20:18.010000"],["2024-07-24T06:20:19.010000"],["2024-07-24T06:20:20.010000"],["2024-07-24T06:20:21.010000"],["2024-07-24T06:20:22.010000"],["2024-07-24T06:20:23.010000"],["2024-07-24T06:20:24.010000"],["2024-07-24T06:20:25.010000"],["2024-07-24T06:20:26.010000"],["2024-07-24T06:20:27.010000"],["2024-07-24T06:20:28.010000"],["2024-07-24T06:20:29.010000"],["2024-07-24T06:20:30.010000"],["2024-07-24T06:20:31.010000"],["2024-07-24T06:20:32.010000"],["2024-07-24T06:20:33.010000"],["2024-07-24T06:20:34.010000"],["2024-07-24T06:20:35.010000"],["2024-07-24T06:20:36.010000"],["2024-07-24T06:20:37.010000"],["2024-07-24T06:20:38.010000"],["2024-07-24T06:20:39.010000"],["2024-07-24T06:20:40.010000"],["2024-07-24T06:20:41.010000"],["2024-07-24T06:20:42.010000"],["2024-07-24T06:20:43.010000"],["2024-07-24T06:20:44.010000"],["2024-07-24T06:20:45.010000"],["2024-07-24T06:20:46.010000"],["2024-07-24T06:20:47.010000"],["2024-07-24T06:20:48.010000"],["2024-07-24T06:20:49.010000"],["2024-07-24T06:20:50.010000"],["2024-07-24T06:20:51.010000"],["2024-07-24T06:20:52.010000"],["2024-07-24T06:20:53.010000"],["2024-07-24T06:20:54.010000"],["2024-07-24T06:20:55.010000"],["2024-07-24T06:20:56.010000"],["2024-07-24T06:20:57.010000"],["2024-07-24T06:20:58.010000"],["2024-07-24T06:20:59.010000"],["2024-07-24T06:21:00.010000"],["2024-07-24T06:21:01.010000"],["2024-07-24T06:21:02.010000"],["2024-07-24T06:21:03.010000"],["2024-07-24T06:21:04.010000"],["2024-07-24T06:21:05.010000"],["2024-07-24T06:21:06.010000"],["2024-07-24T06:21:07.010000"],["2024-07-24T06:21:08.010000"],["2024-07-24T06:21:09.010000"],["2024-07-24T06:21:10.010000"],["2024-07-24T06:21:11.010000"],["2024-07-24T06:21:12.010000"],["2024-07-24T06:21:13.010000"],["2024-07-24T06:21:14.010000"],["2024-07-24T06:21:15.010000"],["2024-07-24T06:21:16.010000"],["2024-07-24T06:21:17.010000"],["2024-07-24T06:21:18.010000"],["2024-07-24T06:21:19.010000"],["2024-07-24T06:21:20.010000"],["2024-07-24T06:21:21.010000"],["2024-07-24T06:21:22.010000"],["2024-07-24T06:21:23.010000"],["2024-07-24T06:21:24.010000"],["2024-07-24T06:21:25.010000"],["2024-07-24T06:21:26.010000"],["2024-07-24T06:21:27.010000"],["2024-07-24T06:21:28.010000"],["2024-07-24T06:21:29.010000"],["2024-07-24T06:21:30.010000"],["2024-07-24T06:21:31.010000"],["2024-07-24T06:21:32.010000"],["2024-07-24T06:21:33.010000"],["2024-07-24T06:21:34.010000"],["2024-07-24T06:21:35.010000"],["2024-07-24T06:21:36.010000"],["2024-07-24T06:21:37.010000"],["2024-07-24T06:21:38.010000"],["2024-07-24T06:21:39.010000"],["2024-07-24T06:21:40.010000"],["2024-07-24T06:21:41.010000"],["2024-07-24T06:21:42.010000"],["2024-07-24T06:21:43.010000"],["2024-07-24T06:21:44.010000"],["2024-07-24T06:21:45.010000"],["2024-07-24T06:21:46.010000"],["2024-07-24T06:21:47.010000"],["2024-07-24T06:21:48.010000"],["2024-07-24T06:21:49.010000"],["2024-07-24T06:21:50.010000"],["2024-07-24T06:21:51.010000"],["2024-07-24T06:21:52.010000"],["2024-07-24T06:21:53.010000"],["2024-07-24T06:21:54.010000"],["2024-07-24T06:21:55.010000"],["2024-07-24T06:21:56.010000"],["2024-07-24T06:21:57.010000"],["2024-07-24T06:21:58.010000"],["2024-07-24T06:21:59.010000"],["2024-07-24T06:22:00.010000"],["2024-07-24T06:22:01.010000"],["2024-07-24T06:22:02.010000"],["2024-07-24T06:22:03.010000"],["2024-07-24T06:22:04.010000"],["2024-07-24T06:22:05.010000"],["2024-07-24T06:22:06.010000"],["2024-07-24T06:22:07.010000"],["2024-07-24T06:22:08.010000"],["2024-07-24T06:22:09.010000"],["2024-07-24T06:22:10.010000"],["2024-07-24T06:22:11.010000"],["2024-07-24T06:22:12.010000"],["2024-07-24T06:22:13.010000"],["2024-07-24T06:22:14.010000"],["2024-07-24T06:22:15.010000"],["2024-07-24T06:22:16.010000"],["2024-07-24T06:22:17.010000"],["2024-07-24T06:22:18.010000"],["2024-07-24T06:22:19.010000"],["2024-07-24T06:22:20.010000"],["2024-07-24T06:22:21.010000"],["2024-07-24T06:22:22.010000"],["2024-07-24T06:22:23.010000"],["2024-07-24T06:22:24.010000"],["2024-07-24T06:22:25.010000"],["2024-07-24T06:22:26.010000"],["2024-07-24T06:22:27.010000"],["2024-07-24T06:22:28.010000"],["2024-07-24T06:22:29.010000"],["2024-07-24T06:22:30.010000"],["2024-07-24T06:22:31.010000"],["2024-07-24T06:22:32.010000"],["2024-07-24T06:22:33.010000"],["2024-07-24T06:22:34.010000"],["2024-07-24T06:22:35.010000"],["2024-07-24T06:22:36.010000"],["2024-07-24T06:22:37.010000"],["2024-07-24T06:22:38.010000"],["2024-07-24T06:22:39.010000"],["2024-07-24T06:22:40.010000"],["2024-07-24T06:22:41.010000"],["2024-07-24T06:22:42.010000"],["2024-07-24T06:22:43.010000"],["2024-07-24T06:22:44.010000"],["2024-07-24T06:22:45.010000"],["2024-07-24T06:22:46.010000"],["2024-07-24T06:22:47.010000"],["2024-07-24T06:22:48.010000"],["2024-07-24T06:22:49.010000"],["2024-07-24T06:22:50.010000"],["2024-07-24T06:22:51.010000"],["2024-07-24T06:22:52.010000"],["2024-07-24T06:22:53.010000"],["2024-07-24T06:22:54.010000"],["2024-07-24T06:22:55.010000"],["2024-07-24T06:22:56.010000"],["2024-07-24T06:22:57.010000"],["2024-07-24T06:22:58.010000"],["2024-07-24T06:22:59.010000"],["2024-07-24T06:23:00.010000"],["2024-07-24T06:23:01.010000"],["2024-07-24T06:23:02.010000"],["2024-07-24T06:23:03.010000"],["2024-07-24T06:23:04.010000"],["2024-07-24T06:23:05.010000"],["2024-07-24T06:23:06.010000"],["2024-07-24T06:23:07.010000"],["2024-07-24T06:23:08.010000"],["2024-07-24T06:23:09.010000"],["2024-07-24T06:23:10.010000"],["2024-07-24T06:23:11.010000"],["2024-07-24T06:23:12.010000"],["2024-07-24T06:23:13.010000"],["2024-07-24T06:23:14.010000"],["2024-07-24T06:23:15.010000"],["2024-07-24T06:23:16.010000"],["2024-07-24T06:23:17.010000"],["2024-07-24T06:23:18.010000"],["2024-07-24T06:23:19.010000"],["2024-07-24T06:23:20.010000"],["2024-07-24T06:23:21.010000"],["2024-07-24T06:23:22.010000"],["2024-07-24T06:23:23.010000"],["2024-07-24T06:23:24.010000"],["2024-07-24T06:23:25.010000"],["2024-07-24T06:23:26.010000"],["2024-07-24T06:23:27.010000"],["2024-07-24T06:23:28.010000"],["2024-07-24T06:23:29.010000"],["2024-07-24T06:23:30.010000"],["2024-07-24T06:23:31.010000"],["2024-07-24T06:23:32.010000"],["2024-07-24T06:23:33.010000"],["2024-07-24T06:23:34.010000"],["2024-07-24T06:23:35.010000"],["2024-07-24T06:23:36.010000"],["2024-07-24T06:23:37.010000"],["2024-07-24T06:23:38.010000"],["2024-07-24T06:23:39.010000"],["2024-07-24T06:23:40.010000"],["2024-07-24T06:23:41.010000"],["2024-07-24T06:23:42.010000"],["2024-07-24T06:23:43.010000"],["2024-07-24T06:23:44.010000"],["2024-07-24T06:23:45.010000"],["2024-07-24T06:23:46.010000"],["2024-07-24T06:23:47.010000"],["2024-07-24T06:23:48.010000"],["2024-07-24T06:23:49.010000"],["2024-07-24T06:23:50.010000"],["2024-07-24T06:23:51.010000"],["2024-07-24T06:23:52.010000"],["2024-07-24T06:23:53.010000"],["2024-07-24T06:23:54.010000"],["2024-07-24T06:23:55.010000"],["2024-07-24T06:23:56.010000"],["2024-07-24T06:23:57.010000"],["2024-07-24T06:23:58.010000"],["2024-07-24T06:23:59.010000"],["2024-07-24T06:24:00.010000"],["2024-07-24T06:24:01.010000"],["2024-07-24T06:24:02.010000"],["2024-07-24T06:24:03.010000"],["2024-07-24T06:24:04.010000"],["2024-07-24T06:24:05.010000"],["2024-07-24T06:24:06.010000"],["2024-07-24T06:24:07.010000"],["2024-07-24T06:24:08.010000"],["2024-07-24T06:24:09.010000"],["2024-07-24T06:24:10.010000"],["2024-07-24T06:24:11.010000"],["2024-07-24T06:24:12.010000"],["2024-07-24T06:24:13.010000"],["2024-07-24T06:24:14.010000"],["2024-07-24T06:24:15.010000"],["2024-07-24T06:24:16.010000"],["2024-07-24T06:24:17.010000"],["2024-07-24T06:24:18.010000"],["2024-07-24T06:24:19.010000"],["2024-07-24T06:24:20.010000"],["2024-07-24T06:24:21.010000"],["2024-07-24T06:24:22.010000"],["2024-07-24T06:24:23.010000"],["2024-07-24T06:24:24.010000"],["2024-07-24T06:24:25.010000"],["2024-07-24T06:24:26.010000"],["2024-07-24T06:24:27.010000"],["2024-07-24T06:24:28.010000"],["2024-07-24T06:24:29.010000"],["2024-07-24T06:24:30.010000"],["2024-07-24T06:24:31.010000"],["2024-07-24T06:24:32.010000"],["2024-07-24T06:24:33.010000"],["2024-07-24T06:24:34.010000"],["2024-07-24T06:24:35.010000"],["2024-07-24T06:24:36.010000"],["2024-07-24T06:24:37.010000"],["2024-07-24T06:24:38.010000"],["2024-07-24T06:24:39.010000"],["2024-07-24T06:24:40.010000"],["2024-07-24T06:24:41.010000"],["2024-07-24T06:24:42.010000"],["2024-07-24T06:24:43.010000"],["2024-07-24T06:24:44.010000"],["2024-07-24T06:24:45.010000"],["2024-07-24T06:24:46.010000"],["2024-07-24T06:24:47.010000"],["2024-07-24T06:24:48.010000"],["2024-07-24T06:24:49.010000"],["2024-07-24T06:24:50.010000"],["2024-07-24T06:24:51.010000"],["2024-07-24T06:24:52.010000"],["2024-07-24T06:24:53.010000"],["2024-07-24T06:24:54.010000"],["2024-07-24T06:24:55.010000"],["2024-07-24T06:24:56.010000"],["2024-07-24T06:24:57.010000"],["2024-07-24T06:24:58.010000"],["2024-07-24T06:24:59.010000"],["2024-07-24T06:25:00.010000"],["2024-07-24T06:25:01.010000"],["2024-07-24T06:25:02.010000"],["2024-07-24T06:25:03.010000"],["2024-07-24T06:25:04.010000"],["2024-07-24T06:25:05.010000"],["2024-07-24T06:25:06.010000"],["2024-07-24T06:25:07.010000"],["2024-07-24T06:25:08.010000"],["2024-07-24T06:25:09.010000"],["2024-07-24T06:25:10.010000"],["2024-07-24T06:25:11.010000"],["2024-07-24T06:25:12.010000"],["2024-07-24T06:25:13.010000"],["2024-07-24T06:25:14.010000"],["2024-07-24T06:25:15.010000"],["2024-07-24T06:25:16.010000"],["2024-07-24T06:25:17.010000"],["2024-07-24T06:25:18.010000"],["2024-07-24T06:25:19.010000"],["2024-07-24T06:25:20.010000"],["2024-07-24T06:25:21.010000"],["2024-07-24T06:25:22.010000"],["2024-07-24T06:25:23.010000"],["2024-07-24T06:25:24.010000"],["2024-07-24T06:25:25.010000"],["2024-07-24T06:25:26.010000"],["2024-07-24T06:25:27.010000"],["2024-07-24T06:25:28.010000"],["2024-07-24T06:25:29.010000"],["2024-07-24T06:25:30.010000"],["2024-07-24T06:25:31.010000"],["2024-07-24T06:25:32.010000"],["2024-07-24T06:25:33.010000"],["2024-07-24T06:25:34.010000"],["2024-07-24T06:25:35.010000"],["2024-07-24T06:25:36.010000"],["2024-07-24T06:25:37.010000"],["2024-07-24T06:25:38.010000"],["2024-07-24T06:25:39.010000"],["2024-07-24T06:25:40.010000"],["2024-07-24T06:25:41.010000"],["2024-07-24T06:25:42.010000"],["2024-07-24T06:25:43.010000"],["2024-07-24T06:25:44.010000"],["2024-07-24T06:25:45.010000"],["2024-07-24T06:25:46.010000"],["2024-07-24T06:25:47.010000"],["2024-07-24T06:25:48.010000"],["2024-07-24T06:25:49.010000"],["2024-07-24T06:25:50.010000"],["2024-07-24T06:25:51.010000"],["2024-07-24T06:25:52.010000"],["2024-07-24T06:25:53.010000"],["2024-07-24T06:25:54.010000"],["2024-07-24T06:25:55.010000"],["2024-07-24T06:25:56.010000"],["2024-07-24T06:25:57.010000"],["2024-07-24T06:25:58.010000"],["2024-07-24T06:25:59.010000"],["2024-07-24T06:26:00.010000"],["2024-07-24T06:26:01.010000"],["2024-07-24T06:26:02.010000"],["2024-07-24T06:26:03.010000"],["2024-07-24T06:26:04.010000"],["2024-07-24T06:26:05.010000"],["2024-07-24T06:26:06.010000"],["2024-07-24T06:26:07.010000"],["2024-07-24T06:26:08.010000"],["2024-07-24T06:26:09.010000"],["2024-07-24T06:26:10.010000"],["2024-07-24T06:26:11.010000"],["2024-07-24T06:26:12.010000"],["2024-07-24T06:26:13.010000"],["2024-07-24T06:26:14.010000"],["2024-07-24T06:26:15.010000"],["2024-07-24T06:26:16.010000"],["2024-07-24T06:26:17.010000"],["2024-07-24T06:26:18.010000"],["2024-07-24T06:26:19.010000"],["2024-07-24T06:26:20.010000"],["2024-07-24T06:26:21.010000"],["2024-07-24T06:26:22.010000"],["2024-07-24T06:26:23.010000"],["2024-07-24T06:26:24.010000"],["2024-07-24T06:26:25.010000"],["2024-07-24T06:26:26.010000"],["2024-07-24T06:26:27.010000"],["2024-07-24T06:26:28.010000"],["2024-07-24T06:26:29.010000"],["2024-07-24T06:26:30.010000"],["2024-07-24T06:26:31.010000"],["2024-07-24T06:26:32.010000"],["2024-07-24T06:26:33.010000"],["2024-07-24T06:26:34.010000"],["2024-07-24T06:26:35.010000"],["2024-07-24T06:26:36.010000"],["2024-07-24T06:26:37.010000"],["2024-07-24T06:26:38.010000"],["2024-07-24T06:26:39.010000"],["2024-07-24T06:26:40.010000"],["2024-07-24T06:26:41.010000"],["2024-07-24T06:26:42.010000"],["2024-07-24T06:26:43.010000"],["2024-07-24T06:26:44.010000"],["2024-07-24T06:26:45.010000"],["2024-07-24T06:26:46.010000"],["2024-07-24T06:26:47.010000"],["2024-07-24T06:26:48.010000"],["2024-07-24T06:26:49.010000"],["2024-07-24T06:26:50.010000"],["2024-07-24T06:26:51.010000"],["2024-07-24T06:26:52.010000"],["2024-07-24T06:26:53.010000"],["2024-07-24T06:26:54.010000"],["2024-07-24T06:26:55.010000"],["2024-07-24T06:26:56.010000"],["2024-07-24T06:26:57.010000"],["2024-07-24T06:26:58.010000"],["2024-07-24T06:26:59.010000"],["2024-07-24T06:27:00.010000"],["2024-07-24T06:27:01.010000"],["2024-07-24T06:27:02.010000"],["2024-07-24T06:27:03.010000"],["2024-07-24T06:27:04.010000"],["2024-07-24T06:27:05.010000"],["2024-07-24T06:27:06.010000"],["2024-07-24T06:27:07.010000"],["2024-07-24T06:27:08.010000"],["2024-07-24T06:27:09.010000"],["2024-07-24T06:27:10.010000"],["2024-07-24T06:27:11.010000"],["2024-07-24T06:27:12.010000"],["2024-07-24T06:27:13.010000"],["2024-07-24T06:27:14.010000"],["2024-07-24T06:27:15.010000"],["2024-07-24T06:27:16.010000"],["2024-07-24T06:27:17.010000"],["2024-07-24T06:27:18.010000"],["2024-07-24T06:27:19.010000"],["2024-07-24T06:27:20.010000"],["2024-07-24T06:27:21.010000"],["2024-07-24T06:27:22.010000"],["2024-07-24T06:27:23.010000"],["2024-07-24T06:27:24.010000"],["2024-07-24T06:27:25.010000"],["2024-07-24T06:27:26.010000"],["2024-07-24T06:27:27.010000"],["2024-07-24T06:27:28.010000"],["2024-07-24T06:27:29.010000"],["2024-07-24T06:27:30.010000"],["2024-07-24T06:27:31.010000"],["2024-07-24T06:27:32.010000"],["2024-07-24T06:27:33.010000"],["2024-07-24T06:27:34.010000"],["2024-07-24T06:27:35.010000"],["2024-07-24T06:27:36.010000"],["2024-07-24T06:27:37.010000"],["2024-07-24T06:27:38.010000"],["2024-07-24T06:27:39.010000"],["2024-07-24T06:27:40.010000"],["2024-07-24T06:27:41.010000"],["2024-07-24T06:27:42.010000"],["2024-07-24T06:27:43.010000"],["2024-07-24T06:27:44.010000"],["2024-07-24T06:27:45.010000"],["2024-07-24T06:27:46.010000"],["2024-07-24T06:27:47.010000"],["2024-07-24T06:27:48.010000"],["2024-07-24T06:27:49.010000"],["2024-07-24T06:27:50.010000"],["2024-07-24T06:27:51.010000"],["2024-07-24T06:27:52.010000"],["2024-07-24T06:27:53.010000"],["2024-07-24T06:27:54.010000"],["2024-07-24T06:27:55.010000"],["2024-07-24T06:27:56.010000"],["2024-07-24T06:27:57.010000"],["2024-07-24T06:27:58.010000"],["2024-07-24T06:27:59.010000"],["2024-07-24T06:28:00.010000"],["2024-07-24T06:28:01.010000"],["2024-07-24T06:28:02.010000"],["2024-07-24T06:28:03.010000"],["2024-07-24T06:28:04.010000"],["2024-07-24T06:28:05.010000"],["2024-07-24T06:28:06.010000"],["2024-07-24T06:28:07.010000"],["2024-07-24T06:28:08.010000"],["2024-07-24T06:28:09.010000"],["2024-07-24T06:28:10.010000"],["2024-07-24T06:28:11.010000"],["2024-07-24T06:28:12.010000"],["2024-07-24T06:28:13.010000"],["2024-07-24T06:28:14.010000"],["2024-07-24T06:28:15.010000"],["2024-07-24T06:28:16.010000"],["2024-07-24T06:28:17.010000"],["2024-07-24T06:28:18.010000"],["2024-07-24T06:28:19.010000"],["2024-07-24T06:28:20.010000"],["2024-07-24T06:28:21.010000"],["2024-07-24T06:28:22.010000"],["2024-07-24T06:28:23.010000"],["2024-07-24T06:28:24.010000"],["2024-07-24T06:28:25.010000"],["2024-07-24T06:28:26.010000"],["2024-07-24T06:28:27.010000"],["2024-07-24T06:28:28.010000"],["2024-07-24T06:28:29.010000"],["2024-07-24T06:28:30.010000"],["2024-07-24T06:28:31.010000"],["2024-07-24T06:28:32.010000"],["2024-07-24T06:28:33.010000"],["2024-07-24T06:28:34.010000"],["2024-07-24T06:28:35.010000"],["2024-07-24T06:28:36.010000"],["2024-07-24T06:28:37.010000"],["2024-07-24T06:28:38.010000"],["2024-07-24T06:28:39.010000"],["2024-07-24T06:28:40.010000"],["2024-07-24T06:28:41.010000"],["2024-07-24T06:28:42.010000"],["2024-07-24T06:28:43.010000"],["2024-07-24T06:28:44.010000"],["2024-07-24T06:28:45.010000"],["2024-07-24T06:28:46.010000"],["2024-07-24T06:28:47.010000"],["2024-07-24T06:28:48.010000"],["2024-07-24T06:28:49.010000"],["2024-07-24T06:28:50.010000"],["2024-07-24T06:28:51.010000"],["2024-07-24T06:28:52.010000"],["2024-07-24T06:28:53.010000"],["2024-07-24T06:28:54.010000"],["2024-07-24T06:28:55.010000"],["2024-07-24T06:28:56.010000"],["2024-07-24T06:28:57.010000"],["2024-07-24T06:28:58.010000"],["2024-07-24T06:28:59.010000"],["2024-07-24T06:29:00.010000"],["2024-07-24T06:29:01.010000"],["2024-07-24T06:29:02.010000"],["2024-07-24T06:29:03.010000"],["2024-07-24T06:29:04.010000"],["2024-07-24T06:29:05.010000"],["2024-07-24T06:29:06.010000"],["2024-07-24T06:29:07.010000"],["2024-07-24T06:29:08.010000"],["2024-07-24T06:29:09.010000"],["2024-07-24T06:29:10.010000"],["2024-07-24T06:29:11.010000"],["2024-07-24T06:29:12.010000"],["2024-07-24T06:29:13.010000"],["2024-07-24T06:29:14.010000"],["2024-07-24T06:29:15.010000"],["2024-07-24T06:29:16.010000"],["2024-07-24T06:29:17.010000"],["2024-07-24T06:29:18.010000"],["2024-07-24T06:29:19.010000"],["2024-07-24T06:29:20.010000"],["2024-07-24T06:29:21.010000"],["2024-07-24T06:29:22.010000"],["2024-07-24T06:29:23.010000"],["2024-07-24T06:29:24.010000"],["2024-07-24T06:29:25.010000"],["2024-07-24T06:29:26.010000"],["2024-07-24T06:29:27.010000"],["2024-07-24T06:29:28.010000"],["2024-07-24T06:29:29.010000"],["2024-07-24T06:29:30.010000"],["2024-07-24T06:29:31.010000"],["2024-07-24T06:29:32.010000"],["2024-07-24T06:29:33.010000"],["2024-07-24T06:29:34.010000"],["2024-07-24T06:29:35.010000"],["2024-07-24T06:29:36.010000"],["2024-07-24T06:29:37.010000"],["2024-07-24T06:29:38.010000"],["2024-07-24T06:29:39.010000"],["2024-07-24T06:29:40.010000"],["2024-07-24T06:29:41.010000"],["2024-07-24T06:29:42.010000"],["2024-07-24T06:29:43.010000"],["2024-07-24T06:29:44.010000"],["2024-07-24T06:29:45.010000"],["2024-07-24T06:29:46.010000"],["2024-07-24T06:29:47.010000"],["2024-07-24T06:29:48.010000"],["2024-07-24T06:29:49.010000"],["2024-07-24T06:29:50.010000"],["2024-07-24T06:29:51.010000"],["2024-07-24T06:29:52.010000"],["2024-07-24T06:29:53.010000"],["2024-07-24T06:29:54.010000"],["2024-07-24T06:29:55.010000"],["2024-07-24T06:29:56.010000"],["2024-07-24T06:29:57.010000"],["2024-07-24T06:29:58.010000"],["2024-07-24T06:29:59.010000"],["2024-07-24T06:30:00.010000"],["2024-07-24T06:30:01.010000"],["2024-07-24T06:30:02.010000"],["2024-07-24T06:30:03.010000"],["2024-07-24T06:30:04.010000"],["2024-07-24T06:30:05.010000"],["2024-07-24T06:30:06.010000"],["2024-07-24T06:30:07.010000"],["2024-07-24T06:30:08.010000"],["2024-07-24T06:30:09.010000"],["2024-07-24T06:30:10.010000"],["2024-07-24T06:30:11.010000"],["2024-07-24T06:30:12.010000"],["2024-07-24T06:30:13.010000"],["2024-07-24T06:30:14.010000"],["2024-07-24T06:30:15.010000"],["2024-07-24T06:30:16.010000"],["2024-07-24T06:30:17.010000"],["2024-07-24T06:30:18.010000"],["2024-07-24T06:30:19.010000"],["2024-07-24T06:30:20.010000"],["2024-07-24T06:30:21.010000"],["2024-07-24T06:30:22.010000"],["2024-07-24T06:30:23.010000"],["2024-07-24T06:30:24.010000"],["2024-07-24T06:30:25.010000"],["2024-07-24T06:30:26.010000"],["2024-07-24T06:30:27.010000"],["2024-07-24T06:30:28.010000"],["2024-07-24T06:30:29.010000"],["2024-07-24T06:30:30.010000"],["2024-07-24T06:30:31.010000"],["2024-07-24T06:30:32.010000"],["2024-07-24T06:30:33.010000"],["2024-07-24T06:30:34.010000"],["2024-07-24T06:30:35.010000"],["2024-07-24T06:30:36.010000"],["2024-07-24T06:30:37.010000"],["2024-07-24T06:30:38.010000"],["2024-07-24T06:30:39.010000"],["2024-07-24T06:30:40.010000"],["2024-07-24T06:30:41.010000"],["2024-07-24T06:30:42.010000"],["2024-07-24T06:30:43.010000"],["2024-07-24T06:30:44.010000"],["2024-07-24T06:30:45.010000"],["2024-07-24T06:30:46.010000"],["2024-07-24T06:30:47.010000"],["2024-07-24T06:30:48.010000"],["2024-07-24T06:30:49.010000"],["2024-07-24T06:30:50.010000"],["2024-07-24T06:30:51.010000"],["2024-07-24T06:30:52.010000"],["2024-07-24T06:30:53.010000"],["2024-07-24T06:30:54.010000"],["2024-07-24T06:30:55.010000"],["2024-07-24T06:30:56.010000"],["2024-07-24T06:30:57.010000"],["2024-07-24T06:30:58.010000"],["2024-07-24T06:30:59.010000"],["2024-07-24T06:31:00.010000"],["2024-07-24T06:31:01.010000"],["2024-07-24T06:31:02.010000"],["2024-07-24T06:31:03.010000"],["2024-07-24T06:31:04.010000"],["2024-07-24T06:31:05.010000"],["2024-07-24T06:31:06.010000"],["2024-07-24T06:31:07.010000"],["2024-07-24T06:31:08.010000"],["2024-07-24T06:31:09.010000"],["2024-07-24T06:31:10.010000"],["2024-07-24T06:31:11.010000"],["2024-07-24T06:31:12.010000"],["2024-07-24T06:31:13.010000"],["2024-07-24T06:31:14.010000"],["2024-07-24T06:31:15.010000"],["2024-07-24T06:31:16.010000"],["2024-07-24T06:31:17.010000"],["2024-07-24T06:31:18.010000"],["2024-07-24T06:31:19.010000"],["2024-07-24T06:31:20.010000"],["2024-07-24T06:31:21.010000"],["2024-07-24T06:31:22.010000"],["2024-07-24T06:31:23.010000"],["2024-07-24T06:31:24.010000"],["2024-07-24T06:31:25.010000"],["2024-07-24T06:31:26.010000"],["2024-07-24T06:31:27.010000"],["2024-07-24T06:31:28.010000"],["2024-07-24T06:31:29.010000"],["2024-07-24T06:31:30.010000"],["2024-07-24T06:31:31.010000"],["2024-07-24T06:31:32.010000"],["2024-07-24T06:31:33.010000"],["2024-07-24T06:31:34.010000"],["2024-07-24T06:31:35.010000"],["2024-07-24T06:31:36.010000"],["2024-07-24T06:31:37.010000"],["2024-07-24T06:31:38.010000"],["2024-07-24T06:31:39.010000"],["2024-07-24T06:31:40.010000"],["2024-07-24T06:31:41.010000"],["2024-07-24T06:31:42.010000"],["2024-07-24T06:31:43.010000"],["2024-07-24T06:31:44.010000"],["2024-07-24T06:31:45.010000"],["2024-07-24T06:31:46.010000"],["2024-07-24T06:31:47.010000"],["2024-07-24T06:31:48.010000"],["2024-07-24T06:31:49.010000"],["2024-07-24T06:31:50.010000"],["2024-07-24T06:31:51.010000"],["2024-07-24T06:31:52.010000"],["2024-07-24T06:31:53.010000"],["2024-07-24T06:31:54.010000"],["2024-07-24T06:31:55.010000"],["2024-07-24T06:31:56.010000"],["2024-07-24T06:31:57.010000"],["2024-07-24T06:31:58.010000"],["2024-07-24T06:31:59.010000"],["2024-07-24T06:32:00.010000"],["2024-07-24T06:32:01.010000"],["2024-07-24T06:32:02.010000"],["2024-07-24T06:32:03.010000"],["2024-07-24T06:32:04.010000"],["2024-07-24T06:32:05.010000"],["2024-07-24T06:32:06.010000"],["2024-07-24T06:32:07.010000"],["2024-07-24T06:32:08.010000"],["2024-07-24T06:32:09.010000"],["2024-07-24T06:32:10.010000"],["2024-07-24T06:32:11.010000"],["2024-07-24T06:32:12.010000"],["2024-07-24T06:32:13.010000"],["2024-07-24T06:32:14.010000"],["2024-07-24T06:32:15.010000"],["2024-07-24T06:32:16.010000"],["2024-07-24T06:32:17.010000"],["2024-07-24T06:32:18.010000"],["2024-07-24T06:32:19.010000"],["2024-07-24T06:32:20.010000"],["2024-07-24T06:32:21.010000"],["2024-07-24T06:32:22.010000"],["2024-07-24T06:32:23.010000"],["2024-07-24T06:32:24.010000"],["2024-07-24T06:32:25.010000"],["2024-07-24T06:32:26.010000"],["2024-07-24T06:32:27.010000"],["2024-07-24T06:32:28.010000"],["2024-07-24T06:32:29.010000"],["2024-07-24T06:32:30.010000"],["2024-07-24T06:32:31.010000"],["2024-07-24T06:32:32.010000"],["2024-07-24T06:32:33.010000"],["2024-07-24T06:32:34.010000"],["2024-07-24T06:32:35.010000"],["2024-07-24T06:32:36.010000"],["2024-07-24T06:32:37.010000"],["2024-07-24T06:32:38.010000"],["2024-07-24T06:32:39.010000"],["2024-07-24T06:32:40.010000"],["2024-07-24T06:32:41.010000"],["2024-07-24T06:32:42.010000"],["2024-07-24T06:32:43.010000"],["2024-07-24T06:32:44.010000"],["2024-07-24T06:32:45.010000"],["2024-07-24T06:32:46.010000"],["2024-07-24T06:32:47.010000"],["2024-07-24T06:32:48.010000"],["2024-07-24T06:32:49.010000"],["2024-07-24T06:32:50.010000"],["2024-07-24T06:32:51.010000"],["2024-07-24T06:32:52.010000"],["2024-07-24T06:32:53.010000"],["2024-07-24T06:32:54.010000"],["2024-07-24T06:32:55.010000"],["2024-07-24T06:32:56.010000"],["2024-07-24T06:32:57.010000"],["2024-07-24T06:32:58.010000"],["2024-07-24T06:32:59.010000"],["2024-07-24T06:33:00.010000"],["2024-07-24T06:33:01.010000"],["2024-07-24T06:33:02.010000"],["2024-07-24T06:33:03.010000"],["2024-07-24T06:33:04.010000"],["2024-07-24T06:33:05.010000"],["2024-07-24T06:33:06.010000"],["2024-07-24T06:33:07.010000"],["2024-07-24T06:33:08.010000"],["2024-07-24T06:33:09.010000"],["2024-07-24T06:33:10.010000"],["2024-07-24T06:33:11.010000"],["2024-07-24T06:33:12.010000"],["2024-07-24T06:33:13.010000"],["2024-07-24T06:33:14.010000"],["2024-07-24T06:33:15.010000"],["2024-07-24T06:33:16.010000"],["2024-07-24T06:33:17.010000"],["2024-07-24T06:33:18.010000"],["2024-07-24T06:33:19.010000"],["2024-07-24T06:33:20.010000"],["2024-07-24T06:33:21.010000"],["2024-07-24T06:33:22.010000"],["2024-07-24T06:33:23.010000"],["2024-07-24T06:33:24.010000"],["2024-07-24T06:33:25.010000"],["2024-07-24T06:33:26.010000"],["2024-07-24T06:33:27.010000"],["2024-07-24T06:33:28.010000"],["2024-07-24T06:33:29.010000"],["2024-07-24T06:33:30.010000"],["2024-07-24T06:33:31.010000"],["2024-07-24T06:33:32.010000"],["2024-07-24T06:33:33.010000"],["2024-07-24T06:33:34.010000"],["2024-07-24T06:33:35.010000"],["2024-07-24T06:33:36.010000"],["2024-07-24T06:33:37.010000"],["2024-07-24T06:33:38.010000"],["2024-07-24T06:33:39.010000"],["2024-07-24T06:33:40.010000"],["2024-07-24T06:33:41.010000"],["2024-07-24T06:33:42.010000"],["2024-07-24T06:33:43.010000"],["2024-07-24T06:33:44.010000"],["2024-07-24T06:33:45.010000"],["2024-07-24T06:33:46.010000"],["2024-07-24T06:33:47.010000"],["2024-07-24T06:33:48.010000"],["2024-07-24T06:33:49.010000"],["2024-07-24T06:33:50.010000"],["2024-07-24T06:33:51.010000"],["2024-07-24T06:33:52.010000"],["2024-07-24T06:33:53.010000"],["2024-07-24T06:33:54.010000"],["2024-07-24T06:33:55.010000"],["2024-07-24T06:33:56.010000"],["2024-07-24T06:33:57.010000"],["2024-07-24T06:33:58.010000"],["2024-07-24T06:33:59.010000"],["2024-07-24T06:34:00.010000"],["2024-07-24T06:34:01.010000"],["2024-07-24T06:34:02.010000"],["2024-07-24T06:34:03.010000"],["2024-07-24T06:34:04.010000"],["2024-07-24T06:34:05.010000"],["2024-07-24T06:34:06.010000"],["2024-07-24T06:34:07.010000"],["2024-07-24T06:34:08.010000"],["2024-07-24T06:34:09.010000"],["2024-07-24T06:34:10.010000"],["2024-07-24T06:34:11.010000"],["2024-07-24T06:34:12.010000"],["2024-07-24T06:34:13.010000"],["2024-07-24T06:34:14.010000"],["2024-07-24T06:34:15.010000"],["2024-07-24T06:34:16.010000"],["2024-07-24T06:34:17.010000"],["2024-07-24T06:34:18.010000"],["2024-07-24T06:34:19.010000"],["2024-07-24T06:34:20.010000"],["2024-07-24T06:34:21.010000"],["2024-07-24T06:34:22.010000"],["2024-07-24T06:34:23.010000"],["2024-07-24T06:34:24.010000"],["2024-07-24T06:34:25.010000"],["2024-07-24T06:34:26.010000"],["2024-07-24T06:34:27.010000"],["2024-07-24T06:34:28.010000"],["2024-07-24T06:34:29.010000"],["2024-07-24T06:34:30.010000"],["2024-07-24T06:34:31.010000"],["2024-07-24T06:34:32.010000"],["2024-07-24T06:34:33.010000"],["2024-07-24T06:34:34.010000"],["2024-07-24T06:34:35.010000"],["2024-07-24T06:34:36.010000"],["2024-07-24T06:34:37.010000"],["2024-07-24T06:34:38.010000"],["2024-07-24T06:34:39.010000"],["2024-07-24T06:34:40.010000"],["2024-07-24T06:34:41.010000"],["2024-07-24T06:34:42.010000"],["2024-07-24T06:34:43.010000"],["2024-07-24T06:34:44.010000"],["2024-07-24T06:34:45.010000"],["2024-07-24T06:34:46.010000"],["2024-07-24T06:34:47.010000"],["2024-07-24T06:34:48.010000"],["2024-07-24T06:34:49.010000"],["2024-07-24T06:34:50.010000"],["2024-07-24T06:34:51.010000"],["2024-07-24T06:34:52.010000"],["2024-07-24T06:34:53.010000"],["2024-07-24T06:34:54.010000"],["2024-07-24T06:34:55.010000"],["2024-07-24T06:34:56.010000"],["2024-07-24T06:34:57.010000"],["2024-07-24T06:34:58.010000"],["2024-07-24T06:34:59.010000"],["2024-07-24T06:35:00.010000"],["2024-07-24T06:35:01.010000"],["2024-07-24T06:35:02.010000"],["2024-07-24T06:35:03.010000"],["2024-07-24T06:35:04.010000"],["2024-07-24T06:35:05.010000"],["2024-07-24T06:35:06.010000"],["2024-07-24T06:35:07.010000"],["2024-07-24T06:35:08.010000"],["2024-07-24T06:35:09.010000"],["2024-07-24T06:35:10.010000"],["2024-07-24T06:35:11.010000"],["2024-07-24T06:35:12.010000"],["2024-07-24T06:35:13.010000"],["2024-07-24T06:35:14.010000"],["2024-07-24T06:35:15.010000"],["2024-07-24T06:35:16.010000"],["2024-07-24T06:35:17.010000"],["2024-07-24T06:35:18.010000"],["2024-07-24T06:35:19.010000"],["2024-07-24T06:35:20.010000"],["2024-07-24T06:35:21.010000"],["2024-07-24T06:35:22.010000"],["2024-07-24T06:35:23.010000"],["2024-07-24T06:35:24.010000"],["2024-07-24T06:35:25.010000"],["2024-07-24T06:35:26.010000"],["2024-07-24T06:35:27.010000"],["2024-07-24T06:35:28.010000"],["2024-07-24T06:35:29.010000"],["2024-07-24T06:35:30.010000"],["2024-07-24T06:35:31.010000"],["2024-07-24T06:35:32.010000"],["2024-07-24T06:35:33.010000"],["2024-07-24T06:35:34.010000"],["2024-07-24T06:35:35.010000"],["2024-07-24T06:35:36.010000"],["2024-07-24T06:35:37.010000"],["2024-07-24T06:35:38.010000"],["2024-07-24T06:35:39.010000"],["2024-07-24T06:35:40.010000"],["2024-07-24T06:35:41.010000"],["2024-07-24T06:35:42.010000"],["2024-07-24T06:35:43.010000"],["2024-07-24T06:35:44.010000"],["2024-07-24T06:35:45.010000"],["2024-07-24T06:35:46.010000"],["2024-07-24T06:35:47.010000"],["2024-07-24T06:35:48.010000"],["2024-07-24T06:35:49.010000"],["2024-07-24T06:35:50.010000"],["2024-07-24T06:35:51.010000"],["2024-07-24T06:35:52.010000"],["2024-07-24T06:35:53.010000"],["2024-07-24T06:35:54.010000"],["2024-07-24T06:35:55.010000"],["2024-07-24T06:35:56.010000"],["2024-07-24T06:35:57.010000"],["2024-07-24T06:35:58.010000"],["2024-07-24T06:35:59.010000"],["2024-07-24T06:36:00.010000"],["2024-07-24T06:36:01.010000"],["2024-07-24T06:36:02.010000"],["2024-07-24T06:36:03.010000"],["2024-07-24T06:36:04.010000"],["2024-07-24T06:36:05.010000"],["2024-07-24T06:36:06.010000"],["2024-07-24T06:36:07.010000"],["2024-07-24T06:36:08.010000"],["2024-07-24T06:36:09.010000"],["2024-07-24T06:36:10.010000"],["2024-07-24T06:36:11.010000"],["2024-07-24T06:36:12.010000"],["2024-07-24T06:36:13.010000"],["2024-07-24T06:36:14.010000"],["2024-07-24T06:36:15.010000"],["2024-07-24T06:36:16.010000"],["2024-07-24T06:36:17.010000"],["2024-07-24T06:36:18.010000"],["2024-07-24T06:36:19.010000"],["2024-07-24T06:36:20.010000"],["2024-07-24T06:36:21.010000"],["2024-07-24T06:36:22.010000"],["2024-07-24T06:36:23.010000"],["2024-07-24T06:36:24.010000"],["2024-07-24T06:36:25.010000"],["2024-07-24T06:36:26.010000"],["2024-07-24T06:36:27.010000"],["2024-07-24T06:36:28.010000"],["2024-07-24T06:36:29.010000"],["2024-07-24T06:36:30.010000"],["2024-07-24T06:36:31.010000"],["2024-07-24T06:36:32.010000"],["2024-07-24T06:36:33.010000"],["2024-07-24T06:36:34.010000"],["2024-07-24T06:36:35.010000"],["2024-07-24T06:36:36.010000"],["2024-07-24T06:36:37.010000"],["2024-07-24T06:36:38.010000"],["2024-07-24T06:36:39.010000"],["2024-07-24T06:36:40.010000"],["2024-07-24T06:36:41.010000"],["2024-07-24T06:36:42.010000"],["2024-07-24T06:36:43.010000"],["2024-07-24T06:36:44.010000"],["2024-07-24T06:36:45.010000"],["2024-07-24T06:36:46.010000"],["2024-07-24T06:36:47.010000"],["2024-07-24T06:36:48.010000"],["2024-07-24T06:36:49.010000"],["2024-07-24T06:36:50.010000"],["2024-07-24T06:36:51.010000"],["2024-07-24T06:36:52.010000"],["2024-07-24T06:36:53.010000"],["2024-07-24T06:36:54.010000"],["2024-07-24T06:36:55.010000"],["2024-07-24T06:36:56.010000"],["2024-07-24T06:36:57.010000"],["2024-07-24T06:36:58.010000"],["2024-07-24T06:36:59.010000"],["2024-07-24T06:37:00.010000"],["2024-07-24T06:37:01.010000"],["2024-07-24T06:37:02.010000"],["2024-07-24T06:37:03.010000"],["2024-07-24T06:37:04.010000"],["2024-07-24T06:37:05.010000"],["2024-07-24T06:37:06.010000"],["2024-07-24T06:37:07.010000"],["2024-07-24T06:37:08.010000"],["2024-07-24T06:37:09.010000"],["2024-07-24T06:37:10.010000"],["2024-07-24T06:37:11.010000"],["2024-07-24T06:37:12.010000"],["2024-07-24T06:37:13.010000"],["2024-07-24T06:37:14.010000"],["2024-07-24T06:37:15.010000"],["2024-07-24T06:37:16.010000"],["2024-07-24T06:37:17.010000"],["2024-07-24T06:37:18.010000"],["2024-07-24T06:37:19.010000"],["2024-07-24T06:37:20.010000"],["2024-07-24T06:37:21.010000"],["2024-07-24T06:37:22.010000"],["2024-07-24T06:37:23.010000"],["2024-07-24T06:37:24.010000"],["2024-07-24T06:37:25.010000"],["2024-07-24T06:37:26.010000"],["2024-07-24T06:37:27.010000"],["2024-07-24T06:37:28.010000"],["2024-07-24T06:37:29.010000"],["2024-07-24T06:37:30.010000"],["2024-07-24T06:37:31.010000"],["2024-07-24T06:37:32.010000"],["2024-07-24T06:37:33.010000"],["2024-07-24T06:37:34.010000"],["2024-07-24T06:37:35.010000"],["2024-07-24T06:37:36.010000"],["2024-07-24T06:37:37.010000"],["2024-07-24T06:37:38.010000"],["2024-07-24T06:37:39.010000"],["2024-07-24T06:37:40.010000"],["2024-07-24T06:37:41.010000"],["2024-07-24T06:37:42.010000"],["2024-07-24T06:37:43.010000"],["2024-07-24T06:37:44.010000"],["2024-07-24T06:37:45.010000"],["2024-07-24T06:37:46.010000"],["2024-07-24T06:37:47.010000"],["2024-07-24T06:37:48.010000"],["2024-07-24T06:37:49.010000"],["2024-07-24T06:37:50.010000"],["2024-07-24T06:37:51.010000"],["2024-07-24T06:37:52.010000"],["2024-07-24T06:37:53.010000"],["2024-07-24T06:37:54.010000"],["2024-07-24T06:37:55.010000"],["2024-07-24T06:37:56.010000"],["2024-07-24T06:37:57.010000"],["2024-07-24T06:37:58.010000"],["2024-07-24T06:37:59.010000"],["2024-07-24T06:38:00.010000"],["2024-07-24T06:38:01.010000"],["2024-07-24T06:38:02.010000"],["2024-07-24T06:38:03.010000"],["2024-07-24T06:38:04.010000"],["2024-07-24T06:38:05.010000"],["2024-07-24T06:38:06.010000"],["2024-07-24T06:38:07.010000"],["2024-07-24T06:38:08.010000"],["2024-07-24T06:38:09.010000"],["2024-07-24T06:38:10.010000"],["2024-07-24T06:38:11.010000"],["2024-07-24T06:38:12.010000"],["2024-07-24T06:38:13.010000"],["2024-07-24T06:38:14.010000"],["2024-07-24T06:38:15.010000"],["2024-07-24T06:38:16.010000"],["2024-07-24T06:38:17.010000"],["2024-07-24T06:38:18.010000"],["2024-07-24T06:38:19.010000"],["2024-07-24T06:38:20.010000"],["2024-07-24T06:38:21.010000"],["2024-07-24T06:38:22.010000"],["2024-07-24T06:38:23.010000"],["2024-07-24T06:38:24.010000"],["2024-07-24T06:38:25.010000"],["2024-07-24T06:38:26.010000"],["2024-07-24T06:38:27.010000"],["2024-07-24T06:38:28.010000"],["2024-07-24T06:38:29.010000"],["2024-07-24T06:38:30.010000"],["2024-07-24T06:38:31.010000"],["2024-07-24T06:38:32.010000"],["2024-07-24T06:38:33.010000"],["2024-07-24T06:38:34.010000"],["2024-07-24T06:38:35.010000"],["2024-07-24T06:38:36.010000"],["2024-07-24T06:38:37.010000"],["2024-07-24T06:38:38.010000"],["2024-07-24T06:38:39.010000"],["2024-07-24T06:38:40.010000"],["2024-07-24T06:38:41.010000"],["2024-07-24T06:38:42.010000"],["2024-07-24T06:38:43.010000"],["2024-07-24T06:38:44.010000"],["2024-07-24T06:38:45.010000"],["2024-07-24T06:38:46.010000"],["2024-07-24T06:38:47.010000"],["2024-07-24T06:38:48.010000"],["2024-07-24T06:38:49.010000"],["2024-07-24T06:38:50.010000"],["2024-07-24T06:38:51.010000"],["2024-07-24T06:38:52.010000"],["2024-07-24T06:38:53.010000"],["2024-07-24T06:38:54.010000"],["2024-07-24T06:38:55.010000"],["2024-07-24T06:38:56.010000"],["2024-07-24T06:38:57.010000"],["2024-07-24T06:38:58.010000"],["2024-07-24T06:38:59.010000"],["2024-07-24T06:39:00.010000"],["2024-07-24T06:39:01.010000"],["2024-07-24T06:39:02.010000"],["2024-07-24T06:39:03.010000"],["2024-07-24T06:39:04.010000"],["2024-07-24T06:39:05.010000"],["2024-07-24T06:39:06.010000"],["2024-07-24T06:39:07.010000"],["2024-07-24T06:39:08.010000"],["2024-07-24T06:39:09.010000"],["2024-07-24T06:39:10.010000"],["2024-07-24T06:39:11.010000"],["2024-07-24T06:39:12.010000"],["2024-07-24T06:39:13.010000"],["2024-07-24T06:39:14.010000"],["2024-07-24T06:39:15.010000"],["2024-07-24T06:39:16.010000"],["2024-07-24T06:39:17.010000"],["2024-07-24T06:39:18.010000"],["2024-07-24T06:39:19.010000"],["2024-07-24T06:39:20.010000"],["2024-07-24T06:39:21.010000"],["2024-07-24T06:39:22.010000"],["2024-07-24T06:39:23.010000"],["2024-07-24T06:39:24.010000"],["2024-07-24T06:39:25.010000"],["2024-07-24T06:39:26.010000"],["2024-07-24T06:39:27.010000"],["2024-07-24T06:39:28.010000"],["2024-07-24T06:39:29.010000"],["2024-07-24T06:39:30.010000"],["2024-07-24T06:39:31.010000"],["2024-07-24T06:39:32.010000"],["2024-07-24T06:39:33.010000"],["2024-07-24T06:39:34.010000"],["2024-07-24T06:39:35.010000"],["2024-07-24T06:39:36.010000"],["2024-07-24T06:39:37.010000"],["2024-07-24T06:39:38.010000"],["2024-07-24T06:39:39.010000"],["2024-07-24T06:39:40.010000"],["2024-07-24T06:39:41.010000"],["2024-07-24T06:39:42.010000"],["2024-07-24T06:39:43.010000"],["2024-07-24T06:39:44.010000"],["2024-07-24T06:39:45.010000"],["2024-07-24T06:39:46.010000"],["2024-07-24T06:39:47.010000"],["2024-07-24T06:39:48.010000"],["2024-07-24T06:39:49.010000"],["2024-07-24T06:39:50.010000"],["2024-07-24T06:39:51.010000"],["2024-07-24T06:39:52.010000"],["2024-07-24T06:39:53.010000"],["2024-07-24T06:39:54.010000"],["2024-07-24T06:39:55.010000"],["2024-07-24T06:39:56.010000"],["2024-07-24T06:39:57.010000"],["2024-07-24T06:39:58.010000"],["2024-07-24T06:39:59.010000"],["2024-07-24T06:40:00.010000"],["2024-07-24T06:40:01.010000"],["2024-07-24T06:40:02.010000"],["2024-07-24T06:40:03.010000"],["2024-07-24T06:40:04.010000"],["2024-07-24T06:40:05.010000"],["2024-07-24T06:40:06.010000"],["2024-07-24T06:40:07.010000"],["2024-07-24T06:40:08.010000"],["2024-07-24T06:40:09.010000"],["2024-07-24T06:40:10.010000"],["2024-07-24T06:40:11.010000"],["2024-07-24T06:40:12.010000"],["2024-07-24T06:40:13.010000"],["2024-07-24T06:40:14.010000"],["2024-07-24T06:40:15.010000"],["2024-07-24T06:40:16.010000"],["2024-07-24T06:40:17.010000"],["2024-07-24T06:40:18.010000"],["2024-07-24T06:40:19.010000"],["2024-07-24T06:40:20.010000"],["2024-07-24T06:40:21.010000"],["2024-07-24T06:40:22.010000"],["2024-07-24T06:40:23.010000"],["2024-07-24T06:40:24.010000"],["2024-07-24T06:40:25.010000"],["2024-07-24T06:40:26.010000"],["2024-07-24T06:40:27.010000"],["2024-07-24T06:40:28.010000"],["2024-07-24T06:40:29.010000"],["2024-07-24T06:40:30.010000"],["2024-07-24T06:40:31.010000"],["2024-07-24T06:40:32.010000"],["2024-07-24T06:40:33.010000"],["2024-07-24T06:40:34.010000"],["2024-07-24T06:40:35.010000"],["2024-07-24T06:40:36.010000"],["2024-07-24T06:40:37.010000"],["2024-07-24T06:40:38.010000"],["2024-07-24T06:40:39.010000"],["2024-07-24T06:40:40.010000"],["2024-07-24T06:40:41.010000"],["2024-07-24T06:40:42.010000"],["2024-07-24T06:40:43.010000"],["2024-07-24T06:40:44.010000"],["2024-07-24T06:40:45.010000"],["2024-07-24T06:40:46.010000"],["2024-07-24T06:40:47.010000"],["2024-07-24T06:40:48.010000"],["2024-07-24T06:40:49.010000"],["2024-07-24T06:40:50.010000"],["2024-07-24T06:40:51.010000"],["2024-07-24T06:40:52.010000"],["2024-07-24T06:40:53.010000"],["2024-07-24T06:40:54.010000"],["2024-07-24T06:40:55.010000"],["2024-07-24T06:40:56.010000"],["2024-07-24T06:40:57.010000"],["2024-07-24T06:40:58.010000"],["2024-07-24T06:40:59.010000"],["2024-07-24T06:41:00.010000"],["2024-07-24T06:41:01.010000"],["2024-07-24T06:41:02.010000"],["2024-07-24T06:41:03.010000"],["2024-07-24T06:41:04.010000"],["2024-07-24T06:41:05.010000"],["2024-07-24T06:41:06.010000"],["2024-07-24T06:41:07.010000"],["2024-07-24T06:41:08.010000"],["2024-07-24T06:41:09.010000"],["2024-07-24T06:41:10.010000"],["2024-07-24T06:41:11.010000"],["2024-07-24T06:41:12.010000"],["2024-07-24T06:41:13.010000"],["2024-07-24T06:41:14.010000"],["2024-07-24T06:41:15.010000"],["2024-07-24T06:41:16.010000"],["2024-07-24T06:41:17.010000"],["2024-07-24T06:41:18.010000"],["2024-07-24T06:41:19.010000"],["2024-07-24T06:41:20.010000"],["2024-07-24T06:41:21.010000"],["2024-07-24T06:41:22.010000"],["2024-07-24T06:41:23.010000"],["2024-07-24T06:41:24.010000"],["2024-07-24T06:41:25.010000"],["2024-07-24T06:41:26.010000"],["2024-07-24T06:41:27.010000"],["2024-07-24T06:41:28.010000"],["2024-07-24T06:41:29.010000"],["2024-07-24T06:41:30.010000"],["2024-07-24T06:41:31.010000"],["2024-07-24T06:41:32.010000"],["2024-07-24T06:41:33.010000"],["2024-07-24T06:41:34.010000"],["2024-07-24T06:41:35.010000"],["2024-07-24T06:41:36.010000"],["2024-07-24T06:41:37.010000"],["2024-07-24T06:41:38.010000"],["2024-07-24T06:41:39.010000"],["2024-07-24T06:41:40.010000"],["2024-07-24T06:41:41.010000"],["2024-07-24T06:41:42.010000"],["2024-07-24T06:41:43.010000"],["2024-07-24T06:41:44.010000"],["2024-07-24T06:41:45.010000"],["2024-07-24T06:41:46.010000"],["2024-07-24T06:41:47.010000"],["2024-07-24T06:41:48.010000"],["2024-07-24T06:41:49.010000"],["2024-07-24T06:41:50.010000"],["2024-07-24T06:41:51.010000"],["2024-07-24T06:41:52.010000"],["2024-07-24T06:41:53.010000"],["2024-07-24T06:41:54.010000"],["2024-07-24T06:41:55.010000"],["2024-07-24T06:41:56.010000"],["2024-07-24T06:41:57.010000"],["2024-07-24T06:41:58.010000"],["2024-07-24T06:41:59.010000"],["2024-07-24T06:42:00.010000"],["2024-07-24T06:42:01.010000"],["2024-07-24T06:42:02.010000"],["2024-07-24T06:42:03.010000"],["2024-07-24T06:42:04.010000"],["2024-07-24T06:42:05.010000"],["2024-07-24T06:42:06.010000"],["2024-07-24T06:42:07.010000"],["2024-07-24T06:42:08.010000"],["2024-07-24T06:42:09.010000"],["2024-07-24T06:42:10.010000"],["2024-07-24T06:42:11.010000"],["2024-07-24T06:42:12.010000"],["2024-07-24T06:42:13.010000"],["2024-07-24T06:42:14.010000"],["2024-07-24T06:42:15.010000"],["2024-07-24T06:42:16.010000"],["2024-07-24T06:42:17.010000"],["2024-07-24T06:42:18.010000"],["2024-07-24T06:42:19.010000"],["2024-07-24T06:42:20.010000"],["2024-07-24T06:42:21.010000"],["2024-07-24T06:42:22.010000"],["2024-07-24T06:42:23.010000"],["2024-07-24T06:42:24.010000"],["2024-07-24T06:42:25.010000"],["2024-07-24T06:42:26.010000"],["2024-07-24T06:42:27.010000"],["2024-07-24T06:42:28.010000"],["2024-07-24T06:42:29.010000"],["2024-07-24T06:42:30.010000"],["2024-07-24T06:42:31.010000"],["2024-07-24T06:42:32.010000"],["2024-07-24T06:42:33.010000"],["2024-07-24T06:42:34.010000"],["2024-07-24T06:42:35.010000"],["2024-07-24T06:42:36.010000"],["2024-07-24T06:42:37.010000"],["2024-07-24T06:42:38.010000"],["2024-07-24T06:42:39.010000"],["2024-07-24T06:42:40.010000"],["2024-07-24T06:42:41.010000"],["2024-07-24T06:42:42.010000"],["2024-07-24T06:42:43.010000"],["2024-07-24T06:42:44.010000"],["2024-07-24T06:42:45.010000"],["2024-07-24T06:42:46.010000"],["2024-07-24T06:42:47.010000"],["2024-07-24T06:42:48.010000"],["2024-07-24T06:42:49.010000"],["2024-07-24T06:42:50.010000"],["2024-07-24T06:42:51.010000"],["2024-07-24T06:42:52.010000"],["2024-07-24T06:42:53.010000"],["2024-07-24T06:42:54.010000"],["2024-07-24T06:42:55.010000"],["2024-07-24T06:42:56.010000"],["2024-07-24T06:42:57.010000"],["2024-07-24T06:42:58.010000"],["2024-07-24T06:42:59.010000"],["2024-07-24T06:43:00.010000"],["2024-07-24T06:43:01.010000"],["2024-07-24T06:43:02.010000"],["2024-07-24T06:43:03.010000"],["2024-07-24T06:43:04.010000"],["2024-07-24T06:43:05.010000"],["2024-07-24T06:43:06.010000"],["2024-07-24T06:43:07.010000"],["2024-07-24T06:43:08.010000"],["2024-07-24T06:43:09.010000"],["2024-07-24T06:43:10.010000"],["2024-07-24T06:43:11.010000"],["2024-07-24T06:43:12.010000"],["2024-07-24T06:43:13.010000"],["2024-07-24T06:43:14.010000"],["2024-07-24T06:43:15.010000"],["2024-07-24T06:43:16.010000"],["2024-07-24T06:43:17.010000"],["2024-07-24T06:43:18.010000"],["2024-07-24T06:43:19.010000"],["2024-07-24T06:43:20.010000"],["2024-07-24T06:43:21.010000"],["2024-07-24T06:43:22.010000"],["2024-07-24T06:43:23.010000"],["2024-07-24T06:43:24.010000"],["2024-07-24T06:43:25.010000"],["2024-07-24T06:43:26.010000"],["2024-07-24T06:43:27.010000"],["2024-07-24T06:43:28.010000"],["2024-07-24T06:43:29.010000"],["2024-07-24T06:43:30.010000"],["2024-07-24T06:43:31.010000"],["2024-07-24T06:43:32.010000"],["2024-07-24T06:43:33.010000"],["2024-07-24T06:43:34.010000"],["2024-07-24T06:43:35.010000"],["2024-07-24T06:43:36.010000"],["2024-07-24T06:43:37.010000"],["2024-07-24T06:43:38.010000"],["2024-07-24T06:43:39.010000"],["2024-07-24T06:43:40.010000"],["2024-07-24T06:43:41.010000"],["2024-07-24T06:43:42.010000"],["2024-07-24T06:43:43.010000"],["2024-07-24T06:43:44.010000"],["2024-07-24T06:43:45.010000"],["2024-07-24T06:43:46.010000"],["2024-07-24T06:43:47.010000"],["2024-07-24T06:43:48.010000"],["2024-07-24T06:43:49.010000"],["2024-07-24T06:43:50.010000"],["2024-07-24T06:43:51.010000"],["2024-07-24T06:43:52.010000"],["2024-07-24T06:43:53.010000"],["2024-07-24T06:43:54.010000"],["2024-07-24T06:43:55.010000"],["2024-07-24T06:43:56.010000"],["2024-07-24T06:43:57.010000"],["2024-07-24T06:43:58.010000"],["2024-07-24T06:43:59.010000"],["2024-07-24T06:44:00.010000"],["2024-07-24T06:44:01.010000"],["2024-07-24T06:44:02.010000"],["2024-07-24T06:44:03.010000"],["2024-07-24T06:44:04.010000"],["2024-07-24T06:44:05.010000"],["2024-07-24T06:44:06.010000"],["2024-07-24T06:44:07.010000"],["2024-07-24T06:44:08.010000"],["2024-07-24T06:44:09.010000"],["2024-07-24T06:44:10.010000"],["2024-07-24T06:44:11.010000"],["2024-07-24T06:44:12.010000"],["2024-07-24T06:44:13.010000"],["2024-07-24T06:44:14.010000"],["2024-07-24T06:44:15.010000"],["2024-07-24T06:44:16.010000"],["2024-07-24T06:44:17.010000"],["2024-07-24T06:44:18.010000"],["2024-07-24T06:44:19.010000"],["2024-07-24T06:44:20.010000"],["2024-07-24T06:44:21.010000"],["2024-07-24T06:44:22.010000"],["2024-07-24T06:44:23.010000"],["2024-07-24T06:44:24.010000"],["2024-07-24T06:44:25.010000"],["2024-07-24T06:44:26.010000"],["2024-07-24T06:44:27.010000"],["2024-07-24T06:44:28.010000"],["2024-07-24T06:44:29.010000"],["2024-07-24T06:44:30.010000"],["2024-07-24T06:44:31.010000"],["2024-07-24T06:44:32.010000"],["2024-07-24T06:44:33.010000"],["2024-07-24T06:44:34.010000"],["2024-07-24T06:44:35.010000"],["2024-07-24T06:44:36.010000"],["2024-07-24T06:44:37.010000"],["2024-07-24T06:44:38.010000"],["2024-07-24T06:44:39.010000"],["2024-07-24T06:44:40.010000"],["2024-07-24T06:44:41.010000"],["2024-07-24T06:44:42.010000"],["2024-07-24T06:44:43.010000"],["2024-07-24T06:44:44.010000"],["2024-07-24T06:44:45.010000"],["2024-07-24T06:44:46.010000"],["2024-07-24T06:44:47.010000"],["2024-07-24T06:44:48.010000"],["2024-07-24T06:44:49.010000"],["2024-07-24T06:44:50.010000"],["2024-07-24T06:44:51.010000"],["2024-07-24T06:44:52.010000"],["2024-07-24T06:44:53.010000"],["2024-07-24T06:44:54.010000"],["2024-07-24T06:44:55.010000"],["2024-07-24T06:44:56.010000"],["2024-07-24T06:44:57.010000"],["2024-07-24T06:44:58.010000"],["2024-07-24T06:44:59.010000"],["2024-07-24T06:45:00.010000"],["2024-07-24T06:45:01.010000"],["2024-07-24T06:45:02.010000"],["2024-07-24T06:45:03.010000"],["2024-07-24T06:45:04.010000"],["2024-07-24T06:45:05.010000"],["2024-07-24T06:45:06.010000"],["2024-07-24T06:45:07.010000"],["2024-07-24T06:45:08.010000"],["2024-07-24T06:45:09.010000"],["2024-07-24T06:45:10.010000"],["2024-07-24T06:45:11.010000"],["2024-07-24T06:45:12.010000"],["2024-07-24T06:45:13.010000"],["2024-07-24T06:45:14.010000"],["2024-07-24T06:45:15.010000"],["2024-07-24T06:45:16.010000"],["2024-07-24T06:45:17.010000"],["2024-07-24T06:45:18.010000"],["2024-07-24T06:45:19.010000"],["2024-07-24T06:45:20.010000"],["2024-07-24T06:45:21.010000"],["2024-07-24T06:45:22.010000"],["2024-07-24T06:45:23.010000"],["2024-07-24T06:45:24.010000"],["2024-07-24T06:45:25.010000"],["2024-07-24T06:45:26.010000"],["2024-07-24T06:45:27.010000"],["2024-07-24T06:45:28.010000"],["2024-07-24T06:45:29.010000"],["2024-07-24T06:45:30.010000"],["2024-07-24T06:45:31.010000"],["2024-07-24T06:45:32.010000"],["2024-07-24T06:45:33.010000"],["2024-07-24T06:45:34.010000"],["2024-07-24T06:45:35.010000"],["2024-07-24T06:45:36.010000"],["2024-07-24T06:45:37.010000"],["2024-07-24T06:45:38.010000"],["2024-07-24T06:45:39.010000"],["2024-07-24T06:45:40.010000"],["2024-07-24T06:45:41.010000"],["2024-07-24T06:45:42.010000"],["2024-07-24T06:45:43.010000"],["2024-07-24T06:45:44.010000"],["2024-07-24T06:45:45.010000"],["2024-07-24T06:45:46.010000"],["2024-07-24T06:45:47.010000"],["2024-07-24T06:45:48.010000"],["2024-07-24T06:45:49.010000"],["2024-07-24T06:45:50.010000"],["2024-07-24T06:45:51.010000"],["2024-07-24T06:45:52.010000"],["2024-07-24T06:45:53.010000"],["2024-07-24T06:45:54.010000"],["2024-07-24T06:45:55.010000"],["2024-07-24T06:45:56.010000"],["2024-07-24T06:45:57.010000"],["2024-07-24T06:45:58.010000"],["2024-07-24T06:45:59.010000"],["2024-07-24T06:46:00.010000"],["2024-07-24T06:46:01.010000"],["2024-07-24T06:46:02.010000"],["2024-07-24T06:46:03.010000"],["2024-07-24T06:46:04.010000"],["2024-07-24T06:46:05.010000"],["2024-07-24T06:46:06.010000"],["2024-07-24T06:46:07.010000"],["2024-07-24T06:46:08.010000"],["2024-07-24T06:46:09.010000"],["2024-07-24T06:46:10.010000"],["2024-07-24T06:46:11.010000"],["2024-07-24T06:46:12.010000"],["2024-07-24T06:46:13.010000"],["2024-07-24T06:46:14.010000"],["2024-07-24T06:46:15.010000"],["2024-07-24T06:46:16.010000"],["2024-07-24T06:46:17.010000"],["2024-07-24T06:46:18.010000"],["2024-07-24T06:46:19.010000"],["2024-07-24T06:46:20.010000"],["2024-07-24T06:46:21.010000"],["2024-07-24T06:46:22.010000"],["2024-07-24T06:46:23.010000"],["2024-07-24T06:46:24.010000"],["2024-07-24T06:46:25.010000"],["2024-07-24T06:46:26.010000"],["2024-07-24T06:46:27.010000"],["2024-07-24T06:46:28.010000"],["2024-07-24T06:46:29.010000"],["2024-07-24T06:46:30.010000"],["2024-07-24T06:46:31.010000"],["2024-07-24T06:46:32.010000"],["2024-07-24T06:46:33.010000"],["2024-07-24T06:46:34.010000"],["2024-07-24T06:46:35.010000"],["2024-07-24T06:46:36.010000"],["2024-07-24T06:46:37.010000"],["2024-07-24T06:46:38.010000"],["2024-07-24T06:46:39.010000"],["2024-07-24T06:46:40.010000"],["2024-07-24T06:46:41.010000"],["2024-07-24T06:46:42.010000"],["2024-07-24T06:46:43.010000"],["2024-07-24T06:46:44.010000"],["2024-07-24T06:46:45.010000"],["2024-07-24T06:46:46.010000"],["2024-07-24T06:46:47.010000"],["2024-07-24T06:46:48.010000"],["2024-07-24T06:46:49.010000"],["2024-07-24T06:46:50.010000"],["2024-07-24T06:46:51.010000"],["2024-07-24T06:46:52.010000"],["2024-07-24T06:46:53.010000"],["2024-07-24T06:46:54.010000"],["2024-07-24T06:46:55.010000"],["2024-07-24T06:46:56.010000"],["2024-07-24T06:46:57.010000"],["2024-07-24T06:46:58.010000"],["2024-07-24T06:46:59.010000"],["2024-07-24T06:47:00.010000"],["2024-07-24T06:47:01.010000"],["2024-07-24T06:47:02.010000"],["2024-07-24T06:47:03.010000"],["2024-07-24T06:47:04.010000"],["2024-07-24T06:47:05.010000"],["2024-07-24T06:47:06.010000"],["2024-07-24T06:47:07.010000"],["2024-07-24T06:47:08.010000"],["2024-07-24T06:47:09.010000"],["2024-07-24T06:47:10.010000"],["2024-07-24T06:47:11.010000"],["2024-07-24T06:47:12.010000"],["2024-07-24T06:47:13.010000"],["2024-07-24T06:47:14.010000"],["2024-07-24T06:47:15.010000"],["2024-07-24T06:47:16.010000"],["2024-07-24T06:47:17.010000"],["2024-07-24T06:47:18.010000"],["2024-07-24T06:47:19.010000"],["2024-07-24T06:47:20.010000"],["2024-07-24T06:47:21.010000"],["2024-07-24T06:47:22.010000"],["2024-07-24T06:47:23.010000"],["2024-07-24T06:47:24.010000"],["2024-07-24T06:47:25.010000"],["2024-07-24T06:47:26.010000"],["2024-07-24T06:47:27.010000"],["2024-07-24T06:47:28.010000"],["2024-07-24T06:47:29.010000"],["2024-07-24T06:47:30.010000"],["2024-07-24T06:47:31.010000"],["2024-07-24T06:47:32.010000"],["2024-07-24T06:47:33.010000"],["2024-07-24T06:47:34.010000"],["2024-07-24T06:47:35.010000"],["2024-07-24T06:47:36.010000"],["2024-07-24T06:47:37.010000"],["2024-07-24T06:47:38.010000"],["2024-07-24T06:47:39.010000"],["2024-07-24T06:47:40.010000"],["2024-07-24T06:47:41.010000"],["2024-07-24T06:47:42.010000"],["2024-07-24T06:47:43.010000"],["2024-07-24T06:47:44.010000"],["2024-07-24T06:47:45.010000"],["2024-07-24T06:47:46.010000"],["2024-07-24T06:47:47.010000"],["2024-07-24T06:47:48.010000"],["2024-07-24T06:47:49.010000"],["2024-07-24T06:47:50.010000"],["2024-07-24T06:47:51.010000"],["2024-07-24T06:47:52.010000"],["2024-07-24T06:47:53.010000"],["2024-07-24T06:47:54.010000"],["2024-07-24T06:47:55.010000"],["2024-07-24T06:47:56.010000"],["2024-07-24T06:47:57.010000"],["2024-07-24T06:47:58.010000"],["2024-07-24T06:47:59.010000"],["2024-07-24T06:48:00.010000"],["2024-07-24T06:48:01.010000"],["2024-07-24T06:48:02.010000"],["2024-07-24T06:48:03.010000"],["2024-07-24T06:48:04.010000"],["2024-07-24T06:48:05.010000"],["2024-07-24T06:48:06.010000"],["2024-07-24T06:48:07.010000"],["2024-07-24T06:48:08.010000"],["2024-07-24T06:48:09.010000"],["2024-07-24T06:48:10.010000"],["2024-07-24T06:48:11.010000"],["2024-07-24T06:48:12.010000"],["2024-07-24T06:48:13.010000"],["2024-07-24T06:48:14.010000"],["2024-07-24T06:48:15.010000"],["2024-07-24T06:48:16.010000"],["2024-07-24T06:48:17.010000"],["2024-07-24T06:48:18.010000"],["2024-07-24T06:48:19.010000"],["2024-07-24T06:48:20.010000"],["2024-07-24T06:48:21.010000"],["2024-07-24T06:48:22.010000"],["2024-07-24T06:48:23.010000"],["2024-07-24T06:48:24.010000"],["2024-07-24T06:48:25.010000"],["2024-07-24T06:48:26.010000"],["2024-07-24T06:48:27.010000"],["2024-07-24T06:48:28.010000"],["2024-07-24T06:48:29.010000"],["2024-07-24T06:48:30.010000"],["2024-07-24T06:48:31.010000"],["2024-07-24T06:48:32.010000"],["2024-07-24T06:48:33.010000"],["2024-07-24T06:48:34.010000"],["2024-07-24T06:48:35.010000"],["2024-07-24T06:48:36.010000"],["2024-07-24T06:48:37.010000"],["2024-07-24T06:48:38.010000"],["2024-07-24T06:48:39.010000"],["2024-07-24T06:48:40.010000"],["2024-07-24T06:48:41.010000"],["2024-07-24T06:48:42.010000"],["2024-07-24T06:48:43.010000"],["2024-07-24T06:48:44.010000"],["2024-07-24T06:48:45.010000"],["2024-07-24T06:48:46.010000"],["2024-07-24T06:48:47.010000"],["2024-07-24T06:48:48.010000"],["2024-07-24T06:48:49.010000"],["2024-07-24T06:48:50.010000"],["2024-07-24T06:48:51.010000"],["2024-07-24T06:48:52.010000"],["2024-07-24T06:48:53.010000"],["2024-07-24T06:48:54.010000"],["2024-07-24T06:48:55.010000"],["2024-07-24T06:48:56.010000"],["2024-07-24T06:48:57.010000"],["2024-07-24T06:48:58.010000"],["2024-07-24T06:48:59.010000"],["2024-07-24T06:49:00.010000"],["2024-07-24T06:49:01.010000"],["2024-07-24T06:49:02.010000"],["2024-07-24T06:49:03.010000"],["2024-07-24T06:49:04.010000"],["2024-07-24T06:49:05.010000"],["2024-07-24T06:49:06.010000"],["2024-07-24T06:49:07.010000"],["2024-07-24T06:49:08.010000"],["2024-07-24T06:49:09.010000"],["2024-07-24T06:49:10.010000"],["2024-07-24T06:49:11.010000"],["2024-07-24T06:49:12.010000"],["2024-07-24T06:49:13.010000"],["2024-07-24T06:49:14.010000"],["2024-07-24T06:49:15.010000"],["2024-07-24T06:49:16.010000"],["2024-07-24T06:49:17.010000"],["2024-07-24T06:49:18.010000"],["2024-07-24T06:49:19.010000"],["2024-07-24T06:49:20.010000"],["2024-07-24T06:49:21.010000"],["2024-07-24T06:49:22.010000"],["2024-07-24T06:49:23.010000"],["2024-07-24T06:49:24.010000"],["2024-07-24T06:49:25.010000"],["2024-07-24T06:49:26.010000"],["2024-07-24T06:49:27.010000"],["2024-07-24T06:49:28.010000"],["2024-07-24T06:49:29.010000"],["2024-07-24T06:49:30.010000"],["2024-07-24T06:49:31.010000"],["2024-07-24T06:49:32.010000"],["2024-07-24T06:49:33.010000"],["2024-07-24T06:49:34.010000"],["2024-07-24T06:49:35.010000"],["2024-07-24T06:49:36.010000"],["2024-07-24T06:49:37.010000"],["2024-07-24T06:49:38.010000"],["2024-07-24T06:49:39.010000"],["2024-07-24T06:49:40.010000"],["2024-07-24T06:49:41.010000"],["2024-07-24T06:49:42.010000"],["2024-07-24T06:49:43.010000"],["2024-07-24T06:49:44.010000"],["2024-07-24T06:49:45.010000"],["2024-07-24T06:49:46.010000"],["2024-07-24T06:49:47.010000"],["2024-07-24T06:49:48.010000"],["2024-07-24T06:49:49.010000"],["2024-07-24T06:49:50.010000"],["2024-07-24T06:49:51.010000"],["2024-07-24T06:49:52.010000"],["2024-07-24T06:49:53.010000"],["2024-07-24T06:49:54.010000"],["2024-07-24T06:49:55.010000"],["2024-07-24T06:49:56.010000"],["2024-07-24T06:49:57.010000"],["2024-07-24T06:49:58.010000"],["2024-07-24T06:49:59.010000"],["2024-07-24T06:50:00.010000"],["2024-07-24T06:50:01.010000"],["2024-07-24T06:50:02.010000"],["2024-07-24T06:50:03.010000"],["2024-07-24T06:50:04.010000"],["2024-07-24T06:50:05.010000"],["2024-07-24T06:50:06.010000"],["2024-07-24T06:50:07.010000"],["2024-07-24T06:50:08.010000"],["2024-07-24T06:50:09.010000"],["2024-07-24T06:50:10.010000"],["2024-07-24T06:50:11.010000"],["2024-07-24T06:50:12.010000"],["2024-07-24T06:50:13.010000"],["2024-07-24T06:50:14.010000"],["2024-07-24T06:50:15.010000"],["2024-07-24T06:50:16.010000"],["2024-07-24T06:50:17.010000"],["2024-07-24T06:50:18.010000"],["2024-07-24T06:50:19.010000"],["2024-07-24T06:50:20.010000"],["2024-07-24T06:50:21.010000"],["2024-07-24T06:50:22.010000"],["2024-07-24T06:50:23.010000"],["2024-07-24T06:50:24.010000"],["2024-07-24T06:50:25.010000"],["2024-07-24T06:50:26.010000"],["2024-07-24T06:50:27.010000"],["2024-07-24T06:50:28.010000"],["2024-07-24T06:50:29.010000"],["2024-07-24T06:50:30.010000"],["2024-07-24T06:50:31.010000"],["2024-07-24T06:50:32.010000"],["2024-07-24T06:50:33.010000"],["2024-07-24T06:50:34.010000"],["2024-07-24T06:50:35.010000"],["2024-07-24T06:50:36.010000"],["2024-07-24T06:50:37.010000"],["2024-07-24T06:50:38.010000"],["2024-07-24T06:50:39.010000"],["2024-07-24T06:50:40.010000"],["2024-07-24T06:50:41.010000"],["2024-07-24T06:50:42.010000"],["2024-07-24T06:50:43.010000"],["2024-07-24T06:50:44.010000"],["2024-07-24T06:50:45.010000"],["2024-07-24T06:50:46.010000"],["2024-07-24T06:50:47.010000"],["2024-07-24T06:50:48.010000"],["2024-07-24T06:50:49.010000"],["2024-07-24T06:50:50.010000"],["2024-07-24T06:50:51.010000"],["2024-07-24T06:50:52.010000"],["2024-07-24T06:50:53.010000"],["2024-07-24T06:50:54.010000"],["2024-07-24T06:50:55.010000"],["2024-07-24T06:50:56.010000"],["2024-07-24T06:50:57.010000"],["2024-07-24T06:50:58.010000"],["2024-07-24T06:50:59.010000"],["2024-07-24T06:51:00.010000"],["2024-07-24T06:51:01.010000"],["2024-07-24T06:51:02.010000"],["2024-07-24T06:51:03.010000"],["2024-07-24T06:51:04.010000"],["2024-07-24T06:51:05.010000"],["2024-07-24T06:51:06.010000"],["2024-07-24T06:51:07.010000"],["2024-07-24T06:51:08.010000"],["2024-07-24T06:51:09.010000"],["2024-07-24T06:51:10.010000"],["2024-07-24T06:51:11.010000"],["2024-07-24T06:51:12.010000"],["2024-07-24T06:51:13.010000"],["2024-07-24T06:51:14.010000"],["2024-07-24T06:51:15.010000"],["2024-07-24T06:51:16.010000"],["2024-07-24T06:51:17.010000"],["2024-07-24T06:51:18.010000"],["2024-07-24T06:51:19.010000"],["2024-07-24T06:51:20.010000"],["2024-07-24T06:51:21.010000"],["2024-07-24T06:51:22.010000"],["2024-07-24T06:51:23.010000"],["2024-07-24T06:51:24.010000"],["2024-07-24T06:51:25.010000"],["2024-07-24T06:51:26.010000"],["2024-07-24T06:51:27.010000"],["2024-07-24T06:51:28.010000"],["2024-07-24T06:51:29.010000"],["2024-07-24T06:51:30.010000"],["2024-07-24T06:51:31.010000"],["2024-07-24T06:51:32.010000"],["2024-07-24T06:51:33.010000"],["2024-07-24T06:51:34.010000"],["2024-07-24T06:51:35.010000"],["2024-07-24T06:51:36.010000"],["2024-07-24T06:51:37.010000"],["2024-07-24T06:51:38.010000"],["2024-07-24T06:51:39.010000"],["2024-07-24T06:51:40.010000"],["2024-07-24T06:51:41.010000"],["2024-07-24T06:51:42.010000"],["2024-07-24T06:51:43.010000"],["2024-07-24T06:51:44.010000"],["2024-07-24T06:51:45.010000"],["2024-07-24T06:51:46.010000"],["2024-07-24T06:51:47.010000"],["2024-07-24T06:51:48.010000"],["2024-07-24T06:51:49.010000"],["2024-07-24T06:51:50.010000"],["2024-07-24T06:51:51.010000"],["2024-07-24T06:51:52.010000"],["2024-07-24T06:51:53.010000"],["2024-07-24T06:51:54.010000"],["2024-07-24T06:51:55.010000"],["2024-07-24T06:51:56.010000"],["2024-07-24T06:51:57.010000"],["2024-07-24T06:51:58.010000"],["2024-07-24T06:51:59.010000"],["2024-07-24T06:52:00.010000"],["2024-07-24T06:52:01.010000"],["2024-07-24T06:52:02.010000"],["2024-07-24T06:52:03.010000"],["2024-07-24T06:52:04.010000"],["2024-07-24T06:52:05.010000"],["2024-07-24T06:52:06.010000"],["2024-07-24T06:52:07.010000"],["2024-07-24T06:52:08.010000"],["2024-07-24T06:52:09.010000"],["2024-07-24T06:52:10.010000"],["2024-07-24T06:52:11.010000"],["2024-07-24T06:52:12.010000"],["2024-07-24T06:52:13.010000"],["2024-07-24T06:52:14.010000"],["2024-07-24T06:52:15.010000"],["2024-07-24T06:52:16.010000"],["2024-07-24T06:52:17.010000"],["2024-07-24T06:52:18.010000"],["2024-07-24T06:52:19.010000"],["2024-07-24T06:52:20.010000"],["2024-07-24T06:52:21.010000"],["2024-07-24T06:52:22.010000"],["2024-07-24T06:52:23.010000"],["2024-07-24T06:52:24.010000"],["2024-07-24T06:52:25.010000"],["2024-07-24T06:52:26.010000"],["2024-07-24T06:52:27.010000"],["2024-07-24T06:52:28.010000"],["2024-07-24T06:52:29.010000"],["2024-07-24T06:52:30.010000"],["2024-07-24T06:52:31.010000"],["2024-07-24T06:52:32.010000"],["2024-07-24T06:52:33.010000"],["2024-07-24T06:52:34.010000"],["2024-07-24T06:52:35.010000"],["2024-07-24T06:52:36.010000"],["2024-07-24T06:52:37.010000"],["2024-07-24T06:52:38.010000"],["2024-07-24T06:52:39.010000"],["2024-07-24T06:52:40.010000"],["2024-07-24T06:52:41.010000"],["2024-07-24T06:52:42.010000"],["2024-07-24T06:52:43.010000"],["2024-07-24T06:52:44.010000"],["2024-07-24T06:52:45.010000"],["2024-07-24T06:52:46.010000"],["2024-07-24T06:52:47.010000"],["2024-07-24T06:52:48.010000"],["2024-07-24T06:52:49.010000"],["2024-07-24T06:52:50.010000"],["2024-07-24T06:52:51.010000"],["2024-07-24T06:52:52.010000"],["2024-07-24T06:52:53.010000"],["2024-07-24T06:52:54.010000"],["2024-07-24T06:52:55.010000"],["2024-07-24T06:52:56.010000"],["2024-07-24T06:52:57.010000"],["2024-07-24T06:52:58.010000"],["2024-07-24T06:52:59.010000"],["2024-07-24T06:53:00.010000"],["2024-07-24T06:53:01.010000"],["2024-07-24T06:53:02.010000"],["2024-07-24T06:53:03.010000"],["2024-07-24T06:53:04.010000"],["2024-07-24T06:53:05.010000"],["2024-07-24T06:53:06.010000"],["2024-07-24T06:53:07.010000"],["2024-07-24T06:53:08.010000"],["2024-07-24T06:53:09.010000"],["2024-07-24T06:53:10.010000"],["2024-07-24T06:53:11.010000"],["2024-07-24T06:53:12.010000"],["2024-07-24T06:53:13.010000"],["2024-07-24T06:53:14.010000"],["2024-07-24T06:53:15.010000"],["2024-07-24T06:53:16.010000"],["2024-07-24T06:53:17.010000"],["2024-07-24T06:53:18.010000"],["2024-07-24T06:53:19.010000"],["2024-07-24T06:53:20.010000"],["2024-07-24T06:53:21.010000"],["2024-07-24T06:53:22.010000"],["2024-07-24T06:53:23.010000"],["2024-07-24T06:53:24.010000"],["2024-07-24T06:53:25.010000"],["2024-07-24T06:53:26.010000"],["2024-07-24T06:53:27.010000"],["2024-07-24T06:53:28.010000"],["2024-07-24T06:53:29.010000"],["2024-07-24T06:53:30.010000"],["2024-07-24T06:53:31.010000"],["2024-07-24T06:53:32.010000"],["2024-07-24T06:53:33.010000"],["2024-07-24T06:53:34.010000"],["2024-07-24T06:53:35.010000"],["2024-07-24T06:53:36.010000"],["2024-07-24T06:53:37.010000"],["2024-07-24T06:53:38.010000"],["2024-07-24T06:53:39.010000"],["2024-07-24T06:53:40.010000"],["2024-07-24T06:53:41.010000"],["2024-07-24T06:53:42.010000"],["2024-07-24T06:53:43.010000"],["2024-07-24T06:53:44.010000"],["2024-07-24T06:53:45.010000"],["2024-07-24T06:53:46.010000"],["2024-07-24T06:53:47.010000"],["2024-07-24T06:53:48.010000"],["2024-07-24T06:53:49.010000"],["2024-07-24T06:53:50.010000"],["2024-07-24T06:53:51.010000"],["2024-07-24T06:53:52.010000"],["2024-07-24T06:53:53.010000"],["2024-07-24T06:53:54.010000"],["2024-07-24T06:53:55.010000"],["2024-07-24T06:53:56.010000"],["2024-07-24T06:53:57.010000"],["2024-07-24T06:53:58.010000"],["2024-07-24T06:53:59.010000"],["2024-07-24T06:54:00.010000"],["2024-07-24T06:54:01.010000"],["2024-07-24T06:54:02.010000"],["2024-07-24T06:54:03.010000"],["2024-07-24T06:54:04.010000"],["2024-07-24T06:54:05.010000"],["2024-07-24T06:54:06.010000"],["2024-07-24T06:54:07.010000"],["2024-07-24T06:54:08.010000"],["2024-07-24T06:54:09.010000"],["2024-07-24T06:54:10.010000"],["2024-07-24T06:54:11.010000"],["2024-07-24T06:54:12.010000"],["2024-07-24T06:54:13.010000"],["2024-07-24T06:54:14.010000"],["2024-07-24T06:54:15.010000"],["2024-07-24T06:54:16.010000"],["2024-07-24T06:54:17.010000"],["2024-07-24T06:54:18.010000"],["2024-07-24T06:54:19.010000"],["2024-07-24T06:54:20.010000"],["2024-07-24T06:54:21.010000"],["2024-07-24T06:54:22.010000"],["2024-07-24T06:54:23.010000"],["2024-07-24T06:54:24.010000"],["2024-07-24T06:54:25.010000"],["2024-07-24T06:54:26.010000"],["2024-07-24T06:54:27.010000"],["2024-07-24T06:54:28.010000"],["2024-07-24T06:54:29.010000"],["2024-07-24T06:54:30.010000"],["2024-07-24T06:54:31.010000"],["2024-07-24T06:54:32.010000"],["2024-07-24T06:54:33.010000"],["2024-07-24T06:54:34.010000"],["2024-07-24T06:54:35.010000"],["2024-07-24T06:54:36.010000"],["2024-07-24T06:54:37.010000"],["2024-07-24T06:54:38.010000"],["2024-07-24T06:54:39.010000"],["2024-07-24T06:54:40.010000"],["2024-07-24T06:54:41.010000"],["2024-07-24T06:54:42.010000"],["2024-07-24T06:54:43.010000"],["2024-07-24T06:54:44.010000"],["2024-07-24T06:54:45.010000"],["2024-07-24T06:54:46.010000"],["2024-07-24T06:54:47.010000"],["2024-07-24T06:54:48.010000"],["2024-07-24T06:54:49.010000"],["2024-07-24T06:54:50.010000"],["2024-07-24T06:54:51.010000"],["2024-07-24T06:54:52.010000"],["2024-07-24T06:54:53.010000"],["2024-07-24T06:54:54.010000"],["2024-07-24T06:54:55.010000"],["2024-07-24T06:54:56.010000"],["2024-07-24T06:54:57.010000"],["2024-07-24T06:54:58.010000"],["2024-07-24T06:54:59.010000"],["2024-07-24T06:55:00.010000"],["2024-07-24T06:55:01.010000"],["2024-07-24T06:55:02.010000"],["2024-07-24T06:55:03.010000"],["2024-07-24T06:55:04.010000"],["2024-07-24T06:55:05.010000"],["2024-07-24T06:55:06.010000"],["2024-07-24T06:55:07.010000"],["2024-07-24T06:55:08.010000"],["2024-07-24T06:55:09.010000"],["2024-07-24T06:55:10.010000"],["2024-07-24T06:55:11.010000"],["2024-07-24T06:55:12.010000"],["2024-07-24T06:55:13.010000"],["2024-07-24T06:55:14.010000"],["2024-07-24T06:55:15.010000"],["2024-07-24T06:55:16.010000"],["2024-07-24T06:55:17.010000"],["2024-07-24T06:55:18.010000"],["2024-07-24T06:55:19.010000"],["2024-07-24T06:55:20.010000"],["2024-07-24T06:55:21.010000"],["2024-07-24T06:55:22.010000"],["2024-07-24T06:55:23.010000"],["2024-07-24T06:55:24.010000"],["2024-07-24T06:55:25.010000"],["2024-07-24T06:55:26.010000"],["2024-07-24T06:55:27.010000"],["2024-07-24T06:55:28.010000"],["2024-07-24T06:55:29.010000"],["2024-07-24T06:55:30.010000"],["2024-07-24T06:55:31.010000"],["2024-07-24T06:55:32.010000"],["2024-07-24T06:55:33.010000"],["2024-07-24T06:55:34.010000"],["2024-07-24T06:55:35.010000"],["2024-07-24T06:55:36.010000"],["2024-07-24T06:55:37.010000"],["2024-07-24T06:55:38.010000"],["2024-07-24T06:55:39.010000"],["2024-07-24T06:55:40.010000"],["2024-07-24T06:55:41.010000"],["2024-07-24T06:55:42.010000"],["2024-07-24T06:55:43.010000"],["2024-07-24T06:55:44.010000"],["2024-07-24T06:55:45.010000"],["2024-07-24T06:55:46.010000"],["2024-07-24T06:55:47.010000"],["2024-07-24T06:55:48.010000"],["2024-07-24T06:55:49.010000"],["2024-07-24T06:55:50.010000"],["2024-07-24T06:55:51.010000"],["2024-07-24T06:55:52.010000"],["2024-07-24T06:55:53.010000"],["2024-07-24T06:55:54.010000"],["2024-07-24T06:55:55.010000"],["2024-07-24T06:55:56.010000"],["2024-07-24T06:55:57.010000"],["2024-07-24T06:55:58.010000"],["2024-07-24T06:55:59.010000"],["2024-07-24T06:56:00.010000"],["2024-07-24T06:56:01.010000"],["2024-07-24T06:56:02.010000"],["2024-07-24T06:56:03.010000"],["2024-07-24T06:56:04.010000"],["2024-07-24T06:56:05.010000"],["2024-07-24T06:56:06.010000"],["2024-07-24T06:56:07.010000"],["2024-07-24T06:56:08.010000"],["2024-07-24T06:56:09.010000"],["2024-07-24T06:56:10.010000"],["2024-07-24T06:56:11.010000"],["2024-07-24T06:56:12.010000"],["2024-07-24T06:56:13.010000"],["2024-07-24T06:56:14.010000"],["2024-07-24T06:56:15.010000"],["2024-07-24T06:56:16.010000"],["2024-07-24T06:56:17.010000"],["2024-07-24T06:56:18.010000"],["2024-07-24T06:56:19.010000"],["2024-07-24T06:56:20.010000"],["2024-07-24T06:56:21.010000"],["2024-07-24T06:56:22.010000"],["2024-07-24T06:56:23.010000"],["2024-07-24T06:56:24.010000"],["2024-07-24T06:56:25.010000"],["2024-07-24T06:56:26.010000"],["2024-07-24T06:56:27.010000"],["2024-07-24T06:56:28.010000"],["2024-07-24T06:56:29.010000"],["2024-07-24T06:56:30.010000"],["2024-07-24T06:56:31.010000"],["2024-07-24T06:56:32.010000"],["2024-07-24T06:56:33.010000"],["2024-07-24T06:56:34.010000"],["2024-07-24T06:56:35.010000"],["2024-07-24T06:56:36.010000"],["2024-07-24T06:56:37.010000"],["2024-07-24T06:56:38.010000"],["2024-07-24T06:56:39.010000"],["2024-07-24T06:56:40.010000"],["2024-07-24T06:56:41.010000"],["2024-07-24T06:56:42.010000"],["2024-07-24T06:56:43.010000"],["2024-07-24T06:56:44.010000"],["2024-07-24T06:56:45.010000"],["2024-07-24T06:56:46.010000"],["2024-07-24T06:56:47.010000"],["2024-07-24T06:56:48.010000"],["2024-07-24T06:56:49.010000"],["2024-07-24T06:56:50.010000"],["2024-07-24T06:56:51.010000"],["2024-07-24T06:56:52.010000"],["2024-07-24T06:56:53.010000"],["2024-07-24T06:56:54.010000"],["2024-07-24T06:56:55.010000"],["2024-07-24T06:56:56.010000"],["2024-07-24T06:56:57.010000"],["2024-07-24T06:56:58.010000"],["2024-07-24T06:56:59.010000"],["2024-07-24T06:57:00.010000"],["2024-07-24T06:57:01.010000"],["2024-07-24T06:57:02.010000"],["2024-07-24T06:57:03.010000"],["2024-07-24T06:57:04.010000"],["2024-07-24T06:57:05.010000"],["2024-07-24T06:57:06.010000"],["2024-07-24T06:57:07.010000"],["2024-07-24T06:57:08.010000"],["2024-07-24T06:57:09.010000"],["2024-07-24T06:57:10.010000"],["2024-07-24T06:57:11.010000"],["2024-07-24T06:57:12.010000"],["2024-07-24T06:57:13.010000"],["2024-07-24T06:57:14.010000"],["2024-07-24T06:57:15.010000"],["2024-07-24T06:57:16.010000"],["2024-07-24T06:57:17.010000"],["2024-07-24T06:57:18.010000"],["2024-07-24T06:57:19.010000"],["2024-07-24T06:57:20.010000"],["2024-07-24T06:57:21.010000"],["2024-07-24T06:57:22.010000"],["2024-07-24T06:57:23.010000"],["2024-07-24T06:57:24.010000"],["2024-07-24T06:57:25.010000"],["2024-07-24T06:57:26.010000"],["2024-07-24T06:57:27.010000"],["2024-07-24T06:57:28.010000"],["2024-07-24T06:57:29.010000"],["2024-07-24T06:57:30.010000"],["2024-07-24T06:57:31.010000"],["2024-07-24T06:57:32.010000"],["2024-07-24T06:57:33.010000"],["2024-07-24T06:57:34.010000"],["2024-07-24T06:57:35.010000"],["2024-07-24T06:57:36.010000"],["2024-07-24T06:57:37.010000"],["2024-07-24T06:57:38.010000"],["2024-07-24T06:57:39.010000"],["2024-07-24T06:57:40.010000"],["2024-07-24T06:57:41.010000"],["2024-07-24T06:57:42.010000"],["2024-07-24T06:57:43.010000"],["2024-07-24T06:57:44.010000"],["2024-07-24T06:57:45.010000"],["2024-07-24T06:57:46.010000"],["2024-07-24T06:57:47.010000"],["2024-07-24T06:57:48.010000"],["2024-07-24T06:57:49.010000"],["2024-07-24T06:57:50.010000"],["2024-07-24T06:57:51.010000"],["2024-07-24T06:57:52.010000"],["2024-07-24T06:57:53.010000"],["2024-07-24T06:57:54.010000"],["2024-07-24T06:57:55.010000"],["2024-07-24T06:57:56.010000"],["2024-07-24T06:57:57.010000"],["2024-07-24T06:57:58.010000"],["2024-07-24T06:57:59.010000"],["2024-07-24T06:58:00.010000"],["2024-07-24T06:58:01.010000"],["2024-07-24T06:58:02.010000"],["2024-07-24T06:58:03.010000"],["2024-07-24T06:58:04.010000"],["2024-07-24T06:58:05.010000"],["2024-07-24T06:58:06.010000"],["2024-07-24T06:58:07.010000"],["2024-07-24T06:58:08.010000"],["2024-07-24T06:58:09.010000"],["2024-07-24T06:58:10.010000"],["2024-07-24T06:58:11.010000"],["2024-07-24T06:58:12.010000"],["2024-07-24T06:58:13.010000"],["2024-07-24T06:58:14.010000"],["2024-07-24T06:58:15.010000"],["2024-07-24T06:58:16.010000"],["2024-07-24T06:58:17.010000"],["2024-07-24T06:58:18.010000"],["2024-07-24T06:58:19.010000"],["2024-07-24T06:58:20.010000"],["2024-07-24T06:58:21.010000"],["2024-07-24T06:58:22.010000"],["2024-07-24T06:58:23.010000"],["2024-07-24T06:58:24.010000"],["2024-07-24T06:58:25.010000"],["2024-07-24T06:58:26.010000"],["2024-07-24T06:58:27.010000"],["2024-07-24T06:58:28.010000"],["2024-07-24T06:58:29.010000"],["2024-07-24T06:58:30.010000"],["2024-07-24T06:58:31.010000"],["2024-07-24T06:58:32.010000"],["2024-07-24T06:58:33.010000"],["2024-07-24T06:58:34.010000"],["2024-07-24T06:58:35.010000"],["2024-07-24T06:58:36.010000"],["2024-07-24T06:58:37.010000"],["2024-07-24T06:58:38.010000"],["2024-07-24T06:58:39.010000"],["2024-07-24T06:58:40.010000"],["2024-07-24T06:58:41.010000"],["2024-07-24T06:58:42.010000"],["2024-07-24T06:58:43.010000"],["2024-07-24T06:58:44.010000"],["2024-07-24T06:58:45.010000"],["2024-07-24T06:58:46.010000"],["2024-07-24T06:58:47.010000"],["2024-07-24T06:58:48.010000"],["2024-07-24T06:58:49.010000"],["2024-07-24T06:58:50.010000"],["2024-07-24T06:58:51.010000"],["2024-07-24T06:58:52.010000"],["2024-07-24T06:58:53.010000"],["2024-07-24T06:58:54.010000"],["2024-07-24T06:58:55.010000"],["2024-07-24T06:58:56.010000"],["2024-07-24T06:58:57.010000"],["2024-07-24T06:58:58.010000"],["2024-07-24T06:58:59.010000"],["2024-07-24T06:59:00.010000"],["2024-07-24T06:59:01.010000"],["2024-07-24T06:59:02.010000"],["2024-07-24T06:59:03.010000"],["2024-07-24T06:59:04.010000"],["2024-07-24T06:59:05.010000"],["2024-07-24T06:59:06.010000"],["2024-07-24T06:59:07.010000"],["2024-07-24T06:59:08.010000"],["2024-07-24T06:59:09.010000"],["2024-07-24T06:59:10.010000"],["2024-07-24T06:59:11.010000"],["2024-07-24T06:59:12.010000"],["2024-07-24T06:59:13.010000"],["2024-07-24T06:59:14.010000"],["2024-07-24T06:59:15.010000"],["2024-07-24T06:59:16.010000"],["2024-07-24T06:59:17.010000"],["2024-07-24T06:59:18.010000"],["2024-07-24T06:59:19.010000"],["2024-07-24T06:59:20.010000"],["2024-07-24T06:59:21.010000"],["2024-07-24T06:59:22.010000"],["2024-07-24T06:59:23.010000"],["2024-07-24T06:59:24.010000"],["2024-07-24T06:59:25.010000"],["2024-07-24T06:59:26.010000"],["2024-07-24T06:59:27.010000"],["2024-07-24T06:59:28.010000"],["2024-07-24T06:59:29.010000"],["2024-07-24T06:59:30.010000"],["2024-07-24T06:59:31.010000"],["2024-07-24T06:59:32.010000"],["2024-07-24T06:59:33.010000"],["2024-07-24T06:59:34.010000"],["2024-07-24T06:59:35.010000"],["2024-07-24T06:59:36.010000"],["2024-07-24T06:59:37.010000"],["2024-07-24T06:59:38.010000"],["2024-07-24T06:59:39.010000"],["2024-07-24T06:59:40.010000"],["2024-07-24T06:59:41.010000"],["2024-07-24T06:59:42.010000"],["2024-07-24T06:59:43.010000"],["2024-07-24T06:59:44.010000"],["2024-07-24T06:59:45.010000"],["2024-07-24T06:59:46.010000"],["2024-07-24T06:59:47.010000"],["2024-07-24T06:59:48.010000"],["2024-07-24T06:59:49.010000"],["2024-07-24T06:59:50.010000"],["2024-07-24T06:59:51.010000"],["2024-07-24T06:59:52.010000"],["2024-07-24T06:59:53.010000"],["2024-07-24T06:59:54.010000"],["2024-07-24T06:59:55.010000"],["2024-07-24T06:59:56.010000"],["2024-07-24T06:59:57.010000"],["2024-07-24T06:59:58.010000"],["2024-07-24T06:59:59.010000"],["2024-07-24T07:00:00.010000"],["2024-07-24T07:00:01.010000"],["2024-07-24T07:00:02.010000"],["2024-07-24T07:00:03.010000"],["2024-07-24T07:00:04.010000"],["2024-07-24T07:00:05.010000"],["2024-07-24T07:00:06.010000"],["2024-07-24T07:00:07.010000"],["2024-07-24T07:00:08.010000"],["2024-07-24T07:00:09.010000"],["2024-07-24T07:00:10.010000"],["2024-07-24T07:00:11.010000"],["2024-07-24T07:00:12.010000"],["2024-07-24T07:00:13.010000"],["2024-07-24T07:00:14.010000"],["2024-07-24T07:00:15.010000"],["2024-07-24T07:00:16.010000"],["2024-07-24T07:00:17.010000"],["2024-07-24T07:00:18.010000"],["2024-07-24T07:00:19.010000"],["2024-07-24T07:00:20.010000"],["2024-07-24T07:00:21.010000"],["2024-07-24T07:00:22.010000"],["2024-07-24T07:00:23.010000"],["2024-07-24T07:00:24.010000"],["2024-07-24T07:00:25.010000"],["2024-07-24T07:00:26.010000"],["2024-07-24T07:00:27.010000"],["2024-07-24T07:00:28.010000"],["2024-07-24T07:00:29.010000"],["2024-07-24T07:00:30.010000"],["2024-07-24T07:00:31.010000"],["2024-07-24T07:00:32.010000"],["2024-07-24T07:00:33.010000"],["2024-07-24T07:00:34.010000"],["2024-07-24T07:00:35.010000"],["2024-07-24T07:00:36.010000"],["2024-07-24T07:00:37.010000"],["2024-07-24T07:00:38.010000"],["2024-07-24T07:00:39.010000"],["2024-07-24T07:00:40.010000"],["2024-07-24T07:00:41.010000"],["2024-07-24T07:00:42.010000"],["2024-07-24T07:00:43.010000"],["2024-07-24T07:00:44.010000"],["2024-07-24T07:00:45.010000"],["2024-07-24T07:00:46.010000"],["2024-07-24T07:00:47.010000"],["2024-07-24T07:00:48.010000"],["2024-07-24T07:00:49.010000"],["2024-07-24T07:00:50.010000"],["2024-07-24T07:00:51.010000"],["2024-07-24T07:00:52.010000"],["2024-07-24T07:00:53.010000"],["2024-07-24T07:00:54.010000"],["2024-07-24T07:00:55.010000"],["2024-07-24T07:00:56.010000"],["2024-07-24T07:00:57.010000"],["2024-07-24T07:00:58.010000"],["2024-07-24T07:00:59.010000"],["2024-07-24T07:01:00.010000"],["2024-07-24T07:01:01.010000"],["2024-07-24T07:01:02.010000"],["2024-07-24T07:01:03.010000"],["2024-07-24T07:01:04.010000"],["2024-07-24T07:01:05.010000"],["2024-07-24T07:01:06.010000"],["2024-07-24T07:01:07.010000"],["2024-07-24T07:01:08.010000"],["2024-07-24T07:01:09.010000"],["2024-07-24T07:01:10.010000"],["2024-07-24T07:01:11.010000"],["2024-07-24T07:01:12.010000"],["2024-07-24T07:01:13.010000"],["2024-07-24T07:01:14.010000"],["2024-07-24T07:01:15.010000"],["2024-07-24T07:01:16.010000"],["2024-07-24T07:01:17.010000"],["2024-07-24T07:01:18.010000"],["2024-07-24T07:01:19.010000"],["2024-07-24T07:01:20.010000"],["2024-07-24T07:01:21.010000"],["2024-07-24T07:01:22.010000"],["2024-07-24T07:01:23.010000"],["2024-07-24T07:01:24.010000"],["2024-07-24T07:01:25.010000"],["2024-07-24T07:01:26.010000"],["2024-07-24T07:01:27.010000"],["2024-07-24T07:01:28.010000"],["2024-07-24T07:01:29.010000"],["2024-07-24T07:01:30.010000"],["2024-07-24T07:01:31.010000"],["2024-07-24T07:01:32.010000"],["2024-07-24T07:01:33.010000"],["2024-07-24T07:01:34.010000"],["2024-07-24T07:01:35.010000"],["2024-07-24T07:01:36.010000"],["2024-07-24T07:01:37.010000"],["2024-07-24T07:01:38.010000"],["2024-07-24T07:01:39.010000"],["2024-07-24T07:01:40.010000"],["2024-07-24T07:01:41.010000"],["2024-07-24T07:01:42.010000"],["2024-07-24T07:01:43.010000"],["2024-07-24T07:01:44.010000"],["2024-07-24T07:01:45.010000"],["2024-07-24T07:01:46.010000"],["2024-07-24T07:01:47.010000"],["2024-07-24T07:01:48.010000"],["2024-07-24T07:01:49.010000"],["2024-07-24T07:01:50.010000"],["2024-07-24T07:01:51.010000"],["2024-07-24T07:01:52.010000"],["2024-07-24T07:01:53.010000"],["2024-07-24T07:01:54.010000"],["2024-07-24T07:01:55.010000"],["2024-07-24T07:01:56.010000"],["2024-07-24T07:01:57.010000"],["2024-07-24T07:01:58.010000"],["2024-07-24T07:01:59.010000"],["2024-07-24T07:02:00.010000"],["2024-07-24T07:02:01.010000"],["2024-07-24T07:02:02.010000"],["2024-07-24T07:02:03.010000"],["2024-07-24T07:02:04.010000"],["2024-07-24T07:02:05.010000"],["2024-07-24T07:02:06.010000"],["2024-07-24T07:02:07.010000"],["2024-07-24T07:02:08.010000"],["2024-07-24T07:02:09.010000"],["2024-07-24T07:02:10.010000"],["2024-07-24T07:02:11.010000"],["2024-07-24T07:02:12.010000"],["2024-07-24T07:02:13.010000"],["2024-07-24T07:02:14.010000"],["2024-07-24T07:02:15.010000"],["2024-07-24T07:02:16.010000"],["2024-07-24T07:02:17.010000"],["2024-07-24T07:02:18.010000"],["2024-07-24T07:02:19.010000"],["2024-07-24T07:02:20.010000"],["2024-07-24T07:02:21.010000"],["2024-07-24T07:02:22.010000"],["2024-07-24T07:02:23.010000"],["2024-07-24T07:02:24.010000"],["2024-07-24T07:02:25.010000"],["2024-07-24T07:02:26.010000"],["2024-07-24T07:02:27.010000"],["2024-07-24T07:02:28.010000"],["2024-07-24T07:02:29.010000"],["2024-07-24T07:02:30.010000"],["2024-07-24T07:02:31.010000"],["2024-07-24T07:02:32.010000"],["2024-07-24T07:02:33.010000"],["2024-07-24T07:02:34.010000"],["2024-07-24T07:02:35.010000"],["2024-07-24T07:02:36.010000"],["2024-07-24T07:02:37.010000"],["2024-07-24T07:02:38.010000"],["2024-07-24T07:02:39.010000"],["2024-07-24T07:02:40.010000"],["2024-07-24T07:02:41.010000"],["2024-07-24T07:02:42.010000"],["2024-07-24T07:02:43.010000"],["2024-07-24T07:02:44.010000"],["2024-07-24T07:02:45.010000"],["2024-07-24T07:02:46.010000"],["2024-07-24T07:02:47.010000"],["2024-07-24T07:02:48.010000"],["2024-07-24T07:02:49.010000"],["2024-07-24T07:02:50.010000"],["2024-07-24T07:02:51.010000"],["2024-07-24T07:02:52.010000"],["2024-07-24T07:02:53.010000"],["2024-07-24T07:02:54.010000"],["2024-07-24T07:02:55.010000"],["2024-07-24T07:02:56.010000"],["2024-07-24T07:02:57.010000"],["2024-07-24T07:02:58.010000"],["2024-07-24T07:02:59.010000"],["2024-07-24T07:03:00.010000"],["2024-07-24T07:03:01.010000"],["2024-07-24T07:03:02.010000"],["2024-07-24T07:03:03.010000"],["2024-07-24T07:03:04.010000"],["2024-07-24T07:03:05.010000"],["2024-07-24T07:03:06.010000"],["2024-07-24T07:03:07.010000"],["2024-07-24T07:03:08.010000"],["2024-07-24T07:03:09.010000"],["2024-07-24T07:03:10.010000"],["2024-07-24T07:03:11.010000"],["2024-07-24T07:03:12.010000"],["2024-07-24T07:03:13.010000"],["2024-07-24T07:03:14.010000"],["2024-07-24T07:03:15.010000"],["2024-07-24T07:03:16.010000"],["2024-07-24T07:03:17.010000"],["2024-07-24T07:03:18.010000"],["2024-07-24T07:03:19.010000"],["2024-07-24T07:03:20.010000"],["2024-07-24T07:03:21.010000"],["2024-07-24T07:03:22.010000"],["2024-07-24T07:03:23.010000"],["2024-07-24T07:03:24.010000"],["2024-07-24T07:03:25.010000"],["2024-07-24T07:03:26.010000"],["2024-07-24T07:03:27.010000"],["2024-07-24T07:03:28.010000"],["2024-07-24T07:03:29.010000"],["2024-07-24T07:03:30.010000"],["2024-07-24T07:03:31.010000"],["2024-07-24T07:03:32.010000"],["2024-07-24T07:03:33.010000"],["2024-07-24T07:03:34.010000"],["2024-07-24T07:03:35.010000"],["2024-07-24T07:03:36.010000"],["2024-07-24T07:03:37.010000"],["2024-07-24T07:03:38.010000"],["2024-07-24T07:03:39.010000"],["2024-07-24T07:03:40.010000"],["2024-07-24T07:03:41.010000"],["2024-07-24T07:03:42.010000"],["2024-07-24T07:03:43.010000"],["2024-07-24T07:03:44.010000"],["2024-07-24T07:03:45.010000"],["2024-07-24T07:03:46.010000"],["2024-07-24T07:03:47.010000"],["2024-07-24T07:03:48.010000"],["2024-07-24T07:03:49.010000"],["2024-07-24T07:03:50.010000"],["2024-07-24T07:03:51.010000"],["2024-07-24T07:03:52.010000"],["2024-07-24T07:03:53.010000"],["2024-07-24T07:03:54.010000"],["2024-07-24T07:03:55.010000"],["2024-07-24T07:03:56.010000"],["2024-07-24T07:03:57.010000"],["2024-07-24T07:03:58.010000"],["2024-07-24T07:03:59.010000"],["2024-07-24T07:04:00.010000"],["2024-07-24T07:04:01.010000"],["2024-07-24T07:04:02.010000"],["2024-07-24T07:04:03.010000"],["2024-07-24T07:04:04.010000"],["2024-07-24T07:04:05.010000"],["2024-07-24T07:04:06.010000"],["2024-07-24T07:04:07.010000"],["2024-07-24T07:04:08.010000"],["2024-07-24T07:04:09.010000"],["2024-07-24T07:04:10.010000"],["2024-07-24T07:04:11.010000"],["2024-07-24T07:04:12.010000"],["2024-07-24T07:04:13.010000"],["2024-07-24T07:04:14.010000"],["2024-07-24T07:04:15.010000"],["2024-07-24T07:04:16.010000"],["2024-07-24T07:04:17.010000"],["2024-07-24T07:04:18.010000"],["2024-07-24T07:04:19.010000"],["2024-07-24T07:04:20.010000"],["2024-07-24T07:04:21.010000"],["2024-07-24T07:04:22.010000"],["2024-07-24T07:04:23.010000"],["2024-07-24T07:04:24.010000"],["2024-07-24T07:04:25.010000"],["2024-07-24T07:04:26.010000"],["2024-07-24T07:04:27.010000"],["2024-07-24T07:04:28.010000"],["2024-07-24T07:04:29.010000"],["2024-07-24T07:04:30.010000"],["2024-07-24T07:04:31.010000"],["2024-07-24T07:04:32.010000"],["2024-07-24T07:04:33.010000"],["2024-07-24T07:04:34.010000"],["2024-07-24T07:04:35.010000"],["2024-07-24T07:04:36.010000"],["2024-07-24T07:04:37.010000"],["2024-07-24T07:04:38.010000"],["2024-07-24T07:04:39.010000"],["2024-07-24T07:04:40.010000"],["2024-07-24T07:04:41.010000"],["2024-07-24T07:04:42.010000"],["2024-07-24T07:04:43.010000"],["2024-07-24T07:04:44.010000"],["2024-07-24T07:04:45.010000"],["2024-07-24T07:04:46.010000"],["2024-07-24T07:04:47.010000"],["2024-07-24T07:04:48.010000"],["2024-07-24T07:04:49.010000"],["2024-07-24T07:04:50.010000"],["2024-07-24T07:04:51.010000"],["2024-07-24T07:04:52.010000"],["2024-07-24T07:04:53.010000"],["2024-07-24T07:04:54.010000"],["2024-07-24T07:04:55.010000"],["2024-07-24T07:04:56.010000"],["2024-07-24T07:04:57.010000"],["2024-07-24T07:04:58.010000"],["2024-07-24T07:04:59.010000"],["2024-07-24T07:05:00.010000"],["2024-07-24T07:05:01.010000"],["2024-07-24T07:05:02.010000"],["2024-07-24T07:05:03.010000"],["2024-07-24T07:05:04.010000"],["2024-07-24T07:05:05.010000"],["2024-07-24T07:05:06.010000"],["2024-07-24T07:05:07.010000"],["2024-07-24T07:05:08.010000"],["2024-07-24T07:05:09.010000"],["2024-07-24T07:05:10.010000"],["2024-07-24T07:05:11.010000"],["2024-07-24T07:05:12.010000"],["2024-07-24T07:05:13.010000"],["2024-07-24T07:05:14.010000"],["2024-07-24T07:05:15.010000"],["2024-07-24T07:05:16.010000"],["2024-07-24T07:05:17.010000"],["2024-07-24T07:05:18.010000"],["2024-07-24T07:05:19.010000"],["2024-07-24T07:05:20.010000"],["2024-07-24T07:05:21.010000"],["2024-07-24T07:05:22.010000"],["2024-07-24T07:05:23.010000"],["2024-07-24T07:05:24.010000"],["2024-07-24T07:05:25.010000"],["2024-07-24T07:05:26.010000"],["2024-07-24T07:05:27.010000"],["2024-07-24T07:05:28.010000"],["2024-07-24T07:05:29.010000"],["2024-07-24T07:05:30.010000"],["2024-07-24T07:05:31.010000"],["2024-07-24T07:05:32.010000"],["2024-07-24T07:05:33.010000"],["2024-07-24T07:05:34.010000"],["2024-07-24T07:05:35.010000"],["2024-07-24T07:05:36.010000"],["2024-07-24T07:05:37.010000"],["2024-07-24T07:05:38.010000"],["2024-07-24T07:05:39.010000"],["2024-07-24T07:05:40.010000"],["2024-07-24T07:05:41.010000"],["2024-07-24T07:05:42.010000"],["2024-07-24T07:05:43.010000"],["2024-07-24T07:05:44.010000"],["2024-07-24T07:05:45.010000"],["2024-07-24T07:05:46.010000"],["2024-07-24T07:05:47.010000"],["2024-07-24T07:05:48.010000"],["2024-07-24T07:05:49.010000"],["2024-07-24T07:05:50.010000"],["2024-07-24T07:05:51.010000"],["2024-07-24T07:05:52.010000"],["2024-07-24T07:05:53.010000"],["2024-07-24T07:05:54.010000"],["2024-07-24T07:05:55.010000"],["2024-07-24T07:05:56.010000"],["2024-07-24T07:05:57.010000"],["2024-07-24T07:05:58.010000"],["2024-07-24T07:05:59.010000"],["2024-07-24T07:06:00.010000"],["2024-07-24T07:06:01.010000"],["2024-07-24T07:06:02.010000"],["2024-07-24T07:06:03.010000"],["2024-07-24T07:06:04.010000"],["2024-07-24T07:06:05.010000"],["2024-07-24T07:06:06.010000"],["2024-07-24T07:06:07.010000"],["2024-07-24T07:06:08.010000"],["2024-07-24T07:06:09.010000"],["2024-07-24T07:06:10.010000"],["2024-07-24T07:06:11.010000"],["2024-07-24T07:06:12.010000"],["2024-07-24T07:06:13.010000"],["2024-07-24T07:06:14.010000"],["2024-07-24T07:06:15.010000"],["2024-07-24T07:06:16.010000"],["2024-07-24T07:06:17.010000"],["2024-07-24T07:06:18.010000"],["2024-07-24T07:06:19.010000"],["2024-07-24T07:06:20.010000"],["2024-07-24T07:06:21.010000"],["2024-07-24T07:06:22.010000"],["2024-07-24T07:06:23.010000"],["2024-07-24T07:06:24.010000"],["2024-07-24T07:06:25.010000"],["2024-07-24T07:06:26.010000"],["2024-07-24T07:06:27.010000"],["2024-07-24T07:06:28.010000"],["2024-07-24T07:06:29.010000"],["2024-07-24T07:06:30.010000"],["2024-07-24T07:06:31.010000"],["2024-07-24T07:06:32.010000"],["2024-07-24T07:06:33.010000"],["2024-07-24T07:06:34.010000"],["2024-07-24T07:06:35.010000"],["2024-07-24T07:06:36.010000"],["2024-07-24T07:06:37.010000"],["2024-07-24T07:06:38.010000"],["2024-07-24T07:06:39.010000"],["2024-07-24T07:06:40.010000"],["2024-07-24T07:06:41.010000"],["2024-07-24T07:06:42.010000"],["2024-07-24T07:06:43.010000"],["2024-07-24T07:06:44.010000"],["2024-07-24T07:06:45.010000"],["2024-07-24T07:06:46.010000"],["2024-07-24T07:06:47.010000"],["2024-07-24T07:06:48.010000"],["2024-07-24T07:06:49.010000"],["2024-07-24T07:06:50.010000"],["2024-07-24T07:06:51.010000"],["2024-07-24T07:06:52.010000"],["2024-07-24T07:06:53.010000"],["2024-07-24T07:06:54.010000"],["2024-07-24T07:06:55.010000"],["2024-07-24T07:06:56.010000"],["2024-07-24T07:06:57.010000"],["2024-07-24T07:06:58.010000"],["2024-07-24T07:06:59.010000"],["2024-07-24T07:07:00.010000"],["2024-07-24T07:07:01.010000"],["2024-07-24T07:07:02.010000"],["2024-07-24T07:07:03.010000"],["2024-07-24T07:07:04.010000"],["2024-07-24T07:07:05.010000"],["2024-07-24T07:07:06.010000"],["2024-07-24T07:07:07.010000"],["2024-07-24T07:07:08.010000"],["2024-07-24T07:07:09.010000"],["2024-07-24T07:07:10.010000"],["2024-07-24T07:07:11.010000"],["2024-07-24T07:07:12.010000"],["2024-07-24T07:07:13.010000"],["2024-07-24T07:07:14.010000"],["2024-07-24T07:07:15.010000"],["2024-07-24T07:07:16.010000"],["2024-07-24T07:07:17.010000"],["2024-07-24T07:07:18.010000"],["2024-07-24T07:07:19.010000"],["2024-07-24T07:07:20.010000"],["2024-07-24T07:07:21.010000"],["2024-07-24T07:07:22.010000"],["2024-07-24T07:07:23.010000"],["2024-07-24T07:07:24.010000"],["2024-07-24T07:07:25.010000"],["2024-07-24T07:07:26.010000"],["2024-07-24T07:07:27.010000"],["2024-07-24T07:07:28.010000"],["2024-07-24T07:07:29.010000"],["2024-07-24T07:07:30.010000"],["2024-07-24T07:07:31.010000"],["2024-07-24T07:07:32.010000"],["2024-07-24T07:07:33.010000"],["2024-07-24T07:07:34.010000"],["2024-07-24T07:07:35.010000"],["2024-07-24T07:07:36.010000"],["2024-07-24T07:07:37.010000"],["2024-07-24T07:07:38.010000"],["2024-07-24T07:07:39.010000"],["2024-07-24T07:07:40.010000"],["2024-07-24T07:07:41.010000"],["2024-07-24T07:07:42.010000"],["2024-07-24T07:07:43.010000"],["2024-07-24T07:07:44.010000"],["2024-07-24T07:07:45.010000"],["2024-07-24T07:07:46.010000"],["2024-07-24T07:07:47.010000"],["2024-07-24T07:07:48.010000"],["2024-07-24T07:07:49.010000"],["2024-07-24T07:07:50.010000"],["2024-07-24T07:07:51.010000"],["2024-07-24T07:07:52.010000"],["2024-07-24T07:07:53.010000"],["2024-07-24T07:07:54.010000"],["2024-07-24T07:07:55.010000"],["2024-07-24T07:07:56.010000"],["2024-07-24T07:07:57.010000"],["2024-07-24T07:07:58.010000"],["2024-07-24T07:07:59.010000"],["2024-07-24T07:08:00.010000"],["2024-07-24T07:08:01.010000"],["2024-07-24T07:08:02.010000"],["2024-07-24T07:08:03.010000"],["2024-07-24T07:08:04.010000"],["2024-07-24T07:08:05.010000"],["2024-07-24T07:08:06.010000"],["2024-07-24T07:08:07.010000"],["2024-07-24T07:08:08.010000"],["2024-07-24T07:08:09.010000"],["2024-07-24T07:08:10.010000"],["2024-07-24T07:08:11.010000"],["2024-07-24T07:08:12.010000"],["2024-07-24T07:08:13.010000"],["2024-07-24T07:08:14.010000"],["2024-07-24T07:08:15.010000"],["2024-07-24T07:08:16.010000"],["2024-07-24T07:08:17.010000"],["2024-07-24T07:08:18.010000"],["2024-07-24T07:08:19.010000"],["2024-07-24T07:08:20.010000"],["2024-07-24T07:08:21.010000"],["2024-07-24T07:08:22.010000"],["2024-07-24T07:08:23.010000"],["2024-07-24T07:08:24.010000"],["2024-07-24T07:08:25.010000"],["2024-07-24T07:08:26.010000"],["2024-07-24T07:08:27.010000"],["2024-07-24T07:08:28.010000"],["2024-07-24T07:08:29.010000"],["2024-07-24T07:08:30.010000"],["2024-07-24T07:08:31.010000"],["2024-07-24T07:08:32.010000"],["2024-07-24T07:08:33.010000"],["2024-07-24T07:08:34.010000"],["2024-07-24T07:08:35.010000"],["2024-07-24T07:08:36.010000"],["2024-07-24T07:08:37.010000"],["2024-07-24T07:08:38.010000"],["2024-07-24T07:08:39.010000"],["2024-07-24T07:08:40.010000"],["2024-07-24T07:08:41.010000"],["2024-07-24T07:08:42.010000"],["2024-07-24T07:08:43.010000"],["2024-07-24T07:08:44.010000"],["2024-07-24T07:08:45.010000"],["2024-07-24T07:08:46.010000"],["2024-07-24T07:08:47.010000"],["2024-07-24T07:08:48.010000"],["2024-07-24T07:08:49.010000"],["2024-07-24T07:08:50.010000"],["2024-07-24T07:08:51.010000"],["2024-07-24T07:08:52.010000"],["2024-07-24T07:08:53.010000"],["2024-07-24T07:08:54.010000"],["2024-07-24T07:08:55.010000"],["2024-07-24T07:08:56.010000"],["2024-07-24T07:08:57.010000"],["2024-07-24T07:08:58.010000"],["2024-07-24T07:08:59.010000"],["2024-07-24T07:09:00.010000"],["2024-07-24T07:09:01.010000"],["2024-07-24T07:09:02.010000"],["2024-07-24T07:09:03.010000"],["2024-07-24T07:09:04.010000"],["2024-07-24T07:09:05.010000"],["2024-07-24T07:09:06.010000"],["2024-07-24T07:09:07.010000"],["2024-07-24T07:09:08.010000"],["2024-07-24T07:09:09.010000"],["2024-07-24T07:09:10.010000"],["2024-07-24T07:09:11.010000"],["2024-07-24T07:09:12.010000"],["2024-07-24T07:09:13.010000"],["2024-07-24T07:09:14.010000"],["2024-07-24T07:09:15.010000"],["2024-07-24T07:09:16.010000"],["2024-07-24T07:09:17.010000"],["2024-07-24T07:09:18.010000"],["2024-07-24T07:09:19.010000"],["2024-07-24T07:09:20.010000"],["2024-07-24T07:09:21.010000"],["2024-07-24T07:09:22.010000"],["2024-07-24T07:09:23.010000"],["2024-07-24T07:09:24.010000"],["2024-07-24T07:09:25.010000"],["2024-07-24T07:09:26.010000"],["2024-07-24T07:09:27.010000"],["2024-07-24T07:09:28.010000"],["2024-07-24T07:09:29.010000"],["2024-07-24T07:09:30.010000"],["2024-07-24T07:09:31.010000"],["2024-07-24T07:09:32.010000"],["2024-07-24T07:09:33.010000"],["2024-07-24T07:09:34.010000"],["2024-07-24T07:09:35.010000"],["2024-07-24T07:09:36.010000"],["2024-07-24T07:09:37.010000"],["2024-07-24T07:09:38.010000"],["2024-07-24T07:09:39.010000"],["2024-07-24T07:09:40.010000"],["2024-07-24T07:09:41.010000"],["2024-07-24T07:09:42.010000"],["2024-07-24T07:09:43.010000"],["2024-07-24T07:09:44.010000"],["2024-07-24T07:09:45.010000"],["2024-07-24T07:09:46.010000"],["2024-07-24T07:09:47.010000"],["2024-07-24T07:09:48.010000"],["2024-07-24T07:09:49.010000"],["2024-07-24T07:09:50.010000"],["2024-07-24T07:09:51.010000"],["2024-07-24T07:09:52.010000"],["2024-07-24T07:09:53.010000"],["2024-07-24T07:09:54.010000"],["2024-07-24T07:09:55.010000"],["2024-07-24T07:09:56.010000"],["2024-07-24T07:09:57.010000"],["2024-07-24T07:09:58.010000"],["2024-07-24T07:09:59.010000"],["2024-07-24T07:10:00.010000"],["2024-07-24T07:10:01.010000"],["2024-07-24T07:10:02.010000"],["2024-07-24T07:10:03.010000"],["2024-07-24T07:10:04.010000"],["2024-07-24T07:10:05.010000"],["2024-07-24T07:10:06.010000"],["2024-07-24T07:10:07.010000"],["2024-07-24T07:10:08.010000"],["2024-07-24T07:10:09.010000"],["2024-07-24T07:10:10.010000"],["2024-07-24T07:10:11.010000"],["2024-07-24T07:10:12.010000"],["2024-07-24T07:10:13.010000"],["2024-07-24T07:10:14.010000"],["2024-07-24T07:10:15.010000"],["2024-07-24T07:10:16.010000"],["2024-07-24T07:10:17.010000"],["2024-07-24T07:10:18.010000"],["2024-07-24T07:10:19.010000"],["2024-07-24T07:10:20.010000"],["2024-07-24T07:10:21.010000"],["2024-07-24T07:10:22.010000"],["2024-07-24T07:10:23.010000"],["2024-07-24T07:10:24.010000"],["2024-07-24T07:10:25.010000"],["2024-07-24T07:10:26.010000"],["2024-07-24T07:10:27.010000"],["2024-07-24T07:10:28.010000"],["2024-07-24T07:10:29.010000"],["2024-07-24T07:10:30.010000"],["2024-07-24T07:10:31.010000"],["2024-07-24T07:10:32.010000"],["2024-07-24T07:10:33.010000"],["2024-07-24T07:10:34.010000"],["2024-07-24T07:10:35.010000"],["2024-07-24T07:10:36.010000"],["2024-07-24T07:10:37.010000"],["2024-07-24T07:10:38.010000"],["2024-07-24T07:10:39.010000"],["2024-07-24T07:10:40.010000"],["2024-07-24T07:10:41.010000"],["2024-07-24T07:10:42.010000"],["2024-07-24T07:10:43.010000"],["2024-07-24T07:10:44.010000"],["2024-07-24T07:10:45.010000"],["2024-07-24T07:10:46.010000"],["2024-07-24T07:10:47.010000"],["2024-07-24T07:10:48.010000"],["2024-07-24T07:10:49.010000"],["2024-07-24T07:10:50.010000"],["2024-07-24T07:10:51.010000"],["2024-07-24T07:10:52.010000"],["2024-07-24T07:10:53.010000"],["2024-07-24T07:10:54.010000"],["2024-07-24T07:10:55.010000"],["2024-07-24T07:10:56.010000"],["2024-07-24T07:10:57.010000"],["2024-07-24T07:10:58.010000"],["2024-07-24T07:10:59.010000"],["2024-07-24T07:11:00.010000"],["2024-07-24T07:11:01.010000"],["2024-07-24T07:11:02.010000"],["2024-07-24T07:11:03.010000"],["2024-07-24T07:11:04.010000"],["2024-07-24T07:11:05.010000"],["2024-07-24T07:11:06.010000"],["2024-07-24T07:11:07.010000"],["2024-07-24T07:11:08.010000"],["2024-07-24T07:11:09.010000"],["2024-07-24T07:11:10.010000"],["2024-07-24T07:11:11.010000"],["2024-07-24T07:11:12.010000"],["2024-07-24T07:11:13.010000"],["2024-07-24T07:11:14.010000"],["2024-07-24T07:11:15.010000"],["2024-07-24T07:11:16.010000"],["2024-07-24T07:11:17.010000"],["2024-07-24T07:11:18.010000"],["2024-07-24T07:11:19.010000"],["2024-07-24T07:11:20.010000"],["2024-07-24T07:11:21.010000"],["2024-07-24T07:11:22.010000"],["2024-07-24T07:11:23.010000"],["2024-07-24T07:11:24.010000"],["2024-07-24T07:11:25.010000"],["2024-07-24T07:11:26.010000"],["2024-07-24T07:11:27.010000"],["2024-07-24T07:11:28.010000"],["2024-07-24T07:11:29.010000"],["2024-07-24T07:11:30.010000"],["2024-07-24T07:11:31.010000"],["2024-07-24T07:11:32.010000"],["2024-07-24T07:11:33.010000"],["2024-07-24T07:11:34.010000"],["2024-07-24T07:11:35.010000"],["2024-07-24T07:11:36.010000"],["2024-07-24T07:11:37.010000"],["2024-07-24T07:11:38.010000"],["2024-07-24T07:11:39.010000"],["2024-07-24T07:11:40.010000"],["2024-07-24T07:11:41.010000"],["2024-07-24T07:11:42.010000"],["2024-07-24T07:11:43.010000"],["2024-07-24T07:11:44.010000"],["2024-07-24T07:11:45.010000"],["2024-07-24T07:11:46.010000"],["2024-07-24T07:11:47.010000"],["2024-07-24T07:11:48.010000"],["2024-07-24T07:11:49.010000"],["2024-07-24T07:11:50.010000"],["2024-07-24T07:11:51.010000"],["2024-07-24T07:11:52.010000"],["2024-07-24T07:11:53.010000"],["2024-07-24T07:11:54.010000"],["2024-07-24T07:11:55.010000"],["2024-07-24T07:11:56.010000"],["2024-07-24T07:11:57.010000"],["2024-07-24T07:11:58.010000"],["2024-07-24T07:11:59.010000"],["2024-07-24T07:12:00.010000"],["2024-07-24T07:12:01.010000"],["2024-07-24T07:12:02.010000"],["2024-07-24T07:12:03.010000"],["2024-07-24T07:12:04.010000"],["2024-07-24T07:12:05.010000"],["2024-07-24T07:12:06.010000"],["2024-07-24T07:12:07.010000"],["2024-07-24T07:12:08.010000"],["2024-07-24T07:12:09.010000"],["2024-07-24T07:12:10.010000"],["2024-07-24T07:12:11.010000"],["2024-07-24T07:12:12.010000"],["2024-07-24T07:12:13.010000"],["2024-07-24T07:12:14.010000"],["2024-07-24T07:12:15.010000"],["2024-07-24T07:12:16.010000"],["2024-07-24T07:12:17.010000"],["2024-07-24T07:12:18.010000"],["2024-07-24T07:12:19.010000"],["2024-07-24T07:12:20.010000"],["2024-07-24T07:12:21.010000"],["2024-07-24T07:12:22.010000"],["2024-07-24T07:12:23.010000"],["2024-07-24T07:12:24.010000"],["2024-07-24T07:12:25.010000"],["2024-07-24T07:12:26.010000"],["2024-07-24T07:12:27.010000"],["2024-07-24T07:12:28.010000"],["2024-07-24T07:12:29.010000"],["2024-07-24T07:12:30.010000"],["2024-07-24T07:12:31.010000"],["2024-07-24T07:12:32.010000"],["2024-07-24T07:12:33.010000"],["2024-07-24T07:12:34.010000"],["2024-07-24T07:12:35.010000"],["2024-07-24T07:12:36.010000"],["2024-07-24T07:12:37.010000"],["2024-07-24T07:12:38.010000"],["2024-07-24T07:12:39.010000"],["2024-07-24T07:12:40.010000"],["2024-07-24T07:12:41.010000"],["2024-07-24T07:12:42.010000"],["2024-07-24T07:12:43.010000"],["2024-07-24T07:12:44.010000"],["2024-07-24T07:12:45.010000"],["2024-07-24T07:12:46.010000"],["2024-07-24T07:12:47.010000"],["2024-07-24T07:12:48.010000"],["2024-07-24T07:12:49.010000"],["2024-07-24T07:12:50.010000"],["2024-07-24T07:12:51.010000"],["2024-07-24T07:12:52.010000"],["2024-07-24T07:12:53.010000"],["2024-07-24T07:12:54.010000"],["2024-07-24T07:12:55.010000"],["2024-07-24T07:12:56.010000"],["2024-07-24T07:12:57.010000"],["2024-07-24T07:12:58.010000"],["2024-07-24T07:12:59.010000"],["2024-07-24T07:13:00.010000"],["2024-07-24T07:13:01.010000"],["2024-07-24T07:13:02.010000"],["2024-07-24T07:13:03.010000"],["2024-07-24T07:13:04.010000"],["2024-07-24T07:13:05.010000"],["2024-07-24T07:13:06.010000"],["2024-07-24T07:13:07.010000"],["2024-07-24T07:13:08.010000"],["2024-07-24T07:13:09.010000"],["2024-07-24T07:13:10.010000"],["2024-07-24T07:13:11.010000"],["2024-07-24T07:13:12.010000"],["2024-07-24T07:13:13.010000"],["2024-07-24T07:13:14.010000"],["2024-07-24T07:13:15.010000"],["2024-07-24T07:13:16.010000"],["2024-07-24T07:13:17.010000"],["2024-07-24T07:13:18.010000"],["2024-07-24T07:13:19.010000"],["2024-07-24T07:13:20.010000"],["2024-07-24T07:13:21.010000"],["2024-07-24T07:13:22.010000"],["2024-07-24T07:13:23.010000"],["2024-07-24T07:13:24.010000"],["2024-07-24T07:13:25.010000"],["2024-07-24T07:13:26.010000"],["2024-07-24T07:13:27.010000"],["2024-07-24T07:13:28.010000"],["2024-07-24T07:13:29.010000"],["2024-07-24T07:13:30.010000"],["2024-07-24T07:13:31.010000"],["2024-07-24T07:13:32.010000"],["2024-07-24T07:13:33.010000"],["2024-07-24T07:13:34.010000"],["2024-07-24T07:13:35.010000"],["2024-07-24T07:13:36.010000"],["2024-07-24T07:13:37.010000"],["2024-07-24T07:13:38.010000"],["2024-07-24T07:13:39.010000"],["2024-07-24T07:13:40.010000"],["2024-07-24T07:13:41.010000"],["2024-07-24T07:13:42.010000"],["2024-07-24T07:13:43.010000"],["2024-07-24T07:13:44.010000"],["2024-07-24T07:13:45.010000"],["2024-07-24T07:13:46.010000"],["2024-07-24T07:13:47.010000"],["2024-07-24T07:13:48.010000"],["2024-07-24T07:13:49.010000"],["2024-07-24T07:13:50.010000"],["2024-07-24T07:13:51.010000"],["2024-07-24T07:13:52.010000"],["2024-07-24T07:13:53.010000"],["2024-07-24T07:13:54.010000"],["2024-07-24T07:13:55.010000"],["2024-07-24T07:13:56.010000"],["2024-07-24T07:13:57.010000"],["2024-07-24T07:13:58.010000"],["2024-07-24T07:13:59.010000"],["2024-07-24T07:14:00.010000"],["2024-07-24T07:14:01.010000"],["2024-07-24T07:14:02.010000"],["2024-07-24T07:14:03.010000"],["2024-07-24T07:14:04.010000"],["2024-07-24T07:14:05.010000"],["2024-07-24T07:14:06.010000"],["2024-07-24T07:14:07.010000"],["2024-07-24T07:14:08.010000"],["2024-07-24T07:14:09.010000"],["2024-07-24T07:14:10.010000"],["2024-07-24T07:14:11.010000"],["2024-07-24T07:14:12.010000"],["2024-07-24T07:14:13.010000"],["2024-07-24T07:14:14.010000"],["2024-07-24T07:14:15.010000"],["2024-07-24T07:14:16.010000"],["2024-07-24T07:14:17.010000"],["2024-07-24T07:14:18.010000"],["2024-07-24T07:14:19.010000"],["2024-07-24T07:14:20.010000"],["2024-07-24T07:14:21.010000"],["2024-07-24T07:14:22.010000"],["2024-07-24T07:14:23.010000"],["2024-07-24T07:14:24.010000"],["2024-07-24T07:14:25.010000"],["2024-07-24T07:14:26.010000"],["2024-07-24T07:14:27.010000"],["2024-07-24T07:14:28.010000"],["2024-07-24T07:14:29.010000"],["2024-07-24T07:14:30.010000"],["2024-07-24T07:14:31.010000"],["2024-07-24T07:14:32.010000"],["2024-07-24T07:14:33.010000"],["2024-07-24T07:14:34.010000"],["2024-07-24T07:14:35.010000"],["2024-07-24T07:14:36.010000"],["2024-07-24T07:14:37.010000"],["2024-07-24T07:14:38.010000"],["2024-07-24T07:14:39.010000"],["2024-07-24T07:14:40.010000"],["2024-07-24T07:14:41.010000"],["2024-07-24T07:14:42.010000"],["2024-07-24T07:14:43.010000"],["2024-07-24T07:14:44.010000"],["2024-07-24T07:14:45.010000"],["2024-07-24T07:14:46.010000"],["2024-07-24T07:14:47.010000"],["2024-07-24T07:14:48.010000"],["2024-07-24T07:14:49.010000"],["2024-07-24T07:14:50.010000"],["2024-07-24T07:14:51.010000"],["2024-07-24T07:14:52.010000"],["2024-07-24T07:14:53.010000"],["2024-07-24T07:14:54.010000"],["2024-07-24T07:14:55.010000"],["2024-07-24T07:14:56.010000"],["2024-07-24T07:14:57.010000"],["2024-07-24T07:14:58.010000"],["2024-07-24T07:14:59.010000"],["2024-07-24T07:15:00.010000"],["2024-07-24T07:15:01.010000"],["2024-07-24T07:15:02.010000"],["2024-07-24T07:15:03.010000"],["2024-07-24T07:15:04.010000"],["2024-07-24T07:15:05.010000"],["2024-07-24T07:15:06.010000"],["2024-07-24T07:15:07.010000"],["2024-07-24T07:15:08.010000"],["2024-07-24T07:15:09.010000"],["2024-07-24T07:15:10.010000"],["2024-07-24T07:15:11.010000"],["2024-07-24T07:15:12.010000"],["2024-07-24T07:15:13.010000"],["2024-07-24T07:15:14.010000"],["2024-07-24T07:15:15.010000"],["2024-07-24T07:15:16.010000"],["2024-07-24T07:15:17.010000"],["2024-07-24T07:15:18.010000"],["2024-07-24T07:15:19.010000"],["2024-07-24T07:15:20.010000"],["2024-07-24T07:15:21.010000"],["2024-07-24T07:15:22.010000"],["2024-07-24T07:15:23.010000"],["2024-07-24T07:15:24.010000"],["2024-07-24T07:15:25.010000"],["2024-07-24T07:15:26.010000"],["2024-07-24T07:15:27.010000"],["2024-07-24T07:15:28.010000"],["2024-07-24T07:15:29.010000"],["2024-07-24T07:15:30.010000"],["2024-07-24T07:15:31.010000"],["2024-07-24T07:15:32.010000"],["2024-07-24T07:15:33.010000"],["2024-07-24T07:15:34.010000"],["2024-07-24T07:15:35.010000"],["2024-07-24T07:15:36.010000"],["2024-07-24T07:15:37.010000"],["2024-07-24T07:15:38.010000"],["2024-07-24T07:15:39.010000"],["2024-07-24T07:15:40.010000"],["2024-07-24T07:15:41.010000"],["2024-07-24T07:15:42.010000"],["2024-07-24T07:15:43.010000"],["2024-07-24T07:15:44.010000"],["2024-07-24T07:15:45.010000"],["2024-07-24T07:15:46.010000"],["2024-07-24T07:15:47.010000"],["2024-07-24T07:15:48.010000"],["2024-07-24T07:15:49.010000"],["2024-07-24T07:15:50.010000"],["2024-07-24T07:15:51.010000"],["2024-07-24T07:15:52.010000"],["2024-07-24T07:15:53.010000"],["2024-07-24T07:15:54.010000"],["2024-07-24T07:15:55.010000"],["2024-07-24T07:15:56.010000"],["2024-07-24T07:15:57.010000"],["2024-07-24T07:15:58.010000"],["2024-07-24T07:15:59.010000"],["2024-07-24T07:16:00.010000"],["2024-07-24T07:16:01.010000"],["2024-07-24T07:16:02.010000"],["2024-07-24T07:16:03.010000"],["2024-07-24T07:16:04.010000"],["2024-07-24T07:16:05.010000"],["2024-07-24T07:16:06.010000"],["2024-07-24T07:16:07.010000"],["2024-07-24T07:16:08.010000"],["2024-07-24T07:16:09.010000"],["2024-07-24T07:16:10.010000"],["2024-07-24T07:16:11.010000"],["2024-07-24T07:16:12.010000"],["2024-07-24T07:16:13.010000"],["2024-07-24T07:16:14.010000"],["2024-07-24T07:16:15.010000"],["2024-07-24T07:16:16.010000"],["2024-07-24T07:16:17.010000"],["2024-07-24T07:16:18.010000"],["2024-07-24T07:16:19.010000"],["2024-07-24T07:16:20.010000"],["2024-07-24T07:16:21.010000"],["2024-07-24T07:16:22.010000"],["2024-07-24T07:16:23.010000"],["2024-07-24T07:16:24.010000"],["2024-07-24T07:16:25.010000"],["2024-07-24T07:16:26.010000"],["2024-07-24T07:16:27.010000"],["2024-07-24T07:16:28.010000"],["2024-07-24T07:16:29.010000"],["2024-07-24T07:16:30.010000"],["2024-07-24T07:16:31.010000"],["2024-07-24T07:16:32.010000"],["2024-07-24T07:16:33.010000"],["2024-07-24T07:16:34.010000"],["2024-07-24T07:16:35.010000"],["2024-07-24T07:16:36.010000"],["2024-07-24T07:16:37.010000"],["2024-07-24T07:16:38.010000"],["2024-07-24T07:16:39.010000"],["2024-07-24T07:16:40.010000"],["2024-07-24T07:16:41.010000"],["2024-07-24T07:16:42.010000"],["2024-07-24T07:16:43.010000"],["2024-07-24T07:16:44.010000"],["2024-07-24T07:16:45.010000"],["2024-07-24T07:16:46.010000"],["2024-07-24T07:16:47.010000"],["2024-07-24T07:16:48.010000"],["2024-07-24T07:16:49.010000"],["2024-07-24T07:16:50.010000"],["2024-07-24T07:16:51.010000"],["2024-07-24T07:16:52.010000"],["2024-07-24T07:16:53.010000"],["2024-07-24T07:16:54.010000"],["2024-07-24T07:16:55.010000"],["2024-07-24T07:16:56.010000"],["2024-07-24T07:16:57.010000"],["2024-07-24T07:16:58.010000"],["2024-07-24T07:16:59.010000"],["2024-07-24T07:17:00.010000"],["2024-07-24T07:17:01.010000"],["2024-07-24T07:17:02.010000"],["2024-07-24T07:17:03.010000"],["2024-07-24T07:17:04.010000"],["2024-07-24T07:17:05.010000"],["2024-07-24T07:17:06.010000"],["2024-07-24T07:17:07.010000"],["2024-07-24T07:17:08.010000"],["2024-07-24T07:17:09.010000"],["2024-07-24T07:17:10.010000"],["2024-07-24T07:17:11.010000"],["2024-07-24T07:17:12.010000"],["2024-07-24T07:17:13.010000"],["2024-07-24T07:17:14.010000"],["2024-07-24T07:17:15.010000"],["2024-07-24T07:17:16.010000"],["2024-07-24T07:17:17.010000"],["2024-07-24T07:17:18.010000"],["2024-07-24T07:17:19.010000"],["2024-07-24T07:17:20.010000"],["2024-07-24T07:17:21.010000"],["2024-07-24T07:17:22.010000"],["2024-07-24T07:17:23.010000"],["2024-07-24T07:17:24.010000"],["2024-07-24T07:17:25.010000"],["2024-07-24T07:17:26.010000"],["2024-07-24T07:17:27.010000"],["2024-07-24T07:17:28.010000"],["2024-07-24T07:17:29.010000"],["2024-07-24T07:17:30.010000"],["2024-07-24T07:17:31.010000"],["2024-07-24T07:17:32.010000"],["2024-07-24T07:17:33.010000"],["2024-07-24T07:17:34.010000"],["2024-07-24T07:17:35.010000"],["2024-07-24T07:17:36.010000"],["2024-07-24T07:17:37.010000"],["2024-07-24T07:17:38.010000"],["2024-07-24T07:17:39.010000"],["2024-07-24T07:17:40.010000"],["2024-07-24T07:17:41.010000"],["2024-07-24T07:17:42.010000"],["2024-07-24T07:17:43.010000"],["2024-07-24T07:17:44.010000"],["2024-07-24T07:17:45.010000"],["2024-07-24T07:17:46.010000"],["2024-07-24T07:17:47.010000"],["2024-07-24T07:17:48.010000"],["2024-07-24T07:17:49.010000"],["2024-07-24T07:17:50.010000"],["2024-07-24T07:17:51.010000"],["2024-07-24T07:17:52.010000"],["2024-07-24T07:17:53.010000"],["2024-07-24T07:17:54.010000"],["2024-07-24T07:17:55.010000"],["2024-07-24T07:17:56.010000"],["2024-07-24T07:17:57.010000"],["2024-07-24T07:17:58.010000"],["2024-07-24T07:17:59.010000"],["2024-07-24T07:18:00.010000"],["2024-07-24T07:18:01.010000"],["2024-07-24T07:18:02.010000"],["2024-07-24T07:18:03.010000"],["2024-07-24T07:18:04.010000"],["2024-07-24T07:18:05.010000"],["2024-07-24T07:18:06.010000"],["2024-07-24T07:18:07.010000"],["2024-07-24T07:18:08.010000"],["2024-07-24T07:18:09.010000"],["2024-07-24T07:18:10.010000"],["2024-07-24T07:18:11.010000"],["2024-07-24T07:18:12.010000"],["2024-07-24T07:18:13.010000"],["2024-07-24T07:18:14.010000"],["2024-07-24T07:18:15.010000"],["2024-07-24T07:18:16.010000"],["2024-07-24T07:18:17.010000"],["2024-07-24T07:18:18.010000"],["2024-07-24T07:18:19.010000"],["2024-07-24T07:18:20.010000"],["2024-07-24T07:18:21.010000"],["2024-07-24T07:18:22.010000"],["2024-07-24T07:18:23.010000"],["2024-07-24T07:18:24.010000"],["2024-07-24T07:18:25.010000"],["2024-07-24T07:18:26.010000"],["2024-07-24T07:18:27.010000"],["2024-07-24T07:18:28.010000"],["2024-07-24T07:18:29.010000"],["2024-07-24T07:18:30.010000"],["2024-07-24T07:18:31.010000"],["2024-07-24T07:18:32.010000"],["2024-07-24T07:18:33.010000"],["2024-07-24T07:18:34.010000"],["2024-07-24T07:18:35.010000"],["2024-07-24T07:18:36.010000"],["2024-07-24T07:18:37.010000"],["2024-07-24T07:18:38.010000"],["2024-07-24T07:18:39.010000"],["2024-07-24T07:18:40.010000"],["2024-07-24T07:18:41.010000"],["2024-07-24T07:18:42.010000"],["2024-07-24T07:18:43.010000"],["2024-07-24T07:18:44.010000"],["2024-07-24T07:18:45.010000"],["2024-07-24T07:18:46.010000"],["2024-07-24T07:18:47.010000"],["2024-07-24T07:18:48.010000"],["2024-07-24T07:18:49.010000"],["2024-07-24T07:18:50.010000"],["2024-07-24T07:18:51.010000"],["2024-07-24T07:18:52.010000"],["2024-07-24T07:18:53.010000"],["2024-07-24T07:18:54.010000"],["2024-07-24T07:18:55.010000"],["2024-07-24T07:18:56.010000"],["2024-07-24T07:18:57.010000"],["2024-07-24T07:18:58.010000"],["2024-07-24T07:18:59.010000"],["2024-07-24T07:19:00.010000"],["2024-07-24T07:19:01.010000"],["2024-07-24T07:19:02.010000"],["2024-07-24T07:19:03.010000"],["2024-07-24T07:19:04.010000"],["2024-07-24T07:19:05.010000"],["2024-07-24T07:19:06.010000"],["2024-07-24T07:19:07.010000"],["2024-07-24T07:19:08.010000"],["2024-07-24T07:19:09.010000"],["2024-07-24T07:19:10.010000"],["2024-07-24T07:19:11.010000"],["2024-07-24T07:19:12.010000"],["2024-07-24T07:19:13.010000"],["2024-07-24T07:19:14.010000"],["2024-07-24T07:19:15.010000"],["2024-07-24T07:19:16.010000"],["2024-07-24T07:19:17.010000"],["2024-07-24T07:19:18.010000"],["2024-07-24T07:19:19.010000"],["2024-07-24T07:19:20.010000"],["2024-07-24T07:19:21.010000"],["2024-07-24T07:19:22.010000"],["2024-07-24T07:19:23.010000"],["2024-07-24T07:19:24.010000"],["2024-07-24T07:19:25.010000"],["2024-07-24T07:19:26.010000"],["2024-07-24T07:19:27.010000"],["2024-07-24T07:19:28.010000"],["2024-07-24T07:19:29.010000"],["2024-07-24T07:19:30.010000"],["2024-07-24T07:19:31.010000"],["2024-07-24T07:19:32.010000"],["2024-07-24T07:19:33.010000"],["2024-07-24T07:19:34.010000"],["2024-07-24T07:19:35.010000"],["2024-07-24T07:19:36.010000"],["2024-07-24T07:19:37.010000"],["2024-07-24T07:19:38.010000"],["2024-07-24T07:19:39.010000"],["2024-07-24T07:19:40.010000"],["2024-07-24T07:19:41.010000"],["2024-07-24T07:19:42.010000"],["2024-07-24T07:19:43.010000"],["2024-07-24T07:19:44.010000"],["2024-07-24T07:19:45.010000"],["2024-07-24T07:19:46.010000"],["2024-07-24T07:19:47.010000"],["2024-07-24T07:19:48.010000"],["2024-07-24T07:19:49.010000"],["2024-07-24T07:19:50.010000"],["2024-07-24T07:19:51.010000"],["2024-07-24T07:19:52.010000"],["2024-07-24T07:19:53.010000"],["2024-07-24T07:19:54.010000"],["2024-07-24T07:19:55.010000"],["2024-07-24T07:19:56.010000"],["2024-07-24T07:19:57.010000"],["2024-07-24T07:19:58.010000"],["2024-07-24T07:19:59.010000"],["2024-07-24T07:20:00.010000"],["2024-07-24T07:20:01.010000"],["2024-07-24T07:20:02.010000"],["2024-07-24T07:20:03.010000"],["2024-07-24T07:20:04.010000"],["2024-07-24T07:20:05.010000"],["2024-07-24T07:20:06.010000"],["2024-07-24T07:20:07.010000"],["2024-07-24T07:20:08.010000"],["2024-07-24T07:20:09.010000"],["2024-07-24T07:20:10.010000"],["2024-07-24T07:20:11.010000"],["2024-07-24T07:20:12.010000"],["2024-07-24T07:20:13.010000"],["2024-07-24T07:20:14.010000"],["2024-07-24T07:20:15.010000"],["2024-07-24T07:20:16.010000"],["2024-07-24T07:20:17.010000"],["2024-07-24T07:20:18.010000"],["2024-07-24T07:20:19.010000"],["2024-07-24T07:20:20.010000"],["2024-07-24T07:20:21.010000"],["2024-07-24T07:20:22.010000"],["2024-07-24T07:20:23.010000"],["2024-07-24T07:20:24.010000"],["2024-07-24T07:20:25.010000"],["2024-07-24T07:20:26.010000"],["2024-07-24T07:20:27.010000"],["2024-07-24T07:20:28.010000"],["2024-07-24T07:20:29.010000"],["2024-07-24T07:20:30.010000"],["2024-07-24T07:20:31.010000"],["2024-07-24T07:20:32.010000"],["2024-07-24T07:20:33.010000"],["2024-07-24T07:20:34.010000"],["2024-07-24T07:20:35.010000"],["2024-07-24T07:20:36.010000"],["2024-07-24T07:20:37.010000"],["2024-07-24T07:20:38.010000"],["2024-07-24T07:20:39.010000"],["2024-07-24T07:20:40.010000"],["2024-07-24T07:20:41.010000"],["2024-07-24T07:20:42.010000"],["2024-07-24T07:20:43.010000"],["2024-07-24T07:20:44.010000"],["2024-07-24T07:20:45.010000"],["2024-07-24T07:20:46.010000"],["2024-07-24T07:20:47.010000"],["2024-07-24T07:20:48.010000"],["2024-07-24T07:20:49.010000"],["2024-07-24T07:20:50.010000"],["2024-07-24T07:20:51.010000"],["2024-07-24T07:20:52.010000"],["2024-07-24T07:20:53.010000"],["2024-07-24T07:20:54.010000"],["2024-07-24T07:20:55.010000"],["2024-07-24T07:20:56.010000"],["2024-07-24T07:20:57.010000"],["2024-07-24T07:20:58.010000"],["2024-07-24T07:20:59.010000"],["2024-07-24T07:21:00.010000"],["2024-07-24T07:21:01.010000"],["2024-07-24T07:21:02.010000"],["2024-07-24T07:21:03.010000"],["2024-07-24T07:21:04.010000"],["2024-07-24T07:21:05.010000"],["2024-07-24T07:21:06.010000"],["2024-07-24T07:21:07.010000"],["2024-07-24T07:21:08.010000"],["2024-07-24T07:21:09.010000"],["2024-07-24T07:21:10.010000"],["2024-07-24T07:21:11.010000"],["2024-07-24T07:21:12.010000"],["2024-07-24T07:21:13.010000"],["2024-07-24T07:21:14.010000"],["2024-07-24T07:21:15.010000"],["2024-07-24T07:21:16.010000"],["2024-07-24T07:21:17.010000"],["2024-07-24T07:21:18.010000"],["2024-07-24T07:21:19.010000"],["2024-07-24T07:21:20.010000"],["2024-07-24T07:21:21.010000"],["2024-07-24T07:21:22.010000"],["2024-07-24T07:21:23.010000"],["2024-07-24T07:21:24.010000"],["2024-07-24T07:21:25.010000"],["2024-07-24T07:21:26.010000"],["2024-07-24T07:21:27.010000"],["2024-07-24T07:21:28.010000"],["2024-07-24T07:21:29.010000"],["2024-07-24T07:21:30.010000"],["2024-07-24T07:21:31.010000"],["2024-07-24T07:21:32.010000"],["2024-07-24T07:21:33.010000"],["2024-07-24T07:21:34.010000"],["2024-07-24T07:21:35.010000"],["2024-07-24T07:21:36.010000"],["2024-07-24T07:21:37.010000"],["2024-07-24T07:21:38.010000"],["2024-07-24T07:21:39.010000"],["2024-07-24T07:21:40.010000"],["2024-07-24T07:21:41.010000"],["2024-07-24T07:21:42.010000"],["2024-07-24T07:21:43.010000"],["2024-07-24T07:21:44.010000"],["2024-07-24T07:21:45.010000"],["2024-07-24T07:21:46.010000"],["2024-07-24T07:21:47.010000"],["2024-07-24T07:21:48.010000"],["2024-07-24T07:21:49.010000"],["2024-07-24T07:21:50.010000"],["2024-07-24T07:21:51.010000"],["2024-07-24T07:21:52.010000"],["2024-07-24T07:21:53.010000"],["2024-07-24T07:21:54.010000"],["2024-07-24T07:21:55.010000"],["2024-07-24T07:21:56.010000"],["2024-07-24T07:21:57.010000"],["2024-07-24T07:21:58.010000"],["2024-07-24T07:21:59.010000"],["2024-07-24T07:22:00.010000"],["2024-07-24T07:22:01.010000"],["2024-07-24T07:22:02.010000"],["2024-07-24T07:22:03.010000"],["2024-07-24T07:22:04.010000"],["2024-07-24T07:22:05.010000"],["2024-07-24T07:22:06.010000"],["2024-07-24T07:22:07.010000"],["2024-07-24T07:22:08.010000"],["2024-07-24T07:22:09.010000"],["2024-07-24T07:22:10.010000"],["2024-07-24T07:22:11.010000"],["2024-07-24T07:22:12.010000"],["2024-07-24T07:22:13.010000"],["2024-07-24T07:22:14.010000"],["2024-07-24T07:22:15.010000"],["2024-07-24T07:22:16.010000"],["2024-07-24T07:22:17.010000"],["2024-07-24T07:22:18.010000"],["2024-07-24T07:22:19.010000"],["2024-07-24T07:22:20.010000"],["2024-07-24T07:22:21.010000"],["2024-07-24T07:22:22.010000"],["2024-07-24T07:22:23.010000"],["2024-07-24T07:22:24.010000"],["2024-07-24T07:22:25.010000"],["2024-07-24T07:22:26.010000"],["2024-07-24T07:22:27.010000"],["2024-07-24T07:22:28.010000"],["2024-07-24T07:22:29.010000"],["2024-07-24T07:22:30.010000"],["2024-07-24T07:22:31.010000"],["2024-07-24T07:22:32.010000"],["2024-07-24T07:22:33.010000"],["2024-07-24T07:22:34.010000"],["2024-07-24T07:22:35.010000"],["2024-07-24T07:22:36.010000"],["2024-07-24T07:22:37.010000"],["2024-07-24T07:22:38.010000"],["2024-07-24T07:22:39.010000"],["2024-07-24T07:22:40.010000"],["2024-07-24T07:22:41.010000"],["2024-07-24T07:22:42.010000"],["2024-07-24T07:22:43.010000"],["2024-07-24T07:22:44.010000"],["2024-07-24T07:22:45.010000"],["2024-07-24T07:22:46.010000"],["2024-07-24T07:22:47.010000"],["2024-07-24T07:22:48.010000"],["2024-07-24T07:22:49.010000"],["2024-07-24T07:22:50.010000"],["2024-07-24T07:22:51.010000"],["2024-07-24T07:22:52.010000"],["2024-07-24T07:22:53.010000"],["2024-07-24T07:22:54.010000"],["2024-07-24T07:22:55.010000"],["2024-07-24T07:22:56.010000"],["2024-07-24T07:22:57.010000"],["2024-07-24T07:22:58.010000"],["2024-07-24T07:22:59.010000"],["2024-07-24T07:23:00.010000"],["2024-07-24T07:23:01.010000"],["2024-07-24T07:23:02.010000"],["2024-07-24T07:23:03.010000"],["2024-07-24T07:23:04.010000"],["2024-07-24T07:23:05.010000"],["2024-07-24T07:23:06.010000"],["2024-07-24T07:23:07.010000"],["2024-07-24T07:23:08.010000"],["2024-07-24T07:23:09.010000"],["2024-07-24T07:23:10.010000"],["2024-07-24T07:23:11.010000"],["2024-07-24T07:23:12.010000"],["2024-07-24T07:23:13.010000"],["2024-07-24T07:23:14.010000"],["2024-07-24T07:23:15.010000"],["2024-07-24T07:23:16.010000"],["2024-07-24T07:23:17.010000"],["2024-07-24T07:23:18.010000"],["2024-07-24T07:23:19.010000"],["2024-07-24T07:23:20.010000"],["2024-07-24T07:23:21.010000"],["2024-07-24T07:23:22.010000"],["2024-07-24T07:23:23.010000"],["2024-07-24T07:23:24.010000"],["2024-07-24T07:23:25.010000"],["2024-07-24T07:23:26.010000"],["2024-07-24T07:23:27.010000"],["2024-07-24T07:23:28.010000"],["2024-07-24T07:23:29.010000"],["2024-07-24T07:23:30.010000"],["2024-07-24T07:23:31.010000"],["2024-07-24T07:23:32.010000"],["2024-07-24T07:23:33.010000"],["2024-07-24T07:23:34.010000"],["2024-07-24T07:23:35.010000"],["2024-07-24T07:23:36.010000"],["2024-07-24T07:23:37.010000"],["2024-07-24T07:23:38.010000"],["2024-07-24T07:23:39.010000"],["2024-07-24T07:23:40.010000"],["2024-07-24T07:23:41.010000"],["2024-07-24T07:23:42.010000"],["2024-07-24T07:23:43.010000"],["2024-07-24T07:23:44.010000"],["2024-07-24T07:23:45.010000"],["2024-07-24T07:23:46.010000"],["2024-07-24T07:23:47.010000"],["2024-07-24T07:23:48.010000"],["2024-07-24T07:23:49.010000"],["2024-07-24T07:23:50.010000"],["2024-07-24T07:23:51.010000"],["2024-07-24T07:23:52.010000"],["2024-07-24T07:23:53.010000"],["2024-07-24T07:23:54.010000"],["2024-07-24T07:23:55.010000"],["2024-07-24T07:23:56.010000"],["2024-07-24T07:23:57.010000"],["2024-07-24T07:23:58.010000"],["2024-07-24T07:23:59.010000"],["2024-07-24T07:24:00.010000"],["2024-07-24T07:24:01.010000"],["2024-07-24T07:24:02.010000"],["2024-07-24T07:24:03.010000"],["2024-07-24T07:24:04.010000"],["2024-07-24T07:24:05.010000"],["2024-07-24T07:24:06.010000"],["2024-07-24T07:24:07.010000"],["2024-07-24T07:24:08.010000"],["2024-07-24T07:24:09.010000"],["2024-07-24T07:24:10.010000"],["2024-07-24T07:24:11.010000"],["2024-07-24T07:24:12.010000"],["2024-07-24T07:24:13.010000"],["2024-07-24T07:24:14.010000"],["2024-07-24T07:24:15.010000"],["2024-07-24T07:24:16.010000"],["2024-07-24T07:24:17.010000"],["2024-07-24T07:24:18.010000"],["2024-07-24T07:24:19.010000"],["2024-07-24T07:24:20.010000"],["2024-07-24T07:24:21.010000"],["2024-07-24T07:24:22.010000"],["2024-07-24T07:24:23.010000"],["2024-07-24T07:24:24.010000"],["2024-07-24T07:24:25.010000"],["2024-07-24T07:24:26.010000"],["2024-07-24T07:24:27.010000"],["2024-07-24T07:24:28.010000"],["2024-07-24T07:24:29.010000"],["2024-07-24T07:24:30.010000"],["2024-07-24T07:24:31.010000"],["2024-07-24T07:24:32.010000"],["2024-07-24T07:24:33.010000"],["2024-07-24T07:24:34.010000"],["2024-07-24T07:24:35.010000"],["2024-07-24T07:24:36.010000"],["2024-07-24T07:24:37.010000"],["2024-07-24T07:24:38.010000"],["2024-07-24T07:24:39.010000"],["2024-07-24T07:24:40.010000"],["2024-07-24T07:24:41.010000"],["2024-07-24T07:24:42.010000"],["2024-07-24T07:24:43.010000"],["2024-07-24T07:24:44.010000"],["2024-07-24T07:24:45.010000"],["2024-07-24T07:24:46.010000"],["2024-07-24T07:24:47.010000"],["2024-07-24T07:24:48.010000"],["2024-07-24T07:24:49.010000"],["2024-07-24T07:24:50.010000"],["2024-07-24T07:24:51.010000"],["2024-07-24T07:24:52.010000"],["2024-07-24T07:24:53.010000"],["2024-07-24T07:24:54.010000"],["2024-07-24T07:24:55.010000"],["2024-07-24T07:24:56.010000"],["2024-07-24T07:24:57.010000"],["2024-07-24T07:24:58.010000"],["2024-07-24T07:24:59.010000"],["2024-07-24T07:25:00.010000"],["2024-07-24T07:25:01.010000"],["2024-07-24T07:25:02.010000"],["2024-07-24T07:25:03.010000"],["2024-07-24T07:25:04.010000"],["2024-07-24T07:25:05.010000"],["2024-07-24T07:25:06.010000"],["2024-07-24T07:25:07.010000"],["2024-07-24T07:25:08.010000"],["2024-07-24T07:25:09.010000"],["2024-07-24T07:25:10.010000"],["2024-07-24T07:25:11.010000"],["2024-07-24T07:25:12.010000"],["2024-07-24T07:25:13.010000"],["2024-07-24T07:25:14.010000"],["2024-07-24T07:25:15.010000"],["2024-07-24T07:25:16.010000"],["2024-07-24T07:25:17.010000"],["2024-07-24T07:25:18.010000"],["2024-07-24T07:25:19.010000"],["2024-07-24T07:25:20.010000"],["2024-07-24T07:25:21.010000"],["2024-07-24T07:25:22.010000"],["2024-07-24T07:25:23.010000"],["2024-07-24T07:25:24.010000"],["2024-07-24T07:25:25.010000"],["2024-07-24T07:25:26.010000"],["2024-07-24T07:25:27.010000"],["2024-07-24T07:25:28.010000"],["2024-07-24T07:25:29.010000"],["2024-07-24T07:25:30.010000"],["2024-07-24T07:25:31.010000"],["2024-07-24T07:25:32.010000"],["2024-07-24T07:25:33.010000"],["2024-07-24T07:25:34.010000"],["2024-07-24T07:25:35.010000"],["2024-07-24T07:25:36.010000"],["2024-07-24T07:25:37.010000"],["2024-07-24T07:25:38.010000"],["2024-07-24T07:25:39.010000"],["2024-07-24T07:25:40.010000"],["2024-07-24T07:25:41.010000"],["2024-07-24T07:25:42.010000"],["2024-07-24T07:25:43.010000"],["2024-07-24T07:25:44.010000"],["2024-07-24T07:25:45.010000"],["2024-07-24T07:25:46.010000"],["2024-07-24T07:25:47.010000"],["2024-07-24T07:25:48.010000"],["2024-07-24T07:25:49.010000"],["2024-07-24T07:25:50.010000"],["2024-07-24T07:25:51.010000"],["2024-07-24T07:25:52.010000"],["2024-07-24T07:25:53.010000"],["2024-07-24T07:25:54.010000"],["2024-07-24T07:25:55.010000"],["2024-07-24T07:25:56.010000"],["2024-07-24T07:25:57.010000"],["2024-07-24T07:25:58.010000"],["2024-07-24T07:25:59.010000"],["2024-07-24T07:26:00.010000"],["2024-07-24T07:26:01.010000"],["2024-07-24T07:26:02.010000"],["2024-07-24T07:26:03.010000"],["2024-07-24T07:26:04.010000"],["2024-07-24T07:26:05.010000"],["2024-07-24T07:26:06.010000"],["2024-07-24T07:26:07.010000"],["2024-07-24T07:26:08.010000"],["2024-07-24T07:26:09.010000"],["2024-07-24T07:26:10.010000"],["2024-07-24T07:26:11.010000"],["2024-07-24T07:26:12.010000"],["2024-07-24T07:26:13.010000"],["2024-07-24T07:26:14.010000"],["2024-07-24T07:26:15.010000"],["2024-07-24T07:26:16.010000"],["2024-07-24T07:26:17.010000"],["2024-07-24T07:26:18.010000"],["2024-07-24T07:26:19.010000"],["2024-07-24T07:26:20.010000"],["2024-07-24T07:26:21.010000"],["2024-07-24T07:26:22.010000"],["2024-07-24T07:26:23.010000"],["2024-07-24T07:26:24.010000"],["2024-07-24T07:26:25.010000"],["2024-07-24T07:26:26.010000"],["2024-07-24T07:26:27.010000"],["2024-07-24T07:26:28.010000"],["2024-07-24T07:26:29.010000"],["2024-07-24T07:26:30.010000"],["2024-07-24T07:26:31.010000"],["2024-07-24T07:26:32.010000"],["2024-07-24T07:26:33.010000"],["2024-07-24T07:26:34.010000"],["2024-07-24T07:26:35.010000"],["2024-07-24T07:26:36.010000"],["2024-07-24T07:26:37.010000"],["2024-07-24T07:26:38.010000"],["2024-07-24T07:26:39.010000"],["2024-07-24T07:26:40.010000"],["2024-07-24T07:26:41.010000"],["2024-07-24T07:26:42.010000"],["2024-07-24T07:26:43.010000"],["2024-07-24T07:26:44.010000"],["2024-07-24T07:26:45.010000"],["2024-07-24T07:26:46.010000"],["2024-07-24T07:26:47.010000"],["2024-07-24T07:26:48.010000"],["2024-07-24T07:26:49.010000"],["2024-07-24T07:26:50.010000"],["2024-07-24T07:26:51.010000"],["2024-07-24T07:26:52.010000"],["2024-07-24T07:26:53.010000"],["2024-07-24T07:26:54.010000"],["2024-07-24T07:26:55.010000"],["2024-07-24T07:26:56.010000"],["2024-07-24T07:26:57.010000"],["2024-07-24T07:26:58.010000"],["2024-07-24T07:26:59.010000"],["2024-07-24T07:27:00.010000"],["2024-07-24T07:27:01.010000"],["2024-07-24T07:27:02.010000"],["2024-07-24T07:27:03.010000"],["2024-07-24T07:27:04.010000"],["2024-07-24T07:27:05.010000"],["2024-07-24T07:27:06.010000"],["2024-07-24T07:27:07.010000"],["2024-07-24T07:27:08.010000"],["2024-07-24T07:27:09.010000"],["2024-07-24T07:27:10.010000"],["2024-07-24T07:27:11.010000"],["2024-07-24T07:27:12.010000"],["2024-07-24T07:27:13.010000"],["2024-07-24T07:27:14.010000"],["2024-07-24T07:27:15.010000"],["2024-07-24T07:27:16.010000"],["2024-07-24T07:27:17.010000"],["2024-07-24T07:27:18.010000"],["2024-07-24T07:27:19.010000"],["2024-07-24T07:27:20.010000"],["2024-07-24T07:27:21.010000"],["2024-07-24T07:27:22.010000"],["2024-07-24T07:27:23.010000"],["2024-07-24T07:27:24.010000"],["2024-07-24T07:27:25.010000"],["2024-07-24T07:27:26.010000"],["2024-07-24T07:27:27.010000"],["2024-07-24T07:27:28.010000"],["2024-07-24T07:27:29.010000"],["2024-07-24T07:27:30.010000"],["2024-07-24T07:27:31.010000"],["2024-07-24T07:27:32.010000"],["2024-07-24T07:27:33.010000"],["2024-07-24T07:27:34.010000"],["2024-07-24T07:27:35.010000"],["2024-07-24T07:27:36.010000"],["2024-07-24T07:27:37.010000"],["2024-07-24T07:27:38.010000"],["2024-07-24T07:27:39.010000"],["2024-07-24T07:27:40.010000"],["2024-07-24T07:27:41.010000"],["2024-07-24T07:27:42.010000"],["2024-07-24T07:27:43.010000"],["2024-07-24T07:27:44.010000"],["2024-07-24T07:27:45.010000"],["2024-07-24T07:27:46.010000"],["2024-07-24T07:27:47.010000"],["2024-07-24T07:27:48.010000"],["2024-07-24T07:27:49.010000"],["2024-07-24T07:27:50.010000"],["2024-07-24T07:27:51.010000"],["2024-07-24T07:27:52.010000"],["2024-07-24T07:27:53.010000"],["2024-07-24T07:27:54.010000"],["2024-07-24T07:27:55.010000"],["2024-07-24T07:27:56.010000"],["2024-07-24T07:27:57.010000"],["2024-07-24T07:27:58.010000"],["2024-07-24T07:27:59.010000"],["2024-07-24T07:28:00.010000"],["2024-07-24T07:28:01.010000"],["2024-07-24T07:28:02.010000"],["2024-07-24T07:28:03.010000"],["2024-07-24T07:28:04.010000"],["2024-07-24T07:28:05.010000"],["2024-07-24T07:28:06.010000"],["2024-07-24T07:28:07.010000"],["2024-07-24T07:28:08.010000"],["2024-07-24T07:28:09.010000"],["2024-07-24T07:28:10.010000"],["2024-07-24T07:28:11.010000"],["2024-07-24T07:28:12.010000"],["2024-07-24T07:28:13.010000"],["2024-07-24T07:28:14.010000"],["2024-07-24T07:28:15.010000"],["2024-07-24T07:28:16.010000"],["2024-07-24T07:28:17.010000"],["2024-07-24T07:28:18.010000"],["2024-07-24T07:28:19.010000"],["2024-07-24T07:28:20.010000"],["2024-07-24T07:28:21.010000"],["2024-07-24T07:28:22.010000"],["2024-07-24T07:28:23.010000"],["2024-07-24T07:28:24.010000"],["2024-07-24T07:28:25.010000"],["2024-07-24T07:28:26.010000"],["2024-07-24T07:28:27.010000"],["2024-07-24T07:28:28.010000"],["2024-07-24T07:28:29.010000"],["2024-07-24T07:28:30.010000"],["2024-07-24T07:28:31.010000"],["2024-07-24T07:28:32.010000"],["2024-07-24T07:28:33.010000"],["2024-07-24T07:28:34.010000"],["2024-07-24T07:28:35.010000"],["2024-07-24T07:28:36.010000"],["2024-07-24T07:28:37.010000"],["2024-07-24T07:28:38.010000"],["2024-07-24T07:28:39.010000"],["2024-07-24T07:28:40.010000"],["2024-07-24T07:28:41.010000"],["2024-07-24T07:28:42.010000"],["2024-07-24T07:28:43.010000"],["2024-07-24T07:28:44.010000"],["2024-07-24T07:28:45.010000"],["2024-07-24T07:28:46.010000"],["2024-07-24T07:28:47.010000"],["2024-07-24T07:28:48.010000"],["2024-07-24T07:28:49.010000"],["2024-07-24T07:28:50.010000"],["2024-07-24T07:28:51.010000"],["2024-07-24T07:28:52.010000"],["2024-07-24T07:28:53.010000"],["2024-07-24T07:28:54.010000"],["2024-07-24T07:28:55.010000"],["2024-07-24T07:28:56.010000"],["2024-07-24T07:28:57.010000"],["2024-07-24T07:28:58.010000"],["2024-07-24T07:28:59.010000"],["2024-07-24T07:29:00.010000"],["2024-07-24T07:29:01.010000"],["2024-07-24T07:29:02.010000"],["2024-07-24T07:29:03.010000"],["2024-07-24T07:29:04.010000"],["2024-07-24T07:29:05.010000"],["2024-07-24T07:29:06.010000"],["2024-07-24T07:29:07.010000"],["2024-07-24T07:29:08.010000"],["2024-07-24T07:29:09.010000"],["2024-07-24T07:29:10.010000"],["2024-07-24T07:29:11.010000"],["2024-07-24T07:29:12.010000"],["2024-07-24T07:29:13.010000"],["2024-07-24T07:29:14.010000"],["2024-07-24T07:29:15.010000"],["2024-07-24T07:29:16.010000"],["2024-07-24T07:29:17.010000"],["2024-07-24T07:29:18.010000"],["2024-07-24T07:29:19.010000"],["2024-07-24T07:29:20.010000"],["2024-07-24T07:29:21.010000"],["2024-07-24T07:29:22.010000"],["2024-07-24T07:29:23.010000"],["2024-07-24T07:29:24.010000"],["2024-07-24T07:29:25.010000"],["2024-07-24T07:29:26.010000"],["2024-07-24T07:29:27.010000"],["2024-07-24T07:29:28.010000"],["2024-07-24T07:29:29.010000"],["2024-07-24T07:29:30.010000"],["2024-07-24T07:29:31.010000"],["2024-07-24T07:29:32.010000"],["2024-07-24T07:29:33.010000"],["2024-07-24T07:29:34.010000"],["2024-07-24T07:29:35.010000"],["2024-07-24T07:29:36.010000"],["2024-07-24T07:29:37.010000"],["2024-07-24T07:29:38.010000"],["2024-07-24T07:29:39.010000"],["2024-07-24T07:29:40.010000"],["2024-07-24T07:29:41.010000"],["2024-07-24T07:29:42.010000"],["2024-07-24T07:29:43.010000"],["2024-07-24T07:29:44.010000"],["2024-07-24T07:29:45.010000"],["2024-07-24T07:29:46.010000"],["2024-07-24T07:29:47.010000"],["2024-07-24T07:29:48.010000"],["2024-07-24T07:29:49.010000"],["2024-07-24T07:29:50.010000"],["2024-07-24T07:29:51.010000"],["2024-07-24T07:29:52.010000"],["2024-07-24T07:29:53.010000"],["2024-07-24T07:29:54.010000"],["2024-07-24T07:29:55.010000"],["2024-07-24T07:29:56.010000"],["2024-07-24T07:29:57.010000"],["2024-07-24T07:29:58.010000"],["2024-07-24T07:29:59.010000"],["2024-07-24T07:30:00.010000"],["2024-07-24T07:30:01.010000"],["2024-07-24T07:30:02.010000"],["2024-07-24T07:30:03.010000"],["2024-07-24T07:30:04.010000"],["2024-07-24T07:30:05.010000"],["2024-07-24T07:30:06.010000"],["2024-07-24T07:30:07.010000"],["2024-07-24T07:30:08.010000"],["2024-07-24T07:30:09.010000"],["2024-07-24T07:30:10.010000"],["2024-07-24T07:30:11.010000"],["2024-07-24T07:30:12.010000"],["2024-07-24T07:30:13.010000"],["2024-07-24T07:30:14.010000"],["2024-07-24T07:30:15.010000"],["2024-07-24T07:30:16.010000"],["2024-07-24T07:30:17.010000"],["2024-07-24T07:30:18.010000"],["2024-07-24T07:30:19.010000"],["2024-07-24T07:30:20.010000"],["2024-07-24T07:30:21.010000"],["2024-07-24T07:30:22.010000"],["2024-07-24T07:30:23.010000"],["2024-07-24T07:30:24.010000"],["2024-07-24T07:30:25.010000"],["2024-07-24T07:30:26.010000"],["2024-07-24T07:30:27.010000"],["2024-07-24T07:30:28.010000"],["2024-07-24T07:30:29.010000"],["2024-07-24T07:30:30.010000"],["2024-07-24T07:30:31.010000"],["2024-07-24T07:30:32.010000"],["2024-07-24T07:30:33.010000"],["2024-07-24T07:30:34.010000"],["2024-07-24T07:30:35.010000"],["2024-07-24T07:30:36.010000"],["2024-07-24T07:30:37.010000"],["2024-07-24T07:30:38.010000"],["2024-07-24T07:30:39.010000"],["2024-07-24T07:30:40.010000"],["2024-07-24T07:30:41.010000"],["2024-07-24T07:30:42.010000"],["2024-07-24T07:30:43.010000"],["2024-07-24T07:30:44.010000"],["2024-07-24T07:30:45.010000"],["2024-07-24T07:30:46.010000"],["2024-07-24T07:30:47.010000"],["2024-07-24T07:30:48.010000"],["2024-07-24T07:30:49.010000"],["2024-07-24T07:30:50.010000"],["2024-07-24T07:30:51.010000"],["2024-07-24T07:30:52.010000"],["2024-07-24T07:30:53.010000"],["2024-07-24T07:30:54.010000"],["2024-07-24T07:30:55.010000"],["2024-07-24T07:30:56.010000"],["2024-07-24T07:30:57.010000"],["2024-07-24T07:30:58.010000"],["2024-07-24T07:30:59.010000"],["2024-07-24T07:31:00.010000"],["2024-07-24T07:31:01.010000"],["2024-07-24T07:31:02.010000"],["2024-07-24T07:31:03.010000"],["2024-07-24T07:31:04.010000"],["2024-07-24T07:31:05.010000"],["2024-07-24T07:31:06.010000"],["2024-07-24T07:31:07.010000"],["2024-07-24T07:31:08.010000"],["2024-07-24T07:31:09.010000"],["2024-07-24T07:31:10.010000"],["2024-07-24T07:31:11.010000"],["2024-07-24T07:31:12.010000"],["2024-07-24T07:31:13.010000"],["2024-07-24T07:31:14.010000"],["2024-07-24T07:31:15.010000"],["2024-07-24T07:31:16.010000"],["2024-07-24T07:31:17.010000"],["2024-07-24T07:31:18.010000"],["2024-07-24T07:31:19.010000"],["2024-07-24T07:31:20.010000"],["2024-07-24T07:31:21.010000"],["2024-07-24T07:31:22.010000"],["2024-07-24T07:31:23.010000"],["2024-07-24T07:31:24.010000"],["2024-07-24T07:31:25.010000"],["2024-07-24T07:31:26.010000"],["2024-07-24T07:31:27.010000"],["2024-07-24T07:31:28.010000"],["2024-07-24T07:31:29.010000"],["2024-07-24T07:31:30.010000"],["2024-07-24T07:31:31.010000"],["2024-07-24T07:31:32.010000"],["2024-07-24T07:31:33.010000"],["2024-07-24T07:31:34.010000"],["2024-07-24T07:31:35.010000"],["2024-07-24T07:31:36.010000"],["2024-07-24T07:31:37.010000"],["2024-07-24T07:31:38.010000"],["2024-07-24T07:31:39.010000"],["2024-07-24T07:31:40.010000"],["2024-07-24T07:31:41.010000"],["2024-07-24T07:31:42.010000"],["2024-07-24T07:31:43.010000"],["2024-07-24T07:31:44.010000"],["2024-07-24T07:31:45.010000"],["2024-07-24T07:31:46.010000"],["2024-07-24T07:31:47.010000"],["2024-07-24T07:31:48.010000"],["2024-07-24T07:31:49.010000"],["2024-07-24T07:31:50.010000"],["2024-07-24T07:31:51.010000"],["2024-07-24T07:31:52.010000"],["2024-07-24T07:31:53.010000"],["2024-07-24T07:31:54.010000"],["2024-07-24T07:31:55.010000"],["2024-07-24T07:31:56.010000"],["2024-07-24T07:31:57.010000"],["2024-07-24T07:31:58.010000"],["2024-07-24T07:31:59.010000"],["2024-07-24T07:32:00.010000"],["2024-07-24T07:32:01.010000"],["2024-07-24T07:32:02.010000"],["2024-07-24T07:32:03.010000"],["2024-07-24T07:32:04.010000"],["2024-07-24T07:32:05.010000"],["2024-07-24T07:32:06.010000"],["2024-07-24T07:32:07.010000"],["2024-07-24T07:32:08.010000"],["2024-07-24T07:32:09.010000"],["2024-07-24T07:32:10.010000"],["2024-07-24T07:32:11.010000"],["2024-07-24T07:32:12.010000"],["2024-07-24T07:32:13.010000"],["2024-07-24T07:32:14.010000"],["2024-07-24T07:32:15.010000"],["2024-07-24T07:32:16.010000"],["2024-07-24T07:32:17.010000"],["2024-07-24T07:32:18.010000"],["2024-07-24T07:32:19.010000"],["2024-07-24T07:32:20.010000"],["2024-07-24T07:32:21.010000"],["2024-07-24T07:32:22.010000"],["2024-07-24T07:32:23.010000"],["2024-07-24T07:32:24.010000"],["2024-07-24T07:32:25.010000"],["2024-07-24T07:32:26.010000"],["2024-07-24T07:32:27.010000"],["2024-07-24T07:32:28.010000"],["2024-07-24T07:32:29.010000"],["2024-07-24T07:32:30.010000"],["2024-07-24T07:32:31.010000"],["2024-07-24T07:32:32.010000"],["2024-07-24T07:32:33.010000"],["2024-07-24T07:32:34.010000"],["2024-07-24T07:32:35.010000"],["2024-07-24T07:32:36.010000"],["2024-07-24T07:32:37.010000"],["2024-07-24T07:32:38.010000"],["2024-07-24T07:32:39.010000"],["2024-07-24T07:32:40.010000"],["2024-07-24T07:32:41.010000"],["2024-07-24T07:32:42.010000"],["2024-07-24T07:32:43.010000"],["2024-07-24T07:32:44.010000"],["2024-07-24T07:32:45.010000"],["2024-07-24T07:32:46.010000"],["2024-07-24T07:32:47.010000"],["2024-07-24T07:32:48.010000"],["2024-07-24T07:32:49.010000"],["2024-07-24T07:32:50.010000"],["2024-07-24T07:32:51.010000"],["2024-07-24T07:32:52.010000"],["2024-07-24T07:32:53.010000"],["2024-07-24T07:32:54.010000"],["2024-07-24T07:32:55.010000"],["2024-07-24T07:32:56.010000"],["2024-07-24T07:32:57.010000"],["2024-07-24T07:32:58.010000"],["2024-07-24T07:32:59.010000"],["2024-07-24T07:33:00.010000"],["2024-07-24T07:33:01.010000"],["2024-07-24T07:33:02.010000"],["2024-07-24T07:33:03.010000"],["2024-07-24T07:33:04.010000"],["2024-07-24T07:33:05.010000"],["2024-07-24T07:33:06.010000"],["2024-07-24T07:33:07.010000"],["2024-07-24T07:33:08.010000"],["2024-07-24T07:33:09.010000"],["2024-07-24T07:33:10.010000"],["2024-07-24T07:33:11.010000"],["2024-07-24T07:33:12.010000"],["2024-07-24T07:33:13.010000"],["2024-07-24T07:33:14.010000"],["2024-07-24T07:33:15.010000"],["2024-07-24T07:33:16.010000"],["2024-07-24T07:33:17.010000"],["2024-07-24T07:33:18.010000"],["2024-07-24T07:33:19.010000"],["2024-07-24T07:33:20.010000"],["2024-07-24T07:33:21.010000"],["2024-07-24T07:33:22.010000"],["2024-07-24T07:33:23.010000"],["2024-07-24T07:33:24.010000"],["2024-07-24T07:33:25.010000"],["2024-07-24T07:33:26.010000"],["2024-07-24T07:33:27.010000"],["2024-07-24T07:33:28.010000"],["2024-07-24T07:33:29.010000"],["2024-07-24T07:33:30.010000"],["2024-07-24T07:33:31.010000"],["2024-07-24T07:33:32.010000"],["2024-07-24T07:33:33.010000"],["2024-07-24T07:33:34.010000"],["2024-07-24T07:33:35.010000"],["2024-07-24T07:33:36.010000"],["2024-07-24T07:33:37.010000"],["2024-07-24T07:33:38.010000"],["2024-07-24T07:33:39.010000"],["2024-07-24T07:33:40.010000"],["2024-07-24T07:33:41.010000"],["2024-07-24T07:33:42.010000"],["2024-07-24T07:33:43.010000"],["2024-07-24T07:33:44.010000"],["2024-07-24T07:33:45.010000"],["2024-07-24T07:33:46.010000"],["2024-07-24T07:33:47.010000"],["2024-07-24T07:33:48.010000"],["2024-07-24T07:33:49.010000"],["2024-07-24T07:33:50.010000"],["2024-07-24T07:33:51.010000"],["2024-07-24T07:33:52.010000"],["2024-07-24T07:33:53.010000"],["2024-07-24T07:33:54.010000"],["2024-07-24T07:33:55.010000"],["2024-07-24T07:33:56.010000"],["2024-07-24T07:33:57.010000"],["2024-07-24T07:33:58.010000"],["2024-07-24T07:33:59.010000"],["2024-07-24T07:34:00.010000"],["2024-07-24T07:34:01.010000"],["2024-07-24T07:34:02.010000"],["2024-07-24T07:34:03.010000"],["2024-07-24T07:34:04.010000"],["2024-07-24T07:34:05.010000"],["2024-07-24T07:34:06.010000"],["2024-07-24T07:34:07.010000"],["2024-07-24T07:34:08.010000"],["2024-07-24T07:34:09.010000"],["2024-07-24T07:34:10.010000"],["2024-07-24T07:34:11.010000"],["2024-07-24T07:34:12.010000"],["2024-07-24T07:34:13.010000"],["2024-07-24T07:34:14.010000"],["2024-07-24T07:34:15.010000"],["2024-07-24T07:34:16.010000"],["2024-07-24T07:34:17.010000"],["2024-07-24T07:34:18.010000"],["2024-07-24T07:34:19.010000"],["2024-07-24T07:34:20.010000"],["2024-07-24T07:34:21.010000"],["2024-07-24T07:34:22.010000"],["2024-07-24T07:34:23.010000"],["2024-07-24T07:34:24.010000"],["2024-07-24T07:34:25.010000"],["2024-07-24T07:34:26.010000"],["2024-07-24T07:34:27.010000"],["2024-07-24T07:34:28.010000"],["2024-07-24T07:34:29.010000"],["2024-07-24T07:34:30.010000"],["2024-07-24T07:34:31.010000"],["2024-07-24T07:34:32.010000"],["2024-07-24T07:34:33.010000"],["2024-07-24T07:34:34.010000"],["2024-07-24T07:34:35.010000"],["2024-07-24T07:34:36.010000"],["2024-07-24T07:34:37.010000"],["2024-07-24T07:34:38.010000"],["2024-07-24T07:34:39.010000"],["2024-07-24T07:34:40.010000"],["2024-07-24T07:34:41.010000"],["2024-07-24T07:34:42.010000"],["2024-07-24T07:34:43.010000"],["2024-07-24T07:34:44.010000"],["2024-07-24T07:34:45.010000"],["2024-07-24T07:34:46.010000"],["2024-07-24T07:34:47.010000"],["2024-07-24T07:34:48.010000"],["2024-07-24T07:34:49.010000"],["2024-07-24T07:34:50.010000"],["2024-07-24T07:34:51.010000"],["2024-07-24T07:34:52.010000"],["2024-07-24T07:34:53.010000"],["2024-07-24T07:34:54.010000"],["2024-07-24T07:34:55.010000"],["2024-07-24T07:34:56.010000"],["2024-07-24T07:34:57.010000"],["2024-07-24T07:34:58.010000"],["2024-07-24T07:34:59.010000"],["2024-07-24T07:35:00.010000"],["2024-07-24T07:35:01.010000"],["2024-07-24T07:35:02.010000"],["2024-07-24T07:35:03.010000"],["2024-07-24T07:35:04.010000"],["2024-07-24T07:35:05.010000"],["2024-07-24T07:35:06.010000"],["2024-07-24T07:35:07.010000"],["2024-07-24T07:35:08.010000"],["2024-07-24T07:35:09.010000"],["2024-07-24T07:35:10.010000"],["2024-07-24T07:35:11.010000"],["2024-07-24T07:35:12.010000"],["2024-07-24T07:35:13.010000"],["2024-07-24T07:35:14.010000"],["2024-07-24T07:35:15.010000"],["2024-07-24T07:35:16.010000"],["2024-07-24T07:35:17.010000"],["2024-07-24T07:35:18.010000"],["2024-07-24T07:35:19.010000"],["2024-07-24T07:35:20.010000"],["2024-07-24T07:35:21.010000"],["2024-07-24T07:35:22.010000"],["2024-07-24T07:35:23.010000"],["2024-07-24T07:35:24.010000"],["2024-07-24T07:35:25.010000"],["2024-07-24T07:35:26.010000"],["2024-07-24T07:35:27.010000"],["2024-07-24T07:35:28.010000"],["2024-07-24T07:35:29.010000"],["2024-07-24T07:35:30.010000"],["2024-07-24T07:35:31.010000"],["2024-07-24T07:35:32.010000"],["2024-07-24T07:35:33.010000"],["2024-07-24T07:35:34.010000"],["2024-07-24T07:35:35.010000"],["2024-07-24T07:35:36.010000"],["2024-07-24T07:35:37.010000"],["2024-07-24T07:35:38.010000"],["2024-07-24T07:35:39.010000"],["2024-07-24T07:35:40.010000"],["2024-07-24T07:35:41.010000"],["2024-07-24T07:35:42.010000"],["2024-07-24T07:35:43.010000"],["2024-07-24T07:35:44.010000"],["2024-07-24T07:35:45.010000"],["2024-07-24T07:35:46.010000"],["2024-07-24T07:35:47.010000"],["2024-07-24T07:35:48.010000"],["2024-07-24T07:35:49.010000"],["2024-07-24T07:35:50.010000"],["2024-07-24T07:35:51.010000"],["2024-07-24T07:35:52.010000"],["2024-07-24T07:35:53.010000"],["2024-07-24T07:35:54.010000"],["2024-07-24T07:35:55.010000"],["2024-07-24T07:35:56.010000"],["2024-07-24T07:35:57.010000"],["2024-07-24T07:35:58.010000"],["2024-07-24T07:35:59.010000"],["2024-07-24T07:36:00.010000"],["2024-07-24T07:36:01.010000"],["2024-07-24T07:36:02.010000"],["2024-07-24T07:36:03.010000"],["2024-07-24T07:36:04.010000"],["2024-07-24T07:36:05.010000"],["2024-07-24T07:36:06.010000"],["2024-07-24T07:36:07.010000"],["2024-07-24T07:36:08.010000"],["2024-07-24T07:36:09.010000"],["2024-07-24T07:36:10.010000"],["2024-07-24T07:36:11.010000"],["2024-07-24T07:36:12.010000"],["2024-07-24T07:36:13.010000"],["2024-07-24T07:36:14.010000"],["2024-07-24T07:36:15.010000"],["2024-07-24T07:36:16.010000"],["2024-07-24T07:36:17.010000"],["2024-07-24T07:36:18.010000"],["2024-07-24T07:36:19.010000"],["2024-07-24T07:36:20.010000"],["2024-07-24T07:36:21.010000"],["2024-07-24T07:36:22.010000"],["2024-07-24T07:36:23.010000"],["2024-07-24T07:36:24.010000"],["2024-07-24T07:36:25.010000"],["2024-07-24T07:36:26.010000"],["2024-07-24T07:36:27.010000"],["2024-07-24T07:36:28.010000"],["2024-07-24T07:36:29.010000"],["2024-07-24T07:36:30.010000"],["2024-07-24T07:36:31.010000"],["2024-07-24T07:36:32.010000"],["2024-07-24T07:36:33.010000"],["2024-07-24T07:36:34.010000"],["2024-07-24T07:36:35.010000"],["2024-07-24T07:36:36.010000"],["2024-07-24T07:36:37.010000"],["2024-07-24T07:36:38.010000"],["2024-07-24T07:36:39.010000"],["2024-07-24T07:36:40.010000"],["2024-07-24T07:36:41.010000"],["2024-07-24T07:36:42.010000"],["2024-07-24T07:36:43.010000"],["2024-07-24T07:36:44.010000"],["2024-07-24T07:36:45.010000"],["2024-07-24T07:36:46.010000"],["2024-07-24T07:36:47.010000"],["2024-07-24T07:36:48.010000"],["2024-07-24T07:36:49.010000"],["2024-07-24T07:36:50.010000"],["2024-07-24T07:36:51.010000"],["2024-07-24T07:36:52.010000"],["2024-07-24T07:36:53.010000"],["2024-07-24T07:36:54.010000"],["2024-07-24T07:36:55.010000"],["2024-07-24T07:36:56.010000"],["2024-07-24T07:36:57.010000"],["2024-07-24T07:36:58.010000"],["2024-07-24T07:36:59.010000"],["2024-07-24T07:37:00.010000"],["2024-07-24T07:37:01.010000"],["2024-07-24T07:37:02.010000"],["2024-07-24T07:37:03.010000"],["2024-07-24T07:37:04.010000"],["2024-07-24T07:37:05.010000"],["2024-07-24T07:37:06.010000"],["2024-07-24T07:37:07.010000"],["2024-07-24T07:37:08.010000"],["2024-07-24T07:37:09.010000"],["2024-07-24T07:37:10.010000"],["2024-07-24T07:37:11.010000"],["2024-07-24T07:37:12.010000"],["2024-07-24T07:37:13.010000"],["2024-07-24T07:37:14.010000"],["2024-07-24T07:37:15.010000"],["2024-07-24T07:37:16.010000"],["2024-07-24T07:37:17.010000"],["2024-07-24T07:37:18.010000"],["2024-07-24T07:37:19.010000"],["2024-07-24T07:37:20.010000"],["2024-07-24T07:37:21.010000"],["2024-07-24T07:37:22.010000"],["2024-07-24T07:37:23.010000"],["2024-07-24T07:37:24.010000"],["2024-07-24T07:37:25.010000"],["2024-07-24T07:37:26.010000"],["2024-07-24T07:37:27.010000"],["2024-07-24T07:37:28.010000"],["2024-07-24T07:37:29.010000"],["2024-07-24T07:37:30.010000"],["2024-07-24T07:37:31.010000"],["2024-07-24T07:37:32.010000"],["2024-07-24T07:37:33.010000"],["2024-07-24T07:37:34.010000"],["2024-07-24T07:37:35.010000"],["2024-07-24T07:37:36.010000"],["2024-07-24T07:37:37.010000"],["2024-07-24T07:37:38.010000"],["2024-07-24T07:37:39.010000"],["2024-07-24T07:37:40.010000"],["2024-07-24T07:37:41.010000"],["2024-07-24T07:37:42.010000"],["2024-07-24T07:37:43.010000"],["2024-07-24T07:37:44.010000"],["2024-07-24T07:37:45.010000"],["2024-07-24T07:37:46.010000"],["2024-07-24T07:37:47.010000"],["2024-07-24T07:37:48.010000"],["2024-07-24T07:37:49.010000"],["2024-07-24T07:37:50.010000"],["2024-07-24T07:37:51.010000"],["2024-07-24T07:37:52.010000"],["2024-07-24T07:37:53.010000"],["2024-07-24T07:37:54.010000"],["2024-07-24T07:37:55.010000"],["2024-07-24T07:37:56.010000"],["2024-07-24T07:37:57.010000"],["2024-07-24T07:37:58.010000"],["2024-07-24T07:37:59.010000"],["2024-07-24T07:38:00.010000"],["2024-07-24T07:38:01.010000"],["2024-07-24T07:38:02.010000"],["2024-07-24T07:38:03.010000"],["2024-07-24T07:38:04.010000"],["2024-07-24T07:38:05.010000"],["2024-07-24T07:38:06.010000"],["2024-07-24T07:38:07.010000"],["2024-07-24T07:38:08.010000"],["2024-07-24T07:38:09.010000"],["2024-07-24T07:38:10.010000"],["2024-07-24T07:38:11.010000"],["2024-07-24T07:38:12.010000"],["2024-07-24T07:38:13.010000"],["2024-07-24T07:38:14.010000"],["2024-07-24T07:38:15.010000"],["2024-07-24T07:38:16.010000"],["2024-07-24T07:38:17.010000"],["2024-07-24T07:38:18.010000"],["2024-07-24T07:38:19.010000"],["2024-07-24T07:38:20.010000"],["2024-07-24T07:38:21.010000"],["2024-07-24T07:38:22.010000"],["2024-07-24T07:38:23.010000"],["2024-07-24T07:38:24.010000"],["2024-07-24T07:38:25.010000"],["2024-07-24T07:38:26.010000"],["2024-07-24T07:38:27.010000"],["2024-07-24T07:38:28.010000"],["2024-07-24T07:38:29.010000"],["2024-07-24T07:38:30.010000"],["2024-07-24T07:38:31.010000"],["2024-07-24T07:38:32.010000"],["2024-07-24T07:38:33.010000"],["2024-07-24T07:38:34.010000"],["2024-07-24T07:38:35.010000"],["2024-07-24T07:38:36.010000"],["2024-07-24T07:38:37.010000"],["2024-07-24T07:38:38.010000"],["2024-07-24T07:38:39.010000"],["2024-07-24T07:38:40.010000"],["2024-07-24T07:38:41.010000"],["2024-07-24T07:38:42.010000"],["2024-07-24T07:38:43.010000"],["2024-07-24T07:38:44.010000"],["2024-07-24T07:38:45.010000"],["2024-07-24T07:38:46.010000"],["2024-07-24T07:38:47.010000"],["2024-07-24T07:38:48.010000"],["2024-07-24T07:38:49.010000"],["2024-07-24T07:38:50.010000"],["2024-07-24T07:38:51.010000"],["2024-07-24T07:38:52.010000"],["2024-07-24T07:38:53.010000"],["2024-07-24T07:38:54.010000"],["2024-07-24T07:38:55.010000"],["2024-07-24T07:38:56.010000"],["2024-07-24T07:38:57.010000"],["2024-07-24T07:38:58.010000"],["2024-07-24T07:38:59.010000"],["2024-07-24T07:39:00.010000"],["2024-07-24T07:39:01.010000"],["2024-07-24T07:39:02.010000"],["2024-07-24T07:39:03.010000"],["2024-07-24T07:39:04.010000"],["2024-07-24T07:39:05.010000"],["2024-07-24T07:39:06.010000"],["2024-07-24T07:39:07.010000"],["2024-07-24T07:39:08.010000"],["2024-07-24T07:39:09.010000"],["2024-07-24T07:39:10.010000"],["2024-07-24T07:39:11.010000"],["2024-07-24T07:39:12.010000"],["2024-07-24T07:39:13.010000"],["2024-07-24T07:39:14.010000"],["2024-07-24T07:39:15.010000"],["2024-07-24T07:39:16.010000"],["2024-07-24T07:39:17.010000"],["2024-07-24T07:39:18.010000"],["2024-07-24T07:39:19.010000"],["2024-07-24T07:39:20.010000"],["2024-07-24T07:39:21.010000"],["2024-07-24T07:39:22.010000"],["2024-07-24T07:39:23.010000"],["2024-07-24T07:39:24.010000"],["2024-07-24T07:39:25.010000"],["2024-07-24T07:39:26.010000"],["2024-07-24T07:39:27.010000"],["2024-07-24T07:39:28.010000"],["2024-07-24T07:39:29.010000"],["2024-07-24T07:39:30.010000"],["2024-07-24T07:39:31.010000"],["2024-07-24T07:39:32.010000"],["2024-07-24T07:39:33.010000"],["2024-07-24T07:39:34.010000"],["2024-07-24T07:39:35.010000"],["2024-07-24T07:39:36.010000"],["2024-07-24T07:39:37.010000"],["2024-07-24T07:39:38.010000"],["2024-07-24T07:39:39.010000"],["2024-07-24T07:39:40.010000"],["2024-07-24T07:39:41.010000"],["2024-07-24T07:39:42.010000"],["2024-07-24T07:39:43.010000"],["2024-07-24T07:39:44.010000"],["2024-07-24T07:39:45.010000"],["2024-07-24T07:39:46.010000"],["2024-07-24T07:39:47.010000"],["2024-07-24T07:39:48.010000"],["2024-07-24T07:39:49.010000"],["2024-07-24T07:39:50.010000"],["2024-07-24T07:39:51.010000"],["2024-07-24T07:39:52.010000"],["2024-07-24T07:39:53.010000"],["2024-07-24T07:39:54.010000"],["2024-07-24T07:39:55.010000"],["2024-07-24T07:39:56.010000"],["2024-07-24T07:39:57.010000"],["2024-07-24T07:39:58.010000"],["2024-07-24T07:39:59.010000"],["2024-07-24T07:40:00.010000"],["2024-07-24T07:40:01.010000"],["2024-07-24T07:40:02.010000"],["2024-07-24T07:40:03.010000"],["2024-07-24T07:40:04.010000"],["2024-07-24T07:40:05.010000"],["2024-07-24T07:40:06.010000"],["2024-07-24T07:40:07.010000"],["2024-07-24T07:40:08.010000"],["2024-07-24T07:40:09.010000"],["2024-07-24T07:40:10.010000"],["2024-07-24T07:40:11.010000"],["2024-07-24T07:40:12.010000"],["2024-07-24T07:40:13.010000"],["2024-07-24T07:40:14.010000"],["2024-07-24T07:40:15.010000"],["2024-07-24T07:40:16.010000"],["2024-07-24T07:40:17.010000"],["2024-07-24T07:40:18.010000"],["2024-07-24T07:40:19.010000"],["2024-07-24T07:40:20.010000"],["2024-07-24T07:40:21.010000"],["2024-07-24T07:40:22.010000"],["2024-07-24T07:40:23.010000"],["2024-07-24T07:40:24.010000"],["2024-07-24T07:40:25.010000"],["2024-07-24T07:40:26.010000"],["2024-07-24T07:40:27.010000"],["2024-07-24T07:40:28.010000"],["2024-07-24T07:40:29.010000"],["2024-07-24T07:40:30.010000"],["2024-07-24T07:40:31.010000"],["2024-07-24T07:40:32.010000"],["2024-07-24T07:40:33.010000"],["2024-07-24T07:40:34.010000"],["2024-07-24T07:40:35.010000"],["2024-07-24T07:40:36.010000"],["2024-07-24T07:40:37.010000"],["2024-07-24T07:40:38.010000"],["2024-07-24T07:40:39.010000"],["2024-07-24T07:40:40.010000"],["2024-07-24T07:40:41.010000"],["2024-07-24T07:40:42.010000"],["2024-07-24T07:40:43.010000"],["2024-07-24T07:40:44.010000"],["2024-07-24T07:40:45.010000"],["2024-07-24T07:40:46.010000"],["2024-07-24T07:40:47.010000"],["2024-07-24T07:40:48.010000"],["2024-07-24T07:40:49.010000"],["2024-07-24T07:40:50.010000"],["2024-07-24T07:40:51.010000"],["2024-07-24T07:40:52.010000"],["2024-07-24T07:40:53.010000"],["2024-07-24T07:40:54.010000"],["2024-07-24T07:40:55.010000"],["2024-07-24T07:40:56.010000"],["2024-07-24T07:40:57.010000"],["2024-07-24T07:40:58.010000"],["2024-07-24T07:40:59.010000"],["2024-07-24T07:41:00.010000"],["2024-07-24T07:41:01.010000"],["2024-07-24T07:41:02.010000"],["2024-07-24T07:41:03.010000"],["2024-07-24T07:41:04.010000"],["2024-07-24T07:41:05.010000"],["2024-07-24T07:41:06.010000"],["2024-07-24T07:41:07.010000"],["2024-07-24T07:41:08.010000"],["2024-07-24T07:41:09.010000"],["2024-07-24T07:41:10.010000"],["2024-07-24T07:41:11.010000"],["2024-07-24T07:41:12.010000"],["2024-07-24T07:41:13.010000"],["2024-07-24T07:41:14.010000"],["2024-07-24T07:41:15.010000"],["2024-07-24T07:41:16.010000"],["2024-07-24T07:41:17.010000"],["2024-07-24T07:41:18.010000"],["2024-07-24T07:41:19.010000"],["2024-07-24T07:41:20.010000"],["2024-07-24T07:41:21.010000"],["2024-07-24T07:41:22.010000"],["2024-07-24T07:41:23.010000"],["2024-07-24T07:41:24.010000"],["2024-07-24T07:41:25.010000"],["2024-07-24T07:41:26.010000"],["2024-07-24T07:41:27.010000"],["2024-07-24T07:41:28.010000"],["2024-07-24T07:41:29.010000"],["2024-07-24T07:41:30.010000"],["2024-07-24T07:41:31.010000"],["2024-07-24T07:41:32.010000"],["2024-07-24T07:41:33.010000"],["2024-07-24T07:41:34.010000"],["2024-07-24T07:41:35.010000"],["2024-07-24T07:41:36.010000"],["2024-07-24T07:41:37.010000"],["2024-07-24T07:41:38.010000"],["2024-07-24T07:41:39.010000"],["2024-07-24T07:41:40.010000"],["2024-07-24T07:41:41.010000"],["2024-07-24T07:41:42.010000"],["2024-07-24T07:41:43.010000"],["2024-07-24T07:41:44.010000"],["2024-07-24T07:41:45.010000"],["2024-07-24T07:41:46.010000"],["2024-07-24T07:41:47.010000"],["2024-07-24T07:41:48.010000"],["2024-07-24T07:41:49.010000"],["2024-07-24T07:41:50.010000"],["2024-07-24T07:41:51.010000"],["2024-07-24T07:41:52.010000"],["2024-07-24T07:41:53.010000"],["2024-07-24T07:41:54.010000"],["2024-07-24T07:41:55.010000"],["2024-07-24T07:41:56.010000"],["2024-07-24T07:41:57.010000"],["2024-07-24T07:41:58.010000"],["2024-07-24T07:41:59.010000"],["2024-07-24T07:42:00.010000"],["2024-07-24T07:42:01.010000"],["2024-07-24T07:42:02.010000"],["2024-07-24T07:42:03.010000"],["2024-07-24T07:42:04.010000"],["2024-07-24T07:42:05.010000"],["2024-07-24T07:42:06.010000"],["2024-07-24T07:42:07.010000"],["2024-07-24T07:42:08.010000"],["2024-07-24T07:42:09.010000"],["2024-07-24T07:42:10.010000"],["2024-07-24T07:42:11.010000"],["2024-07-24T07:42:12.010000"],["2024-07-24T07:42:13.010000"],["2024-07-24T07:42:14.010000"],["2024-07-24T07:42:15.010000"],["2024-07-24T07:42:16.010000"],["2024-07-24T07:42:17.010000"],["2024-07-24T07:42:18.010000"],["2024-07-24T07:42:19.010000"],["2024-07-24T07:42:20.010000"],["2024-07-24T07:42:21.010000"],["2024-07-24T07:42:22.010000"],["2024-07-24T07:42:23.010000"],["2024-07-24T07:42:24.010000"],["2024-07-24T07:42:25.010000"],["2024-07-24T07:42:26.010000"],["2024-07-24T07:42:27.010000"],["2024-07-24T07:42:28.010000"],["2024-07-24T07:42:29.010000"],["2024-07-24T07:42:30.010000"],["2024-07-24T07:42:31.010000"],["2024-07-24T07:42:32.010000"],["2024-07-24T07:42:33.010000"],["2024-07-24T07:42:34.010000"],["2024-07-24T07:42:35.010000"],["2024-07-24T07:42:36.010000"],["2024-07-24T07:42:37.010000"],["2024-07-24T07:42:38.010000"],["2024-07-24T07:42:39.010000"],["2024-07-24T07:42:40.010000"],["2024-07-24T07:42:41.010000"],["2024-07-24T07:42:42.010000"],["2024-07-24T07:42:43.010000"],["2024-07-24T07:42:44.010000"],["2024-07-24T07:42:45.010000"],["2024-07-24T07:42:46.010000"],["2024-07-24T07:42:47.010000"],["2024-07-24T07:42:48.010000"],["2024-07-24T07:42:49.010000"],["2024-07-24T07:42:50.010000"],["2024-07-24T07:42:51.010000"],["2024-07-24T07:42:52.010000"],["2024-07-24T07:42:53.010000"],["2024-07-24T07:42:54.010000"],["2024-07-24T07:42:55.010000"],["2024-07-24T07:42:56.010000"],["2024-07-24T07:42:57.010000"],["2024-07-24T07:42:58.010000"],["2024-07-24T07:42:59.010000"],["2024-07-24T07:43:00.010000"],["2024-07-24T07:43:01.010000"],["2024-07-24T07:43:02.010000"],["2024-07-24T07:43:03.010000"],["2024-07-24T07:43:04.010000"],["2024-07-24T07:43:05.010000"],["2024-07-24T07:43:06.010000"],["2024-07-24T07:43:07.010000"],["2024-07-24T07:43:08.010000"],["2024-07-24T07:43:09.010000"],["2024-07-24T07:43:10.010000"],["2024-07-24T07:43:11.010000"],["2024-07-24T07:43:12.010000"],["2024-07-24T07:43:13.010000"],["2024-07-24T07:43:14.010000"],["2024-07-24T07:43:15.010000"],["2024-07-24T07:43:16.010000"],["2024-07-24T07:43:17.010000"],["2024-07-24T07:43:18.010000"],["2024-07-24T07:43:19.010000"],["2024-07-24T07:43:20.010000"],["2024-07-24T07:43:21.010000"],["2024-07-24T07:43:22.010000"],["2024-07-24T07:43:23.010000"],["2024-07-24T07:43:24.010000"],["2024-07-24T07:43:25.010000"],["2024-07-24T07:43:26.010000"],["2024-07-24T07:43:27.010000"],["2024-07-24T07:43:28.010000"],["2024-07-24T07:43:29.010000"],["2024-07-24T07:43:30.010000"],["2024-07-24T07:43:31.010000"],["2024-07-24T07:43:32.010000"],["2024-07-24T07:43:33.010000"],["2024-07-24T07:43:34.010000"],["2024-07-24T07:43:35.010000"],["2024-07-24T07:43:36.010000"],["2024-07-24T07:43:37.010000"],["2024-07-24T07:43:38.010000"],["2024-07-24T07:43:39.010000"],["2024-07-24T07:43:40.010000"],["2024-07-24T07:43:41.010000"],["2024-07-24T07:43:42.010000"],["2024-07-24T07:43:43.010000"],["2024-07-24T07:43:44.010000"],["2024-07-24T07:43:45.010000"],["2024-07-24T07:43:46.010000"],["2024-07-24T07:43:47.010000"],["2024-07-24T07:43:48.010000"],["2024-07-24T07:43:49.010000"],["2024-07-24T07:43:50.010000"],["2024-07-24T07:43:51.010000"],["2024-07-24T07:43:52.010000"],["2024-07-24T07:43:53.010000"],["2024-07-24T07:43:54.010000"],["2024-07-24T07:43:55.010000"],["2024-07-24T07:43:56.010000"],["2024-07-24T07:43:57.010000"],["2024-07-24T07:43:58.010000"],["2024-07-24T07:43:59.010000"],["2024-07-24T07:44:00.010000"],["2024-07-24T07:44:01.010000"],["2024-07-24T07:44:02.010000"],["2024-07-24T07:44:03.010000"],["2024-07-24T07:44:04.010000"],["2024-07-24T07:44:05.010000"],["2024-07-24T07:44:06.010000"],["2024-07-24T07:44:07.010000"],["2024-07-24T07:44:08.010000"],["2024-07-24T07:44:09.010000"],["2024-07-24T07:44:10.010000"],["2024-07-24T07:44:11.010000"],["2024-07-24T07:44:12.010000"],["2024-07-24T07:44:13.010000"],["2024-07-24T07:44:14.010000"],["2024-07-24T07:44:15.010000"],["2024-07-24T07:44:16.010000"],["2024-07-24T07:44:17.010000"],["2024-07-24T07:44:18.010000"],["2024-07-24T07:44:19.010000"],["2024-07-24T07:44:20.010000"],["2024-07-24T07:44:21.010000"],["2024-07-24T07:44:22.010000"],["2024-07-24T07:44:23.010000"],["2024-07-24T07:44:24.010000"],["2024-07-24T07:44:25.010000"],["2024-07-24T07:44:26.010000"],["2024-07-24T07:44:27.010000"],["2024-07-24T07:44:28.010000"],["2024-07-24T07:44:29.010000"],["2024-07-24T07:44:30.010000"],["2024-07-24T07:44:31.010000"],["2024-07-24T07:44:32.010000"],["2024-07-24T07:44:33.010000"],["2024-07-24T07:44:34.010000"],["2024-07-24T07:44:35.010000"],["2024-07-24T07:44:36.010000"],["2024-07-24T07:44:37.010000"],["2024-07-24T07:44:38.010000"],["2024-07-24T07:44:39.010000"],["2024-07-24T07:44:40.010000"],["2024-07-24T07:44:41.010000"],["2024-07-24T07:44:42.010000"],["2024-07-24T07:44:43.010000"],["2024-07-24T07:44:44.010000"],["2024-07-24T07:44:45.010000"],["2024-07-24T07:44:46.010000"],["2024-07-24T07:44:47.010000"],["2024-07-24T07:44:48.010000"],["2024-07-24T07:44:49.010000"],["2024-07-24T07:44:50.010000"],["2024-07-24T07:44:51.010000"],["2024-07-24T07:44:52.010000"],["2024-07-24T07:44:53.010000"],["2024-07-24T07:44:54.010000"],["2024-07-24T07:44:55.010000"],["2024-07-24T07:44:56.010000"],["2024-07-24T07:44:57.010000"],["2024-07-24T07:44:58.010000"],["2024-07-24T07:44:59.010000"],["2024-07-24T07:45:00.010000"],["2024-07-24T07:45:01.010000"],["2024-07-24T07:45:02.010000"],["2024-07-24T07:45:03.010000"],["2024-07-24T07:45:04.010000"],["2024-07-24T07:45:05.010000"],["2024-07-24T07:45:06.010000"],["2024-07-24T07:45:07.010000"],["2024-07-24T07:45:08.010000"],["2024-07-24T07:45:09.010000"],["2024-07-24T07:45:10.010000"],["2024-07-24T07:45:11.010000"],["2024-07-24T07:45:12.010000"],["2024-07-24T07:45:13.010000"],["2024-07-24T07:45:14.010000"],["2024-07-24T07:45:15.010000"],["2024-07-24T07:45:16.010000"],["2024-07-24T07:45:17.010000"],["2024-07-24T07:45:18.010000"],["2024-07-24T07:45:19.010000"],["2024-07-24T07:45:20.010000"],["2024-07-24T07:45:21.010000"],["2024-07-24T07:45:22.010000"],["2024-07-24T07:45:23.010000"],["2024-07-24T07:45:24.010000"],["2024-07-24T07:45:25.010000"],["2024-07-24T07:45:26.010000"],["2024-07-24T07:45:27.010000"],["2024-07-24T07:45:28.010000"],["2024-07-24T07:45:29.010000"],["2024-07-24T07:45:30.010000"],["2024-07-24T07:45:31.010000"],["2024-07-24T07:45:32.010000"],["2024-07-24T07:45:33.010000"],["2024-07-24T07:45:34.010000"],["2024-07-24T07:45:35.010000"],["2024-07-24T07:45:36.010000"],["2024-07-24T07:45:37.010000"],["2024-07-24T07:45:38.010000"],["2024-07-24T07:45:39.010000"],["2024-07-24T07:45:40.010000"],["2024-07-24T07:45:41.010000"],["2024-07-24T07:45:42.010000"],["2024-07-24T07:45:43.010000"],["2024-07-24T07:45:44.010000"],["2024-07-24T07:45:45.010000"],["2024-07-24T07:45:46.010000"],["2024-07-24T07:45:47.010000"],["2024-07-24T07:45:48.010000"],["2024-07-24T07:45:49.010000"],["2024-07-24T07:45:50.010000"],["2024-07-24T07:45:51.010000"],["2024-07-24T07:45:52.010000"],["2024-07-24T07:45:53.010000"],["2024-07-24T07:45:54.010000"],["2024-07-24T07:45:55.010000"],["2024-07-24T07:45:56.010000"],["2024-07-24T07:45:57.010000"],["2024-07-24T07:45:58.010000"],["2024-07-24T07:45:59.010000"],["2024-07-24T07:46:00.010000"],["2024-07-24T07:46:01.010000"],["2024-07-24T07:46:02.010000"],["2024-07-24T07:46:03.010000"],["2024-07-24T07:46:04.010000"],["2024-07-24T07:46:05.010000"],["2024-07-24T07:46:06.010000"],["2024-07-24T07:46:07.010000"],["2024-07-24T07:46:08.010000"],["2024-07-24T07:46:09.010000"],["2024-07-24T07:46:10.010000"],["2024-07-24T07:46:11.010000"],["2024-07-24T07:46:12.010000"],["2024-07-24T07:46:13.010000"],["2024-07-24T07:46:14.010000"],["2024-07-24T07:46:15.010000"],["2024-07-24T07:46:16.010000"],["2024-07-24T07:46:17.010000"],["2024-07-24T07:46:18.010000"],["2024-07-24T07:46:19.010000"],["2024-07-24T07:46:20.010000"],["2024-07-24T07:46:21.010000"],["2024-07-24T07:46:22.010000"],["2024-07-24T07:46:23.010000"],["2024-07-24T07:46:24.010000"],["2024-07-24T07:46:25.010000"],["2024-07-24T07:46:26.010000"],["2024-07-24T07:46:27.010000"],["2024-07-24T07:46:28.010000"],["2024-07-24T07:46:29.010000"],["2024-07-24T07:46:30.010000"],["2024-07-24T07:46:31.010000"],["2024-07-24T07:46:32.010000"],["2024-07-24T07:46:33.010000"],["2024-07-24T07:46:34.010000"],["2024-07-24T07:46:35.010000"],["2024-07-24T07:46:36.010000"],["2024-07-24T07:46:37.010000"],["2024-07-24T07:46:38.010000"],["2024-07-24T07:46:39.010000"],["2024-07-24T07:46:40.010000"],["2024-07-24T07:46:41.010000"],["2024-07-24T07:46:42.010000"],["2024-07-24T07:46:43.010000"],["2024-07-24T07:46:44.010000"],["2024-07-24T07:46:45.010000"],["2024-07-24T07:46:46.010000"],["2024-07-24T07:46:47.010000"],["2024-07-24T07:46:48.010000"],["2024-07-24T07:46:49.010000"],["2024-07-24T07:46:50.010000"],["2024-07-24T07:46:51.010000"],["2024-07-24T07:46:52.010000"],["2024-07-24T07:46:53.010000"],["2024-07-24T07:46:54.010000"],["2024-07-24T07:46:55.010000"],["2024-07-24T07:46:56.010000"],["2024-07-24T07:46:57.010000"],["2024-07-24T07:46:58.010000"],["2024-07-24T07:46:59.010000"],["2024-07-24T07:47:00.010000"],["2024-07-24T07:47:01.010000"],["2024-07-24T07:47:02.010000"],["2024-07-24T07:47:03.010000"],["2024-07-24T07:47:04.010000"],["2024-07-24T07:47:05.010000"],["2024-07-24T07:47:06.010000"],["2024-07-24T07:47:07.010000"],["2024-07-24T07:47:08.010000"],["2024-07-24T07:47:09.010000"],["2024-07-24T07:47:10.010000"],["2024-07-24T07:47:11.010000"],["2024-07-24T07:47:12.010000"],["2024-07-24T07:47:13.010000"],["2024-07-24T07:47:14.010000"],["2024-07-24T07:47:15.010000"],["2024-07-24T07:47:16.010000"],["2024-07-24T07:47:17.010000"],["2024-07-24T07:47:18.010000"],["2024-07-24T07:47:19.010000"],["2024-07-24T07:47:20.010000"],["2024-07-24T07:47:21.010000"],["2024-07-24T07:47:22.010000"],["2024-07-24T07:47:23.010000"],["2024-07-24T07:47:24.010000"],["2024-07-24T07:47:25.010000"],["2024-07-24T07:47:26.010000"],["2024-07-24T07:47:27.010000"],["2024-07-24T07:47:28.010000"],["2024-07-24T07:47:29.010000"],["2024-07-24T07:47:30.010000"],["2024-07-24T07:47:31.010000"],["2024-07-24T07:47:32.010000"],["2024-07-24T07:47:33.010000"],["2024-07-24T07:47:34.010000"],["2024-07-24T07:47:35.010000"],["2024-07-24T07:47:36.010000"],["2024-07-24T07:47:37.010000"],["2024-07-24T07:47:38.010000"],["2024-07-24T07:47:39.010000"],["2024-07-24T07:47:40.010000"],["2024-07-24T07:47:41.010000"],["2024-07-24T07:47:42.010000"],["2024-07-24T07:47:43.010000"],["2024-07-24T07:47:44.010000"],["2024-07-24T07:47:45.010000"],["2024-07-24T07:47:46.010000"],["2024-07-24T07:47:47.010000"],["2024-07-24T07:47:48.010000"],["2024-07-24T07:47:49.010000"],["2024-07-24T07:47:50.010000"],["2024-07-24T07:47:51.010000"],["2024-07-24T07:47:52.010000"],["2024-07-24T07:47:53.010000"],["2024-07-24T07:47:54.010000"],["2024-07-24T07:47:55.010000"],["2024-07-24T07:47:56.010000"],["2024-07-24T07:47:57.010000"],["2024-07-24T07:47:58.010000"],["2024-07-24T07:47:59.010000"],["2024-07-24T07:48:00.010000"],["2024-07-24T07:48:01.010000"],["2024-07-24T07:48:02.010000"],["2024-07-24T07:48:03.010000"],["2024-07-24T07:48:04.010000"],["2024-07-24T07:48:05.010000"],["2024-07-24T07:48:06.010000"],["2024-07-24T07:48:07.010000"],["2024-07-24T07:48:08.010000"],["2024-07-24T07:48:09.010000"],["2024-07-24T07:48:10.010000"],["2024-07-24T07:48:11.010000"],["2024-07-24T07:48:12.010000"],["2024-07-24T07:48:13.010000"],["2024-07-24T07:48:14.010000"],["2024-07-24T07:48:15.010000"],["2024-07-24T07:48:16.010000"],["2024-07-24T07:48:17.010000"],["2024-07-24T07:48:18.010000"],["2024-07-24T07:48:19.010000"],["2024-07-24T07:48:20.010000"],["2024-07-24T07:48:21.010000"],["2024-07-24T07:48:22.010000"],["2024-07-24T07:48:23.010000"],["2024-07-24T07:48:24.010000"],["2024-07-24T07:48:25.010000"],["2024-07-24T07:48:26.010000"],["2024-07-24T07:48:27.010000"],["2024-07-24T07:48:28.010000"],["2024-07-24T07:48:29.010000"],["2024-07-24T07:48:30.010000"],["2024-07-24T07:48:31.010000"],["2024-07-24T07:48:32.010000"],["2024-07-24T07:48:33.010000"],["2024-07-24T07:48:34.010000"],["2024-07-24T07:48:35.010000"],["2024-07-24T07:48:36.010000"],["2024-07-24T07:48:37.010000"],["2024-07-24T07:48:38.010000"],["2024-07-24T07:48:39.010000"],["2024-07-24T07:48:40.010000"],["2024-07-24T07:48:41.010000"],["2024-07-24T07:48:42.010000"],["2024-07-24T07:48:43.010000"],["2024-07-24T07:48:44.010000"],["2024-07-24T07:48:45.010000"],["2024-07-24T07:48:46.010000"],["2024-07-24T07:48:47.010000"],["2024-07-24T07:48:48.010000"],["2024-07-24T07:48:49.010000"],["2024-07-24T07:48:50.010000"],["2024-07-24T07:48:51.010000"],["2024-07-24T07:48:52.010000"],["2024-07-24T07:48:53.010000"],["2024-07-24T07:48:54.010000"],["2024-07-24T07:48:55.010000"],["2024-07-24T07:48:56.010000"],["2024-07-24T07:48:57.010000"],["2024-07-24T07:48:58.010000"],["2024-07-24T07:48:59.010000"],["2024-07-24T07:49:00.010000"],["2024-07-24T07:49:01.010000"],["2024-07-24T07:49:02.010000"],["2024-07-24T07:49:03.010000"],["2024-07-24T07:49:04.010000"],["2024-07-24T07:49:05.010000"],["2024-07-24T07:49:06.010000"],["2024-07-24T07:49:07.010000"],["2024-07-24T07:49:08.010000"],["2024-07-24T07:49:09.010000"],["2024-07-24T07:49:10.010000"],["2024-07-24T07:49:11.010000"],["2024-07-24T07:49:12.010000"],["2024-07-24T07:49:13.010000"],["2024-07-24T07:49:14.010000"],["2024-07-24T07:49:15.010000"],["2024-07-24T07:49:16.010000"],["2024-07-24T07:49:17.010000"],["2024-07-24T07:49:18.010000"],["2024-07-24T07:49:19.010000"],["2024-07-24T07:49:20.010000"],["2024-07-24T07:49:21.010000"],["2024-07-24T07:49:22.010000"],["2024-07-24T07:49:23.010000"],["2024-07-24T07:49:24.010000"],["2024-07-24T07:49:25.010000"],["2024-07-24T07:49:26.010000"],["2024-07-24T07:49:27.010000"],["2024-07-24T07:49:28.010000"],["2024-07-24T07:49:29.010000"],["2024-07-24T07:49:30.010000"],["2024-07-24T07:49:31.010000"],["2024-07-24T07:49:32.010000"],["2024-07-24T07:49:33.010000"],["2024-07-24T07:49:34.010000"],["2024-07-24T07:49:35.010000"],["2024-07-24T07:49:36.010000"],["2024-07-24T07:49:37.010000"],["2024-07-24T07:49:38.010000"],["2024-07-24T07:49:39.010000"],["2024-07-24T07:49:40.010000"],["2024-07-24T07:49:41.010000"],["2024-07-24T07:49:42.010000"],["2024-07-24T07:49:43.010000"],["2024-07-24T07:49:44.010000"],["2024-07-24T07:49:45.010000"],["2024-07-24T07:49:46.010000"],["2024-07-24T07:49:47.010000"],["2024-07-24T07:49:48.010000"],["2024-07-24T07:49:49.010000"],["2024-07-24T07:49:50.010000"],["2024-07-24T07:49:51.010000"],["2024-07-24T07:49:52.010000"],["2024-07-24T07:49:53.010000"],["2024-07-24T07:49:54.010000"],["2024-07-24T07:49:55.010000"],["2024-07-24T07:49:56.010000"],["2024-07-24T07:49:57.010000"],["2024-07-24T07:49:58.010000"],["2024-07-24T07:49:59.010000"],["2024-07-24T07:50:00.010000"],["2024-07-24T07:50:01.010000"],["2024-07-24T07:50:02.010000"],["2024-07-24T07:50:03.010000"],["2024-07-24T07:50:04.010000"],["2024-07-24T07:50:05.010000"],["2024-07-24T07:50:06.010000"],["2024-07-24T07:50:07.010000"],["2024-07-24T07:50:08.010000"],["2024-07-24T07:50:09.010000"],["2024-07-24T07:50:10.010000"],["2024-07-24T07:50:11.010000"],["2024-07-24T07:50:12.010000"],["2024-07-24T07:50:13.010000"],["2024-07-24T07:50:14.010000"],["2024-07-24T07:50:15.010000"],["2024-07-24T07:50:16.010000"],["2024-07-24T07:50:17.010000"],["2024-07-24T07:50:18.010000"],["2024-07-24T07:50:19.010000"],["2024-07-24T07:50:20.010000"],["2024-07-24T07:50:21.010000"],["2024-07-24T07:50:22.010000"],["2024-07-24T07:50:23.010000"],["2024-07-24T07:50:24.010000"],["2024-07-24T07:50:25.010000"],["2024-07-24T07:50:26.010000"],["2024-07-24T07:50:27.010000"],["2024-07-24T07:50:28.010000"],["2024-07-24T07:50:29.010000"],["2024-07-24T07:50:30.010000"],["2024-07-24T07:50:31.010000"],["2024-07-24T07:50:32.010000"],["2024-07-24T07:50:33.010000"],["2024-07-24T07:50:34.010000"],["2024-07-24T07:50:35.010000"],["2024-07-24T07:50:36.010000"],["2024-07-24T07:50:37.010000"],["2024-07-24T07:50:38.010000"],["2024-07-24T07:50:39.010000"],["2024-07-24T07:50:40.010000"],["2024-07-24T07:50:41.010000"],["2024-07-24T07:50:42.010000"],["2024-07-24T07:50:43.010000"],["2024-07-24T07:50:44.010000"],["2024-07-24T07:50:45.010000"],["2024-07-24T07:50:46.010000"],["2024-07-24T07:50:47.010000"],["2024-07-24T07:50:48.010000"],["2024-07-24T07:50:49.010000"],["2024-07-24T07:50:50.010000"],["2024-07-24T07:50:51.010000"],["2024-07-24T07:50:52.010000"],["2024-07-24T07:50:53.010000"],["2024-07-24T07:50:54.010000"],["2024-07-24T07:50:55.010000"],["2024-07-24T07:50:56.010000"],["2024-07-24T07:50:57.010000"],["2024-07-24T07:50:58.010000"],["2024-07-24T07:50:59.010000"],["2024-07-24T07:51:00.010000"],["2024-07-24T07:51:01.010000"],["2024-07-24T07:51:02.010000"],["2024-07-24T07:51:03.010000"],["2024-07-24T07:51:04.010000"],["2024-07-24T07:51:05.010000"],["2024-07-24T07:51:06.010000"],["2024-07-24T07:51:07.010000"],["2024-07-24T07:51:08.010000"],["2024-07-24T07:51:09.010000"],["2024-07-24T07:51:10.010000"],["2024-07-24T07:51:11.010000"],["2024-07-24T07:51:12.010000"],["2024-07-24T07:51:13.010000"],["2024-07-24T07:51:14.010000"],["2024-07-24T07:51:15.010000"],["2024-07-24T07:51:16.010000"],["2024-07-24T07:51:17.010000"],["2024-07-24T07:51:18.010000"],["2024-07-24T07:51:19.010000"],["2024-07-24T07:51:20.010000"],["2024-07-24T07:51:21.010000"],["2024-07-24T07:51:22.010000"],["2024-07-24T07:51:23.010000"],["2024-07-24T07:51:24.010000"],["2024-07-24T07:51:25.010000"],["2024-07-24T07:51:26.010000"],["2024-07-24T07:51:27.010000"],["2024-07-24T07:51:28.010000"],["2024-07-24T07:51:29.010000"],["2024-07-24T07:51:30.010000"],["2024-07-24T07:51:31.010000"],["2024-07-24T07:51:32.010000"],["2024-07-24T07:51:33.010000"],["2024-07-24T07:51:34.010000"],["2024-07-24T07:51:35.010000"],["2024-07-24T07:51:36.010000"],["2024-07-24T07:51:37.010000"],["2024-07-24T07:51:38.010000"],["2024-07-24T07:51:39.010000"],["2024-07-24T07:51:40.010000"],["2024-07-24T07:51:41.010000"],["2024-07-24T07:51:42.010000"],["2024-07-24T07:51:43.010000"],["2024-07-24T07:51:44.010000"],["2024-07-24T07:51:45.010000"],["2024-07-24T07:51:46.010000"],["2024-07-24T07:51:47.010000"],["2024-07-24T07:51:48.010000"],["2024-07-24T07:51:49.010000"],["2024-07-24T07:51:50.010000"],["2024-07-24T07:51:51.010000"],["2024-07-24T07:51:52.010000"],["2024-07-24T07:51:53.010000"],["2024-07-24T07:51:54.010000"],["2024-07-24T07:51:55.010000"],["2024-07-24T07:51:56.010000"],["2024-07-24T07:51:57.010000"],["2024-07-24T07:51:58.010000"],["2024-07-24T07:51:59.010000"],["2024-07-24T07:52:00.010000"],["2024-07-24T07:52:01.010000"],["2024-07-24T07:52:02.010000"],["2024-07-24T07:52:03.010000"],["2024-07-24T07:52:04.010000"],["2024-07-24T07:52:05.010000"],["2024-07-24T07:52:06.010000"],["2024-07-24T07:52:07.010000"],["2024-07-24T07:52:08.010000"],["2024-07-24T07:52:09.010000"],["2024-07-24T07:52:10.010000"],["2024-07-24T07:52:11.010000"],["2024-07-24T07:52:12.010000"],["2024-07-24T07:52:13.010000"],["2024-07-24T07:52:14.010000"],["2024-07-24T07:52:15.010000"],["2024-07-24T07:52:16.010000"],["2024-07-24T07:52:17.010000"],["2024-07-24T07:52:18.010000"],["2024-07-24T07:52:19.010000"],["2024-07-24T07:52:20.010000"],["2024-07-24T07:52:21.010000"],["2024-07-24T07:52:22.010000"],["2024-07-24T07:52:23.010000"],["2024-07-24T07:52:24.010000"],["2024-07-24T07:52:25.010000"],["2024-07-24T07:52:26.010000"],["2024-07-24T07:52:27.010000"],["2024-07-24T07:52:28.010000"],["2024-07-24T07:52:29.010000"],["2024-07-24T07:52:30.010000"],["2024-07-24T07:52:31.010000"],["2024-07-24T07:52:32.010000"],["2024-07-24T07:52:33.010000"],["2024-07-24T07:52:34.010000"],["2024-07-24T07:52:35.010000"],["2024-07-24T07:52:36.010000"],["2024-07-24T07:52:37.010000"],["2024-07-24T07:52:38.010000"],["2024-07-24T07:52:39.010000"],["2024-07-24T07:52:40.010000"],["2024-07-24T07:52:41.010000"],["2024-07-24T07:52:42.010000"],["2024-07-24T07:52:43.010000"],["2024-07-24T07:52:44.010000"],["2024-07-24T07:52:45.010000"],["2024-07-24T07:52:46.010000"],["2024-07-24T07:52:47.010000"],["2024-07-24T07:52:48.010000"],["2024-07-24T07:52:49.010000"],["2024-07-24T07:52:50.010000"],["2024-07-24T07:52:51.010000"],["2024-07-24T07:52:52.010000"],["2024-07-24T07:52:53.010000"],["2024-07-24T07:52:54.010000"],["2024-07-24T07:52:55.010000"],["2024-07-24T07:52:56.010000"],["2024-07-24T07:52:57.010000"],["2024-07-24T07:52:58.010000"],["2024-07-24T07:52:59.010000"],["2024-07-24T07:53:00.010000"],["2024-07-24T07:53:01.010000"],["2024-07-24T07:53:02.010000"],["2024-07-24T07:53:03.010000"],["2024-07-24T07:53:04.010000"],["2024-07-24T07:53:05.010000"],["2024-07-24T07:53:06.010000"],["2024-07-24T07:53:07.010000"],["2024-07-24T07:53:08.010000"],["2024-07-24T07:53:09.010000"],["2024-07-24T07:53:10.010000"],["2024-07-24T07:53:11.010000"],["2024-07-24T07:53:12.010000"],["2024-07-24T07:53:13.010000"],["2024-07-24T07:53:14.010000"],["2024-07-24T07:53:15.010000"],["2024-07-24T07:53:16.010000"],["2024-07-24T07:53:17.010000"],["2024-07-24T07:53:18.010000"],["2024-07-24T07:53:19.010000"],["2024-07-24T07:53:20.010000"],["2024-07-24T07:53:21.010000"],["2024-07-24T07:53:22.010000"],["2024-07-24T07:53:23.010000"],["2024-07-24T07:53:24.010000"],["2024-07-24T07:53:25.010000"],["2024-07-24T07:53:26.010000"],["2024-07-24T07:53:27.010000"],["2024-07-24T07:53:28.010000"],["2024-07-24T07:53:29.010000"],["2024-07-24T07:53:30.010000"],["2024-07-24T07:53:31.010000"],["2024-07-24T07:53:32.010000"],["2024-07-24T07:53:33.010000"],["2024-07-24T07:53:34.010000"],["2024-07-24T07:53:35.010000"],["2024-07-24T07:53:36.010000"],["2024-07-24T07:53:37.010000"],["2024-07-24T07:53:38.010000"],["2024-07-24T07:53:39.010000"],["2024-07-24T07:53:40.010000"],["2024-07-24T07:53:41.010000"],["2024-07-24T07:53:42.010000"],["2024-07-24T07:53:43.010000"],["2024-07-24T07:53:44.010000"],["2024-07-24T07:53:45.010000"],["2024-07-24T07:53:46.010000"],["2024-07-24T07:53:47.010000"],["2024-07-24T07:53:48.010000"],["2024-07-24T07:53:49.010000"],["2024-07-24T07:53:50.010000"],["2024-07-24T07:53:51.010000"],["2024-07-24T07:53:52.010000"],["2024-07-24T07:53:53.010000"],["2024-07-24T07:53:54.010000"],["2024-07-24T07:53:55.010000"],["2024-07-24T07:53:56.010000"],["2024-07-24T07:53:57.010000"],["2024-07-24T07:53:58.010000"],["2024-07-24T07:53:59.010000"],["2024-07-24T07:54:00.010000"],["2024-07-24T07:54:01.010000"],["2024-07-24T07:54:02.010000"],["2024-07-24T07:54:03.010000"],["2024-07-24T07:54:04.010000"],["2024-07-24T07:54:05.010000"],["2024-07-24T07:54:06.010000"],["2024-07-24T07:54:07.010000"],["2024-07-24T07:54:08.010000"],["2024-07-24T07:54:09.010000"],["2024-07-24T07:54:10.010000"],["2024-07-24T07:54:11.010000"],["2024-07-24T07:54:12.010000"],["2024-07-24T07:54:13.010000"],["2024-07-24T07:54:14.010000"],["2024-07-24T07:54:15.010000"],["2024-07-24T07:54:16.010000"],["2024-07-24T07:54:17.010000"],["2024-07-24T07:54:18.010000"],["2024-07-24T07:54:19.010000"],["2024-07-24T07:54:20.010000"],["2024-07-24T07:54:21.010000"],["2024-07-24T07:54:22.010000"],["2024-07-24T07:54:23.010000"],["2024-07-24T07:54:24.010000"],["2024-07-24T07:54:25.010000"],["2024-07-24T07:54:26.010000"],["2024-07-24T07:54:27.010000"],["2024-07-24T07:54:28.010000"],["2024-07-24T07:54:29.010000"],["2024-07-24T07:54:30.010000"],["2024-07-24T07:54:31.010000"],["2024-07-24T07:54:32.010000"],["2024-07-24T07:54:33.010000"],["2024-07-24T07:54:34.010000"],["2024-07-24T07:54:35.010000"],["2024-07-24T07:54:36.010000"],["2024-07-24T07:54:37.010000"],["2024-07-24T07:54:38.010000"],["2024-07-24T07:54:39.010000"],["2024-07-24T07:54:40.010000"],["2024-07-24T07:54:41.010000"],["2024-07-24T07:54:42.010000"],["2024-07-24T07:54:43.010000"],["2024-07-24T07:54:44.010000"],["2024-07-24T07:54:45.010000"],["2024-07-24T07:54:46.010000"],["2024-07-24T07:54:47.010000"],["2024-07-24T07:54:48.010000"],["2024-07-24T07:54:49.010000"],["2024-07-24T07:54:50.010000"],["2024-07-24T07:54:51.010000"],["2024-07-24T07:54:52.010000"],["2024-07-24T07:54:53.010000"],["2024-07-24T07:54:54.010000"],["2024-07-24T07:54:55.010000"],["2024-07-24T07:54:56.010000"],["2024-07-24T07:54:57.010000"],["2024-07-24T07:54:58.010000"],["2024-07-24T07:54:59.010000"],["2024-07-24T07:55:00.010000"],["2024-07-24T07:55:01.010000"],["2024-07-24T07:55:02.010000"],["2024-07-24T07:55:03.010000"],["2024-07-24T07:55:04.010000"],["2024-07-24T07:55:05.010000"],["2024-07-24T07:55:06.010000"],["2024-07-24T07:55:07.010000"],["2024-07-24T07:55:08.010000"],["2024-07-24T07:55:09.010000"],["2024-07-24T07:55:10.010000"],["2024-07-24T07:55:11.010000"],["2024-07-24T07:55:12.010000"],["2024-07-24T07:55:13.010000"],["2024-07-24T07:55:14.010000"],["2024-07-24T07:55:15.010000"],["2024-07-24T07:55:16.010000"],["2024-07-24T07:55:17.010000"],["2024-07-24T07:55:18.010000"],["2024-07-24T07:55:19.010000"],["2024-07-24T07:55:20.010000"],["2024-07-24T07:55:21.010000"],["2024-07-24T07:55:22.010000"],["2024-07-24T07:55:23.010000"],["2024-07-24T07:55:24.010000"],["2024-07-24T07:55:25.010000"],["2024-07-24T07:55:26.010000"],["2024-07-24T07:55:27.010000"],["2024-07-24T07:55:28.010000"],["2024-07-24T07:55:29.010000"],["2024-07-24T07:55:30.010000"],["2024-07-24T07:55:31.010000"],["2024-07-24T07:55:32.010000"],["2024-07-24T07:55:33.010000"],["2024-07-24T07:55:34.010000"],["2024-07-24T07:55:35.010000"],["2024-07-24T07:55:36.010000"],["2024-07-24T07:55:37.010000"],["2024-07-24T07:55:38.010000"],["2024-07-24T07:55:39.010000"],["2024-07-24T07:55:40.010000"],["2024-07-24T07:55:41.010000"],["2024-07-24T07:55:42.010000"],["2024-07-24T07:55:43.010000"],["2024-07-24T07:55:44.010000"],["2024-07-24T07:55:45.010000"],["2024-07-24T07:55:46.010000"],["2024-07-24T07:55:47.010000"],["2024-07-24T07:55:48.010000"],["2024-07-24T07:55:49.010000"],["2024-07-24T07:55:50.010000"],["2024-07-24T07:55:51.010000"],["2024-07-24T07:55:52.010000"],["2024-07-24T07:55:53.010000"],["2024-07-24T07:55:54.010000"],["2024-07-24T07:55:55.010000"],["2024-07-24T07:55:56.010000"],["2024-07-24T07:55:57.010000"],["2024-07-24T07:55:58.010000"],["2024-07-24T07:55:59.010000"],["2024-07-24T07:56:00.010000"],["2024-07-24T07:56:01.010000"],["2024-07-24T07:56:02.010000"],["2024-07-24T07:56:03.010000"],["2024-07-24T07:56:04.010000"],["2024-07-24T07:56:05.010000"],["2024-07-24T07:56:06.010000"],["2024-07-24T07:56:07.010000"],["2024-07-24T07:56:08.010000"],["2024-07-24T07:56:09.010000"],["2024-07-24T07:56:10.010000"],["2024-07-24T07:56:11.010000"],["2024-07-24T07:56:12.010000"],["2024-07-24T07:56:13.010000"],["2024-07-24T07:56:14.010000"],["2024-07-24T07:56:15.010000"],["2024-07-24T07:56:16.010000"],["2024-07-24T07:56:17.010000"],["2024-07-24T07:56:18.010000"],["2024-07-24T07:56:19.010000"],["2024-07-24T07:56:20.010000"],["2024-07-24T07:56:21.010000"],["2024-07-24T07:56:22.010000"],["2024-07-24T07:56:23.010000"],["2024-07-24T07:56:24.010000"],["2024-07-24T07:56:25.010000"],["2024-07-24T07:56:26.010000"],["2024-07-24T07:56:27.010000"],["2024-07-24T07:56:28.010000"],["2024-07-24T07:56:29.010000"],["2024-07-24T07:56:30.010000"],["2024-07-24T07:56:31.010000"],["2024-07-24T07:56:32.010000"],["2024-07-24T07:56:33.010000"],["2024-07-24T07:56:34.010000"],["2024-07-24T07:56:35.010000"],["2024-07-24T07:56:36.010000"],["2024-07-24T07:56:37.010000"],["2024-07-24T07:56:38.010000"],["2024-07-24T07:56:39.010000"],["2024-07-24T07:56:40.010000"],["2024-07-24T07:56:41.010000"],["2024-07-24T07:56:42.010000"],["2024-07-24T07:56:43.010000"],["2024-07-24T07:56:44.010000"],["2024-07-24T07:56:45.010000"],["2024-07-24T07:56:46.010000"],["2024-07-24T07:56:47.010000"],["2024-07-24T07:56:48.010000"],["2024-07-24T07:56:49.010000"],["2024-07-24T07:56:50.010000"],["2024-07-24T07:56:51.010000"],["2024-07-24T07:56:52.010000"],["2024-07-24T07:56:53.010000"],["2024-07-24T07:56:54.010000"],["2024-07-24T07:56:55.010000"],["2024-07-24T07:56:56.010000"],["2024-07-24T07:56:57.010000"],["2024-07-24T07:56:58.010000"],["2024-07-24T07:56:59.010000"],["2024-07-24T07:57:00.010000"],["2024-07-24T07:57:01.010000"],["2024-07-24T07:57:02.010000"],["2024-07-24T07:57:03.010000"],["2024-07-24T07:57:04.010000"],["2024-07-24T07:57:05.010000"],["2024-07-24T07:57:06.010000"],["2024-07-24T07:57:07.010000"],["2024-07-24T07:57:08.010000"],["2024-07-24T07:57:09.010000"],["2024-07-24T07:57:10.010000"],["2024-07-24T07:57:11.010000"],["2024-07-24T07:57:12.010000"],["2024-07-24T07:57:13.010000"],["2024-07-24T07:57:14.010000"],["2024-07-24T07:57:15.010000"],["2024-07-24T07:57:16.010000"],["2024-07-24T07:57:17.010000"],["2024-07-24T07:57:18.010000"],["2024-07-24T07:57:19.010000"],["2024-07-24T07:57:20.010000"],["2024-07-24T07:57:21.010000"],["2024-07-24T07:57:22.010000"],["2024-07-24T07:57:23.010000"],["2024-07-24T07:57:24.010000"],["2024-07-24T07:57:25.010000"],["2024-07-24T07:57:26.010000"],["2024-07-24T07:57:27.010000"],["2024-07-24T07:57:28.010000"],["2024-07-24T07:57:29.010000"],["2024-07-24T07:57:30.010000"],["2024-07-24T07:57:31.010000"],["2024-07-24T07:57:32.010000"],["2024-07-24T07:57:33.010000"],["2024-07-24T07:57:34.010000"],["2024-07-24T07:57:35.010000"],["2024-07-24T07:57:36.010000"],["2024-07-24T07:57:37.010000"],["2024-07-24T07:57:38.010000"],["2024-07-24T07:57:39.010000"],["2024-07-24T07:57:40.010000"],["2024-07-24T07:57:41.010000"],["2024-07-24T07:57:42.010000"],["2024-07-24T07:57:43.010000"],["2024-07-24T07:57:44.010000"],["2024-07-24T07:57:45.010000"],["2024-07-24T07:57:46.010000"],["2024-07-24T07:57:47.010000"],["2024-07-24T07:57:48.010000"],["2024-07-24T07:57:49.010000"],["2024-07-24T07:57:50.010000"],["2024-07-24T07:57:51.010000"],["2024-07-24T07:57:52.010000"],["2024-07-24T07:57:53.010000"],["2024-07-24T07:57:54.010000"],["2024-07-24T07:57:55.010000"],["2024-07-24T07:57:56.010000"],["2024-07-24T07:57:57.010000"],["2024-07-24T07:57:58.010000"],["2024-07-24T07:57:59.010000"],["2024-07-24T07:58:00.010000"],["2024-07-24T07:58:01.010000"],["2024-07-24T07:58:02.010000"],["2024-07-24T07:58:03.010000"],["2024-07-24T07:58:04.010000"],["2024-07-24T07:58:05.010000"],["2024-07-24T07:58:06.010000"],["2024-07-24T07:58:07.010000"],["2024-07-24T07:58:08.010000"],["2024-07-24T07:58:09.010000"],["2024-07-24T07:58:10.010000"],["2024-07-24T07:58:11.010000"],["2024-07-24T07:58:12.010000"],["2024-07-24T07:58:13.010000"],["2024-07-24T07:58:14.010000"],["2024-07-24T07:58:15.010000"],["2024-07-24T07:58:16.010000"],["2024-07-24T07:58:17.010000"],["2024-07-24T07:58:18.010000"],["2024-07-24T07:58:19.010000"],["2024-07-24T07:58:20.010000"],["2024-07-24T07:58:21.010000"],["2024-07-24T07:58:22.010000"],["2024-07-24T07:58:23.010000"],["2024-07-24T07:58:24.010000"],["2024-07-24T07:58:25.010000"],["2024-07-24T07:58:26.010000"],["2024-07-24T07:58:27.010000"],["2024-07-24T07:58:28.010000"],["2024-07-24T07:58:29.010000"],["2024-07-24T07:58:30.010000"],["2024-07-24T07:58:31.010000"],["2024-07-24T07:58:32.010000"],["2024-07-24T07:58:33.010000"],["2024-07-24T07:58:34.010000"],["2024-07-24T07:58:35.010000"],["2024-07-24T07:58:36.010000"],["2024-07-24T07:58:37.010000"],["2024-07-24T07:58:38.010000"],["2024-07-24T07:58:39.010000"],["2024-07-24T07:58:40.010000"],["2024-07-24T07:58:41.010000"],["2024-07-24T07:58:42.010000"],["2024-07-24T07:58:43.010000"],["2024-07-24T07:58:44.010000"],["2024-07-24T07:58:45.010000"],["2024-07-24T07:58:46.010000"],["2024-07-24T07:58:47.010000"],["2024-07-24T07:58:48.010000"],["2024-07-24T07:58:49.010000"],["2024-07-24T07:58:50.010000"],["2024-07-24T07:58:51.010000"],["2024-07-24T07:58:52.010000"],["2024-07-24T07:58:53.010000"],["2024-07-24T07:58:54.010000"],["2024-07-24T07:58:55.010000"],["2024-07-24T07:58:56.010000"],["2024-07-24T07:58:57.010000"],["2024-07-24T07:58:58.010000"],["2024-07-24T07:58:59.010000"],["2024-07-24T07:59:00.010000"],["2024-07-24T07:59:01.010000"],["2024-07-24T07:59:02.010000"],["2024-07-24T07:59:03.010000"],["2024-07-24T07:59:04.010000"],["2024-07-24T07:59:05.010000"],["2024-07-24T07:59:06.010000"],["2024-07-24T07:59:07.010000"],["2024-07-24T07:59:08.010000"],["2024-07-24T07:59:09.010000"],["2024-07-24T07:59:10.010000"],["2024-07-24T07:59:11.010000"],["2024-07-24T07:59:12.010000"],["2024-07-24T07:59:13.010000"],["2024-07-24T07:59:14.010000"],["2024-07-24T07:59:15.010000"],["2024-07-24T07:59:16.010000"],["2024-07-24T07:59:17.010000"],["2024-07-24T07:59:18.010000"],["2024-07-24T07:59:19.010000"],["2024-07-24T07:59:20.010000"],["2024-07-24T07:59:21.010000"],["2024-07-24T07:59:22.010000"],["2024-07-24T07:59:23.010000"],["2024-07-24T07:59:24.010000"],["2024-07-24T07:59:25.010000"],["2024-07-24T07:59:26.010000"],["2024-07-24T07:59:27.010000"],["2024-07-24T07:59:28.010000"],["2024-07-24T07:59:29.010000"],["2024-07-24T07:59:30.010000"],["2024-07-24T07:59:31.010000"],["2024-07-24T07:59:32.010000"],["2024-07-24T07:59:33.010000"],["2024-07-24T07:59:34.010000"],["2024-07-24T07:59:35.010000"],["2024-07-24T07:59:36.010000"],["2024-07-24T07:59:37.010000"],["2024-07-24T07:59:38.010000"],["2024-07-24T07:59:39.010000"],["2024-07-24T07:59:40.010000"],["2024-07-24T07:59:41.010000"],["2024-07-24T07:59:42.010000"],["2024-07-24T07:59:43.010000"],["2024-07-24T07:59:44.010000"],["2024-07-24T07:59:45.010000"],["2024-07-24T07:59:46.010000"],["2024-07-24T07:59:47.010000"],["2024-07-24T07:59:48.010000"],["2024-07-24T07:59:49.010000"],["2024-07-24T07:59:50.010000"],["2024-07-24T07:59:51.010000"],["2024-07-24T07:59:52.010000"],["2024-07-24T07:59:53.010000"],["2024-07-24T07:59:54.010000"],["2024-07-24T07:59:55.010000"],["2024-07-24T07:59:56.010000"],["2024-07-24T07:59:57.010000"],["2024-07-24T07:59:58.010000"],["2024-07-24T07:59:59.010000"],["2024-07-24T08:00:00.010000"],["2024-07-24T08:00:01.010000"],["2024-07-24T08:00:02.010000"],["2024-07-24T08:00:03.010000"],["2024-07-24T08:00:04.010000"],["2024-07-24T08:00:05.010000"],["2024-07-24T08:00:06.010000"],["2024-07-24T08:00:07.010000"],["2024-07-24T08:00:08.010000"],["2024-07-24T08:00:09.010000"],["2024-07-24T08:00:10.010000"],["2024-07-24T08:00:11.010000"],["2024-07-24T08:00:12.010000"],["2024-07-24T08:00:13.010000"],["2024-07-24T08:00:14.010000"],["2024-07-24T08:00:15.010000"],["2024-07-24T08:00:16.010000"],["2024-07-24T08:00:17.010000"],["2024-07-24T08:00:18.010000"],["2024-07-24T08:00:19.010000"],["2024-07-24T08:00:20.010000"],["2024-07-24T08:00:21.010000"],["2024-07-24T08:00:22.010000"],["2024-07-24T08:00:23.010000"],["2024-07-24T08:00:24.010000"],["2024-07-24T08:00:25.010000"],["2024-07-24T08:00:26.010000"],["2024-07-24T08:00:27.010000"],["2024-07-24T08:00:28.010000"],["2024-07-24T08:00:29.010000"],["2024-07-24T08:00:30.010000"],["2024-07-24T08:00:31.010000"],["2024-07-24T08:00:32.010000"],["2024-07-24T08:00:33.010000"],["2024-07-24T08:00:34.010000"],["2024-07-24T08:00:35.010000"],["2024-07-24T08:00:36.010000"],["2024-07-24T08:00:37.010000"],["2024-07-24T08:00:38.010000"],["2024-07-24T08:00:39.010000"],["2024-07-24T08:00:40.010000"],["2024-07-24T08:00:41.010000"],["2024-07-24T08:00:42.010000"],["2024-07-24T08:00:43.010000"],["2024-07-24T08:00:44.010000"],["2024-07-24T08:00:45.010000"],["2024-07-24T08:00:46.010000"],["2024-07-24T08:00:47.010000"],["2024-07-24T08:00:48.010000"],["2024-07-24T08:00:49.010000"],["2024-07-24T08:00:50.010000"],["2024-07-24T08:00:51.010000"],["2024-07-24T08:00:52.010000"],["2024-07-24T08:00:53.010000"],["2024-07-24T08:00:54.010000"],["2024-07-24T08:00:55.010000"],["2024-07-24T08:00:56.010000"],["2024-07-24T08:00:57.010000"],["2024-07-24T08:00:58.010000"],["2024-07-24T08:00:59.010000"],["2024-07-24T08:01:00.010000"],["2024-07-24T08:01:01.010000"],["2024-07-24T08:01:02.010000"],["2024-07-24T08:01:03.010000"],["2024-07-24T08:01:04.010000"],["2024-07-24T08:01:05.010000"],["2024-07-24T08:01:06.010000"],["2024-07-24T08:01:07.010000"],["2024-07-24T08:01:08.010000"],["2024-07-24T08:01:09.010000"],["2024-07-24T08:01:10.010000"],["2024-07-24T08:01:11.010000"],["2024-07-24T08:01:12.010000"],["2024-07-24T08:01:13.010000"],["2024-07-24T08:01:14.010000"],["2024-07-24T08:01:15.010000"],["2024-07-24T08:01:16.010000"],["2024-07-24T08:01:17.010000"],["2024-07-24T08:01:18.010000"],["2024-07-24T08:01:19.010000"],["2024-07-24T08:01:20.010000"],["2024-07-24T08:01:21.010000"],["2024-07-24T08:01:22.010000"],["2024-07-24T08:01:23.010000"],["2024-07-24T08:01:24.010000"],["2024-07-24T08:01:25.010000"],["2024-07-24T08:01:26.010000"],["2024-07-24T08:01:27.010000"],["2024-07-24T08:01:28.010000"],["2024-07-24T08:01:29.010000"],["2024-07-24T08:01:30.010000"],["2024-07-24T08:01:31.010000"],["2024-07-24T08:01:32.010000"],["2024-07-24T08:01:33.010000"],["2024-07-24T08:01:34.010000"],["2024-07-24T08:01:35.010000"],["2024-07-24T08:01:36.010000"],["2024-07-24T08:01:37.010000"],["2024-07-24T08:01:38.010000"],["2024-07-24T08:01:39.010000"],["2024-07-24T08:01:40.010000"],["2024-07-24T08:01:41.010000"],["2024-07-24T08:01:42.010000"],["2024-07-24T08:01:43.010000"],["2024-07-24T08:01:44.010000"],["2024-07-24T08:01:45.010000"],["2024-07-24T08:01:46.010000"],["2024-07-24T08:01:47.010000"],["2024-07-24T08:01:48.010000"],["2024-07-24T08:01:49.010000"],["2024-07-24T08:01:50.010000"],["2024-07-24T08:01:51.010000"],["2024-07-24T08:01:52.010000"],["2024-07-24T08:01:53.010000"],["2024-07-24T08:01:54.010000"],["2024-07-24T08:01:55.010000"],["2024-07-24T08:01:56.010000"],["2024-07-24T08:01:57.010000"],["2024-07-24T08:01:58.010000"],["2024-07-24T08:01:59.010000"],["2024-07-24T08:02:00.010000"],["2024-07-24T08:02:01.010000"],["2024-07-24T08:02:02.010000"],["2024-07-24T08:02:03.010000"],["2024-07-24T08:02:04.010000"],["2024-07-24T08:02:05.010000"],["2024-07-24T08:02:06.010000"],["2024-07-24T08:02:07.010000"],["2024-07-24T08:02:08.010000"],["2024-07-24T08:02:09.010000"],["2024-07-24T08:02:10.010000"],["2024-07-24T08:02:11.010000"],["2024-07-24T08:02:12.010000"],["2024-07-24T08:02:13.010000"],["2024-07-24T08:02:14.010000"],["2024-07-24T08:02:15.010000"],["2024-07-24T08:02:16.010000"],["2024-07-24T08:02:17.010000"],["2024-07-24T08:02:18.010000"],["2024-07-24T08:02:19.010000"],["2024-07-24T08:02:20.010000"],["2024-07-24T08:02:21.010000"],["2024-07-24T08:02:22.010000"],["2024-07-24T08:02:23.010000"],["2024-07-24T08:02:24.010000"],["2024-07-24T08:02:25.010000"],["2024-07-24T08:02:26.010000"],["2024-07-24T08:02:27.010000"],["2024-07-24T08:02:28.010000"],["2024-07-24T08:02:29.010000"],["2024-07-24T08:02:30.010000"],["2024-07-24T08:02:31.010000"],["2024-07-24T08:02:32.010000"],["2024-07-24T08:02:33.010000"],["2024-07-24T08:02:34.010000"],["2024-07-24T08:02:35.010000"],["2024-07-24T08:02:36.010000"],["2024-07-24T08:02:37.010000"],["2024-07-24T08:02:38.010000"],["2024-07-24T08:02:39.010000"],["2024-07-24T08:02:40.010000"],["2024-07-24T08:02:41.010000"],["2024-07-24T08:02:42.010000"],["2024-07-24T08:02:43.010000"],["2024-07-24T08:02:44.010000"],["2024-07-24T08:02:45.010000"],["2024-07-24T08:02:46.010000"],["2024-07-24T08:02:47.010000"],["2024-07-24T08:02:48.010000"],["2024-07-24T08:02:49.010000"],["2024-07-24T08:02:50.010000"],["2024-07-24T08:02:51.010000"],["2024-07-24T08:02:52.010000"],["2024-07-24T08:02:53.010000"],["2024-07-24T08:02:54.010000"],["2024-07-24T08:02:55.010000"],["2024-07-24T08:02:56.010000"],["2024-07-24T08:02:57.010000"],["2024-07-24T08:02:58.010000"],["2024-07-24T08:02:59.010000"],["2024-07-24T08:03:00.010000"],["2024-07-24T08:03:01.010000"],["2024-07-24T08:03:02.010000"],["2024-07-24T08:03:03.010000"],["2024-07-24T08:03:04.010000"],["2024-07-24T08:03:05.010000"],["2024-07-24T08:03:06.010000"],["2024-07-24T08:03:07.010000"],["2024-07-24T08:03:08.010000"],["2024-07-24T08:03:09.010000"],["2024-07-24T08:03:10.010000"],["2024-07-24T08:03:11.010000"],["2024-07-24T08:03:12.010000"],["2024-07-24T08:03:13.010000"],["2024-07-24T08:03:14.010000"],["2024-07-24T08:03:15.010000"],["2024-07-24T08:03:16.010000"],["2024-07-24T08:03:17.010000"],["2024-07-24T08:03:18.010000"],["2024-07-24T08:03:19.010000"],["2024-07-24T08:03:20.010000"],["2024-07-24T08:03:21.010000"],["2024-07-24T08:03:22.010000"],["2024-07-24T08:03:23.010000"],["2024-07-24T08:03:24.010000"],["2024-07-24T08:03:25.010000"],["2024-07-24T08:03:26.010000"],["2024-07-24T08:03:27.010000"],["2024-07-24T08:03:28.010000"],["2024-07-24T08:03:29.010000"],["2024-07-24T08:03:30.010000"],["2024-07-24T08:03:31.010000"],["2024-07-24T08:03:32.010000"],["2024-07-24T08:03:33.010000"],["2024-07-24T08:03:34.010000"],["2024-07-24T08:03:35.010000"],["2024-07-24T08:03:36.010000"],["2024-07-24T08:03:37.010000"],["2024-07-24T08:03:38.010000"],["2024-07-24T08:03:39.010000"],["2024-07-24T08:03:40.010000"],["2024-07-24T08:03:41.010000"],["2024-07-24T08:03:42.010000"],["2024-07-24T08:03:43.010000"],["2024-07-24T08:03:44.010000"],["2024-07-24T08:03:45.010000"],["2024-07-24T08:03:46.010000"],["2024-07-24T08:03:47.010000"],["2024-07-24T08:03:48.010000"],["2024-07-24T08:03:49.010000"],["2024-07-24T08:03:50.010000"],["2024-07-24T08:03:51.010000"],["2024-07-24T08:03:52.010000"],["2024-07-24T08:03:53.010000"],["2024-07-24T08:03:54.010000"],["2024-07-24T08:03:55.010000"],["2024-07-24T08:03:56.010000"],["2024-07-24T08:03:57.010000"],["2024-07-24T08:03:58.010000"],["2024-07-24T08:03:59.010000"],["2024-07-24T08:04:00.010000"],["2024-07-24T08:04:01.010000"],["2024-07-24T08:04:02.010000"],["2024-07-24T08:04:03.010000"],["2024-07-24T08:04:04.010000"],["2024-07-24T08:04:05.010000"],["2024-07-24T08:04:06.010000"],["2024-07-24T08:04:07.010000"],["2024-07-24T08:04:08.010000"],["2024-07-24T08:04:09.010000"],["2024-07-24T08:04:10.010000"],["2024-07-24T08:04:11.010000"],["2024-07-24T08:04:12.010000"],["2024-07-24T08:04:13.010000"],["2024-07-24T08:04:14.010000"],["2024-07-24T08:04:15.010000"],["2024-07-24T08:04:16.010000"],["2024-07-24T08:04:17.010000"],["2024-07-24T08:04:18.010000"],["2024-07-24T08:04:19.010000"],["2024-07-24T08:04:20.010000"],["2024-07-24T08:04:21.010000"],["2024-07-24T08:04:22.010000"],["2024-07-24T08:04:23.010000"],["2024-07-24T08:04:24.010000"],["2024-07-24T08:04:25.010000"],["2024-07-24T08:04:26.010000"],["2024-07-24T08:04:27.010000"],["2024-07-24T08:04:28.010000"],["2024-07-24T08:04:29.010000"],["2024-07-24T08:04:30.010000"],["2024-07-24T08:04:31.010000"],["2024-07-24T08:04:32.010000"],["2024-07-24T08:04:33.010000"],["2024-07-24T08:04:34.010000"],["2024-07-24T08:04:35.010000"],["2024-07-24T08:04:36.010000"],["2024-07-24T08:04:37.010000"],["2024-07-24T08:04:38.010000"],["2024-07-24T08:04:39.010000"],["2024-07-24T08:04:40.010000"],["2024-07-24T08:04:41.010000"],["2024-07-24T08:04:42.010000"],["2024-07-24T08:04:43.010000"],["2024-07-24T08:04:44.010000"],["2024-07-24T08:04:45.010000"],["2024-07-24T08:04:46.010000"],["2024-07-24T08:04:47.010000"],["2024-07-24T08:04:48.010000"],["2024-07-24T08:04:49.010000"],["2024-07-24T08:04:50.010000"],["2024-07-24T08:04:51.010000"],["2024-07-24T08:04:52.010000"],["2024-07-24T08:04:53.010000"],["2024-07-24T08:04:54.010000"],["2024-07-24T08:04:55.010000"],["2024-07-24T08:04:56.010000"],["2024-07-24T08:04:57.010000"],["2024-07-24T08:04:58.010000"],["2024-07-24T08:04:59.010000"],["2024-07-24T08:05:00.010000"],["2024-07-24T08:05:01.010000"],["2024-07-24T08:05:02.010000"],["2024-07-24T08:05:03.010000"],["2024-07-24T08:05:04.010000"],["2024-07-24T08:05:05.010000"],["2024-07-24T08:05:06.010000"],["2024-07-24T08:05:07.010000"],["2024-07-24T08:05:08.010000"],["2024-07-24T08:05:09.010000"],["2024-07-24T08:05:10.010000"],["2024-07-24T08:05:11.010000"],["2024-07-24T08:05:12.010000"],["2024-07-24T08:05:13.010000"],["2024-07-24T08:05:14.010000"],["2024-07-24T08:05:15.010000"],["2024-07-24T08:05:16.010000"],["2024-07-24T08:05:17.010000"],["2024-07-24T08:05:18.010000"],["2024-07-24T08:05:19.010000"],["2024-07-24T08:05:20.010000"],["2024-07-24T08:05:21.010000"],["2024-07-24T08:05:22.010000"],["2024-07-24T08:05:23.010000"],["2024-07-24T08:05:24.010000"],["2024-07-24T08:05:25.010000"],["2024-07-24T08:05:26.010000"],["2024-07-24T08:05:27.010000"],["2024-07-24T08:05:28.010000"],["2024-07-24T08:05:29.010000"],["2024-07-24T08:05:30.010000"],["2024-07-24T08:05:31.010000"],["2024-07-24T08:05:32.010000"],["2024-07-24T08:05:33.010000"],["2024-07-24T08:05:34.010000"],["2024-07-24T08:05:35.010000"],["2024-07-24T08:05:36.010000"],["2024-07-24T08:05:37.010000"],["2024-07-24T08:05:38.010000"],["2024-07-24T08:05:39.010000"],["2024-07-24T08:05:40.010000"],["2024-07-24T08:05:41.010000"],["2024-07-24T08:05:42.010000"],["2024-07-24T08:05:43.010000"],["2024-07-24T08:05:44.010000"],["2024-07-24T08:05:45.010000"],["2024-07-24T08:05:46.010000"],["2024-07-24T08:05:47.010000"],["2024-07-24T08:05:48.010000"],["2024-07-24T08:05:49.010000"],["2024-07-24T08:05:50.010000"],["2024-07-24T08:05:51.010000"],["2024-07-24T08:05:52.010000"],["2024-07-24T08:05:53.010000"],["2024-07-24T08:05:54.010000"],["2024-07-24T08:05:55.010000"],["2024-07-24T08:05:56.010000"],["2024-07-24T08:05:57.010000"],["2024-07-24T08:05:58.010000"],["2024-07-24T08:05:59.010000"],["2024-07-24T08:06:00.010000"],["2024-07-24T08:06:01.010000"],["2024-07-24T08:06:02.010000"],["2024-07-24T08:06:03.010000"],["2024-07-24T08:06:04.010000"],["2024-07-24T08:06:05.010000"],["2024-07-24T08:06:06.010000"],["2024-07-24T08:06:07.010000"],["2024-07-24T08:06:08.010000"],["2024-07-24T08:06:09.010000"],["2024-07-24T08:06:10.010000"],["2024-07-24T08:06:11.010000"],["2024-07-24T08:06:12.010000"],["2024-07-24T08:06:13.010000"],["2024-07-24T08:06:14.010000"],["2024-07-24T08:06:15.010000"],["2024-07-24T08:06:16.010000"],["2024-07-24T08:06:17.010000"],["2024-07-24T08:06:18.010000"],["2024-07-24T08:06:19.010000"],["2024-07-24T08:06:20.010000"],["2024-07-24T08:06:21.010000"],["2024-07-24T08:06:22.010000"],["2024-07-24T08:06:23.010000"],["2024-07-24T08:06:24.010000"],["2024-07-24T08:06:25.010000"],["2024-07-24T08:06:26.010000"],["2024-07-24T08:06:27.010000"],["2024-07-24T08:06:28.010000"],["2024-07-24T08:06:29.010000"],["2024-07-24T08:06:30.010000"],["2024-07-24T08:06:31.010000"],["2024-07-24T08:06:32.010000"],["2024-07-24T08:06:33.010000"],["2024-07-24T08:06:34.010000"],["2024-07-24T08:06:35.010000"],["2024-07-24T08:06:36.010000"],["2024-07-24T08:06:37.010000"],["2024-07-24T08:06:38.010000"],["2024-07-24T08:06:39.010000"],["2024-07-24T08:06:40.010000"],["2024-07-24T08:06:41.010000"],["2024-07-24T08:06:42.010000"],["2024-07-24T08:06:43.010000"],["2024-07-24T08:06:44.010000"],["2024-07-24T08:06:45.010000"],["2024-07-24T08:06:46.010000"],["2024-07-24T08:06:47.010000"],["2024-07-24T08:06:48.010000"],["2024-07-24T08:06:49.010000"],["2024-07-24T08:06:50.010000"],["2024-07-24T08:06:51.010000"],["2024-07-24T08:06:52.010000"],["2024-07-24T08:06:53.010000"],["2024-07-24T08:06:54.010000"],["2024-07-24T08:06:55.010000"],["2024-07-24T08:06:56.010000"],["2024-07-24T08:06:57.010000"],["2024-07-24T08:06:58.010000"],["2024-07-24T08:06:59.010000"],["2024-07-24T08:07:00.010000"],["2024-07-24T08:07:01.010000"],["2024-07-24T08:07:02.010000"],["2024-07-24T08:07:03.010000"],["2024-07-24T08:07:04.010000"],["2024-07-24T08:07:05.010000"],["2024-07-24T08:07:06.010000"],["2024-07-24T08:07:07.010000"],["2024-07-24T08:07:08.010000"],["2024-07-24T08:07:09.010000"],["2024-07-24T08:07:10.010000"],["2024-07-24T08:07:11.010000"],["2024-07-24T08:07:12.010000"],["2024-07-24T08:07:13.010000"],["2024-07-24T08:07:14.010000"],["2024-07-24T08:07:15.010000"],["2024-07-24T08:07:16.010000"],["2024-07-24T08:07:17.010000"],["2024-07-24T08:07:18.010000"],["2024-07-24T08:07:19.010000"],["2024-07-24T08:07:20.010000"],["2024-07-24T08:07:21.010000"],["2024-07-24T08:07:22.010000"],["2024-07-24T08:07:23.010000"],["2024-07-24T08:07:24.010000"],["2024-07-24T08:07:25.010000"],["2024-07-24T08:07:26.010000"],["2024-07-24T08:07:27.010000"],["2024-07-24T08:07:28.010000"],["2024-07-24T08:07:29.010000"],["2024-07-24T08:07:30.010000"],["2024-07-24T08:07:31.010000"],["2024-07-24T08:07:32.010000"],["2024-07-24T08:07:33.010000"],["2024-07-24T08:07:34.010000"],["2024-07-24T08:07:35.010000"],["2024-07-24T08:07:36.010000"],["2024-07-24T08:07:37.010000"],["2024-07-24T08:07:38.010000"],["2024-07-24T08:07:39.010000"],["2024-07-24T08:07:40.010000"],["2024-07-24T08:07:41.010000"],["2024-07-24T08:07:42.010000"],["2024-07-24T08:07:43.010000"],["2024-07-24T08:07:44.010000"],["2024-07-24T08:07:45.010000"],["2024-07-24T08:07:46.010000"],["2024-07-24T08:07:47.010000"],["2024-07-24T08:07:48.010000"],["2024-07-24T08:07:49.010000"],["2024-07-24T08:07:50.010000"],["2024-07-24T08:07:51.010000"],["2024-07-24T08:07:52.010000"],["2024-07-24T08:07:53.010000"],["2024-07-24T08:07:54.010000"],["2024-07-24T08:07:55.010000"],["2024-07-24T08:07:56.010000"],["2024-07-24T08:07:57.010000"],["2024-07-24T08:07:58.010000"],["2024-07-24T08:07:59.010000"],["2024-07-24T08:08:00.010000"],["2024-07-24T08:08:01.010000"],["2024-07-24T08:08:02.010000"],["2024-07-24T08:08:03.010000"],["2024-07-24T08:08:04.010000"],["2024-07-24T08:08:05.010000"],["2024-07-24T08:08:06.010000"],["2024-07-24T08:08:07.010000"],["2024-07-24T08:08:08.010000"],["2024-07-24T08:08:09.010000"],["2024-07-24T08:08:10.010000"],["2024-07-24T08:08:11.010000"],["2024-07-24T08:08:12.010000"],["2024-07-24T08:08:13.010000"],["2024-07-24T08:08:14.010000"],["2024-07-24T08:08:15.010000"],["2024-07-24T08:08:16.010000"],["2024-07-24T08:08:17.010000"],["2024-07-24T08:08:18.010000"],["2024-07-24T08:08:19.010000"],["2024-07-24T08:08:20.010000"],["2024-07-24T08:08:21.010000"],["2024-07-24T08:08:22.010000"],["2024-07-24T08:08:23.010000"],["2024-07-24T08:08:24.010000"],["2024-07-24T08:08:25.010000"],["2024-07-24T08:08:26.010000"],["2024-07-24T08:08:27.010000"],["2024-07-24T08:08:28.010000"],["2024-07-24T08:08:29.010000"],["2024-07-24T08:08:30.010000"],["2024-07-24T08:08:31.010000"],["2024-07-24T08:08:32.010000"],["2024-07-24T08:08:33.010000"],["2024-07-24T08:08:34.010000"],["2024-07-24T08:08:35.010000"],["2024-07-24T08:08:36.010000"],["2024-07-24T08:08:37.010000"],["2024-07-24T08:08:38.010000"],["2024-07-24T08:08:39.010000"],["2024-07-24T08:08:40.010000"],["2024-07-24T08:08:41.010000"],["2024-07-24T08:08:42.010000"],["2024-07-24T08:08:43.010000"],["2024-07-24T08:08:44.010000"],["2024-07-24T08:08:45.010000"],["2024-07-24T08:08:46.010000"],["2024-07-24T08:08:47.010000"],["2024-07-24T08:08:48.010000"],["2024-07-24T08:08:49.010000"],["2024-07-24T08:08:50.010000"],["2024-07-24T08:08:51.010000"],["2024-07-24T08:08:52.010000"],["2024-07-24T08:08:53.010000"],["2024-07-24T08:08:54.010000"],["2024-07-24T08:08:55.010000"],["2024-07-24T08:08:56.010000"],["2024-07-24T08:08:57.010000"],["2024-07-24T08:08:58.010000"],["2024-07-24T08:08:59.010000"],["2024-07-24T08:09:00.010000"],["2024-07-24T08:09:01.010000"],["2024-07-24T08:09:02.010000"],["2024-07-24T08:09:03.010000"],["2024-07-24T08:09:04.010000"],["2024-07-24T08:09:05.010000"],["2024-07-24T08:09:06.010000"],["2024-07-24T08:09:07.010000"],["2024-07-24T08:09:08.010000"],["2024-07-24T08:09:09.010000"],["2024-07-24T08:09:10.010000"],["2024-07-24T08:09:11.010000"],["2024-07-24T08:09:12.010000"],["2024-07-24T08:09:13.010000"],["2024-07-24T08:09:14.010000"],["2024-07-24T08:09:15.010000"],["2024-07-24T08:09:16.010000"],["2024-07-24T08:09:17.010000"],["2024-07-24T08:09:18.010000"],["2024-07-24T08:09:19.010000"],["2024-07-24T08:09:20.010000"],["2024-07-24T08:09:21.010000"],["2024-07-24T08:09:22.010000"],["2024-07-24T08:09:23.010000"],["2024-07-24T08:09:24.010000"],["2024-07-24T08:09:25.010000"],["2024-07-24T08:09:26.010000"],["2024-07-24T08:09:27.010000"],["2024-07-24T08:09:28.010000"],["2024-07-24T08:09:29.010000"],["2024-07-24T08:09:30.010000"],["2024-07-24T08:09:31.010000"],["2024-07-24T08:09:32.010000"],["2024-07-24T08:09:33.010000"],["2024-07-24T08:09:34.010000"],["2024-07-24T08:09:35.010000"],["2024-07-24T08:09:36.010000"],["2024-07-24T08:09:37.010000"],["2024-07-24T08:09:38.010000"],["2024-07-24T08:09:39.010000"],["2024-07-24T08:09:40.010000"],["2024-07-24T08:09:41.010000"],["2024-07-24T08:09:42.010000"],["2024-07-24T08:09:43.010000"],["2024-07-24T08:09:44.010000"],["2024-07-24T08:09:45.010000"],["2024-07-24T08:09:46.010000"],["2024-07-24T08:09:47.010000"],["2024-07-24T08:09:48.010000"],["2024-07-24T08:09:49.010000"],["2024-07-24T08:09:50.010000"],["2024-07-24T08:09:51.010000"],["2024-07-24T08:09:52.010000"],["2024-07-24T08:09:53.010000"],["2024-07-24T08:09:54.010000"],["2024-07-24T08:09:55.010000"],["2024-07-24T08:09:56.010000"],["2024-07-24T08:09:57.010000"],["2024-07-24T08:09:58.010000"],["2024-07-24T08:09:59.010000"],["2024-07-24T08:10:00.010000"],["2024-07-24T08:10:01.010000"],["2024-07-24T08:10:02.010000"],["2024-07-24T08:10:03.010000"],["2024-07-24T08:10:04.010000"],["2024-07-24T08:10:05.010000"],["2024-07-24T08:10:06.010000"],["2024-07-24T08:10:07.010000"],["2024-07-24T08:10:08.010000"],["2024-07-24T08:10:09.010000"],["2024-07-24T08:10:10.010000"],["2024-07-24T08:10:11.010000"],["2024-07-24T08:10:12.010000"],["2024-07-24T08:10:13.010000"],["2024-07-24T08:10:14.010000"],["2024-07-24T08:10:15.010000"],["2024-07-24T08:10:16.010000"],["2024-07-24T08:10:17.010000"],["2024-07-24T08:10:18.010000"],["2024-07-24T08:10:19.010000"],["2024-07-24T08:10:20.010000"],["2024-07-24T08:10:21.010000"],["2024-07-24T08:10:22.010000"],["2024-07-24T08:10:23.010000"],["2024-07-24T08:10:24.010000"],["2024-07-24T08:10:25.010000"],["2024-07-24T08:10:26.010000"],["2024-07-24T08:10:27.010000"],["2024-07-24T08:10:28.010000"],["2024-07-24T08:10:29.010000"],["2024-07-24T08:10:30.010000"],["2024-07-24T08:10:31.010000"],["2024-07-24T08:10:32.010000"],["2024-07-24T08:10:33.010000"],["2024-07-24T08:10:34.010000"],["2024-07-24T08:10:35.010000"],["2024-07-24T08:10:36.010000"],["2024-07-24T08:10:37.010000"],["2024-07-24T08:10:38.010000"],["2024-07-24T08:10:39.010000"],["2024-07-24T08:10:40.010000"],["2024-07-24T08:10:41.010000"],["2024-07-24T08:10:42.010000"],["2024-07-24T08:10:43.010000"],["2024-07-24T08:10:44.010000"],["2024-07-24T08:10:45.010000"],["2024-07-24T08:10:46.010000"],["2024-07-24T08:10:47.010000"],["2024-07-24T08:10:48.010000"],["2024-07-24T08:10:49.010000"],["2024-07-24T08:10:50.010000"],["2024-07-24T08:10:51.010000"],["2024-07-24T08:10:52.010000"],["2024-07-24T08:10:53.010000"],["2024-07-24T08:10:54.010000"],["2024-07-24T08:10:55.010000"],["2024-07-24T08:10:56.010000"],["2024-07-24T08:10:57.010000"],["2024-07-24T08:10:58.010000"],["2024-07-24T08:10:59.010000"],["2024-07-24T08:11:00.010000"],["2024-07-24T08:11:01.010000"],["2024-07-24T08:11:02.010000"],["2024-07-24T08:11:03.010000"],["2024-07-24T08:11:04.010000"],["2024-07-24T08:11:05.010000"],["2024-07-24T08:11:06.010000"],["2024-07-24T08:11:07.010000"],["2024-07-24T08:11:08.010000"],["2024-07-24T08:11:09.010000"],["2024-07-24T08:11:10.010000"],["2024-07-24T08:11:11.010000"],["2024-07-24T08:11:12.010000"],["2024-07-24T08:11:13.010000"],["2024-07-24T08:11:14.010000"],["2024-07-24T08:11:15.010000"],["2024-07-24T08:11:16.010000"],["2024-07-24T08:11:17.010000"],["2024-07-24T08:11:18.010000"],["2024-07-24T08:11:19.010000"],["2024-07-24T08:11:20.010000"],["2024-07-24T08:11:21.010000"],["2024-07-24T08:11:22.010000"],["2024-07-24T08:11:23.010000"],["2024-07-24T08:11:24.010000"],["2024-07-24T08:11:25.010000"],["2024-07-24T08:11:26.010000"],["2024-07-24T08:11:27.010000"],["2024-07-24T08:11:28.010000"],["2024-07-24T08:11:29.010000"],["2024-07-24T08:11:30.010000"],["2024-07-24T08:11:31.010000"],["2024-07-24T08:11:32.010000"],["2024-07-24T08:11:33.010000"],["2024-07-24T08:11:34.010000"],["2024-07-24T08:11:35.010000"],["2024-07-24T08:11:36.010000"],["2024-07-24T08:11:37.010000"],["2024-07-24T08:11:38.010000"],["2024-07-24T08:11:39.010000"],["2024-07-24T08:11:40.010000"],["2024-07-24T08:11:41.010000"],["2024-07-24T08:11:42.010000"],["2024-07-24T08:11:43.010000"],["2024-07-24T08:11:44.010000"],["2024-07-24T08:11:45.010000"],["2024-07-24T08:11:46.010000"],["2024-07-24T08:11:47.010000"],["2024-07-24T08:11:48.010000"],["2024-07-24T08:11:49.010000"],["2024-07-24T08:11:50.010000"],["2024-07-24T08:11:51.010000"],["2024-07-24T08:11:52.010000"],["2024-07-24T08:11:53.010000"],["2024-07-24T08:11:54.010000"],["2024-07-24T08:11:55.010000"],["2024-07-24T08:11:56.010000"],["2024-07-24T08:11:57.010000"],["2024-07-24T08:11:58.010000"],["2024-07-24T08:11:59.010000"],["2024-07-24T08:12:00.010000"],["2024-07-24T08:12:01.010000"],["2024-07-24T08:12:02.010000"],["2024-07-24T08:12:03.010000"],["2024-07-24T08:12:04.010000"],["2024-07-24T08:12:05.010000"],["2024-07-24T08:12:06.010000"],["2024-07-24T08:12:07.010000"],["2024-07-24T08:12:08.010000"],["2024-07-24T08:12:09.010000"],["2024-07-24T08:12:10.010000"],["2024-07-24T08:12:11.010000"],["2024-07-24T08:12:12.010000"],["2024-07-24T08:12:13.010000"],["2024-07-24T08:12:14.010000"],["2024-07-24T08:12:15.010000"],["2024-07-24T08:12:16.010000"],["2024-07-24T08:12:17.010000"],["2024-07-24T08:12:18.010000"],["2024-07-24T08:12:19.010000"],["2024-07-24T08:12:20.010000"],["2024-07-24T08:12:21.010000"],["2024-07-24T08:12:22.010000"],["2024-07-24T08:12:23.010000"],["2024-07-24T08:12:24.010000"],["2024-07-24T08:12:25.010000"],["2024-07-24T08:12:26.010000"],["2024-07-24T08:12:27.010000"],["2024-07-24T08:12:28.010000"],["2024-07-24T08:12:29.010000"],["2024-07-24T08:12:30.010000"],["2024-07-24T08:12:31.010000"],["2024-07-24T08:12:32.010000"],["2024-07-24T08:12:33.010000"],["2024-07-24T08:12:34.010000"],["2024-07-24T08:12:35.010000"],["2024-07-24T08:12:36.010000"],["2024-07-24T08:12:37.010000"],["2024-07-24T08:12:38.010000"],["2024-07-24T08:12:39.010000"],["2024-07-24T08:12:40.010000"],["2024-07-24T08:12:41.010000"],["2024-07-24T08:12:42.010000"],["2024-07-24T08:12:43.010000"],["2024-07-24T08:12:44.010000"],["2024-07-24T08:12:45.010000"],["2024-07-24T08:12:46.010000"],["2024-07-24T08:12:47.010000"],["2024-07-24T08:12:48.010000"],["2024-07-24T08:12:49.010000"],["2024-07-24T08:12:50.010000"],["2024-07-24T08:12:51.010000"],["2024-07-24T08:12:52.010000"],["2024-07-24T08:12:53.010000"],["2024-07-24T08:12:54.010000"],["2024-07-24T08:12:55.010000"],["2024-07-24T08:12:56.010000"],["2024-07-24T08:12:57.010000"],["2024-07-24T08:12:58.010000"],["2024-07-24T08:12:59.010000"],["2024-07-24T08:13:00.010000"],["2024-07-24T08:13:01.010000"],["2024-07-24T08:13:02.010000"],["2024-07-24T08:13:03.010000"],["2024-07-24T08:13:04.010000"],["2024-07-24T08:13:05.010000"],["2024-07-24T08:13:06.010000"],["2024-07-24T08:13:07.010000"],["2024-07-24T08:13:08.010000"],["2024-07-24T08:13:09.010000"],["2024-07-24T08:13:10.010000"],["2024-07-24T08:13:11.010000"],["2024-07-24T08:13:12.010000"],["2024-07-24T08:13:13.010000"],["2024-07-24T08:13:14.010000"],["2024-07-24T08:13:15.010000"],["2024-07-24T08:13:16.010000"],["2024-07-24T08:13:17.010000"],["2024-07-24T08:13:18.010000"],["2024-07-24T08:13:19.010000"],["2024-07-24T08:13:20.010000"],["2024-07-24T08:13:21.010000"],["2024-07-24T08:13:22.010000"],["2024-07-24T08:13:23.010000"],["2024-07-24T08:13:24.010000"],["2024-07-24T08:13:25.010000"],["2024-07-24T08:13:26.010000"],["2024-07-24T08:13:27.010000"],["2024-07-24T08:13:28.010000"],["2024-07-24T08:13:29.010000"],["2024-07-24T08:13:30.010000"],["2024-07-24T08:13:31.010000"],["2024-07-24T08:13:32.010000"],["2024-07-24T08:13:33.010000"],["2024-07-24T08:13:34.010000"],["2024-07-24T08:13:35.010000"],["2024-07-24T08:13:36.010000"],["2024-07-24T08:13:37.010000"],["2024-07-24T08:13:38.010000"],["2024-07-24T08:13:39.010000"],["2024-07-24T08:13:40.010000"],["2024-07-24T08:13:41.010000"],["2024-07-24T08:13:42.010000"],["2024-07-24T08:13:43.010000"],["2024-07-24T08:13:44.010000"],["2024-07-24T08:13:45.010000"],["2024-07-24T08:13:46.010000"],["2024-07-24T08:13:47.010000"],["2024-07-24T08:13:48.010000"],["2024-07-24T08:13:49.010000"],["2024-07-24T08:13:50.010000"],["2024-07-24T08:13:51.010000"],["2024-07-24T08:13:52.010000"],["2024-07-24T08:13:53.010000"],["2024-07-24T08:13:54.010000"],["2024-07-24T08:13:55.010000"],["2024-07-24T08:13:56.010000"],["2024-07-24T08:13:57.010000"],["2024-07-24T08:13:58.010000"],["2024-07-24T08:13:59.010000"],["2024-07-24T08:14:00.010000"],["2024-07-24T08:14:01.010000"],["2024-07-24T08:14:02.010000"],["2024-07-24T08:14:03.010000"],["2024-07-24T08:14:04.010000"],["2024-07-24T08:14:05.010000"],["2024-07-24T08:14:06.010000"],["2024-07-24T08:14:07.010000"],["2024-07-24T08:14:08.010000"],["2024-07-24T08:14:09.010000"],["2024-07-24T08:14:10.010000"],["2024-07-24T08:14:11.010000"],["2024-07-24T08:14:12.010000"],["2024-07-24T08:14:13.010000"],["2024-07-24T08:14:14.010000"],["2024-07-24T08:14:15.010000"],["2024-07-24T08:14:16.010000"],["2024-07-24T08:14:17.010000"],["2024-07-24T08:14:18.010000"],["2024-07-24T08:14:19.010000"],["2024-07-24T08:14:20.010000"],["2024-07-24T08:14:21.010000"],["2024-07-24T08:14:22.010000"],["2024-07-24T08:14:23.010000"],["2024-07-24T08:14:24.010000"],["2024-07-24T08:14:25.010000"],["2024-07-24T08:14:26.010000"],["2024-07-24T08:14:27.010000"],["2024-07-24T08:14:28.010000"],["2024-07-24T08:14:29.010000"],["2024-07-24T08:14:30.010000"],["2024-07-24T08:14:31.010000"],["2024-07-24T08:14:32.010000"],["2024-07-24T08:14:33.010000"],["2024-07-24T08:14:34.010000"],["2024-07-24T08:14:35.010000"],["2024-07-24T08:14:36.010000"],["2024-07-24T08:14:37.010000"],["2024-07-24T08:14:38.010000"],["2024-07-24T08:14:39.010000"],["2024-07-24T08:14:40.010000"],["2024-07-24T08:14:41.010000"],["2024-07-24T08:14:42.010000"],["2024-07-24T08:14:43.010000"],["2024-07-24T08:14:44.010000"],["2024-07-24T08:14:45.010000"],["2024-07-24T08:14:46.010000"],["2024-07-24T08:14:47.010000"],["2024-07-24T08:14:48.010000"],["2024-07-24T08:14:49.010000"],["2024-07-24T08:14:50.010000"],["2024-07-24T08:14:51.010000"],["2024-07-24T08:14:52.010000"],["2024-07-24T08:14:53.010000"],["2024-07-24T08:14:54.010000"],["2024-07-24T08:14:55.010000"],["2024-07-24T08:14:56.010000"],["2024-07-24T08:14:57.010000"],["2024-07-24T08:14:58.010000"],["2024-07-24T08:14:59.010000"],["2024-07-24T08:15:00.010000"],["2024-07-24T08:15:01.010000"],["2024-07-24T08:15:02.010000"],["2024-07-24T08:15:03.010000"],["2024-07-24T08:15:04.010000"],["2024-07-24T08:15:05.010000"],["2024-07-24T08:15:06.010000"],["2024-07-24T08:15:07.010000"],["2024-07-24T08:15:08.010000"],["2024-07-24T08:15:09.010000"],["2024-07-24T08:15:10.010000"],["2024-07-24T08:15:11.010000"],["2024-07-24T08:15:12.010000"],["2024-07-24T08:15:13.010000"],["2024-07-24T08:15:14.010000"],["2024-07-24T08:15:15.010000"],["2024-07-24T08:15:16.010000"],["2024-07-24T08:15:17.010000"],["2024-07-24T08:15:18.010000"],["2024-07-24T08:15:19.010000"],["2024-07-24T08:15:20.010000"],["2024-07-24T08:15:21.010000"],["2024-07-24T08:15:22.010000"],["2024-07-24T08:15:23.010000"],["2024-07-24T08:15:24.010000"],["2024-07-24T08:15:25.010000"],["2024-07-24T08:15:26.010000"],["2024-07-24T08:15:27.010000"],["2024-07-24T08:15:28.010000"],["2024-07-24T08:15:29.010000"],["2024-07-24T08:15:30.010000"],["2024-07-24T08:15:31.010000"],["2024-07-24T08:15:32.010000"],["2024-07-24T08:15:33.010000"],["2024-07-24T08:15:34.010000"],["2024-07-24T08:15:35.010000"],["2024-07-24T08:15:36.010000"],["2024-07-24T08:15:37.010000"],["2024-07-24T08:15:38.010000"],["2024-07-24T08:15:39.010000"],["2024-07-24T08:15:40.010000"],["2024-07-24T08:15:41.010000"],["2024-07-24T08:15:42.010000"],["2024-07-24T08:15:43.010000"],["2024-07-24T08:15:44.010000"],["2024-07-24T08:15:45.010000"],["2024-07-24T08:15:46.010000"],["2024-07-24T08:15:47.010000"],["2024-07-24T08:15:48.010000"],["2024-07-24T08:15:49.010000"],["2024-07-24T08:15:50.010000"],["2024-07-24T08:15:51.010000"],["2024-07-24T08:15:52.010000"],["2024-07-24T08:15:53.010000"],["2024-07-24T08:15:54.010000"],["2024-07-24T08:15:55.010000"],["2024-07-24T08:15:56.010000"],["2024-07-24T08:15:57.010000"],["2024-07-24T08:15:58.010000"],["2024-07-24T08:15:59.010000"],["2024-07-24T08:16:00.010000"],["2024-07-24T08:16:01.010000"],["2024-07-24T08:16:02.010000"],["2024-07-24T08:16:03.010000"],["2024-07-24T08:16:04.010000"],["2024-07-24T08:16:05.010000"],["2024-07-24T08:16:06.010000"],["2024-07-24T08:16:07.010000"],["2024-07-24T08:16:08.010000"],["2024-07-24T08:16:09.010000"],["2024-07-24T08:16:10.010000"],["2024-07-24T08:16:11.010000"],["2024-07-24T08:16:12.010000"],["2024-07-24T08:16:13.010000"],["2024-07-24T08:16:14.010000"],["2024-07-24T08:16:15.010000"],["2024-07-24T08:16:16.010000"],["2024-07-24T08:16:17.010000"],["2024-07-24T08:16:18.010000"],["2024-07-24T08:16:19.010000"],["2024-07-24T08:16:20.010000"],["2024-07-24T08:16:21.010000"],["2024-07-24T08:16:22.010000"],["2024-07-24T08:16:23.010000"],["2024-07-24T08:16:24.010000"],["2024-07-24T08:16:25.010000"],["2024-07-24T08:16:26.010000"],["2024-07-24T08:16:27.010000"],["2024-07-24T08:16:28.010000"],["2024-07-24T08:16:29.010000"],["2024-07-24T08:16:30.010000"],["2024-07-24T08:16:31.010000"],["2024-07-24T08:16:32.010000"],["2024-07-24T08:16:33.010000"],["2024-07-24T08:16:34.010000"],["2024-07-24T08:16:35.010000"],["2024-07-24T08:16:36.010000"],["2024-07-24T08:16:37.010000"],["2024-07-24T08:16:38.010000"],["2024-07-24T08:16:39.010000"],["2024-07-24T08:16:40.010000"],["2024-07-24T08:16:41.010000"],["2024-07-24T08:16:42.010000"],["2024-07-24T08:16:43.010000"],["2024-07-24T08:16:44.010000"],["2024-07-24T08:16:45.010000"],["2024-07-24T08:16:46.010000"],["2024-07-24T08:16:47.010000"],["2024-07-24T08:16:48.010000"],["2024-07-24T08:16:49.010000"],["2024-07-24T08:16:50.010000"],["2024-07-24T08:16:51.010000"],["2024-07-24T08:16:52.010000"],["2024-07-24T08:16:53.010000"],["2024-07-24T08:16:54.010000"],["2024-07-24T08:16:55.010000"],["2024-07-24T08:16:56.010000"],["2024-07-24T08:16:57.010000"],["2024-07-24T08:16:58.010000"],["2024-07-24T08:16:59.010000"],["2024-07-24T08:17:00.010000"],["2024-07-24T08:17:01.010000"],["2024-07-24T08:17:02.010000"],["2024-07-24T08:17:03.010000"],["2024-07-24T08:17:04.010000"],["2024-07-24T08:17:05.010000"],["2024-07-24T08:17:06.010000"],["2024-07-24T08:17:07.010000"],["2024-07-24T08:17:08.010000"],["2024-07-24T08:17:09.010000"],["2024-07-24T08:17:10.010000"],["2024-07-24T08:17:11.010000"],["2024-07-24T08:17:12.010000"],["2024-07-24T08:17:13.010000"],["2024-07-24T08:17:14.010000"],["2024-07-24T08:17:15.010000"],["2024-07-24T08:17:16.010000"],["2024-07-24T08:17:17.010000"],["2024-07-24T08:17:18.010000"],["2024-07-24T08:17:19.010000"],["2024-07-24T08:17:20.010000"],["2024-07-24T08:17:21.010000"],["2024-07-24T08:17:22.010000"],["2024-07-24T08:17:23.010000"],["2024-07-24T08:17:24.010000"],["2024-07-24T08:17:25.010000"],["2024-07-24T08:17:26.010000"],["2024-07-24T08:17:27.010000"],["2024-07-24T08:17:28.010000"],["2024-07-24T08:17:29.010000"],["2024-07-24T08:17:30.010000"],["2024-07-24T08:17:31.010000"],["2024-07-24T08:17:32.010000"],["2024-07-24T08:17:33.010000"],["2024-07-24T08:17:34.010000"],["2024-07-24T08:17:35.010000"],["2024-07-24T08:17:36.010000"],["2024-07-24T08:17:37.010000"],["2024-07-24T08:17:38.010000"],["2024-07-24T08:17:39.010000"],["2024-07-24T08:17:40.010000"],["2024-07-24T08:17:41.010000"],["2024-07-24T08:17:42.010000"],["2024-07-24T08:17:43.010000"],["2024-07-24T08:17:44.010000"],["2024-07-24T08:17:45.010000"],["2024-07-24T08:17:46.010000"],["2024-07-24T08:17:47.010000"],["2024-07-24T08:17:48.010000"],["2024-07-24T08:17:49.010000"],["2024-07-24T08:17:50.010000"],["2024-07-24T08:17:51.010000"],["2024-07-24T08:17:52.010000"],["2024-07-24T08:17:53.010000"],["2024-07-24T08:17:54.010000"],["2024-07-24T08:17:55.010000"],["2024-07-24T08:17:56.010000"],["2024-07-24T08:17:57.010000"],["2024-07-24T08:17:58.010000"],["2024-07-24T08:17:59.010000"],["2024-07-24T08:18:00.010000"],["2024-07-24T08:18:01.010000"],["2024-07-24T08:18:02.010000"],["2024-07-24T08:18:03.010000"],["2024-07-24T08:18:04.010000"],["2024-07-24T08:18:05.010000"],["2024-07-24T08:18:06.010000"],["2024-07-24T08:18:07.010000"],["2024-07-24T08:18:08.010000"],["2024-07-24T08:18:09.010000"],["2024-07-24T08:18:10.010000"],["2024-07-24T08:18:11.010000"],["2024-07-24T08:18:12.010000"],["2024-07-24T08:18:13.010000"],["2024-07-24T08:18:14.010000"],["2024-07-24T08:18:15.010000"],["2024-07-24T08:18:16.010000"],["2024-07-24T08:18:17.010000"],["2024-07-24T08:18:18.010000"],["2024-07-24T08:18:19.010000"],["2024-07-24T08:18:20.010000"],["2024-07-24T08:18:21.010000"],["2024-07-24T08:18:22.010000"],["2024-07-24T08:18:23.010000"],["2024-07-24T08:18:24.010000"],["2024-07-24T08:18:25.010000"],["2024-07-24T08:18:26.010000"],["2024-07-24T08:18:27.010000"],["2024-07-24T08:18:28.010000"],["2024-07-24T08:18:29.010000"],["2024-07-24T08:18:30.010000"],["2024-07-24T08:18:31.010000"],["2024-07-24T08:18:32.010000"],["2024-07-24T08:18:33.010000"],["2024-07-24T08:18:34.010000"],["2024-07-24T08:18:35.010000"],["2024-07-24T08:18:36.010000"],["2024-07-24T08:18:37.010000"],["2024-07-24T08:18:38.010000"],["2024-07-24T08:18:39.010000"],["2024-07-24T08:18:40.010000"],["2024-07-24T08:18:41.010000"],["2024-07-24T08:18:42.010000"],["2024-07-24T08:18:43.010000"],["2024-07-24T08:18:44.010000"],["2024-07-24T08:18:45.010000"],["2024-07-24T08:18:46.010000"],["2024-07-24T08:18:47.010000"],["2024-07-24T08:18:48.010000"],["2024-07-24T08:18:49.010000"],["2024-07-24T08:18:50.010000"],["2024-07-24T08:18:51.010000"],["2024-07-24T08:18:52.010000"],["2024-07-24T08:18:53.010000"],["2024-07-24T08:18:54.010000"],["2024-07-24T08:18:55.010000"],["2024-07-24T08:18:56.010000"],["2024-07-24T08:18:57.010000"],["2024-07-24T08:18:58.010000"],["2024-07-24T08:18:59.010000"],["2024-07-24T08:19:00.010000"],["2024-07-24T08:19:01.010000"],["2024-07-24T08:19:02.010000"],["2024-07-24T08:19:03.010000"],["2024-07-24T08:19:04.010000"],["2024-07-24T08:19:05.010000"],["2024-07-24T08:19:06.010000"],["2024-07-24T08:19:07.010000"],["2024-07-24T08:19:08.010000"],["2024-07-24T08:19:09.010000"],["2024-07-24T08:19:10.010000"],["2024-07-24T08:19:11.010000"],["2024-07-24T08:19:12.010000"],["2024-07-24T08:19:13.010000"],["2024-07-24T08:19:14.010000"],["2024-07-24T08:19:15.010000"],["2024-07-24T08:19:16.010000"],["2024-07-24T08:19:17.010000"],["2024-07-24T08:19:18.010000"],["2024-07-24T08:19:19.010000"],["2024-07-24T08:19:20.010000"],["2024-07-24T08:19:21.010000"],["2024-07-24T08:19:22.010000"],["2024-07-24T08:19:23.010000"],["2024-07-24T08:19:24.010000"],["2024-07-24T08:19:25.010000"],["2024-07-24T08:19:26.010000"],["2024-07-24T08:19:27.010000"],["2024-07-24T08:19:28.010000"],["2024-07-24T08:19:29.010000"],["2024-07-24T08:19:30.010000"],["2024-07-24T08:19:31.010000"],["2024-07-24T08:19:32.010000"],["2024-07-24T08:19:33.010000"],["2024-07-24T08:19:34.010000"],["2024-07-24T08:19:35.010000"],["2024-07-24T08:19:36.010000"],["2024-07-24T08:19:37.010000"],["2024-07-24T08:19:38.010000"],["2024-07-24T08:19:39.010000"],["2024-07-24T08:19:40.010000"],["2024-07-24T08:19:41.010000"],["2024-07-24T08:19:42.010000"],["2024-07-24T08:19:43.010000"],["2024-07-24T08:19:44.010000"],["2024-07-24T08:19:45.010000"],["2024-07-24T08:19:46.010000"],["2024-07-24T08:19:47.010000"],["2024-07-24T08:19:48.010000"],["2024-07-24T08:19:49.010000"],["2024-07-24T08:19:50.010000"],["2024-07-24T08:19:51.010000"],["2024-07-24T08:19:52.010000"],["2024-07-24T08:19:53.010000"],["2024-07-24T08:19:54.010000"],["2024-07-24T08:19:55.010000"],["2024-07-24T08:19:56.010000"],["2024-07-24T08:19:57.010000"],["2024-07-24T08:19:58.010000"],["2024-07-24T08:19:59.010000"],["2024-07-24T08:20:00.010000"],["2024-07-24T08:20:01.010000"],["2024-07-24T08:20:02.010000"],["2024-07-24T08:20:03.010000"],["2024-07-24T08:20:04.010000"],["2024-07-24T08:20:05.010000"],["2024-07-24T08:20:06.010000"],["2024-07-24T08:20:07.010000"],["2024-07-24T08:20:08.010000"],["2024-07-24T08:20:09.010000"],["2024-07-24T08:20:10.010000"],["2024-07-24T08:20:11.010000"],["2024-07-24T08:20:12.010000"],["2024-07-24T08:20:13.010000"],["2024-07-24T08:20:14.010000"],["2024-07-24T08:20:15.010000"],["2024-07-24T08:20:16.010000"],["2024-07-24T08:20:17.010000"],["2024-07-24T08:20:18.010000"],["2024-07-24T08:20:19.010000"],["2024-07-24T08:20:20.010000"],["2024-07-24T08:20:21.010000"],["2024-07-24T08:20:22.010000"],["2024-07-24T08:20:23.010000"],["2024-07-24T08:20:24.010000"],["2024-07-24T08:20:25.010000"],["2024-07-24T08:20:26.010000"],["2024-07-24T08:20:27.010000"],["2024-07-24T08:20:28.010000"],["2024-07-24T08:20:29.010000"],["2024-07-24T08:20:30.010000"],["2024-07-24T08:20:31.010000"],["2024-07-24T08:20:32.010000"],["2024-07-24T08:20:33.010000"],["2024-07-24T08:20:34.010000"],["2024-07-24T08:20:35.010000"],["2024-07-24T08:20:36.010000"],["2024-07-24T08:20:37.010000"],["2024-07-24T08:20:38.010000"],["2024-07-24T08:20:39.010000"],["2024-07-24T08:20:40.010000"],["2024-07-24T08:20:41.010000"],["2024-07-24T08:20:42.010000"],["2024-07-24T08:20:43.010000"],["2024-07-24T08:20:44.010000"],["2024-07-24T08:20:45.010000"],["2024-07-24T08:20:46.010000"],["2024-07-24T08:20:47.010000"],["2024-07-24T08:20:48.010000"],["2024-07-24T08:20:49.010000"],["2024-07-24T08:20:50.010000"],["2024-07-24T08:20:51.010000"],["2024-07-24T08:20:52.010000"],["2024-07-24T08:20:53.010000"],["2024-07-24T08:20:54.010000"],["2024-07-24T08:20:55.010000"],["2024-07-24T08:20:56.010000"],["2024-07-24T08:20:57.010000"],["2024-07-24T08:20:58.010000"],["2024-07-24T08:20:59.010000"],["2024-07-24T08:21:00.010000"],["2024-07-24T08:21:01.010000"],["2024-07-24T08:21:02.010000"],["2024-07-24T08:21:03.010000"],["2024-07-24T08:21:04.010000"],["2024-07-24T08:21:05.010000"],["2024-07-24T08:21:06.010000"],["2024-07-24T08:21:07.010000"],["2024-07-24T08:21:08.010000"],["2024-07-24T08:21:09.010000"],["2024-07-24T08:21:10.010000"],["2024-07-24T08:21:11.010000"],["2024-07-24T08:21:12.010000"],["2024-07-24T08:21:13.010000"],["2024-07-24T08:21:14.010000"],["2024-07-24T08:21:15.010000"],["2024-07-24T08:21:16.010000"],["2024-07-24T08:21:17.010000"],["2024-07-24T08:21:18.010000"],["2024-07-24T08:21:19.010000"],["2024-07-24T08:21:20.010000"],["2024-07-24T08:21:21.010000"],["2024-07-24T08:21:22.010000"],["2024-07-24T08:21:23.010000"],["2024-07-24T08:21:24.010000"],["2024-07-24T08:21:25.010000"],["2024-07-24T08:21:26.010000"],["2024-07-24T08:21:27.010000"],["2024-07-24T08:21:28.010000"],["2024-07-24T08:21:29.010000"],["2024-07-24T08:21:30.010000"],["2024-07-24T08:21:31.010000"],["2024-07-24T08:21:32.010000"],["2024-07-24T08:21:33.010000"],["2024-07-24T08:21:34.010000"],["2024-07-24T08:21:35.010000"],["2024-07-24T08:21:36.010000"],["2024-07-24T08:21:37.010000"],["2024-07-24T08:21:38.010000"],["2024-07-24T08:21:39.010000"],["2024-07-24T08:21:40.010000"],["2024-07-24T08:21:41.010000"],["2024-07-24T08:21:42.010000"],["2024-07-24T08:21:43.010000"],["2024-07-24T08:21:44.010000"],["2024-07-24T08:21:45.010000"],["2024-07-24T08:21:46.010000"],["2024-07-24T08:21:47.010000"],["2024-07-24T08:21:48.010000"],["2024-07-24T08:21:49.010000"],["2024-07-24T08:21:50.010000"],["2024-07-24T08:21:51.010000"],["2024-07-24T08:21:52.010000"],["2024-07-24T08:21:53.010000"],["2024-07-24T08:21:54.010000"],["2024-07-24T08:21:55.010000"],["2024-07-24T08:21:56.010000"],["2024-07-24T08:21:57.010000"],["2024-07-24T08:21:58.010000"],["2024-07-24T08:21:59.010000"],["2024-07-24T08:22:00.010000"],["2024-07-24T08:22:01.010000"],["2024-07-24T08:22:02.010000"],["2024-07-24T08:22:03.010000"],["2024-07-24T08:22:04.010000"],["2024-07-24T08:22:05.010000"],["2024-07-24T08:22:06.010000"],["2024-07-24T08:22:07.010000"],["2024-07-24T08:22:08.010000"],["2024-07-24T08:22:09.010000"],["2024-07-24T08:22:10.010000"],["2024-07-24T08:22:11.010000"],["2024-07-24T08:22:12.010000"],["2024-07-24T08:22:13.010000"],["2024-07-24T08:22:14.010000"],["2024-07-24T08:22:15.010000"],["2024-07-24T08:22:16.010000"],["2024-07-24T08:22:17.010000"],["2024-07-24T08:22:18.010000"],["2024-07-24T08:22:19.010000"],["2024-07-24T08:22:20.010000"],["2024-07-24T08:22:21.010000"],["2024-07-24T08:22:22.010000"],["2024-07-24T08:22:23.010000"],["2024-07-24T08:22:24.010000"],["2024-07-24T08:22:25.010000"],["2024-07-24T08:22:26.010000"],["2024-07-24T08:22:27.010000"],["2024-07-24T08:22:28.010000"],["2024-07-24T08:22:29.010000"],["2024-07-24T08:22:30.010000"],["2024-07-24T08:22:31.010000"],["2024-07-24T08:22:32.010000"],["2024-07-24T08:22:33.010000"],["2024-07-24T08:22:34.010000"],["2024-07-24T08:22:35.010000"],["2024-07-24T08:22:36.010000"],["2024-07-24T08:22:37.010000"],["2024-07-24T08:22:38.010000"],["2024-07-24T08:22:39.010000"],["2024-07-24T08:22:40.010000"],["2024-07-24T08:22:41.010000"],["2024-07-24T08:22:42.010000"],["2024-07-24T08:22:43.010000"],["2024-07-24T08:22:44.010000"],["2024-07-24T08:22:45.010000"],["2024-07-24T08:22:46.010000"],["2024-07-24T08:22:47.010000"],["2024-07-24T08:22:48.010000"],["2024-07-24T08:22:49.010000"],["2024-07-24T08:22:50.010000"],["2024-07-24T08:22:51.010000"],["2024-07-24T08:22:52.010000"],["2024-07-24T08:22:53.010000"],["2024-07-24T08:22:54.010000"],["2024-07-24T08:22:55.010000"],["2024-07-24T08:22:56.010000"],["2024-07-24T08:22:57.010000"],["2024-07-24T08:22:58.010000"],["2024-07-24T08:22:59.010000"],["2024-07-24T08:23:00.010000"],["2024-07-24T08:23:01.010000"],["2024-07-24T08:23:02.010000"],["2024-07-24T08:23:03.010000"],["2024-07-24T08:23:04.010000"],["2024-07-24T08:23:05.010000"],["2024-07-24T08:23:06.010000"],["2024-07-24T08:23:07.010000"],["2024-07-24T08:23:08.010000"],["2024-07-24T08:23:09.010000"],["2024-07-24T08:23:10.010000"],["2024-07-24T08:23:11.010000"],["2024-07-24T08:23:12.010000"],["2024-07-24T08:23:13.010000"],["2024-07-24T08:23:14.010000"],["2024-07-24T08:23:15.010000"],["2024-07-24T08:23:16.010000"],["2024-07-24T08:23:17.010000"],["2024-07-24T08:23:18.010000"],["2024-07-24T08:23:19.010000"],["2024-07-24T08:23:20.010000"],["2024-07-24T08:23:21.010000"],["2024-07-24T08:23:22.010000"],["2024-07-24T08:23:23.010000"],["2024-07-24T08:23:24.010000"],["2024-07-24T08:23:25.010000"],["2024-07-24T08:23:26.010000"],["2024-07-24T08:23:27.010000"],["2024-07-24T08:23:28.010000"],["2024-07-24T08:23:29.010000"],["2024-07-24T08:23:30.010000"],["2024-07-24T08:23:31.010000"],["2024-07-24T08:23:32.010000"],["2024-07-24T08:23:33.010000"],["2024-07-24T08:23:34.010000"],["2024-07-24T08:23:35.010000"],["2024-07-24T08:23:36.010000"],["2024-07-24T08:23:37.010000"],["2024-07-24T08:23:38.010000"],["2024-07-24T08:23:39.010000"],["2024-07-24T08:23:40.010000"],["2024-07-24T08:23:41.010000"],["2024-07-24T08:23:42.010000"],["2024-07-24T08:23:43.010000"],["2024-07-24T08:23:44.010000"],["2024-07-24T08:23:45.010000"],["2024-07-24T08:23:46.010000"],["2024-07-24T08:23:47.010000"],["2024-07-24T08:23:48.010000"],["2024-07-24T08:23:49.010000"],["2024-07-24T08:23:50.010000"],["2024-07-24T08:23:51.010000"],["2024-07-24T08:23:52.010000"],["2024-07-24T08:23:53.010000"],["2024-07-24T08:23:54.010000"],["2024-07-24T08:23:55.010000"],["2024-07-24T08:23:56.010000"],["2024-07-24T08:23:57.010000"],["2024-07-24T08:23:58.010000"],["2024-07-24T08:23:59.010000"],["2024-07-24T08:24:00.010000"],["2024-07-24T08:24:01.010000"],["2024-07-24T08:24:02.010000"],["2024-07-24T08:24:03.010000"],["2024-07-24T08:24:04.010000"],["2024-07-24T08:24:05.010000"],["2024-07-24T08:24:06.010000"],["2024-07-24T08:24:07.010000"],["2024-07-24T08:24:08.010000"],["2024-07-24T08:24:09.010000"],["2024-07-24T08:24:10.010000"],["2024-07-24T08:24:11.010000"],["2024-07-24T08:24:12.010000"],["2024-07-24T08:24:13.010000"],["2024-07-24T08:24:14.010000"],["2024-07-24T08:24:15.010000"],["2024-07-24T08:24:16.010000"],["2024-07-24T08:24:17.010000"],["2024-07-24T08:24:18.010000"],["2024-07-24T08:24:19.010000"],["2024-07-24T08:24:20.010000"],["2024-07-24T08:24:21.010000"],["2024-07-24T08:24:22.010000"],["2024-07-24T08:24:23.010000"],["2024-07-24T08:24:24.010000"],["2024-07-24T08:24:25.010000"],["2024-07-24T08:24:26.010000"],["2024-07-24T08:24:27.010000"],["2024-07-24T08:24:28.010000"],["2024-07-24T08:24:29.010000"],["2024-07-24T08:24:30.010000"],["2024-07-24T08:24:31.010000"],["2024-07-24T08:24:32.010000"],["2024-07-24T08:24:33.010000"],["2024-07-24T08:24:34.010000"],["2024-07-24T08:24:35.010000"],["2024-07-24T08:24:36.010000"],["2024-07-24T08:24:37.010000"],["2024-07-24T08:24:38.010000"],["2024-07-24T08:24:39.010000"],["2024-07-24T08:24:40.010000"],["2024-07-24T08:24:41.010000"],["2024-07-24T08:24:42.010000"],["2024-07-24T08:24:43.010000"],["2024-07-24T08:24:44.010000"],["2024-07-24T08:24:45.010000"],["2024-07-24T08:24:46.010000"],["2024-07-24T08:24:47.010000"],["2024-07-24T08:24:48.010000"],["2024-07-24T08:24:49.010000"],["2024-07-24T08:24:50.010000"],["2024-07-24T08:24:51.010000"],["2024-07-24T08:24:52.010000"],["2024-07-24T08:24:53.010000"],["2024-07-24T08:24:54.010000"],["2024-07-24T08:24:55.010000"],["2024-07-24T08:24:56.010000"],["2024-07-24T08:24:57.010000"],["2024-07-24T08:24:58.010000"],["2024-07-24T08:24:59.010000"],["2024-07-24T08:25:00.010000"],["2024-07-24T08:25:01.010000"],["2024-07-24T08:25:02.010000"],["2024-07-24T08:25:03.010000"],["2024-07-24T08:25:04.010000"],["2024-07-24T08:25:05.010000"],["2024-07-24T08:25:06.010000"],["2024-07-24T08:25:07.010000"],["2024-07-24T08:25:08.010000"],["2024-07-24T08:25:09.010000"],["2024-07-24T08:25:10.010000"],["2024-07-24T08:25:11.010000"],["2024-07-24T08:25:12.010000"],["2024-07-24T08:25:13.010000"],["2024-07-24T08:25:14.010000"],["2024-07-24T08:25:15.010000"],["2024-07-24T08:25:16.010000"],["2024-07-24T08:25:17.010000"],["2024-07-24T08:25:18.010000"],["2024-07-24T08:25:19.010000"],["2024-07-24T08:25:20.010000"],["2024-07-24T08:25:21.010000"],["2024-07-24T08:25:22.010000"],["2024-07-24T08:25:23.010000"],["2024-07-24T08:25:24.010000"],["2024-07-24T08:25:25.010000"],["2024-07-24T08:25:26.010000"],["2024-07-24T08:25:27.010000"],["2024-07-24T08:25:28.010000"],["2024-07-24T08:25:29.010000"],["2024-07-24T08:25:30.010000"],["2024-07-24T08:25:31.010000"],["2024-07-24T08:25:32.010000"],["2024-07-24T08:25:33.010000"],["2024-07-24T08:25:34.010000"],["2024-07-24T08:25:35.010000"],["2024-07-24T08:25:36.010000"],["2024-07-24T08:25:37.010000"],["2024-07-24T08:25:38.010000"],["2024-07-24T08:25:39.010000"],["2024-07-24T08:25:40.010000"],["2024-07-24T08:25:41.010000"],["2024-07-24T08:25:42.010000"],["2024-07-24T08:25:43.010000"],["2024-07-24T08:25:44.010000"],["2024-07-24T08:25:45.010000"],["2024-07-24T08:25:46.010000"],["2024-07-24T08:25:47.010000"],["2024-07-24T08:25:48.010000"],["2024-07-24T08:25:49.010000"],["2024-07-24T08:25:50.010000"],["2024-07-24T08:25:51.010000"],["2024-07-24T08:25:52.010000"],["2024-07-24T08:25:53.010000"],["2024-07-24T08:25:54.010000"],["2024-07-24T08:25:55.010000"],["2024-07-24T08:25:56.010000"],["2024-07-24T08:25:57.010000"],["2024-07-24T08:25:58.010000"],["2024-07-24T08:25:59.010000"],["2024-07-24T08:26:00.010000"],["2024-07-24T08:26:01.010000"],["2024-07-24T08:26:02.010000"],["2024-07-24T08:26:03.010000"],["2024-07-24T08:26:04.010000"],["2024-07-24T08:26:05.010000"],["2024-07-24T08:26:06.010000"],["2024-07-24T08:26:07.010000"],["2024-07-24T08:26:08.010000"],["2024-07-24T08:26:09.010000"],["2024-07-24T08:26:10.010000"],["2024-07-24T08:26:11.010000"],["2024-07-24T08:26:12.010000"],["2024-07-24T08:26:13.010000"],["2024-07-24T08:26:14.010000"],["2024-07-24T08:26:15.010000"],["2024-07-24T08:26:16.010000"],["2024-07-24T08:26:17.010000"],["2024-07-24T08:26:18.010000"],["2024-07-24T08:26:19.010000"],["2024-07-24T08:26:20.010000"],["2024-07-24T08:26:21.010000"],["2024-07-24T08:26:22.010000"],["2024-07-24T08:26:23.010000"],["2024-07-24T08:26:24.010000"],["2024-07-24T08:26:25.010000"],["2024-07-24T08:26:26.010000"],["2024-07-24T08:26:27.010000"],["2024-07-24T08:26:28.010000"],["2024-07-24T08:26:29.010000"],["2024-07-24T08:26:30.010000"],["2024-07-24T08:26:31.010000"],["2024-07-24T08:26:32.010000"],["2024-07-24T08:26:33.010000"],["2024-07-24T08:26:34.010000"],["2024-07-24T08:26:35.010000"],["2024-07-24T08:26:36.010000"],["2024-07-24T08:26:37.010000"],["2024-07-24T08:26:38.010000"],["2024-07-24T08:26:39.010000"],["2024-07-24T08:26:40.010000"],["2024-07-24T08:26:41.010000"],["2024-07-24T08:26:42.010000"],["2024-07-24T08:26:43.010000"],["2024-07-24T08:26:44.010000"],["2024-07-24T08:26:45.010000"],["2024-07-24T08:26:46.010000"],["2024-07-24T08:26:47.010000"],["2024-07-24T08:26:48.010000"],["2024-07-24T08:26:49.010000"],["2024-07-24T08:26:50.010000"],["2024-07-24T08:26:51.010000"],["2024-07-24T08:26:52.010000"],["2024-07-24T08:26:53.010000"],["2024-07-24T08:26:54.010000"],["2024-07-24T08:26:55.010000"],["2024-07-24T08:26:56.010000"],["2024-07-24T08:26:57.010000"],["2024-07-24T08:26:58.010000"],["2024-07-24T08:26:59.010000"],["2024-07-24T08:27:00.010000"],["2024-07-24T08:27:01.010000"],["2024-07-24T08:27:02.010000"],["2024-07-24T08:27:03.010000"],["2024-07-24T08:27:04.010000"],["2024-07-24T08:27:05.010000"],["2024-07-24T08:27:06.010000"],["2024-07-24T08:27:07.010000"],["2024-07-24T08:27:08.010000"],["2024-07-24T08:27:09.010000"],["2024-07-24T08:27:10.010000"],["2024-07-24T08:27:11.010000"],["2024-07-24T08:27:12.010000"],["2024-07-24T08:27:13.010000"],["2024-07-24T08:27:14.010000"],["2024-07-24T08:27:15.010000"],["2024-07-24T08:27:16.010000"],["2024-07-24T08:27:17.010000"],["2024-07-24T08:27:18.010000"],["2024-07-24T08:27:19.010000"],["2024-07-24T08:27:20.010000"],["2024-07-24T08:27:21.010000"],["2024-07-24T08:27:22.010000"],["2024-07-24T08:27:23.010000"],["2024-07-24T08:27:24.010000"],["2024-07-24T08:27:25.010000"],["2024-07-24T08:27:26.010000"],["2024-07-24T08:27:27.010000"],["2024-07-24T08:27:28.010000"],["2024-07-24T08:27:29.010000"],["2024-07-24T08:27:30.010000"],["2024-07-24T08:27:31.010000"],["2024-07-24T08:27:32.010000"],["2024-07-24T08:27:33.010000"],["2024-07-24T08:27:34.010000"],["2024-07-24T08:27:35.010000"],["2024-07-24T08:27:36.010000"],["2024-07-24T08:27:37.010000"],["2024-07-24T08:27:38.010000"],["2024-07-24T08:27:39.010000"],["2024-07-24T08:27:40.010000"],["2024-07-24T08:27:41.010000"],["2024-07-24T08:27:42.010000"],["2024-07-24T08:27:43.010000"],["2024-07-24T08:27:44.010000"],["2024-07-24T08:27:45.010000"],["2024-07-24T08:27:46.010000"],["2024-07-24T08:27:47.010000"],["2024-07-24T08:27:48.010000"],["2024-07-24T08:27:49.010000"],["2024-07-24T08:27:50.010000"],["2024-07-24T08:27:51.010000"],["2024-07-24T08:27:52.010000"],["2024-07-24T08:27:53.010000"],["2024-07-24T08:27:54.010000"],["2024-07-24T08:27:55.010000"],["2024-07-24T08:27:56.010000"],["2024-07-24T08:27:57.010000"],["2024-07-24T08:27:58.010000"],["2024-07-24T08:27:59.010000"],["2024-07-24T08:28:00.010000"],["2024-07-24T08:28:01.010000"],["2024-07-24T08:28:02.010000"],["2024-07-24T08:28:03.010000"],["2024-07-24T08:28:04.010000"],["2024-07-24T08:28:05.010000"],["2024-07-24T08:28:06.010000"],["2024-07-24T08:28:07.010000"],["2024-07-24T08:28:08.010000"],["2024-07-24T08:28:09.010000"],["2024-07-24T08:28:10.010000"],["2024-07-24T08:28:11.010000"],["2024-07-24T08:28:12.010000"],["2024-07-24T08:28:13.010000"],["2024-07-24T08:28:14.010000"],["2024-07-24T08:28:15.010000"],["2024-07-24T08:28:16.010000"],["2024-07-24T08:28:17.010000"],["2024-07-24T08:28:18.010000"],["2024-07-24T08:28:19.010000"],["2024-07-24T08:28:20.010000"],["2024-07-24T08:28:21.010000"],["2024-07-24T08:28:22.010000"],["2024-07-24T08:28:23.010000"],["2024-07-24T08:28:24.010000"],["2024-07-24T08:28:25.010000"],["2024-07-24T08:28:26.010000"],["2024-07-24T08:28:27.010000"],["2024-07-24T08:28:28.010000"],["2024-07-24T08:28:29.010000"],["2024-07-24T08:28:30.010000"],["2024-07-24T08:28:31.010000"],["2024-07-24T08:28:32.010000"],["2024-07-24T08:28:33.010000"],["2024-07-24T08:28:34.010000"],["2024-07-24T08:28:35.010000"],["2024-07-24T08:28:36.010000"],["2024-07-24T08:28:37.010000"],["2024-07-24T08:28:38.010000"],["2024-07-24T08:28:39.010000"],["2024-07-24T08:28:40.010000"],["2024-07-24T08:28:41.010000"],["2024-07-24T08:28:42.010000"],["2024-07-24T08:28:43.010000"],["2024-07-24T08:28:44.010000"],["2024-07-24T08:28:45.010000"],["2024-07-24T08:28:46.010000"],["2024-07-24T08:28:47.010000"],["2024-07-24T08:28:48.010000"],["2024-07-24T08:28:49.010000"],["2024-07-24T08:28:50.010000"],["2024-07-24T08:28:51.010000"],["2024-07-24T08:28:52.010000"],["2024-07-24T08:28:53.010000"],["2024-07-24T08:28:54.010000"],["2024-07-24T08:28:55.010000"],["2024-07-24T08:28:56.010000"],["2024-07-24T08:28:57.010000"],["2024-07-24T08:28:58.010000"],["2024-07-24T08:28:59.010000"],["2024-07-24T08:29:00.010000"],["2024-07-24T08:29:01.010000"],["2024-07-24T08:29:02.010000"],["2024-07-24T08:29:03.010000"],["2024-07-24T08:29:04.010000"],["2024-07-24T08:29:05.010000"],["2024-07-24T08:29:06.010000"],["2024-07-24T08:29:07.010000"],["2024-07-24T08:29:08.010000"],["2024-07-24T08:29:09.010000"],["2024-07-24T08:29:10.010000"],["2024-07-24T08:29:11.010000"],["2024-07-24T08:29:12.010000"],["2024-07-24T08:29:13.010000"],["2024-07-24T08:29:14.010000"],["2024-07-24T08:29:15.010000"],["2024-07-24T08:29:16.010000"],["2024-07-24T08:29:17.010000"],["2024-07-24T08:29:18.010000"],["2024-07-24T08:29:19.010000"],["2024-07-24T08:29:20.010000"],["2024-07-24T08:29:21.010000"],["2024-07-24T08:29:22.010000"],["2024-07-24T08:29:23.010000"],["2024-07-24T08:29:24.010000"],["2024-07-24T08:29:25.010000"],["2024-07-24T08:29:26.010000"],["2024-07-24T08:29:27.010000"],["2024-07-24T08:29:28.010000"],["2024-07-24T08:29:29.010000"],["2024-07-24T08:29:30.010000"],["2024-07-24T08:29:31.010000"],["2024-07-24T08:29:32.010000"],["2024-07-24T08:29:33.010000"],["2024-07-24T08:29:34.010000"],["2024-07-24T08:29:35.010000"],["2024-07-24T08:29:36.010000"],["2024-07-24T08:29:37.010000"],["2024-07-24T08:29:38.010000"],["2024-07-24T08:29:39.010000"],["2024-07-24T08:29:40.010000"],["2024-07-24T08:29:41.010000"],["2024-07-24T08:29:42.010000"],["2024-07-24T08:29:43.010000"],["2024-07-24T08:29:44.010000"],["2024-07-24T08:29:45.010000"],["2024-07-24T08:29:46.010000"],["2024-07-24T08:29:47.010000"],["2024-07-24T08:29:48.010000"],["2024-07-24T08:29:49.010000"],["2024-07-24T08:29:50.010000"],["2024-07-24T08:29:51.010000"],["2024-07-24T08:29:52.010000"],["2024-07-24T08:29:53.010000"],["2024-07-24T08:29:54.010000"],["2024-07-24T08:29:55.010000"],["2024-07-24T08:29:56.010000"],["2024-07-24T08:29:57.010000"],["2024-07-24T08:29:58.010000"],["2024-07-24T08:29:59.010000"],["2024-07-24T08:30:00.010000"],["2024-07-24T08:30:01.010000"],["2024-07-24T08:30:02.010000"],["2024-07-24T08:30:03.010000"],["2024-07-24T08:30:04.010000"],["2024-07-24T08:30:05.010000"],["2024-07-24T08:30:06.010000"],["2024-07-24T08:30:07.010000"],["2024-07-24T08:30:08.010000"],["2024-07-24T08:30:09.010000"],["2024-07-24T08:30:10.010000"],["2024-07-24T08:30:11.010000"],["2024-07-24T08:30:12.010000"],["2024-07-24T08:30:13.010000"],["2024-07-24T08:30:14.010000"],["2024-07-24T08:30:15.010000"],["2024-07-24T08:30:16.010000"],["2024-07-24T08:30:17.010000"],["2024-07-24T08:30:18.010000"],["2024-07-24T08:30:19.010000"],["2024-07-24T08:30:20.010000"],["2024-07-24T08:30:21.010000"],["2024-07-24T08:30:22.010000"],["2024-07-24T08:30:23.010000"],["2024-07-24T08:30:24.010000"],["2024-07-24T08:30:25.010000"],["2024-07-24T08:30:26.010000"],["2024-07-24T08:30:27.010000"],["2024-07-24T08:30:28.010000"],["2024-07-24T08:30:29.010000"],["2024-07-24T08:30:30.010000"],["2024-07-24T08:30:31.010000"],["2024-07-24T08:30:32.010000"],["2024-07-24T08:30:33.010000"],["2024-07-24T08:30:34.010000"],["2024-07-24T08:30:35.010000"],["2024-07-24T08:30:36.010000"],["2024-07-24T08:30:37.010000"],["2024-07-24T08:30:38.010000"],["2024-07-24T08:30:39.010000"],["2024-07-24T08:30:40.010000"],["2024-07-24T08:30:41.010000"],["2024-07-24T08:30:42.010000"],["2024-07-24T08:30:43.010000"],["2024-07-24T08:30:44.010000"],["2024-07-24T08:30:45.010000"],["2024-07-24T08:30:46.010000"],["2024-07-24T08:30:47.010000"],["2024-07-24T08:30:48.010000"],["2024-07-24T08:30:49.010000"],["2024-07-24T08:30:50.010000"],["2024-07-24T08:30:51.010000"],["2024-07-24T08:30:52.010000"],["2024-07-24T08:30:53.010000"],["2024-07-24T08:30:54.010000"],["2024-07-24T08:30:55.010000"],["2024-07-24T08:30:56.010000"],["2024-07-24T08:30:57.010000"],["2024-07-24T08:30:58.010000"],["2024-07-24T08:30:59.010000"],["2024-07-24T08:31:00.010000"],["2024-07-24T08:31:01.010000"],["2024-07-24T08:31:02.010000"],["2024-07-24T08:31:03.010000"],["2024-07-24T08:31:04.010000"],["2024-07-24T08:31:05.010000"],["2024-07-24T08:31:06.010000"],["2024-07-24T08:31:07.010000"],["2024-07-24T08:31:08.010000"],["2024-07-24T08:31:09.010000"],["2024-07-24T08:31:10.010000"],["2024-07-24T08:31:11.010000"],["2024-07-24T08:31:12.010000"],["2024-07-24T08:31:13.010000"],["2024-07-24T08:31:14.010000"],["2024-07-24T08:31:15.010000"],["2024-07-24T08:31:16.010000"],["2024-07-24T08:31:17.010000"],["2024-07-24T08:31:18.010000"],["2024-07-24T08:31:19.010000"],["2024-07-24T08:31:20.010000"],["2024-07-24T08:31:21.010000"],["2024-07-24T08:31:22.010000"],["2024-07-24T08:31:23.010000"],["2024-07-24T08:31:24.010000"],["2024-07-24T08:31:25.010000"],["2024-07-24T08:31:26.010000"],["2024-07-24T08:31:27.010000"],["2024-07-24T08:31:28.010000"],["2024-07-24T08:31:29.010000"],["2024-07-24T08:31:30.010000"],["2024-07-24T08:31:31.010000"],["2024-07-24T08:31:32.010000"],["2024-07-24T08:31:33.010000"],["2024-07-24T08:31:34.010000"],["2024-07-24T08:31:35.010000"],["2024-07-24T08:31:36.010000"],["2024-07-24T08:31:37.010000"],["2024-07-24T08:31:38.010000"],["2024-07-24T08:31:39.010000"],["2024-07-24T08:31:40.010000"],["2024-07-24T08:31:41.010000"],["2024-07-24T08:31:42.010000"],["2024-07-24T08:31:43.010000"],["2024-07-24T08:31:44.010000"],["2024-07-24T08:31:45.010000"],["2024-07-24T08:31:46.010000"],["2024-07-24T08:31:47.010000"],["2024-07-24T08:31:48.010000"],["2024-07-24T08:31:49.010000"],["2024-07-24T08:31:50.010000"],["2024-07-24T08:31:51.010000"],["2024-07-24T08:31:52.010000"],["2024-07-24T08:31:53.010000"],["2024-07-24T08:31:54.010000"],["2024-07-24T08:31:55.010000"],["2024-07-24T08:31:56.010000"],["2024-07-24T08:31:57.010000"],["2024-07-24T08:31:58.010000"],["2024-07-24T08:31:59.010000"],["2024-07-24T08:32:00.010000"],["2024-07-24T08:32:01.010000"],["2024-07-24T08:32:02.010000"],["2024-07-24T08:32:03.010000"],["2024-07-24T08:32:04.010000"],["2024-07-24T08:32:05.010000"],["2024-07-24T08:32:06.010000"],["2024-07-24T08:32:07.010000"],["2024-07-24T08:32:08.010000"],["2024-07-24T08:32:09.010000"],["2024-07-24T08:32:10.010000"],["2024-07-24T08:32:11.010000"],["2024-07-24T08:32:12.010000"],["2024-07-24T08:32:13.010000"],["2024-07-24T08:32:14.010000"],["2024-07-24T08:32:15.010000"],["2024-07-24T08:32:16.010000"],["2024-07-24T08:32:17.010000"],["2024-07-24T08:32:18.010000"],["2024-07-24T08:32:19.010000"],["2024-07-24T08:32:20.010000"],["2024-07-24T08:32:21.010000"],["2024-07-24T08:32:22.010000"],["2024-07-24T08:32:23.010000"],["2024-07-24T08:32:24.010000"],["2024-07-24T08:32:25.010000"],["2024-07-24T08:32:26.010000"],["2024-07-24T08:32:27.010000"],["2024-07-24T08:32:28.010000"],["2024-07-24T08:32:29.010000"],["2024-07-24T08:32:30.010000"],["2024-07-24T08:32:31.010000"],["2024-07-24T08:32:32.010000"],["2024-07-24T08:32:33.010000"],["2024-07-24T08:32:34.010000"],["2024-07-24T08:32:35.010000"],["2024-07-24T08:32:36.010000"],["2024-07-24T08:32:37.010000"],["2024-07-24T08:32:38.010000"],["2024-07-24T08:32:39.010000"],["2024-07-24T08:32:40.010000"],["2024-07-24T08:32:41.010000"],["2024-07-24T08:32:42.010000"],["2024-07-24T08:32:43.010000"],["2024-07-24T08:32:44.010000"],["2024-07-24T08:32:45.010000"],["2024-07-24T08:32:46.010000"],["2024-07-24T08:32:47.010000"],["2024-07-24T08:32:48.010000"],["2024-07-24T08:32:49.010000"],["2024-07-24T08:32:50.010000"],["2024-07-24T08:32:51.010000"],["2024-07-24T08:32:52.010000"],["2024-07-24T08:32:53.010000"],["2024-07-24T08:32:54.010000"],["2024-07-24T08:32:55.010000"],["2024-07-24T08:32:56.010000"],["2024-07-24T08:32:57.010000"],["2024-07-24T08:32:58.010000"],["2024-07-24T08:32:59.010000"],["2024-07-24T08:33:00.010000"],["2024-07-24T08:33:01.010000"],["2024-07-24T08:33:02.010000"],["2024-07-24T08:33:03.010000"],["2024-07-24T08:33:04.010000"],["2024-07-24T08:33:05.010000"],["2024-07-24T08:33:06.010000"],["2024-07-24T08:33:07.010000"],["2024-07-24T08:33:08.010000"],["2024-07-24T08:33:09.010000"],["2024-07-24T08:33:10.010000"],["2024-07-24T08:33:11.010000"],["2024-07-24T08:33:12.010000"],["2024-07-24T08:33:13.010000"],["2024-07-24T08:33:14.010000"],["2024-07-24T08:33:15.010000"],["2024-07-24T08:33:16.010000"],["2024-07-24T08:33:17.010000"],["2024-07-24T08:33:18.010000"],["2024-07-24T08:33:19.010000"],["2024-07-24T08:33:20.010000"],["2024-07-24T08:33:21.010000"],["2024-07-24T08:33:22.010000"],["2024-07-24T08:33:23.010000"],["2024-07-24T08:33:24.010000"],["2024-07-24T08:33:25.010000"],["2024-07-24T08:33:26.010000"],["2024-07-24T08:33:27.010000"],["2024-07-24T08:33:28.010000"],["2024-07-24T08:33:29.010000"],["2024-07-24T08:33:30.010000"],["2024-07-24T08:33:31.010000"],["2024-07-24T08:33:32.010000"],["2024-07-24T08:33:33.010000"],["2024-07-24T08:33:34.010000"],["2024-07-24T08:33:35.010000"],["2024-07-24T08:33:36.010000"],["2024-07-24T08:33:37.010000"],["2024-07-24T08:33:38.010000"],["2024-07-24T08:33:39.010000"],["2024-07-24T08:33:40.010000"],["2024-07-24T08:33:41.010000"],["2024-07-24T08:33:42.010000"],["2024-07-24T08:33:43.010000"],["2024-07-24T08:33:44.010000"],["2024-07-24T08:33:45.010000"],["2024-07-24T08:33:46.010000"],["2024-07-24T08:33:47.010000"],["2024-07-24T08:33:48.010000"],["2024-07-24T08:33:49.010000"],["2024-07-24T08:33:50.010000"],["2024-07-24T08:33:51.010000"],["2024-07-24T08:33:52.010000"],["2024-07-24T08:33:53.010000"],["2024-07-24T08:33:54.010000"],["2024-07-24T08:33:55.010000"],["2024-07-24T08:33:56.010000"],["2024-07-24T08:33:57.010000"],["2024-07-24T08:33:58.010000"],["2024-07-24T08:33:59.010000"],["2024-07-24T08:34:00.010000"],["2024-07-24T08:34:01.010000"],["2024-07-24T08:34:02.010000"],["2024-07-24T08:34:03.010000"],["2024-07-24T08:34:04.010000"],["2024-07-24T08:34:05.010000"],["2024-07-24T08:34:06.010000"],["2024-07-24T08:34:07.010000"],["2024-07-24T08:34:08.010000"],["2024-07-24T08:34:09.010000"],["2024-07-24T08:34:10.010000"],["2024-07-24T08:34:11.010000"],["2024-07-24T08:34:12.010000"],["2024-07-24T08:34:13.010000"],["2024-07-24T08:34:14.010000"],["2024-07-24T08:34:15.010000"],["2024-07-24T08:34:16.010000"],["2024-07-24T08:34:17.010000"],["2024-07-24T08:34:18.010000"],["2024-07-24T08:34:19.010000"],["2024-07-24T08:34:20.010000"],["2024-07-24T08:34:21.010000"],["2024-07-24T08:34:22.010000"],["2024-07-24T08:34:23.010000"],["2024-07-24T08:34:24.010000"],["2024-07-24T08:34:25.010000"],["2024-07-24T08:34:26.010000"],["2024-07-24T08:34:27.010000"],["2024-07-24T08:34:28.010000"],["2024-07-24T08:34:29.010000"],["2024-07-24T08:34:30.010000"],["2024-07-24T08:34:31.010000"],["2024-07-24T08:34:32.010000"],["2024-07-24T08:34:33.010000"],["2024-07-24T08:34:34.010000"],["2024-07-24T08:34:35.010000"],["2024-07-24T08:34:36.010000"],["2024-07-24T08:34:37.010000"],["2024-07-24T08:34:38.010000"],["2024-07-24T08:34:39.010000"],["2024-07-24T08:34:40.010000"],["2024-07-24T08:34:41.010000"],["2024-07-24T08:34:42.010000"],["2024-07-24T08:34:43.010000"],["2024-07-24T08:34:44.010000"],["2024-07-24T08:34:45.010000"],["2024-07-24T08:34:46.010000"],["2024-07-24T08:34:47.010000"],["2024-07-24T08:34:48.010000"],["2024-07-24T08:34:49.010000"],["2024-07-24T08:34:50.010000"],["2024-07-24T08:34:51.010000"],["2024-07-24T08:34:52.010000"],["2024-07-24T08:34:53.010000"],["2024-07-24T08:34:54.010000"],["2024-07-24T08:34:55.010000"],["2024-07-24T08:34:56.010000"],["2024-07-24T08:34:57.010000"],["2024-07-24T08:34:58.010000"],["2024-07-24T08:34:59.010000"],["2024-07-24T08:35:00.010000"],["2024-07-24T08:35:01.010000"],["2024-07-24T08:35:02.010000"],["2024-07-24T08:35:03.010000"],["2024-07-24T08:35:04.010000"],["2024-07-24T08:35:05.010000"],["2024-07-24T08:35:06.010000"],["2024-07-24T08:35:07.010000"],["2024-07-24T08:35:08.010000"],["2024-07-24T08:35:09.010000"],["2024-07-24T08:35:10.010000"],["2024-07-24T08:35:11.010000"],["2024-07-24T08:35:12.010000"],["2024-07-24T08:35:13.010000"],["2024-07-24T08:35:14.010000"],["2024-07-24T08:35:15.010000"],["2024-07-24T08:35:16.010000"],["2024-07-24T08:35:17.010000"],["2024-07-24T08:35:18.010000"],["2024-07-24T08:35:19.010000"],["2024-07-24T08:35:20.010000"],["2024-07-24T08:35:21.010000"],["2024-07-24T08:35:22.010000"],["2024-07-24T08:35:23.010000"],["2024-07-24T08:35:24.010000"],["2024-07-24T08:35:25.010000"],["2024-07-24T08:35:26.010000"],["2024-07-24T08:35:27.010000"],["2024-07-24T08:35:28.010000"],["2024-07-24T08:35:29.010000"],["2024-07-24T08:35:30.010000"],["2024-07-24T08:35:31.010000"],["2024-07-24T08:35:32.010000"],["2024-07-24T08:35:33.010000"],["2024-07-24T08:35:34.010000"],["2024-07-24T08:35:35.010000"],["2024-07-24T08:35:36.010000"],["2024-07-24T08:35:37.010000"],["2024-07-24T08:35:38.010000"],["2024-07-24T08:35:39.010000"],["2024-07-24T08:35:40.010000"],["2024-07-24T08:35:41.010000"],["2024-07-24T08:35:42.010000"],["2024-07-24T08:35:43.010000"],["2024-07-24T08:35:44.010000"],["2024-07-24T08:35:45.010000"],["2024-07-24T08:35:46.010000"],["2024-07-24T08:35:47.010000"],["2024-07-24T08:35:48.010000"],["2024-07-24T08:35:49.010000"],["2024-07-24T08:35:50.010000"],["2024-07-24T08:35:51.010000"],["2024-07-24T08:35:52.010000"],["2024-07-24T08:35:53.010000"],["2024-07-24T08:35:54.010000"],["2024-07-24T08:35:55.010000"],["2024-07-24T08:35:56.010000"],["2024-07-24T08:35:57.010000"],["2024-07-24T08:35:58.010000"],["2024-07-24T08:35:59.010000"],["2024-07-24T08:36:00.010000"],["2024-07-24T08:36:01.010000"],["2024-07-24T08:36:02.010000"],["2024-07-24T08:36:03.010000"],["2024-07-24T08:36:04.010000"],["2024-07-24T08:36:05.010000"],["2024-07-24T08:36:06.010000"],["2024-07-24T08:36:07.010000"],["2024-07-24T08:36:08.010000"],["2024-07-24T08:36:09.010000"],["2024-07-24T08:36:10.010000"],["2024-07-24T08:36:11.010000"],["2024-07-24T08:36:12.010000"],["2024-07-24T08:36:13.010000"],["2024-07-24T08:36:14.010000"],["2024-07-24T08:36:15.010000"],["2024-07-24T08:36:16.010000"],["2024-07-24T08:36:17.010000"],["2024-07-24T08:36:18.010000"],["2024-07-24T08:36:19.010000"],["2024-07-24T08:36:20.010000"],["2024-07-24T08:36:21.010000"],["2024-07-24T08:36:22.010000"],["2024-07-24T08:36:23.010000"],["2024-07-24T08:36:24.010000"],["2024-07-24T08:36:25.010000"],["2024-07-24T08:36:26.010000"],["2024-07-24T08:36:27.010000"],["2024-07-24T08:36:28.010000"],["2024-07-24T08:36:29.010000"],["2024-07-24T08:36:30.010000"],["2024-07-24T08:36:31.010000"],["2024-07-24T08:36:32.010000"],["2024-07-24T08:36:33.010000"],["2024-07-24T08:36:34.010000"],["2024-07-24T08:36:35.010000"],["2024-07-24T08:36:36.010000"],["2024-07-24T08:36:37.010000"],["2024-07-24T08:36:38.010000"],["2024-07-24T08:36:39.010000"],["2024-07-24T08:36:40.010000"],["2024-07-24T08:36:41.010000"],["2024-07-24T08:36:42.010000"],["2024-07-24T08:36:43.010000"],["2024-07-24T08:36:44.010000"],["2024-07-24T08:36:45.010000"],["2024-07-24T08:36:46.010000"],["2024-07-24T08:36:47.010000"],["2024-07-24T08:36:48.010000"],["2024-07-24T08:36:49.010000"],["2024-07-24T08:36:50.010000"],["2024-07-24T08:36:51.010000"],["2024-07-24T08:36:52.010000"],["2024-07-24T08:36:53.010000"],["2024-07-24T08:36:54.010000"],["2024-07-24T08:36:55.010000"],["2024-07-24T08:36:56.010000"],["2024-07-24T08:36:57.010000"],["2024-07-24T08:36:58.010000"],["2024-07-24T08:36:59.010000"],["2024-07-24T08:37:00.010000"],["2024-07-24T08:37:01.010000"],["2024-07-24T08:37:02.010000"],["2024-07-24T08:37:03.010000"],["2024-07-24T08:37:04.010000"],["2024-07-24T08:37:05.010000"],["2024-07-24T08:37:06.010000"],["2024-07-24T08:37:07.010000"],["2024-07-24T08:37:08.010000"],["2024-07-24T08:37:09.010000"],["2024-07-24T08:37:10.010000"],["2024-07-24T08:37:11.010000"],["2024-07-24T08:37:12.010000"],["2024-07-24T08:37:13.010000"],["2024-07-24T08:37:14.010000"],["2024-07-24T08:37:15.010000"],["2024-07-24T08:37:16.010000"],["2024-07-24T08:37:17.010000"],["2024-07-24T08:37:18.010000"],["2024-07-24T08:37:19.010000"],["2024-07-24T08:37:20.010000"],["2024-07-24T08:37:21.010000"],["2024-07-24T08:37:22.010000"],["2024-07-24T08:37:23.010000"],["2024-07-24T08:37:24.010000"],["2024-07-24T08:37:25.010000"],["2024-07-24T08:37:26.010000"],["2024-07-24T08:37:27.010000"],["2024-07-24T08:37:28.010000"],["2024-07-24T08:37:29.010000"],["2024-07-24T08:37:30.010000"],["2024-07-24T08:37:31.010000"],["2024-07-24T08:37:32.010000"],["2024-07-24T08:37:33.010000"],["2024-07-24T08:37:34.010000"],["2024-07-24T08:37:35.010000"],["2024-07-24T08:37:36.010000"],["2024-07-24T08:37:37.010000"],["2024-07-24T08:37:38.010000"],["2024-07-24T08:37:39.010000"],["2024-07-24T08:37:40.010000"],["2024-07-24T08:37:41.010000"],["2024-07-24T08:37:42.010000"],["2024-07-24T08:37:43.010000"],["2024-07-24T08:37:44.010000"],["2024-07-24T08:37:45.010000"],["2024-07-24T08:37:46.010000"],["2024-07-24T08:37:47.010000"],["2024-07-24T08:37:48.010000"],["2024-07-24T08:37:49.010000"],["2024-07-24T08:37:50.010000"],["2024-07-24T08:37:51.010000"],["2024-07-24T08:37:52.010000"],["2024-07-24T08:37:53.010000"],["2024-07-24T08:37:54.010000"],["2024-07-24T08:37:55.010000"],["2024-07-24T08:37:56.010000"],["2024-07-24T08:37:57.010000"],["2024-07-24T08:37:58.010000"],["2024-07-24T08:37:59.010000"],["2024-07-24T08:38:00.010000"],["2024-07-24T08:38:01.010000"],["2024-07-24T08:38:02.010000"],["2024-07-24T08:38:03.010000"],["2024-07-24T08:38:04.010000"],["2024-07-24T08:38:05.010000"],["2024-07-24T08:38:06.010000"],["2024-07-24T08:38:07.010000"],["2024-07-24T08:38:08.010000"],["2024-07-24T08:38:09.010000"],["2024-07-24T08:38:10.010000"],["2024-07-24T08:38:11.010000"],["2024-07-24T08:38:12.010000"],["2024-07-24T08:38:13.010000"],["2024-07-24T08:38:14.010000"],["2024-07-24T08:38:15.010000"],["2024-07-24T08:38:16.010000"],["2024-07-24T08:38:17.010000"],["2024-07-24T08:38:18.010000"],["2024-07-24T08:38:19.010000"],["2024-07-24T08:38:20.010000"],["2024-07-24T08:38:21.010000"],["2024-07-24T08:38:22.010000"],["2024-07-24T08:38:23.010000"],["2024-07-24T08:38:24.010000"],["2024-07-24T08:38:25.010000"],["2024-07-24T08:38:26.010000"],["2024-07-24T08:38:27.010000"],["2024-07-24T08:38:28.010000"],["2024-07-24T08:38:29.010000"],["2024-07-24T08:38:30.010000"],["2024-07-24T08:38:31.010000"],["2024-07-24T08:38:32.010000"],["2024-07-24T08:38:33.010000"],["2024-07-24T08:38:34.010000"],["2024-07-24T08:38:35.010000"],["2024-07-24T08:38:36.010000"],["2024-07-24T08:38:37.010000"],["2024-07-24T08:38:38.010000"],["2024-07-24T08:38:39.010000"],["2024-07-24T08:38:40.010000"],["2024-07-24T08:38:41.010000"],["2024-07-24T08:38:42.010000"],["2024-07-24T08:38:43.010000"],["2024-07-24T08:38:44.010000"],["2024-07-24T08:38:45.010000"],["2024-07-24T08:38:46.010000"],["2024-07-24T08:38:47.010000"],["2024-07-24T08:38:48.010000"],["2024-07-24T08:38:49.010000"],["2024-07-24T08:38:50.010000"],["2024-07-24T08:38:51.010000"],["2024-07-24T08:38:52.010000"],["2024-07-24T08:38:53.010000"],["2024-07-24T08:38:54.010000"],["2024-07-24T08:38:55.010000"],["2024-07-24T08:38:56.010000"],["2024-07-24T08:38:57.010000"],["2024-07-24T08:38:58.010000"],["2024-07-24T08:38:59.010000"],["2024-07-24T08:39:00.010000"],["2024-07-24T08:39:01.010000"],["2024-07-24T08:39:02.010000"],["2024-07-24T08:39:03.010000"],["2024-07-24T08:39:04.010000"],["2024-07-24T08:39:05.010000"],["2024-07-24T08:39:06.010000"],["2024-07-24T08:39:07.010000"],["2024-07-24T08:39:08.010000"],["2024-07-24T08:39:09.010000"],["2024-07-24T08:39:10.010000"],["2024-07-24T08:39:11.010000"],["2024-07-24T08:39:12.010000"],["2024-07-24T08:39:13.010000"],["2024-07-24T08:39:14.010000"],["2024-07-24T08:39:15.010000"],["2024-07-24T08:39:16.010000"],["2024-07-24T08:39:17.010000"],["2024-07-24T08:39:18.010000"],["2024-07-24T08:39:19.010000"],["2024-07-24T08:39:20.010000"],["2024-07-24T08:39:21.010000"],["2024-07-24T08:39:22.010000"],["2024-07-24T08:39:23.010000"],["2024-07-24T08:39:24.010000"],["2024-07-24T08:39:25.010000"],["2024-07-24T08:39:26.010000"],["2024-07-24T08:39:27.010000"],["2024-07-24T08:39:28.010000"],["2024-07-24T08:39:29.010000"],["2024-07-24T08:39:30.010000"],["2024-07-24T08:39:31.010000"],["2024-07-24T08:39:32.010000"],["2024-07-24T08:39:33.010000"],["2024-07-24T08:39:34.010000"],["2024-07-24T08:39:35.010000"],["2024-07-24T08:39:36.010000"],["2024-07-24T08:39:37.010000"],["2024-07-24T08:39:38.010000"],["2024-07-24T08:39:39.010000"],["2024-07-24T08:39:40.010000"],["2024-07-24T08:39:41.010000"],["2024-07-24T08:39:42.010000"],["2024-07-24T08:39:43.010000"],["2024-07-24T08:39:44.010000"],["2024-07-24T08:39:45.010000"],["2024-07-24T08:39:46.010000"],["2024-07-24T08:39:47.010000"],["2024-07-24T08:39:48.010000"],["2024-07-24T08:39:49.010000"],["2024-07-24T08:39:50.010000"],["2024-07-24T08:39:51.010000"],["2024-07-24T08:39:52.010000"],["2024-07-24T08:39:53.010000"],["2024-07-24T08:39:54.010000"],["2024-07-24T08:39:55.010000"],["2024-07-24T08:39:56.010000"],["2024-07-24T08:39:57.010000"],["2024-07-24T08:39:58.010000"],["2024-07-24T08:39:59.010000"],["2024-07-24T08:40:00.010000"],["2024-07-24T08:40:01.010000"],["2024-07-24T08:40:02.010000"],["2024-07-24T08:40:03.010000"],["2024-07-24T08:40:04.010000"],["2024-07-24T08:40:05.010000"],["2024-07-24T08:40:06.010000"],["2024-07-24T08:40:07.010000"],["2024-07-24T08:40:08.010000"],["2024-07-24T08:40:09.010000"],["2024-07-24T08:40:10.010000"],["2024-07-24T08:40:11.010000"],["2024-07-24T08:40:12.010000"],["2024-07-24T08:40:13.010000"],["2024-07-24T08:40:14.010000"],["2024-07-24T08:40:15.010000"],["2024-07-24T08:40:16.010000"],["2024-07-24T08:40:17.010000"],["2024-07-24T08:40:18.010000"],["2024-07-24T08:40:19.010000"],["2024-07-24T08:40:20.010000"],["2024-07-24T08:40:21.010000"],["2024-07-24T08:40:22.010000"],["2024-07-24T08:40:23.010000"],["2024-07-24T08:40:24.010000"],["2024-07-24T08:40:25.010000"],["2024-07-24T08:40:26.010000"],["2024-07-24T08:40:27.010000"],["2024-07-24T08:40:28.010000"],["2024-07-24T08:40:29.010000"],["2024-07-24T08:40:30.010000"],["2024-07-24T08:40:31.010000"],["2024-07-24T08:40:32.010000"],["2024-07-24T08:40:33.010000"],["2024-07-24T08:40:34.010000"],["2024-07-24T08:40:35.010000"],["2024-07-24T08:40:36.010000"],["2024-07-24T08:40:37.010000"],["2024-07-24T08:40:38.010000"],["2024-07-24T08:40:39.010000"],["2024-07-24T08:40:40.010000"],["2024-07-24T08:40:41.010000"],["2024-07-24T08:40:42.010000"],["2024-07-24T08:40:43.010000"],["2024-07-24T08:40:44.010000"],["2024-07-24T08:40:45.010000"],["2024-07-24T08:40:46.010000"],["2024-07-24T08:40:47.010000"],["2024-07-24T08:40:48.010000"],["2024-07-24T08:40:49.010000"],["2024-07-24T08:40:50.010000"],["2024-07-24T08:40:51.010000"],["2024-07-24T08:40:52.010000"],["2024-07-24T08:40:53.010000"],["2024-07-24T08:40:54.010000"],["2024-07-24T08:40:55.010000"],["2024-07-24T08:40:56.010000"],["2024-07-24T08:40:57.010000"],["2024-07-24T08:40:58.010000"],["2024-07-24T08:40:59.010000"],["2024-07-24T08:41:00.010000"],["2024-07-24T08:41:01.010000"],["2024-07-24T08:41:02.010000"],["2024-07-24T08:41:03.010000"],["2024-07-24T08:41:04.010000"],["2024-07-24T08:41:05.010000"],["2024-07-24T08:41:06.010000"],["2024-07-24T08:41:07.010000"],["2024-07-24T08:41:08.010000"],["2024-07-24T08:41:09.010000"],["2024-07-24T08:41:10.010000"],["2024-07-24T08:41:11.010000"],["2024-07-24T08:41:12.010000"],["2024-07-24T08:41:13.010000"],["2024-07-24T08:41:14.010000"],["2024-07-24T08:41:15.010000"],["2024-07-24T08:41:16.010000"],["2024-07-24T08:41:17.010000"],["2024-07-24T08:41:18.010000"],["2024-07-24T08:41:19.010000"],["2024-07-24T08:41:20.010000"],["2024-07-24T08:41:21.010000"],["2024-07-24T08:41:22.010000"],["2024-07-24T08:41:23.010000"],["2024-07-24T08:41:24.010000"],["2024-07-24T08:41:25.010000"],["2024-07-24T08:41:26.010000"],["2024-07-24T08:41:27.010000"],["2024-07-24T08:41:28.010000"],["2024-07-24T08:41:29.010000"],["2024-07-24T08:41:30.010000"],["2024-07-24T08:41:31.010000"],["2024-07-24T08:41:32.010000"],["2024-07-24T08:41:33.010000"],["2024-07-24T08:41:34.010000"],["2024-07-24T08:41:35.010000"],["2024-07-24T08:41:36.010000"],["2024-07-24T08:41:37.010000"],["2024-07-24T08:41:38.010000"],["2024-07-24T08:41:39.010000"],["2024-07-24T08:41:40.010000"],["2024-07-24T08:41:41.010000"],["2024-07-24T08:41:42.010000"],["2024-07-24T08:41:43.010000"],["2024-07-24T08:41:44.010000"],["2024-07-24T08:41:45.010000"],["2024-07-24T08:41:46.010000"],["2024-07-24T08:41:47.010000"],["2024-07-24T08:41:48.010000"],["2024-07-24T08:41:49.010000"],["2024-07-24T08:41:50.010000"],["2024-07-24T08:41:51.010000"],["2024-07-24T08:41:52.010000"],["2024-07-24T08:41:53.010000"],["2024-07-24T08:41:54.010000"],["2024-07-24T08:41:55.010000"],["2024-07-24T08:41:56.010000"],["2024-07-24T08:41:57.010000"],["2024-07-24T08:41:58.010000"],["2024-07-24T08:41:59.010000"],["2024-07-24T08:42:00.010000"],["2024-07-24T08:42:01.010000"],["2024-07-24T08:42:02.010000"],["2024-07-24T08:42:03.010000"],["2024-07-24T08:42:04.010000"],["2024-07-24T08:42:05.010000"],["2024-07-24T08:42:06.010000"],["2024-07-24T08:42:07.010000"],["2024-07-24T08:42:08.010000"],["2024-07-24T08:42:09.010000"],["2024-07-24T08:42:10.010000"],["2024-07-24T08:42:11.010000"],["2024-07-24T08:42:12.010000"],["2024-07-24T08:42:13.010000"],["2024-07-24T08:42:14.010000"],["2024-07-24T08:42:15.010000"],["2024-07-24T08:42:16.010000"],["2024-07-24T08:42:17.010000"],["2024-07-24T08:42:18.010000"],["2024-07-24T08:42:19.010000"],["2024-07-24T08:42:20.010000"],["2024-07-24T08:42:21.010000"],["2024-07-24T08:42:22.010000"],["2024-07-24T08:42:23.010000"],["2024-07-24T08:42:24.010000"],["2024-07-24T08:42:25.010000"],["2024-07-24T08:42:26.010000"],["2024-07-24T08:42:27.010000"],["2024-07-24T08:42:28.010000"],["2024-07-24T08:42:29.010000"],["2024-07-24T08:42:30.010000"],["2024-07-24T08:42:31.010000"],["2024-07-24T08:42:32.010000"],["2024-07-24T08:42:33.010000"],["2024-07-24T08:42:34.010000"],["2024-07-24T08:42:35.010000"],["2024-07-24T08:42:36.010000"],["2024-07-24T08:42:37.010000"],["2024-07-24T08:42:38.010000"],["2024-07-24T08:42:39.010000"],["2024-07-24T08:42:40.010000"],["2024-07-24T08:42:41.010000"],["2024-07-24T08:42:42.010000"],["2024-07-24T08:42:43.010000"],["2024-07-24T08:42:44.010000"],["2024-07-24T08:42:45.010000"],["2024-07-24T08:42:46.010000"],["2024-07-24T08:42:47.010000"],["2024-07-24T08:42:48.010000"],["2024-07-24T08:42:49.010000"],["2024-07-24T08:42:50.010000"],["2024-07-24T08:42:51.010000"],["2024-07-24T08:42:52.010000"],["2024-07-24T08:42:53.010000"],["2024-07-24T08:42:54.010000"],["2024-07-24T08:42:55.010000"],["2024-07-24T08:42:56.010000"],["2024-07-24T08:42:57.010000"],["2024-07-24T08:42:58.010000"],["2024-07-24T08:42:59.010000"],["2024-07-24T08:43:00.010000"],["2024-07-24T08:43:01.010000"],["2024-07-24T08:43:02.010000"],["2024-07-24T08:43:03.010000"],["2024-07-24T08:43:04.010000"],["2024-07-24T08:43:05.010000"],["2024-07-24T08:43:06.010000"],["2024-07-24T08:43:07.010000"],["2024-07-24T08:43:08.010000"],["2024-07-24T08:43:09.010000"],["2024-07-24T08:43:10.010000"],["2024-07-24T08:43:11.010000"],["2024-07-24T08:43:12.010000"],["2024-07-24T08:43:13.010000"],["2024-07-24T08:43:14.010000"],["2024-07-24T08:43:15.010000"],["2024-07-24T08:43:16.010000"],["2024-07-24T08:43:17.010000"],["2024-07-24T08:43:18.010000"],["2024-07-24T08:43:19.010000"],["2024-07-24T08:43:20.010000"],["2024-07-24T08:43:21.010000"],["2024-07-24T08:43:22.010000"],["2024-07-24T08:43:23.010000"],["2024-07-24T08:43:24.010000"],["2024-07-24T08:43:25.010000"],["2024-07-24T08:43:26.010000"],["2024-07-24T08:43:27.010000"],["2024-07-24T08:43:28.010000"],["2024-07-24T08:43:29.010000"],["2024-07-24T08:43:30.010000"],["2024-07-24T08:43:31.010000"],["2024-07-24T08:43:32.010000"],["2024-07-24T08:43:33.010000"],["2024-07-24T08:43:34.010000"],["2024-07-24T08:43:35.010000"],["2024-07-24T08:43:36.010000"],["2024-07-24T08:43:37.010000"],["2024-07-24T08:43:38.010000"],["2024-07-24T08:43:39.010000"],["2024-07-24T08:43:40.010000"],["2024-07-24T08:43:41.010000"],["2024-07-24T08:43:42.010000"],["2024-07-24T08:43:43.010000"],["2024-07-24T08:43:44.010000"],["2024-07-24T08:43:45.010000"],["2024-07-24T08:43:46.010000"],["2024-07-24T08:43:47.010000"],["2024-07-24T08:43:48.010000"],["2024-07-24T08:43:49.010000"],["2024-07-24T08:43:50.010000"],["2024-07-24T08:43:51.010000"],["2024-07-24T08:43:52.010000"],["2024-07-24T08:43:53.010000"],["2024-07-24T08:43:54.010000"],["2024-07-24T08:43:55.010000"],["2024-07-24T08:43:56.010000"],["2024-07-24T08:43:57.010000"],["2024-07-24T08:43:58.010000"],["2024-07-24T08:43:59.010000"],["2024-07-24T08:44:00.010000"],["2024-07-24T08:44:01.010000"],["2024-07-24T08:44:02.010000"],["2024-07-24T08:44:03.010000"],["2024-07-24T08:44:04.010000"],["2024-07-24T08:44:05.010000"],["2024-07-24T08:44:06.010000"],["2024-07-24T08:44:07.010000"],["2024-07-24T08:44:08.010000"],["2024-07-24T08:44:09.010000"],["2024-07-24T08:44:10.010000"],["2024-07-24T08:44:11.010000"],["2024-07-24T08:44:12.010000"],["2024-07-24T08:44:13.010000"],["2024-07-24T08:44:14.010000"],["2024-07-24T08:44:15.010000"],["2024-07-24T08:44:16.010000"],["2024-07-24T08:44:17.010000"],["2024-07-24T08:44:18.010000"],["2024-07-24T08:44:19.010000"],["2024-07-24T08:44:20.010000"],["2024-07-24T08:44:21.010000"],["2024-07-24T08:44:22.010000"],["2024-07-24T08:44:23.010000"],["2024-07-24T08:44:24.010000"],["2024-07-24T08:44:25.010000"],["2024-07-24T08:44:26.010000"],["2024-07-24T08:44:27.010000"],["2024-07-24T08:44:28.010000"],["2024-07-24T08:44:29.010000"],["2024-07-24T08:44:30.010000"],["2024-07-24T08:44:31.010000"],["2024-07-24T08:44:32.010000"],["2024-07-24T08:44:33.010000"],["2024-07-24T08:44:34.010000"],["2024-07-24T08:44:35.010000"],["2024-07-24T08:44:36.010000"],["2024-07-24T08:44:37.010000"],["2024-07-24T08:44:38.010000"],["2024-07-24T08:44:39.010000"],["2024-07-24T08:44:40.010000"],["2024-07-24T08:44:41.010000"],["2024-07-24T08:44:42.010000"],["2024-07-24T08:44:43.010000"],["2024-07-24T08:44:44.010000"],["2024-07-24T08:44:45.010000"],["2024-07-24T08:44:46.010000"],["2024-07-24T08:44:47.010000"],["2024-07-24T08:44:48.010000"],["2024-07-24T08:44:49.010000"],["2024-07-24T08:44:50.010000"],["2024-07-24T08:44:51.010000"],["2024-07-24T08:44:52.010000"],["2024-07-24T08:44:53.010000"],["2024-07-24T08:44:54.010000"],["2024-07-24T08:44:55.010000"],["2024-07-24T08:44:56.010000"],["2024-07-24T08:44:57.010000"],["2024-07-24T08:44:58.010000"],["2024-07-24T08:44:59.010000"],["2024-07-24T08:45:00.010000"],["2024-07-24T08:45:01.010000"],["2024-07-24T08:45:02.010000"],["2024-07-24T08:45:03.010000"],["2024-07-24T08:45:04.010000"],["2024-07-24T08:45:05.010000"],["2024-07-24T08:45:06.010000"],["2024-07-24T08:45:07.010000"],["2024-07-24T08:45:08.010000"],["2024-07-24T08:45:09.010000"],["2024-07-24T08:45:10.010000"],["2024-07-24T08:45:11.010000"],["2024-07-24T08:45:12.010000"],["2024-07-24T08:45:13.010000"],["2024-07-24T08:45:14.010000"],["2024-07-24T08:45:15.010000"],["2024-07-24T08:45:16.010000"],["2024-07-24T08:45:17.010000"],["2024-07-24T08:45:18.010000"],["2024-07-24T08:45:19.010000"],["2024-07-24T08:45:20.010000"],["2024-07-24T08:45:21.010000"],["2024-07-24T08:45:22.010000"],["2024-07-24T08:45:23.010000"],["2024-07-24T08:45:24.010000"],["2024-07-24T08:45:25.010000"],["2024-07-24T08:45:26.010000"],["2024-07-24T08:45:27.010000"],["2024-07-24T08:45:28.010000"],["2024-07-24T08:45:29.010000"],["2024-07-24T08:45:30.010000"],["2024-07-24T08:45:31.010000"],["2024-07-24T08:45:32.010000"],["2024-07-24T08:45:33.010000"],["2024-07-24T08:45:34.010000"],["2024-07-24T08:45:35.010000"],["2024-07-24T08:45:36.010000"],["2024-07-24T08:45:37.010000"],["2024-07-24T08:45:38.010000"],["2024-07-24T08:45:39.010000"],["2024-07-24T08:45:40.010000"],["2024-07-24T08:45:41.010000"],["2024-07-24T08:45:42.010000"],["2024-07-24T08:45:43.010000"],["2024-07-24T08:45:44.010000"],["2024-07-24T08:45:45.010000"],["2024-07-24T08:45:46.010000"],["2024-07-24T08:45:47.010000"],["2024-07-24T08:45:48.010000"],["2024-07-24T08:45:49.010000"],["2024-07-24T08:45:50.010000"],["2024-07-24T08:45:51.010000"],["2024-07-24T08:45:52.010000"],["2024-07-24T08:45:53.010000"],["2024-07-24T08:45:54.010000"],["2024-07-24T08:45:55.010000"],["2024-07-24T08:45:56.010000"],["2024-07-24T08:45:57.010000"],["2024-07-24T08:45:58.010000"],["2024-07-24T08:45:59.010000"],["2024-07-24T08:46:00.010000"],["2024-07-24T08:46:01.010000"],["2024-07-24T08:46:02.010000"],["2024-07-24T08:46:03.010000"],["2024-07-24T08:46:04.010000"],["2024-07-24T08:46:05.010000"],["2024-07-24T08:46:06.010000"],["2024-07-24T08:46:07.010000"],["2024-07-24T08:46:08.010000"],["2024-07-24T08:46:09.010000"],["2024-07-24T08:46:10.010000"],["2024-07-24T08:46:11.010000"],["2024-07-24T08:46:12.010000"],["2024-07-24T08:46:13.010000"],["2024-07-24T08:46:14.010000"],["2024-07-24T08:46:15.010000"],["2024-07-24T08:46:16.010000"],["2024-07-24T08:46:17.010000"],["2024-07-24T08:46:18.010000"],["2024-07-24T08:46:19.010000"],["2024-07-24T08:46:20.010000"],["2024-07-24T08:46:21.010000"],["2024-07-24T08:46:22.010000"],["2024-07-24T08:46:23.010000"],["2024-07-24T08:46:24.010000"],["2024-07-24T08:46:25.010000"],["2024-07-24T08:46:26.010000"],["2024-07-24T08:46:27.010000"],["2024-07-24T08:46:28.010000"],["2024-07-24T08:46:29.010000"],["2024-07-24T08:46:30.010000"],["2024-07-24T08:46:31.010000"],["2024-07-24T08:46:32.010000"],["2024-07-24T08:46:33.010000"],["2024-07-24T08:46:34.010000"],["2024-07-24T08:46:35.010000"],["2024-07-24T08:46:36.010000"],["2024-07-24T08:46:37.010000"],["2024-07-24T08:46:38.010000"],["2024-07-24T08:46:39.010000"],["2024-07-24T08:46:40.010000"],["2024-07-24T08:46:41.010000"],["2024-07-24T08:46:42.010000"],["2024-07-24T08:46:43.010000"],["2024-07-24T08:46:44.010000"],["2024-07-24T08:46:45.010000"],["2024-07-24T08:46:46.010000"],["2024-07-24T08:46:47.010000"],["2024-07-24T08:46:48.010000"],["2024-07-24T08:46:49.010000"],["2024-07-24T08:46:50.010000"],["2024-07-24T08:46:51.010000"],["2024-07-24T08:46:52.010000"],["2024-07-24T08:46:53.010000"],["2024-07-24T08:46:54.010000"],["2024-07-24T08:46:55.010000"],["2024-07-24T08:46:56.010000"],["2024-07-24T08:46:57.010000"],["2024-07-24T08:46:58.010000"],["2024-07-24T08:46:59.010000"],["2024-07-24T08:47:00.010000"],["2024-07-24T08:47:01.010000"],["2024-07-24T08:47:02.010000"],["2024-07-24T08:47:03.010000"],["2024-07-24T08:47:04.010000"],["2024-07-24T08:47:05.010000"],["2024-07-24T08:47:06.010000"],["2024-07-24T08:47:07.010000"],["2024-07-24T08:47:08.010000"],["2024-07-24T08:47:09.010000"],["2024-07-24T08:47:10.010000"],["2024-07-24T08:47:11.010000"],["2024-07-24T08:47:12.010000"],["2024-07-24T08:47:13.010000"],["2024-07-24T08:47:14.010000"],["2024-07-24T08:47:15.010000"],["2024-07-24T08:47:16.010000"],["2024-07-24T08:47:17.010000"],["2024-07-24T08:47:18.010000"],["2024-07-24T08:47:19.010000"],["2024-07-24T08:47:20.010000"],["2024-07-24T08:47:21.010000"],["2024-07-24T08:47:22.010000"],["2024-07-24T08:47:23.010000"],["2024-07-24T08:47:24.010000"],["2024-07-24T08:47:25.010000"],["2024-07-24T08:47:26.010000"],["2024-07-24T08:47:27.010000"],["2024-07-24T08:47:28.010000"],["2024-07-24T08:47:29.010000"],["2024-07-24T08:47:30.010000"],["2024-07-24T08:47:31.010000"],["2024-07-24T08:47:32.010000"],["2024-07-24T08:47:33.010000"],["2024-07-24T08:47:34.010000"],["2024-07-24T08:47:35.010000"],["2024-07-24T08:47:36.010000"],["2024-07-24T08:47:37.010000"],["2024-07-24T08:47:38.010000"],["2024-07-24T08:47:39.010000"],["2024-07-24T08:47:40.010000"],["2024-07-24T08:47:41.010000"],["2024-07-24T08:47:42.010000"],["2024-07-24T08:47:43.010000"],["2024-07-24T08:47:44.010000"],["2024-07-24T08:47:45.010000"],["2024-07-24T08:47:46.010000"],["2024-07-24T08:47:47.010000"],["2024-07-24T08:47:48.010000"],["2024-07-24T08:47:49.010000"],["2024-07-24T08:47:50.010000"],["2024-07-24T08:47:51.010000"],["2024-07-24T08:47:52.010000"],["2024-07-24T08:47:53.010000"],["2024-07-24T08:47:54.010000"],["2024-07-24T08:47:55.010000"],["2024-07-24T08:47:56.010000"],["2024-07-24T08:47:57.010000"],["2024-07-24T08:47:58.010000"],["2024-07-24T08:47:59.010000"],["2024-07-24T08:48:00.010000"],["2024-07-24T08:48:01.010000"],["2024-07-24T08:48:02.010000"],["2024-07-24T08:48:03.010000"],["2024-07-24T08:48:04.010000"],["2024-07-24T08:48:05.010000"],["2024-07-24T08:48:06.010000"],["2024-07-24T08:48:07.010000"],["2024-07-24T08:48:08.010000"],["2024-07-24T08:48:09.010000"],["2024-07-24T08:48:10.010000"],["2024-07-24T08:48:11.010000"],["2024-07-24T08:48:12.010000"],["2024-07-24T08:48:13.010000"],["2024-07-24T08:48:14.010000"],["2024-07-24T08:48:15.010000"],["2024-07-24T08:48:16.010000"],["2024-07-24T08:48:17.010000"],["2024-07-24T08:48:18.010000"],["2024-07-24T08:48:19.010000"],["2024-07-24T08:48:20.010000"],["2024-07-24T08:48:21.010000"],["2024-07-24T08:48:22.010000"],["2024-07-24T08:48:23.010000"],["2024-07-24T08:48:24.010000"],["2024-07-24T08:48:25.010000"],["2024-07-24T08:48:26.010000"],["2024-07-24T08:48:27.010000"],["2024-07-24T08:48:28.010000"],["2024-07-24T08:48:29.010000"],["2024-07-24T08:48:30.010000"],["2024-07-24T08:48:31.010000"],["2024-07-24T08:48:32.010000"],["2024-07-24T08:48:33.010000"],["2024-07-24T08:48:34.010000"],["2024-07-24T08:48:35.010000"],["2024-07-24T08:48:36.010000"],["2024-07-24T08:48:37.010000"],["2024-07-24T08:48:38.010000"],["2024-07-24T08:48:39.010000"],["2024-07-24T08:48:40.010000"],["2024-07-24T08:48:41.010000"],["2024-07-24T08:48:42.010000"],["2024-07-24T08:48:43.010000"],["2024-07-24T08:48:44.010000"],["2024-07-24T08:48:45.010000"],["2024-07-24T08:48:46.010000"],["2024-07-24T08:48:47.010000"],["2024-07-24T08:48:48.010000"],["2024-07-24T08:48:49.010000"],["2024-07-24T08:48:50.010000"],["2024-07-24T08:48:51.010000"],["2024-07-24T08:48:52.010000"],["2024-07-24T08:48:53.010000"],["2024-07-24T08:48:54.010000"],["2024-07-24T08:48:55.010000"],["2024-07-24T08:48:56.010000"],["2024-07-24T08:48:57.010000"],["2024-07-24T08:48:58.010000"],["2024-07-24T08:48:59.010000"],["2024-07-24T08:49:00.010000"],["2024-07-24T08:49:01.010000"],["2024-07-24T08:49:02.010000"],["2024-07-24T08:49:03.010000"],["2024-07-24T08:49:04.010000"],["2024-07-24T08:49:05.010000"],["2024-07-24T08:49:06.010000"],["2024-07-24T08:49:07.010000"],["2024-07-24T08:49:08.010000"],["2024-07-24T08:49:09.010000"],["2024-07-24T08:49:10.010000"],["2024-07-24T08:49:11.010000"],["2024-07-24T08:49:12.010000"],["2024-07-24T08:49:13.010000"],["2024-07-24T08:49:14.010000"],["2024-07-24T08:49:15.010000"],["2024-07-24T08:49:16.010000"],["2024-07-24T08:49:17.010000"],["2024-07-24T08:49:18.010000"],["2024-07-24T08:49:19.010000"],["2024-07-24T08:49:20.010000"],["2024-07-24T08:49:21.010000"],["2024-07-24T08:49:22.010000"],["2024-07-24T08:49:23.010000"],["2024-07-24T08:49:24.010000"],["2024-07-24T08:49:25.010000"],["2024-07-24T08:49:26.010000"],["2024-07-24T08:49:27.010000"],["2024-07-24T08:49:28.010000"],["2024-07-24T08:49:29.010000"],["2024-07-24T08:49:30.010000"],["2024-07-24T08:49:31.010000"],["2024-07-24T08:49:32.010000"],["2024-07-24T08:49:33.010000"],["2024-07-24T08:49:34.010000"],["2024-07-24T08:49:35.010000"],["2024-07-24T08:49:36.010000"],["2024-07-24T08:49:37.010000"],["2024-07-24T08:49:38.010000"],["2024-07-24T08:49:39.010000"],["2024-07-24T08:49:40.010000"],["2024-07-24T08:49:41.010000"],["2024-07-24T08:49:42.010000"],["2024-07-24T08:49:43.010000"],["2024-07-24T08:49:44.010000"],["2024-07-24T08:49:45.010000"],["2024-07-24T08:49:46.010000"],["2024-07-24T08:49:47.010000"],["2024-07-24T08:49:48.010000"],["2024-07-24T08:49:49.010000"],["2024-07-24T08:49:50.010000"],["2024-07-24T08:49:51.010000"],["2024-07-24T08:49:52.010000"],["2024-07-24T08:49:53.010000"],["2024-07-24T08:49:54.010000"],["2024-07-24T08:49:55.010000"],["2024-07-24T08:49:56.010000"],["2024-07-24T08:49:57.010000"],["2024-07-24T08:49:58.010000"],["2024-07-24T08:49:59.010000"],["2024-07-24T08:50:00.010000"],["2024-07-24T08:50:01.010000"],["2024-07-24T08:50:02.010000"],["2024-07-24T08:50:03.010000"],["2024-07-24T08:50:04.010000"],["2024-07-24T08:50:05.010000"],["2024-07-24T08:50:06.010000"],["2024-07-24T08:50:07.010000"],["2024-07-24T08:50:08.010000"],["2024-07-24T08:50:09.010000"],["2024-07-24T08:50:10.010000"],["2024-07-24T08:50:11.010000"],["2024-07-24T08:50:12.010000"],["2024-07-24T08:50:13.010000"],["2024-07-24T08:50:14.010000"],["2024-07-24T08:50:15.010000"],["2024-07-24T08:50:16.010000"],["2024-07-24T08:50:17.010000"],["2024-07-24T08:50:18.010000"],["2024-07-24T08:50:19.010000"],["2024-07-24T08:50:20.010000"],["2024-07-24T08:50:21.010000"],["2024-07-24T08:50:22.010000"],["2024-07-24T08:50:23.010000"],["2024-07-24T08:50:24.010000"],["2024-07-24T08:50:25.010000"],["2024-07-24T08:50:26.010000"],["2024-07-24T08:50:27.010000"],["2024-07-24T08:50:28.010000"],["2024-07-24T08:50:29.010000"],["2024-07-24T08:50:30.010000"],["2024-07-24T08:50:31.010000"],["2024-07-24T08:50:32.010000"],["2024-07-24T08:50:33.010000"],["2024-07-24T08:50:34.010000"],["2024-07-24T08:50:35.010000"],["2024-07-24T08:50:36.010000"],["2024-07-24T08:50:37.010000"],["2024-07-24T08:50:38.010000"],["2024-07-24T08:50:39.010000"],["2024-07-24T08:50:40.010000"],["2024-07-24T08:50:41.010000"],["2024-07-24T08:50:42.010000"],["2024-07-24T08:50:43.010000"],["2024-07-24T08:50:44.010000"],["2024-07-24T08:50:45.010000"],["2024-07-24T08:50:46.010000"],["2024-07-24T08:50:47.010000"],["2024-07-24T08:50:48.010000"],["2024-07-24T08:50:49.010000"],["2024-07-24T08:50:50.010000"],["2024-07-24T08:50:51.010000"],["2024-07-24T08:50:52.010000"],["2024-07-24T08:50:53.010000"],["2024-07-24T08:50:54.010000"],["2024-07-24T08:50:55.010000"],["2024-07-24T08:50:56.010000"],["2024-07-24T08:50:57.010000"],["2024-07-24T08:50:58.010000"],["2024-07-24T08:50:59.010000"],["2024-07-24T08:51:00.010000"],["2024-07-24T08:51:01.010000"],["2024-07-24T08:51:02.010000"],["2024-07-24T08:51:03.010000"],["2024-07-24T08:51:04.010000"],["2024-07-24T08:51:05.010000"],["2024-07-24T08:51:06.010000"],["2024-07-24T08:51:07.010000"],["2024-07-24T08:51:08.010000"],["2024-07-24T08:51:09.010000"],["2024-07-24T08:51:10.010000"],["2024-07-24T08:51:11.010000"],["2024-07-24T08:51:12.010000"],["2024-07-24T08:51:13.010000"],["2024-07-24T08:51:14.010000"],["2024-07-24T08:51:15.010000"],["2024-07-24T08:51:16.010000"],["2024-07-24T08:51:17.010000"],["2024-07-24T08:51:18.010000"],["2024-07-24T08:51:19.010000"],["2024-07-24T08:51:20.010000"],["2024-07-24T08:51:21.010000"],["2024-07-24T08:51:22.010000"],["2024-07-24T08:51:23.010000"],["2024-07-24T08:51:24.010000"],["2024-07-24T08:51:25.010000"],["2024-07-24T08:51:26.010000"],["2024-07-24T08:51:27.010000"],["2024-07-24T08:51:28.010000"],["2024-07-24T08:51:29.010000"],["2024-07-24T08:51:30.010000"],["2024-07-24T08:51:31.010000"],["2024-07-24T08:51:32.010000"],["2024-07-24T08:51:33.010000"],["2024-07-24T08:51:34.010000"],["2024-07-24T08:51:35.010000"],["2024-07-24T08:51:36.010000"],["2024-07-24T08:51:37.010000"],["2024-07-24T08:51:38.010000"],["2024-07-24T08:51:39.010000"],["2024-07-24T08:51:40.010000"],["2024-07-24T08:51:41.010000"],["2024-07-24T08:51:42.010000"],["2024-07-24T08:51:43.010000"],["2024-07-24T08:51:44.010000"],["2024-07-24T08:51:45.010000"],["2024-07-24T08:51:46.010000"],["2024-07-24T08:51:47.010000"],["2024-07-24T08:51:48.010000"],["2024-07-24T08:51:49.010000"],["2024-07-24T08:51:50.010000"],["2024-07-24T08:51:51.010000"],["2024-07-24T08:51:52.010000"],["2024-07-24T08:51:53.010000"],["2024-07-24T08:51:54.010000"],["2024-07-24T08:51:55.010000"],["2024-07-24T08:51:56.010000"],["2024-07-24T08:51:57.010000"],["2024-07-24T08:51:58.010000"],["2024-07-24T08:51:59.010000"],["2024-07-24T08:52:00.010000"],["2024-07-24T08:52:01.010000"],["2024-07-24T08:52:02.010000"],["2024-07-24T08:52:03.010000"],["2024-07-24T08:52:04.010000"],["2024-07-24T08:52:05.010000"],["2024-07-24T08:52:06.010000"],["2024-07-24T08:52:07.010000"],["2024-07-24T08:52:08.010000"],["2024-07-24T08:52:09.010000"],["2024-07-24T08:52:10.010000"],["2024-07-24T08:52:11.010000"],["2024-07-24T08:52:12.010000"],["2024-07-24T08:52:13.010000"],["2024-07-24T08:52:14.010000"],["2024-07-24T08:52:15.010000"],["2024-07-24T08:52:16.010000"],["2024-07-24T08:52:17.010000"],["2024-07-24T08:52:18.010000"],["2024-07-24T08:52:19.010000"],["2024-07-24T08:52:20.010000"],["2024-07-24T08:52:21.010000"],["2024-07-24T08:52:22.010000"],["2024-07-24T08:52:23.010000"],["2024-07-24T08:52:24.010000"],["2024-07-24T08:52:25.010000"],["2024-07-24T08:52:26.010000"],["2024-07-24T08:52:27.010000"],["2024-07-24T08:52:28.010000"],["2024-07-24T08:52:29.010000"],["2024-07-24T08:52:30.010000"],["2024-07-24T08:52:31.010000"],["2024-07-24T08:52:32.010000"],["2024-07-24T08:52:33.010000"],["2024-07-24T08:52:34.010000"],["2024-07-24T08:52:35.010000"],["2024-07-24T08:52:36.010000"],["2024-07-24T08:52:37.010000"],["2024-07-24T08:52:38.010000"],["2024-07-24T08:52:39.010000"],["2024-07-24T08:52:40.010000"],["2024-07-24T08:52:41.010000"],["2024-07-24T08:52:42.010000"],["2024-07-24T08:52:43.010000"],["2024-07-24T08:52:44.010000"],["2024-07-24T08:52:45.010000"],["2024-07-24T08:52:46.010000"],["2024-07-24T08:52:47.010000"],["2024-07-24T08:52:48.010000"],["2024-07-24T08:52:49.010000"],["2024-07-24T08:52:50.010000"],["2024-07-24T08:52:51.010000"],["2024-07-24T08:52:52.010000"],["2024-07-24T08:52:53.010000"],["2024-07-24T08:52:54.010000"],["2024-07-24T08:52:55.010000"],["2024-07-24T08:52:56.010000"],["2024-07-24T08:52:57.010000"],["2024-07-24T08:52:58.010000"],["2024-07-24T08:52:59.010000"],["2024-07-24T08:53:00.010000"],["2024-07-24T08:53:01.010000"],["2024-07-24T08:53:02.010000"],["2024-07-24T08:53:03.010000"],["2024-07-24T08:53:04.010000"],["2024-07-24T08:53:05.010000"],["2024-07-24T08:53:06.010000"],["2024-07-24T08:53:07.010000"],["2024-07-24T08:53:08.010000"],["2024-07-24T08:53:09.010000"],["2024-07-24T08:53:10.010000"],["2024-07-24T08:53:11.010000"],["2024-07-24T08:53:12.010000"],["2024-07-24T08:53:13.010000"],["2024-07-24T08:53:14.010000"],["2024-07-24T08:53:15.010000"],["2024-07-24T08:53:16.010000"],["2024-07-24T08:53:17.010000"],["2024-07-24T08:53:18.010000"],["2024-07-24T08:53:19.010000"],["2024-07-24T08:53:20.010000"],["2024-07-24T08:53:21.010000"],["2024-07-24T08:53:22.010000"],["2024-07-24T08:53:23.010000"],["2024-07-24T08:53:24.010000"],["2024-07-24T08:53:25.010000"],["2024-07-24T08:53:26.010000"],["2024-07-24T08:53:27.010000"],["2024-07-24T08:53:28.010000"],["2024-07-24T08:53:29.010000"],["2024-07-24T08:53:30.010000"],["2024-07-24T08:53:31.010000"],["2024-07-24T08:53:32.010000"],["2024-07-24T08:53:33.010000"],["2024-07-24T08:53:34.010000"],["2024-07-24T08:53:35.010000"],["2024-07-24T08:53:36.010000"],["2024-07-24T08:53:37.010000"],["2024-07-24T08:53:38.010000"],["2024-07-24T08:53:39.010000"],["2024-07-24T08:53:40.010000"],["2024-07-24T08:53:41.010000"],["2024-07-24T08:53:42.010000"],["2024-07-24T08:53:43.010000"],["2024-07-24T08:53:44.010000"],["2024-07-24T08:53:45.010000"],["2024-07-24T08:53:46.010000"],["2024-07-24T08:53:47.010000"],["2024-07-24T08:53:48.010000"],["2024-07-24T08:53:49.010000"],["2024-07-24T08:53:50.010000"],["2024-07-24T08:53:51.010000"],["2024-07-24T08:53:52.010000"],["2024-07-24T08:53:53.010000"],["2024-07-24T08:53:54.010000"],["2024-07-24T08:53:55.010000"],["2024-07-24T08:53:56.010000"],["2024-07-24T08:53:57.010000"],["2024-07-24T08:53:58.010000"],["2024-07-24T08:53:59.010000"],["2024-07-24T08:54:00.010000"],["2024-07-24T08:54:01.010000"],["2024-07-24T08:54:02.010000"],["2024-07-24T08:54:03.010000"],["2024-07-24T08:54:04.010000"],["2024-07-24T08:54:05.010000"],["2024-07-24T08:54:06.010000"],["2024-07-24T08:54:07.010000"],["2024-07-24T08:54:08.010000"],["2024-07-24T08:54:09.010000"],["2024-07-24T08:54:10.010000"],["2024-07-24T08:54:11.010000"],["2024-07-24T08:54:12.010000"],["2024-07-24T08:54:13.010000"],["2024-07-24T08:54:14.010000"],["2024-07-24T08:54:15.010000"],["2024-07-24T08:54:16.010000"],["2024-07-24T08:54:17.010000"],["2024-07-24T08:54:18.010000"],["2024-07-24T08:54:19.010000"],["2024-07-24T08:54:20.010000"],["2024-07-24T08:54:21.010000"],["2024-07-24T08:54:22.010000"],["2024-07-24T08:54:23.010000"],["2024-07-24T08:54:24.010000"],["2024-07-24T08:54:25.010000"],["2024-07-24T08:54:26.010000"],["2024-07-24T08:54:27.010000"],["2024-07-24T08:54:28.010000"],["2024-07-24T08:54:29.010000"],["2024-07-24T08:54:30.010000"],["2024-07-24T08:54:31.010000"],["2024-07-24T08:54:32.010000"],["2024-07-24T08:54:33.010000"],["2024-07-24T08:54:34.010000"],["2024-07-24T08:54:35.010000"],["2024-07-24T08:54:36.010000"],["2024-07-24T08:54:37.010000"],["2024-07-24T08:54:38.010000"],["2024-07-24T08:54:39.010000"],["2024-07-24T08:54:40.010000"],["2024-07-24T08:54:41.010000"],["2024-07-24T08:54:42.010000"],["2024-07-24T08:54:43.010000"],["2024-07-24T08:54:44.010000"],["2024-07-24T08:54:45.010000"],["2024-07-24T08:54:46.010000"],["2024-07-24T08:54:47.010000"],["2024-07-24T08:54:48.010000"],["2024-07-24T08:54:49.010000"],["2024-07-24T08:54:50.010000"],["2024-07-24T08:54:51.010000"],["2024-07-24T08:54:52.010000"],["2024-07-24T08:54:53.010000"],["2024-07-24T08:54:54.010000"],["2024-07-24T08:54:55.010000"],["2024-07-24T08:54:56.010000"],["2024-07-24T08:54:57.010000"],["2024-07-24T08:54:58.010000"],["2024-07-24T08:54:59.010000"],["2024-07-24T08:55:00.010000"],["2024-07-24T08:55:01.010000"],["2024-07-24T08:55:02.010000"],["2024-07-24T08:55:03.010000"],["2024-07-24T08:55:04.010000"],["2024-07-24T08:55:05.010000"],["2024-07-24T08:55:06.010000"],["2024-07-24T08:55:07.010000"],["2024-07-24T08:55:08.010000"],["2024-07-24T08:55:09.010000"],["2024-07-24T08:55:10.010000"],["2024-07-24T08:55:11.010000"],["2024-07-24T08:55:12.010000"],["2024-07-24T08:55:13.010000"],["2024-07-24T08:55:14.010000"],["2024-07-24T08:55:15.010000"],["2024-07-24T08:55:16.010000"],["2024-07-24T08:55:17.010000"],["2024-07-24T08:55:18.010000"],["2024-07-24T08:55:19.010000"],["2024-07-24T08:55:20.010000"],["2024-07-24T08:55:21.010000"],["2024-07-24T08:55:22.010000"],["2024-07-24T08:55:23.010000"],["2024-07-24T08:55:24.010000"],["2024-07-24T08:55:25.010000"],["2024-07-24T08:55:26.010000"],["2024-07-24T08:55:27.010000"],["2024-07-24T08:55:28.010000"],["2024-07-24T08:55:29.010000"],["2024-07-24T08:55:30.010000"],["2024-07-24T08:55:31.010000"],["2024-07-24T08:55:32.010000"],["2024-07-24T08:55:33.010000"],["2024-07-24T08:55:34.010000"],["2024-07-24T08:55:35.010000"],["2024-07-24T08:55:36.010000"],["2024-07-24T08:55:37.010000"],["2024-07-24T08:55:38.010000"],["2024-07-24T08:55:39.010000"],["2024-07-24T08:55:40.010000"],["2024-07-24T08:55:41.010000"],["2024-07-24T08:55:42.010000"],["2024-07-24T08:55:43.010000"],["2024-07-24T08:55:44.010000"],["2024-07-24T08:55:45.010000"],["2024-07-24T08:55:46.010000"],["2024-07-24T08:55:47.010000"],["2024-07-24T08:55:48.010000"],["2024-07-24T08:55:49.010000"],["2024-07-24T08:55:50.010000"],["2024-07-24T08:55:51.010000"],["2024-07-24T08:55:52.010000"],["2024-07-24T08:55:53.010000"],["2024-07-24T08:55:54.010000"],["2024-07-24T08:55:55.010000"],["2024-07-24T08:55:56.010000"],["2024-07-24T08:55:57.010000"],["2024-07-24T08:55:58.010000"],["2024-07-24T08:55:59.010000"],["2024-07-24T08:56:00.010000"],["2024-07-24T08:56:01.010000"],["2024-07-24T08:56:02.010000"],["2024-07-24T08:56:03.010000"],["2024-07-24T08:56:04.010000"],["2024-07-24T08:56:05.010000"],["2024-07-24T08:56:06.010000"],["2024-07-24T08:56:07.010000"],["2024-07-24T08:56:08.010000"],["2024-07-24T08:56:09.010000"],["2024-07-24T08:56:10.010000"],["2024-07-24T08:56:11.010000"],["2024-07-24T08:56:12.010000"],["2024-07-24T08:56:13.010000"],["2024-07-24T08:56:14.010000"],["2024-07-24T08:56:15.010000"],["2024-07-24T08:56:16.010000"],["2024-07-24T08:56:17.010000"],["2024-07-24T08:56:18.010000"],["2024-07-24T08:56:19.010000"],["2024-07-24T08:56:20.010000"],["2024-07-24T08:56:21.010000"],["2024-07-24T08:56:22.010000"],["2024-07-24T08:56:23.010000"],["2024-07-24T08:56:24.010000"],["2024-07-24T08:56:25.010000"],["2024-07-24T08:56:26.010000"],["2024-07-24T08:56:27.010000"],["2024-07-24T08:56:28.010000"],["2024-07-24T08:56:29.010000"],["2024-07-24T08:56:30.010000"],["2024-07-24T08:56:31.010000"],["2024-07-24T08:56:32.010000"],["2024-07-24T08:56:33.010000"],["2024-07-24T08:56:34.010000"],["2024-07-24T08:56:35.010000"],["2024-07-24T08:56:36.010000"],["2024-07-24T08:56:37.010000"],["2024-07-24T08:56:38.010000"],["2024-07-24T08:56:39.010000"],["2024-07-24T08:56:40.010000"],["2024-07-24T08:56:41.010000"],["2024-07-24T08:56:42.010000"],["2024-07-24T08:56:43.010000"],["2024-07-24T08:56:44.010000"],["2024-07-24T08:56:45.010000"],["2024-07-24T08:56:46.010000"],["2024-07-24T08:56:47.010000"],["2024-07-24T08:56:48.010000"],["2024-07-24T08:56:49.010000"],["2024-07-24T08:56:50.010000"],["2024-07-24T08:56:51.010000"],["2024-07-24T08:56:52.010000"],["2024-07-24T08:56:53.010000"],["2024-07-24T08:56:54.010000"],["2024-07-24T08:56:55.010000"],["2024-07-24T08:56:56.010000"],["2024-07-24T08:56:57.010000"],["2024-07-24T08:56:58.010000"],["2024-07-24T08:56:59.010000"],["2024-07-24T08:57:00.010000"],["2024-07-24T08:57:01.010000"],["2024-07-24T08:57:02.010000"],["2024-07-24T08:57:03.010000"],["2024-07-24T08:57:04.010000"],["2024-07-24T08:57:05.010000"],["2024-07-24T08:57:06.010000"],["2024-07-24T08:57:07.010000"],["2024-07-24T08:57:08.010000"],["2024-07-24T08:57:09.010000"],["2024-07-24T08:57:10.010000"],["2024-07-24T08:57:11.010000"],["2024-07-24T08:57:12.010000"],["2024-07-24T08:57:13.010000"],["2024-07-24T08:57:14.010000"],["2024-07-24T08:57:15.010000"],["2024-07-24T08:57:16.010000"],["2024-07-24T08:57:17.010000"],["2024-07-24T08:57:18.010000"],["2024-07-24T08:57:19.010000"],["2024-07-24T08:57:20.010000"],["2024-07-24T08:57:21.010000"],["2024-07-24T08:57:22.010000"],["2024-07-24T08:57:23.010000"],["2024-07-24T08:57:24.010000"],["2024-07-24T08:57:25.010000"],["2024-07-24T08:57:26.010000"],["2024-07-24T08:57:27.010000"],["2024-07-24T08:57:28.010000"],["2024-07-24T08:57:29.010000"],["2024-07-24T08:57:30.010000"],["2024-07-24T08:57:31.010000"],["2024-07-24T08:57:32.010000"],["2024-07-24T08:57:33.010000"],["2024-07-24T08:57:34.010000"],["2024-07-24T08:57:35.010000"],["2024-07-24T08:57:36.010000"],["2024-07-24T08:57:37.010000"],["2024-07-24T08:57:38.010000"],["2024-07-24T08:57:39.010000"],["2024-07-24T08:57:40.010000"],["2024-07-24T08:57:41.010000"],["2024-07-24T08:57:42.010000"],["2024-07-24T08:57:43.010000"],["2024-07-24T08:57:44.010000"],["2024-07-24T08:57:45.010000"],["2024-07-24T08:57:46.010000"],["2024-07-24T08:57:47.010000"],["2024-07-24T08:57:48.010000"],["2024-07-24T08:57:49.010000"],["2024-07-24T08:57:50.010000"],["2024-07-24T08:57:51.010000"],["2024-07-24T08:57:52.010000"],["2024-07-24T08:57:53.010000"],["2024-07-24T08:57:54.010000"],["2024-07-24T08:57:55.010000"],["2024-07-24T08:57:56.010000"],["2024-07-24T08:57:57.010000"],["2024-07-24T08:57:58.010000"],["2024-07-24T08:57:59.010000"],["2024-07-24T08:58:00.010000"],["2024-07-24T08:58:01.010000"],["2024-07-24T08:58:02.010000"],["2024-07-24T08:58:03.010000"],["2024-07-24T08:58:04.010000"],["2024-07-24T08:58:05.010000"],["2024-07-24T08:58:06.010000"],["2024-07-24T08:58:07.010000"],["2024-07-24T08:58:08.010000"],["2024-07-24T08:58:09.010000"],["2024-07-24T08:58:10.010000"],["2024-07-24T08:58:11.010000"],["2024-07-24T08:58:12.010000"],["2024-07-24T08:58:13.010000"],["2024-07-24T08:58:14.010000"],["2024-07-24T08:58:15.010000"],["2024-07-24T08:58:16.010000"],["2024-07-24T08:58:17.010000"],["2024-07-24T08:58:18.010000"],["2024-07-24T08:58:19.010000"],["2024-07-24T08:58:20.010000"],["2024-07-24T08:58:21.010000"],["2024-07-24T08:58:22.010000"],["2024-07-24T08:58:23.010000"],["2024-07-24T08:58:24.010000"],["2024-07-24T08:58:25.010000"],["2024-07-24T08:58:26.010000"],["2024-07-24T08:58:27.010000"],["2024-07-24T08:58:28.010000"],["2024-07-24T08:58:29.010000"],["2024-07-24T08:58:30.010000"],["2024-07-24T08:58:31.010000"],["2024-07-24T08:58:32.010000"],["2024-07-24T08:58:33.010000"],["2024-07-24T08:58:34.010000"],["2024-07-24T08:58:35.010000"],["2024-07-24T08:58:36.010000"],["2024-07-24T08:58:37.010000"],["2024-07-24T08:58:38.010000"],["2024-07-24T08:58:39.010000"],["2024-07-24T08:58:40.010000"],["2024-07-24T08:58:41.010000"],["2024-07-24T08:58:42.010000"],["2024-07-24T08:58:43.010000"],["2024-07-24T08:58:44.010000"],["2024-07-24T08:58:45.010000"],["2024-07-24T08:58:46.010000"],["2024-07-24T08:58:47.010000"],["2024-07-24T08:58:48.010000"],["2024-07-24T08:58:49.010000"],["2024-07-24T08:58:50.010000"],["2024-07-24T08:58:51.010000"],["2024-07-24T08:58:52.010000"],["2024-07-24T08:58:53.010000"],["2024-07-24T08:58:54.010000"],["2024-07-24T08:58:55.010000"],["2024-07-24T08:58:56.010000"],["2024-07-24T08:58:57.010000"],["2024-07-24T08:58:58.010000"],["2024-07-24T08:58:59.010000"],["2024-07-24T08:59:00.010000"],["2024-07-24T08:59:01.010000"],["2024-07-24T08:59:02.010000"],["2024-07-24T08:59:03.010000"],["2024-07-24T08:59:04.010000"],["2024-07-24T08:59:05.010000"],["2024-07-24T08:59:06.010000"],["2024-07-24T08:59:07.010000"],["2024-07-24T08:59:08.010000"],["2024-07-24T08:59:09.010000"],["2024-07-24T08:59:10.010000"],["2024-07-24T08:59:11.010000"],["2024-07-24T08:59:12.010000"],["2024-07-24T08:59:13.010000"],["2024-07-24T08:59:14.010000"],["2024-07-24T08:59:15.010000"],["2024-07-24T08:59:16.010000"],["2024-07-24T08:59:17.010000"],["2024-07-24T08:59:18.010000"],["2024-07-24T08:59:19.010000"],["2024-07-24T08:59:20.010000"],["2024-07-24T08:59:21.010000"],["2024-07-24T08:59:22.010000"],["2024-07-24T08:59:23.010000"],["2024-07-24T08:59:24.010000"],["2024-07-24T08:59:25.010000"],["2024-07-24T08:59:26.010000"],["2024-07-24T08:59:27.010000"],["2024-07-24T08:59:28.010000"],["2024-07-24T08:59:29.010000"],["2024-07-24T08:59:30.010000"],["2024-07-24T08:59:31.010000"],["2024-07-24T08:59:32.010000"],["2024-07-24T08:59:33.010000"],["2024-07-24T08:59:34.010000"],["2024-07-24T08:59:35.010000"],["2024-07-24T08:59:36.010000"],["2024-07-24T08:59:37.010000"],["2024-07-24T08:59:38.010000"],["2024-07-24T08:59:39.010000"],["2024-07-24T08:59:40.010000"],["2024-07-24T08:59:41.010000"],["2024-07-24T08:59:42.010000"],["2024-07-24T08:59:43.010000"],["2024-07-24T08:59:44.010000"],["2024-07-24T08:59:45.010000"],["2024-07-24T08:59:46.010000"],["2024-07-24T08:59:47.010000"],["2024-07-24T08:59:48.010000"],["2024-07-24T08:59:49.010000"],["2024-07-24T08:59:50.010000"],["2024-07-24T08:59:51.010000"],["2024-07-24T08:59:52.010000"],["2024-07-24T08:59:53.010000"],["2024-07-24T08:59:54.010000"],["2024-07-24T08:59:55.010000"],["2024-07-24T08:59:56.010000"],["2024-07-24T08:59:57.010000"],["2024-07-24T08:59:58.010000"],["2024-07-24T08:59:59.010000"],["2024-07-24T09:00:00.010000"],["2024-07-24T09:00:01.010000"],["2024-07-24T09:00:02.010000"],["2024-07-24T09:00:03.010000"],["2024-07-24T09:00:04.010000"],["2024-07-24T09:00:05.010000"],["2024-07-24T09:00:06.010000"],["2024-07-24T09:00:07.010000"],["2024-07-24T09:00:08.010000"],["2024-07-24T09:00:09.010000"],["2024-07-24T09:00:10.010000"],["2024-07-24T09:00:11.010000"],["2024-07-24T09:00:12.010000"],["2024-07-24T09:00:13.010000"],["2024-07-24T09:00:14.010000"],["2024-07-24T09:00:15.010000"],["2024-07-24T09:00:16.010000"],["2024-07-24T09:00:17.010000"],["2024-07-24T09:00:18.010000"],["2024-07-24T09:00:19.010000"],["2024-07-24T09:00:20.010000"],["2024-07-24T09:00:21.010000"],["2024-07-24T09:00:22.010000"],["2024-07-24T09:00:23.010000"],["2024-07-24T09:00:24.010000"],["2024-07-24T09:00:25.010000"],["2024-07-24T09:00:26.010000"],["2024-07-24T09:00:27.010000"],["2024-07-24T09:00:28.010000"],["2024-07-24T09:00:29.010000"],["2024-07-24T09:00:30.010000"],["2024-07-24T09:00:31.010000"],["2024-07-24T09:00:32.010000"],["2024-07-24T09:00:33.010000"],["2024-07-24T09:00:34.010000"],["2024-07-24T09:00:35.010000"],["2024-07-24T09:00:36.010000"],["2024-07-24T09:00:37.010000"],["2024-07-24T09:00:38.010000"],["2024-07-24T09:00:39.010000"],["2024-07-24T09:00:40.010000"],["2024-07-24T09:00:41.010000"],["2024-07-24T09:00:42.010000"],["2024-07-24T09:00:43.010000"],["2024-07-24T09:00:44.010000"],["2024-07-24T09:00:45.010000"],["2024-07-24T09:00:46.010000"],["2024-07-24T09:00:47.010000"],["2024-07-24T09:00:48.010000"],["2024-07-24T09:00:49.010000"],["2024-07-24T09:00:50.010000"],["2024-07-24T09:00:51.010000"],["2024-07-24T09:00:52.010000"],["2024-07-24T09:00:53.010000"],["2024-07-24T09:00:54.010000"],["2024-07-24T09:00:55.010000"],["2024-07-24T09:00:56.010000"],["2024-07-24T09:00:57.010000"],["2024-07-24T09:00:58.010000"],["2024-07-24T09:00:59.010000"],["2024-07-24T09:01:00.010000"],["2024-07-24T09:01:01.010000"],["2024-07-24T09:01:02.010000"],["2024-07-24T09:01:03.010000"],["2024-07-24T09:01:04.010000"],["2024-07-24T09:01:05.010000"],["2024-07-24T09:01:06.010000"],["2024-07-24T09:01:07.010000"],["2024-07-24T09:01:08.010000"],["2024-07-24T09:01:09.010000"],["2024-07-24T09:01:10.010000"],["2024-07-24T09:01:11.010000"],["2024-07-24T09:01:12.010000"],["2024-07-24T09:01:13.010000"],["2024-07-24T09:01:14.010000"],["2024-07-24T09:01:15.010000"],["2024-07-24T09:01:16.010000"],["2024-07-24T09:01:17.010000"],["2024-07-24T09:01:18.010000"],["2024-07-24T09:01:19.010000"],["2024-07-24T09:01:20.010000"],["2024-07-24T09:01:21.010000"],["2024-07-24T09:01:22.010000"],["2024-07-24T09:01:23.010000"],["2024-07-24T09:01:24.010000"],["2024-07-24T09:01:25.010000"],["2024-07-24T09:01:26.010000"],["2024-07-24T09:01:27.010000"],["2024-07-24T09:01:28.010000"],["2024-07-24T09:01:29.010000"],["2024-07-24T09:01:30.010000"],["2024-07-24T09:01:31.010000"],["2024-07-24T09:01:32.010000"],["2024-07-24T09:01:33.010000"],["2024-07-24T09:01:34.010000"],["2024-07-24T09:01:35.010000"],["2024-07-24T09:01:36.010000"],["2024-07-24T09:01:37.010000"],["2024-07-24T09:01:38.010000"],["2024-07-24T09:01:39.010000"],["2024-07-24T09:01:40.010000"],["2024-07-24T09:01:41.010000"],["2024-07-24T09:01:42.010000"],["2024-07-24T09:01:43.010000"],["2024-07-24T09:01:44.010000"],["2024-07-24T09:01:45.010000"],["2024-07-24T09:01:46.010000"],["2024-07-24T09:01:47.010000"],["2024-07-24T09:01:48.010000"],["2024-07-24T09:01:49.010000"],["2024-07-24T09:01:50.010000"],["2024-07-24T09:01:51.010000"],["2024-07-24T09:01:52.010000"],["2024-07-24T09:01:53.010000"],["2024-07-24T09:01:54.010000"],["2024-07-24T09:01:55.010000"],["2024-07-24T09:01:56.010000"],["2024-07-24T09:01:57.010000"],["2024-07-24T09:01:58.010000"],["2024-07-24T09:01:59.010000"],["2024-07-24T09:02:00.010000"],["2024-07-24T09:02:01.010000"],["2024-07-24T09:02:02.010000"],["2024-07-24T09:02:03.010000"],["2024-07-24T09:02:04.010000"],["2024-07-24T09:02:05.010000"],["2024-07-24T09:02:06.010000"],["2024-07-24T09:02:07.010000"],["2024-07-24T09:02:08.010000"],["2024-07-24T09:02:09.010000"],["2024-07-24T09:02:10.010000"],["2024-07-24T09:02:11.010000"],["2024-07-24T09:02:12.010000"],["2024-07-24T09:02:13.010000"],["2024-07-24T09:02:14.010000"],["2024-07-24T09:02:15.010000"],["2024-07-24T09:02:16.010000"],["2024-07-24T09:02:17.010000"],["2024-07-24T09:02:18.010000"],["2024-07-24T09:02:19.010000"],["2024-07-24T09:02:20.010000"],["2024-07-24T09:02:21.010000"],["2024-07-24T09:02:22.010000"],["2024-07-24T09:02:23.010000"],["2024-07-24T09:02:24.010000"],["2024-07-24T09:02:25.010000"],["2024-07-24T09:02:26.010000"],["2024-07-24T09:02:27.010000"],["2024-07-24T09:02:28.010000"],["2024-07-24T09:02:29.010000"],["2024-07-24T09:02:30.010000"],["2024-07-24T09:02:31.010000"],["2024-07-24T09:02:32.010000"],["2024-07-24T09:02:33.010000"],["2024-07-24T09:02:34.010000"],["2024-07-24T09:02:35.010000"],["2024-07-24T09:02:36.010000"],["2024-07-24T09:02:37.010000"],["2024-07-24T09:02:38.010000"],["2024-07-24T09:02:39.010000"],["2024-07-24T09:02:40.010000"],["2024-07-24T09:02:41.010000"],["2024-07-24T09:02:42.010000"],["2024-07-24T09:02:43.010000"],["2024-07-24T09:02:44.010000"],["2024-07-24T09:02:45.010000"],["2024-07-24T09:02:46.010000"],["2024-07-24T09:02:47.010000"],["2024-07-24T09:02:48.010000"],["2024-07-24T09:02:49.010000"],["2024-07-24T09:02:50.010000"],["2024-07-24T09:02:51.010000"],["2024-07-24T09:02:52.010000"],["2024-07-24T09:02:53.010000"],["2024-07-24T09:02:54.010000"],["2024-07-24T09:02:55.010000"],["2024-07-24T09:02:56.010000"],["2024-07-24T09:02:57.010000"],["2024-07-24T09:02:58.010000"],["2024-07-24T09:02:59.010000"],["2024-07-24T09:03:00.010000"],["2024-07-24T09:03:01.010000"],["2024-07-24T09:03:02.010000"],["2024-07-24T09:03:03.010000"],["2024-07-24T09:03:04.010000"],["2024-07-24T09:03:05.010000"],["2024-07-24T09:03:06.010000"],["2024-07-24T09:03:07.010000"],["2024-07-24T09:03:08.010000"],["2024-07-24T09:03:09.010000"],["2024-07-24T09:03:10.010000"],["2024-07-24T09:03:11.010000"],["2024-07-24T09:03:12.010000"],["2024-07-24T09:03:13.010000"],["2024-07-24T09:03:14.010000"],["2024-07-24T09:03:15.010000"],["2024-07-24T09:03:16.010000"],["2024-07-24T09:03:17.010000"],["2024-07-24T09:03:18.010000"],["2024-07-24T09:03:19.010000"],["2024-07-24T09:03:20.010000"],["2024-07-24T09:03:21.010000"],["2024-07-24T09:03:22.010000"],["2024-07-24T09:03:23.010000"],["2024-07-24T09:03:24.010000"],["2024-07-24T09:03:25.010000"],["2024-07-24T09:03:26.010000"],["2024-07-24T09:03:27.010000"],["2024-07-24T09:03:28.010000"],["2024-07-24T09:03:29.010000"],["2024-07-24T09:03:30.010000"],["2024-07-24T09:03:31.010000"],["2024-07-24T09:03:32.010000"],["2024-07-24T09:03:33.010000"],["2024-07-24T09:03:34.010000"],["2024-07-24T09:03:35.010000"],["2024-07-24T09:03:36.010000"],["2024-07-24T09:03:37.010000"],["2024-07-24T09:03:38.010000"],["2024-07-24T09:03:39.010000"],["2024-07-24T09:03:40.010000"],["2024-07-24T09:03:41.010000"],["2024-07-24T09:03:42.010000"],["2024-07-24T09:03:43.010000"],["2024-07-24T09:03:44.010000"],["2024-07-24T09:03:45.010000"],["2024-07-24T09:03:46.010000"],["2024-07-24T09:03:47.010000"],["2024-07-24T09:03:48.010000"],["2024-07-24T09:03:49.010000"],["2024-07-24T09:03:50.010000"],["2024-07-24T09:03:51.010000"],["2024-07-24T09:03:52.010000"],["2024-07-24T09:03:53.010000"],["2024-07-24T09:03:54.010000"],["2024-07-24T09:03:55.010000"],["2024-07-24T09:03:56.010000"],["2024-07-24T09:03:57.010000"],["2024-07-24T09:03:58.010000"],["2024-07-24T09:03:59.010000"],["2024-07-24T09:04:00.010000"],["2024-07-24T09:04:01.010000"],["2024-07-24T09:04:02.010000"],["2024-07-24T09:04:03.010000"],["2024-07-24T09:04:04.010000"],["2024-07-24T09:04:05.010000"],["2024-07-24T09:04:06.010000"],["2024-07-24T09:04:07.010000"],["2024-07-24T09:04:08.010000"],["2024-07-24T09:04:09.010000"],["2024-07-24T09:04:10.010000"],["2024-07-24T09:04:11.010000"],["2024-07-24T09:04:12.010000"],["2024-07-24T09:04:13.010000"],["2024-07-24T09:04:14.010000"],["2024-07-24T09:04:15.010000"],["2024-07-24T09:04:16.010000"],["2024-07-24T09:04:17.010000"],["2024-07-24T09:04:18.010000"],["2024-07-24T09:04:19.010000"],["2024-07-24T09:04:20.010000"],["2024-07-24T09:04:21.010000"],["2024-07-24T09:04:22.010000"],["2024-07-24T09:04:23.010000"],["2024-07-24T09:04:24.010000"],["2024-07-24T09:04:25.010000"],["2024-07-24T09:04:26.010000"],["2024-07-24T09:04:27.010000"],["2024-07-24T09:04:28.010000"],["2024-07-24T09:04:29.010000"],["2024-07-24T09:04:30.010000"],["2024-07-24T09:04:31.010000"],["2024-07-24T09:04:32.010000"],["2024-07-24T09:04:33.010000"],["2024-07-24T09:04:34.010000"],["2024-07-24T09:04:35.010000"],["2024-07-24T09:04:36.010000"],["2024-07-24T09:04:37.010000"],["2024-07-24T09:04:38.010000"],["2024-07-24T09:04:39.010000"],["2024-07-24T09:04:40.010000"],["2024-07-24T09:04:41.010000"],["2024-07-24T09:04:42.010000"],["2024-07-24T09:04:43.010000"],["2024-07-24T09:04:44.010000"],["2024-07-24T09:04:45.010000"],["2024-07-24T09:04:46.010000"],["2024-07-24T09:04:47.010000"],["2024-07-24T09:04:48.010000"],["2024-07-24T09:04:49.010000"],["2024-07-24T09:04:50.010000"],["2024-07-24T09:04:51.010000"],["2024-07-24T09:04:52.010000"],["2024-07-24T09:04:53.010000"],["2024-07-24T09:04:54.010000"],["2024-07-24T09:04:55.010000"],["2024-07-24T09:04:56.010000"],["2024-07-24T09:04:57.010000"],["2024-07-24T09:04:58.010000"],["2024-07-24T09:04:59.010000"],["2024-07-24T09:05:00.010000"],["2024-07-24T09:05:01.010000"],["2024-07-24T09:05:02.010000"],["2024-07-24T09:05:03.010000"],["2024-07-24T09:05:04.010000"],["2024-07-24T09:05:05.010000"],["2024-07-24T09:05:06.010000"],["2024-07-24T09:05:07.010000"],["2024-07-24T09:05:08.010000"],["2024-07-24T09:05:09.010000"],["2024-07-24T09:05:10.010000"],["2024-07-24T09:05:11.010000"],["2024-07-24T09:05:12.010000"],["2024-07-24T09:05:13.010000"],["2024-07-24T09:05:14.010000"],["2024-07-24T09:05:15.010000"],["2024-07-24T09:05:16.010000"],["2024-07-24T09:05:17.010000"],["2024-07-24T09:05:18.010000"],["2024-07-24T09:05:19.010000"],["2024-07-24T09:05:20.010000"],["2024-07-24T09:05:21.010000"],["2024-07-24T09:05:22.010000"],["2024-07-24T09:05:23.010000"],["2024-07-24T09:05:24.010000"],["2024-07-24T09:05:25.010000"],["2024-07-24T09:05:26.010000"],["2024-07-24T09:05:27.010000"],["2024-07-24T09:05:28.010000"],["2024-07-24T09:05:29.010000"],["2024-07-24T09:05:30.010000"],["2024-07-24T09:05:31.010000"],["2024-07-24T09:05:32.010000"],["2024-07-24T09:05:33.010000"],["2024-07-24T09:05:34.010000"],["2024-07-24T09:05:35.010000"],["2024-07-24T09:05:36.010000"],["2024-07-24T09:05:37.010000"],["2024-07-24T09:05:38.010000"],["2024-07-24T09:05:39.010000"],["2024-07-24T09:05:40.010000"],["2024-07-24T09:05:41.010000"],["2024-07-24T09:05:42.010000"],["2024-07-24T09:05:43.010000"],["2024-07-24T09:05:44.010000"],["2024-07-24T09:05:45.010000"],["2024-07-24T09:05:46.010000"],["2024-07-24T09:05:47.010000"],["2024-07-24T09:05:48.010000"],["2024-07-24T09:05:49.010000"],["2024-07-24T09:05:50.010000"],["2024-07-24T09:05:51.010000"],["2024-07-24T09:05:52.010000"],["2024-07-24T09:05:53.010000"],["2024-07-24T09:05:54.010000"],["2024-07-24T09:05:55.010000"],["2024-07-24T09:05:56.010000"],["2024-07-24T09:05:57.010000"],["2024-07-24T09:05:58.010000"],["2024-07-24T09:05:59.010000"],["2024-07-24T09:06:00.010000"],["2024-07-24T09:06:01.010000"],["2024-07-24T09:06:02.010000"],["2024-07-24T09:06:03.010000"],["2024-07-24T09:06:04.010000"],["2024-07-24T09:06:05.010000"],["2024-07-24T09:06:06.010000"],["2024-07-24T09:06:07.010000"],["2024-07-24T09:06:08.010000"],["2024-07-24T09:06:09.010000"],["2024-07-24T09:06:10.010000"],["2024-07-24T09:06:11.010000"],["2024-07-24T09:06:12.010000"],["2024-07-24T09:06:13.010000"],["2024-07-24T09:06:14.010000"],["2024-07-24T09:06:15.010000"],["2024-07-24T09:06:16.010000"],["2024-07-24T09:06:17.010000"],["2024-07-24T09:06:18.010000"],["2024-07-24T09:06:19.010000"],["2024-07-24T09:06:20.010000"],["2024-07-24T09:06:21.010000"],["2024-07-24T09:06:22.010000"],["2024-07-24T09:06:23.010000"],["2024-07-24T09:06:24.010000"],["2024-07-24T09:06:25.010000"],["2024-07-24T09:06:26.010000"],["2024-07-24T09:06:27.010000"],["2024-07-24T09:06:28.010000"],["2024-07-24T09:06:29.010000"],["2024-07-24T09:06:30.010000"],["2024-07-24T09:06:31.010000"],["2024-07-24T09:06:32.010000"],["2024-07-24T09:06:33.010000"],["2024-07-24T09:06:34.010000"],["2024-07-24T09:06:35.010000"],["2024-07-24T09:06:36.010000"],["2024-07-24T09:06:37.010000"],["2024-07-24T09:06:38.010000"],["2024-07-24T09:06:39.010000"],["2024-07-24T09:06:40.010000"],["2024-07-24T09:06:41.010000"],["2024-07-24T09:06:42.010000"],["2024-07-24T09:06:43.010000"],["2024-07-24T09:06:44.010000"],["2024-07-24T09:06:45.010000"],["2024-07-24T09:06:46.010000"],["2024-07-24T09:06:47.010000"],["2024-07-24T09:06:48.010000"],["2024-07-24T09:06:49.010000"],["2024-07-24T09:06:50.010000"],["2024-07-24T09:06:51.010000"],["2024-07-24T09:06:52.010000"],["2024-07-24T09:06:53.010000"],["2024-07-24T09:06:54.010000"],["2024-07-24T09:06:55.010000"],["2024-07-24T09:06:56.010000"],["2024-07-24T09:06:57.010000"],["2024-07-24T09:06:58.010000"],["2024-07-24T09:06:59.010000"],["2024-07-24T09:07:00.010000"],["2024-07-24T09:07:01.010000"],["2024-07-24T09:07:02.010000"],["2024-07-24T09:07:03.010000"],["2024-07-24T09:07:04.010000"],["2024-07-24T09:07:05.010000"],["2024-07-24T09:07:06.010000"],["2024-07-24T09:07:07.010000"],["2024-07-24T09:07:08.010000"],["2024-07-24T09:07:09.010000"],["2024-07-24T09:07:10.010000"],["2024-07-24T09:07:11.010000"],["2024-07-24T09:07:12.010000"],["2024-07-24T09:07:13.010000"],["2024-07-24T09:07:14.010000"],["2024-07-24T09:07:15.010000"],["2024-07-24T09:07:16.010000"],["2024-07-24T09:07:17.010000"],["2024-07-24T09:07:18.010000"],["2024-07-24T09:07:19.010000"],["2024-07-24T09:07:20.010000"],["2024-07-24T09:07:21.010000"],["2024-07-24T09:07:22.010000"],["2024-07-24T09:07:23.010000"],["2024-07-24T09:07:24.010000"],["2024-07-24T09:07:25.010000"],["2024-07-24T09:07:26.010000"],["2024-07-24T09:07:27.010000"],["2024-07-24T09:07:28.010000"],["2024-07-24T09:07:29.010000"],["2024-07-24T09:07:30.010000"],["2024-07-24T09:07:31.010000"],["2024-07-24T09:07:32.010000"],["2024-07-24T09:07:33.010000"],["2024-07-24T09:07:34.010000"],["2024-07-24T09:07:35.010000"],["2024-07-24T09:07:36.010000"],["2024-07-24T09:07:37.010000"],["2024-07-24T09:07:38.010000"],["2024-07-24T09:07:39.010000"],["2024-07-24T09:07:40.010000"],["2024-07-24T09:07:41.010000"],["2024-07-24T09:07:42.010000"],["2024-07-24T09:07:43.010000"],["2024-07-24T09:07:44.010000"],["2024-07-24T09:07:45.010000"],["2024-07-24T09:07:46.010000"],["2024-07-24T09:07:47.010000"],["2024-07-24T09:07:48.010000"],["2024-07-24T09:07:49.010000"],["2024-07-24T09:07:50.010000"],["2024-07-24T09:07:51.010000"],["2024-07-24T09:07:52.010000"],["2024-07-24T09:07:53.010000"],["2024-07-24T09:07:54.010000"],["2024-07-24T09:07:55.010000"],["2024-07-24T09:07:56.010000"],["2024-07-24T09:07:57.010000"],["2024-07-24T09:07:58.010000"],["2024-07-24T09:07:59.010000"],["2024-07-24T09:08:00.010000"],["2024-07-24T09:08:01.010000"],["2024-07-24T09:08:02.010000"],["2024-07-24T09:08:03.010000"],["2024-07-24T09:08:04.010000"],["2024-07-24T09:08:05.010000"],["2024-07-24T09:08:06.010000"],["2024-07-24T09:08:07.010000"],["2024-07-24T09:08:08.010000"],["2024-07-24T09:08:09.010000"],["2024-07-24T09:08:10.010000"],["2024-07-24T09:08:11.010000"],["2024-07-24T09:08:12.010000"],["2024-07-24T09:08:13.010000"],["2024-07-24T09:08:14.010000"],["2024-07-24T09:08:15.010000"],["2024-07-24T09:08:16.010000"],["2024-07-24T09:08:17.010000"],["2024-07-24T09:08:18.010000"],["2024-07-24T09:08:19.010000"],["2024-07-24T09:08:20.010000"],["2024-07-24T09:08:21.010000"],["2024-07-24T09:08:22.010000"],["2024-07-24T09:08:23.010000"],["2024-07-24T09:08:24.010000"],["2024-07-24T09:08:25.010000"],["2024-07-24T09:08:26.010000"],["2024-07-24T09:08:27.010000"],["2024-07-24T09:08:28.010000"],["2024-07-24T09:08:29.010000"],["2024-07-24T09:08:30.010000"],["2024-07-24T09:08:31.010000"],["2024-07-24T09:08:32.010000"],["2024-07-24T09:08:33.010000"],["2024-07-24T09:08:34.010000"],["2024-07-24T09:08:35.010000"],["2024-07-24T09:08:36.010000"],["2024-07-24T09:08:37.010000"],["2024-07-24T09:08:38.010000"],["2024-07-24T09:08:39.010000"],["2024-07-24T09:08:40.010000"],["2024-07-24T09:08:41.010000"],["2024-07-24T09:08:42.010000"],["2024-07-24T09:08:43.010000"],["2024-07-24T09:08:44.010000"],["2024-07-24T09:08:45.010000"],["2024-07-24T09:08:46.010000"],["2024-07-24T09:08:47.010000"],["2024-07-24T09:08:48.010000"],["2024-07-24T09:08:49.010000"],["2024-07-24T09:08:50.010000"],["2024-07-24T09:08:51.010000"],["2024-07-24T09:08:52.010000"],["2024-07-24T09:08:53.010000"],["2024-07-24T09:08:54.010000"],["2024-07-24T09:08:55.010000"],["2024-07-24T09:08:56.010000"],["2024-07-24T09:08:57.010000"],["2024-07-24T09:08:58.010000"],["2024-07-24T09:08:59.010000"],["2024-07-24T09:09:00.010000"],["2024-07-24T09:09:01.010000"],["2024-07-24T09:09:02.010000"],["2024-07-24T09:09:03.010000"],["2024-07-24T09:09:04.010000"],["2024-07-24T09:09:05.010000"],["2024-07-24T09:09:06.010000"],["2024-07-24T09:09:07.010000"],["2024-07-24T09:09:08.010000"],["2024-07-24T09:09:09.010000"],["2024-07-24T09:09:10.010000"],["2024-07-24T09:09:11.010000"],["2024-07-24T09:09:12.010000"],["2024-07-24T09:09:13.010000"],["2024-07-24T09:09:14.010000"],["2024-07-24T09:09:15.010000"],["2024-07-24T09:09:16.010000"],["2024-07-24T09:09:17.010000"],["2024-07-24T09:09:18.010000"],["2024-07-24T09:09:19.010000"],["2024-07-24T09:09:20.010000"],["2024-07-24T09:09:21.010000"],["2024-07-24T09:09:22.010000"],["2024-07-24T09:09:23.010000"],["2024-07-24T09:09:24.010000"],["2024-07-24T09:09:25.010000"],["2024-07-24T09:09:26.010000"],["2024-07-24T09:09:27.010000"],["2024-07-24T09:09:28.010000"],["2024-07-24T09:09:29.010000"],["2024-07-24T09:09:30.010000"],["2024-07-24T09:09:31.010000"],["2024-07-24T09:09:32.010000"],["2024-07-24T09:09:33.010000"],["2024-07-24T09:09:34.010000"],["2024-07-24T09:09:35.010000"],["2024-07-24T09:09:36.010000"],["2024-07-24T09:09:37.010000"],["2024-07-24T09:09:38.010000"],["2024-07-24T09:09:39.010000"],["2024-07-24T09:09:40.010000"],["2024-07-24T09:09:41.010000"],["2024-07-24T09:09:42.010000"],["2024-07-24T09:09:43.010000"],["2024-07-24T09:09:44.010000"],["2024-07-24T09:09:45.010000"],["2024-07-24T09:09:46.010000"],["2024-07-24T09:09:47.010000"],["2024-07-24T09:09:48.010000"],["2024-07-24T09:09:49.010000"],["2024-07-24T09:09:50.010000"],["2024-07-24T09:09:51.010000"],["2024-07-24T09:09:52.010000"],["2024-07-24T09:09:53.010000"],["2024-07-24T09:09:54.010000"],["2024-07-24T09:09:55.010000"],["2024-07-24T09:09:56.010000"],["2024-07-24T09:09:57.010000"],["2024-07-24T09:09:58.010000"],["2024-07-24T09:09:59.010000"],["2024-07-24T09:10:00.010000"],["2024-07-24T09:10:01.010000"],["2024-07-24T09:10:02.010000"],["2024-07-24T09:10:03.010000"],["2024-07-24T09:10:04.010000"],["2024-07-24T09:10:05.010000"],["2024-07-24T09:10:06.010000"],["2024-07-24T09:10:07.010000"],["2024-07-24T09:10:08.010000"],["2024-07-24T09:10:09.010000"],["2024-07-24T09:10:10.010000"],["2024-07-24T09:10:11.010000"],["2024-07-24T09:10:12.010000"],["2024-07-24T09:10:13.010000"],["2024-07-24T09:10:14.010000"],["2024-07-24T09:10:15.010000"],["2024-07-24T09:10:16.010000"],["2024-07-24T09:10:17.010000"],["2024-07-24T09:10:18.010000"],["2024-07-24T09:10:19.010000"],["2024-07-24T09:10:20.010000"],["2024-07-24T09:10:21.010000"],["2024-07-24T09:10:22.010000"],["2024-07-24T09:10:23.010000"],["2024-07-24T09:10:24.010000"],["2024-07-24T09:10:25.010000"],["2024-07-24T09:10:26.010000"],["2024-07-24T09:10:27.010000"],["2024-07-24T09:10:28.010000"],["2024-07-24T09:10:29.010000"],["2024-07-24T09:10:30.010000"],["2024-07-24T09:10:31.010000"],["2024-07-24T09:10:32.010000"],["2024-07-24T09:10:33.010000"],["2024-07-24T09:10:34.010000"],["2024-07-24T09:10:35.010000"],["2024-07-24T09:10:36.010000"],["2024-07-24T09:10:37.010000"],["2024-07-24T09:10:38.010000"],["2024-07-24T09:10:39.010000"],["2024-07-24T09:10:40.010000"],["2024-07-24T09:10:41.010000"],["2024-07-24T09:10:42.010000"],["2024-07-24T09:10:43.010000"],["2024-07-24T09:10:44.010000"],["2024-07-24T09:10:45.010000"],["2024-07-24T09:10:46.010000"],["2024-07-24T09:10:47.010000"],["2024-07-24T09:10:48.010000"],["2024-07-24T09:10:49.010000"],["2024-07-24T09:10:50.010000"],["2024-07-24T09:10:51.010000"],["2024-07-24T09:10:52.010000"],["2024-07-24T09:10:53.010000"],["2024-07-24T09:10:54.010000"],["2024-07-24T09:10:55.010000"],["2024-07-24T09:10:56.010000"],["2024-07-24T09:10:57.010000"],["2024-07-24T09:10:58.010000"],["2024-07-24T09:10:59.010000"],["2024-07-24T09:11:00.010000"],["2024-07-24T09:11:01.010000"],["2024-07-24T09:11:02.010000"],["2024-07-24T09:11:03.010000"],["2024-07-24T09:11:04.010000"],["2024-07-24T09:11:05.010000"],["2024-07-24T09:11:06.010000"],["2024-07-24T09:11:07.010000"],["2024-07-24T09:11:08.010000"],["2024-07-24T09:11:09.010000"],["2024-07-24T09:11:10.010000"],["2024-07-24T09:11:11.010000"],["2024-07-24T09:11:12.010000"],["2024-07-24T09:11:13.010000"],["2024-07-24T09:11:14.010000"],["2024-07-24T09:11:15.010000"],["2024-07-24T09:11:16.010000"],["2024-07-24T09:11:17.010000"],["2024-07-24T09:11:18.010000"],["2024-07-24T09:11:19.010000"],["2024-07-24T09:11:20.010000"],["2024-07-24T09:11:21.010000"],["2024-07-24T09:11:22.010000"],["2024-07-24T09:11:23.010000"],["2024-07-24T09:11:24.010000"],["2024-07-24T09:11:25.010000"],["2024-07-24T09:11:26.010000"],["2024-07-24T09:11:27.010000"],["2024-07-24T09:11:28.010000"],["2024-07-24T09:11:29.010000"],["2024-07-24T09:11:30.010000"],["2024-07-24T09:11:31.010000"],["2024-07-24T09:11:32.010000"],["2024-07-24T09:11:33.010000"],["2024-07-24T09:11:34.010000"],["2024-07-24T09:11:35.010000"],["2024-07-24T09:11:36.010000"],["2024-07-24T09:11:37.010000"],["2024-07-24T09:11:38.010000"],["2024-07-24T09:11:39.010000"],["2024-07-24T09:11:40.010000"],["2024-07-24T09:11:41.010000"],["2024-07-24T09:11:42.010000"],["2024-07-24T09:11:43.010000"],["2024-07-24T09:11:44.010000"],["2024-07-24T09:11:45.010000"],["2024-07-24T09:11:46.010000"],["2024-07-24T09:11:47.010000"],["2024-07-24T09:11:48.010000"],["2024-07-24T09:11:49.010000"],["2024-07-24T09:11:50.010000"],["2024-07-24T09:11:51.010000"],["2024-07-24T09:11:52.010000"],["2024-07-24T09:11:53.010000"],["2024-07-24T09:11:54.010000"],["2024-07-24T09:11:55.010000"],["2024-07-24T09:11:56.010000"],["2024-07-24T09:11:57.010000"],["2024-07-24T09:11:58.010000"],["2024-07-24T09:11:59.010000"],["2024-07-24T09:12:00.010000"],["2024-07-24T09:12:01.010000"],["2024-07-24T09:12:02.010000"],["2024-07-24T09:12:03.010000"],["2024-07-24T09:12:04.010000"],["2024-07-24T09:12:05.010000"],["2024-07-24T09:12:06.010000"],["2024-07-24T09:12:07.010000"],["2024-07-24T09:12:08.010000"],["2024-07-24T09:12:09.010000"],["2024-07-24T09:12:10.010000"],["2024-07-24T09:12:11.010000"],["2024-07-24T09:12:12.010000"],["2024-07-24T09:12:13.010000"],["2024-07-24T09:12:14.010000"],["2024-07-24T09:12:15.010000"],["2024-07-24T09:12:16.010000"],["2024-07-24T09:12:17.010000"],["2024-07-24T09:12:18.010000"],["2024-07-24T09:12:19.010000"],["2024-07-24T09:12:20.010000"],["2024-07-24T09:12:21.010000"],["2024-07-24T09:12:22.010000"],["2024-07-24T09:12:23.010000"],["2024-07-24T09:12:24.010000"],["2024-07-24T09:12:25.010000"],["2024-07-24T09:12:26.010000"],["2024-07-24T09:12:27.010000"],["2024-07-24T09:12:28.010000"],["2024-07-24T09:12:29.010000"],["2024-07-24T09:12:30.010000"],["2024-07-24T09:12:31.010000"],["2024-07-24T09:12:32.010000"],["2024-07-24T09:12:33.010000"],["2024-07-24T09:12:34.010000"],["2024-07-24T09:12:35.010000"],["2024-07-24T09:12:36.010000"],["2024-07-24T09:12:37.010000"],["2024-07-24T09:12:38.010000"],["2024-07-24T09:12:39.010000"],["2024-07-24T09:12:40.010000"],["2024-07-24T09:12:41.010000"],["2024-07-24T09:12:42.010000"],["2024-07-24T09:12:43.010000"],["2024-07-24T09:12:44.010000"],["2024-07-24T09:12:45.010000"],["2024-07-24T09:12:46.010000"],["2024-07-24T09:12:47.010000"],["2024-07-24T09:12:48.010000"],["2024-07-24T09:12:49.010000"],["2024-07-24T09:12:50.010000"],["2024-07-24T09:12:51.010000"],["2024-07-24T09:12:52.010000"],["2024-07-24T09:12:53.010000"],["2024-07-24T09:12:54.010000"],["2024-07-24T09:12:55.010000"],["2024-07-24T09:12:56.010000"],["2024-07-24T09:12:57.010000"],["2024-07-24T09:12:58.010000"],["2024-07-24T09:12:59.010000"],["2024-07-24T09:13:00.010000"],["2024-07-24T09:13:01.010000"],["2024-07-24T09:13:02.010000"],["2024-07-24T09:13:03.010000"],["2024-07-24T09:13:04.010000"],["2024-07-24T09:13:05.010000"],["2024-07-24T09:13:06.010000"],["2024-07-24T09:13:07.010000"],["2024-07-24T09:13:08.010000"],["2024-07-24T09:13:09.010000"],["2024-07-24T09:13:10.010000"],["2024-07-24T09:13:11.010000"],["2024-07-24T09:13:12.010000"],["2024-07-24T09:13:13.010000"],["2024-07-24T09:13:14.010000"],["2024-07-24T09:13:15.010000"],["2024-07-24T09:13:16.010000"],["2024-07-24T09:13:17.010000"],["2024-07-24T09:13:18.010000"],["2024-07-24T09:13:19.010000"],["2024-07-24T09:13:20.010000"],["2024-07-24T09:13:21.010000"],["2024-07-24T09:13:22.010000"],["2024-07-24T09:13:23.010000"],["2024-07-24T09:13:24.010000"],["2024-07-24T09:13:25.010000"],["2024-07-24T09:13:26.010000"],["2024-07-24T09:13:27.010000"],["2024-07-24T09:13:28.010000"],["2024-07-24T09:13:29.010000"],["2024-07-24T09:13:30.010000"],["2024-07-24T09:13:31.010000"],["2024-07-24T09:13:32.010000"],["2024-07-24T09:13:33.010000"],["2024-07-24T09:13:34.010000"],["2024-07-24T09:13:35.010000"],["2024-07-24T09:13:36.010000"],["2024-07-24T09:13:37.010000"],["2024-07-24T09:13:38.010000"],["2024-07-24T09:13:39.010000"],["2024-07-24T09:13:40.010000"],["2024-07-24T09:13:41.010000"],["2024-07-24T09:13:42.010000"],["2024-07-24T09:13:43.010000"],["2024-07-24T09:13:44.010000"],["2024-07-24T09:13:45.010000"],["2024-07-24T09:13:46.010000"],["2024-07-24T09:13:47.010000"],["2024-07-24T09:13:48.010000"],["2024-07-24T09:13:49.010000"],["2024-07-24T09:13:50.010000"],["2024-07-24T09:13:51.010000"],["2024-07-24T09:13:52.010000"],["2024-07-24T09:13:53.010000"],["2024-07-24T09:13:54.010000"],["2024-07-24T09:13:55.010000"],["2024-07-24T09:13:56.010000"],["2024-07-24T09:13:57.010000"],["2024-07-24T09:13:58.010000"],["2024-07-24T09:13:59.010000"],["2024-07-24T09:14:00.010000"],["2024-07-24T09:14:01.010000"],["2024-07-24T09:14:02.010000"],["2024-07-24T09:14:03.010000"],["2024-07-24T09:14:04.010000"],["2024-07-24T09:14:05.010000"],["2024-07-24T09:14:06.010000"],["2024-07-24T09:14:07.010000"],["2024-07-24T09:14:08.010000"],["2024-07-24T09:14:09.010000"],["2024-07-24T09:14:10.010000"],["2024-07-24T09:14:11.010000"],["2024-07-24T09:14:12.010000"],["2024-07-24T09:14:13.010000"],["2024-07-24T09:14:14.010000"],["2024-07-24T09:14:15.010000"],["2024-07-24T09:14:16.010000"],["2024-07-24T09:14:17.010000"],["2024-07-24T09:14:18.010000"],["2024-07-24T09:14:19.010000"],["2024-07-24T09:14:20.010000"],["2024-07-24T09:14:21.010000"],["2024-07-24T09:14:22.010000"],["2024-07-24T09:14:23.010000"],["2024-07-24T09:14:24.010000"],["2024-07-24T09:14:25.010000"],["2024-07-24T09:14:26.010000"],["2024-07-24T09:14:27.010000"],["2024-07-24T09:14:28.010000"],["2024-07-24T09:14:29.010000"],["2024-07-24T09:14:30.010000"],["2024-07-24T09:14:31.010000"],["2024-07-24T09:14:32.010000"],["2024-07-24T09:14:33.010000"],["2024-07-24T09:14:34.010000"],["2024-07-24T09:14:35.010000"],["2024-07-24T09:14:36.010000"],["2024-07-24T09:14:37.010000"],["2024-07-24T09:14:38.010000"],["2024-07-24T09:14:39.010000"],["2024-07-24T09:14:40.010000"],["2024-07-24T09:14:41.010000"],["2024-07-24T09:14:42.010000"],["2024-07-24T09:14:43.010000"],["2024-07-24T09:14:44.010000"],["2024-07-24T09:14:45.010000"],["2024-07-24T09:14:46.010000"],["2024-07-24T09:14:47.010000"],["2024-07-24T09:14:48.010000"],["2024-07-24T09:14:49.010000"],["2024-07-24T09:14:50.010000"],["2024-07-24T09:14:51.010000"],["2024-07-24T09:14:52.010000"],["2024-07-24T09:14:53.010000"],["2024-07-24T09:14:54.010000"],["2024-07-24T09:14:55.010000"],["2024-07-24T09:14:56.010000"],["2024-07-24T09:14:57.010000"],["2024-07-24T09:14:58.010000"],["2024-07-24T09:14:59.010000"],["2024-07-24T09:15:00.010000"],["2024-07-24T09:15:01.010000"],["2024-07-24T09:15:02.010000"],["2024-07-24T09:15:03.010000"],["2024-07-24T09:15:04.010000"],["2024-07-24T09:15:05.010000"],["2024-07-24T09:15:06.010000"],["2024-07-24T09:15:07.010000"],["2024-07-24T09:15:08.010000"],["2024-07-24T09:15:09.010000"],["2024-07-24T09:15:10.010000"],["2024-07-24T09:15:11.010000"],["2024-07-24T09:15:12.010000"],["2024-07-24T09:15:13.010000"],["2024-07-24T09:15:14.010000"],["2024-07-24T09:15:15.010000"],["2024-07-24T09:15:16.010000"],["2024-07-24T09:15:17.010000"],["2024-07-24T09:15:18.010000"],["2024-07-24T09:15:19.010000"],["2024-07-24T09:15:20.010000"],["2024-07-24T09:15:21.010000"],["2024-07-24T09:15:22.010000"],["2024-07-24T09:15:23.010000"],["2024-07-24T09:15:24.010000"],["2024-07-24T09:15:25.010000"],["2024-07-24T09:15:26.010000"],["2024-07-24T09:15:27.010000"],["2024-07-24T09:15:28.010000"],["2024-07-24T09:15:29.010000"],["2024-07-24T09:15:30.010000"],["2024-07-24T09:15:31.010000"],["2024-07-24T09:15:32.010000"],["2024-07-24T09:15:33.010000"],["2024-07-24T09:15:34.010000"],["2024-07-24T09:15:35.010000"],["2024-07-24T09:15:36.010000"],["2024-07-24T09:15:37.010000"],["2024-07-24T09:15:38.010000"],["2024-07-24T09:15:39.010000"],["2024-07-24T09:15:40.010000"],["2024-07-24T09:15:41.010000"],["2024-07-24T09:15:42.010000"],["2024-07-24T09:15:43.010000"],["2024-07-24T09:15:44.010000"],["2024-07-24T09:15:45.010000"],["2024-07-24T09:15:46.010000"],["2024-07-24T09:15:47.010000"],["2024-07-24T09:15:48.010000"],["2024-07-24T09:15:49.010000"],["2024-07-24T09:15:50.010000"],["2024-07-24T09:15:51.010000"],["2024-07-24T09:15:52.010000"],["2024-07-24T09:15:53.010000"],["2024-07-24T09:15:54.010000"],["2024-07-24T09:15:55.010000"],["2024-07-24T09:15:56.010000"],["2024-07-24T09:15:57.010000"],["2024-07-24T09:15:58.010000"],["2024-07-24T09:15:59.010000"],["2024-07-24T09:16:00.010000"],["2024-07-24T09:16:01.010000"],["2024-07-24T09:16:02.010000"],["2024-07-24T09:16:03.010000"],["2024-07-24T09:16:04.010000"],["2024-07-24T09:16:05.010000"],["2024-07-24T09:16:06.010000"],["2024-07-24T09:16:07.010000"],["2024-07-24T09:16:08.010000"],["2024-07-24T09:16:09.010000"],["2024-07-24T09:16:10.010000"],["2024-07-24T09:16:11.010000"],["2024-07-24T09:16:12.010000"],["2024-07-24T09:16:13.010000"],["2024-07-24T09:16:14.010000"],["2024-07-24T09:16:15.010000"],["2024-07-24T09:16:16.010000"],["2024-07-24T09:16:17.010000"],["2024-07-24T09:16:18.010000"],["2024-07-24T09:16:19.010000"],["2024-07-24T09:16:20.010000"],["2024-07-24T09:16:21.010000"],["2024-07-24T09:16:22.010000"],["2024-07-24T09:16:23.010000"],["2024-07-24T09:16:24.010000"],["2024-07-24T09:16:25.010000"],["2024-07-24T09:16:26.010000"],["2024-07-24T09:16:27.010000"],["2024-07-24T09:16:28.010000"],["2024-07-24T09:16:29.010000"],["2024-07-24T09:16:30.010000"],["2024-07-24T09:16:31.010000"],["2024-07-24T09:16:32.010000"],["2024-07-24T09:16:33.010000"],["2024-07-24T09:16:34.010000"],["2024-07-24T09:16:35.010000"],["2024-07-24T09:16:36.010000"],["2024-07-24T09:16:37.010000"],["2024-07-24T09:16:38.010000"],["2024-07-24T09:16:39.010000"],["2024-07-24T09:16:40.010000"],["2024-07-24T09:16:41.010000"],["2024-07-24T09:16:42.010000"],["2024-07-24T09:16:43.010000"],["2024-07-24T09:16:44.010000"],["2024-07-24T09:16:45.010000"],["2024-07-24T09:16:46.010000"],["2024-07-24T09:16:47.010000"],["2024-07-24T09:16:48.010000"],["2024-07-24T09:16:49.010000"],["2024-07-24T09:16:50.010000"],["2024-07-24T09:16:51.010000"],["2024-07-24T09:16:52.010000"],["2024-07-24T09:16:53.010000"],["2024-07-24T09:16:54.010000"],["2024-07-24T09:16:55.010000"],["2024-07-24T09:16:56.010000"],["2024-07-24T09:16:57.010000"],["2024-07-24T09:16:58.010000"],["2024-07-24T09:16:59.010000"],["2024-07-24T09:17:00.010000"],["2024-07-24T09:17:01.010000"],["2024-07-24T09:17:02.010000"],["2024-07-24T09:17:03.010000"],["2024-07-24T09:17:04.010000"],["2024-07-24T09:17:05.010000"],["2024-07-24T09:17:06.010000"],["2024-07-24T09:17:07.010000"],["2024-07-24T09:17:08.010000"],["2024-07-24T09:17:09.010000"],["2024-07-24T09:17:10.010000"],["2024-07-24T09:17:11.010000"],["2024-07-24T09:17:12.010000"],["2024-07-24T09:17:13.010000"],["2024-07-24T09:17:14.010000"],["2024-07-24T09:17:15.010000"],["2024-07-24T09:17:16.010000"],["2024-07-24T09:17:17.010000"],["2024-07-24T09:17:18.010000"],["2024-07-24T09:17:19.010000"],["2024-07-24T09:17:20.010000"],["2024-07-24T09:17:21.010000"],["2024-07-24T09:17:22.010000"],["2024-07-24T09:17:23.010000"],["2024-07-24T09:17:24.010000"],["2024-07-24T09:17:25.010000"],["2024-07-24T09:17:26.010000"],["2024-07-24T09:17:27.010000"],["2024-07-24T09:17:28.010000"],["2024-07-24T09:17:29.010000"],["2024-07-24T09:17:30.010000"],["2024-07-24T09:17:31.010000"],["2024-07-24T09:17:32.010000"],["2024-07-24T09:17:33.010000"],["2024-07-24T09:17:34.010000"],["2024-07-24T09:17:35.010000"],["2024-07-24T09:17:36.010000"],["2024-07-24T09:17:37.010000"],["2024-07-24T09:17:38.010000"],["2024-07-24T09:17:39.010000"],["2024-07-24T09:17:40.010000"],["2024-07-24T09:17:41.010000"],["2024-07-24T09:17:42.010000"],["2024-07-24T09:17:43.010000"],["2024-07-24T09:17:44.010000"],["2024-07-24T09:17:45.010000"],["2024-07-24T09:17:46.010000"],["2024-07-24T09:17:47.010000"],["2024-07-24T09:17:48.010000"],["2024-07-24T09:17:49.010000"],["2024-07-24T09:17:50.010000"],["2024-07-24T09:17:51.010000"],["2024-07-24T09:17:52.010000"],["2024-07-24T09:17:53.010000"],["2024-07-24T09:17:54.010000"],["2024-07-24T09:17:55.010000"],["2024-07-24T09:17:56.010000"],["2024-07-24T09:17:57.010000"],["2024-07-24T09:17:58.010000"],["2024-07-24T09:17:59.010000"],["2024-07-24T09:18:00.010000"],["2024-07-24T09:18:01.010000"],["2024-07-24T09:18:02.010000"],["2024-07-24T09:18:03.010000"],["2024-07-24T09:18:04.010000"],["2024-07-24T09:18:05.010000"],["2024-07-24T09:18:06.010000"],["2024-07-24T09:18:07.010000"],["2024-07-24T09:18:08.010000"],["2024-07-24T09:18:09.010000"],["2024-07-24T09:18:10.010000"],["2024-07-24T09:18:11.010000"],["2024-07-24T09:18:12.010000"],["2024-07-24T09:18:13.010000"],["2024-07-24T09:18:14.010000"],["2024-07-24T09:18:15.010000"],["2024-07-24T09:18:16.010000"],["2024-07-24T09:18:17.010000"],["2024-07-24T09:18:18.010000"],["2024-07-24T09:18:19.010000"],["2024-07-24T09:18:20.010000"],["2024-07-24T09:18:21.010000"],["2024-07-24T09:18:22.010000"],["2024-07-24T09:18:23.010000"],["2024-07-24T09:18:24.010000"],["2024-07-24T09:18:25.010000"],["2024-07-24T09:18:26.010000"],["2024-07-24T09:18:27.010000"],["2024-07-24T09:18:28.010000"],["2024-07-24T09:18:29.010000"],["2024-07-24T09:18:30.010000"],["2024-07-24T09:18:31.010000"],["2024-07-24T09:18:32.010000"],["2024-07-24T09:18:33.010000"],["2024-07-24T09:18:34.010000"],["2024-07-24T09:18:35.010000"],["2024-07-24T09:18:36.010000"],["2024-07-24T09:18:37.010000"],["2024-07-24T09:18:38.010000"],["2024-07-24T09:18:39.010000"],["2024-07-24T09:18:40.010000"],["2024-07-24T09:18:41.010000"],["2024-07-24T09:18:42.010000"],["2024-07-24T09:18:43.010000"],["2024-07-24T09:18:44.010000"],["2024-07-24T09:18:45.010000"],["2024-07-24T09:18:46.010000"],["2024-07-24T09:18:47.010000"],["2024-07-24T09:18:48.010000"],["2024-07-24T09:18:49.010000"],["2024-07-24T09:18:50.010000"],["2024-07-24T09:18:51.010000"],["2024-07-24T09:18:52.010000"],["2024-07-24T09:18:53.010000"],["2024-07-24T09:18:54.010000"],["2024-07-24T09:18:55.010000"],["2024-07-24T09:18:56.010000"],["2024-07-24T09:18:57.010000"],["2024-07-24T09:18:58.010000"],["2024-07-24T09:18:59.010000"],["2024-07-24T09:19:00.010000"],["2024-07-24T09:19:01.010000"],["2024-07-24T09:19:02.010000"],["2024-07-24T09:19:03.010000"],["2024-07-24T09:19:04.010000"],["2024-07-24T09:19:05.010000"],["2024-07-24T09:19:06.010000"],["2024-07-24T09:19:07.010000"],["2024-07-24T09:19:08.010000"],["2024-07-24T09:19:09.010000"],["2024-07-24T09:19:10.010000"],["2024-07-24T09:19:11.010000"],["2024-07-24T09:19:12.010000"],["2024-07-24T09:19:13.010000"],["2024-07-24T09:19:14.010000"],["2024-07-24T09:19:15.010000"],["2024-07-24T09:19:16.010000"],["2024-07-24T09:19:17.010000"],["2024-07-24T09:19:18.010000"],["2024-07-24T09:19:19.010000"],["2024-07-24T09:19:20.010000"],["2024-07-24T09:19:21.010000"],["2024-07-24T09:19:22.010000"],["2024-07-24T09:19:23.010000"],["2024-07-24T09:19:24.010000"],["2024-07-24T09:19:25.010000"],["2024-07-24T09:19:26.010000"],["2024-07-24T09:19:27.010000"],["2024-07-24T09:19:28.010000"],["2024-07-24T09:19:29.010000"],["2024-07-24T09:19:30.010000"],["2024-07-24T09:19:31.010000"],["2024-07-24T09:19:32.010000"],["2024-07-24T09:19:33.010000"],["2024-07-24T09:19:34.010000"],["2024-07-24T09:19:35.010000"],["2024-07-24T09:19:36.010000"],["2024-07-24T09:19:37.010000"],["2024-07-24T09:19:38.010000"],["2024-07-24T09:19:39.010000"],["2024-07-24T09:19:40.010000"],["2024-07-24T09:19:41.010000"],["2024-07-24T09:19:42.010000"],["2024-07-24T09:19:43.010000"],["2024-07-24T09:19:44.010000"],["2024-07-24T09:19:45.010000"],["2024-07-24T09:19:46.010000"],["2024-07-24T09:19:47.010000"],["2024-07-24T09:19:48.010000"],["2024-07-24T09:19:49.010000"],["2024-07-24T09:19:50.010000"],["2024-07-24T09:19:51.010000"],["2024-07-24T09:19:52.010000"],["2024-07-24T09:19:53.010000"],["2024-07-24T09:19:54.010000"],["2024-07-24T09:19:55.010000"],["2024-07-24T09:19:56.010000"],["2024-07-24T09:19:57.010000"],["2024-07-24T09:19:58.010000"],["2024-07-24T09:19:59.010000"],["2024-07-24T09:20:00.010000"],["2024-07-24T09:20:01.010000"],["2024-07-24T09:20:02.010000"],["2024-07-24T09:20:03.010000"],["2024-07-24T09:20:04.010000"],["2024-07-24T09:20:05.010000"],["2024-07-24T09:20:06.010000"],["2024-07-24T09:20:07.010000"],["2024-07-24T09:20:08.010000"],["2024-07-24T09:20:09.010000"],["2024-07-24T09:20:10.010000"],["2024-07-24T09:20:11.010000"],["2024-07-24T09:20:12.010000"],["2024-07-24T09:20:13.010000"],["2024-07-24T09:20:14.010000"],["2024-07-24T09:20:15.010000"],["2024-07-24T09:20:16.010000"],["2024-07-24T09:20:17.010000"],["2024-07-24T09:20:18.010000"],["2024-07-24T09:20:19.010000"],["2024-07-24T09:20:20.010000"],["2024-07-24T09:20:21.010000"],["2024-07-24T09:20:22.010000"],["2024-07-24T09:20:23.010000"],["2024-07-24T09:20:24.010000"],["2024-07-24T09:20:25.010000"],["2024-07-24T09:20:26.010000"],["2024-07-24T09:20:27.010000"],["2024-07-24T09:20:28.010000"],["2024-07-24T09:20:29.010000"],["2024-07-24T09:20:30.010000"],["2024-07-24T09:20:31.010000"],["2024-07-24T09:20:32.010000"],["2024-07-24T09:20:33.010000"],["2024-07-24T09:20:34.010000"],["2024-07-24T09:20:35.010000"],["2024-07-24T09:20:36.010000"],["2024-07-24T09:20:37.010000"],["2024-07-24T09:20:38.010000"],["2024-07-24T09:20:39.010000"],["2024-07-24T09:20:40.010000"],["2024-07-24T09:20:41.010000"],["2024-07-24T09:20:42.010000"],["2024-07-24T09:20:43.010000"],["2024-07-24T09:20:44.010000"],["2024-07-24T09:20:45.010000"],["2024-07-24T09:20:46.010000"],["2024-07-24T09:20:47.010000"],["2024-07-24T09:20:48.010000"],["2024-07-24T09:20:49.010000"],["2024-07-24T09:20:50.010000"],["2024-07-24T09:20:51.010000"],["2024-07-24T09:20:52.010000"],["2024-07-24T09:20:53.010000"],["2024-07-24T09:20:54.010000"],["2024-07-24T09:20:55.010000"],["2024-07-24T09:20:56.010000"],["2024-07-24T09:20:57.010000"],["2024-07-24T09:20:58.010000"],["2024-07-24T09:20:59.010000"],["2024-07-24T09:21:00.010000"],["2024-07-24T09:21:01.010000"],["2024-07-24T09:21:02.010000"],["2024-07-24T09:21:03.010000"],["2024-07-24T09:21:04.010000"],["2024-07-24T09:21:05.010000"],["2024-07-24T09:21:06.010000"],["2024-07-24T09:21:07.010000"],["2024-07-24T09:21:08.010000"],["2024-07-24T09:21:09.010000"],["2024-07-24T09:21:10.010000"],["2024-07-24T09:21:11.010000"],["2024-07-24T09:21:12.010000"],["2024-07-24T09:21:13.010000"],["2024-07-24T09:21:14.010000"],["2024-07-24T09:21:15.010000"],["2024-07-24T09:21:16.010000"],["2024-07-24T09:21:17.010000"],["2024-07-24T09:21:18.010000"],["2024-07-24T09:21:19.010000"],["2024-07-24T09:21:20.010000"],["2024-07-24T09:21:21.010000"],["2024-07-24T09:21:22.010000"],["2024-07-24T09:21:23.010000"],["2024-07-24T09:21:24.010000"],["2024-07-24T09:21:25.010000"],["2024-07-24T09:21:26.010000"],["2024-07-24T09:21:27.010000"],["2024-07-24T09:21:28.010000"],["2024-07-24T09:21:29.010000"],["2024-07-24T09:21:30.010000"],["2024-07-24T09:21:31.010000"],["2024-07-24T09:21:32.010000"],["2024-07-24T09:21:33.010000"],["2024-07-24T09:21:34.010000"],["2024-07-24T09:21:35.010000"],["2024-07-24T09:21:36.010000"],["2024-07-24T09:21:37.010000"],["2024-07-24T09:21:38.010000"],["2024-07-24T09:21:39.010000"],["2024-07-24T09:21:40.010000"],["2024-07-24T09:21:41.010000"],["2024-07-24T09:21:42.010000"],["2024-07-24T09:21:43.010000"],["2024-07-24T09:21:44.010000"],["2024-07-24T09:21:45.010000"],["2024-07-24T09:21:46.010000"],["2024-07-24T09:21:47.010000"],["2024-07-24T09:21:48.010000"],["2024-07-24T09:21:49.010000"],["2024-07-24T09:21:50.010000"],["2024-07-24T09:21:51.010000"],["2024-07-24T09:21:52.010000"],["2024-07-24T09:21:53.010000"],["2024-07-24T09:21:54.010000"],["2024-07-24T09:21:55.010000"],["2024-07-24T09:21:56.010000"],["2024-07-24T09:21:57.010000"],["2024-07-24T09:21:58.010000"],["2024-07-24T09:21:59.010000"],["2024-07-24T09:22:00.010000"],["2024-07-24T09:22:01.010000"],["2024-07-24T09:22:02.010000"],["2024-07-24T09:22:03.010000"],["2024-07-24T09:22:04.010000"],["2024-07-24T09:22:05.010000"],["2024-07-24T09:22:06.010000"],["2024-07-24T09:22:07.010000"],["2024-07-24T09:22:08.010000"],["2024-07-24T09:22:09.010000"],["2024-07-24T09:22:10.010000"],["2024-07-24T09:22:11.010000"],["2024-07-24T09:22:12.010000"],["2024-07-24T09:22:13.010000"],["2024-07-24T09:22:14.010000"],["2024-07-24T09:22:15.010000"],["2024-07-24T09:22:16.010000"],["2024-07-24T09:22:17.010000"],["2024-07-24T09:22:18.010000"],["2024-07-24T09:22:19.010000"],["2024-07-24T09:22:20.010000"],["2024-07-24T09:22:21.010000"],["2024-07-24T09:22:22.010000"],["2024-07-24T09:22:23.010000"],["2024-07-24T09:22:24.010000"],["2024-07-24T09:22:25.010000"],["2024-07-24T09:22:26.010000"],["2024-07-24T09:22:27.010000"],["2024-07-24T09:22:28.010000"],["2024-07-24T09:22:29.010000"],["2024-07-24T09:22:30.010000"],["2024-07-24T09:22:31.010000"],["2024-07-24T09:22:32.010000"],["2024-07-24T09:22:33.010000"],["2024-07-24T09:22:34.010000"],["2024-07-24T09:22:35.010000"],["2024-07-24T09:22:36.010000"],["2024-07-24T09:22:37.010000"],["2024-07-24T09:22:38.010000"],["2024-07-24T09:22:39.010000"],["2024-07-24T09:22:40.010000"],["2024-07-24T09:22:41.010000"],["2024-07-24T09:22:42.010000"],["2024-07-24T09:22:43.010000"],["2024-07-24T09:22:44.010000"],["2024-07-24T09:22:45.010000"],["2024-07-24T09:22:46.010000"],["2024-07-24T09:22:47.010000"],["2024-07-24T09:22:48.010000"],["2024-07-24T09:22:49.010000"],["2024-07-24T09:22:50.010000"],["2024-07-24T09:22:51.010000"],["2024-07-24T09:22:52.010000"],["2024-07-24T09:22:53.010000"],["2024-07-24T09:22:54.010000"],["2024-07-24T09:22:55.010000"],["2024-07-24T09:22:56.010000"],["2024-07-24T09:22:57.010000"],["2024-07-24T09:22:58.010000"],["2024-07-24T09:22:59.010000"],["2024-07-24T09:23:00.010000"],["2024-07-24T09:23:01.010000"],["2024-07-24T09:23:02.010000"],["2024-07-24T09:23:03.010000"],["2024-07-24T09:23:04.010000"],["2024-07-24T09:23:05.010000"],["2024-07-24T09:23:06.010000"],["2024-07-24T09:23:07.010000"],["2024-07-24T09:23:08.010000"],["2024-07-24T09:23:09.010000"],["2024-07-24T09:23:10.010000"],["2024-07-24T09:23:11.010000"],["2024-07-24T09:23:12.010000"],["2024-07-24T09:23:13.010000"],["2024-07-24T09:23:14.010000"],["2024-07-24T09:23:15.010000"],["2024-07-24T09:23:16.010000"],["2024-07-24T09:23:17.010000"],["2024-07-24T09:23:18.010000"],["2024-07-24T09:23:19.010000"],["2024-07-24T09:23:20.010000"],["2024-07-24T09:23:21.010000"],["2024-07-24T09:23:22.010000"],["2024-07-24T09:23:23.010000"],["2024-07-24T09:23:24.010000"],["2024-07-24T09:23:25.010000"],["2024-07-24T09:23:26.010000"],["2024-07-24T09:23:27.010000"],["2024-07-24T09:23:28.010000"],["2024-07-24T09:23:29.010000"],["2024-07-24T09:23:30.010000"],["2024-07-24T09:23:31.010000"],["2024-07-24T09:23:32.010000"],["2024-07-24T09:23:33.010000"],["2024-07-24T09:23:34.010000"],["2024-07-24T09:23:35.010000"],["2024-07-24T09:23:36.010000"],["2024-07-24T09:23:37.010000"],["2024-07-24T09:23:38.010000"],["2024-07-24T09:23:39.010000"],["2024-07-24T09:23:40.010000"],["2024-07-24T09:23:41.010000"],["2024-07-24T09:23:42.010000"],["2024-07-24T09:23:43.010000"],["2024-07-24T09:23:44.010000"],["2024-07-24T09:23:45.010000"],["2024-07-24T09:23:46.010000"],["2024-07-24T09:23:47.010000"],["2024-07-24T09:23:48.010000"],["2024-07-24T09:23:49.010000"],["2024-07-24T09:23:50.010000"],["2024-07-24T09:23:51.010000"],["2024-07-24T09:23:52.010000"],["2024-07-24T09:23:53.010000"],["2024-07-24T09:23:54.010000"],["2024-07-24T09:23:55.010000"],["2024-07-24T09:23:56.010000"],["2024-07-24T09:23:57.010000"],["2024-07-24T09:23:58.010000"],["2024-07-24T09:23:59.010000"],["2024-07-24T09:24:00.010000"],["2024-07-24T09:24:01.010000"],["2024-07-24T09:24:02.010000"],["2024-07-24T09:24:03.010000"],["2024-07-24T09:24:04.010000"],["2024-07-24T09:24:05.010000"],["2024-07-24T09:24:06.010000"],["2024-07-24T09:24:07.010000"],["2024-07-24T09:24:08.010000"],["2024-07-24T09:24:09.010000"],["2024-07-24T09:24:10.010000"],["2024-07-24T09:24:11.010000"],["2024-07-24T09:24:12.010000"],["2024-07-24T09:24:13.010000"],["2024-07-24T09:24:14.010000"],["2024-07-24T09:24:15.010000"],["2024-07-24T09:24:16.010000"],["2024-07-24T09:24:17.010000"],["2024-07-24T09:24:18.010000"],["2024-07-24T09:24:19.010000"],["2024-07-24T09:24:20.010000"],["2024-07-24T09:24:21.010000"],["2024-07-24T09:24:22.010000"],["2024-07-24T09:24:23.010000"],["2024-07-24T09:24:24.010000"],["2024-07-24T09:24:25.010000"],["2024-07-24T09:24:26.010000"],["2024-07-24T09:24:27.010000"],["2024-07-24T09:24:28.010000"],["2024-07-24T09:24:29.010000"],["2024-07-24T09:24:30.010000"],["2024-07-24T09:24:31.010000"],["2024-07-24T09:24:32.010000"],["2024-07-24T09:24:33.010000"],["2024-07-24T09:24:34.010000"],["2024-07-24T09:24:35.010000"],["2024-07-24T09:24:36.010000"],["2024-07-24T09:24:37.010000"],["2024-07-24T09:24:38.010000"],["2024-07-24T09:24:39.010000"],["2024-07-24T09:24:40.010000"],["2024-07-24T09:24:41.010000"],["2024-07-24T09:24:42.010000"],["2024-07-24T09:24:43.010000"],["2024-07-24T09:24:44.010000"],["2024-07-24T09:24:45.010000"],["2024-07-24T09:24:46.010000"],["2024-07-24T09:24:47.010000"],["2024-07-24T09:24:48.010000"],["2024-07-24T09:24:49.010000"],["2024-07-24T09:24:50.010000"],["2024-07-24T09:24:51.010000"],["2024-07-24T09:24:52.010000"],["2024-07-24T09:24:53.010000"],["2024-07-24T09:24:54.010000"],["2024-07-24T09:24:55.010000"],["2024-07-24T09:24:56.010000"],["2024-07-24T09:24:57.010000"],["2024-07-24T09:24:58.010000"],["2024-07-24T09:24:59.010000"],["2024-07-24T09:25:00.010000"],["2024-07-24T09:25:01.010000"],["2024-07-24T09:25:02.010000"],["2024-07-24T09:25:03.010000"],["2024-07-24T09:25:04.010000"],["2024-07-24T09:25:05.010000"],["2024-07-24T09:25:06.010000"],["2024-07-24T09:25:07.010000"],["2024-07-24T09:25:08.010000"],["2024-07-24T09:25:09.010000"],["2024-07-24T09:25:10.010000"],["2024-07-24T09:25:11.010000"],["2024-07-24T09:25:12.010000"],["2024-07-24T09:25:13.010000"],["2024-07-24T09:25:14.010000"],["2024-07-24T09:25:15.010000"],["2024-07-24T09:25:16.010000"],["2024-07-24T09:25:17.010000"],["2024-07-24T09:25:18.010000"],["2024-07-24T09:25:19.010000"],["2024-07-24T09:25:20.010000"],["2024-07-24T09:25:21.010000"],["2024-07-24T09:25:22.010000"],["2024-07-24T09:25:23.010000"],["2024-07-24T09:25:24.010000"],["2024-07-24T09:25:25.010000"],["2024-07-24T09:25:26.010000"],["2024-07-24T09:25:27.010000"],["2024-07-24T09:25:28.010000"],["2024-07-24T09:25:29.010000"],["2024-07-24T09:25:30.010000"],["2024-07-24T09:25:31.010000"],["2024-07-24T09:25:32.010000"],["2024-07-24T09:25:33.010000"],["2024-07-24T09:25:34.010000"],["2024-07-24T09:25:35.010000"],["2024-07-24T09:25:36.010000"],["2024-07-24T09:25:37.010000"],["2024-07-24T09:25:38.010000"],["2024-07-24T09:25:39.010000"],["2024-07-24T09:25:40.010000"],["2024-07-24T09:25:41.010000"],["2024-07-24T09:25:42.010000"],["2024-07-24T09:25:43.010000"],["2024-07-24T09:25:44.010000"],["2024-07-24T09:25:45.010000"],["2024-07-24T09:25:46.010000"],["2024-07-24T09:25:47.010000"],["2024-07-24T09:25:48.010000"],["2024-07-24T09:25:49.010000"],["2024-07-24T09:25:50.010000"],["2024-07-24T09:25:51.010000"],["2024-07-24T09:25:52.010000"],["2024-07-24T09:25:53.010000"],["2024-07-24T09:25:54.010000"],["2024-07-24T09:25:55.010000"],["2024-07-24T09:25:56.010000"],["2024-07-24T09:25:57.010000"],["2024-07-24T09:25:58.010000"],["2024-07-24T09:25:59.010000"],["2024-07-24T09:26:00.010000"],["2024-07-24T09:26:01.010000"],["2024-07-24T09:26:02.010000"],["2024-07-24T09:26:03.010000"],["2024-07-24T09:26:04.010000"],["2024-07-24T09:26:05.010000"],["2024-07-24T09:26:06.010000"],["2024-07-24T09:26:07.010000"],["2024-07-24T09:26:08.010000"],["2024-07-24T09:26:09.010000"],["2024-07-24T09:26:10.010000"],["2024-07-24T09:26:11.010000"],["2024-07-24T09:26:12.010000"],["2024-07-24T09:26:13.010000"],["2024-07-24T09:26:14.010000"],["2024-07-24T09:26:15.010000"],["2024-07-24T09:26:16.010000"],["2024-07-24T09:26:17.010000"],["2024-07-24T09:26:18.010000"],["2024-07-24T09:26:19.010000"],["2024-07-24T09:26:20.010000"],["2024-07-24T09:26:21.010000"],["2024-07-24T09:26:22.010000"],["2024-07-24T09:26:23.010000"],["2024-07-24T09:26:24.010000"],["2024-07-24T09:26:25.010000"],["2024-07-24T09:26:26.010000"],["2024-07-24T09:26:27.010000"],["2024-07-24T09:26:28.010000"],["2024-07-24T09:26:29.010000"],["2024-07-24T09:26:30.010000"],["2024-07-24T09:26:31.010000"],["2024-07-24T09:26:32.010000"],["2024-07-24T09:26:33.010000"],["2024-07-24T09:26:34.010000"],["2024-07-24T09:26:35.010000"],["2024-07-24T09:26:36.010000"],["2024-07-24T09:26:37.010000"],["2024-07-24T09:26:38.010000"],["2024-07-24T09:26:39.010000"],["2024-07-24T09:26:40.010000"],["2024-07-24T09:26:41.010000"],["2024-07-24T09:26:42.010000"],["2024-07-24T09:26:43.010000"],["2024-07-24T09:26:44.010000"],["2024-07-24T09:26:45.010000"],["2024-07-24T09:26:46.010000"],["2024-07-24T09:26:47.010000"],["2024-07-24T09:26:48.010000"],["2024-07-24T09:26:49.010000"],["2024-07-24T09:26:50.010000"],["2024-07-24T09:26:51.010000"],["2024-07-24T09:26:52.010000"],["2024-07-24T09:26:53.010000"],["2024-07-24T09:26:54.010000"],["2024-07-24T09:26:55.010000"],["2024-07-24T09:26:56.010000"],["2024-07-24T09:26:57.010000"],["2024-07-24T09:26:58.010000"],["2024-07-24T09:26:59.010000"],["2024-07-24T09:27:00.010000"],["2024-07-24T09:27:01.010000"],["2024-07-24T09:27:02.010000"],["2024-07-24T09:27:03.010000"],["2024-07-24T09:27:04.010000"],["2024-07-24T09:27:05.010000"],["2024-07-24T09:27:06.010000"],["2024-07-24T09:27:07.010000"],["2024-07-24T09:27:08.010000"],["2024-07-24T09:27:09.010000"],["2024-07-24T09:27:10.010000"],["2024-07-24T09:27:11.010000"],["2024-07-24T09:27:12.010000"],["2024-07-24T09:27:13.010000"],["2024-07-24T09:27:14.010000"],["2024-07-24T09:27:15.010000"],["2024-07-24T09:27:16.010000"],["2024-07-24T09:27:17.010000"],["2024-07-24T09:27:18.010000"],["2024-07-24T09:27:19.010000"],["2024-07-24T09:27:20.010000"],["2024-07-24T09:27:21.010000"],["2024-07-24T09:27:22.010000"],["2024-07-24T09:27:23.010000"],["2024-07-24T09:27:24.010000"],["2024-07-24T09:27:25.010000"],["2024-07-24T09:27:26.010000"],["2024-07-24T09:27:27.010000"],["2024-07-24T09:27:28.010000"],["2024-07-24T09:27:29.010000"],["2024-07-24T09:27:30.010000"],["2024-07-24T09:27:31.010000"],["2024-07-24T09:27:32.010000"],["2024-07-24T09:27:33.010000"],["2024-07-24T09:27:34.010000"],["2024-07-24T09:27:35.010000"],["2024-07-24T09:27:36.010000"],["2024-07-24T09:27:37.010000"],["2024-07-24T09:27:38.010000"],["2024-07-24T09:27:39.010000"],["2024-07-24T09:27:40.010000"],["2024-07-24T09:27:41.010000"],["2024-07-24T09:27:42.010000"],["2024-07-24T09:27:43.010000"],["2024-07-24T09:27:44.010000"],["2024-07-24T09:27:45.010000"],["2024-07-24T09:27:46.010000"],["2024-07-24T09:27:47.010000"],["2024-07-24T09:27:48.010000"],["2024-07-24T09:27:49.010000"],["2024-07-24T09:27:50.010000"],["2024-07-24T09:27:51.010000"],["2024-07-24T09:27:52.010000"],["2024-07-24T09:27:53.010000"],["2024-07-24T09:27:54.010000"],["2024-07-24T09:27:55.010000"],["2024-07-24T09:27:56.010000"],["2024-07-24T09:27:57.010000"],["2024-07-24T09:27:58.010000"],["2024-07-24T09:27:59.010000"],["2024-07-24T09:28:00.010000"],["2024-07-24T09:28:01.010000"],["2024-07-24T09:28:02.010000"],["2024-07-24T09:28:03.010000"],["2024-07-24T09:28:04.010000"],["2024-07-24T09:28:05.010000"],["2024-07-24T09:28:06.010000"],["2024-07-24T09:28:07.010000"],["2024-07-24T09:28:08.010000"],["2024-07-24T09:28:09.010000"],["2024-07-24T09:28:10.010000"],["2024-07-24T09:28:11.010000"],["2024-07-24T09:28:12.010000"],["2024-07-24T09:28:13.010000"],["2024-07-24T09:28:14.010000"],["2024-07-24T09:28:15.010000"],["2024-07-24T09:28:16.010000"],["2024-07-24T09:28:17.010000"],["2024-07-24T09:28:18.010000"],["2024-07-24T09:28:19.010000"],["2024-07-24T09:28:20.010000"],["2024-07-24T09:28:21.010000"],["2024-07-24T09:28:22.010000"],["2024-07-24T09:28:23.010000"],["2024-07-24T09:28:24.010000"],["2024-07-24T09:28:25.010000"],["2024-07-24T09:28:26.010000"],["2024-07-24T09:28:27.010000"],["2024-07-24T09:28:28.010000"],["2024-07-24T09:28:29.010000"],["2024-07-24T09:28:30.010000"],["2024-07-24T09:28:31.010000"],["2024-07-24T09:28:32.010000"],["2024-07-24T09:28:33.010000"],["2024-07-24T09:28:34.010000"],["2024-07-24T09:28:35.010000"],["2024-07-24T09:28:36.010000"],["2024-07-24T09:28:37.010000"],["2024-07-24T09:28:38.010000"],["2024-07-24T09:28:39.010000"],["2024-07-24T09:28:40.010000"],["2024-07-24T09:28:41.010000"],["2024-07-24T09:28:42.010000"],["2024-07-24T09:28:43.010000"],["2024-07-24T09:28:44.010000"],["2024-07-24T09:28:45.010000"],["2024-07-24T09:28:46.010000"],["2024-07-24T09:28:47.010000"],["2024-07-24T09:28:48.010000"],["2024-07-24T09:28:49.010000"],["2024-07-24T09:28:50.010000"],["2024-07-24T09:28:51.010000"],["2024-07-24T09:28:52.010000"],["2024-07-24T09:28:53.010000"],["2024-07-24T09:28:54.010000"],["2024-07-24T09:28:55.010000"],["2024-07-24T09:28:56.010000"],["2024-07-24T09:28:57.010000"],["2024-07-24T09:28:58.010000"],["2024-07-24T09:28:59.010000"],["2024-07-24T09:29:00.010000"],["2024-07-24T09:29:01.010000"],["2024-07-24T09:29:02.010000"],["2024-07-24T09:29:03.010000"],["2024-07-24T09:29:04.010000"],["2024-07-24T09:29:05.010000"],["2024-07-24T09:29:06.010000"],["2024-07-24T09:29:07.010000"],["2024-07-24T09:29:08.010000"],["2024-07-24T09:29:09.010000"],["2024-07-24T09:29:10.010000"],["2024-07-24T09:29:11.010000"],["2024-07-24T09:29:12.010000"],["2024-07-24T09:29:13.010000"],["2024-07-24T09:29:14.010000"],["2024-07-24T09:29:15.010000"],["2024-07-24T09:29:16.010000"],["2024-07-24T09:29:17.010000"],["2024-07-24T09:29:18.010000"],["2024-07-24T09:29:19.010000"],["2024-07-24T09:29:20.010000"],["2024-07-24T09:29:21.010000"],["2024-07-24T09:29:22.010000"],["2024-07-24T09:29:23.010000"],["2024-07-24T09:29:24.010000"],["2024-07-24T09:29:25.010000"],["2024-07-24T09:29:26.010000"],["2024-07-24T09:29:27.010000"],["2024-07-24T09:29:28.010000"],["2024-07-24T09:29:29.010000"],["2024-07-24T09:29:30.010000"],["2024-07-24T09:29:31.010000"],["2024-07-24T09:29:32.010000"],["2024-07-24T09:29:33.010000"],["2024-07-24T09:29:34.010000"],["2024-07-24T09:29:35.010000"],["2024-07-24T09:29:36.010000"],["2024-07-24T09:29:37.010000"],["2024-07-24T09:29:38.010000"],["2024-07-24T09:29:39.010000"],["2024-07-24T09:29:40.010000"],["2024-07-24T09:29:41.010000"],["2024-07-24T09:29:42.010000"],["2024-07-24T09:29:43.010000"],["2024-07-24T09:29:44.010000"],["2024-07-24T09:29:45.010000"],["2024-07-24T09:29:46.010000"],["2024-07-24T09:29:47.010000"],["2024-07-24T09:29:48.010000"],["2024-07-24T09:29:49.010000"],["2024-07-24T09:29:50.010000"],["2024-07-24T09:29:51.010000"],["2024-07-24T09:29:52.010000"],["2024-07-24T09:29:53.010000"],["2024-07-24T09:29:54.010000"],["2024-07-24T09:29:55.010000"],["2024-07-24T09:29:56.010000"],["2024-07-24T09:29:57.010000"],["2024-07-24T09:29:58.010000"],["2024-07-24T09:29:59.010000"],["2024-07-24T09:30:00.010000"],["2024-07-24T09:30:01.010000"],["2024-07-24T09:30:02.010000"],["2024-07-24T09:30:03.010000"],["2024-07-24T09:30:04.010000"],["2024-07-24T09:30:05.010000"],["2024-07-24T09:30:06.010000"],["2024-07-24T09:30:07.010000"],["2024-07-24T09:30:08.010000"],["2024-07-24T09:30:09.010000"],["2024-07-24T09:30:10.010000"],["2024-07-24T09:30:11.010000"],["2024-07-24T09:30:12.010000"],["2024-07-24T09:30:13.010000"],["2024-07-24T09:30:14.010000"],["2024-07-24T09:30:15.010000"],["2024-07-24T09:30:16.010000"],["2024-07-24T09:30:17.010000"],["2024-07-24T09:30:18.010000"],["2024-07-24T09:30:19.010000"],["2024-07-24T09:30:20.010000"],["2024-07-24T09:30:21.010000"],["2024-07-24T09:30:22.010000"],["2024-07-24T09:30:23.010000"],["2024-07-24T09:30:24.010000"],["2024-07-24T09:30:25.010000"],["2024-07-24T09:30:26.010000"],["2024-07-24T09:30:27.010000"],["2024-07-24T09:30:28.010000"],["2024-07-24T09:30:29.010000"],["2024-07-24T09:30:30.010000"],["2024-07-24T09:30:31.010000"],["2024-07-24T09:30:32.010000"],["2024-07-24T09:30:33.010000"],["2024-07-24T09:30:34.010000"],["2024-07-24T09:30:35.010000"],["2024-07-24T09:30:36.010000"],["2024-07-24T09:30:37.010000"],["2024-07-24T09:30:38.010000"],["2024-07-24T09:30:39.010000"],["2024-07-24T09:30:40.010000"],["2024-07-24T09:30:41.010000"],["2024-07-24T09:30:42.010000"],["2024-07-24T09:30:43.010000"],["2024-07-24T09:30:44.010000"],["2024-07-24T09:30:45.010000"],["2024-07-24T09:30:46.010000"],["2024-07-24T09:30:47.010000"],["2024-07-24T09:30:48.010000"],["2024-07-24T09:30:49.010000"],["2024-07-24T09:30:50.010000"],["2024-07-24T09:30:51.010000"],["2024-07-24T09:30:52.010000"],["2024-07-24T09:30:53.010000"],["2024-07-24T09:30:54.010000"],["2024-07-24T09:30:55.010000"],["2024-07-24T09:30:56.010000"],["2024-07-24T09:30:57.010000"],["2024-07-24T09:30:58.010000"],["2024-07-24T09:30:59.010000"],["2024-07-24T09:31:00.010000"],["2024-07-24T09:31:01.010000"],["2024-07-24T09:31:02.010000"],["2024-07-24T09:31:03.010000"],["2024-07-24T09:31:04.010000"],["2024-07-24T09:31:05.010000"],["2024-07-24T09:31:06.010000"],["2024-07-24T09:31:07.010000"],["2024-07-24T09:31:08.010000"],["2024-07-24T09:31:09.010000"],["2024-07-24T09:31:10.010000"],["2024-07-24T09:31:11.010000"],["2024-07-24T09:31:12.010000"],["2024-07-24T09:31:13.010000"],["2024-07-24T09:31:14.010000"],["2024-07-24T09:31:15.010000"],["2024-07-24T09:31:16.010000"],["2024-07-24T09:31:17.010000"],["2024-07-24T09:31:18.010000"],["2024-07-24T09:31:19.010000"],["2024-07-24T09:31:20.010000"],["2024-07-24T09:31:21.010000"],["2024-07-24T09:31:22.010000"],["2024-07-24T09:31:23.010000"],["2024-07-24T09:31:24.010000"],["2024-07-24T09:31:25.010000"],["2024-07-24T09:31:26.010000"],["2024-07-24T09:31:27.010000"],["2024-07-24T09:31:28.010000"],["2024-07-24T09:31:29.010000"],["2024-07-24T09:31:30.010000"],["2024-07-24T09:31:31.010000"],["2024-07-24T09:31:32.010000"],["2024-07-24T09:31:33.010000"],["2024-07-24T09:31:34.010000"],["2024-07-24T09:31:35.010000"],["2024-07-24T09:31:36.010000"],["2024-07-24T09:31:37.010000"],["2024-07-24T09:31:38.010000"],["2024-07-24T09:31:39.010000"],["2024-07-24T09:31:40.010000"],["2024-07-24T09:31:41.010000"],["2024-07-24T09:31:42.010000"],["2024-07-24T09:31:43.010000"],["2024-07-24T09:31:44.010000"],["2024-07-24T09:31:45.010000"],["2024-07-24T09:31:46.010000"],["2024-07-24T09:31:47.010000"],["2024-07-24T09:31:48.010000"],["2024-07-24T09:31:49.010000"],["2024-07-24T09:31:50.010000"],["2024-07-24T09:31:51.010000"],["2024-07-24T09:31:52.010000"],["2024-07-24T09:31:53.010000"],["2024-07-24T09:31:54.010000"],["2024-07-24T09:31:55.010000"],["2024-07-24T09:31:56.010000"],["2024-07-24T09:31:57.010000"],["2024-07-24T09:31:58.010000"],["2024-07-24T09:31:59.010000"],["2024-07-24T09:32:00.010000"],["2024-07-24T09:32:01.010000"],["2024-07-24T09:32:02.010000"],["2024-07-24T09:32:03.010000"],["2024-07-24T09:32:04.010000"],["2024-07-24T09:32:05.010000"],["2024-07-24T09:32:06.010000"],["2024-07-24T09:32:07.010000"],["2024-07-24T09:32:08.010000"],["2024-07-24T09:32:09.010000"],["2024-07-24T09:32:10.010000"],["2024-07-24T09:32:11.010000"],["2024-07-24T09:32:12.010000"],["2024-07-24T09:32:13.010000"],["2024-07-24T09:32:14.010000"],["2024-07-24T09:32:15.010000"],["2024-07-24T09:32:16.010000"],["2024-07-24T09:32:17.010000"],["2024-07-24T09:32:18.010000"],["2024-07-24T09:32:19.010000"],["2024-07-24T09:32:20.010000"],["2024-07-24T09:32:21.010000"],["2024-07-24T09:32:22.010000"],["2024-07-24T09:32:23.010000"],["2024-07-24T09:32:24.010000"],["2024-07-24T09:32:25.010000"],["2024-07-24T09:32:26.010000"],["2024-07-24T09:32:27.010000"],["2024-07-24T09:32:28.010000"],["2024-07-24T09:32:29.010000"],["2024-07-24T09:32:30.010000"],["2024-07-24T09:32:31.010000"],["2024-07-24T09:32:32.010000"],["2024-07-24T09:32:33.010000"],["2024-07-24T09:32:34.010000"],["2024-07-24T09:32:35.010000"],["2024-07-24T09:32:36.010000"],["2024-07-24T09:32:37.010000"],["2024-07-24T09:32:38.010000"],["2024-07-24T09:32:39.010000"],["2024-07-24T09:32:40.010000"],["2024-07-24T09:32:41.010000"],["2024-07-24T09:32:42.010000"],["2024-07-24T09:32:43.010000"],["2024-07-24T09:32:44.010000"],["2024-07-24T09:32:45.010000"],["2024-07-24T09:32:46.010000"],["2024-07-24T09:32:47.010000"],["2024-07-24T09:32:48.010000"],["2024-07-24T09:32:49.010000"],["2024-07-24T09:32:50.010000"],["2024-07-24T09:32:51.010000"],["2024-07-24T09:32:52.010000"],["2024-07-24T09:32:53.010000"],["2024-07-24T09:32:54.010000"],["2024-07-24T09:32:55.010000"],["2024-07-24T09:32:56.010000"],["2024-07-24T09:32:57.010000"],["2024-07-24T09:32:58.010000"],["2024-07-24T09:32:59.010000"],["2024-07-24T09:33:00.010000"],["2024-07-24T09:33:01.010000"],["2024-07-24T09:33:02.010000"],["2024-07-24T09:33:03.010000"],["2024-07-24T09:33:04.010000"],["2024-07-24T09:33:05.010000"],["2024-07-24T09:33:06.010000"],["2024-07-24T09:33:07.010000"],["2024-07-24T09:33:08.010000"],["2024-07-24T09:33:09.010000"],["2024-07-24T09:33:10.010000"],["2024-07-24T09:33:11.010000"],["2024-07-24T09:33:12.010000"],["2024-07-24T09:33:13.010000"],["2024-07-24T09:33:14.010000"],["2024-07-24T09:33:15.010000"],["2024-07-24T09:33:16.010000"],["2024-07-24T09:33:17.010000"],["2024-07-24T09:33:18.010000"],["2024-07-24T09:33:19.010000"],["2024-07-24T09:33:20.010000"],["2024-07-24T09:33:21.010000"],["2024-07-24T09:33:22.010000"],["2024-07-24T09:33:23.010000"],["2024-07-24T09:33:24.010000"],["2024-07-24T09:33:25.010000"],["2024-07-24T09:33:26.010000"],["2024-07-24T09:33:27.010000"],["2024-07-24T09:33:28.010000"],["2024-07-24T09:33:29.010000"],["2024-07-24T09:33:30.010000"],["2024-07-24T09:33:31.010000"],["2024-07-24T09:33:32.010000"],["2024-07-24T09:33:33.010000"],["2024-07-24T09:33:34.010000"],["2024-07-24T09:33:35.010000"],["2024-07-24T09:33:36.010000"],["2024-07-24T09:33:37.010000"],["2024-07-24T09:33:38.010000"],["2024-07-24T09:33:39.010000"],["2024-07-24T09:33:40.010000"],["2024-07-24T09:33:41.010000"],["2024-07-24T09:33:42.010000"],["2024-07-24T09:33:43.010000"],["2024-07-24T09:33:44.010000"],["2024-07-24T09:33:45.010000"],["2024-07-24T09:33:46.010000"],["2024-07-24T09:33:47.010000"],["2024-07-24T09:33:48.010000"],["2024-07-24T09:33:49.010000"],["2024-07-24T09:33:50.010000"],["2024-07-24T09:33:51.010000"],["2024-07-24T09:33:52.010000"],["2024-07-24T09:33:53.010000"],["2024-07-24T09:33:54.010000"],["2024-07-24T09:33:55.010000"],["2024-07-24T09:33:56.010000"],["2024-07-24T09:33:57.010000"],["2024-07-24T09:33:58.010000"],["2024-07-24T09:33:59.010000"],["2024-07-24T09:34:00.010000"],["2024-07-24T09:34:01.010000"],["2024-07-24T09:34:02.010000"],["2024-07-24T09:34:03.010000"],["2024-07-24T09:34:04.010000"],["2024-07-24T09:34:05.010000"],["2024-07-24T09:34:06.010000"],["2024-07-24T09:34:07.010000"],["2024-07-24T09:34:08.010000"],["2024-07-24T09:34:09.010000"],["2024-07-24T09:34:10.010000"],["2024-07-24T09:34:11.010000"],["2024-07-24T09:34:12.010000"],["2024-07-24T09:34:13.010000"],["2024-07-24T09:34:14.010000"],["2024-07-24T09:34:15.010000"],["2024-07-24T09:34:16.010000"],["2024-07-24T09:34:17.010000"],["2024-07-24T09:34:18.010000"],["2024-07-24T09:34:19.010000"],["2024-07-24T09:34:20.010000"],["2024-07-24T09:34:21.010000"],["2024-07-24T09:34:22.010000"],["2024-07-24T09:34:23.010000"],["2024-07-24T09:34:24.010000"],["2024-07-24T09:34:25.010000"],["2024-07-24T09:34:26.010000"],["2024-07-24T09:34:27.010000"],["2024-07-24T09:34:28.010000"],["2024-07-24T09:34:29.010000"],["2024-07-24T09:34:30.010000"],["2024-07-24T09:34:31.010000"],["2024-07-24T09:34:32.010000"],["2024-07-24T09:34:33.010000"],["2024-07-24T09:34:34.010000"],["2024-07-24T09:34:35.010000"],["2024-07-24T09:34:36.010000"],["2024-07-24T09:34:37.010000"],["2024-07-24T09:34:38.010000"],["2024-07-24T09:34:39.010000"],["2024-07-24T09:34:40.010000"],["2024-07-24T09:34:41.010000"],["2024-07-24T09:34:42.010000"],["2024-07-24T09:34:43.010000"],["2024-07-24T09:34:44.010000"],["2024-07-24T09:34:45.010000"],["2024-07-24T09:34:46.010000"],["2024-07-24T09:34:47.010000"],["2024-07-24T09:34:48.010000"],["2024-07-24T09:34:49.010000"],["2024-07-24T09:34:50.010000"],["2024-07-24T09:34:51.010000"],["2024-07-24T09:34:52.010000"],["2024-07-24T09:34:53.010000"],["2024-07-24T09:34:54.010000"],["2024-07-24T09:34:55.010000"],["2024-07-24T09:34:56.010000"],["2024-07-24T09:34:57.010000"],["2024-07-24T09:34:58.010000"],["2024-07-24T09:34:59.010000"],["2024-07-24T09:35:00.010000"],["2024-07-24T09:35:01.010000"],["2024-07-24T09:35:02.010000"],["2024-07-24T09:35:03.010000"],["2024-07-24T09:35:04.010000"],["2024-07-24T09:35:05.010000"],["2024-07-24T09:35:06.010000"],["2024-07-24T09:35:07.010000"],["2024-07-24T09:35:08.010000"],["2024-07-24T09:35:09.010000"],["2024-07-24T09:35:10.010000"],["2024-07-24T09:35:11.010000"],["2024-07-24T09:35:12.010000"],["2024-07-24T09:35:13.010000"],["2024-07-24T09:35:14.010000"],["2024-07-24T09:35:15.010000"],["2024-07-24T09:35:16.010000"],["2024-07-24T09:35:17.010000"],["2024-07-24T09:35:18.010000"],["2024-07-24T09:35:19.010000"],["2024-07-24T09:35:20.010000"],["2024-07-24T09:35:21.010000"],["2024-07-24T09:35:22.010000"],["2024-07-24T09:35:23.010000"],["2024-07-24T09:35:24.010000"],["2024-07-24T09:35:25.010000"],["2024-07-24T09:35:26.010000"],["2024-07-24T09:35:27.010000"],["2024-07-24T09:35:28.010000"],["2024-07-24T09:35:29.010000"],["2024-07-24T09:35:30.010000"],["2024-07-24T09:35:31.010000"],["2024-07-24T09:35:32.010000"],["2024-07-24T09:35:33.010000"],["2024-07-24T09:35:34.010000"],["2024-07-24T09:35:35.010000"],["2024-07-24T09:35:36.010000"],["2024-07-24T09:35:37.010000"],["2024-07-24T09:35:38.010000"],["2024-07-24T09:35:39.010000"],["2024-07-24T09:35:40.010000"],["2024-07-24T09:35:41.010000"],["2024-07-24T09:35:42.010000"],["2024-07-24T09:35:43.010000"],["2024-07-24T09:35:44.010000"],["2024-07-24T09:35:45.010000"],["2024-07-24T09:35:46.010000"],["2024-07-24T09:35:47.010000"],["2024-07-24T09:35:48.010000"],["2024-07-24T09:35:49.010000"],["2024-07-24T09:35:50.010000"],["2024-07-24T09:35:51.010000"],["2024-07-24T09:35:52.010000"],["2024-07-24T09:35:53.010000"],["2024-07-24T09:35:54.010000"],["2024-07-24T09:35:55.010000"],["2024-07-24T09:35:56.010000"],["2024-07-24T09:35:57.010000"],["2024-07-24T09:35:58.010000"],["2024-07-24T09:35:59.010000"],["2024-07-24T09:36:00.010000"],["2024-07-24T09:36:01.010000"],["2024-07-24T09:36:02.010000"],["2024-07-24T09:36:03.010000"],["2024-07-24T09:36:04.010000"],["2024-07-24T09:36:05.010000"],["2024-07-24T09:36:06.010000"],["2024-07-24T09:36:07.010000"],["2024-07-24T09:36:08.010000"],["2024-07-24T09:36:09.010000"],["2024-07-24T09:36:10.010000"],["2024-07-24T09:36:11.010000"],["2024-07-24T09:36:12.010000"],["2024-07-24T09:36:13.010000"],["2024-07-24T09:36:14.010000"],["2024-07-24T09:36:15.010000"],["2024-07-24T09:36:16.010000"],["2024-07-24T09:36:17.010000"],["2024-07-24T09:36:18.010000"],["2024-07-24T09:36:19.010000"],["2024-07-24T09:36:20.010000"],["2024-07-24T09:36:21.010000"],["2024-07-24T09:36:22.010000"],["2024-07-24T09:36:23.010000"],["2024-07-24T09:36:24.010000"],["2024-07-24T09:36:25.010000"],["2024-07-24T09:36:26.010000"],["2024-07-24T09:36:27.010000"],["2024-07-24T09:36:28.010000"],["2024-07-24T09:36:29.010000"],["2024-07-24T09:36:30.010000"],["2024-07-24T09:36:31.010000"],["2024-07-24T09:36:32.010000"],["2024-07-24T09:36:33.010000"],["2024-07-24T09:36:34.010000"],["2024-07-24T09:36:35.010000"],["2024-07-24T09:36:36.010000"],["2024-07-24T09:36:37.010000"],["2024-07-24T09:36:38.010000"],["2024-07-24T09:36:39.010000"],["2024-07-24T09:36:40.010000"],["2024-07-24T09:36:41.010000"],["2024-07-24T09:36:42.010000"],["2024-07-24T09:36:43.010000"],["2024-07-24T09:36:44.010000"],["2024-07-24T09:36:45.010000"],["2024-07-24T09:36:46.010000"],["2024-07-24T09:36:47.010000"],["2024-07-24T09:36:48.010000"],["2024-07-24T09:36:49.010000"],["2024-07-24T09:36:50.010000"],["2024-07-24T09:36:51.010000"],["2024-07-24T09:36:52.010000"],["2024-07-24T09:36:53.010000"],["2024-07-24T09:36:54.010000"],["2024-07-24T09:36:55.010000"],["2024-07-24T09:36:56.010000"],["2024-07-24T09:36:57.010000"],["2024-07-24T09:36:58.010000"],["2024-07-24T09:36:59.010000"],["2024-07-24T09:37:00.010000"],["2024-07-24T09:37:01.010000"],["2024-07-24T09:37:02.010000"],["2024-07-24T09:37:03.010000"],["2024-07-24T09:37:04.010000"],["2024-07-24T09:37:05.010000"],["2024-07-24T09:37:06.010000"],["2024-07-24T09:37:07.010000"],["2024-07-24T09:37:08.010000"],["2024-07-24T09:37:09.010000"],["2024-07-24T09:37:10.010000"],["2024-07-24T09:37:11.010000"],["2024-07-24T09:37:12.010000"],["2024-07-24T09:37:13.010000"],["2024-07-24T09:37:14.010000"],["2024-07-24T09:37:15.010000"],["2024-07-24T09:37:16.010000"],["2024-07-24T09:37:17.010000"],["2024-07-24T09:37:18.010000"],["2024-07-24T09:37:19.010000"],["2024-07-24T09:37:20.010000"],["2024-07-24T09:37:21.010000"],["2024-07-24T09:37:22.010000"],["2024-07-24T09:37:23.010000"],["2024-07-24T09:37:24.010000"],["2024-07-24T09:37:25.010000"],["2024-07-24T09:37:26.010000"],["2024-07-24T09:37:27.010000"],["2024-07-24T09:37:28.010000"],["2024-07-24T09:37:29.010000"],["2024-07-24T09:37:30.010000"],["2024-07-24T09:37:31.010000"],["2024-07-24T09:37:32.010000"],["2024-07-24T09:37:33.010000"],["2024-07-24T09:37:34.010000"],["2024-07-24T09:37:35.010000"],["2024-07-24T09:37:36.010000"],["2024-07-24T09:37:37.010000"],["2024-07-24T09:37:38.010000"],["2024-07-24T09:37:39.010000"],["2024-07-24T09:37:40.010000"],["2024-07-24T09:37:41.010000"],["2024-07-24T09:37:42.010000"],["2024-07-24T09:37:43.010000"],["2024-07-24T09:37:44.010000"],["2024-07-24T09:37:45.010000"],["2024-07-24T09:37:46.010000"],["2024-07-24T09:37:47.010000"],["2024-07-24T09:37:48.010000"],["2024-07-24T09:37:49.010000"],["2024-07-24T09:37:50.010000"],["2024-07-24T09:37:51.010000"],["2024-07-24T09:37:52.010000"],["2024-07-24T09:37:53.010000"],["2024-07-24T09:37:54.010000"],["2024-07-24T09:37:55.010000"],["2024-07-24T09:37:56.010000"],["2024-07-24T09:37:57.010000"],["2024-07-24T09:37:58.010000"],["2024-07-24T09:37:59.010000"],["2024-07-24T09:38:00.010000"],["2024-07-24T09:38:01.010000"],["2024-07-24T09:38:02.010000"],["2024-07-24T09:38:03.010000"],["2024-07-24T09:38:04.010000"],["2024-07-24T09:38:05.010000"],["2024-07-24T09:38:06.010000"],["2024-07-24T09:38:07.010000"],["2024-07-24T09:38:08.010000"],["2024-07-24T09:38:09.010000"],["2024-07-24T09:38:10.010000"],["2024-07-24T09:38:11.010000"],["2024-07-24T09:38:12.010000"],["2024-07-24T09:38:13.010000"],["2024-07-24T09:38:14.010000"],["2024-07-24T09:38:15.010000"],["2024-07-24T09:38:16.010000"],["2024-07-24T09:38:17.010000"],["2024-07-24T09:38:18.010000"],["2024-07-24T09:38:19.010000"],["2024-07-24T09:38:20.010000"],["2024-07-24T09:38:21.010000"],["2024-07-24T09:38:22.010000"],["2024-07-24T09:38:23.010000"],["2024-07-24T09:38:24.010000"],["2024-07-24T09:38:25.010000"],["2024-07-24T09:38:26.010000"],["2024-07-24T09:38:27.010000"],["2024-07-24T09:38:28.010000"],["2024-07-24T09:38:29.010000"],["2024-07-24T09:38:30.010000"],["2024-07-24T09:38:31.010000"],["2024-07-24T09:38:32.010000"],["2024-07-24T09:38:33.010000"],["2024-07-24T09:38:34.010000"],["2024-07-24T09:38:35.010000"],["2024-07-24T09:38:36.010000"],["2024-07-24T09:38:37.010000"],["2024-07-24T09:38:38.010000"],["2024-07-24T09:38:39.010000"],["2024-07-24T09:38:40.010000"],["2024-07-24T09:38:41.010000"],["2024-07-24T09:38:42.010000"],["2024-07-24T09:38:43.010000"],["2024-07-24T09:38:44.010000"],["2024-07-24T09:38:45.010000"],["2024-07-24T09:38:46.010000"],["2024-07-24T09:38:47.010000"],["2024-07-24T09:38:48.010000"],["2024-07-24T09:38:49.010000"],["2024-07-24T09:38:50.010000"],["2024-07-24T09:38:51.010000"],["2024-07-24T09:38:52.010000"],["2024-07-24T09:38:53.010000"],["2024-07-24T09:38:54.010000"],["2024-07-24T09:38:55.010000"],["2024-07-24T09:38:56.010000"],["2024-07-24T09:38:57.010000"],["2024-07-24T09:38:58.010000"],["2024-07-24T09:38:59.010000"],["2024-07-24T09:39:00.010000"],["2024-07-24T09:39:01.010000"],["2024-07-24T09:39:02.010000"],["2024-07-24T09:39:03.010000"],["2024-07-24T09:39:04.010000"],["2024-07-24T09:39:05.010000"],["2024-07-24T09:39:06.010000"],["2024-07-24T09:39:07.010000"],["2024-07-24T09:39:08.010000"],["2024-07-24T09:39:09.010000"],["2024-07-24T09:39:10.010000"],["2024-07-24T09:39:11.010000"],["2024-07-24T09:39:12.010000"],["2024-07-24T09:39:13.010000"],["2024-07-24T09:39:14.010000"],["2024-07-24T09:39:15.010000"],["2024-07-24T09:39:16.010000"],["2024-07-24T09:39:17.010000"],["2024-07-24T09:39:18.010000"],["2024-07-24T09:39:19.010000"],["2024-07-24T09:39:20.010000"],["2024-07-24T09:39:21.010000"],["2024-07-24T09:39:22.010000"],["2024-07-24T09:39:23.010000"],["2024-07-24T09:39:24.010000"],["2024-07-24T09:39:25.010000"],["2024-07-24T09:39:26.010000"],["2024-07-24T09:39:27.010000"],["2024-07-24T09:39:28.010000"],["2024-07-24T09:39:29.010000"],["2024-07-24T09:39:30.010000"],["2024-07-24T09:39:31.010000"],["2024-07-24T09:39:32.010000"],["2024-07-24T09:39:33.010000"],["2024-07-24T09:39:34.010000"],["2024-07-24T09:39:35.010000"],["2024-07-24T09:39:36.010000"],["2024-07-24T09:39:37.010000"],["2024-07-24T09:39:38.010000"],["2024-07-24T09:39:39.010000"],["2024-07-24T09:39:40.010000"],["2024-07-24T09:39:41.010000"],["2024-07-24T09:39:42.010000"],["2024-07-24T09:39:43.010000"],["2024-07-24T09:39:44.010000"],["2024-07-24T09:39:45.010000"],["2024-07-24T09:39:46.010000"],["2024-07-24T09:39:47.010000"],["2024-07-24T09:39:48.010000"],["2024-07-24T09:39:49.010000"],["2024-07-24T09:39:50.010000"],["2024-07-24T09:39:51.010000"],["2024-07-24T09:39:52.010000"],["2024-07-24T09:39:53.010000"],["2024-07-24T09:39:54.010000"],["2024-07-24T09:39:55.010000"],["2024-07-24T09:39:56.010000"],["2024-07-24T09:39:57.010000"],["2024-07-24T09:39:58.010000"],["2024-07-24T09:39:59.010000"],["2024-07-24T09:40:00.010000"],["2024-07-24T09:40:01.010000"],["2024-07-24T09:40:02.010000"],["2024-07-24T09:40:03.010000"],["2024-07-24T09:40:04.010000"],["2024-07-24T09:40:05.010000"],["2024-07-24T09:40:06.010000"],["2024-07-24T09:40:07.010000"],["2024-07-24T09:40:08.010000"],["2024-07-24T09:40:09.010000"],["2024-07-24T09:40:10.010000"],["2024-07-24T09:40:11.010000"],["2024-07-24T09:40:12.010000"],["2024-07-24T09:40:13.010000"],["2024-07-24T09:40:14.010000"],["2024-07-24T09:40:15.010000"],["2024-07-24T09:40:16.010000"],["2024-07-24T09:40:17.010000"],["2024-07-24T09:40:18.010000"],["2024-07-24T09:40:19.010000"],["2024-07-24T09:40:20.010000"],["2024-07-24T09:40:21.010000"],["2024-07-24T09:40:22.010000"],["2024-07-24T09:40:23.010000"],["2024-07-24T09:40:24.010000"],["2024-07-24T09:40:25.010000"],["2024-07-24T09:40:26.010000"],["2024-07-24T09:40:27.010000"],["2024-07-24T09:40:28.010000"],["2024-07-24T09:40:29.010000"],["2024-07-24T09:40:30.010000"],["2024-07-24T09:40:31.010000"],["2024-07-24T09:40:32.010000"],["2024-07-24T09:40:33.010000"],["2024-07-24T09:40:34.010000"],["2024-07-24T09:40:35.010000"],["2024-07-24T09:40:36.010000"],["2024-07-24T09:40:37.010000"],["2024-07-24T09:40:38.010000"],["2024-07-24T09:40:39.010000"],["2024-07-24T09:40:40.010000"],["2024-07-24T09:40:41.010000"],["2024-07-24T09:40:42.010000"],["2024-07-24T09:40:43.010000"],["2024-07-24T09:40:44.010000"],["2024-07-24T09:40:45.010000"],["2024-07-24T09:40:46.010000"],["2024-07-24T09:40:47.010000"],["2024-07-24T09:40:48.010000"],["2024-07-24T09:40:49.010000"],["2024-07-24T09:40:50.010000"],["2024-07-24T09:40:51.010000"],["2024-07-24T09:40:52.010000"],["2024-07-24T09:40:53.010000"],["2024-07-24T09:40:54.010000"],["2024-07-24T09:40:55.010000"],["2024-07-24T09:40:56.010000"],["2024-07-24T09:40:57.010000"],["2024-07-24T09:40:58.010000"],["2024-07-24T09:40:59.010000"],["2024-07-24T09:41:00.010000"],["2024-07-24T09:41:01.010000"],["2024-07-24T09:41:02.010000"],["2024-07-24T09:41:03.010000"],["2024-07-24T09:41:04.010000"],["2024-07-24T09:41:05.010000"],["2024-07-24T09:41:06.010000"],["2024-07-24T09:41:07.010000"],["2024-07-24T09:41:08.010000"],["2024-07-24T09:41:09.010000"],["2024-07-24T09:41:10.010000"],["2024-07-24T09:41:11.010000"],["2024-07-24T09:41:12.010000"],["2024-07-24T09:41:13.010000"],["2024-07-24T09:41:14.010000"],["2024-07-24T09:41:15.010000"],["2024-07-24T09:41:16.010000"],["2024-07-24T09:41:17.010000"],["2024-07-24T09:41:18.010000"],["2024-07-24T09:41:19.010000"],["2024-07-24T09:41:20.010000"],["2024-07-24T09:41:21.010000"],["2024-07-24T09:41:22.010000"],["2024-07-24T09:41:23.010000"],["2024-07-24T09:41:24.010000"],["2024-07-24T09:41:25.010000"],["2024-07-24T09:41:26.010000"],["2024-07-24T09:41:27.010000"],["2024-07-24T09:41:28.010000"],["2024-07-24T09:41:29.010000"],["2024-07-24T09:41:30.010000"],["2024-07-24T09:41:31.010000"],["2024-07-24T09:41:32.010000"],["2024-07-24T09:41:33.010000"],["2024-07-24T09:41:34.010000"],["2024-07-24T09:41:35.010000"],["2024-07-24T09:41:36.010000"],["2024-07-24T09:41:37.010000"],["2024-07-24T09:41:38.010000"],["2024-07-24T09:41:39.010000"],["2024-07-24T09:41:40.010000"],["2024-07-24T09:41:41.010000"],["2024-07-24T09:41:42.010000"],["2024-07-24T09:41:43.010000"],["2024-07-24T09:41:44.010000"],["2024-07-24T09:41:45.010000"],["2024-07-24T09:41:46.010000"],["2024-07-24T09:41:47.010000"],["2024-07-24T09:41:48.010000"],["2024-07-24T09:41:49.010000"],["2024-07-24T09:41:50.010000"],["2024-07-24T09:41:51.010000"],["2024-07-24T09:41:52.010000"],["2024-07-24T09:41:53.010000"],["2024-07-24T09:41:54.010000"],["2024-07-24T09:41:55.010000"],["2024-07-24T09:41:56.010000"],["2024-07-24T09:41:57.010000"],["2024-07-24T09:41:58.010000"],["2024-07-24T09:41:59.010000"],["2024-07-24T09:42:00.010000"],["2024-07-24T09:42:01.010000"],["2024-07-24T09:42:02.010000"],["2024-07-24T09:42:03.010000"],["2024-07-24T09:42:04.010000"],["2024-07-24T09:42:05.010000"],["2024-07-24T09:42:06.010000"],["2024-07-24T09:42:07.010000"],["2024-07-24T09:42:08.010000"],["2024-07-24T09:42:09.010000"],["2024-07-24T09:42:10.010000"],["2024-07-24T09:42:11.010000"],["2024-07-24T09:42:12.010000"],["2024-07-24T09:42:13.010000"],["2024-07-24T09:42:14.010000"],["2024-07-24T09:42:15.010000"],["2024-07-24T09:42:16.010000"],["2024-07-24T09:42:17.010000"],["2024-07-24T09:42:18.010000"],["2024-07-24T09:42:19.010000"],["2024-07-24T09:42:20.010000"],["2024-07-24T09:42:21.010000"],["2024-07-24T09:42:22.010000"],["2024-07-24T09:42:23.010000"],["2024-07-24T09:42:24.010000"],["2024-07-24T09:42:25.010000"],["2024-07-24T09:42:26.010000"],["2024-07-24T09:42:27.010000"],["2024-07-24T09:42:28.010000"],["2024-07-24T09:42:29.010000"],["2024-07-24T09:42:30.010000"],["2024-07-24T09:42:31.010000"],["2024-07-24T09:42:32.010000"],["2024-07-24T09:42:33.010000"],["2024-07-24T09:42:34.010000"],["2024-07-24T09:42:35.010000"],["2024-07-24T09:42:36.010000"],["2024-07-24T09:42:37.010000"],["2024-07-24T09:42:38.010000"],["2024-07-24T09:42:39.010000"],["2024-07-24T09:42:40.010000"],["2024-07-24T09:42:41.010000"],["2024-07-24T09:42:42.010000"],["2024-07-24T09:42:43.010000"],["2024-07-24T09:42:44.010000"],["2024-07-24T09:42:45.010000"],["2024-07-24T09:42:46.010000"],["2024-07-24T09:42:47.010000"],["2024-07-24T09:42:48.010000"],["2024-07-24T09:42:49.010000"],["2024-07-24T09:42:50.010000"],["2024-07-24T09:42:51.010000"],["2024-07-24T09:42:52.010000"],["2024-07-24T09:42:53.010000"],["2024-07-24T09:42:54.010000"],["2024-07-24T09:42:55.010000"],["2024-07-24T09:42:56.010000"],["2024-07-24T09:42:57.010000"],["2024-07-24T09:42:58.010000"],["2024-07-24T09:42:59.010000"],["2024-07-24T09:43:00.010000"],["2024-07-24T09:43:01.010000"],["2024-07-24T09:43:02.010000"],["2024-07-24T09:43:03.010000"],["2024-07-24T09:43:04.010000"],["2024-07-24T09:43:05.010000"],["2024-07-24T09:43:06.010000"],["2024-07-24T09:43:07.010000"],["2024-07-24T09:43:08.010000"],["2024-07-24T09:43:09.010000"],["2024-07-24T09:43:10.010000"],["2024-07-24T09:43:11.010000"],["2024-07-24T09:43:12.010000"],["2024-07-24T09:43:13.010000"],["2024-07-24T09:43:14.010000"],["2024-07-24T09:43:15.010000"],["2024-07-24T09:43:16.010000"],["2024-07-24T09:43:17.010000"],["2024-07-24T09:43:18.010000"],["2024-07-24T09:43:19.010000"],["2024-07-24T09:43:20.010000"],["2024-07-24T09:43:21.010000"],["2024-07-24T09:43:22.010000"],["2024-07-24T09:43:23.010000"],["2024-07-24T09:43:24.010000"],["2024-07-24T09:43:25.010000"],["2024-07-24T09:43:26.010000"],["2024-07-24T09:43:27.010000"],["2024-07-24T09:43:28.010000"],["2024-07-24T09:43:29.010000"],["2024-07-24T09:43:30.010000"],["2024-07-24T09:43:31.010000"],["2024-07-24T09:43:32.010000"],["2024-07-24T09:43:33.010000"],["2024-07-24T09:43:34.010000"],["2024-07-24T09:43:35.010000"],["2024-07-24T09:43:36.010000"],["2024-07-24T09:43:37.010000"],["2024-07-24T09:43:38.010000"],["2024-07-24T09:43:39.010000"],["2024-07-24T09:43:40.010000"],["2024-07-24T09:43:41.010000"],["2024-07-24T09:43:42.010000"],["2024-07-24T09:43:43.010000"],["2024-07-24T09:43:44.010000"],["2024-07-24T09:43:45.010000"],["2024-07-24T09:43:46.010000"],["2024-07-24T09:43:47.010000"],["2024-07-24T09:43:48.010000"],["2024-07-24T09:43:49.010000"],["2024-07-24T09:43:50.010000"],["2024-07-24T09:43:51.010000"],["2024-07-24T09:43:52.010000"],["2024-07-24T09:43:53.010000"],["2024-07-24T09:43:54.010000"],["2024-07-24T09:43:55.010000"],["2024-07-24T09:43:56.010000"],["2024-07-24T09:43:57.010000"],["2024-07-24T09:43:58.010000"],["2024-07-24T09:43:59.010000"],["2024-07-24T09:44:00.010000"],["2024-07-24T09:44:01.010000"],["2024-07-24T09:44:02.010000"],["2024-07-24T09:44:03.010000"],["2024-07-24T09:44:04.010000"],["2024-07-24T09:44:05.010000"],["2024-07-24T09:44:06.010000"],["2024-07-24T09:44:07.010000"],["2024-07-24T09:44:08.010000"],["2024-07-24T09:44:09.010000"],["2024-07-24T09:44:10.010000"],["2024-07-24T09:44:11.010000"],["2024-07-24T09:44:12.010000"],["2024-07-24T09:44:13.010000"],["2024-07-24T09:44:14.010000"],["2024-07-24T09:44:15.010000"],["2024-07-24T09:44:16.010000"],["2024-07-24T09:44:17.010000"],["2024-07-24T09:44:18.010000"],["2024-07-24T09:44:19.010000"],["2024-07-24T09:44:20.010000"],["2024-07-24T09:44:21.010000"],["2024-07-24T09:44:22.010000"],["2024-07-24T09:44:23.010000"],["2024-07-24T09:44:24.010000"],["2024-07-24T09:44:25.010000"],["2024-07-24T09:44:26.010000"],["2024-07-24T09:44:27.010000"],["2024-07-24T09:44:28.010000"],["2024-07-24T09:44:29.010000"],["2024-07-24T09:44:30.010000"],["2024-07-24T09:44:31.010000"],["2024-07-24T09:44:32.010000"],["2024-07-24T09:44:33.010000"],["2024-07-24T09:44:34.010000"],["2024-07-24T09:44:35.010000"],["2024-07-24T09:44:36.010000"],["2024-07-24T09:44:37.010000"],["2024-07-24T09:44:38.010000"],["2024-07-24T09:44:39.010000"],["2024-07-24T09:44:40.010000"],["2024-07-24T09:44:41.010000"],["2024-07-24T09:44:42.010000"],["2024-07-24T09:44:43.010000"],["2024-07-24T09:44:44.010000"],["2024-07-24T09:44:45.010000"],["2024-07-24T09:44:46.010000"],["2024-07-24T09:44:47.010000"],["2024-07-24T09:44:48.010000"],["2024-07-24T09:44:49.010000"],["2024-07-24T09:44:50.010000"],["2024-07-24T09:44:51.010000"],["2024-07-24T09:44:52.010000"],["2024-07-24T09:44:53.010000"],["2024-07-24T09:44:54.010000"],["2024-07-24T09:44:55.010000"],["2024-07-24T09:44:56.010000"],["2024-07-24T09:44:57.010000"],["2024-07-24T09:44:58.010000"],["2024-07-24T09:44:59.010000"],["2024-07-24T09:45:00.010000"],["2024-07-24T09:45:01.010000"],["2024-07-24T09:45:02.010000"],["2024-07-24T09:45:03.010000"],["2024-07-24T09:45:04.010000"],["2024-07-24T09:45:05.010000"],["2024-07-24T09:45:06.010000"],["2024-07-24T09:45:07.010000"],["2024-07-24T09:45:08.010000"],["2024-07-24T09:45:09.010000"],["2024-07-24T09:45:10.010000"],["2024-07-24T09:45:11.010000"],["2024-07-24T09:45:12.010000"],["2024-07-24T09:45:13.010000"],["2024-07-24T09:45:14.010000"],["2024-07-24T09:45:15.010000"],["2024-07-24T09:45:16.010000"],["2024-07-24T09:45:17.010000"],["2024-07-24T09:45:18.010000"],["2024-07-24T09:45:19.010000"],["2024-07-24T09:45:20.010000"],["2024-07-24T09:45:21.010000"],["2024-07-24T09:45:22.010000"],["2024-07-24T09:45:23.010000"],["2024-07-24T09:45:24.010000"],["2024-07-24T09:45:25.010000"],["2024-07-24T09:45:26.010000"],["2024-07-24T09:45:27.010000"],["2024-07-24T09:45:28.010000"],["2024-07-24T09:45:29.010000"],["2024-07-24T09:45:30.010000"],["2024-07-24T09:45:31.010000"],["2024-07-24T09:45:32.010000"],["2024-07-24T09:45:33.010000"],["2024-07-24T09:45:34.010000"],["2024-07-24T09:45:35.010000"],["2024-07-24T09:45:36.010000"],["2024-07-24T09:45:37.010000"],["2024-07-24T09:45:38.010000"],["2024-07-24T09:45:39.010000"],["2024-07-24T09:45:40.010000"],["2024-07-24T09:45:41.010000"],["2024-07-24T09:45:42.010000"],["2024-07-24T09:45:43.010000"],["2024-07-24T09:45:44.010000"],["2024-07-24T09:45:45.010000"],["2024-07-24T09:45:46.010000"],["2024-07-24T09:45:47.010000"],["2024-07-24T09:45:48.010000"],["2024-07-24T09:45:49.010000"],["2024-07-24T09:45:50.010000"],["2024-07-24T09:45:51.010000"],["2024-07-24T09:45:52.010000"],["2024-07-24T09:45:53.010000"],["2024-07-24T09:45:54.010000"],["2024-07-24T09:45:55.010000"],["2024-07-24T09:45:56.010000"],["2024-07-24T09:45:57.010000"],["2024-07-24T09:45:58.010000"],["2024-07-24T09:45:59.010000"],["2024-07-24T09:46:00.010000"],["2024-07-24T09:46:01.010000"],["2024-07-24T09:46:02.010000"],["2024-07-24T09:46:03.010000"],["2024-07-24T09:46:04.010000"],["2024-07-24T09:46:05.010000"],["2024-07-24T09:46:06.010000"],["2024-07-24T09:46:07.010000"],["2024-07-24T09:46:08.010000"],["2024-07-24T09:46:09.010000"],["2024-07-24T09:46:10.010000"],["2024-07-24T09:46:11.010000"],["2024-07-24T09:46:12.010000"],["2024-07-24T09:46:13.010000"],["2024-07-24T09:46:14.010000"],["2024-07-24T09:46:15.010000"],["2024-07-24T09:46:16.010000"],["2024-07-24T09:46:17.010000"],["2024-07-24T09:46:18.010000"],["2024-07-24T09:46:19.010000"],["2024-07-24T09:46:20.010000"],["2024-07-24T09:46:21.010000"],["2024-07-24T09:46:22.010000"],["2024-07-24T09:46:23.010000"],["2024-07-24T09:46:24.010000"],["2024-07-24T09:46:25.010000"],["2024-07-24T09:46:26.010000"],["2024-07-24T09:46:27.010000"],["2024-07-24T09:46:28.010000"],["2024-07-24T09:46:29.010000"],["2024-07-24T09:46:30.010000"],["2024-07-24T09:46:31.010000"],["2024-07-24T09:46:32.010000"],["2024-07-24T09:46:33.010000"],["2024-07-24T09:46:34.010000"],["2024-07-24T09:46:35.010000"],["2024-07-24T09:46:36.010000"],["2024-07-24T09:46:37.010000"],["2024-07-24T09:46:38.010000"],["2024-07-24T09:46:39.010000"],["2024-07-24T09:46:40.010000"],["2024-07-24T09:46:41.010000"],["2024-07-24T09:46:42.010000"],["2024-07-24T09:46:43.010000"],["2024-07-24T09:46:44.010000"],["2024-07-24T09:46:45.010000"],["2024-07-24T09:46:46.010000"],["2024-07-24T09:46:47.010000"],["2024-07-24T09:46:48.010000"],["2024-07-24T09:46:49.010000"],["2024-07-24T09:46:50.010000"],["2024-07-24T09:46:51.010000"],["2024-07-24T09:46:52.010000"],["2024-07-24T09:46:53.010000"],["2024-07-24T09:46:54.010000"],["2024-07-24T09:46:55.010000"],["2024-07-24T09:46:56.010000"],["2024-07-24T09:46:57.010000"],["2024-07-24T09:46:58.010000"],["2024-07-24T09:46:59.010000"],["2024-07-24T09:47:00.010000"],["2024-07-24T09:47:01.010000"],["2024-07-24T09:47:02.010000"],["2024-07-24T09:47:03.010000"],["2024-07-24T09:47:04.010000"],["2024-07-24T09:47:05.010000"],["2024-07-24T09:47:06.010000"],["2024-07-24T09:47:07.010000"],["2024-07-24T09:47:08.010000"],["2024-07-24T09:47:09.010000"],["2024-07-24T09:47:10.010000"],["2024-07-24T09:47:11.010000"],["2024-07-24T09:47:12.010000"],["2024-07-24T09:47:13.010000"],["2024-07-24T09:47:14.010000"],["2024-07-24T09:47:15.010000"],["2024-07-24T09:47:16.010000"],["2024-07-24T09:47:17.010000"],["2024-07-24T09:47:18.010000"],["2024-07-24T09:47:19.010000"],["2024-07-24T09:47:20.010000"],["2024-07-24T09:47:21.010000"],["2024-07-24T09:47:22.010000"],["2024-07-24T09:47:23.010000"],["2024-07-24T09:47:24.010000"],["2024-07-24T09:47:25.010000"],["2024-07-24T09:47:26.010000"],["2024-07-24T09:47:27.010000"],["2024-07-24T09:47:28.010000"],["2024-07-24T09:47:29.010000"],["2024-07-24T09:47:30.010000"],["2024-07-24T09:47:31.010000"],["2024-07-24T09:47:32.010000"],["2024-07-24T09:47:33.010000"],["2024-07-24T09:47:34.010000"],["2024-07-24T09:47:35.010000"],["2024-07-24T09:47:36.010000"],["2024-07-24T09:47:37.010000"],["2024-07-24T09:47:38.010000"],["2024-07-24T09:47:39.010000"],["2024-07-24T09:47:40.010000"],["2024-07-24T09:47:41.010000"],["2024-07-24T09:47:42.010000"],["2024-07-24T09:47:43.010000"],["2024-07-24T09:47:44.010000"],["2024-07-24T09:47:45.010000"],["2024-07-24T09:47:46.010000"],["2024-07-24T09:47:47.010000"],["2024-07-24T09:47:48.010000"],["2024-07-24T09:47:49.010000"],["2024-07-24T09:47:50.010000"],["2024-07-24T09:47:51.010000"],["2024-07-24T09:47:52.010000"],["2024-07-24T09:47:53.010000"],["2024-07-24T09:47:54.010000"],["2024-07-24T09:47:55.010000"],["2024-07-24T09:47:56.010000"],["2024-07-24T09:47:57.010000"],["2024-07-24T09:47:58.010000"],["2024-07-24T09:47:59.010000"],["2024-07-24T09:48:00.010000"],["2024-07-24T09:48:01.010000"],["2024-07-24T09:48:02.010000"],["2024-07-24T09:48:03.010000"],["2024-07-24T09:48:04.010000"],["2024-07-24T09:48:05.010000"],["2024-07-24T09:48:06.010000"],["2024-07-24T09:48:07.010000"],["2024-07-24T09:48:08.010000"],["2024-07-24T09:48:09.010000"],["2024-07-24T09:48:10.010000"],["2024-07-24T09:48:11.010000"],["2024-07-24T09:48:12.010000"],["2024-07-24T09:48:13.010000"],["2024-07-24T09:48:14.010000"],["2024-07-24T09:48:15.010000"],["2024-07-24T09:48:16.010000"],["2024-07-24T09:48:17.010000"],["2024-07-24T09:48:18.010000"],["2024-07-24T09:48:19.010000"],["2024-07-24T09:48:20.010000"],["2024-07-24T09:48:21.010000"],["2024-07-24T09:48:22.010000"],["2024-07-24T09:48:23.010000"],["2024-07-24T09:48:24.010000"],["2024-07-24T09:48:25.010000"],["2024-07-24T09:48:26.010000"],["2024-07-24T09:48:27.010000"],["2024-07-24T09:48:28.010000"],["2024-07-24T09:48:29.010000"],["2024-07-24T09:48:30.010000"],["2024-07-24T09:48:31.010000"],["2024-07-24T09:48:32.010000"],["2024-07-24T09:48:33.010000"],["2024-07-24T09:48:34.010000"],["2024-07-24T09:48:35.010000"],["2024-07-24T09:48:36.010000"],["2024-07-24T09:48:37.010000"],["2024-07-24T09:48:38.010000"],["2024-07-24T09:48:39.010000"],["2024-07-24T09:48:40.010000"],["2024-07-24T09:48:41.010000"],["2024-07-24T09:48:42.010000"],["2024-07-24T09:48:43.010000"],["2024-07-24T09:48:44.010000"],["2024-07-24T09:48:45.010000"],["2024-07-24T09:48:46.010000"],["2024-07-24T09:48:47.010000"],["2024-07-24T09:48:48.010000"],["2024-07-24T09:48:49.010000"],["2024-07-24T09:48:50.010000"],["2024-07-24T09:48:51.010000"],["2024-07-24T09:48:52.010000"],["2024-07-24T09:48:53.010000"],["2024-07-24T09:48:54.010000"],["2024-07-24T09:48:55.010000"],["2024-07-24T09:48:56.010000"],["2024-07-24T09:48:57.010000"],["2024-07-24T09:48:58.010000"],["2024-07-24T09:48:59.010000"],["2024-07-24T09:49:00.010000"],["2024-07-24T09:49:01.010000"],["2024-07-24T09:49:02.010000"],["2024-07-24T09:49:03.010000"],["2024-07-24T09:49:04.010000"],["2024-07-24T09:49:05.010000"],["2024-07-24T09:49:06.010000"],["2024-07-24T09:49:07.010000"],["2024-07-24T09:49:08.010000"],["2024-07-24T09:49:09.010000"],["2024-07-24T09:49:10.010000"],["2024-07-24T09:49:11.010000"],["2024-07-24T09:49:12.010000"],["2024-07-24T09:49:13.010000"],["2024-07-24T09:49:14.010000"],["2024-07-24T09:49:15.010000"],["2024-07-24T09:49:16.010000"],["2024-07-24T09:49:17.010000"],["2024-07-24T09:49:18.010000"],["2024-07-24T09:49:19.010000"],["2024-07-24T09:49:20.010000"],["2024-07-24T09:49:21.010000"],["2024-07-24T09:49:22.010000"],["2024-07-24T09:49:23.010000"],["2024-07-24T09:49:24.010000"],["2024-07-24T09:49:25.010000"],["2024-07-24T09:49:26.010000"],["2024-07-24T09:49:27.010000"],["2024-07-24T09:49:28.010000"],["2024-07-24T09:49:29.010000"],["2024-07-24T09:49:30.010000"],["2024-07-24T09:49:31.010000"],["2024-07-24T09:49:32.010000"],["2024-07-24T09:49:33.010000"],["2024-07-24T09:49:34.010000"],["2024-07-24T09:49:35.010000"],["2024-07-24T09:49:36.010000"],["2024-07-24T09:49:37.010000"],["2024-07-24T09:49:38.010000"],["2024-07-24T09:49:39.010000"],["2024-07-24T09:49:40.010000"],["2024-07-24T09:49:41.010000"],["2024-07-24T09:49:42.010000"],["2024-07-24T09:49:43.010000"],["2024-07-24T09:49:44.010000"],["2024-07-24T09:49:45.010000"],["2024-07-24T09:49:46.010000"],["2024-07-24T09:49:47.010000"],["2024-07-24T09:49:48.010000"],["2024-07-24T09:49:49.010000"],["2024-07-24T09:49:50.010000"],["2024-07-24T09:49:51.010000"],["2024-07-24T09:49:52.010000"],["2024-07-24T09:49:53.010000"],["2024-07-24T09:49:54.010000"],["2024-07-24T09:49:55.010000"],["2024-07-24T09:49:56.010000"],["2024-07-24T09:49:57.010000"],["2024-07-24T09:49:58.010000"],["2024-07-24T09:49:59.010000"],["2024-07-24T09:50:00.010000"],["2024-07-24T09:50:01.010000"],["2024-07-24T09:50:02.010000"],["2024-07-24T09:50:03.010000"],["2024-07-24T09:50:04.010000"],["2024-07-24T09:50:05.010000"],["2024-07-24T09:50:06.010000"],["2024-07-24T09:50:07.010000"],["2024-07-24T09:50:08.010000"],["2024-07-24T09:50:09.010000"],["2024-07-24T09:50:10.010000"],["2024-07-24T09:50:11.010000"],["2024-07-24T09:50:12.010000"],["2024-07-24T09:50:13.010000"],["2024-07-24T09:50:14.010000"],["2024-07-24T09:50:15.010000"],["2024-07-24T09:50:16.010000"],["2024-07-24T09:50:17.010000"],["2024-07-24T09:50:18.010000"],["2024-07-24T09:50:19.010000"],["2024-07-24T09:50:20.010000"],["2024-07-24T09:50:21.010000"],["2024-07-24T09:50:22.010000"],["2024-07-24T09:50:23.010000"],["2024-07-24T09:50:24.010000"],["2024-07-24T09:50:25.010000"],["2024-07-24T09:50:26.010000"],["2024-07-24T09:50:27.010000"],["2024-07-24T09:50:28.010000"],["2024-07-24T09:50:29.010000"],["2024-07-24T09:50:30.010000"],["2024-07-24T09:50:31.010000"],["2024-07-24T09:50:32.010000"],["2024-07-24T09:50:33.010000"],["2024-07-24T09:50:34.010000"],["2024-07-24T09:50:35.010000"],["2024-07-24T09:50:36.010000"],["2024-07-24T09:50:37.010000"],["2024-07-24T09:50:38.010000"],["2024-07-24T09:50:39.010000"],["2024-07-24T09:50:40.010000"],["2024-07-24T09:50:41.010000"],["2024-07-24T09:50:42.010000"],["2024-07-24T09:50:43.010000"],["2024-07-24T09:50:44.010000"],["2024-07-24T09:50:45.010000"],["2024-07-24T09:50:46.010000"],["2024-07-24T09:50:47.010000"],["2024-07-24T09:50:48.010000"],["2024-07-24T09:50:49.010000"],["2024-07-24T09:50:50.010000"],["2024-07-24T09:50:51.010000"],["2024-07-24T09:50:52.010000"],["2024-07-24T09:50:53.010000"],["2024-07-24T09:50:54.010000"],["2024-07-24T09:50:55.010000"],["2024-07-24T09:50:56.010000"],["2024-07-24T09:50:57.010000"],["2024-07-24T09:50:58.010000"],["2024-07-24T09:50:59.010000"],["2024-07-24T09:51:00.010000"],["2024-07-24T09:51:01.010000"],["2024-07-24T09:51:02.010000"],["2024-07-24T09:51:03.010000"],["2024-07-24T09:51:04.010000"],["2024-07-24T09:51:05.010000"],["2024-07-24T09:51:06.010000"],["2024-07-24T09:51:07.010000"],["2024-07-24T09:51:08.010000"],["2024-07-24T09:51:09.010000"],["2024-07-24T09:51:10.010000"],["2024-07-24T09:51:11.010000"],["2024-07-24T09:51:12.010000"],["2024-07-24T09:51:13.010000"],["2024-07-24T09:51:14.010000"],["2024-07-24T09:51:15.010000"],["2024-07-24T09:51:16.010000"],["2024-07-24T09:51:17.010000"],["2024-07-24T09:51:18.010000"],["2024-07-24T09:51:19.010000"],["2024-07-24T09:51:20.010000"],["2024-07-24T09:51:21.010000"],["2024-07-24T09:51:22.010000"],["2024-07-24T09:51:23.010000"],["2024-07-24T09:51:24.010000"],["2024-07-24T09:51:25.010000"],["2024-07-24T09:51:26.010000"],["2024-07-24T09:51:27.010000"],["2024-07-24T09:51:28.010000"],["2024-07-24T09:51:29.010000"],["2024-07-24T09:51:30.010000"],["2024-07-24T09:51:31.010000"],["2024-07-24T09:51:32.010000"],["2024-07-24T09:51:33.010000"],["2024-07-24T09:51:34.010000"],["2024-07-24T09:51:35.010000"],["2024-07-24T09:51:36.010000"],["2024-07-24T09:51:37.010000"],["2024-07-24T09:51:38.010000"],["2024-07-24T09:51:39.010000"],["2024-07-24T09:51:40.010000"],["2024-07-24T09:51:41.010000"],["2024-07-24T09:51:42.010000"],["2024-07-24T09:51:43.010000"],["2024-07-24T09:51:44.010000"],["2024-07-24T09:51:45.010000"],["2024-07-24T09:51:46.010000"],["2024-07-24T09:51:47.010000"],["2024-07-24T09:51:48.010000"],["2024-07-24T09:51:49.010000"],["2024-07-24T09:51:50.010000"],["2024-07-24T09:51:51.010000"],["2024-07-24T09:51:52.010000"],["2024-07-24T09:51:53.010000"],["2024-07-24T09:51:54.010000"],["2024-07-24T09:51:55.010000"],["2024-07-24T09:51:56.010000"],["2024-07-24T09:51:57.010000"],["2024-07-24T09:51:58.010000"],["2024-07-24T09:51:59.010000"],["2024-07-24T09:52:00.010000"],["2024-07-24T09:52:01.010000"],["2024-07-24T09:52:02.010000"],["2024-07-24T09:52:03.010000"],["2024-07-24T09:52:04.010000"],["2024-07-24T09:52:05.010000"],["2024-07-24T09:52:06.010000"],["2024-07-24T09:52:07.010000"],["2024-07-24T09:52:08.010000"],["2024-07-24T09:52:09.010000"],["2024-07-24T09:52:10.010000"],["2024-07-24T09:52:11.010000"],["2024-07-24T09:52:12.010000"],["2024-07-24T09:52:13.010000"],["2024-07-24T09:52:14.010000"],["2024-07-24T09:52:15.010000"],["2024-07-24T09:52:16.010000"],["2024-07-24T09:52:17.010000"],["2024-07-24T09:52:18.010000"],["2024-07-24T09:52:19.010000"],["2024-07-24T09:52:20.010000"],["2024-07-24T09:52:21.010000"],["2024-07-24T09:52:22.010000"],["2024-07-24T09:52:23.010000"],["2024-07-24T09:52:24.010000"],["2024-07-24T09:52:25.010000"],["2024-07-24T09:52:26.010000"],["2024-07-24T09:52:27.010000"],["2024-07-24T09:52:28.010000"],["2024-07-24T09:52:29.010000"],["2024-07-24T09:52:30.010000"],["2024-07-24T09:52:31.010000"],["2024-07-24T09:52:32.010000"],["2024-07-24T09:52:33.010000"],["2024-07-24T09:52:34.010000"],["2024-07-24T09:52:35.010000"],["2024-07-24T09:52:36.010000"],["2024-07-24T09:52:37.010000"],["2024-07-24T09:52:38.010000"],["2024-07-24T09:52:39.010000"],["2024-07-24T09:52:40.010000"],["2024-07-24T09:52:41.010000"],["2024-07-24T09:52:42.010000"],["2024-07-24T09:52:43.010000"],["2024-07-24T09:52:44.010000"],["2024-07-24T09:52:45.010000"],["2024-07-24T09:52:46.010000"],["2024-07-24T09:52:47.010000"],["2024-07-24T09:52:48.010000"],["2024-07-24T09:52:49.010000"],["2024-07-24T09:52:50.010000"],["2024-07-24T09:52:51.010000"],["2024-07-24T09:52:52.010000"],["2024-07-24T09:52:53.010000"],["2024-07-24T09:52:54.010000"],["2024-07-24T09:52:55.010000"],["2024-07-24T09:52:56.010000"],["2024-07-24T09:52:57.010000"],["2024-07-24T09:52:58.010000"],["2024-07-24T09:52:59.010000"],["2024-07-24T09:53:00.010000"],["2024-07-24T09:53:01.010000"],["2024-07-24T09:53:02.010000"],["2024-07-24T09:53:03.010000"],["2024-07-24T09:53:04.010000"],["2024-07-24T09:53:05.010000"],["2024-07-24T09:53:06.010000"],["2024-07-24T09:53:07.010000"],["2024-07-24T09:53:08.010000"],["2024-07-24T09:53:09.010000"],["2024-07-24T09:53:10.010000"],["2024-07-24T09:53:11.010000"],["2024-07-24T09:53:12.010000"],["2024-07-24T09:53:13.010000"],["2024-07-24T09:53:14.010000"],["2024-07-24T09:53:15.010000"],["2024-07-24T09:53:16.010000"],["2024-07-24T09:53:17.010000"],["2024-07-24T09:53:18.010000"],["2024-07-24T09:53:19.010000"],["2024-07-24T09:53:20.010000"],["2024-07-24T09:53:21.010000"],["2024-07-24T09:53:22.010000"],["2024-07-24T09:53:23.010000"],["2024-07-24T09:53:24.010000"],["2024-07-24T09:53:25.010000"],["2024-07-24T09:53:26.010000"],["2024-07-24T09:53:27.010000"],["2024-07-24T09:53:28.010000"],["2024-07-24T09:53:29.010000"],["2024-07-24T09:53:30.010000"],["2024-07-24T09:53:31.010000"],["2024-07-24T09:53:32.010000"],["2024-07-24T09:53:33.010000"],["2024-07-24T09:53:34.010000"],["2024-07-24T09:53:35.010000"],["2024-07-24T09:53:36.010000"],["2024-07-24T09:53:37.010000"],["2024-07-24T09:53:38.010000"],["2024-07-24T09:53:39.010000"],["2024-07-24T09:53:40.010000"],["2024-07-24T09:53:41.010000"],["2024-07-24T09:53:42.010000"],["2024-07-24T09:53:43.010000"],["2024-07-24T09:53:44.010000"],["2024-07-24T09:53:45.010000"],["2024-07-24T09:53:46.010000"],["2024-07-24T09:53:47.010000"],["2024-07-24T09:53:48.010000"],["2024-07-24T09:53:49.010000"],["2024-07-24T09:53:50.010000"],["2024-07-24T09:53:51.010000"],["2024-07-24T09:53:52.010000"],["2024-07-24T09:53:53.010000"],["2024-07-24T09:53:54.010000"],["2024-07-24T09:53:55.010000"],["2024-07-24T09:53:56.010000"],["2024-07-24T09:53:57.010000"],["2024-07-24T09:53:58.010000"],["2024-07-24T09:53:59.010000"],["2024-07-24T09:54:00.010000"],["2024-07-24T09:54:01.010000"],["2024-07-24T09:54:02.010000"],["2024-07-24T09:54:03.010000"],["2024-07-24T09:54:04.010000"],["2024-07-24T09:54:05.010000"],["2024-07-24T09:54:06.010000"],["2024-07-24T09:54:07.010000"],["2024-07-24T09:54:08.010000"],["2024-07-24T09:54:09.010000"],["2024-07-24T09:54:10.010000"],["2024-07-24T09:54:11.010000"],["2024-07-24T09:54:12.010000"],["2024-07-24T09:54:13.010000"],["2024-07-24T09:54:14.010000"],["2024-07-24T09:54:15.010000"],["2024-07-24T09:54:16.010000"],["2024-07-24T09:54:17.010000"],["2024-07-24T09:54:18.010000"],["2024-07-24T09:54:19.010000"],["2024-07-24T09:54:20.010000"],["2024-07-24T09:54:21.010000"],["2024-07-24T09:54:22.010000"],["2024-07-24T09:54:23.010000"],["2024-07-24T09:54:24.010000"],["2024-07-24T09:54:25.010000"],["2024-07-24T09:54:26.010000"],["2024-07-24T09:54:27.010000"],["2024-07-24T09:54:28.010000"],["2024-07-24T09:54:29.010000"],["2024-07-24T09:54:30.010000"],["2024-07-24T09:54:31.010000"],["2024-07-24T09:54:32.010000"],["2024-07-24T09:54:33.010000"],["2024-07-24T09:54:34.010000"],["2024-07-24T09:54:35.010000"],["2024-07-24T09:54:36.010000"],["2024-07-24T09:54:37.010000"],["2024-07-24T09:54:38.010000"],["2024-07-24T09:54:39.010000"],["2024-07-24T09:54:40.010000"],["2024-07-24T09:54:41.010000"],["2024-07-24T09:54:42.010000"],["2024-07-24T09:54:43.010000"],["2024-07-24T09:54:44.010000"],["2024-07-24T09:54:45.010000"],["2024-07-24T09:54:46.010000"],["2024-07-24T09:54:47.010000"],["2024-07-24T09:54:48.010000"],["2024-07-24T09:54:49.010000"],["2024-07-24T09:54:50.010000"],["2024-07-24T09:54:51.010000"],["2024-07-24T09:54:52.010000"],["2024-07-24T09:54:53.010000"],["2024-07-24T09:54:54.010000"],["2024-07-24T09:54:55.010000"],["2024-07-24T09:54:56.010000"],["2024-07-24T09:54:57.010000"],["2024-07-24T09:54:58.010000"],["2024-07-24T09:54:59.010000"],["2024-07-24T09:55:00.010000"],["2024-07-24T09:55:01.010000"],["2024-07-24T09:55:02.010000"],["2024-07-24T09:55:03.010000"],["2024-07-24T09:55:04.010000"],["2024-07-24T09:55:05.010000"],["2024-07-24T09:55:06.010000"],["2024-07-24T09:55:07.010000"],["2024-07-24T09:55:08.010000"],["2024-07-24T09:55:09.010000"],["2024-07-24T09:55:10.010000"],["2024-07-24T09:55:11.010000"],["2024-07-24T09:55:12.010000"],["2024-07-24T09:55:13.010000"],["2024-07-24T09:55:14.010000"],["2024-07-24T09:55:15.010000"],["2024-07-24T09:55:16.010000"],["2024-07-24T09:55:17.010000"],["2024-07-24T09:55:18.010000"],["2024-07-24T09:55:19.010000"],["2024-07-24T09:55:20.010000"],["2024-07-24T09:55:21.010000"],["2024-07-24T09:55:22.010000"],["2024-07-24T09:55:23.010000"],["2024-07-24T09:55:24.010000"],["2024-07-24T09:55:25.010000"],["2024-07-24T09:55:26.010000"],["2024-07-24T09:55:27.010000"],["2024-07-24T09:55:28.010000"],["2024-07-24T09:55:29.010000"],["2024-07-24T09:55:30.010000"],["2024-07-24T09:55:31.010000"],["2024-07-24T09:55:32.010000"],["2024-07-24T09:55:33.010000"],["2024-07-24T09:55:34.010000"],["2024-07-24T09:55:35.010000"],["2024-07-24T09:55:36.010000"],["2024-07-24T09:55:37.010000"],["2024-07-24T09:55:38.010000"],["2024-07-24T09:55:39.010000"],["2024-07-24T09:55:40.010000"],["2024-07-24T09:55:41.010000"],["2024-07-24T09:55:42.010000"],["2024-07-24T09:55:43.010000"],["2024-07-24T09:55:44.010000"],["2024-07-24T09:55:45.010000"],["2024-07-24T09:55:46.010000"],["2024-07-24T09:55:47.010000"],["2024-07-24T09:55:48.010000"],["2024-07-24T09:55:49.010000"],["2024-07-24T09:55:50.010000"],["2024-07-24T09:55:51.010000"],["2024-07-24T09:55:52.010000"],["2024-07-24T09:55:53.010000"],["2024-07-24T09:55:54.010000"],["2024-07-24T09:55:55.010000"],["2024-07-24T09:55:56.010000"],["2024-07-24T09:55:57.010000"],["2024-07-24T09:55:58.010000"],["2024-07-24T09:55:59.010000"],["2024-07-24T09:56:00.010000"],["2024-07-24T09:56:01.010000"],["2024-07-24T09:56:02.010000"],["2024-07-24T09:56:03.010000"],["2024-07-24T09:56:04.010000"],["2024-07-24T09:56:05.010000"],["2024-07-24T09:56:06.010000"],["2024-07-24T09:56:07.010000"],["2024-07-24T09:56:08.010000"],["2024-07-24T09:56:09.010000"],["2024-07-24T09:56:10.010000"],["2024-07-24T09:56:11.010000"],["2024-07-24T09:56:12.010000"],["2024-07-24T09:56:13.010000"],["2024-07-24T09:56:14.010000"],["2024-07-24T09:56:15.010000"],["2024-07-24T09:56:16.010000"],["2024-07-24T09:56:17.010000"],["2024-07-24T09:56:18.010000"],["2024-07-24T09:56:19.010000"],["2024-07-24T09:56:20.010000"],["2024-07-24T09:56:21.010000"],["2024-07-24T09:56:22.010000"],["2024-07-24T09:56:23.010000"],["2024-07-24T09:56:24.010000"],["2024-07-24T09:56:25.010000"],["2024-07-24T09:56:26.010000"],["2024-07-24T09:56:27.010000"],["2024-07-24T09:56:28.010000"],["2024-07-24T09:56:29.010000"],["2024-07-24T09:56:30.010000"],["2024-07-24T09:56:31.010000"],["2024-07-24T09:56:32.010000"],["2024-07-24T09:56:33.010000"],["2024-07-24T09:56:34.010000"],["2024-07-24T09:56:35.010000"],["2024-07-24T09:56:36.010000"],["2024-07-24T09:56:37.010000"],["2024-07-24T09:56:38.010000"],["2024-07-24T09:56:39.010000"],["2024-07-24T09:56:40.010000"],["2024-07-24T09:56:41.010000"],["2024-07-24T09:56:42.010000"],["2024-07-24T09:56:43.010000"],["2024-07-24T09:56:44.010000"],["2024-07-24T09:56:45.010000"],["2024-07-24T09:56:46.010000"],["2024-07-24T09:56:47.010000"],["2024-07-24T09:56:48.010000"],["2024-07-24T09:56:49.010000"],["2024-07-24T09:56:50.010000"],["2024-07-24T09:56:51.010000"],["2024-07-24T09:56:52.010000"],["2024-07-24T09:56:53.010000"],["2024-07-24T09:56:54.010000"],["2024-07-24T09:56:55.010000"],["2024-07-24T09:56:56.010000"],["2024-07-24T09:56:57.010000"],["2024-07-24T09:56:58.010000"],["2024-07-24T09:56:59.010000"],["2024-07-24T09:57:00.010000"],["2024-07-24T09:57:01.010000"],["2024-07-24T09:57:02.010000"],["2024-07-24T09:57:03.010000"],["2024-07-24T09:57:04.010000"],["2024-07-24T09:57:05.010000"],["2024-07-24T09:57:06.010000"],["2024-07-24T09:57:07.010000"],["2024-07-24T09:57:08.010000"],["2024-07-24T09:57:09.010000"],["2024-07-24T09:57:10.010000"],["2024-07-24T09:57:11.010000"],["2024-07-24T09:57:12.010000"],["2024-07-24T09:57:13.010000"],["2024-07-24T09:57:14.010000"],["2024-07-24T09:57:15.010000"],["2024-07-24T09:57:16.010000"],["2024-07-24T09:57:17.010000"],["2024-07-24T09:57:18.010000"],["2024-07-24T09:57:19.010000"],["2024-07-24T09:57:20.010000"],["2024-07-24T09:57:21.010000"],["2024-07-24T09:57:22.010000"],["2024-07-24T09:57:23.010000"],["2024-07-24T09:57:24.010000"],["2024-07-24T09:57:25.010000"],["2024-07-24T09:57:26.010000"],["2024-07-24T09:57:27.010000"],["2024-07-24T09:57:28.010000"],["2024-07-24T09:57:29.010000"],["2024-07-24T09:57:30.010000"],["2024-07-24T09:57:31.010000"],["2024-07-24T09:57:32.010000"],["2024-07-24T09:57:33.010000"],["2024-07-24T09:57:34.010000"],["2024-07-24T09:57:35.010000"],["2024-07-24T09:57:36.010000"],["2024-07-24T09:57:37.010000"],["2024-07-24T09:57:38.010000"],["2024-07-24T09:57:39.010000"],["2024-07-24T09:57:40.010000"],["2024-07-24T09:57:41.010000"],["2024-07-24T09:57:42.010000"],["2024-07-24T09:57:43.010000"],["2024-07-24T09:57:44.010000"],["2024-07-24T09:57:45.010000"],["2024-07-24T09:57:46.010000"],["2024-07-24T09:57:47.010000"],["2024-07-24T09:57:48.010000"],["2024-07-24T09:57:49.010000"],["2024-07-24T09:57:50.010000"],["2024-07-24T09:57:51.010000"],["2024-07-24T09:57:52.010000"],["2024-07-24T09:57:53.010000"],["2024-07-24T09:57:54.010000"],["2024-07-24T09:57:55.010000"],["2024-07-24T09:57:56.010000"],["2024-07-24T09:57:57.010000"],["2024-07-24T09:57:58.010000"],["2024-07-24T09:57:59.010000"],["2024-07-24T09:58:00.010000"],["2024-07-24T09:58:01.010000"],["2024-07-24T09:58:02.010000"],["2024-07-24T09:58:03.010000"],["2024-07-24T09:58:04.010000"],["2024-07-24T09:58:05.010000"],["2024-07-24T09:58:06.010000"],["2024-07-24T09:58:07.010000"],["2024-07-24T09:58:08.010000"],["2024-07-24T09:58:09.010000"],["2024-07-24T09:58:10.010000"],["2024-07-24T09:58:11.010000"],["2024-07-24T09:58:12.010000"],["2024-07-24T09:58:13.010000"],["2024-07-24T09:58:14.010000"],["2024-07-24T09:58:15.010000"],["2024-07-24T09:58:16.010000"],["2024-07-24T09:58:17.010000"],["2024-07-24T09:58:18.010000"],["2024-07-24T09:58:19.010000"],["2024-07-24T09:58:20.010000"],["2024-07-24T09:58:21.010000"],["2024-07-24T09:58:22.010000"],["2024-07-24T09:58:23.010000"],["2024-07-24T09:58:24.010000"],["2024-07-24T09:58:25.010000"],["2024-07-24T09:58:26.010000"],["2024-07-24T09:58:27.010000"],["2024-07-24T09:58:28.010000"],["2024-07-24T09:58:29.010000"],["2024-07-24T09:58:30.010000"],["2024-07-24T09:58:31.010000"],["2024-07-24T09:58:32.010000"],["2024-07-24T09:58:33.010000"],["2024-07-24T09:58:34.010000"],["2024-07-24T09:58:35.010000"],["2024-07-24T09:58:36.010000"],["2024-07-24T09:58:37.010000"],["2024-07-24T09:58:38.010000"],["2024-07-24T09:58:39.010000"],["2024-07-24T09:58:40.010000"],["2024-07-24T09:58:41.010000"],["2024-07-24T09:58:42.010000"],["2024-07-24T09:58:43.010000"],["2024-07-24T09:58:44.010000"],["2024-07-24T09:58:45.010000"],["2024-07-24T09:58:46.010000"],["2024-07-24T09:58:47.010000"],["2024-07-24T09:58:48.010000"],["2024-07-24T09:58:49.010000"],["2024-07-24T09:58:50.010000"],["2024-07-24T09:58:51.010000"],["2024-07-24T09:58:52.010000"],["2024-07-24T09:58:53.010000"],["2024-07-24T09:58:54.010000"],["2024-07-24T09:58:55.010000"],["2024-07-24T09:58:56.010000"],["2024-07-24T09:58:57.010000"],["2024-07-24T09:58:58.010000"],["2024-07-24T09:58:59.010000"],["2024-07-24T09:59:00.010000"],["2024-07-24T09:59:01.010000"],["2024-07-24T09:59:02.010000"],["2024-07-24T09:59:03.010000"],["2024-07-24T09:59:04.010000"],["2024-07-24T09:59:05.010000"],["2024-07-24T09:59:06.010000"],["2024-07-24T09:59:07.010000"],["2024-07-24T09:59:08.010000"],["2024-07-24T09:59:09.010000"],["2024-07-24T09:59:10.010000"],["2024-07-24T09:59:11.010000"],["2024-07-24T09:59:12.010000"],["2024-07-24T09:59:13.010000"],["2024-07-24T09:59:14.010000"],["2024-07-24T09:59:15.010000"],["2024-07-24T09:59:16.010000"],["2024-07-24T09:59:17.010000"],["2024-07-24T09:59:18.010000"],["2024-07-24T09:59:19.010000"],["2024-07-24T09:59:20.010000"],["2024-07-24T09:59:21.010000"],["2024-07-24T09:59:22.010000"],["2024-07-24T09:59:23.010000"],["2024-07-24T09:59:24.010000"],["2024-07-24T09:59:25.010000"],["2024-07-24T09:59:26.010000"],["2024-07-24T09:59:27.010000"],["2024-07-24T09:59:28.010000"],["2024-07-24T09:59:29.010000"],["2024-07-24T09:59:30.010000"],["2024-07-24T09:59:31.010000"],["2024-07-24T09:59:32.010000"],["2024-07-24T09:59:33.010000"],["2024-07-24T09:59:34.010000"],["2024-07-24T09:59:35.010000"],["2024-07-24T09:59:36.010000"],["2024-07-24T09:59:37.010000"],["2024-07-24T09:59:38.010000"],["2024-07-24T09:59:39.010000"],["2024-07-24T09:59:40.010000"],["2024-07-24T09:59:41.010000"],["2024-07-24T09:59:42.010000"],["2024-07-24T09:59:43.010000"],["2024-07-24T09:59:44.010000"],["2024-07-24T09:59:45.010000"],["2024-07-24T09:59:46.010000"],["2024-07-24T09:59:47.010000"],["2024-07-24T09:59:48.010000"],["2024-07-24T09:59:49.010000"],["2024-07-24T09:59:50.010000"],["2024-07-24T09:59:51.010000"],["2024-07-24T09:59:52.010000"],["2024-07-24T09:59:53.010000"],["2024-07-24T09:59:54.010000"],["2024-07-24T09:59:55.010000"],["2024-07-24T09:59:56.010000"],["2024-07-24T09:59:57.010000"],["2024-07-24T09:59:58.010000"],["2024-07-24T09:59:59.010000"],["2024-07-24T10:00:00.010000"],["2024-07-24T10:00:01.010000"],["2024-07-24T10:00:02.010000"],["2024-07-24T10:00:03.010000"],["2024-07-24T10:00:04.010000"],["2024-07-24T10:00:05.010000"],["2024-07-24T10:00:06.010000"],["2024-07-24T10:00:07.010000"],["2024-07-24T10:00:08.010000"],["2024-07-24T10:00:09.010000"],["2024-07-24T10:00:10.010000"],["2024-07-24T10:00:11.010000"],["2024-07-24T10:00:12.010000"],["2024-07-24T10:00:13.010000"],["2024-07-24T10:00:14.010000"],["2024-07-24T10:00:15.010000"],["2024-07-24T10:00:16.010000"],["2024-07-24T10:00:17.010000"],["2024-07-24T10:00:18.010000"],["2024-07-24T10:00:19.010000"],["2024-07-24T10:00:20.010000"],["2024-07-24T10:00:21.010000"],["2024-07-24T10:00:22.010000"],["2024-07-24T10:00:23.010000"],["2024-07-24T10:00:24.010000"],["2024-07-24T10:00:25.010000"],["2024-07-24T10:00:26.010000"],["2024-07-24T10:00:27.010000"],["2024-07-24T10:00:28.010000"],["2024-07-24T10:00:29.010000"],["2024-07-24T10:00:30.010000"],["2024-07-24T10:00:31.010000"],["2024-07-24T10:00:32.010000"],["2024-07-24T10:00:33.010000"],["2024-07-24T10:00:34.010000"],["2024-07-24T10:00:35.010000"],["2024-07-24T10:00:36.010000"],["2024-07-24T10:00:37.010000"],["2024-07-24T10:00:38.010000"],["2024-07-24T10:00:39.010000"],["2024-07-24T10:00:40.010000"],["2024-07-24T10:00:41.010000"],["2024-07-24T10:00:42.010000"],["2024-07-24T10:00:43.010000"],["2024-07-24T10:00:44.010000"],["2024-07-24T10:00:45.010000"],["2024-07-24T10:00:46.010000"],["2024-07-24T10:00:47.010000"],["2024-07-24T10:00:48.010000"],["2024-07-24T10:00:49.010000"],["2024-07-24T10:00:50.010000"],["2024-07-24T10:00:51.010000"],["2024-07-24T10:00:52.010000"],["2024-07-24T10:00:53.010000"],["2024-07-24T10:00:54.010000"],["2024-07-24T10:00:55.010000"],["2024-07-24T10:00:56.010000"],["2024-07-24T10:00:57.010000"],["2024-07-24T10:00:58.010000"],["2024-07-24T10:00:59.010000"],["2024-07-24T10:01:00.010000"],["2024-07-24T10:01:01.010000"],["2024-07-24T10:01:02.010000"],["2024-07-24T10:01:03.010000"],["2024-07-24T10:01:04.010000"],["2024-07-24T10:01:05.010000"],["2024-07-24T10:01:06.010000"],["2024-07-24T10:01:07.010000"],["2024-07-24T10:01:08.010000"],["2024-07-24T10:01:09.010000"],["2024-07-24T10:01:10.010000"],["2024-07-24T10:01:11.010000"],["2024-07-24T10:01:12.010000"],["2024-07-24T10:01:13.010000"],["2024-07-24T10:01:14.010000"],["2024-07-24T10:01:15.010000"],["2024-07-24T10:01:16.010000"],["2024-07-24T10:01:17.010000"],["2024-07-24T10:01:18.010000"],["2024-07-24T10:01:19.010000"],["2024-07-24T10:01:20.010000"],["2024-07-24T10:01:21.010000"],["2024-07-24T10:01:22.010000"],["2024-07-24T10:01:23.010000"],["2024-07-24T10:01:24.010000"],["2024-07-24T10:01:25.010000"],["2024-07-24T10:01:26.010000"],["2024-07-24T10:01:27.010000"],["2024-07-24T10:01:28.010000"],["2024-07-24T10:01:29.010000"],["2024-07-24T10:01:30.010000"],["2024-07-24T10:01:31.010000"],["2024-07-24T10:01:32.010000"],["2024-07-24T10:01:33.010000"],["2024-07-24T10:01:34.010000"],["2024-07-24T10:01:35.010000"],["2024-07-24T10:01:36.010000"],["2024-07-24T10:01:37.010000"],["2024-07-24T10:01:38.010000"],["2024-07-24T10:01:39.010000"],["2024-07-24T10:01:40.010000"],["2024-07-24T10:01:41.010000"],["2024-07-24T10:01:42.010000"],["2024-07-24T10:01:43.010000"],["2024-07-24T10:01:44.010000"],["2024-07-24T10:01:45.010000"],["2024-07-24T10:01:46.010000"],["2024-07-24T10:01:47.010000"],["2024-07-24T10:01:48.010000"],["2024-07-24T10:01:49.010000"],["2024-07-24T10:01:50.010000"],["2024-07-24T10:01:51.010000"],["2024-07-24T10:01:52.010000"],["2024-07-24T10:01:53.010000"],["2024-07-24T10:01:54.010000"],["2024-07-24T10:01:55.010000"],["2024-07-24T10:01:56.010000"],["2024-07-24T10:01:57.010000"],["2024-07-24T10:01:58.010000"],["2024-07-24T10:01:59.010000"],["2024-07-24T10:02:00.010000"],["2024-07-24T10:02:01.010000"],["2024-07-24T10:02:02.010000"],["2024-07-24T10:02:03.010000"],["2024-07-24T10:02:04.010000"],["2024-07-24T10:02:05.010000"],["2024-07-24T10:02:06.010000"],["2024-07-24T10:02:07.010000"],["2024-07-24T10:02:08.010000"],["2024-07-24T10:02:09.010000"],["2024-07-24T10:02:10.010000"],["2024-07-24T10:02:11.010000"],["2024-07-24T10:02:12.010000"],["2024-07-24T10:02:13.010000"],["2024-07-24T10:02:14.010000"],["2024-07-24T10:02:15.010000"],["2024-07-24T10:02:16.010000"],["2024-07-24T10:02:17.010000"],["2024-07-24T10:02:18.010000"],["2024-07-24T10:02:19.010000"],["2024-07-24T10:02:20.010000"],["2024-07-24T10:02:21.010000"],["2024-07-24T10:02:22.010000"],["2024-07-24T10:02:23.010000"],["2024-07-24T10:02:24.010000"],["2024-07-24T10:02:25.010000"],["2024-07-24T10:02:26.010000"],["2024-07-24T10:02:27.010000"],["2024-07-24T10:02:28.010000"],["2024-07-24T10:02:29.010000"],["2024-07-24T10:02:30.010000"],["2024-07-24T10:02:31.010000"],["2024-07-24T10:02:32.010000"],["2024-07-24T10:02:33.010000"],["2024-07-24T10:02:34.010000"],["2024-07-24T10:02:35.010000"],["2024-07-24T10:02:36.010000"],["2024-07-24T10:02:37.010000"],["2024-07-24T10:02:38.010000"],["2024-07-24T10:02:39.010000"],["2024-07-24T10:02:40.010000"],["2024-07-24T10:02:41.010000"],["2024-07-24T10:02:42.010000"],["2024-07-24T10:02:43.010000"],["2024-07-24T10:02:44.010000"],["2024-07-24T10:02:45.010000"],["2024-07-24T10:02:46.010000"],["2024-07-24T10:02:47.010000"],["2024-07-24T10:02:48.010000"],["2024-07-24T10:02:49.010000"],["2024-07-24T10:02:50.010000"],["2024-07-24T10:02:51.010000"],["2024-07-24T10:02:52.010000"],["2024-07-24T10:02:53.010000"],["2024-07-24T10:02:54.010000"],["2024-07-24T10:02:55.010000"],["2024-07-24T10:02:56.010000"],["2024-07-24T10:02:57.010000"],["2024-07-24T10:02:58.010000"],["2024-07-24T10:02:59.010000"],["2024-07-24T10:03:00.010000"],["2024-07-24T10:03:01.010000"],["2024-07-24T10:03:02.010000"],["2024-07-24T10:03:03.010000"],["2024-07-24T10:03:04.010000"],["2024-07-24T10:03:05.010000"],["2024-07-24T10:03:06.010000"],["2024-07-24T10:03:07.010000"],["2024-07-24T10:03:08.010000"],["2024-07-24T10:03:09.010000"],["2024-07-24T10:03:10.010000"],["2024-07-24T10:03:11.010000"],["2024-07-24T10:03:12.010000"],["2024-07-24T10:03:13.010000"],["2024-07-24T10:03:14.010000"],["2024-07-24T10:03:15.010000"],["2024-07-24T10:03:16.010000"],["2024-07-24T10:03:17.010000"],["2024-07-24T10:03:18.010000"],["2024-07-24T10:03:19.010000"],["2024-07-24T10:03:20.010000"],["2024-07-24T10:03:21.010000"],["2024-07-24T10:03:22.010000"],["2024-07-24T10:03:23.010000"],["2024-07-24T10:03:24.010000"],["2024-07-24T10:03:25.010000"],["2024-07-24T10:03:26.010000"],["2024-07-24T10:03:27.010000"],["2024-07-24T10:03:28.010000"],["2024-07-24T10:03:29.010000"],["2024-07-24T10:03:30.010000"],["2024-07-24T10:03:31.010000"],["2024-07-24T10:03:32.010000"],["2024-07-24T10:03:33.010000"],["2024-07-24T10:03:34.010000"],["2024-07-24T10:03:35.010000"],["2024-07-24T10:03:36.010000"],["2024-07-24T10:03:37.010000"],["2024-07-24T10:03:38.010000"],["2024-07-24T10:03:39.010000"],["2024-07-24T10:03:40.010000"],["2024-07-24T10:03:41.010000"],["2024-07-24T10:03:42.010000"],["2024-07-24T10:03:43.010000"],["2024-07-24T10:03:44.010000"],["2024-07-24T10:03:45.010000"],["2024-07-24T10:03:46.010000"],["2024-07-24T10:03:47.010000"],["2024-07-24T10:03:48.010000"],["2024-07-24T10:03:49.010000"],["2024-07-24T10:03:50.010000"],["2024-07-24T10:03:51.010000"],["2024-07-24T10:03:52.010000"],["2024-07-24T10:03:53.010000"],["2024-07-24T10:03:54.010000"],["2024-07-24T10:03:55.010000"],["2024-07-24T10:03:56.010000"],["2024-07-24T10:03:57.010000"],["2024-07-24T10:03:58.010000"],["2024-07-24T10:03:59.010000"],["2024-07-24T10:04:00.010000"],["2024-07-24T10:04:01.010000"],["2024-07-24T10:04:02.010000"],["2024-07-24T10:04:03.010000"],["2024-07-24T10:04:04.010000"],["2024-07-24T10:04:05.010000"],["2024-07-24T10:04:06.010000"],["2024-07-24T10:04:07.010000"],["2024-07-24T10:04:08.010000"],["2024-07-24T10:04:09.010000"],["2024-07-24T10:04:10.010000"],["2024-07-24T10:04:11.010000"],["2024-07-24T10:04:12.010000"],["2024-07-24T10:04:13.010000"],["2024-07-24T10:04:14.010000"],["2024-07-24T10:04:15.010000"],["2024-07-24T10:04:16.010000"],["2024-07-24T10:04:17.010000"],["2024-07-24T10:04:18.010000"],["2024-07-24T10:04:19.010000"],["2024-07-24T10:04:20.010000"],["2024-07-24T10:04:21.010000"],["2024-07-24T10:04:22.010000"],["2024-07-24T10:04:23.010000"],["2024-07-24T10:04:24.010000"],["2024-07-24T10:04:25.010000"],["2024-07-24T10:04:26.010000"],["2024-07-24T10:04:27.010000"],["2024-07-24T10:04:28.010000"],["2024-07-24T10:04:29.010000"],["2024-07-24T10:04:30.010000"],["2024-07-24T10:04:31.010000"],["2024-07-24T10:04:32.010000"],["2024-07-24T10:04:33.010000"],["2024-07-24T10:04:34.010000"],["2024-07-24T10:04:35.010000"],["2024-07-24T10:04:36.010000"],["2024-07-24T10:04:37.010000"],["2024-07-24T10:04:38.010000"],["2024-07-24T10:04:39.010000"],["2024-07-24T10:04:40.010000"],["2024-07-24T10:04:41.010000"],["2024-07-24T10:04:42.010000"],["2024-07-24T10:04:43.010000"],["2024-07-24T10:04:44.010000"],["2024-07-24T10:04:45.010000"],["2024-07-24T10:04:46.010000"],["2024-07-24T10:04:47.010000"],["2024-07-24T10:04:48.010000"],["2024-07-24T10:04:49.010000"],["2024-07-24T10:04:50.010000"],["2024-07-24T10:04:51.010000"],["2024-07-24T10:04:52.010000"],["2024-07-24T10:04:53.010000"],["2024-07-24T10:04:54.010000"],["2024-07-24T10:04:55.010000"],["2024-07-24T10:04:56.010000"],["2024-07-24T10:04:57.010000"],["2024-07-24T10:04:58.010000"],["2024-07-24T10:04:59.010000"],["2024-07-24T10:05:00.010000"],["2024-07-24T10:05:01.010000"],["2024-07-24T10:05:02.010000"],["2024-07-24T10:05:03.010000"],["2024-07-24T10:05:04.010000"],["2024-07-24T10:05:05.010000"],["2024-07-24T10:05:06.010000"],["2024-07-24T10:05:07.010000"],["2024-07-24T10:05:08.010000"],["2024-07-24T10:05:09.010000"],["2024-07-24T10:05:10.010000"],["2024-07-24T10:05:11.010000"],["2024-07-24T10:05:12.010000"],["2024-07-24T10:05:13.010000"],["2024-07-24T10:05:14.010000"],["2024-07-24T10:05:15.010000"],["2024-07-24T10:05:16.010000"],["2024-07-24T10:05:17.010000"],["2024-07-24T10:05:18.010000"],["2024-07-24T10:05:19.010000"],["2024-07-24T10:05:20.010000"],["2024-07-24T10:05:21.010000"],["2024-07-24T10:05:22.010000"],["2024-07-24T10:05:23.010000"],["2024-07-24T10:05:24.010000"],["2024-07-24T10:05:25.010000"],["2024-07-24T10:05:26.010000"],["2024-07-24T10:05:27.010000"],["2024-07-24T10:05:28.010000"],["2024-07-24T10:05:29.010000"],["2024-07-24T10:05:30.010000"],["2024-07-24T10:05:31.010000"],["2024-07-24T10:05:32.010000"],["2024-07-24T10:05:33.010000"],["2024-07-24T10:05:34.010000"],["2024-07-24T10:05:35.010000"],["2024-07-24T10:05:36.010000"],["2024-07-24T10:05:37.010000"],["2024-07-24T10:05:38.010000"],["2024-07-24T10:05:39.010000"],["2024-07-24T10:05:40.010000"],["2024-07-24T10:05:41.010000"],["2024-07-24T10:05:42.010000"],["2024-07-24T10:05:43.010000"],["2024-07-24T10:05:44.010000"],["2024-07-24T10:05:45.010000"],["2024-07-24T10:05:46.010000"],["2024-07-24T10:05:47.010000"],["2024-07-24T10:05:48.010000"],["2024-07-24T10:05:49.010000"],["2024-07-24T10:05:50.010000"],["2024-07-24T10:05:51.010000"],["2024-07-24T10:05:52.010000"],["2024-07-24T10:05:53.010000"],["2024-07-24T10:05:54.010000"],["2024-07-24T10:05:55.010000"],["2024-07-24T10:05:56.010000"],["2024-07-24T10:05:57.010000"],["2024-07-24T10:05:58.010000"],["2024-07-24T10:05:59.010000"],["2024-07-24T10:06:00.010000"],["2024-07-24T10:06:01.010000"],["2024-07-24T10:06:02.010000"],["2024-07-24T10:06:03.010000"],["2024-07-24T10:06:04.010000"],["2024-07-24T10:06:05.010000"],["2024-07-24T10:06:06.010000"],["2024-07-24T10:06:07.010000"],["2024-07-24T10:06:08.010000"],["2024-07-24T10:06:09.010000"],["2024-07-24T10:06:10.010000"],["2024-07-24T10:06:11.010000"],["2024-07-24T10:06:12.010000"],["2024-07-24T10:06:13.010000"],["2024-07-24T10:06:14.010000"],["2024-07-24T10:06:15.010000"],["2024-07-24T10:06:16.010000"],["2024-07-24T10:06:17.010000"],["2024-07-24T10:06:18.010000"],["2024-07-24T10:06:19.010000"],["2024-07-24T10:06:20.010000"],["2024-07-24T10:06:21.010000"],["2024-07-24T10:06:22.010000"],["2024-07-24T10:06:23.010000"],["2024-07-24T10:06:24.010000"],["2024-07-24T10:06:25.010000"],["2024-07-24T10:06:26.010000"],["2024-07-24T10:06:27.010000"],["2024-07-24T10:06:28.010000"],["2024-07-24T10:06:29.010000"],["2024-07-24T10:06:30.010000"],["2024-07-24T10:06:31.010000"],["2024-07-24T10:06:32.010000"],["2024-07-24T10:06:33.010000"],["2024-07-24T10:06:34.010000"],["2024-07-24T10:06:35.010000"],["2024-07-24T10:06:36.010000"],["2024-07-24T10:06:37.010000"],["2024-07-24T10:06:38.010000"],["2024-07-24T10:06:39.010000"],["2024-07-24T10:06:40.010000"],["2024-07-24T10:06:41.010000"],["2024-07-24T10:06:42.010000"],["2024-07-24T10:06:43.010000"],["2024-07-24T10:06:44.010000"],["2024-07-24T10:06:45.010000"],["2024-07-24T10:06:46.010000"],["2024-07-24T10:06:47.010000"],["2024-07-24T10:06:48.010000"],["2024-07-24T10:06:49.010000"],["2024-07-24T10:06:50.010000"],["2024-07-24T10:06:51.010000"],["2024-07-24T10:06:52.010000"],["2024-07-24T10:06:53.010000"],["2024-07-24T10:06:54.010000"],["2024-07-24T10:06:55.010000"],["2024-07-24T10:06:56.010000"],["2024-07-24T10:06:57.010000"],["2024-07-24T10:06:58.010000"],["2024-07-24T10:06:59.010000"],["2024-07-24T10:07:00.010000"],["2024-07-24T10:07:01.010000"],["2024-07-24T10:07:02.010000"],["2024-07-24T10:07:03.010000"],["2024-07-24T10:07:04.010000"],["2024-07-24T10:07:05.010000"],["2024-07-24T10:07:06.010000"],["2024-07-24T10:07:07.010000"],["2024-07-24T10:07:08.010000"],["2024-07-24T10:07:09.010000"],["2024-07-24T10:07:10.010000"],["2024-07-24T10:07:11.010000"],["2024-07-24T10:07:12.010000"],["2024-07-24T10:07:13.010000"],["2024-07-24T10:07:14.010000"],["2024-07-24T10:07:15.010000"],["2024-07-24T10:07:16.010000"],["2024-07-24T10:07:17.010000"],["2024-07-24T10:07:18.010000"],["2024-07-24T10:07:19.010000"],["2024-07-24T10:07:20.010000"],["2024-07-24T10:07:21.010000"],["2024-07-24T10:07:22.010000"],["2024-07-24T10:07:23.010000"],["2024-07-24T10:07:24.010000"],["2024-07-24T10:07:25.010000"],["2024-07-24T10:07:26.010000"],["2024-07-24T10:07:27.010000"],["2024-07-24T10:07:28.010000"],["2024-07-24T10:07:29.010000"],["2024-07-24T10:07:30.010000"],["2024-07-24T10:07:31.010000"],["2024-07-24T10:07:32.010000"],["2024-07-24T10:07:33.010000"],["2024-07-24T10:07:34.010000"],["2024-07-24T10:07:35.010000"],["2024-07-24T10:07:36.010000"],["2024-07-24T10:07:37.010000"],["2024-07-24T10:07:38.010000"],["2024-07-24T10:07:39.010000"],["2024-07-24T10:07:40.010000"],["2024-07-24T10:07:41.010000"],["2024-07-24T10:07:42.010000"],["2024-07-24T10:07:43.010000"],["2024-07-24T10:07:44.010000"],["2024-07-24T10:07:45.010000"],["2024-07-24T10:07:46.010000"],["2024-07-24T10:07:47.010000"],["2024-07-24T10:07:48.010000"],["2024-07-24T10:07:49.010000"],["2024-07-24T10:07:50.010000"],["2024-07-24T10:07:51.010000"],["2024-07-24T10:07:52.010000"],["2024-07-24T10:07:53.010000"],["2024-07-24T10:07:54.010000"],["2024-07-24T10:07:55.010000"],["2024-07-24T10:07:56.010000"],["2024-07-24T10:07:57.010000"],["2024-07-24T10:07:58.010000"],["2024-07-24T10:07:59.010000"],["2024-07-24T10:08:00.010000"],["2024-07-24T10:08:01.010000"],["2024-07-24T10:08:02.010000"],["2024-07-24T10:08:03.010000"],["2024-07-24T10:08:04.010000"],["2024-07-24T10:08:05.010000"],["2024-07-24T10:08:06.010000"],["2024-07-24T10:08:07.010000"],["2024-07-24T10:08:08.010000"],["2024-07-24T10:08:09.010000"],["2024-07-24T10:08:10.010000"],["2024-07-24T10:08:11.010000"],["2024-07-24T10:08:12.010000"],["2024-07-24T10:08:13.010000"],["2024-07-24T10:08:14.010000"],["2024-07-24T10:08:15.010000"],["2024-07-24T10:08:16.010000"],["2024-07-24T10:08:17.010000"],["2024-07-24T10:08:18.010000"],["2024-07-24T10:08:19.010000"],["2024-07-24T10:08:20.010000"],["2024-07-24T10:08:21.010000"],["2024-07-24T10:08:22.010000"],["2024-07-24T10:08:23.010000"],["2024-07-24T10:08:24.010000"],["2024-07-24T10:08:25.010000"],["2024-07-24T10:08:26.010000"],["2024-07-24T10:08:27.010000"],["2024-07-24T10:08:28.010000"],["2024-07-24T10:08:29.010000"],["2024-07-24T10:08:30.010000"],["2024-07-24T10:08:31.010000"],["2024-07-24T10:08:32.010000"],["2024-07-24T10:08:33.010000"],["2024-07-24T10:08:34.010000"],["2024-07-24T10:08:35.010000"],["2024-07-24T10:08:36.010000"],["2024-07-24T10:08:37.010000"],["2024-07-24T10:08:38.010000"],["2024-07-24T10:08:39.010000"],["2024-07-24T10:08:40.010000"],["2024-07-24T10:08:41.010000"],["2024-07-24T10:08:42.010000"],["2024-07-24T10:08:43.010000"],["2024-07-24T10:08:44.010000"],["2024-07-24T10:08:45.010000"],["2024-07-24T10:08:46.010000"],["2024-07-24T10:08:47.010000"],["2024-07-24T10:08:48.010000"],["2024-07-24T10:08:49.010000"],["2024-07-24T10:08:50.010000"],["2024-07-24T10:08:51.010000"],["2024-07-24T10:08:52.010000"],["2024-07-24T10:08:53.010000"],["2024-07-24T10:08:54.010000"],["2024-07-24T10:08:55.010000"],["2024-07-24T10:08:56.010000"],["2024-07-24T10:08:57.010000"],["2024-07-24T10:08:58.010000"],["2024-07-24T10:08:59.010000"],["2024-07-24T10:09:00.010000"],["2024-07-24T10:09:01.010000"],["2024-07-24T10:09:02.010000"],["2024-07-24T10:09:03.010000"],["2024-07-24T10:09:04.010000"],["2024-07-24T10:09:05.010000"],["2024-07-24T10:09:06.010000"],["2024-07-24T10:09:07.010000"],["2024-07-24T10:09:08.010000"],["2024-07-24T10:09:09.010000"],["2024-07-24T10:09:10.010000"],["2024-07-24T10:09:11.010000"],["2024-07-24T10:09:12.010000"],["2024-07-24T10:09:13.010000"],["2024-07-24T10:09:14.010000"],["2024-07-24T10:09:15.010000"],["2024-07-24T10:09:16.010000"],["2024-07-24T10:09:17.010000"],["2024-07-24T10:09:18.010000"],["2024-07-24T10:09:19.010000"],["2024-07-24T10:09:20.010000"],["2024-07-24T10:09:21.010000"],["2024-07-24T10:09:22.010000"],["2024-07-24T10:09:23.010000"],["2024-07-24T10:09:24.010000"],["2024-07-24T10:09:25.010000"],["2024-07-24T10:09:26.010000"],["2024-07-24T10:09:27.010000"],["2024-07-24T10:09:28.010000"],["2024-07-24T10:09:29.010000"],["2024-07-24T10:09:30.010000"],["2024-07-24T10:09:31.010000"],["2024-07-24T10:09:32.010000"],["2024-07-24T10:09:33.010000"],["2024-07-24T10:09:34.010000"],["2024-07-24T10:09:35.010000"],["2024-07-24T10:09:36.010000"],["2024-07-24T10:09:37.010000"],["2024-07-24T10:09:38.010000"],["2024-07-24T10:09:39.010000"],["2024-07-24T10:09:40.010000"],["2024-07-24T10:09:41.010000"],["2024-07-24T10:09:42.010000"],["2024-07-24T10:09:43.010000"],["2024-07-24T10:09:44.010000"],["2024-07-24T10:09:45.010000"],["2024-07-24T10:09:46.010000"],["2024-07-24T10:09:47.010000"],["2024-07-24T10:09:48.010000"],["2024-07-24T10:09:49.010000"],["2024-07-24T10:09:50.010000"],["2024-07-24T10:09:51.010000"],["2024-07-24T10:09:52.010000"],["2024-07-24T10:09:53.010000"],["2024-07-24T10:09:54.010000"],["2024-07-24T10:09:55.010000"],["2024-07-24T10:09:56.010000"],["2024-07-24T10:09:57.010000"],["2024-07-24T10:09:58.010000"],["2024-07-24T10:09:59.010000"],["2024-07-24T10:10:00.010000"],["2024-07-24T10:10:01.010000"],["2024-07-24T10:10:02.010000"],["2024-07-24T10:10:03.010000"],["2024-07-24T10:10:04.010000"],["2024-07-24T10:10:05.010000"],["2024-07-24T10:10:06.010000"],["2024-07-24T10:10:07.010000"],["2024-07-24T10:10:08.010000"],["2024-07-24T10:10:09.010000"],["2024-07-24T10:10:10.010000"],["2024-07-24T10:10:11.010000"],["2024-07-24T10:10:12.010000"],["2024-07-24T10:10:13.010000"],["2024-07-24T10:10:14.010000"],["2024-07-24T10:10:15.010000"],["2024-07-24T10:10:16.010000"],["2024-07-24T10:10:17.010000"],["2024-07-24T10:10:18.010000"],["2024-07-24T10:10:19.010000"],["2024-07-24T10:10:20.010000"],["2024-07-24T10:10:21.010000"],["2024-07-24T10:10:22.010000"],["2024-07-24T10:10:23.010000"],["2024-07-24T10:10:24.010000"],["2024-07-24T10:10:25.010000"],["2024-07-24T10:10:26.010000"],["2024-07-24T10:10:27.010000"],["2024-07-24T10:10:28.010000"],["2024-07-24T10:10:29.010000"],["2024-07-24T10:10:30.010000"],["2024-07-24T10:10:31.010000"],["2024-07-24T10:10:32.010000"],["2024-07-24T10:10:33.010000"],["2024-07-24T10:10:34.010000"],["2024-07-24T10:10:35.010000"],["2024-07-24T10:10:36.010000"],["2024-07-24T10:10:37.010000"],["2024-07-24T10:10:38.010000"],["2024-07-24T10:10:39.010000"],["2024-07-24T10:10:40.010000"],["2024-07-24T10:10:41.010000"],["2024-07-24T10:10:42.010000"],["2024-07-24T10:10:43.010000"],["2024-07-24T10:10:44.010000"],["2024-07-24T10:10:45.010000"],["2024-07-24T10:10:46.010000"],["2024-07-24T10:10:47.010000"],["2024-07-24T10:10:48.010000"],["2024-07-24T10:10:49.010000"],["2024-07-24T10:10:50.010000"],["2024-07-24T10:10:51.010000"],["2024-07-24T10:10:52.010000"],["2024-07-24T10:10:53.010000"],["2024-07-24T10:10:54.010000"],["2024-07-24T10:10:55.010000"],["2024-07-24T10:10:56.010000"],["2024-07-24T10:10:57.010000"],["2024-07-24T10:10:58.010000"],["2024-07-24T10:10:59.010000"],["2024-07-24T10:11:00.010000"],["2024-07-24T10:11:01.010000"],["2024-07-24T10:11:02.010000"],["2024-07-24T10:11:03.010000"],["2024-07-24T10:11:04.010000"],["2024-07-24T10:11:05.010000"],["2024-07-24T10:11:06.010000"],["2024-07-24T10:11:07.010000"],["2024-07-24T10:11:08.010000"],["2024-07-24T10:11:09.010000"],["2024-07-24T10:11:10.010000"],["2024-07-24T10:11:11.010000"],["2024-07-24T10:11:12.010000"],["2024-07-24T10:11:13.010000"],["2024-07-24T10:11:14.010000"],["2024-07-24T10:11:15.010000"],["2024-07-24T10:11:16.010000"],["2024-07-24T10:11:17.010000"],["2024-07-24T10:11:18.010000"],["2024-07-24T10:11:19.010000"],["2024-07-24T10:11:20.010000"],["2024-07-24T10:11:21.010000"],["2024-07-24T10:11:22.010000"],["2024-07-24T10:11:23.010000"],["2024-07-24T10:11:24.010000"],["2024-07-24T10:11:25.010000"],["2024-07-24T10:11:26.010000"],["2024-07-24T10:11:27.010000"],["2024-07-24T10:11:28.010000"],["2024-07-24T10:11:29.010000"],["2024-07-24T10:11:30.010000"],["2024-07-24T10:11:31.010000"],["2024-07-24T10:11:32.010000"],["2024-07-24T10:11:33.010000"],["2024-07-24T10:11:34.010000"],["2024-07-24T10:11:35.010000"],["2024-07-24T10:11:36.010000"],["2024-07-24T10:11:37.010000"],["2024-07-24T10:11:38.010000"],["2024-07-24T10:11:39.010000"],["2024-07-24T10:11:40.010000"],["2024-07-24T10:11:41.010000"],["2024-07-24T10:11:42.010000"],["2024-07-24T10:11:43.010000"],["2024-07-24T10:11:44.010000"],["2024-07-24T10:11:45.010000"],["2024-07-24T10:11:46.010000"],["2024-07-24T10:11:47.010000"],["2024-07-24T10:11:48.010000"],["2024-07-24T10:11:49.010000"],["2024-07-24T10:11:50.010000"],["2024-07-24T10:11:51.010000"],["2024-07-24T10:11:52.010000"],["2024-07-24T10:11:53.010000"],["2024-07-24T10:11:54.010000"],["2024-07-24T10:11:55.010000"],["2024-07-24T10:11:56.010000"],["2024-07-24T10:11:57.010000"],["2024-07-24T10:11:58.010000"],["2024-07-24T10:11:59.010000"],["2024-07-24T10:12:00.010000"],["2024-07-24T10:12:01.010000"],["2024-07-24T10:12:02.010000"],["2024-07-24T10:12:03.010000"],["2024-07-24T10:12:04.010000"],["2024-07-24T10:12:05.010000"],["2024-07-24T10:12:06.010000"],["2024-07-24T10:12:07.010000"],["2024-07-24T10:12:08.010000"],["2024-07-24T10:12:09.010000"],["2024-07-24T10:12:10.010000"],["2024-07-24T10:12:11.010000"],["2024-07-24T10:12:12.010000"],["2024-07-24T10:12:13.010000"],["2024-07-24T10:12:14.010000"],["2024-07-24T10:12:15.010000"],["2024-07-24T10:12:16.010000"],["2024-07-24T10:12:17.010000"],["2024-07-24T10:12:18.010000"],["2024-07-24T10:12:19.010000"],["2024-07-24T10:12:20.010000"],["2024-07-24T10:12:21.010000"],["2024-07-24T10:12:22.010000"],["2024-07-24T10:12:23.010000"],["2024-07-24T10:12:24.010000"],["2024-07-24T10:12:25.010000"],["2024-07-24T10:12:26.010000"],["2024-07-24T10:12:27.010000"],["2024-07-24T10:12:28.010000"],["2024-07-24T10:12:29.010000"],["2024-07-24T10:12:30.010000"],["2024-07-24T10:12:31.010000"],["2024-07-24T10:12:32.010000"],["2024-07-24T10:12:33.010000"],["2024-07-24T10:12:34.010000"],["2024-07-24T10:12:35.010000"],["2024-07-24T10:12:36.010000"],["2024-07-24T10:12:37.010000"],["2024-07-24T10:12:38.010000"],["2024-07-24T10:12:39.010000"],["2024-07-24T10:12:40.010000"],["2024-07-24T10:12:41.010000"],["2024-07-24T10:12:42.010000"],["2024-07-24T10:12:43.010000"],["2024-07-24T10:12:44.010000"],["2024-07-24T10:12:45.010000"],["2024-07-24T10:12:46.010000"],["2024-07-24T10:12:47.010000"],["2024-07-24T10:12:48.010000"],["2024-07-24T10:12:49.010000"],["2024-07-24T10:12:50.010000"],["2024-07-24T10:12:51.010000"],["2024-07-24T10:12:52.010000"],["2024-07-24T10:12:53.010000"],["2024-07-24T10:12:54.010000"],["2024-07-24T10:12:55.010000"],["2024-07-24T10:12:56.010000"],["2024-07-24T10:12:57.010000"],["2024-07-24T10:12:58.010000"],["2024-07-24T10:12:59.010000"],["2024-07-24T10:13:00.010000"],["2024-07-24T10:13:01.010000"],["2024-07-24T10:13:02.010000"],["2024-07-24T10:13:03.010000"],["2024-07-24T10:13:04.010000"],["2024-07-24T10:13:05.010000"],["2024-07-24T10:13:06.010000"],["2024-07-24T10:13:07.010000"],["2024-07-24T10:13:08.010000"],["2024-07-24T10:13:09.010000"],["2024-07-24T10:13:10.010000"],["2024-07-24T10:13:11.010000"],["2024-07-24T10:13:12.010000"],["2024-07-24T10:13:13.010000"],["2024-07-24T10:13:14.010000"],["2024-07-24T10:13:15.010000"],["2024-07-24T10:13:16.010000"],["2024-07-24T10:13:17.010000"],["2024-07-24T10:13:18.010000"],["2024-07-24T10:13:19.010000"],["2024-07-24T10:13:20.010000"],["2024-07-24T10:13:21.010000"],["2024-07-24T10:13:22.010000"],["2024-07-24T10:13:23.010000"],["2024-07-24T10:13:24.010000"],["2024-07-24T10:13:25.010000"],["2024-07-24T10:13:26.010000"],["2024-07-24T10:13:27.010000"],["2024-07-24T10:13:28.010000"],["2024-07-24T10:13:29.010000"],["2024-07-24T10:13:30.010000"],["2024-07-24T10:13:31.010000"],["2024-07-24T10:13:32.010000"],["2024-07-24T10:13:33.010000"],["2024-07-24T10:13:34.010000"],["2024-07-24T10:13:35.010000"],["2024-07-24T10:13:36.010000"],["2024-07-24T10:13:37.010000"],["2024-07-24T10:13:38.010000"],["2024-07-24T10:13:39.010000"],["2024-07-24T10:13:40.010000"],["2024-07-24T10:13:41.010000"],["2024-07-24T10:13:42.010000"],["2024-07-24T10:13:43.010000"],["2024-07-24T10:13:44.010000"],["2024-07-24T10:13:45.010000"],["2024-07-24T10:13:46.010000"],["2024-07-24T10:13:47.010000"],["2024-07-24T10:13:48.010000"],["2024-07-24T10:13:49.010000"],["2024-07-24T10:13:50.010000"],["2024-07-24T10:13:51.010000"],["2024-07-24T10:13:52.010000"],["2024-07-24T10:13:53.010000"],["2024-07-24T10:13:54.010000"],["2024-07-24T10:13:55.010000"],["2024-07-24T10:13:56.010000"],["2024-07-24T10:13:57.010000"],["2024-07-24T10:13:58.010000"],["2024-07-24T10:13:59.010000"],["2024-07-24T10:14:00.010000"],["2024-07-24T10:14:01.010000"],["2024-07-24T10:14:02.010000"],["2024-07-24T10:14:03.010000"],["2024-07-24T10:14:04.010000"],["2024-07-24T10:14:05.010000"],["2024-07-24T10:14:06.010000"],["2024-07-24T10:14:07.010000"],["2024-07-24T10:14:08.010000"],["2024-07-24T10:14:09.010000"],["2024-07-24T10:14:10.010000"],["2024-07-24T10:14:11.010000"],["2024-07-24T10:14:12.010000"],["2024-07-24T10:14:13.010000"],["2024-07-24T10:14:14.010000"],["2024-07-24T10:14:15.010000"],["2024-07-24T10:14:16.010000"],["2024-07-24T10:14:17.010000"],["2024-07-24T10:14:18.010000"],["2024-07-24T10:14:19.010000"],["2024-07-24T10:14:20.010000"],["2024-07-24T10:14:21.010000"],["2024-07-24T10:14:22.010000"],["2024-07-24T10:14:23.010000"],["2024-07-24T10:14:24.010000"],["2024-07-24T10:14:25.010000"],["2024-07-24T10:14:26.010000"],["2024-07-24T10:14:27.010000"],["2024-07-24T10:14:28.010000"],["2024-07-24T10:14:29.010000"],["2024-07-24T10:14:30.010000"],["2024-07-24T10:14:31.010000"],["2024-07-24T10:14:32.010000"],["2024-07-24T10:14:33.010000"],["2024-07-24T10:14:34.010000"],["2024-07-24T10:14:35.010000"],["2024-07-24T10:14:36.010000"],["2024-07-24T10:14:37.010000"],["2024-07-24T10:14:38.010000"],["2024-07-24T10:14:39.010000"],["2024-07-24T10:14:40.010000"],["2024-07-24T10:14:41.010000"],["2024-07-24T10:14:42.010000"],["2024-07-24T10:14:43.010000"],["2024-07-24T10:14:44.010000"],["2024-07-24T10:14:45.010000"],["2024-07-24T10:14:46.010000"],["2024-07-24T10:14:47.010000"],["2024-07-24T10:14:48.010000"],["2024-07-24T10:14:49.010000"],["2024-07-24T10:14:50.010000"],["2024-07-24T10:14:51.010000"],["2024-07-24T10:14:52.010000"],["2024-07-24T10:14:53.010000"],["2024-07-24T10:14:54.010000"],["2024-07-24T10:14:55.010000"],["2024-07-24T10:14:56.010000"],["2024-07-24T10:14:57.010000"],["2024-07-24T10:14:58.010000"],["2024-07-24T10:14:59.010000"],["2024-07-24T10:15:00.010000"],["2024-07-24T10:15:01.010000"],["2024-07-24T10:15:02.010000"],["2024-07-24T10:15:03.010000"],["2024-07-24T10:15:04.010000"],["2024-07-24T10:15:05.010000"],["2024-07-24T10:15:06.010000"],["2024-07-24T10:15:07.010000"],["2024-07-24T10:15:08.010000"],["2024-07-24T10:15:09.010000"],["2024-07-24T10:15:10.010000"],["2024-07-24T10:15:11.010000"],["2024-07-24T10:15:12.010000"],["2024-07-24T10:15:13.010000"],["2024-07-24T10:15:14.010000"],["2024-07-24T10:15:15.010000"],["2024-07-24T10:15:16.010000"],["2024-07-24T10:15:17.010000"],["2024-07-24T10:15:18.010000"],["2024-07-24T10:15:19.010000"],["2024-07-24T10:15:20.010000"],["2024-07-24T10:15:21.010000"],["2024-07-24T10:15:22.010000"],["2024-07-24T10:15:23.010000"],["2024-07-24T10:15:24.010000"],["2024-07-24T10:15:25.010000"],["2024-07-24T10:15:26.010000"],["2024-07-24T10:15:27.010000"],["2024-07-24T10:15:28.010000"],["2024-07-24T10:15:29.010000"],["2024-07-24T10:15:30.010000"],["2024-07-24T10:15:31.010000"],["2024-07-24T10:15:32.010000"],["2024-07-24T10:15:33.010000"],["2024-07-24T10:15:34.010000"],["2024-07-24T10:15:35.010000"],["2024-07-24T10:15:36.010000"],["2024-07-24T10:15:37.010000"],["2024-07-24T10:15:38.010000"],["2024-07-24T10:15:39.010000"],["2024-07-24T10:15:40.010000"],["2024-07-24T10:15:41.010000"],["2024-07-24T10:15:42.010000"],["2024-07-24T10:15:43.010000"],["2024-07-24T10:15:44.010000"],["2024-07-24T10:15:45.010000"],["2024-07-24T10:15:46.010000"],["2024-07-24T10:15:47.010000"],["2024-07-24T10:15:48.010000"],["2024-07-24T10:15:49.010000"],["2024-07-24T10:15:50.010000"],["2024-07-24T10:15:51.010000"],["2024-07-24T10:15:52.010000"],["2024-07-24T10:15:53.010000"],["2024-07-24T10:15:54.010000"],["2024-07-24T10:15:55.010000"],["2024-07-24T10:15:56.010000"],["2024-07-24T10:15:57.010000"],["2024-07-24T10:15:58.010000"],["2024-07-24T10:15:59.010000"],["2024-07-24T10:16:00.010000"],["2024-07-24T10:16:01.010000"],["2024-07-24T10:16:02.010000"],["2024-07-24T10:16:03.010000"],["2024-07-24T10:16:04.010000"],["2024-07-24T10:16:05.010000"],["2024-07-24T10:16:06.010000"],["2024-07-24T10:16:07.010000"],["2024-07-24T10:16:08.010000"],["2024-07-24T10:16:09.010000"],["2024-07-24T10:16:10.010000"],["2024-07-24T10:16:11.010000"],["2024-07-24T10:16:12.010000"],["2024-07-24T10:16:13.010000"],["2024-07-24T10:16:14.010000"],["2024-07-24T10:16:15.010000"],["2024-07-24T10:16:16.010000"],["2024-07-24T10:16:17.010000"],["2024-07-24T10:16:18.010000"],["2024-07-24T10:16:19.010000"],["2024-07-24T10:16:20.010000"],["2024-07-24T10:16:21.010000"],["2024-07-24T10:16:22.010000"],["2024-07-24T10:16:23.010000"],["2024-07-24T10:16:24.010000"],["2024-07-24T10:16:25.010000"],["2024-07-24T10:16:26.010000"],["2024-07-24T10:16:27.010000"],["2024-07-24T10:16:28.010000"],["2024-07-24T10:16:29.010000"],["2024-07-24T10:16:30.010000"],["2024-07-24T10:16:31.010000"],["2024-07-24T10:16:32.010000"],["2024-07-24T10:16:33.010000"],["2024-07-24T10:16:34.010000"],["2024-07-24T10:16:35.010000"],["2024-07-24T10:16:36.010000"],["2024-07-24T10:16:37.010000"],["2024-07-24T10:16:38.010000"],["2024-07-24T10:16:39.010000"],["2024-07-24T10:16:40.010000"],["2024-07-24T10:16:41.010000"],["2024-07-24T10:16:42.010000"],["2024-07-24T10:16:43.010000"],["2024-07-24T10:16:44.010000"],["2024-07-24T10:16:45.010000"],["2024-07-24T10:16:46.010000"],["2024-07-24T10:16:47.010000"],["2024-07-24T10:16:48.010000"],["2024-07-24T10:16:49.010000"],["2024-07-24T10:16:50.010000"],["2024-07-24T10:16:51.010000"],["2024-07-24T10:16:52.010000"],["2024-07-24T10:16:53.010000"],["2024-07-24T10:16:54.010000"],["2024-07-24T10:16:55.010000"],["2024-07-24T10:16:56.010000"],["2024-07-24T10:16:57.010000"],["2024-07-24T10:16:58.010000"],["2024-07-24T10:16:59.010000"],["2024-07-24T10:17:00.010000"],["2024-07-24T10:17:01.010000"],["2024-07-24T10:17:02.010000"],["2024-07-24T10:17:03.010000"],["2024-07-24T10:17:04.010000"],["2024-07-24T10:17:05.010000"],["2024-07-24T10:17:06.010000"],["2024-07-24T10:17:07.010000"],["2024-07-24T10:17:08.010000"],["2024-07-24T10:17:09.010000"],["2024-07-24T10:17:10.010000"],["2024-07-24T10:17:11.010000"],["2024-07-24T10:17:12.010000"],["2024-07-24T10:17:13.010000"],["2024-07-24T10:17:14.010000"],["2024-07-24T10:17:15.010000"],["2024-07-24T10:17:16.010000"],["2024-07-24T10:17:17.010000"],["2024-07-24T10:17:18.010000"],["2024-07-24T10:17:19.010000"],["2024-07-24T10:17:20.010000"],["2024-07-24T10:17:21.010000"],["2024-07-24T10:17:22.010000"],["2024-07-24T10:17:23.010000"],["2024-07-24T10:17:24.010000"],["2024-07-24T10:17:25.010000"],["2024-07-24T10:17:26.010000"],["2024-07-24T10:17:27.010000"],["2024-07-24T10:17:28.010000"],["2024-07-24T10:17:29.010000"],["2024-07-24T10:17:30.010000"],["2024-07-24T10:17:31.010000"],["2024-07-24T10:17:32.010000"],["2024-07-24T10:17:33.010000"],["2024-07-24T10:17:34.010000"],["2024-07-24T10:17:35.010000"],["2024-07-24T10:17:36.010000"],["2024-07-24T10:17:37.010000"],["2024-07-24T10:17:38.010000"],["2024-07-24T10:17:39.010000"],["2024-07-24T10:17:40.010000"],["2024-07-24T10:17:41.010000"],["2024-07-24T10:17:42.010000"],["2024-07-24T10:17:43.010000"],["2024-07-24T10:17:44.010000"],["2024-07-24T10:17:45.010000"],["2024-07-24T10:17:46.010000"],["2024-07-24T10:17:47.010000"],["2024-07-24T10:17:48.010000"],["2024-07-24T10:17:49.010000"],["2024-07-24T10:17:50.010000"],["2024-07-24T10:17:51.010000"],["2024-07-24T10:17:52.010000"],["2024-07-24T10:17:53.010000"],["2024-07-24T10:17:54.010000"],["2024-07-24T10:17:55.010000"],["2024-07-24T10:17:56.010000"],["2024-07-24T10:17:57.010000"],["2024-07-24T10:17:58.010000"],["2024-07-24T10:17:59.010000"],["2024-07-24T10:18:00.010000"],["2024-07-24T10:18:01.010000"],["2024-07-24T10:18:02.010000"],["2024-07-24T10:18:03.010000"],["2024-07-24T10:18:04.010000"],["2024-07-24T10:18:05.010000"],["2024-07-24T10:18:06.010000"],["2024-07-24T10:18:07.010000"],["2024-07-24T10:18:08.010000"],["2024-07-24T10:18:09.010000"],["2024-07-24T10:18:10.010000"],["2024-07-24T10:18:11.010000"],["2024-07-24T10:18:12.010000"],["2024-07-24T10:18:13.010000"],["2024-07-24T10:18:14.010000"],["2024-07-24T10:18:15.010000"],["2024-07-24T10:18:16.010000"],["2024-07-24T10:18:17.010000"],["2024-07-24T10:18:18.010000"],["2024-07-24T10:18:19.010000"],["2024-07-24T10:18:20.010000"],["2024-07-24T10:18:21.010000"],["2024-07-24T10:18:22.010000"],["2024-07-24T10:18:23.010000"],["2024-07-24T10:18:24.010000"],["2024-07-24T10:18:25.010000"],["2024-07-24T10:18:26.010000"],["2024-07-24T10:18:27.010000"],["2024-07-24T10:18:28.010000"],["2024-07-24T10:18:29.010000"],["2024-07-24T10:18:30.010000"],["2024-07-24T10:18:31.010000"],["2024-07-24T10:18:32.010000"],["2024-07-24T10:18:33.010000"],["2024-07-24T10:18:34.010000"],["2024-07-24T10:18:35.010000"],["2024-07-24T10:18:36.010000"],["2024-07-24T10:18:37.010000"],["2024-07-24T10:18:38.010000"],["2024-07-24T10:18:39.010000"],["2024-07-24T10:18:40.010000"],["2024-07-24T10:18:41.010000"],["2024-07-24T10:18:42.010000"],["2024-07-24T10:18:43.010000"],["2024-07-24T10:18:44.010000"],["2024-07-24T10:18:45.010000"],["2024-07-24T10:18:46.010000"],["2024-07-24T10:18:47.010000"],["2024-07-24T10:18:48.010000"],["2024-07-24T10:18:49.010000"],["2024-07-24T10:18:50.010000"],["2024-07-24T10:18:51.010000"],["2024-07-24T10:18:52.010000"],["2024-07-24T10:18:53.010000"],["2024-07-24T10:18:54.010000"],["2024-07-24T10:18:55.010000"],["2024-07-24T10:18:56.010000"],["2024-07-24T10:18:57.010000"],["2024-07-24T10:18:58.010000"],["2024-07-24T10:18:59.010000"],["2024-07-24T10:19:00.010000"],["2024-07-24T10:19:01.010000"],["2024-07-24T10:19:02.010000"],["2024-07-24T10:19:03.010000"],["2024-07-24T10:19:04.010000"],["2024-07-24T10:19:05.010000"],["2024-07-24T10:19:06.010000"],["2024-07-24T10:19:07.010000"],["2024-07-24T10:19:08.010000"],["2024-07-24T10:19:09.010000"],["2024-07-24T10:19:10.010000"],["2024-07-24T10:19:11.010000"],["2024-07-24T10:19:12.010000"],["2024-07-24T10:19:13.010000"],["2024-07-24T10:19:14.010000"],["2024-07-24T10:19:15.010000"],["2024-07-24T10:19:16.010000"],["2024-07-24T10:19:17.010000"],["2024-07-24T10:19:18.010000"],["2024-07-24T10:19:19.010000"],["2024-07-24T10:19:20.010000"],["2024-07-24T10:19:21.010000"],["2024-07-24T10:19:22.010000"],["2024-07-24T10:19:23.010000"],["2024-07-24T10:19:24.010000"],["2024-07-24T10:19:25.010000"],["2024-07-24T10:19:26.010000"],["2024-07-24T10:19:27.010000"],["2024-07-24T10:19:28.010000"],["2024-07-24T10:19:29.010000"],["2024-07-24T10:19:30.010000"],["2024-07-24T10:19:31.010000"],["2024-07-24T10:19:32.010000"],["2024-07-24T10:19:33.010000"],["2024-07-24T10:19:34.010000"],["2024-07-24T10:19:35.010000"],["2024-07-24T10:19:36.010000"],["2024-07-24T10:19:37.010000"],["2024-07-24T10:19:38.010000"],["2024-07-24T10:19:39.010000"],["2024-07-24T10:19:40.010000"],["2024-07-24T10:19:41.010000"],["2024-07-24T10:19:42.010000"],["2024-07-24T10:19:43.010000"],["2024-07-24T10:19:44.010000"],["2024-07-24T10:19:45.010000"],["2024-07-24T10:19:46.010000"],["2024-07-24T10:19:47.010000"],["2024-07-24T10:19:48.010000"],["2024-07-24T10:19:49.010000"],["2024-07-24T10:19:50.010000"],["2024-07-24T10:19:51.010000"],["2024-07-24T10:19:52.010000"],["2024-07-24T10:19:53.010000"],["2024-07-24T10:19:54.010000"],["2024-07-24T10:19:55.010000"],["2024-07-24T10:19:56.010000"],["2024-07-24T10:19:57.010000"],["2024-07-24T10:19:58.010000"],["2024-07-24T10:19:59.010000"],["2024-07-24T10:20:00.010000"],["2024-07-24T10:20:01.010000"],["2024-07-24T10:20:02.010000"],["2024-07-24T10:20:03.010000"],["2024-07-24T10:20:04.010000"],["2024-07-24T10:20:05.010000"],["2024-07-24T10:20:06.010000"],["2024-07-24T10:20:07.010000"],["2024-07-24T10:20:08.010000"],["2024-07-24T10:20:09.010000"],["2024-07-24T10:20:10.010000"],["2024-07-24T10:20:11.010000"],["2024-07-24T10:20:12.010000"],["2024-07-24T10:20:13.010000"],["2024-07-24T10:20:14.010000"],["2024-07-24T10:20:15.010000"],["2024-07-24T10:20:16.010000"],["2024-07-24T10:20:17.010000"],["2024-07-24T10:20:18.010000"],["2024-07-24T10:20:19.010000"],["2024-07-24T10:20:20.010000"],["2024-07-24T10:20:21.010000"],["2024-07-24T10:20:22.010000"],["2024-07-24T10:20:23.010000"],["2024-07-24T10:20:24.010000"],["2024-07-24T10:20:25.010000"],["2024-07-24T10:20:26.010000"],["2024-07-24T10:20:27.010000"],["2024-07-24T10:20:28.010000"],["2024-07-24T10:20:29.010000"],["2024-07-24T10:20:30.010000"],["2024-07-24T10:20:31.010000"],["2024-07-24T10:20:32.010000"],["2024-07-24T10:20:33.010000"],["2024-07-24T10:20:34.010000"],["2024-07-24T10:20:35.010000"],["2024-07-24T10:20:36.010000"],["2024-07-24T10:20:37.010000"],["2024-07-24T10:20:38.010000"],["2024-07-24T10:20:39.010000"],["2024-07-24T10:20:40.010000"],["2024-07-24T10:20:41.010000"],["2024-07-24T10:20:42.010000"],["2024-07-24T10:20:43.010000"],["2024-07-24T10:20:44.010000"],["2024-07-24T10:20:45.010000"],["2024-07-24T10:20:46.010000"],["2024-07-24T10:20:47.010000"],["2024-07-24T10:20:48.010000"],["2024-07-24T10:20:49.010000"],["2024-07-24T10:20:50.010000"],["2024-07-24T10:20:51.010000"],["2024-07-24T10:20:52.010000"],["2024-07-24T10:20:53.010000"],["2024-07-24T10:20:54.010000"],["2024-07-24T10:20:55.010000"],["2024-07-24T10:20:56.010000"],["2024-07-24T10:20:57.010000"],["2024-07-24T10:20:58.010000"],["2024-07-24T10:20:59.010000"],["2024-07-24T10:21:00.010000"],["2024-07-24T10:21:01.010000"],["2024-07-24T10:21:02.010000"],["2024-07-24T10:21:03.010000"],["2024-07-24T10:21:04.010000"],["2024-07-24T10:21:05.010000"],["2024-07-24T10:21:06.010000"],["2024-07-24T10:21:07.010000"],["2024-07-24T10:21:08.010000"],["2024-07-24T10:21:09.010000"],["2024-07-24T10:21:10.010000"],["2024-07-24T10:21:11.010000"],["2024-07-24T10:21:12.010000"],["2024-07-24T10:21:13.010000"],["2024-07-24T10:21:14.010000"],["2024-07-24T10:21:15.010000"],["2024-07-24T10:21:16.010000"],["2024-07-24T10:21:17.010000"],["2024-07-24T10:21:18.010000"],["2024-07-24T10:21:19.010000"],["2024-07-24T10:21:20.010000"],["2024-07-24T10:21:21.010000"],["2024-07-24T10:21:22.010000"],["2024-07-24T10:21:23.010000"],["2024-07-24T10:21:24.010000"],["2024-07-24T10:21:25.010000"],["2024-07-24T10:21:26.010000"],["2024-07-24T10:21:27.010000"],["2024-07-24T10:21:28.010000"],["2024-07-24T10:21:29.010000"],["2024-07-24T10:21:30.010000"],["2024-07-24T10:21:31.010000"],["2024-07-24T10:21:32.010000"],["2024-07-24T10:21:33.010000"],["2024-07-24T10:21:34.010000"],["2024-07-24T10:21:35.010000"],["2024-07-24T10:21:36.010000"],["2024-07-24T10:21:37.010000"],["2024-07-24T10:21:38.010000"],["2024-07-24T10:21:39.010000"],["2024-07-24T10:21:40.010000"],["2024-07-24T10:21:41.010000"],["2024-07-24T10:21:42.010000"],["2024-07-24T10:21:43.010000"],["2024-07-24T10:21:44.010000"],["2024-07-24T10:21:45.010000"],["2024-07-24T10:21:46.010000"],["2024-07-24T10:21:47.010000"],["2024-07-24T10:21:48.010000"],["2024-07-24T10:21:49.010000"],["2024-07-24T10:21:50.010000"],["2024-07-24T10:21:51.010000"],["2024-07-24T10:21:52.010000"],["2024-07-24T10:21:53.010000"],["2024-07-24T10:21:54.010000"],["2024-07-24T10:21:55.010000"],["2024-07-24T10:21:56.010000"],["2024-07-24T10:21:57.010000"],["2024-07-24T10:21:58.010000"],["2024-07-24T10:21:59.010000"],["2024-07-24T10:22:00.010000"],["2024-07-24T10:22:01.010000"],["2024-07-24T10:22:02.010000"],["2024-07-24T10:22:03.010000"],["2024-07-24T10:22:04.010000"],["2024-07-24T10:22:05.010000"],["2024-07-24T10:22:06.010000"],["2024-07-24T10:22:07.010000"],["2024-07-24T10:22:08.010000"],["2024-07-24T10:22:09.010000"],["2024-07-24T10:22:10.010000"],["2024-07-24T10:22:11.010000"],["2024-07-24T10:22:12.010000"],["2024-07-24T10:22:13.010000"],["2024-07-24T10:22:14.010000"],["2024-07-24T10:22:15.010000"],["2024-07-24T10:22:16.010000"],["2024-07-24T10:22:17.010000"],["2024-07-24T10:22:18.010000"],["2024-07-24T10:22:19.010000"],["2024-07-24T10:22:20.010000"],["2024-07-24T10:22:21.010000"],["2024-07-24T10:22:22.010000"],["2024-07-24T10:22:23.010000"],["2024-07-24T10:22:24.010000"],["2024-07-24T10:22:25.010000"],["2024-07-24T10:22:26.010000"],["2024-07-24T10:22:27.010000"],["2024-07-24T10:22:28.010000"],["2024-07-24T10:22:29.010000"],["2024-07-24T10:22:30.010000"],["2024-07-24T10:22:31.010000"],["2024-07-24T10:22:32.010000"],["2024-07-24T10:22:33.010000"],["2024-07-24T10:22:34.010000"],["2024-07-24T10:22:35.010000"],["2024-07-24T10:22:36.010000"],["2024-07-24T10:22:37.010000"],["2024-07-24T10:22:38.010000"],["2024-07-24T10:22:39.010000"],["2024-07-24T10:22:40.010000"],["2024-07-24T10:22:41.010000"],["2024-07-24T10:22:42.010000"],["2024-07-24T10:22:43.010000"],["2024-07-24T10:22:44.010000"],["2024-07-24T10:22:45.010000"],["2024-07-24T10:22:46.010000"],["2024-07-24T10:22:47.010000"],["2024-07-24T10:22:48.010000"],["2024-07-24T10:22:49.010000"],["2024-07-24T10:22:50.010000"],["2024-07-24T10:22:51.010000"],["2024-07-24T10:22:52.010000"],["2024-07-24T10:22:53.010000"],["2024-07-24T10:22:54.010000"],["2024-07-24T10:22:55.010000"],["2024-07-24T10:22:56.010000"],["2024-07-24T10:22:57.010000"],["2024-07-24T10:22:58.010000"],["2024-07-24T10:22:59.010000"],["2024-07-24T10:23:00.010000"],["2024-07-24T10:23:01.010000"],["2024-07-24T10:23:02.010000"],["2024-07-24T10:23:03.010000"],["2024-07-24T10:23:04.010000"],["2024-07-24T10:23:05.010000"],["2024-07-24T10:23:06.010000"],["2024-07-24T10:23:07.010000"],["2024-07-24T10:23:08.010000"],["2024-07-24T10:23:09.010000"],["2024-07-24T10:23:10.010000"],["2024-07-24T10:23:11.010000"],["2024-07-24T10:23:12.010000"],["2024-07-24T10:23:13.010000"],["2024-07-24T10:23:14.010000"],["2024-07-24T10:23:15.010000"],["2024-07-24T10:23:16.010000"],["2024-07-24T10:23:17.010000"],["2024-07-24T10:23:18.010000"],["2024-07-24T10:23:19.010000"],["2024-07-24T10:23:20.010000"],["2024-07-24T10:23:21.010000"],["2024-07-24T10:23:22.010000"],["2024-07-24T10:23:23.010000"],["2024-07-24T10:23:24.010000"],["2024-07-24T10:23:25.010000"],["2024-07-24T10:23:26.010000"],["2024-07-24T10:23:27.010000"],["2024-07-24T10:23:28.010000"],["2024-07-24T10:23:29.010000"],["2024-07-24T10:23:30.010000"],["2024-07-24T10:23:31.010000"],["2024-07-24T10:23:32.010000"],["2024-07-24T10:23:33.010000"],["2024-07-24T10:23:34.010000"],["2024-07-24T10:23:35.010000"],["2024-07-24T10:23:36.010000"],["2024-07-24T10:23:37.010000"],["2024-07-24T10:23:38.010000"],["2024-07-24T10:23:39.010000"],["2024-07-24T10:23:40.010000"],["2024-07-24T10:23:41.010000"],["2024-07-24T10:23:42.010000"],["2024-07-24T10:23:43.010000"],["2024-07-24T10:23:44.010000"],["2024-07-24T10:23:45.010000"],["2024-07-24T10:23:46.010000"],["2024-07-24T10:23:47.010000"],["2024-07-24T10:23:48.010000"],["2024-07-24T10:23:49.010000"],["2024-07-24T10:23:50.010000"],["2024-07-24T10:23:51.010000"],["2024-07-24T10:23:52.010000"],["2024-07-24T10:23:53.010000"],["2024-07-24T10:23:54.010000"],["2024-07-24T10:23:55.010000"],["2024-07-24T10:23:56.010000"],["2024-07-24T10:23:57.010000"],["2024-07-24T10:23:58.010000"],["2024-07-24T10:23:59.010000"],["2024-07-24T10:24:00.010000"],["2024-07-24T10:24:01.010000"],["2024-07-24T10:24:02.010000"],["2024-07-24T10:24:03.010000"],["2024-07-24T10:24:04.010000"],["2024-07-24T10:24:05.010000"],["2024-07-24T10:24:06.010000"],["2024-07-24T10:24:07.010000"],["2024-07-24T10:24:08.010000"],["2024-07-24T10:24:09.010000"],["2024-07-24T10:24:10.010000"],["2024-07-24T10:24:11.010000"],["2024-07-24T10:24:12.010000"],["2024-07-24T10:24:13.010000"],["2024-07-24T10:24:14.010000"],["2024-07-24T10:24:15.010000"],["2024-07-24T10:24:16.010000"],["2024-07-24T10:24:17.010000"],["2024-07-24T10:24:18.010000"],["2024-07-24T10:24:19.010000"],["2024-07-24T10:24:20.010000"],["2024-07-24T10:24:21.010000"],["2024-07-24T10:24:22.010000"],["2024-07-24T10:24:23.010000"],["2024-07-24T10:24:24.010000"],["2024-07-24T10:24:25.010000"],["2024-07-24T10:24:26.010000"],["2024-07-24T10:24:27.010000"],["2024-07-24T10:24:28.010000"],["2024-07-24T10:24:29.010000"],["2024-07-24T10:24:30.010000"],["2024-07-24T10:24:31.010000"],["2024-07-24T10:24:32.010000"],["2024-07-24T10:24:33.010000"],["2024-07-24T10:24:34.010000"],["2024-07-24T10:24:35.010000"],["2024-07-24T10:24:36.010000"],["2024-07-24T10:24:37.010000"],["2024-07-24T10:24:38.010000"],["2024-07-24T10:24:39.010000"],["2024-07-24T10:24:40.010000"],["2024-07-24T10:24:41.010000"],["2024-07-24T10:24:42.010000"],["2024-07-24T10:24:43.010000"],["2024-07-24T10:24:44.010000"],["2024-07-24T10:24:45.010000"],["2024-07-24T10:24:46.010000"],["2024-07-24T10:24:47.010000"],["2024-07-24T10:24:48.010000"],["2024-07-24T10:24:49.010000"],["2024-07-24T10:24:50.010000"],["2024-07-24T10:24:51.010000"],["2024-07-24T10:24:52.010000"],["2024-07-24T10:24:53.010000"],["2024-07-24T10:24:54.010000"],["2024-07-24T10:24:55.010000"],["2024-07-24T10:24:56.010000"],["2024-07-24T10:24:57.010000"],["2024-07-24T10:24:58.010000"],["2024-07-24T10:24:59.010000"],["2024-07-24T10:25:00.010000"],["2024-07-24T10:25:01.010000"],["2024-07-24T10:25:02.010000"],["2024-07-24T10:25:03.010000"],["2024-07-24T10:25:04.010000"],["2024-07-24T10:25:05.010000"],["2024-07-24T10:25:06.010000"],["2024-07-24T10:25:07.010000"],["2024-07-24T10:25:08.010000"],["2024-07-24T10:25:09.010000"],["2024-07-24T10:25:10.010000"],["2024-07-24T10:25:11.010000"],["2024-07-24T10:25:12.010000"],["2024-07-24T10:25:13.010000"],["2024-07-24T10:25:14.010000"],["2024-07-24T10:25:15.010000"],["2024-07-24T10:25:16.010000"],["2024-07-24T10:25:17.010000"],["2024-07-24T10:25:18.010000"],["2024-07-24T10:25:19.010000"],["2024-07-24T10:25:20.010000"],["2024-07-24T10:25:21.010000"],["2024-07-24T10:25:22.010000"],["2024-07-24T10:25:23.010000"],["2024-07-24T10:25:24.010000"],["2024-07-24T10:25:25.010000"],["2024-07-24T10:25:26.010000"],["2024-07-24T10:25:27.010000"],["2024-07-24T10:25:28.010000"],["2024-07-24T10:25:29.010000"],["2024-07-24T10:25:30.010000"],["2024-07-24T10:25:31.010000"],["2024-07-24T10:25:32.010000"],["2024-07-24T10:25:33.010000"],["2024-07-24T10:25:34.010000"],["2024-07-24T10:25:35.010000"],["2024-07-24T10:25:36.010000"],["2024-07-24T10:25:37.010000"],["2024-07-24T10:25:38.010000"],["2024-07-24T10:25:39.010000"],["2024-07-24T10:25:40.010000"],["2024-07-24T10:25:41.010000"],["2024-07-24T10:25:42.010000"],["2024-07-24T10:25:43.010000"],["2024-07-24T10:25:44.010000"],["2024-07-24T10:25:45.010000"],["2024-07-24T10:25:46.010000"],["2024-07-24T10:25:47.010000"],["2024-07-24T10:25:48.010000"],["2024-07-24T10:25:49.010000"],["2024-07-24T10:25:50.010000"],["2024-07-24T10:25:51.010000"],["2024-07-24T10:25:52.010000"],["2024-07-24T10:25:53.010000"],["2024-07-24T10:25:54.010000"],["2024-07-24T10:25:55.010000"],["2024-07-24T10:25:56.010000"],["2024-07-24T10:25:57.010000"],["2024-07-24T10:25:58.010000"],["2024-07-24T10:25:59.010000"],["2024-07-24T10:26:00.010000"],["2024-07-24T10:26:01.010000"],["2024-07-24T10:26:02.010000"],["2024-07-24T10:26:03.010000"],["2024-07-24T10:26:04.010000"],["2024-07-24T10:26:05.010000"],["2024-07-24T10:26:06.010000"],["2024-07-24T10:26:07.010000"],["2024-07-24T10:26:08.010000"],["2024-07-24T10:26:09.010000"],["2024-07-24T10:26:10.010000"],["2024-07-24T10:26:11.010000"],["2024-07-24T10:26:12.010000"],["2024-07-24T10:26:13.010000"],["2024-07-24T10:26:14.010000"],["2024-07-24T10:26:15.010000"],["2024-07-24T10:26:16.010000"],["2024-07-24T10:26:17.010000"],["2024-07-24T10:26:18.010000"],["2024-07-24T10:26:19.010000"],["2024-07-24T10:26:20.010000"],["2024-07-24T10:26:21.010000"],["2024-07-24T10:26:22.010000"],["2024-07-24T10:26:23.010000"],["2024-07-24T10:26:24.010000"],["2024-07-24T10:26:25.010000"],["2024-07-24T10:26:26.010000"],["2024-07-24T10:26:27.010000"],["2024-07-24T10:26:28.010000"],["2024-07-24T10:26:29.010000"],["2024-07-24T10:26:30.010000"],["2024-07-24T10:26:31.010000"],["2024-07-24T10:26:32.010000"],["2024-07-24T10:26:33.010000"],["2024-07-24T10:26:34.010000"],["2024-07-24T10:26:35.010000"],["2024-07-24T10:26:36.010000"],["2024-07-24T10:26:37.010000"],["2024-07-24T10:26:38.010000"],["2024-07-24T10:26:39.010000"],["2024-07-24T10:26:40.010000"],["2024-07-24T10:26:41.010000"],["2024-07-24T10:26:42.010000"],["2024-07-24T10:26:43.010000"],["2024-07-24T10:26:44.010000"],["2024-07-24T10:26:45.010000"],["2024-07-24T10:26:46.010000"],["2024-07-24T10:26:47.010000"],["2024-07-24T10:26:48.010000"],["2024-07-24T10:26:49.010000"],["2024-07-24T10:26:50.010000"],["2024-07-24T10:26:51.010000"],["2024-07-24T10:26:52.010000"],["2024-07-24T10:26:53.010000"],["2024-07-24T10:26:54.010000"],["2024-07-24T10:26:55.010000"],["2024-07-24T10:26:56.010000"],["2024-07-24T10:26:57.010000"],["2024-07-24T10:26:58.010000"],["2024-07-24T10:26:59.010000"],["2024-07-24T10:27:00.010000"],["2024-07-24T10:27:01.010000"],["2024-07-24T10:27:02.010000"],["2024-07-24T10:27:03.010000"],["2024-07-24T10:27:04.010000"],["2024-07-24T10:27:05.010000"],["2024-07-24T10:27:06.010000"],["2024-07-24T10:27:07.010000"],["2024-07-24T10:27:08.010000"],["2024-07-24T10:27:09.010000"],["2024-07-24T10:27:10.010000"],["2024-07-24T10:27:11.010000"],["2024-07-24T10:27:12.010000"],["2024-07-24T10:27:13.010000"],["2024-07-24T10:27:14.010000"],["2024-07-24T10:27:15.010000"],["2024-07-24T10:27:16.010000"],["2024-07-24T10:27:17.010000"],["2024-07-24T10:27:18.010000"],["2024-07-24T10:27:19.010000"],["2024-07-24T10:27:20.010000"],["2024-07-24T10:27:21.010000"],["2024-07-24T10:27:22.010000"],["2024-07-24T10:27:23.010000"],["2024-07-24T10:27:24.010000"],["2024-07-24T10:27:25.010000"],["2024-07-24T10:27:26.010000"],["2024-07-24T10:27:27.010000"],["2024-07-24T10:27:28.010000"],["2024-07-24T10:27:29.010000"],["2024-07-24T10:27:30.010000"],["2024-07-24T10:27:31.010000"],["2024-07-24T10:27:32.010000"],["2024-07-24T10:27:33.010000"],["2024-07-24T10:27:34.010000"],["2024-07-24T10:27:35.010000"],["2024-07-24T10:27:36.010000"],["2024-07-24T10:27:37.010000"],["2024-07-24T10:27:38.010000"],["2024-07-24T10:27:39.010000"],["2024-07-24T10:27:40.010000"],["2024-07-24T10:27:41.010000"],["2024-07-24T10:27:42.010000"],["2024-07-24T10:27:43.010000"],["2024-07-24T10:27:44.010000"],["2024-07-24T10:27:45.010000"],["2024-07-24T10:27:46.010000"],["2024-07-24T10:27:47.010000"],["2024-07-24T10:27:48.010000"],["2024-07-24T10:27:49.010000"],["2024-07-24T10:27:50.010000"],["2024-07-24T10:27:51.010000"],["2024-07-24T10:27:52.010000"],["2024-07-24T10:27:53.010000"],["2024-07-24T10:27:54.010000"],["2024-07-24T10:27:55.010000"],["2024-07-24T10:27:56.010000"],["2024-07-24T10:27:57.010000"],["2024-07-24T10:27:58.010000"],["2024-07-24T10:27:59.010000"],["2024-07-24T10:28:00.010000"],["2024-07-24T10:28:01.010000"],["2024-07-24T10:28:02.010000"],["2024-07-24T10:28:03.010000"],["2024-07-24T10:28:04.010000"],["2024-07-24T10:28:05.010000"],["2024-07-24T10:28:06.010000"],["2024-07-24T10:28:07.010000"],["2024-07-24T10:28:08.010000"],["2024-07-24T10:28:09.010000"],["2024-07-24T10:28:10.010000"],["2024-07-24T10:28:11.010000"],["2024-07-24T10:28:12.010000"],["2024-07-24T10:28:13.010000"],["2024-07-24T10:28:14.010000"],["2024-07-24T10:28:15.010000"],["2024-07-24T10:28:16.010000"],["2024-07-24T10:28:17.010000"],["2024-07-24T10:28:18.010000"],["2024-07-24T10:28:19.010000"],["2024-07-24T10:28:20.010000"],["2024-07-24T10:28:21.010000"],["2024-07-24T10:28:22.010000"],["2024-07-24T10:28:23.010000"],["2024-07-24T10:28:24.010000"],["2024-07-24T10:28:25.010000"],["2024-07-24T10:28:26.010000"],["2024-07-24T10:28:27.010000"],["2024-07-24T10:28:28.010000"],["2024-07-24T10:28:29.010000"],["2024-07-24T10:28:30.010000"],["2024-07-24T10:28:31.010000"],["2024-07-24T10:28:32.010000"],["2024-07-24T10:28:33.010000"],["2024-07-24T10:28:34.010000"],["2024-07-24T10:28:35.010000"],["2024-07-24T10:28:36.010000"],["2024-07-24T10:28:37.010000"],["2024-07-24T10:28:38.010000"],["2024-07-24T10:28:39.010000"],["2024-07-24T10:28:40.010000"],["2024-07-24T10:28:41.010000"],["2024-07-24T10:28:42.010000"],["2024-07-24T10:28:43.010000"],["2024-07-24T10:28:44.010000"],["2024-07-24T10:28:45.010000"],["2024-07-24T10:28:46.010000"],["2024-07-24T10:28:47.010000"],["2024-07-24T10:28:48.010000"],["2024-07-24T10:28:49.010000"],["2024-07-24T10:28:50.010000"],["2024-07-24T10:28:51.010000"],["2024-07-24T10:28:52.010000"],["2024-07-24T10:28:53.010000"],["2024-07-24T10:28:54.010000"],["2024-07-24T10:28:55.010000"],["2024-07-24T10:28:56.010000"],["2024-07-24T10:28:57.010000"],["2024-07-24T10:28:58.010000"],["2024-07-24T10:28:59.010000"],["2024-07-24T10:29:00.010000"],["2024-07-24T10:29:01.010000"],["2024-07-24T10:29:02.010000"],["2024-07-24T10:29:03.010000"],["2024-07-24T10:29:04.010000"],["2024-07-24T10:29:05.010000"],["2024-07-24T10:29:06.010000"],["2024-07-24T10:29:07.010000"],["2024-07-24T10:29:08.010000"],["2024-07-24T10:29:09.010000"],["2024-07-24T10:29:10.010000"],["2024-07-24T10:29:11.010000"],["2024-07-24T10:29:12.010000"],["2024-07-24T10:29:13.010000"],["2024-07-24T10:29:14.010000"],["2024-07-24T10:29:15.010000"],["2024-07-24T10:29:16.010000"],["2024-07-24T10:29:17.010000"],["2024-07-24T10:29:18.010000"],["2024-07-24T10:29:19.010000"],["2024-07-24T10:29:20.010000"],["2024-07-24T10:29:21.010000"],["2024-07-24T10:29:22.010000"],["2024-07-24T10:29:23.010000"],["2024-07-24T10:29:24.010000"],["2024-07-24T10:29:25.010000"],["2024-07-24T10:29:26.010000"],["2024-07-24T10:29:27.010000"],["2024-07-24T10:29:28.010000"],["2024-07-24T10:29:29.010000"],["2024-07-24T10:29:30.010000"],["2024-07-24T10:29:31.010000"],["2024-07-24T10:29:32.010000"],["2024-07-24T10:29:33.010000"],["2024-07-24T10:29:34.010000"],["2024-07-24T10:29:35.010000"],["2024-07-24T10:29:36.010000"],["2024-07-24T10:29:37.010000"],["2024-07-24T10:29:38.010000"],["2024-07-24T10:29:39.010000"],["2024-07-24T10:29:40.010000"],["2024-07-24T10:29:41.010000"],["2024-07-24T10:29:42.010000"],["2024-07-24T10:29:43.010000"],["2024-07-24T10:29:44.010000"],["2024-07-24T10:29:45.010000"],["2024-07-24T10:29:46.010000"],["2024-07-24T10:29:47.010000"],["2024-07-24T10:29:48.010000"],["2024-07-24T10:29:49.010000"],["2024-07-24T10:29:50.010000"],["2024-07-24T10:29:51.010000"],["2024-07-24T10:29:52.010000"],["2024-07-24T10:29:53.010000"],["2024-07-24T10:29:54.010000"],["2024-07-24T10:29:55.010000"],["2024-07-24T10:29:56.010000"],["2024-07-24T10:29:57.010000"],["2024-07-24T10:29:58.010000"],["2024-07-24T10:29:59.010000"],["2024-07-24T10:30:00.010000"],["2024-07-24T10:30:01.010000"],["2024-07-24T10:30:02.010000"],["2024-07-24T10:30:03.010000"],["2024-07-24T10:30:04.010000"],["2024-07-24T10:30:05.010000"],["2024-07-24T10:30:06.010000"],["2024-07-24T10:30:07.010000"],["2024-07-24T10:30:08.010000"],["2024-07-24T10:30:09.010000"],["2024-07-24T10:30:10.010000"],["2024-07-24T10:30:11.010000"],["2024-07-24T10:30:12.010000"],["2024-07-24T10:30:13.010000"],["2024-07-24T10:30:14.010000"],["2024-07-24T10:30:15.010000"],["2024-07-24T10:30:16.010000"],["2024-07-24T10:30:17.010000"],["2024-07-24T10:30:18.010000"],["2024-07-24T10:30:19.010000"],["2024-07-24T10:30:20.010000"],["2024-07-24T10:30:21.010000"],["2024-07-24T10:30:22.010000"],["2024-07-24T10:30:23.010000"],["2024-07-24T10:30:24.010000"],["2024-07-24T10:30:25.010000"],["2024-07-24T10:30:26.010000"],["2024-07-24T10:30:27.010000"],["2024-07-24T10:30:28.010000"],["2024-07-24T10:30:29.010000"],["2024-07-24T10:30:30.010000"],["2024-07-24T10:30:31.010000"],["2024-07-24T10:30:32.010000"],["2024-07-24T10:30:33.010000"],["2024-07-24T10:30:34.010000"],["2024-07-24T10:30:35.010000"],["2024-07-24T10:30:36.010000"],["2024-07-24T10:30:37.010000"],["2024-07-24T10:30:38.010000"],["2024-07-24T10:30:39.010000"],["2024-07-24T10:30:40.010000"],["2024-07-24T10:30:41.010000"],["2024-07-24T10:30:42.010000"],["2024-07-24T10:30:43.010000"],["2024-07-24T10:30:44.010000"],["2024-07-24T10:30:45.010000"],["2024-07-24T10:30:46.010000"],["2024-07-24T10:30:47.010000"],["2024-07-24T10:30:48.010000"],["2024-07-24T10:30:49.010000"],["2024-07-24T10:30:50.010000"],["2024-07-24T10:30:51.010000"],["2024-07-24T10:30:52.010000"],["2024-07-24T10:30:53.010000"],["2024-07-24T10:30:54.010000"],["2024-07-24T10:30:55.010000"],["2024-07-24T10:30:56.010000"],["2024-07-24T10:30:57.010000"],["2024-07-24T10:30:58.010000"],["2024-07-24T10:30:59.010000"],["2024-07-24T10:31:00.010000"],["2024-07-24T10:31:01.010000"],["2024-07-24T10:31:02.010000"],["2024-07-24T10:31:03.010000"],["2024-07-24T10:31:04.010000"],["2024-07-24T10:31:05.010000"],["2024-07-24T10:31:06.010000"],["2024-07-24T10:31:07.010000"],["2024-07-24T10:31:08.010000"],["2024-07-24T10:31:09.010000"],["2024-07-24T10:31:10.010000"],["2024-07-24T10:31:11.010000"],["2024-07-24T10:31:12.010000"],["2024-07-24T10:31:13.010000"],["2024-07-24T10:31:14.010000"],["2024-07-24T10:31:15.010000"],["2024-07-24T10:31:16.010000"],["2024-07-24T10:31:17.010000"],["2024-07-24T10:31:18.010000"],["2024-07-24T10:31:19.010000"],["2024-07-24T10:31:20.010000"],["2024-07-24T10:31:21.010000"],["2024-07-24T10:31:22.010000"],["2024-07-24T10:31:23.010000"],["2024-07-24T10:31:24.010000"],["2024-07-24T10:31:25.010000"],["2024-07-24T10:31:26.010000"],["2024-07-24T10:31:27.010000"],["2024-07-24T10:31:28.010000"],["2024-07-24T10:31:29.010000"],["2024-07-24T10:31:30.010000"],["2024-07-24T10:31:31.010000"],["2024-07-24T10:31:32.010000"],["2024-07-24T10:31:33.010000"],["2024-07-24T10:31:34.010000"],["2024-07-24T10:31:35.010000"],["2024-07-24T10:31:36.010000"],["2024-07-24T10:31:37.010000"],["2024-07-24T10:31:38.010000"],["2024-07-24T10:31:39.010000"],["2024-07-24T10:31:40.010000"],["2024-07-24T10:31:41.010000"],["2024-07-24T10:31:42.010000"],["2024-07-24T10:31:43.010000"],["2024-07-24T10:31:44.010000"],["2024-07-24T10:31:45.010000"],["2024-07-24T10:31:46.010000"],["2024-07-24T10:31:47.010000"],["2024-07-24T10:31:48.010000"],["2024-07-24T10:31:49.010000"],["2024-07-24T10:31:50.010000"],["2024-07-24T10:31:51.010000"],["2024-07-24T10:31:52.010000"],["2024-07-24T10:31:53.010000"],["2024-07-24T10:31:54.010000"],["2024-07-24T10:31:55.010000"],["2024-07-24T10:31:56.010000"],["2024-07-24T10:31:57.010000"],["2024-07-24T10:31:58.010000"],["2024-07-24T10:31:59.010000"],["2024-07-24T10:32:00.010000"],["2024-07-24T10:32:01.010000"],["2024-07-24T10:32:02.010000"],["2024-07-24T10:32:03.010000"],["2024-07-24T10:32:04.010000"],["2024-07-24T10:32:05.010000"],["2024-07-24T10:32:06.010000"],["2024-07-24T10:32:07.010000"],["2024-07-24T10:32:08.010000"],["2024-07-24T10:32:09.010000"],["2024-07-24T10:32:10.010000"],["2024-07-24T10:32:11.010000"],["2024-07-24T10:32:12.010000"],["2024-07-24T10:32:13.010000"],["2024-07-24T10:32:14.010000"],["2024-07-24T10:32:15.010000"],["2024-07-24T10:32:16.010000"],["2024-07-24T10:32:17.010000"],["2024-07-24T10:32:18.010000"],["2024-07-24T10:32:19.010000"],["2024-07-24T10:32:20.010000"],["2024-07-24T10:32:21.010000"],["2024-07-24T10:32:22.010000"],["2024-07-24T10:32:23.010000"],["2024-07-24T10:32:24.010000"],["2024-07-24T10:32:25.010000"],["2024-07-24T10:32:26.010000"],["2024-07-24T10:32:27.010000"],["2024-07-24T10:32:28.010000"],["2024-07-24T10:32:29.010000"],["2024-07-24T10:32:30.010000"],["2024-07-24T10:32:31.010000"],["2024-07-24T10:32:32.010000"],["2024-07-24T10:32:33.010000"],["2024-07-24T10:32:34.010000"],["2024-07-24T10:32:35.010000"],["2024-07-24T10:32:36.010000"],["2024-07-24T10:32:37.010000"],["2024-07-24T10:32:38.010000"],["2024-07-24T10:32:39.010000"],["2024-07-24T10:32:40.010000"],["2024-07-24T10:32:41.010000"],["2024-07-24T10:32:42.010000"],["2024-07-24T10:32:43.010000"],["2024-07-24T10:32:44.010000"],["2024-07-24T10:32:45.010000"],["2024-07-24T10:32:46.010000"],["2024-07-24T10:32:47.010000"],["2024-07-24T10:32:48.010000"],["2024-07-24T10:32:49.010000"],["2024-07-24T10:32:50.010000"],["2024-07-24T10:32:51.010000"],["2024-07-24T10:32:52.010000"],["2024-07-24T10:32:53.010000"],["2024-07-24T10:32:54.010000"],["2024-07-24T10:32:55.010000"],["2024-07-24T10:32:56.010000"],["2024-07-24T10:32:57.010000"],["2024-07-24T10:32:58.010000"],["2024-07-24T10:32:59.010000"],["2024-07-24T10:33:00.010000"],["2024-07-24T10:33:01.010000"],["2024-07-24T10:33:02.010000"],["2024-07-24T10:33:03.010000"],["2024-07-24T10:33:04.010000"],["2024-07-24T10:33:05.010000"],["2024-07-24T10:33:06.010000"],["2024-07-24T10:33:07.010000"],["2024-07-24T10:33:08.010000"],["2024-07-24T10:33:09.010000"],["2024-07-24T10:33:10.010000"],["2024-07-24T10:33:11.010000"],["2024-07-24T10:33:12.010000"],["2024-07-24T10:33:13.010000"],["2024-07-24T10:33:14.010000"],["2024-07-24T10:33:15.010000"],["2024-07-24T10:33:16.010000"],["2024-07-24T10:33:17.010000"],["2024-07-24T10:33:18.010000"],["2024-07-24T10:33:19.010000"],["2024-07-24T10:33:20.010000"],["2024-07-24T10:33:21.010000"],["2024-07-24T10:33:22.010000"],["2024-07-24T10:33:23.010000"],["2024-07-24T10:33:24.010000"],["2024-07-24T10:33:25.010000"],["2024-07-24T10:33:26.010000"],["2024-07-24T10:33:27.010000"],["2024-07-24T10:33:28.010000"],["2024-07-24T10:33:29.010000"],["2024-07-24T10:33:30.010000"],["2024-07-24T10:33:31.010000"],["2024-07-24T10:33:32.010000"],["2024-07-24T10:33:33.010000"],["2024-07-24T10:33:34.010000"],["2024-07-24T10:33:35.010000"],["2024-07-24T10:33:36.010000"],["2024-07-24T10:33:37.010000"],["2024-07-24T10:33:38.010000"],["2024-07-24T10:33:39.010000"],["2024-07-24T10:33:40.010000"],["2024-07-24T10:33:41.010000"],["2024-07-24T10:33:42.010000"],["2024-07-24T10:33:43.010000"],["2024-07-24T10:33:44.010000"],["2024-07-24T10:33:45.010000"],["2024-07-24T10:33:46.010000"],["2024-07-24T10:33:47.010000"],["2024-07-24T10:33:48.010000"],["2024-07-24T10:33:49.010000"],["2024-07-24T10:33:50.010000"],["2024-07-24T10:33:51.010000"],["2024-07-24T10:33:52.010000"],["2024-07-24T10:33:53.010000"],["2024-07-24T10:33:54.010000"],["2024-07-24T10:33:55.010000"],["2024-07-24T10:33:56.010000"],["2024-07-24T10:33:57.010000"],["2024-07-24T10:33:58.010000"],["2024-07-24T10:33:59.010000"],["2024-07-24T10:34:00.010000"],["2024-07-24T10:34:01.010000"],["2024-07-24T10:34:02.010000"],["2024-07-24T10:34:03.010000"],["2024-07-24T10:34:04.010000"],["2024-07-24T10:34:05.010000"],["2024-07-24T10:34:06.010000"],["2024-07-24T10:34:07.010000"],["2024-07-24T10:34:08.010000"],["2024-07-24T10:34:09.010000"],["2024-07-24T10:34:10.010000"],["2024-07-24T10:34:11.010000"],["2024-07-24T10:34:12.010000"],["2024-07-24T10:34:13.010000"],["2024-07-24T10:34:14.010000"],["2024-07-24T10:34:15.010000"],["2024-07-24T10:34:16.010000"],["2024-07-24T10:34:17.010000"],["2024-07-24T10:34:18.010000"],["2024-07-24T10:34:19.010000"],["2024-07-24T10:34:20.010000"],["2024-07-24T10:34:21.010000"],["2024-07-24T10:34:22.010000"],["2024-07-24T10:34:23.010000"],["2024-07-24T10:34:24.010000"],["2024-07-24T10:34:25.010000"],["2024-07-24T10:34:26.010000"],["2024-07-24T10:34:27.010000"],["2024-07-24T10:34:28.010000"],["2024-07-24T10:34:29.010000"],["2024-07-24T10:34:30.010000"],["2024-07-24T10:34:31.010000"],["2024-07-24T10:34:32.010000"],["2024-07-24T10:34:33.010000"],["2024-07-24T10:34:34.010000"],["2024-07-24T10:34:35.010000"],["2024-07-24T10:34:36.010000"],["2024-07-24T10:34:37.010000"],["2024-07-24T10:34:38.010000"],["2024-07-24T10:34:39.010000"],["2024-07-24T10:34:40.010000"],["2024-07-24T10:34:41.010000"],["2024-07-24T10:34:42.010000"],["2024-07-24T10:34:43.010000"],["2024-07-24T10:34:44.010000"],["2024-07-24T10:34:45.010000"],["2024-07-24T10:34:46.010000"],["2024-07-24T10:34:47.010000"],["2024-07-24T10:34:48.010000"],["2024-07-24T10:34:49.010000"],["2024-07-24T10:34:50.010000"],["2024-07-24T10:34:51.010000"],["2024-07-24T10:34:52.010000"],["2024-07-24T10:34:53.010000"],["2024-07-24T10:34:54.010000"],["2024-07-24T10:34:55.010000"],["2024-07-24T10:34:56.010000"],["2024-07-24T10:34:57.010000"],["2024-07-24T10:34:58.010000"],["2024-07-24T10:34:59.010000"],["2024-07-24T10:35:00.010000"],["2024-07-24T10:35:01.010000"],["2024-07-24T10:35:02.010000"],["2024-07-24T10:35:03.010000"],["2024-07-24T10:35:04.010000"],["2024-07-24T10:35:05.010000"],["2024-07-24T10:35:06.010000"],["2024-07-24T10:35:07.010000"],["2024-07-24T10:35:08.010000"],["2024-07-24T10:35:09.010000"],["2024-07-24T10:35:10.010000"],["2024-07-24T10:35:11.010000"],["2024-07-24T10:35:12.010000"],["2024-07-24T10:35:13.010000"],["2024-07-24T10:35:14.010000"],["2024-07-24T10:35:15.010000"],["2024-07-24T10:35:16.010000"],["2024-07-24T10:35:17.010000"],["2024-07-24T10:35:18.010000"],["2024-07-24T10:35:19.010000"],["2024-07-24T10:35:20.010000"],["2024-07-24T10:35:21.010000"],["2024-07-24T10:35:22.010000"],["2024-07-24T10:35:23.010000"],["2024-07-24T10:35:24.010000"],["2024-07-24T10:35:25.010000"],["2024-07-24T10:35:26.010000"],["2024-07-24T10:35:27.010000"],["2024-07-24T10:35:28.010000"],["2024-07-24T10:35:29.010000"],["2024-07-24T10:35:30.010000"],["2024-07-24T10:35:31.010000"],["2024-07-24T10:35:32.010000"],["2024-07-24T10:35:33.010000"],["2024-07-24T10:35:34.010000"],["2024-07-24T10:35:35.010000"],["2024-07-24T10:35:36.010000"],["2024-07-24T10:35:37.010000"],["2024-07-24T10:35:38.010000"],["2024-07-24T10:35:39.010000"],["2024-07-24T10:35:40.010000"],["2024-07-24T10:35:41.010000"],["2024-07-24T10:35:42.010000"],["2024-07-24T10:35:43.010000"],["2024-07-24T10:35:44.010000"],["2024-07-24T10:35:45.010000"],["2024-07-24T10:35:46.010000"],["2024-07-24T10:35:47.010000"],["2024-07-24T10:35:48.010000"],["2024-07-24T10:35:49.010000"],["2024-07-24T10:35:50.010000"],["2024-07-24T10:35:51.010000"],["2024-07-24T10:35:52.010000"],["2024-07-24T10:35:53.010000"],["2024-07-24T10:35:54.010000"],["2024-07-24T10:35:55.010000"],["2024-07-24T10:35:56.010000"],["2024-07-24T10:35:57.010000"],["2024-07-24T10:35:58.010000"],["2024-07-24T10:35:59.010000"],["2024-07-24T10:36:00.010000"],["2024-07-24T10:36:01.010000"],["2024-07-24T10:36:02.010000"],["2024-07-24T10:36:03.010000"],["2024-07-24T10:36:04.010000"],["2024-07-24T10:36:05.010000"],["2024-07-24T10:36:06.010000"],["2024-07-24T10:36:07.010000"],["2024-07-24T10:36:08.010000"],["2024-07-24T10:36:09.010000"],["2024-07-24T10:36:10.010000"],["2024-07-24T10:36:11.010000"],["2024-07-24T10:36:12.010000"],["2024-07-24T10:36:13.010000"],["2024-07-24T10:36:14.010000"],["2024-07-24T10:36:15.010000"],["2024-07-24T10:36:16.010000"],["2024-07-24T10:36:17.010000"],["2024-07-24T10:36:18.010000"],["2024-07-24T10:36:19.010000"],["2024-07-24T10:36:20.010000"],["2024-07-24T10:36:21.010000"],["2024-07-24T10:36:22.010000"],["2024-07-24T10:36:23.010000"],["2024-07-24T10:36:24.010000"],["2024-07-24T10:36:25.010000"],["2024-07-24T10:36:26.010000"],["2024-07-24T10:36:27.010000"],["2024-07-24T10:36:28.010000"],["2024-07-24T10:36:29.010000"],["2024-07-24T10:36:30.010000"],["2024-07-24T10:36:31.010000"],["2024-07-24T10:36:32.010000"],["2024-07-24T10:36:33.010000"],["2024-07-24T10:36:34.010000"],["2024-07-24T10:36:35.010000"],["2024-07-24T10:36:36.010000"],["2024-07-24T10:36:37.010000"],["2024-07-24T10:36:38.010000"],["2024-07-24T10:36:39.010000"],["2024-07-24T10:36:40.010000"],["2024-07-24T10:36:41.010000"],["2024-07-24T10:36:42.010000"],["2024-07-24T10:36:43.010000"],["2024-07-24T10:36:44.010000"],["2024-07-24T10:36:45.010000"],["2024-07-24T10:36:46.010000"],["2024-07-24T10:36:47.010000"],["2024-07-24T10:36:48.010000"],["2024-07-24T10:36:49.010000"],["2024-07-24T10:36:50.010000"],["2024-07-24T10:36:51.010000"],["2024-07-24T10:36:52.010000"],["2024-07-24T10:36:53.010000"],["2024-07-24T10:36:54.010000"],["2024-07-24T10:36:55.010000"],["2024-07-24T10:36:56.010000"],["2024-07-24T10:36:57.010000"],["2024-07-24T10:36:58.010000"],["2024-07-24T10:36:59.010000"],["2024-07-24T10:37:00.010000"],["2024-07-24T10:37:01.010000"],["2024-07-24T10:37:02.010000"],["2024-07-24T10:37:03.010000"],["2024-07-24T10:37:04.010000"],["2024-07-24T10:37:05.010000"],["2024-07-24T10:37:06.010000"],["2024-07-24T10:37:07.010000"],["2024-07-24T10:37:08.010000"],["2024-07-24T10:37:09.010000"],["2024-07-24T10:37:10.010000"],["2024-07-24T10:37:11.010000"],["2024-07-24T10:37:12.010000"],["2024-07-24T10:37:13.010000"],["2024-07-24T10:37:14.010000"],["2024-07-24T10:37:15.010000"],["2024-07-24T10:37:16.010000"],["2024-07-24T10:37:17.010000"],["2024-07-24T10:37:18.010000"],["2024-07-24T10:37:19.010000"],["2024-07-24T10:37:20.010000"],["2024-07-24T10:37:21.010000"],["2024-07-24T10:37:22.010000"],["2024-07-24T10:37:23.010000"],["2024-07-24T10:37:24.010000"],["2024-07-24T10:37:25.010000"],["2024-07-24T10:37:26.010000"],["2024-07-24T10:37:27.010000"],["2024-07-24T10:37:28.010000"],["2024-07-24T10:37:29.010000"],["2024-07-24T10:37:30.010000"],["2024-07-24T10:37:31.010000"],["2024-07-24T10:37:32.010000"],["2024-07-24T10:37:33.010000"],["2024-07-24T10:37:34.010000"],["2024-07-24T10:37:35.010000"],["2024-07-24T10:37:36.010000"],["2024-07-24T10:37:37.010000"],["2024-07-24T10:37:38.010000"],["2024-07-24T10:37:39.010000"],["2024-07-24T10:37:40.010000"],["2024-07-24T10:37:41.010000"],["2024-07-24T10:37:42.010000"],["2024-07-24T10:37:43.010000"],["2024-07-24T10:37:44.010000"],["2024-07-24T10:37:45.010000"],["2024-07-24T10:37:46.010000"],["2024-07-24T10:37:47.010000"],["2024-07-24T10:37:48.010000"],["2024-07-24T10:37:49.010000"],["2024-07-24T10:37:50.010000"],["2024-07-24T10:37:51.010000"],["2024-07-24T10:37:52.010000"],["2024-07-24T10:37:53.010000"],["2024-07-24T10:37:54.010000"],["2024-07-24T10:37:55.010000"],["2024-07-24T10:37:56.010000"],["2024-07-24T10:37:57.010000"],["2024-07-24T10:37:58.010000"],["2024-07-24T10:37:59.010000"],["2024-07-24T10:38:00.010000"],["2024-07-24T10:38:01.010000"],["2024-07-24T10:38:02.010000"],["2024-07-24T10:38:03.010000"],["2024-07-24T10:38:04.010000"],["2024-07-24T10:38:05.010000"],["2024-07-24T10:38:06.010000"],["2024-07-24T10:38:07.010000"],["2024-07-24T10:38:08.010000"],["2024-07-24T10:38:09.010000"],["2024-07-24T10:38:10.010000"],["2024-07-24T10:38:11.010000"],["2024-07-24T10:38:12.010000"],["2024-07-24T10:38:13.010000"],["2024-07-24T10:38:14.010000"],["2024-07-24T10:38:15.010000"],["2024-07-24T10:38:16.010000"],["2024-07-24T10:38:17.010000"],["2024-07-24T10:38:18.010000"],["2024-07-24T10:38:19.010000"],["2024-07-24T10:38:20.010000"],["2024-07-24T10:38:21.010000"],["2024-07-24T10:38:22.010000"],["2024-07-24T10:38:23.010000"],["2024-07-24T10:38:24.010000"],["2024-07-24T10:38:25.010000"],["2024-07-24T10:38:26.010000"],["2024-07-24T10:38:27.010000"],["2024-07-24T10:38:28.010000"],["2024-07-24T10:38:29.010000"],["2024-07-24T10:38:30.010000"],["2024-07-24T10:38:31.010000"],["2024-07-24T10:38:32.010000"],["2024-07-24T10:38:33.010000"],["2024-07-24T10:38:34.010000"],["2024-07-24T10:38:35.010000"],["2024-07-24T10:38:36.010000"],["2024-07-24T10:38:37.010000"],["2024-07-24T10:38:38.010000"],["2024-07-24T10:38:39.010000"],["2024-07-24T10:38:40.010000"],["2024-07-24T10:38:41.010000"],["2024-07-24T10:38:42.010000"],["2024-07-24T10:38:43.010000"],["2024-07-24T10:38:44.010000"],["2024-07-24T10:38:45.010000"],["2024-07-24T10:38:46.010000"],["2024-07-24T10:38:47.010000"],["2024-07-24T10:38:48.010000"],["2024-07-24T10:38:49.010000"],["2024-07-24T10:38:50.010000"],["2024-07-24T10:38:51.010000"],["2024-07-24T10:38:52.010000"],["2024-07-24T10:38:53.010000"],["2024-07-24T10:38:54.010000"],["2024-07-24T10:38:55.010000"],["2024-07-24T10:38:56.010000"],["2024-07-24T10:38:57.010000"],["2024-07-24T10:38:58.010000"],["2024-07-24T10:38:59.010000"],["2024-07-24T10:39:00.010000"],["2024-07-24T10:39:01.010000"],["2024-07-24T10:39:02.010000"],["2024-07-24T10:39:03.010000"],["2024-07-24T10:39:04.010000"],["2024-07-24T10:39:05.010000"],["2024-07-24T10:39:06.010000"],["2024-07-24T10:39:07.010000"],["2024-07-24T10:39:08.010000"],["2024-07-24T10:39:09.010000"],["2024-07-24T10:39:10.010000"],["2024-07-24T10:39:11.010000"],["2024-07-24T10:39:12.010000"],["2024-07-24T10:39:13.010000"],["2024-07-24T10:39:14.010000"],["2024-07-24T10:39:15.010000"],["2024-07-24T10:39:16.010000"],["2024-07-24T10:39:17.010000"],["2024-07-24T10:39:18.010000"],["2024-07-24T10:39:19.010000"],["2024-07-24T10:39:20.010000"],["2024-07-24T10:39:21.010000"],["2024-07-24T10:39:22.010000"],["2024-07-24T10:39:23.010000"],["2024-07-24T10:39:24.010000"],["2024-07-24T10:39:25.010000"],["2024-07-24T10:39:26.010000"],["2024-07-24T10:39:27.010000"],["2024-07-24T10:39:28.010000"],["2024-07-24T10:39:29.010000"],["2024-07-24T10:39:30.010000"],["2024-07-24T10:39:31.010000"],["2024-07-24T10:39:32.010000"],["2024-07-24T10:39:33.010000"],["2024-07-24T10:39:34.010000"],["2024-07-24T10:39:35.010000"],["2024-07-24T10:39:36.010000"],["2024-07-24T10:39:37.010000"],["2024-07-24T10:39:38.010000"],["2024-07-24T10:39:39.010000"],["2024-07-24T10:39:40.010000"],["2024-07-24T10:39:41.010000"],["2024-07-24T10:39:42.010000"],["2024-07-24T10:39:43.010000"],["2024-07-24T10:39:44.010000"],["2024-07-24T10:39:45.010000"],["2024-07-24T10:39:46.010000"],["2024-07-24T10:39:47.010000"],["2024-07-24T10:39:48.010000"],["2024-07-24T10:39:49.010000"],["2024-07-24T10:39:50.010000"],["2024-07-24T10:39:51.010000"],["2024-07-24T10:39:52.010000"],["2024-07-24T10:39:53.010000"],["2024-07-24T10:39:54.010000"],["2024-07-24T10:39:55.010000"],["2024-07-24T10:39:56.010000"],["2024-07-24T10:39:57.010000"],["2024-07-24T10:39:58.010000"],["2024-07-24T10:39:59.010000"],["2024-07-24T10:40:00.010000"],["2024-07-24T10:40:01.010000"],["2024-07-24T10:40:02.010000"],["2024-07-24T10:40:03.010000"],["2024-07-24T10:40:04.010000"],["2024-07-24T10:40:05.010000"],["2024-07-24T10:40:06.010000"],["2024-07-24T10:40:07.010000"],["2024-07-24T10:40:08.010000"],["2024-07-24T10:40:09.010000"],["2024-07-24T10:40:10.010000"],["2024-07-24T10:40:11.010000"],["2024-07-24T10:40:12.010000"],["2024-07-24T10:40:13.010000"],["2024-07-24T10:40:14.010000"],["2024-07-24T10:40:15.010000"],["2024-07-24T10:40:16.010000"],["2024-07-24T10:40:17.010000"],["2024-07-24T10:40:18.010000"],["2024-07-24T10:40:19.010000"],["2024-07-24T10:40:20.010000"],["2024-07-24T10:40:21.010000"],["2024-07-24T10:40:22.010000"],["2024-07-24T10:40:23.010000"],["2024-07-24T10:40:24.010000"],["2024-07-24T10:40:25.010000"],["2024-07-24T10:40:26.010000"],["2024-07-24T10:40:27.010000"],["2024-07-24T10:40:28.010000"],["2024-07-24T10:40:29.010000"],["2024-07-24T10:40:30.010000"],["2024-07-24T10:40:31.010000"],["2024-07-24T10:40:32.010000"],["2024-07-24T10:40:33.010000"],["2024-07-24T10:40:34.010000"],["2024-07-24T10:40:35.010000"],["2024-07-24T10:40:36.010000"],["2024-07-24T10:40:37.010000"],["2024-07-24T10:40:38.010000"],["2024-07-24T10:40:39.010000"],["2024-07-24T10:40:40.010000"],["2024-07-24T10:40:41.010000"],["2024-07-24T10:40:42.010000"],["2024-07-24T10:40:43.010000"],["2024-07-24T10:40:44.010000"],["2024-07-24T10:40:45.010000"],["2024-07-24T10:40:46.010000"],["2024-07-24T10:40:47.010000"],["2024-07-24T10:40:48.010000"],["2024-07-24T10:40:49.010000"],["2024-07-24T10:40:50.010000"],["2024-07-24T10:40:51.010000"],["2024-07-24T10:40:52.010000"],["2024-07-24T10:40:53.010000"],["2024-07-24T10:40:54.010000"],["2024-07-24T10:40:55.010000"],["2024-07-24T10:40:56.010000"],["2024-07-24T10:40:57.010000"],["2024-07-24T10:40:58.010000"],["2024-07-24T10:40:59.010000"],["2024-07-24T10:41:00.010000"],["2024-07-24T10:41:01.010000"],["2024-07-24T10:41:02.010000"],["2024-07-24T10:41:03.010000"],["2024-07-24T10:41:04.010000"],["2024-07-24T10:41:05.010000"],["2024-07-24T10:41:06.010000"],["2024-07-24T10:41:07.010000"],["2024-07-24T10:41:08.010000"],["2024-07-24T10:41:09.010000"],["2024-07-24T10:41:10.010000"],["2024-07-24T10:41:11.010000"],["2024-07-24T10:41:12.010000"],["2024-07-24T10:41:13.010000"],["2024-07-24T10:41:14.010000"],["2024-07-24T10:41:15.010000"],["2024-07-24T10:41:16.010000"],["2024-07-24T10:41:17.010000"],["2024-07-24T10:41:18.010000"],["2024-07-24T10:41:19.010000"],["2024-07-24T10:41:20.010000"],["2024-07-24T10:41:21.010000"],["2024-07-24T10:41:22.010000"],["2024-07-24T10:41:23.010000"],["2024-07-24T10:41:24.010000"],["2024-07-24T10:41:25.010000"],["2024-07-24T10:41:26.010000"],["2024-07-24T10:41:27.010000"],["2024-07-24T10:41:28.010000"],["2024-07-24T10:41:29.010000"],["2024-07-24T10:41:30.010000"],["2024-07-24T10:41:31.010000"],["2024-07-24T10:41:32.010000"],["2024-07-24T10:41:33.010000"],["2024-07-24T10:41:34.010000"],["2024-07-24T10:41:35.010000"],["2024-07-24T10:41:36.010000"],["2024-07-24T10:41:37.010000"],["2024-07-24T10:41:38.010000"],["2024-07-24T10:41:39.010000"],["2024-07-24T10:41:40.010000"],["2024-07-24T10:41:41.010000"],["2024-07-24T10:41:42.010000"],["2024-07-24T10:41:43.010000"],["2024-07-24T10:41:44.010000"],["2024-07-24T10:41:45.010000"],["2024-07-24T10:41:46.010000"],["2024-07-24T10:41:47.010000"],["2024-07-24T10:41:48.010000"],["2024-07-24T10:41:49.010000"],["2024-07-24T10:41:50.010000"],["2024-07-24T10:41:51.010000"],["2024-07-24T10:41:52.010000"],["2024-07-24T10:41:53.010000"],["2024-07-24T10:41:54.010000"],["2024-07-24T10:41:55.010000"],["2024-07-24T10:41:56.010000"],["2024-07-24T10:41:57.010000"],["2024-07-24T10:41:58.010000"],["2024-07-24T10:41:59.010000"],["2024-07-24T10:42:00.010000"],["2024-07-24T10:42:01.010000"],["2024-07-24T10:42:02.010000"],["2024-07-24T10:42:03.010000"],["2024-07-24T10:42:04.010000"],["2024-07-24T10:42:05.010000"],["2024-07-24T10:42:06.010000"],["2024-07-24T10:42:07.010000"],["2024-07-24T10:42:08.010000"],["2024-07-24T10:42:09.010000"],["2024-07-24T10:42:10.010000"],["2024-07-24T10:42:11.010000"],["2024-07-24T10:42:12.010000"],["2024-07-24T10:42:13.010000"],["2024-07-24T10:42:14.010000"],["2024-07-24T10:42:15.010000"],["2024-07-24T10:42:16.010000"],["2024-07-24T10:42:17.010000"],["2024-07-24T10:42:18.010000"],["2024-07-24T10:42:19.010000"],["2024-07-24T10:42:20.010000"],["2024-07-24T10:42:21.010000"],["2024-07-24T10:42:22.010000"],["2024-07-24T10:42:23.010000"],["2024-07-24T10:42:24.010000"],["2024-07-24T10:42:25.010000"],["2024-07-24T10:42:26.010000"],["2024-07-24T10:42:27.010000"],["2024-07-24T10:42:28.010000"],["2024-07-24T10:42:29.010000"],["2024-07-24T10:42:30.010000"],["2024-07-24T10:42:31.010000"],["2024-07-24T10:42:32.010000"],["2024-07-24T10:42:33.010000"],["2024-07-24T10:42:34.010000"],["2024-07-24T10:42:35.010000"],["2024-07-24T10:42:36.010000"],["2024-07-24T10:42:37.010000"],["2024-07-24T10:42:38.010000"],["2024-07-24T10:42:39.010000"],["2024-07-24T10:42:40.010000"],["2024-07-24T10:42:41.010000"],["2024-07-24T10:42:42.010000"],["2024-07-24T10:42:43.010000"],["2024-07-24T10:42:44.010000"],["2024-07-24T10:42:45.010000"],["2024-07-24T10:42:46.010000"],["2024-07-24T10:42:47.010000"],["2024-07-24T10:42:48.010000"],["2024-07-24T10:42:49.010000"],["2024-07-24T10:42:50.010000"],["2024-07-24T10:42:51.010000"],["2024-07-24T10:42:52.010000"],["2024-07-24T10:42:53.010000"],["2024-07-24T10:42:54.010000"],["2024-07-24T10:42:55.010000"],["2024-07-24T10:42:56.010000"],["2024-07-24T10:42:57.010000"],["2024-07-24T10:42:58.010000"],["2024-07-24T10:42:59.010000"],["2024-07-24T10:43:00.010000"],["2024-07-24T10:43:01.010000"],["2024-07-24T10:43:02.010000"],["2024-07-24T10:43:03.010000"],["2024-07-24T10:43:04.010000"],["2024-07-24T10:43:05.010000"],["2024-07-24T10:43:06.010000"],["2024-07-24T10:43:07.010000"],["2024-07-24T10:43:08.010000"],["2024-07-24T10:43:09.010000"],["2024-07-24T10:43:10.010000"],["2024-07-24T10:43:11.010000"],["2024-07-24T10:43:12.010000"],["2024-07-24T10:43:13.010000"],["2024-07-24T10:43:14.010000"],["2024-07-24T10:43:15.010000"],["2024-07-24T10:43:16.010000"],["2024-07-24T10:43:17.010000"],["2024-07-24T10:43:18.010000"],["2024-07-24T10:43:19.010000"],["2024-07-24T10:43:20.010000"],["2024-07-24T10:43:21.010000"],["2024-07-24T10:43:22.010000"],["2024-07-24T10:43:23.010000"],["2024-07-24T10:43:24.010000"],["2024-07-24T10:43:25.010000"],["2024-07-24T10:43:26.010000"],["2024-07-24T10:43:27.010000"],["2024-07-24T10:43:28.010000"],["2024-07-24T10:43:29.010000"],["2024-07-24T10:43:30.010000"],["2024-07-24T10:43:31.010000"],["2024-07-24T10:43:32.010000"],["2024-07-24T10:43:33.010000"],["2024-07-24T10:43:34.010000"],["2024-07-24T10:43:35.010000"],["2024-07-24T10:43:36.010000"],["2024-07-24T10:43:37.010000"],["2024-07-24T10:43:38.010000"],["2024-07-24T10:43:39.010000"],["2024-07-24T10:43:40.010000"],["2024-07-24T10:43:41.010000"],["2024-07-24T10:43:42.010000"],["2024-07-24T10:43:43.010000"],["2024-07-24T10:43:44.010000"],["2024-07-24T10:43:45.010000"],["2024-07-24T10:43:46.010000"],["2024-07-24T10:43:47.010000"],["2024-07-24T10:43:48.010000"],["2024-07-24T10:43:49.010000"],["2024-07-24T10:43:50.010000"],["2024-07-24T10:43:51.010000"],["2024-07-24T10:43:52.010000"],["2024-07-24T10:43:53.010000"],["2024-07-24T10:43:54.010000"],["2024-07-24T10:43:55.010000"],["2024-07-24T10:43:56.010000"],["2024-07-24T10:43:57.010000"],["2024-07-24T10:43:58.010000"],["2024-07-24T10:43:59.010000"],["2024-07-24T10:44:00.010000"],["2024-07-24T10:44:01.010000"],["2024-07-24T10:44:02.010000"],["2024-07-24T10:44:03.010000"],["2024-07-24T10:44:04.010000"],["2024-07-24T10:44:05.010000"],["2024-07-24T10:44:06.010000"],["2024-07-24T10:44:07.010000"],["2024-07-24T10:44:08.010000"],["2024-07-24T10:44:09.010000"],["2024-07-24T10:44:10.010000"],["2024-07-24T10:44:11.010000"],["2024-07-24T10:44:12.010000"],["2024-07-24T10:44:13.010000"],["2024-07-24T10:44:14.010000"],["2024-07-24T10:44:15.010000"],["2024-07-24T10:44:16.010000"],["2024-07-24T10:44:17.010000"],["2024-07-24T10:44:18.010000"],["2024-07-24T10:44:19.010000"],["2024-07-24T10:44:20.010000"],["2024-07-24T10:44:21.010000"],["2024-07-24T10:44:22.010000"],["2024-07-24T10:44:23.010000"],["2024-07-24T10:44:24.010000"],["2024-07-24T10:44:25.010000"],["2024-07-24T10:44:26.010000"],["2024-07-24T10:44:27.010000"],["2024-07-24T10:44:28.010000"],["2024-07-24T10:44:29.010000"],["2024-07-24T10:44:30.010000"],["2024-07-24T10:44:31.010000"],["2024-07-24T10:44:32.010000"],["2024-07-24T10:44:33.010000"],["2024-07-24T10:44:34.010000"],["2024-07-24T10:44:35.010000"],["2024-07-24T10:44:36.010000"],["2024-07-24T10:44:37.010000"],["2024-07-24T10:44:38.010000"],["2024-07-24T10:44:39.010000"],["2024-07-24T10:44:40.010000"],["2024-07-24T10:44:41.010000"],["2024-07-24T10:44:42.010000"],["2024-07-24T10:44:43.010000"],["2024-07-24T10:44:44.010000"],["2024-07-24T10:44:45.010000"],["2024-07-24T10:44:46.010000"],["2024-07-24T10:44:47.010000"],["2024-07-24T10:44:48.010000"],["2024-07-24T10:44:49.010000"],["2024-07-24T10:44:50.010000"],["2024-07-24T10:44:51.010000"],["2024-07-24T10:44:52.010000"],["2024-07-24T10:44:53.010000"],["2024-07-24T10:44:54.010000"],["2024-07-24T10:44:55.010000"],["2024-07-24T10:44:56.010000"],["2024-07-24T10:44:57.010000"],["2024-07-24T10:44:58.010000"],["2024-07-24T10:44:59.010000"],["2024-07-24T10:45:00.010000"],["2024-07-24T10:45:01.010000"],["2024-07-24T10:45:02.010000"],["2024-07-24T10:45:03.010000"],["2024-07-24T10:45:04.010000"],["2024-07-24T10:45:05.010000"],["2024-07-24T10:45:06.010000"],["2024-07-24T10:45:07.010000"],["2024-07-24T10:45:08.010000"],["2024-07-24T10:45:09.010000"],["2024-07-24T10:45:10.010000"],["2024-07-24T10:45:11.010000"],["2024-07-24T10:45:12.010000"],["2024-07-24T10:45:13.010000"],["2024-07-24T10:45:14.010000"],["2024-07-24T10:45:15.010000"],["2024-07-24T10:45:16.010000"],["2024-07-24T10:45:17.010000"],["2024-07-24T10:45:18.010000"],["2024-07-24T10:45:19.010000"],["2024-07-24T10:45:20.010000"],["2024-07-24T10:45:21.010000"],["2024-07-24T10:45:22.010000"],["2024-07-24T10:45:23.010000"],["2024-07-24T10:45:24.010000"],["2024-07-24T10:45:25.010000"],["2024-07-24T10:45:26.010000"],["2024-07-24T10:45:27.010000"],["2024-07-24T10:45:28.010000"],["2024-07-24T10:45:29.010000"],["2024-07-24T10:45:30.010000"],["2024-07-24T10:45:31.010000"],["2024-07-24T10:45:32.010000"],["2024-07-24T10:45:33.010000"],["2024-07-24T10:45:34.010000"],["2024-07-24T10:45:35.010000"],["2024-07-24T10:45:36.010000"],["2024-07-24T10:45:37.010000"],["2024-07-24T10:45:38.010000"],["2024-07-24T10:45:39.010000"],["2024-07-24T10:45:40.010000"],["2024-07-24T10:45:41.010000"],["2024-07-24T10:45:42.010000"],["2024-07-24T10:45:43.010000"],["2024-07-24T10:45:44.010000"],["2024-07-24T10:45:45.010000"],["2024-07-24T10:45:46.010000"],["2024-07-24T10:45:47.010000"],["2024-07-24T10:45:48.010000"],["2024-07-24T10:45:49.010000"],["2024-07-24T10:45:50.010000"],["2024-07-24T10:45:51.010000"],["2024-07-24T10:45:52.010000"],["2024-07-24T10:45:53.010000"],["2024-07-24T10:45:54.010000"],["2024-07-24T10:45:55.010000"],["2024-07-24T10:45:56.010000"],["2024-07-24T10:45:57.010000"],["2024-07-24T10:45:58.010000"],["2024-07-24T10:45:59.010000"],["2024-07-24T10:46:00.010000"],["2024-07-24T10:46:01.010000"],["2024-07-24T10:46:02.010000"],["2024-07-24T10:46:03.010000"],["2024-07-24T10:46:04.010000"],["2024-07-24T10:46:05.010000"],["2024-07-24T10:46:06.010000"],["2024-07-24T10:46:07.010000"],["2024-07-24T10:46:08.010000"],["2024-07-24T10:46:09.010000"],["2024-07-24T10:46:10.010000"],["2024-07-24T10:46:11.010000"],["2024-07-24T10:46:12.010000"],["2024-07-24T10:46:13.010000"],["2024-07-24T10:46:14.010000"],["2024-07-24T10:46:15.010000"],["2024-07-24T10:46:16.010000"],["2024-07-24T10:46:17.010000"],["2024-07-24T10:46:18.010000"],["2024-07-24T10:46:19.010000"],["2024-07-24T10:46:20.010000"],["2024-07-24T10:46:21.010000"],["2024-07-24T10:46:22.010000"],["2024-07-24T10:46:23.010000"],["2024-07-24T10:46:24.010000"],["2024-07-24T10:46:25.010000"],["2024-07-24T10:46:26.010000"],["2024-07-24T10:46:27.010000"],["2024-07-24T10:46:28.010000"],["2024-07-24T10:46:29.010000"],["2024-07-24T10:46:30.010000"],["2024-07-24T10:46:31.010000"],["2024-07-24T10:46:32.010000"],["2024-07-24T10:46:33.010000"],["2024-07-24T10:46:34.010000"],["2024-07-24T10:46:35.010000"],["2024-07-24T10:46:36.010000"],["2024-07-24T10:46:37.010000"],["2024-07-24T10:46:38.010000"],["2024-07-24T10:46:39.010000"],["2024-07-24T10:46:40.010000"],["2024-07-24T10:46:41.010000"],["2024-07-24T10:46:42.010000"],["2024-07-24T10:46:43.010000"],["2024-07-24T10:46:44.010000"],["2024-07-24T10:46:45.010000"],["2024-07-24T10:46:46.010000"],["2024-07-24T10:46:47.010000"],["2024-07-24T10:46:48.010000"],["2024-07-24T10:46:49.010000"],["2024-07-24T10:46:50.010000"],["2024-07-24T10:46:51.010000"],["2024-07-24T10:46:52.010000"],["2024-07-24T10:46:53.010000"],["2024-07-24T10:46:54.010000"],["2024-07-24T10:46:55.010000"],["2024-07-24T10:46:56.010000"],["2024-07-24T10:46:57.010000"],["2024-07-24T10:46:58.010000"],["2024-07-24T10:46:59.010000"],["2024-07-24T10:47:00.010000"],["2024-07-24T10:47:01.010000"],["2024-07-24T10:47:02.010000"],["2024-07-24T10:47:03.010000"],["2024-07-24T10:47:04.010000"],["2024-07-24T10:47:05.010000"],["2024-07-24T10:47:06.010000"],["2024-07-24T10:47:07.010000"],["2024-07-24T10:47:08.010000"],["2024-07-24T10:47:09.010000"],["2024-07-24T10:47:10.010000"],["2024-07-24T10:47:11.010000"],["2024-07-24T10:47:12.010000"],["2024-07-24T10:47:13.010000"],["2024-07-24T10:47:14.010000"],["2024-07-24T10:47:15.010000"],["2024-07-24T10:47:16.010000"],["2024-07-24T10:47:17.010000"],["2024-07-24T10:47:18.010000"],["2024-07-24T10:47:19.010000"],["2024-07-24T10:47:20.010000"],["2024-07-24T10:47:21.010000"],["2024-07-24T10:47:22.010000"],["2024-07-24T10:47:23.010000"],["2024-07-24T10:47:24.010000"],["2024-07-24T10:47:25.010000"],["2024-07-24T10:47:26.010000"],["2024-07-24T10:47:27.010000"],["2024-07-24T10:47:28.010000"],["2024-07-24T10:47:29.010000"],["2024-07-24T10:47:30.010000"],["2024-07-24T10:47:31.010000"],["2024-07-24T10:47:32.010000"],["2024-07-24T10:47:33.010000"],["2024-07-24T10:47:34.010000"],["2024-07-24T10:47:35.010000"],["2024-07-24T10:47:36.010000"],["2024-07-24T10:47:37.010000"],["2024-07-24T10:47:38.010000"],["2024-07-24T10:47:39.010000"],["2024-07-24T10:47:40.010000"],["2024-07-24T10:47:41.010000"],["2024-07-24T10:47:42.010000"],["2024-07-24T10:47:43.010000"],["2024-07-24T10:47:44.010000"],["2024-07-24T10:47:45.010000"],["2024-07-24T10:47:46.010000"],["2024-07-24T10:47:47.010000"],["2024-07-24T10:47:48.010000"],["2024-07-24T10:47:49.010000"],["2024-07-24T10:47:50.010000"],["2024-07-24T10:47:51.010000"],["2024-07-24T10:47:52.010000"],["2024-07-24T10:47:53.010000"],["2024-07-24T10:47:54.010000"],["2024-07-24T10:47:55.010000"],["2024-07-24T10:47:56.010000"],["2024-07-24T10:47:57.010000"],["2024-07-24T10:47:58.010000"],["2024-07-24T10:47:59.010000"],["2024-07-24T10:48:00.010000"],["2024-07-24T10:48:01.010000"],["2024-07-24T10:48:02.010000"],["2024-07-24T10:48:03.010000"],["2024-07-24T10:48:04.010000"],["2024-07-24T10:48:05.010000"],["2024-07-24T10:48:06.010000"],["2024-07-24T10:48:07.010000"],["2024-07-24T10:48:08.010000"],["2024-07-24T10:48:09.010000"],["2024-07-24T10:48:10.010000"],["2024-07-24T10:48:11.010000"],["2024-07-24T10:48:12.010000"],["2024-07-24T10:48:13.010000"],["2024-07-24T10:48:14.010000"],["2024-07-24T10:48:15.010000"],["2024-07-24T10:48:16.010000"],["2024-07-24T10:48:17.010000"],["2024-07-24T10:48:18.010000"],["2024-07-24T10:48:19.010000"],["2024-07-24T10:48:20.010000"],["2024-07-24T10:48:21.010000"],["2024-07-24T10:48:22.010000"],["2024-07-24T10:48:23.010000"],["2024-07-24T10:48:24.010000"],["2024-07-24T10:48:25.010000"],["2024-07-24T10:48:26.010000"],["2024-07-24T10:48:27.010000"],["2024-07-24T10:48:28.010000"],["2024-07-24T10:48:29.010000"],["2024-07-24T10:48:30.010000"],["2024-07-24T10:48:31.010000"],["2024-07-24T10:48:32.010000"],["2024-07-24T10:48:33.010000"],["2024-07-24T10:48:34.010000"],["2024-07-24T10:48:35.010000"],["2024-07-24T10:48:36.010000"],["2024-07-24T10:48:37.010000"],["2024-07-24T10:48:38.010000"],["2024-07-24T10:48:39.010000"],["2024-07-24T10:48:40.010000"],["2024-07-24T10:48:41.010000"],["2024-07-24T10:48:42.010000"],["2024-07-24T10:48:43.010000"],["2024-07-24T10:48:44.010000"],["2024-07-24T10:48:45.010000"],["2024-07-24T10:48:46.010000"],["2024-07-24T10:48:47.010000"],["2024-07-24T10:48:48.010000"],["2024-07-24T10:48:49.010000"],["2024-07-24T10:48:50.010000"],["2024-07-24T10:48:51.010000"],["2024-07-24T10:48:52.010000"],["2024-07-24T10:48:53.010000"],["2024-07-24T10:48:54.010000"],["2024-07-24T10:48:55.010000"],["2024-07-24T10:48:56.010000"],["2024-07-24T10:48:57.010000"],["2024-07-24T10:48:58.010000"],["2024-07-24T10:48:59.010000"],["2024-07-24T10:49:00.010000"],["2024-07-24T10:49:01.010000"],["2024-07-24T10:49:02.010000"],["2024-07-24T10:49:03.010000"],["2024-07-24T10:49:04.010000"],["2024-07-24T10:49:05.010000"],["2024-07-24T10:49:06.010000"],["2024-07-24T10:49:07.010000"],["2024-07-24T10:49:08.010000"],["2024-07-24T10:49:09.010000"],["2024-07-24T10:49:10.010000"],["2024-07-24T10:49:11.010000"],["2024-07-24T10:49:12.010000"],["2024-07-24T10:49:13.010000"],["2024-07-24T10:49:14.010000"],["2024-07-24T10:49:15.010000"],["2024-07-24T10:49:16.010000"],["2024-07-24T10:49:17.010000"],["2024-07-24T10:49:18.010000"],["2024-07-24T10:49:19.010000"],["2024-07-24T10:49:20.010000"],["2024-07-24T10:49:21.010000"],["2024-07-24T10:49:22.010000"],["2024-07-24T10:49:23.010000"],["2024-07-24T10:49:24.010000"],["2024-07-24T10:49:25.010000"],["2024-07-24T10:49:26.010000"],["2024-07-24T10:49:27.010000"],["2024-07-24T10:49:28.010000"],["2024-07-24T10:49:29.010000"],["2024-07-24T10:49:30.010000"],["2024-07-24T10:49:31.010000"],["2024-07-24T10:49:32.010000"],["2024-07-24T10:49:33.010000"],["2024-07-24T10:49:34.010000"],["2024-07-24T10:49:35.010000"],["2024-07-24T10:49:36.010000"],["2024-07-24T10:49:37.010000"],["2024-07-24T10:49:38.010000"],["2024-07-24T10:49:39.010000"],["2024-07-24T10:49:40.010000"],["2024-07-24T10:49:41.010000"],["2024-07-24T10:49:42.010000"],["2024-07-24T10:49:43.010000"],["2024-07-24T10:49:44.010000"],["2024-07-24T10:49:45.010000"],["2024-07-24T10:49:46.010000"],["2024-07-24T10:49:47.010000"],["2024-07-24T10:49:48.010000"],["2024-07-24T10:49:49.010000"],["2024-07-24T10:49:50.010000"],["2024-07-24T10:49:51.010000"],["2024-07-24T10:49:52.010000"],["2024-07-24T10:49:53.010000"],["2024-07-24T10:49:54.010000"],["2024-07-24T10:49:55.010000"],["2024-07-24T10:49:56.010000"],["2024-07-24T10:49:57.010000"],["2024-07-24T10:49:58.010000"],["2024-07-24T10:49:59.010000"],["2024-07-24T10:50:00.010000"],["2024-07-24T10:50:01.010000"],["2024-07-24T10:50:02.010000"],["2024-07-24T10:50:03.010000"],["2024-07-24T10:50:04.010000"],["2024-07-24T10:50:05.010000"],["2024-07-24T10:50:06.010000"],["2024-07-24T10:50:07.010000"],["2024-07-24T10:50:08.010000"],["2024-07-24T10:50:09.010000"],["2024-07-24T10:50:10.010000"],["2024-07-24T10:50:11.010000"],["2024-07-24T10:50:12.010000"],["2024-07-24T10:50:13.010000"],["2024-07-24T10:50:14.010000"],["2024-07-24T10:50:15.010000"],["2024-07-24T10:50:16.010000"],["2024-07-24T10:50:17.010000"],["2024-07-24T10:50:18.010000"],["2024-07-24T10:50:19.010000"],["2024-07-24T10:50:20.010000"],["2024-07-24T10:50:21.010000"],["2024-07-24T10:50:22.010000"],["2024-07-24T10:50:23.010000"],["2024-07-24T10:50:24.010000"],["2024-07-24T10:50:25.010000"],["2024-07-24T10:50:26.010000"],["2024-07-24T10:50:27.010000"],["2024-07-24T10:50:28.010000"],["2024-07-24T10:50:29.010000"],["2024-07-24T10:50:30.010000"],["2024-07-24T10:50:31.010000"],["2024-07-24T10:50:32.010000"],["2024-07-24T10:50:33.010000"],["2024-07-24T10:50:34.010000"],["2024-07-24T10:50:35.010000"],["2024-07-24T10:50:36.010000"],["2024-07-24T10:50:37.010000"],["2024-07-24T10:50:38.010000"],["2024-07-24T10:50:39.010000"],["2024-07-24T10:50:40.010000"],["2024-07-24T10:50:41.010000"],["2024-07-24T10:50:42.010000"],["2024-07-24T10:50:43.010000"],["2024-07-24T10:50:44.010000"],["2024-07-24T10:50:45.010000"],["2024-07-24T10:50:46.010000"],["2024-07-24T10:50:47.010000"],["2024-07-24T10:50:48.010000"],["2024-07-24T10:50:49.010000"],["2024-07-24T10:50:50.010000"],["2024-07-24T10:50:51.010000"],["2024-07-24T10:50:52.010000"],["2024-07-24T10:50:53.010000"],["2024-07-24T10:50:54.010000"],["2024-07-24T10:50:55.010000"],["2024-07-24T10:50:56.010000"],["2024-07-24T10:50:57.010000"],["2024-07-24T10:50:58.010000"],["2024-07-24T10:50:59.010000"],["2024-07-24T10:51:00.010000"],["2024-07-24T10:51:01.010000"],["2024-07-24T10:51:02.010000"],["2024-07-24T10:51:03.010000"],["2024-07-24T10:51:04.010000"],["2024-07-24T10:51:05.010000"],["2024-07-24T10:51:06.010000"],["2024-07-24T10:51:07.010000"],["2024-07-24T10:51:08.010000"],["2024-07-24T10:51:09.010000"],["2024-07-24T10:51:10.010000"],["2024-07-24T10:51:11.010000"],["2024-07-24T10:51:12.010000"],["2024-07-24T10:51:13.010000"],["2024-07-24T10:51:14.010000"],["2024-07-24T10:51:15.010000"],["2024-07-24T10:51:16.010000"],["2024-07-24T10:51:17.010000"],["2024-07-24T10:51:18.010000"],["2024-07-24T10:51:19.010000"],["2024-07-24T10:51:20.010000"],["2024-07-24T10:51:21.010000"],["2024-07-24T10:51:22.010000"],["2024-07-24T10:51:23.010000"],["2024-07-24T10:51:24.010000"],["2024-07-24T10:51:25.010000"],["2024-07-24T10:51:26.010000"],["2024-07-24T10:51:27.010000"],["2024-07-24T10:51:28.010000"],["2024-07-24T10:51:29.010000"],["2024-07-24T10:51:30.010000"],["2024-07-24T10:51:31.010000"],["2024-07-24T10:51:32.010000"],["2024-07-24T10:51:33.010000"],["2024-07-24T10:51:34.010000"],["2024-07-24T10:51:35.010000"],["2024-07-24T10:51:36.010000"],["2024-07-24T10:51:37.010000"],["2024-07-24T10:51:38.010000"],["2024-07-24T10:51:39.010000"],["2024-07-24T10:51:40.010000"],["2024-07-24T10:51:41.010000"],["2024-07-24T10:51:42.010000"],["2024-07-24T10:51:43.010000"],["2024-07-24T10:51:44.010000"],["2024-07-24T10:51:45.010000"],["2024-07-24T10:51:46.010000"],["2024-07-24T10:51:47.010000"],["2024-07-24T10:51:48.010000"],["2024-07-24T10:51:49.010000"],["2024-07-24T10:51:50.010000"],["2024-07-24T10:51:51.010000"],["2024-07-24T10:51:52.010000"],["2024-07-24T10:51:53.010000"],["2024-07-24T10:51:54.010000"],["2024-07-24T10:51:55.010000"],["2024-07-24T10:51:56.010000"],["2024-07-24T10:51:57.010000"],["2024-07-24T10:51:58.010000"],["2024-07-24T10:51:59.010000"],["2024-07-24T10:52:00.010000"],["2024-07-24T10:52:01.010000"],["2024-07-24T10:52:02.010000"],["2024-07-24T10:52:03.010000"],["2024-07-24T10:52:04.010000"],["2024-07-24T10:52:05.010000"],["2024-07-24T10:52:06.010000"],["2024-07-24T10:52:07.010000"],["2024-07-24T10:52:08.010000"],["2024-07-24T10:52:09.010000"],["2024-07-24T10:52:10.010000"],["2024-07-24T10:52:11.010000"],["2024-07-24T10:52:12.010000"],["2024-07-24T10:52:13.010000"],["2024-07-24T10:52:14.010000"],["2024-07-24T10:52:15.010000"],["2024-07-24T10:52:16.010000"],["2024-07-24T10:52:17.010000"],["2024-07-24T10:52:18.010000"],["2024-07-24T10:52:19.010000"],["2024-07-24T10:52:20.010000"],["2024-07-24T10:52:21.010000"],["2024-07-24T10:52:22.010000"],["2024-07-24T10:52:23.010000"],["2024-07-24T10:52:24.010000"],["2024-07-24T10:52:25.010000"],["2024-07-24T10:52:26.010000"],["2024-07-24T10:52:27.010000"],["2024-07-24T10:52:28.010000"],["2024-07-24T10:52:29.010000"],["2024-07-24T10:52:30.010000"],["2024-07-24T10:52:31.010000"],["2024-07-24T10:52:32.010000"],["2024-07-24T10:52:33.010000"],["2024-07-24T10:52:34.010000"],["2024-07-24T10:52:35.010000"],["2024-07-24T10:52:36.010000"],["2024-07-24T10:52:37.010000"],["2024-07-24T10:52:38.010000"],["2024-07-24T10:52:39.010000"],["2024-07-24T10:52:40.010000"],["2024-07-24T10:52:41.010000"],["2024-07-24T10:52:42.010000"],["2024-07-24T10:52:43.010000"],["2024-07-24T10:52:44.010000"],["2024-07-24T10:52:45.010000"],["2024-07-24T10:52:46.010000"],["2024-07-24T10:52:47.010000"],["2024-07-24T10:52:48.010000"],["2024-07-24T10:52:49.010000"],["2024-07-24T10:52:50.010000"],["2024-07-24T10:52:51.010000"],["2024-07-24T10:52:52.010000"],["2024-07-24T10:52:53.010000"],["2024-07-24T10:52:54.010000"],["2024-07-24T10:52:55.010000"],["2024-07-24T10:52:56.010000"],["2024-07-24T10:52:57.010000"],["2024-07-24T10:52:58.010000"],["2024-07-24T10:52:59.010000"],["2024-07-24T10:53:00.010000"],["2024-07-24T10:53:01.010000"],["2024-07-24T10:53:02.010000"],["2024-07-24T10:53:03.010000"],["2024-07-24T10:53:04.010000"],["2024-07-24T10:53:05.010000"],["2024-07-24T10:53:06.010000"],["2024-07-24T10:53:07.010000"],["2024-07-24T10:53:08.010000"],["2024-07-24T10:53:09.010000"],["2024-07-24T10:53:10.010000"],["2024-07-24T10:53:11.010000"],["2024-07-24T10:53:12.010000"],["2024-07-24T10:53:13.010000"],["2024-07-24T10:53:14.010000"],["2024-07-24T10:53:15.010000"],["2024-07-24T10:53:16.010000"],["2024-07-24T10:53:17.010000"],["2024-07-24T10:53:18.010000"],["2024-07-24T10:53:19.010000"],["2024-07-24T10:53:20.010000"],["2024-07-24T10:53:21.010000"],["2024-07-24T10:53:22.010000"],["2024-07-24T10:53:23.010000"],["2024-07-24T10:53:24.010000"],["2024-07-24T10:53:25.010000"],["2024-07-24T10:53:26.010000"],["2024-07-24T10:53:27.010000"],["2024-07-24T10:53:28.010000"],["2024-07-24T10:53:29.010000"],["2024-07-24T10:53:30.010000"],["2024-07-24T10:53:31.010000"],["2024-07-24T10:53:32.010000"],["2024-07-24T10:53:33.010000"],["2024-07-24T10:53:34.010000"],["2024-07-24T10:53:35.010000"],["2024-07-24T10:53:36.010000"],["2024-07-24T10:53:37.010000"],["2024-07-24T10:53:38.010000"],["2024-07-24T10:53:39.010000"],["2024-07-24T10:53:40.010000"],["2024-07-24T10:53:41.010000"],["2024-07-24T10:53:42.010000"],["2024-07-24T10:53:43.010000"],["2024-07-24T10:53:44.010000"],["2024-07-24T10:53:45.010000"],["2024-07-24T10:53:46.010000"],["2024-07-24T10:53:47.010000"],["2024-07-24T10:53:48.010000"],["2024-07-24T10:53:49.010000"],["2024-07-24T10:53:50.010000"],["2024-07-24T10:53:51.010000"],["2024-07-24T10:53:52.010000"],["2024-07-24T10:53:53.010000"],["2024-07-24T10:53:54.010000"],["2024-07-24T10:53:55.010000"],["2024-07-24T10:53:56.010000"],["2024-07-24T10:53:57.010000"],["2024-07-24T10:53:58.010000"],["2024-07-24T10:53:59.010000"],["2024-07-24T10:54:00.010000"],["2024-07-24T10:54:01.010000"],["2024-07-24T10:54:02.010000"],["2024-07-24T10:54:03.010000"],["2024-07-24T10:54:04.010000"],["2024-07-24T10:54:05.010000"],["2024-07-24T10:54:06.010000"],["2024-07-24T10:54:07.010000"],["2024-07-24T10:54:08.010000"],["2024-07-24T10:54:09.010000"],["2024-07-24T10:54:10.010000"],["2024-07-24T10:54:11.010000"],["2024-07-24T10:54:12.010000"],["2024-07-24T10:54:13.010000"],["2024-07-24T10:54:14.010000"],["2024-07-24T10:54:15.010000"],["2024-07-24T10:54:16.010000"],["2024-07-24T10:54:17.010000"],["2024-07-24T10:54:18.010000"],["2024-07-24T10:54:19.010000"],["2024-07-24T10:54:20.010000"],["2024-07-24T10:54:21.010000"],["2024-07-24T10:54:22.010000"],["2024-07-24T10:54:23.010000"],["2024-07-24T10:54:24.010000"],["2024-07-24T10:54:25.010000"],["2024-07-24T10:54:26.010000"],["2024-07-24T10:54:27.010000"],["2024-07-24T10:54:28.010000"],["2024-07-24T10:54:29.010000"],["2024-07-24T10:54:30.010000"],["2024-07-24T10:54:31.010000"],["2024-07-24T10:54:32.010000"],["2024-07-24T10:54:33.010000"],["2024-07-24T10:54:34.010000"],["2024-07-24T10:54:35.010000"],["2024-07-24T10:54:36.010000"],["2024-07-24T10:54:37.010000"],["2024-07-24T10:54:38.010000"],["2024-07-24T10:54:39.010000"],["2024-07-24T10:54:40.010000"],["2024-07-24T10:54:41.010000"],["2024-07-24T10:54:42.010000"],["2024-07-24T10:54:43.010000"],["2024-07-24T10:54:44.010000"],["2024-07-24T10:54:45.010000"],["2024-07-24T10:54:46.010000"],["2024-07-24T10:54:47.010000"],["2024-07-24T10:54:48.010000"],["2024-07-24T10:54:49.010000"],["2024-07-24T10:54:50.010000"],["2024-07-24T10:54:51.010000"],["2024-07-24T10:54:52.010000"],["2024-07-24T10:54:53.010000"],["2024-07-24T10:54:54.010000"],["2024-07-24T10:54:55.010000"],["2024-07-24T10:54:56.010000"],["2024-07-24T10:54:57.010000"],["2024-07-24T10:54:58.010000"],["2024-07-24T10:54:59.010000"],["2024-07-24T10:55:00.010000"],["2024-07-24T10:55:01.010000"],["2024-07-24T10:55:02.010000"],["2024-07-24T10:55:03.010000"],["2024-07-24T10:55:04.010000"],["2024-07-24T10:55:05.010000"],["2024-07-24T10:55:06.010000"],["2024-07-24T10:55:07.010000"],["2024-07-24T10:55:08.010000"],["2024-07-24T10:55:09.010000"],["2024-07-24T10:55:10.010000"],["2024-07-24T10:55:11.010000"],["2024-07-24T10:55:12.010000"],["2024-07-24T10:55:13.010000"],["2024-07-24T10:55:14.010000"],["2024-07-24T10:55:15.010000"],["2024-07-24T10:55:16.010000"],["2024-07-24T10:55:17.010000"],["2024-07-24T10:55:18.010000"],["2024-07-24T10:55:19.010000"],["2024-07-24T10:55:20.010000"],["2024-07-24T10:55:21.010000"],["2024-07-24T10:55:22.010000"],["2024-07-24T10:55:23.010000"],["2024-07-24T10:55:24.010000"],["2024-07-24T10:55:25.010000"],["2024-07-24T10:55:26.010000"],["2024-07-24T10:55:27.010000"],["2024-07-24T10:55:28.010000"],["2024-07-24T10:55:29.010000"],["2024-07-24T10:55:30.010000"],["2024-07-24T10:55:31.010000"],["2024-07-24T10:55:32.010000"],["2024-07-24T10:55:33.010000"],["2024-07-24T10:55:34.010000"],["2024-07-24T10:55:35.010000"],["2024-07-24T10:55:36.010000"],["2024-07-24T10:55:37.010000"],["2024-07-24T10:55:38.010000"],["2024-07-24T10:55:39.010000"],["2024-07-24T10:55:40.010000"],["2024-07-24T10:55:41.010000"],["2024-07-24T10:55:42.010000"],["2024-07-24T10:55:43.010000"],["2024-07-24T10:55:44.010000"],["2024-07-24T10:55:45.010000"],["2024-07-24T10:55:46.010000"],["2024-07-24T10:55:47.010000"],["2024-07-24T10:55:48.010000"],["2024-07-24T10:55:49.010000"],["2024-07-24T10:55:50.010000"],["2024-07-24T10:55:51.010000"],["2024-07-24T10:55:52.010000"],["2024-07-24T10:55:53.010000"],["2024-07-24T10:55:54.010000"],["2024-07-24T10:55:55.010000"],["2024-07-24T10:55:56.010000"],["2024-07-24T10:55:57.010000"],["2024-07-24T10:55:58.010000"],["2024-07-24T10:55:59.010000"],["2024-07-24T10:56:00.010000"],["2024-07-24T10:56:01.010000"],["2024-07-24T10:56:02.010000"],["2024-07-24T10:56:03.010000"],["2024-07-24T10:56:04.010000"],["2024-07-24T10:56:05.010000"],["2024-07-24T10:56:06.010000"],["2024-07-24T10:56:07.010000"],["2024-07-24T10:56:08.010000"],["2024-07-24T10:56:09.010000"],["2024-07-24T10:56:10.010000"],["2024-07-24T10:56:11.010000"],["2024-07-24T10:56:12.010000"],["2024-07-24T10:56:13.010000"],["2024-07-24T10:56:14.010000"],["2024-07-24T10:56:15.010000"],["2024-07-24T10:56:16.010000"],["2024-07-24T10:56:17.010000"],["2024-07-24T10:56:18.010000"],["2024-07-24T10:56:19.010000"],["2024-07-24T10:56:20.010000"],["2024-07-24T10:56:21.010000"],["2024-07-24T10:56:22.010000"],["2024-07-24T10:56:23.010000"],["2024-07-24T10:56:24.010000"],["2024-07-24T10:56:25.010000"],["2024-07-24T10:56:26.010000"],["2024-07-24T10:56:27.010000"],["2024-07-24T10:56:28.010000"],["2024-07-24T10:56:29.010000"],["2024-07-24T10:56:30.010000"],["2024-07-24T10:56:31.010000"],["2024-07-24T10:56:32.010000"],["2024-07-24T10:56:33.010000"],["2024-07-24T10:56:34.010000"],["2024-07-24T10:56:35.010000"],["2024-07-24T10:56:36.010000"],["2024-07-24T10:56:37.010000"],["2024-07-24T10:56:38.010000"],["2024-07-24T10:56:39.010000"],["2024-07-24T10:56:40.010000"],["2024-07-24T10:56:41.010000"],["2024-07-24T10:56:42.010000"],["2024-07-24T10:56:43.010000"],["2024-07-24T10:56:44.010000"],["2024-07-24T10:56:45.010000"],["2024-07-24T10:56:46.010000"],["2024-07-24T10:56:47.010000"],["2024-07-24T10:56:48.010000"],["2024-07-24T10:56:49.010000"],["2024-07-24T10:56:50.010000"],["2024-07-24T10:56:51.010000"],["2024-07-24T10:56:52.010000"],["2024-07-24T10:56:53.010000"],["2024-07-24T10:56:54.010000"],["2024-07-24T10:56:55.010000"],["2024-07-24T10:56:56.010000"],["2024-07-24T10:56:57.010000"],["2024-07-24T10:56:58.010000"],["2024-07-24T10:56:59.010000"],["2024-07-24T10:57:00.010000"],["2024-07-24T10:57:01.010000"],["2024-07-24T10:57:02.010000"],["2024-07-24T10:57:03.010000"],["2024-07-24T10:57:04.010000"],["2024-07-24T10:57:05.010000"],["2024-07-24T10:57:06.010000"],["2024-07-24T10:57:07.010000"],["2024-07-24T10:57:08.010000"],["2024-07-24T10:57:09.010000"],["2024-07-24T10:57:10.010000"],["2024-07-24T10:57:11.010000"],["2024-07-24T10:57:12.010000"],["2024-07-24T10:57:13.010000"],["2024-07-24T10:57:14.010000"],["2024-07-24T10:57:15.010000"],["2024-07-24T10:57:16.010000"],["2024-07-24T10:57:17.010000"],["2024-07-24T10:57:18.010000"],["2024-07-24T10:57:19.010000"],["2024-07-24T10:57:20.010000"],["2024-07-24T10:57:21.010000"],["2024-07-24T10:57:22.010000"],["2024-07-24T10:57:23.010000"],["2024-07-24T10:57:24.010000"],["2024-07-24T10:57:25.010000"],["2024-07-24T10:57:26.010000"],["2024-07-24T10:57:27.010000"],["2024-07-24T10:57:28.010000"],["2024-07-24T10:57:29.010000"],["2024-07-24T10:57:30.010000"],["2024-07-24T10:57:31.010000"],["2024-07-24T10:57:32.010000"],["2024-07-24T10:57:33.010000"],["2024-07-24T10:57:34.010000"],["2024-07-24T10:57:35.010000"],["2024-07-24T10:57:36.010000"],["2024-07-24T10:57:37.010000"],["2024-07-24T10:57:38.010000"],["2024-07-24T10:57:39.010000"],["2024-07-24T10:57:40.010000"],["2024-07-24T10:57:41.010000"],["2024-07-24T10:57:42.010000"],["2024-07-24T10:57:43.010000"],["2024-07-24T10:57:44.010000"],["2024-07-24T10:57:45.010000"],["2024-07-24T10:57:46.010000"],["2024-07-24T10:57:47.010000"],["2024-07-24T10:57:48.010000"],["2024-07-24T10:57:49.010000"],["2024-07-24T10:57:50.010000"],["2024-07-24T10:57:51.010000"],["2024-07-24T10:57:52.010000"],["2024-07-24T10:57:53.010000"],["2024-07-24T10:57:54.010000"],["2024-07-24T10:57:55.010000"],["2024-07-24T10:57:56.010000"],["2024-07-24T10:57:57.010000"],["2024-07-24T10:57:58.010000"],["2024-07-24T10:57:59.010000"],["2024-07-24T10:58:00.010000"],["2024-07-24T10:58:01.010000"],["2024-07-24T10:58:02.010000"],["2024-07-24T10:58:03.010000"],["2024-07-24T10:58:04.010000"],["2024-07-24T10:58:05.010000"],["2024-07-24T10:58:06.010000"],["2024-07-24T10:58:07.010000"],["2024-07-24T10:58:08.010000"],["2024-07-24T10:58:09.010000"],["2024-07-24T10:58:10.010000"],["2024-07-24T10:58:11.010000"],["2024-07-24T10:58:12.010000"],["2024-07-24T10:58:13.010000"],["2024-07-24T10:58:14.010000"],["2024-07-24T10:58:15.010000"],["2024-07-24T10:58:16.010000"],["2024-07-24T10:58:17.010000"],["2024-07-24T10:58:18.010000"],["2024-07-24T10:58:19.010000"],["2024-07-24T10:58:20.010000"],["2024-07-24T10:58:21.010000"],["2024-07-24T10:58:22.010000"],["2024-07-24T10:58:23.010000"],["2024-07-24T10:58:24.010000"],["2024-07-24T10:58:25.010000"],["2024-07-24T10:58:26.010000"],["2024-07-24T10:58:27.010000"],["2024-07-24T10:58:28.010000"],["2024-07-24T10:58:29.010000"],["2024-07-24T10:58:30.010000"],["2024-07-24T10:58:31.010000"],["2024-07-24T10:58:32.010000"],["2024-07-24T10:58:33.010000"],["2024-07-24T10:58:34.010000"],["2024-07-24T10:58:35.010000"],["2024-07-24T10:58:36.010000"],["2024-07-24T10:58:37.010000"],["2024-07-24T10:58:38.010000"],["2024-07-24T10:58:39.010000"],["2024-07-24T10:58:40.010000"],["2024-07-24T10:58:41.010000"],["2024-07-24T10:58:42.010000"],["2024-07-24T10:58:43.010000"],["2024-07-24T10:58:44.010000"],["2024-07-24T10:58:45.010000"],["2024-07-24T10:58:46.010000"],["2024-07-24T10:58:47.010000"],["2024-07-24T10:58:48.010000"],["2024-07-24T10:58:49.010000"],["2024-07-24T10:58:50.010000"],["2024-07-24T10:58:51.010000"],["2024-07-24T10:58:52.010000"],["2024-07-24T10:58:53.010000"],["2024-07-24T10:58:54.010000"],["2024-07-24T10:58:55.010000"],["2024-07-24T10:58:56.010000"],["2024-07-24T10:58:57.010000"],["2024-07-24T10:58:58.010000"],["2024-07-24T10:58:59.010000"],["2024-07-24T10:59:00.010000"],["2024-07-24T10:59:01.010000"],["2024-07-24T10:59:02.010000"],["2024-07-24T10:59:03.010000"],["2024-07-24T10:59:04.010000"],["2024-07-24T10:59:05.010000"],["2024-07-24T10:59:06.010000"],["2024-07-24T10:59:07.010000"],["2024-07-24T10:59:08.010000"],["2024-07-24T10:59:09.010000"],["2024-07-24T10:59:10.010000"],["2024-07-24T10:59:11.010000"],["2024-07-24T10:59:12.010000"],["2024-07-24T10:59:13.010000"],["2024-07-24T10:59:14.010000"],["2024-07-24T10:59:15.010000"],["2024-07-24T10:59:16.010000"],["2024-07-24T10:59:17.010000"],["2024-07-24T10:59:18.010000"],["2024-07-24T10:59:19.010000"],["2024-07-24T10:59:20.010000"],["2024-07-24T10:59:21.010000"],["2024-07-24T10:59:22.010000"],["2024-07-24T10:59:23.010000"],["2024-07-24T10:59:24.010000"],["2024-07-24T10:59:25.010000"],["2024-07-24T10:59:26.010000"],["2024-07-24T10:59:27.010000"],["2024-07-24T10:59:28.010000"],["2024-07-24T10:59:29.010000"],["2024-07-24T10:59:30.010000"],["2024-07-24T10:59:31.010000"],["2024-07-24T10:59:32.010000"],["2024-07-24T10:59:33.010000"],["2024-07-24T10:59:34.010000"],["2024-07-24T10:59:35.010000"],["2024-07-24T10:59:36.010000"],["2024-07-24T10:59:37.010000"],["2024-07-24T10:59:38.010000"],["2024-07-24T10:59:39.010000"],["2024-07-24T10:59:40.010000"],["2024-07-24T10:59:41.010000"],["2024-07-24T10:59:42.010000"],["2024-07-24T10:59:43.010000"],["2024-07-24T10:59:44.010000"],["2024-07-24T10:59:45.010000"],["2024-07-24T10:59:46.010000"],["2024-07-24T10:59:47.010000"],["2024-07-24T10:59:48.010000"],["2024-07-24T10:59:49.010000"],["2024-07-24T10:59:50.010000"],["2024-07-24T10:59:51.010000"],["2024-07-24T10:59:52.010000"],["2024-07-24T10:59:53.010000"],["2024-07-24T10:59:54.010000"],["2024-07-24T10:59:55.010000"],["2024-07-24T10:59:56.010000"],["2024-07-24T10:59:57.010000"],["2024-07-24T10:59:58.010000"],["2024-07-24T10:59:59.010000"],["2024-07-24T11:00:00.010000"],["2024-07-24T11:00:01.010000"],["2024-07-24T11:00:02.010000"],["2024-07-24T11:00:03.010000"],["2024-07-24T11:00:04.010000"],["2024-07-24T11:00:05.010000"],["2024-07-24T11:00:06.010000"],["2024-07-24T11:00:07.010000"],["2024-07-24T11:00:08.010000"],["2024-07-24T11:00:09.010000"],["2024-07-24T11:00:10.010000"],["2024-07-24T11:00:11.010000"],["2024-07-24T11:00:12.010000"],["2024-07-24T11:00:13.010000"],["2024-07-24T11:00:14.010000"],["2024-07-24T11:00:15.010000"],["2024-07-24T11:00:16.010000"],["2024-07-24T11:00:17.010000"],["2024-07-24T11:00:18.010000"],["2024-07-24T11:00:19.010000"],["2024-07-24T11:00:20.010000"],["2024-07-24T11:00:21.010000"],["2024-07-24T11:00:22.010000"],["2024-07-24T11:00:23.010000"],["2024-07-24T11:00:24.010000"],["2024-07-24T11:00:25.010000"],["2024-07-24T11:00:26.010000"],["2024-07-24T11:00:27.010000"],["2024-07-24T11:00:28.010000"],["2024-07-24T11:00:29.010000"],["2024-07-24T11:00:30.010000"],["2024-07-24T11:00:31.010000"],["2024-07-24T11:00:32.010000"],["2024-07-24T11:00:33.010000"],["2024-07-24T11:00:34.010000"],["2024-07-24T11:00:35.010000"],["2024-07-24T11:00:36.010000"],["2024-07-24T11:00:37.010000"],["2024-07-24T11:00:38.010000"],["2024-07-24T11:00:39.010000"],["2024-07-24T11:00:40.010000"],["2024-07-24T11:00:41.010000"],["2024-07-24T11:00:42.010000"],["2024-07-24T11:00:43.010000"],["2024-07-24T11:00:44.010000"],["2024-07-24T11:00:45.010000"],["2024-07-24T11:00:46.010000"],["2024-07-24T11:00:47.010000"],["2024-07-24T11:00:48.010000"],["2024-07-24T11:00:49.010000"],["2024-07-24T11:00:50.010000"],["2024-07-24T11:00:51.010000"],["2024-07-24T11:00:52.010000"],["2024-07-24T11:00:53.010000"],["2024-07-24T11:00:54.010000"],["2024-07-24T11:00:55.010000"],["2024-07-24T11:00:56.010000"],["2024-07-24T11:00:57.010000"],["2024-07-24T11:00:58.010000"],["2024-07-24T11:00:59.010000"],["2024-07-24T11:01:00.010000"],["2024-07-24T11:01:01.010000"],["2024-07-24T11:01:02.010000"],["2024-07-24T11:01:03.010000"],["2024-07-24T11:01:04.010000"],["2024-07-24T11:01:05.010000"],["2024-07-24T11:01:06.010000"],["2024-07-24T11:01:07.010000"],["2024-07-24T11:01:08.010000"],["2024-07-24T11:01:09.010000"],["2024-07-24T11:01:10.010000"],["2024-07-24T11:01:11.010000"],["2024-07-24T11:01:12.010000"],["2024-07-24T11:01:13.010000"],["2024-07-24T11:01:14.010000"],["2024-07-24T11:01:15.010000"],["2024-07-24T11:01:16.010000"],["2024-07-24T11:01:17.010000"],["2024-07-24T11:01:18.010000"],["2024-07-24T11:01:19.010000"],["2024-07-24T11:01:20.010000"],["2024-07-24T11:01:21.010000"],["2024-07-24T11:01:22.010000"],["2024-07-24T11:01:23.010000"],["2024-07-24T11:01:24.010000"],["2024-07-24T11:01:25.010000"],["2024-07-24T11:01:26.010000"],["2024-07-24T11:01:27.010000"],["2024-07-24T11:01:28.010000"],["2024-07-24T11:01:29.010000"],["2024-07-24T11:01:30.010000"],["2024-07-24T11:01:31.010000"],["2024-07-24T11:01:32.010000"],["2024-07-24T11:01:33.010000"],["2024-07-24T11:01:34.010000"],["2024-07-24T11:01:35.010000"],["2024-07-24T11:01:36.010000"],["2024-07-24T11:01:37.010000"],["2024-07-24T11:01:38.010000"],["2024-07-24T11:01:39.010000"],["2024-07-24T11:01:40.010000"],["2024-07-24T11:01:41.010000"],["2024-07-24T11:01:42.010000"],["2024-07-24T11:01:43.010000"],["2024-07-24T11:01:44.010000"],["2024-07-24T11:01:45.010000"],["2024-07-24T11:01:46.010000"],["2024-07-24T11:01:47.010000"],["2024-07-24T11:01:48.010000"],["2024-07-24T11:01:49.010000"],["2024-07-24T11:01:50.010000"],["2024-07-24T11:01:51.010000"],["2024-07-24T11:01:52.010000"],["2024-07-24T11:01:53.010000"],["2024-07-24T11:01:54.010000"],["2024-07-24T11:01:55.010000"],["2024-07-24T11:01:56.010000"],["2024-07-24T11:01:57.010000"],["2024-07-24T11:01:58.010000"],["2024-07-24T11:01:59.010000"],["2024-07-24T11:02:00.010000"],["2024-07-24T11:02:01.010000"],["2024-07-24T11:02:02.010000"],["2024-07-24T11:02:03.010000"],["2024-07-24T11:02:04.010000"],["2024-07-24T11:02:05.010000"],["2024-07-24T11:02:06.010000"],["2024-07-24T11:02:07.010000"],["2024-07-24T11:02:08.010000"],["2024-07-24T11:02:09.010000"],["2024-07-24T11:02:10.010000"],["2024-07-24T11:02:11.010000"],["2024-07-24T11:02:12.010000"],["2024-07-24T11:02:13.010000"],["2024-07-24T11:02:14.010000"],["2024-07-24T11:02:15.010000"],["2024-07-24T11:02:16.010000"],["2024-07-24T11:02:17.010000"],["2024-07-24T11:02:18.010000"],["2024-07-24T11:02:19.010000"],["2024-07-24T11:02:20.010000"],["2024-07-24T11:02:21.010000"],["2024-07-24T11:02:22.010000"],["2024-07-24T11:02:23.010000"],["2024-07-24T11:02:24.010000"],["2024-07-24T11:02:25.010000"],["2024-07-24T11:02:26.010000"],["2024-07-24T11:02:27.010000"],["2024-07-24T11:02:28.010000"],["2024-07-24T11:02:29.010000"],["2024-07-24T11:02:30.010000"],["2024-07-24T11:02:31.010000"],["2024-07-24T11:02:32.010000"],["2024-07-24T11:02:33.010000"],["2024-07-24T11:02:34.010000"],["2024-07-24T11:02:35.010000"],["2024-07-24T11:02:36.010000"],["2024-07-24T11:02:37.010000"],["2024-07-24T11:02:38.010000"],["2024-07-24T11:02:39.010000"],["2024-07-24T11:02:40.010000"],["2024-07-24T11:02:41.010000"],["2024-07-24T11:02:42.010000"],["2024-07-24T11:02:43.010000"],["2024-07-24T11:02:44.010000"],["2024-07-24T11:02:45.010000"],["2024-07-24T11:02:46.010000"],["2024-07-24T11:02:47.010000"],["2024-07-24T11:02:48.010000"],["2024-07-24T11:02:49.010000"],["2024-07-24T11:02:50.010000"],["2024-07-24T11:02:51.010000"],["2024-07-24T11:02:52.010000"],["2024-07-24T11:02:53.010000"],["2024-07-24T11:02:54.010000"],["2024-07-24T11:02:55.010000"],["2024-07-24T11:02:56.010000"],["2024-07-24T11:02:57.010000"],["2024-07-24T11:02:58.010000"],["2024-07-24T11:02:59.010000"],["2024-07-24T11:03:00.010000"],["2024-07-24T11:03:01.010000"],["2024-07-24T11:03:02.010000"],["2024-07-24T11:03:03.010000"],["2024-07-24T11:03:04.010000"],["2024-07-24T11:03:05.010000"],["2024-07-24T11:03:06.010000"],["2024-07-24T11:03:07.010000"],["2024-07-24T11:03:08.010000"],["2024-07-24T11:03:09.010000"],["2024-07-24T11:03:10.010000"],["2024-07-24T11:03:11.010000"],["2024-07-24T11:03:12.010000"],["2024-07-24T11:03:13.010000"],["2024-07-24T11:03:14.010000"],["2024-07-24T11:03:15.010000"],["2024-07-24T11:03:16.010000"],["2024-07-24T11:03:17.010000"],["2024-07-24T11:03:18.010000"],["2024-07-24T11:03:19.010000"],["2024-07-24T11:03:20.010000"],["2024-07-24T11:03:21.010000"],["2024-07-24T11:03:22.010000"],["2024-07-24T11:03:23.010000"],["2024-07-24T11:03:24.010000"],["2024-07-24T11:03:25.010000"],["2024-07-24T11:03:26.010000"],["2024-07-24T11:03:27.010000"],["2024-07-24T11:03:28.010000"],["2024-07-24T11:03:29.010000"],["2024-07-24T11:03:30.010000"],["2024-07-24T11:03:31.010000"],["2024-07-24T11:03:32.010000"],["2024-07-24T11:03:33.010000"],["2024-07-24T11:03:34.010000"],["2024-07-24T11:03:35.010000"],["2024-07-24T11:03:36.010000"],["2024-07-24T11:03:37.010000"],["2024-07-24T11:03:38.010000"],["2024-07-24T11:03:39.010000"],["2024-07-24T11:03:40.010000"],["2024-07-24T11:03:41.010000"],["2024-07-24T11:03:42.010000"],["2024-07-24T11:03:43.010000"],["2024-07-24T11:03:44.010000"],["2024-07-24T11:03:45.010000"],["2024-07-24T11:03:46.010000"],["2024-07-24T11:03:47.010000"],["2024-07-24T11:03:48.010000"],["2024-07-24T11:03:49.010000"],["2024-07-24T11:03:50.010000"],["2024-07-24T11:03:51.010000"],["2024-07-24T11:03:52.010000"],["2024-07-24T11:03:53.010000"],["2024-07-24T11:03:54.010000"],["2024-07-24T11:03:55.010000"],["2024-07-24T11:03:56.010000"],["2024-07-24T11:03:57.010000"],["2024-07-24T11:03:58.010000"],["2024-07-24T11:03:59.010000"],["2024-07-24T11:04:00.010000"],["2024-07-24T11:04:01.010000"],["2024-07-24T11:04:02.010000"],["2024-07-24T11:04:03.010000"],["2024-07-24T11:04:04.010000"],["2024-07-24T11:04:05.010000"],["2024-07-24T11:04:06.010000"],["2024-07-24T11:04:07.010000"],["2024-07-24T11:04:08.010000"],["2024-07-24T11:04:09.010000"],["2024-07-24T11:04:10.010000"],["2024-07-24T11:04:11.010000"],["2024-07-24T11:04:12.010000"],["2024-07-24T11:04:13.010000"],["2024-07-24T11:04:14.010000"],["2024-07-24T11:04:15.010000"],["2024-07-24T11:04:16.010000"],["2024-07-24T11:04:17.010000"],["2024-07-24T11:04:18.010000"],["2024-07-24T11:04:19.010000"],["2024-07-24T11:04:20.010000"],["2024-07-24T11:04:21.010000"],["2024-07-24T11:04:22.010000"],["2024-07-24T11:04:23.010000"],["2024-07-24T11:04:24.010000"],["2024-07-24T11:04:25.010000"],["2024-07-24T11:04:26.010000"],["2024-07-24T11:04:27.010000"],["2024-07-24T11:04:28.010000"],["2024-07-24T11:04:29.010000"],["2024-07-24T11:04:30.010000"],["2024-07-24T11:04:31.010000"],["2024-07-24T11:04:32.010000"],["2024-07-24T11:04:33.010000"],["2024-07-24T11:04:34.010000"],["2024-07-24T11:04:35.010000"],["2024-07-24T11:04:36.010000"],["2024-07-24T11:04:37.010000"],["2024-07-24T11:04:38.010000"],["2024-07-24T11:04:39.010000"],["2024-07-24T11:04:40.010000"],["2024-07-24T11:04:41.010000"],["2024-07-24T11:04:42.010000"],["2024-07-24T11:04:43.010000"],["2024-07-24T11:04:44.010000"],["2024-07-24T11:04:45.010000"],["2024-07-24T11:04:46.010000"],["2024-07-24T11:04:47.010000"],["2024-07-24T11:04:48.010000"],["2024-07-24T11:04:49.010000"],["2024-07-24T11:04:50.010000"],["2024-07-24T11:04:51.010000"],["2024-07-24T11:04:52.010000"],["2024-07-24T11:04:53.010000"],["2024-07-24T11:04:54.010000"],["2024-07-24T11:04:55.010000"],["2024-07-24T11:04:56.010000"],["2024-07-24T11:04:57.010000"],["2024-07-24T11:04:58.010000"],["2024-07-24T11:04:59.010000"],["2024-07-24T11:05:00.010000"],["2024-07-24T11:05:01.010000"],["2024-07-24T11:05:02.010000"],["2024-07-24T11:05:03.010000"],["2024-07-24T11:05:04.010000"],["2024-07-24T11:05:05.010000"],["2024-07-24T11:05:06.010000"],["2024-07-24T11:05:07.010000"],["2024-07-24T11:05:08.010000"],["2024-07-24T11:05:09.010000"],["2024-07-24T11:05:10.010000"],["2024-07-24T11:05:11.010000"],["2024-07-24T11:05:12.010000"],["2024-07-24T11:05:13.010000"],["2024-07-24T11:05:14.010000"],["2024-07-24T11:05:15.010000"],["2024-07-24T11:05:16.010000"],["2024-07-24T11:05:17.010000"],["2024-07-24T11:05:18.010000"],["2024-07-24T11:05:19.010000"],["2024-07-24T11:05:20.010000"],["2024-07-24T11:05:21.010000"],["2024-07-24T11:05:22.010000"],["2024-07-24T11:05:23.010000"],["2024-07-24T11:05:24.010000"],["2024-07-24T11:05:25.010000"],["2024-07-24T11:05:26.010000"],["2024-07-24T11:05:27.010000"],["2024-07-24T11:05:28.010000"],["2024-07-24T11:05:29.010000"],["2024-07-24T11:05:30.010000"],["2024-07-24T11:05:31.010000"],["2024-07-24T11:05:32.010000"],["2024-07-24T11:05:33.010000"],["2024-07-24T11:05:34.010000"],["2024-07-24T11:05:35.010000"],["2024-07-24T11:05:36.010000"],["2024-07-24T11:05:37.010000"],["2024-07-24T11:05:38.010000"],["2024-07-24T11:05:39.010000"],["2024-07-24T11:05:40.010000"],["2024-07-24T11:05:41.010000"],["2024-07-24T11:05:42.010000"],["2024-07-24T11:05:43.010000"],["2024-07-24T11:05:44.010000"],["2024-07-24T11:05:45.010000"],["2024-07-24T11:05:46.010000"],["2024-07-24T11:05:47.010000"],["2024-07-24T11:05:48.010000"],["2024-07-24T11:05:49.010000"],["2024-07-24T11:05:50.010000"],["2024-07-24T11:05:51.010000"],["2024-07-24T11:05:52.010000"],["2024-07-24T11:05:53.010000"],["2024-07-24T11:05:54.010000"],["2024-07-24T11:05:55.010000"],["2024-07-24T11:05:56.010000"],["2024-07-24T11:05:57.010000"],["2024-07-24T11:05:58.010000"],["2024-07-24T11:05:59.010000"],["2024-07-24T11:06:00.010000"],["2024-07-24T11:06:01.010000"],["2024-07-24T11:06:02.010000"],["2024-07-24T11:06:03.010000"],["2024-07-24T11:06:04.010000"],["2024-07-24T11:06:05.010000"],["2024-07-24T11:06:06.010000"],["2024-07-24T11:06:07.010000"],["2024-07-24T11:06:08.010000"],["2024-07-24T11:06:09.010000"],["2024-07-24T11:06:10.010000"],["2024-07-24T11:06:11.010000"],["2024-07-24T11:06:12.010000"],["2024-07-24T11:06:13.010000"],["2024-07-24T11:06:14.010000"],["2024-07-24T11:06:15.010000"],["2024-07-24T11:06:16.010000"],["2024-07-24T11:06:17.010000"],["2024-07-24T11:06:18.010000"],["2024-07-24T11:06:19.010000"],["2024-07-24T11:06:20.010000"],["2024-07-24T11:06:21.010000"],["2024-07-24T11:06:22.010000"],["2024-07-24T11:06:23.010000"],["2024-07-24T11:06:24.010000"],["2024-07-24T11:06:25.010000"],["2024-07-24T11:06:26.010000"],["2024-07-24T11:06:27.010000"],["2024-07-24T11:06:28.010000"],["2024-07-24T11:06:29.010000"],["2024-07-24T11:06:30.010000"],["2024-07-24T11:06:31.010000"],["2024-07-24T11:06:32.010000"],["2024-07-24T11:06:33.010000"],["2024-07-24T11:06:34.010000"],["2024-07-24T11:06:35.010000"],["2024-07-24T11:06:36.010000"],["2024-07-24T11:06:37.010000"],["2024-07-24T11:06:38.010000"],["2024-07-24T11:06:39.010000"],["2024-07-24T11:06:40.010000"],["2024-07-24T11:06:41.010000"],["2024-07-24T11:06:42.010000"],["2024-07-24T11:06:43.010000"],["2024-07-24T11:06:44.010000"],["2024-07-24T11:06:45.010000"],["2024-07-24T11:06:46.010000"],["2024-07-24T11:06:47.010000"],["2024-07-24T11:06:48.010000"],["2024-07-24T11:06:49.010000"],["2024-07-24T11:06:50.010000"],["2024-07-24T11:06:51.010000"],["2024-07-24T11:06:52.010000"],["2024-07-24T11:06:53.010000"],["2024-07-24T11:06:54.010000"],["2024-07-24T11:06:55.010000"],["2024-07-24T11:06:56.010000"],["2024-07-24T11:06:57.010000"],["2024-07-24T11:06:58.010000"],["2024-07-24T11:06:59.010000"],["2024-07-24T11:07:00.010000"],["2024-07-24T11:07:01.010000"],["2024-07-24T11:07:02.010000"],["2024-07-24T11:07:03.010000"],["2024-07-24T11:07:04.010000"],["2024-07-24T11:07:05.010000"],["2024-07-24T11:07:06.010000"],["2024-07-24T11:07:07.010000"],["2024-07-24T11:07:08.010000"],["2024-07-24T11:07:09.010000"],["2024-07-24T11:07:10.010000"],["2024-07-24T11:07:11.010000"],["2024-07-24T11:07:12.010000"],["2024-07-24T11:07:13.010000"],["2024-07-24T11:07:14.010000"],["2024-07-24T11:07:15.010000"],["2024-07-24T11:07:16.010000"],["2024-07-24T11:07:17.010000"],["2024-07-24T11:07:18.010000"],["2024-07-24T11:07:19.010000"],["2024-07-24T11:07:20.010000"],["2024-07-24T11:07:21.010000"],["2024-07-24T11:07:22.010000"],["2024-07-24T11:07:23.010000"],["2024-07-24T11:07:24.010000"],["2024-07-24T11:07:25.010000"],["2024-07-24T11:07:26.010000"],["2024-07-24T11:07:27.010000"],["2024-07-24T11:07:28.010000"],["2024-07-24T11:07:29.010000"],["2024-07-24T11:07:30.010000"],["2024-07-24T11:07:31.010000"],["2024-07-24T11:07:32.010000"],["2024-07-24T11:07:33.010000"],["2024-07-24T11:07:34.010000"],["2024-07-24T11:07:35.010000"],["2024-07-24T11:07:36.010000"],["2024-07-24T11:07:37.010000"],["2024-07-24T11:07:38.010000"],["2024-07-24T11:07:39.010000"],["2024-07-24T11:07:40.010000"],["2024-07-24T11:07:41.010000"],["2024-07-24T11:07:42.010000"],["2024-07-24T11:07:43.010000"],["2024-07-24T11:07:44.010000"],["2024-07-24T11:07:45.010000"],["2024-07-24T11:07:46.010000"],["2024-07-24T11:07:47.010000"],["2024-07-24T11:07:48.010000"],["2024-07-24T11:07:49.010000"],["2024-07-24T11:07:50.010000"],["2024-07-24T11:07:51.010000"],["2024-07-24T11:07:52.010000"],["2024-07-24T11:07:53.010000"],["2024-07-24T11:07:54.010000"],["2024-07-24T11:07:55.010000"],["2024-07-24T11:07:56.010000"],["2024-07-24T11:07:57.010000"],["2024-07-24T11:07:58.010000"],["2024-07-24T11:07:59.010000"],["2024-07-24T11:08:00.010000"],["2024-07-24T11:08:01.010000"],["2024-07-24T11:08:02.010000"],["2024-07-24T11:08:03.010000"],["2024-07-24T11:08:04.010000"],["2024-07-24T11:08:05.010000"],["2024-07-24T11:08:06.010000"],["2024-07-24T11:08:07.010000"],["2024-07-24T11:08:08.010000"],["2024-07-24T11:08:09.010000"],["2024-07-24T11:08:10.010000"],["2024-07-24T11:08:11.010000"],["2024-07-24T11:08:12.010000"],["2024-07-24T11:08:13.010000"],["2024-07-24T11:08:14.010000"],["2024-07-24T11:08:15.010000"],["2024-07-24T11:08:16.010000"],["2024-07-24T11:08:17.010000"],["2024-07-24T11:08:18.010000"],["2024-07-24T11:08:19.010000"],["2024-07-24T11:08:20.010000"],["2024-07-24T11:08:21.010000"],["2024-07-24T11:08:22.010000"],["2024-07-24T11:08:23.010000"],["2024-07-24T11:08:24.010000"],["2024-07-24T11:08:25.010000"],["2024-07-24T11:08:26.010000"],["2024-07-24T11:08:27.010000"],["2024-07-24T11:08:28.010000"],["2024-07-24T11:08:29.010000"],["2024-07-24T11:08:30.010000"],["2024-07-24T11:08:31.010000"],["2024-07-24T11:08:32.010000"],["2024-07-24T11:08:33.010000"],["2024-07-24T11:08:34.010000"],["2024-07-24T11:08:35.010000"],["2024-07-24T11:08:36.010000"],["2024-07-24T11:08:37.010000"],["2024-07-24T11:08:38.010000"],["2024-07-24T11:08:39.010000"],["2024-07-24T11:08:40.010000"],["2024-07-24T11:08:41.010000"],["2024-07-24T11:08:42.010000"],["2024-07-24T11:08:43.010000"],["2024-07-24T11:08:44.010000"],["2024-07-24T11:08:45.010000"],["2024-07-24T11:08:46.010000"],["2024-07-24T11:08:47.010000"],["2024-07-24T11:08:48.010000"],["2024-07-24T11:08:49.010000"],["2024-07-24T11:08:50.010000"],["2024-07-24T11:08:51.010000"],["2024-07-24T11:08:52.010000"],["2024-07-24T11:08:53.010000"],["2024-07-24T11:08:54.010000"],["2024-07-24T11:08:55.010000"],["2024-07-24T11:08:56.010000"],["2024-07-24T11:08:57.010000"],["2024-07-24T11:08:58.010000"],["2024-07-24T11:08:59.010000"],["2024-07-24T11:09:00.010000"],["2024-07-24T11:09:01.010000"],["2024-07-24T11:09:02.010000"],["2024-07-24T11:09:03.010000"],["2024-07-24T11:09:04.010000"],["2024-07-24T11:09:05.010000"],["2024-07-24T11:09:06.010000"],["2024-07-24T11:09:07.010000"],["2024-07-24T11:09:08.010000"],["2024-07-24T11:09:09.010000"],["2024-07-24T11:09:10.010000"],["2024-07-24T11:09:11.010000"],["2024-07-24T11:09:12.010000"],["2024-07-24T11:09:13.010000"],["2024-07-24T11:09:14.010000"],["2024-07-24T11:09:15.010000"],["2024-07-24T11:09:16.010000"],["2024-07-24T11:09:17.010000"],["2024-07-24T11:09:18.010000"],["2024-07-24T11:09:19.010000"],["2024-07-24T11:09:20.010000"],["2024-07-24T11:09:21.010000"],["2024-07-24T11:09:22.010000"],["2024-07-24T11:09:23.010000"],["2024-07-24T11:09:24.010000"],["2024-07-24T11:09:25.010000"],["2024-07-24T11:09:26.010000"],["2024-07-24T11:09:27.010000"],["2024-07-24T11:09:28.010000"],["2024-07-24T11:09:29.010000"],["2024-07-24T11:09:30.010000"],["2024-07-24T11:09:31.010000"],["2024-07-24T11:09:32.010000"],["2024-07-24T11:09:33.010000"],["2024-07-24T11:09:34.010000"],["2024-07-24T11:09:35.010000"],["2024-07-24T11:09:36.010000"],["2024-07-24T11:09:37.010000"],["2024-07-24T11:09:38.010000"],["2024-07-24T11:09:39.010000"],["2024-07-24T11:09:40.010000"],["2024-07-24T11:09:41.010000"],["2024-07-24T11:09:42.010000"],["2024-07-24T11:09:43.010000"],["2024-07-24T11:09:44.010000"],["2024-07-24T11:09:45.010000"],["2024-07-24T11:09:46.010000"],["2024-07-24T11:09:47.010000"],["2024-07-24T11:09:48.010000"],["2024-07-24T11:09:49.010000"],["2024-07-24T11:09:50.010000"],["2024-07-24T11:09:51.010000"],["2024-07-24T11:09:52.010000"],["2024-07-24T11:09:53.010000"],["2024-07-24T11:09:54.010000"],["2024-07-24T11:09:55.010000"],["2024-07-24T11:09:56.010000"],["2024-07-24T11:09:57.010000"],["2024-07-24T11:09:58.010000"],["2024-07-24T11:09:59.010000"],["2024-07-24T11:10:00.010000"],["2024-07-24T11:10:01.010000"],["2024-07-24T11:10:02.010000"],["2024-07-24T11:10:03.010000"],["2024-07-24T11:10:04.010000"],["2024-07-24T11:10:05.010000"],["2024-07-24T11:10:06.010000"],["2024-07-24T11:10:07.010000"],["2024-07-24T11:10:08.010000"],["2024-07-24T11:10:09.010000"],["2024-07-24T11:10:10.010000"],["2024-07-24T11:10:11.010000"],["2024-07-24T11:10:12.010000"],["2024-07-24T11:10:13.010000"],["2024-07-24T11:10:14.010000"],["2024-07-24T11:10:15.010000"],["2024-07-24T11:10:16.010000"],["2024-07-24T11:10:17.010000"],["2024-07-24T11:10:18.010000"],["2024-07-24T11:10:19.010000"],["2024-07-24T11:10:20.010000"],["2024-07-24T11:10:21.010000"],["2024-07-24T11:10:22.010000"],["2024-07-24T11:10:23.010000"],["2024-07-24T11:10:24.010000"],["2024-07-24T11:10:25.010000"],["2024-07-24T11:10:26.010000"],["2024-07-24T11:10:27.010000"],["2024-07-24T11:10:28.010000"],["2024-07-24T11:10:29.010000"],["2024-07-24T11:10:30.010000"],["2024-07-24T11:10:31.010000"],["2024-07-24T11:10:32.010000"],["2024-07-24T11:10:33.010000"],["2024-07-24T11:10:34.010000"],["2024-07-24T11:10:35.010000"],["2024-07-24T11:10:36.010000"],["2024-07-24T11:10:37.010000"],["2024-07-24T11:10:38.010000"],["2024-07-24T11:10:39.010000"],["2024-07-24T11:10:40.010000"],["2024-07-24T11:10:41.010000"],["2024-07-24T11:10:42.010000"],["2024-07-24T11:10:43.010000"],["2024-07-24T11:10:44.010000"],["2024-07-24T11:10:45.010000"],["2024-07-24T11:10:46.010000"],["2024-07-24T11:10:47.010000"],["2024-07-24T11:10:48.010000"],["2024-07-24T11:10:49.010000"],["2024-07-24T11:10:50.010000"],["2024-07-24T11:10:51.010000"],["2024-07-24T11:10:52.010000"],["2024-07-24T11:10:53.010000"],["2024-07-24T11:10:54.010000"],["2024-07-24T11:10:55.010000"],["2024-07-24T11:10:56.010000"],["2024-07-24T11:10:57.010000"],["2024-07-24T11:10:58.010000"],["2024-07-24T11:10:59.010000"],["2024-07-24T11:11:00.010000"],["2024-07-24T11:11:01.010000"],["2024-07-24T11:11:02.010000"],["2024-07-24T11:11:03.010000"],["2024-07-24T11:11:04.010000"],["2024-07-24T11:11:05.010000"],["2024-07-24T11:11:06.010000"],["2024-07-24T11:11:07.010000"],["2024-07-24T11:11:08.010000"],["2024-07-24T11:11:09.010000"],["2024-07-24T11:11:10.010000"],["2024-07-24T11:11:11.010000"],["2024-07-24T11:11:12.010000"],["2024-07-24T11:11:13.010000"],["2024-07-24T11:11:14.010000"],["2024-07-24T11:11:15.010000"],["2024-07-24T11:11:16.010000"],["2024-07-24T11:11:17.010000"],["2024-07-24T11:11:18.010000"],["2024-07-24T11:11:19.010000"],["2024-07-24T11:11:20.010000"],["2024-07-24T11:11:21.010000"],["2024-07-24T11:11:22.010000"],["2024-07-24T11:11:23.010000"],["2024-07-24T11:11:24.010000"],["2024-07-24T11:11:25.010000"],["2024-07-24T11:11:26.010000"],["2024-07-24T11:11:27.010000"],["2024-07-24T11:11:28.010000"],["2024-07-24T11:11:29.010000"],["2024-07-24T11:11:30.010000"],["2024-07-24T11:11:31.010000"],["2024-07-24T11:11:32.010000"],["2024-07-24T11:11:33.010000"],["2024-07-24T11:11:34.010000"],["2024-07-24T11:11:35.010000"],["2024-07-24T11:11:36.010000"],["2024-07-24T11:11:37.010000"],["2024-07-24T11:11:38.010000"],["2024-07-24T11:11:39.010000"],["2024-07-24T11:11:40.010000"],["2024-07-24T11:11:41.010000"],["2024-07-24T11:11:42.010000"],["2024-07-24T11:11:43.010000"],["2024-07-24T11:11:44.010000"],["2024-07-24T11:11:45.010000"],["2024-07-24T11:11:46.010000"],["2024-07-24T11:11:47.010000"],["2024-07-24T11:11:48.010000"],["2024-07-24T11:11:49.010000"],["2024-07-24T11:11:50.010000"],["2024-07-24T11:11:51.010000"],["2024-07-24T11:11:52.010000"],["2024-07-24T11:11:53.010000"],["2024-07-24T11:11:54.010000"],["2024-07-24T11:11:55.010000"],["2024-07-24T11:11:56.010000"],["2024-07-24T11:11:57.010000"],["2024-07-24T11:11:58.010000"],["2024-07-24T11:11:59.010000"],["2024-07-24T11:12:00.010000"],["2024-07-24T11:12:01.010000"],["2024-07-24T11:12:02.010000"],["2024-07-24T11:12:03.010000"],["2024-07-24T11:12:04.010000"],["2024-07-24T11:12:05.010000"],["2024-07-24T11:12:06.010000"],["2024-07-24T11:12:07.010000"],["2024-07-24T11:12:08.010000"],["2024-07-24T11:12:09.010000"],["2024-07-24T11:12:10.010000"],["2024-07-24T11:12:11.010000"],["2024-07-24T11:12:12.010000"],["2024-07-24T11:12:13.010000"],["2024-07-24T11:12:14.010000"],["2024-07-24T11:12:15.010000"],["2024-07-24T11:12:16.010000"],["2024-07-24T11:12:17.010000"],["2024-07-24T11:12:18.010000"],["2024-07-24T11:12:19.010000"],["2024-07-24T11:12:20.010000"],["2024-07-24T11:12:21.010000"],["2024-07-24T11:12:22.010000"],["2024-07-24T11:12:23.010000"],["2024-07-24T11:12:24.010000"],["2024-07-24T11:12:25.010000"],["2024-07-24T11:12:26.010000"],["2024-07-24T11:12:27.010000"],["2024-07-24T11:12:28.010000"],["2024-07-24T11:12:29.010000"],["2024-07-24T11:12:30.010000"],["2024-07-24T11:12:31.010000"],["2024-07-24T11:12:32.010000"],["2024-07-24T11:12:33.010000"],["2024-07-24T11:12:34.010000"],["2024-07-24T11:12:35.010000"],["2024-07-24T11:12:36.010000"],["2024-07-24T11:12:37.010000"],["2024-07-24T11:12:38.010000"],["2024-07-24T11:12:39.010000"],["2024-07-24T11:12:40.010000"],["2024-07-24T11:12:41.010000"],["2024-07-24T11:12:42.010000"],["2024-07-24T11:12:43.010000"],["2024-07-24T11:12:44.010000"],["2024-07-24T11:12:45.010000"],["2024-07-24T11:12:46.010000"],["2024-07-24T11:12:47.010000"],["2024-07-24T11:12:48.010000"],["2024-07-24T11:12:49.010000"],["2024-07-24T11:12:50.010000"],["2024-07-24T11:12:51.010000"],["2024-07-24T11:12:52.010000"],["2024-07-24T11:12:53.010000"],["2024-07-24T11:12:54.010000"],["2024-07-24T11:12:55.010000"],["2024-07-24T11:12:56.010000"],["2024-07-24T11:12:57.010000"],["2024-07-24T11:12:58.010000"],["2024-07-24T11:12:59.010000"],["2024-07-24T11:13:00.010000"],["2024-07-24T11:13:01.010000"],["2024-07-24T11:13:02.010000"],["2024-07-24T11:13:03.010000"],["2024-07-24T11:13:04.010000"],["2024-07-24T11:13:05.010000"],["2024-07-24T11:13:06.010000"],["2024-07-24T11:13:07.010000"],["2024-07-24T11:13:08.010000"],["2024-07-24T11:13:09.010000"],["2024-07-24T11:13:10.010000"],["2024-07-24T11:13:11.010000"],["2024-07-24T11:13:12.010000"],["2024-07-24T11:13:13.010000"],["2024-07-24T11:13:14.010000"],["2024-07-24T11:13:15.010000"],["2024-07-24T11:13:16.010000"],["2024-07-24T11:13:17.010000"],["2024-07-24T11:13:18.010000"],["2024-07-24T11:13:19.010000"],["2024-07-24T11:13:20.010000"],["2024-07-24T11:13:21.010000"],["2024-07-24T11:13:22.010000"],["2024-07-24T11:13:23.010000"],["2024-07-24T11:13:24.010000"],["2024-07-24T11:13:25.010000"],["2024-07-24T11:13:26.010000"],["2024-07-24T11:13:27.010000"],["2024-07-24T11:13:28.010000"],["2024-07-24T11:13:29.010000"],["2024-07-24T11:13:30.010000"],["2024-07-24T11:13:31.010000"],["2024-07-24T11:13:32.010000"],["2024-07-24T11:13:33.010000"],["2024-07-24T11:13:34.010000"],["2024-07-24T11:13:35.010000"],["2024-07-24T11:13:36.010000"],["2024-07-24T11:13:37.010000"],["2024-07-24T11:13:38.010000"],["2024-07-24T11:13:39.010000"],["2024-07-24T11:13:40.010000"],["2024-07-24T11:13:41.010000"],["2024-07-24T11:13:42.010000"],["2024-07-24T11:13:43.010000"],["2024-07-24T11:13:44.010000"],["2024-07-24T11:13:45.010000"],["2024-07-24T11:13:46.010000"],["2024-07-24T11:13:47.010000"],["2024-07-24T11:13:48.010000"],["2024-07-24T11:13:49.010000"],["2024-07-24T11:13:50.010000"],["2024-07-24T11:13:51.010000"],["2024-07-24T11:13:52.010000"],["2024-07-24T11:13:53.010000"],["2024-07-24T11:13:54.010000"],["2024-07-24T11:13:55.010000"],["2024-07-24T11:13:56.010000"],["2024-07-24T11:13:57.010000"],["2024-07-24T11:13:58.010000"],["2024-07-24T11:13:59.010000"],["2024-07-24T11:14:00.010000"],["2024-07-24T11:14:01.010000"],["2024-07-24T11:14:02.010000"],["2024-07-24T11:14:03.010000"],["2024-07-24T11:14:04.010000"],["2024-07-24T11:14:05.010000"],["2024-07-24T11:14:06.010000"],["2024-07-24T11:14:07.010000"],["2024-07-24T11:14:08.010000"],["2024-07-24T11:14:09.010000"],["2024-07-24T11:14:10.010000"],["2024-07-24T11:14:11.010000"],["2024-07-24T11:14:12.010000"],["2024-07-24T11:14:13.010000"],["2024-07-24T11:14:14.010000"],["2024-07-24T11:14:15.010000"],["2024-07-24T11:14:16.010000"],["2024-07-24T11:14:17.010000"],["2024-07-24T11:14:18.010000"],["2024-07-24T11:14:19.010000"],["2024-07-24T11:14:20.010000"],["2024-07-24T11:14:21.010000"],["2024-07-24T11:14:22.010000"],["2024-07-24T11:14:23.010000"],["2024-07-24T11:14:24.010000"],["2024-07-24T11:14:25.010000"],["2024-07-24T11:14:26.010000"],["2024-07-24T11:14:27.010000"],["2024-07-24T11:14:28.010000"],["2024-07-24T11:14:29.010000"],["2024-07-24T11:14:30.010000"],["2024-07-24T11:14:31.010000"],["2024-07-24T11:14:32.010000"],["2024-07-24T11:14:33.010000"],["2024-07-24T11:14:34.010000"],["2024-07-24T11:14:35.010000"],["2024-07-24T11:14:36.010000"],["2024-07-24T11:14:37.010000"],["2024-07-24T11:14:38.010000"],["2024-07-24T11:14:39.010000"],["2024-07-24T11:14:40.010000"],["2024-07-24T11:14:41.010000"],["2024-07-24T11:14:42.010000"],["2024-07-24T11:14:43.010000"],["2024-07-24T11:14:44.010000"],["2024-07-24T11:14:45.010000"],["2024-07-24T11:14:46.010000"],["2024-07-24T11:14:47.010000"],["2024-07-24T11:14:48.010000"],["2024-07-24T11:14:49.010000"],["2024-07-24T11:14:50.010000"],["2024-07-24T11:14:51.010000"],["2024-07-24T11:14:52.010000"],["2024-07-24T11:14:53.010000"],["2024-07-24T11:14:54.010000"],["2024-07-24T11:14:55.010000"],["2024-07-24T11:14:56.010000"],["2024-07-24T11:14:57.010000"],["2024-07-24T11:14:58.010000"],["2024-07-24T11:14:59.010000"],["2024-07-24T11:15:00.010000"],["2024-07-24T11:15:01.010000"],["2024-07-24T11:15:02.010000"],["2024-07-24T11:15:03.010000"],["2024-07-24T11:15:04.010000"],["2024-07-24T11:15:05.010000"],["2024-07-24T11:15:06.010000"],["2024-07-24T11:15:07.010000"],["2024-07-24T11:15:08.010000"],["2024-07-24T11:15:09.010000"],["2024-07-24T11:15:10.010000"],["2024-07-24T11:15:11.010000"],["2024-07-24T11:15:12.010000"],["2024-07-24T11:15:13.010000"],["2024-07-24T11:15:14.010000"],["2024-07-24T11:15:15.010000"],["2024-07-24T11:15:16.010000"],["2024-07-24T11:15:17.010000"],["2024-07-24T11:15:18.010000"],["2024-07-24T11:15:19.010000"],["2024-07-24T11:15:20.010000"],["2024-07-24T11:15:21.010000"],["2024-07-24T11:15:22.010000"],["2024-07-24T11:15:23.010000"],["2024-07-24T11:15:24.010000"],["2024-07-24T11:15:25.010000"],["2024-07-24T11:15:26.010000"],["2024-07-24T11:15:27.010000"],["2024-07-24T11:15:28.010000"],["2024-07-24T11:15:29.010000"],["2024-07-24T11:15:30.010000"],["2024-07-24T11:15:31.010000"],["2024-07-24T11:15:32.010000"],["2024-07-24T11:15:33.010000"],["2024-07-24T11:15:34.010000"],["2024-07-24T11:15:35.010000"],["2024-07-24T11:15:36.010000"],["2024-07-24T11:15:37.010000"],["2024-07-24T11:15:38.010000"],["2024-07-24T11:15:39.010000"],["2024-07-24T11:15:40.010000"],["2024-07-24T11:15:41.010000"],["2024-07-24T11:15:42.010000"],["2024-07-24T11:15:43.010000"],["2024-07-24T11:15:44.010000"],["2024-07-24T11:15:45.010000"],["2024-07-24T11:15:46.010000"],["2024-07-24T11:15:47.010000"],["2024-07-24T11:15:48.010000"],["2024-07-24T11:15:49.010000"],["2024-07-24T11:15:50.010000"],["2024-07-24T11:15:51.010000"],["2024-07-24T11:15:52.010000"],["2024-07-24T11:15:53.010000"],["2024-07-24T11:15:54.010000"],["2024-07-24T11:15:55.010000"],["2024-07-24T11:15:56.010000"],["2024-07-24T11:15:57.010000"],["2024-07-24T11:15:58.010000"],["2024-07-24T11:15:59.010000"],["2024-07-24T11:16:00.010000"],["2024-07-24T11:16:01.010000"],["2024-07-24T11:16:02.010000"],["2024-07-24T11:16:03.010000"],["2024-07-24T11:16:04.010000"],["2024-07-24T11:16:05.010000"],["2024-07-24T11:16:06.010000"],["2024-07-24T11:16:07.010000"],["2024-07-24T11:16:08.010000"],["2024-07-24T11:16:09.010000"],["2024-07-24T11:16:10.010000"],["2024-07-24T11:16:11.010000"],["2024-07-24T11:16:12.010000"],["2024-07-24T11:16:13.010000"],["2024-07-24T11:16:14.010000"],["2024-07-24T11:16:15.010000"],["2024-07-24T11:16:16.010000"],["2024-07-24T11:16:17.010000"],["2024-07-24T11:16:18.010000"],["2024-07-24T11:16:19.010000"],["2024-07-24T11:16:20.010000"],["2024-07-24T11:16:21.010000"],["2024-07-24T11:16:22.010000"],["2024-07-24T11:16:23.010000"],["2024-07-24T11:16:24.010000"],["2024-07-24T11:16:25.010000"],["2024-07-24T11:16:26.010000"],["2024-07-24T11:16:27.010000"],["2024-07-24T11:16:28.010000"],["2024-07-24T11:16:29.010000"],["2024-07-24T11:16:30.010000"],["2024-07-24T11:16:31.010000"],["2024-07-24T11:16:32.010000"],["2024-07-24T11:16:33.010000"],["2024-07-24T11:16:34.010000"],["2024-07-24T11:16:35.010000"],["2024-07-24T11:16:36.010000"],["2024-07-24T11:16:37.010000"],["2024-07-24T11:16:38.010000"],["2024-07-24T11:16:39.010000"],["2024-07-24T11:16:40.010000"],["2024-07-24T11:16:41.010000"],["2024-07-24T11:16:42.010000"],["2024-07-24T11:16:43.010000"],["2024-07-24T11:16:44.010000"],["2024-07-24T11:16:45.010000"],["2024-07-24T11:16:46.010000"],["2024-07-24T11:16:47.010000"],["2024-07-24T11:16:48.010000"],["2024-07-24T11:16:49.010000"],["2024-07-24T11:16:50.010000"],["2024-07-24T11:16:51.010000"],["2024-07-24T11:16:52.010000"],["2024-07-24T11:16:53.010000"],["2024-07-24T11:16:54.010000"],["2024-07-24T11:16:55.010000"],["2024-07-24T11:16:56.010000"],["2024-07-24T11:16:57.010000"],["2024-07-24T11:16:58.010000"],["2024-07-24T11:16:59.010000"],["2024-07-24T11:17:00.010000"],["2024-07-24T11:17:01.010000"],["2024-07-24T11:17:02.010000"],["2024-07-24T11:17:03.010000"],["2024-07-24T11:17:04.010000"],["2024-07-24T11:17:05.010000"],["2024-07-24T11:17:06.010000"],["2024-07-24T11:17:07.010000"],["2024-07-24T11:17:08.010000"],["2024-07-24T11:17:09.010000"],["2024-07-24T11:17:10.010000"],["2024-07-24T11:17:11.010000"],["2024-07-24T11:17:12.010000"],["2024-07-24T11:17:13.010000"],["2024-07-24T11:17:14.010000"],["2024-07-24T11:17:15.010000"],["2024-07-24T11:17:16.010000"],["2024-07-24T11:17:17.010000"],["2024-07-24T11:17:18.010000"],["2024-07-24T11:17:19.010000"],["2024-07-24T11:17:20.010000"],["2024-07-24T11:17:21.010000"],["2024-07-24T11:17:22.010000"],["2024-07-24T11:17:23.010000"],["2024-07-24T11:17:24.010000"],["2024-07-24T11:17:25.010000"],["2024-07-24T11:17:26.010000"],["2024-07-24T11:17:27.010000"],["2024-07-24T11:17:28.010000"],["2024-07-24T11:17:29.010000"],["2024-07-24T11:17:30.010000"],["2024-07-24T11:17:31.010000"],["2024-07-24T11:17:32.010000"],["2024-07-24T11:17:33.010000"],["2024-07-24T11:17:34.010000"],["2024-07-24T11:17:35.010000"],["2024-07-24T11:17:36.010000"],["2024-07-24T11:17:37.010000"],["2024-07-24T11:17:38.010000"],["2024-07-24T11:17:39.010000"],["2024-07-24T11:17:40.010000"],["2024-07-24T11:17:41.010000"],["2024-07-24T11:17:42.010000"],["2024-07-24T11:17:43.010000"],["2024-07-24T11:17:44.010000"],["2024-07-24T11:17:45.010000"],["2024-07-24T11:17:46.010000"],["2024-07-24T11:17:47.010000"],["2024-07-24T11:17:48.010000"],["2024-07-24T11:17:49.010000"],["2024-07-24T11:17:50.010000"],["2024-07-24T11:17:51.010000"],["2024-07-24T11:17:52.010000"],["2024-07-24T11:17:53.010000"],["2024-07-24T11:17:54.010000"],["2024-07-24T11:17:55.010000"],["2024-07-24T11:17:56.010000"],["2024-07-24T11:17:57.010000"],["2024-07-24T11:17:58.010000"],["2024-07-24T11:17:59.010000"],["2024-07-24T11:18:00.010000"],["2024-07-24T11:18:01.010000"],["2024-07-24T11:18:02.010000"],["2024-07-24T11:18:03.010000"],["2024-07-24T11:18:04.010000"],["2024-07-24T11:18:05.010000"],["2024-07-24T11:18:06.010000"],["2024-07-24T11:18:07.010000"],["2024-07-24T11:18:08.010000"],["2024-07-24T11:18:09.010000"],["2024-07-24T11:18:10.010000"],["2024-07-24T11:18:11.010000"],["2024-07-24T11:18:12.010000"],["2024-07-24T11:18:13.010000"],["2024-07-24T11:18:14.010000"],["2024-07-24T11:18:15.010000"],["2024-07-24T11:18:16.010000"],["2024-07-24T11:18:17.010000"],["2024-07-24T11:18:18.010000"],["2024-07-24T11:18:19.010000"],["2024-07-24T11:18:20.010000"],["2024-07-24T11:18:21.010000"],["2024-07-24T11:18:22.010000"],["2024-07-24T11:18:23.010000"],["2024-07-24T11:18:24.010000"],["2024-07-24T11:18:25.010000"],["2024-07-24T11:18:26.010000"],["2024-07-24T11:18:27.010000"],["2024-07-24T11:18:28.010000"],["2024-07-24T11:18:29.010000"],["2024-07-24T11:18:30.010000"],["2024-07-24T11:18:31.010000"],["2024-07-24T11:18:32.010000"],["2024-07-24T11:18:33.010000"],["2024-07-24T11:18:34.010000"],["2024-07-24T11:18:35.010000"],["2024-07-24T11:18:36.010000"],["2024-07-24T11:18:37.010000"],["2024-07-24T11:18:38.010000"],["2024-07-24T11:18:39.010000"],["2024-07-24T11:18:40.010000"],["2024-07-24T11:18:41.010000"],["2024-07-24T11:18:42.010000"],["2024-07-24T11:18:43.010000"],["2024-07-24T11:18:44.010000"],["2024-07-24T11:18:45.010000"],["2024-07-24T11:18:46.010000"],["2024-07-24T11:18:47.010000"],["2024-07-24T11:18:48.010000"],["2024-07-24T11:18:49.010000"],["2024-07-24T11:18:50.010000"],["2024-07-24T11:18:51.010000"],["2024-07-24T11:18:52.010000"],["2024-07-24T11:18:53.010000"],["2024-07-24T11:18:54.010000"],["2024-07-24T11:18:55.010000"],["2024-07-24T11:18:56.010000"],["2024-07-24T11:18:57.010000"],["2024-07-24T11:18:58.010000"],["2024-07-24T11:18:59.010000"],["2024-07-24T11:19:00.010000"],["2024-07-24T11:19:01.010000"],["2024-07-24T11:19:02.010000"],["2024-07-24T11:19:03.010000"],["2024-07-24T11:19:04.010000"],["2024-07-24T11:19:05.010000"],["2024-07-24T11:19:06.010000"],["2024-07-24T11:19:07.010000"],["2024-07-24T11:19:08.010000"],["2024-07-24T11:19:09.010000"],["2024-07-24T11:19:10.010000"],["2024-07-24T11:19:11.010000"],["2024-07-24T11:19:12.010000"],["2024-07-24T11:19:13.010000"],["2024-07-24T11:19:14.010000"],["2024-07-24T11:19:15.010000"],["2024-07-24T11:19:16.010000"],["2024-07-24T11:19:17.010000"],["2024-07-24T11:19:18.010000"],["2024-07-24T11:19:19.010000"],["2024-07-24T11:19:20.010000"],["2024-07-24T11:19:21.010000"],["2024-07-24T11:19:22.010000"],["2024-07-24T11:19:23.010000"],["2024-07-24T11:19:24.010000"],["2024-07-24T11:19:25.010000"],["2024-07-24T11:19:26.010000"],["2024-07-24T11:19:27.010000"],["2024-07-24T11:19:28.010000"],["2024-07-24T11:19:29.010000"],["2024-07-24T11:19:30.010000"],["2024-07-24T11:19:31.010000"],["2024-07-24T11:19:32.010000"],["2024-07-24T11:19:33.010000"],["2024-07-24T11:19:34.010000"],["2024-07-24T11:19:35.010000"],["2024-07-24T11:19:36.010000"],["2024-07-24T11:19:37.010000"],["2024-07-24T11:19:38.010000"],["2024-07-24T11:19:39.010000"],["2024-07-24T11:19:40.010000"],["2024-07-24T11:19:41.010000"],["2024-07-24T11:19:42.010000"],["2024-07-24T11:19:43.010000"],["2024-07-24T11:19:44.010000"],["2024-07-24T11:19:45.010000"],["2024-07-24T11:19:46.010000"],["2024-07-24T11:19:47.010000"],["2024-07-24T11:19:48.010000"],["2024-07-24T11:19:49.010000"],["2024-07-24T11:19:50.010000"],["2024-07-24T11:19:51.010000"],["2024-07-24T11:19:52.010000"],["2024-07-24T11:19:53.010000"],["2024-07-24T11:19:54.010000"],["2024-07-24T11:19:55.010000"],["2024-07-24T11:19:56.010000"],["2024-07-24T11:19:57.010000"],["2024-07-24T11:19:58.010000"],["2024-07-24T11:19:59.010000"],["2024-07-24T11:20:00.010000"],["2024-07-24T11:20:01.010000"],["2024-07-24T11:20:02.010000"],["2024-07-24T11:20:03.010000"],["2024-07-24T11:20:04.010000"],["2024-07-24T11:20:05.010000"],["2024-07-24T11:20:06.010000"],["2024-07-24T11:20:07.010000"],["2024-07-24T11:20:08.010000"],["2024-07-24T11:20:09.010000"],["2024-07-24T11:20:10.010000"],["2024-07-24T11:20:11.010000"],["2024-07-24T11:20:12.010000"],["2024-07-24T11:20:13.010000"],["2024-07-24T11:20:14.010000"],["2024-07-24T11:20:15.010000"],["2024-07-24T11:20:16.010000"],["2024-07-24T11:20:17.010000"],["2024-07-24T11:20:18.010000"],["2024-07-24T11:20:19.010000"],["2024-07-24T11:20:20.010000"],["2024-07-24T11:20:21.010000"],["2024-07-24T11:20:22.010000"],["2024-07-24T11:20:23.010000"],["2024-07-24T11:20:24.010000"],["2024-07-24T11:20:25.010000"],["2024-07-24T11:20:26.010000"],["2024-07-24T11:20:27.010000"],["2024-07-24T11:20:28.010000"],["2024-07-24T11:20:29.010000"],["2024-07-24T11:20:30.010000"],["2024-07-24T11:20:31.010000"],["2024-07-24T11:20:32.010000"],["2024-07-24T11:20:33.010000"],["2024-07-24T11:20:34.010000"],["2024-07-24T11:20:35.010000"],["2024-07-24T11:20:36.010000"],["2024-07-24T11:20:37.010000"],["2024-07-24T11:20:38.010000"],["2024-07-24T11:20:39.010000"],["2024-07-24T11:20:40.010000"],["2024-07-24T11:20:41.010000"],["2024-07-24T11:20:42.010000"],["2024-07-24T11:20:43.010000"],["2024-07-24T11:20:44.010000"],["2024-07-24T11:20:45.010000"],["2024-07-24T11:20:46.010000"],["2024-07-24T11:20:47.010000"],["2024-07-24T11:20:48.010000"],["2024-07-24T11:20:49.010000"],["2024-07-24T11:20:50.010000"],["2024-07-24T11:20:51.010000"],["2024-07-24T11:20:52.010000"],["2024-07-24T11:20:53.010000"],["2024-07-24T11:20:54.010000"],["2024-07-24T11:20:55.010000"],["2024-07-24T11:20:56.010000"],["2024-07-24T11:20:57.010000"],["2024-07-24T11:20:58.010000"],["2024-07-24T11:20:59.010000"],["2024-07-24T11:21:00.010000"],["2024-07-24T11:21:01.010000"],["2024-07-24T11:21:02.010000"],["2024-07-24T11:21:03.010000"],["2024-07-24T11:21:04.010000"],["2024-07-24T11:21:05.010000"],["2024-07-24T11:21:06.010000"],["2024-07-24T11:21:07.010000"],["2024-07-24T11:21:08.010000"],["2024-07-24T11:21:09.010000"],["2024-07-24T11:21:10.010000"],["2024-07-24T11:21:11.010000"],["2024-07-24T11:21:12.010000"],["2024-07-24T11:21:13.010000"],["2024-07-24T11:21:14.010000"],["2024-07-24T11:21:15.010000"],["2024-07-24T11:21:16.010000"],["2024-07-24T11:21:17.010000"],["2024-07-24T11:21:18.010000"],["2024-07-24T11:21:19.010000"],["2024-07-24T11:21:20.010000"],["2024-07-24T11:21:21.010000"],["2024-07-24T11:21:22.010000"],["2024-07-24T11:21:23.010000"],["2024-07-24T11:21:24.010000"],["2024-07-24T11:21:25.010000"],["2024-07-24T11:21:26.010000"],["2024-07-24T11:21:27.010000"],["2024-07-24T11:21:28.010000"],["2024-07-24T11:21:29.010000"],["2024-07-24T11:21:30.010000"],["2024-07-24T11:21:31.010000"],["2024-07-24T11:21:32.010000"],["2024-07-24T11:21:33.010000"],["2024-07-24T11:21:34.010000"],["2024-07-24T11:21:35.010000"],["2024-07-24T11:21:36.010000"],["2024-07-24T11:21:37.010000"],["2024-07-24T11:21:38.010000"],["2024-07-24T11:21:39.010000"],["2024-07-24T11:21:40.010000"],["2024-07-24T11:21:41.010000"],["2024-07-24T11:21:42.010000"],["2024-07-24T11:21:43.010000"],["2024-07-24T11:21:44.010000"],["2024-07-24T11:21:45.010000"],["2024-07-24T11:21:46.010000"],["2024-07-24T11:21:47.010000"],["2024-07-24T11:21:48.010000"],["2024-07-24T11:21:49.010000"],["2024-07-24T11:21:50.010000"],["2024-07-24T11:21:51.010000"],["2024-07-24T11:21:52.010000"],["2024-07-24T11:21:53.010000"],["2024-07-24T11:21:54.010000"],["2024-07-24T11:21:55.010000"],["2024-07-24T11:21:56.010000"],["2024-07-24T11:21:57.010000"],["2024-07-24T11:21:58.010000"],["2024-07-24T11:21:59.010000"],["2024-07-24T11:22:00.010000"],["2024-07-24T11:22:01.010000"],["2024-07-24T11:22:02.010000"],["2024-07-24T11:22:03.010000"],["2024-07-24T11:22:04.010000"],["2024-07-24T11:22:05.010000"],["2024-07-24T11:22:06.010000"],["2024-07-24T11:22:07.010000"],["2024-07-24T11:22:08.010000"],["2024-07-24T11:22:09.010000"],["2024-07-24T11:22:10.010000"],["2024-07-24T11:22:11.010000"],["2024-07-24T11:22:12.010000"],["2024-07-24T11:22:13.010000"],["2024-07-24T11:22:14.010000"],["2024-07-24T11:22:15.010000"],["2024-07-24T11:22:16.010000"],["2024-07-24T11:22:17.010000"],["2024-07-24T11:22:18.010000"],["2024-07-24T11:22:19.010000"],["2024-07-24T11:22:20.010000"],["2024-07-24T11:22:21.010000"],["2024-07-24T11:22:22.010000"],["2024-07-24T11:22:23.010000"],["2024-07-24T11:22:24.010000"],["2024-07-24T11:22:25.010000"],["2024-07-24T11:22:26.010000"],["2024-07-24T11:22:27.010000"],["2024-07-24T11:22:28.010000"],["2024-07-24T11:22:29.010000"],["2024-07-24T11:22:30.010000"],["2024-07-24T11:22:31.010000"],["2024-07-24T11:22:32.010000"],["2024-07-24T11:22:33.010000"],["2024-07-24T11:22:34.010000"],["2024-07-24T11:22:35.010000"],["2024-07-24T11:22:36.010000"],["2024-07-24T11:22:37.010000"],["2024-07-24T11:22:38.010000"],["2024-07-24T11:22:39.010000"],["2024-07-24T11:22:40.010000"],["2024-07-24T11:22:41.010000"],["2024-07-24T11:22:42.010000"],["2024-07-24T11:22:43.010000"],["2024-07-24T11:22:44.010000"],["2024-07-24T11:22:45.010000"],["2024-07-24T11:22:46.010000"],["2024-07-24T11:22:47.010000"],["2024-07-24T11:22:48.010000"],["2024-07-24T11:22:49.010000"],["2024-07-24T11:22:50.010000"],["2024-07-24T11:22:51.010000"],["2024-07-24T11:22:52.010000"],["2024-07-24T11:22:53.010000"],["2024-07-24T11:22:54.010000"],["2024-07-24T11:22:55.010000"],["2024-07-24T11:22:56.010000"],["2024-07-24T11:22:57.010000"],["2024-07-24T11:22:58.010000"],["2024-07-24T11:22:59.010000"],["2024-07-24T11:23:00.010000"],["2024-07-24T11:23:01.010000"],["2024-07-24T11:23:02.010000"],["2024-07-24T11:23:03.010000"],["2024-07-24T11:23:04.010000"],["2024-07-24T11:23:05.010000"],["2024-07-24T11:23:06.010000"],["2024-07-24T11:23:07.010000"],["2024-07-24T11:23:08.010000"],["2024-07-24T11:23:09.010000"],["2024-07-24T11:23:10.010000"],["2024-07-24T11:23:11.010000"],["2024-07-24T11:23:12.010000"],["2024-07-24T11:23:13.010000"],["2024-07-24T11:23:14.010000"],["2024-07-24T11:23:15.010000"],["2024-07-24T11:23:16.010000"],["2024-07-24T11:23:17.010000"],["2024-07-24T11:23:18.010000"],["2024-07-24T11:23:19.010000"],["2024-07-24T11:23:20.010000"],["2024-07-24T11:23:21.010000"],["2024-07-24T11:23:22.010000"],["2024-07-24T11:23:23.010000"],["2024-07-24T11:23:24.010000"],["2024-07-24T11:23:25.010000"],["2024-07-24T11:23:26.010000"],["2024-07-24T11:23:27.010000"],["2024-07-24T11:23:28.010000"],["2024-07-24T11:23:29.010000"],["2024-07-24T11:23:30.010000"],["2024-07-24T11:23:31.010000"],["2024-07-24T11:23:32.010000"],["2024-07-24T11:23:33.010000"],["2024-07-24T11:23:34.010000"],["2024-07-24T11:23:35.010000"],["2024-07-24T11:23:36.010000"],["2024-07-24T11:23:37.010000"],["2024-07-24T11:23:38.010000"],["2024-07-24T11:23:39.010000"],["2024-07-24T11:23:40.010000"],["2024-07-24T11:23:41.010000"],["2024-07-24T11:23:42.010000"],["2024-07-24T11:23:43.010000"],["2024-07-24T11:23:44.010000"],["2024-07-24T11:23:45.010000"],["2024-07-24T11:23:46.010000"],["2024-07-24T11:23:47.010000"],["2024-07-24T11:23:48.010000"],["2024-07-24T11:23:49.010000"],["2024-07-24T11:23:50.010000"],["2024-07-24T11:23:51.010000"],["2024-07-24T11:23:52.010000"],["2024-07-24T11:23:53.010000"],["2024-07-24T11:23:54.010000"],["2024-07-24T11:23:55.010000"],["2024-07-24T11:23:56.010000"],["2024-07-24T11:23:57.010000"],["2024-07-24T11:23:58.010000"],["2024-07-24T11:23:59.010000"],["2024-07-24T11:24:00.010000"],["2024-07-24T11:24:01.010000"],["2024-07-24T11:24:02.010000"],["2024-07-24T11:24:03.010000"],["2024-07-24T11:24:04.010000"],["2024-07-24T11:24:05.010000"],["2024-07-24T11:24:06.010000"],["2024-07-24T11:24:07.010000"],["2024-07-24T11:24:08.010000"],["2024-07-24T11:24:09.010000"],["2024-07-24T11:24:10.010000"],["2024-07-24T11:24:11.010000"],["2024-07-24T11:24:12.010000"],["2024-07-24T11:24:13.010000"],["2024-07-24T11:24:14.010000"],["2024-07-24T11:24:15.010000"],["2024-07-24T11:24:16.010000"],["2024-07-24T11:24:17.010000"],["2024-07-24T11:24:18.010000"],["2024-07-24T11:24:19.010000"],["2024-07-24T11:24:20.010000"],["2024-07-24T11:24:21.010000"],["2024-07-24T11:24:22.010000"],["2024-07-24T11:24:23.010000"],["2024-07-24T11:24:24.010000"],["2024-07-24T11:24:25.010000"],["2024-07-24T11:24:26.010000"],["2024-07-24T11:24:27.010000"],["2024-07-24T11:24:28.010000"],["2024-07-24T11:24:29.010000"],["2024-07-24T11:24:30.010000"],["2024-07-24T11:24:31.010000"],["2024-07-24T11:24:32.010000"],["2024-07-24T11:24:33.010000"],["2024-07-24T11:24:34.010000"],["2024-07-24T11:24:35.010000"],["2024-07-24T11:24:36.010000"],["2024-07-24T11:24:37.010000"],["2024-07-24T11:24:38.010000"],["2024-07-24T11:24:39.010000"],["2024-07-24T11:24:40.010000"],["2024-07-24T11:24:41.010000"],["2024-07-24T11:24:42.010000"],["2024-07-24T11:24:43.010000"],["2024-07-24T11:24:44.010000"],["2024-07-24T11:24:45.010000"],["2024-07-24T11:24:46.010000"],["2024-07-24T11:24:47.010000"],["2024-07-24T11:24:48.010000"],["2024-07-24T11:24:49.010000"],["2024-07-24T11:24:50.010000"],["2024-07-24T11:24:51.010000"],["2024-07-24T11:24:52.010000"],["2024-07-24T11:24:53.010000"],["2024-07-24T11:24:54.010000"],["2024-07-24T11:24:55.010000"],["2024-07-24T11:24:56.010000"],["2024-07-24T11:24:57.010000"],["2024-07-24T11:24:58.010000"],["2024-07-24T11:24:59.010000"],["2024-07-24T11:25:00.010000"],["2024-07-24T11:25:01.010000"],["2024-07-24T11:25:02.010000"],["2024-07-24T11:25:03.010000"],["2024-07-24T11:25:04.010000"],["2024-07-24T11:25:05.010000"],["2024-07-24T11:25:06.010000"],["2024-07-24T11:25:07.010000"],["2024-07-24T11:25:08.010000"],["2024-07-24T11:25:09.010000"],["2024-07-24T11:25:10.010000"],["2024-07-24T11:25:11.010000"],["2024-07-24T11:25:12.010000"],["2024-07-24T11:25:13.010000"],["2024-07-24T11:25:14.010000"],["2024-07-24T11:25:15.010000"],["2024-07-24T11:25:16.010000"],["2024-07-24T11:25:17.010000"],["2024-07-24T11:25:18.010000"],["2024-07-24T11:25:19.010000"],["2024-07-24T11:25:20.010000"],["2024-07-24T11:25:21.010000"],["2024-07-24T11:25:22.010000"],["2024-07-24T11:25:23.010000"],["2024-07-24T11:25:24.010000"],["2024-07-24T11:25:25.010000"],["2024-07-24T11:25:26.010000"],["2024-07-24T11:25:27.010000"],["2024-07-24T11:25:28.010000"],["2024-07-24T11:25:29.010000"],["2024-07-24T11:25:30.010000"],["2024-07-24T11:25:31.010000"],["2024-07-24T11:25:32.010000"],["2024-07-24T11:25:33.010000"],["2024-07-24T11:25:34.010000"],["2024-07-24T11:25:35.010000"],["2024-07-24T11:25:36.010000"],["2024-07-24T11:25:37.010000"],["2024-07-24T11:25:38.010000"],["2024-07-24T11:25:39.010000"],["2024-07-24T11:25:40.010000"],["2024-07-24T11:25:41.010000"],["2024-07-24T11:25:42.010000"],["2024-07-24T11:25:43.010000"],["2024-07-24T11:25:44.010000"],["2024-07-24T11:25:45.010000"],["2024-07-24T11:25:46.010000"],["2024-07-24T11:25:47.010000"],["2024-07-24T11:25:48.010000"],["2024-07-24T11:25:49.010000"],["2024-07-24T11:25:50.010000"],["2024-07-24T11:25:51.010000"],["2024-07-24T11:25:52.010000"],["2024-07-24T11:25:53.010000"],["2024-07-24T11:25:54.010000"],["2024-07-24T11:25:55.010000"],["2024-07-24T11:25:56.010000"],["2024-07-24T11:25:57.010000"],["2024-07-24T11:25:58.010000"],["2024-07-24T11:25:59.010000"],["2024-07-24T11:26:00.010000"],["2024-07-24T11:26:01.010000"],["2024-07-24T11:26:02.010000"],["2024-07-24T11:26:03.010000"],["2024-07-24T11:26:04.010000"],["2024-07-24T11:26:05.010000"],["2024-07-24T11:26:06.010000"],["2024-07-24T11:26:07.010000"],["2024-07-24T11:26:08.010000"],["2024-07-24T11:26:09.010000"],["2024-07-24T11:26:10.010000"],["2024-07-24T11:26:11.010000"],["2024-07-24T11:26:12.010000"],["2024-07-24T11:26:13.010000"],["2024-07-24T11:26:14.010000"],["2024-07-24T11:26:15.010000"],["2024-07-24T11:26:16.010000"],["2024-07-24T11:26:17.010000"],["2024-07-24T11:26:18.010000"],["2024-07-24T11:26:19.010000"],["2024-07-24T11:26:20.010000"],["2024-07-24T11:26:21.010000"],["2024-07-24T11:26:22.010000"],["2024-07-24T11:26:23.010000"],["2024-07-24T11:26:24.010000"],["2024-07-24T11:26:25.010000"],["2024-07-24T11:26:26.010000"],["2024-07-24T11:26:27.010000"],["2024-07-24T11:26:28.010000"],["2024-07-24T11:26:29.010000"],["2024-07-24T11:26:30.010000"],["2024-07-24T11:26:31.010000"],["2024-07-24T11:26:32.010000"],["2024-07-24T11:26:33.010000"],["2024-07-24T11:26:34.010000"],["2024-07-24T11:26:35.010000"],["2024-07-24T11:26:36.010000"],["2024-07-24T11:26:37.010000"],["2024-07-24T11:26:38.010000"],["2024-07-24T11:26:39.010000"],["2024-07-24T11:26:40.010000"],["2024-07-24T11:26:41.010000"],["2024-07-24T11:26:42.010000"],["2024-07-24T11:26:43.010000"],["2024-07-24T11:26:44.010000"],["2024-07-24T11:26:45.010000"],["2024-07-24T11:26:46.010000"],["2024-07-24T11:26:47.010000"],["2024-07-24T11:26:48.010000"],["2024-07-24T11:26:49.010000"],["2024-07-24T11:26:50.010000"],["2024-07-24T11:26:51.010000"],["2024-07-24T11:26:52.010000"],["2024-07-24T11:26:53.010000"],["2024-07-24T11:26:54.010000"],["2024-07-24T11:26:55.010000"],["2024-07-24T11:26:56.010000"],["2024-07-24T11:26:57.010000"],["2024-07-24T11:26:58.010000"],["2024-07-24T11:26:59.010000"],["2024-07-24T11:27:00.010000"],["2024-07-24T11:27:01.010000"],["2024-07-24T11:27:02.010000"],["2024-07-24T11:27:03.010000"],["2024-07-24T11:27:04.010000"],["2024-07-24T11:27:05.010000"],["2024-07-24T11:27:06.010000"],["2024-07-24T11:27:07.010000"],["2024-07-24T11:27:08.010000"],["2024-07-24T11:27:09.010000"],["2024-07-24T11:27:10.010000"],["2024-07-24T11:27:11.010000"],["2024-07-24T11:27:12.010000"],["2024-07-24T11:27:13.010000"],["2024-07-24T11:27:14.010000"],["2024-07-24T11:27:15.010000"],["2024-07-24T11:27:16.010000"],["2024-07-24T11:27:17.010000"],["2024-07-24T11:27:18.010000"],["2024-07-24T11:27:19.010000"],["2024-07-24T11:27:20.010000"],["2024-07-24T11:27:21.010000"],["2024-07-24T11:27:22.010000"],["2024-07-24T11:27:23.010000"],["2024-07-24T11:27:24.010000"],["2024-07-24T11:27:25.010000"],["2024-07-24T11:27:26.010000"],["2024-07-24T11:27:27.010000"],["2024-07-24T11:27:28.010000"],["2024-07-24T11:27:29.010000"],["2024-07-24T11:27:30.010000"],["2024-07-24T11:27:31.010000"],["2024-07-24T11:27:32.010000"],["2024-07-24T11:27:33.010000"],["2024-07-24T11:27:34.010000"],["2024-07-24T11:27:35.010000"],["2024-07-24T11:27:36.010000"],["2024-07-24T11:27:37.010000"],["2024-07-24T11:27:38.010000"],["2024-07-24T11:27:39.010000"],["2024-07-24T11:27:40.010000"],["2024-07-24T11:27:41.010000"],["2024-07-24T11:27:42.010000"],["2024-07-24T11:27:43.010000"],["2024-07-24T11:27:44.010000"],["2024-07-24T11:27:45.010000"],["2024-07-24T11:27:46.010000"],["2024-07-24T11:27:47.010000"],["2024-07-24T11:27:48.010000"],["2024-07-24T11:27:49.010000"],["2024-07-24T11:27:50.010000"],["2024-07-24T11:27:51.010000"],["2024-07-24T11:27:52.010000"],["2024-07-24T11:27:53.010000"],["2024-07-24T11:27:54.010000"],["2024-07-24T11:27:55.010000"],["2024-07-24T11:27:56.010000"],["2024-07-24T11:27:57.010000"],["2024-07-24T11:27:58.010000"],["2024-07-24T11:27:59.010000"],["2024-07-24T11:28:00.010000"],["2024-07-24T11:28:01.010000"],["2024-07-24T11:28:02.010000"],["2024-07-24T11:28:03.010000"],["2024-07-24T11:28:04.010000"],["2024-07-24T11:28:05.010000"],["2024-07-24T11:28:06.010000"],["2024-07-24T11:28:07.010000"],["2024-07-24T11:28:08.010000"],["2024-07-24T11:28:09.010000"],["2024-07-24T11:28:10.010000"],["2024-07-24T11:28:11.010000"],["2024-07-24T11:28:12.010000"],["2024-07-24T11:28:13.010000"],["2024-07-24T11:28:14.010000"],["2024-07-24T11:28:15.010000"],["2024-07-24T11:28:16.010000"],["2024-07-24T11:28:17.010000"],["2024-07-24T11:28:18.010000"],["2024-07-24T11:28:19.010000"],["2024-07-24T11:28:20.010000"],["2024-07-24T11:28:21.010000"],["2024-07-24T11:28:22.010000"],["2024-07-24T11:28:23.010000"],["2024-07-24T11:28:24.010000"],["2024-07-24T11:28:25.010000"],["2024-07-24T11:28:26.010000"],["2024-07-24T11:28:27.010000"],["2024-07-24T11:28:28.010000"],["2024-07-24T11:28:29.010000"],["2024-07-24T11:28:30.010000"],["2024-07-24T11:28:31.010000"],["2024-07-24T11:28:32.010000"],["2024-07-24T11:28:33.010000"],["2024-07-24T11:28:34.010000"],["2024-07-24T11:28:35.010000"],["2024-07-24T11:28:36.010000"],["2024-07-24T11:28:37.010000"],["2024-07-24T11:28:38.010000"],["2024-07-24T11:28:39.010000"],["2024-07-24T11:28:40.010000"],["2024-07-24T11:28:41.010000"],["2024-07-24T11:28:42.010000"],["2024-07-24T11:28:43.010000"],["2024-07-24T11:28:44.010000"],["2024-07-24T11:28:45.010000"],["2024-07-24T11:28:46.010000"],["2024-07-24T11:28:47.010000"],["2024-07-24T11:28:48.010000"],["2024-07-24T11:28:49.010000"],["2024-07-24T11:28:50.010000"],["2024-07-24T11:28:51.010000"],["2024-07-24T11:28:52.010000"],["2024-07-24T11:28:53.010000"],["2024-07-24T11:28:54.010000"],["2024-07-24T11:28:55.010000"],["2024-07-24T11:28:56.010000"],["2024-07-24T11:28:57.010000"],["2024-07-24T11:28:58.010000"],["2024-07-24T11:28:59.010000"],["2024-07-24T11:29:00.010000"],["2024-07-24T11:29:01.010000"],["2024-07-24T11:29:02.010000"],["2024-07-24T11:29:03.010000"],["2024-07-24T11:29:04.010000"],["2024-07-24T11:29:05.010000"],["2024-07-24T11:29:06.010000"],["2024-07-24T11:29:07.010000"],["2024-07-24T11:29:08.010000"],["2024-07-24T11:29:09.010000"],["2024-07-24T11:29:10.010000"],["2024-07-24T11:29:11.010000"],["2024-07-24T11:29:12.010000"],["2024-07-24T11:29:13.010000"],["2024-07-24T11:29:14.010000"],["2024-07-24T11:29:15.010000"],["2024-07-24T11:29:16.010000"],["2024-07-24T11:29:17.010000"],["2024-07-24T11:29:18.010000"],["2024-07-24T11:29:19.010000"],["2024-07-24T11:29:20.010000"],["2024-07-24T11:29:21.010000"],["2024-07-24T11:29:22.010000"],["2024-07-24T11:29:23.010000"],["2024-07-24T11:29:24.010000"],["2024-07-24T11:29:25.010000"],["2024-07-24T11:29:26.010000"],["2024-07-24T11:29:27.010000"],["2024-07-24T11:29:28.010000"],["2024-07-24T11:29:29.010000"],["2024-07-24T11:29:30.010000"],["2024-07-24T11:29:31.010000"],["2024-07-24T11:29:32.010000"],["2024-07-24T11:29:33.010000"],["2024-07-24T11:29:34.010000"],["2024-07-24T11:29:35.010000"],["2024-07-24T11:29:36.010000"],["2024-07-24T11:29:37.010000"],["2024-07-24T11:29:38.010000"],["2024-07-24T11:29:39.010000"],["2024-07-24T11:29:40.010000"],["2024-07-24T11:29:41.010000"],["2024-07-24T11:29:42.010000"],["2024-07-24T11:29:43.010000"],["2024-07-24T11:29:44.010000"],["2024-07-24T11:29:45.010000"],["2024-07-24T11:29:46.010000"],["2024-07-24T11:29:47.010000"],["2024-07-24T11:29:48.010000"],["2024-07-24T11:29:49.010000"],["2024-07-24T11:29:50.010000"],["2024-07-24T11:29:51.010000"],["2024-07-24T11:29:52.010000"],["2024-07-24T11:29:53.010000"],["2024-07-24T11:29:54.010000"],["2024-07-24T11:29:55.010000"],["2024-07-24T11:29:56.010000"],["2024-07-24T11:29:57.010000"],["2024-07-24T11:29:58.010000"],["2024-07-24T11:29:59.010000"],["2024-07-24T11:30:00.010000"],["2024-07-24T11:30:01.010000"],["2024-07-24T11:30:02.010000"],["2024-07-24T11:30:03.010000"],["2024-07-24T11:30:04.010000"],["2024-07-24T11:30:05.010000"],["2024-07-24T11:30:06.010000"],["2024-07-24T11:30:07.010000"],["2024-07-24T11:30:08.010000"],["2024-07-24T11:30:09.010000"],["2024-07-24T11:30:10.010000"],["2024-07-24T11:30:11.010000"],["2024-07-24T11:30:12.010000"],["2024-07-24T11:30:13.010000"],["2024-07-24T11:30:14.010000"],["2024-07-24T11:30:15.010000"],["2024-07-24T11:30:16.010000"],["2024-07-24T11:30:17.010000"],["2024-07-24T11:30:18.010000"],["2024-07-24T11:30:19.010000"],["2024-07-24T11:30:20.010000"],["2024-07-24T11:30:21.010000"],["2024-07-24T11:30:22.010000"],["2024-07-24T11:30:23.010000"],["2024-07-24T11:30:24.010000"],["2024-07-24T11:30:25.010000"],["2024-07-24T11:30:26.010000"],["2024-07-24T11:30:27.010000"],["2024-07-24T11:30:28.010000"],["2024-07-24T11:30:29.010000"],["2024-07-24T11:30:30.010000"],["2024-07-24T11:30:31.010000"],["2024-07-24T11:30:32.010000"],["2024-07-24T11:30:33.010000"],["2024-07-24T11:30:34.010000"],["2024-07-24T11:30:35.010000"],["2024-07-24T11:30:36.010000"],["2024-07-24T11:30:37.010000"],["2024-07-24T11:30:38.010000"],["2024-07-24T11:30:39.010000"],["2024-07-24T11:30:40.010000"],["2024-07-24T11:30:41.010000"],["2024-07-24T11:30:42.010000"],["2024-07-24T11:30:43.010000"],["2024-07-24T11:30:44.010000"],["2024-07-24T11:30:45.010000"],["2024-07-24T11:30:46.010000"],["2024-07-24T11:30:47.010000"],["2024-07-24T11:30:48.010000"],["2024-07-24T11:30:49.010000"],["2024-07-24T11:30:50.010000"],["2024-07-24T11:30:51.010000"],["2024-07-24T11:30:52.010000"],["2024-07-24T11:30:53.010000"],["2024-07-24T11:30:54.010000"],["2024-07-24T11:30:55.010000"],["2024-07-24T11:30:56.010000"],["2024-07-24T11:30:57.010000"],["2024-07-24T11:30:58.010000"],["2024-07-24T11:30:59.010000"],["2024-07-24T11:31:00.010000"],["2024-07-24T11:31:01.010000"],["2024-07-24T11:31:02.010000"],["2024-07-24T11:31:03.010000"],["2024-07-24T11:31:04.010000"],["2024-07-24T11:31:05.010000"],["2024-07-24T11:31:06.010000"],["2024-07-24T11:31:07.010000"],["2024-07-24T11:31:08.010000"],["2024-07-24T11:31:09.010000"],["2024-07-24T11:31:10.010000"],["2024-07-24T11:31:11.010000"],["2024-07-24T11:31:12.010000"],["2024-07-24T11:31:13.010000"],["2024-07-24T11:31:14.010000"],["2024-07-24T11:31:15.010000"],["2024-07-24T11:31:16.010000"],["2024-07-24T11:31:17.010000"],["2024-07-24T11:31:18.010000"],["2024-07-24T11:31:19.010000"],["2024-07-24T11:31:20.010000"],["2024-07-24T11:31:21.010000"],["2024-07-24T11:31:22.010000"],["2024-07-24T11:31:23.010000"],["2024-07-24T11:31:24.010000"],["2024-07-24T11:31:25.010000"],["2024-07-24T11:31:26.010000"],["2024-07-24T11:31:27.010000"],["2024-07-24T11:31:28.010000"],["2024-07-24T11:31:29.010000"],["2024-07-24T11:31:30.010000"],["2024-07-24T11:31:31.010000"],["2024-07-24T11:31:32.010000"],["2024-07-24T11:31:33.010000"],["2024-07-24T11:31:34.010000"],["2024-07-24T11:31:35.010000"],["2024-07-24T11:31:36.010000"],["2024-07-24T11:31:37.010000"],["2024-07-24T11:31:38.010000"],["2024-07-24T11:31:39.010000"],["2024-07-24T11:31:40.010000"],["2024-07-24T11:31:41.010000"],["2024-07-24T11:31:42.010000"],["2024-07-24T11:31:43.010000"],["2024-07-24T11:31:44.010000"],["2024-07-24T11:31:45.010000"],["2024-07-24T11:31:46.010000"],["2024-07-24T11:31:47.010000"],["2024-07-24T11:31:48.010000"],["2024-07-24T11:31:49.010000"],["2024-07-24T11:31:50.010000"],["2024-07-24T11:31:51.010000"],["2024-07-24T11:31:52.010000"],["2024-07-24T11:31:53.010000"],["2024-07-24T11:31:54.010000"],["2024-07-24T11:31:55.010000"],["2024-07-24T11:31:56.010000"],["2024-07-24T11:31:57.010000"],["2024-07-24T11:31:58.010000"],["2024-07-24T11:31:59.010000"],["2024-07-24T11:32:00.010000"],["2024-07-24T11:32:01.010000"],["2024-07-24T11:32:02.010000"],["2024-07-24T11:32:03.010000"],["2024-07-24T11:32:04.010000"],["2024-07-24T11:32:05.010000"],["2024-07-24T11:32:06.010000"],["2024-07-24T11:32:07.010000"],["2024-07-24T11:32:08.010000"],["2024-07-24T11:32:09.010000"],["2024-07-24T11:32:10.010000"],["2024-07-24T11:32:11.010000"],["2024-07-24T11:32:12.010000"],["2024-07-24T11:32:13.010000"],["2024-07-24T11:32:14.010000"],["2024-07-24T11:32:15.010000"],["2024-07-24T11:32:16.010000"],["2024-07-24T11:32:17.010000"],["2024-07-24T11:32:18.010000"],["2024-07-24T11:32:19.010000"],["2024-07-24T11:32:20.010000"],["2024-07-24T11:32:21.010000"],["2024-07-24T11:32:22.010000"],["2024-07-24T11:32:23.010000"],["2024-07-24T11:32:24.010000"],["2024-07-24T11:32:25.010000"],["2024-07-24T11:32:26.010000"],["2024-07-24T11:32:27.010000"],["2024-07-24T11:32:28.010000"],["2024-07-24T11:32:29.010000"],["2024-07-24T11:32:30.010000"],["2024-07-24T11:32:31.010000"],["2024-07-24T11:32:32.010000"],["2024-07-24T11:32:33.010000"],["2024-07-24T11:32:34.010000"],["2024-07-24T11:32:35.010000"],["2024-07-24T11:32:36.010000"],["2024-07-24T11:32:37.010000"],["2024-07-24T11:32:38.010000"],["2024-07-24T11:32:39.010000"],["2024-07-24T11:32:40.010000"],["2024-07-24T11:32:41.010000"],["2024-07-24T11:32:42.010000"],["2024-07-24T11:32:43.010000"],["2024-07-24T11:32:44.010000"],["2024-07-24T11:32:45.010000"],["2024-07-24T11:32:46.010000"],["2024-07-24T11:32:47.010000"],["2024-07-24T11:32:48.010000"],["2024-07-24T11:32:49.010000"],["2024-07-24T11:32:50.010000"],["2024-07-24T11:32:51.010000"],["2024-07-24T11:32:52.010000"],["2024-07-24T11:32:53.010000"],["2024-07-24T11:32:54.010000"],["2024-07-24T11:32:55.010000"],["2024-07-24T11:32:56.010000"],["2024-07-24T11:32:57.010000"],["2024-07-24T11:32:58.010000"],["2024-07-24T11:32:59.010000"],["2024-07-24T11:33:00.010000"],["2024-07-24T11:33:01.010000"],["2024-07-24T11:33:02.010000"],["2024-07-24T11:33:03.010000"],["2024-07-24T11:33:04.010000"],["2024-07-24T11:33:05.010000"],["2024-07-24T11:33:06.010000"],["2024-07-24T11:33:07.010000"],["2024-07-24T11:33:08.010000"],["2024-07-24T11:33:09.010000"],["2024-07-24T11:33:10.010000"],["2024-07-24T11:33:11.010000"],["2024-07-24T11:33:12.010000"],["2024-07-24T11:33:13.010000"],["2024-07-24T11:33:14.010000"],["2024-07-24T11:33:15.010000"],["2024-07-24T11:33:16.010000"],["2024-07-24T11:33:17.010000"],["2024-07-24T11:33:18.010000"],["2024-07-24T11:33:19.010000"],["2024-07-24T11:33:20.010000"],["2024-07-24T11:33:21.010000"],["2024-07-24T11:33:22.010000"],["2024-07-24T11:33:23.010000"],["2024-07-24T11:33:24.010000"],["2024-07-24T11:33:25.010000"],["2024-07-24T11:33:26.010000"],["2024-07-24T11:33:27.010000"],["2024-07-24T11:33:28.010000"],["2024-07-24T11:33:29.010000"],["2024-07-24T11:33:30.010000"],["2024-07-24T11:33:31.010000"],["2024-07-24T11:33:32.010000"],["2024-07-24T11:33:33.010000"],["2024-07-24T11:33:34.010000"],["2024-07-24T11:33:35.010000"],["2024-07-24T11:33:36.010000"],["2024-07-24T11:33:37.010000"],["2024-07-24T11:33:38.010000"],["2024-07-24T11:33:39.010000"],["2024-07-24T11:33:40.010000"],["2024-07-24T11:33:41.010000"],["2024-07-24T11:33:42.010000"],["2024-07-24T11:33:43.010000"],["2024-07-24T11:33:44.010000"],["2024-07-24T11:33:45.010000"],["2024-07-24T11:33:46.010000"],["2024-07-24T11:33:47.010000"],["2024-07-24T11:33:48.010000"],["2024-07-24T11:33:49.010000"],["2024-07-24T11:33:50.010000"],["2024-07-24T11:33:51.010000"],["2024-07-24T11:33:52.010000"],["2024-07-24T11:33:53.010000"],["2024-07-24T11:33:54.010000"],["2024-07-24T11:33:55.010000"],["2024-07-24T11:33:56.010000"],["2024-07-24T11:33:57.010000"],["2024-07-24T11:33:58.010000"],["2024-07-24T11:33:59.010000"],["2024-07-24T11:34:00.010000"],["2024-07-24T11:34:01.010000"],["2024-07-24T11:34:02.010000"],["2024-07-24T11:34:03.010000"],["2024-07-24T11:34:04.010000"],["2024-07-24T11:34:05.010000"],["2024-07-24T11:34:06.010000"],["2024-07-24T11:34:07.010000"],["2024-07-24T11:34:08.010000"],["2024-07-24T11:34:09.010000"],["2024-07-24T11:34:10.010000"],["2024-07-24T11:34:11.010000"],["2024-07-24T11:34:12.010000"],["2024-07-24T11:34:13.010000"],["2024-07-24T11:34:14.010000"],["2024-07-24T11:34:15.010000"],["2024-07-24T11:34:16.010000"],["2024-07-24T11:34:17.010000"],["2024-07-24T11:34:18.010000"],["2024-07-24T11:34:19.010000"],["2024-07-24T11:34:20.010000"],["2024-07-24T11:34:21.010000"],["2024-07-24T11:34:22.010000"],["2024-07-24T11:34:23.010000"],["2024-07-24T11:34:24.010000"],["2024-07-24T11:34:25.010000"],["2024-07-24T11:34:26.010000"],["2024-07-24T11:34:27.010000"],["2024-07-24T11:34:28.010000"],["2024-07-24T11:34:29.010000"],["2024-07-24T11:34:30.010000"],["2024-07-24T11:34:31.010000"],["2024-07-24T11:34:32.010000"],["2024-07-24T11:34:33.010000"],["2024-07-24T11:34:34.010000"],["2024-07-24T11:34:35.010000"],["2024-07-24T11:34:36.010000"],["2024-07-24T11:34:37.010000"],["2024-07-24T11:34:38.010000"],["2024-07-24T11:34:39.010000"],["2024-07-24T11:34:40.010000"],["2024-07-24T11:34:41.010000"],["2024-07-24T11:34:42.010000"],["2024-07-24T11:34:43.010000"],["2024-07-24T11:34:44.010000"],["2024-07-24T11:34:45.010000"],["2024-07-24T11:34:46.010000"],["2024-07-24T11:34:47.010000"],["2024-07-24T11:34:48.010000"],["2024-07-24T11:34:49.010000"],["2024-07-24T11:34:50.010000"],["2024-07-24T11:34:51.010000"],["2024-07-24T11:34:52.010000"],["2024-07-24T11:34:53.010000"],["2024-07-24T11:34:54.010000"],["2024-07-24T11:34:55.010000"],["2024-07-24T11:34:56.010000"],["2024-07-24T11:34:57.010000"],["2024-07-24T11:34:58.010000"],["2024-07-24T11:34:59.010000"],["2024-07-24T11:35:00.010000"],["2024-07-24T11:35:01.010000"],["2024-07-24T11:35:02.010000"],["2024-07-24T11:35:03.010000"],["2024-07-24T11:35:04.010000"],["2024-07-24T11:35:05.010000"]],"hovertemplate":"color=1\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"1","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"1","scene":"scene","showlegend":true,"x":[0.027709417976439,0.994102839846164,0.009888275992125273,0.5343449171632528,-0.7112579890526831,-0.17636282416060567,0.2420301833190024,-0.8790924595668912,-0.10997350793331861,0.3257802249863744,-0.5436058361083269,0.8140898114070296,0.33265718817710876,0.5531418002210557,-0.5448562218807638,-0.5144137945026159,0.9609896433539689,-0.5099047375842929,-0.18286964390426874,0.3524279142729938,0.3628617161884904,-0.6211592089384794,-0.6191711304709315,-0.34603011421859264,-0.5296245533972979,0.6064923126250505,0.7218284592963755,-0.08142595738172531,0.4727274654433131,0.8981653689406812,-0.08933474728837609,-0.9081417843699455,0.996160049457103,-0.9873516536317766,0.28775504836812615,-0.31695714965462685,0.7957831905223429,0.7359720771200955,-0.9357936684973538,-0.6183901149779558,0.14930767891928554,0.9558983617462218,-0.8192091067321599,0.5420311102643609,-0.8043441837653518,-0.10145200556144118,0.746767156291753,-0.5398587859235704,-0.5948304915800691,0.7870735307224095,0.7813503728248179,0.21582326758652925,-0.35995974903926253,0.9560938458889723,0.7309297951869667,0.8088876996189356,0.04592407215386629,-0.42580971773713827,0.8534756870940328,0.47714464040473104,0.04418038669973612,0.27270406717434525,0.3241335707716644,0.6986826653592288,0.7201840416528285,0.485304431989789,0.12400121707469225,0.37001041043549776,0.782394562382251,-0.7484624562785029,0.9814045610837638,0.16508641745895147,-0.21079882187768817,0.24072590237483382,0.7363265589810908,-0.08157934853807092,0.8592063765972853,-0.8606347432360053,-0.8198628551326692,0.40642465837299824,-0.5496796001680195,0.088983622379601,-0.7626400417648256,0.5945290476083755,0.6184927527792752,0.6437207795679569,0.6315778470598161,0.13042217213660479,-0.8417135616764426,0.892790611833334,0.4069966762326658,0.5266817109659314,-0.2797166481614113,0.19609220372512937,-0.8773014489561319,0.13714789086952806,0.23433279665187,-0.08844671538099647,0.7575210933573544,-0.7049537873826921,0.06911648344248533,0.9948995718732476,0.04714652057737112,-0.5094278608448803,-0.5630714255385101,0.510728660505265,-0.6082362155430019,0.2640362433157861,0.6126832524314523,-0.8813725179061294,-0.6437391056679189,-0.8959184535779059,-0.2660738881677389,-0.26601370703428984,-0.02454584976658225,0.695782461669296,-0.6843979367986321,-0.4159942273981869,-0.03776847617700696,0.4321500030346215,-0.8762148707173765,-0.715676604770124,0.39790811436250806,0.4014100064523518,0.9123030793853104,-0.4477098477073014,0.7106470549479127,-0.26968580950051546,0.21973016392439604,-0.7184904920868576,0.07259271759539843,0.559539579320699,0.8819933505728841,0.5192612065002322,0.7010201588273048,-0.8870002841576934,0.7634562626481056,-0.6538657923229039,-0.35375766595825553,-0.08305604010820389,0.7406779644079506,0.6429453967139125,-0.1646510362625122,0.21564359730109572,0.22481185384094715,0.262966588139534,-0.33559881802648306,-0.20579044008627534,-0.7825581952929497,0.7867986769415438,-0.8509742273017764,0.5356975398026407,0.5822684830054641,-0.5145238577388227,0.8484297324903309,0.488866392057389,-0.7268008231185377,-0.9495401862077415,0.541930609382689,-0.5757635212503374,0.24693831196054816,0.9704957576468587,-0.34711685264483094,0.0594952586106956,-0.1108659035526216,-0.9081419734284282,-0.4838040340691805,-0.7977023073472083,-0.7958243060857058,0.2766639911569655,-0.016383455600589514,-0.6289603505283594,0.5041493661701679,-0.4716233881190419,-0.14928376814350486,0.6386898327618837,-0.28358145989477634,-0.7427663314156234,-0.953575526829809,-0.569236506242305,-0.35676709935069084,-0.29574441630393267,-0.44016379676759243,0.3663909900933504,-0.030675660353153944,-0.47814040072262287,0.016330658923834562,-0.9806358148343861,0.10123880207538605,-0.5611278247088194,-0.24061638861894608,-0.33515199506655335,0.12697431398555636,-0.13308978592976928,-0.47415353264659643,0.05470782285556197,0.03463714802637696,-0.1839906987734139,-0.17665717378258705,0.7690074807032943,-0.8102567256428301,-0.8907973733730614,-0.0486614890396595,-0.3232800248079002,0.24590316880494356,0.5628597801551223,-0.5580602139234543,0.44159960467368364,0.2761872368864715,0.7827023253776133,-0.6616031974554062,-0.8350423192605376,-0.10171944089233875,0.7479096530005336,0.5872714440338314,0.9044540147297084,-0.347276505548507,0.5150582790374756,-0.4154471722431481,-0.34733815863728523,-0.3091058605350554,0.6043098424561322,-0.20493178069591522,0.2762421937659383,-0.9130172808654606,-0.9393212329596281,-0.8368906620889902,-0.5129474042914808,0.29647546261548996,-0.956532581243664,0.1036476674489677,0.5594291356392205,0.8964368579909205,0.9114569188095629,-0.007669670041650534,-0.6517108199186623,-0.2941087959334254,0.3517121598124504,0.07578451372683048,-0.06839901767671108,0.3449849160388112,-0.3472642437554896,-0.20633810013532639,-0.05968430731445551,0.6447917716577649,-0.599434747826308,0.014033413957804441,0.9983921707607806,-0.3033918575383723,-0.17350603267550468,0.242055079434067,0.9769513416104019,-0.8982562758028507,0.3530590422451496,0.44285844219848514,-0.09856345551088452,0.951731069944799,-0.9849663530476391,0.2340073911473155,-0.7234005266800523,0.9179691709578037,0.7956583648920059,0.5792848486453295,-0.6153261973522604,-0.2258062162436545,0.5552575318142772,-0.05456943903118372,0.5472188396379352,-0.41739576356485486,-0.3297125198878348,-0.14527454925701022,-0.190880183596164,0.07363707618787885,0.018133994191884995,0.5141979274339974,-0.7891845246776938,0.7984329601749778,-0.38884394615888596,-0.6288612708449364,0.37680825404822826,0.2576549779623747,-0.28378176130354404,0.9396470035426319,0.27142297104001045,-0.9376021134667099,-0.6924914824776351,-0.5027379561215639,0.12388000031933188,-0.47308088885620236,-0.1946930643171072,-0.31400310760363936,0.9001264306716621,-0.814128864556551,0.03501220094040036,0.5034663588739932,0.13236642396077514,0.9447073647752404,-0.7177105452865362,-0.8594346740283072,-0.5271367440000176,0.08679238008335233,-0.6429951009340584,0.031477753072977066,-0.31324645318090916,-0.5405720071867108,-0.9243954098783433,0.7984374989755452,-0.6478708214126527,0.6623520841822028,0.35508786188438535,0.8415762847289443,-0.4770109783858061,-0.597837211098522,-0.23901504836976528,0.013975419104099274,0.3989538177847862,-0.017507481388747692,-0.031559485010802746,0.11311572045087814,0.31556748365983367,-0.7156445970758796,0.3853846159763634,-0.711081750690937,0.9832886927761137,-0.003207602072507143,-0.98844870692119,0.927557498216629,0.03878818126395345,-0.2908587367273867,0.9102578335441649,-0.9288397072814405,-0.38500267220661044,0.45238800439983606,-0.5363298472948372,-0.21926327515393496,-0.7017063326202333,-0.054643480107188225,0.45006793132051826,0.829784928355366,0.6982903890311718,0.3288072100840509,-0.432400559540838,-0.5745699116960168,0.22798001999035478,0.403930910397321,0.5364901982247829,-0.6422188277356327,0.7727052085101604,0.7398048676550388,-0.09637001575902104,0.7991550825536251,0.5870758998207748,0.270564382430166,0.13534031668677926,0.4180979016236961,0.22233736515045166,-0.9771699123084545,0.03046714933589101,-0.70998824108392,0.7238722816109657,-0.049255505204200745,-0.36123270308598876,-0.45257729571312666,0.31571404403075576,0.20664278464391828,-0.7903549703769386,0.5040653171017766,-0.8153231195174158,0.7482905173674226,-0.47721978556364775,-0.5519176535308361,-0.20797906816005707,0.34620258677750826,0.4057287070900202,0.12876926735043526,-0.7461064234375954,0.05307283345609903,0.5906036533415318,0.9096869784407318,0.5406612516380847,0.21748258220031857,0.07243812410160899,-0.4702794495970011,-0.3588068690150976,-0.21183870173990726,0.11560723278671503,-0.7842717315070331,-0.10865421546623111,-0.5896307188086212,-0.2090347409248352,0.5815911563113332,-0.6036255480721593,0.21936012851074338,0.1756333513185382,-0.6132175871171057,-0.40395474806427956,-0.4017899511381984,0.30592915043234825,0.2107820394448936,0.5781028093770146,-0.47463294118642807,0.9322306355461478,0.649049049243331,0.6692267023026943,0.16496873833239079,0.7499131294898689,-0.13955849269405007,0.5531653622165322,0.07509690523147583,0.5246355254203081,0.0922193736769259,-0.8196029891259968,0.961869380902499,0.7559908051043749,0.19473146321251988,0.40206857305020094,0.4656084063462913,0.8909078072756529,0.1594081511721015,0.0011531179770827293,0.14915055269375443,0.9095674571581185,-0.39075708156451583,0.03559509152546525,0.4677857728675008,-0.014016353990882635,0.5921363509260118,-0.2919450174085796,0.6091108336113393,-0.2201936962082982,0.5325573831796646,0.08403999265283346,-0.44668807927519083,0.3544660545885563,0.32487084344029427,-0.5088449162431061,0.37514084903523326,-0.8209558413363993,-0.3213886902667582,-0.619072312489152,-0.6302417209371924,-0.21745647303760052,-0.8798568397760391,0.6843875017948449,0.21634981082752347,0.6778922192752361,0.5446731527335942,0.22647955361753702,0.18241655034944415,-0.19272579811513424,0.596032134257257,-0.036581657361239195,0.3762056650593877,-0.8751567220315337,0.2696874770335853,0.3793139550834894,-0.7941127317026258,-0.638294274918735,-0.7705287439748645,0.7715028217062354,-0.6840921808034182,-0.09296271251514554,0.23124024365097284,-0.06404353864490986,0.10567431151866913,-0.9012587429024279,0.9959147069603205,-0.9298261883668602,0.9825610360130668,0.6098979325033724,-0.925699467305094,-0.09703487949445844,0.5825606575235724,0.554813452064991,0.07411147886887193,-0.10881314612925053,-0.29873841581866145,0.8097818703390658,-0.9693807787261903,0.644872120115906,0.5706250406801701,0.9352365271188319,-0.4299603453837335,0.9991728630848229,-0.5621013385243714,0.6713184965774417,-0.21709439158439636,0.8687676046974957,-0.8937462139874697,-0.8527552913874388,0.0355425588786602,-0.6951852133497596,-0.6341603151522577,-0.9351680651307106,0.7044895803555846,0.46662420872598886,0.06028171395882964,0.851764072664082,-0.5538172484375536,-0.7332255579531193,0.8300612005405128,0.08748012408614159,-0.031921578105539083,0.057465117424726486,-0.5542169120162725,-0.050245305988937616,0.654039042070508,-0.30806743912398815,0.06673951307311654,-0.7541268188506365,-0.11656660446897149,-0.7342370459809899,0.2718296875245869,0.684927883092314,-0.24190621357411146,0.9869870059192181,-0.7472699792124331,-0.7205296950414777,-0.27257834328338504,0.14562913309782743,-0.0501061724498868,-0.806535255163908,0.9894728930667043,-0.01766985934227705,0.01046708133071661,0.7113595874980092,0.5974518493749201,0.02576736407354474,0.5046518421731889,0.3298969492316246,-0.8783443542197347,-0.921666351146996,0.830107556656003,-0.0432501221075654,-0.6752045191824436,-0.25436230283230543,-0.4669753690250218,0.13845341000705957,0.44391639716923237,0.5500577106140554,-0.458227620460093,0.348932689987123,0.4030581507831812,0.24024586752057076,0.8384974547661841,0.804128048941493,-0.31196680245921016,-0.45529632084071636,-0.8371284557506442,-0.585971852298826,0.7510598404332995,-0.22693741647526622,-0.5702358609996736,-0.16401180857792497,-0.625581240747124,0.26999172288924456,0.9171266099438071,-0.9018373610451818,0.29773846128955483,0.18365062214434147,0.45571807865053415,0.2854956276714802,0.14931257907301188,0.7094812127761543,0.6158301602117717,0.5385755174793303,-0.7896504988893867,-0.8123380583710968,0.9681342081166804,0.618347164709121,-0.11128043103963137,0.6503305197693408,-0.15744335856288671,0.3645125706680119,-0.9486623904667795,-0.4785851747728884,-0.17007040651515126,-0.13193769101053476,-0.6218331186100841,-0.5031864992342889,-0.5056818528100848,0.4680437929928303,0.4328521038405597,-0.9637931687757373,0.6122844759374857,-0.8388794935308397,-0.2309508565813303,0.6024467595852911,-0.6844942951574922,-0.7061981181614101,0.5487296292558312,0.025616207160055637,-0.714598367922008,0.3044828665442765,-0.9435843392275274,0.15668110130354762,0.14895042916759849,0.2500133626163006,-0.838723280467093,0.8372373334132135,0.6917842100374401,-0.9763232781551778,-0.38931524381041527,-0.5391029450111091,-0.6978519381955266,0.8576298388652503,-0.24036492127925158,-0.14066434372216463,0.45626669377088547,0.11649670312181115,-0.37481630640104413,0.1057746484875679,-0.257352109067142,-0.4128809687681496,-0.2606023857370019,-0.9088493124581873,-0.9245624807663262,-0.6287586125545204,0.1984313684515655,0.2913325480185449,0.43582279654219747,-0.4871616824530065,-0.30232984572649,-0.8124943296425045,-0.8657174929976463,-0.6228090771473944,0.09113229298964143,-0.9043914438225329,-0.6180930542759597,-0.915805411990732,-0.24645082233473659,-0.7346139755100012,-0.21861691633239388,-0.9756165412254632,0.34625302581116557,-0.3851063963957131,0.2968339454382658,-0.6876950827427208,0.09280631458386779,-0.8501030839979649,0.6607420113869011,0.3127316846512258,-0.1033193189650774,-0.1779003730043769,-0.8012277036905289,0.2962002311833203,-0.8229930512607098,0.8130959924310446,0.6900479178875685,-0.19368593906983733,-0.34177904250100255,-0.5410009627230465,-0.4255387680605054,-0.3957102047279477,-0.5812680404633284,0.24594410974532366,-0.6657647932879627,0.6515405015088618,-0.8824296044185758,-0.11145729245617986,0.1328573296777904,-0.29401078820228577,-0.6815584073774517,-0.5024830200709403,0.6296673347242177,0.3174384403973818,-0.08806147426366806,-0.10635660914704204,0.5523664988577366,-0.9873922127299011,-0.5124292983673513,0.4313059323467314,-0.7125094807706773,-0.3924044044688344,0.25274528097361326,0.15094218030571938,0.39203226333484054,0.8305440759286284,0.0622330280020833,0.1882028365507722,-0.04010285111144185,-0.11934073315933347,-0.5183010753244162,0.1100558191537857,-0.3417323208414018,0.9859866872429848,-0.9992689811624587,0.4297301429323852,0.820737945381552,-0.8452209969982505,0.9425682378932834,0.20233534555882215,-0.3691879496909678,0.6377430278807878,0.5941961803473532,0.2305881385691464,-0.9674235349521041,0.5763172903098166,-0.08720938442274928,-0.3388925129547715,-0.6503444989211857,-0.07258109748363495,-0.5772140058688819,-0.4013117025606334,0.04212907375767827,0.24874494364485145,-0.49645021883770823,0.32880317186936736,0.04310569679364562,-0.8581224665977061,0.28556458931416273,0.38831959664821625,0.9316029674373567,0.990927685983479,-0.08151556178927422,0.2178900414146483,0.05015547201037407,0.34661176009103656,0.8893283205106854,-0.5755727728828788,0.889007150195539,0.6475269673392177,0.11338476743549109,0.9361845152452588,0.4939638548530638,-0.5657511092722416,-0.214810433331877,0.5815672748722136,-0.46411513863131404,0.4408758310601115,-0.48396221501752734,0.9419535594061017,-0.5045353821478784,0.6764467442408204,-0.28060378646478057,-0.7441938179545105,0.5780570614151657,-0.7059781295247376,0.8323783441446722,-0.6443252610042691,-0.6009462010115385,0.3919844417832792,-0.34591646399348974,-0.535030938219279,0.931098397821188,-0.6588824274949729,0.8964048563502729,0.8832213999703526,0.7604138776659966,-0.5487856408581138,0.1500523155555129,-0.2332907672971487,0.6333910091780126,-0.6572819272987545,-0.4065031185746193,0.10962451063096523,0.7826180057600141,-0.9958378556184471,-0.47997919376939535,0.04495040839537978,-0.39568284852430224,0.6569337877444923,0.5831945398822427,-0.35136024793609977,-0.662832681555301,-0.8733684606850147,-0.6716094496659935,0.3126801811158657,-0.23287391290068626,-0.11760591343045235,0.27998431166633964,0.7149386960081756,0.5040660700760782,0.6214175121858716,-0.8141064993105829,-0.08886752929538488,-0.5601073252037168,-0.4294015630148351,-0.5869198241271079,-0.41951553290709853,-0.9838886074721813,-0.2556090480647981,0.593394024297595,-0.08932350995019078,0.7390314768999815,0.2595441257581115,-0.8699526786804199,-0.36406260961666703,0.7211463199928403,-0.5029635629616678,0.6174967116676271,-0.59059036988765,0.8074733908288181,-0.3010777086019516,0.4231835249811411,-0.1626276564784348,0.113272066693753,0.731027320958674,0.972145221196115,0.2631862829439342,-0.5429671620950103,-0.3506952184252441,-0.011873208452016115,0.8347211997024715,-0.14618994249030948,0.6803305419161916,0.6858018012717366,-0.42005780106410384,0.2659937352873385,-0.10791904293000698,-0.1379644931294024,-0.6068276581354439,-0.6671559340320528,0.8256980944424868,0.09740706766024232,0.06285941507667303,-0.858718799892813,-0.1281237774528563,0.6447739386931062,-0.07015530578792095,0.8948214249685407,-0.4529550666920841,0.7910231905989349,0.6243329336866736,-0.7279755068011582,0.3127939929254353,0.9331715232692659,0.5144437397830188,-0.8840268142521381,-0.3695855480618775,0.9568148315884173,-0.4907107069157064,0.05902158049866557,0.8347886423580348,0.7266518794931471,-0.837375077418983,0.8716490459628403,0.4027079311199486,0.9058911041356623,-0.30925263930112123,0.26089794375002384,-0.12770286528393626,-0.35985442949458957,-0.7216638694517314,-0.5331468745134771,-0.45794495893642306,-0.7647115141153336,-0.8287814310751855,0.2782234260812402,0.023507142905145884,0.6006339457817376,0.07635565800592303,-0.48194798501208425,0.3715826948173344,0.6399426921270788,-0.8883187551982701,-0.07113422779366374,-0.40159595385193825,-0.4333324106410146,-0.6152183674275875,0.8522035498172045,-0.8299254854209721,-0.37085218681022525,0.3762028208002448,-0.3356994455680251,-0.587742178235203,-0.20412318734452128,0.4127076189033687,0.18125506723299623,0.5833807378076017,-0.6916674990206957,-0.35134829115122557,0.8693831162527204,0.4019995308481157,0.8981508174911141,0.9732758603058755,-0.8314018463715911,0.15351115027442575,0.8888986464589834,0.6274261903017759,-0.12918351870030165,-0.20137273566797376,-0.8650057683698833,0.1743488716892898,-0.9498716844245791,0.26180673483759165,0.5799166532233357,0.696555845439434,0.408535027410835,-0.7857185802422464,0.8544442728161812,-0.6948355045169592,-0.9997762995772064,-0.4502266035415232,0.09683466423302889,-0.950751215685159,-0.20533618377521634,0.7638780125416815,0.0698223514482379,0.6941530066542327,-0.514740064740181,0.2109585045836866,-0.07291609374806285,-0.38482740754261613,-0.7453339956700802,-0.2645715745165944,0.41010033106431365,0.8734357068315148,-0.7288624909706414,0.6486419346183538,-0.5269618704915047,0.8610792113468051,0.28769563790410757,0.7101136865094304,0.941907234955579,-0.7603486506268382,-0.5481196194887161,0.07280758768320084,-0.31247831089422107,0.7986726141534746,0.522453285753727,-0.6296522435732186,0.8528552311472595,-0.667797720991075,-0.932206901255995,-0.5469083893112838,-0.5137884370051324,0.7658988279290497,-0.3920931746251881,-0.727041011210531,0.35335144866257906,-0.906603564042598,0.4207497164607048,0.3824057746678591,-0.39690961968153715,0.7860763794742525,0.3929519518278539,0.2261893367394805,0.2156871105544269,0.3582296003587544,-0.3229030496440828,-0.48904630169272423,-0.8663765215314925,-0.4148598569445312,-0.9153700843453407,0.6981939156539738,0.3174254186451435,0.8475472964346409,0.017533414531499147,0.8223944925703108,0.9778001178056002,-0.5842380779795349,-0.42375878198072314,-0.7348586302250624,-0.06448440486565232,0.07993540121242404,0.9084352506324649,-0.41204968094825745,0.5531417713500559,-0.3443550835363567,0.5933187040500343,0.867636569775641,0.7175449756905437,-0.46297740936279297,-0.9322214075364172,0.9265872440300882,-0.1273792847059667,-0.16213406715542078,0.6132978294044733,-0.42578693525865674,-0.9884295170195401,0.24219635548070073,-0.9804401071742177,-0.6306377951987088,-0.4850847781635821,0.8539444543421268,-0.5468362332321703,0.7583903865888715,-0.4670804664492607,0.1506706392392516,0.8500225520692766,-0.2203711229376495,0.969259724020958,-0.7716153706423938,0.15684229088947177,0.10685660131275654,0.8687743749469519,-0.2910643806681037,0.09150229441002011,-0.07370491838082671,0.7821976421400905,0.23610667930915952,-0.9759642714634538,0.3531950153410435,-0.21262624394148588,0.4370290320366621,-0.6824860256165266,-0.6661547352559865,-0.020041256677359343,0.6224964768625796,-0.08792800782248378,-0.10889456560835242,0.0921620992012322,0.9948603757657111,-0.9333164314739406,0.33057705825194716,0.6533456323668361,0.3135322853922844,-0.8971233903430402,-0.3751777093857527,-0.1389014278538525,0.5936654070392251,-0.4742293655872345,-0.3928087283857167,-0.44645660975947976,0.988427649717778,-0.6176269161514938,-0.9105996852740645,0.6776771638542414,0.5957630188204348,0.5905882269144058,-0.7662388016469777,0.15331630548462272,-0.33595473412424326,0.6524752941913903,0.0897150905802846,0.5385638945735991,-0.23174247844144702,-0.5857864106073976,0.03299290034919977,0.9830923895351589,0.7678658361546695,0.5449469494633377,0.6422168901190162,0.307326833717525,-0.08788509853184223,-0.6699332497082651,0.011209480464458466,-0.05469597177579999,-0.34305740473791957,-0.3460258492268622,0.6671173921786249,-0.8739090729504824,-0.32599551184102893,0.2530806912109256,-0.8633033195510507,0.5190204023383558,-0.3935762057080865,0.6678272499702871,0.05029950477182865,0.9666002355515957,-0.3581316126510501,-0.11667565815150738,-0.9394688624888659,0.16903197998180985,-0.037660610396414995,0.009619617369025946,-0.9082472072914243,0.9199711191467941,-0.6513095740228891,-0.9901142977178097,0.44611737644299865,-0.31761447014287114,-0.32019489677622914,-0.13554981164634228,-0.9914665934629738,-0.8619588287547231,-0.5871906434185803,0.5906279855407774,-0.21053496515378356,-0.8467983105219901,-0.5056499536149204,0.4902085606008768,0.4106400706805289,0.5445021484047174,-0.6002488280646503,0.47138924337923527,-0.764343717135489,0.9656445533037186,-0.80328398803249,0.5853547444567084,-0.12926286552101374,0.3933280874043703,0.7133254846557975,-0.6629973901435733,0.9347669933922589,-0.8337230309844017,0.2885574079118669,-0.9249605112709105,-0.7193434778600931,0.21906484058126807,-0.1378378258086741,-0.33749111788347363,0.533130828756839,-0.6767536690458655,-0.6074733277782798,-0.42235993035137653,-0.029017454478889704,-0.885079403873533,0.5571097484789789,0.030166804790496826,0.7675001937896013,-0.6466606454923749,-0.671245691832155,-0.38529142597690225,0.9440653468482196,-0.5601091333664954,-0.5812916923314333,-0.6992877013981342,-0.8349271048791707,0.5099713276140392,0.28566376585513353,-0.9137759455479681,0.9823906212113798,0.838847718667239,0.19622918777167797,-0.4712439733557403,0.1062040189281106,0.3861402622424066,0.1039284011349082,-0.5441953646950424,0.6654445957392454,0.5408043120987713,0.41096165776252747,0.1096777762286365,0.8202467784285545,0.46804929710924625,0.4720089351758361,-0.13881640415638685,0.741772495675832,-0.9059014176018536,0.17496163863688707,0.1672354582697153,0.3414325616322458,-0.594862821046263,0.7613842445425689,-0.11612001899629831,0.9725819230079651,0.6239222777076066,0.0034198397770524025,-0.6269566370174289,0.6929201609455049,-0.5052591152489185,-0.25322450464591384,-0.3439837535843253,-0.31272327713668346,-0.4016906009055674,-0.5191025491803885,0.9753076354973018,-0.6017708387225866,-0.18882083939388394,0.8036892055533826,0.6470594694837928,-0.6921082977205515,-0.4980821846984327,-0.39026418700814247,-0.45092896232381463,0.17511173523962498,0.4205447658896446,0.10488021420314908,0.05122329667210579,0.9938424355350435,-0.34864247078076005,0.08902817824855447,-0.03476175758987665,-0.9186929152347147,0.6945244446396828,-0.37095736945047975,-0.7189187062904239,-0.5192620898596942,-0.4072522739879787,-0.40460343612357974,0.9516464145854115,0.25424714107066393,-0.42709546303376555,0.5191305154003203,0.02305997395887971,0.8926768735982478,-0.7580034541897476,-0.4224347323179245,-0.1671526450663805,0.8786159735172987,-0.6346620772965252,-0.12392281787469983,0.010668629314750433,-0.7889372650533915,-0.9599719783291221,0.7376946737058461,0.2989259585738182,0.817087575327605,-0.1537124919705093,0.8039948348887265,0.2914769104681909,-0.8625143943354487,-0.7974053253419697,-0.1411224976181984,0.4345445027574897,0.5798729569651186,0.15619518654420972,0.8919175993651152,0.9543095515109599,-0.047054399736225605,0.024178969208151102,0.833719480317086,-0.8372665513306856,-0.20759486965835094,-0.7406435827724636,-0.5855478690937161,-0.7330896682105958,0.22924155788496137,-0.9845238770358264,0.3612532811239362,0.9116767100058496,0.2485647634603083,0.32179534574970603,0.9214968993328512,-0.4464010549709201,-0.7209820933640003,-0.12637943541631103,-0.7388768023811281,0.5138287167064846,-0.5014645378105342,-0.6756869466044009,-0.26508065592497587,-0.3138789152726531,-0.24137261603027582,-0.018059917259961367,0.38419725466519594,0.34888045908883214,0.3325932933948934,0.08654721174389124,-0.017435199581086636,-0.42471454991027713,-0.6724702529609203,-0.3899146839976311,0.853524848818779,-0.10125311929732561,0.7636892325244844,-0.9460150711238384,0.6424425006844103,-0.06066769594326615,-0.7425043848343194,0.27207587053999305,-0.6855192459188402,-0.49076222721487284,0.040439467411488295,0.731689739972353,-0.13267440535128117,-0.3747357679530978,0.63387690205127,0.5054822647944093,-0.09191044047474861,-0.40996111277490854,-0.8078963803127408,-0.25347389886155725,-0.7735962090082467,0.297546174377203,0.33456675661727786,-0.5514869051985443,0.06882418226450682,0.7874943194910884,-0.9177905204705894,0.6233682511374354,-0.9998682411387563,0.7508142935112119,-0.10800673952326179,0.38051328249275684,0.12205083621665835,-0.2764961780048907,-0.504868155810982,0.6503570163622499,0.029191607609391212,0.46984912268817425,-0.315863901283592,-0.31642860267311335,-0.10983330570161343,-0.09301962750032544,0.25109433149918914,0.7976954379118979,0.3883261689916253,-0.4075241624377668,0.38320701103657484,-0.8181500728242099,0.9949121004901826,-0.21992515679448843,0.3162166955880821,-0.5526493554934859,-0.6471445928327739,0.9597332822158933,0.8670050683431327,0.6757679930888116,-0.3900708560831845,0.6074795108288527,-0.20724437525495887,-0.7574634910561144,-0.5666514527983963,0.650330534670502,0.3317303513176739,0.35468287533149123,0.8651690511032939,0.6964315776713192,0.7319787917658687,-0.6899083070456982,0.975843598600477,0.7790558049455285,-0.9730328572914004,-0.042454691138118505,0.12304491642862558,-0.41996516147628427,-0.9630592707544565,-0.07509744353592396,-0.22532729851081967,0.42240295046940446,0.5152340945787728,0.2936296546831727,-0.7221686965785921,0.7419607322663069,-0.5830731759779155,0.6380924922414124,0.70975377317518,0.43159101670607924,-0.9136335947550833,-0.9501877957955003,-0.8441899181343615,0.27137919049710035,0.1018441878259182,-0.6322402581572533,0.8680272428318858,-0.7322406126186252,0.2976939952932298,-0.9761768169701099,0.7378103653900325,0.10764798196032643,0.1372873354703188,-0.6886040959507227,0.17139614187180996,-0.9052131338976324,0.14615820161998272,0.09969549346715212,0.1235426003113389,0.6363035901449621,0.0837876545265317,0.6831677071750164,0.6580581008456647,-0.11629084683954716,-0.1286690691486001,0.45238487608730793,-0.44652714068070054,-0.2504681972786784,-0.07174909813329577,0.728436388541013,-0.16697538830339909,-0.7063241605646908,0.9877671087160707,-0.08097480470314622,-0.383643529843539,-0.8116095028817654,0.018415600061416626,0.9905027667991817,-0.14704596437513828,-0.01788241369649768,-0.9061388052068651,-0.44894102308899164,0.5752243245951831,-0.1235779644921422,-0.9587902845814824,-0.5415350082330406,0.2668700907379389,-0.3202771698124707,0.25969931576400995,-0.44173472840338945,0.551048313267529,-0.9622582239098847,-0.7358340504579246,0.5882800901308656,0.7830005106516182,-0.6509164897724986,0.23968623438850045,0.08779230527579784,-0.5267980368807912,-0.9198590503074229,0.23435378214344382,-0.9933197130449116,0.7759853722527623,0.18133056676015258,-0.31185613572597504,-0.4290789724327624,-0.44543296564370394,0.8526385980658233,0.13865589443594217,0.9707904611714184,0.5211344044655561,0.9998353044502437,0.7440074165351689,0.8186968727968633,0.41679396014660597,0.3450322146527469,0.7240367322228849,-0.61700135236606,-0.5317988935858011,0.3478400302119553,-0.5062842662446201,0.7941465647891164,0.8961670626886189,-0.36102430103346705,-0.8812485560774803,0.5559778003953397,0.42345829168334603,-0.22125225653871894,-0.1647906214930117,0.580843751784414,0.7308096187189221,-0.8267771555110812,-0.11217078706249595,0.04684334946796298,0.7093439097516239,0.27975603844970465,0.6475483733229339,-0.24455100111663342,0.3242928716354072,-0.1639252556487918,-0.04641847498714924,0.8287903675809503,-0.2557408334687352,0.6985588329844177,0.4642917006276548,0.5149902440607548,0.5336833084002137,-0.8256347752176225,-0.7086944994516671,-0.5687523931264877,0.11195654328912497,0.11993100075051188,0.6880155391991138,0.958607841283083,-0.46432820288464427,0.23141809040680528,-0.06314720120280981,0.7053475212305784,0.28497758135199547,0.6363439350388944,0.8595157107338309,-0.0579583253711462,0.6520338761620224,-0.6558688143268228,-0.2972805043682456,0.9641618663445115,0.9326314385980368,-0.5132758221589029,0.9830437526106834,-0.234886365942657,-0.9291200647130609,-0.9096397748216987,0.4533040155656636,-0.9559186962433159,-0.29494901234284043,0.1396059519611299,-0.6916447319090366,-0.5955157899297774,0.4544898602180183,0.3499420043081045,0.8807740616612136,-0.8382537756115198,0.29101021820679307,0.6000733724795282,0.589108768850565,-0.7528497180901468,-0.6284214141778648,-0.0340759688988328,-0.6103864335455,-0.974349720403552,0.11451366310939193,0.9371522744186223,-0.24413816956803203,0.8451696182601154,0.2296312740072608,-0.7058657868765295,-0.6749443900771439,0.7856742166914046,-0.487396664917469,0.17652121279388666,-0.49283294612541795,-0.24966569943353534,-0.14891623007133603,0.5004224814474583,0.837082389742136,-0.8172504180110991,-0.7255935780704021,-0.8994784848764539,-0.7151947217062116,-0.557547542732209,0.173222909681499,0.5783896432258189,0.4198173792101443,0.4672410017810762,0.15064030047506094,0.552713992074132,0.5822579702362418,0.3516359725035727,-0.912086661439389,-0.23674340173602104,-0.13719850312918425,-0.5020734276622534,0.6385487890802324,0.9612874882295728,0.10791984992101789,0.6768747069872916,-0.8014994920231402,-0.6608715578913689,-0.7242045332677662,0.4990825839340687,-0.9938079910352826,-0.5077641964890063,0.6228826432488859,0.6853162068873644,0.7811556360684335,-0.2436028327792883,0.2863181419670582,-0.5326595115475357,-0.18142303917557,-0.652449029032141,-0.26020165951922536,0.8399907182902098,0.29465534444898367,-0.7602668115869164,0.44385441904887557,0.331734084058553,-0.04719591327011585,-0.6525012105703354,0.14301360677927732,-0.5611626938916743,0.15023284684866667,-0.7973479428328574,-0.9230790697038174,-0.5459540453739464,0.5495994249358773,0.8702916158363223,0.7265001917257905,-0.48162492271512747,-0.5987873505800962,-0.6125881969928741,0.16857096273452044,0.9922239179722965,-0.3674901477061212,0.7084107184782624,0.027221424505114555,-0.5117435678839684,-0.07776640495285392,-0.36548702139407396,0.3856148817576468,0.755479943472892,-0.6252175662666559,0.6322005139663815,-0.13317636493593454,-0.8336331755854189,0.5170176709070802,-0.5257963645271957,0.535979229491204,0.8440882451832294,-0.9491563742049038,0.7398097184486687,0.375330725684762,-0.9734408627264202,0.8603643355891109,0.5137157053686678,-0.4579160097055137,0.9111612499691546,0.1540929120965302,-0.9837178201414645,-0.848505633417517,-0.8049489678815007,-0.15065417625010014,0.3156288699246943,-0.43679032986983657,-0.13063096115365624,0.5750677702017128,0.2165742376819253,-0.630370682105422,0.4334396608173847,0.08247646316885948,0.7382373316213489,-0.2296534674242139,-0.233945878688246,-0.8016318213194609,-0.6025369516573846,-0.2540572355501354,-0.8083599875681102,-0.37048001075163484,0.9630463728681207,0.5730831469409168,-0.4628153177909553,-0.09943052846938372,0.2966382158920169,-0.9127253945916891,-0.6956440792419016,0.5578679917380214,0.3722167303785682,-0.8984901653602719,0.21950222365558147,0.8045037984848022,0.11667726654559374,-0.17279551643878222,0.2103535970672965,-0.6673419000580907,-0.3045973894186318,-0.42445762176066637,-0.729951067827642,-0.8410156648606062,0.8373834029771388,0.009603869635611773,0.664720821660012,-0.07416705368086696,0.00488745654001832,-0.8335911929607391,-0.9490562491118908,0.7847702582366765,0.8118008868768811,0.6234682882204652,0.6436781804077327,0.9460696806199849,0.8054774948395789,0.08561113104224205,0.12640408985316753,-0.3624392724595964,-0.8558567161671817,-0.03798149339854717,0.7712312107905746,-0.18992451624944806,0.9875650038011372,-0.3146007163450122,0.32935073506087065,0.8574009430594742,-0.26740935537964106,-0.3924591760151088,-0.7529040719382465,0.6976725831627846,0.669355777092278,0.2498978404328227,-0.9385822983458638,-0.35808112751692533,0.7178611629642546,-0.3399887620471418,-0.7207451174035668,-0.164334109518677,-0.4736082274466753,0.12269389582797885,0.12567332806065679,0.7454014392569661,-0.017126171849668026,0.5647338032722473,-0.891800282523036,0.9487986527383327,0.9809573092497885,-0.08511853637173772,0.27687678951770067,0.21760922390967607,-0.1310706464573741,-0.6934757549315691,-0.29730995604768395,-0.6169280102476478,0.576044924557209,0.053616028279066086,0.3128464622423053,0.2095108861103654,-0.3289211159572005,-0.4122489648871124,-0.6830744384787977,0.9290878139436245,0.6972611178644001,0.9166845306754112,-0.7106959433294833,0.10889061400666833,-0.1994428294710815,0.8067243965342641,-0.4204781702719629,0.6956708878278732,-0.8516311794519424,0.7522316612303257,0.30563444131985307,-0.569321368355304,0.12809096043929458,0.792835230473429,0.34325694013386965,0.940701452549547,0.08844316145405173,-0.6728144935332239,-0.39030800107866526,-0.36422184109687805,0.9296155469492078,0.5483149909414351,-0.3086614701896906,0.8903676168993115,-0.4860600004903972,-0.7760451142676175,-0.5476130964234471,-0.8471344038844109,0.6113660503178835,0.07925467751920223,0.31343094957992435,-0.07266098959371448,0.8327851630747318,0.8255694559775293,0.17945926077663898,-0.35868149157613516,-0.7448973301798105,0.7045386754907668,0.2772692870348692,0.8395144338719547,0.880657309666276,0.3810101323761046,-0.5132882376201451,-0.530565079767257,0.6225587702356279,0.28340954799205065,-0.12319987220689654,-0.3604028387926519,0.46595890494063497,0.8074796916916966,0.3295935047790408,-0.5830598822794855,-0.5542443250305951,0.5968257444910705,-0.922426083125174,0.993246634490788,-0.5008232300169766,-0.06525817420333624,-0.25963662890717387,0.5670238151215017,-0.3130991794168949,-0.203180565033108,0.14023353857919574,-0.30044876504689455,0.4262974299490452,-0.8702234490774572,0.09369855420663953,0.2629382102750242,-0.5227322834543884,-0.15314763505011797,0.2601514831185341,-0.3210984319448471,0.5372608602046967,-0.5378890139982104,-0.11807180615141988,0.015564673114567995,0.8671200647950172,0.8004247103817761,-0.5645715305581689,0.6729292562231421,0.695399571210146,-0.5708016147837043,0.8183193099685013,0.23333889339119196,0.7931452640332282,-0.38013365771621466,-0.13712586741894484,0.8338585188612342,0.013599129393696785,-0.5811418574303389,-0.03487542970106006,0.9450171580538154,0.6588091184385121,0.8954593129456043,-0.05747056799009442,-0.34834765596315265,-0.1807634811848402,0.9930445039644837,-0.8012854163534939,-0.7166420365683734,0.485504237934947,0.555527008138597,0.7980333655141294,0.8716826811432838,0.8370185601525009,0.5000209067948163,-0.2655264623463154,0.8841179865412414,0.08037808910012245,0.7115796287544072,0.8482149289920926,-0.2995834262110293,0.06490875128656626,0.2156633916310966,-0.8264586562290788,-0.5619615241885185,-0.9785197493620217,0.37525384733453393,0.992575247772038,0.06716383108869195,0.13388002011924982,-0.7322366493754089,-0.5308333998546004,-0.8356455443426967,0.2691685943864286,0.38992354925721884,-0.5407746681012213,-0.973203637637198,0.9616229324601591,-0.3343292595818639,0.9142047693021595,-0.3485817783512175,-0.06308407662436366,0.47463566390797496,-0.7327047809958458,-0.6000278927385807,0.44619238283485174,0.033959020394831896,-0.8976768567226827,-0.4604661394841969,-0.15541457198560238,0.0511423796415329,0.7760129799135029,-0.4207136183977127,-0.4242293993011117,0.017521303612738848,-0.06363171339035034,-0.39897293969988823,-0.17126017296686769,0.8803740474395454,0.5273502506315708,0.3165370486676693,-0.8530414458364248,-0.6057606446556747,0.6918855495750904,0.053920494858175516,0.2917024614289403,-0.41269072610884905,-0.9375620395876467,-0.6130364877171814,0.9349610987119377,0.2325762459076941,0.6955982213839889,0.7375164241530001,-0.032199372071772814,-0.9119907990098,-0.716936569660902,0.903788770083338,0.9175259317271411,0.7278475924395025,-0.09629305452108383,-0.6796336602419615,0.8689596033655107,0.3482899540103972,0.8576247324235737,0.31418265448883176,0.0033903801813721657,0.6707837604917586,-0.007542510982602835,0.48384546441957355,0.35561664775013924,0.09608051599934697,0.24650186905637383,-0.4609582144767046,0.1557890777476132,-0.8154575526714325,-0.20392247149720788,-0.3877040487714112,0.4430510262027383,0.1584567087702453,0.40895518148317933,-0.45934750558808446,-0.18834812240675092,0.32402599323540926,-0.3185446597635746,-0.24120995542034507,-0.1185273751616478,0.76982193114236,-0.7495473069138825,0.8814267572015524,-0.9608682058751583,-0.6874606409110129,-0.6881034830585122,0.6422913349233568,-0.846591470297426,0.7515927171334624,0.4231520206667483,-0.9627456464804709,-0.16514751315116882,0.07872971473261714,0.4763177800923586,-0.9235040610656142,0.18395446753129363,-0.7834485396742821,0.21121900668367743,0.3360812673345208,0.14207184221595526,0.1036989102140069,0.6233312776312232,-0.9137911405414343,0.10535931121557951,0.3761111004278064,0.6225208882242441,-0.7254140861332417,0.4161414196714759,-0.6879625623114407,0.4452880686149001,-0.8686154228635132,0.24885614775121212,-0.1417612754739821,0.8140611508861184,0.7483657631091774,0.6678132289089262,-0.5887710591778159,0.5711474670097232,0.5206476040184498,-0.19172133086249232,-0.7639250126667321,-0.2494576582685113,0.32975315768271685,-0.6773878671228886,-0.3967419848777354,0.6534318807534873,-0.29727272782474756,0.5747675080783665,0.08936538407579064,-0.06803411291912198,-0.923973124474287,0.22391663119196892,0.00796846579760313,0.6991078346036375,0.8317851386964321,-0.3331257402896881,0.7413620254956186,-0.3012639661319554,-0.993938728235662,-0.17608634056523442,0.5003026574850082,-0.8841215400025249,-0.797058257739991,0.9167152093723416,0.6296507548540831,-0.6546389344148338,0.810595650691539,-0.9888696251437068,-0.520589797757566,-0.3494253298267722,0.40485373651608825,0.7171234027482569,-0.17790644383057952,-0.5438693761825562,-0.5958431083709002,0.1683307522907853,-0.09566077776253223,0.3397793583571911,-0.32515757204964757,0.7458429760299623,-0.6002736203372478,0.5027596950531006,-0.3074680822901428,-0.6115195867605507,-0.29945333395153284,-0.9349414007738233,-0.07280936930328608,0.9098061947152019,0.647529270965606,0.8555141938850284,-0.14438356878235936,0.21966584911569953,-0.8890846134163439,-0.7616891148500144,0.6329892263747752,0.5027960329316556,0.34083015751093626,-0.954507595859468,0.7202388131991029,0.22058574436232448,0.3947398718446493,-0.9626776287332177,0.1390267163515091,-0.9644122691825032,0.28748660953715444,0.1320571186952293,-0.5300449328497052,0.18747227359563112,-0.057474860455840826,0.24724113754928112,-0.8358044987544417,-0.9494047611951828,-0.6123214168474078,0.9823162341490388,-0.2771045877598226,0.4428675561212003,0.13424721267074347,-0.4768476542085409,0.3878180105239153,0.9473297502845526,-0.11720062419772148,-0.7038270900957286,-0.5084969075396657,0.024041579570621252,-0.5057598631829023,-0.3926162705756724,0.5479327314533293,0.863287674728781,-0.5176145262084901,-0.16397900972515345,-0.8330762921832502,-0.8360672788694501,0.5703265811316669,-0.3353717038407922,0.39119456242769957,-0.6813984480686486,-0.825418776832521,0.8689214624464512,-0.038266022223979235,-0.48524999618530273,0.0500030810944736,-0.4337036805227399,-0.7679013754241168,0.03955112351104617,-0.43501470843330026,0.3842132817953825,0.30578292114660144,0.3799937469884753,-0.003470713272690773,0.14995588175952435,-0.5438635493628681,0.3413542187772691,-0.4670939203351736,0.0064943209290504456,0.535930784419179,0.1392109296284616,-0.9598422320559621,-0.9165941281244159,0.33133335364982486,-0.9712499603629112,-0.0689489496871829,0.17377223819494247,-0.05222773877903819,-0.9127635615877807,0.7690315558575094,-0.13241759035736322,-0.6353128333576024,0.22299985121935606,-0.2890999261289835,0.42317268531769514,-0.48111313953995705,-0.5820910991169512,-0.4559503486379981,-0.7081502466462553,-0.8113935608416796,0.5674562403000891,0.9272745731286705,-0.7621630821377039,0.942141461186111,0.04512558691203594,0.88101049605757,0.7947768745943904,-0.14167066337540746,0.887137049343437,0.8262995244003832,0.940747597720474,-0.22786126611754298,-0.10129183158278465,0.38148886151611805,-0.8536488986574113,-0.3191259619779885,-0.3406444638967514,-0.9066899633035064,-0.4366189599968493,0.3685384173877537,0.5409364658407867,0.384349562227726,0.8744051614776254,-0.012113016564399004,-0.17260603560134768,-0.8244055323302746,-0.6446090503595769,-0.5457700807601213,-0.4821018259972334,-0.8306884453631938,-0.8446003613062203,0.6043149069882929,0.5619152998551726,0.35565965063869953,0.28900053910911083,-0.9940546778962016,0.3492588005028665,0.18922257469967008,0.9799401620402932,0.7151453546248376,-0.9167330083437264,-0.22167095029726624,0.7394342622719705,0.5377740175463259,-0.9421786945313215,0.8059190339408815,0.32945215702056885,-0.661731906235218,-0.9947449625469744,0.20383098954334855,-0.8188314498402178,0.7196739288046956,0.3708516205660999,-0.3257142324000597,-0.05841351626440883,-0.06799899274483323,-0.5101058264262974,-0.6608848008327186,0.6105524515733123,0.24934781901538372,0.9286557487212121,0.8329777792096138,-0.9800909291952848,-0.3213208895176649,-0.3964995355345309,0.8570586573332548,-0.07622444862499833,0.5898273764178157,0.9935251409187913,0.43500309623777866,-0.017374930437654257,-0.378629872109741,-0.30064303800463676,0.6624376489780843,-0.47568374732509255,-0.25849734572693706,0.2284634504467249,0.7991117844358087,-0.7235285411588848,0.08232917869463563,-0.6902133710682392,0.028973734006285667,0.4058909467421472,-0.9577800845727324,0.5110662681981921,-0.6731007299385965,0.9355931640602648,0.9655393161810935,-0.9490516623482108,-0.7914678207598627,-0.3920142911374569,-0.23492610454559326,-0.24608678184449673,-0.9142134292051196,-0.531231754925102,-0.7841838388703763,0.08788180537521839,0.8972032810561359,-0.4152607349678874,0.35098337149247527,-0.23935757903382182,0.5625228877179325,0.7687018807046115,-0.33157713804394007,-0.40536449756473303,0.38531211484223604,-0.2495340472087264,0.06000068923458457,-0.5251084766350687,0.11900591757148504,0.9427459253929555,0.3024731078185141,-0.2989823934622109,-0.5408541331999004,-0.046253444626927376,0.07715658005326986,-0.703578561078757,0.4035124210640788,-0.12642897898331285,0.6440051249228418,0.34400333277881145,-0.6694032335653901,-0.007601059973239899,0.9699492962099612,0.6735558877699077,0.21779522486031055,0.4461599919013679,0.2278406023979187,0.5366678931750357,0.44927578372880816,-0.6250928775407374,0.4011689340695739,-0.041772919707000256,-0.19769304431974888,0.7272818246856332,0.5089572235010564,-0.5423274771310389,0.39013659907504916,0.8124984772875905,-0.9567631306126714,-0.2342957193031907,0.012462384067475796,-0.07493620878085494,-0.677744179032743,0.7922114264219999,0.5453413962386549,-0.2180259032174945,0.9371731881983578,0.8025008221156895,0.06614120351150632,0.37242633383721113,-0.8483881875872612,0.5385473421774805,0.20984389632940292,0.20258731860667467,-0.5365024199709296,-0.2956367335282266,-0.5562661602161825,-0.15868269093334675,0.7736176582984626,0.9459439469501376,0.6464922544546425,0.34496659971773624,0.156613374594599,-0.9520943909883499,0.4108246900141239,-0.5301584554836154,-0.4985951357521117,-0.4604234928265214,0.605023808311671,-0.8082069926895201,-0.06966920476406813,-0.685354801826179,-0.3701839973218739,0.24172100890427828,0.6744162747636437,0.8248870181851089,0.19468715321272612,-0.3854849566705525,0.08580120839178562,0.8235459225252271,0.06675136648118496,-0.41747505217790604,-0.04607673129066825,-0.9083549189381301,-0.26488615246489644,-0.6254729381762445,-0.9551962027326226,-0.20902826869860291,-0.0766510171815753,0.22941135289147496,-0.41969269746914506,0.7798988334834576,0.7728054439648986,0.13754391251131892,0.6731845606118441,0.4467154270969331,-0.545562612824142,0.23955938359722495,0.6463497849181294,0.959877141751349,0.900472151581198,0.5042541590519249,0.9001857107505202,-0.5136083071120083,-0.47215453954413533,-0.8146083601750433,0.396841777022928,0.28811658453196287,-0.9900098666548729,0.33652937691658735,0.5172572173178196,0.9887219909578562,0.7155805937945843,-0.20444866456091404,-0.9356068898923695,-0.8024037489667535,-0.7541655139066279,0.7676967401057482,0.5689435433596373,-0.6714384322986007,-0.39378500869497657,0.13450954155996442,0.8605027166195214,0.47338140523061156,-0.6129442150704563,-0.7343345279805362,-0.5655301697552204,0.22384792333468795,0.2130568828433752,0.3375314474105835,-0.6055251033976674,-0.9918613955378532,0.42511543491855264,0.7859715730883181,-0.3961756923235953,0.46833939803764224,0.6931845168583095,0.1959094638004899,0.6240150211378932,0.6791962236166,-0.9201846551150084,-0.09793618880212307,-0.36515345564112067,0.019569084513932467,0.9826386417262256,0.04837879491969943,-0.985901182051748,0.25454403972253203,-0.1520168106071651,-0.8569293105974793,0.3654301920905709,-0.4558264003135264,-0.775454031303525,-0.5788642838597298,-0.06094286451116204,0.6401886660605669,-0.7058550240471959,-0.1975453426130116,-0.6637956704944372,0.733507112134248,0.7028230689466,-0.18271456472575665,-0.33701135916635394,0.14172361744567752,-0.7604552558623254,-0.03807637980207801,-0.4237879812717438,-0.4884710102342069,-0.7897943216376007,0.4829958761110902,0.30983450170606375,-0.7105932338163257,-0.4698208407498896,-0.48974403738975525,0.8890220089815557,0.21230076160281897,-0.9469714350998402,0.8714260375127196,-0.03565540770068765,0.5283216158859432,0.16185179445892572,0.4314475329592824,0.4821641235612333,-0.8878103573806584,0.021691239904612303,0.918795823585242,0.9339397959411144,0.9658680753782392,-0.9346670648083091,-0.3174419580027461,0.3593473662622273,0.034487444907426834,0.6322729396633804,-0.7834360357373953,0.5029177558608353,-0.13432617718353868,0.042403444647789,-0.16000356385484338,-0.7084568422287703,-0.19643216393887997,-0.43448307318612933,0.12561570620164275,-0.6611941824667156,-0.5531713115051389,0.851444068364799,-0.5575302857905626,0.991252492647618,0.6496533500030637,-0.17650440009310842,-0.5234779003076255,0.4060468398965895,0.5777020398527384,-0.8714051269926131,0.39072252670302987,-0.010508501436561346,-0.13734960509464145,0.17039538966491818,0.9112640623934567,-0.619799580425024,-0.7093808841891587,-0.8966989601030946,-0.6106899245642126,-0.7531929207034409,-0.01483799098059535,-0.05726940603926778,0.7419897168874741,-0.5371150034479797,-0.22846528189256787,0.2155633489601314,0.8052271036431193,-0.5976612418889999,0.5401108944788575,-0.9338497016578913,0.08530934480950236,-0.1659907167777419,-0.6276888651773334,0.7080933968536556,0.217467344366014,0.6211943821981549,0.9042225335724652,0.5484507908113301,-0.30089478101581335,-0.684032007586211,-0.9267044267617166,-0.2967286831699312,0.3251417838037014,0.338275333866477,-0.8908331776037812,-0.12011845503002405,-0.08672728110104799,0.44724648632109165,0.22061802074313164,-0.5148167205043137,0.051993129309266806,-0.5394644849002361,0.8430201755836606,0.2949275434948504,-0.14741139858961105,-0.8145856414921582,-0.4807618148624897,0.8805705481208861,-0.2706947335973382,0.9958912841975689,0.4336698786355555,-0.19564430508762598,0.06190091464668512,-0.42062673438340425,0.5897589004598558,0.3697696588933468,0.5961214625276625,0.8665614556521177,0.2353355479426682,0.057170500978827477,0.6446520984172821,-0.5724137765355408,-0.3398635685443878,0.18708820082247257,-0.7654187059961259,-0.04961060592904687,0.2150745508261025,0.7604103689081967,-0.40620672097429633,-0.2632792564108968,-0.8143969960510731,0.060044057201594114,0.2939030872657895,-0.15269883256405592,-0.4500166173093021,0.9771012025885284,-0.341064868029207,-0.2665826384909451,-0.7181566068902612,0.8690774086862803,-0.24502092134207487,0.6263444805517793,0.6044711489230394,0.23360677435994148,0.8928631753660738,-0.2991828150115907,0.3862928319722414,-0.45928850024938583,-0.7699043187312782,-0.23498241184279323,-0.5891543868929148,-0.6509763393551111,-0.5421266099438071,-0.19727610563859344,-0.9833398028276861,-0.7783043528907001,-0.8471098379231989,0.7548833675682545,0.761158199980855,-0.23318703891709447,-0.6368863084353507,-0.1821819394826889,-0.3113253843039274,-0.23873308300971985,0.12100566225126386,-0.33349934965372086,-0.0870834281668067,0.9046246106736362,0.22202821914106607,-0.2660642946138978,0.5214047110639513,0.45646019419655204,-0.7516844910569489,-0.8883580528199673,-0.3226272454485297,-0.7614165144041181,0.23376124678179622,0.5133962412364781,-0.10706235747784376,-0.6345442682504654,0.8826128141954541,0.11836929572746158,0.6104106791317463,-0.20289272954687476,-0.12688082130625844,-0.21796444104984403,-0.3988247802481055,-0.9735153121873736,-0.5940717603079975,-0.4671397730708122,0.9760332866571844,-0.833125401288271,0.7150303674861789,-0.6197539130225778,0.6954134376719594,0.5840496434830129,-0.6265066177584231,-0.9240658767521381,0.7752679516561329,-0.4362795948982239,0.7308057830668986,-0.7887328946962953,-0.4400242790579796,-0.43198626209050417,0.9029081840999424,0.7553284233435988,0.4340721359476447,-0.6427313606254756,0.46174595784395933,0.7435846370644867,0.059306045062839985,-0.9416856812313199,0.12014083098620176,-0.5378654925152659,0.8987839720211923,-0.9681589384563267,-0.7028324510902166,-0.9922255929559469,-0.8696622592397034,0.3270464804954827,0.516512100584805,0.7119599911384284,0.356027549598366,-0.9817802449688315,0.32738765934482217,0.2920810766518116,0.5428126556798816,-0.918008322827518,-0.9457710445858538,-0.9951822720468044,-0.1537038693204522,-0.15394637361168861,-0.12149919755756855,-0.5870796632952988,0.7413992932997644,-0.28945918567478657,-0.4421438993886113,0.9508118182420731,-0.6119762677699327,-0.14740376686677337,-0.2262088730931282,-0.6734762541018426,0.10109388129785657,0.5124617489054799,0.03655644692480564,0.3135954197496176,0.25152931129559875,0.33750841300934553,0.2819119403138757,0.7372574899345636,-0.036481044720858335,0.34040418826043606,0.7509922739118338,-0.30399575363844633,0.8126832190901041,0.14796337205916643,-0.34095796942710876,0.34373794309794903,-0.06070310669019818,0.7632538890466094,0.08825051784515381,0.9324898053891957,-0.6564052472822368,0.019787215627729893,-0.22579141054302454,0.783822672907263,0.9157082783058286,0.8865600018762052,-0.1953048980794847,-0.913079203106463,-0.22664485545828938,-0.7644557128660381,0.943136372603476,-0.6117759230546653,0.9858244904316962,0.4824961586855352,0.7613654653541744,0.8207457363605499,-0.38785027246922255,-0.004564175382256508,0.16685829404741526,0.9282944183796644,-0.8648035279475152,0.9766721846535802,-0.7202795976772904,0.9284492377191782,-0.31307082576677203,0.5004820167087018,-0.7329225386492908,0.8946849214844406,-0.6414463599212468,0.4230850082822144,0.07578686997294426,0.22558799479156733,-0.12232292909175158,0.9305076147429645,-0.1583394822664559,0.863122511189431,0.7183992476202548,0.7480570669285953,-0.4668778367340565,0.25739384116604924,0.7950835167430341,0.12453691195696592,0.6388162635266781,-0.25780724454671144,0.6227664789184928,0.2602730728685856,0.6686088335700333,-0.255916197784245,-0.26320301555097103,-0.003742685541510582,0.5812414125539362,0.6097964304499328,-0.9426466701552272,-0.7519052005372941,-0.9337720228359103,0.4270779173821211,0.7182445777580142,0.9558842568658292,0.8072196212597191,0.3613443886861205,0.5283940709196031,-0.1559093943797052,0.6475535980425775,-0.35112660517916083,-0.3423290210776031,0.9356890069320798,0.1286152540706098,-0.8781072492711246,-0.5906218234449625,0.6097953920252621,-0.5002385652624071,-0.6785019701346755,0.4085455755703151,-0.8869849741458893,0.19652682077139616,0.4216950670816004,0.5483471816405654,0.10709026921540499,-0.8029223904013634,0.17904718266800046,-0.24286691471934319,0.9199587651528418,0.05745434993878007,-0.9053409658372402,-0.2708334820345044,-0.747486955486238,0.2341975960880518,-0.13054040633141994,0.515264751855284,-0.43319760635495186,0.9031956256367266,0.6720596672967076,-0.8383439616300166,-0.5487901126034558,0.8169184452854097,-0.07306227367371321,0.21716253273189068,-0.2778001483529806,0.35474969632923603,-0.9283096278086305,-0.04485840257257223,-0.05870071891695261,-0.055030162911862135,-0.4493241123855114,-0.03405984863638878,0.06047912407666445,-0.10331183671951294,0.4004480545409024,0.40536207938566804,0.8708473783917725,-0.42776477988809347,-0.891768692061305,0.8933960841968656,-0.7128611239604652,0.10011511947959661,-0.25225232308730483,-0.039560568518936634,0.9954795511439443,-0.8746487558819354,-0.1123330919072032,0.4184087663888931,-0.002933414652943611,-0.6224890570156276,-0.9363012611865997,-0.35927103366702795,-0.8386774156242609,-0.9111258718185127,0.3640003362670541,0.6151716522872448,-0.32594466721639037,-0.38596913358196616,0.4232193739153445,0.39398457063362,-0.6105367611162364,-0.6033592242747545,-0.5044415346346796,-0.24299892643466592,0.018042302690446377,0.6118322056718171,0.9235312016680837,0.07152454229071736,0.33091427851468325,-0.8290317538194358,0.39477933291345835,0.28550625685602427,0.27146395947784185,-0.2802684339694679,0.6456101797521114,0.12399948574602604,0.4573046248406172,0.49753100145608187,0.096818040125072,-0.03751838533207774,0.014252672903239727,0.06528655393049121,-0.21768560353666544,-0.8985168365761638,0.8792892713099718,0.7144562476314604,0.5593260591849685,0.2138987365178764,-0.8135522427037358,-0.49297068221494555,0.14135651802644134,0.8189085153862834,-0.8662414755672216,-0.4304647771641612,-0.36132922349497676,0.09147849678993225,0.674731326289475,-0.8621116671711206,0.13153305230662227,-0.47576632210984826,-0.10826500877737999,0.5983706531114876,-0.16841347655281425,0.6850480572320521,0.5483974600210786,0.044205388985574245,0.6245022057555616,-0.3158732671290636,0.48642469430342317,0.4540102877654135,0.2534915190190077,-0.5620271652005613,-0.7161524398252368,0.8086605570279062,-0.3906371286138892,0.2934367717243731,-0.41355505818501115,0.30764344800263643,-0.7620627381838858,-0.42066098656505346,-0.2784647406078875,0.24839070904999971,0.2112789279781282,-0.9742744425311685,0.3070095023140311,-0.8590627294033766,0.27094774413853884,-0.6454030210152268,-0.13879345962777734,0.08647267706692219,-0.12538338638842106,-0.060200268402695656,0.8415766693651676,0.9680013731122017,0.8385370229370892,0.2197065595537424,-0.19268847489729524,0.14247266296297312,-0.6615784568712115,0.006663719192147255,0.4626126140356064,0.3766500800848007,-0.20556224463507533,0.47669187327846885,-0.6719945999793708,-0.2110764104872942,0.6018972909078002,-0.25089933909475803,-0.6697572218254209,-0.8247481416910887,0.8376872213557363,-0.6912051942199469,-0.9824794675223529,0.7137560127303004,-0.545576190110296,0.5840665763244033,0.2074113846756518,0.048803834710270166,0.4175077471882105,0.7473321021534503,0.08809836627915502,0.15658904751762748,0.4267606409266591,0.35273047955706716,-0.6285138409584761,-0.8068713583052158,0.5897264648228884,0.7624793634749949,0.1257474380545318,-0.23137544142082334,0.22720464412122965,0.23149165324866772,-0.2231614077463746,-0.5900529609061778,0.7971538971178234,-0.22537832893431187,-0.15316970413550735,0.7146430481225252,0.9434587964788079,0.6896635163575411,0.01934415102005005,-0.3094015019014478,-0.6823880523443222,0.23716195253655314,-0.45632407953962684,-0.6042655785568058,-0.736572458408773,0.7096224520355463,0.6897104689851403,-0.7429030532948673,0.2512800213880837,-0.23819769313558936,0.5769257810898125,-0.45827680127695203,-0.6378866597078741,0.21616742620244622,-0.565679797437042,0.04735779482871294,-0.7876218017190695,-0.3829410448670387,-0.714600557461381,0.6252360483631492,0.6274744383990765,0.4039295706897974,0.4017183519899845,0.6683675334788859,-0.7857124218717217,0.9716822383925319,0.3173242639750242,0.5890599894337356,0.5312595507130027,0.25660344772040844,-0.9113919124938548,-0.7751346346922219,0.5898425383493304,0.07827266352251172,-0.3374230321496725,0.07921031210571527,-0.5321623287163675,0.6121764709241688,-0.4047988364472985,-0.5122963204048574,-0.6852341289632022,0.5827620490454137,0.7985983458347619,-0.06786583829671144,0.7532422314397991,-0.5266522197052836,0.7778816530480981,-0.8958288938738406,-0.38906320836395025,0.4990224679931998,-0.31536458106711507,0.9951336593367159,0.9480774225667119,0.5725551187060773,-0.8202346079051495,0.07720582187175751,0.6541764661669731,0.799153077416122,0.0767509350553155,0.5103499949909747,-0.8389837425202131,0.4918026733212173,-0.5564352734945714,-0.6103173089213669,0.7857807362452149,-0.40397734427824616,0.267545772716403,0.8121294789016247,-0.29332855343818665,-0.21573240961879492,0.7233798699453473,0.40474129701033235,0.8386084092780948,0.5431663878262043,0.5904578762128949,-0.5522448290139437,0.9691314180381596,0.30115764774382114,0.7828689180314541,0.5123781799338758,-0.9109550658613443,-0.37947546876966953,0.5328951845876873,0.5160083086229861,-0.18966324720531702,0.5868225740268826,-0.7866939501836896,-0.6865104623138905,-0.6500731501728296,-0.6165689574554563,0.7147588832303882,0.7080036913976073,-0.6292078923434019,0.5767124663107097,0.6695590154267848,0.4215408470481634,0.7560854800976813,-0.9536676183342934,-0.8350409143604338,0.8317344607785344,-0.44203031435608864,-0.23379415459930897,-0.16748241009190679,0.9212155318818986,0.9227598896250129,-0.7528880522586405,0.6786439931020141,-0.35142922028899193,0.6919886390678585,-0.12167151598259807,-0.6683460623025894,0.6779123079031706,-0.589249256066978,-0.7545313755981624,-0.30526217445731163,-0.5892932219430804,-0.7221753648482263,0.7507686051540077,-0.659349778201431,0.5113688469864428,0.5740016000345349,-0.07910034758970141,-0.34000148018822074,-0.17195681761950254,0.7869094144552946,0.1279929052107036,-0.9905223320238292,0.9997915192507207,0.19015275547280908,0.10691330302506685,0.36447780579328537,-0.7372320964932442,0.012840845622122288,0.06404552701860666,-0.3930060928687453,-0.5456728371791542,-0.15839642425999045,-0.5672083790414035,-0.8245872994884849,-0.9723695069551468,0.7818686803802848,0.9592201039195061,-0.11706048622727394,0.9349502404220402,0.28485747799277306,-0.1600608411245048,0.9370719399303198,-0.8101661088876426,-0.4844342437572777,-0.9174680435098708,0.4207185138948262,-0.20231710793450475,0.054712665267288685,-0.6662506107240915,0.7610019585117698,-0.24598906375467777,-0.9501030193641782,0.48209737380966544,-0.7304058060981333,-0.06530930241569877,0.0021610883995890617,-0.125202895142138,0.7987415781244636,0.38819996640086174,-0.4994233390316367,-0.5091825225390494,0.1968859056942165,0.2664695046842098,-0.18664709525182843,0.453744403552264,0.5708122905343771,-0.9766220105811954,0.8628458618186414,-0.5372040481306612,-0.6367499381303787,0.9933912078849971,0.08982437243685126,-0.5207535475492477,-0.5331002832390368,0.1479981653392315,-0.9773994227871299,-0.2546532121486962,-0.5715214181691408,-0.5708817052654922,0.8600054322741926,0.8474425659514964,-0.6187161351554096,-0.8481501736678183,0.0636320854537189,-0.8973931511864066,-0.5881249634549022,-0.9764315611682832,-0.5413186415098608,0.7071193289011717,-0.8009243733249605,-0.21698882337659597,0.8576847314834595,-0.9158169534057379,-0.47344280080869794,0.6004297309555113,0.9631060152314603,-0.8956345617771149,-0.734427965246141,-0.4073751298710704,-0.46631015092134476,0.5569455921649933,-0.306711436714977,0.5938581707887352,0.9735367954708636,-0.3006911859847605,-0.7700900076888502,0.6493220487609506,0.9940399462357163,0.07231516856700182,-0.9574501807801425,-0.21400826144963503,0.6902656718157232,-0.5937945856712759,-0.7121026203967631,-0.06289359414950013,0.7266376046463847,0.1280195191502571,-0.10852526454254985,-0.9512538751587272,-0.32612751610577106,0.4117459240369499,0.27154743019491434,0.40261503029614687,-0.5869963685981929,-0.7459174571558833,0.07347520580515265,0.26693497551605105,-0.32530992524698377,-0.10983123118057847,0.2979001607745886,-0.9062650185078382,-0.7402840359136462,0.6551162055693567,-0.14403292955830693,-0.9856425491161644,-0.24133911216631532,-0.8047979916445911,-0.6079041911289096,-0.581982193980366,-0.33306095702573657,-0.2589598335325718,0.7210050560534,-0.567679732106626,-0.9153048703446984,0.5959403282031417,-0.333991339430213,0.33848655549809337,-0.8384843193925917,-0.9589315759949386,0.23120895447209477,-0.16331651201471686,0.2978293066844344,0.5693030380643904,-0.9363629114814103,0.9097514324821532,-0.6819858448579907,0.4374716063030064,0.6249539693817496,0.2431357679888606,-0.40314717404544353,-0.007796948775649071,0.8531053033657372,-0.09170824568718672,-0.5168892261572182,-0.8184620589017868,-0.5280030248686671,-0.2498566978611052,-0.12266494007781148,-0.3402968943119049,-0.1443305783905089,0.5565257566049695,-0.9911636910401285,-0.9137585409916937,0.2752122823148966,-0.738363073207438,-0.556596654932946,-0.2330476096831262,-0.06527248211205006,-0.8850501975975931,-0.24781984323635697,0.38684215722605586,-0.5217683278024197,-0.685644093900919,-0.7785646547563374,0.9564772308804095,0.09667452611029148,-0.942855297587812,0.02517217630520463,-0.043935143388807774,0.8608993710950017,0.44261970231309533,0.7138292258605361,0.06275744503363967,0.8469704114831984,0.6410786914639175,-0.6072584250941873,0.4178805402480066,0.3265815023332834,0.3490016311407089,0.7199038630351424,0.3921703388914466,0.169352310243994,-0.01927890256047249,0.7635586783289909,-0.4515982139855623,-0.07366240350529552,-0.33721625339239836,0.6426123618148267,0.29444051859900355,-0.008874899242073298,0.2142139934003353,0.9915711549110711,0.7868789695203304,-0.4236747198738158,0.6687612044624984,-0.06403892394155264,-0.07091544335708022,-0.9970249426551163,0.061207274440675974,-0.2614586092531681,-0.7870642063207924,0.34118476789444685,0.976879752241075,-0.9784448142163455,0.6075337585061789,-0.5176692521199584,0.15016169380396605,-0.5401130076497793,-0.6054081972688437,0.305531966034323,-0.38846920197829604,0.36118139885365963,0.20782429538667202,-0.7914391001686454,-0.20984530495479703,-0.3952484903857112,0.26570915151387453,0.029298841953277588,-0.4243884696625173,0.12044122163206339,0.08483780454844236,-0.15933487191796303,0.6017566798254848,0.9786127698607743,-0.3931819163262844,-0.6958520719781518,-0.2545390259474516,-0.20624214597046375,0.050355097744613886,-0.4670950276777148,-0.44847175292670727,0.510027774143964,-0.8541662436909974,0.6567655317485332,-0.18095935694873333,-0.43949645198881626,0.5525726992636919,0.3600726365111768,-0.1090632420964539,-0.23247929941862822,-0.5507519049569964,0.5539245679974556,-0.4411178817972541,0.39033347088843584,0.03235117578878999,0.9776095901615918,0.9627068848349154,0.12731580017134547,0.029721747618168592,-0.631576968356967,-0.4260129416361451,-0.7170369545929134,-0.819613492116332,-0.7008942635729909,0.8596184891648591,0.9803093848749995,-0.3051489400677383,-0.19028816185891628,0.06129081128165126,0.32018194906413555,-0.020595395006239414,-0.9410300580784678,0.4616167261265218,-0.6780642364174128,-0.7542311837896705,-0.014890471007674932,-0.11403008690103889,0.3118569189682603,-0.10953942872583866,0.5208084192126989,-0.0675669782795012,0.6390074691735208,0.7990152197889984,0.8874673498794436,0.7722641997970641,0.942085400223732,0.39484754810109735,-0.3135596662759781,-0.4117067651823163,0.544778776820749,-0.9197078789584339,-0.4948424128815532,-0.044672582764178514,-0.412758419290185,-0.47495408821851015,0.5439981492236257,0.7893144870176911,-0.20152786560356617,0.8348188842646778,-0.9989707274362445,0.3379283007234335,-0.7191413878463209,0.6185632511042058,-0.973370413761586,0.5131156085990369,-0.8881862298585474,0.24987553199753165,-0.8698742929846048,-0.20680827973410487,0.01207113591954112,-0.4905706853605807,-0.7971840272657573,-0.23193943174555898,0.3438847786746919,-0.7336958851665258,-0.5747205587103963,-0.09444406116381288,-0.44296117359772325,0.5570780509151518,-0.4548644106835127,0.8022339683957398,-0.7582626175135374,0.7124317209236324,-0.9234262793324888,-0.3866372983902693,-0.8424872406758368,0.21139749372377992,0.8784284288994968,-0.2087565055117011,0.06728709302842617,0.27853351132944226,0.41995495557785034,0.2284816475585103,0.07535758893936872,0.6099532814696431,-0.8349748272448778,-0.410669210832566,-0.46046517975628376,-0.4286953969858587,-0.5381465665996075,0.4374833321198821,0.14188505988568068,-0.2056358940899372,0.9245748757384717,0.5157408639788628,-0.6269491757266223,0.9133227299898863,-0.9440935510210693,-0.4346773657016456,0.7470204816199839,-0.7201623674482107,0.38627505814656615,-0.20997833786532283,-0.23530265409499407,-0.8210768071003258,-0.48946990026161075,0.15390355605632067,0.04753327975049615,0.6462432593107224,0.020921731367707253,-0.26350442646071315,0.5373124177567661,0.2562365825287998,-0.7430280386470258,-0.6921556298620999,-0.006568192038685083,-0.4385208496823907,0.7619504393078387,0.8119409778155386,-0.7341990675777197,-0.4567844681441784,-0.458026007283479,0.2606428717263043,0.6538816806860268,0.13452731911092997,-0.1541353678330779,-0.447451279964298,0.07599972514435649,0.11101967189460993,-0.380216452293098,-0.3113029720261693,-0.3137028431519866,0.7752357027493417,-0.08361567603424191,-0.9236875949427485,-0.2085717893205583,0.140355855692178,-0.4831823003478348,-0.8273831349797547,-0.41128865303471684,0.9776839981786907,-0.9660730198957026,0.29836681950837374,0.49610369093716145,0.384528785943985,0.8827803255990148,0.49346916610375047,0.751679920591414,-0.4032379472628236,-0.06172204902395606,-0.5197556954808533,0.4297278169542551,0.912160006351769,-0.5204175915569067,-0.968677927274257,-0.4387959982268512,-0.9586762967519462,-0.984837029594928,-0.7008702331222594,-0.5073568974621594,0.7358670951798558,-0.3900879267603159,0.6544097834266722,-0.44772318797186017,0.055616370402276516,-0.020433061756193638,-0.792122867424041,0.06913530407473445,0.14894512249156833,-0.6491770939901471,-0.9753711773082614,-0.7422745279036462,-0.2519750432111323,-0.5987894833087921,-0.6619664547033608,0.8773903846740723,0.01831392152234912,-0.24029274564236403,0.7740747048519552,0.7799993236549199,-0.8783152867108583,-0.44842555606737733,0.255950546823442,0.6376025979407132,0.03977411752566695,-0.33092648396268487,0.5494367713108659,-0.18992927856743336,-0.19759507849812508,0.845357246696949,0.1702943374402821,-0.44098885636776686,-0.050245221238583326,0.666908101644367,-0.10071623045951128,0.30008490197360516,-0.2909754333086312,-0.016281465534120798,-0.8837812305428088,-0.8852166095748544,-0.24427256593480706,-0.8325567818246782,0.8875474873930216,0.1266760560683906,-0.05869372794404626,0.5784825338050723,-0.6139902956783772,-0.7448637238703668,0.6609178087674081,0.9622095781378448,0.9947893372736871,-0.8536658422090113,-0.20406395569443703,0.8775186282582581,0.9317777459509671,0.4783529960550368,-0.9602411733940244,-0.18580771051347256,-0.9257493973709643,0.4887589868158102,0.8853779258206487,-0.39049974409863353,0.28818832663819194,-0.5444781468249857,0.23255643248558044,0.5194044639356434,0.45723085990175605,-0.031133882235735655,-0.2856449908576906,0.26912348298355937,-0.4784725774079561,0.9957425622269511,-0.5229314933530986,0.3506570109166205,0.9561476912349463,0.0063765631057322025,-0.12243709061294794,-0.7658802829682827,-0.12197112385183573,-0.12889742013067007,-0.16841397294774652,0.8124869391322136,0.48839544504880905,-0.28497840790078044,0.08326854137703776,-0.5204615565016866,-0.8700617006979883,0.13395370356738567,0.7955923932604492,-0.44168945541605353,0.4333404041826725,-0.5029930714517832,-0.5988491154275835,0.6505287801846862,0.8176713101565838,0.8507402148097754,0.47917089657858014,-0.28365467255935073,0.09530035918578506,-0.7628162545152009,-0.6670264541171491,-0.9428669451735914,-0.7294572228565812,0.537887186743319,0.6970019498839974,0.7347333668731153,0.39131109369918704,-0.013073787093162537,-0.9535356853157282,-0.8883601282723248,0.5143439481034875,0.787106994073838,-0.09431552607566118,0.664888592902571,0.521478190086782,-0.9602262261323631,0.46440325723960996,-0.6412668074481189,-0.9762030080892146,0.28884270787239075,0.6046108128502965,-0.1493965182453394,0.6774561894126236,0.8840508405119181,0.5976254385896027,-0.6294354177080095,-0.7664702036418021,-0.246051836758852,0.233635357581079,0.6641887328587472,0.5256976764649153,-0.7566731651313603,-0.0011157416738569736,-0.9325317875482142,-0.0007409499958157539,0.6833466840907931,0.34752878407016397,-0.7177959945984185,-0.054238943848758936,-0.3153353179804981,0.2970816087909043,-0.535655643325299,0.3048202651552856,0.8207547650672495,-0.604646357242018,-0.06242048414424062,-0.5653668846935034,-0.5328945517539978,0.3841593745164573,0.5707897511310875,0.03120614355430007,-0.3156324974261224,0.272611147724092,-0.0662331678904593,-0.2311318307183683,0.06035763816908002,0.11033329274505377,-0.1681207031942904,-0.6198219512589276,0.3449595561251044,0.3411574838683009,0.5793111193925142,0.2611348913051188,-0.7564670438878238,0.557173608802259,-0.662722859531641,-0.5678420229814947,0.7123424215242267,-0.09820082550868392,-0.3766946461983025,0.8339589261449873,0.615266140550375,0.8862532344646752,-0.0317633836530149,-0.5614520343951881,0.5083381957374513,-0.09933104738593102,0.7780352621339262,-0.0037995576858520508,0.08755751233547926,0.49504540069028735,0.99813746009022,0.44725196342915297,0.28144458308815956,-0.8096698834560812,-0.6368123409338295,-0.4310049060732126,0.3623198480345309,-0.4740606863051653,-0.47778345737606287,0.03392218053340912,0.0018017902038991451,0.02216149540618062,0.10938729904592037,-0.02978123491629958,-0.45251014875248075,0.3955246447585523,0.7663740366697311,-0.45104072662070394,-0.4200929384678602,-0.6140206414274871,0.02635040320456028,0.8404862401075661,0.6598853184841573,0.19269480276852846,-0.6838483377359807,-0.6330384160391986,0.8931489908136427,-0.9195120874792337,0.7417571227997541,-0.039476831909269094,0.49641955178231,-0.8875124454498291,-0.42179250810295343,0.9983167401514947,-0.2928909221664071,0.7205773261375725,0.9681282229721546,0.8850623117759824,-0.309098404366523,0.7731701689772308,0.8467852249741554,-0.6690108524635434,0.8931727530434728,0.7597002685070038,-0.5308800549246371,0.637613105122,-0.07563866628333926,0.30063625797629356,-0.04648491507396102,0.6586611955426633,-0.28878428554162383,-0.1252211951650679,0.24533948954194784,-0.1811602576635778,0.33745832554996014,0.5613412014208734,-0.8352386332117021,-0.2575865816324949,0.2743859812617302,0.43513305950909853,-0.22003382164984941,0.10095764929428697,-0.15028319926932454,-0.5624235314317048,0.43347422406077385,0.26875400030985475,-0.07600830588489771,-0.8969137850217521,-0.2231619250960648,0.43919479427859187,-0.4599241013638675,0.5068672490306199,-0.835846396163106,-0.2725732889957726,-0.024656054098159075,0.049374018330127,0.1565387388691306,0.8745471611618996,-0.9427138091996312,-0.739557234570384,0.041677375324070454,-0.9319583857432008,-0.749476111959666,-0.9859063066542149,0.7657339251600206,-0.18589324736967683,0.9449966601096094,0.8979102037847042,-0.1537870429456234,-0.9408882684074342,0.1445907661691308,-0.3080864455550909,-0.6501606898382306,-0.42461983300745487,-0.05032330611720681,-0.41377478232607245,0.6865241047926247,0.20565070677548647,-0.15905493590980768,0.9891461580991745,-0.8518116744235158,-0.5046834447421134,-0.01953223766759038,0.5015915972180665,-0.8108348590321839,-0.9508278272114694,0.7026956840418279,0.6841704375110567,0.6832433538511395,0.030055463314056396,-0.5227320892736316,-0.8537012045271695,0.2751119853928685,0.2976236124522984,-0.3292548945173621,-0.4837374361231923,0.44744257256388664,-0.9309261543676257,-0.2620932920835912,-0.47807157319039106,-0.1081114774569869,-0.21678196359425783,0.7124612242914736,0.23678178247064352,-0.5736120557412505,0.16294847056269646,0.5761065231636167,-0.2963566416874528,0.7710504098795354,-0.7743783858604729,-0.3103018244728446,-0.4320811335928738,-0.14587756479158998,-0.985345910768956,0.6013855691999197,0.6873808894306421,0.0907724741846323,0.8985632173717022,-0.8776696547865868,0.9544510669074953,-0.5045585231855512,0.6332592591643333,0.37757348688319325,-0.6770823011174798,0.19896548567339778,0.21897409902885556,0.32722985884174705,0.8143810210749507,0.5908689298667014,-0.26006184983998537,-0.8523506536148489,0.41631024377420545,0.4803649438545108,0.6971211209893227,-0.8117271647788584,-0.5881732879206538,-0.5616033561527729,0.7466577030718327,0.7243513078428805,-0.820776185952127,-0.26811567693948746,-0.25286085391417146,-0.06093345955014229,-0.5758499037474394,0.4091706797480583,0.3781592301093042,-0.1779016312211752,-0.896668788511306,-0.3238018178381026,0.27397951669991016,0.9659169595688581,-0.7716296133585274,-0.4839677633717656,0.7217436777427793,-0.03763987310230732,-0.6231854050420225,0.6075321137905121,0.3156634601764381,0.9501219349913299,-0.39951942721381783,0.5588062102906406,0.2547198059037328,-0.6603364087641239,0.49196262285113335,0.5188361979089677,-0.5400049085728824,-0.8053382448852062,0.26505512837320566,0.1522446540184319,-0.6881656404584646,0.7772788503207266,-0.4774716356769204,-0.6722619272768497,-0.29391477070748806,-0.3740967861376703,0.9093037433922291,0.859705843962729,0.8404649579897523,0.7458963156677783,0.16508114524185658,-0.6336119947955012,-0.31022411258891225,-0.8405009643174708,0.5050362139008939,0.0786918462254107,0.6187003855593503,-0.4045627824962139,0.42648066533729434,0.25259527331218123,0.5640510553494096,0.9323521871119738,-0.7969291373156011,-0.2917067678645253,-0.9951894008554518,-0.9903413457795978,0.5176047743298113,-0.24745021108537912,0.6831654356792569,0.5767093785107136,-0.40378259029239416,-0.601407031994313,0.021203591022640467,-0.13475390849635005,0.22242977796122432,0.22661840869113803,-0.008765484672039747,0.07010772591456771,-0.2754478328861296,0.036023149732500315,-0.39924009004607797,-0.6867331797257066,0.8790563344955444,-0.2512806807644665,0.8760972400195897,0.6401254846714437,0.40339202200993896,0.639605840202421,-0.342571543995291,0.19276635954156518,0.9964788728393614,0.27429596660658717,-0.22833098750561476,-0.9639728139154613,-0.8027806775644422,-0.6797342109493911,-0.28312965482473373,-0.038325496949255466,-0.6121204202063382,0.5414421549066901,-0.5313022774644196,0.6575055816210806,0.05527003714814782,0.484733606223017,-0.6535455002449453,0.15392356552183628,-0.14151708269491792,0.38659158907830715,0.6365695460699499,-0.4724028422497213,-0.2988615492358804,0.41788992611691356,-0.10482922336086631,0.9812219655141234,-0.5702122775837779,-0.36868757754564285,0.010089158080518246,-0.7957575144246221,0.9875156637281179,0.6608588714152575,0.7365095089189708,0.6089699091389775,0.14112797565758228,-0.6618898645974696,-0.9984340691007674,0.8226512689143419,-0.7650273661129177,-0.3804272231645882,0.7866012426093221,-0.4249292309395969,-0.17141376994550228,-0.795111523475498,-0.15722306771203876,0.21334211388602853,0.712091944180429,-0.1716927643865347,0.5046179881319404,0.13723431341350079,-0.7841836889274418,-0.45528252236545086,-0.75175118772313,0.039849847089499235,-0.0031248261220753193,0.1976963710039854,-0.996762786526233,-0.03763174079358578,0.7886136537417769,0.7936695530079305,-0.44100124295800924,0.6984373331069946,0.7362411702051759,0.38568826392292976,-0.3234786563552916,0.39665465150028467,0.5157779473811388,-0.32810462545603514,-0.5757075236178935,-0.5067689209245145,0.6200543460436165,-0.43997999373823404,0.35429759323596954,-0.9773660874925554,-0.12828615540638566,0.6472424394451082,-0.6279745092615485,0.27003098698332906,-0.8953990172594786,-0.2829290088266134,-0.9770049480721354,0.161972819827497,-0.35739833815023303,-0.5024043065495789,-0.1789223263040185,-0.12050737999379635,0.09023203141987324,0.7440732629038393,-0.7815745193511248,-0.37490222323685884,-0.9534081863239408,0.17906362330541015,0.6260109622962773,0.13990213489159942,0.20641239685937762,-0.972955172881484,0.2523644189350307,-0.6717092548497021,-0.14658661233261228,-0.9660432823002338,-0.2154270689934492,-0.2879380569793284,-0.17670847102999687,0.17115732468664646,0.6073633753694594,0.16932931821793318,-0.04890060843899846,0.14234329340979457,-0.10054775094613433,0.6495532752014697,0.4005132573656738,0.09530902979895473,-0.7582035902887583,0.6023496161215007,0.4218049827031791,-0.540871764998883,-0.013570781331509352,-0.7328879591077566,-0.22162423422560096,-0.48767940467223525,0.6138208680786192,0.7312605571933091,-0.36526805674657226,-0.5631167092360556,-0.7960963463410735,0.38330732099711895,0.8238755743950605,0.6883720415644348,-0.42812793888151646,0.6033096229657531,0.062232914846390486,-0.9339898400940001,0.8894282830879092,0.4346165801398456,-0.7539035910740495,-0.037717314437031746,-0.23271278804168105,0.576513163279742,0.3608696311712265,-0.8787615778855979,-0.8188955602236092,-0.8129757549613714,0.6082918350584805,0.25154705066233873,0.7772476854734123,0.6366264573298395,-0.8964365068823099,-0.8843818609602749,-0.5613733720965683,-0.05280666006729007,-0.040395628195255995,-0.060766417533159256,0.517518816050142,0.9798278999514878,-0.40343865333124995,0.38654420571401715,0.8371881451457739,0.10693476209416986,-0.736865215934813,-0.17817753041163087,0.3176955543458462,-0.40014152554795146,-0.014800565782934427,0.3449990274384618,-0.7187566300854087,0.5222009075805545,0.6488185035996139,-0.41400455636903644,-0.5295410705730319,0.44642529683187604,0.610576759558171,0.3580009122379124,-0.232252876739949,-0.3272345568984747,-0.31653970712795854,-0.5868800608441234,0.04969117883592844,0.28429973078891635,-0.8157149953767657,0.686321560293436,-0.5549481511116028,0.38112064031884074,0.8762352988123894,-0.6097571235150099,-0.7413400383666158,-0.6561450501903892,-0.5254019484855235,0.19293760880827904,-0.7787995836697519,-0.05616658227518201,-0.5094375065527856,0.5942482948303223,0.48784338776022196,-0.6656150561757386,0.05958779156208038,-0.14732045074924827,0.38876131270080805,0.01127641974017024,0.5564472349360585,-0.02309553837403655,0.6645276499912143,-0.6523300278931856,0.9751181448809803,0.7817104104906321,0.2607451514340937,-0.9299279013648629,-0.7188887293450534,0.28634067438542843,-0.646172774489969,0.45260873064398766,-0.42610810650512576,0.5865621911361814,0.820305582601577,0.76374567206949,0.05453473189845681,0.27415020763874054,-0.12599877081811428,0.42482183733955026,-0.5147833428345621,0.6459287633188069,0.43148942990228534,-0.7055650125257671,0.079962023999542,0.14080720953643322,-0.2480478067882359,0.3915054560638964,0.5226331981830299,0.2254432002082467,-0.4343097829259932,-0.671359674539417,0.303499688860029,0.33797553088515997,0.1765534207224846,-0.23427499551326036,0.4561125189065933,-0.7921575466170907,-0.846192754805088,0.5817077527754009,-0.005919213406741619,-0.6924689989537001,0.392420066986233,0.8692755908705294,0.1749233822338283,-0.3734132251702249,0.1507553239353001,-0.9541590814478695,0.11646877182647586,0.6653261301107705,0.11010108701884747,-0.534805491566658,0.6407032683491707,0.12755568511784077,0.6487089809961617,-0.28144782967865467,-0.37361365696415305,-0.30166669376194477,0.62493492430076,0.13018677243962884,0.9625688102096319,-0.5540836346335709,-0.9620006587356329,-0.8495088554918766,0.8142798063345253,-0.74597849836573,-0.41020990815013647,0.7725211777724326,0.25271608494222164,0.24485414940863848,-0.3797009503468871,-0.921423842664808,-0.32416523480787873,-0.8075344385579228,-0.0723703671246767,-0.03921950934454799,-0.16463468922302127,-0.09636227926239371,0.7703691474162042,-0.12121858168393373,-0.7889489410445094,0.06124240858480334,-0.12227410171180964,-0.010620254091918468,-0.11669038981199265,0.14846092648804188,0.20875766780227423,0.8472033026628196,0.8396489736624062,0.4710045722313225,0.1481430963613093,0.40348051209002733,-0.9575616368092597,-0.6542215314693749,-0.0333491088822484,-0.8607830945402384,-0.3919212552718818,-0.01612521056085825,0.0539250448346138,0.14397039404138923,-0.6349960016086698,0.4550300957635045,0.3233178798109293,-0.9831001837737858,-0.6535481498576701,0.37413734290748835,0.747398738283664,-0.5209719580598176,0.16109767649322748,-0.9984224941581488,0.5835662265308201,0.5054785190150142,-0.25071719102561474,-0.5537245790474117,0.18660790752619505,0.9724165177904069,-0.8774271518923342,0.2486036280170083,-0.21265532774850726,-0.26700706453993917,0.5839863275177777,-0.4334665662609041,-0.7310184072703123,-0.08799490612000227,0.09578044526278973,-0.4837099825963378,-0.9009219007566571,0.6498726522549987,-0.7731092623434961,0.16100354632362723,-0.9276754725724459,-0.5455927951261401,0.34454718325287104,0.39282649429515004,0.32392198080196977,0.8573687928728759,-0.09837733581662178,0.5043131574057043,0.17537211207672954,-0.4127009869553149,0.07197284419089556,0.8844763855449855,0.533499987795949,-0.5682442290708423,0.5981252971105278,0.5157124791294336,0.5880333292298019,0.18841343652457,0.6254159929230809,0.5722020636312664,-0.7944667702540755,0.004369152709841728,-0.034213073551654816,0.7714447127655149,-0.7745950636453927,0.5617996146902442,-0.4098599227145314,-0.02364915842190385,0.7222882630303502,-0.5254661440849304,-0.14730385644361377,0.21022463170811534,-0.3159325085580349,-0.72144731041044,-0.38408304704353213,-0.5924615422263741,-0.48383447993546724,0.41829268215224147,-0.496967286337167,0.5545652182772756,-0.9795343559235334,0.843888255301863,-0.4822362894192338,-0.5260187545791268,-0.8274753433652222,0.3521014219149947,-0.2870597909204662,-0.6526436833664775,-0.4452119255438447,0.5629668836481869,-0.09244715189561248,-0.15251615829765797,-0.4505126252770424,0.03647166956216097,-0.3589054550975561,-0.12600091565400362,-0.2968454393558204,-0.8064224161207676,-0.4200306190177798,-0.010995360091328621,0.5642656530253589,-0.7865777467377484,-0.20072840619832277,-0.496890380512923,-0.06793461367487907,0.12493460159748793,0.9679089598357677,0.8087824620306492,0.5118512553162873,-0.9232683964073658,-0.5144858481362462,0.5543283992446959,0.6714717098511755,0.8260318455286324,0.1808200036175549,-0.47157526621595025,0.7343694777227938,0.16492777550593019,-0.9093496138229966,0.106789480894804,-0.5705157401971519,-0.5440521957352757,-0.3801245531067252,-0.15053542330861092,-0.03713767370209098,-0.8598063248209655,-0.9389794319868088,-0.5446358220651746,0.826817624270916,0.6182161401957273,0.7898810608312488,-0.5574183147400618,-0.36939983582124114,0.6917503019794822,0.5051589505746961,0.46440374944359064,-0.9864994492381811,0.4413188542239368,0.8646937669254839,0.8080954453907907,-0.12890456011518836,-0.9161291252821684,0.23180640768259764,0.21803040523082018,-0.2308069164864719,0.21104050893336535,0.7706958907656372,0.7578379958868027,0.8937909435480833,-0.45468516228720546,0.7192468615248799,0.4495529723353684,0.34149879729375243,-0.865008307620883,0.616865836083889,-0.6107078194618225,-0.9774900753982365,0.01772399665787816,-0.05045507848262787,0.7969352565705776,0.43545927619561553,0.7311793561093509,0.6387194753624499,-0.7827882166020572,-0.6023542350158095,-0.14207475446164608,0.9218307589180768,0.13024523621425033,-0.43752085510641336,-0.6172503447160125,0.8607154451310635,-0.6543880398385227,-0.6827959413640201,-0.10138820763677359,0.30935282772406936,0.6176257710903883,-0.2508993921801448,-0.09763138554990292,0.7794965798966587,-0.7646821779198945,-0.2324970280751586,0.1562521350570023,0.030838150065392256,-0.21091204602271318,-0.2645722012966871,0.46005137683823705,0.6977858413010836,0.24027193756774068,-0.10813174676150084,-0.47182616125792265,0.21403413452208042,0.26486649410799146,0.14598685456439853,-0.8997787828557193,-0.0685470150783658,0.30862889997661114,-0.8007012875750661,-0.8493948671966791,-0.9447123785503209,-0.9680027072317898,0.5774477333761752,0.9565010764636099,-0.6593730505555868,0.37033163756132126,0.2654923410154879,0.13334959093481302,-0.2627252293750644,-0.31698469212278724,0.8367177322506905,-0.8349214401096106,0.8570577474310994,0.5718954135663807,-0.7775150816887617,0.23235555458813906,-0.18900060513988137,0.27178296027705073,0.09541700826957822,0.5697081387042999,0.5679891449399292,-0.9575293487869203,-0.34066756907850504,-0.25255453400313854,-0.33194606890901923,0.807585340924561,0.13475827174261212,-0.7732268832623959,0.2827411415055394,-0.6735062473453581,0.7227284936234355,-0.8461672398261726,-0.08084457041695714,-0.3456150349229574,-0.5217465707100928,0.07475195359438658,-0.7206158330664039,0.0873420494608581,-0.5660068592987955,0.02912186598405242,0.5602738652378321,-0.20756815653294325,0.7405884582549334,0.29468465596437454,-0.955183545127511,-0.1615540962666273,0.3268466703593731,-0.7043200838379562,0.6334873246960342,0.2148325787857175,-0.4358723210170865,-0.3478569439612329,-0.5629472299478948,-0.9823487033136189,-0.6806990499608219,-0.9174016145989299,0.6931471927091479,0.1576822381466627,0.6028638710267842,-0.9507515490986407,-0.9373872526921332,0.9774506487883627,-0.4371032025665045,0.7838617307133973,0.3634524564258754,-0.2665266031399369,0.8515022001229227,0.2930632852949202,0.7318623764440417,0.8594226087443531,0.9480775892734528,0.9339771149680018,-0.21116452477872372,-0.7119068140164018,-0.628318780567497,-0.7119219889864326,-0.990617707837373,-0.8357913549989462,-0.15972070442512631,-0.503785029053688,-0.723323579877615,-0.7194548984989524,0.64422198664397,0.48188297310844064,0.2362927282229066,-0.9303208361379802,-0.6243266616947949,-0.7354400013573468,-0.07846594136208296,-0.8994002621620893,0.6497931419871747,-0.7565027796663344,-0.2428959454409778,0.4238570728339255,-0.2360834339633584,0.6855526426807046,0.4811643995344639,0.9938814132474363,-0.46659096516668797,-0.5015439447015524,-0.4860779852606356,0.5948749133385718,0.16035193065181375,0.6841879533603787,-0.6008425275795162,0.07732966030016541,0.8864828995428979,-0.4861372751183808,-0.40568026900291443,0.7795923203229904,-0.2517842659726739,0.9961865171790123,-0.25145167857408524,-0.8364286199212074,-0.8742352495901287,-0.46976158441975713,0.059652617666870356,-0.9854289959184825,0.03233387181535363,-0.6964664310216904,0.10455110529437661,-0.3197351531125605,-0.2878488078713417,-0.35065467562526464,-0.632392066065222,-0.5195207740180194,-0.9407982919365168,-0.37349585071206093,0.20038399985060096,0.9859777591191232,-0.8686032649129629,0.20747399562969804,-0.009672564920037985,0.12837058817967772,-0.05405000131577253,0.28954403940588236,0.21704728715121746,0.7639075824990869,-0.42756926687434316,-0.9588822657242417,0.771818611305207,0.2899752091616392,0.04501336021348834,0.9730585739016533,-0.6866678930819035,0.16152601456269622,0.8425059979781508,-0.6544463755562901,-0.10768293170258403,-0.6296759429387748,-0.3321062275208533,0.6285960813984275,0.526282942853868,-0.8212338127195835,0.01322202105075121,-0.2744505889713764,0.1596910641528666,0.2739315936341882,0.03684958582744002,-0.8322355099953711,-0.7658343999646604,-0.22665999736636877,0.04384584631770849,-0.4861410250887275,-0.24939750647172332,-0.06392864231020212,0.04746662639081478,-0.5853988672606647,0.527291270904243,0.488246978726238,0.2449341332539916,-0.879826373886317,0.09103474952280521,-0.20639285119250417,-0.06164837256073952,0.2581272292882204,0.22434605937451124,-0.47037576138973236,-0.15933954762294888,0.46934351697564125,0.4881594539619982,0.4794885599985719,-0.09703454002737999,-0.09530167607590556,-0.25271519972011447,0.716881035361439,0.4566353429108858,0.09940016688778996,-0.701812690589577,0.43337036250159144,-0.6300594746135175,0.8596277483738959,0.8504749839194119,-0.6227679853327572,-0.5564677813090384,-0.5479773543775082,-0.5471229157410562,0.48424919275566936,-0.2841663025319576,0.4767271294258535,-0.2951689241454005,-0.15343689545989037,0.7782874926924706,0.6785290744155645,-0.349784170743078,0.29909188114106655,-0.44742122991010547,-0.6986418319866061,0.8428646251559258,0.7693084655329585,-0.4663613014854491,0.8973645498044789,0.2770567978732288,0.8954708715900779,-0.41395004326477647,-0.40237677237018943,0.9160656784661114,0.12580389762297273,-0.05686322087422013,0.7288619317114353,-0.9055445627309382,-0.5142111456952989,-0.9530305056832731,-0.418860440608114,0.9027269044891,0.23702549934387207,-0.17952320957556367,0.4527471871115267,0.8622726406902075,0.6617062389850616,0.8273817165754735,-0.02528005838394165,-0.07947024377062917,0.8686230550520122,0.13819277891889215,0.8514561196789145,-0.5546127501875162,0.06966786971315742,-0.9996874174103141,-0.1346805226057768,0.1700296988710761,0.9971845913678408,-0.66293665766716,0.9097555363550782,0.6890863040462136,-0.12220039311796427,-0.07399251312017441,0.3630810151807964,0.34763868246227503,-0.8605758589692414,-0.4965245695784688,-0.6331771756522357,-0.008680842351168394,-0.45299938367679715,-0.9713924792595208,-0.945906613022089,0.085412313695997,0.5664460654370487,-0.4479856751859188,-0.7196983369067311,0.6700258385390043,0.8624520637094975,-0.3372792690061033,-0.46985285729169846,0.24647515080869198,0.0907808798365295,0.26567042991518974,0.9657734110951424,-0.7525994242168963,-0.006541798822581768,0.6811564555391669,-0.8712222725152969,0.7643363941460848,-0.09723318042233586,-0.7466262318193913,-0.37997534312307835,0.22548235161229968,0.46767779579386115,0.7324167680926621,0.7361590955406427,-0.28881793608888984,0.21212907461449504,0.3398421499878168,0.16020113648846745,-0.08003190765157342,-0.5220421003177762,-0.8314952831715345,-0.8101226505823433,-0.4247534950263798,-0.8155226944945753,-0.9612990161404014,0.3557552630081773,-0.8739014766179025,-0.9966409322805703,0.6350755100138485,-0.8676628223620355,-0.03668632637709379,0.989500458817929,-0.9162200610153377,-0.5056747612543404,-0.9539173748344183,-0.8053340404294431,-0.7847091257572174,-0.8226483128964901,-0.9004548778757453,0.7274756655097008,-0.27843356877565384,-0.23065992118790746,0.5988125829026103,-0.36058224458247423,-0.3440317055210471,-0.5868326229974627,0.2280595819465816,0.4005521144717932,0.6163399615325034,0.11128545692190528,0.002098057884722948,-0.2012780187651515,-0.7970143053680658,-0.935330277774483,0.3529222379438579,0.44670758582651615,-0.2868172125890851,-0.971068091224879,0.5716455713845789,0.07023712201043963,0.18312053987756371,0.5151945166289806,0.3993235439993441,-0.35351218609139323,-0.41764803137630224,0.39468569215387106,-0.2787852259352803,0.7749508894048631,-0.9934469419531524,0.20658362749964,-0.5066198254935443,-0.7734770006500185,0.2400242700241506,0.2715819221921265,-0.5694638728164136,0.5268112998455763,0.4846929549239576,-0.37825412955135107,0.016499556601047516,0.8298178534023464,-0.07815453503280878,0.32624183408915997,-0.5918432106263936,-0.9462809590622783,-0.7649109810590744,0.9917655535973608,0.33174991561099887,-0.4009906807914376,-0.7257995163090527,-0.6266653668135405,-0.4654298550449312,0.759363800752908,0.06177432928234339,-0.3043023054488003,-0.8493140707723796,-0.40345718478783965,-0.6444564997218549,0.05717809870839119,-0.4793295352719724,-0.7826830483973026,0.5838695685379207,-0.963409744668752,0.7652879608795047,0.16279917862266302,0.8526050364598632,-0.9241038346663117,-0.24996290868148208,-0.9998044851236045,-0.8303460855968297,-0.8310094247572124,-0.8077994249761105,0.8695556549355388,-0.043169327080249786,-0.3172659785486758,0.7927824086509645,-0.37477179430425167,0.3668709578923881,0.8754124152474105,-0.9401310929097235,-0.3789009992033243,-0.05204099835827947,-0.016209763009101152,-0.032450595404952765,0.548083602450788,0.7510402873158455,0.5838067964650691,-0.14014529064297676,-0.09020781889557838,-0.5830106856301427,0.806711264885962,-0.14096330432221293,0.3157960823737085,-0.9369820766150951,-0.5100042973645031,-0.6784123107790947,-0.0380559959448874,-0.05907880002632737,-0.7808644291944802,0.0056843869388103485,-0.45615824265405536,0.18243790976703167,-0.45363942719995975,0.5298011493869126,-0.447449947707355,0.32092014653608203,-0.15064496966078877,0.16999821830540895,0.5086385146714747,0.3618594906292856,0.01325320079922676,-0.09043812518939376,0.094291424844414,-0.5441572908312082,0.10700265364721417,0.14550687046721578,-0.5101604363881052,-0.9255106658674777,-0.8895331122912467,0.19622177490964532,0.46013793535530567,-0.8236456247977912,0.9834283483214676,-0.35226592561230063,0.07016958063468337,-0.7243095356971025,0.781148777808994,-0.8440232845023274,-0.7274468857795,-0.6774452142417431,-0.553938849363476,-0.391183297149837,0.4573860284872353,0.2018049554899335,0.45423478027805686,-0.2170896171592176,0.08187769027426839,0.36418491369113326,-0.8723315997049212,0.7277907389216125,-0.4606772190891206,-0.6645717048086226,-0.3660598178394139,0.059103226754814386,0.6197617817670107,0.1903854296542704,0.27997912000864744,-0.04594112606719136,0.8838549666106701,0.21596065303310752,0.7700158138759434,0.6683996059000492,-0.014928605407476425,0.9946046834811568,0.579024612903595,-0.6225549625232816,-0.08455790113657713,-0.8221699725836515,0.1588992616161704,-0.0290369326248765,-0.6738360957242548,0.3132655583322048,0.5181311490014195,-0.809850231744349,0.13684032671153545,0.28645590925589204,0.8782730419188738,0.07294577127322555,0.17254622653126717,-0.4954590047709644,0.888308594468981,-0.8399068326689303,0.8973198225721717,0.29640228021889925,-0.6283105602487922,0.9142686193808913,0.19069839175790548,0.8005829122848809,0.6824292992241681,-0.8474793485365808,0.4552694852463901,0.5810153083875775,0.803884903434664,0.831552991643548,0.04983115755021572,0.8784249033778906,-0.5061970795504749,-0.6123401401564479,0.046784420032054186,-0.8082672455348074,-0.3265571538358927,0.2799672894179821,0.9109932971186936,-0.3939039851538837,0.45594085240736604,0.43310921685770154,-0.5912015875801444,-0.686772954184562,0.15658486960455775,0.7015788084827363,-0.5080590224824846,-0.9493729784153402,-0.7725965036079288,-0.8785570580512285,-0.6332211489789188,0.4474512655287981,0.8862824905663729,-0.18490726314485073,-0.48043259093537927,0.7648494318127632,-0.19146870356053114,-0.7564995964057744,-0.4472479708492756,0.8270661043934524,0.9341833326034248,0.3847736190073192,0.623041061218828,-0.787904238793999,-0.7535691899247468,-0.5903922677971423,-0.7798191686160862,0.49411136098206043,0.20400979183614254,0.1248021381907165,-0.9361210586503148,-0.7557071060873568,0.5027605853974819,-0.8297605672851205,-0.6526995254680514,-0.9068074519746006,-0.10188881168141961,-0.5180383753031492,0.681833550799638,-0.37465188605710864,0.28390735015273094,0.29068821016699076,0.22079353779554367,0.3431450054049492,-0.6755157569423318,-0.7470968654379249,0.6899421233683825,0.6769919679500163,-0.46837321668863297,0.29465178679674864,-0.7840535934083164,0.7569683999754488,-0.4434142867103219,0.3670803620480001,-0.1823995322920382,0.6906962897628546,-0.21325449552387,0.6893826872110367,-0.9944448685273528,0.06346706580370665,0.6533215628005564,-0.18121121916919947,0.8849019184708595,0.5889479364268482,-0.7579071177169681,0.7588902967981994,0.45095185143873096,0.3027350613847375,-0.7842632527463138,0.06517994031310081,-0.521892489399761,-0.2782302526757121,0.7471152557991445,0.6541555589064956,0.6828983188606799,-0.8309019580483437,-0.7729003988206387,-0.9034324740059674,0.1226226631551981,-0.18659492814913392,-0.30547085124999285,0.9253666093572974,0.1781315477564931,-0.315514306537807,-0.4657690851017833,-0.7438903856091201,-0.9358468148857355,-0.1923902602866292,0.8631166988052428,0.47206273721531034,-0.3953859913162887,-0.8919925484806299,0.44281008187681437,0.2275378331542015,0.5781886177137494,0.44668524991720915,-0.24938387423753738,-0.9306319486349821,-0.3191455118358135,0.8189844065345824,-0.1636417550034821,0.8119494705460966,-0.8656909135170281,0.6964148576371372,-0.8678643275052309,0.7232515458017588,-0.8097557318396866,0.8410213682800531,-0.45945329824462533,-0.9951865444891155,0.9335294412449002,0.4719559894874692,-0.25590858375653625,-0.49150823149830103,-0.18827588576823473,0.25013074465095997,0.06211479613557458,0.9967208383604884,0.4385182117111981,0.7575351409614086,-0.6478848638944328,-0.5793711766600609,0.8483598427847028,-0.4834777656942606,-0.6997752534225583,0.3527294001542032,0.9278954658657312,-0.22437742352485657,0.5098685408011079,0.3456475152634084,0.21810602070763707,-0.99382647825405,0.1052716113626957,-0.8040586248971522,0.29560623317956924,0.16353430412709713,-0.09093415038660169,-0.8937779939733446,-0.09394077071920037,-0.29552966356277466,-0.0690134628675878,-0.4593186480924487,-0.7136985375545919,-0.16618707310408354,-0.6726388214156032,-0.4962758128531277,0.1536477506160736,-0.9145215968601406,-0.5131303863599896,-0.14742331253364682,0.4558640527538955,0.4455781285651028,-0.6238932088017464,-0.011035345494747162,-0.4359949198551476,0.8234160714782774,-0.6469845245592296,0.44872368033975363,0.11851018806919456,-0.7481598882004619,-0.27353785932064056,-0.08462842553853989,0.1716436934657395,-0.07294407114386559,-0.26863995008170605,-0.7554916846565902,0.8812262881547213,-0.7314996677450836,0.04914900800213218,-0.9040165264159441,0.9154323390685022,0.3660388612188399,-0.36917897360399365,0.5139020644128323,-0.9260549307800829,0.07323097391054034,-0.0474455039948225,0.8117926144041121,0.46739229327067733,-0.3478492801077664,-0.8273524874821305,-0.2830959758721292,0.9534056540578604,-0.6157633643597364,0.6835543191991746,0.39204332511872053,0.27685123309493065,-0.08536286419257522,0.9075402142480016,-0.21348210657015443,-0.16275973431766033,0.8180889557115734,-0.846417264547199,-0.8126615514047444,-0.21447280747815967,-0.5864592771977186,-0.22449594922363758,0.21834749914705753,0.17125455476343632,0.9712829398922622,-0.4516358142718673,-0.569407997187227,0.30776716861873865,0.1803704765625298,0.4083889564499259,-0.40205497667193413,0.9802320054732263,0.7722217012196779,0.5593752022832632,0.47482768073678017,-0.4914291324093938,-0.4171698126010597,0.6350750853307545,-0.839096162468195,-0.473361115437001,-0.1980766812339425,0.9740230161696672,-0.45851645013317466,0.12339868722483516,-0.4679210567846894,0.567007664591074,-0.9921550797298551,-0.4596279482357204,-0.02749588619917631,-0.422549051232636,-0.576570188626647,-0.7405455964617431,-0.7643007477745414,-0.9556816108524799,-0.2893957947380841,-0.6560949641279876,-0.8846482532098889,-0.07982020545750856,-0.35707554453983903,0.012526207603514194,0.6492733801715076,-0.18352882005274296,-0.8565706443041563,0.6324207722209394,0.31272522173821926,-0.1252215555869043,-0.5190586796961725,0.2781396321952343,0.8076563430950046,0.2553329532966018,-0.6039560711942613,0.19099343800917268,0.5191335421986878,-0.012491802219301462,0.09364788234233856,0.42641132697463036,-0.24065303336828947,-0.5348486513830721,-0.7032036003656685,-0.9448445355519652,-0.9400743907317519,-0.40251905284821987,0.4112954610027373,-0.29877104004845023,-0.32624016189947724,0.003147969488054514,-0.36801010416820645,-0.49274246487766504,-0.7129246820695698,0.38459115847945213,-0.11728770332410932,0.5323672979138792,0.711409448646009,0.40931545570492744,0.518069232814014,-0.6142127066850662,-0.9711086810566485,-0.6485990947112441,-0.5732113271951675,0.44390252511948347,-0.7666511465795338,-0.5360967684537172,-0.9443976473994553,0.17636184999719262,-0.6393205621279776,0.8145005009137094,-0.44338882714509964,-0.9675173084251583,0.6312062270008028,-0.5098561430349946,0.499468551017344,0.19965773774310946,0.7875564116984606,0.007031944114714861,-0.5311476830393076,-0.9281163467094302,0.8982435599900782,0.002305136527866125,-0.4294701758772135,-0.12498021079227328,-0.26124734384939075,0.7441087774932384,-0.3195271766744554,-0.7872246843762696,-0.5894753281027079,-0.7452831515111029,0.4571205023676157,-0.7245550751686096,0.11736737517639995,0.23617647774517536,-0.31900564581155777,-0.18596296198666096,-0.3538919216953218,0.1588133778423071,0.29211895540356636,0.6420362666249275,-0.46015288727357984,0.15008083265274763,0.47149743791669607,-0.4439315786585212,-0.35540278628468513,-0.9098466937430203,-0.2688024896197021,0.05782240396365523,0.13889858592301607,0.7510078395716846,-0.42121016746386886,0.2998141464777291,-0.004231104161590338,-0.2456262670457363,-0.2251955890096724,0.4363544285297394,-0.8378873239271343,0.9716581050306559,0.4022976690903306,-0.904551905579865,0.7503071804530919,-0.2337910197675228,0.1282519232481718,-0.31362535199150443,0.06455902941524982,0.7536320211365819,-0.29811751656234264,0.8372193104587495,0.3011922826990485,-0.01962849637493491,0.9151401203125715,-0.2301078257150948,-0.28331059450283647,0.9983456791378558,-0.060714937280863523,-0.848480417393148,-0.7060573431663215,-0.2797403144650161,0.24392134323716164,0.3271817611530423,-0.11813266994431615,-0.6528213648125529,-0.6764936791732907,0.8617125721648335,0.3340962752699852,0.28244236996397376,0.7439094502478838,0.6151645136997104,0.5517479153349996,-0.21812957990914583,-0.5362629876472056,-1.7859041690826416e-05,0.7788469842635095,0.6667283321730793,-0.2787899048998952,-0.9434416820295155,-0.8732784786261618,-0.7199968849308789,0.8841452435590327,-0.7696518674492836,-0.08942137565463781,0.6549680698662996,0.9490727572701871,0.6869206540286541,-0.39406058052554727,-0.3873438099399209,-0.13070937106385827,-0.6256914930418134,-0.852974571287632,0.47847511898726225,0.9850040362216532,-0.9150677383877337,-0.6346115977503359,0.4761879900470376,0.054285855032503605,-0.5192967606708407,0.9061013567261398,-0.7438799878582358,-0.7790203131735325,0.6156671503558755,-0.6593027701601386,-0.08939138241112232,0.3057127185165882,0.49316504783928394,0.22333593061193824,0.834238856099546,-0.2606802610680461,0.41168292332440615,0.5354042905382812,-0.5437656627036631,0.018442264758050442,-0.09664131980389357,0.8975975178182125,0.3189713517203927,-0.2985388748347759,0.6022323882207274,-0.3365651876665652,-0.2466504806652665,0.698095184750855,0.8541752523742616,-0.5582637642510235,0.6813750090077519,-0.7624604720622301,0.06785436812788248,-0.6661756560206413,-0.6194840990938246,-0.04605240514501929,-0.1550144301727414,-0.9347092243842781,-0.14639536198228598,0.11331063183024526,0.9088537776842713,0.40539396554231644,0.5729813668876886,-0.58016153331846,0.5673749586567283,-0.7601277278736234,-0.8569811619818211,-0.16272975644096732,-0.1788987941108644,0.2730573578737676,-0.2974862237460911,-0.37701139878481627,-0.593672155868262,0.5370662584900856,0.20788504742085934,-0.36952196108177304,-0.6762652639299631,-0.9010870046913624,0.5910857249982655,-0.5594362202100456,-0.09112566616386175,-0.660953626036644,0.4775683251209557,-0.03190528554841876,-0.8052309276536107,-0.980987939517945,0.6005627256818116,-0.08513991674408317,-0.8944281334988773,-0.3400365305133164,0.48683993611484766,0.4748768135905266,-0.2350717014633119,0.16515316255390644,-0.8121812557801604,0.5887491661123931,-0.4541965741664171,-0.89608018938452,0.17103262478485703,0.09701012074947357,0.4788264627568424,-0.8023540349677205,-0.7372778248973191,-0.9757888470776379,0.8643525163643062,-0.3080446133390069,0.4534091637469828,0.17828724347054958,-0.26739573990926147,0.6084828269667923,0.6418099626898766,0.8708161120302975,0.7082620281726122,0.8694084482267499,-0.7780241742730141,0.7424370804801583,0.6366013009101152,0.3457348560914397,0.3381900447420776,-0.6293661356903613,0.7254416118375957,0.4726574649102986,0.8582785320468247,0.8516407166607678,0.7687597586773336,0.21029129438102245,-0.5082447901368141,-0.045593516901135445,-0.4097097753547132,0.7974054054357111,0.48780277324840426,0.16471914388239384,-0.6691477978602052,-0.8849807702936232,0.9792289757169783,-0.764095647726208,-0.07116566319018602,0.18620773078873754,0.40550834173336625,-0.13540197350084782,0.4394711428321898,-0.4469934571534395,-0.3021246315911412,0.4863275224342942,-0.1477659335359931,-0.787753744982183,0.678676494397223,-0.6888844827190042,0.23796990187838674,-0.620883381459862,0.5360318217426538,0.3287445530295372,-0.10810097586363554,-0.9514502487145364,-0.43622642010450363,-0.44332049461081624,-0.8201364008709788,0.34656468452885747,-0.2959759100340307,0.22961914958432317,-0.9095436446368694,0.8349404716864228,-0.3062277166172862,-0.14557992201298475,-0.9913536803796887,-0.5450735450722277,-0.11189572233706713,0.8683404410257936,-0.07110225735232234,0.42143229069188237,-0.6237258929759264,0.388477994594723,-0.5251033240929246,-0.8812910248525441,0.5862188269384205,-0.7207475383765996,-0.8158706617541611,0.5135016101412475,0.7788639781065285,0.4536652942188084,0.004749475046992302,0.8005138365551829,-0.9302309160120785,0.1321106948889792,0.8928531762212515,-0.45575107960030437,-0.9977000146172941,-0.8383920695632696,-0.6861053956672549,-0.42922685854136944,0.9161668019369245,-0.11060106102377176,0.8618672792799771,0.48895049933344126,0.031018931418657303,0.983959726523608,0.4972057775594294,0.5962115926668048,0.733584645204246,0.14551351685076952,0.9935798873193562,-0.8191334707662463,0.3942038808017969,0.4129691473208368,-0.8335444517433643,0.4661885197274387,0.6213763784617186,-0.9155888766981661,-0.7353641297668219,-0.4385804580524564,-0.5782861136831343,0.2733156159520149,0.9154726532287896,0.9275567070581019,0.08882839186117053,-0.7770611816085875,-0.14443257916718721,0.4402942690066993,-0.6206764858216047,-0.07077722391113639,-0.890459646936506,-0.5028944383375347,-0.7096461788751185,0.24342865450307727,0.1711563146673143,-0.3047013604082167,0.41802824568003416,-0.182357725687325,0.2205395963974297,-0.7026046612299979,-0.5691569577902555,0.3863108172081411,-0.9065473950468004,-0.2909749811515212,0.05258818343281746,0.6469091940671206,-0.6610658881254494,0.8343129074200988,-0.04601600719615817,0.45475872000679374,-0.8888090937398374,-0.935232084710151,0.2855805647559464,-0.03980110492557287,-0.06192552903667092,-0.9013961250893772,0.3501275246962905,0.47720333002507687,-0.3874913868494332,-0.6755641298368573,-0.676251488737762,0.5206852643750608,0.586134827695787,-0.9720082012936473,-0.8106214255094528,-0.9360057231970131,0.5888317213393748,-0.7362934160046279,0.1160180582664907,0.9066885006614029,0.9915211764164269,0.40477731358259916,0.6127450242638588,0.10925995744764805,0.1964122587814927,0.09272863902151585,0.7169876941479743,-0.3937047109939158,0.09149166569113731,-0.8290886031463742,0.38269160175696015,-0.9692417797632515,0.2820942495018244,0.913243280723691,-0.25462359795346856,-0.3948864988051355,-0.6227679760195315,-0.10848565911874175,0.701511103194207,-0.8573303194716573,-0.7347217020578682,0.4486662894487381,0.6272002318874002,-0.6687902361154556,0.5997658050619066,-0.7209298745729029,-0.8828201368451118,-0.3133983016014099,-0.7141335266642272,-0.7854678984731436,0.6800759895704687,-0.08454188471660018,-0.7719892393797636,0.0012099924497306347,0.6473047635518014,0.2702599368058145,-0.8666722364723682,-0.062221309170126915,-0.9021257464773953,0.2912550177425146,0.9425356481224298,0.2701836805790663,0.4868708970025182,0.4570554210804403,0.8338203551247716,-0.28226164542138577,-0.2964921509847045,0.17192787444218993,0.6262244456447661,-0.9443684495054185,-0.3915850934572518,0.9293548837304115,-0.2231106534600258,-0.10615171073004603,0.6708612265065312,-0.6031570336781442,0.5643570460379124,-0.06214213604107499,-0.2508252593688667,0.8388762315735221,-0.5036968076601624,-0.06126080872491002,-0.6330535737797618,-0.4450512854382396,0.9425627705641091,0.9116890104487538,0.371023204177618,0.4422704470343888,-0.07369051035493612,0.21961885690689087,0.025005954783409834,0.1569200730882585,-0.8823202070780098,-0.6518017021007836,-0.4283557734452188,-0.4953579632565379,0.5985630266368389,-0.426052478607744,0.8876188858412206,-0.47851886972784996,0.8402340360917151,-0.6849426068365574,0.3273783829063177,-0.4988485681824386,-0.027567547280341387,-0.4908163733780384,0.3017229321412742,0.501131072640419,0.8683417504653335,0.8424624069593847,0.05800183163955808,-0.24429350765421987,-0.43572629103437066,-0.08359921118244529,0.40978748723864555,-0.685550017748028,0.8664683643728495,-0.2851939485408366,0.9064415083266795,0.1666546305641532,0.22762815048918128,0.8948629316873848,0.8895000256597996,-0.5137502080760896,-0.571798122022301,-0.5721114045009017,-0.7540147691033781,-0.8468067888170481,-0.36311447573825717,-0.9432246522046626,0.22307742340490222,0.07143896212801337,-0.7697630450129509,0.8535877512767911,0.12489165319129825,0.051736174151301384,-0.8577671688981354,-0.3967419653199613,-0.11999619798734784,0.31930961087346077,-0.09737439919263124,-0.6596690434962511,-0.3101084502413869,0.7438286482356489,-0.7226028498262167,0.5514288428239524,-0.971772690769285,0.9199882755056024,-0.8030726676806808,-0.9712574477307498,-0.9792521502822638,-0.960747960023582,-0.2362810862250626,-0.27434057649224997,-0.19997770059853792,-0.26342193270102143,-0.8393096784129739,-0.27825252152979374,-0.8420844892971218,-0.5155203090980649,0.8634806396439672,-0.3622828954830766,0.8050617491826415,-0.9980418966151774,0.023161017801612616,0.6794530777260661,0.6997206611558795,0.44520559906959534,-0.00928876781836152,-0.15218410873785615,-0.8092063120566308,-0.09427283983677626,0.5741807948797941,-0.5600996264256537,0.7547823525965214,-0.14934794325381517,0.6449918267317116,-0.4749075276777148,-0.8668425222858787,0.09551110211759806,0.3993797143921256,0.5805633664131165,0.835361341945827,0.6665540277026594,-0.8936714013107121,0.044071045238524675,-0.024906178005039692,-0.6930311364121735,0.11445629363879561,-0.04989058990031481,-0.005015730392187834,-0.3495395975187421,-0.18670165026560426,-0.30267977342009544,-0.6300718118436635,-0.6745929727330804,0.18903916096314788,-0.6699822605587542,0.10393740143626928,-0.6252934681251645,-0.5492062228731811,0.5777540998533368,-0.6291587925516069,0.1066910894587636,-0.9073527534492314,0.8162543387152255,0.4293761160224676,-0.3837690241634846,0.6732819541357458,-0.2069273730739951,-0.8553474540822208,-0.3132640109397471,0.2633233671076596,-0.9648052109405398,0.003153479192405939,0.6320721064694226,-0.47222708631306887,-0.6844309088774025,-0.6186760165728629,0.2935081860050559,-0.11380242928862572,-0.05065278708934784,-0.7136122756637633,-0.9404887808486819,0.6876487154513597,0.6828973395749927,0.9132799976505339,0.6906163175590336,0.39320485293865204,-0.12764551118016243,0.7787629552185535,0.32709262100979686,-0.9611091390252113,-0.040815358981490135,0.44024174055084586,-0.42441424122080207,-0.20709228655323386,0.857676459942013,0.7516049416735768,-0.45963467145338655,0.8319843299686909,-0.9872354925610125,-0.8365940866060555,-0.922624689526856,0.9545947043225169,-0.44934438401833177,-0.8554533887654543,0.3178208973258734,0.4370880676433444,0.9747357587330043,-0.24571361113339663,0.9722307920455933,-0.16678496124222875,0.26711613312363625,0.7680962467566133,0.34503704821690917,-0.5384615967050195,-0.664308019913733,-0.7518709218129516,-0.9237410579808056,0.1352717257104814,-0.4517102618701756,0.19471724657341838,0.10184187209233642,-0.6386720966547728,-0.5184294646605849,0.41519717825576663,-0.16033630771562457,-0.6008564131334424,-0.3693903563544154,0.23191112373024225,0.7740211510099471,-0.21458926238119602,0.17491857893764973,-0.5257949065417051,0.39628268172964454,-0.3384575960226357,0.6177015611901879,0.9994896524585783,0.08636922761797905,-0.21462770365178585,0.07905479986220598,0.5583375166170299,-0.7912573027424514,-0.059572502970695496,-0.8952062628231943,-0.6109165996313095,0.24725399492308497,-0.6788948262110353,-0.0390690010972321,0.9322106619365513,-0.7063936050981283,-0.7560475021600723,-0.8126191501505673,0.0026155062951147556,-0.8788870610296726,0.38693899335339665,0.49024310475215316,-0.7122537093237042,0.022901772055774927,0.6445671357214451,0.11001314176246524,-0.21603293204680085,0.20978485560044646,0.4538596444763243,0.7739792368374765,0.3722506668418646,0.9334088484756649,-0.4513382841832936,0.05344577366486192,0.9245027336291969,-0.9002952594310045,0.9425394367426634,0.5349509539082646,-0.24306328780949116,0.5411716238595545,0.9011702346615493,-0.4971565422601998,-0.7191755860112607,0.8947404064238071,0.03528345888480544,0.6695736749097705,-0.3257861086167395,-0.9901571441441774,-0.24793718568980694,-0.22804364142939448,-0.8534037647768855,-0.673603801522404,0.5953980875201523,0.2722048722207546,0.8560690553858876,0.8422033344395459,-0.9031558725982904,-0.9792403597384691,0.5349443135783076,-0.8080475218594074,0.6464055441319942,0.32282235426828265,0.1776522253639996,0.21820488572120667,-0.6704584020189941,0.24039741279557347,0.9412046112120152,-0.04421664820984006,-0.5573772862553596,-0.45526631642133,0.15225747879594564,-0.7602822468616068,0.008523781783878803,0.1563528715632856,0.2879636767320335,0.04988275421783328,-0.9387102122418582,-0.8738697455264628,0.5608899923972785,0.9966342281550169,-0.10294639132916927,-0.5874967728741467,-0.918918470852077,0.7447074521332979,-0.15462768077850342,-0.5655820984393358,0.3482366637326777,0.9120961055159569,0.016660504043102264,0.48722718097269535,0.4625738514587283,0.9163362309336662,0.3884980143047869,0.27211576979607344,-0.43139284895733,0.16049465583637357,-0.7473641210235655,0.36427565198391676,0.888155594933778,0.3704488454386592,0.6456539495848119,0.39378284895792603,-0.24903667718172073,0.9095425559207797,-0.6899362471885979,0.06187848886474967,0.30387325352057815,0.19650640478357673,0.02340966137126088,-0.9614956979639828,-0.3331813346594572,0.8195546031929553,-0.5003019608557224,-0.886108729057014,-0.262159813195467,0.7610429935157299,-0.7413009093143046,0.05262901773676276,0.07370795775204897,0.5747576197609305,0.02270779339596629,0.49418812012299895,0.984020821750164,-0.64289579866454,-0.2461568983271718,0.21212949184700847,-0.22696145251393318,-0.3137837187387049,0.19847096083685756,0.9376847222447395,0.7077760128304362,0.8785571027547121,0.81185416970402,-0.6979711311869323,0.17957275407388806,-0.9382196860387921,-0.3581441789865494,-0.619644938968122,0.40112317400053144,-0.6673104604706168,0.8709951261989772,-0.8046217975206673,0.06638935673981905,-0.4663974838331342,0.5788654396310449,0.1086643603630364,0.48967592883855104,0.012668231967836618,-0.6669459431432188,-0.4951312714256346,0.9095016396604478,0.7562177651561797,0.1912334281951189,-0.005625714082270861,-0.4765510857105255,0.8037273604422808,0.249920385889709,0.998407794162631,-0.546044984832406,-0.1192858275026083,0.3215317055583,-0.45911832386627793,0.26936338329687715,-0.19488351978361607,-0.807288583368063,0.7625234792940319,0.4336063517257571,-0.1102648745290935,-0.5744008366018534,0.014047576114535332,0.8193959696218371,-0.7300027483142912,-0.3782240836881101,-0.1613691351376474,-0.9315741644240916,-0.822430410888046,0.25116469990462065,0.5918730911798775,-0.8161070900969207,-0.2634578812867403,0.38291499949991703,0.9192287875339389,-0.6203511459752917,0.5765058025717735,0.24848413467407227,-0.5405311370268464,0.16831270046532154,-0.2556540612131357,0.2684662085957825,-0.9840495027601719,0.6637015715241432,0.004594971891492605,0.6501177656464279,0.9554720316082239,0.43302189372479916,-0.5373937073163688,-0.11455306084826589,-0.7106062863022089,0.4268180653452873,-0.06309940479695797,-0.11062520882114768,0.9026016220450401,0.2534621059894562,-0.5511682461947203,0.886823273729533,-0.7805095943622291,0.027973954565823078,-0.7506276327185333,-0.5035250848159194,-0.5345201659947634,-0.36742400424554944,0.9086152049712837,-0.7301556160673499,-0.5887593319639564,0.9299719571135938,0.9145439085550606,-0.7551523367874324,-0.7990660881623626,-0.33254787465557456,-0.4740111674182117,-0.6031756298616529,-0.37318417662754655,0.6117864944972098,-0.7906394824385643,-0.13906227238476276,-0.9492749469354749,0.6103116748854518,-0.20684971194714308,0.2757984106428921,-0.5925796269439161,-0.5187177215702832,0.6475375103764236,0.5044294060207903,-0.40363403549417853,-0.8633178006857634,0.47215198585763574,0.6080516250804067,0.20150658348575234,0.011296591721475124,0.7364023588597775,-0.2591871805489063,-0.6384397144429386,0.7040020930580795,0.7657444309443235,-0.9184422800317407,0.5182270314544439,-0.06831308407709002,0.19417995680123568,0.19176740990951657,-0.6300974865444005,-0.9279618398286402,0.9641047469340265,0.5292826592922211,-0.9190155640244484,-0.618514297530055,0.6259262911044061,0.3404722954146564,-0.5769496839493513,0.5028034006245434,0.9171799216419458,0.4378370735794306,-0.5349840316921473,0.9525458547286689,0.8414856968447566,0.8731019594706595,0.8376735667698085,-0.37822563014924526,0.22749001206830144,-0.5388786401599646,-0.2160181780345738,-0.37001614086329937,0.22989037167280912,-0.8342516669072211,-0.7084597861394286,-0.6546094533987343,-0.7395833167247474,-0.6384256966412067,-0.17385613918304443,-0.43044979171827435,-0.6981175914406776,0.21342527912929654,0.11661310726776719,-0.033020667266100645,-0.9957115827128291,-0.14596905000507832,-0.8988191201351583,-0.2978501534089446,-0.3957153968513012,-0.23844981333240867,-0.6244160388596356,0.7491047759540379,0.3517532963305712,-0.1805855599232018,0.4454900617711246,-0.7246398883871734,-0.8961202134378254,-0.9440780398435891,-0.7559629818424582,0.3709228150546551,-0.983192253857851,-0.8563105161301792,-0.9006837573833764,0.5561133157461882,0.6381670017726719,0.5951753207482398,-0.7968927505426109,-0.286851838696748,0.3046430009417236,-0.9434940880164504,-0.3891686489805579,-0.3677749349735677,0.25517860893160105,-0.43771493900567293,0.6536827119998634,-0.6213065413758159,-0.10041246470063925,-0.6136661740019917,0.1696216342970729,-0.267967511434108,-0.6013469574972987,-0.5523277251049876,0.2312587983906269,0.8511314545758069,0.5736949257552624,0.40859761321917176,-0.8437262088991702,0.36089150747284293,-0.7623854698613286,0.09043995616957545,0.11593118635937572,0.7558282013051212,0.34984655026346445,-0.918958748690784,0.6004121326841414,0.31532830325886607,0.34427916212007403,-0.22859503561630845,0.31850957265123725,-0.9688981724902987,0.2724766586907208,-0.31930967001244426,0.36410820251330733,0.7934276089072227,0.9305157172493637,-0.44215593580156565,0.5536783942952752,-0.36360295163467526,-0.6396118677221239,-0.033643178176134825,-0.5376339829526842,0.8974821399897337,0.055411629378795624,-0.29659860907122493,-0.6478726449422538,-0.23699931660667062,0.9027386684902012,-0.726785923819989,-0.7232734612189233,-0.2811820423230529,-0.8686759090051055,0.17914437036961317,0.3416510773822665,0.5557949431240559,0.8503368543460965,-0.40180549025535583,0.3453429080545902,-0.05933786556124687,-0.2891617421992123,0.005492172669619322,0.6183594628237188,0.9232018971815705,-0.1106843501329422,-0.47392208920791745,0.5875054495409131,0.9759836685843766,0.746526354458183,0.15786558343097568,-0.990791383665055,0.6882225321605802,0.7600818136706948,0.16517774248495698,0.46767581161111593,0.5076859225519001,-0.7534525548107922,0.9303211541846395,0.9844509139657021,0.8833786160685122,0.8496165764518082,-0.548424229491502,0.6193625694140792,-0.3464987361803651,0.526475194375962,0.10334344627335668,-0.39102362049743533,0.8683944004587829,0.7712183305993676,-0.8127045072615147,-0.11333711864426732,-0.24698263546451926,0.7395678963512182,0.9939190242439508,0.17562204040586948,-0.5083559914492071,-0.07486702594906092,0.0011445125564932823,0.4298516153357923,-0.8755259024910629,0.5009237672202289,-0.2938111387193203,0.0975966933183372,-0.34223217656835914,-0.9789551263675094,-0.9498567678965628,-0.21824403759092093,-0.05283449962735176,-0.19621902098879218,-0.27853289199993014,-0.530614678747952,0.3280871300958097,-0.6534716598689556,0.929411762394011,-0.1343087344430387,-0.6474802209995687,-0.023844898212701082,-0.42695537954568863,-0.03681821748614311,0.7137978081591427,-0.34988035587593913,0.8000622163526714,0.2431494640186429,0.8578873900696635,-0.5311091770417988,-0.8396251806989312,-0.4267122964374721,-0.7238619024865329,-0.1785172102972865,-0.3484335597604513,-0.6421850337646902,0.22995274793356657,0.30950085213407874,-0.24282000493258238,0.522482757922262,-0.7899483521468937,0.7575347698293626,-0.4748388659209013,0.3249822058714926,0.7187202177010477,0.8850705865770578,0.3742211665958166,0.1695728376507759,-0.43288291711360216,-0.4550392869859934,0.9579876698553562,0.2156219882890582,-0.9487369661219418,0.1597957406193018,0.4451171071268618,-0.9811924793757498,0.7137459563091397,-0.662963496055454,-0.7102271909825504,0.07960185594856739,-0.3700569299980998,-0.5309713324531913,0.14169453270733356,0.16569571569561958,0.2284506573341787,-0.83347596693784,-0.21309376554563642,-0.5486311139538884,-0.5177010837942362,0.2007179819047451,0.9700379855930805,0.12582466891035438,-0.9925764836370945,0.10490747215226293,-0.7551522604189813,0.844991082791239,0.8379839644767344,0.18842958519235253,-0.0676476564258337,-0.6810470279306173,0.7718000635504723,-0.28350688237696886,0.276503574103117,0.7540822350420058,0.9504641210660338,0.03659985540434718,-0.47611202439293265,-0.8851626138202846,-0.05973945464938879,-0.6041133706457913,-0.8660796587355435,-0.5376185900531709,0.061994821298867464,0.24387813545763493,0.7025956171564758,-0.7848781649954617,-0.6242710412479937,-0.7503789053298533,0.2821864918805659,-0.993850486818701,0.9305533356964588,-0.3391335289925337,-0.8771148147061467,0.2820361847989261,-0.7644622861407697,-0.09480353258550167,0.38534808112308383,0.47116654133424163,0.01831223303452134,-0.3486926988698542,0.9223504136316478,-0.30981391156092286,-0.9584477334283292,0.0062009855173528194,0.5533237461932003,0.3303628792054951,-0.922958676237613,-0.5019635418429971,-0.9821010241284966,0.13293628487735987,0.13130716793239117,0.47042287653312087,-0.6608353545889258,-0.8651579041033983,0.514804074075073,-0.7061418415978551,-0.339452950283885,-0.14761984534561634,-0.8177667949348688,-0.2990216948091984,0.45730691961944103,-0.39459226420149207,0.5427027945406735,0.31612058775499463,0.5398525977507234,-0.2786371298134327,-0.9414332006126642,-0.6203192449174821,-0.05598456598818302,0.834042651578784,0.9264858271926641,0.05416318541392684,-0.8931739148683846,-0.04019433259963989,-0.06287831207737327,-0.14949472900480032,-0.458760779350996,-0.49762341333553195,-0.7271450306288898,-0.5777776520699263,-0.37650814559310675,-0.09952013986185193,0.35616237577050924,-0.15802982542663813,-0.24393355939537287,0.24663713155314326,-0.475414352491498,0.27578811114653945,-0.5394504936411977,-0.28134590620175004,0.6898232791572809,-0.5681784898042679,0.939356436021626,-0.39467443712055683,-0.9286368605680764,-0.6009435416199267,-0.17400193447247148,-0.10900629125535488,0.7086707535199821,0.09025002783164382,0.96783338021487,-0.34483203012496233,-0.3790082926861942,0.31133542489260435,0.27845983440056443,-0.2965043014846742,-0.9280866906046867,-0.06606756197288632,0.7459131423383951,0.16495841648429632,-0.7644250886514783,0.16562528628855944,0.09916161047294736,0.9814339089207351,0.5176553865894675,0.06202584691345692,0.4800672885030508,-0.7867905888706446,-0.6777087557129562,0.3838707432150841,0.9776510028168559,0.9075552858412266,-0.1273496625944972,-0.6551921986974776,0.5266632880084217,-0.14406586438417435,-0.12906624795868993,0.3852642187848687,-0.21233404707163572,-0.6804683222435415,0.4779018582776189,0.8589969668537378,-0.5860042930580676,0.8935058317147195,-0.7286798739805818,0.5473188376054168,-0.7094749733805656,-0.8743846556171775,-0.34543488873168826,0.060944604221731424,-0.8993257810361683,0.5723240347579122,0.09372284170240164,0.5230986685492098,-0.5625882456079125,-0.3938494427129626,0.05944355810061097,-0.9513319334946573,-0.9398447866551578,-0.652323697693646,-0.5840083807706833,0.41334015084430575,-0.07390742702409625,-0.4189483071677387,-0.6107891616411507,0.14975300850346684,-0.13211279921233654,-0.14530616579577327,-0.39699998777359724,0.2865040898323059,-0.5485405665822327,0.0030972943641245365,-0.31882342835888267,0.5119726839475334,-0.5380663671530783,-0.032378314062952995,-0.006404174957424402,-0.842604729346931,-0.053250161930918694,0.4593242947012186,-0.04912389116361737,0.047861849423497915,-0.9401184190064669,-0.21045598294585943,0.6640897472389042,-0.7596864039078355,-0.10236818296834826,-0.07326779514551163,-0.6165278693661094,-0.5989615223370492,0.8387371022254229,0.2731074197217822,-0.8236296977847815,-0.305962557438761,-0.35036025615409017,-0.16504726884886622,-0.06184895196929574,-0.41735440120100975,0.4944492019712925,0.9779837452806532,-0.5341415824368596,-0.35633101500570774,-0.4693246455863118,-0.6434907838702202,0.3386730928905308,0.5924675851128995,-0.19715973315760493,0.24708647280931473,-0.013461906928569078,-0.9433163339272141,0.14602706115692854,0.021753353998064995,0.7181402528658509,0.13706913217902184,-0.11695783445611596,-0.89320382848382,-0.26014021411538124,0.8960969713516533,0.1854389188811183,-0.6943800263106823,0.7774839662015438,0.6350410892628133,-0.25833957735449076,-0.10741424839943647,0.4082520487718284,-0.252375656273216,-0.8445700244046748,-0.24058182630687952,0.9533281661570072,0.8268834003247321,-0.5871532624587417,0.919668628834188,-0.2734832656569779,-0.7188107944093645,0.25487367110326886,0.36816509952768683,-0.7459757612086833,0.5038149575702846,0.023724202532321215,-0.04186499351635575,-0.2784629752859473,-0.5333117949776351,0.637658198364079,0.5042452071793377,0.6954387039877474,0.8604881637729704,0.5929666641168296,0.8880433612503111,0.5811639800667763,0.338679616805166,0.6392600140534341,-0.23658307548612356,-0.09505608584731817,-0.13716633711010218,0.8204977856948972,0.2816255842335522,0.2689734008163214,0.6705393851734698,0.7921699481084943,-0.05968225607648492,0.40365732787176967,0.23498098133131862,0.8314403709955513,0.7983104903250933,-0.7533674379810691,-0.49370267102494836,-0.6276524243876338,-0.2583382432349026,-0.11029572319239378,-0.08412973489612341,0.1620526690967381,0.44141631620004773,0.316537753213197,0.5528043289668858,0.919942494481802,-0.7322951219975948,-0.804493950214237,-0.03328691516071558,-0.8756686164997518,-0.7799091427586973,-0.517913265619427,-0.545553024392575,-0.7749373922124505,0.763131293002516,0.3768304968252778,0.9783894042484462,0.1544436402618885,0.327538569457829,0.3512542024254799,-0.4123199307359755,0.052938963286578655,-0.7659847317263484,0.948166785761714,0.05003324616700411,0.8909357008524239,-0.9537106081843376,-0.8922834945842624,-0.7565022991038859,0.7218170729465783,0.3397969747893512,-0.053905494045466185,-0.844674407504499,0.8424908258020878,0.17570675257593393,0.6796602988615632,0.4235203629359603,-0.26154936477541924,-0.07734368881210685,-0.8157117487862706,0.12837203359231353,0.4458104628138244,-0.2412771233357489,-0.9899246245622635,-0.7884928788989782,0.34810847556218505,0.6280527734197676,-0.18250478012487292,0.10828707600012422,0.9954502452164888,-0.09212418179959059,-0.06239830143749714,-0.20062496280297637,0.3122203969396651,0.058904084376990795,-0.34672887017950416,0.7855277536436915,-0.1278150682337582,0.23077166266739368,-0.8047414151951671,0.3276481069624424,-0.7626466508954763,0.7963756872341037,0.7260893238708377,-0.4565625386312604,-0.39047406148165464,0.8268901463598013,0.26785121858119965,-0.7644090307876468,-0.534951277077198,-0.24773654947057366,0.6011708732694387,0.5131629006937146,0.2905431240797043,0.3475081827491522,-0.6277443510480225,-0.08649650542065501,-0.2019396503455937,0.09462283831089735,0.3814203883521259,-0.18891933420673013,0.04446683777496219,0.7759578060358763,0.5322292824275792,-0.46301565505564213,-0.1674258541315794,-0.4889680380001664,-0.6174862631596625,0.5254408405162394,0.4084874619729817,0.041149691212922335,-0.06678948272019625,-0.38824239652603865,0.282971890643239,-0.32659982005134225,0.48272708617150784,-0.3459548568353057,-0.871373763307929,-0.5476429117843509,0.77418870665133,0.9588295919820666,-0.47318293107673526,-0.4650488835759461,-0.011238193605095148,0.02685397630557418,-0.3469900884665549,0.2924176980741322,0.8055207380093634,0.9225762938149273,0.5904629114083946,0.916541303973645,0.14314511884003878,0.9236884037964046,0.6708952323533595,-0.40566861629486084,-0.844810092356056,-0.32953805895522237,-0.7477915259078145,0.40017513278871775,-0.2164687654003501,-0.7403991688042879,-0.8040757356211543,-0.8975114333443344,-0.08825693698599935,0.8702258854173124,-0.44695695117115974,0.9843213381245732,0.3467654134146869,0.9049827675335109,0.8444802118465304,0.858094803057611,-0.2028547516092658,0.9086552709341049,-0.5347155397757888,-0.09416644927114248,0.0803349856287241,0.5122655020095408,-0.3384042717516422,-0.07692581973969936,-0.680468310136348,-0.7231407845392823,-0.6845806413330138,-0.09944065427407622,-0.9215680733323097,-0.7037811572663486,-0.3325165119022131,0.6095785698853433,-0.9497325117699802,-0.439332511741668,0.27067246893420815,-0.05057048285380006,-0.42737246956676245,0.8200713014230132,-0.0880476483143866,-0.9008049285039306,0.6435745833441615,-0.21820426313206553,-0.9447266468778253,0.7962685585953295,-0.8752506510354578,-0.46283080196008086,0.4365033037029207,-0.934362162835896,0.535642247647047,-0.7157856971025467,0.9302645018324256,0.852863360196352,-0.02824421226978302,-0.21112710097804666,-0.3548992294818163,0.36951438849791884,0.5910615441389382,-0.15518161887302995,-0.9250317374244332,0.31836602510884404,0.9666976579464972,0.31795910466462374,0.418862784281373,-0.17390514817088842,0.0537093011662364,0.8174533117562532,-0.1113381334580481,-0.6860433942638338,-0.03441310813650489,-0.09161106962710619,-0.47394681023433805,0.36706838198006153,0.46053974982351065,0.9248653138056397,0.7246615667827427,0.026255927979946136,0.5907790786586702,-0.3466351367533207,0.8258720301091671,0.972528072539717,0.8194348532706499,-0.5604679831303656,-0.5349022853188217,0.770752006676048,0.005805341526865959,0.7214529877528548,-0.5828443509526551,-0.0371045870706439,0.356345200445503,0.6057838001288474,0.6877088006585836,0.6986095402389765,-0.5726770563051105,-0.9014214281924069,-0.4920395715162158,0.8926102081313729,0.9710592585615814,0.52685507806018,-0.45346124889329076,-0.5537516912445426,-0.9722218550741673,0.7267431318759918,0.22892860462889075,-0.2753593339584768,-0.7258638674393296,-0.31288442807272077,-0.18781639961525798,-0.7120037288405001,0.18870221264660358,-0.9290131223388016,0.3856895682401955,-0.8005410465411842,0.004199262708425522,-0.7661996292881668,-0.47565663885325193,-0.010347964707762003,-0.32248871261253953,-0.15913393069058657,0.38295955630019307,0.11765461228787899,-0.05821100389584899,0.154968885704875,-0.7379500158131123,0.4858818859793246,-0.020136290229856968,-0.41733196936547756,0.8740347740240395,-0.15405917819589376,0.19006199948489666,0.3695188141427934,0.9815108380280435,0.5932545475661755,0.6814906825311482,-0.14696186920627952,-0.19578279554843903,-0.2407673425041139,-0.9093413595110178,0.6810018089599907,0.7757375976070762,0.8213453013449907,-0.4241825370118022,-0.8426413596607745,0.7702829004265368,-0.16434195265173912,-0.8564922260120511,0.7305906438268721,-0.9974790373817086,0.9080936815589666,-0.5980030046775937,0.9013815317302942,0.389833259396255,0.052430419716984034,0.8888995023444295,0.9944453225471079,-0.8280340349301696,-0.02105771005153656,-0.47699324460700154,0.6947132493369281,-0.19890528172254562,-0.39309372659772635,-0.9803640739992261,0.7891661538742483,-0.3423425736837089,0.6212020236998796,-0.223764902446419,-0.47548543009907007,0.6928746858611703,-0.7481497405096889,-0.04113622521981597,-0.10468221455812454,0.8672797377221286,0.44860645150765777,0.8059908370487392,-0.6938470797613263,-0.3440584479831159,0.7376625067554414,0.3533961810171604,-0.9075833824463189,0.8812283566221595,0.21786781447008252,0.7587786470539868,-0.23647250840440392,0.9946257066912949,-0.9466771921142936,-0.04485794994980097,0.3970145802013576,-0.7227790141478181,-0.30497134337201715,-0.5334329702891409,-0.7525471048429608,-0.376035503577441,-0.4121475317515433,-0.04600497428327799,0.9747992111369967,0.5957979829981923,0.33167326683178544,-0.009439782239496708,-0.38036568788811564,0.8796213273890316,0.7569879381917417,0.7289214683696628,0.3203231836669147,-0.6118710180744529,0.6983558302745223,-0.8326199133880436,-0.45138856256380677,0.12176591856405139,0.10287049878388643,0.05481586093083024,-0.32823381712660193,0.1089300881139934,-0.9592158854939044,0.07800490176305175,-0.6711278771981597,-0.0827241474762559,0.6035773823969066,0.6881357817910612,-0.3769837124273181,0.30552417784929276,-0.8177476073615253,0.3609811752103269,0.6234712768346071,-0.02610987424850464,-0.9462836356833577,0.38521870132535696,0.3544261259958148,-0.32501980662345886,-0.3872563405893743,-0.5639059776440263,-0.6158064603805542,0.3607807634398341,0.9480907618999481,-0.20513597084209323,0.5198314832523465,-0.908164169639349,0.5864623030647635,-0.23176146857440472,-0.4714856562204659,-0.2748660263605416,0.8605538974516094,0.30834079394117,-0.20764867030084133,0.3726676763035357,0.03256376925855875,-0.5649127955548465,0.6710778432898223,0.2612386280670762,0.7262066933326423,0.12987889256328344,0.9933707215823233,-0.15047281933948398,-0.4278034586459398,0.7107813465408981,0.4875004175119102,-0.38233031844720244,0.0001660659909248352,0.9847167278639972,0.8189131421968341,0.4560046992264688,0.12356373248621821,-0.3884837469086051,0.687105368822813,0.30640906002372503,-0.01249573566019535,-0.26822604425251484,-0.4854219020344317,0.33481809264048934,0.31445467192679644,-0.653778612613678,0.40357658080756664,-0.9427961464971304,-0.22382184164598584,-0.30850126035511494,-0.014904237352311611,0.13501952635124326,-0.3480356428772211,0.8448846428655088,-0.3051323457621038,-0.9296266194432974,-0.8652345226146281,-0.021381466183811426,-0.3378739757463336,-0.5912204263731837,-0.019306187517940998,0.13339271023869514,0.4777244506403804,-0.15023474488407373,0.3633583881892264,0.4509989437647164,0.6449735118076205,-0.969097479712218,-0.1298752655275166,0.1980509147979319,0.7941258363425732,-0.0744733503088355,-0.49265225138515234,-0.7337819123640656,0.5844740145839751,-0.9444315568543971,-0.4162311223335564,-0.0733599066734314,-0.3607495059259236,-0.4952406990341842,0.05186311015859246,0.023622481152415276,0.9001437211409211,0.15282537322491407,0.8436966040171683,-0.8747607553377748,0.34916808968409896,0.1592277535237372,-0.5240569072775543,-0.8452525660395622,0.1451093233190477,0.01887125475332141,0.09556601755321026,0.20281971665099263,0.1348061626777053,-0.7280420288443565,-0.19792724028229713,-0.18382965587079525,0.5098124267533422,-0.3685197029262781,-0.2796999579295516,0.43055263021960855,0.09568096231669188,0.07956188637763262,0.1847043801099062,0.961179525591433,0.338333526160568,0.9428374571725726,-0.06864596717059612,0.3915741555392742,0.6328212702646852,-0.11427339166402817,0.5462861671112478,0.37505749333649874,-0.9283088105730712,-0.6786515889689326,0.7119845771230757,0.11583927785977721,0.3529104613699019,0.5833332655020058,-0.20510274358093739,0.5525654605589807,-0.6927156625315547,0.13590161968022585,0.5478122150525451,-0.8817610358819366,0.8160510901361704,0.7199261812493205,-0.29640677524730563,-0.6239153351634741,0.48618805315345526,-0.552951623685658,-0.8959718551486731,0.11481987405568361,-0.7871768483892083,-0.07713385345414281,0.33929538214579225,-0.03282575076445937,-0.16504890099167824,0.22288729110732675,0.20928117400035262,0.9900390314869583,-0.3477537278085947,-0.043517562095075846,0.8353528762236238,0.18420380260795355,0.6880475045181811,0.8336842451244593,-0.7567770536988974,0.9614838208071887,-0.2460477943532169,-0.30941060557961464,0.6088639916852117,0.11312086274847388,-0.9264070270583034,0.002050264272838831,0.5983773916959763,-0.43658231012523174,-0.6047014528885484,0.8343950468115509,0.151421666610986,-0.19792565936222672,0.44773530401289463,-0.8282391112297773,0.5010236673988402,-0.0007416061125695705,-0.35425956593826413,0.22081607347354293,-0.526325611397624,-0.9556695744395256,0.2874576556496322,-0.2117046881467104,-0.49477507872506976,-0.3372645489871502,0.0698714074678719,-0.9773883651942015,0.5388742252252996,-0.2815086944028735,-0.8546763071790338,-0.7882314343005419,-0.495182148180902,0.9128551366738975,0.9571863105520606,0.282303134445101,0.33235839707776904,0.3632709910161793,-0.5673206178471446,0.8792133806273341,-0.3841214179992676,-0.1839798535220325,0.9629756920039654,0.3381379693746567,-0.699190872721374,-0.024959664791822433,0.7059778636321425,-0.7114111562259495,0.4163906699977815,0.9964717742986977,-0.3492769314907491,0.023954864125698805,0.7806287268176675,-0.440221032127738,0.9665145487524569,-0.09906527539715171,0.6081934948451817,-0.24935919512063265,0.5946112461388111,-0.14798021456226707,0.6841704500839114,-0.963581879157573,0.37144419830292463,0.20751766115427017,-0.3470606287010014,-0.8426263239234686,0.34114987030625343,0.9565261378884315,0.7045182418078184,-0.6966375666670501,0.7643207246437669,0.07778295315802097,-0.4705206183716655,-0.34619757207110524,0.8524117353372276,-0.09682414261624217,-0.23174254363402724,0.9261386897414923,0.3842792175710201,0.624741320963949,0.9661255935207009,-0.07709987740963697,-0.6816365197300911,0.5266631995327771,0.0715509420260787,-0.2558513912372291,-0.6100417696870863,-0.43426462914794683,-0.03742202231660485,-0.9248583936132491,-0.4997917772270739,-0.7221664390526712,0.15528993541374803,0.07546626403927803,0.8388586430810392,0.8760904935188591,-0.5737722357735038,0.2720143850892782,-0.5949147595092654,-0.7559699374251068,-0.46802774630486965,0.35902587277814746,-0.40650674561038613,-0.2695230655372143,-0.6184357153251767,-0.8436026363633573,0.29241902846843004,-0.8182086008600891,0.9582386128604412,0.3509841160848737,0.008627386763691902,-0.3787449896335602,0.22673114947974682,-0.10429767984896898,-0.9480081750079989,-0.8978724372573197,0.5574291748926044,-0.4619372831657529,-0.6705224676989019,0.20717508578673005,-0.14261087635532022,0.8400489697232842,0.6954627954401076,0.5699082249775529,-0.7277754750102758,0.8001143867149949,-0.37709188321605325,0.7934675463475287,-0.8653890825808048,0.693141745403409,0.8072014003992081,-0.4721491262316704,0.701224185526371,-0.9101520022377372,-0.6307737771421671,0.8052076608873904,-0.44812433049082756,0.5758951427415013,-0.7148513644933701,-0.026728315744549036,-0.005216930992901325,-0.735471120569855,-0.18918064003810287,-0.060881081968545914,-0.9541643764823675,-0.17324876273050904,0.8419817062094808,-0.6383026805706322,-0.3747102324850857,0.022753160912543535,-0.534091651905328,-0.20315235201269388,0.4713574228808284,-0.4346138294786215,-0.20824500266462564,-0.7763375155627728,0.8671624292619526,0.29418239649385214,0.7379825543612242,-0.7049732194282115,0.4396880427375436,0.17989320028573275,-0.5389114725403488,0.45827282313257456,0.5694088861346245,0.885932419449091,-0.4012722638435662,-0.20840209582820535,-0.2840157179161906,0.6180309490300715,-0.6822462459094822,0.6270806691609323,0.8156868265941739,-0.6054588253609836,-0.8636299879290164,-0.0389817850664258,0.2338108727708459,0.09080017870292068,-0.8336651283316314,0.6037839408963919,0.24996210541576147,0.8571554450318217,-0.9304257580079138,-0.004880589433014393,-0.48101459071040154,0.35528531251475215,0.4358882885426283,-0.6175894578918815,-0.6072403178550303,0.9814902017824352,-0.06740197027102113,0.03073585359379649,-0.6097830119542778,-0.3712816461920738,-0.9055931945331395,-0.9917884389869869,-0.36939498456194997,0.029211218003183603,-0.8258527792058885,0.2978516439907253,0.7583679300732911,0.2654639733955264,-0.6437161616049707,0.4017352871596813,-0.12099380558356643,-0.018905782140791416,-0.5287095801904798,-0.3631338425911963,-0.5788865825161338,0.5635485197417438,-0.7505589458160102,-0.5685522882267833,0.20859665051102638,0.13393846852704883,-0.9797477605752647,-0.7231670790351927,-0.3369350638240576,-0.16773241246119142,-0.848423661198467,0.5489156860858202,0.04767723195254803,-0.550159293692559,0.6235065995715559,-0.4539866936393082,0.8283156878314912,0.027973487973213196,0.8933281325735152,0.5180115099065006,-0.2816728535108268,-0.6255244263447821,0.8811740553937852,-0.2735720444470644,0.46012701326981187,-0.09241846483200788,-0.2293844991363585,-0.414653149433434,-0.7857284317724407,0.7650140603072941,0.1079118363559246,-0.6945842085406184,0.6016318183392286,-0.1734804711304605,-0.7835904150269926,-0.47144119208678603,-0.5894562690518796,0.06861446378752589,0.6157011869363487,0.36760766990482807,-0.09037317475304008,-0.43979800818488,0.7673969897441566,-0.553530631121248,-0.014252284541726112,0.2642727931961417,-0.8573798462748528,-0.5135735240764916,-0.6068061627447605,-0.15738115599378943,0.7429103064350784,0.8205919666215777,-0.42324569215998054,-0.3532906067557633,-0.24997406173497438,0.3664783537387848,-0.5279738185927272,-0.9706787914037704,0.7007938399910927,0.46596119832247496,-0.4533404977992177,-0.500442975666374,0.5672941240482032,0.6980485054664314,0.7601530947722495,0.16289795795455575,-0.2348505645059049,-0.7556462911888957,0.021874628495424986,-0.8840573928318918,-0.7220448479056358,-0.4477757001295686,0.274417654145509,0.6797639350406826,0.5014740987680852,-0.9499466200359166,0.693740751594305,-0.7576051037758589,0.529676585458219,0.6098320111632347,-0.7041151914745569,-0.338395357131958,0.8699718085117638,0.19030544022098184,-0.4023173809982836,-0.7758238646201789,-0.45223411032930017,-0.7940477631054819,-0.4159457618370652,-0.0700531480833888,0.2219619443640113,-0.9735256331041455,-0.8996107201091945,-0.08805304951965809,0.17515311716124415,-0.9974098238162696,-0.6441204976290464,-0.9604680831544101,0.10094519844278693,0.2963727409951389,-0.22115160524845123,0.8454224364832044,0.7338185701519251,0.8022530968300998,0.980053570587188,0.24135074065998197,-0.32387207029387355,-0.6304060379043221,0.1564350980333984,0.7977283238433301,-0.6040442907251418,0.5958712948486209,0.2541003655642271,-0.5800678725354373,-0.41752414498478174,-0.43927025189623237,0.006417479366064072,-0.2709331316873431,0.7095269127748907,-0.5285577513277531,-0.348768834490329,0.32160866539925337,0.19139219680801034,0.18664662213996053,0.6336063980124891,0.3150252937339246,0.8712353147566319,-0.03538025263696909,-0.29010787326842546,-0.5494599603116512,0.7503387583419681,0.7189253927208483,0.7135071991942823,0.03728458797559142,0.7369275549426675,0.5843899608589709,-0.7534606223925948,-0.6522790170274675,-0.9564189994707704,0.22511258628219366,0.1230036448687315,-0.27792716678231955,0.06791146751493216,-0.6490319943986833,0.47770112846046686,0.9873031531460583,-0.8970121475867927,-0.3726049493998289,0.18505646055564284,-0.7011814280413091,0.9116783691570163,-0.22061704006046057,0.672845792490989,-0.5865648598410189,-0.16637696139514446,-0.04096694244071841,-0.9843283072113991,0.7955691153183579,-0.3743833713233471,0.4607511623762548,-0.3715853984467685,0.0409724204801023,-0.7757821483537555,-0.5175935178995132,0.5189295755699277,0.056661190930753946,0.9696922930888832,-0.6908376440405846,-0.01283733220770955,-0.3170857639051974,0.21350103290751576,0.7078983406536281,-0.33620716724544764,0.7689295406453311,-0.421817259863019,-0.808467919472605,-0.9827911262400448,-0.12040953291580081,0.43917809426784515,-0.015524746850132942,0.6170326629653573,0.3705615997314453,-0.44523093523457646,0.6047321278601885,-0.22279262449592352,0.9580807746388018,0.4450134076178074,-0.9182680090889335,0.21380133973434567,0.4920864808373153,0.9927383363246918,0.6905730650760233,0.9403793974779546,0.841436633374542,0.012397435493767262,-0.9118084432557225,-0.9815127761103213,-0.9506409694440663,-0.0015029278583824635,-0.7985716229304671,-0.5005392022430897,-0.07714382745325565,-0.6840129164047539,-0.340814096853137,-0.36483998876065016,0.5290933242067695,0.056460754945874214,0.07978555606678128,-0.03401294397190213,-0.8931545643135905,-0.717450253199786,-0.02826773514971137,0.8356522899121046,-0.022640190087258816,-0.55220777541399,-0.11278610583394766,-0.3219935391098261,-0.3215631195344031,-0.32288852287456393,0.16484699258580804,0.0746110430918634,0.4690230702981353,0.06996841356158257,-0.37633377918973565,-0.9249228020198643,-0.8682437059469521,-0.4365569921210408,-0.5914925457909703,-0.7913951403461397,0.1558062620460987,-0.7454597488977015,0.4280174020677805,-0.9373205378651619,-0.7803984177298844,0.8912733779288828,-0.1854714802466333,-0.4947266927920282,0.7500815787352622,-0.1089515876956284,0.18799195438623428,0.7247019191272557,-0.020739511586725712,-0.26626044139266014,0.2653019614517689,0.756846924778074,-0.6592211285606027,-0.09960410557687283,0.6210789121687412,-0.9368094592355192,-0.6720708128996193,-0.11134048691019416,-0.7596162990666926,0.084792235866189,-0.9164578700438142,0.011106606107205153,0.08999568363651633,-0.3348438832908869,0.8234797492623329,-0.6698808236978948,0.787166251335293,-0.8228570590727031,0.8333452264778316,0.316045215819031,-0.2463878644630313,-0.10877637332305312,-0.18242565914988518,-0.6437644218094647,-0.5623004087246954,0.45255344128236175,0.09435747796669602,-0.5877368794754148,0.6089275884442031,-0.5170238558202982,0.344712698366493,-0.747648699209094,0.40369032183662057,-0.41376378247514367,0.5636513181962073,-0.5850137444213033,0.9888545963913202,-0.8862991575151682,0.26381110679358244,0.9871295411139727,0.49264241522178054,-0.32244734838604927,0.6266243932768703,-0.3710127668455243,-0.6236912845633924,0.08524500578641891,0.9815749116241932,-0.9348937449976802,0.14272927260026336,0.8554496406577528,0.8482626569457352,-0.6684597129933536,-0.9021830935962498,0.6086017098277807,0.6030543996021152,0.550763385836035,0.2873258898034692,0.7951004076749086,0.8396593723446131,0.3533118646591902,0.02369660884141922,-0.954642559401691,0.27308737160637975,0.126245831605047,0.3952216529287398,-0.25956278294324875,-0.20731427799910307,-0.3106813970953226,-0.599019390065223,0.3427602592855692,-0.8568959240801632,-0.8502778066322207,-0.8615792966447771,0.7068987847305834,0.1896421811543405,0.08007537154480815,-0.65233568334952,-0.8118109293282032,-0.7061877707019448,-0.986342984251678,0.42235359037294984,0.7842794465832412,-0.7479485790245235,-0.9223662633448839,0.9414534689858556,-0.590687844902277,0.12224964611232281,-0.592487143818289,-0.7059704302810133,-0.9555149488151073,-0.9707533428445458,-0.9835604508407414,-0.45438456581905484,0.35106615629047155,-0.07941937213763595,0.5674231960438192,-0.681991086807102,0.060057243797928095,-0.746041800826788,0.20943055488169193,0.38419106556102633,-0.9147054892964661,0.7980983583256602,-0.8488414026796818,-0.6231173044070601,-0.13013975648209453,-0.5983894104138017,0.6280532176606357,0.7838034410960972,0.8780831121839583,-0.36842988105490804,0.448032648768276,-0.9674931592307985,-0.5652406718581915,-0.8128959559835494,-0.5391574702225626,0.025461390614509583,0.5069396076723933,0.6036137212067842,-0.4377630492672324,-0.19311132514849305,0.5299842427484691,0.052179690916091204,-0.5017013871110976,-0.41631704615429044,0.7304639699868858,0.7495129578746855,-0.7177571607753634,0.36982546281069517,-0.20984180411323905,-0.30644100438803434,0.1529387841001153,0.1426132912747562,-0.6832006233744323,-0.3614050569012761,-0.5909803910180926,0.21326076425611973,-0.5572875957004726,-0.30741508724167943,-0.3524402710609138,-0.007027897518128157,0.9760005660355091,-0.5334047563374043,0.6361292232759297,-0.9754446349106729,-0.5646689119748771,-0.784987875726074,0.09723204094916582,0.8033171943388879,0.4699868760071695,-0.0547842001542449,0.7838336029089987,0.9791708961129189,0.9383360762149096,-0.2613126649521291,-0.7092318115755916,0.3566838540136814,-0.541388348210603,0.23951391084119678,-0.4871617052704096,-0.7197431847453117,0.4030099678784609,0.2356294021010399,-0.10845222836360335,0.1346566895954311,0.44691196270287037,-0.9223147891461849,-0.08127217134460807,0.5930593977682292,-0.7625088496133685,0.6137653500773013,0.3879733569920063,-0.8226007679477334,0.7129140878096223,0.4296832801774144,-0.4068223782815039,-0.31930573377758265,0.2836184590123594,-0.6703647151589394,-0.2644662302918732,-0.6921214489266276,-0.2175647052936256,-0.3945133378729224,-0.3449943820014596,-0.05944498861208558,0.6904826820828021,0.1321031996048987,0.6910712928511202,-0.08376423455774784,0.7971170148812234,-0.6676169913262129,0.09108353173360229,-0.8360142307356,-0.07950731925666332,-0.37746681831777096,0.5442112660966814,0.9812234165146947,0.4834286724217236,-0.19338597264140844,-0.3746457644738257,-0.5347162541002035,-0.18070192402228713,0.40375780733302236,-0.4516869457438588,0.8006916409358382,-0.9634438590146601,-0.8705357741564512,0.6739658289588988,0.752679156139493,-0.5456710364669561,-0.9231091472320259,0.0812296774238348,0.07043009530752897,0.1624723831191659,0.535078230779618,-0.8024700554087758,0.39851150615140796,0.33996481727808714,0.3224544981494546,0.4099063347093761,-0.5976069397293031,0.09813675656914711,-0.003556197974830866,0.15024693962186575,-0.4997304789721966,0.8407656215131283,0.3878227658569813,-0.9067301908507943,-0.8824172276072204,-0.39677131455391645,-0.06114952964708209,-0.9920824435539544,0.6277331742458045,0.15898944903165102,-0.1588000627234578,0.9222675953060389,-0.5390171753242612,-0.5520120896399021,0.4924328215420246,0.768589454703033,-0.23702734429389238,-0.18310579052194953,-0.40426918491721153,-0.2179702245630324,0.45647501200437546,-0.46386012248694897,-0.8055666415020823,-0.6112292115576565,-0.946609084494412,-0.3204530430957675,0.03898033034056425,0.5381162851117551,0.675494636874646,0.0764581561088562,-0.7696263142861426,-0.4704954973421991,-0.8671304928138852,-0.6713098236359656,-0.1930966442450881,-0.02313140407204628,0.4621259602718055,-0.9998611654154956,-0.24261338729411364,-0.4801325495354831,-0.9454100960865617,0.7551558762788773,-0.8388950489461422,-0.026388462632894516,-0.8022636929526925,0.07953822612762451,-0.9740388812497258,0.9732134873047471,-0.15556694846600294,0.014514181762933731,0.8140242993831635,-0.2258855509571731,-0.09655530983582139,0.819959654007107,0.5299171982333064,0.4863436780869961,-0.4992328113876283,-0.85271015483886,0.33162298519164324,-0.2597939851693809,-0.6257711537182331,0.4594442364759743,-0.7294731014408171,0.19606315484270453,-0.8441835287958384,0.9653742001391947,0.7950032581575215,-0.2942737601697445,-0.8562046205624938,0.22142435424029827,-0.8208071626722813,-0.9744856827892363,-0.0101767354644835,-0.9176792055368423,0.031533271074295044,-0.5768321328796446,0.40894237346947193,0.966680558398366,-0.15235400525853038,0.8520096042193472,0.9275345546193421,0.6970557128079236,0.14919689251109958,0.17413592850789428,-0.16100379778072238,0.20132031850516796,0.12906763702630997,0.025788912549614906,0.43219644855707884,0.32824451802298427,0.2980341440998018,-0.8895043320953846,0.32564257038757205,0.42164719896391034,0.0589341907761991,0.612080114427954,-0.6872257995419204,0.35701302718371153,0.8603512919507921,0.8568874271586537,-0.08478504838421941,-0.7610432323999703,-0.6563353785313666,0.7714499561116099,0.9245032086037099,-0.34007104579359293,-0.23504793737083673,-0.8978047803975642,0.4853662815876305,-0.029252175241708755,0.5193784860894084,-0.5705042486079037,0.18264507176354527,0.32687100814655423,0.782186146825552,0.17554879607632756,-0.3221949259750545,-0.08332486683502793,-0.3263200488872826,0.581947167403996,0.37455051438882947,0.7261995794251561,0.8400517576374114,-0.7024672953411937,0.3143498534336686,0.11315816314890981,-0.3853986030444503,-0.5041928072459996,0.6597295100800693,-0.8961427323520184,0.6751264822669327,0.25025649229064584,-0.7238061646930873,0.6254431344568729,0.587656267452985,0.7716583120636642,-0.13021316938102245,0.47974128229543567,-0.47652646666392684,0.42478160932660103,-0.48335305135697126,0.7254286129027605,-0.5163949108682573,-0.3208524938672781,0.3870000415481627,0.8994718291796744,0.8680898202583194,0.6120950602926314,0.6027861922048032,0.9709425205364823,-0.801449534483254,0.2257431847974658,0.007260489743202925,-0.052125653717666864,0.7267800625413656,0.8756209672428668,-0.33325298596173525,-0.9621879644691944,0.8162332461215556,0.11123964842408895,0.9896707027219236,-0.8137161722406745,0.6536364546045661,0.3083779695443809,-0.08245833683758974,-0.6904713399708271,-0.5677955178543925,-0.14720322377979755,0.3756831637583673,0.9033612213097513,0.753660952206701,-0.1686313645914197,0.5794904273934662,0.9653258132748306,0.5494188377633691,-0.89172278996557,-0.5862329476512969,0.6161293042823672,0.24396926071494818,0.6495239767245948,-0.14156989939510822,-0.08442535251379013,0.6788898515515029,0.10620427131652832,0.3844577609561384,-0.5929105915129185,0.8503688024356961,-0.7729031201452017,0.7077852091751993,-0.7734714397229254,-0.32911477936431766,0.4530552248470485,-0.8923502317629755,0.994034668430686,-0.4201613846234977,-0.42662745248526335,0.9801059830933809,-0.3771915156394243,0.4848868763074279,0.2670060833916068,-0.73997274460271,-0.36252607917413116,0.7698831162415445,-0.7007235600613058,-0.4492942257784307,-0.2923352583311498,0.661610166542232,-0.7699475269764662,0.7396243568509817,-0.6921362411230803,0.09330817824229598,0.7902355985715985,-0.7094620070420206,0.9048808962106705,-0.4950705114752054,0.13601315580308437,-0.14292351016774774,-0.023327098693698645,0.1473186770454049,-0.3188020442612469,-0.9261728269048035,-0.21271406393498182,-0.19431668892502785,-0.9137084386311471,-0.7131333546712995,0.3529179352335632,-0.19058180507272482,-0.18123465264216065,-0.5523052113130689,-0.06213456531986594,-0.8799221934750676,-0.9063788140192628,-0.17577759036794305,-0.21593032125383615,0.6229889574460685,0.5145394681021571,-0.5715800151228905,0.859429860021919,-0.7469323235563934,-0.9691087617538869,-0.06470522005110979,0.4189530685544014,-0.4823700152337551,0.8479155735112727,0.8351119197905064,-0.29812635155394673,-0.532654426060617,0.1650035697966814,-0.5618559918366373,0.6516194767318666,0.6367348511703312,-0.23498276714235544,0.5590785178355873,-0.45654252264648676,0.23761705961078405,0.6462499890476465,0.6719173141755164,-0.40184983098879457,0.13353359326720238,0.04725387692451477,0.8871130212210119,0.25361258117482066,0.9346408122219145,0.6225294661708176,0.09336050320416689,-0.18937117839232087,0.9627664843574166,-0.9101957338862121,-0.17586803203448653,-0.10660533839836717,0.8005614685826004,0.9641824825666845,0.0928948842920363,0.8669278430752456,-0.569652455393225,0.7246175152249634,-0.2846089652739465,0.6823005373589694,0.4363530087284744,-0.9612364401109517,0.6931101558730006,0.48097989009693265,-0.3975842809304595,-0.10745950508862734,0.637612197548151,-0.47611357597634196,-0.3298228601925075,-0.2656641788780689,-0.06671738903969526,-0.10340838227421045,0.6667060125619173,0.6169803501106799,0.2597302692010999,-0.9378797085955739,0.7570707122795284,-0.8469943250529468,0.9257305120117962,-0.7954265209846199,0.8516853339970112,-0.9834664380177855,0.5124380453489721,0.47210806608200073,-0.22081005293875933,-0.8734373287297785,-0.5737678036093712,-0.663222061470151,0.6540549453347921,0.24321061978116632,0.5846339026466012,-0.15713856602087617,0.5075961155816913,0.0876753581687808,0.01657256856560707,-0.3963534184731543,0.8774448535405099,0.9055287535302341,-0.49145626462996006,-0.6776740080676973,0.3741932949051261,-0.4961823453195393,-0.3062957189977169,-0.7103728577494621,0.6263732807710767,0.3005749355070293,-0.21777474600821733,0.9897592607885599,-0.1557095074094832,-0.8013327172957361,0.9683032562024891,0.09933828422799706,0.5924905287101865,0.7123866439796984,-0.247500981669873,0.4560330198146403,-0.7649151333607733,-0.3298540050163865,-0.9060965646058321,0.3822291949763894,0.01512753777205944,-0.9044284974224865,-0.4331835308112204,0.07861000346019864,-0.09359948989003897,0.3491740645840764,0.5607246528379619,0.23523185774683952,-0.19319398701190948,0.2134944349527359,-0.6342504359781742,-0.47281309170648456,0.9559429655782878,-0.9624546989798546,-0.3472378351725638,-0.6463854247704148,-0.33087333384901285,-0.17533765453845263,0.15012749517336488,0.9820762821473181,-0.6376198162324727,0.13937911856919527,-0.9355731592513621,0.8472388945519924,-0.44520524609833956,0.3696407820098102,0.692533619236201,0.782421997282654,0.9694625725969672,0.7371067712083459,0.08216673973947763,-0.2664839825592935,0.6473734639585018,-0.013047253713011742,0.009647651109844446,0.7450095247477293,0.44329420756548643,-0.6184083502739668,0.32618021685630083,0.014693019445985556,-0.06251127645373344,-0.4028782481327653,-0.9243597653694451,-0.26046972908079624,-0.17163737444207072,-0.6574380327947438,0.47808536794036627,0.41555842151865363,-0.7252806429751217,0.6243171938695014,-0.9495209199376404,0.931110670324415,0.44037140160799026,-0.5023486083373427,0.3948889854364097,0.19737301021814346,-0.4966838820837438,-0.6372318062931299,-0.10209250077605247,-0.9721034155227244,0.12319271871820092,0.22594662755727768,0.5372427185066044,-0.7624722085893154,0.013394146226346493,0.07269824063405395,0.39268612628802657,0.5859284643083811,-0.7392470040358603,-0.8480965020135045,0.35811460204422474,-0.13634870341047645,0.5976320556364954,-0.09040198381990194,0.22846733452752233,-0.03773334063589573,-0.45981131540611386,-0.25357528449967504,-0.12017423333600163,0.40099821519106627,-0.6052341624163091,0.8382017272524536,0.7454900625161827,0.3121163994073868,-0.9890524493530393,-0.6780523317866027,-0.12806816073134542,0.38228887831792235,0.31564845284447074,-0.7069564168341458,0.5623635007068515,-0.17144379578530788,-0.2383458288386464,-0.4412599434144795,-0.9680778696201742,0.21374739613384008,0.5183346038684249,-0.06688605947420001,-0.9834079998545349,0.2002189001068473,-0.006481698248535395,0.5091819670051336,-0.29280546912923455,-0.11949631990864873,0.24638124369084835,0.2739860350266099,0.11010513408109546,0.6935146953910589,0.9448370933532715,-0.4903678633272648,0.15702543035149574,-0.35534675093367696,0.7315909205935895,0.17493722634389997,-0.6734028686769307,-0.19347648415714502,0.6542145982384682,0.3789519304409623,0.6932663302868605,-0.44526500813663006,-0.0013036797754466534,-0.9754665466025472,0.042344707529991865,0.41684868931770325,0.8923530243337154,0.904802133794874,-0.17162790335714817,-0.8933398905210197,0.9098430802114308,-0.18378897430375218,-0.6804289086721838,0.6541391503997147,0.20764602487906814,-0.1465759421698749,0.9787874869070947,-0.6917121550068259,0.25718374364078045,-0.8187111369334161,0.4201057218015194,0.8054398526437581,-0.03840240789577365,0.8763946876861155,0.6803766856901348,-0.6073504099622369,-0.6249862429685891,-0.7503419769927859,0.8426754428073764,-0.7220399398356676,0.4912424925714731,-0.03089387621730566,0.8737379461526871,0.8894012281671166,-0.4769672518596053,-0.04305814625695348,0.9370372770354152,0.9083826560527086,-0.1527062999084592,-0.9073339379392564,0.7237951527349651,0.6691891378723085,0.5050782323814929,-0.22972338879480958,-0.13411324890330434,0.5633244467899203,-0.723435836378485,-0.9673715494573116,0.1857333006337285,-0.38247226271778345,0.7255164524540305,0.7883940921165049,0.6053328313864768,0.613802922423929,-0.5615956117399037,-0.049908766988664865,0.6330721694976091,0.15883279778063297,0.10239377804100513,0.39865791564807296,-0.11522821243852377,-0.9518162682652473,0.04894218547269702,0.8719961228780448,0.8343068566173315,-0.926806571893394,-0.5522736273705959,-0.5256813992746174,0.6950488374568522,0.3375942939892411,-0.41369430907070637,-0.4906960683874786,0.5496763032861054,0.05281570041552186,0.7523073083721101,0.4739785441197455,0.9904257943853736,-0.3570839883759618,0.28158222138881683,0.09806287987157702,-0.8564320635050535,-0.9401499908417463,0.7665055692195892,0.6867739018052816,0.05126369884237647,-0.7410469762980938,0.931310105137527,0.3801396363414824,-0.8627094314433634,-0.40812388993799686,0.048142336308956146,-0.7005798434838653,0.29816801892593503,0.5915411077439785,0.2751125730574131,-0.33719396870583296,-0.17768566077575088,-0.7385741779580712,0.22337956493720412,-0.670876847114414,-0.4869271810166538,-0.10384752694517374,-0.4356093117967248,0.4395796116441488,0.7204873966984451,-0.07231236435472965,0.8507735743187368,-0.6945651662535965,0.5638261814601719,-0.052865760400891304,-0.7508425451815128,0.17902844585478306,-0.5991695593111217,0.07188023068010807,-0.20440669730305672,0.6066507883369923,-0.626092713791877,-0.919622475747019,0.6474044192582369,0.8741485653445125,0.510014287661761,-0.9628376914188266,-0.7535453364253044,-0.14886385016143322,-0.3369938610121608,0.494941967073828,-0.9305262072011828,0.20608421321958303,-0.41072149528190494,0.5318892886862159,0.4144530836492777,0.32111105462536216,0.9960135365836322,0.7311152154579759,0.8774572350084782,-0.41532477317377925,-0.32795506808906794,0.6873848899267614,-0.18698158953338861,0.12583259120583534,-0.5736612020991743,0.5582793415524065,0.39671301236376166,0.7205948359332979,-0.5322019876912236,0.41932452702894807,-0.33853011298924685,0.1485509411431849,-0.2901633074507117,0.16114721447229385,-0.04800100019201636,0.47640381939709187,0.7849266449920833,-0.7203771057538688,0.727020557038486,0.2602297752164304,0.13966947654262185,0.6242411285638809,0.8676491104997694,-0.9299221732653677,0.4814898557960987,0.7776019810698926,-0.7532994369976223,-0.8197466996498406,0.1882587573491037,-0.19647078961133957,-0.9437214722856879,0.4382499470375478,0.7107035997323692,-0.4436727473512292,0.07251876872032881,0.8931708848103881,-0.8789851297624409,-0.8203930505551398,0.8643174096941948,-0.3797929366119206,0.20165808545425534,0.81581214023754,0.9896074063144624,0.018987220712006092,-0.9246768313460052,0.8303237240761518,-0.8140382636338472,-0.38955732667818666,0.09410572936758399,-0.44589582784101367,0.48141157953068614,0.010982504580169916,0.3320518950931728,0.01599604682996869,-0.07151073077693582,0.6129398159682751,-0.3723425413481891,0.014241969678550959,0.006073933094739914,-0.39331607753410935,-0.19773214543238282,0.23009828943759203,0.8251169035211205,-0.6725304862484336,-0.9312156587839127,0.10533346934244037,-0.5353893642313778,-0.27192978421226144,0.6491642878390849,0.7442837818525732,-0.3250579219311476,0.21657678810879588,-0.17847546096891165,0.5480415965430439,-0.8247021995484829,-0.22754063922911882,0.5504166791215539,0.6312492559663951,0.8704420123249292,0.9551929021254182,-0.4881020118482411,0.054469430819153786,-0.23251067521050572,-0.9978918288834393,0.9347183424979448,0.5720255845226347,0.871288500726223,0.8534673512913287,0.7987704956904054,-0.17824310110881925,-0.8092932063154876,-0.10438356548547745,-0.4463472533971071,-0.7180857006460428,0.1565997125580907,-0.38987825345247984,0.45632732892408967,-0.680984674487263,0.5717724817804992,0.8871851339936256,0.9234531344845891,0.26572377886623144,0.43234720593318343,0.47902854438871145,0.9809950510971248,-0.911453157197684,0.854539627674967,-0.4290207573212683,-0.9806801746599376,0.2959007234312594,-0.5885982518084347,-0.2990786344744265,-0.5323936413042247,0.6478750575333834,0.6664250008761883,0.34063280932605267,0.1149196675978601,-0.7662478648126125,-0.30336303962394595,0.5781505890190601,-0.6641220296733081,-0.8268350968137383,0.5667626969516277,-0.8392664142884314,-0.12191985547542572,-0.7896932335570455,-0.6264429017901421,-0.19177334662526846,-0.9654749701730907,0.7129349419847131,-0.11928130267187953,0.3431828054599464,-0.6638045087456703,0.907473870087415,-0.13598690694198012,0.059446214232593775,-0.09472506633028388,-0.13220839947462082,0.8819457828067243,0.351038018707186,0.45042261062189937,-0.8528794785961509,-0.9608750501647592,0.17197195813059807,-0.29375140042975545,-0.5466003897599876,-0.23681712243705988,0.02988918498158455,-0.19641325855627656,0.08222327288240194,-0.17674595350399613,0.05872149299830198,0.514766032807529,0.11176791321486235,-0.6099690147675574,-0.3705267095938325,0.6678138938732445,0.5328663126565516,0.06959000742062926,0.653379691299051,0.36393454344943166,-0.9244525153189898,0.2403679834678769,-0.737367669120431,0.7424388872459531,0.945748504716903,-0.899249775800854,-0.5077454689890146,-0.3359295604750514,0.8849124391563237,0.5538186612538993,-0.5395510117523372,0.9688995587639511,0.7028899327851832,-0.05777159612625837,0.8822989384643734,0.11797433905303478,0.1067108428105712,0.5725390990264714,0.3184827622026205,0.08513565501198173,0.784375237300992,0.7901502572931349,-0.43215795513242483,-0.45444667525589466,0.9576105433516204,-0.3401049799285829,-0.9575826046057045,0.8455878221429884,0.6659457017667592,0.5013068215921521,-0.16671908600255847,0.5960362050682306,0.1974530559964478,-0.0871966052800417,0.9991529700346291,0.13737479643896222,0.6231404249556363,0.6662719645537436,-0.06444469699636102,0.057946417946368456,0.059076924342662096,0.42027263436466455,0.6307015004567802,-0.07024106197059155,-0.4986332361586392,-0.18253793800249696,0.7942006797529757,-0.27641000086441636,-0.26231394708156586,-0.46879920456558466,-0.23471349338069558,-0.88400789629668,-0.2329317405819893,-0.22688838886097074,0.7418535370379686,-0.6409320645034313,-0.510496559087187,-0.7269360753707588,-0.5502854227088392,-0.7742382870055735,-0.07498848345130682,-0.2128918650560081,-0.5260752402245998,0.5600705505348742,-0.9488686872646213,0.49791766749694943,-0.243862540461123,-0.7555491933599114,0.7312196143902838,-0.8883957075886428,0.9687621076591313,-0.255204810295254,0.21053202217444777,0.05188276059925556,-0.2216885113157332,-0.8382938294671476,-0.263544880785048,-0.3608045685105026,0.11862577917054296,0.7426030766218901,0.44255807949230075,-0.0335064297541976,0.3629015637561679,-0.29832253977656364,-0.353821131400764,0.09337846469134092,0.29862684663385153,-0.6815195740200579,0.8581679663620889,0.7448861827142537,-0.29502214724197984,-0.6753647634759545,-0.40390591509640217,-0.2031089160591364,-0.04120569070801139,0.8115102997981012,0.05167023837566376,-0.27907385816797614,0.7938852021470666,0.9508794862776995,0.5885968757793307,-0.5651114284992218,-0.6297193090431392,0.884136124048382,0.02418014081194997,-0.012940172106027603,-0.2501998427323997,-0.19091902347281575,-0.4349921941757202,0.1720835049636662,0.3323919577524066,-0.21032198006287217,-0.44507716270163655,0.2710403595119715,-0.6930805640295148,-0.9128109337761998,0.8516944982111454,0.9825592031702399,-0.5941331465728581,0.934768651612103,-0.238734673243016,0.5162641275674105,0.6959479288198054,0.3249343731440604,0.6563165872357786,0.23190727829933167,0.8263511313125491,-0.18079005787149072,-0.6015916792675853,0.7928869351744652,-0.758961244020611,0.7431526533327997,0.5930640022270381,-0.13887408282607794,-0.7418646048754454,-0.3746988605707884,-0.9363420433364809,-0.037269172724336386,-0.8035572646185756,0.9051764290779829,0.5697177434340119,0.7854096740484238,0.10592523356899619,0.3927009613253176,-0.3090867707505822,-0.9464789205230772,0.37058842508122325,0.6486677983775735,-0.035728877410292625,0.2284865928813815,-0.6395538225769997,0.5694060572423041,0.5590995289385319,-0.02970589231699705,-0.47273093508556485,0.33052764646708965,-0.5652409298345447,0.12424768041819334,-0.1582938297651708,0.13167240703478456,0.7909542601555586,0.2639072323217988,0.0060241688042879105,0.7221921156160533,0.3734425129368901,0.2351368209347129,-0.30492936400696635,-0.5540645103901625,0.434448117390275,0.5109220705926418,0.8249670891091228,0.06062651565298438,0.4183737663552165,0.30788835883140564,0.6915927403606474,-0.9504324248991907,0.09549776325002313,0.569328682962805,-0.4543770938180387,0.589877787977457,-0.062252805568277836,0.8652995736338198,-0.5282015628181398,-0.6489887768402696,-0.49408541759476066,0.7704670140519738,0.2902122256346047,-0.17092629941180348,-0.38629955518990755,0.5876547358930111,0.19412395171821117,0.8002931694500148,-0.2029349715448916,0.9211393967270851,-0.4641871936619282,0.6111104260198772,0.07819151878356934,-0.20439970819279552,0.22248637862503529,-0.3327864073216915,0.06681644963100553,0.42529866099357605,-0.523801383562386,-0.5269806482829154,-0.9650667533278465,0.21515130810439587,-0.4753565895371139,-0.5586589425802231,0.9500739853829145,-0.9980932353064418,-0.6549889403395355,-0.7084374385885894,0.09600220341235399,-0.277337356004864,0.11684398679062724,-0.7863768083043396,0.26900779735296965,0.3218470714055002,0.8392126457765698,0.7303623268380761,0.3726204480044544,-0.4666543146595359,0.6674651014618576,0.5848095794208348,-0.5257736318744719,0.9649439444765449,0.6033397582359612,0.8070571515709162,0.461460136808455,0.4818114023655653,0.7509709922596812,-0.7835091236047447,0.49405691772699356,-0.5099602481350303,0.5532172019593418,-0.694657783024013,-0.7328632678836584,-0.28911258606240153,-0.6021206150762737,0.4192184708081186,0.04123407183215022,0.6775150303728878,-0.9996079509146512,-0.984881698153913,-0.4161058724857867,0.10836679628118873,-0.7169489376246929,0.6264056377112865,-0.9653479615226388,0.8190364120528102,0.35831111250445247,-0.1598397302441299,-0.06095845205709338,-0.9707028619013727,-0.04445176059380174,0.7151820017024875,0.03516367170959711,0.6151290247216821,0.7334128972142935,-0.4861678034067154,0.7735371519811451,-0.24894244130700827,-0.43943873746320605,-0.03962045628577471,-0.1451326720416546,-0.5536461840383708,-0.8631673422642052,-0.6630799663253129,0.6462405505590141,-0.9297244600020349,-0.22379489103332162,-0.0026073274202644825,0.6249026637524366,0.6334030223079026,0.9726656097918749,0.29226330667734146,-0.8368147816509008,-0.09085890464484692,0.1759726945310831,-0.5062197661027312,0.6096540093421936,-0.3357475851662457,-0.8446833468042314,-0.5386075992137194,0.3642640095204115,-0.6294039599597454,0.4830983905121684,-0.6645261137746274,0.24249608581885695,0.31186061119660735,-0.3107747435569763,-0.9011883954517543,0.302681571803987,0.08852302841842175,0.7276755161583424,0.8232000260613859,-0.810123689007014,-0.004889057017862797,-0.9636532459408045,0.2814924316480756,0.342733948957175,0.4321840959601104,0.6223648586310446,-0.03986202506348491,-0.6848614271730185,0.405060195364058,-0.5520772826857865,0.1424701176583767,0.621640742290765,-0.49494277872145176,0.6590369893237948,-0.9639483685605228,0.5982741168700159,0.002467013895511627,0.8169341757893562,0.46313366014510393,0.23508404521271586,-0.6951558496803045,-0.6563972658477724,0.7113460283726454,0.07309758337214589,0.5063326107338071,0.7310308921150863,-0.8058789847418666,0.5337783424183726,-0.39115002984181046,0.696556924842298,-0.5109675885178149,-0.9011309170164168,-0.187502424698323,-0.6145537099801004,0.09215258900076151,-0.9569361270405352,0.047123565338552,0.4080720655620098,-0.030391985550522804,0.661163070704788,0.9386590751819313,-0.6533471602015197,0.7117522610351443,-0.25616719760000706,0.23924289364367723,0.22421057801693678,-0.908709448762238,-0.32091160397976637,-0.16703682811930776,-0.5378920966759324,-0.6287050573155284,-0.8531105215661228,-0.4683899749070406,0.46523793740198016,0.09459816897287965,-0.6013062922284007,-0.48168205050751567,-0.7933881212957203,0.44872251711785793,-0.6476923921145499,0.24058722844347358,0.314420472830534,0.17877886816859245,0.2227209392003715,-0.1483117500320077,-0.8508343147113919,-0.34563829749822617,-0.6060916008427739,0.7241177903488278,-0.5074942242354155,-0.20546364970505238,-0.20848681312054396,0.554419094696641,-0.5218660752288997,-0.9152767453342676,0.2502793166786432,-0.6789099248126149,-0.48772374354302883,-0.9710204149596393,-0.9831982185132802,-0.40133715979754925,0.9887867732904851,0.9018962979316711,0.7011304488405585,-0.5816106447018683,-0.3602427402511239,0.6684286906383932,0.1050323829986155,0.9257455356419086,0.26103068608790636,0.18967403285205364,0.04295856785029173,-0.6861857483163476,-0.33369559282436967,-0.976761813275516,0.886184913571924,-0.217223746702075,-0.4347175983712077,-0.5998845584690571,-0.8282885602675378,-0.07045145658776164,-0.7139284671284258,0.48320752987638116,-0.2732947184704244,-0.6264727166853845,-0.7831732793711126,0.35322736809030175,-0.6658316585235298,-0.1733097736723721,0.9130797740072012,0.7089065611362457,-0.19541349168866873,-0.42872620513662696,-0.5970410634763539,0.536582107655704,0.40103495772928,-0.2641707048751414,-0.781193002127111,0.02860418614000082,-0.0741289253346622,-0.24092143587768078,-0.6293654316104949,0.32287511928007007,-0.44869101932272315,0.5480048996396363,0.575195059645921,-0.5788096357136965,0.006222456693649292,-0.16590598551556468,-0.9685689234174788,0.3519072672352195,0.8476159037090838,0.6012440207414329,-0.32043733494356275,-0.07652276568114758,0.8870589155703783,-0.8072105688042939,-0.08645879849791527,-0.38466979190707207,0.9332051337696612,0.9681851253844798,-0.04779023723676801,-0.02676392626017332,0.624970331788063,0.4357589464634657,-0.28686574241146445,0.019307338632643223,0.045204078778624535,-0.7702778507955372,0.517320572398603,0.8538111909292638,-0.4262082250788808,-0.9880256527103484,-0.7427052520215511,0.7536496976390481,0.4334580977447331,0.10001267911866307,0.6792431934736669,0.28052601125091314,-0.7514569661580026,0.8587496397085488,-0.6598583962768316,0.24468166241422296,-0.14897439209744334,-0.9904550635255873,0.6155029032379389,-0.8053961945697665,0.6060331431217492,0.008810496423393488,0.6424535755068064,0.8195750098675489,-0.25584396813064814,-0.22488455288112164,0.027403434738516808,-0.5813965769484639,-0.21845418494194746,0.07696870295330882,-0.6138345138169825,0.03971377573907375,-0.02409024490043521,-0.05700268829241395,0.9928849656134844,-0.05845038313418627,-0.34371032705530524,0.9108491134829819,-0.8407323714345694,0.07072800444439054,-0.1809723861515522,-0.5854852781631052,0.9994810675270855,0.4523883811198175,-0.6366872331127524,0.8417950128205121,-0.005078334826976061,-0.0005591558292508125,0.6497420109808445,-0.28466927260160446,0.37274246010929346,-0.025932331569492817,0.006718464195728302,0.0349315507337451,0.7659200453199446,0.5701775508932769,0.3293898752890527,0.09140777494758368,0.9677363694645464,0.46213636035099626,-0.6705223745666444,-0.8311649542301893,-0.6216897517442703,0.3850472499616444,0.6868015243671834,0.261581476777792,-0.026407493744045496,0.4579064236022532,0.198782148770988,0.18970133317634463,0.5525468396954238,0.7133606499992311,-0.1616006656549871,0.01916305487975478,0.9730782951228321,-0.4494570870883763,0.10142702842131257,0.9487276836298406,0.21939999796450138,-0.9486917448230088,0.8781475718133152,0.057887372095137835,0.005046779289841652,-0.8736526165157557,-0.6209114706143737,-0.6295296368189156,0.5240270080976188,0.25792181538417935,0.06699864938855171,-0.43054450675845146,0.9527803775854409,-0.5227458234876394,0.5261558033525944,-0.25314030423760414,-0.6803707503713667,-0.5871325293555856,0.1019426784478128,-0.7818343620747328,0.35780634451657534,0.08750219130888581,0.4677947270683944,-0.5423677540384233,-0.24006571806967258,-0.31138306949287653,-0.28219734551385045,0.7503695720806718,-0.19633318344131112,0.9036610494367778,0.0645067635923624,-0.7184557020664215,0.48021886218339205,-0.09314546966925263,0.338603877928108,-0.6994191650301218,0.7699906583875418,-0.552430774550885,0.11461564525961876,-0.7972595514729619,0.2456477121450007,-0.9765276685357094,0.9408963485620916,0.3060408988967538,0.15664619812741876,0.4498674413189292,0.18103771097958088,-0.4257130967453122,0.24270067131146789,-0.39270154433324933,-0.12046197662129998,-0.9386998121626675,0.8880256679840386,-0.007720537483692169,0.8252845825627446,0.0006430651992559433,0.6281095747835934,0.6254075462929904,0.15242143580690026,-0.5224595908075571,0.7672530170530081,-0.5976471421308815,0.5629127761349082,-0.034723954275250435,0.6774131148122251,0.5621347138658166,0.10466651944443583,0.660884412471205,0.7421967340633273,0.9488490256480873,0.5043909158557653,0.2954762694425881,-0.2692414242774248,0.4124403395690024,-0.34930050605908036,0.4422366004437208,0.4334076838567853,-0.3276375215500593,-0.8663205062039196,0.3440107717178762,0.3319868864491582,-0.5287399017252028,0.41852546809241176,-0.010786540806293488,0.07969746692106128,-0.11812716396525502,0.2736745239235461,0.3337802072055638,-0.26989223901182413,-0.991202614735812,-0.14750951761379838,-0.04217821126803756,0.33159529604017735,-0.3338617575354874,-0.4008970516733825,0.7084607095457613,0.3801908362656832,0.7267546495422721,0.593832008074969,0.5036644199863076,-0.7281027785502374,-0.668734076898545,-0.33979933708906174,0.79425855493173,-0.30821439949795604,0.9381157262250781,0.7924813963472843,0.18765242490917444,0.14525890536606312,-0.0319550447165966,0.5016080415807664,0.3413189761340618,-0.7453341148793697,-0.41217753617092967,0.6082842419855297,0.10065044183284044,-0.35387880727648735,-0.3253275156021118,0.8054441255517304,0.5927315666340292,-0.792292507365346,0.15346219204366207,-0.5700226086191833,0.9876388497650623,-0.5371663849800825,0.09041969990357757,0.664106217212975,0.16059961495921016,0.3079327940940857,0.14448037603870034,-0.122632110491395,-0.5086677996441722,0.15160505380481482,0.3673197189345956,0.42578940745443106,-0.17737955134361982,-0.5773483132943511,-0.07690269825980067,-0.42450105864554644,0.19912150874733925,-0.9402813627384603,-0.6795461573638022,-0.7385405427776277,-0.4484797748737037,-0.7345554893836379,0.510792788118124,0.24168922239914536,0.2973742140457034,-0.6232551946304739,0.8506545498967171,0.4583890326321125,-0.5016378038562834,-0.7044561351649463,0.4204911016859114,-0.010820353403687477,-0.35720479115843773,-0.10911244712769985,-0.7240542331710458,0.7023121993988752,-0.1736412299796939,0.6727267922833562,-0.6515820003114641,-0.039528070949018,-0.9546108222566545,0.3826739089563489,0.29849996976554394,-0.4044107738882303,0.6412822124548256,0.503914559725672,-0.6364601012319326,0.3967515085823834,-0.142959242220968,0.778637875802815,0.1716414885595441,0.4614296401850879,-0.20410739164799452,-0.927562840282917,-0.3425448960624635,0.14087666664272547,0.47198934480547905,0.7389043224975467,-0.4658405650407076,-0.6644980562850833,0.2418614742346108,-0.9756356477737427,0.5949349300935864,-0.33128592232242227,0.6654714588075876,-0.45688202837482095,-0.21917453361675143,0.4644419220276177,0.6915683886036277,0.7951154848560691,0.10918806493282318,-0.107387182302773,-0.6991202211938798,-0.3955256612971425,-0.40015760995447636,-0.3972506048157811,-0.1275127250701189,-0.21500508207827806,-0.5335309379734099,0.041581532917916775,0.17268788302317262,0.9007874676026404,0.4397785519249737,-0.9254825543612242,-0.15144406026229262,0.8271024394780397,-0.9626693571917713,0.21011167485266924,-0.7341253533959389,-0.413015628233552,0.29151345044374466,-0.5051832920871675,0.8763508051633835,0.7490246747620404,-0.4005211587063968,0.787949058227241,-0.20739241736009717,0.3885182882659137,-0.7800865676254034,0.10211179312318563,0.12372224871069193,0.8382235234603286,-0.9835467478260398,0.771754409186542,0.6355063142254949,0.7084086015820503,-0.5556261339224875,-0.15721830958500504,-0.18213637918233871,-0.5069342195056379,-0.7908466747030616,0.05948140472173691,-0.683567704167217,-0.5254192394204438,0.4040688439272344,0.9624565485864878,0.7225374858826399,-0.791800934355706,-0.7389904391020536,0.04824727587401867,-0.7487762267701328,0.6416884590871632,-0.7235871735028923,-0.047910640481859446,0.11511330399662256,-0.2991118053905666,-0.16074436577036977,0.33449186850339174,-0.6157681071199477,-0.9298067460767925,0.45870235888287425,0.3743928400799632,-0.5341374888084829,-0.5830300231464207,0.14179716631770134,0.9494895716197789,0.9822763921692967,0.0638153706677258,-0.8344206362962723,-0.5732960249297321,0.9026121720671654,-0.311595416162163,0.7911837981082499,-0.6699235537089407,-0.9071246637031436,0.6621720734983683,0.9500517216511071,-0.32795118261128664,0.47918462799862027,-0.08628949709236622,-0.6460074963979423,-0.3440104709006846,0.15203422214835882,0.43125762371346354,-0.9990654331631958,0.011610440909862518,-0.24151925230398774,0.7349370988085866,-0.4960314966738224,-0.3968853554688394,-0.025646032765507698,0.4672622615471482,-0.9729515039362013,0.3255806937813759,0.7022202066145837,0.36082508927211165,-0.5165922087617218,0.8773622186854482,-0.7898578750900924,0.5184503169730306,0.08134681219235063,-0.33889917144551873,-0.1626487085595727,-0.7765844333916903,0.30885630333796144,0.13280170038342476,0.048182656057178974,0.3240109500475228,-0.04942070133984089,0.1312576769851148,0.24611106142401695,-0.4937629848718643,0.6317815822549164,0.9196733804419637,0.8050003689713776,0.36080641485750675,0.39710712619125843,0.8879631701856852,-0.8741711624898016,-0.2981118247844279,0.8970739217475057,-0.7262253491207957,-0.8958101919852197,-0.05194435874000192,0.8808824005536735,-0.01661709789186716,-0.449052925221622,-0.6554834893904626,-0.7880453877151012,0.654701488558203,0.6680447296239436,0.2444693804718554,-0.624781503342092,-0.8069453942589462,0.44413910200819373,0.548110050149262,0.904474797192961,0.24521854519844055,0.22251423634588718,0.7222738461568952,0.13860518671572208,-0.41555186873301864,-0.16983232321217656,0.6847657859325409,0.08084996929392219,0.10751737747341394,-0.3672730717808008,0.3187591233290732,0.442026627715677,0.05424779001623392,0.6150696640834212,-0.18302951660007238,-0.0403365152888,0.6892849667929113,0.7163387308828533,0.9183942009694874,0.5616412810049951,-0.2091729580424726,-0.37699885852634907,0.49650955479592085,0.710738961584866,-0.7401756793260574,0.3235258334316313,-0.7844296935945749,-0.47182696871459484,0.13695493340492249,0.8303691376931965,0.6858254829421639,-0.20887171104550362,-0.6024932255968451,-0.516231079120189,-0.19229364953935146,0.6092907330021262,0.3479971494525671,-0.07219777954742312,-0.7570032305084169,0.5694870897568762,-0.1976832509972155,0.13627400901168585,-0.7400111029855907,-0.7335988231934607,-0.879165846388787,-0.4757190737873316,0.440841072704643,-0.6045135082677007,0.7824240629561245,0.61015680199489,-0.07728972099721432,-0.6144771724939346,0.7094109719619155,-0.48301866836845875,0.4293439891189337,0.30352809745818377,0.35282117361202836,-0.33732544956728816,0.8381296144798398,0.005022227764129639,0.09256430482491851,-0.9725698512047529,-0.38694900227710605,-0.7554423650726676,-0.14281592145562172,0.16018300596624613,0.8451442425139248,0.04426986677572131,0.6333682867698371,-0.015744627453386784,0.4086729339323938,-0.8209058134816587,-0.4874777547083795,-0.913394314236939,0.24064413411542773,0.01907181181013584,0.3791679837740958,0.06835886463522911,0.17479647742584348,0.5689704711548984,0.6842186776921153,-0.09495383407920599,-0.6460905112326145,-0.6388847203925252,0.8189692734740674,-0.7799944961443543,0.8619795911945403,0.2063430082052946,-0.9223788906820118,0.1264402624219656,-0.804023583419621,0.053541460540145636,0.1584120225161314,0.34813255351036787,-0.7748047495260835,-0.5740138269029558,-0.9211748451925814,0.31869438104331493,0.09839894203469157,-0.3165579531341791,-0.12699906900525093,0.5125025385059416,0.3300676862709224,-0.39178916811943054,0.01129366597160697,0.5947715770453215,0.06315577868372202,-0.9737390195950866,0.9316979278810322,-0.5958087332546711,-0.8198160943575203,0.12670029886066914,-0.36478457879275084,0.9494460420683026,0.9865006185136735,-0.7262490810826421,0.4279905674047768,-0.9271509004756808,-0.12185869831591845,0.5700463815592229,-0.15598640404641628,-0.3714771247468889,-0.2574022985063493,-0.6847822070121765,-0.6569239213131368,0.573873944580555,-0.23272853018715978,0.008160179480910301,0.08016243483871222,0.48328415071591735,0.5006629591807723,-0.70999755570665,-0.853134186938405,-0.2075087889097631,0.39077979046851397,-0.9604124999605119,-0.07596607692539692,0.4297124822624028,0.19403596874326468,-0.2083164663054049,0.8544962671585381,-0.0603058566339314,0.8867919552139938,0.639778786804527,-0.1307828496210277,0.4205765724182129,-0.7235159273259342,0.47747991932556033,0.333476600702852,-0.8300217157229781,0.6087175360880792,-0.011938332580029964,0.854508735705167,0.0110011612996459,-0.17401502234861255,-0.8218670841306448,-0.6517276554368436,-0.7113145934417844,-0.4045391515828669,-0.2634438560344279,-0.9503788859583437,0.6213854015804827,-0.039875471498817205,0.24008956644684076,0.4950203550979495,-0.29358658753335476,-0.8974479893222451,-0.9124661129899323,0.7049672887660563,0.9824330522678792,0.2851386093534529,-0.16103285877034068,0.7987414402887225,0.4145543104968965,0.030424258206039667,-0.6278541581705213,-0.401187002658844,0.3908731648698449,-0.4809404001571238,-0.7572753317654133,0.4553758134134114,0.4639296056702733,-0.3289876854978502,-0.4215486980974674,0.7752358596771955,-0.7154158079065382,-0.3821481764316559,0.3819711678661406,-0.32888185791671276,-0.9165491592139006,-0.649624886456877,0.2766223014332354,0.11552249686792493,0.05382909579202533,-0.1685882741585374,-0.9541929117403924,0.3488442189991474,-0.237609738484025,0.10391882294788957,0.8366934647783637,0.5644441610202193,0.3413854204118252,0.46002871030941606,-0.8662421857006848,-0.44753069477155805,-0.6976371137425303,0.08510397793725133,0.8141434602439404,0.7233303133398294,0.6927458569407463,-0.6728368354961276,-0.5484535438008606,0.6666444716975093,0.09279477782547474,0.8513787356205285,-0.0978028578683734,-0.1610061745159328,0.7017090441659093,-0.6964214751496911,-0.8229547864757478,-0.8230534065514803,0.344432694837451,0.7596265748143196,-0.37918918021023273,-0.14914955338463187,0.18481519306078553,0.34567009517923,-0.861825228203088,0.32515622675418854,-0.35518360743299127,0.9892431925982237,-0.7731042774394155,0.03227459453046322,-0.9696999378502369,-0.2757800268009305,-0.25248000072315335,0.8102779416367412,0.7410180661827326,0.6515261414460838,-0.017338231671601534,-0.5474749384447932,-0.019754731561988592,0.31534675182774663,-0.27111485973000526,0.8234529220499098,-0.6403248268179595,0.6162288091145456,-0.8167551890946925,0.37542751617729664,-0.7290087514556944,-0.8431912423111498,-0.9852014486677945,0.5725299501791596,-0.31766327237710357,0.48404037626460195,-0.042755585629493,0.714223749935627,-0.9023927245289087,0.8687152904458344,0.8612444987520576,-0.3455299884080887,0.17760484851896763,-0.08409043261781335,-0.5255000866018236,0.666918033733964,-0.08391188457608223,0.02425161562860012,0.4741497468203306,-0.22104745404794812,0.8993505034595728,0.35340505186468363,0.26195046538487077,-0.678467480931431,-0.13351610396057367,0.6060315282084048,0.4042459763586521,-0.24686333071440458,0.8855486549437046,0.8183359163813293,0.9234973737038672,0.06361315911635756,-0.10775802843272686,0.2895732428878546,-0.871204384136945,-0.9060402661561966,-0.7658053138293326,0.8685401151888072,-0.6840497646480799,0.5570367123000324,-0.26334981247782707,0.36905494099482894,-0.7347763390280306,-0.53712237207219,-0.47317769890651107,-0.007341352757066488,-0.2840052070096135,0.9285319219343364,0.6703923540189862,0.020800593309104443,-0.9489598823711276,-0.9170881058089435,0.5709465756081045,0.5389469065703452,-0.6008783699944615,0.6143292542546988,0.734759964980185,-0.23215947207063437,0.038053741212934256,-0.11211112607270479,-0.8184672240167856,0.8901451653800905,0.9683759063482285,-0.41029914980754256,0.8536272654309869,0.3442612481303513,-0.9374415562488139,-0.8292802735231817,-0.012558467220515013,-0.2291420828551054,-0.3418235625140369,-0.5827402090653777,-0.33605251368135214,0.0720040719024837,-0.2629662328399718,-0.23556635342538357,0.1225160420872271,-0.15074313059449196,0.7160959411412477,0.6992539349012077,-0.34102418227121234,0.564116399269551,0.47785845631733537,-0.03557061916217208,0.24231141014024615,-0.855742109939456,0.6694228160195053,0.9280816838145256,0.7139134793542325,-0.6419036402367055,-0.892633119598031,-0.8355929772369564,-0.39727756986394525,0.3566426355391741,-0.7279645567759871,0.9116949839517474,0.7530976505950093,-0.9894465636461973,-0.01579865301027894,-0.8927826741710305,-0.3188598002307117,-0.31655418360605836,0.5220282515510917,-0.5697662932798266,0.9587694341316819,-0.4860357060097158,0.04352054512128234,0.2876771227456629,0.5595196383073926,-0.15728439390659332,-0.27432827930897474,-0.14797180332243443,-0.890858216676861,-0.9094711523503065,0.43425712175667286,0.34069373784586787,-0.2705603837966919,0.5637160814367235,0.7520172232761979,-0.723714163992554,0.2206856175325811,0.43676720978692174,-0.41309317434206605,0.5696865259669721,-0.686815645545721,0.690096219535917,0.666800637729466,-0.7815008093602955,-0.20426777424290776,-0.3539471114054322,-0.1418241672217846,-0.12023304542526603,0.9140588133595884,-0.19378385925665498,0.48009087704122066,-0.4016989259980619,-0.5405614380724728,0.5908680935390294,-0.004808735568076372,-0.18733984045684338,0.5944789717905223,0.6900845509953797,-0.5136251943185925,0.527055271435529,0.8575824140571058,-0.1178283360786736,0.0004190625622868538,0.44136054953560233,-0.5619665579870343,0.5593855679035187,-0.43320994125679135,0.7712699468247592,-0.1742862514220178,-0.5724094090983272,-0.9325381126254797,-0.5673929234035313,-0.5790073862299323,0.5217181593179703,0.5961664253845811,0.14868973707780242,-0.2752634254284203,-0.640413018874824,0.16581419063732028,0.8748809974640608,-0.8565392978489399,-0.6941559570841491,0.21082414081320167,-0.5462142475880682,0.08090405398979783,0.6180586204864085,-0.23190381471067667,-0.27212652610614896,-0.30371636152267456,-0.5894269230775535,-0.9715192238800228,0.6889012670144439,0.8237230065278709,0.9306914280168712,0.8116616383194923,0.1076241391710937,-0.06279525347054005,0.2391444705426693,-0.6939825336448848,-0.1832355665974319,-0.3259711912833154,0.2730242349207401,-0.6419858084991574,-0.36669500079005957,0.4707686109468341,-0.14740768959745765,-0.5840427195653319,-0.5482765757478774,0.5998377786017954,0.3016592152416706,-0.23738496378064156,0.6405821875669062,0.8258674987591803,-0.5378989321179688,-0.41768474923446774,-0.695742211304605,-0.9344265419058502,0.25919561833143234,0.5045835105702281,0.9497534586116672,-0.7640015636570752,0.848700936883688,0.08719694800674915,-0.3422367973253131,0.876571059692651,-0.024364152923226357,-0.32747822627425194,0.05513454042375088,-0.4997731684707105,-0.33833374734967947,0.4920312990434468,0.6099213166162372,0.2821726738475263,0.05395584413781762,-0.4736940902657807,0.45114934630692005,0.47701939893886447,0.005684260278940201,-0.01936582149937749,-0.7350880731828511,-0.2818124946206808,-0.17254353314638138,0.6044683293439448,-0.5383264445699751,0.6347554372623563,0.6573937418870628,-0.8052898794412613,-0.7745481631718576,0.8849209821783006,0.9223005305975676,0.2070393143221736,0.3986790422350168,0.11205058032646775,0.12877750210464,-0.11596525460481644,0.38353718956932425,0.08841558638960123,-0.42853738740086555,-0.1725486465729773,-0.5916535346768796,-0.1617504581809044,0.9324567224830389,-0.6563862096518278,0.8486447758041322,-0.5022300514392555,0.69435626687482,0.0768179944716394,0.13887714128941298,-0.29240273172035813,-0.3672605650499463,0.5586913754232228,-0.5674338974058628,0.3490991606377065,0.5974736530333757,0.3183514070697129,0.8743095332756639,0.757542154751718,0.3103438629768789,-0.5597401540726423,0.333793050609529,0.2360772262327373,-0.9346251664683223,-0.9580128374509513,-0.02822735905647278,-0.21502945898100734,0.7962053338997066,-0.18015545839443803,0.6864459868520498,0.039499183651059866,0.975591310299933,0.5519878976047039,-0.5096965515986085,0.4242284409701824,0.5382603723555803,-0.7093697427771986,0.4642603057436645,0.00394611619412899,-0.5100083784200251,0.7618501232936978,-0.11200575763359666,-0.9427152797579765,-0.39288350800052285,-0.5795785500667989,-0.416997988242656,-0.04801570205017924,0.4570821253582835,0.3955581085756421,-0.22240975312888622,-0.6190331913530827,0.1255422867834568,0.05488206772133708,0.9483606154099107,-0.5648047146387398,-0.8208123864606023,0.9786648848094046,0.16997324861586094,0.5737856244668365,-0.6916320491582155,0.12089138757437468,-0.22738928394392133,0.1838133675046265,-0.8936837548390031,-0.8726850161328912,-0.5156996240839362,0.40868335496634245,-0.9565862356685102,-0.5166396996937692,0.22004756378009915,0.19123916560783982,-0.40241778874769807,0.24085072567686439,0.2995840199291706,0.9815822495147586,0.888012443203479,-0.07371472753584385,0.8666852004826069,-0.009606810752302408,-0.485544397495687,-0.9169476944953203,-0.9716721889562905,0.3464950602501631,0.47516560461372137,-0.36154959350824356,-0.9566140249371529,-0.5631194482557476,-0.05391317326575518,0.9427590677514672,-0.46371434116736054,-0.1613027579151094,-0.9024769174866378,-0.5238354555331171,0.9738604696467519,0.22177880490198731,-0.8547300109639764,-0.7266619401052594,0.1508749295026064,0.29139443952590227,-0.6176494611427188,0.32526412047445774,-0.22870078263804317,-0.6606390266679227,0.5512383123859763,-0.23688132502138615,-0.12351313745602965,-0.6720040761865675,0.5752204721793532,0.4583407058380544,-0.4171805279329419,-0.534948748536408,-0.4253167072311044,-0.5244471351616085,0.9604486604221165,0.4697854155674577,0.706562009640038,0.5805984069593251,-0.9404686312191188,-0.3671005782671273,-0.7730570319108665,-0.4252399639226496,0.2693754294887185,-0.05259741237387061,0.7767325700260699,0.8851241753436625,0.2160002924501896,0.38048800826072693,-0.7040484813041985,0.31739332247525454,0.08581428555771708,0.01630938844755292,-0.30939515586942434,0.24654082022607327,-0.06681159464642406,0.5940514211542904,-0.6774982740171254,-0.17546921642497182,0.1690711760893464,0.26638022856786847,0.12934438651427627,0.8643698990345001,0.702393215149641,0.8453500596806407,-0.4014229732565582,0.1032078736461699,0.7739346525631845,0.2663971628062427,-0.16617093048989773,0.6153694200329483,-0.10408330103382468,0.19092174712568521,-0.5667785564437509,0.5495056225918233,0.7079950412735343,-0.22504046699032187,0.9078113841824234,-0.7771744411438704,-0.5454460582695901,0.49509915988892317,0.5017823441885412,-0.7541753817349672,0.7044887659139931,-0.846210028976202,-0.20801070937886834,0.15046299062669277,0.191768164280802,-0.753388378303498,0.02327307453379035,-0.9621110409498215,0.08211496332660317,-0.5525585291907191,-0.005779641680419445,0.9351731268689036,-0.40947853680700064,0.38169968128204346,-0.06517807394266129,0.7611286896280944,0.24318339349702,-0.5262381825596094,-0.05850011948496103,0.8751365328207612,0.5649160007014871,-0.4180826232768595,-0.9554334743879735,-0.5944453543052077,-0.13516044337302446,-0.6604240154847503,-0.8153944155201316,-0.15229378640651703,-0.7088937470689416,-0.697324292268604,0.2654872229322791,0.6803269605152309,-0.4411395341157913,0.6924416874535382,0.4880677801556885,-0.07654150668531656,-0.73087966023013,-0.046795472502708435,-0.5013951505534351,-0.1113106464035809,-0.807993408292532,-0.40123422536998987,-0.09986893832683563,-0.3822258277796209,0.08692359272390604,-0.6886040987446904,0.5386323253624141,0.037757649552077055,-0.01170003367587924,-0.6459347014315426,0.2320536714978516,-0.7981192241422832,0.9638722273521125,-0.8439743285998702,0.01714614825323224,-0.8701625736430287,-0.7861391408368945,-0.2847823053598404,0.6150193139910698,-0.7723416369408369,-0.9826819645240903,-0.06266482919454575,0.9222372970543802,-0.05518513359129429,-0.4736496564000845,-0.6683923513628542,0.5681123714894056,0.2939660092815757,0.8382940082810819,-0.4395799315534532,-0.6903226617723703,0.6018521273508668,0.2136447513476014,-0.5806344649754465,-0.36634145863354206,-0.6969388392753899,-0.17886366602033377,-0.8550206949003041,-0.05341333895921707,0.823899139650166,0.4753509829752147,0.06245486158877611,0.26949578849598765,0.659423275385052,0.4628111757338047,-0.33352842135354877,-0.9722100365906954,-0.355458103120327,-0.3306478871963918,-0.4571347255259752,0.43155169719830155,0.6963875070214272,0.5191842201165855,-0.44175849948078394,0.6748652304522693,0.4707410307601094,0.1157761961221695,0.34513231785967946,-0.31842399621382356,-0.5133143216371536,-0.7813336374238133,0.7249111067503691,-0.5363642927259207,0.2408074652776122,-0.40645472798496485,-0.965808792039752,-0.23462719889357686,0.6625141962431371,-0.5972573375329375,0.6393735157325864,-0.9320244891569018,-0.810200366191566,0.42718668607994914,-0.536582934204489,0.4888754738494754,-0.9759415416046977,0.42784007359296083,0.6253657983615994,-0.8902338212355971,-0.1316987406462431,-0.8250861596316099,0.7036346443928778,-0.24444610625505447,0.37901382567360997,-0.4688233891502023,-0.20431512081995606,-0.4790675435215235,0.3161523272283375,0.4756482024677098,-0.5675825937651098,-0.5502902516163886,0.8768729767762125,0.8976146150380373,-0.9907053071074188,0.8113777698017657,-0.7991129173897207,-0.053294808603823185,-0.5449508824385703,-0.8202685252763331,0.05630543828010559,0.3036550469696522,-0.29330511670559645,-0.10199983743950725,-0.8671237910166383,-0.8440041546709836,0.29302852088585496,0.03716445807367563,0.9396111113019288,0.7594771287404001,0.02759741758927703,-0.9043298228643835,-0.1784337260760367,-0.789787536021322,-0.9616408478468657,-0.7286685518920422,0.8870383580215275,-0.3289974872022867,-0.7125234846025705,0.39364657551050186,0.9939559185877442,-0.09421919286251068,0.8907982385717332,0.5240334933623672,-0.47795942053198814,-0.9804998799227178,-0.15716995019465685,-0.6992224040441215,-0.20276204915717244,-0.6662004115059972,0.7575004734098911,-0.5995109570212662,0.25427733547985554,0.7892639329656959,-0.8173535279929638,-0.8835650086402893,0.496738959569484,0.9866303168237209,-0.28712217742577195,-0.22190318861976266,0.9417991838417947,0.95993193378672,-0.12097891792654991,0.1092340499162674,0.40274519193917513,-0.1354925106279552,-0.0006097652949392796,-0.8694406296126544,0.794763230253011,-0.9466929095797241,0.5345505611039698,0.4443939416669309,0.2330608917400241,-0.10883232718333602,0.41854766570031643,0.2825427879579365,0.7481988999061286,-0.8360285931266844,-0.8569192681461573,0.6467892793007195,-0.9567900053225458,0.24777946155518293,0.6613133032806218,0.26979160541668534,0.1497073038481176,0.549764996394515,0.7472783639095724,0.28268395364284515,-0.9382732380181551,0.5963807348161936,0.6966017498634756,-0.3164331465959549,0.5003873757086694,0.3955398076213896,0.06800738256424665,0.7917498094029725,-0.948939970228821,-0.14980571158230305,-0.8552002082578838,0.8120258059352636,0.6748225642368197,-0.7789591695182025,0.5767043740488589,0.8145383945666254,0.9053868735209107,0.016483630519360304,0.00977620854973793,-0.7780210031196475,0.4310294948518276,-0.24685538886114955,-0.9983360250480473,0.029175821226090193,0.5484448694624007,-0.344508798327297,-0.23593323398381472,0.6014543739147484,0.5573111949488521,-0.028377933893352747,-0.5868788021616638,0.2281956127844751,0.7983345706015825,-0.742516175378114,-0.22472662897780538,0.06373261520639062,-0.23025824455544353,-0.9121115528978407,-0.9994009612128139,0.5564678399823606,-0.3166028903797269,-0.45068250922486186,-0.5316514265723526,0.6545215053483844,0.2486651143990457,-0.615651180036366,0.02706266287714243,0.23637968534603715,0.7964589362964034,0.8301557367667556,-0.9462087736465037,-0.786178789101541,0.07291827304288745,-0.1974343848414719,-0.4394959816709161,0.2958099106326699,0.6009560353122652,0.9203071086667478,0.7304326114244759,-0.714250504039228,0.20467211911454797,0.40202325489372015,-0.03846504399552941,-0.9821536638773978,-0.16247254330664873,0.6085459687747061,0.8009292860515416,0.97367690410465,0.8456979016773403,0.6794304237700999,0.24440476763993502,0.5000215251930058,0.6658298266120255,-0.7091411603614688,-0.06008563609793782,-0.7533789216540754,0.29067057790234685,0.7030574311502278,0.5362673895433545,-0.3848959053866565,0.1477571283467114,0.3027140866033733,0.04782835207879543,-0.5647757039405406,0.6792247286066413,-0.30479028634727,-0.6782591971568763,0.2039858615025878,-0.33350868290290236,0.9106083414517343,0.988899658434093,0.34373685624450445,-0.42754650535061955,-0.19461778458207846,0.12764687137678266,0.8232899936847389,0.8595626261085272,0.38088593259453773,-0.8326463992707431,-0.3918828321620822,0.4222992341965437,-0.28869538428261876,-0.6151306121610105,-0.8883828362450004,0.5048543154262006,-0.37304946640506387,-0.5742566571570933,-0.5891565796919167,-0.6080722822807729,0.7211833940818906,0.7348129358142614,0.4588236166164279,0.41928546503186226,-0.35119984159246087,0.03820351790636778,-0.7019587308168411,-0.23566382844001055,-0.16240407526493073,0.7634479901753366,0.897783116903156,-0.48060675198212266,-0.4878809666261077,0.585586572997272,-0.3637775555253029,0.5359464013017714,0.536552906036377,0.375155808404088,0.6371815935708582,0.8780269296839833,0.7290260503068566,0.7413974031805992,0.15440802089869976,0.49042997043579817,-0.9922735067084432,0.0910348892211914,0.5672130258753896,-0.2260683779604733,0.3231622953899205,-0.6789515712298453,-0.8547919215634465,-0.37365181325003505,0.06823329953476787,0.7281205607578158,0.48202993953600526,-0.2847305592149496,-0.9209271818399429,-0.808288037776947,-0.07239178288727999,0.9609905597753823,-0.07029314758256078,-0.5256168656051159,0.9561305423267186,-0.9479778856039047,0.6913643511943519,-0.2060428848490119,0.19475034018978477,0.8989972025156021,0.46910809352993965,0.30423543974757195,0.7258552499115467,-0.557046860922128,-0.30475397733971477,0.3435386838391423,-0.43465173337608576,-0.5502219325862825,0.657135411631316,-0.950113526545465,0.27292951568961143,-0.5277646724134684,-0.595703755505383,0.08171417890116572,-0.5151790627278388,0.9774465416558087,-0.5743187144398689,-0.38948403112590313,0.49866949720308185,-0.9173655835911632,-0.20719231199473143,-0.3052832926623523,-0.783752778545022,-0.6739518162794411,0.37635914981365204,-0.5464002564549446,0.788254311773926,-0.7265927055850625,-0.3386198370717466,-0.1310165044851601,0.24800723791122437,-0.7436662646941841,0.4266784912906587,-0.669210631866008,-0.13428107369691133,-0.7241442273370922,0.38696687342599034,0.7256693867966533,0.3634072616696358,0.7412721128202975,0.8209948502480984,0.6980269318446517,0.27865631273016334,-0.029824065510183573,-0.25629667937755585,-0.8188774040900171,-0.1791207785718143,-0.6387719209305942,0.631187526974827,0.16672758851200342,0.2110066106542945,0.5067220157943666,0.6437826291657984,-0.38068245677277446,0.1329959398135543,-0.25465336348861456,-0.8048164336942136,0.06133837113156915,0.9456975273787975,0.22076147515326738,0.5868382793851197,-0.6799476924352348,-0.36312270583584905,0.48347562830895185,-0.8482030215673149,0.10794796189293265,0.5686056944541633,-0.8487486853264272,0.6855640551075339,0.208075400441885,-0.9978847121819854,0.1170904403552413,-0.49835676047950983,-0.8412413862533867,0.19814612856134772,-0.5313757699914277,-0.3682743958197534,0.2485256469808519,-0.9373623062856495,0.42724229535087943,0.12721338495612144,-0.6792355496436357,0.3957497403025627,0.3070432306267321,0.794499930460006,0.6868697674944997,-0.09661172656342387,-0.27024111384525895,-0.15662236558273435,0.6722001866437495,-0.8520574979484081,-0.09055746486410499,-0.29651863407343626,0.6645308341830969,0.4270900529809296,0.6645123162306845,0.3092409987002611,-0.1808901270851493,0.255118103697896,-0.21610685717314482,0.3065943396650255,0.48269876511767507,0.7466710642911494,0.8925561769865453,0.7169679473154247,-0.15239135501906276,0.6745192208327353,0.6289037652313709,-0.9908139305189252,0.8486964134499431,-0.13574963994324207,0.33739912835881114,0.2708996571600437,-0.5971131869591773,0.6406923695467412,-0.7386357323266566,0.6343847815878689,-0.1742725819349289,-0.08745622029528022,-0.9086341476067901,0.8861878826282918,0.24106979509815574,0.7285870579071343,0.19807533267885447,-0.5836530239321291,0.11199590284377337,-0.5447785160504282,0.4683998515829444,-0.666693395934999,-0.9721054648980498,-0.28039551666006446,0.421821725089103,0.9792884788475931,-0.22371044429019094,0.8158014612272382,0.8267211900092661,0.8275497904978693,0.5032616215758026,-0.6637469786219299,0.2212731521576643,-0.179293071385473,-0.3138399478048086,-0.569739377591759,0.7989261038601398,-0.08158799167722464,0.6500795036554337,-0.06221138034015894,-0.24822718603536487,0.5241488572210073,0.018657250329852104,-0.42375137843191624,-0.7066776086576283,-0.8602538988925517,0.1321679688990116,0.49562441976740956,0.055341776460409164,-0.8408221518620849,-0.31596780847758055,-0.1136947413906455,-0.5703147356398404,-0.28878386598080397,0.7903071269392967,0.7510823346674442,-0.3260708646848798,-0.3838159181177616,-0.9714295184239745,-0.42706825165078044,-0.06462133442983031,0.46404595859348774,0.48567320173606277,-0.7225368679501116,-0.1620573946274817,-0.5739157143980265,-0.17658083606511354,-0.5587986838072538,-0.3574953651987016,-0.3888950012624264,0.3635302558541298,-0.28006484312936664,-0.6252949689514935,0.1761374087072909,-0.010628363117575645,-0.4348115944303572,0.759811979252845,-0.2766174045391381,-0.25778007972985506,0.11835285974666476,0.4836262548342347,0.8766886577941477,0.13578968215733767,-0.29730252735316753,0.6224358179606497,-0.2376042054966092,0.4609938361681998,-0.5805735532194376,0.06850772118195891,-0.5108961253426969,-0.5371890063397586,-0.41958668641746044,-0.2094642468728125,-0.9890950713306665,-0.9689114424400032,0.6495809368789196,0.29562614811584353,-0.3643795265816152,0.13857364607974887,0.5357925188727677,0.8452434674836695,0.4262003260664642,-0.5803662091493607,0.36208569165319204,-0.48097042879089713,-0.4893083334900439,-0.9543002396821976,-0.7067908882163465,0.4874087581411004,-0.5807901322841644,0.17106705578044057,-0.7349930545315146,-0.17288578767329454,0.04235257487744093,0.8506057243794203,-0.5286374189890921,0.8691729470156133,0.6062927488237619,0.7608054121956229,-0.2287468258291483,0.7452216898091137,-0.4284990974701941,0.537833000998944,-0.10359537694603205,0.6168934307061136,-0.4553360687568784,-0.7761135767214,0.14744920143857598,-0.17467088997364044,0.4703739322721958,0.931253092829138,-0.7963162227533758,0.1731302523985505,0.08424368035048246,0.9332476886920631,-0.8530854941345751,0.7320281867869198,-0.07453509792685509,0.9837828376330435,-0.6046203342266381,0.19374644896015525,0.28739460138604045,0.361810436937958,-0.483808983117342,0.48675903771072626,-0.8755070348270237,0.4833904877305031,-0.3991454327479005,-0.6757488483563066,-0.0766141526401043,-0.7588910418562591,-0.39902571542188525,0.9311990672722459,-0.3274090364575386,-0.40663811983540654,-0.6625886093825102,0.9959939266555011,-0.8601831174455583,-0.4520187941379845,-0.5170983429998159,-0.06188937369734049,-0.30956560652703047,0.671286425087601,-0.019888923037797213,0.09106578724458814,0.9805350825190544,-0.5590084008872509,-0.9003796707838774,-0.8356275917030871,-0.038152115885168314,-0.3293475736863911,0.9195765187032521,0.28564074356108904,0.9044562145136297,-0.5939275519922376,-0.5393126015551388,-0.15250439569354057,0.25466233445331454,-0.3297470510005951,0.2694277432747185,0.4743182719685137,0.2766101211309433,-0.15315865771844983,0.5986391841433942,-0.5628039259463549,0.3583250562660396,0.0935778678394854,-0.7051665028557181,-0.6328176069073379,-0.62327597476542,0.4944375245831907,0.6105178711004555,0.8927188366651535,-0.2892858749255538,0.5911898324266076,0.6263565733097494,-0.97924350714311,-0.3141996613703668,-0.40406898129731417,-0.9351241434924304,0.1160673969425261,-0.9862107271328568,-0.4542942144908011,-0.3466976680792868,-0.24641946330666542,0.6963248872198164,-0.614369516260922,-0.8089458714239299,-0.003035624511539936,0.09294316917657852,-0.0866452818736434,0.9417918841354549,0.6962300296872854,-0.011605187319219112,0.7899876614101231,0.3183851367793977,0.7394882515072823,-0.3867608020082116,-0.1200795522890985,-0.07937879534438252,0.4960107021033764,0.9913483392447233,0.7587061896920204,-0.5826069382019341,-0.6548020830377936,0.302940362598747,-0.8286141990683973,0.6787294214591384,-0.9871408198960125,-0.0842785001732409,0.23876525461673737,-0.8332252288237214,0.15041193505749106,-0.9814947438426316,-0.5612946320325136,-0.6822629682719707,0.04105750750750303,-0.028154696337878704,0.457749149762094,-0.5673144673928618,0.08391350135207176,0.7263907147571445,-0.12605284014716744,-0.13930041855201125,-0.1242339531891048,-0.9211393315345049,-0.16274789534509182,0.6304981228895485,0.09437397914007306,-0.695650874171406,-0.8191301235929132,-0.6505839359015226,0.2140913475304842,-0.3612965075299144,0.419617332983762,0.7211809498257935,0.23263536673039198,-0.42355335177853703,-0.44555031368508935,-0.14723206404596567,-0.038073352072387934,-0.18702175468206406,-0.5434170835651457,-0.5956966043449938,0.2912928508594632,0.89275146368891,0.11892765061929822,-0.6727936267852783,-0.09945921320468187,0.22418402135372162,-0.6583069204352796,-0.9650104562751949,-0.09202031278982759,-0.9584955461323261,0.9531889660283923,0.37753736739978194,0.09808855969458818,-0.7381942719221115,0.6399466656148434,0.7538377516902983,-0.04197599273175001,-0.7950856448151171,-0.4444469343870878,-0.9331162674352527,-0.28579768585041165,0.2245385004207492,0.5031908042728901,-0.3648545457981527,0.9804252991452813,-0.8676416925154626,0.714554819278419,-0.5603519212454557,0.24096152745187283,0.1888003572821617,0.8310061572119594,0.003956915345042944,-0.8989082458429039,0.7129568569362164,-0.9454263281077147,0.5830123438499868,-0.1373644289560616,-0.2058139992877841,-0.09983842819929123,-0.6327487523667514,0.4133156929165125,-0.810801790561527,-0.8872382785193622,-0.5637278663925827,-0.48486060183495283,0.8439851645380259,-0.9103946960531175,0.701923989225179,0.184479174669832,-0.787532499525696,0.4289181362837553,-0.9105859673582017,-0.27833898505195975,0.9174800971522927,0.5243408251553774,0.05770384054630995,-0.5279328590258956,-0.8499993477016687,0.524706479627639,0.5406036130152643,-0.9287726990878582,-0.27674037916585803,0.9890419514849782,-0.012590153142809868,0.9502769773826003,0.9025588491931558,0.9491091170348227,-0.8520029312931001,-0.9003541651181877,-0.9269917383790016,-0.5645987847819924,0.6449048947542906,0.6097371224313974,-0.21968629024922848,0.18774131266400218,-0.29405165323987603,0.12766192061826587,0.5810017962940037,-0.27173180133104324,0.4947962458245456,0.014716414269059896,0.6106386319734156,-0.6999187474139035,-0.5729368352331221,0.3378806128166616,-0.1777639389038086,0.3544529415667057,0.8310936470516026,0.6447463142685592,-0.8727462785318494,0.7065486763603985,0.10694064665585756,0.8066863594576716,-0.978985246270895,0.9344416367821395,-0.0011353129521012306,-0.798542539589107,-0.5200260360725224,0.2892945292405784,-0.5862107458524406,0.5855415007099509,-0.3258977965451777,0.6991456667892635,0.7089137164875865,-0.0551914875395596,0.3871346190571785,-0.28829701244831085,0.9811426028609276,0.931067178491503,-0.2266093478538096,0.850985714700073,0.9890939956530929,-0.4400125052779913,0.1245685601606965,-0.011413538362830877,-0.8524208590388298,-0.01897304132580757,-0.5687285219319165,-0.6599063519388437,-0.8960242667235434,-0.1319766929373145,0.008591188117861748,0.39511646470054984,-0.21603040350601077,-0.9826209414750338,0.12170718610286713,0.5614363853819668,-0.044274075888097286,0.7274308353662491,-0.7953115347772837,0.521942840423435,-0.9568673623725772,0.9323619804345071,0.5250430242158473,-0.9256284316070378,0.5073991524986923,-0.3500230903737247,-0.8569104969501495,0.15951841976493597,0.6103488295339048,-0.28890477446839213,0.43688098434358835,0.6815618849359453,0.8381835473701358,0.9746159268543124,-0.6102050123736262,-0.4902616264298558,-0.4179664379917085,0.2538676173426211,-0.613792167045176,0.4622942106798291,0.8775360942818224,-0.6877371263690293,0.07926245918497443,0.22605663910508156,0.03392869979143143,-0.028657705523073673,0.8492772346362472,0.5519105521962047,-0.5450565498322248,-0.6646263967268169,0.296593489125371,0.33414122415706515,-0.9507688931189477,0.06635753344744444,0.3994375169277191,-0.09493093751370907,-0.855592202860862,-0.008692501112818718,-0.2710022400133312,0.5107471910305321,0.8049188400618732,-0.23448257008567452,0.1520904628559947,0.3527518198825419,0.9068548921495676,0.7734605981968343,-0.6866533397696912,-0.21832939190790057,-0.9158068373799324,0.10233385302126408,0.39871182944625616,-0.22081680316478014,0.4448515227995813,-0.6243537939153612,-0.2451214105822146,-0.661934623029083,-0.985410244204104,-0.47200413700193167,-0.7603840418159962,0.35259526083245873,0.26760991755872965,0.03347829915583134,-0.5789295500144362,-0.4730736264027655,0.8483068770729005,-0.5942910234443843,0.16966768959537148,-0.35923281079158187,0.8558809608221054,0.24821564415469766,-0.7570329629816115,0.5185522963292897,0.3395594605244696,-0.5289855245500803,-0.6739059863612056,0.256514813285321,0.12499902863055468,0.6314467354677618,0.8863381114788353,-0.7912926813587546,-0.3599501717835665,0.16152157308533788,0.15666589327156544,-0.09765925910323858,0.14378161635249853,0.5707457540556788,-0.7757993992418051,0.7987878350540996,-0.9452414163388312,-0.6429483806714416,0.3921120809391141,-0.8550326302647591,-0.45745405461639166,-0.006126383785158396,0.14513580035418272,-0.5291809136979282,0.13778821798041463,0.9126590546220541,-0.8436320102773607,0.07351052016019821,0.5946584879420698,-0.5286775822751224,0.9726913995109499,0.981727063190192,0.2588279275223613,-0.2116794539615512,-0.12884224392473698,-0.8172335708513856,-0.3592368965037167,0.5680677276104689,-0.7251094207167625,-0.04197809752076864,-0.7763369339518249,0.5749765336513519,0.9219765714369714,-0.1365744462236762,0.5970478081144392,0.2755446396768093,0.6351848733611405,0.03745598392561078,0.4272862644866109,-0.06939241755753756,-0.16800265200436115,0.8509559999220073,0.3023864827118814,-0.11166351800784469,-0.21834673453122377,0.854451343882829,-0.9196444270201027,-0.6164485043846071,0.24531970266252756,-0.8373366054147482,0.2032571597956121,-0.39683143328875303,-0.4971923646517098,0.46821179473772645,0.32540464075282216,0.4703081753104925,0.9570507472380996,0.8963353913277388,0.432394300121814,-0.8936421135440469,-0.2670539845712483,-0.908069187309593,-0.6517391111701727,0.16170980175957084,-0.5342497462406754,0.17903610412031412,0.4417870012111962,0.32428449811413884,0.26187256444245577,0.24565613688901067,-0.12272153608500957,-0.9368207543157041,0.3160435911267996,0.6037899353541434,0.9183444916270673,-0.6060015712864697,0.6153193148784339,-0.8308639638125896,0.2329545821994543,0.6756910448893905,-0.25275112967938185,-0.8002574662677944,0.9873624970205128,-0.473032608628273,0.4934969856403768,-0.6874829060398042,-0.17710685404017568,0.4134022491052747,-0.8355119051411748,0.17231077840551734,-0.07524766819551587,0.8209837479516864,-0.44203071808442473,-0.9893533107824624,-0.32163756899535656,0.8156941472552717,-0.19261013250797987,0.001713051926344633,-0.3636832293123007,0.06439051451161504,-0.19746201764792204,0.7476560338400304,-0.5084393573924899,0.04634804558008909,0.9843978942371905,0.9276812011376023,-0.5502901668660343,-0.8233915637247264,-0.7623148988932371,0.312815863173455,0.4999797744676471,-0.405511278193444,0.9257730953395367,0.9741648305207491,0.883704639505595,-0.1123988339677453,0.42790817795321345,0.03753598919138312,-0.31140105379745364,0.6688935025595129,-0.8925547283142805,0.49324381398037076,0.9418820748105645,-0.4690611152909696,0.7150160865858197,0.026057925075292587,-0.23749756859615445,0.42790581239387393,0.347753148060292,-0.8155766073614359,0.36925571458414197,0.8209747644141316,0.3211456807330251,-0.6583839869126678,0.8662991556338966,0.6520550507120788,-0.282674927264452,0.009025066625326872,0.46689696377143264,-0.4234666689299047,-0.5920393224805593,0.4066951088607311,0.0650537209585309,-0.6380609441548586,-0.009664833545684814,-0.9548304956406355,-0.6586292251013219,-0.5779374702833593,0.5535807595588267,-0.4771181857213378,-0.7334871804341674,-0.6670095613226295,-0.04410663200542331,-0.9570243186317384,-0.07230833079665899,-0.570369110442698,-0.5876722726970911,0.13908346369862556,0.753384102601558,-0.007898073177784681,0.2065632469020784,-0.34718894865363836,0.24322831677272916,-0.1391698606312275,0.4552199011668563,0.925319682341069,-0.4650993486866355,-0.16061980091035366,0.23166263243183494,-0.9025869807228446,0.7659592716954648,0.026745786424726248,0.6166417864151299,-0.5126590458676219,0.6959468382410705,-0.5847652228549123,-0.7855486264452338,0.5992950918152928,0.37310511944815516,0.9388047251850367,0.13759296387434006,-0.6153007913380861,-0.2532428530976176,-0.6138150673359632,0.6280694659799337,0.9816336599178612,0.018937373533844948,-0.6321079661138356,0.4562599095515907,0.45793442940339446,-0.6803634059615433,-0.0841408260166645,-0.7508335118182003,-0.6031282800249755,-0.8679803381673992,0.2855221168138087,0.1789969797246158,0.7084704702720046,0.6027506249956787,-0.12854011356830597,-0.6471717762760818,-0.028692240826785564,-0.2905587232671678,-0.5003754389472306,-0.4438621895387769,0.5518711931072176,0.9946351475082338,0.8401448070071638,-0.13089488819241524,-0.005455948878079653,0.5248118489980698,0.5466082878410816,0.7908505965024233,-0.5508481226861477,-0.5585481934249401,0.35853594774380326,0.31036547385156155,-0.6584546640515327,0.8033480113372207,0.9119850303977728,0.2928002458065748,0.7313861073926091,0.6491765454411507,0.5871336283162236,0.5966756879352033,0.40619036462157965,0.32048868341371417,0.38905783649533987,0.6170373354107141,-0.07246427377685905,-0.21397934341803193,0.5928273983299732,-0.1882309657521546,-0.0054472461342811584,0.48438615584746003,0.5355466725304723,-0.8133060280233622,-0.7050045505166054,0.2544362782500684,-0.7945344122126698,-0.5454623796977103,-0.8503384157083929,0.6613392364233732,0.6493675410747528,0.5725010568276048,-0.1454521892592311,-0.5110109904780984,0.2830819757655263,-0.2309322631917894,0.8478617155924439,0.4649865389801562,0.24130509980022907,-0.21863529924303293,0.9252022672444582,-0.7739245160482824,0.2852355628274381,-0.9827033965848386,-0.7989776912145317,-0.759675542358309,0.8852430391125381,-0.5779383317567408,0.23213505931198597,-0.5252762674354017,-0.2912326967343688,0.8154158829711378,-0.26459114998579025,-0.8985221763141453,-0.5405938820913434,0.7237337031401694,0.24805475678294897,-0.6357909957878292,-0.659143156837672,-0.3223579451441765,0.5639613410457969,-0.007075136993080378,0.7558675785548985,-0.06970663229003549,0.5591382579877973,-0.5085672861896455,-0.0011576865799725056,-0.9071448747999966,-0.46682302840054035,-0.8373583178035915,-0.2611075793392956,0.734712497331202,0.032069320790469646,0.1164841097779572,-0.2793525345623493,0.2147376500070095,-0.21685516880825162,-0.2940255547873676,-0.7089595659635961,0.8620207030326128,0.5162741802632809,0.13947926880791783,-0.9699702197685838,0.6347800926305354,-0.23324791574850678,0.5477808308787644,0.7366797104477882,0.6241286578588188,0.36713476898148656,0.4669134202413261,0.6984843867830932,0.768929987680167,0.46346212085336447,-0.542231734842062,-0.4438871322199702,0.6711671249940991,0.06091803964227438,-0.08858849108219147,0.3145539560355246,0.033506015315651894,-0.8676567412912846,-0.8694256325252354,0.9598567374050617,0.2982349353842437,0.2556358310393989,0.678642762824893,0.9361381130293012,-0.2925956933759153,-0.7175611057318747,-0.19547303393483162,0.0035148561000823975,-0.9911273140460253,-0.36775059066712856,-0.4748866898007691,0.23638351634144783,-0.20527693582698703,-0.836234028916806,-0.8058080421760678,0.9781069634482265,0.20341200334951282,-0.05847173556685448,0.2701308326795697,-0.9691095966845751,-0.060429359786212444,0.6903797583654523,0.8128966619260609,-0.005688776262104511,-0.6351186549291015,0.2703925985842943,-0.5411604181863368,0.2760860803537071,0.04247370129451156,-0.7331708730198443,0.17147260485216975,0.8799667316488922,0.10143329622223973,0.9867830257862806,-0.5220761001110077,-0.581433018669486,0.07161755627021194,0.2658137776888907,-0.1310978252440691,-0.5904996399767697,-0.8092080927453935,0.024575626477599144,0.41619027871638536,0.9947217740118504,-0.7171149370260537,-0.1581607023254037,-0.3222678480669856,0.19258726807311177,0.7227892894297838,0.8631714121438563,0.3526807315647602,0.6978226010687649,0.45664925035089254,-0.44159842049703,-0.42102595837786794,0.32290315348654985,0.9875039868056774,-0.23308593966066837,0.3452744302339852,0.8637671172618866,0.45834482414647937,-0.780340847093612,-0.8103306307457387,-0.7730014915578067,-0.08103198930621147,0.16363969864323735,-0.22779476828873158,-0.44247642904520035,0.7854207125492394,0.2627616669051349,-0.3042546515353024,-0.3201382551342249,0.7690315525978804,-0.9620952061377466,0.6056767785921693,0.7702336888760328,0.45344403805211186,-0.21921386662870646,-0.11741869058459997,0.3527639014646411,0.181848525069654,0.4640395981259644,0.09195871511474252,-0.06204995885491371,0.8935542819090188,0.8402995001524687,0.7673025601543486,-0.5498584406450391,0.7258619731292129,-0.9523989199660718,-0.5170345883816481,-0.512588256970048,-0.957324012182653,0.9214890743605793,-0.8029568246565759,-0.09361525112763047,0.37512524984776974,-0.7221214999444783,-0.9479052084498107,-0.10324202431365848,-0.8346874979324639,0.9955809889361262,-0.5628535570576787,0.4619920738041401,0.4184865513816476,0.5795560139231384,0.6965240915305912,0.5103328549303114,0.6514927921816707,-0.7719166679307818,-0.6818460351787508,0.4710721089504659,0.03743330901488662,-0.2470425725914538,0.499768125358969,0.30299668945372105,-0.7720019407570362,0.15948222251608968,-0.11675044801086187,-0.3556452780030668,0.059436832554638386,0.2645262451842427,-0.765637643635273,0.16347108595073223,-0.18591885501518846,0.43913557520136237,-0.6341352597810328,0.7175098638981581,-0.3817928731441498,0.9272029148414731,-0.24127459665760398,0.5507543366402388,-0.3174557313323021,-0.004400826990604401,-0.27980672381818295,0.9209609143435955,-0.8809650572948158,-0.7354854503646493,-0.963803356513381,0.1848846240900457,-0.5143835823982954,-0.45329304737970233,-0.739440041128546,0.41312175150960684,-0.07843650924041867,0.5484372582286596,0.6711785281077027,-0.8352574184536934,-0.058364514261484146,-0.6734036044217646,-0.739951039198786,0.4246407230384648,-0.9445817754603922,-0.5976862595416605,0.7476124302484095,0.6456482880748808,-0.8912293529137969,-0.8901854776777327,0.15455701434984803,0.6296941223554313,-0.33598724100738764,0.45270237047225237,0.6087726387195289,0.1089422651566565,-0.1847957819700241,-0.5283868215046823,-0.5638690893538296,0.13952003419399261,-0.5074292328208685,-0.8628089032135904,0.7694553253240883,-0.4557333253324032,0.9774903869256377,0.11301541933789849,-0.890666073653847,0.7717333491891623,-0.33221932919695973,-0.8856542990542948,0.9866725937463343,-0.5004001357592642,0.713485021609813,-0.3280408871360123,0.5880093858577311,0.3847283530049026,0.6044207657687366,-0.5860244636423886,-0.4270016038790345,-0.11274656839668751,-0.6784787187352777,0.7354935351759195,-0.8305152556858957,0.43524070968851447,-0.13693038607016206,0.898339556530118,0.4237042083404958,0.7464422695338726,-0.87603003019467,-0.5072026513516903,-0.2594527453184128,0.7201996138319373,0.01640445552766323,-0.08302723756060004,-0.9551470130681992,0.08968281233683228,-0.0010807015933096409,0.7969434694387019,-0.8317809887230396,0.09652113635092974,-0.7844074866734445,0.041766857262700796,-0.7066991995088756,-0.8696588762104511,0.9560234751552343,-0.9907028474844992,-0.9410291989333928,0.013421651907265186,0.31767587969079614,0.19932359037920833,-0.9872838873416185,-0.281170217320323,-0.6318332804366946,0.6840275749564171,-0.4128610887564719,-0.18188764480873942,0.7429477358236909,0.10481155477464199,-0.003275846131145954,0.5119290570728481,-0.12573517626151443,-0.8905188082717359,0.8675004462711513,0.8348845806904137,0.4917259435169399,0.6136968350037932,0.4829818061552942,0.7545634265989065,-0.9071565116755664,-0.28271137084811926,0.2004811419174075,-0.060504002030938864,0.5399663490243256,-0.051518683321774006,-0.8893734663724899,0.3671067953109741,0.6500637792050838,-0.2552049998193979,0.7873352402821183,-0.08429366676136851,0.5757266851142049,-0.30994202569127083,0.12784052174538374,-0.742440733127296,-0.7094469121657312,0.08308309828862548,0.6704335166141391,-0.6566226971335709,-0.11440059542655945,0.4364062761887908,0.56284987507388,-0.0328413937240839,0.3883376573212445,0.565755263902247,-0.6240335586480796,-0.4048601482063532,0.128520751837641,-0.8893453925848007,0.625347288325429,-0.0975260091945529,-0.9523845128715038,0.7169217523187399,0.6272822474129498,0.7549822991713881,0.7475034017115831,0.10260735638439655,0.367714939173311,-0.22373542096465826,-0.5901966989040375,0.09767114277929068,-0.025205540005117655,-0.5986678944900632,0.5211689779534936,-0.32711663004010916,-0.9316238942556083,-0.1835495661944151,-0.6825227909721434,0.7075881399214268,-0.4620885355398059,-0.5641394406557083,-0.4441086915321648,-0.08725432679057121,0.7373740873299539,-0.13665717002004385,-0.41603651363402605,-0.10636387765407562,0.28023106791079044,0.37596124317497015,-0.20824680989608169,-0.829236856661737,-0.4524355512112379,-0.4352141423150897,-0.05196210462599993,0.9233550694771111,-0.1549751297570765,0.5254481416195631,-0.6290981569327414,-0.01926022907719016,-0.35220835031941533,0.5968340183608234,0.5130076380446553,0.1108642565086484,0.6197340120561421,0.29550397116690874,0.20545428805053234,0.8777693258598447,-0.16828593239188194,-0.8479448072612286,-0.17955116042867303,-0.3132719090208411,-0.962622644379735,-0.41366853658109903,-0.7014664821326733,0.5553698185831308,-0.29251242335885763,-0.2856258978135884,-0.20745734870433807,0.7115369802340865,0.8608577493578196,0.1526750810444355,0.7068334715440869,-0.6749885031022131,-0.33653181977570057,-0.8448375109583139,0.6223712181672454,-0.49749624356627464,0.4325658190064132,-0.31149815069511533,-0.07322285231202841,-0.5455305925570428,0.46760126017034054,-0.6532981861382723,-0.329215157777071,0.8376656170003116,-0.5959879201836884,0.7586846589110792,-0.6469013141468167,-0.9568290472961962,-0.20075355237349868,0.5405416814610362,-0.7646404299885035,0.9152586036361754,-0.053549019154161215,-0.3143433011136949,-0.9878721772693098,0.4934626598842442,0.8729206551797688,-0.5139096714556217,0.7956002792343497,-0.5776161048561335,0.14767429744824767,0.6599988541565835,-0.1830953797325492,-0.9935924797318876,-0.578486283775419,0.03417833289131522,0.2057231948710978,-0.39548402978107333,-0.03364503104239702,0.16839656559750438,0.18223120039328933,-0.6641895272769034,0.9878749158233404,0.9549159929156303,-0.1368356696330011,0.8610408189706504,-0.4842654578387737,-0.6403269236907363,0.8739686403423548,-0.3853978025726974,-0.5709089729934931,0.19529778650030494,0.628790286835283,-0.7351882415823638,0.5766392634250224,0.538211234845221,0.41225991025567055,-0.18030449142679572,-0.6844131597317755,-0.07525181258097291,-0.6361348843201995,-0.2955432194285095,-0.8167360862717032,-0.5797704835422337,0.27534710383042693,-0.5746411331929266,0.14548354409635067,0.833848656155169,-0.18259245716035366,0.5010723671875894,0.842638271395117,0.6978664249181747,-0.6700236708857119,0.46672187373042107,-0.1353490138426423,-0.06645261077210307,0.7652609199285507,0.38051120564341545,-0.2944182576611638,0.05780940968543291,-0.14790937397629023,0.5864216824993491,-0.6723497156053782,-0.03978071827441454,0.9894512481987476,-0.6977558261714876,0.4708771579898894,-0.5227136095054448,-0.5024895337410271,-0.5661893021315336,-0.8878055308014154,0.9320788560435176,-0.7698571253567934,0.720920572988689,0.012019541580229998,-0.46183354780077934,-0.6316988808102906,-0.14729069452732801,0.4486509533599019,-0.3691809419542551,0.284956572111696,0.6782460892572999,-0.8250532038509846,0.9778253152035177,-0.6565800071693957,0.7510776650160551,0.1506904480047524,-0.7405423959717155,-0.21698441077023745,-0.5503188539296389,-0.9759811405092478,-0.2863332396373153,0.7020890819840133,0.9180502570234239,0.3090794268064201,-0.3938093767501414,0.1908355811610818,0.43131781788542867,-0.8225535405799747,-0.8487933576107025,0.9107740353792906,0.40193211380392313,-0.6452575270086527,-0.12021963065490127,-0.8727541053667665,-0.739578491076827,0.03728028712794185,0.8857381022535264,-0.7083911900408566,-0.7596590206958354,0.5608693030662835,-0.18281221110373735,0.6074004792608321,-0.4370160768739879,-0.07511843927204609,0.23116807639598846,-0.5686681363731623,-0.6351212086156011,0.6327922400087118,0.6335040908306837,0.9132339521311224,-0.4217166737653315,-0.5521935601718724,-0.990158841945231,-0.3601872641593218,0.9999430351890624,-0.8393508577719331,0.756049174349755,-0.2674855384975672,0.9718811209313571,0.0016128518618643284,0.5360818058252335,0.093373270239681,-0.3339900318533182,-0.7719052629545331,-0.9919116687960923,-0.14571899129077792,-0.46094203693792224,-0.585768642835319,0.13027837593108416,-0.3616644707508385,-0.8866285216063261,-0.4283827808685601,0.13729026168584824,-0.10106968926265836,0.7005991158075631,0.3457477493211627,-0.05794684495776892,-0.6939654294401407,-0.12125136237591505,-0.3771417709067464,0.9591455785557628,-0.20986282965168357,0.84307443164289,0.14640809735283256,-0.5191772687248886,-0.5109427804127336,-0.7467479421757162,0.07225886965170503,-0.8691108440980315,0.18354075122624636,0.3048231187276542,0.7306133154779673,-0.6782332542352378,-0.42150552524253726,0.7685421793721616,0.10410384321585298,-0.055744522251188755,-0.9394085155799985,-0.3979128743521869,-0.6186651359312236,-0.5445424332283437,0.38514052517712116,-0.49310670886188745,-0.41815009294077754,-0.446924168150872,0.9574208706617355,0.4735387279652059,0.23448026832193136,0.4805143200792372,-0.21878101350739598,-0.2632762002758682,-0.3783118184655905,-0.3912956523708999,0.5423937910236418,-0.40919564105570316,-0.1664829347282648,0.5853255991823971,0.8119995738379657,0.6361544509418309,0.6575436000712216,0.25139922741800547,-0.7756138243712485,0.620706089772284,-0.09353532269597054,0.9546077717095613,0.12222571671009064,-0.9323967369273305,0.9628661703318357,-0.25066341226920485,0.9166039521805942,0.20789790526032448,0.1464310591109097,0.7109445971436799,-0.7731329565867782,-0.8637782610021532,0.0022724694572389126,0.5171181969344616,-0.18808966595679522,0.003102745395153761,0.3240569904446602,-0.9737381669692695,-0.32775193313136697,-0.02538399724289775,0.07010826375335455,0.49442386347800493,0.8609007825143635,-0.3374577956274152,-0.11449508322402835,-0.1927836243994534,0.35451896768063307,-0.9710860359482467,-0.568812822457403,-0.4497102675959468,-0.5286875935271382,-0.5591037510894239,0.9044483038596809,0.18815320823341608,-0.983517793007195,-0.3592806872911751,0.2131171626970172,-0.34375044982880354,-0.9403079119510949,-0.15586023591458797,-0.48571769380941987,-0.6040380392223597,0.45453447150066495,0.731408697552979,0.9945231028832495,-0.060366669204086065,-0.7081119436770678,-0.3258498990908265,0.2649014890193939,0.8362531429156661,-0.6355509320273995,0.39989129826426506,0.3766573444008827,-0.2945053135044873,0.5778092634864151,0.42346431547775865,-0.7938348115421832,-0.35380205884575844,0.9307232811115682,0.7232147972099483,0.9213734795339406,-0.40492337569594383,-0.6169217806309462,0.8360828128643334,0.5422854237258434,0.6263478989712894,-0.3011184809729457,0.15392482141032815,-0.6830420410260558,0.890587926376611,0.4690636480227113,-0.702026198618114,0.3754298989661038,-0.1554631614126265,-0.6742313606664538,0.3458434850908816,-0.7585578509606421,-0.6242812625132501,0.743894369341433,0.732579090166837,-0.2748771202750504,0.1302100676111877,-0.5797565709799528,0.3473608703352511,-0.7862364505417645,-0.1445848592557013,-0.11576291033998132,0.14033581456169486,0.8358209202997386,0.026515314355492592,-0.882519070059061,0.6550486474297941,0.5731767644174397,0.45495488634333014,0.7629545792005956,-0.9279206325300038,0.16385955829173326,0.45517313200980425,-0.9767400291748345,-0.46318839117884636,-0.9756733081303537,0.9846291616559029,0.8579929433763027,-0.9611605298705399,0.5921703297644854,-0.2178121437318623,-0.595940007828176,0.7116908980533481,0.7846398232504725,0.4653658652678132,0.8031482887454331,0.8932182472199202,-0.37808816554024816,-0.9392495043575764,0.6356691722758114,-0.4446097635664046,-0.30825732834637165,0.1190968407317996,-0.6166020683012903,-0.30742171546444297,-0.23118609469383955,-0.08010494569316506,-0.5441746194846928,0.39655598951503634,-0.9778987439349294,-0.5193813662044704,0.014567450154572725,-0.5788920032791793,0.18625405803322792,0.10272571025416255,0.4451161380857229,0.9371468364261091,-0.30647350661456585,0.9914252981543541,-0.7688516322523355,-0.7841189219616354,-0.5912710186094046,0.7329200492240489,-0.05534283723682165,-0.03130796644836664,-0.44637307012453675,-0.15862741833552718,0.8937448081560433,-0.5360768772661686,-0.43332591094076633,0.38453336525708437,-0.25626207841560245,-0.5666159032844007,-0.11486849607899785,0.17373646516352892,0.6320615643635392,-0.5633823969401419,0.8215384050272405,0.994231597520411,-0.33564387634396553,0.34578779619187117,-0.3056163350120187,-0.2478880719281733,0.6629300466738641,-0.043964628130197525,0.02075445605441928,-0.33577415300533175,-0.981992463581264,0.018308094702661037,0.22123138420283794,-0.3714956920593977,0.8459951002150774,-0.7725918237119913,-0.647226529661566,0.9913894711062312,0.6123862960375845,-0.2691691564396024,0.8424418768845499,0.8929843786172569,-0.21032198797911406,0.3216218687593937,-0.4495601779781282,0.770028855651617,0.9253843948245049,-0.8010628405027092,0.0235097031109035,-0.29371487628668547,-0.9268404385074973,-0.365339997690171,-0.7405609809793532,0.07711891178041697,0.06724186986684799,-0.5155443418771029,-0.7393846637569368,-0.5341531406156719,0.12724388018250465,0.8688089568167925,0.2503871130757034,0.9944244921207428,0.5786195462569594,0.8288137577474117,-0.31946323718875647,-0.8661836492829025,0.22689273720607162,0.4976901956833899,-0.8141531297005713,0.4208187563344836,0.5667333169840276,-0.3237962960265577,0.16767231654375792,0.5546783409081399,0.13163982471451163,-0.15382744604721665,0.5761960833333433,0.7572088153101504,0.7552092438563704,-0.44466181425377727,0.13656592555344105,-0.7089469511993229,0.10653652949258685,-0.8523266199044883,-0.22505223052576184,0.19177033752202988,-0.5014606481418014,-0.1693822261877358,-0.1824781484901905,0.08698002900928259,0.662037453148514,0.06110246479511261,0.7137044025585055,0.1519279181957245,0.7282940959557891,-0.8267413233406842,0.9878643951378763,0.3513525854796171,-0.3488188427872956,0.11913483496755362,0.47282928973436356,-0.03755292110145092,-0.6745925666764379,0.5726212300360203,0.47746070474386215,0.6483241175301373,0.40866663213819265,0.9847325063310564,-0.9309508809819818,0.6367327366024256,0.19199823401868343,-0.009577136021107435,0.15928052179515362,0.44439923856407404,0.07661061733961105,-0.17411579098552465,-0.9120847987942398,-0.5044647818431258,0.2138721002265811,0.46607776870951056,0.6088763801380992,0.6987303802743554,-0.13846766110509634,-0.03520022286102176,-0.7828978509642184,0.2065397584810853,-0.6548702619038522,-0.4516524556092918,0.5880260458216071,-0.6335336957126856,-0.13763836305588484,0.6827867235988379,0.6248422539792955,-0.294651064556092,-0.041905189864337444,0.4283852130174637,0.15759719349443913,0.6303774095140398,-0.5361163760535419,0.3759248717688024,-0.29924733145162463,0.04913632106035948,0.32439113687723875,-0.40310602402314544,0.12109892349690199,-0.0704949670471251,-0.4091686736792326,0.2631159285083413,-0.5735592665150762,0.31624720012769103,-0.06807354371994734,-0.23620218504220247,0.5348542165011168,0.5208163019269705,-0.5853750202804804,-0.18778841756284237,0.4467181721702218,-0.1133234933950007,-0.3341829050332308,0.6811304832808673,-0.855761343613267,-0.8819859358482063,-0.42961066169664264,0.42910153651610017,-0.42144758254289627,-0.2339576599188149,0.6793583505786955,0.9322571298107505,-0.19141341652721167,0.16473174467682838,0.7498891022987664,0.4532579705119133,-0.445383854676038,0.7302232645452023,0.23037440748885274,0.2876410228200257,0.4700732394121587,0.9809151380322874,0.8423314881511033,-0.5601310152560472,-0.048671795055270195,-0.009093793574720621,-0.036523968912661076,-0.6241019894368947,-0.6620819601230323,0.39099542424082756,0.4354602247476578,-0.4155806223861873,-0.3558127130381763,-0.6235169535502791,0.9615766401402652,0.062233126256614923,0.9231836027465761,0.31391340075060725,-0.06830022251233459,-0.573729295283556,0.7211339306086302,0.71220633527264,0.1595588573254645,0.009260845370590687,0.8293312950991094,-0.9464893457479775,0.5277077732607722,-0.5992409316822886,0.7446560170501471,-0.47015957487747073,-0.12704486353322864,0.874063482042402,-0.5517910751514137,0.2553859455510974,-0.6243427838198841,-0.22889743838459253,-0.36556615587323904,-0.4710872331634164,-0.08546156762167811,0.05787665722891688,0.5367548754438758,0.12790895951911807,0.7298366855829954,0.5878406846895814,0.009878582321107388,-0.5368082993663847,-0.11177197517827153,0.29552243277430534,-0.04623379930853844,-0.3632953274063766,0.7743983627296984,0.35403493978083134,0.9862943571060896,-0.6692363480105996,-0.06901228940114379,-0.21576986880972981,0.9151190025731921,-0.17848122166469693,-0.9706800929270685,0.8950137901119888,0.3283045329153538,0.1837724158540368,0.12311977613717318,-0.5451066317036748,0.9757444052956998,0.33910385239869356,-0.5478166900575161,0.8354374398477376,0.6919883969239891,-0.4861720069311559,0.96010533394292,-0.1962776305153966,0.11991621041670442,0.6637067645788193,-0.9504163139499724,-0.7817317987792194,-0.48509642016142607,-0.6408498203381896,0.13963921181857586,-0.01353656267747283,0.05014742026105523,-0.681381715927273,-0.8508258517831564,0.8023100737482309,0.35286306450143456,0.08282849006354809,0.127784906886518,0.2584801255725324,-0.7080811406485736,0.6075105280615389,0.6633912157267332,-0.7322581587359309,0.7748242812231183,-0.4262632168829441,-0.7810022956691682,-0.3076167036779225,-0.6057598073966801,0.1540522505529225,0.9294783319346607,0.31882310193032026,0.9479419160634279,0.3563950187526643,-0.6220261170528829,-0.7088533104397357,-0.9379574288614094,0.48975222557783127,0.38241734029725194,-0.5616993047297001,-0.3090959689579904,0.36933058546856046,-0.4996922183781862,0.7500714878551662,0.2670583128929138,-0.004955831915140152,-0.21101283514872193,-0.7624753774143755,-0.16589501965790987,0.8212029659189284,0.8479401050135493,0.7488959738984704,-0.427525341976434,0.06541765620931983,0.638294517993927,0.898353059310466,0.4558832747861743,-0.20273549109697342,-0.5172111913561821,-0.7910200264304876,-0.9871080880984664,0.7678677816875279,0.32218737388029695,0.03422596398741007,-0.07425137422978878,-0.7545552225783467,0.5688658701255918,0.7674101758748293,-0.25675223395228386,-0.8090215721167624,0.18643188662827015,-0.46945226518437266,-0.8425132380798459,0.7877807412296534,0.2756429282017052,-0.01889866031706333,0.7637950098142028,-0.8592669516801834,0.5148053378798068,0.234642063267529,-0.8849517004564404,0.5134291695430875,-0.4733147588558495,0.3046522531658411,0.18956625275313854,-0.06169257406145334,-0.7020042180083692,-0.7207175730727613,0.23828270565718412,-0.16904678475111723,0.08240968687459826,0.04445965774357319,-0.9862203556112945,-0.8590421904809773,0.04283536085858941,-0.34338307613506913,0.7362106903456151,-0.17121165664866567,-0.42268067179247737,-0.5449316496960819,0.7522894758731127,-0.671665788628161,0.8206774420104921,-0.029483590740710497,0.4732049582526088,0.580554760992527,-0.06492400355637074,-0.19849920412525535,-0.18008364271372557,0.16929621109738946,-0.8280123881995678,0.6884159273467958,0.3214703733101487,0.07761951023712754,0.30931225419044495,0.8964475519023836,-0.3926112912595272,0.8437303388491273,0.3358762012794614,-0.1481546494178474,-0.43205347564071417,-0.5083619421347976,-0.9407374504953623,-0.3244975823909044,-0.6028954857029021,-0.9942493294365704,-0.7612103587016463,-0.8018565569072962,-0.8926637312397361,0.45080846128985286,-0.43995218770578504,0.7704336927272379,0.4552662060596049,-0.805933210067451,0.9629075764678419,0.6292189839296043,-0.5037468746304512,-0.14524071803316474,0.9275402068160474,0.8420529603026807,0.634787613991648,-0.37843379005789757,-0.4568746304139495,0.5457071075215936,-0.5551478592678905,0.7864426276646554,-0.9187926286831498,-0.9022036548703909,0.9815882942639291,-0.17066905740648508,0.8388030580244958,0.28188879415392876,-0.135859752073884,0.7809164086356759,-0.11893861088901758,0.40304279373958707,0.9700045022182167,0.17354800505563617,0.9389237221330404,-0.19655772391706705,0.3552631074562669,-0.730293421074748,-0.20180252753198147,0.8213954898528755,0.4160425835289061,-0.20223663887009025,-0.23101193783804774,0.7745075915008783,0.7856582361273468,-0.547519026324153,-0.5050665694288909,0.5261436458677053,-0.5709826853126287,0.5065762018784881,-0.01045565726235509,0.5868187695741653,0.04793547606095672,0.277475084643811,-0.6696839537471533,0.22241216152906418,-0.011516664177179337,-0.953155969735235,0.5059721563011408,0.07800100464373827,-0.9254164700396359,-0.29937993502244353,-0.46977266669273376,-0.2266946225427091,-0.3662911606952548,0.8914507157169282,-0.734920565970242,0.04251505294814706,0.378465638961643,-0.45504866540431976,0.7190789254382253,0.8389966785907745,-0.5846488154493272,0.24983644811436534,-0.6769931521266699,0.6067699054256082,-0.3279887889511883,0.10111703397706151,-0.12268631253391504,0.7606507744640112,-0.5550741674378514,0.4518530801869929,-0.06242420244961977,-0.12710124859586358,-0.37295815628021955,-0.3728231000714004,0.3487852495163679,0.12441444909200072,0.26416117511689663,0.9328119764104486,0.9974827230907977,0.09287000820040703,-0.4387011774815619,-0.24013438215479255,0.6542480341158807,0.948946007527411,0.6633579023182392,-0.2811837806366384,-0.7464631572365761,-0.5650059785693884,0.8443106152117252,-0.7299838680773973,0.49277773313224316,-0.42232693638652563,-0.3524809838272631,0.9833456184715033,-0.6681354055181146,0.8446867736056447,0.35454596672207117,0.08416453842073679,0.2800878561101854,-0.7320359577424824,0.8855371898971498,0.5612749774008989,0.6881308127194643,-0.45162408892065287,0.5987528469413519,0.01662188721820712,0.6673145866952837,0.9442031183280051,0.7849189722910523,-0.11070925230160356,-0.04550579050555825,0.8793678553774953,0.5958914291113615,0.8099410845898092,0.02490749815478921,-0.5564713967032731,0.8150860937312245,0.5305816023610532,0.7454010732471943,-0.5027918461710215,-0.8622493562288582,-0.7496631690301001,-0.593862475361675,0.8844638522714376,0.9908849522471428,0.1132612694054842,0.37513160379603505,0.8330151820555329,-0.5204460942186415,0.668841851875186,-0.8705659103579819,0.8351873718202114,-0.39459130028262734,0.27544784685596824,0.5059841461479664,-0.4441597848199308,0.46282179094851017,0.8225457863882184,-0.41454926040023565,-0.05654151877388358,-0.6743234796449542,-0.13223803834989667,-0.9361676420085132,0.6782274437136948,0.258208186365664,0.5127796428278089,-0.006580965593457222,0.03555680951103568,-0.6704576620832086,-0.9383361218497157,0.9895352893508971,-0.6777081750333309,0.7610292276367545,0.11077119363471866,-0.7474333858117461,-0.9057527328841388,-0.16561134532094002,-0.8306485558860004,0.0035176100209355354,0.9971022894605994,0.22488060360774398,-0.1478698207065463,-0.6687636729329824,0.5095850098878145,0.9773425264284015,-0.4022097708657384,-0.23879505833610892,0.8008356564678252,0.19130345666781068,0.7015986386686563,-0.1465304596349597,-0.3284482448361814,0.48774714302271605,0.8223135736770928,0.2836739895865321,-0.4238507514819503,-0.42233490804210305,-0.240981703158468,0.21547361183911562,0.2504868642427027,0.1288587641902268,-0.9537563836202025,-0.19043202744796872,-0.29441999830305576,-0.5586655656807125,0.2342631258070469,0.4516360298730433,0.43139266688376665,0.10713375452905893,0.5089962566271424,-0.18181046936661005,-0.42226522881537676,-0.18776948051527143,-0.8362213005311787,0.533072714228183,-0.9516593469306827,-0.6350486418232322,-0.2185269659385085,0.5023120124824345,0.13983454555273056,0.6396310240961611,0.6509507410228252,-0.5639768200926483,0.23811087803915143,0.6190539253875613,-0.04450926277786493,0.6767545351758599,0.5293393228203058,0.9625819697976112,0.9359180736355484,-0.7975528612732887,-0.6589668737724423,0.33845634339377284,-0.5417537172324955,-0.9108407092280686,-0.9480038289912045,0.7456692298874259,0.9062056937254965,-0.2884635063819587,0.07574649946764112,0.3301050220616162,0.8893441949039698,0.29318574257194996,-0.38414402725175023,0.13525887997820973,0.20793704502284527,0.4899444840848446,0.9890132346190512,0.021196806337684393,-0.45225100172683597,-0.6767317499034107,-0.23064064607024193,0.7619975651614368,-0.4290294903330505,-0.2542307716794312,-0.031210247427225113,0.5283942013047636,0.45299537805840373,-0.3979604975320399,-0.5388802974484861,-0.5021648183465004,0.7182343280874193,0.3100789035670459,0.26736516458913684,0.514097603969276,-0.7965280679054558,0.23208549618721008,0.7488248595036566,0.04174206079915166,0.520921366289258,-0.7173599591478705,-0.3947892631404102,-0.7714806543663144,-0.8354049525223672,-0.692584028467536,-0.5262097287923098,0.21548276534304023,0.09819736564531922,-0.8887994247488678,-0.5332601335830986,0.7543910332024097,-0.09278547717258334,0.2937379307113588,0.4152419581077993,-0.28286303160712123,-0.12108547613024712,-0.9170706891454756,0.8883786583319306,0.4850962199270725,-0.5113892131485045,-0.8512004963122308,-0.9984572338871658,-0.5671154083684087,0.9345159749500453,-0.2775737876072526,-0.14852700475603342,-0.9875654242932796,-0.3324241670779884,-0.41672087041661143,-0.6551555655896664,-0.21554502239450812,-0.9283411763608456,-0.5419077412225306,0.37176784919574857,0.9332414367236197,0.7573477942496538,0.5061627575196326,0.45521158585324883,-0.25849654246121645,-0.3185963132418692,0.18780206935480237,-0.7807541671209037,0.38486598525196314,0.31669917376711965,-0.07251768419519067,-0.8455226304940879,0.4093153481371701,-0.7353572645224631,-0.14514484349638224,-0.6555122015997767,-0.24893594719469547,0.6220756834372878,-0.6708833612501621,0.8047947622835636,0.28084455290809274,-0.06785806361585855,-0.2066799933090806,0.4817472198046744,0.28340495051816106,-0.02048275526612997,0.6525802533142269,0.2101187421940267,-0.05501182470470667,-0.2773329853080213,-0.7486521443352103,-0.9366663279943168,-0.015152911189943552,0.4320396273396909,-0.6215849607251585,-0.2815099647268653,0.7599822068586946,0.6997348819859326,0.2476711245253682,-0.8315132190473378,-0.11492043919861317,-0.6814806493930519,-0.3379016099497676,-0.29248129995539784,0.3115288824774325,0.8003261075355113,-0.5169840077869594,-0.04040748393163085,-0.9241261002607644,0.05992166558280587,-0.01754331262782216,-0.5429621152579784,-0.8981429962441325,0.41647205129265785,0.09628643933683634,-0.9641142310574651,-0.5301053044386208,-0.6498208837583661,0.5046192426234484,-0.6664097658358514,0.038356974720954895,-0.5212091845460236,-0.26174239348620176,-0.8684444492682815,-0.397130626719445,-0.5210076277144253,-0.9409450958482921,0.18305112654343247,0.9061276954598725,0.7857002667151392,0.3929679146967828,0.622441019397229,0.13456529332324862,0.1797952693887055,0.4233449939638376,0.9564035413786769,-0.024213989730924368,-0.15095527842640877,-0.8123127077706158,-0.9842230561189353,-0.6143301003612578,0.6449877023696899,0.6961845913901925,0.7962264963425696,-0.11906300438567996,0.4585843198001385,0.12232519872486591,0.30809880373999476,0.10305009270086884,-0.9575276463292539,0.26977562066167593,-0.4940114999189973,-0.21011863695457578,-0.3686913978308439,0.6922756214626133,0.7217912999913096,0.03058254485949874,-0.22417492885142565,-0.027985687367618084,-0.5016921320930123,0.9445310505107045,0.5824616733007133,-0.9234444918110967,0.7022760640829802,-0.6522716023027897,-0.32876428263261914,-0.0077569750137627125,0.39315426256507635,-0.44819532288238406,0.6013988894410431,-0.8306300025433302,0.9059434458613396,0.9062864673323929,0.28288984252139926,-0.4006802192889154,0.9669688707217574,0.9716528616845608,-0.29098703246563673,-0.8610553625039756,0.4759134850464761,-0.5414640824310482,-0.1467032926157117,-0.935580741148442,0.9687863145954907,-0.8534545633010566,-0.8432615506462753,-0.8009592862799764,0.9703960726037621,-0.7305043125525117,-0.2982603833079338,-0.9705169447697699,-0.3227445287629962,-0.6814902694895864,-0.0288972700946033,0.502981492318213,-0.22313608834519982,-0.746141595300287,0.870783010032028,0.07302357582375407,0.4540139641612768,0.14446729747578502,0.9109073835425079,0.7110253358259797,-0.5748540796339512,-0.7897437713108957,0.7536224485374987,0.7715506213717163,0.7970085116103292,-0.24959352938458323,-0.8220775024965405,0.9239713046699762,0.14167369855567813,0.49071041075512767,0.3923362884670496,0.7138755256310105,-0.7404097421094775,-0.10868640663102269,-0.5888191526755691,0.8224865505471826,0.15757972514256835,0.15751466574147344,0.08619328308850527,0.3794470513239503,-0.2107386481948197,-0.7069027945399284,0.1849387031979859,0.8686196440830827,-0.2925579729489982,0.9243769240565598,-0.7343251807615161,-0.3840930168516934,-0.026757489889860153,0.2896458604373038,0.11825474118813872,-0.8144536204636097,-0.3100132420659065,-0.4343699812889099,0.056688468903303146,-0.6776563078165054,-0.6033931518904865,-0.4499912867322564,-0.30186031199991703,-0.032478108536452055,-0.24535289965569973,0.9936599172651768,-0.3273736569099128,0.024022933095693588,0.6703080423176289,-0.21132529992610216,-0.3521270635537803,0.11330067925155163,0.6461727800779045,0.6087944996543229,-0.417628638446331,0.2684674193151295,-0.7998858266510069,0.4601308610290289,0.8196334871463478,-0.681171091273427,0.8085792777128518,0.09784634364768863,0.6213258290663362,0.036557117477059364,0.31771320663392544,-0.24381379364058375,0.5695816418156028,-0.81150356028229,-0.6033434141427279,0.329659681301564,0.18817399349063635,0.5113383955322206,-0.32099828822538257,0.89870571391657,-0.7660438008606434,0.25160130206495523,0.5073531689122319,0.8480725968256593,0.2252365555614233,0.8750462168827653,-0.4494708012789488,0.7913359208032489,0.5137180970050395,-0.6357756145298481,-0.13030581315979362,-0.4066324816085398,0.23869329877197742,0.8373287818394601,0.6745148580521345,0.4953031181357801,0.030284377746284008,-0.7818165570497513,0.8879133299924433,-0.954770808108151,-0.042570863384753466,-0.5090671218931675,-0.7410923489369452,-0.8787627858109772,-0.893109065014869,0.09977330872789025,-0.8526552594266832,-0.9705019895918667,-0.01442907564342022,-0.693074974231422,0.9971646368503571,-0.3410105025395751,-0.9538156013004482,-0.43060824321582913,0.5865025948733091,0.7145350533537567,0.3558415360748768,-0.6087390058673918,-0.9197101080790162,-0.8273900235071778,-0.7051870231516659,-0.1075190082192421,-0.5721706976182759,-0.8135352591052651,0.5708647179417312,-0.1379406936466694,-0.5544341783970594,0.19815018447116017,-0.01927894726395607,-0.7990429657511413,-0.0631947792135179,0.029264877550303936,-0.31922006187960505,0.4705284796655178,0.41973131569102407,-0.3801160571165383,-0.8930704314261675,-0.49564935453236103,-0.420760334469378,0.48893598234280944,-0.38564051780849695,0.44806377589702606,0.7119941557757556,-0.11312917526811361,-0.7736255545169115,0.18247982021421194,0.9710134314373136,0.6720231859944761,0.7528064385987818,0.8219188093207777,0.6116223051212728,-0.8084037746302783,-0.979790321085602,0.04219217458739877,-0.16542773600667715,0.8560418947599828,0.31490601133555174,-0.6457562427967787,-0.5088577712886035,0.7070647496730089,-0.25757290702313185,-0.26423362316563725,0.5712831323035061,0.24705007625743747,-0.8350019841454923,-0.0756344199180603,0.5026006833650172,-0.8739254367537796,0.7780199879780412,-0.5399299021810293,-0.8204854167997837,-0.06482551293447614,0.11744443560019135,0.6634089788421988,0.8612086153589189,-0.8943479312583804,-0.11895680846646428,-0.4015292441472411,-0.4602849241346121,-0.4677285747602582,-0.6834339238703251,0.5800369884818792,0.40414551459252834,-0.4614799930714071,-0.043663385789841413,-0.003083611372858286,-0.6881161793135107,-0.43853943375870585,0.3843432501889765,-0.6495734807103872,0.22497808141633868,-0.09964423719793558,0.9943291358649731,0.2780674989335239,-0.6551982979290187,-0.36081363260746,-0.618705440312624,-0.7869445797987282,0.5217040814459324,0.009443207178264856,-0.36502439621835947,-0.19859702652320266,0.8899709586985409,0.2940646135248244,0.044486301485449076,-0.6680854531005025,-0.6255794405005872,0.12169574666768312,0.5042467154562473,0.7269359910860658,-0.9454711815342307,-0.04297230066731572,0.2623870619572699,-0.6586761460639536,0.2701832023449242,0.9274651543237269,0.5030570449307561,0.7788630961440504,0.5624675485305488,0.1779836625792086,0.8520724223926663,0.635465039871633,0.7191791501827538,0.4702977337874472,0.8799024876207113,0.649247738532722,-0.5794611661694944,0.4502500011585653,0.3421357502229512,0.908914097584784,0.10841430351138115,0.5822803224436939,-0.8054012260399759,0.31059963535517454,-0.5254068179056048,-0.2879024650901556,-0.4568114993162453,-0.7742111296392977,-0.6121028587222099,-0.11022347677499056,0.04827182088047266,0.09557268116623163,-0.6095022377558053,0.8660861295647919,-0.5686870920471847,0.7457662429660559,-0.11888127541169524,0.00254265870898962,-0.905411871150136,0.9212368205189705,0.9239990608766675,0.21038940409198403,-0.40942274406552315,0.32655276358127594,0.03929050453007221,0.43450790317729115,0.7619592947885394,-0.30386857874691486,0.17796262772753835,0.9524773960001767,0.7883740644901991,0.6306456229649484,-0.78095424734056,-0.9118086504749954,-0.7414606902748346,0.6634341338649392,-0.17333168676123023,-0.8473900062963367,-0.8001104234717786,-0.6112055517733097,0.26492581237107515,-0.6373212612234056,0.284561681561172,-0.07128148153424263,0.36193444952368736,-0.03942225547507405,-0.7245054584927857,-0.23366551054641604,-0.7746920557692647,0.9653941537253559,0.2162109068594873,0.5360920988023281,0.36324615869671106,-0.23754017800092697,0.3331316006369889,0.26531711034476757,0.323922083247453,0.5643372181802988,0.9269539834931493,0.9284570110030472,-0.6988820754922926,0.011446438264101744,0.19747164426371455,-0.7256549973972142,0.15692888759076595,-0.9544228841550648,-0.9929882357828319,-0.015227890107780695,0.5905578429810703,-0.6653336882591248,-0.4691256475634873,-0.0505860336124897,0.3291016258299351,-0.49343033554032445,-0.36332586547359824,0.25490604620426893,0.10202009649947286,-0.8123070858418941,0.3738640253432095,-0.9833150468766689,-0.810009584762156,-0.017413930501788855,0.6397809651680291,0.9864403232932091,-0.25447304733097553,-0.9737855968996882,-0.7976350798271596,0.3966746567748487,0.20325040258467197,-0.8720416808500886,0.020516315009444952,-0.7124487580731511,-0.8621462350711226,-0.11493346327915788,-0.7154960823245347,-0.2716603418812156,0.6984501746483147,-0.8234523441642523,-0.7101185638457537,0.4077658085152507,-0.15432331385090947,-0.6009306041523814,0.8002972803078592,-0.5243805632926524,-0.24879040103405714,-0.8247889690101147,0.26637197844684124,0.5695751616731286,0.7612109170295298,-0.8899605623446405,0.41424967208877206,-0.5730040911585093,0.7393694943748415,-0.4671624405309558,-0.14784247195348144,0.7039760123007,0.5458858823403716,-0.8949764133431017,-0.22320393798872828,-0.1313998345285654,0.7653167392127216,0.8807185841724277,0.6282591102644801,-0.27750264666974545,-0.30144112277776003,0.018584197852760553,0.3819288397207856,0.4655742906033993,-0.3962911278940737,-0.46715985937044024,0.7392340642400086,-0.11318961251527071,0.9551515746861696,-0.9699818198569119,-0.3192416871897876,-0.2501050317659974,-0.0089953588321805,0.015908385161310434,-0.9992342218756676,0.200287367682904,-0.987210591789335,0.09850344061851501,-0.717651457991451,0.5874824542552233,0.585717162117362,-0.30220139399170876,-0.663036800455302,0.7320718467235565,-0.010664655826985836,-0.4655173164792359,-0.5113398064859211,-0.09363080002367496,-0.058275347109884024,0.744286781642586,0.8372007044963539,0.7004649746231735,0.8489393377676606,-0.28683653101325035,0.5573565415106714,0.09018640080466866,-0.5051633431576192,-0.04333697119727731,-0.7933047115802765,-0.7938319826498628,0.8076696498319507,-0.9496112284250557,-0.4255123012699187,-0.8233674569055438,-0.9347348916344345,-0.6473820330575109,-0.6246286425739527,0.3842114466242492,-0.6014562286436558,-0.03801310155540705,0.7842464107088745,0.486908245831728,0.7172674001194537,-0.8625095700845122,0.805199796333909,-0.5052968505769968,-0.22596629057079554,-0.5666433749720454,0.4272487098351121,-0.6087093073874712,-0.9842192926444113,-0.7524878499098122,0.9679868053644896,0.10508023807778955,-0.1923939841799438,0.5171154323033988,0.19642064720392227,-0.21103250281885266,-0.07524443604052067,0.7759705614298582,0.7457763268612325,-0.3606705372221768,-0.36464053159579635,0.05709986435249448,-0.8549053040333092,0.5687997099012136,-0.8776887846179307,0.22349214786663651,0.4097760496661067,0.38384188897907734,0.26854605274274945,-0.8028391073457897,0.6648577870801091,-0.24430198362097144,0.5385569268837571,0.8014002088457346,0.8338718628510833,0.3569046724587679,-0.9801398552954197,0.14904373325407505,-0.9435754255391657,0.07634229166433215,0.6939150579273701,-0.9032048154622316,-0.8433417356573045,0.3997817821800709,-0.04402391938492656,0.05508514726534486,0.2650991203263402,0.013649804517626762,-0.022821268066763878,0.13032099092379212,-0.041518384125083685,-0.7750682355836034,0.575683927629143,-0.19144777581095695,-0.0873866630718112,-0.43333349749445915,0.09781056130304933,0.42954958882182837,-0.3088388196192682,-0.7956821513362229,0.4728773217648268,0.7194310040213168,0.5317795919254422,-0.43739587161689997,-0.8456852687522769,-0.19137907028198242,0.23762685433030128,-0.2138106543570757,-0.8435109849087894,-0.22595871752128005,0.04542109044268727,-0.3340330417267978,-0.49183341348543763,-0.2545003737322986,0.8515776144340634,0.6816581855528057,0.4644346348941326,0.38632966158911586,0.14137173956260085,-0.71154719684273,0.41948719834908843,-0.2462034383788705,0.4119722554460168,0.837578113656491,-0.590456007514149,0.12022456200793386,0.4489791369996965,-0.6302412352524698,0.5027324985712767,0.9304289128631353,0.05579082667827606,-0.34035337436944246,-0.8936003646813333,0.6039517028257251,0.04587694024667144,-0.4681295589543879,-0.07620099885389209,-0.34245409071445465,-0.4805118474178016,-0.37603190122172236,0.6673817872069776,-0.03919672593474388,-0.5585921192541718,-0.24056471837684512,0.30150209087878466,0.3758504162542522,-0.17269466444849968,0.4415701483376324,-0.6110666333697736,0.19878372456878424,-0.5350223388522863,-0.6013888819143176,-0.40931228268891573,0.12414580211043358,-0.24889392219483852,0.5838692132383585,0.6862148842774332,-0.2761700917035341,-0.3890005494467914,0.4939665165729821,-0.6218381985090673,-0.9404718596488237,-0.9409099309705198,-0.24691068194806576,0.7083520637825131,0.8506944859400392,-0.6279708514921367,-0.218601169064641,-0.3245758842676878,0.5495238597504795,-0.46360267046839,-0.5198414400219917,-0.9267812999896705,-0.5931113329716027,0.409166740719229,-0.4067736999131739,-0.7666432182304561,0.13096327800303698,-0.3846434289589524,-0.6453393893316388,-0.8421191107481718,-0.5507625238969922,0.7760158283635974,0.07350128889083862,-0.15405943850055337,0.03219572547823191,0.8892605677247047,-0.09623843245208263,0.10698893014341593,0.014005864039063454,0.6202474911697209,-0.09735983237624168,-0.06424409244209528,0.2843091613613069,-0.167274319101125,-0.4345780466683209,-0.308329910505563,-0.6721573378890753,0.6057347082532942,0.18383615091443062,-0.9518503290601075,0.575885524507612,0.4240275276824832,-0.06781473802402616,-0.16269438434392214,0.37427119677886367,0.8654544297605753,0.7941230516880751,0.15057665668427944,-0.8129540546797216,-0.1159656560048461,-0.8130346359685063,0.4120320091024041,-0.2753216549754143,0.2679867194965482,-0.029605535324662924,0.9426700286567211,0.9588059191592038,0.3088169367983937,-0.0077557493932545185,-0.6288988185115159,0.44977566320449114,-0.9071727264672518,0.33454924216493964,0.43475889042019844,0.5272410665638745,-0.6797523386776447,-0.4085234091617167,0.9511763523332775,0.3528108559548855,0.699387957341969,-0.009933623485267162,0.35232475958764553,0.9693353897891939,0.7653340836986899,0.8658707472495735,0.5281784343533218,-0.777481532189995,0.7319238451309502,0.6013557468540967,0.437492033932358,0.9620630857534707,-0.4427401861175895,-0.49230650858953595,-0.2877100654877722,-0.8962679086253047,-0.2893997188657522,-0.7873666845262051,-0.003742485772818327,-0.35808985959738493,-0.5878358841873705,0.3212227555923164,0.17983289016410708,-0.8169309296645224,-0.6926529495976865,-0.5165473688393831,-0.10142663214355707,-0.5900256163440645,0.3055639676749706,-0.5367386089637876,-0.42739564506337047,-0.27930471673607826,-0.9464327339082956,-0.3165377862751484,-0.4891902171075344,-0.2671260549686849,0.42522176122292876,-0.7295729098841548,-0.4998410241678357,0.5167239750735462,-0.5171204460784793,0.7044500201009214,-0.7886551963165402,-0.4762325445190072,-0.8135656677186489,0.4450253853574395,-0.2863920866511762,0.49035325227305293,-0.37116508232429624,0.03135334141552448,0.3593521425500512,0.6153455888852477,0.6198030333034694,0.002817764412611723,-0.44411535281687975,0.018780851736664772,0.3537257378920913,-0.8824237724766135,0.6697202506475151,0.9033213029615581,-0.4392853598110378,0.6966028735041618,0.21893079252913594,0.06434386223554611,-0.242150139529258,-0.04351977212354541,0.6242646966129541,0.09866023017093539,0.08264815667644143,0.26518872240558267,0.29109536902979016,0.05916402721777558,-0.2157680089585483,-0.021155818831175566,0.9044123659841716,-0.9539608513005078,-0.896865963935852,0.9717484880238771,-0.002107026055455208,-0.8673221515491605,0.6704894541762769,-0.9701105314306915,0.6974829910323024,-0.8735596858896315,-0.21029285481199622,-0.8648911425843835,-0.48071886831894517,-0.12658845726400614,-0.9315531901083887,-0.26982063287869096,0.3024584767408669,-0.4823473789729178,-0.08664828399196267,-0.38246650574728847,-0.3942579682916403,-0.21286631980910897,-0.6587048089131713,-0.40990799106657505,-0.7205661172047257,-0.7482466418296099,-0.8344665211625397,0.01632374245673418,-0.003026717808097601,0.8681786945089698,0.37353586265817285,-0.28920937702059746,-0.6718722055666149,-0.8749794382601976,-0.40920303855091333,0.5494324946776032,0.5009788456372917,0.6641573458909988,0.8388349087908864,-0.34003030182793736,0.08448993414640427,-0.0166884227655828,-0.6653751628473401,-0.06844747764989734,-0.20173799339681864,0.3121702135540545,-0.46531965024769306,0.4615318370051682,0.07743892213329673,0.42571325972676277,-0.21478748740628362,0.0433743828907609,0.9240696248598397,-0.6972530581988394,0.2954609622247517,0.8254780401475728,-0.16256660502403975,0.07280587777495384,-0.06881985627114773,0.7520592901855707,-0.7451098687015474,0.3937889477238059,-0.6594837494194508,0.2777328244410455,-0.05036518396809697,-0.09841377008706331,0.8092502574436367,0.8472079895436764,-0.2019399181008339,0.7848303806968033,0.791720129083842,0.496968150138855,-0.1406527548097074,0.139928441029042,0.36605372186750174,-0.9313946538604796,0.48249758454039693,0.5974664650857449,0.10472056409344077,0.014681803528219461,0.30347109166905284,0.4918635650537908,-0.49811229435727,0.4406992495059967,-0.4298362834379077,-0.9139529448002577,0.03454882698133588,-0.3519347100518644,-0.9470179653726518,-0.22772002825513482,-0.5017813206650317,0.4979370981454849,-0.6101647904142737,-0.8743932857178152,0.12357834028080106,-0.40508568566292524,-0.718436143361032,-0.21771069196984172,-0.8915607244707644,0.1821553292684257,-0.06038386840373278,0.292912261094898,0.7629725188016891,0.21481334883719683,0.15209976863116026,-0.22580200852826238,0.5265442826785147,-0.06032553967088461,0.14060771418735385,0.31551289884373546,0.5024192617274821,0.8020706395618618,0.7587285558693111,0.4004450938664377,0.2905114805325866,-0.35057086031883955,-0.23771283961832523,-0.1550895720720291,0.7798228380270302,-0.9368641641922295,-0.7960451995022595,-0.4996838574297726,0.0486155659891665,-0.8922175671905279,0.3009105543605983,0.5216539516113698,0.03587206732481718,0.49339177971705794,0.9187994571402669,-0.3419582014903426,-0.6623170063830912,0.8095425190404058,-0.41589265037328005,-0.42906119441613555,0.13293509744107723,-0.13704766519367695,0.7703261668793857,-0.9968991572968662,0.041983434464782476,-0.8806648389436305,0.26976318610832095,-0.18360491236671805,0.3644447256810963,-0.7119614626280963,-0.6965056988410652,-0.7811365663073957,-0.7780979028902948,-0.8751901453360915,0.6760918605141342,0.6894760504364967,-0.2668338264338672,-0.0554311778396368,-0.21445569209754467,-0.9797326163388789,-0.7136326623149216,0.31523592909798026,0.652028747368604,0.6786829424090683,0.19152257265523076,-0.3135124146938324,0.9726725681684911,-0.6635997490957379,-0.9664590749889612,-0.8154750703833997,0.05310831591486931,0.2695237547159195,-0.456011226400733,0.49579519871622324,0.510942813474685,0.13905605813488364,-0.4275584979914129,0.44355732575058937,0.6845541032962501,-0.5989387072622776,-0.48175162682309747,0.11894846567884088,0.04290324682369828,0.3123922683298588,-0.22196801332756877,0.619767745025456,0.4805448232218623,-0.6585105708800256,0.9198334831744432,0.24682269478216767,0.834527381695807,0.8893820899538696,0.27432613959535956,0.9562825099565089,0.08975220331922174,0.6137808472849429,-0.6826637610793114,0.41722541488707066,0.4278081082738936,0.08092677779495716,0.07716347463428974,-0.9251623768359423,-0.2891827588900924,-0.6214420231990516,-0.9442274491302669,-0.395226766820997,-0.09490992873907089,-0.022196714766323566,-0.08110588742420077,-0.5546749024651945,0.37272462202236056,-0.8772964016534388,0.535357624758035,-0.5666058398783207,-0.8720591436140239,-0.8467003060504794,0.5055329240858555,0.19609094271436334,0.3026601835153997,0.0862893178127706,-0.21368768904358149,0.8547142469324172,-0.2788356263190508,0.8970732442103326,-0.12700408417731524,0.7694150940515101,0.2770858551375568,-0.04824436316266656,0.5379506140016019,-0.6749901296570897,0.5581773393787444,0.05329291382804513,0.4902497138828039,0.01820744387805462,0.01540883257985115,0.7393326866440475,-0.7173148863948882,0.1666882187128067,-0.5615369463339448,0.17637839214876294,-0.7057537366636097,0.3746256846934557,-0.20305248210206628,-0.6467885114252567,0.5804430060088634,0.6365971029736102,-0.6649970156140625,0.1486336630769074,-0.46967047406360507,-0.9381878767162561,-0.3685989468358457,0.6617410127073526,0.5433059651404619,0.35431308671832085,0.20315455459058285,0.05044152308255434,0.48978378251194954,-0.5520326779223979,-0.2986683058552444,0.29372217739000916,-0.8051498476415873,-0.20562016172334552,0.27135725459083915,0.18304566526785493,0.86189009482041,0.6840617824345827,-0.8199247568845749,-0.9162501343525946,0.17495473893359303,0.2095848093740642,-0.6036792695522308,0.9248448391444981,0.21322735166177154,0.45760061079636216,0.799480049405247,-0.2131948797032237,-0.45886272517964244,-0.5333248972892761,0.12596679106354713,-0.8010461772792041,0.3434715708717704,-0.23581359442323446,-0.39713351568207145,0.6516913073137403,0.9057456008158624,-0.35204529017210007,0.6053671264089644,-0.19226925633847713,-0.6328006545081735,0.3760833479464054,-0.5000295541249216,0.04847119189798832,-0.30083243967965245,-0.21713730413466692,0.8245926629751921,-0.7454091510735452,-0.1404702104628086,-0.05656347842887044,0.37215483048930764,-0.025475122034549713,-0.6647936915978789,0.3293517497368157,-0.688423091545701,-0.5376168368384242,-0.3781764297746122,0.8377581140957773,-0.2361738970503211,0.87121287221089,-0.01754202786833048,0.20778981549665332,-0.2686873357743025,0.6169657981954515,0.987081200350076,0.2265806091018021,0.6480540870688856,-0.4168234961107373,0.06800824590027332,-0.7964821369387209,0.5695827421732247,-0.8191946940496564,0.458053907379508,-0.1276236530393362,0.42866058740764856,-0.2611209093593061,-0.17604789370670915,0.21495595993474126,-0.8376949932426214,0.26852605771273375,0.13608152605593204,-0.62903275154531,-0.12905851379036903,-0.6954718385823071,0.8449919763952494,0.4417245741933584,0.6692792042158544,-0.46910001477226615,0.21867499174550176,0.4594012228772044,0.33856442477554083,0.48724631359800696,-0.814117219299078,-0.6077527441084385,-0.010611046571284533,0.5758433979935944,-0.17779537243768573,-0.3785554952919483,0.5203938204795122,0.8219325309619308,0.3046329510398209,-0.5568171772174537,0.7477970463223755,-0.524410467594862,-0.41681306064128876,0.6458619236946106,-0.46729496819898486,0.1021897061727941,0.9521253420971334,-0.27758356742560863,-0.6652924860827625,-0.024197843857109547,-0.9077547350898385,0.3524711881764233,-0.7248884565196931,0.9653298696503043,-0.928054345306009,0.2574760736897588,0.2849849257618189,-0.040354231372475624,-0.012491058092564344,-0.07372335344552994,-0.5448266491293907,-0.25305893970653415,0.942328923381865,0.3196107861585915,0.9790762728080153,0.16527128359302878,0.28117318637669086,-0.5183313339948654,-0.9734216192737222,0.2544076652266085,0.6988220126368105,0.016151939984411,0.13217506185173988,0.10349943861365318,0.605403745546937,-0.8569281226955354,0.5922876647673547,0.8784946966916323,0.16470415890216827,0.7399209123104811,0.4424215778708458,-0.9605503003112972,0.209760588593781,-0.6716764597222209,-0.7328537465073168,-0.492702575866133,-0.29977161390706897,0.34581013349816203,-0.9550974150188267,0.3796622105874121,0.1935678985901177,-0.45823928341269493,-0.09376487834379077,0.950803461484611,0.19611454848200083,-0.027030852157622576,-0.11452267318964005,0.6805228660814464,-0.6759564778767526,0.5196211594156921,-0.3749157693237066,-0.738752321805805,-0.7517899023368955,0.9257553797215223,0.219813565723598,-0.8631580951623619,0.715014673769474,0.28592904517427087,-0.8464048183523118,0.3650093567557633,0.6626064404845238,0.6314547322690487,0.3524404615163803,0.09126718482002616,0.40658819349482656,0.9227571082301438,0.032062327954918146,0.43250713823363185,0.3947835057042539,-0.753187132999301,-0.09700328949838877,0.01085523096844554,-0.7248064251616597,0.21953918784856796,0.9414139157161117,0.49097983771935105,-0.26116371154785156,0.7834662487730384,-0.06494965450838208,0.393261487595737,0.9933530376292765,-0.5197193841449916,0.032377396710217,-0.43204896384850144,-0.8215654990635812,0.9948397176340222,-0.054176521487534046,-0.7586586205288768,-0.3696118905209005,-0.9506465718150139,0.041041518561542034,-0.7915779664181173,0.7048775120638311,-0.9762671096250415,-0.38488150062039495,0.019292094744741917,0.5786454072222114,-0.8028540462255478,0.30404196213930845,-0.19747828925028443,0.2329259803518653,-0.847621847409755,0.7357541210949421,-0.46774964639917016,0.33232651092112064,-0.0684133879840374,0.6046374007128179,-0.3260196829214692,0.9097396382130682,-0.6319822217337787,-0.6139989253133535,-0.34570068633183837,-0.34276111889630556,0.3487531957216561,-0.36949471663683653,0.1325008342973888,-0.9840271826833487,0.6293471083045006,0.6595293101854622,0.9372359928674996,0.5694743422791362,-0.8107550092972815,0.4439907041378319,0.9788391068577766,0.2916519767604768,0.46463169250637293,-0.5816248734481633,-0.3875782494433224,-0.38070161873474717,-0.22073387261480093,0.8368298755958676,-0.979898689314723,-0.23446035711094737,-0.49745582276955247,0.2124092960730195,-0.8543919585645199,0.8946741633117199,-0.5293849888257682,0.3285802216269076,0.11753414012491703,-0.30877171410247684,0.30694341706112027,0.6457312381826341,0.1590684736147523,0.002457074820995331,-0.9802316320128739,-0.029505885671824217,-0.660542010795325,-0.2585600893944502,0.041583222802728415,-0.6193842384964228,-0.8682631789706647,-0.8137413538061082,0.4690059619024396,-0.6333678662776947,-0.6507929032668471,-0.480509664863348,0.6641638702712953,0.01926150545477867,-0.9127303101122379,0.9278543824329972,0.44201403949409723,-0.7495385007932782,0.9336807308718562,0.38386353058740497,-0.04240876529365778,0.41853946819901466,-0.9682386941276491,0.4672292349860072,0.4377922657877207,0.26207455853000283,0.04690609127283096,-0.7919648243114352,0.36820584535598755,-0.32519296277314425,0.14083142392337322,0.49165500700473785,-0.30009827949106693,-0.046854411251842976,0.7706272760406137,-0.29228862607851624,0.5620369333773851,0.6957916817627847,0.4153056228533387,0.010520420502871275,0.6065491959452629,0.28632401768118143,0.5059482562355697,-0.019621422048658133,-0.03330658236518502,0.9454547949135303,-0.7137169111520052,-0.10943906009197235,-0.6318838754668832,0.4439118090085685,0.32471607718616724,0.8413056987337768,0.18320092698559165,0.030280678998678923,0.7866651169024408,0.007359868846833706,-0.9498457778245211,-0.29394261073321104,-0.5580878872424364,-0.8402656666003168,-0.5582370231859386,0.655149623285979,0.8870757250115275,0.8452233509160578,0.8790735891088843,-0.5367712420411408,-0.718295443803072,0.19523626053705812,-0.33459431724622846,0.03344690427184105,-0.019785945769399405,0.9233843400143087,0.9300168906338513,0.7370171304792166,0.47071812907233834,-0.7880286430008709,0.23931953823193908,0.09053497482091188,0.3698414587415755,0.32008270686492324,0.27207817882299423,-0.6604055967181921,0.9718129015527666,0.6295131980441511,0.6766572394408286,-0.31554259127005935,-0.3051750594750047,0.3263569362461567,-0.5324325854890049,-0.9660548544488847,-0.27654959121719,-0.19674244383350015,0.7690383060835302,-0.1986333248205483,-0.293421380687505,-0.9429576490074396,-0.3694741427898407,-0.0426274323835969,-0.060927229933440685,-0.9485785369761288,-0.569769914727658,0.384840683080256,-0.22986492840573192,-0.9029902261681855,0.7980527472682297,-0.5921110254712403,-0.7288848427124321,-0.16645850706845522,0.8874950772151351,-0.6131542874500155,-0.9964337097480893,-0.18563549173995852,-0.04366941237822175,0.05800814926624298,-0.9791147466748953,-0.1412186729721725,0.7252248264849186,-0.17355378530919552,0.9629589142277837,0.4949117195792496,-0.23536194814369082,-0.843027716036886,0.10895816888660192,0.9424615656025708,-0.4748179167509079,-0.625690164975822,0.9917842647992074,-0.30092409579083323,-0.7127484534867108,-0.8316697380505502,0.5915713896974921,0.9321552845649421,0.27894788328558207,-0.7660974315367639,-0.5139948055148125,-0.5616944939829409,0.5990328383632004,0.9837334351614118,-0.255721990019083,0.9081408218480647,0.7826014580205083,-0.018818898126482964,-0.6961525520309806,-0.46025710366666317,-0.9721127087250352,0.46277619851753116,0.6032815496437252,0.9549616258591413,0.3395579056814313,0.7297656983137131,0.563033752143383,-0.7771631008945405,0.4939335361123085,-0.09874170646071434,-0.583096013404429,0.11157107120379806,0.12851178599521518,-0.32750635128468275,0.18143779458478093,0.8212381368502975,0.3420061580836773,-0.09258015267550945,0.9666815246455371,-0.2766421656124294,-0.6557922158390284,0.19598105130717158,0.5903435102663934,-0.7934637293219566,-0.3183173583820462,0.5981423244811594,-0.3386815432459116,-0.7279538931325078,0.9988007894717157,-0.0695335865020752,-0.0009686294943094254,0.8436918072402477,0.5500465896911919,-0.6211971454322338,0.6736773904412985,0.6373686059378088,0.7135687177069485,0.7146631870418787,-0.23452323069795966,-0.9921013102866709,-0.17726634442806244,0.00995085434988141,0.25741290813311934,0.4803543947637081,-0.18303885450586677,0.3446118882857263,-0.5013594157062471,0.817793935071677,0.30992651637643576,-0.8356040618382394,0.9199251411482692,-0.4538122210651636,0.5114806983619928,0.3613772690296173,-0.5625711302272975,0.7610228476114571,0.8320306539535522,0.8802960072644055,0.8879051930271089,-0.36108951549977064,0.2223733332939446,-0.44775614608079195,-0.5219082543626428,-0.8753259256482124,0.008273061830550432,0.766360851470381,0.03719088714569807,-0.2734577446244657,-0.9666818864643574,-0.004002764821052551,0.3216638769954443,0.4157917215488851,-0.13057561218738556,-0.7992417155764997,0.5086626643314958,-0.4835209739394486,-0.5326636461541057,0.514846621081233,0.11218988103792071,0.6251001916825771,-0.2645211271010339,0.37246973626315594,-0.9887579479254782,-0.06429912615567446,0.17146186158061028,0.9285861272364855,-0.0768948020413518,-0.3662273371592164,0.34875536104664207,-0.7075982932001352,0.4201593389734626,0.18755608284845948,-0.6776708080433309,-0.5071613141335547,0.2181388046592474,0.16865677246823907,-0.8642536322586238,-0.864704230800271,0.7542094411328435,0.7799372472800314,-0.14243680937215686,0.6577225467190146,-0.0148425935767591,-0.41916596284136176,0.20853166421875358,0.8228177018463612,0.8894703919067979,0.9019440840929747,-0.8410507044754922,-0.47817271342501044,-0.7179290200583637,0.8999878219328821,0.22591736540198326,-0.859575989190489,0.3283102372661233,0.14540191274136305,0.5522403754293919,0.7504855440929532,-0.5487454123795033,-0.7630602763965726,0.5255152345634997,0.5237661502324045,-0.21727353846654296,-0.9792034886777401,-0.07723509799689054,-0.13508798647671938,0.8422401938587427,-0.6904002162627876,0.7778267953544855,-0.03740544384345412,-0.8307812786661088,0.05722712026908994,-0.9134837258607149,-0.4788910672068596,-0.8310113404877484,-0.9844667008146644,0.7843403113074601,-0.013332209084182978,0.022557759191840887,-0.6806323127821088,-0.3211030252277851,-0.7447096654213965,0.1381298336200416,-0.8101453827694058,0.022675402462482452,-0.6558391368016601,-0.2867244640365243,0.3856692728586495,0.11407682206481695,0.2773568038828671,0.20167518639937043,-0.1825324078090489,-0.2081243139691651,0.28829136630520225,0.7710264008492231,0.46009680815041065,-0.22665881924331188,-0.5556555176153779,-0.735026606824249,0.022979785688221455,0.9025314943864942,-0.28148840786889195,-0.6193093960173428,-0.1974200028926134,-0.6914231269620359,-0.5761408689431846,0.03063361719250679,0.5535715692676604,0.28856524266302586,-0.3337233546189964,0.1720189768821001,-0.9172244681976736,-0.8422901630401611,-0.3446889310143888,0.34019231842830777,0.284533956553787,-0.41869581723585725,-0.04918763041496277,0.6270291595719755,-0.9663687613792717,-0.4025774812325835,-0.6503823511302471,-0.824398354627192,0.8932755151763558,0.3775408542715013,0.26723386626690626,-0.9161126329563558,-0.7909274399280548,0.6322142500430346,0.44305195147171617,0.8340049874968827,-0.8051561564207077,-0.31663385732099414,-0.9716721782460809,0.8064173287712038,0.3001705748029053,-0.7859208369627595,-0.739861018024385,0.45195174124091864,0.6453842152841389,-0.28664430789649487,-0.49438116792589426,-0.4399098586291075,0.6303724488243461,-0.7191981002688408,-0.6327837621793151,0.8384703509509563,0.7707747002132237,-0.9763109241612256,-0.4830481871031225,-0.6097608739510179,0.8365022409707308,-0.33157010143622756,0.8154481458477676,0.14010471245273948,0.39475284749642015,-0.19599788915365934,-0.3575362991541624,-0.8389275879599154,-0.33027214743196964,-0.17396057676523924,0.000399099662899971,-0.10697674285620451,0.27191886166110635,-0.7874316959641874,-0.31981017254292965,0.13013896392658353,-0.7776238634251058,0.4696688633412123,-0.5718092727474868,-0.223625339102,-0.7622131225652993,-0.9092277982272208,-0.03747000638395548,-0.057911420706659555,-0.03450834471732378,-0.7044682702980936,-0.5917917597107589,-0.27754081413149834,0.360660542268306,0.9738467209972441,-0.9658400556072593,0.3953928747214377,0.543928764294833,-0.8759825648739934,0.6137389745563269,0.9751187851652503,0.9218139001168311,-0.44243127666413784,-0.17761585814878345,0.41512217093259096,0.14469937421381474,-0.1505771866068244,0.30702406307682395,0.3030111198313534,0.11480089602991939,-0.8759064488112926,0.039729221258312464,-0.37817250564694405,0.25807052198797464,-0.2751207076944411,-0.5615371749736369,0.33886311715468764,0.9065135410055518,0.8894732925109565,0.21931857848539948,-0.5208588507957757,-0.7249985923990607,-0.2120563886128366,-0.4141066577285528,-0.5273570436984301,-0.7805537367239594,0.7104226369410753,0.9136163690127432,-0.39928683638572693,0.6189309502951801,0.5584249594248831,0.47129853535443544,-0.9041448659263551,0.20159825310111046,-0.4313723435625434,0.47424435755237937,0.04305323865264654,-0.7206084914505482,-0.852741657756269,0.3690165667794645,0.9050274444743991,0.005946763791143894,0.6774650765582919,0.1183215007185936,-0.4119878117926419,0.635743061080575,-0.23756444361060858,0.8056628499180079,-0.5529200076125562,0.8528165766038001,0.9371393918991089,-0.8519263747148216,0.9476853739470243,-0.6479254779405892,0.8302502240985632,0.9391569755971432,-0.6528694471344352,0.05762327881529927,-0.7270565191283822,0.48702202178537846,0.38574649719521403,0.8856540159322321,-0.39048673491925,-0.6926769493147731,-0.8786327904090285,-0.2629885976202786,-0.4434390221722424,0.5342119261622429,-0.9309091554023325,0.534046539105475,-0.7382021509110928,-0.12360963365063071,-0.7528780698776245,0.18707943987101316,0.6683386447839439,-0.913534879218787,-0.22176057938486338,0.8610886917449534,0.9213754110969603,-0.555246033705771,0.9037805022671819,-0.09425659291446209,0.8967939047142863,0.9015517821535468,-0.43545333202928305,-0.1451865448616445,-0.781194964889437,-0.37470869719982147,-0.9408902279101312,0.18318580510094762,-0.2580421934835613,-0.5403907429426908,-0.5550326718948781,0.395087412558496,-0.09944711672142148,0.3940555793233216,0.23284936742857099,0.3530653244815767,0.19364884728565812,-0.5665077827870846,0.2591280182823539,-0.8598206718452275,0.5588748925365508,-0.19676357880234718,-0.32241127686575055,-0.4712306372821331,0.7059093951247633,-0.4801015127450228,0.8331252601929009,0.3192496350966394,-0.5142129575833678,-0.13469853904098272,-0.42677892511710525,0.561354523524642,-0.10855495929718018,-0.7944398210383952,-0.8002472156658769,-0.019188126549124718,0.19766686111688614,-0.5473750466480851,0.5059186294674873,0.6789366663433611,-0.135788990650326,0.41308428021147847,0.29686377523466945,-0.011907207779586315,0.8312030411325395,-0.6593591645359993,-0.17814360279589891,-0.5491489213891327,-0.3906284924596548,-0.9126396318897605,-0.33804670441895723,0.2481113113462925,0.7755983537063003,0.5322657669894397,0.5712365065701306,0.15542136412113905,0.259757783729583,-0.9990622387267649,-0.9502877732738853,-0.5196845084428787,-0.838486600201577,0.9604545678012073,-0.09672523941844702,0.5550875687040389,-0.20530852442607284,-0.40192498452961445,-0.19305668864399195,-0.6904758606106043,-0.46831343602389097,0.4647918017581105,-0.11923823459073901,-0.7662291624583304,-0.39669456565752625,0.15709725162014365,0.36295022489503026,-0.9063766859471798,0.159811201505363,-0.03871933510527015,-0.04166745441034436,-0.41762879490852356,-0.039072634652256966,0.06312441220507026,0.9168409332633018,-0.5637874193489552,-0.46599070774391294,0.4498212640173733,-0.7160197971388698,-0.40796107053756714,-0.5898781488649547,0.79652961762622,-0.7984328595921397,-0.27568500209599733,0.6972068566828966,-0.039409283082932234,0.5570147833786905,0.026430597063153982,-0.9997217166237533,0.6385512840934098,0.08125731535255909,-0.5168664534576237,-0.6649926919490099,0.5537089435383677,-0.795265432447195,-0.17978983325883746,0.6077885115519166,0.879575964063406,0.4331529433839023,0.24431695649400353,-0.0017769834958016872,-0.24746451806277037,0.08562778867781162,-0.6965256119146943,0.7246175659820437,-0.700054781511426,0.8663088893517852,0.47484136186540127,0.5539864334277809,0.917737232055515,-0.020999178756028414,0.6260073753073812,-0.7423629178665578,-0.2897453410550952,0.20007386058568954,-0.8987022512592375,-0.09362780442461371,-0.5285202972590923,0.5857233330607414,0.9184975665993989,-0.022516264114528894,-0.00610695406794548,0.20237052999436855,-0.277647708542645,0.8837596164084971,-0.18642215756699443,-0.1339410082437098,-0.6740925838239491,0.20328401308506727,0.9940081271342933,0.17314539616927505,0.4961892971768975,-0.0896523823030293,-0.48492591409012675,-0.6130420011468232,-0.4011879819445312,0.6160293035209179,0.05047310423105955,0.95668940898031,-0.825376411434263,-0.8091410645283759,0.25309086218476295,0.418630582280457,0.8511520596221089,0.816151577513665,0.8742862767539918,0.4728703750297427,0.7435780242085457,-0.7630716068670154,0.14329103520140052,0.0710496143437922,0.5593383787199855,-0.4917947147041559,-0.13221684470772743,0.8080500396899879,-0.2498718174174428,0.017442929092794657,-0.8699061432853341,0.49735360965132713,-0.6194283948279917,-0.3083131215535104,0.4896415830589831,0.7423969525843859,-0.9342680983245373,-0.8337494172155857,0.5216605206951499,0.5731213996186852,-0.8988342098891735,0.612448703031987,0.6824162108823657,0.017646442633122206,-0.35668434435501695,-0.680563937406987,-0.6141537795774639,-0.36729511665180326,0.397816251963377,0.0700440495274961,0.3892133506014943,-0.8144628475420177,0.3207948496565223,0.7212152108550072,-0.9482193007133901,-0.7835850263945758,0.060280449222773314,-0.5637780441902578,-0.6354773426428437,0.0026262938044965267,0.1906315633095801,-0.28997283056378365,-0.6969598163850605,-0.881291292142123,0.5341451042331755,-0.19857073109596968,-0.18419865192845464,-0.32822982128709555,0.8996380805037916,-0.18560057040303946,-0.14932928560301661,-0.7917076358571649,0.9826784450560808,0.8877807995304465,0.11719744931906462,-0.7251943247392774,-0.6706457198597491,0.4984493087977171,-0.3022087076678872,0.10839031543582678,0.9654542654752731,0.037302360869944096,0.4847044567577541,0.9709102064371109,0.9078500354662538,-0.98168800259009,0.5596489161252975,-0.1879574111662805,-0.8916214280761778,0.665211783722043,-0.18585541797801852,-0.2897102162241936,0.7810423392802477,0.18010416207835078,0.8000486106611788,-0.30308290338143706,0.17923507699742913,0.5688300989568233,-0.6661730585619807,0.12353859096765518,0.7230216669850051,0.09836673084646463,-0.08969575818628073,-0.5038534505292773,-0.8164368029683828,0.6704938798211515,0.7087711310014129,-0.6706615248695016,-0.8006170988082886,0.4005433670245111,-0.7055352372117341,0.40946508618071675,0.6913004806265235,0.0236717090010643,0.07195844314992428,0.6299878433346748,0.15092745749279857,0.3710536523722112,0.9939023503102362,-0.26222622534260154,0.3650983632542193,-0.491048751398921,-0.2884643627330661,0.34208563063293695,-0.7657035812735558,-0.8337407968938351,-0.03515169909223914,-0.9643635805696249,-0.43195161828771234,-0.41262718103826046,0.5809902320615947,-0.9195881183259189,0.4940163749270141,-0.03714398480951786,0.6372929783537984,0.23359527112916112,-0.4402510281652212,0.7985918479971588,-0.7124348715879023,0.0367314238101244,-0.13885750388726592,0.8076663645915687,-0.8067628778517246,0.34607503609731793,-0.6110839578323066,0.11045848298817873,0.17170524038374424,0.5842991145327687,0.7155046835541725,-0.8433127384632826,-0.1549447700381279,-0.6038821437396109,-0.05486115161329508,0.624063631054014,-0.6570435222238302,-0.8537026336416602,0.3732189815491438,0.9798580668866634,-0.9942726762965322,0.7465581754222512,-0.8681292221881449,-0.8002773462794721,-0.2685888749547303,-0.0359206129796803,0.32567850034683943,-0.9426793209277093,0.5725556542165577,-0.7302047284319997,-0.4509513955563307,0.3356757569126785,-0.19546455796808004,-0.12034951755777001,0.1723665394820273,0.8469928409904242,0.11405318323522806,0.1484816176816821,-0.4365367302671075,-0.8016048390418291,0.08365495502948761,0.7899296460673213,0.1086864024400711,0.733557928353548,0.4844067534431815,0.5407984498888254,0.8357990682125092,0.8159020994789898,-0.03581108199432492,-0.051128169521689415,-0.09048869647085667,0.003497071098536253,-0.7069420600309968,-0.3673636610619724,-0.1457331096753478,0.23912488669157028,-0.810835424810648,0.39414513437077403,0.10808126116171479,-0.7627071714960039,0.9463564706966281,0.8598488993011415,-0.01167924189940095,0.7653830228373408,-0.21850791294127703,-0.9910544166341424,0.18923185765743256,-0.29900201596319675,-0.14514994621276855,0.5090800044126809,0.7904296959750354,-0.2653134143911302,0.08210234018042684,0.007836364675313234,0.31290813349187374,-0.3149710241705179,0.06528878444805741,-0.3266118294559419,-0.058826069347560406,0.3169645154848695,0.48229620745405555,0.6602328978478909,0.24061895348131657,0.5888346689753234,0.39558254182338715,-0.5468296846374869,0.5554462228901684,-0.7607678608037531,-0.20897546503692865,-0.2433858341537416,0.2936187335290015,0.7824998800642788,-0.5429121158085763,-0.13763026567175984,0.9325574380345643,-0.9881794676184654,0.6554131624288857,0.8485731119289994,-0.7426663190126419,-0.7645012470893562,0.015573013108223677,0.6418085363693535,-0.5863350289873779,0.9317278186790645,0.01896880753338337,0.9284859853796661,-0.6595872431062162,0.06254376098513603,0.8976111547090113,-0.38347593508660793,0.691533231176436,0.3243898837827146,0.5556901139207184,0.909006672911346,-0.5788662759587169,-0.9196000499650836,0.005339766386896372,0.07804543012753129,-0.12468913896009326,-0.6068589533679187,0.6419776305556297,0.05545009579509497,0.7043494852259755,0.9357764148153365,-0.7608080236241221,-0.20905357832089067,-0.6297939964570105,-0.17253254493698478,0.9203908164054155,-0.9669706979766488,0.7653072164393961,0.391999454703182,0.2954040430486202,-0.9933645250275731,0.8782874359749258,0.034467533230781555,0.030151668470352888,-0.3789936853572726,0.5657745571807027,-0.666914589703083,-0.4143222961574793,0.5819014078006148,-0.7089644223451614,-0.8112038522958755,0.359132070094347,0.6751100262627006,-0.5269562406465411,0.20744284661486745,-0.6185959838330746,0.136008910369128,-0.40636919252574444,-0.480342801194638,-0.25092242984101176,0.852665769867599,-0.7567874421365559,-0.6962544186972082,-0.7096557188779116,-0.33280642703175545,-0.12964855646714568,0.24615789763629436,0.6026823329739273,0.7460049837827682,0.3957407735288143,0.1704061133787036,0.7004710207693279,0.612209684215486,0.7353869024664164,0.9920272892341018,-0.41022875625640154,-0.6714474563486874,0.5244606146588922,-0.567939137108624,-0.24872686993330717,-0.7188897621817887,0.12136259116232395,-0.5946069089695811,-0.8517826632596552,-0.38033642852678895,-0.2699344982393086,-0.8905166862532496,-0.5841925609856844,-0.33886782778427005,0.36938096676021814,0.5810502981767058,-0.8926767548546195,-0.1929064216092229,0.27517081471160054,0.7258842489682138,-0.28985089901834726,-0.4988682344555855,-0.46192468935623765,-0.6953905806876719,0.42111120326444507,-0.4171349462121725,0.2832775181159377,0.8637848808430135,-0.6294452752918005,-0.9825275577604771,0.9706403873860836,0.7726978403516114,-0.0028244880959391594,-0.4776217578910291,0.38957796059548855,-0.10078346496447921,0.11975322524085641,-0.7572114570066333,-0.5047791181132197,0.21986241731792688,0.5983116799034178,0.9657481089234352,-0.5700273476541042,-0.6509971334598958,-0.4379169959574938,-0.8735105083324015,0.8678287258371711,0.9335998427122831,-0.6952743721194565,-0.25583737855777144,-0.03680004645138979,-0.3336300514638424,-0.25441810861229897,0.7114256932400167,0.6065336666069925,-0.03395733656361699,-0.021822350565344095,-0.8472078274935484,0.7541994131170213,-0.4067453579045832,-0.840021395124495,0.037716261111199856,0.5899821617640555,0.0003022588789463043,0.6630936842411757,0.1513736373744905,-0.46217606123536825,-0.09797944640740752,0.8082297090440989,0.5948406583629549,0.90363246249035,0.6637773308902979,-0.9802522188983858,-0.6238766303285956,0.6852917219512165,0.5402932898141444,-0.7413389864377677,-0.4336675750091672,-0.6721154460683465,0.39761540153995156,0.5055109187960625,0.11248348327353597,0.4041954455897212,0.25025993725284934,-0.1365837869234383,0.0709961517713964,-0.4007859877310693,-0.6659747259691358,0.6814300664700568,-0.027891344390809536,0.7256769663654268,-0.8455406930297613,0.1818849160335958,-0.4572814702987671,-0.3075258228927851,-0.6561160143464804,-0.03108155680820346,0.0035918098874390125,0.7070944365113974,-0.17862349189817905,0.4113259818404913,0.4178396645002067,0.44441984919831157,-0.9360972428694367,-0.42249041283503175,-0.49189267260953784,-0.0030103824101388454,0.2401112550869584,0.0002214936539530754,0.7757914131507277,0.2927142190746963,-0.8455502302385867,0.4480239520780742,-0.7998358709737659,-0.7911970932036638,0.31157958693802357,0.9872868307866156,0.9223172394558787,-0.9179079937748611,0.5874915253371,-0.16568337008357048,-0.41947044571861625,0.3928213003091514,0.7587464791722596,-0.5952674471773207,-0.10356214549392462,-0.9041259367950261,-0.8015528712421656,-0.8728981525637209,-0.2344132624566555,-0.4081790894269943,0.6266415854915977,0.11349333357065916,0.4458591821603477,0.7778681735508144,0.28801793372258544,-0.6583576565608382,-0.5068260761909187,-0.4373419629409909,0.5647674147039652,-0.6193066877312958,-0.16593763884156942,0.5406133471988142,-0.9024153556674719,-0.963549708481878,-0.512349221855402,-0.7689298433251679,-0.691294395364821,-0.9137866282835603,-0.880732046905905,0.6745829749852419,-0.09150047367438674,0.21008445043116808,0.29894703906029463,-0.9608425362966955,0.14247795287519693,-0.8998518590815365,0.6759734558872879,0.9332900843583047,0.5772513886913657,0.8103356580249965,0.23797145672142506,-0.8741725711151958,0.04959525354206562,-0.7390985293313861,-0.2507809163071215,-0.501839267089963,-0.30642953095957637,0.38903362723067403,-0.8169073932804167,0.5284877973608673,0.22796416701748967,0.6316731381230056,0.05536596663296223,0.8071751091629267,-0.5910854241810739,-0.9891113634221256,-0.47338253166526556,0.028608274180442095,-0.6055260081775486,-0.5508669838309288,-0.4638849897310138,0.7707666452042758,0.22892820183187723,-0.9543192982673645,0.5328422971069813,0.2985973651520908,-0.6523151029832661,-0.4150566617026925,-0.3757399725727737,0.7619564458727837,-0.9967500194907188,0.12800226779654622,-0.5331146381795406,0.9277074146084487,-0.20897756703197956,0.1724392524920404,0.8965304000303149,0.12965408898890018,-0.771630298346281,-0.3421086180023849,0.3719027820043266,-0.6672609713859856,0.7724059275351465,-0.9649897580966353,-0.053875284269452095,0.3022212632931769,-0.06050488306209445,0.009375736583024263,-0.5615626787766814,0.7993772407062352,0.3024196922779083,-0.6904529272578657,-0.05765673192217946,0.37877780152484775,-0.5910189412534237,0.3778605326078832,-0.47137052146717906,0.329824295360595,0.17020071763545275,-0.22616659617051482,-0.5748967318795621,-0.4112587417475879,-0.31673943577334285,-0.2963440790772438,-0.6217350824736059,-0.8431876073591411,0.24635714059695601,0.36341983499005437,-0.31249989150092006,-0.8660466317087412,-0.1738394694402814,0.2594791855663061,-0.4554762779735029,-0.6235383278690279,0.2520246747881174,0.19979925360530615,-0.9872706397436559,0.6913941674865782,0.6344252941198647,-0.15107262087985873,-0.8020968865603209,0.5039178403094411,0.9742532949894667,0.39594144420698285,-0.04568743193522096,0.4019610183313489,0.4566906504333019,0.12176251178607345,0.7820770414546132,0.7439312101341784,0.31543983798474073,0.6099817687645555,-0.8749465174041688,0.528303945902735,0.7196406209841371,0.28074884600937366,0.0734761655330658,-0.4905797694809735,-0.06091920752078295,0.17294914042577147,0.799988052342087,-0.7382685402408242,-0.955709186848253,0.1875946130603552,-0.6031805891543627,-0.16666030790656805,-0.16899258689954877,-0.18014249578118324,-0.5052789663895965,0.963899364694953,-0.2888153954409063,0.11104831518605351,0.49354946054518223,-0.6862579314038157,-0.07042785128578544,-0.4090633117593825,-0.8445388763211668,0.8511655274778605,0.3201158973388374,-0.15737181762233377,0.729172870516777,-0.9971172991208732,0.38399707712233067,-0.32189878821372986,0.5018736678175628,-0.015795941464602947,0.1332326354458928,-0.7100243209861219,-0.6412421106360853,-0.2903075539506972,0.32054780749604106,-0.758073469158262,0.8426537392660975,-0.052896530367434025,0.8407019013538957,0.9984647519886494,-0.05454877391457558,0.7865427676588297,-0.8177697146311402,-0.5401861811988056,-0.7995534562505782,0.8768502241000533,-0.8650952922180295,0.13444054778665304,0.37462989892810583,0.11609677551314235,0.1590195675380528,-0.9474072130396962,0.5586645589210093,0.08800734765827656,-0.9106056736782193,0.020645190961658955,0.9189594313502312,0.541014151647687,-0.3739615282975137,-0.4010615390725434,-0.669361874461174,0.10681747971102595,-0.6499381391331553,-0.33534332970157266,-0.2115221582353115,0.2590370769612491,-0.8746718922629952,-0.6911366614513099,0.3193756486289203,-0.5273037869483232,0.3130177231505513,0.6558947521261871,-0.45915572438389063,0.3108123205602169,-0.06789509253576398,-0.44782100711017847,-0.6030528931878507,-0.4270730521529913,0.17206373251974583,0.502790808212012,-0.8386432440020144,-0.8554390626959503,-0.7541887010447681,-0.2948361183516681,-0.055786858312785625,0.25009793462231755,0.9485001624561846,0.037958384957164526,-0.9043288724496961,0.3105959822423756,-0.0010407930240035057,0.6038553342223167,0.13927104929462075,0.05304559459909797,-0.4120439123362303,0.5461687203496695,-0.4032661272212863,0.12128799688071012,0.4055795124731958,-0.48402827186509967,-0.936787573620677,-0.8192517245188355,0.05853606108576059,-0.6281563388183713,0.913301341701299,-0.283906536642462,-0.28120489278808236,0.879150643479079,-0.4082191474735737,0.21882751351222396,-0.09189781500026584,0.48154708184301853,-0.8491445649415255,-0.39318695571273565,0.15446402179077268,-0.7646958590485156,0.4099875628016889,0.45334886154159904,0.8033831813372672,-0.2222002735361457,-0.7448274176567793,-0.1435685232281685,-0.9270717380568385,0.16845962405204773,0.268007047008723,-0.09077223110944033,0.6667535919696093,0.20240250835195184,0.7138799941167235,0.1374159287661314,-0.9589430959895253,-0.1342275752685964,-0.2171523394063115,-0.4296231442131102,-0.1778782675974071,-0.2129001491703093,-0.44773388048633933,-0.6154704382643104,0.8657510881312191,-0.7554357028566301,-0.7058681114576757,-0.619147724006325,0.14164931839331985,-0.2938926280476153,-0.374933079816401,0.2560099810361862,-0.02225024299696088,0.8850037828087807,0.6740437969565392,-0.5478135724551976,-0.6030948972329497,-0.7586601311340928,-0.11299350624904037,-0.9489051788114011,0.15268047526478767,0.7246423372998834,0.04793204879388213,-0.4365138369612396,-0.256339059676975,-0.12226663762703538,-0.197274103295058,0.2195197520777583,-0.4021531380712986,0.8529778267256916,0.47488631773740053,0.7915213131345809,-0.4390036934055388,0.46558163221925497,0.6042013424448669,-0.11033580731600523,-0.23304199893027544,-0.32031288370490074,-0.5626685097813606,0.02009154763072729,0.5601190384477377,-0.009054172318428755,-0.5232309494167566,-0.01306598773226142,-0.981270058080554,-0.007005795370787382,0.669068249873817,0.4764100108295679,-0.08941538399085402,0.4254565532319248,-0.7462116982787848,-0.4644818315282464,-0.6180471344850957,-0.06485274992883205,-0.6430165027268231,-0.44233369268476963,-0.6794280637986958,0.31696465192362666,0.9851081995293498,0.2035331092774868,0.9251462500542402,-0.3670554216951132,-0.3719821171835065,0.31480286410078406,0.6130198435857892,-0.15782570093870163,-0.7628398975357413,0.3003412066027522,-0.2863339059986174,0.5388958258554339,0.48204518761485815,0.15531559102237225,-0.8244206812232733,0.7041094317100942,-0.1993837133049965,-0.44413580978289247,0.25394578045234084,-0.05505933566018939,-0.34881565254181623,-0.6906105913221836,0.9969095210544765,-0.8338303435593843,-0.32446335488930345,0.00562593899667263,-0.05730646336451173,-0.7674045427702367,-0.7373402784578502,0.5775997736491263,-0.5337220872752368,-0.4584627659060061,0.35636700596660376,0.5562953865155578,-0.35149871185421944,-0.5825546951964498,-0.023391103837639093,0.2966410843655467,0.8816860811784863,-0.18907659593969584,-0.7908096169121563,-0.42849657125771046,0.8938644495792687,-0.619524675887078,0.9012177954427898,-0.3563246070407331,-0.7356667453423142,-0.24301843158900738,0.35373480059206486,-0.7774266046471894,-0.2506729457527399,0.1842215615324676,-0.060062827076762915,-0.2809790759347379,-0.7412093672901392,-0.9904968095943332,0.10483057610690594,0.9804533068090677,0.03843919327482581,0.876046503894031,-0.49712856439873576,0.39555450482293963,0.40293554309755564,0.7401553271338344,-0.8819105173461139,0.792414229363203,-0.8696669461205602,-0.1690367367118597,0.35486011672765017,0.02751045487821102,-0.08641188312321901,-0.5576079785823822,-0.6887748753651977,-0.603031400591135,0.7915549403987825,0.2576397000811994,0.22881508013233542,-0.8950570449233055,0.24792944826185703,-0.6094790501520038,0.5664796964265406,-0.027960825245827436,0.5615234612487257,0.6669774213805795,-0.6863257684744895,0.44550301833078265,-0.9333716258406639,0.2890363126061857,0.396788046695292,0.5992916221730411,0.8891792204231024,-0.6925254934467375,-0.1147641446441412,-0.46942450013011694,0.942288575693965,-0.9284425135701895,-0.5544361700303853,-0.3537298212759197,0.41190425446256995,-0.16419649682939053,0.5311830509454012,0.7994984732940793,0.9413302792236209,-0.23672113753855228,-0.7816882026381791,0.26589669985696673,0.565180947072804,0.7778608174994588,-0.3350570425391197,0.8170844563283026,-0.2407995229586959,-0.7812668848782778,0.4406349863857031,-0.37033561849966645,0.5491970959119499,-0.6735732429660857,-0.017863726243376732,0.9455486130900681,-0.08891755389049649,-0.3122414955869317,0.07069334201514721,0.24989966861903667,-0.3474399643018842,-0.5308973602950573,0.7133386465720832,0.3942899671383202,-0.2126800213009119,0.13881829380989075,0.3253590604290366,0.6913741016760468,0.49582500057294965,-0.3724319860339165,0.7400546250864863,-0.5946997874416411,-0.6203286624513566,-0.6782251177355647,-0.15273791318759322,-0.8947656131349504,-0.06282847514376044,-0.10702938726171851,0.03316614218056202,-0.1927846404723823,0.055986180901527405,0.9959447532892227,0.3958495329134166,0.220187122002244,-0.3254565526731312,-0.7654963000677526,-0.8320696856826544,0.07163702975958586,0.3379868189804256,0.015372659545391798,0.6516524418257177,0.805668665561825,-0.23545223427936435,-0.9663601219654083,0.3903764118440449,0.9937710221856833,0.1547089470550418,-0.10624859808012843,-0.010633607394993305,-0.9943979345262051,-0.5308759254403412,0.3259271336719394,0.6818137979134917,0.17416108632460237,-0.1298489267937839,-0.4031889815814793,0.7200614926405251,0.7362339897081256,0.605548850260675,-0.27362313074991107,-0.2519323481246829,-0.14086137199774384,0.8564131106249988,-0.9989633345976472,0.8379889740608633,-0.4005749700590968,-0.21035073790699244,0.7349294265732169,-0.4931942201219499,0.019167757127434015,0.5667982092127204,-0.5317823719233274,0.026211457792669535,-0.2511595478281379,-0.3386838473379612,0.465277633164078,0.08258961234241724,0.8353248601779342,-0.9458087319508195,-0.5010263291187584,-0.3700645174831152,0.9301601746119559,0.1444546882994473,-0.6573631479404867,0.40412529883906245,-0.8853551391512156,0.6379599310457706,-0.5468272813595831,-0.2859273278154433,0.32830143021419644,-0.4255751520395279,0.07964445045217872,-0.42762573529034853,-0.26889038225635886,0.8356466805562377,0.539091529790312,0.8889291048981249,0.5804984080605209,-0.9794588144868612,-0.6743606580421329,-0.4565325970761478,0.2298201285302639,0.5042577567510307,0.7966949343681335,0.7983475564979017,0.09314015228301287,0.9892470892518759,-0.6795527432113886,0.5586775075644255,-0.877479680813849,0.3542630928568542,-0.16541240690276027,-0.24469735054299235,0.6964284083805978,0.4240916077978909,0.7091646427288651,-0.27601994713768363,0.21081946277990937,-0.968037148937583,-0.5695061283186078,0.9205021876841784,0.40130187291651964,-0.41511617973446846,0.6515810028649867,-0.25472769839689136,0.5032942080870271,0.7929163887165487,-0.03129307320341468,-0.7219535941258073,0.9560056743212044,0.7292337939143181,-0.554151555057615,-0.5582400928251445,-0.7341448776423931,0.9029419873841107,-0.8334063743241131,-0.23715402698144317,-0.3264509029686451,0.2909404681995511,0.19545387057587504,-0.010157518554478884,0.8662828304804862,-0.7909019775688648,0.04107147315517068,0.6995676439255476,0.7604348687455058,0.25036349380388856,0.4236929202452302,0.5880941045470536,-0.47109127463772893,0.4863678556866944,0.5534107354469597,0.9228059239685535,0.3034527152776718,0.19622525805607438,-0.21788901230320334,0.39605511212721467,-0.44151165010407567,0.6107008038088679,-0.4754148116335273,-0.5764797385782003,-0.2327262694016099,0.39103781059384346,-0.9955217964015901,-0.3907655216753483,-0.6030712220817804,-0.007333899848163128,0.9117340226657689,0.17123788641765714,-0.45232238667085767,0.9649861045181751,0.02983607305213809,0.21486365655437112,0.39765314664691687,0.454715711530298,0.0661335801705718,0.46408117888495326,-0.7675634967163205,-0.7228250629268587,-0.3953322204761207,-0.5156485373154283,-0.13469566265121102,-0.5314768538810313,-0.41274404246360064,0.3237614040262997,0.7152222851291299,-0.1851951195858419,-0.5568106309510767,0.6507887816987932,-0.9343482842668891,0.030213173013180494,-0.6048429505899549,-0.6005187463015318,0.14776789117604494,0.9948706501163542,0.5169533649459481,0.08491723099723458,-0.9573209318332374,0.43889551190659404,-0.10625708103179932,0.7434967230074108,-0.8170266970992088,0.5680791386403143,0.7079825471155345,0.20600303169339895,0.2041752254590392,-0.5120504037477076,0.9139312184415758,-0.9422255773097277,0.5810039695352316,-0.8947066469117999,0.17952429875731468,-0.8574388939887285,-0.959737419616431,-0.16280567226931453,-0.9651791397482157,-0.4126300415955484,-0.37084172386676073,-0.022862866055220366,0.3019974557682872,-0.08041995670646429,-0.5263562807813287,0.02120564877986908,0.4260624824091792,0.5690653617493808,-0.923399175517261,-0.7856735503301024,0.7293600072152913,-0.08094685105606914,0.5431850701570511,-0.9181320979259908,-0.240115852560848,-0.12435297854244709,0.743303447496146,-0.4519794238731265,-0.9478277307935059,-0.570072237867862,0.47973149176687,0.12054415745660663,0.7199678714387119,-0.27896701684221625,0.36416763719171286,-0.42194620287045836,0.6238541146740317,0.3771172990091145,-0.771765036508441,-0.8275015372782946,-0.22548804664984345,-0.6053156955167651,0.4253743183799088,-0.7825905717909336,0.054104750975966454,-0.03592770639806986,-0.11758946673944592,0.30509889498353004,0.9096961510367692,-0.10421161353588104,0.32214012322947383,0.8628792222589254,0.40436212345957756,0.26506691006943583,-0.18941954476758838,-0.3776229820214212,-0.5825079753994942,0.8250919887796044,-0.3920751130208373,-0.43255491461604834,0.5204293690621853,-0.44458581088110805,0.35504685109481215,0.012797634582966566,0.0026302440091967583,-0.5951904496178031,0.8806249615736306,-0.7620750567875803,0.8912357706576586,-0.12552309734746814,-0.0016011050902307034,0.6196487103588879,-0.8731728168204427,-0.24790158728137612,0.8747435389086604,0.021163650322705507,-0.15196269284933805,0.47775501664727926,0.6090508210472763,-0.1326981345191598,-0.5010533416643739,0.8568532690405846,0.20132627990096807,-0.6208493891172111,-0.1378996716812253,0.371165469288826,-0.7594537078402936,0.41782009042799473,-0.9791579842567444,-0.84588961629197,0.1323740892112255,-0.0037546916864812374,-0.6503683063201606,0.22201606119051576,0.3850999167189002,-0.5099757392890751,0.7463402082212269,0.8188845347613096,-0.715739409904927,0.2589947870001197,-0.9408949604257941,0.74902618303895,-0.49426045129075646,0.9515860406681895,-0.23371371114626527,-0.8175297444686294,-0.7093560756184161,-0.09473871253430843,-0.28130187140777707,0.9222770184278488,0.9198154909536242,0.7481933943927288,-0.5281215533614159,0.459387150593102,-0.7555920663289726,0.927189520560205,-0.03151346277445555,0.3664641184732318,-0.20424529677256942,-0.6532063949853182,-0.9276635185815394,0.30324662383645773,-0.11372978193685412,0.7237311615608633,-0.6481202221475542,-0.5776851042173803,-0.35517544485628605,0.9599185790866613,-0.33501095976680517,-0.6846382897347212,0.06974351173266768,0.5957236308604479,-0.684007812757045,0.751276945695281,-0.18648397084325552,0.5630464884452522,0.8811553870327771,0.7412476581521332,-0.47276129433885217,-0.6519662295468152,0.24986301315948367,-0.30145630333572626,0.6869553630240262,-0.7967548840679228,-0.07937546307221055,-0.7244243295863271,0.8863263176754117,-0.4473537541925907,0.9430739847011864,-0.5524720572866499,0.8071899451315403,-0.6139986356720328,-0.27218981040641665,0.19733257265761495,-0.5023276242427528,0.4129755515605211,-0.9265838316641748,0.3280589673668146,-0.8262974126264453,0.5386551111005247,-0.09399931598454714,0.54485456738621,-0.30524698179215193,-0.5374282514676452,0.02148480899631977,-0.9932292005978525,-0.09073985321447253,0.3754467307589948,-0.24940355960279703,0.9384235595352948,0.574505350086838,-0.31748317554593086,-0.3786083678714931,0.07066075643524528,-0.4383663982152939,0.04256265889853239,-0.17708854284137487,-0.5141574488952756,-0.7629036325961351,0.4952590246684849,-0.9447043850086629,-0.5868753995746374,-0.908268203958869,-0.49931286834180355,0.9886112711392343,0.1461302819661796,-0.2966638929210603,-0.7952362564392388,0.225099662784487,0.973400869872421,-0.7906947853043675,0.9046249948441982,-0.3592615011148155,0.28484207578003407,0.4232484269887209,-0.48874813923612237,0.2779605770483613,-0.061717967968434095,0.8478646329604089,-0.7225196231156588,0.8552355016581714,-0.12603331077843904,0.46940274303779006,0.011825268156826496,0.11216989113017917,0.8000466781668365,-0.32717696065083146,-0.7705384586006403,-0.9674029457382858,0.4731945088133216,0.7930647325702012,0.17712722858414054,0.44708459498360753,-0.9503961368463933,-0.2323191650211811,-0.13930591847747564,0.8534891000017524,0.2646321812644601,-0.28750325087457895,-0.7151768519543111,0.9760638880543411,0.07153070345520973,-0.7549163526855409,0.8544808099977672,-0.27186904242262244,-0.9152257014065981,0.5828138580545783,-0.7365940883755684,0.9927634010091424,-0.10364457499235868,0.7753425692208111,0.5469836718402803,-0.7271287734620273,0.6753100245259702,0.05350327072665095,-0.551830465439707,0.3156362334266305,0.27282994985580444,-0.31594381807371974,-0.6069760858081281,0.6321417046710849,0.38006802508607507,0.4206929448992014,0.6558570289053023,-0.05683573056012392,0.5445473450236022,-0.6165215726941824,-0.3514052964746952,-0.9659823980182409,0.9060227298177779,-0.4436968192458153,0.026755673345178366,0.9798928624950349,0.33976983511820436,0.3812304586172104,-0.794244899880141,0.7355490326881409,-0.7435578214935958,0.5784080070443451,0.22122574923560023,0.9504090016707778,-0.8419080539606512,0.20431289542466402,0.28857225459069014,0.7364279879257083,-0.47273122472688556,-0.15342241479083896,-0.3580823759548366,0.7213945561088622,0.300343694165349,0.6277356497012079,-0.1830243831500411,0.5655311564914882,-0.947019592858851,-0.466031976044178,-0.16428123600780964,0.02068772679194808,0.9611381529830396,-0.277706665918231,-0.2961182715371251,-0.9930879329331219,-0.812207211740315,-0.2917999690398574,-0.820309872739017,-0.4519463125616312,-0.6567218396812677,-0.1152078197337687,-0.058250760193914175,-0.303175404202193,-0.2910017464309931,0.9786094119772315,-0.4323466098867357,-0.7402552491985261,-0.9249397311359644,0.7966427421197295,-0.5366737474687397,0.3069169791415334,0.15482557099312544,0.4155209129676223,0.9970427169464529,0.24763133935630322,-0.03129875939339399,-0.7061713598668575,-0.8542832667008042,-0.9868709063157439,0.13600865472108126,0.028147551231086254,0.8212826387025416,0.46805519703775644,0.36547848396003246,0.22080271085724235,0.264696566388011,0.09456617152318358,0.08187470911070704,-0.11779910139739513,-0.7275878712534904,0.5346769499592483,-0.4152868399396539,0.041704838629812,-0.20870517240837216,0.882716269697994,-0.548948741517961,0.1982760364189744,-0.29836665373295546,0.3701817374676466,-0.7879961738362908,-0.12879370851442218,0.4305278374813497,-0.5634420453570783,-0.8939945413731039,-0.7904429687187076,0.36363512510433793,0.3833117848262191,-0.27796189207583666,-0.8166176658123732,0.5410074056126177,-0.21450763521716,-0.5387144270353019,0.19444200862199068,-0.9545601680874825,-0.37288049701601267,0.33631579019129276,-0.24085461720824242,0.7634258237667382,-0.03262333059683442,-0.5194841376505792,0.40321105858311057,-0.44842077465727925,-0.11690539214760065,0.32451977441087365,0.9389604139141738,0.013526504393666983,0.19714744435623288,-0.8707759017124772,0.2604119856841862,-0.8540448769927025,-0.04800435295328498,-0.884985585231334,-0.49465978145599365,-0.1801853310316801,-0.5738114747218788,0.6182435690425336,-0.3421562514267862,0.7360498728230596,-0.4145892062224448,0.5394813441671431,0.4525353950448334,0.5257488181814551,0.9134856155142188,0.06586217088624835,-0.954468953423202,0.21896861167624593,0.1227053296752274,-0.8796542133204639,-0.9874994792044163,0.43464647606015205,-0.7397226877510548,-0.12901149643585086,-0.20868955878540874,-0.12004942446947098,0.7504984550178051,-0.23896443890407681,-0.8032219614833593,0.7165491958148777,0.23845769930630922,-0.868002112954855,0.16599789215251803,-0.8179386495612562,0.14873603032901883,0.27908921241760254,-0.9084459492005408,-0.29603594448417425,0.023500189650803804,0.6097970711998641,0.6034459313377738,-0.32779749715700746,-0.49964487459510565,-0.6176328784786165,0.7130560143850744,0.08739683451130986,-0.5717725637368858,0.5172531665302813,0.02235940145328641,-0.09507740987464786,0.8725464278832078,0.15088392375037074,0.026942407246679068,0.7584659848362207,-0.44816343346610665,-0.42586416797712445,-0.24509919667616487,-0.767685572616756,0.0728611396625638,0.7915151915512979,0.09155926341190934,0.9252200438641012,-0.5316135035827756,-0.012212670408189297,-0.22543964628130198,0.34524829406291246,-0.7357959137298167,-0.5490244477987289,-0.3546595638617873,0.1790006677620113,-0.14112794026732445,-0.9188488847576082,-0.32350537134334445,-0.9297934644855559,0.2656928370706737,-0.11702572274953127,0.47843827679753304,0.7449589865282178,-0.4297633785754442,-0.5906891725026071,-0.5177325364202261,-0.6183362817391753,-0.9590288978070021,-0.4030662812292576,-0.3414509445428848,0.1905519338324666,-0.0014853035099804401,0.38988637225702405,0.8675226075574756,-0.5437641539610922,0.48805007617920637,0.07853662129491568,-0.5611581802368164,-0.0033194231800734997,0.3236674848012626,-0.1870446801185608,-0.6911156461574137,-0.9133610483258963,0.8572528893128037,0.0633189189247787,0.03113253228366375,0.011407901532948017,0.7690386842004955,-0.29046307504177094,0.7838260377757251,-0.9567215037532151,-0.15904868952929974,0.15846046339720488,-0.15969019895419478,0.08098166668787599,0.8406176138669252,0.34866400714963675,0.23230394534766674,-0.05110195092856884,0.6110729719512165,-0.359358424320817,-0.3984481832012534,0.9308538767509162,0.4207491176202893,-0.7321756747551262,-0.46504094544798136,0.5134379183873534,-0.3894870448857546,0.8197585195302963,-0.7970073036849499,-0.5515458262525499,0.8451119745150208,0.8309832424856722,0.8837681608274579,-0.19590478111058474,0.6855718903243542,0.9788336013443768,0.1479671187698841,0.5385755384340882,-0.20518467063084245,0.037775300443172455,0.6031161868013442,-0.3113038083538413,-0.635438262950629,0.04173313966020942,0.3956449036486447,-0.7297023241408169,-0.6989959445782006,-0.5020400155335665,0.491864622104913,0.6412810105830431,-0.9724784530699253,-0.6923258975148201,0.46172938542440534,0.07703034719452262,0.5094447415322065,0.22280259057879448,0.758855676278472,-0.3553255903534591,-0.5434124544262886,0.4673713524825871,0.7603148459456861,0.44579179398715496,-0.4805670245550573,-0.6727190078236163,-0.03614388080313802,-0.6134576415643096,0.3175311856903136,-0.7708397470414639,-0.28529738960787654,-0.9123663664795458,0.8113548760302365,-0.45193489035591483,0.5658879554830492,-0.8208605605177581,0.5996650806628168,0.10285028256475925,0.7816389403305948,-0.8779727956280112,0.4684246606193483,0.14422557409852743,0.27788992086425424,0.09091627225279808,0.8616325673647225,0.886894868221134,0.43826712341979146,0.056059297639876604,-0.19060202548280358,-0.5187956495210528,-0.6758611714467406,-0.2617732612416148,0.8344774451106787,-0.49335448862984776,0.30054212640970945,0.9538134443573654,-0.6619423893280327,-0.16721355356276035,0.9450468756258488,0.8151023234240711,0.2950483881868422,-0.5001512309536338,-0.6139170387759805,0.06970585091039538,0.3219743873924017,-0.8320407732389867,-0.14837302453815937,0.46866070246323943,0.29648963548243046,-0.5051973988302052,-0.00023449212312698364,0.07722190860658884,0.7417163057252765,-0.902377703692764,-0.10305653931573033,0.3224256122484803,0.07070989767089486,-0.7817723383195698,-0.6893515577539802,-0.05623061070218682,0.424120070412755,0.16223936155438423,0.8550134361721575,-0.5131911803036928,-0.8492343784309924,-0.24277180433273315,0.7288610627874732,0.3066126210615039,0.8216416873037815,0.8406256861053407,-0.2928032265044749,0.14822560315951705,-0.8613552185706794,0.4286741726100445,0.8130396562628448,0.18264889437705278,-0.5096028866246343,0.16690435772761703,0.6408998128026724,-0.08836724702268839,0.1909821443259716,0.9155819118022919,-0.5513020646758378,0.9554543709382415,0.24911434995010495,-0.7254580147564411,-0.23762693535536528,-0.4459961112588644,0.32133559649810195,-0.9269123659469187,-0.8269991781562567,0.4077433543279767,0.5510286325588822,0.7257368685677648,0.143333510030061,0.3103683046065271,-0.05290247593075037,0.8809770843945444,0.7989047230221331,0.9265121072530746,0.2692782040685415,-0.5250610914081335,0.5488925385288894,0.02332809893414378,0.7690628636628389,-0.272060323972255,-0.3684379099868238,0.5462506120093167,-0.14768895180895925,-0.32150171510875225,0.34145457297563553,0.22094140108674765,0.24551994958892465,-0.18023881036788225,-0.0013630683533847332,-0.8787599680945277,0.1316732899285853,0.44279289757832885,-0.9657818805426359,-0.24696393078193069,0.49742585234344006,-0.6156440782360733,-0.7765350872650743,0.7996953520923853,0.637730342335999,-0.26787686301395297,-0.3720736438408494,0.352611614856869,0.7092638565227389,0.2360839368775487,0.22588577261194587,0.6380195021629333,0.8697976539842784,-0.6818077978678048,0.904889851808548,0.6184636703692377,-0.4885721462778747,0.28411336801946163,0.5946143604815006,-0.2356383027508855,-0.19526844331994653,-0.3101861886680126,-0.8559133829548955,0.27567700715735555,0.1511860634200275,0.08520543714985251,0.51395960804075,0.938702501822263,0.996840491425246,-0.9257885636761785,0.5099524077959359,-0.34299410227686167,0.9311084509827197,0.5783230029046535,-0.6360845738090575,-0.7494525434449315,0.5407764334231615,-0.36086586909368634,0.7050133184529841,-0.30907174618914723,0.378912468906492,-0.20758520206436515,-0.36223424645140767,0.7978747421875596,0.16626006551086903,-0.7578711351379752,0.7256005853414536,-0.21435627341270447,0.8982015200890601,-0.3937871535308659,0.7436849940568209,-0.9524437803775072,0.07220049994066358,0.6316391830332577,0.9059991557151079,0.6691750967875123,0.4956148015335202,0.00370110385119915,-0.7516945996321738,-0.26207950292155147,0.3513473062776029,-0.7446716446429491,-0.50561304949224,-0.9119929182343185,-0.8384068068116903,0.008791273925453424,-0.7520754947327077,0.42105897469446063,-0.5066085387952626,-0.0985136516392231,0.12576438812538981,-0.07677757274359465,0.5726417447440326,-0.20459139859303832,-0.23392372718080878,0.5163018465973437,0.5556023181416094,0.7886995575390756,-0.8499214951880276,0.2020280989818275,0.736757735721767,-0.5071332105435431,0.4053044179454446,0.06390686659142375,0.07942151324823499,0.7839458049274981,0.9437784356996417,0.6555927442386746,-0.5116203706711531,0.32350360322743654,0.7158011849969625,0.2936150277964771,-0.7949783890508115,0.8264507558196783,-0.19732540706172585,0.02527710096910596,-0.024812140967696905,-0.29896121099591255,-0.39061827631667256,0.5311820982024074,-0.29605025984346867,0.6721226279623806,-0.14869088353589177,-0.20850230241194367,0.5898632910102606,0.1833622818812728,0.5925727905705571,0.04615161567926407,0.37849820917472243,-0.34427126916125417,-0.4024648587219417,-0.3778284778818488,-0.8674612971954048,0.038924211636185646,0.6515964460559189,0.11924486700445414,-0.2428003130480647,-0.579359426163137,0.836134409531951,-0.7706904388032854,0.5982162640430033,0.546718352008611,-0.629936118144542,0.6228066198527813,-0.6935137338005006,-0.36485465336591005,-0.15969328675419092,0.6411985512822866,-0.5090017141774297,-0.6562049225904047,0.32374323764815927,0.33496965887025,-0.5955312745645642,-0.34045412205159664,-0.20861028414219618,-0.3209274960681796,-0.6671058163046837,0.9028929579071701,-0.17397683393210173,0.687642015516758,0.9017435484565794,-0.04142255336046219,-0.7151868436485529,0.46232568798586726,0.8487664628773928,0.3987688785418868,0.977988772559911,-0.8876133617013693,0.924582976847887,-0.46877263439819217,0.018748946022242308,-0.7525125332176685,-0.2362696980126202,-0.2620110702700913,-0.002432303037494421,0.4708511787466705,0.08159181755036116,0.6154170986264944,0.8687431407161057,-0.6805810728110373,0.5237256293185055,-0.03593622334301472,-0.8533472307026386,0.34282938158139586,0.7926448448561132,-0.03221729304641485,-0.138627584092319,0.35548757715150714,0.8970458125695586,0.8174829049967229,0.179226232226938,-0.6567026511766016,-0.3961660317145288,0.6096608359366655,0.2648201482370496,-0.02866800082847476,-0.4892061441205442,0.4758798568509519,-0.8765547377988696,0.31192902103066444,0.7113717747852206,0.7330064093694091,-0.0574746155180037,0.2341893231496215,0.479485887568444,0.05295812385156751,0.7110152337700129,-0.13297000108286738,0.06663394067436457,0.4394931476563215,-0.21773030748590827,-0.37307032803073525,0.2270444412715733,-0.131268460303545,0.7542648818343878,-0.777292110491544,0.016235480085015297,-0.228256746660918,0.2825788902118802,0.8040811126120389,-0.6697591878473759,0.73763123806566,0.8257969869300723,-0.0801983610726893,-0.09644542401656508,-0.6877149036154151,0.9596108142286539,-0.1354971365071833,-0.5316246133297682,-0.7528361906297505,-0.46551617281511426,-0.9382710377685726,-0.12453707261011004,0.28341187350451946,-0.110131009016186,-0.5337983793579042,0.9694015746936202,0.3561563538387418,-0.03031523758545518,-0.062045459635555744,0.6327893370762467,0.8099425220862031,0.14632350113242865,0.6936033540405333,-0.57678386522457,0.7191409938968718,-0.7063785181380808,0.719004045240581,-0.1525246729142964,0.554661922622472,0.7738642641343176,-0.09941244777292013,0.877122538164258,0.9019868317991495,0.11780720949172974,0.44043059134855866,0.21046092547476292,-0.6944348602555692,0.9531459701247513,-0.2644710415042937,-0.01657287823036313,-0.767069268040359,-0.21107315318658948,-0.5487258825451136,-0.9535848940722644,-0.8947960310615599,0.572693177498877,0.065023438539356,-0.951837764121592,0.04440210433676839,0.4267526571638882,0.4329430921934545,-0.8643764327280223,0.2277326975017786,0.7302985936403275,0.7013448341749609,-0.7302456889301538,0.7347394814714789,-0.18203070992603898,-0.159928347915411,-0.38585071451961994,-0.28344466211274266,0.2052124016918242,0.5358753721229732,0.48413996025919914,-0.583431716542691,-0.7479977332986891,0.8330377764068544,-0.7592295953072608,0.757267561275512,0.741902023088187,0.7521521532908082,-0.03810586966574192,-0.7007800824940205,-0.623798212967813,0.677087145857513,-0.004862410947680473,-0.0960345696657896,-0.22612399887293577,-0.16405674209818244,0.7725381636992097,0.18761662347242236,0.4818853852339089,-0.699942001607269,0.13646960584446788,0.32833250937983394,-0.5745035726577044,-0.07191091775894165,0.7279397589154541,-0.557849507778883,-0.3578980201855302,-0.39494853001087904,-0.19491671863943338,-0.8563762078993022,0.5964678265154362,0.8392195957712829,0.1301292502321303,0.04566892748698592,0.5517477747052908,0.7206215690821409,-0.9514085701666772,-0.09058395633473992,0.05207244539633393,-0.8747013420797884,-0.7359840008430183,-0.21662799874320626,0.42884794203564525,-0.9488491243682802,-0.9815702778287232,0.2154512321576476,-0.09739501168951392,0.17633504513651133,-0.10216205473989248,-0.8774871118366718,0.7816188130527735,-0.2004538057371974,0.7901727519929409,-0.15067813638597727,-0.2668985831551254,-0.9817434074357152,-0.5824849917553365,0.35517402458935976,0.6607514647766948,-0.8449883125722408,0.822770762257278,-0.42618144303560257,0.9346129572950304,-0.8539065350778401,0.1195546300150454,0.7485206536948681,0.9807733939960599,-0.6251684059388936,0.23147378768771887,0.24372720625251532,-0.75003697630018,0.7595459697768092,-0.9238245277665555,-0.0002608383074402809,0.05248273257166147,0.16889086505398154,-0.7116746152751148,-0.0752994054928422,0.622454590164125,-0.7354675754904747,-0.7147699864581227,0.9229659680277109,0.5165015049278736,-0.5871175425127149,-0.6289098728448153,-0.6262654960155487,0.41362721659243107,-0.09378968644887209,0.10301676765084267,-0.48784848349168897,0.06662782886996865,-0.34374571591615677,-0.21670363983139396,-0.4699627663940191,0.047041513957083225,-0.8740502893924713,-0.9295902205631137,0.6910093389451504,0.20903273159638047,-0.9212970305234194,0.5862150057218969,-0.6416914551518857,0.8172114607878029,-0.9016429246403277,-0.8051694668829441,-0.42949333274737,-0.24791990593075752,-0.8030427866615355,0.19064564164727926,0.8948232959955931,0.770669739227742,0.33779890928417444,-0.6130716656334698,0.6626223986968398,-0.3706404250115156,-0.6901619825512171,-0.07255136175081134,-0.16202178504318,-0.8280369215644896,-0.9115469958633184,-0.8657240178436041,-0.8977737566456199,0.9351427908986807,0.3279543765820563,0.12846136512234807,0.48347220523282886,-0.8607781524769962,0.27000620029866695,0.1720775910653174,-0.4811872588470578,0.3525517540983856,-0.4727061134763062,-0.6713656196370721,0.142199182882905,0.13556569255888462,-0.41676791990175843,-0.7634328971616924,0.5341003802604973,0.5331257614307106,0.16989619517698884,0.1757458089850843,-0.2618032256141305,0.6739777601324022,0.02545690257102251,-0.6101829661056399,-0.7291503269225359,0.47660994017496705,0.2509504361078143,0.43286233162507415,0.5026706596836448,0.3739209775812924,-0.9210736411623657,0.6753862495534122,0.6158512434922159,-0.8859866228885949,-0.48642026353627443,-0.9375305152498186,0.24071276374161243,-0.40792844258248806,0.604771341662854,-0.5289797270670533,-0.7503533870913088,0.34873870480805635,-0.5727255386300385,0.4833951545879245,-0.6603220449760556,0.876914581283927,0.8593765133991838,0.29647032637149096,0.4340231451205909,0.8895521741360426,-0.486775491386652,-0.41088699782267213,-0.990489533636719,-0.8373838271945715,-0.6496956539340317,-0.9813508098013699,0.5955151040107012,0.14135193405672908,-0.6721044653095305,0.9690003781579435,-0.5918214092962444,0.13523627538233995,0.7319399118423462,0.8348016454838216,0.30866923788562417,-0.2571168588474393,-0.10609353566542268,-0.14715484017506242,-0.386376382317394,0.9028586181811988,0.9910954879596829,-0.2487117713317275,0.673971232958138,0.26237677689641714,0.8123885304667056,-0.6363536491990089,-0.5433302004821599,-0.06714725308120251,0.3140186117962003,0.4671964277513325,-0.4522060574963689,0.391370365396142,-0.9357213769108057,-0.8603511555120349,0.7157308417372406,0.9412784613668919,0.3034775317646563,-0.4625628204084933,0.3081502397544682,-0.017916409764438868,0.23131815157830715,0.3033558684401214,0.3087922162376344,-0.038372593466192484,0.11708650086075068,0.6974613508209586,-0.8954504239372909,0.604069241322577,-0.3273636931553483,0.7128858421929181,0.39206609409302473,0.042268318589776754,-0.5287877945229411,-0.7903953879140317,0.13412158004939556,0.8828926216810942,-0.633568218909204,-0.540700061712414,0.5532607529312372,-0.6980403182096779,0.6186565444804728,-0.5619836943224072,-0.9402853725478053,0.056394397746771574,0.641086092684418,0.8226772956550121,-0.7859374219551682,-0.0344992820173502,0.9320426667109132,-0.05420487653464079,0.36664277873933315,-0.5925307883881032,0.6716069411486387,0.9054755414836109,0.3219991526566446,-0.5486774896271527,-0.38085130462422967,0.5990023110061884,0.6820206623524427,0.3216919135302305,0.9103193543851376,0.5076505332253873,-0.7535923141986132,0.3621564647182822,0.4943052167072892,-0.9430829808115959,-0.034660718869417906,-0.5113370572216809,0.37870272109284997,0.8205058956518769,0.891048735473305,0.786193901207298,-0.833305545616895,-0.870203620288521,-0.8083744812756777,-0.8958226679824293,-0.17557130940258503,-0.347792599350214,-0.1435871496796608,0.1628161296248436,-0.28048375342041254,0.038911947049200535,0.571579571813345,0.15779146691784263,0.2857998050749302,0.013464267365634441,0.306589615996927,0.892862806096673,0.3216888844035566,0.5725302589125931,-0.1921602305956185,0.24975851690396667,0.964209308847785,-0.8217068295925856,-0.8470447920262814,0.648722717538476,-0.5377907073125243,-0.08806065050885081,-0.1709124380722642,0.34551359387114644,0.3629001616500318,0.22704003937542439,0.9498610319569707,0.09968089079484344,0.07826042454689741,-0.06098605785518885,0.7794013675302267,-0.6560819898732007,0.016875235363841057,0.9392474326305091,0.6621341640129685,0.13359584845602512,0.09505885420367122,0.8505855216644704,-0.2962831254117191,0.5955209597013891,-0.0048940484412014484,0.7027539242990315,0.2491546650417149,-0.23111542034894228,0.25166916847229004,0.019054632168263197,0.8497930755838752,-0.47374553978443146,-0.9331170469522476,-0.09353889990597963,0.5169181772507727,0.13495490234345198,0.5404154034331441,-0.6127004558220506,-0.75487808464095,0.20054035587236285,0.8614016841165721,0.8210983942262828,0.44815149158239365,0.40789217967540026,-0.9155565039254725,0.0887221647426486,-0.8207001872360706,-0.5660463250242174,0.9287131014280021,-0.36429849080741405,-0.6949692917987704,0.46357620041817427,-0.7339829341508448,0.2855725986883044,-0.11219495115801692,0.6223462163470685,-0.4175133709795773,-0.8951679226011038,0.8495539547875524,-0.6240794416517019,-0.18599072052165866,0.032457757741212845,0.30680923303589225,-0.33773659775033593,0.34442466776818037,0.2643324192613363,-0.1167278653010726,-0.9287962159141898,0.5659242202527821,-0.46186995785683393,0.27083874912932515,0.1939276745542884,-0.6007576901465654,0.8856571805663407,-0.6557017327286303,0.8352930364198983,-0.2398859914392233,0.11855918215587735,0.732620956376195,0.5648861401714385,-0.1558092967607081,0.39910761592909694,0.0758446860127151,-0.24046859052032232,0.11975741107016802,-0.4521425901912153,0.23949511861428618,0.8726305859163404,-0.5763600487262011,-0.5632826169021428,-0.6510575003921986,0.6949146720580757,0.9273219485767186,0.9426114372909069,0.46054514264687896,0.5290281060151756,-0.6681975410319865,-0.4086330602876842,0.3350999425165355,0.32399403722956777,0.7966792737133801,0.71822539716959,0.6424555550329387,0.09708841377869248,-0.6460766927339137,-0.9460379956290126,0.8681001760996878,0.3206115891225636,0.728370395489037,0.21852096635848284,-0.6770224319770932,0.14954884676262736,0.29192387545481324,0.8552558361552656,-0.1855273749679327,0.19069902319461107,0.4651715625077486,-0.9950632317923009,0.7585967811755836,-0.5469077806919813,-0.43871549563482404,0.1178953880444169,-0.47403346514329314,0.9110123552381992,0.7671511610969901,-0.7964693619869649,0.759384935721755,-0.9881155248731375,0.8382777404040098,-0.10367108602076769,0.5087593272328377,0.013111598789691925,-0.5942994169890881,-0.4856513012200594,-0.7947758981026709,0.8804572871886194,-0.6868659481406212,0.838266471400857,-0.8930930159986019,-0.4081553006544709,-0.08380468469113111,-0.014151792507618666,-0.17294287495315075,0.9843085585162044,-0.7241841675713658,-0.6798386727459729,0.460629400331527,-0.40738238487392664,0.5106751988641918,-0.5265286890789866,-0.9059582147747278,0.6112108426168561,0.5494241775013506,0.45045251585543156,0.3659703671000898,-0.13757731020450592,0.47490532463416457,0.9555010655894876,0.9232392082922161,0.03848161036148667,-0.7348466827534139,-0.3015165403485298,0.6055327765643597,-0.2841158537194133,-0.19755382556468248,0.015579385682940483,0.8423137562349439,-0.9398421836085618,-0.3451338903978467,-0.8207241697236896,0.9503212543204427,-0.767741471529007,-0.4299016613513231,0.8403299036435783,-0.2773761092685163,-0.4362354250624776,0.4561713691800833,0.6201547440141439,-0.9440513015724719,-0.6065201535820961,0.6318966886028647,-0.44447158789262176,0.8254077807068825,0.8720287405885756,0.14948421204462647,-0.6613758560270071,-0.10596201289445162,0.006771124433726072,-0.35292576951906085,0.797469294629991,-0.4829898392781615,0.5253275921568274,-0.5878249746747315,0.45489034429192543,-0.22553005628287792,0.8667717450298369,-0.9093008791096509,-0.8212056993506849,-0.31265315180644393,0.9707456487230957,-0.09885991737246513,-0.2968425857834518,-0.5407369444146752,-0.8677761857397854,-0.38920078659430146,-0.11072661215439439,-0.8823619829490781,-0.02144432533532381,0.5488594081252813,0.5212625684216619,0.25236916076391935,-0.9040674646385014,0.39175662072375417,-0.35819203313440084,0.961738333106041,-0.22092206170782447,0.057786674704402685,-0.7769669988192618,-0.49164973106235266,-0.20930365938693285,-0.26122346287593246,-0.31319768680259585,-0.8587793884798884,-0.03071799175813794,0.9535160139203072,-0.19193092035129666,-0.5745512777939439,-0.4255660134367645,-0.20017308229580522,0.683578020427376,-0.07917748438194394,-0.9496256615966558,0.3932136856019497,-0.5119483941234648,0.34931160509586334,-0.39602274261415005,0.6109257014468312,0.07383734360337257,0.05703893583267927,0.2260412396863103,-0.26488311449065804,0.37230687821283937,0.17542901681736112,-0.4670988474972546,0.1707676979713142,-0.13025339785963297,-0.9063174831680954,0.48736673407256603,0.21882796147838235,0.7300370400771499,0.4372245413251221,-0.3893239237368107,-0.9638857119716704,-0.3794924868270755,-0.18316985806450248,0.7823147629387677,0.1891767685301602,0.16902023600414395,0.8292852062731981,0.5565513214096427,0.06093304045498371,-0.18717853212729096,0.6962501951493323,0.8751601539552212,-0.3238477474078536,0.40525858802720904,-0.4683410581201315,-0.19702074397355318,-0.4352968647144735,0.4509822931140661,0.022896081674844027,0.12152081914246082,-0.5198325831443071,-0.03360288077965379,-0.30701121408492327,-0.32773787761107087,0.2735998909920454,0.7992101982235909,0.5248875129036605,0.9888754156418145,0.0693383957259357,-0.7215017327107489,-0.2236807905137539,-0.023049477953463793,-0.7664298699237406,-0.09917274489998817,-0.1803963389247656,0.2165447948500514,0.5612585712224245,0.9254200239665806,0.19444049755111337,0.09672461915761232,0.023567315191030502,0.7999531487002969,-0.38105695927515626,0.3321300642564893,-0.06858278205618262,0.8834594916552305,0.6089699794538319,-0.16238397965207696,0.6918447478674352,-0.01934574544429779,-0.41420285822823644,0.4591072117909789,-0.7005689973011613,-0.4886981947347522,-0.03384748427197337,-0.238331429194659,0.29262948874384165,0.13698773831129074,0.9668988743796945,-0.31717952340841293,0.3166181826964021,0.2845749552361667,-0.12969801062718034,-0.05555162951350212,0.2439319733530283,0.9987403964623809,0.4927992816083133,-0.5478952820412815,0.8722546948119998,-0.07395004294812679,-0.39536491362378,0.35408552130684257,-0.4654075466096401,-0.22446101577952504,-0.265673182439059,0.08652749005705118,0.4957876638509333,0.5081828660331666,-0.3978102579712868,-0.3857942568138242,-0.12174420990049839,0.29729642532765865,0.6485588066279888,0.5853258999995887,0.9260481661185622,0.8465508623048663,0.7167497337795794,0.780141307041049,0.42921634996309876,-0.9898230293765664,-0.4964903676882386,0.4834733223542571,-0.1725831995718181,0.5965636461041868,0.28308471059426665,-0.37698747543618083,-0.8615001258440316,-0.3346159989014268,0.23518076445907354,0.18936817441135645,0.5029642712324858,-0.901539673563093,0.9906385452486575,0.6295638862065971,0.9123604670166969,0.02056755218654871,-0.7975493050180376,0.9722071220166981,-0.5850301370956004,0.9703119727782905,0.2835188056342304,-0.986543407663703,-0.15948619088158011,0.4526841351762414,-0.48635959485545754,-0.16299132304266095,0.07355775590986013,-0.7203251989558339,-0.1587614892050624,0.7695913766510785,-0.04905334673821926,0.26161355851218104,-0.13384195929393172,0.34147312119603157,-0.6857663546688855,-0.9399720416404307,0.8669518968090415,0.6698441212065518,-0.7833522004075348,0.2535500633530319,0.17749308375641704,-0.3465706682763994,-0.8741035042330623,-0.5473254015669227,0.145822215359658,-0.43090820079669356,-0.5637415330857038,-0.3629533317871392,0.6495990343391895,-0.5244771451689303,0.8035244126804173,0.8085187361575663,-0.526706222910434,0.5756213953718543,0.5308671738021076,-0.6178022907115519,0.266065807081759,-0.27829758264124393,-0.3795485505834222,0.07540575927123427,-0.7462499816901982,0.4942195056937635,0.7207403229549527,-0.9241073308512568,0.8062802394852042,-0.40075283171609044,0.4645806779153645,0.3420354030095041,0.6302352719940245,-0.5791671583428979,0.2135325507260859,0.08245342178270221,-0.31307706562802196,0.727754925377667,-0.8254258180968463,-0.10065731545910239,0.36760473204776645,-0.27614862006157637,-0.8932165894657373,0.4876466477289796,-0.13530113361775875,-0.8189211101271212,0.9589233505539596,0.2752681514248252,-0.03892658604308963,0.36628042720258236,0.219462423119694,0.9524238500744104,-0.8060038848780096,-0.8104534279555082,-0.20181777281686664,0.5692347828298807,-0.35705104982480407,0.5679156114347279,-0.873828109819442,0.19262840459123254,0.16869687428697944,0.6277373661287129,0.17648253357037902,0.3846806213259697,0.8963882089592516,0.6496313065290451,0.4872306091710925,0.6438624174334109,-0.2886786819435656,0.8631808268837631,-0.06610327633097768,0.44382529659196734,-0.509934373665601,0.9101348319090903,-0.638227712828666,0.9831455484963953,0.5159804229624569,0.2991099515929818,-0.6907644486054778,-0.9729540282860398,0.22969554364681244,-0.07836906425654888,0.9758617617189884,0.3510173913091421,-0.7465824489481747,0.8695243722759187,0.6310868393629789,-0.6395050738938153,-0.617593321017921,0.38519835425540805,0.5428785546682775,-0.36236959835514426,0.2601169724948704,-0.999722761567682,-0.024835766293108463,0.5521404389292002,-0.1908431574702263,0.38539870642125607,0.04197705537080765,-0.9306877837516367,-0.740040042437613,0.6313136392273009,-0.7553129950538278,-0.5778236351907253,0.5548784034326673,-0.39491242449730635,0.5964843868277967,0.8013879409991205,0.16142064705491066,-0.30642848974093795,0.6479492555372417,0.5887789609842002,-0.11077096546068788,-0.2845730329863727,-0.0642419564537704,-0.3024404630996287,-0.783207128290087,0.926067644264549,0.19267353368923068,0.13717852206900716,-0.14183161780238152,0.983776206150651,-0.0703396131284535,0.6584645607508719,0.6258892361074686,-0.8219368644058704,-0.7489363038912416,0.12646215874701738,-0.5503674210049212,-0.9133208966813982,-0.15106632420793176,-0.2768379068002105,-0.7912954688072205,-0.30703776190057397,0.24043735722079873,-0.9743100902996957,-0.8882437404245138,-0.8359764581546187,0.7475440856069326,-0.7632936579175293,0.5632710168138146,0.39271714072674513,-0.8908968889154494,0.9848087527789176,-0.048708803951740265,0.5671353726647794,0.23479282343760133,0.7633009837009013,0.9846116974949837,-0.22494720108807087,0.49939551996067166,0.9026034669950604,0.11864286428317428,-0.6865936368703842,-0.15140224527567625,0.14404964633286,-0.5316395610570908,-0.4400845943018794,0.5457530883140862,-0.4009494995698333,-0.5628648512065411,-0.02723501529544592,0.7736925655044615,-0.7979409075342119,-0.9365777340717614,-0.5975337442941964,-0.2889294703491032,-0.3335153078660369,-0.8682786244899035,-0.970211555249989,0.9185460498556495,0.8798339311033487,0.9595456905663013,0.08927493495866656,0.46876346692442894,0.8695750264450908,0.8120755245909095,0.9681400638073683,-0.1588081200607121,0.4298753533512354,0.3762481645680964,-0.7579923490993679,-0.7044638390652835,0.46906325640156865,-0.3447595094330609,-0.8115570181980729,-0.08155766734853387,0.03496042871847749,-0.1067326944321394,-0.9346525934524834,-0.7853211662732065,0.03308703796938062,0.20034747384488583,0.6846386324614286,0.3204015204682946,-0.11544586438685656,0.398598525673151,-0.49114853888750076,0.32041243091225624,0.3008330496959388,0.4607925107702613,-0.7286367053166032,0.7660159887745976,-0.7821649210527539,-0.8402545391581953,-0.8807287020608783,-0.31376377353444695,0.7962927375920117,-0.6667902343906462,-0.885852730832994,0.5549270752817392,-0.5464409808628261,-0.8483758005313575,-0.8332668822258711,0.09950616210699081,0.75000911206007,0.10762192076072097,0.4622743963263929,-0.9979111710563302,0.2131876447238028,-0.2402360117994249,-0.4766087462194264,-0.6448726016096771,-0.18228805530816317,0.5266269724816084,0.9407768025994301,-0.06943663256242871,0.5841232864186168,-0.23284544283524156,-0.3541413522325456,0.9772686399519444,-0.6686418219469488,-0.8999765762127936,0.9516637236811221,0.689943210221827,0.9831347167491913,0.9316892996430397,-0.7864098716527224,0.3194868923164904,-0.6181802866049111,-0.9190131924115121,-0.1355814067646861,-0.45516353007405996,-0.4349538739770651,-0.13909380370751023,0.1730435425415635,-0.46327554481104016,-0.846860321238637,-0.9483699658885598,-0.8757849978283048,-0.9308170876465738,0.6031840206123888,0.9982005786150694,0.2846949021331966,-0.46559029538184404,-0.6491379928775132,0.9373889304697514,-0.6619412326253951,0.3355872742831707,0.5211212234571576,0.2866190867498517,-0.035620448645204306,0.05699893506243825,-0.19657779345288873,0.3920449102297425,0.08698905957862735,-0.3933769720606506,0.07404122734442353,-0.2817937768995762,-0.7472597481682897,0.5837657353840768,0.9413140648975968,0.784712296910584,0.2675523334182799,0.7690872475504875,0.5367311211302876,0.8824288635514677,-0.5835675620473921,-0.15129867382347584,-0.9472791580483317,-0.2543853768147528,0.2051912103779614,0.8347838730551302,0.28797885961830616,0.5102938795462251,-0.1661858381703496,-0.44728979421779513,-0.4612547098658979,0.7387197320349514,-0.9726835037581623,-0.8525365004315972,0.737839421723038,0.9879262764006853,0.955700496211648,-0.08654791675508022,-0.21565364161506295,-0.126422468572855,-0.3464165572077036,-0.08957558637484908,0.9309229096397758,0.9814303419552743,0.9179461686871946,-0.5456217471510172,-0.9897473105229437,-0.3145419731736183,0.24296896206215024,-0.571935267187655,-0.14152444200590253,-0.11848327238112688,0.4712618454359472,-0.7710478734225035,-0.5845918962731957,-0.31563850678503513,-0.9822841603308916,-0.9588567991741002,0.5558266402222216,-0.5583383389748633,-0.7749788761138916,-0.8844964611344039,0.4425086206756532,0.7323228600434959,-0.48094519739970565,-0.87377246376127,-0.06890641199424863,0.09107525926083326,-0.39976607728749514,0.7859834819100797,-0.07667157985270023,-0.9984809956513345,-0.8749232375994325,0.5900705899111927,0.8201663056388497,0.12900138599798083,-0.3427222673781216,-0.4463577806018293,0.2717549242079258,0.1775901666842401,0.8438535667955875,0.5260100634768605,-0.3856013105250895,0.07594173634424806,0.7097773272544146,0.772060273680836,-0.04660042701289058,0.3770513250492513,-0.6953584714792669,0.15768990106880665,0.30764110991731286,-0.07308926340192556,-0.8859242629259825,0.7951824031770229,0.4317184779793024,-0.3160777916200459,-0.1820410075597465,-0.12000631866976619,0.537862763274461,-0.6645882250741124,0.39316378626972437,-0.6525388327427208,-0.545602944213897,-0.09700789209455252,-0.06956062791869044,-0.10746743762865663,-0.2752737207338214,0.027373365592211485,0.3787545976229012,-0.12958209635689855,-0.3662094553001225,-0.5689077684655786,-0.38640865311026573,0.7183723780326545,-0.1819409877061844,0.45981848053634167,-0.6184154134243727,-0.9280762989073992,-0.3031962504610419,0.09683413943275809,-0.7700019124895334,-0.8680088305845857,0.5562481698580086,-0.40305465599521995,-0.3335729339160025,0.5082771903835237,-0.04974160669371486,-0.016879789531230927,0.7415117342025042,-0.8774046218022704,0.5849823071621358,-0.6172531051561236,0.2965735695324838,0.4175426992587745,0.5725163980387151,-0.02116858819499612,0.6968445922248065,0.9676767657510936,0.3246461348608136,0.06362576643005013,-0.1701583112590015,0.11934567149728537,-0.6427372866310179,0.1073202877305448,0.09126576827839017,0.612000020686537,-0.7613537725992501,-0.768517310731113,0.18047035718336701,0.6760622668080032,-0.9128093649633229,0.8987758033908904,-0.17363288067281246,0.6363696828484535,-0.545497537124902,0.07063923683017492,-0.6879536681808531,-0.25554181076586246,0.28578735422343016,0.31163291819393635,-0.03574888361617923,0.23246570257470012,-0.03835394931957126,0.8802864062599838,-0.6617549057118595,-0.39406387554481626,-0.06976858712732792,0.13061208836734295,0.09148306585848331,-0.49888298055157065,0.2274657697416842,-0.19070700649172068,0.6472342745400965,0.5321812382899225,-0.7177717345766723,0.036354461684823036,0.3708299556747079,0.8391724126413465,-0.46113758999854326,0.6350171682424843,-0.2826143689453602,-0.6442953990772367,0.24348829872906208,0.8278224729001522,-0.6669688024558127,-0.5466774199157953,0.0740823713131249,0.5172832226380706,0.5108953700400889,-0.5399329662322998,-0.6275616553612053,0.6309937094338238,-0.5518705020658672,-0.9677671832032502,0.98510821769014,-0.594615597743541,-0.4850814533419907,0.2988443709909916,0.43369865883141756,-0.8002963368780911,-0.3242056732997298,0.8568563186563551,-0.5115341800265014,-0.27264081640169024,0.023265509866178036,-0.6287770033814013,-0.4358908087015152,0.6955930422991514,0.5330672264099121,-0.09585536643862724,0.42151963897049427,0.4130700705572963,-0.36657239170745015,-0.7222434477880597,-0.03249552333727479,0.10909655829891562,-0.6768385348841548,0.5546777206473053,-0.08927927585318685,-0.5111477011814713,0.5763681209646165,-0.5732862381264567,-0.9508377001620829,0.1753957150503993,-0.06165033159777522,0.7319025173783302,0.5496165938675404,-0.7444875347428024,0.8697731303982437,-0.7406775145791471,0.27871935442090034,0.45879963831976056,-0.5269098985008895,0.10115600423887372,-0.005140013061463833,0.0835364144295454,0.8737350222654641,0.0323584689758718,-0.46682603750377893,0.9262104691006243,0.8987365555949509,-0.9973565945401788,0.19919508043676615,0.6827997528016567,-0.8058157777413726,0.3420571149326861,-0.8855358213186264,0.9923987183719873,-0.9410303393378854,-0.3559914827346802,-0.21136372024193406,-0.8415511748753488,-0.21477358136326075,0.5170355220325291,0.8012399557046592,-0.8761020889505744,-0.10929301520809531,0.09610127285122871,0.882805987726897,-0.6717040315270424,-0.010964767541736364,-0.6848796093836427,0.33737552585080266,0.8331357664428651,0.23444234766066074,0.44253303250297904,-0.5327106551267207,-0.5824818196706474,0.9234655555337667,-0.3065031310543418,-0.3542504911310971,0.5875826883129776,-0.1351386341266334,0.3184685818850994,-0.9232398602180183,0.2947029029019177,-0.8909315462224185,-0.4255485790781677,0.8766750623472035,-0.16507260780781507,-0.17311956780031323,0.8891618065536022,0.03390669822692871,-0.42732431972399354,-0.6628228942863643,-0.11937058111652732,0.11227300204336643,-0.34332922380417585,-0.8219234691932797,-0.4526475160382688,-0.28553253365680575,-0.14696664083749056,0.8321954407729208,0.40343735134229064,-0.00023920414969325066,-0.9683671002276242,0.49122257670387626,-0.7219193843193352,0.4946316140703857,0.2717649373225868,0.7901922222226858,-0.21411109203472733,0.22292216960340738,-0.52927077235654,0.9640550478361547,-0.09647085471078753,0.8846581997349858,-0.5679215895943344,0.021194753237068653,0.8202288593165576,-0.43228329811245203,-0.4669249849393964,0.4679878889583051,0.04842470586299896,0.6788468803279102,0.8607395556755364,0.7153535122051835,-0.40100825019180775,0.9674162538722157,-0.28796637430787086,-0.33044228283688426,0.2689949939958751,0.6501998249441385,0.6830768291838467,-0.9604961504228413,-0.3940189671702683,0.7184928366914392,-0.48074803221970797,0.49525894643738866,-0.272726209834218,0.6275764624588192,-0.5988687835633755,-0.48268005065619946,-0.04012172110378742,-0.8012464018538594,0.6197395375929773,-0.5109405997209251,0.035195326898247004,0.7090064096264541,-0.7021921277046204,-0.7879847437143326,-0.19952916633337736,0.7902325303293765,0.1014570645056665,0.4142201221548021,0.8594878488220274,-0.49381912034004927,-0.8537351228296757,-0.7625612090341747,-0.10054178023710847,-0.4177119364030659,-0.9165825447998941,-0.6546319364570081,-0.31793534802272916,-0.32147332606837153,0.5100784851238132,-0.3046772903762758,0.6249304548837245,0.6169440769590437,-0.910340050701052,-0.982792004942894,0.6086539099924266,0.08046128414571285,0.8210518578998744,0.7489288966171443,-0.716047091409564,-0.49326520459726453,-0.7150554247200489,0.800154919270426,-0.7716755121946335,-0.41673555597662926,-0.8836060566827655,0.8068786202929914,-0.5489688673987985,-0.7244914742186666,-0.48467555502429605,-0.08263463620096445,0.6777807460166514,-0.5089222192764282,-0.7487793616019189,-0.307490027975291,0.0810192241333425,-0.7916941158473492,-0.9927810276858509,0.9526516227051616,-0.1389209209010005,-0.12269904417917132,0.9438971146009862,0.7742708162404597,-0.7790349870920181,-0.6087575941346586,-0.531733363866806,-0.33205809397622943,-0.8972905352711678,-0.7549790516495705,-0.9079049765132368,-0.4236829155124724,-0.5705500389449298,-0.2623770721256733,-0.7473667780868709,0.16447999002411962,-0.7152970475144684,-0.2980427974835038,0.48529003048315644,0.7517083087004721,0.23523131711408496,0.6430867868475616,-0.20965955313295126,-0.9224865604192019,0.132053944747895,-0.6918373536318541,-0.8766986504197121,-0.5036146184429526,0.26881472393870354,0.07861371105536819,0.8772395006380975,0.482117235660553,0.8448545038700104,0.5644660457037389,-0.7798358430154622,0.24035946559160948,-0.550332807470113,-0.4932597312144935,-0.46287931175902486,0.7189103388227522,0.6010027239099145,0.7631257185712457,-0.16700934432446957,0.03959644539281726,0.6270178840495646,-0.9638952068053186,0.16166170872747898,-0.3468965534120798,0.18514234572649002,0.5989001332782209,0.7315094149671495,-0.18792626587674022,-0.20031724497675896,-0.9543981244787574,0.8850771295838058,0.9876793678849936,0.7967865951359272,-0.8228872558102012,0.6744872620329261,0.8015020582824945,0.994285480119288,-0.43769238656386733,0.6362318126484752,-0.6412701886147261,-0.5986537928692997,0.17671995190903544,-0.08351666107773781,-0.9493375918827951,-0.7451665955595672,0.9555031033232808,-0.4886937392875552,-0.6405125954188406,-0.8867936213500798,0.4072458543814719,0.2607020568102598,0.6567704910412431,-0.973618833348155,-0.7477883026003838,-0.28963438235223293,0.5983198420144618,0.6530391410924494,0.3037145650014281,-0.7599134393967688,0.7139108586125076,-0.5003364752046764,0.12136979168280959,0.2167871156707406,-0.39234650833532214,0.35762720881029963,-0.4817255181260407,0.5696594696491957,-0.49605015758425,0.7830154909752309,-0.5617133844643831,0.6477166661061347,-0.7840621345676482,0.0012586438097059727,0.8388689500279725,0.5905508222058415,0.1110851326957345,-0.04744990915060043,0.0908928350545466,-0.008680311031639576,0.09891623165458441,-0.8400697465986013,-0.9763252069242299,0.36289678467437625,0.99219083879143,-0.6729567642323673,-0.7822002354077995,0.6453940882347524,-0.3243627022020519,-0.5083481115289032,0.03283417318016291,0.26024415297433734,-0.33011760003864765,-0.93595363618806,0.8643929096870124,-0.5910607161931694,0.5571890450082719,0.17160957818850875,0.5685142790898681,0.4495633007027209,-0.526037422940135,-0.5121236541308463,0.1378117986023426,-0.058404617477208376,0.83657406270504,-0.034236705396324396,0.2077785818837583,0.11954229371622205,-0.5452636643312871,-0.9261399060487747,0.20349123189225793,0.8336435542441905,-0.14848386961966753,-0.4142569014802575,-0.22922710236161947,0.03226765105500817,0.0985828135162592,-0.4841256747022271,0.6934601692482829,-0.04435018356889486,0.6939292969182134,0.5714324689470232,0.24361713230609894,-0.8335301857441664,0.6356791583821177,0.9925739704631269,0.5198923209682107,-0.4823890416882932,0.6929911086335778,0.24288769019767642,0.16802315320819616,-0.2564762937836349,0.17929506860673428,0.8295951308682561,0.4439994813874364,-0.7210419527254999,0.21152728283777833,0.5193410096690059,-0.44444800121709704,-0.10452165035530925,-0.28251112857833505,-0.21056532207876444,-0.1810405757278204,0.7764218184165657,-0.2111923317424953,-0.5547484424896538,0.40389592479914427,-0.5343490676023066,0.11027700547128916,-0.8787648929283023,0.7994379592128098,-0.1435511694289744,0.5921300100162625,-0.15418545762076974,-0.07713692029938102,-0.727103125769645,0.8952963589690626,-0.7865818217396736,-0.4250023262575269,-0.3567332308739424,-0.49128809571266174,-0.6531579135917127,0.6208390993997455,0.3770907395519316,0.8107956480234861,0.13745037419721484,0.42620184272527695,0.02555127441883087,0.5715412311255932,-0.8875303962267935,0.36445506662130356,-0.9775602677837014,-0.2154882294125855,0.948500367347151,0.43776077311486006,0.4199168300256133,-0.13864621007815003,-0.9419900118373334,0.49022455606609583,0.3784033781848848,-0.6992147392593324,0.9143174146302044,-0.10348943341523409,0.7126812194474041,-0.8518679738044739,0.4975694362074137,-0.21682509873062372,-0.8104261984117329,-0.25687092170119286,-0.7838304750621319,-0.21913506463170052,-0.13435977697372437,-0.8145207152701914,-0.832170064561069,-0.9160473477095366,0.5114171458408237,0.858789601828903,0.5340758739039302,-0.7700208015739918,0.03773853508755565,0.6171190259046853,-0.14227605517953634,-0.24281218741089106,-0.24596691923215985,-0.10008567059412599,0.540878975763917,-0.8712685252539814,0.9411584655754268,-0.9580064904876053,-0.8461132566444576,0.9160881279967725,-0.1914321961812675,0.6353645296767354,0.7059081634506583,0.023594504687935114,-0.9365509408526123,0.7423578393645585,0.43113871617242694,0.045881181955337524,0.6786530371755362,-0.4682519226334989,0.6805889238603413,0.6004881649278104,0.672594603151083,-0.914312114007771,-0.5975015768781304,-0.394008950330317,0.8041867264546454,0.7390723209828138,0.4445060663856566,0.7544515090994537,-0.5925090238451958,0.15446170326322317,0.6086387480609119,0.41671222588047385,0.590067605022341,-0.7018558830022812,0.36135548492893577,0.18128011981025338,-0.40879197092726827,-0.5838530720211565,0.025179595220834017,0.012152521405369043,-0.3921821373514831,0.6910182475112379,0.8358069811947644,-0.5519750281237066,-0.9238123698160052,-0.30593655770644546,0.8764717322774231,0.8913946691900492,-0.7457828531041741,-0.2945377165451646,0.017498245928436518,-0.5026186043396592,-0.7927613728679717,-0.7529633911326528,0.35032536648213863,-0.06441470794379711,-0.6344383885152638,-0.0929771582596004,-0.16657201200723648,0.09726305119693279,-0.19228247599676251,-0.19986874796450138,-0.45232292357832193,-0.7836508741602302,0.2829559510573745,0.566539354622364,-0.963808826636523,0.14975548954680562,0.3490470959804952,0.25285783549770713,0.5145659875124693,-0.5151212592609227,-0.6172232134267688,-0.5193288777954876,-0.576315931044519,-0.19250636035576463,-0.09008629294112325,0.766402936540544,0.058871731627732515,-0.34964679973199964,-0.8797076703049242,0.492460154928267,0.9977513924241066,-0.7306794519536197,-0.8841944830492139,0.5155032770708203,0.17880559992045164,-0.10335065983235836,0.1943237716332078,-0.18784600775688887,0.7023644433356822,-0.189892060123384,-0.36701825074851513,-0.18589440640062094,0.3753123008646071,-0.083102245349437,-0.23635490098968148,-0.4651552913710475,0.9915380417369306,0.07038941141217947,-0.8576597128994763,0.8408966660499573,0.6116346227936447,-0.8759739487431943,-0.8869696925394237,0.9761102613992989,0.2663036291487515,0.3649295479990542,-0.9428132572211325,0.16521380376070738,-0.3443433353677392,-0.49294151458889246,0.2558494792319834,-0.4873592332005501,-0.08561489684507251,-0.9094377364963293,-0.21030810521915555,0.3996710330247879,0.47014044178649783,-0.46806831611320376,0.9292126488871872,0.8489688797853887,-0.8763638841919601,0.09497588034719229,-0.9444689680822194,-0.4961792533285916,-0.044946164824068546,-0.750561514403671,0.27873313426971436,0.9578752308152616,-0.015579287894070148,0.3575739269144833,-0.5171979567967355,0.7093091448768973,0.0731136966496706,-0.575781655497849,-0.6891154157929122,-0.9021791629493237,0.8213872718624771,0.5808948264457285,-0.041867392137646675,-0.530721846036613,-0.9888652074150741,-0.6958364932797849,0.10297122457996011,-0.23797418316826224,0.7052858164533973,-0.02860240638256073,0.7425053152255714,-0.5432678037323058,0.28332611126825213,-0.8786585833877325,-0.5137581881135702,-0.07318846276029944,0.4947756906040013,0.15977547178044915,0.8709113406948745,-0.7864729799330235,-0.9620699593797326,0.69572325469926,-0.16920025739818811,-0.09015508042648435,-0.9802839085459709,-0.7928800568915904,0.8762668916024268,0.9350314922630787,-0.40044513484463096,-0.9686875506304204,0.5613856287673116,0.8407387305051088,0.83286162186414,0.7982013039290905,0.7816549954004586,-0.5597214307636023,0.00698750140145421,-0.6884320811368525,0.1319961459375918,0.7182812583632767,0.3898869468830526,0.8204476642422378,0.4503203514032066,0.08101675473153591,0.44238434359431267,-0.8009933363646269,0.7996141049079597,0.3693347596563399,-0.8721933588385582,0.1476337816566229,-0.8166286461055279,-0.14164634188637137,0.8435358447022736,0.9797245892696083,-0.721706020180136,0.7067481526173651,0.31114502158015966,0.3944446691311896,0.8525078967213631,0.5574219785630703,0.4935877458192408,-0.28750270465388894,-0.5914368722587824,0.012657634913921356,-0.8464289368130267,0.8812203439883888,-0.01144704781472683,-0.48289330303668976,-0.9379912856966257,0.6742263752967119,0.03408875223249197,0.40245636412873864,-0.652151714079082,-0.10846991511061788,0.36109309969469905,-0.8234033179469407,0.089524588547647,0.10468736384063959,0.5447664028033614,-0.13029318349435925,-0.894598223734647,-0.9431941267102957,0.3685802035033703,0.0826697088778019,0.989984321873635,-0.8441318916156888,-0.5886709098704159,0.9415390291251242,0.18798574525862932,0.5680264537222683,0.5462732850573957,-0.19442513398826122,-0.5203328891657293,0.6782561861909926,0.4889458529651165,0.012139348313212395,-0.4206690792925656,0.14107928099110723,0.22477190243080258,-0.9116111313924193,-0.09692998509854078,-0.12429171521216631,-0.5943097192794085,0.6198934512212873,0.3160948441363871,0.0941653368063271,-0.8881387403234839,0.42451595328748226,0.017023454885929823,-0.8062927047722042,-0.348512165248394,0.9545225035399199,0.6271524792537093,-0.47349275602027774,0.5412570657208562,-0.042871684301644564,-0.15290356520563364,-0.09837724873796105,-0.44475904386490583,-0.07383432146161795,0.3229597145691514,-0.37580735655501485,0.2559740268625319,-0.777958860155195,0.6135405045934021,0.4774346826598048,-0.37252310616895556,-0.22642018971964717,0.9131664060987532,-0.7813704675063491,0.7350913872942328,-0.9205274530686438,-0.023111332673579454,0.31888403557240963,0.4066341402940452,0.5951122813858092,0.12868628650903702,-0.7128159506246448,-0.33421717304736376,-0.08288566907867789,-0.5407798830419779,0.9092950522899628,-0.2340475325472653,-0.793362167198211,-0.09398333542048931,-0.7032908857800066,0.7633490422740579,-0.11018523294478655,-0.6471155704930425,0.9002208239398897,0.46257437812164426,-0.5117539092898369,-0.5858740611001849,-0.5009843986481428,0.35860399063676596,-0.6864948733709753,0.0027356883510947227,-0.4610682283528149,0.519567490555346,-0.2951783766038716,0.23096732096746564,0.7821499002166092,0.2168539515696466,-0.9885816979222,-0.036440977826714516,0.249269291292876,0.8389182649552822,-0.6443543843924999,-0.9524231958203018,0.9672955390997231,-0.2410392602905631,0.8773687724024057,0.4842825182713568,-0.5654951971955597,0.05402412125840783,-0.8161366879940033,-0.686294985935092,-0.9430809244513512,0.8340748432092369,-0.12627083295956254,0.9831527601927519,0.8599383789114654,-0.6633330839686096,-0.9043099167756736,0.1862050462514162,-0.03552180016413331,0.8766628094017506,0.7891430933959782,0.09884698642417789,-0.6248176889494061,0.9411984053440392,0.32981758704409003,0.7053989758715034,0.9708040491677821,-0.035366694908589125,-0.2448716307990253,0.3138850894756615,0.4942421638406813,0.06974347308278084,0.6593534257262945,-0.19246478425338864,-0.11263529816642404,0.8531710910610855,-0.6579912765882909,0.3210969716310501,0.6495001204311848,-0.28709995141252875,-0.6952793449163437,-0.6906028399243951,-0.358458963688463,0.5497654261998832,-0.41867258166894317,-0.1505051120184362,-0.592626076657325,0.46868810057640076,-0.788062812294811,-0.14380129519850016,0.0904794386588037,-0.32743715634569526,0.8980234363116324,-0.352977036498487,0.5830643009394407,-0.2199020409025252,-0.3249964169226587,0.30580844171345234,0.9671206227503717,0.4326688824221492,0.5937238177284598,-0.5766805466264486,0.07335629872977734,0.8994769495911896,-0.34073949744924903,0.24716441053897142,0.07605774514377117,0.33103708969429135,0.10372307198122144,-0.7080911514349282,0.4059826619923115,-0.7904915059916675,0.23840243322774768,0.40536520071327686,-0.3277573958039284,0.11538414703682065,-0.7968045845627785,0.5913343443535268,0.5587593740783632,0.1315865684300661,0.6982584814541042,-0.834370297845453,-0.9791777585633099,0.6754590217024088,0.6101114484481514,0.889275717549026,-0.5510388719849288,0.5571374804712832,0.06496870284900069,-0.353038745932281,0.4283603238873184,-0.27562129124999046,0.43686514208093286,0.8073059553280473,0.5160367744974792,0.016865885816514492,-0.5065628550946712,0.24198386119678617,0.8475302807055414,0.6765595679171383,0.4274057340808213,-0.4509561504237354,0.44518896378576756,-0.8110658354125917,-0.6966857248917222,-0.2661070949397981,-0.03678098553791642,-0.7140479064546525,-0.3728571371175349,0.7419461635872722,-0.12775080231949687,0.2492821249179542,0.9437224036082625,0.7697757268324494,-0.5810301029123366,-0.9876072802580893,-0.6506511103361845,0.4671958228573203,0.6105306553654373,0.5797241195105016,-0.20611844025552273,0.37021094374358654,0.27009444683790207,0.24116396764293313,0.8378533837385476,-0.5636204280890524,0.5217287288978696,0.23924683080986142,-0.19810398342087865,-0.5299295345321298,-0.8034837255254388,0.049406209494918585,-0.919872438069433,0.166602301876992,-0.2436537160538137,-0.44962851656600833,0.6734192306175828,-0.2546274485066533,-0.6003376469016075,0.49759625596925616,-0.6320650079287589,0.8730329270474613,0.9154787715524435,-0.701006421353668,0.4946485888212919,-0.6994354194030166,0.8085544058121741,-0.15971001144498587,0.7421827036887407,0.47440376318991184,0.5801087655127048,-0.5955101544968784,0.3627836205996573,0.8543140362016857,-0.09231855347752571,-0.9819323741830885,-0.1773363738320768,-0.24961053067818284,0.9268139158375561,-0.6726961475796998,0.6631282172165811,0.08263770816847682,0.38140954030677676,-0.7674969988875091,0.8776209047064185,0.7660204437561333,-0.7481107069179416,-0.2556462362408638,-0.10813802434131503,0.6552309645339847,0.6842028703540564,0.9804242206737399,0.11035676440224051,0.0209527057595551,0.7832871577702463,-0.5040159136988223,-0.5898682996630669,0.7736179428175092,-0.712081999052316,-0.2819238752126694,0.9128837026655674,0.25678637344390154,0.2686229278333485,0.27047394309192896,0.644196109380573,-0.005305744241923094,-0.7570727183483541,0.005646920762956142,0.7334195766597986,0.7700981833040714,0.45624190056696534,-0.315498189534992,0.17193085327744484,-0.5369912637397647,0.7816795399412513,0.26066293055191636,0.07851806422695518,0.7466563652269542,0.5638118935748935,0.08398264506831765,-0.2990003051236272,0.052537611685693264,-0.7012768597342074,0.2354551083408296,-0.1935836747288704,-0.3468175823800266,-0.41084116231650114,-0.3987049185670912,0.3647986566647887,-0.10345124080777168,-0.46179473865777254,-0.1552708214148879,0.6713750776834786,0.11812704522162676,-0.03735049441456795,0.9444202505983412,0.9896592642180622,-0.4956022812984884,0.3960501626133919,0.6150458180345595,-0.41289476305246353,-0.0644623446278274,-0.7366323182359338,0.3699178723618388,-0.4881012621335685,0.4824973586946726,-0.283346323762089,0.6829388230107725,0.20737685495987535,0.25754110468551517,-0.8704245323315263,0.856688245665282,-0.16774054151028395,0.04065528558567166,-0.127401540055871,0.9983137072995305,-0.4297136068344116,0.13669622596353292,0.9441469553858042,-0.17158536659553647,0.7311339285224676,0.15865021664649248,0.8398300893604755,-0.5156034952960908,0.9859382752329111,0.9240854997187853,-0.5498287701047957,0.3455152986571193,0.5459599294699728,0.14295091619715095,0.2375375940464437,-0.4811393767595291,0.22123363567516208,-0.7093600360676646,0.882010264787823,0.6741586397401989,0.8242609305307269,0.4087103819474578,0.13283849088475108,0.07799066184088588,0.21007464826107025,0.45501380087807775,0.4853236195631325,0.019028571899980307,-0.7853001332841814,0.3659315463155508,-0.9635727512650192,0.7962465514428914,-0.9093947364017367,0.2852980410680175,-0.26090857200324535,0.6296158595941961,-0.18549870140850544,0.7157900207675993,-0.6196791841648519,-0.20288764545693994,-0.43746912758797407,-0.23602306889370084,-0.989402734208852,0.18338543036952615,-0.5289904726669192,0.7095145764760673,-0.3908370747230947,0.7329366290941834,-0.3921425901353359,-0.4148909323848784,-0.060474603436887264,0.42462200997397304,-0.08742040069773793,-0.4895082712173462,-0.222912410274148,-0.6097668027505279,0.8193789115175605,0.05178522178903222,-0.5849443944171071,-0.3097441550344229,0.555900280829519,-0.9512047027237713,0.2771214321255684,0.07989342324435711,-0.3677017199806869,-0.3249580943956971,-0.2712973994202912,-0.8182909348979592,0.009049809072166681,-0.4148070253431797,0.6190010500140488,-0.10678005637601018,0.29478536639362574,0.884899013210088,-0.8682038108818233,0.29180998355150223,0.1333827399648726,-0.020981003530323505,0.9685403881594539,-0.35129130398854613,-0.37581864511594176,-0.49379357509315014,-0.21030920697376132,-0.2394822807982564,0.9272120352834463,0.19005943089723587,-0.3115429333411157,0.6867376323789358,0.42621275456622243,-0.3664882336743176,0.17073666723445058,-0.32544724689796567,0.13720666570588946,0.11971274903044105,0.49715313501656055,-0.24624908389523625,-0.664157188963145,0.11001559440046549,-0.7052732305601239,0.5323133217170835,0.08516999008134007,-0.44924994464963675,0.034325382206588984,-0.2734319460578263,0.7204448957927525,0.9150361055508256,-0.6752837905660272,0.8087804904207587,0.9506399994716048,-0.4957133624702692,-0.6847842903807759,-0.6800209498032928,0.9231959786266088,-0.7791893142275512,0.5470506106503308,0.283672405872494,0.7839898215606809,-0.8882213155739009,0.0009240987710654736,0.26235943380743265,0.5276161981746554,-0.4890094855800271,0.6236553052440286,-0.0850270134396851,-0.2532345838844776,-0.6139355073682964,-0.30998635990545154,0.22667909925803542,0.24153749970719218,0.1376155372709036,-0.12787722749635577,-0.2764129019342363,-0.06917753024026752,-0.7126017673872411,0.21745649725198746,-0.22864295495674014,-0.1439360990189016,0.9505345518700778,-0.8765072082169354,-0.18746923934668303,0.12830607499927282,0.8516193851828575,0.7110049240291119,-0.6038811742328107,-0.41850584419444203,-0.5887172883376479,-0.9160741963423789,0.9082109862938523,0.22637222614139318,-0.6323496480472386,-0.11773794237524271,0.6071796878241003,0.23077815910801291,0.6645723609253764,0.8615055871196091,0.8573786397464573,0.3916983166709542,0.7279632100835443,0.578387541230768,-0.6481867493130267,0.9091565497219563,0.4018247788771987,0.566558045335114,-0.779681499581784,0.03954201564192772,0.9751619207672775,0.3518008296377957,-0.8600064730271697,-0.5265316823497415,-0.8571913167834282,-0.0777192348614335,0.5452599138952792,0.5442447727546096,0.7617807062342763,-0.18487206241115928,-0.9339435524307191,0.42806919012218714,-0.3613156317733228,0.4419786254875362,0.2207309720106423,0.9712193966843188,0.6126186158508062,-0.15214167581871152,0.4087483575567603,-0.38321025017648935,-0.7944169216789305,0.3668351974338293,0.03541381936520338,0.9534179531037807,0.3302255100570619,0.3479214636608958,-0.732047944329679,0.40573854744434357,0.2194855068810284,0.18088998179882765,0.47715648636221886,0.9054213296622038,-0.5248783226124942,0.8106364943087101,0.384863686747849,-0.28467712458223104,0.48653205623850226,0.5474012899212539,0.508838735986501,-0.33648015232756734,-0.07131214765831828,-0.22674228297546506,0.609556034207344,-0.5664259395562112,0.9107123143039644,-0.1553483810275793,-0.7223198446445167,-0.3062340230681002,0.4532764800824225,-0.13202440552413464,0.07379409205168486,0.19360588723793626,-0.23401937866583467,-0.18090954376384616,-0.9033757378347218,-0.24585110321640968,0.9563300395384431,-0.2393543655052781,0.8535392768681049,-0.7143205921165645,0.032221080269664526,0.4083810178562999,0.8348825634457171,0.3166278940625489,-0.5436382135376334,0.38045119075104594,-0.25980044901371,-0.10900400951504707,-0.2542621516622603,0.9280410706996918,0.08270234940573573,0.6068181274458766,-0.31805329490453005,-0.6995831434614956,-0.589662326965481,-0.5163892949931324,0.2522050840780139,-0.980852463748306,0.0021568741649389267,-0.8039119681343436,0.9805242265574634,-0.11486145900562406,0.13517294824123383,-0.2418990796431899,0.055696146097034216,-0.6963109518401325,-0.056801571510732174,0.6468706261366606,0.7627033959142864,-0.19499242445454001,0.08418137254193425,0.6117448834702373,0.6321293488144875,0.22598393401131034,-0.7410743976943195,0.756059505045414,0.4283069372177124,-0.03703587036579847,0.6988622224889696,0.23362638987600803,0.6786647099070251,0.061835565604269505,-0.06863138312473893,0.6107486188411713,-0.7121948399581015,0.9598262496292591,0.010311505757272243,-0.783121953252703,-0.26832323940470815,0.8294976698234677,0.006939941085875034,-0.5987174925394356,0.0074800532311201096,0.42788019916042686,0.613404409494251,-0.8869430031627417,0.0416460526175797,-0.4884601519443095,-0.4495092714205384,-0.8713770136237144,-0.42889746371656656,0.5551316039636731,0.4669633889570832,0.8252207436598837,-0.08649004297330976,0.4482924025505781,0.7595025901682675,-0.16047118790447712,-0.38169235782697797,0.6307454621419311,-0.24624802358448505,0.4503165343776345,0.11431859666481614,0.13724600709974766,0.5844807829707861,0.008907068986445665,0.2601202754303813,0.4587842230685055,-0.331948331091553,0.23803625721484423,-0.9745154622942209,0.7870565894991159,0.3604113641194999,-0.11957710608839989,0.7435313877649605,0.45055051054805517,-0.8614390208385885,-0.9444320606999099,-0.9670532713644207,-0.49566471111029387,-0.04929849412292242,-0.15203925082460046,-0.8691665884107351,0.3687094049528241,0.10795945674180984,0.5125183979980648,0.9771624184213579,-0.2524290317669511,-0.7372681014239788,-0.5597663149237633,-0.008982786908745766,-0.7421731441281736,0.7083340212702751,-0.6355476612225175,-0.8500844603404403,-0.7286322684958577,0.5191867570392787,0.19880302296951413,-0.04274661932140589,0.18191296374425292,-0.7086272803135216,-0.0008542216382920742,0.32756580598652363,-0.6730384854599833,-0.25827513774856925,0.2510872557759285,-0.5831942614167929,-0.40747535787522793,-0.6938350750133395,-0.6019310476258397,0.1146592115983367,0.33161668106913567,0.3555460721254349,-0.41256404714658856,-0.04264858411625028,-0.37395860766991973,0.20442801853641868,-0.25498663913458586,0.8548876876011491,0.4147595362737775,-0.678671786095947,-0.04817010695114732,-0.5221258620731533,0.5937043908052146,-0.12827636767178774,0.4496788112446666,-0.6709122858010232,-0.7275540954433382,0.5087547609582543,-0.08394937869161367,0.040014614816755056,-0.6905075768008828,0.22345931129530072,0.6768953315913677,-0.18761951057240367,0.22005983768031,0.002452472224831581,-0.2968077268451452,-0.2967791799455881,-0.9663547133095562,0.45528461085632443,0.3795081931166351,0.8201134586706758,0.7538948967121542,0.9710832359269261,-0.5076468703337014,-0.25631397077813745,-0.8643175042234361,-0.35238066827878356,-0.46325009874999523,-0.9182523651979864,-0.8126007891260087,-0.6300966711714864,0.2682684101164341,0.4181262440979481,0.5929829059168696,-0.3351470553316176,-0.1302004884928465,0.9183218567632139,0.8838376011699438,-0.8003678163513541,-0.5775265214033425,0.20322773093357682,-0.2722531878389418,-0.7174596418626606,0.44171300157904625,-0.2781715039163828,-0.7718880884349346,0.5684791803359985,0.3149501052685082,0.7303723064251244,0.6552155218087137,0.26281492970883846,0.2813098393380642,0.6246133861131966,0.9645823445171118,-0.13727674866095185,-0.8928539287298918,-0.3534179260022938,-0.5647408692166209,0.835141162853688,-0.4518002597615123,-0.011203243397176266,-0.9758378406986594,-0.04668669495731592,0.7160897538997233,-0.5933795520104468,0.19785163225606084,0.14201124291867018,-0.7049164292402565,0.5040184650570154,-0.47640941897407174,0.6071007065474987,0.028038485441356897,-0.25955921970307827,0.9715477405115962,-0.5041760331951082,0.7886468390934169,0.720249954611063,-0.6579172648489475,-0.9354603998363018,-0.04249303601682186,-0.5610211896710098,0.0024670325219631195,0.371107782702893,0.8945577251724899,0.016677252482622862,0.5523782027885318,-0.1575857875868678,0.8958077300339937,-0.060934935696423054,-0.4644629289396107,0.9421906750649214,-0.14492480782791972,-0.9092449638992548,-0.736095845233649,0.34882018342614174,-0.7642375119030476,-0.518897398840636,0.9171089008450508,0.05852701794356108,-0.2862219251692295,0.75284125469625,0.7946917209774256,0.9388530002906919,-0.7255567852407694,0.14222312066704035,0.4642945108935237,0.46666365629062057,0.1312758196145296,-0.3356467210687697,0.4232061058282852,0.336896856315434,-0.6257431507110596,0.15592932933941483,0.6528386729769409,-0.38177851820364594,0.3230186328291893,0.5772974682040513,-0.7737820390611887,-0.5671686097048223,0.802198036108166,0.6329945796169341,-0.12486562225967646,0.26124771824106574,-0.9774817693978548,-0.7032771706581116,-0.11036141915246844,0.8659455603919923,-0.012799001298844814,0.5961952684447169,-0.18270007334649563,-0.7604567585512996,0.5748560363426805,-0.6634592465125024,-0.5889714970253408,0.09571257838979363,0.07549547962844372,0.6244343593716621,-0.15543464059010148,0.8197373151779175,0.04258617525920272,0.1347969970665872,0.7254902054555714,-0.9914727043360472,-0.6972046419978142,-0.7662930050864816,-0.0038763335905969143,-0.9291411251761019,0.5136669054627419,0.45856317738071084,0.15383439557626843,-0.7181326295249164,0.8681958802044392,-0.8715202258899808,0.8033063262701035,-0.09725895151495934,0.6990227070637047,-0.9944983534514904,0.673227546736598,0.5156691810116172,-0.9907549805939198,0.19029928650707006,0.3638572730123997,-0.8519576322287321,-0.4666776373051107,-0.9106841897591949,0.8953687460161746,0.833644981496036,-0.2603389578871429,0.41289314767345786,0.5243889773264527,0.7880849498324096,0.45772571628913283,0.056937959510833025,-0.6722740442492068,-0.23268576804548502,0.11930761439725757,-0.8547519505955279,-0.8861538730561733,-0.5743828001432121,0.5092752706259489,0.19098831107839942,-0.39187825843691826,0.10754854837432504,0.14038657722994685,-0.3211232414469123,-0.7885422431863844,0.8534460552036762,-0.464747651014477,-0.14227298367768526,0.4420730462297797,-0.6896571666002274,0.45789880072697997,-0.08634646935388446,0.15624535270035267,-0.19502458907663822,-0.7769773509353399,-0.33205049112439156,0.09479801077395678,-0.1777826827019453,-0.6530817174352705,0.6120600500144064,-0.022749619092792273,-0.2709891186095774,0.1200143238529563,0.5041280491277575,-0.22601240361109376,-0.1948849493637681,-0.005207258742302656,-0.00488761393353343,-0.42209974490106106,-0.7476225085556507,0.7471624682657421,-0.15562007389962673,0.3894457998685539,0.3241795399226248,0.9640110461041331,-0.4486177391372621,-0.9726327764801681,0.3033411814831197,-0.1604891261085868,-0.5725345080718398,0.7214689259417355,-0.5387196792289615,-0.9567782813683152,0.7122254618443549,0.9926045062020421,-0.12454819865524769,-0.6604187181219459,-0.5107658104971051,-0.22833039239048958,-0.4575403891503811,0.8257378502748907,0.28582335729151964,-0.15930409589782357,0.7901957067660987,-0.44883963419124484,-0.27940472355112433,0.26661999616771936,-0.34854169748723507,-0.28498691972345114,-0.3536327048204839,-0.17030214192345738,0.5491065769456327,0.2687355116941035,-0.6977947070263326,0.2663443167693913,-0.9719582586549222,0.21567805018275976,-0.07165804971009493,0.9834915967658162,0.5666638468392193,0.8194595305249095,-0.668850664049387,-0.02871455391868949,-0.5600487706251442,0.3762892824597657,-0.6774966130033135,-0.054394643288105726,-0.22902791248634458,-0.3605651860125363,-0.7213137792423368,0.5568010238930583,-0.274529249407351,0.68761239759624,-0.1655494775623083,0.6026881253346801,0.5220448072068393,0.9432741049677134,-0.1531819924712181,0.48788041388615966,-0.8839731346815825,0.1674076854251325,-0.07486067852005363,-0.5243487334810197,-0.21284727426245809,0.5952991172671318,-0.5349936545826495,-0.6738470648415387,-0.007974197622388601,-0.172992629930377,-0.9151162784546614,-0.9858244364149868,-0.7301827468909323,0.4476829618215561,-0.9286381285637617,0.6318330196663737,-0.36202177219092846,-0.8961195852607489,-0.2527136402204633,-0.723054370842874,0.9596140990033746,-0.8904218822717667,-0.7886102981865406,0.6337761706672609,-0.4557670298963785,-0.7964526256546378,0.4092014511115849,-0.05712577793747187,-0.8989586536772549,0.6020961846224964,0.7762219873256981,-0.6677160849794745,-0.3650189093314111,-0.8571128700859845,0.14644062705338,-0.9281119829975069,-0.508341328240931,0.0709259849973023,-0.6117765200324357,0.967586942948401,-0.7513645933941007,-0.6812591617926955,-0.44045621948316693,-0.7640463206917048,0.44448330719023943,0.23444442497566342,0.34069482469931245,0.2621338600292802,-0.48060672590509057,0.385205770842731,0.7283247825689614,-0.7512859697453678,-0.11893978016451001,0.8297379030846059,0.6166167138144374,0.6727752201259136,0.11336713097989559,-0.053337072022259235,-0.7849983000196517,0.7070379597134888,-0.11380331823602319,0.07491430500522256,0.6039840709418058,-0.4498025244101882,-0.8523260173387825,0.2696282034739852,0.959406390786171,-0.5077208378352225,0.1424481882713735,0.7492357408627868,-0.3961101588793099,0.20945808989927173,-0.7082938980311155,-0.21719071455299854,0.5097789205610752,-0.5384267177432775,0.031874426174908876,0.764248251914978,0.18016683543100953,-0.91812155675143,0.003190684597939253,0.7761708311736584,-0.6935417642816901,0.7232653456740081,0.753249844070524,-0.4590575732290745,-0.13547833543270826,-0.46238738391548395,-0.7644408834166825,-0.06965853925794363,-0.35423707077279687,-0.9231746438890696,0.029514815658330917,0.7438959302380681,-0.711071168538183,0.17945228330790997,-0.2753114472143352,-0.8988769249990582,0.006283676717430353,0.24858091957867146,0.9878859519958496,0.8623538436368108,0.7704548044130206,0.42732355324551463,0.9449345716275275,-0.6892562978900969,-0.8130053635686636,0.7904204442165792,-0.05052523221820593,0.8221691544167697,-0.0408438378944993,-0.2725748876109719,0.8371463767252862,-0.7291877493262291,-0.2953408663161099,0.769210240803659,-0.6294826087541878,0.327242364641279,0.7048304993659258,-0.7108018309809268,-0.12026415159925818,-0.3638343275524676,0.5827029589563608,-0.08734499244019389,0.10678250016644597,0.4553736546076834,-0.8525021807290614,-0.7591678285971284,0.025187365245074034,-0.7640220890752971,0.46387175330892205,-0.6808664249256253,0.21923661092296243,0.7369046723470092,0.7884714095853269,0.8510190597735345,-0.03283280925825238,0.5444192439317703,-0.23604589980095625,-0.16712504671886563,-0.708578422665596,0.31766900001093745,-0.004970537032932043,-0.464977755676955,0.5160781051963568,0.23523025028407574,0.6903818412683904,-0.4678467344492674,-0.7101262789219618,0.9487721384502947,-0.24163862457498908,-0.4951519249007106,0.8388055395334959,-0.90516029112041,0.7400913620367646,0.2214989848434925,0.7898163590580225,0.0664002662524581,-0.7586758313700557,-0.3894823295995593,0.8047835743054748,0.279491254594177,0.10203849896788597,0.19961592555046082,0.5018355385400355,0.17557889968156815,0.41102012852206826,0.1746421097777784,-0.42071142978966236,-0.7293621320277452,0.13763783080503345,-0.4172630785033107,0.17468799371272326,-0.37578205531463027,-0.9555769166909158,-0.022515303920954466,-0.47349862940609455,0.7994953701272607,0.8581031723879278,0.8025153535418212,-0.07685834029689431,-0.25428145844489336,0.1492696120403707,-0.2586119403131306,0.9762403150089085,0.0863011279143393,-0.7194534377194941,0.5747991753742099,0.6876078313216567,-0.29394598584622145,-0.09387865057215095,-0.09928648127242923,0.44436868745833635,0.04095702664926648,0.07542116846889257,0.11955355107784271,0.45121869910508394,0.2207546103745699,0.10338779026642442,0.8713452382944524,0.2944174101576209,-0.06471703760325909,0.22156356647610664,-0.825604950543493,-0.8964943932369351,0.09641553927212954,-0.8458332791924477,0.22897260589525104,0.3910277495160699,-0.15514397528022528,0.3270251960493624,0.1312152543105185,-0.7651615217328072,0.5490073813125491,-0.48084602085873485,-0.960667067207396,0.024351253174245358,-0.3204171983525157,0.008374066557735205,0.34851464768871665,0.10607735766097903,0.6237048702314496,-0.7611143020913005,0.3375439769588411,0.020896553061902523,-0.4174232045188546,0.8529172334820032,0.2824822412803769,-0.6930962158367038,0.1296350839547813,-0.9821157264523208,-0.7085352395661175,-0.4651582520455122,0.1849120305851102,0.4255790701135993,-0.11283153342083097,-0.994057615287602,-0.1700745988637209,0.3112147063948214,0.48948540771380067,0.017226105090230703,0.23637282522395253,-0.24106136290356517,0.5455290139652789,-0.31148400576785207,-0.5875527253374457,0.35058662900701165,0.18643989646807313,0.9329959736205637,0.4794447193853557,0.6810957035049796,0.8846216280944645,-0.9219425651244819,0.5508354022167623,0.9498785748146474,-0.3625604622066021,-0.04920587968081236,-0.09920157538726926,0.6005562362261117,0.38615237548947334,0.9149925960227847,0.665801664814353,0.6088801412843168,0.48119850223883986,0.8385892496444285,-0.45163976214826107,-0.92735855281353,0.5489058466628194,-0.31922648288309574,-0.1367227635346353,-0.5967746512033045,0.2030048267915845,-0.21120811207219958,0.4910006495192647,0.5034698243252933,-0.4353337720967829,-0.1266266950406134,-0.002410194370895624,-0.10081844730302691,-0.9137175218202174,0.6384003218263388,-0.5111060361377895,0.4041371485218406,-0.7121269800700247,-0.2988200103864074,-0.3802222404628992,-0.7322371830232441,0.7524159410968423,0.654141794424504,-0.0952368313446641,0.2991946334950626,0.9427602766081691,0.5880931001156569,0.011828619986772537,-0.025733345188200474,0.41262740595266223,0.6772359106689692,-0.7207415988668799,0.10631159646436572,0.32832395378500223,-0.3581048403866589,-0.6187125584110618,0.6227798946201801,0.7435490791685879,0.5186957684345543,-0.31796296825632453,0.3947133687324822,0.6967332102358341,-0.4072201340459287,0.6423270213417709,0.7928640656173229,0.8717581043019891,-0.2575172814540565,0.202116540633142,0.7414253652095795,0.6512080836109817,-0.820840448141098,0.4301977762952447,-0.9512333772145212,-0.8110982328653336,0.9604118391871452,0.8015307146124542,0.1815328854136169,0.11817852174863219,-0.6688446048647165,-0.0033820634707808495,-0.16010036878287792,-0.41335889883339405,-0.9906406588852406,0.44743370031937957,0.10618237406015396,-0.6075924662873149,-0.7929035220295191,-0.9147666222415864,0.74930584942922,0.3027987973764539,-0.06450791005045176,0.42408923525363207,0.8212465825490654,-0.510483602527529,-0.30547169130295515,-0.5706481691449881,-0.6722662579268217,-0.879774724598974,0.3284601550549269,0.1510357349179685,0.19655087543651462,-0.7571382196620107,0.37133956560865045,0.8277608775533736,-0.616879956331104,0.16061847703531384,0.2648895150050521,-0.3511981815099716,-0.6585617484524846,-0.7084162156097591,0.7777591948397458,0.4870391977019608,0.8520755874924362,-0.7633639671839774,0.32116149831563234,-0.3280041618272662,0.26266143238171935,0.7575283139012754,0.05451728403568268,0.20231435634195805,0.676408177241683,0.15810967469587922,0.09172701556235552,0.47313277469947934,0.3496005437336862,-0.6842047115787864,-0.6643559993244708,0.11815898912027478,-0.15002784272655845,0.12398854270577431,0.21146481204777956,-0.26399801997467875,0.41002373211085796,0.308683090377599,0.6621016291901469,-0.5290308841504157,0.44272354431450367,0.01571275293827057,-0.9140757201239467,0.7701569921337068,0.8309041410684586,-0.5018536034040153,-0.6650857469066978,0.30038587329909205,0.33210741030052304,0.9850500836037099,-0.0970754474401474,-0.698781038634479,-0.9904906954616308,-0.2711586714722216,-0.9974025106057525,0.6058628396131098,0.9696590723469853,-0.013896665535867214,0.35163303930312395,0.3537829234264791,-0.3133337120525539,-0.9881593692116439,-0.08548303181305528,0.6190945454873145,0.33622235618531704,-0.3603207981213927,0.3620879240334034,-0.9994577565230429,-0.38906233198940754,0.22191745368763804,-0.0705626723356545,-0.9952426915988326,0.9522325024008751,-0.2188737099058926,0.5970979640260339,0.1663833470083773,0.5038187992759049,0.6384562831372023,-0.3329663057811558,0.002392827533185482,-0.6951987203210592,0.9276343807578087,0.5294153322465718,-0.7832661266438663,-0.95165363419801,0.875478136818856,-0.12112487480044365,0.3019308685325086,-0.9313132520765066,0.5189648470841348,-0.31235767202451825,-0.9164609746076167,0.16527185263112187,0.6693079294636846,0.8528184783644974,0.7994122025556862,-0.11457218416035175,-0.8708167686127126,-0.3193020951002836,-0.32717450242489576,0.7031826796010137,0.7382570863701403,-0.742187874391675,-0.20561289694160223,0.09436504077166319,-0.012628423050045967,0.07064310647547245,0.38419125601649284,-0.040495749562978745,0.43317169370129704,0.9451103042811155,0.9595812377519906,0.20438827062025666,-0.29329737089574337,-0.0011479812674224377,0.8383963238447905,0.8561508534476161,0.9758672644384205,0.3779513887129724,0.5576230203732848,0.38746906304731965,0.04247233457863331,-0.028828423470258713,-0.9355038092471659,-0.5857084523886442,0.6398029974661767,-0.029168364126235247,0.9906175560317934,-0.762452389113605,-0.5072096022777259,-0.870896462816745,0.4869438982568681,-0.21523588383570313,-0.18617477733641863,-0.035180927719920874,-0.32306137308478355,0.9470618246123195,-0.10494795441627502,0.87105976883322,-0.021662376821041107,0.6220179437659681,-0.07050501648336649,-0.32618230395019054,0.9378552539274096,0.856901338789612,-0.1945780194364488,-0.27729045134037733,-0.18482200894504786,-0.10891063883900642,-0.5069347987882793,0.47372985165566206,-0.14662308571860194,-0.6473675309680402,-0.184093969874084,-0.014238228555768728,0.5775871090590954,0.5368625116534531,0.8149265376850963,-0.4811649457551539,0.7701457049697638,-0.3884514453820884,-0.5733072408474982,-0.7660459131002426,-0.43025402119383216,-0.5158526208251715,-0.1286811400204897,-0.35811867797747254,-0.031923843547701836,0.8817611904814839,-0.23771715769544244,-0.42988865124061704,-0.630690679885447,-0.27905148500576615,-0.6515521118417382,0.1321104122325778,-0.36827532993629575,-0.4158048974350095,-0.3170791184529662,0.5715711587108672,-0.48105635959655046,-0.8998441095463932,-0.19941398734226823,0.5838379291817546,-0.42880122922360897,-0.7328617395833135,0.8936864724382758,0.2245437395758927,0.4072778192348778,-0.496886495500803,0.09798765322193503,0.17774675460532308,0.9951127264648676,0.6172551587224007,0.4321941938251257,0.18473514448851347,0.7686299327760935,0.6242695115506649,0.60299470461905,-0.5083797546103597,0.9085881994105875,0.10713676456362009,0.26848611515015364,0.7097538830712438,0.5763318319804966,-0.36604558816179633,0.06942108925431967,-0.3505253866314888,-0.4889302453957498,0.5923524810932577,-0.9380988306365907,-0.7101425579749048,-0.08471040055155754,0.4542545094154775,-0.9883058001287282,0.802047458011657,0.1392959705553949,-0.9448418966494501,-0.12889873562380672,-0.20917867729440331,0.484380844514817,-0.6556447804905474,-0.7452667001634836,-0.7383976555429399,0.0721470694988966,-0.5814699344336987,0.7775373077020049,-0.8782209274359047,-0.8501780773513019,0.904873441439122,-0.17592180985957384,-0.7665283116512001,-0.5917850965633988,0.7007292225025594,0.5238502467982471,0.9764459761790931,-0.16456810478121042,0.24218844901770353,0.09676952194422483,-0.15732652181759477,-0.9999787965789437,-0.5929466239176691,-0.27321466244757175,0.5899318577721715,-0.2853242107667029,-0.5170819028280675,-0.7849502004683018,-0.8799423929303885,-0.08154546516016126,-0.7352331606671214,-0.08425533398985863,-0.48261232394725084,-0.6858494230546057,0.3185252551920712,0.5604383703321218,-0.9793027564883232,0.4951239135116339,0.39869176922366023,0.6533387727104127,0.0037287245504558086,0.06727283541113138,-0.2020535720512271,0.06699722213670611,0.48602217016741633,-0.5807252945378423,-0.3452069223858416,-0.2179981372319162,0.42555675795301795,-0.7167419139295816,-0.602664977312088,0.7823680122382939,-0.6997085129842162,0.6940146558918059,-0.035027568228542805,0.7347683352418244,-0.5086062564514577,0.5729274610057473,-0.33054414950311184,-0.21209451230242848,0.9425586457364261,0.04147893888875842,0.012996281031519175,0.8606305355206132,-0.7881638561375439,-0.23985963081941009,0.08524013310670853,0.7184767280705273,-0.1864483868703246,-0.8853215351700783,0.993276268709451,0.1800782773643732,-0.4523388361558318,-0.1453636377118528,0.9720816733315587,-0.17854997608810663,-0.39670994179323316,-0.041218812111765146,-0.7182188457809389,-0.8538396004587412,-0.3818587213754654,-0.7399971722625196,-0.44278697948902845,0.7699015224352479,-0.8362579890526831,-0.4762139655649662,0.28863517567515373,0.3821858996525407,0.7194161657243967,0.2677797134965658,0.6091012647375464,0.2531425845809281,-0.9154150295071304,0.39615513663738966,-0.9308237466029823,-0.8639717344194651,0.21778968628495932,0.5086160399951041,-0.34595602517947555,0.6426911475136876,0.15399641077965498,-0.15897720493376255,-0.0023177098482847214,0.6129582086578012,-0.22396565275266767,0.7611873159185052,0.9171407478861511,0.33358077239245176,0.4096897030249238,-0.39041154412552714,-0.8316191760823131,0.8770446935668588,0.9438761109486222,0.7741841850802302,0.00366262998431921,-0.9010904496535659,-0.9431918771006167,-0.2656220984645188,-0.8530973242595792,-0.24011237174272537,-0.6384193967096508,0.8208433128893375,-0.2641655053012073,-0.9681937918066978,0.4497414887882769,0.52486886177212,0.09877818217501044,-0.5333227040246129,-0.4148011696524918,0.8472450259141624,0.703928240109235,0.2186871748417616,0.5438026725314558,0.346408118493855,-0.3128546574153006,0.603642201051116,-0.42031629104167223,-0.5653567002154887,0.6144033153541386,-0.5796659281477332,-0.9436055673286319,-0.5094652608968318,0.5001200591214001,0.5920261964201927,-0.2858721292577684,0.5766023145988584,-0.05266163032501936,-0.5292832357808948,-0.81289576087147,-0.37859335681423545,-0.695018264465034,-0.5248585129156709,-0.8578634709119797,0.9862020411528647,0.05785662354901433,-0.552873115055263,-0.5638496605679393,0.5539797362871468,0.16382779413834214,0.13160654390230775,-0.8638486680574715,0.05181172490119934,-0.2751113441772759,-0.7903374852612615,-0.5148000265471637,-0.1215580590069294,-0.0003469632938504219,0.5286081740632653,-0.5084865503013134,0.5672868872061372,-0.47272775787860155,-0.7901001060381532,0.012260244227945805,-0.4956696876324713,-0.5922632408328354,-0.03382538305595517,0.769766800571233,-0.45409818505868316,-0.6291504031978548,0.1575625971890986,-0.897395393345505,-0.8090251847170293,0.8042525942437351,0.20084809744730592,-0.4203016525134444,0.014873022213578224,-0.2777083874680102,-0.9761945377103984,0.016729083377867937,0.9268073411658406,0.06727476883679628,0.34349383413791656,0.20805212017148733,-0.5059915632009506,0.2761067980900407,-0.8069233694113791,-0.0279306978918612,0.9179680766537786,0.005711569916456938,0.16588248033076525,0.5751550965942442,-0.9379994347691536,0.371285951230675,-0.17025952180847526,-0.8025517677888274,-0.8359275409020483,-0.28374664625152946,-0.8008195110596716,-0.6877460959367454,0.49626594549044967,0.9564473209902644,-0.006455130875110626,-0.8246159432455897,-0.5040619517676532,0.11797763034701347,-0.026319563388824463,0.6742710685357451,-0.8737879730761051,-0.4484900659881532,0.3247099695727229,-0.5496781342662871,0.2826662566512823,-0.2770744124427438,-0.20598648162558675,-0.03902171738445759,0.3150876979343593,-0.5960436910390854,0.3990624602884054,0.052160837687551975,-0.6226721266284585,0.16872486239299178,0.86426519183442,-0.3268725983798504,-0.3016075883060694,-0.6110372110269964,0.5065664141438901,0.6839225026778877,0.9547435771673918,-0.4305843482725322,0.15997863793745637,-0.5450707725249231,0.7554029310122132,0.2449403633363545,0.6303285043686628,0.020341686438769102,-0.700289988424629,0.9667329215444624,0.027494450099766254,-0.8073456538841128,0.8929777261801064,0.5257586096413434,-0.6787625788711011,0.16196703957393765,0.699293440207839,0.07952964259311557,0.5936753372661769,-0.800366151612252,-0.46511539444327354,0.8074762285687029,-0.27645822428166866,-0.20028624683618546,0.6137707028537989,-0.5701612350530922,0.8331430847756565,0.10530925868079066,-0.15616354625672102,0.1678543845191598,-0.9609113396145403,-0.26324800169095397,0.7389077325351536,0.9755449970252812,-0.30117508210241795,0.18496698467060924,0.20163954235613346,-0.698829467408359,0.22278519067913294,-0.7147243809886277,-0.9847180349752307,-0.07181251375004649,-0.9043081216514111,-0.2533122729510069,0.5004319120198488,-0.11990167805925012,-0.624289064668119,-0.4893178017809987,-0.7702725268900394,-0.7920193346217275,0.8412725981324911,-0.4957588640972972,-0.18702593306079507,-0.8613750701770186,-0.8829925963655114,-0.18613749835640192,0.09781285608187318,-0.9359371121972799,0.6390942595899105,0.5764909237623215,-0.7065277053043246,-0.9133424502797425,0.4133478165604174,0.7394379521720111,-0.24184357235208154,0.36076236423105,-0.8962803613394499,-0.19677993701770902,0.12762777507305145,-0.9282110342755914,0.4378637499175966,0.9734237361699343,0.6019819886423647,0.36734691821038723,-0.6172151044011116,0.10483413841575384,-0.19850383047014475,0.6630863221362233,-0.30934205558151007,-0.44358119973912835,0.7528943200595677,-0.46258220029994845,-0.09818343119695783,-0.6650126138702035,0.8391328766010702,0.04277509544044733,0.23188353376463056,-0.42757583875209093,0.35036449832841754,-0.9254769715480506,-0.3549654516391456,0.26792372670024633,0.85503802401945,-0.7136292830109596,-0.06200474314391613,0.3780631138943136,0.9035760811530054,-0.7284297891892493,0.8703455198556185,0.6307496856898069,-0.20284828869625926,-0.765122540295124,-0.7153429761528969,-0.2321762116625905,0.3019287302158773,-0.16792521439492702,0.6814452260732651,-0.5104276216588914,0.6236324706114829,0.5474456725642085,-0.6111962920986116,0.9513402464799583,0.17118846671655774,-0.019595746882259846,-0.8484708028845489,-0.2545657376758754,-0.1278686048462987,0.3017188203521073,0.04599059885367751,-0.3342608204111457,0.607263773214072,-0.9838893641717732,0.5639489530585706,-0.9783228687010705,0.8504500389099121,-0.6890513207763433,-0.7415607925504446,-0.3528466890566051,0.5892443261109293,-0.1692926804535091,-0.8684365591034293,-0.30105737829580903,0.042389442678540945,0.6322001786902547,-0.6139449262991548,0.8949760044924915,0.8850568691268563,0.2903256802819669,-0.5048774085007608,-0.0541291325353086,0.40849244175478816,-0.6479110782966018,0.2518327380530536,-0.38544865045696497,0.7182871750555933,0.15066193882375956,0.3295692289248109,-0.6832269481383264,-0.7326746908947825,-0.27151414519175887,0.9574656686745584,0.3703239941969514,0.5557505753822625,0.217875967733562,0.8159897727891803,-0.1890897057019174,-0.5715284920297563,0.7399825504980981,0.9503148556686938,-0.8608166482299566,-0.46345874201506376,0.906155398581177,0.5611344343051314,-0.7545485896989703,-0.8060093196108937,0.8193632462061942,0.4788522832095623,-0.3557117534801364,-0.7782869855873287,-0.27430561697110534,0.2719053248874843,-0.9007451068609953,0.06624446762725711,-0.8122958489693701,-0.5896686972118914,-0.7752818125300109,0.418907830491662,0.5443721110932529,-0.5605577621608973,0.4630764243192971,0.8800873830914497,-0.20405942713841796,-0.4281221148557961,0.5505184619687498,0.47863935166969895,0.15891808597370982,0.9596411292441189,-0.0841364380903542,0.6048211776651442,-0.37684988183900714,0.7964243516325951,0.09247306687757373,0.5835940898396075,0.9569374350830913,0.9586548516526818,0.4715111651457846,0.3399862162768841,0.2970051490701735,0.7060147831216455,-0.8028075979091227,0.9136421675793827,-0.09455656632781029,0.9627762120217085,-0.8340671584010124,-0.8893370716832578,0.5088733406737447,0.7065718327648938,0.9828197224996984,0.1453052395954728,0.012608836870640516,0.18187631759792566,-0.024944165721535683,0.9074048497714102,0.786035155877471,0.9155721003189683,0.11825083009898663,0.7461192673072219,0.35986335203051567,0.641321430914104,0.9284763964824378,0.07496224157512188,0.4442009120248258,0.9100084179081023,0.5233299806714058,-0.16113409353420138,-0.6038058330304921,-0.8155432809144258,0.6490014498122036,-0.8214517110027373,-0.049934562761336565,-0.4089771434664726,0.21605935506522655,0.9052824075333774,-0.33650756208226085,0.2831364334560931,0.09733872581273317,0.5185781354084611,-0.9641340649686754,0.25108402548357844,-0.14090210478752851,-0.5943848397582769,0.18875830760225654,0.09205907583236694,0.5190813005901873,-0.7350429925136268,-0.3655214197933674,0.40142220677807927,0.21048566605895758,0.9854900524951518,0.2609743815846741,0.5423139901831746,-0.30193401919677854,0.216678898781538,0.4388174912892282,-0.04496464831754565,-0.2229138263501227,-0.38815952418372035,-0.681374425534159,-0.07254917128011584,-0.6489628911949694,-0.31614518351852894,-0.6941609838977456,0.012325349729508162,0.9499280299060047,-0.09029646124690771,-0.1589697739109397,-0.07940761744976044,-0.04724021069705486,0.2861394635401666,0.7317616469226778,0.3536307876929641,-0.36520043620839715,0.362489637453109,-0.6461587804369628,-0.13433765387162566,0.964881360065192,-0.01691973116248846,-0.22715526958927512,0.9295060196891427,-0.9102754024788737,-0.23050600476562977,0.23264479963108897,-0.29047293215990067,-0.025844473857432604,0.003723680507391691,0.04472810495644808,0.2248244951479137,0.4646428977139294,0.009069646708667278,0.7529160175472498,0.6030533905141056,0.2676025088876486,0.2303320374339819,-0.090101876296103,0.6160574080422521,-0.30267268046736717,0.8149287737905979,0.7865756582468748,0.38758710073307157,-0.3472958100028336,0.3019250729121268,-0.5660561555996537,-0.1266088648699224,0.554744855966419,0.38497365452349186,-0.6928675239905715,0.3994840136729181,0.7134371362626553,-0.6620236900635064,0.9851673659868538,-0.7058422290720046,-0.9812509180046618,-0.39235620480030775,0.05791737139225006,-0.6569203734397888,-0.8992335358634591,0.8901721048168838,0.41552427550777793,-0.6130852261558175,0.2308262102305889,0.12869634246453643,0.04938321840018034,-0.5095937973819673,-0.34075673995539546,0.14693401707336307,0.4210381396114826,-0.230408338829875,-0.1094040097668767,0.44556706584990025,0.5160014862194657,-0.8780801920220256,0.767732857260853,0.24950042087584734,-0.7696872688829899,0.3556499653495848,-0.04681455250829458,0.07946454547345638,-0.8053278275765479,-0.8119292361661792,-0.5071611180901527,-0.11708724778145552,0.739048782736063,-0.6130860517732799,0.37237265380099416,0.16111828992143273,-0.2744266865774989,-0.5979544455185533,-0.25710354559123516,0.010294817388057709,-0.6687541157007217,-0.5791081497445703,0.33335914835333824,0.7948614116758108,-0.5483938292600214,0.2599969217553735,0.13164655771106482,-0.532477811910212,-0.23642486287280917,0.7436674535274506,0.4904334512539208,0.492614415474236,-0.9620980895124376,-0.8471842836588621,-0.548170214984566,-0.40668621798977256,-0.10292626824229956,0.9358597379177809,-0.1512789656408131,0.39394029369577765,0.3900087405927479,-0.7451689597219229,-0.48941609216853976,0.10724702011793852,0.8644933742471039,-0.6852624672465026,0.8221264239400625,0.6962216328829527,0.7105784052982926,-0.7911100056953728,0.5208480111323297,-0.8398913228884339,0.9242136320099235,-0.10724916588515043,0.9535780092701316,0.20888471277430654,0.6762583749368787,0.43913286458700895,-0.7081340993754566,0.32225043699145317,-0.4620120646432042,0.6694122292101383,-0.8236770713701844,0.03751588286831975,0.2799477386288345,-0.5590493101626635,-0.018496503122150898,-0.4758207858540118,-0.9190188208594918,-0.2500700899399817,-0.25445511704310775,-0.981756360270083,0.7690222728997469,-0.820518490858376,-0.7838000543415546,-0.7298936299048364,0.09024220751598477,0.8335422817617655,0.1991607709787786,0.08845145022496581,-0.6601901105605066,-0.8561226748861372,0.4819743330590427,0.021649612579494715,0.2608578922227025,-0.40275355987250805,0.2846673238091171,-0.6515857726335526,0.5146778989583254,0.4439034527167678,-0.6316742058843374,-0.25175668532028794,-0.0752405934035778,0.8564176256768405,-0.8898835810832679,0.4773389627225697,-0.8613306623883545,-0.6986211556941271,-0.9211585624143481,-0.2429294539615512,-0.39936615293845534,0.31670701317489147,-0.2550376206636429,-0.35102584958076477,-0.5706172096543014,-0.30019274121150374,-0.5590927805751562,0.07547957403585315,0.548624464776367,0.620814957190305,0.23613800015300512,-0.3148462329991162,-0.7623488353565335,0.19560070894658566,0.6305906656198204,0.9640438812784851,0.7293978948146105,-0.2512433407828212,-0.0003841337747871876,0.0016616852954030037,-0.7438541762530804,0.29501775885000825,-0.3244870286434889,0.9912756788544357,0.9370599039830267,0.142729377374053,0.799095700494945,0.10455293580889702,-0.004983578342944384,0.33144605718553066,-0.8786076777614653,-0.7512248228304088,0.7465408337302506,0.5919803460128605,0.8516278206370771,0.8592268023639917,-0.4521628185175359,-0.3998986119404435,0.0018491675145924091,-0.9205109192989767,-0.4092954429797828,0.2352960561402142,0.8344165924936533,0.011652766726911068,0.5569492410868406,0.09686995204538107,0.46799236815422773,0.9399420549161732,-0.7778247250244021,0.8413826441392303,-0.17739022336900234,-0.17683235369622707,0.7626459244638681,-0.877689475659281,-0.15154814068228006,0.35556365828961134,0.18577696662396193,0.4088352546095848,0.28803259367123246,0.7191321332938969,-0.7209149254485965,0.23214609967544675,0.8340390156954527,0.3942158971913159,0.9471995877102017,-0.04885832732543349,-0.2980957911349833,0.7963078212924302,-0.10633893823251128,0.5652948734350502,-0.41657524136826396,0.7213183678686619,0.5352970622479916,0.20364017179235816,0.45342348236590624,0.640970291569829,0.1551495841704309,0.07427336974069476,-0.7218795977532864,0.21857299329712987,0.63682766770944,0.8440613611601293,0.17009894968941808,0.349369830917567,0.9562643100507557,0.10128690069541335,0.0563080464489758,0.737201411742717,-0.9938256284222007,0.6239300738088787,-0.4306431720033288,0.4268111218698323,0.6248654015362263,0.19104512594640255,-0.3616914851590991,0.23736933339387178,0.955586499068886,-0.4270115406252444,-0.7365086977370083,-0.6033771065995097,-0.21503992658108473,0.9979395014233887,0.12615540763363242,-0.16638318914920092,-0.8532446948811412,-0.8113731816411018,-0.19664317602291703,-0.12975778663530946,-0.4791808142326772,0.6757600978016853,0.16069242917001247,-0.796962225344032,0.7193682249635458,0.14885659655556083,0.6271677459590137,-0.5514617864973843,-0.7879730202257633,0.8575076810084283,0.16336444206535816,-0.6817878107540309,0.03486402938142419,-0.06800162047147751,-0.1514350431971252,-0.7194218849763274,-0.016970918979495764,0.24979365384206176,0.8007286572828889,0.2480912273749709,0.29358057491481304,0.4142510346136987,-0.0391519283875823,0.26127476291731,-0.9259234080091119,0.4781058509834111,0.6389219453558326,-0.2449192637577653,-0.7399890962988138,0.33936207834631205,0.05955402413383126,-0.5682366420514882,0.43854726012796164,-0.17136798985302448,-0.1632441389374435,0.36378834303468466,0.9562964458018541,-0.10075518814846873,-0.908045360352844,-0.017521432135254145,0.2314073103480041,-0.36497976863756776,-0.4944236627779901,0.9726026584394276,0.8567756065167487,0.8464156831614673,0.7565905167721212,-0.4762801402248442,-0.6243514539673924,0.2994473362341523,0.6946249925531447,0.692396491765976,-0.3466303604654968,-0.2871862626634538,0.6375783728435636,-0.0955107999034226,0.4310101652517915,0.894548371899873,0.6610543699935079,0.17171836597844958,0.4216287052258849,-0.6573677039705217,0.144234755076468,-0.2114780959673226,-0.37310908269137144,0.05554136959835887,0.0693093785084784,-0.03140416834503412,0.6630294425413013,0.5090886619873345,0.19547991082072258,-0.4469063584692776,0.2506742822006345,-0.3752200626768172,0.9718670230358839,-0.9678199235349894,-0.08378469059243798,0.3574230535887182,0.12792401481419802,0.977876203134656,0.8084493586793542,0.7783077354542911,-0.44421367393806577,0.19119523651897907,-0.9395345775410533,-0.23396833520382643,0.3918668949045241,0.32768245972692966,-0.39902219409123063,0.18190036481246352,0.469754193443805,-0.05844822432845831,-0.5706591284833848,-0.3273977544158697,-0.3544237678870559,-0.4529181416146457,0.536983784288168,0.6779237445443869,0.042950218077749014,0.13558885687962174,0.1427053832449019,-0.4148195879533887,-0.8888972559943795,-0.3752662995830178,-0.054560859221965075,0.33925422700122,-0.4004569579847157,0.93391337338835,0.43462130101397634,-0.9429024932906032,-0.027870007790625095,-0.4709416781552136,-0.4341060370206833,0.16416518250480294,-0.8026574770919979,0.8308407245203853,-0.15679406095296144,-0.4471697872504592,-0.8901323801837862,0.7448729611933231,-0.3658645865507424,0.03404886508360505,-0.1422699261456728,0.33989094011485577,-0.12747143814340234,0.6636541299521923,0.7617744500748813,0.7163038277067244,0.16780284140259027,-0.29520281637087464,-0.0727101475931704,-0.20504983281716704,0.3010222250595689,-0.4403246697038412,0.7215467821806669,-0.7596226707100868,0.6877537374384701,-0.17156915087252855,-0.9058641656301916,0.94886664301157,-0.19736998807638884,-0.18071295460686088,0.6656873864121735,0.8096352047286928,-0.03127120574936271,-0.8936980287544429,0.7007355778478086,-0.816573963034898,0.6844682777300477,0.5564863919280469,0.002390196081250906,-0.44784265011548996,-0.9042812907136977,-0.31117528630420566,-0.2955899443477392,0.21348892943933606,-0.9001329452730715,-0.8595552491024137,0.5521316844969988,0.9174200752750039,-0.06505913939327002,0.5237152464687824,0.7855480653233826,0.4235665090382099,0.5227125906385481,0.05804811045527458,-0.8711032485589385,0.9895918816328049,-0.098575159907341,0.44308496732264757,0.5748874982818961,0.7596214488148689,-0.5157729974016547,-0.857227121014148,0.651106832548976,0.2274403376504779,-0.06242617731913924,-0.45683900779113173,-0.658241166267544,-0.19338354002684355,0.7246951181441545,0.16521428804844618,-0.8805767991580069,0.18069428019225597,0.6896768440492451,0.6589743210934103,0.9198677162639797,0.9448500005528331,-0.3517243764363229,-0.2769307070411742,-0.9553847163915634,-0.35943054175004363,0.8111184760928154,-0.20835142582654953,-0.08371004136279225,0.1621703365817666,-0.7759231557138264,0.8158322176896036,-0.08803458185866475,-0.02931583160534501,-0.957309149671346,-0.5775525360368192,-0.4665647489018738,0.18101328471675515,0.3326893160119653,-0.21721975645050406,-0.723448121920228,-0.24691041558980942,-0.5491282194852829,0.7474952070042491,-0.5673695197328925,-0.1494396491907537,-0.4749191156588495,0.20416773902252316,0.9458600520156324,-0.2969955587759614,-0.18683440517634153,0.22093509510159492,0.15088447323068976,-0.4894316648133099,-0.5341392471455038,0.13174398196861148,0.6462975442409515,0.5560666960664093,0.37364955339580774,-0.4329316848888993,0.571072299964726,0.1822543041780591,-0.11948954360559583,0.35908834636211395,0.9529701820574701,-0.7069243742153049,0.12886248994618654,0.22099399287253618,-0.3567931461147964,-0.868295410182327,-0.274805411696434,0.528287566266954,0.33086554147303104,0.3241229532286525,-0.5663651637732983,0.959106263704598,0.1835836977697909,-0.7037471071816981,0.225936574395746,0.6187114575877786,-0.6966735948808491,-0.35096014058217406,0.12077257921919227,-0.017352211754769087,0.31899383617565036,0.2890098453499377,0.9137487597763538,0.32328496081754565,0.28953817393630743,-0.41222761990502477,0.3042284306138754,-0.8704828987829387,-0.16702265944331884,0.36922338837757707,-0.11678830860182643,-0.06282164482399821,0.9074290581047535,0.0523100420832634,0.13610035553574562,0.9443107382394373,0.9090641695074737,-0.3003695234656334,0.2708442099392414,0.49152010725811124,-0.4794626305811107,0.2914178124628961,-0.8502983315847814,-0.3238652911968529,-0.368808810133487,-0.5923580154776573,0.0011113709770143032,-0.7708289232105017,0.8682101271115243,0.10161834675818682,0.2063004649244249,0.5863337889313698,-0.777072751428932,0.4787277579307556,-0.1410927027463913,0.9872355558909476,-0.2775750905275345,0.18655974511057138,0.21215605130419135,0.12496522022411227,0.33444758085533977,-0.08167521096765995,0.44932632939890027,-0.02399325929582119,-0.9602313255891204,0.3763247188180685,-0.5723293810151517,0.6210962408222258,0.7111638933420181,0.6198459942825139,-0.9950230675749481,0.8546746210195124,-0.21714947139844298,0.6117255226708949,0.5619270061142743,-0.7409145678393543,-0.29704964393749833,0.02227584272623062,-0.1952064437791705,-0.48960322700440884,-0.34954632027074695,0.21030037989839911,-0.40227804984897375,-0.729004624299705,0.9751634113490582,0.19877055240795016,0.9060475272126496,-0.026923321653157473,0.3834794871509075,0.676768537145108,0.9528706166893244,-0.2595231900922954,-0.9755218741483986,0.5256017399951816,0.22588722873479128,0.40200185403227806,-0.38930719904601574,-0.09739079792052507,0.2641161344945431,0.6349584814161062,-0.19934541918337345,-0.6114975260570645,-0.1023890757933259,0.6866965885274112,-0.6851080232299864,0.4309113509953022,-0.3176532257348299,0.557239965070039,-0.17322432529181242,-0.3009839663282037,0.35866594361141324,0.44102613767609,0.9676890503615141,-0.2597324000671506,0.6759597905911505,-0.9618669375777245,-0.42339153913781047,-0.7912777378223836,0.9728322685696185,0.289507320150733,0.745538177434355,0.32431249134242535,0.20802640728652477,0.4724618257023394,-0.5925630792044103,0.7505094627849758,0.7532937037758529,0.46171904262155294,-0.22179939737543464,-0.44285778049379587,-0.8476716629229486,-0.5927893365733325,-0.23870559874922037,0.2578126797452569,0.6841400968842208,-0.19068869249895215,-0.2041859533637762,-0.8153356555849314,-0.7507831850089133,0.4941464699804783,0.5737760746851563,-0.9993806751444936,0.32398235611617565,0.41852642223238945,0.07073913887143135,-0.527336286380887,-0.0613525272347033,0.4732954162172973,-0.8600297011435032,0.32707279175519943,0.37276921002194285,-0.613528098911047,-0.2970704468898475,0.9160904223099351,0.06240799045190215,0.18648233683779836,-0.24941158760339022,-0.5180861195549369,-0.09294556453824043,0.7730650212615728,0.47390052769333124,-0.8638470754958689,0.6093161087483168,-0.6528335236944258,-0.11375514231622219,-0.5821214457973838,0.7309698197059333,-0.8921340187080204,0.4910532273352146,-0.5022821961902082,-0.8227719482965767,-0.3885509022511542,-0.8135870159603655,0.5372524983249605,-0.2320265118032694,0.6133808470331132,0.4832698586396873,0.27998230792582035,-0.28289751429110765,0.3397149736993015,-0.8094344334676862,0.49844328919425607,0.694419635925442,0.17161217983812094,-0.06053126975893974,-0.6556357522495091,-0.5244162427261472,-0.4311600341461599,-0.23726217215880752,-0.2970742220059037,0.3135582562536001,0.8722986183129251,-0.596752448938787,-0.11377259809523821,0.5568801830522716,-0.8156227245926857,0.8999230684712529,-0.4338412298820913,-0.20537224831059575,0.6784061207436025,-0.8952517719008029,0.9719942817464471,-0.795679884031415,-0.8027031351812184,-0.857785121537745,-0.6616132101044059,-0.4708211892284453,0.04275801032781601,-0.40831023966893554,0.31431496096774936,0.20600312622264028,0.046898686327040195,0.7448082268238068,-0.5625465018674731,-0.13698456529527903,0.7926660859957337,0.5127498828805983,-0.6223572078160942,0.08852228755131364,-0.5416335603222251,0.5111483177170157,0.38081662356853485,-0.40650436701253057,-0.3795492658391595,0.691637852229178,-0.11014792136847973,-0.8462172783911228,0.08231868455186486,0.30996611481532454,0.8704746342264116,0.3529463689774275,-0.1830434836447239,0.4893454532139003,-0.45310758193954825,-0.7166506806388497,0.1907295431010425,0.9226721916347742,-0.0716910706833005,0.2298133186995983,0.3929792041890323,-0.04040186246857047,-0.0705982125364244,0.8025769358500838,-0.6613198951818049,0.06789589207619429,-0.05258195148780942,0.2224566163495183,0.6386940460652113,0.04298914037644863,-0.6047597811557353,0.1929294392466545,0.16211678553372622,-0.30982777616009116,0.9840287864208221,0.25876561272889376,0.8918202109634876,-0.5893147196620703,-0.4509959709830582,-0.025602217763662338,-0.11103830626234412,0.8007823606021702,-0.6830475511960685,-0.464551146607846,0.22284582536667585,-0.05318937124684453,0.13874388812109828,0.08377743512392044,0.029999824706465006,0.1782592674717307,-0.6804665164090693,-0.7795354686677456,0.7964072087779641,0.27842317475005984,0.2512948834337294,0.06367204105481505,-0.02626351173967123,0.026834387332201004,-0.6040119314566255,-0.08640024485066533,0.38076927699148655,-0.08449972234666348,-0.44206101493909955,-0.6844590385444462,0.3221120871603489,-0.6412340537644923,0.9870340465568006,-0.19527289038524032,-0.9117130166850984,-0.189100980758667,0.9678746466524899,-0.32142513804137707,0.8889106772840023,0.001167799811810255,-0.49592839926481247,-0.07278976961970329,0.9688062854111195,-0.7042860421352088,0.40615273313596845,-0.6446713856421411,-0.9649902596138418,-0.49301848467439413,-0.35537611972540617,0.34939461993053555,0.16529618622735143,-0.8477533622644842,0.44793184055015445,0.756402088329196,-0.9203292592428625,-0.6866438551805913,-0.7132667084224522,-0.7537316372618079,-0.7367243599146605,-0.8601324642077088,-0.8536008205264807,-0.5628485297784209,-0.06644450314342976,-0.7471326617524028,-0.3836540845222771,-0.9237267561256886,-0.9162909709848464,0.8780390061438084,-0.35390129359439015,0.7567706317640841,0.4200880001299083,0.3921434264630079,-0.3884358578361571,0.827868820168078,0.43130394211038947,0.024955738335847855,0.7127622650004923,0.8468283251859248,-0.3345830561593175,0.5881197000853717,0.7739367848262191,-0.9142539515160024,0.3465877869166434,-0.9766377341002226,-0.14885874511674047,0.8545465185306966,-0.05595896719023585,-0.6961110937409103,0.5273418412543833,0.7264663917012513,0.9871320896781981,0.837181989569217,-0.32953014876693487,0.9742107531055808,-0.25707396818324924,0.4294371735304594,0.672479834407568,0.23412750428542495,0.34345713863149285,-0.9444277128204703,0.7398412870243192,-0.01639451552182436,0.7245517228730023,-0.6089775445871055,0.047064844984561205,0.1576979155652225,0.9109603678807616,0.08483449323102832,-0.3118952908553183,-0.14530501328408718,0.7465208088979125,-0.16268257284536958,0.7603048929013312,0.5659530092962086,-0.3800866501405835,0.8781495853327215,-0.08477645926177502,0.031934048514813185,0.7103560632094741,0.4079530155286193,0.6169284726493061,0.479318733792752,0.5479071196168661,0.3496783012524247,0.14127940917387605,-0.35529675194993615,0.2797948089428246,0.3180355578660965,-0.19278940232470632,0.1953849163837731,0.9756903471425176,-0.5954977385699749,-0.9700348363257945,-0.28120969515293837,-0.5699966619722545,0.26651744404807687,-0.7266231100074947,0.971768531948328,0.17148049175739288,-0.5287950118072331,0.803402884863317,0.3634151881560683,0.06649600714445114,0.289889900945127,0.9865910136140883,-0.6804362763650715,-0.9172149458900094,-0.24182739481329918,0.5456044166348875,-0.15682267118245363,-0.9607637501321733,-0.7281473949551582,-0.8266970836557448,-0.3459755922667682,-0.2520871376618743,-0.13247446296736598,-0.5459928759373724,-0.9311871347017586,0.45978268841281533,-0.6847502049058676,0.5709752086549997,-0.7108064396306872,-0.5324037093669176,0.9872718933038414,-0.6862260359339416,0.8970631049014628,0.08462251955643296,-0.9774604220874608,-0.12436475278809667,-0.07836464419960976,0.738629374653101,-0.6039953855797648,-0.449095924384892,0.0070769451558589935,-0.18602103739976883,0.9506357125937939,0.10657644458115101,0.618180129211396,0.7298056208528578,-0.30181301292032003,0.896932884119451,0.6577863255515695,0.5848704460076988,0.9516566637903452,0.06909396545961499,-0.5683806780725718,-0.5130579774267972,0.38065520441159606,0.03592650406062603,0.5640485975891352,-0.640911862719804,0.21032193768769503,0.3089219476096332,-0.6925243819132447,-0.23009380279108882,-0.37319819536060095,-0.36343665001913905,0.5946442224085331,0.281006436329335,0.03606010414659977,0.06506503978744149,0.9475905657745898,-0.9278411520645022,0.44689011899754405,0.7024673116393387,0.2193704964593053,-0.5614728135988116,0.707212049048394,0.7764535201713443,-0.3724539685063064,-0.7069824282079935,0.9458962455391884,0.917535025626421,0.2851545186713338,0.10064670909196138,-0.11585838068276644,0.17653972748667002,0.08249943377450109,-0.9844144666567445,0.9748936789110303,0.8708180030807853,0.08502051094546914,0.05861918954178691,0.9104128703474998,-0.03489095903933048,-0.6215114034712315,-0.5911141224205494,0.20430342108011246,-0.6146510243415833,0.8125185538083315,-0.8586376626044512,0.3051156587898731,-0.9807673399336636,0.42366442596539855,0.627201531548053,0.6243543555028737,0.7247264138422906,0.27449597930535674,-0.19764283439144492,-0.5514601557515562,-0.5387654742226005,-0.49055283050984144,-0.24432262312620878,0.7732192697003484,-0.6550063057802618,0.8263221541419625,0.6492330394685268,0.8866852540522814,-0.9245440857484937,-0.19460175232961774,-0.11403104150667787,-0.554045750759542,0.33026862516999245,-0.0035923440009355545,-0.12599874986335635,0.3168151876889169,0.6821789159439504,0.5993209639564157,-0.8771296590566635,-0.9501836891286075,-0.26572426967322826,-0.09363786550238729,0.5097839534282684,0.7023940980434418,-0.7783753559924662,0.5584609084762633,0.3834214089438319,-0.3210536171682179,-0.824427112005651,-0.3348076194524765,-0.03667212789878249,0.23667318560183048,-0.26642589876428246,0.33486924413591623,0.46867178473621607,-0.5246518333442509,0.6699326946400106,0.7576445215381682,0.7539359950460494,0.9073118972592056,-0.15802003350108862,-0.18458353029564023,0.4065052247606218,-0.476170867215842,0.7096387757919729,-0.8944183858111501,-0.6579571110196412,0.8529466181062162,0.6946219918318093,0.17873812606558204,-0.12109377980232239,-0.027071339543908834,-0.016017572954297066,0.5315028056502342,0.2772684879601002,0.3244201778434217,-0.1916401577182114,-0.010198292788118124,-0.19245397066697478,0.6773923304863274,0.18887636857107282,-0.020712156780064106,0.5356312803924084,0.5649275281466544,-0.8802526579238474,0.24683222780004144,0.6559398951940238,-0.864678350277245,0.427046115975827,-0.7273937352001667,0.6098169898614287,0.38333879318088293,0.028518422972410917,-0.10504936752840877,0.4359915559180081,-0.29017245303839445,-0.3722375947982073,-0.0335791977122426,-0.19168893108144403,0.739747695159167,0.21244466491043568,-0.2046186989173293,-0.5669312532991171,0.7141398726962507,-0.6367464917711914,0.008947398513555527,-0.13120075268670917,-0.6335486099123955,0.4792582835070789,-0.7836559945717454,0.6486985529772937,-0.632552579510957,-0.9713223171420395,-0.7887338376604021,0.4221521061845124,0.1934081269428134,0.9265041495673358,0.8875862276181579,-0.7918842937797308,-0.5359658100642264,0.4077826584689319,-0.8125095586292446,-0.025747087318450212,-0.5403432166203856,-0.5637870617210865,-0.13037500716745853,0.2773996377363801,0.854882622603327,0.7387351174838841,0.8057958604767919,-0.7071046051569283,-0.10251873498782516,0.9104352667927742,0.39454332273453474,0.813076383434236,0.6950598740950227,-0.96014763135463,-0.3839885895140469,-0.6473256326280534,0.2055896781384945,-0.7965701692737639,0.6838585608638823,0.08941116090863943,0.16200220631435513,0.5649579395540059,0.9897278184071183,-0.1640085014514625,0.14390192553400993,0.5513379056937993,-0.033607571851462126,0.07330017257481813,0.062404151540249586,0.8383832382969558,0.3824200574308634,0.34556624852120876,0.1895278966985643,-0.809481093659997,0.13869825610890985,-0.4555118139833212,-0.4763194532133639,0.021733087487518787,-0.15348742110654712,0.9845678899437189,0.9952287711203098,-0.5976704289205372,0.6193220037966967,0.4115723161958158,-0.35334987938404083,0.11160103185102344,0.06982397893443704,-0.27700143260881305,-0.08370418893173337,-0.727167687844485,-0.9869281314313412,0.46936670038849115,-0.5454992526210845,0.2394325202330947,0.6595869488082826,-0.2341494164429605,-0.5648039542138577,0.931792801246047,0.5707988017238677,0.22628409042954445,-0.5555402119643986,-0.42059278301894665,-0.5329589266330004,-0.306798595469445,-0.45636581908911467,-0.44760917872190475,0.20297911716625094,-0.9144896902143955,0.11883315443992615,0.8873753729276359,0.04960816213861108,0.7299033589661121,0.7228241669945419,-0.5780869494192302,0.7657746342010796,-0.9574317443184555,0.13288349844515324,0.3435700573027134,0.10778299067169428,-0.5565930483862758,0.011772872414439917,0.41812455747276545,0.2831433489918709,-0.5516278627328575,0.6548404116183519,-0.6176378917880356,-0.7858828417956829,-0.4194310293532908,-0.49180796137079597,0.5361485173925757,0.09445470059290528,0.25795731879770756,-0.9501787712797523,-0.059522812720388174,-0.022438204381614923,-0.5997470389120281,-0.14888939959928393,-0.07025434542447329,0.042938625905662775,-0.09701810637488961,-0.10988797666504979,0.019783041905611753,0.7981397840194404,0.3253831802867353,-0.0004659593105316162,0.46284023160114884,0.34890353213995695,-0.4777174396440387,0.471038980409503,0.9529421315528452,0.609913251362741,0.2112372019328177,0.021971227135509253,0.10369695350527763,0.19014870841056108,0.6898855688050389,0.23267988534644246,0.8043560795485973,-0.14356720121577382,-0.30016329418867826,-0.42107437644153833,0.7021507364697754,0.8847146555781364,0.4119326053187251,-0.004725494422018528,-0.8499265844002366,0.13270703051239252,-0.3704666174016893,0.32444786466658115,-0.2705111214891076,-0.05500140134245157,-0.5330531056970358,0.9109063078649342,-0.27099612820893526,0.5473326863721013,0.37424728041514754,0.5648154383525252,-0.9644432007335126,-0.37463712971657515,0.23061277344822884,0.14862749259918928,-0.7799744610674679,-0.4004367357119918,-0.11792299803346395,-0.9348157458007336,-0.44782524183392525,0.9867997765541077,-0.7019881852902472,0.4993825200945139,-0.44949002657085657,-0.6933679422363639,0.9637254076078534,-0.706440738402307,0.4252696488983929,0.7300623622722924,-0.8767382716760039,0.23158014845103025,0.7616086108610034,-0.09565466130152345,-0.6693227970972657,0.008454224094748497,-0.2909899349324405,-0.30919718090444803,0.4158004689961672,-0.6135476655326784,0.5042270682752132,-0.5797982681542635,-0.3829826479777694,0.25166516518220305,-0.3398711010813713,0.8014961178414524,-0.21014279266819358,-0.5592006929218769,0.07359704654663801,0.007604303304105997,0.7400430017150939,0.5956410029903054,0.43709893990308046,-0.44797715405002236,-0.6580170877277851,-0.2320776479318738,-0.6749063557945192,-0.6880583930760622,-0.2719830386340618,0.9285464356653392,0.37602827651426196,-0.20621307101100683,0.6241010469384491,-0.10882102092728019,-0.27280448842793703,-0.17256467835977674,-0.8008517706766725,-0.25196073623374104,0.5666056107729673,0.8262176224961877,-0.5568621740676463,-0.12831574864685535,-0.9672716711647809,0.057996108662337065,0.6745465686544776,0.06648574024438858,0.7106477287597954,0.9950299938209355,-0.2305452018044889,-0.5479740700684488,-0.32380013121291995,-0.11065551172941923,-0.24400199949741364,0.7997293150983751,0.3322030371055007,-0.9851041501387954,0.7064914014190435,-0.9785468643531203,-0.779167695902288,-0.5734642697498202,-0.5424244934692979,-0.9951547118835151,0.8357420330867171,-0.28301267977803946,0.6199998175725341,0.5108681968413293,-0.2993219355121255,0.6645652032457292,0.12489690678194165,-0.04212897922843695,0.45961132552474737,0.11015354096889496,-0.7357515934854746,0.0048425947315990925,0.04199553374201059,-0.4031405686400831,0.8185551408678293,-0.4433302450925112,-0.16044990438967943,0.09489034488797188,0.8697031335905194,0.9963366659358144,0.9766160533763468,-0.7209663665853441,0.4228215063922107,-0.2765178009867668,0.7352663381025195,-0.6214266554452479,0.2749079205095768,-0.35510349413380027,0.9912859564647079,0.1543823890388012,-0.9944501854479313,0.30112741561606526,0.1656910041347146,0.16939737275242805,0.7008075015619397,-0.6952328542247415,0.8353865905664861,-0.9592923321761191,-0.11586867831647396,0.9973341622389853,0.9044317794032395,0.8423625160939991,-0.046224393881857395,-0.8747167298570275,-0.03179782768711448,-0.8658414436504245,0.4850771832279861,-0.8068834538571537,0.1789384251460433,-0.3497617463581264,-0.2502004150301218,0.6206898218952119,-0.3406874747015536,0.9340023892000318,0.6273705689236522,-0.47532487474381924,0.18234934099018574,0.5806338577531278,0.9434761614538729,0.40489714639261365,0.4026979077607393,-0.2993211792781949,0.5220148833468556,-0.8768766075372696,-0.6525586503557861,0.7201863955706358,0.7784550930373371,-0.16622804990038276,-0.6199809131212533,0.8901113448664546,0.30858216853812337,0.6155256675556302,0.5332941194064915,0.6518461569212377,-0.5316444584168494,-0.3415944389998913,-0.8430134984664619,-0.9376028655096889,0.6962343845516443,-0.2882612659595907,0.5646740552037954,0.42371747829020023,0.9800390428863466,-0.9707737513817847,-0.15666244365274906,-0.6950471941381693,-0.6340874903835356,0.6616135649383068,0.6864053346216679,-0.21027094451710582,0.6657983721233904,0.8699183533899486,0.4556548693217337,-0.3640223117545247,0.059614629950374365,-0.7797870268113911,0.8999544195830822,0.2841640505939722,0.47357306629419327,0.10046917293220758,-0.7069837437011302,-0.32213651947677135,-0.7659382810816169,0.5065478822216392,0.20647139195352793,0.7812474817037582,0.0715376166626811,-0.9544945154339075,-0.35665282467380166,0.7773646065033972,0.04758566804230213,0.3150678719393909,-0.24694774765521288,-0.4542219922877848,-0.12526025669649243,-0.495738057885319,-0.408507835585624,-0.9275935287587345,-0.005102364346385002,-0.059087819419801235,0.9452900015749037,-0.3636570731177926,-0.4595202631317079,0.21772994892671704,0.4568471466191113,-0.47963020065799356,0.910425781738013,-0.9288272215053439,-0.23102488415315747,0.5135979568585753,0.8120805686339736,0.9368858537636697,-0.47987520042806864,-0.30198286520317197,-0.975770937744528,-0.9246783079579473,0.1733033242635429,-0.9544882825575769,-0.052723092027008533,-0.6667072959244251,-0.3972667623311281,0.16589522268623114,-0.464731989428401,0.021386754233390093,-0.7106318320147693,0.052593058440834284,0.08443796308711171,-0.12947616213932633,0.15843089995905757,-0.49040048895403743,-0.136469763237983,0.2397071928717196,0.8994254246354103,0.42995894420892,0.4226334625855088,0.07777927536517382,0.8141657020896673,0.7073663054034114,0.7408232698217034,-0.5372769213281572,-0.44995894003659487,0.576692754868418,0.34771852381527424,0.6746625145897269,0.8141924482770264,0.20280764624476433,-0.7847174587659538,0.922171663492918,0.8995577809400856,0.5116278631612659,0.4252660679630935,-0.5261578406207263,-0.18541359808295965,-0.9051131815649569,-0.9484801106154919,0.9686313471756876,-0.39530058670789003,0.9092361941002309,-0.22925965301692486,-0.8027219944633543,0.002092449925839901,0.8073965515941381,-0.9296543258242309,0.45755456667393446,-0.4648523507639766,-0.8634798121638596,-0.36993675073608756,-0.22032399382442236,-0.3600556771270931,0.13942525768652558,-0.9827861436642706,-0.32537529058754444,-0.6028065639548004,-0.7437414694577456,-0.41837277775630355,-0.6593935848213732,-0.4455193034373224,-0.45030704513192177,0.006071982905268669,0.674194993916899,0.17640689946711063,0.2815103689208627,-0.6748515632934868,-0.8612571652047336,-0.03735709050670266,-0.7161418255418539,-0.5413540489971638,-0.7005959041416645,0.2537498474121094,0.33273105695843697,-0.6792334569618106,-0.8956310078501701,0.48997407872229815,0.5758015550673008,0.17970499955117702,0.38525469275191426,0.11400262685492635,0.3332498944364488,0.12166347401216626,0.7353270994499326,0.8611603043973446,0.5245449892245233,0.14165419340133667,0.11075711902230978,-0.9163934458047152,0.7539724782109261,-0.3143320819362998,0.9369707214646041,-0.914984714705497,-0.443815550301224,0.5555551736615598,0.10530230216681957,0.49498143745586276,-0.5005001951940358,-0.25320747634395957,0.6856783772818744,0.7138300132937729,-0.21048987051472068,-0.8561027101241052,-0.6061660726554692,0.11137330206111073,-0.2998010837472975,-0.41475884430110455,-0.6362827681005001,-0.4025050369091332,0.2991417534649372,-0.4025551690720022,0.762514675501734,-0.5590062765404582,-0.5327285579405725,0.12776361219584942,-0.49728449061512947,-0.5741353575140238,0.79796506697312,0.41495200945064425,-0.6314141014590859,-0.7299650087952614,0.5067519322037697,-0.20772176794707775,0.7092635249719024,0.9796129344031215,-0.33949855295941234,0.5526650696992874,-0.02852719882503152,0.10390833439305425,-0.7389627513475716,-0.526690011844039,-0.38169430661946535,0.28036674531176686,0.16821578983217478,-0.614780608098954,-0.47192283999174833,-0.5569404400885105,-0.953170707449317,-0.7634285679087043,-0.9766602758318186,-0.2656375924125314,0.3543292684480548,-0.4760689614340663,-0.45392926316708326,-0.24410672159865499,-0.610808418598026,0.5185206029564142],"y":[-0.04112824099138379,-0.75069823814556,-0.1303859604522586,-0.7335162572562695,-0.9444417250342667,0.39426361629739404,0.5343167716637254,0.08803751552477479,-0.2971943928860128,0.13858336489647627,-0.9757362054660916,-0.8929222617298365,0.07943732617422938,-0.01495951833203435,-0.5431902161799371,0.8725887793116271,0.4773135846480727,-0.9161124574020505,-0.464949740562588,0.311885055154562,0.8631335604004562,-0.7330799447372556,-0.5927780172787607,-0.0668545332737267,0.6789497276768088,-0.5297111771069467,0.4927239795215428,0.32383938366547227,-0.6790042631328106,0.48288143146783113,0.48521186830475926,-0.23620856879279017,0.9418261717073619,0.2035407442599535,-0.575847792904824,-0.5364932874217629,-0.030427404213696718,0.14628085494041443,0.8012373242527246,0.18699115561321378,-0.060286044143140316,0.1982457204721868,0.8780191405676305,0.1558036762289703,-0.4781592274084687,-0.7645882875658572,0.1113600661046803,0.2824981063604355,-0.5426774397492409,0.3105245088227093,0.24444135185331106,-0.23517264053225517,-0.689709359779954,0.8209516643546522,0.5278437919914722,0.03607616573572159,0.46935594640672207,-0.47896220861002803,0.9499303321354091,-0.5116591057740152,-0.6740283700637519,-0.8136942181736231,-0.9538500537164509,0.8244974748231471,-0.6949369134381413,0.04754680301994085,0.025045399088412523,0.7814006675034761,0.7378242360427976,0.23485736129805446,0.3306111632846296,-0.275668375659734,0.40005312068387866,-0.6610915674827993,-0.3114182436838746,0.2528357137925923,-0.2559600961394608,0.08241541869938374,-0.7594064637087286,0.44614113541319966,0.9752417090348899,-0.18095687869936228,0.9378430433571339,0.7325138379819691,-0.3580467482097447,0.3155959425494075,0.8849167213775218,0.39609953109174967,0.8347924314439297,0.6380469636060297,-0.5234779585152864,-0.25982143403962255,0.540432340465486,-0.240484481677413,0.0385428830049932,-0.469835062045604,0.4149296125397086,0.3118042382411659,-0.4561245352961123,0.76228087535128,0.5920871673151851,-0.016467731446027756,-0.5529895229265094,0.5289996429346502,0.13078776746988297,-0.07587912492454052,-0.27911783661693335,0.5855149948038161,-0.315693368203938,-0.41247100848704576,0.26747819455340505,-0.36407542834058404,-0.3512651277706027,0.8868936789222062,-0.5214954889379442,-0.7496290756389499,0.3278967528603971,-0.19958494044840336,-0.8109144936315715,0.7621437953785062,0.752513614948839,-0.8289181222207844,0.7247826578095555,0.2728141392581165,-0.47079732036218047,0.94092764146626,0.11998041719198227,-0.12272615311667323,0.34110755380243063,-0.5866603115573525,-0.23181057022884488,0.0260679186321795,-0.5671645561233163,0.37753253895789385,-0.02026251284405589,0.6679690973833203,0.620259000454098,-0.9492949140258133,0.4680767497047782,0.9081507525406778,0.9758674530312419,-0.10748923337087035,-0.5759130343794823,0.0273422091268003,0.3101482978090644,0.6325245788320899,-0.0715876161120832,0.5318928910419345,0.5478302920237184,-0.38093993719667196,-0.158431738615036,-0.80232421355322,-0.581056266091764,0.9428373952396214,0.8341268948279321,0.17151366919279099,-0.11616038018837571,-0.5214616721495986,-0.48196801682934165,-0.4920631591230631,-0.3383491476997733,0.4702652865089476,0.10605468275025487,0.3080029161646962,0.40747028682380915,-0.05070823524147272,-0.5222156560048461,-0.6263376101851463,-0.0409027929417789,-0.8578609996475279,0.7939457222819328,0.17333230609074235,0.6408962737768888,0.733151076361537,-0.4241952779702842,0.08683424256742,0.26262119645252824,0.12210673978552222,-0.5372042218223214,-0.6423807526007295,-0.11496952408924699,0.2706460151821375,0.3279631598852575,-0.4969960795715451,0.7229894739575684,-0.5014207647182047,-0.3119853725656867,0.7231779154390097,0.07161691039800644,-0.7304361257702112,-0.44558885553851724,-0.8345170207321644,0.16748989699408412,0.09352954849600792,0.5601011202670634,-0.46488183783367276,0.05307368701323867,0.260939362924546,0.7517228936776519,-0.7149929096922278,-0.6734599112533033,-0.6115643866360188,-0.6845706864260137,-0.8519726805388927,0.1766947479918599,0.8176376614719629,0.8194340383633971,-0.9344733175821602,0.9752233955077827,0.1295837266370654,-0.8910340741276741,-0.28678236389532685,-0.5346148801036179,0.0788508988916874,0.7793807559646666,0.7784806634299457,-0.6272804387845099,-0.1021418459713459,0.6133757485076785,0.8053020974621177,0.9380868650041521,0.6545463842339814,-0.6901520704850554,-0.38187051797285676,-0.8280022582039237,-0.4834834560751915,-0.9496971792541444,0.9009935539215803,0.48506269603967667,-0.1310090976767242,-0.21380414767190814,-0.6927497256547213,0.15336705278605223,0.9653461491689086,-0.48473514895886183,0.016525008250027895,-0.9169601472094655,0.5039056241512299,0.721677484922111,-0.21758330706506968,0.06191418459638953,0.601490689907223,0.9518946367315948,-0.2180158980190754,0.8730853879824281,-0.6757846605032682,0.28546361811459064,-0.30108415288850665,0.4592336886562407,-0.3795343851670623,-0.21251121116802096,-0.3333696164190769,0.7242291928268969,0.1588377868756652,-0.598305941093713,0.4087894316762686,-0.28230617055669427,-0.8366433745250106,0.5737684243358672,-0.26746574603021145,-0.7584236590191722,0.3489143797196448,-0.34957566019147635,0.886230290401727,0.9579200865700841,-0.04452625848352909,0.6658928259275854,-0.5517206760123372,0.02485443279147148,-0.8806470008566976,-0.8639629920944571,0.28330015018582344,0.5691581275314093,0.7847937219776213,-0.09047499485313892,-0.06707894103601575,0.05155108775943518,-0.24588722549378872,0.21334642078727484,0.2735671387054026,0.0051517547108232975,-0.7820189320482314,-0.15034156246110797,-0.32185203209519386,-0.5655830516479909,0.18711463268846273,0.1480135158635676,0.15447046514600515,-0.4854784123599529,0.07911953283473849,-0.3497608108446002,-0.25391809130087495,0.024826338049024343,0.33891289168968797,-0.4241824592463672,-0.6712309061549604,-0.6821014140732586,0.42185865389183164,0.6771237840875983,-0.350840300321579,-0.15826942445710301,0.19964942941442132,0.07109556952491403,0.2916901116259396,-0.13830307871103287,-0.354530977550894,-0.2624680921435356,0.5215335534885526,0.6355258952826262,-0.9628527909517288,0.4869680553674698,-0.40656291181221604,0.282588061876595,-0.12087969668209553,0.6574549479410052,-0.9670627843588591,0.7601794023066759,-0.174952348228544,0.7605564245022833,-0.5161194470711052,0.24571600928902626,0.6259241099469364,-0.6248640022240579,0.14362029172480106,0.4099950473755598,0.22898820880800486,-0.20815587183460593,0.8416765751317143,0.6944835474714637,0.4026592606678605,-0.45789797604084015,-0.8624825049191713,0.5934881437569857,-0.9678742387332022,0.033628803212195635,-0.39300600020214915,-0.4246975975111127,0.6168434056453407,0.5622237748466432,-0.24599694274365902,0.5367317516356707,-0.4615921974182129,-0.7360180127434433,0.5931459642015398,0.689986671321094,-0.17120597139000893,0.14616079349070787,0.08794228732585907,0.8794568860903382,0.9297027406282723,-0.45310198701918125,-0.10469721490517259,0.7017553234472871,-0.7410178366117179,-0.9095387659035623,0.8068996723741293,-0.24578955816105008,-0.6362204081378877,-0.9779192712157965,0.9233006592839956,0.8282767497003078,0.2630407060496509,0.9142271215096116,0.5078702312894166,-0.947346115950495,0.6594912298023701,0.3273924272507429,0.9334385120309889,-0.007032396737486124,-0.7540499763563275,-0.8560394472442567,0.33630678290501237,-0.23692174069583416,0.5060554086230695,0.3689820468425751,0.9715814129449427,-0.2917617904022336,0.7200956307351589,-0.4875646741129458,-0.31001674570143223,-0.15056413086131215,-0.7943724300712347,-0.701810518745333,0.5489209732040763,-0.9435721300542355,-0.8395220600068569,-0.40551168378442526,-0.1396356034092605,0.42565833684057,-0.8880896610207856,-0.09227872639894485,-0.44406324438750744,-0.4828634415753186,-0.4663263615220785,-0.14117198530584574,-0.36424456909298897,-0.6352076912298799,0.8514238866046071,-0.34729371732100844,-0.7727620908990502,-0.346504423301667,-0.33311753487214446,-0.9246493233367801,-0.3107639201916754,0.19929928006604314,-0.9073891201987863,0.48178885225206614,0.9795242925174534,0.9226304446347058,-0.37519184220582247,-0.032239253632724285,-0.2106487941928208,0.8089355216361582,0.14686633180826902,-0.025946383830159903,0.6323932097293437,-0.6965537923388183,0.9780675689689815,0.6988391559571028,0.940950964577496,-0.9778985781595111,-0.6361331231892109,0.14532426092773676,0.07566853752359748,-0.7741134180687368,-0.17374249966815114,-0.33118719793856144,0.499063731636852,-0.8288239012472332,-0.8090670541860163,0.5147436135448515,0.09322229819372296,-0.5814347178675234,0.8592765284702182,-0.17213426483795047,-0.8862471412867308,0.9016041760332882,0.7402192954905331,-0.3815335677936673,-0.5042815217748284,0.47058405075222254,-0.2927979757077992,0.9608635352924466,-0.2348612337373197,-0.13928214088082314,-0.4401994631625712,-0.7725134179927409,0.7846931866370142,0.9350100229494274,0.6049754628911614,0.5425041462294757,0.8732051579281688,0.7039253138937056,-0.7964587723836303,0.8765772935003042,0.18429398443549871,0.6473148721270263,-0.6460962924174964,0.2658432670868933,0.1191474529914558,0.5696693318895996,0.36473493557423353,-0.6968120113015175,0.5772152659483254,-0.07763265958055854,-0.9807387799955904,-0.6302199568599463,-0.5447706747800112,-0.1261617038398981,0.333854409866035,-0.8017309824936092,0.49517069617286325,-0.2302062544040382,0.37372638285160065,0.7410730738192797,0.8863315521739423,0.8032383713871241,-0.4065739857032895,-0.35874105244874954,-0.5608038613572717,0.968723226338625,0.7901858133263886,-0.41764636943116784,-0.42832008795812726,0.660733331926167,0.15086224349215627,0.6181137417443097,-0.29690032498911023,-0.9590878179296851,-0.3195087178610265,0.139560186304152,-0.9251813278533518,0.339944657869637,-0.14199428539723158,0.3797530382871628,-0.9564728480763733,-0.7437039171345532,0.029376438353210688,-0.3769514546729624,0.6861730967648327,0.3529014545492828,0.906629306729883,0.32621875777840614,0.6924320361576974,-0.9951439360156655,0.7199553623795509,-0.22809366323053837,-0.3866821094416082,-0.8722651600837708,0.8098533572629094,-0.1681824284605682,0.05760312033817172,-0.5814942149445415,-0.5929469368420541,-0.3148389561101794,-0.39117383444681764,0.9338569086976349,0.18264558026567101,-0.4151141601614654,-0.405686036683619,0.762364290188998,-0.21465001022443175,-0.8674726630561054,0.647101255133748,0.10048268409445882,-0.8613409656099975,0.7483358248136938,0.4432684970088303,0.33196194283664227,-0.24518141942098737,-0.2541741789318621,-0.7727358504198492,-0.02647105511277914,0.5786493355408311,0.5797299179248512,0.09875917760655284,-0.8786781230010092,0.4226547568105161,-0.3959351950325072,-0.014741881284862757,-0.7554793804883957,0.26566177885979414,0.9627920323982835,0.5941123398952186,-0.23734890995547175,0.9169499580748379,-0.05845773499459028,0.2517663212493062,-0.002481253817677498,0.019987259525805712,0.8276240988634527,-0.5611894251778722,-0.5263170646503568,0.23164855502545834,0.5769777819514275,-0.2831324846483767,-0.5647821044549346,-0.41878904961049557,0.5201218640431762,0.030462138820439577,-0.436226018704474,-0.6128994841128588,-0.8357785190455616,-0.025310232769697905,-0.48650491004809737,-0.11804078565910459,0.9905038573779166,0.5444663180969656,0.5872922344133258,0.7362925610505044,-0.5329595748335123,-0.3817500537261367,-0.4644545349292457,0.27847318025305867,-0.6059506251476705,0.41810403810814023,-0.013211030513048172,0.310365105047822,-0.7493841727264225,0.31758982175961137,-0.563210200984031,0.4937468580901623,-0.24966653855517507,0.35258952621370554,-0.00202682102099061,-0.8004675735719502,-0.030018572695553303,0.541689190082252,0.30071239126846194,0.09647005051374435,0.13109059166163206,-0.7292241198010743,-0.16991588845849037,-0.9726532041095197,-0.16910267109051347,0.3520382074639201,-0.9155138893984258,-0.2967816134914756,-0.05849367892369628,0.9536366574466228,-0.657690713647753,-0.38286730041727424,0.8137719226069748,-0.12586578587070107,0.8293998949229717,0.757726417388767,-0.6318031242117286,-0.5215940922498703,-0.10785502707585692,-0.6971799889579415,-0.16138621140271425,-0.27752214204519987,0.3253176393918693,-0.009099888149648905,0.5067033744417131,0.5255149486474693,0.8043639240786433,-0.26473531359806657,-0.06018205685541034,-0.1127488436177373,0.3272727751173079,0.876146774739027,0.8335986225865781,-0.3237331695854664,0.8609965881332755,-0.002253930550068617,-0.058038447983562946,0.4068718273192644,0.9152798638679087,-0.7187699638307095,0.7734555057249963,-0.29502356331795454,0.45957872411236167,0.5534192509949207,-0.7865673392079771,-0.4495653975754976,-0.9055540934205055,-0.7392458985559642,-0.43945055827498436,0.626086616422981,-0.5983579494059086,0.9274335168302059,0.2541182371787727,-0.8368492694571614,-0.6277417279779911,0.3162794657982886,-0.3322533159516752,0.8226907416246831,0.14044889155775309,-0.044989756774157286,-0.751997516490519,-0.225968599319458,-0.6019536149688065,-0.2951501477509737,0.8366731298156083,0.010442778468132019,0.20585024962201715,-0.4444595514796674,0.18861160520464182,0.30587520357221365,-0.10914040636271238,0.33537517907097936,-0.5519688818603754,-0.15502167819067836,-0.16813797457143664,0.6542794038541615,-0.17486476944759488,0.2958127884194255,0.9539033658802509,0.5310007627122104,0.6297901985235512,-0.0488577401265502,-0.21827381569892168,-0.4791254880838096,-0.339114757720381,-0.4261474162340164,0.6543296799063683,0.8478191662579775,-0.23980692215263844,0.7918042172677815,0.6905523426830769,-0.20219666697084904,0.9226723536849022,0.465686802752316,0.8032138794660568,0.3454348435625434,0.9196981801651418,-0.9837030246853828,-0.11247192835435271,0.6097929058596492,-0.06971837021410465,-0.8987482478842139,0.17728576296940446,-0.5370333069004118,0.6652633533813059,0.6386810499243438,0.457752154674381,-0.864670586772263,0.08914590068161488,-0.6144396779127419,0.1314706029370427,-0.8312987145036459,-0.05594480223953724,-0.4319443618878722,0.06129984278231859,-0.20595864858478308,0.7520354366861284,-0.36973901372402906,-0.28879999509081244,0.8473767312243581,0.0057015749625861645,0.025520383846014738,0.6371814971789718,-0.7933224365115166,0.3910635537467897,-0.7881532683968544,0.7129208859987557,0.944671702105552,0.7546492796391249,-0.7133175521157682,-0.2617437615990639,0.8449325584806502,-0.7911241380497813,-0.09580295439809561,-0.22655664244666696,-0.13052348932251334,0.5629077828489244,0.9140311512164772,-0.3055089293047786,0.7642497541382909,-0.8730410197749734,-0.6314424513839185,0.6091988165862858,-3.705732524394989e-05,0.8586963037960231,0.9026876706629992,0.8111228449270129,0.5748316901735961,-0.953057071659714,-0.8545050104148686,0.0821720864623785,0.9138582404702902,-0.06709699472412467,0.7829590491019189,-0.12038733856752515,-0.7302642576396465,-0.7465769285336137,0.08494936395436525,-0.5541305947117507,-0.935795093420893,-0.9153536329977214,0.04094080999493599,-0.23662331560626626,0.7059163679368794,-0.8803266766481102,-0.019018287770450115,-0.3466007234528661,-0.9739257413893938,-0.28401040891185403,-0.48773837834596634,0.35263667115941644,-0.05511979665607214,0.30036374274641275,0.0522254821844399,0.600285638589412,0.8111458825878799,-0.02410585293546319,0.516904532443732,-0.7701134774833918,0.17898333119228482,0.2147108530625701,0.35089033376425505,-0.591652391012758,-0.9461352452635765,-0.8011839068494737,-0.8585303612053394,-0.17895756009966135,0.3735838495194912,0.5774764367379248,0.36384510714560747,-0.37665853137150407,0.8693670039065182,0.09860230144113302,0.973827647510916,-0.38028339436277747,0.20862875785678625,0.09889818588271737,-0.5447842683643103,0.721738331951201,0.7040223977528512,-0.2616511285305023,0.23618042329326272,-0.5469991629943252,-0.25248917005956173,0.6609617928043008,-0.5978756574913859,-0.6588250692002475,0.2373447297140956,0.5865591284818947,-0.14994494756683707,-0.41500849835574627,0.9103725939057767,0.5367860668338835,-0.9989197505638003,-0.7664331295527518,0.9958088775165379,-0.5153703102841973,0.7074493779800832,0.4268892165273428,0.0632931119762361,-0.5014289184473455,0.3577909739688039,0.21492301719263196,0.8350544101558626,0.9911296903155744,0.8682826915755868,0.2727755168452859,-0.7383879409171641,-0.5648825145326555,0.9783990425057709,0.7691448628902435,-0.5743871107697487,-0.16130916960537434,-0.8387034926563501,0.1652299975976348,0.4955019853077829,-0.04251687880605459,-0.33373625483363867,-0.8674822584725916,-0.7740473672747612,0.5131037821993232,-0.09711034968495369,0.6924187638796866,0.912817504722625,-0.22105370834469795,0.4373001893982291,0.03387029282748699,-0.753305041231215,-0.29910667380318046,0.9037489276379347,0.8140719318762422,0.9523183899000287,0.9514365908689797,-0.14699010690674186,0.7004360584542155,0.08513078652322292,0.4977576625533402,0.4443588126450777,0.0955052743665874,0.9899593493901193,0.787657702807337,0.79083081940189,-0.8091303328983486,-0.4325041281990707,0.9028332117013633,0.5318448357284069,-0.5702345315366983,-0.6002188590355217,-0.09037421410903335,0.6205337001010776,-0.018518127035349607,0.02425737725570798,-0.5015343809500337,-0.5181871955282986,0.2138573033735156,0.35673129511997104,0.12698771664872766,-0.5813110750168562,-0.733673706650734,0.5091546261683106,0.34228156227618456,-0.8496246761642396,0.1387036070227623,-0.6156291901133955,0.15677090175449848,0.027924031484872103,-0.65426573343575,-0.4212864744476974,-0.27148873498663306,0.730646944604814,-0.3449406763538718,-0.02704597171396017,-0.8801866280846298,0.9146337937563658,0.8868333264254034,0.8881721748039126,0.02812712313607335,0.8627168396487832,-0.07141381176188588,-0.5101132029667497,-0.1159217618405819,-0.9020545519888401,0.06079012621194124,0.6137489341199398,0.9729900406673551,-0.7872712700627744,-0.9417183906771243,0.4022784000262618,0.7450410877354443,0.8151641343720257,-0.6473001996055245,0.09679533215239644,-0.5533864749595523,-0.3937394004315138,-0.1415060618892312,-0.9080263124778867,0.8791780392639339,-0.47853672318160534,0.8381625115871429,0.4752333154901862,-0.8367758998647332,-0.23284904100000858,0.0073413546197116375,-0.3856246853247285,0.9896230162121356,0.052849866915494204,0.31982919527217746,-0.6959025789983571,-0.9289019191637635,-0.45055410359054804,0.9381114803254604,-0.008479033131152391,0.907104164827615,0.6996847591362894,-0.48262869054451585,0.1464353925548494,-0.7069751950912178,-0.737780449911952,0.1330740563571453,0.023253149818629026,-0.26802259823307395,-0.3193435352295637,0.14698135992512107,0.5799346040003002,-0.6391703886911273,-0.34408110985532403,-0.709043100476265,0.7565000490285456,0.9194631180725992,0.4123394461348653,0.8008098378777504,-0.7338393339887261,0.9216063665226102,-0.5337887820787728,0.6210504728369415,-0.20547026535496116,-0.8203255003318191,0.6471887999214232,0.8245667708106339,-0.7031572218984365,0.5833708974532783,-0.019222387578338385,-0.2156476890668273,0.9256334193050861,-0.5280935191549361,-0.5861514820717275,0.7965033804066479,0.3632492939941585,-0.30389503529295325,0.41449033934623003,-0.09435163391754031,-0.9664928033016622,0.18868641089648008,0.2558142961934209,-0.9235424725338817,0.6529635936021805,0.6268730470910668,-0.9736163727939129,-0.4551762822084129,0.07490095496177673,-0.5063726739026606,-0.5431691957637668,-0.2875693552196026,0.9133339524269104,0.04425354255363345,0.04311840934678912,0.7182774171233177,0.5226924857124686,-0.28387947706505656,0.11097958544269204,0.29175771959125996,0.7051589777693152,-0.38061341596767306,-0.8306357064284384,0.11512179393321276,0.4118099329061806,0.42501915292814374,-0.5170350237749517,0.8736234651878476,-0.15684597752988338,0.19167462876066566,-0.9238782939501107,0.4307725350372493,0.7850956004112959,-0.32077396381646395,0.5975581300444901,-0.9134280639700592,0.45431802328675985,0.5263595948927104,-0.904217082541436,0.07895646803081036,0.6155615742318332,-0.22300817584618926,-0.9438416990451515,-0.92658795369789,0.516395028680563,0.5405525439418852,0.050153430085629225,0.9377290043048561,-0.27828034618869424,0.14605168718844652,0.6344170207157731,-0.3349517132155597,0.8865554761141539,-0.48929179506376386,0.6125054298900068,-0.5663685034960508,0.977979012299329,-0.33691843459382653,-0.8125509298406541,-0.5479478468187153,-0.5847860025241971,-0.9447178621776402,-0.5072894962504506,0.9862435553222895,0.4802888887934387,-0.4848864171653986,-0.7485524308867753,0.19926947355270386,0.7837641891092062,-0.21943335002288222,0.2935700239613652,-0.8899991111829877,0.39854550641030073,0.1906069489195943,0.714538047555834,-0.6916898400522768,0.8094237674959004,0.35462798504158854,-0.8935348861850798,-0.27517112670466304,0.38835546374320984,0.5266962265595794,-0.05003812909126282,-0.18827984109520912,0.3570635332725942,-0.5219935057684779,-0.03733873087912798,-0.6974920970387757,0.5588538157753646,-0.036483427975326777,0.30716658057644963,0.2613456496037543,0.49460042314603925,-0.712678256444633,-0.14337786519899964,-0.46478758472949266,0.9624728276394308,-0.6547569083049893,-0.5774312554858625,-0.4392042080871761,0.5753705338574946,0.5939754233695567,0.7129657939076424,-0.5301961931400001,-0.45345605351030827,0.48283086670562625,-0.9649485829286277,-0.34155264776200056,-0.23436317639425397,-0.9803977245464921,-0.7373937601223588,0.9083999316208065,0.7340342602692544,-0.4178849933668971,-0.9856593757867813,0.3623474081978202,-0.5531511092558503,-0.2058650804683566,-0.7156097716651857,0.13801494613289833,0.33215369936078787,-0.06650067726150155,0.8853845265693963,-0.050760811660438776,-0.13610853953287005,-0.9490822264924645,0.6886572442017496,0.8432961758226156,0.5281265047378838,-0.7782023018226027,-0.6139763412065804,-0.25545774307101965,-0.9264294411987066,-0.4072734294459224,-0.6590826231986284,-0.7077952241525054,0.972583525814116,0.7792978258803487,-0.568450978025794,0.7045496320351958,-0.9935284270904958,0.2803114936687052,-0.02375840302556753,0.5607383977621794,0.819418094586581,-0.014912739861756563,-0.439697690308094,-0.7627877811901271,-0.014456290751695633,-0.7013023206964135,0.5393901020288467,-0.9267009552568197,-0.21887886244803667,0.5125918164849281,0.11728841764852405,0.8564774366095662,-0.704936109483242,0.011977578978985548,0.03529896307736635,0.6787245934829116,-0.23055637907236814,-0.6221235664561391,0.557606081943959,0.7108955294825137,0.08222652785480022,0.13730730954557657,0.4798845024779439,0.6588903395459056,0.6801846558228135,0.5576335387304425,-0.5471990006044507,-0.864950546529144,-0.9436187697574496,0.5816983343102038,-0.2561448602937162,-0.5044636619277298,-0.7865422200411558,0.06283665169030428,-0.4370094081386924,-0.04162285104393959,-0.6588495601899922,0.8622463382780552,0.7536293724551797,-0.6477136057801545,-0.01904629124328494,0.010831299237906933,0.7909056879580021,-0.9839309100061655,-0.019100308883935213,0.4878765675239265,-0.7826819350011647,0.5642546806484461,0.1751824589446187,-0.32551312213763595,-0.5508118127472699,0.4355871342122555,-0.7808408439159393,0.004439057782292366,-0.6667020674794912,-0.23754626233130693,-0.201653353869915,0.6474798945710063,-0.5725755798630416,0.15381121169775724,-0.7895104284398258,0.46068673953413963,0.27823970513418317,-0.6831540362909436,0.576651378069073,-0.8544377153739333,0.3677149387076497,-0.87983363494277,0.05184899037703872,-0.18899889662861824,-0.38446137541905046,-0.10943479184061289,0.36872625444084406,0.8035272802226245,-0.6165289357304573,0.42724808398634195,-0.5133659397251904,0.9588710265234113,0.12777183623984456,-0.2668951456435025,0.5498134861700237,0.0766440648585558,-0.8293857532553375,-0.9373570829629898,0.38752819737419486,0.058081344701349735,0.8650902551598847,0.8861920516937971,0.3227176647633314,0.7181743020191789,0.7785657225176692,0.3295041164383292,-0.9544646837748587,-0.9120732289738953,-0.20476624043658376,-0.6942357216030359,0.01622585393488407,-0.5403501889668405,-0.5508111696690321,0.665625483263284,0.4724130118265748,0.8274872652254999,-0.04681069357320666,0.99717753008008,-0.5232017678208649,0.8208226845599711,0.3078955225646496,-0.9738093996420503,-0.7226536441594362,0.35910152504220605,0.3471084670163691,-0.6801945781335235,0.767275879625231,0.3061398691497743,0.743309857789427,-0.5597724835388362,-0.5611451165750623,0.7858565282076597,0.09249664470553398,0.9365481683053076,-0.9997500027529895,0.5023756860755384,-0.16527271457016468,-0.3118090475909412,-0.8147296588867903,0.09313759813085198,0.4215043727308512,-0.8633891106583178,0.3281980222091079,-0.025121035985648632,0.722671514376998,-0.7876506196334958,0.2871128050610423,0.3730442398227751,0.7400998487137258,-0.9938830602914095,-0.7194103607907891,-0.545341722201556,-0.2699771518819034,-0.7209910172969103,-0.6494681229814887,-0.9671846064738929,-0.5478535406291485,0.7097208062186837,-0.8573346673510969,-0.06197539530694485,-0.0672637983225286,0.6341107399202883,-0.30846792086958885,0.45712147280573845,0.5453206193633378,0.2882019756361842,-0.30986675061285496,0.15732545871287584,-0.3636157331056893,-0.6996266110800207,0.5170552213676274,0.08059779973700643,-0.23213544581085443,-0.08647069241851568,-0.7784744617529213,0.5807144143618643,-0.7652243752963841,0.3315698062069714,0.15227127401158214,0.3843112615868449,0.13633478386327624,0.04533651890233159,-0.7373294504359365,-0.7182677700184286,-0.3939447859302163,0.9156300025060773,0.2731825546361506,-0.34510245313867927,0.43111754674464464,0.6056906902231276,0.5741028496995568,0.5948031353764236,0.09067872678861022,-0.7392349261790514,-0.4613514491356909,0.2321014180779457,-0.9246667358092964,0.05499847233295441,0.1547398059628904,0.665385986212641,0.8582199434749782,0.022808740381151438,0.3672056361101568,-0.7429180848412216,0.21247066231444478,0.13923130929470062,0.8417394338175654,-0.8373385071754456,0.364539232570678,0.5974016492255032,0.21409584255889058,0.6592910015024245,0.4589144056662917,0.10017841355875134,0.5866020922549069,0.8925631591118872,-0.7954288171604276,0.8852094621397555,0.3471531756222248,0.9376377491280437,0.49448607210069895,0.17920753406360745,0.7884192210622132,-0.9911453085951507,0.24321422493085265,-0.548155078664422,0.36241216911002994,0.011581266764551401,0.2249377197586,-0.6824360769242048,0.9922508439049125,0.3054500422440469,0.7301186844706535,0.4764493862167001,-0.9200591132976115,0.6736129196360707,0.9668543045409024,-0.6069637881591916,0.9732527388259768,-0.6313250660896301,-0.7494363696314394,0.2516141743399203,-0.44483798276633024,-0.9303651750087738,0.9980870992876589,-0.7793549662455916,0.019585192669183016,-0.2108095595613122,0.9757633660919964,-0.9552078871056437,0.40493972273543477,-0.8865010617300868,0.965745260939002,-0.4186600283719599,-0.22423420613631606,0.8762162090279162,-0.9433986893855035,-0.03606578288599849,-0.6348137333989143,0.19410735927522182,0.7683258135803044,-0.669594444334507,0.37618660647422075,-0.4573034434579313,-0.6334544331766665,0.9423328475095332,0.14551860839128494,-0.44743159506469965,0.05729914549738169,-0.5608355468139052,0.6919532506726682,-0.8823792496696115,0.08453024830669165,-0.075268080458045,0.2094774078577757,-0.6077654147520661,-0.9099184791557491,-0.827916651032865,-0.028901461977511644,-0.028644504491239786,-0.028475225903093815,0.13212232384830713,0.017162593081593513,0.023058561142534018,0.8365533063188195,0.9165533324703574,0.5960961268283427,-0.9637013175524771,-0.6198035688139498,-0.3178262282162905,0.7971144840121269,-0.7614927622489631,0.764069402590394,-0.16741334274411201,0.7609043037518859,-0.09789449069648981,0.5686847153119743,-0.24327152781188488,0.5888527818024158,0.25426420010626316,-0.021175865083932877,-0.1901457100175321,0.013195516541600227,0.5611089589074254,0.6715082670561969,-0.9042965532280505,0.14225890021771193,0.9064885582774878,0.34688496869057417,0.48845253698527813,0.40175104746595025,0.6967982491478324,0.5439579337835312,0.30814394634217024,-0.2799907708540559,-0.7948126718401909,-0.45085725747048855,0.11972683295607567,-0.6345769064500928,0.7610634886659682,-0.23210611660033464,-0.915472112596035,-0.6105588870123029,-0.7327613141387701,-0.1636749217286706,-0.1879946799017489,0.9495725003071129,-0.6086881710216403,0.3682121401652694,0.8250362249091268,0.03233333444222808,0.5145108285360038,0.9875263352878392,-0.23195860674604774,0.01699973875656724,-0.2685075053013861,-0.9559941948391497,0.5824995990842581,-0.6804180364124477,0.5506484475918114,-0.5559996175579727,-0.9776422893628478,0.709211353212595,-0.6376479938626289,0.1835535536520183,0.018787894397974014,0.7498634252697229,-0.33849659748375416,-0.3609694642946124,-0.7564095761626959,-0.35211049718782306,-0.3088385444134474,-0.28900292748585343,0.1948531842790544,-0.5623412951827049,-0.4148657899349928,-0.9121714616194367,0.43472929298877716,-0.7727673300541937,-0.15623860759660602,0.8847470688633621,-0.02095117326825857,-0.9105425323359668,-0.731323791667819,-0.8580252090469003,-0.7409052103757858,0.34148944448679686,-0.9572053174488246,-0.9570274804718792,0.23863248946145177,-0.03932270547375083,0.720484814606607,0.4245016537606716,0.5968720079399645,-0.6709300773218274,0.4072609841823578,-0.11037245346233249,-0.010749849956482649,0.8899409766308963,0.9723310871049762,0.310334678273648,-0.20533905504271388,0.2322585629299283,0.022697491105645895,0.598450930789113,-0.2919364986009896,0.5539120049215853,0.7830120758153498,-0.5469409162178636,-0.03695479920133948,0.8965700860135257,-0.22191388020291924,-0.2604561629705131,-0.9028800828382373,0.4854082898236811,0.48733388958498836,-0.4593847072683275,0.5706372279673815,0.6591220386326313,0.3392939092591405,-0.6840407494455576,-0.06513382960110903,-0.12423276528716087,0.3065256713889539,0.9740808876231313,-0.46981891244649887,0.858474095351994,0.7380817234516144,0.17279964219778776,0.8391743004322052,0.5958686349913478,0.6065298048779368,-0.9771620789542794,-0.6191569101065397,-0.7989870444871485,0.9313199198804796,0.10566112818196416,-0.3616413618437946,0.7733384184539318,-0.3491489258594811,-0.007115076296031475,0.3459722097031772,0.20679321140050888,0.7772377040237188,0.7012227405793965,0.23020164063200355,-0.34149873815476894,0.11251300945878029,-0.6668345048092306,-0.6746642929501832,-0.7790015935897827,0.4252385734580457,0.041486557107418776,0.812544584274292,-0.7560455417260528,0.9738245219923556,0.5251132952980697,0.1378572848625481,0.9283913425169885,0.11338758887723088,0.232265068218112,0.21398258209228516,-0.6303958431817591,-0.35379445971921086,0.925373297650367,0.3412999385036528,0.5037282551638782,-0.6221258607693017,-0.6385614504106343,-0.03780179750174284,0.25093819107860327,-0.8556788619607687,-0.10015248274430633,-0.034140180330723524,-0.18781839590519667,0.9293367099016905,-0.24279072787612677,-0.038077394012361765,-0.7839533328078687,0.07731138030067086,-0.37864775070920587,0.8682666202075779,-0.13838372426107526,0.08888587541878223,-0.10977340582758188,0.28738125367090106,0.04109661001712084,-0.44356882805004716,-0.6493853447027504,0.5588610791601241,-0.4062497168779373,-0.18767471611499786,-0.029915126506239176,0.9213501689955592,0.2198191173374653,0.9858880988322198,0.43694893550127745,-0.09519308479502797,0.574227589648217,0.16468018339946866,0.20891444943845272,-0.05377530865371227,0.4658727706409991,0.5232314993627369,-0.34002394368872046,-0.06457643210887909,0.45580824883654714,-0.1529106223024428,0.8538317997008562,-0.8398157861083746,0.34739522403106093,-0.13108894880861044,-0.2480035568587482,0.6789301536045969,-0.770293899346143,0.8656868105754256,0.6103188269771636,0.8857353660278022,-0.41978360433131456,-0.865143820643425,0.4723908817395568,0.15904910722747445,-0.2283879048191011,-0.2643772531300783,-0.5968375424854457,0.2258515451103449,-0.21480615250766277,-0.7431936864741147,-0.2067070617340505,-0.07769932365044951,0.5804388360120356,0.14644268294796348,0.6752919377759099,0.9557814318686724,0.9689736105501652,-0.718596980907023,0.41974542615935206,0.4441739935427904,0.5557758114300668,0.7515080329030752,0.4323366740718484,-0.31067459424957633,-0.6539042904041708,-0.27500242413952947,0.1849387208931148,-0.31860252982005477,0.4563813656568527,0.30967277800664306,-0.78628721088171,0.26103164115920663,-0.7926478651352227,-0.7227180688641965,0.5090554165653884,0.8889300283044577,-0.1590299755334854,-0.826270081102848,-0.16867477353662252,0.45319651952013373,0.40509046940132976,0.9182875505648553,-0.2655165521427989,0.7091210018843412,0.08708025328814983,0.5160080012865365,0.10548933735117316,0.2663794057443738,-0.40325814159587026,0.031853938940912485,0.08257780829444528,-0.7711349460296333,0.900725640822202,0.6634144326671958,-0.5864542345516384,-0.8631970998831093,-0.42672328604385257,0.770910273771733,0.7670138804242015,0.16707381792366505,-0.7360382410697639,-0.9845743658952415,0.2525329631753266,0.8569263564422727,-0.858179179020226,0.2679024520330131,0.022192138712853193,0.2409566049464047,-0.3399715796113014,-0.03962775785475969,-0.635104354005307,0.9000376304611564,-0.43049404956400394,0.46623335406184196,0.07911099400371313,0.8497364311479032,-0.6005242350511253,0.05295533454045653,0.4270075517706573,-0.7998256450518966,0.9331572572700679,-0.9345683916471899,-0.17970682680606842,-0.24952280661091208,-0.5938986297696829,-0.4822413930669427,0.837429381441325,-0.6303287050686777,0.34753934433683753,-0.01181783014908433,0.9845941634848714,0.08222606079652905,-0.5891867307946086,0.7889526034705341,-0.7265134691260755,0.9899329673498869,-0.6597269969061017,0.1429426483809948,0.5066291852854192,-0.8755163811147213,0.20815923530608416,0.3885131645947695,0.8396494402550161,0.05562650505453348,0.042953215539455414,0.47272842517122626,-0.9965380565263331,0.4289718852378428,-0.3084003538824618,0.5120634315535426,-0.8895821301266551,-0.8120566322468221,0.7270353459753096,0.5105610215105116,-0.9920226782560349,-0.2738427361473441,0.8843507468700409,0.49630201049149036,0.355026398319751,-0.2822290421463549,-0.7229676991701126,0.901155972853303,-0.9647670187987387,-0.8160777129232883,0.19360210560262203,0.1885459222830832,-0.5768315037712455,0.5682959742844105,-0.22270601894706488,-0.6870539784431458,-0.6194366118870676,0.6480054673738778,-0.07399155059829354,-0.5001053041778505,-0.7495362912304699,-0.2444534869864583,-0.8537084590643644,0.46827355260029435,0.8680852586403489,0.390017160680145,0.8470346652902663,-0.6730270981788635,0.6666023544967175,-0.23446091124787927,-0.21253113308921456,-0.689035948831588,0.8151102950796485,0.40947101125493646,0.4523037411272526,0.28025681152939796,-0.8037898056209087,0.6345409015193582,-0.5037366426549852,-0.8981938161887228,-0.7092772591859102,0.9411345776170492,-0.6871989839710295,0.7124081109650433,-0.38461032696068287,-0.55385219771415,-0.3062774818390608,0.5805306052789092,0.02951502427458763,0.7809337503276765,-0.5051473518833518,-0.0430788011290133,-0.1666978462599218,0.03612213395535946,-0.28045242838561535,0.6889463923871517,-0.25033794390037656,0.22388269752264023,-0.3063862700946629,0.20608456106856465,-0.826426450163126,-0.8492660187184811,0.554878858383745,0.030338895972818136,-0.42587729217484593,-0.1546414722688496,0.8006300968118012,0.5045155640691519,-0.8338718507438898,0.6037751794792712,0.3419957929290831,0.7974256677553058,0.2909633764065802,0.1469495827332139,-0.08497333899140358,0.9331012666225433,-0.20797857688739896,-0.95424017123878,-0.8965090597048402,0.44243508763611317,-0.34908800292760134,-0.4421388106420636,-0.7270423639565706,0.01382330758497119,0.4272992527112365,0.3665269212797284,-0.7078212755732238,-0.6470925519242883,0.007018212229013443,-0.654037909116596,0.9843583852052689,-0.4513826142065227,0.1061321934685111,0.7979047074913979,0.7593793557025492,-0.5236525591462851,0.5833618137985468,-0.7144210552796721,-0.5971572394482791,0.163783707190305,0.49356909608468413,0.15402964688837528,-0.6218383824452758,-0.13994530541822314,-0.315686353482306,-0.24730804841965437,-0.3255642717704177,-0.19261007942259312,0.7757850466296077,0.9072263273410499,0.8977247374132276,-0.1043447251431644,-0.21469690836966038,-0.46533901896327734,-0.7901778719387949,0.7445027627982199,0.40702334977686405,-0.23540657246485353,-0.3954748772084713,0.2665554201230407,0.49606780568137765,-0.6027316702529788,-0.5437861257232726,-0.4436630178242922,-0.6700790296308696,0.9946525986306369,-0.04811502620577812,-0.424832871183753,0.6057678051292896,0.22311550518497825,0.65214265557006,-0.6932922615669668,0.047205450013279915,0.3753409185446799,-0.15218388522043824,-0.8529730509035289,0.3495055749081075,-0.5228898748755455,0.7261596876196563,-0.4597722049802542,-0.04778563790023327,0.2741497908718884,0.6595556396059692,0.33580971602350473,-0.7706211348995566,0.4785267352126539,-0.11066302191466093,0.7527951574884355,-0.794012239202857,0.5363763747736812,0.445260938256979,-0.6544452784582973,0.663384310901165,0.3713895264081657,0.45483832992613316,-0.5687640425749123,-0.6071284622885287,0.7321180668659508,-0.867386014200747,0.6546682948246598,-0.011989727150648832,-0.8616325329057872,0.5091631971299648,-0.4810378970578313,-0.7590756029821932,0.9320335523225367,0.22102994099259377,-0.32191624864935875,0.9116419390775263,0.25146055687218904,0.5362515314482152,-0.8434062707237899,-0.2769032772630453,-0.9590109465643764,-0.6510977083817124,-0.657449385151267,-0.2239654459990561,-0.2057819962501526,-0.587967028375715,-0.023129012435674667,-0.9125948403961957,0.7645634855143726,0.7500783270224929,0.07032241439446807,0.9196084407158196,-0.28216884518042207,0.8202153514139354,0.14356247941032052,0.1715651541016996,0.5764259230345488,-0.06943103484809399,0.9217253481037915,-0.23779395688325167,-0.033611754421144724,-0.541443404275924,-0.22378859389573336,0.43821111554279923,0.8752320636995137,-0.6768121579661965,-0.5863509071059525,0.2460844242013991,0.5661494061350822,-0.9643220016732812,0.4444611445069313,0.22377635724842548,0.24652767973020673,-0.9142292211763561,0.8432760001160204,-0.8820372326299548,-0.9096459709107876,0.7194202803075314,-0.8258492322638631,-0.16398527985438704,-0.5731892958283424,-0.3983379853889346,0.3853807644918561,-0.095880554523319,-0.26479397527873516,-0.5680258814245462,0.9319810708984733,-0.9047413463704288,0.9851846769452095,0.06294729514047503,0.6674024863168597,0.03172267274931073,-0.40736599639058113,-0.3694689809344709,-0.881604349706322,0.26036766916513443,-0.1455311318859458,-0.6871357760392129,0.954647155944258,0.4214805909432471,-0.7245221408084035,0.8338546655140817,0.38033390371128917,-0.1100961253978312,0.44545687455683947,-0.3863206529058516,-0.6778615931980312,-0.8110615462064743,0.5595347038470209,-0.7235708571970463,-0.6547270030714571,-0.8226131144911051,-0.127860177308321,0.06723672337830067,-0.9573992448858917,0.031630286015570164,0.9040740863420069,-0.6316513400524855,-0.12238591397181153,0.21818641480058432,0.9504127711988986,-0.3949101585894823,-0.955205618403852,-0.5073110088706017,-0.36801132280379534,-0.5798851032741368,0.11002028407528996,0.5245675789192319,0.09873005235567689,-0.07086353143677115,-0.8347662966698408,-0.10823242692276835,0.5584945334121585,-0.4841579720377922,-0.9910081471316516,0.5457470845431089,0.6737981666810811,0.003369370475411415,0.15806637378409505,-0.9537568748928607,0.6081105899065733,0.8873897399753332,0.9827431151643395,-0.9841766459867358,-0.18706623930484056,-0.29493665136396885,-0.25886787939816713,0.5842283889651299,0.4859843826852739,-0.8910704627633095,-0.8901491267606616,-0.7214593351818621,0.08784584235399961,-0.9242899231612682,0.653366438113153,0.645006550475955,-0.5921273101121187,0.3759951344691217,0.32960663782432675,-0.31862970534712076,-0.6250135200098157,0.2917638127692044,0.4302700557745993,0.8043004791252315,-0.15042402362450957,-0.7495870310813189,0.8610475352033973,0.26463155495002866,0.308492477517575,-0.44260708149522543,0.02902657212689519,0.13490915717557073,0.6728077442385256,0.6776014897041023,-0.34422735357657075,-0.36078272201120853,-0.7034514425322413,0.7177476119250059,-0.5507967290468514,0.05950553575530648,-0.30481506744399667,-0.3566161668859422,-0.46557395765557885,-0.8970463988371193,0.20930407894775271,-0.3875094554387033,-0.21187284355983138,-0.22748949006199837,-0.2091972567141056,-0.820648415479809,0.6870907596312463,-0.2807626351714134,-0.11189654981717467,0.7854406321421266,0.496277813334018,-0.6352300341241062,0.11450626002624631,-0.13740541972219944,0.7748506078496575,-0.5749545632861555,0.9814843656495214,-0.3886411557905376,-0.22310611233115196,0.4844313287176192,0.8581943502649665,0.4834266430698335,0.6238553156144917,0.4907166180200875,-0.03883404564112425,0.8212101049721241,-0.4678500364534557,0.5144234853796661,0.5048105730675161,-0.4198686955496669,0.9760470781475306,0.5379246496595442,-0.8117487416602671,-0.21814606618136168,-0.9567690906114876,-0.7756615979596972,0.9422860215418041,-0.4154109349474311,-0.8905438208021224,0.8644413249567151,-0.13341800682246685,-0.6742124580778182,-0.8595229564234614,0.018610444851219654,-0.6251234882511199,-0.3179683517664671,-0.09235238004475832,0.7808681395836174,-0.2195409294217825,0.9836165914312005,-0.6808711737394333,-0.3096137847751379,0.15807171911001205,0.6590363695286214,-0.10902994219213724,-0.8642544066533446,0.41439767740666866,-0.43904128950089216,-0.25166822178289294,0.9099748483859003,0.699951296672225,-0.9724954669363797,0.05994760151952505,0.10330856405198574,0.7838841695338488,0.519767623860389,-0.6240873369388282,0.24523474229499698,-0.4742849296890199,0.5401770104654133,-0.1337674567475915,0.12033836077898741,-0.7780022704973817,-0.5237628975883126,0.09513791836798191,0.6832978730089962,0.0866373791359365,-0.40700237546116114,-0.9908284787088633,-0.8041133098304272,0.5199921098537743,0.12410347769036889,0.9051341745071113,0.7962109735235572,0.6673786006867886,-0.7825574562884867,0.7763160741887987,-0.08897952735424042,0.030639209784567356,-0.5036641419865191,0.816115515306592,-0.12778392853215337,-0.05056265601888299,0.2587592373602092,0.2570888842456043,0.4214962339028716,0.790762628428638,0.942208768799901,-0.6865130118094385,0.9745663492940366,-0.5067869336344302,-0.9128064587712288,-0.030781717505306005,0.10822852049022913,0.9719171253964305,-0.43100319942459464,-0.513480294495821,0.6680207164026797,0.9822969469241798,-0.09332170849666,0.5321838590316474,-0.5387326329946518,0.3113934015855193,-0.4705703449435532,-0.6453013001009822,-0.38181942235678434,-0.27808623714372516,0.39165146136656404,0.8866524905897677,-0.33885691594332457,-0.8276615822687745,0.5251071699894965,0.3413617913611233,0.482186330948025,0.6945318928919733,-0.8408090048469603,-0.7480696029961109,0.470499899238348,-0.1420660405419767,0.6814548312686384,-0.14428843231871724,0.49029869213700294,-0.4786237692460418,-0.990548602771014,0.042128642089664936,0.7160888952203095,0.02940688095986843,-0.9888496277853847,0.6618709675967693,-0.2599382335320115,-0.46707812510430813,0.06406687432900071,-0.7595478687435389,-0.5192620391026139,-0.8082941854372621,0.3916396056301892,0.830522432923317,-0.08352100430056453,0.6383362500928342,1.3195909559726715e-05,-0.8889498808421195,-0.5867130155675113,0.7895714207552373,-0.6138195963576436,0.9441741439513862,-0.01679045893251896,-0.5985750090330839,0.10893739201128483,0.08837415184825659,-0.468746573664248,-0.01965492172166705,-0.40108883986249566,0.3321312488988042,-0.09451218554750085,-0.8033573152497411,0.607961346860975,-0.3704564808867872,-0.9423847761936486,-0.671216310467571,-0.0049940054304897785,0.7052434934303164,-0.3760454240255058,-0.3430663412436843,0.22060253378003836,0.8192479852586985,-0.15550886746495962,-0.3018170930445194,-0.08359883492812514,0.3002512278035283,0.7458417732268572,0.9862444531172514,-0.4499127552844584,-0.21217155270278454,-0.3917786623351276,0.47757768956944346,0.35520694917067885,0.9545917473733425,-0.2763460301794112,-0.6073759673163295,-0.8532908051274717,-0.3074778839945793,0.9774596951901913,0.03674110118299723,0.5698175900615752,-0.22899075364694,0.5031431629322469,0.017158912494778633,-0.5213880366645753,0.4935810025781393,-0.4412976442836225,0.7211816012859344,0.42498017800971866,0.5785157172940671,-0.3946742806583643,-0.7617859691381454,-0.1066816532984376,-0.01986556826159358,0.5171687570400536,-0.6890612300485373,-0.42794783925637603,-0.048872278071939945,0.28437018720433116,0.9738806057721376,-0.7366491560824215,0.6847433410584927,-0.8841890189796686,0.19090141262859106,-0.46024454943835735,-0.15023214044049382,0.5123347346670926,0.547802428714931,-0.27699788101017475,-0.24077098909765482,0.19322079326957464,0.4678264083340764,-0.23749215062707663,0.4062061794102192,0.7754424945451319,-0.5819466197863221,0.914912624284625,0.39549715677276254,-0.14762483863160014,0.40800223406404257,-0.8980213981121778,-0.16801225766539574,-0.959071344230324,0.06559575302526355,0.769836772698909,0.6062932531349361,0.6219297186471522,0.8960977825336158,-0.6395713998936117,0.7795519554056227,0.8829903267323971,-0.411281097214669,-0.2294957796111703,0.2849877397529781,0.2621296471916139,-0.8183461558073759,-0.40606204234063625,0.5181402550078928,-0.6188531797379255,0.49530199775472283,0.6626814361661673,0.9902732018381357,0.7112462115474045,0.6845703329890966,-0.806377696339041,-0.6522538457065821,-0.9215158256702125,0.4604833936318755,0.6270308308303356,0.6378460181877017,0.4269367177039385,0.8734338353388011,0.09639945672824979,-0.13136064959689975,-0.21962298965081573,0.4350682348012924,-0.5338406772352755,0.525346718262881,0.2597016356885433,-0.9715225691907108,-0.8441334594972432,-0.6650553233921528,0.3937066439539194,-0.8636388787999749,-0.494126396253705,-0.6814240170642734,0.03260692162439227,0.409412479493767,0.9307901761494577,-0.6360619873739779,0.45141947641968727,-0.9155037542805076,0.26762262312695384,-0.6258749063126743,0.0010156896896660328,-0.2878274330869317,0.20570653676986694,-0.20417998498305678,-0.3190418682061136,0.3907958948984742,-0.9847445078194141,-0.23336903285235167,-0.6572557440958917,-0.8268187078647316,0.707094760145992,-0.9748372891917825,0.05734618799760938,0.48269509291276336,-0.6363711832091212,0.3682463290169835,0.25483280466869473,0.7093055979348719,-0.3473909650929272,-0.48868750408291817,0.5006672479212284,0.21111399494111538,-0.9173240857198834,-0.6722146277315915,0.6602582572959363,0.01365981763228774,-0.45312744239345193,0.7445699814707041,-0.8864858928136528,-0.5440710783004761,-0.9024610510095954,0.5155897289514542,0.1454614964313805,-0.22039898857474327,0.4723259434103966,-0.8397405967116356,0.3711216584779322,-0.29444936802610755,0.5531957512721419,0.3843324943445623,-0.3883005673997104,0.9297284884378314,0.8848884385079145,0.5956559623591602,0.293822028208524,-0.18048385065048933,0.4661084576509893,0.7504432117566466,0.10216792905703187,0.5974818649701774,-0.5135884135961533,0.30724008148536086,-0.46483175782486796,0.5510855009779334,0.6022296850569546,0.7355808019638062,-0.9480578303337097,-0.5595462927594781,-0.08041685074567795,-0.603616519831121,0.1869105570949614,0.6122654364444315,-0.15827062632888556,0.25572245428338647,0.5369640113785863,0.5070434524677694,-0.6790821799077094,0.22806090861558914,0.7816223856061697,-0.5742046227678657,0.9683991800993681,0.5262380056083202,0.14013013569638133,0.5061029409989715,0.30113388039171696,0.39396719075739384,0.9308392545208335,-0.15066617541015148,-0.5890611903741956,-0.38500838493928313,-0.8950029360130429,-0.23321405751630664,-0.3877831678837538,-0.8802579804323614,0.914965080562979,-0.6206227443180978,0.9059326671995223,-0.7868760521523654,-0.007312210276722908,-0.955856463406235,-0.19196044653654099,0.7322790841571987,-0.5415432523004711,-0.751095721963793,-0.5815287660807371,-0.6325834966264665,0.9931597616523504,-0.3373305657878518,-0.1597193954512477,0.9974541496485472,0.5941497092135251,0.32065666327252984,0.2013292540796101,0.8933033067733049,0.19640983687713742,0.22392380284145474,0.06292619556188583,-0.4697853410616517,0.05931398365646601,0.18050641240552068,-0.9425391117110848,-0.22835777793079615,0.27943203784525394,-0.6433528349734843,0.379097253549844,-0.5497456616722047,-0.9361734362319112,-0.789752344135195,-0.4876907905563712,-0.6157328193075955,0.754502547904849,-0.7287965649738908,-0.03542622271925211,0.7210020599886775,0.69962068926543,-0.959469657856971,0.4413305935449898,-0.5059165307320654,0.525661142077297,-0.4111037333495915,0.2584011941216886,0.6236739493906498,-0.09465230582281947,0.6343105202540755,0.9351682686246932,0.267255671788007,-0.15185433020815253,0.6569344978779554,-0.776789806317538,-0.3833585078828037,-0.15273735858500004,0.4496732451952994,-0.9866691809147596,-0.7310763257555664,-0.4107473730109632,-0.6718608574010432,0.6827506134286523,-0.10649523558095098,-0.04012990975752473,-0.7612133496440947,0.5627378695644438,0.11197964893653989,0.700723045039922,0.649195421487093,0.09361700434237719,-0.4125137133523822,0.27075159177184105,0.9624715973623097,0.6002679667435586,-0.9394083479419351,0.9584334273822606,0.11373079987242818,0.4586559208109975,0.6543954177759588,-0.4276162558235228,-0.5748513112775981,-0.4424654012545943,-0.08737496053799987,0.49112330470234156,0.4681286923587322,-0.7579434718936682,-0.6593132936395705,0.30782010219991207,-0.72245640354231,-0.45225855987519026,0.7309848656877875,-0.7384023643098772,0.5002107149921358,0.26870184019207954,-0.6121099768206477,0.3148630866780877,-0.28540470777079463,-0.937452997546643,-0.004887802992016077,0.16371301002800465,0.3976411917246878,-0.18429955607280135,-0.29019262036308646,0.6220470773987472,-0.24504559859633446,0.3766404674388468,-0.2226747157983482,-0.3840529746375978,0.5207280968315899,0.3487134804017842,-0.5825437577441335,0.780339970253408,0.5698697022162378,0.15345923928543925,0.597103773150593,0.04260170552879572,0.2957605072297156,0.9289859337732196,0.8801040779799223,0.12599362945184112,-0.7741990219801664,-0.8655264140106738,0.361048327293247,0.9868498691357672,-0.4480913351289928,-0.5433662892319262,0.18102054484188557,-0.013665356673300266,0.05710885487496853,0.12388296658173203,0.316950423642993,-0.04310303879901767,0.523152198176831,-0.6724909404292703,0.3409417252987623,0.7374315895140171,-0.9562291903421283,0.13379673287272453,-0.24153198534622788,-0.8109172945842147,0.10410578129813075,0.9184223972260952,-0.8958937949500978,0.06634951755404472,-0.9735629358328879,-0.7540869079530239,0.6486093997955322,0.17741695325821638,-0.728289064951241,-0.1788984453305602,0.5900164446793497,-0.9340701214969158,0.31861939933151007,0.4483693358488381,-0.005611253436654806,0.06355137098580599,0.770252903457731,0.39844667771831155,-0.09818373620510101,0.646222376730293,0.9622223684564233,-0.7243272680789232,-0.2113173329271376,0.9044964932836592,0.5896284161135554,-0.4449848812073469,-0.6012428971007466,-0.8166607883758843,-0.01630948344245553,-0.26203830540180206,0.14975263038650155,-0.6995645086281002,-0.43240254186093807,0.12254665931686759,0.7203498287126422,-0.4477265668101609,0.3489690558053553,0.09544019866734743,0.635767622385174,0.9503668430261314,-0.010099180042743683,-0.17582772905007005,0.024712163023650646,-0.6425963761284947,0.40877126762643456,-0.5857593114487827,0.2430498586036265,-0.5612753918394446,0.6178093906491995,0.15284358756616712,0.7894166647456586,-0.06401423178613186,0.9147791783325374,-0.8655145913362503,0.41481261420994997,-0.43544794991612434,0.46283433912321925,-0.26930564222857356,0.3745355592109263,-0.6886445851996541,0.7776215672492981,0.35165766859427094,0.20390405412763357,0.4249705201946199,-0.47536400984972715,0.0014336039312183857,-0.6057624430395663,0.062201724387705326,0.2139284135773778,0.457532349973917,-0.11397896613925695,0.893068834207952,-0.1453836695291102,0.051771539729088545,-0.60743796126917,-0.4076321260072291,0.8322046864777803,-0.7846758919768035,0.8325359211303294,-0.4336473452858627,-0.9199707941152155,0.8701358330436051,0.972179314121604,-0.5885367919690907,0.6058339425362647,0.3786530611105263,0.7882095226086676,0.37883871514350176,-0.4294268460944295,0.5558701897971332,-0.24674105131998658,0.5912216966971755,0.0791442790068686,0.48523809434846044,-0.9372294610366225,-0.12019719462841749,-0.28564801067113876,-0.08940648939460516,-0.4614373054355383,-0.12605028739199042,0.9359345072880387,-0.9482523393817246,-0.4878702382557094,0.17519143735989928,0.258670296985656,0.3774108560755849,-0.6261363918893039,-0.5609491653740406,-0.3192811422049999,0.5078603769652545,-0.7099607633426785,-0.41387859266251326,-0.6014979695901275,0.07589542120695114,-0.14484786381945014,0.6752494717948139,-0.4723039362579584,0.08049205644056201,0.6811102917417884,-0.48827905766665936,0.6099838078953326,0.46417573280632496,0.4487858242355287,0.52172981062904,-0.7975984755903482,0.840089927893132,-0.7650922820903361,0.7699026823975146,0.06777720060199499,0.5016317958943546,0.35375441424548626,-0.38590332213789225,0.7184605211950839,-0.32519263168796897,0.9153202157467604,-0.8555941311642528,-0.1575058875605464,0.4379808730445802,0.06098037213087082,0.3967130440287292,-0.09890104457736015,0.381195368245244,-0.12324112933129072,-0.8877258286811411,-0.8961135437712073,-0.4221157259307802,0.033789281733334064,-0.8247724734246731,-0.6127211423590779,-0.4095267583616078,-0.8307766490615904,-0.8745240126736462,-0.3970994013361633,-0.430061393417418,-0.9886875450611115,0.2958477339707315,0.884062129072845,0.8746726480312645,-0.688829374499619,-0.17923715384677052,-0.7701792712323368,0.502731969114393,0.7717312616296113,0.7134963092394173,-0.5531865945085883,0.48197848768904805,-0.16310103377327323,-0.10430155973881483,-0.6833214042708278,0.6779871117323637,-0.591832194942981,0.4753059567883611,0.24515007343143225,0.295849219430238,0.45133384643122554,-0.4716378254815936,0.821833926718682,0.9930006209760904,-0.604237615596503,0.16085204714909196,-0.48420629696920514,-0.43990069534629583,-0.32262340979650617,-0.6512459791265428,0.9328391025774181,-0.6351748700253665,-0.327306239400059,0.02495956141501665,-0.6418652962893248,0.6632690881378949,-0.9341307734139264,-0.01906792586669326,0.2852371199987829,-0.6126672606915236,-0.8452542452141643,-0.2695931261405349,-0.4014838431030512,0.22078514704480767,-0.5834767827764153,-0.5300854318775237,-0.30537213385105133,-0.43591964850202203,-0.3668381851166487,0.20993148116394877,0.3986818054690957,0.40179056487977505,-0.8753199488855898,-0.6952355545945466,0.18479455122724175,-0.6523844045586884,0.3861323702149093,-0.34610411291942,0.10695088934153318,-0.00736825168132782,-0.6278856401331723,0.5506460159085691,-0.32164201652631164,0.7742669498547912,-0.10416159918531775,-0.2875649002380669,0.937814864795655,0.49289107229560614,-0.5563018508255482,0.333828279748559,-0.5183884748257697,-0.16095430357381701,-0.19746247539296746,-0.4063798221759498,0.3303738432005048,-0.3935338598676026,0.15718744322657585,0.5070998244918883,0.6766287283971906,-0.6909671821631491,0.9885880928486586,-0.7367523815482855,-0.6780648804269731,0.8848418868146837,-0.3835213277488947,0.12565148016437888,-0.6825097217224538,-0.8724077818915248,0.6153365722857416,0.44552486343309283,-0.8094069710932672,0.4906715131364763,-0.15197639679536223,0.4305238574743271,0.41022000927478075,-0.865841640625149,0.6261157901026309,-0.34691626857966185,-0.013786356430500746,0.5495418175123632,-0.7345839673653245,0.8687618873082101,0.011117188259959221,-0.22280115727335215,-0.17149242898449302,0.20985192665830255,0.1123675424605608,-0.494795820210129,0.03460650518536568,0.360572905279696,-0.6226323815062642,0.33305711671710014,-0.8126102639362216,0.7046324736438692,0.22842870000749826,-0.8962280978448689,0.5125706763938069,-0.019087577238678932,-0.5149414972402155,-0.6089133620262146,-0.061525536235421896,-0.5946383560076356,-0.27330294670537114,-0.09015398332849145,0.549443996977061,-0.9705732543952763,0.387517171446234,0.8728368012234569,0.6843198155984282,0.8398123043589294,0.991643694229424,-0.23250007536262274,-0.30602222867310047,-0.5817666547372937,0.5326055577024817,-0.8687122385017574,0.31680900463834405,-0.521006450522691,0.7283622375689447,-0.789124253205955,0.07009096350520849,0.3818009258247912,0.11300041805952787,-0.07394694490358233,-0.8914009113796055,-0.7600522716529667,0.17363420641049743,0.9987369095906615,0.24406576994806528,0.9791982085444033,-0.7246057563461363,-0.2735144919715822,0.19798694597557187,0.5444762222468853,0.9021135424263775,-0.9701471966691315,0.7160983900539577,-0.3531620157882571,-0.6557149421423674,-0.6686861249618232,-0.7479548053815961,-0.3531998824328184,0.13882326753810048,0.25401589600369334,-0.864733446855098,-0.6571225486695766,0.6257664998993278,0.7185810739174485,0.6280805226415396,-0.945904616266489,0.7516709342598915,0.2173793870024383,-0.590290755033493,-0.7768786251544952,0.21192538551986217,0.695159069262445,0.2620943537913263,0.3957870788872242,-0.6417477647773921,-0.9868281302042305,-0.037502079736441374,0.8170446413569152,0.6931045367382467,-0.5422031204216182,0.596132502425462,-0.050703172106295824,-0.6668206257745624,0.9418669645674527,0.9751340020447969,0.6444377503357828,0.7715912219136953,0.5795305096544325,-0.09314640099182725,-0.12204245524480939,-0.9078499339520931,-0.5195113038644195,-0.2823762525804341,0.3400815576314926,0.015512543730437756,0.6801504786126316,0.3066454967483878,-0.7713870005682111,-0.7457363628782332,-0.271798572037369,0.8096304652281106,0.8982500680722296,0.5290145510807633,-0.9282938567921519,0.30023076431825757,0.4802514142356813,-0.9728559399954975,0.9296772223897278,0.8993681226857007,-0.1958176176995039,0.22709495341405272,-0.29380508698523045,-0.3566062659956515,0.18192881299182773,0.12831486482173204,-0.14355514384806156,-0.894873155746609,-0.0832619066350162,-0.45047007454559207,0.6784734250977635,-0.846819166559726,0.8236287124454975,-0.5128063848242164,0.4197151060216129,0.3979273112490773,0.9872600720264018,0.9915338889695704,0.26980933966115117,0.2495293002575636,0.0009324988350272179,0.6413608072325587,-0.8685044795274734,0.3827876513823867,-0.3954812902957201,-0.8964793211780488,0.43109209882095456,-0.66277523804456,-0.9284079731442034,0.35777934920042753,-0.18810005579143763,-0.17067643953487277,0.3269491046667099,0.469126807525754,0.44545649411156774,0.9458871595561504,-0.1186823258176446,-0.9649824560619891,0.553656802047044,-0.7866639867424965,-0.3894092654809356,-0.012648305855691433,-0.2892818716354668,0.4365753079764545,0.9722602157853544,-0.9701264845207334,-0.5444196602329612,-0.47849009232595563,0.26771368691697717,0.35156286926940084,0.6939468998461962,0.21272081742063165,-0.1555356364697218,-0.1488280203193426,-0.03816336207091808,-0.7565000685863197,0.0722503331489861,-0.9049476711079478,0.062157560139894485,0.7323985891416669,-0.4324696213006973,0.8795894160866737,-0.2756970808841288,0.40783631708472967,0.7157441759482026,-0.44771017832681537,0.31207725359126925,0.9803986405022442,0.9759763348847628,-0.6520130834542215,0.5596620482392609,-0.5918446434661746,0.6699620671570301,-0.05381963588297367,0.9138290928676724,-0.7756137778051198,-0.07839367538690567,-0.25880661280825734,-0.5483222394250333,-0.7918889718130231,0.12268292857334018,-0.11590866046026349,-0.03685329994186759,-0.0711083309724927,-0.997301357332617,-0.797744759824127,-0.584561575204134,-0.0023586181923747063,0.27652141312137246,-0.8834721245802939,0.4388854498974979,-0.9251922685652971,-0.04148276196792722,-0.8371827639639378,-0.2952634119428694,0.7955314195714891,0.3154847458936274,0.46751916501671076,-0.7320226952433586,0.4094225740991533,0.7642475110478699,0.6666190749965608,-0.2937313262373209,-0.46553959883749485,0.9523746143095195,0.8051451086066663,-0.13565053278580308,-0.5788523210212588,-0.8781624916009605,0.48359198262915015,0.2328306152485311,0.1617617206647992,-0.3761646985076368,0.0022772024385631084,0.07934957277029753,0.5662494548596442,0.4354751412756741,-0.7680558632127941,-0.02693612454459071,-0.72933549573645,0.3635478001087904,0.5632259929552674,-0.15482671605423093,-0.517046982422471,0.9374000020325184,-0.03918208321556449,-0.5711365076713264,-0.19453907012939453,-0.6625863169319928,0.2604686156846583,0.05402409378439188,-0.8755454523488879,0.9828488621860743,-0.32815519953146577,-0.4000397468917072,-0.6951199569739401,0.14680288545787334,0.03844910394400358,0.3404478430747986,0.8400839078240097,0.6419978770427406,0.20019178604707122,0.8013375974260271,0.09293600544333458,-0.5258044176734984,-0.9725195858627558,-0.00759623758494854,-0.7830426502041519,0.2698380593210459,-0.1205644910223782,0.413933910895139,-0.02397162327542901,-0.3975341427139938,0.7002674262039363,0.936187676154077,0.9604765940457582,0.9818794918246567,-0.5484002912417054,0.9041200429201126,0.045600865967571735,-0.4293310744687915,0.8182414383627474,0.25322545040398836,-0.959951679687947,0.12610617745667696,0.3274889583699405,-0.14948934270069003,-0.7680772766470909,0.7429628102108836,-0.5936975907534361,0.04201165121048689,-0.7100176406092942,-0.08499009441584349,0.5450033261440694,-0.5834866664372385,-0.4356191083788872,0.3621826427988708,0.11885428661480546,-0.47268741112202406,0.6679090885445476,0.22453023958951235,0.4255654448643327,-0.5409179967828095,-0.7187791345641017,0.7163944388739765,0.5829905262216926,-0.6555628343485296,-0.6483556926250458,-0.9979729517363012,0.13381439819931984,0.43953953171148896,-0.5548209948465228,0.9190439325757325,0.7500758306123316,-0.8603572100400925,-0.6411686511710286,-0.4795634844340384,0.5954390149563551,-0.43329013604670763,0.2703300570137799,-0.8263221946544945,0.4868383421562612,0.5383968180976808,0.44911214150488377,0.8925496195442975,0.9262884831987321,0.7363956752233207,0.763780118431896,-0.09317458281293511,0.9449767740443349,-0.411211300175637,-0.4338533813133836,-0.4351746109314263,-0.06328772660344839,0.4862244105897844,-0.5517431376501918,0.004948306363075972,0.08496252121403813,0.3772426778450608,0.1972631416283548,-0.026978328824043274,0.9895175793208182,0.20406876411288977,0.6563883479684591,-0.7607782161794603,0.06570280157029629,0.5544214379042387,0.057260483503341675,-0.1752418470568955,-0.005187781993299723,0.20393931167200208,0.5713571738451719,-0.8988586962223053,0.11847120756283402,0.35621863789856434,0.5728638749569654,-0.03754164185374975,0.5303883561864495,0.1580399600788951,-0.612582630943507,-0.2724897237494588,-0.2922300845384598,0.2184957475401461,-0.011652229819446802,-0.0050493874587118626,-0.7763587678782642,-0.11692788358777761,0.5499456725083292,0.5628081294707954,0.4070736449211836,-0.15610260050743818,-0.8001682981848717,-0.8693748149089515,-0.6397371175698936,0.21142431162297726,0.6719222390092909,0.4071729751303792,0.30732548935338855,-0.05044941045343876,0.8243862804956734,-0.7557488866150379,-0.4825240671634674,0.6631586533039808,0.25591664342209697,-0.9679656811058521,-0.1068310672417283,0.35828220285475254,0.6498126168735325,-0.21389649529010057,0.33500230545178056,0.7646732679568231,-0.07079228153452277,-0.7768810633569956,-0.8035543593578041,-0.1263486216776073,0.6310383565723896,0.994696319103241,-0.7567199449986219,0.16548888524994254,-0.9378277701325715,0.14491927856579423,0.7303733020089567,-0.5104315662756562,0.8433325365185738,0.23657708568498492,0.814514699857682,-0.02272720681503415,-0.5913377325050533,-0.6811761977151036,0.6282562152482569,-0.6160635119304061,0.7486997228115797,0.2857089163735509,0.2718923348002136,0.7213618834502995,0.8788923257961869,-0.8963124621659517,-0.35398998111486435,0.8411712204106152,0.742127878125757,0.99527996359393,0.8177500441670418,-0.7892079851590097,0.21542448177933693,-0.8534080614335835,-0.6087713744491339,0.08799667842686176,-0.894515564199537,0.7070374898612499,-0.6292120674625039,-0.3172803604975343,-0.3038636418059468,0.9242557045072317,-0.2814169996418059,0.4623546991497278,-0.3541742479428649,0.4697367283515632,0.04741749493405223,-0.35453036334365606,-0.1577478926628828,0.3664881526492536,0.7240514648146927,-0.8495095279067755,-0.7526445030234754,-0.5360656199045479,0.7160692359320819,-0.5041713095270097,-0.09992508124560118,0.7650821572169662,-0.19455146556720138,0.43165878020226955,0.7869190969504416,-0.2560389982536435,0.2481639157049358,0.7567621888592839,-0.24819352198392153,-0.24006179720163345,0.15796660911291838,0.806215463206172,-0.5002904781140387,0.8979909890331328,-0.8825626745820045,0.05419764155521989,-0.9413410765118897,-0.9359169523231685,-0.16297854576259851,-0.6639816332608461,0.8664013398811221,0.7148930411785841,-0.22945025330409408,0.8860377008095384,-0.32477170415222645,0.07494083372876048,0.627946371678263,0.3046951415017247,0.25237709702923894,0.678035247605294,0.8456374630331993,-0.3223830694332719,0.5927786994725466,-0.34910435462370515,0.9101208932697773,0.6462395112030208,0.483383200597018,-0.10197321744635701,0.0018703793175518513,-0.42162824189290404,0.21792353317141533,0.8764367247931659,0.7667824919335544,0.6112988195382059,-0.873204059433192,-0.37414677580818534,-0.022368450183421373,0.5077545517124236,0.8297539385966957,0.9931236309930682,0.39358001574873924,-0.849978213198483,0.8365830453112721,0.0824247463606298,-0.11732316389679909,-0.16550743393599987,-0.4585231766104698,-0.6378241800703108,0.04517613723874092,0.45631987461820245,-0.8950765333138406,-0.06306439451873302,0.6735840630717576,0.013319039717316628,-0.9926444380544126,0.25070364959537983,-0.5618514153175056,-0.5116784749552608,0.891469394788146,-0.43749579042196274,-0.8500135964713991,-0.18648978555575013,0.7093076566234231,-0.5333819915540516,0.5295658544637263,0.19207142107188702,0.4935479131527245,-0.1418870436027646,-0.9698562319390476,-0.8753612278960645,0.8420289782807231,0.14749971916899085,0.17046582559123635,-0.45654343999922276,-0.8456398705020547,-0.004144478123635054,-0.3339055925607681,0.8741230946034193,-0.4016187316738069,-0.7125084209255874,0.4429786615073681,0.944044126663357,0.49296783842146397,-0.7717853672802448,-0.029696057084947824,-0.9465746176429093,0.7085873270407319,0.3251698622480035,0.202828339766711,-0.26015177741646767,-0.32459289440885186,-0.404590530321002,0.828727547544986,0.459879111032933,0.9133045496419072,0.5311621427536011,-0.1028754054568708,0.8072803509421647,-0.7131772544234991,0.26339475298300385,0.31913486728444695,0.692698351573199,-0.04331438336521387,-0.037351787090301514,0.8308741883374751,0.20222840690985322,-0.8152919113636017,-0.1179111897945404,0.03274559276178479,0.9768561888486147,-0.19100647885352373,0.23539877962321043,0.12174516171216965,0.05241029383614659,-0.4963307077996433,0.9603626392781734,0.3342991047538817,0.2580133471637964,0.16748231323435903,-0.2564431824721396,-0.18681809259578586,0.37903143325820565,-0.2213442181237042,-0.5050604403950274,-0.5478873858228326,0.4363558990880847,0.6089793420396745,0.758139980956912,-0.7388671319931746,-0.16563943959772587,-0.6376712885685265,-0.15945348050445318,0.9801868866197765,0.19276537001132965,-0.817721726372838,-0.5531099452637136,0.11546962847933173,-0.6318001374602318,0.07844062568619847,0.19646496325731277,-0.11624248186126351,-0.2840073565021157,0.29778438061475754,0.6256070150993764,0.9997822558507323,0.2488720747642219,0.9076584526337683,-0.8881754064932466,0.024298992939293385,0.593996690120548,-0.20210871333256364,-0.713086114730686,0.9693734492175281,0.2626859247684479,0.7841818500310183,-0.906340969260782,-0.778284905012697,-0.12241118354722857,0.5732854432426393,-0.9617103757336736,0.24164140922948718,0.2802391368895769,-0.50329500855878,0.42465363489463925,-0.238485477399081,0.8440820053219795,-0.9553378974087536,-0.6377407792024314,-0.5382430320605636,0.9105958598665893,-0.5113719087094069,-0.021640098188072443,-0.4220008170232177,-0.17137246765196323,-0.6065101171843708,0.8387722512707114,-0.5797660555690527,0.3883332796394825,0.6428804155439138,0.34909649565815926,-0.6364026996307075,-0.04239067994058132,-0.8344706781208515,0.5274612908251584,0.15197502309456468,-0.7890139017254114,-0.7108812816441059,0.07971151219680905,-0.37774699134752154,0.0077512385323643684,0.75905123911798,0.33080992521718144,-0.8925847788341343,-0.4111362989060581,0.870822208467871,0.26444821851328015,-0.13902421295642853,0.05049417167901993,0.09827502258121967,0.2267243880778551,-0.87197897862643,0.5491279568523169,-0.7765778196044266,0.24251769809052348,0.5073878662660718,0.42268989933654666,0.8212939980439842,0.9596395180560648,0.5457485294900835,-0.9010944180190563,-0.6574520538561046,0.17733917757868767,-0.7382556451484561,-0.6987447557039559,0.7499190750531852,0.5824414622038603,-0.3165620001964271,0.5483651179820299,-0.2592705409042537,0.5389803554862738,0.8143596560694277,0.5294562387280166,0.013560506980866194,-0.23702635895460844,-0.15310223633423448,0.9736709427088499,-0.8166932608000934,-0.4714664597995579,-0.3579683257266879,0.890855539124459,0.6220438499003649,0.4948236686177552,0.9880351996980608,0.014948440715670586,0.39784290036186576,-0.05676313955336809,0.5354101848788559,0.508990278467536,-0.19418983394280076,0.1893513835966587,0.1832918138243258,-0.7294014790095389,-0.4893663236871362,-0.339157332200557,-0.06963328877463937,0.5417031878605485,-0.21970785642042756,0.07210432877764106,-0.32224085880443454,0.031671775970607996,0.518987940158695,-0.34142792131751776,0.49515045061707497,-0.30242454167455435,0.1124997679144144,-0.25286313332617283,-0.7079313164576888,0.7441844963468611,-0.926353701390326,-0.579500793479383,0.07213430386036634,-0.4917219872586429,0.6168950712308288,-0.8002230701968074,0.3834818135946989,-0.6758850212208927,-0.7607275764457881,-0.8460178701207042,0.8762724078260362,0.09473724337294698,-0.8827472855336964,0.4745492278598249,-0.8628728142939508,0.985674427356571,0.0022448920644819736,0.011215149890631437,-0.651551547460258,0.7805888415314257,-0.5888645122759044,0.6477499348111451,0.7618174212984741,0.22525820834562182,0.010840166825801134,-0.4097692216746509,-0.011403349228203297,0.6649209125898778,0.8172852112911642,-0.749823787715286,0.04782966338098049,0.5790156745351851,-0.01233425922691822,0.7367619494907558,0.09167374717071652,-0.6370929726399481,0.15028749639168382,-0.48090921761468053,0.9938629195094109,0.8210905687883496,0.27238938538357615,0.49026270490139723,-0.10808843234553933,0.16495604533702135,0.3110380391590297,-0.025901956018060446,0.15835047652944922,0.8953197472728789,0.8453882778994739,0.8471135590225458,0.8690353664569557,0.204227059148252,-0.7253826609812677,0.5121846944093704,-0.3974891812540591,-0.851835600566119,0.3254836071282625,-0.5413106391206384,0.39514116011559963,-0.4217581283301115,0.400732412468642,0.04194170096889138,-0.6147590540349483,0.5335416686721146,0.07642839290201664,0.29891387606039643,-0.6303680776618421,0.13410593150183558,-0.2170456238090992,0.015821274369955063,0.9631201345473528,0.15878673596307635,-0.749235363677144,0.5441023195162416,0.8652890082448721,0.1226208433508873,0.018688755575567484,-0.003761768341064453,0.4609119202941656,0.922206615563482,-0.5865936614573002,0.7180559644475579,0.5689076106064022,0.7458056202158332,-0.18976099509745836,-0.162712172139436,-0.9284976357594132,0.5106656006537378,0.2685925639234483,-0.28406116645783186,-0.8950318954885006,0.11679457826539874,0.8036177004687488,-0.5594560075551271,-0.7419599224813282,0.19023916637524962,0.2967122057452798,-0.3616964747197926,-0.40866222279146314,0.998260275926441,0.5609786943532526,0.16800940409302711,-0.9570773928426206,0.2641546307131648,-0.7959691104479134,-0.4045251286588609,-0.4617668492719531,0.7416784861125052,-0.9893579850904644,0.9364137328229845,0.2604444045573473,-0.4030906311236322,-0.7914915531873703,0.26006569573655725,-0.016566491220146418,-0.018008393701165915,-0.16204678965732455,-0.4448508443310857,0.11977736605331302,-0.15477384347468615,0.7612145124003291,-0.5422520684078336,0.7597096250392497,-0.5256589655764401,0.7987545072101057,0.38888540398329496,-0.6117663783952594,0.08281165733933449,-0.16121900733560324,-0.9859410203061998,-0.17213313607499003,-0.1671096575446427,-0.6473085205070674,0.025057019200176,-0.47468048706650734,-0.35210401145741343,0.8563152407296002,0.7942204060964286,-0.07757231825962663,-0.13213706156238914,-0.6185734607279301,0.8437099102884531,0.3456805138848722,0.6837112894281745,0.11028734827414155,-0.4438283327035606,0.8094778843224049,-0.8569242940284312,0.8836490414105356,-0.43875408405438066,-0.73289999878034,-0.7173437532037497,-0.47197911655530334,0.5492545701563358,-0.19523508613929152,-0.929684407543391,-0.21967478236183524,-0.23904536804184318,-0.9973966302350163,0.4397474848665297,0.39782095048576593,-0.8879186473786831,-0.15401334082707763,0.791540046222508,-0.7700968249700963,0.21496900683268905,0.0239674118347466,0.18417198583483696,0.0690111587755382,-0.4146292060613632,-0.7678959397599101,-0.018297306261956692,-0.308038595598191,0.9540917132981122,0.061910750810056925,-0.1554103591479361,-0.5770463398657739,0.15842442121356726,0.9059620327316225,0.9037896050140262,-0.4307529372163117,-0.3841941822320223,0.36162870144471526,0.4947249018587172,-0.016799199860543013,0.6132170604541898,-0.6447408408857882,0.06662685889750719,-0.011916478164494038,-0.8843001117929816,-0.2870896370150149,0.37371582025662065,0.1220474704168737,0.8903246787376702,-0.7821075022220612,-0.23330996837466955,-0.2783412728458643,0.5334762134589255,-0.5869829561561346,0.13663446251302958,0.041561920661479235,-0.3626527050510049,0.04553742939606309,-0.6405874183401465,0.0036331485025584698,0.8792191841639578,-0.3814413663931191,0.7815139396116138,0.7112950379960239,0.8344674594700336,-0.06111835688352585,0.9881650884635746,0.7599680162966251,0.718815931584686,0.19949101516976953,-0.07381831435486674,-0.8885872750543058,-0.3387865931726992,-0.16351061314344406,-0.1926984591409564,0.9165170481428504,0.923244399484247,-0.3551064641214907,0.9500068104825914,0.8992223958484828,-0.5091600711457431,-0.27994182985275984,-0.15915878023952246,-0.6722661824896932,-0.948147842194885,-0.15305541967973113,0.5149202048778534,0.9043704238720238,-0.18163281260058284,-0.596720171160996,-0.9591450239531696,0.5231213765218854,0.9366618972271681,-0.8541071377694607,-0.7400629138574004,0.33259471738711,-0.0605754554271698,0.8544872705824673,0.9695734633132815,0.7674945374019444,0.7729218592867255,0.3287274702452123,-0.09264482604339719,0.7671981975436211,0.7531693149358034,-0.961354757193476,-0.9193096933886409,-0.0015854453667998314,-0.9254716485738754,0.6439188858494163,-0.9646710008382797,-0.7992329262197018,-0.6349740903824568,0.4623732343316078,0.26963276602327824,0.48264740873128176,-0.5163135640323162,0.6850518393330276,0.158268584869802,0.5060337958857417,0.6466020587831736,-0.8393084593117237,0.3198920851573348,0.05746737727895379,-0.886645823251456,-0.3024805383756757,-0.4118440425954759,-0.97416986618191,0.5132637885399163,-0.6101009896956384,0.7343662856146693,-0.031447470653802156,-0.2624458707869053,-0.9966603731736541,0.3869575383141637,-0.034297974314540625,0.8411828819662333,-0.3188103437423706,-0.9843041049316525,-0.5986581896431744,0.731065752916038,-0.530385562684387,0.3071614280343056,-0.27886860677972436,-0.03790616989135742,-0.22514943312853575,0.8066256581805646,0.6340112630277872,-0.38333809515461326,0.2845151615329087,-0.729840197134763,-0.7068630368448794,-0.21637999545782804,-0.019773933105170727,-0.6272435495629907,0.6505296039395034,0.5349598466418684,0.13000174472108483,-0.6248363750055432,-0.33118555741384625,0.8786296877078712,-0.33941124100238085,0.6332565452903509,0.5094482582062483,0.35820945678278804,-0.11131307994946837,0.06066337879747152,-0.6809667162597179,0.3908885130658746,-0.8533726665191352,-0.866697515361011,-0.9919400624930859,0.803118612151593,0.5838792962022126,-0.38065408496186137,0.2741009402088821,0.3494568527676165,0.8833591411821544,-0.8357071690261364,-0.9777992572635412,0.20388653129339218,0.12105048401281238,-0.19827313674613833,-0.2176980897784233,0.7166821090504527,0.3642492052167654,0.7118682409636676,0.02096652751788497,0.6655072425492108,0.03720253147184849,-0.8262889971956611,-0.023838417138904333,0.12595042865723372,0.7569825178943574,0.48785410169512033,-0.11404682882130146,-0.0021936451084911823,0.8799523073248565,0.2008981453254819,0.8028751187957823,-0.6183572942391038,-0.5534995659254491,-0.08546220790594816,0.10179523006081581,-0.9008085834793746,0.44092404935508966,0.5404832605272532,0.7066918397322297,0.7306895996443927,-0.143369700293988,-0.1791212521493435,0.11122125387191772,0.638682087417692,0.7409238484688103,-0.3187102759256959,-0.3107372745871544,0.903215148486197,-0.33393151639029384,-0.9197950372472405,-0.35440913029015064,-0.3418320631608367,0.8252910845912993,0.2818514406681061,-0.046740383841097355,0.5991627164185047,-0.642527821008116,0.45046627009287477,0.872693526558578,-0.06252183299511671,-0.5301245683804154,-0.9012512895278633,0.5589653681963682,0.5590178710408509,0.592720759101212,0.678980388212949,0.7505822358652949,0.437809597235173,0.050182503182440996,0.4926332710310817,0.5283687049522996,0.18524787621572614,-0.28641677321866155,-0.04784830054268241,-0.6598011245951056,-0.9842621865682304,-0.15049290610477328,0.2633656421676278,-0.1766990339383483,-0.6490790727548301,-0.5977562735788524,-0.876452898606658,0.09667628537863493,0.5764625463634729,-0.38629074255004525,-0.5464710593223572,0.29946329863741994,-0.9429970355704427,-0.4874777803197503,-0.21738323895260692,0.14284587651491165,0.6027544620446861,0.17373556271195412,-0.4847839171998203,-0.23665930470451713,-0.3870818358846009,0.448878085706383,-0.479284408967942,0.7943688272498548,0.8025005953386426,0.37263831263408065,-0.3858991041779518,0.4744179197587073,0.32582110399380326,-0.5896678129211068,0.2921477467752993,-0.3440672312863171,-0.6759061948396266,0.24314186489209533,0.5524282758124173,0.285027451813221,0.7169583211652935,0.913495983928442,0.38694922160357237,-0.2448537931777537,0.4270001305267215,-0.7435279409401119,-0.7085857889614999,0.32269827043637633,-0.542249130550772,0.372388978023082,0.04624390136450529,0.1628834567964077,0.13570287777110934,-0.5948340548202395,0.22230114694684744,0.8286178708076477,0.3837206931784749,-0.742084133438766,-0.43523893458768725,-0.8046523691155016,-0.6668712208047509,0.2457493394613266,-0.6532212821766734,0.48104551946744323,-0.8282759529538453,0.2200384116731584,0.21918062632903457,-0.5787385739386082,0.3826011107303202,0.082421132363379,0.9591831043362617,-0.08227642066776752,-0.4525543851777911,-0.742118033580482,0.12661226699128747,0.6301599279977381,-0.22385212127119303,0.7479990925639868,0.19516251189634204,0.9396087685599923,-0.7903808332048357,-0.03180604241788387,-0.578263325151056,0.23678440181538463,-0.33155029313638806,0.2717045876197517,-0.2847070377320051,-0.3625811142846942,-0.3956594942137599,0.3654536218382418,0.4360952517017722,0.267279549036175,-0.9594034953042865,-0.7924156226217747,-0.5802661781199276,-0.5166508872061968,-0.12431009393185377,0.8031743005849421,-0.90825752960518,0.6436891332268715,0.657081036362797,0.7401010068133473,0.018544049002230167,-0.20522789238020778,0.14745486760511994,0.9453286123462021,0.757983151357621,-0.897819512989372,0.2953303186222911,-0.7641883455216885,-0.7282647867687047,-0.9907022975385189,0.2819528393447399,-0.46015830524265766,-0.806485231500119,-0.5987290455959737,-0.07440434489399195,0.47145697427913547,-0.17195047717541456,0.16521787643432617,-0.5052734431810677,0.8055799221619964,-0.8327866797335446,-0.19236849155277014,0.9928019437938929,-0.4207515097223222,0.9894571853801608,0.3263665377162397,0.20390443364158273,0.925385411363095,-0.29794336343184114,0.5688775507733226,-0.3902235156856477,-0.9310943917371333,0.2005650121718645,-0.8740907460451126,-0.476212773937732,0.24549396708607674,-0.24203929165378213,0.10868283407762647,-0.17104146722704172,0.4618240254931152,-0.5982842380180955,-0.43872246611863375,0.10674337157979608,0.9149431083351374,-0.957214305177331,0.5373292379081249,0.7730319695547223,-0.6224105223082006,0.9715496324934065,0.986809543799609,0.635659892577678,-0.4294678526930511,-0.8975341515615582,0.7908044462092221,-0.2714603301137686,0.512272116728127,0.9071806310676038,0.7178590083494782,-0.9096886543557048,-0.40362782357260585,-0.8840830265544355,0.45643784664571285,-0.8300439510494471,0.8075081999413669,-0.4908096808940172,-0.7214168081991374,-0.6230947314761579,-0.7318517304956913,-0.07880499865859747,-0.6880046213045716,0.3802222362719476,0.8849955513142049,0.7463835496455431,0.2522693178616464,0.2347493562847376,-0.2529108007438481,-0.23526488011702895,-0.9589066724292934,-0.43392292503267527,-0.3650227808393538,-0.8561977911740541,0.8488597478717566,0.5879397341050208,-0.25765329599380493,0.26185755943879485,-0.3787014717236161,0.436392143368721,0.6492460374720395,0.25703911669552326,-0.45067710475996137,0.6036326978355646,0.07694902271032333,-0.8031757152639329,-0.29143822006881237,-0.08437220752239227,0.872288933955133,-0.6023089201189578,0.7417583274655044,0.2494855783879757,-0.11885446449741721,0.6393315298482776,0.3648852719925344,0.6178403375670314,-0.9529405399225652,0.7424265001900494,0.7342136870138347,0.05387641070410609,0.08145631896331906,0.6165704443119466,0.7741634715348482,0.8817684683017433,-0.8195086065679789,-0.8438545241951942,-0.44754599779844284,0.30207257252186537,0.7032205360010266,-0.5622185808606446,0.1792230261489749,0.607251709792763,0.31467674393206835,-0.6431958312168717,0.3466483508236706,-0.6547589115798473,0.8704860145226121,-0.3013387080281973,-0.3284441898576915,0.2841624543070793,0.03874354623258114,-0.9706672737374902,0.7582589550875127,0.32452648831531405,0.15088109206408262,-0.9558146395720541,-0.42671485245227814,0.34420206490904093,0.9131573121994734,0.5601212587207556,0.585505707655102,-0.15579245565459132,0.3856060463003814,-0.4086361136287451,0.8504824531264603,0.8294584047980607,0.24544486356899142,-0.48677209485322237,-0.9232088606804609,0.7514412109740078,0.7602319079451263,-0.14385657664388418,-0.4496947950683534,-0.5973770981654525,0.5767841483466327,-0.5804087505675852,-0.39899973198771477,0.6849692249670625,0.7500268747098744,-0.8641143538989127,-0.5163094382733107,-0.3984068953432143,0.8705227877944708,-0.9779469654895365,-0.7562798210419714,0.23860124638304114,-0.6758719445206225,0.5888593560084701,0.7038732441142201,-0.605227142572403,0.7564999666064978,0.5890428093262017,-0.6660251757130027,0.7932395949028432,-0.50688495952636,0.4915982116945088,0.20095863286405802,-0.0045399973168969154,0.7457362907007337,-0.8264112118631601,-0.6402008598670363,-0.8140183030627668,0.4069327190518379,-0.07209330704063177,-0.9697029232047498,0.5553581370040774,0.9228280582465231,-0.12867659097537398,0.7894461243413389,-0.9303974118083715,0.6561313550919294,-0.8787335590459406,0.6775856129825115,0.9776163273490965,-0.14737926423549652,0.7083893599919975,0.6214720564894378,0.661683420650661,0.7764056143350899,0.34671773854643106,-0.31334996735677123,0.10398619621992111,-0.39790314715355635,0.16655653761699796,0.5488961511291564,0.4040341703221202,-0.9055301938205957,-0.9532255860976875,-0.8272946495562792,-0.5587732610292733,-0.7034079832956195,0.2750121490098536,-0.7045339210890234,0.6392609695903957,-0.7654161434620619,0.8552185841836035,0.6839574137702584,0.07899275189265609,0.7413768819533288,-0.931255929172039,-0.1368973609060049,-0.06456865277141333,0.4556932975538075,-0.9791386993601918,0.755352848675102,-0.6104932865127921,0.511431239079684,0.387219050899148,-0.9582759658806026,0.042587931267917156,-0.04008922493085265,-0.053546044044196606,0.8464208734221756,-0.1199058280326426,-0.4355331235565245,-0.2845613555982709,-0.12291889311745763,0.09195687994360924,-0.692289128433913,0.14042604714632034,0.06168473698198795,0.7305142041295767,-0.1867222678847611,-0.7977025453001261,-0.33835267508402467,0.7900751857087016,0.12860245443880558,0.9086296404711902,0.5662762401625514,0.19019459281116724,-0.6850129594095051,-0.7969955378212035,-0.1962198205292225,-0.26089263102039695,-0.44670680398121476,-0.4950208496302366,0.3566296431235969,-0.26334650442004204,-0.5574119789525867,0.9477313663810492,0.45039087580516934,0.9104137802496552,0.8297097855247557,-0.8915460505522788,-0.6296464088372886,0.6403183280490339,0.6745341438800097,-0.6854743515141308,-0.7512627318501472,0.46290831826627254,0.8350748792290688,-0.864683557767421,-0.5959130967967212,-0.9142976338043809,-0.21110691782087088,-0.9144604848697782,0.0656289467588067,-0.5905507490970194,0.6840757206082344,-0.3540263082832098,-0.3012930089607835,0.8913735658861697,-0.508320851251483,0.8411316466517746,0.4222495281137526,0.5292572770267725,0.4044051677919924,-0.8628806560300291,-0.9230184457264841,-0.786378494463861,0.3339778329245746,0.3623514794744551,0.916877812705934,0.061210429295897484,-0.4327520546503365,-0.06867367122322321,-0.047043316066265106,0.1175053776241839,-0.13816328207030892,-0.6234712000004947,0.877943804487586,-0.9102949220687151,0.3898175209760666,0.37000531796365976,-0.4084531869739294,0.13215452386066318,-0.797896683216095,-0.4991020723246038,0.32027295185253024,-0.5698883873410523,0.0792022617533803,0.595376047771424,-0.7016983493231237,0.3124068668112159,0.5738772540353239,0.17163067124783993,-0.007469731383025646,-0.07507529063150287,0.36077660974115133,0.032900331541895866,-0.9766941526904702,0.7405221886001527,0.9865921810269356,-0.41609239066019654,-0.2903035911731422,-0.4125649309717119,-0.7840163372457027,-0.9441956770606339,0.9943781509064138,-0.6395782176405191,-0.2528229020535946,0.49379160162061453,0.8150378693826497,-0.3268668451346457,-0.9161061709746718,-0.8009782070294023,0.3528531161136925,-0.24987870268523693,0.8286386649124324,0.3334328029304743,0.5886603025719523,0.5494740209542215,0.07530257944017649,0.586237053386867,0.3029248556122184,0.8691544663161039,-0.24335662461817265,-0.7722898628562689,-0.1948940735310316,0.97810975369066,-0.9014908047392964,0.7506775134243071,-0.7997696222737432,-0.33161411713808775,0.35513338539749384,-0.3877760865725577,-0.006115784868597984,0.479246255941689,0.07716584019362926,0.896625847555697,-0.9910527570173144,0.6658647181466222,-0.2798710595816374,-0.8813082524575293,-0.18587875831872225,-0.6231791414320469,0.19875251548364758,0.5188477002084255,-0.5630382634699345,-0.28642136976122856,0.9997353865765035,0.48139953007921576,0.33179072150960565,-0.1919561605900526,-0.42397076450288296,0.06403076648712158,0.3928872444666922,-0.7069223038852215,-0.39445838099345565,-0.5514722424559295,-0.36275626765564084,0.024809256196022034,-0.7397109749726951,-0.5644250568002462,-0.4950718474574387,-0.5725255669094622,0.28672056132927537,-0.7873406508006155,-0.10148811200633645,-0.8122444613836706,-0.5636126915924251,0.695886205881834,-0.8713237107731402,0.09177878824993968,-0.8051865622401237,0.025624295696616173,-0.8530049310065806,-0.3395875860005617,0.3622145354747772,-0.5263580507598817,0.08484732825309038,0.42518258886411786,0.5055699036456645,-0.9095687600784004,-0.21014726161956787,0.3666752050630748,-0.7763896081596613,0.012004679068922997,-0.5297351824119687,-0.7896139668300748,0.7524192053824663,-0.5067576072178781,-0.8118395139463246,-0.19223605375736952,-0.7306137685663998,0.3462224439717829,-0.8622160321101546,0.49183316389098763,-0.4736756389029324,-0.6057442482560873,-0.978227220941335,-0.6028630747459829,0.21671975124627352,0.13683510199189186,0.8826744523830712,0.6532084997743368,-0.4202345381490886,-0.30387132335454226,-0.6053326283581555,0.8688826956786215,0.848037080373615,-0.10599254816770554,-0.3338189451023936,-0.7874369868077338,-0.18196589965373278,0.23913954896852374,-0.87895711325109,-0.5441367281600833,-0.4453747938387096,-0.7065757173113525,-0.8644244302995503,0.31371715292334557,0.38169105211272836,0.3555864919908345,0.6531311986036599,0.4486597483046353,0.8022945057600737,-0.5195426964201033,0.9597696987912059,-0.45726962573826313,0.5709423292428255,-0.3677357085980475,0.7753665442578495,-0.7659628950059414,0.42602123925462365,-0.13686317764222622,0.2002191012725234,0.6324726166203618,-0.5911756623536348,-0.0070508369244635105,0.20958723593503237,-0.860953161958605,0.42757276771590114,-0.29323337599635124,0.06299176393076777,-0.5016776397824287,0.346975761000067,-0.023792581167072058,0.4453986082226038,-0.9266103757545352,-0.33023951342329383,0.30779665568843484,-0.2097857384942472,0.3852120288647711,0.3086927467957139,0.6423633596859872,-0.42200928274542093,-0.1197791462764144,0.3784628380089998,-0.8610922116786242,-0.14428961835801601,0.7554989699274302,0.9832435217685997,0.29027418000623584,-0.27244360372424126,-0.32938524009659886,-0.5728843179531395,0.9778598765842617,-0.7052788641303778,-0.09857597900554538,-0.5439972160384059,0.2329797614365816,-0.6149669457226992,0.8797074588946998,-0.712077948730439,0.7003446514718235,0.12603874783962965,-0.19246269622817636,-0.8334775944240391,-0.19717076560482383,-0.15725182229653,0.09413874987512827,-0.4346060734242201,0.9410238545387983,-0.5201052841730416,-0.7576987962238491,0.9182024290785193,0.8954611388035119,0.6609084475785494,0.16272898530587554,-0.388588719535619,0.08832113072276115,-0.5029927417635918,0.7920657298527658,0.38666128693148494,-0.17446104483678937,0.015428464859724045,-0.8494145306758583,-0.1681444332934916,0.4728037887252867,-0.4755269167944789,0.2663661758415401,0.6042769481427968,0.996909458655864,-0.574065298307687,-0.8315048003569245,-0.654850993771106,0.23345490917563438,0.4420646824873984,0.8322001905180514,-0.2919917148537934,-0.39545898977667093,0.06548698525875807,-0.2440484701655805,0.14475840562954545,0.12257487792521715,0.501837283372879,-0.8648406728170812,-0.4450128567405045,0.2475128434598446,0.6339117703028023,0.7857622401788831,-0.20927136950194836,-0.3688239250332117,0.44129999121651053,-0.12865746626630425,0.644765701610595,-0.39681899920105934,0.7607810795307159,-0.8479263479821384,-0.1596937612630427,0.709059271030128,-0.7165275271981955,0.5416762591339648,-0.5714132222346961,0.3229380124248564,0.5856404076330364,-0.35981372045353055,-0.7719838377088308,-0.5917963809333742,-0.0013784472830593586,0.4220058210194111,0.6386336511932313,0.7177408873103559,0.5499531789682806,-0.6294858520850539,0.9852655855938792,-0.022805006708949804,-0.08476965967565775,0.29649852123111486,0.9781570285558701,-0.33276037918403745,-0.6221637958660722,0.8485975777730346,0.0712395147420466,0.46607020823284984,0.15680808573961258,-0.5953061492182314,-0.6051293425261974,-0.2751228157430887,-0.2328683347441256,0.3356991410255432,-0.13840273395180702,0.5283815553411841,-0.9907309892587364,-0.11386983236297965,0.3358926405198872,0.12834001472219825,0.04900800995528698,-0.5172348250634968,-0.7601522067561746,-0.4361459040082991,0.9530743476934731,-0.007782689295709133,-0.549738603644073,-0.860771912150085,-0.7328844298608601,0.9063612674362957,-0.9827030366286635,0.0010762284509837627,0.9482524958439171,-0.8287577126175165,-0.4385890499688685,-0.8582755005918443,-0.3944264301098883,0.4185351165942848,0.3116293018683791,0.22377059422433376,-0.13910088036209345,0.16312517784535885,-0.4135844320990145,0.34957132674753666,0.017110059037804604,0.7430253541097045,0.04725885670632124,-0.48884645104408264,-0.4167347392067313,-0.9308395441621542,0.9044868047349155,-0.3544248342514038,0.8925585723482072,0.8791092205792665,-0.38115468667820096,-0.8985884953290224,-0.44640968600288033,-0.7168529825285077,-0.3314276831224561,0.8808881556615233,0.42736473958939314,-0.21891540568321943,-0.004856815095990896,-0.2023536115884781,0.1352080935612321,0.05997712258249521,-0.5048362235538661,-0.6822496610693634,0.1299785766750574,-0.9843060956336558,-0.1836315980181098,-0.42230400862172246,-0.44974152417853475,-0.1895143953152001,-0.22744645969942212,0.7380668725818396,-0.8867862676270306,-0.45675428211688995,0.20219156425446272,-0.21203872468322515,-0.33682306529954076,0.25073928432539105,-0.4896233775652945,0.8053073496557772,-0.013929490931332111,-0.3766019740141928,0.4773755897767842,0.21287495642900467,0.6346815438009799,0.9104637065902352,-0.11034129932522774,-0.10578665789216757,-0.07884613843634725,-0.34520623134449124,-0.6500496552325785,-0.2140425448305905,0.20198927354067564,-0.29082788759842515,-0.7016288759186864,-0.5949766072444618,-0.9861366557888687,0.2930937400087714,-0.9740002620965242,-0.9986125840805471,-0.41198458801954985,-0.5138479550369084,0.025617247447371483,0.7368266279809177,-0.593806249089539,-0.6041066395118833,-0.5955520845018327,0.8247531992383301,0.6736358441412449,-0.2603962509892881,0.7997424569912255,0.3564074761234224,0.415357768535614,0.02862040000036359,-0.7050232761539519,-0.3981721675954759,0.3767067100852728,0.36995779210701585,0.13573976373299956,-0.8656050595454872,0.5569012584164739,-0.8757789372466505,0.3752227034419775,-0.8423464922234416,-0.2651887256652117,-0.7917050602845848,-0.30859029898419976,0.6180310444906354,-0.8114375844597816,0.39925682358443737,0.31567606469616294,-0.3929186942987144,-0.24313358310610056,-0.27451009629294276,-0.8396621728315949,0.06896124687045813,0.8328018607571721,0.7790537672117352,0.8859501173719764,0.7496750489808619,-0.046112227719277143,0.08503014128655195,0.9728020448237658,0.2292320914566517,-0.8600332741625607,0.24537261575460434,0.3500279230065644,0.7509272042661905,0.3280752068385482,-0.7061366867274046,-0.9863551836460829,-0.9327946999110281,-0.9240001607686281,-0.8161353687755764,-0.7169815921224654,0.3671668549068272,-0.521760752890259,-0.41104402439668775,0.3340586833655834,0.856951171066612,-0.7740114671178162,0.16423343401402235,0.3524588621221483,-0.24444271391257644,-0.8214431232772768,0.2723074723035097,0.3246229011565447,0.4143624468706548,0.01419565686956048,0.05457658972591162,-0.6363077904097736,0.597177161835134,-0.11739429458975792,-0.15838489774614573,0.6027766489423811,-0.30691607063636184,0.4182286146096885,-0.10412411577999592,0.8846945553086698,-0.3619148274883628,0.5103505467996001,-0.8067216998897493,-0.573422234505415,0.015003421809524298,0.3519789054989815,-0.12644323706626892,0.5258649955503643,0.08749976893886924,-0.6586421681568027,0.836379733402282,0.5896835392341018,0.04563443176448345,0.6653347131796181,-0.8104999889619648,-0.5458948290906847,-0.3688231282867491,0.8730802945792675,0.24838126683607697,-0.8188310712575912,0.8640260272659361,0.27381741255521774,0.7479924275539815,-0.05996304843574762,0.3315365514717996,0.228393885307014,-0.421645097900182,0.09303428512066603,-0.20464360667392612,-0.059260961599648,0.07256927667185664,-0.15926464227959514,-0.2198216300457716,0.33914192486554384,-0.2883323486894369,-0.5896800723858178,-0.1929404577240348,-0.5043735997751355,0.0285813775844872,0.037368988152593374,0.46229828894138336,0.8498670486733317,-0.7669635745696723,0.32723134383559227,0.3005423480644822,0.29978408152237535,-0.44651211705058813,0.17387053882703185,0.8317385665141046,-0.5285415165126324,0.5788921522907913,0.7891500587575138,0.17979685124009848,-0.08955695573240519,-0.4151166914962232,0.5155511652119458,0.6947765783406794,0.6421849615871906,-0.2981588807888329,0.3026850316673517,0.3965476881712675,0.4221501164138317,-0.12413982674479485,-0.8725946070626378,-0.1051134318113327,0.41509968787431717,0.5338265569880605,0.7312590586952865,0.502447109669447,-0.2758922912180424,0.521686190739274,-0.12175985053181648,-0.427483728621155,0.39638754120096564,0.3705160906538367,0.9501799470745027,0.45560161769390106,-0.6683882712386549,0.6647958825342357,-0.5814337213523686,0.14052281342446804,-0.10699950810521841,-0.6416425704956055,0.5124291013926268,0.29062470607459545,-0.8953064195811749,-0.9192011230625212,0.6581452703103423,0.619916885625571,-0.269198358990252,-0.981845885515213,0.5281188376247883,0.40338888159021735,-0.46250492706894875,-0.4311441578902304,0.8718555481173098,-0.0866858190856874,0.6612994545139372,0.5822966429404914,-0.9938591001555324,0.5565310856327415,0.5192638225853443,0.14876011572778225,0.9088946613483131,-0.3612095252610743,-0.9625479117967188,-0.3386148661375046,0.07422012463212013,0.255602884106338,0.4656878150999546,0.492773013189435,0.3755873693153262,-0.08937097899615765,0.6504374644719064,0.7361865849234164,0.09134976053610444,0.1046270914375782,0.5049440525472164,0.3736971262842417,0.5069508380256593,-0.3561194883659482,0.1176315788179636,0.33347529312595725,0.35015753423795104,0.14850005321204662,-0.6824542917311192,-0.5753029552288353,0.9659463693387806,-0.2865303657017648,-0.2613868750631809,-0.9784107538871467,-0.7017611358314753,-0.13090252736583352,0.7416043081320822,-0.4310984802432358,0.5001468984410167,-0.1829423843882978,-0.5404914957471192,-0.5370592824183404,-0.7967342822812498,0.999412595294416,-0.1775261969305575,-0.2895478131249547,-0.44960803305730224,0.9212155309505761,0.7878571678884327,0.6126975486986339,0.7180929575115442,0.5787906893528998,0.3992408593185246,0.5837200591340661,-0.24884455557912588,0.8302260697819293,0.4456051653251052,0.9323017615824938,0.48852459993213415,-0.7940358920022845,0.803358725272119,-0.28791296435520053,0.556947207543999,-0.17054355749860406,-0.2873491123318672,0.5608517075888813,-0.29283884121105075,0.9350390480831265,0.8530760994181037,0.5193269709125161,-0.18054235959425569,0.09676239965483546,0.5458930018357933,0.46495885448530316,-0.36461972119286656,0.15606011869385839,-0.6763082388788462,-0.9837147346697748,-0.28958550887182355,-0.8719243858940899,0.353684363886714,-0.6803553719073534,0.7896273280493915,0.18535043811425567,0.6000246019102633,0.40167662454769015,0.43449267465621233,-0.9450719668529928,-0.9280897164717317,0.3697328637354076,-0.07703237887471914,-0.5485625378787518,0.5659101763740182,0.9503154153935611,0.5325179230421782,-0.8558118557557464,0.988891146145761,0.6922480873763561,-0.9961519758217037,-0.7927724146284163,-0.6225693430751562,0.38021606719121337,-0.47152182227000594,-0.9714353056624532,0.983900735154748,0.649278701748699,-0.1239437977783382,0.8772697052918375,0.03460497874766588,-0.8217275221832097,0.8880851403810084,0.1580771072767675,0.3411781615577638,-0.8776554181240499,0.01070599164813757,-0.9008868229575455,0.09026709431782365,0.8048306335695088,0.29138694191351533,-0.14884544676169753,0.33500985568389297,-0.9557658797129989,-0.7564282342791557,-0.3629711386747658,-0.891144756693393,0.4044150672852993,-0.7003622185438871,0.374026894569397,0.7662279498763382,0.4064200553111732,0.3320967126637697,0.8418603409081697,0.4555635624565184,-0.9474865309894085,-0.09666618146002293,-0.0038340422324836254,0.7413896252401173,0.34536382742226124,0.24584550969302654,-0.19857935421168804,0.05000577727332711,-0.7587343673221767,-0.3517182944342494,0.05467258766293526,-0.9121942277997732,0.6316229067742825,0.5169872939586639,0.9497548104263842,0.6037389286793768,-0.9037657165899873,0.07258011121302843,-0.7459609750658274,0.48328248457983136,-0.4814052917063236,0.2764691635966301,0.9079032656736672,-0.6599463261663914,-0.59668447682634,-0.7168947523459792,-0.006657036021351814,-0.9939616248011589,0.84308469761163,0.4226486855186522,-0.7476898054592311,0.5904451184906065,0.9220398939214647,-0.19052524352446198,0.22552482318133116,-0.9139255490154028,0.15226942813023925,0.23995692562311888,-0.06842113193124533,-0.5437765307724476,-0.40364370215684175,0.875218512956053,0.8651930256746709,0.22639332385733724,-0.04830728564411402,-0.047173913102597,0.6378890573978424,0.9280454562976956,-0.19670969527214766,-0.12113125203177333,0.6394657772034407,0.37274560797959566,-0.6229227930307388,0.7661559004336596,0.18547968287020922,-0.5738677033223212,-0.6673679570667446,-0.3327500093728304,0.06695233099162579,0.3633440863341093,0.32484920928254724,-0.23071171157062054,-0.9291483098641038,0.34286539908498526,0.5719260415062308,0.7137469756416976,0.14979789033532143,-0.9587914934381843,-0.5540542895905674,-0.5907535287551582,0.2618847922421992,0.4396557919681072,0.21220898674800992,0.8240942624397576,0.5488419118337333,-0.12795684859156609,0.14779742108657956,0.31059517757967114,0.638885023072362,-0.46057514380663633,0.6435714447870851,-0.8423260482959449,-0.9675089265219867,-0.24223635299131274,0.021121835336089134,-0.5885574198327959,0.3031354211270809,-0.5317060542292893,0.5716281072236598,0.33698146138340235,0.17594550736248493,0.40673295268788934,-0.2653009966015816,-0.5310032498091459,-0.30175300501286983,0.6335669960826635,0.7686966988258064,-0.5685183294117451,-0.7111854613758624,-0.5524165793322027,-0.08874157583341002,-0.28282502572983503,-0.07808554591611028,0.341470149345696,-0.429241762496531,0.7600970696657896,0.1638137842528522,0.551384280435741,0.16135761607438326,-0.21797549445182085,0.9761284166015685,-0.8192587201483548,0.09052931750193238,-0.4590971451252699,0.40127991046756506,0.8356136833317578,0.21113977255299687,0.7408770574256778,-0.22342218086123466,0.11276539880782366,-0.762438515201211,-0.7270241691730917,-0.057005337439477444,-0.050749112386256456,-0.22847298113629222,-0.4374182350002229,0.8558855666778982,-0.8632139493711293,-0.9249884295277297,0.723633011803031,0.8817340945824981,0.43862454732879996,-0.9586639171466231,-0.08725448325276375,-0.4587053903378546,-0.2305692550726235,0.495467699598521,0.6051633763127029,-0.7982185310684144,-0.07634268654510379,0.31790691753849387,-0.661459038965404,-0.24030301440507174,0.06722112419083714,0.07816018164157867,0.1462490134872496,-0.733005388174206,-0.8905259845778346,0.1352444882504642,0.564986580517143,-0.5951643008738756,0.468554156832397,-0.15577325085178018,0.6101113073527813,-0.6853766748681664,-0.8177751884795725,-0.5678681894205511,0.14295730600133538,-0.5173286898061633,0.3309302842244506,-0.6912398571148515,0.678762742318213,0.5969142373651266,-0.20495504699647427,0.25129159819334745,-0.7885171542875469,-0.8419055435806513,-0.938227946870029,0.1452960609458387,0.3777888719923794,-0.9730596644803882,0.337895963806659,-0.5149617209099233,-0.9119652756489813,-0.15162801928818226,-0.7523571671918035,-0.4238900295458734,0.8193433270789683,-0.14780192030593753,0.4759594830684364,-0.5969731998629868,0.7505861944518983,-0.401714903768152,-0.7092352085746825,0.9073688029311597,-0.37680105259642005,0.2334174462594092,-0.30657848715782166,-0.009096937719732523,-0.2362045361660421,0.9539480083622038,-0.1434488147497177,0.8603921309113503,0.45588625129312277,0.5843427893705666,-0.6906659435480833,-0.11315544554963708,0.4886119640432298,0.25113196624442935,-0.393171573523432,0.04623127356171608,-0.6128695206716657,-0.268357802182436,0.13541062409058213,-0.933745973277837,0.47362701408565044,-0.5316909370012581,0.36484828731045127,-0.45715512707829475,0.8567025703378022,-0.005386971868574619,0.9125090804882348,-0.07169015426188707,-0.9797272337600589,0.20336929941549897,0.3871086034923792,-0.3137984783388674,0.4510337649844587,0.27762720873579383,-0.2742506633512676,0.681799054145813,0.6005283491685987,-0.3272180166095495,0.211671173106879,0.6763470033183694,-0.7291428851895034,0.5603752019815147,0.48406024696305394,-0.3137289355508983,0.505097696557641,-0.9655691501684487,-0.21316820569336414,-0.04867494152858853,-0.2239965875633061,0.7809537947177887,0.1337501280941069,-0.9914548574015498,0.5247409204021096,-0.21037826128304005,-0.34204926574602723,-0.30715961614623666,0.357912328094244,-0.41429630341008306,-0.4506271365098655,-0.771001648157835,0.8751124031841755,0.26512530678883195,-0.7635425091721117,-0.7934828605502844,-0.7621019543148577,0.40316901775076985,-0.9088248522020876,0.14311340637505054,-0.4463970069773495,-0.5766137768514454,0.6823475286364555,-0.8157147788442671,-0.3234889921732247,0.5323235103860497,-0.8652332788333297,-0.8780551734380424,-0.42861479008570313,0.025835962500423193,0.18394792545586824,-0.8852257654070854,-0.0790003351867199,-0.3558885529637337,-0.959035090636462,0.9443822759203613,0.4166132747195661,0.9031934160739183,-0.40101916436105967,-0.8615942387841642,-0.05101851932704449,0.9360203421674669,0.6255990019999444,0.7385961515828967,-0.8120668539777398,-0.6908037224784493,0.8604966551065445,-0.9081605956889689,0.4972772221080959,-0.9600638635456562,0.5007043508812785,-0.5126361483708024,-0.8757851282134652,-0.7796779186464846,-0.72188078192994,-0.7295111981220543,-0.8003870658576488,-0.34551357803866267,0.2434417037293315,-0.2936962153762579,0.7637764932587743,-0.4859695825725794,0.3189851907081902,-0.3658990100957453,0.04864481370896101,0.28122566966339946,0.8504256014712155,-0.06464212154969573,-0.9936859286390245,-0.9421286047436297,0.9193485137075186,-0.8592260372824967,0.15060212137177587,-0.9034141260199249,-0.794266807846725,-0.5268561085686088,0.5805245386436582,-0.3417066470719874,0.7414315547794104,-0.019939527846872807,-0.7748247333802283,-0.25646785739809275,-0.45181347662582994,-0.12339696241542697,0.44719467451795936,-0.36813827604055405,-0.5459724850952625,0.1943500922061503,-0.3656860198825598,-0.07605135720223188,-0.7782977623865008,-0.9274653499014676,0.3362188171595335,-0.7754570594988763,0.6285448605194688,-0.6286016614176333,0.7642265483736992,-0.15353296557441354,-0.9723051828332245,0.8445160249248147,-0.03475157264620066,-0.5686409305781126,0.542878242675215,-0.8990895352326334,0.10059387190267444,-0.42241148138418794,-0.7555776964873075,0.5504711936227977,0.10938679100945592,-0.7771214242093265,0.37348576448857784,0.766116451472044,-0.8553741425275803,-0.3881157082505524,-0.7013747007586062,0.41054807137697935,-0.7003673929721117,-0.264091569930315,-0.5379576091654599,0.5394603852182627,-0.7235185876488686,-0.07239286880940199,0.5106612956151366,0.7643709960393608,0.4859526874497533,-0.2728049289435148,0.01366210775449872,-0.6953181675635278,-0.7702039182186127,0.7801420423202217,-0.6841009198687971,-0.46225441340357065,0.6503777904435992,-0.5900851460173726,0.4060101928189397,0.9267007745802402,0.6425309455953538,0.522177126724273,0.7507822690531611,0.14259475143626332,0.7465729047544301,0.07786825532093644,-0.9351812358945608,0.17319375975057483,0.0005879742093384266,-0.6677472707815468,-0.3121589799411595,0.5079868603497744,-0.34430619422346354,0.4747149823233485,-0.9372814535163343,-0.3621429307386279,-0.07900533778592944,-0.5279719210229814,-0.10755069274455309,-0.05478948773816228,-0.30027693742886186,0.14334087679162621,0.14088194072246552,-0.9340397119522095,-0.8987428094260395,-0.3229406769387424,0.9537098756991327,-0.15149172488600016,-0.6315517616458237,0.061133899725973606,0.6019126768223941,-0.008973184041678905,-0.6218751440756023,0.106699095107615,0.1465346235781908,0.9320569732226431,-0.6454782839864492,0.49738846765831113,0.5245088865049183,-0.29516533808782697,0.3846291280351579,0.14399902382865548,0.4246641527861357,-0.18742031883448362,0.9741978486999869,0.05387226399034262,-0.15519134094938636,0.5435182978399098,0.5016687288880348,-0.04751078551635146,0.8298988360911608,0.8449332723394036,-0.4313126797787845,0.49018616136163473,0.2871294808574021,-0.024234278593212366,0.3186428379267454,-0.5380783649161458,0.4202822814695537,-0.21797471353784204,-0.4834199738688767,0.048008942510932684,-0.14755972335115075,0.43211559392511845,0.5656977496109903,-0.8097514538094401,-0.5553461336530745,0.6932093598879874,-0.5684016030281782,-0.10562366340309381,0.08510376699268818,0.8864219430834055,-0.9978112755343318,-0.6531915408559144,-0.6261108256876469,-0.2492788564413786,0.2917130212299526,0.9506806856952608,-0.9700209121219814,-0.7345768236555159,-0.19026997312903404,0.7648836150765419,0.7314170892350376,-0.163638052996248,-0.7682251678779721,-0.14748260006308556,-0.19222446577623487,-0.4287762148305774,0.26382090616971254,-0.4053188683465123,0.4302473431453109,-0.2839267672970891,-0.30546037619933486,-0.3217710005119443,0.6104317749850452,0.22948947176337242,0.022932889871299267,-0.49258998315781355,-0.22461880138143897,-0.4672300196252763,0.01536219334229827,-0.6246779477223754,-0.9805198702961206,-0.7757955924607813,-0.38149939803406596,0.9489156980998814,-0.9877071711234748,-0.50538465147838,0.34870305098593235,-0.484705182723701,-0.7739227693527937,0.7498832228593528,-0.18139766668900847,-0.3645372367464006,-0.8689071834087372,-0.14169500581920147,-0.0860865986905992,0.9638757156208158,-0.10459850262850523,-0.9430341497063637,-0.8659570463933051,0.885840617120266,-0.9984338446520269,-0.9752760860137641,-0.42228219052776694,-0.614059932064265,-0.5298843490891159,-0.1615819321013987,0.7089284113608301,-0.09921002108603716,0.3275936348363757,0.7959221112541854,-0.00889803096652031,-0.0004888442344963551,0.9696272644214332,-0.23702723858878016,-0.8260136637836695,0.6608485882170498,-0.9071315941400826,0.3556040138937533,0.7003678069449961,-0.8422606103122234,-0.6257557673379779,-0.1507947314530611,0.11599866952747107,-0.041238012723624706,0.32020489079877734,0.02602658560499549,-0.4508594828657806,-0.33882558438926935,-0.7169187227264047,-0.10898734582588077,0.0612461781129241,-0.7318839263170958,-0.4090131027624011,0.9772453224286437,-0.5651265694759786,-0.4037194438278675,-0.23697465006262064,0.8613189174793661,-0.12162866769358516,0.8690355056896806,0.6952363857999444,-0.1628531590104103,0.1258873282931745,0.10563520574942231,-0.9800592795945704,0.8264175886288285,0.2470749500207603,0.7076093149371445,0.09728877292945981,-0.8039755150675774,0.9581638686358929,0.26127062831074,0.7449841792695224,-0.9385095136240125,-0.7314698826521635,0.850620097015053,-0.6338142585009336,-0.8694956861436367,0.19987824372947216,0.9309084000997245,0.4246747512370348,0.671162546146661,0.6628023912198842,-0.6247049635276198,0.9198934715241194,0.9121984015218914,0.7127869627438486,0.18985696928575635,-0.788568879943341,0.018563617020845413,0.4551600283011794,0.11822459055110812,0.021076354663819075,-0.5399076426401734,-0.20047891698777676,-0.6928438409231603,-0.03245592676103115,-0.7969487463124096,0.7040141192264855,-0.5629707956686616,0.23141984874382615,0.4933816618286073,-0.9243515529669821,-0.8803408080711961,0.7016793778166175,-0.8343165852129459,-0.9945650668814778,-0.7523522502742708,0.8932525273412466,0.8646385092288256,0.28731895238161087,0.5620435825549066,-0.5040098149329424,0.29187310952693224,-0.13498641969636083,0.3348984089680016,0.8606942296028137,0.028922876808792353,0.692306169308722,0.40430886251851916,0.4740261621773243,0.30671392334625125,0.31288292026147246,0.8946834458038211,-0.9585399278439581,0.5252969115972519,-0.08417418831959367,-0.5187992271967232,0.842560073826462,0.12479569250717759,0.5377567377872765,0.13719470985233784,0.6634811288677156,0.4896920653991401,0.0020555765368044376,-0.8771783844567835,0.3267359989695251,0.49852729495614767,0.10285891080275178,-0.5023567453026772,0.5133094559423625,-0.22045372752472758,-0.199785262811929,0.4382232176139951,0.08890490187332034,0.33572485391050577,-0.9808558570221066,0.23398306127637625,-0.7440819898620248,-0.11838160920888186,0.04763519065454602,0.9376906328834593,0.2820032937452197,0.2056748499162495,0.6174139436334372,0.06549813179299235,-0.20488997269421816,-0.8181033455766737,0.1590428650379181,0.9813277781940997,0.8764523039571941,0.4866355713456869,-0.1567854736931622,0.9277700441889465,0.05782582052052021,-0.16927898535504937,-0.9063967317342758,0.6473671910353005,-0.4766099015250802,0.09962329873815179,-0.6627795388922095,0.7161059849895537,0.20278103509917855,-0.7738890764303505,-0.530987455509603,-0.6675092028453946,0.3878484689630568,0.8779555819928646,-0.3131681070663035,0.5920358165167272,0.9712298354133964,-0.5159473433159292,0.41374694742262363,0.7742868498899043,0.6067107110284269,0.5576816191896796,-0.8943014414981008,0.6818582923151553,0.7273087804205716,-0.7411645012907684,-0.39484641002491117,-0.9357374315150082,0.3184574116021395,0.855047004763037,-0.24445100175216794,0.8134963526390493,0.30016232654452324,0.45268721878528595,0.9429681510664523,0.7960635055787861,0.07279080990701914,-0.34164524218067527,0.8488656752742827,-0.36553814448416233,-0.11497813882306218,-0.8602342456579208,-0.8893336444161832,-0.03257300890982151,0.687535185366869,-0.7561877756379545,0.009145929478108883,0.6983080264180899,-0.4913263488560915,0.9179881028831005,0.5494120987132192,0.7190468343906105,0.9312052833847702,0.9124010507948697,0.17813427653163671,-0.4960782597772777,0.8499610279686749,-0.9770324602723122,0.49263711739331484,0.466366502456367,-0.7713050679303706,-0.9212090419605374,-0.6933235968463123,-0.07716597383841872,-0.4840378426015377,-0.5248312861658633,0.20165335247293115,-0.3549592485651374,-0.5687138000503182,0.874686093069613,-0.5568079655058682,-0.5193498255684972,-0.3880361393094063,0.6465528644621372,-0.4761191653087735,-0.6659514135681093,0.9228648389689624,-0.9413271266967058,0.9030161020345986,0.6372264116071165,0.7707109288312495,-0.6139733358286321,-0.20384471165016294,-0.30178112303838134,0.36227111192420125,0.819383264053613,0.1947147068567574,0.17475848365575075,0.17227597115561366,0.0827798810787499,-0.15126063954085112,0.07327620638534427,0.4336789636872709,0.06654968345537782,-0.3425602726638317,0.011276194360107183,0.2350426698103547,-0.2773590674623847,-0.009854474570602179,0.09949403442442417,-0.7753699948079884,0.6593824429437518,0.8267733380198479,-0.7135115307755768,-0.280889677349478,0.047044658567756414,0.4573180926963687,-0.8445779350586236,0.5736620086245239,0.6460160347633064,-0.8997012027539313,0.46800277568399906,-0.47710087755694985,0.13144702930003405,-0.2599536357447505,0.7656242572702467,-0.988136351108551,0.18894302705302835,0.30249875970184803,0.5721220020204782,-0.4692795458249748,-0.44493912253528833,0.5116854491643608,0.38665839564055204,-0.36196614848449826,0.14635099843144417,0.38215548265725374,-0.1710643544793129,-0.23248484171926975,0.762141726911068,0.7754723997786641,0.5343499090522528,-0.18232265999540687,-0.5642988202162087,0.9545026021078229,-0.30982829676941037,-0.7497044270858169,0.4085816480219364,0.3057085257023573,-0.5401934836991131,0.9386883997358382,-0.7841773293912411,0.9861823888495564,0.4550362969748676,0.8823137586005032,0.21522033447399735,0.016642039641737938,-0.8671881356276572,0.5903736189939082,-0.28558115335181355,0.09413524391129613,0.13614351814612746,0.7503856564871967,-0.35351872025057673,-0.8138727862387896,0.37269091280177236,-0.7139835213311017,-0.5457801171578467,0.6148714064620435,-0.24229440046474338,-0.8853678680025041,0.6587019409053028,0.2827427568845451,-0.9890633965842426,-0.14942287933081388,0.6841485588811338,0.485574250575155,-0.7126891906373203,-0.30799122992902994,0.6746040056459606,0.6727768424898386,-0.027561829891055822,-0.9005202013067901,-0.268275854177773,0.9636212782934308,-0.2466783612035215,0.07760808849707246,-0.9924491420388222,0.29433328146114945,0.5785171459428966,0.011816694866865873,0.9765859465114772,0.44120864663273096,-0.3661877065896988,-0.8222411265596747,0.5488547426648438,-0.3259407263249159,-0.2085113264620304,0.8960870872251689,-0.8063415847718716,0.9938968545757234,0.5520566790364683,0.003121154848486185,-0.4821611111983657,0.7108594868332148,0.32815108029171824,0.8441060464829206,0.15090907644480467,-0.12350363936275244,-0.6379588469862938,-0.03540382767096162,-0.21113436855375767,-0.1147940494120121,0.913395413197577,-0.6547451973892748,-0.1801445442251861,-0.9985167463310063,0.8813890377059579,0.33815501956269145,0.7420935765840113,-0.07533998694270849,-0.0890266764909029,-0.5178551129065454,-0.3361468780785799,0.8665872742421925,-0.3442738503217697,-0.8837374811992049,0.14419196266680956,0.8468382782302797,0.08284458424896002,-0.8024058397859335,0.2300862525589764,-0.05449378211051226,0.3156546810641885,-0.3495942032895982,0.5630482234992087,0.7615231000818312,-0.622147910296917,-0.6166941998526454,-0.8443688019178808,0.43073457945138216,-0.5800397736020386,-0.5947418119758368,-0.0304257832467556,-0.6293229958973825,-0.03855571895837784,-0.5127137168310583,-0.8670517937280238,0.4533279947936535,0.5187883707694709,-0.35699136974290013,-0.6665757498703897,0.040009613148868084,-0.46546366158872843,-0.10757580865174532,0.7402087319642305,0.5727754603140056,0.606549468357116,0.5032066339626908,0.10507891606539488,0.6089827492833138,-0.23153945058584213,-0.5605228557251394,-0.6171025531366467,-0.003493501339107752,-0.31108062667772174,0.6632628100924194,-0.8678826233372092,-0.16233436344191432,-0.12926213769242167,-0.5689684771932662,0.37386964727193117,-0.7196573615074158,-0.9726367802359164,0.12227385537698865,-0.3671784717589617,0.5859659020788968,-0.7338872165419161,0.7810790995135903,0.2463747961446643,-0.14422382367774844,0.28292879089713097,0.03627680940553546,-0.7344878637231886,-0.36439939215779305,0.2466309992596507,-0.791809611953795,0.977091406006366,0.49079396296292543,0.3118892931379378,0.7989791193976998,-0.7831259025260806,-0.6679499731399119,0.4239495201036334,0.4753463352099061,0.016500319354236126,-0.7982450188137591,-0.5089452899992466,0.4677288569509983,0.7445605816319585,-0.32070717914029956,0.9400371070951223,0.7211496285162866,0.8522603758610785,0.43031717790290713,0.5387026090174913,0.38510828372091055,0.17064045555889606,-0.8022074121981859,0.3274199948646128,0.8825057139620185,-0.6624763598665595,0.09551895642653108,-0.85852041374892,-0.7701522912830114,0.5724810408428311,0.04859810322523117,0.3562024384737015,0.524055530782789,-0.6670939167961478,-0.5288015189580619,-0.4369484926573932,0.47653403878211975,0.6463545612059534,-0.7325731264427304,0.16620077984407544,0.44403658248484135,0.5010264292359352,-0.6532826400361955,-0.7406194997020066,-0.0318885762244463,0.037927682511508465,-0.1066941823810339,-0.7507927156984806,-0.7347225481644273,0.9488202622160316,-0.07223964808508754,-0.1902040489949286,-0.8910764665342867,-0.901008150074631,-0.16278573404997587,-0.153069865424186,-0.8430980895645916,0.29436925845220685,0.38972526229918003,0.7264188043773174,0.6766640660353005,-0.31161653343588114,0.5023760697804391,-0.2584069794975221,-0.7674148418009281,0.39486802322790027,-0.6519333892501891,0.7465778957121074,-0.7817999483086169,-0.355603841599077,0.06016872450709343,-0.44283010996878147,-0.4487581802532077,0.3453992116264999,-0.9620974492281675,-0.997559524141252,0.7791504338383675,0.5535673405975103,-0.14428898878395557,-0.9806687459349632,-0.22788786981254816,-0.963861942756921,0.3633588836528361,-0.08535309368744493,0.671640548389405,0.16395265609025955,-0.79623693972826,-0.725141255185008,0.5194911831058562,-0.1724434825591743,0.6960624940693378,0.26726272562518716,-0.3880194555968046,-0.8410927252843976,-0.1355625120922923,0.11177979642525315,-0.8163730595260859,-0.8642631066031754,-0.0763569325208664,-0.46969611942768097,-0.28032387560233474,0.20254061790183187,0.7901021121069789,-0.04248017631471157,0.6094987406395376,-0.08180628018453717,-0.21599210659042,-0.5930820051580667,-0.8517908188514411,-0.12524033524096012,-0.716775347944349,0.3062368640676141,-0.20313190296292305,0.8535581901669502,-0.7687472547404468,-0.49442089395597577,0.434308840893209,-0.034905395936220884,-0.7515049632638693,0.4088391335681081,0.2512996126897633,0.2312093754298985,0.5441708522848785,0.20134679973125458,-0.5481468494981527,0.7325042737647891,0.016585535369813442,0.6071175877004862,-0.19001110596582294,-0.7793601076118648,0.7630343758501112,-0.8487100745551288,-0.9399129580706358,-0.69976513274014,-0.4411593498662114,-0.13438320020213723,-0.2677456745877862,-0.7209724285639822,0.08849117159843445,0.6540320627391338,0.3840628620237112,0.7910544713959098,-0.8768478333950043,-0.741415683645755,0.4321983130648732,0.41836730064824224,-0.13254649844020605,-0.3536807303316891,-0.16404461534693837,-0.8139941347762942,0.2523471424356103,-0.6271472894586623,-0.011383949778974056,-0.6547366948798299,0.9074983140453696,0.9884460191242397,-0.08050132729113102,0.5734427119605243,-0.6886899340897799,-0.9300297703593969,-0.732275522314012,-0.7159698349423707,0.8848702916875482,0.4452094668522477,-0.7749921772629023,0.834168329834938,-0.07928243419155478,-0.5271836309693754,-0.6196550619788468,-0.42617428908124566,0.8186699715442955,0.9861386194825172,-0.014616202563047409,0.33917939430102706,0.8199840895831585,-0.0768399927765131,-0.6541307438164949,0.21114300284534693,-0.7189971813932061,0.8349360758438706,-0.3842592053115368,0.6127857114188373,0.051996830850839615,0.17370221577584743,-0.8249746789224446,-0.8360157716087997,-0.1132688676007092,0.5352379023097456,-0.07703406224027276,0.4560653348453343,0.8421066999435425,0.9192733392119408,0.33513816306367517,0.48041987186297774,-0.4550974825397134,-0.10316661931574345,0.9220290407538414,-0.42066214932128787,-0.09735844936221838,-0.07439280580729246,-0.03575245710089803,-0.6871065823361278,0.5201182817108929,0.28269647946581244,0.7388909026049078,-0.0633506728336215,-0.0026203515008091927,-0.9128721253946424,-0.3028202853165567,0.6240767436102033,-0.036316133104264736,0.2367412350140512,-0.06288819527253509,0.5300837089307606,-0.5690024388022721,0.22189948800951242,0.8480716780759394,0.5324642732739449,0.7042439985089004,-0.3277478669770062,-0.2335452944971621,0.8681770311668515,0.4099340941756964,0.09958728682249784,0.024262125603854656,-0.23446518881246448,-0.5642538848333061,0.13562370976433158,-0.6951990751549602,0.2728424738161266,0.4534612721763551,0.9972016434185207,-0.6219087522476912,0.5082920761778951,-0.7003914029337466,0.6805702932178974,0.9596634153276682,0.5434595798142254,0.16374830715358257,-0.8884417517110705,0.9787213448435068,-0.7211248967796564,0.867271470837295,0.5548544945195317,0.13423428451642394,-0.48632854875177145,-0.40079497219994664,0.6510341269895434,0.8398800203576684,0.5795377157628536,-0.018479442689567804,-0.15532871428877115,-0.15028886077925563,0.6827152380719781,0.5304979849606752,0.8557371399365366,-0.6439717146568,-0.7790106576867402,-0.743754826951772,0.9322693799622357,0.93029615143314,-0.9509088052436709,0.3629871574230492,0.4856146378442645,0.09288430120795965,-0.5159770403988659,0.72934551211074,0.10341855324804783,-0.28444534074515104,-0.9216263075359166,0.7108679376542568,0.8185000326484442,-0.2348390705883503,-0.7448638989590108,-0.46098184399306774,0.3512107958085835,0.7835287800990045,0.5896104974672198,-0.10651960037648678,0.08010937832295895,0.5987124522216618,0.9603093676269054,-0.3792400457896292,0.276082141790539,0.7998343575745821,-0.5011986466124654,-0.21230536326766014,0.2573834238573909,0.08263154560700059,-0.25473172729834914,0.5078353486023843,-0.944703244138509,-0.5952949449419975,-0.37532862508669496,0.8303028405644,0.5104080410674214,-0.11922555323690176,0.371639555785805,0.046608520206063986,-0.5778872240334749,0.8768894071690738,0.7188555225729942,-0.14661441883072257,0.2661874536424875,0.8155201459303498,-0.8485881853848696,0.042297187726944685,-0.55214589741081,-0.014059714507311583,0.7837299122475088,-0.14263276290148497,-0.31898738956078887,0.7490879278630018,0.511004991363734,0.2765921545214951,-0.5128107103519142,0.6076300372369587,0.4285623454488814,0.1252634390257299,-0.42204770259559155,-0.6805693116039038,-0.16534782014787197,0.2979837991297245,-0.19989400589838624,0.1519150184467435,-0.6231004083529115,-0.6426526810973883,0.5325996344909072,0.5746177667751908,-0.04751551430672407,-0.5144289848394692,-0.9434297736734152,0.4891545344144106,-0.2443714034743607,0.1171646867878735,-0.007413502316921949,0.12457459513098001,-0.6441013743169606,0.6861436408944428,0.9652757262811065,0.9620184395462275,-0.08854034449905157,-0.6024863719940186,0.9336628443561494,0.009163950104266405,-0.48226771084591746,0.5854877009987831,-0.3017229116521776,0.3570412239059806,-0.0963925695978105,-0.6858569509349763,0.20805360469967127,-0.021918682847172022,-0.9800747609697282,-0.18188102822750807,0.5309394649229944,-0.03448281669989228,0.8254271484911442,-0.058006339240819216,0.2129317531362176,0.8737644976936281,-0.7334881047718227,0.2853685738518834,-0.3118006316944957,-0.907164191827178,0.8662612750194967,0.9971751952543855,-0.4517833348363638,0.24248590087518096,0.3877156004309654,-0.1421879380941391,0.9181525497697294,0.8793851337395608,-0.2078357683494687,-0.8756458978168666,-0.6343347537331283,0.717512343544513,-0.5387659557163715,0.9406070653349161,0.23680125176906586,-0.7426985893398523,0.0071742660365998745,0.24804614717140794,0.058425203897058964,-0.960547152440995,0.12281194422394037,-0.5843027690425515,-0.6664035310968757,0.8333760327659547,-0.6530449744313955,-0.7370073581114411,-0.7938052951358259,0.23357754573225975,0.6287721456028521,-0.3707715645432472,-0.40818760357797146,-0.7619589869864285,0.8813767652027309,0.2608337989076972,0.08052081381902099,-0.7662360020913184,-0.49209553375840187,0.24720417289063334,0.6733577996492386,-0.893144435249269,0.42668795492500067,-0.1713721244595945,-0.7908367798663676,0.21737104514613748,-0.14246077928692102,-0.5954155619256198,0.2608063365332782,-0.9197227018885314,-0.5013912115246058,-0.5607437114231288,-0.33130984334275126,0.28266923362389207,0.40106127643957734,-0.9685709280893207,0.31141107995063066,0.8532064626924694,0.9944385848939419,-0.29869460314512253,-0.8944009128026664,-0.9586609485559165,0.6929515413939953,0.3825257522985339,0.3584396378137171,0.4260663171298802,-0.8870434011332691,-0.10306183062493801,-0.2704823394306004,-0.19894155766814947,0.5215502283535898,-0.18174815829843283,0.04853924456983805,0.3240256495773792,-0.8067432167008519,0.4504354065284133,0.38818219024688005,0.17464600363746285,-0.3841562233865261,0.1660202695056796,-0.3531952672637999,0.3411047998815775,-0.44691968243569136,0.7226112852804363,-0.9634646624326706,-0.5368134523741901,-0.43005087273195386,0.32188601419329643,0.69094772124663,-0.41418146388605237,-0.021677164360880852,-0.8167083817534149,-0.9357795985415578,0.6910192221403122,-0.40334608033299446,-0.4320494392886758,-0.2956787799485028,0.48273047618567944,-0.6257238695397973,0.301268613897264,-0.01254267618060112,-0.33662036526948214,-0.9979699901305139,-0.9642866309732199,-0.6768006226047873,0.22935035219416022,-0.19537985464558005,0.7619971567764878,-0.4767536632716656,0.6934382789768279,0.6434668898582458,-0.5730224847793579,0.29271745681762695,-0.5334048033691943,-0.10356118530035019,-0.3424755185842514,-0.78392304899171,0.557677763979882,-0.47177743585780263,-0.6599993538111448,-0.43755562976002693,-0.33198751555755734,-0.596000237390399,-0.3704020590521395,0.6807880443520844,0.0884449677541852,-0.7797678471542895,-0.7323514767922461,0.8540124106220901,0.513380070682615,-0.819830734282732,-0.7543924488127232,-0.3285897304303944,0.2261167294345796,-0.9916578237898648,0.3041737815365195,0.5566573315300047,-0.45449635945260525,-0.5430828724056482,0.3561424077488482,-0.14741261396557093,0.6401627049781382,0.26535481959581375,-0.6973323742859066,-0.11296058259904385,-0.9231546716764569,0.6903640115633607,-0.5112193799577653,-0.6442293426953256,0.378993789665401,0.10976523393765092,-0.23445144295692444,-0.6798929166980088,0.5600905790925026,0.8390159653499722,-0.12685662740841508,-0.5974383153952658,0.13909760024398565,0.13050466775894165,0.32762449886649847,-0.9965784228406847,0.44427950493991375,-0.5064793536439538,0.7943846015259624,-0.3162227598950267,0.5257949247024953,0.010813802015036345,0.11893207114189863,0.12925242073833942,-0.18783613480627537,0.5851335823535919,-0.332429023925215,-0.254451388027519,0.026945515535771847,-0.08611631905660033,-0.3695989944972098,0.14164798893034458,-0.5601283647119999,0.10988445160910487,-0.24991928786039352,0.4296455108560622,0.14529804792255163,-0.796358029358089,0.8856991971842945,-0.9526618090458214,-0.18548748269677162,-0.09065608959645033,-0.7106941933743656,0.07502551190555096,-0.7377775963395834,-0.3872590414248407,-0.8331285412423313,0.653384736739099,0.894251222256571,-0.8857594728469849,0.5343049531802535,-0.7751883552409708,-0.17115079471841455,-0.6994693130254745,-0.8289115563966334,0.9455523025244474,-0.9280478535220027,-0.03513241419568658,-0.9598636473529041,0.7430196357890964,0.7906547132879496,-0.2879511611536145,0.05779375834390521,0.09058574447408319,0.7675516400486231,0.6814499096944928,-0.7081676563248038,-0.2858216124586761,0.6382254860363901,0.6894712503999472,-0.40933854039758444,-0.7022369704209268,0.48889445373788476,-0.01572347665205598,-0.013582577928900719,0.09300257917493582,-0.02377677569165826,-0.8063593674451113,0.7565467543900013,-0.31599129969254136,-0.504515752196312,-0.42986963829025626,-0.7882355507463217,-0.033574562054127455,-0.06937605096027255,0.4396687587723136,0.40153787517920136,0.6386548154987395,0.6953730606473982,0.18688456155359745,-0.9007058846764266,-0.6250130231492221,0.0221464978531003,0.3912903261370957,-0.13675576774403453,-0.9180319332517684,-0.7019589515402913,0.05896702082827687,-0.9189636306837201,0.22030835039913654,-0.4188239979557693,-0.8049326366744936,-0.39534657495096326,-0.789219178725034,0.971179872751236,-0.9676367589272559,0.36867975629866123,0.20844864333048463,-0.6201516576111317,-0.9930442124605179,-0.05073957843706012,-0.8085328177548945,-0.9977645291946828,0.07666413486003876,-0.8578074374236166,-0.08379940781742334,-0.20435416558757424,-0.044812935404479504,0.34147433284670115,-0.8208926133811474,-0.22081195330247283,0.9338074098341167,-0.8339755018241704,-0.01810484007000923,0.32569734659045935,0.0719293667934835,-0.02956481371074915,0.08973222738131881,-0.005975872278213501,-0.7256192951463163,-0.962996426038444,-0.5988469952717423,-0.5499187391251326,-0.3435031226836145,0.9327612146735191,-0.19144082069396973,-0.8894074019044638,0.8301631626673043,0.2519422434270382,0.08850159496068954,-0.2129781013354659,0.7237993478775024,0.88185047917068,0.5909122810699046,-0.8761361921206117,-0.05123412190005183,0.4213067418895662,0.15715733543038368,-0.0212038136087358,0.8353498624637723,0.981011729221791,-0.40607086289674044,-0.22995761688798666,0.7400691569782794,-0.09080211073160172,0.036477955523878336,-0.41393570974469185,-0.44722917350009084,-0.09623362589627504,-0.40375876845791936,0.7697370117530227,-0.1383878095075488,0.6495210099965334,-0.7466860515996814,0.6240466609597206,-0.011097143404185772,-0.42126667173579335,-0.6109004379250109,0.46539285546168685,0.07142526563256979,0.7976812701672316,-0.19643722707405686,0.6726357820443809,-0.7205295036546886,-0.6617055325768888,0.8071858044713736,0.5104174707084894,-0.173246577847749,-0.6887726178392768,0.9450468169525266,0.2998135541565716,0.5898203761316836,-0.8215259606949985,-0.2111420170404017,0.8577307518571615,-0.3133511422201991,0.5327363940887153,0.1731854802928865,0.44276837864890695,-0.46374931279569864,0.15092367585748434,0.997633081395179,0.5697634620591998,-0.39810651168227196,-0.5990901095792651,0.1883224598132074,0.3435697127133608,0.6797258723527193,0.9013228132389486,0.8043612791225314,0.40135038550943136,0.5087096425704658,-0.3151553641073406,0.5753368022851646,-0.42440145555883646,-0.7655219528824091,0.29141890117898583,-0.7266890681348741,0.10105861723423004,-0.801718887872994,-0.8361241463571787,-0.13794736145064235,0.7561245430260897,-0.1958198077045381,-0.3641940224915743,-0.7400309666991234,0.2062379214912653,-0.8477203296497464,0.5240316572599113,0.16865610843524337,0.5028288243338466,-0.4040659279562533,0.6566981296055019,-0.3559457575902343,-0.07440628530457616,0.2612406685948372,-0.30012960685417056,-0.17460270458832383,-0.4137283614836633,0.9084068639203906,0.4297313424758613,-0.922434919513762,-0.268152816221118,-0.5386957777664065,-0.6685051815584302,0.88935023592785,0.36845860723406076,-0.8480585259385407,-0.960205755662173,0.01102354796603322,-0.11427147500216961,0.6492189718410373,-0.6622778866440058,0.06866713101044297,0.24516740906983614,0.9240699834190309,0.7712036212906241,0.2792497090995312,-0.4115314893424511,-0.26799159310758114,-0.0715078255161643,-0.7846931195817888,0.14200001815333962,-0.044748134445399046,0.4939701510593295,-0.6662320513278246,-0.3800341193564236,-0.2672371082007885,0.3078399570658803,0.5018311184830964,0.6103535369038582,-0.6267159557901323,0.42815141938626766,0.11952156666666269,0.3816482536494732,0.6292882543057203,0.9930312959477305,-0.16227490827441216,0.7263127989135683,-0.952108490280807,-0.7438596393913031,0.8083125059492886,-0.9358635796234012,0.44379185838624835,-0.867398589849472,-0.3882622648961842,-0.34283225890249014,0.23487963387742639,-0.618357989937067,-0.8575598606839776,-0.9313512691296637,-0.45146206114441156,-0.7826484777033329,-0.055885632522404194,-0.5862705488689244,0.017765674274414778,0.5127549027092755,-0.46309101767838,-0.27767816092818975,0.9578512562438846,-0.3061367222107947,0.45087828021496534,-0.3677518633194268,-0.0480814166367054,0.768556306604296,0.04233606206253171,-0.1509483060799539,0.14496967243030667,0.9181930422782898,-0.85863785026595,0.24753340566530824,0.5333004193380475,0.10944158816710114,-0.03735586442053318,-0.48624850530177355,-0.21063307113945484,-0.9210918028838933,-0.9827063805423677,0.3572636479511857,0.1919938256032765,0.09776873979717493,0.8585645584389567,0.02368228929117322,0.3354716831818223,-0.047958183102309704,-0.9221441703848541,0.1755714607425034,-0.017335628625005484,-0.22519893944263458,0.5074380789883435,0.6539587639272213,-0.975254163146019,-0.08001264743506908,0.6957234432920814,-0.12551632523536682,-0.8192758141085505,-0.7190485508181155,-0.5326122916303575,-0.5829119593836367,0.5323566501028836,0.4676090143620968,-0.3720516753382981,-0.21295113768428564,0.012122024316340685,0.22284695506095886,-0.8754079835489392,-0.4363247128203511,-0.4636024013161659,-0.5493148909881711,-0.09374123765155673,0.5990222413092852,0.718104774132371,-0.5928262849338353,0.591696354560554,-0.5407565501518548,-0.13535710610449314,-0.20502727711573243,0.6944123022258282,-0.7224902817979455,0.6022818977944553,-0.6988447965122759,-0.38450893061235547,0.7202488384209573,-0.10901533206924796,-0.3625893658027053,0.33830814389511943,0.04048196924850345,0.38166900211945176,0.372825981117785,0.5598374246619642,0.35210318956524134,0.7267102906480432,-0.10532553680241108,0.002080150879919529,-0.3050813563168049,0.7242819629609585,-0.9016228304244578,0.26478518918156624,-0.08754442539066076,0.39786335127428174,-0.10285079060122371,-0.21200454654172063,-0.987961180973798,0.6092171347700059,-0.7361205513589084,-0.24910933943465352,0.30521241249516606,-0.9504236462526023,-0.5634752227924764,0.4920547027140856,0.3955925847403705,0.9627913162112236,-0.9116009972058237,0.06968111218884587,0.9674057899974287,-0.6279337792657316,0.13281839387491345,0.6285264273174107,-0.14119673101231456,-0.7042673816904426,0.5453226105310023,-0.3627962558530271,0.06169075891375542,-0.662368405610323,-0.4847656427882612,0.01854287087917328,-0.8838366372510791,-0.6337905856780708,-0.07827466493472457,-0.7608624678105116,0.6464536408893764,0.511435083579272,0.2787046283483505,0.13447029050439596,0.7378865079954267,-0.45202270010486245,0.7949731596745551,0.03241909947246313,-0.6405549976043403,0.30855191219598055,0.7801553853787482,-0.4310519960708916,-0.2889679642394185,-0.4181399838998914,0.7202177746221423,-0.9521586033515632,0.07324976706877351,0.5527298054657876,0.07184942439198494,0.7248851680196822,-0.4142886456102133,-0.3515854496508837,0.4706148458644748,0.38075987342745066,-0.956014365889132,0.8113975874148309,-0.3237812486477196,-0.9379221703857183,0.1857310705818236,0.17682584188878536,0.6672958130948246,0.5800774181261659,-0.6535771074704826,-0.5104199489578605,0.5849746549502015,0.3024944830685854,0.9561298629269004,-0.6115018068812788,-0.40969310654327273,-0.7399219828657806,0.7856136602349579,0.7933392617851496,-0.5554737872444093,-0.6670923703350127,-0.8868582174181938,0.20984020922333002,0.19843143271282315,-0.00846482114866376,-0.7897291649132967,-0.6503284545615315,0.04654502868652344,0.6442061262205243,0.032591409515589476,-0.005498478654772043,-0.10617395862936974,0.7816364611499012,-0.781230054795742,-0.615170550532639,0.005434624385088682,0.13300339225679636,-0.3079240545630455,-0.13819969538599253,0.8591718142852187,0.05821397062391043,-0.43539614975452423,-0.9064692067913711,0.21392158651724458,-0.4801635970361531,-0.13786611752584577,-0.4215536923147738,0.8396367719396949,0.8400171021930873,-0.019023920875042677,0.25056324526667595,0.5022109686397016,0.4986665570177138,0.10450805630534887,0.8470515143126249,0.5538603416644037,-0.0939365210942924,0.10842771315947175,0.6041034059599042,0.8168446496129036,0.9058852042071521,0.09202381363138556,0.9536582170985639,0.4689943320117891,-0.3792909635230899,-0.8679290073923767,0.4168453710153699,0.3924648449756205,-0.4016719185747206,-0.825801707804203,0.05523108970373869,0.5792025160044432,-0.8097290685400367,-0.6002401164732873,0.014598350506275892,0.9064389611594379,-0.09676096215844154,0.03037238772958517,-0.29447175981476903,0.2646105168387294,-0.8065639482811093,0.6275144433602691,-0.4178334502503276,0.06802376033738256,0.5525416336022317,-0.8518153703771532,0.21543803066015244,-0.09373258473351598,0.6814085715450346,0.2684483346529305,0.0604739491827786,-0.9541398854926229,0.7161458618938923,-0.32067641941830516,0.1281179073266685,0.6456254189833999,0.012030118145048618,-0.9053055006079376,0.40037347562611103,-0.8428074261173606,-0.7484308020211756,0.8534346255473793,0.9131111144088209,0.32151023019105196,0.92048418847844,-0.2867426183074713,-0.245033445302397,-0.14695561164990067,-0.3271238557063043,-0.9269526987336576,-0.6530833803117275,0.3015895513817668,0.8352402374148369,-0.9176341174170375,0.6750658922828734,0.9044661289080977,0.03219587914645672,0.2722984370775521,-0.4935296135954559,0.10526530491188169,-0.5334621365182102,-0.8160280231386423,0.853307653684169,0.3747213971801102,0.7783259497955441,-0.7935453816317022,-0.73066416522488,0.06390526378527284,-0.7079529212787747,0.9845885769464076,0.10217348765581846,0.17493567476049066,0.5586715438403189,0.4466649857349694,0.8541358364745975,0.303821231238544,0.0734986076131463,-0.013495407532900572,-0.5042471522465348,-0.5230224542319775,-0.604562955442816,-0.9995263773016632,-0.9130135555751622,-0.5491018621250987,0.3247826942242682,-0.41215448547154665,-0.8197248643264174,-0.3486226466484368,0.00857417518272996,-0.008421460166573524,0.7993368841707706,-0.9288134276866913,-0.33142703818157315,-0.9451729734428227,0.6260631559416652,0.35574956564232707,-0.9384299083612859,0.7800996205769479,0.9847381412982941,-0.2638849886134267,0.8694608379155397,-0.6259801150299609,-0.23488583648577332,0.05319188069552183,-0.598031104542315,0.17862808518111706,-0.6637081620283425,-0.8002860909327865,0.060399379581213,-0.042968195397406816,0.41801439970731735,0.8416911442764103,-0.514475233387202,0.9181829541921616,-0.4892828888259828,0.17323733773082495,0.789078182540834,0.5023715286515653,-0.9876649822108448,-0.09923559101298451,-0.5711480150930583,0.9663127027451992,0.2228957423940301,-0.577993658836931,-0.5375817772001028,0.7578397658653557,0.04938299581408501,-0.9822267377749085,-0.120832160115242,0.8230771655216813,0.05863152164965868,0.04038730310276151,0.766560859978199,0.20771028008311987,0.8676540055312216,-0.05673213396221399,0.4954049508087337,0.5826931092888117,-0.3581787603907287,0.1931657800450921,0.2732284259982407,-0.4339263862930238,0.15946523705497384,0.7816246687434614,-0.12190587259829044,0.7038923213258386,-0.954398503061384,-0.1445014481432736,-0.1492643328383565,-0.6855676230043173,-0.815193509683013,0.9610812640748918,-0.1512864944525063,0.2565262857824564,-0.21720807999372482,-0.008067063521593809,0.10564182326197624,-0.30949654150754213,-0.6117801833897829,0.270582580473274,-0.006690474692732096,-0.2854945291765034,-0.11867061210796237,-0.887873419560492,-0.039081537630409,0.41239523189142346,0.5541126048192382,0.13479854771867394,-0.7229828578419983,-0.06705489568412304,-0.20780028915032744,-0.32938717352226377,-0.7533174743875861,-0.8806592728942633,-0.0018300442025065422,0.6928784693591297,0.9597286330536008,-0.38914854219183326,0.5436470382846892,-0.8573729242198169,0.6816495680250227,0.691237292252481,0.3722128737717867,0.664459319319576,-0.37773444317281246,0.3032347704283893,0.4770609508268535,0.600407631136477,-0.8622215902432799,0.6852409401908517,-0.2768058218061924,-0.1115303854458034,0.1275239777751267,0.04742108564823866,-0.639615164604038,0.79304991196841,0.6853948100470006,-0.33649399783462286,-0.7367680724710226,-0.636022865306586,-0.06119958870112896,-0.3866099528968334,-0.8552977507933974,-0.8037114655598998,0.24990284023806453,0.5783046223223209,0.12722116243094206,-0.630364113021642,0.2900549150072038,-0.8205044530332088,0.10000269953161478,0.4556797216646373,-0.14658061740919948,-0.4101879303343594,-0.04239546414464712,-0.9616477568633854,-0.0786224352195859,0.32622096920385957,-0.2745831380598247,-0.3134312406182289,-0.33768588164821267,0.6734792939387262,-0.7772484342567623,-0.7656574943102896,-0.8780946088954806,0.2109509939327836,-0.528157155495137,-0.07586394343525171,-0.955723057501018,-0.9181961761787534,-0.800216443836689,-0.2208574409596622,0.7682901346124709,-0.09347971109673381,0.7015127069316804,-0.8913486525416374,0.8697763071395457,0.8447230695746839,0.9333257339894772,0.7242864747531712,0.9500937047414482,0.4472168181091547,0.4732958162203431,0.4341127322986722,0.6657640263438225,-0.2929815552197397,0.34760456439107656,-0.20369068905711174,0.6950617819093168,-0.29931652545928955,-0.9825053391978145,-0.01317191356793046,0.8144295192323625,-0.634479480329901,0.983975444920361,0.6909678266383708,-0.2029717769473791,-0.4884729376062751,0.8203256470151246,0.7487580627202988,-0.6520135160535574,-0.45307076489552855,0.3389815599657595,-0.5701618045568466,0.26257974235340953,-0.36903181253001094,0.5907812779769301,0.7533424971625209,-0.09759989660233259,0.43462967360392213,0.27137533389031887,-0.49850594950839877,-0.1296967389062047,0.5927477185614407,0.592902937438339,0.2852453081868589,0.7921476629562676,-0.7784249847754836,-0.32102762488648295,0.03885430283844471,-0.35807468043640256,0.8860522485338151,0.8110115602612495,0.4482412179931998,0.29920476861298084,-0.8279145453125238,0.8344513946212828,-0.4456068226136267,-0.4914395469240844,-0.26048988942056894,0.7371377986855805,0.532201855443418,0.8440226730890572,-0.17251695739105344,-0.3089005690999329,0.196389967110008,-0.6164898662827909,0.24988908972591162,0.04043667856603861,0.6288633313961327,0.429726870264858,0.8710343199782073,0.8585988767445087,-0.4045204636640847,0.20486908359453082,0.6031403886154294,0.9424728262238204,0.16613004496321082,-0.35157995391637087,-0.9305322542786598,-0.6132106306031346,0.5734134279191494,0.48616862669587135,0.7921629641205072,0.28062619687989354,-0.7371373549103737,-0.26371423434466124,0.10097873723134398,0.08297111606225371,-0.3005523937754333,0.6902364841662347,-0.09297496918588877,0.18958927365019917,0.6713515953160822,-0.3249286348000169,-0.38257322693243623,-0.6876666690222919,-0.5004379418678582,-0.30927266273647547,0.24329959647729993,-0.2971715508028865,-0.46656404808163643,-0.2934905863367021,-0.36449415562674403,0.09628892550244927,0.2793098958209157,-0.721816583070904,0.5488166529685259,0.07397596025839448,-0.711471913382411,-0.9925510473549366,-0.6743035148829222,0.9458702057600021,-0.11294220248237252,-0.4251798908226192,-0.8100794954225421,-0.3965321066789329,0.35756399761885405,0.1766709857620299,-0.8064378737471998,-0.5113321007229388,0.05204212199896574,0.5601283763535321,-0.6549371788278222,0.5679172785021365,0.6175152868963778,0.30001443484798074,0.9616679633036256,0.21988684497773647,-0.4309732262045145,-0.38916582707315683,-0.9134854939766228,-0.30146553972736,0.9169594119302928,-0.5235746228136122,-0.49440529523417354,0.9316919362172484,-0.8776153419166803,0.028093257918953896,-0.5706674745306373,0.2327204765751958,-0.06191162019968033,0.3978999466635287,-0.9754260750487447,0.4329136866144836,-0.7165065868757665,-0.297824923414737,0.10131842037662864,0.7387355007231236,-0.997603299561888,0.0419523729942739,-0.5719787334091961,-0.2221685592085123,0.48580608842894435,-0.6982759064994752,-0.7556713568046689,0.40510498406365514,0.9284913917072117,0.7184556755237281,-0.06979118846356869,0.8990846979431808,-0.6311478931456804,0.013155637308955193,0.6306616766378284,0.538615177385509,0.08367945533245802,-0.15534924995154142,0.02308763563632965,-0.6215428365394473,0.9041522825136781,0.20451899711042643,0.4006538740359247,0.14018240105360746,-0.6314812460914254,-0.6825636443682015,-0.5663159848190844,0.3446508785709739,-0.2619856330566108,0.7684351350180805,0.05082184635102749,0.9011329347267747,0.40479174302890897,-0.3425965583883226,-0.17627078713849187,-0.6282242890447378,-0.18202505307272077,-0.2093801130540669,-0.49220558162778616,-0.709866477176547,0.3810594566166401,-0.6043053637258708,-0.4652762501500547,0.4944489127956331,0.868300479836762,-0.5272549483925104,-0.47081035980954766,0.25737845432013273,0.08785080863162875,0.21578285982832313,-0.5434269290417433,0.46975090727210045,0.28046396328136325,-0.8802855717949569,-0.281048696488142,-0.5295011699199677,0.07101198472082615,0.06696669571101665,0.8518157280050218,0.9848970868624747,0.7541213817894459,-0.24906909512355924,-0.7794844438321888,0.18048705672845244,0.38818046217784286,0.7608181028626859,0.581842758692801,0.9670056300237775,0.06669995654374361,-0.7007112544961274,0.289719567168504,-0.6595782181248069,-0.8987308349460363,0.08796019945293665,0.043613024055957794,-0.9618872855789959,0.5068707759492099,0.09894223371520638,0.8366511324420571,-0.049377686344087124,-0.7274523861706257,-0.878065231256187,0.32845772663131356,-0.7492766617797315,0.5375295956619084,-0.6561684594489634,0.3753780284896493,-0.08180364919826388,0.3321484890766442,0.3947880333289504,0.36634703865274787,-0.41504469560459256,0.3854618654586375,0.4398952298797667,-0.06972165498882532,-0.10651841526851058,-0.15494470484554768,-0.8879256737418473,0.8568812371231616,-0.6436702525243163,-0.2993581546470523,0.05125984363257885,-0.027274244464933872,0.9201147258281708,0.5068001663312316,0.1702715763822198,-0.35003416845574975,-0.4209410138428211,-0.40602905908599496,-0.6118605490773916,0.4341707546263933,-0.30666252924129367,-0.2199716456234455,-0.37241324596107006,0.28045212756842375,0.7792114862240851,-0.8719342676922679,0.5953326998278499,-0.6613161824643612,0.9879807736724615,0.2960008825175464,-0.4153875121846795,-0.21956517221406102,0.46003533573821187,-0.15121309459209442,-0.802824551705271,-0.3941228804178536,0.4290446415543556,0.8602884355932474,-0.5929116089828312,-0.33197038248181343,-0.7514018910005689,-0.45590168004855514,-0.26383032370358706,0.06718265498057008,-0.07355436543002725,-0.19075364200398326,-0.3990801451727748,0.7904251394793391,0.6971942754462361,0.5114647061564028,-0.5446739755570889,-0.44287390261888504,-0.7369382064789534,0.41805505519732833,-0.040010758209973574,0.5509565719403327,0.3429060182534158,0.6521071307361126,0.12338721984997392,0.13738765427842736,-0.40941075840964913,-0.5559721291065216,0.7348020416684449,0.523865694180131,0.09770006220787764,-0.4422217016108334,0.8875250187702477,-0.7832602877169847,0.07332382397726178,-0.9613749207928777,-0.4356720591895282,0.1537200822494924,0.6406950298696756,0.950356557033956,-0.15729893371462822,-0.023173236288130283,-0.34554401598870754,0.8162013809196651,0.6809415277093649,0.41946254624053836,0.8588348473422229,-0.4586143121123314,0.614626501686871,-0.9559346549212933,-0.32345375465229154,-0.651758620981127,0.09767365222796798,-0.6465153195895255,-0.5551255969330668,-0.21906751161441207,-0.3335688500665128,0.863462588749826,0.40477862814441323,0.10919403797015548,-0.47932625003159046,0.3172968327999115,0.631453248206526,0.2602879907935858,0.17536724917590618,-0.2402276135981083,0.8511712471954525,-0.508480628952384,-0.07723773969337344,0.1477654054760933,0.01156820822507143,-0.9742500935681164,-0.8176112989895046,0.43145170947536826,-0.6591893369331956,-0.5474859727546573,0.5202468340285122,-0.640123481862247,0.3173847906291485,-0.3876919220201671,0.7321300329640508,-0.650727235712111,0.3098908048123121,-0.15065237879753113,-0.25310552632436156,-0.6400995692238212,-0.005714469123631716,-0.89125841204077,0.3428397090174258,0.6755860601551831,-0.3369768443517387,0.1808026945218444,0.22061718348413706,0.6395900943316519,0.4072056347504258,0.6852980302646756,-0.5252461386844516,0.9745894954539835,-0.8426330094225705,-0.014522694982588291,-0.38788790721446276,-0.201503477524966,-0.527310979552567,0.9199977703392506,-0.2841863417997956,0.010389785282313824,0.867704835254699,0.8939292402938008,0.4829269330948591,0.8282922278158367,-0.103735342156142,-0.5944282482378185,0.05997163476422429,0.6046691765077412,0.09644106030464172,0.06456051534041762,-0.7615592265501618,-0.5217171772383153,-0.9942022101022303,-0.279457428958267,0.5514175789430737,0.119734778534621,-0.5404143412597477,-0.11660006083548069,-0.2906808005645871,-0.022818604484200478,0.8513640854507685,0.5932493493892252,-0.32789981784299016,0.7935758805833757,0.045104069635272026,0.14676880510523915,-0.586677701678127,-0.7950982511974871,0.3726140484213829,0.18444529362022877,0.5464705000631511,-0.6511181541718543,-0.7169541413895786,-0.25843262672424316,-0.3094552322290838,-0.90850366698578,-0.7986043971031904,0.18543215095996857,0.716893115080893,-0.8374171084724367,-0.9408620693720877,0.7105339230038226,0.13263242784887552,-0.8244160651229322,0.9946484547108412,-0.1759297139942646,-0.5141591131687164,-0.9606563346460462,-0.6804464585147798,0.33000739477574825,0.32707699993625283,0.9217544565908611,-0.29149792389944196,0.2566255363635719,0.2710716943256557,-0.8462441922165453,0.8467319151386619,0.9761414364911616,-0.9663570788688958,-0.14082934893667698,-0.042856117244809866,0.4476551115512848,-0.7255244166590273,0.9312648032791913,-0.7595891286619008,0.2924758396111429,-0.9823285765014589,-0.3108424539677799,0.7030875603668392,-0.11707497015595436,-0.5306010679341853,0.9685234515927732,-0.41762987431138754,-0.8319372269324958,-0.44112188648432493,0.541220101993531,0.3117879228666425,0.9505932801403105,0.3846714668907225,0.5454560443758965,0.8125149416737258,-0.07486727926880121,-0.02378116874024272,-0.5724852508865297,-0.9485189230181277,0.27390787983313203,-0.39465258410200477,0.5266012866050005,-0.4036452588625252,0.5833857324905694,0.7147241029888391,-0.8151356056332588,0.7043038168922067,-0.7054440095089376,0.8592375605367124,0.7366217151284218,-0.7069222405552864,-0.03874770924448967,0.8672912861220539,-0.8507888969033957,0.3910616827197373,-0.9920420274138451,0.7342696967534721,-0.7948852484114468,-0.9216507230885327,-0.504009117372334,0.9937618128024042,-0.23249512957409024,-0.053384881000965834,0.6644939440302551,-0.09830535296350718,0.35982111375778913,0.16439750930294394,-0.07678758073598146,0.17979674926027656,0.05761839309707284,0.9969121981412172,-0.15007838606834412,-0.4893706254661083,0.016705746296793222,0.2359265680424869,0.5244752699509263,-0.2945167748257518,-0.8160250899381936,0.33866003109142184,-0.2161039775237441,0.8464734172448516,-0.4365365942940116,-0.3817404885776341,0.2661354220472276,-0.9626951324753463,-0.8860841551795602,-0.2925770068541169,0.16831990843638778,0.011512536089867353,0.8722427627071738,-0.7321823085658252,0.9772561145946383,-0.45299634523689747,0.10082694375887513,0.30183813162148,0.1788723412901163,0.8951512901112437,-0.30220662942156196,-0.9460417381487787,-0.8708332139067352,0.924813146237284,-0.6892943261191249,-0.6476627783849835,-0.7734132362529635,-0.2715238416567445,-0.28418524842709303,0.6214581443928182,-0.01819936977699399,-0.39866671711206436,-0.6101902141235769,-0.7896635849028826,0.9301173994317651,-0.710928016807884,0.13641708390787244,0.5989358257502317,-0.3085259008221328,0.9273514873348176,0.27173423720523715,0.1728568603284657,-0.48964766366407275,-0.5565001838840544,0.1694647572003305,0.5048396862111986,-0.004074208904057741,0.11758827324956656,-0.4734047413803637,0.3877701140008867,0.29559940472245216,-0.9545001974329352,-0.015244815964251757,0.11947927763685584,-0.41810387559235096,-0.4400307359173894,0.04291842272505164,0.5930315060541034,-0.30567555455490947,0.26331735495477915,-0.7576355538330972,-0.4621424260549247,-0.09559433767572045,0.5667928191833198,0.1923168171197176,0.9823331381194293,0.16535145929083228,-0.599390028975904,0.7398636480793357,-0.21790827065706253,0.21555919060483575,-0.3701491975225508,-0.42626458732411265,-0.7518266281113029,0.49973940616473556,-0.9071214352734387,-0.648318013176322,0.012582105584442616,0.7171444790437818,0.5190499192103744,0.0019320808351039886,0.23347746953368187,0.6401115506887436,0.611427700612694,-0.5723730735480785,-0.025314037688076496,-0.13039444759488106,0.9873549011535943,-0.20297099417075515,0.7208845308050513,0.9388927253894508,-0.6790788541547954,0.6952760978601873,-0.5003131297416985,-0.8840369922108948,-0.43894560262560844,-0.5534515562467277,-0.8393064495176077,-0.3909552493132651,0.2407835596241057,-0.18503747042268515,-0.667845350690186,-0.7353291474282742,0.22912141541019082,-0.5892388126812875,0.442084189504385,0.3566114818677306,-0.2205783650279045,-0.3949212208390236,0.1323140449821949,-0.6175144370645285,0.5484379804693162,0.5386376120150089,0.38743196055293083,-0.4295871751382947,-0.9623884242027998,0.5901162344962358,0.8311826223507524,0.07998946774750948,0.8418231816031039,0.22761272452771664,0.7016396238468587,-0.511091788765043,-0.6169368075206876,0.017301135696470737,0.8379323100671172,0.8513585608452559,-0.4349784520454705,-0.7134260735474527,-0.07852739747613668,-0.5056941998191178,-0.14960410306230187,0.9440454966388643,-0.693461652379483,0.4998650229535997,-0.3707907092757523,-0.5021366970613599,0.804012184496969,0.3047870248556137,0.6610112749040127,0.3548985389061272,-0.5808319323696196,0.774955247528851,0.5482347337529063,0.39668899960815907,-0.5316056720912457,-0.8133992380462587,0.8785709100775421,0.3726555844768882,-0.8457055510953069,0.6318044443614781,-0.7300102575682104,0.23824061965569854,-0.7861535083502531,0.10785835748538375,0.4414964569732547,0.7829821878112853,0.7757583428174257,0.266282073687762,-0.038889226503670216,0.4205890134908259,-0.06556715117767453,0.7678439635783434,-0.07550175208598375,-0.49924784526228905,0.3219734928570688,-0.9917105566710234,0.8819818086922169,-0.12285370985046029,0.4585449192672968,-0.97266102489084,0.09617187874391675,-0.2926867143251002,0.24962218711152673,0.31687183398753405,0.12015528976917267,-0.522075914312154,0.5179997864179313,-0.9487905302084982,-0.14588052313774824,-0.15736300637945533,-0.03308933135122061,0.8527686721645296,0.6811312078498304,-0.26575571158900857,0.9103985754773021,-0.9010599940083921,-0.5971265328116715,0.0910088624805212,0.20693470584228635,-0.26984251476824284,0.689544347114861,-0.41986680729314685,0.5969016556628048,-0.026255276519805193,0.6587930852547288,-0.4548541223630309,-0.6450335835106671,0.7622028817422688,-0.2926352028734982,-0.18020680686458945,-0.6448737005703151,0.47834243811666965,0.02073542634025216,-0.4228642047382891,-0.1128898779861629,-0.6353854527696967,0.4447135655209422,-0.2842548047192395,0.8510157433338463,0.42858875123783946,0.19679894717410207,0.9290627548471093,0.018173520918935537,-0.2199942679144442,-0.2599936155602336,0.24846309702843428,0.9567617913708091,-0.4495251248590648,0.7155558979138732,0.07855100091546774,0.517748094163835,0.37666295608505607,0.8901817784644663,0.6125583443790674,0.7321726609952748,0.9590166811831295,0.9565934929996729,-0.4747461532242596,-0.25100796530023217,-0.839185256510973,-0.4435539459809661,-0.15103964693844318,0.5285430666990578,0.6237943703308702,-0.7412375188432634,0.05893671093508601,-0.38275411957874894,0.5112522249110043,0.4276898242533207,-0.1256754845380783,0.2668237965553999,-0.6159934573806822,0.20577795896679163,-0.22001109179109335,0.15560200763866305,-0.7618728033266962,-0.34465174842625856,0.8966339631006122,0.5647453404963017,0.8527074581943452,0.9822498541325331,-0.2481257449835539,-0.4910611202940345,0.20536743057891726,-0.39496642164886,0.7440495546907187,-0.6685703038237989,-0.9488880704157054,-0.41643843799829483,0.5604844251647592,0.5208654277957976,0.3237824267707765,0.16986222006380558,-0.6797290430404246,-0.764479607809335,-0.49666905496269464,-0.9956474276259542,0.9946867786347866,0.7113608787767589,-0.35532069858163595,0.9544937484897673,-0.179141859523952,-0.8127257553860545,0.8368897284381092,-0.7591180042363703,0.23986502084881067,0.8311443855054677,-0.21006594970822334,0.7247650478966534,0.39885442005470395,-0.571252322755754,-0.2260509696789086,-0.511520161293447,-0.44001088477671146,-0.1843735841102898,0.5344149302691221,0.7913572560064495,-0.9088183422572911,-0.004540016409009695,-0.10973471635952592,-0.9948940216563642,0.20417730091139674,0.6915018735453486,0.6266318513080478,-0.31194378063082695,-0.8392985095269978,0.5979820415377617,0.6029365658760071,-0.5036876746453345,-0.3207206530496478,0.9996537617407739,0.6555952006019652,-0.6096562929451466,0.4590002875775099,0.427257486153394,-0.3362334603443742,0.25574211217463017,0.834715177770704,0.12015046644955873,-0.955071406904608,-0.8707353183999658,0.9331267513334751,0.36178291076794267,-0.5414953934960067,-0.8913096264004707,0.816191544290632,0.49497533310204744,0.2953561656177044,-0.2738718274049461,0.27328953612595797,-0.03474213369190693,-0.7148822541348636,0.6328037502244115,0.30028089275583625,0.04395088693127036,0.409343003295362,-0.24715426564216614,0.2420728406868875,0.0578747158870101,0.23294430412352085,0.3668854800052941,-0.17355591105297208,-0.02114271465688944,-0.8196446686051786,0.5501133110374212,0.8732873788103461,-0.9672074448317289,0.2599141774699092,-0.23245568899437785,0.14041138533502817,-0.07515949103981256,-0.9374595447443426,0.24345620023086667,-0.7883545304648578,0.19270533183589578,0.734238026663661,0.38546360936015844,-0.9009676976129413,0.9350303551182151,-0.20100683812052011,0.9479198111221194,-0.5507300458848476,-0.47600777447223663,-0.5138624412938952,0.5309358262456954,0.25410360749810934,-0.10658515244722366,-0.4027090077288449,0.0714791975915432,0.6977574545890093,-0.5688404641114175,-0.5337212402373552,-0.05025126086547971,-0.954751378390938,0.7660612482577562,0.004611303564161062,0.19155647978186607,-0.2515111309476197,0.9583533322438598,0.2411541361361742,0.1486991229467094,0.544158298522234,-0.44730264181271195,0.6908685984089971,0.5406608642078936,0.9873399618081748,0.1336609241552651,0.04006016626954079,-0.7580562219955027,0.7714080354198813,0.11385448975488544,0.2371763540431857,-0.2228257074020803,0.6287663369439542,-0.3328562490642071,0.46740985475480556,-0.46744938055053353,-0.5943576009012759,0.5538461059331894,0.8005777075886726,0.5706147234886885,0.1071975170634687,-0.8125546905212104,-0.7799777071923018,0.7536040781997144,0.883012895938009,-0.9511042702943087,-0.7482899762690067,0.4216394489631057,-0.6707949391566217,0.12268548319116235,0.3110648365691304,0.476256201043725,0.4173738118261099,0.5701327114365995,-0.45151312788948417,-0.9034676770679653,0.31191640067845583,-0.33386023296043277,0.8649844168685377,0.5723525788635015,-0.46082826890051365,0.8934014164842665,-0.13728652289137244,0.10485444590449333,-0.8602676098234951,-0.2722216132096946,-0.26449723448604345,-0.01720836339518428,0.26848470512777567,0.955648010596633,-0.7862376607954502,0.6380232139490545,0.021899853367358446,0.990382170304656,0.951023115310818,-0.7537995167076588,-0.5568238976411521,0.5274602775461972,0.7341804285533726,-0.3979637436568737,0.32653080858290195,-0.9354623779654503,0.1258116546086967,-0.5612900322303176,0.5946285338141024,-0.5523120914585888,0.15081107104197145,0.12851422699168324,-0.640815045684576,-0.604792189784348,-0.8663319335319102,-0.3197940615937114,0.9499018923379481,0.22902558371424675,-0.2615995784290135,0.3841978623531759,0.8971739141270518,0.39356063352897763,0.7574499039910734,0.6221295795403421,0.8972923806868494,0.7125364602543414,0.21833924110978842,0.9822699469514191,0.310623686760664,-0.8234530515037477,0.06940904725342989,-0.5647995439358056,0.442586001008749,0.2196160634048283,-0.46411623852327466,-0.7081529218703508,0.702811234164983,0.653832359239459,-0.6486200033687055,0.10756731918081641,0.9749704301357269,-0.5460533583536744,-0.22569414135068655,-0.7589349877089262,-0.13391328090801835,0.8190104081295431,-0.7107675005681813,-0.11448746873065829,0.27875163313001394,-0.6657421910203993,-0.8580712964758277,0.634500059299171,0.6450730357319117,0.6388475871644914,0.1114501184783876,0.513148901052773,0.9462832687422633,-0.08524916647002101,0.3358344421721995,0.5974608133547008,0.8011106410995126,-0.39774782955646515,-0.5769259813241661,-0.6812610100023448,0.8672470510937274,-0.18972465069964528,0.6822148161008954,0.9203285174444318,0.30839480832219124,-0.9488322827965021,0.09613958699628711,0.3626361577771604,0.3058318425901234,-0.6058663483709097,-0.22149988869205117,0.6560219912789762,0.5905058230273426,0.13658305816352367,-0.41281690169125795,0.9824660546146333,-0.42706057243049145,-0.2692617801949382,-0.9446788290515542,-0.10812662402167916,0.6096033724024892,0.5603286414407194,-0.26827265368774533,-0.06974400021135807,-0.6880686404183507,0.15720849810168147,0.1648803479038179,-0.4400064814835787,-0.2582126138731837,0.5291756349615753,-0.46139223501086235,-0.9772297921590507,-0.6830320521257818,-0.3873720308765769,-0.9417917309328914,-0.1822759206406772,-0.15638013603165746,-0.4210811317898333,0.9959158049896359,-0.5732661406509578,-0.7654961030930281,-0.014678057748824358,-0.11188264051452279,-0.7965867170132697,-0.550736257340759,0.3521646694280207,0.7969180294312537,-0.5862000486813486,-0.3501187809742987,-0.2065894058905542,-0.18313934188336134,-0.22962854988873005,-0.4485981003381312,-0.15996491629630327,0.26274649146944284,0.9549397579394281,-0.9161077183671296,0.7580043384805322,0.03648331435397267,-0.07662427984178066,-0.20429498655721545,-0.7374395583756268,0.669021557085216,0.6063979635946453,-0.04898312967270613,-0.9395814775489271,-0.9857399128377438,0.7442514151334763,-0.10754100186750293,0.6912040752358735,-0.1579453288577497,0.3982086759060621,0.2409096765331924,-0.8823703341186047,0.9997524288482964,-0.50298958318308,0.12458174675703049,-0.4377432968467474,-0.5001424374058843,0.8719040481373668,-0.17272995552048087,0.9706880673766136,0.7316857790574431,0.6904026819393039,0.7281315322034061,0.9371278984472156,0.9349613571539521,0.03026797203347087,-0.020489785820245743,0.26854596147313714,-0.9584349179640412,0.2768032643944025,-0.3379809260368347,-0.6322201895527542,0.2537516299635172,-0.6129812342114747,-0.7353542475029826,-0.5080900453031063,0.2232935018837452,0.5757193877361715,0.49834061646834016,-0.6575581845827401,0.3545905197970569,0.4619722147472203,-0.48316681664437056,-0.44995015300810337,0.8715087808668613,-0.1487423530779779,-0.7006329195573926,-0.8089415621943772,0.79182239016518,-0.8620738610625267,0.20544489659368992,-0.25964407343417406,0.5714487479999661,-0.49120615096762776,-0.8498580087907612,0.6451768707484007,-0.4569638120010495,-0.37904956424608827,0.03217929881066084,-0.4183048326522112,0.10809584194794297,-0.8043876267038286,-0.8892326527275145,0.6965390942059457,0.5105160847306252,0.4996789265424013,-0.998392156790942,-0.8646223209798336,0.46912670275196433,0.6382680083625019,0.23277739202603698,0.16904511069878936,-0.9519825410097837,-0.7996835042722523,0.5210338155739009,-0.8050963650457561,0.946362467482686,0.5263812742196023,0.6629007956944406,0.31432503880932927,-0.557065540459007,-0.22774714836850762,-0.490013241302222,-0.19301082752645016,-0.1609894293360412,0.3244294240139425,-0.0362539361231029,0.15544841857627034,0.0658586430363357,0.46470110258087516,0.7671490483917296,0.6130192670971155,-0.6892414675094187,0.11750405468046665,-0.41063985042274,-0.7019635341130197,0.03790630819275975,0.21983441384509206,0.050511236768215895,-0.3092049523256719,-0.998262545093894,0.7329460680484772,-0.1602462800219655,-0.7897511865012348,0.1542596691288054,0.16008171113207936,-0.48616888327524066,-0.24376808013767004,0.8865454830229282,-0.6749075883999467,-0.5609204573556781,0.27977596689015627,-0.3361516408622265,-0.8283364516682923,-0.9470180780626833,0.17743395920842886,0.3957018847577274,0.5753852934576571,0.8206082005053759,-0.19067793199792504,-0.02593970252200961,0.8901492059230804,-0.37911014491692185,0.7936790338717401,0.789241527672857,-0.8777822740375996,0.2751163588836789,-0.24784731725230813,0.07941863825544715,-0.0555456206202507,0.11915227258577943,0.4400453008711338,0.5944049055688083,-0.4497844777069986,0.40642921486869454,-0.09727415908128023,-0.9174806377850473,-0.3918941537849605,-0.2218943741172552,-0.36887789936736226,0.13894920330494642,0.1847366988658905,0.8095745365135372,0.2149299937300384,0.6681311526335776,0.9231938938610256,-0.5826123054139316,0.289413689635694,0.5829483782872558,-0.38111250242218375,0.2884118277579546,0.6795965619385242,-0.5226768087595701,0.36299059074372053,0.5816230759955943,-0.21932207373902202,0.3041739813052118,0.8524898695759475,0.1478263265453279,-0.4918158343061805,0.2609220864251256,-0.6330881821922958,-0.485931143630296,-0.18122489284723997,-0.6537077026441693,0.5393157182261348,-0.3279995904304087,-0.1868294347077608,-0.3833741983398795,0.9732048632577062,-0.1343959835357964,-0.9317541318014264,0.6364775779657066,-0.7286552530713379,0.557011105120182,0.7169375792145729,0.29901404259726405,-0.2083957507275045,-0.37490307493135333,-0.5903899557888508,-0.9319032914936543,-0.26947720162570477,-0.535554364323616,-0.7542267190292478,-0.6725914091803133,-0.17294215643778443,-0.7558739129453897,-0.984723886474967,0.19149625161662698,-0.0059333438985049725,-0.3619832522235811,0.06737157143652439,0.010131088551133871,0.17428556457161903,-0.1578900725580752,0.4072173675522208,0.31147681921720505,0.9521381934173405,0.02190758939832449,0.200042846146971,0.28454283298924565,-0.8648884505964816,0.4348715324886143,0.6097703012637794,0.8600600278005004,-0.5715474579483271,0.274983870331198,-0.5156124476343393,-0.24527247063815594,0.9342287518084049,-0.04418736044317484,0.132599460426718,0.2846740414388478,-0.5388001748360693,0.868212413508445,0.29312140634283423,-0.4254251313395798,-0.41448873234912753,-0.5971243809908628,-0.3378244829364121,0.9695617794059217,-0.22583420388400555,-0.7378522688522935,-0.09907129406929016,0.5934252045117319,0.34065893944352865,-0.9565072986297309,0.2893982487730682,0.1768719321116805,0.9855531076900661,-0.7135104816406965,0.10272873844951391,-0.7545600342564285,0.885904683265835,-0.23154672840610147,0.770655401982367,-0.44229581113904715,-0.5185363381169736,-0.7980718249455094,-0.8393718316219747,0.23924786923453212,-0.042829461861401796,-0.6771668395958841,0.6605896330438554,0.7818411365151405,-0.34028561878949404,-0.22942833043634892,0.9130158880725503,-0.7108584083616734,0.47085250774398446,-0.09267299622297287,-0.740008685272187,0.8817163677886128,-0.1914478149265051,-0.8510870640166104,-0.4984790850430727,0.6130355941131711,-0.8709945417940617,-0.8485364383086562,0.4985970910638571,-0.533363658003509,-0.4958949079737067,0.9907827139832079,0.19239862030372024,0.7428444125689566,0.6413674638606608,-0.16063269367441535,-0.7740607471205294,-0.5952805397100747,-0.9217176386155188,0.9013659008778632,0.23527173465117812,-0.6995708160102367,-0.8794177356176078,-0.8242262536659837,0.07190506206825376,-0.9400335527025163,0.817472115624696,0.772270807530731,-0.17324035102501512,0.23900165874511003,-0.59046536590904,0.47913691215217113,-0.1492144512012601,-0.6208487008698285,0.0009899390861392021,0.19191366899758577,-0.2624493553303182,0.9786397027783096,0.9034807146526873,-0.06393982982262969,0.824979234021157,-0.8850359031930566,-0.16776903020218015,0.034597639460116625,-0.5426287511363626,0.5933898487128317,-0.801012247800827,0.29395566089078784,-0.016182131599634886,-0.03376429760828614,0.08683341322466731,0.31650213338434696,0.24943322921171784,0.1481698821298778,-0.713904713280499,-0.5141738899983466,-0.6444467692635953,0.3896799641661346,-0.33961183577775955,-0.9244323498569429,0.09239127999171615,-0.3933753343299031,-0.01942026847973466,0.12172258226200938,-0.41701474878937006,0.19246036419644952,0.7180871441960335,0.5172865609638393,-0.32448666682466865,0.24716447805985808,0.5602420503273606,-0.4437396712601185,-0.5300406748428941,0.2567858472466469,0.489381140563637,-0.8019494824111462,0.20048112841323018,-0.9510949049144983,-0.9809959861449897,-0.34566563181579113,0.08651635143905878,0.20982975093647838,0.6741679473780096,-0.22655807249248028,-0.16027050465345383,0.8440739610232413,0.676622983533889,-0.7214475488290191,-0.28877907805144787,0.027081718668341637,0.9638314917683601,0.44508126843720675,-0.7072085859254003,-0.1775422664359212,-0.5267114471644163,0.6758604738861322,0.1315081873908639,-0.8507531685754657,-0.2621868820860982,-0.7810259722173214,-0.08319003833457828,-0.8574085053987801,0.441578168887645,-0.1506877252832055,0.8866705419495702,-0.11719485837966204,-0.06262345286086202,0.3920810632407665,0.7224876377731562,0.6284676473587751,0.07838074257597327,0.7494893302209675,-0.9142229040153325,0.6766116456128657,-0.6531363683752716,-0.8218640945851803,0.805550754070282,-0.2990595051087439,0.5036865072324872,0.3419252401217818,-0.5571608021855354,0.8472992242313921,0.5209139180369675,0.8925866894423962,0.30907578207552433,-0.5231892256997526,-0.2477645487524569,0.8091339552775025,-0.6404177988879383,-0.2537444345653057,0.317911462392658,-0.8775206254795194,0.8186421012505889,-0.03955662902444601,0.9212416363880038,0.07854333193972707,0.39573034225031734,0.8488574288785458,0.14993387227877975,-0.5723185958340764,-0.32017446169629693,0.5498465141281486,0.620371098164469,-0.5900732260197401,0.7684972216375172,-0.8525405256077647,0.3655060036107898,0.8188864071853459,-0.922752374317497,0.3284931732341647,0.8963465578854084,0.11657078750431538,0.17811310337856412,-0.7044770987704396,-0.32326967315748334,0.4022700828500092,0.12817830219864845,-0.7215751809999347,-0.05451252916827798,0.1464293380267918,-0.9719403549097478,-0.5110656237229705,-0.7663478450849652,-0.9858653550036252,0.016849202569574118,-0.7517673233523965,0.4836514201015234,0.5218256679363549,0.5428427364677191,-0.823064022231847,-0.3571510370820761,0.4208963019773364,0.4026224506087601,0.3946001208387315,-0.2877560993656516,-0.6852277405560017,0.2972987783141434,-0.2654284844174981,0.132904052734375,-0.792902862187475,-0.7521210317499936,0.13914522575214505,0.1800455073826015,0.7399882520548999,0.644743159878999,0.7436016704887152,-0.3312004255130887,0.4553947849199176,0.29688361566513777,-0.0413721464574337,0.8389537408947945,-0.06448948895558715,-0.08418491389602423,0.39487065747380257,0.10996870137751102,-0.8357303845696151,-0.7151736007072031,0.12387196067720652,-0.42691096384078264,0.022531514521688223,-0.04044681927189231,0.4193363804370165,0.33683759113773704,-0.15268593607470393,0.10151929222047329,0.41256640246137977,0.6789126456715167,0.8934655422344804,0.5705590429715812,0.6982105784118176,0.8447901029139757,0.28584122005850077,0.9966154755093157,0.8315733838826418,-0.2956742192618549,-0.8184506515972316,0.17009527143090963,0.8616106631234288,0.6696158829145133,0.5367533699609339,-0.7026296709664166,0.28123711235821247,-0.6309431381523609,0.2594081345014274,0.3017219710163772,-0.8324575261212885,-0.9718494135886431,-0.46860246919095516,0.6583850840106606,0.060710893012583256,0.49171785078942776,-0.3721382040530443,-0.9102933686226606,0.12681585829705,-0.8256453038193285,0.9436174547299743,0.9171742489561439,-0.06780434353277087,-0.2528320048004389,0.6053881351836026,0.7673394191078842,-0.4274642658419907,-0.1809739014133811,-0.35035235760733485,-0.5074482276104391,-0.7203946844674647,-0.7109158877283335,-0.8300506635569036,-0.8984756534919143,0.21864344784989953,0.20853842981159687,-0.25252294540405273,0.7196807237342,-0.00953923212364316,0.7524329293519258,-0.5579157141037285,0.08118856837972999,0.06380026135593653,-0.2330260812304914,0.17106764763593674,0.1805294333025813,0.3291408009827137,0.623876488301903,-0.06434673862531781,0.7367443568073213,-0.8807501690462232,-0.31718102004379034,0.5359023255296052,-0.7660622084513307,0.6389942178502679,-0.23408761713653803,-0.49233601428568363,0.1588782975450158,-0.5854615760035813,0.09120635269209743,-0.7218560785986483,-0.0020292499102652073,0.9450332005508244,-0.25107925990596414,-0.37026198068633676,-0.031674661207944155,0.47962429840117693,-0.6538644293323159,0.2605409831739962,0.5857051806524396,-0.6088180700317025,0.9394120881333947,-0.7727870917879045,0.18372410396113992,-0.058702399022877216,-0.984894160181284,-0.6668515694327652,0.13693158701062202,0.14177847234532237,-0.33771766861900687,0.26705819368362427,0.7942884070798755,-0.2866950505413115,-0.561287241987884,-0.5638282014988363,0.7666839766316116,-0.3449976919218898,-0.5889569926075637,0.2918860577046871,0.5952818603254855,0.4103485378436744,0.45143377035856247,-0.07285099802538753,-0.9388551581650972,-0.27016743551939726,0.32477674586698413,0.6172452289611101,0.40351061383262277,0.871607543900609,0.23083856794983149,0.9606430819258094,-0.6814793581143022,0.37203318253159523,-0.8535511181689799,0.647326379083097,-0.6608359012752771,0.599589382763952,-0.9593770010396838,-0.48632887843996286,0.04994163988158107,0.8546685734763741,0.36742267990484834,-0.8158312514424324,0.005745525471866131,-0.9558105040341616,-0.4159426325932145,-0.053255322854965925,0.024333357345312834,-0.34747493313625455,-0.5496991272084415,0.3851813618093729,0.7334488024935126,0.23356660269200802,0.735438612755388,-0.6454135430976748,0.23481744434684515,-0.9516511023975909,-0.5592778935097158,0.03775875037536025,-0.26226540142670274,0.29932398442178965,-0.7966030999086797,-0.07247678143903613,0.7726863864809275,-0.9771750178188086,0.39806501334533095,0.03739340743049979,0.10740812448784709,0.8663791604340076,-0.8774823294952512,0.07441125204786658,0.2665872718207538,-0.40376648027449846,-0.7667313232086599,0.24070129916071892,0.5120450723916292,0.3083833740092814,-0.20758810825645924,-0.088132178876549,-0.6004042727872729,-0.12203036854043603,0.885969434864819,0.647800862789154,-0.4268501433543861,0.6755365505814552,0.4841856313869357,0.38345245365053415,0.9880633722059429,-0.31622787471860647,-0.9111309554427862,-0.954685599077493,0.7265137638896704,-0.6987547036260366,0.5602586539462209,0.547139692120254,0.6143331690691411,-0.510962001979351,-0.05006298562511802,-0.36626715073361993,-0.538013850338757,0.9189368849620223,0.28983786841854453,-0.988278838340193,0.221384865231812,0.469497743062675,-0.29613348422572017,-0.6441083177924156,-0.9622937105596066,-0.781976614613086,-0.2202861518599093,0.5463248086161911,0.008879746776074171,-0.7662421287968755,0.1387018421664834,-0.05386700853705406,-0.49087815918028355,-0.6304977214895189,-0.7043260619975626,-0.7106678066775203,-0.09184481156989932,0.9669884759932756,-0.8144541452638805,-0.2576407096348703,-0.2803815738297999,0.8898515487089753,0.6619765916839242,0.5457115140743554,0.43271765345707536,-0.7119225091300905,0.7359832311049104,0.4968775175511837,0.4835515939630568,-0.07249053800478578,0.4456225400790572,-0.07439910806715488,0.1887417547404766,-0.6442170813679695,0.9131395220756531,0.9705595271661878,0.21160942548885942,-0.673054282553494,0.7164324577897787,-0.25708044646307826,0.25896253529936075,-0.7537502180784941,0.8924679905176163,0.153698087669909,0.1272625862620771,-0.0014496739022433758,0.39621069142594934,0.5952013107016683,0.31811583414673805,0.03612811956554651,-0.9809985812753439,-0.42502116644755006,-0.1668840106576681,-0.7628266215324402,0.684566234704107,0.21060403063893318,0.8565304414369166,0.295913880225271,-0.6955292271450162,0.6304653487168252,-0.4839216824620962,0.8352290512993932,0.05588843813166022,-0.4460123972967267,0.7213813001289964,0.1576982196420431,-0.23685625288635492,-0.11151385493576527,0.5460090106353164,-0.10791186382994056,0.7516934643499553,0.06651019677519798,-0.7318320614285767,0.3885948513634503,0.6928914212621748,-0.6695644557476044,-0.7568962387740612,0.8919446640647948,-0.7157387589104474,0.6233023311942816,0.11511894222348928,-0.6498993653804064,-0.3027405543252826,-0.9352956721559167,-0.1389318136498332,0.19159415550529957,-0.17779824975878,-0.4732526452280581,0.8802569368854165,0.5213488889858127,-0.4466041154228151,-0.800104493740946,-0.04762683156877756,0.2080312566831708,-0.22128001833334565,-0.19062291271984577,0.44317036401480436,-0.24934561923146248,-0.025759455747902393,0.6991114187985659,-0.7446198989637196,-0.468721117824316,-0.8102189274504781,-0.7588681378401816,0.6329331295564771,0.02857773331925273,0.9107180708087981,0.06133167212828994,0.9435071828775108,0.9820874435827136,0.5038968320004642,0.394939168356359,-0.5473064864054322,0.7563076335936785,0.14213830884546041,-0.020603546872735023,-0.2638295446522534,-0.7126432722434402,-0.4891258948482573,0.4120775358751416,0.5698232939466834,0.2853347440250218,0.10085617797449231,0.23911982774734497,0.7069905623793602,-0.5558398091234267,0.1829445851035416,0.8183683892711997,-0.07427277276292443,0.06593307526782155,0.1783231203444302,0.46780025446787477,-0.9212073478847742,0.4719770001247525,-0.9863722654990852,-0.2611026638187468,0.04635533783584833,0.2046412113122642,-0.4327778471633792,0.6107153655029833,-0.7366069592535496,0.12840853165835142,0.13612686237320304,0.6494395569898188,0.62008734093979,0.5253096087835729,0.6523514590226114,-0.6651532878167927,0.7904774039052427,0.8802488432265818,-0.19080249220132828,0.025043563451617956,-0.08791809622198343,-0.014229427091777325,0.561505445279181,-0.9063178030773997,-0.41184785636141896,0.944139766972512,-0.2548130340874195,0.11037892941385508,-0.2797487461939454,-0.3915732214227319,-0.006977580487728119,0.401968065649271,0.9486619387753308,0.8870587483979762,0.1279782042838633,-0.7357086143456399,0.5126417186111212,-0.4957452933304012,-0.38389838580042124,-0.6799441147595644,-0.49999253638088703,-0.515785797033459,-0.9567870451137424,-0.02224369766190648,0.16427148133516312,-0.32041035778820515,-0.6645376197993755,-0.2747230255044997,0.848853460047394,-0.025638585444539785,0.005231026094406843,0.45338285667821765,-0.06299251224845648,0.4380250354297459,0.8626504428684711,0.7051114425994456,0.8787289122119546,-0.07872716430574656,-0.9477155548520386,-0.13151529617607594,0.3291423707269132,-0.7607449856586754,0.8899632953107357,-0.6780519601888955,0.9505232675001025,0.7945062723010778,-0.01743393251672387,0.19229323649778962,-0.6028505023568869,0.9032653835602105,-0.0022090240381658077,0.2801582729443908,0.6501944069750607,-0.5606262674555182,-0.9434483284130692,0.0922919362783432,-0.02550187148153782,-0.19906058721244335,0.6912143900990486,-0.26353290770202875,-0.019155243411660194,0.29305541096255183,-0.6477297437377274,-0.5339151276275516,0.8099893997423351,0.7192628430202603,0.6195661020465195,0.9954292778857052,0.35572494799271226,0.8349542813375592,0.7511889147572219,0.7867782013490796,0.08541086409240961,-0.2733931061811745,0.6225755359046161,-0.44310300797224045,0.7195723643526435,-0.2344572339206934,-0.06363571621477604,-0.8847400327213109,0.9303785534575582,-0.8946991697885096,-0.6421632757410407,-0.8315441366285086,0.8060139552690089,-0.8336156164295971,0.4979334231466055,0.22180480370298028,-0.7173971901647747,0.9016125830821693,-0.6111991959623992,0.3994249328970909,0.7257287567481399,0.12897879723459482,-0.48462365521118045,-0.9186405311338603,0.12970717856660485,-0.30591732216998935,-0.8560137026943266,-0.4010970932431519,-0.5947939902544022,0.8849608055315912,-0.06468424620106816,-0.638687392231077,0.4739462439902127,0.8711729096248746,-0.9896889575757086,-0.5170792196877301,0.8394845719449222,0.5797150214202702,-0.0707775903865695,-0.3171193809248507,0.5459689777344465,-0.7954857898876071,0.25040756119415164,0.3848552885465324,0.6881430190987885,0.1912334579974413,-0.3353514880873263,0.05039389757439494,-0.5933627220802009,0.7322227484546602,-0.6339847720228136,-0.33321331813931465,-0.49789413111284375,0.8796974951401353,0.6805810262449086,0.8371840668842196,-0.1313212956301868,0.5249895914457738,0.4131938377395272,0.27571287751197815,-0.4043445438146591,-0.20545250130817294,0.8381610647775233,-0.5658079981803894,0.687804015353322,0.009110523853451014,0.38378106663003564,0.32027663895860314,-0.14857247518375516,0.53512844722718,0.07475610449910164,0.00010582385584712029,-0.4483053055591881,0.4705131193622947,0.28609980270266533,-0.5237928386777639,-0.25532779237255454,0.49934520525857806,0.024397861678153276,0.9117618747986853,-0.9152875505387783,0.6194824273698032,-0.8319615619257092,0.9625455224886537,0.23825107095763087,-0.903472310397774,0.4270794354379177,0.5457438612356782,-0.7418406759388745,-0.5949512547813356,-0.7845778074115515,-0.2925500823184848,-0.9077973556704819,0.5906053008511662,0.4762833258137107,0.2494889134541154,0.5666232234798372,0.5680468203499913,-0.28966665314510465,0.347993859089911,-0.6327239787206054,0.7570899408310652,0.117582184728235,-0.2462874804623425,-0.9310330539010465,0.22446499578654766,0.48689624620601535,0.18818174954503775,-0.16924518812447786,-0.8865980175323784,0.8930649403482676,-0.736853901296854,-0.045107735786587,-0.5967235243879259,0.22142453398555517,-0.15781713742762804,0.43391447653993964,0.33943655295297503,0.3175864089280367,0.29819411784410477,0.7820085771381855,-0.9316899483092129,-0.4982051504775882,0.06875752983614802,0.08411307819187641,0.061088614631444216,-0.9555442840792239,-0.4685452706180513,0.3103715577162802,0.5575995277613401,-0.7184900990687311,0.14627167908474803,-0.28866471955552697,-0.5870205406099558,0.8019510759040713,0.9984078006818891,-0.6602548183873296,0.5555517729371786,-0.22892680671066046,-0.12949662609025836,0.5618144343607128,-0.43025134736672044,-0.6142563479952514,-0.23835881194099784,0.006340768653899431,0.2895164922811091,0.035057052969932556,-0.827684089075774,0.20050250366330147,-0.4183278437703848,0.6580829378217459,0.3946489957161248,-0.8822090681642294,0.7083753230981529,0.8516484224237502,0.8166144690476358,0.6995682381093502,0.2101449528709054,0.710199220571667,0.9878671243786812,-0.041852484457194805,-0.9755451860837638,0.11486079730093479,-0.41881945030763745,-0.48852528259158134,-0.5084184822626412,-0.366356463637203,0.6875756643712521,0.36538942810148,0.4534606705419719,-0.527255829423666,0.5119050140492618,0.9419362829066813,-0.21043087728321552,-0.10963172372430563,0.0183531460352242,0.22199852112680674,0.04473046353086829,0.431462527718395,0.8872663751244545,0.09645859384909272,-0.26946192793548107,0.004571669735014439,-0.025986019521951675,-0.3658315110951662,0.8549561281688511,0.5375347859226167,-0.35230002040043473,0.30512653291225433,-0.6790515989996493,-0.3862344129011035,-0.14225254906341434,-0.9489126652479172,-0.5881345504894853,-0.13868161151185632,-0.24718432826921344,0.9272232539951801,0.5463916473090649,0.3200798435136676,-0.2785126226954162,-0.8206873810850084,-0.2803877741098404,0.22174194920808077,0.5761566418223083,0.03360575623810291,-0.15763320587575436,0.878724270965904,0.8285669144243002,0.5806028307415545,0.024054461624473333,-0.9630129081197083,0.7587972139008343,0.9578767181374133,-0.4987760605290532,-0.06459069438278675,-0.35474970983341336,0.7345978487282991,-0.8953239605762064,0.6105230092070997,-0.4191405023448169,-0.5028325570747256,-0.888963932171464,-0.5776833724230528,-0.3755298485048115,0.9938077786937356,-0.08520019147545099,0.5948529210872948,-0.8655927390791476,-0.6333078108727932,0.8416491425596178,-0.4954773518256843,0.4826370384544134,0.9756625080481172,0.9050779696553946,-0.6995838955044746,-0.8896002853289247,0.354370370041579,0.5486857104115188,0.6405939692631364,-0.1474700211547315,-0.443969770334661,0.5984505764208734,-0.7453533415682614,-0.9867509012110531,0.41807097662240267,-0.33678263053297997,0.07989501953125,-0.09048029035329819,-0.7608306906186044,0.8633110448718071,-0.8761968868784606,0.08527078665792942,0.13591783912852407,0.7256722543388605,-0.765414142049849,0.2248142180033028,0.5621571820229292,0.15000754361972213,0.17564093274995685,0.39041522378101945,-0.2636090680025518,0.6190754184499383,0.3995545511133969,-0.8239537142217159,0.733978078700602,0.1584374657832086,0.9534788471646607,0.3587940502911806,-0.49160636123269796,0.040043716318905354,-0.2955348934046924,0.8738754773512483,0.9427275094203651,0.5257511991076171,-0.5932285082526505,-0.10410308139398694,-0.7748967679217458,0.4365410730242729,0.6491718254983425,-0.6423602281138301,-0.1665248330682516,-0.18695033201947808,-0.5612996933050454,-0.43897964200004935,0.16325575159862638,0.02289844350889325,-0.7800094648264349,-0.024965223390609026,0.5322447861544788,-0.23449935065582395,0.8713024752214551,-0.11557832406833768,0.8149491441436112,-0.39689782727509737,0.5388409891165793,0.010211181826889515,-0.009252747986465693,-0.32189786015078425,0.549180700443685,-0.09209711523726583,0.9154351563192904,0.3965573040768504,-0.19401081558316946,0.5236035585403442,0.24103174498304725,0.44361067935824394,0.7747715092264116,-0.6616615736857057,-0.7303749974817038,-0.8058257345110178,0.9399488978087902,-0.24771171947941184,0.07760947244241834,0.6827238160185516,-0.7572279614396393,-0.42470886930823326,0.715563228353858,0.39967917930334806,0.366690571885556,-0.5326568512246013,0.4773719934746623,-0.3556936336681247,-0.4806207958608866,-0.6330601875670254,0.3385019884444773,-0.19035924784839153,-0.6385240131057799,0.378369287122041,-0.22375018568709493,-0.40612736949697137,-0.946641443297267,0.5333441449329257,0.8485483233816922,-0.9191524474881589,0.1160009209997952,0.6205132030881941,0.675336797721684,-0.9847747511230409,-0.46299808006733656,-0.7372266813181341,-0.887015737593174,-0.14587990753352642,0.4381298799999058,0.2615080950781703,0.8524087127298117,0.47344620898365974,-0.7121013049036264,-0.17679006466642022,-0.18200932070612907,0.5229142070747912,0.615328005515039,-0.7104509477503598,0.05329284956678748,0.596957593690604,-0.5658939830027521,-0.7324017561040819,0.9812575373798609,-0.9648420214653015,0.3693762822076678,-0.023595033213496208,-0.562277555000037,0.5349155301228166,-0.6580418734811246,0.469943483825773,-0.40891034808009863,-0.9596866532228887,-0.4743075789883733,0.8183399853296578,0.7498140367679298,-0.24528589518740773,-0.5536963175982237,-0.38699749391525984,0.34132251562550664,0.8998545985668898,0.3240666692145169,0.10723065538331866,0.2502530380152166,-0.8343365443870425,0.9415203728713095,0.21626966632902622,0.0341847431845963,-0.8839173135347664,-0.12777177710086107,-0.522342795971781,0.2699495847336948,-0.09545214846730232,0.16204757895320654,0.46578157786279917,-0.4139874931424856,-0.011533583514392376,0.543301151599735,0.6078655342571437,0.14476766483858228,0.0652887225151062,0.8698158296756446,-0.11259407177567482,-0.4702358008362353,0.13245968520641327,-0.5957521786913276,-0.40453001530840993,0.20883982814848423,0.7222800012677908,0.8720365045592189,0.15877615427598357,0.22461055358871818,-0.3798227198421955,0.3195079327560961,0.8747511059045792,-0.02113732323050499,0.5393661130219698,-0.4460873012430966,-0.7198077454231679,-0.9036650420166552,0.02652696892619133,-0.006519494578242302,0.5030066128820181,0.8111358331516385,-0.08281892398372293,0.07418200001120567,-0.4190766424871981,0.9280090569518507,-0.06046851631253958,-0.5216575399972498,0.7299808687530458,0.7971647493541241,0.4738756865262985,0.20492086373269558,-0.21141629805788398,0.7653883742168546,0.534600826445967,-0.21315413247793913,0.1956543349660933,-0.5022432371042669,-0.2229118230752647,0.2035819231532514,-0.2940973164513707,-0.8636635020375252,-0.5918807554990053,-0.7268635756336153,-0.06847157329320908,-0.6755239637568593,0.8874839749187231,0.06478028604760766,-0.030390101950615644,-0.4407287430949509,0.9542269119992852,0.20898672845214605,-0.8749453378841281,0.8614139249548316,-0.6980498726479709,0.721148831769824,-0.7774246158078313,-0.36237406730651855,0.930091924034059,0.9487232817336917,-0.37772754300385714,-0.18916696915403008,-0.4878157409839332,0.04656026139855385,0.07287015113979578,0.33087551733478904,-0.5589568265713751,-0.37740527791902423,-0.4092323309741914,0.5405629044398665,0.44309465028345585,-0.22363967495039105,-0.4567234613932669,-0.0542566510848701,0.1366919414140284,0.15517728682607412,0.7393518565222621,-0.17102797236293554,0.08276560436934233,0.8375983033329248,-0.3954043434932828,-0.7411821968853474,0.38856234308332205,0.8317416752688587,0.49280482437461615,0.4562894655391574,0.5817210362292826,-0.24936150293797255,-0.382509000133723,0.8638153034262359,0.51272495649755,0.02563312742859125,-0.7110600448213518,0.22978792153298855,0.07289251126348972,0.3406214751303196,0.3881407552398741,0.9211769718676805,0.09059086814522743,-0.6895130155608058,0.7340765707194805,-0.5639511491172016,-0.9071524068713188,-0.08413989283144474,0.6514114001765847,-0.292136596981436,-0.8043182799592614,0.3997441199608147,-0.41188335744664073,-0.6875633816234767,0.17713403981179,-0.5562454997561872,0.08867453131824732,-0.5486165722832084,0.5807743649929762,0.9586989227682352,-0.6336833583191037,-0.9589005135931075,-0.15925905760377645,0.9487273236736655,-0.1559121822938323,-0.4405271909199655,0.6357732759788632,-0.27697636000812054,0.7624966041184962,-0.959184015635401,0.015430931001901627,0.9419623799622059,-0.08300461480394006,0.6704967333935201,0.23905933182686567,-0.9646310503594577,-0.473094857763499,-0.29006273066625,-0.8739779149182141,-0.30133033683523536,-0.12479021353647113,-0.5185498031787574,-0.5419328082352877,0.13940183678641915,-0.6725925556384027,0.8871013345196843,-0.30538144102320075,-0.9764596060849726,-0.5281314640305936,-0.1118994359858334,0.10946076456457376,0.5714711798354983,-0.04944838024675846,-0.946553323417902,0.6947195152752101,-0.2423422383144498,0.24197620246559381,-0.1487209340557456,0.7000062065199018,-0.5810270430520177,-0.899882834404707,0.021689265500754118,0.9714545402675867,0.4542985553853214,-0.9376167329028249,-0.2869847961701453,0.7955706994980574,-0.8504124078899622,0.2689711884595454,0.6690502190031111,0.3001426765695214,-0.5299930577166378,0.03379104100167751,-0.912211419083178,-0.7147861798293889,0.8746971329674125,0.8273115740157664,0.3815059415064752,0.32451977115124464,0.29669049195945263,-0.38473150646314025,-0.9083152888342738,0.35181174147874117,0.5582977789454162,0.14685499854385853,0.8067072778940201,-0.5589942298829556,0.36282747192308307,-0.14622614486142993,0.7090723873116076,0.8035699888132513,0.18927215971052647,-0.883907217066735,-0.7235890161246061,-0.4538252726197243,0.9606881965883076,-0.8515419038012624,0.1401297114789486,0.22027298714965582,-0.8729930333793163,-0.09808254009112716,-0.7204149626195431,-0.893722771666944,-0.8461400279775262,-0.23959194589406252,-0.505139525514096,0.5383984143845737,0.0007782694883644581,-0.4309270321391523,0.6645769504830241,-0.977107900660485,0.17191146314144135,0.5790778947994113,-0.029556525871157646,0.8469785368070006,-0.18143468676134944,0.10392451705411077,0.9797619013115764,0.9886446120217443,-0.9955810466781259,0.1852731197141111,0.7983041289262474,-0.74681576481089,0.45534583274275064,-0.18254800932481885,-0.6060369117185473,-0.038632148411124945,0.1785221272148192,0.8254021327011287,0.05763248400762677,0.2153209070675075,-0.08932778472080827,-0.10280372807756066,-0.891425084322691,0.25481445295736194,0.9030842399224639,0.6957092331722379,0.5829633441753685,0.485427881591022,0.3753284476697445,-0.01470479229465127,-0.20389976492151618,-0.9088910864666104,-0.38187379855662584,-0.22775445319712162,-0.8262445805594325,-0.15806448319926858,-0.5498988782055676,0.0896527674049139,0.44612034503370523,-0.4362168777734041,0.6247874437831342,0.843114803545177,0.24211627058684826,0.14076584251597524,-0.8268995177932084,0.6414612573571503,0.3215809133835137,0.30359197594225407,-0.11168160801753402,-0.009595624171197414,0.20070182532072067,-0.12109003122895956,-0.19021364487707615,0.08302740007638931,-0.18248333362862468,-0.49408687092363834,-0.5594713371247053,0.18217356083914638,0.6572176925837994,-0.6946913707070053,0.935405463911593,0.3667743168771267,-0.7474333075806499,-0.8608587686903775,0.6307164910249412,-0.907273706048727,0.8039416219107807,-0.20996620319783688,-0.9064662605524063,0.4451999366283417,-0.7596333189867437,-0.8468599310144782,0.8117708065547049,0.7386056273244321,-0.28592726262286305,0.6562287556007504,-0.3179552978836,0.9495026208460331,0.6715055308304727,0.03200508840382099,0.030382839031517506,0.4270835807546973,0.8410456688143313,-0.13670387538149953,0.1593753951601684,-0.20889152074232697,0.3228976000100374,0.5394038124941289,-0.7799456240609288,0.3508924371562898,0.03806807193905115,0.9053955455310643,-0.27451381320133805,0.7458557379432023,0.5387838198803365,0.9481833586469293,-0.2137698531150818,0.3352098697796464,-0.0362391765229404,-0.8519410821609199,0.58239103294909,-0.8669580155983567,-0.4789502266794443,-0.8236296493560076,-0.4997742963023484,0.4602449955418706,0.025021393317729235,0.3246178003028035,0.08886001352220774,-0.9961400595493615,0.00690979091450572,-0.7587307849898934,0.8441703212447464,-0.9859001757577062,0.5911395740695298,0.412490529473871,-0.3883276986889541,0.06091926898807287,0.7523409738205373,-0.999454996548593,-0.9459754978306592,0.06529826112091541,-0.9938281564973295,0.7053195307962596,0.48475689673796296,0.5600956184789538,-0.5128608965314925,0.8351249932311475,-0.6897433544509113,-0.7029668055474758,-0.6495161461643875,-0.10945731634274125,-0.5381849957630038,0.30567452078685164,-0.5686438190750778,0.43056453485041857,0.44991328986361623,0.6351205697283149,-0.2582057286053896,-0.21210487000644207,0.2113259993493557,0.007861687801778316,0.9433220317587256,-0.36451315972954035,0.44692339515313506,-0.10765919974073768,-0.22472774656489491,-0.42608212819322944,0.16438705706968904,0.2549927141517401,-0.19515921687707305,-0.006837689783424139,0.7192119276151061,0.9005662775598466,-0.2848732122220099,-0.49480356834828854,0.30140590807422996,-0.13190917810425162,0.5976637080311775,0.6139846062287688,-0.2989881965331733,0.8655209569260478,0.7135327495634556,-0.1742004817351699,0.013989470899105072,0.7930872677825391,-0.2949492963962257,-0.8918433203361928,-0.21837628865614533,0.7878829003311694,0.6884347847662866,0.8160016904585063,0.9408412775956094,-0.3729145131073892,0.5723059810698032,-0.6630893279798329,0.058142902329564095,0.8882710263133049,0.25885301688686013,0.0057813008315861225,-0.17650224873796105,-0.44226553849875927,0.9979626638814807,0.8600105568766594,0.07956047356128693,0.16834496846422553,-0.2019597925245762,-0.13327642856165767,-0.8499712464399636,0.2943509998731315,0.05920720752328634,0.211169826798141,0.9650378562510014,0.04083535587415099,0.07522218395024538,-0.2385061071254313,-0.09094276279211044,0.7581015569157898,-0.7114879339933395,-0.397247948218137,-0.09530145116150379,0.5701406649313867,-0.717057844158262,-0.8605795656330884,-0.9619736559689045,-0.8632715791463852,0.8830763837322593,-0.13990379823371768,-0.7012354475446045,-0.2549256724305451,-0.12328461138531566,0.5104987532831728,-0.400630263146013,0.07704984955489635,-0.9166528168134391,0.26607642509043217,0.6408645776100457,0.37183229625225067,-0.41097350511699915,-0.4589119702577591,-0.2973952442407608,-0.5900761703960598,0.37561037205159664,0.32785786176100373,0.09600288141518831,-0.8721023080870509,0.11210750229656696,0.5353743419982493,0.385959560982883,0.979380636010319,-0.14623846719041467,-0.6898786183446646,0.9470125688239932,-0.7575583579018712,-0.8353940565139055,0.8949533919803798,0.25315734138712287,-0.5339589235372841,0.04388653067871928,-0.26085693622007966,-0.6152284382842481,0.42445317888632417,-0.6887993100099266,0.9059306043200195,-0.946006749290973,-0.2813886543735862,-0.8896135087125003,-0.1539284698665142,0.6830357313156128,-0.15042567159980536,0.19856126932427287,-0.9339595497585833,-0.8075974495150149,0.8475115071050823,-0.9180403766222298,-0.1368574402295053,-0.34762484254315495,-0.689570864662528,0.9876688825897872,-0.289383958093822,0.6162684168666601,0.5100999884307384,-0.6411921493709087,0.835216086357832,-0.020532868802547455,0.07326604705303907,-0.6247034622356296,0.9485629382543266,-0.5089984606020153,0.10555182117968798,0.9558966308832169,-0.42430301662534475,0.7561327540315688,0.7200955501757562,0.8601456834003329,-0.19913658127188683,-0.9155441909097135,0.3482516072690487,-0.5309101883322,-0.5636200653389096,0.32357760053128004,0.5706439721398056,0.04242371115833521,-0.12959895189851522,0.7878267858177423,0.2384483115747571,0.049095781054347754,0.18368804967030883,-0.06578978849574924,-0.4950403515249491,-0.10681921942159534,0.42116159619763494,-0.02675255946815014,0.060015053022652864,0.6532581802457571,0.9636857858859003,0.04328891634941101,-0.4424591953866184,-0.29537736577913165,-0.8622664650902152,-0.9753446914255619,0.31814027298241854,-0.4392812978476286,-0.23117085080593824,0.8803435526788235,-0.8538005002774298,-0.09181714849546552,0.5455673434771597,0.46091956784948707,0.923726393841207,0.2871181727387011,-0.13052244251593947,0.953466609120369,0.018236705102026463,-0.8268657233566046,-0.06689381366595626,-0.14122352004051208,-0.4377193017862737,-0.19595417100936174,-0.45551395881921053,0.729843879584223,0.11420449754223228,0.11694805836305022,0.6630881219170988,-0.29140898305922747,0.5640974915586412,-0.33573480835184455,0.7977817039936781,0.16507471073418856,0.12520001642405987,-0.19043138902634382,0.6151624922640622,0.8190435287542641,0.2592206057161093,-0.027037783060222864,-0.2609568885527551,-0.5198693424463272,-0.8407778032124043,0.47707403684034944,0.2844752869568765,0.07030459912493825,0.12354734819382429,-0.9687665370292962,0.2910383786074817,-0.9338573436252773,0.5801061610691249,0.8229882540181279,0.13102440629154444,0.35931869642809033,0.0019143656827509403,-0.7093082345090806,0.5036690719425678,0.274695061147213,-0.4542207485064864,-0.542676736600697,-0.2630553087219596,0.6196327996440232,0.503606554120779,0.5011447290889919,-0.7893763552419841,0.9766123187728226,0.6545578688383102,0.3973766043782234,-0.6783006829209626,-0.6361904540099204,0.4874728503637016,-0.3998218956403434,-0.8412264208309352,0.9265903695486486,0.5944212544709444,-0.11118672555312514,-0.14101438969373703,-0.7366549470461905,-0.2527059423737228,0.9616506672464311,0.2558146584779024,0.7411127234809101,0.5902769849635661,0.30558505887165666,0.4073442560620606,0.4616214772686362,0.5116337463259697,-0.36582609405741096,-0.7289772098883986,-0.029804511461406946,-0.37691616266965866,-0.3340886323712766,-0.6040924405679107,0.945893619209528,-0.24043412040919065,0.9795465115457773,0.27426541643217206,0.8367492738179862,0.01606879662722349,0.01893637888133526,-0.6970883966423571,-0.6727136219851673,-0.3275594236329198,0.9658370153047144,-0.6509154425002635,0.9475763053633273,0.5921817482449114,-0.07427965244278312,0.8453134526498616,0.7158162188716233,0.8589797299355268,-0.28788466565310955,-0.29953274270519614,-0.5213551004417241,0.09530342603102326,-0.08854216849431396,0.022076675668358803,-0.681492265779525,0.5438281102105975,-0.5092385872267187,-0.05626495461910963,-0.9049231675453484,0.5586410076357424,0.30435017170384526,-0.7349873469211161,0.982533578760922,0.48455564631149173,-0.7727758046239614,-0.9121771352365613,-0.5617685178294778,0.7937579634599388,0.46960147423669696,0.9062387538142502,-0.7250483105890453,0.9955757656134665,-0.5536863245069981,0.4010506859049201,0.6408999934792519,-0.37966168439015746,-0.5959796640090644,0.020943510811775923,-0.5912981037981808,-0.8986385175958276,-0.9633469562977552,0.09359709126874804,0.769239800516516,0.09159169858321548,0.8230388192459941,0.8203607820905745,-0.23218683619052172,0.5680031809024513,-0.019433594774454832,0.4255446996539831,0.13302397169172764,0.3359197983518243,0.6319333803839982,0.7997340271249413,-0.0580226113088429,-0.1619749222882092,-0.8564821248874068,-0.22899513831362128,0.8508848138153553,0.27073809364810586,-0.37168761854991317,-0.9833988295868039,-0.4253146625123918,-0.1308027054183185,0.9289943715557456,0.5199099513702095,-0.745149549562484,0.26780000468716025,-0.0399938584305346,-0.048562255688011646,-0.6486230497248471,0.7004803097806871,-0.2304611220024526,0.07749131554737687,-0.04654205683618784,-0.9991370807401836,0.5838520065881312,-0.1638701562769711,-0.9089620844461024,0.6864629192277789,-0.8936297884210944,0.18333840323612094,-0.7012350992299616,-0.44860382191836834,-0.5039482456631958,-0.4895645985379815,0.32118997164070606,0.44361221324652433,0.09997032256796956,0.5040246234275401,0.01343390578404069,0.8758465987630188,-0.14754808973520994,-0.6535562449134886,-0.5013306364417076,0.8119018319994211,0.5891204243525863,0.581461007706821,-0.46607387717813253,0.979275859426707,-0.18860723869875073,0.10520773287862539,-0.4658819539472461,0.6319215912371874,0.5745387626811862,-0.25940339732915163,-0.7566095418296754,0.18437360553070903,-0.8716015978716314,0.29930489230901003,-0.05221418337896466,0.803987221326679,-0.25484143290668726,-0.13121204497292638,0.563806067686528,0.20116473082453012,0.5283226394094527,-0.8655724497511983,-0.1875183437950909,-0.5660260780714452,-0.26514406502246857,0.3346831761300564,0.2423031684011221,0.12000796478241682,-0.6923087816685438,-0.7078376770950854,-0.4611498611047864,-0.30242683039978147,0.3960072468034923,-0.3412358136847615,-0.20976272085681558,-0.20200436701998115,-0.16765007795765996,-0.9713037121109664,-0.13391741272062063,-0.1964663928374648,0.512185376137495,-0.6987864598631859,0.616892843041569,-0.09111915808171034,0.635867222212255,0.9978342531248927,-0.21100304229184985,-0.8552809115499258,-0.7398025272414088,0.9747865814715624,0.21939872158691287,-0.8846069984138012,-0.8394444431178272,0.4160409839823842,-0.9888155683875084,0.5686306897550821,-0.8226048336364329,-0.02349338075146079,-0.40986044192686677,0.6809583939611912,0.37210178608074784,-0.9728752984665334,0.4027529451996088,-0.23637214582413435,-0.3772991709411144,-0.8766630231402814,0.9574907668866217,-0.32767223473638296,0.14258036576211452,0.06160564348101616,0.04377824394032359,0.5037310826592147,-0.12723822053521872,-0.8854947946965694,0.9617306455038488,-0.029759003315120935,0.6112468033097684,-0.18613308342173696,0.6948090335354209,0.7345902328379452,-0.8811832186765969,0.029897239059209824,0.12044034479185939,0.30068934010341763,-0.18573952186852694,0.29268487682566047,0.6755703510716558,0.6854936722666025,-0.9469065861776471,0.0996028701774776,0.2523939465172589,-0.735592694953084,0.9218078684061766,-0.10106302192434669,-0.4859632356092334,0.0506042642518878,-0.37123192474246025,-0.19512541452422738,0.16658553341403604,0.425156619399786,-0.06236610235646367,-0.2954540140926838,-0.5078389528207481,-0.271506420802325,-0.36387470783665776,0.48384373309090734,0.33266415912657976,0.9768246631138027,0.9143713540397584,-0.5284364577382803,0.18561058957129717,0.6738446722738445,-0.021911049727350473,0.5549186463467777,0.49653223948553205,0.6462369980290532,0.9880361752584577,0.37048960477113724,-0.7124322457239032,0.3358710394240916,-0.23948993580415845,-0.9782984731718898,-0.007228185888379812,0.022388039622455835,0.7924104137346148,0.4803892532363534,-0.600062295794487,-0.95213962206617,-0.638770189601928,-0.3101010019890964,-0.43881974602118134,0.19472355535253882,0.7616045875474811,0.30989460833370686,-0.3677308731712401,-0.3609538348391652,-0.008473413996398449,-0.6944173662923276,0.35659229662269354,-0.4434364605695009,-0.28290545381605625,0.41650014696642756,0.2715506684035063,-0.6238168315030634,-0.4418469164520502,0.6524973707273602,-0.4160079672001302,-0.18314990168437362,-0.19882493698969483,-0.5223829820752144,-0.27549190912395716,0.7019927012734115,0.6153550185263157,0.4510055142454803,0.2900888822041452,0.24543148558586836,0.908399271313101,0.9778029294684529,0.4357966701500118,0.4542836472392082,0.5943339830264449,-0.5000023883767426,-0.7215423053130507,-0.7363925846293569,-0.25088890362530947,0.6248604697175324,0.027601810172200203,0.24045722838491201,0.8155136541463435,-0.06761231925338507,-0.336327382363379,0.7809654865413904,0.009488995186984539,-0.12682136660441756,0.9153402601368725,-0.08847675938159227,-0.8975052610039711,-0.35523110534995794,-0.6737311654724181,0.29654615093022585,0.322299896273762,0.40247052209451795,0.7150285257957876,-0.84742850670591,0.7563752983696759,-0.17527243634685874,-0.3303628349676728,0.4624009309336543,0.5540536311455071,-0.5184716889634728,-0.8599822106771171,-0.23623465420678258,0.8978357925079763,-0.6733587025664747,0.5360586200840771,0.5025693653151393,0.11753346864134073,0.23060778249055147,0.36009680572897196,0.14161282731220126,-0.8432616903446615,0.9190193763934076,0.7859109230339527,0.13967917393893003,0.004290764220058918,-0.6335548358038068,0.08083523064851761,0.3832940012216568,-0.7393046142533422,-0.5594560010358691,-0.36865637777373195,-0.598213984631002,-0.04218643996864557,-0.9489950835704803,-0.2757456577382982,-0.5489503722637892,0.6299237436614931,-0.3736616373062134,0.49289927864447236,-0.9078084444627166,-0.6059070839546621,0.8261583014391363,0.3333258917555213,0.5613555498421192,-0.14069470157846808,0.20493538677692413,-0.6155584049411118,0.9367275079712272,-0.27501955907791853,-0.1347329169511795,0.5683914166875184,0.919267029967159,0.4397259275428951,0.9428943661041558,0.9880819227546453,0.9892447665333748,-0.8735582455992699,0.4630199200473726,0.45397068932652473,-0.98247423581779,0.591715594753623,0.31035467656329274,-0.6149320439435542,-0.6198826865293086,0.7261389303021133,0.8876174236647785,0.9059860436245799,-0.2656904715113342,0.9175210101529956,-0.9218061999417841,-0.42125403322279453,-0.919512378051877,0.3643947155214846,0.9311388223432004,0.8445917153730989,0.8764611324295402,-0.9062276147305965,0.8008904750458896,0.07232245337218046,0.2791251144371927,-0.7941423896700144,0.18183630891144276,0.584683776833117,-0.7515860479325056,-0.36767954379320145,-0.8059576996602118,-0.7609625458717346,0.5936717921867967,0.48151328368112445,0.296505281701684,0.46185217378661036,0.7109031658619642,-0.28230036376044154,0.3491859841160476,-0.8065338637679815,-0.6188605795614421,-0.6246526706963778,0.821035816334188,0.6055529974400997,-0.7815686757676303,0.1581371994689107,-0.43203162169083953,-0.26866776309907436,0.6497629126533866,0.9404056663624942,0.6203487291932106,-0.5550603694282472,-0.9731395053677261,-0.8373438161797822,-0.8510917695239186,0.3116615326143801,0.6887632384896278,0.4780689268372953,-0.5466418275609612,-0.5890766312368214,0.648090289440006,-0.12241541408002377,-0.291067520622164,0.8944571437314153,0.8693389547988772,0.16245337668806314,0.2785865324549377,-0.03267971845343709,0.5113027864135802,-0.8077746201306581,-0.08680297760292888,-0.9920205711387098,0.3288007746450603,-0.21979967318475246,0.4450576463714242,-0.7246336825191975,-0.4417243921197951,0.6689481232315302,0.6658531278371811,0.44674090296030045,-0.6058054440654814,-0.3676335969939828,-0.12225593067705631,0.5938441655598581,0.6385536519810557,0.029397642705589533,0.5387624446302652,-0.46344745298847556,-0.08040877524763346,0.335044264793396,0.8013709443621337,-0.48628867976367474,-0.02422023843973875,-0.5558287538588047,0.5657903761602938,-0.35596113186329603,0.8298230981454253,0.28362838504835963,0.7038840432651341,0.3911436120979488,0.29912323737517,0.526609699241817,-0.46279803942888975,0.5484484052285552,-0.9211534429341555,0.34373906860128045,0.9653378990478814,0.27071800315752625,-0.10856876336038113,-0.0633444027043879,-0.6690433397889137,-0.45539793791249394,-0.03628449887037277,0.754538347478956,-0.8456705333665013,0.8908489113673568,0.7847147299908102,0.6945929820649326,-0.3503297921270132,0.960293055512011,0.5630444916896522,0.5570943360216916,0.5841564680449665,-0.7894615805707872,0.5955652450211346,-0.04860818013548851,-0.5744302310049534,0.09558997908607125,0.26085519045591354,0.830374616663903,0.32689401879906654,-0.75694062653929,0.4261333765462041,-0.5950682940892875,-0.27024769643321633,0.4315193588845432,0.6908700712956488,-0.713872323743999,0.2764047966338694,-0.3922165120020509,0.585704346653074,-0.38522907067090273,-0.9426250862888992,-0.07241698866710067,0.5439741867594421,0.2811892032623291,0.30513897305354476,0.893284731078893,0.2983841863460839,-0.6491748807020485,-0.4361758749000728,-0.9411218021996319,-0.4414089610800147,0.3498959210701287,-0.3652092479169369,0.702813608571887,0.49239896377548575,0.7235694257542491,-0.22533726133406162,-0.6565838437527418,-0.6636422453448176,0.43698148475959897,0.7910603489726782,-0.09715638123452663,-0.19632180919870734,-0.2741650096140802,-0.7980608800426126,0.5089683188125491,0.7542398078367114,0.32582335267215967,-0.24702863534912467,0.07285525696352124,-0.8612662348896265,-0.4518310292623937,-0.322294132784009,0.8137976988218725,0.8489878852851689,-0.9979059975594282,-0.46849680226296186,-0.9027833258733153,0.04048001300543547,0.8772313757799566,0.7027894295752048,-0.615685501601547,-0.5366106177680194,-0.9359470885246992,0.5007943869568408,0.31898667523637414,0.18543387856334448,0.05610435828566551,-0.9365242915228009,0.022925425320863724,-0.41520713549107313,0.4527118280529976,-0.0324658052995801,0.3214607946574688,-0.423500370234251,0.888999164570123,-0.9525321526452899,0.5102690383791924,-0.013873688876628876,0.4764994173310697,-0.8535834881477058,-0.06199991796165705,0.3266316344961524,-0.841432970482856,0.34776161797344685,-0.8127148197963834,0.5792208006605506,-0.02270138030871749,0.00842946907505393,-0.3101925882510841,0.33402229472994804,-0.3890052526257932,0.45956754218786955,-0.8737453971989453,-0.21730109211057425,-0.005370634142309427,0.3903630799613893,0.1374063789844513,0.2312532146461308,-0.3379601896740496,0.967400380410254,-0.2888775891624391,0.6804585815407336,-0.5884661083109677,-0.24052470037713647,-0.002558092586696148,0.39412006875500083,-0.23435193812474608,0.10068347631022334,-0.2600461798720062,-0.45841698721051216,0.18559707840904593,-0.8116649598814547,-0.38188225170597434,-0.6616676528938115,-0.027388377580791712,0.365535544231534,-0.19433971773833036,-0.44334298884496093,0.9035716229118407,-0.03191945422440767,-0.3609916060231626,-0.4178053750656545,0.9374232878908515,-0.6436025560833514,0.25503798900172114,-0.7139055761508644,0.31849886989220977,-0.5101528628729284,-0.7086762972176075,0.4893089858815074,-0.9034453076310456,0.16971059842035174,0.061326824594289064,-0.0574318477883935,0.6793383937329054,-0.5918993819504976,0.3223299691453576,-0.5623281896114349,0.0434006592258811,-0.9787103710696101,-0.8725226372480392,-0.33204785315319896,-0.9378256774507463,-0.14362878678366542,0.1165186669677496,0.9963358887471259,0.6333125466480851,0.3478670003823936,-0.0705508328974247,-0.7955310479737818,-0.6202875724993646,0.11201349692419171,0.06214731419458985,-0.1485945307649672,-0.3204885101877153,-0.7804151917807758,-0.0002580280415713787,0.9732978479005396,0.4802606385201216,-0.9995620637200773,-0.09849233413115144,0.10567695647478104,-0.3620194108225405,0.1289464244619012,0.5081472368910909,0.3773176004178822,-0.6138795320875943,0.2670047702267766,0.3630644869990647,-0.6057506538927555,0.9639971684664488,0.7598984274081886,0.3270852300338447,-0.4974123667925596,0.3905900460667908,0.3239768324419856,-0.476429624017328,-0.6170549402013421,-0.605905816424638,-0.6940292310900986,-0.8172099837101996,0.5233869524672627,-0.5679982155561447,-0.9204900250770152,-0.5470690722577274,-0.44767739064991474,0.20009805262088776,-0.8771030381321907,-0.8623691261745989,-0.2714396663941443,-0.020827758125960827,0.742344188503921,-0.9660871890373528,0.23968615429475904,0.8963514324277639,0.5456373319029808,-0.5922745391726494,-0.3738291338086128,-0.3140105586498976,0.14766480727121234,-0.1488833026960492,-0.032377589493989944,-0.5849362234584987,0.062273481860756874,0.5813453332521021,0.7081111217848957,0.04887542501091957,-0.99926523771137,-0.7938580447807908,0.0469799293205142,0.7703668340109289,-0.17894981894642115,0.2478764927946031,-0.8364502610638738,-0.4734324743039906,-0.8132848967798054,-0.6908860648982227,-0.9685765448957682,0.7158643212169409,0.5976927559822798,-0.9639710816554725,0.23431709548458457,0.3951111091300845,0.9614991517737508,-0.9602868515066803,0.810773762408644,0.9855653406120837,0.26102737011387944,0.2356768292374909,0.4357404191978276,-0.9706188589334488,0.792362476233393,0.16108561120927334,0.942054396495223,0.3155864351429045,-0.4593314789235592,0.5771303726360202,0.2988964528776705,0.19440076174214482,-0.21710725780576468,0.6184016359038651,-0.6235454496927559,-0.17596382508054376,-0.8676653997972608,0.427759138867259,-0.9293834841810167,0.4487987016327679,0.9338033725507557,-0.8119597751647234,-0.7965409252792597,0.49430622067302465,0.82591299014166,-0.19253930915147066,0.9304271517321467,0.9467127388343215,-0.11542460368946195,0.9798120139166713,-0.995438908226788,-0.8511570151895285,-0.5133210904896259,-0.19145306339487433,0.6848343778401613,0.337170145008713,0.45554336765781045,0.9654654175974429,-0.8212218917906284,0.880891568493098,0.41049674851819873,-0.86135847074911,-0.72219511680305,-0.1440872373059392,-0.8537707109935582,-0.8075859663076699,-0.8182038241066039,-0.9647782021202147,-0.3940015840344131,0.027650504373013973,-0.9753933604806662,-0.5782485418021679,-0.07762010209262371,0.9206140241585672,-0.8368751513771713,0.5443222569301724,-0.8470999393612146,-0.5012973709963262,0.32623534835875034,-0.2813191320747137,-0.6780345747247338,-0.6773702842183411,-0.5839226073585451,-0.832661627791822,0.595432111993432,0.7090555774047971,0.76664236234501,-0.07276848191395402,0.1348362066783011,-0.4662955584935844,-0.6485741315409541,0.7195905968546867,0.551940449513495,0.025942505802959204,-0.4882098757661879,-0.8396515562199056,-0.4369487510994077,-0.6116771050728858,-0.09138083783909678,-0.8343115542083979,-0.8497807392850518,-0.3322370508685708,-0.6508644074201584,0.45293188374489546,0.5003961045295,-0.6466604503802955,0.5335829085670412,-0.09586363472044468,0.15753554366528988,-0.46865951642394066,-0.60491196019575,0.7255076603032649,-0.0901253274641931,-0.7287983931601048,0.39202793361619115,0.4275386882945895,0.9495679866522551,0.1453410116955638,-0.2953025926835835,-0.5662382734008133,0.4957703072577715,-0.9374493570066988,0.6455269544385374,0.029961333144456148,-0.5223476286046207,-0.005540679674595594,-0.07816691882908344,0.7663012854754925,-0.3935942784883082,0.06580069288611412,0.5959447552450001,-0.40438557555899024,-0.2473589931614697,0.34073567297309637,0.6239795298315585,-0.45513828890398145,-0.5912979673594236,0.15949950786307454,0.5083596166223288,-0.6853466676548123,0.3160122469998896,-0.35272296564653516,-0.001407921314239502,-0.47450081957504153,0.8896294250153005,-0.38891148567199707,-0.06231711804866791,-0.49024704843759537,0.7529953550547361,0.3259416869841516,0.6434984747320414,-0.5925897937268019,0.08390021044760942,0.5505715236067772,0.0014386726543307304,-0.5633300743065774,-0.605740122962743,0.004764949437230825,0.0319213648326695,0.8841776358895004,-0.43246692093089223,0.8436840628273785,0.9709303406998515,-0.6677629733458161,0.2227201689966023,0.02402999671176076,0.7982104336842895,0.7641342747956514,0.7289628935977817,-0.07117081619799137,0.6752542448230088,-0.3253956101834774,0.48005924886092544,-0.714145926758647,-0.4195499634370208,0.5541906785219908,0.9347886801697314,0.047777894884347916,0.9958486310206354,0.028348559979349375,0.7313969200477004,0.6390038230456412,-0.8250767849385738,-0.0209072339348495,-0.05135396542027593,0.27966751623898745,-0.4918372710235417,-0.9147701635956764,-0.09305366221815348,-0.8638278576545417,-0.6101477658376098,-0.5354798571206629,-0.020169401075690985,0.654926027636975,-0.28495685569942,-0.9311849204823375,-0.47431347658857703,-0.27511573443189263,-0.3871885072439909,0.4611994787119329,0.8507917681708932,-0.07291080942377448,0.8953820341266692,0.608815845567733,0.2591851092875004,0.16009779646992683,0.4021705137565732,0.9056718521751463,-0.485512409824878,-0.8396297441795468,-0.9517717785201967,-0.08086221758276224,0.23377041844651103,-0.8522114693187177,0.5782746747136116,0.48601817805320024,0.43337497022002935,0.3697381243109703,0.3610689318738878,-0.001105966977775097,0.12135789729654789,0.38133716210722923,0.1185946250334382,-0.7014708430506289,-0.011630882043391466,0.8133287099190056,-0.9381318506784737,-0.2864558179862797,-0.8840597188100219,0.4825998949818313,0.7651278381235898,-0.18835575273260474,0.7598329675383866,0.0586166656576097,-0.8325174315832555,0.8036423926241696,0.452516024466604,0.6372833107598126,-0.4548331741243601,0.030337626580148935,0.03919310634955764,-0.3643803037703037,-0.7340515367686749,-0.8745844205841422,-0.39524204935878515,0.8335968917235732,-0.1604261021129787,0.4477385566569865,0.30190887954086065,-0.3643870623782277,-0.6956996349617839,0.13519725296646357,0.6750861397013068,0.9648561547510326,-0.24163534492254257,-0.9152071196585894,-0.3505268581211567,0.15286697261035442,0.01612585410475731,0.8560269013978541,-0.318302339874208,0.30245623737573624,0.5235478752292693,-0.3056449927389622,0.7103602644056082,-0.5004130098968744,-0.6673192935995758,-0.9389734892174602,-0.02875614771619439,-0.4564406191930175,-0.568225962575525,-0.2837365376763046,0.8393882452510297,-0.8505442580208182,0.8680195449851453,0.3062020414508879,0.41777915693819523,0.6935680313035846,0.9605643562972546,-0.0077665685676038265,-0.2604627786204219,0.48083355464041233,-0.12090105144307017,0.016523768194019794,0.8325880020856857,-0.6244259318336844,0.6979921623133123,-0.6516597266308963,-0.8729395843110979,0.08557751821354032,0.11091507086530328,0.4563971748575568,-0.4330033464357257,-0.24758968222886324,-0.3646153570152819,-0.7050606282427907,0.7415873799473047,-0.24612844875082374,0.195839355699718,0.6791540323756635,-0.5920386277139187,0.9511786410585046,0.9366762801073492,-0.40015602810308337,0.7666458142921329,0.025694463402032852,-0.24883479624986649,-0.18058973224833608,-0.6367043727077544,-0.940172465518117,0.6616875557228923,-0.6626038448885083,0.5890724267810583,0.7938001346774399,-0.4929139083251357,-0.8669272912666202,-0.8617625287733972,0.8409899356774986,0.8133595031686127,-0.836167502682656,0.21387807233259082,0.9072955930605531,-0.10931484727188945,0.1329254531301558,0.17410984681919217,-0.012388971168547869,0.5280891144648194,0.19164460431784391,-0.6472284784540534,0.7818615869618952,0.31292165303602815,0.00890903128311038,0.786732311360538,0.9305032910779119,0.659697737544775,0.47013118863105774,0.4438063814304769,-0.8557417108677328,-0.7342232535593212,-0.8725359649397433,-0.9499233877286315,-0.5524661969393492,-0.45297494623810053,-0.3088773605413735,0.7183504612185061,0.6454899278469384,0.8189631174318492,-0.3861561776138842,-0.0032201306894421577,-0.40649457834661007,0.046385292895138264,-0.23606595071032643,-0.14366302080452442,0.4086091620847583,-0.5744001618586481,-0.35689774062484503,-0.22163715958595276,-0.11031549144536257,0.1896178973838687,-0.4762460463680327,0.6189773054793477,-0.4154262994416058,0.5571464719250798,0.16363260615617037,-0.8660448407754302,-0.7232146905735135,-0.6472472590394318,-0.7289759642444551,0.5150331519544125,0.018458701204508543,-0.09813341405242682,-0.3026921572163701,0.5803830842487514,-0.9059769795276225,-0.06718070665374398,0.8412364735268056,0.17774703120812774,0.9437927594408393,-0.5265429513528943,-0.7669333931989968,-0.8552603381685913,0.08082588529214263,0.10669403290376067,0.0952240633778274,-0.36907838052138686,0.30625737784430385,0.6247840584255755,0.1554426122456789,-0.009207176975905895,-0.43592227390035987,-0.40310828387737274,-0.47727396385744214,-0.8494124608114362,-0.4968223790638149,0.6829255893826485,0.5989907067269087,-0.1938880430534482,-0.2933631045743823,0.6186445662751794,-0.584369788877666,-0.8513420382514596,0.4156377571634948,-0.7248815498314798,-0.9058776800520718,0.9631999456323683,0.4329269235022366,-0.26016514049842954,0.39982925122603774,-0.3751531057059765,-0.374018382281065,0.8185936161316931,-0.5124227302148938,-0.6863444652408361,0.9284921935759485,-0.7086758716031909,0.8595660272985697,0.3778736828826368,-0.15912542771548033,0.48639354202896357,0.9306102069094777,0.12286211969330907,-0.9986059721559286,0.34224236477166414,-0.5623614471405745,0.360450831707567,0.27341597992926836,0.5116702881641686,0.36584396520629525,-0.6550051518715918,-0.49677810817956924,0.4715800164267421,0.7587516568601131,0.04237010981887579,0.7260498655959964,0.21685532433912158,-0.36490634083747864,-0.555482164490968,0.4694260163232684,-0.20041598798707128,0.33511240128427744,0.0242115524597466,0.13988278014585376,-0.09578434191644192,-0.5323442625813186,0.4447327386587858,0.5501556931994855,0.6373988850973547,-0.48331581288948655,0.39750533970072865,-0.5098859062418342,-0.6274354727938771,0.0040874481201171875,0.07239426113665104,0.9549934221431613,-0.10899355774745345,-0.1388732730410993,0.9208719097077847,0.7462036805227399,0.8799057686701417,-0.7765546981245279,0.5509682530537248,-0.35260255821049213,0.16446833591908216,0.1545294215902686,-0.020279436372220516,-0.9813175066374242,0.261145091149956,0.6464945166371763,-0.9027277017012239,-0.13307313760742545,-0.6908134236000478,-0.9486691183410585,0.6094798869453371,0.22337444918230176,0.48671982204541564,0.7202278664335608,0.6916132094338536,-0.07498508878052235,-0.6198058151639998,-0.13127594161778688,-0.8245557937771082,-0.09826067136600614,-0.127204610966146,0.023425302002578974,-0.8162840306758881,0.2653720653615892,0.04414509003981948,-0.3842610055580735,-0.36603063018992543,0.02689139684662223,-0.16386069869622588,-0.8032726948149502,0.17087147617712617,-0.68373614968732,-0.23025364242494106,0.5562305552884936,0.7741054454818368,-0.6942348042502999,-0.24709969386458397,-0.9465213106013834,-0.7563239689916372,-0.46255670581012964,0.1797440373338759,0.8597256997600198,-0.8570809727534652,0.9082752545364201,-0.6017138483002782,-0.28438555216416717,0.8326631425879896,0.34980196924880147,0.7488384656608105,-0.43707763496786356,-0.06312772026285529,0.8615561774931848,-0.9171994691714644,-0.5994139504618943,-0.7438492402434349,-0.05730108357965946,-0.44781559612601995,0.3311750665307045,0.24421049281954765,-0.39403532491996884,0.4346179608255625,0.22545199189335108,0.7252979492768645,-0.8259651134721935,-0.6131396982818842,0.5821218304336071,0.06191292451694608,0.6172878942452371,0.7095300829969347,0.06467297859489918,-0.6808730126358569,-0.7546301796101034,0.2488717557862401,0.37785492185503244,0.6529551614075899,0.2038895827718079,-0.41475863521918654,0.7492416733875871,-0.022464202716946602,0.7132322788238525,0.4893468120135367,0.7466527107171714,-0.8562434469349682,0.3481988967396319,-0.31311780121177435,-0.16797214513644576,0.8597404770553112,-0.507650856859982,0.07230571284890175,-0.7414671708829701,-0.4053008444607258,0.9494949909858406,-0.15970628708600998,-0.8414730690419674,0.25226252106949687,-0.4817613074555993,0.8882597680203617,0.5022122841328382,-0.7015685900114477,0.7921442165970802,-0.8285485883243382,-0.9991933335550129,0.6539455889724195,0.761394121684134,-0.08396956976503134,0.43535540346056223,-0.20098273502662778,0.2186628794297576,-0.6238691583275795,-0.7742175501771271,0.4236943544819951,0.28748026909306645,0.8037098469212651,0.9170122416689992,-0.044923375360667706,-0.8630234808661044,0.27936250204220414,-0.15457127057015896,0.2640621899627149,0.37877508625388145,0.7385358475148678,-0.36631746124476194,-0.5241599204018712,0.14799714041873813,-0.04407930886372924,0.6468571135774255,-0.774709296412766,0.03951081959530711,-0.5356297101825476,0.7525449562817812,-0.36612721299752593,0.5692819422110915,0.0960114081390202,0.8565607876516879,-0.7838478526100516,0.14827910996973515,0.1844746507704258,-0.45600305683910847,-0.9322567041963339,0.15450357692316175,0.9005299936980009,-0.955379159655422,-0.42943465523421764,-0.5418336261063814,-0.75045334873721,0.4751344728283584,0.9149292651563883,0.01438025152310729,-0.05067171389237046,0.013729996513575315,-0.362294630613178,0.929953517857939,-0.8644994297064841,-0.25695280404761434,-0.02979863854125142,0.9747668844647706,0.46672897785902023,-0.5416132495738566,0.653231609147042,0.8801360707730055,-0.6731460248120129,-0.32535661896690726,0.5057269227690995,0.6979437530972064,0.7925636125728488,0.2965328013524413,0.3203503522090614,0.5678557204082608,-0.8349775858223438,0.54867954691872,0.1693813051097095,0.0861081532202661,-0.35615677759051323,-0.7935788342729211,0.6243766373954713,0.5505558121949434,0.9980484885163605,0.6933415364474058,-0.7176870065741241,-0.598190635908395,-0.1368472739122808,0.29875261848792434,-0.6281593670137227,-0.4433888108469546,0.7534912186674774,-0.742402468342334,0.8603564682416618,-0.19705474330112338,-0.8172208084724844,0.6119565558619797,0.026686660945415497,0.5814290349371731,-0.498064698651433,0.605760948266834,0.1298739709891379,0.9290717914700508,-0.7978643919341266,0.2383191790431738,-0.6430346923880279,-0.030884057749062777,0.39871912403032184,0.6403045575134456,0.3355868519283831,0.718569056596607,0.5762287396937609,-0.5030888603068888,-0.740285899490118,-0.395352675113827,0.1662101331166923,0.42191983480006456,-0.16282453620806336,-0.3359271613880992,-0.6460810685530305,0.9869831600226462,0.09662677953019738,-0.6116813356056809,-0.5278062326833606,-0.8785093557089567,-0.8938858145847917,-0.1692372476682067,0.6984960860572755,0.015481411945074797,0.26278642006218433,-0.40973301511257887,-0.15048665134236217,-0.23862773785367608,0.5750072253867984,0.6583437728695571,-0.19508162373676896,0.19442934496328235,-0.5143968751654029,-0.31633940478786826,0.7591873067431152,0.5501100332476199,-0.38884793408215046,0.5962904463522136,0.8781582619994879,-0.07700734306126833,-0.9085216354578733,0.9694492593407631,0.10669996310025454,-0.4681452359072864,0.30641774646937847,0.8225080263800919,-0.4149785595946014,-0.14043998438864946,0.8681831187568605,0.859453696757555,-0.8084839624352753,0.09087685076519847,-0.4119864506646991,0.6699226927012205,0.3329285732470453,0.09236860740929842,0.9616550006903708,-0.452489648014307,-0.440653835888952,0.5158980074338615,-0.834774489980191,-0.03377336310222745,0.9357377183623612,0.438502948731184,0.19038315396755934,0.9826473407447338,-0.978373113553971,-0.7989184921607375,0.4173689349554479,0.8348039528355002,-0.27269778214395046,-0.2713946062140167,-0.4992811740376055,-0.07192651508376002,0.26941489335149527,-0.8763827853836119,0.27055098582059145,0.7781651983968914,-0.39578400226309896,-0.09145110100507736,0.15299633564427495,0.4888273826800287,-0.8345038355328143,-0.2914982712827623,0.6816618922166526,0.9461778453551233,-0.5942144053988159,-0.7957235714420676,-0.2550234431400895,0.8936222610063851,-0.38050717674195766,0.5816553430631757,-0.41710950899869204,0.39605404157191515,0.42729779705405235,-0.17332492489367723,0.7143842503428459,-0.8753808462060988,-0.8187580066733062,0.5791187849827111,0.05458430340513587,0.66565554542467,0.3627773020416498,0.6461328906007111,0.345026976428926,-0.7754180766642094,0.022055344190448523,-0.9609522703103721,0.5021063266322017,0.30613013124093413,0.06871480774134398,0.06033289898186922,-0.8910420774482191,-0.08553986297920346,-0.26924754306674004,-0.7053754772059619,-0.7440845747478306,0.42179549438878894,0.6059606899507344,-0.27049332251772285,0.9020434655249119,-0.9502029502764344,-0.4870746238157153,-0.23669508984312415,0.7083959938026965,-0.38760639633983374,0.9760940736159682,-0.2784038628451526,0.985777722671628,0.9438407123088837,0.3750805603340268,0.6278581977821887,0.8228823579847813,-0.9601156846620142,-0.8530047419480979,-0.3409975487738848,0.717553935945034,0.231249141972512,0.5488061206415296,0.4234997979365289,0.9925861260853708,0.7444026074372232,0.8039947231300175,-0.9212442156858742,-0.5802938346751034,0.955011990852654,0.19081357773393393,0.3674765289761126,0.1721198339946568,0.12143652141094208,-0.3605488915927708,0.1013244423083961,-0.8868317897431552,0.7955851447768509,-0.5502631640993059,-0.4194440538994968,-0.06126611074432731,-0.6077946228906512,-0.6532339383848011,0.3794568055309355,0.45926694152876735,0.6752570956014097,0.962109565269202,0.7655924209393561,-0.11182438302785158,-0.8562043984420598,-0.032699357718229294,0.3362877485342324,0.4382540946826339,0.1543185948394239,0.5399488899856806,0.09310772083699703,-0.8054069010540843,0.3962996224872768,0.867826119530946,0.014381611254066229,0.25820111483335495,0.7303893859498203,-0.8495247280225158,-0.052907527424395084,0.4004646702669561,0.7354930979199708,0.3463893439620733,-0.6833780850283802,0.2724362597800791,0.521592871285975,-0.9131431467831135,0.15524001512676477,0.7368908543139696,0.9017121610231698,-0.24156458117067814,0.43626880552619696,-0.35617505526170135,0.16590681904926896,0.9042241889983416,-0.360432599671185,-0.6683740201406181,0.8322495683096349,-0.019882099702954292,0.08610040787607431,-0.9693894814699888,-0.43005327275022864,-0.2347459145821631,0.44766767881810665,-0.20749998232349753,-0.8642822154797614,0.18648547120392323,-0.8286590036004782,-0.49813750712201,0.9887994984164834,0.5045661781914532,-0.6181159489788115,0.4339236132800579,-0.4637122191488743,0.9374857633374631,0.3992195772007108,0.7596018477343023,-0.5767029789276421,-0.944623954128474,-0.7388202184811234,0.5152284959331155,0.3271238333545625,-0.3068016837351024,-0.3085520309396088,0.18844824470579624,0.07852207450196147,0.844829177018255,-0.5284755062311888,0.66641018493101,0.052134050987660885,-0.005714068654924631,-0.08393299533054233,-0.7906924411654472,-0.6705189212225378,-0.010403342079371214,0.3734955107793212,-0.2954690787009895,0.1758031607605517,-0.033223552629351616,0.011234949342906475,0.6053564520552754,0.19747912418097258,0.43284434685483575,-0.2142274808138609,-0.1830478268675506,0.39474203903228045,-0.4706801949068904,0.4134745607152581,-0.7841392513364553,-0.7600614046677947,0.8108710334636271,-0.36119943857192993,0.8279006592929363,0.6215203171595931,-0.8863406563177705,-0.7413328378461301,0.8636066983453929,-0.33601543633267283,-0.36914016446098685,-0.22191817127168179,-0.6065953285433352,0.6873153639025986,0.059325273148715496,0.07611701916903257,0.03684742236509919,-0.5033171796239913,-0.4694009809754789,-0.9029398406855762,-0.22465303726494312,-0.5340425954200327,-0.25594832096248865,-0.06608191039413214,-0.4949584025889635,-0.23610147507861257,0.9051132188178599,-0.9647134565748274,0.989315431099385,-0.7354694372043014,-0.40469791693612933,-0.29843264631927013,-0.6440421175211668,-0.14233776880428195,-0.04156759427860379,-0.5004848269745708,0.28090049233287573,-0.13165120733901858,-0.930823914706707,-0.9933300912380219,-0.879563536029309,-0.8574680555611849,-0.30823331559076905,0.5375004084780812,-0.259135483764112,-0.8442092076875269,-0.8787630489096045,0.743276827968657,0.8985107196494937,0.19637399073690176,-0.5993019691668451,0.833682281896472,0.327913221437484,0.5824610851705074,0.5257522771134973,0.14576530316844583,-0.8164623193442822,-0.8309033829718828,0.8373602358624339,0.22269268985837698,0.6394710186868906,-0.7734820647165179,-0.3402533414773643,0.3539224863052368,-0.9716471480205655,0.4075775118544698,0.6238502152264118,-0.13150970917195082,-0.44290163228288293,0.9673340641893446,0.5696700275875628,0.5385830644518137,-0.057097692508250475,-0.6643976648338139,-0.8003649096935987,0.40246139420196414,0.042818669229745865,-0.40282155852764845,-0.5415815431624651,0.6806915714405477,0.6891709859482944,0.7161392606794834,-0.7112337197177112,0.9757660622708499,-0.05924678314477205,-0.11858125310391188,-0.6442321399226785,-0.140156926587224,0.1590723623521626,-0.3948820629157126,0.045462644658982754,-0.44139776891097426,0.8676196835003793,-0.4244810240343213,-0.7773735048249364,-0.11372914025560021,-0.49871507473289967,-0.16631149500608444,-0.5541483517736197,0.013877790421247482,-0.15320352464914322,-0.4305070131085813,0.5354908988811076,-0.08279240829870105,-0.020447729621082544,0.9293990237638354,-0.32180708553642035,0.7435845788568258,0.5038147689774632,0.3409925168380141,0.6577107380144298,0.9047698955982924,-0.5940531110391021,-0.2606372404843569,-0.40866022650152445,-0.43538557179272175,-0.33360083447769284,-0.9188445312902331,-0.06874601356685162,0.1379443844780326,0.8247175207361579,-0.2523362128995359,-0.014106618240475655,0.06867850618436933,0.3041984443552792,0.9077427661977708,0.6716106934472919,-0.4183518528006971,-0.017133718822151423,-0.5383357424288988,-0.33325014635920525,-0.051542033441364765,-0.9533537905663252,0.14429003652185202,0.19045358430594206,0.45477205654606223,0.4191610151901841,-0.7097737607546151,0.7718136017210782,-0.5040268725715578,0.6127725234255195,0.3053557793609798,-0.877949898596853,0.3117132196202874,0.7502688793465495,0.9650182914920151,-0.1055261087603867,-0.8835727111436427,-0.2161927572451532,0.8178630219772458,0.1069899327121675,-0.07881330512464046,0.8917154273949564,-0.41680007753893733,-0.9887552284635603,0.1409860965795815,0.07567978510633111,-0.5866193971596658,-0.7451149327680469,0.4016569461673498,0.7233442622236907,0.9591494384221733,0.9437431883998215,-0.13554213242605329,0.019707465078681707,-0.9522035853005946,-0.2551120249554515,-0.43058017874136567,-0.3944535837508738,-0.2839676532894373,0.45030712289735675,-0.37552120815962553,0.932934554759413,0.7280139485374093,-0.5192650090903044,-0.1250483663752675,-0.34070576447993517,-0.2035589274019003,-0.08461132226511836,-0.7805811306461692,0.07691205246374011,0.39477529656141996,0.5803031898103654,-0.025130893103778362,0.6167673319578171,0.7020109496079385,-0.42877124017104506,-0.4120883890427649,0.25863152369856834,0.34368191566318274,-0.1698832893744111,-0.27827872708439827,0.8494874695315957,-0.7496264465153217,0.894686299841851,-0.10211208276450634,0.4270089212805033,0.0684278691187501,-0.4439516896381974,-0.9539556843228638,-0.9656219407916069,0.24422405008226633,-0.5549127799458802,-0.4938532211817801,-0.9577921950258315,0.5042856768704951,0.7128653852269053,0.6300282864831388,0.7263374268077314,0.8445036453194916,-0.2511333026923239,-0.04590378515422344,0.23810243653133512,0.5155907087028027,-0.6775554004125297,-0.14647194696590304,-0.2711298856884241,0.5666387523524463,0.3966634515672922,0.8242330327630043,-0.32865668227896094,0.5156899448484182,0.7716551655903459,-0.9636174133047462,0.47731864685192704,-0.583812384866178,0.12831056211143732,0.037113336846232414,-0.8955545052886009,0.44223974365741014,-0.9471226884052157,-0.6939957598224282,0.3436619904823601,0.9747424223460257,-0.15709768934175372,-0.8435875098221004,0.33391890674829483,0.5932223349809647,0.21689283847808838,-0.3959601172246039,0.6868678787723184,-0.14758757129311562,-0.26438634283840656,-0.8546755127608776,-0.21163221215829253,-0.05405781837180257,-0.26110055949538946,-0.650317553896457,0.9834083775058389,-0.42748759081587195,0.6787898214533925,0.6599962711334229,-0.4921336923725903,-0.43813714710995555,-0.41524499794468284,0.3883659760467708,-0.41144517390057445,-0.5564850340597332,-0.05111532658338547,0.16338146571069956,0.9860230055637658,-0.28529172809794545,-0.6735913953743875,-0.44104075944051147,0.35644978331401944,0.040760322008281946,0.9404680193401873,0.7071404922753572,0.21092111943289638,0.5329526113346219,-0.33393143117427826,0.9648612914606929,0.3954658410511911,0.24543965701013803,-0.3642830136232078,0.7470729225315154,0.6503940722905099,-0.9496312811970711,0.5742827085778117,-0.6173340226523578,-0.2672996949404478,-0.028073750901967287,0.04892795532941818,-0.9076085342094302,0.1928780796006322,-0.23870717594400048,0.504475633148104,0.3261060114018619,0.14911378175020218,0.7582511366344988,0.11546686105430126,-0.07982856873422861,-0.6757493163459003,0.7230392750352621,-0.5651168576441705,-0.11945601971819997,0.2552551105618477,-0.7693988713435829,0.9671574784442782,-0.22464202158153057,0.9546023737639189,-0.4612756511196494,0.29251997731626034,-0.6549512119963765,-0.4332808027975261,-0.4214654788374901,0.8155129044316709,-0.04303074162453413,-0.03658762155100703,-0.03482742793858051,-0.511631968896836,-0.4980462114326656,0.9875368690118194,-0.042755336966365576,0.5419383244588971,0.4452317696996033,0.3314498378895223,-0.6693876003846526,-0.211189491674304,0.06863779807463288,-0.20667869923636317,0.9424836738035083,0.14714222494512796,-0.8680431628599763,-0.612722160294652,0.9386099488474429,-0.44223945401608944,0.8207086585462093,-0.8083764659240842,0.7838751594536006,-0.8915127930231392,0.9551278692670166,0.8922261050902307,0.5441770157776773,-0.31771553633734584,-0.2778849429450929,-0.8631297405809164,0.34005708526819944,-0.2093898169696331,0.039049971383064985,-0.997004586737603,-0.2073249933309853,-0.8838431290350854,-0.596964183729142,-0.0054229856468737125,0.7211738559417427,-0.9135237545706332,-0.31845828518271446,-0.250851945951581,0.27267074305564165,-0.5792710711248219,0.7072010799311101,0.6032851957716048,0.5282392594963312,0.6656981916166842,-0.05830465164035559,-0.11551279900595546,0.7501928266137838,-0.5527410958893597,0.7420949977822602,-0.20858694054186344,0.8925861013121903,0.06380782416090369,-0.7555079138837755,-0.05504662450402975,-0.8237639646977186,-0.6111103435978293,0.5705846045166254,0.23191954055801034,0.8153442116454244,0.09779186174273491,-0.3795891865156591,0.3657013801857829,0.5123826609924436,-0.6403576293960214,-0.17674099886789918,0.8008968960493803,0.20702949911355972,0.4032278642989695,-0.6847807304002345,0.02157011069357395,0.009397189132869244,0.6471498855389655,-0.15883604530245066,0.2997583597898483,0.7488386407494545,-0.014602357521653175,0.7833727011457086,-0.25778888119384646,-0.021413752809166908,-0.4649688792414963,0.4684076844714582,-0.38002806389704347,0.8608460212126374,0.5547833708114922,-0.9846196109429002,0.7198983910493553,-0.05875808373093605,-0.15596051374450326,-0.3823889186605811,0.8731111693195999,0.5592963979579508,-0.6979000582359731,-0.03340966673567891,-0.6615436309948564,-0.968543111346662,0.9939544522203505,-0.144306518137455,-0.7633170392364264,0.7545671351253986,0.5802833777852356,-0.7910762438550591,0.7497758818790317,-0.7896459996700287,0.07261092867702246,-0.5152370468713343,-0.4356018449179828,-0.8047505640424788,0.519663677085191,0.017395884729921818,-0.8844620729796588,0.4142876798287034,-0.2272734371945262,-0.9599010683596134,-0.8301659594289958,-0.13607765967026353,0.6398218898102641,0.028845808934420347,-0.5535674877464771,0.1272094054147601,0.6711139362305403,-0.08632398582994938,0.7718405141495168,-0.7969823405146599,-0.4164020726457238,-0.7329892027191818,0.6655586729757488,-0.48492437275126576,-0.2524146903306246,0.28349176282063127,-0.6413733083754778,0.2735242103226483,-0.06811930472031236,-0.14958456438034773,-0.019173484295606613,-0.9592969571240246,0.6989793344400823,-0.34169448679313064,-0.4659895016811788,0.003966023214161396,-0.4126681024208665,0.38741393527016044,0.14408878237009048,0.8727532899938524,-0.05890218075364828,0.9910649531520903,-0.11480596521869302,-0.7180679943412542,0.34668304584920406,-0.3506868868134916,0.5113571509718895,0.9092184361070395,-0.9038467728532851,-0.9519081856124103,0.8494903519749641,-0.317302574403584,-0.8338277679868042,-0.9760686508379877,0.17156627401709557,0.4658797765150666,0.03515432449057698,0.3668466107919812,-0.912371535319835,-0.8427669084630907,-0.13608481781557202,-0.08314290503039956,-0.43551440024748445,-0.10480069043114781,0.05757141811773181,0.5672976383939385,0.1666965465992689,-0.8824305082671344,0.706017445307225,0.5987759679555893,-0.4030392696149647,-0.5788942263461649,-0.7260920726694167,-0.46579535072669387,0.6510753673501313,-0.666601249948144,-0.7198758907616138,0.5229404587298632,0.7134593990631402,-0.5028850538656116,0.5258980086073279,-0.7175593478605151,-0.6449642525985837,-0.04391626873984933,-0.3966577514074743,-0.36892493115738034,0.8969600768759847,-0.2286393311806023,0.7227438930422068,-0.028881457168608904,-0.42430214397609234,-0.2982464819215238,0.6598482085391879,-0.395524128805846,0.9491684916429222,-0.46513715386390686,0.6132589927874506,-0.15007705288007855,0.48480035085231066,-0.7686884580180049,-0.3987156990915537,0.18359031761065125,-0.35470514046028256,0.03829644061625004,0.6349537270143628,-0.8298577829264104,-0.1646098685450852,-0.19343398185446858,0.025538266636431217,-0.1448307135142386,-0.9011825625784695,0.4321760539896786,0.16983561357483268,0.018276914954185486,-0.021982569713145494,-0.6469807280227542,-0.5663833785802126,-0.7352558253332973,0.05544695211574435,0.0018246746622025967,-0.8076130975969136,-0.137477888725698,-0.4575178069062531,-0.5819110288284719,0.48673952650278807,0.1626766212284565,-0.5570029937662184,0.2652150262147188,-0.48242867924273014,0.6454091891646385,0.5213142056018114,-0.3667682511731982,0.8381927395239472,-0.534336359705776,-0.6695504589006305,0.9453637581318617,0.4787799743935466,-0.710106183309108,-0.7357345316559076,-0.9328055074438453,0.7436394896358252,-0.2688583438284695,0.877003129106015,-0.5547313089482486,-0.1365124168805778,0.4786323201842606,0.9026278918609023,0.43983000982552767,0.9424235569313169,-0.06235989881679416,-0.05543525330722332,0.5727416141889989,-0.5435370458289981,-0.047763606533408165,-0.8787001529708505,0.26879195123910904,-0.9765851995907724,-0.9978526351042092,-0.6798771894536912,-0.08704207185655832,-0.08646932570263743,-0.7823142404668033,-0.6999452244490385,-0.7522975574247539,-0.13423600187525153,-0.38921756530180573,-0.687592166941613,0.2903500283136964,-0.9977232981473207,-0.7985215210355818,0.1564442291855812,0.5453402358107269,-0.38768241461366415,0.5008274391293526,-0.3235415550880134,-0.5734751960262656,0.6456373305991292,0.6711632879450917,-0.41007303167134523,0.6132720299065113,-0.16490587079897523,0.2587565639987588,0.016766283195465803,0.016054125502705574,0.05492156185209751,0.17146165343001485,-0.07233163248747587,-0.6130415182560682,0.1373162199743092,0.3174734781496227,-0.7998270038515329,0.3771123979240656,0.8709620567969978,0.927700508851558,0.30567710753530264,0.7052798862569034,-0.4298801370896399,-0.3123291777446866,0.32348389085382223,-0.47750641545280814,-0.6727718370966613,-0.07509066164493561,0.8289497154764831,-0.6624701390974224,-0.7073683156631887,0.4398974636569619,0.7708889739587903,0.4048678739927709,0.8259309520944953,0.7094607204198837,0.8515985226258636,-0.16954295802861452,0.5685567161999643,-0.35827431734651327,0.40329916262999177,0.42836084123700857,0.6063466439954937,-0.44841897347941995,0.5810784357599914,0.4943282972089946,0.9687533406540751,0.9021508661098778,-0.9226290141232312,0.9829306951723993,0.24464452266693115,0.34426794573664665,-0.35352651914581656,0.45496181678026915,-0.062147708144038916,0.48338570492342114,-0.3577665165066719,-0.5999107635580003,-0.887489153072238,-0.9440432982519269,0.45925972424447536,-0.5719294268637896,-0.6463013920001686,0.0035187010653316975,0.4350091270171106,0.8106047799810767,0.63350137649104,-0.9747045137919486,-0.2502692900598049,0.951405783649534,-0.8107543522492051,-0.37640901608392596,-0.20676005771383643,0.9681564881466329,0.8386108335107565,0.48675378458574414,-0.19883689051494002,-0.9446261897683144,0.9196453639306128,-0.7371791182085872,0.15508709335699677,0.6740698544308543,0.633476679213345,0.0864075399003923,0.9575144457630813,0.6897802953608334,-0.8257038271985948,-0.5247714961878955,0.2729144850745797,-0.28154991334304214,0.502568737603724,0.9358329018577933,0.1346487533301115,0.6238836599513888,-0.23396392166614532,0.1496252380311489,-0.883671804331243,0.9384305407293141,0.8502931441180408,-0.8934490429237485,0.5832340409979224,0.6099993772804737,0.35942706232890487,0.7881182190030813,0.3022722457535565,0.3975821644999087,0.7358814957551658,0.6815634942613542,0.39439450995996594,-0.6235741502605379,-0.7951102559454739,-0.5923930970020592,-0.8168000532314181,0.832147610373795,0.7401256863959134,0.3296727631241083,0.8931712917983532,-0.5581858912482858,-0.6937800347805023,-0.6230372590944171,0.31009749602526426,-0.4434027411043644,-0.9477945505641401,-0.14182104030624032,-0.6870146463625133,0.843421227298677,0.7661344418302178,0.9234640812501311,0.25893881544470787,-0.16964067984372377,0.32711697136983275,-0.8705434179864824,0.35498586017638445,-0.876151901204139,-0.9836457180790603,-0.7691622688435018,0.6409885580651462,0.5277782594785094,0.17472219094634056,-0.40231643756851554,-0.8384110596962273,0.004997460171580315,-0.9510579635389149,0.489171888679266,-0.38279646076261997,0.05645688995718956,-0.9424321954138577,-0.34432956017553806,-0.7383750262670219,0.48706386936828494,-0.3071217853575945,-0.11186897847801447,0.10711969574913383,-0.2935211951844394,-0.1599250975996256,0.09125111158937216,-0.3716954686678946,-0.14325729617848992,0.720196898560971,0.24188552144914865,-0.0578704341314733,0.001315162517130375,-0.959021866787225,-0.2887398633174598,-0.24517487222328782,-0.6580867171287537,-0.9315270939841866,-0.12430236721411347,0.7527903136797249,0.1008429042994976,0.9988509807735682,0.5514561831951141,0.7687125555239618,-0.1765658832155168,-0.40705163683742285,0.35266317753121257,-0.48520189244300127,-0.6166807594709098,0.23017298197373748,-0.9422395257279277,0.671412508469075,0.3307758239097893,0.8374431375414133,0.32001515617594123,0.981650116853416,-0.8564754356630147,-0.83330794936046,0.1962123946286738,-0.4200756326317787,0.09452600544318557,-0.9164267708547413,0.313936835154891,0.33892666501924396,-0.2276116549037397,-0.0538182333111763,-0.5001227604225278,0.7800780823454261,0.9592849290929735,0.8219690634869039,0.8185137109830976,0.1224895496852696,-0.8658398129045963,0.19265462970361114,-0.2885739360935986,-0.8425136897712946,0.9043389493599534,-0.3996616252698004,-0.9551473059691489,-0.9286370971240103,0.056449053809046745,0.06449104053899646,-0.27614298183470964,0.2814413229934871,-0.11300169490277767,0.4428941966034472,-0.9689270677044988,-0.49251914117485285,-0.024394392035901546,-0.6762775890529156,-0.6025875494815409,0.6428827736526728,-0.2541186115704477,-0.5162104377523065,-0.10248012002557516,-0.14069312112405896,-0.2000237717293203,-0.6029856349341571,0.8815375687554479,0.04846443049609661,-0.295289505738765,0.8900442002341151,-0.8072588020004332,0.9065531501546502,-0.7387035735882819,-0.7927844547666609,0.2501066825352609,0.192601568531245,0.4957527625374496,-0.33609768375754356,0.18222327064722776,-0.7801329414360225,-0.546178403776139,0.18853685446083546,0.832286411896348,0.5798642775043845,0.3238835744559765,0.8531825006939471,-0.9073925837874413,0.7690715859644115,-0.7333586998283863,-0.6524644009768963,-0.003034004010260105,-0.008879870641976595,0.007209496106952429,-0.4666119269095361,-0.6292666508816183,-0.5228278655558825,0.09194395318627357,-0.9670366691425443,-0.32126793824136257,0.6289488840848207,-0.9914271282032132,-0.842557811178267,-0.3526629195548594,0.6174561819061637,0.9122001510113478,0.36336544482037425,0.5075362250208855,-0.41037687426432967,0.7667301115579903,0.17801114823669195,0.037177979946136475,-0.48235115874558687,0.5775559232570231,-0.7071508318185806,-0.56179293198511,-0.9746093093417585,-0.8870694814249873,-0.6917249066755176,-0.9075711481273174,-0.3887855806387961,0.6374845686368644,-0.2128279865719378,0.10839921701699495,-0.3445343957282603,-0.7488807034678757,-0.4117379733361304,0.7127621453255415,0.3614675849676132,-0.5546954330056906,0.0876964763738215,-0.2641412648372352,-0.7857731720432639,-0.8118447288870811,0.1858488037250936,-0.32166198873892426,-0.9367659837007523,0.525563851930201,-0.05843596579506993,0.9335721875540912,-0.7457753010094166,0.39565708953887224,-0.1914078234694898,0.09593493584543467,-0.6412641587667167,-0.9882949315942824,0.8485827618278563,-0.8921182090416551,0.2014005584642291,-0.9916696827858686,0.8683513160794973,-0.20638372609391809,-0.31014577951282263,0.3613954596221447,-0.5810057194903493,-0.47609230363741517,-0.42254433780908585,-0.6955494908615947,-0.5561349806375802,0.771228966768831,-0.15613723965361714,-0.8427285416983068,-0.4227859959937632,-0.3093384304083884,0.5651162643916905,-0.13205207558348775,-0.18032408971339464,-0.20948373386636376,-0.3294388554058969,-0.7142840810120106,-0.12496613431721926,-0.06874952418729663,-0.15543803945183754,-0.12863488169386983,-0.8263465813361108,-0.6826679278165102,0.7007110710255802,0.6863284553401172,-0.43736726604402065,0.26860450441017747,-0.3650304703041911,0.5467902813106775,-0.7451397925615311,-0.7342158551327884,0.5661622122861445,-0.6176450154744089,-0.20653049042448401,-0.43819272983819246,0.23947994224727154,0.6238900343887508,-0.6908266274258494,0.8992719170637429,0.9486590838059783,0.5644614836201072,0.022007059305906296,-0.42365504754707217,-0.04424156481400132,0.05981739331036806,0.8978766943328083,0.8845050050877035,-0.7197400266304612,-0.3720509959384799,0.3430629251524806,0.19341265875846148,-0.08482991717755795,0.3610989232547581,-0.5748813026584685,0.033181863371282816,-0.5674888910725713,0.667146529071033,-0.3487460226751864,0.02466185111552477,-0.8838696321472526,-0.6348718721419573,0.7490288410335779,-0.060577590484172106,-0.18756068544462323,0.37832467909902334,-0.4385187434963882,0.08819629298523068,-0.4978152858093381,-0.3394313142634928,0.8530087857507169,-0.19830365991219878,0.5660888203419745,-0.7599241277202964,0.24179196218028665,0.8814342501573265,0.07274045050144196,0.4445460895076394,0.2623613425530493,-0.9609254943206906,-0.2662377208471298,0.7905370146036148,0.7523097735829651,0.15035684127360582,0.6094946446828544,0.010927964467555285,-0.32741417922079563,-0.49634528532624245,0.8081936556845903,-0.03395673958584666,-0.5337529736571014,-0.08935267385095358,-0.010254200547933578,0.5778635232709348,-0.8563037421554327,0.9907134138047695,-0.30155714554712176,-0.8845231365412474,0.9593961560167372,-0.22504583233967423,0.5973812351003289,0.3588083377107978,0.9537703208625317,-0.7999501838348806,-0.6134930308908224,-0.9264658014290035,-0.6300374143756926,0.5137741710059345,-0.9187176339328289,0.6936482624150813,0.3559665270149708,0.13192558428272605,-0.9350171089172363,0.591490832157433,0.671705768443644,-0.10431624297052622,0.3150872169062495,-0.9677727418020368,0.04574465984478593,0.5683902348391712,0.8631932134740055,0.7136765271425247,0.13788096560165286,0.6069144536741078,-0.3408479136414826,-0.49019793327897787,-0.24983120569959283,0.33012914285063744,-0.39606360625475645,-0.8556108712218702,0.8525376408360898,-0.4296271866187453,-0.6432904461398721,0.432765441481024,-0.2904234719462693,0.6396145801991224,-0.39167925249785185,0.23790713539347053,0.261472056619823,0.2910683685913682,-0.5137666915543377,0.992178282700479,-0.26442046696320176,0.9297630377113819,0.02642823290079832,0.2937830104492605,-0.4414878264069557,0.17226598225533962,-0.7315546059980989,-0.2145299455150962,-0.9214884229004383,-0.9895653338171542,0.5934779760427773,0.2564247939735651,-0.18926018755882978,-0.9534172462299466,0.6255446621216834,0.4702596254646778,-0.18630717787891626,-0.5490767331793904,-0.7422530851326883,0.46001031436026096,0.0798287633806467,0.812788485083729,0.3966192966327071,0.51702192844823,-0.943816817831248,0.7803577426820993,-0.46780452597886324,0.3162449956871569,0.8395866309292614,-0.5467264382168651,-0.06502452958375216,0.19920123554766178,-0.7125174975953996,0.5840611280873418,0.6892068549059331,-0.4901523469015956,0.5105667673051357,0.5836330461315811,-0.42667071241885424,-0.01966062979772687,-0.26106739416718483,-0.12907611951231956,0.21263544587418437,0.09100133180618286,-0.4175877827219665,-0.4632398644462228,-0.8589990003965795,0.8115488006733358,-0.5741237108595669,-0.8859058399684727,0.7289517326280475,0.06888532731682062,0.7688500685617328,-0.9369151149876416,0.4383365367539227,-0.5729856477119029,-0.375168698374182,-0.3693893691524863,-0.14781058486551046,0.6860741307027638,-0.34515756042674184,-0.47560655139386654,-0.22939677955582738,-0.24347587674856186,-0.02921965252608061,-0.46606516977772117,0.7490648962557316,-0.2503680670633912,0.6040549050085247,0.5148053308948874,-0.6291738925501704,0.9175421013496816,0.8275647326372564,-0.3444459098391235,0.24145944882184267,-0.7598717389628291,-0.018640552647411823,-0.6176483524031937,-0.07926301984116435,-0.791265263222158,0.44275111705064774,-0.509595044888556,0.5447129760868847,0.8873280510306358,-0.9963279832154512,-0.3431288171559572,0.9584269840270281,0.08465487975627184,0.39596482552587986,0.9620894943363965,0.39593162946403027,0.7408123067580163,-0.5627139443531632,-0.9664778816513717,-0.968023092020303,-0.10131422756239772,-0.9878736082464457,-0.37196571193635464,0.9157257294282317,-0.23966026725247502,0.285298605915159,-0.20876933820545673,0.07246505981311202,-0.13513459591194987,-0.5227824565954506,0.4993485724553466,0.6668365597724915,0.3184208539314568,-0.3212589421309531,-0.4262273614294827,-0.5723820445127785,-0.19933972926810384,-0.0011433083564043045,0.9165817676112056,0.7291967519558966,-0.8885178426280618,-0.6551638636738062,-0.32985038915649056,-0.7398499008268118,-0.14551096223294735,0.7894211993552744,-0.8075582524761558,-0.5756144840270281,0.8285090890713036,-0.7516623325645924,-0.06189873442053795,0.5388145875185728,-0.17893265327438712,-0.7154773743823171,-0.9553094659931958,0.7777264988981187,0.9598533539101481,-0.5640191808342934,0.9691315428353846,0.7150276899337769,0.3934563775546849,-0.045646742917597294,-0.256140838842839,0.2881904197856784,-0.15689302794635296,-0.9927313006483018,-0.6127831251360476,-0.17937152134254575,-0.045342960860580206,-0.8188761486671865,0.315551389940083,0.3527607093565166,-0.887670851778239,-0.9021317032165825,0.5760729401372373,0.8368487553671002,0.3963938020169735,-0.704713748767972,0.3584537338465452,-0.9641829426400363,-0.8184872632846236,-0.08646584628149867,0.3938615578226745,0.07955888751894236,-0.1156623107381165,0.27838274044916034,0.3658378515392542,-0.6516482112929225,0.5636744643561542,0.5866074268706143,0.7695487919263542,0.49063762184232473,-0.07286938279867172,-0.006322335451841354,-0.1760665327310562,0.3902505813166499,0.3656368223018944,-0.09016761090606451,-0.373947543092072,0.8901779148727655,0.07963403593748808,0.5544012011960149,-0.8075491175986826,0.2579626562073827,-0.4832911523990333,-0.5653662052936852,-0.1643141219392419,-0.20867882203310728,0.7259437250904739,-0.8205409063957632,-0.7744579715654254,0.7474213521927595,-0.2187397312372923,0.34331912687048316,0.26428011478856206,0.8899741820059717,-0.6890181959606707,0.937662445474416,0.08939264016225934,-0.32897714525461197,-0.7814129069447517,-0.27320902654901147,0.1926033329218626,-0.8346941582858562,0.49450826179236174,0.30952145205810666,0.7040135744027793,-0.20977549394592643,0.8945639566518366,0.3169940006919205,-0.40779024828225374,0.8866551644168794,-0.300375125836581,-0.09955149237066507,-0.044235313311219215,-0.34739112854003906,-0.19712085369974375,0.6479136990383267,-0.26188039872795343,0.6187268137000501,-0.7406733701936901,0.054297678638249636,-0.4776529283262789,-0.7673002234660089,-0.4892135802656412,-0.5976738566532731,0.7357703018933535,0.553129427600652,-0.13585876766592264,0.49482154473662376,-0.5234167105518281,-0.6407441003248096,0.7563635590486228,-0.9837300055660307,-0.428801657166332,-0.2825109953992069,0.36145194293931127,-0.7785149440169334,-0.5042229015380144,-0.09927563602104783,-0.5647623143158853,0.13723632507026196,-0.5939961140975356,-0.8124996367841959,-0.42271373607218266,0.5937997275032103,-0.5510057508945465,0.6396448579616845,0.11410807771608233,-0.2508752322755754,-0.8437702730298042,-0.5965423262678087,-0.4908056603744626,-0.34638600377365947,0.2538422364741564,-0.38680930621922016,0.5804352802224457,0.013538097031414509,-0.5028941440396011,0.9136145231314003,-0.6982630109414458,-0.16187273804098368,-0.786102928686887,0.01647656550630927,0.20932214427739382,-0.8357438622042537,-0.3353167986497283,0.03469773707911372,-0.7677050265483558,-0.8343521445058286,0.09166776342317462,0.7274531605653465,-0.05885843047872186,0.11912364372983575,0.2895383248105645,0.9613205180503428,0.758967577945441,0.42824015114456415,-0.5841743913479149,-0.5429559107869864,0.7325960919260979,-0.10987365106120706,-0.562747701536864,-0.6344144134782255,0.6786862881854177,-0.24869555654004216,-0.023866421543061733,-0.3061183230020106,-0.5887507703155279,-0.3481393209658563,-0.7900043539702892,0.3085776725783944,-0.3059162013232708,-0.6244286349974573,-0.042990016750991344,-0.37286802288144827,0.707425897475332,0.5617559649981558,0.02267298335209489,0.6459996527992189,0.8155085258185863,0.6065300577320158,-0.5701826848089695,0.9256431125104427,0.5369771062396467,0.39302406553179026,-0.5261956178583205,0.18422623351216316,0.23906336445361376,-0.08892292296513915,0.9821317014284432,0.46891464618965983,-0.04510780656710267,0.39213221007958055,0.06889989040791988,0.5286836097948253,-0.5378006184473634,0.13745395420119166,0.8256112658418715,-0.2631368129514158,0.35352351935580373,0.42080828407779336,0.8416169239208102,0.021276814863085747,0.19933841284364462,0.9130292888730764,0.44921014178544283,0.7956137810833752,-0.7047282629646361,0.45179822389036417,-0.6305904788896441,-0.7362284627743065,-0.8217252190224826,-0.5950832637026906,0.37056911922991276,0.5241632643155754,-0.9444556781090796,0.33862037351354957,-0.05624510953202844,0.490362249314785,0.23866189178079367,0.9036141238175333,0.011156319174915552,-0.2615867224521935,-0.8726400383748114,0.9275376899167895,0.10192711837589741,-0.4604706489481032,-0.9734406918287277,0.5226523200981319,-0.3688258887268603,-0.39360916754230857,-0.0009998423047363758,0.3810481787659228,-0.6409661606885493,-0.12959174951538444,0.4701000931672752,0.049783201422542334,0.051095335744321346,0.4762691128998995,-0.06742932554334402,-0.33797393273562193,0.7494023251347244,0.8210772234015167,0.8533539264462888,-0.359710861928761,0.43234200356528163,0.21282761171460152,0.23975445330142975,-0.11999899614602327,0.8481097728945315,0.12030838103964925,0.4298192267306149,-0.9621920175850391,0.6892118789255619,0.06802248768508434,-0.413541407790035,-0.47811592323705554,-0.9969904157333076,-0.8287166780792177,0.2664848514832556,0.8723275302909315,0.6145917759276927,-0.2302207676693797,-0.3474674494937062,-0.46555678779259324,0.6011623842641711,-0.533247803337872,-0.32872189674526453,0.46550575690343976,-0.42641260381788015,-0.3611492644995451,0.24056659312918782,0.6095460932701826,-0.13012676825746894,-0.6071064718998969,0.7751942789182067,0.3148261387832463,0.2212285539135337,0.5722460658289492,0.46952592115849257,-0.948414827696979,0.5169061277993023,0.4207884934730828,0.28618643479421735,-0.31241641798987985,-0.45883872313424945,-0.52875333186239,0.23482190677896142,0.1329036746174097,0.4817293146625161,-0.9935948178172112,0.6292951316572726,0.11741164978593588,0.8916551740840077,0.1928211417980492,0.6859585554338992,-0.5649220938794315,0.014430683571845293,0.36892355792224407,0.5780076468363404,0.5399841512553394,-0.22203619638457894,-0.4506017602980137,-0.5477132736705244,-0.8178256354294717,0.4515199246816337,-0.2854902297258377,-0.819923700299114,0.11581402737647295,-0.07775417389348149,0.08342404058203101,-0.42699195770546794,0.13128863694146276,-0.45038815727457404,0.4501703707501292,0.7751015708781779,-0.3437822419218719,-0.485180351883173,0.8861762336455286,-0.08675756398588419,0.07665997231379151,-0.16806397028267384,-0.9522083308547735,0.7896784543991089,-0.17728383233770728,-0.03699284279718995,-0.6880398620851338,0.2525101532228291,0.9122008876875043,0.8239266336895525,-0.938884380273521,-0.18544700974598527,0.14641557540744543,-0.5875908331945539,0.15993454912677407,-0.8059078911319375,0.9812429319135845,0.5778276375494897,-0.7024716706946492,0.3936223089694977,-0.2931843507103622,0.08892458071932197,0.8103159172460437,0.5207702093757689,-0.3385456087999046,0.8063284284435213,0.24905905779451132,0.4554225355386734,-0.4575316566042602,0.016609840095043182,0.5054947738535702,-0.9146299338899553,-0.37956961523741484,0.0519302892498672,0.22968077892437577,-0.15507701877504587,-0.829889704938978,-0.3941868278197944,-0.3210230595432222,-0.38607419561594725,-0.17578688263893127,-0.8939540884457529,0.5214551645331085,-0.7801311267539859,0.7413971959613264,-0.8446623752824962,0.39021870447322726,-0.4348628679290414,-0.2261079945601523,-0.8510692142881453,-0.8895528819411993,-0.6895866990089417,0.5050854338333011,0.09971410129219294,0.711289506405592,-0.7489987891167402,-0.6453823279589415,-0.18003758043050766,-0.712296343408525,-0.48801654297858477,0.27967351488769054,0.6109180566854775,0.46381461154669523,0.7706845551729202,0.5186368841677904,-0.8022488802671432,-0.7069698167033494,-0.2587158251553774,-0.29272349271923304,-0.37437423691153526,-0.4271105411462486,-0.36333538219332695,0.5261133504100144,-0.374412895180285,-0.4452135837636888,-0.38348621828481555,-0.28079609712585807,0.8915362530387938,0.631856816355139,-0.8317255657166243,0.938556422945112,0.08801932213827968,-0.5421795775182545,-0.049215419217944145,-0.116049247328192,-0.14522567903622985,-0.35727125313133,0.04381576320156455,0.13619470782577991,-0.946943033952266,0.43740573246032,-0.08124512201175094,0.7276550624519587,0.06112751318141818,-0.059787016827613115,0.09950753767043352,0.2517238734290004,-0.019163738936185837,0.855404110159725,-0.8699579546228051,-0.5384741709567606,0.0763260442763567,0.007785786408931017,-0.10769631015136838,0.3042489644140005,0.3470414252951741,0.1689880439080298,-0.641299600712955,-0.4838344226591289,-0.8568478683009744,-0.15635808557271957,0.7482198141515255,0.10540312621742487,-0.12184299482032657,-0.14180376892909408,-0.90465531591326,0.40597154665738344,0.8236989974975586,0.27715558698400855,0.8287649499252439,0.8186775934882462,0.8380321394652128,0.3462414047680795,-0.3221541391685605,0.8355380399152637,-0.07726299483329058,-0.6946211070753634,0.511619983240962,0.38383990386500955,0.4227694203145802,0.15006052237004042,-0.7879469078034163,-0.002219441346824169,0.40030383225530386,-0.4483047858811915,0.49956908356398344,-0.041700861882418394,0.3289150563068688,-0.6332317627966404,-0.643131757620722,-0.568437360227108,0.8135825484059751,-0.2391076167114079,-0.09947803663089871,-0.5943613769486547,0.2797774989157915,0.23274323996156454,-0.7546820756979287,-0.3376266276463866,0.4006051397882402,-0.03980075428262353,-0.5592913180589676,0.5788773172535002,-0.7085514981299639,-0.04975532554090023,-0.32641404774039984,0.8484367807395756,-0.12252726685255766,0.08589147077873349,-0.4967446615919471,0.749052201397717,0.7405051523819566,-0.17169029638171196,-0.37026676209643483,0.8135164170525968,0.46921105962246656,0.8721181345172226,0.4207871751859784,0.8124025263823569,-0.2358139706775546,0.7981922188773751,-0.2539329850114882,0.839878368191421,-0.7689272011630237,-0.5389015190303326,-0.9826558683998883,0.5794908748939633,-0.1426491616293788,0.6331565044820309,0.8041441566310823,-0.186531244777143,-0.06750089256092906,0.0222523077391088,-0.8967941659502685,0.04032664746046066,-0.22886996949091554,-0.6369736725464463,-0.2273034229874611,-0.8468220205977559,-0.724510966334492,-0.7920681131072342,0.5819362262263894,-0.6477349195629358,0.446379279717803,0.37821702286601067,-0.3546315561980009,0.6887165787629783,-0.13420459534972906,-0.67070536268875,0.580459566321224,0.08019145345315337,-0.6771458582952619,-0.9578981697559357,-0.2887261542491615,0.5410564709454775,-0.21024879533797503,0.05697828996926546,0.8170026536099613,0.9283955916762352,0.016116936691105366,-0.8540649288333952,-0.0764840729534626,0.7777789593674242,-0.7885078424587846,0.24976641358807683,-0.25367554603144526,-0.2571325097233057,-0.020931406877934933,-0.9288397952914238,-0.27169031742960215,0.9948834353126585,-0.09547907905653119,-0.680558136664331,0.6323001245036721,-0.26421478763222694,0.07807921105995774,0.9513727826997638,0.1285971701145172,0.7068201960064471,-0.03725374164059758,0.31274396320804954,-0.20763161964714527,0.30881527019664645,-0.48028057953342795,-0.7704229690134525,0.19191733468323946,0.5399263254366815,-0.6680151582695544,0.37848171358928084,-0.7829455034807324,-0.1353903110139072,0.7258936366997659,-0.8192411032505333,0.6317439116537571,-0.5937914904206991,0.13419521320611238,0.17025311896577477,-0.0536085837520659,-0.10048492439091206,-0.7005360913462937,-0.09103024750947952,0.7779973442666233,-0.38006793707609177,-0.5275151608511806,0.16927951155230403,0.671122822444886,-0.3907795660197735,0.3001227783970535,-0.23378693545237184,0.41285429522395134,0.435500196646899,0.9050978100858629,-0.2245784536935389,0.36997529910877347,0.7489733649417758,-0.41756343888118863,-0.6249777455814183,0.6497303489595652,0.018076105043292046,-0.006090414244681597,-0.00868429895490408,0.7288849521428347,0.17305303877219558,0.8838049941696227,0.01805814914405346,-0.36843926133587956,0.4496776210144162,0.8587692617438734,0.5433743884786963,-0.757604958023876,0.6705612787045538,-0.16546959895640612,0.36743802670389414,-0.8705572844482958,-0.40841682581231,-0.04217061912640929,0.6787899993360043,-0.01702093705534935,-0.32845064578577876,-0.02141997218132019,-0.33177193300798535,-0.05421444866806269,-0.7580577358603477,0.47455695690587163,0.8105011265724897,0.7159659368917346,0.05265916511416435,0.9503631209954619,-0.012843797449022532,0.7239064243622124,0.6478437511250377,0.5083673465996981,-0.722872955724597,0.8312835050746799,0.1941533898934722,-0.6075500473380089,-0.4395611477084458,0.40158707462251186,-0.15706767700612545,0.013664512895047665,0.4379788604564965,0.3610147759318352,-0.43674487993121147,0.6713247280567884,-0.7398368609137833,-0.5145598663948476,0.8969240603037179,0.4108574134297669,-0.38290901156142354,-0.7425100887194276,0.7742966585792601,-0.5864361049607396,-0.38846809417009354,-0.7420872333459556,0.1878312355838716,-0.12365177553147078,0.6807851498015225,-0.5041036419570446,0.029416232835501432,-0.26710261264815927,0.3837470421567559,0.3323030760511756,-0.508675008546561,-0.29709785897284746,0.08485455764457583,-0.49189823400229216,-0.5109131587669253,0.4388410816900432,-0.6274362881667912,0.01744305808097124,-0.5081492010504007,-0.06099108653143048,0.8989563910290599,-0.8168281549587846,0.4222092228010297,-0.42704198183491826,0.7231949488632381,-0.35963046038523316,-0.8713917154818773,0.7649591988883913,0.032539546955376863,-0.3028327082283795,0.20228165527805686,0.6419787751510739,0.8930160570889711,-0.39734838996082544,-0.2272915793582797,-0.7692523850128055,0.7044356451369822,-0.37688042130321264,-0.9016281790100038,-0.963524978607893,0.3077409481629729,0.4657843173481524,0.36629091249778867,-0.9298264430835843,-0.38043084973469377,-0.08763370011001825,-0.2424279786646366,0.6325675020925701,-0.3304266254417598,0.5235483553260565,0.8085726178251207,-0.2899996768683195,-0.8696234682574868,0.675515869166702,0.7774635348469019,-0.46604091254994273,0.10938206361606717,-0.14175599487498403,0.8704764991998672,-0.5142971999011934,0.9244606671854854,0.2635466898791492,-0.8883404708467424,0.6615026025101542,0.08547646552324295,-0.9752856688573956,-0.7706617908552289,0.6336848926730454,0.48311886470764875,-0.7654537335038185,-0.5152001124806702,-0.19627077598124743,-0.8468020223081112,-0.13876794930547476,0.557113999966532,0.003412195947021246,-0.5349135221913457,-0.39505298528820276,-0.3769196318462491,0.5720877978019416,-0.22325993049889803,-0.3116234103217721,0.8014004798606038,0.5868816538713872,-0.6060278820805252,0.6781806703656912,0.9522410528734326,-0.6407521548680961,-0.7709505818784237,-0.26300546200945973,-0.24873099848628044,-0.31581872096285224,0.9089723066426814,-0.016885050106793642,0.2291806349530816,0.7185514401644468,0.31812584260478616,0.5499961683526635,0.10930450959131122,-0.46026428416371346,-0.16721136728301644,0.21476604836061597,0.2657207539305091,0.539161155000329,-0.7158531853929162,0.4919402068480849,0.3694225298240781,0.6887493999674916,-0.5222303378395736,-0.8837806452065706,0.08734834427013993,-0.6884415070526302,-0.5626897974871099,-0.1765702017582953,0.18248139368370175,0.6513110101222992,0.8307872610166669,-0.8676987872458994,-0.9517128909938037,-0.3877712148241699,0.6141646853648126,-0.8846394489519298,-0.4103167303837836,-0.24188800947740674,-0.832150449976325,-0.10733561357483268,-0.6280982508324087,-0.3978774230927229,-0.7166972551494837,-0.5494302399456501,-0.4511091308668256,0.38294299552217126,-0.005796587560325861,0.4312160392291844,-0.11217919737100601,-0.7076635509729385,-0.9229623675346375,-0.6582629848271608,-0.8259715409949422,0.4963305457495153,0.46402609208598733,-0.06045231316238642,-0.9618228455074131,-0.4067728812806308,-0.5058096679858863,0.15821050573140383,-0.16883868305012584,-0.6792432656511664,-0.8544466574676335,-0.7574714343063533,-0.9024290344677866,0.43311117263510823,-0.20694909198209643,-0.7203623838722706,0.5766535187140107,0.8558355555869639,-0.6572043257765472,0.7553308606147766,-0.2880958542227745,-0.7515782425180078,0.4810106800869107,0.32191634830087423,0.9009607695043087,-0.35125276865437627,0.5373285431414843,-0.03329096967354417,0.40790902683511376,0.16467036120593548,-0.8717124084942043,0.012496489565819502,-0.15346211846917868,0.36885330080986023,-0.4074314571917057,-0.6737231225706637,-0.9504923685453832,-0.9936462938785553,0.11563265137374401,0.460715196095407,0.7772808456793427,-0.6235545929521322,-0.6725528612732887,-0.448111176956445,0.9266297067515552,-0.508176788687706,-0.522338995244354,0.9657897748984396,-0.790848727338016,-0.7516373475082219,0.8060788414441049,0.2744497680105269,-0.9172104839235544,-0.5123081551864743,0.3362446017563343,0.3601405923254788,-0.47237243643030524,-0.12212486239150167,-0.060864788480103016,0.12824599584564567,-0.47773503325879574,0.05613222299143672,-0.4861991936340928,0.12857063533738256,0.03056886000558734,0.9502082001417875,0.8625500700436532,0.7898387601599097,0.9733813046477735,0.7961562895216048,-0.9780007502995431,-0.1419729683548212,0.20913760643452406,0.8293790407478809,0.573552911169827,0.4379215147346258,0.8122632065787911,0.7782479231245816,0.1930394866503775,0.11581733729690313,0.7776918304152787,-0.5020062136463821,-0.41296157613396645,-0.4629415962845087,-0.3473345236852765,-0.8553415243513882,0.8347554351203144,0.4594837096519768,0.6135518499650061,0.4630790464580059,-0.42399739287793636,-0.1861575054936111,0.05978857912123203,-0.6732366606593132,-0.16654346324503422,0.12554221088066697,-0.9053873289376497,0.36382993031293154,-0.29595195036381483,0.9488442814908922,-0.3447668831795454,0.5742515595629811,0.9488576147705317,0.6919602137058973,0.9860760038718581,0.885987073648721,0.7252315087243915,-0.5279337950050831,0.30939280753955245,-0.18804912641644478,0.7524614608846605,0.82627929514274,0.5887319697067142,0.2985403393395245,0.27471289969980717,0.019523645285516977,-0.6449078586883843,0.3602322181686759,0.5579344676807523,-0.13217444997280836,-0.3713385174050927,-0.7480170857161283,-0.11602337937802076,-0.7279124818742275,-0.8739649597555399,0.09554097848013043,-0.9050245662219822,-0.28464737348258495,-0.9049680875614285,-0.2112927515991032,0.9186826264485717,-0.4829218997620046,0.4171910099685192,0.3719842378050089,0.31287235766649246,0.06816953420639038,0.31265971902757883,-0.03737123217433691,0.4681665697135031,0.25419446965679526,0.016735507175326347,0.9188114749267697,-0.9457961064763367,0.3276480780914426,-0.07287636958062649,-0.23416137602180243,0.19499454367905855,0.9288231767714024,0.452770602889359,-0.37698584282770753,-0.8873651772737503,-0.9772773231379688,-0.22414887137711048,-0.22645947337150574,-0.07512026838958263,-0.09246495785191655,-0.6860300218686461,-0.7320522624067962,-0.9001452536322176,-0.7880880781449378,0.4496731539256871,-0.8161006891168654,-0.49007051065564156,0.9059659787453711,0.4840747038833797,-0.6657044659368694,0.31110389064997435,-0.8448141179978848,0.0674874666146934,0.3832705128006637,0.12856826512143016,-0.34701218735426664,-0.2405744199641049,-0.9127377034164965,0.9787723529152572,0.5721218003891408,0.5232287757098675,0.1329403705894947,0.09268523519858718,-0.3989516319707036,0.017848878167569637,-0.4402070799842477,0.18635328253731132,0.41498623229563236,-0.9835637859068811,0.08266480499878526,-0.11642379872500896,0.0933443489484489,0.4157266104593873,0.39594514993950725,0.4719434408470988,0.5122583778575063,0.41130552580580115,-0.2421208960004151,-0.4184591257944703,0.02192700933665037,-0.6163905174471438,-0.5891784164123237,-0.576528038829565,0.16767382668331265,0.43415381014347076,-0.014485463965684175,-0.9053888479247689,-0.3285750630311668,0.53445492265746,-0.48250515200197697,-0.8833416113629937,0.5578491860069335,-0.5695439162664115,-0.5091139846481383,-0.43671834329143167,-0.9646737147122622,-0.6775474757887423,-0.8121028025634587,0.1129618939012289,-0.6741002867929637,0.003699476830661297,0.5156314065679908,0.9337155632674694,0.6969151166267693,0.8069414347410202,-0.8117955075576901,0.00673116696998477,0.3278416250832379,0.6238740747794509,0.974944718182087,-0.42718570679426193,0.5052052205428481,-0.4621206880547106,-0.794098065700382,0.4989479873329401,-0.3129293587990105,-0.6852255836129189,0.1670063091441989,0.4658249062485993,-0.7851604544557631,-0.0861495928838849,0.7379508172161877,0.7104415600188076,-0.9945466765202582,0.025494320783764124,0.4775549052283168,0.9429819202050567,-0.7021572114899755,-0.9122138693928719,-0.5531353182159364,0.00494500482454896,-0.6532862838357687,0.9717460484243929,-0.7733332249335945,0.07207599701359868,0.5263238507322967,-0.5922139841131866,0.44859003694728017,0.45962885953485966,-0.11957141337916255,-0.7349321339279413,0.5380031070671976,-0.39305752608925104,0.20036294031888247,0.5382241825573146,-0.48758790688589215,-0.8006555191241205,0.6831815661862493,0.5420193513855338,0.8225252199918032,-0.8923620483838022,-0.26844707783311605,0.5436170282773674,-0.8229018468409777,-0.5757747604511678,0.02885251957923174,-0.06436025211587548,0.06654982408508658,-0.16752750147134066,-0.728132217656821,-0.8442162140272558,0.08830260066315532,-0.4188368944451213,-0.5119590442627668,-0.4921967904083431,0.47432651836425066,-0.6799304122105241,0.6753373718820512,-0.47706867195665836,-0.9480326427146792,0.6096086311154068,0.5553455930203199,0.6140868552029133,-0.9492759369313717,-0.2798924804665148,-0.3686346486210823,0.8241590573452413,0.7175062168389559,-0.4254085938446224,-0.3835908146575093,-0.526554545853287,-0.5623404993675649,-0.01989849377423525,0.8397546946071088,0.49109700601547956,-0.2419351222924888,0.9086270811967552,0.7717463122680783,0.23299810476601124,0.03174383332952857,-0.8852097019553185,0.8864640174433589,-0.9679768523201346,-0.18117222469300032,0.42566972179338336,-0.42062680842354894,-0.44359681475907564,-0.5398938949219882,-0.07583339978009462,0.2653575469739735,0.35996351204812527,-0.46647045109421015,0.737551040481776,0.485504352953285,0.40710634365677834,0.5718632210046053,-0.5090220714919269,0.4364464026875794,0.6359225208871067,-0.8039330183528364,-0.8505439222790301,0.14807181246578693,0.4817911870777607,-0.7309628063812852,0.5696045635268092,0.5273073567077518,-0.2108119665645063,0.3937514196150005,-0.13872060179710388,-0.9896715758368373,0.5972960549406707,-0.6566337877884507,-0.4825186412781477,-0.24714042898267508,0.29637094866484404,0.1059136688709259,-0.37487067468464375,-0.09375005774199963,0.7407341087237,-0.11028382834047079,-0.7628300618380308,-0.8227854371070862,0.3806685763411224,0.2464815122075379,0.9995188415050507,-0.6817291923798621,0.32235128292813897,0.6265504928305745,-0.08346900995820761,0.506644744426012,0.07663275441154838,0.33828339586034417,0.5474251476116478,-0.9394443826749921,-0.6454351316206157,-0.04855693830177188,-0.8034116458147764,-0.658505545463413,-0.40816142642870545,-0.031084435526281595,0.36455947859212756,-0.38801088416948915,-0.06166874198243022,-0.9264030526392162,-0.08171396516263485,-0.7523932843469083,0.41879044752568007,0.5569049008190632,-0.631553110666573,-0.28130533639341593,0.8512757872231305,-0.33749333303421736,-0.5158406086266041,-0.40872308146208525,0.7145336642861366,0.49387139407917857,-0.9304899540729821,0.5198356858454645,-0.7169129219837487,-0.01654576463624835,-0.5888041602447629,0.48277908843010664,-0.03493713913485408,-0.12095871474593878,0.8575395839288831,-0.10927072679623961,-0.9468803447671235,-0.4982032817788422,-0.41819438710808754,0.2638160581700504,-0.13076357217505574,-0.6930516548454762,-0.13655174663290381,0.5012311874888837,-0.7060817671008408,0.16030826419591904,0.19626028556376696,0.27080375934019685,0.7297255983576179,-0.02248541684821248,-0.212061682716012,0.14425807632505894,-0.857322025578469,0.7898989487439394,0.7114283586852252,0.6494800974614918,0.42399077164009213,0.48316116351634264,-0.17533956980332732,-0.5770224574953318,0.07667361991479993,-0.5073816971853375,0.0846000169403851,-0.18277481384575367,0.1769489934667945,-0.8049476058222353,-0.6966252620331943,-0.8971129953861237,0.10203842725604773,0.9931189110502601,0.26952568581327796,0.6790458862669766,0.7016859869472682,-0.2534879087470472,0.8417482133954763,-0.8636587862856686,0.5910833645612001,0.8896866794675589,-0.43345477199181914,-0.061462190467864275,-0.36954321013763547,0.3413542718626559,0.7413061233237386,0.4238451118580997,0.44889660039916635,-0.7896084557287395,-0.9924563835375011,0.34318628953769803,0.38193988148123026,0.6960189356468618,-0.7706793076358736,-0.7644558572210371,0.6520532281138003,-0.42582632042467594,-0.9987050951458514,-0.03264228720217943,-0.6896287682466209,0.6378508964553475,0.0442808554507792,-0.3280002297833562,-0.20685969991609454,-0.29036965081468225,0.9269736274145544,-0.29734629066661,0.02890105452388525,0.9468493228778243,-0.28473985753953457,-0.42095204442739487,0.21555599058046937,-0.5981919881887734,0.3474370981566608,-0.9073705966584384,0.5922828805632889,0.9063770468346775,-0.43875205237418413,-0.4007793120108545,-0.7625603438355029,-0.4126621331088245,0.6471572020091116,0.5569648733362556,-0.13555938936769962,0.081256995908916,-0.845932437106967,-0.5508641414344311,-0.48161879321560264,0.006627047434449196,0.6165537647902966,-0.885476061142981,-0.8380415556021035,-0.09363741520792246,0.9893864374607801,-0.6536248209886253,0.9019739674404263,0.37288268376141787,0.8315978455357254,0.8343910514377058,-0.8169849514961243,0.955698692239821,-0.7509559052996337,0.24941621208563447,-0.7663233117200434,0.11531084636226296,-0.3483339259400964,0.41694053169339895,-0.6194617026485503,-0.025870053097605705,0.3762900005094707,-0.6460446859709918,0.21771209686994553,-0.9860697169788182,0.6460808338597417,0.3759158253669739,-0.910613420419395,0.8698577475734055,-0.5223845848813653,0.8207848430611193,-0.6558979745022953,0.381459582131356,-0.7330118338577449,0.846921959426254,0.040913756005465984,0.29004811216145754,-0.0937928925268352,0.09077491145581007,0.8467214740812778,-0.25821305345743895,-0.8716389560140669,-0.9990824167616665,-0.689625698607415,-0.017241688910871744,-0.8842224543914199,-0.678621253464371,-0.32888699835166335,-0.8404641402885318,-0.41422343673184514,0.583447418641299,-0.7945620748214424,0.7921755397692323,0.7995411627925932,-0.6596747064031661,0.024834915064275265,0.5815979917533696,0.06194021785631776,0.9238562658429146,0.7123628980480134,0.12597345048561692,0.8387708244845271,0.6966022741980851,0.3989026811905205,0.14882290875539184,-0.7365044807083905,-0.37844854360446334,-0.5470762527547777,-0.43929883232340217,0.44622026942670345,-0.025302672293037176,0.474996879696846,-0.7667769808322191,0.7934758607298136,-0.48961069947108626,0.6143908370286226,-0.9656367255374789,0.09264110820367932,-0.6710257334634662,-0.31060734251514077,-0.7212264109402895,-0.7267795419320464,-0.41076326509937644,-0.35502029955387115,-0.193140116520226,0.9272085768170655,-0.07159334886819124,-0.9407994193024933,0.5216239844448864,-0.11076127411797643,-0.8454938582144678,0.9610307114198804,-0.12035471200942993,0.6727898400276899,-0.835003606043756,-0.602606485132128,-0.6179319424554706,0.26184035604819655,0.8801719155162573,0.4134185784496367,-0.5458630425855517,0.6201817477121949,-0.9371893303468823,-0.30655761575326324,-0.44848422706127167,-0.5256334324367344,0.8989999704062939,-0.6767054959200323,0.4134703055024147,0.6856541549786925,-0.029188720509409904,0.729016276076436,0.42203507851809263,0.27009123656898737,-0.7262048772536218,0.7240871083922684,-0.9365895399823785,-0.7986167864874005,0.8636754667386413,-0.5450792573392391,0.7336321580223739,-0.20265063550323248,0.3688216577284038,0.7276059775613248,-0.4978858884423971,-0.3230431256815791,-0.6364139746874571,-0.43989639915525913,0.7452966398559511,0.09679712168872356,-0.3158497014082968,-0.723212409298867,-0.5688404981046915,0.9178166217170656,0.9289083871990442,0.0813629156909883,0.550312265753746,-0.13728918507695198,0.7466382873244584,-0.8302887021563947,-0.7419872814789414,-0.7528589270077646,0.9192686406895518,-0.24298854544758797,-0.43033178988844156,-0.7799232420511544,0.4723672727122903,-0.1396225499920547,0.005360799841582775,0.7847275193780661,-0.652214786503464,0.2222319059073925,-0.047948363702744246,-0.6143506704829633,-0.025745447725057602,-0.6989911021664739,0.7409318303689361,0.07924575265496969,0.8238828773610294,0.45236270409077406,0.5368244391866028,0.1553988796658814,-0.7110238652676344,0.2844492900185287,0.6302612847648561,0.042596076149493456,-0.1970585505478084,-0.76365667860955,-0.5245742951519787,0.5889504905790091,-0.6224185884930193,0.9640615754760802,-0.04067660355940461,0.2671344354748726,0.25274709332734346,-0.006340041756629944,-0.06241687899455428,0.7423819922842085,-0.6106845061294734,0.5374285941943526,0.7114278934895992,-0.8158552455715835,-0.4586336826905608,0.860904976259917,0.7445960487239063,-0.6835346780717373,-0.8396123931743205,-0.6484964308328927,0.6421953840181231,0.12202505767345428,-0.4063227982260287,0.38579310243949294,-0.5244216369464993,-0.2135301879607141,0.6789933191612363,-0.4727944675832987,0.1690074228681624,0.7780522773973644,-0.3500110125169158,0.6970599866472185,-0.8499822365120053,0.17418114887550473,-0.42743204487487674,-0.07119763363152742,-0.6099559962749481,-0.7135989763773978,0.19249185035005212,-0.18114975886419415,-0.9058027407154441,-0.2617218536324799,0.26925120409578085,-0.3341275225393474,-0.12915924191474915,-0.215430392883718,0.3523277579806745,0.4201174513436854,0.6781244985759258,-0.01882961578667164,-0.06555265048518777,-0.7256668508052826,0.03415715554729104,-0.1576349399983883,0.44448870280757546,0.8506962317042053,0.905051895417273,0.5175976580940187,-0.30739041790366173,-0.9762998325750232,0.6070249332115054,-0.7400251189246774,-0.4388481234200299,0.4337086398154497,-0.8238205686211586,-0.6888785543851554,-0.8901633941568434,0.3363554351963103,0.459144682623446,0.8533175210468471,0.940660881344229,-0.3992633349262178,0.9765445739030838,0.864205542486161,-0.43502528173848987,0.12342323642224073,-0.05510385427623987,-0.3993307030759752,-0.741182648576796,-0.5707175461575389,0.6090895161032677,0.618956393096596,0.5094008045271039,-0.39295413438230753,-0.9475785875692964,0.8337450507096946,-0.8308090791106224,0.3154705702327192,-0.8147129728458822,-0.12175324419513345,-0.004056387115269899,0.8399203978478909,0.7945734621025622,-0.8724505691789091,-0.852546424139291,0.9229414039291441,-0.16082362411543727,0.7991199432872236,0.3543843775987625,0.8966129911132157,-0.17405365966260433,-0.7032553609460592,-0.2630146685987711,0.9486338016577065,-0.380426655523479,-0.3354409276507795,0.6450090883299708,-0.021748517639935017,0.5538567579351366,0.7478435900993645,-0.6708607324399054,0.860502275172621,-0.23877574177458882,0.07656199345365167,-0.918046928010881,-0.24039434734731913,-0.6407935209572315,0.867024420760572,0.23612533370032907,-0.21474507357925177,-0.9313612994737923,-0.6453172294422984,0.10843001073226333,-0.7086375313811004,0.2770380638539791,0.3600416057743132,0.939723736140877,0.24609793676063418,0.23630135646089911,0.5775126595981419,-0.009669193532317877,0.8897663238458335,-0.08018106175586581,0.4068835866637528,-0.08121549338102341,0.34026483725756407,0.8166600661352277,0.4303983408026397,0.28363228123635054,0.16854368662461638,0.8486563991755247,-0.8760251267813146,-0.8723401897586882,0.4534808532334864,0.8185180616565049,0.9157205428928137,0.2453060857951641,0.025536199565976858,-0.6024750135838985,0.5347959180362523,0.20715148840099573,0.3460374232381582,0.36892311414703727,-0.623811349272728,-0.37703580828383565,-0.5271738334558904,-0.2788490420207381,-0.5327189001254737,-0.9249293385073543,-0.748916550539434,-0.30146619165316224,0.6453980505466461,0.5260822651907802,-0.7658796887844801,-0.4074024870060384,0.2708688471466303,0.755263885948807,0.5854342533275485,0.7178593403659761,-0.5671608913689852,-0.6991458293050528,-0.30886962730437517,-0.8862094157375395,0.0030128611251711845,-0.7559571322053671,-0.6430677506141365,-0.12856308883056045,0.8508905181661248,0.5186498891562223,-0.061716539319604635,0.11386439995840192,0.974224460311234,0.36377611523494124,0.8590821456164122,-0.021187761798501015,-0.8950300407595932,-0.6783722536638379,0.026646127458661795,-0.1833079750649631,0.3359790937975049,-0.040080403443425894,-0.9094856944866478,-0.727290297858417,0.5199727425351739,-0.6242462070658803,0.5178498751483858,0.9642210118472576,-0.19430474797263741,0.3605922283604741,0.6221976424567401,-0.2471870514564216,0.8497539148665965,0.9044277975335717,0.21679247543215752,0.40202411683276296,-0.21580088417977095,-0.07851428585126996,-0.964927108027041,-0.7958845118992031,-0.7635787040926516,-0.18997873878106475,-0.6391153205186129,0.18689282098785043,0.16824083356186748,0.34266771748661995,0.0018011345528066158,-0.14839543821290135,-0.5398344830609858,-0.7509305123239756,0.7761734640225768,-0.0732042477466166,-0.23361695650964975,0.602117960806936,0.6631526984274387,0.29039215529337525,0.39165764302015305,-0.24266113992780447,-0.40506658144295216,0.1734727444127202,0.9342726264148951,-0.8496729573234916,0.9657839448191226,0.22834844794124365,-0.6444642599672079,0.5658077825792134,0.33180186292156577,0.07932740822434425,-0.9172508013434708,-0.23781355330720544,0.9561089901253581,0.8268691212870181,0.5143004809506238,-0.012002628296613693,0.08420700766146183,0.9604595121927559,0.7704521780833602,0.15232899133116007,0.17411861522123218,0.43517447356134653,-0.0018422105349600315,0.07388391671702266,0.09713709959760308,0.7880007727071643,0.7841074508614838,-0.9508484564721584,0.7883330257609487,0.18916722107678652,-0.41844505397602916,0.13469420606270432,-0.9049156587570906,0.9035558011382818,-0.8047258285805583,0.7872139816172421,0.7019075844436884,-0.2734675370156765,0.6851243735291064,0.7967555844224989,-0.15750584471970797,-0.5924801011569798,0.091411501634866,0.3408838827162981,-0.20435762405395508,-0.5393342641182244,-0.25276945997029543,0.0024780184030532837,-0.38279728684574366,0.862233157735318,-0.6146394885145128,-0.979431985411793,-0.033947554882615805,0.32966773863881826,0.11428815359249711,0.9110091337934136,-0.22886209841817617,-0.6875834371894598,0.8852982819080353,-0.7920114332810044,-0.9222179148346186,-0.6695359121076763,0.42102239467203617,-0.7601907053031027,0.6575601967051625,0.7493496481329203,-0.06804154813289642,0.23583254497498274,0.9093993636779487,0.3014114615507424,-0.600305674597621,0.9708166792988777,0.28359832102432847,-0.528117410838604,-0.42805811343714595,-0.09484672313556075,-0.05327495001256466,-0.17415810376405716,-0.4011294129304588,0.6918771672062576,0.17370963841676712,0.9082228410989046,-0.6932558994740248,-0.16612400813028216,0.4217097465880215,-0.6730927829630673,-0.3582856715656817,-0.07105725444853306,-0.8870311896316707,0.8219782751984894,0.04541971534490585,0.10161074716597795,-0.44477242324501276,-0.1562717603519559,-0.2134668892249465,-0.8572884313762188,0.48767637414857745,-0.2126751495525241,0.3317600339651108,0.4329374236986041,0.7698669722303748,0.4561388259753585,0.46051318291574717,0.19964280631393194,-0.17763168923556805,0.714578899089247,-0.5151572204194963,-0.6606667386367917,-0.6872029388323426,0.48939234111458063,-0.5522408569231629,-0.12421914143487811,0.8583786934614182,0.6298462548293173,-0.7691524247638881,-0.5731046982109547,-0.7190152490511537,-0.28500382974743843,-0.9210635214112699,-0.14636211143806577,-0.5382017693482339,0.8436133814975619,0.7947020158171654,0.9446212886832654,-0.49800407979637384,-0.16697985539212823,0.4579684888012707,-0.6464009038172662,0.3498059920966625,-0.8834331375546753,-0.7888535419479012,-0.2137287207879126,-0.013714270200580359,0.31307624699547887,0.631745224352926,0.505675089545548,0.26467771362513304,-0.6431314400397241,-0.4555851612240076,-0.6597730377689004,0.4808537126518786,-0.2791572464630008,0.42582891462370753,0.09491134667769074,0.7453434625640512,-0.8981581460684538,-0.5785383344627917,-0.7835415182635188,-0.16911135846748948,0.6064677927643061,0.38776926463469863,0.415929211769253,-0.009435420855879784,-0.4644057578407228,-0.9560331390239298,0.43515437841415405,-0.06104957731440663,-0.25134248891845345,-0.289760900195688,-0.8950088596902788,0.218745072837919,-0.6112556783482432,-0.23352072574198246,-0.2287997668609023,-0.9251137766987085,0.9511944097466767,0.7600536667741835,0.596011224668473,0.8307766364887357,-0.1319589326158166,-0.6505978433415294,-0.018243590369820595,0.6149293766357005,0.6275273244827986,-0.12613255996257067,-0.2233436149545014,0.8285869164392352,0.2336317771114409,0.08675124356523156,-0.7032100255601108,0.5359461954794824,0.38843040307983756,-0.5455113612115383,-0.6468184688128531,-0.6704345853067935,-0.5968432584777474,-0.48780375625938177,0.5941917607560754,0.9263162999413908,-0.19893482327461243,-0.5372333815321326,-0.8660547737963498,0.33345777867361903,0.45658026030287147,0.4122603368014097,-0.8118288922123611,0.011530974879860878,-0.8340505687519908,-0.32553343288600445,-0.8331057913601398,0.5721110827289522,-0.19095038110390306,-0.5887712948024273,-0.4488547523505986,0.8450144943781197,0.18863709643483162,-0.7375579355284572,0.12389520928263664,0.3487781099975109,0.19922363990917802,0.31123129604384303,0.609063281212002,-0.9126300853677094,0.9818690954707563,-0.7550873914733529,0.35868829721584916,-0.06469327071681619,0.6396363503299654,-0.7553471750579774,-0.24186125490814447,0.3093866384588182,0.12998946057632565,0.03280512988567352,-0.3518517012707889,-0.44150183675810695,0.09147424157708883,-0.9752651466988027,-0.08800649642944336,-0.07325017685070634,0.8729977984912694,0.9983520060777664,0.716850979719311,0.552266810555011,-0.005424018017947674,-0.7727657458744943,-0.779241930693388,-0.4994497671723366,-0.383728785905987,0.5831759450957179,-0.1304853861220181,-0.9703620388172567,0.49310158286243677,-0.5775979333557189,0.8369106077589095,0.8529197410680354,-0.3329284368082881,0.2952151708304882,0.7521665329113603,0.7475639623589814,-0.3501738291233778,-0.7710639331489801,0.6520552220754325,0.16667175060138106,0.11510625761002302,0.07320638932287693,0.13225625036284328,-0.814202172216028,-0.6736754393205047,0.39953330252319574,-0.294565221760422,-0.55265012383461,0.6590063134208322,0.9772298815660179,0.3788860752247274,0.9307998232543468,-0.9116161591373384,0.5608876869082451,-0.8591482769697905,0.4560036128386855,-0.3315696674399078,-0.6851968932896852,-0.49572476418688893,-0.9440714437514544,0.654987576417625,-0.23888412211090326,-0.1713954876177013,-0.42149087600409985,-0.04550501890480518,-0.9945136634632945,0.3996893931180239,-0.8204319472424686,-0.5618732492439449,0.2813652022741735,0.26252196822315454,-0.7392878117971122,-0.7978196358308196,-0.2560953740030527,-0.9934044457040727,-0.27373539842665195,0.4883490977808833,0.5587936681695282,-0.962033249437809,0.15674123354256153,-0.12302479520440102,0.1398830907419324,-0.9471526225097477,0.11148030264303088,0.92613789672032,0.20377683779224753,0.09961062110960484,-0.006030799355357885,-0.9502694234251976,0.5870805182494223,0.952749215066433,-0.785877431742847,0.20828003156930208,-0.4462154074572027,0.6101489290595055,0.033526512794196606,0.4007298229262233,0.6634607128798962,0.6093601793982089,0.6127785248681903,0.6057746834121644,-0.45189033215865493,0.6477144914679229,0.18037395924329758,0.9794119815342128,-0.7167418859899044,0.5999245857819915,0.8622679957188666,-0.1772301411256194,-0.9012984265573323,-0.9663227084092796,-0.8028277470730245,0.5586223588325083,0.2484200936742127,0.712139492854476,0.7978910934180021,0.3141422704793513,0.25868955440819263,-0.6796250347979367,-0.9357314161024988,0.40631082002073526,0.017673230729997158,-0.22113406006246805,0.2774210567586124,-0.15011428808793426,-0.5118077509105206,0.7874952270649374,-0.9883322855457664,0.5785216144286096,0.27643883042037487,-0.7233366761356592,-0.6857802169397473,0.544002893846482,-0.5911016236059368,0.13580384105443954,0.5336352144367993,0.0810565478168428,-0.21518183359876275,-0.07226200681179762,-0.8518898854963481,-0.9778876975178719,0.3617053204216063,-0.7662259773351252,-0.330382430460304,-0.8259717402979732,-0.5632165595889091,0.17862853966653347,0.4257647176273167,0.9089833348989487,0.4879845851100981,-0.03929852042347193,0.3717371285893023,0.28236582037061453,0.11305363476276398,-0.9880578061565757,-0.2240494517609477,-0.8598652081564069,-0.5073305736295879,0.8957799067720771,-0.8872719760984182,0.10858396952971816,0.10331232100725174,0.2579310005530715,0.3138289484195411,0.16619761567562819,-0.06491573341190815,-0.7289010835811496,0.9954721457324922,0.6306382799521089,0.04592884425073862,0.3399275471456349,-0.47286362713202834,-0.19072156911715865,0.3691410790197551,0.35601422702893615,0.3865800523199141,-0.6135376617312431,-0.638354076538235,0.04946617176756263,-0.0921942237764597,0.8610310535877943,-0.228878207039088,-0.6337767587974668,-0.6162438681349158,0.8969621038995683,-0.5909796659834683,0.040523911360651255,-0.058389812707901,0.11500008217990398,0.5219255303964019,0.09761030646041036,-0.335171758197248,-0.7196952044032514,-0.9988657291978598,-0.9564927546307445,-0.9520160253159702,0.945194480009377,0.4293696014210582,-0.5261046187952161,-0.5621946007013321,-0.07783337635919452,-0.6925864848308265,0.12286909064278007,-0.3258686610497534,0.36200696881860495,0.565793757326901,-0.6722662905231118,0.8108251113444567,0.40318884840235114,0.8850673357956111,0.5916732791811228,0.26547890063375235,-0.8388657597824931,0.07815986033529043,-0.9889457239769399,0.4895388879813254,0.046727397944778204,0.15982520068064332,0.9558624196797609,0.5092632351443172,0.4833226054906845,0.46699334727600217,-0.14126090705394745,-0.6221541268751025,-0.8232718878425658,-0.7417774894274771,0.5391423543915153,-0.22854851838201284,0.0319359852001071,-0.6095042079687119,-0.08321424666792154,0.5459282230585814,0.8798068799078465,-0.358455543871969,-0.10275389021262527,0.34007228491827846,0.16118209762498736,0.6243135258555412,-0.43543773144483566,0.6912618554197252,0.8621719907969236,0.47162443958222866,-0.7858413946814835,0.5760973314754665,-0.6365456869825721,0.8376137292943895,-0.18185397516936064,0.00458558090031147,-0.6141870426945388,-0.2913495171815157,0.7131802248768508,-0.10935971327126026,-0.9723012992180884,-0.12286323215812445,-0.5007765791378915,0.39454500935971737,0.6903101378120482,-0.41063540056347847,0.7540327231399715,-0.6081689368002117,0.2576012443751097,-0.8886186531744897,-0.42902841744944453,0.4442489016801119,0.9183431663550436,-0.7970378142781556,0.8401936069130898,-0.9053290705196559,0.5381421823985875,0.20009090518578887,-0.45998294092714787,0.34305998822674155,0.7466873307712376,-0.05255087185651064,0.3849897081963718,-0.9555842978879809,-0.533693399745971,0.5737087447196245,0.8570978664793074,-0.7258158731274307,0.5290402513928711,-0.7994952443987131,-0.11641106754541397,0.21984377223998308,-0.09553018817678094,0.5345335081219673,0.5458603412844241,-0.34722341131418943,-0.6341544925235212,0.2551199495792389,-0.6239169891923666,0.21792301954701543,0.6598519389517605,0.35021353606134653,0.18599101854488254,-0.3716530338861048,0.2994184149429202,0.05646230047568679,0.12122988142073154,-0.629569633398205,0.9114976851269603,0.6820003390312195,0.566785104572773,-0.8182024322450161,0.09813022520393133,0.8970529902726412,0.07451563002541661,0.030925786588340998,0.6270062373951077,0.47519086254760623,0.6148438444361091,0.496600354090333,-0.3820612048730254,0.8915987298823893,-0.9347313805483282,-0.6102933725342155,-0.8552719494327903,0.47119791992008686,-0.5913355089724064,-0.16946565872058272,0.18297986406832933,0.5913632353767753,-0.35684850439429283,0.4173276429064572,0.16279598232358694,0.07902785809710622,-0.14012814965099096,0.1172932586632669,0.7096941871568561,-0.28768820548430085,-0.6150723430328071,0.6640389086678624,0.8020447995513678,0.2127427407540381,-0.32019998552277684,0.7909297104924917,0.0989254298619926,0.6561644896864891,-0.43046056292951107,0.48232445679605007,-0.8473777929320931,-0.09138734498992562,0.45057745976373553,0.5680626509711146,0.634998332709074,0.25661721359938383,0.9059702814556658,-0.1356122368015349,-0.7446903642266989,0.13313236692920327,0.6371602844446898,0.8181379255838692,0.370238000061363,0.6024755276739597,-0.18682462582364678,0.40812875237315893,0.16733723832294345,-0.8762715761549771,0.6052242005243897,-0.6354255289770663,0.6769127799198031,-0.8580137486569583,-0.4750878536142409,0.11555044166743755,-0.09255138598382473,0.39167544478550553,0.37641710927709937,-0.02311528054997325,0.7454598029144108,-0.4644209719263017,0.45286177564412355,-0.3066012654453516,0.8641213644295931,0.6074488465674222,0.983432765584439,0.37936751963570714,0.7040804112330079,-0.6869883234612644,-0.008920591790229082,-0.7602374460548162,-0.5656076213344932,0.5923344069160521,0.34338785614818335,0.8155438904650509,-0.07988668233156204,-0.11840274138376117,0.08349264273419976,0.1911808317527175,0.9117181543260813,-0.3559932508505881,0.16723323706537485,0.4792674081400037,0.5018789884634316,-0.6693288646638393,-0.09808265743777156,0.5501737897284329,0.6882487032562494,-0.29049332765862346,-0.9692189707420766,0.4083494804799557,-0.5355631499551237,0.2473801327869296,-0.11275867512449622,0.38275680178776383,0.7528850049711764,-0.43086695251986384,0.3130360580980778,0.9841626738198102,0.7251160722225904,0.13392407866194844,0.887616338673979,0.2280870545655489,0.11406871350482106,-0.8790942747145891,-0.6494967564940453,-0.1745182084850967,-0.12635931139811873,0.37389212707057595,0.7967571653425694,0.572788960300386,-0.21627154620364308,-0.7689328142441809,0.3232291233725846,0.6530194920487702,0.0165973249822855,-0.5576480603776872,-0.1811830964870751,-0.04800789710134268,0.6695321821607649,-0.8804206452332437,-0.2759682829491794,-0.5708732875064015,-0.5963362790644169,0.5486937840469182,-0.6807290632277727,-0.3367377631366253,-0.3173839305527508,0.6758688385598361,-0.23353387136012316,-0.3249915661290288,-0.9185361573472619,0.9223672514781356,-0.19143018452450633,-0.7333819228224456,0.22586531192064285,-0.7749847546219826,-0.05948954075574875,-0.41363254748284817,0.09792363736778498,-0.07860810961574316,-0.4241411164402962,0.31886187056079507,0.7836267184466124,0.8051764662377536,0.5811646757647395,0.1991076748818159,0.7562551777809858,-0.1123701655305922,-0.7517812070436776,-0.5003108303062618,-0.7708478709682822,0.41392001835629344,-0.8561113281175494,0.07735127303749323,0.4544362658634782,0.32926669158041477,0.5941535099409521,0.8178785755299032,0.14296305179595947,0.7280823439359665,0.9615210657939315,0.7748403307050467,-0.28833434311673045,0.8900030977092683,-0.2713764924556017,0.7854803213849664,0.15940822660923004,-0.051926661282777786,-0.41797370789572597,0.8337777815759182,-0.7761790719814599,0.14444956369698048,-0.3599360450170934,0.2912529557943344,-0.8651957376860082,0.8332517077215016,-0.8559835930354893,-0.8138931300491095,-0.7953082262538373,0.08051049103960395,0.9255476160906255,-0.46379272313788533,-0.03480872930958867,0.9774016868323088,0.6763629084452987,-0.0820335210300982,-0.746705827768892,0.32545752730220556,0.888430186547339,0.27273997152224183,0.4769627768546343,-0.8201106241904199,0.7876069904305041,-0.42369692027568817,0.12451495556160808,-0.07147525250911713,0.872460872400552,-0.08811335917562246,-0.7743874560110271,-0.0927958432585001,0.4766605915501714,-0.038576357532292604,-0.4926291429437697,-0.9917856911197305,-0.8516738619655371,-0.045621971134096384,-0.9550404311157763,-0.8265589345246553,0.6113261538557708,0.8645138312131166,-0.546292947139591,-0.9023305112496018,-0.8727215337567031,-0.098170165438205,0.48005106719210744,0.9532434516586363,0.10861420491710305,-0.47568044578656554,0.26665133330971,-0.20029808208346367,0.027455303352326155,0.8816642328165472,0.1847214912995696,-0.026836674194782972,0.22363211447373033,-0.5998106561601162,-0.8750836192630231,-0.0652558640576899,0.5146468002349138,-0.157454714179039,0.1798473922535777,-0.33919158624485135,-0.4301177207380533,0.17525665322318673,0.7288582934997976,0.06318850768730044,-0.8770474470220506,0.19215654535219073,-0.5479945745319128,-0.06416004989296198,-0.7621900676749647,0.1890757279470563,-0.6896755904890597,-0.6624630764126778,-0.09118260908871889,-0.8656408651731908,-0.04271191544830799,-0.5490985582582653,0.9752383320592344,0.8965648747980595,-0.36106054950505495,0.47053814958781004,-0.5413427418097854,0.5407998212613165,0.47585223196074367,0.9166090013459325,-0.11991393938660622,-0.5751158008351922,0.18473247857764363,-0.42172358743846416,0.1701234639622271,-0.5212503257207572,0.11664322065189481,0.9420994548127055,-0.8188116592355072,-0.9548268518410623,0.31009160121902823,0.5126182301901281,-0.64419817738235,0.8242040327750146,0.2984168897382915,0.9101561009883881,0.22840091725811362,0.9886136958375573,0.03920129453763366,0.9422878650948405,0.812236909288913,0.6162080434150994,-0.3848449499346316,-0.2836690964177251,0.4665315798483789,-0.45666668424382806,-0.8736086930148304,0.5620892127044499,-0.3451904207468033,-0.24620811454951763,-0.22703104186803102,-0.08330453420057893,-0.10045421775430441,-0.7895495253615081,-0.8228727094829082,0.9633810939267278,0.9338089558295906,0.5232139113359153,-0.7733996813185513,0.9838474118150771,0.6752691115252674,0.5619564205408096,-0.5538650578819215,-0.27590219816192985,0.4078577612526715,-0.18600167334079742,0.13778987992554903,-0.4152967077679932,-0.5045099556446075,-0.6548352991230786,0.5668025417253375,-0.790823008865118,-0.6950976983644068,-0.5185131398029625,0.23780309595167637,0.8543331059627235,-0.08008144982159138,0.22000231128185987,0.847335085272789,-0.3415273609571159,0.2176404632627964,0.9021375458687544,0.8263626405969262,0.37951331585645676,0.7617355105467141,-0.7673226590268314,-0.06566712539643049,0.692781665828079,0.3573341388255358,-0.7937880125828087,-0.28545274399220943,0.3404843667522073,0.36163448356091976,-0.5203222846612334,-0.8905027396976948,-0.3105824161320925,0.6283360910601914,-0.9545985348522663,-0.5216228947974741,-0.10806974489241838,0.43761522183194757,-0.6494888393208385,-0.38459008606150746,-0.5729180471971631,0.7427341681905091,-0.5280066700652242,-0.16090653045102954,-0.4973191265016794,0.03860637545585632,0.7003105720505118,0.6236630356870592,0.09688940504565835,-0.4971285560168326,-0.5791025455109775,-0.1045835493132472,0.5460575670003891,-0.5739818601869047,-0.7832251042127609,0.059136764612048864,-0.0038427491672337055,0.9522949275560677,-0.9249682212248445,-0.9292656369507313,0.35700979735702276,0.3416880560107529,-0.30549535946920514,0.895157081540674,0.8849611957557499,0.6664390782825649,-0.0789493122138083,-0.3954316205345094,-0.9540751148015261,-0.5712091918103397,-0.007257035002112389,0.481449032202363,-0.9787593330256641,-0.8415862498804927,-0.16160383401438594,-0.9589005345478654,0.6450277622789145,-0.16410552384331822,0.16139520285651088,-0.24500918947160244,0.04635386215522885,0.3324038148857653,-0.8735706890001893,0.618302361574024,-0.21189959067851305,0.5475703119300306,0.32844803063198924,0.19814883591607213,-0.8441496687009931,-0.8795571764931083,-0.6428464413620532,0.6528510102070868,-0.7741908156313002,0.25174810690805316,0.4278296483680606,-0.7872372390702367,0.061240341514348984,-0.7722867890261114,0.6631903448142111,-0.9194380943663418,-0.750027684494853,0.05567753128707409,-0.8826739327050745,0.6157561955042183,0.6057066577486694,-0.6751571246422827,0.08114532893523574,-0.014773255214095116,-0.533790709450841,0.6701244250871241,0.5057126577012241,-0.8143998789601028,0.17153355153277516,0.6022609225474298,-0.06502236472442746,-0.2985207326710224,-0.25139793334528804,0.3056729440577328,0.013375075533986092,0.9516185778193176,-0.8375064078718424,0.6744775678962469,0.5322397639974952,0.4784060479141772,-0.3621249198913574,0.7784567861817777,0.8247721949592233,0.8460587514564395,-0.9424065044149756,0.2209453214891255,-0.3428312558680773,0.5070385090075433,-0.500525891315192,0.2764502987265587,-0.3416334157809615,0.08744290377944708,0.10237100161612034,-0.7151747029274702,-0.8363687917590141,-0.8231330160051584,0.9656200809404254,0.6610869290307164,0.8225861010141671,0.668183262925595,-0.8956207046285272,-0.035819293931126595,0.8751428127288818,0.03390426421537995,0.8916002418845892,-0.9630180699750781,0.7932953396812081,-0.12564667593687773,-0.030846727080643177,0.6124915205873549,0.46572685381397605,-0.3645409634336829,-0.9477588813751936,-0.03689239360392094,0.3243476692587137,-0.3664121376350522,-0.6222560876049101,-0.5109854261390865,-0.6565323416143656,-0.6373473689891398,-0.7665466740727425,-0.6953642754815519,-0.45974530559033155,-0.2182002100162208,-0.7483340282924473,-0.2991048125550151,-0.3043850273825228,-0.6876315963454545,0.8751552673056722,-0.25012400513514876,-0.9927938701584935,0.9866042346693575,-0.8109263810329139,0.9508498627692461,0.12790758907794952,0.20540422713384032,-0.42619732953608036,-0.9651474873535335,-0.23283936269581318,-0.6077277553267777,-0.33514207787811756,0.447817487642169,0.6483062142506242,0.24454903090372682,-0.6793204601854086,0.1397650553844869,0.4110872931778431,0.6887350855395198,0.07861943356692791,-0.6635692450217903,0.016542003955692053,0.07930344110354781,0.8412228971719742,-0.976667657494545,-0.051873574033379555,-0.8490471509285271,-0.48192833038046956,-0.3325741495937109,0.8037418317981064,-0.4916738332249224,0.04640061082318425,-0.06374020408838987,0.18151435256004333,-0.09980419697239995,-0.5578029188327491,-0.2376249199733138,-0.3771228906698525,0.6351299230009317,0.668155012652278,0.39500532671809196,-0.4051042478531599,-0.9426552159711719,0.13001376017928123,-0.5228993250057101,0.22599570453166962,-0.01237688073888421,-0.3536575282923877,0.9695255076512694,0.033402043860405684,0.7199344397522509,0.8025735300034285,0.7940992703661323,-0.39936314476653934,0.4867414371110499,0.08710946841165423,0.4227534797973931,0.49182571610435843,0.028669836465269327,-0.9697179510258138,-0.4914545086212456,0.3701268984004855,0.936178632080555,-0.317490397952497,0.5136480960063636,-0.9140488761477172,-0.8494318127632141,0.7140526198782027,-0.25507770851254463,-0.31519734114408493,0.6816767132841051,-0.5599302854388952,0.5966767496429384,-0.5244867885485291,0.8285915874876082,0.15760144405066967,-0.5460717068053782,-0.1960151633247733,-0.45781466318294406,0.05316700832918286,-0.2776423399336636,-0.8102946178987622,-0.14475227054208517,-0.9632456675171852,0.33723281510174274,-0.12123265536502004,-0.7811932531185448,-0.07759732380509377,0.4342641797848046,0.08080463204532862,0.5848472178913653,0.09884345671162009,0.382810452952981,0.32376379054039717,0.27345173619687557,-0.8890945571474731,-0.3555504814721644,0.36581891821697354,-0.8999145813286304,-0.38025173358619213,-0.19585108291357756,-0.6439708424732089,-0.7274993262253702,-0.8872640724293888,-0.35686398576945066,-0.31150351325049996,0.9030429483391345,0.7060017827898264,0.21416274830698967,-0.4065776327624917,0.557979604229331,0.512065242510289,0.11960310954600573,0.9585940199904144,0.43344824109226465,-0.5936039332300425,0.022707120049744844,-0.9576947940513492,-0.06515309680253267,-0.8543194900266826,0.628151947632432,-0.5932816755957901,-0.34945834148675203,0.733190287835896,-0.6558264596387744,0.8988543427549303,0.9503417331725359,-0.3757401695474982,-0.3945796759799123,0.8827400729060173,0.48157225269824266,0.48942107427865267,0.1312775299884379,-0.6395304049365222,0.21979621471837163,0.6212050491012633,-0.2795210387557745,-0.3309327340684831,-0.8085109633393586,-0.22920239018276334,0.46886188397184014,0.7927351198159158,-0.5874995184130967,-0.47717318776994944,-0.12385162198916078,0.6592982192523777,-0.48762626061215997,-0.4027425958774984,-0.021810298319905996,0.43336011515930295,0.6086325156502426,-0.39801240153610706,-0.24917455157265067,0.5246671256609261,0.37530838837847114,-0.5397240458987653,-0.49153934326022863,0.6215012725442648,-0.7581900879740715,-0.18788352143019438,0.9588738051243126,0.635777244810015,-0.17512708250433207,0.5987251000478864,0.03287840960547328,-0.0727871092967689,-0.36149537470191717,-0.15958719374611974,0.4020265177823603,-0.7582058724947274,-0.3225521882995963,-0.038014006800949574,0.11195305455476046,0.9862402519211173,-0.49344466906040907,-0.21275706216692924,-0.7448684051632881,0.39224623516201973,-0.3683740720152855,-0.566998858936131,-0.4809514437802136,0.5424798056483269,0.5284259975887835,-0.8718216456472874,0.6548560801893473,-0.9985866053029895,-0.34359146608039737,-0.6957349954172969,-0.5505361584946513,-0.11440356727689505,0.7322781295515597,0.43896351801231503,0.833168797660619,-0.6832930804230273,0.9461809424683452,-0.7528732009232044,0.8319933852180839,-0.5598580585792661,-0.38166181836277246,0.5977546777576208,-0.3229547431692481,0.6695223129354417,-0.8498199451714754,0.5623701559379697,0.6749037560075521,-0.37224570428952575,-0.991991825401783,0.24651564611122012,-0.30084358900785446,-0.272809034679085,0.6104022464714944,-0.4302114387974143,-0.8072008448652923,0.08444932708516717,-0.753888045437634,-0.14752401737496257,0.7159452135674655,0.5112703475169837,-0.3842039373703301,0.7715377039276063,-0.7264068475924432,-0.6063019004650414,0.48872803058475256,0.7492591980844736,-0.2715452676638961,0.34963881503790617,0.4287769580259919,0.5595343289896846,0.616946879774332,-0.9353173989802599,0.8234044080600142,-0.03302614204585552,0.7524868082255125,0.01403407333418727,-0.9688542783260345,0.3570086802355945,-0.9119809274561703,0.9610184682533145,0.37010774901136756,0.4662910755723715,-0.23014987912029028,0.006270513869822025,0.22044482827186584,0.24030826753005385,0.13022600812837481,0.021503476426005363,-0.731374189723283,0.007329675368964672,-0.43126844242215157,0.5822889604605734,0.6990093630738556,-0.8741790968924761,0.5729512791149318,-0.8352331053465605,-0.6345876189880073,0.0031744432635605335,-0.6121107852086425,-0.7479220069944859,0.3202173374593258,-0.14461235562339425,-0.12511584209278226,-0.22349040070548654,-0.09608017094433308,-0.9735019314102829,-0.8052401174791157,-0.6005180701613426,-0.629073812160641,0.05259293969720602,-0.2908836859278381,0.2097274949774146,-0.008936183527112007,-0.05765820387750864,0.4025885765440762,0.3372136880643666,0.16003788029775023,-0.7107287375256419,0.5255099339410663,0.5430319337174296,0.37265011854469776,0.8927826313301921,-0.02915394864976406,-0.9101981702260673,-0.568820389918983,0.41623277263715863,-0.8491138992831111,0.4264005711302161,-0.285623568110168,-0.2953512603417039,-0.8442293968982995,-0.1224047807045281,0.46686379006132483,0.14131305925548077,-0.47344511607661843,0.3008704762905836,0.1320959753356874,0.11208077566698194,-0.8214949434623122,-0.47632434125989676,-0.9650395158678293,0.16935791354626417,-0.4294684585183859,0.6721459389664233,0.41586198890581727,-0.9102011378854513,-0.24187602009624243,0.8101764204911888,-0.3729541078209877,-0.9367283252067864,0.15410836087539792,-0.09555196296423674,0.6778971268795431,0.7845168504863977,0.542959978338331,0.7385959220118821,0.06069807428866625,-0.6297938013449311,-0.8989490321837366,-0.4025694811716676,0.15342988865450025,0.9381698477081954,-0.7080943086184561,-0.9663445097394288,-0.4505646685138345,-0.07715873094275594,-0.8973794104531407,0.258205852471292,0.40941854240372777,0.6439729444682598,0.7268978608772159,-0.23075975058600307,-0.7299966579303145,0.06843868037685752,-0.6750267487950623,-0.04144899966195226,-0.5206272420473397,-0.6249461760744452,0.35148862563073635,0.6669141263701022,-0.8121140808798373,-0.6665783911012113,0.21399428602308035,-0.27491899440065026,-0.9570332136936486,-0.02157921902835369,0.9570130347274244,0.26230453606694937,0.6068779425695539,-0.10864168033003807,0.9801890081726015,0.26601557433605194,0.375445534940809,-0.6525348257273436,-0.5610728659667075,0.04394438723102212,-0.715333744417876,-0.4025795836932957,-0.8535202974453568,-0.5916616315953434,-0.8305007540620863,0.3823294537141919,0.022708128206431866,0.04107725992798805,0.061665454879403114,0.06945653166621923,-0.7040929384529591,0.9932979587465525,0.5292722531594336,0.9274930041283369,-0.7455484424717724,-0.4583389349281788,-0.45023210253566504,-0.037126257084310055,0.16408912697806954,-0.05408367561176419,0.49737787898629904,-0.5885930056683719,-0.8673451137728989,-0.6412860760465264,-0.2062724200077355,0.9245582069270313,-0.9928867537528276,0.931988786906004,0.22316633397713304,0.5525002228096128,-0.04996570758521557,-0.6243270402774215,-0.48405140032991767,-0.4388594077900052,0.887651558034122,-0.8155475426465273,-0.6417219485156238,-0.9926031613722444,-0.44237100472673774,0.6563339391723275,0.22789590433239937,-0.9666088409721851,0.7847457914613187,0.7955246912315488,0.5407577706500888,0.6477560484781861,-0.7179798018187284,0.052942893002182245,-0.2149854782037437,0.157231112010777,0.12732591899111867,-0.8260202906094491,0.4383832165040076,0.3984635444357991,-0.6388879204168916,-0.7077156798914075,-0.16656525433063507,-0.9713857220485806,0.4778844560496509,-0.9090961865149438,0.49597955914214253,-0.253826467320323,-0.8627752074971795,0.2566552017815411,0.47028866317123175,-0.655353607609868,-0.9229843383654952,-0.12689250148832798,0.634336403105408,-0.7898239414207637,0.22243661060929298,0.5905378591269255,0.27912958711385727,-0.15648048743605614,0.923558902926743,-0.41874036425724626,0.40260238852351904,-0.7826738087460399,0.27448452170938253,0.847175866831094,0.4248297535814345,-0.38356410386040807,0.5838647792115808,-0.11009692633524537,0.8988124798052013,0.02846122393384576,-0.6012889808043838,-0.16011306922882795,-0.2978003043681383,-0.19298951933160424,-0.5420665619894862,0.3271090346388519,-0.5100277056917548,0.4062754064798355,0.03252498432993889,-0.0889218426309526,0.5138808423653245,0.9341370491310954,-0.5931534837000072,-0.9587100958451629,0.22685858188197017,0.53831842308864,0.5311490981839597,0.7590341852046549,-0.4824652601964772,-0.8101567877456546,-0.2615943527780473,0.3299159789457917,-0.6489363322034478,-0.5380828096531332,0.5950789451599121,-0.40619257977232337,0.48579991701990366,-0.5581109435297549,0.28850104473531246,-0.5549965724349022,0.29437228897586465,0.26766069140285254,0.0025607827119529247,0.2923862971365452,0.42491522477939725,0.1954235634766519,-0.12557106092572212,0.8927525077015162,-0.5901841227896512,-0.37168381037190557,-0.40106690116226673,-0.4176388937048614,0.18248257040977478,0.400628078263253,-0.3150273747742176,0.26884018164128065,-0.03580833738669753,-0.32004303578287363,0.14451736118644476,-0.5835424303077161,-0.6210614484734833,0.9835651991888881,-0.20047184452414513,-0.1774838464334607,0.49432566948235035,-0.2830511685460806,-0.8869922175072134,0.31303055491298437,0.22198802791535854,-0.2739128079265356,-0.45643098652362823,0.7260864349082112,-0.546656318474561,0.6532113519497216,-0.13522468507289886,-0.9437758713029325,0.12519462639465928,-0.27430199598893523,-0.3623043578118086,0.717692029196769,-0.2550748884677887,0.2119734757579863,-0.5538015640340745,0.6975336424075067,0.08839385025203228,-0.907978764269501,-0.5174080338329077,-0.8307928591966629,-0.6792011721991003,-0.8121774205937982,-0.5797488926909864,0.36850124690681696,0.2350517325103283,-0.13647016929462552,0.3886899002827704,-0.2063260986469686,-0.10523444041609764,-0.9393546222709119,0.6006516646593809,-0.8084100880660117,-0.8929880997166038,0.17294088937342167,-0.8597983149811625,0.22740253992378712,-0.6553480965085328,-0.0008000419475138187,0.8574004415422678,-0.735856072511524,0.9708019513636827,0.090694485232234,-0.18469099467620254,-0.5709046549163759,-0.5225520059466362,0.7618132070638239,-0.545624305959791,0.5871776803396642,0.02099314099177718,-0.7854501861147583,0.6863205027766526,-0.8909596265293658,0.20817550411447883,-0.048514791298657656,-0.43251181906089187,0.9195191767066717,-0.06227226322516799,0.5636519594117999,-0.37306728633120656,0.3114048168063164,0.014098784886300564,0.5064050732180476,-0.3882398344576359,0.8337696101516485,0.5622343877330422,0.6537059037946165,0.7222739215940237,0.37864661635831,0.4640116444788873,0.7402828396297991,0.30265485122799873,-0.1358028524555266,-0.4950959412381053,0.821273997426033,0.6812421651557088,0.3808178030885756,0.9297390002757311,-0.27986342227086425,-0.3794689648784697,0.009882199577987194,0.8169916882179677,-0.05099774291738868,-0.30087289260700345,0.3577212034724653,-0.38484232034534216,-0.24008865328505635,-0.24542678846046329,-0.5751116131432354,0.48264828231185675,0.9214926068671048,0.005297570023685694,-0.03814285667613149,-0.6654496034607291,0.8482607621699572,0.782721312250942,0.3612231304869056,0.9425844186916947,0.9481562660075724,0.24006110429763794,0.47967581218108535,0.7311781635507941,0.12938661919906735,-0.7556901616044343,-0.5202669654972851,-0.12486823322251439,0.2907178667373955,-0.31886461190879345,0.2839422351680696,-0.09212245652452111,-0.36885688453912735,-0.13118360936641693,-0.7719385279342532,0.850449597928673,-0.48589189210906625,0.4702792405150831,-0.5016816551797092,0.3801220888271928,-0.5130352373234928,-0.5600657192990184,-0.7639422393403947,0.6460770769044757,0.5136463870294392,-0.8975051771849394,-0.507166750729084,-0.4535933956503868,-0.16476588370278478,-0.690380148589611,-0.6608247836120427,0.8751577185466886,0.2029092963784933,0.9523605923168361,-0.5968059338629246,0.9483854258432984,0.2969370912760496,-0.8153319982811809,-0.8201878797262907,-0.9175156778655946,0.13887333311140537,-0.5703205759637058,0.4696921748109162,-0.7588557498529553,0.9927621688693762,-0.7003416335210204,-0.29637132259085774,0.7885679849423468,-0.04483802476897836,-0.1409862251020968,0.33552377484738827,-0.9645678759552538,-0.48541117226704955,-0.9158355239778757,0.2720421487465501,-0.20715663162991405,0.44499425683170557,-0.453231867402792,-0.7954689543694258,0.47089528711512685,0.08969240868464112,0.14704605797305703,-0.6428710641339421,0.9127298393286765,0.5870401728898287,-0.3277195789851248,0.03859897097572684,-0.7896486823447049,-0.91873122099787,0.7105921446345747,0.401599348988384,0.6995951943099499,0.6588039919734001,0.3957770620472729,-0.5649790754541755,-0.4557830258272588,0.8948508729226887,-0.42527139373123646,-0.5002234876155853,-0.25591723062098026,-0.9226870969869196,-0.31630728812888265,0.9476364715956151,-0.9968534703366458,-0.0581209366209805,0.22461952362209558,0.4760948633775115,0.791511713527143,-0.584753604605794,-0.3129529529251158,-0.3656476619653404,-0.5525454469025135,-0.740142319817096,-0.5424386626109481,0.7986172786913812,0.11510814726352692,0.42560675693675876,-0.2094314587302506,-0.916035923641175,0.9962114077061415,-0.4434028728865087,-0.6525778993964195,0.40351652354002,0.8575749569572508,0.6171504547819495,-0.5970781305804849,-0.2873482224531472,-0.10215844959020615,0.22278520092368126,0.12999002309516072,0.7323007141239941,0.45686540473252535,0.618661776650697,0.30020817136392,0.3997610881924629,-0.3981691123917699,-0.21281588543206453,0.10014812694862485,-0.7351439632475376,-0.8016328024677932,-0.7576436214148998,0.8976939613930881,-0.8240689132362604,-0.25379447219893336,-0.8196945497766137,0.24911546241492033,0.9712282749824226,-0.6739951162599027,-0.5118246763013303,0.16064411215484142,0.8209463497623801,0.5648607183247805,0.4710901048965752,-0.24511586828157306,0.23280090698972344,-0.46161317778751254,0.20053515676409006,0.008318083826452494,0.3059497461654246,0.6138963648118079,0.7251530583016574,0.8265440915711224,-0.7782183103263378,0.6241781269200146,0.4496721406467259,-0.1004828680306673,-0.6829336793161929,-0.029876980930566788,-0.9309437843039632,-0.4008420994505286,-0.8651416604407132,-0.803229529876262,-0.23188235005363822,0.659007023088634,-0.8588912929408252,0.013507181778550148,-0.8052576086483896,-0.6394736366346478,0.9286345164291561,-0.13895698869600892,0.050992464646697044,0.6771172629669309,-0.2894428800791502,0.11337368236854672,-0.37353498488664627,0.44288230314850807,-0.11523985816165805,-0.14662646362558007,-0.9656537692062557,-0.48184193670749664,0.9558242810890079,-0.07313256710767746,0.7858479330316186,0.9807385373860598,-0.4484841013327241,0.3875022688880563,0.7659159163013101,0.4427905287593603,0.72126141237095,-0.8821234572678804,0.2580747604370117,0.23579960269853473,-0.10989145888015628,0.7619444839656353,0.9200510354712605,0.7900163535960019,0.8634005100466311,-0.09296912606805563,-0.6918599237687886,-0.04901273176074028,0.18723530182614923,-0.2942561339586973,0.3655599872581661,-0.14601158536970615,0.7210519323125482,0.50883824005723,0.9128438113257289,-0.930491273291409,0.696287686470896,0.9821006190031767,-0.304553649853915,0.7898479946888983,-0.14599147252738476,0.5433361027389765,0.057741583324968815,0.5679841889068484,-0.3945226427167654,-0.07212318805977702,0.049018765334039927,-0.7363290195353329,-0.706927034072578,0.30835925973951817,-0.6427435972727835,-0.8226287495344877,-0.5516672343946993,-0.4745477018877864,0.2596784741617739,-0.10651582479476929,-0.8828807729296386,-0.19337454019114375,-0.977545213419944,0.7233579694293439,0.7105358350090683,-0.11471666814759374,0.655674462672323,0.49600785272195935,0.09679256612434983,0.4305977108888328,0.6309329988434911,0.004612952470779419,0.03624990954995155,0.6821538996882737,0.06175913102924824,-0.8658883376047015,0.8123036846518517,0.6525173131376505,0.7380898860283196,0.9342446406371891,-0.26079495111480355,-0.23346204310655594,-0.17593625001609325,-0.38569081062451005,0.5758292255923152,-0.49287248915061355,-0.7154836179688573,-0.12340727541595697,0.25244084373116493,-0.13433899218216538,-0.3878374258056283,-0.9026833181269467,-0.9202664336189628,0.5977360690012574,-0.44620338873937726,-0.7556776404380798,0.14382117614150047,0.8453408624045551,-0.3012664052657783,-0.5629154546186328,0.810073078610003,-0.8998571150004864,-0.1965538403019309,-0.050804412458091974,-0.025753622874617577,-0.7799995467066765,0.15616777492687106,-0.9054894824512303,-0.35870868619531393,0.4555206708610058,0.11370100500062108,0.9150540814734995,0.6020199535414577,0.7847792161628604,-0.4626604551449418,0.12258195970207453,-0.7892390466295183,-0.8574690036475658,0.44972570380195975,0.5452969074249268,-0.7743023782968521,0.006126547697931528,0.010503290221095085,-0.3127692989073694,-0.4464431721717119,0.059749895706772804,0.8784250966273248,-0.6520273387432098,-0.19792839512228966,-0.028122106567025185,-0.01288358261808753,-0.2551084952428937,0.9713985435664654,0.7664422020316124,-0.17001322004944086,0.8880842686630785,0.9871403900906444,0.9349303217604756,-0.20606975397095084,0.26064138719812036,-0.7490768213756382,-0.09332156600430608,0.8372289300896227,0.42355246003717184,-0.7082364819943905,-0.2781212627887726,0.15570195950567722,-0.6941746887750924,-0.7732399958185852,-0.6296208598650992,0.8648447333835065,-0.13163032289594412,0.3566632717847824,-0.011775665450841188,0.9083086526952684,-0.6308750570751727,0.2880994342267513,0.23628461407497525,-0.9196372875012457,0.5202458682470024,-0.02216423163190484,-0.7133399057202041,-0.1446549347601831,-0.08655787678435445,-0.6878923731856048,0.9940125183202326,0.2541365325450897,-0.4153993548825383,0.4017993868328631,0.9818207668140531,0.9683239790610969,-0.09686657693237066,0.14326214790344238,-0.22664354648441076,-0.4144662218168378,0.9823966319672763,0.08246055524796247,-0.8021661574020982,-0.8649757960811257,0.8335508252494037,-0.7919510542415082,0.7609508489258587,0.0656872340478003,-0.6701940651983023,0.15208625281229615,-0.13141528749838471,0.6456050807610154,0.4005894181318581,-0.5294432202354074,-0.15576963499188423,0.05525529570877552,0.11941137490794063,0.5260120872408152,0.4288573991507292,0.9292588881216943,0.6893766890279949,0.1673201397061348,-0.7391327847726643,-0.07040592422708869,0.16231802105903625,0.48175672302022576,-0.20465211011469364,-0.9065630338154733,0.8758139247074723,-0.4758667000569403,-0.6625080741941929,0.6999955563805997,-0.9097875906154513,-0.5973944878205657,-0.39280040794983506,-0.3969766963273287,0.5960363368503749,0.9219996957108378,-0.44789453502744436,-0.34300551004707813,-0.27029281156137586,0.6935799480415881,0.9421418677084148,-0.9383979416452348,0.974599089473486,-0.41111684357747436,0.07550594210624695,-0.15962570486590266,-0.21467153914272785,-0.3020474030636251,-0.9118873779661953,0.8561302330344915,-0.27013789396733046,-0.964892684482038,0.5604800237342715,0.594770775642246,0.8884679679758847,0.23598091583698988,0.8770024310797453,0.4951991206035018,0.5980040594004095,0.9572216286323965,0.26092129154130816,-0.5608235844410956,0.5496661458164454,0.9849965907633305,-0.33020065957680345,-0.17449764255434275,0.04430149728432298,0.7324234084226191,0.033661430701613426,0.7533623492345214,-0.3574780779890716,0.24475639965385199,0.40917604323476553,-0.670385954901576,-0.690652207005769,-0.09139711735770106,-0.9296483052894473,-0.21435277722775936,0.9867577939294279,0.3288100613281131,-0.14943748386576772,0.7406665533781052,0.4100135359913111,-0.10179317742586136,-0.6248535234481096,0.30296640284359455,0.9563192054629326,0.1759976795874536,-0.27111627301201224,-0.25741334119811654,0.8418017555959523,0.5764501937665045,-0.35610982589423656,0.8674548580311239,-0.08769562467932701,-0.40759576950222254,0.3185764318332076,0.36962559865787625,-0.3952911221422255,-0.9922461872920394,0.5378428632393479,-0.9758557500317693,0.9817503285594285,-0.7005758187733591,-0.15228505106642842,-0.4546386720612645,0.7481923126615584,-0.5545809450559318,-0.7680654972791672,0.08063360536471009,-0.2354087163694203,-0.9221353931352496,-0.8192925876937807,0.15139785269275308,-0.1557214893400669,0.9215273903682828,0.37456605257466435,0.2885713689029217,-0.2802267405204475,0.7141807773150504,-0.8308722376823425,0.2305221543647349,0.6284142732620239,0.7850790251977742,-0.8097898415289819,0.759889951441437,-0.03414295054972172,-0.09383584698662162,0.9076479314826429,0.9366765823215246,-0.13764202129095793,0.5417283144779503,-0.03786737332120538,0.06976040499284863,0.5885266410186887,0.6615898488089442,0.42806173767894506,-0.43695077393203974,0.48716688714921474,0.939695443958044,0.18679142463952303,-0.6665695509873331,0.36082460079342127,0.8075619009323418,-0.5325099425390363,-0.5468859067186713,-0.5768310828134418,0.1756589380092919,-0.7909229379147291,-0.6821185746230185,-0.5668645603582263,0.30207007797434926,0.1371338265016675,0.4739606627263129,-0.6512318281456828,-0.651416742708534,0.9099359544925392,0.627208377700299,-0.8175611710175872,-0.5134641816839576,0.9582622018642724,0.7000752319581807,-0.7663436201401055,0.511853692587465,0.538601472042501,0.4463226404041052,-0.43911698507145047,0.8166609089821577,0.732710737735033,0.05332545889541507,-0.1258759000338614,-0.04748993832617998,-0.04906660597771406,0.570030439645052,-0.057265940587967634,-0.8975900462828577,0.4915300668217242,0.27641509287059307,0.4399137366563082,0.988938638009131,-0.88771300483495,-0.555003734305501,-0.5707969455979764,-0.9885512520559132,-0.18650425737723708,0.11031011817976832,-0.7342029237188399,-0.5352674298919737,-0.8436552439816296,-0.4552664775401354,-0.8245872054249048,0.25071257539093494,-0.16170808160677552,0.5202821139246225,0.7929379474371672,-0.9864011132158339,0.7986812936142087,0.16535013960674405,0.9067534869536757,0.5850811442360282,-0.7653498970903456,0.26575838727876544,0.3592252926900983,0.6450554649345577,0.8658706196583807,0.4520012070424855,-0.020938582252711058,-0.343208740465343,-0.6596755832433701,-0.16121332626789808,-0.2551379017531872,0.6902298163622618,0.3760710102505982,0.30575550720095634,0.94009093567729,0.5457430849783123,-0.5768945459276438,-0.211353394202888,0.8427143595181406,-0.20700911758467555,-0.656804985832423,0.30311733996495605,-0.18760767579078674,-0.017392870038747787,0.4078026204369962,-0.5469651371240616,-0.25650617852807045,-0.3894395404495299,-0.8827090412378311,-0.5167888035066426,-0.004137665033340454,0.6979956701397896,-0.41227843426167965,-0.5125435926020145,-0.5255608540028334,0.6323242685757577,0.9661588869057596,-0.39761637384071946,0.0492051369510591,-0.9983978024683893,0.5154294236563146,0.49291837215423584,0.1843627728521824,-0.1113602900877595,0.4954474736005068,-0.43881471501663327,0.5997286434285343,0.942092068027705,0.042062487453222275,0.25708675757050514,0.33553842874243855,0.367010329850018,-0.8254066947847605,-0.7065576533786952,0.5053574503399432,-0.10541462944820523,-0.43700538389384747,-0.11219276487827301,0.8480855626985431,-0.10182638606056571,-0.055036962032318115,0.3887230744585395,0.7865311843343079,-0.8185909916646779,0.07534315623342991,-0.1807824680581689,-0.7465704716742039,0.7230693739838898,-0.9522924022749066,0.3187539563514292,-0.007972085382789373,0.5390431019477546,0.5203909948468208,0.0523591791279614,-0.020057941786944866,0.05993330432102084,-0.3823173474520445,0.5571722853928804,-0.3902522409334779,-0.6357582090422511,-0.14480293588712811,0.2711083912290633,-0.6696708421222866,0.6775296744890511,-0.23064643889665604,-0.4006821974180639,-0.7498288042843342,-0.9628721554763615,0.509905437938869,0.46293130703270435,-0.8007244621403515,-0.3957790923304856,0.09930478688329458,0.9047750537283719,0.3565251878462732,0.5895614377222955,0.7598438807763159,-0.46094805654138327,-0.4908928913064301,0.8774185045622289,-0.14685430051758885,-0.3537253839895129,0.6378004555590451,0.6897252341732383,0.15045387670397758,0.06309491535648704,0.365714724175632,-0.60508979158476,-0.8822868131101131,-0.9281015582382679,0.2104129558429122,-0.5769601776264608,0.9567271266132593,-0.8911715745925903,-0.41389729734510183,0.10660265665501356,0.7876069201156497,-0.11625609919428825,-0.3251153896562755,0.8252292373217642,0.5065728593617678,-0.12167713465169072,0.8561945734545588,0.6978159318678081,0.2306105885654688,-0.7101905848830938,0.04405383765697479,-0.473830983042717,0.2748441803269088,-0.03565497184172273,-0.14967952528968453,-0.10951910028234124,-0.3640550849959254,0.059147813357412815,0.8459031996317208,-0.8004492498002946,-0.5522096701897681,-0.5280734002590179,0.6974762924946845,-0.0786773762665689,0.3104805243201554,-0.9631840279325843,-0.7945909146219492,0.33433694718405604,-0.2423526905477047,-0.42536432249471545,-0.9725698698312044,-0.9404842127114534,-0.6587333544157445,-0.48328650230541825,0.06095979455858469,0.4694570731371641,0.30306490883231163,0.7882453952915967,0.655239487066865,0.8248241916298866,-0.8423959785141051,0.07591638993471861,-0.855416193138808,0.4988566190004349,-0.681785061955452,0.6362681058235466,0.24901233287528157,0.34576597390696406,-0.49089943151921034,-0.9676363645121455,-0.8547156727872789,-0.9200594513677061,0.8230654466897249,0.6254114303737879,0.660774708725512,-0.5881160353310406,0.9290617690421641,0.8658103859052062,-0.343743366189301,-0.5064453133381903,-0.7049293844029307,-0.6390309855341911,0.5975145162083209,-0.0600063051097095,0.30264340341091156,-0.3229287089779973,-0.6901460886001587,0.49548765970394015,-0.6255252882838249,0.898839243222028,-0.16534241801127791,-0.48767595225945115,-0.22203349694609642,0.780657154507935,0.482413861900568,-0.33201853139325976,0.38972075609490275,-0.686560136731714,0.5867581577040255,-0.5401977328583598,-0.7920036450959742,-0.7677947576157749,-0.4827673635445535,-0.11948130233213305,0.4302960387431085,0.6754911239258945,0.8962821085005999,-0.357681083958596,-0.9098854241892695,-0.08086830005049706,-0.04505078541114926,0.8500714814290404,0.6485446561127901,-0.09533627424389124,0.08397438563406467,-0.5582745457068086,-0.36144798528403044,-0.5761112966574728,0.9400845100171864,-0.031097985804080963,0.8740292647853494,-0.5004663318395615,-0.5958990999497473,0.5484614153392613,0.8457266879267991,-0.3567523490637541,0.20593076245859265,-0.7479264363646507,-0.15244454517960548,-0.44555099168792367,0.49276847299188375,0.9016551580280066,-0.5681160832755268,-0.44159506680443883,-0.618656569160521,0.3142801593057811,-0.1716986489482224,0.2126163374632597,0.4333855789154768,-0.1311675040051341,0.4936312404461205,-0.2779789208434522,0.5961187602952123,0.7332849823869765,0.024656793102622032,0.41956495121121407,0.24502565246075392,0.5087320269085467,-0.8467150912620127,-0.6065102573484182,-0.9067756850272417,-0.34791658679023385,0.08215777622535825,-0.473123153205961,0.26535192457959056,0.7049716399051249,-0.3886027932167053,-0.26806707587093115,-0.8610472767613828,0.916487249545753,0.7364633483812213,0.6807310599833727,-0.25645141396671534,-0.9880242254585028,0.417659024707973,0.38626486668363214,-0.07075016759335995,0.0768020018003881,0.0002462640404701233,-0.34170095017179847,0.3756381864659488,-0.43099104845896363,-0.8823390514589846,0.5844677113927901,-0.20498377038165927,-0.6089225229807198,0.8167601278983057,0.20956432772800326,-0.2815692531876266,0.5436942945234478,-0.24246216332539916,0.7654585936106741,-0.4006351623684168,-0.7768874373286963,-0.35183588694781065,0.5767792169936001,-0.3155748322606087,0.7004503160715103,0.48134377505630255,-0.6164073892869055,0.5605415152385831,0.9930956210009754,0.04639034532010555,-0.7490833043120801,0.5542763024568558,0.7583008748479187,0.42257619136944413,0.47718257131055,-0.6334383194334805,0.20369402691721916,0.2611838304437697,-0.1753714862279594,-0.34508586348965764,-0.8024695399217308,-0.6128976065665483,0.09927213285118341,0.9036406548693776,-0.6525365356355906,-0.44309991458430886,-0.6893951008096337,-0.9490107204765081,-0.1249822354875505,-0.649545201100409,-0.853053908329457,-0.08567882748320699,-0.742342852987349,-0.2318212753161788,-0.3761421977542341,0.9432688872329891,-0.7264975993894041,-0.007253827061504126,0.46356634888798,0.8544286931864917,-0.3206813260912895,-0.8883260856382549,0.17972907237708569,0.6365765812806785,-0.25445685302838683,-0.9588345973752439,-0.7445736634545028,0.30703591369092464,0.8612546543590724,0.48052804358303547,-0.8638780303299427,-0.3041386897675693,-0.9560380028560758,-0.4185898951254785,0.08809839887544513,0.48223506240174174,-0.48734284611418843,0.3100198460742831,0.18576117791235447,-0.6771174296736717,0.5424545663408935,0.7206753431819379,-0.8009534641169012,-0.5151258008554578,-0.7194454031996429,-0.648099762853235,0.4257298787124455,0.39994435105472803,0.12160286074504256,-0.08154544373974204,-0.4581318781711161,-0.9940361748449504,-0.4009868400171399,-0.433833041228354,0.18530357768759131,0.6367899184115231,0.5171403512358665,0.38602575473487377,-0.1767887007445097,-0.2175620929338038,0.11205415334552526,-0.5949837332591414,0.21880340995267034,0.13314001634716988,0.33606777619570494,-0.21328523522242904,0.9742337390780449,0.5529598933644593,0.4278964917175472,-0.3970353752374649,-0.6542398640885949,-0.9569294368848205,-0.09942380804568529,0.17459354689344764,0.7726576942950487,-0.8372060260735452,0.27872474072501063,0.8228153605014086,-0.8525338424369693,-0.17098412057384849,0.4004078172147274,-0.08347861422225833,0.0348434392362833,0.49921500496566296,0.044537113048136234,0.7218462629243731,-0.5527897505089641,-0.7682172595523298,-0.8189992876723409,-0.925208855420351,0.19047352578490973,-0.05609012767672539,0.8512761979363859,-0.7876545167528093,0.21184963174164295,0.37985513359308243,-0.9165181708522141,-0.1734898779541254,0.8862499669194221,-0.535273699555546,0.9283396736718714,0.746161088347435,0.20985316764563322,-0.2825382174924016,-0.3806041544303298,-0.11211008485406637,0.8544456246308982,-0.6945936819538474,0.14390936121344566,-0.7864135717973113,-0.421624886803329,-0.583596212323755,-0.11743798479437828,0.6452303105033934,-0.052646427415311337,-0.33743082405999303,-0.7336027617566288,-0.14287722064182162,-0.7932535842992365,-0.623953016474843,0.06659031612798572,0.5935304029844701,0.7629397115670145,0.8661328642629087,0.6160032958723605,-0.42837839806452394,0.9452976249158382,-0.9347205264493823,0.9054053826257586,0.2795727886259556,0.7777778673917055,-0.5681226849555969,0.8795426865108311,-0.2619653712026775,0.40346537297591567,0.6359079102985561,0.10946930991485715,-0.6738617601804435,0.9901615367271006,-0.4487285362556577,0.8062774008139968,-0.45324091287329793,-0.12596163153648376,0.689974210690707,-0.4562649931758642,-0.05504782870411873,0.4631265443749726,0.7436329880729318,0.23506110440939665,0.8150922297500074,0.5363626545295119,0.17860730970278382,0.9522044956684113,-0.3265299261547625,-0.6860232232138515,-0.27587045077234507,-0.2951109120622277,-0.05112802144140005,-0.7160990191623569,0.8514372440986335,-0.2811013148166239,-0.9235817329026759,0.6911330660805106,-0.32057985104620457,0.1923209042288363,0.577305881306529,0.6828381652012467,0.44540518522262573,-0.6466707810759544,-0.28274278435856104,0.0459039811976254,-0.1530555821955204,-0.4092393983155489,0.04650242580100894,-0.18075242079794407,0.44687755731865764,0.4783260482363403,0.006014992017298937,0.09842923050746322,-0.46796733047813177,-0.84255664749071,-0.5506738242693245,-0.15586300194263458,0.9887606636621058,0.6411305097863078,0.6540133352391422,-0.8987185712903738,0.5054805534891784,0.5426268596202135,-0.0976636428385973,-0.22622707206755877,0.16827443661168218,-0.3462759512476623,0.5615994739346206,-0.7776479269377887,0.1847776109352708,-0.9121239297091961,-0.42279725428670645,0.023010473232716322,-0.8876873641274869,0.01683375844731927,-0.24904147116467357,0.8187245456501842,-0.8694103863090277,0.33348341891542077,-0.7259129574522376,-0.653388534206897,0.89356226939708,0.7139437557198107,-0.8067634957842529,0.5485726892948151,0.8722145417705178,0.5770775680430233,-0.07387976534664631,-0.18441190710291266,-0.9485843903385103,-0.5471695945598185,0.5801247302442789,0.40151588851585984,0.23572543589398265,-0.3980175298638642,-0.4302348168566823,0.91943034902215,-0.2666189898736775,0.7209768872708082,0.033051651902496815,-0.6989873121492565,-0.0801532156765461,-0.6856363471597433,0.7178767835721374,0.42616903223097324,-0.1617002012208104,-0.426613031886518,0.43531714053824544,0.4606131464242935,-0.3833176176995039,0.11569870123639703,-0.14084573602303863,0.20871644327417016,0.4440199970267713,-0.9780466058291495,-0.04611560609191656,-0.33205682737752795,0.8020910760387778,0.8951752693392336,-0.32130120787769556,0.3308315360918641,-0.8051122967153788,0.39142772462219,0.4952037609182298,0.6220150091685355,-0.3258000956848264,0.20157769368961453,-0.6353201759047806,-0.38282870640978217,0.22987728519365191,0.1656766589730978,-0.25637829629704356,0.5868646460585296,0.05812880862504244,0.29960558749735355,-0.25833180313929915,0.005815909709781408,0.4391678529791534,0.10000092256814241,-0.8021804895251989,0.6673972685821354,-0.19757863460108638,0.2106177299283445,0.979746151715517,-0.41462950268760324,-0.4019586336798966,0.45354074193164706,-0.7581751206889749,0.7068616314791143,-0.3046562634408474,-0.990615691523999,0.6701663536950946,-0.39996026176959276,0.589195016771555,0.25200173119083047,-0.16798655549064279,-0.04435639502480626,-0.8858055449090898,-0.6852378500625491,0.9001672537997365,-0.5306498701684177,-0.84914675867185,0.11522992514073849,-0.6097820256836712,-0.301679237280041,-0.519828787073493,-0.9675623513758183,0.8479574332013726,-0.30656183417886496,-0.3225341532379389,-0.4180621742270887,0.31731725111603737,0.2698651673272252,0.5748740807175636,0.3537801937200129,0.10674871923401952,-0.820737446192652,0.8715185523033142,-0.8871286199428141,0.4954190864227712,-0.4198747631162405,0.6435045902617276,0.3552873362787068,0.07088684476912022,0.4250289951451123,-0.6965249478816986,-0.36634302604943514,0.851191415451467,-0.4850702593103051,-0.028835170902311802,-0.4074215102009475,0.614383134059608,0.8600719561800361,-0.9593809237703681,0.85287258727476,-0.584631519857794,0.3499105339869857,0.36670548282563686,-0.45628492068499327,-0.13816641177982092,0.47818660642951727,0.6013644174672663,0.2800388294272125,-0.7435192726552486,-0.5079601970501244,0.1859599808230996,-0.7401317497715354,-0.8466100287623703,-0.7908166814595461,0.8007520800456405,-0.5806415849365294,0.4091906794346869,0.5264494405128062,0.9841960556805134,0.9138165162876248,0.12022691452875733,0.9382605631835759,-0.16853127628564835,0.18883502343669534,-0.33355096774175763,-0.3144937753677368,-0.035505407489836216,0.4528273232281208,0.9690710916183889,-0.756770086940378,-0.48189614713191986,-0.7995955059304833,-0.17603007704019547,-0.8511176095344126,-0.9957063971087337,0.9234988703392446,-0.010513930581510067,0.17281313333660364,-0.28713605739176273,0.06583320256322622,-0.09271271713078022,-0.45933534344658256,0.3118926011957228,-0.2485871333628893,-0.29113132739439607,-0.8515704357996583,-0.9634923688136041,0.44427602691575885,0.5251154089346528,0.7505433829501271,-0.11463010171428323,-0.701812316197902,0.4432155108079314,0.897786951623857,-0.8899417584761977,-0.24156770016998053,0.4584395787678659,0.148272265214473,-0.9377390625886619,-0.7936935792677104,-0.9109505913220346,0.8276108619756997,-0.3121246746741235,0.7726285862736404,-0.3687992370687425,0.14743497548624873,-0.3188324202783406,0.23749241651967168,0.0344036421738565,0.14118062471970916,0.9577827560715377,-0.8099719933234155,0.5058299829252064,-0.08996079629287124,-0.3990253861993551,-0.6061061401851475,-0.5981461750343442,0.2874371004290879,-0.4578905925154686,0.30455874977633357,0.011688360944390297,-0.8509065266698599,0.595280984416604,0.09656301746144891,0.07912162458524108,-0.30860467115417123,0.18257448775693774,0.23558380641043186,0.8007231252267957,-0.2450269078835845,-0.9419003841467202,-0.0279922210611403,-0.9049116559326649,-0.844535596203059,-0.9822256239131093,-0.13136525871232152,-0.20634178817272186,0.7859421079047024,-0.8605049662292004,0.9659081301651895,-0.7084328336641192,-0.34394791536033154,-0.8639196888543665,-0.8290980840101838,-0.2719740569591522,-0.669966634362936,0.018269091844558716,0.007743706926703453,-0.3734317133203149,0.250545896589756,-0.9350788136944175,0.5902054426260293,0.48149886820465326,0.7898512738756835,-0.982478863094002,0.3086853544227779,0.948963588103652,0.7546223890967667,-0.7830843906849623,-0.8350366237573326,-0.047255546785891056,0.1742881489917636,-0.008482006378471851,0.2707980293780565,-0.4092921167612076,0.16827249806374311,-0.32113955821841955,0.28058472694829106,-0.057977300602942705,0.4532261621206999,-0.3797641918063164,-0.5086411354131997,0.8934167851693928,0.3545343070290983,0.12641707668080926,-0.18996669352054596,0.7309545688331127,-0.6594847268424928,0.31635048473253846,-0.6353563298471272,0.1883120653219521,-0.6422112840227783,0.9966813866049051,-0.4956489880569279,-0.42523222509771585,0.873520809225738,0.831325392704457,0.8206587904132903,-0.7630025497637689,-0.2985675176605582,0.22327252151444554,0.737902317661792,-0.08037270978093147,0.07331173913553357,0.2858910337090492,-0.10981961525976658,-0.6482433523051441,-0.4072767747566104,-0.35550673911347985,0.020026739686727524,0.875879680737853,-0.30361777264624834,-0.8195969332009554,-0.19002351444214582,-0.8121513091027737,-0.5011802725493908,0.5660303561016917,-0.12487935926765203,-0.7328480673022568,0.72666055848822,0.3628270565532148,0.27135627064853907,0.9444572734646499,0.5189361590892076,0.6181450509466231,-0.4575776671990752,-0.9882835759781301,-0.07937744818627834,-0.7465508249588311,0.6658797576092184,0.005696871783584356,0.643798447214067,0.17199278995394707,-0.12080106697976589,0.7527165310457349,0.037829885724931955,-0.28120271069929004,0.9891711780801415,0.3827918083406985,-0.2774892821907997,0.4877951955422759,0.3099005878902972,0.663730968721211,-0.8259859117679298,-0.1836957368068397,0.5751674622297287,0.7180281020700932,0.22062011621892452,-0.5253281835466623,0.8715549949556589,0.5891149924136698,0.3987635183148086,-0.9381164289079607,0.3425460336729884,0.11125587858259678,0.4925123048014939,-0.18598046619445086,0.07880661310628057,-0.7830629968084395,-0.9578607087023556,-0.32688550604507327,0.12467134883627295,0.41932806419208646,0.43250321969389915,-0.60565992211923,-0.4536876897327602,0.8287670216523111,-0.17299865186214447,-0.5051770405843854,-0.9104351182468235,0.04182753711938858,0.2134646074846387,0.03220852604135871,-0.5155626032501459,-0.5847448469139636,-0.855906895827502,-0.4563548886217177,0.37151597952470183,-0.9022172372788191,0.8890095110982656,-0.5765815614722669,0.8183477902784944,-0.4867412634193897,-0.3255900521762669,-0.8840443692170084,0.30501297302544117,0.6155794635415077,-0.30839581321924925,-0.14062091056257486,-0.6391986953094602,-0.5585049814544618,-0.24399823043495417,-0.8579417527653277,-0.13585039926692843,0.8537690131925046,0.39913635002449155,-0.1845152205787599,-0.1939801867119968,0.1561719300225377,-0.5338176158256829,-0.9513973337598145,0.7425822466611862,0.10743261920288205,0.3973081111907959,0.8340936913155019,0.6709213675931096,0.18768754182383418,-0.5254121045581996,0.20116995042189956,0.014733057469129562,0.5201520109549165,0.9252194813452661,-0.7058260799385607,-0.6939898943528533,0.3709880239330232,0.9337086412124336,0.48211238346993923,-0.9442818062379956,-0.40553474286571145,-0.4763386962004006,0.6205360335297883,0.6666188733652234,0.6451106541790068,-0.6709352084435523,-0.3306943792849779,0.9264739090576768,-0.4168027751147747,0.5420070677064359,-0.28077836614102125,0.09264556271955371,-0.7498031836003065,0.5512046292424202,-0.12373810587450862,0.8431711164303124,-0.6886304309591651,-0.697331300470978,-0.5121408505365252,0.26167264906689525,-0.21431307960301638,0.30086209578439593,0.036541839595884085,0.6089678253047168,0.7597221969626844,0.17144554248079658,-0.25250623375177383,-0.2031735577620566,0.7774095544591546,-0.4143278016708791,-0.19574662577360868,0.24185974290594459,0.3549365815706551,0.1355006000958383,0.7131901038810611,0.40598856238648295,0.0746814040467143,0.6963522876612842,0.0032800636254251003,0.5307871596887708,0.16203372087329626,0.5845779706723988,-0.3325599613599479,-0.6530841011554003,0.4541985192336142,-0.05823743203654885,0.23765628645196557,0.5052772085182369,-0.1499883341602981,0.2565272315405309,0.9205124266445637,0.029235235415399075,-0.46022486314177513,-0.37309775967150927,0.28512222319841385,-0.34551872592419386,-0.8377316738478839,0.7210118942894042,-0.9762944728136063,0.2128399615176022,0.9964907863177359,-0.49107338301837444,-0.4664326091296971,-0.08356986241415143,-0.1662719463929534,0.19211259949952364,0.8741588108241558,-0.5321204606443644,0.8323703315109015,-0.5888581140898168,-0.2152506047859788,0.5915873213671148,-0.28914352552965283,-0.04000749671831727,-0.1015161145478487,0.0003981124609708786,-0.9709945134818554,-0.37797793420031667,-0.0869257329031825,0.8135521463118494,0.13595499005168676,-0.9264188068918884,-0.4554457915946841,0.23886363627389073,0.4670180445536971,-0.047733137384057045,0.1513200202025473,-0.21437770361080766,0.4638490378856659,0.5363399386405945,0.61270497366786,-0.4874165952205658,0.12468211492523551,0.9331099442206323,0.4659226518124342,0.7175735696218908,0.32438627956435084,-0.37360487412661314,0.0811505583114922,0.8966817501932383,0.6775119323283434,0.7112071672454476,0.6647653467953205,-0.002639525569975376,-0.9564969427883625,0.31243104860186577,-0.009721934795379639,-0.9836170999333262,0.009092864580452442,-0.08188024628907442,-0.3826166233047843,0.7989559243433177,0.9397821533493698,0.42605683160945773,0.8552403864450753,0.10859725251793861,0.9132154206745327,-0.008021365851163864,-0.9441910590976477,0.07011159881949425,-0.2718110643327236,0.8846150026656687,-0.10110446950420737,-0.501247966196388,0.07881891680881381,-0.3064526463858783,0.9697316447272897,0.5633458369411528,-0.6113490262068808,-0.5656038750894368,0.5663199126720428,0.7159130340442061,-0.21660252148285508,-0.9256067671813071,-0.5597782097756863,-0.2922394420020282,-0.3633648590184748,-0.896774641238153,0.1318764421157539,-0.266026905272156,0.9677835186012089,-0.7814740757457912,0.9148132801055908,-0.340910111553967,-0.6773817366920412,0.17394935060292482,0.04209006065502763,-0.8105937470681965,0.497832169290632,-0.39607969392091036,-0.18319127336144447,-0.6347704590298235,0.7526168636977673,0.18138875486329198,-0.12327409628778696,0.21972475899383426,-0.3960800180211663,-0.706021046731621,0.551871464587748,0.3854754907079041,-0.533888075966388,-0.5532243764027953,-0.6340307337231934,-0.09607022488489747,-0.2985264309681952,0.08390868036076427,0.2085501365363598,0.6510748923756182,-0.3977907714433968,-0.2808435959741473,0.5154168889857829,-0.7686547357589006,-0.5286823324859142,-0.14402501890435815,0.7091177287511528,0.678787580691278,0.6644997876137495,-0.3879704596474767,-0.4841003115288913,-0.05136353150010109,0.2506896434351802,-0.3596010310575366,-0.2667306666262448,-0.07048103073611856,0.8302148538641632,-0.5680860034190118,0.027290130965411663,0.7593845203518867,0.7770744562149048,-0.8980101305060089,-0.747766638174653,-0.5018693087622523,-0.2212885282933712,-0.034507282078266144,-0.6572039644233882,-0.030302089173346758,-0.29471788089722395,-0.7229406470432878,-0.02494681067764759,0.5138982096686959,0.8536728667095304,-0.10493209213018417,0.7242700783535838,0.5491170128807425,-0.17546249646693468,0.7358705853112042,0.10930042341351509,0.7744929301552474,0.022746714297682047,-0.5337334824725986,0.5443456084467471,0.628372301813215,-0.9149842942133546,0.9727877420373261,0.08470121026039124,-0.9314874699339271,-0.2267753598280251,0.61833440605551,-0.7396333320066333,-0.9270069315098226,0.6777460514567792,0.13630995014682412,0.20533630764111876,-0.37466762121766806,0.3592082867398858,0.2677297159098089,-0.6166634154506028,-0.5493518733419478,-0.8565571010112762,0.9011491881683469,-0.11373038636520505,0.03515121201053262,0.7153489794582129,-0.5109122088178992,-0.25858655432239175,0.04309356492012739,-0.42723005590960383,0.5281487735919654,0.823569543659687,0.07752456003800035,0.5775443594902754,-0.7857522345148027,-0.25375020038336515,0.36794335674494505,-0.9364249701611698,0.696047137491405,-0.19984774850308895,-0.7396758906543255,-0.2845681617036462,0.7455034600570798,-0.9346135538071394,0.8411563094705343,0.7475950610823929,-0.49083357164636254,0.3215177236124873,-0.7152664712630212,-0.7710225754417479,-0.2053268258459866,0.1749058961868286,0.9161624987609684,-0.2270514229312539,-0.03714701486751437,-0.03356191562488675,-0.1793155074119568,0.8789585158228874,0.9364144005812705,0.43499696208164096,-0.8823078731074929,-0.3553453669883311,0.6300537209026515,0.38194092409685254,-0.16800362756475806,-0.046180954203009605,-0.8900984353385866,0.9561230759136379,-0.3332536877132952,0.1416021389886737,-0.1694907872006297,-0.798056086525321,-0.35492437332868576,0.24700211687013507,0.7664449797011912,0.9661793457344174,0.5953227556310594,0.7368253450840712,0.7720896899700165,0.2982746190391481,0.5037515508010983,0.625940655823797,0.41810012934729457,-0.6118468889035285,0.8822235809639096,0.22727016499266028,0.6210869560018182,0.010907338000833988,0.972271575126797,-0.5179405421949923,-0.10664965817704797,-0.9897398883476853,0.17538010561838746,0.6854797867126763,0.4437945382669568,0.3529505440965295,-0.028885652776807547,0.07661804649978876,0.3155543669126928,-0.33278992492705584,0.1794918212108314,-0.6719668726436794,-0.7961304481141269,0.8959453534334898,-0.7189821749925613,-0.8037187964655459,0.7381570236757398,-0.3836172637529671,-0.6891287718899548,-0.21716218953952193,-0.8798443744890392,0.1294921082444489,-0.811662657186389,0.40775643568485975,0.1575844082981348,-0.18346200929954648,-0.11530404537916183,0.2975159431807697,0.6581096779555082,0.08272964227944613,0.10689128329977393,-0.9768970813602209,0.2370497053489089,-0.5301003749482334,0.5015802760608494,-0.23681211890652776,-0.47969509242102504,-0.7639756039716303,0.9051474849693477,-0.37354273488745093,-0.730918257497251,0.8622642327100039,0.21713518211618066,0.456971765961498,0.24058922613039613,-0.7062050639651716,-0.8902819799259305,-0.7563609629869461,0.028332528192549944,0.2996745756827295,-0.712303698528558,-0.6859273281879723,-0.7104147588834167,0.7951023164205253,0.7415198986418545,0.12442129524424672,0.7107487069442868,0.6342499880120158,-0.01540294848382473,0.06941505800932646,0.28755704686045647,0.6054674945771694,0.7782446159981191,0.14429078623652458,-0.7481197481974959,0.9317354718223214,0.46806060848757625,-0.14080700743943453,-0.5263094520196319,0.3823788105510175,0.03568275086581707,-0.3467346406541765,0.3074665404856205,0.4131830553524196,0.9792881892062724,-0.8720495998859406,0.03796577639877796,0.7505990583449602,-0.6198036069981754,0.5902153914794326,-0.4043015302158892,0.6965513085015118,0.6342171831056476,-0.554108927026391,-0.12612498085945845,-0.6260430980473757,-0.8145191073417664,0.7889638245105743,0.6631442052312195,0.6617591348476708,0.99999496107921,0.15731116198003292,-0.48598338291049004,-0.532646949402988,0.03209982858970761,0.7258528447709978,0.7115129986777902,0.09493382833898067,-0.778768562246114,-0.6079930383712053,0.29969915421679616,-0.14681641571223736,-0.5797087335959077,-0.891069786157459,-0.7451732493937016,0.6566617521457374,-0.330417538061738,0.8163011679425836,0.53421277878806,-0.5749322529882193,-0.3407145361416042,0.5946946493349969,0.46899843215942383,-0.7738217548467219,-0.7470452394336462,-0.6302082473412156,0.39386999048292637,-0.14590029837563634,0.9451786396093667,0.3789564990438521,0.5868745311163366,0.9693757626228034,0.5602924665436149,0.6945246402174234,-0.6688881386071444,0.19390582758933306,0.6333024175837636,-0.9921080274507403,-0.5883445395156741,-0.2257972531951964,-0.5441918103024364,0.8175488892011344,-0.385410578455776,0.10318974032998085,-0.9201829386875033,-0.7061941209249198,0.9900188106112182,-0.4512768369168043,0.420607119332999,0.5026476592756808,-0.5105212265625596,0.10977051593363285,0.119969068095088,0.7540938262827694,0.2893814155831933,-0.34153717616572976,0.689522176515311,0.7785321925766766,0.5031895996071398,0.9327728194184601,0.5690270694904029,0.1035010744817555,0.5806739167310297,-0.8141441117040813,0.08531097834929824,-0.743090224917978,-0.15279213106259704,0.9177767504006624,0.6036896929144859,-0.036375828087329865,-0.0762830232270062,0.4513783371075988,0.37498506205156446,0.17351324576884508,0.1569034606218338,-0.04437029268592596,-0.03480117814615369,0.5348529084585607,-0.15913426410406828,0.8295997204259038,0.9898875029757619,-0.33520564110949636,0.6918709087185562,-0.28075080970302224,0.7329274201765656,0.5155100873671472,-0.7583094309084117,0.8265695772133768,0.03346498170867562,-0.11275779455900192,-0.2744679320603609,0.6140003008767962,-0.4716953495517373,-0.00989993754774332,-0.09132252866402268,-0.28136939043179154,-0.7474700659513474,-0.28275597048923373,0.91657795291394,-0.5311083244159818,0.4258168712258339,-0.05280170263722539,-0.1749635157175362,-0.9772444469854236,-0.13023765245452523,0.8436123323626816,0.9168692571111023,-0.6934454548172653,0.39705451019108295,-0.9643034865148365,0.6439731656573713,-0.4222942851483822,-0.8931037127040327,0.09606655733659863,-0.17701990762725472,-0.9469329556450248,-0.7694899719208479,0.2530238884501159,0.643165361136198,-0.026730922516435385,-0.5717165265232325,0.5143412281759083,-0.4509821436367929,0.7491060085594654,-0.6997888805344701,0.22402004757896066,0.35406083380803466,-0.4785751788876951,-0.6770872781053185,0.808088606223464,0.7584596993401647,-0.04066132986918092,0.46375621343031526,-0.6172591699287295,-0.9276903816498816,-0.9592361766844988,-0.12711408734321594,-0.3235843125730753,0.818890935741365,0.439122945535928,-0.6740995701402426,-0.878223605453968,0.956470254343003,0.02966533089056611,-0.127431514672935,0.8201007661409676,0.5018415795639157,0.012048474978655577,0.43495018407702446,0.5689159003086388,-0.44542162539437413,-0.22449609963223338,-0.5378395398147404,-0.7003597705624998,-0.1881002546288073,0.9530524215660989,-0.394615919329226,-0.821456546895206,0.007889523170888424,0.5829093889333308,-0.3393073072656989,0.13123543467372656,0.14337878627702594,0.025548402220010757,0.822882317006588,0.6807950921356678,-0.0435698670335114,-0.5395617200993001,-0.22932773642241955,0.6755936993286014,-0.7771706474013627,-0.4057274591177702,-0.8836443894542754,-0.4930211710743606,0.06808954663574696,0.6803060360252857,0.9032981400378048,-0.8786428878083825,-0.007322590332478285,0.6651631249114871,-0.5657421364448965,0.278670244384557,0.12289545731619,-0.4423230071552098,0.38137199310585856,-0.4717193632386625,-0.6304352977313101,-0.4901961856521666,0.6673506363295019,0.22484797006472945,0.07316599041223526,0.028322964906692505,0.27425371622666717,-0.09584850445389748,0.48375529842451215,0.8969850894063711,-0.06781185232102871,-0.29592759953811765,0.09607873437926173,0.4506005793809891,0.633674836717546,0.5872209472581744,-0.44753152457997203,0.6722828238271177,0.40749816317111254,-0.4325764151290059,0.20475068083032966,-0.8056427105329931,-0.8811110933311284,0.6975535405799747,-0.21004844084382057,0.9495685384608805,-0.04716160660609603,-0.37881751637905836,0.41262503201141953,0.06723879044875503,0.5382606922648847,0.9224297315813601,0.11345013231039047,-0.35401057871058583,-0.5252034096047282,0.9207413606345654,0.8992548361420631,-0.6774650239385664,-0.8436920261010528,0.8751513822935522,-0.8325485168024898,0.2995197670534253,0.2163325473666191,0.7187153184786439,0.44024131959304214,0.18115304876118898,-0.6749152978882194,0.40001831064000726,0.49699870962649584,0.19676261441782117,-0.2742412998341024,0.09916618512943387,-0.32259501516819,-0.6390060679987073,-0.1258503976278007,0.07455859892070293,0.3205863027833402,0.20305937062948942,0.3512960961088538,0.8861002367921174,-0.45607818895950913,0.24665874196216464,-0.577223903965205,0.9801503289490938,0.5850962596014142,-0.3160278731957078,-0.3497139494866133,0.7476202817633748,0.9165706820785999,0.5539804520085454,-0.44964083563536406,0.4911370351910591,0.10658263135701418,-0.4199633873067796,0.6744350078515708,-0.340708018746227,0.4456413174048066,0.33304733596742153,0.7804152807220817,0.666308481246233,-0.4029175494797528,-0.30245594261214137,-0.8437218037433922,0.19191215699538589,-0.2423510574735701,-0.5510349976830184,0.7451049359515309,0.7605506861582398,0.06637024693191051,-0.460110355168581,0.8654722678475082,0.6359988339245319,-0.12524956511333585,-0.6083490666933358,0.6708011059090495,0.7816776800900698,0.2707500928081572,0.687237286940217,0.9000125736929476,-0.9768823925405741,-0.5884614489041269,0.8212967263534665,0.32690624380484223,0.8884955509565771,0.305023861117661,-0.06804198957979679,0.7996323499828577,-0.7454404551535845,-0.09560479363426566,-0.1781424111686647,0.3859900119714439,-0.17701978469267488,0.8080848567187786,0.6239764229394495,0.9951549558900297,0.9387147855013609,-0.3929777815937996,-0.41495278431102633,-0.638834732118994,-0.9281946602277458,-0.3628480760380626,-0.5892403465695679,0.5160550330765545,0.2089814580976963,0.5697803050279617,0.4945745882578194,0.13085308764129877,-0.6324782106094062,0.6811216925270855,0.2034850181080401,0.22565128561109304,0.32760724890977144,0.24250675505027175,-0.8790174378082156,0.5905278460122645,0.7869923617690802,-0.7509988867677748,0.23640891769900918,0.4129000841639936,-0.8204899742268026,0.05082147289067507,0.060211002361029387,0.9314493597485125,-0.3188648601062596,-0.5070597403682768,-0.990637980401516,0.7113826805725694,-0.8915221695788205,-0.05073745874688029,-0.6603883388452232,-0.9773969515226781,0.7014130167663097,-0.3762848488986492,0.8467240910977125,-0.9525818484835327,0.32549232756718993,0.9003700325265527,0.19684459920972586,-0.5123624755069613,-0.08952138060703874,0.015732673462480307,-0.50359101081267,-0.35489147063344717,0.16838236805051565,0.6875581187196076,0.74495321046561,0.377059627790004,-0.2821592944674194,0.5017067533917725,-0.8077486255206168,-0.2547088642604649,0.7743529235012829,0.2822432671673596,0.6962487543933094,0.21211026515811682,0.5639101481065154,0.8785678618587554,0.9652971168980002,-0.8360854471102357,0.5135388290509582,-0.7003800212405622,0.44950851146131754,0.9375078813172877,0.12509985081851482,0.6113059930503368,0.5885405987501144,-0.7756157424300909,-0.9589889864437282,-0.7248272374272346,-0.08015110436826944,-0.17691570706665516,0.00874112593010068,-0.7471602805890143,-0.5178672377951443,0.1980771874077618,0.9657792346552014,0.26552727399393916,0.9106668494641781,-0.6256798976100981,-0.5367730162106454,0.5447317124344409,-0.11822264548391104,-0.6109409155324101,0.838518182747066,0.1430913140065968,0.46536684315651655,0.6134300511330366,0.9543981272727251,0.35613797837868333,0.9869018606841564,0.9713587663136423,0.5563160637393594,-0.1597287687472999,0.792119684163481,-0.20137611823156476,0.3148980704136193,0.19953644322231412,0.9676449289545417,-0.5783274676650763,-0.29293004516512156,0.9001027513295412,0.09840349201112986,0.5072029400616884,0.9846311048604548,-0.07689248910173774,-0.38866186793893576,-0.6698490725830197,-0.8155597639270127,0.4561765971593559,-0.23470199899747968,0.3760176431387663,-0.0942137953825295,-0.9614219474606216,0.5009405338205397,0.3636626466177404,-0.6863066735677421,-0.4127877000719309,0.33468352630734444,0.7051221923902631,-0.2859183382242918,-0.5835361843928695,0.3337557977065444,0.7467439826577902,-0.1257916926406324,-0.24820402916520834,-0.9194413395598531,0.7756965323351324,-0.8409214070998132,0.2179064005613327,0.4760914812795818,0.5738898809067905,-0.6382734184153378,-0.5243427236564457,0.33794468827545643,0.002131007146090269,0.8112660441547632,0.34684076718986034,0.02301971986889839,0.3135626851581037,-0.3354648891836405,-0.9546141242608428,-0.3374726725742221,0.2721977108158171,-0.08873175783082843,-0.6809818004257977,-0.19611949240788817,-0.6013978747650981,0.09305476024746895,-0.6429309914819896,-0.06449396582320333,0.4061799473129213,0.5290816249325871,-0.26708878204226494,0.5618978422135115,0.8722922401502728,-0.42143359081819654,-0.9793666223995388,0.7241794229485095,0.2167760757729411,-0.5437365765683353,-0.24938749009743333,0.3356520882807672,0.40399425430223346,-0.1477735680527985,-0.7034997520968318,-0.2854565870948136,-0.1002822951413691,0.5917612044140697,0.9341834103688598,-0.8215139298699796,-0.7178494059480727,-0.5202002972364426,0.022651552688330412,-0.9440066474489868,0.22883832082152367,-0.9547684686258435,0.04681844403967261,-0.027477461844682693,0.23391887731850147,0.1297668726183474,-0.47519405372440815,0.9391042455099523,0.2619344098493457,-0.4251326583325863,0.8413691530004144,0.4938155198469758,0.7901370590552688,0.9158208854496479,0.2015299187041819,0.8057915205135942,-0.9532502950169146,-0.15011724596843123,-0.11061932053416967,-0.09742023888975382,0.32196998968720436,-0.31354213785380125,-0.4930802141316235,0.9865853954106569,-0.20027818344533443,-0.19067887775599957,0.09688259661197662,0.12508357455953956,0.6567656458355486,0.9181808028370142,0.10403502592816949,-0.3815834680572152,-0.5747612570412457,0.14011464593932033,-0.9230989473871887,-0.5731624998152256,-0.8870914811268449,-0.45981867238879204,-0.1095766699872911,0.6948346858844161,0.5997375352308154,0.5650902092456818,-0.4417698569595814,-0.08701960323378444,-0.3403674061410129,0.2768194377422333,-0.7064801678061485,-0.737564202863723,0.7301812376827002,-0.35832620318979025,-0.43781194323673844,-0.9631228218786418,-0.5215564607642591,0.15161087550222874,0.2602804722264409,0.22651194129139185,-0.6398121882230043,-0.01892535202205181,0.7305767154321074,0.037501898128539324,0.319618281442672,-0.3302040877752006,-0.6551385684870183,0.18954377435147762,-0.5118270618841052,0.6416126280091703,-0.967393459752202,0.5032108998857439,-0.16639809822663665,0.1982167954556644,0.842345227021724,0.9209135132841766,-0.13916055532172322,0.5343019203282893,-0.5478290901519358,0.39800864458084106,-0.6914600436575711,-0.5676315538585186,-0.2118359669111669,-0.34778030402958393,-0.4155671922490001,0.0003445791080594063,-0.9919014926999807,0.22689017187803984,-0.684569239616394,0.4874367956072092,0.607236469630152,-0.13681378681212664,-0.8286087471060455,0.8012964301742613,0.8486488875932992,-0.4319436689838767,0.3736474900506437,-0.90565180266276,0.882299377117306,0.6439263485372066,-0.23198177060112357,0.21103317476809025,0.9711535372771323,0.6010703132487833,-0.07865596422925591,-0.8850593757815659,-0.36894995626062155,-0.022307713981717825,-0.653115299064666,-0.0018793242052197456,0.18272485956549644,0.9733525598421693,-0.6375728091225028,-0.530194197781384,-0.807681548409164,-0.8484946456737816,-0.17456281278282404,0.9256227989681065,-0.7317651766352355,0.40747011825442314,0.4772376073524356,0.19236820982769132,-0.338824940379709,0.6280837617814541,-0.7032785760238767,-0.002450045198202133,-0.3644524090923369,-0.7783035458996892,-0.14100826624780893,-0.5795075711794198,-0.5644051949493587,0.764443626627326,-0.904827693477273,0.2579720946960151,-0.7068784483708441,0.9080807124264538,0.7294707898981869,-0.9430549014359713,0.7201886954717338,0.3195939436554909,0.9793935841880739,-0.9732817853800952,-0.28718652483075857,-0.4627196486108005,0.16737648379057646,0.03433009050786495,0.6580398357473314,-0.9407359715551138,-0.1772856591269374,0.7110067992471159,0.6894286735914648,-0.21165692852810025,-0.46799685107544065,0.41646496625617146,-0.5173161253333092,-0.9683504728600383,0.7458312236703932,-0.06651394721120596,-0.2900767936371267,0.016900012735277414,0.6215495620854199,0.3238976295106113,-0.2823056732304394,-0.28823527600616217,-0.30018615163862705,-0.9258917118422687,0.39081469224765897,-0.601577284745872,-0.49044320033863187,-0.23980682576075196,0.6352661862038076,0.17894023470580578,0.9584712190553546,0.16547388257458806,0.43423085380345583,-0.5752461031079292,0.2014314029365778,-0.6097594243474305,-0.3142214105464518,-0.07539515197277069,0.5112310266122222,-0.5439423993229866,-0.8114918451756239,0.38112437864765525,-0.305590664036572,0.28676107013598084,-0.2413091091439128,0.45346946688368917,-0.5013123317621648,0.1999325011856854,0.1276968470774591,-0.14188887365162373,0.11155666504055262,-0.9533596406690776,-0.38612325862050056,-0.7554040062241256,0.7020336198620498,0.05649503320455551,-0.18222789280116558,0.7107924278825521,-0.9221567078493536,-0.3498700363561511,0.036980170756578445,0.5754321604035795,-0.6343628307804465,-0.7290195259265602,0.9391061500646174,0.7348616695962846,-0.6084160353057086,0.03458000672981143,0.6153053855523467,0.808095945045352,0.7605557795614004,0.42683507315814495,-0.8492248710244894,-0.7821463844738901,-0.8550269505940378,-0.5943049909546971,0.9729843460954726,0.39016921957954764,0.0353895490989089,-0.5425811246968806,-0.08666979661211371,0.3262581988237798,-0.6944472389295697,-0.2464019926264882,0.8212378243915737,-0.3830533386208117,0.08935442101210356,0.8943648543208838,-0.21087980596348643,0.8484558025375009,0.44139734702184796,-0.9432296478189528,-0.86336888698861,0.3483379795216024,-0.6283607399091125,0.6774748959578574,-0.8981161029078066,-0.572048089466989,0.8090917128138244,0.8608878194354475,0.05226823640987277,-0.2833999856375158,0.41649562306702137,0.7443591793999076,0.9268616829067469,0.41578183975070715,-0.5039631687104702,0.21912501333281398,0.7841643118299544,-0.012738985009491444,-0.4816419486887753,0.7268201904371381,0.43009916646406054,0.08619124023243785,0.1408963417634368,0.36609804863110185,0.14306501392275095,0.8726509572006762,-0.2957846927456558,-0.6820803470909595,-0.7332942439243197,-0.8013174990192056,-0.48567930748686194,-0.5975114749744534,-0.8710539271123707,-0.4485532189719379,-0.13357733143493533,-0.06443184474483132,0.12232857290655375,0.34235560707747936,-0.10511581692844629,-0.4917796514928341,0.42707857117056847,-0.7483818167820573,-0.6435058773495257,0.45156794833019376,0.14626805018633604,-0.8624570881947875,-0.9806428607553244,-0.04329960187897086,-0.2629429888911545,-0.3927546041086316,0.2341557596810162,-0.9678653874434531,-0.24608895275741816,-0.25593998515978456,0.8966996790841222,-0.1940017258748412,-0.0677639627829194,-0.04399571567773819,0.9228355274535716,0.34308505477383733,-0.6407957542687654,0.6522641689516604,0.9413298084400594,-0.5937255658209324,-0.1580903367139399,-0.762491692788899,-0.640132742933929,0.5330878021195531,-0.9714718325994909,-0.2869199891574681,0.20245910994708538,0.4166139350272715,-0.0015617646276950836,0.8080231822095811,0.7744553587399423,0.5999040454626083,0.9884758251719177,-0.4887279667891562,-0.5575255914591253,0.5608070036396384,0.35502521647140384,-0.7452113362960517,0.022892453242093325,0.9300212543457747,0.3025496322661638,-0.5286678005941212,0.9385976023040712,-0.8104739426635206,-0.003187805414199829,-0.6224756180308759,0.954726162366569,-0.18137924373149872,-0.51145239174366,-0.03891857527196407,-0.06024484848603606,0.8363855388015509,-0.44886644976213574,-0.12245805654674768,-0.7066942984238267,0.9607660779729486,0.3083947254344821,0.6653572376817465,-0.7928692339919508,-0.4694139645434916,-0.7332098199985921,-0.10768432263284922,0.1295440262183547,-0.1227153786458075,0.712157538626343,0.037881210912019014,0.8606819831766188,-0.4393038465641439,0.10687926784157753,0.5624404880218208,-0.45586096961051226,0.9253162052482367,-0.6033531343564391,0.6706352443434298,-0.2561863181181252,-0.5982634336687624,-0.8180983611382544,-0.47967372788116336,0.4285305803641677,-0.484852128662169,-0.8983582383953035,-0.29830908589065075,0.5074101276695728,-0.9927846775390208,-0.175841071177274,0.12281368905678391,-0.4552630363032222,-0.9066806938499212,0.9916506712324917,0.6540947486646473,0.17940742522478104,-0.8746492997743189,-0.023393946699798107,0.5294964453205466,0.4990340727381408,0.45807929476723075,0.6477265330031514,0.40523616457358,0.8201623889617622,-0.5458440980874002,0.5933784414082766,0.7287915572524071,-0.08303092233836651,-0.5860597770661116,-0.6615394875407219,-0.6912256120704114,0.2813289100304246,-0.5970575343817472,-0.4497656235471368,-0.8878070339560509,0.557938409037888,-0.3046415778808296,-0.7324498286470771,-0.18854307057335973,0.23703937185928226,-0.16661010589450598,0.2559440713375807,0.46265432331711054,-0.6475682137534022,-0.7413825076073408,-0.17747929692268372,-0.5476765539497137,-0.37142963241785765,-0.5875594313256443,0.5769510543905199,0.8352840826846659,-0.6192727363668382,0.6052539385855198,-0.42195575730875134,-0.04350234707817435,0.5363732543773949,0.8552310867235065,-0.28359579760581255,-0.905277541372925,0.48063069535419345,-0.46840668842196465,0.545050953514874,-0.9077661824412644,0.8015197273343801,-0.32971135107800364,-0.7977025965228677,0.747135465964675,0.8558347565121949,0.040300439577549696,0.12991339713335037,0.9612640012055635,0.7849272936582565,0.31228357646614313,0.6118445745669305,0.2577717611566186,-0.9740333412773907,0.575018207076937,-0.19842608086764812,0.6224945732392371,-0.3748764065094292,-0.7076155529357493,0.46949020167812705,-0.9619454531930387,-0.3392721745185554,0.15234556514769793,-0.5956586017273366,-0.498025665525347,0.2794896150007844,-0.5970181035809219,0.16755021968856454,-0.6627637608908117,-0.3027073349803686,-0.965357861481607,-0.025506719015538692,0.11049104062840343,-0.5440269596874714,0.08224044227972627,0.6600206308066845,-0.9545483123511076,0.1928256070241332,-0.6354621588252485,-0.21392402332276106,0.584973853547126,-0.21548335952684283,-0.27409436320886016,-0.6586756007745862,0.04331531934440136,-0.7193505968898535,0.8896547988988459,-0.10747473035007715,-0.9154007094912231,0.9786249427124858,0.8939194572158158,0.68254279717803,-0.6047064433805645,-0.17401017993688583,-0.8996892645955086,0.5067495731636882,-0.27330090710893273,0.9958177236840129,-0.29656660184264183,0.7570803416892886,0.1519839446991682,-0.5107765286229551,-0.20584560045972466,0.556401270441711,-0.48454651702195406,-0.49454585975036025,-0.40496116038411856,0.9518473073840141,-0.3686527372337878,-0.992691810708493,0.26417586160823703,-0.6854598359204829,-0.3933642734773457,0.1700868085026741,0.5284164915792644,-0.07055900059640408,-0.09522761963307858,0.41592951072379947,0.569880286231637,0.6809360506013036,-0.46667754277586937,-0.20384913170710206,0.015314985997974873,-0.9891649717465043,-0.4872100125066936,0.812603818718344,-0.6162630273029208,0.26155677903443575,-0.13048740569502115,-0.9205149072222412,0.7057149643078446,0.8572150375694036,0.32576421089470387,-0.10394992399960756,0.1148134502582252,0.6559365503489971,-0.4008463742211461,-0.7647685110569,0.4030800350010395,0.7733667585998774,-0.8293368257582188,0.4777298183180392,0.8403116585686803,-0.5986450361087918,0.06313177710399032,0.524087390396744,-0.6348255230113864,0.9679230460897088,0.2252446161583066,0.17180096125230193,-0.7521834862418473,-0.7826718902215362,-0.10375063866376877,0.9325004941783845,0.5023284540511668,-0.9262362821027637,-0.9041103245690465,-0.6792342569679022,-0.028521146159619093,0.11592418840155005,-0.21103878505527973,-0.12298842938616872,0.5337139116600156,-0.23564760154113173,0.5549347335472703,0.9811539556831121,-0.4562862287275493,0.5617524441331625,-0.2047331975772977,-0.8496276414953172,0.25326832849532366,-0.13245547516271472,-0.8677229415625334,-0.8880147081799805,-0.33074061246588826,-0.2950648032128811,-0.931886593811214,0.17748235631734133,0.3930923626758158,-0.5241238879971206,0.28548184409737587,0.9416702720336616,-0.6433807155117393,0.228586055804044,0.36037752544507384,0.8748359763994813,-0.4416654957458377,0.48197692539542913,-0.80014011496678,-0.5115036745555699,-0.6812685253098607,-0.338447283487767,-0.39738212525844574,-0.8794658565893769,0.9055369608104229,-0.051382919773459435,-0.19999912846833467,0.5873199407942593,-0.3551600859500468,0.7298499885946512,0.12422660645097494,-0.12743681389838457,0.7862044088542461,0.1665531094186008,-0.15543016931042075,-0.2772716269828379,-0.1251143873669207,-0.9800353036262095,-0.7025094446726143,-0.6240397696383297,0.6837259186431766,0.9763832991011441,-0.8265387564897537,0.35619876673445106,0.5413894429802895,0.5681700278073549,0.6008385242894292,-0.18972453428432345,-0.09409095160663128,0.14321165159344673,-0.20896390778943896,0.4589388146996498,-0.49702698830515146,0.8717924878001213,-0.6447384073399007,0.9673129413276911,-0.4467752515338361,0.4946027100086212,0.6261530136689544,-0.6281449878588319,-0.554371043574065,-0.5467614722438157,0.40214165206998587,0.9847722765989602,-0.4692685455083847,-0.24279416492208838,0.475899672601372,0.8408136228099465,-0.9176145745441318,-0.5299760908819735,-0.8166448911651969,-0.6594053930602968,-0.8775240909308195,-0.6076974058523774,0.6897245203144848,0.89202233357355,-0.11320554278790951,0.07683624606579542,0.4449694766663015,0.35179573111236095,0.5436456524766982,-0.040021021384745836,-0.772394064348191,0.17389912763610482,0.4234551349654794,0.10367984045296907,-0.3390487851575017,0.42591175669804215,0.4593996503390372,0.4606685061007738,-0.7512102872133255,0.2614128030836582,0.21201973035931587,-0.6211777562275529,0.917613182682544,0.2580979987978935,-0.6358890496194363,0.10222202120348811,0.19148060120642185,0.21694655576720834,-0.568626516032964,0.15238094376400113,-0.42996421875432134,-0.18931882129982114,-0.4601213727146387,-0.9273765743710101,0.6850090296939015,-0.4976545921526849,-0.1809773468412459,0.3780942764133215,-0.163269670214504,0.29618028504773974,0.7941781473346055,0.9287685183808208,-0.6069166213274002,-0.0138875562697649,0.3416445888578892,-0.20913904439657927,-0.1791471354663372,-0.7727811853401363,0.43768905010074377,0.13311011716723442,0.33148855390027165,0.3695213873870671,0.32518973760306835,0.7783321705646813,-0.14145246054977179,-0.31711642583832145,0.16619710717350245,-0.027733920607715845,-0.6220045215450227,-0.5151691026985645,-0.09616001369431615,-0.5199744370765984,-0.014939261600375175,0.32114629121497273,-0.3955802898854017,-0.8151279366575181,0.8392776162363589,-0.7263245130889118,0.8972721686586738,-0.8158629988320172,-0.9758696099743247,-0.5810397467575967,0.09498125966638327,0.669273603707552,-0.3338218443095684,0.26075868774205446,0.8834230471402407,-0.5361426994204521,0.8687940924428403,-0.09555924357846379,-0.7094801091589034,0.7779379356652498,-0.6983633991330862,-0.6994632207788527,0.3409278066828847,-0.5422112653031945,0.2951782732270658,0.9778676345013082,-0.5837084162048995,-0.2707357909530401,-0.1891305847093463,-0.5410014726221561,0.02169950306415558,0.08659157622605562,-0.25280082412064075,-0.19627141812816262,0.1465301071293652,-0.8143408289179206,0.4905452122911811,0.2810771632939577,-0.8447006302885711,-0.5152677102014422,0.08759982045739889,0.9911804813891649,0.30205422593280673,-0.5412857462652028,-0.04047556547448039,-0.905123105738312,0.24971109488978982,0.44397257175296545,-0.825979957357049,-0.4638354848138988,0.06590894749388099,0.5530153634026647,-0.07159711327403784,-0.31496133375912905,0.33398487605154514,-0.6211384879425168,0.8054381068795919,-0.6248752502724528,0.7298317793756723,-0.7844792273826897,-0.8931812108494341,0.6249756165780127,-0.19721805537119508,0.2455487037077546,-0.6375854127109051,0.08485621679574251,-0.27660954650491476,0.2175163384526968,0.5868651093915105,0.8026922610588372,0.834774442948401,-0.15429517813026905,-0.8344601704739034,-0.08637589076533914,-0.05433096503838897,0.30857705790549517,-0.6927137630991638,0.03760759439319372,-0.8028210843913257,0.1923171142116189,-0.059469159692525864,-0.360406578052789,0.4446673449128866,-0.39640005491673946,0.48288331227377057,-0.5677220216020942,0.10943800956010818,-0.6130737503990531,0.5439993105828762,0.017075146548449993,0.46308447467163205,0.34337315196171403,0.9661175282672048,0.19522545114159584,-0.9695968925952911,0.359539479482919,-0.471323334146291,0.7609996730461717,-0.12707328842952847,-0.6210944908671081,-0.3205100982449949,-0.4176426427438855,-0.23033780604600906,-0.8354684850201011,0.9277818431146443,-0.1140368185006082,-0.7191396192647517,-0.40984338661655784,0.6285056904889643,-0.5471808556467295,-0.006737325806170702,-0.5823009554296732,0.8169677266851068,-0.90249067498371,-0.9854049291461706,-0.4972759364172816,0.03382229432463646,0.6028619837015867,-0.14743161015212536,0.7673304094932973,-0.8959440761245787,-0.4023087527602911,-0.7453204109333456,-0.09082628972828388,-0.18642656039446592,-0.4896714077331126,-0.1016974663361907,0.4798326096497476,-0.687328711617738,-0.4556160308420658,0.41224348079413176,-0.2832065001130104,-0.9229476675391197,-0.18380720540881157,0.7966159181669354,-0.3303994480520487,-0.6098721199668944,0.7480682656168938,0.023402239196002483,0.7221722826361656,-0.12398794200271368,0.4324332792311907,0.34893503971397877,0.18443218944594264,-0.22406684700399637,-0.2207148615270853,-0.2810665867291391,-0.6509861755184829,0.6989268572069705,0.9715540162287652,0.13382660690695047,-0.793579051271081,-0.6244756770320237,-0.792668498121202,-0.2005982780829072,0.5276681031100452,-0.928688277490437,0.7981263296678662,-0.7799523677676916,0.7953595607541502,-0.20533095207065344,0.748065032530576,0.06431242264807224,-0.65968446014449,0.24883098201826215,0.8442306532524526,-0.33893034188076854,0.5791017306037247,0.5109073100611567,-0.07637185184285045,0.5418235049583018,0.6830530525185168,0.8091281126253307,0.7850969438441098,0.5852772989310324,0.16494061332195997,0.19734372152015567,0.32382798893377185,-0.04955557594075799,0.21056301100179553,-0.5756243276409805,-0.8349338695406914,-0.05546362977474928,0.9414975862018764,0.7241377662867308,-0.07045330805703998,-0.29183782637119293,0.44983359752222896,0.8708008578978479,-0.6653652703389525,0.5747874700464308,0.7972143958322704,-0.5742230461910367,-0.806152724660933,0.5450569875538349,0.9162988062016666,-0.8814664138481021,0.3887386955320835,-0.5961992247030139,-0.14475526055321097,0.3681405992247164,0.732735248748213,-0.7903963290154934,-0.592485286295414,-0.4376410460099578,-0.5260089500807226,-0.9644155912101269,-0.6545298136770725,0.8671036013402045,0.19034785637632012,-0.500303175766021,0.6356143178418279,0.4897484225220978,0.6272870367392898,-0.060156204272061586,-0.8896393701434135,-0.5945351789705455,0.2291491385549307,0.013701871503144503,0.9665590757504106,0.3287171903066337,-0.035383809357881546,0.9786337749101222,0.7188123571686447,-0.19719153130427003,-0.7394545204006135,-0.3772439011372626,-0.29801773512735963,-0.39924251288175583,0.984980296343565,0.6742530502378941,0.5253359810449183,0.2704864894039929,0.5345190512016416,0.7021370218135417,-0.8956746063195169,0.27640839479863644,0.2715051034465432,-0.2509545930661261,0.8879125495441258,0.020967624615877867,-0.366946280002594,0.16323304269462824,0.07021021982654929,0.9735035733319819,-0.6293889596126974,-0.8493770170025527,-0.5765383215621114,0.5102681093849242,0.8247406333684921,-0.2785113244317472,-0.7520184265449643,-0.24457663390785456,-0.875777707900852,-0.5716305603273213,-0.20330491103231907,0.1339278225786984,0.06658378336578608,0.2799138235859573,0.6043654619716108,-0.7734240884892642,-0.0748047037050128,0.15211159689351916,0.7603623881004751,-0.9031455591320992,-0.3390253814868629,-0.5047601968981326,-0.16064027696847916,0.9935825630091131,0.6115237926132977,0.3182624392211437,-0.626580732408911,-0.9750239453278482,0.3287964924238622,0.9917868911288679,-0.48541729198768735,-0.5957776070572436,0.11855801893398166,0.49878176115453243,-0.8915466032922268,-0.08745747851207852,0.38895966298878193,-0.26682140678167343,-0.39690581150352955,-0.3298205635510385,0.30711468681693077,-0.18031048029661179,0.18651497922837734,0.46121716452762485,-0.29063298273831606,-0.5078469067811966,-0.23475466761738062,-0.4749356866814196,-0.20398120814934373,-0.026470820885151625,-0.25236346339806914,0.9494894547387958,-0.6803009626455605,0.47645434318110347,0.9443760835565627,-0.792415065690875,0.32064968394115567,-0.9595603784546256,0.8592827459797263,0.5682460824027658,-0.3733229460194707,0.7785263736732304,0.06450561620295048,0.08520757174119353,0.041823552921414375,-0.044031260535120964,-0.4598532556556165,-0.1440444067120552,-0.7460584724321961,0.6266890419647098,0.6732517476193607,0.3816505749709904,0.8334578797221184,-0.044697485864162445,-0.6852791705168784,0.4873803686350584,0.7897599991410971,0.009494162164628506,0.043348461389541626,0.7323252218775451,-0.8779529286548495,0.5990449995733798,-0.8638232913799584,0.35276086116209626,-0.47310179518535733,0.5785321122966707,0.1766688018105924,-0.13377562258392572,-0.9883904568850994,-0.5563415857031941,0.6414344660006464,0.9630613857880235,0.31478322809562087,0.12317532114684582,-0.8344650510698557,-0.17774197552353144,-0.5210822545923293,-0.19808253971859813,0.6619548909366131,-0.22434386797249317,-0.2381347813643515,-0.4791062627919018,-0.8541705058887601,0.20521686598658562,0.6583222849294543,0.26459092181175947,-0.05900947796180844,-0.5523223979398608,0.5944205885753036,-0.6298573771491647,-0.9665789986029267,-0.6307564368471503,-0.3541477136313915,0.5443892739713192,-0.7263167202472687,-0.24714109720662236,-0.6450336021371186,0.9353777715004981,0.1535017848946154,0.3356196512468159,-0.436142738442868,0.1526780859567225,-0.49738140869885683,0.0483572194352746,0.3607585309073329,-0.894442689139396,-0.07639239402487874,-0.32626562006771564,-0.6060018255375326,-0.6351377186365426,0.514489165507257,-0.20470737013965845,0.8264325964264572,-0.09896523505449295,0.49034929275512695,0.4777202568948269,0.9330223388969898,-0.9036336936987936,0.3865716578438878,-0.9085572739131749,0.2554429364390671,0.5288701290264726,0.04710426786914468,-0.4677316998131573,0.03338203066959977,0.6580682266503572,-0.2286015823483467,-0.960022856015712,-0.2805851469747722,-0.0645934040658176,-0.574168604798615,-0.2487355791963637,-0.02438627276569605,0.08362455293536186,0.5950761917047203,0.12373419804498553,-0.27797047700732946,-0.6991292680613697,-0.055246252566576004,0.4559416174888611,0.7382890596054494,0.03097537811845541,-0.21340173156931996,-0.48220060020685196,-0.9371656482107937,-0.2749154670163989,0.37935098586604,0.9206016650423408,0.6933231027796865,0.3225571266375482,0.17423839680850506,-0.01576762506738305,0.826033522374928,0.3989096349105239,0.9822661494836211,0.18853958137333393,-0.323500731959939,0.22267079958692193,-0.43566881818696856,-0.9084268012084067,0.7157539469189942,-0.5833893595263362,0.19338026084005833,-0.8197613689117134,0.8137213601730764,-0.13263936853036284,0.42515142261981964,-0.16302180709317327,0.7916187345981598,0.4311997448094189,-0.27704401034861803,-0.8644327842630446,-0.18337878957390785,0.36641071643680334,-0.4062506416812539,0.18505126284435391,-0.05846534110605717,0.8657314786687493,-0.10295598674565554,-0.03755684057250619,-0.0834499285556376,0.426539677195251,0.28544050827622414,-0.0030033597722649574,0.621253895573318,0.7610971862450242,0.39497328037396073,0.4639556407928467,0.7779746153391898,0.2666382286697626,0.3581193769350648,-0.24574250960722566,-0.018209082074463367,0.5503497635945678,-0.5780066242441535,0.23310938524082303,0.45930334320291877,-0.39172053430229425,0.6056348890997469,0.9384402791038156,-0.10796655155718327,-0.09517345204949379,-0.05099755572155118,-0.900567268487066,-0.892345960251987,-0.6382389450445771,-0.5036998274736106,0.1605996387079358,-0.4264967627823353,-0.8283091736957431,-0.5942128142341971,-0.029658939689397812,-0.5328243914991617,-0.5289927516132593,0.2573448531329632,-0.4981734724715352,0.6399261844344437,0.295755875762552,0.04323198227211833,-0.19284535571932793,-0.42924725776538253,0.892369772773236,-0.29648249642923474,-0.9711728491820395,-0.6567391557618976,0.17664614925161004,-0.6073150825686753,0.0025865640491247177,-0.7470663525164127,0.03271540300920606,-0.18695017416030169,0.8530535739846528,0.40344168385490775,0.42306898813694715,-0.17564149340614676,0.21870697243139148,0.8937628292478621,-0.32735759019851685,-0.7039840002544224,0.13916335441172123,0.12745871767401695,0.3298017433844507,0.07145473128184676,-0.42831017822027206,-0.7446012482978404,0.8441405459307134,-0.4231588211841881,-0.11251560458913445,-0.5739545272663236,-0.33945829747244716,0.06833245418965816,-0.5625885222107172,0.1709051514044404,-0.524776253849268,0.7103189281187952,0.4087784308940172,0.02288404479622841,-0.8703875886276364,0.47616458777338266,0.8218010268174112,-0.0492768413387239,-0.43479161290451884,0.011700602248311043,0.1707262760028243,-0.7141743963584304,0.30608053505420685,0.6911560948938131,-0.3827055571600795,0.530323953833431,-0.6652659997344017,-0.7488430407829583,0.02152167074382305,0.3886525616981089,-0.0756188496015966,-0.8010147348977625,-0.20756066078320146,-0.17963667027652264,0.020951666869223118,-0.7162266531959176,-0.5882722842507064,0.5487655410543084,-0.18586819432675838,-0.9099391861818731,0.4249162571504712,-0.11035445984452963,-0.3634686800651252,-0.6840672362595797,-0.26563634537160397,0.32274075876921415,0.41904423478990793,0.541247483342886,-0.40008762711659074,0.5416986611671746,-0.00787218939512968,0.17460340447723866,0.7333667362108827,0.4240930979140103,-0.34899652330204844,0.8736366732046008,0.015326833352446556,0.2817149022594094,0.2517345380038023,0.031548835802823305,-0.2767033111304045,0.00968037685379386,-0.04431297816336155,0.8359959432855248,-0.7816931833513081,-0.04878758080303669,-0.6924521578475833,-0.4730236199684441,0.8838228150270879,-0.9824304487556219,-0.6091523733921349,0.24004074465483427,0.6331002181395888,0.36657111858949065,0.956693041138351,0.8060292075388134,-0.5419767824932933,0.503372264560312,-0.015048937406390905,0.8522312832064927,0.304611231200397,-0.960471689235419,0.33314169151708484,-0.36606703186407685,0.9896243107505143,0.13532165624201298,-0.6369660659693182,0.5332245384342968,0.5581032461486757,-0.24646009970456362,-0.558096881955862,-0.8002028306946158,-0.06026867125183344,-0.7359372484497726,-0.14937146520242095,-0.24808497726917267,-0.7823467943817377,0.19213984441012144,0.6769657353870571,-0.8804910616017878,-0.06658278498798609,-0.7379912184551358,0.11494511505588889,-0.5084486403502524,0.04067608900368214,0.6231337292119861,-0.41623007971793413,-0.019666999112814665,0.9589920262806118,0.43686749460175633,-0.23712003510445356,-0.6334188799373806,0.15483115334063768,-0.3694667564705014,0.8282777643762529,0.5642427154816687,-0.6293948255479336,0.9508948936127126,0.17184934066608548,-0.21021111775189638,-0.1517874738201499,0.6149795241653919,-0.5903038396500051,-0.26125972205772996,0.25750573445111513,-0.4672774546779692,0.028074946254491806,-0.3989699031226337,-0.9970395690761507,0.8309294106438756,-0.8750248751603067,0.8239596667699516,0.92654799669981,-0.9430316360667348,0.2118191714398563,0.8886234476231039,0.28062667418271303,-0.6229113787412643,-0.9188655423931777,0.5899601387791336,-0.6225815112702549,0.8593666688539088,-0.9730390878394246,-0.23229309171438217,-0.839222249109298,0.16457368014380336,0.6678701313212514,0.12496598996222019,0.7723083198070526,0.847429325338453,-0.9282269617542624,-0.7390213711187243,0.03779522003605962,-0.14536564890295267,0.6151671432889998,-0.8100725375115871,0.3886716687120497,-0.36939608259126544,0.12090404983609915,-0.7698099263943732,0.14161599054932594,0.6484821122139692,-0.17310181260108948,-0.4612298025749624,0.4647067887708545,-0.15395758394151926,-0.30342854745686054,0.5490197511389852,-0.04344375804066658,-0.4615275892429054,-0.3123733992688358,-0.305006958078593,-0.7918223161250353,-0.949779643677175,0.4554068152792752,0.8623076351359487,-0.5103124934248626,0.9220718801952899,0.3131344495341182,0.2209128295071423,0.8539540804922581,0.5357025722041726,0.3973549506627023,-0.9302759543061256,-0.9678512415848672,0.9599153934977949,-0.1581133222207427,-0.03391421074047685,-0.38063465896993876,-0.5910880225710571,0.5970756346359849,0.5767626501619816,0.5271502025425434,-0.07111530750989914,0.2755566160194576,0.6350198201835155,-0.04215684253722429,-0.7095690220594406,-0.761997967492789,0.44981862884014845,-0.06523884693160653,0.25292855268344283,-0.6220552097074687,-0.23251588316634297,0.08882543677464128,0.808447181712836,0.39745210902765393,-0.2666087206453085,-0.339443885255605,-0.7274068631231785,0.8869318068027496,-0.8776174769736826,-0.5237514702603221,0.5185437342152,0.38865324249491096,0.16069574328139424,0.27444674680009484,0.014758307952433825,-0.9803391140885651,0.9253878085874021,-0.34089423157274723,0.04686225298792124,-0.11522383289411664,-0.9329762463457882,-0.8125407169573009,0.5604572738520801,0.07774627022445202,0.7032752959057689,-0.8802231582812965,-0.9606702122837305,-0.9848840557970107,0.6611764528788626,-0.43098488450050354,-0.9204393718391657,-0.15641738241538405,0.8880938622169197,-0.20540555845946074,0.5427044685930014,0.579614338465035,0.46018012752756476,-0.6009384472854435,0.2152021354995668,0.6089462642557919,0.6025898926891387,0.4315338768064976,0.831304713152349,-0.606699401512742,0.6940484927035868,-0.32512390799820423,-0.938904897775501,-0.689508780837059,0.5720585864037275,0.7445070645771921,0.9002878838218749,0.8332539601251483,-0.9803850818425417,0.26474419655278325,-0.27436090307310224,0.10085576912388206,0.8284118240699172,0.33034489257261157,0.7249873364344239,-0.06557118520140648,0.9443282536230981,0.7515132115222514,0.6889272909611464,-0.650471291039139,-0.7546316627413034,-0.5638909200206399,-0.8634881093166769,0.5510597783140838,0.5044796671718359,-0.4694346310570836,-0.19795733084902167,-0.5627112393267453,0.35181236593052745,-0.5941193345934153,0.6045498554594815,0.550165930762887,0.016830355394631624,0.26058903289958835,-0.9339073006995022,-0.5815246482379735,-0.2824209635145962,-0.37454009242355824,0.944724980276078,0.15955276926979423,-0.9646940999664366,-0.674520549364388,-0.8974595936015248,-0.6754843206144869,0.3384195822291076,0.13860897393897176,0.41625172505155206,0.6119901668280363,-0.6531804618425667,-0.9453984647989273,-0.09571626130491495,0.5095016420818865,-0.7848868509754539,0.8293562331236899,-0.8974444391205907,0.9587074373848736,0.6837633145041764,-0.310144049115479,-0.45173654705286026,-0.872424278408289,-0.3179847844876349,0.5299167013727129,-0.169507650192827,0.3098487569950521,-0.10913476254791021,0.8733875793404877,-0.016449646558612585,-0.3342923899181187,-0.3279447639361024,-0.769738694652915,-0.6692318427376449,-0.9904753053560853,0.7927843756042421,-0.4333921857178211,-0.31734086526557803,0.34480369044467807,0.723499852232635,0.9461622554808855,0.4024880058132112,0.8695770585909486,-0.7108688768930733,-0.024940792005509138,-0.8965675686486065,-0.7428985247388482,-0.5635124458931386,0.11073241150006652,0.11231643799692392,-0.09710661042481661,-0.6477250964380801,0.9871494504623115,-0.8949490371160209,0.294368757866323,0.8266763770952821,0.17279045283794403,-0.8620357690379024,0.8856347645632923,-0.9874919182620943,-0.894617177080363,-0.08988996269181371,0.47484105359762907,-0.892368876375258,0.7005875357426703,0.1988773923367262,-0.8604103159159422,0.29206933733075857,-0.8945041727274656,0.06640395056456327,-0.058701992966234684,0.22730669658631086,0.4416795107536018,-0.6059179361909628,0.07125854212790728,0.6939634033478796,-0.11938347527757287,0.7809713068418205,0.9560769009403884,-0.7315647518262267,0.027098862919956446,-0.278241413179785,0.47657492430880666,-0.4066898883320391,0.8675441918894649,0.6563895619474351,0.5022903331555426,0.24535998422652483,0.19014885695651174,0.59726044209674,0.30142136104404926,0.5812030974775553,0.9461819874122739,-0.7719031125307083,-0.3983695902861655,-0.8316452987492085,0.9670656891539693,-0.0671975095756352,-0.5802862145937979,-0.6384901171550155,0.6053596716374159,-0.044395371340215206,0.5244738049805164,0.31790846306830645,-0.3744368916377425,0.34416677337139845,-0.335358327254653,0.3539986298419535,0.32305668061599135,-0.31186877470463514,0.3839763505384326,0.9062607092782855,-0.042277553118765354,0.5401188083924353,-0.6875426988117397,0.6399333239533007,-0.24257200490683317,0.5223802421241999,-0.689968551043421,-0.6676312573254108,0.5527364700101316,-0.7933929674327374,-0.16446983627974987,-0.08934616530314088,-0.39282395225018263,-0.6294128648005426,-0.21640276024118066,-0.23236309411004186,-0.43372366670519114,0.037336400244385004,0.06597004551440477,-0.9283692496828735,0.4862841279245913,0.3396621160209179,0.5649738213978708,-0.9328359174542129,0.1447456548921764,0.9600546602159739,-0.033498325385153294,0.9992952472530305,0.8716824948787689,0.6942951702512801,-0.8150682845152915,0.5161209348589182,-0.8710211897268891,0.6793412170372903,0.09519825829192996,-0.8524575387127697,0.9176312098279595,0.5084594334475696,0.45345756271854043,-0.11420590104535222,0.8526376984082162,0.5384590909816325,0.9313226100057364,-0.08328911010175943,-0.6619506771676242,-0.24224146641790867,0.9315707869827747,-0.5280028851702809,0.2728491318412125,-0.6216909466311336,-0.943686849437654,-0.6028417171910405,-0.21603132924064994,-0.6037776609882712,0.44578906428068876,0.6004739282652736,-0.4496888630092144,-0.7401355551555753,-0.5899245017208159,-0.3311786246486008,0.11195024475455284,0.307170910295099,-0.3293082579039037,-0.9496492594480515,0.8396283178590238,0.5682857846841216,-0.2081281109713018,0.0932432459667325,-0.4843916199170053,-0.06136714853346348,-0.8638043254613876,0.5508669167757034,-0.640853117685765,0.8078890978358686,-0.13828395446762443,-0.4669798566028476,-0.17644155491143465,0.033733722288161516,0.8112024101428688,0.6453110082075,0.9975135033018887,-0.7676040777005255,-0.5389227429404855,0.6211498519405723,0.9350357274524868,0.9189338255673647,0.23585328832268715,-0.7317257458344102,-0.5618500914424658,-0.10630887467414141,-0.9399615698494017,-0.0849093864671886,-0.495495252776891,-0.5659234272316098,0.7730526626110077,-0.45362068992108107,0.3957079369574785,-0.6481098630465567,-0.6016317382454872,0.6814810875803232,-0.5653858529403806,0.39865253679454327,-0.9480058313347399,-0.12861028779298067,-0.9112379206344485,0.521031298674643,-0.006556264124810696,0.9658035701140761,-0.02869528904557228,0.5089639406651258,-0.11050211219117045,0.6024158792570233,0.7512113773263991,0.7527899234555662,-0.5287761641666293,0.1115457252599299,-0.07379700476303697,0.4278343920595944,-0.18985728966072202,-0.8050832655280828,0.8065732289105654,0.20510493870824575,0.4980334839783609,-0.04113585129380226,0.3358082384802401,-0.0717553161084652,0.12943983869627118,-0.1438889605924487,0.5029119201935828,-0.09990366967394948,-0.37749930517748,-0.7049898477271199,-0.8353315354324877,0.718608170747757,0.8794148531742394,0.1818096931092441,-0.6593775018118322,0.37222424428910017,0.7621293589472771,0.9226198452524841,0.4350459324195981,0.9604253619909286,0.8614729661494493,0.4456629129126668,-0.9353388678282499,0.8641658276319504,-0.8470138856209815,-0.12785846460610628,-0.72814707364887,0.932566961273551,0.49904952151700854,-0.04577162303030491,0.030337306205183268,-0.10841257171705365,0.9533716472797096,-0.2762616891413927,0.7515601818449795,0.9885621010325849,0.7627566638402641,0.48975427355617285,-0.9035808928310871,0.7857127659954131,-0.9323474806733429,0.5407271343283355,0.7856604652479291,0.39744245121255517,-0.41625747736543417,-0.27548577217385173,0.6101173008792102,0.08492785971611738,-0.04819994606077671,0.6219355650246143,-0.7074696752242744,-0.18963027792051435,0.44485131558030844,-0.8449812280014157,-0.8802489065565169,-0.4017846076749265,0.9384485683403909,-0.2804973181337118,0.09194123046472669,-0.6173467328771949,0.6422106791287661,-0.9906413978897035,-0.40078931488096714,-0.9158291798084974,0.1741342325694859,-0.9904261552728713,0.04852419951930642,0.9833410368300974,-0.3217217265628278,-0.6822208403609693,-0.3888077395968139,-0.39178673923015594,-0.6220302665606141,0.8932388848625124,-0.7806389057077467,0.5410351483151317,-0.9589959722943604,0.7037288937717676,0.6868615597486496,-0.8910629595629871,-0.7408703616820276,-0.8470433964394033,-0.4081867402419448,-0.40524386102333665,0.38437428744509816,-0.5491870078258216,-0.8579975650645792,-0.7064590938389301,0.647046968806535,-0.44395182142034173,0.6040824144147336,-0.7409183452837169,-0.9439744860865176,-0.6309836418367922,-0.7945797685533762,0.6200288562104106,-0.6394957206211984,0.7377835246734321,-0.1230142479762435,0.2453570021316409,0.9357465822249651,-0.9326613391749561,-0.748641224578023,-0.09749419707804918,0.34856488602235913,0.2786126546561718,-0.9563497542403638,-0.9186305338516831,0.5545202591456473,-0.7619600486941636,-0.6793644707649946,-0.7570662549696863,-0.005360904149711132,-0.958298787008971,0.3901901007629931,-0.05982536496594548,0.5177097348496318,-0.748106540646404,0.21096418984234333,0.7915649409405887,-0.039024616591632366,-0.6799004534259439,-0.005749240517616272,-0.710888764820993,-0.8992519928142428,-0.37961924728006124,0.13686018902808428,-0.0821083290502429,-0.45698452601209283,0.7979878438636661,0.9519996158778667,0.8335819789208472,0.9796673646196723,0.6598531794734299,0.5421558497473598,-0.8627364984713495,0.23686056910082698,0.6665742197073996,-0.6985677890479565,-0.04595529427751899,-0.5552819636650383,-0.17232096148654819,-0.8518541753292084,0.34899875707924366,-0.35194707242771983,-0.9607626758515835,0.587178704328835,0.3624391141347587,0.4205147251486778,0.26770989084616303,0.10364735731855035,-0.08787525072693825,0.9830304486677051,-0.5197919658385217,-0.15528808860108256,-0.9546435703523457,-0.24128816090524197,0.975588524248451,-0.7935887621715665,-0.8433542642742395,-0.06992838904261589,0.24955509137362242,0.30743945855647326,-0.014692193828523159,0.4676720886491239,0.8976528444327414,-0.9285600711591542,0.3375732647255063,0.7718542241491377,0.11042742384597659,-0.594188014511019,0.45409244019538164,0.06803420512005687,0.5681012109853327,0.252323601860553,-0.17667081579566002,-0.8812429555691779,0.6826969957910478,0.27509020594879985,-0.5167266358621418,0.8277873499318957,0.13998268591240048,0.4334707371890545,0.5960098267532885,0.04099812684580684,0.5643591610714793,-0.2515108180232346,-0.5997102912515402,-0.6859505446627736,-0.8616709844209254,0.09893468488007784,0.7168822246603668,0.6470285397954285,-0.9616094194352627,-0.8125260421074927,0.09722738992422819,-0.8020070577040315,0.5307404566556215,0.05387639533728361,-0.05360483517870307,0.46908349450677633,0.4976338157430291,0.5479994365014136,-0.969286504201591,0.9144912883639336,0.10387752251699567,0.7566074668429792,-0.5920600756071508,-0.051586535293608904,-0.9455666630528867,0.15507687581703067,-0.11458407808095217,0.7092175120487809,0.8468732661567628,-0.9051684122532606,0.9368691546842456,0.020061580929905176,0.7546963766217232,-0.15487614087760448,0.4805629327893257,-0.4228631043806672,0.24127772636711597,-0.6635888172313571,0.04023054055869579,-0.29085235809907317,-0.24563477654010057,-0.19695520028471947,0.06677289307117462,0.9666094402782619,0.38871517591178417,-0.21813220158219337,0.4949653767980635,0.7485668645240366,-0.08600727329030633,-0.24248014437034726,0.7676874189637601,0.08563492633402348,-0.6035957750864327,0.872066390234977,-0.7746352856047451,0.8384773870930076,-0.09724947437644005,-0.9606897495687008,0.5937653328292072,0.5891115725971758,-0.45901545649394393,0.2524023409932852,0.6641038819216192,0.8772506332024932,-0.33343871450051665,0.3718040883541107,-0.3555652108043432,-0.6682405965402722,-0.504192459397018,-0.757285023573786,0.9466591598466039,0.5460902871564031,0.7323865937069058,0.4560884847305715,-0.841887122951448,-0.18938208278268576,0.35849431110545993,0.6474547991529107,0.3449466577731073,-0.7872140486724675,0.23570376122370362,-0.9500661040656269,-0.7610781523399055,0.25786691159009933,0.41764821112155914,-0.20108175138011575,0.35587658919394016,0.4223228660412133,0.25851805275306106,-0.7586994995363057,-0.5677959020249546,-0.541743082460016,-0.25079224025830626,0.07556974422186613,0.6900972360745072,0.07347575621679425,0.3571398202329874,0.8617223636247218,-0.9602146376855671,-0.3738663485273719,0.06584177957847714,0.6258702436462045,0.8381112399511039,-0.9560369295068085,0.8798424499109387,0.7309064995497465,0.020690042059868574,-0.20731291873380542,0.41761619597673416,-0.10257225576788187,0.30654409201815724,-0.11493881698697805,0.9839741662144661,0.08059393707662821,-0.07222059136256576,0.2233899747952819,0.5426577785983682,-0.6262871767394245,0.7813742221333086,-0.9224538491107523,-0.130218300037086,0.2996483729220927,-0.3919576318003237,0.7723132413811982,0.09177100658416748,-0.8319719480350614,0.36560051143169403,-0.6382771637290716,0.44024210423231125,0.21130643039941788,-0.058211319614201784,-0.2693122699856758,-0.17254467587918043,0.6356174498796463,0.5540891885757446,0.8719869558699429,-0.8344299793243408,-0.39365761866793036,-0.8775227149017155,-0.575435764156282,-0.324924997985363,0.009906409308314323,-0.9187791184522212,0.97666385024786,0.21667163353413343,0.607143291272223,-0.500278149265796,-0.5248144781216979,-0.08403604803606868,-0.4367283354513347,0.9506487199105322,-0.8591661336831748,0.5542153189890087,0.4950590552762151,-0.9232519874349236,0.9370661433786154,-0.48706560488790274,-0.5234283641912043,0.3053646651096642,-0.7557394038885832,-0.05135969305410981,0.6733187008649111,0.5946786548011005,-0.9069690420292318,-0.9384939586743712,-0.07965929200872779,0.5934601235203445,0.24538817023858428,0.21383500192314386,-0.8169600581750274,-0.682459601201117,-0.8959631370380521,-0.26905258279293776,0.499784073792398,0.28911332646384835,-0.5056318361312151,-0.15163965104147792,-0.4701402843929827,-0.8624603874050081,-0.6127878483384848,-0.39440279407426715,-0.317587464582175,-0.5148482411168516,0.9947440759278834,-0.22483699535951018,-0.2956191757693887,0.08760921051725745,-0.026275340002030134,-0.6365312631241977,-0.7167555307969451,0.9405848141759634,0.3023248859681189,0.7023555254563689,-0.11709602596238256,-0.8275088770315051,0.9229396032169461,0.5429518059827387,0.5534461801871657,-0.4539895411580801,-0.5967895705252886,-0.9051655447110534,0.9938071016222239,0.8837979789823294,0.9575236989185214,0.060709608253091574,-0.690541036427021,0.48150918912142515,0.8477803380228579,0.7354062236845493,-0.7462277384474874,-0.7320040836930275,0.7580165155231953,0.47256502229720354,-0.7143552736379206,-0.778354259673506,-0.7476958138868213,0.6664143530651927,-0.268602074123919,0.13327064365148544,0.9742934512905777,0.9190402897074819,0.7646662150509655,0.2179756169207394,-0.5859398045577109,-0.7947796029038727,-0.38536463351920247,-0.3890061271376908,-0.38363294722512364,-0.6149984980002046,0.163743338547647,0.9810787164606154,-0.7182121030054986,0.11183440731838346,-0.5292271468788385,-0.1766421990469098,0.7699182364158332,0.7773761292919517,-0.1290079178288579,0.87979497294873,-0.2726951716467738,-0.6302865371108055,-0.4824720360338688,-0.9637716608121991,0.664084947668016,-0.018913417123258114,0.7389705725945532,0.8901366842910647,0.162703990470618,-0.22428077971562743,-0.34087702352553606,-0.29440526897087693,0.39542021229863167,0.27204424841329455,-0.36760696256533265,0.9759027417749166,0.4327061655931175,0.7815969632938504,-0.10801410768181086,0.2620825725607574,0.5041288966313004,0.9915607562288642,0.14701949059963226,-0.8608243190683424,-0.500727950129658,0.11696641845628619,0.24161872081458569,0.6045759622938931,0.9540266543626785,0.48044285411015153,0.6547653502784669,-0.10383455036208034,-0.0513447979465127,-0.9911491009406745,0.3121797810308635,-0.10865532932803035,0.8068919372744858,0.2608993714675307,0.8315129010006785,0.643134908284992,-0.9659811942838132,0.25263315718621016,0.15143209835514426,0.6538875866681337,0.9130887272767723,0.9133446249179542,0.29648830415681005,0.3180134240537882,-0.676247569732368,0.9544124570675194,0.6414097752422094,0.8640510677359998,0.0614411742426455,0.962944885250181,0.5183928511105478,0.6860673800110817,0.4051405997015536,0.5177949466742575,0.6278056195005774,-0.5122293857857585,0.4456936279311776,-0.36064902460202575,0.4048834233544767,-0.43692979821935296,-0.15601802757009864,-0.315841109957546,-0.8904546881094575,-0.4323996496386826,-0.9189510610885918,-0.4477641964331269,0.7183586903847754,-0.8894090410321951,0.35305985109880567,0.10963123524561524,0.15789230959489942,-0.5628989534452558,-0.5221867272630334,-0.626533028203994,-0.7204635567031801,-0.4495679894462228,0.8998669567517936,0.06574744824320078,-0.8524542101658881,-0.029767848551273346,-0.8568591447547078,0.2245539971627295,0.3460133410990238,0.13880710396915674,0.6917210691608489,-0.510468696244061,-0.08559693628922105,0.7060930947773159,-0.23815351305529475,-0.8583861785009503,0.16356069687753916,0.5028894767165184,-0.972073792014271,-0.7693806388415396,-0.4933649725280702,0.613732788246125,0.5303761507384479,0.39065237203612924,0.14265274722129107,-0.01884640147909522,0.35848649125546217,0.7593795731663704,-0.7283861804753542,-0.34044779697433114,0.07085618190467358,0.39143808651715517,0.8136023893021047,-0.34035790152847767,0.5000109761022031,0.9985908842645586,-0.9017997579649091,-0.17343015410006046,0.689055675175041,-0.08850355492904782,0.09771913103759289,0.1297642053104937,0.1813157550059259,-0.3035031883046031,0.20494956569746137,-0.17707316624000669,0.39769997959956527,0.48698714515194297,-0.9452316528186202,-0.83148207468912,0.031051477883011103,-0.2944479789584875,0.08351983735337853,-0.23379339464008808,-0.7392754452303052,0.6380337099544704,0.08395033935084939,0.4333822834305465,0.9251525951549411,-0.3724377783946693,-0.35785169107839465,-0.7532118503004313,-0.8884168937802315,0.6133636883459985,0.5146350460126996,-0.5243466165848076,0.16771708941087127,0.361352798063308,-0.49006212409585714,0.8519723014906049,0.6994731514714658,0.8950082273222506,0.1746130222454667,-0.5594711424782872,-0.020974005106836557,0.6928783804178238,-0.37044421024620533,0.63089490076527,-0.5802428582683206,0.3771580243483186,-0.13030749652534723,0.22883204091340303,0.7952409172430634,0.7648646873421967,-0.7172171771526337,-0.10137462196871638,0.343153000343591,0.6319824336096644,0.1520845890045166,0.024436235893517733,-0.18385204672813416,0.13448284100741148,0.5146390125155449,-0.6558624804019928,0.9815951329655945,-0.03656261134892702,0.5391482380218804,0.18548155948519707,0.7975860852748156,-0.7919470183551311,-0.2036708602681756,0.43158132722601295,0.6355587779544294,0.17084912536665797,0.1344425892457366,-0.07404880644753575,0.15192060358822346,0.927476835437119,0.63117860769853,0.8371509648859501,-0.806636864785105,-0.0026276730932295322,-0.6881343321874738,0.42646305495873094,0.07925398461520672,-0.45197593327611685,0.09897955134510994,0.819022374227643,0.7818005988374352,-0.13060817820951343,0.08822590811178088,0.6201636325567961,0.6257534949108958,0.021210147067904472,-0.9020708599127829,-0.07278573885560036,-0.5753556122072041,0.8238862003199756,0.16655719885602593,-0.9781552315689623,0.8551252959296107,-0.7927370280958712,0.33410567278042436,0.12626869836822152,-0.648424465674907,0.31040477193892,-0.6240943414159119,-0.6310594095848501,0.6493404759094119,-0.8214383516460657,-0.7882808153517544,-0.3721615825779736,-0.8548423242755234,-0.1817192086018622,0.32798135839402676,-0.10671715764328837,-0.9675041106529534,0.8263164260424674,-0.2521894262172282,0.6117450227029622,0.7859336091205478,-0.7721139034256339,-0.26873687049373984,0.03723777364939451,0.7430278277024627,0.3476531305350363,0.8283561985008419,0.9420653632842004,-0.5062775607220829,0.41005516797304153,-0.4707159185782075,-0.3467707154341042,0.8391990223899484,0.31743154022842646,0.45414748741313815,-0.6130250277929008,-0.3736264118924737,0.9730477053672075,0.9440026967786252,-0.32234775507822633,0.9711352470330894,0.9814969385042787,0.7691939081996679,0.6842974838800728,-0.13228283263742924,0.801885336637497,0.5420100474730134,0.9451994546689093,-0.42345495289191604,0.7066108337603509,-0.8420363953337073,-0.5138385472819209,-0.29824104672297835,-0.07377227302640676,-0.748798861168325,-0.9219200620427728,0.7590546235442162,-0.22521510673686862,-0.4657673677429557,0.140486944001168,0.4809069321490824,-0.232209341134876,0.6568321520462632,0.9039623406715691,-0.9212458482943475,-0.1051732674241066,-0.3499041930772364,-0.6825935170054436,0.9143377519212663,-0.4478080226108432,-0.5264909998513758,-0.9385484522208571,-0.7607036815024912,-0.06428965274244547,0.36996446549892426,-0.41223257780075073,-0.9608779614791274,-0.8482705019414425,0.40760640939697623,0.47202475694939494,0.3303361707367003,-0.2045869310386479,0.6149338069371879,-0.2134743225760758,-0.4626401453278959,-0.42758491402491927,-0.3355606929399073,-0.7127799591980875,0.11735156830400229,0.5569095318205655,-0.44033760763704777,0.37682241946458817,0.2187321395613253,0.7468886086717248,0.4327819384634495,-0.46799977822229266,-0.18822265369817615,0.9803507896140218,0.5132305379956961,-0.07136618345975876,0.284371470566839,0.8543162569403648,-0.45626934990286827,0.6271068966016173,-0.8038931903429329,-0.6508341687731445,-0.7043786151334643,0.8836585758253932,0.4978321664966643,0.6579171451739967,0.34873874532058835,-0.9677547118626535,0.8946781177073717,-0.09557242691516876,-0.6757346265949309,0.7223902530968189,0.11575220851227641,0.8874625833705068,-0.47457468090578914,-0.5379834473133087,-0.7370454119518399,-0.6995421685278416,-0.13566605746746063,-0.8431289428845048,0.38512349454686046,-0.42018970008939505,-0.395302074495703,-0.009858428034931421,0.9971254332922399,-0.9239890282042325,0.8108068672008812,-0.9695985824801028,-0.000483781099319458,0.7037942772731185,-0.47907231329008937,-0.2441617688164115,-0.9069419638253748,0.014903044328093529,-0.03483630111441016,0.691986262332648,-0.18299587722867727,-0.19614335428923368,-0.6353297233581543,0.4610461676493287,0.03621930070221424,-0.9384974772110581,-0.030990857630968094,0.9005929296836257,-0.27058101864531636,0.40590977063402534,0.6932313232682645,0.04442731849849224,0.8711644033901393,-0.7364516290836036,0.2042004745453596,-0.9630856034345925,0.1326629971154034,0.03912414703518152,-0.33236213540658355,-0.7935404116287827,-0.15623593982309103,-0.09355838177725673,0.30203994177281857,0.1379361366853118,-0.22423587599769235,0.8521911166608334,0.22611320530995727,0.09552621841430664,0.7938860720023513,-0.5742167006246746,-0.22279956750571728,-0.7342235469259322,-0.34658211283385754,-0.05180947529152036,0.09035651199519634,-0.15113996947184205,0.20582326082512736,0.1653867056593299,-0.6636863080784678,-0.5168088176287711,-0.17307291692122817,0.8404859583824873,-0.7502387501299381,0.36661338340491056,0.7869710577651858,0.3297890508547425,0.4745244337245822,0.7468812502920628,-0.0477099078707397,0.6984288650564849,0.17011833610013127,0.4931959016248584,-0.5594552252441645,-0.5652307001873851,-0.47316471114754677,-0.11701742839068174,0.416203111410141,0.79824791662395,-0.21812346391379833,0.0811618990264833,0.7396519831381738,-0.1411142060533166,-0.8644694709219038,0.6234690770506859,-0.9996460690163076,0.4744988293386996,0.22097788844257593,0.4660555156879127,0.08690219093114138,-0.4335045632906258,0.8616796350106597,0.8098955731838942,-0.30784967308864,0.9012725437059999,-0.6640350734815001,0.23161569889634848,0.7595824562013149,0.20553855504840612,-0.14889046363532543,0.39998557744547725,-0.3724029576405883,-0.5212949947454035,-0.5850236737169325,0.6897749588824809,-0.8783191456459463,0.9229940506629646,0.4640754139982164,0.44083912298083305,-0.08915160223841667,-0.7058507562614977,0.8706101523712277,-0.4770368221215904,0.8837237115949392,0.35040382808074355,-0.7585833412595093,0.2773491251282394,0.8653035033494234,-0.5408193268813193,0.8788664760068059,-0.9161957022733986,-0.510620026383549,0.7457187031395733,-0.6591289420612156,0.48471806151792407,-0.4400752782821655,-0.3873816132545471,0.8517817896790802,-0.6952961687929928,-0.5868777330033481,0.9554064669646323,-0.35027788719162345,-0.6932581346482038,-0.06338510429486632,-0.7344329180195928,0.2599293254315853,0.693661586381495,0.6140986178070307,-0.4815963990986347,-0.2310299975797534,-0.17255975911393762,-0.987803750205785,-0.29162468761205673,0.9353214530274272,0.34591044019907713,-0.6333200503140688,-0.1964103472419083,0.1429736572317779,0.5760856536217034,0.3741636322811246,0.3952841595746577,0.8038076823577285,-0.9798499527387321,-0.9693895424716175,-0.9595917765982449,-0.5180242196656764,-0.04667592840269208,0.164855997543782,-0.23572759563103318,-0.15610097162425518,0.5746296015568078,0.5484035038389266,-0.1081194756552577,-0.4921637335792184,0.43665920570492744,0.9616667092777789,0.47155532520264387,0.3191821821965277,0.4654146428219974,0.24118733638897538,0.8733917977660894,0.14497020142152905,-0.8587565184570849,-0.4160298905335367,-0.11249858094379306,-0.17893863935023546,-0.5113196684978902,-0.5470279091969132,-0.03304372588172555,0.5350386966019869,-0.5481073125265539,0.7683973456732929,-0.3746772692538798,0.9402701668441296,-0.6442605098709464,0.9488261207006872,-0.33320095343515277,-0.1334849027916789,0.8170560440048575,0.14668877143412828,-0.7723499941639602,-0.9580266079865396,0.5975720910355449,0.97641885234043,0.10414096945896745,0.7407692582346499,-0.9829431218095124,0.7993674287572503,-0.5582738788798451,-0.4906899477355182,0.9641225305385888,-0.10468149790540338,-0.2733931518159807,-0.09575457125902176,0.04476590687409043,0.31640193797647953,0.45585060957819223,0.30416712583974004,0.41855623153969646,0.8591499668546021,-0.5430504307150841,-0.39058128697797656,0.589232231490314,-0.7495285272598267,-0.9339871355332434,-0.5711864461190999,0.31690550642088056,0.7316480334848166,0.9984798356890678,-0.8537271320819855,0.821949212346226,0.1525302487425506,0.9473616033792496,0.7565427264198661,0.8796874843537807,-0.6674887398257852,0.7080725752748549,-0.0700624817982316,0.7141815177164972,-0.7442145841196179,-0.69186872523278,-0.27536418475210667,0.48860034300014377,-0.1136504141613841,0.5910036894492805,-0.3731801654212177,0.6160490666516125,0.48690533032640815,0.6790287285111845,0.8009559414349496,0.7166821979917586,0.35927255311980844,0.8726185765117407,-0.7166952639818192,-0.17955033387988806,0.41238605370745063,-0.2729576309211552,0.8443567473441362,-0.4291107598692179,0.15754505014047027,-0.68200254580006,-0.14375224988907576,-0.39355668099597096,-0.3133652489632368,0.30184792168438435,0.5893138777464628,0.07883517956361175,0.3777619982138276,-0.7219055914320052,-0.1552459099330008,-0.46564367646351457,-0.3663268839009106,0.31641747104004025,0.37792507745325565,0.3524336409755051,-0.9819888295605779,-0.8451921958476305,-0.6634535961784422,-0.5500944899395108,0.6294179395772517,0.5207424415275455,0.1021216525696218,0.6670556389726698,0.7992853368632495,0.12538189394399524,-0.7765659759752452,0.5921654449775815,0.9161433521658182,-0.6978262588381767,0.2511079143732786,-0.6328742038458586,-0.6386569887399673,-0.42693384224548936,-0.10499430214986205,-0.6562082376331091,-0.5753005580045283,-0.08486526412889361,0.18128186650574207,-0.4339751531369984,-0.28003125358372927,-0.3535607219673693,0.01106921536847949,-0.028875865042209625,0.1556469202041626,-0.05682423152029514,-0.0739168613217771,-0.23660084744915366,-0.035195883829146624,0.3837576233781874,0.32946185721084476,0.914301828481257,0.040140267461538315,-0.1349487309344113,-0.5070780226960778,-0.5638648420572281,0.6956753674894571,-0.2197088599205017,0.8585962667129934,-0.7355713462457061,-0.11658291285857558,0.4008092666044831,-0.9843825898133218,-0.8346178377978504,0.929198803845793,0.7862052754499018,0.8747357558459044,0.5569423660635948,-0.8594884863123298,0.7678472972474992,0.8262638198211789,0.47084555635228753,0.5548024047166109,-0.669616483617574,-0.020345202181488276,0.9840491861104965,-0.29132380057126284,0.07613552641123533,0.2874447153881192,0.4018312399275601,0.3254553568549454,0.10523232026025653,0.3438400821760297,0.39568036748096347,0.34461587853729725,0.19937578216195107,-0.35122169693931937,0.13497796887531877,0.5867855572141707,-0.2895883354358375,-0.8635852360166609,0.1872624265961349,-0.9809301774948835,-0.9604788948781788,0.36909893061965704,0.9344935920089483,-0.642815905623138,-0.16551282862201333,0.9147750185802579,0.889832142740488,-0.82540338113904,0.8997541568242013,0.10713084833696485,0.7402938916347921,0.4961838782764971,-0.45766607113182545,-0.26886524772271514,0.7616410623304546,-0.39810962975025177,0.8256593542173505,-0.04243107186630368,0.11271745385602117,0.7221584985964,-0.6761350515298545,-0.6117918696254492,0.055279051419347525,-0.06156072532758117,-0.6541462130844593,-0.875210243742913,-0.41755369072780013,-0.3360565332695842,-0.21209446294233203,-0.9203933514654636,-0.10526144225150347,0.1621166504919529,-0.10918889567255974,0.7317967023700476,0.3318641912192106,0.9251396097242832,0.6855246503837407,0.46641315799206495,0.8909969222731888,0.539949307218194,-0.1992275812663138,0.17098114266991615,0.49198871571570635,-0.2651462396606803,0.45233672577887774,-0.9222061517648399,-0.44966903422027826,0.8554229023866355,-0.19572227960452437,0.13067784951999784,0.12400999246165156,0.9895213400013745,0.014081946574151516,0.9957692422904074,0.5219802260398865,0.7540052006952465,-0.7915705349296331,0.6262611602433026,-0.3500680960714817,-0.057016400154680014,-0.8765677493065596,-0.9401790718548,-0.8497915775515139,0.9427981255576015,0.9048318201676011,-0.05766247259452939,-0.8409225577488542,0.09683287562802434,0.20604089740663767,-0.47379595832899213,-0.19461606442928314,-0.5118729318492115,0.41758780693635345,0.20918465266004205,0.5123571930453181,0.587873465847224,-0.3987843585200608,0.2391597516834736,0.7164525757543743,-0.555653128772974,-0.2460362291894853,0.8763107126578689,0.8212587074376643,-0.37426238041371107,-0.33583066891878843,-0.16862984467297792,0.3284291788004339,-0.05468788091093302,0.283531014341861,0.567834050860256,-0.26002685679122806,-0.13235628884285688,0.8567992243915796,0.05278304824605584,-0.7705582203343511,-0.33457982260733843,0.8876983714289963,-0.24438583152368665,-0.17081932444125414,-0.3118398627266288,-0.43350648460909724,-0.837672283872962,0.8232588241808116,0.33302240539342165,0.019923878833651543,-0.7144363126717508,0.35073382081463933,0.6453482052311301,-0.44444461027160287,0.9200426014140248,0.48956939205527306,-0.9371927925385535,-0.921121614985168,0.5628713285550475,0.5645687435753644,0.13783920090645552,-0.24132634978741407,0.18673987220972776,0.22188456868752837,0.18911277456209064,-0.02706279745325446,-0.3362371292896569,-0.855629846919328,-0.9975472670048475,0.06539971241727471,0.5691633187234402,0.154948637355119,-0.03910909267142415,0.8319322243332863,-0.48069329652935266,0.6430559577420354,0.473127824254334,-0.21077991789206862,0.3509469865821302,0.8991101440042257,-0.8340842355974019,-0.37420115899294615,0.8887212392874062,0.13152969256043434,0.22096373233944178,0.47077231714501977,0.5110654886811972,-0.8717356878332794,-0.531467461027205,-0.4175905166193843,0.1484838891774416,0.08859853213652968,-0.69616942666471,-0.6591244894079864,-0.8020019764080644,0.9104561880230904,-0.928518486674875,0.8486350779421628,-0.9862325913272798,0.7889471291564405,0.571865301579237,-0.002432852052152157,0.7103097755461931,0.42991749104112387,0.10011940076947212,0.08669664291664958,0.23596341256052256,-0.4382311385124922,0.032641608733683825,-0.8449619417078793,-0.6585036301985383,-0.7855641930364072,-0.001195219811052084,-0.3463032767176628,0.4450971148908138,0.9288816237822175,-0.7264533187262714,-0.912301177624613,0.09882062580436468,0.3645227928645909,0.20326135633513331,0.87277179537341,-0.10701275011524558,0.2998187504708767,0.608441255055368,-0.08290684688836336,-0.4490746622905135,0.9554739268496633,-0.21567028993740678,-0.008853659965097904,0.9197061713784933,-0.745754468254745,-0.9226513989269733,0.23186976136639714,0.9204742815345526,0.717270867433399,0.7118998453952372,-0.7684956067241728,0.7606312870047987,-0.20808781404048204,0.20070749940350652,-0.4333184426650405,0.17909630620852113,0.00728578818961978,0.24420557776466012,-0.35085116466507316,-0.5458262618631124,0.8268482061102986,-0.27572356816381216,-0.1431631981395185,-0.11376667208969593,-0.4652624768204987,0.8279563556425273,-0.14537776401266456,-0.5058997236192226,0.5909933103248477,0.7514445688575506,0.498858985491097,-0.7464331397786736,0.3658336056396365,-0.6815708721987903,-0.3643605671823025,0.8802407635375857,-0.17665471974760294,0.29787697782739997,-0.4894972429610789,-0.46226309752091765,-0.7145201610401273,-0.1650202269665897,0.4287470877170563,-0.24426978779956698,0.4747568559832871,0.9292687592096627,0.07983398716896772,0.1373055879957974,-0.8236922826617956,-0.8543808027170599,-0.4858611589297652,0.48106449423357844,-0.5032401438802481,-0.0748005504719913,-0.8815452391281724,0.40762267308309674,0.7911997903138399,0.2206902028992772,-0.4208251549862325,-0.8387407422997057,0.3362949164584279,-0.026542183943092823,-0.6914839493110776,0.13392491172999144,-0.256121015176177,0.6343602887354791,-0.4579196129925549,0.8277158914133906,-0.24726280849426985,-0.7964571109041572,0.3770644199103117,0.15713606122881174,-0.9117552312090993,0.27459438843652606,-0.8046974800527096,0.14542640605941415,-0.7836649096570909,-0.7266504848375916,0.49010194977745414,-0.23490026872605085,0.5972563880495727,0.05215248093008995,-0.013326051644980907,0.3536529862321913,-0.28285749768838286,-0.2899332232773304,-0.2379303234629333,-0.04300038609653711,-0.8787114252336323,0.24445596942678094,-0.6562948822975159,0.34304794017225504,-0.7295799148268998,0.1756326393224299,0.8432466248050332,0.3952243821695447,0.9785115043632686,0.3852958963252604,0.611750443931669,0.04292903747409582,0.6486448007635772,-0.39005323546007276,0.12895136000588536,-0.6906467503868043,-0.9677394134923816,-0.10395865980535746,0.7704373826272786,-0.9050365490838885,0.31616454431787133,0.4414469697512686,0.2276633637957275,-0.17663345346227288,-0.30829622549936175,-0.2672661035321653,-0.7004518681205809,-0.33293151017278433,-0.23232578486204147,0.5582059216685593,-0.8994565042667091,-0.41194641636684537,-0.3294545072130859,0.729792651720345,-0.6796315587125719,-0.562949426472187,0.8689980912022293,0.03567588236182928,0.5460079270415008,0.4804755221121013,0.45892924908548594,0.2037482326850295,0.40422540064901114,-0.06677467562258244,-0.9582926980219781,-0.41977511066943407,0.33001398341730237,-0.8518930971622467,-0.09453858574852347,-0.6921255839988589,0.4051883704960346,0.05750956851989031,-0.9166963812895119,0.4351236540824175,0.279938290361315,-0.4153596428222954,0.05657578492537141,0.7127231531776488,-0.6867264523170888,0.7745824353769422,-0.4185469467192888,0.21029063360765576,0.241479751188308,0.3538014991208911,0.43449321668595076,-0.5067089986987412,-0.7187183140777051,0.7564463685266674,-0.6919493125751615,0.6921193581074476,0.9562553339637816,-0.6405174662359059,-0.856687297578901,-0.4633497199974954,0.11499537155032158,0.5215815943665802,-0.24156704638153315,-0.4132005921564996,0.29104564152657986,0.3670744872651994,0.2639952399767935,0.40569897647947073,-0.22968863090500236,0.8004233511164784,0.3073950055986643,-0.6165289306081831,-0.623515713494271,-0.6110548316501081,-0.8053716449066997,-0.03708672011271119,0.39060512324795127,0.5758662838488817,-0.8972211498767138,0.3979166019707918,0.1270683240145445,-0.1379229249432683,-0.5742610758170485,0.8121133618988097,0.28214475279673934,0.10126150725409389,0.5855465950444341,-0.645683775190264,0.7667398247867823,-0.10741453850641847,0.205941220279783,0.7823559818789363,-0.14286445965990424,-0.5863393358886242,-0.10878183459863067,0.9756049406714737,0.6850513052195311,-0.6997569985687733,0.6907765129581094,-0.08856292488053441,0.974038630258292,-0.6185386260040104,-0.16170506551861763,0.010138689540326595,0.22846000734716654,0.9526298525743186,0.8248334876261652,0.9816914666444063,0.9841975555755198,-0.312439929228276,-0.8908277247101068,-0.6220411425456405,-0.32649543788284063,-0.24178197467699647,-0.14741550339385867,-0.7697160206735134,-0.9899980784393847,-0.06157145835459232,-0.004887889605015516,0.14293239684775472,-0.3075600224547088,0.7700870186090469,-0.8121336176991463,0.32463631266728044,-0.410703485365957,-0.28171665174886584,-0.17503061098977923,0.03390437038615346,0.7274159784428775,-0.9412276609800756,-0.018310063518583775,-0.8603552663698792,0.9999173823744059,-0.6003260877914727,0.5459637795574963,0.40259534399956465,0.8282227115705609,0.7959360089153051,0.3713764217682183,-0.548970552161336,0.31682785600423813,0.3659751866944134,-0.6760087558068335,0.027830827049911022,0.46183784026652575,0.820621432736516,0.01641984423622489,-0.38409069692716,-0.29365690099075437,0.3209105390124023,-0.07117483718320727,0.8334557795897126,-0.8466796455904841,0.33080632193014026,0.2447009440511465,-0.9966234425082803,0.0006020376458764076,0.477487132884562,0.12122915498912334,-0.296214172616601,0.6423322423361242,0.9672806430608034,0.3649094379507005,-0.766389197204262,0.8543206206522882,0.030994465574622154,0.6479991311207414,-0.8389385775662959,-0.23661326011642814,-0.6631562788970768,0.8606891520321369,0.5006869356147945,0.7994528533890843,-0.22150015830993652,0.22873956011608243,-0.8458635141141713,0.6253501810133457,-0.3368459427729249,0.2971582682803273,0.60019466932863,-0.9371470035985112,0.07475019618868828,-0.43855808675289154,0.4530952093191445,0.7659857193939388,0.38151691015809774,-0.09509806474670768,-0.21563508128747344,0.9871220840141177,-0.761607033200562,0.019442143384367228,-0.6350598810240626,-0.0558365173637867,0.405914053786546,0.1629175073467195,-0.8483193553984165,0.23766734031960368,0.2967742523178458,0.8731140387244523,0.8428910481743515,0.4106869804672897,0.440270287450403,-0.8499834700487554,0.6664734091609716,0.9925168217159808,-0.4068541778251529,-0.06263921270146966,0.780170117970556,0.11152707226574421,-0.9085588534362614,0.36184752779081464,0.09499836480244994,0.027757348027080297,0.7836674065329134,-0.961528904736042,-0.6493469881825149,-0.912624160759151,-0.11179738072678447,-0.08817342296242714,-0.7367754289880395,-0.3940623877570033,0.369613713119179,0.8269927836954594,0.35792694427073,-0.8164363177493215,-0.2751823114231229,-0.8318793349899352,-0.31635423470288515,0.06810580147430301,0.3534800470806658,-0.11271802568808198,-0.7289841957390308,0.9953798875212669,0.9189402363263071,-0.5563065526075661,0.8190935798920691,-0.9982427507638931,-0.09651246387511492,-0.4687812849879265,-0.5076527525670826,0.24567655893042684,-0.972517722286284,-0.6781458114273846,-0.7713671983219683,0.918834654148668,-0.5967266266234219,0.4950664169155061,0.9699124083854258],"z":[-0.7056877994909883,-0.3291415157727897,0.7821569493971765,0.19629889726638794,0.81500612385571,0.5401225369423628,-0.021474959794431925,-0.15585958026349545,0.49153624009341,0.7298333263024688,-0.9312859792262316,-0.4177739191800356,0.6630920260213315,-0.458196128718555,0.6480531017296016,-0.14494470413774252,-0.19522612821310759,0.48074724059551954,-0.16314037656411529,0.29905123682692647,0.8798463577404618,-0.26514366548508406,-0.3465076182037592,0.6043737549334764,-0.9207131494767964,-0.6351072895340621,0.5731323440559208,0.05405508819967508,-0.1129639483988285,-0.4620571634732187,0.20360326580703259,-0.23522840160876513,0.8515829402022064,-0.07840980775654316,0.9872063635848463,0.6281625903211534,-0.24141917377710342,0.36556508345529437,0.5228459173813462,-0.20376450149342418,-0.47943279100582004,0.9552886951714754,-0.31518825609236956,0.20791581040248275,0.3594813495874405,0.21224810974672437,0.040989802684634924,0.7910321168601513,0.45827995194122195,0.7581019708886743,-0.5755030796863139,0.9509576838463545,0.6392928622663021,-0.0016656233929097652,-0.6597058512270451,0.22167789656668901,0.36848147958517075,0.5571050904691219,0.012636343948543072,0.29302477557212114,-0.040192950051277876,-0.8852608660236001,-0.518659446388483,-0.5416372311301529,-0.18270661355927587,-0.5442585702985525,-0.39652095222845674,-0.15859844023361802,0.9413809473626316,-0.08550768904387951,0.15390656236559153,0.6055703046731651,0.20811348548159003,0.6791783790104091,-0.5648145256564021,-0.1416907669045031,0.8392250104807317,-0.5634385836310685,0.3176960092969239,0.21553871454671025,0.10748674813657999,0.8783595664426684,0.5379412858746946,-0.9917943417094648,-0.007615992799401283,-0.4467641436494887,-0.6266550226137042,-0.8559578391723335,0.17061344580724835,0.06771727185696363,-0.038194979541003704,-0.4960698871873319,-0.0028100116178393364,-0.5110605717636645,-0.5977685120888054,-0.5117650358006358,0.407220296561718,-0.5421710452064872,0.3406669474206865,-0.8735765381716192,-0.9733507158234715,-0.3241192987188697,0.09260321594774723,-0.1545214718207717,0.23247718904167414,-0.1725952010601759,-0.3891212185844779,-0.11642727535218,-0.16050599236041307,-0.5521555463783443,-0.707791197579354,0.49767686426639557,-0.44264616211876273,-0.6382747553288937,0.5398546420037746,-0.20651135966181755,0.4021467324346304,-0.20429875841364264,-0.6119336248375475,0.7441333811730146,-0.7793469508178532,-0.29385042609646916,-0.033921935595571995,-0.39090377651154995,0.8896281090565026,0.8604981643147767,-0.2865615771152079,0.2203825623728335,0.19864147622138262,-0.16357406973838806,-0.5844756970182061,-0.9678305364213884,-0.7772925486788154,0.7653518249280751,-0.9063252359628677,0.2596814972348511,0.5514662959612906,-0.7297976189292967,-0.042503572069108486,-0.37012042477726936,-0.8135713580995798,0.42878595693036914,-0.6001611519604921,-0.27260070014744997,0.9662796962074935,0.12896229093894362,-0.9763188431970775,-0.9380178065039217,0.5409414120949805,0.046907799784094095,-0.7617219742387533,0.42042649956420064,-0.8820574772544205,-0.1856786385178566,0.2906985613517463,0.5711637944914401,0.2270316742360592,0.9792421353049576,0.6945162145420909,-0.029312805738300085,-0.217155572026968,0.19919856078922749,0.10633547836914659,-0.698984113521874,0.07727322308346629,-0.4624094287864864,-0.1887997924350202,0.21534176310524344,0.01918143918737769,0.41256467811763287,0.3910972513258457,0.3137901686131954,0.03788593364879489,0.8953697197139263,-0.43580583250150084,-0.5040693851187825,0.15871469723060727,-0.16832412965595722,-0.3055049851536751,-0.30050721764564514,-0.5483821099624038,-0.5584144396707416,-0.30063918931409717,-0.7685425640083849,0.5369474668987095,-0.15663724998012185,0.5584584884345531,0.30197949428111315,0.8770692404359579,0.7215600991621614,0.37009108206257224,0.5347660295665264,0.28294468577951193,-0.6133121908642352,-0.12498068111017346,0.9372140993364155,-0.3906493531540036,0.09150319080799818,0.6121149458922446,0.7562016588635743,-0.14690126199275255,0.12028433429077268,-0.024375303648412228,0.9319806690327823,0.2685727905482054,-0.024869742803275585,-0.614950209390372,-0.7370569570921361,-0.3794086677953601,-0.5270524662919343,0.3743108273483813,-0.11026819981634617,0.10043077496811748,-0.28532898100093007,-0.3727340023033321,-0.9321417813189328,-0.22078475076705217,-0.3134371559135616,-0.2184258964844048,0.3238971563987434,-0.5258889715187252,0.4156966242007911,0.9206502349115908,0.04880741564556956,-0.5798957971855998,-0.9458586354739964,0.5020893164910376,0.7367716948501766,-0.5658317217603326,-0.19190856255590916,-0.06780431093648076,-0.4140959200449288,-0.6232480811886489,-0.6928604897111654,0.7427795403636992,0.36502960976213217,-0.89996149064973,0.49140632105991244,-0.9598555411212146,-0.2934757163748145,-0.5891905124299228,0.41320707695558667,-0.05294498382136226,-0.03453956497833133,-0.2889706906862557,-0.40578367467969656,0.012893225997686386,0.5281125535257161,0.4479957935400307,-0.6364809684455395,0.1235359413549304,-0.2785348929464817,0.9239909928292036,-0.367402121424675,-0.46220109378919005,-0.7936377236619592,-0.05110097397118807,0.6986478241160512,0.6564967771992087,0.012552563566714525,-0.22359040938317776,-0.9512458690442145,0.3050958220846951,0.5063825058750808,-0.1329362327232957,-0.6817901358008385,-0.9211929962038994,-0.9049459472298622,0.2558296248316765,0.24600977962836623,0.2736399150453508,-0.27356252539902925,-0.592210665345192,-0.7567391432821751,-0.908134778495878,-0.01947959791868925,-0.16605479223653674,0.4459140980616212,0.2313764658756554,0.9789429265074432,-0.3125486830249429,-0.3444762472063303,0.7504602745175362,0.48737891763448715,-0.9193796967156231,0.10383900674059987,0.43696886440739036,0.21858640061691403,-0.39270431408658624,-0.8601309787482023,-0.8521612877957523,0.480882378295064,0.6337057105265558,-0.6604655189439654,0.1500614695250988,0.6701663080602884,-0.21281320555135608,-0.28660053852945566,-0.20665855705738068,0.2942064078524709,0.1749687623232603,0.5287709967233241,0.81239989772439,-0.3402596367523074,0.8180090067908168,-0.8464028839953244,-0.7130543771199882,-0.9413739717565477,0.37619128730148077,-0.5993506596423686,0.3248766968026757,0.6598914130590856,0.9642958692274988,-0.8476163703016937,-0.7296731225214899,-0.6336255073547363,-0.789123781491071,-0.5249118972569704,0.05465824902057648,-0.6575096398591995,-0.5966059886850417,-0.1987115740776062,-0.42542378045618534,-0.023658621590584517,-0.029018745757639408,0.7242061072029173,0.1629632250405848,-0.535829879809171,0.8640249529853463,0.5426921481266618,-0.32434698240831494,-0.6382802347652614,-0.46336078457534313,0.6080888495780528,0.5883107129484415,0.5602797856554389,-0.30118457647040486,-0.08447671867907047,0.14846233371645212,-0.8213404924608767,-0.8092406555078924,0.8809622805565596,-0.6646550549194217,0.7967012845911086,-0.6990750301629305,0.5352760688401759,0.9428755906410515,-0.36011760402470827,-0.39479517377913,-0.5018177605234087,0.22591874469071627,-0.69626584649086,0.17399248760193586,-0.9925334085710347,0.37124197417870164,0.3756709056906402,-0.009430400561541319,0.8752445578575134,0.43867747765034437,0.2700169887393713,-0.4097498315386474,-0.6474644485861063,-0.31923349061980844,-0.17949023051187396,-0.7502885791473091,-0.5461447034031153,0.9687808351591229,-0.416489549446851,0.8084392547607422,-0.6336751002818346,0.23510733898729086,0.6092291548848152,0.5574527233839035,-0.31096811639145017,0.05137224541977048,-0.3570626559667289,0.8780908323824406,-0.42637187521904707,-0.36461694492027164,-0.7903266455978155,-0.6506226235069335,-0.7291631218977273,-0.21220150962471962,-0.15263954224064946,-0.748206028714776,0.08668321371078491,0.3474446823820472,0.013250524643808603,0.43505284609273076,-0.14662398025393486,0.4234370063059032,-0.5152554446831346,0.3841626397334039,-0.25416041864082217,-0.5215306519530714,-0.8134124418720603,-0.0021675718016922474,-0.029076052829623222,-0.41611729748547077,0.6929955980740488,-0.06496311584487557,-0.8776766783557832,-0.10833745775744319,0.8470276021398604,-0.8631354533135891,0.3933045011945069,0.6518758842721581,0.30706163914874196,-0.2804664778523147,0.4666905039921403,-0.5357129541225731,-0.7235383484512568,-0.7962357541546226,0.05828979006037116,0.6836959240026772,0.24394608056172729,-0.6624506101943552,-0.09723735600709915,-0.015374440234154463,0.9712841575965285,0.3174978462047875,-0.8325233669020236,0.7109131244942546,-0.15698729967698455,-0.04985831072553992,0.7563491393812001,-0.5840700301341712,0.7173445438966155,-0.0433578141964972,-0.14389986312016845,0.9942750628106296,0.6245905566029251,0.8506688848137856,0.7420469210483134,0.6388474619016051,0.029810928739607334,0.8179569025523961,0.9830097942613065,-0.9411622076295316,-0.4211462144739926,-0.29929847409948707,-0.33351851999759674,-0.9541266784071922,-0.24126656213775277,0.6446878868155181,0.14509587036445737,-0.8930601901374757,0.9528639693744481,0.18350500240921974,-0.5915850880555809,0.7137833726592362,0.8620597273111343,0.5837507448159158,0.6017988845705986,-0.20806348836049438,0.17850590776652098,0.6433694739826024,0.2833336405456066,0.9369658008217812,-0.5733355977572501,0.5363529906608164,0.9147021356038749,0.99360545957461,0.39400466438382864,0.07420453103259206,-0.3801574418321252,0.45806749863550067,-0.8268002634868026,-0.8006718982942402,0.5216145003214478,-0.4348862236365676,0.6396399261429906,0.07129773357883096,-0.5584463803097606,-0.6920744366943836,0.99098726734519,-0.48873780108988285,-0.382149875164032,-0.7195617137476802,-0.01342033315449953,-0.4186592111364007,0.2977959611453116,-0.5617142575792968,-0.2159385303966701,-0.602039038669318,0.9066798659041524,0.9853608645498753,-0.608686382882297,0.7591181118041277,-0.4872409189119935,-0.1758245094679296,0.9155917703174055,0.56874611787498,0.24628213979303837,-0.14559755101799965,-0.9031072570942342,0.1873145834542811,-0.4325612997636199,0.2992698452435434,0.300220571924001,0.21283772215247154,-0.6113493950106204,0.2984873433597386,0.1447342112660408,-0.47851989744231105,-0.1354597914032638,-0.6043532686308026,-0.6196672981604934,0.5389025253243744,0.6235621720552444,-0.5842995657585561,-0.6272390452213585,-0.11107438011094928,0.36554140131920576,-0.8251481759361923,-0.6959089995361865,-0.2450479893013835,0.965563905891031,-0.9083619872108102,0.9449499901384115,-0.4712169892154634,0.09650629572570324,0.169960280880332,0.2809949326328933,0.7671941160224378,0.9861105186864734,0.154920959379524,-0.033676229417324066,-0.5656966888345778,0.9727630605921149,0.8861712948419154,0.6972771724686027,-0.14283009618520737,0.5446638283319771,0.7222106051631272,0.6300681484863162,-0.7262423573993146,0.8812328390777111,0.5932899457402527,0.7770014400593936,0.4028654843568802,0.015477706212550402,0.5542966867797077,0.19760360522195697,-0.6603239476680756,-0.32695628702640533,-0.9065599888563156,0.9216034468263388,-0.6857174197211862,-0.8680464080534875,0.2656368319876492,-0.06020626984536648,-0.10130724310874939,0.9864805289544165,0.4006167780607939,-0.8834206839092076,0.11969012767076492,0.5050347517244518,0.01182407932356,-0.3257579458877444,-0.44130058819428086,-0.5346837104298174,0.6517822612076998,-0.45829059183597565,-0.49062224943190813,-0.800740999635309,0.8397722877562046,0.9090013168752193,0.1453456860035658,-0.46757741179317236,0.8055444932542741,0.0305766761302948,-0.9174471092410386,0.047065301332622766,-0.3519404958933592,-0.21438460238277912,0.7280030553229153,-0.8411085736006498,-0.4155264482833445,-0.3813541284762323,0.4243482514284551,-0.5429062815383077,0.8372980295680463,0.4825951838865876,-0.04619289468973875,-0.5516431946307421,-0.6790156494826078,0.09739810694009066,-0.39919742941856384,-0.5850119763053954,0.8082797219976783,0.09165023826062679,0.024518482852727175,-0.6785770421847701,0.7906783013604581,0.29217704106122255,0.9629889773204923,0.23501224303618073,0.31751264398917556,0.4252302721142769,0.5463822549208999,0.5107563557103276,-0.3626622650772333,-0.990561599843204,0.393393381498754,-0.07052896451205015,-0.48955964948982,-0.3836633590981364,-0.7082773172296584,-0.7985178055241704,-0.0020234491676092148,0.786724251229316,0.179079148452729,0.38846592977643013,-0.0005097552202641964,-0.9915234125219285,0.5484726293943822,-0.7700792867690325,-0.07645045313984156,0.5264502055943012,-0.04286590265110135,0.4304637354798615,0.9478268241509795,-0.7509353081695735,-0.7186596258543432,-0.9628828796558082,0.2120261089876294,-0.7300551235675812,-0.24538569385185838,0.5355544439516962,-0.9897066298872232,0.2078961469233036,0.6971394382417202,-0.500819758977741,-0.11176093202084303,-0.11496717156842351,-0.1394836907275021,0.15469053108245134,0.9779490982182324,-0.3080035406164825,0.6450909180566669,-0.5198222454637289,-0.04686733987182379,-0.29553647618740797,0.43005137285217643,0.0083075650036335,-0.8240124578587711,0.052601920906454325,-0.03727567521855235,0.676752828527242,-0.10709831770509481,0.004605742637068033,-0.8656256035901606,0.20952711859717965,-0.9123725672252476,0.685331619810313,-0.6423403327353299,-0.375453510787338,-0.32985505228862166,0.9060268001630902,0.8466224567964673,0.0005803816020488739,-0.4318402148783207,0.07889146776869893,-0.30243121180683374,-0.5351452603936195,-0.80040093511343,0.03891880437731743,0.06016291119158268,-0.8552825069054961,0.9934818716719747,-0.3033702652901411,-0.6484058070927858,0.3533497769385576,0.4718874446116388,0.155844459310174,0.3829836156219244,-0.5201732125133276,0.6601939261890948,0.7041527037508786,0.7798840911127627,0.8990649878978729,-0.2355697206221521,-0.2685562586411834,-0.32489693723618984,-0.1528546898625791,-0.4247092865407467,0.04883902333676815,0.167229269631207,0.3533972380682826,0.7709296178072691,0.5239723068661988,-0.43949109222739935,0.8917610594071448,-0.0972942616790533,0.08168591279536486,0.708665850572288,0.03519958630204201,0.6729462156072259,0.6930292313918471,-0.5751802693121135,-0.08897883770987391,0.6775626949965954,0.11065260833129287,0.2963762702420354,0.057189911138266325,0.44828388653695583,-0.6771234250627458,-0.45795589312911034,0.9377642632462084,-0.6193713652901351,-0.10999758495017886,0.279742781072855,0.9638373008929193,-0.22397613944485784,0.765023470390588,-0.25499224476516247,0.966772292740643,0.32170548290014267,-0.5786344166845083,-0.924555994104594,0.3355228560976684,0.46128898998722434,-0.6473595490679145,-0.3572884816676378,-0.704081037081778,0.5936696724966168,0.19712146371603012,-0.3886762224137783,-0.9518674141727388,0.5343412621878088,0.9333907379768789,-0.7473557777702808,0.8321862611919641,0.2637630826793611,-0.9205737169831991,0.48202488757669926,-0.5978748607449234,0.7838366623036563,-0.17144451197236776,-0.0104912337847054,-0.431428165640682,-0.2849301863461733,-0.6312525942921638,-0.5513819064944983,-0.028912403620779514,-0.12938849302008748,-0.3240686049684882,0.5281788292340934,0.12739632232114673,0.6402798695489764,-0.15437554940581322,-0.47660233173519373,0.0003599468618631363,0.41726012947037816,-0.9512795554473996,-0.48518372932448983,-0.22926289774477482,0.5030620587058365,0.8431576807051897,-0.28228476271033287,-0.70755112497136,0.2703103539533913,0.5738789527677,-0.627040266059339,-0.7911091707646847,-0.3668230390176177,-0.1788591560907662,0.3276448710821569,0.10208903206512332,0.4696254404261708,0.7397375386208296,0.6470515592955053,0.6606894377619028,0.16606249660253525,0.5604327190667391,-0.185491684358567,-0.10053758276626468,0.19048424577340484,0.43070911755785346,0.051580558996647596,-0.9586193994618952,-0.16053889552131295,0.31937946612015367,0.5447311978787184,-0.8787336540408432,-0.1269289068877697,0.899309596978128,-0.03243644628673792,-0.6863817600533366,0.9900777768343687,0.9539821813814342,0.5167964017018676,0.2510111154988408,0.07982209837064147,-0.8350100782699883,0.6228548181243241,0.07283454481512308,0.17882168060168624,0.02493153838440776,-0.35833477042615414,-0.3558193240314722,-0.4844147930853069,-0.24490793980658054,-0.9695087112486362,-0.159928307402879,0.8983405097387731,0.21129305427893996,-0.5151711874641478,0.993860927876085,-0.3149763918481767,0.18862160574644804,-0.5386216603219509,0.31791509268805385,0.9777810857631266,-0.7206332995556295,-0.465226708445698,0.2425902197137475,-0.21640460938215256,0.5718815592117608,0.7388846618123353,-0.6180936344899237,0.039111117366701365,-0.7900179857388139,-0.26814046455547214,0.19398561771959066,0.3375282152555883,-0.619115898385644,0.9919812437146902,0.7817787150852382,0.4288023407571018,-0.5315415654331446,-0.41581728495657444,0.8275180109776556,-0.21641597291454673,0.7967239525169134,0.8542851069942117,0.20006599184125662,-0.5399199714884162,-0.1396620273590088,-0.9017580361105502,0.2886137026362121,-0.09425802016630769,0.16506543336436152,0.5483864857815206,-0.3849383080378175,-0.791625692974776,0.04755422752350569,-0.7611082321964204,0.07327747996896505,0.523229340557009,-0.00495104119181633,-0.161767169367522,0.3912912029772997,0.22108303057029843,0.9392555872909725,0.8914381223730743,0.8817834528163075,0.8404413098469377,-0.9213256388902664,0.7370569477789104,-0.8672798881307244,-0.13084991741925478,0.8926838901825249,0.5462377709336579,-0.7833266672678292,-0.06837026961147785,-0.5193299488164485,0.2566488888114691,0.8008254142478108,0.42164360685274005,0.4845159212127328,0.7658883994445205,-0.7229922083206475,-0.09497602842748165,0.4810161958448589,-0.3237263886258006,-0.708142604213208,-0.2651974204927683,0.04464048147201538,0.5523044252768159,0.9003434469923377,-0.7922134674154222,-0.7339776423759758,0.5121871484443545,-0.9716378655284643,0.42923087580129504,0.44670623587444425,-0.031743758358061314,-0.08922907616943121,-0.9473697035573423,-0.30902603873983026,0.06829637521877885,-0.1335215214639902,0.4672259697690606,-0.7392902518622577,-0.4473278154619038,0.941920293495059,-0.9128314489498734,-0.3261144766584039,0.08503712806850672,0.8957041227258742,0.5737322913482785,-0.019714129623025656,-0.833612394053489,0.02756886975839734,-0.42572395829483867,-0.7539158081635833,0.493362570181489,0.09545177826657891,-0.423576598521322,-0.8183860541321337,-0.5587166137993336,-0.04926286591216922,0.7355568474158645,0.6946754208765924,0.8897428540512919,0.5108825052157044,-0.8408375177532434,-0.9191948575899005,0.9951583561487496,0.6696853549219668,0.12426517298445106,-0.9309198358096182,0.05079362588003278,0.9784455704502761,0.42072506714612246,0.11745742056518793,0.9882549573667347,-0.11057650856673717,0.611378641333431,-0.832688553724438,-0.6547113070264459,-0.10889865411445498,0.7982785422354937,-0.8831793842837214,0.9879857981577516,-0.7669489155523479,-0.8066893294453621,-0.6030752235092223,-0.2736743683926761,0.6051862612366676,-0.6591488574631512,-0.2531178225763142,-0.7761093345470726,-0.5563114485703409,0.7017846861854196,0.6834747674874961,0.4775191727094352,0.3861626680009067,0.6196882897056639,-0.2651882627978921,-0.19545602798461914,-0.7440098393708467,0.40762494411319494,0.20014553796499968,0.3661941774189472,0.14190343348309398,0.4027971117757261,-0.5746675780974329,0.163236525375396,0.5932233072817326,-0.3724394771270454,0.9236835278570652,0.21339022321626544,-0.9360449807718396,0.11887102387845516,0.24921141425147653,-0.8682135990820825,0.41854172851890326,-0.6757542290724814,-0.5370016964152455,-0.9459961131215096,0.6366535532288253,-0.8557617203332484,0.41839127242565155,-0.07069657696411014,-0.8537546833977103,-0.6245318185538054,0.07500017434358597,0.47465070988982916,-0.8215628983452916,0.5954352179542184,-0.039691484067589045,-0.8569913166575134,-0.6132979318499565,0.3848446090705693,0.0668626120314002,-0.465641547460109,0.20044797426089644,0.6021301937289536,0.582149148453027,-0.5589787261560559,-0.815981041174382,0.4541591224260628,-0.04408420855179429,-0.012403843458741903,0.7227332289330661,0.643068787176162,0.26945028360933065,0.934830226469785,-0.5547739807516336,-0.1021631546318531,-0.6599421948194504,0.3485060469247401,-0.3489987151697278,0.15357320755720139,0.772659002803266,0.9589902930893004,-0.13489524461328983,-0.42519032256677747,-0.01915733329951763,-0.6776562365703285,0.6248635686933994,-0.10178661020472646,-0.36207050969824195,0.5914946319535375,-0.9947307156398892,0.16081707598641515,-0.9927913346327841,0.449172658380121,0.18433840805664659,-0.768487096298486,0.8439864232204854,0.32586487382650375,0.13986520236358047,-0.08560589700937271,0.514172041323036,-0.6949130282737315,-0.5594849586486816,-0.08676048507913947,-0.008876885753124952,0.023646045476198196,-0.21523182792589068,-0.09463085979223251,0.779123735614121,-0.23272399697452784,0.1926495903171599,0.8356506978161633,0.18732715211808681,0.8767647743225098,0.9312641080468893,0.7805470335297287,0.43689040606841445,-0.2651913804002106,0.7005874440073967,-0.04134395765140653,0.34037794079631567,0.9540499714203179,0.7102974057197571,-0.3861530008725822,-0.6166037134826183,-0.586407802067697,0.6579773928970098,-0.989008832257241,-0.9979532631114125,0.5279788947664201,0.5144244157709181,-0.6128712808713317,-0.7189016151241958,-0.015992602799087763,0.1390346260741353,0.3745868760161102,0.3186475890688598,-0.8356371824629605,0.4127913611009717,0.39092208817601204,-0.2886105552315712,-0.8652510396204889,0.8774427277967334,0.77718919608742,0.9979978138580918,0.13814617041498423,0.5697925020940602,0.5729477182030678,-0.26562049705535173,-0.00899362238124013,0.14124328549951315,-0.37218156550079584,-0.8803387996740639,0.16701924009248614,0.670984148979187,-0.6279361676424742,-0.01377304457128048,0.49726516427472234,-0.4711344591341913,-0.17650325689464808,0.7731127222068608,0.3470105701126158,-0.6352176060900092,0.3039849544875324,-0.05984074855223298,0.7060573040507734,-0.4226075750775635,0.39307382982224226,-0.4108320837840438,0.1673325663432479,-0.34964768681675196,-0.2561923014000058,0.5569533840753138,0.7431423268280923,-0.6843581735156476,-0.18710757046937943,0.1156211206689477,-0.47754972940310836,-0.4950093156658113,0.6658034902065992,-0.7233804152347147,-0.10251954477280378,-0.6566666821017861,-0.829187183175236,-0.095869863871485,0.010123771149665117,-0.23939154809340835,0.04352366738021374,-0.9578116377815604,0.2542819017544389,0.21064516576007009,-0.03836783627048135,0.8969205524772406,0.049866929184645414,-0.03384265769273043,0.5139820137992501,-0.49643048411235213,0.7141765407286584,-0.07871659006923437,-0.2644155793823302,0.12937733344733715,-0.36142590502277017,-0.9036736995913088,-0.7421707762405276,-0.8896163394674659,-0.5498123280704021,0.36911089485511184,-0.3363604680635035,0.26736262114718556,-0.08313019899651408,0.39706925163045526,-0.23200970888137817,0.0063864924013614655,0.9314369126223028,0.45431606424972415,-0.6954172598198056,-0.4973069024272263,0.5023670857772231,0.3420262807048857,-0.5642376425676048,-0.510920443572104,-0.545718727633357,-0.7931746053509414,-0.14555867202579975,0.9788635889999568,-0.690586338751018,0.08680858416482806,-0.855615699198097,0.16027062525972724,-0.6638733660802245,0.8040720210410655,0.23948332946747541,-0.299706241581589,0.26586866192519665,0.43577194353565574,0.38022729521617293,-0.6478145094588399,-0.7372755613178015,-0.7352676456794143,-0.9942768262699246,-0.888662239536643,0.023724169936031103,-0.4579969202168286,-0.01925885770469904,-0.05274073081091046,-0.8087306153029203,0.4155881479382515,-0.26549682347103953,-0.7667881390079856,-0.602049455512315,0.8365452918224037,0.03201912948861718,0.7948659416288137,-0.9725628215819597,0.29229314951226115,-0.31190448766574264,-0.7003350923769176,0.6992917340248823,-0.3648604438640177,-0.47394279623404145,0.02952640550211072,0.7455701041035354,0.3649931619875133,0.8955222638323903,0.46425741724669933,0.6569491848349571,0.38889099657535553,0.8684477522037923,-0.05196805903688073,-0.7059372919611633,0.243236284237355,-0.7619531969539821,0.89950638031587,-0.4334133700467646,-0.6208440293557942,0.4585772263817489,0.577836780808866,-0.7329331953078508,0.646389011759311,0.4578660693950951,0.003822372294962406,-0.1367705981247127,0.0738558154553175,-0.7687628590501845,0.6739612072706223,-0.06993881892412901,0.021030808798968792,-0.5809147618710995,0.1617470644414425,0.6925574848428369,0.6879028468392789,-0.687541613355279,0.07247625198215246,0.4343971451744437,-0.17160475673153996,-0.02398897148668766,-0.0321905636228621,0.7526249228976667,-0.09587008925154805,-0.053952865302562714,-0.6803457639180124,-0.09869149420410395,0.7028391710482538,-0.20950012980028987,-0.5946368728764355,-0.5170960109680891,0.9680867684073746,0.638591390568763,-0.6664369096979499,-0.4265365810133517,0.3695536544546485,0.45440483279526234,-0.39000189071521163,0.274469580501318,0.8368614614009857,-0.47275533620268106,-0.5388134564273059,-0.44174583489075303,0.08090527029708028,-0.6912398426793516,0.5160137745551765,0.3050857442431152,0.31846970599144697,0.07374374568462372,0.1701408512890339,0.3641510414890945,0.4280699877999723,-0.4028364587575197,-0.6238655564375222,-0.4834558106958866,0.6737212394364178,0.42723619379103184,-0.8578032441437244,-0.6114355283789337,0.42111790645867586,-0.23305692058056593,0.34518447844311595,-0.6527088233269751,-0.6793334716930985,0.8376503358595073,-0.7054638587869704,-0.37951365299522877,-0.6710281423293054,0.8267568615265191,-0.29248231183737516,0.6127583375200629,-0.6083289035595953,0.370226725935936,-0.9462991929613054,-0.7678903052583337,-0.1635350422002375,0.033679436426609755,-0.24710763245821,-0.09601196367293596,-0.3539896826259792,0.23550369963049889,0.3084985576570034,-0.2775263674557209,0.7696347930468619,-0.5135953854769468,0.012159193400293589,-0.02212604321539402,0.1932691177353263,0.337868373375386,0.4438436031341553,0.49923307867720723,-0.563001963775605,0.49256867449730635,-0.377301265951246,0.7792704859748483,-0.6962246964685619,-0.9553163922391832,0.14721008110791445,-0.17906621051952243,0.8419022653251886,0.03134163795039058,-0.997615510597825,-0.8609203794039786,-0.2588147041387856,-0.18596466910094023,-0.5850736480206251,-0.7980030160397291,0.6289626527577639,-0.8917466341517866,-0.815711775328964,-0.7394491997547448,0.8350536678917706,0.2965209842659533,0.9939099061302841,-0.2203304897993803,-0.24797487445175648,-0.9773591100238264,-0.741495463065803,0.5821315874345601,-0.023549751844257116,0.5643491940572858,-0.18245244910940528,-0.49697542283684015,-0.9144440377131104,0.5537402150221169,0.3099947087466717,-0.8008998678997159,-0.5069678663276136,-0.19752439809963107,-0.7372584235854447,0.06721643824130297,0.07274712203070521,-0.2391267353668809,-0.5175557783804834,0.46421567257493734,-0.7897555581294,-0.06369782844558358,0.9056359729729593,0.011924064252525568,0.47980701457709074,-0.343964088242501,0.06644962262362242,-0.9465970546007156,-0.558362256269902,-0.17134755570441484,0.06604377087205648,-0.3893583808094263,-0.7251306171528995,-0.8666293774731457,0.9325940376147628,-0.8877533175982535,0.991217122413218,0.11503476370126009,-0.6326029752381146,-0.5368610545992851,-0.8827634006738663,0.2855879869312048,-0.9961133860051632,-0.6118477913551033,-0.35972664039582014,0.554625729098916,0.2401116373948753,0.5373078319244087,-0.344567371532321,-0.7728283177129924,-0.06199400359764695,0.7057178411632776,-0.15206305822357535,0.998277286067605,0.9117038175463676,0.7428616965189576,-0.2429342926479876,0.12190386466681957,0.8146661245264113,0.3696905975230038,0.10682954406365752,0.8536218856461346,-0.5716073927469552,0.7303537772968411,-0.666214392054826,0.0009538750164210796,-0.46684371773153543,0.6920388555154204,0.0033007734455168247,-0.9598481068387628,0.6996624148450792,0.7878345567733049,0.9561896556988358,-0.1796301668509841,0.7498260834254324,-0.7958685662597418,-0.8580739418976009,-0.09491598326712847,-0.49159760493785143,0.021316835656762123,-0.35728159733116627,0.06047558272257447,-0.710234668571502,0.6056804195977747,0.6840749871917069,0.2052220138721168,0.5512084299698472,0.08328445674851537,0.469311136752367,0.27906596940010786,0.25221896544098854,-0.096699642483145,-0.030511448625475168,-0.5718865832313895,0.8020603596232831,-0.009695402812212706,-0.10695408657193184,0.7487715426832438,-0.6940248855389655,0.7711012102663517,-0.5663092462345958,0.7749245367012918,-0.18918919889256358,-0.959842580370605,0.02995050558820367,0.27271027863025665,-0.9947232846170664,-0.26600151136517525,0.9981230315752327,0.07729445118457079,-0.2965643648058176,-0.025651478208601475,-0.8581154122948647,0.7483422495424747,-0.5855469712987542,-0.6811316036619246,-0.8346951897256076,-0.9418777069076896,0.3408496747724712,0.8362064380198717,-0.6182296252809465,0.7868536869063973,-0.20248583238571882,0.9565460286103189,0.6793029657565057,0.24934000195935369,-0.3705928288400173,-0.47117959801107645,0.2961764852516353,-0.7239566678181291,-0.1604543700814247,-0.6151037304662168,-0.5381982997059822,0.5566644966602325,0.640317746438086,0.7857757778838277,0.08739362005144358,0.5793850878253579,-0.9653417570516467,-0.5806960691697896,0.3544639190658927,0.7060769833624363,0.6355388727970421,0.6542363874614239,0.12915035150945187,-0.28263646364212036,-0.3534701173193753,-0.026248151902109385,-0.19307192787528038,-0.07008088333532214,-0.6209628018550575,-0.6521325442008674,-0.5310052763670683,0.6301379706710577,0.16402546735480428,-0.20737172942608595,0.7463569222018123,-0.2878575292415917,-0.5805079345591366,-0.9513350753113627,0.9339865813963115,-0.04170086234807968,0.4343824381940067,-0.16192051256075501,-0.9113810895942152,0.2571105672977865,-0.37759525887668133,-0.22162121161818504,-0.7248784312978387,0.5914467121474445,0.7014078903011978,-0.4385419739410281,-0.8006982672959566,0.8153764083981514,-0.4490194101817906,0.6404976597987115,0.3230687449686229,-0.32022953452542424,-0.3207731661386788,-0.0726621262729168,0.8686634809710085,0.5710069038905203,-0.601312848739326,-0.14286524569615722,0.8437090115621686,0.004811916034668684,-0.5069070099852979,0.8262973260134459,-0.9705443088896573,0.4759740983135998,-0.4324126010760665,0.050361765548586845,0.5460454430431128,0.21129878936335444,-0.3654933120124042,-0.3488991721533239,-0.18315653502941132,-0.9977426556870341,-0.9812451996840537,-0.19797301618382335,-0.2339038266800344,-0.05287172645330429,-0.11167275998741388,0.4421925926581025,-0.6894399630837142,0.6733132959343493,-0.5244165370240808,0.06727247266098857,-0.2740091122686863,0.8152926843613386,0.418625351972878,-0.6981919156387448,-0.20274540735408664,-0.5256958617828786,0.11276568286120892,0.6853627138771117,-0.8300295420922339,0.5488933376036584,0.27675739908590913,0.2838008161634207,0.9968780474737287,0.48919885652139783,-0.28929066052660346,-0.9197939429432154,-0.3959586196579039,0.5225676856935024,-0.6928067575208843,0.8500402513891459,-0.22234804928302765,0.030411257408559322,0.4999064113944769,0.4707381217740476,0.9370265346951783,0.44217226561158895,-0.32507376885041595,0.5135085741057992,-0.32399771455675364,-0.16990606673061848,0.5733755598776042,-0.8363658445887268,0.8629333632998168,0.5078613348305225,-0.7113560442812741,-0.6874480680562556,-0.19352753600105643,-0.0641183964908123,0.8729245411232114,0.6051827776245773,-0.06422397494316101,0.07071519689634442,0.04222290078178048,-0.8356226906180382,0.236924244556576,0.6115985396318138,-0.4770740997046232,0.7977139372378588,-0.5858268705196679,-0.05421384843066335,0.1681289030238986,0.5787593368440866,-0.10457864915952086,0.5479222512803972,0.9563406030647457,-0.6841362719424069,0.6800132361240685,0.65420724125579,0.7243926473893225,0.7036775234155357,-0.43644772516563535,-0.3925945325754583,-0.49327797489240766,0.5477006370201707,-0.1293581835925579,-0.5363081744872034,0.908922010101378,0.14353656210005283,0.3645344339311123,0.251904537435621,0.1900899983011186,0.6859747720882297,-0.3180093886330724,0.7787496722303331,-0.5139665147289634,-0.22956838365644217,-0.36632697051391006,0.8915416835807264,0.3621538821607828,-0.3066560812294483,0.50902304565534,0.9261615192517638,0.8419785993173718,0.5928791319020092,0.9633964924141765,-0.5607660040259361,0.6993652447126806,-0.47035849606618285,0.7112986939027905,-0.5975745106115937,-0.433697322383523,0.772398816421628,0.25283088255673647,-0.050982142332941294,0.7086271932348609,-0.5953174005262554,0.3119547418318689,0.5490795196965337,-0.2648218721151352,-0.8634113338775933,-0.26262817345559597,-0.6631379788741469,-0.9833061750978231,0.8448864729143679,0.03194046812132001,-0.4876972618512809,-0.8161834054626524,0.19893538439646363,-0.12142504472285509,-0.9132542228326201,-0.6734110470861197,-0.9777413103729486,0.3905837945640087,-0.9040589393116534,0.20075042871758342,0.6915222611278296,0.11530377017334104,0.5249792761169374,-0.27094822004437447,0.26544887153431773,0.5167406764812768,0.8756036683917046,-0.0771626653149724,0.3090760326012969,-0.5097277769818902,0.08760763378813863,0.6317463791929185,0.5870421133004129,-0.31538367457687855,0.5809011189267039,-0.6455399207770824,-0.5409033019095659,0.6735835196450353,0.6341059794649482,-0.6706791645847261,-0.004122514743357897,0.4082970549352467,-0.5459683304652572,0.38584251143038273,-0.7308799508027732,-0.5268510207533836,0.39841075148433447,0.745021739974618,-0.49417672911658883,-0.007101447321474552,-0.5814972505904734,-0.7715093279257417,-0.4344669203273952,-0.5092924423515797,-0.43154765013605356,0.1376166488043964,-0.9463538727723062,0.18226769473403692,-0.7198901488445699,-0.016978604719042778,-0.6384167880751193,0.47200014628469944,0.9547993973828852,-0.786141746211797,0.2139851227402687,0.8584880684502423,-0.014508424326777458,-0.9573701350018382,-0.5149452211335301,0.9150332785211504,0.30345907201990485,-0.6301711690612137,0.15644324710592628,0.38406178494915366,-0.44966366048902273,0.4547528871335089,-0.18898295518010855,-0.255538544151932,0.9962328360415995,0.010962491389364004,0.8479785961098969,0.08519251924008131,-0.6618972946889699,-0.2830461533740163,-0.6310290908440948,-0.2589491312392056,0.7303646137006581,-0.2856003185734153,0.19464185368269682,-0.44031335040926933,0.9399832780472934,0.8633178295567632,-0.5737617299892008,0.494531515520066,-0.07605459680780768,0.6526593617163599,0.10462310537695885,-0.0792569499462843,-0.17116399994120002,-0.12333063827827573,-0.7097380491904914,-0.20177127793431282,0.4210113249719143,0.050326135475188494,0.6612984724342823,0.5508916582912207,0.6427944772876799,0.5195911070331931,-0.17655354924499989,0.9958896026946604,-0.7783149611204863,-0.7439380246214569,-0.002200586721301079,-0.2397247301414609,-0.34892502101138234,0.384875665884465,-0.1013193428516388,0.47892683185636997,-0.30119498586282134,0.48416318092495203,-0.07033345941454172,-0.9917453527450562,0.6422118898481131,0.6861702264286578,0.6091764173470438,0.06713013909757137,-0.8311423668637872,-0.28537009423598647,0.6734982379712164,-0.04391966154798865,0.8665029699914157,-0.33131960593163967,0.7107903813011944,-0.5787283526733518,-0.4006654736585915,-0.9185061380267143,-0.9226595750078559,-0.156168463639915,-0.6009453358128667,0.5179358017630875,-0.49505009688436985,0.6538062845356762,-0.5995579245500267,-0.895428603515029,0.3605056134983897,0.25118064507842064,0.522306109778583,-0.294385879766196,0.5130083286203444,-0.16674794582650065,0.6198183624073863,0.5574117545038462,-0.5787569531239569,0.9306921572424471,0.9963027788326144,0.5124871232546866,0.09550198027864099,-0.270303794182837,-0.3566258982755244,0.4045966346748173,0.8967390046454966,-0.30728427646681666,-0.12446649977937341,0.8457139520905912,0.9729094351641834,-0.3408141420222819,-0.36160017224028707,-0.8214560975320637,0.9631452104076743,0.0991103695705533,-0.3423175597563386,0.40959114907309413,0.9812433505430818,-0.06431111320853233,0.9486107621341944,0.6073462325148284,0.8646751837804914,0.4677524073049426,0.8479595291428268,0.020847119390964508,-0.7475520926527679,-0.8729937579482794,-0.24340457282960415,0.44986410485580564,-0.5308701707981527,0.24951603636145592,-0.5791488788090646,-0.28843505261465907,-0.5398568813689053,0.39242089726030827,-0.7388587114401162,-0.9693245803937316,-0.37603004882112145,0.5173863372765481,-0.44004784896969795,0.5870950384996831,-0.5351701434701681,0.3549059252254665,0.0747451325878501,-0.7385141057893634,-0.5540455067530274,-0.7844101507216692,0.15010414132848382,0.7867439426481724,-0.5766458692960441,0.500490381848067,-0.42300405260175467,0.6255269576795399,0.8388163782656193,0.2666435078717768,-0.06867833714932203,-0.6753262453712523,-0.5253443163819611,-0.2014254811219871,0.08514264039695263,-0.6829230659641325,0.18649124447256327,-0.4437613971531391,0.45574238430708647,-0.6181030925363302,-0.6167839039117098,-0.10264992015436292,-0.7861815579235554,-0.8763111587613821,0.17164949607104063,-0.3120838920585811,0.6507311630994081,0.7282522115856409,0.301644635386765,0.31928117014467716,0.09395875921472907,-0.259535810444504,-0.616573594044894,0.8566785855218768,0.5491818212904036,-0.752609190531075,0.6472991243936121,-0.003398754633963108,-0.5023042997345328,0.24266931228339672,0.6392846694216132,0.3323473986238241,0.5258021298795938,-0.13734403485432267,-0.8015591627918184,0.8747472455725074,-0.7222030959092081,-0.281952619086951,-0.7493151961825788,0.4997017630375922,0.10650897631421685,-0.21492900559678674,0.774109820369631,0.592244696803391,0.33928112406283617,-0.6287936312146485,-0.9204638483934104,0.13532720552757382,0.8233881876803935,0.5121249752119184,0.21221902128309011,0.4109141561202705,-0.33111392660066485,-0.08421824406832457,-0.07233728421851993,-0.03432127879932523,0.2524750749580562,-0.9595918292179704,0.43259373353794217,0.2964581185951829,-0.580447549931705,-0.22997548757120967,-0.4033344592899084,0.3650655006058514,0.9038911066018045,0.9057203372940421,0.8107576770707965,-0.36038814717903733,0.9463020851835608,-0.05906862812116742,0.5698658819310367,-0.8836616040207446,0.956055729649961,0.8709872248582542,0.317201716825366,-0.6497764755040407,-0.930139658972621,-0.47791944770142436,-0.9722101585939527,0.7254789625294507,0.8781971260905266,0.9725079354830086,0.21155743580311537,0.46723581152036786,0.3215631488710642,0.050628780387341976,0.9619459486566484,-0.8923752862028778,0.5550384046509862,0.9286444005556405,-0.07082855049520731,-0.7723295367322862,-0.4168853950686753,-0.7267196071334183,-0.27552431682124734,0.17216209787875414,-0.8931207037530839,-0.48005521949380636,0.9745363378897309,-0.1774362246505916,0.35679209185764194,0.12938314070925117,0.806358358822763,0.30191356921568513,0.8542716079391539,0.21931215841323137,0.5943114049732685,0.18274952191859484,0.3385437596589327,-0.9237412856891751,0.4990286431275308,0.48867666395381093,-0.22335833683609962,0.09460685215890408,0.4748063124716282,-0.44332894776016474,0.5636428310535848,-0.1751755578443408,-0.8323120339773595,-0.23562728986144066,0.7736109821125865,-0.5975655005313456,0.7808402949012816,0.9073752597905695,-0.016511094756424427,0.3771679289638996,0.9622706254012883,-0.24200381571426988,-0.7812513392418623,0.6482771034352481,0.36045070830732584,-0.24260450201109052,0.42319618444889784,-0.4574136990122497,-0.8594227423891425,-0.4508077558130026,-0.09321305202320218,-0.05640576593577862,0.21051097940653563,0.7868715990334749,0.9598165093921125,0.2716190335340798,0.9016259964555502,-0.05150355026125908,0.6103377374820411,-0.2321654548868537,0.0036207796074450016,-0.35361124062910676,0.09172273380681872,-0.08829869143664837,-0.38098889496177435,0.25661802710965276,0.40360536938533187,-0.31944372598081827,-0.5727269677445292,-0.5815825290046632,-0.3084461549296975,0.060938707552850246,0.9920722199603915,0.5076289037242532,0.7433010865934193,0.6432821732014418,0.10562201496213675,0.8726293039508164,0.07425122940912843,0.22750516794621944,-0.219197204336524,0.675743374042213,-0.8728298977948725,-0.21227142587304115,0.08884805394336581,-0.5752374944277108,-0.949576148763299,-0.002066077198833227,-0.18165243277326226,0.8488914226181805,-0.8924855589866638,-0.4479792178608477,0.8170051742345095,0.8393812291324139,-0.6955796987749636,-0.6343062613159418,0.8011163747869432,-0.7594417659565806,-0.9317209646105766,-0.804119564127177,0.7025578930042684,-0.9411161737516522,-0.02680612215772271,-0.7623005178757012,-0.13944378914311528,-0.6216688803397119,0.8505653534084558,-0.5257612280547619,-0.8645257810130715,0.48075738130137324,0.08562370156869292,-0.7908947006799281,-0.15531641943380237,-0.6892511397600174,0.8600791567005217,-0.9300127080641687,0.798236187081784,-0.6336886952631176,0.11308858590200543,0.39628461888059974,0.997669146861881,-0.19808083586394787,0.16526870848610997,-0.6187854441814125,-0.2074137474410236,-0.8773807291872799,-0.25334571534767747,-0.4434340144507587,0.1431422457098961,-0.5320502766408026,0.2422734242863953,0.19360242178663611,-0.2693692077882588,-0.6252825437113643,0.8269755756482482,-0.8751657046377659,0.06118865916505456,-0.23862283257767558,0.4063054136931896,-0.36475604539737105,-0.6891064019873738,-0.617653738707304,0.5559725449420512,-0.14796540793031454,0.8873268999159336,-0.2598530896939337,0.3763528880663216,-0.8616348393261433,0.975806393660605,0.16357562644407153,0.4128854079172015,-0.2624457678757608,0.38385701226070523,-0.7454196964390576,0.9142044624313712,0.1710644937120378,0.08585289819166064,-0.07355033652856946,0.8425019751302898,-0.15972435427829623,-0.29628957249224186,-0.19915873557329178,-0.85097960755229,0.763218617066741,-0.001657766755670309,0.5496142166666687,-0.11050629243254662,0.7396587049588561,-0.29315052973106503,0.36935939313843846,0.2072756509296596,0.4606935321353376,0.10334168095141649,-0.7426151307299733,-0.6807052041403949,0.14102588314563036,0.14971440378576517,0.41466591507196426,0.15857698442414403,0.6149618737399578,-0.39994834596291184,0.919095410965383,0.7392208883538842,0.01481002802029252,-0.5707117416895926,0.03708657622337341,-0.21555889351293445,0.36787165561690927,-0.4412047853693366,-0.534227583091706,-0.026102468371391296,-0.501358553301543,-0.30416831001639366,0.2376659377478063,0.3612149623222649,-0.6470433692447841,0.27302192337810993,0.5211580651812255,0.7797053349204361,-0.38623227644711733,-0.449506729375571,-0.4301140387542546,-0.7516916580498219,0.5916276024654508,-0.529874580912292,0.1760844304226339,-0.7274851487018168,-0.8221427630633116,-0.01503327488899231,-0.09808879066258669,0.7174164429306984,-0.464064828120172,0.735759403090924,0.712366190738976,0.810638016089797,0.6622651997022331,-0.12673672148957849,-0.04253432992845774,0.041460341308265924,0.35165234934538603,-0.7978315679356456,-0.2439070288091898,-0.5684739504940808,0.4429665934294462,-0.8314055814407766,-0.22870983881875873,-0.8703807112760842,-0.9475849475711584,-0.36182868713513017,-0.5545290005393326,0.5007347934879363,0.27188170282170177,-0.906050628516823,-0.7922511859796941,-0.9510051114484668,0.899843383114785,-0.41515708435326815,0.2513177967630327,-0.21800466906279325,0.6062454134225845,0.10425690747797489,0.0850840830244124,0.950656013097614,-0.6321107274852693,-0.02896157931536436,0.3376168576069176,0.438936794642359,-0.835160227958113,0.5896897623315454,-0.09670212771743536,0.9053656468167901,-0.2643279517069459,-0.1256097061559558,-0.5293210241943598,-0.27868229895830154,0.22784215956926346,-0.7872867444530129,-0.8305976879782975,-0.9195217387750745,-0.36448449548333883,0.3131076325662434,0.6056722840294242,-0.747895972803235,0.3928524195216596,-0.687059024348855,0.11079851351678371,0.3229010505601764,0.07281478028744459,0.0005189818330109119,-0.9739325102418661,0.5682154651731253,0.8889541421085596,0.660268833860755,0.7326094475574791,0.8810592698864639,0.29096867935732007,-0.9287660592235625,0.3087728847749531,0.5599270635284483,0.9939905046485364,-0.40257697785273194,-0.9310707449913025,-0.3661598712205887,-0.8823644747026265,-0.4893363774754107,-0.6962550063617527,0.5993736898526549,-0.2068626438267529,-0.0391238322481513,-0.22459182562306523,0.7055266704410315,-0.4554342729970813,-0.4478788059204817,0.980152536649257,-0.6748317941091955,-0.39257460553199053,-0.1347492467612028,0.361158330924809,0.2145447339862585,0.39963149139657617,0.845787029247731,-0.0779522261582315,-0.13251872966066003,-0.9583778013475239,-0.6206678980961442,-0.12088681571185589,0.06174580845981836,-0.35098671494051814,-0.02242335584014654,-0.6990333618596196,0.38122300896793604,0.3572156368754804,0.4349787263199687,-0.6084145670756698,-0.07797736721113324,-0.1697901738807559,0.15386058064177632,0.2747106086462736,-0.8371411846019328,0.76588054606691,0.6830658875405788,0.38640827452763915,-0.18631376465782523,-0.8365752943791449,-0.3259841022081673,0.2018006881698966,-0.9326535747386515,-0.6391683388501406,0.9182755430229008,-0.6756149213761091,-0.7677351394668221,0.010888834949582815,0.042048551607877016,0.9412741167470813,-0.4915886293165386,-0.26220108615234494,-0.49688403215259314,0.7018263535574079,-0.010323388502001762,-0.6620229897089303,0.7644245806150138,0.6725998036563396,0.4462688537314534,0.42755814362317324,-0.10515161976218224,0.8472910905256867,0.32463345117866993,0.14551788568496704,-0.2799956239759922,0.1737074265256524,0.25804216135293245,-0.426323170773685,0.7834012163802981,-0.3075280240736902,-0.9919354473240674,-0.8891115710139275,0.4280932582914829,0.8073926041834056,-0.9844268425367773,0.6265941970050335,0.6461235117167234,0.9706285330466926,0.5321174957789481,0.29870805284008384,0.39352766145020723,-0.07551304902881384,0.3772363648749888,-0.8448525262065232,0.46881430270150304,0.3979494562372565,0.8212850224226713,-0.8527515400201082,-0.18415965605527163,-0.2671008612960577,0.6977619724348187,-0.005496946629136801,-0.778517859056592,0.775034517981112,-0.36852697655558586,-0.27025949023664,-0.8606905401684344,-0.10218623420223594,-0.33972506830468774,-0.5454784315079451,-0.4525684039108455,0.6390129434876144,-0.0887410338036716,0.1593996323645115,-0.21359826810657978,0.1779064410366118,-0.27373397583141923,-0.016057168133556843,-0.38974998984485865,0.6341996886767447,0.7474922332912683,0.16120277252048254,-0.9966700254008174,-0.210582060739398,-0.6007030131295323,0.34758775075897574,-0.9780472414568067,0.05457380088046193,-0.7878787224180996,0.05123822716996074,-0.863847890868783,0.9795879190787673,0.3795294491574168,0.3140044813044369,-0.12384571600705385,-0.7554036770015955,-0.15033684531226754,0.4386623380705714,0.14929325645789504,0.36221409821882844,0.5375081533566117,-0.44018258480355144,0.8852608264423907,-0.12054140726104379,-0.08762725396081805,0.8225054345093668,0.3693860676139593,-0.39217196265235543,0.4169984865002334,-0.9936500713229179,-0.09050998603925109,-0.035345496609807014,0.09224574500694871,0.8212737035937607,0.7702133948914707,0.7629024223424494,0.9940329198725522,0.30381636042147875,-0.5564579446800053,-0.7039463268592954,0.7612764318473637,0.9484791890718043,-0.3140944051556289,0.7116969618946314,0.7200812827795744,-0.4050236460752785,-0.20591748971492052,0.7990234107710421,-0.7345740315504372,-0.12225586315616965,-0.7400379520840943,0.9237234857864678,0.4787330259568989,-0.3471692940220237,-0.7110893181525171,0.40667600091546774,-0.6606091177091002,0.7989650811068714,-0.870585429482162,-0.2413096302188933,0.6008526454679668,0.9967130497097969,0.952513839583844,-0.2561066863127053,0.6751250848174095,-0.7755563305690885,-0.32187431678175926,0.27767489152029157,-0.835206531919539,0.42404186772182584,-0.020678887609392405,-0.986775609664619,0.6032085260376334,-0.3799155871383846,-0.2286114185117185,0.6496866950765252,-0.59347272105515,-0.06234084954485297,-0.5119412960484624,0.3953986023552716,-0.30748241394758224,-0.14449550583958626,0.2837984752841294,-0.5354942311532795,-0.4458121513016522,0.2196460021659732,-0.4469555541872978,-0.3276573484763503,-0.653215448372066,0.9058534014038742,-0.9717296375893056,-0.6457819477654994,0.6036403551697731,0.7349605583585799,0.7556628338061273,-0.12412114115431905,0.3058084398508072,0.6143171531148255,-0.7428621086291969,-0.7597641064785421,0.9263777453452349,0.656409902498126,0.27601834014058113,-0.00012504728510975838,-0.08120701182633638,-0.3686970151029527,0.04557295376434922,-0.7819646471180022,0.15950637124478817,-0.3761493694037199,-0.5151796587742865,0.4895961661823094,-0.4715241640806198,0.9025356722995639,0.5005319793708622,-0.39297150261700153,-0.18604326667264104,0.8430008944123983,0.821072825230658,-0.23177714552730322,-0.6617703516967595,-0.8693934655748308,-0.914381068199873,0.5999176460318267,-0.407512417063117,0.05750248162075877,-0.08115958422422409,0.18098030611872673,0.28562437230721116,0.002874956000596285,0.9509672438725829,-0.23404026916250587,-0.8942592716775835,0.1546894614584744,0.546514502260834,0.5676807719282806,-0.8248068625107408,0.12242763815447688,0.9434022810310125,0.17163908062502742,0.007975689135491848,-0.4684587507508695,-0.5232468447647989,-0.4174200873821974,-0.02162576513364911,-0.601389592513442,0.8805469474755228,-0.21838847501203418,0.8816371443681419,0.0584427728317678,0.29383681807667017,-0.03716911841183901,-0.30058718379586935,0.22955154813826084,-0.3503882456570864,-0.7131916633807123,-0.4337470312602818,0.8773279194720089,-0.22130101593211293,-0.8859822009690106,-0.9862873046658933,-0.6883394466713071,-0.7718800418078899,-0.1457983022555709,0.676236511208117,-0.26878594839945436,0.8223234722390771,0.718154622707516,0.40587582578882575,0.9900489090941846,0.7759816283360124,0.4574757944792509,0.9879802172072232,-0.7490656841546297,-0.7604280547238886,-0.5683850534260273,0.7974622347392142,0.8988335411995649,0.7121964916586876,0.062071180902421474,0.48360993899405,0.280111285392195,-0.6306259743869305,-0.9740751874633133,-0.3933017672970891,0.6348713366314769,-0.32848399924114347,0.9345449404790998,-0.6077193059027195,-0.12170948274433613,-0.9538218029774725,0.5856082187965512,-0.4679436171427369,0.8834330602549016,-0.5969449672847986,-0.5191093669272959,0.835489846765995,0.36408573342487216,0.6237553842365742,-0.5652952813543379,-0.4016086691990495,0.8806811133399606,0.8757490925490856,0.5767422132194042,-0.4394145789556205,-0.9133998630568385,0.3169982130639255,0.5220996900461614,-0.6357392952777445,0.9163193530403078,0.5708163469098508,0.4374236245639622,-0.28730978909879923,0.3609734522178769,0.012235419824719429,0.8580054203048348,0.5656318422406912,-0.46036546118557453,0.7957288650795817,0.16153225162997842,0.5771905509755015,-0.42020299611613154,-0.11973228259012103,-0.164730423130095,0.27054693130776286,0.48922051629051566,0.2738959011621773,-0.40757520496845245,0.009750077966600657,-0.5503042675554752,-0.08338209334760904,0.29808870796114206,-0.9914331496693194,0.4217522223480046,-0.21462876396253705,-0.8542470978572965,0.7087227352894843,-0.9118277570232749,0.9471217896789312,-0.1205474236048758,0.48798153595998883,-0.8354259855113924,0.030800530221313238,0.6010391949675977,-0.15299420850351453,0.7766454769298434,0.07687221700325608,-0.9131507473066449,-0.07413122430443764,0.8628135449253023,-0.06509574735537171,-0.20926818391308188,-0.2119480911642313,0.07117798365652561,-0.01151216309517622,-0.7567264852114022,0.4405176006257534,-0.06375899445265532,0.11817324487492442,0.029347287956625223,-0.6524598016403615,-0.942498613614589,-0.6226848708465695,-0.26001662109047174,0.516154246404767,-0.8564781579189003,-0.20986976847052574,0.19235221482813358,0.38377027213573456,0.5543966400437057,0.13084329525008798,0.9834138699807227,-0.7444463022984564,-0.3175240815617144,-0.08346347138285637,0.3822319149039686,0.5544089134782553,0.17974217981100082,0.6702266838401556,0.7828874848783016,0.8007720592431724,0.12416697107255459,-0.5657383324578404,-0.6630795700475574,0.20286006527021527,0.2706798785366118,-0.8507337532937527,0.11839242139831185,-0.9643450104631484,0.7249612943269312,-0.6524202236905694,-0.9165063700638711,0.39464358054101467,-0.49380109924823046,0.3233804199844599,0.16068072523921728,-0.8891729740425944,-0.6021229759790003,-0.09113999688997865,-0.4260330982506275,-0.07404469233006239,0.5023563406430185,0.7623764043673873,-0.9727973784320056,-0.2354302490130067,0.5127590922638774,0.16128791915252805,0.06063051288947463,0.7808992774225771,-0.46403180807828903,0.829752613324672,-0.5575395626947284,0.8436000123620033,-0.6209159470163286,-0.7574395695701241,0.5566241964697838,0.05441753380000591,-0.506227632984519,-0.14510149555280805,-0.9935226794332266,0.8511627241969109,-0.7465683142654598,0.9843272687867284,0.7732819253578782,0.8088404079899192,-0.23495631339028478,-0.06566968047991395,-0.5643489672802389,-0.5012603811919689,-0.3662419654428959,0.9420150239020586,-0.5687413909472525,0.8511096499860287,0.8556698593311012,0.5756944227032363,0.06876176735386252,0.8520223973318934,-0.841635818593204,0.9127032929100096,-0.9389155521057546,-0.29943605698645115,0.832257216796279,0.36177390627563,0.25508027663454413,-0.902311225887388,0.1417106119915843,0.697893341537565,0.7965140771120787,-0.66623893706128,-0.22130425507202744,0.9715526448562741,-0.6094844453036785,-0.8007846320979297,-0.4099571332335472,0.04321587225422263,0.276707602199167,-0.27517132740467787,0.3102717977017164,-0.20181838935241103,-0.2517320881597698,-0.6107333581894636,0.2927080877125263,0.25009380653500557,-0.24259754130616784,-0.9599614669568837,-0.2788559179753065,0.7901424546726048,0.052300700917840004,-0.7759836227633059,0.9405032070353627,-0.7999732154421508,-0.09833958139643073,0.4906823504716158,-0.1935133603401482,0.6416606367565691,0.48450942570343614,0.7099866340868175,-0.35665008053183556,0.4517900045029819,-0.8820221447385848,0.5695754773914814,-0.7685646787285805,0.6829735110513866,0.9140555784106255,0.19107664143666625,0.8780833431519568,0.8573742718435824,-0.6957917269319296,0.8053859672509134,0.5573069811798632,0.8948605502955616,-0.42298410553485155,-0.3443535412661731,0.0557464687153697,0.5827902699820697,0.8882512901909649,0.9739443268626928,0.8319821539334953,-0.05101051554083824,0.7284459248185158,-0.1610198151320219,0.7105708420276642,0.4739194018766284,0.16312913922592998,-0.8920249161310494,-0.2864429191686213,0.5287077594548464,0.31188217736780643,0.2711552600376308,-0.24343587271869183,0.6519057066179812,0.7587959449738264,0.3913832809776068,0.20875922171398997,0.9236940033733845,0.43218900077044964,-0.3070581774227321,0.6623303638771176,-0.18963147792965174,-0.7212627502158284,0.32593340147286654,0.21265599504113197,0.3258976782672107,-0.9275140897370875,-0.01593145029619336,0.8864010106772184,-0.5483512934297323,0.20073179667815566,0.30842212587594986,0.031602101400494576,-0.6235274188220501,0.07971958117559552,0.963537170086056,0.10634929779917002,0.8664216594770551,-0.4167687357403338,-0.6324837817810476,0.2900546579621732,0.2550966297276318,0.7159061348065734,-0.13889352278783917,-0.054997801315039396,0.8454798520542681,-0.883862329646945,0.14769869670271873,0.455909913405776,0.6046251994557679,-0.5410080375149846,0.21085633849725127,-0.28149541234597564,-0.07489881385117769,0.03530224645510316,-0.3970032837241888,0.6372309266589582,0.7704982762224972,-0.029905042611062527,0.6804376463405788,0.035203610081225634,-0.8978417054750025,0.8202875535935163,-0.6499917977489531,0.8119921362958848,-0.32139675691723824,-0.9255778389051557,0.9517515432089567,-0.9909354876726866,-0.9475078857503831,-0.8943815953098238,-0.9496787511743605,0.05883233016356826,-0.10696546919643879,0.4496567673049867,0.9857766423374414,-0.8105340851470828,0.46817602403461933,-0.2923778402619064,-0.19341091997921467,0.9972674935124815,0.06116730161011219,-0.7129759164527059,-0.32456092024222016,0.6276623415760696,-0.15905847400426865,-0.9696088177151978,0.08317761914804578,0.7324232063256204,-0.9016990205273032,0.13995021115988493,-0.3220707098953426,0.0933805638924241,-0.8684091703034937,0.6265653683803976,0.854551734868437,0.05417764326557517,-0.0037445295602083206,-0.09963820688426495,-0.4119931263849139,-0.576412346214056,-0.9699728456325829,-0.8655155086889863,-0.3034683079458773,0.35316532850265503,-0.11848148610442877,0.7206663526594639,0.08485416881740093,0.6100760619156063,-0.8755954736843705,-0.5660502184182405,-0.5818261634558439,-0.9945822670124471,-0.05283531313762069,-0.24341172771528363,0.5722128292545676,0.7638506479561329,0.5108212567865849,-0.4843719811178744,-0.13873902102932334,0.9896742654964328,-0.7535236272960901,-0.6271817511878908,0.9501950750127435,-0.4838891578838229,0.6857865550555289,0.26274544512853026,0.4169315160252154,-0.9399593668058515,0.5464987009763718,0.4162349388934672,0.05926372390240431,-0.6557648763991892,-0.8084657122381032,0.8240453782491386,-0.7750828610733151,0.6236042217351496,-0.8338294513523579,-0.3132373373955488,0.08728394284844398,0.8721843790262938,-0.9574402556754649,0.8006538455374539,0.23774325754493475,0.9140567458234727,-0.21138923661783338,0.876500581856817,0.9565142192877829,-0.15006973454728723,0.3527906811796129,-0.726084953173995,0.2257352420128882,-0.7152741285972297,0.04859429085627198,-0.5077322348952293,0.987426855135709,-0.861753229983151,0.9350674627348781,0.050961748231202364,0.21889247884973884,0.9517357065342367,-0.07247522938996553,0.10483073303475976,-0.07539041480049491,0.7792316665872931,-0.8396015004254878,-0.0661457940004766,-0.8352186311967671,0.5799730787985027,0.7366501544602215,0.8493158705532551,-0.9593381686136127,-0.49730034824460745,-0.6368724713101983,0.4911813400685787,-0.5494854706339538,0.01903701387345791,0.5092469598166645,0.45410448079928756,0.9414998241700232,0.49764051008969545,0.5643816231749952,0.6064344518817961,0.22649434627965093,0.42575138434767723,0.8156716064549983,-0.01868700748309493,0.6503345901146531,0.4185100691393018,-0.2695650137029588,0.5905779018066823,0.1722038439475,0.5471867239102721,0.9631946845911443,-0.9051634902134538,-0.9244784596376121,0.6851488891988993,-0.5405640602111816,0.19287758506834507,0.7519771978259087,0.7539482419379056,0.15712072467431426,0.4789225924760103,-0.7586605218239129,-0.9420445710420609,-0.7942790421657264,0.9481077091768384,-0.7401732550933957,0.5210569086484611,-0.6307616229169071,0.8134669358842075,0.2837078468874097,-0.5763547592796385,0.8779159937985241,-0.2824856643564999,-0.12458404805511236,-0.7854289272800088,0.06262975744903088,0.07526610139757395,-0.646487969905138,-0.3679028223268688,-0.9824172481894493,-0.5734059722162783,-0.8205360728316009,0.19291502982378006,0.9728138637728989,0.5109745170921087,-0.7307423129677773,0.9995469744317234,0.19691640231758356,0.6467287442646921,-0.10891352873295546,0.18413175409659743,0.9418846191838384,0.5921489503234625,-0.9933690554462373,0.16424982249736786,-0.17207389557734132,-0.9480859967879951,-0.3027495522983372,-0.5250574597157538,-0.7380323447287083,-0.054594879038631916,0.7062095082364976,-0.919793245382607,0.6170495576225221,-0.9629656281322241,0.8367677386850119,-0.5016907081007957,0.4376124585978687,-0.6420426908880472,0.9133484777994454,0.11553185619413853,-0.6604024437256157,0.6983245997689664,-0.8052741130813956,-0.22344737499952316,-0.8167228880338371,0.08745478186756372,0.25337465526536107,-0.2761391494423151,-0.8125016503036022,-0.8635526760481298,0.8646310409530997,0.46469613583758473,0.031216023955494165,0.6847974332049489,-0.7569967559538782,0.7652675248682499,-0.8390820720233023,0.20671255281195045,-0.1581027959473431,-0.3091323236003518,-0.3669198318384588,0.03553864639252424,0.016891504637897015,-0.03919682512059808,0.7997486591339111,0.9959827442653477,-0.33437964832410216,0.3456442360766232,0.4324996769428253,0.18314699968323112,-0.224143429659307,0.377504987642169,0.6500288737006485,-0.13243229780346155,0.557810592930764,-0.9896624856628478,-0.26674459828063846,0.06701304810121655,0.20826506614685059,0.833904666826129,0.4608044377528131,-0.3681367179378867,0.30009256349876523,-0.7470904742367566,0.7438849895261228,0.6300124428234994,-0.06280451454222202,-0.08489385014399886,-0.0982598876580596,-0.3933713906444609,0.5140565666370094,-0.5499518220312893,-0.434312263969332,-0.7150599509477615,0.47988324984908104,0.5713883023709059,0.9234394752420485,0.8317461763508618,0.42275224160403013,0.30054903915151954,-0.3952503767795861,-0.5361979389563203,-0.6260738833807409,0.02066382998600602,0.4362047524191439,-0.8123202421702445,-0.4275430766865611,-0.4760629297234118,-0.9861202551983297,-0.25869275629520416,-0.46867153933271766,0.924733545165509,0.8719413788057864,-0.09129515336826444,-0.5275897826068103,-0.5740955793298781,0.1773207657970488,0.8509554867632687,-0.006785898003727198,0.7295266943983734,0.07846389897167683,-0.4246253692544997,-0.3462231704033911,0.5531116020865738,-0.11019733315333724,0.8267198335379362,0.7102062944322824,-0.746574348770082,-0.9313293788582087,-0.025641385931521654,-0.7737491736188531,0.8943241438828409,0.022428804077208042,0.8955487846396863,0.7133651385083795,0.9033873956650496,0.06303756171837449,0.502950148191303,0.4704379281029105,-0.7089154832065105,0.8203318808227777,-0.973097593523562,0.6956433919258416,-0.06834933441132307,-0.17212844919413328,-0.8548175278119743,0.1379015645943582,-0.4170831050723791,0.3773489990271628,-0.831712503451854,0.5432530380785465,0.42152098333463073,-0.6087882989086211,-0.6027699690312147,-0.6554078562185168,0.27270403411239386,-0.8568410333245993,0.12528221728280187,-0.47774031292647123,-0.3155745221301913,-0.6294275368563831,0.31841131625697017,-0.11164401797577739,0.3188513955101371,0.0219563040882349,0.19314090069383383,-0.43530539935454726,0.04497670568525791,0.6505922637879848,0.02842130046337843,-0.3925819848664105,0.58036974305287,-0.15939323185011744,-0.4773178333416581,0.11816848162561655,0.8478217395022511,-0.5159129141829908,0.6953496127389371,-0.5964592853561044,0.9599041240289807,-0.15991365397349,-0.3982078544795513,-0.1365855662152171,-0.8450006027705967,-0.45352663192898035,-0.6041298811323941,-0.8328980524092913,-0.7918369099497795,0.8176183961331844,0.23814769182354212,0.8192563029006124,0.5439375243149698,-0.3412564229220152,-0.43207874801009893,-0.15392053732648492,0.3366512469947338,0.5685962573625147,0.7517305337823927,-0.1349248643964529,-0.9938116618432105,-0.6529792179353535,0.9605547362007201,-0.36040479550138116,0.6420613178052008,-0.24507000297307968,-0.8516009394079447,-0.8242023345082998,0.6482239798642695,-0.8851299276575446,0.6936863055452704,0.44716095458716154,-0.9253065530210733,0.1052981405518949,0.23795510595664382,0.718850118573755,-0.2572632497176528,-0.9496676814742386,-0.735560885630548,-0.7870788192376494,-0.1570407352410257,-0.7918909965083003,-0.9108590250834823,0.7715194881893694,0.8712346837855875,0.9908836232498288,0.6360600767657161,-0.8278338159434497,-0.5094943977892399,-0.6214375994168222,0.8423436423763633,0.6513820295222104,-0.9787592561915517,0.4037469527684152,-0.08471737802028656,0.6501377858221531,-0.3860956500284374,0.021439901553094387,-0.7884581196121871,0.6724960855208337,-0.5352969234809279,0.022981707472354174,-0.4378326227888465,0.38843783270567656,-0.5789685999043286,-0.2623972552828491,0.06684881122782826,-0.039364264346659184,0.5315464069135487,-0.6812995532527566,-0.17615792993456125,-0.09865826740860939,0.33251323038712144,-0.5447038104757667,-0.9102586074732244,-0.5709794303402305,-0.8045619912445545,-0.682062481995672,-0.7665839386172593,0.7734390581026673,-0.8079966283403337,0.3195535042323172,-0.6228630426339805,0.3082662890665233,0.3362119165249169,0.4588835947215557,-0.8552512940950692,0.5953234019689262,-0.18266165861859918,-0.12110303714871407,0.12939776293933392,0.19373940350487828,-0.6399979298003018,-0.6485065505839884,-0.6557667315937579,0.6022617435082793,0.43687235470861197,-0.4735006452538073,0.2051203465089202,-0.5406107003800571,0.7782423039898276,0.4703469383530319,-0.37203018087893724,0.5075954883359373,-0.9810458379797637,0.6260866136290133,-0.0557907042093575,0.9367909152060747,0.2028255956247449,-0.1765479762107134,-0.843540329951793,-0.2417918387800455,-0.9644229356199503,-0.47026728745549917,-0.7943766633979976,-0.45748891308903694,0.034684012178331614,0.3956379434093833,-0.08932680124416947,0.479156824760139,0.09278973937034607,-0.9332728558219969,0.4379907064139843,-0.19323311932384968,0.5603733374737203,-0.05821407027542591,-0.268322697840631,-0.9554361174814403,-0.6832099412567914,0.29926407849416137,0.9117924459278584,-0.04101116908714175,-0.6585057619959116,-0.7818115372210741,-0.8098365203477442,0.7401363314129412,0.030896330252289772,-0.7674614153802395,-0.0723184053786099,-0.7521230801939964,-0.11304707266390324,-0.039935534819960594,-0.2134903920814395,0.5463958978652954,0.6893698424100876,-0.533975568599999,-0.3785365503281355,0.9576658452861011,0.25351761654019356,-0.4364843498915434,0.18137136986479163,-0.7843032726086676,0.7680227709934115,-0.3505695597268641,0.3740230230614543,-0.6555756758898497,-0.7554317316971719,0.30152141535654664,0.07845790218561888,-0.5905759227462113,-0.922315854113549,-0.17218334088101983,-0.5651413789018989,0.8621015259996057,-0.4513871818780899,-0.9961563372053206,-0.21477234736084938,0.9395729750394821,-0.9826682428829372,0.09395871963351965,-0.9387300051748753,-0.5571459801867604,-0.24296688986942172,-0.5685796546749771,-0.7009730758145452,0.16815235279500484,-0.4627293115481734,-0.8859314797446132,-0.056287242099642754,0.7355179926380515,-0.5774051742628217,0.22637858055531979,0.2691875705495477,0.6059889630414546,-0.9011714858934283,-0.02240770636126399,-0.05793297942727804,-0.30931782629340887,0.7312959190458059,0.7357012638822198,0.8353373310528696,-0.4520578901283443,0.5572878834791481,0.6173238125629723,-0.04332202486693859,0.11796855833381414,-0.35417751455679536,0.65050586219877,0.17353530600667,0.4530166322365403,-0.2098910128697753,0.5474444702267647,-0.2696807226166129,0.3926132945343852,0.04302931157872081,-0.6201405958272517,-0.8930389019660652,-0.2515651797875762,0.4161086631938815,0.015664659440517426,-0.7244215346872807,0.6427128268405795,-0.08640943234786391,-0.35504939779639244,0.5121769662946463,-0.6094537521712482,0.32667672727257013,0.9048563004471362,-0.6159406285732985,-0.3352810498327017,-0.9507308835163713,0.7639688546769321,-0.29667017376050353,-0.22160066105425358,0.9563757795840502,0.23599188076332211,0.7833249880932271,0.12418879149481654,-0.35297094238922,-0.2363511216826737,-0.704894951544702,0.662816190160811,0.37723079416900873,-0.6353876637294888,-0.20470238709822297,0.5385730443522334,0.22263031266629696,-0.5275879916734993,0.34536585630849004,0.33101080544292927,-0.6033845976926386,-0.25600391905754805,0.5617538010701537,-0.855729894246906,-0.3869866724126041,0.6347703584469855,-0.020712057128548622,0.5186410169117153,0.48706526728346944,0.15175417251884937,0.42494417633861303,0.4856582419015467,-0.43430410837754607,0.3787917704321444,0.7956235064193606,0.9755758279934525,0.7843638332560658,-0.8253650544211268,-0.8272388819605112,0.859307755716145,0.77718376647681,-0.6132139777764678,-0.017219372559338808,0.7643346255645156,-0.003982179332524538,-0.9231828842312098,-0.39732765778899193,0.7456209943629801,0.43897904781624675,-0.24335785768926144,-0.9011762449517846,0.00024396227672696114,-0.43587776459753513,-0.6608120161108673,0.1583106042817235,0.5984587408602238,0.08469435991719365,-0.8319480079226196,0.7156827980652452,-0.46445870120078325,0.21484222868457437,-0.06290385080501437,-0.4843594189733267,0.12133149616420269,0.7696104687638581,0.3495894866064191,0.15129121067002416,0.39977014577016234,-0.12780672498047352,0.43142558075487614,-0.4078166177496314,0.4542352007701993,-0.5962094054557383,-0.03374427603557706,-0.19694481138139963,-0.38388192653656006,-0.04906806303188205,-0.8957318058237433,-0.9640775392763317,0.45390820130705833,-0.04059174610301852,-0.2835115762427449,-0.8457980677485466,0.9420697716996074,0.8565980033017695,0.6194891287013888,0.1420300998724997,-0.038759317714720964,0.8314997358247638,0.0614090277813375,-0.2566174566745758,-0.3863127250224352,0.3641032036393881,0.3957807309925556,0.713011940009892,-0.6029880112037063,0.24280240759253502,-0.25367385847494006,-0.14869507495313883,-0.7344332062639296,0.08568031806498766,-0.5211450443603098,0.5139624085277319,-0.7966839293949306,-0.1692210379987955,0.7179161254316568,0.3781980238854885,-0.8014205796644092,-0.45646821381524205,-0.9930269895121455,0.536563079804182,0.46766320848837495,0.5286068501882255,0.5311892782337964,-0.4689664412289858,-0.889526167884469,0.9028631765395403,0.13610177021473646,0.18825356429442763,-0.8766065053641796,-0.4225922436453402,0.4095908128656447,0.009539752267301083,-0.12517335638403893,0.044699371326714754,0.5332752917893231,-0.6255821976810694,-0.05535230413079262,0.032513368874788284,0.08673563925549388,-0.9533367552794516,-0.7049045250751078,-0.8381746802479029,0.46742205368354917,-0.3756711590103805,0.45371149852871895,-0.8378059198148549,0.5102350651286542,0.32020600559189916,-0.2819970468990505,-0.532046599779278,0.13994692312553525,-0.9711597971618176,0.026270888280123472,-0.10143795749172568,-0.200644850730896,0.12610900402069092,0.7288543251343071,0.6063227322883904,0.2624942483380437,-0.06998049095273018,0.640693437308073,0.6040810779668391,0.5165052292868495,0.966947318520397,-0.5602712174877524,0.8026730744168162,-0.9517135447822511,-0.773508901707828,-0.9955488699488342,0.2302754702977836,-0.8707837681286037,0.3952162773348391,0.9177227509208024,-0.3340530372224748,-0.4758207374252379,-0.27580168284475803,0.7776048486120999,0.7634795140475035,-0.8445969298481941,0.4604652039706707,0.2667724257335067,-0.8045658483169973,0.23887733835726976,-0.45686247292906046,-0.06891727494075894,-0.1146696642972529,0.27671231469139457,-0.3761908058077097,0.5712053817696869,-0.13928608037531376,-0.36201725620776415,-0.7091985731385648,-0.1395521517843008,-0.20843457011505961,0.3799975514411926,0.5169427744112909,-0.8887093584053218,-0.20402045641094446,0.09236368676647544,0.7453350718133152,-0.6818510927259922,0.4024645811878145,-0.5982457222416997,-0.1949890381656587,0.01105588348582387,0.40220696572214365,-0.20355382608249784,-0.10935133509337902,-0.13257825188338757,0.9241272425279021,0.3331804578192532,0.6321328962221742,-0.766103025060147,-0.3467448172159493,0.9969454291276634,0.017491516191512346,-0.7236294550821185,0.5858658598735929,-0.9307328821159899,0.07822699379175901,0.20483980095013976,-0.685808178037405,-0.21414886601269245,0.6702769193798304,0.9925502561964095,0.08311959356069565,0.1567703546024859,0.40769350668415427,-0.51123385457322,-0.692910092882812,-0.662366091273725,-0.998564519919455,-0.16205361485481262,-0.3168089990504086,0.6040693391114473,-0.39136050874367356,0.4153150641359389,-0.7422510161995888,-0.9698942378163338,0.13065464096143842,0.5595752629451454,-0.8572104745544493,0.12663265969604254,-0.13797954050824046,-0.810554422903806,0.47081516962498426,0.8042357512749732,-0.6958970446139574,0.636025934945792,0.387261014431715,0.11544014047831297,0.06185002578422427,-0.4597627520561218,-0.7857861639931798,-0.8550195866264403,0.10687355371192098,0.19131177850067616,-0.5951523948460817,-0.013798147439956665,-0.487229164224118,-0.8215935695916414,0.6770203178748488,-0.09509915066882968,-0.8906286461278796,-0.7837583338841796,0.36684930184856057,0.9270609663799405,0.4250269536860287,0.7919143587350845,0.767812468111515,0.44629081012681127,-0.9370101140812039,0.5693404437042773,-0.10925791272893548,0.07319675898179412,0.6310425815172493,-0.4091034778393805,0.11081258300691843,0.6743759466335177,-0.4519241154193878,-0.38906458718702197,0.7946328604593873,0.36028015799820423,-0.533464222215116,-0.0422837664373219,0.456116552464664,-0.8763094395399094,-0.7078259205445647,-0.5542428893968463,0.794326167088002,0.3990884441882372,0.6333766267634928,0.8131860154680908,0.005508897360414267,0.2002900312654674,0.35615139454603195,0.7033860799856484,-0.2565432656556368,0.3047178480774164,0.7422785232774913,-0.1632660459727049,0.25995233142748475,-0.5879629189148545,0.6104195402003825,-0.4373349053785205,0.09006346529349685,-0.8353724665939808,0.180076589807868,-0.18623657524585724,0.9445473095402122,0.5105374376289546,0.9254198088310659,-0.9663534718565643,0.01000246126204729,0.21560466894879937,0.1566128795966506,-0.7344332477077842,-0.36820973409339786,-0.33863719180226326,0.8483862797729671,0.6767064575105906,-0.33726307190954685,0.5522134639322758,-0.4546198807656765,-0.15079600922763348,0.11849608831107616,0.8676294931210577,0.5562949571758509,0.16381731629371643,0.8184543754905462,0.8781401794403791,-0.20443903002887964,0.181472341530025,0.2667656112462282,-0.9511844958178699,0.9395204419270158,-0.8680854900740087,-0.2851652940735221,0.6329714399762452,-0.27029687631875277,-0.20523768477141857,0.9990370171144605,0.45446543861180544,-0.06383470958098769,0.25094969430938363,-0.3733426402322948,0.838538353331387,-0.5635784128680825,-0.09067219588905573,0.013825647532939911,-0.2551875473000109,-0.057518108282238245,0.8397433762438595,0.5801869831047952,-0.04094648268073797,0.829308673273772,-0.9007459133863449,0.2504609921015799,-0.6528037404641509,0.12130636209622025,-0.5033345022238791,0.54098811885342,-0.05261739809066057,0.4681044090539217,-0.9318568417802453,-0.6027013682760298,-0.9566411143168807,-0.7347191562876105,-0.6606460683979094,-0.4649437968619168,0.05266997264698148,-0.6053904686123133,0.8775130114518106,0.12019916297867894,-0.7125188875943422,-0.8225725749507546,-0.08735336689278483,-0.6064374693669379,-0.9373049335554242,-0.4342350368387997,-0.365656322799623,0.16967185772955418,0.3210705588571727,0.43555272836238146,-0.7712456034496427,-0.8300018818117678,0.128051086794585,0.3923863465897739,-0.55146638257429,0.33167615393176675,-0.7201415509916842,0.0431742612272501,-0.4434255203232169,0.6148812402971089,-0.16582911228761077,-0.7195501439273357,-0.7035130397416651,0.9870555838569999,0.7279864116571844,-0.40248478669673204,-0.7296980754472315,0.9308592253364623,0.3626092588528991,0.17326602432876825,0.6295359507203102,0.9338786946609616,0.6829835758544505,-0.9175691613927484,-0.8672067164443433,0.9213457759469748,0.5900715314783156,0.6219529365189373,-0.1649105311371386,-0.6966270757839084,-0.6008348278701305,0.8690857239998877,-0.750395767390728,-0.9029366564936936,0.0180414286442101,-0.1444744230248034,-0.6241309489123523,-0.4467219063080847,0.4898395393975079,-0.4054872146807611,0.8752738512121141,0.3136312528513372,-0.7735940953716636,0.14791408414021134,0.3866554405540228,-0.6245723916217685,-0.2765783751383424,-0.8522992464713752,-0.048329305835068226,-0.6408045045100152,-0.12050072336569428,0.7426076983101666,-0.1777578005567193,-0.23503109626471996,0.1383310677483678,-0.6668830127455294,-0.46017925441265106,0.8710192530415952,-0.21601981855928898,-0.23362211836501956,0.6722126640379429,-0.32701605139300227,0.8823019643314183,-0.0652984082698822,0.21801128843799233,-0.2987358379177749,-0.9510233988985419,-0.45491440780460835,-0.55639841966331,0.9472327027469873,0.07748234691098332,0.9859496243298054,-0.18350236024707556,-0.6447456832975149,0.8650933322496712,0.25409376015886664,-0.05500434245914221,-0.3208185378462076,-0.32986735738813877,-0.018105479888617992,-0.831549699883908,-0.6483353162184358,-0.16242045490071177,-0.7638390585780144,0.1515974309295416,-0.37272984301671386,-0.9708260530605912,0.3606669367291033,0.20273584965616465,0.3047906490974128,0.3322944384999573,0.752750257961452,0.5848478674888611,-0.46396420150995255,-0.3456401787698269,-0.5496025974862278,0.7890065093524754,-0.8783703530207276,-0.2747068591415882,0.15586747648194432,0.3269612588919699,-0.3250637333840132,-0.8082802235148847,-0.9379503750242293,0.9431717386469245,-0.803183444775641,-0.5174526064656675,0.5062134182080626,0.33444544905796647,0.40549613209441304,-0.8535851971246302,-0.1323408903554082,-0.5163688817992806,0.8783578132279217,0.06994286505505443,0.825349417515099,-0.9273210507817566,-0.35481971176341176,-0.6382390651851892,-0.5547631760127842,0.27746721636503935,0.23159530060365796,0.23214878514409065,-0.7369760540314019,0.5624690935947001,-0.16769495466724038,0.26568579440936446,-0.2364685139618814,-0.9191589565016329,0.0946445045992732,-0.7246298315003514,-0.40081003634259105,0.7252082205377519,0.6933943359181285,-0.4433707627467811,0.8228395953774452,0.3361624828539789,-0.26891639176756144,-0.44918010057881474,-0.36365352338179946,0.852427878882736,-0.48160333279520273,0.670675587374717,-0.8821029444225132,0.8751634783111513,0.8489089263603091,0.6349209272302687,0.3170079318806529,-0.9618176501244307,-0.8136343955993652,0.05259708687663078,0.554260031785816,0.5032742223702371,0.7522688694298267,-0.2787538901902735,-0.9832145543769002,0.8638715427368879,-0.00520275579765439,-0.04642725270241499,0.8457627398893237,0.6747893346473575,0.23893866268917918,0.5379141718149185,-0.17665383825078607,-0.9036399512551725,0.7633950575254858,0.35382817639037967,0.4475926961749792,0.8567715580575168,0.45199478417634964,-0.9685251261107624,-0.6783775039948523,0.8595507168211043,-0.4242600053548813,0.17443442065268755,-0.8160359025932848,-0.28034489788115025,0.5812345398589969,-0.6333079021424055,-0.10474179405719042,0.78689548606053,0.5039314981549978,-0.41730030020698905,0.026393253821879625,-0.6099695032462478,-0.3418252617120743,-0.4789100093767047,0.4599413089454174,0.7716937237419188,-0.6470943996682763,0.9302869853563607,0.8706869855523109,-0.13907436793670058,-0.9535847115330398,0.4055817751213908,0.9068145924247801,0.8877993891946971,-0.9145389883778989,0.4702708935365081,0.13099126238375902,0.3999514630995691,0.13139408128336072,0.2652735239826143,-0.7316806702874601,0.7833555499091744,0.5691760182380676,0.8042433909140527,0.5105001102201641,0.8175966897979379,-0.5779538527131081,-0.5686424295417964,0.521498725283891,-0.6152777108363807,-0.14945329306647182,-0.6118662510998547,-0.962555792182684,0.11900648474693298,0.8889190196059644,0.2839025747962296,0.4405335281044245,0.11832976154983044,0.8542426135390997,-0.25973190600052476,-0.699260136578232,-0.6247908836230636,-0.10509354062378407,-0.04187134699895978,-0.03788442397490144,-0.03163258032873273,0.29706420190632343,-0.8873465000651777,-0.7874396592378616,0.9339913642033935,0.8403706611134112,0.46424376871436834,0.5484940628521144,0.7858857908286154,0.2665150845423341,-0.679298912640661,0.3558153402991593,-0.7995811207219958,0.7247383445501328,0.45793467201292515,0.8108798242174089,-0.65909612365067,-0.9039768176153302,-0.12434133514761925,0.9738133610226214,0.5611307350918651,-0.6749566923826933,-0.28672841330990195,0.5568109075538814,0.6934428652748466,0.5260736444033682,-0.2337266793474555,-0.41648066230118275,0.9103046855889261,0.42710713436827064,-0.020254528149962425,-0.9992599673569202,0.6711936322972178,-0.4928233320824802,-0.17832021694630384,0.6824145596474409,-0.5949174929410219,-0.10429705213755369,-0.6803911989554763,0.9493617066182196,-0.2516663232818246,-0.7065644171088934,-0.19722212804481387,0.3212563507258892,0.00374457985162735,0.9403889905661345,-0.7068455177359283,0.7675630473531783,0.8393107517622411,0.5412893583998084,-0.5503063118085265,0.1828323220834136,-0.1772639318369329,0.40428312541916966,0.9615181069821119,-0.3286192431114614,0.8017394472844899,-0.27909623738378286,-0.4327264139428735,-0.7333399709314108,0.8575157062150538,0.4344598310999572,0.15467152651399374,-0.5098712672479451,-0.5889439284801483,0.389343548566103,0.6341832340694964,0.9120386159047484,0.689977212343365,0.4204985830001533,0.2416695081628859,0.7823561243712902,-0.172671923879534,0.7307003410533071,0.04017330752685666,-0.47972687194123864,0.5884258085861802,-0.05181100592017174,0.08196999551728368,0.9434105604887009,0.4056389699690044,-0.028307161293923855,-0.5772714209742844,0.38673279294744134,-0.4276888696476817,-0.5672591053880751,-0.13661500113084912,-0.9972143899649382,0.7896035709418356,0.1402555271051824,0.40528299706056714,-0.40994949638843536,-0.005740465130656958,-0.8660739678889513,-0.9285418163053691,-0.08327173348516226,-0.10365012288093567,-0.6527964416891336,0.6398876090534031,-0.1179209710098803,-0.7758984579704702,0.9928857246413827,-0.8528727334924042,-0.4666331456974149,-0.6539065125398338,0.13778854301199317,0.7283924273215234,-0.03392602736130357,-0.2156203119084239,0.5063650636002421,0.9350992147810757,0.5491440864279866,0.4292136859148741,-0.35070050740614533,-0.36072436021640897,0.06632246496155858,0.9083826802670956,0.68208550196141,0.6640207385644317,0.5446738349273801,0.9264891124330461,-0.03594076447188854,0.27199424989521503,-0.7394426520913839,-0.9646967607550323,0.05850160261616111,0.5465011266060174,0.7497493769042194,-0.8702145959250629,0.7950274227187037,0.44404211500659585,0.03914059465751052,-0.9965639496222138,0.49909266363829374,-0.9483583928085864,0.8446124740876257,-0.30499068228527904,-0.9441298074088991,0.5327393128536642,0.30503967497497797,0.028535835910588503,-0.25510860700160265,-0.3577982587739825,-0.6191291310824454,0.842202284373343,0.19534417241811752,0.8427845258265734,0.5259462809190154,0.9868313302285969,0.9386791726574302,0.8173232018016279,-0.22145761037245393,-0.802419968880713,-0.5990281621925533,-0.654974368866533,-0.9308383348397911,0.33449512999504805,-0.4941376596689224,-0.7293815398588777,-0.5582243744283915,-0.6029375731013715,0.39047034177929163,-0.707953414414078,-0.0818448094651103,0.3629418918862939,-0.10532287275418639,0.0388576271943748,-0.9150665355846286,-0.5163846076466143,-0.40791727555915713,-0.7745944410562515,0.5962195093743503,-0.05119606154039502,-0.48647784581407905,-0.060382905416190624,0.839804352261126,-0.07291990611702204,-0.8048781054094434,0.7851157444529235,-0.6476169042289257,-0.6998735088855028,-0.2824819260276854,-0.08971055131405592,0.10885119251906872,-0.7290806290693581,-0.5575571511872113,0.04874449875205755,-0.10823668353259563,-0.5288721839897335,0.7931326017715037,-0.7690889853984118,-0.32381048426032066,0.331113257445395,0.4170844038017094,0.6135432398878038,-0.04432507883757353,-0.4055993799120188,-0.4499362180940807,0.5832269643433392,-0.12825313722714782,-0.9202781552448869,-0.7859328291378915,-0.7917379261925817,0.6923671080730855,0.548954363912344,-0.7596827647648752,-0.8956658560782671,0.9410866559483111,-0.5326288915239275,0.7633088524453342,0.9559978949837387,0.32423949567601085,0.022676417138427496,-0.7585687562823296,-0.504642394836992,0.9433403201401234,0.2931355917826295,-0.0852492949925363,0.7443014695309103,0.5476320330053568,-0.05563761433586478,-0.985502758063376,0.8762032859958708,-0.8938621538691223,-0.7544200546108186,-0.5662856865674257,-0.04761505825445056,-0.5221808990463614,-0.13200393971055746,0.8900740179233253,-0.2769953147508204,-0.9771497724577785,0.9586809147149324,0.20380648085847497,-0.05487787630409002,-0.755510336253792,-0.3461693339049816,-0.5804843152873218,-0.0494579435326159,-0.14022099506109953,0.06364504806697369,0.482850125990808,0.0784586500376463,-0.7764745275489986,-0.7494739578105509,0.9523214302025735,0.6297539323568344,0.7210971238091588,-0.9184360122308135,-0.8831955213099718,-0.7996785626746714,0.9795911307446659,0.9693376929499209,-0.7063042046502233,0.6112710959278047,-0.24178741220384836,-0.8531436370685697,0.44642191426828504,0.49167144345119596,-0.31008381862193346,0.6741409455426037,0.7685990831814706,0.4147724322974682,-0.8057452789507806,-0.36843478260561824,-0.9769128006882966,0.29893733467906713,-0.12862875312566757,0.6882565165869892,-0.45857064006850123,-0.5237488825805485,0.9794625723734498,-0.9044826640747488,0.8139837747439742,0.3024570541456342,0.7734831259585917,-0.7295238971710205,0.14904012624174356,0.5389504651539028,-0.5727687636390328,0.3170950268395245,0.6448316304013133,0.9799513770267367,-0.7578104319982231,-0.9162787864916027,0.6585333533585072,0.005613937508314848,-0.2786102001555264,0.4874618770554662,0.9908649926073849,0.1867396328598261,0.022347184363752604,-0.9760358715429902,-0.14810106996446848,0.6151903024874628,-0.947916847653687,0.01711790170520544,-0.9172771563753486,-0.7078702072612941,-0.2595752556808293,0.2056923946365714,0.6052370183169842,-0.6504120007157326,-0.4774578111246228,-0.6146435621194541,0.7364516081288457,0.35038339579477906,-0.9466488412581384,0.023664670530706644,0.7114306380972266,0.05127263208851218,-0.9019130994565785,0.5695305885747075,-0.24459584802389145,0.32167877443134785,0.26514752581715584,-0.460017969366163,0.4154393966309726,-0.9442311720922589,-0.516782087739557,0.002184129785746336,0.6633747951127589,-0.6760727153159678,-0.6668673199601471,0.8254185887053609,0.4735831883735955,-0.030119116883724928,0.8417818732559681,0.0924350917339325,-0.05664021987468004,0.8346306276507676,0.9465075270272791,0.4718241919763386,0.9158064164221287,-0.08053188072517514,0.34007875621318817,0.46005842136219144,0.059727308340370655,0.13780335197225213,-0.7604539771564305,-0.5788011932745576,0.6365228677168489,0.816540957428515,-0.49650506023317575,0.48058470245450735,-0.000303786713629961,0.5404882985167205,-0.25992268044501543,-0.9285480468533933,-0.45444680377840996,-0.24115199223160744,0.8265161537565291,-0.41792613873258233,0.36219281191006303,0.34914082661271095,-0.8314773151651025,0.3668541577644646,-0.044403092470020056,0.1595496037043631,-0.8541221171617508,-0.5409069387242198,-0.9749558712355793,-0.13053165469318628,-0.8796979603357613,-0.2255534278228879,0.8244322901591659,0.25416668178513646,-0.030488172080367804,-0.9985860520973802,-0.6636401978321373,0.02244126284494996,-0.8529375228099525,-0.5042618345469236,-0.9901073877699673,0.5396122117526829,-0.7940509426407516,-0.6412953333929181,-0.6876133428886533,0.12854620022699237,0.35192220099270344,-0.17811449617147446,-0.01956549473106861,0.6233195988461375,0.7591769932769239,0.22959000477567315,0.12894395180046558,0.10092432191595435,0.10904175974428654,-0.4136872082017362,0.7998338891193271,0.6269540879875422,-0.5221494762226939,-0.3716850792989135,0.21134990639984608,0.9138683504424989,-0.41142449900507927,0.2692301287315786,-0.5294213322922587,0.5954134971834719,-0.8145075091160834,-0.6360097019933164,-0.014401253778487444,-0.713230992667377,-0.9026433066464961,0.7104041520506144,-0.7744191423989832,-0.16299394564703107,0.6831868807785213,0.2781545389443636,-0.05067598633468151,0.6005785153247416,0.7807766990736127,0.6269410573877394,0.9737029452808201,0.2738966881297529,-0.5925662559457123,0.7224333789199591,-0.6390854520723224,0.48078218568116426,-0.9501923602074385,0.41180216893553734,0.9775122897699475,0.8703503860160708,0.23988674581050873,-0.8751971879974008,-0.706540257204324,-0.06708066817373037,0.674243722576648,-0.06733528105542064,-0.2642837851308286,0.5442350534722209,0.678145126439631,-0.4362172638066113,-0.31357053155079484,-0.9129755557514727,-0.5977734783664346,-0.2050586766563356,-0.545857863035053,0.04362264461815357,0.384761122521013,0.32153113884851336,-0.7323756730183959,-0.2418406680226326,0.17779951868578792,-0.8055210881866515,-0.7042814842425287,0.20028437115252018,0.8427770719863474,-0.5734263565391302,-0.7342497850768268,0.9440900776535273,0.5618239846080542,-0.4360151826404035,-0.5655270074494183,0.23040690831840038,0.6481967205181718,-0.028670317959040403,0.31437013391405344,0.8840009924024343,-0.10724837053567171,-0.6485297167673707,-0.7838955167680979,0.8285206742584705,-0.637478191871196,0.4103524023666978,-0.3085381370037794,0.4131445293314755,0.2816161788068712,0.3502805847674608,-0.8459035828709602,0.5359909413382411,0.9995726863853633,0.15831661922857165,-0.5515907127410173,-0.7303776503540576,0.9542056224308908,0.47291363403201103,-0.8108848258852959,0.6175630502402782,-0.5043197316117585,-0.4374736766330898,-0.2682322463952005,0.6466984944418073,0.5962309525348246,-0.6113022118806839,-0.7581688445061445,-0.06602230435237288,0.5684335925616324,0.6334466151893139,0.7826410485431552,-0.5030758013017476,-0.2241047522984445,-0.19026436004787683,-0.6180218444205821,-0.3424968528561294,-0.8855787017382681,-0.059387534856796265,0.5638985503464937,0.22836967557668686,-0.3694289894774556,-0.15996073791757226,0.5112490598112345,0.602481834590435,-0.0072697969153523445,-0.19401854369789362,-0.9392690840177238,-0.0805871905758977,-0.6324842763133347,-0.08872841950505972,-0.10395106952637434,-0.4630754296667874,0.5897204088978469,0.04977632826194167,0.9218982262536883,0.5023522861301899,0.9149651699699461,0.6108134123496711,0.8966420129872859,0.012137040495872498,0.5829245606437325,-0.328843136318028,-0.41540881246328354,0.4830542360432446,-0.4690850521437824,0.3701677988283336,-0.7401436986401677,0.4147163424640894,0.8833217439241707,0.4356067101471126,-0.09194989502429962,0.12019844679161906,0.44676203187555075,-0.5412449850700796,0.8984240125864744,0.3481052494607866,0.6812414438463748,0.28044076869264245,-0.34862102707847953,0.9830230814404786,-0.17591159278526902,-0.39384948275983334,0.7588970768265426,0.8590978877618909,0.8254002910107374,0.6044645798392594,-0.07947926921769977,0.042341516353189945,-0.37808155501261353,-0.9717797669582069,0.817252891138196,0.302956351544708,0.2025152943097055,-0.18056453252211213,0.18155447812750936,-0.9577410891652107,0.5526715335436165,-0.8875311780720949,-0.5094491709023714,-0.10467641241848469,0.24728599516674876,0.325511172413826,-0.8430117457173765,0.780303904786706,-0.012469657696783543,-0.16361679276451468,-0.4461641632951796,0.8542869696393609,0.2887614406645298,0.570025373250246,0.5696653760969639,-0.9477305635809898,0.9281207709573209,-0.012114634737372398,-0.5859644063748419,0.12609826540574431,0.23587550781667233,-0.8533606897108257,0.9200564986094832,0.06370949512347579,0.2513299915008247,0.9678913746029139,-0.40566240856423974,-0.27762197190895677,0.5441393293440342,0.6966719524934888,0.7903733956627548,0.9519020961597562,-0.0780645259656012,-0.46348196687176824,0.8939166180789471,-0.8706459780223668,-0.6535761440172791,0.9167795786634088,0.2830879623070359,-0.21600775327533484,-0.6364437197335064,0.9403535695746541,-0.9810067932121456,-0.6632153335958719,-0.633924497757107,-0.5539786531589925,0.5630635726265609,-0.5350280436687171,-0.9354772460646927,0.01645426359027624,-0.6353228623047471,0.1933130552060902,-0.23233008664101362,0.04839901393279433,-0.05532130692154169,0.8932900428771973,0.2044256036169827,0.854920597281307,0.9234335459768772,-0.43455573497340083,0.4677552627399564,-0.9351843832992017,0.3671044004149735,-0.019431781489402056,0.26064358092844486,0.16199294896796346,-0.49360510939732194,-0.6699703871272504,-0.5396982175298035,0.7954291310161352,0.4766732514835894,-0.9475548714399338,0.5248453714884818,-0.052926589734852314,-0.2924182005226612,-0.6626025680452585,-0.24434803100302815,-0.01136476220563054,-0.31676991609856486,0.6814274843782187,-0.1106971655972302,-0.009677620138972998,-0.9754731971770525,-0.5647065918892622,0.4195253443904221,-0.4164183223620057,-0.5063068331219256,-0.6556638781912625,-0.6291386438533664,0.5270818346180022,0.8850362314842641,-0.3948751734569669,0.6505808648653328,-0.7642512363381684,-0.6938142157159746,-0.4170150435529649,-0.3442549458704889,0.7948943809606135,0.16695466358214617,0.4618997983634472,0.9645886644721031,0.22296038642525673,-0.39252123050391674,0.14565704064443707,0.3026517299003899,0.7892396016977727,0.04381432384252548,-0.06000810256227851,0.8497688784264028,0.2963217180222273,0.2834022701717913,-0.009246557485312223,0.06452708877623081,0.6660976759158075,0.8124145711772144,-0.6880974709056318,0.7317108544521034,-0.23036652198061347,0.9555027782917023,0.5436426596716046,0.28721951972693205,0.9061353257857263,-0.19145313324406743,0.05882522091269493,-0.39963175915181637,0.33154517924413085,-0.8981145620346069,-0.5950001724995673,0.7918768455274403,0.47219678293913603,0.41477002995088696,0.1685317624360323,-0.051172920037060976,-0.6292676166631281,-0.9158450467512012,0.5731467590667307,0.49403749126940966,0.5095162452198565,0.9998758090659976,0.2514616479165852,-0.9182390947826207,-0.9649743442423642,0.8565199957229197,-0.14204952027648687,-0.3656225996091962,-0.05488526355475187,-0.1477857162244618,-0.9729893859475851,0.31320280116051435,0.9025452495552599,-0.5351259047165513,0.78866230789572,-0.7605353612452745,0.2771866573020816,-0.5001059705391526,-0.06988651724532247,-0.7753171846270561,-0.776248358655721,0.04197987774387002,-0.9362585227936506,0.12509887851774693,0.24037555325776339,-0.8398395022377372,0.24134776601567864,0.5358254280872643,-0.3943516775034368,0.8043987355194986,0.553578108549118,-0.4820053558796644,-0.619428928475827,0.4534058840945363,-0.2399503579363227,0.6931925103999674,0.9974814527668059,0.8392661632969975,-0.04038649285212159,-0.21624739654362202,0.023465221282094717,-0.5477925511077046,-0.2747011478058994,-0.3437437079846859,-0.11332444055005908,-0.047222926281392574,-0.7707095788791776,0.5143194650299847,-0.7410684619098902,0.878056759480387,-0.6094098370522261,-0.7946357717737556,-0.749442202039063,0.6690714666619897,0.7451349394395947,0.024154665879905224,-0.6346244211308658,-0.11939812125638127,-0.019010210875421762,0.3556163595058024,-0.71331837028265,0.47708552284166217,-0.6234627924859524,-0.2034582062624395,-0.35808950290083885,0.17457616282626987,-0.31711562955752015,-0.3845434379763901,0.2521566632203758,0.4497960740700364,-0.9434533375315368,-0.7857146095484495,0.17577143805101514,-0.5676197675056756,0.01623036153614521,0.06143526593223214,0.6463514165952802,0.6418639095500112,0.5019508646801114,-0.8236989825963974,-0.3113850080408156,0.4492972809821367,-0.6490989145822823,0.2239949656650424,0.7126111723482609,0.5054072882048786,-0.6488177594728768,0.16456453502178192,0.6767673124559224,-0.3877817830070853,-0.14184670569375157,-0.5262621939182281,-0.2517888084985316,0.16189713682979345,0.4970987937413156,0.446638957131654,0.534348183311522,-0.7058357135392725,-0.4947912762872875,-0.558563104365021,0.0025795395486056805,-0.1260752184316516,0.6862767981365323,0.5293027521111071,0.6830024714581668,-0.959845729637891,0.479693210683763,-0.5764864142984152,0.4287095698527992,-0.9486371441744268,0.6122612948529422,0.7914511607959867,-0.4353124648332596,0.48002759693190455,-0.20966162346303463,-0.05364955496042967,-0.4218304334208369,0.659045965410769,0.5650909682735801,0.2571923742070794,0.08786583878099918,-0.23225438268855214,0.36642775451764464,-0.8954607713967562,-0.7139953766018152,0.8729631584137678,-0.09063703380525112,-0.051703129429370165,0.0041843075305223465,0.6172044686973095,-0.22222130186855793,-0.1767653152346611,0.5805478394031525,0.11351991817355156,-0.7553456840105355,0.5868967515416443,-0.22605461673811078,0.2970736385323107,0.5125464689917862,-0.027266439981758595,-0.8778358711861074,-0.9531761361286044,0.7038705283775926,0.2229567188769579,-0.4010061281733215,0.5559138394892216,0.2988317687995732,0.12736926041543484,0.254182459320873,0.3545592655427754,0.7773021459579468,-0.5893559060059488,0.15093756280839443,-0.399221520870924,0.2453314634039998,0.32277581142261624,0.07669504499062896,-0.9256071313284338,-0.05798009876161814,-0.49670200794935226,-0.5330915781669319,0.35482059186324477,-0.8678490803577006,0.738672077190131,0.7225124542601407,0.9736856427043676,-0.6024787006899714,-0.92053152481094,-0.9267188785597682,0.7978225410915911,-0.6313273664563894,-0.5768194724805653,0.8331239544786513,-0.9338958631269634,0.8500465149991214,0.6509542474523187,-0.6818881928920746,-0.8742448659613729,0.817980089224875,-0.5913725076243281,-0.5347019727341831,-0.693134075962007,-0.10147194238379598,-0.7349773766472936,0.3121705180965364,-0.22127353539690375,0.022040081676095724,0.3654038175009191,-0.25892154639586806,-0.057337154634296894,-0.46484624221920967,-0.5906872800551355,0.16487952880561352,-0.41947909304872155,-0.2533535878174007,0.048310506623238325,-0.39791762828826904,-0.6982318181544542,0.5959504852071404,0.7631096737459302,0.1988304373808205,0.44846416963264346,0.35537590412423015,0.7713861726224422,-0.2853249032050371,-0.47895590774714947,-0.4406553376466036,0.2431653724052012,-0.30981018766760826,-0.0971794887445867,-0.5952213760465384,-0.5089655769988894,0.047936863265931606,0.8785445452667773,0.665398430544883,-0.6827625497244298,-0.5081557161174715,0.9887617663480341,0.3849152303300798,-0.7318732868880033,0.4745999942533672,0.08842563815414906,-0.03855340415611863,-0.10085198329761624,0.11183031741529703,-0.5462960107252002,-0.2901600715704262,0.33302462147548795,-0.09979492239654064,0.20000562677159905,-0.673119489569217,0.47616880014538765,0.6603315393440425,-0.7575473566539586,0.9832269586622715,-0.5893963761627674,-0.024559600744396448,-0.40027428697794676,-0.25837968522682786,0.3847538325935602,-0.4347460293211043,-0.4014056297019124,-0.904484961181879,0.5472789057530463,0.1804526629857719,-0.2582631236873567,-0.1862124651670456,-0.37712615402415395,0.44010591274127364,0.40700601367279887,0.7174351401627064,-0.26883136620745063,0.29356647469103336,-0.844849621411413,0.17871167184785008,0.12419661367312074,-0.10498208738863468,-0.08329909853637218,0.41535733733326197,0.9253847501240671,0.7815997581928968,0.7377744447439909,0.7833785535767674,-0.21592616522684693,-0.07939235540106893,-0.9822559831663966,0.5449227262288332,-0.948425053153187,-0.021724070888012648,0.4913004073314369,-0.8648519623093307,-0.37920238822698593,-0.2075500711798668,-0.7019256073981524,-0.2893000287003815,0.1430305396206677,0.04909090185537934,0.6996393776498735,0.5589045137166977,0.1626897775568068,-0.06916217692196369,0.11721640452742577,-0.6582670528441668,0.3594086137600243,0.6754454150795937,-0.9895540731959045,0.5972010381519794,0.9820028734393418,0.20041176956146955,0.27270832657814026,-0.8922386821359396,0.36384308338165283,-0.8006207505241036,0.5994327017106116,0.8267363524064422,-0.7392773735336959,-0.17624899977818131,0.05191922700032592,0.1306234668008983,0.33818594506010413,0.5776609294116497,-0.975273909047246,-0.43004428036510944,0.45576799660921097,-0.4204322611913085,-0.6767901335842907,0.07908247597515583,0.37139667198061943,0.38952690083533525,0.07266458868980408,-0.9161126217804849,-0.8433468891307712,0.9062367798760533,0.7989892074838281,0.5697922729887068,0.3903678981587291,-0.7993862126022577,-0.9984408323653042,-0.9310714909806848,-0.3653443269431591,-0.3837003312073648,0.425535686314106,-0.0245926552452147,0.8071257281117141,0.8109244871884584,-0.9640248669311404,-0.5671093976125121,0.30790829937905073,0.5014087930321693,-0.5674619260244071,-0.4016018221154809,-0.15886066807433963,-0.20284654572606087,0.9435883313417435,-0.7321902718394995,-0.1942451703362167,-0.7901100968010724,0.10406432440504432,0.28098202450200915,-0.3074697945266962,-0.818893211428076,-0.632513185031712,-0.11894400650635362,0.8080142424441874,-0.47420772397890687,0.10200077807530761,0.7280077403411269,0.707228135317564,-0.23654744867235422,-0.12653277115896344,0.9188318531960249,0.5479780035093427,0.4808584130369127,0.10743352910503745,0.5071626207791269,0.7260791100561619,0.901971981395036,-0.3077968005090952,-0.8522077929228544,0.31082232715561986,0.9631841336376965,0.15193197457119823,-0.25995655776932836,-0.9927622196264565,-0.8676530886441469,0.8511162986978889,0.7690779441036284,0.4458273504860699,-0.8449727394618094,0.5622520078904927,0.8763976451009512,0.10458859335631132,0.9561356017366052,0.028422964736819267,-0.14770901575684547,-0.14849871210753918,0.4370458470657468,0.528741545509547,0.3089470202103257,0.03715056926012039,0.7099791010841727,0.29821534315124154,0.19757398264482617,0.4852703493088484,-0.8111778688617051,-0.1768086147494614,-0.6271762638352811,-0.21895945444703102,0.343658865429461,0.8195436638779938,-0.7039714641869068,-0.5613853903487325,-0.421670276671648,0.9571058652363718,0.5890555614605546,-0.28185998322442174,-0.033540254924446344,-0.8896886962465942,-0.9666429706849158,0.06722237821668386,-0.3974859672598541,0.7022973150014877,-0.6932364879176021,0.05140429828315973,0.36214327346533537,-0.9196245442144573,0.4162157089449465,0.14122057519853115,-0.13188698096200824,0.4978766106069088,0.020655423868447542,0.7098875581286848,-0.05860261665657163,0.776618008967489,-0.22441354021430016,-0.7824976444244385,0.7552271606400609,0.28305474948138,0.4533550003543496,0.062391860876232386,-0.4968940098769963,0.852566965855658,-0.09176928177475929,-0.42665691673755646,-0.5280626080930233,-0.49636427592486143,0.3061022078618407,-0.5720806764438748,0.4061735854484141,-0.31287923362106085,-0.07457714667543769,-0.1678287829272449,0.19359278958290815,-0.6414632173255086,0.43979671597480774,-0.22927646711468697,-0.8997076451778412,0.046396343037486076,-0.5587602271698415,-0.5908306641504169,0.5105321099981666,0.29161319974809885,-0.30352148599922657,-0.5103125032037497,0.2620396730490029,-0.46606666687875986,0.47739684768021107,0.3472556071355939,0.2379507962614298,0.5641444781795144,0.48359703179448843,0.9787915670312941,0.6427263608202338,0.9225445683114231,-0.9121347921900451,0.15683312341570854,-0.4363750391639769,0.15751849533990026,0.3477086969651282,0.12852952210232615,0.3205403108149767,0.004238015506416559,-0.4594686673954129,-0.15342823090031743,0.8615155988372862,0.4416024652309716,0.6661937707103789,0.12681188201531768,-0.24734213994815946,0.40144234197214246,0.08098789351060987,0.33027339167892933,-0.9947319459170103,0.6103493603877723,-0.6525400867685676,0.48701050598174334,-0.9394029071554542,-0.6643699957057834,-0.488082617521286,-0.22350578848272562,0.8327414076775312,0.04525384772568941,0.5977964461781085,0.4838219154626131,0.8330108714289963,0.09921759180724621,-0.3889981545507908,-0.1954957889392972,0.22160232858732343,-0.8824797286652029,-0.14455994358286262,0.8223125338554382,-0.8246029056608677,0.5628691101446748,0.17947320826351643,-0.8667751871980727,0.93536596884951,0.32633665250614285,0.9424039619043469,-0.687908879481256,0.8104256694205105,-0.2584465551190078,0.9889855263754725,-0.17131637129932642,0.15713785868138075,0.4486412722617388,-0.9060311890207231,0.852677971124649,0.17589316237717867,0.5144417658448219,0.7654727860353887,0.6137728434987366,-0.8350052535533905,0.03665265487506986,0.9409821215085685,-0.7862979155033827,-0.20180436177179217,-0.11325001576915383,0.4593598213978112,-0.10380439506843686,-0.9167672102339566,0.5244640349410474,-0.7186797433532774,0.24162542494013906,0.016170800663530827,0.07337771588936448,-0.9265935975126922,0.6287704831920564,-0.0028508342802524567,-0.09801724087446928,0.34190821927040815,-0.8308916934765875,0.5030791517347097,0.757147426251322,0.5887648328207433,0.26614473666995764,-0.7682643034495413,-0.532920338679105,0.7243634006008506,0.5472485348582268,-0.0815611663274467,0.280335926450789,0.8486661915667355,-0.4700209703296423,0.36187594709917903,-0.9870980875566602,-0.13828754192218184,-0.7557125487364829,0.8463613311760128,-0.6055022017098963,0.19768759282305837,-0.768465013243258,-0.5020963279530406,-0.4858584087342024,-0.47066379338502884,-0.2948581324890256,-0.489697705488652,0.25246967980638146,0.7849515145644546,-0.9170791101641953,0.20844944566488266,0.03639294300228357,0.25199754955247045,-0.7497136718593538,0.18237394653260708,-0.8606689842417836,-0.582418296020478,0.48099967325106263,-0.9756967178545892,-0.13896001363173127,-0.20093473605811596,-0.40828058822080493,0.45711637753993273,0.3644939907826483,-0.22423584759235382,-0.38765037385746837,0.05972732603549957,0.3185311583802104,-0.8577187201008201,-0.9321240922436118,0.3810222656466067,-0.9014654722996056,0.9354239027015865,0.5703551648184657,-0.23502309760078788,0.37890540482476354,-0.3248690599575639,0.4412797228433192,-0.2867050669156015,0.5105904927477241,0.9764639218337834,-0.15114920493215322,0.3015093975700438,0.9388056909665465,-0.3392678019590676,-0.8659248664043844,0.8698196993209422,-0.7333390852436423,0.1250857482664287,0.44808227801695466,0.39140030601993203,-0.47271587466821074,-0.3989097042940557,0.15892719058319926,-0.5619966452941298,-0.9855589838698506,-0.43004444194957614,0.13550912402570248,-0.5274368054233491,-0.3425341499969363,0.37151899468153715,-0.16100553516298532,-0.2858425718732178,0.2786335274577141,-0.1069788383319974,0.977109466213733,-0.5637264298275113,-0.4202466676943004,-0.05533099127933383,-0.04137254459783435,0.6031974544748664,-0.3533100290223956,0.5356082851067185,0.12261447357013822,-0.583708574064076,-0.1809182339347899,-0.0011217757128179073,0.851389373652637,0.7812185985967517,-0.2700202977284789,0.6154067413881421,-0.20713224913924932,0.44550234731286764,-0.29252042574808,-0.27045644726604223,0.059644481632858515,0.550794224254787,0.3916730466298759,0.5331072709523141,0.9121232191100717,0.6822263151407242,-0.7539425841532648,-0.9390843543224037,-0.14649899257346988,0.9719878449104726,-0.35645301546901464,0.8869177303276956,-0.5255515472963452,-0.12216694187372923,0.5654430366121233,-0.25689733726903796,0.1849813894368708,-0.0010062111541628838,0.4297280735336244,0.8633178696036339,-0.7286468474194407,-0.20162254478782415,-0.9394752108491957,0.17692031292244792,-0.007785087451338768,0.5164094450883567,0.5657531139440835,0.8818622073158622,-0.3684943220578134,-0.45636204769834876,0.9333915524184704,0.5379192400723696,0.13983344892039895,0.8931496348232031,-0.15358731290325522,-0.38096880121156573,-0.3074568398296833,-0.6787423519417644,0.3268452798947692,-0.4168051737360656,-0.35789089603349566,-0.3790677138604224,0.5798977217637002,0.8634643768891692,-0.4149822611361742,-0.6898893238976598,-0.6416252753697336,0.09398513939231634,-0.37229503924027085,0.7975994083099067,-0.00624768016859889,0.7790752248838544,0.4717296934686601,0.5409168899059296,-0.5786547637544572,0.05726792197674513,0.1579812504351139,-0.5283723892644048,-0.42591447569429874,0.8270657709799707,-0.9329058332368731,0.8293233751319349,0.4802426281385124,-0.5132753984071314,0.3077295087277889,0.15878685098141432,-0.13195470115169883,0.36264872131869197,0.39329063100740314,-0.6768780779093504,0.8998121903277934,-0.20806728256866336,-0.9502293555997312,-0.07909957179799676,0.6483706650324166,0.9628048641607165,0.42448451509699225,0.8641808456741273,0.7510020988993347,-0.36514607910066843,0.5300708343274891,-0.6753100519999862,0.6215809802524745,-0.7735391929745674,-0.7691563875414431,-0.9176957416348159,0.14347502868622541,0.22811065195128322,-0.8661619098857045,0.20511137275025249,0.39972188230603933,0.42083260463550687,-0.8207141906023026,-0.5222604484297335,-0.5548710338771343,-0.7926520039327443,-0.2429349571466446,0.4046316724270582,-0.7227036519907415,0.961843607481569,0.6843884470872581,0.32044194731861353,0.42790667340159416,-0.6508219423703849,0.9133444726467133,0.5752677442505956,0.3152178470045328,-0.7560515790246427,-0.13057567784562707,0.6247341968119144,-0.6086713625118136,-0.7410338786430657,-0.40182208083570004,0.9266673494130373,-0.44239782402291894,0.9012370337732136,0.31513438699766994,-0.024151282384991646,0.057689263485372066,0.7491602594964206,0.15552161540836096,0.9564850591123104,-0.1045348416082561,-0.335884477943182,-0.24380939360707998,-0.35606429260224104,-0.31061372393742204,-0.2811424867250025,-0.3993925182148814,-0.2607729649171233,0.9346017567440867,0.4810104672797024,-0.6049266885966063,0.7337209107354283,-0.2195224640890956,-0.8265868993476033,0.8388715870678425,0.6653920952230692,-0.038511385675519705,0.7938317195512354,0.634480704087764,-0.1418014788068831,-0.5460189366713166,-0.5512466793879867,-0.3267324762418866,0.33972303103655577,0.06947950320318341,0.37744247633963823,0.1030619447119534,-0.5649663116782904,0.8584232456050813,-0.3050675019621849,0.26761940587311983,0.13519834401085973,-0.4240255421027541,0.2736117304302752,-0.4297536485828459,0.1720454110763967,-0.8627541144378483,-0.240266976878047,-0.5037508746609092,-0.22778350580483675,0.18490945547819138,0.6914138314314187,-0.8418546104803681,0.5485824244096875,-0.09603204252198339,0.4500813311897218,0.709687490016222,0.21950728679075837,0.4852919355034828,0.4692213241942227,-0.5151078454218805,-0.6954880114644766,0.7460346962325275,-0.25331156281754375,0.4948542262427509,-0.440467887558043,-0.3339348300360143,-0.6734831579960883,-0.004609862342476845,0.19239878421649337,0.08670065691694617,0.9523150431923568,-0.8877377528697252,0.9793111514300108,-0.1701886965893209,0.6309763938188553,-0.9697973607107997,0.3140061595477164,-0.713426461443305,0.883014730643481,-0.8925319043919444,0.051870104391127825,0.812306372448802,-0.35699995793402195,0.45876067876815796,-0.9806325007230043,0.8678106651641428,-0.07851518038660288,-0.7676757224835455,0.3888091128319502,-0.06521272845566273,0.7909665321931243,-0.2873420570977032,-0.7466346644796431,-0.46862009866163135,0.9028053916990757,0.24556023068726063,-0.7567520067095757,-0.1150838015601039,0.12583521474152803,-0.6544210282154381,0.6459169457666576,-0.7749477550387383,-0.9819404375739396,-0.27670174092054367,0.9805720392614603,0.8408412728458643,0.07691025966778398,-0.11859025014564395,0.005065967794507742,-0.6821084339171648,-0.3134901733137667,-0.8605142347514629,0.1351780267432332,0.254943884909153,-0.2461422481574118,-0.5502357445657253,-0.5716750747524202,0.586313612293452,0.16475904965773225,-0.5024676825851202,0.32196432864293456,-0.9234918276779354,0.9079392785206437,-0.4472735174931586,0.6817972874268889,-0.6237753769382834,-0.6781976697966456,0.36328632989898324,-0.5127102681435645,-0.29973433958366513,0.7994284271262586,0.49545948347076774,-0.28133141715079546,0.9784251269884408,0.7948258267715573,-0.741781847551465,0.980721085332334,0.719836485106498,0.5369762303307652,0.7917402642779052,0.5748516232706606,0.10791604407131672,0.003364870324730873,0.1254037800244987,-0.4652719125151634,0.25540889892727137,-0.4954762770794332,0.08464705105870962,-0.8950960421934724,0.48789046332240105,0.1609017988666892,-0.7527809832245111,0.14135146234184504,0.8160970038734376,0.7867636615410447,-0.9597142487764359,-0.5634990404359996,0.36106761265546083,-0.6270174076780677,0.8930914574302733,-0.8118813317269087,-0.8772148103453219,0.22966019390150905,0.7190753691829741,0.45112109603360295,-0.48098113061860204,0.8183482200838625,-0.4230910246260464,-0.7867082892917097,-0.39057328272610903,0.789181784261018,0.6771522993221879,0.6689385124482214,0.651823160238564,0.06612932775169611,0.8968456410802901,0.47477812319993973,-0.33859153650701046,0.14033999713137746,-0.8089308990165591,-0.32939601968973875,-0.048446124885231256,-0.5053772577084601,0.3063942021690309,-0.6228111861273646,0.14443866722285748,0.3775425129570067,-0.00501061137765646,0.46520824637264013,-0.8163909045979381,-0.4461630485020578,0.4401317611336708,-0.6839414029382169,0.7071086126379669,-0.712955862749368,0.7360467845574021,-0.22336378041654825,-0.8234996548853815,0.7069536964409053,0.6830760980956256,-0.6538088396191597,0.35156926792114973,0.5733543890528381,-0.8997607575729489,0.3460448947735131,-0.9661800879985094,0.8632056871429086,0.6923554576933384,-0.46322186570614576,0.6660504429601133,-0.2767869816161692,0.8444207366555929,-0.20950555009767413,0.43497255397960544,0.5344849689863622,-0.8257289626635611,0.4606470288708806,-0.747168336994946,0.08189059142023325,-0.444398180115968,-0.20937142195180058,-0.6319409254938364,-0.5852994262240827,-0.07549204584211111,0.6266054748557508,-0.9511595368385315,0.3227485725656152,-0.1572929760441184,-0.24355482263490558,0.9699849523603916,0.5910917865112424,0.9650374953635037,-0.8017522119916975,0.825737243052572,0.7273038551211357,0.327678251080215,-0.6676422455348074,0.25758447777479887,-0.42251229751855135,-0.3378384355455637,0.8416245970875025,0.40164184710010886,0.8376984586939216,0.5846187281422317,0.1582795074209571,0.07700371276587248,0.8271050895564258,-0.7808529050089419,-0.8543863305822015,0.22975338390097022,-0.05156679451465607,0.9077208526432514,0.945857654325664,-0.2180554997175932,-0.7173120575025678,-0.9583220994099975,0.3351769498549402,-0.24309254717081785,0.8929660269059241,0.3413171162828803,-0.766646911855787,0.47537835827097297,0.5408228430896997,-0.25642826594412327,-0.7987672849558294,-0.5059955082833767,-0.5437461230903864,0.8805306004360318,0.8986227447167039,-0.6083882916718721,0.711516838055104,-0.8402753411792219,0.21995070111006498,-0.5121390102431178,-0.2679131827317178,-0.9132314347662032,-0.024788384325802326,-0.3754922552034259,0.7408895581029356,-0.1980493892915547,0.16637506568804383,-0.28880964033305645,0.9150259681046009,-0.15780299250036478,-0.10487338388338685,0.61441665655002,-0.5330932885408401,-0.15779722295701504,-0.7871537222526968,-0.796723356936127,-0.3008308969438076,0.1281887125223875,-0.057648499961942434,0.40435244934633374,0.6664556469768286,-0.0740233389660716,0.587446965277195,-0.4069870444945991,0.3103373572230339,0.018126700539141893,-0.674203984439373,-0.43956937175244093,0.22068138141185045,-0.780347550753504,0.022808940149843693,0.9744030707515776,0.09883511159569025,-0.6622449737042189,-0.6660231119021773,0.5945452046580613,0.8668888015672565,-0.33716222597286105,0.4693013424985111,0.0338263176381588,0.6011125673539937,0.20667183306068182,0.32859582640230656,0.6659443937242031,0.05624359054490924,-0.2562855617143214,0.776470354758203,0.7666430044919252,0.2880653138272464,0.8722462621517479,0.8638875703327358,0.8249907316640019,-0.2734003597870469,0.5395869808271527,-0.5511310789734125,-0.39856180967763066,-0.362879378721118,-0.8739668154157698,-0.4482916984707117,0.7037596935406327,0.057204092387109995,0.4491683100350201,0.9725016043521464,0.15713972877711058,0.2022145465016365,0.49360648496076465,-0.45557695534080267,-0.5538696297444403,-0.8319370071403682,0.7650663810782135,0.10801887605339289,0.45515950256958604,-0.3600664478726685,-0.0009853732772171497,-0.012447884771972895,-0.9293085904791951,-0.6853018570691347,0.5402083187364042,-0.9742439556866884,0.7368394187651575,-0.11547341849654913,-0.562177365180105,0.9342262679710984,0.20809490699321032,-0.815118889324367,-0.8166336212307215,0.524197346996516,-0.9647983810864389,-0.9700930751860142,-0.6305905217304826,0.6628418872132897,-0.9232596531510353,0.3077966207638383,-0.9356008442118764,-0.8568822941742837,-0.5545261632651091,0.6487492406740785,0.24981736205518246,0.46748284064233303,-0.816725985147059,-0.24577773874625564,-0.3964012786746025,-0.09127858886495233,0.6000162167474627,0.7522954079322517,-0.5199215561151505,-0.3476303690113127,0.9870845940895379,-0.887036653701216,-0.6527164289727807,-0.8710355213843286,-0.840362046379596,-0.9956763559021056,0.742585658095777,-0.414268443826586,-0.7867370224557817,0.8515793504193425,-0.9731025407090783,0.8856530939228833,0.3926241109147668,0.02036373596638441,0.5671396120451391,-0.1440705331042409,0.2072358662262559,-0.5595144862309098,-0.054986100643873215,0.36495140567421913,-0.16486213030293584,0.3307185899466276,0.20197422057390213,-0.1128802364692092,-0.9697522195056081,0.8408048111014068,0.9523927988484502,-0.47009426541626453,-0.5148849440738559,0.7883540410548449,-0.5086732641793787,-0.6136934687383473,-0.13990771723911166,0.10879532992839813,0.7221636772155762,0.8194599281996489,0.08814211143180728,-0.9795421771705151,-0.6741360225714743,-0.7105649537406862,-0.84646723465994,-0.9264756850898266,0.2200073185376823,-0.23328587505966425,-0.7568942168727517,0.4837751309387386,0.9429147322662175,0.20211706077679992,-0.9206285574473441,-0.6923964298330247,-0.35536011261865497,-0.28179436177015305,-0.4027458275668323,-0.7258438267745078,-0.7580169197171926,-0.2760684182867408,0.9976799245923758,0.7943989681079984,-0.88096336228773,-0.5645529199391603,0.1266963491216302,0.5688266097567976,0.05493239779025316,-0.40016557835042477,0.6301286988891661,0.5938665284775198,-0.8186773560009897,0.23352384753525257,-0.8379322802647948,-0.37342376494780183,-0.33205893356353045,-0.8999854805879295,0.46648258389905095,-0.15066208085045218,0.9822847577743232,-0.5950956451706588,0.049960187170654535,0.07752015348523855,0.9639341249130666,0.5205862978473306,0.6408293140120804,-0.6401971871964633,0.2849906883202493,0.8610199289396405,0.26407453371211886,-0.6118871504440904,0.02175254514440894,0.3249209695495665,0.4516901816241443,0.6172510921023786,0.249105725903064,-0.8114213300868869,0.6291904994286597,-0.6083533694036305,-0.9490090096369386,0.8356266766786575,0.5130077488720417,0.30343687208369374,-0.003503823187202215,0.3794484930112958,0.28528351057320833,0.7809147010557353,0.5598348919302225,-0.848484321963042,0.09367419080808759,0.6922145560383797,-0.3789130076766014,0.3481903257779777,-0.8290379936806858,0.7441299767233431,0.8475719052366912,-0.576768059283495,-0.9993662871420383,0.522204517852515,0.9488283060491085,-0.6775293201208115,0.13237970089539886,0.3576697907410562,-0.15145940333604813,-0.8538178917951882,0.28383525740355253,-0.23908271873369813,0.953021683730185,-0.10330364247784019,0.25546994619071484,-0.8993928148411214,-0.5141300735995173,-0.30746066803112626,0.4334467872977257,0.25998001219704747,0.4879780849441886,0.26753218611702323,-0.07148656621575356,-0.7058609905652702,-0.951078312471509,-0.5082541294395924,0.14507507719099522,0.11649747658520937,-0.5843825479969382,0.23853380559012294,0.7270850175991654,0.327830973546952,0.7323309294879436,-0.4017740520648658,-0.6016134140081704,0.7097229366190732,-0.5544626549817622,0.9544334383681417,-0.1731815836392343,-0.7956518833525479,0.503050075378269,-0.5044784150086343,0.7668240582570434,0.6455910010263324,-0.9741070698946714,-0.6696321736089885,0.9116141083650291,-0.022871553897857666,-0.5574822593480349,-0.745996963698417,-0.7423803778365254,-0.037279726937413216,-0.7651228029280901,-0.5520007088780403,0.0908393794670701,-0.9139702818356454,-0.8882580660283566,-0.4802608396857977,-0.8619982935488224,0.39457981986925006,-0.8618989740498364,-0.502528851851821,-0.7474723113700747,0.16055211052298546,0.5366685627959669,-0.2551172315143049,-0.02533982042223215,0.30091119138523936,0.6110904505476356,-0.40855263313278556,-0.7479718765243888,-0.8840481252409518,-0.3827904970385134,-0.6628613350912929,-0.4603140070103109,0.2922410424798727,-0.6713371281512082,0.5797292836941779,-0.7622447768226266,-0.6085428837686777,0.8259468558244407,0.09592976979911327,0.9481145679019392,-0.5349405906163156,-0.8393792659044266,-0.6707946127280593,-0.5773214995861053,0.2139133964665234,0.7689883592538536,0.7328609940595925,0.5690586897544563,0.6007621316239238,0.5346808102913201,-0.5057510193437338,0.1287434990517795,-0.7831793278455734,0.07737159449607134,-0.23568465281277895,-0.21759230317547917,0.5061642373912036,0.44231362733989954,0.026361662428826094,0.7449218682013452,0.9295079112052917,-0.7651210138574243,-0.4233864303678274,0.2988972859457135,0.5751994624733925,0.08039339585229754,-0.21793255815282464,0.9575124867260456,-0.24264256842434406,0.3851013407111168,0.9176560337655246,0.7107240632176399,0.6617147382348776,0.3023050776682794,0.9173006950877607,-0.41496601654216647,-0.4959876090288162,0.7149964808486402,0.8539128126576543,0.0017135567031800747,0.5111136441119015,0.9436291661113501,-0.1936045470647514,0.9662044211290777,-0.1355676418170333,0.5306356898508966,-0.9530206695199013,0.4052701969631016,0.0069725532084703445,0.5472851688973606,0.7136680278927088,0.15021833032369614,0.6786117739975452,0.345414356328547,-0.7452504858374596,0.1264225193299353,0.025622244458645582,-0.5685561127029359,-0.4516889937222004,-0.8850540802814066,0.8313745730556548,-0.8977881208993495,0.7269224049523473,-0.6512211207300425,0.20359986973926425,0.9072192488238215,0.6131510678678751,-0.3254144787788391,-0.18032467970624566,-0.7474572951905429,0.6562514021061361,0.04186774604022503,-0.13750849850475788,-0.6706512439996004,0.41409807838499546,0.659653814509511,-0.5028266161680222,0.01633970206603408,-0.7343247174285352,-0.3563871094956994,-0.5908526703715324,-0.5654185363091528,-0.8237283700145781,0.8224852639250457,0.5550619908608496,0.7552628549747169,-0.4854110977612436,0.056137623731046915,0.18486033845692873,-0.028948531951755285,-0.561994421761483,-0.6044776579365134,0.7004679688252509,-0.055459159426391125,-0.02284419909119606,-0.12319158017635345,0.2370149022899568,0.861030453350395,0.9224415365606546,-0.7099555805325508,-0.783544444013387,-0.10672341287136078,0.2683193925768137,-0.04637786000967026,0.7392683350481093,0.836532682646066,0.045989283826202154,-0.014044380746781826,-0.19103730889037251,-0.7992367628030479,0.5730593549087644,-0.32021035999059677,0.09396868944168091,-0.9580440097488463,0.6462452844716609,0.061846045311540365,-0.10704088676720858,0.4816361339762807,0.5982740540057421,-0.5641350294463336,-0.5642446023412049,-0.4953323705121875,-0.9413834498263896,0.44092805963009596,-0.46579328179359436,-0.03604799881577492,0.16977874841541052,-0.7122240643948317,-0.6003111856989563,0.05355700338259339,-0.7937854235060513,-0.2917588031850755,0.5097921062260866,-0.870754127856344,-0.2673464328981936,0.44966810243204236,-0.1662369961850345,0.2859604428522289,0.41245135432109237,-0.5180648821406066,0.5957064819522202,-0.8684143973514438,0.9817456393502653,0.8839509426616132,-0.41374626383185387,0.9995563728734851,0.2197057786397636,-0.5348863992840052,-0.7728073494508862,-0.017246979754418135,-0.14046343276277184,0.9988818438723683,-0.22152071679010987,-0.31564062321558595,-0.600664540193975,-0.9630616991780698,0.6215922962874174,-0.27518473379313946,-0.5932149696163833,-0.8333342196419835,0.7051527043804526,-0.1441061533987522,0.7704496448859572,-0.2372030084952712,-0.34513211622834206,0.8339538229629397,0.7095493962988257,-0.3187070516869426,-0.7888796213082969,-0.7513652327470481,-0.40948566421866417,-0.5417842646129429,-0.29202955635264516,-0.012596373911947012,0.4251775909215212,-0.2099938401952386,0.43055015010759234,0.1820469545200467,-0.22585335280746222,0.5446038045920432,-0.45479636546224356,0.382753724232316,0.4483384699560702,-0.3596010748296976,0.051636033691465855,-0.04767328593879938,0.9541570506989956,-0.5723445019684732,0.6771012963727117,-0.12991593778133392,-0.8674285775050521,0.8963342751376331,-0.30524712707847357,0.14889659313485026,0.7415350512601435,-0.6294353539124131,0.4672702131792903,-0.20827883994206786,0.3471098099835217,-0.28960912954062223,-0.5845465920865536,-0.9545183633454144,-0.3950746259652078,-0.3899063696153462,-0.6010638950392604,-0.8582567097619176,0.8434204487130046,0.26761711155995727,0.4417851148173213,0.7282940712757409,0.6014004005119205,-0.7697988534346223,0.37797090969979763,-0.7933150827884674,0.19818501407280564,-0.9286666628904641,0.7761236215010285,-0.9693177668377757,-0.8762896195985377,0.43412895360961556,-0.30943317618221045,-0.5663897185586393,-0.31408992875367403,0.5671268510632217,0.2619895446114242,0.3718132134526968,0.39343929942697287,-0.7992496551014483,-0.798142655286938,0.22212338307872415,0.8511777562089264,0.49089807691052556,-0.6289989277720451,-0.11645030463114381,0.12005413277074695,0.7481068475171924,-0.7336345431394875,-0.45144672924652696,-0.7134624216705561,-0.2627398041076958,0.14329151576384902,0.14995011733844876,-0.4381584622897208,-0.7213045656681061,0.6100994208827615,-0.664357322268188,-0.4187744823284447,0.6343038617633283,0.69802754977718,0.8578355894424021,0.5196714214980602,-0.5623598485253751,-0.5455368030816317,0.33695894153788686,0.014199641533195972,0.36747298669070005,-0.025139293167740107,-0.09110416751354933,-0.7117906571365893,-0.44742802577093244,0.8902419600635767,-0.2524873926304281,-0.29938136832788587,-0.31331519270315766,0.8974120947532356,-0.9378067934885621,0.9223347934894264,0.7619104641489685,0.9620503932237625,0.597994128242135,0.7406980013474822,0.09479120187461376,-0.9534135805442929,0.38209510454908013,0.07031458429992199,0.5057813241146505,-0.027766582556068897,0.3046175753697753,-0.15939567424356937,-0.7326704077422619,-0.4235798129811883,0.6672332123853266,-0.4994385470636189,-0.33518781047314405,0.9975100229494274,-0.4638716387562454,0.48537606559693813,-0.2626524465158582,-0.10820798762142658,-0.5203720210120082,0.8084008591249585,0.07693150360137224,-0.16942174872383475,0.10822448832914233,0.37104574451223016,0.5362683343701065,0.48727208049967885,0.6112784692086279,0.5408066576346755,0.01724934997037053,-0.42600212013348937,-0.5098387873731554,-0.903843907173723,-0.0033585024066269398,0.8845194606110454,-0.48573124408721924,-0.5397741696797311,-0.386472359765321,0.18245995789766312,0.5126932901330292,0.5715102520771325,-0.41514797415584326,-0.8323885491117835,-0.06349420780315995,0.8005982399918139,0.46768790669739246,-0.5276051377877593,-0.994454737752676,0.15851362189278007,-0.608394012786448,-0.7421937310136855,0.5421807300299406,-0.42404461512342095,0.54490059427917,-0.21078398963436484,-0.09539767540991306,0.17728819511830807,-0.7648793100379407,0.4825060428120196,0.2825908213853836,0.2095693233422935,-0.055863415356725454,-0.45428390335291624,0.30446076998487115,0.12601359887048602,0.5617818362079561,0.27343890769407153,0.16579136159271002,0.8421530011110008,0.52528593596071,0.8083815309219062,0.5241303583607078,0.5175984334200621,0.3660582732409239,-0.3640933926217258,-0.7775026485323906,-0.2937958585098386,-0.34009438334032893,0.8603702043183148,-0.7646915791556239,0.5520424558781087,0.4867529533803463,-0.10164697049185634,-0.6595318200998008,-0.5309623098000884,-0.23502286104485393,-0.634085207246244,-0.7159850914031267,0.6690839985385537,0.9121643439866602,0.7853841590695083,-0.02869954565539956,0.09585228795185685,-0.6310485205613077,-0.8811056618578732,-0.2923799599520862,0.33769443864002824,-0.14448308572173119,-0.12263328628614545,0.6748097171075642,0.2777793314307928,0.9299326594918966,-0.2580369282513857,0.08589977351948619,0.28086812095716596,-0.6492530289106071,-0.8228378114290535,0.2820814843289554,0.7782959910109639,-0.19260352291166782,0.4244617586955428,-0.5445745950564742,-0.07694275118410587,0.016229987144470215,-0.2015987909398973,-0.5155350361019373,0.05556171201169491,-0.09420693665742874,0.015209824778139591,-0.8584329825825989,0.18600304145365953,0.08617395581677556,-0.5078378734178841,0.7828627210110426,0.7932554697617888,0.23616207484155893,0.8943067635409534,0.860450494568795,0.8052700287662446,0.7839161609299481,0.49661686923354864,0.08857548842206597,0.6026856806129217,0.8721840162761509,0.514932265970856,-0.6364440592005849,-0.8946347772143781,-0.8666735254228115,0.6792090744711459,0.4092642730101943,-0.16489735711365938,-0.9191766986623406,-0.6301568695344031,-0.41968608647584915,0.4679849976673722,-0.7432349757291377,-0.6674750791862607,0.950054984074086,-0.28971321741119027,0.6620377614162862,0.06074991496279836,0.7265232587233186,0.11075024725869298,-0.03569443849846721,0.6766397659666836,-0.6270509394817054,0.5686774104833603,0.4582258304581046,0.24051747983321548,0.9881177125498652,-0.3026963169686496,-0.7695019417442381,-0.9556382279843092,-0.2067217705771327,0.428329661488533,-0.8652979144826531,0.9656430915929377,-0.04533278290182352,0.6260977415367961,0.7218265985138714,-0.33036418864503503,0.03276360221207142,-0.33711420558393,-0.11435640696436167,-0.3882627636194229,0.19990347744897008,-0.37820706609636545,0.39601565850898623,0.10660743480548263,-0.493377985432744,-0.19907714007422328,-0.5100975600071251,-0.8614534549415112,0.34605707274749875,-0.0447212029248476,0.6509238723665476,-0.9924868899397552,0.5782699375413358,0.5374012868851423,0.3318762728013098,0.8149647484533489,0.8617980806156993,-0.9982010843232274,0.22972577763721347,-0.12145880283787847,-0.013726398814469576,-0.07999302307143807,0.17510403227061033,-0.6450789081864059,-0.5561367752961814,0.6709020785056055,0.8720454149879515,-0.9281089548021555,-0.6273707649670541,-0.9562467555515468,-0.9782176176086068,0.46619597310200334,-0.7440973864868283,-0.13554994203150272,0.5517814983613789,0.11060012364760041,0.9791574436239898,-0.8516712361015379,-0.41185006545856595,0.8613008530810475,-0.9856004859320819,0.5807810453698039,0.5067482809536159,-0.7749507911503315,0.9390722522512078,0.8944203406572342,0.04104101099073887,0.5020515248179436,0.6600226531736553,-0.43813583394512534,0.92079451167956,-0.13962434232234955,0.6621569516137242,0.7878241897560656,0.7053546491079032,0.9542098743841052,-0.6870659599080682,-0.18142664432525635,0.576976899523288,-0.5213396344333887,-0.18471290171146393,0.6352471276186407,0.7488308795727789,0.3946376843377948,0.5685019781813025,-0.1568727195262909,-0.14367600763216615,-0.2802134910598397,0.26920122373849154,0.47175586875528097,-0.8143640989437699,0.6118080662563443,0.4369117976166308,-0.5533582572825253,0.6862334632314742,0.3234172617085278,0.32095951260998845,0.7492163125425577,-0.3057140139862895,0.7538623246364295,-0.1580550717189908,-0.7301103728823364,-0.8614214733242989,0.08749079331755638,-0.4474100787192583,-0.8787710601463914,-0.3572514206171036,-0.4369020303711295,0.7798172878101468,0.08326377859339118,-0.673745833337307,-0.6768498388119042,0.3439314323477447,0.12259700754657388,-0.39239344419911504,-0.7025950639508665,0.5675433347932994,-0.29697592090815306,0.932628704700619,-0.3910695374943316,-0.11974020581692457,-0.7478393977507949,-0.42315761279314756,0.33866311982274055,0.8665872667916119,0.6219775062054396,0.9044004622846842,0.10388131393119693,0.5249780924059451,0.6865651030093431,-0.8596728001721203,-0.6609788639470935,-0.998939311131835,0.6135724568739533,-0.21697899140417576,0.7571884701028466,-0.7098051006905735,-0.7849511560052633,0.6147521897219121,-0.7841469864360988,-0.6300378632731736,-0.6130214622244239,0.6506405617110431,0.3173843384720385,-0.9966932563111186,0.7975111100822687,-0.6530995513312519,0.313022050075233,0.9643189357593656,-0.29207258159294724,0.7954519460909069,-0.2279182686470449,-0.7423438825644553,-0.860657415818423,-0.5830224831588566,-0.4967417446896434,-0.28072794573381543,0.7099479292519391,0.8061877731233835,0.2493569040670991,-0.6164601380005479,-0.91497539030388,-0.3630842184647918,-0.9365047076717019,-0.8225631969980896,0.3537590941414237,0.8856648458167911,0.8658941886387765,0.8000150350853801,0.8923793998546898,0.9936646311543882,-0.7239934164099395,0.8064553602598608,0.31352629279717803,-0.2413741685450077,-0.636493724770844,0.8252332056872547,-0.7721632914617658,0.3937544818036258,-0.4821948981843889,-0.7570133237168193,0.5748575013130903,-0.33008048590272665,-0.6845713318325579,0.16971071297302842,0.0559725696220994,0.8547977516427636,-0.7246892838738859,0.5882851113565266,-0.7753245416097343,0.37705187033861876,0.20229187747463584,-0.4915427006781101,0.24665761645883322,0.8161510210484266,-0.8964898022823036,-0.45034532342106104,0.005318937357515097,-0.17518474673852324,-0.37715397169813514,-0.993885706178844,-0.7554229190573096,-0.752922099083662,0.474175029899925,-0.7530423747375607,0.2067009643651545,-0.1392991035245359,-0.22647345624864101,-0.7931288662366569,-0.3741031656973064,0.02580917812883854,-0.8562994571402669,-0.8315462004393339,-0.7117000506259501,-0.8452964364551008,0.14061230840161443,-0.4723421852104366,-0.996051908005029,-0.4440150330774486,-0.4733730088919401,-0.9365616398863494,0.9638993013650179,-0.19579536467790604,0.42106232326477766,-0.10434822645038366,-0.7904731696471572,0.8189841182902455,-0.08412379119545221,0.5538779720664024,-0.5958577361889184,0.5313632222823799,0.1833058139309287,0.267268197145313,-0.9726916970685124,-0.7084970693103969,0.6755346516147256,0.09945305995643139,0.27541791647672653,0.39045801293104887,0.48045952850952744,-0.459812106564641,-0.7600974687375128,0.8826869102194905,-0.15232489723712206,0.28954025311395526,0.8570462791249156,-0.1754642901942134,-0.022356190718710423,-0.4078892054967582,0.7951983329840004,0.015165660064667463,-0.3965828465297818,-0.5781838595867157,0.12813694961369038,0.294404371175915,-0.916788115631789,-0.004208130296319723,0.20565333543345332,-0.7270792811177671,-0.9693069234490395,0.946062526665628,-0.8821881911717355,0.726859578397125,0.8005356984212995,-0.15085047436878085,0.7728493558242917,-0.6952095264568925,0.02011422300711274,0.41316081676632166,-0.15092080179601908,-0.9186714920215309,-0.3411296089179814,-0.5719192586839199,0.9420495871454477,-0.5150196352042258,-0.2711032791994512,0.34163448959589005,0.40900055412203074,-0.8524602996185422,0.0724947601556778,-0.2622204045765102,0.13807518128305674,0.6470589670352638,0.9085827907547355,0.8929200358688831,-0.6532722441479564,0.6378117576241493,-0.5611710092052817,-0.04899368202313781,-0.44804018503054976,0.6427027857862413,0.860950930044055,-0.07360012410208583,0.7238713265396655,0.14084399258717895,-0.09969067620113492,0.7597973011434078,0.0684130392037332,0.7296911161392927,0.8359978003427386,-0.18033456802368164,0.20620229374617338,0.10174875007942319,0.6126201297156513,-0.7816963396035135,0.20777315786108375,0.4745767400600016,0.7872298299334943,0.6645460464060307,0.30980052752420306,0.47759582940489054,-0.12329775560647249,-0.9618180985562503,0.8474033055827022,-0.019353674724698067,0.791778982616961,-0.19330842746421695,-0.8957037297077477,-0.06389001943171024,-0.30483219353482127,0.624168005771935,0.7776851053349674,0.4242421737872064,-0.914242431987077,0.0440063145942986,0.11488529201596975,-0.5257578077726066,0.1430546403862536,0.5789507487788796,-0.42493646405637264,0.6421903213486075,-0.8221416962333024,0.15829252963885665,-0.06418689899146557,-0.12167754769325256,-0.47151970490813255,-0.08668312523514032,0.6759789208881557,-0.34585894690826535,-0.900822008959949,-0.8713130038231611,0.06737099820747972,-0.5456247790716588,-0.47780732484534383,-0.7294276971369982,0.6533985049463809,0.5234617702662945,0.996042303275317,-0.5370055045932531,-0.24019373767077923,-0.5235813818871975,-0.5315062804147601,0.7864783857949078,-0.25922245997935534,-0.3271872182376683,0.47078660782426596,0.9962124135345221,-0.5570471016690135,-0.935436169616878,-0.16109033674001694,-0.2747663538902998,-0.7058355351909995,-0.7408073940314353,0.4985746708698571,0.042327897157520056,0.7856397368013859,-0.22860307665541768,-0.641902731731534,-0.8471768377348781,-0.2403818448074162,0.9436450293287635,0.00024102628231048584,-0.18375506671145558,0.9940048544667661,-0.8036656444892287,0.6553510664962232,0.2208245419897139,0.637733718380332,-0.0209613679908216,-0.0437616934068501,-0.5051888395100832,-0.14016981609165668,-0.8399390671402216,0.784793577156961,0.982713847886771,-0.4206092357635498,0.9919936703518033,0.36848753970116377,-0.3234370993450284,-0.4926386973820627,0.5528041636571288,-0.01436268212273717,-0.4324778546579182,0.8985861651599407,0.803545315284282,-0.6855780305340886,0.7774741109460592,0.8419602299109101,-0.3154810266569257,-0.21816040575504303,0.3632005280815065,-0.9990020939148962,0.8730365438386798,-0.27932385029271245,0.40858597913756967,-0.2856847643852234,-0.25477390782907605,-0.32511359779164195,0.6084483270533383,0.34436612436547875,-0.34822425711899996,-0.23733355663716793,0.1165010230615735,-0.8230651905760169,-0.2330237990245223,-0.7228345447219908,-0.8983639073558152,0.3559623174369335,-0.26447621500119567,0.7376923295669258,0.9433458992280066,-0.2054051230661571,0.21134584536775947,0.19621562585234642,-0.28873889008536935,-0.02589606447145343,0.5690081939101219,0.04253666242584586,0.892086080275476,0.3483720808289945,-0.67574452329427,0.5685502765700221,0.4386038314551115,-0.6714386804960668,-0.45011990424245596,0.9339343328028917,-0.8574592336080968,-0.3561377450823784,-0.606006320565939,0.8509482070803642,-0.026357789523899555,-0.01819104189053178,-0.6834703567437828,-0.8366081011481583,-0.643922068644315,0.4591171299107373,-0.739335645455867,-0.14736533677205443,-0.0061610182747244835,0.5406391290016472,0.07364789303392172,-0.7417926667258143,-0.3612227230332792,0.3917592689394951,0.28441032441332936,-0.9404470827430487,-0.34999207267537713,0.5088908425532281,0.10796688869595528,0.3923564604483545,-0.061444560531526804,0.6790563692338765,0.8205575388856232,-0.7533967513591051,-0.24421982280910015,0.580732702743262,0.19162217946723104,-0.6959929587319493,0.9392903028056026,0.46806855173781514,-0.7305096802301705,0.31668010633438826,-0.9292853334918618,-0.8921180358156562,0.20942028379067779,-0.4129426437430084,0.3405431117862463,-0.5715023106895387,0.05127572501078248,-0.4978984375484288,-0.438832416664809,0.816329350695014,-0.912649491801858,0.5994153213687241,0.9579676683060825,-0.2787751886062324,-0.5129815828986466,0.12646794877946377,0.6489153769798577,-0.02551059192046523,-0.39334599673748016,0.30802961345762014,-0.09104417450726032,-0.9409446995705366,-0.43286162288859487,-0.9095708006061614,-0.346360404510051,-0.2996981851756573,-0.7245116773992777,0.018397039268165827,-0.8042853139340878,0.8270529024302959,-0.483733762986958,-0.4100217977538705,0.5039508012123406,0.9482835442759097,-0.7045545666478574,-0.6956892563030124,0.6998854693956673,-0.7061585080809891,-0.785541221499443,-0.9960177750326693,-0.7973199184052646,0.1462152865715325,0.7594870463944972,-0.1483099921606481,-0.13404562836512923,-0.697963550221175,-0.09116645948961377,-0.4798330506309867,-0.8661972461268306,0.8163866358809173,-0.30470223166048527,0.793464532122016,-0.6058585331775248,-0.22139094350859523,-0.07783425692468882,-0.051947264932096004,0.4472284037619829,-0.8396807154640555,0.5059088906273246,-0.7497724881395698,0.2103922930546105,-0.7040383350104094,0.27908530179411173,-0.8503500721417367,0.710486033000052,-0.3082309179008007,0.8749107732437551,0.3455186835490167,-0.2151719769462943,0.8764797723852098,0.8484753416851163,-0.33071369491517544,-0.47425840981304646,0.2428920967504382,-0.053678206633776426,0.23542705178260803,-0.48679365310817957,-0.04606478847563267,-0.8303065053187311,-0.17763687251135707,0.41106881434097886,-0.8250974137336016,-0.624242658726871,-0.7593636657111347,0.230913155246526,0.581394792534411,-0.1549456319771707,-0.9496962646953762,0.4489878276363015,-0.49369773361831903,-0.4475458520464599,0.4224083642475307,-0.8596925721503794,-0.5070781707763672,0.9283421654254198,0.2410805793479085,-0.9314707536250353,0.4389743320643902,-0.7363480580970645,-0.18952650530263782,-0.6032000919803977,0.40801313426345587,-0.044203406665474176,0.26088359812274575,-0.5194378322921693,0.22287333756685257,-0.33338471967726946,0.5710607231594622,0.6403283849358559,0.8965347930788994,-0.16778811579570174,0.17404299089685082,0.5094481417909265,0.9546526218764484,0.6433692248538136,0.026948407292366028,-0.7808518400415778,-0.1188222598284483,-0.025990779511630535,-0.2672990229912102,-0.4484434691257775,-0.9867677912116051,-0.06875166995450854,0.4995021573267877,-0.4455878338776529,0.6919787162914872,0.28437709528952837,0.7834942508488894,-0.7479136963374913,-0.8439128333702683,-0.895104325376451,0.6582385618239641,0.3250291123986244,0.6811663093976676,-0.19289953587576747,0.8374104737304151,-0.9132550139911473,0.04916088609024882,0.9991708709858358,0.43219047179445624,0.09990678075700998,0.9637646395713091,-0.8000195347703993,0.17741864686831832,0.13360910071060061,0.6707005705684423,0.7827550638467073,-0.28970998991280794,-0.10390167869627476,0.3531475719064474,0.22151667159050703,0.7520498940721154,-0.9130280641838908,-0.0842829062603414,0.14141637226566672,0.1921853618696332,-0.5243333387188613,-0.2529747663065791,0.6724107032641768,0.6275968486443162,-0.892486231867224,-0.48618236370384693,-0.9054003981873393,-0.5646130121313035,0.8169395681470633,-0.3013752088882029,0.01585623435676098,0.11656121583655477,0.993402102496475,0.39256091322749853,0.28599235648289323,0.5050200400874019,-0.5730424127541482,-0.5613600481301546,-0.06727757304906845,-0.20135549688711762,0.5856955680064857,-0.170044734608382,-0.9245099523104727,0.40915371431037784,0.04602529387921095,0.8323774305172265,-0.13777542486786842,0.27284980565309525,-0.4693765942938626,0.781271449290216,-0.44088910007849336,0.004705718718469143,0.650079071521759,0.2551509365439415,-0.015811416320502758,0.4486055839806795,0.06873614154756069,-0.7725869324058294,0.4086951152421534,0.7964820615015924,0.39204865135252476,-0.622769997920841,-0.533157289493829,-0.252565055154264,0.6236186237074435,-0.7788644540123641,0.24887685850262642,0.6826942507177591,0.29570239037275314,0.05724771087989211,-0.313975399825722,-0.12404506048187613,0.10576547123491764,-0.40022983495146036,0.2633406803943217,-0.7578870658762753,0.8192192227579653,0.8399299294687808,-0.8876440152525902,-0.5744759044609964,0.09196006832644343,0.9692961224354804,0.6733634667471051,0.565304268617183,-0.2199469618499279,0.168447429779917,0.2305062492378056,0.20288554998114705,-0.4195741154253483,0.8818206652067602,0.13655711384490132,0.48023710772395134,0.4665238722227514,0.05884312465786934,-0.7079161489382386,-0.84721121750772,0.38593179546296597,0.45021340856328607,0.7774401349015534,-0.48637667717412114,0.6715223896317184,-0.17301044054329395,-0.4050873890519142,-0.34376160800457,-0.20164752611890435,0.43938143039122224,0.6053611477836967,-0.6955414498224854,0.5319075887091458,-0.05024285241961479,0.8113959808833897,0.5266367290169001,-0.12431413447484374,0.021275315899401903,0.3400507178157568,0.4194813026115298,-0.55165806831792,-0.28904359648004174,0.801668091211468,0.7657059147022665,0.29468813771381974,-0.45344588393345475,-0.8932536132633686,0.7535775518044829,-0.3019497157074511,-0.4280964112840593,0.575429086573422,-0.5353570547886193,-0.8173394952900708,-0.22925219172611833,-0.8102545170113444,0.4291631202213466,0.5972399730235338,0.49315296951681376,-0.9615640207193792,0.30053319595754147,-0.48527911119163036,0.9393788548186421,0.3463798728771508,-0.7814797908067703,-0.610641282517463,-0.8299732562154531,-0.5689110425300896,0.04051780980080366,0.3333649458363652,0.4644756307825446,0.18630835274234414,0.019081353209912777,-0.5052127176895738,-0.36051171319559216,-0.7216975260525942,0.9677623389288783,-0.48715884424746037,0.9441643278114498,0.3173840967938304,-0.5697433515451849,-0.5948942303657532,0.550781468860805,-0.31464615603908896,0.14484823448583484,-0.17641421873122454,-0.7955047329887748,-0.9687638762407005,-0.4482299475930631,-0.5527838785201311,0.809435689356178,-0.39056413248181343,0.8736713011749089,-0.03456387249752879,-0.026236746925860643,-0.1831643721088767,0.794792530592531,-0.9785582548938692,-0.5979050467722118,-0.7750856685452163,-0.38006651494652033,-0.8784112902358174,0.6580203282646835,-0.2870988240465522,-0.136691739782691,0.14089939650148153,-0.2152361674234271,-0.6398119181394577,-0.8422776041552424,0.5192146953195333,-0.6216545640490949,-0.9714136845432222,0.8294703168794513,0.819819909054786,0.9838817180134356,-0.9866918181069195,-0.6293257563374937,-0.15019284095615149,-0.951685466337949,-0.01544120442122221,0.15636098477989435,-0.36904706712812185,-0.07959689013659954,0.05521132471039891,0.6025804951786995,0.2358952211216092,0.4585845796391368,0.7520417748019099,-0.16093273274600506,0.7272843741811812,-0.923658509273082,0.2205061293207109,-0.17229946795850992,0.9171031946316361,-0.6332509801723063,0.7078464413061738,-0.9420181340537965,0.774730418343097,-0.968749837949872,0.3067378024570644,-0.7460877140983939,0.9134883023798466,-0.09827778395265341,-0.9639054695144296,0.209680647123605,0.13198977755382657,-0.3361548874527216,0.21646203799173236,-0.2909161099232733,-0.09145261300727725,-0.23814826551824808,0.5508338175714016,0.15388206718489528,0.6917102783918381,-0.5335124535486102,-0.5362465209327638,-0.8352500982582569,-0.3237391044385731,-0.724026040174067,-0.5072271730750799,-0.6676217648200691,0.9336830144748092,0.3492998690344393,-0.9867028160952032,0.9130260357633233,0.3548931507393718,0.24157053977251053,0.5606943098828197,0.18320736661553383,-0.9035697290673852,-0.7187883788719773,0.2724194354377687,-0.3533178139477968,-0.38128637336194515,-0.8096729801036417,-0.89125334052369,-0.07634287513792515,-0.5067186700180173,-0.46501036500558257,0.19362209225073457,0.10146048991009593,0.17243865551427007,-0.052277022041380405,0.6283444128930569,-0.9553093574941158,-0.48894265573471785,0.9149587959982455,-0.27046098140999675,-0.21396140893921256,0.03475023154169321,-0.48581742169335485,0.6681050285696983,-0.40672036819159985,-0.633356811478734,0.3767162864096463,0.6612877580337226,-0.5715698930434883,0.32181654730811715,-0.5288487817160785,0.8706084648147225,-0.9893690724857152,-0.08798364223912358,0.13930675573647022,0.2836292344145477,-0.9596071317791939,-0.7920969580300152,0.5684105935506523,0.1892985375598073,0.754652863368392,-0.08769008191302419,0.16637543449178338,0.19570194091647863,-0.8162786257453263,-0.08182369079440832,0.9333973461762071,0.17447869759052992,0.6751452456228435,-0.382409711368382,-0.7949367775581777,0.3311671959236264,-0.04642590833827853,0.1972619565203786,0.7269029570743442,0.1995296599343419,0.4197479304857552,-0.10389382857829332,-0.48239495838060975,0.6905805496498942,-0.6293026739731431,-0.15583601873368025,-0.3863864582963288,0.9125503888353705,-0.8818402602337301,0.6080131004564464,0.23433430073782802,0.31516274344176054,-0.2665644926019013,-0.7725837961770594,0.7045666952617466,0.7981766797602177,-0.2677030600607395,-0.7753616240806878,-0.6038749092258513,0.9122464540414512,0.7236490407958627,-0.7728315303102136,-0.16190442396327853,-0.7168974340893328,-0.7519038799218833,-0.3028733073733747,-0.6577502638101578,-0.34901275113224983,0.6076218513771892,0.8476507272571325,0.6469233287498355,-0.744075677357614,0.23931621247902513,0.9951967801898718,-0.11952845519408584,0.755163952242583,0.8218389870598912,0.005029063206166029,-0.49570528930053115,0.5232198010198772,0.20724752405658364,-0.6488538905978203,-0.3205341617576778,-0.9749909262172878,0.5656157666817307,-0.11495948489755392,-0.21149904653429985,-0.021270737517625093,-0.40475984988734126,-0.1276163775473833,0.7634642771445215,0.20313666528090835,0.40244507789611816,0.9659349448047578,-0.6537731336429715,0.9585526790469885,-0.5254628043621778,0.4056985345669091,0.6907770116813481,0.36326386174187064,-0.7191547336988151,-0.19854744104668498,0.7951349201612175,-0.1934092752635479,-0.6618045698851347,-0.5055628651753068,-0.14594057202339172,0.4066801914013922,0.2238292982801795,0.5645880666561425,0.6321420832537115,-0.5853228024207056,0.9148216382600367,-0.18522836035117507,0.8065380239859223,0.0397645877674222,-0.9875359795987606,-0.9408630859106779,-0.3929637735709548,0.4176292917691171,-0.9917219341732562,-0.6214478039182723,0.28904642490670085,-0.42651029769331217,-0.9227378345094621,-0.98287717346102,-0.0936732953414321,-0.31278845528140664,0.09771029697731137,0.25412653014063835,0.7969017750583589,-0.8315291260369122,-0.424376817420125,-0.17781717563048005,0.39138088654726744,-0.868048073258251,0.5322934067808092,0.851723428349942,0.34102165047079325,0.3138886420056224,-0.74765933630988,0.5096836723387241,-0.45849745301529765,-0.38154816487804055,0.8119194344617426,-0.395795586053282,-0.37141699716448784,-0.8252733210101724,-0.22911279229447246,0.2146594375371933,0.7553879604674876,-0.8061687839217484,0.45090993074700236,-0.07999146031215787,0.8930898476392031,-0.46929700393229723,-0.8942873259074986,0.37273388681933284,-0.43998436024412513,-0.48920264607295394,-0.7429734198376536,-0.7504627094604075,0.3419536682777107,-0.6907395892776549,0.04015248967334628,0.9115124912932515,-0.7752450900152326,0.9095201222226024,-0.8808237658813596,-0.36115411669015884,-0.7526661437004805,0.983033032156527,-0.7527064899913967,-0.29140874464064837,0.5892582265660167,0.47374316630885005,-0.6182089457288384,0.7834407528862357,-0.627299103885889,0.6037263469770551,-0.8326778667978942,0.49244313733652234,-0.7159826601855457,0.3126954026520252,0.012492232490330935,0.8017408414743841,-0.052521179895848036,0.36051227198913693,0.5166028090752661,0.6173236221075058,0.8800600934773684,0.6842433367855847,0.8483965997584164,-0.2903051902540028,-0.7766801449470222,0.24196502193808556,0.4238493642769754,0.6479014432989061,0.17918648663908243,-0.5695785684511065,0.3598199267871678,-0.8210734291933477,0.37613817071542144,-0.3242498249746859,0.5807978003285825,-0.7321930448524654,0.07611547643318772,-0.8883595266379416,0.4423620756715536,-0.14926400315016508,-0.13192364433780313,0.4906367105431855,-0.9112451504915953,-0.22318421630188823,0.8757377443835139,0.6391896936111152,-0.380730046890676,0.2284433338791132,0.24474826222285628,-0.5297316280193627,-0.2085809549316764,0.779958943836391,-0.8603264302946627,-0.5632466268725693,0.20746455620974302,0.2628288036212325,-0.19231601897627115,-0.5103607401251793,-0.18795321974903345,0.36704555386677384,-0.849788376595825,-0.38527072174474597,0.40948609495535493,-0.7909370735287666,-0.5660482249222696,-0.646888196002692,-0.4285425003618002,0.2816116758622229,-0.6694948696531355,0.5152950286865234,-0.7095833946950734,-0.6136400741524994,-0.9293426075018942,0.47580923046916723,-0.7357738255523145,0.602041604463011,0.9623543880879879,0.2222345150075853,-0.6000369377434254,-0.20805906737223268,-0.7919737305492163,0.4666787558235228,0.7565211658366024,-0.6513811643235385,0.6462111989967525,0.20724473614245653,0.38569323578849435,-0.11728685488924384,0.7094772569835186,-0.42048053070902824,-0.619188685901463,-0.6171569325961173,0.5996758732944727,0.9598563676699996,0.5850769276730716,-0.6268364209681749,-0.2579783461987972,0.7734817191958427,0.9275848036631942,0.8553880187682807,0.20365200378000736,-0.1442901217378676,0.45345460437238216,-0.5534718767739832,-0.42270815186202526,0.7090449831448495,-0.029324294067919254,0.3228528993204236,0.23668083921074867,0.3648771517910063,-0.3599086976610124,0.8489510081708431,-0.951915243640542,-0.8816598900593817,0.00543936574831605,0.685979688540101,-0.8325819652527571,-0.17613086756318808,0.4302702941931784,-0.42916027549654245,0.4570006257854402,-0.5693685677833855,0.4571684366092086,0.3456592829898,-0.6874827942810953,0.7396046873182058,0.09981655050069094,-0.004060594830662012,-0.9627599911764264,0.8095715939998627,0.12229774659499526,-0.16652714926749468,-0.1690249373205006,-0.9886243888176978,0.9179875794798136,0.08238452905789018,0.2549391812644899,0.51511947857216,0.5115133989602327,0.09478055546060205,-0.8025857973843813,-0.3418446723371744,0.5966543010435998,0.3430178137496114,0.5882446831092238,-0.1171832587569952,-0.678742806892842,-0.6183254374191165,-0.469755285885185,-0.06192720914259553,-0.7229570462368429,0.824376261793077,-0.7004566201940179,-0.003722324501723051,0.566418849863112,0.15813740575686097,0.8771815416403115,-0.8560403818264604,0.9227617597207427,0.7692689187824726,-0.02752905013039708,0.2891897396184504,-0.32959337485954165,0.5756346653215587,0.8647565944120288,0.07713963557034731,0.1962301847524941,-0.9344751173630357,-0.4075419772416353,-0.45605515455827117,0.9611617950722575,-0.038169578183442354,0.05656904773786664,0.30442464258521795,-0.2990091540850699,-0.9183050659485161,0.276452804915607,0.36203316133469343,-0.5374507321976125,0.6014113035053015,-0.07261547725647688,0.407023839186877,-0.40231761801987886,-0.5535517339594662,-0.07867366075515747,0.4665726334787905,-0.9949378501623869,0.9890164374373853,-0.4636470479890704,0.03212998481467366,-0.6576620317064226,0.5312061351723969,-0.8705353569239378,-0.16867726296186447,-0.7563355946913362,-0.5764479292556643,0.21334211714565754,0.9487809734418988,0.17232906119897962,0.21635960740968585,0.1381292911246419,-0.2466480592265725,-0.3859159969724715,-0.48045181203633547,-0.9455126682296395,0.4556283950805664,-0.44874787935987115,-0.20124655729159713,0.2563320277258754,-0.7786510959267616,0.8994546257890761,0.5559124224819243,0.5044476697221398,0.4071660372428596,-0.7400786969810724,-0.5136080398224294,-0.8949398836120963,0.12871500756591558,-0.8225115570239723,-0.3920043264515698,-0.427537159062922,0.22954087983816862,0.2618983304128051,0.4308046977967024,0.864063844550401,0.4810255882330239,0.9316600514575839,0.08909107372164726,-0.2999959927983582,-0.6136937416158617,0.2931555490940809,-0.7939845868386328,0.13428436359390616,0.3605051636695862,0.20510575780645013,-0.11971761332824826,-0.6137607931159437,0.36033246479928493,0.721690515987575,0.06420275941491127,0.4716651327908039,-0.2553646406158805,0.9341756394132972,-0.6111270720139146,-0.424988039303571,-0.8760891011916101,-0.7926511499099433,-0.8154458473436534,0.9127383437007666,-0.6740337014198303,0.6646040757186711,0.9264881890267134,-0.6519608250819147,-0.6008374099619687,0.6474629072472453,0.2646594773977995,-0.38525259029120207,-0.9073082897812128,0.27480517281219363,0.5437694159336388,0.7480374984443188,-0.5548610077239573,-0.5107547449879348,-0.16916436003521085,0.4558262098580599,0.2461624825373292,-0.5455082785338163,0.4999381937086582,-0.3427584720775485,-0.8818215453065932,-0.009702383074909449,-0.6539227426983416,0.1554312244988978,-0.6197618064470589,-0.9790295576676726,-0.9616717188619077,0.239488925319165,0.9495796617120504,0.34068465745076537,0.7885102285072207,-0.7148267063312232,-0.3267877073958516,-0.5265713706612587,0.058486927300691605,-0.36446209205314517,0.1521860840730369,-0.9747827649116516,-0.48279606690630317,0.057853962760418653,-0.8100632876157761,0.725823997054249,-0.20811483915895224,0.058778819628059864,-0.8976293709129095,-0.9942264943383634,0.9120803633704782,0.08612444438040257,-0.4354276517406106,0.25952865928411484,0.6398581489920616,-0.9717889875173569,-0.457778696436435,-0.5719561376608908,-0.4059395007789135,0.5510436370968819,-0.4350113393738866,0.23536605201661587,-0.49427712615579367,0.19321201415732503,-0.6561821890063584,-0.3588485806249082,0.1656990721821785,0.5298908394761384,-0.6649135113693774,-0.550180843565613,-0.8548282342962921,0.005413676146417856,-0.5696679442189634,-0.494547288864851,-0.3314627013169229,-0.6405865387059748,-0.8646480464376509,0.7383334930054843,-0.4555551577359438,-0.15311579499393702,0.09310475969687104,-0.08361190231516957,0.053081151098012924,-0.7286441465839744,0.4908237438648939,-0.046056599356234074,0.18108465895056725,0.8160377107560635,0.27267512306571007,-0.3041155366227031,-0.7580056055448949,0.14797982200980186,0.3470723000355065,0.8843435519374907,0.7315827067941427,0.9744547549635172,0.6395675386302173,0.16578322183340788,0.7897391566075385,0.7085936041548848,-0.8382315561175346,0.6654902114532888,0.35402110777795315,0.7682056333869696,0.005407075863331556,-0.32324996031820774,-0.8472004001960158,0.6893615880981088,0.6824899413622916,-0.48107856046408415,0.7832881268113852,-0.890366526786238,0.2554549463093281,0.41490891948342323,0.6862005745060742,-0.776176602113992,0.6071112700738013,0.5858687311410904,-0.745732506737113,0.09327859943732619,0.09931202325969934,-0.6277335118502378,-0.014016900677233934,0.1305757644586265,0.15942605305463076,-0.9034262830391526,0.3234026818536222,-0.22125225001946092,0.8328265817835927,0.465172506403178,0.4536578166298568,0.9425956401973963,-0.6708314376883209,-0.24299201695248485,-0.5016014785505831,0.9593066349625587,0.02914499770849943,-0.4408005755394697,-0.5887290607206523,0.5402737706899643,0.5563971982337534,-0.8757069003768265,0.021342868451029062,-0.09590117586776614,-0.5489793727174401,-0.5006341896951199,-0.08313832292333245,-0.3421635003760457,0.3951396085321903,-0.16288929618895054,-0.15693683316931129,-0.2484841733239591,-0.0976153863593936,0.5371446385979652,0.5585726657882333,-0.1542417574673891,-0.561333070974797,0.7358038742095232,-0.8653579237870872,0.3525221114978194,-0.2939916388131678,0.7964495760388672,0.49437155667692423,-0.8955931812524796,-0.7301932643167675,-0.17602014727890491,0.6920800656080246,0.6013544625602663,-0.43897175416350365,-0.39300923654809594,0.9946087063290179,-0.003148957621306181,0.7544306325726211,0.11066613346338272,0.7707549459300935,0.12015055399388075,-0.8051217822358012,0.5689798318780959,0.5852796942926943,-0.6299215536564589,0.33751334622502327,-0.8068403019569814,-0.7521497244015336,-0.32306456565856934,-0.6632269537076354,-0.49873432563617826,0.8881759666837752,-0.8301928914152086,-0.4246158469468355,-0.2255986612290144,0.7861032509244978,0.5187847474589944,0.03006427362561226,-0.5280508338473737,0.4256641073152423,0.6737533952109516,-0.937172485049814,-0.35219269525259733,0.9976102504879236,0.7768273469991982,0.2186021893285215,0.18971913727000356,0.9509320822544396,0.8048889134079218,0.7369107003323734,0.3571708654053509,0.08463165024295449,-0.6556591363623738,-0.8124044421128929,0.9361930917948484,0.5908542014658451,-0.8228416573256254,-0.2352618877775967,-0.5261290483176708,-0.6444364637136459,-0.570279530249536,0.4895471129566431,-0.5803281948901713,0.7709685387089849,0.03154032863676548,0.7324747405946255,-0.384660585783422,-0.3361362027935684,-0.4368339250795543,0.29429958667606115,0.4213842726312578,-0.5983875654637814,-0.018605572171509266,-0.899920008610934,-0.6215693647973239,0.0777101032435894,0.27091751899570227,0.4411589838564396,-0.17505009472370148,0.24131293362006545,-0.8817781084217131,-0.2559039988555014,-0.8469312158413231,0.7017718441784382,0.8723319601267576,-0.08459505112841725,-0.6607342669740319,-0.9863605662249029,-0.052242668345570564,0.3720790701918304,0.18490674905478954,-0.079925746191293,0.8548049093224108,0.15429645171388984,-0.24296795995905995,-0.05238341633230448,-0.9634395814500749,0.35322721721604466,0.9294677572324872,0.530055470764637,-0.06738946819677949,-0.039437947794795036,-0.9486907497048378,-0.09305025916546583,0.016632781364023685,-0.16438919166103005,-0.6637779190205038,0.9101456017233431,-0.3443638728931546,0.7390383314341307,-0.00047161849215626717,0.5662301336415112,-0.904398497659713,-0.07365342229604721,-0.02468522172421217,0.4811351662501693,-0.007994841784238815,-0.5588411814533174,-0.7300349222496152,-0.9947422612458467,-0.8368196072988212,-0.9512277371250093,-0.6095749540254474,0.7840143614448607,0.8525463296100497,0.6171365608461201,0.05995304882526398,0.56890310626477,-0.8072847370058298,0.9724323749542236,0.021652431692928076,-0.8354417230002582,0.9213006966747344,0.19825388817116618,-0.699855996761471,0.17037827521562576,0.9073129445314407,-0.020295698661357164,0.03738253703340888,0.3100887443870306,0.3824077076278627,-0.4348202529363334,-0.04739416670054197,-0.4208399038761854,0.07016688771545887,0.5233060880564153,-0.5202142037451267,-0.3747502542100847,0.2651836480945349,0.4219274935312569,0.3250717022456229,-0.16927606612443924,0.5239688321016729,-0.05039537092670798,0.8567159599624574,-0.9224398955702782,0.16455536289140582,-0.08401746256276965,-0.9226266159676015,0.44642535224556923,-0.8549470035359263,-0.49369485955685377,-0.556182905100286,0.7413200186565518,0.7826038589701056,0.4963310300372541,-0.7141562877222896,0.507755586411804,-0.607630708720535,0.007423998787999153,-0.6568348212167621,-0.9973846422508359,0.725674472283572,0.8960799528285861,-0.6941659147851169,-0.18844239274039865,0.5510607045143843,0.9329258645884693,-0.17032319819554687,-0.009769351687282324,-0.2187096057459712,0.4371770592406392,-0.012882911134511232,-0.3355381889268756,0.08822306850925088,-0.049891906790435314,-0.3876460790634155,0.9228801126591861,0.71366599900648,-0.34212818974629045,-0.6544005740433931,0.7646918338723481,0.8722539665177464,0.8740206183865666,-0.65281245065853,-0.1968950666487217,-0.3008819464594126,0.5326285632327199,-0.9525858270935714,-0.8744829841889441,-0.9048809423111379,-0.7816026308573782,-0.21650614123791456,-0.22568990709260106,-0.4895019521936774,0.27425003843382,0.471607883926481,0.12205810751765966,-0.04027089290320873,-0.6609232523478568,-0.6436686026863754,-0.2905244058929384,-0.7004776154644787,0.49489417392760515,0.08489922387525439,-0.4229748765937984,-0.05763696553185582,0.6448818440549076,-0.26137271663174033,-0.30776322912424803,-0.8350930116139352,0.3335381606593728,0.2039427999407053,-0.7681206222623587,0.3561718030832708,-0.6543716732412577,-0.36848331056535244,0.7652825894765556,-0.64975875755772,0.20051527814939618,0.1671350379474461,-0.26105754636228085,-0.7336443453095853,0.34348025266081095,-0.8950717193074524,0.9773852499201894,0.37667033821344376,0.44725089287385345,0.13219562964513898,-0.30661969212815166,-0.5959887118078768,0.6602157703600824,-0.28955977922305465,-0.6758754174225032,-0.4228815883398056,0.6546272332780063,-0.29323218390345573,-0.05917452368885279,-0.6442618202418089,0.8300221180543303,-0.7895593028515577,-0.21206373162567616,0.6823692787438631,-0.7161037884652615,-0.3000664315186441,-0.10748951975256205,-0.08492134883999825,0.9858178091235459,-0.024509389884769917,0.09616852412000299,0.5281554353423417,-0.6791820717044175,0.31220679823309183,-0.7303043487481773,0.550869285594672,0.06454936368390918,0.033492646645754576,-0.10949852969497442,-0.24018767569214106,-0.4005439202301204,0.8385162125341594,0.4881493356078863,0.6313379262574017,0.5133234555833042,-0.21583068324252963,-0.404657275415957,-0.38880792586132884,-0.37037535617128015,-0.304109375923872,0.5899699493311346,-0.027446405962109566,-0.5343521777540445,-0.6010497719980776,-0.43764575896784663,-0.2953573255799711,0.3827669667080045,0.29047556733712554,-0.34909275732934475,-0.6454306682571769,0.7175670326687396,-0.5541383321397007,0.02896913979202509,-0.7719238311983645,0.18493716092780232,0.12767184851691127,0.5025206259451807,0.7531616101041436,-0.021616953425109386,-0.6366449780762196,-0.04057810129597783,0.3559221597388387,-0.9204751523211598,0.10929482104256749,0.15661100391298532,-0.3536096508614719,-0.9849421274848282,-0.5973025388084352,-0.5219110455363989,0.8206338961608708,0.5390797993168235,-0.9450525264255702,-0.8128530085086823,0.21273433370515704,0.28472177404910326,0.4361575306393206,-0.05629233084619045,-0.5473456024192274,0.6823455798439682,0.2874483559280634,0.0385163351893425,0.7202237928286195,0.6536377919837832,0.49371050018817186,0.7421929067932069,0.2101890044286847,0.4251681766472757,0.9931554021313787,0.3981316671706736,-0.5270466771908104,-0.17520126653835177,0.7079684431664646,-0.026512517128139734,-0.0476500759832561,0.10078659746795893,0.9523678356781602,-0.38838915154337883,0.5296712568961084,0.26445622090250254,-0.08919937256723642,0.4559790277853608,-0.9118228177540004,-0.003090567421168089,0.852690955158323,0.04255275893956423,0.7377472980879247,-0.8619255502708256,0.13159839995205402,-0.3662318685092032,-0.6482212413102388,-0.6044881804846227,0.2635675286874175,-0.9847537102177739,-0.8744794819504023,0.37818445544689894,0.09960688324645162,0.3598158098757267,-0.9376385034993291,-0.9699427057057619,0.9612507265992463,-0.2786341127939522,0.8300635553896427,0.05602093879133463,0.5703826840035617,-0.5055156308226287,-0.23022841615602374,-0.03823954612016678,0.6971592856571078,-0.4129002154804766,0.9079731348901987,-0.43451714469119906,-0.08056897763162851,-0.35735270706936717,0.11506916768848896,-0.6930475165136158,0.900371978059411,0.544103842228651,0.5898770620115101,-0.6762481266632676,-0.29900262877345085,0.5596666857600212,-0.2977272495627403,0.9436424528248608,-0.01988217420876026,0.43523554503917694,0.12664420157670975,0.5768635696731508,0.2141160094179213,0.5522125326097012,0.46010837610810995,0.03749082423746586,0.42847426515072584,0.7676199530251324,0.1523592807352543,0.15393875446170568,-0.9285687366500497,-0.5003175004385412,-0.1354436562396586,0.26223347103223205,-0.493071963544935,0.2658002465032041,0.9850621200166643,-0.48597572231665254,0.32044750917702913,0.7075048685073853,0.688583368435502,0.6952131851576269,-0.6826134156435728,0.2151488559320569,-0.9011789569631219,-0.4335740632377565,-0.9240513755939901,-0.5807929448783398,-0.05635477555915713,0.5228394684381783,0.9401411414146423,0.762397201731801,0.2563287056982517,-0.8716093092225492,-0.9013285795226693,-0.6506192851811647,-0.5516888843849301,0.29501666873693466,-0.6401375476270914,0.2267575371079147,-0.7268978310748935,0.43535291869193316,0.4176722872070968,-0.07997065223753452,0.8491616966202855,-0.7163603813387454,0.06484149489551783,0.18913980014622211,-0.9892099034041166,0.1409553033299744,0.7080471576191485,-0.7774025010876358,0.16915062023326755,-0.062145811039954424,-0.7175135333091021,-0.1517705745063722,0.06740914518013597,0.03339181002229452,0.9422242250293493,0.15700914058834314,-0.3774572657421231,0.7051313947886229,0.010658881161361933,-0.9061379469931126,-0.601732786744833,0.48180949222296476,0.14171118289232254,0.4455791665241122,-0.5082496432587504,0.7749730530194938,-0.18952706875279546,0.06777134817093611,0.24273849558085203,0.7796219452284276,0.2015784541144967,-0.59957146178931,-0.7653489178046584,0.24735499825328588,0.8052954883314669,0.2079271194525063,0.010710036847740412,0.9722384046763182,0.9789162557572126,-0.5162127101793885,-0.1375165726058185,-0.6505977967754006,-0.36132416408509016,0.656397073995322,0.4506830982863903,-0.8272351329214871,0.8201867141760886,0.1949117984622717,-0.6270237728022039,0.06787836272269487,-0.29948581755161285,0.5436969138681889,0.42734851501882076,0.23128091590479016,-0.6893050507642329,0.048866750206798315,0.21632574405521154,-0.8325162944383919,0.6275789993815124,0.6125378706492484,-0.06560710771009326,-0.6979317329823971,0.683682868257165,0.30539905885234475,-0.9236197052523494,0.7817496070638299,-0.32246472174301744,-0.9346770057454705,-0.3560190536081791,-0.3875256469473243,0.6347967702895403,0.3164218543097377,-0.2694082031957805,0.5370040144771338,0.016763613559305668,-0.7725411630235612,-0.2342021418735385,0.1986034675501287,0.5748340762220323,0.29635311011224985,-0.25092092249542475,-0.372241860255599,-0.8349080006591976,0.39947285782545805,-0.1998957321047783,-0.3808829472400248,0.523443893995136,0.26485241856426,-0.1789572909474373,0.856671289075166,0.7853738008998334,0.9023972088471055,0.6073787305504084,-0.9200653107836843,0.41707612527534366,0.2669454566203058,-0.022272287867963314,0.3231337359175086,-0.6233330103568733,0.27130951872095466,-0.9867648067884147,0.5940906377509236,0.04504074901342392,0.3709905529394746,-0.9719485873356462,-0.7108494695276022,-0.23492541117593646,-0.8705765954218805,0.8541613714769483,-0.81015858752653,0.503069824539125,-0.9928682995960116,-0.9025835548527539,-0.5074474499560893,0.6184497210197151,-0.08469807542860508,-0.08502468978986144,-0.9184694150462747,0.08335146494209766,0.3543330356478691,0.30581961479038,0.8481273422949016,-0.010742012411355972,-0.7703294423408806,0.3539587459526956,-0.38515454391017556,0.757324343547225,-0.02360907383263111,0.4092085827142,-0.1715401904657483,-0.21057335287332535,-0.9975486323237419,0.5859852787107229,-0.537521755322814,-0.2540562739595771,-0.8390984507277608,0.35869751451537013,0.8166904211975634,-0.4797109216451645,0.3644661162979901,0.9848355478607118,0.0679645431227982,-0.6382638062350452,-0.48193761613219976,-0.5381355555728078,0.11382695659995079,0.2788330568000674,-0.9602829697541893,0.5530717289075255,0.2189812962897122,0.8806817028671503,0.8977982383221388,-0.017222521360963583,0.19305083435028791,0.11216363916173577,-0.4690648433752358,-0.8160149357281625,0.5641345037147403,0.5528920250944793,-0.3910465193912387,0.6320142741315067,0.9621904236264527,0.8473059772513807,-0.3904383135959506,-0.618614683393389,0.37879793951287866,-0.3402955657802522,-0.5430919718928635,0.6598587445914745,-0.4626283720135689,-0.5441207964904606,0.8142190240323544,-0.981819654814899,0.9378554001450539,0.6781535977497697,-0.9732608958147466,-0.8261294486001134,0.255864885635674,0.27643887139856815,-0.19630812434479594,-0.6255317935720086,0.662362608127296,0.8385909940116107,-0.7475584289059043,0.6101884716190398,0.10955210123211145,0.09682709071785212,0.3362146667204797,0.5782415508292615,-0.04974704748019576,-0.9064057948999107,0.6037295716814697,-0.9846154036931694,-0.6847576135769486,-0.9541356470435858,-0.6064629694446921,-0.029422902036458254,0.9752597855404019,-0.07874340796843171,-0.3977705631405115,0.9481097245588899,-0.16908622439950705,-0.19456196203827858,0.7445031329989433,0.9377202359028161,-0.8441203678958118,0.716907205991447,-0.6654670964926481,-0.24323157081380486,-0.8489349600858986,-0.9365701712667942,-0.7080567572265863,-0.7214495670050383,0.1442636176943779,0.44637661427259445,0.8168762610293925,-0.37551638949662447,0.7702569672837853,0.33778584841638803,-0.23909134697169065,-0.3927527875639498,0.8487382302992046,0.9483594996854663,-0.4268326130695641,-0.48696594359353185,-0.3579994118772447,0.23833866138011217,-0.8935683774761856,0.43014083663001657,0.40510511212050915,0.7997565134428442,-0.04824379272758961,0.35742440866306424,0.7886455957777798,-0.9928842992521822,0.02234232285991311,0.17963035544380546,-0.7720006499439478,-0.23570332303643227,-0.751570297870785,-0.12606478156521916,0.30744037963449955,-0.5225733811967075,-0.9857216044329107,0.39595254929736257,-0.06884463457390666,0.522054466418922,-0.3884989693760872,-0.8955227728001773,-0.09935209341347218,-0.33807602152228355,-0.4408787186257541,-0.9868960245512426,-0.6249412773177028,-0.26080796495079994,-0.4490974461659789,-0.49631715938448906,0.9027818138711154,0.40046628983691335,0.957339936401695,0.37210796494036913,-0.9888892131857574,0.8426165636628866,0.8405212867073715,-0.823431539349258,-0.3513236306607723,-0.02903755847364664,-0.19714636635035276,-0.7723662215285003,-0.42668473022058606,0.6305293538607657,-0.25348928524181247,0.5992714543826878,0.6890067383646965,-0.28606666857376695,-0.3283658972941339,0.5410892735235393,0.4895965000614524,-0.9015898411162198,0.7693606005050242,0.6397602697834373,-0.815363104455173,-0.565073617734015,0.08212481904774904,0.8776330035179853,-0.20748052326962352,0.3155638952739537,0.9991663042455912,-0.37053211964666843,0.3963885111734271,-0.16183709586039186,-0.8119463007897139,-0.6260947845876217,-0.6860866220667958,0.38570914091542363,0.28499655704945326,-0.8429290973581374,-0.9094961741939187,0.7920254534110427,-0.32657770719379187,-0.5780736161395907,-0.20051325717940927,-0.21185332583263516,0.2723499462008476,-0.34545852756127715,0.3707106625661254,0.6104371352121234,0.1257892707362771,-0.13079908257350326,-0.06360513623803854,-0.3088432434014976,-0.21151496516540647,-0.6707844384945929,-0.38217433216050267,-0.14523811684921384,0.30627206852659583,0.6100383470766246,0.9702148209325969,0.11973364185541868,0.49480951158329844,0.7917699529789388,0.5769574474543333,0.5949154119007289,-0.01802039099857211,0.8862580745480955,0.00016369111835956573,0.9833142436109483,0.3811808293685317,0.031808746978640556,0.5769057874567807,0.08577585918828845,-0.982830642722547,-0.774137222673744,0.7623605122789741,0.6298920237459242,-0.7244275300763547,0.6254513836465776,0.23343680845573545,-0.6398763507604599,-0.0008146795444190502,0.3198584676720202,-0.1664303159341216,-0.38639343436807394,-0.8978809304535389,-0.7200407553464174,-0.46456701308488846,-0.3567864359356463,-0.7668091701343656,-0.9551207958720624,-0.3736129538156092,0.07774859387427568,0.49645558558404446,-0.5368717573583126,0.6443895921111107,0.46903468761593103,0.33365761023014784,-0.41218050196766853,-0.6547972476109862,0.5206797309219837,0.4307877207174897,-0.3940550764091313,-0.1160809975117445,-0.3353873072192073,0.2503603398799896,0.9302251781336963,-0.29240939021110535,-0.12128526391461492,-0.4059161962941289,0.45681430120021105,0.6305937166325748,0.3461242653429508,-0.3387371771968901,-0.707432150375098,-0.2921091974712908,0.48212952306494117,-0.009266701992601156,-0.7657795022241771,-0.7911397176794708,-0.8774720556102693,-0.3332511051557958,0.8311098208650947,-0.38659063819795847,-0.8093951363116503,0.870675721205771,-0.7414068337529898,-0.7164644761942327,-0.6427797782234848,-0.9895961624570191,0.400628712028265,0.30182443698868155,0.07815332431346178,-0.9478873717598617,0.6790666505694389,-0.03459039144217968,0.9701632326468825,0.13765304861590266,-0.8798031597398221,-0.07698993617668748,-0.5587428142316639,-0.9977182350121439,0.8597837118431926,0.9892334076575935,-0.2437607627362013,0.6820381535217166,0.7474896046333015,0.17926661623641849,-0.7824495956301689,0.0773866418749094,0.7113747708499432,0.9722098768688738,0.3406095220707357,-0.22334007360041142,0.51960818329826,-0.0264861392788589,0.22365761222317815,0.15305027551949024,0.6316761514171958,0.8259767470881343,-0.8076425357721746,-0.8688784297555685,-0.8624747474677861,0.11812767433002591,0.6453040353953838,0.7108274679630995,-0.8296828526072204,-0.38549830578267574,-0.14674374973401427,0.6933627398684621,-0.2838924457319081,-0.5500161610543728,-0.8590917205438018,-0.2091493154875934,0.9331628107465804,-0.8659081510268152,0.3419178449548781,-0.741713716648519,0.07435059081763029,0.9211503812111914,-0.47842920338734984,-0.5186784816905856,0.17679124232381582,0.25583233358338475,0.6900690784677863,0.22909961314871907,0.9624259998090565,0.9803024935536087,-0.4886409337632358,-0.5453847283497453,0.17043299647048116,-0.10471424460411072,0.061592803336679935,-0.2489092187024653,0.8695410485379398,-0.23068679869174957,0.8834876613691449,-0.29022041987627745,0.6437502298504114,0.07348031923174858,-0.44418485602363944,0.1799267902970314,0.6610726248472929,0.24731479119509459,0.6732810325920582,-0.42611856013536453,0.49024490639567375,0.5063142762519419,0.844867501873523,-0.3635757341980934,-0.7513733995147049,0.2683822703547776,0.25186871830374,-0.47138254484161735,0.13870316604152322,0.6184975137002766,-0.004163491073995829,0.12222739169374108,0.9869145057164133,0.4502624203450978,-0.15335970651358366,-0.7485394631512463,0.813938663341105,0.0816808519884944,0.8662672070786357,0.2847298397682607,0.0037846891209483147,0.587038183119148,-0.6715355175547302,0.8411829150281847,-0.42800070671364665,-0.7028692117892206,-0.8909471393562853,0.9192165252752602,0.2723601241596043,0.25214861147105694,-0.6796208075247705,0.15180780366063118,-0.26690005557611585,0.8491009897552431,-0.5104636857286096,-0.7776150438003242,0.00127478688955307,-0.8102330826222897,-0.689486363902688,-0.6378791304305196,0.24019475281238556,0.24452183255925775,0.7270454284735024,-0.5583361112512648,0.8949980549514294,0.6803565523587167,0.835919204633683,0.001977193634957075,-0.01440782891586423,0.6803918890655041,-0.09720982611179352,0.0951388911344111,-0.632437452673912,0.6299434234388173,0.7672433312982321,-0.7169016445986927,0.11142814671620727,-0.5983632891438901,-0.5509405788034201,0.5395700568333268,-0.4659792869351804,0.23007981106638908,-0.4456933233886957,0.967144853901118,0.48104080837219954,-0.7523898966610432,-0.22871048282831907,-0.830624888651073,0.1753269755281508,-0.5744556821882725,-0.33781034778803587,-0.8585718828253448,-0.46597958030179143,-0.5224567195400596,0.3308929749764502,0.5477247824892402,0.07043252792209387,-0.13191551808267832,0.4601925453171134,0.49197020987048745,-0.8667965205386281,0.5880262805148959,-0.45392963383346796,-0.805706535000354,-0.0937170758843422,-0.8315717801451683,0.9087007320486009,-0.6499278340488672,0.3302419031970203,0.16353388270363212,-0.1985538429580629,-0.8577785352244973,0.9926939732395113,-0.5190534009598196,0.37068111496046185,0.3503649984486401,-0.0959079759195447,-0.9231582125648856,-0.6018964652903378,-0.7224422697909176,0.47349573904648423,-0.8295794599689543,-0.7165301511995494,-0.7965771211311221,0.4842720371671021,0.7464075861498713,0.9360167481936514,0.5120072853751481,0.8563185781240463,-0.5592316426336765,0.2079969230107963,-0.8088940978050232,0.1742968438193202,-0.5237291473895311,-0.5917922989465296,-0.20503622805699706,-0.722939983010292,-0.2529649920761585,0.004925188608467579,0.9741066358983517,-0.7060164804570377,0.8273212728090584,-0.7694239960983396,0.44656953727826476,-0.21987296408042312,-0.05488675041124225,0.03975398978218436,0.9598480593413115,0.6719953711144626,-0.78500682907179,0.2921701301820576,-0.30903452541679144,0.2830057223327458,-0.9803433809429407,0.1270025405101478,-0.6158957132138312,0.4865179155021906,-0.20825019013136625,-0.1463816510513425,-0.924423900898546,0.5573814040981233,0.2670315010473132,0.5773090389557183,-0.27558151818811893,0.9572540195658803,-0.48325430462136865,-0.5883210115134716,-0.3820540476590395,-0.5640698433853686,-0.2304067611694336,-0.013369274791330099,-0.6424818108789623,-0.5034235534258187,-0.4686282644979656,-0.4771034587174654,0.35852250549942255,-0.3397975587286055,0.015459614805877209,0.9272207701578736,-0.3623834839090705,0.09337587794288993,-0.0036460356786847115,-0.8157436954788864,0.6732259844429791,-0.10848073428496718,0.6545958193019032,0.5184163847006857,-0.21775585506111383,0.693655398208648,0.29530802834779024,-0.37396578723564744,-0.15565170347690582,-0.5256152520887554,0.6889293994754553,-0.854879551101476,-0.15191528294235468,-0.41253044502809644,-0.11130382027477026,-0.8094944381155074,0.46499330503866076,-0.5581247108057141,0.5206150691956282,-0.9233488286845386,-0.9919225601479411,0.1037763450294733,-0.03219886031001806,0.5578709081746638,0.8391453297808766,-0.7755339154973626,0.7736820657737553,0.6098829507827759,-0.31334702484309673,0.19068368710577488,-0.26444149296730757,0.2887980188243091,0.873520159162581,0.28460157569497824,-0.4693203764036298,-0.5953677906654775,-0.8405055906623602,0.9966894057579339,-0.5078851054422557,0.49994785943999887,-0.7916368301957846,-0.4459553165361285,0.07036297209560871,0.012753877323120832,-0.7072706148028374,0.7727234247140586,-0.7638636543415487,0.08716156659647822,-0.32987705059349537,-0.39482884015887976,0.34492607042193413,0.7306569898501039,-0.17859640903770924,-0.10894274339079857,0.03647396946325898,-0.7820707019418478,-0.413768186699599,0.07143484009429812,-0.38030551513656974,-0.596254292409867,-0.0008147759363055229,0.8254760876297951,-0.5532761593349278,-0.1672804867848754,0.5250181769952178,0.8554329434409738,0.9558406919240952,0.7539953785017133,0.9672853881493211,-0.3980972361750901,-0.5440697097219527,0.19817882124334574,0.8980340277776122,-0.6417643171735108,-0.08003849163651466,-0.9314816207624972,0.1749194823205471,0.37581951450556517,0.6902508148923516,0.19854581076651812,-0.8550646253861487,-0.14024696871638298,0.7281241030432284,0.06752496259287,-0.872429356444627,-0.4554748833179474,0.7237686002627015,-0.8615668537095189,0.8123583979904652,0.056397362146526575,-0.1153870509006083,0.7218928700312972,0.30062448512762785,-0.9498738618567586,-0.7021001959219575,-0.13231664709746838,-0.3261741860769689,0.7237904313951731,-0.5839769123122096,-0.5268686860799789,-0.8915813630446792,0.03684483328834176,-0.7371457302942872,0.9630602211691439,-0.8092359863221645,-0.22874699858948588,0.5225986763834953,-0.5033975904807448,-0.0931030884385109,-0.2594236573204398,-0.6768908333033323,-0.8423771392554045,-0.7834472134709358,-0.5758346859365702,-0.26454330515116453,0.7940139551647007,0.8057559649460018,0.8969511515460908,-0.046536095440387726,0.12193249026313424,-0.9433239824138582,0.07666647341102362,0.49226059345528483,0.1338380528613925,0.25859812181442976,0.16837177705019712,0.7661174274981022,-0.6021954575553536,0.20732325734570622,0.12033311696723104,0.3637926713563502,0.24007276073098183,0.09715178422629833,0.18929265392944217,0.47670317301526666,-0.021776165813207626,-0.2812351817265153,0.8288113949820399,-0.17859965050593019,-0.46104071801528335,0.8421097877435386,0.5980711868032813,0.9331514397636056,-0.4437990835867822,0.8913920251652598,-0.1318070013076067,-0.9272208716720343,-0.3691897098906338,0.61784787196666,0.5468656504526734,-0.7835724083706737,-0.5390817942097783,0.9380964003503323,0.5761005165986717,0.6816457160748541,-0.15989768086001277,-0.5078397332690656,0.3346397024579346,-0.01789992954581976,0.4042434194125235,-0.9742893325164914,0.9579173531383276,-0.89661248261109,-0.9544472228735685,0.4094225065782666,-0.05054201418533921,-0.2055258578620851,0.5277818283066154,0.2924634083174169,0.2688587782904506,-0.45190050173550844,0.20191154070198536,0.9522030451335013,0.3232298297807574,-0.076734134927392,0.8755240724422038,-0.7757220468483865,0.2418974507600069,-0.8074149624444544,0.2569482633844018,0.0509806708432734,-0.5550375217571855,-0.41067661019042134,0.2744081555865705,-0.4837910900823772,0.23325240705162287,-0.9252249705605209,0.5648318603634834,-0.4884967762045562,0.06864542327821255,0.2757346802391112,-0.3977094325236976,-0.1807009084150195,-0.6001200755126774,0.355148958042264,0.4557610438205302,0.15237283566966653,-0.1406199145130813,0.6034208736382425,0.5813591904006898,-0.5134362517856061,0.9006173922680318,0.8788612685166299,-0.047754000406712294,-0.9051154358312488,0.3267321498133242,-0.4750025658868253,-0.9248190554790199,0.016413140576332808,-0.09786910843104124,0.6498858383856714,-0.1885681408457458,-0.9102181480266154,0.6579347741790116,0.22921245405450463,0.4814341436140239,-0.512509633321315,-0.01689292723312974,0.41620068065822124,-0.7599305831827223,0.6395344194024801,0.05203371588140726,-0.4729330758564174,-0.28174994932487607,0.1361154429614544,-0.6619402249343693,-0.1764038046821952,-0.9908546200022101,0.5299637606367469,-0.009563842788338661,0.9918415993452072,0.695153936278075,0.3744223681278527,0.3006972228176892,0.9225071943365037,0.8919171690940857,-0.9750701766461134,-0.9375009280629456,-0.30342899821698666,-0.5895380540750921,-0.8460825937800109,-0.9830264602787793,0.4531128043308854,-0.47265639435499907,0.10810013767331839,0.15687322430312634,-0.7645853366702795,-0.3725101645104587,-0.24444041820243,-0.579866701271385,-0.36717561027035117,-0.7064072964712977,-0.2180773844011128,-0.30343795474618673,0.0970348259434104,0.5363714122213423,0.4868197487667203,0.8060065605677664,0.7030094261281192,0.5255840974859893,0.6776437987573445,0.18689784035086632,-0.1936897672712803,0.2753838272765279,-0.5148482886143029,0.3913490525446832,-0.3753246748819947,-0.9993682894855738,-0.3367845076136291,-0.06566038029268384,-0.1615297212265432,-0.23340877844020724,-0.6748854909092188,0.048881130293011665,-0.004852788522839546,-0.21430944139137864,0.2871029251255095,-0.08330423198640347,-0.43819479271769524,0.3175772977992892,-0.6859420612454414,-0.0719394669868052,0.36357218865305185,0.29709581611678004,0.3920087846927345,-0.4326794994994998,0.5468083070591092,0.5627683671191335,-0.8945840988308191,-0.9397124629467726,0.2148782517760992,0.15034294873476028,0.23828970361500978,0.259603142272681,-0.6757291061803699,-0.5639400444924831,-0.3604380050674081,-0.47364721400663257,-0.13983341166749597,0.5422860942780972,-0.9317168360576034,0.9945687013678253,-0.7123585608787835,0.3339422573335469,-0.28899794025346637,-0.1078180787153542,-0.40630948869511485,-0.6286059631966054,-0.20629624696448445,0.6961580985225737,-0.17073110956698656,0.3380962866358459,0.35365634271875024,-0.1520047513768077,0.9647291000001132,-0.2569645713083446,-0.1887756558135152,0.7606207858771086,-0.03147089062258601,0.9308046037331223,0.02641700766980648,0.41917477548122406,-0.974363508168608,-0.42723727505654097,-0.8803124646656215,-0.7999770613387227,0.12365149380639195,0.6202838602475822,0.7516953721642494,-0.6089416658505797,-0.19012704584747553,0.4256619457155466,0.4755430552177131,0.06241623219102621,0.7407853757031262,-0.7283592442981899,-0.273600404150784,0.6565142553299665,0.9075239091180265,-0.06268398277461529,-0.21639658976346254,0.2113000717945397,0.8888788619078696,-0.693827923387289,0.16206644102931023,-0.34439925802871585,0.5395110612735152,0.09525589272379875,-0.9328713733702898,0.6816358068026602,0.26866526948288083,0.9606677242554724,-0.1658527054823935,-0.1519132093526423,-0.5884401295334101,0.5860153748653829,0.3027046178467572,0.05174259468913078,0.566777853295207,-0.8265063734725118,0.3090948024764657,-0.5118655045516789,-0.6628254875540733,-0.22929830197244883,0.23089205473661423,-0.13093723682686687,0.9276013146154583,-0.1273505762219429,0.12302440218627453,0.6974501353688538,-0.19583257986232638,0.8544272775761783,-0.4791672062128782,0.6293966392986476,0.8351762173697352,-0.698675359133631,0.8121994412504137,-0.15763767436146736,-0.5972061050124466,0.8994890218600631,0.3251833338290453,0.38189835753291845,0.7122078081592917,0.6871980708092451,-0.7164174825884402,0.23953240551054478,0.35655422834679484,-0.5268291593529284,0.2378442259505391,-0.8066078387200832,0.019554924685508013,0.6712163677439094,-0.45693541737273335,-0.6468368284404278,0.9196107480674982,-0.29683493776246905,-0.8519936725497246,0.8661512834951282,0.2936382838524878,-0.19107348285615444,0.26963027101010084,-0.8420621226541698,-0.043371666222810745,0.7817497295327485,-0.8311075214296579,-0.48939819587394595,0.4009434748440981,-0.11285096313804388,-0.8548797043040395,-0.20741975074633956,-0.35816252417862415,0.089299984741956,-0.3748345645144582,0.29443388199433684,0.4964797957800329,-0.8393321372568607,-0.8404110223054886,0.5812315656803548,0.9236102965660393,-0.3299577464349568,0.38814078737050295,-0.010753285139799118,-0.601188319735229,-0.46801432967185974,0.5095969261601567,0.40864948788657784,0.8014663779176772,-0.32616951363161206,-0.7955896505154669,-0.9148911945521832,0.6143077579326928,0.3347540036775172,0.02650947542861104,0.7309685652144253,-0.7357253301888704,0.7791471285745502,0.03017430007457733,0.9338560914620757,-0.6247228016145527,-0.7226037667132914,-0.8836950012482703,-0.34238982340320945,-0.8493545595556498,0.8926938171498477,-0.9566700761206448,-0.3271294725127518,0.12825067527592182,0.4536557011306286,0.24516882374882698,0.004585373681038618,-0.4934336072765291,0.8548815227113664,0.1280290293507278,-0.7650692877359688,0.062191300094127655,-0.8885076767764986,-0.9011176787316799,0.7913827700540423,0.8156965901143849,-0.15065211104229093,-0.1256870157085359,-0.1088587362319231,-0.6489776764065027,-0.41957585932686925,0.12147125322371721,0.6098225573077798,0.5840114811435342,-0.625520302914083,-0.9580625989474356,-0.08097900822758675,0.9648128268308938,-0.7135553932748735,0.16233337251469493,-0.7947751339524984,0.4954148568212986,-0.1466282899491489,-0.7030394808389246,-0.445821737870574,-0.7695141434669495,-0.42768529476597905,0.3290752898901701,0.31820501387119293,0.3446549493819475,-0.6174542927183211,0.6465912885032594,0.4339623465202749,0.8240119637921453,-0.17400928493589163,-0.7521296925842762,0.4586754208430648,-0.9538106028921902,-0.9564395369961858,0.35258007468655705,0.4802348930388689,0.6562020983546972,-0.7458427045494318,-0.7039239099249244,-0.7892536832951009,0.37205493776127696,0.8937297058291733,-0.9162095808424056,0.8941691382788122,0.9771422580815852,-0.12092841695994139,0.22124793473631144,0.4016935699619353,0.9355042553506792,0.7975972811691463,0.8360561272129416,0.6335442829877138,-0.18023486668244004,-0.41414635675027966,0.22114070365205407,-0.8664401993155479,-0.24019854422658682,-0.01810576766729355,0.5903769386932254,0.5795563389547169,0.11617057863622904,0.7047740612179041,0.3361476641148329,-0.9608423123136163,0.5690005668438971,-0.13409863924607635,0.2944251918233931,-0.077203125692904,-0.710606980137527,-0.7895419243723154,0.5049224733375013,0.6659886636771262,-0.6948373359628022,-0.24361417209729552,0.8750178618356586,-0.4939720989204943,-0.4979107305407524,0.7481899284757674,0.5934979999437928,0.32230612402781844,-0.9495078921318054,0.09759269841015339,0.7451643222011626,0.05390293896198273,-0.22946815518662333,-0.10984529228881001,0.3370707714930177,0.6341989892534912,-0.6533638718537986,0.020775872748345137,0.04892570432275534,0.7103445450775325,0.22585330111905932,-0.1914231525734067,0.24761508265510201,-0.4435096844099462,-0.5679436065256596,-0.8937444933690131,-0.24598784698173404,0.15370051050558686,0.029160520527511835,0.25411063665524125,-0.3874395051971078,0.5508352001197636,-0.12843891978263855,0.8147566458210349,-0.15404773969203234,0.71781518869102,0.8180564236827195,-0.8956722202710807,0.4233281249180436,-0.4425558350048959,0.5945420954376459,-0.30665541207417846,-0.34055588860064745,0.5702387462370098,0.5479616350494325,-0.4927009562961757,-0.06812179461121559,-0.17050499375909567,0.4997959160245955,-0.14746724627912045,0.033427472691982985,0.7025307682342827,0.8017223956994712,0.8275759532116354,0.5962908016517758,0.7212961679324508,0.06960669299587607,0.40052188793197274,0.3702627792954445,0.5661655464209616,-0.1886409791186452,0.03737058211117983,-0.26178059447556734,0.5159581014886498,0.9570123734883964,0.47589915059506893,0.9177784458734095,0.3420855305157602,-0.9032179955393076,-0.07895591203123331,0.6346099632792175,-0.5848243376240134,-0.08363343868404627,-0.2319804891012609,-0.08844903530552983,0.019973386079072952,0.0831271386705339,0.07204133179038763,0.27332291565835476,-0.6979439305141568,0.05209270538762212,-0.6253519053570926,-0.42022041883319616,-0.056512050330638885,0.45389212016016245,0.8878756710328162,0.10257658874616027,0.2826045476831496,-0.41718597430735826,-0.6144822062924504,-0.08022060431540012,0.5230285115540028,-0.3389225108548999,0.32961098197847605,-0.7877076440490782,-0.2686698418110609,-0.3243901031091809,0.5411927858367562,0.5229605981148779,-0.8239231272600591,-0.5546627379953861,0.7110567153431475,-0.31923332437872887,0.0622593741863966,-0.25316335540264845,0.8399586211889982,-0.37697985023260117,0.41612343257293105,-0.037256007082760334,-0.6276514823548496,-0.8295227377675474,-0.7657739310525358,-0.11238456843420863,0.14594346191734076,-0.6033990001305938,-0.7790143727324903,0.20966952806338668,-0.7860219026915729,0.2111740717664361,-0.5694600264541805,0.09224467817693949,-0.655760854948312,0.47692531254142523,-0.9004197549074888,-0.9458460304886103,0.03554764064028859,0.5904228873550892,-0.7768724919296801,0.37308828346431255,0.8753157365135849,-0.6908864881843328,-0.8993819593451917,-0.3531503058038652,0.4830668941140175,-0.6887751705944538,0.8500493494793773,-0.5068661980330944,0.7701334147714078,0.29835108341649175,0.7472729589790106,0.9765568156726658,-0.7339358371682465,-0.6887465962208807,-0.20208229077979922,0.3391644302755594,-0.7000382943078876,-0.19810254592448473,0.24443002976477146,0.33783083502203226,-0.9550799536518753,0.16740346141159534,0.40370478574186563,0.0013828896917402744,0.6809466117992997,0.969902437645942,0.4578128824941814,0.2898064274340868,0.046356555074453354,-0.8510562642477453,-0.44412364810705185,-0.8233937695622444,-0.6408548569306731,-0.24243183573707938,-0.6611981391906738,0.6224479000084102,0.48105619847774506,-0.22869098326191306,-0.3897961685433984,-0.0015054866671562195,0.15471637668088078,-0.03171603940427303,-0.12874738313257694,-0.5976300295442343,0.01392588997259736,-0.5973644885234535,-0.3595341891050339,0.3548907348886132,0.7210459085181355,-0.2068569092079997,-0.041542776860296726,0.0065489765256643295,-0.9821930108591914,-0.9793266076594591,-0.47923186235129833,-0.6327530140988529,0.5942856236360967,0.010075259022414684,0.4334483463317156,-0.6215882166288793,0.46602652268484235,-0.11208315845578909,-0.6320225559175014,-0.22321681631729007,-0.9250793838873506,0.43575416738167405,-0.15304009057581425,0.33055108645930886,-0.5201191124506295,0.733472194056958,0.9145342935808003,0.9932586029171944,0.8834528517909348,0.039361040107905865,0.1408502017147839,-0.8941994975320995,-0.7851565680466592,-0.9641678687185049,0.5979205113835633,-0.4350722790695727,-0.7350295893847942,-0.4016422447748482,-0.8729046238586307,-0.6416655723005533,0.037798475939780474,0.22103887889534235,-0.7892769491299987,0.8283372218720615,0.9617417268455029,0.355136813595891,0.7976496960036457,0.7876650989055634,-0.5384654370136559,-0.6637644008733332,-0.17786696599796414,0.7654304564930499,0.4751968737691641,0.21390606556087732,-0.23562598414719105,-0.8495815140195191,-0.7628688625991344,0.8854714622721076,-0.7497192700393498,0.8740456313826144,0.3405280327424407,0.5213220147415996,0.07631563302129507,0.2732859458774328,-0.8414098699577153,-0.79929637350142,0.457906776573509,-0.6653979732654989,-0.29540158016607165,-0.13073119288310409,0.15247845137491822,-0.06343125179409981,-0.46043643774464726,0.8632107358425856,0.6407754174433649,-0.8198724375106394,-0.33485343772917986,0.6153933485038579,0.468792783562094,0.33122809464111924,0.8949147025123239,0.5358361583203077,0.9596039541065693,0.6403301185928285,0.88709517987445,0.00763364415615797,0.8240582360886037,0.3903473112732172,0.09515886520966887,-0.3672208064235747,-0.14189184131100774,-0.05456889234483242,0.5546864490024745,0.5575756444595754,0.6143026449717581,0.5801764335483313,-0.7456002309918404,0.875000988598913,-0.5261446759104729,-0.43996794102713466,0.812854525167495,-0.28422005102038383,0.6283461381681263,0.03655515471473336,-0.32790508959442377,0.2418879084289074,-0.837774243671447,-0.3930458095856011,0.7927043535746634,0.35430513322353363,-0.9372686548158526,0.5666226297616959,-0.4017898994497955,0.72310791304335,0.31713173957541585,-0.15966972894966602,-0.3917899252846837,-0.5063286684453487,0.6502694529481232,-0.9131114413030446,0.6905735121108592,-0.10053630406036973,-0.2419565925374627,-0.21254257392138243,-0.7219092268496752,0.8328391453251243,0.9058977891691029,0.026575369760394096,-0.3604398467577994,-0.5712118451483548,0.9057165668345988,0.01277385838329792,0.8883477905765176,-0.27257935516536236,-0.2616790230385959,0.22181011084467173,-0.7913668025285006,-0.7544715502299368,-0.011729763820767403,0.24064704636111856,0.8068412425927818,0.5737993502989411,-0.6714045307599008,-0.2919025793671608,-0.3682622038759291,0.3264838089235127,-0.33155579352751374,0.8392517901957035,0.8466392178088427,0.6434368435293436,-0.13221558183431625,-0.9023445113562047,-0.8690570071339607,0.7258624620735645,0.8300462360493839,-0.14355949219316244,-0.1985666025429964,-0.9779591411352158,-0.7550975591875613,-0.9139834670349956,0.8306052866391838,0.5992828933522105,-0.6538806273601949,0.06458228128030896,-0.47728525614365935,0.6581407827325165,0.8955473555251956,-0.6238591694273055,0.6972182523459196,-0.8718324839137495,-0.4204350486397743,-0.7080618436448276,0.5398790771141648,-0.2582949809730053,0.6932517518289387,0.09617143729701638,0.4292114241980016,0.9405601490288973,0.682823674287647,-0.2782972436398268,0.753082640003413,0.3455682583153248,0.15552474884316325,0.9018770745024085,-0.6339677898213267,0.6501427488401532,-0.48940635519102216,-0.13878411706537008,0.3035577489063144,0.9121758649125695,0.17073711240664124,-0.5080749909393489,0.2810930288396776,0.28724587243050337,-0.42107211193069816,-0.44244459504261613,0.797908681910485,-0.7284230361692607,-0.6837540646083653,0.6306726848706603,-0.47883814107626677,0.8728733155876398,-0.6687374953180552,0.07797327591106296,0.9276240305043757,-0.4157795528881252,-0.23135191714391112,0.680506797041744,-0.1943757301196456,0.5254542217589915,0.5959032303653657,-0.014039280824363232,-0.4701387034729123,0.2585459784604609,0.43939512502402067,-0.9159957370720804,0.21864155074581504,0.8957141800783575,0.11037077009677887,0.5431517022661865,0.7605622312985361,0.7545662331394851,0.6014602356590331,-0.4608095963485539,-0.2538422825746238,-0.9356747386045754,0.7336375024169683,0.2578794667497277,-0.04541676165536046,-0.03587682079523802,0.8036890705116093,0.9646356827579439,0.37894184701144695,0.6776288677938282,0.6335754310712218,-0.474309076089412,0.9986162367276847,-0.8456801450811327,-0.3898049178533256,0.27669182186946273,-0.636563962791115,-0.2984690563753247,0.8004833897575736,-0.4263996509835124,-0.14044826058670878,0.21129854628816247,-0.7852326943539083,0.8179432195611298,0.7992320018820465,-0.5518706059083343,-0.43087237793952227,0.33775462908670306,-0.7997604524716735,0.5228951750323176,-0.06285995338112116,0.5312751117162406,0.8206371278502047,-0.17034706799313426,-0.0704089249484241,-0.7376516289077699,0.7849918445572257,-0.416577709838748,-0.39550161780789495,-0.7957877516746521,-0.1986970310099423,0.9601450362242758,-0.527153869625181,-0.9899917547591031,0.7555052796378732,0.05828972067683935,0.353769832290709,-0.6579819992184639,-0.29285445623099804,-0.6049257074482739,-0.018390535842627287,-0.8699673782102764,-0.009856228716671467,-0.684934320859611,-0.2958189672790468,0.2983170454390347,-0.2590074329636991,0.5917133875191212,0.3373814346268773,0.3198712971061468,0.21797709679231048,-0.10272982437163591,-0.6270183608867228,-0.7104198234155774,-0.5984312775544822,-0.008130763657391071,0.006797363515943289,-0.45125105092301965,0.922152376268059,-0.4487205035984516,-0.9517632615752518,-0.007087264209985733,-0.47858564741909504,0.9947862182743847,-0.699443016666919,0.14275732496753335,0.3036563969217241,-0.15972947934642434,0.6964029897935688,0.09902984602376819,-0.0682899784296751,-0.6409650072455406,-0.09166203811764717,-0.8911265097558498,0.31271235225722194,-0.05458846967667341,-0.5626320145092905,0.0534477555193007,0.04076135903596878,0.6989339524880052,-0.33060626685619354,0.5212231976911426,0.8433078550733626,-0.06205203523859382,-0.6558409291319549,0.8379503642208874,0.016426028218120337,-0.5500321728177369,-0.9304325981065631,-0.9349466473795474,0.7632038895972073,-0.7157151228748262,-0.9786938256584108,0.9033815735019743,-0.5938259596005082,0.04153983946889639,-0.6521885199472308,0.7612896841019392,0.8410912272520363,-0.1329959724098444,0.21133542293682694,-0.9546450944617391,-0.8591044466011226,-0.3638949291780591,-0.13071562629193068,0.28293858794495463,-0.9037494487129152,-0.41216259403154254,-0.2907559275627136,0.7694759066216648,0.2354456428438425,-0.12680350942537189,-0.12463542586192489,0.11562024801969528,0.7947247107513249,-0.7649357751943171,-0.7645321516320109,0.7454132055863738,-0.9901087312027812,-0.08887315914034843,0.34829772962257266,0.7903219740837812,-0.739623136818409,0.5331837232224643,-0.7608546046540141,0.23578263632953167,-0.11131548136472702,-0.9211618327535689,0.03494785539805889,0.6002390375360847,0.19266435969620943,-0.44671766459941864,-0.8646492031402886,0.8632259028963745,0.751434298697859,-0.8191708344966173,0.34311888832598925,-0.4421469196677208,-0.7146775401197374,0.6336551294662058,-0.547195443417877,0.9416341483592987,0.6743817552924156,-0.18329694494605064,0.3094397038221359,0.008586185984313488,0.7031531608663499,-0.07055016746744514,0.07148755108937621,0.033356430009007454,-0.6266827387735248,-0.42418187437579036,0.8849516208283603,-0.9915151204913855,-0.5858089909888804,-0.6953009897843003,-0.374453779309988,-0.5344232926145196,-0.21273923525586724,0.45362204825505614,0.14296179544180632,-0.18266455130651593,-0.8479284038767219,-0.4390387232415378,0.5726735736243427,-0.13488110061734915,-0.5244179689325392,0.7299911240115762,-0.30156715027987957,0.5935135325416923,0.9889470008201897,0.29838032089173794,-0.13303735060617328,-0.4237445271573961,-0.05727313365787268,-0.8578693931922317,0.09781254781410098,-0.6742426534183323,0.11882813042029738,0.43288532085716724,-0.5400343630462885,0.22501641511917114,-0.6083450461737812,0.20652058627456427,-0.48021766589954495,0.8348135547712445,-0.11040219198912382,-0.46277221478521824,0.16097907396033406,-0.3236392424441874,-0.16586754471063614,0.3464405261911452,-0.20711236773058772,-0.039985200855880976,0.05729896109551191,0.1844028029590845,-0.36299806321039796,0.22407743893563747,-0.2784744929522276,0.5901773134246469,0.6973480968736112,0.7110336516052485,-0.17157749040052295,-0.47728299209848046,-0.9782737451605499,0.36917367298156023,0.7328816596418619,0.6381334499455988,0.5791343254968524,-0.1652117120102048,-0.28967274399474263,-0.49478236585855484,0.2307112063281238,-0.17420981358736753,-0.40192879969254136,-0.6827131290920079,-0.957202666439116,-0.8497878224588931,-0.907528412528336,0.41177788376808167,0.515465275850147,0.7235231073573232,0.5165790901519358,-0.19160231249406934,-0.8060302250087261,-0.15058924397453666,-0.7720699184574187,0.48585684644058347,-0.5764404274523258,-0.8439796981401742,-0.9312990293838084,-0.06665663747116923,0.2716850102879107,-0.4164355881512165,-0.301308861002326,0.18907908629626036,0.169577291700989,-0.33208087738603354,-0.6083895764313638,0.009103352203965187,-0.7911291127093136,0.7693152548745275,0.5429946896620095,-0.9576617111451924,-0.09059238759800792,-0.7496906528249383,0.9447529776953161,0.25619728956371546,0.1872795377857983,0.0043873172253370285,-0.33241768227890134,-0.3687712433747947,0.6485945135354996,0.9518629657104611,0.9155698381364346,-0.8643663884140551,-0.10813390044495463,-0.1958864713087678,0.419948588591069,0.7139570950530469,0.7546508796513081,-0.4089351864531636,-0.7200568462722003,0.04994309274479747,-0.5271965400315821,0.3537001106888056,0.4819860029965639,0.49305532639846206,0.8503631274215877,0.36909355595707893,-0.3502518739551306,-0.6310252696275711,0.022260422818362713,-0.11905226344242692,0.3243651632219553,-0.11717193387448788,0.7269091503694654,-0.9583903485909104,-0.3623928800225258,-0.6816848996095359,0.5839522932656109,0.665804557967931,0.7131549720652401,-0.6104034446179867,0.812636086717248,0.6369476928375661,0.9658180680125952,-0.1476019872352481,0.2430813773535192,0.23125228937715292,0.7803793041966856,0.7896399293094873,0.45196080673485994,-0.061246770434081554,0.3396063568070531,-0.29441549349576235,0.042208760511130095,0.605649801902473,-0.1603338266722858,-0.14161508809775114,0.8382540163584054,-0.0878085782751441,-0.9342832253314555,0.05119430739432573,-0.7306086709722877,0.1651656893081963,-0.20264990767464042,0.26948817213997245,0.670945955440402,0.8864886024966836,0.2861439185217023,0.9842556295916438,-0.035140303429216146,0.47404633462429047,0.9871331132017076,-0.6676931330002844,0.8116088304668665,0.9963321890681982,0.6798724448308349,0.5243998738005757,0.3978519323281944,0.32024923618882895,-0.057663229294121265,0.23435823060572147,0.0511946240440011,0.9697564411908388,-0.057577642146497965,-0.6743819238618016,-0.8983004624024034,0.6019028606824577,-0.24876588536426425,-0.5604776684194803,0.8505484606139362,-0.47168727731332183,-0.8215038487687707,-0.9780918946489692,-0.1417161375284195,-0.09564468543976545,0.03538344241678715,0.18452524114400148,0.7709497702307999,-0.8334101112559438,0.15277044381946325,-0.6571709746494889,0.7953422050923109,0.8151832022704184,-0.40316730039194226,-0.272561171092093,0.7469365741126239,-0.14041824685409665,0.26103159319609404,-0.6019067894667387,0.6130585516802967,-0.7471797126345336,-0.22858687164261937,0.95222780527547,-0.8371142894029617,-0.3940825192257762,-0.6003279839642346,0.7453819550573826,0.4748624567873776,-0.2836903454735875,-0.9965665568597615,-0.6724031562916934,0.7349227271042764,-0.42237480636686087,0.18363078963011503,-0.5969631574116647,0.7418847274966538,-0.5288522536866367,0.8840798540040851,-0.9181500789709389,0.8343341471627355,0.7866877657361329,-0.7932477691210806,-0.9353295741602778,-0.154129802249372,-0.546827316749841,0.9168834136798978,-0.036986690014600754,-0.02848462574183941,0.8958792742341757,0.8453254583291709,-0.9103365391492844,0.2870601722970605,0.8586524906568229,0.2456680121831596,0.5993913318961859,-0.4183170567266643,0.9113070894964039,-0.16560977464541793,0.454773529432714,0.6052933391183615,0.836429382674396,0.16412060987204313,0.8469322589226067,0.4856693963520229,-0.12097817938774824,0.48086535139009356,-0.39744976814836264,0.5649286145344377,0.6071495139040053,0.28690887708216906,0.3479267400689423,-0.57450191071257,-0.6551958015188575,-0.2738772137090564,0.6420536278747022,0.22587446682155132,-0.17925042007118464,0.8715307246893644,0.14034142438322306,-0.745504658203572,-0.4196772575378418,0.5497158165089786,-0.08566232025623322,-0.01644574524834752,-0.6473349709995091,0.9347656546160579,0.9258353123441339,0.7890298417769372,-0.27654001908376813,0.8270633909851313,-0.5481660426594317,0.6223744084127247,0.23133278544992208,-0.47988703520968556,-0.47169983480125666,-0.7443840303458273,0.8346995189785957,0.14884954877197742,-0.15881367959082127,-0.37449163710698485,0.39834773913025856,0.09223529417067766,-0.870441478677094,0.6281187981367111,0.24066008441150188,0.49314646096900105,-0.13860968267545104,0.17845963081344962,-0.11864425893872976,0.5095299445092678,-0.6784186470322311,-0.691081419121474,0.629012206569314,0.8872314728796482,-0.510631529148668,-0.47023646207526326,0.21794544300064445,0.5439160852693021,0.9618771197274327,-0.6304462971165776,-0.6240829839371145,-0.1657696170732379,-0.7299549761228263,-0.7807239862158895,-0.2877329532057047,-0.5129594202153385,-0.7161345002241433,-0.4842409733682871,0.23402872402220964,0.7589317779056728,0.423675742931664,-0.747743490152061,-0.08637601230293512,-0.4845308815129101,-0.7085986970923841,0.0788820288144052,-0.49039178946986794,0.8326340108178556,0.5743681481108069,-0.8031634031794965,0.06213462259620428,-0.22976509761065245,0.2737804646603763,0.6228111148811877,-0.4598975256085396,-0.1292531881481409,-0.8527764268219471,-0.239620431791991,0.7855610633268952,-0.830401174724102,-0.06520319916307926,-0.187658307608217,0.4760808334685862,0.279413731303066,0.26719759963452816,-0.18379070749506354,0.38789383228868246,0.7000734456814826,0.7249355176463723,-0.49753437051549554,-0.24893310107290745,-0.6469343616627157,0.4756691316142678,-0.4955681683495641,0.7849380606785417,-0.9080089698545635,-0.27186336321756244,0.12034243065863848,-0.912647657096386,-0.7859462634660304,0.4626972801052034,-0.5737157096154988,-0.8875910714268684,0.7448734231293201,-0.6196653144434094,-0.8466634876094759,0.8504018662497401,0.2141892733052373,0.9447936415672302,-0.7898987806402147,0.11614596378058195,-0.7703317091800272,-0.7108994368463755,0.08711347542703152,0.7926655160263181,0.1478617819957435,0.9304085369221866,0.45732663199305534,0.3898317292332649,0.2654067683033645,0.3572811707854271,0.6329698567278683,-0.45779766142368317,-0.573555099312216,-0.315253640525043,-0.7344497772864997,0.9019562769681215,-0.47788388608023524,-0.10887543763965368,0.8833827069029212,0.6192726190201938,0.45679408963769674,-0.5910988780669868,0.1663881503045559,-0.6682165255770087,0.09818786708638072,0.5044215777888894,0.650449956767261,0.5626948294229805,-0.6796862250193954,0.45787314185872674,-0.2979539232328534,0.3875671816058457,-0.14810695592314005,-0.8000531503930688,0.398849219083786,-0.21931743575260043,-0.5882776957005262,0.627563155721873,0.9854282061569393,0.4484720998443663,0.46845762664452195,0.6192820807918906,0.04852205095812678,0.1916232956573367,0.9533838606439531,0.18590657599270344,0.9285738975740969,-0.27310286555439234,-0.6520337932743132,0.6713543669320643,-0.9333039755001664,0.12207254068925977,0.19536348851397634,-0.6694282172247767,-0.11449574260041118,-0.19410194642841816,-0.021564106922596693,0.9227701583877206,0.47609043354168534,0.6063958462327719,-0.5999329788610339,0.7648318661376834,-0.4780594608746469,-0.8489412139169872,-0.7034158152528107,-0.4583551213145256,0.8199338959529996,-0.4416565182618797,-0.22917808732017875,-0.07998513709753752,0.3431355603970587,-0.5498488205485046,0.3820949853397906,0.7070946362800896,0.45226123882457614,0.1724356273189187,-0.3149617873132229,-0.3510495382361114,0.3582085371017456,-0.5045125824399292,-0.8458982929587364,-0.09627661388367414,-0.4404227342456579,-0.9019434279762208,-0.3271714919246733,-0.5981403402984142,0.8241884908638895,0.5171681945212185,0.4821823420934379,0.9509024526923895,-0.7935346611775458,-0.28626711713150144,0.20164020778611302,0.6638423567637801,0.6484452472068369,0.24163789860904217,-0.1003375705331564,0.39034951850771904,0.1318689687177539,-0.24391881143674254,0.3853504112921655,0.15145868575200438,-0.5314050558954477,0.5451012635603547,-0.7460699360817671,0.6772984997369349,0.7501094499602914,0.5858445912599564,-0.9800075651146472,-0.3555720578879118,0.6326668760739267,0.17084663780406117,-0.308612403459847,-0.7897878680378199,0.8046943112276495,0.867834007833153,0.3756409641355276,-0.11537139909341931,-0.6012032926082611,0.005919008981436491,-0.0973020032979548,0.932484108954668,0.07791157672181726,-0.5419179787859321,0.6731023588217795,-0.3630410679616034,-0.8176741162315011,-0.04222310008481145,-0.037314729299396276,0.9766040509566665,0.17970310896635056,0.7153930645436049,0.5765858846716583,0.08490936644375324,0.13931712554767728,0.9283335446380079,-0.9218321978114545,0.7264374881051481,0.8040593932382762,-0.745409136172384,0.027402997482568026,0.6146723800338805,0.9898324320092797,-0.5765672260895371,-0.281331870239228,0.9285381156951189,0.3113179006613791,-0.0539184371009469,0.5274715190753341,0.847341145388782,-0.18984654312953353,-0.49486983846873045,0.7757745194248855,-0.9173633535392582,0.5065351817756891,-0.6224096813239157,-0.9243505727499723,0.6944083976559341,-0.32280562445521355,-0.19253271771594882,-0.9198698895052075,0.038695788476616144,-0.07552922517061234,-0.7101200567558408,-0.5905904546380043,0.7239958732388914,-0.9755184622481465,-0.6661144690588117,0.2733234059996903,-0.928647973574698,0.1445102309808135,0.6974420617334545,0.30318319937214255,0.5112053561024368,0.46218081936240196,0.17889715917408466,0.4843921954743564,-0.10780936758965254,-0.18746393639594316,-0.17449611704796553,0.09143902780488133,-0.2665385641157627,-0.4016021606512368,0.24290640838444233,-0.8462840183638036,-0.5049837199039757,0.8912072079256177,-0.4716888046823442,-0.9098370615392923,-0.8300980599597096,-0.12542652990669012,0.027330007404088974,0.9147728723473847,-0.7612993838265538,0.04302223073318601,-0.4411694328300655,-0.714344838168472,0.8447447693906724,0.7504745996557176,-0.3818271574564278,-0.9891009721904993,-0.8807329186238348,-0.9454141044989228,-0.6376888989470899,0.7407997809350491,0.010305064730346203,-0.8147711809724569,-0.84328986518085,0.032789258286356926,-0.49981651175767183,-0.598343257792294,-0.6407395908609033,0.3939747433178127,0.5252348626963794,-0.650154379196465,0.09988965466618538,0.42760463478043675,0.35298790922388434,-0.727204130962491,-0.19630057644098997,-0.9835854722186923,0.02902736561372876,-0.9528243844397366,0.6718919901177287,0.9713324005715549,0.6645762315019965,0.14187878649681807,0.38040670147165656,0.8355344058945775,-0.13694256637245417,0.47654957650229335,-0.8790250471793115,-0.79674739157781,-0.8395216129720211,0.9913192023523152,0.9656239757314324,0.8359104669652879,-0.5694173844531178,-0.5449469140730798,0.791028892621398,0.05375606706365943,0.8338271887041628,-0.7283789301291108,0.6623122519813478,0.17830532556399703,0.16176594467833638,-0.05145615618675947,0.1785520096309483,-0.2397931362502277,-0.8877660371363163,0.6564813521690667,-0.3074237364344299,0.724458359181881,-0.3890305133536458,0.8506223885342479,0.33046776382252574,0.8068172098137438,0.8117813589051366,-0.8694746689870954,0.10503177717328072,0.6688884026370943,-0.8107663644477725,0.05026101926341653,-0.6233067610301077,-0.8813716201111674,-0.6714646802283823,-0.7809038576669991,-0.18822489911690354,-0.04901010263711214,0.1472361832857132,-0.22883527539670467,-0.5401287907734513,-0.863467438146472,-0.4193697012960911,-0.5700882817618549,0.4162032660096884,-0.6735803228802979,0.07486660778522491,0.6654652622528374,-0.04858673783019185,-0.8592264140024781,0.4738507899455726,-0.7100589550100267,0.14853737317025661,-0.4186470350250602,0.725350328721106,-0.3263421109877527,-0.24399170465767384,0.2313325358554721,-0.2783724535256624,0.8319083177484572,-0.5659954436123371,-0.884936859831214,-0.34594624396413565,0.6581401033326983,0.8786196960136294,0.7501856316812336,0.4072814891114831,0.48549755988642573,-0.7004032372497022,-0.11122667230665684,-0.23827768256887794,-0.7293069357983768,-0.7796878316439688,0.2688352884724736,-0.6023356998339295,0.04525553621351719,0.781336132902652,-0.5299493339844048,0.1297021508216858,0.8011788516305387,0.22335250861942768,-0.10666723782196641,0.9971553296782076,-0.28891114378347993,-0.967102630995214,0.9612041036598384,-0.4348312793299556,0.11314375000074506,0.776479315944016,-0.3341065379790962,0.9203281700611115,-0.07846293086186051,-0.2385493852198124,-0.8692536503076553,-0.6163739901967347,-0.37923592468723655,0.4042078126221895,-0.2523510088212788,0.989854805637151,0.36004157504066825,0.5711834789253771,0.40639812592417,-0.7767170420847833,-0.5126266656443477,0.32531498512253165,0.7929041082970798,0.001713127363473177,-0.1504583265632391,-0.7091676946729422,0.034931323025375605,-0.852357761003077,-0.9143498996272683,-0.9655633843503892,-0.690211049746722,0.1865730402059853,-0.8717544656246901,-0.23309814743697643,-0.024253785144537687,0.1686993041075766,0.36470946902409196,-0.19771796558052301,0.2844947436824441,-0.43241738621145487,0.26257712580263615,-0.06702987058088183,-0.8941658665426075,-0.5142240589484572,-0.30328732170164585,0.016512200701981783,0.7970090415328741,0.9197186958044767,-0.4080372522585094,-0.3569407807663083,-0.4853889252990484,0.5663412003777921,-0.7453770646825433,0.5347589929588139,-0.954683028627187,0.5800566449761391,-0.86077626561746,-0.17304549366235733,0.989329544827342,-0.5918712755665183,-0.6167453029192984,-0.7243081550113857,-0.7104281270876527,-0.20147987827658653,0.8335715918801725,-0.19699261663481593,-0.36408366821706295,-0.16785976802930236,0.4506602259352803,0.3884916636161506,0.18402555724605918,0.9156433092430234,0.6249185092747211,0.6026656837202609,-0.46727783838286996,-0.8234639363363385,-0.41466825688257813,-0.3804266806691885,-0.30740834353491664,0.18113287538290024,-0.34899119660258293,-0.007691624574363232,-0.6912447814829648,-0.17634196858853102,0.4448817493394017,0.09947884920984507,-0.20517398044466972,-0.8854407062754035,0.6184598482213914,-0.4484211220405996,-0.016986251808702946,-0.6957222251221538,-0.06745818816125393,-0.8935590498149395,0.08784280205145478,-0.6115338988602161,-0.8409039019607008,-0.5300510092638433,0.24132632138207555,-0.5861164187081158,0.7778085619211197,-0.13188156438991427,0.45094546396285295,-0.154505449347198,-0.3651841823011637,-0.9758001798763871,0.30974884144961834,0.2461299980059266,0.8620395925827324,0.020744267385452986,-0.2894155252724886,0.42556840740144253,0.3357086884789169,-0.47237210255116224,-0.12178240809589624,0.46687117079272866,-0.8788308524526656,0.9280432444065809,-0.6419440959580243,-0.007797619327902794,0.5316431312821805,0.41129959654062986,0.8967585936188698,-0.8795796311460435,-0.12108403164893389,-0.2661250038072467,0.018553817179054022,-0.6805903250351548,-0.618060995824635,0.49920541141182184,-0.6139488010667264,0.37138212844729424,0.8341583851724863,0.45500516472384334,0.7703325725160539,0.47179674403741956,-0.22878663195297122,0.9010757403448224,-0.4961945475079119,-0.17325145192444324,-0.45218115765601397,0.5772601757198572,-0.7501302738673985,-0.3994188862852752,-0.5502096014097333,0.8530885297805071,0.6847353880293667,-0.6003614254295826,0.4557798723690212,0.5507180434651673,0.9412549077533185,-0.16424024663865566,0.7193259550258517,-0.8211035151034594,0.9674205924384296,-0.8393071568571031,-0.9316115886904299,0.8275061785243452,-0.1525927558541298,-0.280571763869375,0.1521484567783773,0.760378219652921,0.456121695227921,0.7431129696778953,-0.6215648255310953,-0.06692050117999315,-0.4098495477810502,0.7616416653618217,0.7345479507930577,0.4625434409826994,0.9851447972469032,0.494472146499902,0.16570392111316323,-0.44283582363277674,-0.5301523404195905,0.429284930229187,-0.40848955791443586,-0.686211010441184,-0.43197145452722907,0.2274095630273223,0.5156493815593421,0.5282799205742776,0.6963187824003398,-0.2814058279618621,-0.03265630779787898,-0.4089527726173401,0.04084165534004569,0.3887085132300854,-0.2495754724368453,-0.7994028218090534,-0.1838924204930663,0.5568898697383702,0.35114588867872953,-0.7529365546070039,0.37729339906945825,0.40296864695847034,-0.9792743641883135,0.062321559991687536,0.8058475609868765,-0.2186767840757966,0.12790184607729316,-0.8380105425603688,-0.8964091641828418,0.3536529983393848,-0.7232566396705806,0.7218728316947818,0.3319058893248439,-0.9872484998777509,0.2021648702211678,-0.45304703433066607,0.653042437043041,-0.9152875784784555,-0.7930493913590908,0.42702942760661244,-0.18008297123014927,0.16300543770194054,0.918347536586225,-0.3926796792075038,-0.7179416208527982,-0.24385052267462015,-0.7098903255537152,0.5561544797383249,-0.9203406115993857,-0.8675201912410557,0.9645133339799941,0.7975681726820767,0.05958739388734102,-0.619187309872359,-0.7418054337613285,0.5969012603163719,0.7236546166241169,0.6604714645072818,0.6775120091624558,-0.6518216915428638,0.8460636446252465,-0.5118739223107696,0.2519844099879265,0.5132731916382909,-0.15009099105373025,0.6513776890933514,0.9952880698256195,0.9723445740528405,0.16440653940662742,0.23320989171043038,-0.8500280776061118,0.9802398956380785,0.14784142188727856,0.2161200037226081,-0.1346012088470161,-0.43169918470084667,-0.7330182115547359,-0.19260041322559118,-0.4578324621543288,-0.17109040264040232,-0.5483419583179057,0.254828255623579,0.6459987740963697,0.6410474511794746,-0.9264968843199313,-0.6541117154993117,0.6961123165674508,0.7329176091589034,-0.9162250738590956,0.31606184085831046,0.29068513587117195,0.01395635912194848,0.27625199034810066,0.7011293689720333,0.7039520177058876,0.9752879878506064,0.15727822110056877,0.5159668014384806,0.25691335275769234,-0.36698144813999534,-0.3611287376843393,-0.8880566991865635,0.3656005742959678,0.49018061766400933,0.7727985568344593,-0.36488357186317444,0.6207425952889025,-0.7355507230386138,-0.7431421508081257,-0.4322133115492761,-0.6019021514803171,0.012207675259560347,-0.3232273985631764,-0.1042308653704822,-0.0016005137003958225,0.3453877470456064,-0.4220951502211392,0.5356525951065123,-0.44969576597213745,0.44822245091199875,-0.00912553770467639,0.3578785117715597,0.3526281011290848,0.627745377831161,0.45866378815844655,-0.2627577963285148,0.9694588743150234,-0.9745694459415972,-0.4688222180120647,0.785762750543654,-0.011081784963607788,0.06774870306253433,-0.9881593538448215,0.24716476537287235,-0.4055004082620144,0.6462392108514905,-0.6877433592453599,-0.6438700803555548,0.12303621415048838,0.4112810497172177,-0.378301324788481,-0.8813369949348271,-0.6484116800129414,-0.0002001565881073475,-0.19613864878192544,-0.6121177636086941,0.2038468262180686,-0.3064527455717325,-0.9654223932884634,-0.007704381365329027,0.454519450198859,0.3701869356445968,-0.39796179300174117,0.7111403592862189,0.11082411324605346,-0.5069387047551572,0.00888531282544136,-0.28221052465960383,0.21969309728592634,-0.2788998573087156,0.651900929864496,0.8202398801222444,0.9854896906763315,0.8275753883644938,-0.9669590713456273,-0.12528033275157213,-0.11936282366514206,-0.07510771742090583,0.3266213950701058,-0.9864509450271726,-0.7625051760114729,-0.320209423545748,-0.09742006240412593,0.6665194346569479,-0.41832757042720914,-0.053569478914141655,0.9796744352206588,0.3740322031080723,-0.14588448079302907,-0.2928135576657951,-0.8661792259663343,0.815157919190824,-0.7989216488786042,-0.5086949523538351,-0.37814705120399594,-0.38759983284398913,0.7622199323959649,-0.4691591961309314,-0.8259349032305181,0.28978833789005876,-0.1521679013967514,-0.6035506934858859,-0.3588178106583655,-0.29200020944699645,0.008980285841971636,0.9313697582110763,0.1174433552660048,-0.7783854315057397,0.43461365858092904,0.41416032100096345,0.3048507198691368,0.5655327271670103,-0.34297960717231035,0.5775921158492565,0.551232629455626,0.37916608387604356,-0.983606047462672,0.6585525060072541,0.5241001956164837,-0.08704494452103972,-0.9960661004297435,-0.7943983874283731,0.45039969915524125,0.18575966404750943,0.20459046307951212,0.0012275734916329384,0.4577077468857169,-0.7719577332027256,-0.7988002332858741,-0.5375589379109442,0.7434883788228035,0.997444799169898,-0.4253918183967471,-0.9178655412979424,-0.7073765005916357,0.38166715716943145,-0.18701490154489875,0.9533528974279761,0.9615766927599907,-0.42280435329303145,0.5407103705219924,0.8241395149379969,0.42405711906030774,-0.1565610314719379,0.11480447091162205,-0.9230891913175583,-0.34655647398903966,-0.6170570966787636,-0.9013518262654543,-0.771438695024699,0.0034169782884418964,0.8510619816370308,0.8201787136495113,0.9923669071868062,-0.56574771925807,-0.3286033645272255,-0.3735924446955323,-0.42659269738942385,0.5847188252955675,-0.0425922074355185,0.3440135410055518,0.19751606695353985,0.5516050443984568,0.6892020851373672,-0.2516946950927377,0.034379771910607815,0.9625242408365011,-0.7183312592096627,0.4197352332994342,-0.23519934201613069,0.5559473945759237,0.15499658044427633,-0.8894703267142177,-0.6046928903087974,0.0922131766565144,0.8738694656640291,-0.8863958301953971,-0.4981132000684738,-0.62635856308043,-0.12274582963436842,-0.31747314473614097,0.31011355156078935,-0.861383703071624,0.14333949843421578,0.5343916574493051,-0.07874511834233999,-0.11332376906648278,0.3450493412092328,-0.7863264624029398,-0.608799512963742,-0.47820514300838113,0.23142209323123097,-0.9104351704008877,-0.5249356380663812,0.9688218468800187,-0.7423660433851182,0.9920180728659034,-0.573331143707037,-0.0129655497148633,0.6295291972346604,-0.8764484105631709,-0.35539331287145615,-0.11483014607802033,0.12478247238323092,-0.25162349734455347,0.5013182456605136,0.9271856900304556,-0.3338677827268839,0.1686596618965268,-0.2892795787192881,0.029065702576190233,0.7783780014142394,0.47606111830100417,0.8180016358383,0.4114381056278944,-0.8715148665942252,0.9420689339749515,-0.15439996030181646,-0.8626375640742481,0.7550214268267155,-0.5111584006808698,-0.008497083093971014,0.31916691176593304,-0.3467497699894011,-0.538842523470521,-0.09545554872602224,-0.27277011470869184,-0.47553799161687493,-0.0008206982165575027,0.5388107257895172,0.5970965339802206,-0.11193333473056555,-0.7391140768304467,0.02979226876050234,0.7297018207609653,0.6843350064009428,-0.27199393790215254,0.08423128025606275,-0.1378719755448401,0.7946148798801005,0.3489197292365134,-0.47274379385635257,-0.34325498901307583,0.3675698274746537,-0.1068169423379004,0.540268118493259,0.8046348318457603,0.7095033735968173,0.3608886618167162,0.3848782489076257,0.304371137637645,-0.3952476433478296,0.9948714640922844,-0.7020045383833349,-0.7501858468167484,-0.43355601700022817,0.31108580669388175,-0.9435231075622141,-0.1049771336838603,-0.71146757947281,0.7937189503572881,-0.3188353390432894,0.7840834963135421,-0.7124228090979159,-0.10756362322717905,0.7026508711278439,0.03457098174840212,0.4501219755038619,0.4460663013160229,-0.13916360260918736,0.4146589059382677,0.580406297929585,-0.2714606849476695,-0.5701766209676862,0.3617200143635273,0.7447752696461976,0.6278238329105079,-0.7866414259187877,0.07181972451508045,0.44642073893919587,-0.7973128049634397,0.6013319995254278,-0.6372957821004093,-0.33322594454512,0.27262705471366644,0.4725785027258098,0.28346282010897994,-0.7216541026718915,-0.6193128516897559,0.02274256106466055,-0.12133690202608705,-0.8677741568535566,-0.9788491525687277,0.2883838629350066,0.8985707215033472,-0.8094297675415874,0.18695145566016436,-0.037154745776206255,0.5029514357447624,0.09507467923685908,-0.12900898093357682,-0.36577922478318214,-0.38748864457011223,-0.1410578885115683,-0.9505619476549327,0.23102555656805634,0.8397926348261535,0.05315398285165429,-0.9953848500736058,0.8835478671826422,-0.5851812642067671,-0.5805043550208211,0.5753011521883309,0.42428142204880714,-0.1501009687781334,0.8887748094275594,0.20546116773039103,-0.3482828848063946,0.5209350949153304,-0.35886064264923334,-0.9145977469161153,0.5924877631478012,0.4051779950968921,0.36676777293905616,0.4434410878457129,0.7611638964153826,-0.7504992284812033,0.35060028033331037,0.5241815941408277,-0.5386516838334501,0.9768918086774647,0.26288710813969374,0.3733689421787858,0.9399473457597196,-0.839956141076982,-0.3049548021517694,0.030236297752708197,-0.14582301955670118,0.6714778561145067,0.19226540345698595,0.44670677138492465,0.43900628946721554,0.8335537491366267,-0.8306927527301013,0.8371907044202089,0.5613988004624844,0.6741545419208705,-0.5968971671536565,0.09765122970566154,-0.3952696449123323,-0.6637447173707187,-0.3799360333941877,0.6672269529663026,-0.3459583637304604,-0.04253502422943711,0.03792076604440808,0.36872032145038247,0.8363096034154296,-0.6024714568629861,-0.08897789334878325,0.41657569957897067,-0.6233538831584156,-0.1271073017269373,0.45033032167702913,-0.19969834154471755,-0.8750953143462539,0.1516155838035047,0.8137447810731828,0.32101809326559305,-0.16790855955332518,0.027811411768198013,0.738162171561271,-0.5976372924633324,0.5554253216832876,-0.7430203044787049,-0.3231033128686249,0.5021754293702543,0.8133575832471251,-0.1582495323382318,0.9484599782153964,-0.6518922173418105,0.47197508811950684,0.029503376223146915,-0.83740557404235,-0.31993669643998146,-0.9440935542806983,0.5607902845367789,0.1542137674987316,-0.7790534305386245,0.49497738666832447,0.4923265711404383,0.472844869364053,-0.09725325182080269,-0.9872637623921037,-0.6512776017189026,-0.0917282891459763,0.2681881352327764,-0.9244807818904519,0.4004379431717098,-0.928055927157402,-0.9211053089238703,-0.18291331036016345,-0.7669449378736317,0.10850215656682849,-0.15836699027568102,-0.5530560165643692,-0.6387583115138113,0.20044270856305957,0.0445336471311748,0.5836679534986615,0.995255053974688,0.3097855527885258,-0.36534421890974045,0.18118457775563002,0.922261054161936,0.22658516094088554,0.5560902720317245,-0.7730069761164486,-0.3793264124542475,-0.5942608579061925,-0.813428370282054,0.90740289632231,0.7119258954189718,-0.8808863647282124,-0.45723752630874515,0.7665488850325346,-0.014315717853605747,-0.12313736695796251,-0.3729722532443702,-0.2024576156400144,0.7869746000505984,0.2965877326205373,0.24927762243896723,-0.6547641875222325,0.3801532629877329,0.3209459618665278,-0.5360024473629892,-0.10338425962254405,0.3613516469486058,-0.5781496553681791,0.09915303392335773,-0.04391986411064863,-0.3821592521853745,0.589780465234071,0.2556710196658969,0.06756484787911177,-0.47375342482700944,0.08571880497038364,0.43105771159753203,-0.7326544313691556,-0.33024834794923663,-0.73264743341133,-0.12064671376720071,0.15159024856984615,0.2658438072539866,-0.6923934943042696,-0.6605827226303518,-0.5705794119276106,0.8868244085460901,0.8099372172728181,0.1566779869608581,0.9269090034067631,-0.0470596426166594,0.3053952222689986,0.6318429061211646,-0.6040908773429692,0.9345481265336275,0.5234463638626039,0.6177663393318653,-0.06804622383788228,-0.883544045034796,0.48703499464318156,-0.4724283954128623,0.23812883906066418,-0.27120462572202086,-0.440781878773123,0.7996798139065504,0.15762476809322834,-0.7381080482155085,-0.742153690662235,0.9436632455326617,0.2079087500460446,0.437389116268605,-0.8237609877251089,-0.5915474146604538,-0.29905546782538295,-0.018357208464294672,-0.9133144170045853,-0.0569391087628901,0.8534999219700694,-0.8581080236472189,-0.8635873035527766,0.779538091737777,-0.7747967462055385,-0.09631442045792937,0.43650116492062807,-0.0351632796227932,-0.47379135387018323,0.8688996350392699,0.5346166514791548,0.6640115738846362,-0.9703888134099543,-0.5206965678371489,-0.7209381028078496,-0.7138069244101644,0.6824113605543971,-0.4159202976152301,0.18237755773589015,0.9182949126698077,-0.394959410186857,0.09399688756093383,0.16663136519491673,0.6525599397718906,-0.6871531917713583,-0.3731700503267348,-0.9704543971456587,-0.05979578476399183,-0.7030951920896769,-0.4306351328268647,-0.4105412461794913,-0.9503432782366872,0.3172265887260437,0.46833934634923935,0.7355552376247942,0.4520902317017317,0.20948735624551773,-0.9803756065666676,-0.2837217473424971,0.9990488197654486,0.04596993327140808,-0.883210580330342,0.12199693685397506,0.006324079819023609,0.8547888617031276,-0.5441331323236227,0.43795114988461137,-0.336494795512408,0.9167159763164818,0.46517400769516826,-0.954813914373517,-0.02804513741284609,0.8487270423211157,-0.4777630581520498,0.30350980954244733,0.011126909404993057,-0.4990764893591404,-0.8050451981835067,-0.7375411340035498,0.9906222335994244,-0.6511149383150041,-0.9709232421591878,0.5606765137054026,-0.6505528138950467,-0.6080195200629532,0.9524380350485444,0.9070585980080068,-0.8719004364684224,-0.8129810662940145,0.5437440741807222,-0.606404778547585,0.9272940447553992,0.49780820729210973,-0.10451345099136233,-0.35588466562330723,-0.4229400693438947,0.4374052518978715,0.97256727097556,-0.6553790769539773,0.0541724250651896,-0.6864566490985453,0.06315299915149808,0.4722471167333424,0.3820919767022133,0.8569261101074517,-0.6689238995313644,0.5004053106531501,-0.9748470173217356,-0.6245170631445944,-0.08793023647740483,-0.49260039953514934,0.9447463802061975,0.28509194403886795,0.8049267241731286,-0.2232619388960302,-0.49855050444602966,-0.1978357401676476,-0.8499834220856428,0.8957610824145377,-0.674631517380476,-0.5644421582110226,0.8037134306505322,-0.25003718258813024,0.06488623097538948,0.726384102832526,-0.3339865682646632,0.35549011221155524,0.7530073570087552,-0.8642976977862418,-0.04942975798621774,-0.5596233052201569,-0.5092767868191004,-0.09267318481579423,-0.700398740824312,0.2484129648655653,-0.21695371344685555,-0.058894559275358915,0.585186239797622,0.9618254727683961,0.4526874842122197,-0.6709281988441944,0.42949159489944577,-0.6338439122773707,-0.15248289657756686,0.8274340983480215,0.3183173476718366,-0.7019710103049874,0.30708211939781904,-0.5143765639513731,-0.43133927416056395,0.4443742944858968,0.013966396450996399,-0.10108107188716531,-0.6270124493166804,-0.2133732964284718,0.039228446781635284,-0.8881888836622238,0.4343222235329449,-0.7877001520246267,0.42373891547322273,0.10052566416561604,0.20079346653074026,0.47671950282528996,-0.856877600774169,0.9193554394878447,0.010534011758863926,0.6045490982942283,0.26934767654165626,-0.9349847198463976,-0.2154289004392922,-0.11992050940170884,-0.024938391521573067,-0.8686430552043021,0.34632480796426535,0.05411369353532791,0.5289491075091064,0.27699295803904533,-0.889588228892535,-0.44256943045184016,-0.3037057896144688,0.503846263512969,-0.5327237593010068,-0.8285029316321015,-0.10594783956184983,-0.2278155330568552,0.6279483265243471,-0.3203739868476987,0.358952013310045,-0.22160177864134312,0.31219572434201837,-0.041370322462171316,0.2077867705374956,-0.7404685020446777,0.9759336449205875,0.42524676164612174,-0.9142376086674631,-0.9281149264425039,0.7200335208326578,-0.008822363801300526,0.9884143606759608,0.7541877897456288,-0.17256516264751554,-0.7736529805697501,0.5713339662179351,-0.5834167627617717,0.6771355047821999,-0.5896945293061435,0.05310743674635887,-0.01685836212709546,0.5775014725513756,-0.5702271857298911,0.06388633837923408,-0.16149267693981528,-0.36983957467600703,-0.6008967468515038,-0.9333919989876449,-0.47757174307480454,0.9142493330873549,0.5598790151998401,0.015118555631488562,0.2810836089774966,0.09143696865066886,-0.40686304215341806,-0.6167322448454797,0.9539075563661754,-0.09512232709676027,-0.31230174330994487,0.47487415559589863,-0.2724000159651041,0.31509431172162294,-0.8803150318562984,-0.7903457996435463,0.5242557777091861,0.4598058005794883,-0.9864028310403228,0.4475442925468087,-0.9794127959758043,0.04315618937835097,-0.16317946603521705,-0.8753676479682326,-0.5414553307928145,0.6601059031672776,0.7616290277801454,0.1446595792658627,0.9582449938170612,-0.05997753422707319,-0.2879740954376757,-0.9390477873384953,0.38510541152209044,0.6836841595359147,-0.5060239569284022,-0.1852399562485516,-0.8461545249447227,-0.6930430750362575,0.6136604365892708,0.41952995024621487,-0.04264209605753422,0.4238115129992366,-0.7875395156443119,0.8590812990441918,0.11587165296077728,0.4397391201928258,0.8237946615554392,-0.11433429643511772,0.12315631425008178,-0.5341553632169962,-0.17195751052349806,0.05145489610731602,0.7032983461394906,-0.7987701627425849,0.023944987915456295,-0.005776791367679834,0.2478200327605009,-0.6616724710911512,0.13129878463223577,-0.3986569312401116,0.8429810875095427,0.6860971814021468,-0.039597081020474434,0.10880630044266582,0.2885573925450444,0.8160059945657849,0.09728293912485242,-0.7176960674114525,0.7528094346635044,-0.5426038824953139,0.7570729698054492,-0.6144653731025755,0.353883957490325,-0.28370277443900704,0.7281033550389111,0.25062921131029725,0.894708645530045,0.7150827678851783,-0.12982635386288166,-0.1900386638008058,0.15977175766602159,0.09533395245671272,0.7840288453735411,0.9756014887243509,-0.8343645720742643,-0.37142141116783023,-0.7945849848911166,0.9303416148759425,0.2781450655311346,0.803735907189548,0.6795920068398118,0.5130708916112781,0.5287458589300513,0.030769865959882736,-0.5115387672558427,-0.7337940777651966,0.21978564700111747,0.12419900484383106,0.8469341597519815,0.31803666427731514,-0.7899689660407603,0.701675299089402,0.9357458776794374,-0.6264614844694734,0.8116112872958183,0.3892255434766412,-0.3432051744312048,0.5649815611541271,-0.819157911464572,0.1793187651783228,0.5892916484735906,-0.6691255350597203,-0.24754981603473425,-0.7867105193436146,-0.8630329333245754,0.6559965298511088,-0.04228578694164753,-0.4516647425480187,0.7208119775168598,-0.19711151020601392,0.3189039006829262,0.7615719041787088,-0.6149584762752056,-0.30510862404480577,0.35453944746404886,0.789708205498755,0.23039021342992783,0.26194215659052134,0.9723665658384562,0.2776885158382356,0.04885130561888218,-0.9969373098574579,0.3569489582441747,0.5414964975789189,0.2724170442670584,0.30809645215049386,0.21649267245084047,-0.5384368100203574,-0.3960071448236704,-0.5212926627136767,0.8510786211118102,-0.2912769583053887,0.7261676196940243,-0.7789247748441994,-0.7569897552020848,-0.5712474267929792,0.4076515082269907,0.3603566368110478,0.44291318114846945,-0.3243586258031428,-0.7551481602713466,-0.8388188732787967,0.18222793517634273,0.4660320938564837,0.38059874298051,0.26459409203380346,0.401470058131963,0.6628085155971348,0.8601111206226051,0.8461358309723437,-0.20263796113431454,0.08271939726546407,0.4328044676221907,-0.5645701950415969,-0.1639628680422902,-0.8396188970655203,0.33464699471369386,-0.7820344232022762,0.06568998424336314,-0.7091902322135866,0.3836072199046612,0.6784562007524073,-0.11326401447877288,0.9125270578078926,0.3575337417423725,0.10308215813711286,-0.48022645618766546,0.8651644391939044,0.4776449385099113,0.8861727556213737,0.707718025892973,0.45279419841244817,0.3969056308269501,0.4174088598228991,0.7246684595011175,0.4712735852226615,-0.06368901534006,0.25712795415893197,0.7118920050561428,0.2846888559870422,-0.23313705623149872,0.46343974163755774,-0.8132940004579723,-0.9647668907418847,0.48831016570329666,-0.6111518032848835,0.39841121388599277,0.4385443078354001,-0.945634052157402,0.6920335115864873,-0.947632446885109,0.14254218712449074,0.1664760261774063,0.9826498380862176,-0.06994488649070263,-0.8788141645491123,0.7443087827414274,-0.5304051828570664,-0.837777475360781,0.05909203365445137,-0.7801997913047671,-0.31351384008303285,0.644509740639478,0.3261643829755485,-0.3760270494967699,-0.11496551986783743,-0.22215645760297775,0.7693756404332817,-0.11249615205451846,-0.6786844655871391,-0.05847442941740155,0.20756121631711721,0.13759565446525812,-0.9994276096113026,0.37534633930772543,0.344976753462106,0.1820037360303104,0.8597894762642682,-0.24062850885093212,0.061551172751933336,-0.8073245785199106,-0.6412613112479448,-0.05262235924601555,-0.23739312682300806,-0.3879033266566694,0.6457278956659138,0.28762092161923647,0.715472768060863,0.9069859427399933,0.2768438123166561,-0.06033626291900873,-0.4877715711481869,0.0589860868640244,0.9914561570622027,0.4239271148107946,0.9914693757891655,-0.5285061760805547,-0.004543463699519634,0.9647692702710629,-0.4627118385396898,-0.21144785545766354,0.29552070796489716,-0.859258065931499,0.6444782675243914,-0.07959156623110175,0.553086266387254,0.9615939245559275,-0.010050380602478981,0.8650517733767629,0.46278243185952306,0.270695720333606,0.5322991041466594,-0.46698238980025053,-0.49156408198177814,-0.3175181900151074,0.5065380204468966,-0.7915961053222418,0.6791453789919615,-0.6764589450322092,0.9806948606856167,0.2469740929082036,0.6416237321682274,-0.6146332919597626,-0.2699974812567234,0.8985114567913115,-0.5834607272408903,0.410330583807081,-0.783938255161047,0.6395740369334817,0.2556987628340721,-0.5758083537220955,0.6744489772245288,0.9637896632775664,-0.3350370111875236,0.12229473609477282,-0.14729110896587372,0.20791445625945926,0.40765948640182614,0.6812422028742731,0.9365310180000961,0.82967548398301,0.6301662852056324,-0.5363894170150161,-0.055953378323465586,-0.022251888643950224,0.715587520506233,0.8550874935463071,-0.030976061709225178,-0.5148604023270309,-0.46567196724936366,0.5779370511882007,-0.0009835357777774334,-0.17608326207846403,0.6542819049209356,-0.025014137849211693,-0.9317436679266393,-0.21698857238516212,-0.5677942968904972,-0.2859178399667144,0.5583781851455569,-0.5002320115454495,0.9091443275101483,-0.5362735092639923,-0.7749239662662148,0.5334268948063254,-0.49933309108018875,0.417962777428329,-0.9610642795450985,0.21144242258742452,0.659934057854116,-0.4734850595705211,0.41689940774813294,0.08013384277001023,-0.8598548821173608,0.6219239700585604,-0.6733972765505314,0.5238083810545504,-0.8137371242046356,-0.6543334778398275,0.4525559307076037,-0.5864934488199651,-0.018324084114283323,0.2502347072586417,0.19471973460167646,-0.2762001804076135,-0.08660550648346543,-0.45626239012926817,-0.9568078797310591,-0.8991060266271234,0.1214715582318604,0.20707116508856416,-0.6740334890782833,-0.8393269795924425,0.9629406686872244,-0.803838599473238,-0.666816052980721,0.8211650522425771,0.3816819894127548,-0.7866108496673405,-0.3429836258292198,-0.09633027901872993,0.8229029541835189,-0.5377304018475115,-0.6409212942235172,0.6407481851056218,-0.07624142244458199,-0.09738112660124898,-0.7176555963233113,0.7848692634142935,-0.10928926151245832,0.8191874627955258,-0.9775503436103463,0.9443995077162981,0.04528079368174076,0.1481990902684629,0.20031939400359988,0.2545872922055423,0.9551352127455175,0.5547044617123902,0.14233002997934818,0.5075204549357295,-0.2541053774766624,0.11377490777522326,0.016429629642516375,-0.0014564273878932,-0.6492851977236569,-0.5571063063107431,-0.06732120644301176,0.7631861669942737,-0.4177296310663223,0.4131006859242916,-0.72581319604069,-0.2633519982919097,0.5660731391981244,0.21844571828842163,-0.20047486992552876,0.017254621721804142,-0.4011135841719806,-0.1505904970690608,-0.4735304689966142,0.2951636794023216,0.9211390372365713,-0.6060671955347061,0.3183580464683473,-0.29018462635576725,0.99397714715451,0.15223219292238355,0.7466352549381554,-0.9550444851629436,-0.7113878838717937,-0.6251545967534184,0.6687597148120403,-0.12475383887067437,-0.6527298982255161,-0.7276410195045173,0.3651207168586552,-0.26431583566591144,0.4978540623560548,-0.760037305764854,0.7121620485559106,-0.14048077771440148,-0.10263987770304084,0.7178812315687537,0.05654333811253309,-0.8812606772407889,-0.8793643075041473,0.3586688810028136,-0.3020428162999451,0.6651568454690278,0.23551900358870625,0.3502997402101755,-0.8340059872716665,-0.9195742229931056,-0.715474458411336,-0.47053344920277596,0.6354219359345734,0.929391136392951,0.33912622509524226,-0.054443372413516045,0.4616097528487444,-0.3067906708456576,-0.703434010501951,-0.7515738550573587,0.011469865217804909,0.5539709832519293,0.34085192903876305,0.2878514206968248,-0.05799574311822653,-0.7404336696490645,-0.11313472967594862,-0.2125350460410118,0.5233360910788178,0.6433991095982492,-0.3068661908619106,0.5202506105415523,-0.4467360032722354,-0.1570792025886476,-0.23056332068517804,0.8865413866005838,0.857365935575217,0.4712373046204448,-0.6626481716521084,0.9999041208066046,-0.09536918392404914,-0.16959563409909606,-0.8793031037785113,0.6030475669540465,-0.5776760051958263,0.5769199305213988,0.2202622522599995,-0.34907359443604946,0.2685660170391202,0.9870077986270189,0.38238280545920134,0.32780655613169074,0.12664349237456918,0.7969688000157475,0.07063894206658006,-0.4193716221489012,-0.21754077496007085,0.004451534245163202,0.6552292620763183,-0.7521102614700794,0.6852485211566091,0.19827375607565045,0.22560792788863182,-0.7224998138844967,0.5040112626738846,-0.46865634014829993,-0.3071753070689738,0.13882652623578906,-0.11369112972170115,0.8608550722710788,-0.3848944315686822,0.40475680911913514,-0.5296737495809793,-0.33057439513504505,0.26420358708128333,0.9715448748320341,0.6958426595665514,-0.8147627585567534,-0.34680504351854324,0.6930382614955306,0.6130047705955803,-0.7415913566946983,0.878826230764389,0.9634590190835297,-0.47797197196632624,-0.8497991790063679,0.704368173610419,-0.1498600379563868,-0.17010978749021888,-0.3617914547212422,-0.6876796367578208,0.6943706306628883,-0.07770760217681527,-0.1011894391849637,-0.7236249763518572,0.6321226307190955,-0.9571942356415093,-0.0792507017031312,0.245748161803931,-0.5884750625118613,0.7602184033021331,-0.6833772226236761,-0.2779222377575934,-0.40787144284695387,0.6404778845608234,-0.2766274926252663,-0.9478338588960469,0.7195792230777442,-0.1669567981734872,-0.9176046773791313,0.04249540902674198,0.21109755244106054,-0.9805822800844908,0.36812318535521626,0.44343532901257277,0.816837499383837,-0.8622394124977291,-0.6766869109123945,0.94043327588588,0.010019390843808651,-0.09831328596919775,0.8614977146498859,0.615357129368931,-0.2605530917644501,0.1662641461007297,0.9861317411996424,0.07303412165492773,-0.7481415811926126,-0.5072909365408123,-0.5791178718209267,0.6350570279173553,-0.978018565569073,-0.9364723595790565,-0.11616707732900977,0.8193665947765112,-0.01887724455446005,-0.7287955270148814,0.9591444046236575,0.6619404582306743,0.17856586771085858,-0.5353041761554778,0.6665239986032248,0.6219081664457917,0.23296021996065974,0.7948530516587198,-0.04586772574111819,0.8568021594546735,0.3925545886158943,-0.9269658252596855,0.21770374802872539,-0.5711660161614418,0.07715161563828588,0.48936707247048616,-0.9012830727733672,-0.04484714986756444,-0.6949742222204804,0.539185790810734,0.44099458819255233,0.5574296358972788,-0.1840379275381565,-0.9570488105528057,-0.2068745344877243,-0.08200070867314935,-0.6764470529742539,-0.7824263065122068,0.182831808924675,0.6481741056777537,0.6348403305746615,-0.30295072542503476,-0.698874453548342,0.8360052676871419,-0.41610169876366854,-0.5247720065526664,0.47281734785065055,-0.4682143609970808,0.8986245859414339,0.5224776761606336,0.25715399580076337,0.2557356944307685,0.30293394392356277,0.627851361874491,0.5673817466013134,0.668266802560538,-0.4023896064609289,-0.2576765241101384,-0.4306054348126054,0.8995244591496885,-0.6861990862526,0.10546044213697314,-0.9154031332582235,0.1799261150881648,-0.18294945172965527,0.5864036725834012,0.07375586591660976,-0.19756737258285284,-0.46385296853259206,0.9135599574074149,-0.05529083777219057,-0.7857056288048625,-0.22628666972741485,0.9687881674617529,0.10317393485456705,0.9524292508140206,0.7281942833214998,0.7441162709146738,-0.2569335740990937,0.05920606479048729,-0.8300199573859572,-0.2966350242495537,0.5183628001250327,0.8045662045478821,-0.4148721811361611,0.6886949073523283,0.9502015821635723,0.4061352447606623,0.48305319575592875,0.9908564300276339,0.9302945421077311,0.5324733001179993,-0.8434133380651474,0.9943171855993569,-0.3229149407707155,0.5273608504794538,-0.6935430709272623,0.20649435091763735,0.4237986453808844,0.7441735472530127,0.7690029502846301,0.27423396753147244,-0.5936422008089721,-0.36572951963171363,0.9694959856569767,0.18003342347219586,-0.20831106789410114,0.7350716111250222,0.4753622617572546,0.40901653887704015,0.9224736257456243,0.7323119267821312,-0.2605358543805778,-0.15193996857851744,0.9498483035713434,-0.0748917362652719,-0.24155426397919655,-0.25000615837052464,0.8580123209394515,-0.744944694917649,-0.39686068752780557,0.8620677478611469,-0.1746377805247903,-0.014193935319781303,-0.8788740667514503,0.4332194565795362,-0.6924399407580495,-0.759341852273792,-0.15660179825499654,0.7794367726892233,0.6584010845981538,0.12459840765222907,-0.8940089270472527,0.36428554728627205,0.12716893153265119,-0.571921169757843,-0.5278189880773425,-0.442389742936939,-0.780561150982976,0.5778016224503517,0.5069770775735378,0.2679309160448611,-0.9624692015349865,0.3079961850307882,-0.49953031074255705,0.8189497282728553,0.3380470462143421,-0.20725385006517172,0.5297394953668118,-0.04996668267995119,-0.01917600817978382,-0.18350650137290359,0.11029772460460663,-0.6077620517462492,0.9704836439341307,-0.6669120346195996,0.07804267900064588,-0.20437684562057257,-0.3262809566222131,-0.1577222002670169,0.6266097421757877,-0.40921427216380835,0.5747028281912208,0.9261880056001246,0.6740852654911578,-0.6657377211377025,0.7081305496394634,0.7631089487113059,-0.16703024925664067,-0.359710737131536,-0.5819241283461452,0.5078647085465491,0.6116075636819005,0.6346028144471347,-0.6894385018385947,-0.5609006923623383,0.09849190339446068,0.2541630854830146,0.6208521518856287,-0.056236672680824995,0.8764577005058527,-0.901464223396033,0.33881554333493114,0.5075853853486478,0.1777664008550346,0.4108911082148552,0.6615748046897352,-0.6718414211645722,0.3802283019758761,-0.19204422924667597,-0.15028176503255963,-0.5241324631497264,-0.9522606981918216,0.7133039850741625,0.04495896026492119,-0.8656366476789117,0.07701164670288563,-0.7616519648581743,-0.21187559934332967,-0.2464075032621622,-0.3631444564089179,0.60237642750144,0.20575158204883337,-0.9199483920820057,-0.44327291566878557,0.8319186400622129,-0.8454522644169629,0.8791508157737553,0.44916425412520766,-0.8296995325945318,-0.9382319413125515,0.7222004649229348,0.9030000558122993,0.7108752676285803,0.31705471500754356,0.27966773696243763,-0.030987621750682592,-0.11779011460021138,-0.19624548917636275,-0.006403587758541107,0.5421074372716248,-0.2114364537410438,0.3464121879078448,-0.638556344434619,-0.7376815234310925,-0.43508145213127136,-0.8857037369161844,0.17442910093814135,0.33368895575404167,-0.9171810089610517,0.8842382784932852,-0.22932090610265732,-0.9423255445435643,-0.35647789761424065,-0.00960939796641469,0.42821917636319995,0.2787994616664946,-0.8570960615761578,0.6882994482293725,0.9538193768821657,0.3966751298867166,-0.7706703343428671,-0.4710276466794312,-0.11910960776731372,-0.9211019440554082,-0.7647994793951511,-0.5337414303794503,0.4079534690827131,-0.14760143496096134,-0.3277574246749282,-0.7118225386366248,-0.13333768537268043,0.9270828068256378,0.3686783784069121,-0.6968368529342115,0.32469224371016026,0.7576128439977765,0.14519678754732013,0.03961948724463582,0.9603641903959215,-0.19495383743196726,-0.7904249494895339,0.0018163942731916904,-0.6759640136733651,0.5386063163168728,-0.20738099934533238,-0.9441620036959648,-0.6051529804244637,0.9335013553500175,-0.2659676135517657,0.23043398605659604,-0.6041839919053018,0.45238452684134245,0.9336294578388333,0.5772236222401261,0.9525241116061807,-0.6768842171877623,0.9688823134638369,-0.05377275589853525,-0.5344101777300239,0.5998949408531189,0.34005782241001725,-0.044586480129510164,-0.837936352007091,0.3816631902009249,0.7755773700773716,-0.10743349837139249,0.04008323699235916,-0.5850619659759104,-0.06258455337956548,0.7865315196104348,-0.17731198901310563,0.9747179877012968,-0.09571912186220288,-0.5004585897549987,0.8885142435319722,-0.019976839423179626,-0.9877748237922788,-0.20458906143903732,-0.4076474104076624,0.5453965216875076,-0.28834114968776703,0.012862661387771368,0.2644918533042073,0.6855634525418282,-0.6255350350402296,0.02887147944420576,0.8228690503165126,-0.022150745149701834,0.786570689175278,0.5419228686951101,0.9898225329816341,0.9654693142510951,0.6552114160731435,0.8509560110978782,0.24913414660841227,-0.3900729576125741,0.7682528807781637,-0.5556337707675993,0.018767904490232468,-0.5091567854396999,-0.914752583950758,0.6968613271601498,-0.028158181346952915,0.7093517342582345,0.8304901286028326,-0.19523601746186614,0.17361213779076934,-0.06109346682205796,-0.11954166274517775,0.3808736903592944,-0.6896287142299116,0.06596662616357207,-0.8692316813394427,0.30070982640609145,0.8289263364858925,-0.38034207047894597,0.5645036166533828,-0.7723491392098367,0.01192469336092472,-0.5702317566610873,-0.6286139031872153,0.15494214603677392,0.4972220244817436,0.05353084672242403,-0.39370254101231694,-0.8650581776164472,0.868857245426625,0.7959142057225108,0.1846533240750432,0.2889797454699874,0.746842963155359,-0.39823626447468996,-0.8749393634498119,-0.2769682458601892,0.7296987283043563,0.0182854812592268,-0.30244120955467224,0.8705190657638013,-0.7559153796173632,-0.4396663918159902,0.8619072744622827,-0.8765628435648978,-0.8284626151435077,0.07552025141194463,-0.07242164947092533,0.29158168099820614,-0.17157449899241328,-0.3609906788915396,-0.13509251503273845,0.7866545156575739,0.10003281198441982,0.8447082852944732,0.35558651201426983,-0.3764747236855328,0.5796430166810751,0.1476534861139953,-0.012352293822914362,-0.08867221232503653,-0.6798532158136368,0.821494054980576,-0.9772440106607974,0.4932892653159797,0.6051073572598398,-0.8842133614234626,-0.3244066508486867,-0.11724992841482162,0.9258393836207688,0.45958819007501006,-0.5412814454175532,0.8380665895529091,-0.326187573838979,0.7195004322566092,0.297749356366694,-0.20358139323070645,0.7878121645189822,0.7287165080197155,0.16657612472772598,0.47933373088017106,0.8653187020681798,0.6766127683222294,-0.35094322031363845,0.19823600072413683,0.11485745757818222,0.8355266754515469,0.8874132172204554,-0.8068915978074074,-0.2413898310624063,-0.07818461395800114,0.34141899598762393,0.9108108961954713,0.1878454377874732,0.49294423731043935,-0.0873925918713212,-0.44243681197986007,0.2565654767677188,-0.15790466405451298,-0.8449711636640131,-0.5362156862393022,-0.8175654211081564,-0.6690370948053896,-0.11182119976729155,0.893829055596143,-0.8261891710571945,0.6146871219389141,0.11951950145885348,0.5736081679351628,0.9036617986857891,0.9447196046821773,-0.6467322232201695,-0.3368390421383083,0.32793153123930097,-0.8564460091292858,0.4885383816435933,-0.4866972849704325,-0.34225066052749753,-0.6166664795018733,0.877108093816787,0.9736708849668503,0.0910762413404882,0.0413995822891593,-0.8991616913117468,-0.7313434733077884,0.2200614712201059,0.6604894618503749,-0.12369185918942094,-0.3826757478527725,-0.8201167089864612,-0.28621473629027605,-0.3392464495263994,-0.9517846242524683,-0.9817380751483142,-0.4585029357112944,0.06192876910790801,-0.28315160144120455,-0.7220803815871477,-0.6003394704312086,-0.3679353934712708,-0.0342069361358881,0.4524578875862062,-0.60896254517138,0.8043829724192619,0.2060829047113657,-0.5773345278576016,0.9281767476350069,-0.829599698074162,0.3861617995426059,0.34233235055580735,0.9267768152058125,-0.46232975274324417,-0.9400600357912481,-0.1420823554508388,0.0936833368614316,-0.7216095509938896,0.3866426534950733,-0.3430935014039278,0.8173745810054243,0.9780290517956018,0.4578541540540755,-0.35995645681396127,0.5370650249533355,-0.862138997297734,0.2753337062895298,0.46226030215620995,0.6669737566262484,0.8576421388424933,-0.5094687365926802,0.3602094347588718,-0.21265842812135816,-0.18956784717738628,-0.9133686902932823,-0.2582457587122917,0.08619237784296274,0.6735099572688341,-0.5054002772085369,0.7550817430019379,0.7367003322578967,0.26605061488226056,0.8520324709825218,0.12291601533070207,0.8308977424167097,0.2019967958331108,-0.32719416124746203,-0.10166853154078126,0.00011412426829338074,0.2852604486979544,-0.9861066350713372,0.4893760373815894,-0.15273835510015488,-0.163400168530643,0.06801961595192552,-0.9425243041478097,0.49211842147633433,-0.7022718256339431,-0.5878692758269608,0.220938331913203,0.5425214134156704,0.2978941947221756,-0.9812554041855037,-0.8626068937592208,0.3853261531330645,-0.8402800303883851,-0.9895818089134991,-0.7983061266131699,0.4274169127456844,-0.9947354053147137,0.9780774028040469,0.6423251712694764,0.09469843050464988,-0.5778128099627793,0.2652466590516269,-0.008816392626613379,-0.2177370460703969,0.04691516421735287,-0.875192541629076,0.7497298493981361,-0.16873523825779557,0.4775821906514466,-0.6304335268214345,0.23154638707637787,-0.6142032956704497,-0.5996850514784455,0.6720205848105252,0.4595056725665927,-0.43191006453707814,-0.23815419618040323,0.555096039082855,0.5183512698858976,0.15254226559773088,-0.3502820646390319,-0.43784838542342186,-0.5433952612802386,-0.6798279066570103,-0.7623099507763982,0.39833081513643265,-0.19276500074192882,0.3838185667991638,0.01713294582441449,0.7688070526346564,0.377938321325928,-0.1423853631131351,-0.5199942453764379,-0.25822252966463566,0.2862365236505866,-0.10772081790491939,-0.561736005358398,0.0979913235642016,0.38579441979527473,-0.7222482329234481,0.3309871582314372,0.6835366976447403,0.8723567025735974,-0.14426587475463748,0.8256259220652282,0.4017055155709386,0.2623635409399867,-0.7544993562623858,-0.631839512847364,0.8534528063610196,0.607054605614394,-0.3687180383130908,0.5903347986750305,-0.5883795544505119,0.001232953742146492,-0.32234779139980674,0.7468407503329217,0.17011175071820617,-0.29788263607770205,0.1660390836186707,-0.8362489244900644,-0.2987835993990302,-0.16525449743494391,-0.3319018087349832,0.20746753457933664,0.17123023001477122,0.5125196911394596,0.01786056626588106,-0.05223634513095021,-0.7653938722796738,0.6833533495664597,-0.2872105985879898,0.368596532382071,0.49699978111311793,-0.277317238971591,-0.9284725254401565,-0.6847352823242545,0.7893321011215448,-0.8842919208109379,0.6949761328287423,-0.26061237463727593,-0.3052800456061959,-0.5037291226908565,-0.10577422520145774,-0.000287830363959074,-0.3565169353969395,0.6226249933242798,-0.586751967202872,0.696703674737364,-0.06158677348867059,-0.8145442917011678,0.4308064761571586,-0.01690703397616744,-0.7634793077595532,0.8328817524015903,0.19679820397868752,-0.1653804830275476,-0.26368706580251455,-0.9437387683428824,0.6531034125946462,-0.9582101562991738,0.42872308753430843,0.4559343196451664,-0.15579027589410543,0.7854040847159922,0.15429399022832513,0.5341379209421575,-0.03194148698821664,-0.3290442796424031,0.31189222168177366,0.0936989625915885,0.5332832266576588,-0.7815879783593118,-0.5305570657365024,-0.140390336047858,-0.7842304995283484,0.078941042535007,-0.6667566341347992,-0.9102972582913935,-0.8964975466951728,-0.48184133553877473,-0.45754929166287184,-0.34866262413561344,0.274059702642262,-0.3675993657670915,-0.3531011138111353,-0.890103836543858,-0.08250971278175712,-0.4684434006921947,0.5346033442765474,-0.1705607515759766,0.6143338177353144,-0.7811105754226446,-0.7908527925610542,0.3025752743706107,0.8466220125555992,-0.34151691012084484,0.5300226141698658,0.32534374576061964,0.010221028700470924,-0.5507711693644524,-0.7687661461532116,-0.9497245606034994,-0.6768382200971246,0.22898761928081512,-0.18332370975986123,-0.5719713987782598,0.06219951994717121,0.566462186165154,-0.8334589242003858,-0.22679984336718917,0.4976025396026671,-0.8880068082362413,0.6779039055109024,-0.051041926722973585,-0.56774793099612,-0.17009517643600702,0.6492573823779821,-0.8535007904283702,0.5708685424178839,-0.9140754356049001,0.8484428166411817,-0.4074411289766431,-0.6169296470470726,-0.03902389761060476,0.9099979847669601,-0.8619664506986737,-0.550026357639581,-0.8365742289461195,-0.1313347122631967,-0.3623080882243812,0.6395870051346719,0.4975260985083878,0.9208806245587766,-0.7631005099974573,0.41188597306609154,0.3879623953253031,-0.13364857668057084,0.48664773534983397,-0.03651892999187112,-0.20146096823737025,-0.4310747915878892,-0.3456954760476947,-0.48015539860352874,-0.9230848103761673,-0.5367904719896615,0.44226140854880214,-0.7225800766609609,0.6968837063759565,0.011248904280364513,0.7123460476286709,0.018973389640450478,0.08820900926366448,-0.1618286739103496,-0.03955930145457387,0.9907522657886147,-0.5741696376353502,-0.0054310886189341545,0.7240221844986081,0.14583386993035674,-0.46326733799651265,-0.21860271133482456,-0.5708312569186091,0.13913533790037036,-0.9129957822151482,-0.23833168065175414,0.36293644458055496,0.07553064543753862,-0.24433659249916673,-0.9354000855237246,0.8085660799406469,-0.5693185911513865,0.5828824145719409,-0.41258044820278883,-0.6317461365833879,0.18251756159588695,0.33646459924057126,0.672210955992341,0.6463948874734342,-0.23745978251099586,0.020655787084251642,0.8446776894852519,0.4113229373469949,0.315157329197973,0.3046822212636471,-0.5879404563456774,-0.06491524633020163,0.7646912070922554,-0.5475642974488437,0.05228023091331124,0.2824962828308344,-0.6245259023271501,-0.19516319409012794,-0.40222874796018004,0.13113444251939654,0.412600364536047,-0.9841540963388979,-0.22173813311383128,0.9010292789898813,0.6568146599456668,0.16272236593067646,-0.011059726122766733,-0.9904725784435868,-0.4000329119153321,0.9987431271001697,0.23315763240680099,0.16285071754828095,0.15914555080235004,0.6477497275918722,-0.21897723572328687,0.7606178321875632,0.8175376211293042,0.7011457742191851,-0.3094749818556011,-0.6818031575530767,-0.2854698491282761,0.9674115288071334,0.08384226588532329,0.58883485943079,0.43387508718296885,0.4676563376560807,-0.3464158815331757,-0.9452943773940206,0.13164478912949562,-0.9024995402432978,-0.5295600914396346,-0.5095590553246439,0.4728388162329793,-0.35194130055606365,0.6652160976082087,-0.6370853004045784,0.9807610530406237,-0.20710140746086836,-0.7543205227702856,-0.6496559707447886,0.5962286745198071,0.06315422570332885,-0.24705833569169044,-0.29008981911465526,-0.9811454289592803,-0.1382253528572619,-0.9811251200735569,-0.4446094068698585,0.873294657561928,-0.2337340940721333,0.7353773955255747,0.3732485454529524,-0.7790918098762631,-0.9559031929820776,-0.5711293867789209,-0.7465215087868273,0.543118835426867,0.36361533077433705,0.22555951168760657,0.560042159166187,0.243702441919595,-0.32379943737760186,0.5255495482124388,0.8539178329519928,-0.07715499680489302,0.5816132444888353,-0.22431646846234798,0.6384846270084381,-0.11499047232791781,0.030118714086711407,-0.7650877847336233,0.7991234380751848,-0.845947862137109,0.5570272756740451,0.4130508997477591,0.704682007431984,-0.4058434460312128,-0.9618048900738358,-0.737654959782958,-0.31772536877542734,-0.2400042717345059,-0.5962583632208407,0.015861229971051216,0.21086405916139483,0.6899705482646823,0.10376930236816406,0.6722065941430628,0.2473892392590642,-0.5444061853922904,-0.1559293926693499,-0.30292977252975106,-0.4221973088569939,-0.7686014245264232,-0.8780874279327691,-0.08557214587926865,0.4279039320535958,-0.6339373784139752,0.2333125346340239,0.324788642115891,-0.34334700740873814,-0.3219763436354697,-0.6568883773870766,-0.6303793396800756,0.4743035896681249,-0.8102866779081523,-0.1713412911631167,-0.38207764085382223,-0.7789272153750062,-0.2918496485799551,0.9033434591256082,0.9794902140274644,-0.572600266430527,0.44414014322683215,-0.6962651275098324,-0.3286503292620182,0.9139351001940668,0.15606030821800232,0.3856820873916149,-0.199504179880023,-0.6008641882799566,0.7543302518315613,-0.4596318691037595,-0.9111219365149736,-0.8066547773778439,0.17495874920859933,-0.7682831161655486,-0.5899509438313544,0.30750303994864225,-0.7634335714392364,0.07694334350526333,0.3178263418376446,-0.10980736138299108,0.3831322812475264,-0.8406175849959254,-0.15339784184470773,-0.6184322517365217,0.35396275809034705,-0.9716097516939044,-0.8888052944093943,-0.7415815624408424,0.7084094816818833,0.7448694845661521,0.41812181239947677,-0.6866608345881104,0.5041620181873441,0.7715426972135901,-0.6606292873620987,-0.6162475701421499,-0.2620860207825899,0.155547974165529,-0.8591288635507226,-0.10817731218412519,0.9586094855330884,-0.2733897347934544,-0.02989228582009673,-0.9727714085020125,-0.4185559153556824,0.9664550852030516,0.5236268052831292,-0.49069829611107707,0.3813152867369354,-0.4754866505973041,-0.3038406171835959,0.31408420018851757,0.02794327260926366,-0.37053044233471155,-0.7999301902018487,0.919447775464505,-0.14243625663220882,-0.08550935983657837,0.7059588488191366,0.1112377685494721,0.7735665938816965,-0.9041506759822369,0.6636854219250381,-0.08495677448809147,0.12916303053498268,-0.1906532132998109,0.7846025312319398,-0.44014247227460146,-0.18704956118017435,0.99421590520069,0.8072849363088608,-0.9345347280614078,0.44988568872213364,-0.32237630477175117,0.31791225727647543,-0.3720420943573117,-0.844601584598422,0.36186010343953967,0.7630124995484948,-0.989263893570751,-0.11835377104580402,0.9388005873188376,-0.5222575790248811,-0.6887462949380279,0.44010838447138667,-0.1859557144343853,-0.9303041533567011,0.7969171484000981,0.6555625540204346,-0.9251982565037906,-0.5830817595124245,0.8972993353381753,0.38147141924127936,0.12243459140881896,-0.6983572673052549,-0.8326727533712983,-0.12863896880298853,0.19864538544788957,-0.11823663394898176,0.9119483050890267,-0.6522481301799417,-0.48368368903174996,0.0402850485406816,-0.2272904459387064,-0.6720596039667726,0.23050907254219055,-0.6604568320326507,-0.6752615757286549,-0.5705456808209419,-0.6761578973382711,0.7406749110668898,0.023384641390293837,-0.625833026599139,0.8828768082894385,-0.9109376091510057,-0.9450716688297689,-0.8301284541375935,0.641098324675113,0.9485071925446391,-0.3226262335665524,-0.4239056524820626,0.10107909748330712,-0.4707936644554138,0.08703804295510054,-0.18507832707837224,0.24748692335560918,0.37720996560528874,-0.18078205594792962,0.4307699939236045,0.7420953400433064,0.36388187296688557,0.24055348616093397,0.9815593929961324,0.18609983241185546,-0.8755581481382251,0.025061795953661203,-0.12352689215913415,0.5782349221408367,-0.760204094927758,-0.907623169478029,0.6474077156744897,0.15816056355834007,0.9045358621515334,-0.9105998734012246,-0.8627606662921607,0.9680817872285843,0.5734028234146535,-0.23425786895677447,0.5821010270155966,0.3280609240755439,-0.22540293773636222,0.07416741596534848,-0.4524590913206339,0.7964153606444597,-0.3475794647820294,-0.6889520320110023,0.31870750011876225,-0.4113887115381658,-0.4739852985367179,0.5515609569847584,-0.394840519875288,0.9458561362698674,-0.10189604666084051,0.5077857272699475,0.9139273804612458,-0.31752381287515163,0.32040198845788836,-0.44516616128385067,0.4242965285666287,-0.46709589986130595,0.07399623980745673,0.9677561782300472,0.26076205261051655,-0.1135582490824163,-0.8230420909821987,-0.6873775776475668,-0.5569586353376508,0.543651738204062,-0.021189718507230282,0.6612451234832406,0.34039005916565657,0.7270488850772381,0.7003211714327335,-0.6784155815839767,-0.4353549601510167,-0.9233047878369689,0.026713761035352945,0.9255247348919511,0.8446588590741158,-0.2290309676900506,-0.6063221991062164,-0.631500689778477,0.5453732255846262,-0.8638209756463766,0.1540351090952754,-0.06455006124451756,-0.7376317456364632,-0.2758064894005656,0.8170496234670281,0.49216880835592747,-0.5746892122551799,0.032645970582962036,-0.7864694874733686,-0.8207829059101641,-0.4328555134125054,0.0657422780059278,-0.2519026678055525,-0.6595607819035649,-0.33015537401661277,0.9259115168824792,-0.2757995896972716,0.5408863434568048,-0.9608725751750171,-0.2663250472396612,0.27930311439558864,-0.6056014015339315,0.21617705514654517,0.9608275475911796,0.44676645938307047,0.16682384023442864,-0.8133826046250761,-0.10872536711394787,-0.17579315416514874,0.5505685890093446,0.8513594358228147,0.2845756756141782,-0.6318675763905048,0.04419994121417403,0.07127145072445273,0.9623046023771167,-0.8591470308601856,0.6968330363743007,0.3787574199959636,-0.5961734182201326,-0.028391892090439796,-0.2695311838760972,-0.7950631291605532,0.8853396815247834,-0.13838741835206747,-0.7207421194761992,0.18083191057667136,-0.36125701619312167,0.6249646078795195,0.8020040998235345,0.444898369256407,0.8143212217837572,-0.26110285660251975,0.8184766373597085,0.1635198867879808,0.13249935768544674,-0.2830441938713193,-0.4190128375776112,0.11970988381654024,-0.10254194075241685,-0.657717268448323,0.3690371382981539,-0.8985190442763269,0.2165349912829697,0.9986837417818606,0.699036693200469,-0.9741022647358477,0.96882194140926,0.562892381567508,0.7650832976214588,-0.40739467088133097,0.12873242609202862,-0.43323696637526155,0.6930567682720721,-0.10962068242952228,-0.6426090053282678,-0.3776499954983592,-0.5163462264463305,-0.9276457782834768,-0.48990602418780327,-0.9825785155408084,-0.695147723890841,-0.6375019229017198,-0.9277520286850631,0.7554800026118755,-0.5091747432015836,-0.0892706629820168,-0.8119372203946114,0.21334015065804124,0.7867551213130355,-0.2688330872915685,0.6811123169027269,-0.4646233324892819,0.05567365512251854,-0.14435106236487627,0.8274919725954533,-0.4408687427639961,-0.5677626524120569,-0.43346639769151807,0.9085746328346431,-0.0356775620020926,0.45768619095906615,-0.7757993522100151,-0.7755080410279334,0.15800362126901746,-0.20175028778612614,-0.9756427914835513,0.1660170196555555,-0.0352417747490108,0.32780386693775654,0.28845804557204247,-0.2942016236484051,-0.5845268415287137,0.7539659705944359,0.6480778981931508,-0.629912527743727,0.19807238038629293,0.7957853320986032,0.013405729085206985,-0.04863796615973115,0.7244654470123351,-0.7389816525392234,0.2928860140964389,-0.7220782772637904,-0.5619050390087068,0.49608087819069624,0.8397470368072391,-0.36327310372143984,0.5836802343837917,0.7343242117203772,-0.43078920524567366,-0.01685928925871849,0.48857243079692125,-0.6742188227362931,-0.9191521517932415,-0.67396648414433,-0.168973830062896,-0.31438170559704304,-0.3594883200712502,0.035535316448658705,0.22257421258836985,0.8439185684546828,-0.4877025978639722,-0.8325532097369432,-0.24698700802400708,-0.028369182720780373,0.3321423861198127,0.901282143779099,-0.6485034660436213,0.43266126699745655,0.21043060719966888,-0.024622448720037937,0.7547863810323179,-0.5514330007135868,-0.12669289112091064,-0.949097640812397,-0.6109669390134513,0.13318835943937302,-0.6720336196012795,0.010873800609260798,-0.43072796566411853,-0.3068469865247607,0.356240542139858,0.3096919348463416,-0.2898804182186723,-0.6784605327993631,-0.3605392505414784,0.9276439514942467,-0.49259390588849783,0.04079345567151904,-0.12565410416573286,0.4208003277890384,0.5680107772350311,0.1575766601599753,-0.37522266805171967,-0.39984796196222305,0.6547303879633546,0.10075064236298203,0.4439389603212476,-0.5098047549836338,0.9553464516066015,-0.22757870936766267,0.7078382684849203,-0.5122271599248052,0.005412044003605843,0.2888920698314905,-0.7116286149248481,-0.48744897451251745,0.9356601438485086,0.564099776558578,-0.713640924077481,-0.41799711529165506,-0.17621628288179636,0.501249857712537,0.7737939744256437,0.19134309003129601,-0.842774520162493,-0.38655673107132316,-0.34399888245388865,-0.8465383355505764,-0.17852431628853083,-0.19229492219164968,0.808531285263598,0.595519304741174,0.9244901491329074,-0.49714223574846983,0.3834442822262645,0.6741594774648547,-0.7456665686331689,-0.7413040692918003,0.10552085656672716,-0.7305282577872276,-0.3346891147084534,0.05817884113639593,0.021630027797073126,-0.9644536478444934,-0.9427412967197597,0.2652889443561435,-0.8323491225019097,-0.07653095666319132,0.4443727065809071,-0.4191708108410239,-0.8246054439805448,0.26731759821996093,-0.7526735509745777,0.7903277236036956,-0.9005243959836662,-0.4857271695509553,-0.5598847232758999,-0.08628203999251127,0.4053025427274406,0.7002013800665736,0.6006742985919118,0.4571162457577884,0.6094850325025618,-0.6358812805265188,0.5846046167425811,0.7994478540495038,-0.03842199640348554,0.8147060377523303,0.6687313015572727,0.8356797723099589,0.45149262761697173,0.15298773208633065,0.026113361120224,-0.65844841953367,0.1130366288125515,-0.39038200629875064,0.3182932622730732,0.30662157805636525,0.2935890108346939,0.6040543005801737,0.36449122428894043,0.9960991810075939,-0.7948366133496165,-0.9939439329318702,-0.6231462280265987,0.6139274295419455,-0.6941757472231984,-0.06802411191165447,-0.19834476057440042,-0.14836584171280265,0.6117285802029073,0.7807433060370386,-0.9377797022461891,-0.8156674727797508,0.4483337146230042,0.3015009108930826,-0.24404108617454767,0.14929999969899654,-0.5884535391815007,-0.20014874218031764,-0.8529090844094753,-0.5068799699656665,0.2209830740466714,0.44104795018211007,0.22651747707277536,0.05643570050597191,0.2493009651079774,-0.08732978068292141,-0.2516357419081032,-0.8354539950378239,-0.11865257006138563,0.6682987930253148,0.5118628609925508,-0.22691938700154424,0.8588361297734082,0.44240086805075407,0.6178167806938291,-0.7027234728448093,-0.9434273997321725,-0.30842900602146983,0.1805948535911739,-0.24081771029159427,0.6212856788188219,-0.5565455965697765,-0.2409840002655983,-0.41872443864122033,0.28093428211286664,-0.5017387946136296,0.3574438039213419,0.42121321940794587,-0.6399312629364431,-0.3567634364590049,-0.36283776676282287,0.9176420760340989,-0.9545503323897719,-0.612909022718668,0.05760430824011564,0.47646849136799574,-0.3978242869488895,0.42331180116161704,-0.2128910948522389,0.3639866313897073,-0.6948304818943143,-0.15264739096164703,-0.5338711878284812,0.28102907119318843,0.0751558393239975,-0.48122221045196056,0.8071986781433225,-0.9966227826662362,0.7968526687473059,-0.8851888314820826,0.9294436420314014,0.0890729115344584,-0.6469018259085715,0.09338604658842087,0.02367650531232357,0.18858204688876867,0.5087311319075525,0.8596037812530994,-0.5695816343650222,0.42968286806717515,-0.6726219616830349,-0.02954272972419858,-0.42166623985394835,-0.3173770937137306,0.2368292952887714,-0.34615129278972745,0.12044073967263103,-0.6276789726689458,0.8380209659226239,-0.04231855133548379,-0.877870209980756,0.5424477253109217,0.04731430485844612,0.7925595422275364,-0.24856677372008562,0.3400548296049237,-0.05456604389473796,0.8500683004967868,0.3628873471170664,-0.23107075365260243,0.9653749773278832,0.8878016350790858,0.6149301752448082,-0.49956051958724856,-0.7324068075977266,-0.38725300040096045,-0.9162570112384856,-0.10615052422508597,-0.3261157441884279,-0.4333951002918184,-0.5839137202128768,0.36366781685501337,-0.2586412988603115,-0.7049158355221152,-0.667829261161387,-0.42023226665332913,-0.07260142778977752,-0.3412105841562152,0.1825809865258634,-0.6823925324715674,-0.6376390173099935,-0.28781918389722705,0.2978253779001534,-0.7122965706512332,-0.7082266411744058,-0.7875978811644018,0.43886670004576445,-0.9017088785767555,0.6582979443483055,0.4582326873205602,0.7680933577939868,0.7444036300294101,-0.12784275272861123,-0.04611602332442999,0.5228941035456955,0.6371381459757686,-0.5455164322629571,-0.8976647546514869,-0.8820486338809133,-0.49711037427186966,-0.965710814576596,0.681110565084964,0.9347299733199179,0.13669883646070957,0.7277500196360052,-0.07785825245082378,0.5112090846523643,0.7080320580862463,0.00018708035349845886,0.026226111222058535,-0.37832582416012883,0.3187555382028222,0.15322008216753602,-0.8611908960156143,-0.592275429982692,0.7420483403839171,-0.08145927404984832,-0.6562370457686484,-0.14680336927995086,0.8196880612522364,-0.5318402941338718,-0.6080447444692254,-0.07290548831224442,-0.6720285201445222,0.29638059297576547,0.9953805631957948,-0.4543629512190819,-0.7464247648604214,0.26815605629235506,-0.5203973753377795,-0.08777091139927506,0.07689104182645679,0.6322949407622218,-0.9701954224146903,-0.8912671646103263,-0.5995047888718545,0.5151774007827044,-0.7477078218944371,0.03914026357233524,0.3272483767941594,0.16752786561846733,0.20260658580809832,-0.04375128261744976,-0.471978475805372,0.8237379100173712,0.5185184865258634,0.942330673802644,0.26125949202105403,-0.8262429852038622,-0.34411133266985416,-0.13481684634462,0.41953883739188313,-0.406018175650388,-0.43727809051051736,0.19879318494349718,-0.30027761636301875,0.8074992257170379,0.4613007162697613,-0.5671923086047173,0.874960049521178,-0.03258214518427849,-0.27828956488519907,-0.07020239299163222,-0.978769741486758,-0.08542046742513776,0.6743107847869396,0.7669748608022928,-0.932790576480329,0.062182411551475525,0.022486797999590635,-0.013100676238536835,-0.7950378516688943,0.12911662505939603,-0.5935590383596718,0.9143241834826767,-0.19075099704787135,0.11360186757519841,-0.8344838991761208,0.5684845112264156,0.5309182847850025,-0.5010069697163999,0.6225480809807777,0.605915819760412,0.7865242939442396,-0.7836814573965967,-0.5305230082012713,-0.2975863912142813,-0.5645065610297024,-0.8463776977732778,-0.6801447565667331,-0.637003434356302,-0.9513200619257987,0.4778103665448725,0.1691766562871635,0.25406693527475,0.6408939361572266,0.051954349502921104,0.7220087302848697,-0.7563696764409542,-0.48228811100125313,0.5685223010368645,0.886742589995265,-0.9503839085809886,0.6928353738039732,-0.8463937202468514,-0.8081519627012312,-0.3431728510186076,-0.8786089080385864,0.6750755505636334,0.46438842127099633,0.6541855032555759,-0.7609889605082572,0.21142720663920045,-0.13247673027217388,0.8085064752958715,-0.23025955678895116,-0.4201789917424321,0.07249713083729148,0.7307197600603104,0.19818917848169804,-0.8897672803141177,-0.030625341925770044,0.7487802905961871,-0.38038724521175027,0.024958725087344646,0.9649460297077894,-0.768552528694272,0.8909502648748457,-0.13556333119049668,-0.092623520642519,-0.6619055732153356,0.36589521169662476,0.7242371821776032,0.9010948953218758,0.8771928991191089,0.799555342644453,-0.07971998350694776,0.2989002666436136,-0.36572202714160085,-0.5886804624460638,0.926347796805203,-0.8921444211155176,0.30640229443088174,-0.8191742608323693,0.08358952915295959,-0.7200553920120001,-0.04188467422500253,-0.959904904011637,-0.21247418830171227,0.5732362121343613,-0.4940334688872099,-0.9883543136529624,-0.20514180324971676,0.7667911807075143,-0.4190784958191216,0.7889093216508627,0.7268139836378396,0.8841194706037641,0.9913571239449084,-0.846177498344332,0.3037816765718162,0.07405088562518358,0.23808082565665245,-0.765364439226687,-0.5727868117392063,0.05932381236925721,0.13467244943603873,0.40391037287190557,-0.6391481505706906,0.71336754783988,-0.6108044674620032,0.26933243637904525,0.7785305827856064,-0.894034109544009,-0.7304876162670553,-0.005371494684368372,-0.6831459063105285,0.9659344423562288,-0.9623759128153324,0.9750066567212343,0.6148162637837231,0.5368351223878562,-0.027013523038476706,-0.36271079583093524,-0.34969056118279696,-0.773601358756423,-0.7142897136509418,-0.9344223537482321,0.28400363167747855,-0.2980477036908269,0.45106044225394726,0.28687089728191495,0.2872075233608484,-0.3864469542168081,-0.16272491216659546,0.4421116770245135,-0.6064897417090833,-0.17222715774551034,-0.4513076478615403,-0.6715725497342646,-0.19397300109267235,0.7838570554740727,0.04805027740076184,0.4797439118847251,-0.9013074040412903,-0.8892145180143416,-0.17753678234294057,-0.37344593927264214,-0.8529237322509289,-0.5550797134637833,0.8084950647316873,-0.38646655483171344,-0.9688359624706209,-0.30177022283896804,-0.8473486928269267,0.8885830990038812,-0.014966343529522419,-0.6552292378619313,-0.26474645966663957,0.9797715609893203,-0.5949951368384063,0.5057502938434482,-0.7759592095389962,0.1646151328459382,-0.8639822988770902,-0.09157039364799857,-0.14891016762703657,-0.3356706337071955,0.29418478813022375,0.8122185366228223,0.433031989261508,-0.6693690363317728,0.13750405004248023,0.2900467966683209,0.33472485141828656,0.4798850566148758,-0.18183533661067486,-0.14360141986981034,-0.9790197941474617,-0.4753407225944102,0.6379372044466436,0.08179393969476223,0.04759944975376129,-0.05573556898161769,-0.15134092140942812,-0.7685988526791334,-0.3393546282313764,0.3888343437574804,0.18895868491381407,0.7111236252821982,-0.4485058491118252,0.7855342496186495,-0.2797853737138212,-0.5524941636249423,0.5014272215776145,0.7356693209148943,-0.19557396927848458,-0.7134734964929521,-0.10924710426479578,0.9905711933970451,-0.9085563090629876,0.20202601188793778,-0.3150547961704433,0.7947584302164614,-0.0883448226377368,0.9947895938530564,-0.7904749396257102,-0.38472128100693226,-0.12455518869683146,-0.15752804512158036,-0.05210080090910196,0.3999437023885548,-0.2603001641109586,0.9539138865657151,0.6109992028214037,-0.21976462844759226,-0.407766189891845,-0.48727287724614143,0.05767932673916221,0.7705238172784448,0.049932272639125586,-0.606423132121563,0.3105457345955074,-0.6738971569575369,-0.1762670986354351,0.6674637328833342,-0.1799285663291812,0.7745946203358471,-0.07311641424894333,0.5426412150263786,0.20905802957713604,0.6156213111244142,-0.4290497819893062,-0.7492788229137659,-0.2149838604964316,0.9935142979957163,-0.8636974305845797,-0.7209550156258047,-0.47749750735238194,0.025450326967984438,-0.9659251431003213,-0.7817177679389715,0.2506132652051747,-0.21093427762389183,0.6750365626066923,0.7068173456937075,-0.45973114017397165,0.7848811936564744,-0.14642189117148519,-0.02859926363453269,-0.08250498911365867,-0.20351812848821282,-0.8393509802408516,-0.8979199170134962,-0.4628864745609462,0.25146584725007415,0.04337777104228735,0.9691399582661688,0.41522400453686714,0.21321464842185378,-0.906054356135428,-0.12312162155285478,-0.5724614942446351,0.680929665453732,-0.017924735322594643,-0.29846038529649377,0.03969822824001312,-0.1603888631798327,-0.03546764561906457,-0.10382189368829131,0.6051009171642363,0.632796567864716,0.11914034513756633,0.14442076301202178,0.905130232218653,-0.2911049025133252,0.706183257047087,0.4364921245723963,0.4986612810753286,0.222012831363827,0.46245528291910887,0.03638625331223011,0.5908638187684119,0.8350826199166477,-0.6889062006957829,0.25206126226112247,0.7985396194271743,0.8478270717896521,-0.8440337697975338,0.8525558114051819,0.7946172198280692,-0.7126153870485723,0.47617360344156623,-0.8962218626402318,-0.5956534733995795,-0.8054114077240229,-0.7590129473246634,0.7957925340160728,0.4988583899103105,0.10108427423983812,-0.537606393918395,-0.7911094948649406,0.22086024284362793,0.8310979683883488,-0.7407377576455474,0.3800612580962479,-0.9765057675540447,-0.8442850094288588,0.9100094051100314,0.43461827700957656,0.9567783488892019,-0.6582113653421402,0.5857035066001117,0.23962546791881323,-0.8447149619460106,0.6733578685671091,0.40128288278356194,0.034662080463021994,-0.05541223892942071,0.6380992173217237,0.7329478291794658,-0.14977111900225282,0.4356873254291713,0.9205304132774472,0.013510213699191809,-0.6287032240070403,-0.7414652141742408,0.9357833140529692,-0.12244087550789118,-0.28927683597430587,-0.9179419949650764,-0.8326631020754576,0.9055745140649378,-0.5261924350634217,-0.41723904805257916,-0.9515528045594692,0.8130388595163822,-0.5779689019545913,-0.35679632145911455,0.37040281016379595,0.17154471203684807,0.89091134397313,0.14800115069374442,-0.45943208038806915,0.28578595584258437,0.8315281099639833,-0.8911774065345526,-0.21596817579120398,0.6450708569027483,-0.9461452960968018,-0.200442963745445,0.9892374603077769,-0.031387696508318186,-0.4708630214445293,-0.19603100093081594,0.8783281561918557,0.8051722566597164,0.5658621122129261,-0.6949455235153437,-0.49822741467505693,0.7558654751628637,-0.2713436442427337,0.8198863444849849,0.715345109347254,-0.8453197539784014,0.7369957934133708,-0.8738099536858499,0.7199466503225267,0.14302917988970876,0.25011145835742354,-0.05201645381748676,0.6919624996371567,0.9183306638151407,-0.4754366157576442,0.42280303221195936,0.7220797631889582,-0.7817841432988644,-0.17863349243998528,-0.5185618791729212,0.43104520346969366,-0.27912036469206214,-0.5345795499160886,0.8707637977786362,-0.44396693399176,-0.2937070745974779,-0.43145165825262666,0.7606857153587043,-0.2609790381975472,-0.9824185576289892,-0.940298818051815,0.5387005838565528,0.6027440838515759,0.012321351561695337,0.7767635844647884,0.1355292140506208,0.04235483519732952,-0.21422990364953876,0.32472088746726513,0.3465534206479788,0.12860483583062887,-0.2998339054174721,-0.45422671316191554,0.9122533607296646,0.7937735817395151,-0.7714091325178742,0.4265028927475214,0.27962375013157725,0.7302255528047681,0.8502584048546851,0.6776790493167937,0.6027107741683722,0.17264242004603148,-0.04847556119784713,0.8718627234920859,-0.021100457292050123,-0.5981612238101661,0.09568051435053349,-0.893665888812393,0.7807538802735507,-0.7568469443358481,-0.40363389253616333,-0.9252047915942967,0.9837167016230524,0.17769969627261162,0.43903970113024116,-0.480327975936234,0.604909441433847,-0.042053233832120895,-0.22624933207407594,0.036610344890505075,-0.06817174330353737,-0.22475651372224092,0.46844291780143976,0.5763444076292217,-0.5967320641502738,-0.36273302836343646,0.7410475965589285,-0.3488178472034633,0.22999078407883644,-0.2216452034190297,-0.16187132289633155,0.9768801429308951,-0.9097979245707393,0.7182140010409057,0.18073742650449276,0.7484176233410835,-0.5433077267371118,0.8447763179428875,0.6638661129400134,-0.1241479660384357,-0.5368060725741088,0.12572645489126444,0.5717309885658324,-0.43867069156840444,0.5765937124378979,-0.5070394659414887,0.13371124770492315,-0.19294024957343936,-0.8115547667257488,0.8627945925109088,-0.9169145752675831,-0.2126329834572971,0.4317107959650457,0.30707508930936456,-0.8719034981913865,-0.7896597632206976,-0.9433339335955679,0.15182058606296778,0.005267765838652849,0.4616859252564609,0.18786938255652785,-0.014076010324060917,0.2497343998402357,-0.598960027564317,0.3677452998235822,0.7818729761056602,-0.5816856441088021,-0.8888853206299245,-0.11723329685628414,-0.5521408771164715,0.2743534445762634,-0.9850531695410609,0.8504733517765999,-0.7747971653006971,0.7754723988473415,0.3929721834138036,-0.8610937087796628,-0.6935728904791176,0.5333349858410656,0.1798917381092906,-0.5867813723161817,0.4766176054254174,-0.340481863822788,0.1844589188694954,-0.39651023084297776,0.8799145165830851,-0.5130008622072637,-0.4210640424862504,-0.06549168983474374,-0.7111796149984002,-0.24017757177352905,-0.37185134552419186,0.36623100424185395,-0.23447023518383503,-0.8483382444828749,0.21725428802892566,-0.21897304570302367,0.7526096147485077,0.5146138374693692,0.8904684819281101,-0.07079787133261561,0.011197369080036879,-0.5605946923606098,-0.4115150454454124,0.5594684961251915,0.00885519478470087,-0.6005470580421388,-0.6293574804440141,-0.30643898621201515,-0.4676823504269123,-0.26986994920298457,0.5059546162374318,-0.336108785122633,-0.14226566907018423,-0.0008512861095368862,-0.22095701657235622,0.46612611040472984,-0.0557132544927299,0.725638784468174,-0.7680461802519858,-0.12562581803649664,-0.8880675425752997,0.9460081048309803,0.9549681777134538,0.31782906875014305,-0.44572420697659254,0.7598415953107178,-0.39471858460456133,-0.7810508077964187,0.25259935576468706,-0.45900431275367737,0.9270850187167525,-0.98855642369017,-0.7253066813573241,-0.8037457754835486,0.14073521876707673,-0.3460634471848607,-0.3013616711832583,-0.8245744789019227,-0.5096035236492753,-0.5761110316962004,-0.1917062164284289,0.18758496828377247,-0.6746081761084497,-0.822257555089891,0.6404431653209031,0.8647695248946548,-0.40699929744005203,-0.06787950731813908,0.484077931381762,0.801295489538461,-0.7792752352543175,-0.3651622962206602,-0.17008464550599456,-0.07022844022139907,0.8030607169494033,0.25099402759224176,-0.0787655389867723,0.33528473880141973,-0.9004967221990228,-0.4896032437682152,-0.2708888426423073,-0.271372698713094,-0.05939093651250005,-0.036338284611701965,0.14079359779134393,0.9537829719483852,-0.7453216491267085,-0.9740731255151331,0.36178440088406205,0.9101610099896789,0.6815912625752389,0.5765190394595265,0.687559433747083,-0.8132201400585473,-0.5785414786078036,-0.7302434095181525,0.12786091910675168,-0.9231273345649242,0.5315612447448075,-0.6608147285878658,0.5896236309781671,-0.8431031829677522,-0.5318702040240169,-0.33049306832253933,0.3843678734265268,0.1814976315945387,-0.6174998339265585,0.29633311554789543,0.8865524125285447,0.33823150070384145,0.46659777732566,0.9932855553925037,-0.3631014688871801,0.1821954813785851,-0.9067258508875966,-0.54237095778808,0.7510736002586782,0.24052850902080536,-0.6129657896235585,0.2371199349872768,0.758937073405832,0.8371135471388698,0.1962482645176351,0.057230296079069376,0.3951408858411014,-0.08146293461322784,-0.4502566233277321,0.5926703088916838,-0.3934939419850707,-0.2426587985828519,0.3166281837038696,-0.8092527952976525,0.2629401865415275,-0.7893460285849869,-0.3988470467738807,-0.6222835667431355,-0.06416145293042064,-0.2041756184771657,0.9611121923662722,0.4215011880733073,-0.0001672394573688507,-0.3459060760214925,-0.7332552201114595,0.34852248057723045,-0.7598764221183956,-0.4030199493281543,-0.23859986010938883,0.8440781184472144,-0.9521716954186559,0.35397022776305676,0.8808187595568597,-0.025207435712218285,-0.18045484134927392,0.4160657152533531,-0.10808770963922143,-0.16550725745037198,0.6828210735693574,0.2752639842219651,-0.38729631062597036,-0.038195226807147264,0.47263505263254046,-0.05053312983363867,0.7667984208092093,-0.035966761875897646,-0.9688527942635119,-0.2415590127930045,-0.7882779664359987,-0.5750238141044974,-0.6305137877352536,-0.9619440101087093,0.4643021607771516,-0.0875701759941876,0.24365048436447978,0.47121798899024725,-0.8863019323907793,0.16100477799773216,0.8292571301572025,0.47247703839093447,-0.5863792728632689,0.7109832987189293,-0.10952784214168787,-0.29329296015203,0.4884004471823573,0.5916467108763754,0.9393702452071011,-0.9015856836922467,0.7737932354211807,0.16133223520591855,-0.7781579648144543,-0.038213233929127455,-0.3635329529643059,-0.4592907396145165,-0.007602186407893896,-0.6672731195576489,-0.9495597635395825,-0.9014110174030066,0.8869973882101476,0.12258064560592175,0.649895922280848,-0.8391428217291832,-0.2717628739774227,-0.7993525308556855,-0.24404682917520404,0.9106741733849049,-0.6047860984690487,0.11361964698880911,-0.5751178194768727,-0.18187766522169113,-0.21262272587046027,0.9111135192215443,-0.9335229727439582,0.13875853642821312,0.4804657925851643,0.6949523957446218,0.10785296326503158,-0.3339644121006131,0.9931567758321762,0.47213308420032263,0.4928408097475767,0.6671097194775939,-0.8971495595760643,-0.27729469258338213,-0.3772312621586025,-0.7802829672582448,-0.8822891158051789,-0.46287538344040513,0.10637041321024299,-0.20264414371922612,-0.5006625801324844,0.9192438581958413,-0.7253224099986255,0.23651513690128922,-0.18651265278458595,0.7861453425139189,0.9281615600921214,-0.038116033654659986,0.5351370042189956,0.5343424989841878,-0.07343248231336474,-0.7307811500504613,-0.987614304292947,0.974924894515425,-0.07365862047299743,0.32404548674821854,-0.8017069571651518,-0.6086928565055132,-0.8282885169610381,-0.991640243679285,-0.8520302199758589,-0.19799306010827422,-0.671751206740737,-0.6856426405720413,-0.6255408683791757,-0.13082965603098273,0.3933875816874206,0.895215876866132,-0.2764289593324065,-0.29477249924093485,0.7045264663174748,0.3790744342841208,-0.9156458377838135,-0.020697707310318947,-0.7203179881908,-0.37103634467348456,-0.7284059380181134,-0.9008235391229391,-0.04685867438092828,-0.6949511002749205,0.9730621743947268,-0.3023740602657199,0.6880968464538455,-0.514919517096132,-0.31430325191468,-0.03112805401906371,0.3374933893792331,-0.929883471224457,-0.5591682167723775,0.09746096935123205,-0.8528254092670977,0.7283231527544558,0.5860600681044161,0.594868391752243,0.3890812606550753,-0.9682260043919086,-0.7313528312370181,-0.4377031880430877,-0.7878097337670624,-0.19100134167820215,0.6725716195069253,-0.6505653178319335,0.055922470055520535,0.8803830672986805,0.026681384537369013,-0.646831120364368,-0.6410525115206838,0.6973260343074799,0.89095922652632,0.2591680120676756,0.6917435424402356,-0.48062212858349085,0.8869777861982584,-0.14933818019926548,-0.8768649287521839,-0.19284109631553292,0.9911403553560376,0.31323977187275887,-0.6901631290093064,0.14166836254298687,0.22027657879516482,-0.03296698164194822,-0.7169289002195001,0.05933529557660222,0.25737195322290063,-0.6794716194272041,-0.4457351705059409,-0.796733196824789,0.8848662069067359,0.2609959212131798,-0.5766653041355312,0.25237519945949316,0.06670077564194798,0.5465219863690436,0.17525946209207177,-0.4380934298969805,0.05963829904794693,-0.4244592608883977,-0.651886401232332,-0.3377685216255486,-0.7161625260487199,-0.7565491399727762,0.03637782344594598,0.6710998979397118,0.18275763420388103,-0.15568394912406802,0.036338379606604576,0.7864444851875305,0.5528641818091273,-0.34379009809345007,0.6261847703717649,-0.1776648946106434,-0.7461318876594305,0.4379027192480862,0.8098130351863801,0.05407598102465272,0.09387900307774544,-0.942219418939203,0.564965161960572,-0.48322675889357924,-0.9882357469759881,0.20424056751653552,-0.04771550791338086,-0.7306086742319167,0.9672167217358947,-0.9668587162159383,0.3879731111228466,-0.5381497354246676,0.8746364070102572,0.6724975700490177,-0.3175664911977947,-0.9039409286342561,-0.1622191872447729,0.6346093895845115,-0.8265119390562177,-0.1038533914834261,0.2696262705139816,-0.5509287295863032,-0.0648034573532641,0.8997096698731184,0.8880831333808601,-0.07269343407824636,0.006070188246667385,0.07800253992900252,0.3503826488740742,0.959960191976279,0.8738772422075272,-0.5312411901541054,0.2632910800166428,-0.36279975064098835,-0.5862682177685201,-0.09174382407218218,-0.7446978366933763,0.1862556072883308,0.8221417558379471,0.8492297064512968,-0.4835554901510477,-0.5056164562702179,0.8311069146730006,0.03877508547157049,-0.8839194662868977,-0.24074778845533729,0.25771527271717787,-0.6677449941635132,0.12942679831758142,-0.9968797755427659,0.40517761651426554,-0.17023865226656199,-0.6623219139873981,-0.5245616151951253,-0.8609580770134926,0.766056299675256,0.7717857495881617,0.11721377773210406,-0.08715802477672696,-0.6784339747391641,0.7550920243375003,-0.17978187603875995,-0.4551708013750613,-0.7310081119649112,-0.5933177727274597,0.5508335339836776,0.1261553089134395,-0.749034175183624,0.3906185324303806,0.1655610096640885,0.9063781378790736,0.377329810988158,-0.19994426192715764,-0.8666783841326833,0.9727168693207204,-0.3237980641424656,-0.8800419345498085,-0.2356091239489615,-0.7124824286438525,-0.9004121669568121,-0.5734798703342676,-0.9878080249764025,0.011552029754966497,0.13767378451302648,-0.7540345182642341,0.2809421559795737,-0.5752351367846131,-0.3853299440816045,0.4481549118645489,0.24494620691984892,-0.39232071535661817,-0.41144379368051887,-0.4345563449896872,-0.16753946850076318,-0.9802740542218089,0.6142365764826536,-0.5701421634294093,-0.6105014542117715,0.10024569742381573,-0.1583230155520141,-0.4518218282610178,0.5196341434493661,0.1262292885221541,0.00950613571330905,0.6259807464666665,-0.9469401575624943,0.9982336638495326,0.9437597971409559,0.5166920474730432,0.7559142699465156,0.3493767585605383,-0.12006328487768769,-0.10656673740595579,0.9137449972331524,0.3498769518919289,0.8645612150430679,0.30031757336109877,-0.5329716084524989,-0.48088235314935446,0.8133114352822304,0.7264676881022751,0.5817999644204974,0.20960307121276855,0.35951506067067385,0.15408745734021068,0.37287364713847637,0.5359027720987797,-0.016721778083592653,-0.5586227276362479,-0.9789837412536144,0.5894630872644484,-0.38218937534838915,-0.374449675437063,0.2827404337003827,-0.6848367280326784,-0.8039875188842416,0.9924295754171908,-0.2545197466388345,-0.32498632464557886,0.32976919785141945,-0.5077400403097272,0.5577432052232325,-0.402389841619879,-0.7638768972828984,0.8865335788577795,-0.9118519271723926,0.6578289549797773,0.281071359757334,0.17684062104672194,0.6843760879710317,0.7352928761392832,-0.6796422321349382,-0.6431865650229156,-0.46092709386721253,-0.44904440036043525,0.8567575388588011,0.20706230914220214,0.41623353073373437,0.5217783423140645,0.6818797020241618,-0.3830572278238833,0.6183652807958424,0.9204658805392683,0.5438016359694302,0.7958190408535302,-0.5399766396731138,0.7467200313694775,0.5888129412196577,-0.22216818574815989,-0.34362447587773204,-0.031124503817409277,0.8296666699461639,0.479227761272341,-0.9129233970306814,0.4864530269987881,-0.2568517825566232,0.44464198127388954,0.6957272184081376,0.16950587928295135,-0.2385001378133893,-0.2595192897133529,0.1535238935612142,0.8224421967752278,-0.16836609644815326,0.3345968904905021,-0.647399103268981,-0.21674688439816236,0.4206780018284917,0.20967397326603532,-0.5681245583109558,0.6168171400204301,-0.743490232154727,-0.2523857275955379,0.981068842113018,-0.13949567079544067,-0.41937696700915694,-0.7515192590653896,0.029195664450526237,-0.049020613078027964,-0.7646400588564575,0.21654136013239622,-0.03424719115719199,0.703681614715606,-0.2782470784150064,0.22321188263595104,0.5649309768341482,0.9342605494894087,0.12727141799405217,-0.073132308665663,-0.6654753661714494,-0.7871396918781102,0.4417704869993031,-0.20818545436486602,0.11790748918429017,0.06482014246284962,-0.5984730911441147,-0.5119196958839893,0.30099532287567854,0.030880209058523178,-0.19105464732274413,-0.08280746452510357,-0.022366699762642384,0.8256405931897461,0.29797617718577385,-0.39922608621418476,-0.011434807442128658,0.6675038035027683,0.04695618245750666,0.0022544730454683304,0.5483328332193196,-0.44647629652172327,0.11080727074295282,-0.1934994668699801,-0.8704065531492233,-0.8351807580329478,-0.04603119008243084,-0.3681514956988394,0.933909454382956,-0.28008859790861607,0.7292253980413079,-0.5787299517542124,0.13862254470586777,0.9884003628976643,-0.8228532057255507,-0.9301615376025438,-0.7560600228607655,0.23140205768868327,-0.8311830018647015,0.7790518766269088,-0.7580278180539608,0.851721481885761,-0.14355046022683382,0.6756052924320102,-0.5896238433197141,-0.11625057365745306,0.14801061060279608,0.2709860126487911,0.5605780305340886,-0.023571782745420933,-0.17875115713104606,-0.05164431920275092,-0.6477289642207325,-0.20949501544237137,-0.29342575976625085,-0.39558849250897765,0.027150718960911036,-0.10760827967897058,0.28722946951165795,0.3932042415253818,0.9285059538669884,-0.6667943028733134,-0.603589239064604,0.7168794646859169,-0.12235355377197266,-0.842303222976625,0.3115901886485517,0.31526577146723866,0.843903630040586,0.2544765858910978,0.5947108268737793,0.983446542173624,0.91694878321141,-0.8256576154381037,-0.36891879001632333,-0.9744014842435718,-0.14193317433819175,-0.03985285898670554,-0.9877469185739756,0.0449051707983017,-0.8714706650935113,0.4635283681564033,0.8028189763426781,-0.6830770815722644,0.4986645057797432,0.24325122078880668,0.07518159691244364,0.8665571394376457,-0.644525128416717,0.6684854640625417,0.8446212778799236,-0.2065634406171739,-0.9013706366531551,-0.05312992166727781,0.5155169577337801,0.5700201489962637,0.24263443145900965,0.7718111928552389,-0.8462296002544463,-0.8341374467127025,-0.7044174023903906,0.863679469563067,-0.3570744888857007,-0.163239027839154,0.626999678555876,0.37928358651697636,-0.7504470995627344,0.9281570850871503,-0.9702727794647217,0.3661804171279073,-0.5074659059755504,-0.30355731304734945,0.4224164285697043,-0.28221526416018605,0.007105269934982061,0.1506192423403263,-0.5895428517833352,0.21566304611042142,0.5657726796343923,-0.15404849033802748,0.6410764027386904,0.4518405422568321,-0.25504022277891636,0.3210836984217167,-0.287277203053236,0.10176755115389824,0.39491811161860824,-0.6898827394470572,0.6800277079455554,-0.8079788782633841,-0.9020751831121743,0.12611322104930878,-0.6639445153996348,-0.9632656970061362,-0.7137223896570504,-0.9046519394032657,-0.20878839679062366,-0.14237595768645406,-0.5395466424524784,0.5625391807407141,-0.7745924801565707,0.175270548556,0.8711703275330365,0.8208223260007799,0.17209521075710654,-0.03951684758067131,0.9653062568977475,0.2927315910346806,0.7426512180827558,0.7560036927461624,-0.6812482858076692,-0.6964387805201113,-0.5116048003546894,0.7449357034638524,-0.9056050209328532,-0.038368973415344954,-0.9389832303859293,0.4374554445967078,-0.3896315349265933,-0.42007596837356687,0.045465683564543724,0.8704554075375199,-0.18728524632751942,0.5454769297502935,-0.011258597485721111,-0.07187602436169982,-0.043415052350610495,0.5389962932094932,0.43900905549526215,-0.6665946524590254,-0.8727895733900368,0.10963924415409565,-0.8444402609020472,0.13527828641235828,-0.791937552858144,-0.1141526591964066,0.24165812227874994,-0.7374380538240075,-0.589869771618396,0.34325570752844214,-0.3431031107902527,0.9026941121555865,0.5567413456737995,0.23630120605230331,-0.14710568031296134,-0.11618911428377032,-0.6341744237579405,0.2353974375873804,0.5108591667376459,0.45139190554618835,0.29724163142964244,0.6156628993339837,0.4761340939439833,0.5881471945904195,-0.07240205025300384,-0.0016088560223579407,0.5156591734848917,0.592356345616281,0.608042913954705,0.5497233173809946,0.32744097616523504,-0.09144271817058325,0.5756885739974678,0.10620252741500735,0.9134072596207261,-0.5952054574154317,0.992641560267657,0.15778758795931935,-0.6730829146690667,-0.1791641442105174,-0.7933388631790876,0.49055024376139045,-0.869916895404458,0.13845375832170248,0.7286190316081047,0.10196316242218018,-0.40784915164113045,0.8379893484525383,0.02504693018272519,0.412632264662534,0.013317422941327095,-0.803936795797199,0.2934544621966779,0.9156399271450937,-0.5515804509632289,0.6728166393004358,0.698701567016542,0.27320692175999284,-0.40718462597578764,0.2400231077335775,0.837539916858077,0.2615198018029332,0.4077746132388711,-0.3167117815464735,-0.7976596434600651,0.8361274991184473,-0.451161066070199,-0.5699214804917574,-0.9000898776575923,0.9733875263482332,0.306510541588068,-0.7710611568763852,-0.4229889842681587,0.8088089814409614,-0.9568943837657571,0.42939939396455884,-0.13664322067052126,-0.029968310613185167,-0.13552936632186174,-0.12255924614146352,0.06720325676724315,-0.30814360547810793,0.42158286087214947,-0.8333828714676201,-0.06810630252584815,0.6318992953747511,-0.26421252684667706,-0.31423576502129436,-0.7418505256064236,0.4076090957969427,-0.013678629416972399,0.5433597783558071,0.09550354164093733,0.013564615976065397,0.6095983912236989,-0.17663238337263465,0.8345897141844034,0.7790672266855836,-0.27713328786194324,-0.573028969578445,-0.26586067117750645,0.26394493132829666,0.38491018023341894,0.22213411796838045,-0.23177455877885222,0.47826261445879936,-0.5124011756852269,0.15381271857768297,0.29651507595553994,-0.9625379056669772,0.1136300154030323,-0.5162701210938394,-0.20350436866283417,0.22939105797559023,0.16109966905787587,-0.9381496538408101,-0.15556148393079638,-0.008561273571103811,-0.9322207067161798,-0.38313601166009903,-0.10873209917917848,0.4736290844157338,-0.472016170155257,-0.05683870567008853,0.5889701191335917,0.03598211286589503,-0.7339799338951707,-0.5250502345152199,-0.8378586950711906,0.40654829842969775,-0.014121275395154953,-0.8632210791110992,0.01773945242166519,-0.4899487770162523,0.8882662700489163,-0.8919192557223141,-0.623970050830394,-0.13508450705558062,-0.5182817154563963,-0.2727897744625807,0.8051376505754888,-0.16688173357397318,-0.06232625152915716,-0.2417269735597074,0.21301515400409698,-0.649425720795989,0.7777801300399005,0.5705079231411219,-0.5434090411290526,-0.1350875124335289,0.4539615227840841,0.14159179897978902,0.343854405451566,0.24110160069540143,0.34346109814941883,0.851022167596966,-0.478494631126523,-0.5058481744490564,-0.2351528969593346,0.2528878441080451,0.5469751837663352,0.73903788626194,0.4548251857049763,-0.20164746325463057,0.33646494010463357,-0.46353000262752175,0.7335524470545352,-0.769600457046181,-0.293950651306659,0.8704024208709598,0.9222825886681676,-0.3020985024049878,-0.03517610998824239,-0.046090138144791126,0.5689304228872061,0.2617154405452311,-0.5426165335811675,-0.7166043817996979,-0.19723356561735272,0.833112230990082,0.9877140843309462,0.18557302746921778,0.730005782097578,0.2677774145267904,-0.0022999499924480915,-0.8436024808324873,-0.11968595674261451,0.6530558462254703,-0.07660158118233085,0.8383349776268005,-0.31388430716469884,0.4465733584947884,0.9236436649225652,0.6198601257055998,0.6608097166754305,0.5687496792525053,-0.4188548503443599,0.6905747228302062,-0.6734401793219149,0.7853057254105806,0.19914486724883318,-0.2601268058642745,-0.41694455966353416,0.5806647641584277,0.28416250739246607,-0.6151457717642188,-0.7175269122235477,-0.9878346519544721,0.23482593335211277,-0.016578590963035822,0.4848589519970119,-0.19994407752528787,0.7769710700958967,-0.3917299062013626,-0.6765525760129094,-0.6885285414755344,0.38044308917596936,0.5265376777388155,0.4979167068377137,0.5389955565333366,-0.7780308425426483,-0.259640509262681,0.4476102441549301,0.5599162462167442,-0.48328143544495106,0.28358737751841545,-0.6274023470468819,0.3537922757677734,0.8244649199768901,-0.39065505051985383,-0.7142651565372944,0.4328877367079258,-0.6968739670701325,-0.4280232614837587,-0.8547970494255424,0.7292156876064837,-0.6472192145884037,0.622317033354193,0.5602380847558379,0.21709060203284025,0.1828445396386087,0.8938667755573988,-0.8472841344773769,-0.8605646011419594,-0.13244715565815568,-0.43684024922549725,0.4082991620525718,-0.44987419387325644,0.6217130683362484,0.8346505598165095,0.896413987968117,-0.060481042601168156,-0.16405176185071468,0.4318303600884974,0.701756130438298,0.5071306405588984,0.5061578950844705,0.2228651037439704,0.9410488773137331,-0.0006988830864429474,0.9197475863620639,0.8960650782100856,-0.8268479239195585,0.31054447731003165,-0.7187510393559933,-0.5026753433048725,-0.8704882324673235,-0.6266870894469321,0.29156725760549307,0.7455917932093143,-0.9730552034452558,-0.4676948385313153,0.6715652807615697,-0.27241396298632026,-0.9554290357045829,-0.4293557293713093,-0.0715017169713974,-0.7004276369698346,0.7805606871843338,-0.3835303713567555,-0.21786753833293915,-0.18453432386741042,0.20906248968094587,-0.7716276212595403,0.977083751000464,-0.22093146573752165,-0.5003148880787194,0.10304825799539685,-0.6150117763318121,-0.018161616288125515,0.11028070142492652,-0.44874695502221584,-0.4792952137067914,0.5917511144652963,-0.26851609628647566,0.2677183295600116,-0.7904556221328676,-0.9469577530398965,0.5008262908086181,-0.32689699390903115,0.24236088432371616,0.12738674227148294,0.04799654381349683,-0.15549651579931378,-0.26922539388760924,-0.5718134786002338,-0.9365217047743499,-0.33419944252818823,0.7439283789135516,-0.5937507208436728,0.22477634716778994,-0.7449870430864394,-0.8168780375272036,0.12217676918953657,0.19916311372071505,0.05233698897063732,0.15873086359351873,-0.7303390139713883,0.879402473103255,0.5513432314619422,-0.5227616298943758,-0.24427909404039383,0.6114450371824205,-0.4292165501974523,-0.5442103808745742,-0.15860450314357877,-0.7014916618354619,-0.8977340022101998,0.694614171050489,0.7284320369362831,0.5309476447291672,0.7853693449869752,0.14612025069072843,0.4446797273121774,-0.5350562543608248,-0.039702188689261675,-0.4057335015386343,-0.9368518441915512,0.6564830970019102,0.4586229049600661,-0.6416619191877544,0.874578763730824,-0.14439847273752093,0.5742773581296206,-0.6547835157252848,0.6442298381589353,0.23926419531926513,-0.797416539862752,-0.9806390507146716,-0.5189015702344477,-0.8654897683300078,-0.21799430111423135,-0.6445460943505168,0.533976683858782,0.1476298626512289,0.572221192996949,0.40576549991965294,0.7538618906401098,0.09215281950309873,-0.4405199633911252,0.13536619441583753,0.8245743219740689,-0.577808334492147,0.9081421070732176,-0.7131506344303489,-0.9708906235173345,-0.003283554222434759,-0.9573913952335715,-0.9535081051290035,-0.3591310754418373,-0.14955347077921033,-0.37386962166056037,-0.3126457673497498,0.7334415488876402,0.8880164250731468,-0.487624644767493,-0.22200993867591023,0.4080752353183925,-0.26075905561447144,-0.6309592151083052,0.9206010354682803,-0.021936718840152025,-0.006184352096170187,0.7339415159076452,-0.5033113337121904,-0.5321737178601325,-0.7024205499328673,0.7686329022981226,-0.5010707839392126,-0.26180265843868256,-0.15726003842428327,-0.1359825748950243,-0.7991440324112773,0.49164553824812174,0.7266526422463357,0.3613467696122825,0.7441413523629308,-0.11339478055015206,0.6271902560256422,-0.08876280160620809,0.7543607642874122,-0.5647053518332541,0.016807144042104483,-0.7003562371246517,-0.35690040048211813,-0.9730369029566646,0.35071434546262026,0.13542640721425414,-0.5632274080999196,0.4408107348717749,-0.12832423439249396,-0.6664024046622217,0.4726169938221574,0.38787580095231533,0.5100341648794711,0.5273194978944957,0.18062220001593232,0.8217676309868693,0.342923516407609,-0.9857870377600193,0.9701596111990511,0.9787000883370638,-0.9286626125685871,-0.11653210874646902,0.7503046025522053,0.9184187259525061,0.022598092909902334,0.2726398422382772,-0.3536904542706907,-0.9033172708004713,0.7779368343763053,-0.35137439146637917,-0.7655348130501807,0.5780060356482863,0.6233150628395379,-0.07223897008225322,-0.5217033983208239,-0.022234630305320024,0.14098857250064611,-0.7079694727435708,0.6044849287718534,0.6102908197790384,-0.579538366291672,0.8820671010762453,0.5099270115606487,0.8529422618448734,0.4499082462862134,0.7864282145164907,-0.4149400186724961,0.4458024110645056,-0.1372605529613793,0.0588736985810101,-0.8338496475480497,-0.5964681189507246,0.22360675828531384,-0.7294715591706336,-0.6494145640172064,-0.352158831898123,0.835250819567591,0.752745149191469,0.4500626102089882,0.13527402374893427,0.6486121686175466,-0.5300073307007551,0.5991979339160025,0.37180909560993314,-0.1034759203903377,-0.4381159720942378,-0.43660120805725455,-0.33636975241824985,-0.341593608725816,0.5160837755538523,0.07927812589332461,0.08352086832746863,0.5912631182000041,0.615369169972837,0.03641428425908089,0.23660216201096773,0.5141547839157283,0.12126215593889356,0.19360736943781376,-0.416765577159822,0.001073602121323347,0.9635826200246811,0.5362625070847571,0.2745543047785759,0.4685658854432404,0.7961400486528873,0.5772752771154046,0.9636600771918893,0.11994151584804058,-0.23647450422868133,-0.8102448470890522,0.5419957563281059,0.20759393787011504,0.535435157828033,0.10983016528189182,0.8896588776260614,0.8774413987994194,-0.6643816819414496,-0.19611532613635063,0.40965829882770777,0.10229600733146071,0.8330154521390796,-0.3459549187682569,-0.24931452656164765,-0.9702363908290863,-0.013396982569247484,-0.34474668465554714,0.4891652660444379,0.5299825873225927,0.20336395967751741,-0.9320032196119428,-0.3906508656218648,-0.2121627712622285,0.011347481980919838,-0.785862326156348,-0.4901547459885478,-0.882432104088366,-0.6612090603448451,-0.7202956010587513,-0.823643050622195,-0.6060512377880514,-0.7478125137276947,-0.7295958735048771,0.25670978613197803,-0.3250697967596352,-0.4363221856765449,0.8969937139190733,-0.6964813922531903,0.774676825851202,0.4188770456239581,-0.9658157005906105,0.7176030585542321,-0.9417125997133553,0.13496368005871773,-0.9624174227938056,-0.3986600898206234,0.2505120332352817,0.9072778448462486,0.340476430952549,0.02391693741083145,0.4527642745524645,-0.9750521420501173,-0.022690697573125362,-0.7233764263801277,-0.3520807041786611,-0.059899743180722,0.8999503594823182,0.10740510001778603,0.9835446095094085,0.9572469084523618,-0.7687932788394392,-0.42451131623238325,0.8239950449205935,0.3949235654436052,0.6150238714180887,-0.015134136192500591,-0.3023679223842919,-0.25402407301589847,0.9173822272568941,0.11878028186038136,-0.8791037267073989,-0.25518409069627523,0.29808012023568153,-0.19367422442883253,-0.888371807988733,-0.9284670786000788,-0.9107137247920036,-0.11261138878762722,0.6431603557430208,-0.14016048377379775,-0.6548587805591524,0.10981362918391824,-0.1686336505226791,-0.27484925417229533,0.20719657000154257,0.4307875824160874,0.718768416903913,0.8878165506757796,0.6359601486474276,-0.38230267725884914,0.9837768180295825,-0.6614650744013488,0.87601662799716,-0.5293029504828155,-0.8390705110505223,0.5060044736601412,0.5135580571368337,0.5398338427767158,-0.1337688658386469,0.7239831304177642,0.04092123731970787,0.9222248010337353,0.871884299442172,0.32389590330421925,0.2971529792994261,-0.437171439640224,-0.6666022641584277,-0.4885005936957896,0.7428307994268835,0.772654221393168,-0.9086635522544384,-0.8749027010053396,-0.8247567191720009,-0.12976947147399187,0.17041751835495234,0.6538471118547022,0.9697975656017661,-0.2217430011369288,-0.20648860838264227,-0.06999009242281318,0.5849786307662725,-0.8740911623463035,-0.14610330946743488,-0.1480817231349647,-0.033836022950708866,0.5049250517040491,0.49359245505183935,0.19650920759886503,0.010630456730723381,-0.036129411309957504,-0.97025465965271,0.2827295372262597,-0.08136695064604282,0.5070084375329316,0.6649794029071927,-0.9551452156156301,0.22722072433680296,0.4653846211731434,0.6305427611805499,0.6492927335202694,-0.5870835944078863,-0.6861204733140767,-0.5599608328193426,0.4874050668440759,0.8255055299960077,-0.5058651794679463,0.9118816046975553,-0.3533583367243409,-0.6682503442279994,0.9716081246733665,-0.33875123877078295,0.3543362454511225,0.8066587462089956,0.22104677744209766,0.3872546604834497,-0.5670875711366534,-0.10098579246550798,-0.811322845518589,0.747972653247416,-0.733127623796463,0.6128711611963809,0.0735617415048182,0.5918021681718528,0.9102920754812658,0.32668331637978554,0.6900148433633149,0.3001965810544789,0.11989995092153549,0.15145676862448454,0.4623760902322829,-0.35873884055763483,-0.1360432398505509,0.5312856803648174,-0.44064886029809713,0.06359762558713555,0.23381991032510996,-0.6652375059202313,-0.6015240377746522,0.5376551980152726,0.45071082655340433,-0.6510752527974546,-0.2398321288637817,0.37322093918919563,-0.9714534427039325,-0.6609873124398291,-0.8066995283588767,-0.12507365830242634,-0.42394809098914266,0.655928669963032,-0.12725907703861594,0.49948849342763424,0.709918883163482,-0.35150303039699793,0.12838703021407127,0.731745574157685,0.18598557263612747,0.8123937603086233,0.773554383777082,0.4537749062292278,-0.04909936944022775,-0.09895556885749102,-0.5342489997856319,-0.34902887139469385,-0.4337603054009378,0.05325791845098138,-0.828442947473377,0.8704054737463593,0.855029343161732,0.046020356472581625,-0.8309495951980352,0.10039141681045294,-0.323439909145236,0.16067076474428177,-0.06168342521414161,0.4889653194695711,0.6881512836553156,0.7149283648468554,0.23791542975232005,0.44943573884665966,-0.9268682417459786,0.10108342533931136,0.21676339069381356,-0.7110837283544242,-0.28930119425058365,-0.12181827193126082,0.15997754782438278,-0.5043827360495925,-0.7943702200427651,0.05729936296120286,-0.8094193204306066,0.18255623616278172,-0.15806158864870667,0.24666170123964548,-0.6029030284844339,-0.06910742120817304,-0.2156951385550201,-0.8783882157877088,0.5290765860117972,-0.13067936711013317,0.9416498732753098,0.7858606204390526,0.4056140389293432,-0.8707133405841887,-0.08884883159771562,0.5064465645700693,0.841461218893528,-0.22876626113429666,0.6131169125437737,-0.8107249517925084,-0.6005776403471828,0.8892823294736445,-0.557850263081491,0.8167233127169311,-0.5541813857853413,0.9783341246657073,-0.09541584691032767,0.6439025294966996,0.43322802940383554,0.22962097125127912,-0.7777811526320875,0.19236406683921814,-0.44252571323886514,-0.5745116584002972,0.4080670955590904,0.5882188533432782,0.8839755188673735,-0.5238465773873031,0.4183060727082193,-0.706017236225307,0.19742791773751378,-0.7350701899267733,-0.4085450293496251,-0.7142599765211344,0.09476989833638072,0.7347808070480824,-0.38316845102235675,0.057444038800895214,-0.5704304222017527,-0.39603553200140595,-0.1801536469720304,0.6798888961784542,0.7265712870284915,-0.14262519543990493,-0.21738474816083908,-0.8053931021131575,0.7685292046517134,0.4610254829749465,-0.2756466385908425,-0.951683234423399,-0.9721412737853825,0.47953112749382854,-0.08892212901264429,-0.3250549784861505,-0.494166084099561,0.4423518646508455,0.9092947589233518,-0.49774742871522903,-0.6020513577386737,-0.6825018534436822,0.748465892393142,0.8116155657917261,-0.6820922074839473,-0.38690971164032817,0.9978187908418477,0.8053280455060303,-0.1798484674654901,0.992654669098556,0.33497517835348845,0.22815159894526005,0.9317129268310964,-0.7744031520560384,0.8243203582242131,0.7859527450054884,-0.578113567084074,0.9674869738519192,-0.08698146836832166,-0.3656894564628601,-0.6170190162956715,-0.5870390459895134,-0.14912478486075997,0.9564190083183348,-0.811782659497112,0.3434450086206198,0.2625008998438716,0.8471067841164768,-0.43224651645869017,0.3516585468314588,-0.21237898664548993,-0.6271136729046702,0.7837619944475591,-0.9284384632483125,-0.7783029680140316,-0.11262660846114159,-0.8358859359286726,-0.015049419831484556,-0.2279509291984141,-0.09508345648646355,-0.11698027234524488,0.1635002694092691,-0.8570689023472369,0.5145619045943022,0.4386281673796475,-0.295887419488281,-0.37839078810065985,0.8485395140014589,-0.5064902026206255,-0.10590067273005843,0.8690902916714549,-0.3183094374835491,0.6068546040914953,-0.47302842512726784,0.7299935161136091,0.7691260571591556,0.538574970792979,0.7826200458221138,-0.14500866690650582,-0.4087809333577752,-0.8282322119921446,-0.0873650573194027,-0.7335950094275177,-0.2712801112793386,-0.2691165120340884,0.8619817872531712,-0.1983499974012375,0.7484550164081156,-0.926838228944689,0.7465997007675469,0.5454398998990655,0.8690242832526565,-0.6451163911260664,-0.6111854435876012,-0.8009881917387247,0.5389690701849759,-0.30421628011390567,-0.7828231756575406,0.7480031214654446,0.9169767312705517,-0.11709624249488115,0.0006147469393908978,-0.9639063458889723,-0.1239161123521626,-0.9465521774254739,0.8601902360096574,-0.6216036607511342,-0.24585051462054253,0.6643707300536335,0.05841456679627299,-0.03106820210814476,-0.057809965685009956,-0.4190717972815037,-0.3360432833433151,-0.9978080550208688,-0.8584731733426452,-0.4270893665961921,0.1161193628795445,-0.3009029906243086,0.6881580017507076,0.6468891073018312,0.6207967265509069,-0.31271532364189625,0.9837123099714518,0.5324684553779662,-0.5534532335586846,0.41125490330159664,-0.2194829760119319,0.006816757842898369,0.12243016343563795,0.5651331953704357,0.994566629640758,-0.22720006806775928,-0.5413102246820927,-0.8467026348225772,-0.12405363516882062,-0.7228862820193172,-0.488566389773041,0.5330428397282958,-0.6131503544747829,-0.8115064315497875,-0.261264446657151,0.06172065809369087,0.02923910738900304,-0.24069363437592983,0.3410024610348046,0.13681271113455296,0.6253727348521352,-0.4806615496054292,0.10447772638872266,0.7341794269159436,0.43651329539716244,0.856826082803309,-0.2613812298513949,-0.9199202517047524,0.3712598499841988,-0.06847421173006296,0.37852207152172923,0.5431755199097097,0.6935891946777701,-0.13676945166662335,0.48579864390194416,0.8573071332648396,0.4888765048235655,0.09889273811131716,0.6771157276816666,-0.46451013442128897,-0.38639331609010696,-0.08792477194219828,0.1333215362392366,-0.0032332357950508595,-0.9630638393573463,-0.5936038726940751,-0.1632923036813736,0.25011036079376936,0.4156451062299311,0.635016554966569,-0.9441158981062472,-0.00349617563188076,-0.4700425136834383,0.8212834657169878,0.2578039923682809,0.6036841524764895,0.12222478305920959,-0.7105661467649043,-0.48505982104688883,-0.2117602308280766,-0.10506109520792961,-0.0946875917725265,0.0647438489831984,0.534941719379276,-0.4356377115473151,0.8698554779402912,0.10875471867620945,-0.5760968076065183,0.6337298788130283,-0.987745672930032,-0.21652906574308872,0.3707079882733524,0.06529593886807561,-0.612575619481504,0.6229188260622323,-0.9960900410078466,-0.32631310541182756,0.45772778103128076,0.8309189132414758,-0.9509506956674159,0.33115103421732783,-0.20815006364136934,-0.2531275642104447,-0.9656765153631568,0.3759718360379338,-0.4604813735932112,0.9676882680505514,0.41504537034779787,0.850317794829607,0.8486037338152528,-0.3802755451761186,-0.26654576044529676,0.7091034762561321,0.9338214579038322,0.05230095749720931,0.8921944834291935,0.5393498842604458,0.4171595056541264,-0.3379562748596072,0.6263235700316727,-0.5149995903484523,0.5258150543086231,0.3943113717250526,-0.3741858801804483,-0.005434832535684109,0.44236844778060913,-0.27308585634455085,0.07946083042770624,0.8512505674734712,-0.40486346650868654,-0.5863335034810007,-0.2615974792279303,-0.9561106008477509,0.03393857227638364,0.31993098882958293,-0.43554466404020786,-0.5712831118144095,-0.12779200170189142,-0.018744283821433783,0.40855312114581466,0.43041794933378696,0.5600581904873252,0.04844559449702501,-0.26977584324777126,-0.618458834476769,-0.7372295120730996,-0.34051704313606024,-0.1324740224517882,-0.34070278238505125,-0.4073491198942065,0.5395883098244667,0.9512136136181653,0.8514969288371503,-0.486705906689167,0.5171696017496288,-0.6713817231357098,-0.3080150284804404,-0.7657787441276014,-0.9607450761832297,0.8643433847464621,-0.6498307981528342,0.87107067508623,-0.6207205569371581,-0.40871396381407976,-0.05866545345634222,-0.968452769331634,-0.5985733373090625,-0.17960649076849222,-0.6706439927220345,-0.9618963045068085,0.16176656540483236,-0.8687588628381491,0.908872970379889,-0.6573865651153028,-0.7393247112631798,0.17052491754293442,-0.7979707359336317,-0.24592184741050005,-0.14990077866241336,-0.8650537231005728,-0.3870894806459546,-0.21946790674701333,-0.3979936484247446,0.9128595995716751,-0.20081858849152923,0.5193971707485616,-0.8558261268772185,0.6127950926311314,0.5936650801450014,-0.9398038573563099,-0.9374208031222224,0.5789360287599266,0.5928039965219796,0.8071329677477479,0.6559000005945563,0.8317787814885378,0.8860240881331265,-0.8767422656528652,0.3689067792147398,0.0626474074088037,0.5155643369071186,-0.8029892821796238,0.24049387220293283,0.7321488494053483,-0.6383257871493697,0.16543136769905686,0.36769974371418357,0.7160113458521664,0.12898448016494513,-0.36383699998259544,-0.7979202675633132,0.11715954961255193,0.10249147238209844,0.7990506924688816,-0.1479588388465345,0.8927881517447531,-0.5767386346124113,0.24629454035311937,-0.7001438965089619,0.031288642436265945,-0.15303060272708535,-0.18741541355848312,0.45824621990323067,0.011675979942083359,0.7243604846298695,0.024177984800189734,0.16367626609280705,0.39574281964451075,-0.25037896865978837,-0.3391691097058356,0.9653659029863775,0.2777720848098397,-0.16564412461593747,0.9151646844111383,-0.1181306061334908,-0.7211599531583488,0.27607339108362794,-0.21132211852818727,-0.5870848642662168,-0.7049765922129154,-0.6391919078305364,-0.44749004673212767,0.06680268282070756,0.4388396106660366,-0.11999809136614203,-0.8837728290818632,0.37082187039777637,0.5430355942808092,-0.8144576391205192,0.16301742242649198,0.069713169708848,-0.6033274461515248,0.011875975877046585,-0.574413132853806,-0.36616639234125614,0.12804951332509518,-0.6046424340456724,0.20095265144482255,0.41310547618195415,0.7934437789954245,0.44489196687936783,-0.03922746563330293,-0.9032356468960643,0.9390556858852506,-0.09414225304499269,-0.9178219889290631,-0.7578752292320132,-0.027739547193050385,0.4087302088737488,0.3752552419900894,-0.2732691150158644,-0.08407011022791266,-0.24832966225221753,-0.14162604277953506,0.32454663421958685,-0.37974583776667714,-0.3303115973249078,-0.7504427623935044,0.1377334799617529,-0.10562683781608939,0.2858643904328346,0.5727342385798693,-0.9982818085700274,-0.6372874965891242,-0.5255050119012594,0.8417839840985835,-0.9419175931252539,-0.05482437368482351,0.20799919124692678,-0.4281786438077688,-0.06324100028723478,-0.5427387556992471,0.710558176971972,-0.9114929283969104,-0.5210418603383005,-0.5138122141361237,0.1035218802280724,-0.4088608268648386,-0.44265274750068784,0.1875875466503203,-0.9994078623130918,-0.5243532941676676,0.1363486461341381,-0.2759346808306873,-0.7778080352582037,-0.9615625194273889,0.4562367023900151,-0.8209736859425902,-0.1395610081963241,-0.5974500002339482,0.21313776867464185,0.24576940247789025,0.3276553167961538,0.07827308913692832,-0.5286058960482478,0.9723712536506355,-0.3062492567114532,0.6176781663671136,-0.7058387654833496,0.40108742052689195,-0.9755122251808643,-0.5404325984418392,-0.4893939862959087,0.3582834890112281,0.7405853550881147,-0.33640850614756346,0.9655313994735479,-0.6642924905754626,-0.20576303265988827,-0.052888131234794855,0.30930371256545186,0.25321958726271987,0.8091128175146878,0.9848275599069893,0.8444305644370615,-0.2859874293208122,-0.03225672245025635,-0.8846130538731813,0.2187840878032148,-0.20224521541967988,0.10573180066421628,0.6378898778930306,-0.356622985098511,-0.6679353560321033,0.9702364425174892,-0.7220208807848394,0.40374453319236636,0.7821149067021906,0.7871367777697742,0.12067138776183128,-0.4502041880041361,0.7970506264828146,0.821674277074635,-0.6190705322660506,-0.5078347865492105,0.500053605530411,0.936031976249069,0.9545983271673322,0.43905975110828876,0.13187191355973482,0.0627444963902235,-0.7938816212117672,-0.80612249718979,0.20951181324198842,0.9219720019027591,-0.7957451515831053,0.9030003724619746,-0.4408867103047669,-0.43078807229176164,0.237184080760926,-0.02508769929409027,0.4169814381748438,0.20013729250058532,-0.5146358930505812,-0.9108323762193322,-0.5394002790562809,0.6981790931895375,0.9036109773442149,-0.7480301223695278,-0.9688539751805365,-0.8898489507846534,0.5792016964405775,-0.6651638671755791,-0.33003341732546687,-0.2765502640977502,-0.07119234604761004,-0.6749456198886037,-0.2596102235838771,0.706757313106209,-0.8808183665387332,0.44942678418010473,-0.3750593354925513,-0.8409417932853103,-0.2250100397504866,-0.171435771510005,-0.14636374171823263,-0.5540968379937112,-0.9242869084700942,0.5472514326684177,-0.2212897576391697,-0.38248141948133707,0.8015026315115392,0.6684516603127122,-0.5597578315064311,0.12591679859906435,-0.511377184651792,-0.6918195798061788,-0.04661842016503215,0.057031658943742514,0.13590891286730766,0.9715903317555785,0.3851746073924005,0.6613515056669712,-0.5016026711091399,-0.5259169340133667,0.0948302592150867,-0.1963479476980865,0.4108448796905577,-0.7585073029622436,-0.09111450240015984,-0.7369505255483091,0.07834965642541647,0.7457466972991824,0.6072330647148192,-0.9246621392667294,-0.17485350789502263,0.012577892746776342,0.3772805277258158,0.21019774628803134,0.59213846642524,-0.30599538749083877,0.6221746508963406,0.16214641835540533,-0.5568163399584591,0.08143319981172681,0.6056895665824413,-0.22051504720002413,-0.46052261907607317,-0.732971575576812,-0.9892547931522131,0.6157374926842749,-0.6140500917099416,-0.7990639256313443,-0.364289463032037,-0.1260123224928975,-0.7533606113865972,0.992741018999368,0.8786942595615983,0.8369271908886731,0.2357428097166121,-0.20002882555127144,0.7110996614210308,0.7034041467122734,0.9415508913807571,0.3461328106932342,-0.5042270566336811,-0.30152452224865556,-0.8294626837596297,-0.4596959426999092,0.3748185932636261,-0.7461340534500778,0.024538689758628607,0.8407439952716231,0.5950132831931114,-0.9166178051382303,-0.03403665637597442,0.8556599342264235,-0.4497661399655044,0.8058523563668132,0.6094434037804604,-0.8674991992302239,-0.3843845291994512,-0.7557939006946981,0.9078833325766027,0.07822346780449152,-0.7252797936089337,-0.12375801848247647,0.9026818168349564,-0.9278680304996669,-0.09972042217850685,-0.5688807526603341,0.15396209759637713,-0.7603240781463683,-0.5272113298997283,-0.2178806816227734,0.8841890604235232,-0.18237932678312063,0.1886325553059578,-0.7367707025259733,-0.6589608094654977,-0.7237441553734243,-0.0904436782002449,-0.956361087039113,-0.7058467045426369,0.4715345371514559,0.1739315101876855,-0.3392517762258649,-0.5445823054760695,0.6278378814458847,0.8657026281580329,-0.19169561471790075,0.197367153596133,0.632807026617229,0.8511352483183146,0.12856638012453914,-0.9454705277457833,0.14088120916858315,0.2022135006263852,-0.7010998227633536,-0.8529464150778949,-0.4847364784218371,-0.5592457838356495,-0.0742388335056603,-0.8986561205238104,-0.054384368006139994,-0.8618596545420587,-0.9546695682220161,-0.1825477136299014,-0.8247435190714896,0.037801568396389484,0.4255540585145354,0.5704669305123389,-0.4770735870115459,-0.1446621147915721,0.6549868113361299,-0.3645347044803202,-0.08253424009308219,-0.041720769833773375,-0.11570585472509265,0.025556545238941908,0.2293991050682962,0.011742661707103252,0.628363917581737,0.7436840175651014,0.22585261706262827,-0.6357714543119073,-0.22401132667437196,-0.5241576978005469,0.8834286760538816,0.14991044020280242,-0.18604523362591863,-0.5512068546377122,0.5272529195062816,0.13031525677070022,-0.20237124431878328,0.5861866544000804,-0.33536319993436337,0.03706274926662445,0.3258136543445289,0.5459024920128286,-0.2253023306839168,0.8691267902031541,0.298756827134639,-0.14825927605852485,0.2665733746252954,-0.03722533490508795,0.4727831808850169,0.6143630449660122,0.47770269168540835,0.7926114625297487,-0.59099226212129,0.9270383045077324,-0.3217608970589936,0.7808116152882576,0.47299189679324627,-0.8419743133708835,-0.4860478010959923,-0.5491103497333825,-0.9066928336396813,0.30639612348750234,0.40206175250932574,-0.7452272078953683,-0.6924564721994102,0.4584177020005882,-0.24392890464514494,-0.6640126402489841,-0.9354238044470549,0.1846030573360622,0.1583555736579001,-0.4086835030466318,0.5772425853647292,0.09675690112635493,-0.7762471023015678,-0.09652138641104102,-0.9602177739143372,-0.2920008706860244,-0.5549503001384437,-0.946864849422127,-0.7649018242955208,-0.5585134853608906,-0.8681421559303999,-0.564061485696584,-0.8336219852790236,-0.44118783017620444,0.7995437812060118,-0.4726649238727987,-0.025288882199674845,-0.30976945348083973,-0.004447044804692268,0.11999086802825332,-0.947015565354377,-0.46896433690562844,-0.9227112266235054,-0.47074998170137405,0.7873373068869114,-0.6896973447874188,-0.4792833449319005,0.19347254559397697,-0.6429680110886693,-0.26307795150205493,0.7733043408952653,0.43718624860048294,0.586293192114681,0.7028936711139977,0.19251752039417624,0.967293624766171,-0.3498416352085769,-0.18466232856735587,-0.4875395130366087,-0.3806732418015599,0.3627820247784257,-0.6410648841410875,-0.013308260589838028,-0.6292992024682462,0.3282260876148939,-0.39730720687657595,0.3038961738348007,0.4610857595689595,-0.1852486776188016,-0.7409058171324432,-0.4635959006845951,0.9929652460850775,-0.5300163044594228,0.47337941313162446,0.1490429202094674,0.07242248672991991,0.3236707109026611,0.7287230878137052,-0.7094124783761799,-0.6127107478678226,-0.016613312531262636,0.4623366491869092,0.6942545338533819,-0.9876152784563601,0.9106606370769441,0.7346482817083597,-0.3771869554184377,0.2615088508464396,-0.7647469574585557,0.6990055777132511,0.0836775223724544,0.07813960080966353,-0.07189841009676456,0.8879114366136491,0.9772830759175122,0.5465777842327952,0.2066710344515741,0.6131985140964389,-0.27455856604501605,-0.9004329154267907,-0.6128655439242721,0.20641079684719443,-0.623870181851089,0.309984075371176,0.08738212147727609,-0.6731072817929089,0.8931399076245725,0.4705986240878701,-0.027840348426252604,-0.7659557890146971,-0.15203450294211507,0.9134884662926197,0.5258671590127051,0.1646337932907045,0.15250910306349397,0.026219238992780447,-0.8603755738586187,-0.08326012548059225,-0.5031359102576971,-0.1955526820383966,-0.8848309284076095,-0.5203798208385706,-0.04229622520506382,0.9819223890081048,0.47758608125150204,-0.48748617619276047,0.9894487783312798,0.19808554369956255,-0.7598782684653997,-0.6442581163719296,0.07043582014739513,-0.7761965380050242,-0.15749411331489682,-0.4183061080984771,-0.9661020874045789,-0.9654632513411343,0.28243988286703825,-0.4392028069123626,0.2060560160316527,0.3608129136264324,-0.027124679647386074,-0.35000981856137514,0.37022302905097604,-0.047175508458167315,-0.566070678178221,-0.6791964001022279,-0.06094447849318385,0.5140395634807646,0.25288843736052513,-0.7011618013493717,0.014092907775193453,-0.2791755641810596,-0.6553664249368012,-0.06332347076386213,0.1296380520798266,0.06685240939259529,-0.5194184794090688,0.6016849419102073,-0.940992349293083,-0.43476827116683125,0.2670425078831613,0.3624956295825541,0.1925547723658383,0.3936902489513159,-0.8447796422988176,0.8260256913490593,-0.3300731838680804,-0.5599165023304522,0.8738173306919634,0.8939077514223754,0.03466932103037834,-0.8167109107598662,0.6064056982286274,-0.30131095089018345,0.37728125881403685,-0.3298719455488026,0.9922725600190461,-0.8244187464006245,-0.4768091286532581,0.9691381193697453,-0.7686439189128578,-0.9607810392044485,-0.5375772877596319,-0.5295920479111373,0.49888372514396906,-0.40528791351243854,0.5333597296848893,0.5442247483879328,-0.6110619809478521,-0.057998265605419874,0.1962169068865478,0.4635513494722545,0.9411024367436767,0.7662443104200065,-0.0729960692115128,-0.047765659634023905,-0.15666989143937826,0.8038474875502288,-0.702832770999521,-0.5877918465994298,-0.47531659295782447,-0.07016592100262642,0.3006868972443044,-0.44833992421627045,-0.24214714160189033,0.21478526946157217,0.14285915065556765,-0.8741593100130558,-0.4324385980144143,0.49327127542346716,-0.5534572098404169,-0.15780665911734104,0.271757694426924,0.5726832589134574,0.26760996179655194,0.15165545558556914,-0.4427657895721495,-0.8671546773985028,-0.8482099338434637,0.7311058966442943,-0.5087901474907994,-0.5094368080608547,-0.37741909828037024,-0.7105180537328124,0.7017396199516952,-0.1611244329251349,0.9948079669848084,0.18701598141342402,0.1973415999673307,0.1410049619153142,0.15983973303809762,0.7402743520215154,0.9130980269983411,0.5953758871182799,0.6668947129510343,-0.38541037356480956,-0.6012589279562235,0.9436767743900418,-0.2698779967613518,-0.2981657348573208,0.38430301286280155,0.6768926684744656,-0.847432482521981,0.14425968378782272,0.8360852883197367,-0.4453966706059873,-0.3847553418017924,-0.5187016176059842,0.14908179827034473,0.7054620804265141,0.4973791725933552,-0.5238384725525975,-0.8218398969620466,0.5859670490026474,0.9916421929374337,-0.2945313439704478,-0.3698481749743223,-0.9177681081928313,0.8752011936157942,0.13999548740684986,0.21136723179370165,0.39195828372612596,0.2740893545560539,0.9221886773593724,-0.9162458325736225,0.9272635546512902,0.947085415944457,0.5164370909333229,0.5315640899352729,0.2156126550398767,-0.5650076977908611,0.9031448094174266,0.9792767446488142,0.40668741380795836,0.8454995914362371,-0.4452664512209594,0.5934432405047119,-0.7871741694398224,-0.5917658349499106,-0.6653370973654091,0.912025049328804,0.47412120969966054,0.22794009651988745,-0.5936546749435365,-0.9992842711508274,-0.5449768262915313,0.11083344230428338,0.1035160762257874,-0.34275025641545653,-0.31868888484314084,0.9527905136346817,-0.8411634815856814,-0.8668197621591389,-0.11230490682646632,-0.6776143983006477,0.49771704291924834,0.6472063539549708,-0.23980272188782692,0.4750090488232672,-0.5363286770880222,-0.07669296627864242,0.3485960648395121,-0.973393707536161,0.11805329471826553,-0.15054999431595206,0.3997479444369674,-0.16847595432773232,-0.17841387260705233,-0.014971248805522919,-0.65760044939816,-0.361862875521183,-0.38516546599566936,0.6857030875980854,-0.021789560094475746,0.13663026504218578,0.6996834417805076,-0.6988150593824685,-0.8991714417934418,-0.6766147054731846,-0.3509894562885165,-0.06831651041284204,-0.46428634971380234,0.640353572089225,-0.6013235202990472,-0.4076046091504395,0.5509898834861815,-0.08787632919847965,0.2399099739268422,0.4647408174350858,0.6484104632399976,0.07738367049023509,-0.3651640508323908,-0.16172996768727899,0.6603182186372578,0.8639344195835292,-0.39516232488676906,-0.2686911076307297,-0.6176353585906327,0.7135483175516129,-0.6983170690946281,0.32568792486563325,0.021248098462820053,0.25407286267727613,-0.7632808079943061,-0.3516600960865617,-0.11466752458363771,-0.13577658077701926,-0.10787507938221097,0.6025425898842514,-0.18230623612180352,-0.5937085594050586,-0.3419224522076547,-0.2940458017401397,0.6070223455317318,0.9766959799453616,-0.5409731264226139,0.5403156592510641,-0.31232557399198413,-0.3940647798590362,0.2762385541573167,0.5644271848723292,0.3086633342318237,-0.42659793654456735,0.3095520376227796,0.38474138686433434,0.950378664303571,0.7226016204804182,-0.9024973916821182,-0.08865730511024594,-0.672962143085897,-0.3972061863169074,0.553600343875587,-0.9610472223721445,0.6292366245761514,-0.5473600644618273,-0.10223325435072184,0.46566913183778524,-0.6362539599649608,-0.4710967275314033,0.2959480620920658,-0.16894236719235778,-0.5822394900023937,-0.1754367481917143,-0.6151693342253566,-0.7276371610350907,-0.20553363440558314,-0.786787633318454,0.8045081724412739,-0.008425334934145212,-0.5372731368988752,0.4425918320193887,-0.5598591631278396,0.3956649098545313,0.9133133413270116,-0.2911969590932131,-0.7571686166338623,0.2064958270639181,0.15657048439607024,-0.12376384576782584,0.20517789758741856,-0.8333640494383872,-0.8998794662766159,0.6134388181380928,0.36033815145492554,-0.15187424374744296,0.4318523043766618,-0.857730716932565,0.5023275804705918,-0.732202893588692,-0.547651641536504,-0.21943080751225352,0.33304703840985894,-0.8344466732814908,0.723522774875164,-0.20692387968301773,-0.587037458550185,0.21397261880338192,-0.5296245398931205,-0.19012325443327427,0.4066256978549063,0.22021357575431466,-0.9388605961576104,-0.08730126079171896,-0.25335187977179885,-0.46862811502069235,-0.9691439396701753,0.5191523935645819,0.6444999841041863,-0.9115422177128494,-0.2574788355268538,-0.6381570748053491,-0.561387118883431,-0.5599053185433149,-0.3000116627663374,-0.6818084130063653,-0.7518699774518609,0.9302536472678185,0.38368226075544953,0.4584738118574023,-0.26111417496576905,-0.40085467463359237,0.4232104793190956,-0.3044458944350481,-0.8377863429486752,-0.9107929454185069,0.1403636229224503,-0.556402234826237,0.5850735190324485,-0.8951705456711352,-0.6366632371209562,0.22527355886995792,-0.2809397028759122,-0.16868434427306056,-0.26602485962212086,-0.5584136382676661,0.9888963378034532,0.4672095370478928,0.025155257899314165,-0.21565057197585702,-0.10226629441604018,-0.5222352570854127,0.10286630457267165,0.3683281121775508,0.9727945541962981,-0.6594138578511775,-0.659928239416331,-0.1700130719691515,-0.2581371986307204,-0.2143277507275343,0.36539416341111064,0.6737799043767154,0.37537627574056387,0.8637509904801846,0.4165547490119934,0.09147970145568252,0.41446339152753353,-0.9452496599406004,0.7933438215404749,0.3026287201792002,0.9895825530402362,-0.10905297053977847,0.9570279605686665,0.5343001913279295,-0.2511564763262868,0.5790389096364379,-0.1262984573841095,-0.7964603030122817,0.5281277415342629,-0.16195189487189054,0.6731219091452658,0.5124286152422428,0.47732599219307303,0.356519544031471,0.8515114737674594,0.05344808241352439,0.47576886508613825,0.5063060284592211,-0.7753542875871062,-0.30232892325147986,-0.0760736889205873,0.2290313015691936,0.6349523924291134,-0.7357609407044947,0.43409836338832974,-0.9332796847447753,-0.3546585072763264,-0.9453522022813559,0.6176403257995844,0.9948649629950523,-0.025080230552703142,-0.9669468724168837,0.9507494973950088,-0.2496684668585658,0.23300080839544535,-0.10131675750017166,-0.8255883916281164,0.8108033263124526,-0.02118938835337758,-0.3127379729412496,0.5072334646247327,0.21965032629668713,0.6958692437037826,0.779318617656827,-0.5799896512180567,0.30726401414722204,-0.6985796517692506,0.9191102595068514,-0.6866091340780258,0.9901727926917374,0.8217934211716056,0.45490696048364043,0.9474679646082222,0.5056947055272758,-0.6926229246892035,0.5013016401790082,0.6251069959253073,0.7670913590118289,-0.7034405614249408,-0.4790423638187349,-0.0742106637917459,0.4867667485959828,-0.7420461461879313,0.8418856980279088,0.305351838003844,-0.4178061396814883,0.6602926845662296,-0.7839779620990157,-0.3342063529416919,0.6767313410528004,0.20718505745753646,0.5038455608300865,-0.7035308941267431,0.6205547470599413,0.1652643638662994,0.4035071930848062,-0.3318547406233847,-0.8861895129084587,-0.23950924165546894,0.7733386266045272,-0.041640222538262606,-0.576332030352205,0.1384863811545074,-0.8895367891527712,0.6868008486926556,0.3770974245853722,0.598238103557378,-0.6480960128828883,0.5708363791927695,0.3852496794424951,-0.15170115139335394,-0.7962017878890038,0.31438259687274694,-0.7242531040683389,0.003898714203387499,0.49314697040244937,-0.819419405888766,0.841068715788424,-0.783455943223089,-0.37349387630820274,0.771573219448328,0.6157348821870983,-0.775620074942708,-0.026552721858024597,0.6584715209901333,0.38866780465468764,-0.9229702339507639,-0.3933331100270152,0.3225079830735922,-0.4863371765241027,-0.4802341382019222,-0.8324066023342311,0.5924624786712229,0.16388173727318645,-0.0763399307616055,-0.8448562542907894,-0.5598484361544251,-0.9136094683781266,-0.8086571521125734,0.12231075251474977,0.20598250394687057,-0.49136435287073255,-0.3711211308836937,-0.7907452988438308,-0.5568431257270277,-0.19110883167013526,-0.2254951694048941,0.21211263118311763,0.09668848849833012,0.14120887452736497,0.8423800035379827,0.3142904839478433,-0.4817915679886937,0.4039448439143598,0.1268240292556584,0.5452257441356778,0.49540559435263276,-0.15081246430054307,0.7807207019068301,0.016076821368187666,0.3977195299230516,-0.2379117514938116,-0.1639108331874013,0.618115205783397,-0.9199057263322175,0.3783331671729684,0.20708707300946116,-0.7121752579696476,-0.8739974019117653,0.5934217367321253,0.8953377231955528,-0.06704709585756063,0.5936391842551529,0.00803200202062726,0.7971090860664845,-0.5976424533873796,0.6797232152894139,-0.3687940966337919,-0.3341317279264331,-0.3783591683022678,0.854875820223242,0.2583658043295145,0.8661890421062708,-0.09468208346515894,-0.13487230986356735,-0.9284078273922205,0.36933090072125196,-0.4474382041953504,0.14790185866877437,-0.3305512354709208,0.7833815305493772,-0.7355248327367008,0.00777065847069025,0.4881609887816012,0.7151712230406702,0.044996341690421104,-0.026029855478554964,-0.41724659921601415,-0.10135533707216382,0.7972960891202092,-0.9329052777029574,0.31527076475322247,-0.5338100963272154,-0.07665600581094623,0.9347557774744928,-0.05631723161786795,0.5652199075557292,0.8523958818987012,-0.4764100634492934,-0.5105093852616847,-0.12476092763245106,-0.08841351140290499,-0.5421198848634958,0.21566386800259352,-0.9287577476352453,-0.3983994834125042,-0.0015521291643381119,-0.23672139924019575,0.8142239432781935,-0.5027666385285556,-0.12679855339229107,-0.20345629379153252,0.38017737586051226,0.45780174201354384,-0.2753234221599996,-0.6270518847741187,0.2876735865138471,0.2917853849940002,0.5436849785037339,0.6210951642133296,0.2652798476628959,-0.34415116999298334,-0.27253783075138927,0.7703691273927689,-0.5753519679419696,-0.6160358660854399,-0.8595751151442528,0.6589566376060247,0.8502306756563485,-0.46056256629526615,0.49333129869773984,0.9442696101032197,0.8309094705618918,-0.24461647868156433,0.22460196912288666,-0.8883500108495355,0.24891623761504889,0.9240841306746006,-0.18358995765447617,-0.8660259521566331,0.38479633163660765,-0.4816288687288761,0.43889255775138736,0.5848352774046361,-0.9640464512631297,0.3745047780685127,0.6620152196846902,-0.33792762039229274,0.7449222523719072,-0.3924417048692703,-0.7630798178724945,-0.17883114563301206,0.0010259761475026608,0.19702465226873755,0.4997625034302473,0.40890532126650214,0.38746283715590835,0.3471639547497034,-0.6590394251979887,0.5668208543211222,-0.17927491758018732,0.40249232901260257,0.9560216711834073,-0.05068341316655278,0.6914538573473692,-0.14090250059962273,0.32938940078020096,0.34797700867056847,-0.0766486544162035,0.9271398573182523,0.7351135578937829,0.1771877184510231,-0.23362158657982945,-0.15393500681966543,-0.6954802237451077,0.6591100255027413,-0.02819301513954997,-0.982334716245532,-0.2638593493029475,-0.01023022085428238,0.9696896420791745,-0.40287453029304743,-0.6810772763565183,0.259897671174258,-0.07138557033613324,0.8434856357052922,0.4440608946606517,-0.861214398406446,-0.12920927023515105,-0.20954881189391017,-0.4122769725508988,-0.20901367673650384,-0.2980124233290553,0.1142320279031992,0.07423935644328594,-0.7011041259393096,0.7014065887778997,-0.9101789579726756,0.8628156799823046,0.974565860349685,0.27365762880072,-0.9409793401136994,0.43810833897441626,0.823133397847414,0.7693477761931717,0.7287739934399724,0.6026753257028759,0.6840279093012214,-0.17697309982031584,0.42626004945486784,-0.7389827179722488,0.9056781088002026,-0.7928408812731504,-0.36483690422028303,0.8711579176597297,-0.5964669627137482,-0.33016301738098264,0.09073645435273647,0.3236435726284981,0.5729674557223916,0.9214828554540873,0.8640478369779885,0.6380549445748329,0.23870827909559011,0.9352997783571482,0.09468650259077549,-0.8872991055250168,0.8986875033006072,0.06732534151524305,-0.8733645686879754,0.5775891812518239,-0.6055021113716066,0.5010235421359539,0.0949736749753356,-0.5103280134499073,0.9461241294629872,0.19734597112983465,-0.4962408849969506,0.9991451012901962,-0.07781487004831433,-0.02028533723205328,0.37270335853099823,-0.9919324922375381,0.4540732214227319,-0.5112400902435184,0.5165343466214836,0.14033062057569623,0.029024086892604828,0.7910637771710753,0.30560352886095643,0.58496961183846,-0.32701300643384457,0.5721399108879268,-0.22323148418217897,0.03629973065108061,0.8514756979420781,0.13644348876550794,0.9998492659069598,-0.7956623900681734,-0.802772612310946,-0.6453778664581478,-0.9249624432995915,-0.7499698982574046,0.22698641754686832,0.9182237666100264,-0.862550588324666,-0.1769522214308381,-0.8229536931030452,-0.9106684722937644,0.47140846075490117,-0.8985235309228301,-0.6179215884767473,0.3582979701459408,-0.860626193229109,0.1777300457470119,0.8652422572486103,-0.09227455407381058,-0.0965158948674798,0.05189236532896757,-0.9721836037933826,-0.18629694543778896,-0.9018195853568614,-0.4624787946231663,0.4374419474042952,0.7373284203931689,-0.9077929151244462,-0.9453402599319816,-0.6877178559079766,0.14001320581883192,0.08749698521569371,-0.8975718831643462,0.01729959575459361,-0.6139137926511467,-0.38164250180125237,0.8117687879130244,0.8698951825499535,0.7745335348881781,0.8631209162995219,-0.43675929959863424,0.0005841259844601154,-0.6507418272085488,0.8369744252413511,-0.7398131829686463,0.8058283771388233,0.6818339568562806,0.5314268521033227,-0.2824538182467222,-0.2958363648504019,0.5647393385879695,0.1593033941462636,-0.5542791187763214,0.5357958422973752,-0.222914919257164,-0.43435727758333087,0.6705250730738044,0.7421136489138007,-0.06025039264932275,-0.8065617959946394,0.544842625502497,-0.4216310977935791,0.6890917383134365,0.435586703941226,-0.5270400959998369,-0.7685170685872436,-0.8237862619571388,0.5371294864453375,-0.42375542130321264,-0.7577284090220928,0.67633843049407,0.5331936781294644,0.06733335321769118,-0.20599420182406902,-0.46930858260020614,-0.7267122683115304,-0.9157539983280003,-0.4667555564083159,0.8401879109442234,-0.9962212108075619,0.8907526102848351,-0.8508058274164796,-0.2605628902092576,0.01914438884705305,0.9058794439770281,-0.22069347091019154,0.4748949664644897,-0.2837126115337014,0.4775759857147932,0.6478699813596904,-0.5974290082231164,-0.484775573015213,0.6682955813594162,0.3830734584480524,-0.06019863113760948,0.9192868266254663,-0.21665229182690382,-0.19073018431663513,0.6038140305317938,0.5694476841017604,-0.5681526008993387,0.20542763266712427,0.028558786492794752,-0.38602790562435985,-0.1330606979317963,0.03194363787770271,0.39846936240792274,-0.23410782078281045,0.5205406709574163,0.8027189848944545,0.590354488696903,0.11417233385145664,0.8946379097178578,0.28222111193463206,0.7472413079813123,0.9029917987063527,-0.31731979409232736,-0.7799991751089692,-0.6304724365472794,0.6285760481841862,0.2080382532440126,-0.12725922418758273,-0.353853773791343,0.755070807877928,0.02382685150951147,0.14047206053510308,-0.4017662722617388,0.9724201480858028,-0.6567818997427821,-0.7340704430826008,-0.9687561942264438,-0.8328096144832671,0.7473050686530769,-0.5905944840051234,-0.07638166518881917,0.1442393339239061,-0.12003052840009332,-0.2004347606562078,0.3543044528923929,0.8786908108741045,-0.726144983433187,-0.3037926973775029,0.7654982870444655,0.3549507181160152,0.9285812927410007,-0.4275062847882509,-0.5689906561747193,0.4781735483556986,-0.13146925484761596,0.9618068155832589,0.0950146852992475,-0.7837165123783052,-0.86224505584687,-0.1283722436055541,0.01948165986686945,-0.9965140190906823,0.8978294930420816,0.3457799036987126,0.6550617460161448,-0.9543536514975131,0.16133456444367766,0.981080702971667,0.14789954898878932,-0.028630034998059273,0.6698688259348273,0.10074241366237402,-0.5651326854713261,-0.8047858574427664,0.5483224857598543,-0.48187635326758027,-0.3150220764800906,-0.8876167684793472,-0.950954376719892,-0.7405804423615336,-0.9524698369204998,0.33313203835859895,0.7407744089141488,0.7785362303256989,0.06995282787829638,0.3787165363319218,0.06837997678667307,-0.6809847964905202,-0.226574354339391,0.5737228011712432,-0.8784680836834013,0.07349882833659649,-0.7277867496013641,0.024862827733159065,-0.9820973621681333,0.0601855986751616,-0.30519093153998256,0.4086708342656493,-0.9867136864922941,0.39587904093787074,-0.8381756790913641,-0.3188703912310302,0.4388325586915016,-0.24137167818844318,-0.3705777316354215,0.6219789162278175,-0.5964295011945069,-0.022683688439428806,-0.4265029290691018,0.6926854802295566,-0.8127833805046976,-0.8597017573192716,0.41596305137500167,-0.2815216016024351,-0.5741774076595902,-0.430108904838562,-0.9892027294263244,0.7379471021704376,0.15332602337002754,-0.2504970906302333,-0.20458185020834208,0.5691066076979041,-0.18272754130885005,0.5405475562438369,-0.9436958818696439,-0.36396078998222947,0.9851700523868203,-0.1177859422750771,0.34193006716668606,0.2099142549559474,-0.5812720316462219,-0.4859726494178176,0.48447929602116346,0.8324046256020665,0.11866989452391863,-0.4271912961266935,-0.8320170403458178,0.5716642695479095,0.3228725721128285,0.7092334791086614,0.6717197732068598,-0.13492001499980688,0.15387357212603092,-0.7517708190716803,-0.590525462757796,-0.5485622333362699,0.23398613650351763,-0.41411502938717604,0.725053318310529,0.6276710606180131,-0.9419853440485895,0.2679352890700102,0.09772668872028589,-0.6569198006764054,-0.39149894285947084,0.12144732475280762,0.8135663410648704,0.768689728807658,-0.2881907750852406,0.0511197024025023,-0.2014861931093037,0.5156888193450868,-0.11067051952704787,-0.034303135238587856,-0.6458130776882172,-0.1662071980535984,-0.5619739759713411,-0.6604523346759379,0.5680033224634826,-0.2515742527320981,0.26635743491351604,-0.9980998877435923,0.8360241451300681,0.2372424779459834,-0.1366543802432716,0.2785602235235274,0.3212304790504277,0.5034101270139217,0.13112127222120762,-0.7404988538473845,0.4145937324501574,-0.17245821794494987,-0.6230460456572473,0.8744524922221899,0.7285328228026628,-0.8791023083031178,0.3417222797870636,-0.12406745413318276,-0.9054561732336879,0.8974637407809496,0.11917591420933604,0.8068784200586379,0.23708732053637505,-0.20986460242420435,-0.1522178640589118,0.1589094907976687,0.17300074081867933,0.09506156388670206,-0.43565855687484145,0.5964147793129086,0.098343291785568,0.9154527201317251,0.9889201265759766,-0.7458388796076179,0.3867242718115449,-0.5462143123149872,0.9622003342956305,0.5991417341865599,-0.18969157803803682,-0.05937608890235424,-0.4806940178386867,0.2339287707582116,0.5361200575716794,0.9004679839126766,0.17087480006739497,-0.2024996867403388,0.09896187577396631,-0.19627337576821446,0.783816244918853,0.3212348804809153,0.8013370092958212,0.025509459897875786,-0.011064887046813965,0.6212235065177083,0.1253535677678883,0.5653094747103751,0.9336308729834855,0.2903920649550855,-0.02010432304814458,-0.9328068713657558,0.2256782641634345,-0.18490414367988706,0.8065262017771602,-0.3614442930556834,-0.4739324441179633,-0.6399648003280163,0.74304901342839,0.4905140921473503,-0.4588051247410476,0.11588208610191941,0.4360106773674488,0.1849994296208024,-0.8145763846114278,0.863590273540467,0.5917228651233017,-0.1624523838981986,-0.04854407859966159,-0.6702268538065255,-0.5515727652236819,0.94664121652022,-0.07671658927574754,-0.9146209876053035,0.755935859400779,0.533288820181042,0.7276940611191094,-0.9964289758354425,0.3713313485495746,0.4848009399138391,-0.7464241236448288,0.07616990432143211,0.7023421386256814,-0.2955569648183882,-0.5385552700608969,0.07996734278276563,-0.39003676222637296,-0.9000701610930264,0.04548388114199042,-0.9259803206659853,-0.9241483034566045,-0.274850110989064,-0.919132050126791,0.08140634745359421,-0.5824695834890008,-0.35292149102315307,-0.8274459978565574,0.06668070750311017,0.6441380134783685,-0.5256708431988955,0.05847099656239152,0.45222793612629175,-0.09804126061499119,-0.2550766705535352,-0.5619902275502682,-0.7871999191120267,0.34296935703605413,0.18132377788424492,0.5462832795456052,-0.4247544566169381,-0.4265577937476337,-0.8392016901634634,-0.5603985064662993,0.20648978371173143,0.04556241724640131,-0.33757467987015843,0.5941600245423615,0.9336591954343021,-0.38157140323892236,0.21509431395679712,0.3560733920894563,0.7426093337126076,-0.5724520203657448,-0.6117091658525169,-0.7364139584824443,0.8437655759043992,-0.04447761969640851,-0.9221304557286203,-0.9232254084199667,-0.6283318283967674,-0.6737276464700699,-0.12545446027070284,0.8897893182002008,-0.026981030125170946,0.377630228176713,-0.5666616656817496,0.6859713587909937,0.7612542491406202,-0.8610996389761567,-0.29001043923199177,-0.3077088603749871,0.28076725639402866,0.4086417672224343,0.23158779134973884,-0.30909823440015316,0.1897491910494864,-0.43015559995546937,-0.6720285033807158,0.681477555539459,-0.09911979408934712,-0.46361107053235173,-0.08297790680080652,0.9010521834716201,-0.19805588154122233,0.3648949069902301,0.9468198511749506,0.9751494461670518,-0.09907057648524642,0.6436524046584964,-0.6513955956324935,-0.3701661378145218,0.10395584674552083,-0.6680883914232254,0.7455310709774494,0.7546806838363409,0.03833974478766322,-0.734177275095135,-0.7195905013941228,-0.07272270461544394,-0.8692885488271713,0.4909491748549044,-0.1213293387554586,0.3677137605845928,0.3288129232823849,-0.9442151668481529,0.7567489566281438,-0.3911165213212371,0.6393983135931194,0.7867366438731551,-0.2453544824384153,-0.047551607713103294,-0.07957569556310773,0.42374556697905064,-0.9337614639662206,0.7603974030353129,0.7923753717914224,-0.8774334285408258,-0.2605813001282513,0.6314716194756329,-0.27455196902155876,0.1968683642335236,0.9606420113705099,0.1413368135690689,0.06750830914825201,0.36837615026161075,-0.3955973689444363,-0.7085651103407145,0.9193555028177798,0.8284065946936607,-0.7252709842287004,-0.5013924627564847,-0.7110769702121615,0.3998327669687569,0.668561645783484,-0.6595387263223529,-0.25180243514478207,-0.19003381812945008,0.3255706615746021,0.8043553922325373,0.33690117206424475,0.1745808287523687,0.7951449300162494,0.9202082501724362,-0.29266787599772215,-0.2249546111561358,-0.6336461906321347,0.12688127299770713,-0.07271148264408112,0.6967687970027328,-0.3576821945607662,0.6406742590479553,-0.76737593812868,-0.9230370228178799,-0.990027186460793,-0.6591643248684704,-0.9624102632515132,-0.5477158264257014,0.8141764579340816,0.7027996340766549,0.9740406414493918,0.4897503899410367,0.9544692393392324,-0.6370210652239621,0.9623060771264136,-0.5558538851328194,-0.8923215395770967,0.752257133834064,-0.7224840014241636,0.73882059706375,0.9223576453514397,-0.8145327400416136,-0.08213661191985011,0.09729034500196576,-0.9029200775548816,-0.3619039454497397,0.16579863475635648,-0.909690307918936,-0.01908999914303422,0.7433753646910191,-0.0032498110085725784,0.07907505612820387,0.3338810820132494,-0.043231766670942307,-0.17465681117027998,0.28270095866173506,-0.40906716091558337,-0.699615593533963,0.718104905448854,0.40492144087329507,-0.8686414766125381,0.18969638412818313,-0.4027154357172549,0.9256932586431503,0.37623001961037517,0.6478107888251543,0.4973511886782944,-0.6884154132567346,-0.023981951642781496,-0.9821273074485362,-0.9636034155264497,0.34848803002387285,-0.9308342481963336,-0.6679842351004481,0.22023540688678622,0.8283615941181779,-0.4527063802815974,-0.4481871319003403,0.9410172961652279,0.8273094943724573,-0.5682573076337576,0.9035385134629905,-0.15898119704797864,-0.8946459777653217,0.9658468514680862,0.8186542661860585,0.00046114111319184303,0.9654221902601421,-0.20454116025939584,0.5872062523849308,0.06796729192137718,0.03542872006073594,-0.3136181263253093,0.0499306870624423,0.16891161957755685,0.6612482047639787,0.12450505886226892,0.7173372162505984,0.9713012450374663,0.8334820363670588,0.9606935768388212,0.21105842851102352,0.6872850889340043,-0.07031109742820263,-0.7986794556491077,0.14306221017614007,0.11027189902961254,-0.0474872593767941,0.02972279442474246,-0.7845470025204122,0.877321767155081,-0.2896670582704246,-0.9857930582948029,-0.699296532664448,-0.6625876370817423,-0.32015618309378624,-0.6392069775611162,0.9178703636862338,-0.9098363164812326,-0.9906053654849529,-0.13817424047738314,-0.9209978706203401,-0.3910770174115896,-0.06078233662992716,0.1819305676035583,-0.7836350430734456,0.07140820566564798,0.771821525413543,-0.6521417256444693,0.9877719138748944,0.6618406628258526,0.58331757504493,0.5979556324891746,0.5273973997682333,-0.5064881891012192,0.2044125273823738,0.23395276302471757,0.004324317444115877,0.5963087175041437,-0.9141115415841341,-0.018090355210006237,0.30313049210235476,0.7314145257696509,-0.5220297328196466,0.09174044709652662,0.9654349931515753,0.7792497868649662,-0.6097230981104076,0.48570231068879366,0.4406482921913266,-0.03809624817222357,0.424077860545367,-0.35571336932480335,-0.16732095601037145,0.8243241822347045,0.8093551616184413,-0.3800957491621375,-0.7010981417261064,-0.2791388826444745,-0.5884906696155667,0.6546079847030342,0.2805820773355663,-0.7052422049455345,-0.16687936102971435,0.6550833396613598,-0.7480454263277352,0.05220999429002404,0.2526746718212962,-0.24197189323604107,-0.129982755985111,-0.013829324394464493,-0.2729547889903188,-0.1250882688909769,0.7546495380811393,0.47680823830887675,0.17925684619694948,0.8037338266149163,0.44726279424503446,-0.6773828165605664,-0.6348786540329456,-0.8104917798191309,-0.5416047452017665,0.2847912451252341,-0.08660284196957946,0.4815373751334846,0.7319551394321024,-0.4006672357209027,-0.6828351831063628,0.4974624952301383,-0.9036794826388359,-0.6264072335325181,0.7694909158162773,0.7381821083836257,-0.802738796453923,-0.3863138724118471,-0.9333104942925274,-0.08220993960276246,0.4002282666042447,0.4217157904058695,0.08253629552200437,-0.033114193473011255,0.26672005094587803,0.7044594935141504,-0.8478740700520575,-0.371286912355572,0.35144682321697474,0.0932020922191441,0.86037562135607,-0.6841566236689687,-0.33854249212890863,0.24620184022933245,0.02544588688760996,-0.13960716919973493,0.6781522380188107,-0.10895577305927873,-0.5709822583012283,-0.14072919264435768,-0.6015655696392059,0.6783863566815853,-0.3043689518235624,-0.6358220856636763,-0.2168844835832715,0.3968352391384542,-0.7128030764870346,0.10400689812377095,-0.5265477686189115,-0.8392071975395083,0.261011257302016,0.16648241272196174,0.8493082583881915,-0.2689595213159919,-0.3345005679875612,0.7988865184597671,0.0379074621014297,0.9888149364851415,0.5595927988179028,0.8443123209290206,0.039618580136448145,0.32219120441004634,-0.1741558499634266,0.2350120604969561,0.6074502295814455,-0.3157855593599379,0.9230214986018836,-0.32523011369630694,0.2556103612296283,-0.3289212053641677,-0.5001577460207045,0.7074690968729556,0.8344217627309263,-0.8589032543823123,-0.8458152743987739,-0.6098648123443127,-0.44130180682986975,0.5083888489753008,0.24996202671900392,-0.42503977566957474,-0.12933256523683667,-0.39067236240953207,-0.346513357013464,0.565529830288142,-0.11291424743831158,0.2148198876529932,-0.33743778755888343,0.1759267090819776,-0.7287217313423753,-0.925484879873693,0.664397491607815,0.7635196470655501,0.40947461873292923,-0.9633547458797693,0.49144319351762533,0.11156761925667524,0.8911853893660009,-0.21267777541652322,-0.06069508846849203,-0.2355732498690486,0.9893174692988396,0.9748139521107078,-0.1389496480114758,-0.7724364004097879,0.5588462352752686,-0.7417395520024002,-0.9777704509906471,0.5117216766811907,0.8246597973629832,0.2745082499459386,0.5426438609138131,-0.021073197945952415,-0.530717583373189,-0.006542665418237448,0.5348572698421776,0.6139265233650804,0.10632764408364892,0.4444946348667145,0.5867701973766088,-0.7091190270148218,0.311730885412544,-0.49636106844991446,-0.07893077377229929,0.02658741269260645,-0.5486530745401978,0.6103555303998291,-0.7544225347228348,-0.423903938382864,-0.5366785018704832,-0.6184820397756994,0.759206700604409,-0.544566364493221,-0.9177896161563694,-0.6954780695959926,0.660967449657619,0.6063269269652665,0.27203963370993733,-0.03847261983901262,0.32389318896457553,-0.7391306110657752,-0.40588688664138317,0.8467272655107081,-0.08708981890231371,-0.6039733164943755,-0.1046015596948564,-0.06578038400039077,0.27116816490888596,0.6336332662031054,-0.49503971030935645,-0.6068080267868936,-0.07451026840135455,-0.4684386192820966,0.751067022792995,-0.4958899961784482,0.15728090470656753,-0.7285274392925203,-0.8923891289159656,0.13521067332476377,0.7425728421658278,0.3659497769549489,0.46397352078929543,-0.3431184906512499,0.4934077584184706,-0.510310654528439,0.6703954329714179,-0.9899990046396852,0.10154812829568982,0.33688744250684977,0.788872008677572,0.3352643297985196,-0.35498206038028,0.3593345172703266,-0.8363226810470223,0.8013466615229845,0.8862890503369272,0.35919467685744166,0.5781405703164637,-0.877137076575309,0.5377162978984416,-0.2650104998610914,-0.5199782936833799,-0.8657786231487989,-0.28746774047613144,0.002070808783173561,0.14158567460253835,-0.23343413043767214,-0.9589087567292154,-0.3447955884039402,-0.7970596617087722,-0.004171030130237341,-0.41400828026235104,0.2220178754068911,-0.15530230244621634,0.010041614063084126,-0.17369959503412247,0.39158661011606455,0.5883201495744288,0.10559894377365708,-0.1121466332115233,0.8065920444205403,0.29929758608341217,0.3937518699094653,0.2506346283480525,0.03167375596240163,0.7763628424145281,-0.5634392998181283,0.8763757017441094,0.34163269866257906,0.7145938626490533,0.36715792678296566,-0.9690599534660578,0.981781626585871,-0.092803998850286,-0.19751297496259212,0.5883114039897919,-0.019597944803535938,-0.3833647849969566,0.459677426610142,-0.40636692428961396,0.5691391825675964,-0.8084573526866734,-0.7270388952456415,0.8894956125877798,-0.13710870500653982,-0.17959042405709624,0.759286574088037,0.6206129756756127,0.32002246333286166,-0.23466374864801764,-0.3959643244743347,-0.8887309487909079,0.17579045705497265,0.7363558695651591,-0.8666156050749123,-0.5136039885692298,-0.27361999778077006,-0.040464280638843775,0.9591442509554327,-0.4488262915983796,-0.2741884826682508,-0.8741294755600393,0.87834193976596,0.08004242926836014,0.6800761655904353,0.0030852723866701126,-0.780424686614424,-0.0886383568868041,-0.3651288151741028,-0.7190696401521564,0.2595353592187166,0.34901356883347034,0.2501184600405395,0.47969220904633403,0.26958144968375564,0.33873164001852274,-0.47373996395617723,-0.9925135257653892,0.48324802285060287,-0.12635381892323494,-0.5855802339501679,-0.5554222380742431,0.9427945618517697,-0.6648342562839389,0.8269268958829343,0.51648426707834,-0.5822198316454887,0.16844546142965555,0.7691600415855646,0.4533400018699467,0.44281478598713875,-0.3738302420824766,-0.12168610002845526,0.6155664026737213,-0.23737166402861476,-0.33534529339522123,-0.43732501240447164,-0.3244378734380007,-0.6944405334070325,-0.7275828784331679,-0.4701514025218785,-0.07358487136662006,0.209628124255687,0.19977794587612152,-0.668780395295471,0.14136589830741286,-0.2444469379261136,-0.10265088872984052,0.08706767903640866,0.4177346136420965,0.3003581869415939,0.8123934604227543,0.2203400181606412,-0.5663740015588701,-0.3797669014893472,-0.8929283749312162,-0.011974833905696869,0.700348608661443,0.5322212660685182,0.33738348353654146,0.7260718294419348,-0.8872395963408053,-0.7644398123957217,-0.9975676406174898,0.24830058636143804,-0.3973474237136543,-0.21189033286646008,-0.7902683485299349,0.1672815508209169,-0.8066397653892636,0.9836079278029501,-0.6397458286955953,-0.6332102087326348,-0.2533689448609948,0.43584434362128377,-0.34842476388439536,-0.27657699678093195,-0.9542491352185607,-0.25437752716243267,0.22480848478153348,0.30979198729619384,0.22488080244511366,0.014701892156153917,-0.7990591730922461,-0.034693256951868534,-0.9672596137970686,-0.20298624923452735,0.9455579668283463,0.8799015530385077,0.8565988186746836,-0.9366126945242286,-0.6932761529460549,-0.9955945434048772,-0.6105624469928443,-0.3037113584578037,0.030856299214065075,-0.7628885973244905,0.3110227989964187,-0.1536518200300634,0.8745084712281823,0.7910898821428418,-0.5009507602080703,0.7428315244615078,0.6463867863640189,-0.5029475321061909,0.09729496156796813,0.5303869736380875,-0.7136210077442229,0.41581648774445057,-0.6237438814714551,-0.8026717295870185,-0.3025904060341418,0.8626475017517805,-0.26095662312582135,-0.011640367098152637,-0.38637860771268606,0.978743621148169,-0.04806528287008405,-0.8604534477926791,0.9657988362014294,-0.6107902717776597,-0.5774786402471364,-0.10007199412211776,0.11522251646965742,0.8828758429735899,-0.13333747908473015,-0.46031466824933887,0.6073039378970861,-0.2882811017334461,-0.1241616802290082,0.5258199265226722,-0.055827036034315825,0.021286443807184696,-0.6376563785597682,-0.7086204523220658,-0.9879396357573569,-0.5011957380920649,0.53322619991377,-0.3002650886774063,0.0382413393817842,0.956985330209136,0.045164356008172035,0.3648595344275236,0.6794566982425749,0.8761610626243055,0.23387230886146426,-0.5209042481146753,-0.4079973832704127,0.9318938623182476,0.8985625891946256,0.2399218170903623,-0.7721170759759843,0.2727166377007961,0.36268265964463353,-0.47142560686916113,-0.33883944246917963,-0.78353989450261,-0.7183940038084984,0.5569957531988621,0.0005615139380097389,-0.8888751906342804,0.29569543385878205,0.2902995408512652,-0.7875814321450889,0.2977806627750397,0.8069886430166662,0.8090094160288572,-0.706829059869051,-0.9114307938143611,-0.2708751168102026,0.7877814429812133,0.9387215818278491,0.716939012054354,0.8227396621368825,0.9735064483247697,0.4390927948988974,0.38399356231093407,-0.07451740512624383,0.6597343753091991,-0.2649560710415244,-0.011688001919537783,-0.6406658105552197,-0.684703472070396,-0.8503080308437347,0.15089982515200973,0.5146911311894655,-0.7914615389890969,-0.8219718914479017,-0.8434611298143864,0.5631213719025254,-0.6668569943867624,-0.05783598776906729,-0.22112707467749715,0.6899672453291714,-0.27780401846393943,0.81066924193874,0.36087240371853113,-0.9541913564316928,-0.47352853510528803,-0.5791009655222297,-0.5736828409135342,-0.016127532348036766,-0.1663752095773816,-0.6235622256062925,-0.20181350968778133,-0.3941421830095351,-0.6948909251950681,-0.07850480638444424,-0.6713840342126787,-0.8997992598451674,-0.3619923363439739,-0.4515678780153394,0.19315667496994138,0.19525158172473311,0.9213083391077816,-0.10321366228163242,0.5418436150066555,0.1237169518135488,-0.20086348662152886,-0.9652853007428348,-0.18628091970458627,-0.5393233885988593,-0.9752325806766748,-0.44701215252280235,-0.9893485861830413,-0.6838874141685665,0.11969918617978692,0.0018748645670711994,0.44363822834566236,0.7464532707817852,-0.7754001994617283,0.5295683755539358,-0.19691665517166257,-0.6420323606580496,0.018577543552964926,0.9712387844920158,-0.8224743558093905,-0.17555259680375457,-0.8550364328548312,0.3962031779810786,0.531807598657906,0.9370832378044724,0.4177149417810142,-0.3142927805893123,-0.8511488409712911,0.6952525619417429,0.8929350874386728,-0.5061042029410601,0.901108784135431,0.5129492748528719,-0.1369767258875072,0.8654895909130573,-0.9087963430210948,0.957824757322669,-0.4173907027579844,-0.004243362229317427,0.33497171150520444,-0.2391622830182314,0.4865022674202919,-0.4723171074874699,0.19445453817024827,-0.43661957839503884,0.4596127113327384,0.2716411673463881,-0.9201600672677159,-0.2284698886796832,-0.3168561225757003,-0.18320136610418558,-0.8361140619963408,0.3003638153895736,0.13496294291689992,0.7688729013316333,-0.47219580691307783,-0.8847261406481266,0.6223693965002894,0.5402973666787148,0.36631116596981883,0.2612740667536855,-0.9307388211600482,-0.14303892897441983,-0.771821956615895,0.3673905492760241,-0.617435391061008,0.865873780567199,-0.23193047242239118,0.6710419016890228,-0.6756155579350889,0.14991741301491857,0.4411888006143272,0.6575260357931256,0.6013335129246116,0.6273515019565821,0.8499886528588831,0.7522129486314952,-0.7088515479117632,-0.5978331929072738,-0.3546122661791742,-0.11917426902800798,-0.8719949414953589,-0.44656761828809977,-0.2349106320179999,0.2985802530311048,0.5711391740478575,-0.6893341429531574,-0.636572518851608,-0.3623528331518173,-0.2798225712031126,0.1947723999619484,-0.4173309914767742,0.7369702872820199,0.5250807874836028,-0.7570338090881705,-0.5212167650461197,-0.5675076432526112,-0.4591919262893498,-0.012040730565786362,-0.4377484815195203,-0.3554961676709354,-0.573031741194427,0.7471170341596007,0.6316136079840362,-0.6136209615506232,-0.3080174895003438,0.20726990140974522,-0.06641954649239779,-0.6934680650010705,0.6756774364039302,-0.12789400713518262,0.1502109132707119,0.7362885037437081,-0.42117839958518744,0.4016495202668011,0.05405572894960642,0.9512035138905048,0.5629032654687762,-0.07453355938196182,0.008693564217537642,-0.1829228182323277,-0.39484070939943194,0.4001166238449514,-0.8903527148067951,-0.3884026864543557,-0.10115807503461838,0.5837405766360462,0.17433770932257175,0.5614117523655295,-0.4013891634531319,-0.33876639045774937,0.9491388276219368,0.6143859457224607,-0.32021227525547147,-0.7769340905360878,-0.6378917349502444,-0.5598820964805782,-0.8502069949172437,-0.491767305880785,-0.44213772332295775,0.043561941012740135,0.8141434853896499,-0.8014039876870811,-0.25564012955874205,-0.0023628966882824898,-0.8950192332267761,-0.10457149241119623,-0.890247224830091,0.4769324706867337,0.11927616968750954,-0.663287150207907,-0.5063319518230855,0.5842864927835763,-0.7436763946898282,-0.011273773852735758,0.7253400236368179,0.6332731242291629,-0.18481926433742046,0.1871979278512299,0.11555231781676412,-0.6839529448188841,-0.7205118299461901,0.7084770402871072,-0.19456425728276372,-0.3820432429201901,0.3047694889828563,0.1405649404041469,-0.3032091544009745,0.4961068541742861,-0.8820401048287749,-0.9683331209234893,0.3498667976818979,-0.8411453505977988,-0.4944856455549598,-0.21688000159338117,-0.11359207844361663,-0.5518781393766403,-0.4377474617213011,-0.052600480150431395,0.3992915987037122,-0.5644795070402324,-0.17215590784326196,-0.9744955110363662,-0.004183677490800619,-0.25400276156142354,-0.07524163369089365,-0.39439681731164455,-0.9166016578674316,-0.22601146204397082,0.7200505388900638,0.009451049380004406,-0.9618774247355759,-0.6420923671685159,0.08992786379531026,0.49196205008774996,0.4286735556088388,0.05558938067406416,-0.8659448232501745,-0.7315190653316677,-0.4085250520147383,-0.4625236000865698,-0.5483378055505455,0.9948313436470926,-0.43365497421473265,0.8588125584647059,0.7323280014097691,0.37389675388112664,-0.4425610606558621,0.3145121126435697,0.6446602288633585,-0.971171269658953,0.4335579015314579,0.16882551554590464,0.9715671460144222,0.1850695046596229,0.793056377209723,0.11222852626815438,0.2216893290169537,0.8488659425638616,0.12445019418373704,-0.5203824709169567,0.30721512669697404,0.3071867944672704,-0.2975170216523111,0.5292853806167841,-0.03132842946797609,-0.3570851730182767,0.11584169324487448,-0.6222277050837874,-0.23154469346627593,0.9229187937453389,-0.797030056361109,0.9303918788209558,0.7717304523102939,-0.052607504185289145,0.19684187602251768,-0.5393731207586825,-0.8548964601941407,-0.06673776498064399,-0.45741951279342175,0.8711722795851529,0.33360047172755003,-0.4005372477695346,-0.9775460800155997,0.999841470271349,0.711126184090972,0.48255047714337707,0.04372817883267999,0.48062690161168575,0.10912032518535852,-0.9856084939092398,0.4350484786555171,-0.442050299141556,0.8580305082723498,-0.7536679534241557,-0.15999702783301473,0.06406073505058885,0.6089968346059322,-0.985144660808146,-0.5933591560460627,-0.9489192022010684,0.991960630286485,0.13124330900609493,-0.3525055404752493,0.9703970202244818,-0.38284467440098524,-0.5023678480647504,0.252354200463742,0.883392262738198,0.851888261269778,-0.4853095468133688,0.02958890562877059,-0.8244852432981133,0.6796810594387352,0.4474686929024756,-0.8295824811793864,0.07813491439446807,0.4611157733015716,0.06597901741042733,-0.18505495553836226,-0.22237531701102853,0.7912089833989739,0.2108476059511304,0.6240621479228139,0.41117607755586505,0.5958947017788887,-0.5009785732254386,-0.5015809419564903,0.3813444245606661,-0.27121574617922306,-0.4347194763831794,-0.09960487764328718,0.1711444864049554,-0.4025628608651459,0.35401757434010506,-0.2904115878045559,-0.6131890639662743,0.02999963890761137,0.44146938528865576,-0.8090792312286794,0.9307793485932052,0.34415248688310385,-0.69248157273978,-0.1417610556818545,0.13272717641666532,0.9843210284598172,-0.3917444455437362,0.1577678774483502,-0.0654225037433207,0.8154679639264941,-0.0661422316916287,-0.8488249173387885,-0.09234481723979115,0.7057564333081245,-0.9739622892811894,0.07717404747381806,-0.6870882557705045,0.767254204954952,0.2407006723806262,-0.8482154351659119,-0.1293497304432094,0.9457067926414311,0.8233729358762503,0.746569327544421,-0.5154558504000306,-0.5230143689550459,-0.3160648359917104,-0.7818191172555089,0.8384101525880396,-0.41693298937752843,0.013508150354027748,0.06850115908309817,0.4723496991209686,-0.44716151850298047,-0.9319529463537037,0.6486317426897585,-0.4768454348668456,-0.8010060293599963,0.3339060442522168,-0.10109323030337691,0.41333849262446165,0.1429848289117217,0.006518140900880098,0.24355768458917737,-0.4617433804087341,-0.49524558894336224,-0.22485256334766746,-0.8513572518713772,0.15673100017011166,0.36491167545318604,0.4483183636330068,-0.6959594860672951,0.02344826515763998,0.00911794975399971,-0.22791308723390102,0.3855473888106644,-0.601874359883368,-0.8959490479901433,0.6893303315155208,-0.4711378961801529,-0.7872386630624533,-0.983992213383317,0.199717762414366,-0.24063409073278308,-0.9482370587065816,-0.18547536665573716,-0.9992031925357878,-0.29663679050281644,0.25403088657185435,-0.8874405636452138,-0.30650259694084525,0.22551440726965666,-0.8709178166463971,0.5288805956952274,-0.6416436275467277,0.16989579889923334,-0.41652313293889165,-0.22098113363608718,0.45825309213250875,0.1141761876642704,-0.29007642064243555,0.15578800346702337,-0.8144622924737632,-0.7870857291854918,0.16618309076875448,0.7246398003771901,0.7311311378143728,-0.48215392511337996,0.7499783611856401,-0.8363619321025908,-0.4511191304773092,-0.9359915982931852,-0.7096969857811928,0.542789947707206,-0.5040789940394461,0.8532935841940343,0.6047254875302315,-0.690614003688097,0.6278621819801629,-0.893018176779151,-0.060279666911810637,-0.36503929691389203,0.47863046545535326,0.5989990429952741,0.5396235357038677,0.01379430154338479,0.7525083837099373,-0.6379006477072835,-0.18122622277587652,0.5252778972499073,0.13237400585785508,0.43345043575391173,0.32029812689870596,0.04886484891176224,-0.9394714729860425,-0.33018753165379167,0.17309545679017901,0.6274637393653393,0.46864534774795175,0.6529488852247596,-0.6419894103892148,-0.7766463626176119,-0.6547796982340515,-0.770624678581953,-0.7391417063772678,-0.8284442317672074,-0.7523909797891974,0.6741569903679192,0.9105847729369998,0.7527551110833883,0.724055266007781,0.9130877205170691,0.7805065154097974,-0.47862042067572474,0.6198153267614543,0.2598394425585866,-0.4211340881884098,0.15238041570410132,-0.9103752807714045,0.3233313290402293,0.40690120542421937,-0.8447295255027711,0.2573902574367821,0.8681940557435155,-0.9681050097569823,0.4401080375537276,-0.7366830687969923,0.7277034730650485,-0.6161253708414733,-0.8523713322356343,0.9304903815500438,-0.3650586516596377,0.9054839592427015,-0.17339911544695497,-0.34378696931526065,0.464694004971534,0.08940676273778081,0.4352438058704138,0.963221000507474,0.8889234205707908,0.5977565394714475,-0.41748157469555736,-0.11655851965770125,-0.6305084857158363,0.4081381019204855,-0.8272722410038114,-0.04555455548688769,-0.5489955632947385,0.03482775716111064,0.028669871855527163,0.793997838627547,0.2656599651090801,-0.7678058962337673,-0.0858426121994853,0.018579076509922743,-0.5135240941308439,-0.09831179119646549,-0.5188440578058362,-0.34288115752860904,0.7986351978033781,0.839592651464045,0.3393674627877772,0.610374512616545,0.46549667324870825,-0.8990382915362716,-0.6645073741674423,0.71202113898471,-0.5969541701488197,0.7310073059052229,0.8949284655973315,-0.662967024371028,-0.9147119396366179,-0.6727700531482697,0.9179133605211973,0.7263661534525454,-0.10155494138598442,-0.5322353537194431,0.8480068324133754,-0.6887156874872744,-0.531033996026963,0.1647315830923617,0.5912403995171189,0.9211145807057619,-0.9396279347129166,-0.09223842341452837,-0.6540777455084026,0.08884541876614094,-0.8238316518254578,-0.4195991070009768,-0.5176504263654351,-0.36443937895819545,-0.9630825552158058,-0.6823497945442796,0.026203632354736328,0.3503631455823779,-0.43521100329235196,-0.5847196755930781,0.14680001512169838,-0.4188580298796296,0.5725232129916549,0.928312954492867,-0.25006811460480094,-0.29937873547896743,-0.3105381317436695,0.2471631094813347,0.5859071151353419,-0.40196961304172873,-0.5276841851882637,0.25878098886460066,0.20911924401298165,-0.2516524470411241,-0.4284107107669115,-0.9302627053111792,0.2022490152157843,0.28065097983926535,0.3255607192404568,-0.91865778202191,0.2063072044402361,0.9473051824606955,0.003654150292277336,-0.7180410632863641,0.3219239767640829,0.21088934550061822,-0.7429462992586195,0.4508827910758555,0.3221746454946697,0.4683621944859624,0.511399099137634,-0.5406989981420338,-0.9475288195535541,0.4826409169472754,0.3972733737900853,0.44574272679165006,0.3792703910730779,0.30925185047090054,0.8488970212638378,0.956952297128737,-0.7051605386659503,0.13672328740358353,-0.7997849090024829,-0.31672302167862654,-0.6262548323720694,-0.30204151943325996,0.0807845164090395,0.8056352138519287,0.4927936182357371,0.7105695828795433,-0.20829258114099503,-0.443496638443321,-0.23836617777124047,-0.25216481648385525,0.7303335247561336,-0.7919100574217737,0.9672146798111498,-0.23285296047106385,0.7757335263304412,0.5426007406786084,-0.8710081544704735,0.5779042574577034,-0.3562031676992774,-0.4329354399815202,0.13585216412320733,0.18575280532240868,-0.794890658929944,0.2863981113769114,0.02485658973455429,-0.38653526548296213,0.5048262695781887,-0.0062523274682462215,0.08975197188556194,-0.6355841481126845,0.2729387623257935,0.2549090483225882,0.2157743675634265,0.0559897399507463,0.9283892698585987,-0.4135369984433055,-0.23729008482769132,0.8418873413465917,-0.4410624071024358,-0.19758956879377365,0.7413945314474404,-0.5796178714372218,0.8002459239214659,0.9165297690778971,0.5957092056050897,0.40074814297258854,0.4751434619538486,-0.4040930471383035,0.4600789165124297,-0.19218033738434315,-0.48468514950945973,-0.7514247801154852,-0.7543724370189011,-0.5722242062911391,0.08313831640407443,-0.7079331171698868,0.4742075861431658,-0.9879136909730732,0.02454894268885255,-0.1300314678810537,0.24824671307578683,0.4857575469650328,0.49671681225299835,-0.8321434599347413,-0.5705395322293043,-0.9378653867170215,-0.38526188768446445,-0.8830270883627236,-0.19923945050686598,-0.5116899413987994,0.46260110568255186,-0.6079741935245693,0.4852510131895542,0.4973594737239182,0.7207287861965597,0.40604964969679713,-0.847833416890353,-0.18882138468325138,-0.5867096525616944,-0.7421701666899025,0.4066554717719555,0.7125112428329885,0.5842437618412077,-0.9082571431063116,0.07124214619398117,-0.7001068899407983,0.0038500907830893993,0.43114284658804536,0.33541883481666446,-0.33378930343315005,-0.7277999338693917,-0.8631947375833988,-0.1264724051579833,-0.4345180760137737,0.03180544218048453,-0.8597957571037114,0.9385579908266664,-0.8381485976278782,0.09194865124300122,0.1266284128651023,0.6863554040901363,-0.7747767027467489,0.5443409159779549,-0.17260189121589065,-0.08341644890606403,0.854660417418927,0.24367308150976896,-0.458781567402184,-0.8509475793689489,-0.4508307157084346,0.9644269836135209,-0.48658883944153786,-0.36015428602695465,0.65009935060516,-0.9678431474603713,-0.5939180301502347,0.5341401798650622,0.8066241373308003,0.19256541784852743,0.2556387884542346,0.9941043583676219,0.4771629166789353,-0.6126188919879496,0.8723695897497237,-0.25130369886755943,0.5588724263943732,0.8526115831919014,-0.8638619524426758,0.0353252193890512,-0.5650862036272883,-0.12491880217567086,-0.716148960404098,-0.5844787009991705,-0.20457704365253448,0.5772620174102485,0.09847916616126895,-0.7412713905796409,0.6492583849467337,-0.505351297557354,-0.9842340038158,0.053774318657815456,-0.7997637819498777,0.6063552000559866,0.2911597383208573,-0.7193961846642196,-0.8610163824632764,0.566268352791667,0.3338478854857385,0.5345480339601636,-0.06628308678045869,0.6809622868895531,-0.27190934447571635,0.048922112211585045,-0.9104556008242071,-0.9267692854627967,-0.8661346668377519,-0.29745137598365545,-0.0047456989996135235,-0.33835837384685874,-0.9683828018605709,-0.15883963834494352,0.35075877280905843,-0.6635878649540246,-0.929675635881722,-0.9550645276904106,0.45802434626966715,-0.7045224620960653,0.07910976838320494,0.9154219934716821,-0.4118027566000819,-0.015744490083307028,-0.24309129221364856,-0.10047179087996483,0.09268468944355845,0.6028988189063966,0.3124361829832196,-0.9509963681921363,0.37461656611412764,-0.47005631076171994,0.8462916822172701,-0.18735266849398613,-0.18443206790834665,-0.1524435542523861,-0.9653878780081868,0.1871906453743577,0.19690176472067833,-0.7267785570584238,-0.8352875048294663,0.8070764853619039,-0.8419277276843786,-0.08834891812875867,0.8727087648585439,-0.24171276297420263,0.057397142983973026,-0.48372274171561,-0.9549821736291051,0.7899147630669177,-0.5965445847250521,-0.5789673840627074,-0.25416682520881295,0.013499489985406399,-0.005211918614804745,0.4533124342560768,0.12778443610295653,0.924887674394995,-0.08399849385023117,-0.7549264379777014,-0.5117247989401221,-0.5448442343622446,0.07426098827272654,0.8089079447090626,0.5313251465559006,-0.16571358917281032,-0.5980208250693977,-0.7332330825738609,-0.6595622766762972,0.9621645575389266,-0.6184544549323618,-0.0885216249153018,-0.02733557391911745,0.4097674246877432,-0.1280939350835979,-0.8955974271520972,-0.0845671514980495,-0.4841055180877447,-0.41271445201709867,-0.5356081994250417,0.8559551299549639,-0.8967617647722363,0.5330674853175879,-0.02060576854273677,-0.22441730415448546,-0.46467273449525237,0.55790905514732,0.900425290223211,-0.4180960492230952,-0.09680473012849689,-0.467496391851455,0.7432948872447014,0.77407595096156,0.13385249767452478,-0.8053686288185418,-0.4807759993709624,-0.3751343535259366,-0.21591333812102675,-0.928876284044236,-0.5391669431701303,-0.45166181307286024,0.42713726265355945,0.6836244929581881,0.32502692798152566,-0.5722409384325147,-0.5282742278650403,0.7834565346129239,-0.7208958812989295,-0.8114124396815896,-0.18770319456234574,0.9776045032776892,-0.4760796991176903,0.02134301606565714,-0.5996217471547425,-0.18911051005125046,-0.2988573992624879,-0.661825212650001,-0.9863383355550468,-0.8111132294870913,-0.9535526954568923,-0.1290172841399908,-0.8636947944760323,0.31628986820578575,0.9475599830038846,0.11775330267846584,-0.15681491047143936,0.08566910307854414,-0.725750301964581,-0.22668694984167814,-0.31811571633443236,-0.3690466587431729,-0.6284765554592013,0.03952839691191912,-0.22300333809107542,-0.7708209711126983,-0.5676655867137015,-0.8327429629862309,-0.8871451923623681,-0.7193728121928871,0.8925271145999432,-0.5598746328614652,-0.9722791789099574,-0.03263056557625532,-0.4974673823453486,0.08695222064852715,0.007575690280646086,-0.9389285380020738,0.6782842325046659,0.31835200637578964,0.6870840452611446,0.32577038230374455,0.6801900216378272,-0.693179658614099,0.02732297917827964,0.2848112368956208,-0.6049107750877738,0.061725026462227106,0.23976375022903085,-0.7510177684016526,0.46577948797494173,0.6849731090478599,0.4833980342373252,0.4612667728215456,0.16270794672891498,0.09583137324079871,0.26946901343762875,0.24629801837727427,-0.008803417440503836,0.28675483260303736,0.39446276519447565,0.32339522801339626,-0.8236706289462745,0.8176256120204926,-0.38943494856357574,0.14472718257457018,0.16837221663445234,0.760336771607399,-0.18183405045419931,-0.3341852449811995,0.12853148952126503,0.23983874218538404,0.7235193927772343,-0.3139888336881995,-0.7753058257512748,-0.4424698851071298,0.9987386595457792,0.2287607346661389,-0.6162187485024333,-0.39134598104283214,-0.6319435308687389,0.5489670163951814,-0.6944187399931252,0.19116197852417827,0.8788177454844117,0.3880523066036403,0.7012842688709497,0.41652864031493664,-0.21878347406163812,0.09995854087173939,0.7695496995002031,0.43867872236296535,0.5106951342895627,0.5094291786663234,-0.04781266301870346,0.6332506029866636,-0.978329339530319,-0.6997292907908559,0.9100149078294635,-0.12458494305610657,-0.2612723335623741,0.492883678060025,0.21482278034090996,-0.8986510722897947,-0.8340958002954721,-0.9842663682065904,0.8289236524142325,0.2688011000864208,0.7901948899962008,-0.7482212311588228,-0.36838101921603084,0.1224269405938685,0.2811443763785064,-0.23462033877149224,0.4796579834073782,0.7889759507961571,-0.8515585749410093,-0.4250650363974273,0.4875634531490505,0.5916603012010455,-0.6164631578139961,-0.23056184127926826,-0.20101549942046404,0.7289378829300404,-0.40180155308917165,0.8251182311214507,-0.899916925933212,-0.8331171027384698,-0.12222286406904459,-0.07436321349814534,0.7389637972228229,-0.27437251759693027,-0.4619622300378978,0.7458952600136399,-0.8965605702251196,-0.6715020881965756,-0.703482958022505,0.9857024918310344,-0.6800855966284871,-0.19843864906579256,-0.27222641184926033,-0.3563125799410045,-0.2613096544519067,-0.8104065540246665,-0.15360784344375134,0.08665889594703913,-0.2384535032324493,0.7249526842497289,-0.09011513506993651,0.8480147952213883,-0.4549895920790732,0.25102356215938926,0.32663936587050557,0.09763201838359237,-0.031134041491895914,0.8780251466669142,-0.08869141479954123,-0.10606197221204638,-0.23374150693416595,-0.16237676329910755,0.15770293353125453,0.3753815325908363,-0.0033468687906861305,-0.6492717699147761,-0.8111370084807277,-0.09414864657446742,0.94083749409765,-0.6673952667042613,-0.06447794428095222,-0.283495657145977,0.4084572587162256,-0.2939126491546631,-0.7535442318767309,-0.5921321203932166,0.06897594733163714,0.8224331033416092,0.35167552158236504,-0.9243155512958765,-0.5054319445043802,-0.12607048219069839,-0.938025088980794,-0.44585457257926464,-0.8320980691350996,0.42096065543591976,-0.9479994173161685,-0.9870623154565692,0.1608845922164619,-0.557878949213773,0.5922507448121905,-0.045214657206088305,0.12304919632151723,-0.4959876402281225,-0.7647049003280699,-0.1449197861365974,0.17943955771625042,-0.7596892430447042,0.2261840607970953,0.3477025111205876,0.6849451861344278,0.1957069425843656,0.7068146825768054,-0.7995541873387992,0.453889403026551,0.8440018245019019,0.9355647396296263,-0.8686721823178232,0.7355908593162894,0.041159657295793295,0.1480831322260201,0.127613284625113,0.3282076860778034,0.4354498446919024,-0.412778087425977,0.480212998110801,0.19790723687037826,0.20275251381099224,0.1475867792032659,-0.25945964315906167,-0.07987235672771931,0.10804450931027532,0.9939626003615558,0.4481461853720248,-0.2900974238291383,-0.5578974834643304,-0.4484187560155988,-0.2468599984422326,-0.7307602278888226,0.08958759298548102,-0.8003161270171404,0.43291211873292923,-0.5656618536449969,0.844395371619612,0.26025513373315334,0.30284108128398657,-0.4566561128012836,-0.8419529534876347,-0.7835051878355443,-0.8178445287048817,0.06033171201124787,-0.14632792817428708,0.03929078858345747,0.16695621609687805,-0.11309498781338334,-0.22890705103054643,-0.4417633335106075,0.708713049069047,0.4428485962562263,-0.3845323040150106,-0.9072323897853494,-0.2918175710365176,0.23574435617774725,-0.7446752949617803,-0.2216064096428454,-0.3144842889159918,-0.2870055609382689,0.8797388360835612,0.262328015640378,0.4747511721216142,0.6698881154879928,0.4465678371489048,0.3468979690223932,-0.19170027459040284,0.8779829759150743,-0.09637051681056619,-0.7483708607032895,0.5306101101450622,-0.49426383012905717,-0.37664049537852407,-0.4528206377290189,-0.37452553678303957,0.30746934236958623,-0.2590898689813912,0.566587227396667,-0.08100239420309663,-0.11370284901931882,-0.8840822093188763,0.7609884762205184,-0.5052322177216411,-0.7160789291374385,-0.15970943681895733,0.18730842089280486,0.3737223860807717,0.9027233389206231,0.4751194156706333,-0.6976260505616665,-0.17768840352073312,0.04478361690416932,0.45611561788246036,0.9306141366250813,0.9858403904363513,0.08798508951440454,-0.606988325715065,0.17946201469749212,0.5255693052895367,0.710593827534467,0.12374435225501657,-0.17546819616109133,0.7248189831152558,0.2768652536906302,0.04560349462553859,0.677604794036597,0.2791695022024214,0.007435463834553957,-0.5042266622185707,-0.6955995410680771,-0.8761540576815605,0.3706766697578132,0.30692529445514083,-0.674323592800647,-0.6188774080947042,0.4202837864868343,-0.6963738622143865,-0.0836137211881578,-0.6955951126292348,-0.4599939635954797,0.5480606406927109,0.48483448196202517,0.4697205531410873,0.37315149838104844,0.2000967557542026,0.3967187157832086,0.8343333187513053,-0.8276130561716855,0.8965501645579934,-0.9976656339131296,-0.4103267355822027,-0.3093520705588162,0.5104351001791656,-0.6946695069782436,0.7065177662298083,0.9394532977603376,-0.026907095685601234,0.3265182236209512,0.6161804348230362,-0.0883457618765533,-0.27353829983621836,0.19278236478567123,-0.7524046273902059,0.40225083054974675,-0.35018921084702015,0.17603987595066428,0.005171395838260651,0.6121846102178097,0.8010704889893532,0.633901622146368,-0.4323101839981973,-0.5829305769875646,-0.6948171835392714,-0.8432003343477845,0.09796799719333649,-0.25538252387195826,-0.144141664262861,0.7494422788731754,0.09496070118620992,-0.912992156110704,-0.9358474323526025,0.35073681455105543,0.7059421050362289,-0.17381910514086485,-0.9432676052674651,0.9990201140753925,-0.9289716542698443,0.1052379934117198,-0.7114953664131463,-0.8451353590935469,-0.7641292926855385,0.8678442956879735,-0.8370591960847378,-0.1649630214087665,-0.49911799374967813,-0.6468438762240112,-0.13469827733933926,0.8450103183276951,0.2883052472025156,-0.7581415637396276,-0.6874130247160792,0.33740061707794666,0.5659103286452591,0.37602067086845636,0.033832037821412086,-0.7955970061011612,0.7822918812744319,0.42046370822936296,0.2187388315796852,0.3711883001960814,0.3680753600783646,-0.9925898578949273,-0.9427147675305605,0.560144810937345,-0.022280707024037838,-0.9836061908863485,0.47506968257948756,-0.1606435696594417,-0.2428973177447915,0.2910037445835769,0.6765079037286341,0.5985972532071173,0.759294081479311,0.9054943518713117,0.3252376257441938,-0.9683873425237834,0.9403100414201617,0.21246010391041636,0.5294122416526079,0.46171353152021766,0.42736193677410483,0.00847683660686016,0.04396673245355487,-0.6420746077783406,0.9653966496698558,-0.5067237126640975,0.7172502637840807,0.4261370268650353,0.44277424924075603,-0.9448837977834046,0.5471272431313992,-0.6031614425592124,0.4936927678063512,0.7090453621931374,0.17112380266189575,-0.9052335103042424,0.1821290897205472,-0.5844183438457549,0.2280616401694715,0.514480154030025,0.32539030630141497,0.9031443339772522,-0.9090578290633857,-0.18214290961623192,-0.9332595835439861,-0.08976468304172158,0.3611885760910809,0.39857328962534666,-0.043890070635825396,0.08001091377809644,-0.5217309659346938,0.42140015633776784,-0.3440277553163469,0.9004264264367521,0.5956900077871978,0.4734872141852975,-0.5797679577954113,0.5111238248646259,-0.3717354070395231,0.983163196593523,-0.6508689625188708,-0.4680628404021263,0.7005056701600552,0.7130188597366214,-0.1179082402959466,-0.45670282980427146,0.9901581662707031,-0.16070856992155313,0.38907319074496627,0.5480686398223042,-0.6710345386527479,0.6184066184796393,-0.1192914224229753,0.5735472869127989,0.49989435402676463,0.30419663805514574,0.5378674599342048,-0.5348793864250183,0.5355558265000582,0.9583956361748278,0.7144735353067517,0.3469358179718256,-0.8850367306731641,0.9198442944325507,0.48687286442145705,-0.32664933195337653,0.7126631368882954,-0.1690495782531798,-0.565396788995713,-0.9303562114946544,0.35129519598558545,0.006817115470767021,0.8558895573951304,0.8226579399779439,0.8248711647465825,0.5617005759850144,-0.48398271342739463,-0.060195086523890495,-0.08588418504223228,0.12370829470455647,0.20147844776511192,0.4887777641415596,0.7106558713130653,0.753971949685365,-0.23709322977811098,-0.4019485218450427,-0.1988212368451059,-0.7015425730496645,-0.7359854020178318,-0.12883349042385817,-0.22604929516091943,0.1979504907503724,-0.1779813701286912,-0.11965450504794717,-0.04188703605905175,-0.03545113792642951,-0.9887647638097405,-0.6637972448952496,-0.9123487155884504,0.18014935310930014,-0.384545992128551,0.9185051028616726,-0.12254280922934413,-0.7625455795787275,0.43963048653677106,-0.0799166839569807,-0.1923819500952959,-0.7539726798422635,-0.41261421609669924,-0.9426288474351168,0.9155286625027657,0.46698457561433315,0.8758665528148413,-0.758352869655937,-0.18902347283437848,0.6461931462399662,0.28907273011282086,-0.535371117759496,0.8068778878077865,0.17998103564605117,-0.9960763189010322,-0.9640672989189625,0.03656785236671567,-0.2948124771937728,0.43463865062221885,0.9524655658751726,-0.4751664949581027,0.31400307221338153,0.6873739007860422,-0.9079839894548059,0.8303500083275139,-0.11440191324800253,0.6405531344935298,0.12272521574050188,0.6296787820756435,0.22235816391184926,0.8175850757397711,-0.9691341314464808,0.5585998822934926,0.2504091407172382,-0.9293499882332981,-0.6427966565825045,-0.31818173732608557,-0.2094195205718279,-0.740239764098078,-0.6662226351909339,-0.5411460981704295,0.6002229191362858,-0.9150043544359505,-0.24887939635664225,0.16853886982426047,-0.823624876793474,0.4951966917142272,0.07533914782106876,0.41750971088185906,-0.32869357289746404,0.9243486574850976,0.8486711531877518,0.5206218347884715,-0.45685639791190624,-0.008033927530050278,0.15284365927800536,0.28397503588348627,-0.4726514555513859,0.6392102525569499,-0.9356905124150217,0.16136702243238688,0.42361220344901085,0.7710059601813555,-0.46492225071415305,0.17194995237514377,-0.21774871554225683,0.6396802249364555,0.12900731340050697,-0.6306892158463597,0.5629975590854883,0.8171821511350572,-0.5994968935847282,-0.12584078637883067,0.7990697245113552,0.28672361373901367,0.5465725185349584,0.8950671185739338,-0.49275832576677203,0.8312807660549879,-0.5169008010998368,-0.707584104500711,-0.8675143481232226,-0.6894580414518714,-0.7599765919148922,0.2559972619637847,0.20267908880487084,0.07748545752838254,-0.5027651772834361,-0.02946973731741309,-0.22070136852562428,-0.31880747340619564,0.6172790131531656,-0.09307421557605267,-0.5982068283483386,-0.8940602196380496,0.809472010936588,0.8566872212104499,-0.1526971710845828,-0.3469485603272915,0.2623352501541376,-0.35694324830546975,0.5367806302383542,0.2923196176998317,0.4334046505391598,-0.3670798344537616,0.4102527778595686,-0.35993550159037113,-0.32549751782789826,0.15908693429082632,0.9287620331160724,-0.06381153874099255,-0.9006476295180619,-0.20968681806698442,-0.44342774292454123,-0.8893527085892856,-0.9370096051134169,0.8871739753521979,0.8246905235573649,0.9716473426669836,0.11341102933511138,-0.07188330823555589,0.9715275657363236,0.9966941406019032,-0.7019750545732677,0.7916967403143644,0.5599974975921214,0.29418171383440495,-0.4107676246203482,-0.18388896668329835,0.67158172884956,-0.833629509434104,-0.6525534647516906,0.0024901186116039753,-0.892695989459753,-0.24562658416107297,0.21081920247524977,-0.5297131505794823,-0.5079418318346143,-0.05715053481981158,-0.04738410655409098,0.32730246614664793,-0.8709946852177382,0.8185028145089746,0.44091050466522574,-0.07480211788788438,0.9296571733430028,0.7167046209797263,-0.708198475651443,-0.037569140549749136,0.8975816685706377,-0.5559478760696948,-0.1729497816413641,-0.47717594308778644,0.44841228798031807,0.9756319858133793,-0.4606951489113271,-0.7066783159971237,0.1340264747850597,0.11514173867180943,0.1407677698880434,-0.7815007837489247,0.20617176359519362,-0.8595704529434443,0.775620938744396,0.45770724676549435,0.9418850159272552,0.6908854627981782,-0.4745809859596193,0.7660162164829671,0.04325141990557313,0.9134372002445161,0.4635906838811934,-0.9948182334192097,0.35424997890368104,-0.382407845929265,-0.9715357227250934,0.44936284562572837,0.6248321416787803,-0.7685496713966131,-0.6217307965271175,-0.9464509431272745,0.5046634976752102,-0.08437469508498907,-0.7464391672983766,-0.010420186445116997,0.2730269255116582,0.3464751662686467,-0.0060548256151378155,0.19883643835783005,0.840310534927994,0.34319530008360744,0.08146597491577268,0.16167603293433785,-0.23303854744881392,-0.7525248471647501,0.17801760276779532,-0.38554153544828296,0.7955117947421968,0.564995750784874,0.007439977489411831,-0.05847951164469123,0.5207359413616359,0.14771754434332252,0.5233179270289838,-0.5275692618452013,0.7664938108064234,0.5133404307998717,0.3168115671724081,0.5255903284996748,0.4157746066339314,-0.22207181993871927,0.19402297120541334,-0.953221030998975,0.1635462581180036,-0.42460818868130445,-0.4472755342721939,-0.17854960821568966,-0.9977547004818916,0.9356909235939384,0.25325459986925125,0.9139918433502316,-0.6401657471433282,-0.9066690471954644,0.2887359275482595,0.739848614204675,-0.4262758386321366,0.8241045149043202,-0.9183699199929833,-0.0909514338709414,0.5020956974476576,0.41406461130827665,-0.7606532042846084,0.2623524749651551,-0.7553516305051744,-0.7702199276536703,-0.935496365185827,0.9829484727233648,0.9468563380651176,-0.7658359371125698,0.11341873789206147,-0.9787661107257009,-0.15471938531845808,0.12048951303586364,-0.9841818460263312,-0.6113402601331472,-0.7500147856771946,0.7794184838421643,0.7237447542138398,0.7545844633132219,0.45575377019122243,0.2881217189133167,0.5948376185260713,0.3760311580263078,0.656433816999197,-0.9037226503714919,-0.39830373506993055,-0.22369608841836452,0.8673370177857578,-0.32897127140313387,-0.10103456117212772,-0.8757055718451738,0.7559806960634887,-0.5167712504044175,0.41275861160829663,0.2400785507634282,0.7325568520464003,-0.6598229492083192,0.7588639631867409,0.41564491111785173,0.23222094494849443,-0.8079996490851045,-0.05295490799471736,-0.5056757749989629,-0.883008430711925,0.033591934479773045,-0.5320499050430954,-0.6278771054930985,0.845782894641161,0.7262036958709359,-0.8362975199706852,-0.4281026879325509,-0.020614963956177235,-0.8353058723732829,-0.35987770557403564,-0.8104849043302238,-0.5437688073143363,0.38291987171396613,-0.7936918367631733,-0.13517447421327233,0.4524373523890972,0.830046615563333,-0.3734928369522095,0.7562493681907654,0.3134320364333689,-0.6129661654122174,-0.9398630135692656,-0.5659586139954627,-0.2007626867853105,-0.5762044009752572,-0.14718270162120461,0.40518398862332106,0.6990933041088283,0.6089292420074344,0.7291221441701055,-0.6032671118155122,0.9192283442243934,-0.5228070598095655,-0.8845092006959021,0.8693007132969797,-0.3124480270780623,-0.43709575291723013,0.9775587636977434,-0.9478995436802506,-0.5567229865118861,0.565818038303405,-0.6165424948558211,-0.7287078662775457,0.5388801353983581,-0.11390101071447134,-0.06149955838918686,0.9821202382445335,-0.5491131506860256,-0.6132006966508925,0.6349303745664656,-0.3487415621057153,-0.9335615136660635,0.34473929461091757,-0.9342636191286147,0.618961458094418,0.5032563982531428,-0.01195145957171917,0.7821707865223289,0.7182994754984975,0.3392756157554686,0.936770819593221,0.16622790601104498,0.12634772108867764,-0.607771520037204,0.47916673263534904,-0.4376526391133666,-0.44554726174101233,-0.9156753988936543,0.15920276241376996,0.8537041489034891,-0.9739546976052225,-0.8608351130969822,0.5629623983986676,0.7304538260214031,0.8203863222151995,-0.26580442721024156,0.5167494206689298,0.8761573247611523,0.9655698812566698,-0.4902339871041477,-0.7068706103600562,0.15591381816193461,0.04545531189069152,0.6487738173455,0.8789900746196508,0.463585564866662,-0.01514020236209035,0.651151969563216,-0.46212824853137136,-0.39945670310407877,0.15514450054615736,0.7578001641668379,-0.09051363775506616,-0.8247766369022429,-0.08526403643190861,-0.37899943767115474,-0.5939329541288316,0.45737716648727655,0.8358016321435571,0.6520631485618651,0.5182812833227217,0.7856866582296789,-0.22245424473658204,-0.6414076737128198,0.14819333143532276,-0.32762443786486983,0.07750294916331768,-0.6507413266226649,-0.9167078863829374,-0.018309463281184435,0.4136309688910842,-0.21445695078000426,0.5467167873866856,0.5875590802170336,0.8956400007009506,-0.020356132183223963,-0.6301564783789217,-0.2774815857410431,-0.7599761812016368,-0.4676413806155324,-0.4051839392632246,-0.6270415731705725,0.6561317220330238,0.5227453266270459,-0.7685945220291615,-0.02060592547059059,0.9655946246348321,-0.003582919482141733,-0.5416135303676128,0.7962583187036216,-0.9557266514748335,-0.7960808901116252,0.7216904596425593,0.41611934173852205,0.0057991850189864635,0.3668719078414142,-0.6061819032765925,-0.5757365701720119,0.27873789332807064,0.6217640652321279,-0.5448982333764434,-0.11194458836689591,-0.6343040382489562,-0.6499257278628647,-0.2040716065093875,0.8434681035578251,0.5173750966787338,-0.15667744632810354,0.3870691475458443,0.20159650593996048,-0.9667584504932165,0.5043462128378451,-0.24326585978269577,0.6695388173684478,-0.6766201937571168,-0.3438710398040712,-0.17840596288442612,-0.03705375315621495,-0.3779770736582577,-0.1528747663833201,-0.6507338993251324,-0.7137013473547995,-0.3264838354662061,-0.49974247347563505,0.4819288048893213,0.5478597194887698,0.6492554503493011,-0.9160427851602435,0.9913072227500379,0.9155787099152803,0.7994604087434709,0.2041707648895681,-0.9333793199621141,0.6862451289780438,0.3651103414595127,0.14718423411250114,0.021218009758740664,-0.06273300899192691,-0.12554789707064629,0.5348153156228364,0.7772406060248613,0.47954982658848166,-0.26546603720635176,-0.709497211035341,-0.6780335288494825,-0.8121942076832056,-0.21165854716673493,0.9784787516109645,0.02425960684195161,0.8016896420158446,0.20025106891989708,-0.17562035890296102,0.7312116995453835,-0.22757443226873875,-0.061136634554713964,0.8616785635240376,0.8758052540943027,0.532851655036211,0.7729177549481392,-0.4905371190980077,0.12314059911295772,-0.6824674131348729,0.24030477739870548,-0.6093732435256243,0.4286155574955046,0.17399029061198235,0.49458584235981107,0.24868607707321644,0.42101594898849726,-0.530961761251092,-0.5083367209881544,-0.6473484016023576,-0.014389832969754934,-0.32864258298650384,0.10980431223288178,0.36336395097896457,0.37630047602579,-0.7750929817557335,-0.7558449674397707,-0.5066722948104143,0.11640010075643659,0.8682900844141841,-0.9865845292806625,0.8281643884256482,0.3760697995312512,-0.14402629621326923,-0.33152617095038295,-0.5335920136421919,-0.4334767390973866,0.3151337644085288,0.6026155892759562,-0.4945913152769208,-0.4063427336513996,-0.2268280670978129,-0.3081306363455951,-0.11102115362882614,0.5581624428741634,-0.2875331970863044,-0.262266346719116,0.16919847577810287,-0.19744329247623682,-0.5475241667591035,0.5838166666217148,-0.9113794825971127,0.13217254728078842,0.6963580753654242,0.9670152398757637,-0.9680436900816858,0.5077698766253889,0.9720764420926571,0.4751032842323184,-0.34744961839169264,-0.018872554413974285,-0.561416800133884,0.5081051965244114,0.5012077502906322,0.2497738404199481,-0.5353925745002925,-0.8030925425700843,0.6539378287270665,0.41880653984844685,-0.9548679175786674,-0.0753673636354506,0.8235069997608662,0.9973528026603162,0.015126312151551247,0.054836961440742016,-0.787104666698724,-0.5334069756790996,0.6255547264590859,-0.9532047277316451,-0.17540402570739388,-0.791172529105097,0.23104678047820926,0.2791200168430805,0.2751672714948654,0.44128822488710284,-0.6046409630216658,-0.49167386442422867,-0.008848838042467833,-0.8149835858494043,-0.12137895170599222,-0.9953383016400039,0.4236184894107282,0.0795222851447761,0.9171378375031054,-0.9867317648604512,0.2810418242588639,-0.02905869483947754,0.7677121935412288,-0.4279620130546391,-0.31209612591192126,0.413322938606143,0.37880578078329563,-0.31742073222994804,-0.6431729295291007,0.5455574113875628,-0.9787768195383251,-0.6012150035239756,-0.12214840389788151,-0.6466047624126077,-0.8140676920302212,0.34426673175767064,-0.6409359415993094,-0.7691884655505419,0.7251870543695986,0.5470844055525959,0.10260773822665215,-0.9945287900045514,0.11736873537302017,-0.17405718192458153,0.7520934147760272,-0.6586327976547182,0.6949816383421421,-0.39525946136564016,0.1529297917149961,0.44478480936959386,-0.5440074326470494,-0.2473412356339395,-0.19232453685253859,-0.38609969103708863,-0.8957177554257214,-0.4635002021677792,-0.9893379034474492,-0.52037942269817,0.16055691242218018,-0.11347588710486889,-0.6301601342856884,-0.7204442378133535,-0.21061189705505967,0.8926119026727974,-0.5305659030564129,-0.9320361604914069,-0.30597234005108476,0.25187639286741614,0.9559983806684613,-0.13408344890922308,0.7035635872744024,0.5028185625560582,0.5673303361982107,0.9486145777627826,-0.8413071730174124,-0.18515300517901778,0.1916904291138053,-0.3472858536988497,-0.17740885354578495,-0.9846107228659093,0.6595499361865222,0.9359570853412151,0.35554384905844927,-0.7661584010347724,-0.6808844590559602,0.05206635873764753,0.38057685317471623,0.9083511307835579,0.8954139486886561,0.6316155050881207,0.8600873514078557,-0.8384140934795141,-0.7445190660655499,-0.920988152269274,-0.794275232590735,-0.27421918557956815,-0.8325253752991557,0.4663386740721762,-0.2935445914044976,-0.4497582889162004,-0.4252157951705158,0.9890566836111248,-0.7499990998767316,-0.5557817476801574,-0.07861634716391563,0.2411937522701919,0.6100503923371434,0.5043665417470038,0.5878464384004474,0.11475186748430133,-0.9915118687786162,0.49907150212675333,-0.28587375581264496,-0.3898790585808456,0.8424661355093122,-0.9035709910094738,-0.7871139156632125,-0.7723617311567068,-0.1995013733394444,0.5402713222429156,0.7966646947897971,0.041171187069267035,-0.9013456776738167,0.7606992213986814,0.4841520842164755,0.21865094266831875,0.3671964481472969,0.8784579820930958,-0.5884720142930746,0.5569757195189595,-0.061597168911248446,0.9920860906131566,0.48560562217608094,0.19572517089545727,0.2716515064239502,0.057114334776997566,0.6987348599359393,-0.9647135501727462,0.9338424489833415,-0.06989385047927499,0.19365328084677458,0.688086227979511,-0.83721046987921,-0.9174065487459302,0.42681841598823667,-0.13535328581929207,-0.4839203990995884,0.45372057566419244,-0.8752491152845323,-0.27270890353247523,-0.3765275343321264,-0.2885298361070454,-0.34957236470654607,0.6993057033978403,0.12112340284511447,-0.5098275952041149,-0.4257281059399247,0.8705441635102034,0.8907652017660439,0.35089869145303965,0.8313143937848508,0.20685416786000133,-0.5518802595324814,0.9555815774947405,-0.6030534538440406,-0.01910932920873165,-0.08754919236525893,0.6920897192321718,0.7196070249192417,-0.19323420990258455,-0.5412431578151882,0.07268188800662756,-0.224969535600394,-0.2831140998750925,0.9817320411093533,-0.40553609002381563,-0.9631997449323535,-0.24421647004783154,-0.14953882806003094,0.6819646363146603,-0.9119093446061015,-0.6275651548057795,0.39007236156612635,0.07087435061112046,0.40967240603640676,0.02040793700143695,0.9395665498450398,0.39217508863657713,-0.0761167905293405,-0.32865821244195104,0.029942688066512346,-0.6624030345119536,0.2829782157205045,-0.9448910760693252,-0.0022303848527371883,-0.8886605431325734,0.5434204749763012,-0.0023754225112497807,-0.8669249154627323,0.7575277639552951,-0.6256751976907253,-0.7262193914502859,0.7319420799612999,-0.2523570219054818,0.0657710824161768,0.9099814156070352,-0.5940627618692815,-0.44168086256831884,0.09162819618359208,-0.19489618251100183,-0.5987038752064109,-0.8708608564920723,0.33251078985631466,-0.04099571984261274,0.9894457329064608,0.7823780886828899,-0.860337252728641,-0.24422736559063196,-0.6901700082235038,0.9067795602604747,-0.9080132525414228,0.4216706147417426,0.19748783018440008,-0.810611329972744,-0.9802251840010285,0.9194808783940971,-0.5953346760943532,0.7403844809159636,-0.39764747489243746,0.9611191810108721,0.8449517213739455,-0.1309763491153717,0.25322746532037854,0.15048578614369035,-0.23645984753966331,-0.17266071774065495,-0.19285469548776746,-0.8507520402781665,0.8332162224687636,0.011860607657581568,0.665004154201597,-0.8110239296220243,-0.46055024256929755,0.1546675688587129,0.3692473811097443,-0.28587244264781475,-0.43077079206705093,0.5820216359570622,-0.9686193335801363,-0.9013265394605696,-0.5826903241686523,0.05788396019488573,-0.47900380240753293,-0.42567784851416945,0.2605525916442275,0.9308141865767539,0.3485968126915395,-0.44813311798498034,0.9060352346859872,-0.7316588484682143,0.6909040166065097,-0.5160209662280977,0.7156384522095323,0.2885529352352023,0.6580335558392107,-0.48077213671058416,-0.24994895048439503,-0.9856257461942732,0.0017707529477775097,0.5060203182511032,-0.2732829684391618,-0.3387922658585012,0.6678322381339967,0.45312467450276017,0.904829528182745,0.9378532660193741,0.4673123504035175,-0.21024000784382224,0.8264739783480763,-0.5525752874091268,0.07808322180062532,0.3099827324040234,0.5132901431061327,-0.6844675182364881,-0.1098746694624424,0.7805939521640539,-0.9858940509147942,-0.877811293117702,-0.9184253956191242,-0.6378222485072911,-0.7277976348996162,0.6797361276112497,0.18148168083280325,0.25174941727891564,0.7489013192243874,0.17255682032555342,-0.43123604310676455,-0.3169120838865638,-0.09767986321821809,-0.3847905430011451,0.14841510774567723,-0.7641052166000009,-0.8414241513237357,-0.3939442541450262,-0.09206298179924488,-0.11343299085274339,0.49223645869642496,-0.7665595123544335,-0.7085786107927561,-0.12426278227940202,0.12376490933820605,-0.9523076061159372,-0.5442763697355986,0.843148052226752,-0.28529410529881716,0.8766619744710624,0.2652093805372715,0.5352985514327884,0.6073522055521607,-0.8287593489512801,-0.461187660228461,0.07057995302602649,-0.07146529760211706,-0.9592152163386345,-0.7636273219250143,-0.3062018770724535,-0.5516102681867778,-0.8662932030856609,0.3003474813885987,-0.8912133928388357,0.2042615097016096,0.7730564409866929,-0.07024233788251877,0.7984798839315772,0.41055887239053845,0.20004744781181216,-0.4579499326646328,-0.9378780531696975,-0.7807884137146175,0.46430781250819564,-0.014096413739025593,-0.6030119205825031,-0.6888358960859478,-0.6283117923885584,-0.16529427329078317,0.5418310542590916,-0.6173096364364028,-0.18474605958908796,0.5512236934155226,-0.9123658663593233,-0.9344719904474914,0.8778939205221832,0.24781660782173276,-0.5912086511962116,0.646086981985718,-0.22574515780434012,0.9686437789350748,-0.9367036423645914,-0.245195085182786,-0.7326975325122476,-0.30137618631124496,-0.5540465051308274,-0.8237104541622102,0.6578685338608921,0.24638691823929548,0.9444832331500947,0.5190728222951293,0.49237107345834374,-0.10493146069347858,-0.15685345651581883,-0.2608055267482996,0.3824409367516637,0.5939053404144943,0.5501661947928369,0.1487857885658741,-0.9732491699978709,0.9589461395516992,-0.01593176182359457,0.028246143832802773,-0.2749059754423797,-0.27637965232133865,0.4061004049144685,0.7720404164865613,-0.7030920749530196,0.031645224429666996,0.8825802891515195,0.25472930399701,0.3562786867842078,-0.41825227811932564,0.9664731496013701,-0.5755520923994482,-0.9344893754459918,-0.932934916112572,-0.6454947418533266,0.8851546095684171,0.6283565983176231,-0.20972952945157886,-0.020743753295391798,-0.5614714995026588,-0.6532048098742962,-0.8247612831182778,-0.30616484908387065,0.9193354803137481,0.9185293484479189,-0.8881873399950564,0.16259356355294585,0.2561490195803344,-0.26141770789399743,-0.9777783956378698,-0.8094878913834691,-0.9722539619542658,0.3662389162927866,-0.17797626508399844,0.92924351291731,0.028460394591093063,-0.25395416002720594,-0.9239475443027914,0.6657568383961916,-0.7122075734660029,0.4943737010471523,-0.1008252901956439,0.44771486008539796,0.9873880613595247,0.7982665849849582,-0.16254851687699556,0.01646476099267602,0.7540560364723206,-0.1385406176559627,0.7474578157998621,-0.5540170860476792,0.4058285835199058,0.23188576148822904,0.15490362094715238,-0.25010927440598607,-0.5136614921502769,-0.9705524388700724,-0.35438461881130934,0.2391295856796205,-0.21025116741657257,0.1963341967202723,-0.8979327850975096,0.8716099192388356,0.8882190310396254,-0.47990516340360045,-0.37826054682955146,0.9291593283414841,-0.3140626708045602,-0.8999312515370548,-0.7829567012377083,-0.5010187299922109,-0.1424305122345686,0.030630247201770544,0.27927982015535235,0.6588261905126274,0.016747782472521067,-0.6197878406383097,-0.6750403926707804,0.05750348651781678,0.4410277158021927,-0.019062381703406572,-0.10289657302200794,-0.642933361697942,0.24319945368915796,-0.009233524557203054,-0.634637959767133,-0.5394395561888814,0.6981780282221735,0.20400363160297275,0.0981684559956193,-0.5699537708424032,-0.717799027916044,-0.15779600059613585,-0.0912106391042471,-0.48249781457707286,-0.9698662916198373,-0.6166855129413307,-0.5161334364674985,-0.3648287458345294,-0.4955736706033349,-0.24612511415034533,0.08344333805143833,-0.039995172061026096,-0.2024111677892506,-0.629685768391937,-0.21037195529788733,0.1581803779117763,0.48417907766997814,-0.07159417914226651,0.1697629285044968,-0.569316677749157,0.6377071496099234,0.7045309678651392,-0.7318219756707549,-0.06975661870092154,-0.6767225963994861,-0.5160465217195451,0.07596007781103253,0.07359119178727269,0.7952889851294458,-0.609188215341419,-0.23237554915249348,-0.006666166707873344,-0.7838353118859231,-0.28494778322055936,0.07926524383947253,0.11585411988198757,0.46336147654801607,0.7219441304914653,0.21374347992241383,0.34577879682183266,0.41610349249094725,0.925612645689398,-0.9576768269762397,-0.7580650490708649,-0.41922490717843175,-0.026146654039621353,-0.8024616269394755,0.5049006226472557,0.9536785278469324,0.1959922262467444,0.599823719356209,0.054774660151451826,-0.12364542903378606,0.21112432423979044,-0.8831211170181632,0.5368683128617704,-0.9379097609780729,-0.34094509994611144,-0.2851112959906459,0.0888789757154882,-0.9101526536978781,-0.49230396235361695,0.1053765113465488,-0.2753569772467017,0.435406603384763,0.2305263984017074,0.060142102651298046,0.3487172666937113,-0.23370039882138371,0.13339706975966692,-0.5325904185883701,0.2831026781350374,-0.15274012740701437,-0.3322890121489763,-0.5691047837026417,-0.07024526409804821,-0.9136843238957226,0.17215576954185963,0.3285517105832696,0.7115351860411465,-0.7177022392861545,-0.7302053458988667,0.8708582809194922,0.15513079147785902,-0.051242141518741846,0.48545320285484195,0.452529754023999,-0.8654397935606539,0.44747451739385724,0.080589784309268,-0.8917468502186239,-0.916398948058486,0.875990831758827,0.27376921009272337,0.3512040856294334,0.5663273939862847,0.42590951500460505,-0.015598679427057505,-0.9883174463175237,0.6176422890275717,0.007785511668771505,0.7905506212264299,0.6350770588032901,0.3638189919292927,0.3786230990663171,0.8286106889136136,0.94536640541628,0.08546516764909029,-0.40658266888931394,0.14134594146162271,-0.7459910670295358,0.4031293774023652,-0.8407838987186551,0.2133116819895804,0.8128502429462969,0.22480299416929483,-0.036578419618308544,0.2916861060075462,0.08439607126638293,-0.08511420711874962,0.24356211023405194,0.986373748164624,-0.8136459784582257,-0.05079354904592037,-0.5278893010690808,-0.7128287735395133,-0.8171174987219274,0.8798183705657721,-0.6453762599267066,-0.6185008566826582,-0.9285200298763812,-0.599520115647465,-0.6195671469904482,0.9636238990351558,-0.9577897251583636,0.5380871589295566,-0.9482731223106384,-0.9328097142279148,0.7694999668747187,-0.7407763595692813,0.8067791890352964,0.6606509224511683,0.32038814295083284,0.3353725471533835,-0.22863099537789822,-0.026069798972457647,0.9146274514496326,0.512293275911361,-0.08213200885802507,-0.3679697271436453,0.995908853597939,-0.7967424052767456,-0.5710988556966186,0.9986302820034325,-0.4779188707470894,-0.5481647695414722,-0.7899822676554322,0.4389416230842471,-0.5667393915355206,-0.2714296467602253,0.5652580484747887,-0.13589866133406758,-0.6033494845032692,-0.4142576493322849,-0.6497403006069362,-0.24421523790806532,0.9074858208186924,-0.05569010693579912,-0.2303562150336802,-0.37237276416271925,0.9363615405745804,-0.01662753662094474,-0.9300926052965224,-0.527757924515754,0.4554909751750529,0.9446960082277656,-0.6214238521642983,0.3559546275064349,0.6957140956073999,-0.7622646568343043,-0.6028193137608469,0.8635815074667335,-0.9043587618507445,-0.9543095687404275,-0.5006738267838955,0.7778774951584637,-0.6428878586739302,0.6791559015400708,-0.9884385759942234,-0.7096790126524866,0.24247254710644484,0.2868281453847885,0.24812958342954516,0.10466087749227881,0.9852800569497049,0.869317440316081,0.8731589703820646,-0.8504214780405164,-0.5494286483153701,0.4714690432883799,0.18107043905183673,-0.4383465484715998,0.35548624116927385,0.1477959044277668,0.8772502667270601,0.19681561877951026,-0.5121719939634204,0.5066053802147508,0.19188751187175512,-0.26861611753702164,-0.10838775848969817,-0.1616784455254674,-0.032464465126395226,0.5465681916102767,-0.6740591116249561,-0.40770044084638357,-0.2373091345652938,-0.616196462418884,-0.585745345801115,0.5473076300695539,-0.805536970961839,0.38679547794163227,0.08531500259414315,0.09061768325045705,-0.6219908772036433,-0.2017466751858592,0.6773205674253404,0.5675544645637274,-0.9440689221955836,0.6618339503183961,-0.9362163338810205,0.953179401345551,0.47301133116707206,-0.15208508353680372,-0.3822045340202749,0.551759185269475,0.8146589859388769,0.374524125829339,0.08839888405054808,-0.4698048518039286,-0.7058792570605874,0.7819398567080498,-0.7961064171977341,0.7534085428342223,-0.3136524436995387,-0.8899806668050587,-0.8062053173780441,0.4854455073364079,0.2149305627681315,-0.49524041172116995,-0.6567126410081983,0.4200763488188386,-0.9648139895871282,0.22001917054876685,-0.16298831440508366,0.24528954084962606,-0.5845915907993913,-0.29546747356653214,0.8116138023324311,0.8382914974354208,0.020510780159384012,-0.894188093021512,-0.7349961022846401,-0.8609378491528332,-0.1600150102749467,-0.20965670654550195,0.6635265378281474,0.05181048810482025,-0.2352020456455648,-0.015899889171123505,0.5407141484320164,-0.8968053036369383,0.4065985647030175,-0.541171261575073,0.32915159314870834,0.733516444452107,-0.6100663342513144,0.6485342113301158,0.5552007132209837,0.07795810187235475,0.1951094870455563,-0.18361200159415603,0.889625571668148,-0.9934366825036705,-0.3261733893305063,-0.5468088528141379,0.9391145533882082,0.050235262140631676,-0.09817726071923971,0.38191221188753843,-0.7672140160575509,0.7842450570315123,-0.09749461757019162,-0.27309718867763877,-0.32167620677500963,0.23222134541720152,-0.7530537084676325,-0.5841583665460348,-0.22273457702249289,0.6828875388018787,-0.14228056417778134,0.697749481536448,-0.6526643126271665,-0.013219695538282394,0.39383140532299876,0.26686345878988504,-0.3338423538953066,-0.3184216218069196,0.12207977008074522,0.8305375673808157,-0.4140842738561332,0.9706623298116028,0.36059178737923503,-0.8121025580912828,0.030289157759398222,-0.9074057443067431,-0.7502643628977239,-0.19304018886759877,0.3124409425072372,0.2134688519872725,-0.3206202872097492,0.32118146028369665,-0.5229935818351805,0.46023509046062827,-0.3380617178045213,-0.13864853512495756,-0.19954219972714782,-0.3665532488375902,0.7243755958043039,-0.9608570281416178,0.9205238944850862,0.03140932694077492,-0.3861497398465872,-0.6700672609731555,-0.9487802539952099,0.3089129216969013,0.14820696599781513,0.7650842037983239,0.0968831880018115,-0.16182672791182995,0.07340957317501307,0.025528579484671354,-0.17778576770797372,-0.049983139149844646,-0.35523076821118593,0.024763361550867558,0.25982150295749307,-0.6799309081397951,0.22487250296398997,-0.7154481736943126,-0.7844652798958123,0.5408340860158205,0.6706437240354717,0.705267399083823,-0.18556833919137716,-0.6405278756283224,-0.0782665447331965,0.674458107445389,0.9103796780109406,0.12832537945359945,0.47824049508199096,0.0028930073603987694,0.6166320368647575,0.6559926518239081,0.3467027833685279,0.06080446345731616,-0.222356669139117,-0.5895772580988705,0.3607210391201079,0.24027908639982343,-0.8971873144619167,0.5649166982620955,-0.32816802291199565,0.07473997119814157,-0.7504956689663231,0.2419173256494105,-0.8915525679476559,-0.527301496360451,0.3874947880394757,0.4374426216818392,0.31433055317029357,-0.22214449709281325,0.2401423053815961,-0.2991106463596225,-0.580501290038228,0.19194323103874922,0.13321625581011176,0.3502805130556226,0.7368663344532251,-0.5135692083276808,-0.13742897612974048,-0.30601453222334385,-0.33752743946388364,-0.46549156634137034,-0.2502619703300297,-0.27584071224555373,-0.6053599962033331,-0.9512878912501037,-0.9147386038675904,0.7169632627628744,-0.0316523308865726,0.7712192651815712,-0.2976120705716312,0.1327576097100973,0.059676905162632465,0.10995237808674574,-0.9273927072063088,0.09068454522639513,-0.9711823570542037,0.7798754582181573,0.3939533745869994,0.5015021660365164,-0.6917695044539869,-0.6042989064007998,0.09772546403110027,0.09674827149137855,-0.7291505830362439,-0.5953492131084204,0.6418617870658636,-0.8814712478779256,0.23503211187198758,-0.681497860699892,-0.02426323341205716,-0.1526015317067504,0.7291258899495006,-0.32582136895507574,0.759392065461725,-0.8586582862772048,0.31102890335023403,0.8451626696623862,-0.3502932386472821,-0.5398042029701173,-0.32509153708815575,0.19844690384343266,-0.9062703778035939,0.1879895618185401,-0.2792743453755975,-0.029694503638893366,0.5491246460005641,-0.09612471843138337,0.5936711714603007,-0.8910040855407715,0.1975534548982978,-0.8356540170498192,-0.9023419455625117,0.6720399912446737,-0.02052372833713889,-0.11306427884846926,0.1745836501941085,-0.5642389222048223,0.8448028373531997,-0.030426745302975178,0.7629914665594697,0.32799866795539856,-0.7320651379413903,0.4127777321264148,0.7201446779072285,0.39110610354691744,-0.22577988542616367,0.007494966499507427,-0.2632478284649551,-0.8069891822524369,0.09257689770311117,-0.38157207937911153,-0.36147139919921756,0.30467470083385706,0.005955923348665237,-0.909999237395823,-0.5820328705012798,0.38337952364236116,-0.05050476128235459,-0.6296826228499413,0.49349653301760554,-0.7585038412362337,0.5788968997076154,0.4629413294605911,-0.9876857297495008,-0.8023454295471311,0.9720404860563576,-0.19125051237642765,0.007644406519830227,-0.0635039359331131,-0.19982235645875335,-0.7572957924567163,-0.9008269277401268,-0.7312546423636377,-0.05060971388593316,-0.21648653410375118,0.49257793836295605,0.3086839346215129,-0.30944043304771185,-0.5330806677229702,0.14304991159588099,0.1283848467282951,-0.9104925030842423,-0.32646867679432034,0.8900289819575846,-0.8078933372162282,0.3202398344874382,-0.48508198373019695,0.4613687079399824,0.7406181688420475,-0.29081285931169987,0.9737991341389716,-0.29149596812203526,0.35009273095056415,-0.8956774291582406,-0.10357527201995254,0.8374428204260767,-0.1846390818245709,-0.36943876603618264,0.35796138597652316,-0.4993825191631913,0.2535178861580789,0.6168601592071354,0.6396906501613557,0.9343315702863038,-0.8328318581916392,0.63453856902197,0.7688906551338732,-0.8191657178103924,-0.2272273413836956,0.39294466748833656,-0.6007169657386839,0.3389224880374968,0.5238105384632945,0.6415935698896646,0.019468849059194326,0.4918948761187494,-0.2539581600576639,-0.678030866663903,0.5145982853136957,-0.4934159768745303,-0.031794704496860504,-0.9387385342270136,-0.8032652582041919,0.21661096345633268,0.6945197228342295,0.9825157485902309,0.5137586113996804,0.05291876383125782,0.5898537682369351,0.3250652696006,0.15656073484569788,0.9724500733427703,-0.613891342189163,0.7045787358656526,-0.7258446528576314,0.4662375212647021,-0.9510210468433797,0.448858258780092,0.5025092242285609,0.5921129463240504,-0.5614158483222127,-0.22602028213441372,-0.2398409117013216,0.46913184924051166,0.4884818932041526,-0.18957743234932423,0.9062341623939574,0.5395768978632987,0.8229880412109196,-0.2870953562669456,0.93183159455657,-0.6202780189923942,-0.680992464069277,-0.47433489095419645,0.4002025160007179,0.5025443793274462,-0.3338193059898913,-0.03117755288258195,0.1371282823383808,-0.3666003169491887,0.6569790821522474,0.10837896587327123,0.4936739131808281,0.12744280183687806,0.4542370503768325,0.1605189903639257,0.4153030039742589,0.6531191365793347,-0.7551245833747089,-0.503268085885793,-0.08601707639172673,-0.1309857745654881,-0.7182959727942944,-0.104095752350986,-0.08513505151495337,-0.21766496961936355,-0.9691066429950297,-0.1720595071092248,-0.5924538425169885,-0.12646437576040626,-0.44914620323106647,0.20085399178788066,0.15342978993430734,0.2061799573712051,-0.898123987019062,0.2558978386223316,-0.33053898299112916,0.6255537839606404,-0.8273600959219038,0.6015170505270362,0.667166403029114,-0.8056606203317642,-0.8904044711962342,0.17177692474797368,-0.24196700425818563,0.5826232014223933,-0.8310859790071845,-0.17348345229402184,0.05999049311503768,0.4528827425092459,-0.544816845562309,0.17536619352176785,-0.2153187678195536,0.446985752787441,0.24746985267847776,-0.8796607186086476,-0.8982040174305439,-0.38676604395732284,-0.22892373939976096,0.5319736977107823,0.5982798207551241,0.08296884968876839,0.3826817460358143,-0.8305569202639163,-0.002916411031037569,-0.9342427575029433,0.4358822591602802,0.37415658915415406,0.8983231075108051,0.42435734532773495,0.8442689091898501,-0.38436697237193584,0.9339730832725763,-0.8057428621686995,-0.8732602475211024,0.4124110215343535,-0.4217335442081094,-0.05878831259906292,-0.39307434344664216,-0.383046711795032,-0.6083624828606844,0.7943689515814185,0.02436796948313713,0.1151576959528029,-0.19989281427115202,-0.9448921452276409,0.030951833818107843,-0.18580412119627,0.9542420189827681,-0.986203727312386,0.3561652498319745,0.8114075320772827,0.13821766385808587,0.2284603575244546,-0.5238572647795081,0.8275685547851026,-0.8031582897529006,-0.15030931122601032,0.42277369229122996,0.37433738401159644,0.12504430022090673,0.29407266108319163,-0.6091715320944786,0.1569807045161724,0.6621636645868421,0.8964801258407533,-0.36318429838865995,0.5680676153860986,-0.38562016235664487,0.5281841354444623,-0.5823791110888124,-0.19871382089331746,0.7197453617118299,-0.17293997295200825,0.5338742253370583,0.6936498181894422,-0.22182045504450798,0.2751337653025985,0.6066006137989461,-0.3054448403418064,0.17960929218679667,0.4196723266504705,-0.2107465099543333,-0.7121406616643071,0.48265210911631584,-0.7770125954411924,-0.33130441373214126,-0.8864833912812173,0.19906990323215723,0.8941401061601937,-0.38552294252440333,0.2922440874390304,-0.2139495313167572,0.686778353061527,-0.8267082325182855,0.9511664025485516,0.26027048425748944,0.04818705515936017,0.4577022837474942,-0.051786314230412245,-0.6938915718346834,0.43148867413401604,-0.8666510926559567,-0.9315016968175769,-0.20792171359062195,-0.15676986798644066,-0.2947027152404189,-0.24248424405232072,0.97566082701087,0.4068560190498829,-0.8253384730778635,0.10085639031603932,-0.5229265028610826,0.22761702304705977,-0.5705716386437416,-0.8495053676888347,0.4706539469771087,-0.8604262084700167,-0.2369433636777103,-0.8365843249484897,-0.08350177109241486,-0.4542715256102383,-0.4940384393557906,-0.08889110386371613,0.10506321676075459,0.995892867911607,0.9094010796397924,-0.8861571759916842,-0.22864140570163727,-0.058653225656598806,-0.5479426989331841,0.5072942683473229,0.5812937724404037,-0.17095446167513728,0.44178058253601193,-0.6711734374985099,0.7804347341880202,0.6454682042822242,-0.20433184411376715,0.3698703278787434,0.2358117471449077,0.21652395278215408,-0.8462565029039979,-0.8132912311702967,0.31760048121213913,0.503427226562053,-0.13171571074053645,0.7133804350160062,-0.917820037342608,0.32625212613493204,-0.46878904988989234,-0.5393393258564174,0.14979944983497262,0.9741327408701181,-0.25215159356594086,-0.3213959517888725,-0.17848863080143929,-0.43207135424017906,-0.8284306786954403,-0.20380770741030574,-0.6269614994525909,-0.4082419387996197,0.42970463167876005,0.18107006279751658,-0.5582726667635143,0.0766882305033505,0.6737530631944537,-0.999575664754957,-0.7425548755563796,-0.9794817892834544,0.565876207780093,0.5941920443437994,-0.9082335350103676,-0.5149056296795607,0.5802158787846565,0.753507612273097,-0.4018018767237663,-0.9822817179374397,0.6131234848871827,0.7426169542595744,-0.4301344775594771,-0.9858471346087754,0.6403908268548548,0.6976815043017268,-0.38648259826004505,-0.4094337257556617,0.19223644910380244,0.03445656364783645,-0.6479268735274673,0.2552092894911766,0.10209157690405846,-0.1657214448787272,-0.1968511212617159,-0.8010207870975137,-0.13159024342894554,-0.021976421121507883,-0.8930714931339025,-0.1859030518680811,0.02424601512029767,0.5856904396787286,0.961002741008997,-0.6706332908943295,0.6081436444073915,-0.2552485903725028,0.5058221626095474,0.2389925648458302,-0.8314137575216591,-0.8778519593179226,0.4670281638391316,0.4205573792569339,-0.06681882170960307,0.755652264226228,-0.8988463543355465,0.3510863659903407,0.8584695407189429,-0.38291255850344896,0.9971339358016849,-0.5216172779910266,0.8400911083444953,-0.8703309670090675,0.25729358149692416,-0.6091700065881014,0.5870025944896042,0.9338676002807915,0.03315667109563947,-0.17332833539694548,0.01646989956498146,-0.36043056566268206,-0.6154202530160546,-0.9092961484566331,-0.11784501699730754,0.29972928389906883,-0.12314523803070188,-0.9111870359629393,0.28714949591085315,0.6284837913699448,0.39589128782972693,-0.024702600203454494,-0.7725175935775042,0.5406629694625735,0.09495079377666116,0.9836917333304882,0.44304498843848705,-0.710142629686743,0.26329981116577983,-0.3359231068752706,0.4865678437054157,0.915379754267633,0.6136323856189847,-0.83186114160344,0.5685244021005929,0.8163058622740209,-0.1494081667624414,0.3398732072673738,0.8739372584968805,0.6612117197364569,0.6711404379457235,-0.3581023714505136,-0.1188367698341608,0.12144782952964306,-0.12065045488998294,-0.1737401462160051,0.700783543754369,-0.8598921210505068,-0.4284505434334278,-0.6033742357976735,-0.23387526953592896,0.8952848981134593,-0.2248194282874465,0.628360528498888,-0.7503877668641508,-0.6275967895053327,0.25483978260308504,-0.28927310835570097,0.9637373858131468,-0.48611305747181177,0.9362353840842843,-0.24583347653970122,0.851336007937789,0.7923152409493923,0.39206414204090834,-0.9140081405639648,-0.7285553552210331,0.31656694412231445,0.46158386720344424,-0.7846261272206903,0.057376908138394356,0.4336136570200324,-0.04982049809768796,-0.6070012282580137,-0.043207780458033085,0.9317292426712811,0.6909868842922151,0.8327526948414743,0.6281160707585514,-0.9535183608531952,-0.42324241949245334,0.74535465054214,0.38506022235378623,-0.4803679254837334,-0.27995586302131414,0.9535338003188372,-0.24557866621762514,-0.32063091080635786,0.28482811711728573,-0.33969562593847513,0.15743015706539154,-0.8773524183779955,0.9441435122862458,0.9553869073279202,-0.020911430940032005,0.8606064883060753,0.5556390509009361,-0.2069255211390555,0.23539585201069713,0.23340951139107347,0.3254552152939141,0.2909377617761493,0.1627220413647592,0.9992480729706585,0.022060374729335308,-0.1950772376731038,-0.11376506043598056,0.2409265637397766,-0.4169223541393876,0.9448050148785114,0.5880902507342398,-0.22849874198436737,-0.7613299116492271,0.47686871280893683,0.7663431470282376,-0.1490541622042656,0.3383672176860273,-0.13436868926510215,-0.03322815056890249,0.16046298248693347,0.7259187600575387,-0.16972397547215223,0.1615752363577485,0.15008100494742393,0.4582162103615701,0.5607884526252747,0.8600151212885976,0.7937246700748801,0.5248790821060538,0.37443831004202366,-0.0025003403425216675,-0.7888887757435441,-0.728999535087496,-0.11966806137934327,-0.8761029937304556,0.06152192875742912,-0.4392284625209868,0.22151825111359358,0.73689134279266,0.013147054705768824,-0.11030711559578776,-0.9589551989920437,-0.5924042947590351,-0.8326927842572331,-0.7376237637363374,0.19042567629367113,-0.7757937517017126,-0.14372928394004703,0.260260870680213,0.04434272414073348,-0.6900317068211734,-0.7826335933059454,-0.6600263654254377,0.17060327250510454,0.5127815208397806,-0.2518522678874433,0.690392667427659,-0.16856879508122802,0.6735615669749677,0.11405526241287589,0.7415307704359293,0.9018829623237252,-0.17101715691387653,0.9600284667685628,0.6762838754802942,-0.8647228684276342,-0.5124719366431236,-0.019028454553335905,-0.6801950079388916,0.6627347785979509,-0.9781921757385135,0.7547072619199753,0.4012947413139045,0.6462310994975269,-0.16351483529433608,-0.8701473362743855,-0.39293144922703505,0.7752587054856122,0.0671890121884644,0.5002520638518035,0.40584385208785534,-0.24914302676916122,0.39549852488562465,0.20821291860193014,-0.15361245861276984,0.5154150202870369,-0.5993090383708477,0.3790564090013504,0.42926838621497154,-0.20615834090858698,-0.8832099181599915,0.05387959349900484,-0.627486031036824,-0.9840187239460647,-0.10589851206168532,-0.8819426745176315,0.8680199501104653,0.02123879361897707,0.8304599770344794,0.9271381348371506,0.2567152981646359,-0.9041213602758944,-0.5603606915101409,0.876020799856633,-0.40883373841643333,0.48344892309978604,0.26141424803063273,0.14808253198862076,-0.01833119709044695,0.6009583482518792,-0.15670711174607277,-0.24765425128862262,-0.9766010181047022,0.12853103736415505,0.23499145451933146,0.5685161319561303,0.4983470914885402,0.5990883917547762,-0.9617159222252667,0.7841213066130877,-0.449464054312557,0.003718965221196413,0.22704234765842557,-0.02607329236343503,-0.3536238493397832,0.5926960036158562,-0.8515349300578237,-0.03237174032256007,0.5290100746788085,0.33001936227083206],"type":"scatter3d"},{"customdata":[["2024-07-24T11:35:06.010000"],["2024-07-24T11:35:07.010000"],["2024-07-24T11:35:08.010000"],["2024-07-24T11:35:09.010000"],["2024-07-24T11:35:10.010000"],["2024-07-24T11:35:11.010000"],["2024-07-24T11:35:12.010000"],["2024-07-24T11:35:13.010000"],["2024-07-24T11:35:14.010000"],["2024-07-24T11:35:15.010000"],["2024-07-24T11:35:16.010000"],["2024-07-24T11:35:17.010000"],["2024-07-24T11:35:18.010000"],["2024-07-24T11:35:19.010000"],["2024-07-24T11:35:20.010000"],["2024-07-24T11:35:21.010000"],["2024-07-24T11:35:22.010000"],["2024-07-24T11:35:23.010000"],["2024-07-24T11:35:24.010000"],["2024-07-24T11:35:25.010000"],["2024-07-24T11:35:26.010000"],["2024-07-24T11:35:27.010000"],["2024-07-24T11:35:28.010000"],["2024-07-24T11:35:29.010000"],["2024-07-24T11:35:30.010000"],["2024-07-24T11:35:31.010000"],["2024-07-24T11:35:32.010000"],["2024-07-24T11:35:33.010000"],["2024-07-24T11:35:34.010000"],["2024-07-24T11:35:35.010000"],["2024-07-24T11:35:36.010000"],["2024-07-24T11:35:37.010000"],["2024-07-24T11:35:38.010000"],["2024-07-24T11:35:39.010000"],["2024-07-24T11:35:40.010000"],["2024-07-24T11:35:41.010000"],["2024-07-24T11:35:42.010000"],["2024-07-24T11:35:43.010000"],["2024-07-24T11:35:44.010000"],["2024-07-24T11:35:45.010000"],["2024-07-24T11:35:46.010000"],["2024-07-24T11:35:47.010000"],["2024-07-24T11:35:48.010000"],["2024-07-24T11:35:49.010000"],["2024-07-24T11:35:50.010000"],["2024-07-24T11:35:51.010000"],["2024-07-24T11:35:52.010000"],["2024-07-24T11:35:53.010000"],["2024-07-24T11:35:54.010000"],["2024-07-24T11:35:55.010000"],["2024-07-24T11:35:56.010000"],["2024-07-24T11:35:57.010000"],["2024-07-24T11:35:58.010000"],["2024-07-24T11:35:59.010000"],["2024-07-24T11:36:00.010000"],["2024-07-24T11:36:01.010000"],["2024-07-24T11:36:02.010000"],["2024-07-24T11:36:03.010000"],["2024-07-24T11:36:04.010000"],["2024-07-24T11:36:05.010000"],["2024-07-24T11:36:06.010000"],["2024-07-24T11:36:07.010000"],["2024-07-24T11:36:08.010000"],["2024-07-24T11:36:09.010000"],["2024-07-24T11:36:10.010000"],["2024-07-24T11:36:11.010000"],["2024-07-24T11:36:12.010000"],["2024-07-24T11:36:13.010000"],["2024-07-24T11:36:14.010000"],["2024-07-24T11:36:15.010000"],["2024-07-24T11:36:16.010000"],["2024-07-24T11:36:17.010000"],["2024-07-24T11:36:18.010000"],["2024-07-24T11:36:19.010000"],["2024-07-24T11:36:20.010000"],["2024-07-24T11:36:21.010000"],["2024-07-24T11:36:22.010000"],["2024-07-24T11:36:23.010000"],["2024-07-24T11:36:24.010000"],["2024-07-24T11:36:25.010000"],["2024-07-24T11:36:26.010000"],["2024-07-24T11:36:27.010000"],["2024-07-24T11:36:28.010000"],["2024-07-24T11:36:29.010000"],["2024-07-24T11:36:30.010000"],["2024-07-24T11:36:31.010000"],["2024-07-24T11:36:32.010000"],["2024-07-24T11:36:33.010000"],["2024-07-24T11:36:34.010000"],["2024-07-24T11:36:35.010000"],["2024-07-24T11:36:36.010000"],["2024-07-24T11:36:37.010000"],["2024-07-24T11:36:38.010000"],["2024-07-24T11:36:39.010000"],["2024-07-24T11:36:40.010000"],["2024-07-24T11:36:41.010000"],["2024-07-24T11:36:42.010000"],["2024-07-24T11:36:43.010000"],["2024-07-24T11:36:44.010000"],["2024-07-24T11:36:45.010000"],["2024-07-24T11:36:46.010000"],["2024-07-24T11:36:47.010000"],["2024-07-24T11:36:48.010000"],["2024-07-24T11:36:49.010000"],["2024-07-24T11:36:50.010000"],["2024-07-24T11:36:51.010000"],["2024-07-24T11:36:52.010000"],["2024-07-24T11:36:53.010000"],["2024-07-24T11:36:54.010000"],["2024-07-24T11:36:55.010000"],["2024-07-24T11:36:56.010000"],["2024-07-24T11:36:57.010000"],["2024-07-24T11:36:58.010000"],["2024-07-24T11:36:59.010000"],["2024-07-24T11:37:00.010000"],["2024-07-24T11:37:01.010000"],["2024-07-24T11:37:02.010000"],["2024-07-24T11:37:03.010000"],["2024-07-24T11:37:04.010000"],["2024-07-24T11:37:05.010000"],["2024-07-24T11:37:06.010000"],["2024-07-24T11:37:07.010000"],["2024-07-24T11:37:08.010000"],["2024-07-24T11:37:09.010000"],["2024-07-24T11:37:10.010000"],["2024-07-24T11:37:11.010000"],["2024-07-24T11:37:12.010000"],["2024-07-24T11:37:13.010000"],["2024-07-24T11:37:14.010000"],["2024-07-24T11:37:15.010000"],["2024-07-24T11:37:16.010000"],["2024-07-24T11:37:17.010000"],["2024-07-24T11:37:18.010000"],["2024-07-24T11:37:19.010000"],["2024-07-24T11:37:20.010000"],["2024-07-24T11:37:21.010000"],["2024-07-24T11:37:22.010000"],["2024-07-24T11:37:23.010000"],["2024-07-24T11:37:24.010000"],["2024-07-24T11:37:25.010000"],["2024-07-24T11:37:26.010000"],["2024-07-24T11:37:27.010000"],["2024-07-24T11:37:28.010000"],["2024-07-24T11:37:29.010000"],["2024-07-24T11:37:30.010000"],["2024-07-24T11:37:31.010000"],["2024-07-24T11:37:32.010000"],["2024-07-24T11:37:33.010000"],["2024-07-24T11:37:34.010000"],["2024-07-24T11:37:35.010000"],["2024-07-24T11:37:36.010000"],["2024-07-24T11:37:37.010000"],["2024-07-24T11:37:38.010000"],["2024-07-24T11:37:39.010000"],["2024-07-24T11:37:40.010000"],["2024-07-24T11:37:41.010000"],["2024-07-24T11:37:42.010000"],["2024-07-24T11:37:43.010000"],["2024-07-24T11:37:44.010000"],["2024-07-24T11:37:45.010000"],["2024-07-24T11:37:46.010000"],["2024-07-24T11:37:47.010000"],["2024-07-24T11:37:48.010000"],["2024-07-24T11:37:49.010000"],["2024-07-24T11:37:50.010000"],["2024-07-24T11:37:51.010000"],["2024-07-24T11:37:52.010000"],["2024-07-24T11:37:53.010000"],["2024-07-24T11:37:54.010000"],["2024-07-24T11:37:55.010000"],["2024-07-24T11:37:56.010000"],["2024-07-24T11:37:57.010000"],["2024-07-24T11:37:58.010000"],["2024-07-24T11:37:59.010000"],["2024-07-24T11:38:00.010000"],["2024-07-24T11:38:01.010000"],["2024-07-24T11:38:02.010000"],["2024-07-24T11:38:03.010000"],["2024-07-24T11:38:04.010000"],["2024-07-24T11:38:05.010000"],["2024-07-24T11:38:06.010000"],["2024-07-24T11:38:07.010000"],["2024-07-24T11:38:08.010000"],["2024-07-24T11:38:09.010000"],["2024-07-24T11:38:10.010000"],["2024-07-24T11:38:11.010000"],["2024-07-24T11:38:12.010000"],["2024-07-24T11:38:13.010000"],["2024-07-24T11:38:14.010000"],["2024-07-24T11:38:15.010000"],["2024-07-24T11:38:16.010000"],["2024-07-24T11:38:17.010000"],["2024-07-24T11:38:18.010000"],["2024-07-24T11:38:19.010000"],["2024-07-24T11:38:20.010000"],["2024-07-24T11:38:21.010000"],["2024-07-24T11:38:22.010000"],["2024-07-24T11:38:23.010000"],["2024-07-24T11:38:24.010000"],["2024-07-24T11:38:25.010000"],["2024-07-24T11:38:26.010000"],["2024-07-24T11:38:27.010000"],["2024-07-24T11:38:28.010000"],["2024-07-24T11:38:29.010000"],["2024-07-24T11:38:30.010000"],["2024-07-24T11:38:31.010000"],["2024-07-24T11:38:32.010000"],["2024-07-24T11:38:33.010000"],["2024-07-24T11:38:34.010000"],["2024-07-24T11:38:35.010000"],["2024-07-24T11:38:36.010000"],["2024-07-24T11:38:37.010000"],["2024-07-24T11:38:38.010000"],["2024-07-24T11:38:39.010000"],["2024-07-24T11:38:40.010000"],["2024-07-24T11:38:41.010000"],["2024-07-24T11:38:42.010000"],["2024-07-24T11:38:43.010000"],["2024-07-24T11:38:44.010000"],["2024-07-24T11:38:45.010000"],["2024-07-24T11:38:46.010000"],["2024-07-24T11:38:47.010000"],["2024-07-24T11:38:48.010000"],["2024-07-24T11:38:49.010000"],["2024-07-24T11:38:50.010000"],["2024-07-24T11:38:51.010000"],["2024-07-24T11:38:52.010000"],["2024-07-24T11:38:53.010000"],["2024-07-24T11:38:54.010000"],["2024-07-24T11:38:55.010000"],["2024-07-24T11:38:56.010000"],["2024-07-24T11:38:57.010000"],["2024-07-24T11:38:58.010000"],["2024-07-24T11:38:59.010000"],["2024-07-24T11:39:00.010000"],["2024-07-24T11:39:01.010000"],["2024-07-24T11:39:02.010000"],["2024-07-24T11:39:03.010000"],["2024-07-24T11:39:04.010000"],["2024-07-24T11:39:05.010000"],["2024-07-24T11:39:06.010000"],["2024-07-24T11:39:07.010000"],["2024-07-24T11:39:08.010000"],["2024-07-24T11:39:09.010000"],["2024-07-24T11:39:10.010000"],["2024-07-24T11:39:11.010000"],["2024-07-24T11:39:12.010000"],["2024-07-24T11:39:13.010000"],["2024-07-24T11:39:14.010000"],["2024-07-24T11:39:15.010000"],["2024-07-24T11:39:16.010000"],["2024-07-24T11:39:17.010000"],["2024-07-24T11:39:18.010000"],["2024-07-24T11:39:19.010000"],["2024-07-24T11:39:20.010000"],["2024-07-24T11:39:21.010000"],["2024-07-24T11:39:22.010000"],["2024-07-24T11:39:23.010000"],["2024-07-24T11:39:24.010000"],["2024-07-24T11:39:25.010000"],["2024-07-24T11:39:26.010000"],["2024-07-24T11:39:27.010000"],["2024-07-24T11:39:28.010000"],["2024-07-24T11:39:29.010000"],["2024-07-24T11:39:30.010000"],["2024-07-24T11:39:31.010000"],["2024-07-24T11:39:32.010000"],["2024-07-24T11:39:33.010000"],["2024-07-24T11:39:34.010000"],["2024-07-24T11:39:35.010000"],["2024-07-24T11:39:36.010000"],["2024-07-24T11:39:37.010000"],["2024-07-24T11:39:38.010000"],["2024-07-24T11:39:39.010000"],["2024-07-24T11:39:40.010000"],["2024-07-24T11:39:41.010000"],["2024-07-24T11:39:42.010000"],["2024-07-24T11:39:43.010000"],["2024-07-24T11:39:44.010000"],["2024-07-24T11:39:45.010000"],["2024-07-24T11:39:46.010000"],["2024-07-24T11:39:47.010000"],["2024-07-24T11:39:48.010000"],["2024-07-24T11:39:49.010000"],["2024-07-24T11:39:50.010000"],["2024-07-24T11:39:51.010000"],["2024-07-24T11:39:52.010000"],["2024-07-24T11:39:53.010000"],["2024-07-24T11:39:54.010000"],["2024-07-24T11:39:55.010000"],["2024-07-24T11:39:56.010000"],["2024-07-24T11:39:57.010000"],["2024-07-24T11:39:58.010000"],["2024-07-24T11:39:59.010000"],["2024-07-24T11:40:00.010000"],["2024-07-24T11:40:01.010000"],["2024-07-24T11:40:02.010000"],["2024-07-24T11:40:03.010000"],["2024-07-24T11:40:04.010000"],["2024-07-24T11:40:05.010000"],["2024-07-24T11:40:06.010000"],["2024-07-24T11:40:07.010000"],["2024-07-24T11:40:08.010000"],["2024-07-24T11:40:09.010000"],["2024-07-24T11:40:10.010000"],["2024-07-24T11:40:11.010000"],["2024-07-24T11:40:12.010000"],["2024-07-24T11:40:13.010000"],["2024-07-24T11:40:14.010000"],["2024-07-24T11:40:15.010000"],["2024-07-24T11:40:16.010000"],["2024-07-24T11:40:17.010000"],["2024-07-24T11:40:18.010000"],["2024-07-24T11:40:19.010000"],["2024-07-24T11:40:20.010000"],["2024-07-24T11:40:21.010000"],["2024-07-24T11:40:22.010000"],["2024-07-24T11:40:23.010000"],["2024-07-24T11:40:24.010000"],["2024-07-24T11:40:25.010000"],["2024-07-24T11:40:26.010000"],["2024-07-24T11:40:27.010000"],["2024-07-24T11:40:28.010000"],["2024-07-24T11:40:29.010000"],["2024-07-24T11:40:30.010000"],["2024-07-24T11:40:31.010000"],["2024-07-24T11:40:32.010000"],["2024-07-24T11:40:33.010000"],["2024-07-24T11:40:34.010000"],["2024-07-24T11:40:35.010000"],["2024-07-24T11:40:36.010000"],["2024-07-24T11:40:37.010000"],["2024-07-24T11:40:38.010000"],["2024-07-24T11:40:39.010000"],["2024-07-24T11:40:40.010000"],["2024-07-24T11:40:41.010000"],["2024-07-24T11:40:42.010000"],["2024-07-24T11:40:43.010000"],["2024-07-24T11:40:44.010000"],["2024-07-24T11:40:45.010000"],["2024-07-24T11:40:46.010000"],["2024-07-24T11:40:47.010000"],["2024-07-24T11:40:48.010000"],["2024-07-24T11:40:49.010000"],["2024-07-24T11:40:50.010000"],["2024-07-24T11:40:51.010000"],["2024-07-24T11:40:52.010000"],["2024-07-24T11:40:53.010000"],["2024-07-24T11:40:54.010000"],["2024-07-24T11:40:55.010000"],["2024-07-24T11:40:56.010000"],["2024-07-24T11:40:57.010000"],["2024-07-24T11:40:58.010000"],["2024-07-24T11:40:59.010000"],["2024-07-24T11:41:00.010000"],["2024-07-24T11:41:01.010000"],["2024-07-24T11:41:02.010000"],["2024-07-24T11:41:03.010000"],["2024-07-24T11:41:04.010000"],["2024-07-24T11:41:05.010000"],["2024-07-24T11:41:06.010000"],["2024-07-24T11:41:07.010000"],["2024-07-24T11:41:08.010000"],["2024-07-24T11:41:09.010000"],["2024-07-24T11:41:10.010000"],["2024-07-24T11:41:11.010000"],["2024-07-24T11:41:12.010000"],["2024-07-24T11:41:13.010000"],["2024-07-24T11:41:14.010000"],["2024-07-24T11:41:15.010000"],["2024-07-24T11:41:16.010000"],["2024-07-24T11:41:17.010000"],["2024-07-24T11:41:18.010000"],["2024-07-24T11:41:19.010000"],["2024-07-24T11:41:20.010000"],["2024-07-24T11:41:21.010000"],["2024-07-24T11:41:22.010000"],["2024-07-24T11:41:23.010000"],["2024-07-24T11:41:24.010000"],["2024-07-24T11:41:25.010000"],["2024-07-24T11:41:26.010000"],["2024-07-24T11:41:27.010000"],["2024-07-24T11:41:28.010000"],["2024-07-24T11:41:29.010000"],["2024-07-24T11:41:30.010000"],["2024-07-24T11:41:31.010000"],["2024-07-24T11:41:32.010000"],["2024-07-24T11:41:33.010000"],["2024-07-24T11:41:34.010000"],["2024-07-24T11:41:35.010000"],["2024-07-24T11:41:36.010000"],["2024-07-24T11:41:37.010000"],["2024-07-24T11:41:38.010000"],["2024-07-24T11:41:39.010000"],["2024-07-24T11:41:40.010000"],["2024-07-24T11:41:41.010000"],["2024-07-24T11:41:42.010000"],["2024-07-24T11:41:43.010000"],["2024-07-24T11:41:44.010000"],["2024-07-24T11:41:45.010000"],["2024-07-24T11:41:46.010000"],["2024-07-24T11:41:47.010000"],["2024-07-24T11:41:48.010000"],["2024-07-24T11:41:49.010000"],["2024-07-24T11:41:50.010000"],["2024-07-24T11:41:51.010000"],["2024-07-24T11:41:52.010000"],["2024-07-24T11:41:53.010000"],["2024-07-24T11:41:54.010000"],["2024-07-24T11:41:55.010000"],["2024-07-24T11:41:56.010000"],["2024-07-24T11:41:57.010000"],["2024-07-24T11:41:58.010000"],["2024-07-24T11:41:59.010000"],["2024-07-24T11:42:00.010000"],["2024-07-24T11:42:01.010000"],["2024-07-24T11:42:02.010000"],["2024-07-24T11:42:03.010000"],["2024-07-24T11:42:04.010000"],["2024-07-24T11:42:05.010000"],["2024-07-24T11:42:06.010000"],["2024-07-24T11:42:07.010000"],["2024-07-24T11:42:08.010000"],["2024-07-24T11:42:09.010000"],["2024-07-24T11:42:10.010000"],["2024-07-24T11:42:11.010000"],["2024-07-24T11:42:12.010000"],["2024-07-24T11:42:13.010000"],["2024-07-24T11:42:14.010000"],["2024-07-24T11:42:15.010000"],["2024-07-24T11:42:16.010000"],["2024-07-24T11:42:17.010000"],["2024-07-24T11:42:18.010000"],["2024-07-24T11:42:19.010000"],["2024-07-24T11:42:20.010000"],["2024-07-24T11:42:21.010000"],["2024-07-24T11:42:22.010000"],["2024-07-24T11:42:23.010000"],["2024-07-24T11:42:24.010000"],["2024-07-24T11:42:25.010000"],["2024-07-24T11:42:26.010000"],["2024-07-24T11:42:27.010000"],["2024-07-24T11:42:28.010000"],["2024-07-24T11:42:29.010000"],["2024-07-24T11:42:30.010000"],["2024-07-24T11:42:31.010000"],["2024-07-24T11:42:32.010000"],["2024-07-24T11:42:33.010000"],["2024-07-24T11:42:34.010000"],["2024-07-24T11:42:35.010000"],["2024-07-24T11:42:36.010000"],["2024-07-24T11:42:37.010000"],["2024-07-24T11:42:38.010000"],["2024-07-24T11:42:39.010000"],["2024-07-24T11:42:40.010000"],["2024-07-24T11:42:41.010000"],["2024-07-24T11:42:42.010000"],["2024-07-24T11:42:43.010000"],["2024-07-24T11:42:44.010000"],["2024-07-24T11:42:45.010000"],["2024-07-24T11:42:46.010000"],["2024-07-24T11:42:47.010000"],["2024-07-24T11:42:48.010000"],["2024-07-24T11:42:49.010000"],["2024-07-24T11:42:50.010000"],["2024-07-24T11:42:51.010000"],["2024-07-24T11:42:52.010000"],["2024-07-24T11:42:53.010000"],["2024-07-24T11:42:54.010000"],["2024-07-24T11:42:55.010000"],["2024-07-24T11:42:56.010000"],["2024-07-24T11:42:57.010000"],["2024-07-24T11:42:58.010000"],["2024-07-24T11:42:59.010000"],["2024-07-24T11:43:00.010000"],["2024-07-24T11:43:01.010000"],["2024-07-24T11:43:02.010000"],["2024-07-24T11:43:03.010000"],["2024-07-24T11:43:04.010000"],["2024-07-24T11:43:05.010000"],["2024-07-24T11:43:06.010000"],["2024-07-24T11:43:07.010000"],["2024-07-24T11:43:08.010000"],["2024-07-24T11:43:09.010000"],["2024-07-24T11:43:10.010000"],["2024-07-24T11:43:11.010000"],["2024-07-24T11:43:12.010000"],["2024-07-24T11:43:13.010000"],["2024-07-24T11:43:14.010000"],["2024-07-24T11:43:15.010000"],["2024-07-24T11:43:16.010000"],["2024-07-24T11:43:17.010000"],["2024-07-24T11:43:18.010000"],["2024-07-24T11:43:19.010000"],["2024-07-24T11:43:20.010000"],["2024-07-24T11:43:21.010000"],["2024-07-24T11:43:22.010000"],["2024-07-24T11:43:23.010000"],["2024-07-24T11:43:24.010000"],["2024-07-24T11:43:25.010000"],["2024-07-24T11:43:26.010000"],["2024-07-24T11:43:27.010000"],["2024-07-24T11:43:28.010000"],["2024-07-24T11:43:29.010000"],["2024-07-24T11:43:30.010000"],["2024-07-24T11:43:31.010000"],["2024-07-24T11:43:32.010000"],["2024-07-24T11:43:33.010000"],["2024-07-24T11:43:34.010000"],["2024-07-24T11:43:35.010000"],["2024-07-24T11:43:36.010000"],["2024-07-24T11:43:37.010000"],["2024-07-24T11:43:38.010000"],["2024-07-24T11:43:39.010000"],["2024-07-24T11:43:40.010000"],["2024-07-24T11:43:41.010000"],["2024-07-24T11:43:42.010000"],["2024-07-24T11:43:43.010000"],["2024-07-24T11:43:44.010000"],["2024-07-24T11:43:45.010000"],["2024-07-24T11:43:46.010000"],["2024-07-24T11:43:47.010000"],["2024-07-24T11:43:48.010000"],["2024-07-24T11:43:49.010000"],["2024-07-24T11:43:50.010000"],["2024-07-24T11:43:51.010000"],["2024-07-24T11:43:52.010000"],["2024-07-24T11:43:53.010000"],["2024-07-24T11:43:54.010000"],["2024-07-24T11:43:55.010000"],["2024-07-24T11:43:56.010000"],["2024-07-24T11:43:57.010000"],["2024-07-24T11:43:58.010000"],["2024-07-24T11:43:59.010000"],["2024-07-24T11:44:00.010000"],["2024-07-24T11:44:01.010000"],["2024-07-24T11:44:02.010000"],["2024-07-24T11:44:03.010000"],["2024-07-24T11:44:04.010000"],["2024-07-24T11:44:05.010000"],["2024-07-24T11:44:06.010000"],["2024-07-24T11:44:07.010000"],["2024-07-24T11:44:08.010000"],["2024-07-24T11:44:09.010000"],["2024-07-24T11:44:10.010000"],["2024-07-24T11:44:11.010000"],["2024-07-24T11:44:12.010000"],["2024-07-24T11:44:13.010000"],["2024-07-24T11:44:14.010000"],["2024-07-24T11:44:15.010000"],["2024-07-24T11:44:16.010000"],["2024-07-24T11:44:17.010000"],["2024-07-24T11:44:18.010000"],["2024-07-24T11:44:19.010000"],["2024-07-24T11:44:20.010000"],["2024-07-24T11:44:21.010000"],["2024-07-24T11:44:22.010000"],["2024-07-24T11:44:23.010000"],["2024-07-24T11:44:24.010000"],["2024-07-24T11:44:25.010000"],["2024-07-24T11:44:26.010000"],["2024-07-24T11:44:27.010000"],["2024-07-24T11:44:28.010000"],["2024-07-24T11:44:29.010000"],["2024-07-24T11:44:30.010000"],["2024-07-24T11:44:31.010000"],["2024-07-24T11:44:32.010000"],["2024-07-24T11:44:33.010000"],["2024-07-24T11:44:34.010000"],["2024-07-24T11:44:35.010000"],["2024-07-24T11:44:36.010000"],["2024-07-24T11:44:37.010000"],["2024-07-24T11:44:38.010000"],["2024-07-24T11:44:39.010000"],["2024-07-24T11:44:40.010000"],["2024-07-24T11:44:41.010000"],["2024-07-24T11:44:42.010000"],["2024-07-24T11:44:43.010000"],["2024-07-24T11:44:44.010000"],["2024-07-24T11:44:45.010000"],["2024-07-24T11:44:46.010000"],["2024-07-24T11:44:47.010000"],["2024-07-24T11:44:48.010000"],["2024-07-24T11:44:49.010000"],["2024-07-24T11:44:50.010000"],["2024-07-24T11:44:51.010000"],["2024-07-24T11:44:52.010000"],["2024-07-24T11:44:53.010000"],["2024-07-24T11:44:54.010000"],["2024-07-24T11:44:55.010000"],["2024-07-24T11:44:56.010000"],["2024-07-24T11:44:57.010000"],["2024-07-24T11:44:58.010000"],["2024-07-24T11:44:59.010000"],["2024-07-24T11:45:00.010000"],["2024-07-24T11:45:01.010000"],["2024-07-24T11:45:02.010000"],["2024-07-24T11:45:03.010000"],["2024-07-24T11:45:04.010000"],["2024-07-24T11:45:05.010000"],["2024-07-24T11:45:06.010000"],["2024-07-24T11:45:07.010000"],["2024-07-24T11:45:08.010000"],["2024-07-24T11:45:09.010000"],["2024-07-24T11:45:10.010000"],["2024-07-24T11:45:11.010000"],["2024-07-24T11:45:12.010000"],["2024-07-24T11:45:13.010000"],["2024-07-24T11:45:14.010000"],["2024-07-24T11:45:15.010000"],["2024-07-24T11:45:16.010000"],["2024-07-24T11:45:17.010000"],["2024-07-24T11:45:18.010000"],["2024-07-24T11:45:19.010000"],["2024-07-24T11:45:20.010000"],["2024-07-24T11:45:21.010000"],["2024-07-24T11:45:22.010000"],["2024-07-24T11:45:23.010000"],["2024-07-24T11:45:24.010000"],["2024-07-24T11:45:25.010000"],["2024-07-24T11:45:26.010000"],["2024-07-24T11:45:27.010000"],["2024-07-24T11:45:28.010000"],["2024-07-24T11:45:29.010000"],["2024-07-24T11:45:30.010000"],["2024-07-24T11:45:31.010000"],["2024-07-24T11:45:32.010000"],["2024-07-24T11:45:33.010000"],["2024-07-24T11:45:34.010000"],["2024-07-24T11:45:35.010000"],["2024-07-24T11:45:36.010000"],["2024-07-24T11:45:37.010000"],["2024-07-24T11:45:38.010000"],["2024-07-24T11:45:39.010000"],["2024-07-24T11:45:40.010000"],["2024-07-24T11:45:41.010000"],["2024-07-24T11:45:42.010000"],["2024-07-24T11:45:43.010000"],["2024-07-24T11:45:44.010000"],["2024-07-24T11:45:45.010000"],["2024-07-24T11:45:46.010000"],["2024-07-24T11:45:47.010000"],["2024-07-24T11:45:48.010000"],["2024-07-24T11:45:49.010000"],["2024-07-24T11:45:50.010000"],["2024-07-24T11:45:51.010000"],["2024-07-24T11:45:52.010000"],["2024-07-24T11:45:53.010000"],["2024-07-24T11:45:54.010000"],["2024-07-24T11:45:55.010000"],["2024-07-24T11:45:56.010000"],["2024-07-24T11:45:57.010000"],["2024-07-24T11:45:58.010000"],["2024-07-24T11:45:59.010000"],["2024-07-24T11:46:00.010000"],["2024-07-24T11:46:01.010000"],["2024-07-24T11:46:02.010000"],["2024-07-24T11:46:03.010000"],["2024-07-24T11:46:04.010000"],["2024-07-24T11:46:05.010000"],["2024-07-24T11:46:06.010000"],["2024-07-24T11:46:07.010000"],["2024-07-24T11:46:08.010000"],["2024-07-24T11:46:09.010000"],["2024-07-24T11:46:10.010000"],["2024-07-24T11:46:11.010000"],["2024-07-24T11:46:12.010000"],["2024-07-24T11:46:13.010000"],["2024-07-24T11:46:14.010000"],["2024-07-24T11:46:15.010000"],["2024-07-24T11:46:16.010000"],["2024-07-24T11:46:17.010000"],["2024-07-24T11:46:18.010000"],["2024-07-24T11:46:19.010000"],["2024-07-24T11:46:20.010000"],["2024-07-24T11:46:21.010000"],["2024-07-24T11:46:22.010000"],["2024-07-24T11:46:23.010000"],["2024-07-24T11:46:24.010000"],["2024-07-24T11:46:25.010000"],["2024-07-24T11:46:26.010000"],["2024-07-24T11:46:27.010000"],["2024-07-24T11:46:28.010000"],["2024-07-24T11:46:29.010000"],["2024-07-24T11:46:30.010000"],["2024-07-24T11:46:31.010000"],["2024-07-24T11:46:32.010000"],["2024-07-24T11:46:33.010000"],["2024-07-24T11:46:34.010000"],["2024-07-24T11:46:35.010000"],["2024-07-24T11:46:36.010000"],["2024-07-24T11:46:37.010000"],["2024-07-24T11:46:38.010000"],["2024-07-24T11:46:39.010000"],["2024-07-24T11:46:40.010000"],["2024-07-24T11:46:41.010000"],["2024-07-24T11:46:42.010000"],["2024-07-24T11:46:43.010000"],["2024-07-24T11:46:44.010000"],["2024-07-24T11:46:45.010000"],["2024-07-24T11:46:46.010000"],["2024-07-24T11:46:47.010000"],["2024-07-24T11:46:48.010000"],["2024-07-24T11:46:49.010000"],["2024-07-24T11:46:50.010000"],["2024-07-24T11:46:51.010000"],["2024-07-24T11:46:52.010000"],["2024-07-24T11:46:53.010000"],["2024-07-24T11:46:54.010000"],["2024-07-24T11:46:55.010000"],["2024-07-24T11:46:56.010000"],["2024-07-24T11:46:57.010000"],["2024-07-24T11:46:58.010000"],["2024-07-24T11:46:59.010000"],["2024-07-24T11:47:00.010000"],["2024-07-24T11:47:01.010000"],["2024-07-24T11:47:02.010000"],["2024-07-24T11:47:03.010000"],["2024-07-24T11:47:04.010000"],["2024-07-24T11:47:05.010000"],["2024-07-24T11:47:06.010000"],["2024-07-24T11:47:07.010000"],["2024-07-24T11:47:08.010000"],["2024-07-24T11:47:09.010000"],["2024-07-24T11:47:10.010000"],["2024-07-24T11:47:11.010000"],["2024-07-24T11:47:12.010000"],["2024-07-24T11:47:13.010000"],["2024-07-24T11:47:14.010000"],["2024-07-24T11:47:15.010000"],["2024-07-24T11:47:16.010000"],["2024-07-24T11:47:17.010000"],["2024-07-24T11:47:18.010000"],["2024-07-24T11:47:19.010000"],["2024-07-24T11:47:20.010000"],["2024-07-24T11:47:21.010000"],["2024-07-24T11:47:22.010000"],["2024-07-24T11:47:23.010000"],["2024-07-24T11:47:24.010000"],["2024-07-24T11:47:25.010000"],["2024-07-24T11:47:26.010000"],["2024-07-24T11:47:27.010000"],["2024-07-24T11:47:28.010000"],["2024-07-24T11:47:29.010000"],["2024-07-24T11:47:30.010000"],["2024-07-24T11:47:31.010000"],["2024-07-24T11:47:32.010000"],["2024-07-24T11:47:33.010000"],["2024-07-24T11:47:34.010000"],["2024-07-24T11:47:35.010000"],["2024-07-24T11:47:36.010000"],["2024-07-24T11:47:37.010000"],["2024-07-24T11:47:38.010000"],["2024-07-24T11:47:39.010000"],["2024-07-24T11:47:40.010000"],["2024-07-24T11:47:41.010000"],["2024-07-24T11:47:42.010000"],["2024-07-24T11:47:43.010000"],["2024-07-24T11:47:44.010000"],["2024-07-24T11:47:45.010000"],["2024-07-24T11:47:46.010000"],["2024-07-24T11:47:47.010000"],["2024-07-24T11:47:48.010000"],["2024-07-24T11:47:49.010000"],["2024-07-24T11:47:50.010000"],["2024-07-24T11:47:51.010000"],["2024-07-24T11:47:52.010000"],["2024-07-24T11:47:53.010000"],["2024-07-24T11:47:54.010000"],["2024-07-24T11:47:55.010000"],["2024-07-24T11:47:56.010000"],["2024-07-24T11:47:57.010000"],["2024-07-24T11:47:58.010000"],["2024-07-24T11:47:59.010000"],["2024-07-24T11:48:00.010000"],["2024-07-24T11:48:01.010000"],["2024-07-24T11:48:02.010000"],["2024-07-24T11:48:03.010000"],["2024-07-24T11:48:04.010000"],["2024-07-24T11:48:05.010000"],["2024-07-24T11:48:06.010000"],["2024-07-24T11:48:07.010000"],["2024-07-24T11:48:08.010000"],["2024-07-24T11:48:09.010000"],["2024-07-24T11:48:10.010000"],["2024-07-24T11:48:11.010000"],["2024-07-24T11:48:12.010000"],["2024-07-24T11:48:13.010000"],["2024-07-24T11:48:14.010000"],["2024-07-24T11:48:15.010000"],["2024-07-24T11:48:16.010000"],["2024-07-24T11:48:17.010000"],["2024-07-24T11:48:18.010000"],["2024-07-24T11:48:19.010000"],["2024-07-24T11:48:20.010000"],["2024-07-24T11:48:21.010000"],["2024-07-24T11:48:22.010000"],["2024-07-24T11:48:23.010000"],["2024-07-24T11:48:24.010000"],["2024-07-24T11:48:25.010000"],["2024-07-24T11:48:26.010000"],["2024-07-24T11:48:27.010000"],["2024-07-24T11:48:28.010000"],["2024-07-24T11:48:29.010000"],["2024-07-24T11:48:30.010000"],["2024-07-24T11:48:31.010000"],["2024-07-24T11:48:32.010000"],["2024-07-24T11:48:33.010000"],["2024-07-24T11:48:34.010000"],["2024-07-24T11:48:35.010000"],["2024-07-24T11:48:36.010000"],["2024-07-24T11:48:37.010000"],["2024-07-24T11:48:38.010000"],["2024-07-24T11:48:39.010000"],["2024-07-24T11:48:40.010000"],["2024-07-24T11:48:41.010000"],["2024-07-24T11:48:42.010000"],["2024-07-24T11:48:43.010000"],["2024-07-24T11:48:44.010000"],["2024-07-24T11:48:45.010000"],["2024-07-24T11:48:46.010000"],["2024-07-24T11:48:47.010000"],["2024-07-24T11:48:48.010000"],["2024-07-24T11:48:49.010000"],["2024-07-24T11:48:50.010000"],["2024-07-24T11:48:51.010000"],["2024-07-24T11:48:52.010000"],["2024-07-24T11:48:53.010000"],["2024-07-24T11:48:54.010000"],["2024-07-24T11:48:55.010000"],["2024-07-24T11:48:56.010000"],["2024-07-24T11:48:57.010000"],["2024-07-24T11:48:58.010000"],["2024-07-24T11:48:59.010000"],["2024-07-24T11:49:00.010000"],["2024-07-24T11:49:01.010000"],["2024-07-24T11:49:02.010000"],["2024-07-24T11:49:03.010000"],["2024-07-24T11:49:04.010000"],["2024-07-24T11:49:05.010000"],["2024-07-24T11:49:06.010000"],["2024-07-24T11:49:07.010000"],["2024-07-24T11:49:08.010000"],["2024-07-24T11:49:09.010000"],["2024-07-24T11:49:10.010000"],["2024-07-24T11:49:11.010000"],["2024-07-24T11:49:12.010000"],["2024-07-24T11:49:13.010000"],["2024-07-24T11:49:14.010000"],["2024-07-24T11:49:15.010000"],["2024-07-24T11:49:16.010000"],["2024-07-24T11:49:17.010000"],["2024-07-24T11:49:18.010000"],["2024-07-24T11:49:19.010000"],["2024-07-24T11:49:20.010000"],["2024-07-24T11:49:21.010000"],["2024-07-24T11:49:22.010000"],["2024-07-24T11:49:23.010000"],["2024-07-24T11:49:24.010000"],["2024-07-24T11:49:25.010000"],["2024-07-24T11:49:26.010000"],["2024-07-24T11:49:27.010000"],["2024-07-24T11:49:28.010000"],["2024-07-24T11:49:29.010000"],["2024-07-24T11:49:30.010000"],["2024-07-24T11:49:31.010000"],["2024-07-24T11:49:32.010000"],["2024-07-24T11:49:33.010000"],["2024-07-24T11:49:34.010000"],["2024-07-24T11:49:35.010000"],["2024-07-24T11:49:36.010000"],["2024-07-24T11:49:37.010000"],["2024-07-24T11:49:38.010000"],["2024-07-24T11:49:39.010000"],["2024-07-24T11:49:40.010000"],["2024-07-24T11:49:41.010000"],["2024-07-24T11:49:42.010000"],["2024-07-24T11:49:43.010000"],["2024-07-24T11:49:44.010000"],["2024-07-24T11:49:45.010000"],["2024-07-24T11:49:46.010000"],["2024-07-24T11:49:47.010000"],["2024-07-24T11:49:48.010000"],["2024-07-24T11:49:49.010000"],["2024-07-24T11:49:50.010000"],["2024-07-24T11:49:51.010000"],["2024-07-24T11:49:52.010000"],["2024-07-24T11:49:53.010000"],["2024-07-24T11:49:54.010000"],["2024-07-24T11:49:55.010000"],["2024-07-24T11:49:56.010000"],["2024-07-24T11:49:57.010000"],["2024-07-24T11:49:58.010000"],["2024-07-24T11:49:59.010000"],["2024-07-24T11:50:00.010000"],["2024-07-24T11:50:01.010000"],["2024-07-24T11:50:02.010000"],["2024-07-24T11:50:03.010000"],["2024-07-24T11:50:04.010000"],["2024-07-24T11:50:05.010000"],["2024-07-24T11:50:06.010000"],["2024-07-24T11:50:07.010000"],["2024-07-24T11:50:08.010000"],["2024-07-24T11:50:09.010000"],["2024-07-24T11:50:10.010000"],["2024-07-24T11:50:11.010000"],["2024-07-24T11:50:12.010000"],["2024-07-24T11:50:13.010000"],["2024-07-24T11:50:14.010000"],["2024-07-24T11:50:15.010000"],["2024-07-24T11:50:16.010000"],["2024-07-24T11:50:17.010000"],["2024-07-24T11:50:18.010000"],["2024-07-24T11:50:19.010000"],["2024-07-24T11:50:20.010000"],["2024-07-24T11:50:21.010000"],["2024-07-24T11:50:22.010000"],["2024-07-24T11:50:23.010000"],["2024-07-24T11:50:24.010000"],["2024-07-24T11:50:25.010000"],["2024-07-24T11:50:26.010000"],["2024-07-24T11:50:27.010000"],["2024-07-24T11:50:28.010000"],["2024-07-24T11:50:29.010000"],["2024-07-24T11:50:30.010000"],["2024-07-24T11:50:31.010000"],["2024-07-24T11:50:32.010000"],["2024-07-24T11:50:33.010000"],["2024-07-24T11:50:34.010000"],["2024-07-24T11:50:35.010000"],["2024-07-24T11:50:36.010000"],["2024-07-24T11:50:37.010000"],["2024-07-24T11:50:38.010000"],["2024-07-24T11:50:39.010000"],["2024-07-24T11:50:40.010000"],["2024-07-24T11:50:41.010000"],["2024-07-24T11:50:42.010000"],["2024-07-24T11:50:43.010000"],["2024-07-24T11:50:44.010000"],["2024-07-24T11:50:45.010000"],["2024-07-24T11:50:46.010000"],["2024-07-24T11:50:47.010000"],["2024-07-24T11:50:48.010000"],["2024-07-24T11:50:49.010000"],["2024-07-24T11:50:50.010000"],["2024-07-24T11:50:51.010000"],["2024-07-24T11:50:52.010000"],["2024-07-24T11:50:53.010000"],["2024-07-24T11:50:54.010000"],["2024-07-24T11:50:55.010000"],["2024-07-24T11:50:56.010000"],["2024-07-24T11:50:57.010000"],["2024-07-24T11:50:58.010000"],["2024-07-24T11:50:59.010000"],["2024-07-24T11:51:00.010000"],["2024-07-24T11:51:01.010000"],["2024-07-24T11:51:02.010000"],["2024-07-24T11:51:03.010000"],["2024-07-24T11:51:04.010000"],["2024-07-24T11:51:05.010000"],["2024-07-24T11:51:06.010000"],["2024-07-24T11:51:07.010000"],["2024-07-24T11:51:08.010000"],["2024-07-24T11:51:09.010000"],["2024-07-24T11:51:10.010000"],["2024-07-24T11:51:11.010000"],["2024-07-24T11:51:12.010000"],["2024-07-24T11:51:13.010000"],["2024-07-24T11:51:14.010000"],["2024-07-24T11:51:15.010000"],["2024-07-24T11:51:16.010000"],["2024-07-24T11:51:17.010000"],["2024-07-24T11:51:18.010000"],["2024-07-24T11:51:19.010000"],["2024-07-24T11:51:20.010000"],["2024-07-24T11:51:21.010000"],["2024-07-24T11:51:22.010000"],["2024-07-24T11:51:23.010000"],["2024-07-24T11:51:24.010000"],["2024-07-24T11:51:25.010000"],["2024-07-24T11:51:26.010000"],["2024-07-24T11:51:27.010000"],["2024-07-24T11:51:28.010000"],["2024-07-24T11:51:29.010000"],["2024-07-24T11:51:30.010000"],["2024-07-24T11:51:31.010000"],["2024-07-24T11:51:32.010000"],["2024-07-24T11:51:33.010000"],["2024-07-24T11:51:34.010000"],["2024-07-24T11:51:35.010000"],["2024-07-24T11:51:36.010000"],["2024-07-24T11:51:37.010000"],["2024-07-24T11:51:38.010000"],["2024-07-24T11:51:39.010000"],["2024-07-24T11:51:40.010000"],["2024-07-24T11:51:41.010000"],["2024-07-24T11:51:42.010000"],["2024-07-24T11:51:43.010000"],["2024-07-24T11:51:44.010000"],["2024-07-24T11:51:45.010000"],["2024-07-24T11:51:46.010000"],["2024-07-24T11:51:47.010000"],["2024-07-24T11:51:48.010000"],["2024-07-24T11:51:49.010000"],["2024-07-24T11:51:50.010000"],["2024-07-24T11:51:51.010000"],["2024-07-24T11:51:52.010000"],["2024-07-24T11:51:53.010000"],["2024-07-24T11:51:54.010000"],["2024-07-24T11:51:55.010000"],["2024-07-24T11:51:56.010000"],["2024-07-24T11:51:57.010000"],["2024-07-24T11:51:58.010000"],["2024-07-24T11:51:59.010000"],["2024-07-24T11:52:00.010000"],["2024-07-24T11:52:01.010000"],["2024-07-24T11:52:02.010000"],["2024-07-24T11:52:03.010000"],["2024-07-24T11:52:04.010000"],["2024-07-24T11:52:05.010000"],["2024-07-24T11:52:06.010000"],["2024-07-24T11:52:07.010000"],["2024-07-24T11:52:08.010000"],["2024-07-24T11:52:09.010000"],["2024-07-24T11:52:10.010000"],["2024-07-24T11:52:11.010000"],["2024-07-24T11:52:12.010000"],["2024-07-24T11:52:13.010000"],["2024-07-24T11:52:14.010000"],["2024-07-24T11:52:15.010000"],["2024-07-24T11:52:16.010000"],["2024-07-24T11:52:17.010000"],["2024-07-24T11:52:18.010000"],["2024-07-24T11:52:19.010000"],["2024-07-24T11:52:20.010000"],["2024-07-24T11:52:21.010000"],["2024-07-24T11:52:22.010000"],["2024-07-24T11:52:23.010000"],["2024-07-24T11:52:24.010000"],["2024-07-24T11:52:25.010000"],["2024-07-24T11:52:26.010000"],["2024-07-24T11:52:27.010000"],["2024-07-24T11:52:28.010000"],["2024-07-24T11:52:29.010000"],["2024-07-24T11:52:30.010000"],["2024-07-24T11:52:31.010000"],["2024-07-24T11:52:32.010000"],["2024-07-24T11:52:33.010000"],["2024-07-24T11:52:34.010000"],["2024-07-24T11:52:35.010000"],["2024-07-24T11:52:36.010000"],["2024-07-24T11:52:37.010000"],["2024-07-24T11:52:38.010000"],["2024-07-24T11:52:39.010000"],["2024-07-24T11:52:40.010000"],["2024-07-24T11:52:41.010000"],["2024-07-24T11:52:42.010000"],["2024-07-24T11:52:43.010000"],["2024-07-24T11:52:44.010000"],["2024-07-24T11:52:45.010000"],["2024-07-24T11:52:46.010000"],["2024-07-24T11:52:47.010000"],["2024-07-24T11:52:48.010000"],["2024-07-24T11:52:49.010000"],["2024-07-24T11:52:50.010000"],["2024-07-24T11:52:51.010000"],["2024-07-24T11:52:52.010000"],["2024-07-24T11:52:53.010000"],["2024-07-24T11:52:54.010000"],["2024-07-24T11:52:55.010000"],["2024-07-24T11:52:56.010000"],["2024-07-24T11:52:57.010000"],["2024-07-24T11:52:58.010000"],["2024-07-24T11:52:59.010000"],["2024-07-24T11:53:00.010000"],["2024-07-24T11:53:01.010000"],["2024-07-24T11:53:02.010000"],["2024-07-24T11:53:03.010000"],["2024-07-24T11:53:04.010000"],["2024-07-24T11:53:05.010000"],["2024-07-24T11:53:06.010000"],["2024-07-24T11:53:07.010000"],["2024-07-24T11:53:08.010000"],["2024-07-24T11:53:09.010000"],["2024-07-24T11:53:10.010000"],["2024-07-24T11:53:11.010000"],["2024-07-24T11:53:12.010000"],["2024-07-24T11:53:13.010000"],["2024-07-24T11:53:14.010000"],["2024-07-24T11:53:15.010000"],["2024-07-24T11:53:16.010000"],["2024-07-24T11:53:17.010000"],["2024-07-24T11:53:18.010000"],["2024-07-24T11:53:19.010000"],["2024-07-24T11:53:20.010000"],["2024-07-24T11:53:21.010000"],["2024-07-24T11:53:22.010000"],["2024-07-24T11:53:23.010000"],["2024-07-24T11:53:24.010000"],["2024-07-24T11:53:25.010000"],["2024-07-24T11:53:26.010000"],["2024-07-24T11:53:27.010000"],["2024-07-24T11:53:28.010000"],["2024-07-24T11:53:29.010000"],["2024-07-24T11:53:30.010000"],["2024-07-24T11:53:31.010000"],["2024-07-24T11:53:32.010000"],["2024-07-24T11:53:33.010000"],["2024-07-24T11:53:34.010000"],["2024-07-24T11:53:35.010000"],["2024-07-24T11:53:36.010000"],["2024-07-24T11:53:37.010000"],["2024-07-24T11:53:38.010000"],["2024-07-24T11:53:39.010000"],["2024-07-24T11:53:40.010000"],["2024-07-24T11:53:41.010000"],["2024-07-24T11:53:42.010000"],["2024-07-24T11:53:43.010000"],["2024-07-24T11:53:44.010000"],["2024-07-24T11:53:45.010000"],["2024-07-24T11:53:46.010000"],["2024-07-24T11:53:47.010000"],["2024-07-24T11:53:48.010000"],["2024-07-24T11:53:49.010000"],["2024-07-24T11:53:50.010000"],["2024-07-24T11:53:51.010000"],["2024-07-24T11:53:52.010000"],["2024-07-24T11:53:53.010000"],["2024-07-24T11:53:54.010000"],["2024-07-24T11:53:55.010000"],["2024-07-24T11:53:56.010000"],["2024-07-24T11:53:57.010000"],["2024-07-24T11:53:58.010000"],["2024-07-24T11:53:59.010000"],["2024-07-24T11:54:00.010000"],["2024-07-24T11:54:01.010000"],["2024-07-24T11:54:02.010000"],["2024-07-24T11:54:03.010000"],["2024-07-24T11:54:04.010000"],["2024-07-24T11:54:05.010000"],["2024-07-24T11:54:06.010000"],["2024-07-24T11:54:07.010000"],["2024-07-24T11:54:08.010000"],["2024-07-24T11:54:09.010000"],["2024-07-24T11:54:10.010000"],["2024-07-24T11:54:11.010000"],["2024-07-24T11:54:12.010000"],["2024-07-24T11:54:13.010000"],["2024-07-24T11:54:14.010000"],["2024-07-24T11:54:15.010000"],["2024-07-24T11:54:16.010000"],["2024-07-24T11:54:17.010000"],["2024-07-24T11:54:18.010000"],["2024-07-24T11:54:19.010000"],["2024-07-24T11:54:20.010000"],["2024-07-24T11:54:21.010000"],["2024-07-24T11:54:22.010000"],["2024-07-24T11:54:23.010000"],["2024-07-24T11:54:24.010000"],["2024-07-24T11:54:25.010000"],["2024-07-24T11:54:26.010000"],["2024-07-24T11:54:27.010000"],["2024-07-24T11:54:28.010000"],["2024-07-24T11:54:29.010000"],["2024-07-24T11:54:30.010000"],["2024-07-24T11:54:31.010000"],["2024-07-24T11:54:32.010000"],["2024-07-24T11:54:33.010000"],["2024-07-24T11:54:34.010000"],["2024-07-24T11:54:35.010000"],["2024-07-24T11:54:36.010000"],["2024-07-24T11:54:37.010000"],["2024-07-24T11:54:38.010000"],["2024-07-24T11:54:39.010000"],["2024-07-24T11:54:40.010000"],["2024-07-24T11:54:41.010000"],["2024-07-24T11:54:42.010000"],["2024-07-24T11:54:43.010000"],["2024-07-24T11:54:44.010000"],["2024-07-24T11:54:45.010000"],["2024-07-24T11:54:46.010000"],["2024-07-24T11:54:47.010000"],["2024-07-24T11:54:48.010000"],["2024-07-24T11:54:49.010000"],["2024-07-24T11:54:50.010000"],["2024-07-24T11:54:51.010000"],["2024-07-24T11:54:52.010000"],["2024-07-24T11:54:53.010000"],["2024-07-24T11:54:54.010000"],["2024-07-24T11:54:55.010000"],["2024-07-24T11:54:56.010000"],["2024-07-24T11:54:57.010000"],["2024-07-24T11:54:58.010000"],["2024-07-24T11:54:59.010000"],["2024-07-24T11:55:00.010000"],["2024-07-24T11:55:01.010000"],["2024-07-24T11:55:02.010000"],["2024-07-24T11:55:03.010000"],["2024-07-24T11:55:04.010000"],["2024-07-24T11:55:05.010000"],["2024-07-24T11:55:06.010000"],["2024-07-24T11:55:07.010000"],["2024-07-24T11:55:08.010000"],["2024-07-24T11:55:09.010000"],["2024-07-24T11:55:10.010000"],["2024-07-24T11:55:11.010000"],["2024-07-24T11:55:12.010000"],["2024-07-24T11:55:13.010000"],["2024-07-24T11:55:14.010000"],["2024-07-24T11:55:15.010000"],["2024-07-24T11:55:16.010000"],["2024-07-24T11:55:17.010000"],["2024-07-24T11:55:18.010000"],["2024-07-24T11:55:19.010000"],["2024-07-24T11:55:20.010000"],["2024-07-24T11:55:21.010000"],["2024-07-24T11:55:22.010000"],["2024-07-24T11:55:23.010000"],["2024-07-24T11:55:24.010000"],["2024-07-24T11:55:25.010000"],["2024-07-24T11:55:26.010000"],["2024-07-24T11:55:27.010000"],["2024-07-24T11:55:28.010000"],["2024-07-24T11:55:29.010000"],["2024-07-24T11:55:30.010000"],["2024-07-24T11:55:31.010000"],["2024-07-24T11:55:32.010000"],["2024-07-24T11:55:33.010000"],["2024-07-24T11:55:34.010000"],["2024-07-24T11:55:35.010000"],["2024-07-24T11:55:36.010000"],["2024-07-24T11:55:37.010000"],["2024-07-24T11:55:38.010000"],["2024-07-24T11:55:39.010000"],["2024-07-24T11:55:40.010000"],["2024-07-24T11:55:41.010000"],["2024-07-24T11:55:42.010000"],["2024-07-24T11:55:43.010000"],["2024-07-24T11:55:44.010000"],["2024-07-24T11:55:45.010000"],["2024-07-24T11:55:46.010000"],["2024-07-24T11:55:47.010000"],["2024-07-24T11:55:48.010000"],["2024-07-24T11:55:49.010000"],["2024-07-24T11:55:50.010000"],["2024-07-24T11:55:51.010000"],["2024-07-24T11:55:52.010000"],["2024-07-24T11:55:53.010000"],["2024-07-24T11:55:54.010000"],["2024-07-24T11:55:55.010000"],["2024-07-24T11:55:56.010000"],["2024-07-24T11:55:57.010000"],["2024-07-24T11:55:58.010000"],["2024-07-24T11:55:59.010000"],["2024-07-24T11:56:00.010000"],["2024-07-24T11:56:01.010000"],["2024-07-24T11:56:02.010000"],["2024-07-24T11:56:03.010000"],["2024-07-24T11:56:04.010000"],["2024-07-24T11:56:05.010000"],["2024-07-24T11:56:06.010000"],["2024-07-24T11:56:07.010000"],["2024-07-24T11:56:08.010000"],["2024-07-24T11:56:09.010000"],["2024-07-24T11:56:10.010000"],["2024-07-24T11:56:11.010000"],["2024-07-24T11:56:12.010000"],["2024-07-24T11:56:13.010000"],["2024-07-24T11:56:14.010000"],["2024-07-24T11:56:15.010000"],["2024-07-24T11:56:16.010000"],["2024-07-24T11:56:17.010000"],["2024-07-24T11:56:18.010000"],["2024-07-24T11:56:19.010000"],["2024-07-24T11:56:20.010000"],["2024-07-24T11:56:21.010000"],["2024-07-24T11:56:22.010000"],["2024-07-24T11:56:23.010000"],["2024-07-24T11:56:24.010000"],["2024-07-24T11:56:25.010000"],["2024-07-24T11:56:26.010000"],["2024-07-24T11:56:27.010000"],["2024-07-24T11:56:28.010000"],["2024-07-24T11:56:29.010000"],["2024-07-24T11:56:30.010000"],["2024-07-24T11:56:31.010000"],["2024-07-24T11:56:32.010000"],["2024-07-24T11:56:33.010000"],["2024-07-24T11:56:34.010000"],["2024-07-24T11:56:35.010000"],["2024-07-24T11:56:36.010000"],["2024-07-24T11:56:37.010000"],["2024-07-24T11:56:38.010000"],["2024-07-24T11:56:39.010000"],["2024-07-24T11:56:40.010000"],["2024-07-24T11:56:41.010000"],["2024-07-24T11:56:42.010000"],["2024-07-24T11:56:43.010000"],["2024-07-24T11:56:44.010000"],["2024-07-24T11:56:45.010000"],["2024-07-24T11:56:46.010000"],["2024-07-24T11:56:47.010000"],["2024-07-24T11:56:48.010000"],["2024-07-24T11:56:49.010000"],["2024-07-24T11:56:50.010000"],["2024-07-24T11:56:51.010000"],["2024-07-24T11:56:52.010000"],["2024-07-24T11:56:53.010000"],["2024-07-24T11:56:54.010000"],["2024-07-24T11:56:55.010000"],["2024-07-24T11:56:56.010000"],["2024-07-24T11:56:57.010000"],["2024-07-24T11:56:58.010000"],["2024-07-24T11:56:59.010000"],["2024-07-24T11:57:00.010000"],["2024-07-24T11:57:01.010000"],["2024-07-24T11:57:02.010000"],["2024-07-24T11:57:03.010000"],["2024-07-24T11:57:04.010000"],["2024-07-24T11:57:05.010000"],["2024-07-24T11:57:06.010000"],["2024-07-24T11:57:07.010000"],["2024-07-24T11:57:08.010000"],["2024-07-24T11:57:09.010000"],["2024-07-24T11:57:10.010000"],["2024-07-24T11:57:11.010000"],["2024-07-24T11:57:12.010000"],["2024-07-24T11:57:13.010000"],["2024-07-24T11:57:14.010000"],["2024-07-24T11:57:15.010000"],["2024-07-24T11:57:16.010000"],["2024-07-24T11:57:17.010000"],["2024-07-24T11:57:18.010000"],["2024-07-24T11:57:19.010000"],["2024-07-24T11:57:20.010000"],["2024-07-24T11:57:21.010000"],["2024-07-24T11:57:22.010000"],["2024-07-24T11:57:23.010000"],["2024-07-24T11:57:24.010000"],["2024-07-24T11:57:25.010000"],["2024-07-24T11:57:26.010000"],["2024-07-24T11:57:27.010000"],["2024-07-24T11:57:28.010000"],["2024-07-24T11:57:29.010000"],["2024-07-24T11:57:30.010000"],["2024-07-24T11:57:31.010000"],["2024-07-24T11:57:32.010000"],["2024-07-24T11:57:33.010000"],["2024-07-24T11:57:34.010000"],["2024-07-24T11:57:35.010000"],["2024-07-24T11:57:36.010000"],["2024-07-24T11:57:37.010000"],["2024-07-24T11:57:38.010000"],["2024-07-24T11:57:39.010000"],["2024-07-24T11:57:40.010000"],["2024-07-24T11:57:41.010000"],["2024-07-24T11:57:42.010000"],["2024-07-24T11:57:43.010000"],["2024-07-24T11:57:44.010000"],["2024-07-24T11:57:45.010000"],["2024-07-24T11:57:46.010000"],["2024-07-24T11:57:47.010000"],["2024-07-24T11:57:48.010000"],["2024-07-24T11:57:49.010000"],["2024-07-24T11:57:50.010000"],["2024-07-24T11:57:51.010000"],["2024-07-24T11:57:52.010000"],["2024-07-24T11:57:53.010000"],["2024-07-24T11:57:54.010000"],["2024-07-24T11:57:55.010000"],["2024-07-24T11:57:56.010000"],["2024-07-24T11:57:57.010000"],["2024-07-24T11:57:58.010000"],["2024-07-24T11:57:59.010000"],["2024-07-24T11:58:00.010000"],["2024-07-24T11:58:01.010000"],["2024-07-24T11:58:02.010000"],["2024-07-24T11:58:03.010000"],["2024-07-24T11:58:04.010000"],["2024-07-24T11:58:05.010000"],["2024-07-24T11:58:06.010000"],["2024-07-24T11:58:07.010000"],["2024-07-24T11:58:08.010000"],["2024-07-24T11:58:09.010000"],["2024-07-24T11:58:10.010000"],["2024-07-24T11:58:11.010000"],["2024-07-24T11:58:12.010000"],["2024-07-24T11:58:13.010000"],["2024-07-24T11:58:14.010000"],["2024-07-24T11:58:15.010000"],["2024-07-24T11:58:16.010000"],["2024-07-24T11:58:17.010000"],["2024-07-24T11:58:18.010000"],["2024-07-24T11:58:19.010000"],["2024-07-24T11:58:20.010000"],["2024-07-24T11:58:21.010000"],["2024-07-24T11:58:22.010000"],["2024-07-24T11:58:23.010000"],["2024-07-24T11:58:24.010000"],["2024-07-24T11:58:25.010000"],["2024-07-24T11:58:26.010000"],["2024-07-24T11:58:27.010000"],["2024-07-24T11:58:28.010000"],["2024-07-24T11:58:29.010000"],["2024-07-24T11:58:30.010000"],["2024-07-24T11:58:31.010000"],["2024-07-24T11:58:32.010000"],["2024-07-24T11:58:33.010000"],["2024-07-24T11:58:34.010000"],["2024-07-24T11:58:35.010000"],["2024-07-24T11:58:36.010000"],["2024-07-24T11:58:37.010000"],["2024-07-24T11:58:38.010000"],["2024-07-24T11:58:39.010000"],["2024-07-24T11:58:40.010000"],["2024-07-24T11:58:41.010000"],["2024-07-24T11:58:42.010000"],["2024-07-24T11:58:43.010000"],["2024-07-24T11:58:44.010000"],["2024-07-24T11:58:45.010000"],["2024-07-24T11:58:46.010000"],["2024-07-24T11:58:47.010000"],["2024-07-24T11:58:48.010000"],["2024-07-24T11:58:49.010000"],["2024-07-24T11:58:50.010000"],["2024-07-24T11:58:51.010000"],["2024-07-24T11:58:52.010000"],["2024-07-24T11:58:53.010000"],["2024-07-24T11:58:54.010000"],["2024-07-24T11:58:55.010000"],["2024-07-24T11:58:56.010000"],["2024-07-24T11:58:57.010000"],["2024-07-24T11:58:58.010000"],["2024-07-24T11:58:59.010000"],["2024-07-24T11:59:00.010000"],["2024-07-24T11:59:01.010000"],["2024-07-24T11:59:02.010000"],["2024-07-24T11:59:03.010000"],["2024-07-24T11:59:04.010000"],["2024-07-24T11:59:05.010000"],["2024-07-24T11:59:06.010000"],["2024-07-24T11:59:07.010000"],["2024-07-24T11:59:08.010000"],["2024-07-24T11:59:09.010000"],["2024-07-24T11:59:10.010000"],["2024-07-24T11:59:11.010000"],["2024-07-24T11:59:12.010000"],["2024-07-24T11:59:13.010000"],["2024-07-24T11:59:14.010000"],["2024-07-24T11:59:15.010000"],["2024-07-24T11:59:16.010000"],["2024-07-24T11:59:17.010000"],["2024-07-24T11:59:18.010000"],["2024-07-24T11:59:19.010000"],["2024-07-24T11:59:20.010000"],["2024-07-24T11:59:21.010000"],["2024-07-24T11:59:22.010000"],["2024-07-24T11:59:23.010000"],["2024-07-24T11:59:24.010000"],["2024-07-24T11:59:25.010000"],["2024-07-24T11:59:26.010000"],["2024-07-24T11:59:27.010000"],["2024-07-24T11:59:28.010000"],["2024-07-24T11:59:29.010000"],["2024-07-24T11:59:30.010000"],["2024-07-24T11:59:31.010000"],["2024-07-24T11:59:32.010000"],["2024-07-24T11:59:33.010000"],["2024-07-24T11:59:34.010000"],["2024-07-24T11:59:35.010000"],["2024-07-24T11:59:36.010000"],["2024-07-24T11:59:37.010000"],["2024-07-24T11:59:38.010000"],["2024-07-24T11:59:39.010000"],["2024-07-24T11:59:40.010000"],["2024-07-24T11:59:41.010000"],["2024-07-24T11:59:42.010000"],["2024-07-24T11:59:43.010000"],["2024-07-24T11:59:44.010000"],["2024-07-24T11:59:45.010000"],["2024-07-24T11:59:46.010000"],["2024-07-24T11:59:47.010000"],["2024-07-24T11:59:48.010000"],["2024-07-24T11:59:49.010000"],["2024-07-24T11:59:50.010000"],["2024-07-24T11:59:51.010000"],["2024-07-24T11:59:52.010000"],["2024-07-24T11:59:53.010000"],["2024-07-24T11:59:54.010000"],["2024-07-24T11:59:55.010000"],["2024-07-24T11:59:56.010000"],["2024-07-24T11:59:57.010000"],["2024-07-24T11:59:58.010000"],["2024-07-24T11:59:59.010000"],["2024-07-24T12:00:00.010000"],["2024-07-24T12:00:01.010000"],["2024-07-24T12:00:02.010000"],["2024-07-24T12:00:03.010000"],["2024-07-24T12:00:04.010000"],["2024-07-24T12:00:05.010000"],["2024-07-24T12:00:06.010000"],["2024-07-24T12:00:07.010000"],["2024-07-24T12:00:08.010000"],["2024-07-24T12:00:09.010000"],["2024-07-24T12:00:10.010000"],["2024-07-24T12:00:11.010000"],["2024-07-24T12:00:12.010000"],["2024-07-24T12:00:13.010000"],["2024-07-24T12:00:14.010000"],["2024-07-24T12:00:15.010000"],["2024-07-24T12:00:16.010000"],["2024-07-24T12:00:17.010000"],["2024-07-24T12:00:18.010000"],["2024-07-24T12:00:19.010000"],["2024-07-24T12:00:20.010000"],["2024-07-24T12:00:21.010000"],["2024-07-24T12:00:22.010000"],["2024-07-24T12:00:23.010000"],["2024-07-24T12:00:24.010000"],["2024-07-24T12:00:25.010000"],["2024-07-24T12:00:26.010000"],["2024-07-24T12:00:27.010000"],["2024-07-24T12:00:28.010000"],["2024-07-24T12:00:29.010000"],["2024-07-24T12:00:30.010000"],["2024-07-24T12:00:31.010000"],["2024-07-24T12:00:32.010000"],["2024-07-24T12:00:33.010000"],["2024-07-24T12:00:34.010000"],["2024-07-24T12:00:35.010000"],["2024-07-24T12:00:36.010000"],["2024-07-24T12:00:37.010000"],["2024-07-24T12:00:38.010000"],["2024-07-24T12:00:39.010000"],["2024-07-24T12:00:40.010000"],["2024-07-24T12:00:41.010000"],["2024-07-24T12:00:42.010000"],["2024-07-24T12:00:43.010000"],["2024-07-24T12:00:44.010000"],["2024-07-24T12:00:45.010000"],["2024-07-24T12:00:46.010000"],["2024-07-24T12:00:47.010000"],["2024-07-24T12:00:48.010000"],["2024-07-24T12:00:49.010000"],["2024-07-24T12:00:50.010000"],["2024-07-24T12:00:51.010000"],["2024-07-24T12:00:52.010000"],["2024-07-24T12:00:53.010000"],["2024-07-24T12:00:54.010000"],["2024-07-24T12:00:55.010000"],["2024-07-24T12:00:56.010000"],["2024-07-24T12:00:57.010000"],["2024-07-24T12:00:58.010000"],["2024-07-24T12:00:59.010000"],["2024-07-24T12:01:00.010000"],["2024-07-24T12:01:01.010000"],["2024-07-24T12:01:02.010000"],["2024-07-24T12:01:03.010000"],["2024-07-24T12:01:04.010000"],["2024-07-24T12:01:05.010000"],["2024-07-24T12:01:06.010000"],["2024-07-24T12:01:07.010000"],["2024-07-24T12:01:08.010000"],["2024-07-24T12:01:09.010000"],["2024-07-24T12:01:10.010000"],["2024-07-24T12:01:11.010000"],["2024-07-24T12:01:12.010000"],["2024-07-24T12:01:13.010000"],["2024-07-24T12:01:14.010000"],["2024-07-24T12:01:15.010000"],["2024-07-24T12:01:16.010000"],["2024-07-24T12:01:17.010000"],["2024-07-24T12:01:18.010000"],["2024-07-24T12:01:19.010000"],["2024-07-24T12:01:20.010000"],["2024-07-24T12:01:21.010000"],["2024-07-24T12:01:22.010000"],["2024-07-24T12:01:23.010000"],["2024-07-24T12:01:24.010000"],["2024-07-24T12:01:25.010000"],["2024-07-24T12:01:26.010000"],["2024-07-24T12:01:27.010000"],["2024-07-24T12:01:28.010000"],["2024-07-24T12:01:29.010000"],["2024-07-24T12:01:30.010000"],["2024-07-24T12:01:31.010000"],["2024-07-24T12:01:32.010000"],["2024-07-24T12:01:33.010000"],["2024-07-24T12:01:34.010000"],["2024-07-24T12:01:35.010000"],["2024-07-24T12:01:36.010000"],["2024-07-24T12:01:37.010000"],["2024-07-24T12:01:38.010000"],["2024-07-24T12:01:39.010000"],["2024-07-24T12:01:40.010000"],["2024-07-24T12:01:41.010000"],["2024-07-24T12:01:42.010000"],["2024-07-24T12:01:43.010000"],["2024-07-24T12:01:44.010000"],["2024-07-24T12:01:45.010000"],["2024-07-24T12:01:46.010000"],["2024-07-24T12:01:47.010000"],["2024-07-24T12:01:48.010000"],["2024-07-24T12:01:49.010000"],["2024-07-24T12:01:50.010000"],["2024-07-24T12:01:51.010000"],["2024-07-24T12:01:52.010000"],["2024-07-24T12:01:53.010000"],["2024-07-24T12:01:54.010000"],["2024-07-24T12:01:55.010000"],["2024-07-24T12:01:56.010000"],["2024-07-24T12:01:57.010000"],["2024-07-24T12:01:58.010000"],["2024-07-24T12:01:59.010000"],["2024-07-24T12:02:00.010000"],["2024-07-24T12:02:01.010000"],["2024-07-24T12:02:02.010000"],["2024-07-24T12:02:03.010000"],["2024-07-24T12:02:04.010000"],["2024-07-24T12:02:05.010000"],["2024-07-24T12:02:06.010000"],["2024-07-24T12:02:07.010000"],["2024-07-24T12:02:08.010000"],["2024-07-24T12:02:09.010000"],["2024-07-24T12:02:10.010000"],["2024-07-24T12:02:11.010000"],["2024-07-24T12:02:12.010000"],["2024-07-24T12:02:13.010000"],["2024-07-24T12:02:14.010000"],["2024-07-24T12:02:15.010000"],["2024-07-24T12:02:16.010000"],["2024-07-24T12:02:17.010000"],["2024-07-24T12:02:18.010000"],["2024-07-24T12:02:19.010000"],["2024-07-24T12:02:20.010000"],["2024-07-24T12:02:21.010000"],["2024-07-24T12:02:22.010000"],["2024-07-24T12:02:23.010000"],["2024-07-24T12:02:24.010000"],["2024-07-24T12:02:25.010000"],["2024-07-24T12:02:26.010000"],["2024-07-24T12:02:27.010000"],["2024-07-24T12:02:28.010000"],["2024-07-24T12:02:29.010000"],["2024-07-24T12:02:30.010000"],["2024-07-24T12:02:31.010000"],["2024-07-24T12:02:32.010000"],["2024-07-24T12:02:33.010000"],["2024-07-24T12:02:34.010000"],["2024-07-24T12:02:35.010000"],["2024-07-24T12:02:36.010000"],["2024-07-24T12:02:37.010000"],["2024-07-24T12:02:38.010000"],["2024-07-24T12:02:39.010000"],["2024-07-24T12:02:40.010000"],["2024-07-24T12:02:41.010000"],["2024-07-24T12:02:42.010000"],["2024-07-24T12:02:43.010000"],["2024-07-24T12:02:44.010000"],["2024-07-24T12:02:45.010000"],["2024-07-24T12:02:46.010000"],["2024-07-24T12:02:47.010000"],["2024-07-24T12:02:48.010000"],["2024-07-24T12:02:49.010000"],["2024-07-24T12:02:50.010000"],["2024-07-24T12:02:51.010000"],["2024-07-24T12:02:52.010000"],["2024-07-24T12:02:53.010000"],["2024-07-24T12:02:54.010000"],["2024-07-24T12:02:55.010000"],["2024-07-24T12:02:56.010000"],["2024-07-24T12:02:57.010000"],["2024-07-24T12:02:58.010000"],["2024-07-24T12:02:59.010000"],["2024-07-24T12:03:00.010000"],["2024-07-24T12:03:01.010000"],["2024-07-24T12:03:02.010000"],["2024-07-24T12:03:03.010000"],["2024-07-24T12:03:04.010000"],["2024-07-24T12:03:05.010000"],["2024-07-24T12:03:06.010000"],["2024-07-24T12:03:07.010000"],["2024-07-24T12:03:08.010000"],["2024-07-24T12:03:09.010000"],["2024-07-24T12:03:10.010000"],["2024-07-24T12:03:11.010000"],["2024-07-24T12:03:12.010000"],["2024-07-24T12:03:13.010000"],["2024-07-24T12:03:14.010000"],["2024-07-24T12:03:15.010000"],["2024-07-24T12:03:16.010000"],["2024-07-24T12:03:17.010000"],["2024-07-24T12:03:18.010000"],["2024-07-24T12:03:19.010000"],["2024-07-24T12:03:20.010000"],["2024-07-24T12:03:21.010000"],["2024-07-24T12:03:22.010000"],["2024-07-24T12:03:23.010000"],["2024-07-24T12:03:24.010000"],["2024-07-24T12:03:25.010000"],["2024-07-24T12:03:26.010000"],["2024-07-24T12:03:27.010000"],["2024-07-24T12:03:28.010000"],["2024-07-24T12:03:29.010000"],["2024-07-24T12:03:30.010000"],["2024-07-24T12:03:31.010000"],["2024-07-24T12:03:32.010000"],["2024-07-24T12:03:33.010000"],["2024-07-24T12:03:34.010000"],["2024-07-24T12:03:35.010000"],["2024-07-24T12:03:36.010000"],["2024-07-24T12:03:37.010000"],["2024-07-24T12:03:38.010000"],["2024-07-24T12:03:39.010000"],["2024-07-24T12:03:40.010000"],["2024-07-24T12:03:41.010000"],["2024-07-24T12:03:42.010000"],["2024-07-24T12:03:43.010000"],["2024-07-24T12:03:44.010000"],["2024-07-24T12:03:45.010000"],["2024-07-24T12:03:46.010000"],["2024-07-24T12:03:47.010000"],["2024-07-24T12:03:48.010000"],["2024-07-24T12:03:49.010000"],["2024-07-24T12:03:50.010000"],["2024-07-24T12:03:51.010000"],["2024-07-24T12:03:52.010000"],["2024-07-24T12:03:53.010000"],["2024-07-24T12:03:54.010000"],["2024-07-24T12:03:55.010000"],["2024-07-24T12:03:56.010000"],["2024-07-24T12:03:57.010000"],["2024-07-24T12:03:58.010000"],["2024-07-24T12:03:59.010000"],["2024-07-24T12:04:00.010000"],["2024-07-24T12:04:01.010000"],["2024-07-24T12:04:02.010000"],["2024-07-24T12:04:03.010000"],["2024-07-24T12:04:04.010000"],["2024-07-24T12:04:05.010000"],["2024-07-24T12:04:06.010000"],["2024-07-24T12:04:07.010000"],["2024-07-24T12:04:08.010000"],["2024-07-24T12:04:09.010000"],["2024-07-24T12:04:10.010000"],["2024-07-24T12:04:11.010000"],["2024-07-24T12:04:12.010000"],["2024-07-24T12:04:13.010000"],["2024-07-24T12:04:14.010000"],["2024-07-24T12:04:15.010000"],["2024-07-24T12:04:16.010000"],["2024-07-24T12:04:17.010000"],["2024-07-24T12:04:18.010000"],["2024-07-24T12:04:19.010000"],["2024-07-24T12:04:20.010000"],["2024-07-24T12:04:21.010000"],["2024-07-24T12:04:22.010000"],["2024-07-24T12:04:23.010000"],["2024-07-24T12:04:24.010000"],["2024-07-24T12:04:25.010000"],["2024-07-24T12:04:26.010000"],["2024-07-24T12:04:27.010000"],["2024-07-24T12:04:28.010000"],["2024-07-24T12:04:29.010000"],["2024-07-24T12:04:30.010000"],["2024-07-24T12:04:31.010000"],["2024-07-24T12:04:32.010000"],["2024-07-24T12:04:33.010000"],["2024-07-24T12:04:34.010000"],["2024-07-24T12:04:35.010000"],["2024-07-24T12:04:36.010000"],["2024-07-24T12:04:37.010000"],["2024-07-24T12:04:38.010000"],["2024-07-24T12:04:39.010000"],["2024-07-24T12:04:40.010000"],["2024-07-24T12:04:41.010000"],["2024-07-24T12:04:42.010000"],["2024-07-24T12:04:43.010000"],["2024-07-24T12:04:44.010000"],["2024-07-24T12:04:45.010000"],["2024-07-24T12:04:46.010000"],["2024-07-24T12:04:47.010000"],["2024-07-24T12:04:48.010000"],["2024-07-24T12:04:49.010000"],["2024-07-24T12:04:50.010000"],["2024-07-24T12:04:51.010000"],["2024-07-24T12:04:52.010000"],["2024-07-24T12:04:53.010000"],["2024-07-24T12:04:54.010000"],["2024-07-24T12:04:55.010000"],["2024-07-24T12:04:56.010000"],["2024-07-24T12:04:57.010000"],["2024-07-24T12:04:58.010000"],["2024-07-24T12:04:59.010000"],["2024-07-24T12:05:00.010000"],["2024-07-24T12:05:01.010000"],["2024-07-24T12:05:02.010000"],["2024-07-24T12:05:03.010000"],["2024-07-24T12:05:04.010000"],["2024-07-24T12:05:05.010000"],["2024-07-24T12:05:06.010000"],["2024-07-24T12:05:07.010000"],["2024-07-24T12:05:08.010000"],["2024-07-24T12:05:09.010000"],["2024-07-24T12:05:10.010000"],["2024-07-24T12:05:11.010000"],["2024-07-24T12:05:12.010000"],["2024-07-24T12:05:13.010000"],["2024-07-24T12:05:14.010000"],["2024-07-24T12:05:15.010000"],["2024-07-24T12:05:16.010000"],["2024-07-24T12:05:17.010000"],["2024-07-24T12:05:18.010000"],["2024-07-24T12:05:19.010000"],["2024-07-24T12:05:20.010000"],["2024-07-24T12:05:21.010000"],["2024-07-24T12:05:22.010000"],["2024-07-24T12:05:23.010000"],["2024-07-24T12:05:24.010000"],["2024-07-24T12:05:25.010000"],["2024-07-24T12:05:26.010000"],["2024-07-24T12:05:27.010000"],["2024-07-24T12:05:28.010000"],["2024-07-24T12:05:29.010000"],["2024-07-24T12:05:30.010000"],["2024-07-24T12:05:31.010000"],["2024-07-24T12:05:32.010000"],["2024-07-24T12:05:33.010000"],["2024-07-24T12:05:34.010000"],["2024-07-24T12:05:35.010000"],["2024-07-24T12:05:36.010000"],["2024-07-24T12:05:37.010000"],["2024-07-24T12:05:38.010000"],["2024-07-24T12:05:39.010000"],["2024-07-24T12:05:40.010000"],["2024-07-24T12:05:41.010000"],["2024-07-24T12:05:42.010000"],["2024-07-24T12:05:43.010000"],["2024-07-24T12:05:44.010000"],["2024-07-24T12:05:45.010000"],["2024-07-24T12:05:46.010000"],["2024-07-24T12:05:47.010000"],["2024-07-24T12:05:48.010000"],["2024-07-24T12:05:49.010000"],["2024-07-24T12:05:50.010000"],["2024-07-24T12:05:51.010000"],["2024-07-24T12:05:52.010000"],["2024-07-24T12:05:53.010000"],["2024-07-24T12:05:54.010000"],["2024-07-24T12:05:55.010000"],["2024-07-24T12:05:56.010000"],["2024-07-24T12:05:57.010000"],["2024-07-24T12:05:58.010000"],["2024-07-24T12:05:59.010000"],["2024-07-24T12:06:00.010000"],["2024-07-24T12:06:01.010000"],["2024-07-24T12:06:02.010000"],["2024-07-24T12:06:03.010000"],["2024-07-24T12:06:04.010000"],["2024-07-24T12:06:05.010000"],["2024-07-24T12:06:06.010000"],["2024-07-24T12:06:07.010000"],["2024-07-24T12:06:08.010000"],["2024-07-24T12:06:09.010000"],["2024-07-24T12:06:10.010000"],["2024-07-24T12:06:11.010000"],["2024-07-24T12:06:12.010000"],["2024-07-24T12:06:13.010000"],["2024-07-24T12:06:14.010000"],["2024-07-24T12:06:15.010000"],["2024-07-24T12:06:16.010000"],["2024-07-24T12:06:17.010000"],["2024-07-24T12:06:18.010000"],["2024-07-24T12:06:19.010000"],["2024-07-24T12:06:20.010000"],["2024-07-24T12:06:21.010000"],["2024-07-24T12:06:22.010000"],["2024-07-24T12:06:23.010000"],["2024-07-24T12:06:24.010000"],["2024-07-24T12:06:25.010000"],["2024-07-24T12:06:26.010000"],["2024-07-24T12:06:27.010000"],["2024-07-24T12:06:28.010000"],["2024-07-24T12:06:29.010000"],["2024-07-24T12:06:30.010000"],["2024-07-24T12:06:31.010000"],["2024-07-24T12:06:32.010000"],["2024-07-24T12:06:33.010000"],["2024-07-24T12:06:34.010000"],["2024-07-24T12:06:35.010000"],["2024-07-24T12:06:36.010000"],["2024-07-24T12:06:37.010000"],["2024-07-24T12:06:38.010000"],["2024-07-24T12:06:39.010000"],["2024-07-24T12:06:40.010000"],["2024-07-24T12:06:41.010000"],["2024-07-24T12:06:42.010000"],["2024-07-24T12:06:43.010000"],["2024-07-24T12:06:44.010000"],["2024-07-24T12:06:45.010000"],["2024-07-24T12:06:46.010000"],["2024-07-24T12:06:47.010000"],["2024-07-24T12:06:48.010000"],["2024-07-24T12:06:49.010000"],["2024-07-24T12:06:50.010000"],["2024-07-24T12:06:51.010000"],["2024-07-24T12:06:52.010000"],["2024-07-24T12:06:53.010000"],["2024-07-24T12:06:54.010000"],["2024-07-24T12:06:55.010000"],["2024-07-24T12:06:56.010000"],["2024-07-24T12:06:57.010000"],["2024-07-24T12:06:58.010000"],["2024-07-24T12:06:59.010000"],["2024-07-24T12:07:00.010000"],["2024-07-24T12:07:01.010000"],["2024-07-24T12:07:02.010000"],["2024-07-24T12:07:03.010000"],["2024-07-24T12:07:04.010000"],["2024-07-24T12:07:05.010000"],["2024-07-24T12:07:06.010000"],["2024-07-24T12:07:07.010000"],["2024-07-24T12:07:08.010000"],["2024-07-24T12:07:09.010000"],["2024-07-24T12:07:10.010000"],["2024-07-24T12:07:11.010000"],["2024-07-24T12:07:12.010000"],["2024-07-24T12:07:13.010000"],["2024-07-24T12:07:14.010000"],["2024-07-24T12:07:15.010000"],["2024-07-24T12:07:16.010000"],["2024-07-24T12:07:17.010000"],["2024-07-24T12:07:18.010000"],["2024-07-24T12:07:19.010000"],["2024-07-24T12:07:20.010000"],["2024-07-24T12:07:21.010000"],["2024-07-24T12:07:22.010000"],["2024-07-24T12:07:23.010000"],["2024-07-24T12:07:24.010000"],["2024-07-24T12:07:25.010000"],["2024-07-24T12:07:26.010000"],["2024-07-24T12:07:27.010000"],["2024-07-24T12:07:28.010000"],["2024-07-24T12:07:29.010000"],["2024-07-24T12:07:30.010000"],["2024-07-24T12:07:31.010000"],["2024-07-24T12:07:32.010000"],["2024-07-24T12:07:33.010000"],["2024-07-24T12:07:34.010000"],["2024-07-24T12:07:35.010000"],["2024-07-24T12:07:36.010000"],["2024-07-24T12:07:37.010000"],["2024-07-24T12:07:38.010000"],["2024-07-24T12:07:39.010000"],["2024-07-24T12:07:40.010000"],["2024-07-24T12:07:41.010000"],["2024-07-24T12:07:42.010000"],["2024-07-24T12:07:43.010000"],["2024-07-24T12:07:44.010000"],["2024-07-24T12:07:45.010000"],["2024-07-24T12:07:46.010000"],["2024-07-24T12:07:47.010000"],["2024-07-24T12:07:48.010000"],["2024-07-24T12:07:49.010000"],["2024-07-24T12:07:50.010000"],["2024-07-24T12:07:51.010000"],["2024-07-24T12:07:52.010000"],["2024-07-24T12:07:53.010000"],["2024-07-24T12:07:54.010000"],["2024-07-24T12:07:55.010000"],["2024-07-24T12:07:56.010000"],["2024-07-24T12:07:57.010000"],["2024-07-24T12:07:58.010000"],["2024-07-24T12:07:59.010000"],["2024-07-24T12:08:00.010000"],["2024-07-24T12:08:01.010000"],["2024-07-24T12:08:02.010000"],["2024-07-24T12:08:03.010000"],["2024-07-24T12:08:04.010000"],["2024-07-24T12:08:05.010000"],["2024-07-24T12:08:06.010000"],["2024-07-24T12:08:07.010000"],["2024-07-24T12:08:08.010000"],["2024-07-24T12:08:09.010000"],["2024-07-24T12:08:10.010000"],["2024-07-24T12:08:11.010000"],["2024-07-24T12:08:12.010000"],["2024-07-24T12:08:13.010000"],["2024-07-24T12:08:14.010000"],["2024-07-24T12:08:15.010000"],["2024-07-24T12:08:16.010000"],["2024-07-24T12:08:17.010000"],["2024-07-24T12:08:18.010000"],["2024-07-24T12:08:19.010000"],["2024-07-24T12:08:20.010000"],["2024-07-24T12:08:21.010000"],["2024-07-24T12:08:22.010000"],["2024-07-24T12:08:23.010000"],["2024-07-24T12:08:24.010000"],["2024-07-24T12:08:25.010000"],["2024-07-24T12:08:26.010000"],["2024-07-24T12:08:27.010000"],["2024-07-24T12:08:28.010000"],["2024-07-24T12:08:29.010000"],["2024-07-24T12:08:30.010000"],["2024-07-24T12:08:31.010000"],["2024-07-24T12:08:32.010000"],["2024-07-24T12:08:33.010000"],["2024-07-24T12:08:34.010000"],["2024-07-24T12:08:35.010000"],["2024-07-24T12:08:36.010000"],["2024-07-24T12:08:37.010000"],["2024-07-24T12:08:38.010000"],["2024-07-24T12:08:39.010000"],["2024-07-24T12:08:40.010000"],["2024-07-24T12:08:41.010000"],["2024-07-24T12:08:42.010000"],["2024-07-24T12:08:43.010000"],["2024-07-24T12:08:44.010000"],["2024-07-24T12:08:45.010000"],["2024-07-24T12:08:46.010000"],["2024-07-24T12:08:47.010000"],["2024-07-24T12:08:48.010000"],["2024-07-24T12:08:49.010000"],["2024-07-24T12:08:50.010000"],["2024-07-24T12:08:51.010000"],["2024-07-24T12:08:52.010000"],["2024-07-24T12:08:53.010000"],["2024-07-24T12:08:54.010000"],["2024-07-24T12:08:55.010000"],["2024-07-24T12:08:56.010000"],["2024-07-24T12:08:57.010000"],["2024-07-24T12:08:58.010000"],["2024-07-24T12:08:59.010000"],["2024-07-24T12:09:00.010000"],["2024-07-24T12:09:01.010000"],["2024-07-24T12:09:02.010000"],["2024-07-24T12:09:03.010000"],["2024-07-24T12:09:04.010000"],["2024-07-24T12:09:05.010000"],["2024-07-24T12:09:06.010000"],["2024-07-24T12:09:07.010000"],["2024-07-24T12:09:08.010000"],["2024-07-24T12:09:09.010000"],["2024-07-24T12:09:10.010000"],["2024-07-24T12:09:11.010000"],["2024-07-24T12:09:12.010000"],["2024-07-24T12:09:13.010000"],["2024-07-24T12:09:14.010000"],["2024-07-24T12:09:15.010000"],["2024-07-24T12:09:16.010000"],["2024-07-24T12:09:17.010000"],["2024-07-24T12:09:18.010000"],["2024-07-24T12:09:19.010000"],["2024-07-24T12:09:20.010000"],["2024-07-24T12:09:21.010000"],["2024-07-24T12:09:22.010000"],["2024-07-24T12:09:23.010000"],["2024-07-24T12:09:24.010000"],["2024-07-24T12:09:25.010000"],["2024-07-24T12:09:26.010000"],["2024-07-24T12:09:27.010000"],["2024-07-24T12:09:28.010000"],["2024-07-24T12:09:29.010000"],["2024-07-24T12:09:30.010000"],["2024-07-24T12:09:31.010000"],["2024-07-24T12:09:32.010000"],["2024-07-24T12:09:33.010000"],["2024-07-24T12:09:34.010000"],["2024-07-24T12:09:35.010000"],["2024-07-24T12:09:36.010000"],["2024-07-24T12:09:37.010000"],["2024-07-24T12:09:38.010000"],["2024-07-24T12:09:39.010000"],["2024-07-24T12:09:40.010000"],["2024-07-24T12:09:41.010000"],["2024-07-24T12:09:42.010000"],["2024-07-24T12:09:43.010000"],["2024-07-24T12:09:44.010000"],["2024-07-24T12:09:45.010000"],["2024-07-24T12:09:46.010000"],["2024-07-24T12:09:47.010000"],["2024-07-24T12:09:48.010000"],["2024-07-24T12:09:49.010000"],["2024-07-24T12:09:50.010000"],["2024-07-24T12:09:51.010000"],["2024-07-24T12:09:52.010000"],["2024-07-24T12:09:53.010000"],["2024-07-24T12:09:54.010000"],["2024-07-24T12:09:55.010000"],["2024-07-24T12:09:56.010000"],["2024-07-24T12:09:57.010000"],["2024-07-24T12:09:58.010000"],["2024-07-24T12:09:59.010000"],["2024-07-24T12:10:00.010000"],["2024-07-24T12:10:01.010000"],["2024-07-24T12:10:02.010000"],["2024-07-24T12:10:03.010000"],["2024-07-24T12:10:04.010000"],["2024-07-24T12:10:05.010000"],["2024-07-24T12:10:06.010000"],["2024-07-24T12:10:07.010000"],["2024-07-24T12:10:08.010000"],["2024-07-24T12:10:09.010000"],["2024-07-24T12:10:10.010000"],["2024-07-24T12:10:11.010000"],["2024-07-24T12:10:12.010000"],["2024-07-24T12:10:13.010000"],["2024-07-24T12:10:14.010000"],["2024-07-24T12:10:15.010000"],["2024-07-24T12:10:16.010000"],["2024-07-24T12:10:17.010000"],["2024-07-24T12:10:18.010000"],["2024-07-24T12:10:19.010000"],["2024-07-24T12:10:20.010000"],["2024-07-24T12:10:21.010000"],["2024-07-24T12:10:22.010000"],["2024-07-24T12:10:23.010000"],["2024-07-24T12:10:24.010000"],["2024-07-24T12:10:25.010000"],["2024-07-24T12:10:26.010000"],["2024-07-24T12:10:27.010000"],["2024-07-24T12:10:28.010000"],["2024-07-24T12:10:29.010000"],["2024-07-24T12:10:30.010000"],["2024-07-24T12:10:31.010000"],["2024-07-24T12:10:32.010000"],["2024-07-24T12:10:33.010000"],["2024-07-24T12:10:34.010000"],["2024-07-24T12:10:35.010000"],["2024-07-24T12:10:36.010000"],["2024-07-24T12:10:37.010000"],["2024-07-24T12:10:38.010000"],["2024-07-24T12:10:39.010000"],["2024-07-24T12:10:40.010000"],["2024-07-24T12:10:41.010000"],["2024-07-24T12:10:42.010000"],["2024-07-24T12:10:43.010000"],["2024-07-24T12:10:44.010000"],["2024-07-24T12:10:45.010000"],["2024-07-24T12:10:46.010000"],["2024-07-24T12:10:47.010000"],["2024-07-24T12:10:48.010000"],["2024-07-24T12:10:49.010000"],["2024-07-24T12:10:50.010000"],["2024-07-24T12:10:51.010000"],["2024-07-24T12:10:52.010000"],["2024-07-24T12:10:53.010000"],["2024-07-24T12:10:54.010000"],["2024-07-24T12:10:55.010000"],["2024-07-24T12:10:56.010000"],["2024-07-24T12:10:57.010000"],["2024-07-24T12:10:58.010000"],["2024-07-24T12:10:59.010000"],["2024-07-24T12:11:00.010000"],["2024-07-24T12:11:01.010000"],["2024-07-24T12:11:02.010000"],["2024-07-24T12:11:03.010000"],["2024-07-24T12:11:04.010000"],["2024-07-24T12:11:05.010000"],["2024-07-24T12:11:06.010000"],["2024-07-24T12:11:07.010000"],["2024-07-24T12:11:08.010000"],["2024-07-24T12:11:09.010000"],["2024-07-24T12:11:10.010000"],["2024-07-24T12:11:11.010000"],["2024-07-24T12:11:12.010000"],["2024-07-24T12:11:13.010000"],["2024-07-24T12:11:14.010000"],["2024-07-24T12:11:15.010000"],["2024-07-24T12:11:16.010000"],["2024-07-24T12:11:17.010000"],["2024-07-24T12:11:18.010000"],["2024-07-24T12:11:19.010000"],["2024-07-24T12:11:20.010000"],["2024-07-24T12:11:21.010000"],["2024-07-24T12:11:22.010000"],["2024-07-24T12:11:23.010000"],["2024-07-24T12:11:24.010000"],["2024-07-24T12:11:25.010000"],["2024-07-24T12:11:26.010000"],["2024-07-24T12:11:27.010000"],["2024-07-24T12:11:28.010000"],["2024-07-24T12:11:29.010000"],["2024-07-24T12:11:30.010000"],["2024-07-24T12:11:31.010000"],["2024-07-24T12:11:32.010000"],["2024-07-24T12:11:33.010000"],["2024-07-24T12:11:34.010000"],["2024-07-24T12:11:35.010000"],["2024-07-24T12:11:36.010000"],["2024-07-24T12:11:37.010000"],["2024-07-24T12:11:38.010000"],["2024-07-24T12:11:39.010000"],["2024-07-24T12:11:40.010000"],["2024-07-24T12:11:41.010000"],["2024-07-24T12:11:42.010000"],["2024-07-24T12:11:43.010000"],["2024-07-24T12:11:44.010000"],["2024-07-24T12:11:45.010000"],["2024-07-24T12:11:46.010000"],["2024-07-24T12:11:47.010000"],["2024-07-24T12:11:48.010000"],["2024-07-24T12:11:49.010000"],["2024-07-24T12:11:50.010000"],["2024-07-24T12:11:51.010000"],["2024-07-24T12:11:52.010000"],["2024-07-24T12:11:53.010000"],["2024-07-24T12:11:54.010000"],["2024-07-24T12:11:55.010000"],["2024-07-24T12:11:56.010000"],["2024-07-24T12:11:57.010000"],["2024-07-24T12:11:58.010000"],["2024-07-24T12:11:59.010000"],["2024-07-24T12:12:00.010000"],["2024-07-24T12:12:01.010000"],["2024-07-24T12:12:02.010000"],["2024-07-24T12:12:03.010000"],["2024-07-24T12:12:04.010000"],["2024-07-24T12:12:05.010000"],["2024-07-24T12:12:06.010000"],["2024-07-24T12:12:07.010000"],["2024-07-24T12:12:08.010000"],["2024-07-24T12:12:09.010000"],["2024-07-24T12:12:10.010000"],["2024-07-24T12:12:11.010000"],["2024-07-24T12:12:12.010000"],["2024-07-24T12:12:13.010000"],["2024-07-24T12:12:14.010000"],["2024-07-24T12:12:15.010000"],["2024-07-24T12:12:16.010000"],["2024-07-24T12:12:17.010000"],["2024-07-24T12:12:18.010000"],["2024-07-24T12:12:19.010000"],["2024-07-24T12:12:20.010000"],["2024-07-24T12:12:21.010000"],["2024-07-24T12:12:22.010000"],["2024-07-24T12:12:23.010000"],["2024-07-24T12:12:24.010000"],["2024-07-24T12:12:25.010000"],["2024-07-24T12:12:26.010000"],["2024-07-24T12:12:27.010000"],["2024-07-24T12:12:28.010000"],["2024-07-24T12:12:29.010000"],["2024-07-24T12:12:30.010000"],["2024-07-24T12:12:31.010000"],["2024-07-24T12:12:32.010000"],["2024-07-24T12:12:33.010000"],["2024-07-24T12:12:34.010000"],["2024-07-24T12:12:35.010000"],["2024-07-24T12:12:36.010000"],["2024-07-24T12:12:37.010000"],["2024-07-24T12:12:38.010000"],["2024-07-24T12:12:39.010000"],["2024-07-24T12:12:40.010000"],["2024-07-24T12:12:41.010000"],["2024-07-24T12:12:42.010000"],["2024-07-24T12:12:43.010000"],["2024-07-24T12:12:44.010000"],["2024-07-24T12:12:45.010000"],["2024-07-24T12:12:46.010000"],["2024-07-24T12:12:47.010000"],["2024-07-24T12:12:48.010000"],["2024-07-24T12:12:49.010000"],["2024-07-24T12:12:50.010000"],["2024-07-24T12:12:51.010000"],["2024-07-24T12:12:52.010000"],["2024-07-24T12:12:53.010000"],["2024-07-24T12:12:54.010000"],["2024-07-24T12:12:55.010000"],["2024-07-24T12:12:56.010000"],["2024-07-24T12:12:57.010000"],["2024-07-24T12:12:58.010000"],["2024-07-24T12:12:59.010000"],["2024-07-24T12:13:00.010000"],["2024-07-24T12:13:01.010000"],["2024-07-24T12:13:02.010000"],["2024-07-24T12:13:03.010000"],["2024-07-24T12:13:04.010000"],["2024-07-24T12:13:05.010000"],["2024-07-24T12:13:06.010000"],["2024-07-24T12:13:07.010000"],["2024-07-24T12:13:08.010000"],["2024-07-24T12:13:09.010000"],["2024-07-24T12:13:10.010000"],["2024-07-24T12:13:11.010000"],["2024-07-24T12:13:12.010000"],["2024-07-24T12:13:13.010000"],["2024-07-24T12:13:14.010000"],["2024-07-24T12:13:15.010000"],["2024-07-24T12:13:16.010000"],["2024-07-24T12:13:17.010000"],["2024-07-24T12:13:18.010000"],["2024-07-24T12:13:19.010000"],["2024-07-24T12:13:20.010000"],["2024-07-24T12:13:21.010000"],["2024-07-24T12:13:22.010000"],["2024-07-24T12:13:23.010000"],["2024-07-24T12:13:24.010000"],["2024-07-24T12:13:25.010000"],["2024-07-24T12:13:26.010000"],["2024-07-24T12:13:27.010000"],["2024-07-24T12:13:28.010000"],["2024-07-24T12:13:29.010000"],["2024-07-24T12:13:30.010000"],["2024-07-24T12:13:31.010000"],["2024-07-24T12:13:32.010000"],["2024-07-24T12:13:33.010000"],["2024-07-24T12:13:34.010000"],["2024-07-24T12:13:35.010000"],["2024-07-24T12:13:36.010000"],["2024-07-24T12:13:37.010000"],["2024-07-24T12:13:38.010000"],["2024-07-24T12:13:39.010000"],["2024-07-24T12:13:40.010000"],["2024-07-24T12:13:41.010000"],["2024-07-24T12:13:42.010000"],["2024-07-24T12:13:43.010000"],["2024-07-24T12:13:44.010000"],["2024-07-24T12:13:45.010000"],["2024-07-24T12:13:46.010000"],["2024-07-24T12:13:47.010000"],["2024-07-24T12:13:48.010000"],["2024-07-24T12:13:49.010000"],["2024-07-24T12:13:50.010000"],["2024-07-24T12:13:51.010000"],["2024-07-24T12:13:52.010000"],["2024-07-24T12:13:53.010000"],["2024-07-24T12:13:54.010000"],["2024-07-24T12:13:55.010000"],["2024-07-24T12:13:56.010000"],["2024-07-24T12:13:57.010000"],["2024-07-24T12:13:58.010000"],["2024-07-24T12:13:59.010000"],["2024-07-24T12:14:00.010000"],["2024-07-24T12:14:01.010000"],["2024-07-24T12:14:02.010000"],["2024-07-24T12:14:03.010000"],["2024-07-24T12:14:04.010000"],["2024-07-24T12:14:05.010000"],["2024-07-24T12:14:06.010000"],["2024-07-24T12:14:07.010000"],["2024-07-24T12:14:08.010000"],["2024-07-24T12:14:09.010000"],["2024-07-24T12:14:10.010000"],["2024-07-24T12:14:11.010000"],["2024-07-24T12:14:12.010000"],["2024-07-24T12:14:13.010000"],["2024-07-24T12:14:14.010000"],["2024-07-24T12:14:15.010000"],["2024-07-24T12:14:16.010000"],["2024-07-24T12:14:17.010000"],["2024-07-24T12:14:18.010000"],["2024-07-24T12:14:19.010000"],["2024-07-24T12:14:20.010000"],["2024-07-24T12:14:21.010000"],["2024-07-24T12:14:22.010000"],["2024-07-24T12:14:23.010000"],["2024-07-24T12:14:24.010000"],["2024-07-24T12:14:25.010000"],["2024-07-24T12:14:26.010000"],["2024-07-24T12:14:27.010000"],["2024-07-24T12:14:28.010000"],["2024-07-24T12:14:29.010000"],["2024-07-24T12:14:30.010000"],["2024-07-24T12:14:31.010000"],["2024-07-24T12:14:32.010000"],["2024-07-24T12:14:33.010000"],["2024-07-24T12:14:34.010000"],["2024-07-24T12:14:35.010000"],["2024-07-24T12:14:36.010000"],["2024-07-24T12:14:37.010000"],["2024-07-24T12:14:38.010000"],["2024-07-24T12:14:39.010000"],["2024-07-24T12:14:40.010000"],["2024-07-24T12:14:41.010000"],["2024-07-24T12:14:42.010000"],["2024-07-24T12:14:43.010000"],["2024-07-24T12:14:44.010000"],["2024-07-24T12:14:45.010000"],["2024-07-24T12:14:46.010000"],["2024-07-24T12:14:47.010000"],["2024-07-24T12:14:48.010000"],["2024-07-24T12:14:49.010000"],["2024-07-24T12:14:50.010000"],["2024-07-24T12:14:51.010000"],["2024-07-24T12:14:52.010000"],["2024-07-24T12:14:53.010000"],["2024-07-24T12:14:54.010000"],["2024-07-24T12:14:55.010000"],["2024-07-24T12:14:56.010000"],["2024-07-24T12:14:57.010000"],["2024-07-24T12:14:58.010000"],["2024-07-24T12:14:59.010000"],["2024-07-24T12:15:00.010000"],["2024-07-24T12:15:01.010000"],["2024-07-24T12:15:02.010000"],["2024-07-24T12:15:03.010000"],["2024-07-24T12:15:04.010000"],["2024-07-24T12:15:05.010000"],["2024-07-24T12:15:06.010000"],["2024-07-24T12:15:07.010000"],["2024-07-24T12:15:08.010000"],["2024-07-24T12:15:09.010000"],["2024-07-24T12:15:10.010000"],["2024-07-24T12:15:11.010000"],["2024-07-24T12:15:12.010000"],["2024-07-24T12:15:13.010000"],["2024-07-24T12:15:14.010000"],["2024-07-24T12:15:15.010000"],["2024-07-24T12:15:16.010000"],["2024-07-24T12:15:17.010000"],["2024-07-24T12:15:18.010000"],["2024-07-24T12:15:19.010000"],["2024-07-24T12:15:20.010000"],["2024-07-24T12:15:21.010000"],["2024-07-24T12:15:22.010000"],["2024-07-24T12:15:23.010000"],["2024-07-24T12:15:24.010000"],["2024-07-24T12:15:25.010000"],["2024-07-24T12:15:26.010000"],["2024-07-24T12:15:27.010000"],["2024-07-24T12:15:28.010000"],["2024-07-24T12:15:29.010000"],["2024-07-24T12:15:30.010000"],["2024-07-24T12:15:31.010000"],["2024-07-24T12:15:32.010000"],["2024-07-24T12:15:33.010000"],["2024-07-24T12:15:34.010000"],["2024-07-24T12:15:35.010000"],["2024-07-24T12:15:36.010000"],["2024-07-24T12:15:37.010000"],["2024-07-24T12:15:38.010000"],["2024-07-24T12:15:39.010000"],["2024-07-24T12:15:40.010000"],["2024-07-24T12:15:41.010000"],["2024-07-24T12:15:42.010000"],["2024-07-24T12:15:43.010000"],["2024-07-24T12:15:44.010000"],["2024-07-24T12:15:45.010000"],["2024-07-24T12:15:46.010000"],["2024-07-24T12:15:47.010000"],["2024-07-24T12:15:48.010000"],["2024-07-24T12:15:49.010000"],["2024-07-24T12:15:50.010000"],["2024-07-24T12:15:51.010000"],["2024-07-24T12:15:52.010000"],["2024-07-24T12:15:53.010000"],["2024-07-24T12:15:54.010000"],["2024-07-24T12:15:55.010000"],["2024-07-24T12:15:56.010000"],["2024-07-24T12:15:57.010000"],["2024-07-24T12:15:58.010000"],["2024-07-24T12:15:59.010000"],["2024-07-24T12:16:00.010000"],["2024-07-24T12:16:01.010000"],["2024-07-24T12:16:02.010000"],["2024-07-24T12:16:03.010000"],["2024-07-24T12:16:04.010000"],["2024-07-24T12:16:05.010000"],["2024-07-24T12:16:06.010000"],["2024-07-24T12:16:07.010000"],["2024-07-24T12:16:08.010000"],["2024-07-24T12:16:09.010000"],["2024-07-24T12:16:10.010000"],["2024-07-24T12:16:11.010000"],["2024-07-24T12:16:12.010000"],["2024-07-24T12:16:13.010000"],["2024-07-24T12:16:14.010000"],["2024-07-24T12:16:15.010000"],["2024-07-24T12:16:16.010000"],["2024-07-24T12:16:17.010000"],["2024-07-24T12:16:18.010000"],["2024-07-24T12:16:19.010000"],["2024-07-24T12:16:20.010000"],["2024-07-24T12:16:21.010000"],["2024-07-24T12:16:22.010000"],["2024-07-24T12:16:23.010000"],["2024-07-24T12:16:24.010000"],["2024-07-24T12:16:25.010000"],["2024-07-24T12:16:26.010000"],["2024-07-24T12:16:27.010000"],["2024-07-24T12:16:28.010000"],["2024-07-24T12:16:29.010000"],["2024-07-24T12:16:30.010000"],["2024-07-24T12:16:31.010000"],["2024-07-24T12:16:32.010000"],["2024-07-24T12:16:33.010000"],["2024-07-24T12:16:34.010000"],["2024-07-24T12:16:35.010000"],["2024-07-24T12:16:36.010000"],["2024-07-24T12:16:37.010000"],["2024-07-24T12:16:38.010000"],["2024-07-24T12:16:39.010000"],["2024-07-24T12:16:40.010000"],["2024-07-24T12:16:41.010000"],["2024-07-24T12:16:42.010000"],["2024-07-24T12:16:43.010000"],["2024-07-24T12:16:44.010000"],["2024-07-24T12:16:45.010000"],["2024-07-24T12:16:46.010000"],["2024-07-24T12:16:47.010000"],["2024-07-24T12:16:48.010000"],["2024-07-24T12:16:49.010000"],["2024-07-24T12:16:50.010000"],["2024-07-24T12:16:51.010000"],["2024-07-24T12:16:52.010000"],["2024-07-24T12:16:53.010000"],["2024-07-24T12:16:54.010000"],["2024-07-24T12:16:55.010000"],["2024-07-24T12:16:56.010000"],["2024-07-24T12:16:57.010000"],["2024-07-24T12:16:58.010000"],["2024-07-24T12:16:59.010000"],["2024-07-24T12:17:00.010000"],["2024-07-24T12:17:01.010000"],["2024-07-24T12:17:02.010000"],["2024-07-24T12:17:03.010000"],["2024-07-24T12:17:04.010000"],["2024-07-24T12:17:05.010000"],["2024-07-24T12:17:06.010000"],["2024-07-24T12:17:07.010000"],["2024-07-24T12:17:08.010000"],["2024-07-24T12:17:09.010000"],["2024-07-24T12:17:10.010000"],["2024-07-24T12:17:11.010000"],["2024-07-24T12:17:12.010000"],["2024-07-24T12:17:13.010000"],["2024-07-24T12:17:14.010000"],["2024-07-24T12:17:15.010000"],["2024-07-24T12:17:16.010000"],["2024-07-24T12:17:17.010000"],["2024-07-24T12:17:18.010000"],["2024-07-24T12:17:19.010000"],["2024-07-24T12:17:20.010000"],["2024-07-24T12:17:21.010000"],["2024-07-24T12:17:22.010000"],["2024-07-24T12:17:23.010000"],["2024-07-24T12:17:24.010000"],["2024-07-24T12:17:25.010000"],["2024-07-24T12:17:26.010000"],["2024-07-24T12:17:27.010000"],["2024-07-24T12:17:28.010000"],["2024-07-24T12:17:29.010000"],["2024-07-24T12:17:30.010000"],["2024-07-24T12:17:31.010000"],["2024-07-24T12:17:32.010000"],["2024-07-24T12:17:33.010000"],["2024-07-24T12:17:34.010000"],["2024-07-24T12:17:35.010000"],["2024-07-24T12:17:36.010000"],["2024-07-24T12:17:37.010000"],["2024-07-24T12:17:38.010000"],["2024-07-24T12:17:39.010000"],["2024-07-24T12:17:40.010000"],["2024-07-24T12:17:41.010000"],["2024-07-24T12:17:42.010000"],["2024-07-24T12:17:43.010000"],["2024-07-24T12:17:44.010000"],["2024-07-24T12:17:45.010000"],["2024-07-24T12:17:46.010000"],["2024-07-24T12:17:47.010000"],["2024-07-24T12:17:48.010000"],["2024-07-24T12:17:49.010000"],["2024-07-24T12:17:50.010000"],["2024-07-24T12:17:51.010000"],["2024-07-24T12:17:52.010000"],["2024-07-24T12:17:53.010000"],["2024-07-24T12:17:54.010000"],["2024-07-24T12:17:55.010000"],["2024-07-24T12:17:56.010000"],["2024-07-24T12:17:57.010000"],["2024-07-24T12:17:58.010000"],["2024-07-24T12:17:59.010000"],["2024-07-24T12:18:00.010000"],["2024-07-24T12:18:01.010000"],["2024-07-24T12:18:02.010000"],["2024-07-24T12:18:03.010000"],["2024-07-24T12:18:04.010000"],["2024-07-24T12:18:05.010000"],["2024-07-24T12:18:06.010000"],["2024-07-24T12:18:07.010000"],["2024-07-24T12:18:08.010000"],["2024-07-24T12:18:09.010000"],["2024-07-24T12:18:10.010000"],["2024-07-24T12:18:11.010000"],["2024-07-24T12:18:12.010000"],["2024-07-24T12:18:13.010000"],["2024-07-24T12:18:14.010000"],["2024-07-24T12:18:15.010000"],["2024-07-24T12:18:16.010000"],["2024-07-24T12:18:17.010000"],["2024-07-24T12:18:18.010000"],["2024-07-24T12:18:19.010000"],["2024-07-24T12:18:20.010000"],["2024-07-24T12:18:21.010000"],["2024-07-24T12:18:22.010000"],["2024-07-24T12:18:23.010000"],["2024-07-24T12:18:24.010000"],["2024-07-24T12:18:25.010000"],["2024-07-24T12:18:26.010000"],["2024-07-24T12:18:27.010000"],["2024-07-24T12:18:28.010000"],["2024-07-24T12:18:29.010000"],["2024-07-24T12:18:30.010000"],["2024-07-24T12:18:31.010000"],["2024-07-24T12:18:32.010000"],["2024-07-24T12:18:33.010000"],["2024-07-24T12:18:34.010000"],["2024-07-24T12:18:35.010000"],["2024-07-24T12:18:36.010000"],["2024-07-24T12:18:37.010000"],["2024-07-24T12:18:38.010000"],["2024-07-24T12:18:39.010000"],["2024-07-24T12:18:40.010000"],["2024-07-24T12:18:41.010000"],["2024-07-24T12:18:42.010000"],["2024-07-24T12:18:43.010000"],["2024-07-24T12:18:44.010000"],["2024-07-24T12:18:45.010000"],["2024-07-24T12:18:46.010000"],["2024-07-24T12:18:47.010000"],["2024-07-24T12:18:48.010000"],["2024-07-24T12:18:49.010000"],["2024-07-24T12:18:50.010000"],["2024-07-24T12:18:51.010000"],["2024-07-24T12:18:52.010000"],["2024-07-24T12:18:53.010000"],["2024-07-24T12:18:54.010000"],["2024-07-24T12:18:55.010000"],["2024-07-24T12:18:56.010000"],["2024-07-24T12:18:57.010000"],["2024-07-24T12:18:58.010000"],["2024-07-24T12:18:59.010000"],["2024-07-24T12:19:00.010000"],["2024-07-24T12:19:01.010000"],["2024-07-24T12:19:02.010000"],["2024-07-24T12:19:03.010000"],["2024-07-24T12:19:04.010000"],["2024-07-24T12:19:05.010000"],["2024-07-24T12:19:06.010000"],["2024-07-24T12:19:07.010000"],["2024-07-24T12:19:08.010000"],["2024-07-24T12:19:09.010000"],["2024-07-24T12:19:10.010000"],["2024-07-24T12:19:11.010000"],["2024-07-24T12:19:12.010000"],["2024-07-24T12:19:13.010000"],["2024-07-24T12:19:14.010000"],["2024-07-24T12:19:15.010000"],["2024-07-24T12:19:16.010000"],["2024-07-24T12:19:17.010000"],["2024-07-24T12:19:18.010000"],["2024-07-24T12:19:19.010000"],["2024-07-24T12:19:20.010000"],["2024-07-24T12:19:21.010000"],["2024-07-24T12:19:22.010000"],["2024-07-24T12:19:23.010000"],["2024-07-24T12:19:24.010000"],["2024-07-24T12:19:25.010000"],["2024-07-24T12:19:26.010000"],["2024-07-24T12:19:27.010000"],["2024-07-24T12:19:28.010000"],["2024-07-24T12:19:29.010000"],["2024-07-24T12:19:30.010000"],["2024-07-24T12:19:31.010000"],["2024-07-24T12:19:32.010000"],["2024-07-24T12:19:33.010000"],["2024-07-24T12:19:34.010000"],["2024-07-24T12:19:35.010000"],["2024-07-24T12:19:36.010000"],["2024-07-24T12:19:37.010000"],["2024-07-24T12:19:38.010000"],["2024-07-24T12:19:39.010000"],["2024-07-24T12:19:40.010000"],["2024-07-24T12:19:41.010000"],["2024-07-24T12:19:42.010000"],["2024-07-24T12:19:43.010000"],["2024-07-24T12:19:44.010000"],["2024-07-24T12:19:45.010000"],["2024-07-24T12:19:46.010000"],["2024-07-24T12:19:47.010000"],["2024-07-24T12:19:48.010000"],["2024-07-24T12:19:49.010000"],["2024-07-24T12:19:50.010000"],["2024-07-24T12:19:51.010000"],["2024-07-24T12:19:52.010000"],["2024-07-24T12:19:53.010000"],["2024-07-24T12:19:54.010000"],["2024-07-24T12:19:55.010000"],["2024-07-24T12:19:56.010000"],["2024-07-24T12:19:57.010000"],["2024-07-24T12:19:58.010000"],["2024-07-24T12:19:59.010000"],["2024-07-24T12:20:00.010000"],["2024-07-24T12:20:01.010000"],["2024-07-24T12:20:02.010000"],["2024-07-24T12:20:03.010000"],["2024-07-24T12:20:04.010000"],["2024-07-24T12:20:05.010000"],["2024-07-24T12:20:06.010000"],["2024-07-24T12:20:07.010000"],["2024-07-24T12:20:08.010000"],["2024-07-24T12:20:09.010000"],["2024-07-24T12:20:10.010000"],["2024-07-24T12:20:11.010000"],["2024-07-24T12:20:12.010000"],["2024-07-24T12:20:13.010000"],["2024-07-24T12:20:14.010000"],["2024-07-24T12:20:15.010000"],["2024-07-24T12:20:16.010000"],["2024-07-24T12:20:17.010000"],["2024-07-24T12:20:18.010000"],["2024-07-24T12:20:19.010000"],["2024-07-24T12:20:20.010000"],["2024-07-24T12:20:21.010000"],["2024-07-24T12:20:22.010000"],["2024-07-24T12:20:23.010000"],["2024-07-24T12:20:24.010000"],["2024-07-24T12:20:25.010000"],["2024-07-24T12:20:26.010000"],["2024-07-24T12:20:27.010000"],["2024-07-24T12:20:28.010000"],["2024-07-24T12:20:29.010000"],["2024-07-24T12:20:30.010000"],["2024-07-24T12:20:31.010000"],["2024-07-24T12:20:32.010000"],["2024-07-24T12:20:33.010000"],["2024-07-24T12:20:34.010000"],["2024-07-24T12:20:35.010000"],["2024-07-24T12:20:36.010000"],["2024-07-24T12:20:37.010000"],["2024-07-24T12:20:38.010000"],["2024-07-24T12:20:39.010000"],["2024-07-24T12:20:40.010000"],["2024-07-24T12:20:41.010000"],["2024-07-24T12:20:42.010000"],["2024-07-24T12:20:43.010000"],["2024-07-24T12:20:44.010000"],["2024-07-24T12:20:45.010000"],["2024-07-24T12:20:46.010000"],["2024-07-24T12:20:47.010000"],["2024-07-24T12:20:48.010000"],["2024-07-24T12:20:49.010000"],["2024-07-24T12:20:50.010000"],["2024-07-24T12:20:51.010000"],["2024-07-24T12:20:52.010000"],["2024-07-24T12:20:53.010000"],["2024-07-24T12:20:54.010000"],["2024-07-24T12:20:55.010000"],["2024-07-24T12:20:56.010000"],["2024-07-24T12:20:57.010000"],["2024-07-24T12:20:58.010000"],["2024-07-24T12:20:59.010000"],["2024-07-24T12:21:00.010000"],["2024-07-24T12:21:01.010000"],["2024-07-24T12:21:02.010000"],["2024-07-24T12:21:03.010000"],["2024-07-24T12:21:04.010000"],["2024-07-24T12:21:05.010000"],["2024-07-24T12:21:06.010000"],["2024-07-24T12:21:07.010000"],["2024-07-24T12:21:08.010000"],["2024-07-24T12:21:09.010000"],["2024-07-24T12:21:10.010000"],["2024-07-24T12:21:11.010000"],["2024-07-24T12:21:12.010000"],["2024-07-24T12:21:13.010000"],["2024-07-24T12:21:14.010000"],["2024-07-24T12:21:15.010000"],["2024-07-24T12:21:16.010000"],["2024-07-24T12:21:17.010000"],["2024-07-24T12:21:18.010000"],["2024-07-24T12:21:19.010000"],["2024-07-24T12:21:20.010000"],["2024-07-24T12:21:21.010000"],["2024-07-24T12:21:22.010000"],["2024-07-24T12:21:23.010000"],["2024-07-24T12:21:24.010000"],["2024-07-24T12:21:25.010000"],["2024-07-24T12:21:26.010000"],["2024-07-24T12:21:27.010000"],["2024-07-24T12:21:28.010000"],["2024-07-24T12:21:29.010000"],["2024-07-24T12:21:30.010000"],["2024-07-24T12:21:31.010000"],["2024-07-24T12:21:32.010000"],["2024-07-24T12:21:33.010000"],["2024-07-24T12:21:34.010000"],["2024-07-24T12:21:35.010000"],["2024-07-24T12:21:36.010000"],["2024-07-24T12:21:37.010000"],["2024-07-24T12:21:38.010000"],["2024-07-24T12:21:39.010000"],["2024-07-24T12:21:40.010000"],["2024-07-24T12:21:41.010000"],["2024-07-24T12:21:42.010000"],["2024-07-24T12:21:43.010000"],["2024-07-24T12:21:44.010000"],["2024-07-24T12:21:45.010000"],["2024-07-24T12:21:46.010000"],["2024-07-24T12:21:47.010000"],["2024-07-24T12:21:48.010000"],["2024-07-24T12:21:49.010000"],["2024-07-24T12:21:50.010000"],["2024-07-24T12:21:51.010000"],["2024-07-24T12:21:52.010000"],["2024-07-24T12:21:53.010000"],["2024-07-24T12:21:54.010000"],["2024-07-24T12:21:55.010000"],["2024-07-24T12:21:56.010000"],["2024-07-24T12:21:57.010000"],["2024-07-24T12:21:58.010000"],["2024-07-24T12:21:59.010000"],["2024-07-24T12:22:00.010000"],["2024-07-24T12:22:01.010000"],["2024-07-24T12:22:02.010000"],["2024-07-24T12:22:03.010000"],["2024-07-24T12:22:04.010000"],["2024-07-24T12:22:05.010000"],["2024-07-24T12:22:06.010000"],["2024-07-24T12:22:07.010000"],["2024-07-24T12:22:08.010000"],["2024-07-24T12:22:09.010000"],["2024-07-24T12:22:10.010000"],["2024-07-24T12:22:11.010000"],["2024-07-24T12:22:12.010000"],["2024-07-24T12:22:13.010000"],["2024-07-24T12:22:14.010000"],["2024-07-24T12:22:15.010000"],["2024-07-24T12:22:16.010000"],["2024-07-24T12:22:17.010000"],["2024-07-24T12:22:18.010000"],["2024-07-24T12:22:19.010000"],["2024-07-24T12:22:20.010000"],["2024-07-24T12:22:21.010000"],["2024-07-24T12:22:22.010000"],["2024-07-24T12:22:23.010000"],["2024-07-24T12:22:24.010000"],["2024-07-24T12:22:25.010000"],["2024-07-24T12:22:26.010000"],["2024-07-24T12:22:27.010000"],["2024-07-24T12:22:28.010000"],["2024-07-24T12:22:29.010000"],["2024-07-24T12:22:30.010000"],["2024-07-24T12:22:31.010000"],["2024-07-24T12:22:32.010000"],["2024-07-24T12:22:33.010000"],["2024-07-24T12:22:34.010000"],["2024-07-24T12:22:35.010000"],["2024-07-24T12:22:36.010000"],["2024-07-24T12:22:37.010000"],["2024-07-24T12:22:38.010000"],["2024-07-24T12:22:39.010000"],["2024-07-24T12:22:40.010000"],["2024-07-24T12:22:41.010000"],["2024-07-24T12:22:42.010000"],["2024-07-24T12:22:43.010000"],["2024-07-24T12:22:44.010000"],["2024-07-24T12:22:45.010000"],["2024-07-24T12:22:46.010000"],["2024-07-24T12:22:47.010000"],["2024-07-24T12:22:48.010000"],["2024-07-24T12:22:49.010000"],["2024-07-24T12:22:50.010000"],["2024-07-24T12:22:51.010000"],["2024-07-24T12:22:52.010000"],["2024-07-24T12:22:53.010000"],["2024-07-24T12:22:54.010000"],["2024-07-24T12:22:55.010000"],["2024-07-24T12:22:56.010000"],["2024-07-24T12:22:57.010000"],["2024-07-24T12:22:58.010000"],["2024-07-24T12:22:59.010000"],["2024-07-24T12:23:00.010000"],["2024-07-24T12:23:01.010000"],["2024-07-24T12:23:02.010000"],["2024-07-24T12:23:03.010000"],["2024-07-24T12:23:04.010000"],["2024-07-24T12:23:05.010000"],["2024-07-24T12:23:06.010000"],["2024-07-24T12:23:07.010000"],["2024-07-24T12:23:08.010000"],["2024-07-24T12:23:09.010000"],["2024-07-24T12:23:10.010000"],["2024-07-24T12:23:11.010000"],["2024-07-24T12:23:12.010000"],["2024-07-24T12:23:13.010000"],["2024-07-24T12:23:14.010000"],["2024-07-24T12:23:15.010000"],["2024-07-24T12:23:16.010000"],["2024-07-24T12:23:17.010000"],["2024-07-24T12:23:18.010000"],["2024-07-24T12:23:19.010000"],["2024-07-24T12:23:20.010000"],["2024-07-24T12:23:21.010000"],["2024-07-24T12:23:22.010000"],["2024-07-24T12:23:23.010000"],["2024-07-24T12:23:24.010000"],["2024-07-24T12:23:25.010000"],["2024-07-24T12:23:26.010000"],["2024-07-24T12:23:27.010000"],["2024-07-24T12:23:28.010000"],["2024-07-24T12:23:29.010000"],["2024-07-24T12:23:30.010000"],["2024-07-24T12:23:31.010000"],["2024-07-24T12:23:32.010000"],["2024-07-24T12:23:33.010000"],["2024-07-24T12:23:34.010000"],["2024-07-24T12:23:35.010000"],["2024-07-24T12:23:36.010000"],["2024-07-24T12:23:37.010000"],["2024-07-24T12:23:38.010000"],["2024-07-24T12:23:39.010000"],["2024-07-24T12:23:40.010000"],["2024-07-24T12:23:41.010000"],["2024-07-24T12:23:42.010000"],["2024-07-24T12:23:43.010000"],["2024-07-24T12:23:44.010000"],["2024-07-24T12:23:45.010000"],["2024-07-24T12:23:46.010000"],["2024-07-24T12:23:47.010000"],["2024-07-24T12:23:48.010000"],["2024-07-24T12:23:49.010000"],["2024-07-24T12:23:50.010000"],["2024-07-24T12:23:51.010000"],["2024-07-24T12:23:52.010000"],["2024-07-24T12:23:53.010000"],["2024-07-24T12:23:54.010000"],["2024-07-24T12:23:55.010000"],["2024-07-24T12:23:56.010000"],["2024-07-24T12:23:57.010000"],["2024-07-24T12:23:58.010000"],["2024-07-24T12:23:59.010000"],["2024-07-24T12:24:00.010000"],["2024-07-24T12:24:01.010000"],["2024-07-24T12:24:02.010000"],["2024-07-24T12:24:03.010000"],["2024-07-24T12:24:04.010000"],["2024-07-24T12:24:05.010000"],["2024-07-24T12:24:06.010000"],["2024-07-24T12:24:07.010000"],["2024-07-24T12:24:08.010000"],["2024-07-24T12:24:09.010000"],["2024-07-24T12:24:10.010000"],["2024-07-24T12:24:11.010000"],["2024-07-24T12:24:12.010000"],["2024-07-24T12:24:13.010000"],["2024-07-24T12:24:14.010000"],["2024-07-24T12:24:15.010000"],["2024-07-24T12:24:16.010000"],["2024-07-24T12:24:17.010000"],["2024-07-24T12:24:18.010000"],["2024-07-24T12:24:19.010000"],["2024-07-24T12:24:20.010000"],["2024-07-24T12:24:21.010000"],["2024-07-24T12:24:22.010000"],["2024-07-24T12:24:23.010000"],["2024-07-24T12:24:24.010000"],["2024-07-24T12:24:25.010000"],["2024-07-24T12:24:26.010000"],["2024-07-24T12:24:27.010000"],["2024-07-24T12:24:28.010000"],["2024-07-24T12:24:29.010000"],["2024-07-24T12:24:30.010000"],["2024-07-24T12:24:31.010000"],["2024-07-24T12:24:32.010000"],["2024-07-24T12:24:33.010000"],["2024-07-24T12:24:34.010000"],["2024-07-24T12:24:35.010000"],["2024-07-24T12:24:36.010000"],["2024-07-24T12:24:37.010000"],["2024-07-24T12:24:38.010000"],["2024-07-24T12:24:39.010000"],["2024-07-24T12:24:40.010000"],["2024-07-24T12:24:41.010000"],["2024-07-24T12:24:42.010000"],["2024-07-24T12:24:43.010000"],["2024-07-24T12:24:44.010000"],["2024-07-24T12:24:45.010000"],["2024-07-24T12:24:46.010000"],["2024-07-24T12:24:47.010000"],["2024-07-24T12:24:48.010000"],["2024-07-24T12:24:49.010000"],["2024-07-24T12:24:50.010000"],["2024-07-24T12:24:51.010000"],["2024-07-24T12:24:52.010000"],["2024-07-24T12:24:53.010000"],["2024-07-24T12:24:54.010000"],["2024-07-24T12:24:55.010000"],["2024-07-24T12:24:56.010000"],["2024-07-24T12:24:57.010000"],["2024-07-24T12:24:58.010000"],["2024-07-24T12:24:59.010000"],["2024-07-24T12:25:00.010000"],["2024-07-24T12:25:01.010000"],["2024-07-24T12:25:02.010000"],["2024-07-24T12:25:03.010000"],["2024-07-24T12:25:04.010000"],["2024-07-24T12:25:05.010000"],["2024-07-24T12:25:06.010000"],["2024-07-24T12:25:07.010000"],["2024-07-24T12:25:08.010000"],["2024-07-24T12:25:09.010000"],["2024-07-24T12:25:10.010000"],["2024-07-24T12:25:11.010000"],["2024-07-24T12:25:12.010000"],["2024-07-24T12:25:13.010000"],["2024-07-24T12:25:14.010000"],["2024-07-24T12:25:15.010000"],["2024-07-24T12:25:16.010000"],["2024-07-24T12:25:17.010000"],["2024-07-24T12:25:18.010000"],["2024-07-24T12:25:19.010000"],["2024-07-24T12:25:20.010000"],["2024-07-24T12:25:21.010000"],["2024-07-24T12:25:22.010000"],["2024-07-24T12:25:23.010000"],["2024-07-24T12:25:24.010000"],["2024-07-24T12:25:25.010000"],["2024-07-24T12:25:26.010000"],["2024-07-24T12:25:27.010000"],["2024-07-24T12:25:28.010000"],["2024-07-24T12:25:29.010000"],["2024-07-24T12:25:30.010000"],["2024-07-24T12:25:31.010000"],["2024-07-24T12:25:32.010000"],["2024-07-24T12:25:33.010000"],["2024-07-24T12:25:34.010000"],["2024-07-24T12:25:35.010000"],["2024-07-24T12:25:36.010000"],["2024-07-24T12:25:37.010000"],["2024-07-24T12:25:38.010000"],["2024-07-24T12:25:39.010000"],["2024-07-24T12:25:40.010000"],["2024-07-24T12:25:41.010000"],["2024-07-24T12:25:42.010000"],["2024-07-24T12:25:43.010000"],["2024-07-24T12:25:44.010000"],["2024-07-24T12:25:45.010000"],["2024-07-24T12:25:46.010000"],["2024-07-24T12:25:47.010000"],["2024-07-24T12:25:48.010000"],["2024-07-24T12:25:49.010000"],["2024-07-24T12:25:50.010000"],["2024-07-24T12:25:51.010000"],["2024-07-24T12:25:52.010000"],["2024-07-24T12:25:53.010000"],["2024-07-24T12:25:54.010000"],["2024-07-24T12:25:55.010000"],["2024-07-24T12:25:56.010000"],["2024-07-24T12:25:57.010000"],["2024-07-24T12:25:58.010000"],["2024-07-24T12:25:59.010000"],["2024-07-24T12:26:00.010000"],["2024-07-24T12:26:01.010000"],["2024-07-24T12:26:02.010000"],["2024-07-24T12:26:03.010000"],["2024-07-24T12:26:04.010000"],["2024-07-24T12:26:05.010000"],["2024-07-24T12:26:06.010000"],["2024-07-24T12:26:07.010000"],["2024-07-24T12:26:08.010000"],["2024-07-24T12:26:09.010000"],["2024-07-24T12:26:10.010000"],["2024-07-24T12:26:11.010000"],["2024-07-24T12:26:12.010000"],["2024-07-24T12:26:13.010000"],["2024-07-24T12:26:14.010000"],["2024-07-24T12:26:15.010000"],["2024-07-24T12:26:16.010000"],["2024-07-24T12:26:17.010000"],["2024-07-24T12:26:18.010000"],["2024-07-24T12:26:19.010000"],["2024-07-24T12:26:20.010000"],["2024-07-24T12:26:21.010000"],["2024-07-24T12:26:22.010000"],["2024-07-24T12:26:23.010000"],["2024-07-24T12:26:24.010000"],["2024-07-24T12:26:25.010000"],["2024-07-24T12:26:26.010000"],["2024-07-24T12:26:27.010000"],["2024-07-24T12:26:28.010000"],["2024-07-24T12:26:29.010000"],["2024-07-24T12:26:30.010000"],["2024-07-24T12:26:31.010000"],["2024-07-24T12:26:32.010000"],["2024-07-24T12:26:33.010000"],["2024-07-24T12:26:34.010000"],["2024-07-24T12:26:35.010000"],["2024-07-24T12:26:36.010000"],["2024-07-24T12:26:37.010000"],["2024-07-24T12:26:38.010000"],["2024-07-24T12:26:39.010000"],["2024-07-24T12:26:40.010000"],["2024-07-24T12:26:41.010000"],["2024-07-24T12:26:42.010000"],["2024-07-24T12:26:43.010000"],["2024-07-24T12:26:44.010000"],["2024-07-24T12:26:45.010000"],["2024-07-24T12:26:46.010000"],["2024-07-24T12:26:47.010000"],["2024-07-24T12:26:48.010000"],["2024-07-24T12:26:49.010000"],["2024-07-24T12:26:50.010000"],["2024-07-24T12:26:51.010000"],["2024-07-24T12:26:52.010000"],["2024-07-24T12:26:53.010000"],["2024-07-24T12:26:54.010000"],["2024-07-24T12:26:55.010000"],["2024-07-24T12:26:56.010000"],["2024-07-24T12:26:57.010000"],["2024-07-24T12:26:58.010000"],["2024-07-24T12:26:59.010000"],["2024-07-24T12:27:00.010000"],["2024-07-24T12:27:01.010000"],["2024-07-24T12:27:02.010000"],["2024-07-24T12:27:03.010000"],["2024-07-24T12:27:04.010000"],["2024-07-24T12:27:05.010000"],["2024-07-24T12:27:06.010000"],["2024-07-24T12:27:07.010000"],["2024-07-24T12:27:08.010000"],["2024-07-24T12:27:09.010000"],["2024-07-24T12:27:10.010000"],["2024-07-24T12:27:11.010000"],["2024-07-24T12:27:12.010000"],["2024-07-24T12:27:13.010000"],["2024-07-24T12:27:14.010000"],["2024-07-24T12:27:15.010000"],["2024-07-24T12:27:16.010000"],["2024-07-24T12:27:17.010000"],["2024-07-24T12:27:18.010000"],["2024-07-24T12:27:19.010000"],["2024-07-24T12:27:20.010000"],["2024-07-24T12:27:21.010000"],["2024-07-24T12:27:22.010000"],["2024-07-24T12:27:23.010000"],["2024-07-24T12:27:24.010000"],["2024-07-24T12:27:25.010000"],["2024-07-24T12:27:26.010000"],["2024-07-24T12:27:27.010000"],["2024-07-24T12:27:28.010000"],["2024-07-24T12:27:29.010000"],["2024-07-24T12:27:30.010000"],["2024-07-24T12:27:31.010000"],["2024-07-24T12:27:32.010000"],["2024-07-24T12:27:33.010000"],["2024-07-24T12:27:34.010000"],["2024-07-24T12:27:35.010000"],["2024-07-24T12:27:36.010000"],["2024-07-24T12:27:37.010000"],["2024-07-24T12:27:38.010000"],["2024-07-24T12:27:39.010000"],["2024-07-24T12:27:40.010000"],["2024-07-24T12:27:41.010000"],["2024-07-24T12:27:42.010000"],["2024-07-24T12:27:43.010000"],["2024-07-24T12:27:44.010000"],["2024-07-24T12:27:45.010000"],["2024-07-24T12:27:46.010000"],["2024-07-24T12:27:47.010000"],["2024-07-24T12:27:48.010000"],["2024-07-24T12:27:49.010000"],["2024-07-24T12:27:50.010000"],["2024-07-24T12:27:51.010000"],["2024-07-24T12:27:52.010000"],["2024-07-24T12:27:53.010000"],["2024-07-24T12:27:54.010000"],["2024-07-24T12:27:55.010000"],["2024-07-24T12:27:56.010000"],["2024-07-24T12:27:57.010000"],["2024-07-24T12:27:58.010000"],["2024-07-24T12:27:59.010000"],["2024-07-24T12:28:00.010000"],["2024-07-24T12:28:01.010000"],["2024-07-24T12:28:02.010000"],["2024-07-24T12:28:03.010000"],["2024-07-24T12:28:04.010000"],["2024-07-24T12:28:05.010000"],["2024-07-24T12:28:06.010000"],["2024-07-24T12:28:07.010000"],["2024-07-24T12:28:08.010000"],["2024-07-24T12:28:09.010000"],["2024-07-24T12:28:10.010000"],["2024-07-24T12:28:11.010000"],["2024-07-24T12:28:12.010000"],["2024-07-24T12:28:13.010000"],["2024-07-24T12:28:14.010000"],["2024-07-24T12:28:15.010000"],["2024-07-24T12:28:16.010000"],["2024-07-24T12:28:17.010000"],["2024-07-24T12:28:18.010000"],["2024-07-24T12:28:19.010000"],["2024-07-24T12:28:20.010000"],["2024-07-24T12:28:21.010000"],["2024-07-24T12:28:22.010000"],["2024-07-24T12:28:23.010000"],["2024-07-24T12:28:24.010000"],["2024-07-24T12:28:25.010000"],["2024-07-24T12:28:26.010000"],["2024-07-24T12:28:27.010000"],["2024-07-24T12:28:28.010000"],["2024-07-24T12:28:29.010000"],["2024-07-24T12:28:30.010000"],["2024-07-24T12:28:31.010000"],["2024-07-24T12:28:32.010000"],["2024-07-24T12:28:33.010000"],["2024-07-24T12:28:34.010000"],["2024-07-24T12:28:35.010000"],["2024-07-24T12:28:36.010000"],["2024-07-24T12:28:37.010000"],["2024-07-24T12:28:38.010000"],["2024-07-24T12:28:39.010000"],["2024-07-24T12:28:40.010000"],["2024-07-24T12:28:41.010000"],["2024-07-24T12:28:42.010000"],["2024-07-24T12:28:43.010000"],["2024-07-24T12:28:44.010000"],["2024-07-24T12:28:45.010000"],["2024-07-24T12:28:46.010000"],["2024-07-24T12:28:47.010000"],["2024-07-24T12:28:48.010000"],["2024-07-24T12:28:49.010000"],["2024-07-24T12:28:50.010000"],["2024-07-24T12:28:51.010000"],["2024-07-24T12:28:52.010000"],["2024-07-24T12:28:53.010000"],["2024-07-24T12:28:54.010000"],["2024-07-24T12:28:55.010000"],["2024-07-24T12:28:56.010000"],["2024-07-24T12:28:57.010000"],["2024-07-24T12:28:58.010000"],["2024-07-24T12:28:59.010000"],["2024-07-24T12:29:00.010000"],["2024-07-24T12:29:01.010000"],["2024-07-24T12:29:02.010000"],["2024-07-24T12:29:03.010000"],["2024-07-24T12:29:04.010000"],["2024-07-24T12:29:05.010000"],["2024-07-24T12:29:06.010000"],["2024-07-24T12:29:07.010000"],["2024-07-24T12:29:08.010000"],["2024-07-24T12:29:09.010000"],["2024-07-24T12:29:10.010000"],["2024-07-24T12:29:11.010000"],["2024-07-24T12:29:12.010000"],["2024-07-24T12:29:13.010000"],["2024-07-24T12:29:14.010000"],["2024-07-24T12:29:15.010000"],["2024-07-24T12:29:16.010000"],["2024-07-24T12:29:17.010000"],["2024-07-24T12:29:18.010000"],["2024-07-24T12:29:19.010000"],["2024-07-24T12:29:20.010000"],["2024-07-24T12:29:21.010000"],["2024-07-24T12:29:22.010000"],["2024-07-24T12:29:23.010000"],["2024-07-24T12:29:24.010000"],["2024-07-24T12:29:25.010000"],["2024-07-24T12:29:26.010000"],["2024-07-24T12:29:27.010000"],["2024-07-24T12:29:28.010000"],["2024-07-24T12:29:29.010000"],["2024-07-24T12:29:30.010000"],["2024-07-24T12:29:31.010000"],["2024-07-24T12:29:32.010000"],["2024-07-24T12:29:33.010000"],["2024-07-24T12:29:34.010000"],["2024-07-24T12:29:35.010000"],["2024-07-24T12:29:36.010000"],["2024-07-24T12:29:37.010000"],["2024-07-24T12:29:38.010000"],["2024-07-24T12:29:39.010000"],["2024-07-24T12:29:40.010000"],["2024-07-24T12:29:41.010000"],["2024-07-24T12:29:42.010000"],["2024-07-24T12:29:43.010000"],["2024-07-24T12:29:44.010000"],["2024-07-24T12:29:45.010000"],["2024-07-24T12:29:46.010000"],["2024-07-24T12:29:47.010000"],["2024-07-24T12:29:48.010000"],["2024-07-24T12:29:49.010000"],["2024-07-24T12:29:50.010000"],["2024-07-24T12:29:51.010000"],["2024-07-24T12:29:52.010000"],["2024-07-24T12:29:53.010000"],["2024-07-24T12:29:54.010000"],["2024-07-24T12:29:55.010000"],["2024-07-24T12:29:56.010000"],["2024-07-24T12:29:57.010000"],["2024-07-24T12:29:58.010000"],["2024-07-24T12:29:59.010000"],["2024-07-24T12:30:00.010000"],["2024-07-24T12:30:01.010000"],["2024-07-24T12:30:02.010000"],["2024-07-24T12:30:03.010000"],["2024-07-24T12:30:04.010000"],["2024-07-24T12:30:05.010000"],["2024-07-24T12:30:06.010000"],["2024-07-24T12:30:07.010000"],["2024-07-24T12:30:08.010000"],["2024-07-24T12:30:09.010000"],["2024-07-24T12:30:10.010000"],["2024-07-24T12:30:11.010000"],["2024-07-24T12:30:12.010000"],["2024-07-24T12:30:13.010000"],["2024-07-24T12:30:14.010000"],["2024-07-24T12:30:15.010000"],["2024-07-24T12:30:16.010000"],["2024-07-24T12:30:17.010000"],["2024-07-24T12:30:18.010000"],["2024-07-24T12:30:19.010000"],["2024-07-24T12:30:20.010000"],["2024-07-24T12:30:21.010000"],["2024-07-24T12:30:22.010000"],["2024-07-24T12:30:23.010000"],["2024-07-24T12:30:24.010000"],["2024-07-24T12:30:25.010000"],["2024-07-24T12:30:26.010000"],["2024-07-24T12:30:27.010000"],["2024-07-24T12:30:28.010000"],["2024-07-24T12:30:29.010000"],["2024-07-24T12:30:30.010000"],["2024-07-24T12:30:31.010000"],["2024-07-24T12:30:32.010000"],["2024-07-24T12:30:33.010000"],["2024-07-24T12:30:34.010000"],["2024-07-24T12:30:35.010000"],["2024-07-24T12:30:36.010000"],["2024-07-24T12:30:37.010000"],["2024-07-24T12:30:38.010000"],["2024-07-24T12:30:39.010000"],["2024-07-24T12:30:40.010000"],["2024-07-24T12:30:41.010000"],["2024-07-24T12:30:42.010000"],["2024-07-24T12:30:43.010000"],["2024-07-24T12:30:44.010000"],["2024-07-24T12:30:45.010000"],["2024-07-24T12:30:46.010000"],["2024-07-24T12:30:47.010000"],["2024-07-24T12:30:48.010000"],["2024-07-24T12:30:49.010000"],["2024-07-24T12:30:50.010000"],["2024-07-24T12:30:51.010000"],["2024-07-24T12:30:52.010000"],["2024-07-24T12:30:53.010000"],["2024-07-24T12:30:54.010000"],["2024-07-24T12:30:55.010000"],["2024-07-24T12:30:56.010000"],["2024-07-24T12:30:57.010000"],["2024-07-24T12:30:58.010000"],["2024-07-24T12:30:59.010000"],["2024-07-24T12:31:00.010000"],["2024-07-24T12:31:01.010000"],["2024-07-24T12:31:02.010000"],["2024-07-24T12:31:03.010000"],["2024-07-24T12:31:04.010000"],["2024-07-24T12:31:05.010000"],["2024-07-24T12:31:06.010000"],["2024-07-24T12:31:07.010000"],["2024-07-24T12:31:08.010000"],["2024-07-24T12:31:09.010000"],["2024-07-24T12:31:10.010000"],["2024-07-24T12:31:11.010000"],["2024-07-24T12:31:12.010000"],["2024-07-24T12:31:13.010000"],["2024-07-24T12:31:14.010000"],["2024-07-24T12:31:15.010000"],["2024-07-24T12:31:16.010000"],["2024-07-24T12:31:17.010000"],["2024-07-24T12:31:18.010000"],["2024-07-24T12:31:19.010000"],["2024-07-24T12:31:20.010000"],["2024-07-24T12:31:21.010000"],["2024-07-24T12:31:22.010000"],["2024-07-24T12:31:23.010000"],["2024-07-24T12:31:24.010000"],["2024-07-24T12:31:25.010000"],["2024-07-24T12:31:26.010000"],["2024-07-24T12:31:27.010000"],["2024-07-24T12:31:28.010000"],["2024-07-24T12:31:29.010000"],["2024-07-24T12:31:30.010000"],["2024-07-24T12:31:31.010000"],["2024-07-24T12:31:32.010000"],["2024-07-24T12:31:33.010000"],["2024-07-24T12:31:34.010000"],["2024-07-24T12:31:35.010000"],["2024-07-24T12:31:36.010000"],["2024-07-24T12:31:37.010000"],["2024-07-24T12:31:38.010000"],["2024-07-24T12:31:39.010000"],["2024-07-24T12:31:40.010000"],["2024-07-24T12:31:41.010000"],["2024-07-24T12:31:42.010000"],["2024-07-24T12:31:43.010000"],["2024-07-24T12:31:44.010000"],["2024-07-24T12:31:45.010000"],["2024-07-24T12:31:46.010000"],["2024-07-24T12:31:47.010000"],["2024-07-24T12:31:48.010000"],["2024-07-24T12:31:49.010000"],["2024-07-24T12:31:50.010000"],["2024-07-24T12:31:51.010000"],["2024-07-24T12:31:52.010000"],["2024-07-24T12:31:53.010000"],["2024-07-24T12:31:54.010000"],["2024-07-24T12:31:55.010000"],["2024-07-24T12:31:56.010000"],["2024-07-24T12:31:57.010000"],["2024-07-24T12:31:58.010000"],["2024-07-24T12:31:59.010000"],["2024-07-24T12:32:00.010000"],["2024-07-24T12:32:01.010000"],["2024-07-24T12:32:02.010000"],["2024-07-24T12:32:03.010000"],["2024-07-24T12:32:04.010000"],["2024-07-24T12:32:05.010000"],["2024-07-24T12:32:06.010000"],["2024-07-24T12:32:07.010000"],["2024-07-24T12:32:08.010000"],["2024-07-24T12:32:09.010000"],["2024-07-24T12:32:10.010000"],["2024-07-24T12:32:11.010000"],["2024-07-24T12:32:12.010000"],["2024-07-24T12:32:13.010000"],["2024-07-24T12:32:14.010000"],["2024-07-24T12:32:15.010000"],["2024-07-24T12:32:16.010000"],["2024-07-24T12:32:17.010000"],["2024-07-24T12:32:18.010000"],["2024-07-24T12:32:19.010000"],["2024-07-24T12:32:20.010000"],["2024-07-24T12:32:21.010000"],["2024-07-24T12:32:22.010000"],["2024-07-24T12:32:23.010000"],["2024-07-24T12:32:24.010000"],["2024-07-24T12:32:25.010000"],["2024-07-24T12:32:26.010000"],["2024-07-24T12:32:27.010000"],["2024-07-24T12:32:28.010000"],["2024-07-24T12:32:29.010000"],["2024-07-24T12:32:30.010000"],["2024-07-24T12:32:31.010000"],["2024-07-24T12:32:32.010000"],["2024-07-24T12:32:33.010000"],["2024-07-24T12:32:34.010000"],["2024-07-24T12:32:35.010000"],["2024-07-24T12:32:36.010000"],["2024-07-24T12:32:37.010000"],["2024-07-24T12:32:38.010000"],["2024-07-24T12:32:39.010000"],["2024-07-24T12:32:40.010000"],["2024-07-24T12:32:41.010000"],["2024-07-24T12:32:42.010000"],["2024-07-24T12:32:43.010000"],["2024-07-24T12:32:44.010000"],["2024-07-24T12:32:45.010000"],["2024-07-24T12:32:46.010000"],["2024-07-24T12:32:47.010000"],["2024-07-24T12:32:48.010000"],["2024-07-24T12:32:49.010000"],["2024-07-24T12:32:50.010000"],["2024-07-24T12:32:51.010000"],["2024-07-24T12:32:52.010000"],["2024-07-24T12:32:53.010000"],["2024-07-24T12:32:54.010000"],["2024-07-24T12:32:55.010000"],["2024-07-24T12:32:56.010000"],["2024-07-24T12:32:57.010000"],["2024-07-24T12:32:58.010000"],["2024-07-24T12:32:59.010000"],["2024-07-24T12:33:00.010000"],["2024-07-24T12:33:01.010000"],["2024-07-24T12:33:02.010000"],["2024-07-24T12:33:03.010000"],["2024-07-24T12:33:04.010000"],["2024-07-24T12:33:05.010000"],["2024-07-24T12:33:06.010000"],["2024-07-24T12:33:07.010000"],["2024-07-24T12:33:08.010000"],["2024-07-24T12:33:09.010000"],["2024-07-24T12:33:10.010000"],["2024-07-24T12:33:11.010000"],["2024-07-24T12:33:12.010000"],["2024-07-24T12:33:13.010000"],["2024-07-24T12:33:14.010000"],["2024-07-24T12:33:15.010000"],["2024-07-24T12:33:16.010000"],["2024-07-24T12:33:17.010000"],["2024-07-24T12:33:18.010000"],["2024-07-24T12:33:19.010000"],["2024-07-24T12:33:20.010000"],["2024-07-24T12:33:21.010000"],["2024-07-24T12:33:22.010000"],["2024-07-24T12:33:23.010000"],["2024-07-24T12:33:24.010000"],["2024-07-24T12:33:25.010000"],["2024-07-24T12:33:26.010000"],["2024-07-24T12:33:27.010000"],["2024-07-24T12:33:28.010000"],["2024-07-24T12:33:29.010000"],["2024-07-24T12:33:30.010000"],["2024-07-24T12:33:31.010000"],["2024-07-24T12:33:32.010000"],["2024-07-24T12:33:33.010000"],["2024-07-24T12:33:34.010000"],["2024-07-24T12:33:35.010000"],["2024-07-24T12:33:36.010000"],["2024-07-24T12:33:37.010000"],["2024-07-24T12:33:38.010000"],["2024-07-24T12:33:39.010000"],["2024-07-24T12:33:40.010000"],["2024-07-24T12:33:41.010000"],["2024-07-24T12:33:42.010000"],["2024-07-24T12:33:43.010000"],["2024-07-24T12:33:44.010000"],["2024-07-24T12:33:45.010000"],["2024-07-24T12:33:46.010000"],["2024-07-24T12:33:47.010000"],["2024-07-24T12:33:48.010000"],["2024-07-24T12:33:49.010000"],["2024-07-24T12:33:50.010000"],["2024-07-24T12:33:51.010000"],["2024-07-24T12:33:52.010000"],["2024-07-24T12:33:53.010000"],["2024-07-24T12:33:54.010000"],["2024-07-24T12:33:55.010000"],["2024-07-24T12:33:56.010000"],["2024-07-24T12:33:57.010000"],["2024-07-24T12:33:58.010000"],["2024-07-24T12:33:59.010000"],["2024-07-24T12:34:00.010000"],["2024-07-24T12:34:01.010000"],["2024-07-24T12:34:02.010000"],["2024-07-24T12:34:03.010000"],["2024-07-24T12:34:04.010000"],["2024-07-24T12:34:05.010000"],["2024-07-24T12:34:06.010000"],["2024-07-24T12:34:07.010000"],["2024-07-24T12:34:08.010000"],["2024-07-24T12:34:09.010000"],["2024-07-24T12:34:10.010000"],["2024-07-24T12:34:11.010000"],["2024-07-24T12:34:12.010000"],["2024-07-24T12:34:13.010000"],["2024-07-24T12:34:14.010000"],["2024-07-24T12:34:15.010000"],["2024-07-24T12:34:16.010000"],["2024-07-24T12:34:17.010000"],["2024-07-24T12:34:18.010000"],["2024-07-24T12:34:19.010000"],["2024-07-24T12:34:20.010000"],["2024-07-24T12:34:21.010000"],["2024-07-24T12:34:22.010000"],["2024-07-24T12:34:23.010000"],["2024-07-24T12:34:24.010000"],["2024-07-24T12:34:25.010000"],["2024-07-24T12:34:26.010000"],["2024-07-24T12:34:27.010000"],["2024-07-24T12:34:28.010000"],["2024-07-24T12:34:29.010000"],["2024-07-24T12:34:30.010000"],["2024-07-24T12:34:31.010000"],["2024-07-24T12:34:32.010000"],["2024-07-24T12:34:33.010000"],["2024-07-24T12:34:34.010000"],["2024-07-24T12:34:35.010000"],["2024-07-24T12:34:36.010000"],["2024-07-24T12:34:37.010000"],["2024-07-24T12:34:38.010000"],["2024-07-24T12:34:39.010000"],["2024-07-24T12:34:40.010000"],["2024-07-24T12:34:41.010000"],["2024-07-24T12:34:42.010000"],["2024-07-24T12:34:43.010000"],["2024-07-24T12:34:44.010000"],["2024-07-24T12:34:45.010000"],["2024-07-24T12:34:46.010000"],["2024-07-24T12:34:47.010000"],["2024-07-24T12:34:48.010000"],["2024-07-24T12:34:49.010000"],["2024-07-24T12:34:50.010000"],["2024-07-24T12:34:51.010000"],["2024-07-24T12:34:52.010000"],["2024-07-24T12:34:53.010000"],["2024-07-24T12:34:54.010000"],["2024-07-24T12:34:55.010000"],["2024-07-24T12:34:56.010000"],["2024-07-24T12:34:57.010000"],["2024-07-24T12:34:58.010000"],["2024-07-24T12:34:59.010000"],["2024-07-24T12:35:00.010000"],["2024-07-24T12:35:01.010000"],["2024-07-24T12:35:02.010000"],["2024-07-24T12:35:03.010000"],["2024-07-24T12:35:04.010000"],["2024-07-24T12:35:05.010000"],["2024-07-24T12:35:06.010000"],["2024-07-24T12:35:07.010000"],["2024-07-24T12:35:08.010000"],["2024-07-24T12:35:09.010000"],["2024-07-24T12:35:10.010000"],["2024-07-24T12:35:11.010000"],["2024-07-24T12:35:12.010000"],["2024-07-24T12:35:13.010000"],["2024-07-24T12:35:14.010000"],["2024-07-24T12:35:15.010000"],["2024-07-24T12:35:16.010000"],["2024-07-24T12:35:17.010000"],["2024-07-24T12:35:18.010000"],["2024-07-24T12:35:19.010000"],["2024-07-24T12:35:20.010000"],["2024-07-24T12:35:21.010000"],["2024-07-24T12:35:22.010000"],["2024-07-24T12:35:23.010000"],["2024-07-24T12:35:24.010000"],["2024-07-24T12:35:25.010000"],["2024-07-24T12:35:26.010000"],["2024-07-24T12:35:27.010000"],["2024-07-24T12:35:28.010000"],["2024-07-24T12:35:29.010000"],["2024-07-24T12:35:30.010000"],["2024-07-24T12:35:31.010000"],["2024-07-24T12:35:32.010000"],["2024-07-24T12:35:33.010000"],["2024-07-24T12:35:34.010000"],["2024-07-24T12:35:35.010000"],["2024-07-24T12:35:36.010000"],["2024-07-24T12:35:37.010000"],["2024-07-24T12:35:38.010000"],["2024-07-24T12:35:39.010000"],["2024-07-24T12:35:40.010000"],["2024-07-24T12:35:41.010000"],["2024-07-24T12:35:42.010000"],["2024-07-24T12:35:43.010000"],["2024-07-24T12:35:44.010000"],["2024-07-24T12:35:45.010000"],["2024-07-24T12:35:46.010000"],["2024-07-24T12:35:47.010000"],["2024-07-24T12:35:48.010000"],["2024-07-24T12:35:49.010000"],["2024-07-24T12:35:50.010000"],["2024-07-24T12:35:51.010000"],["2024-07-24T12:35:52.010000"],["2024-07-24T12:35:53.010000"],["2024-07-24T12:35:54.010000"],["2024-07-24T12:35:55.010000"],["2024-07-24T12:35:56.010000"],["2024-07-24T12:35:57.010000"],["2024-07-24T12:35:58.010000"],["2024-07-24T12:35:59.010000"],["2024-07-24T12:36:00.010000"],["2024-07-24T12:36:01.010000"],["2024-07-24T12:36:02.010000"],["2024-07-24T12:36:03.010000"],["2024-07-24T12:36:04.010000"],["2024-07-24T12:36:05.010000"],["2024-07-24T12:36:06.010000"],["2024-07-24T12:36:07.010000"],["2024-07-24T12:36:08.010000"],["2024-07-24T12:36:09.010000"],["2024-07-24T12:36:10.010000"],["2024-07-24T12:36:11.010000"],["2024-07-24T12:36:12.010000"],["2024-07-24T12:36:13.010000"],["2024-07-24T12:36:14.010000"],["2024-07-24T12:36:15.010000"],["2024-07-24T12:36:16.010000"],["2024-07-24T12:36:17.010000"],["2024-07-24T12:36:18.010000"],["2024-07-24T12:36:19.010000"],["2024-07-24T12:36:20.010000"],["2024-07-24T12:36:21.010000"],["2024-07-24T12:36:22.010000"],["2024-07-24T12:36:23.010000"],["2024-07-24T12:36:24.010000"],["2024-07-24T12:36:25.010000"],["2024-07-24T12:36:26.010000"],["2024-07-24T12:36:27.010000"],["2024-07-24T12:36:28.010000"],["2024-07-24T12:36:29.010000"],["2024-07-24T12:36:30.010000"],["2024-07-24T12:36:31.010000"],["2024-07-24T12:36:32.010000"],["2024-07-24T12:36:33.010000"],["2024-07-24T12:36:34.010000"],["2024-07-24T12:36:35.010000"],["2024-07-24T12:36:36.010000"],["2024-07-24T12:36:37.010000"],["2024-07-24T12:36:38.010000"],["2024-07-24T12:36:39.010000"],["2024-07-24T12:36:40.010000"],["2024-07-24T12:36:41.010000"],["2024-07-24T12:36:42.010000"],["2024-07-24T12:36:43.010000"],["2024-07-24T12:36:44.010000"],["2024-07-24T12:36:45.010000"],["2024-07-24T12:36:46.010000"],["2024-07-24T12:36:47.010000"],["2024-07-24T12:36:48.010000"],["2024-07-24T12:36:49.010000"],["2024-07-24T12:36:50.010000"],["2024-07-24T12:36:51.010000"],["2024-07-24T12:36:52.010000"],["2024-07-24T12:36:53.010000"],["2024-07-24T12:36:54.010000"],["2024-07-24T12:36:55.010000"],["2024-07-24T12:36:56.010000"],["2024-07-24T12:36:57.010000"],["2024-07-24T12:36:58.010000"],["2024-07-24T12:36:59.010000"],["2024-07-24T12:37:00.010000"],["2024-07-24T12:37:01.010000"],["2024-07-24T12:37:02.010000"],["2024-07-24T12:37:03.010000"],["2024-07-24T12:37:04.010000"],["2024-07-24T12:37:05.010000"],["2024-07-24T12:37:06.010000"],["2024-07-24T12:37:07.010000"],["2024-07-24T12:37:08.010000"],["2024-07-24T12:37:09.010000"],["2024-07-24T12:37:10.010000"],["2024-07-24T12:37:11.010000"],["2024-07-24T12:37:12.010000"],["2024-07-24T12:37:13.010000"],["2024-07-24T12:37:14.010000"],["2024-07-24T12:37:15.010000"],["2024-07-24T12:37:16.010000"],["2024-07-24T12:37:17.010000"],["2024-07-24T12:37:18.010000"],["2024-07-24T12:37:19.010000"],["2024-07-24T12:37:20.010000"],["2024-07-24T12:37:21.010000"],["2024-07-24T12:37:22.010000"],["2024-07-24T12:37:23.010000"],["2024-07-24T12:37:24.010000"],["2024-07-24T12:37:25.010000"],["2024-07-24T12:37:26.010000"],["2024-07-24T12:37:27.010000"],["2024-07-24T12:37:28.010000"],["2024-07-24T12:37:29.010000"],["2024-07-24T12:37:30.010000"],["2024-07-24T12:37:31.010000"],["2024-07-24T12:37:32.010000"],["2024-07-24T12:37:33.010000"],["2024-07-24T12:37:34.010000"],["2024-07-24T12:37:35.010000"],["2024-07-24T12:37:36.010000"],["2024-07-24T12:37:37.010000"],["2024-07-24T12:37:38.010000"],["2024-07-24T12:37:39.010000"],["2024-07-24T12:37:40.010000"],["2024-07-24T12:37:41.010000"],["2024-07-24T12:37:42.010000"],["2024-07-24T12:37:43.010000"],["2024-07-24T12:37:44.010000"],["2024-07-24T12:37:45.010000"],["2024-07-24T12:37:46.010000"],["2024-07-24T12:37:47.010000"],["2024-07-24T12:37:48.010000"],["2024-07-24T12:37:49.010000"],["2024-07-24T12:37:50.010000"],["2024-07-24T12:37:51.010000"],["2024-07-24T12:37:52.010000"],["2024-07-24T12:37:53.010000"],["2024-07-24T12:37:54.010000"],["2024-07-24T12:37:55.010000"],["2024-07-24T12:37:56.010000"],["2024-07-24T12:37:57.010000"],["2024-07-24T12:37:58.010000"],["2024-07-24T12:37:59.010000"],["2024-07-24T12:38:00.010000"],["2024-07-24T12:38:01.010000"],["2024-07-24T12:38:02.010000"],["2024-07-24T12:38:03.010000"],["2024-07-24T12:38:04.010000"],["2024-07-24T12:38:05.010000"],["2024-07-24T12:38:06.010000"],["2024-07-24T12:38:07.010000"],["2024-07-24T12:38:08.010000"],["2024-07-24T12:38:09.010000"],["2024-07-24T12:38:10.010000"],["2024-07-24T12:38:11.010000"],["2024-07-24T12:38:12.010000"],["2024-07-24T12:38:13.010000"],["2024-07-24T12:38:14.010000"],["2024-07-24T12:38:15.010000"],["2024-07-24T12:38:16.010000"],["2024-07-24T12:38:17.010000"],["2024-07-24T12:38:18.010000"],["2024-07-24T12:38:19.010000"],["2024-07-24T12:38:20.010000"],["2024-07-24T12:38:21.010000"],["2024-07-24T12:38:22.010000"],["2024-07-24T12:38:23.010000"],["2024-07-24T12:38:24.010000"],["2024-07-24T12:38:25.010000"],["2024-07-24T12:38:26.010000"],["2024-07-24T12:38:27.010000"],["2024-07-24T12:38:28.010000"],["2024-07-24T12:38:29.010000"],["2024-07-24T12:38:30.010000"],["2024-07-24T12:38:31.010000"],["2024-07-24T12:38:32.010000"],["2024-07-24T12:38:33.010000"],["2024-07-24T12:38:34.010000"],["2024-07-24T12:38:35.010000"],["2024-07-24T12:38:36.010000"],["2024-07-24T12:38:37.010000"],["2024-07-24T12:38:38.010000"],["2024-07-24T12:38:39.010000"],["2024-07-24T12:38:40.010000"],["2024-07-24T12:38:41.010000"],["2024-07-24T12:38:42.010000"],["2024-07-24T12:38:43.010000"],["2024-07-24T12:38:44.010000"],["2024-07-24T12:38:45.010000"],["2024-07-24T12:38:46.010000"],["2024-07-24T12:38:47.010000"],["2024-07-24T12:38:48.010000"],["2024-07-24T12:38:49.010000"],["2024-07-24T12:38:50.010000"],["2024-07-24T12:38:51.010000"],["2024-07-24T12:38:52.010000"],["2024-07-24T12:38:53.010000"],["2024-07-24T12:38:54.010000"],["2024-07-24T12:38:55.010000"],["2024-07-24T12:38:56.010000"],["2024-07-24T12:38:57.010000"],["2024-07-24T12:38:58.010000"],["2024-07-24T12:38:59.010000"],["2024-07-24T12:39:00.010000"],["2024-07-24T12:39:01.010000"],["2024-07-24T12:39:02.010000"],["2024-07-24T12:39:03.010000"],["2024-07-24T12:39:04.010000"],["2024-07-24T12:39:05.010000"],["2024-07-24T12:39:06.010000"],["2024-07-24T12:39:07.010000"],["2024-07-24T12:39:08.010000"],["2024-07-24T12:39:09.010000"],["2024-07-24T12:39:10.010000"],["2024-07-24T12:39:11.010000"],["2024-07-24T12:39:12.010000"],["2024-07-24T12:39:13.010000"],["2024-07-24T12:39:14.010000"],["2024-07-24T12:39:15.010000"],["2024-07-24T12:39:16.010000"],["2024-07-24T12:39:17.010000"],["2024-07-24T12:39:18.010000"],["2024-07-24T12:39:19.010000"],["2024-07-24T12:39:20.010000"],["2024-07-24T12:39:21.010000"],["2024-07-24T12:39:22.010000"],["2024-07-24T12:39:23.010000"],["2024-07-24T12:39:24.010000"],["2024-07-24T12:39:25.010000"],["2024-07-24T12:39:26.010000"],["2024-07-24T12:39:27.010000"],["2024-07-24T12:39:28.010000"],["2024-07-24T12:39:29.010000"],["2024-07-24T12:39:30.010000"],["2024-07-24T12:39:31.010000"],["2024-07-24T12:39:32.010000"],["2024-07-24T12:39:33.010000"],["2024-07-24T12:39:34.010000"],["2024-07-24T12:39:35.010000"],["2024-07-24T12:39:36.010000"],["2024-07-24T12:39:37.010000"],["2024-07-24T12:39:38.010000"],["2024-07-24T12:39:39.010000"],["2024-07-24T12:39:40.010000"],["2024-07-24T12:39:41.010000"],["2024-07-24T12:39:42.010000"],["2024-07-24T12:39:43.010000"],["2024-07-24T12:39:44.010000"],["2024-07-24T12:39:45.010000"],["2024-07-24T12:39:46.010000"],["2024-07-24T12:39:47.010000"],["2024-07-24T12:39:48.010000"],["2024-07-24T12:39:49.010000"],["2024-07-24T12:39:50.010000"],["2024-07-24T12:39:51.010000"],["2024-07-24T12:39:52.010000"],["2024-07-24T12:39:53.010000"],["2024-07-24T12:39:54.010000"],["2024-07-24T12:39:55.010000"],["2024-07-24T12:39:56.010000"],["2024-07-24T12:39:57.010000"],["2024-07-24T12:39:58.010000"],["2024-07-24T12:39:59.010000"],["2024-07-24T12:40:00.010000"],["2024-07-24T12:40:01.010000"],["2024-07-24T12:40:02.010000"],["2024-07-24T12:40:03.010000"],["2024-07-24T12:40:04.010000"],["2024-07-24T12:40:05.010000"],["2024-07-24T12:40:06.010000"],["2024-07-24T12:40:07.010000"],["2024-07-24T12:40:08.010000"],["2024-07-24T12:40:09.010000"],["2024-07-24T12:40:10.010000"],["2024-07-24T12:40:11.010000"],["2024-07-24T12:40:12.010000"],["2024-07-24T12:40:13.010000"],["2024-07-24T12:40:14.010000"],["2024-07-24T12:40:15.010000"],["2024-07-24T12:40:16.010000"],["2024-07-24T12:40:17.010000"],["2024-07-24T12:40:18.010000"],["2024-07-24T12:40:19.010000"],["2024-07-24T12:40:20.010000"],["2024-07-24T12:40:21.010000"],["2024-07-24T12:40:22.010000"],["2024-07-24T12:40:23.010000"],["2024-07-24T12:40:24.010000"],["2024-07-24T12:40:25.010000"],["2024-07-24T12:40:26.010000"],["2024-07-24T12:40:27.010000"],["2024-07-24T12:40:28.010000"],["2024-07-24T12:40:29.010000"],["2024-07-24T12:40:30.010000"],["2024-07-24T12:40:31.010000"],["2024-07-24T12:40:32.010000"],["2024-07-24T12:40:33.010000"],["2024-07-24T12:40:34.010000"],["2024-07-24T12:40:35.010000"],["2024-07-24T12:40:36.010000"],["2024-07-24T12:40:37.010000"],["2024-07-24T12:40:38.010000"],["2024-07-24T12:40:39.010000"],["2024-07-24T12:40:40.010000"],["2024-07-24T12:40:41.010000"],["2024-07-24T12:40:42.010000"],["2024-07-24T12:40:43.010000"],["2024-07-24T12:40:44.010000"],["2024-07-24T12:40:45.010000"],["2024-07-24T12:40:46.010000"],["2024-07-24T12:40:47.010000"],["2024-07-24T12:40:48.010000"],["2024-07-24T12:40:49.010000"],["2024-07-24T12:40:50.010000"],["2024-07-24T12:40:51.010000"],["2024-07-24T12:40:52.010000"],["2024-07-24T12:40:53.010000"],["2024-07-24T12:40:54.010000"],["2024-07-24T12:40:55.010000"],["2024-07-24T12:40:56.010000"],["2024-07-24T12:40:57.010000"],["2024-07-24T12:40:58.010000"],["2024-07-24T12:40:59.010000"],["2024-07-24T12:41:00.010000"],["2024-07-24T12:41:01.010000"],["2024-07-24T12:41:02.010000"],["2024-07-24T12:41:03.010000"],["2024-07-24T12:41:04.010000"],["2024-07-24T12:41:05.010000"],["2024-07-24T12:41:06.010000"],["2024-07-24T12:41:07.010000"],["2024-07-24T12:41:08.010000"],["2024-07-24T12:41:09.010000"],["2024-07-24T12:41:10.010000"],["2024-07-24T12:41:11.010000"],["2024-07-24T12:41:12.010000"],["2024-07-24T12:41:13.010000"],["2024-07-24T12:41:14.010000"],["2024-07-24T12:41:15.010000"],["2024-07-24T12:41:16.010000"],["2024-07-24T12:41:17.010000"],["2024-07-24T12:41:18.010000"],["2024-07-24T12:41:19.010000"],["2024-07-24T12:41:20.010000"],["2024-07-24T12:41:21.010000"],["2024-07-24T12:41:22.010000"],["2024-07-24T12:41:23.010000"],["2024-07-24T12:41:24.010000"],["2024-07-24T12:41:25.010000"],["2024-07-24T12:41:26.010000"],["2024-07-24T12:41:27.010000"],["2024-07-24T12:41:28.010000"],["2024-07-24T12:41:29.010000"],["2024-07-24T12:41:30.010000"],["2024-07-24T12:41:31.010000"],["2024-07-24T12:41:32.010000"],["2024-07-24T12:41:33.010000"],["2024-07-24T12:41:34.010000"],["2024-07-24T12:41:35.010000"],["2024-07-24T12:41:36.010000"],["2024-07-24T12:41:37.010000"],["2024-07-24T12:41:38.010000"],["2024-07-24T12:41:39.010000"],["2024-07-24T12:41:40.010000"],["2024-07-24T12:41:41.010000"],["2024-07-24T12:41:42.010000"],["2024-07-24T12:41:43.010000"],["2024-07-24T12:41:44.010000"],["2024-07-24T12:41:45.010000"],["2024-07-24T12:41:46.010000"],["2024-07-24T12:41:47.010000"],["2024-07-24T12:41:48.010000"],["2024-07-24T12:41:49.010000"],["2024-07-24T12:41:50.010000"],["2024-07-24T12:41:51.010000"],["2024-07-24T12:41:52.010000"],["2024-07-24T12:41:53.010000"],["2024-07-24T12:41:54.010000"],["2024-07-24T12:41:55.010000"],["2024-07-24T12:41:56.010000"],["2024-07-24T12:41:57.010000"],["2024-07-24T12:41:58.010000"],["2024-07-24T12:41:59.010000"],["2024-07-24T12:42:00.010000"],["2024-07-24T12:42:01.010000"],["2024-07-24T12:42:02.010000"],["2024-07-24T12:42:03.010000"],["2024-07-24T12:42:04.010000"],["2024-07-24T12:42:05.010000"],["2024-07-24T12:42:06.010000"],["2024-07-24T12:42:07.010000"],["2024-07-24T12:42:08.010000"],["2024-07-24T12:42:09.010000"],["2024-07-24T12:42:10.010000"],["2024-07-24T12:42:11.010000"],["2024-07-24T12:42:12.010000"],["2024-07-24T12:42:13.010000"],["2024-07-24T12:42:14.010000"],["2024-07-24T12:42:15.010000"],["2024-07-24T12:42:16.010000"],["2024-07-24T12:42:17.010000"],["2024-07-24T12:42:18.010000"],["2024-07-24T12:42:19.010000"],["2024-07-24T12:42:20.010000"],["2024-07-24T12:42:21.010000"],["2024-07-24T12:42:22.010000"],["2024-07-24T12:42:23.010000"],["2024-07-24T12:42:24.010000"],["2024-07-24T12:42:25.010000"],["2024-07-24T12:42:26.010000"],["2024-07-24T12:42:27.010000"],["2024-07-24T12:42:28.010000"],["2024-07-24T12:42:29.010000"],["2024-07-24T12:42:30.010000"],["2024-07-24T12:42:31.010000"],["2024-07-24T12:42:32.010000"],["2024-07-24T12:42:33.010000"],["2024-07-24T12:42:34.010000"],["2024-07-24T12:42:35.010000"],["2024-07-24T12:42:36.010000"],["2024-07-24T12:42:37.010000"],["2024-07-24T12:42:38.010000"],["2024-07-24T12:42:39.010000"],["2024-07-24T12:42:40.010000"],["2024-07-24T12:42:41.010000"],["2024-07-24T12:42:42.010000"],["2024-07-24T12:42:43.010000"],["2024-07-24T12:42:44.010000"],["2024-07-24T12:42:45.010000"],["2024-07-24T12:42:46.010000"],["2024-07-24T12:42:47.010000"],["2024-07-24T12:42:48.010000"],["2024-07-24T12:42:49.010000"],["2024-07-24T12:42:50.010000"],["2024-07-24T12:42:51.010000"],["2024-07-24T12:42:52.010000"],["2024-07-24T12:42:53.010000"],["2024-07-24T12:42:54.010000"],["2024-07-24T12:42:55.010000"],["2024-07-24T12:42:56.010000"],["2024-07-24T12:42:57.010000"],["2024-07-24T12:42:58.010000"],["2024-07-24T12:42:59.010000"],["2024-07-24T12:43:00.010000"],["2024-07-24T12:43:01.010000"],["2024-07-24T12:43:02.010000"],["2024-07-24T12:43:03.010000"],["2024-07-24T12:43:04.010000"],["2024-07-24T12:43:05.010000"],["2024-07-24T12:43:06.010000"],["2024-07-24T12:43:07.010000"],["2024-07-24T12:43:08.010000"],["2024-07-24T12:43:09.010000"],["2024-07-24T12:43:10.010000"],["2024-07-24T12:43:11.010000"],["2024-07-24T12:43:12.010000"],["2024-07-24T12:43:13.010000"],["2024-07-24T12:43:14.010000"],["2024-07-24T12:43:15.010000"],["2024-07-24T12:43:16.010000"],["2024-07-24T12:43:17.010000"],["2024-07-24T12:43:18.010000"],["2024-07-24T12:43:19.010000"],["2024-07-24T12:43:20.010000"],["2024-07-24T12:43:21.010000"],["2024-07-24T12:43:22.010000"],["2024-07-24T12:43:23.010000"],["2024-07-24T12:43:24.010000"],["2024-07-24T12:43:25.010000"],["2024-07-24T12:43:26.010000"],["2024-07-24T12:43:27.010000"],["2024-07-24T12:43:28.010000"],["2024-07-24T12:43:29.010000"],["2024-07-24T12:43:30.010000"],["2024-07-24T12:43:31.010000"],["2024-07-24T12:43:32.010000"],["2024-07-24T12:43:33.010000"],["2024-07-24T12:43:34.010000"],["2024-07-24T12:43:35.010000"],["2024-07-24T12:43:36.010000"],["2024-07-24T12:43:37.010000"],["2024-07-24T12:43:38.010000"],["2024-07-24T12:43:39.010000"],["2024-07-24T12:43:40.010000"],["2024-07-24T12:43:41.010000"],["2024-07-24T12:43:42.010000"],["2024-07-24T12:43:43.010000"],["2024-07-24T12:43:44.010000"],["2024-07-24T12:43:45.010000"],["2024-07-24T12:43:46.010000"],["2024-07-24T12:43:47.010000"],["2024-07-24T12:43:48.010000"],["2024-07-24T12:43:49.010000"],["2024-07-24T12:43:50.010000"],["2024-07-24T12:43:51.010000"],["2024-07-24T12:43:52.010000"],["2024-07-24T12:43:53.010000"],["2024-07-24T12:43:54.010000"],["2024-07-24T12:43:55.010000"],["2024-07-24T12:43:56.010000"],["2024-07-24T12:43:57.010000"],["2024-07-24T12:43:58.010000"],["2024-07-24T12:43:59.010000"],["2024-07-24T12:44:00.010000"],["2024-07-24T12:44:01.010000"],["2024-07-24T12:44:02.010000"],["2024-07-24T12:44:03.010000"],["2024-07-24T12:44:04.010000"],["2024-07-24T12:44:05.010000"],["2024-07-24T12:44:06.010000"],["2024-07-24T12:44:07.010000"],["2024-07-24T12:44:08.010000"],["2024-07-24T12:44:09.010000"],["2024-07-24T12:44:10.010000"],["2024-07-24T12:44:11.010000"],["2024-07-24T12:44:12.010000"],["2024-07-24T12:44:13.010000"],["2024-07-24T12:44:14.010000"],["2024-07-24T12:44:15.010000"],["2024-07-24T12:44:16.010000"],["2024-07-24T12:44:17.010000"],["2024-07-24T12:44:18.010000"],["2024-07-24T12:44:19.010000"],["2024-07-24T12:44:20.010000"],["2024-07-24T12:44:21.010000"],["2024-07-24T12:44:22.010000"],["2024-07-24T12:44:23.010000"],["2024-07-24T12:44:24.010000"],["2024-07-24T12:44:25.010000"],["2024-07-24T12:44:26.010000"],["2024-07-24T12:44:27.010000"],["2024-07-24T12:44:28.010000"],["2024-07-24T12:44:29.010000"],["2024-07-24T12:44:30.010000"],["2024-07-24T12:44:31.010000"],["2024-07-24T12:44:32.010000"],["2024-07-24T12:44:33.010000"],["2024-07-24T12:44:34.010000"],["2024-07-24T12:44:35.010000"],["2024-07-24T12:44:36.010000"],["2024-07-24T12:44:37.010000"],["2024-07-24T12:44:38.010000"],["2024-07-24T12:44:39.010000"],["2024-07-24T12:44:40.010000"],["2024-07-24T12:44:41.010000"],["2024-07-24T12:44:42.010000"],["2024-07-24T12:44:43.010000"],["2024-07-24T12:44:44.010000"],["2024-07-24T12:44:45.010000"],["2024-07-24T12:44:46.010000"],["2024-07-24T12:44:47.010000"],["2024-07-24T12:44:48.010000"],["2024-07-24T12:44:49.010000"],["2024-07-24T12:44:50.010000"],["2024-07-24T12:44:51.010000"],["2024-07-24T12:44:52.010000"],["2024-07-24T12:44:53.010000"],["2024-07-24T12:44:54.010000"],["2024-07-24T12:44:55.010000"],["2024-07-24T12:44:56.010000"],["2024-07-24T12:44:57.010000"],["2024-07-24T12:44:58.010000"],["2024-07-24T12:44:59.010000"],["2024-07-24T12:45:00.010000"],["2024-07-24T12:45:01.010000"],["2024-07-24T12:45:02.010000"],["2024-07-24T12:45:03.010000"],["2024-07-24T12:45:04.010000"],["2024-07-24T12:45:05.010000"],["2024-07-24T12:45:06.010000"],["2024-07-24T12:45:07.010000"],["2024-07-24T12:45:08.010000"],["2024-07-24T12:45:09.010000"],["2024-07-24T12:45:10.010000"],["2024-07-24T12:45:11.010000"],["2024-07-24T12:45:12.010000"],["2024-07-24T12:45:13.010000"],["2024-07-24T12:45:14.010000"],["2024-07-24T12:45:15.010000"],["2024-07-24T12:45:16.010000"],["2024-07-24T12:45:17.010000"],["2024-07-24T12:45:18.010000"],["2024-07-24T12:45:19.010000"],["2024-07-24T12:45:20.010000"],["2024-07-24T12:45:21.010000"],["2024-07-24T12:45:22.010000"],["2024-07-24T12:45:23.010000"],["2024-07-24T12:45:24.010000"],["2024-07-24T12:45:25.010000"],["2024-07-24T12:45:26.010000"],["2024-07-24T12:45:27.010000"],["2024-07-24T12:45:28.010000"],["2024-07-24T12:45:29.010000"],["2024-07-24T12:45:30.010000"],["2024-07-24T12:45:31.010000"],["2024-07-24T12:45:32.010000"],["2024-07-24T12:45:33.010000"],["2024-07-24T12:45:34.010000"],["2024-07-24T12:45:35.010000"],["2024-07-24T12:45:36.010000"],["2024-07-24T12:45:37.010000"],["2024-07-24T12:45:38.010000"],["2024-07-24T12:45:39.010000"],["2024-07-24T12:45:40.010000"],["2024-07-24T12:45:41.010000"],["2024-07-24T12:45:42.010000"],["2024-07-24T12:45:43.010000"],["2024-07-24T12:45:44.010000"],["2024-07-24T12:45:45.010000"],["2024-07-24T12:45:46.010000"],["2024-07-24T12:45:47.010000"],["2024-07-24T12:45:48.010000"],["2024-07-24T12:45:49.010000"],["2024-07-24T12:45:50.010000"],["2024-07-24T12:45:51.010000"],["2024-07-24T12:45:52.010000"],["2024-07-24T12:45:53.010000"],["2024-07-24T12:45:54.010000"],["2024-07-24T12:45:55.010000"],["2024-07-24T12:45:56.010000"],["2024-07-24T12:45:57.010000"],["2024-07-24T12:45:58.010000"],["2024-07-24T12:45:59.010000"],["2024-07-24T12:46:00.010000"],["2024-07-24T12:46:01.010000"],["2024-07-24T12:46:02.010000"],["2024-07-24T12:46:03.010000"],["2024-07-24T12:46:04.010000"],["2024-07-24T12:46:05.010000"],["2024-07-24T12:46:06.010000"],["2024-07-24T12:46:07.010000"],["2024-07-24T12:46:08.010000"],["2024-07-24T12:46:09.010000"],["2024-07-24T12:46:10.010000"],["2024-07-24T12:46:11.010000"],["2024-07-24T12:46:12.010000"],["2024-07-24T12:46:13.010000"],["2024-07-24T12:46:14.010000"],["2024-07-24T12:46:15.010000"],["2024-07-24T12:46:16.010000"],["2024-07-24T12:46:17.010000"],["2024-07-24T12:46:18.010000"],["2024-07-24T12:46:19.010000"],["2024-07-24T12:46:20.010000"],["2024-07-24T12:46:21.010000"],["2024-07-24T12:46:22.010000"],["2024-07-24T12:46:23.010000"],["2024-07-24T12:46:24.010000"],["2024-07-24T12:46:25.010000"],["2024-07-24T12:46:26.010000"],["2024-07-24T12:46:27.010000"],["2024-07-24T12:46:28.010000"],["2024-07-24T12:46:29.010000"],["2024-07-24T12:46:30.010000"],["2024-07-24T12:46:31.010000"],["2024-07-24T12:46:32.010000"],["2024-07-24T12:46:33.010000"],["2024-07-24T12:46:34.010000"],["2024-07-24T12:46:35.010000"],["2024-07-24T12:46:36.010000"],["2024-07-24T12:46:37.010000"],["2024-07-24T12:46:38.010000"],["2024-07-24T12:46:39.010000"],["2024-07-24T12:46:40.010000"],["2024-07-24T12:46:41.010000"],["2024-07-24T12:46:42.010000"],["2024-07-24T12:46:43.010000"],["2024-07-24T12:46:44.010000"],["2024-07-24T12:46:45.010000"],["2024-07-24T12:46:46.010000"],["2024-07-24T12:46:47.010000"],["2024-07-24T12:46:48.010000"],["2024-07-24T12:46:49.010000"],["2024-07-24T12:46:50.010000"],["2024-07-24T12:46:51.010000"],["2024-07-24T12:46:52.010000"],["2024-07-24T12:46:53.010000"],["2024-07-24T12:46:54.010000"],["2024-07-24T12:46:55.010000"],["2024-07-24T12:46:56.010000"],["2024-07-24T12:46:57.010000"],["2024-07-24T12:46:58.010000"],["2024-07-24T12:46:59.010000"],["2024-07-24T12:47:00.010000"],["2024-07-24T12:47:01.010000"],["2024-07-24T12:47:02.010000"],["2024-07-24T12:47:03.010000"],["2024-07-24T12:47:04.010000"],["2024-07-24T12:47:05.010000"],["2024-07-24T12:47:06.010000"],["2024-07-24T12:47:07.010000"],["2024-07-24T12:47:08.010000"],["2024-07-24T12:47:09.010000"],["2024-07-24T12:47:10.010000"],["2024-07-24T12:47:11.010000"],["2024-07-24T12:47:12.010000"],["2024-07-24T12:47:13.010000"],["2024-07-24T12:47:14.010000"],["2024-07-24T12:47:15.010000"],["2024-07-24T12:47:16.010000"],["2024-07-24T12:47:17.010000"],["2024-07-24T12:47:18.010000"],["2024-07-24T12:47:19.010000"],["2024-07-24T12:47:20.010000"],["2024-07-24T12:47:21.010000"],["2024-07-24T12:47:22.010000"],["2024-07-24T12:47:23.010000"],["2024-07-24T12:47:24.010000"],["2024-07-24T12:47:25.010000"],["2024-07-24T12:47:26.010000"],["2024-07-24T12:47:27.010000"],["2024-07-24T12:47:28.010000"],["2024-07-24T12:47:29.010000"],["2024-07-24T12:47:30.010000"],["2024-07-24T12:47:31.010000"],["2024-07-24T12:47:32.010000"],["2024-07-24T12:47:33.010000"],["2024-07-24T12:47:34.010000"],["2024-07-24T12:47:35.010000"],["2024-07-24T12:47:36.010000"],["2024-07-24T12:47:37.010000"],["2024-07-24T12:47:38.010000"],["2024-07-24T12:47:39.010000"],["2024-07-24T12:47:40.010000"],["2024-07-24T12:47:41.010000"],["2024-07-24T12:47:42.010000"],["2024-07-24T12:47:43.010000"],["2024-07-24T12:47:44.010000"],["2024-07-24T12:47:45.010000"],["2024-07-24T12:47:46.010000"],["2024-07-24T12:47:47.010000"],["2024-07-24T12:47:48.010000"],["2024-07-24T12:47:49.010000"],["2024-07-24T12:47:50.010000"],["2024-07-24T12:47:51.010000"],["2024-07-24T12:47:52.010000"],["2024-07-24T12:47:53.010000"],["2024-07-24T12:47:54.010000"],["2024-07-24T12:47:55.010000"],["2024-07-24T12:47:56.010000"],["2024-07-24T12:47:57.010000"],["2024-07-24T12:47:58.010000"],["2024-07-24T12:47:59.010000"],["2024-07-24T12:48:00.010000"],["2024-07-24T12:48:01.010000"],["2024-07-24T12:48:02.010000"],["2024-07-24T12:48:03.010000"],["2024-07-24T12:48:04.010000"],["2024-07-24T12:48:05.010000"],["2024-07-24T12:48:06.010000"],["2024-07-24T12:48:07.010000"],["2024-07-24T12:48:08.010000"],["2024-07-24T12:48:09.010000"],["2024-07-24T12:48:10.010000"],["2024-07-24T12:48:11.010000"],["2024-07-24T12:48:12.010000"],["2024-07-24T12:48:13.010000"],["2024-07-24T12:48:14.010000"],["2024-07-24T12:48:15.010000"],["2024-07-24T12:48:16.010000"],["2024-07-24T12:48:17.010000"],["2024-07-24T12:48:18.010000"],["2024-07-24T12:48:19.010000"],["2024-07-24T12:48:20.010000"],["2024-07-24T12:48:21.010000"],["2024-07-24T12:48:22.010000"],["2024-07-24T12:48:23.010000"],["2024-07-24T12:48:24.010000"],["2024-07-24T12:48:25.010000"],["2024-07-24T12:48:26.010000"],["2024-07-24T12:48:27.010000"],["2024-07-24T12:48:28.010000"],["2024-07-24T12:48:29.010000"],["2024-07-24T12:48:30.010000"],["2024-07-24T12:48:31.010000"],["2024-07-24T12:48:32.010000"],["2024-07-24T12:48:33.010000"],["2024-07-24T12:48:34.010000"],["2024-07-24T12:48:35.010000"],["2024-07-24T12:48:36.010000"],["2024-07-24T12:48:37.010000"],["2024-07-24T12:48:38.010000"],["2024-07-24T12:48:39.010000"],["2024-07-24T12:48:40.010000"],["2024-07-24T12:48:41.010000"],["2024-07-24T12:48:42.010000"],["2024-07-24T12:48:43.010000"],["2024-07-24T12:48:44.010000"],["2024-07-24T12:48:45.010000"],["2024-07-24T12:48:46.010000"],["2024-07-24T12:48:47.010000"],["2024-07-24T12:48:48.010000"],["2024-07-24T12:48:49.010000"],["2024-07-24T12:48:50.010000"],["2024-07-24T12:48:51.010000"],["2024-07-24T12:48:52.010000"],["2024-07-24T12:48:53.010000"],["2024-07-24T12:48:54.010000"],["2024-07-24T12:48:55.010000"],["2024-07-24T12:48:56.010000"],["2024-07-24T12:48:57.010000"],["2024-07-24T12:48:58.010000"],["2024-07-24T12:48:59.010000"],["2024-07-24T12:49:00.010000"],["2024-07-24T12:49:01.010000"],["2024-07-24T12:49:02.010000"],["2024-07-24T12:49:03.010000"],["2024-07-24T12:49:04.010000"],["2024-07-24T12:49:05.010000"],["2024-07-24T12:49:06.010000"],["2024-07-24T12:49:07.010000"],["2024-07-24T12:49:08.010000"],["2024-07-24T12:49:09.010000"],["2024-07-24T12:49:10.010000"],["2024-07-24T12:49:11.010000"],["2024-07-24T12:49:12.010000"],["2024-07-24T12:49:13.010000"],["2024-07-24T12:49:14.010000"],["2024-07-24T12:49:15.010000"],["2024-07-24T12:49:16.010000"],["2024-07-24T12:49:17.010000"],["2024-07-24T12:49:18.010000"],["2024-07-24T12:49:19.010000"],["2024-07-24T12:49:20.010000"],["2024-07-24T12:49:21.010000"],["2024-07-24T12:49:22.010000"],["2024-07-24T12:49:23.010000"],["2024-07-24T12:49:24.010000"],["2024-07-24T12:49:25.010000"],["2024-07-24T12:49:26.010000"],["2024-07-24T12:49:27.010000"],["2024-07-24T12:49:28.010000"],["2024-07-24T12:49:29.010000"],["2024-07-24T12:49:30.010000"],["2024-07-24T12:49:31.010000"],["2024-07-24T12:49:32.010000"],["2024-07-24T12:49:33.010000"],["2024-07-24T12:49:34.010000"],["2024-07-24T12:49:35.010000"],["2024-07-24T12:49:36.010000"],["2024-07-24T12:49:37.010000"],["2024-07-24T12:49:38.010000"],["2024-07-24T12:49:39.010000"],["2024-07-24T12:49:40.010000"],["2024-07-24T12:49:41.010000"],["2024-07-24T12:49:42.010000"],["2024-07-24T12:49:43.010000"],["2024-07-24T12:49:44.010000"],["2024-07-24T12:49:45.010000"],["2024-07-24T12:49:46.010000"],["2024-07-24T12:49:47.010000"],["2024-07-24T12:49:48.010000"],["2024-07-24T12:49:49.010000"],["2024-07-24T12:49:50.010000"],["2024-07-24T12:49:51.010000"],["2024-07-24T12:49:52.010000"],["2024-07-24T12:49:53.010000"],["2024-07-24T12:49:54.010000"],["2024-07-24T12:49:55.010000"],["2024-07-24T12:49:56.010000"],["2024-07-24T12:49:57.010000"],["2024-07-24T12:49:58.010000"],["2024-07-24T12:49:59.010000"],["2024-07-24T12:50:00.010000"],["2024-07-24T12:50:01.010000"],["2024-07-24T12:50:02.010000"],["2024-07-24T12:50:03.010000"],["2024-07-24T12:50:04.010000"],["2024-07-24T12:50:05.010000"],["2024-07-24T12:50:06.010000"],["2024-07-24T12:50:07.010000"],["2024-07-24T12:50:08.010000"],["2024-07-24T12:50:09.010000"],["2024-07-24T12:50:10.010000"],["2024-07-24T12:50:11.010000"],["2024-07-24T12:50:12.010000"],["2024-07-24T12:50:13.010000"],["2024-07-24T12:50:14.010000"],["2024-07-24T12:50:15.010000"],["2024-07-24T12:50:16.010000"],["2024-07-24T12:50:17.010000"],["2024-07-24T12:50:18.010000"],["2024-07-24T12:50:19.010000"],["2024-07-24T12:50:20.010000"],["2024-07-24T12:50:21.010000"],["2024-07-24T12:50:22.010000"],["2024-07-24T12:50:23.010000"],["2024-07-24T12:50:24.010000"],["2024-07-24T12:50:25.010000"],["2024-07-24T12:50:26.010000"],["2024-07-24T12:50:27.010000"],["2024-07-24T12:50:28.010000"],["2024-07-24T12:50:29.010000"],["2024-07-24T12:50:30.010000"],["2024-07-24T12:50:31.010000"],["2024-07-24T12:50:32.010000"],["2024-07-24T12:50:33.010000"],["2024-07-24T12:50:34.010000"],["2024-07-24T12:50:35.010000"],["2024-07-24T12:50:36.010000"],["2024-07-24T12:50:37.010000"],["2024-07-24T12:50:38.010000"],["2024-07-24T12:50:39.010000"],["2024-07-24T12:50:40.010000"],["2024-07-24T12:50:41.010000"],["2024-07-24T12:50:42.010000"],["2024-07-24T12:50:43.010000"],["2024-07-24T12:50:44.010000"],["2024-07-24T12:50:45.010000"],["2024-07-24T12:50:46.010000"],["2024-07-24T12:50:47.010000"],["2024-07-24T12:50:48.010000"],["2024-07-24T12:50:49.010000"],["2024-07-24T12:50:50.010000"],["2024-07-24T12:50:51.010000"],["2024-07-24T12:50:52.010000"],["2024-07-24T12:50:53.010000"],["2024-07-24T12:50:54.010000"],["2024-07-24T12:50:55.010000"],["2024-07-24T12:50:56.010000"],["2024-07-24T12:50:57.010000"],["2024-07-24T12:50:58.010000"],["2024-07-24T12:50:59.010000"],["2024-07-24T12:51:00.010000"],["2024-07-24T12:51:01.010000"],["2024-07-24T12:51:02.010000"],["2024-07-24T12:51:03.010000"],["2024-07-24T12:51:04.010000"],["2024-07-24T12:51:05.010000"],["2024-07-24T12:51:06.010000"],["2024-07-24T12:51:07.010000"],["2024-07-24T12:51:08.010000"],["2024-07-24T12:51:09.010000"],["2024-07-24T12:51:10.010000"],["2024-07-24T12:51:11.010000"],["2024-07-24T12:51:12.010000"],["2024-07-24T12:51:13.010000"],["2024-07-24T12:51:14.010000"],["2024-07-24T12:51:15.010000"],["2024-07-24T12:51:16.010000"],["2024-07-24T12:51:17.010000"],["2024-07-24T12:51:18.010000"],["2024-07-24T12:51:19.010000"],["2024-07-24T12:51:20.010000"],["2024-07-24T12:51:21.010000"],["2024-07-24T12:51:22.010000"],["2024-07-24T12:51:23.010000"],["2024-07-24T12:51:24.010000"],["2024-07-24T12:51:25.010000"],["2024-07-24T12:51:26.010000"],["2024-07-24T12:51:27.010000"],["2024-07-24T12:51:28.010000"],["2024-07-24T12:51:29.010000"],["2024-07-24T12:51:30.010000"],["2024-07-24T12:51:31.010000"],["2024-07-24T12:51:32.010000"],["2024-07-24T12:51:33.010000"],["2024-07-24T12:51:34.010000"],["2024-07-24T12:51:35.010000"],["2024-07-24T12:51:36.010000"],["2024-07-24T12:51:37.010000"],["2024-07-24T12:51:38.010000"],["2024-07-24T12:51:39.010000"],["2024-07-24T12:51:40.010000"],["2024-07-24T12:51:41.010000"],["2024-07-24T12:51:42.010000"],["2024-07-24T12:51:43.010000"],["2024-07-24T12:51:44.010000"],["2024-07-24T12:51:45.010000"],["2024-07-24T12:51:46.010000"],["2024-07-24T12:51:47.010000"],["2024-07-24T12:51:48.010000"],["2024-07-24T12:51:49.010000"],["2024-07-24T12:51:50.010000"],["2024-07-24T12:51:51.010000"],["2024-07-24T12:51:52.010000"],["2024-07-24T12:51:53.010000"],["2024-07-24T12:51:54.010000"],["2024-07-24T12:51:55.010000"],["2024-07-24T12:51:56.010000"],["2024-07-24T12:51:57.010000"],["2024-07-24T12:51:58.010000"],["2024-07-24T12:51:59.010000"],["2024-07-24T12:52:00.010000"],["2024-07-24T12:52:01.010000"],["2024-07-24T12:52:02.010000"],["2024-07-24T12:52:03.010000"],["2024-07-24T12:52:04.010000"],["2024-07-24T12:52:05.010000"],["2024-07-24T12:52:06.010000"],["2024-07-24T12:52:07.010000"],["2024-07-24T12:52:08.010000"],["2024-07-24T12:52:09.010000"],["2024-07-24T12:52:10.010000"],["2024-07-24T12:52:11.010000"],["2024-07-24T12:52:12.010000"],["2024-07-24T12:52:13.010000"],["2024-07-24T12:52:14.010000"],["2024-07-24T12:52:15.010000"],["2024-07-24T12:52:16.010000"],["2024-07-24T12:52:17.010000"],["2024-07-24T12:52:18.010000"],["2024-07-24T12:52:19.010000"],["2024-07-24T12:52:20.010000"],["2024-07-24T12:52:21.010000"],["2024-07-24T12:52:22.010000"],["2024-07-24T12:52:23.010000"],["2024-07-24T12:52:24.010000"],["2024-07-24T12:52:25.010000"],["2024-07-24T12:52:26.010000"],["2024-07-24T12:52:27.010000"],["2024-07-24T12:52:28.010000"],["2024-07-24T12:52:29.010000"],["2024-07-24T12:52:30.010000"],["2024-07-24T12:52:31.010000"],["2024-07-24T12:52:32.010000"],["2024-07-24T12:52:33.010000"],["2024-07-24T12:52:34.010000"],["2024-07-24T12:52:35.010000"],["2024-07-24T12:52:36.010000"],["2024-07-24T12:52:37.010000"],["2024-07-24T12:52:38.010000"],["2024-07-24T12:52:39.010000"],["2024-07-24T12:52:40.010000"],["2024-07-24T12:52:41.010000"],["2024-07-24T12:52:42.010000"],["2024-07-24T12:52:43.010000"],["2024-07-24T12:52:44.010000"],["2024-07-24T12:52:45.010000"],["2024-07-24T12:52:46.010000"],["2024-07-24T12:52:47.010000"],["2024-07-24T12:52:48.010000"],["2024-07-24T12:52:49.010000"],["2024-07-24T12:52:50.010000"],["2024-07-24T12:52:51.010000"],["2024-07-24T12:52:52.010000"],["2024-07-24T12:52:53.010000"],["2024-07-24T12:52:54.010000"],["2024-07-24T12:52:55.010000"],["2024-07-24T12:52:56.010000"],["2024-07-24T12:52:57.010000"],["2024-07-24T12:52:58.010000"],["2024-07-24T12:52:59.010000"],["2024-07-24T12:53:00.010000"],["2024-07-24T12:53:01.010000"],["2024-07-24T12:53:02.010000"],["2024-07-24T12:53:03.010000"],["2024-07-24T12:53:04.010000"],["2024-07-24T12:53:05.010000"],["2024-07-24T12:53:06.010000"],["2024-07-24T12:53:07.010000"],["2024-07-24T12:53:08.010000"],["2024-07-24T12:53:09.010000"],["2024-07-24T12:53:10.010000"],["2024-07-24T12:53:11.010000"],["2024-07-24T12:53:12.010000"],["2024-07-24T12:53:13.010000"],["2024-07-24T12:53:14.010000"],["2024-07-24T12:53:15.010000"],["2024-07-24T12:53:16.010000"],["2024-07-24T12:53:17.010000"],["2024-07-24T12:53:18.010000"],["2024-07-24T12:53:19.010000"],["2024-07-24T12:53:20.010000"],["2024-07-24T12:53:21.010000"],["2024-07-24T12:53:22.010000"],["2024-07-24T12:53:23.010000"],["2024-07-24T12:53:24.010000"],["2024-07-24T12:53:25.010000"],["2024-07-24T12:53:26.010000"],["2024-07-24T12:53:27.010000"],["2024-07-24T12:53:28.010000"],["2024-07-24T12:53:29.010000"],["2024-07-24T12:53:30.010000"],["2024-07-24T12:53:31.010000"],["2024-07-24T12:53:32.010000"],["2024-07-24T12:53:33.010000"],["2024-07-24T12:53:34.010000"],["2024-07-24T12:53:35.010000"],["2024-07-24T12:53:36.010000"],["2024-07-24T12:53:37.010000"],["2024-07-24T12:53:38.010000"],["2024-07-24T12:53:39.010000"],["2024-07-24T12:53:40.010000"],["2024-07-24T12:53:41.010000"],["2024-07-24T12:53:42.010000"],["2024-07-24T12:53:43.010000"],["2024-07-24T12:53:44.010000"],["2024-07-24T12:53:45.010000"],["2024-07-24T12:53:46.010000"],["2024-07-24T12:53:47.010000"],["2024-07-24T12:53:48.010000"],["2024-07-24T12:53:49.010000"],["2024-07-24T12:53:50.010000"],["2024-07-24T12:53:51.010000"],["2024-07-24T12:53:52.010000"],["2024-07-24T12:53:53.010000"],["2024-07-24T12:53:54.010000"],["2024-07-24T12:53:55.010000"],["2024-07-24T12:53:56.010000"],["2024-07-24T12:53:57.010000"],["2024-07-24T12:53:58.010000"],["2024-07-24T12:53:59.010000"],["2024-07-24T12:54:00.010000"],["2024-07-24T12:54:01.010000"],["2024-07-24T12:54:02.010000"],["2024-07-24T12:54:03.010000"],["2024-07-24T12:54:04.010000"],["2024-07-24T12:54:05.010000"],["2024-07-24T12:54:06.010000"],["2024-07-24T12:54:07.010000"],["2024-07-24T12:54:08.010000"],["2024-07-24T12:54:09.010000"],["2024-07-24T12:54:10.010000"],["2024-07-24T12:54:11.010000"],["2024-07-24T12:54:12.010000"],["2024-07-24T12:54:13.010000"],["2024-07-24T12:54:14.010000"],["2024-07-24T12:54:15.010000"],["2024-07-24T12:54:16.010000"],["2024-07-24T12:54:17.010000"],["2024-07-24T12:54:18.010000"],["2024-07-24T12:54:19.010000"],["2024-07-24T12:54:20.010000"],["2024-07-24T12:54:21.010000"],["2024-07-24T12:54:22.010000"],["2024-07-24T12:54:23.010000"],["2024-07-24T12:54:24.010000"],["2024-07-24T12:54:25.010000"],["2024-07-24T12:54:26.010000"],["2024-07-24T12:54:27.010000"],["2024-07-24T12:54:28.010000"],["2024-07-24T12:54:29.010000"],["2024-07-24T12:54:30.010000"],["2024-07-24T12:54:31.010000"],["2024-07-24T12:54:32.010000"],["2024-07-24T12:54:33.010000"],["2024-07-24T12:54:34.010000"],["2024-07-24T12:54:35.010000"],["2024-07-24T12:54:36.010000"],["2024-07-24T12:54:37.010000"],["2024-07-24T12:54:38.010000"],["2024-07-24T12:54:39.010000"],["2024-07-24T12:54:40.010000"],["2024-07-24T12:54:41.010000"],["2024-07-24T12:54:42.010000"],["2024-07-24T12:54:43.010000"],["2024-07-24T12:54:44.010000"],["2024-07-24T12:54:45.010000"],["2024-07-24T12:54:46.010000"],["2024-07-24T12:54:47.010000"],["2024-07-24T12:54:48.010000"],["2024-07-24T12:54:49.010000"],["2024-07-24T12:54:50.010000"],["2024-07-24T12:54:51.010000"],["2024-07-24T12:54:52.010000"],["2024-07-24T12:54:53.010000"],["2024-07-24T12:54:54.010000"],["2024-07-24T12:54:55.010000"],["2024-07-24T12:54:56.010000"],["2024-07-24T12:54:57.010000"],["2024-07-24T12:54:58.010000"],["2024-07-24T12:54:59.010000"],["2024-07-24T12:55:00.010000"],["2024-07-24T12:55:01.010000"],["2024-07-24T12:55:02.010000"],["2024-07-24T12:55:03.010000"],["2024-07-24T12:55:04.010000"],["2024-07-24T12:55:05.010000"],["2024-07-24T12:55:06.010000"],["2024-07-24T12:55:07.010000"],["2024-07-24T12:55:08.010000"],["2024-07-24T12:55:09.010000"],["2024-07-24T12:55:10.010000"],["2024-07-24T12:55:11.010000"],["2024-07-24T12:55:12.010000"],["2024-07-24T12:55:13.010000"],["2024-07-24T12:55:14.010000"],["2024-07-24T12:55:15.010000"],["2024-07-24T12:55:16.010000"],["2024-07-24T12:55:17.010000"],["2024-07-24T12:55:18.010000"],["2024-07-24T12:55:19.010000"],["2024-07-24T12:55:20.010000"],["2024-07-24T12:55:21.010000"],["2024-07-24T12:55:22.010000"],["2024-07-24T12:55:23.010000"],["2024-07-24T12:55:24.010000"],["2024-07-24T12:55:25.010000"],["2024-07-24T12:55:26.010000"],["2024-07-24T12:55:27.010000"],["2024-07-24T12:55:28.010000"],["2024-07-24T12:55:29.010000"],["2024-07-24T12:55:30.010000"],["2024-07-24T12:55:31.010000"],["2024-07-24T12:55:32.010000"],["2024-07-24T12:55:33.010000"],["2024-07-24T12:55:34.010000"],["2024-07-24T12:55:35.010000"],["2024-07-24T12:55:36.010000"],["2024-07-24T12:55:37.010000"],["2024-07-24T12:55:38.010000"],["2024-07-24T12:55:39.010000"],["2024-07-24T12:55:40.010000"],["2024-07-24T12:55:41.010000"],["2024-07-24T12:55:42.010000"],["2024-07-24T12:55:43.010000"],["2024-07-24T12:55:44.010000"],["2024-07-24T12:55:45.010000"],["2024-07-24T12:55:46.010000"],["2024-07-24T12:55:47.010000"],["2024-07-24T12:55:48.010000"],["2024-07-24T12:55:49.010000"],["2024-07-24T12:55:50.010000"],["2024-07-24T12:55:51.010000"],["2024-07-24T12:55:52.010000"],["2024-07-24T12:55:53.010000"],["2024-07-24T12:55:54.010000"],["2024-07-24T12:55:55.010000"],["2024-07-24T12:55:56.010000"],["2024-07-24T12:55:57.010000"],["2024-07-24T12:55:58.010000"],["2024-07-24T12:55:59.010000"],["2024-07-24T12:56:00.010000"],["2024-07-24T12:56:01.010000"],["2024-07-24T12:56:02.010000"],["2024-07-24T12:56:03.010000"],["2024-07-24T12:56:04.010000"],["2024-07-24T12:56:05.010000"],["2024-07-24T12:56:06.010000"],["2024-07-24T12:56:07.010000"],["2024-07-24T12:56:08.010000"],["2024-07-24T12:56:09.010000"],["2024-07-24T12:56:10.010000"],["2024-07-24T12:56:11.010000"],["2024-07-24T12:56:12.010000"],["2024-07-24T12:56:13.010000"],["2024-07-24T12:56:14.010000"],["2024-07-24T12:56:15.010000"],["2024-07-24T12:56:16.010000"],["2024-07-24T12:56:17.010000"],["2024-07-24T12:56:18.010000"],["2024-07-24T12:56:19.010000"],["2024-07-24T12:56:20.010000"],["2024-07-24T12:56:21.010000"],["2024-07-24T12:56:22.010000"],["2024-07-24T12:56:23.010000"],["2024-07-24T12:56:24.010000"],["2024-07-24T12:56:25.010000"],["2024-07-24T12:56:26.010000"],["2024-07-24T12:56:27.010000"],["2024-07-24T12:56:28.010000"],["2024-07-24T12:56:29.010000"],["2024-07-24T12:56:30.010000"],["2024-07-24T12:56:31.010000"],["2024-07-24T12:56:32.010000"],["2024-07-24T12:56:33.010000"],["2024-07-24T12:56:34.010000"],["2024-07-24T12:56:35.010000"],["2024-07-24T12:56:36.010000"],["2024-07-24T12:56:37.010000"],["2024-07-24T12:56:38.010000"],["2024-07-24T12:56:39.010000"],["2024-07-24T12:56:40.010000"],["2024-07-24T12:56:41.010000"],["2024-07-24T12:56:42.010000"],["2024-07-24T12:56:43.010000"],["2024-07-24T12:56:44.010000"],["2024-07-24T12:56:45.010000"],["2024-07-24T12:56:46.010000"],["2024-07-24T12:56:47.010000"],["2024-07-24T12:56:48.010000"],["2024-07-24T12:56:49.010000"],["2024-07-24T12:56:50.010000"],["2024-07-24T12:56:51.010000"],["2024-07-24T12:56:52.010000"],["2024-07-24T12:56:53.010000"],["2024-07-24T12:56:54.010000"],["2024-07-24T12:56:55.010000"],["2024-07-24T12:56:56.010000"],["2024-07-24T12:56:57.010000"],["2024-07-24T12:56:58.010000"],["2024-07-24T12:56:59.010000"],["2024-07-24T12:57:00.010000"],["2024-07-24T12:57:01.010000"],["2024-07-24T12:57:02.010000"],["2024-07-24T12:57:03.010000"],["2024-07-24T12:57:04.010000"],["2024-07-24T12:57:05.010000"],["2024-07-24T12:57:06.010000"],["2024-07-24T12:57:07.010000"],["2024-07-24T12:57:08.010000"],["2024-07-24T12:57:09.010000"],["2024-07-24T12:57:10.010000"],["2024-07-24T12:57:11.010000"],["2024-07-24T12:57:12.010000"],["2024-07-24T12:57:13.010000"],["2024-07-24T12:57:14.010000"],["2024-07-24T12:57:15.010000"],["2024-07-24T12:57:16.010000"],["2024-07-24T12:57:17.010000"],["2024-07-24T12:57:18.010000"],["2024-07-24T12:57:19.010000"],["2024-07-24T12:57:20.010000"],["2024-07-24T12:57:21.010000"],["2024-07-24T12:57:22.010000"],["2024-07-24T12:57:23.010000"],["2024-07-24T12:57:24.010000"],["2024-07-24T12:57:25.010000"],["2024-07-24T12:57:26.010000"],["2024-07-24T12:57:27.010000"],["2024-07-24T12:57:28.010000"],["2024-07-24T12:57:29.010000"],["2024-07-24T12:57:30.010000"],["2024-07-24T12:57:31.010000"],["2024-07-24T12:57:32.010000"],["2024-07-24T12:57:33.010000"],["2024-07-24T12:57:34.010000"],["2024-07-24T12:57:35.010000"],["2024-07-24T12:57:36.010000"],["2024-07-24T12:57:37.010000"],["2024-07-24T12:57:38.010000"],["2024-07-24T12:57:39.010000"],["2024-07-24T12:57:40.010000"],["2024-07-24T12:57:41.010000"],["2024-07-24T12:57:42.010000"],["2024-07-24T12:57:43.010000"],["2024-07-24T12:57:44.010000"],["2024-07-24T12:57:45.010000"],["2024-07-24T12:57:46.010000"],["2024-07-24T12:57:47.010000"],["2024-07-24T12:57:48.010000"],["2024-07-24T12:57:49.010000"],["2024-07-24T12:57:50.010000"],["2024-07-24T12:57:51.010000"],["2024-07-24T12:57:52.010000"],["2024-07-24T12:57:53.010000"],["2024-07-24T12:57:54.010000"],["2024-07-24T12:57:55.010000"],["2024-07-24T12:57:56.010000"],["2024-07-24T12:57:57.010000"],["2024-07-24T12:57:58.010000"],["2024-07-24T12:57:59.010000"],["2024-07-24T12:58:00.010000"],["2024-07-24T12:58:01.010000"],["2024-07-24T12:58:02.010000"],["2024-07-24T12:58:03.010000"],["2024-07-24T12:58:04.010000"],["2024-07-24T12:58:05.010000"],["2024-07-24T12:58:06.010000"],["2024-07-24T12:58:07.010000"],["2024-07-24T12:58:08.010000"],["2024-07-24T12:58:09.010000"],["2024-07-24T12:58:10.010000"],["2024-07-24T12:58:11.010000"],["2024-07-24T12:58:12.010000"],["2024-07-24T12:58:13.010000"],["2024-07-24T12:58:14.010000"],["2024-07-24T12:58:15.010000"],["2024-07-24T12:58:16.010000"],["2024-07-24T12:58:17.010000"],["2024-07-24T12:58:18.010000"],["2024-07-24T12:58:19.010000"],["2024-07-24T12:58:20.010000"],["2024-07-24T12:58:21.010000"],["2024-07-24T12:58:22.010000"],["2024-07-24T12:58:23.010000"],["2024-07-24T12:58:24.010000"],["2024-07-24T12:58:25.010000"],["2024-07-24T12:58:26.010000"],["2024-07-24T12:58:27.010000"],["2024-07-24T12:58:28.010000"],["2024-07-24T12:58:29.010000"],["2024-07-24T12:58:30.010000"],["2024-07-24T12:58:31.010000"],["2024-07-24T12:58:32.010000"],["2024-07-24T12:58:33.010000"],["2024-07-24T12:58:34.010000"],["2024-07-24T12:58:35.010000"],["2024-07-24T12:58:36.010000"],["2024-07-24T12:58:37.010000"],["2024-07-24T12:58:38.010000"],["2024-07-24T12:58:39.010000"],["2024-07-24T12:58:40.010000"],["2024-07-24T12:58:41.010000"],["2024-07-24T12:58:42.010000"],["2024-07-24T12:58:43.010000"],["2024-07-24T12:58:44.010000"],["2024-07-24T12:58:45.010000"],["2024-07-24T12:58:46.010000"],["2024-07-24T12:58:47.010000"],["2024-07-24T12:58:48.010000"],["2024-07-24T12:58:49.010000"],["2024-07-24T12:58:50.010000"],["2024-07-24T12:58:51.010000"],["2024-07-24T12:58:52.010000"],["2024-07-24T12:58:53.010000"],["2024-07-24T12:58:54.010000"],["2024-07-24T12:58:55.010000"],["2024-07-24T12:58:56.010000"],["2024-07-24T12:58:57.010000"],["2024-07-24T12:58:58.010000"],["2024-07-24T12:58:59.010000"],["2024-07-24T12:59:00.010000"],["2024-07-24T12:59:01.010000"],["2024-07-24T12:59:02.010000"],["2024-07-24T12:59:03.010000"],["2024-07-24T12:59:04.010000"],["2024-07-24T12:59:05.010000"],["2024-07-24T12:59:06.010000"],["2024-07-24T12:59:07.010000"],["2024-07-24T12:59:08.010000"],["2024-07-24T12:59:09.010000"],["2024-07-24T12:59:10.010000"],["2024-07-24T12:59:11.010000"],["2024-07-24T12:59:12.010000"],["2024-07-24T12:59:13.010000"],["2024-07-24T12:59:14.010000"],["2024-07-24T12:59:15.010000"],["2024-07-24T12:59:16.010000"],["2024-07-24T12:59:17.010000"],["2024-07-24T12:59:18.010000"],["2024-07-24T12:59:19.010000"],["2024-07-24T12:59:20.010000"],["2024-07-24T12:59:21.010000"],["2024-07-24T12:59:22.010000"],["2024-07-24T12:59:23.010000"],["2024-07-24T12:59:24.010000"],["2024-07-24T12:59:25.010000"],["2024-07-24T12:59:26.010000"],["2024-07-24T12:59:27.010000"],["2024-07-24T12:59:28.010000"],["2024-07-24T12:59:29.010000"],["2024-07-24T12:59:30.010000"],["2024-07-24T12:59:31.010000"],["2024-07-24T12:59:32.010000"],["2024-07-24T12:59:33.010000"],["2024-07-24T12:59:34.010000"],["2024-07-24T12:59:35.010000"],["2024-07-24T12:59:36.010000"],["2024-07-24T12:59:37.010000"],["2024-07-24T12:59:38.010000"],["2024-07-24T12:59:39.010000"],["2024-07-24T12:59:40.010000"],["2024-07-24T12:59:41.010000"],["2024-07-24T12:59:42.010000"],["2024-07-24T12:59:43.010000"],["2024-07-24T12:59:44.010000"],["2024-07-24T12:59:45.010000"],["2024-07-24T12:59:46.010000"],["2024-07-24T12:59:47.010000"],["2024-07-24T12:59:48.010000"],["2024-07-24T12:59:49.010000"],["2024-07-24T12:59:50.010000"],["2024-07-24T12:59:51.010000"],["2024-07-24T12:59:52.010000"],["2024-07-24T12:59:53.010000"],["2024-07-24T12:59:54.010000"],["2024-07-24T12:59:55.010000"],["2024-07-24T12:59:56.010000"],["2024-07-24T12:59:57.010000"],["2024-07-24T12:59:58.010000"],["2024-07-24T12:59:59.010000"],["2024-07-24T13:00:00.010000"],["2024-07-24T13:00:01.010000"],["2024-07-24T13:00:02.010000"],["2024-07-24T13:00:03.010000"],["2024-07-24T13:00:04.010000"],["2024-07-24T13:00:05.010000"],["2024-07-24T13:00:06.010000"],["2024-07-24T13:00:07.010000"],["2024-07-24T13:00:08.010000"],["2024-07-24T13:00:09.010000"],["2024-07-24T13:00:10.010000"],["2024-07-24T13:00:11.010000"],["2024-07-24T13:00:12.010000"],["2024-07-24T13:00:13.010000"],["2024-07-24T13:00:14.010000"],["2024-07-24T13:00:15.010000"],["2024-07-24T13:00:16.010000"],["2024-07-24T13:00:17.010000"],["2024-07-24T13:00:18.010000"],["2024-07-24T13:00:19.010000"],["2024-07-24T13:00:20.010000"],["2024-07-24T13:00:21.010000"],["2024-07-24T13:00:22.010000"],["2024-07-24T13:00:23.010000"],["2024-07-24T13:00:24.010000"],["2024-07-24T13:00:25.010000"],["2024-07-24T13:00:26.010000"],["2024-07-24T13:00:27.010000"],["2024-07-24T13:00:28.010000"],["2024-07-24T13:00:29.010000"],["2024-07-24T13:00:30.010000"],["2024-07-24T13:00:31.010000"],["2024-07-24T13:00:32.010000"],["2024-07-24T13:00:33.010000"],["2024-07-24T13:00:34.010000"],["2024-07-24T13:00:35.010000"],["2024-07-24T13:00:36.010000"],["2024-07-24T13:00:37.010000"],["2024-07-24T13:00:38.010000"],["2024-07-24T13:00:39.010000"],["2024-07-24T13:00:40.010000"],["2024-07-24T13:00:41.010000"],["2024-07-24T13:00:42.010000"],["2024-07-24T13:00:43.010000"],["2024-07-24T13:00:44.010000"],["2024-07-24T13:00:45.010000"],["2024-07-24T13:00:46.010000"],["2024-07-24T13:00:47.010000"],["2024-07-24T13:00:48.010000"],["2024-07-24T13:00:49.010000"],["2024-07-24T13:00:50.010000"],["2024-07-24T13:00:51.010000"],["2024-07-24T13:00:52.010000"],["2024-07-24T13:00:53.010000"],["2024-07-24T13:00:54.010000"],["2024-07-24T13:00:55.010000"],["2024-07-24T13:00:56.010000"],["2024-07-24T13:00:57.010000"],["2024-07-24T13:00:58.010000"],["2024-07-24T13:00:59.010000"],["2024-07-24T13:01:00.010000"],["2024-07-24T13:01:01.010000"],["2024-07-24T13:01:02.010000"],["2024-07-24T13:01:03.010000"],["2024-07-24T13:01:04.010000"],["2024-07-24T13:01:05.010000"],["2024-07-24T13:01:06.010000"],["2024-07-24T13:01:07.010000"],["2024-07-24T13:01:08.010000"],["2024-07-24T13:01:09.010000"],["2024-07-24T13:01:10.010000"],["2024-07-24T13:01:11.010000"],["2024-07-24T13:01:12.010000"],["2024-07-24T13:01:13.010000"],["2024-07-24T13:01:14.010000"],["2024-07-24T13:01:15.010000"],["2024-07-24T13:01:16.010000"],["2024-07-24T13:01:17.010000"],["2024-07-24T13:01:18.010000"],["2024-07-24T13:01:19.010000"],["2024-07-24T13:01:20.010000"],["2024-07-24T13:01:21.010000"],["2024-07-24T13:01:22.010000"],["2024-07-24T13:01:23.010000"],["2024-07-24T13:01:24.010000"],["2024-07-24T13:01:25.010000"],["2024-07-24T13:01:26.010000"],["2024-07-24T13:01:27.010000"],["2024-07-24T13:01:28.010000"],["2024-07-24T13:01:29.010000"],["2024-07-24T13:01:30.010000"],["2024-07-24T13:01:31.010000"],["2024-07-24T13:01:32.010000"],["2024-07-24T13:01:33.010000"],["2024-07-24T13:01:34.010000"],["2024-07-24T13:01:35.010000"],["2024-07-24T13:01:36.010000"],["2024-07-24T13:01:37.010000"],["2024-07-24T13:01:38.010000"],["2024-07-24T13:01:39.010000"],["2024-07-24T13:01:40.010000"],["2024-07-24T13:01:41.010000"],["2024-07-24T13:01:42.010000"],["2024-07-24T13:01:43.010000"],["2024-07-24T13:01:44.010000"],["2024-07-24T13:01:45.010000"],["2024-07-24T13:01:46.010000"],["2024-07-24T13:01:47.010000"],["2024-07-24T13:01:48.010000"],["2024-07-24T13:01:49.010000"],["2024-07-24T13:01:50.010000"],["2024-07-24T13:01:51.010000"],["2024-07-24T13:01:52.010000"],["2024-07-24T13:01:53.010000"],["2024-07-24T13:01:54.010000"],["2024-07-24T13:01:55.010000"],["2024-07-24T13:01:56.010000"],["2024-07-24T13:01:57.010000"],["2024-07-24T13:01:58.010000"],["2024-07-24T13:01:59.010000"],["2024-07-24T13:02:00.010000"],["2024-07-24T13:02:01.010000"],["2024-07-24T13:02:02.010000"],["2024-07-24T13:02:03.010000"],["2024-07-24T13:02:04.010000"],["2024-07-24T13:02:05.010000"],["2024-07-24T13:02:06.010000"],["2024-07-24T13:02:07.010000"],["2024-07-24T13:02:08.010000"],["2024-07-24T13:02:09.010000"],["2024-07-24T13:02:10.010000"],["2024-07-24T13:02:11.010000"],["2024-07-24T13:02:12.010000"],["2024-07-24T13:02:13.010000"],["2024-07-24T13:02:14.010000"],["2024-07-24T13:02:15.010000"],["2024-07-24T13:02:16.010000"],["2024-07-24T13:02:17.010000"],["2024-07-24T13:02:18.010000"],["2024-07-24T13:02:19.010000"],["2024-07-24T13:02:20.010000"],["2024-07-24T13:02:21.010000"],["2024-07-24T13:02:22.010000"],["2024-07-24T13:02:23.010000"],["2024-07-24T13:02:24.010000"],["2024-07-24T13:02:25.010000"],["2024-07-24T13:02:26.010000"],["2024-07-24T13:02:27.010000"],["2024-07-24T13:02:28.010000"],["2024-07-24T13:02:29.010000"],["2024-07-24T13:02:30.010000"],["2024-07-24T13:02:31.010000"],["2024-07-24T13:02:32.010000"],["2024-07-24T13:02:33.010000"],["2024-07-24T13:02:34.010000"],["2024-07-24T13:02:35.010000"],["2024-07-24T13:02:36.010000"],["2024-07-24T13:02:37.010000"],["2024-07-24T13:02:38.010000"],["2024-07-24T13:02:39.010000"],["2024-07-24T13:02:40.010000"],["2024-07-24T13:02:41.010000"],["2024-07-24T13:02:42.010000"],["2024-07-24T13:02:43.010000"],["2024-07-24T13:02:44.010000"],["2024-07-24T13:02:45.010000"],["2024-07-24T13:02:46.010000"],["2024-07-24T13:02:47.010000"],["2024-07-24T13:02:48.010000"],["2024-07-24T13:02:49.010000"],["2024-07-24T13:02:50.010000"],["2024-07-24T13:02:51.010000"],["2024-07-24T13:02:52.010000"],["2024-07-24T13:02:53.010000"],["2024-07-24T13:02:54.010000"],["2024-07-24T13:02:55.010000"],["2024-07-24T13:02:56.010000"],["2024-07-24T13:02:57.010000"],["2024-07-24T13:02:58.010000"],["2024-07-24T13:02:59.010000"],["2024-07-24T13:03:00.010000"],["2024-07-24T13:03:01.010000"],["2024-07-24T13:03:02.010000"],["2024-07-24T13:03:03.010000"],["2024-07-24T13:03:04.010000"],["2024-07-24T13:03:05.010000"],["2024-07-24T13:03:06.010000"],["2024-07-24T13:03:07.010000"],["2024-07-24T13:03:08.010000"],["2024-07-24T13:03:09.010000"],["2024-07-24T13:03:10.010000"],["2024-07-24T13:03:11.010000"],["2024-07-24T13:03:12.010000"],["2024-07-24T13:03:13.010000"],["2024-07-24T13:03:14.010000"],["2024-07-24T13:03:15.010000"],["2024-07-24T13:03:16.010000"],["2024-07-24T13:03:17.010000"],["2024-07-24T13:03:18.010000"],["2024-07-24T13:03:19.010000"],["2024-07-24T13:03:20.010000"],["2024-07-24T13:03:21.010000"],["2024-07-24T13:03:22.010000"],["2024-07-24T13:03:23.010000"],["2024-07-24T13:03:24.010000"],["2024-07-24T13:03:25.010000"],["2024-07-24T13:03:26.010000"],["2024-07-24T13:03:27.010000"],["2024-07-24T13:03:28.010000"],["2024-07-24T13:03:29.010000"],["2024-07-24T13:03:30.010000"],["2024-07-24T13:03:31.010000"],["2024-07-24T13:03:32.010000"],["2024-07-24T13:03:33.010000"],["2024-07-24T13:03:34.010000"],["2024-07-24T13:03:35.010000"],["2024-07-24T13:03:36.010000"],["2024-07-24T13:03:37.010000"],["2024-07-24T13:03:38.010000"],["2024-07-24T13:03:39.010000"],["2024-07-24T13:03:40.010000"],["2024-07-24T13:03:41.010000"],["2024-07-24T13:03:42.010000"],["2024-07-24T13:03:43.010000"],["2024-07-24T13:03:44.010000"],["2024-07-24T13:03:45.010000"],["2024-07-24T13:03:46.010000"],["2024-07-24T13:03:47.010000"],["2024-07-24T13:03:48.010000"],["2024-07-24T13:03:49.010000"],["2024-07-24T13:03:50.010000"],["2024-07-24T13:03:51.010000"],["2024-07-24T13:03:52.010000"],["2024-07-24T13:03:53.010000"],["2024-07-24T13:03:54.010000"],["2024-07-24T13:03:55.010000"],["2024-07-24T13:03:56.010000"],["2024-07-24T13:03:57.010000"],["2024-07-24T13:03:58.010000"],["2024-07-24T13:03:59.010000"],["2024-07-24T13:04:00.010000"],["2024-07-24T13:04:01.010000"],["2024-07-24T13:04:02.010000"],["2024-07-24T13:04:03.010000"],["2024-07-24T13:04:04.010000"],["2024-07-24T13:04:05.010000"],["2024-07-24T13:04:06.010000"],["2024-07-24T13:04:07.010000"],["2024-07-24T13:04:08.010000"],["2024-07-24T13:04:09.010000"],["2024-07-24T13:04:10.010000"],["2024-07-24T13:04:11.010000"],["2024-07-24T13:04:12.010000"],["2024-07-24T13:04:13.010000"],["2024-07-24T13:04:14.010000"],["2024-07-24T13:04:15.010000"],["2024-07-24T13:04:16.010000"],["2024-07-24T13:04:17.010000"],["2024-07-24T13:04:18.010000"],["2024-07-24T13:04:19.010000"],["2024-07-24T13:04:20.010000"],["2024-07-24T13:04:21.010000"],["2024-07-24T13:04:22.010000"],["2024-07-24T13:04:23.010000"],["2024-07-24T13:04:24.010000"],["2024-07-24T13:04:25.010000"],["2024-07-24T13:04:26.010000"],["2024-07-24T13:04:27.010000"],["2024-07-24T13:04:28.010000"],["2024-07-24T13:04:29.010000"],["2024-07-24T13:04:30.010000"],["2024-07-24T13:04:31.010000"],["2024-07-24T13:04:32.010000"],["2024-07-24T13:04:33.010000"],["2024-07-24T13:04:34.010000"],["2024-07-24T13:04:35.010000"],["2024-07-24T13:04:36.010000"],["2024-07-24T13:04:37.010000"],["2024-07-24T13:04:38.010000"],["2024-07-24T13:04:39.010000"],["2024-07-24T13:04:40.010000"],["2024-07-24T13:04:41.010000"],["2024-07-24T13:04:42.010000"],["2024-07-24T13:04:43.010000"],["2024-07-24T13:04:44.010000"],["2024-07-24T13:04:45.010000"],["2024-07-24T13:04:46.010000"],["2024-07-24T13:04:47.010000"],["2024-07-24T13:04:48.010000"],["2024-07-24T13:04:49.010000"],["2024-07-24T13:04:50.010000"],["2024-07-24T13:04:51.010000"],["2024-07-24T13:04:52.010000"],["2024-07-24T13:04:53.010000"],["2024-07-24T13:04:54.010000"],["2024-07-24T13:04:55.010000"],["2024-07-24T13:04:56.010000"],["2024-07-24T13:04:57.010000"],["2024-07-24T13:04:58.010000"],["2024-07-24T13:04:59.010000"],["2024-07-24T13:05:00.010000"],["2024-07-24T13:05:01.010000"],["2024-07-24T13:05:02.010000"],["2024-07-24T13:05:03.010000"],["2024-07-24T13:05:04.010000"],["2024-07-24T13:05:05.010000"],["2024-07-24T13:05:06.010000"],["2024-07-24T13:05:07.010000"],["2024-07-24T13:05:08.010000"],["2024-07-24T13:05:09.010000"],["2024-07-24T13:05:10.010000"],["2024-07-24T13:05:11.010000"],["2024-07-24T13:05:12.010000"],["2024-07-24T13:05:13.010000"],["2024-07-24T13:05:14.010000"],["2024-07-24T13:05:15.010000"],["2024-07-24T13:05:16.010000"],["2024-07-24T13:05:17.010000"],["2024-07-24T13:05:18.010000"],["2024-07-24T13:05:19.010000"],["2024-07-24T13:05:20.010000"],["2024-07-24T13:05:21.010000"],["2024-07-24T13:05:22.010000"],["2024-07-24T13:05:23.010000"],["2024-07-24T13:05:24.010000"],["2024-07-24T13:05:25.010000"],["2024-07-24T13:05:26.010000"],["2024-07-24T13:05:27.010000"],["2024-07-24T13:05:28.010000"],["2024-07-24T13:05:29.010000"],["2024-07-24T13:05:30.010000"],["2024-07-24T13:05:31.010000"],["2024-07-24T13:05:32.010000"],["2024-07-24T13:05:33.010000"],["2024-07-24T13:05:34.010000"],["2024-07-24T13:05:35.010000"],["2024-07-24T13:05:36.010000"],["2024-07-24T13:05:37.010000"],["2024-07-24T13:05:38.010000"],["2024-07-24T13:05:39.010000"],["2024-07-24T13:05:40.010000"],["2024-07-24T13:05:41.010000"],["2024-07-24T13:05:42.010000"],["2024-07-24T13:05:43.010000"],["2024-07-24T13:05:44.010000"],["2024-07-24T13:05:45.010000"],["2024-07-24T13:05:46.010000"],["2024-07-24T13:05:47.010000"],["2024-07-24T13:05:48.010000"],["2024-07-24T13:05:49.010000"],["2024-07-24T13:05:50.010000"],["2024-07-24T13:05:51.010000"],["2024-07-24T13:05:52.010000"],["2024-07-24T13:05:53.010000"],["2024-07-24T13:05:54.010000"],["2024-07-24T13:05:55.010000"],["2024-07-24T13:05:56.010000"],["2024-07-24T13:05:57.010000"],["2024-07-24T13:05:58.010000"],["2024-07-24T13:05:59.010000"],["2024-07-24T13:06:00.010000"],["2024-07-24T13:06:01.010000"],["2024-07-24T13:06:02.010000"],["2024-07-24T13:06:03.010000"],["2024-07-24T13:06:04.010000"],["2024-07-24T13:06:05.010000"],["2024-07-24T13:06:06.010000"],["2024-07-24T13:06:07.010000"],["2024-07-24T13:06:08.010000"],["2024-07-24T13:06:09.010000"],["2024-07-24T13:06:10.010000"],["2024-07-24T13:06:11.010000"],["2024-07-24T13:06:12.010000"],["2024-07-24T13:06:13.010000"],["2024-07-24T13:06:14.010000"],["2024-07-24T13:06:15.010000"],["2024-07-24T13:06:16.010000"],["2024-07-24T13:06:17.010000"],["2024-07-24T13:06:18.010000"],["2024-07-24T13:06:19.010000"],["2024-07-24T13:06:20.010000"],["2024-07-24T13:06:21.010000"],["2024-07-24T13:06:22.010000"],["2024-07-24T13:06:23.010000"],["2024-07-24T13:06:24.010000"],["2024-07-24T13:06:25.010000"],["2024-07-24T13:06:26.010000"],["2024-07-24T13:06:27.010000"],["2024-07-24T13:06:28.010000"],["2024-07-24T13:06:29.010000"],["2024-07-24T13:06:30.010000"],["2024-07-24T13:06:31.010000"],["2024-07-24T13:06:32.010000"],["2024-07-24T13:06:33.010000"],["2024-07-24T13:06:34.010000"],["2024-07-24T13:06:35.010000"],["2024-07-24T13:06:36.010000"],["2024-07-24T13:06:37.010000"],["2024-07-24T13:06:38.010000"],["2024-07-24T13:06:39.010000"],["2024-07-24T13:06:40.010000"],["2024-07-24T13:06:41.010000"],["2024-07-24T13:06:42.010000"],["2024-07-24T13:06:43.010000"],["2024-07-24T13:06:44.010000"],["2024-07-24T13:06:45.010000"],["2024-07-24T13:06:46.010000"],["2024-07-24T13:06:47.010000"],["2024-07-24T13:06:48.010000"],["2024-07-24T13:06:49.010000"],["2024-07-24T13:06:50.010000"],["2024-07-24T13:06:51.010000"],["2024-07-24T13:06:52.010000"],["2024-07-24T13:06:53.010000"],["2024-07-24T13:06:54.010000"],["2024-07-24T13:06:55.010000"],["2024-07-24T13:06:56.010000"],["2024-07-24T13:06:57.010000"],["2024-07-24T13:06:58.010000"],["2024-07-24T13:06:59.010000"],["2024-07-24T13:07:00.010000"],["2024-07-24T13:07:01.010000"],["2024-07-24T13:07:02.010000"],["2024-07-24T13:07:03.010000"],["2024-07-24T13:07:04.010000"],["2024-07-24T13:07:05.010000"],["2024-07-24T13:07:06.010000"],["2024-07-24T13:07:07.010000"],["2024-07-24T13:07:08.010000"],["2024-07-24T13:07:09.010000"],["2024-07-24T13:07:10.010000"],["2024-07-24T13:07:11.010000"],["2024-07-24T13:07:12.010000"],["2024-07-24T13:07:13.010000"],["2024-07-24T13:07:14.010000"],["2024-07-24T13:07:15.010000"],["2024-07-24T13:07:16.010000"],["2024-07-24T13:07:17.010000"],["2024-07-24T13:07:18.010000"],["2024-07-24T13:07:19.010000"],["2024-07-24T13:07:20.010000"],["2024-07-24T13:07:21.010000"],["2024-07-24T13:07:22.010000"],["2024-07-24T13:07:23.010000"],["2024-07-24T13:07:24.010000"],["2024-07-24T13:07:25.010000"],["2024-07-24T13:07:26.010000"],["2024-07-24T13:07:27.010000"],["2024-07-24T13:07:28.010000"],["2024-07-24T13:07:29.010000"],["2024-07-24T13:07:30.010000"],["2024-07-24T13:07:31.010000"],["2024-07-24T13:07:32.010000"],["2024-07-24T13:07:33.010000"],["2024-07-24T13:07:34.010000"],["2024-07-24T13:07:35.010000"],["2024-07-24T13:07:36.010000"],["2024-07-24T13:07:37.010000"],["2024-07-24T13:07:38.010000"],["2024-07-24T13:07:39.010000"],["2024-07-24T13:07:40.010000"],["2024-07-24T13:07:41.010000"],["2024-07-24T13:07:42.010000"],["2024-07-24T13:07:43.010000"],["2024-07-24T13:07:44.010000"],["2024-07-24T13:07:45.010000"],["2024-07-24T13:07:46.010000"],["2024-07-24T13:07:47.010000"],["2024-07-24T13:07:48.010000"],["2024-07-24T13:07:49.010000"],["2024-07-24T13:07:50.010000"],["2024-07-24T13:07:51.010000"],["2024-07-24T13:07:52.010000"],["2024-07-24T13:07:53.010000"],["2024-07-24T13:07:54.010000"],["2024-07-24T13:07:55.010000"],["2024-07-24T13:07:56.010000"],["2024-07-24T13:07:57.010000"],["2024-07-24T13:07:58.010000"],["2024-07-24T13:07:59.010000"],["2024-07-24T13:08:00.010000"],["2024-07-24T13:08:01.010000"],["2024-07-24T13:08:02.010000"],["2024-07-24T13:08:03.010000"],["2024-07-24T13:08:04.010000"],["2024-07-24T13:08:05.010000"],["2024-07-24T13:08:06.010000"],["2024-07-24T13:08:07.010000"],["2024-07-24T13:08:08.010000"],["2024-07-24T13:08:09.010000"],["2024-07-24T13:08:10.010000"],["2024-07-24T13:08:11.010000"],["2024-07-24T13:08:12.010000"],["2024-07-24T13:08:13.010000"],["2024-07-24T13:08:14.010000"],["2024-07-24T13:08:15.010000"],["2024-07-24T13:08:16.010000"],["2024-07-24T13:08:17.010000"],["2024-07-24T13:08:18.010000"],["2024-07-24T13:08:19.010000"],["2024-07-24T13:08:20.010000"],["2024-07-24T13:08:21.010000"],["2024-07-24T13:08:22.010000"],["2024-07-24T13:08:23.010000"],["2024-07-24T13:08:24.010000"],["2024-07-24T13:08:25.010000"],["2024-07-24T13:08:26.010000"],["2024-07-24T13:08:27.010000"],["2024-07-24T13:08:28.010000"],["2024-07-24T13:08:29.010000"],["2024-07-24T13:08:30.010000"],["2024-07-24T13:08:31.010000"],["2024-07-24T13:08:32.010000"],["2024-07-24T13:08:33.010000"],["2024-07-24T13:08:34.010000"],["2024-07-24T13:08:35.010000"],["2024-07-24T13:08:36.010000"],["2024-07-24T13:08:37.010000"],["2024-07-24T13:08:38.010000"],["2024-07-24T13:08:39.010000"],["2024-07-24T13:08:40.010000"],["2024-07-24T13:08:41.010000"],["2024-07-24T13:08:42.010000"],["2024-07-24T13:08:43.010000"],["2024-07-24T13:08:44.010000"],["2024-07-24T13:08:45.010000"],["2024-07-24T13:08:46.010000"],["2024-07-24T13:08:47.010000"],["2024-07-24T13:08:48.010000"],["2024-07-24T13:08:49.010000"],["2024-07-24T13:08:50.010000"],["2024-07-24T13:08:51.010000"],["2024-07-24T13:08:52.010000"],["2024-07-24T13:08:53.010000"],["2024-07-24T13:08:54.010000"],["2024-07-24T13:08:55.010000"],["2024-07-24T13:08:56.010000"],["2024-07-24T13:08:57.010000"],["2024-07-24T13:08:58.010000"],["2024-07-24T13:08:59.010000"],["2024-07-24T13:09:00.010000"],["2024-07-24T13:09:01.010000"],["2024-07-24T13:09:02.010000"],["2024-07-24T13:09:03.010000"],["2024-07-24T13:09:04.010000"],["2024-07-24T13:09:05.010000"],["2024-07-24T13:09:06.010000"],["2024-07-24T13:09:07.010000"],["2024-07-24T13:09:08.010000"],["2024-07-24T13:09:09.010000"],["2024-07-24T13:09:10.010000"],["2024-07-24T13:09:11.010000"],["2024-07-24T13:09:12.010000"],["2024-07-24T13:09:13.010000"],["2024-07-24T13:09:14.010000"],["2024-07-24T13:09:15.010000"],["2024-07-24T13:09:16.010000"],["2024-07-24T13:09:17.010000"],["2024-07-24T13:09:18.010000"],["2024-07-24T13:09:19.010000"],["2024-07-24T13:09:20.010000"],["2024-07-24T13:09:21.010000"],["2024-07-24T13:09:22.010000"],["2024-07-24T13:09:23.010000"],["2024-07-24T13:09:24.010000"],["2024-07-24T13:09:25.010000"],["2024-07-24T13:09:26.010000"],["2024-07-24T13:09:27.010000"],["2024-07-24T13:09:28.010000"],["2024-07-24T13:09:29.010000"],["2024-07-24T13:09:30.010000"],["2024-07-24T13:09:31.010000"],["2024-07-24T13:09:32.010000"],["2024-07-24T13:09:33.010000"],["2024-07-24T13:09:34.010000"],["2024-07-24T13:09:35.010000"],["2024-07-24T13:09:36.010000"],["2024-07-24T13:09:37.010000"],["2024-07-24T13:09:38.010000"],["2024-07-24T13:09:39.010000"],["2024-07-24T13:09:40.010000"],["2024-07-24T13:09:41.010000"],["2024-07-24T13:09:42.010000"],["2024-07-24T13:09:43.010000"],["2024-07-24T13:09:44.010000"],["2024-07-24T13:09:45.010000"],["2024-07-24T13:09:46.010000"],["2024-07-24T13:09:47.010000"],["2024-07-24T13:09:48.010000"],["2024-07-24T13:09:49.010000"],["2024-07-24T13:09:50.010000"],["2024-07-24T13:09:51.010000"],["2024-07-24T13:09:52.010000"],["2024-07-24T13:09:53.010000"],["2024-07-24T13:09:54.010000"],["2024-07-24T13:09:55.010000"],["2024-07-24T13:09:56.010000"],["2024-07-24T13:09:57.010000"],["2024-07-24T13:09:58.010000"],["2024-07-24T13:09:59.010000"],["2024-07-24T13:10:00.010000"],["2024-07-24T13:10:01.010000"],["2024-07-24T13:10:02.010000"],["2024-07-24T13:10:03.010000"],["2024-07-24T13:10:04.010000"],["2024-07-24T13:10:05.010000"],["2024-07-24T13:10:06.010000"],["2024-07-24T13:10:07.010000"],["2024-07-24T13:10:08.010000"],["2024-07-24T13:10:09.010000"],["2024-07-24T13:10:10.010000"],["2024-07-24T13:10:11.010000"],["2024-07-24T13:10:12.010000"],["2024-07-24T13:10:13.010000"],["2024-07-24T13:10:14.010000"],["2024-07-24T13:10:15.010000"],["2024-07-24T13:10:16.010000"],["2024-07-24T13:10:17.010000"],["2024-07-24T13:10:18.010000"],["2024-07-24T13:10:19.010000"],["2024-07-24T13:10:20.010000"],["2024-07-24T13:10:21.010000"],["2024-07-24T13:10:22.010000"],["2024-07-24T13:10:23.010000"],["2024-07-24T13:10:24.010000"],["2024-07-24T13:10:25.010000"],["2024-07-24T13:10:26.010000"],["2024-07-24T13:10:27.010000"],["2024-07-24T13:10:28.010000"],["2024-07-24T13:10:29.010000"],["2024-07-24T13:10:30.010000"],["2024-07-24T13:10:31.010000"],["2024-07-24T13:10:32.010000"],["2024-07-24T13:10:33.010000"],["2024-07-24T13:10:34.010000"],["2024-07-24T13:10:35.010000"],["2024-07-24T13:10:36.010000"],["2024-07-24T13:10:37.010000"],["2024-07-24T13:10:38.010000"],["2024-07-24T13:10:39.010000"],["2024-07-24T13:10:40.010000"],["2024-07-24T13:10:41.010000"],["2024-07-24T13:10:42.010000"],["2024-07-24T13:10:43.010000"],["2024-07-24T13:10:44.010000"],["2024-07-24T13:10:45.010000"],["2024-07-24T13:10:46.010000"],["2024-07-24T13:10:47.010000"],["2024-07-24T13:10:48.010000"],["2024-07-24T13:10:49.010000"],["2024-07-24T13:10:50.010000"],["2024-07-24T13:10:51.010000"],["2024-07-24T13:10:52.010000"],["2024-07-24T13:10:53.010000"],["2024-07-24T13:10:54.010000"],["2024-07-24T13:10:55.010000"],["2024-07-24T13:10:56.010000"],["2024-07-24T13:10:57.010000"],["2024-07-24T13:10:58.010000"],["2024-07-24T13:10:59.010000"],["2024-07-24T13:11:00.010000"],["2024-07-24T13:11:01.010000"],["2024-07-24T13:11:02.010000"],["2024-07-24T13:11:03.010000"],["2024-07-24T13:11:04.010000"],["2024-07-24T13:11:05.010000"],["2024-07-24T13:11:06.010000"],["2024-07-24T13:11:07.010000"],["2024-07-24T13:11:08.010000"],["2024-07-24T13:11:09.010000"],["2024-07-24T13:11:10.010000"],["2024-07-24T13:11:11.010000"],["2024-07-24T13:11:12.010000"],["2024-07-24T13:11:13.010000"],["2024-07-24T13:11:14.010000"],["2024-07-24T13:11:15.010000"],["2024-07-24T13:11:16.010000"],["2024-07-24T13:11:17.010000"],["2024-07-24T13:11:18.010000"],["2024-07-24T13:11:19.010000"],["2024-07-24T13:11:20.010000"],["2024-07-24T13:11:21.010000"],["2024-07-24T13:11:22.010000"],["2024-07-24T13:11:23.010000"],["2024-07-24T13:11:24.010000"],["2024-07-24T13:11:25.010000"],["2024-07-24T13:11:26.010000"],["2024-07-24T13:11:27.010000"],["2024-07-24T13:11:28.010000"],["2024-07-24T13:11:29.010000"],["2024-07-24T13:11:30.010000"],["2024-07-24T13:11:31.010000"],["2024-07-24T13:11:32.010000"],["2024-07-24T13:11:33.010000"],["2024-07-24T13:11:34.010000"],["2024-07-24T13:11:35.010000"],["2024-07-24T13:11:36.010000"],["2024-07-24T13:11:37.010000"],["2024-07-24T13:11:38.010000"],["2024-07-24T13:11:39.010000"],["2024-07-24T13:11:40.010000"],["2024-07-24T13:11:41.010000"],["2024-07-24T13:11:42.010000"],["2024-07-24T13:11:43.010000"],["2024-07-24T13:11:44.010000"],["2024-07-24T13:11:45.010000"],["2024-07-24T13:11:46.010000"],["2024-07-24T13:11:47.010000"],["2024-07-24T13:11:48.010000"],["2024-07-24T13:11:49.010000"],["2024-07-24T13:11:50.010000"],["2024-07-24T13:11:51.010000"],["2024-07-24T13:11:52.010000"],["2024-07-24T13:11:53.010000"],["2024-07-24T13:11:54.010000"],["2024-07-24T13:11:55.010000"],["2024-07-24T13:11:56.010000"],["2024-07-24T13:11:57.010000"],["2024-07-24T13:11:58.010000"],["2024-07-24T13:11:59.010000"],["2024-07-24T13:12:00.010000"],["2024-07-24T13:12:01.010000"],["2024-07-24T13:12:02.010000"],["2024-07-24T13:12:03.010000"],["2024-07-24T13:12:04.010000"],["2024-07-24T13:12:05.010000"],["2024-07-24T13:12:06.010000"],["2024-07-24T13:12:07.010000"],["2024-07-24T13:12:08.010000"],["2024-07-24T13:12:09.010000"],["2024-07-24T13:12:10.010000"],["2024-07-24T13:12:11.010000"],["2024-07-24T13:12:12.010000"],["2024-07-24T13:12:13.010000"],["2024-07-24T13:12:14.010000"],["2024-07-24T13:12:15.010000"],["2024-07-24T13:12:16.010000"],["2024-07-24T13:12:17.010000"],["2024-07-24T13:12:18.010000"],["2024-07-24T13:12:19.010000"],["2024-07-24T13:12:20.010000"],["2024-07-24T13:12:21.010000"],["2024-07-24T13:12:22.010000"],["2024-07-24T13:12:23.010000"],["2024-07-24T13:12:24.010000"],["2024-07-24T13:12:25.010000"],["2024-07-24T13:12:26.010000"],["2024-07-24T13:12:27.010000"],["2024-07-24T13:12:28.010000"],["2024-07-24T13:12:29.010000"],["2024-07-24T13:12:30.010000"],["2024-07-24T13:12:31.010000"],["2024-07-24T13:12:32.010000"],["2024-07-24T13:12:33.010000"],["2024-07-24T13:12:34.010000"],["2024-07-24T13:12:35.010000"],["2024-07-24T13:12:36.010000"],["2024-07-24T13:12:37.010000"],["2024-07-24T13:12:38.010000"],["2024-07-24T13:12:39.010000"],["2024-07-24T13:12:40.010000"],["2024-07-24T13:12:41.010000"],["2024-07-24T13:12:42.010000"],["2024-07-24T13:12:43.010000"],["2024-07-24T13:12:44.010000"],["2024-07-24T13:12:45.010000"],["2024-07-24T13:12:46.010000"],["2024-07-24T13:12:47.010000"],["2024-07-24T13:12:48.010000"],["2024-07-24T13:12:49.010000"],["2024-07-24T13:12:50.010000"],["2024-07-24T13:12:51.010000"],["2024-07-24T13:12:52.010000"],["2024-07-24T13:12:53.010000"],["2024-07-24T13:12:54.010000"],["2024-07-24T13:12:55.010000"],["2024-07-24T13:12:56.010000"],["2024-07-24T13:12:57.010000"],["2024-07-24T13:12:58.010000"],["2024-07-24T13:12:59.010000"],["2024-07-24T13:13:00.010000"],["2024-07-24T13:13:01.010000"],["2024-07-24T13:13:02.010000"],["2024-07-24T13:13:03.010000"],["2024-07-24T13:13:04.010000"],["2024-07-24T13:13:05.010000"],["2024-07-24T13:13:06.010000"],["2024-07-24T13:13:07.010000"],["2024-07-24T13:13:08.010000"],["2024-07-24T13:13:09.010000"],["2024-07-24T13:13:10.010000"],["2024-07-24T13:13:11.010000"],["2024-07-24T13:13:12.010000"],["2024-07-24T13:13:13.010000"],["2024-07-24T13:13:14.010000"],["2024-07-24T13:13:15.010000"],["2024-07-24T13:13:16.010000"],["2024-07-24T13:13:17.010000"],["2024-07-24T13:13:18.010000"],["2024-07-24T13:13:19.010000"],["2024-07-24T13:13:20.010000"],["2024-07-24T13:13:21.010000"],["2024-07-24T13:13:22.010000"],["2024-07-24T13:13:23.010000"],["2024-07-24T13:13:24.010000"],["2024-07-24T13:13:25.010000"],["2024-07-24T13:13:26.010000"],["2024-07-24T13:13:27.010000"],["2024-07-24T13:13:28.010000"],["2024-07-24T13:13:29.010000"],["2024-07-24T13:13:30.010000"],["2024-07-24T13:13:31.010000"],["2024-07-24T13:13:32.010000"],["2024-07-24T13:13:33.010000"],["2024-07-24T13:13:34.010000"],["2024-07-24T13:13:35.010000"],["2024-07-24T13:13:36.010000"],["2024-07-24T13:13:37.010000"],["2024-07-24T13:13:38.010000"],["2024-07-24T13:13:39.010000"],["2024-07-24T13:13:40.010000"],["2024-07-24T13:13:41.010000"],["2024-07-24T13:13:42.010000"],["2024-07-24T13:13:43.010000"],["2024-07-24T13:13:44.010000"],["2024-07-24T13:13:45.010000"],["2024-07-24T13:13:46.010000"],["2024-07-24T13:13:47.010000"],["2024-07-24T13:13:48.010000"],["2024-07-24T13:13:49.010000"],["2024-07-24T13:13:50.010000"],["2024-07-24T13:13:51.010000"],["2024-07-24T13:13:52.010000"],["2024-07-24T13:13:53.010000"],["2024-07-24T13:13:54.010000"],["2024-07-24T13:13:55.010000"],["2024-07-24T13:13:56.010000"],["2024-07-24T13:13:57.010000"],["2024-07-24T13:13:58.010000"],["2024-07-24T13:13:59.010000"],["2024-07-24T13:14:00.010000"],["2024-07-24T13:14:01.010000"],["2024-07-24T13:14:02.010000"],["2024-07-24T13:14:03.010000"],["2024-07-24T13:14:04.010000"],["2024-07-24T13:14:05.010000"],["2024-07-24T13:14:06.010000"],["2024-07-24T13:14:07.010000"],["2024-07-24T13:14:08.010000"],["2024-07-24T13:14:09.010000"],["2024-07-24T13:14:10.010000"],["2024-07-24T13:14:11.010000"],["2024-07-24T13:14:12.010000"],["2024-07-24T13:14:13.010000"],["2024-07-24T13:14:14.010000"],["2024-07-24T13:14:15.010000"],["2024-07-24T13:14:16.010000"],["2024-07-24T13:14:17.010000"],["2024-07-24T13:14:18.010000"],["2024-07-24T13:14:19.010000"],["2024-07-24T13:14:20.010000"],["2024-07-24T13:14:21.010000"],["2024-07-24T13:14:22.010000"],["2024-07-24T13:14:23.010000"],["2024-07-24T13:14:24.010000"],["2024-07-24T13:14:25.010000"],["2024-07-24T13:14:26.010000"],["2024-07-24T13:14:27.010000"],["2024-07-24T13:14:28.010000"],["2024-07-24T13:14:29.010000"],["2024-07-24T13:14:30.010000"],["2024-07-24T13:14:31.010000"],["2024-07-24T13:14:32.010000"],["2024-07-24T13:14:33.010000"],["2024-07-24T13:14:34.010000"],["2024-07-24T13:14:35.010000"],["2024-07-24T13:14:36.010000"],["2024-07-24T13:14:37.010000"],["2024-07-24T13:14:38.010000"],["2024-07-24T13:14:39.010000"],["2024-07-24T13:14:40.010000"],["2024-07-24T13:14:41.010000"],["2024-07-24T13:14:42.010000"],["2024-07-24T13:14:43.010000"],["2024-07-24T13:14:44.010000"],["2024-07-24T13:14:45.010000"],["2024-07-24T13:14:46.010000"],["2024-07-24T13:14:47.010000"],["2024-07-24T13:14:48.010000"],["2024-07-24T13:14:49.010000"],["2024-07-24T13:14:50.010000"],["2024-07-24T13:14:51.010000"],["2024-07-24T13:14:52.010000"],["2024-07-24T13:14:53.010000"],["2024-07-24T13:14:54.010000"],["2024-07-24T13:14:55.010000"],["2024-07-24T13:14:56.010000"],["2024-07-24T13:14:57.010000"],["2024-07-24T13:14:58.010000"],["2024-07-24T13:14:59.010000"],["2024-07-24T13:15:00.010000"],["2024-07-24T13:15:01.010000"],["2024-07-24T13:15:02.010000"],["2024-07-24T13:15:03.010000"],["2024-07-24T13:15:04.010000"],["2024-07-24T13:15:05.010000"],["2024-07-24T13:15:06.010000"],["2024-07-24T13:15:07.010000"],["2024-07-24T13:15:08.010000"],["2024-07-24T13:15:09.010000"],["2024-07-24T13:15:10.010000"],["2024-07-24T13:15:11.010000"],["2024-07-24T13:15:12.010000"],["2024-07-24T13:15:13.010000"],["2024-07-24T13:15:14.010000"],["2024-07-24T13:15:15.010000"],["2024-07-24T13:15:16.010000"],["2024-07-24T13:15:17.010000"],["2024-07-24T13:15:18.010000"],["2024-07-24T13:15:19.010000"],["2024-07-24T13:15:20.010000"],["2024-07-24T13:15:21.010000"],["2024-07-24T13:15:22.010000"],["2024-07-24T13:15:23.010000"],["2024-07-24T13:15:24.010000"],["2024-07-24T13:15:25.010000"],["2024-07-24T13:15:26.010000"],["2024-07-24T13:15:27.010000"],["2024-07-24T13:15:28.010000"],["2024-07-24T13:15:29.010000"],["2024-07-24T13:15:30.010000"],["2024-07-24T13:15:31.010000"],["2024-07-24T13:15:32.010000"],["2024-07-24T13:15:33.010000"],["2024-07-24T13:15:34.010000"],["2024-07-24T13:15:35.010000"],["2024-07-24T13:15:36.010000"],["2024-07-24T13:15:37.010000"],["2024-07-24T13:15:38.010000"],["2024-07-24T13:15:39.010000"],["2024-07-24T13:15:40.010000"],["2024-07-24T13:15:41.010000"],["2024-07-24T13:15:42.010000"],["2024-07-24T13:15:43.010000"],["2024-07-24T13:15:44.010000"],["2024-07-24T13:15:45.010000"],["2024-07-24T13:15:46.010000"],["2024-07-24T13:15:47.010000"],["2024-07-24T13:15:48.010000"],["2024-07-24T13:15:49.010000"],["2024-07-24T13:15:50.010000"],["2024-07-24T13:15:51.010000"],["2024-07-24T13:15:52.010000"],["2024-07-24T13:15:53.010000"],["2024-07-24T13:15:54.010000"],["2024-07-24T13:15:55.010000"],["2024-07-24T13:15:56.010000"],["2024-07-24T13:15:57.010000"],["2024-07-24T13:15:58.010000"],["2024-07-24T13:15:59.010000"],["2024-07-24T13:16:00.010000"],["2024-07-24T13:16:01.010000"],["2024-07-24T13:16:02.010000"],["2024-07-24T13:16:03.010000"],["2024-07-24T13:16:04.010000"],["2024-07-24T13:16:05.010000"],["2024-07-24T13:16:06.010000"],["2024-07-24T13:16:07.010000"],["2024-07-24T13:16:08.010000"],["2024-07-24T13:16:09.010000"],["2024-07-24T13:16:10.010000"],["2024-07-24T13:16:11.010000"],["2024-07-24T13:16:12.010000"],["2024-07-24T13:16:13.010000"],["2024-07-24T13:16:14.010000"],["2024-07-24T13:16:15.010000"],["2024-07-24T13:16:16.010000"],["2024-07-24T13:16:17.010000"],["2024-07-24T13:16:18.010000"],["2024-07-24T13:16:19.010000"],["2024-07-24T13:16:20.010000"],["2024-07-24T13:16:21.010000"],["2024-07-24T13:16:22.010000"],["2024-07-24T13:16:23.010000"],["2024-07-24T13:16:24.010000"],["2024-07-24T13:16:25.010000"],["2024-07-24T13:16:26.010000"],["2024-07-24T13:16:27.010000"],["2024-07-24T13:16:28.010000"],["2024-07-24T13:16:29.010000"],["2024-07-24T13:16:30.010000"],["2024-07-24T13:16:31.010000"],["2024-07-24T13:16:32.010000"],["2024-07-24T13:16:33.010000"],["2024-07-24T13:16:34.010000"],["2024-07-24T13:16:35.010000"],["2024-07-24T13:16:36.010000"],["2024-07-24T13:16:37.010000"],["2024-07-24T13:16:38.010000"],["2024-07-24T13:16:39.010000"],["2024-07-24T13:16:40.010000"],["2024-07-24T13:16:41.010000"],["2024-07-24T13:16:42.010000"],["2024-07-24T13:16:43.010000"],["2024-07-24T13:16:44.010000"],["2024-07-24T13:16:45.010000"],["2024-07-24T13:16:46.010000"],["2024-07-24T13:16:47.010000"],["2024-07-24T13:16:48.010000"],["2024-07-24T13:16:49.010000"],["2024-07-24T13:16:50.010000"],["2024-07-24T13:16:51.010000"],["2024-07-24T13:16:52.010000"],["2024-07-24T13:16:53.010000"],["2024-07-24T13:16:54.010000"],["2024-07-24T13:16:55.010000"],["2024-07-24T13:16:56.010000"],["2024-07-24T13:16:57.010000"],["2024-07-24T13:16:58.010000"],["2024-07-24T13:16:59.010000"],["2024-07-24T13:17:00.010000"],["2024-07-24T13:17:01.010000"],["2024-07-24T13:17:02.010000"],["2024-07-24T13:17:03.010000"],["2024-07-24T13:17:04.010000"],["2024-07-24T13:17:05.010000"],["2024-07-24T13:17:06.010000"],["2024-07-24T13:17:07.010000"],["2024-07-24T13:17:08.010000"],["2024-07-24T13:17:09.010000"],["2024-07-24T13:17:10.010000"],["2024-07-24T13:17:11.010000"],["2024-07-24T13:17:12.010000"],["2024-07-24T13:17:13.010000"],["2024-07-24T13:17:14.010000"],["2024-07-24T13:17:15.010000"],["2024-07-24T13:17:16.010000"],["2024-07-24T13:17:17.010000"],["2024-07-24T13:17:18.010000"],["2024-07-24T13:17:19.010000"],["2024-07-24T13:17:20.010000"],["2024-07-24T13:17:21.010000"],["2024-07-24T13:17:22.010000"],["2024-07-24T13:17:23.010000"],["2024-07-24T13:17:24.010000"],["2024-07-24T13:17:25.010000"],["2024-07-24T13:17:26.010000"],["2024-07-24T13:17:27.010000"],["2024-07-24T13:17:28.010000"],["2024-07-24T13:17:29.010000"],["2024-07-24T13:17:30.010000"],["2024-07-24T13:17:31.010000"],["2024-07-24T13:17:32.010000"],["2024-07-24T13:17:33.010000"],["2024-07-24T13:17:34.010000"],["2024-07-24T13:17:35.010000"],["2024-07-24T13:17:36.010000"],["2024-07-24T13:17:37.010000"],["2024-07-24T13:17:38.010000"],["2024-07-24T13:17:39.010000"],["2024-07-24T13:17:40.010000"],["2024-07-24T13:17:41.010000"],["2024-07-24T13:17:42.010000"],["2024-07-24T13:17:43.010000"],["2024-07-24T13:17:44.010000"],["2024-07-24T13:17:45.010000"],["2024-07-24T13:17:46.010000"],["2024-07-24T13:17:47.010000"],["2024-07-24T13:17:48.010000"],["2024-07-24T13:17:49.010000"],["2024-07-24T13:17:50.010000"],["2024-07-24T13:17:51.010000"],["2024-07-24T13:17:52.010000"],["2024-07-24T13:17:53.010000"],["2024-07-24T13:17:54.010000"],["2024-07-24T13:17:55.010000"],["2024-07-24T13:17:56.010000"],["2024-07-24T13:17:57.010000"],["2024-07-24T13:17:58.010000"],["2024-07-24T13:17:59.010000"],["2024-07-24T13:18:00.010000"],["2024-07-24T13:18:01.010000"],["2024-07-24T13:18:02.010000"],["2024-07-24T13:18:03.010000"],["2024-07-24T13:18:04.010000"],["2024-07-24T13:18:05.010000"],["2024-07-24T13:18:06.010000"],["2024-07-24T13:18:07.010000"],["2024-07-24T13:18:08.010000"],["2024-07-24T13:18:09.010000"],["2024-07-24T13:18:10.010000"],["2024-07-24T13:18:11.010000"],["2024-07-24T13:18:12.010000"],["2024-07-24T13:18:13.010000"],["2024-07-24T13:18:14.010000"],["2024-07-24T13:18:15.010000"],["2024-07-24T13:18:16.010000"],["2024-07-24T13:18:17.010000"],["2024-07-24T13:18:18.010000"],["2024-07-24T13:18:19.010000"],["2024-07-24T13:18:20.010000"],["2024-07-24T13:18:21.010000"],["2024-07-24T13:18:22.010000"],["2024-07-24T13:18:23.010000"],["2024-07-24T13:18:24.010000"],["2024-07-24T13:18:25.010000"],["2024-07-24T13:18:26.010000"],["2024-07-24T13:18:27.010000"],["2024-07-24T13:18:28.010000"],["2024-07-24T13:18:29.010000"],["2024-07-24T13:18:30.010000"],["2024-07-24T13:18:31.010000"],["2024-07-24T13:18:32.010000"],["2024-07-24T13:18:33.010000"],["2024-07-24T13:18:34.010000"],["2024-07-24T13:18:35.010000"],["2024-07-24T13:18:36.010000"],["2024-07-24T13:18:37.010000"],["2024-07-24T13:18:38.010000"],["2024-07-24T13:18:39.010000"],["2024-07-24T13:18:40.010000"],["2024-07-24T13:18:41.010000"],["2024-07-24T13:18:42.010000"],["2024-07-24T13:18:43.010000"],["2024-07-24T13:18:44.010000"],["2024-07-24T13:18:45.010000"],["2024-07-24T13:18:46.010000"],["2024-07-24T13:18:47.010000"],["2024-07-24T13:18:48.010000"],["2024-07-24T13:18:49.010000"],["2024-07-24T13:18:50.010000"],["2024-07-24T13:18:51.010000"],["2024-07-24T13:18:52.010000"],["2024-07-24T13:18:53.010000"],["2024-07-24T13:18:54.010000"],["2024-07-24T13:18:55.010000"],["2024-07-24T13:18:56.010000"],["2024-07-24T13:18:57.010000"],["2024-07-24T13:18:58.010000"],["2024-07-24T13:18:59.010000"],["2024-07-24T13:19:00.010000"],["2024-07-24T13:19:01.010000"],["2024-07-24T13:19:02.010000"],["2024-07-24T13:19:03.010000"],["2024-07-24T13:19:04.010000"],["2024-07-24T13:19:05.010000"],["2024-07-24T13:19:06.010000"],["2024-07-24T13:19:07.010000"],["2024-07-24T13:19:08.010000"],["2024-07-24T13:19:09.010000"],["2024-07-24T13:19:10.010000"],["2024-07-24T13:19:11.010000"],["2024-07-24T13:19:12.010000"],["2024-07-24T13:19:13.010000"],["2024-07-24T13:19:14.010000"],["2024-07-24T13:19:15.010000"],["2024-07-24T13:19:16.010000"],["2024-07-24T13:19:17.010000"],["2024-07-24T13:19:18.010000"],["2024-07-24T13:19:19.010000"],["2024-07-24T13:19:20.010000"],["2024-07-24T13:19:21.010000"],["2024-07-24T13:19:22.010000"],["2024-07-24T13:19:23.010000"],["2024-07-24T13:19:24.010000"],["2024-07-24T13:19:25.010000"],["2024-07-24T13:19:26.010000"],["2024-07-24T13:19:27.010000"],["2024-07-24T13:19:28.010000"],["2024-07-24T13:19:29.010000"],["2024-07-24T13:19:30.010000"],["2024-07-24T13:19:31.010000"],["2024-07-24T13:19:32.010000"],["2024-07-24T13:19:33.010000"],["2024-07-24T13:19:34.010000"],["2024-07-24T13:19:35.010000"],["2024-07-24T13:19:36.010000"],["2024-07-24T13:19:37.010000"],["2024-07-24T13:19:38.010000"],["2024-07-24T13:19:39.010000"],["2024-07-24T13:19:40.010000"],["2024-07-24T13:19:41.010000"],["2024-07-24T13:19:42.010000"],["2024-07-24T13:19:43.010000"],["2024-07-24T13:19:44.010000"],["2024-07-24T13:19:45.010000"],["2024-07-24T13:19:46.010000"],["2024-07-24T13:19:47.010000"],["2024-07-24T13:19:48.010000"],["2024-07-24T13:19:49.010000"],["2024-07-24T13:19:50.010000"],["2024-07-24T13:19:51.010000"],["2024-07-24T13:19:52.010000"],["2024-07-24T13:19:53.010000"],["2024-07-24T13:19:54.010000"],["2024-07-24T13:19:55.010000"],["2024-07-24T13:19:56.010000"],["2024-07-24T13:19:57.010000"],["2024-07-24T13:19:58.010000"],["2024-07-24T13:19:59.010000"],["2024-07-24T13:20:00.010000"],["2024-07-24T13:20:01.010000"],["2024-07-24T13:20:02.010000"],["2024-07-24T13:20:03.010000"],["2024-07-24T13:20:04.010000"],["2024-07-24T13:20:05.010000"],["2024-07-24T13:20:06.010000"],["2024-07-24T13:20:07.010000"],["2024-07-24T13:20:08.010000"],["2024-07-24T13:20:09.010000"],["2024-07-24T13:20:10.010000"],["2024-07-24T13:20:11.010000"],["2024-07-24T13:20:12.010000"],["2024-07-24T13:20:13.010000"],["2024-07-24T13:20:14.010000"],["2024-07-24T13:20:15.010000"],["2024-07-24T13:20:16.010000"],["2024-07-24T13:20:17.010000"],["2024-07-24T13:20:18.010000"],["2024-07-24T13:20:19.010000"],["2024-07-24T13:20:20.010000"],["2024-07-24T13:20:21.010000"],["2024-07-24T13:20:22.010000"],["2024-07-24T13:20:23.010000"],["2024-07-24T13:20:24.010000"],["2024-07-24T13:20:25.010000"],["2024-07-24T13:20:26.010000"],["2024-07-24T13:20:27.010000"],["2024-07-24T13:20:28.010000"],["2024-07-24T13:20:29.010000"],["2024-07-24T13:20:30.010000"],["2024-07-24T13:20:31.010000"],["2024-07-24T13:20:32.010000"],["2024-07-24T13:20:33.010000"],["2024-07-24T13:20:34.010000"],["2024-07-24T13:20:35.010000"],["2024-07-24T13:20:36.010000"],["2024-07-24T13:20:37.010000"],["2024-07-24T13:20:38.010000"],["2024-07-24T13:20:39.010000"],["2024-07-24T13:20:40.010000"],["2024-07-24T13:20:41.010000"],["2024-07-24T13:20:42.010000"],["2024-07-24T13:20:43.010000"],["2024-07-24T13:20:44.010000"],["2024-07-24T13:20:45.010000"],["2024-07-24T13:20:46.010000"],["2024-07-24T13:20:47.010000"],["2024-07-24T13:20:48.010000"],["2024-07-24T13:20:49.010000"],["2024-07-24T13:20:50.010000"],["2024-07-24T13:20:51.010000"],["2024-07-24T13:20:52.010000"],["2024-07-24T13:20:53.010000"],["2024-07-24T13:20:54.010000"],["2024-07-24T13:20:55.010000"],["2024-07-24T13:20:56.010000"],["2024-07-24T13:20:57.010000"],["2024-07-24T13:20:58.010000"],["2024-07-24T13:20:59.010000"],["2024-07-24T13:21:00.010000"],["2024-07-24T13:21:01.010000"],["2024-07-24T13:21:02.010000"],["2024-07-24T13:21:03.010000"],["2024-07-24T13:21:04.010000"],["2024-07-24T13:21:05.010000"],["2024-07-24T13:21:06.010000"],["2024-07-24T13:21:07.010000"],["2024-07-24T13:21:08.010000"],["2024-07-24T13:21:09.010000"],["2024-07-24T13:21:10.010000"],["2024-07-24T13:21:11.010000"],["2024-07-24T13:21:12.010000"],["2024-07-24T13:21:13.010000"],["2024-07-24T13:21:14.010000"],["2024-07-24T13:21:15.010000"],["2024-07-24T13:21:16.010000"],["2024-07-24T13:21:17.010000"],["2024-07-24T13:21:18.010000"],["2024-07-24T13:21:19.010000"],["2024-07-24T13:21:20.010000"],["2024-07-24T13:21:21.010000"],["2024-07-24T13:21:22.010000"],["2024-07-24T13:21:23.010000"],["2024-07-24T13:21:24.010000"],["2024-07-24T13:21:25.010000"],["2024-07-24T13:21:26.010000"],["2024-07-24T13:21:27.010000"],["2024-07-24T13:21:28.010000"],["2024-07-24T13:21:29.010000"],["2024-07-24T13:21:30.010000"],["2024-07-24T13:21:31.010000"],["2024-07-24T13:21:32.010000"],["2024-07-24T13:21:33.010000"],["2024-07-24T13:21:34.010000"],["2024-07-24T13:21:35.010000"],["2024-07-24T13:21:36.010000"],["2024-07-24T13:21:37.010000"],["2024-07-24T13:21:38.010000"],["2024-07-24T13:21:39.010000"],["2024-07-24T13:21:40.010000"],["2024-07-24T13:21:41.010000"],["2024-07-24T13:21:42.010000"],["2024-07-24T13:21:43.010000"],["2024-07-24T13:21:44.010000"],["2024-07-24T13:21:45.010000"],["2024-07-24T13:21:46.010000"],["2024-07-24T13:21:47.010000"],["2024-07-24T13:21:48.010000"],["2024-07-24T13:21:49.010000"],["2024-07-24T13:21:50.010000"],["2024-07-24T13:21:51.010000"],["2024-07-24T13:21:52.010000"],["2024-07-24T13:21:53.010000"],["2024-07-24T13:21:54.010000"],["2024-07-24T13:21:55.010000"],["2024-07-24T13:21:56.010000"],["2024-07-24T13:21:57.010000"],["2024-07-24T13:21:58.010000"],["2024-07-24T13:21:59.010000"],["2024-07-24T13:22:00.010000"],["2024-07-24T13:22:01.010000"],["2024-07-24T13:22:02.010000"],["2024-07-24T13:22:03.010000"],["2024-07-24T13:22:04.010000"],["2024-07-24T13:22:05.010000"],["2024-07-24T13:22:06.010000"],["2024-07-24T13:22:07.010000"],["2024-07-24T13:22:08.010000"],["2024-07-24T13:22:09.010000"],["2024-07-24T13:22:10.010000"],["2024-07-24T13:22:11.010000"],["2024-07-24T13:22:12.010000"],["2024-07-24T13:22:13.010000"],["2024-07-24T13:22:14.010000"],["2024-07-24T13:22:15.010000"],["2024-07-24T13:22:16.010000"],["2024-07-24T13:22:17.010000"],["2024-07-24T13:22:18.010000"],["2024-07-24T13:22:19.010000"],["2024-07-24T13:22:20.010000"],["2024-07-24T13:22:21.010000"],["2024-07-24T13:22:22.010000"],["2024-07-24T13:22:23.010000"],["2024-07-24T13:22:24.010000"],["2024-07-24T13:22:25.010000"],["2024-07-24T13:22:26.010000"],["2024-07-24T13:22:27.010000"],["2024-07-24T13:22:28.010000"],["2024-07-24T13:22:29.010000"],["2024-07-24T13:22:30.010000"],["2024-07-24T13:22:31.010000"],["2024-07-24T13:22:32.010000"],["2024-07-24T13:22:33.010000"],["2024-07-24T13:22:34.010000"],["2024-07-24T13:22:35.010000"],["2024-07-24T13:22:36.010000"],["2024-07-24T13:22:37.010000"],["2024-07-24T13:22:38.010000"],["2024-07-24T13:22:39.010000"],["2024-07-24T13:22:40.010000"],["2024-07-24T13:22:41.010000"],["2024-07-24T13:22:42.010000"],["2024-07-24T13:22:43.010000"],["2024-07-24T13:22:44.010000"],["2024-07-24T13:22:45.010000"],["2024-07-24T13:22:46.010000"],["2024-07-24T13:22:47.010000"],["2024-07-24T13:22:48.010000"],["2024-07-24T13:22:49.010000"],["2024-07-24T13:22:50.010000"],["2024-07-24T13:22:51.010000"],["2024-07-24T13:22:52.010000"],["2024-07-24T13:22:53.010000"],["2024-07-24T13:22:54.010000"],["2024-07-24T13:22:55.010000"],["2024-07-24T13:22:56.010000"],["2024-07-24T13:22:57.010000"],["2024-07-24T13:22:58.010000"],["2024-07-24T13:22:59.010000"],["2024-07-24T13:23:00.010000"],["2024-07-24T13:23:01.010000"],["2024-07-24T13:23:02.010000"],["2024-07-24T13:23:03.010000"],["2024-07-24T13:23:04.010000"],["2024-07-24T13:23:05.010000"],["2024-07-24T13:23:06.010000"],["2024-07-24T13:23:07.010000"],["2024-07-24T13:23:08.010000"],["2024-07-24T13:23:09.010000"],["2024-07-24T13:23:10.010000"],["2024-07-24T13:23:11.010000"],["2024-07-24T13:23:12.010000"],["2024-07-24T13:23:13.010000"],["2024-07-24T13:23:14.010000"],["2024-07-24T13:23:15.010000"],["2024-07-24T13:23:16.010000"],["2024-07-24T13:23:17.010000"],["2024-07-24T13:23:18.010000"],["2024-07-24T13:23:19.010000"],["2024-07-24T13:23:20.010000"],["2024-07-24T13:23:21.010000"],["2024-07-24T13:23:22.010000"],["2024-07-24T13:23:23.010000"],["2024-07-24T13:23:24.010000"],["2024-07-24T13:23:25.010000"],["2024-07-24T13:23:26.010000"],["2024-07-24T13:23:27.010000"],["2024-07-24T13:23:28.010000"],["2024-07-24T13:23:29.010000"],["2024-07-24T13:23:30.010000"],["2024-07-24T13:23:31.010000"],["2024-07-24T13:23:32.010000"],["2024-07-24T13:23:33.010000"],["2024-07-24T13:23:34.010000"],["2024-07-24T13:23:35.010000"],["2024-07-24T13:23:36.010000"],["2024-07-24T13:23:37.010000"],["2024-07-24T13:23:38.010000"],["2024-07-24T13:23:39.010000"],["2024-07-24T13:23:40.010000"],["2024-07-24T13:23:41.010000"],["2024-07-24T13:23:42.010000"],["2024-07-24T13:23:43.010000"],["2024-07-24T13:23:44.010000"],["2024-07-24T13:23:45.010000"],["2024-07-24T13:23:46.010000"],["2024-07-24T13:23:47.010000"],["2024-07-24T13:23:48.010000"],["2024-07-24T13:23:49.010000"],["2024-07-24T13:23:50.010000"],["2024-07-24T13:23:51.010000"],["2024-07-24T13:23:52.010000"],["2024-07-24T13:23:53.010000"],["2024-07-24T13:23:54.010000"],["2024-07-24T13:23:55.010000"],["2024-07-24T13:23:56.010000"],["2024-07-24T13:23:57.010000"],["2024-07-24T13:23:58.010000"],["2024-07-24T13:23:59.010000"],["2024-07-24T13:24:00.010000"],["2024-07-24T13:24:01.010000"],["2024-07-24T13:24:02.010000"],["2024-07-24T13:24:03.010000"],["2024-07-24T13:24:04.010000"],["2024-07-24T13:24:05.010000"],["2024-07-24T13:24:06.010000"],["2024-07-24T13:24:07.010000"],["2024-07-24T13:24:08.010000"],["2024-07-24T13:24:09.010000"],["2024-07-24T13:24:10.010000"],["2024-07-24T13:24:11.010000"],["2024-07-24T13:24:12.010000"],["2024-07-24T13:24:13.010000"],["2024-07-24T13:24:14.010000"],["2024-07-24T13:24:15.010000"],["2024-07-24T13:24:16.010000"],["2024-07-24T13:24:17.010000"],["2024-07-24T13:24:18.010000"],["2024-07-24T13:24:19.010000"],["2024-07-24T13:24:20.010000"],["2024-07-24T13:24:21.010000"],["2024-07-24T13:24:22.010000"],["2024-07-24T13:24:23.010000"],["2024-07-24T13:24:24.010000"],["2024-07-24T13:24:25.010000"],["2024-07-24T13:24:26.010000"],["2024-07-24T13:24:27.010000"],["2024-07-24T13:24:28.010000"],["2024-07-24T13:24:29.010000"],["2024-07-24T13:24:30.010000"],["2024-07-24T13:24:31.010000"],["2024-07-24T13:24:32.010000"],["2024-07-24T13:24:33.010000"],["2024-07-24T13:24:34.010000"],["2024-07-24T13:24:35.010000"],["2024-07-24T13:24:36.010000"],["2024-07-24T13:24:37.010000"],["2024-07-24T13:24:38.010000"],["2024-07-24T13:24:39.010000"],["2024-07-24T13:24:40.010000"],["2024-07-24T13:24:41.010000"],["2024-07-24T13:24:42.010000"],["2024-07-24T13:24:43.010000"],["2024-07-24T13:24:44.010000"],["2024-07-24T13:24:45.010000"],["2024-07-24T13:24:46.010000"],["2024-07-24T13:24:47.010000"],["2024-07-24T13:24:48.010000"],["2024-07-24T13:24:49.010000"],["2024-07-24T13:24:50.010000"],["2024-07-24T13:24:51.010000"],["2024-07-24T13:24:52.010000"],["2024-07-24T13:24:53.010000"],["2024-07-24T13:24:54.010000"],["2024-07-24T13:24:55.010000"],["2024-07-24T13:24:56.010000"],["2024-07-24T13:24:57.010000"],["2024-07-24T13:24:58.010000"],["2024-07-24T13:24:59.010000"],["2024-07-24T13:25:00.010000"],["2024-07-24T13:25:01.010000"],["2024-07-24T13:25:02.010000"],["2024-07-24T13:25:03.010000"],["2024-07-24T13:25:04.010000"],["2024-07-24T13:25:05.010000"],["2024-07-24T13:25:06.010000"],["2024-07-24T13:25:07.010000"],["2024-07-24T13:25:08.010000"],["2024-07-24T13:25:09.010000"],["2024-07-24T13:25:10.010000"],["2024-07-24T13:25:11.010000"],["2024-07-24T13:25:12.010000"],["2024-07-24T13:25:13.010000"],["2024-07-24T13:25:14.010000"],["2024-07-24T13:25:15.010000"],["2024-07-24T13:25:16.010000"],["2024-07-24T13:25:17.010000"],["2024-07-24T13:25:18.010000"],["2024-07-24T13:25:19.010000"],["2024-07-24T13:25:20.010000"],["2024-07-24T13:25:21.010000"],["2024-07-24T13:25:22.010000"],["2024-07-24T13:25:23.010000"],["2024-07-24T13:25:24.010000"],["2024-07-24T13:25:25.010000"],["2024-07-24T13:25:26.010000"],["2024-07-24T13:25:27.010000"],["2024-07-24T13:25:28.010000"],["2024-07-24T13:25:29.010000"],["2024-07-24T13:25:30.010000"],["2024-07-24T13:25:31.010000"],["2024-07-24T13:25:32.010000"],["2024-07-24T13:25:33.010000"],["2024-07-24T13:25:34.010000"],["2024-07-24T13:25:35.010000"],["2024-07-24T13:25:36.010000"],["2024-07-24T13:25:37.010000"],["2024-07-24T13:25:38.010000"],["2024-07-24T13:25:39.010000"],["2024-07-24T13:25:40.010000"],["2024-07-24T13:25:41.010000"],["2024-07-24T13:25:42.010000"],["2024-07-24T13:25:43.010000"],["2024-07-24T13:25:44.010000"],["2024-07-24T13:25:45.010000"],["2024-07-24T13:25:46.010000"],["2024-07-24T13:25:47.010000"],["2024-07-24T13:25:48.010000"],["2024-07-24T13:25:49.010000"],["2024-07-24T13:25:50.010000"],["2024-07-24T13:25:51.010000"],["2024-07-24T13:25:52.010000"],["2024-07-24T13:25:53.010000"],["2024-07-24T13:25:54.010000"],["2024-07-24T13:25:55.010000"],["2024-07-24T13:25:56.010000"],["2024-07-24T13:25:57.010000"],["2024-07-24T13:25:58.010000"],["2024-07-24T13:25:59.010000"],["2024-07-24T13:26:00.010000"],["2024-07-24T13:26:01.010000"],["2024-07-24T13:26:02.010000"],["2024-07-24T13:26:03.010000"],["2024-07-24T13:26:04.010000"],["2024-07-24T13:26:05.010000"],["2024-07-24T13:26:06.010000"],["2024-07-24T13:26:07.010000"],["2024-07-24T13:26:08.010000"],["2024-07-24T13:26:09.010000"],["2024-07-24T13:26:10.010000"],["2024-07-24T13:26:11.010000"],["2024-07-24T13:26:12.010000"],["2024-07-24T13:26:13.010000"],["2024-07-24T13:26:14.010000"],["2024-07-24T13:26:15.010000"],["2024-07-24T13:26:16.010000"],["2024-07-24T13:26:17.010000"],["2024-07-24T13:26:18.010000"],["2024-07-24T13:26:19.010000"],["2024-07-24T13:26:20.010000"],["2024-07-24T13:26:21.010000"],["2024-07-24T13:26:22.010000"],["2024-07-24T13:26:23.010000"],["2024-07-24T13:26:24.010000"],["2024-07-24T13:26:25.010000"],["2024-07-24T13:26:26.010000"],["2024-07-24T13:26:27.010000"],["2024-07-24T13:26:28.010000"],["2024-07-24T13:26:29.010000"],["2024-07-24T13:26:30.010000"],["2024-07-24T13:26:31.010000"],["2024-07-24T13:26:32.010000"],["2024-07-24T13:26:33.010000"],["2024-07-24T13:26:34.010000"],["2024-07-24T13:26:35.010000"],["2024-07-24T13:26:36.010000"],["2024-07-24T13:26:37.010000"],["2024-07-24T13:26:38.010000"],["2024-07-24T13:26:39.010000"],["2024-07-24T13:26:40.010000"],["2024-07-24T13:26:41.010000"],["2024-07-24T13:26:42.010000"],["2024-07-24T13:26:43.010000"],["2024-07-24T13:26:44.010000"],["2024-07-24T13:26:45.010000"],["2024-07-24T13:26:46.010000"],["2024-07-24T13:26:47.010000"],["2024-07-24T13:26:48.010000"],["2024-07-24T13:26:49.010000"],["2024-07-24T13:26:50.010000"],["2024-07-24T13:26:51.010000"],["2024-07-24T13:26:52.010000"],["2024-07-24T13:26:53.010000"],["2024-07-24T13:26:54.010000"],["2024-07-24T13:26:55.010000"],["2024-07-24T13:26:56.010000"],["2024-07-24T13:26:57.010000"],["2024-07-24T13:26:58.010000"],["2024-07-24T13:26:59.010000"],["2024-07-24T13:27:00.010000"],["2024-07-24T13:27:01.010000"],["2024-07-24T13:27:02.010000"],["2024-07-24T13:27:03.010000"],["2024-07-24T13:27:04.010000"],["2024-07-24T13:27:05.010000"],["2024-07-24T13:27:06.010000"],["2024-07-24T13:27:07.010000"],["2024-07-24T13:27:08.010000"],["2024-07-24T13:27:09.010000"],["2024-07-24T13:27:10.010000"],["2024-07-24T13:27:11.010000"],["2024-07-24T13:27:12.010000"],["2024-07-24T13:27:13.010000"],["2024-07-24T13:27:14.010000"],["2024-07-24T13:27:15.010000"],["2024-07-24T13:27:16.010000"],["2024-07-24T13:27:17.010000"],["2024-07-24T13:27:18.010000"],["2024-07-24T13:27:19.010000"],["2024-07-24T13:27:20.010000"],["2024-07-24T13:27:21.010000"],["2024-07-24T13:27:22.010000"],["2024-07-24T13:27:23.010000"],["2024-07-24T13:27:24.010000"],["2024-07-24T13:27:25.010000"],["2024-07-24T13:27:26.010000"],["2024-07-24T13:27:27.010000"],["2024-07-24T13:27:28.010000"],["2024-07-24T13:27:29.010000"],["2024-07-24T13:27:30.010000"],["2024-07-24T13:27:31.010000"],["2024-07-24T13:27:32.010000"],["2024-07-24T13:27:33.010000"],["2024-07-24T13:27:34.010000"],["2024-07-24T13:27:35.010000"],["2024-07-24T13:27:36.010000"],["2024-07-24T13:27:37.010000"],["2024-07-24T13:27:38.010000"],["2024-07-24T13:27:39.010000"],["2024-07-24T13:27:40.010000"],["2024-07-24T13:27:41.010000"],["2024-07-24T13:27:42.010000"],["2024-07-24T13:27:43.010000"],["2024-07-24T13:27:44.010000"],["2024-07-24T13:27:45.010000"],["2024-07-24T13:27:46.010000"],["2024-07-24T13:27:47.010000"],["2024-07-24T13:27:48.010000"],["2024-07-24T13:27:49.010000"],["2024-07-24T13:27:50.010000"],["2024-07-24T13:27:51.010000"],["2024-07-24T13:27:52.010000"],["2024-07-24T13:27:53.010000"],["2024-07-24T13:27:54.010000"],["2024-07-24T13:27:55.010000"],["2024-07-24T13:27:56.010000"],["2024-07-24T13:27:57.010000"],["2024-07-24T13:27:58.010000"],["2024-07-24T13:27:59.010000"],["2024-07-24T13:28:00.010000"],["2024-07-24T13:28:01.010000"],["2024-07-24T13:28:02.010000"],["2024-07-24T13:28:03.010000"],["2024-07-24T13:28:04.010000"],["2024-07-24T13:28:05.010000"],["2024-07-24T13:28:06.010000"],["2024-07-24T13:28:07.010000"],["2024-07-24T13:28:08.010000"],["2024-07-24T13:28:09.010000"],["2024-07-24T13:28:10.010000"],["2024-07-24T13:28:11.010000"],["2024-07-24T13:28:12.010000"],["2024-07-24T13:28:13.010000"],["2024-07-24T13:28:14.010000"],["2024-07-24T13:28:15.010000"],["2024-07-24T13:28:16.010000"],["2024-07-24T13:28:17.010000"],["2024-07-24T13:28:18.010000"],["2024-07-24T13:28:19.010000"],["2024-07-24T13:28:20.010000"],["2024-07-24T13:28:21.010000"],["2024-07-24T13:28:22.010000"],["2024-07-24T13:28:23.010000"],["2024-07-24T13:28:24.010000"],["2024-07-24T13:28:25.010000"],["2024-07-24T13:28:26.010000"],["2024-07-24T13:28:27.010000"],["2024-07-24T13:28:28.010000"],["2024-07-24T13:28:29.010000"],["2024-07-24T13:28:30.010000"],["2024-07-24T13:28:31.010000"],["2024-07-24T13:28:32.010000"],["2024-07-24T13:28:33.010000"],["2024-07-24T13:28:34.010000"],["2024-07-24T13:28:35.010000"],["2024-07-24T13:28:36.010000"],["2024-07-24T13:28:37.010000"],["2024-07-24T13:28:38.010000"],["2024-07-24T13:28:39.010000"],["2024-07-24T13:28:40.010000"],["2024-07-24T13:28:41.010000"],["2024-07-24T13:28:42.010000"],["2024-07-24T13:28:43.010000"],["2024-07-24T13:28:44.010000"],["2024-07-24T13:28:45.010000"],["2024-07-24T13:28:46.010000"],["2024-07-24T13:28:47.010000"],["2024-07-24T13:28:48.010000"],["2024-07-24T13:28:49.010000"],["2024-07-24T13:28:50.010000"],["2024-07-24T13:28:51.010000"],["2024-07-24T13:28:52.010000"],["2024-07-24T13:28:53.010000"],["2024-07-24T13:28:54.010000"],["2024-07-24T13:28:55.010000"],["2024-07-24T13:28:56.010000"],["2024-07-24T13:28:57.010000"],["2024-07-24T13:28:58.010000"],["2024-07-24T13:28:59.010000"],["2024-07-24T13:29:00.010000"],["2024-07-24T13:29:01.010000"],["2024-07-24T13:29:02.010000"],["2024-07-24T13:29:03.010000"],["2024-07-24T13:29:04.010000"],["2024-07-24T13:29:05.010000"],["2024-07-24T13:29:06.010000"],["2024-07-24T13:29:07.010000"],["2024-07-24T13:29:08.010000"],["2024-07-24T13:29:09.010000"],["2024-07-24T13:29:10.010000"],["2024-07-24T13:29:11.010000"],["2024-07-24T13:29:12.010000"],["2024-07-24T13:29:13.010000"],["2024-07-24T13:29:14.010000"],["2024-07-24T13:29:15.010000"],["2024-07-24T13:29:16.010000"],["2024-07-24T13:29:17.010000"],["2024-07-24T13:29:18.010000"],["2024-07-24T13:29:19.010000"],["2024-07-24T13:29:20.010000"],["2024-07-24T13:29:21.010000"],["2024-07-24T13:29:22.010000"],["2024-07-24T13:29:23.010000"],["2024-07-24T13:29:24.010000"],["2024-07-24T13:29:25.010000"],["2024-07-24T13:29:26.010000"],["2024-07-24T13:29:27.010000"],["2024-07-24T13:29:28.010000"],["2024-07-24T13:29:29.010000"],["2024-07-24T13:29:30.010000"],["2024-07-24T13:29:31.010000"],["2024-07-24T13:29:32.010000"],["2024-07-24T13:29:33.010000"],["2024-07-24T13:29:34.010000"],["2024-07-24T13:29:35.010000"],["2024-07-24T13:29:36.010000"],["2024-07-24T13:29:37.010000"],["2024-07-24T13:29:38.010000"],["2024-07-24T13:29:39.010000"],["2024-07-24T13:29:40.010000"],["2024-07-24T13:29:41.010000"],["2024-07-24T13:29:42.010000"],["2024-07-24T13:29:43.010000"],["2024-07-24T13:29:44.010000"],["2024-07-24T13:29:45.010000"],["2024-07-24T13:29:46.010000"],["2024-07-24T13:29:47.010000"],["2024-07-24T13:29:48.010000"],["2024-07-24T13:29:49.010000"],["2024-07-24T13:29:50.010000"],["2024-07-24T13:29:51.010000"],["2024-07-24T13:29:52.010000"],["2024-07-24T13:29:53.010000"],["2024-07-24T13:29:54.010000"],["2024-07-24T13:29:55.010000"],["2024-07-24T13:29:56.010000"],["2024-07-24T13:29:57.010000"],["2024-07-24T13:29:58.010000"],["2024-07-24T13:29:59.010000"],["2024-07-24T13:30:00.010000"],["2024-07-24T13:30:01.010000"],["2024-07-24T13:30:02.010000"],["2024-07-24T13:30:03.010000"],["2024-07-24T13:30:04.010000"],["2024-07-24T13:30:05.010000"],["2024-07-24T13:30:06.010000"],["2024-07-24T13:30:07.010000"],["2024-07-24T13:30:08.010000"],["2024-07-24T13:30:09.010000"],["2024-07-24T13:30:10.010000"],["2024-07-24T13:30:11.010000"],["2024-07-24T13:30:12.010000"],["2024-07-24T13:30:13.010000"],["2024-07-24T13:30:14.010000"],["2024-07-24T13:30:15.010000"],["2024-07-24T13:30:16.010000"],["2024-07-24T13:30:17.010000"],["2024-07-24T13:30:18.010000"],["2024-07-24T13:30:19.010000"],["2024-07-24T13:30:20.010000"],["2024-07-24T13:30:21.010000"],["2024-07-24T13:30:22.010000"],["2024-07-24T13:30:23.010000"],["2024-07-24T13:30:24.010000"],["2024-07-24T13:30:25.010000"],["2024-07-24T13:30:26.010000"],["2024-07-24T13:30:27.010000"],["2024-07-24T13:30:28.010000"],["2024-07-24T13:30:29.010000"],["2024-07-24T13:30:30.010000"],["2024-07-24T13:30:31.010000"],["2024-07-24T13:30:32.010000"],["2024-07-24T13:30:33.010000"],["2024-07-24T13:30:34.010000"],["2024-07-24T13:30:35.010000"],["2024-07-24T13:30:36.010000"],["2024-07-24T13:30:37.010000"],["2024-07-24T13:30:38.010000"],["2024-07-24T13:30:39.010000"],["2024-07-24T13:30:40.010000"],["2024-07-24T13:30:41.010000"],["2024-07-24T13:30:42.010000"],["2024-07-24T13:30:43.010000"],["2024-07-24T13:30:44.010000"],["2024-07-24T13:30:45.010000"],["2024-07-24T13:30:46.010000"],["2024-07-24T13:30:47.010000"],["2024-07-24T13:30:48.010000"],["2024-07-24T13:30:49.010000"],["2024-07-24T13:30:50.010000"],["2024-07-24T13:30:51.010000"],["2024-07-24T13:30:52.010000"],["2024-07-24T13:30:53.010000"],["2024-07-24T13:30:54.010000"],["2024-07-24T13:30:55.010000"],["2024-07-24T13:30:56.010000"],["2024-07-24T13:30:57.010000"],["2024-07-24T13:30:58.010000"],["2024-07-24T13:30:59.010000"],["2024-07-24T13:31:00.010000"],["2024-07-24T13:31:01.010000"],["2024-07-24T13:31:02.010000"],["2024-07-24T13:31:03.010000"],["2024-07-24T13:31:04.010000"],["2024-07-24T13:31:05.010000"],["2024-07-24T13:31:06.010000"],["2024-07-24T13:31:07.010000"],["2024-07-24T13:31:08.010000"],["2024-07-24T13:31:09.010000"],["2024-07-24T13:31:10.010000"],["2024-07-24T13:31:11.010000"],["2024-07-24T13:31:12.010000"],["2024-07-24T13:31:13.010000"],["2024-07-24T13:31:14.010000"],["2024-07-24T13:31:15.010000"],["2024-07-24T13:31:16.010000"],["2024-07-24T13:31:17.010000"],["2024-07-24T13:31:18.010000"],["2024-07-24T13:31:19.010000"],["2024-07-24T13:31:20.010000"],["2024-07-24T13:31:21.010000"],["2024-07-24T13:31:22.010000"],["2024-07-24T13:31:23.010000"],["2024-07-24T13:31:24.010000"],["2024-07-24T13:31:25.010000"],["2024-07-24T13:31:26.010000"],["2024-07-24T13:31:27.010000"],["2024-07-24T13:31:28.010000"],["2024-07-24T13:31:29.010000"],["2024-07-24T13:31:30.010000"],["2024-07-24T13:31:31.010000"],["2024-07-24T13:31:32.010000"],["2024-07-24T13:31:33.010000"],["2024-07-24T13:31:34.010000"],["2024-07-24T13:31:35.010000"],["2024-07-24T13:31:36.010000"],["2024-07-24T13:31:37.010000"],["2024-07-24T13:31:38.010000"],["2024-07-24T13:31:39.010000"],["2024-07-24T13:31:40.010000"],["2024-07-24T13:31:41.010000"],["2024-07-24T13:31:42.010000"],["2024-07-24T13:31:43.010000"],["2024-07-24T13:31:44.010000"],["2024-07-24T13:31:45.010000"],["2024-07-24T13:31:46.010000"],["2024-07-24T13:31:47.010000"],["2024-07-24T13:31:48.010000"],["2024-07-24T13:31:49.010000"],["2024-07-24T13:31:50.010000"],["2024-07-24T13:31:51.010000"],["2024-07-24T13:31:52.010000"],["2024-07-24T13:31:53.010000"],["2024-07-24T13:31:54.010000"],["2024-07-24T13:31:55.010000"],["2024-07-24T13:31:56.010000"],["2024-07-24T13:31:57.010000"],["2024-07-24T13:31:58.010000"],["2024-07-24T13:31:59.010000"],["2024-07-24T13:32:00.010000"],["2024-07-24T13:32:01.010000"],["2024-07-24T13:32:02.010000"],["2024-07-24T13:32:03.010000"],["2024-07-24T13:32:04.010000"],["2024-07-24T13:32:05.010000"],["2024-07-24T13:32:06.010000"],["2024-07-24T13:32:07.010000"],["2024-07-24T13:32:08.010000"],["2024-07-24T13:32:09.010000"],["2024-07-24T13:32:10.010000"],["2024-07-24T13:32:11.010000"],["2024-07-24T13:32:12.010000"],["2024-07-24T13:32:13.010000"],["2024-07-24T13:32:14.010000"],["2024-07-24T13:32:15.010000"],["2024-07-24T13:32:16.010000"],["2024-07-24T13:32:17.010000"],["2024-07-24T13:32:18.010000"],["2024-07-24T13:32:19.010000"],["2024-07-24T13:32:20.010000"],["2024-07-24T13:32:21.010000"],["2024-07-24T13:32:22.010000"],["2024-07-24T13:32:23.010000"],["2024-07-24T13:32:24.010000"],["2024-07-24T13:32:25.010000"],["2024-07-24T13:32:26.010000"],["2024-07-24T13:32:27.010000"],["2024-07-24T13:32:28.010000"],["2024-07-24T13:32:29.010000"],["2024-07-24T13:32:30.010000"],["2024-07-24T13:32:31.010000"],["2024-07-24T13:32:32.010000"],["2024-07-24T13:32:33.010000"],["2024-07-24T13:32:34.010000"],["2024-07-24T13:32:35.010000"],["2024-07-24T13:32:36.010000"],["2024-07-24T13:32:37.010000"],["2024-07-24T13:32:38.010000"],["2024-07-24T13:32:39.010000"],["2024-07-24T13:32:40.010000"],["2024-07-24T13:32:41.010000"],["2024-07-24T13:32:42.010000"],["2024-07-24T13:32:43.010000"],["2024-07-24T13:32:44.010000"],["2024-07-24T13:32:45.010000"],["2024-07-24T13:32:46.010000"],["2024-07-24T13:32:47.010000"],["2024-07-24T13:32:48.010000"],["2024-07-24T13:32:49.010000"],["2024-07-24T13:32:50.010000"],["2024-07-24T13:32:51.010000"],["2024-07-24T13:32:52.010000"],["2024-07-24T13:32:53.010000"],["2024-07-24T13:32:54.010000"],["2024-07-24T13:32:55.010000"],["2024-07-24T13:32:56.010000"],["2024-07-24T13:32:57.010000"],["2024-07-24T13:32:58.010000"],["2024-07-24T13:32:59.010000"],["2024-07-24T13:33:00.010000"],["2024-07-24T13:33:01.010000"],["2024-07-24T13:33:02.010000"],["2024-07-24T13:33:03.010000"],["2024-07-24T13:33:04.010000"],["2024-07-24T13:33:05.010000"],["2024-07-24T13:33:06.010000"],["2024-07-24T13:33:07.010000"],["2024-07-24T13:33:08.010000"],["2024-07-24T13:33:09.010000"],["2024-07-24T13:33:10.010000"],["2024-07-24T13:33:11.010000"],["2024-07-24T13:33:12.010000"],["2024-07-24T13:33:13.010000"],["2024-07-24T13:33:14.010000"],["2024-07-24T13:33:15.010000"],["2024-07-24T13:33:16.010000"],["2024-07-24T13:33:17.010000"],["2024-07-24T13:33:18.010000"],["2024-07-24T13:33:19.010000"],["2024-07-24T13:33:20.010000"],["2024-07-24T13:33:21.010000"],["2024-07-24T13:33:22.010000"],["2024-07-24T13:33:23.010000"],["2024-07-24T13:33:24.010000"],["2024-07-24T13:33:25.010000"],["2024-07-24T13:33:26.010000"],["2024-07-24T13:33:27.010000"],["2024-07-24T13:33:28.010000"],["2024-07-24T13:33:29.010000"],["2024-07-24T13:33:30.010000"],["2024-07-24T13:33:31.010000"],["2024-07-24T13:33:32.010000"],["2024-07-24T13:33:33.010000"],["2024-07-24T13:33:34.010000"],["2024-07-24T13:33:35.010000"],["2024-07-24T13:33:36.010000"],["2024-07-24T13:33:37.010000"],["2024-07-24T13:33:38.010000"],["2024-07-24T13:33:39.010000"],["2024-07-24T13:33:40.010000"],["2024-07-24T13:33:41.010000"],["2024-07-24T13:33:42.010000"],["2024-07-24T13:33:43.010000"],["2024-07-24T13:33:44.010000"],["2024-07-24T13:33:45.010000"],["2024-07-24T13:33:46.010000"],["2024-07-24T13:33:47.010000"],["2024-07-24T13:33:48.010000"],["2024-07-24T13:33:49.010000"],["2024-07-24T13:33:50.010000"],["2024-07-24T13:33:51.010000"],["2024-07-24T13:33:52.010000"],["2024-07-24T13:33:53.010000"],["2024-07-24T13:33:54.010000"],["2024-07-24T13:33:55.010000"],["2024-07-24T13:33:56.010000"],["2024-07-24T13:33:57.010000"],["2024-07-24T13:33:58.010000"],["2024-07-24T13:33:59.010000"],["2024-07-24T13:34:00.010000"],["2024-07-24T13:34:01.010000"],["2024-07-24T13:34:02.010000"],["2024-07-24T13:34:03.010000"],["2024-07-24T13:34:04.010000"],["2024-07-24T13:34:05.010000"],["2024-07-24T13:34:06.010000"],["2024-07-24T13:34:07.010000"],["2024-07-24T13:34:08.010000"],["2024-07-24T13:34:09.010000"],["2024-07-24T13:34:10.010000"],["2024-07-24T13:34:11.010000"],["2024-07-24T13:34:12.010000"],["2024-07-24T13:34:13.010000"],["2024-07-24T13:34:14.010000"],["2024-07-24T13:34:15.010000"],["2024-07-24T13:34:16.010000"],["2024-07-24T13:34:17.010000"],["2024-07-24T13:34:18.010000"],["2024-07-24T13:34:19.010000"],["2024-07-24T13:34:20.010000"],["2024-07-24T13:34:21.010000"],["2024-07-24T13:34:22.010000"],["2024-07-24T13:34:23.010000"],["2024-07-24T13:34:24.010000"],["2024-07-24T13:34:25.010000"],["2024-07-24T13:34:26.010000"],["2024-07-24T13:34:27.010000"],["2024-07-24T13:34:28.010000"],["2024-07-24T13:34:29.010000"],["2024-07-24T13:34:30.010000"],["2024-07-24T13:34:31.010000"],["2024-07-24T13:34:32.010000"],["2024-07-24T13:34:33.010000"],["2024-07-24T13:34:34.010000"],["2024-07-24T13:34:35.010000"],["2024-07-24T13:34:36.010000"],["2024-07-24T13:34:37.010000"],["2024-07-24T13:34:38.010000"],["2024-07-24T13:34:39.010000"],["2024-07-24T13:34:40.010000"],["2024-07-24T13:34:41.010000"],["2024-07-24T13:34:42.010000"],["2024-07-24T13:34:43.010000"],["2024-07-24T13:34:44.010000"],["2024-07-24T13:34:45.010000"],["2024-07-24T13:34:46.010000"],["2024-07-24T13:34:47.010000"],["2024-07-24T13:34:48.010000"],["2024-07-24T13:34:49.010000"],["2024-07-24T13:34:50.010000"],["2024-07-24T13:34:51.010000"],["2024-07-24T13:34:52.010000"],["2024-07-24T13:34:53.010000"],["2024-07-24T13:34:54.010000"],["2024-07-24T13:34:55.010000"],["2024-07-24T13:34:56.010000"],["2024-07-24T13:34:57.010000"],["2024-07-24T13:34:58.010000"],["2024-07-24T13:34:59.010000"],["2024-07-24T13:35:00.010000"],["2024-07-24T13:35:01.010000"],["2024-07-24T13:35:02.010000"],["2024-07-24T13:35:03.010000"],["2024-07-24T13:35:04.010000"],["2024-07-24T13:35:05.010000"],["2024-07-24T13:35:06.010000"],["2024-07-24T13:35:07.010000"],["2024-07-24T13:35:08.010000"],["2024-07-24T13:35:09.010000"],["2024-07-24T13:35:10.010000"],["2024-07-24T13:35:11.010000"],["2024-07-24T13:35:12.010000"],["2024-07-24T13:35:13.010000"],["2024-07-24T13:35:14.010000"],["2024-07-24T13:35:15.010000"],["2024-07-24T13:35:16.010000"],["2024-07-24T13:35:17.010000"],["2024-07-24T13:35:18.010000"],["2024-07-24T13:35:19.010000"],["2024-07-24T13:35:20.010000"],["2024-07-24T13:35:21.010000"],["2024-07-24T13:35:22.010000"],["2024-07-24T13:35:23.010000"],["2024-07-24T13:35:24.010000"],["2024-07-24T13:35:25.010000"],["2024-07-24T13:35:26.010000"],["2024-07-24T13:35:27.010000"],["2024-07-24T13:35:28.010000"],["2024-07-24T13:35:29.010000"],["2024-07-24T13:35:30.010000"],["2024-07-24T13:35:31.010000"],["2024-07-24T13:35:32.010000"],["2024-07-24T13:35:33.010000"],["2024-07-24T13:35:34.010000"],["2024-07-24T13:35:35.010000"],["2024-07-24T13:35:36.010000"],["2024-07-24T13:35:37.010000"],["2024-07-24T13:35:38.010000"],["2024-07-24T13:35:39.010000"],["2024-07-24T13:35:40.010000"],["2024-07-24T13:35:41.010000"],["2024-07-24T13:35:42.010000"],["2024-07-24T13:35:43.010000"],["2024-07-24T13:35:44.010000"],["2024-07-24T13:35:45.010000"],["2024-07-24T13:35:46.010000"],["2024-07-24T13:35:47.010000"],["2024-07-24T13:35:48.010000"],["2024-07-24T13:35:49.010000"],["2024-07-24T13:35:50.010000"],["2024-07-24T13:35:51.010000"],["2024-07-24T13:35:52.010000"],["2024-07-24T13:35:53.010000"],["2024-07-24T13:35:54.010000"],["2024-07-24T13:35:55.010000"],["2024-07-24T13:35:56.010000"],["2024-07-24T13:35:57.010000"],["2024-07-24T13:35:58.010000"],["2024-07-24T13:35:59.010000"],["2024-07-24T13:36:00.010000"],["2024-07-24T13:36:01.010000"],["2024-07-24T13:36:02.010000"],["2024-07-24T13:36:03.010000"],["2024-07-24T13:36:04.010000"],["2024-07-24T13:36:05.010000"],["2024-07-24T13:36:06.010000"],["2024-07-24T13:36:07.010000"],["2024-07-24T13:36:08.010000"],["2024-07-24T13:36:09.010000"],["2024-07-24T13:36:10.010000"],["2024-07-24T13:36:11.010000"],["2024-07-24T13:36:12.010000"],["2024-07-24T13:36:13.010000"],["2024-07-24T13:36:14.010000"],["2024-07-24T13:36:15.010000"],["2024-07-24T13:36:16.010000"],["2024-07-24T13:36:17.010000"],["2024-07-24T13:36:18.010000"],["2024-07-24T13:36:19.010000"],["2024-07-24T13:36:20.010000"],["2024-07-24T13:36:21.010000"],["2024-07-24T13:36:22.010000"],["2024-07-24T13:36:23.010000"],["2024-07-24T13:36:24.010000"],["2024-07-24T13:36:25.010000"],["2024-07-24T13:36:26.010000"],["2024-07-24T13:36:27.010000"],["2024-07-24T13:36:28.010000"],["2024-07-24T13:36:29.010000"],["2024-07-24T13:36:30.010000"],["2024-07-24T13:36:31.010000"],["2024-07-24T13:36:32.010000"],["2024-07-24T13:36:33.010000"],["2024-07-24T13:36:34.010000"],["2024-07-24T13:36:35.010000"],["2024-07-24T13:36:36.010000"],["2024-07-24T13:36:37.010000"],["2024-07-24T13:36:38.010000"],["2024-07-24T13:36:39.010000"],["2024-07-24T13:36:40.010000"],["2024-07-24T13:36:41.010000"],["2024-07-24T13:36:42.010000"],["2024-07-24T13:36:43.010000"],["2024-07-24T13:36:44.010000"],["2024-07-24T13:36:45.010000"],["2024-07-24T13:36:46.010000"],["2024-07-24T13:36:47.010000"],["2024-07-24T13:36:48.010000"],["2024-07-24T13:36:49.010000"],["2024-07-24T13:36:50.010000"],["2024-07-24T13:36:51.010000"],["2024-07-24T13:36:52.010000"],["2024-07-24T13:36:53.010000"],["2024-07-24T13:36:54.010000"],["2024-07-24T13:36:55.010000"],["2024-07-24T13:36:56.010000"],["2024-07-24T13:36:57.010000"],["2024-07-24T13:36:58.010000"],["2024-07-24T13:36:59.010000"],["2024-07-24T13:37:00.010000"],["2024-07-24T13:37:01.010000"],["2024-07-24T13:37:02.010000"],["2024-07-24T13:37:03.010000"],["2024-07-24T13:37:04.010000"],["2024-07-24T13:37:05.010000"],["2024-07-24T13:37:06.010000"],["2024-07-24T13:37:07.010000"],["2024-07-24T13:37:08.010000"],["2024-07-24T13:37:09.010000"],["2024-07-24T13:37:10.010000"],["2024-07-24T13:37:11.010000"],["2024-07-24T13:37:12.010000"],["2024-07-24T13:37:13.010000"],["2024-07-24T13:37:14.010000"],["2024-07-24T13:37:15.010000"],["2024-07-24T13:37:16.010000"],["2024-07-24T13:37:17.010000"],["2024-07-24T13:37:18.010000"],["2024-07-24T13:37:19.010000"],["2024-07-24T13:37:20.010000"],["2024-07-24T13:37:21.010000"],["2024-07-24T13:37:22.010000"],["2024-07-24T13:37:23.010000"],["2024-07-24T13:37:24.010000"],["2024-07-24T13:37:25.010000"],["2024-07-24T13:37:26.010000"],["2024-07-24T13:37:27.010000"],["2024-07-24T13:37:28.010000"],["2024-07-24T13:37:29.010000"],["2024-07-24T13:37:30.010000"],["2024-07-24T13:37:31.010000"],["2024-07-24T13:37:32.010000"],["2024-07-24T13:37:33.010000"],["2024-07-24T13:37:34.010000"],["2024-07-24T13:37:35.010000"],["2024-07-24T13:37:36.010000"],["2024-07-24T13:37:37.010000"],["2024-07-24T13:37:38.010000"],["2024-07-24T13:37:39.010000"],["2024-07-24T13:37:40.010000"],["2024-07-24T13:37:41.010000"],["2024-07-24T13:37:42.010000"],["2024-07-24T13:37:43.010000"],["2024-07-24T13:37:44.010000"],["2024-07-24T13:37:45.010000"],["2024-07-24T13:37:46.010000"],["2024-07-24T13:37:47.010000"],["2024-07-24T13:37:48.010000"],["2024-07-24T13:37:49.010000"],["2024-07-24T13:37:50.010000"],["2024-07-24T13:37:51.010000"],["2024-07-24T13:37:52.010000"],["2024-07-24T13:37:53.010000"],["2024-07-24T13:37:54.010000"],["2024-07-24T13:37:55.010000"],["2024-07-24T13:37:56.010000"],["2024-07-24T13:37:57.010000"],["2024-07-24T13:37:58.010000"],["2024-07-24T13:37:59.010000"],["2024-07-24T13:38:00.010000"],["2024-07-24T13:38:01.010000"],["2024-07-24T13:38:02.010000"],["2024-07-24T13:38:03.010000"],["2024-07-24T13:38:04.010000"],["2024-07-24T13:38:05.010000"],["2024-07-24T13:38:06.010000"],["2024-07-24T13:38:07.010000"],["2024-07-24T13:38:08.010000"],["2024-07-24T13:38:09.010000"],["2024-07-24T13:38:10.010000"],["2024-07-24T13:38:11.010000"],["2024-07-24T13:38:12.010000"],["2024-07-24T13:38:13.010000"],["2024-07-24T13:38:14.010000"],["2024-07-24T13:38:15.010000"],["2024-07-24T13:38:16.010000"],["2024-07-24T13:38:17.010000"],["2024-07-24T13:38:18.010000"],["2024-07-24T13:38:19.010000"],["2024-07-24T13:38:20.010000"],["2024-07-24T13:38:21.010000"],["2024-07-24T13:38:22.010000"],["2024-07-24T13:38:23.010000"],["2024-07-24T13:38:24.010000"],["2024-07-24T13:38:25.010000"],["2024-07-24T13:38:26.010000"],["2024-07-24T13:38:27.010000"],["2024-07-24T13:38:28.010000"],["2024-07-24T13:38:29.010000"],["2024-07-24T13:38:30.010000"],["2024-07-24T13:38:31.010000"],["2024-07-24T13:38:32.010000"],["2024-07-24T13:38:33.010000"],["2024-07-24T13:38:34.010000"],["2024-07-24T13:38:35.010000"],["2024-07-24T13:38:36.010000"],["2024-07-24T13:38:37.010000"],["2024-07-24T13:38:38.010000"],["2024-07-24T13:38:39.010000"],["2024-07-24T13:38:40.010000"],["2024-07-24T13:38:41.010000"],["2024-07-24T13:38:42.010000"],["2024-07-24T13:38:43.010000"],["2024-07-24T13:38:44.010000"],["2024-07-24T13:38:45.010000"],["2024-07-24T13:38:46.010000"],["2024-07-24T13:38:47.010000"],["2024-07-24T13:38:48.010000"],["2024-07-24T13:38:49.010000"],["2024-07-24T13:38:50.010000"],["2024-07-24T13:38:51.010000"],["2024-07-24T13:38:52.010000"],["2024-07-24T13:38:53.010000"],["2024-07-24T13:38:54.010000"],["2024-07-24T13:38:55.010000"],["2024-07-24T13:38:56.010000"],["2024-07-24T13:38:57.010000"],["2024-07-24T13:38:58.010000"],["2024-07-24T13:38:59.010000"],["2024-07-24T13:39:00.010000"],["2024-07-24T13:39:01.010000"],["2024-07-24T13:39:02.010000"],["2024-07-24T13:39:03.010000"],["2024-07-24T13:39:04.010000"],["2024-07-24T13:39:05.010000"],["2024-07-24T13:39:06.010000"],["2024-07-24T13:39:07.010000"],["2024-07-24T13:39:08.010000"],["2024-07-24T13:39:09.010000"],["2024-07-24T13:39:10.010000"],["2024-07-24T13:39:11.010000"],["2024-07-24T13:39:12.010000"],["2024-07-24T13:39:13.010000"],["2024-07-24T13:39:14.010000"],["2024-07-24T13:39:15.010000"],["2024-07-24T13:39:16.010000"],["2024-07-24T13:39:17.010000"],["2024-07-24T13:39:18.010000"],["2024-07-24T13:39:19.010000"],["2024-07-24T13:39:20.010000"],["2024-07-24T13:39:21.010000"],["2024-07-24T13:39:22.010000"],["2024-07-24T13:39:23.010000"],["2024-07-24T13:39:24.010000"],["2024-07-24T13:39:25.010000"],["2024-07-24T13:39:26.010000"],["2024-07-24T13:39:27.010000"],["2024-07-24T13:39:28.010000"],["2024-07-24T13:39:29.010000"],["2024-07-24T13:39:30.010000"],["2024-07-24T13:39:31.010000"],["2024-07-24T13:39:32.010000"],["2024-07-24T13:39:33.010000"],["2024-07-24T13:39:34.010000"],["2024-07-24T13:39:35.010000"],["2024-07-24T13:39:36.010000"],["2024-07-24T13:39:37.010000"],["2024-07-24T13:39:38.010000"],["2024-07-24T13:39:39.010000"],["2024-07-24T13:39:40.010000"],["2024-07-24T13:39:41.010000"],["2024-07-24T13:39:42.010000"],["2024-07-24T13:39:43.010000"],["2024-07-24T13:39:44.010000"],["2024-07-24T13:39:45.010000"],["2024-07-24T13:39:46.010000"],["2024-07-24T13:39:47.010000"],["2024-07-24T13:39:48.010000"],["2024-07-24T13:39:49.010000"],["2024-07-24T13:39:50.010000"],["2024-07-24T13:39:51.010000"],["2024-07-24T13:39:52.010000"],["2024-07-24T13:39:53.010000"],["2024-07-24T13:39:54.010000"],["2024-07-24T13:39:55.010000"],["2024-07-24T13:39:56.010000"],["2024-07-24T13:39:57.010000"],["2024-07-24T13:39:58.010000"],["2024-07-24T13:39:59.010000"],["2024-07-24T13:40:00.010000"],["2024-07-24T13:40:01.010000"],["2024-07-24T13:40:02.010000"],["2024-07-24T13:40:03.010000"],["2024-07-24T13:40:04.010000"],["2024-07-24T13:40:05.010000"],["2024-07-24T13:40:06.010000"],["2024-07-24T13:40:07.010000"],["2024-07-24T13:40:08.010000"],["2024-07-24T13:40:09.010000"],["2024-07-24T13:40:10.010000"],["2024-07-24T13:40:11.010000"],["2024-07-24T13:40:12.010000"],["2024-07-24T13:40:13.010000"],["2024-07-24T13:40:14.010000"],["2024-07-24T13:40:15.010000"],["2024-07-24T13:40:16.010000"],["2024-07-24T13:40:17.010000"],["2024-07-24T13:40:18.010000"],["2024-07-24T13:40:19.010000"],["2024-07-24T13:40:20.010000"],["2024-07-24T13:40:21.010000"],["2024-07-24T13:40:22.010000"],["2024-07-24T13:40:23.010000"],["2024-07-24T13:40:24.010000"],["2024-07-24T13:40:25.010000"],["2024-07-24T13:40:26.010000"],["2024-07-24T13:40:27.010000"],["2024-07-24T13:40:28.010000"],["2024-07-24T13:40:29.010000"],["2024-07-24T13:40:30.010000"],["2024-07-24T13:40:31.010000"],["2024-07-24T13:40:32.010000"],["2024-07-24T13:40:33.010000"],["2024-07-24T13:40:34.010000"],["2024-07-24T13:40:35.010000"],["2024-07-24T13:40:36.010000"],["2024-07-24T13:40:37.010000"],["2024-07-24T13:40:38.010000"],["2024-07-24T13:40:39.010000"],["2024-07-24T13:40:40.010000"],["2024-07-24T13:40:41.010000"],["2024-07-24T13:40:42.010000"],["2024-07-24T13:40:43.010000"],["2024-07-24T13:40:44.010000"],["2024-07-24T13:40:45.010000"],["2024-07-24T13:40:46.010000"],["2024-07-24T13:40:47.010000"],["2024-07-24T13:40:48.010000"],["2024-07-24T13:40:49.010000"],["2024-07-24T13:40:50.010000"],["2024-07-24T13:40:51.010000"],["2024-07-24T13:40:52.010000"],["2024-07-24T13:40:53.010000"],["2024-07-24T13:40:54.010000"],["2024-07-24T13:40:55.010000"],["2024-07-24T13:40:56.010000"],["2024-07-24T13:40:57.010000"],["2024-07-24T13:40:58.010000"],["2024-07-24T13:40:59.010000"],["2024-07-24T13:41:00.010000"],["2024-07-24T13:41:01.010000"],["2024-07-24T13:41:02.010000"],["2024-07-24T13:41:03.010000"],["2024-07-24T13:41:04.010000"],["2024-07-24T13:41:05.010000"],["2024-07-24T13:41:06.010000"],["2024-07-24T13:41:07.010000"],["2024-07-24T13:41:08.010000"],["2024-07-24T13:41:09.010000"],["2024-07-24T13:41:10.010000"],["2024-07-24T13:41:11.010000"],["2024-07-24T13:41:12.010000"],["2024-07-24T13:41:13.010000"],["2024-07-24T13:41:14.010000"],["2024-07-24T13:41:15.010000"],["2024-07-24T13:41:16.010000"],["2024-07-24T13:41:17.010000"],["2024-07-24T13:41:18.010000"],["2024-07-24T13:41:19.010000"],["2024-07-24T13:41:20.010000"],["2024-07-24T13:41:21.010000"],["2024-07-24T13:41:22.010000"],["2024-07-24T13:41:23.010000"],["2024-07-24T13:41:24.010000"],["2024-07-24T13:41:25.010000"],["2024-07-24T13:41:26.010000"],["2024-07-24T13:41:27.010000"],["2024-07-24T13:41:28.010000"],["2024-07-24T13:41:29.010000"],["2024-07-24T13:41:30.010000"],["2024-07-24T13:41:31.010000"],["2024-07-24T13:41:32.010000"],["2024-07-24T13:41:33.010000"],["2024-07-24T13:41:34.010000"],["2024-07-24T13:41:35.010000"],["2024-07-24T13:41:36.010000"],["2024-07-24T13:41:37.010000"],["2024-07-24T13:41:38.010000"],["2024-07-24T13:41:39.010000"],["2024-07-24T13:41:40.010000"],["2024-07-24T13:41:41.010000"],["2024-07-24T13:41:42.010000"],["2024-07-24T13:41:43.010000"],["2024-07-24T13:41:44.010000"],["2024-07-24T13:41:45.010000"],["2024-07-24T13:41:46.010000"],["2024-07-24T13:41:47.010000"],["2024-07-24T13:41:48.010000"],["2024-07-24T13:41:49.010000"],["2024-07-24T13:41:50.010000"],["2024-07-24T13:41:51.010000"],["2024-07-24T13:41:52.010000"],["2024-07-24T13:41:53.010000"],["2024-07-24T13:41:54.010000"],["2024-07-24T13:41:55.010000"],["2024-07-24T13:41:56.010000"],["2024-07-24T13:41:57.010000"],["2024-07-24T13:41:58.010000"],["2024-07-24T13:41:59.010000"],["2024-07-24T13:42:00.010000"],["2024-07-24T13:42:01.010000"],["2024-07-24T13:42:02.010000"],["2024-07-24T13:42:03.010000"],["2024-07-24T13:42:04.010000"],["2024-07-24T13:42:05.010000"],["2024-07-24T13:42:06.010000"],["2024-07-24T13:42:07.010000"],["2024-07-24T13:42:08.010000"],["2024-07-24T13:42:09.010000"],["2024-07-24T13:42:10.010000"],["2024-07-24T13:42:11.010000"],["2024-07-24T13:42:12.010000"],["2024-07-24T13:42:13.010000"],["2024-07-24T13:42:14.010000"],["2024-07-24T13:42:15.010000"],["2024-07-24T13:42:16.010000"],["2024-07-24T13:42:17.010000"],["2024-07-24T13:42:18.010000"],["2024-07-24T13:42:19.010000"],["2024-07-24T13:42:20.010000"],["2024-07-24T13:42:21.010000"],["2024-07-24T13:42:22.010000"],["2024-07-24T13:42:23.010000"],["2024-07-24T13:42:24.010000"],["2024-07-24T13:42:25.010000"],["2024-07-24T13:42:26.010000"],["2024-07-24T13:42:27.010000"],["2024-07-24T13:42:28.010000"],["2024-07-24T13:42:29.010000"],["2024-07-24T13:42:30.010000"],["2024-07-24T13:42:31.010000"],["2024-07-24T13:42:32.010000"],["2024-07-24T13:42:33.010000"],["2024-07-24T13:42:34.010000"],["2024-07-24T13:42:35.010000"],["2024-07-24T13:42:36.010000"],["2024-07-24T13:42:37.010000"],["2024-07-24T13:42:38.010000"],["2024-07-24T13:42:39.010000"],["2024-07-24T13:42:40.010000"],["2024-07-24T13:42:41.010000"],["2024-07-24T13:42:42.010000"],["2024-07-24T13:42:43.010000"],["2024-07-24T13:42:44.010000"],["2024-07-24T13:42:45.010000"],["2024-07-24T13:42:46.010000"],["2024-07-24T13:42:47.010000"],["2024-07-24T13:42:48.010000"],["2024-07-24T13:42:49.010000"],["2024-07-24T13:42:50.010000"],["2024-07-24T13:42:51.010000"],["2024-07-24T13:42:52.010000"],["2024-07-24T13:42:53.010000"],["2024-07-24T13:42:54.010000"],["2024-07-24T13:42:55.010000"],["2024-07-24T13:42:56.010000"],["2024-07-24T13:42:57.010000"],["2024-07-24T13:42:58.010000"],["2024-07-24T13:42:59.010000"],["2024-07-24T13:43:00.010000"],["2024-07-24T13:43:01.010000"],["2024-07-24T13:43:02.010000"],["2024-07-24T13:43:03.010000"],["2024-07-24T13:43:04.010000"],["2024-07-24T13:43:05.010000"],["2024-07-24T13:43:06.010000"],["2024-07-24T13:43:07.010000"],["2024-07-24T13:43:08.010000"],["2024-07-24T13:43:09.010000"],["2024-07-24T13:43:10.010000"],["2024-07-24T13:43:11.010000"],["2024-07-24T13:43:12.010000"],["2024-07-24T13:43:13.010000"],["2024-07-24T13:43:14.010000"],["2024-07-24T13:43:15.010000"],["2024-07-24T13:43:16.010000"],["2024-07-24T13:43:17.010000"],["2024-07-24T13:43:18.010000"],["2024-07-24T13:43:19.010000"],["2024-07-24T13:43:20.010000"],["2024-07-24T13:43:21.010000"],["2024-07-24T13:43:22.010000"],["2024-07-24T13:43:23.010000"],["2024-07-24T13:43:24.010000"],["2024-07-24T13:43:25.010000"],["2024-07-24T13:43:26.010000"],["2024-07-24T13:43:27.010000"],["2024-07-24T13:43:28.010000"],["2024-07-24T13:43:29.010000"],["2024-07-24T13:43:30.010000"],["2024-07-24T13:43:31.010000"],["2024-07-24T13:43:32.010000"],["2024-07-24T13:43:33.010000"],["2024-07-24T13:43:34.010000"],["2024-07-24T13:43:35.010000"],["2024-07-24T13:43:36.010000"],["2024-07-24T13:43:37.010000"],["2024-07-24T13:43:38.010000"],["2024-07-24T13:43:39.010000"],["2024-07-24T13:43:40.010000"],["2024-07-24T13:43:41.010000"],["2024-07-24T13:43:42.010000"],["2024-07-24T13:43:43.010000"],["2024-07-24T13:43:44.010000"],["2024-07-24T13:43:45.010000"],["2024-07-24T13:43:46.010000"],["2024-07-24T13:43:47.010000"],["2024-07-24T13:43:48.010000"],["2024-07-24T13:43:49.010000"],["2024-07-24T13:43:50.010000"],["2024-07-24T13:43:51.010000"],["2024-07-24T13:43:52.010000"],["2024-07-24T13:43:53.010000"],["2024-07-24T13:43:54.010000"],["2024-07-24T13:43:55.010000"],["2024-07-24T13:43:56.010000"],["2024-07-24T13:43:57.010000"],["2024-07-24T13:43:58.010000"],["2024-07-24T13:43:59.010000"],["2024-07-24T13:44:00.010000"],["2024-07-24T13:44:01.010000"],["2024-07-24T13:44:02.010000"],["2024-07-24T13:44:03.010000"],["2024-07-24T13:44:04.010000"],["2024-07-24T13:44:05.010000"],["2024-07-24T13:44:06.010000"],["2024-07-24T13:44:07.010000"],["2024-07-24T13:44:08.010000"],["2024-07-24T13:44:09.010000"],["2024-07-24T13:44:10.010000"],["2024-07-24T13:44:11.010000"],["2024-07-24T13:44:12.010000"],["2024-07-24T13:44:13.010000"],["2024-07-24T13:44:14.010000"],["2024-07-24T13:44:15.010000"],["2024-07-24T13:44:16.010000"],["2024-07-24T13:44:17.010000"],["2024-07-24T13:44:18.010000"],["2024-07-24T13:44:19.010000"],["2024-07-24T13:44:20.010000"],["2024-07-24T13:44:21.010000"],["2024-07-24T13:44:22.010000"],["2024-07-24T13:44:23.010000"],["2024-07-24T13:44:24.010000"],["2024-07-24T13:44:25.010000"],["2024-07-24T13:44:26.010000"],["2024-07-24T13:44:27.010000"],["2024-07-24T13:44:28.010000"],["2024-07-24T13:44:29.010000"],["2024-07-24T13:44:30.010000"],["2024-07-24T13:44:31.010000"],["2024-07-24T13:44:32.010000"],["2024-07-24T13:44:33.010000"],["2024-07-24T13:44:34.010000"],["2024-07-24T13:44:35.010000"],["2024-07-24T13:44:36.010000"],["2024-07-24T13:44:37.010000"],["2024-07-24T13:44:38.010000"],["2024-07-24T13:44:39.010000"],["2024-07-24T13:44:40.010000"],["2024-07-24T13:44:41.010000"],["2024-07-24T13:44:42.010000"],["2024-07-24T13:44:43.010000"],["2024-07-24T13:44:44.010000"],["2024-07-24T13:44:45.010000"],["2024-07-24T13:44:46.010000"],["2024-07-24T13:44:47.010000"],["2024-07-24T13:44:48.010000"],["2024-07-24T13:44:49.010000"],["2024-07-24T13:44:50.010000"],["2024-07-24T13:44:51.010000"],["2024-07-24T13:44:52.010000"],["2024-07-24T13:44:53.010000"],["2024-07-24T13:44:54.010000"],["2024-07-24T13:44:55.010000"],["2024-07-24T13:44:56.010000"],["2024-07-24T13:44:57.010000"],["2024-07-24T13:44:58.010000"],["2024-07-24T13:44:59.010000"],["2024-07-24T13:45:00.010000"],["2024-07-24T13:45:01.010000"],["2024-07-24T13:45:02.010000"],["2024-07-24T13:45:03.010000"],["2024-07-24T13:45:04.010000"],["2024-07-24T13:45:05.010000"],["2024-07-24T13:45:06.010000"],["2024-07-24T13:45:07.010000"],["2024-07-24T13:45:08.010000"],["2024-07-24T13:45:09.010000"],["2024-07-24T13:45:10.010000"],["2024-07-24T13:45:11.010000"],["2024-07-24T13:45:12.010000"],["2024-07-24T13:45:13.010000"],["2024-07-24T13:45:14.010000"],["2024-07-24T13:45:15.010000"],["2024-07-24T13:45:16.010000"],["2024-07-24T13:45:17.010000"],["2024-07-24T13:45:18.010000"],["2024-07-24T13:45:19.010000"],["2024-07-24T13:45:20.010000"],["2024-07-24T13:45:21.010000"],["2024-07-24T13:45:22.010000"],["2024-07-24T13:45:23.010000"],["2024-07-24T13:45:24.010000"],["2024-07-24T13:45:25.010000"],["2024-07-24T13:45:26.010000"],["2024-07-24T13:45:27.010000"],["2024-07-24T13:45:28.010000"],["2024-07-24T13:45:29.010000"],["2024-07-24T13:45:30.010000"],["2024-07-24T13:45:31.010000"],["2024-07-24T13:45:32.010000"],["2024-07-24T13:45:33.010000"],["2024-07-24T13:45:34.010000"],["2024-07-24T13:45:35.010000"],["2024-07-24T13:45:36.010000"],["2024-07-24T13:45:37.010000"],["2024-07-24T13:45:38.010000"],["2024-07-24T13:45:39.010000"],["2024-07-24T13:45:40.010000"],["2024-07-24T13:45:41.010000"],["2024-07-24T13:45:42.010000"],["2024-07-24T13:45:43.010000"],["2024-07-24T13:45:44.010000"],["2024-07-24T13:45:45.010000"],["2024-07-24T13:45:46.010000"],["2024-07-24T13:45:47.010000"],["2024-07-24T13:45:48.010000"],["2024-07-24T13:45:49.010000"],["2024-07-24T13:45:50.010000"],["2024-07-24T13:45:51.010000"],["2024-07-24T13:45:52.010000"],["2024-07-24T13:45:53.010000"],["2024-07-24T13:45:54.010000"],["2024-07-24T13:45:55.010000"],["2024-07-24T13:45:56.010000"],["2024-07-24T13:45:57.010000"],["2024-07-24T13:45:58.010000"],["2024-07-24T13:45:59.010000"],["2024-07-24T13:46:00.010000"],["2024-07-24T13:46:01.010000"],["2024-07-24T13:46:02.010000"],["2024-07-24T13:46:03.010000"],["2024-07-24T13:46:04.010000"],["2024-07-24T13:46:05.010000"],["2024-07-24T13:46:06.010000"],["2024-07-24T13:46:07.010000"],["2024-07-24T13:46:08.010000"],["2024-07-24T13:46:09.010000"],["2024-07-24T13:46:10.010000"],["2024-07-24T13:46:11.010000"],["2024-07-24T13:46:12.010000"],["2024-07-24T13:46:13.010000"],["2024-07-24T13:46:14.010000"],["2024-07-24T13:46:15.010000"],["2024-07-24T13:46:16.010000"],["2024-07-24T13:46:17.010000"],["2024-07-24T13:46:18.010000"],["2024-07-24T13:46:19.010000"],["2024-07-24T13:46:20.010000"],["2024-07-24T13:46:21.010000"],["2024-07-24T13:46:22.010000"],["2024-07-24T13:46:23.010000"],["2024-07-24T13:46:24.010000"],["2024-07-24T13:46:25.010000"],["2024-07-24T13:46:26.010000"],["2024-07-24T13:46:27.010000"],["2024-07-24T13:46:28.010000"],["2024-07-24T13:46:29.010000"],["2024-07-24T13:46:30.010000"],["2024-07-24T13:46:31.010000"],["2024-07-24T13:46:32.010000"],["2024-07-24T13:46:33.010000"],["2024-07-24T13:46:34.010000"],["2024-07-24T13:46:35.010000"],["2024-07-24T13:46:36.010000"],["2024-07-24T13:46:37.010000"],["2024-07-24T13:46:38.010000"],["2024-07-24T13:46:39.010000"],["2024-07-24T13:46:40.010000"],["2024-07-24T13:46:41.010000"],["2024-07-24T13:46:42.010000"],["2024-07-24T13:46:43.010000"],["2024-07-24T13:46:44.010000"],["2024-07-24T13:46:45.010000"],["2024-07-24T13:46:46.010000"],["2024-07-24T13:46:47.010000"],["2024-07-24T13:46:48.010000"],["2024-07-24T13:46:49.010000"],["2024-07-24T13:46:50.010000"],["2024-07-24T13:46:51.010000"],["2024-07-24T13:46:52.010000"],["2024-07-24T13:46:53.010000"],["2024-07-24T13:46:54.010000"],["2024-07-24T13:46:55.010000"],["2024-07-24T13:46:56.010000"],["2024-07-24T13:46:57.010000"],["2024-07-24T13:46:58.010000"],["2024-07-24T13:46:59.010000"],["2024-07-24T13:47:00.010000"],["2024-07-24T13:47:01.010000"],["2024-07-24T13:47:02.010000"],["2024-07-24T13:47:03.010000"],["2024-07-24T13:47:04.010000"],["2024-07-24T13:47:05.010000"],["2024-07-24T13:47:06.010000"],["2024-07-24T13:47:07.010000"],["2024-07-24T13:47:08.010000"],["2024-07-24T13:47:09.010000"],["2024-07-24T13:47:10.010000"],["2024-07-24T13:47:11.010000"],["2024-07-24T13:47:12.010000"],["2024-07-24T13:47:13.010000"],["2024-07-24T13:47:14.010000"],["2024-07-24T13:47:15.010000"],["2024-07-24T13:47:16.010000"],["2024-07-24T13:47:17.010000"],["2024-07-24T13:47:18.010000"],["2024-07-24T13:47:19.010000"],["2024-07-24T13:47:20.010000"],["2024-07-24T13:47:21.010000"],["2024-07-24T13:47:22.010000"],["2024-07-24T13:47:23.010000"],["2024-07-24T13:47:24.010000"],["2024-07-24T13:47:25.010000"],["2024-07-24T13:47:26.010000"],["2024-07-24T13:47:27.010000"],["2024-07-24T13:47:28.010000"],["2024-07-24T13:47:29.010000"],["2024-07-24T13:47:30.010000"],["2024-07-24T13:47:31.010000"],["2024-07-24T13:47:32.010000"],["2024-07-24T13:47:33.010000"],["2024-07-24T13:47:34.010000"],["2024-07-24T13:47:35.010000"],["2024-07-24T13:47:36.010000"],["2024-07-24T13:47:37.010000"],["2024-07-24T13:47:38.010000"],["2024-07-24T13:47:39.010000"],["2024-07-24T13:47:40.010000"],["2024-07-24T13:47:41.010000"],["2024-07-24T13:47:42.010000"],["2024-07-24T13:47:43.010000"],["2024-07-24T13:47:44.010000"],["2024-07-24T13:47:45.010000"],["2024-07-24T13:47:46.010000"],["2024-07-24T13:47:47.010000"],["2024-07-24T13:47:48.010000"],["2024-07-24T13:47:49.010000"],["2024-07-24T13:47:50.010000"],["2024-07-24T13:47:51.010000"],["2024-07-24T13:47:52.010000"],["2024-07-24T13:47:53.010000"],["2024-07-24T13:47:54.010000"],["2024-07-24T13:47:55.010000"],["2024-07-24T13:47:56.010000"],["2024-07-24T13:47:57.010000"],["2024-07-24T13:47:58.010000"],["2024-07-24T13:47:59.010000"],["2024-07-24T13:48:00.010000"],["2024-07-24T13:48:01.010000"],["2024-07-24T13:48:02.010000"],["2024-07-24T13:48:03.010000"],["2024-07-24T13:48:04.010000"],["2024-07-24T13:48:05.010000"],["2024-07-24T13:48:06.010000"],["2024-07-24T13:48:07.010000"],["2024-07-24T13:48:08.010000"],["2024-07-24T13:48:09.010000"],["2024-07-24T13:48:10.010000"],["2024-07-24T13:48:11.010000"],["2024-07-24T13:48:12.010000"],["2024-07-24T13:48:13.010000"],["2024-07-24T13:48:14.010000"],["2024-07-24T13:48:15.010000"],["2024-07-24T13:48:16.010000"],["2024-07-24T13:48:17.010000"],["2024-07-24T13:48:18.010000"],["2024-07-24T13:48:19.010000"],["2024-07-24T13:48:20.010000"],["2024-07-24T13:48:21.010000"],["2024-07-24T13:48:22.010000"],["2024-07-24T13:48:23.010000"],["2024-07-24T13:48:24.010000"],["2024-07-24T13:48:25.010000"],["2024-07-24T13:48:26.010000"],["2024-07-24T13:48:27.010000"],["2024-07-24T13:48:28.010000"],["2024-07-24T13:48:29.010000"],["2024-07-24T13:48:30.010000"],["2024-07-24T13:48:31.010000"],["2024-07-24T13:48:32.010000"],["2024-07-24T13:48:33.010000"],["2024-07-24T13:48:34.010000"],["2024-07-24T13:48:35.010000"],["2024-07-24T13:48:36.010000"],["2024-07-24T13:48:37.010000"],["2024-07-24T13:48:38.010000"],["2024-07-24T13:48:39.010000"],["2024-07-24T13:48:40.010000"],["2024-07-24T13:48:41.010000"],["2024-07-24T13:48:42.010000"],["2024-07-24T13:48:43.010000"],["2024-07-24T13:48:44.010000"],["2024-07-24T13:48:45.010000"],["2024-07-24T13:48:46.010000"],["2024-07-24T13:48:47.010000"],["2024-07-24T13:48:48.010000"],["2024-07-24T13:48:49.010000"],["2024-07-24T13:48:50.010000"],["2024-07-24T13:48:51.010000"],["2024-07-24T13:48:52.010000"],["2024-07-24T13:48:53.010000"],["2024-07-24T13:48:54.010000"],["2024-07-24T13:48:55.010000"],["2024-07-24T13:48:56.010000"],["2024-07-24T13:48:57.010000"],["2024-07-24T13:48:58.010000"],["2024-07-24T13:48:59.010000"],["2024-07-24T13:49:00.010000"],["2024-07-24T13:49:01.010000"],["2024-07-24T13:49:02.010000"],["2024-07-24T13:49:03.010000"],["2024-07-24T13:49:04.010000"],["2024-07-24T13:49:05.010000"],["2024-07-24T13:49:06.010000"],["2024-07-24T13:49:07.010000"],["2024-07-24T13:49:08.010000"],["2024-07-24T13:49:09.010000"],["2024-07-24T13:49:10.010000"],["2024-07-24T13:49:11.010000"],["2024-07-24T13:49:12.010000"],["2024-07-24T13:49:13.010000"],["2024-07-24T13:49:14.010000"],["2024-07-24T13:49:15.010000"],["2024-07-24T13:49:16.010000"],["2024-07-24T13:49:17.010000"],["2024-07-24T13:49:18.010000"],["2024-07-24T13:49:19.010000"],["2024-07-24T13:49:20.010000"],["2024-07-24T13:49:21.010000"],["2024-07-24T13:49:22.010000"],["2024-07-24T13:49:23.010000"],["2024-07-24T13:49:24.010000"],["2024-07-24T13:49:25.010000"],["2024-07-24T13:49:26.010000"],["2024-07-24T13:49:27.010000"],["2024-07-24T13:49:28.010000"],["2024-07-24T13:49:29.010000"],["2024-07-24T13:49:30.010000"],["2024-07-24T13:49:31.010000"],["2024-07-24T13:49:32.010000"],["2024-07-24T13:49:33.010000"],["2024-07-24T13:49:34.010000"],["2024-07-24T13:49:35.010000"],["2024-07-24T13:49:36.010000"],["2024-07-24T13:49:37.010000"],["2024-07-24T13:49:38.010000"],["2024-07-24T13:49:39.010000"],["2024-07-24T13:49:40.010000"],["2024-07-24T13:49:41.010000"],["2024-07-24T13:49:42.010000"],["2024-07-24T13:49:43.010000"],["2024-07-24T13:49:44.010000"],["2024-07-24T13:49:45.010000"],["2024-07-24T13:49:46.010000"],["2024-07-24T13:49:47.010000"],["2024-07-24T13:49:48.010000"],["2024-07-24T13:49:49.010000"],["2024-07-24T13:49:50.010000"],["2024-07-24T13:49:51.010000"],["2024-07-24T13:49:52.010000"],["2024-07-24T13:49:53.010000"],["2024-07-24T13:49:54.010000"],["2024-07-24T13:49:55.010000"],["2024-07-24T13:49:56.010000"],["2024-07-24T13:49:57.010000"],["2024-07-24T13:49:58.010000"],["2024-07-24T13:49:59.010000"],["2024-07-24T13:50:00.010000"],["2024-07-24T13:50:01.010000"],["2024-07-24T13:50:02.010000"],["2024-07-24T13:50:03.010000"],["2024-07-24T13:50:04.010000"],["2024-07-24T13:50:05.010000"],["2024-07-24T13:50:06.010000"],["2024-07-24T13:50:07.010000"],["2024-07-24T13:50:08.010000"],["2024-07-24T13:50:09.010000"],["2024-07-24T13:50:10.010000"],["2024-07-24T13:50:11.010000"],["2024-07-24T13:50:12.010000"],["2024-07-24T13:50:13.010000"],["2024-07-24T13:50:14.010000"],["2024-07-24T13:50:15.010000"],["2024-07-24T13:50:16.010000"],["2024-07-24T13:50:17.010000"],["2024-07-24T13:50:18.010000"],["2024-07-24T13:50:19.010000"],["2024-07-24T13:50:20.010000"],["2024-07-24T13:50:21.010000"],["2024-07-24T13:50:22.010000"],["2024-07-24T13:50:23.010000"],["2024-07-24T13:50:24.010000"],["2024-07-24T13:50:25.010000"],["2024-07-24T13:50:26.010000"],["2024-07-24T13:50:27.010000"],["2024-07-24T13:50:28.010000"],["2024-07-24T13:50:29.010000"],["2024-07-24T13:50:30.010000"],["2024-07-24T13:50:31.010000"],["2024-07-24T13:50:32.010000"],["2024-07-24T13:50:33.010000"],["2024-07-24T13:50:34.010000"],["2024-07-24T13:50:35.010000"],["2024-07-24T13:50:36.010000"],["2024-07-24T13:50:37.010000"],["2024-07-24T13:50:38.010000"],["2024-07-24T13:50:39.010000"],["2024-07-24T13:50:40.010000"],["2024-07-24T13:50:41.010000"],["2024-07-24T13:50:42.010000"],["2024-07-24T13:50:43.010000"],["2024-07-24T13:50:44.010000"],["2024-07-24T13:50:45.010000"],["2024-07-24T13:50:46.010000"],["2024-07-24T13:50:47.010000"],["2024-07-24T13:50:48.010000"],["2024-07-24T13:50:49.010000"],["2024-07-24T13:50:50.010000"],["2024-07-24T13:50:51.010000"],["2024-07-24T13:50:52.010000"],["2024-07-24T13:50:53.010000"],["2024-07-24T13:50:54.010000"],["2024-07-24T13:50:55.010000"],["2024-07-24T13:50:56.010000"],["2024-07-24T13:50:57.010000"],["2024-07-24T13:50:58.010000"],["2024-07-24T13:50:59.010000"],["2024-07-24T13:51:00.010000"],["2024-07-24T13:51:01.010000"],["2024-07-24T13:51:02.010000"],["2024-07-24T13:51:03.010000"],["2024-07-24T13:51:04.010000"],["2024-07-24T13:51:05.010000"],["2024-07-24T13:51:06.010000"],["2024-07-24T13:51:07.010000"],["2024-07-24T13:51:08.010000"],["2024-07-24T13:51:09.010000"],["2024-07-24T13:51:10.010000"],["2024-07-24T13:51:11.010000"],["2024-07-24T13:51:12.010000"],["2024-07-24T13:51:13.010000"],["2024-07-24T13:51:14.010000"],["2024-07-24T13:51:15.010000"],["2024-07-24T13:51:16.010000"],["2024-07-24T13:51:17.010000"],["2024-07-24T13:51:18.010000"],["2024-07-24T13:51:19.010000"],["2024-07-24T13:51:20.010000"],["2024-07-24T13:51:21.010000"],["2024-07-24T13:51:22.010000"],["2024-07-24T13:51:23.010000"],["2024-07-24T13:51:24.010000"],["2024-07-24T13:51:25.010000"],["2024-07-24T13:51:26.010000"],["2024-07-24T13:51:27.010000"],["2024-07-24T13:51:28.010000"],["2024-07-24T13:51:29.010000"],["2024-07-24T13:51:30.010000"],["2024-07-24T13:51:31.010000"],["2024-07-24T13:51:32.010000"],["2024-07-24T13:51:33.010000"],["2024-07-24T13:51:34.010000"],["2024-07-24T13:51:35.010000"],["2024-07-24T13:51:36.010000"],["2024-07-24T13:51:37.010000"],["2024-07-24T13:51:38.010000"],["2024-07-24T13:51:39.010000"],["2024-07-24T13:51:40.010000"],["2024-07-24T13:51:41.010000"],["2024-07-24T13:51:42.010000"],["2024-07-24T13:51:43.010000"],["2024-07-24T13:51:44.010000"],["2024-07-24T13:51:45.010000"],["2024-07-24T13:51:46.010000"],["2024-07-24T13:51:47.010000"],["2024-07-24T13:51:48.010000"],["2024-07-24T13:51:49.010000"],["2024-07-24T13:51:50.010000"],["2024-07-24T13:51:51.010000"],["2024-07-24T13:51:52.010000"],["2024-07-24T13:51:53.010000"],["2024-07-24T13:51:54.010000"],["2024-07-24T13:51:55.010000"],["2024-07-24T13:51:56.010000"],["2024-07-24T13:51:57.010000"],["2024-07-24T13:51:58.010000"],["2024-07-24T13:51:59.010000"],["2024-07-24T13:52:00.010000"],["2024-07-24T13:52:01.010000"],["2024-07-24T13:52:02.010000"],["2024-07-24T13:52:03.010000"],["2024-07-24T13:52:04.010000"],["2024-07-24T13:52:05.010000"],["2024-07-24T13:52:06.010000"],["2024-07-24T13:52:07.010000"],["2024-07-24T13:52:08.010000"],["2024-07-24T13:52:09.010000"],["2024-07-24T13:52:10.010000"],["2024-07-24T13:52:11.010000"],["2024-07-24T13:52:12.010000"],["2024-07-24T13:52:13.010000"],["2024-07-24T13:52:14.010000"],["2024-07-24T13:52:15.010000"],["2024-07-24T13:52:16.010000"],["2024-07-24T13:52:17.010000"],["2024-07-24T13:52:18.010000"],["2024-07-24T13:52:19.010000"],["2024-07-24T13:52:20.010000"],["2024-07-24T13:52:21.010000"],["2024-07-24T13:52:22.010000"],["2024-07-24T13:52:23.010000"],["2024-07-24T13:52:24.010000"],["2024-07-24T13:52:25.010000"],["2024-07-24T13:52:26.010000"],["2024-07-24T13:52:27.010000"],["2024-07-24T13:52:28.010000"],["2024-07-24T13:52:29.010000"],["2024-07-24T13:52:30.010000"],["2024-07-24T13:52:31.010000"],["2024-07-24T13:52:32.010000"],["2024-07-24T13:52:33.010000"],["2024-07-24T13:52:34.010000"],["2024-07-24T13:52:35.010000"],["2024-07-24T13:52:36.010000"],["2024-07-24T13:52:37.010000"],["2024-07-24T13:52:38.010000"],["2024-07-24T13:52:39.010000"],["2024-07-24T13:52:40.010000"],["2024-07-24T13:52:41.010000"],["2024-07-24T13:52:42.010000"],["2024-07-24T13:52:43.010000"],["2024-07-24T13:52:44.010000"],["2024-07-24T13:52:45.010000"],["2024-07-24T13:52:46.010000"],["2024-07-24T13:52:47.010000"],["2024-07-24T13:52:48.010000"],["2024-07-24T13:52:49.010000"],["2024-07-24T13:52:50.010000"],["2024-07-24T13:52:51.010000"],["2024-07-24T13:52:52.010000"],["2024-07-24T13:52:53.010000"],["2024-07-24T13:52:54.010000"],["2024-07-24T13:52:55.010000"],["2024-07-24T13:52:56.010000"],["2024-07-24T13:52:57.010000"],["2024-07-24T13:52:58.010000"],["2024-07-24T13:52:59.010000"],["2024-07-24T13:53:00.010000"],["2024-07-24T13:53:01.010000"],["2024-07-24T13:53:02.010000"],["2024-07-24T13:53:03.010000"],["2024-07-24T13:53:04.010000"],["2024-07-24T13:53:05.010000"],["2024-07-24T13:53:06.010000"],["2024-07-24T13:53:07.010000"],["2024-07-24T13:53:08.010000"],["2024-07-24T13:53:09.010000"],["2024-07-24T13:53:10.010000"],["2024-07-24T13:53:11.010000"],["2024-07-24T13:53:12.010000"],["2024-07-24T13:53:13.010000"],["2024-07-24T13:53:14.010000"],["2024-07-24T13:53:15.010000"],["2024-07-24T13:53:16.010000"],["2024-07-24T13:53:17.010000"],["2024-07-24T13:53:18.010000"],["2024-07-24T13:53:19.010000"],["2024-07-24T13:53:20.010000"],["2024-07-24T13:53:21.010000"],["2024-07-24T13:53:22.010000"],["2024-07-24T13:53:23.010000"],["2024-07-24T13:53:24.010000"],["2024-07-24T13:53:25.010000"],["2024-07-24T13:53:26.010000"],["2024-07-24T13:53:27.010000"],["2024-07-24T13:53:28.010000"],["2024-07-24T13:53:29.010000"],["2024-07-24T13:53:30.010000"],["2024-07-24T13:53:31.010000"],["2024-07-24T13:53:32.010000"],["2024-07-24T13:53:33.010000"],["2024-07-24T13:53:34.010000"],["2024-07-24T13:53:35.010000"],["2024-07-24T13:53:36.010000"],["2024-07-24T13:53:37.010000"],["2024-07-24T13:53:38.010000"],["2024-07-24T13:53:39.010000"],["2024-07-24T13:53:40.010000"],["2024-07-24T13:53:41.010000"],["2024-07-24T13:53:42.010000"],["2024-07-24T13:53:43.010000"],["2024-07-24T13:53:44.010000"],["2024-07-24T13:53:45.010000"],["2024-07-24T13:53:46.010000"],["2024-07-24T13:53:47.010000"],["2024-07-24T13:53:48.010000"],["2024-07-24T13:53:49.010000"],["2024-07-24T13:53:50.010000"],["2024-07-24T13:53:51.010000"],["2024-07-24T13:53:52.010000"],["2024-07-24T13:53:53.010000"],["2024-07-24T13:53:54.010000"],["2024-07-24T13:53:55.010000"],["2024-07-24T13:53:56.010000"],["2024-07-24T13:53:57.010000"],["2024-07-24T13:53:58.010000"],["2024-07-24T13:53:59.010000"],["2024-07-24T13:54:00.010000"],["2024-07-24T13:54:01.010000"],["2024-07-24T13:54:02.010000"],["2024-07-24T13:54:03.010000"],["2024-07-24T13:54:04.010000"],["2024-07-24T13:54:05.010000"],["2024-07-24T13:54:06.010000"],["2024-07-24T13:54:07.010000"],["2024-07-24T13:54:08.010000"],["2024-07-24T13:54:09.010000"],["2024-07-24T13:54:10.010000"],["2024-07-24T13:54:11.010000"],["2024-07-24T13:54:12.010000"],["2024-07-24T13:54:13.010000"],["2024-07-24T13:54:14.010000"],["2024-07-24T13:54:15.010000"],["2024-07-24T13:54:16.010000"],["2024-07-24T13:54:17.010000"],["2024-07-24T13:54:18.010000"],["2024-07-24T13:54:19.010000"],["2024-07-24T13:54:20.010000"],["2024-07-24T13:54:21.010000"],["2024-07-24T13:54:22.010000"],["2024-07-24T13:54:23.010000"],["2024-07-24T13:54:24.010000"],["2024-07-24T13:54:25.010000"],["2024-07-24T13:54:26.010000"],["2024-07-24T13:54:27.010000"],["2024-07-24T13:54:28.010000"],["2024-07-24T13:54:29.010000"],["2024-07-24T13:54:30.010000"],["2024-07-24T13:54:31.010000"],["2024-07-24T13:54:32.010000"],["2024-07-24T13:54:33.010000"],["2024-07-24T13:54:34.010000"],["2024-07-24T13:54:35.010000"],["2024-07-24T13:54:36.010000"],["2024-07-24T13:54:37.010000"],["2024-07-24T13:54:38.010000"],["2024-07-24T13:54:39.010000"],["2024-07-24T13:54:40.010000"],["2024-07-24T13:54:41.010000"],["2024-07-24T13:54:42.010000"],["2024-07-24T13:54:43.010000"],["2024-07-24T13:54:44.010000"],["2024-07-24T13:54:45.010000"],["2024-07-24T13:54:46.010000"],["2024-07-24T13:54:47.010000"],["2024-07-24T13:54:48.010000"],["2024-07-24T13:54:49.010000"],["2024-07-24T13:54:50.010000"],["2024-07-24T13:54:51.010000"],["2024-07-24T13:54:52.010000"],["2024-07-24T13:54:53.010000"],["2024-07-24T13:54:54.010000"],["2024-07-24T13:54:55.010000"],["2024-07-24T13:54:56.010000"],["2024-07-24T13:54:57.010000"],["2024-07-24T13:54:58.010000"],["2024-07-24T13:54:59.010000"],["2024-07-24T13:55:00.010000"],["2024-07-24T13:55:01.010000"],["2024-07-24T13:55:02.010000"],["2024-07-24T13:55:03.010000"],["2024-07-24T13:55:04.010000"],["2024-07-24T13:55:05.010000"],["2024-07-24T13:55:06.010000"],["2024-07-24T13:55:07.010000"],["2024-07-24T13:55:08.010000"],["2024-07-24T13:55:09.010000"],["2024-07-24T13:55:10.010000"],["2024-07-24T13:55:11.010000"],["2024-07-24T13:55:12.010000"],["2024-07-24T13:55:13.010000"],["2024-07-24T13:55:14.010000"],["2024-07-24T13:55:15.010000"],["2024-07-24T13:55:16.010000"],["2024-07-24T13:55:17.010000"],["2024-07-24T13:55:18.010000"],["2024-07-24T13:55:19.010000"],["2024-07-24T13:55:20.010000"],["2024-07-24T13:55:21.010000"],["2024-07-24T13:55:22.010000"],["2024-07-24T13:55:23.010000"],["2024-07-24T13:55:24.010000"],["2024-07-24T13:55:25.010000"],["2024-07-24T13:55:26.010000"],["2024-07-24T13:55:27.010000"],["2024-07-24T13:55:28.010000"],["2024-07-24T13:55:29.010000"],["2024-07-24T13:55:30.010000"],["2024-07-24T13:55:31.010000"],["2024-07-24T13:55:32.010000"],["2024-07-24T13:55:33.010000"],["2024-07-24T13:55:34.010000"],["2024-07-24T13:55:35.010000"],["2024-07-24T13:55:36.010000"],["2024-07-24T13:55:37.010000"],["2024-07-24T13:55:38.010000"],["2024-07-24T13:55:39.010000"],["2024-07-24T13:55:40.010000"],["2024-07-24T13:55:41.010000"],["2024-07-24T13:55:42.010000"],["2024-07-24T13:55:43.010000"],["2024-07-24T13:55:44.010000"],["2024-07-24T13:55:45.010000"],["2024-07-24T13:55:46.010000"],["2024-07-24T13:55:47.010000"],["2024-07-24T13:55:48.010000"],["2024-07-24T13:55:49.010000"],["2024-07-24T13:55:50.010000"],["2024-07-24T13:55:51.010000"],["2024-07-24T13:55:52.010000"],["2024-07-24T13:55:53.010000"],["2024-07-24T13:55:54.010000"],["2024-07-24T13:55:55.010000"],["2024-07-24T13:55:56.010000"],["2024-07-24T13:55:57.010000"],["2024-07-24T13:55:58.010000"],["2024-07-24T13:55:59.010000"],["2024-07-24T13:56:00.010000"],["2024-07-24T13:56:01.010000"],["2024-07-24T13:56:02.010000"],["2024-07-24T13:56:03.010000"],["2024-07-24T13:56:04.010000"],["2024-07-24T13:56:05.010000"],["2024-07-24T13:56:06.010000"],["2024-07-24T13:56:07.010000"],["2024-07-24T13:56:08.010000"],["2024-07-24T13:56:09.010000"],["2024-07-24T13:56:10.010000"],["2024-07-24T13:56:11.010000"],["2024-07-24T13:56:12.010000"],["2024-07-24T13:56:13.010000"],["2024-07-24T13:56:14.010000"],["2024-07-24T13:56:15.010000"],["2024-07-24T13:56:16.010000"],["2024-07-24T13:56:17.010000"],["2024-07-24T13:56:18.010000"],["2024-07-24T13:56:19.010000"],["2024-07-24T13:56:20.010000"],["2024-07-24T13:56:21.010000"],["2024-07-24T13:56:22.010000"],["2024-07-24T13:56:23.010000"],["2024-07-24T13:56:24.010000"],["2024-07-24T13:56:25.010000"],["2024-07-24T13:56:26.010000"],["2024-07-24T13:56:27.010000"],["2024-07-24T13:56:28.010000"],["2024-07-24T13:56:29.010000"],["2024-07-24T13:56:30.010000"],["2024-07-24T13:56:31.010000"],["2024-07-24T13:56:32.010000"],["2024-07-24T13:56:33.010000"],["2024-07-24T13:56:34.010000"],["2024-07-24T13:56:35.010000"],["2024-07-24T13:56:36.010000"],["2024-07-24T13:56:37.010000"],["2024-07-24T13:56:38.010000"],["2024-07-24T13:56:39.010000"],["2024-07-24T13:56:40.010000"],["2024-07-24T13:56:41.010000"],["2024-07-24T13:56:42.010000"],["2024-07-24T13:56:43.010000"],["2024-07-24T13:56:44.010000"],["2024-07-24T13:56:45.010000"],["2024-07-24T13:56:46.010000"],["2024-07-24T13:56:47.010000"],["2024-07-24T13:56:48.010000"],["2024-07-24T13:56:49.010000"],["2024-07-24T13:56:50.010000"],["2024-07-24T13:56:51.010000"],["2024-07-24T13:56:52.010000"],["2024-07-24T13:56:53.010000"],["2024-07-24T13:56:54.010000"],["2024-07-24T13:56:55.010000"],["2024-07-24T13:56:56.010000"],["2024-07-24T13:56:57.010000"],["2024-07-24T13:56:58.010000"],["2024-07-24T13:56:59.010000"],["2024-07-24T13:57:00.010000"],["2024-07-24T13:57:01.010000"],["2024-07-24T13:57:02.010000"],["2024-07-24T13:57:03.010000"],["2024-07-24T13:57:04.010000"],["2024-07-24T13:57:05.010000"],["2024-07-24T13:57:06.010000"],["2024-07-24T13:57:07.010000"],["2024-07-24T13:57:08.010000"],["2024-07-24T13:57:09.010000"],["2024-07-24T13:57:10.010000"],["2024-07-24T13:57:11.010000"],["2024-07-24T13:57:12.010000"],["2024-07-24T13:57:13.010000"],["2024-07-24T13:57:14.010000"],["2024-07-24T13:57:15.010000"],["2024-07-24T13:57:16.010000"],["2024-07-24T13:57:17.010000"],["2024-07-24T13:57:18.010000"],["2024-07-24T13:57:19.010000"],["2024-07-24T13:57:20.010000"],["2024-07-24T13:57:21.010000"],["2024-07-24T13:57:22.010000"],["2024-07-24T13:57:23.010000"],["2024-07-24T13:57:24.010000"],["2024-07-24T13:57:25.010000"],["2024-07-24T13:57:26.010000"],["2024-07-24T13:57:27.010000"],["2024-07-24T13:57:28.010000"],["2024-07-24T13:57:29.010000"],["2024-07-24T13:57:30.010000"],["2024-07-24T13:57:31.010000"],["2024-07-24T13:57:32.010000"],["2024-07-24T13:57:33.010000"],["2024-07-24T13:57:34.010000"],["2024-07-24T13:57:35.010000"],["2024-07-24T13:57:36.010000"],["2024-07-24T13:57:37.010000"],["2024-07-24T13:57:38.010000"],["2024-07-24T13:57:39.010000"],["2024-07-24T13:57:40.010000"],["2024-07-24T13:57:41.010000"],["2024-07-24T13:57:42.010000"],["2024-07-24T13:57:43.010000"],["2024-07-24T13:57:44.010000"],["2024-07-24T13:57:45.010000"],["2024-07-24T13:57:46.010000"],["2024-07-24T13:57:47.010000"],["2024-07-24T13:57:48.010000"],["2024-07-24T13:57:49.010000"],["2024-07-24T13:57:50.010000"],["2024-07-24T13:57:51.010000"],["2024-07-24T13:57:52.010000"],["2024-07-24T13:57:53.010000"],["2024-07-24T13:57:54.010000"],["2024-07-24T13:57:55.010000"],["2024-07-24T13:57:56.010000"],["2024-07-24T13:57:57.010000"],["2024-07-24T13:57:58.010000"],["2024-07-24T13:57:59.010000"],["2024-07-24T13:58:00.010000"],["2024-07-24T13:58:01.010000"],["2024-07-24T13:58:02.010000"],["2024-07-24T13:58:03.010000"],["2024-07-24T13:58:04.010000"],["2024-07-24T13:58:05.010000"],["2024-07-24T13:58:06.010000"],["2024-07-24T13:58:07.010000"],["2024-07-24T13:58:08.010000"],["2024-07-24T13:58:09.010000"],["2024-07-24T13:58:10.010000"],["2024-07-24T13:58:11.010000"],["2024-07-24T13:58:12.010000"],["2024-07-24T13:58:13.010000"],["2024-07-24T13:58:14.010000"],["2024-07-24T13:58:15.010000"],["2024-07-24T13:58:16.010000"],["2024-07-24T13:58:17.010000"],["2024-07-24T13:58:18.010000"],["2024-07-24T13:58:19.010000"],["2024-07-24T13:58:20.010000"],["2024-07-24T13:58:21.010000"],["2024-07-24T13:58:22.010000"],["2024-07-24T13:58:23.010000"],["2024-07-24T13:58:24.010000"],["2024-07-24T13:58:25.010000"],["2024-07-24T13:58:26.010000"],["2024-07-24T13:58:27.010000"],["2024-07-24T13:58:28.010000"],["2024-07-24T13:58:29.010000"],["2024-07-24T13:58:30.010000"],["2024-07-24T13:58:31.010000"],["2024-07-24T13:58:32.010000"],["2024-07-24T13:58:33.010000"],["2024-07-24T13:58:34.010000"],["2024-07-24T13:58:35.010000"],["2024-07-24T13:58:36.010000"],["2024-07-24T13:58:37.010000"],["2024-07-24T13:58:38.010000"],["2024-07-24T13:58:39.010000"],["2024-07-24T13:58:40.010000"],["2024-07-24T13:58:41.010000"],["2024-07-24T13:58:42.010000"],["2024-07-24T13:58:43.010000"],["2024-07-24T13:58:44.010000"],["2024-07-24T13:58:45.010000"],["2024-07-24T13:58:46.010000"],["2024-07-24T13:58:47.010000"],["2024-07-24T13:58:48.010000"],["2024-07-24T13:58:49.010000"],["2024-07-24T13:58:50.010000"],["2024-07-24T13:58:51.010000"],["2024-07-24T13:58:52.010000"],["2024-07-24T13:58:53.010000"],["2024-07-24T13:58:54.010000"],["2024-07-24T13:58:55.010000"],["2024-07-24T13:58:56.010000"],["2024-07-24T13:58:57.010000"],["2024-07-24T13:58:58.010000"],["2024-07-24T13:58:59.010000"],["2024-07-24T13:59:00.010000"],["2024-07-24T13:59:01.010000"],["2024-07-24T13:59:02.010000"],["2024-07-24T13:59:03.010000"],["2024-07-24T13:59:04.010000"],["2024-07-24T13:59:05.010000"],["2024-07-24T13:59:06.010000"],["2024-07-24T13:59:07.010000"],["2024-07-24T13:59:08.010000"],["2024-07-24T13:59:09.010000"],["2024-07-24T13:59:10.010000"],["2024-07-24T13:59:11.010000"],["2024-07-24T13:59:12.010000"],["2024-07-24T13:59:13.010000"],["2024-07-24T13:59:14.010000"],["2024-07-24T13:59:15.010000"],["2024-07-24T13:59:16.010000"],["2024-07-24T13:59:17.010000"],["2024-07-24T13:59:18.010000"],["2024-07-24T13:59:19.010000"],["2024-07-24T13:59:20.010000"],["2024-07-24T13:59:21.010000"],["2024-07-24T13:59:22.010000"],["2024-07-24T13:59:23.010000"],["2024-07-24T13:59:24.010000"],["2024-07-24T13:59:25.010000"],["2024-07-24T13:59:26.010000"],["2024-07-24T13:59:27.010000"],["2024-07-24T13:59:28.010000"],["2024-07-24T13:59:29.010000"],["2024-07-24T13:59:30.010000"],["2024-07-24T13:59:31.010000"],["2024-07-24T13:59:32.010000"],["2024-07-24T13:59:33.010000"],["2024-07-24T13:59:34.010000"],["2024-07-24T13:59:35.010000"],["2024-07-24T13:59:36.010000"],["2024-07-24T13:59:37.010000"],["2024-07-24T13:59:38.010000"],["2024-07-24T13:59:39.010000"],["2024-07-24T13:59:40.010000"],["2024-07-24T13:59:41.010000"],["2024-07-24T13:59:42.010000"],["2024-07-24T13:59:43.010000"],["2024-07-24T13:59:44.010000"],["2024-07-24T13:59:45.010000"],["2024-07-24T13:59:46.010000"],["2024-07-24T13:59:47.010000"],["2024-07-24T13:59:48.010000"],["2024-07-24T13:59:49.010000"],["2024-07-24T13:59:50.010000"],["2024-07-24T13:59:51.010000"],["2024-07-24T13:59:52.010000"],["2024-07-24T13:59:53.010000"],["2024-07-24T13:59:54.010000"],["2024-07-24T13:59:55.010000"],["2024-07-24T13:59:56.010000"],["2024-07-24T13:59:57.010000"],["2024-07-24T13:59:58.010000"],["2024-07-24T13:59:59.010000"],["2024-07-24T14:00:00.010000"],["2024-07-24T14:00:01.010000"],["2024-07-24T14:00:02.010000"],["2024-07-24T14:00:03.010000"],["2024-07-24T14:00:04.010000"],["2024-07-24T14:00:05.010000"],["2024-07-24T14:00:06.010000"],["2024-07-24T14:00:07.010000"],["2024-07-24T14:00:08.010000"],["2024-07-24T14:00:09.010000"],["2024-07-24T14:00:10.010000"],["2024-07-24T14:00:11.010000"],["2024-07-24T14:00:12.010000"],["2024-07-24T14:00:13.010000"],["2024-07-24T14:00:14.010000"],["2024-07-24T14:00:15.010000"],["2024-07-24T14:00:16.010000"],["2024-07-24T14:00:17.010000"],["2024-07-24T14:00:18.010000"],["2024-07-24T14:00:19.010000"],["2024-07-24T14:00:20.010000"],["2024-07-24T14:00:21.010000"],["2024-07-24T14:00:22.010000"],["2024-07-24T14:00:23.010000"],["2024-07-24T14:00:24.010000"],["2024-07-24T14:00:25.010000"],["2024-07-24T14:00:26.010000"],["2024-07-24T14:00:27.010000"],["2024-07-24T14:00:28.010000"],["2024-07-24T14:00:29.010000"],["2024-07-24T14:00:30.010000"],["2024-07-24T14:00:31.010000"],["2024-07-24T14:00:32.010000"],["2024-07-24T14:00:33.010000"],["2024-07-24T14:00:34.010000"],["2024-07-24T14:00:35.010000"],["2024-07-24T14:00:36.010000"],["2024-07-24T14:00:37.010000"],["2024-07-24T14:00:38.010000"],["2024-07-24T14:00:39.010000"],["2024-07-24T14:00:40.010000"],["2024-07-24T14:00:41.010000"],["2024-07-24T14:00:42.010000"],["2024-07-24T14:00:43.010000"],["2024-07-24T14:00:44.010000"],["2024-07-24T14:00:45.010000"],["2024-07-24T14:00:46.010000"],["2024-07-24T14:00:47.010000"],["2024-07-24T14:00:48.010000"],["2024-07-24T14:00:49.010000"],["2024-07-24T14:00:50.010000"],["2024-07-24T14:00:51.010000"],["2024-07-24T14:00:52.010000"],["2024-07-24T14:00:53.010000"],["2024-07-24T14:00:54.010000"],["2024-07-24T14:00:55.010000"],["2024-07-24T14:00:56.010000"],["2024-07-24T14:00:57.010000"],["2024-07-24T14:00:58.010000"],["2024-07-24T14:00:59.010000"],["2024-07-24T14:01:00.010000"],["2024-07-24T14:01:01.010000"],["2024-07-24T14:01:02.010000"],["2024-07-24T14:01:03.010000"],["2024-07-24T14:01:04.010000"],["2024-07-24T14:01:05.010000"],["2024-07-24T14:01:06.010000"],["2024-07-24T14:01:07.010000"],["2024-07-24T14:01:08.010000"],["2024-07-24T14:01:09.010000"],["2024-07-24T14:01:10.010000"],["2024-07-24T14:01:11.010000"],["2024-07-24T14:01:12.010000"],["2024-07-24T14:01:13.010000"],["2024-07-24T14:01:14.010000"],["2024-07-24T14:01:15.010000"],["2024-07-24T14:01:16.010000"],["2024-07-24T14:01:17.010000"],["2024-07-24T14:01:18.010000"],["2024-07-24T14:01:19.010000"],["2024-07-24T14:01:20.010000"],["2024-07-24T14:01:21.010000"],["2024-07-24T14:01:22.010000"],["2024-07-24T14:01:23.010000"],["2024-07-24T14:01:24.010000"],["2024-07-24T14:01:25.010000"],["2024-07-24T14:01:26.010000"],["2024-07-24T14:01:27.010000"],["2024-07-24T14:01:28.010000"],["2024-07-24T14:01:29.010000"],["2024-07-24T14:01:30.010000"],["2024-07-24T14:01:31.010000"],["2024-07-24T14:01:32.010000"],["2024-07-24T14:01:33.010000"],["2024-07-24T14:01:34.010000"],["2024-07-24T14:01:35.010000"],["2024-07-24T14:01:36.010000"],["2024-07-24T14:01:37.010000"],["2024-07-24T14:01:38.010000"],["2024-07-24T14:01:39.010000"],["2024-07-24T14:01:40.010000"],["2024-07-24T14:01:41.010000"],["2024-07-24T14:01:42.010000"],["2024-07-24T14:01:43.010000"],["2024-07-24T14:01:44.010000"],["2024-07-24T14:01:45.010000"],["2024-07-24T14:01:46.010000"],["2024-07-24T14:01:47.010000"],["2024-07-24T14:01:48.010000"],["2024-07-24T14:01:49.010000"],["2024-07-24T14:01:50.010000"],["2024-07-24T14:01:51.010000"],["2024-07-24T14:01:52.010000"],["2024-07-24T14:01:53.010000"],["2024-07-24T14:01:54.010000"],["2024-07-24T14:01:55.010000"],["2024-07-24T14:01:56.010000"],["2024-07-24T14:01:57.010000"],["2024-07-24T14:01:58.010000"],["2024-07-24T14:01:59.010000"],["2024-07-24T14:02:00.010000"],["2024-07-24T14:02:01.010000"],["2024-07-24T14:02:02.010000"],["2024-07-24T14:02:03.010000"],["2024-07-24T14:02:04.010000"],["2024-07-24T14:02:05.010000"],["2024-07-24T14:02:06.010000"],["2024-07-24T14:02:07.010000"],["2024-07-24T14:02:08.010000"],["2024-07-24T14:02:09.010000"],["2024-07-24T14:02:10.010000"],["2024-07-24T14:02:11.010000"],["2024-07-24T14:02:12.010000"],["2024-07-24T14:02:13.010000"],["2024-07-24T14:02:14.010000"],["2024-07-24T14:02:15.010000"],["2024-07-24T14:02:16.010000"],["2024-07-24T14:02:17.010000"],["2024-07-24T14:02:18.010000"],["2024-07-24T14:02:19.010000"],["2024-07-24T14:02:20.010000"],["2024-07-24T14:02:21.010000"],["2024-07-24T14:02:22.010000"],["2024-07-24T14:02:23.010000"],["2024-07-24T14:02:24.010000"],["2024-07-24T14:02:25.010000"],["2024-07-24T14:02:26.010000"],["2024-07-24T14:02:27.010000"],["2024-07-24T14:02:28.010000"],["2024-07-24T14:02:29.010000"],["2024-07-24T14:02:30.010000"],["2024-07-24T14:02:31.010000"],["2024-07-24T14:02:32.010000"],["2024-07-24T14:02:33.010000"],["2024-07-24T14:02:34.010000"],["2024-07-24T14:02:35.010000"],["2024-07-24T14:02:36.010000"],["2024-07-24T14:02:37.010000"],["2024-07-24T14:02:38.010000"],["2024-07-24T14:02:39.010000"],["2024-07-24T14:02:40.010000"],["2024-07-24T14:02:41.010000"],["2024-07-24T14:02:42.010000"],["2024-07-24T14:02:43.010000"],["2024-07-24T14:02:44.010000"],["2024-07-24T14:02:45.010000"],["2024-07-24T14:02:46.010000"],["2024-07-24T14:02:47.010000"],["2024-07-24T14:02:48.010000"],["2024-07-24T14:02:49.010000"],["2024-07-24T14:02:50.010000"],["2024-07-24T14:02:51.010000"],["2024-07-24T14:02:52.010000"],["2024-07-24T14:02:53.010000"],["2024-07-24T14:02:54.010000"],["2024-07-24T14:02:55.010000"],["2024-07-24T14:02:56.010000"],["2024-07-24T14:02:57.010000"],["2024-07-24T14:02:58.010000"],["2024-07-24T14:02:59.010000"],["2024-07-24T14:03:00.010000"],["2024-07-24T14:03:01.010000"],["2024-07-24T14:03:02.010000"],["2024-07-24T14:03:03.010000"],["2024-07-24T14:03:04.010000"],["2024-07-24T14:03:05.010000"],["2024-07-24T14:03:06.010000"],["2024-07-24T14:03:07.010000"],["2024-07-24T14:03:08.010000"],["2024-07-24T14:03:09.010000"],["2024-07-24T14:03:10.010000"],["2024-07-24T14:03:11.010000"],["2024-07-24T14:03:12.010000"],["2024-07-24T14:03:13.010000"],["2024-07-24T14:03:14.010000"],["2024-07-24T14:03:15.010000"],["2024-07-24T14:03:16.010000"],["2024-07-24T14:03:17.010000"],["2024-07-24T14:03:18.010000"],["2024-07-24T14:03:19.010000"],["2024-07-24T14:03:20.010000"],["2024-07-24T14:03:21.010000"],["2024-07-24T14:03:22.010000"],["2024-07-24T14:03:23.010000"],["2024-07-24T14:03:24.010000"],["2024-07-24T14:03:25.010000"],["2024-07-24T14:03:26.010000"],["2024-07-24T14:03:27.010000"],["2024-07-24T14:03:28.010000"],["2024-07-24T14:03:29.010000"],["2024-07-24T14:03:30.010000"],["2024-07-24T14:03:31.010000"],["2024-07-24T14:03:32.010000"],["2024-07-24T14:03:33.010000"],["2024-07-24T14:03:34.010000"],["2024-07-24T14:03:35.010000"],["2024-07-24T14:03:36.010000"],["2024-07-24T14:03:37.010000"],["2024-07-24T14:03:38.010000"],["2024-07-24T14:03:39.010000"],["2024-07-24T14:03:40.010000"],["2024-07-24T14:03:41.010000"],["2024-07-24T14:03:42.010000"],["2024-07-24T14:03:43.010000"],["2024-07-24T14:03:44.010000"],["2024-07-24T14:03:45.010000"],["2024-07-24T14:03:46.010000"],["2024-07-24T14:03:47.010000"],["2024-07-24T14:03:48.010000"],["2024-07-24T14:03:49.010000"],["2024-07-24T14:03:50.010000"],["2024-07-24T14:03:51.010000"],["2024-07-24T14:03:52.010000"],["2024-07-24T14:03:53.010000"],["2024-07-24T14:03:54.010000"],["2024-07-24T14:03:55.010000"],["2024-07-24T14:03:56.010000"],["2024-07-24T14:03:57.010000"],["2024-07-24T14:03:58.010000"],["2024-07-24T14:03:59.010000"],["2024-07-24T14:04:00.010000"],["2024-07-24T14:04:01.010000"],["2024-07-24T14:04:02.010000"],["2024-07-24T14:04:03.010000"],["2024-07-24T14:04:04.010000"],["2024-07-24T14:04:05.010000"],["2024-07-24T14:04:06.010000"],["2024-07-24T14:04:07.010000"],["2024-07-24T14:04:08.010000"],["2024-07-24T14:04:09.010000"],["2024-07-24T14:04:10.010000"],["2024-07-24T14:04:11.010000"],["2024-07-24T14:04:12.010000"],["2024-07-24T14:04:13.010000"],["2024-07-24T14:04:14.010000"],["2024-07-24T14:04:15.010000"],["2024-07-24T14:04:16.010000"],["2024-07-24T14:04:17.010000"],["2024-07-24T14:04:18.010000"],["2024-07-24T14:04:19.010000"],["2024-07-24T14:04:20.010000"],["2024-07-24T14:04:21.010000"],["2024-07-24T14:04:22.010000"],["2024-07-24T14:04:23.010000"],["2024-07-24T14:04:24.010000"],["2024-07-24T14:04:25.010000"],["2024-07-24T14:04:26.010000"],["2024-07-24T14:04:27.010000"],["2024-07-24T14:04:28.010000"],["2024-07-24T14:04:29.010000"],["2024-07-24T14:04:30.010000"],["2024-07-24T14:04:31.010000"],["2024-07-24T14:04:32.010000"],["2024-07-24T14:04:33.010000"],["2024-07-24T14:04:34.010000"],["2024-07-24T14:04:35.010000"],["2024-07-24T14:04:36.010000"],["2024-07-24T14:04:37.010000"],["2024-07-24T14:04:38.010000"],["2024-07-24T14:04:39.010000"],["2024-07-24T14:04:40.010000"],["2024-07-24T14:04:41.010000"],["2024-07-24T14:04:42.010000"],["2024-07-24T14:04:43.010000"],["2024-07-24T14:04:44.010000"],["2024-07-24T14:04:45.010000"],["2024-07-24T14:04:46.010000"],["2024-07-24T14:04:47.010000"],["2024-07-24T14:04:48.010000"],["2024-07-24T14:04:49.010000"],["2024-07-24T14:04:50.010000"],["2024-07-24T14:04:51.010000"],["2024-07-24T14:04:52.010000"],["2024-07-24T14:04:53.010000"],["2024-07-24T14:04:54.010000"],["2024-07-24T14:04:55.010000"],["2024-07-24T14:04:56.010000"],["2024-07-24T14:04:57.010000"],["2024-07-24T14:04:58.010000"],["2024-07-24T14:04:59.010000"],["2024-07-24T14:05:00.010000"],["2024-07-24T14:05:01.010000"],["2024-07-24T14:05:02.010000"],["2024-07-24T14:05:03.010000"],["2024-07-24T14:05:04.010000"],["2024-07-24T14:05:05.010000"],["2024-07-24T14:05:06.010000"],["2024-07-24T14:05:07.010000"],["2024-07-24T14:05:08.010000"],["2024-07-24T14:05:09.010000"],["2024-07-24T14:05:10.010000"],["2024-07-24T14:05:11.010000"],["2024-07-24T14:05:12.010000"],["2024-07-24T14:05:13.010000"],["2024-07-24T14:05:14.010000"],["2024-07-24T14:05:15.010000"],["2024-07-24T14:05:16.010000"],["2024-07-24T14:05:17.010000"],["2024-07-24T14:05:18.010000"],["2024-07-24T14:05:19.010000"],["2024-07-24T14:05:20.010000"],["2024-07-24T14:05:21.010000"],["2024-07-24T14:05:22.010000"],["2024-07-24T14:05:23.010000"],["2024-07-24T14:05:24.010000"],["2024-07-24T14:05:25.010000"],["2024-07-24T14:05:26.010000"],["2024-07-24T14:05:27.010000"],["2024-07-24T14:05:28.010000"],["2024-07-24T14:05:29.010000"],["2024-07-24T14:05:30.010000"],["2024-07-24T14:05:31.010000"],["2024-07-24T14:05:32.010000"],["2024-07-24T14:05:33.010000"],["2024-07-24T14:05:34.010000"],["2024-07-24T14:05:35.010000"],["2024-07-24T14:05:36.010000"],["2024-07-24T14:05:37.010000"],["2024-07-24T14:05:38.010000"],["2024-07-24T14:05:39.010000"],["2024-07-24T14:05:40.010000"],["2024-07-24T14:05:41.010000"],["2024-07-24T14:05:42.010000"],["2024-07-24T14:05:43.010000"],["2024-07-24T14:05:44.010000"],["2024-07-24T14:05:45.010000"],["2024-07-24T14:05:46.010000"],["2024-07-24T14:05:47.010000"],["2024-07-24T14:05:48.010000"],["2024-07-24T14:05:49.010000"],["2024-07-24T14:05:50.010000"],["2024-07-24T14:05:51.010000"],["2024-07-24T14:05:52.010000"],["2024-07-24T14:05:53.010000"],["2024-07-24T14:05:54.010000"],["2024-07-24T14:05:55.010000"],["2024-07-24T14:05:56.010000"],["2024-07-24T14:05:57.010000"],["2024-07-24T14:05:58.010000"],["2024-07-24T14:05:59.010000"],["2024-07-24T14:06:00.010000"],["2024-07-24T14:06:01.010000"],["2024-07-24T14:06:02.010000"],["2024-07-24T14:06:03.010000"],["2024-07-24T14:06:04.010000"],["2024-07-24T14:06:05.010000"],["2024-07-24T14:06:06.010000"],["2024-07-24T14:06:07.010000"],["2024-07-24T14:06:08.010000"],["2024-07-24T14:06:09.010000"],["2024-07-24T14:06:10.010000"],["2024-07-24T14:06:11.010000"],["2024-07-24T14:06:12.010000"],["2024-07-24T14:06:13.010000"],["2024-07-24T14:06:14.010000"],["2024-07-24T14:06:15.010000"],["2024-07-24T14:06:16.010000"],["2024-07-24T14:06:17.010000"],["2024-07-24T14:06:18.010000"],["2024-07-24T14:06:19.010000"],["2024-07-24T14:06:20.010000"],["2024-07-24T14:06:21.010000"],["2024-07-24T14:06:22.010000"],["2024-07-24T14:06:23.010000"],["2024-07-24T14:06:24.010000"],["2024-07-24T14:06:25.010000"],["2024-07-24T14:06:26.010000"],["2024-07-24T14:06:27.010000"],["2024-07-24T14:06:28.010000"],["2024-07-24T14:06:29.010000"],["2024-07-24T14:06:30.010000"],["2024-07-24T14:06:31.010000"],["2024-07-24T14:06:32.010000"],["2024-07-24T14:06:33.010000"],["2024-07-24T14:06:34.010000"],["2024-07-24T14:06:35.010000"],["2024-07-24T14:06:36.010000"],["2024-07-24T14:06:37.010000"],["2024-07-24T14:06:38.010000"],["2024-07-24T14:06:39.010000"],["2024-07-24T14:06:40.010000"],["2024-07-24T14:06:41.010000"],["2024-07-24T14:06:42.010000"],["2024-07-24T14:06:43.010000"],["2024-07-24T14:06:44.010000"],["2024-07-24T14:06:45.010000"],["2024-07-24T14:06:46.010000"],["2024-07-24T14:06:47.010000"],["2024-07-24T14:06:48.010000"],["2024-07-24T14:06:49.010000"],["2024-07-24T14:06:50.010000"],["2024-07-24T14:06:51.010000"],["2024-07-24T14:06:52.010000"],["2024-07-24T14:06:53.010000"],["2024-07-24T14:06:54.010000"],["2024-07-24T14:06:55.010000"],["2024-07-24T14:06:56.010000"],["2024-07-24T14:06:57.010000"],["2024-07-24T14:06:58.010000"],["2024-07-24T14:06:59.010000"],["2024-07-24T14:07:00.010000"],["2024-07-24T14:07:01.010000"],["2024-07-24T14:07:02.010000"],["2024-07-24T14:07:03.010000"],["2024-07-24T14:07:04.010000"],["2024-07-24T14:07:05.010000"],["2024-07-24T14:07:06.010000"],["2024-07-24T14:07:07.010000"],["2024-07-24T14:07:08.010000"],["2024-07-24T14:07:09.010000"],["2024-07-24T14:07:10.010000"],["2024-07-24T14:07:11.010000"],["2024-07-24T14:07:12.010000"],["2024-07-24T14:07:13.010000"],["2024-07-24T14:07:14.010000"],["2024-07-24T14:07:15.010000"],["2024-07-24T14:07:16.010000"],["2024-07-24T14:07:17.010000"],["2024-07-24T14:07:18.010000"],["2024-07-24T14:07:19.010000"],["2024-07-24T14:07:20.010000"],["2024-07-24T14:07:21.010000"],["2024-07-24T14:07:22.010000"],["2024-07-24T14:07:23.010000"],["2024-07-24T14:07:24.010000"],["2024-07-24T14:07:25.010000"],["2024-07-24T14:07:26.010000"],["2024-07-24T14:07:27.010000"],["2024-07-24T14:07:28.010000"],["2024-07-24T14:07:29.010000"],["2024-07-24T14:07:30.010000"],["2024-07-24T14:07:31.010000"],["2024-07-24T14:07:32.010000"],["2024-07-24T14:07:33.010000"],["2024-07-24T14:07:34.010000"],["2024-07-24T14:07:35.010000"],["2024-07-24T14:07:36.010000"],["2024-07-24T14:07:37.010000"],["2024-07-24T14:07:38.010000"],["2024-07-24T14:07:39.010000"],["2024-07-24T14:07:40.010000"],["2024-07-24T14:07:41.010000"],["2024-07-24T14:07:42.010000"],["2024-07-24T14:07:43.010000"],["2024-07-24T14:07:44.010000"],["2024-07-24T14:07:45.010000"],["2024-07-24T14:07:46.010000"],["2024-07-24T14:07:47.010000"],["2024-07-24T14:07:48.010000"],["2024-07-24T14:07:49.010000"],["2024-07-24T14:07:50.010000"],["2024-07-24T14:07:51.010000"],["2024-07-24T14:07:52.010000"],["2024-07-24T14:07:53.010000"],["2024-07-24T14:07:54.010000"],["2024-07-24T14:07:55.010000"],["2024-07-24T14:07:56.010000"],["2024-07-24T14:07:57.010000"],["2024-07-24T14:07:58.010000"],["2024-07-24T14:07:59.010000"],["2024-07-24T14:08:00.010000"],["2024-07-24T14:08:01.010000"],["2024-07-24T14:08:02.010000"],["2024-07-24T14:08:03.010000"],["2024-07-24T14:08:04.010000"],["2024-07-24T14:08:05.010000"],["2024-07-24T14:08:06.010000"],["2024-07-24T14:08:07.010000"],["2024-07-24T14:08:08.010000"],["2024-07-24T14:08:09.010000"],["2024-07-24T14:08:10.010000"],["2024-07-24T14:08:11.010000"],["2024-07-24T14:08:12.010000"],["2024-07-24T14:08:13.010000"],["2024-07-24T14:08:14.010000"],["2024-07-24T14:08:15.010000"],["2024-07-24T14:08:16.010000"],["2024-07-24T14:08:17.010000"],["2024-07-24T14:08:18.010000"],["2024-07-24T14:08:19.010000"],["2024-07-24T14:08:20.010000"],["2024-07-24T14:08:21.010000"],["2024-07-24T14:08:22.010000"],["2024-07-24T14:08:23.010000"],["2024-07-24T14:08:24.010000"],["2024-07-24T14:08:25.010000"],["2024-07-24T14:08:26.010000"],["2024-07-24T14:08:27.010000"],["2024-07-24T14:08:28.010000"],["2024-07-24T14:08:29.010000"],["2024-07-24T14:08:30.010000"],["2024-07-24T14:08:31.010000"],["2024-07-24T14:08:32.010000"],["2024-07-24T14:08:33.010000"],["2024-07-24T14:08:34.010000"],["2024-07-24T14:08:35.010000"],["2024-07-24T14:08:36.010000"],["2024-07-24T14:08:37.010000"],["2024-07-24T14:08:38.010000"],["2024-07-24T14:08:39.010000"],["2024-07-24T14:08:40.010000"],["2024-07-24T14:08:41.010000"],["2024-07-24T14:08:42.010000"],["2024-07-24T14:08:43.010000"],["2024-07-24T14:08:44.010000"],["2024-07-24T14:08:45.010000"],["2024-07-24T14:08:46.010000"],["2024-07-24T14:08:47.010000"],["2024-07-24T14:08:48.010000"],["2024-07-24T14:08:49.010000"],["2024-07-24T14:08:50.010000"],["2024-07-24T14:08:51.010000"],["2024-07-24T14:08:52.010000"],["2024-07-24T14:08:53.010000"],["2024-07-24T14:08:54.010000"],["2024-07-24T14:08:55.010000"],["2024-07-24T14:08:56.010000"],["2024-07-24T14:08:57.010000"],["2024-07-24T14:08:58.010000"],["2024-07-24T14:08:59.010000"],["2024-07-24T14:09:00.010000"],["2024-07-24T14:09:01.010000"],["2024-07-24T14:09:02.010000"],["2024-07-24T14:09:03.010000"],["2024-07-24T14:09:04.010000"],["2024-07-24T14:09:05.010000"],["2024-07-24T14:09:06.010000"],["2024-07-24T14:09:07.010000"],["2024-07-24T14:09:08.010000"],["2024-07-24T14:09:09.010000"],["2024-07-24T14:09:10.010000"],["2024-07-24T14:09:11.010000"],["2024-07-24T14:09:12.010000"],["2024-07-24T14:09:13.010000"],["2024-07-24T14:09:14.010000"],["2024-07-24T14:09:15.010000"],["2024-07-24T14:09:16.010000"],["2024-07-24T14:09:17.010000"],["2024-07-24T14:09:18.010000"],["2024-07-24T14:09:19.010000"],["2024-07-24T14:09:20.010000"],["2024-07-24T14:09:21.010000"],["2024-07-24T14:09:22.010000"],["2024-07-24T14:09:23.010000"],["2024-07-24T14:09:24.010000"],["2024-07-24T14:09:25.010000"],["2024-07-24T14:09:26.010000"],["2024-07-24T14:09:27.010000"],["2024-07-24T14:09:28.010000"],["2024-07-24T14:09:29.010000"],["2024-07-24T14:09:30.010000"],["2024-07-24T14:09:31.010000"],["2024-07-24T14:09:32.010000"],["2024-07-24T14:09:33.010000"],["2024-07-24T14:09:34.010000"],["2024-07-24T14:09:35.010000"],["2024-07-24T14:09:36.010000"],["2024-07-24T14:09:37.010000"],["2024-07-24T14:09:38.010000"],["2024-07-24T14:09:39.010000"],["2024-07-24T14:09:40.010000"],["2024-07-24T14:09:41.010000"],["2024-07-24T14:09:42.010000"],["2024-07-24T14:09:43.010000"],["2024-07-24T14:09:44.010000"],["2024-07-24T14:09:45.010000"],["2024-07-24T14:09:46.010000"],["2024-07-24T14:09:47.010000"],["2024-07-24T14:09:48.010000"],["2024-07-24T14:09:49.010000"],["2024-07-24T14:09:50.010000"],["2024-07-24T14:09:51.010000"],["2024-07-24T14:09:52.010000"],["2024-07-24T14:09:53.010000"],["2024-07-24T14:09:54.010000"],["2024-07-24T14:09:55.010000"],["2024-07-24T14:09:56.010000"],["2024-07-24T14:09:57.010000"],["2024-07-24T14:09:58.010000"],["2024-07-24T14:09:59.010000"],["2024-07-24T14:10:00.010000"],["2024-07-24T14:10:01.010000"],["2024-07-24T14:10:02.010000"],["2024-07-24T14:10:03.010000"],["2024-07-24T14:10:04.010000"],["2024-07-24T14:10:05.010000"],["2024-07-24T14:10:06.010000"],["2024-07-24T14:10:07.010000"],["2024-07-24T14:10:08.010000"],["2024-07-24T14:10:09.010000"],["2024-07-24T14:10:10.010000"],["2024-07-24T14:10:11.010000"],["2024-07-24T14:10:12.010000"],["2024-07-24T14:10:13.010000"],["2024-07-24T14:10:14.010000"],["2024-07-24T14:10:15.010000"],["2024-07-24T14:10:16.010000"],["2024-07-24T14:10:17.010000"],["2024-07-24T14:10:18.010000"],["2024-07-24T14:10:19.010000"],["2024-07-24T14:10:20.010000"],["2024-07-24T14:10:21.010000"],["2024-07-24T14:10:22.010000"],["2024-07-24T14:10:23.010000"],["2024-07-24T14:10:24.010000"],["2024-07-24T14:10:25.010000"],["2024-07-24T14:10:26.010000"],["2024-07-24T14:10:27.010000"],["2024-07-24T14:10:28.010000"],["2024-07-24T14:10:29.010000"],["2024-07-24T14:10:30.010000"],["2024-07-24T14:10:31.010000"],["2024-07-24T14:10:32.010000"],["2024-07-24T14:10:33.010000"],["2024-07-24T14:10:34.010000"],["2024-07-24T14:10:35.010000"],["2024-07-24T14:10:36.010000"],["2024-07-24T14:10:37.010000"],["2024-07-24T14:10:38.010000"],["2024-07-24T14:10:39.010000"],["2024-07-24T14:10:40.010000"],["2024-07-24T14:10:41.010000"],["2024-07-24T14:10:42.010000"],["2024-07-24T14:10:43.010000"],["2024-07-24T14:10:44.010000"],["2024-07-24T14:10:45.010000"],["2024-07-24T14:10:46.010000"],["2024-07-24T14:10:47.010000"],["2024-07-24T14:10:48.010000"],["2024-07-24T14:10:49.010000"],["2024-07-24T14:10:50.010000"],["2024-07-24T14:10:51.010000"],["2024-07-24T14:10:52.010000"],["2024-07-24T14:10:53.010000"],["2024-07-24T14:10:54.010000"],["2024-07-24T14:10:55.010000"],["2024-07-24T14:10:56.010000"],["2024-07-24T14:10:57.010000"],["2024-07-24T14:10:58.010000"],["2024-07-24T14:10:59.010000"],["2024-07-24T14:11:00.010000"],["2024-07-24T14:11:01.010000"],["2024-07-24T14:11:02.010000"],["2024-07-24T14:11:03.010000"],["2024-07-24T14:11:04.010000"],["2024-07-24T14:11:05.010000"],["2024-07-24T14:11:06.010000"],["2024-07-24T14:11:07.010000"],["2024-07-24T14:11:08.010000"],["2024-07-24T14:11:09.010000"],["2024-07-24T14:11:10.010000"],["2024-07-24T14:11:11.010000"],["2024-07-24T14:11:12.010000"],["2024-07-24T14:11:13.010000"],["2024-07-24T14:11:14.010000"],["2024-07-24T14:11:15.010000"],["2024-07-24T14:11:16.010000"],["2024-07-24T14:11:17.010000"],["2024-07-24T14:11:18.010000"],["2024-07-24T14:11:19.010000"],["2024-07-24T14:11:20.010000"],["2024-07-24T14:11:21.010000"],["2024-07-24T14:11:22.010000"],["2024-07-24T14:11:23.010000"],["2024-07-24T14:11:24.010000"],["2024-07-24T14:11:25.010000"],["2024-07-24T14:11:26.010000"],["2024-07-24T14:11:27.010000"],["2024-07-24T14:11:28.010000"],["2024-07-24T14:11:29.010000"],["2024-07-24T14:11:30.010000"],["2024-07-24T14:11:31.010000"],["2024-07-24T14:11:32.010000"],["2024-07-24T14:11:33.010000"],["2024-07-24T14:11:34.010000"],["2024-07-24T14:11:35.010000"],["2024-07-24T14:11:36.010000"],["2024-07-24T14:11:37.010000"],["2024-07-24T14:11:38.010000"],["2024-07-24T14:11:39.010000"],["2024-07-24T14:11:40.010000"],["2024-07-24T14:11:41.010000"],["2024-07-24T14:11:42.010000"],["2024-07-24T14:11:43.010000"],["2024-07-24T14:11:44.010000"],["2024-07-24T14:11:45.010000"],["2024-07-24T14:11:46.010000"],["2024-07-24T14:11:47.010000"],["2024-07-24T14:11:48.010000"],["2024-07-24T14:11:49.010000"],["2024-07-24T14:11:50.010000"],["2024-07-24T14:11:51.010000"],["2024-07-24T14:11:52.010000"],["2024-07-24T14:11:53.010000"],["2024-07-24T14:11:54.010000"],["2024-07-24T14:11:55.010000"],["2024-07-24T14:11:56.010000"],["2024-07-24T14:11:57.010000"],["2024-07-24T14:11:58.010000"],["2024-07-24T14:11:59.010000"],["2024-07-24T14:12:00.010000"],["2024-07-24T14:12:01.010000"],["2024-07-24T14:12:02.010000"],["2024-07-24T14:12:03.010000"],["2024-07-24T14:12:04.010000"],["2024-07-24T14:12:05.010000"],["2024-07-24T14:12:06.010000"],["2024-07-24T14:12:07.010000"],["2024-07-24T14:12:08.010000"],["2024-07-24T14:12:09.010000"],["2024-07-24T14:12:10.010000"],["2024-07-24T14:12:11.010000"],["2024-07-24T14:12:12.010000"],["2024-07-24T14:12:13.010000"],["2024-07-24T14:12:14.010000"],["2024-07-24T14:12:15.010000"],["2024-07-24T14:12:16.010000"],["2024-07-24T14:12:17.010000"],["2024-07-24T14:12:18.010000"],["2024-07-24T14:12:19.010000"],["2024-07-24T14:12:20.010000"],["2024-07-24T14:12:21.010000"],["2024-07-24T14:12:22.010000"],["2024-07-24T14:12:23.010000"],["2024-07-24T14:12:24.010000"],["2024-07-24T14:12:25.010000"],["2024-07-24T14:12:26.010000"],["2024-07-24T14:12:27.010000"],["2024-07-24T14:12:28.010000"],["2024-07-24T14:12:29.010000"],["2024-07-24T14:12:30.010000"],["2024-07-24T14:12:31.010000"],["2024-07-24T14:12:32.010000"],["2024-07-24T14:12:33.010000"],["2024-07-24T14:12:34.010000"],["2024-07-24T14:12:35.010000"],["2024-07-24T14:12:36.010000"],["2024-07-24T14:12:37.010000"],["2024-07-24T14:12:38.010000"],["2024-07-24T14:12:39.010000"],["2024-07-24T14:12:40.010000"],["2024-07-24T14:12:41.010000"],["2024-07-24T14:12:42.010000"],["2024-07-24T14:12:43.010000"],["2024-07-24T14:12:44.010000"],["2024-07-24T14:12:45.010000"],["2024-07-24T14:12:46.010000"],["2024-07-24T14:12:47.010000"],["2024-07-24T14:12:48.010000"],["2024-07-24T14:12:49.010000"],["2024-07-24T14:12:50.010000"],["2024-07-24T14:12:51.010000"],["2024-07-24T14:12:52.010000"],["2024-07-24T14:12:53.010000"],["2024-07-24T14:12:54.010000"],["2024-07-24T14:12:55.010000"],["2024-07-24T14:12:56.010000"],["2024-07-24T14:12:57.010000"],["2024-07-24T14:12:58.010000"],["2024-07-24T14:12:59.010000"],["2024-07-24T14:13:00.010000"],["2024-07-24T14:13:01.010000"],["2024-07-24T14:13:02.010000"],["2024-07-24T14:13:03.010000"],["2024-07-24T14:13:04.010000"],["2024-07-24T14:13:05.010000"],["2024-07-24T14:13:06.010000"],["2024-07-24T14:13:07.010000"],["2024-07-24T14:13:08.010000"],["2024-07-24T14:13:09.010000"],["2024-07-24T14:13:10.010000"],["2024-07-24T14:13:11.010000"],["2024-07-24T14:13:12.010000"],["2024-07-24T14:13:13.010000"],["2024-07-24T14:13:14.010000"],["2024-07-24T14:13:15.010000"],["2024-07-24T14:13:16.010000"],["2024-07-24T14:13:17.010000"],["2024-07-24T14:13:18.010000"],["2024-07-24T14:13:19.010000"],["2024-07-24T14:13:20.010000"],["2024-07-24T14:13:21.010000"],["2024-07-24T14:13:22.010000"],["2024-07-24T14:13:23.010000"],["2024-07-24T14:13:24.010000"],["2024-07-24T14:13:25.010000"],["2024-07-24T14:13:26.010000"],["2024-07-24T14:13:27.010000"],["2024-07-24T14:13:28.010000"],["2024-07-24T14:13:29.010000"],["2024-07-24T14:13:30.010000"],["2024-07-24T14:13:31.010000"],["2024-07-24T14:13:32.010000"],["2024-07-24T14:13:33.010000"],["2024-07-24T14:13:34.010000"],["2024-07-24T14:13:35.010000"],["2024-07-24T14:13:36.010000"],["2024-07-24T14:13:37.010000"],["2024-07-24T14:13:38.010000"],["2024-07-24T14:13:39.010000"],["2024-07-24T14:13:40.010000"],["2024-07-24T14:13:41.010000"],["2024-07-24T14:13:42.010000"],["2024-07-24T14:13:43.010000"],["2024-07-24T14:13:44.010000"],["2024-07-24T14:13:45.010000"],["2024-07-24T14:13:46.010000"],["2024-07-24T14:13:47.010000"],["2024-07-24T14:13:48.010000"],["2024-07-24T14:13:49.010000"],["2024-07-24T14:13:50.010000"],["2024-07-24T14:13:51.010000"],["2024-07-24T14:13:52.010000"],["2024-07-24T14:13:53.010000"],["2024-07-24T14:13:54.010000"],["2024-07-24T14:13:55.010000"],["2024-07-24T14:13:56.010000"],["2024-07-24T14:13:57.010000"],["2024-07-24T14:13:58.010000"],["2024-07-24T14:13:59.010000"],["2024-07-24T14:14:00.010000"],["2024-07-24T14:14:01.010000"],["2024-07-24T14:14:02.010000"],["2024-07-24T14:14:03.010000"],["2024-07-24T14:14:04.010000"],["2024-07-24T14:14:05.010000"],["2024-07-24T14:14:06.010000"],["2024-07-24T14:14:07.010000"],["2024-07-24T14:14:08.010000"],["2024-07-24T14:14:09.010000"],["2024-07-24T14:14:10.010000"],["2024-07-24T14:14:11.010000"],["2024-07-24T14:14:12.010000"],["2024-07-24T14:14:13.010000"],["2024-07-24T14:14:14.010000"],["2024-07-24T14:14:15.010000"],["2024-07-24T14:14:16.010000"],["2024-07-24T14:14:17.010000"],["2024-07-24T14:14:18.010000"],["2024-07-24T14:14:19.010000"],["2024-07-24T14:14:20.010000"],["2024-07-24T14:14:21.010000"],["2024-07-24T14:14:22.010000"],["2024-07-24T14:14:23.010000"],["2024-07-24T14:14:24.010000"],["2024-07-24T14:14:25.010000"],["2024-07-24T14:14:26.010000"],["2024-07-24T14:14:27.010000"],["2024-07-24T14:14:28.010000"],["2024-07-24T14:14:29.010000"],["2024-07-24T14:14:30.010000"],["2024-07-24T14:14:31.010000"],["2024-07-24T14:14:32.010000"],["2024-07-24T14:14:33.010000"],["2024-07-24T14:14:34.010000"],["2024-07-24T14:14:35.010000"],["2024-07-24T14:14:36.010000"],["2024-07-24T14:14:37.010000"],["2024-07-24T14:14:38.010000"],["2024-07-24T14:14:39.010000"],["2024-07-24T14:14:40.010000"],["2024-07-24T14:14:41.010000"],["2024-07-24T14:14:42.010000"],["2024-07-24T14:14:43.010000"],["2024-07-24T14:14:44.010000"],["2024-07-24T14:14:45.010000"],["2024-07-24T14:14:46.010000"],["2024-07-24T14:14:47.010000"],["2024-07-24T14:14:48.010000"],["2024-07-24T14:14:49.010000"],["2024-07-24T14:14:50.010000"],["2024-07-24T14:14:51.010000"],["2024-07-24T14:14:52.010000"],["2024-07-24T14:14:53.010000"],["2024-07-24T14:14:54.010000"],["2024-07-24T14:14:55.010000"],["2024-07-24T14:14:56.010000"],["2024-07-24T14:14:57.010000"],["2024-07-24T14:14:58.010000"],["2024-07-24T14:14:59.010000"],["2024-07-24T14:15:00.010000"],["2024-07-24T14:15:01.010000"],["2024-07-24T14:15:02.010000"],["2024-07-24T14:15:03.010000"],["2024-07-24T14:15:04.010000"],["2024-07-24T14:15:05.010000"],["2024-07-24T14:15:06.010000"],["2024-07-24T14:15:07.010000"],["2024-07-24T14:15:08.010000"],["2024-07-24T14:15:09.010000"],["2024-07-24T14:15:10.010000"],["2024-07-24T14:15:11.010000"],["2024-07-24T14:15:12.010000"],["2024-07-24T14:15:13.010000"],["2024-07-24T14:15:14.010000"],["2024-07-24T14:15:15.010000"],["2024-07-24T14:15:16.010000"],["2024-07-24T14:15:17.010000"],["2024-07-24T14:15:18.010000"],["2024-07-24T14:15:19.010000"],["2024-07-24T14:15:20.010000"],["2024-07-24T14:15:21.010000"],["2024-07-24T14:15:22.010000"],["2024-07-24T14:15:23.010000"],["2024-07-24T14:15:24.010000"],["2024-07-24T14:15:25.010000"],["2024-07-24T14:15:26.010000"],["2024-07-24T14:15:27.010000"],["2024-07-24T14:15:28.010000"],["2024-07-24T14:15:29.010000"],["2024-07-24T14:15:30.010000"],["2024-07-24T14:15:31.010000"],["2024-07-24T14:15:32.010000"],["2024-07-24T14:15:33.010000"],["2024-07-24T14:15:34.010000"],["2024-07-24T14:15:35.010000"],["2024-07-24T14:15:36.010000"],["2024-07-24T14:15:37.010000"],["2024-07-24T14:15:38.010000"],["2024-07-24T14:15:39.010000"],["2024-07-24T14:15:40.010000"],["2024-07-24T14:15:41.010000"],["2024-07-24T14:15:42.010000"],["2024-07-24T14:15:43.010000"],["2024-07-24T14:15:44.010000"],["2024-07-24T14:15:45.010000"],["2024-07-24T14:15:46.010000"],["2024-07-24T14:15:47.010000"],["2024-07-24T14:15:48.010000"],["2024-07-24T14:15:49.010000"],["2024-07-24T14:15:50.010000"],["2024-07-24T14:15:51.010000"],["2024-07-24T14:15:52.010000"],["2024-07-24T14:15:53.010000"],["2024-07-24T14:15:54.010000"],["2024-07-24T14:15:55.010000"],["2024-07-24T14:15:56.010000"],["2024-07-24T14:15:57.010000"],["2024-07-24T14:15:58.010000"],["2024-07-24T14:15:59.010000"],["2024-07-24T14:16:00.010000"],["2024-07-24T14:16:01.010000"],["2024-07-24T14:16:02.010000"],["2024-07-24T14:16:03.010000"],["2024-07-24T14:16:04.010000"],["2024-07-24T14:16:05.010000"],["2024-07-24T14:16:06.010000"],["2024-07-24T14:16:07.010000"],["2024-07-24T14:16:08.010000"],["2024-07-24T14:16:09.010000"],["2024-07-24T14:16:10.010000"],["2024-07-24T14:16:11.010000"],["2024-07-24T14:16:12.010000"],["2024-07-24T14:16:13.010000"],["2024-07-24T14:16:14.010000"],["2024-07-24T14:16:15.010000"],["2024-07-24T14:16:16.010000"],["2024-07-24T14:16:17.010000"],["2024-07-24T14:16:18.010000"],["2024-07-24T14:16:19.010000"],["2024-07-24T14:16:20.010000"],["2024-07-24T14:16:21.010000"],["2024-07-24T14:16:22.010000"],["2024-07-24T14:16:23.010000"],["2024-07-24T14:16:24.010000"],["2024-07-24T14:16:25.010000"],["2024-07-24T14:16:26.010000"],["2024-07-24T14:16:27.010000"],["2024-07-24T14:16:28.010000"],["2024-07-24T14:16:29.010000"],["2024-07-24T14:16:30.010000"],["2024-07-24T14:16:31.010000"],["2024-07-24T14:16:32.010000"],["2024-07-24T14:16:33.010000"],["2024-07-24T14:16:34.010000"],["2024-07-24T14:16:35.010000"],["2024-07-24T14:16:36.010000"],["2024-07-24T14:16:37.010000"],["2024-07-24T14:16:38.010000"],["2024-07-24T14:16:39.010000"],["2024-07-24T14:16:40.010000"],["2024-07-24T14:16:41.010000"],["2024-07-24T14:16:42.010000"],["2024-07-24T14:16:43.010000"],["2024-07-24T14:16:44.010000"],["2024-07-24T14:16:45.010000"],["2024-07-24T14:16:46.010000"],["2024-07-24T14:16:47.010000"],["2024-07-24T14:16:48.010000"],["2024-07-24T14:16:49.010000"],["2024-07-24T14:16:50.010000"],["2024-07-24T14:16:51.010000"],["2024-07-24T14:16:52.010000"],["2024-07-24T14:16:53.010000"],["2024-07-24T14:16:54.010000"],["2024-07-24T14:16:55.010000"],["2024-07-24T14:16:56.010000"],["2024-07-24T14:16:57.010000"],["2024-07-24T14:16:58.010000"],["2024-07-24T14:16:59.010000"],["2024-07-24T14:17:00.010000"],["2024-07-24T14:17:01.010000"],["2024-07-24T14:17:02.010000"],["2024-07-24T14:17:03.010000"],["2024-07-24T14:17:04.010000"],["2024-07-24T14:17:05.010000"],["2024-07-24T14:17:06.010000"],["2024-07-24T14:17:07.010000"],["2024-07-24T14:17:08.010000"],["2024-07-24T14:17:09.010000"],["2024-07-24T14:17:10.010000"],["2024-07-24T14:17:11.010000"],["2024-07-24T14:17:12.010000"],["2024-07-24T14:17:13.010000"],["2024-07-24T14:17:14.010000"],["2024-07-24T14:17:15.010000"],["2024-07-24T14:17:16.010000"],["2024-07-24T14:17:17.010000"],["2024-07-24T14:17:18.010000"],["2024-07-24T14:17:19.010000"],["2024-07-24T14:17:20.010000"],["2024-07-24T14:17:21.010000"],["2024-07-24T14:17:22.010000"],["2024-07-24T14:17:23.010000"],["2024-07-24T14:17:24.010000"],["2024-07-24T14:17:25.010000"],["2024-07-24T14:17:26.010000"],["2024-07-24T14:17:27.010000"],["2024-07-24T14:17:28.010000"],["2024-07-24T14:17:29.010000"],["2024-07-24T14:17:30.010000"],["2024-07-24T14:17:31.010000"],["2024-07-24T14:17:32.010000"],["2024-07-24T14:17:33.010000"],["2024-07-24T14:17:34.010000"],["2024-07-24T14:17:35.010000"],["2024-07-24T14:17:36.010000"],["2024-07-24T14:17:37.010000"],["2024-07-24T14:17:38.010000"],["2024-07-24T14:17:39.010000"],["2024-07-24T14:17:40.010000"],["2024-07-24T14:17:41.010000"],["2024-07-24T14:17:42.010000"],["2024-07-24T14:17:43.010000"],["2024-07-24T14:17:44.010000"],["2024-07-24T14:17:45.010000"],["2024-07-24T14:17:46.010000"],["2024-07-24T14:17:47.010000"],["2024-07-24T14:17:48.010000"],["2024-07-24T14:17:49.010000"],["2024-07-24T14:17:50.010000"],["2024-07-24T14:17:51.010000"],["2024-07-24T14:17:52.010000"],["2024-07-24T14:17:53.010000"],["2024-07-24T14:17:54.010000"],["2024-07-24T14:17:55.010000"],["2024-07-24T14:17:56.010000"],["2024-07-24T14:17:57.010000"],["2024-07-24T14:17:58.010000"],["2024-07-24T14:17:59.010000"],["2024-07-24T14:18:00.010000"],["2024-07-24T14:18:01.010000"],["2024-07-24T14:18:02.010000"],["2024-07-24T14:18:03.010000"],["2024-07-24T14:18:04.010000"],["2024-07-24T14:18:05.010000"],["2024-07-24T14:18:06.010000"],["2024-07-24T14:18:07.010000"],["2024-07-24T14:18:08.010000"],["2024-07-24T14:18:09.010000"],["2024-07-24T14:18:10.010000"],["2024-07-24T14:18:11.010000"],["2024-07-24T14:18:12.010000"],["2024-07-24T14:18:13.010000"],["2024-07-24T14:18:14.010000"],["2024-07-24T14:18:15.010000"],["2024-07-24T14:18:16.010000"],["2024-07-24T14:18:17.010000"],["2024-07-24T14:18:18.010000"],["2024-07-24T14:18:19.010000"],["2024-07-24T14:18:20.010000"],["2024-07-24T14:18:21.010000"],["2024-07-24T14:18:22.010000"],["2024-07-24T14:18:23.010000"],["2024-07-24T14:18:24.010000"],["2024-07-24T14:18:25.010000"],["2024-07-24T14:18:26.010000"],["2024-07-24T14:18:27.010000"],["2024-07-24T14:18:28.010000"],["2024-07-24T14:18:29.010000"],["2024-07-24T14:18:30.010000"],["2024-07-24T14:18:31.010000"],["2024-07-24T14:18:32.010000"],["2024-07-24T14:18:33.010000"],["2024-07-24T14:18:34.010000"],["2024-07-24T14:18:35.010000"],["2024-07-24T14:18:36.010000"],["2024-07-24T14:18:37.010000"],["2024-07-24T14:18:38.010000"],["2024-07-24T14:18:39.010000"],["2024-07-24T14:18:40.010000"],["2024-07-24T14:18:41.010000"],["2024-07-24T14:18:42.010000"],["2024-07-24T14:18:43.010000"],["2024-07-24T14:18:44.010000"],["2024-07-24T14:18:45.010000"],["2024-07-24T14:18:46.010000"],["2024-07-24T14:18:47.010000"],["2024-07-24T14:18:48.010000"],["2024-07-24T14:18:49.010000"],["2024-07-24T14:18:50.010000"],["2024-07-24T14:18:51.010000"],["2024-07-24T14:18:52.010000"],["2024-07-24T14:18:53.010000"],["2024-07-24T14:18:54.010000"],["2024-07-24T14:18:55.010000"],["2024-07-24T14:18:56.010000"],["2024-07-24T14:18:57.010000"],["2024-07-24T14:18:58.010000"],["2024-07-24T14:18:59.010000"],["2024-07-24T14:19:00.010000"],["2024-07-24T14:19:01.010000"],["2024-07-24T14:19:02.010000"],["2024-07-24T14:19:03.010000"],["2024-07-24T14:19:04.010000"],["2024-07-24T14:19:05.010000"],["2024-07-24T14:19:06.010000"],["2024-07-24T14:19:07.010000"],["2024-07-24T14:19:08.010000"],["2024-07-24T14:19:09.010000"],["2024-07-24T14:19:10.010000"],["2024-07-24T14:19:11.010000"],["2024-07-24T14:19:12.010000"],["2024-07-24T14:19:13.010000"],["2024-07-24T14:19:14.010000"],["2024-07-24T14:19:15.010000"],["2024-07-24T14:19:16.010000"],["2024-07-24T14:19:17.010000"],["2024-07-24T14:19:18.010000"],["2024-07-24T14:19:19.010000"],["2024-07-24T14:19:20.010000"],["2024-07-24T14:19:21.010000"],["2024-07-24T14:19:22.010000"],["2024-07-24T14:19:23.010000"],["2024-07-24T14:19:24.010000"],["2024-07-24T14:19:25.010000"],["2024-07-24T14:19:26.010000"],["2024-07-24T14:19:27.010000"],["2024-07-24T14:19:28.010000"],["2024-07-24T14:19:29.010000"],["2024-07-24T14:19:30.010000"],["2024-07-24T14:19:31.010000"],["2024-07-24T14:19:32.010000"],["2024-07-24T14:19:33.010000"],["2024-07-24T14:19:34.010000"],["2024-07-24T14:19:35.010000"],["2024-07-24T14:19:36.010000"],["2024-07-24T14:19:37.010000"],["2024-07-24T14:19:38.010000"],["2024-07-24T14:19:39.010000"],["2024-07-24T14:19:40.010000"],["2024-07-24T14:19:41.010000"],["2024-07-24T14:19:42.010000"],["2024-07-24T14:19:43.010000"],["2024-07-24T14:19:44.010000"],["2024-07-24T14:19:45.010000"],["2024-07-24T14:19:46.010000"],["2024-07-24T14:19:47.010000"],["2024-07-24T14:19:48.010000"],["2024-07-24T14:19:49.010000"],["2024-07-24T14:19:50.010000"],["2024-07-24T14:19:51.010000"],["2024-07-24T14:19:52.010000"],["2024-07-24T14:19:53.010000"],["2024-07-24T14:19:54.010000"],["2024-07-24T14:19:55.010000"],["2024-07-24T14:19:56.010000"],["2024-07-24T14:19:57.010000"],["2024-07-24T14:19:58.010000"],["2024-07-24T14:19:59.010000"],["2024-07-24T14:20:00.010000"],["2024-07-24T14:20:01.010000"],["2024-07-24T14:20:02.010000"],["2024-07-24T14:20:03.010000"],["2024-07-24T14:20:04.010000"],["2024-07-24T14:20:05.010000"],["2024-07-24T14:20:06.010000"],["2024-07-24T14:20:07.010000"],["2024-07-24T14:20:08.010000"],["2024-07-24T14:20:09.010000"],["2024-07-24T14:20:10.010000"],["2024-07-24T14:20:11.010000"],["2024-07-24T14:20:12.010000"],["2024-07-24T14:20:13.010000"],["2024-07-24T14:20:14.010000"],["2024-07-24T14:20:15.010000"],["2024-07-24T14:20:16.010000"],["2024-07-24T14:20:17.010000"],["2024-07-24T14:20:18.010000"],["2024-07-24T14:20:19.010000"],["2024-07-24T14:20:20.010000"],["2024-07-24T14:20:21.010000"],["2024-07-24T14:20:22.010000"],["2024-07-24T14:20:23.010000"],["2024-07-24T14:20:24.010000"],["2024-07-24T14:20:25.010000"],["2024-07-24T14:20:26.010000"],["2024-07-24T14:20:27.010000"],["2024-07-24T14:20:28.010000"],["2024-07-24T14:20:29.010000"],["2024-07-24T14:20:30.010000"],["2024-07-24T14:20:31.010000"],["2024-07-24T14:20:32.010000"],["2024-07-24T14:20:33.010000"],["2024-07-24T14:20:34.010000"],["2024-07-24T14:20:35.010000"],["2024-07-24T14:20:36.010000"],["2024-07-24T14:20:37.010000"],["2024-07-24T14:20:38.010000"],["2024-07-24T14:20:39.010000"],["2024-07-24T14:20:40.010000"],["2024-07-24T14:20:41.010000"],["2024-07-24T14:20:42.010000"],["2024-07-24T14:20:43.010000"],["2024-07-24T14:20:44.010000"],["2024-07-24T14:20:45.010000"],["2024-07-24T14:20:46.010000"],["2024-07-24T14:20:47.010000"],["2024-07-24T14:20:48.010000"],["2024-07-24T14:20:49.010000"],["2024-07-24T14:20:50.010000"],["2024-07-24T14:20:51.010000"],["2024-07-24T14:20:52.010000"],["2024-07-24T14:20:53.010000"],["2024-07-24T14:20:54.010000"],["2024-07-24T14:20:55.010000"],["2024-07-24T14:20:56.010000"],["2024-07-24T14:20:57.010000"],["2024-07-24T14:20:58.010000"],["2024-07-24T14:20:59.010000"],["2024-07-24T14:21:00.010000"],["2024-07-24T14:21:01.010000"],["2024-07-24T14:21:02.010000"],["2024-07-24T14:21:03.010000"],["2024-07-24T14:21:04.010000"],["2024-07-24T14:21:05.010000"],["2024-07-24T14:21:06.010000"],["2024-07-24T14:21:07.010000"],["2024-07-24T14:21:08.010000"],["2024-07-24T14:21:09.010000"],["2024-07-24T14:21:10.010000"],["2024-07-24T14:21:11.010000"],["2024-07-24T14:21:12.010000"],["2024-07-24T14:21:13.010000"],["2024-07-24T14:21:14.010000"],["2024-07-24T14:21:15.010000"],["2024-07-24T14:21:16.010000"],["2024-07-24T14:21:17.010000"],["2024-07-24T14:21:18.010000"],["2024-07-24T14:21:19.010000"],["2024-07-24T14:21:20.010000"],["2024-07-24T14:21:21.010000"],["2024-07-24T14:21:22.010000"],["2024-07-24T14:21:23.010000"],["2024-07-24T14:21:24.010000"],["2024-07-24T14:21:25.010000"],["2024-07-24T14:21:26.010000"],["2024-07-24T14:21:27.010000"],["2024-07-24T14:21:28.010000"],["2024-07-24T14:21:29.010000"],["2024-07-24T14:21:30.010000"],["2024-07-24T14:21:31.010000"],["2024-07-24T14:21:32.010000"],["2024-07-24T14:21:33.010000"],["2024-07-24T14:21:34.010000"],["2024-07-24T14:21:35.010000"],["2024-07-24T14:21:36.010000"],["2024-07-24T14:21:37.010000"],["2024-07-24T14:21:38.010000"],["2024-07-24T14:21:39.010000"],["2024-07-24T14:21:40.010000"],["2024-07-24T14:21:41.010000"],["2024-07-24T14:21:42.010000"],["2024-07-24T14:21:43.010000"],["2024-07-24T14:21:44.010000"],["2024-07-24T14:21:45.010000"],["2024-07-24T14:21:46.010000"],["2024-07-24T14:21:47.010000"],["2024-07-24T14:21:48.010000"],["2024-07-24T14:21:49.010000"],["2024-07-24T14:21:50.010000"],["2024-07-24T14:21:51.010000"],["2024-07-24T14:21:52.010000"],["2024-07-24T14:21:53.010000"],["2024-07-24T14:21:54.010000"],["2024-07-24T14:21:55.010000"],["2024-07-24T14:21:56.010000"],["2024-07-24T14:21:57.010000"],["2024-07-24T14:21:58.010000"],["2024-07-24T14:21:59.010000"],["2024-07-24T14:22:00.010000"],["2024-07-24T14:22:01.010000"],["2024-07-24T14:22:02.010000"],["2024-07-24T14:22:03.010000"],["2024-07-24T14:22:04.010000"],["2024-07-24T14:22:05.010000"],["2024-07-24T14:22:06.010000"],["2024-07-24T14:22:07.010000"],["2024-07-24T14:22:08.010000"],["2024-07-24T14:22:09.010000"],["2024-07-24T14:22:10.010000"],["2024-07-24T14:22:11.010000"],["2024-07-24T14:22:12.010000"],["2024-07-24T14:22:13.010000"],["2024-07-24T14:22:14.010000"],["2024-07-24T14:22:15.010000"],["2024-07-24T14:22:16.010000"],["2024-07-24T14:22:17.010000"],["2024-07-24T14:22:18.010000"],["2024-07-24T14:22:19.010000"],["2024-07-24T14:22:20.010000"],["2024-07-24T14:22:21.010000"],["2024-07-24T14:22:22.010000"],["2024-07-24T14:22:23.010000"],["2024-07-24T14:22:24.010000"],["2024-07-24T14:22:25.010000"],["2024-07-24T14:22:26.010000"],["2024-07-24T14:22:27.010000"],["2024-07-24T14:22:28.010000"],["2024-07-24T14:22:29.010000"],["2024-07-24T14:22:30.010000"],["2024-07-24T14:22:31.010000"],["2024-07-24T14:22:32.010000"],["2024-07-24T14:22:33.010000"],["2024-07-24T14:22:34.010000"],["2024-07-24T14:22:35.010000"],["2024-07-24T14:22:36.010000"],["2024-07-24T14:22:37.010000"],["2024-07-24T14:22:38.010000"],["2024-07-24T14:22:39.010000"],["2024-07-24T14:22:40.010000"],["2024-07-24T14:22:41.010000"],["2024-07-24T14:22:42.010000"],["2024-07-24T14:22:43.010000"],["2024-07-24T14:22:44.010000"],["2024-07-24T14:22:45.010000"],["2024-07-24T14:22:46.010000"],["2024-07-24T14:22:47.010000"],["2024-07-24T14:22:48.010000"],["2024-07-24T14:22:49.010000"],["2024-07-24T14:22:50.010000"],["2024-07-24T14:22:51.010000"],["2024-07-24T14:22:52.010000"],["2024-07-24T14:22:53.010000"],["2024-07-24T14:22:54.010000"],["2024-07-24T14:22:55.010000"],["2024-07-24T14:22:56.010000"],["2024-07-24T14:22:57.010000"],["2024-07-24T14:22:58.010000"],["2024-07-24T14:22:59.010000"],["2024-07-24T14:23:00.010000"],["2024-07-24T14:23:01.010000"],["2024-07-24T14:23:02.010000"],["2024-07-24T14:23:03.010000"],["2024-07-24T14:23:04.010000"],["2024-07-24T14:23:05.010000"],["2024-07-24T14:23:06.010000"],["2024-07-24T14:23:07.010000"],["2024-07-24T14:23:08.010000"],["2024-07-24T14:23:09.010000"],["2024-07-24T14:23:10.010000"],["2024-07-24T14:23:11.010000"],["2024-07-24T14:23:12.010000"],["2024-07-24T14:23:13.010000"],["2024-07-24T14:23:14.010000"],["2024-07-24T14:23:15.010000"],["2024-07-24T14:23:16.010000"],["2024-07-24T14:23:17.010000"],["2024-07-24T14:23:18.010000"],["2024-07-24T14:23:19.010000"],["2024-07-24T14:23:20.010000"],["2024-07-24T14:23:21.010000"],["2024-07-24T14:23:22.010000"],["2024-07-24T14:23:23.010000"],["2024-07-24T14:23:24.010000"],["2024-07-24T14:23:25.010000"],["2024-07-24T14:23:26.010000"],["2024-07-24T14:23:27.010000"],["2024-07-24T14:23:28.010000"],["2024-07-24T14:23:29.010000"],["2024-07-24T14:23:30.010000"],["2024-07-24T14:23:31.010000"],["2024-07-24T14:23:32.010000"],["2024-07-24T14:23:33.010000"],["2024-07-24T14:23:34.010000"],["2024-07-24T14:23:35.010000"],["2024-07-24T14:23:36.010000"],["2024-07-24T14:23:37.010000"],["2024-07-24T14:23:38.010000"],["2024-07-24T14:23:39.010000"],["2024-07-24T14:23:40.010000"],["2024-07-24T14:23:41.010000"],["2024-07-24T14:23:42.010000"],["2024-07-24T14:23:43.010000"],["2024-07-24T14:23:44.010000"],["2024-07-24T14:23:45.010000"],["2024-07-24T14:23:46.010000"],["2024-07-24T14:23:47.010000"],["2024-07-24T14:23:48.010000"],["2024-07-24T14:23:49.010000"],["2024-07-24T14:23:50.010000"],["2024-07-24T14:23:51.010000"],["2024-07-24T14:23:52.010000"],["2024-07-24T14:23:53.010000"],["2024-07-24T14:23:54.010000"],["2024-07-24T14:23:55.010000"],["2024-07-24T14:23:56.010000"],["2024-07-24T14:23:57.010000"],["2024-07-24T14:23:58.010000"],["2024-07-24T14:23:59.010000"],["2024-07-24T14:24:00.010000"],["2024-07-24T14:24:01.010000"],["2024-07-24T14:24:02.010000"],["2024-07-24T14:24:03.010000"],["2024-07-24T14:24:04.010000"],["2024-07-24T14:24:05.010000"],["2024-07-24T14:24:06.010000"],["2024-07-24T14:24:07.010000"],["2024-07-24T14:24:08.010000"],["2024-07-24T14:24:09.010000"],["2024-07-24T14:24:10.010000"],["2024-07-24T14:24:11.010000"],["2024-07-24T14:24:12.010000"],["2024-07-24T14:24:13.010000"],["2024-07-24T14:24:14.010000"],["2024-07-24T14:24:15.010000"],["2024-07-24T14:24:16.010000"],["2024-07-24T14:24:17.010000"],["2024-07-24T14:24:18.010000"],["2024-07-24T14:24:19.010000"],["2024-07-24T14:24:20.010000"],["2024-07-24T14:24:21.010000"],["2024-07-24T14:24:22.010000"],["2024-07-24T14:24:23.010000"],["2024-07-24T14:24:24.010000"],["2024-07-24T14:24:25.010000"],["2024-07-24T14:24:26.010000"],["2024-07-24T14:24:27.010000"],["2024-07-24T14:24:28.010000"],["2024-07-24T14:24:29.010000"],["2024-07-24T14:24:30.010000"],["2024-07-24T14:24:31.010000"],["2024-07-24T14:24:32.010000"],["2024-07-24T14:24:33.010000"],["2024-07-24T14:24:34.010000"],["2024-07-24T14:24:35.010000"],["2024-07-24T14:24:36.010000"],["2024-07-24T14:24:37.010000"],["2024-07-24T14:24:38.010000"],["2024-07-24T14:24:39.010000"],["2024-07-24T14:24:40.010000"],["2024-07-24T14:24:41.010000"],["2024-07-24T14:24:42.010000"],["2024-07-24T14:24:43.010000"],["2024-07-24T14:24:44.010000"],["2024-07-24T14:24:45.010000"],["2024-07-24T14:24:46.010000"],["2024-07-24T14:24:47.010000"],["2024-07-24T14:24:48.010000"],["2024-07-24T14:24:49.010000"],["2024-07-24T14:24:50.010000"],["2024-07-24T14:24:51.010000"],["2024-07-24T14:24:52.010000"],["2024-07-24T14:24:53.010000"],["2024-07-24T14:24:54.010000"],["2024-07-24T14:24:55.010000"],["2024-07-24T14:24:56.010000"],["2024-07-24T14:24:57.010000"],["2024-07-24T14:24:58.010000"],["2024-07-24T14:24:59.010000"],["2024-07-24T14:25:00.010000"],["2024-07-24T14:25:01.010000"],["2024-07-24T14:25:02.010000"],["2024-07-24T14:25:03.010000"],["2024-07-24T14:25:04.010000"],["2024-07-24T14:25:05.010000"],["2024-07-24T14:25:06.010000"],["2024-07-24T14:25:07.010000"],["2024-07-24T14:25:08.010000"],["2024-07-24T14:25:09.010000"],["2024-07-24T14:25:10.010000"],["2024-07-24T14:25:11.010000"],["2024-07-24T14:25:12.010000"],["2024-07-24T14:25:13.010000"],["2024-07-24T14:25:14.010000"],["2024-07-24T14:25:15.010000"],["2024-07-24T14:25:16.010000"],["2024-07-24T14:25:17.010000"],["2024-07-24T14:25:18.010000"],["2024-07-24T14:25:19.010000"],["2024-07-24T14:25:20.010000"],["2024-07-24T14:25:21.010000"],["2024-07-24T14:25:22.010000"],["2024-07-24T14:25:23.010000"],["2024-07-24T14:25:24.010000"],["2024-07-24T14:25:25.010000"],["2024-07-24T14:25:26.010000"],["2024-07-24T14:25:27.010000"],["2024-07-24T14:25:28.010000"],["2024-07-24T14:25:29.010000"],["2024-07-24T14:25:30.010000"],["2024-07-24T14:25:31.010000"],["2024-07-24T14:25:32.010000"],["2024-07-24T14:25:33.010000"],["2024-07-24T14:25:34.010000"],["2024-07-24T14:25:35.010000"],["2024-07-24T14:25:36.010000"],["2024-07-24T14:25:37.010000"],["2024-07-24T14:25:38.010000"],["2024-07-24T14:25:39.010000"],["2024-07-24T14:25:40.010000"],["2024-07-24T14:25:41.010000"],["2024-07-24T14:25:42.010000"],["2024-07-24T14:25:43.010000"],["2024-07-24T14:25:44.010000"],["2024-07-24T14:25:45.010000"],["2024-07-24T14:25:46.010000"],["2024-07-24T14:25:47.010000"],["2024-07-24T14:25:48.010000"],["2024-07-24T14:25:49.010000"],["2024-07-24T14:25:50.010000"],["2024-07-24T14:25:51.010000"],["2024-07-24T14:25:52.010000"],["2024-07-24T14:25:53.010000"],["2024-07-24T14:25:54.010000"],["2024-07-24T14:25:55.010000"],["2024-07-24T14:25:56.010000"],["2024-07-24T14:25:57.010000"],["2024-07-24T14:25:58.010000"],["2024-07-24T14:25:59.010000"],["2024-07-24T14:26:00.010000"],["2024-07-24T14:26:01.010000"],["2024-07-24T14:26:02.010000"],["2024-07-24T14:26:03.010000"],["2024-07-24T14:26:04.010000"],["2024-07-24T14:26:05.010000"],["2024-07-24T14:26:06.010000"],["2024-07-24T14:26:07.010000"],["2024-07-24T14:26:08.010000"],["2024-07-24T14:26:09.010000"],["2024-07-24T14:26:10.010000"],["2024-07-24T14:26:11.010000"],["2024-07-24T14:26:12.010000"],["2024-07-24T14:26:13.010000"],["2024-07-24T14:26:14.010000"],["2024-07-24T14:26:15.010000"],["2024-07-24T14:26:16.010000"],["2024-07-24T14:26:17.010000"],["2024-07-24T14:26:18.010000"],["2024-07-24T14:26:19.010000"],["2024-07-24T14:26:20.010000"],["2024-07-24T14:26:21.010000"],["2024-07-24T14:26:22.010000"],["2024-07-24T14:26:23.010000"],["2024-07-24T14:26:24.010000"],["2024-07-24T14:26:25.010000"],["2024-07-24T14:26:26.010000"],["2024-07-24T14:26:27.010000"],["2024-07-24T14:26:28.010000"],["2024-07-24T14:26:29.010000"],["2024-07-24T14:26:30.010000"],["2024-07-24T14:26:31.010000"],["2024-07-24T14:26:32.010000"],["2024-07-24T14:26:33.010000"],["2024-07-24T14:26:34.010000"],["2024-07-24T14:26:35.010000"],["2024-07-24T14:26:36.010000"],["2024-07-24T14:26:37.010000"],["2024-07-24T14:26:38.010000"],["2024-07-24T14:26:39.010000"],["2024-07-24T14:26:40.010000"],["2024-07-24T14:26:41.010000"],["2024-07-24T14:26:42.010000"],["2024-07-24T14:26:43.010000"],["2024-07-24T14:26:44.010000"],["2024-07-24T14:26:45.010000"],["2024-07-24T14:26:46.010000"],["2024-07-24T14:26:47.010000"],["2024-07-24T14:26:48.010000"],["2024-07-24T14:26:49.010000"],["2024-07-24T14:26:50.010000"],["2024-07-24T14:26:51.010000"],["2024-07-24T14:26:52.010000"],["2024-07-24T14:26:53.010000"],["2024-07-24T14:26:54.010000"],["2024-07-24T14:26:55.010000"],["2024-07-24T14:26:56.010000"],["2024-07-24T14:26:57.010000"],["2024-07-24T14:26:58.010000"],["2024-07-24T14:26:59.010000"],["2024-07-24T14:27:00.010000"],["2024-07-24T14:27:01.010000"],["2024-07-24T14:27:02.010000"],["2024-07-24T14:27:03.010000"],["2024-07-24T14:27:04.010000"],["2024-07-24T14:27:05.010000"],["2024-07-24T14:27:06.010000"],["2024-07-24T14:27:07.010000"],["2024-07-24T14:27:08.010000"],["2024-07-24T14:27:09.010000"],["2024-07-24T14:27:10.010000"],["2024-07-24T14:27:11.010000"],["2024-07-24T14:27:12.010000"],["2024-07-24T14:27:13.010000"],["2024-07-24T14:27:14.010000"],["2024-07-24T14:27:15.010000"],["2024-07-24T14:27:16.010000"],["2024-07-24T14:27:17.010000"],["2024-07-24T14:27:18.010000"],["2024-07-24T14:27:19.010000"],["2024-07-24T14:27:20.010000"],["2024-07-24T14:27:21.010000"],["2024-07-24T14:27:22.010000"],["2024-07-24T14:27:23.010000"],["2024-07-24T14:27:24.010000"],["2024-07-24T14:27:25.010000"],["2024-07-24T14:27:26.010000"],["2024-07-24T14:27:27.010000"],["2024-07-24T14:27:28.010000"],["2024-07-24T14:27:29.010000"],["2024-07-24T14:27:30.010000"],["2024-07-24T14:27:31.010000"],["2024-07-24T14:27:32.010000"],["2024-07-24T14:27:33.010000"],["2024-07-24T14:27:34.010000"],["2024-07-24T14:27:35.010000"],["2024-07-24T14:27:36.010000"],["2024-07-24T14:27:37.010000"],["2024-07-24T14:27:38.010000"],["2024-07-24T14:27:39.010000"],["2024-07-24T14:27:40.010000"],["2024-07-24T14:27:41.010000"],["2024-07-24T14:27:42.010000"],["2024-07-24T14:27:43.010000"],["2024-07-24T14:27:44.010000"],["2024-07-24T14:27:45.010000"],["2024-07-24T14:27:46.010000"],["2024-07-24T14:27:47.010000"],["2024-07-24T14:27:48.010000"],["2024-07-24T14:27:49.010000"],["2024-07-24T14:27:50.010000"],["2024-07-24T14:27:51.010000"],["2024-07-24T14:27:52.010000"],["2024-07-24T14:27:53.010000"],["2024-07-24T14:27:54.010000"],["2024-07-24T14:27:55.010000"],["2024-07-24T14:27:56.010000"],["2024-07-24T14:27:57.010000"],["2024-07-24T14:27:58.010000"],["2024-07-24T14:27:59.010000"],["2024-07-24T14:28:00.010000"],["2024-07-24T14:28:01.010000"],["2024-07-24T14:28:02.010000"],["2024-07-24T14:28:03.010000"],["2024-07-24T14:28:04.010000"],["2024-07-24T14:28:05.010000"],["2024-07-24T14:28:06.010000"],["2024-07-24T14:28:07.010000"],["2024-07-24T14:28:08.010000"],["2024-07-24T14:28:09.010000"],["2024-07-24T14:28:10.010000"],["2024-07-24T14:28:11.010000"],["2024-07-24T14:28:12.010000"],["2024-07-24T14:28:13.010000"],["2024-07-24T14:28:14.010000"],["2024-07-24T14:28:15.010000"],["2024-07-24T14:28:16.010000"],["2024-07-24T14:28:17.010000"],["2024-07-24T14:28:18.010000"],["2024-07-24T14:28:19.010000"],["2024-07-24T14:28:20.010000"],["2024-07-24T14:28:21.010000"],["2024-07-24T14:28:22.010000"],["2024-07-24T14:28:23.010000"],["2024-07-24T14:28:24.010000"],["2024-07-24T14:28:25.010000"],["2024-07-24T14:28:26.010000"],["2024-07-24T14:28:27.010000"],["2024-07-24T14:28:28.010000"],["2024-07-24T14:28:29.010000"],["2024-07-24T14:28:30.010000"],["2024-07-24T14:28:31.010000"],["2024-07-24T14:28:32.010000"],["2024-07-24T14:28:33.010000"],["2024-07-24T14:28:34.010000"],["2024-07-24T14:28:35.010000"],["2024-07-24T14:28:36.010000"],["2024-07-24T14:28:37.010000"],["2024-07-24T14:28:38.010000"],["2024-07-24T14:28:39.010000"],["2024-07-24T14:28:40.010000"],["2024-07-24T14:28:41.010000"],["2024-07-24T14:28:42.010000"],["2024-07-24T14:28:43.010000"],["2024-07-24T14:28:44.010000"],["2024-07-24T14:28:45.010000"],["2024-07-24T14:28:46.010000"],["2024-07-24T14:28:47.010000"],["2024-07-24T14:28:48.010000"],["2024-07-24T14:28:49.010000"],["2024-07-24T14:28:50.010000"],["2024-07-24T14:28:51.010000"],["2024-07-24T14:28:52.010000"],["2024-07-24T14:28:53.010000"],["2024-07-24T14:28:54.010000"],["2024-07-24T14:28:55.010000"],["2024-07-24T14:28:56.010000"],["2024-07-24T14:28:57.010000"],["2024-07-24T14:28:58.010000"],["2024-07-24T14:28:59.010000"],["2024-07-24T14:29:00.010000"],["2024-07-24T14:29:01.010000"],["2024-07-24T14:29:02.010000"],["2024-07-24T14:29:03.010000"],["2024-07-24T14:29:04.010000"],["2024-07-24T14:29:05.010000"],["2024-07-24T14:29:06.010000"],["2024-07-24T14:29:07.010000"],["2024-07-24T14:29:08.010000"],["2024-07-24T14:29:09.010000"],["2024-07-24T14:29:10.010000"],["2024-07-24T14:29:11.010000"],["2024-07-24T14:29:12.010000"],["2024-07-24T14:29:13.010000"],["2024-07-24T14:29:14.010000"],["2024-07-24T14:29:15.010000"],["2024-07-24T14:29:16.010000"],["2024-07-24T14:29:17.010000"],["2024-07-24T14:29:18.010000"],["2024-07-24T14:29:19.010000"],["2024-07-24T14:29:20.010000"],["2024-07-24T14:29:21.010000"],["2024-07-24T14:29:22.010000"],["2024-07-24T14:29:23.010000"],["2024-07-24T14:29:24.010000"],["2024-07-24T14:29:25.010000"],["2024-07-24T14:29:26.010000"],["2024-07-24T14:29:27.010000"],["2024-07-24T14:29:28.010000"],["2024-07-24T14:29:29.010000"],["2024-07-24T14:29:30.010000"],["2024-07-24T14:29:31.010000"],["2024-07-24T14:29:32.010000"],["2024-07-24T14:29:33.010000"],["2024-07-24T14:29:34.010000"],["2024-07-24T14:29:35.010000"],["2024-07-24T14:29:36.010000"],["2024-07-24T14:29:37.010000"],["2024-07-24T14:29:38.010000"],["2024-07-24T14:29:39.010000"],["2024-07-24T14:29:40.010000"],["2024-07-24T14:29:41.010000"],["2024-07-24T14:29:42.010000"],["2024-07-24T14:29:43.010000"],["2024-07-24T14:29:44.010000"],["2024-07-24T14:29:45.010000"],["2024-07-24T14:29:46.010000"],["2024-07-24T14:29:47.010000"],["2024-07-24T14:29:48.010000"],["2024-07-24T14:29:49.010000"],["2024-07-24T14:29:50.010000"],["2024-07-24T14:29:51.010000"],["2024-07-24T14:29:52.010000"],["2024-07-24T14:29:53.010000"],["2024-07-24T14:29:54.010000"],["2024-07-24T14:29:55.010000"],["2024-07-24T14:29:56.010000"],["2024-07-24T14:29:57.010000"],["2024-07-24T14:29:58.010000"],["2024-07-24T14:29:59.010000"],["2024-07-24T14:30:00.010000"],["2024-07-24T14:30:01.010000"],["2024-07-24T14:30:02.010000"],["2024-07-24T14:30:03.010000"],["2024-07-24T14:30:04.010000"],["2024-07-24T14:30:05.010000"],["2024-07-24T14:30:06.010000"],["2024-07-24T14:30:07.010000"],["2024-07-24T14:30:08.010000"],["2024-07-24T14:30:09.010000"],["2024-07-24T14:30:10.010000"],["2024-07-24T14:30:11.010000"],["2024-07-24T14:30:12.010000"],["2024-07-24T14:30:13.010000"],["2024-07-24T14:30:14.010000"],["2024-07-24T14:30:15.010000"],["2024-07-24T14:30:16.010000"],["2024-07-24T14:30:17.010000"],["2024-07-24T14:30:18.010000"],["2024-07-24T14:30:19.010000"],["2024-07-24T14:30:20.010000"],["2024-07-24T14:30:21.010000"],["2024-07-24T14:30:22.010000"],["2024-07-24T14:30:23.010000"],["2024-07-24T14:30:24.010000"],["2024-07-24T14:30:25.010000"],["2024-07-24T14:30:26.010000"],["2024-07-24T14:30:27.010000"],["2024-07-24T14:30:28.010000"],["2024-07-24T14:30:29.010000"],["2024-07-24T14:30:30.010000"],["2024-07-24T14:30:31.010000"],["2024-07-24T14:30:32.010000"],["2024-07-24T14:30:33.010000"],["2024-07-24T14:30:34.010000"],["2024-07-24T14:30:35.010000"],["2024-07-24T14:30:36.010000"],["2024-07-24T14:30:37.010000"],["2024-07-24T14:30:38.010000"],["2024-07-24T14:30:39.010000"],["2024-07-24T14:30:40.010000"],["2024-07-24T14:30:41.010000"],["2024-07-24T14:30:42.010000"],["2024-07-24T14:30:43.010000"],["2024-07-24T14:30:44.010000"],["2024-07-24T14:30:45.010000"],["2024-07-24T14:30:46.010000"],["2024-07-24T14:30:47.010000"],["2024-07-24T14:30:48.010000"],["2024-07-24T14:30:49.010000"],["2024-07-24T14:30:50.010000"],["2024-07-24T14:30:51.010000"],["2024-07-24T14:30:52.010000"],["2024-07-24T14:30:53.010000"],["2024-07-24T14:30:54.010000"],["2024-07-24T14:30:55.010000"],["2024-07-24T14:30:56.010000"],["2024-07-24T14:30:57.010000"],["2024-07-24T14:30:58.010000"],["2024-07-24T14:30:59.010000"],["2024-07-24T14:31:00.010000"],["2024-07-24T14:31:01.010000"],["2024-07-24T14:31:02.010000"],["2024-07-24T14:31:03.010000"],["2024-07-24T14:31:04.010000"],["2024-07-24T14:31:05.010000"],["2024-07-24T14:31:06.010000"],["2024-07-24T14:31:07.010000"],["2024-07-24T14:31:08.010000"],["2024-07-24T14:31:09.010000"],["2024-07-24T14:31:10.010000"],["2024-07-24T14:31:11.010000"],["2024-07-24T14:31:12.010000"],["2024-07-24T14:31:13.010000"],["2024-07-24T14:31:14.010000"],["2024-07-24T14:31:15.010000"],["2024-07-24T14:31:16.010000"],["2024-07-24T14:31:17.010000"],["2024-07-24T14:31:18.010000"],["2024-07-24T14:31:19.010000"],["2024-07-24T14:31:20.010000"],["2024-07-24T14:31:21.010000"],["2024-07-24T14:31:22.010000"],["2024-07-24T14:31:23.010000"],["2024-07-24T14:31:24.010000"],["2024-07-24T14:31:25.010000"],["2024-07-24T14:31:26.010000"],["2024-07-24T14:31:27.010000"],["2024-07-24T14:31:28.010000"],["2024-07-24T14:31:29.010000"],["2024-07-24T14:31:30.010000"],["2024-07-24T14:31:31.010000"],["2024-07-24T14:31:32.010000"],["2024-07-24T14:31:33.010000"],["2024-07-24T14:31:34.010000"],["2024-07-24T14:31:35.010000"],["2024-07-24T14:31:36.010000"],["2024-07-24T14:31:37.010000"],["2024-07-24T14:31:38.010000"],["2024-07-24T14:31:39.010000"],["2024-07-24T14:31:40.010000"],["2024-07-24T14:31:41.010000"],["2024-07-24T14:31:42.010000"],["2024-07-24T14:31:43.010000"],["2024-07-24T14:31:44.010000"],["2024-07-24T14:31:45.010000"],["2024-07-24T14:31:46.010000"],["2024-07-24T14:31:47.010000"],["2024-07-24T14:31:48.010000"],["2024-07-24T14:31:49.010000"],["2024-07-24T14:31:50.010000"],["2024-07-24T14:31:51.010000"],["2024-07-24T14:31:52.010000"],["2024-07-24T14:31:53.010000"],["2024-07-24T14:31:54.010000"],["2024-07-24T14:31:55.010000"],["2024-07-24T14:31:56.010000"],["2024-07-24T14:31:57.010000"],["2024-07-24T14:31:58.010000"],["2024-07-24T14:31:59.010000"],["2024-07-24T14:32:00.010000"],["2024-07-24T14:32:01.010000"],["2024-07-24T14:32:02.010000"],["2024-07-24T14:32:03.010000"],["2024-07-24T14:32:04.010000"],["2024-07-24T14:32:05.010000"],["2024-07-24T14:32:06.010000"],["2024-07-24T14:32:07.010000"],["2024-07-24T14:32:08.010000"],["2024-07-24T14:32:09.010000"],["2024-07-24T14:32:10.010000"],["2024-07-24T14:32:11.010000"],["2024-07-24T14:32:12.010000"],["2024-07-24T14:32:13.010000"],["2024-07-24T14:32:14.010000"],["2024-07-24T14:32:15.010000"],["2024-07-24T14:32:16.010000"],["2024-07-24T14:32:17.010000"],["2024-07-24T14:32:18.010000"],["2024-07-24T14:32:19.010000"],["2024-07-24T14:32:20.010000"],["2024-07-24T14:32:21.010000"],["2024-07-24T14:32:22.010000"],["2024-07-24T14:32:23.010000"],["2024-07-24T14:32:24.010000"],["2024-07-24T14:32:25.010000"],["2024-07-24T14:32:26.010000"],["2024-07-24T14:32:27.010000"],["2024-07-24T14:32:28.010000"],["2024-07-24T14:32:29.010000"],["2024-07-24T14:32:30.010000"],["2024-07-24T14:32:31.010000"],["2024-07-24T14:32:32.010000"],["2024-07-24T14:32:33.010000"],["2024-07-24T14:32:34.010000"],["2024-07-24T14:32:35.010000"],["2024-07-24T14:32:36.010000"],["2024-07-24T14:32:37.010000"],["2024-07-24T14:32:38.010000"],["2024-07-24T14:32:39.010000"],["2024-07-24T14:32:40.010000"],["2024-07-24T14:32:41.010000"],["2024-07-24T14:32:42.010000"],["2024-07-24T14:32:43.010000"],["2024-07-24T14:32:44.010000"],["2024-07-24T14:32:45.010000"],["2024-07-24T14:32:46.010000"],["2024-07-24T14:32:47.010000"],["2024-07-24T14:32:48.010000"],["2024-07-24T14:32:49.010000"],["2024-07-24T14:32:50.010000"],["2024-07-24T14:32:51.010000"],["2024-07-24T14:32:52.010000"],["2024-07-24T14:32:53.010000"],["2024-07-24T14:32:54.010000"],["2024-07-24T14:32:55.010000"],["2024-07-24T14:32:56.010000"],["2024-07-24T14:32:57.010000"],["2024-07-24T14:32:58.010000"],["2024-07-24T14:32:59.010000"],["2024-07-24T14:33:00.010000"],["2024-07-24T14:33:01.010000"],["2024-07-24T14:33:02.010000"],["2024-07-24T14:33:03.010000"],["2024-07-24T14:33:04.010000"],["2024-07-24T14:33:05.010000"],["2024-07-24T14:33:06.010000"],["2024-07-24T14:33:07.010000"],["2024-07-24T14:33:08.010000"],["2024-07-24T14:33:09.010000"],["2024-07-24T14:33:10.010000"],["2024-07-24T14:33:11.010000"],["2024-07-24T14:33:12.010000"],["2024-07-24T14:33:13.010000"],["2024-07-24T14:33:14.010000"],["2024-07-24T14:33:15.010000"],["2024-07-24T14:33:16.010000"],["2024-07-24T14:33:17.010000"],["2024-07-24T14:33:18.010000"],["2024-07-24T14:33:19.010000"],["2024-07-24T14:33:20.010000"],["2024-07-24T14:33:21.010000"],["2024-07-24T14:33:22.010000"],["2024-07-24T14:33:23.010000"],["2024-07-24T14:33:24.010000"],["2024-07-24T14:33:25.010000"],["2024-07-24T14:33:26.010000"],["2024-07-24T14:33:27.010000"],["2024-07-24T14:33:28.010000"],["2024-07-24T14:33:29.010000"],["2024-07-24T14:33:30.010000"],["2024-07-24T14:33:31.010000"],["2024-07-24T14:33:32.010000"],["2024-07-24T14:33:33.010000"],["2024-07-24T14:33:34.010000"],["2024-07-24T14:33:35.010000"],["2024-07-24T14:33:36.010000"],["2024-07-24T14:33:37.010000"],["2024-07-24T14:33:38.010000"],["2024-07-24T14:33:39.010000"],["2024-07-24T14:33:40.010000"],["2024-07-24T14:33:41.010000"],["2024-07-24T14:33:42.010000"],["2024-07-24T14:33:43.010000"],["2024-07-24T14:33:44.010000"],["2024-07-24T14:33:45.010000"],["2024-07-24T14:33:46.010000"],["2024-07-24T14:33:47.010000"],["2024-07-24T14:33:48.010000"],["2024-07-24T14:33:49.010000"],["2024-07-24T14:33:50.010000"],["2024-07-24T14:33:51.010000"],["2024-07-24T14:33:52.010000"],["2024-07-24T14:33:53.010000"],["2024-07-24T14:33:54.010000"],["2024-07-24T14:33:55.010000"],["2024-07-24T14:33:56.010000"],["2024-07-24T14:33:57.010000"],["2024-07-24T14:33:58.010000"],["2024-07-24T14:33:59.010000"],["2024-07-24T14:34:00.010000"],["2024-07-24T14:34:01.010000"],["2024-07-24T14:34:02.010000"],["2024-07-24T14:34:03.010000"],["2024-07-24T14:34:04.010000"],["2024-07-24T14:34:05.010000"],["2024-07-24T14:34:06.010000"],["2024-07-24T14:34:07.010000"],["2024-07-24T14:34:08.010000"],["2024-07-24T14:34:09.010000"],["2024-07-24T14:34:10.010000"],["2024-07-24T14:34:11.010000"],["2024-07-24T14:34:12.010000"],["2024-07-24T14:34:13.010000"],["2024-07-24T14:34:14.010000"],["2024-07-24T14:34:15.010000"],["2024-07-24T14:34:16.010000"],["2024-07-24T14:34:17.010000"],["2024-07-24T14:34:18.010000"],["2024-07-24T14:34:19.010000"],["2024-07-24T14:34:20.010000"],["2024-07-24T14:34:21.010000"],["2024-07-24T14:34:22.010000"],["2024-07-24T14:34:23.010000"],["2024-07-24T14:34:24.010000"],["2024-07-24T14:34:25.010000"],["2024-07-24T14:34:26.010000"],["2024-07-24T14:34:27.010000"],["2024-07-24T14:34:28.010000"],["2024-07-24T14:34:29.010000"],["2024-07-24T14:34:30.010000"],["2024-07-24T14:34:31.010000"],["2024-07-24T14:34:32.010000"],["2024-07-24T14:34:33.010000"],["2024-07-24T14:34:34.010000"],["2024-07-24T14:34:35.010000"],["2024-07-24T14:34:36.010000"],["2024-07-24T14:34:37.010000"],["2024-07-24T14:34:38.010000"],["2024-07-24T14:34:39.010000"],["2024-07-24T14:34:40.010000"],["2024-07-24T14:34:41.010000"],["2024-07-24T14:34:42.010000"],["2024-07-24T14:34:43.010000"],["2024-07-24T14:34:44.010000"],["2024-07-24T14:34:45.010000"],["2024-07-24T14:34:46.010000"],["2024-07-24T14:34:47.010000"],["2024-07-24T14:34:48.010000"],["2024-07-24T14:34:49.010000"],["2024-07-24T14:34:50.010000"],["2024-07-24T14:34:51.010000"],["2024-07-24T14:34:52.010000"],["2024-07-24T14:34:53.010000"],["2024-07-24T14:34:54.010000"],["2024-07-24T14:34:55.010000"],["2024-07-24T14:34:56.010000"],["2024-07-24T14:34:57.010000"],["2024-07-24T14:34:58.010000"],["2024-07-24T14:34:59.010000"],["2024-07-24T14:35:00.010000"],["2024-07-24T14:35:01.010000"],["2024-07-24T14:35:02.010000"],["2024-07-24T14:35:03.010000"],["2024-07-24T14:35:04.010000"],["2024-07-24T14:35:05.010000"],["2024-07-24T14:35:06.010000"],["2024-07-24T14:35:07.010000"],["2024-07-24T14:35:08.010000"],["2024-07-24T14:35:09.010000"],["2024-07-24T14:35:10.010000"],["2024-07-24T14:35:11.010000"],["2024-07-24T14:35:12.010000"],["2024-07-24T14:35:13.010000"],["2024-07-24T14:35:14.010000"],["2024-07-24T14:35:15.010000"],["2024-07-24T14:35:16.010000"],["2024-07-24T14:35:17.010000"],["2024-07-24T14:35:18.010000"],["2024-07-24T14:35:19.010000"],["2024-07-24T14:35:20.010000"],["2024-07-24T14:35:21.010000"],["2024-07-24T14:35:22.010000"],["2024-07-24T14:35:23.010000"],["2024-07-24T14:35:24.010000"],["2024-07-24T14:35:25.010000"],["2024-07-24T14:35:26.010000"],["2024-07-24T14:35:27.010000"],["2024-07-24T14:35:28.010000"],["2024-07-24T14:35:29.010000"],["2024-07-24T14:35:30.010000"],["2024-07-24T14:35:31.010000"],["2024-07-24T14:35:32.010000"],["2024-07-24T14:35:33.010000"],["2024-07-24T14:35:34.010000"],["2024-07-24T14:35:35.010000"],["2024-07-24T14:35:36.010000"],["2024-07-24T14:35:37.010000"],["2024-07-24T14:35:38.010000"],["2024-07-24T14:35:39.010000"],["2024-07-24T14:35:40.010000"],["2024-07-24T14:35:41.010000"],["2024-07-24T14:35:42.010000"],["2024-07-24T14:35:43.010000"],["2024-07-24T14:35:44.010000"],["2024-07-24T14:35:45.010000"],["2024-07-24T14:35:46.010000"],["2024-07-24T14:35:47.010000"],["2024-07-24T14:35:48.010000"],["2024-07-24T14:35:49.010000"],["2024-07-24T14:35:50.010000"],["2024-07-24T14:35:51.010000"],["2024-07-24T14:35:52.010000"],["2024-07-24T14:35:53.010000"],["2024-07-24T14:35:54.010000"],["2024-07-24T14:35:55.010000"],["2024-07-24T14:35:56.010000"],["2024-07-24T14:35:57.010000"],["2024-07-24T14:35:58.010000"],["2024-07-24T14:35:59.010000"],["2024-07-24T14:36:00.010000"],["2024-07-24T14:36:01.010000"],["2024-07-24T14:36:02.010000"],["2024-07-24T14:36:03.010000"],["2024-07-24T14:36:04.010000"],["2024-07-24T14:36:05.010000"],["2024-07-24T14:36:06.010000"],["2024-07-24T14:36:07.010000"],["2024-07-24T14:36:08.010000"],["2024-07-24T14:36:09.010000"],["2024-07-24T14:36:10.010000"],["2024-07-24T14:36:11.010000"],["2024-07-24T14:36:12.010000"],["2024-07-24T14:36:13.010000"],["2024-07-24T14:36:14.010000"],["2024-07-24T14:36:15.010000"],["2024-07-24T14:36:16.010000"],["2024-07-24T14:36:17.010000"],["2024-07-24T14:36:18.010000"],["2024-07-24T14:36:19.010000"],["2024-07-24T14:36:20.010000"],["2024-07-24T14:36:21.010000"],["2024-07-24T14:36:22.010000"],["2024-07-24T14:36:23.010000"],["2024-07-24T14:36:24.010000"],["2024-07-24T14:36:25.010000"],["2024-07-24T14:36:26.010000"],["2024-07-24T14:36:27.010000"],["2024-07-24T14:36:28.010000"],["2024-07-24T14:36:29.010000"],["2024-07-24T14:36:30.010000"],["2024-07-24T14:36:31.010000"],["2024-07-24T14:36:32.010000"],["2024-07-24T14:36:33.010000"],["2024-07-24T14:36:34.010000"],["2024-07-24T14:36:35.010000"],["2024-07-24T14:36:36.010000"],["2024-07-24T14:36:37.010000"],["2024-07-24T14:36:38.010000"],["2024-07-24T14:36:39.010000"],["2024-07-24T14:36:40.010000"],["2024-07-24T14:36:41.010000"],["2024-07-24T14:36:42.010000"],["2024-07-24T14:36:43.010000"],["2024-07-24T14:36:44.010000"],["2024-07-24T14:36:45.010000"],["2024-07-24T14:36:46.010000"],["2024-07-24T14:36:47.010000"],["2024-07-24T14:36:48.010000"],["2024-07-24T14:36:49.010000"],["2024-07-24T14:36:50.010000"],["2024-07-24T14:36:51.010000"],["2024-07-24T14:36:52.010000"],["2024-07-24T14:36:53.010000"],["2024-07-24T14:36:54.010000"],["2024-07-24T14:36:55.010000"],["2024-07-24T14:36:56.010000"],["2024-07-24T14:36:57.010000"],["2024-07-24T14:36:58.010000"],["2024-07-24T14:36:59.010000"],["2024-07-24T14:37:00.010000"],["2024-07-24T14:37:01.010000"],["2024-07-24T14:37:02.010000"],["2024-07-24T14:37:03.010000"],["2024-07-24T14:37:04.010000"],["2024-07-24T14:37:05.010000"],["2024-07-24T14:37:06.010000"],["2024-07-24T14:37:07.010000"],["2024-07-24T14:37:08.010000"],["2024-07-24T14:37:09.010000"],["2024-07-24T14:37:10.010000"],["2024-07-24T14:37:11.010000"],["2024-07-24T14:37:12.010000"],["2024-07-24T14:37:13.010000"],["2024-07-24T14:37:14.010000"],["2024-07-24T14:37:15.010000"],["2024-07-24T14:37:16.010000"],["2024-07-24T14:37:17.010000"],["2024-07-24T14:37:18.010000"],["2024-07-24T14:37:19.010000"],["2024-07-24T14:37:20.010000"],["2024-07-24T14:37:21.010000"],["2024-07-24T14:37:22.010000"],["2024-07-24T14:37:23.010000"],["2024-07-24T14:37:24.010000"],["2024-07-24T14:37:25.010000"],["2024-07-24T14:37:26.010000"],["2024-07-24T14:37:27.010000"],["2024-07-24T14:37:28.010000"],["2024-07-24T14:37:29.010000"],["2024-07-24T14:37:30.010000"],["2024-07-24T14:37:31.010000"],["2024-07-24T14:37:32.010000"],["2024-07-24T14:37:33.010000"],["2024-07-24T14:37:34.010000"],["2024-07-24T14:37:35.010000"],["2024-07-24T14:37:36.010000"],["2024-07-24T14:37:37.010000"],["2024-07-24T14:37:38.010000"],["2024-07-24T14:37:39.010000"],["2024-07-24T14:37:40.010000"],["2024-07-24T14:37:41.010000"],["2024-07-24T14:37:42.010000"],["2024-07-24T14:37:43.010000"],["2024-07-24T14:37:44.010000"],["2024-07-24T14:37:45.010000"],["2024-07-24T14:37:46.010000"],["2024-07-24T14:37:47.010000"],["2024-07-24T14:37:48.010000"],["2024-07-24T14:37:49.010000"],["2024-07-24T14:37:50.010000"],["2024-07-24T14:37:51.010000"],["2024-07-24T14:37:52.010000"],["2024-07-24T14:37:53.010000"],["2024-07-24T14:37:54.010000"],["2024-07-24T14:37:55.010000"],["2024-07-24T14:37:56.010000"],["2024-07-24T14:37:57.010000"],["2024-07-24T14:37:58.010000"],["2024-07-24T14:37:59.010000"],["2024-07-24T14:38:00.010000"],["2024-07-24T14:38:01.010000"],["2024-07-24T14:38:02.010000"],["2024-07-24T14:38:03.010000"],["2024-07-24T14:38:04.010000"],["2024-07-24T14:38:05.010000"],["2024-07-24T14:38:06.010000"],["2024-07-24T14:38:07.010000"],["2024-07-24T14:38:08.010000"],["2024-07-24T14:38:09.010000"],["2024-07-24T14:38:10.010000"],["2024-07-24T14:38:11.010000"],["2024-07-24T14:38:12.010000"],["2024-07-24T14:38:13.010000"],["2024-07-24T14:38:14.010000"],["2024-07-24T14:38:15.010000"],["2024-07-24T14:38:16.010000"],["2024-07-24T14:38:17.010000"],["2024-07-24T14:38:18.010000"],["2024-07-24T14:38:19.010000"],["2024-07-24T14:38:20.010000"],["2024-07-24T14:38:21.010000"],["2024-07-24T14:38:22.010000"],["2024-07-24T14:38:23.010000"],["2024-07-24T14:38:24.010000"],["2024-07-24T14:38:25.010000"],["2024-07-24T14:38:26.010000"],["2024-07-24T14:38:27.010000"],["2024-07-24T14:38:28.010000"],["2024-07-24T14:38:29.010000"],["2024-07-24T14:38:30.010000"],["2024-07-24T14:38:31.010000"],["2024-07-24T14:38:32.010000"],["2024-07-24T14:38:33.010000"],["2024-07-24T14:38:34.010000"],["2024-07-24T14:38:35.010000"],["2024-07-24T14:38:36.010000"],["2024-07-24T14:38:37.010000"],["2024-07-24T14:38:38.010000"],["2024-07-24T14:38:39.010000"],["2024-07-24T14:38:40.010000"],["2024-07-24T14:38:41.010000"],["2024-07-24T14:38:42.010000"],["2024-07-24T14:38:43.010000"],["2024-07-24T14:38:44.010000"],["2024-07-24T14:38:45.010000"],["2024-07-24T14:38:46.010000"],["2024-07-24T14:38:47.010000"],["2024-07-24T14:38:48.010000"],["2024-07-24T14:38:49.010000"],["2024-07-24T14:38:50.010000"],["2024-07-24T14:38:51.010000"],["2024-07-24T14:38:52.010000"],["2024-07-24T14:38:53.010000"],["2024-07-24T14:38:54.010000"],["2024-07-24T14:38:55.010000"],["2024-07-24T14:38:56.010000"],["2024-07-24T14:38:57.010000"],["2024-07-24T14:38:58.010000"],["2024-07-24T14:38:59.010000"],["2024-07-24T14:39:00.010000"],["2024-07-24T14:39:01.010000"],["2024-07-24T14:39:02.010000"],["2024-07-24T14:39:03.010000"],["2024-07-24T14:39:04.010000"],["2024-07-24T14:39:05.010000"],["2024-07-24T14:39:06.010000"],["2024-07-24T14:39:07.010000"],["2024-07-24T14:39:08.010000"],["2024-07-24T14:39:09.010000"],["2024-07-24T14:39:10.010000"],["2024-07-24T14:39:11.010000"],["2024-07-24T14:39:12.010000"],["2024-07-24T14:39:13.010000"],["2024-07-24T14:39:14.010000"],["2024-07-24T14:39:15.010000"],["2024-07-24T14:39:16.010000"],["2024-07-24T14:39:17.010000"],["2024-07-24T14:39:18.010000"],["2024-07-24T14:39:19.010000"],["2024-07-24T14:39:20.010000"],["2024-07-24T14:39:21.010000"],["2024-07-24T14:39:22.010000"],["2024-07-24T14:39:23.010000"],["2024-07-24T14:39:24.010000"],["2024-07-24T14:39:25.010000"],["2024-07-24T14:39:26.010000"],["2024-07-24T14:39:27.010000"],["2024-07-24T14:39:28.010000"],["2024-07-24T14:39:29.010000"],["2024-07-24T14:39:30.010000"],["2024-07-24T14:39:31.010000"],["2024-07-24T14:39:32.010000"],["2024-07-24T14:39:33.010000"],["2024-07-24T14:39:34.010000"],["2024-07-24T14:39:35.010000"],["2024-07-24T14:39:36.010000"],["2024-07-24T14:39:37.010000"],["2024-07-24T14:39:38.010000"],["2024-07-24T14:39:39.010000"],["2024-07-24T14:39:40.010000"],["2024-07-24T14:39:41.010000"],["2024-07-24T14:39:42.010000"],["2024-07-24T14:39:43.010000"],["2024-07-24T14:39:44.010000"],["2024-07-24T14:39:45.010000"],["2024-07-24T14:39:46.010000"],["2024-07-24T14:39:47.010000"],["2024-07-24T14:39:48.010000"],["2024-07-24T14:39:49.010000"],["2024-07-24T14:39:50.010000"],["2024-07-24T14:39:51.010000"],["2024-07-24T14:39:52.010000"],["2024-07-24T14:39:53.010000"],["2024-07-24T14:39:54.010000"],["2024-07-24T14:39:55.010000"],["2024-07-24T14:39:56.010000"],["2024-07-24T14:39:57.010000"],["2024-07-24T14:39:58.010000"],["2024-07-24T14:39:59.010000"],["2024-07-24T14:40:00.010000"],["2024-07-24T14:40:01.010000"],["2024-07-24T14:40:02.010000"],["2024-07-24T14:40:03.010000"],["2024-07-24T14:40:04.010000"],["2024-07-24T14:40:05.010000"],["2024-07-24T14:40:06.010000"],["2024-07-24T14:40:07.010000"],["2024-07-24T14:40:08.010000"],["2024-07-24T14:40:09.010000"],["2024-07-24T14:40:10.010000"],["2024-07-24T14:40:11.010000"],["2024-07-24T14:40:12.010000"],["2024-07-24T14:40:13.010000"],["2024-07-24T14:40:14.010000"],["2024-07-24T14:40:15.010000"],["2024-07-24T14:40:16.010000"],["2024-07-24T14:40:17.010000"],["2024-07-24T14:40:18.010000"],["2024-07-24T14:40:19.010000"],["2024-07-24T14:40:20.010000"],["2024-07-24T14:40:21.010000"],["2024-07-24T14:40:22.010000"],["2024-07-24T14:40:23.010000"],["2024-07-24T14:40:24.010000"],["2024-07-24T14:40:25.010000"],["2024-07-24T14:40:26.010000"],["2024-07-24T14:40:27.010000"],["2024-07-24T14:40:28.010000"],["2024-07-24T14:40:29.010000"],["2024-07-24T14:40:30.010000"],["2024-07-24T14:40:31.010000"],["2024-07-24T14:40:32.010000"],["2024-07-24T14:40:33.010000"],["2024-07-24T14:40:34.010000"],["2024-07-24T14:40:35.010000"],["2024-07-24T14:40:36.010000"],["2024-07-24T14:40:37.010000"],["2024-07-24T14:40:38.010000"],["2024-07-24T14:40:39.010000"],["2024-07-24T14:40:40.010000"],["2024-07-24T14:40:41.010000"],["2024-07-24T14:40:42.010000"],["2024-07-24T14:40:43.010000"],["2024-07-24T14:40:44.010000"],["2024-07-24T14:40:45.010000"],["2024-07-24T14:40:46.010000"],["2024-07-24T14:40:47.010000"],["2024-07-24T14:40:48.010000"],["2024-07-24T14:40:49.010000"],["2024-07-24T14:40:50.010000"],["2024-07-24T14:40:51.010000"],["2024-07-24T14:40:52.010000"],["2024-07-24T14:40:53.010000"],["2024-07-24T14:40:54.010000"],["2024-07-24T14:40:55.010000"],["2024-07-24T14:40:56.010000"],["2024-07-24T14:40:57.010000"],["2024-07-24T14:40:58.010000"],["2024-07-24T14:40:59.010000"],["2024-07-24T14:41:00.010000"],["2024-07-24T14:41:01.010000"],["2024-07-24T14:41:02.010000"],["2024-07-24T14:41:03.010000"],["2024-07-24T14:41:04.010000"],["2024-07-24T14:41:05.010000"],["2024-07-24T14:41:06.010000"],["2024-07-24T14:41:07.010000"],["2024-07-24T14:41:08.010000"],["2024-07-24T14:41:09.010000"],["2024-07-24T14:41:10.010000"],["2024-07-24T14:41:11.010000"],["2024-07-24T14:41:12.010000"],["2024-07-24T14:41:13.010000"],["2024-07-24T14:41:14.010000"],["2024-07-24T14:41:15.010000"],["2024-07-24T14:41:16.010000"],["2024-07-24T14:41:17.010000"],["2024-07-24T14:41:18.010000"],["2024-07-24T14:41:19.010000"],["2024-07-24T14:41:20.010000"],["2024-07-24T14:41:21.010000"],["2024-07-24T14:41:22.010000"],["2024-07-24T14:41:23.010000"],["2024-07-24T14:41:24.010000"],["2024-07-24T14:41:25.010000"],["2024-07-24T14:41:26.010000"],["2024-07-24T14:41:27.010000"],["2024-07-24T14:41:28.010000"],["2024-07-24T14:41:29.010000"],["2024-07-24T14:41:30.010000"],["2024-07-24T14:41:31.010000"],["2024-07-24T14:41:32.010000"],["2024-07-24T14:41:33.010000"],["2024-07-24T14:41:34.010000"],["2024-07-24T14:41:35.010000"],["2024-07-24T14:41:36.010000"],["2024-07-24T14:41:37.010000"],["2024-07-24T14:41:38.010000"],["2024-07-24T14:41:39.010000"],["2024-07-24T14:41:40.010000"],["2024-07-24T14:41:41.010000"],["2024-07-24T14:41:42.010000"],["2024-07-24T14:41:43.010000"],["2024-07-24T14:41:44.010000"],["2024-07-24T14:41:45.010000"],["2024-07-24T14:41:46.010000"],["2024-07-24T14:41:47.010000"],["2024-07-24T14:41:48.010000"],["2024-07-24T14:41:49.010000"],["2024-07-24T14:41:50.010000"],["2024-07-24T14:41:51.010000"],["2024-07-24T14:41:52.010000"],["2024-07-24T14:41:53.010000"],["2024-07-24T14:41:54.010000"],["2024-07-24T14:41:55.010000"],["2024-07-24T14:41:56.010000"],["2024-07-24T14:41:57.010000"],["2024-07-24T14:41:58.010000"],["2024-07-24T14:41:59.010000"],["2024-07-24T14:42:00.010000"],["2024-07-24T14:42:01.010000"],["2024-07-24T14:42:02.010000"],["2024-07-24T14:42:03.010000"],["2024-07-24T14:42:04.010000"],["2024-07-24T14:42:05.010000"],["2024-07-24T14:42:06.010000"],["2024-07-24T14:42:07.010000"],["2024-07-24T14:42:08.010000"],["2024-07-24T14:42:09.010000"],["2024-07-24T14:42:10.010000"],["2024-07-24T14:42:11.010000"],["2024-07-24T14:42:12.010000"],["2024-07-24T14:42:13.010000"],["2024-07-24T14:42:14.010000"],["2024-07-24T14:42:15.010000"],["2024-07-24T14:42:16.010000"],["2024-07-24T14:42:17.010000"],["2024-07-24T14:42:18.010000"],["2024-07-24T14:42:19.010000"],["2024-07-24T14:42:20.010000"],["2024-07-24T14:42:21.010000"],["2024-07-24T14:42:22.010000"],["2024-07-24T14:42:23.010000"],["2024-07-24T14:42:24.010000"],["2024-07-24T14:42:25.010000"],["2024-07-24T14:42:26.010000"],["2024-07-24T14:42:27.010000"],["2024-07-24T14:42:28.010000"],["2024-07-24T14:42:29.010000"],["2024-07-24T14:42:30.010000"],["2024-07-24T14:42:31.010000"],["2024-07-24T14:42:32.010000"],["2024-07-24T14:42:33.010000"],["2024-07-24T14:42:34.010000"],["2024-07-24T14:42:35.010000"],["2024-07-24T14:42:36.010000"],["2024-07-24T14:42:37.010000"],["2024-07-24T14:42:38.010000"],["2024-07-24T14:42:39.010000"],["2024-07-24T14:42:40.010000"],["2024-07-24T14:42:41.010000"],["2024-07-24T14:42:42.010000"],["2024-07-24T14:42:43.010000"],["2024-07-24T14:42:44.010000"],["2024-07-24T14:42:45.010000"],["2024-07-24T14:42:46.010000"],["2024-07-24T14:42:47.010000"],["2024-07-24T14:42:48.010000"],["2024-07-24T14:42:49.010000"],["2024-07-24T14:42:50.010000"],["2024-07-24T14:42:51.010000"],["2024-07-24T14:42:52.010000"],["2024-07-24T14:42:53.010000"],["2024-07-24T14:42:54.010000"],["2024-07-24T14:42:55.010000"],["2024-07-24T14:42:56.010000"],["2024-07-24T14:42:57.010000"],["2024-07-24T14:42:58.010000"],["2024-07-24T14:42:59.010000"],["2024-07-24T14:43:00.010000"],["2024-07-24T14:43:01.010000"],["2024-07-24T14:43:02.010000"],["2024-07-24T14:43:03.010000"],["2024-07-24T14:43:04.010000"],["2024-07-24T14:43:05.010000"],["2024-07-24T14:43:06.010000"],["2024-07-24T14:43:07.010000"],["2024-07-24T14:43:08.010000"],["2024-07-24T14:43:09.010000"],["2024-07-24T14:43:10.010000"],["2024-07-24T14:43:11.010000"],["2024-07-24T14:43:12.010000"],["2024-07-24T14:43:13.010000"],["2024-07-24T14:43:14.010000"],["2024-07-24T14:43:15.010000"],["2024-07-24T14:43:16.010000"],["2024-07-24T14:43:17.010000"],["2024-07-24T14:43:18.010000"],["2024-07-24T14:43:19.010000"],["2024-07-24T14:43:20.010000"],["2024-07-24T14:43:21.010000"],["2024-07-24T14:43:22.010000"],["2024-07-24T14:43:23.010000"],["2024-07-24T14:43:24.010000"],["2024-07-24T14:43:25.010000"],["2024-07-24T14:43:26.010000"],["2024-07-24T14:43:27.010000"],["2024-07-24T14:43:28.010000"],["2024-07-24T14:43:29.010000"],["2024-07-24T14:43:30.010000"],["2024-07-24T14:43:31.010000"],["2024-07-24T14:43:32.010000"],["2024-07-24T14:43:33.010000"],["2024-07-24T14:43:34.010000"],["2024-07-24T14:43:35.010000"],["2024-07-24T14:43:36.010000"],["2024-07-24T14:43:37.010000"],["2024-07-24T14:43:38.010000"],["2024-07-24T14:43:39.010000"],["2024-07-24T14:43:40.010000"],["2024-07-24T14:43:41.010000"],["2024-07-24T14:43:42.010000"],["2024-07-24T14:43:43.010000"],["2024-07-24T14:43:44.010000"],["2024-07-24T14:43:45.010000"],["2024-07-24T14:43:46.010000"],["2024-07-24T14:43:47.010000"],["2024-07-24T14:43:48.010000"],["2024-07-24T14:43:49.010000"],["2024-07-24T14:43:50.010000"],["2024-07-24T14:43:51.010000"],["2024-07-24T14:43:52.010000"],["2024-07-24T14:43:53.010000"],["2024-07-24T14:43:54.010000"],["2024-07-24T14:43:55.010000"],["2024-07-24T14:43:56.010000"],["2024-07-24T14:43:57.010000"],["2024-07-24T14:43:58.010000"],["2024-07-24T14:43:59.010000"],["2024-07-24T14:44:00.010000"],["2024-07-24T14:44:01.010000"],["2024-07-24T14:44:02.010000"],["2024-07-24T14:44:03.010000"],["2024-07-24T14:44:04.010000"],["2024-07-24T14:44:05.010000"],["2024-07-24T14:44:06.010000"],["2024-07-24T14:44:07.010000"],["2024-07-24T14:44:08.010000"],["2024-07-24T14:44:09.010000"],["2024-07-24T14:44:10.010000"],["2024-07-24T14:44:11.010000"],["2024-07-24T14:44:12.010000"],["2024-07-24T14:44:13.010000"],["2024-07-24T14:44:14.010000"],["2024-07-24T14:44:15.010000"],["2024-07-24T14:44:16.010000"],["2024-07-24T14:44:17.010000"],["2024-07-24T14:44:18.010000"],["2024-07-24T14:44:19.010000"],["2024-07-24T14:44:20.010000"],["2024-07-24T14:44:21.010000"],["2024-07-24T14:44:22.010000"],["2024-07-24T14:44:23.010000"],["2024-07-24T14:44:24.010000"],["2024-07-24T14:44:25.010000"],["2024-07-24T14:44:26.010000"],["2024-07-24T14:44:27.010000"],["2024-07-24T14:44:28.010000"],["2024-07-24T14:44:29.010000"],["2024-07-24T14:44:30.010000"],["2024-07-24T14:44:31.010000"],["2024-07-24T14:44:32.010000"],["2024-07-24T14:44:33.010000"],["2024-07-24T14:44:34.010000"],["2024-07-24T14:44:35.010000"],["2024-07-24T14:44:36.010000"],["2024-07-24T14:44:37.010000"],["2024-07-24T14:44:38.010000"],["2024-07-24T14:44:39.010000"],["2024-07-24T14:44:40.010000"],["2024-07-24T14:44:41.010000"],["2024-07-24T14:44:42.010000"],["2024-07-24T14:44:43.010000"],["2024-07-24T14:44:44.010000"],["2024-07-24T14:44:45.010000"],["2024-07-24T14:44:46.010000"],["2024-07-24T14:44:47.010000"],["2024-07-24T14:44:48.010000"],["2024-07-24T14:44:49.010000"],["2024-07-24T14:44:50.010000"],["2024-07-24T14:44:51.010000"],["2024-07-24T14:44:52.010000"],["2024-07-24T14:44:53.010000"],["2024-07-24T14:44:54.010000"],["2024-07-24T14:44:55.010000"],["2024-07-24T14:44:56.010000"],["2024-07-24T14:44:57.010000"],["2024-07-24T14:44:58.010000"],["2024-07-24T14:44:59.010000"],["2024-07-24T14:45:00.010000"],["2024-07-24T14:45:01.010000"],["2024-07-24T14:45:02.010000"],["2024-07-24T14:45:03.010000"],["2024-07-24T14:45:04.010000"],["2024-07-24T14:45:05.010000"],["2024-07-24T14:45:06.010000"],["2024-07-24T14:45:07.010000"],["2024-07-24T14:45:08.010000"],["2024-07-24T14:45:09.010000"],["2024-07-24T14:45:10.010000"],["2024-07-24T14:45:11.010000"],["2024-07-24T14:45:12.010000"],["2024-07-24T14:45:13.010000"],["2024-07-24T14:45:14.010000"],["2024-07-24T14:45:15.010000"],["2024-07-24T14:45:16.010000"],["2024-07-24T14:45:17.010000"],["2024-07-24T14:45:18.010000"],["2024-07-24T14:45:19.010000"],["2024-07-24T14:45:20.010000"],["2024-07-24T14:45:21.010000"],["2024-07-24T14:45:22.010000"],["2024-07-24T14:45:23.010000"],["2024-07-24T14:45:24.010000"],["2024-07-24T14:45:25.010000"],["2024-07-24T14:45:26.010000"],["2024-07-24T14:45:27.010000"],["2024-07-24T14:45:28.010000"],["2024-07-24T14:45:29.010000"],["2024-07-24T14:45:30.010000"],["2024-07-24T14:45:31.010000"],["2024-07-24T14:45:32.010000"],["2024-07-24T14:45:33.010000"],["2024-07-24T14:45:34.010000"],["2024-07-24T14:45:35.010000"],["2024-07-24T14:45:36.010000"],["2024-07-24T14:45:37.010000"],["2024-07-24T14:45:38.010000"],["2024-07-24T14:45:39.010000"],["2024-07-24T14:45:40.010000"],["2024-07-24T14:45:41.010000"],["2024-07-24T14:45:42.010000"],["2024-07-24T14:45:43.010000"],["2024-07-24T14:45:44.010000"],["2024-07-24T14:45:45.010000"],["2024-07-24T14:45:46.010000"],["2024-07-24T14:45:47.010000"],["2024-07-24T14:45:48.010000"],["2024-07-24T14:45:49.010000"],["2024-07-24T14:45:50.010000"],["2024-07-24T14:45:51.010000"],["2024-07-24T14:45:52.010000"],["2024-07-24T14:45:53.010000"],["2024-07-24T14:45:54.010000"],["2024-07-24T14:45:55.010000"],["2024-07-24T14:45:56.010000"],["2024-07-24T14:45:57.010000"],["2024-07-24T14:45:58.010000"],["2024-07-24T14:45:59.010000"],["2024-07-24T14:46:00.010000"],["2024-07-24T14:46:01.010000"],["2024-07-24T14:46:02.010000"],["2024-07-24T14:46:03.010000"],["2024-07-24T14:46:04.010000"],["2024-07-24T14:46:05.010000"],["2024-07-24T14:46:06.010000"],["2024-07-24T14:46:07.010000"],["2024-07-24T14:46:08.010000"],["2024-07-24T14:46:09.010000"],["2024-07-24T14:46:10.010000"],["2024-07-24T14:46:11.010000"],["2024-07-24T14:46:12.010000"],["2024-07-24T14:46:13.010000"],["2024-07-24T14:46:14.010000"],["2024-07-24T14:46:15.010000"],["2024-07-24T14:46:16.010000"],["2024-07-24T14:46:17.010000"],["2024-07-24T14:46:18.010000"],["2024-07-24T14:46:19.010000"],["2024-07-24T14:46:20.010000"],["2024-07-24T14:46:21.010000"],["2024-07-24T14:46:22.010000"],["2024-07-24T14:46:23.010000"],["2024-07-24T14:46:24.010000"],["2024-07-24T14:46:25.010000"],["2024-07-24T14:46:26.010000"],["2024-07-24T14:46:27.010000"],["2024-07-24T14:46:28.010000"],["2024-07-24T14:46:29.010000"],["2024-07-24T14:46:30.010000"],["2024-07-24T14:46:31.010000"],["2024-07-24T14:46:32.010000"],["2024-07-24T14:46:33.010000"],["2024-07-24T14:46:34.010000"],["2024-07-24T14:46:35.010000"],["2024-07-24T14:46:36.010000"],["2024-07-24T14:46:37.010000"],["2024-07-24T14:46:38.010000"],["2024-07-24T14:46:39.010000"],["2024-07-24T14:46:40.010000"],["2024-07-24T14:46:41.010000"],["2024-07-24T14:46:42.010000"],["2024-07-24T14:46:43.010000"],["2024-07-24T14:46:44.010000"],["2024-07-24T14:46:45.010000"],["2024-07-24T14:46:46.010000"],["2024-07-24T14:46:47.010000"],["2024-07-24T14:46:48.010000"],["2024-07-24T14:46:49.010000"],["2024-07-24T14:46:50.010000"],["2024-07-24T14:46:51.010000"],["2024-07-24T14:46:52.010000"],["2024-07-24T14:46:53.010000"],["2024-07-24T14:46:54.010000"],["2024-07-24T14:46:55.010000"],["2024-07-24T14:46:56.010000"],["2024-07-24T14:46:57.010000"],["2024-07-24T14:46:58.010000"],["2024-07-24T14:46:59.010000"],["2024-07-24T14:47:00.010000"],["2024-07-24T14:47:01.010000"],["2024-07-24T14:47:02.010000"],["2024-07-24T14:47:03.010000"],["2024-07-24T14:47:04.010000"],["2024-07-24T14:47:05.010000"],["2024-07-24T14:47:06.010000"],["2024-07-24T14:47:07.010000"],["2024-07-24T14:47:08.010000"],["2024-07-24T14:47:09.010000"],["2024-07-24T14:47:10.010000"],["2024-07-24T14:47:11.010000"],["2024-07-24T14:47:12.010000"],["2024-07-24T14:47:13.010000"],["2024-07-24T14:47:14.010000"],["2024-07-24T14:47:15.010000"],["2024-07-24T14:47:16.010000"],["2024-07-24T14:47:17.010000"],["2024-07-24T14:47:18.010000"],["2024-07-24T14:47:19.010000"],["2024-07-24T14:47:20.010000"],["2024-07-24T14:47:21.010000"],["2024-07-24T14:47:22.010000"],["2024-07-24T14:47:23.010000"],["2024-07-24T14:47:24.010000"],["2024-07-24T14:47:25.010000"],["2024-07-24T14:47:26.010000"],["2024-07-24T14:47:27.010000"],["2024-07-24T14:47:28.010000"],["2024-07-24T14:47:29.010000"],["2024-07-24T14:47:30.010000"],["2024-07-24T14:47:31.010000"],["2024-07-24T14:47:32.010000"],["2024-07-24T14:47:33.010000"],["2024-07-24T14:47:34.010000"],["2024-07-24T14:47:35.010000"],["2024-07-24T14:47:36.010000"],["2024-07-24T14:47:37.010000"],["2024-07-24T14:47:38.010000"],["2024-07-24T14:47:39.010000"],["2024-07-24T14:47:40.010000"],["2024-07-24T14:47:41.010000"],["2024-07-24T14:47:42.010000"],["2024-07-24T14:47:43.010000"],["2024-07-24T14:47:44.010000"],["2024-07-24T14:47:45.010000"],["2024-07-24T14:47:46.010000"],["2024-07-24T14:47:47.010000"],["2024-07-24T14:47:48.010000"],["2024-07-24T14:47:49.010000"],["2024-07-24T14:47:50.010000"],["2024-07-24T14:47:51.010000"],["2024-07-24T14:47:52.010000"],["2024-07-24T14:47:53.010000"],["2024-07-24T14:47:54.010000"],["2024-07-24T14:47:55.010000"],["2024-07-24T14:47:56.010000"],["2024-07-24T14:47:57.010000"],["2024-07-24T14:47:58.010000"],["2024-07-24T14:47:59.010000"],["2024-07-24T14:48:00.010000"],["2024-07-24T14:48:01.010000"],["2024-07-24T14:48:02.010000"],["2024-07-24T14:48:03.010000"],["2024-07-24T14:48:04.010000"],["2024-07-24T14:48:05.010000"],["2024-07-24T14:48:06.010000"],["2024-07-24T14:48:07.010000"],["2024-07-24T14:48:08.010000"],["2024-07-24T14:48:09.010000"],["2024-07-24T14:48:10.010000"],["2024-07-24T14:48:11.010000"],["2024-07-24T14:48:12.010000"],["2024-07-24T14:48:13.010000"],["2024-07-24T14:48:14.010000"],["2024-07-24T14:48:15.010000"],["2024-07-24T14:48:16.010000"],["2024-07-24T14:48:17.010000"],["2024-07-24T14:48:18.010000"],["2024-07-24T14:48:19.010000"],["2024-07-24T14:48:20.010000"],["2024-07-24T14:48:21.010000"],["2024-07-24T14:48:22.010000"],["2024-07-24T14:48:23.010000"],["2024-07-24T14:48:24.010000"],["2024-07-24T14:48:25.010000"],["2024-07-24T14:48:26.010000"],["2024-07-24T14:48:27.010000"],["2024-07-24T14:48:28.010000"],["2024-07-24T14:48:29.010000"],["2024-07-24T14:48:30.010000"],["2024-07-24T14:48:31.010000"],["2024-07-24T14:48:32.010000"],["2024-07-24T14:48:33.010000"],["2024-07-24T14:48:34.010000"],["2024-07-24T14:48:35.010000"],["2024-07-24T14:48:36.010000"],["2024-07-24T14:48:37.010000"],["2024-07-24T14:48:38.010000"],["2024-07-24T14:48:39.010000"],["2024-07-24T14:48:40.010000"],["2024-07-24T14:48:41.010000"],["2024-07-24T14:48:42.010000"],["2024-07-24T14:48:43.010000"],["2024-07-24T14:48:44.010000"],["2024-07-24T14:48:45.010000"],["2024-07-24T14:48:46.010000"],["2024-07-24T14:48:47.010000"],["2024-07-24T14:48:48.010000"],["2024-07-24T14:48:49.010000"],["2024-07-24T14:48:50.010000"],["2024-07-24T14:48:51.010000"],["2024-07-24T14:48:52.010000"],["2024-07-24T14:48:53.010000"],["2024-07-24T14:48:54.010000"],["2024-07-24T14:48:55.010000"],["2024-07-24T14:48:56.010000"],["2024-07-24T14:48:57.010000"],["2024-07-24T14:48:58.010000"],["2024-07-24T14:48:59.010000"],["2024-07-24T14:49:00.010000"],["2024-07-24T14:49:01.010000"],["2024-07-24T14:49:02.010000"],["2024-07-24T14:49:03.010000"],["2024-07-24T14:49:04.010000"],["2024-07-24T14:49:05.010000"],["2024-07-24T14:49:06.010000"],["2024-07-24T14:49:07.010000"],["2024-07-24T14:49:08.010000"],["2024-07-24T14:49:09.010000"],["2024-07-24T14:49:10.010000"],["2024-07-24T14:49:11.010000"],["2024-07-24T14:49:12.010000"],["2024-07-24T14:49:13.010000"],["2024-07-24T14:49:14.010000"],["2024-07-24T14:49:15.010000"],["2024-07-24T14:49:16.010000"],["2024-07-24T14:49:17.010000"],["2024-07-24T14:49:18.010000"],["2024-07-24T14:49:19.010000"],["2024-07-24T14:49:20.010000"],["2024-07-24T14:49:21.010000"],["2024-07-24T14:49:22.010000"],["2024-07-24T14:49:23.010000"],["2024-07-24T14:49:24.010000"],["2024-07-24T14:49:25.010000"],["2024-07-24T14:49:26.010000"],["2024-07-24T14:49:27.010000"],["2024-07-24T14:49:28.010000"],["2024-07-24T14:49:29.010000"],["2024-07-24T14:49:30.010000"],["2024-07-24T14:49:31.010000"],["2024-07-24T14:49:32.010000"],["2024-07-24T14:49:33.010000"],["2024-07-24T14:49:34.010000"],["2024-07-24T14:49:35.010000"],["2024-07-24T14:49:36.010000"],["2024-07-24T14:49:37.010000"],["2024-07-24T14:49:38.010000"],["2024-07-24T14:49:39.010000"],["2024-07-24T14:49:40.010000"],["2024-07-24T14:49:41.010000"],["2024-07-24T14:49:42.010000"],["2024-07-24T14:49:43.010000"],["2024-07-24T14:49:44.010000"],["2024-07-24T14:49:45.010000"],["2024-07-24T14:49:46.010000"],["2024-07-24T14:49:47.010000"],["2024-07-24T14:49:48.010000"],["2024-07-24T14:49:49.010000"],["2024-07-24T14:49:50.010000"],["2024-07-24T14:49:51.010000"],["2024-07-24T14:49:52.010000"],["2024-07-24T14:49:53.010000"],["2024-07-24T14:49:54.010000"],["2024-07-24T14:49:55.010000"],["2024-07-24T14:49:56.010000"],["2024-07-24T14:49:57.010000"],["2024-07-24T14:49:58.010000"],["2024-07-24T14:49:59.010000"],["2024-07-24T14:50:00.010000"],["2024-07-24T14:50:01.010000"],["2024-07-24T14:50:02.010000"],["2024-07-24T14:50:03.010000"],["2024-07-24T14:50:04.010000"],["2024-07-24T14:50:05.010000"],["2024-07-24T14:50:06.010000"],["2024-07-24T14:50:07.010000"],["2024-07-24T14:50:08.010000"],["2024-07-24T14:50:09.010000"],["2024-07-24T14:50:10.010000"],["2024-07-24T14:50:11.010000"],["2024-07-24T14:50:12.010000"],["2024-07-24T14:50:13.010000"],["2024-07-24T14:50:14.010000"],["2024-07-24T14:50:15.010000"],["2024-07-24T14:50:16.010000"],["2024-07-24T14:50:17.010000"],["2024-07-24T14:50:18.010000"],["2024-07-24T14:50:19.010000"],["2024-07-24T14:50:20.010000"],["2024-07-24T14:50:21.010000"],["2024-07-24T14:50:22.010000"],["2024-07-24T14:50:23.010000"],["2024-07-24T14:50:24.010000"],["2024-07-24T14:50:25.010000"],["2024-07-24T14:50:26.010000"],["2024-07-24T14:50:27.010000"],["2024-07-24T14:50:28.010000"],["2024-07-24T14:50:29.010000"],["2024-07-24T14:50:30.010000"],["2024-07-24T14:50:31.010000"],["2024-07-24T14:50:32.010000"],["2024-07-24T14:50:33.010000"],["2024-07-24T14:50:34.010000"],["2024-07-24T14:50:35.010000"],["2024-07-24T14:50:36.010000"],["2024-07-24T14:50:37.010000"],["2024-07-24T14:50:38.010000"],["2024-07-24T14:50:39.010000"],["2024-07-24T14:50:40.010000"],["2024-07-24T14:50:41.010000"],["2024-07-24T14:50:42.010000"],["2024-07-24T14:50:43.010000"],["2024-07-24T14:50:44.010000"],["2024-07-24T14:50:45.010000"],["2024-07-24T14:50:46.010000"],["2024-07-24T14:50:47.010000"],["2024-07-24T14:50:48.010000"],["2024-07-24T14:50:49.010000"],["2024-07-24T14:50:50.010000"],["2024-07-24T14:50:51.010000"],["2024-07-24T14:50:52.010000"],["2024-07-24T14:50:53.010000"],["2024-07-24T14:50:54.010000"],["2024-07-24T14:50:55.010000"],["2024-07-24T14:50:56.010000"],["2024-07-24T14:50:57.010000"],["2024-07-24T14:50:58.010000"],["2024-07-24T14:50:59.010000"],["2024-07-24T14:51:00.010000"],["2024-07-24T14:51:01.010000"],["2024-07-24T14:51:02.010000"],["2024-07-24T14:51:03.010000"],["2024-07-24T14:51:04.010000"],["2024-07-24T14:51:05.010000"],["2024-07-24T14:51:06.010000"],["2024-07-24T14:51:07.010000"],["2024-07-24T14:51:08.010000"],["2024-07-24T14:51:09.010000"],["2024-07-24T14:51:10.010000"],["2024-07-24T14:51:11.010000"],["2024-07-24T14:51:12.010000"],["2024-07-24T14:51:13.010000"],["2024-07-24T14:51:14.010000"],["2024-07-24T14:51:15.010000"],["2024-07-24T14:51:16.010000"],["2024-07-24T14:51:17.010000"],["2024-07-24T14:51:18.010000"],["2024-07-24T14:51:19.010000"],["2024-07-24T14:51:20.010000"],["2024-07-24T14:51:21.010000"],["2024-07-24T14:51:22.010000"],["2024-07-24T14:51:23.010000"],["2024-07-24T14:51:24.010000"],["2024-07-24T14:51:25.010000"],["2024-07-24T14:51:26.010000"],["2024-07-24T14:51:27.010000"],["2024-07-24T14:51:28.010000"],["2024-07-24T14:51:29.010000"],["2024-07-24T14:51:30.010000"],["2024-07-24T14:51:31.010000"],["2024-07-24T14:51:32.010000"],["2024-07-24T14:51:33.010000"],["2024-07-24T14:51:34.010000"],["2024-07-24T14:51:35.010000"],["2024-07-24T14:51:36.010000"],["2024-07-24T14:51:37.010000"],["2024-07-24T14:51:38.010000"],["2024-07-24T14:51:39.010000"],["2024-07-24T14:51:40.010000"],["2024-07-24T14:51:41.010000"],["2024-07-24T14:51:42.010000"],["2024-07-24T14:51:43.010000"],["2024-07-24T14:51:44.010000"],["2024-07-24T14:51:45.010000"],["2024-07-24T14:51:46.010000"],["2024-07-24T14:51:47.010000"],["2024-07-24T14:51:48.010000"],["2024-07-24T14:51:49.010000"],["2024-07-24T14:51:50.010000"],["2024-07-24T14:51:51.010000"],["2024-07-24T14:51:52.010000"],["2024-07-24T14:51:53.010000"],["2024-07-24T14:51:54.010000"],["2024-07-24T14:51:55.010000"],["2024-07-24T14:51:56.010000"],["2024-07-24T14:51:57.010000"],["2024-07-24T14:51:58.010000"],["2024-07-24T14:51:59.010000"],["2024-07-24T14:52:00.010000"],["2024-07-24T14:52:01.010000"],["2024-07-24T14:52:02.010000"],["2024-07-24T14:52:03.010000"],["2024-07-24T14:52:04.010000"],["2024-07-24T14:52:05.010000"],["2024-07-24T14:52:06.010000"],["2024-07-24T14:52:07.010000"],["2024-07-24T14:52:08.010000"],["2024-07-24T14:52:09.010000"],["2024-07-24T14:52:10.010000"],["2024-07-24T14:52:11.010000"],["2024-07-24T14:52:12.010000"],["2024-07-24T14:52:13.010000"],["2024-07-24T14:52:14.010000"],["2024-07-24T14:52:15.010000"],["2024-07-24T14:52:16.010000"],["2024-07-24T14:52:17.010000"],["2024-07-24T14:52:18.010000"],["2024-07-24T14:52:19.010000"],["2024-07-24T14:52:20.010000"],["2024-07-24T14:52:21.010000"],["2024-07-24T14:52:22.010000"],["2024-07-24T14:52:23.010000"],["2024-07-24T14:52:24.010000"],["2024-07-24T14:52:25.010000"],["2024-07-24T14:52:26.010000"],["2024-07-24T14:52:27.010000"],["2024-07-24T14:52:28.010000"],["2024-07-24T14:52:29.010000"],["2024-07-24T14:52:30.010000"],["2024-07-24T14:52:31.010000"],["2024-07-24T14:52:32.010000"],["2024-07-24T14:52:33.010000"],["2024-07-24T14:52:34.010000"],["2024-07-24T14:52:35.010000"],["2024-07-24T14:52:36.010000"],["2024-07-24T14:52:37.010000"],["2024-07-24T14:52:38.010000"],["2024-07-24T14:52:39.010000"],["2024-07-24T14:52:40.010000"],["2024-07-24T14:52:41.010000"],["2024-07-24T14:52:42.010000"],["2024-07-24T14:52:43.010000"],["2024-07-24T14:52:44.010000"],["2024-07-24T14:52:45.010000"],["2024-07-24T14:52:46.010000"],["2024-07-24T14:52:47.010000"],["2024-07-24T14:52:48.010000"],["2024-07-24T14:52:49.010000"],["2024-07-24T14:52:50.010000"],["2024-07-24T14:52:51.010000"],["2024-07-24T14:52:52.010000"],["2024-07-24T14:52:53.010000"],["2024-07-24T14:52:54.010000"],["2024-07-24T14:52:55.010000"],["2024-07-24T14:52:56.010000"],["2024-07-24T14:52:57.010000"],["2024-07-24T14:52:58.010000"],["2024-07-24T14:52:59.010000"],["2024-07-24T14:53:00.010000"],["2024-07-24T14:53:01.010000"],["2024-07-24T14:53:02.010000"],["2024-07-24T14:53:03.010000"],["2024-07-24T14:53:04.010000"],["2024-07-24T14:53:05.010000"],["2024-07-24T14:53:06.010000"],["2024-07-24T14:53:07.010000"],["2024-07-24T14:53:08.010000"],["2024-07-24T14:53:09.010000"],["2024-07-24T14:53:10.010000"],["2024-07-24T14:53:11.010000"],["2024-07-24T14:53:12.010000"],["2024-07-24T14:53:13.010000"],["2024-07-24T14:53:14.010000"],["2024-07-24T14:53:15.010000"],["2024-07-24T14:53:16.010000"],["2024-07-24T14:53:17.010000"],["2024-07-24T14:53:18.010000"],["2024-07-24T14:53:19.010000"],["2024-07-24T14:53:20.010000"],["2024-07-24T14:53:21.010000"],["2024-07-24T14:53:22.010000"],["2024-07-24T14:53:23.010000"],["2024-07-24T14:53:24.010000"],["2024-07-24T14:53:25.010000"],["2024-07-24T14:53:26.010000"],["2024-07-24T14:53:27.010000"],["2024-07-24T14:53:28.010000"],["2024-07-24T14:53:29.010000"],["2024-07-24T14:53:30.010000"],["2024-07-24T14:53:31.010000"],["2024-07-24T14:53:32.010000"],["2024-07-24T14:53:33.010000"],["2024-07-24T14:53:34.010000"],["2024-07-24T14:53:35.010000"],["2024-07-24T14:53:36.010000"],["2024-07-24T14:53:37.010000"],["2024-07-24T14:53:38.010000"],["2024-07-24T14:53:39.010000"],["2024-07-24T14:53:40.010000"],["2024-07-24T14:53:41.010000"],["2024-07-24T14:53:42.010000"],["2024-07-24T14:53:43.010000"],["2024-07-24T14:53:44.010000"],["2024-07-24T14:53:45.010000"],["2024-07-24T14:53:46.010000"],["2024-07-24T14:53:47.010000"],["2024-07-24T14:53:48.010000"],["2024-07-24T14:53:49.010000"],["2024-07-24T14:53:50.010000"],["2024-07-24T14:53:51.010000"],["2024-07-24T14:53:52.010000"],["2024-07-24T14:53:53.010000"],["2024-07-24T14:53:54.010000"],["2024-07-24T14:53:55.010000"],["2024-07-24T14:53:56.010000"],["2024-07-24T14:53:57.010000"],["2024-07-24T14:53:58.010000"],["2024-07-24T14:53:59.010000"],["2024-07-24T14:54:00.010000"],["2024-07-24T14:54:01.010000"],["2024-07-24T14:54:02.010000"],["2024-07-24T14:54:03.010000"],["2024-07-24T14:54:04.010000"],["2024-07-24T14:54:05.010000"],["2024-07-24T14:54:06.010000"],["2024-07-24T14:54:07.010000"],["2024-07-24T14:54:08.010000"],["2024-07-24T14:54:09.010000"],["2024-07-24T14:54:10.010000"],["2024-07-24T14:54:11.010000"],["2024-07-24T14:54:12.010000"],["2024-07-24T14:54:13.010000"],["2024-07-24T14:54:14.010000"],["2024-07-24T14:54:15.010000"],["2024-07-24T14:54:16.010000"],["2024-07-24T14:54:17.010000"],["2024-07-24T14:54:18.010000"],["2024-07-24T14:54:19.010000"],["2024-07-24T14:54:20.010000"],["2024-07-24T14:54:21.010000"],["2024-07-24T14:54:22.010000"],["2024-07-24T14:54:23.010000"],["2024-07-24T14:54:24.010000"],["2024-07-24T14:54:25.010000"],["2024-07-24T14:54:26.010000"],["2024-07-24T14:54:27.010000"],["2024-07-24T14:54:28.010000"],["2024-07-24T14:54:29.010000"],["2024-07-24T14:54:30.010000"],["2024-07-24T14:54:31.010000"],["2024-07-24T14:54:32.010000"],["2024-07-24T14:54:33.010000"],["2024-07-24T14:54:34.010000"],["2024-07-24T14:54:35.010000"],["2024-07-24T14:54:36.010000"],["2024-07-24T14:54:37.010000"],["2024-07-24T14:54:38.010000"],["2024-07-24T14:54:39.010000"],["2024-07-24T14:54:40.010000"],["2024-07-24T14:54:41.010000"],["2024-07-24T14:54:42.010000"],["2024-07-24T14:54:43.010000"],["2024-07-24T14:54:44.010000"],["2024-07-24T14:54:45.010000"],["2024-07-24T14:54:46.010000"],["2024-07-24T14:54:47.010000"],["2024-07-24T14:54:48.010000"],["2024-07-24T14:54:49.010000"],["2024-07-24T14:54:50.010000"],["2024-07-24T14:54:51.010000"],["2024-07-24T14:54:52.010000"],["2024-07-24T14:54:53.010000"],["2024-07-24T14:54:54.010000"],["2024-07-24T14:54:55.010000"],["2024-07-24T14:54:56.010000"],["2024-07-24T14:54:57.010000"],["2024-07-24T14:54:58.010000"],["2024-07-24T14:54:59.010000"],["2024-07-24T14:55:00.010000"],["2024-07-24T14:55:01.010000"],["2024-07-24T14:55:02.010000"],["2024-07-24T14:55:03.010000"],["2024-07-24T14:55:04.010000"],["2024-07-24T14:55:05.010000"],["2024-07-24T14:55:06.010000"],["2024-07-24T14:55:07.010000"],["2024-07-24T14:55:08.010000"],["2024-07-24T14:55:09.010000"],["2024-07-24T14:55:10.010000"],["2024-07-24T14:55:11.010000"],["2024-07-24T14:55:12.010000"],["2024-07-24T14:55:13.010000"],["2024-07-24T14:55:14.010000"],["2024-07-24T14:55:15.010000"],["2024-07-24T14:55:16.010000"],["2024-07-24T14:55:17.010000"],["2024-07-24T14:55:18.010000"],["2024-07-24T14:55:19.010000"],["2024-07-24T14:55:20.010000"],["2024-07-24T14:55:21.010000"],["2024-07-24T14:55:22.010000"],["2024-07-24T14:55:23.010000"],["2024-07-24T14:55:24.010000"],["2024-07-24T14:55:25.010000"],["2024-07-24T14:55:26.010000"],["2024-07-24T14:55:27.010000"],["2024-07-24T14:55:28.010000"],["2024-07-24T14:55:29.010000"],["2024-07-24T14:55:30.010000"],["2024-07-24T14:55:31.010000"],["2024-07-24T14:55:32.010000"],["2024-07-24T14:55:33.010000"],["2024-07-24T14:55:34.010000"],["2024-07-24T14:55:35.010000"],["2024-07-24T14:55:36.010000"],["2024-07-24T14:55:37.010000"],["2024-07-24T14:55:38.010000"],["2024-07-24T14:55:39.010000"],["2024-07-24T14:55:40.010000"],["2024-07-24T14:55:41.010000"],["2024-07-24T14:55:42.010000"],["2024-07-24T14:55:43.010000"],["2024-07-24T14:55:44.010000"],["2024-07-24T14:55:45.010000"],["2024-07-24T14:55:46.010000"],["2024-07-24T14:55:47.010000"],["2024-07-24T14:55:48.010000"],["2024-07-24T14:55:49.010000"],["2024-07-24T14:55:50.010000"],["2024-07-24T14:55:51.010000"],["2024-07-24T14:55:52.010000"],["2024-07-24T14:55:53.010000"],["2024-07-24T14:55:54.010000"],["2024-07-24T14:55:55.010000"],["2024-07-24T14:55:56.010000"],["2024-07-24T14:55:57.010000"],["2024-07-24T14:55:58.010000"],["2024-07-24T14:55:59.010000"],["2024-07-24T14:56:00.010000"],["2024-07-24T14:56:01.010000"],["2024-07-24T14:56:02.010000"],["2024-07-24T14:56:03.010000"],["2024-07-24T14:56:04.010000"],["2024-07-24T14:56:05.010000"],["2024-07-24T14:56:06.010000"],["2024-07-24T14:56:07.010000"],["2024-07-24T14:56:08.010000"],["2024-07-24T14:56:09.010000"],["2024-07-24T14:56:10.010000"],["2024-07-24T14:56:11.010000"],["2024-07-24T14:56:12.010000"],["2024-07-24T14:56:13.010000"],["2024-07-24T14:56:14.010000"],["2024-07-24T14:56:15.010000"],["2024-07-24T14:56:16.010000"],["2024-07-24T14:56:17.010000"],["2024-07-24T14:56:18.010000"],["2024-07-24T14:56:19.010000"],["2024-07-24T14:56:20.010000"],["2024-07-24T14:56:21.010000"],["2024-07-24T14:56:22.010000"],["2024-07-24T14:56:23.010000"],["2024-07-24T14:56:24.010000"],["2024-07-24T14:56:25.010000"],["2024-07-24T14:56:26.010000"],["2024-07-24T14:56:27.010000"],["2024-07-24T14:56:28.010000"],["2024-07-24T14:56:29.010000"],["2024-07-24T14:56:30.010000"],["2024-07-24T14:56:31.010000"],["2024-07-24T14:56:32.010000"],["2024-07-24T14:56:33.010000"],["2024-07-24T14:56:34.010000"],["2024-07-24T14:56:35.010000"],["2024-07-24T14:56:36.010000"],["2024-07-24T14:56:37.010000"],["2024-07-24T14:56:38.010000"],["2024-07-24T14:56:39.010000"],["2024-07-24T14:56:40.010000"],["2024-07-24T14:56:41.010000"],["2024-07-24T14:56:42.010000"],["2024-07-24T14:56:43.010000"],["2024-07-24T14:56:44.010000"],["2024-07-24T14:56:45.010000"],["2024-07-24T14:56:46.010000"],["2024-07-24T14:56:47.010000"],["2024-07-24T14:56:48.010000"],["2024-07-24T14:56:49.010000"],["2024-07-24T14:56:50.010000"],["2024-07-24T14:56:51.010000"],["2024-07-24T14:56:52.010000"],["2024-07-24T14:56:53.010000"],["2024-07-24T14:56:54.010000"],["2024-07-24T14:56:55.010000"],["2024-07-24T14:56:56.010000"],["2024-07-24T14:56:57.010000"],["2024-07-24T14:56:58.010000"],["2024-07-24T14:56:59.010000"],["2024-07-24T14:57:00.010000"],["2024-07-24T14:57:01.010000"],["2024-07-24T14:57:02.010000"],["2024-07-24T14:57:03.010000"],["2024-07-24T14:57:04.010000"],["2024-07-24T14:57:05.010000"],["2024-07-24T14:57:06.010000"],["2024-07-24T14:57:07.010000"],["2024-07-24T14:57:08.010000"],["2024-07-24T14:57:09.010000"],["2024-07-24T14:57:10.010000"],["2024-07-24T14:57:11.010000"],["2024-07-24T14:57:12.010000"],["2024-07-24T14:57:13.010000"],["2024-07-24T14:57:14.010000"],["2024-07-24T14:57:15.010000"],["2024-07-24T14:57:16.010000"],["2024-07-24T14:57:17.010000"],["2024-07-24T14:57:18.010000"],["2024-07-24T14:57:19.010000"],["2024-07-24T14:57:20.010000"],["2024-07-24T14:57:21.010000"],["2024-07-24T14:57:22.010000"],["2024-07-24T14:57:23.010000"],["2024-07-24T14:57:24.010000"],["2024-07-24T14:57:25.010000"],["2024-07-24T14:57:26.010000"],["2024-07-24T14:57:27.010000"],["2024-07-24T14:57:28.010000"],["2024-07-24T14:57:29.010000"],["2024-07-24T14:57:30.010000"],["2024-07-24T14:57:31.010000"],["2024-07-24T14:57:32.010000"],["2024-07-24T14:57:33.010000"],["2024-07-24T14:57:34.010000"],["2024-07-24T14:57:35.010000"],["2024-07-24T14:57:36.010000"],["2024-07-24T14:57:37.010000"],["2024-07-24T14:57:38.010000"],["2024-07-24T14:57:39.010000"],["2024-07-24T14:57:40.010000"],["2024-07-24T14:57:41.010000"],["2024-07-24T14:57:42.010000"],["2024-07-24T14:57:43.010000"],["2024-07-24T14:57:44.010000"],["2024-07-24T14:57:45.010000"],["2024-07-24T14:57:46.010000"],["2024-07-24T14:57:47.010000"],["2024-07-24T14:57:48.010000"],["2024-07-24T14:57:49.010000"],["2024-07-24T14:57:50.010000"],["2024-07-24T14:57:51.010000"],["2024-07-24T14:57:52.010000"],["2024-07-24T14:57:53.010000"],["2024-07-24T14:57:54.010000"],["2024-07-24T14:57:55.010000"],["2024-07-24T14:57:56.010000"],["2024-07-24T14:57:57.010000"],["2024-07-24T14:57:58.010000"],["2024-07-24T14:57:59.010000"],["2024-07-24T14:58:00.010000"],["2024-07-24T14:58:01.010000"],["2024-07-24T14:58:02.010000"],["2024-07-24T14:58:03.010000"],["2024-07-24T14:58:04.010000"],["2024-07-24T14:58:05.010000"],["2024-07-24T14:58:06.010000"],["2024-07-24T14:58:07.010000"],["2024-07-24T14:58:08.010000"],["2024-07-24T14:58:09.010000"],["2024-07-24T14:58:10.010000"],["2024-07-24T14:58:11.010000"],["2024-07-24T14:58:12.010000"],["2024-07-24T14:58:13.010000"],["2024-07-24T14:58:14.010000"],["2024-07-24T14:58:15.010000"],["2024-07-24T14:58:16.010000"],["2024-07-24T14:58:17.010000"],["2024-07-24T14:58:18.010000"],["2024-07-24T14:58:19.010000"],["2024-07-24T14:58:20.010000"],["2024-07-24T14:58:21.010000"],["2024-07-24T14:58:22.010000"],["2024-07-24T14:58:23.010000"],["2024-07-24T14:58:24.010000"],["2024-07-24T14:58:25.010000"],["2024-07-24T14:58:26.010000"],["2024-07-24T14:58:27.010000"],["2024-07-24T14:58:28.010000"],["2024-07-24T14:58:29.010000"],["2024-07-24T14:58:30.010000"],["2024-07-24T14:58:31.010000"],["2024-07-24T14:58:32.010000"],["2024-07-24T14:58:33.010000"],["2024-07-24T14:58:34.010000"],["2024-07-24T14:58:35.010000"],["2024-07-24T14:58:36.010000"],["2024-07-24T14:58:37.010000"],["2024-07-24T14:58:38.010000"],["2024-07-24T14:58:39.010000"],["2024-07-24T14:58:40.010000"],["2024-07-24T14:58:41.010000"],["2024-07-24T14:58:42.010000"],["2024-07-24T14:58:43.010000"],["2024-07-24T14:58:44.010000"],["2024-07-24T14:58:45.010000"],["2024-07-24T14:58:46.010000"],["2024-07-24T14:58:47.010000"],["2024-07-24T14:58:48.010000"],["2024-07-24T14:58:49.010000"],["2024-07-24T14:58:50.010000"],["2024-07-24T14:58:51.010000"],["2024-07-24T14:58:52.010000"],["2024-07-24T14:58:53.010000"],["2024-07-24T14:58:54.010000"],["2024-07-24T14:58:55.010000"],["2024-07-24T14:58:56.010000"],["2024-07-24T14:58:57.010000"],["2024-07-24T14:58:58.010000"],["2024-07-24T14:58:59.010000"],["2024-07-24T14:59:00.010000"],["2024-07-24T14:59:01.010000"],["2024-07-24T14:59:02.010000"],["2024-07-24T14:59:03.010000"],["2024-07-24T14:59:04.010000"],["2024-07-24T14:59:05.010000"],["2024-07-24T14:59:06.010000"],["2024-07-24T14:59:07.010000"],["2024-07-24T14:59:08.010000"],["2024-07-24T14:59:09.010000"],["2024-07-24T14:59:10.010000"],["2024-07-24T14:59:11.010000"],["2024-07-24T14:59:12.010000"],["2024-07-24T14:59:13.010000"],["2024-07-24T14:59:14.010000"],["2024-07-24T14:59:15.010000"],["2024-07-24T14:59:16.010000"],["2024-07-24T14:59:17.010000"],["2024-07-24T14:59:18.010000"],["2024-07-24T14:59:19.010000"],["2024-07-24T14:59:20.010000"],["2024-07-24T14:59:21.010000"],["2024-07-24T14:59:22.010000"],["2024-07-24T14:59:23.010000"],["2024-07-24T14:59:24.010000"],["2024-07-24T14:59:25.010000"],["2024-07-24T14:59:26.010000"],["2024-07-24T14:59:27.010000"],["2024-07-24T14:59:28.010000"],["2024-07-24T14:59:29.010000"],["2024-07-24T14:59:30.010000"],["2024-07-24T14:59:31.010000"],["2024-07-24T14:59:32.010000"],["2024-07-24T14:59:33.010000"],["2024-07-24T14:59:34.010000"],["2024-07-24T14:59:35.010000"],["2024-07-24T14:59:36.010000"],["2024-07-24T14:59:37.010000"],["2024-07-24T14:59:38.010000"],["2024-07-24T14:59:39.010000"],["2024-07-24T14:59:40.010000"],["2024-07-24T14:59:41.010000"],["2024-07-24T14:59:42.010000"],["2024-07-24T14:59:43.010000"],["2024-07-24T14:59:44.010000"],["2024-07-24T14:59:45.010000"],["2024-07-24T14:59:46.010000"],["2024-07-24T14:59:47.010000"],["2024-07-24T14:59:48.010000"],["2024-07-24T14:59:49.010000"],["2024-07-24T14:59:50.010000"],["2024-07-24T14:59:51.010000"],["2024-07-24T14:59:52.010000"],["2024-07-24T14:59:53.010000"],["2024-07-24T14:59:54.010000"],["2024-07-24T14:59:55.010000"],["2024-07-24T14:59:56.010000"],["2024-07-24T14:59:57.010000"],["2024-07-24T14:59:58.010000"],["2024-07-24T14:59:59.010000"],["2024-07-24T15:00:00.010000"],["2024-07-24T15:00:01.010000"],["2024-07-24T15:00:02.010000"],["2024-07-24T15:00:03.010000"],["2024-07-24T15:00:04.010000"],["2024-07-24T15:00:05.010000"],["2024-07-24T15:00:06.010000"],["2024-07-24T15:00:07.010000"],["2024-07-24T15:00:08.010000"],["2024-07-24T15:00:09.010000"],["2024-07-24T15:00:10.010000"],["2024-07-24T15:00:11.010000"],["2024-07-24T15:00:12.010000"],["2024-07-24T15:00:13.010000"],["2024-07-24T15:00:14.010000"],["2024-07-24T15:00:15.010000"],["2024-07-24T15:00:16.010000"],["2024-07-24T15:00:17.010000"],["2024-07-24T15:00:18.010000"],["2024-07-24T15:00:19.010000"],["2024-07-24T15:00:20.010000"],["2024-07-24T15:00:21.010000"],["2024-07-24T15:00:22.010000"],["2024-07-24T15:00:23.010000"],["2024-07-24T15:00:24.010000"],["2024-07-24T15:00:25.010000"],["2024-07-24T15:00:26.010000"],["2024-07-24T15:00:27.010000"],["2024-07-24T15:00:28.010000"],["2024-07-24T15:00:29.010000"],["2024-07-24T15:00:30.010000"],["2024-07-24T15:00:31.010000"],["2024-07-24T15:00:32.010000"],["2024-07-24T15:00:33.010000"],["2024-07-24T15:00:34.010000"],["2024-07-24T15:00:35.010000"],["2024-07-24T15:00:36.010000"],["2024-07-24T15:00:37.010000"],["2024-07-24T15:00:38.010000"],["2024-07-24T15:00:39.010000"],["2024-07-24T15:00:40.010000"],["2024-07-24T15:00:41.010000"],["2024-07-24T15:00:42.010000"],["2024-07-24T15:00:43.010000"],["2024-07-24T15:00:44.010000"],["2024-07-24T15:00:45.010000"],["2024-07-24T15:00:46.010000"],["2024-07-24T15:00:47.010000"],["2024-07-24T15:00:48.010000"],["2024-07-24T15:00:49.010000"],["2024-07-24T15:00:50.010000"],["2024-07-24T15:00:51.010000"],["2024-07-24T15:00:52.010000"],["2024-07-24T15:00:53.010000"],["2024-07-24T15:00:54.010000"],["2024-07-24T15:00:55.010000"],["2024-07-24T15:00:56.010000"],["2024-07-24T15:00:57.010000"],["2024-07-24T15:00:58.010000"],["2024-07-24T15:00:59.010000"],["2024-07-24T15:01:00.010000"],["2024-07-24T15:01:01.010000"],["2024-07-24T15:01:02.010000"],["2024-07-24T15:01:03.010000"],["2024-07-24T15:01:04.010000"],["2024-07-24T15:01:05.010000"],["2024-07-24T15:01:06.010000"],["2024-07-24T15:01:07.010000"],["2024-07-24T15:01:08.010000"],["2024-07-24T15:01:09.010000"],["2024-07-24T15:01:10.010000"],["2024-07-24T15:01:11.010000"],["2024-07-24T15:01:12.010000"],["2024-07-24T15:01:13.010000"],["2024-07-24T15:01:14.010000"],["2024-07-24T15:01:15.010000"],["2024-07-24T15:01:16.010000"],["2024-07-24T15:01:17.010000"],["2024-07-24T15:01:18.010000"],["2024-07-24T15:01:19.010000"],["2024-07-24T15:01:20.010000"],["2024-07-24T15:01:21.010000"],["2024-07-24T15:01:22.010000"],["2024-07-24T15:01:23.010000"],["2024-07-24T15:01:24.010000"],["2024-07-24T15:01:25.010000"],["2024-07-24T15:01:26.010000"],["2024-07-24T15:01:27.010000"],["2024-07-24T15:01:28.010000"],["2024-07-24T15:01:29.010000"],["2024-07-24T15:01:30.010000"],["2024-07-24T15:01:31.010000"],["2024-07-24T15:01:32.010000"],["2024-07-24T15:01:33.010000"],["2024-07-24T15:01:34.010000"],["2024-07-24T15:01:35.010000"],["2024-07-24T15:01:36.010000"],["2024-07-24T15:01:37.010000"],["2024-07-24T15:01:38.010000"],["2024-07-24T15:01:39.010000"],["2024-07-24T15:01:40.010000"],["2024-07-24T15:01:41.010000"],["2024-07-24T15:01:42.010000"],["2024-07-24T15:01:43.010000"],["2024-07-24T15:01:44.010000"],["2024-07-24T15:01:45.010000"],["2024-07-24T15:01:46.010000"],["2024-07-24T15:01:47.010000"],["2024-07-24T15:01:48.010000"],["2024-07-24T15:01:49.010000"],["2024-07-24T15:01:50.010000"],["2024-07-24T15:01:51.010000"],["2024-07-24T15:01:52.010000"],["2024-07-24T15:01:53.010000"],["2024-07-24T15:01:54.010000"],["2024-07-24T15:01:55.010000"],["2024-07-24T15:01:56.010000"],["2024-07-24T15:01:57.010000"],["2024-07-24T15:01:58.010000"],["2024-07-24T15:01:59.010000"],["2024-07-24T15:02:00.010000"],["2024-07-24T15:02:01.010000"],["2024-07-24T15:02:02.010000"],["2024-07-24T15:02:03.010000"],["2024-07-24T15:02:04.010000"],["2024-07-24T15:02:05.010000"],["2024-07-24T15:02:06.010000"],["2024-07-24T15:02:07.010000"],["2024-07-24T15:02:08.010000"],["2024-07-24T15:02:09.010000"],["2024-07-24T15:02:10.010000"],["2024-07-24T15:02:11.010000"],["2024-07-24T15:02:12.010000"],["2024-07-24T15:02:13.010000"],["2024-07-24T15:02:14.010000"],["2024-07-24T15:02:15.010000"],["2024-07-24T15:02:16.010000"],["2024-07-24T15:02:17.010000"],["2024-07-24T15:02:18.010000"],["2024-07-24T15:02:19.010000"],["2024-07-24T15:02:20.010000"],["2024-07-24T15:02:21.010000"],["2024-07-24T15:02:22.010000"],["2024-07-24T15:02:23.010000"],["2024-07-24T15:02:24.010000"],["2024-07-24T15:02:25.010000"],["2024-07-24T15:02:26.010000"],["2024-07-24T15:02:27.010000"],["2024-07-24T15:02:28.010000"],["2024-07-24T15:02:29.010000"],["2024-07-24T15:02:30.010000"],["2024-07-24T15:02:31.010000"],["2024-07-24T15:02:32.010000"],["2024-07-24T15:02:33.010000"],["2024-07-24T15:02:34.010000"],["2024-07-24T15:02:35.010000"],["2024-07-24T15:02:36.010000"],["2024-07-24T15:02:37.010000"],["2024-07-24T15:02:38.010000"],["2024-07-24T15:02:39.010000"],["2024-07-24T15:02:40.010000"],["2024-07-24T15:02:41.010000"],["2024-07-24T15:02:42.010000"],["2024-07-24T15:02:43.010000"],["2024-07-24T15:02:44.010000"],["2024-07-24T15:02:45.010000"],["2024-07-24T15:02:46.010000"],["2024-07-24T15:02:47.010000"],["2024-07-24T15:02:48.010000"],["2024-07-24T15:02:49.010000"],["2024-07-24T15:02:50.010000"],["2024-07-24T15:02:51.010000"],["2024-07-24T15:02:52.010000"],["2024-07-24T15:02:53.010000"],["2024-07-24T15:02:54.010000"],["2024-07-24T15:02:55.010000"],["2024-07-24T15:02:56.010000"],["2024-07-24T15:02:57.010000"],["2024-07-24T15:02:58.010000"],["2024-07-24T15:02:59.010000"],["2024-07-24T15:03:00.010000"],["2024-07-24T15:03:01.010000"],["2024-07-24T15:03:02.010000"],["2024-07-24T15:03:03.010000"],["2024-07-24T15:03:04.010000"],["2024-07-24T15:03:05.010000"],["2024-07-24T15:03:06.010000"],["2024-07-24T15:03:07.010000"],["2024-07-24T15:03:08.010000"],["2024-07-24T15:03:09.010000"],["2024-07-24T15:03:10.010000"],["2024-07-24T15:03:11.010000"],["2024-07-24T15:03:12.010000"],["2024-07-24T15:03:13.010000"],["2024-07-24T15:03:14.010000"],["2024-07-24T15:03:15.010000"],["2024-07-24T15:03:16.010000"],["2024-07-24T15:03:17.010000"],["2024-07-24T15:03:18.010000"],["2024-07-24T15:03:19.010000"],["2024-07-24T15:03:20.010000"],["2024-07-24T15:03:21.010000"],["2024-07-24T15:03:22.010000"],["2024-07-24T15:03:23.010000"],["2024-07-24T15:03:24.010000"],["2024-07-24T15:03:25.010000"],["2024-07-24T15:03:26.010000"],["2024-07-24T15:03:27.010000"],["2024-07-24T15:03:28.010000"],["2024-07-24T15:03:29.010000"],["2024-07-24T15:03:30.010000"],["2024-07-24T15:03:31.010000"],["2024-07-24T15:03:32.010000"],["2024-07-24T15:03:33.010000"],["2024-07-24T15:03:34.010000"],["2024-07-24T15:03:35.010000"],["2024-07-24T15:03:36.010000"],["2024-07-24T15:03:37.010000"],["2024-07-24T15:03:38.010000"],["2024-07-24T15:03:39.010000"],["2024-07-24T15:03:40.010000"],["2024-07-24T15:03:41.010000"],["2024-07-24T15:03:42.010000"],["2024-07-24T15:03:43.010000"],["2024-07-24T15:03:44.010000"],["2024-07-24T15:03:45.010000"],["2024-07-24T15:03:46.010000"],["2024-07-24T15:03:47.010000"],["2024-07-24T15:03:48.010000"],["2024-07-24T15:03:49.010000"],["2024-07-24T15:03:50.010000"],["2024-07-24T15:03:51.010000"],["2024-07-24T15:03:52.010000"],["2024-07-24T15:03:53.010000"],["2024-07-24T15:03:54.010000"],["2024-07-24T15:03:55.010000"],["2024-07-24T15:03:56.010000"],["2024-07-24T15:03:57.010000"],["2024-07-24T15:03:58.010000"],["2024-07-24T15:03:59.010000"],["2024-07-24T15:04:00.010000"],["2024-07-24T15:04:01.010000"],["2024-07-24T15:04:02.010000"],["2024-07-24T15:04:03.010000"],["2024-07-24T15:04:04.010000"],["2024-07-24T15:04:05.010000"],["2024-07-24T15:04:06.010000"],["2024-07-24T15:04:07.010000"],["2024-07-24T15:04:08.010000"],["2024-07-24T15:04:09.010000"],["2024-07-24T15:04:10.010000"],["2024-07-24T15:04:11.010000"],["2024-07-24T15:04:12.010000"],["2024-07-24T15:04:13.010000"],["2024-07-24T15:04:14.010000"],["2024-07-24T15:04:15.010000"],["2024-07-24T15:04:16.010000"],["2024-07-24T15:04:17.010000"],["2024-07-24T15:04:18.010000"],["2024-07-24T15:04:19.010000"],["2024-07-24T15:04:20.010000"],["2024-07-24T15:04:21.010000"],["2024-07-24T15:04:22.010000"],["2024-07-24T15:04:23.010000"],["2024-07-24T15:04:24.010000"],["2024-07-24T15:04:25.010000"],["2024-07-24T15:04:26.010000"],["2024-07-24T15:04:27.010000"],["2024-07-24T15:04:28.010000"],["2024-07-24T15:04:29.010000"],["2024-07-24T15:04:30.010000"],["2024-07-24T15:04:31.010000"],["2024-07-24T15:04:32.010000"],["2024-07-24T15:04:33.010000"],["2024-07-24T15:04:34.010000"],["2024-07-24T15:04:35.010000"],["2024-07-24T15:04:36.010000"],["2024-07-24T15:04:37.010000"],["2024-07-24T15:04:38.010000"],["2024-07-24T15:04:39.010000"],["2024-07-24T15:04:40.010000"],["2024-07-24T15:04:41.010000"],["2024-07-24T15:04:42.010000"],["2024-07-24T15:04:43.010000"],["2024-07-24T15:04:44.010000"],["2024-07-24T15:04:45.010000"],["2024-07-24T15:04:46.010000"],["2024-07-24T15:04:47.010000"],["2024-07-24T15:04:48.010000"],["2024-07-24T15:04:49.010000"],["2024-07-24T15:04:50.010000"],["2024-07-24T15:04:51.010000"],["2024-07-24T15:04:52.010000"],["2024-07-24T15:04:53.010000"],["2024-07-24T15:04:54.010000"],["2024-07-24T15:04:55.010000"],["2024-07-24T15:04:56.010000"],["2024-07-24T15:04:57.010000"],["2024-07-24T15:04:58.010000"],["2024-07-24T15:04:59.010000"],["2024-07-24T15:05:00.010000"],["2024-07-24T15:05:01.010000"],["2024-07-24T15:05:02.010000"],["2024-07-24T15:05:03.010000"],["2024-07-24T15:05:04.010000"],["2024-07-24T15:05:05.010000"],["2024-07-24T15:05:06.010000"],["2024-07-24T15:05:07.010000"],["2024-07-24T15:05:08.010000"],["2024-07-24T15:05:09.010000"],["2024-07-24T15:05:10.010000"],["2024-07-24T15:05:11.010000"],["2024-07-24T15:05:12.010000"],["2024-07-24T15:05:13.010000"],["2024-07-24T15:05:14.010000"],["2024-07-24T15:05:15.010000"],["2024-07-24T15:05:16.010000"],["2024-07-24T15:05:17.010000"],["2024-07-24T15:05:18.010000"],["2024-07-24T15:05:19.010000"],["2024-07-24T15:05:20.010000"],["2024-07-24T15:05:21.010000"],["2024-07-24T15:05:22.010000"],["2024-07-24T15:05:23.010000"],["2024-07-24T15:05:24.010000"],["2024-07-24T15:05:25.010000"],["2024-07-24T15:05:26.010000"],["2024-07-24T15:05:27.010000"],["2024-07-24T15:05:28.010000"],["2024-07-24T15:05:29.010000"],["2024-07-24T15:05:30.010000"],["2024-07-24T15:05:31.010000"],["2024-07-24T15:05:32.010000"],["2024-07-24T15:05:33.010000"],["2024-07-24T15:05:34.010000"],["2024-07-24T15:05:35.010000"],["2024-07-24T15:05:36.010000"],["2024-07-24T15:05:37.010000"],["2024-07-24T15:05:38.010000"],["2024-07-24T15:05:39.010000"],["2024-07-24T15:05:40.010000"],["2024-07-24T15:05:41.010000"],["2024-07-24T15:05:42.010000"],["2024-07-24T15:05:43.010000"],["2024-07-24T15:05:44.010000"],["2024-07-24T15:05:45.010000"],["2024-07-24T15:05:46.010000"],["2024-07-24T15:05:47.010000"],["2024-07-24T15:05:48.010000"],["2024-07-24T15:05:49.010000"],["2024-07-24T15:05:50.010000"],["2024-07-24T15:05:51.010000"],["2024-07-24T15:05:52.010000"],["2024-07-24T15:05:53.010000"],["2024-07-24T15:05:54.010000"],["2024-07-24T15:05:55.010000"],["2024-07-24T15:05:56.010000"],["2024-07-24T15:05:57.010000"],["2024-07-24T15:05:58.010000"],["2024-07-24T15:05:59.010000"],["2024-07-24T15:06:00.010000"],["2024-07-24T15:06:01.010000"],["2024-07-24T15:06:02.010000"],["2024-07-24T15:06:03.010000"],["2024-07-24T15:06:04.010000"],["2024-07-24T15:06:05.010000"],["2024-07-24T15:06:06.010000"],["2024-07-24T15:06:07.010000"],["2024-07-24T15:06:08.010000"],["2024-07-24T15:06:09.010000"],["2024-07-24T15:06:10.010000"],["2024-07-24T15:06:11.010000"],["2024-07-24T15:06:12.010000"],["2024-07-24T15:06:13.010000"],["2024-07-24T15:06:14.010000"],["2024-07-24T15:06:15.010000"],["2024-07-24T15:06:16.010000"],["2024-07-24T15:06:17.010000"],["2024-07-24T15:06:18.010000"],["2024-07-24T15:06:19.010000"],["2024-07-24T15:06:20.010000"],["2024-07-24T15:06:21.010000"],["2024-07-24T15:06:22.010000"],["2024-07-24T15:06:23.010000"],["2024-07-24T15:06:24.010000"],["2024-07-24T15:06:25.010000"],["2024-07-24T15:06:26.010000"],["2024-07-24T15:06:27.010000"],["2024-07-24T15:06:28.010000"],["2024-07-24T15:06:29.010000"],["2024-07-24T15:06:30.010000"],["2024-07-24T15:06:31.010000"],["2024-07-24T15:06:32.010000"],["2024-07-24T15:06:33.010000"],["2024-07-24T15:06:34.010000"],["2024-07-24T15:06:35.010000"],["2024-07-24T15:06:36.010000"],["2024-07-24T15:06:37.010000"],["2024-07-24T15:06:38.010000"],["2024-07-24T15:06:39.010000"],["2024-07-24T15:06:40.010000"],["2024-07-24T15:06:41.010000"],["2024-07-24T15:06:42.010000"],["2024-07-24T15:06:43.010000"],["2024-07-24T15:06:44.010000"],["2024-07-24T15:06:45.010000"],["2024-07-24T15:06:46.010000"],["2024-07-24T15:06:47.010000"],["2024-07-24T15:06:48.010000"],["2024-07-24T15:06:49.010000"],["2024-07-24T15:06:50.010000"],["2024-07-24T15:06:51.010000"],["2024-07-24T15:06:52.010000"],["2024-07-24T15:06:53.010000"],["2024-07-24T15:06:54.010000"],["2024-07-24T15:06:55.010000"],["2024-07-24T15:06:56.010000"],["2024-07-24T15:06:57.010000"],["2024-07-24T15:06:58.010000"],["2024-07-24T15:06:59.010000"],["2024-07-24T15:07:00.010000"],["2024-07-24T15:07:01.010000"],["2024-07-24T15:07:02.010000"],["2024-07-24T15:07:03.010000"],["2024-07-24T15:07:04.010000"],["2024-07-24T15:07:05.010000"],["2024-07-24T15:07:06.010000"],["2024-07-24T15:07:07.010000"],["2024-07-24T15:07:08.010000"],["2024-07-24T15:07:09.010000"],["2024-07-24T15:07:10.010000"],["2024-07-24T15:07:11.010000"],["2024-07-24T15:07:12.010000"],["2024-07-24T15:07:13.010000"],["2024-07-24T15:07:14.010000"],["2024-07-24T15:07:15.010000"],["2024-07-24T15:07:16.010000"],["2024-07-24T15:07:17.010000"],["2024-07-24T15:07:18.010000"],["2024-07-24T15:07:19.010000"],["2024-07-24T15:07:20.010000"],["2024-07-24T15:07:21.010000"],["2024-07-24T15:07:22.010000"],["2024-07-24T15:07:23.010000"],["2024-07-24T15:07:24.010000"],["2024-07-24T15:07:25.010000"],["2024-07-24T15:07:26.010000"],["2024-07-24T15:07:27.010000"],["2024-07-24T15:07:28.010000"],["2024-07-24T15:07:29.010000"],["2024-07-24T15:07:30.010000"],["2024-07-24T15:07:31.010000"],["2024-07-24T15:07:32.010000"],["2024-07-24T15:07:33.010000"],["2024-07-24T15:07:34.010000"],["2024-07-24T15:07:35.010000"],["2024-07-24T15:07:36.010000"],["2024-07-24T15:07:37.010000"],["2024-07-24T15:07:38.010000"],["2024-07-24T15:07:39.010000"],["2024-07-24T15:07:40.010000"],["2024-07-24T15:07:41.010000"],["2024-07-24T15:07:42.010000"],["2024-07-24T15:07:43.010000"],["2024-07-24T15:07:44.010000"],["2024-07-24T15:07:45.010000"],["2024-07-24T15:07:46.010000"],["2024-07-24T15:07:47.010000"],["2024-07-24T15:07:48.010000"],["2024-07-24T15:07:49.010000"],["2024-07-24T15:07:50.010000"],["2024-07-24T15:07:51.010000"],["2024-07-24T15:07:52.010000"],["2024-07-24T15:07:53.010000"],["2024-07-24T15:07:54.010000"],["2024-07-24T15:07:55.010000"],["2024-07-24T15:07:56.010000"],["2024-07-24T15:07:57.010000"],["2024-07-24T15:07:58.010000"],["2024-07-24T15:07:59.010000"],["2024-07-24T15:08:00.010000"],["2024-07-24T15:08:01.010000"],["2024-07-24T15:08:02.010000"],["2024-07-24T15:08:03.010000"],["2024-07-24T15:08:04.010000"],["2024-07-24T15:08:05.010000"],["2024-07-24T15:08:06.010000"],["2024-07-24T15:08:07.010000"],["2024-07-24T15:08:08.010000"],["2024-07-24T15:08:09.010000"],["2024-07-24T15:08:10.010000"],["2024-07-24T15:08:11.010000"],["2024-07-24T15:08:12.010000"],["2024-07-24T15:08:13.010000"],["2024-07-24T15:08:14.010000"],["2024-07-24T15:08:15.010000"],["2024-07-24T15:08:16.010000"],["2024-07-24T15:08:17.010000"],["2024-07-24T15:08:18.010000"],["2024-07-24T15:08:19.010000"],["2024-07-24T15:08:20.010000"],["2024-07-24T15:08:21.010000"],["2024-07-24T15:08:22.010000"],["2024-07-24T15:08:23.010000"],["2024-07-24T15:08:24.010000"],["2024-07-24T15:08:25.010000"],["2024-07-24T15:08:26.010000"],["2024-07-24T15:08:27.010000"],["2024-07-24T15:08:28.010000"],["2024-07-24T15:08:29.010000"],["2024-07-24T15:08:30.010000"],["2024-07-24T15:08:31.010000"],["2024-07-24T15:08:32.010000"],["2024-07-24T15:08:33.010000"],["2024-07-24T15:08:34.010000"],["2024-07-24T15:08:35.010000"],["2024-07-24T15:08:36.010000"],["2024-07-24T15:08:37.010000"],["2024-07-24T15:08:38.010000"],["2024-07-24T15:08:39.010000"],["2024-07-24T15:08:40.010000"],["2024-07-24T15:08:41.010000"],["2024-07-24T15:08:42.010000"],["2024-07-24T15:08:43.010000"],["2024-07-24T15:08:44.010000"],["2024-07-24T15:08:45.010000"],["2024-07-24T15:08:46.010000"],["2024-07-24T15:08:47.010000"],["2024-07-24T15:08:48.010000"],["2024-07-24T15:08:49.010000"],["2024-07-24T15:08:50.010000"],["2024-07-24T15:08:51.010000"],["2024-07-24T15:08:52.010000"],["2024-07-24T15:08:53.010000"],["2024-07-24T15:08:54.010000"],["2024-07-24T15:08:55.010000"],["2024-07-24T15:08:56.010000"],["2024-07-24T15:08:57.010000"],["2024-07-24T15:08:58.010000"],["2024-07-24T15:08:59.010000"],["2024-07-24T15:09:00.010000"],["2024-07-24T15:09:01.010000"],["2024-07-24T15:09:02.010000"],["2024-07-24T15:09:03.010000"],["2024-07-24T15:09:04.010000"],["2024-07-24T15:09:05.010000"],["2024-07-24T15:09:06.010000"],["2024-07-24T15:09:07.010000"],["2024-07-24T15:09:08.010000"],["2024-07-24T15:09:09.010000"],["2024-07-24T15:09:10.010000"],["2024-07-24T15:09:11.010000"],["2024-07-24T15:09:12.010000"],["2024-07-24T15:09:13.010000"],["2024-07-24T15:09:14.010000"],["2024-07-24T15:09:15.010000"],["2024-07-24T15:09:16.010000"],["2024-07-24T15:09:17.010000"],["2024-07-24T15:09:18.010000"],["2024-07-24T15:09:19.010000"],["2024-07-24T15:09:20.010000"],["2024-07-24T15:09:21.010000"],["2024-07-24T15:09:22.010000"],["2024-07-24T15:09:23.010000"],["2024-07-24T15:09:24.010000"],["2024-07-24T15:09:25.010000"],["2024-07-24T15:09:26.010000"],["2024-07-24T15:09:27.010000"],["2024-07-24T15:09:28.010000"],["2024-07-24T15:09:29.010000"],["2024-07-24T15:09:30.010000"],["2024-07-24T15:09:31.010000"],["2024-07-24T15:09:32.010000"],["2024-07-24T15:09:33.010000"],["2024-07-24T15:09:34.010000"],["2024-07-24T15:09:35.010000"],["2024-07-24T15:09:36.010000"],["2024-07-24T15:09:37.010000"],["2024-07-24T15:09:38.010000"],["2024-07-24T15:09:39.010000"],["2024-07-24T15:09:40.010000"],["2024-07-24T15:09:41.010000"],["2024-07-24T15:09:42.010000"],["2024-07-24T15:09:43.010000"],["2024-07-24T15:09:44.010000"],["2024-07-24T15:09:45.010000"],["2024-07-24T15:09:46.010000"],["2024-07-24T15:09:47.010000"],["2024-07-24T15:09:48.010000"],["2024-07-24T15:09:49.010000"],["2024-07-24T15:09:50.010000"],["2024-07-24T15:09:51.010000"],["2024-07-24T15:09:52.010000"],["2024-07-24T15:09:53.010000"],["2024-07-24T15:09:54.010000"],["2024-07-24T15:09:55.010000"],["2024-07-24T15:09:56.010000"],["2024-07-24T15:09:57.010000"],["2024-07-24T15:09:58.010000"],["2024-07-24T15:09:59.010000"],["2024-07-24T15:10:00.010000"],["2024-07-24T15:10:01.010000"],["2024-07-24T15:10:02.010000"],["2024-07-24T15:10:03.010000"],["2024-07-24T15:10:04.010000"],["2024-07-24T15:10:05.010000"],["2024-07-24T15:10:06.010000"],["2024-07-24T15:10:07.010000"],["2024-07-24T15:10:08.010000"],["2024-07-24T15:10:09.010000"],["2024-07-24T15:10:10.010000"],["2024-07-24T15:10:11.010000"],["2024-07-24T15:10:12.010000"],["2024-07-24T15:10:13.010000"],["2024-07-24T15:10:14.010000"],["2024-07-24T15:10:15.010000"],["2024-07-24T15:10:16.010000"],["2024-07-24T15:10:17.010000"],["2024-07-24T15:10:18.010000"],["2024-07-24T15:10:19.010000"],["2024-07-24T15:10:20.010000"],["2024-07-24T15:10:21.010000"],["2024-07-24T15:10:22.010000"],["2024-07-24T15:10:23.010000"],["2024-07-24T15:10:24.010000"],["2024-07-24T15:10:25.010000"],["2024-07-24T15:10:26.010000"],["2024-07-24T15:10:27.010000"],["2024-07-24T15:10:28.010000"],["2024-07-24T15:10:29.010000"],["2024-07-24T15:10:30.010000"],["2024-07-24T15:10:31.010000"],["2024-07-24T15:10:32.010000"],["2024-07-24T15:10:33.010000"],["2024-07-24T15:10:34.010000"],["2024-07-24T15:10:35.010000"],["2024-07-24T15:10:36.010000"],["2024-07-24T15:10:37.010000"],["2024-07-24T15:10:38.010000"],["2024-07-24T15:10:39.010000"],["2024-07-24T15:10:40.010000"],["2024-07-24T15:10:41.010000"],["2024-07-24T15:10:42.010000"],["2024-07-24T15:10:43.010000"],["2024-07-24T15:10:44.010000"],["2024-07-24T15:10:45.010000"],["2024-07-24T15:10:46.010000"],["2024-07-24T15:10:47.010000"],["2024-07-24T15:10:48.010000"],["2024-07-24T15:10:49.010000"],["2024-07-24T15:10:50.010000"],["2024-07-24T15:10:51.010000"],["2024-07-24T15:10:52.010000"],["2024-07-24T15:10:53.010000"],["2024-07-24T15:10:54.010000"],["2024-07-24T15:10:55.010000"],["2024-07-24T15:10:56.010000"],["2024-07-24T15:10:57.010000"],["2024-07-24T15:10:58.010000"],["2024-07-24T15:10:59.010000"],["2024-07-24T15:11:00.010000"],["2024-07-24T15:11:01.010000"],["2024-07-24T15:11:02.010000"],["2024-07-24T15:11:03.010000"],["2024-07-24T15:11:04.010000"],["2024-07-24T15:11:05.010000"],["2024-07-24T15:11:06.010000"],["2024-07-24T15:11:07.010000"],["2024-07-24T15:11:08.010000"],["2024-07-24T15:11:09.010000"],["2024-07-24T15:11:10.010000"],["2024-07-24T15:11:11.010000"],["2024-07-24T15:11:12.010000"],["2024-07-24T15:11:13.010000"],["2024-07-24T15:11:14.010000"],["2024-07-24T15:11:15.010000"],["2024-07-24T15:11:16.010000"],["2024-07-24T15:11:17.010000"],["2024-07-24T15:11:18.010000"],["2024-07-24T15:11:19.010000"],["2024-07-24T15:11:20.010000"],["2024-07-24T15:11:21.010000"],["2024-07-24T15:11:22.010000"],["2024-07-24T15:11:23.010000"],["2024-07-24T15:11:24.010000"],["2024-07-24T15:11:25.010000"],["2024-07-24T15:11:26.010000"],["2024-07-24T15:11:27.010000"],["2024-07-24T15:11:28.010000"],["2024-07-24T15:11:29.010000"],["2024-07-24T15:11:30.010000"],["2024-07-24T15:11:31.010000"],["2024-07-24T15:11:32.010000"],["2024-07-24T15:11:33.010000"],["2024-07-24T15:11:34.010000"],["2024-07-24T15:11:35.010000"],["2024-07-24T15:11:36.010000"],["2024-07-24T15:11:37.010000"],["2024-07-24T15:11:38.010000"],["2024-07-24T15:11:39.010000"],["2024-07-24T15:11:40.010000"],["2024-07-24T15:11:41.010000"],["2024-07-24T15:11:42.010000"],["2024-07-24T15:11:43.010000"],["2024-07-24T15:11:44.010000"],["2024-07-24T15:11:45.010000"],["2024-07-24T15:11:46.010000"],["2024-07-24T15:11:47.010000"],["2024-07-24T15:11:48.010000"],["2024-07-24T15:11:49.010000"],["2024-07-24T15:11:50.010000"],["2024-07-24T15:11:51.010000"],["2024-07-24T15:11:52.010000"],["2024-07-24T15:11:53.010000"],["2024-07-24T15:11:54.010000"],["2024-07-24T15:11:55.010000"],["2024-07-24T15:11:56.010000"],["2024-07-24T15:11:57.010000"],["2024-07-24T15:11:58.010000"],["2024-07-24T15:11:59.010000"],["2024-07-24T15:12:00.010000"],["2024-07-24T15:12:01.010000"],["2024-07-24T15:12:02.010000"],["2024-07-24T15:12:03.010000"],["2024-07-24T15:12:04.010000"],["2024-07-24T15:12:05.010000"],["2024-07-24T15:12:06.010000"],["2024-07-24T15:12:07.010000"],["2024-07-24T15:12:08.010000"],["2024-07-24T15:12:09.010000"],["2024-07-24T15:12:10.010000"],["2024-07-24T15:12:11.010000"],["2024-07-24T15:12:12.010000"],["2024-07-24T15:12:13.010000"],["2024-07-24T15:12:14.010000"],["2024-07-24T15:12:15.010000"],["2024-07-24T15:12:16.010000"],["2024-07-24T15:12:17.010000"],["2024-07-24T15:12:18.010000"],["2024-07-24T15:12:19.010000"],["2024-07-24T15:12:20.010000"],["2024-07-24T15:12:21.010000"],["2024-07-24T15:12:22.010000"],["2024-07-24T15:12:23.010000"],["2024-07-24T15:12:24.010000"],["2024-07-24T15:12:25.010000"],["2024-07-24T15:12:26.010000"],["2024-07-24T15:12:27.010000"],["2024-07-24T15:12:28.010000"],["2024-07-24T15:12:29.010000"],["2024-07-24T15:12:30.010000"],["2024-07-24T15:12:31.010000"],["2024-07-24T15:12:32.010000"],["2024-07-24T15:12:33.010000"],["2024-07-24T15:12:34.010000"],["2024-07-24T15:12:35.010000"],["2024-07-24T15:12:36.010000"],["2024-07-24T15:12:37.010000"],["2024-07-24T15:12:38.010000"],["2024-07-24T15:12:39.010000"],["2024-07-24T15:12:40.010000"],["2024-07-24T15:12:41.010000"],["2024-07-24T15:12:42.010000"],["2024-07-24T15:12:43.010000"],["2024-07-24T15:12:44.010000"],["2024-07-24T15:12:45.010000"],["2024-07-24T15:12:46.010000"],["2024-07-24T15:12:47.010000"],["2024-07-24T15:12:48.010000"],["2024-07-24T15:12:49.010000"],["2024-07-24T15:12:50.010000"],["2024-07-24T15:12:51.010000"],["2024-07-24T15:12:52.010000"],["2024-07-24T15:12:53.010000"],["2024-07-24T15:12:54.010000"],["2024-07-24T15:12:55.010000"],["2024-07-24T15:12:56.010000"],["2024-07-24T15:12:57.010000"],["2024-07-24T15:12:58.010000"],["2024-07-24T15:12:59.010000"],["2024-07-24T15:13:00.010000"],["2024-07-24T15:13:01.010000"],["2024-07-24T15:13:02.010000"],["2024-07-24T15:13:03.010000"],["2024-07-24T15:13:04.010000"],["2024-07-24T15:13:05.010000"],["2024-07-24T15:13:06.010000"],["2024-07-24T15:13:07.010000"],["2024-07-24T15:13:08.010000"],["2024-07-24T15:13:09.010000"],["2024-07-24T15:13:10.010000"],["2024-07-24T15:13:11.010000"],["2024-07-24T15:13:12.010000"],["2024-07-24T15:13:13.010000"],["2024-07-24T15:13:14.010000"],["2024-07-24T15:13:15.010000"],["2024-07-24T15:13:16.010000"],["2024-07-24T15:13:17.010000"],["2024-07-24T15:13:18.010000"],["2024-07-24T15:13:19.010000"],["2024-07-24T15:13:20.010000"],["2024-07-24T15:13:21.010000"],["2024-07-24T15:13:22.010000"],["2024-07-24T15:13:23.010000"],["2024-07-24T15:13:24.010000"],["2024-07-24T15:13:25.010000"],["2024-07-24T15:13:26.010000"],["2024-07-24T15:13:27.010000"],["2024-07-24T15:13:28.010000"],["2024-07-24T15:13:29.010000"],["2024-07-24T15:13:30.010000"],["2024-07-24T15:13:31.010000"],["2024-07-24T15:13:32.010000"],["2024-07-24T15:13:33.010000"],["2024-07-24T15:13:34.010000"],["2024-07-24T15:13:35.010000"],["2024-07-24T15:13:36.010000"],["2024-07-24T15:13:37.010000"],["2024-07-24T15:13:38.010000"],["2024-07-24T15:13:39.010000"],["2024-07-24T15:13:40.010000"],["2024-07-24T15:13:41.010000"],["2024-07-24T15:13:42.010000"],["2024-07-24T15:13:43.010000"],["2024-07-24T15:13:44.010000"],["2024-07-24T15:13:45.010000"],["2024-07-24T15:13:46.010000"],["2024-07-24T15:13:47.010000"],["2024-07-24T15:13:48.010000"],["2024-07-24T15:13:49.010000"],["2024-07-24T15:13:50.010000"],["2024-07-24T15:13:51.010000"],["2024-07-24T15:13:52.010000"],["2024-07-24T15:13:53.010000"],["2024-07-24T15:13:54.010000"],["2024-07-24T15:13:55.010000"],["2024-07-24T15:13:56.010000"],["2024-07-24T15:13:57.010000"],["2024-07-24T15:13:58.010000"],["2024-07-24T15:13:59.010000"],["2024-07-24T15:14:00.010000"],["2024-07-24T15:14:01.010000"],["2024-07-24T15:14:02.010000"],["2024-07-24T15:14:03.010000"],["2024-07-24T15:14:04.010000"],["2024-07-24T15:14:05.010000"],["2024-07-24T15:14:06.010000"],["2024-07-24T15:14:07.010000"],["2024-07-24T15:14:08.010000"],["2024-07-24T15:14:09.010000"],["2024-07-24T15:14:10.010000"],["2024-07-24T15:14:11.010000"],["2024-07-24T15:14:12.010000"],["2024-07-24T15:14:13.010000"],["2024-07-24T15:14:14.010000"],["2024-07-24T15:14:15.010000"],["2024-07-24T15:14:16.010000"],["2024-07-24T15:14:17.010000"],["2024-07-24T15:14:18.010000"],["2024-07-24T15:14:19.010000"],["2024-07-24T15:14:20.010000"],["2024-07-24T15:14:21.010000"],["2024-07-24T15:14:22.010000"],["2024-07-24T15:14:23.010000"],["2024-07-24T15:14:24.010000"],["2024-07-24T15:14:25.010000"],["2024-07-24T15:14:26.010000"],["2024-07-24T15:14:27.010000"],["2024-07-24T15:14:28.010000"],["2024-07-24T15:14:29.010000"],["2024-07-24T15:14:30.010000"],["2024-07-24T15:14:31.010000"],["2024-07-24T15:14:32.010000"],["2024-07-24T15:14:33.010000"],["2024-07-24T15:14:34.010000"],["2024-07-24T15:14:35.010000"],["2024-07-24T15:14:36.010000"],["2024-07-24T15:14:37.010000"],["2024-07-24T15:14:38.010000"],["2024-07-24T15:14:39.010000"],["2024-07-24T15:14:40.010000"],["2024-07-24T15:14:41.010000"],["2024-07-24T15:14:42.010000"],["2024-07-24T15:14:43.010000"],["2024-07-24T15:14:44.010000"],["2024-07-24T15:14:45.010000"],["2024-07-24T15:14:46.010000"],["2024-07-24T15:14:47.010000"],["2024-07-24T15:14:48.010000"],["2024-07-24T15:14:49.010000"],["2024-07-24T15:14:50.010000"],["2024-07-24T15:14:51.010000"],["2024-07-24T15:14:52.010000"],["2024-07-24T15:14:53.010000"],["2024-07-24T15:14:54.010000"],["2024-07-24T15:14:55.010000"],["2024-07-24T15:14:56.010000"],["2024-07-24T15:14:57.010000"],["2024-07-24T15:14:58.010000"],["2024-07-24T15:14:59.010000"],["2024-07-24T15:15:00.010000"],["2024-07-24T15:15:01.010000"],["2024-07-24T15:15:02.010000"],["2024-07-24T15:15:03.010000"],["2024-07-24T15:15:04.010000"],["2024-07-24T15:15:05.010000"],["2024-07-24T15:15:06.010000"],["2024-07-24T15:15:07.010000"],["2024-07-24T15:15:08.010000"],["2024-07-24T15:15:09.010000"],["2024-07-24T15:15:10.010000"],["2024-07-24T15:15:11.010000"],["2024-07-24T15:15:12.010000"],["2024-07-24T15:15:13.010000"],["2024-07-24T15:15:14.010000"],["2024-07-24T15:15:15.010000"],["2024-07-24T15:15:16.010000"],["2024-07-24T15:15:17.010000"],["2024-07-24T15:15:18.010000"],["2024-07-24T15:15:19.010000"],["2024-07-24T15:15:20.010000"],["2024-07-24T15:15:21.010000"],["2024-07-24T15:15:22.010000"],["2024-07-24T15:15:23.010000"],["2024-07-24T15:15:24.010000"],["2024-07-24T15:15:25.010000"],["2024-07-24T15:15:26.010000"],["2024-07-24T15:15:27.010000"],["2024-07-24T15:15:28.010000"],["2024-07-24T15:15:29.010000"],["2024-07-24T15:15:30.010000"],["2024-07-24T15:15:31.010000"],["2024-07-24T15:15:32.010000"],["2024-07-24T15:15:33.010000"],["2024-07-24T15:15:34.010000"],["2024-07-24T15:15:35.010000"],["2024-07-24T15:15:36.010000"],["2024-07-24T15:15:37.010000"],["2024-07-24T15:15:38.010000"],["2024-07-24T15:15:39.010000"],["2024-07-24T15:15:40.010000"],["2024-07-24T15:15:41.010000"],["2024-07-24T15:15:42.010000"],["2024-07-24T15:15:43.010000"],["2024-07-24T15:15:44.010000"],["2024-07-24T15:15:45.010000"],["2024-07-24T15:15:46.010000"],["2024-07-24T15:15:47.010000"],["2024-07-24T15:15:48.010000"],["2024-07-24T15:15:49.010000"],["2024-07-24T15:15:50.010000"],["2024-07-24T15:15:51.010000"],["2024-07-24T15:15:52.010000"],["2024-07-24T15:15:53.010000"],["2024-07-24T15:15:54.010000"],["2024-07-24T15:15:55.010000"],["2024-07-24T15:15:56.010000"],["2024-07-24T15:15:57.010000"],["2024-07-24T15:15:58.010000"],["2024-07-24T15:15:59.010000"],["2024-07-24T15:16:00.010000"],["2024-07-24T15:16:01.010000"],["2024-07-24T15:16:02.010000"],["2024-07-24T15:16:03.010000"],["2024-07-24T15:16:04.010000"],["2024-07-24T15:16:05.010000"],["2024-07-24T15:16:06.010000"],["2024-07-24T15:16:07.010000"],["2024-07-24T15:16:08.010000"],["2024-07-24T15:16:09.010000"],["2024-07-24T15:16:10.010000"],["2024-07-24T15:16:11.010000"],["2024-07-24T15:16:12.010000"],["2024-07-24T15:16:13.010000"],["2024-07-24T15:16:14.010000"],["2024-07-24T15:16:15.010000"],["2024-07-24T15:16:16.010000"],["2024-07-24T15:16:17.010000"],["2024-07-24T15:16:18.010000"],["2024-07-24T15:16:19.010000"],["2024-07-24T15:16:20.010000"],["2024-07-24T15:16:21.010000"],["2024-07-24T15:16:22.010000"],["2024-07-24T15:16:23.010000"],["2024-07-24T15:16:24.010000"],["2024-07-24T15:16:25.010000"],["2024-07-24T15:16:26.010000"],["2024-07-24T15:16:27.010000"],["2024-07-24T15:16:28.010000"],["2024-07-24T15:16:29.010000"],["2024-07-24T15:16:30.010000"],["2024-07-24T15:16:31.010000"],["2024-07-24T15:16:32.010000"],["2024-07-24T15:16:33.010000"],["2024-07-24T15:16:34.010000"],["2024-07-24T15:16:35.010000"],["2024-07-24T15:16:36.010000"],["2024-07-24T15:16:37.010000"],["2024-07-24T15:16:38.010000"],["2024-07-24T15:16:39.010000"],["2024-07-24T15:16:40.010000"],["2024-07-24T15:16:41.010000"],["2024-07-24T15:16:42.010000"],["2024-07-24T15:16:43.010000"],["2024-07-24T15:16:44.010000"],["2024-07-24T15:16:45.010000"],["2024-07-24T15:16:46.010000"],["2024-07-24T15:16:47.010000"],["2024-07-24T15:16:48.010000"],["2024-07-24T15:16:49.010000"],["2024-07-24T15:16:50.010000"],["2024-07-24T15:16:51.010000"],["2024-07-24T15:16:52.010000"],["2024-07-24T15:16:53.010000"],["2024-07-24T15:16:54.010000"],["2024-07-24T15:16:55.010000"],["2024-07-24T15:16:56.010000"],["2024-07-24T15:16:57.010000"],["2024-07-24T15:16:58.010000"],["2024-07-24T15:16:59.010000"],["2024-07-24T15:17:00.010000"],["2024-07-24T15:17:01.010000"],["2024-07-24T15:17:02.010000"],["2024-07-24T15:17:03.010000"],["2024-07-24T15:17:04.010000"],["2024-07-24T15:17:05.010000"],["2024-07-24T15:17:06.010000"],["2024-07-24T15:17:07.010000"],["2024-07-24T15:17:08.010000"],["2024-07-24T15:17:09.010000"],["2024-07-24T15:17:10.010000"],["2024-07-24T15:17:11.010000"],["2024-07-24T15:17:12.010000"],["2024-07-24T15:17:13.010000"],["2024-07-24T15:17:14.010000"],["2024-07-24T15:17:15.010000"],["2024-07-24T15:17:16.010000"],["2024-07-24T15:17:17.010000"],["2024-07-24T15:17:18.010000"],["2024-07-24T15:17:19.010000"],["2024-07-24T15:17:20.010000"],["2024-07-24T15:17:21.010000"],["2024-07-24T15:17:22.010000"],["2024-07-24T15:17:23.010000"],["2024-07-24T15:17:24.010000"],["2024-07-24T15:17:25.010000"],["2024-07-24T15:17:26.010000"],["2024-07-24T15:17:27.010000"],["2024-07-24T15:17:28.010000"],["2024-07-24T15:17:29.010000"],["2024-07-24T15:17:30.010000"],["2024-07-24T15:17:31.010000"],["2024-07-24T15:17:32.010000"],["2024-07-24T15:17:33.010000"],["2024-07-24T15:17:34.010000"],["2024-07-24T15:17:35.010000"],["2024-07-24T15:17:36.010000"],["2024-07-24T15:17:37.010000"],["2024-07-24T15:17:38.010000"],["2024-07-24T15:17:39.010000"],["2024-07-24T15:17:40.010000"],["2024-07-24T15:17:41.010000"],["2024-07-24T15:17:42.010000"],["2024-07-24T15:17:43.010000"],["2024-07-24T15:17:44.010000"],["2024-07-24T15:17:45.010000"],["2024-07-24T15:17:46.010000"],["2024-07-24T15:17:47.010000"],["2024-07-24T15:17:48.010000"],["2024-07-24T15:17:49.010000"],["2024-07-24T15:17:50.010000"],["2024-07-24T15:17:51.010000"],["2024-07-24T15:17:52.010000"],["2024-07-24T15:17:53.010000"],["2024-07-24T15:17:54.010000"],["2024-07-24T15:17:55.010000"],["2024-07-24T15:17:56.010000"],["2024-07-24T15:17:57.010000"],["2024-07-24T15:17:58.010000"],["2024-07-24T15:17:59.010000"],["2024-07-24T15:18:00.010000"],["2024-07-24T15:18:01.010000"],["2024-07-24T15:18:02.010000"],["2024-07-24T15:18:03.010000"],["2024-07-24T15:18:04.010000"],["2024-07-24T15:18:05.010000"],["2024-07-24T15:18:06.010000"],["2024-07-24T15:18:07.010000"],["2024-07-24T15:18:08.010000"],["2024-07-24T15:18:09.010000"],["2024-07-24T15:18:10.010000"],["2024-07-24T15:18:11.010000"],["2024-07-24T15:18:12.010000"],["2024-07-24T15:18:13.010000"],["2024-07-24T15:18:14.010000"],["2024-07-24T15:18:15.010000"],["2024-07-24T15:18:16.010000"],["2024-07-24T15:18:17.010000"],["2024-07-24T15:18:18.010000"],["2024-07-24T15:18:19.010000"],["2024-07-24T15:18:20.010000"],["2024-07-24T15:18:21.010000"],["2024-07-24T15:18:22.010000"],["2024-07-24T15:18:23.010000"],["2024-07-24T15:18:24.010000"],["2024-07-24T15:18:25.010000"],["2024-07-24T15:18:26.010000"],["2024-07-24T15:18:27.010000"],["2024-07-24T15:18:28.010000"],["2024-07-24T15:18:29.010000"],["2024-07-24T15:18:30.010000"],["2024-07-24T15:18:31.010000"],["2024-07-24T15:18:32.010000"],["2024-07-24T15:18:33.010000"],["2024-07-24T15:18:34.010000"],["2024-07-24T15:18:35.010000"],["2024-07-24T15:18:36.010000"],["2024-07-24T15:18:37.010000"],["2024-07-24T15:18:38.010000"],["2024-07-24T15:18:39.010000"],["2024-07-24T15:18:40.010000"],["2024-07-24T15:18:41.010000"],["2024-07-24T15:18:42.010000"],["2024-07-24T15:18:43.010000"],["2024-07-24T15:18:44.010000"],["2024-07-24T15:18:45.010000"],["2024-07-24T15:18:46.010000"],["2024-07-24T15:18:47.010000"],["2024-07-24T15:18:48.010000"],["2024-07-24T15:18:49.010000"],["2024-07-24T15:18:50.010000"],["2024-07-24T15:18:51.010000"],["2024-07-24T15:18:52.010000"],["2024-07-24T15:18:53.010000"],["2024-07-24T15:18:54.010000"],["2024-07-24T15:18:55.010000"],["2024-07-24T15:18:56.010000"],["2024-07-24T15:18:57.010000"],["2024-07-24T15:18:58.010000"],["2024-07-24T15:18:59.010000"],["2024-07-24T15:19:00.010000"],["2024-07-24T15:19:01.010000"],["2024-07-24T15:19:02.010000"],["2024-07-24T15:19:03.010000"],["2024-07-24T15:19:04.010000"],["2024-07-24T15:19:05.010000"],["2024-07-24T15:19:06.010000"],["2024-07-24T15:19:07.010000"],["2024-07-24T15:19:08.010000"],["2024-07-24T15:19:09.010000"],["2024-07-24T15:19:10.010000"],["2024-07-24T15:19:11.010000"],["2024-07-24T15:19:12.010000"],["2024-07-24T15:19:13.010000"],["2024-07-24T15:19:14.010000"],["2024-07-24T15:19:15.010000"],["2024-07-24T15:19:16.010000"],["2024-07-24T15:19:17.010000"],["2024-07-24T15:19:18.010000"],["2024-07-24T15:19:19.010000"],["2024-07-24T15:19:20.010000"],["2024-07-24T15:19:21.010000"],["2024-07-24T15:19:22.010000"],["2024-07-24T15:19:23.010000"],["2024-07-24T15:19:24.010000"],["2024-07-24T15:19:25.010000"],["2024-07-24T15:19:26.010000"],["2024-07-24T15:19:27.010000"],["2024-07-24T15:19:28.010000"],["2024-07-24T15:19:29.010000"],["2024-07-24T15:19:30.010000"],["2024-07-24T15:19:31.010000"],["2024-07-24T15:19:32.010000"],["2024-07-24T15:19:33.010000"],["2024-07-24T15:19:34.010000"],["2024-07-24T15:19:35.010000"],["2024-07-24T15:19:36.010000"],["2024-07-24T15:19:37.010000"],["2024-07-24T15:19:38.010000"],["2024-07-24T15:19:39.010000"],["2024-07-24T15:19:40.010000"],["2024-07-24T15:19:41.010000"],["2024-07-24T15:19:42.010000"],["2024-07-24T15:19:43.010000"],["2024-07-24T15:19:44.010000"],["2024-07-24T15:19:45.010000"],["2024-07-24T15:19:46.010000"],["2024-07-24T15:19:47.010000"],["2024-07-24T15:19:48.010000"],["2024-07-24T15:19:49.010000"],["2024-07-24T15:19:50.010000"],["2024-07-24T15:19:51.010000"],["2024-07-24T15:19:52.010000"],["2024-07-24T15:19:53.010000"],["2024-07-24T15:19:54.010000"],["2024-07-24T15:19:55.010000"],["2024-07-24T15:19:56.010000"],["2024-07-24T15:19:57.010000"],["2024-07-24T15:19:58.010000"],["2024-07-24T15:19:59.010000"],["2024-07-24T15:20:00.010000"],["2024-07-24T15:20:01.010000"],["2024-07-24T15:20:02.010000"],["2024-07-24T15:20:03.010000"],["2024-07-24T15:20:04.010000"],["2024-07-24T15:20:05.010000"],["2024-07-24T15:20:06.010000"],["2024-07-24T15:20:07.010000"],["2024-07-24T15:20:08.010000"],["2024-07-24T15:20:09.010000"],["2024-07-24T15:20:10.010000"],["2024-07-24T15:20:11.010000"],["2024-07-24T15:20:12.010000"],["2024-07-24T15:20:13.010000"],["2024-07-24T15:20:14.010000"],["2024-07-24T15:20:15.010000"],["2024-07-24T15:20:16.010000"],["2024-07-24T15:20:17.010000"],["2024-07-24T15:20:18.010000"],["2024-07-24T15:20:19.010000"],["2024-07-24T15:20:20.010000"],["2024-07-24T15:20:21.010000"],["2024-07-24T15:20:22.010000"],["2024-07-24T15:20:23.010000"],["2024-07-24T15:20:24.010000"],["2024-07-24T15:20:25.010000"],["2024-07-24T15:20:26.010000"],["2024-07-24T15:20:27.010000"],["2024-07-24T15:20:28.010000"],["2024-07-24T15:20:29.010000"],["2024-07-24T15:20:30.010000"],["2024-07-24T15:20:31.010000"],["2024-07-24T15:20:32.010000"],["2024-07-24T15:20:33.010000"],["2024-07-24T15:20:34.010000"],["2024-07-24T15:20:35.010000"],["2024-07-24T15:20:36.010000"],["2024-07-24T15:20:37.010000"],["2024-07-24T15:20:38.010000"],["2024-07-24T15:20:39.010000"],["2024-07-24T15:20:40.010000"],["2024-07-24T15:20:41.010000"],["2024-07-24T15:20:42.010000"],["2024-07-24T15:20:43.010000"],["2024-07-24T15:20:44.010000"],["2024-07-24T15:20:45.010000"],["2024-07-24T15:20:46.010000"],["2024-07-24T15:20:47.010000"],["2024-07-24T15:20:48.010000"],["2024-07-24T15:20:49.010000"],["2024-07-24T15:20:50.010000"],["2024-07-24T15:20:51.010000"],["2024-07-24T15:20:52.010000"],["2024-07-24T15:20:53.010000"],["2024-07-24T15:20:54.010000"],["2024-07-24T15:20:55.010000"],["2024-07-24T15:20:56.010000"],["2024-07-24T15:20:57.010000"],["2024-07-24T15:20:58.010000"],["2024-07-24T15:20:59.010000"],["2024-07-24T15:21:00.010000"],["2024-07-24T15:21:01.010000"],["2024-07-24T15:21:02.010000"],["2024-07-24T15:21:03.010000"],["2024-07-24T15:21:04.010000"],["2024-07-24T15:21:05.010000"],["2024-07-24T15:21:06.010000"],["2024-07-24T15:21:07.010000"],["2024-07-24T15:21:08.010000"],["2024-07-24T15:21:09.010000"],["2024-07-24T15:21:10.010000"],["2024-07-24T15:21:11.010000"],["2024-07-24T15:21:12.010000"],["2024-07-24T15:21:13.010000"],["2024-07-24T15:21:14.010000"],["2024-07-24T15:21:15.010000"],["2024-07-24T15:21:16.010000"],["2024-07-24T15:21:17.010000"],["2024-07-24T15:21:18.010000"],["2024-07-24T15:21:19.010000"],["2024-07-24T15:21:20.010000"],["2024-07-24T15:21:21.010000"],["2024-07-24T15:21:22.010000"],["2024-07-24T15:21:23.010000"],["2024-07-24T15:21:24.010000"],["2024-07-24T15:21:25.010000"],["2024-07-24T15:21:26.010000"],["2024-07-24T15:21:27.010000"],["2024-07-24T15:21:28.010000"],["2024-07-24T15:21:29.010000"],["2024-07-24T15:21:30.010000"],["2024-07-24T15:21:31.010000"],["2024-07-24T15:21:32.010000"],["2024-07-24T15:21:33.010000"],["2024-07-24T15:21:34.010000"],["2024-07-24T15:21:35.010000"],["2024-07-24T15:21:36.010000"],["2024-07-24T15:21:37.010000"],["2024-07-24T15:21:38.010000"],["2024-07-24T15:21:39.010000"],["2024-07-24T15:21:40.010000"],["2024-07-24T15:21:41.010000"],["2024-07-24T15:21:42.010000"],["2024-07-24T15:21:43.010000"],["2024-07-24T15:21:44.010000"],["2024-07-24T15:21:45.010000"],["2024-07-24T15:21:46.010000"],["2024-07-24T15:21:47.010000"],["2024-07-24T15:21:48.010000"],["2024-07-24T15:21:49.010000"],["2024-07-24T15:21:50.010000"],["2024-07-24T15:21:51.010000"],["2024-07-24T15:21:52.010000"],["2024-07-24T15:21:53.010000"],["2024-07-24T15:21:54.010000"],["2024-07-24T15:21:55.010000"],["2024-07-24T15:21:56.010000"],["2024-07-24T15:21:57.010000"],["2024-07-24T15:21:58.010000"],["2024-07-24T15:21:59.010000"],["2024-07-24T15:22:00.010000"],["2024-07-24T15:22:01.010000"],["2024-07-24T15:22:02.010000"],["2024-07-24T15:22:03.010000"],["2024-07-24T15:22:04.010000"],["2024-07-24T15:22:05.010000"],["2024-07-24T15:22:06.010000"],["2024-07-24T15:22:07.010000"],["2024-07-24T15:22:08.010000"],["2024-07-24T15:22:09.010000"],["2024-07-24T15:22:10.010000"],["2024-07-24T15:22:11.010000"],["2024-07-24T15:22:12.010000"],["2024-07-24T15:22:13.010000"],["2024-07-24T15:22:14.010000"],["2024-07-24T15:22:15.010000"],["2024-07-24T15:22:16.010000"],["2024-07-24T15:22:17.010000"],["2024-07-24T15:22:18.010000"],["2024-07-24T15:22:19.010000"],["2024-07-24T15:22:20.010000"],["2024-07-24T15:22:21.010000"],["2024-07-24T15:22:22.010000"],["2024-07-24T15:22:23.010000"],["2024-07-24T15:22:24.010000"],["2024-07-24T15:22:25.010000"],["2024-07-24T15:22:26.010000"],["2024-07-24T15:22:27.010000"],["2024-07-24T15:22:28.010000"],["2024-07-24T15:22:29.010000"],["2024-07-24T15:22:30.010000"],["2024-07-24T15:22:31.010000"],["2024-07-24T15:22:32.010000"],["2024-07-24T15:22:33.010000"],["2024-07-24T15:22:34.010000"],["2024-07-24T15:22:35.010000"],["2024-07-24T15:22:36.010000"],["2024-07-24T15:22:37.010000"],["2024-07-24T15:22:38.010000"],["2024-07-24T15:22:39.010000"],["2024-07-24T15:22:40.010000"],["2024-07-24T15:22:41.010000"],["2024-07-24T15:22:42.010000"],["2024-07-24T15:22:43.010000"],["2024-07-24T15:22:44.010000"],["2024-07-24T15:22:45.010000"],["2024-07-24T15:22:46.010000"],["2024-07-24T15:22:47.010000"],["2024-07-24T15:22:48.010000"],["2024-07-24T15:22:49.010000"],["2024-07-24T15:22:50.010000"],["2024-07-24T15:22:51.010000"],["2024-07-24T15:22:52.010000"],["2024-07-24T15:22:53.010000"],["2024-07-24T15:22:54.010000"],["2024-07-24T15:22:55.010000"],["2024-07-24T15:22:56.010000"],["2024-07-24T15:22:57.010000"],["2024-07-24T15:22:58.010000"],["2024-07-24T15:22:59.010000"],["2024-07-24T15:23:00.010000"],["2024-07-24T15:23:01.010000"],["2024-07-24T15:23:02.010000"],["2024-07-24T15:23:03.010000"],["2024-07-24T15:23:04.010000"],["2024-07-24T15:23:05.010000"],["2024-07-24T15:23:06.010000"],["2024-07-24T15:23:07.010000"],["2024-07-24T15:23:08.010000"],["2024-07-24T15:23:09.010000"],["2024-07-24T15:23:10.010000"],["2024-07-24T15:23:11.010000"],["2024-07-24T15:23:12.010000"],["2024-07-24T15:23:13.010000"],["2024-07-24T15:23:14.010000"],["2024-07-24T15:23:15.010000"],["2024-07-24T15:23:16.010000"],["2024-07-24T15:23:17.010000"],["2024-07-24T15:23:18.010000"],["2024-07-24T15:23:19.010000"],["2024-07-24T15:23:20.010000"],["2024-07-24T15:23:21.010000"],["2024-07-24T15:23:22.010000"],["2024-07-24T15:23:23.010000"],["2024-07-24T15:23:24.010000"],["2024-07-24T15:23:25.010000"],["2024-07-24T15:23:26.010000"],["2024-07-24T15:23:27.010000"],["2024-07-24T15:23:28.010000"],["2024-07-24T15:23:29.010000"],["2024-07-24T15:23:30.010000"],["2024-07-24T15:23:31.010000"],["2024-07-24T15:23:32.010000"],["2024-07-24T15:23:33.010000"],["2024-07-24T15:23:34.010000"],["2024-07-24T15:23:35.010000"],["2024-07-24T15:23:36.010000"],["2024-07-24T15:23:37.010000"],["2024-07-24T15:23:38.010000"],["2024-07-24T15:23:39.010000"],["2024-07-24T15:23:40.010000"],["2024-07-24T15:23:41.010000"],["2024-07-24T15:23:42.010000"],["2024-07-24T15:23:43.010000"],["2024-07-24T15:23:44.010000"],["2024-07-24T15:23:45.010000"],["2024-07-24T15:23:46.010000"],["2024-07-24T15:23:47.010000"],["2024-07-24T15:23:48.010000"],["2024-07-24T15:23:49.010000"],["2024-07-24T15:23:50.010000"],["2024-07-24T15:23:51.010000"],["2024-07-24T15:23:52.010000"],["2024-07-24T15:23:53.010000"],["2024-07-24T15:23:54.010000"],["2024-07-24T15:23:55.010000"],["2024-07-24T15:23:56.010000"],["2024-07-24T15:23:57.010000"],["2024-07-24T15:23:58.010000"],["2024-07-24T15:23:59.010000"],["2024-07-24T15:24:00.010000"],["2024-07-24T15:24:01.010000"],["2024-07-24T15:24:02.010000"],["2024-07-24T15:24:03.010000"],["2024-07-24T15:24:04.010000"],["2024-07-24T15:24:05.010000"],["2024-07-24T15:24:06.010000"],["2024-07-24T15:24:07.010000"],["2024-07-24T15:24:08.010000"],["2024-07-24T15:24:09.010000"],["2024-07-24T15:24:10.010000"],["2024-07-24T15:24:11.010000"],["2024-07-24T15:24:12.010000"],["2024-07-24T15:24:13.010000"],["2024-07-24T15:24:14.010000"],["2024-07-24T15:24:15.010000"],["2024-07-24T15:24:16.010000"],["2024-07-24T15:24:17.010000"],["2024-07-24T15:24:18.010000"],["2024-07-24T15:24:19.010000"],["2024-07-24T15:24:20.010000"],["2024-07-24T15:24:21.010000"],["2024-07-24T15:24:22.010000"],["2024-07-24T15:24:23.010000"],["2024-07-24T15:24:24.010000"],["2024-07-24T15:24:25.010000"],["2024-07-24T15:24:26.010000"],["2024-07-24T15:24:27.010000"],["2024-07-24T15:24:28.010000"],["2024-07-24T15:24:29.010000"],["2024-07-24T15:24:30.010000"],["2024-07-24T15:24:31.010000"],["2024-07-24T15:24:32.010000"],["2024-07-24T15:24:33.010000"],["2024-07-24T15:24:34.010000"],["2024-07-24T15:24:35.010000"],["2024-07-24T15:24:36.010000"],["2024-07-24T15:24:37.010000"],["2024-07-24T15:24:38.010000"],["2024-07-24T15:24:39.010000"],["2024-07-24T15:24:40.010000"],["2024-07-24T15:24:41.010000"],["2024-07-24T15:24:42.010000"],["2024-07-24T15:24:43.010000"],["2024-07-24T15:24:44.010000"],["2024-07-24T15:24:45.010000"],["2024-07-24T15:24:46.010000"],["2024-07-24T15:24:47.010000"],["2024-07-24T15:24:48.010000"],["2024-07-24T15:24:49.010000"],["2024-07-24T15:24:50.010000"],["2024-07-24T15:24:51.010000"],["2024-07-24T15:24:52.010000"],["2024-07-24T15:24:53.010000"],["2024-07-24T15:24:54.010000"],["2024-07-24T15:24:55.010000"],["2024-07-24T15:24:56.010000"],["2024-07-24T15:24:57.010000"],["2024-07-24T15:24:58.010000"],["2024-07-24T15:24:59.010000"],["2024-07-24T15:25:00.010000"],["2024-07-24T15:25:01.010000"],["2024-07-24T15:25:02.010000"],["2024-07-24T15:25:03.010000"],["2024-07-24T15:25:04.010000"],["2024-07-24T15:25:05.010000"],["2024-07-24T15:25:06.010000"],["2024-07-24T15:25:07.010000"],["2024-07-24T15:25:08.010000"],["2024-07-24T15:25:09.010000"],["2024-07-24T15:25:10.010000"],["2024-07-24T15:25:11.010000"],["2024-07-24T15:25:12.010000"],["2024-07-24T15:25:13.010000"],["2024-07-24T15:25:14.010000"],["2024-07-24T15:25:15.010000"],["2024-07-24T15:25:16.010000"],["2024-07-24T15:25:17.010000"],["2024-07-24T15:25:18.010000"],["2024-07-24T15:25:19.010000"],["2024-07-24T15:25:20.010000"],["2024-07-24T15:25:21.010000"],["2024-07-24T15:25:22.010000"],["2024-07-24T15:25:23.010000"],["2024-07-24T15:25:24.010000"],["2024-07-24T15:25:25.010000"],["2024-07-24T15:25:26.010000"],["2024-07-24T15:25:27.010000"],["2024-07-24T15:25:28.010000"],["2024-07-24T15:25:29.010000"],["2024-07-24T15:25:30.010000"],["2024-07-24T15:25:31.010000"],["2024-07-24T15:25:32.010000"],["2024-07-24T15:25:33.010000"],["2024-07-24T15:25:34.010000"],["2024-07-24T15:25:35.010000"],["2024-07-24T15:25:36.010000"],["2024-07-24T15:25:37.010000"],["2024-07-24T15:25:38.010000"],["2024-07-24T15:25:39.010000"],["2024-07-24T15:25:40.010000"],["2024-07-24T15:25:41.010000"],["2024-07-24T15:25:42.010000"],["2024-07-24T15:25:43.010000"],["2024-07-24T15:25:44.010000"],["2024-07-24T15:25:45.010000"],["2024-07-24T15:25:46.010000"],["2024-07-24T15:25:47.010000"],["2024-07-24T15:25:48.010000"],["2024-07-24T15:25:49.010000"],["2024-07-24T15:25:50.010000"],["2024-07-24T15:25:51.010000"],["2024-07-24T15:25:52.010000"],["2024-07-24T15:25:53.010000"],["2024-07-24T15:25:54.010000"],["2024-07-24T15:25:55.010000"],["2024-07-24T15:25:56.010000"],["2024-07-24T15:25:57.010000"],["2024-07-24T15:25:58.010000"],["2024-07-24T15:25:59.010000"],["2024-07-24T15:26:00.010000"],["2024-07-24T15:26:01.010000"],["2024-07-24T15:26:02.010000"],["2024-07-24T15:26:03.010000"],["2024-07-24T15:26:04.010000"],["2024-07-24T15:26:05.010000"],["2024-07-24T15:26:06.010000"],["2024-07-24T15:26:07.010000"],["2024-07-24T15:26:08.010000"],["2024-07-24T15:26:09.010000"],["2024-07-24T15:26:10.010000"],["2024-07-24T15:26:11.010000"],["2024-07-24T15:26:12.010000"],["2024-07-24T15:26:13.010000"],["2024-07-24T15:26:14.010000"],["2024-07-24T15:26:15.010000"],["2024-07-24T15:26:16.010000"],["2024-07-24T15:26:17.010000"],["2024-07-24T15:26:18.010000"],["2024-07-24T15:26:19.010000"],["2024-07-24T15:26:20.010000"],["2024-07-24T15:26:21.010000"],["2024-07-24T15:26:22.010000"],["2024-07-24T15:26:23.010000"],["2024-07-24T15:26:24.010000"],["2024-07-24T15:26:25.010000"],["2024-07-24T15:26:26.010000"],["2024-07-24T15:26:27.010000"],["2024-07-24T15:26:28.010000"],["2024-07-24T15:26:29.010000"],["2024-07-24T15:26:30.010000"],["2024-07-24T15:26:31.010000"],["2024-07-24T15:26:32.010000"],["2024-07-24T15:26:33.010000"],["2024-07-24T15:26:34.010000"],["2024-07-24T15:26:35.010000"],["2024-07-24T15:26:36.010000"],["2024-07-24T15:26:37.010000"],["2024-07-24T15:26:38.010000"],["2024-07-24T15:26:39.010000"],["2024-07-24T15:26:40.010000"],["2024-07-24T15:26:41.010000"],["2024-07-24T15:26:42.010000"],["2024-07-24T15:26:43.010000"],["2024-07-24T15:26:44.010000"],["2024-07-24T15:26:45.010000"],["2024-07-24T15:26:46.010000"],["2024-07-24T15:26:47.010000"],["2024-07-24T15:26:48.010000"],["2024-07-24T15:26:49.010000"],["2024-07-24T15:26:50.010000"],["2024-07-24T15:26:51.010000"],["2024-07-24T15:26:52.010000"],["2024-07-24T15:26:53.010000"],["2024-07-24T15:26:54.010000"],["2024-07-24T15:26:55.010000"],["2024-07-24T15:26:56.010000"],["2024-07-24T15:26:57.010000"],["2024-07-24T15:26:58.010000"],["2024-07-24T15:26:59.010000"],["2024-07-24T15:27:00.010000"],["2024-07-24T15:27:01.010000"],["2024-07-24T15:27:02.010000"],["2024-07-24T15:27:03.010000"],["2024-07-24T15:27:04.010000"],["2024-07-24T15:27:05.010000"],["2024-07-24T15:27:06.010000"],["2024-07-24T15:27:07.010000"],["2024-07-24T15:27:08.010000"],["2024-07-24T15:27:09.010000"],["2024-07-24T15:27:10.010000"],["2024-07-24T15:27:11.010000"],["2024-07-24T15:27:12.010000"],["2024-07-24T15:27:13.010000"],["2024-07-24T15:27:14.010000"],["2024-07-24T15:27:15.010000"],["2024-07-24T15:27:16.010000"],["2024-07-24T15:27:17.010000"],["2024-07-24T15:27:18.010000"],["2024-07-24T15:27:19.010000"],["2024-07-24T15:27:20.010000"],["2024-07-24T15:27:21.010000"],["2024-07-24T15:27:22.010000"],["2024-07-24T15:27:23.010000"],["2024-07-24T15:27:24.010000"],["2024-07-24T15:27:25.010000"],["2024-07-24T15:27:26.010000"],["2024-07-24T15:27:27.010000"],["2024-07-24T15:27:28.010000"],["2024-07-24T15:27:29.010000"],["2024-07-24T15:27:30.010000"],["2024-07-24T15:27:31.010000"],["2024-07-24T15:27:32.010000"],["2024-07-24T15:27:33.010000"],["2024-07-24T15:27:34.010000"],["2024-07-24T15:27:35.010000"],["2024-07-24T15:27:36.010000"],["2024-07-24T15:27:37.010000"],["2024-07-24T15:27:38.010000"],["2024-07-24T15:27:39.010000"],["2024-07-24T15:27:40.010000"],["2024-07-24T15:27:41.010000"],["2024-07-24T15:27:42.010000"],["2024-07-24T15:27:43.010000"],["2024-07-24T15:27:44.010000"],["2024-07-24T15:27:45.010000"],["2024-07-24T15:27:46.010000"],["2024-07-24T15:27:47.010000"],["2024-07-24T15:27:48.010000"],["2024-07-24T15:27:49.010000"],["2024-07-24T15:27:50.010000"],["2024-07-24T15:27:51.010000"],["2024-07-24T15:27:52.010000"],["2024-07-24T15:27:53.010000"],["2024-07-24T15:27:54.010000"],["2024-07-24T15:27:55.010000"],["2024-07-24T15:27:56.010000"],["2024-07-24T15:27:57.010000"],["2024-07-24T15:27:58.010000"],["2024-07-24T15:27:59.010000"],["2024-07-24T15:28:00.010000"],["2024-07-24T15:28:01.010000"],["2024-07-24T15:28:02.010000"],["2024-07-24T15:28:03.010000"],["2024-07-24T15:28:04.010000"],["2024-07-24T15:28:05.010000"],["2024-07-24T15:28:06.010000"],["2024-07-24T15:28:07.010000"],["2024-07-24T15:28:08.010000"],["2024-07-24T15:28:09.010000"],["2024-07-24T15:28:10.010000"],["2024-07-24T15:28:11.010000"],["2024-07-24T15:28:12.010000"],["2024-07-24T15:28:13.010000"],["2024-07-24T15:28:14.010000"],["2024-07-24T15:28:15.010000"],["2024-07-24T15:28:16.010000"],["2024-07-24T15:28:17.010000"],["2024-07-24T15:28:18.010000"],["2024-07-24T15:28:19.010000"],["2024-07-24T15:28:20.010000"],["2024-07-24T15:28:21.010000"],["2024-07-24T15:28:22.010000"],["2024-07-24T15:28:23.010000"],["2024-07-24T15:28:24.010000"],["2024-07-24T15:28:25.010000"],["2024-07-24T15:28:26.010000"],["2024-07-24T15:28:27.010000"],["2024-07-24T15:28:28.010000"],["2024-07-24T15:28:29.010000"],["2024-07-24T15:28:30.010000"],["2024-07-24T15:28:31.010000"],["2024-07-24T15:28:32.010000"],["2024-07-24T15:28:33.010000"],["2024-07-24T15:28:34.010000"],["2024-07-24T15:28:35.010000"],["2024-07-24T15:28:36.010000"],["2024-07-24T15:28:37.010000"],["2024-07-24T15:28:38.010000"],["2024-07-24T15:28:39.010000"],["2024-07-24T15:28:40.010000"],["2024-07-24T15:28:41.010000"],["2024-07-24T15:28:42.010000"],["2024-07-24T15:28:43.010000"],["2024-07-24T15:28:44.010000"],["2024-07-24T15:28:45.010000"],["2024-07-24T15:28:46.010000"],["2024-07-24T15:28:47.010000"],["2024-07-24T15:28:48.010000"],["2024-07-24T15:28:49.010000"],["2024-07-24T15:28:50.010000"],["2024-07-24T15:28:51.010000"],["2024-07-24T15:28:52.010000"],["2024-07-24T15:28:53.010000"],["2024-07-24T15:28:54.010000"],["2024-07-24T15:28:55.010000"],["2024-07-24T15:28:56.010000"],["2024-07-24T15:28:57.010000"],["2024-07-24T15:28:58.010000"],["2024-07-24T15:28:59.010000"],["2024-07-24T15:29:00.010000"],["2024-07-24T15:29:01.010000"],["2024-07-24T15:29:02.010000"],["2024-07-24T15:29:03.010000"],["2024-07-24T15:29:04.010000"],["2024-07-24T15:29:05.010000"],["2024-07-24T15:29:06.010000"],["2024-07-24T15:29:07.010000"],["2024-07-24T15:29:08.010000"],["2024-07-24T15:29:09.010000"],["2024-07-24T15:29:10.010000"],["2024-07-24T15:29:11.010000"],["2024-07-24T15:29:12.010000"],["2024-07-24T15:29:13.010000"],["2024-07-24T15:29:14.010000"],["2024-07-24T15:29:15.010000"],["2024-07-24T15:29:16.010000"],["2024-07-24T15:29:17.010000"],["2024-07-24T15:29:18.010000"],["2024-07-24T15:29:19.010000"],["2024-07-24T15:29:20.010000"],["2024-07-24T15:29:21.010000"],["2024-07-24T15:29:22.010000"],["2024-07-24T15:29:23.010000"],["2024-07-24T15:29:24.010000"],["2024-07-24T15:29:25.010000"],["2024-07-24T15:29:26.010000"],["2024-07-24T15:29:27.010000"],["2024-07-24T15:29:28.010000"],["2024-07-24T15:29:29.010000"],["2024-07-24T15:29:30.010000"],["2024-07-24T15:29:31.010000"],["2024-07-24T15:29:32.010000"],["2024-07-24T15:29:33.010000"],["2024-07-24T15:29:34.010000"],["2024-07-24T15:29:35.010000"],["2024-07-24T15:29:36.010000"],["2024-07-24T15:29:37.010000"],["2024-07-24T15:29:38.010000"],["2024-07-24T15:29:39.010000"],["2024-07-24T15:29:40.010000"],["2024-07-24T15:29:41.010000"],["2024-07-24T15:29:42.010000"],["2024-07-24T15:29:43.010000"],["2024-07-24T15:29:44.010000"],["2024-07-24T15:29:45.010000"],["2024-07-24T15:29:46.010000"],["2024-07-24T15:29:47.010000"],["2024-07-24T15:29:48.010000"],["2024-07-24T15:29:49.010000"],["2024-07-24T15:29:50.010000"],["2024-07-24T15:29:51.010000"],["2024-07-24T15:29:52.010000"],["2024-07-24T15:29:53.010000"],["2024-07-24T15:29:54.010000"],["2024-07-24T15:29:55.010000"],["2024-07-24T15:29:56.010000"],["2024-07-24T15:29:57.010000"],["2024-07-24T15:29:58.010000"],["2024-07-24T15:29:59.010000"],["2024-07-24T15:30:00.010000"],["2024-07-24T15:30:01.010000"],["2024-07-24T15:30:02.010000"],["2024-07-24T15:30:03.010000"],["2024-07-24T15:30:04.010000"],["2024-07-24T15:30:05.010000"],["2024-07-24T15:30:06.010000"],["2024-07-24T15:30:07.010000"],["2024-07-24T15:30:08.010000"],["2024-07-24T15:30:09.010000"],["2024-07-24T15:30:10.010000"],["2024-07-24T15:30:11.010000"],["2024-07-24T15:30:12.010000"],["2024-07-24T15:30:13.010000"],["2024-07-24T15:30:14.010000"],["2024-07-24T15:30:15.010000"],["2024-07-24T15:30:16.010000"],["2024-07-24T15:30:17.010000"],["2024-07-24T15:30:18.010000"],["2024-07-24T15:30:19.010000"],["2024-07-24T15:30:20.010000"],["2024-07-24T15:30:21.010000"],["2024-07-24T15:30:22.010000"],["2024-07-24T15:30:23.010000"],["2024-07-24T15:30:24.010000"],["2024-07-24T15:30:25.010000"],["2024-07-24T15:30:26.010000"],["2024-07-24T15:30:27.010000"],["2024-07-24T15:30:28.010000"],["2024-07-24T15:30:29.010000"],["2024-07-24T15:30:30.010000"],["2024-07-24T15:30:31.010000"],["2024-07-24T15:30:32.010000"],["2024-07-24T15:30:33.010000"],["2024-07-24T15:30:34.010000"],["2024-07-24T15:30:35.010000"],["2024-07-24T15:30:36.010000"],["2024-07-24T15:30:37.010000"],["2024-07-24T15:30:38.010000"],["2024-07-24T15:30:39.010000"],["2024-07-24T15:30:40.010000"],["2024-07-24T15:30:41.010000"],["2024-07-24T15:30:42.010000"],["2024-07-24T15:30:43.010000"],["2024-07-24T15:30:44.010000"],["2024-07-24T15:30:45.010000"],["2024-07-24T15:30:46.010000"],["2024-07-24T15:30:47.010000"],["2024-07-24T15:30:48.010000"],["2024-07-24T15:30:49.010000"],["2024-07-24T15:30:50.010000"],["2024-07-24T15:30:51.010000"],["2024-07-24T15:30:52.010000"],["2024-07-24T15:30:53.010000"],["2024-07-24T15:30:54.010000"],["2024-07-24T15:30:55.010000"],["2024-07-24T15:30:56.010000"],["2024-07-24T15:30:57.010000"],["2024-07-24T15:30:58.010000"],["2024-07-24T15:30:59.010000"],["2024-07-24T15:31:00.010000"],["2024-07-24T15:31:01.010000"],["2024-07-24T15:31:02.010000"],["2024-07-24T15:31:03.010000"],["2024-07-24T15:31:04.010000"],["2024-07-24T15:31:05.010000"],["2024-07-24T15:31:06.010000"],["2024-07-24T15:31:07.010000"],["2024-07-24T15:31:08.010000"],["2024-07-24T15:31:09.010000"],["2024-07-24T15:31:10.010000"],["2024-07-24T15:31:11.010000"],["2024-07-24T15:31:12.010000"],["2024-07-24T15:31:13.010000"],["2024-07-24T15:31:14.010000"],["2024-07-24T15:31:15.010000"],["2024-07-24T15:31:16.010000"],["2024-07-24T15:31:17.010000"],["2024-07-24T15:31:18.010000"],["2024-07-24T15:31:19.010000"],["2024-07-24T15:31:20.010000"],["2024-07-24T15:31:21.010000"],["2024-07-24T15:31:22.010000"],["2024-07-24T15:31:23.010000"],["2024-07-24T15:31:24.010000"],["2024-07-24T15:31:25.010000"],["2024-07-24T15:31:26.010000"],["2024-07-24T15:31:27.010000"],["2024-07-24T15:31:28.010000"],["2024-07-24T15:31:29.010000"],["2024-07-24T15:31:30.010000"],["2024-07-24T15:31:31.010000"],["2024-07-24T15:31:32.010000"],["2024-07-24T15:31:33.010000"],["2024-07-24T15:31:34.010000"],["2024-07-24T15:31:35.010000"],["2024-07-24T15:31:36.010000"],["2024-07-24T15:31:37.010000"],["2024-07-24T15:31:38.010000"],["2024-07-24T15:31:39.010000"],["2024-07-24T15:31:40.010000"],["2024-07-24T15:31:41.010000"],["2024-07-24T15:31:42.010000"],["2024-07-24T15:31:43.010000"],["2024-07-24T15:31:44.010000"],["2024-07-24T15:31:45.010000"],["2024-07-24T15:31:46.010000"],["2024-07-24T15:31:47.010000"],["2024-07-24T15:31:48.010000"],["2024-07-24T15:31:49.010000"],["2024-07-24T15:31:50.010000"],["2024-07-24T15:31:51.010000"],["2024-07-24T15:31:52.010000"],["2024-07-24T15:31:53.010000"],["2024-07-24T15:31:54.010000"],["2024-07-24T15:31:55.010000"],["2024-07-24T15:31:56.010000"],["2024-07-24T15:31:57.010000"],["2024-07-24T15:31:58.010000"],["2024-07-24T15:31:59.010000"],["2024-07-24T15:32:00.010000"],["2024-07-24T15:32:01.010000"],["2024-07-24T15:32:02.010000"],["2024-07-24T15:32:03.010000"],["2024-07-24T15:32:04.010000"],["2024-07-24T15:32:05.010000"],["2024-07-24T15:32:06.010000"],["2024-07-24T15:32:07.010000"],["2024-07-24T15:32:08.010000"],["2024-07-24T15:32:09.010000"],["2024-07-24T15:32:10.010000"],["2024-07-24T15:32:11.010000"],["2024-07-24T15:32:12.010000"],["2024-07-24T15:32:13.010000"],["2024-07-24T15:32:14.010000"],["2024-07-24T15:32:15.010000"],["2024-07-24T15:32:16.010000"],["2024-07-24T15:32:17.010000"],["2024-07-24T15:32:18.010000"],["2024-07-24T15:32:19.010000"],["2024-07-24T15:32:20.010000"],["2024-07-24T15:32:21.010000"],["2024-07-24T15:32:22.010000"],["2024-07-24T15:32:23.010000"],["2024-07-24T15:32:24.010000"],["2024-07-24T15:32:25.010000"],["2024-07-24T15:32:26.010000"],["2024-07-24T15:32:27.010000"],["2024-07-24T15:32:28.010000"],["2024-07-24T15:32:29.010000"],["2024-07-24T15:32:30.010000"],["2024-07-24T15:32:31.010000"],["2024-07-24T15:32:32.010000"],["2024-07-24T15:32:33.010000"],["2024-07-24T15:32:34.010000"],["2024-07-24T15:32:35.010000"],["2024-07-24T15:32:36.010000"],["2024-07-24T15:32:37.010000"],["2024-07-24T15:32:38.010000"],["2024-07-24T15:32:39.010000"],["2024-07-24T15:32:40.010000"],["2024-07-24T15:32:41.010000"],["2024-07-24T15:32:42.010000"],["2024-07-24T15:32:43.010000"],["2024-07-24T15:32:44.010000"],["2024-07-24T15:32:45.010000"],["2024-07-24T15:32:46.010000"],["2024-07-24T15:32:47.010000"],["2024-07-24T15:32:48.010000"],["2024-07-24T15:32:49.010000"],["2024-07-24T15:32:50.010000"],["2024-07-24T15:32:51.010000"],["2024-07-24T15:32:52.010000"],["2024-07-24T15:32:53.010000"],["2024-07-24T15:32:54.010000"],["2024-07-24T15:32:55.010000"],["2024-07-24T15:32:56.010000"],["2024-07-24T15:32:57.010000"],["2024-07-24T15:32:58.010000"],["2024-07-24T15:32:59.010000"],["2024-07-24T15:33:00.010000"],["2024-07-24T15:33:01.010000"],["2024-07-24T15:33:02.010000"],["2024-07-24T15:33:03.010000"],["2024-07-24T15:33:04.010000"],["2024-07-24T15:33:05.010000"],["2024-07-24T15:33:06.010000"],["2024-07-24T15:33:07.010000"],["2024-07-24T15:33:08.010000"],["2024-07-24T15:33:09.010000"],["2024-07-24T15:33:10.010000"],["2024-07-24T15:33:11.010000"],["2024-07-24T15:33:12.010000"],["2024-07-24T15:33:13.010000"],["2024-07-24T15:33:14.010000"],["2024-07-24T15:33:15.010000"],["2024-07-24T15:33:16.010000"],["2024-07-24T15:33:17.010000"],["2024-07-24T15:33:18.010000"],["2024-07-24T15:33:19.010000"],["2024-07-24T15:33:20.010000"],["2024-07-24T15:33:21.010000"],["2024-07-24T15:33:22.010000"],["2024-07-24T15:33:23.010000"],["2024-07-24T15:33:24.010000"],["2024-07-24T15:33:25.010000"],["2024-07-24T15:33:26.010000"],["2024-07-24T15:33:27.010000"],["2024-07-24T15:33:28.010000"],["2024-07-24T15:33:29.010000"],["2024-07-24T15:33:30.010000"],["2024-07-24T15:33:31.010000"],["2024-07-24T15:33:32.010000"],["2024-07-24T15:33:33.010000"],["2024-07-24T15:33:34.010000"],["2024-07-24T15:33:35.010000"],["2024-07-24T15:33:36.010000"],["2024-07-24T15:33:37.010000"],["2024-07-24T15:33:38.010000"],["2024-07-24T15:33:39.010000"],["2024-07-24T15:33:40.010000"],["2024-07-24T15:33:41.010000"],["2024-07-24T15:33:42.010000"],["2024-07-24T15:33:43.010000"],["2024-07-24T15:33:44.010000"],["2024-07-24T15:33:45.010000"],["2024-07-24T15:33:46.010000"],["2024-07-24T15:33:47.010000"],["2024-07-24T15:33:48.010000"],["2024-07-24T15:33:49.010000"],["2024-07-24T15:33:50.010000"],["2024-07-24T15:33:51.010000"],["2024-07-24T15:33:52.010000"],["2024-07-24T15:33:53.010000"],["2024-07-24T15:33:54.010000"],["2024-07-24T15:33:55.010000"],["2024-07-24T15:33:56.010000"],["2024-07-24T15:33:57.010000"],["2024-07-24T15:33:58.010000"],["2024-07-24T15:33:59.010000"],["2024-07-24T15:34:00.010000"],["2024-07-24T15:34:01.010000"],["2024-07-24T15:34:02.010000"],["2024-07-24T15:34:03.010000"],["2024-07-24T15:34:04.010000"],["2024-07-24T15:34:05.010000"],["2024-07-24T15:34:06.010000"],["2024-07-24T15:34:07.010000"],["2024-07-24T15:34:08.010000"],["2024-07-24T15:34:09.010000"],["2024-07-24T15:34:10.010000"],["2024-07-24T15:34:11.010000"],["2024-07-24T15:34:12.010000"],["2024-07-24T15:34:13.010000"],["2024-07-24T15:34:14.010000"],["2024-07-24T15:34:15.010000"],["2024-07-24T15:34:16.010000"],["2024-07-24T15:34:17.010000"],["2024-07-24T15:34:18.010000"],["2024-07-24T15:34:19.010000"],["2024-07-24T15:34:20.010000"],["2024-07-24T15:34:21.010000"],["2024-07-24T15:34:22.010000"],["2024-07-24T15:34:23.010000"],["2024-07-24T15:34:24.010000"],["2024-07-24T15:34:25.010000"],["2024-07-24T15:34:26.010000"],["2024-07-24T15:34:27.010000"],["2024-07-24T15:34:28.010000"],["2024-07-24T15:34:29.010000"],["2024-07-24T15:34:30.010000"],["2024-07-24T15:34:31.010000"],["2024-07-24T15:34:32.010000"],["2024-07-24T15:34:33.010000"],["2024-07-24T15:34:34.010000"],["2024-07-24T15:34:35.010000"],["2024-07-24T15:34:36.010000"],["2024-07-24T15:34:37.010000"],["2024-07-24T15:34:38.010000"],["2024-07-24T15:34:39.010000"],["2024-07-24T15:34:40.010000"],["2024-07-24T15:34:41.010000"],["2024-07-24T15:34:42.010000"],["2024-07-24T15:34:43.010000"],["2024-07-24T15:34:44.010000"],["2024-07-24T15:34:45.010000"],["2024-07-24T15:34:46.010000"],["2024-07-24T15:34:47.010000"],["2024-07-24T15:34:48.010000"],["2024-07-24T15:34:49.010000"],["2024-07-24T15:34:50.010000"],["2024-07-24T15:34:51.010000"],["2024-07-24T15:34:52.010000"],["2024-07-24T15:34:53.010000"],["2024-07-24T15:34:54.010000"],["2024-07-24T15:34:55.010000"],["2024-07-24T15:34:56.010000"],["2024-07-24T15:34:57.010000"],["2024-07-24T15:34:58.010000"],["2024-07-24T15:34:59.010000"],["2024-07-24T15:35:00.010000"],["2024-07-24T15:35:01.010000"],["2024-07-24T15:35:02.010000"],["2024-07-24T15:35:03.010000"],["2024-07-24T15:35:04.010000"],["2024-07-24T15:35:05.010000"],["2024-07-24T15:35:06.010000"],["2024-07-24T15:35:07.010000"],["2024-07-24T15:35:08.010000"],["2024-07-24T15:35:09.010000"],["2024-07-24T15:35:10.010000"],["2024-07-24T15:35:11.010000"],["2024-07-24T15:35:12.010000"],["2024-07-24T15:35:13.010000"],["2024-07-24T15:35:14.010000"],["2024-07-24T15:35:15.010000"],["2024-07-24T15:35:16.010000"],["2024-07-24T15:35:17.010000"],["2024-07-24T15:35:18.010000"],["2024-07-24T15:35:19.010000"],["2024-07-24T15:35:20.010000"],["2024-07-24T15:35:21.010000"],["2024-07-24T15:35:22.010000"],["2024-07-24T15:35:23.010000"],["2024-07-24T15:35:24.010000"],["2024-07-24T15:35:25.010000"],["2024-07-24T15:35:26.010000"],["2024-07-24T15:35:27.010000"],["2024-07-24T15:35:28.010000"],["2024-07-24T15:35:29.010000"],["2024-07-24T15:35:30.010000"],["2024-07-24T15:35:31.010000"],["2024-07-24T15:35:32.010000"],["2024-07-24T15:35:33.010000"],["2024-07-24T15:35:34.010000"],["2024-07-24T15:35:35.010000"],["2024-07-24T15:35:36.010000"],["2024-07-24T15:35:37.010000"],["2024-07-24T15:35:38.010000"],["2024-07-24T15:35:39.010000"],["2024-07-24T15:35:40.010000"],["2024-07-24T15:35:41.010000"],["2024-07-24T15:35:42.010000"],["2024-07-24T15:35:43.010000"],["2024-07-24T15:35:44.010000"],["2024-07-24T15:35:45.010000"],["2024-07-24T15:35:46.010000"],["2024-07-24T15:35:47.010000"],["2024-07-24T15:35:48.010000"],["2024-07-24T15:35:49.010000"],["2024-07-24T15:35:50.010000"],["2024-07-24T15:35:51.010000"],["2024-07-24T15:35:52.010000"],["2024-07-24T15:35:53.010000"],["2024-07-24T15:35:54.010000"],["2024-07-24T15:35:55.010000"],["2024-07-24T15:35:56.010000"],["2024-07-24T15:35:57.010000"],["2024-07-24T15:35:58.010000"],["2024-07-24T15:35:59.010000"],["2024-07-24T15:36:00.010000"],["2024-07-24T15:36:01.010000"],["2024-07-24T15:36:02.010000"],["2024-07-24T15:36:03.010000"],["2024-07-24T15:36:04.010000"],["2024-07-24T15:36:05.010000"],["2024-07-24T15:36:06.010000"],["2024-07-24T15:36:07.010000"],["2024-07-24T15:36:08.010000"],["2024-07-24T15:36:09.010000"],["2024-07-24T15:36:10.010000"],["2024-07-24T15:36:11.010000"],["2024-07-24T15:36:12.010000"],["2024-07-24T15:36:13.010000"],["2024-07-24T15:36:14.010000"],["2024-07-24T15:36:15.010000"],["2024-07-24T15:36:16.010000"],["2024-07-24T15:36:17.010000"],["2024-07-24T15:36:18.010000"],["2024-07-24T15:36:19.010000"],["2024-07-24T15:36:20.010000"],["2024-07-24T15:36:21.010000"],["2024-07-24T15:36:22.010000"],["2024-07-24T15:36:23.010000"],["2024-07-24T15:36:24.010000"],["2024-07-24T15:36:25.010000"],["2024-07-24T15:36:26.010000"],["2024-07-24T15:36:27.010000"],["2024-07-24T15:36:28.010000"],["2024-07-24T15:36:29.010000"],["2024-07-24T15:36:30.010000"],["2024-07-24T15:36:31.010000"],["2024-07-24T15:36:32.010000"],["2024-07-24T15:36:33.010000"],["2024-07-24T15:36:34.010000"],["2024-07-24T15:36:35.010000"],["2024-07-24T15:36:36.010000"],["2024-07-24T15:36:37.010000"],["2024-07-24T15:36:38.010000"],["2024-07-24T15:36:39.010000"],["2024-07-24T15:36:40.010000"],["2024-07-24T15:36:41.010000"],["2024-07-24T15:36:42.010000"],["2024-07-24T15:36:43.010000"],["2024-07-24T15:36:44.010000"],["2024-07-24T15:36:45.010000"],["2024-07-24T15:36:46.010000"],["2024-07-24T15:36:47.010000"],["2024-07-24T15:36:48.010000"],["2024-07-24T15:36:49.010000"],["2024-07-24T15:36:50.010000"],["2024-07-24T15:36:51.010000"],["2024-07-24T15:36:52.010000"],["2024-07-24T15:36:53.010000"],["2024-07-24T15:36:54.010000"],["2024-07-24T15:36:55.010000"],["2024-07-24T15:36:56.010000"],["2024-07-24T15:36:57.010000"],["2024-07-24T15:36:58.010000"],["2024-07-24T15:36:59.010000"],["2024-07-24T15:37:00.010000"],["2024-07-24T15:37:01.010000"],["2024-07-24T15:37:02.010000"],["2024-07-24T15:37:03.010000"],["2024-07-24T15:37:04.010000"],["2024-07-24T15:37:05.010000"],["2024-07-24T15:37:06.010000"],["2024-07-24T15:37:07.010000"],["2024-07-24T15:37:08.010000"],["2024-07-24T15:37:09.010000"],["2024-07-24T15:37:10.010000"],["2024-07-24T15:37:11.010000"],["2024-07-24T15:37:12.010000"],["2024-07-24T15:37:13.010000"],["2024-07-24T15:37:14.010000"],["2024-07-24T15:37:15.010000"],["2024-07-24T15:37:16.010000"],["2024-07-24T15:37:17.010000"],["2024-07-24T15:37:18.010000"],["2024-07-24T15:37:19.010000"],["2024-07-24T15:37:20.010000"],["2024-07-24T15:37:21.010000"],["2024-07-24T15:37:22.010000"],["2024-07-24T15:37:23.010000"],["2024-07-24T15:37:24.010000"],["2024-07-24T15:37:25.010000"],["2024-07-24T15:37:26.010000"],["2024-07-24T15:37:27.010000"],["2024-07-24T15:37:28.010000"],["2024-07-24T15:37:29.010000"],["2024-07-24T15:37:30.010000"],["2024-07-24T15:37:31.010000"],["2024-07-24T15:37:32.010000"],["2024-07-24T15:37:33.010000"],["2024-07-24T15:37:34.010000"],["2024-07-24T15:37:35.010000"],["2024-07-24T15:37:36.010000"],["2024-07-24T15:37:37.010000"],["2024-07-24T15:37:38.010000"],["2024-07-24T15:37:39.010000"],["2024-07-24T15:37:40.010000"],["2024-07-24T15:37:41.010000"],["2024-07-24T15:37:42.010000"],["2024-07-24T15:37:43.010000"],["2024-07-24T15:37:44.010000"],["2024-07-24T15:37:45.010000"],["2024-07-24T15:37:46.010000"],["2024-07-24T15:37:47.010000"],["2024-07-24T15:37:48.010000"],["2024-07-24T15:37:49.010000"],["2024-07-24T15:37:50.010000"],["2024-07-24T15:37:51.010000"],["2024-07-24T15:37:52.010000"],["2024-07-24T15:37:53.010000"],["2024-07-24T15:37:54.010000"],["2024-07-24T15:37:55.010000"],["2024-07-24T15:37:56.010000"],["2024-07-24T15:37:57.010000"],["2024-07-24T15:37:58.010000"],["2024-07-24T15:37:59.010000"],["2024-07-24T15:38:00.010000"],["2024-07-24T15:38:01.010000"],["2024-07-24T15:38:02.010000"],["2024-07-24T15:38:03.010000"],["2024-07-24T15:38:04.010000"],["2024-07-24T15:38:05.010000"],["2024-07-24T15:38:06.010000"],["2024-07-24T15:38:07.010000"],["2024-07-24T15:38:08.010000"],["2024-07-24T15:38:09.010000"],["2024-07-24T15:38:10.010000"],["2024-07-24T15:38:11.010000"],["2024-07-24T15:38:12.010000"],["2024-07-24T15:38:13.010000"],["2024-07-24T15:38:14.010000"],["2024-07-24T15:38:15.010000"],["2024-07-24T15:38:16.010000"],["2024-07-24T15:38:17.010000"],["2024-07-24T15:38:18.010000"],["2024-07-24T15:38:19.010000"],["2024-07-24T15:38:20.010000"],["2024-07-24T15:38:21.010000"],["2024-07-24T15:38:22.010000"],["2024-07-24T15:38:23.010000"],["2024-07-24T15:38:24.010000"],["2024-07-24T15:38:25.010000"],["2024-07-24T15:38:26.010000"],["2024-07-24T15:38:27.010000"],["2024-07-24T15:38:28.010000"],["2024-07-24T15:38:29.010000"],["2024-07-24T15:38:30.010000"],["2024-07-24T15:38:31.010000"],["2024-07-24T15:38:32.010000"],["2024-07-24T15:38:33.010000"],["2024-07-24T15:38:34.010000"],["2024-07-24T15:38:35.010000"],["2024-07-24T15:38:36.010000"],["2024-07-24T15:38:37.010000"],["2024-07-24T15:38:38.010000"],["2024-07-24T15:38:39.010000"],["2024-07-24T15:38:40.010000"],["2024-07-24T15:38:41.010000"],["2024-07-24T15:38:42.010000"],["2024-07-24T15:38:43.010000"],["2024-07-24T15:38:44.010000"],["2024-07-24T15:38:45.010000"],["2024-07-24T15:38:46.010000"],["2024-07-24T15:38:47.010000"],["2024-07-24T15:38:48.010000"],["2024-07-24T15:38:49.010000"],["2024-07-24T15:38:50.010000"],["2024-07-24T15:38:51.010000"],["2024-07-24T15:38:52.010000"],["2024-07-24T15:38:53.010000"],["2024-07-24T15:38:54.010000"],["2024-07-24T15:38:55.010000"],["2024-07-24T15:38:56.010000"],["2024-07-24T15:38:57.010000"],["2024-07-24T15:38:58.010000"],["2024-07-24T15:38:59.010000"],["2024-07-24T15:39:00.010000"],["2024-07-24T15:39:01.010000"],["2024-07-24T15:39:02.010000"],["2024-07-24T15:39:03.010000"],["2024-07-24T15:39:04.010000"],["2024-07-24T15:39:05.010000"],["2024-07-24T15:39:06.010000"],["2024-07-24T15:39:07.010000"],["2024-07-24T15:39:08.010000"],["2024-07-24T15:39:09.010000"],["2024-07-24T15:39:10.010000"],["2024-07-24T15:39:11.010000"],["2024-07-24T15:39:12.010000"],["2024-07-24T15:39:13.010000"],["2024-07-24T15:39:14.010000"],["2024-07-24T15:39:15.010000"],["2024-07-24T15:39:16.010000"],["2024-07-24T15:39:17.010000"],["2024-07-24T15:39:18.010000"],["2024-07-24T15:39:19.010000"],["2024-07-24T15:39:20.010000"],["2024-07-24T15:39:21.010000"],["2024-07-24T15:39:22.010000"],["2024-07-24T15:39:23.010000"],["2024-07-24T15:39:24.010000"],["2024-07-24T15:39:25.010000"],["2024-07-24T15:39:26.010000"],["2024-07-24T15:39:27.010000"],["2024-07-24T15:39:28.010000"],["2024-07-24T15:39:29.010000"],["2024-07-24T15:39:30.010000"],["2024-07-24T15:39:31.010000"],["2024-07-24T15:39:32.010000"],["2024-07-24T15:39:33.010000"],["2024-07-24T15:39:34.010000"],["2024-07-24T15:39:35.010000"],["2024-07-24T15:39:36.010000"],["2024-07-24T15:39:37.010000"],["2024-07-24T15:39:38.010000"],["2024-07-24T15:39:39.010000"],["2024-07-24T15:39:40.010000"],["2024-07-24T15:39:41.010000"],["2024-07-24T15:39:42.010000"],["2024-07-24T15:39:43.010000"],["2024-07-24T15:39:44.010000"],["2024-07-24T15:39:45.010000"],["2024-07-24T15:39:46.010000"],["2024-07-24T15:39:47.010000"],["2024-07-24T15:39:48.010000"],["2024-07-24T15:39:49.010000"],["2024-07-24T15:39:50.010000"],["2024-07-24T15:39:51.010000"],["2024-07-24T15:39:52.010000"],["2024-07-24T15:39:53.010000"],["2024-07-24T15:39:54.010000"],["2024-07-24T15:39:55.010000"],["2024-07-24T15:39:56.010000"],["2024-07-24T15:39:57.010000"],["2024-07-24T15:39:58.010000"],["2024-07-24T15:39:59.010000"],["2024-07-24T15:40:00.010000"],["2024-07-24T15:40:01.010000"],["2024-07-24T15:40:02.010000"],["2024-07-24T15:40:03.010000"],["2024-07-24T15:40:04.010000"],["2024-07-24T15:40:05.010000"],["2024-07-24T15:40:06.010000"],["2024-07-24T15:40:07.010000"],["2024-07-24T15:40:08.010000"],["2024-07-24T15:40:09.010000"],["2024-07-24T15:40:10.010000"],["2024-07-24T15:40:11.010000"],["2024-07-24T15:40:12.010000"],["2024-07-24T15:40:13.010000"],["2024-07-24T15:40:14.010000"],["2024-07-24T15:40:15.010000"],["2024-07-24T15:40:16.010000"],["2024-07-24T15:40:17.010000"],["2024-07-24T15:40:18.010000"],["2024-07-24T15:40:19.010000"],["2024-07-24T15:40:20.010000"],["2024-07-24T15:40:21.010000"],["2024-07-24T15:40:22.010000"],["2024-07-24T15:40:23.010000"],["2024-07-24T15:40:24.010000"],["2024-07-24T15:40:25.010000"],["2024-07-24T15:40:26.010000"],["2024-07-24T15:40:27.010000"],["2024-07-24T15:40:28.010000"],["2024-07-24T15:40:29.010000"],["2024-07-24T15:40:30.010000"],["2024-07-24T15:40:31.010000"],["2024-07-24T15:40:32.010000"],["2024-07-24T15:40:33.010000"],["2024-07-24T15:40:34.010000"],["2024-07-24T15:40:35.010000"],["2024-07-24T15:40:36.010000"],["2024-07-24T15:40:37.010000"],["2024-07-24T15:40:38.010000"],["2024-07-24T15:40:39.010000"],["2024-07-24T15:40:40.010000"],["2024-07-24T15:40:41.010000"],["2024-07-24T15:40:42.010000"],["2024-07-24T15:40:43.010000"],["2024-07-24T15:40:44.010000"],["2024-07-24T15:40:45.010000"],["2024-07-24T15:40:46.010000"],["2024-07-24T15:40:47.010000"],["2024-07-24T15:40:48.010000"],["2024-07-24T15:40:49.010000"],["2024-07-24T15:40:50.010000"],["2024-07-24T15:40:51.010000"],["2024-07-24T15:40:52.010000"],["2024-07-24T15:40:53.010000"],["2024-07-24T15:40:54.010000"],["2024-07-24T15:40:55.010000"],["2024-07-24T15:40:56.010000"],["2024-07-24T15:40:57.010000"],["2024-07-24T15:40:58.010000"],["2024-07-24T15:40:59.010000"],["2024-07-24T15:41:00.010000"],["2024-07-24T15:41:01.010000"],["2024-07-24T15:41:02.010000"],["2024-07-24T15:41:03.010000"],["2024-07-24T15:41:04.010000"],["2024-07-24T15:41:05.010000"],["2024-07-24T15:41:06.010000"],["2024-07-24T15:41:07.010000"],["2024-07-24T15:41:08.010000"],["2024-07-24T15:41:09.010000"],["2024-07-24T15:41:10.010000"],["2024-07-24T15:41:11.010000"],["2024-07-24T15:41:12.010000"],["2024-07-24T15:41:13.010000"],["2024-07-24T15:41:14.010000"],["2024-07-24T15:41:15.010000"],["2024-07-24T15:41:16.010000"],["2024-07-24T15:41:17.010000"],["2024-07-24T15:41:18.010000"],["2024-07-24T15:41:19.010000"],["2024-07-24T15:41:20.010000"],["2024-07-24T15:41:21.010000"],["2024-07-24T15:41:22.010000"],["2024-07-24T15:41:23.010000"],["2024-07-24T15:41:24.010000"],["2024-07-24T15:41:25.010000"],["2024-07-24T15:41:26.010000"],["2024-07-24T15:41:27.010000"],["2024-07-24T15:41:28.010000"],["2024-07-24T15:41:29.010000"],["2024-07-24T15:41:30.010000"],["2024-07-24T15:41:31.010000"],["2024-07-24T15:41:32.010000"],["2024-07-24T15:41:33.010000"],["2024-07-24T15:41:34.010000"],["2024-07-24T15:41:35.010000"],["2024-07-24T15:41:36.010000"],["2024-07-24T15:41:37.010000"],["2024-07-24T15:41:38.010000"],["2024-07-24T15:41:39.010000"],["2024-07-24T15:41:40.010000"],["2024-07-24T15:41:41.010000"],["2024-07-24T15:41:42.010000"],["2024-07-24T15:41:43.010000"],["2024-07-24T15:41:44.010000"],["2024-07-24T15:41:45.010000"],["2024-07-24T15:41:46.010000"],["2024-07-24T15:41:47.010000"],["2024-07-24T15:41:48.010000"],["2024-07-24T15:41:49.010000"],["2024-07-24T15:41:50.010000"],["2024-07-24T15:41:51.010000"],["2024-07-24T15:41:52.010000"],["2024-07-24T15:41:53.010000"],["2024-07-24T15:41:54.010000"],["2024-07-24T15:41:55.010000"],["2024-07-24T15:41:56.010000"],["2024-07-24T15:41:57.010000"],["2024-07-24T15:41:58.010000"],["2024-07-24T15:41:59.010000"],["2024-07-24T15:42:00.010000"],["2024-07-24T15:42:01.010000"],["2024-07-24T15:42:02.010000"],["2024-07-24T15:42:03.010000"],["2024-07-24T15:42:04.010000"],["2024-07-24T15:42:05.010000"],["2024-07-24T15:42:06.010000"],["2024-07-24T15:42:07.010000"],["2024-07-24T15:42:08.010000"],["2024-07-24T15:42:09.010000"],["2024-07-24T15:42:10.010000"],["2024-07-24T15:42:11.010000"],["2024-07-24T15:42:12.010000"],["2024-07-24T15:42:13.010000"],["2024-07-24T15:42:14.010000"],["2024-07-24T15:42:15.010000"],["2024-07-24T15:42:16.010000"],["2024-07-24T15:42:17.010000"],["2024-07-24T15:42:18.010000"],["2024-07-24T15:42:19.010000"],["2024-07-24T15:42:20.010000"],["2024-07-24T15:42:21.010000"],["2024-07-24T15:42:22.010000"],["2024-07-24T15:42:23.010000"],["2024-07-24T15:42:24.010000"],["2024-07-24T15:42:25.010000"],["2024-07-24T15:42:26.010000"],["2024-07-24T15:42:27.010000"],["2024-07-24T15:42:28.010000"],["2024-07-24T15:42:29.010000"],["2024-07-24T15:42:30.010000"],["2024-07-24T15:42:31.010000"],["2024-07-24T15:42:32.010000"],["2024-07-24T15:42:33.010000"],["2024-07-24T15:42:34.010000"],["2024-07-24T15:42:35.010000"],["2024-07-24T15:42:36.010000"],["2024-07-24T15:42:37.010000"],["2024-07-24T15:42:38.010000"],["2024-07-24T15:42:39.010000"],["2024-07-24T15:42:40.010000"],["2024-07-24T15:42:41.010000"],["2024-07-24T15:42:42.010000"],["2024-07-24T15:42:43.010000"],["2024-07-24T15:42:44.010000"],["2024-07-24T15:42:45.010000"],["2024-07-24T15:42:46.010000"],["2024-07-24T15:42:47.010000"],["2024-07-24T15:42:48.010000"],["2024-07-24T15:42:49.010000"],["2024-07-24T15:42:50.010000"],["2024-07-24T15:42:51.010000"],["2024-07-24T15:42:52.010000"],["2024-07-24T15:42:53.010000"],["2024-07-24T15:42:54.010000"],["2024-07-24T15:42:55.010000"],["2024-07-24T15:42:56.010000"],["2024-07-24T15:42:57.010000"],["2024-07-24T15:42:58.010000"],["2024-07-24T15:42:59.010000"],["2024-07-24T15:43:00.010000"],["2024-07-24T15:43:01.010000"],["2024-07-24T15:43:02.010000"],["2024-07-24T15:43:03.010000"],["2024-07-24T15:43:04.010000"],["2024-07-24T15:43:05.010000"],["2024-07-24T15:43:06.010000"],["2024-07-24T15:43:07.010000"],["2024-07-24T15:43:08.010000"],["2024-07-24T15:43:09.010000"],["2024-07-24T15:43:10.010000"],["2024-07-24T15:43:11.010000"],["2024-07-24T15:43:12.010000"],["2024-07-24T15:43:13.010000"],["2024-07-24T15:43:14.010000"],["2024-07-24T15:43:15.010000"],["2024-07-24T15:43:16.010000"],["2024-07-24T15:43:17.010000"],["2024-07-24T15:43:18.010000"],["2024-07-24T15:43:19.010000"],["2024-07-24T15:43:20.010000"],["2024-07-24T15:43:21.010000"],["2024-07-24T15:43:22.010000"],["2024-07-24T15:43:23.010000"],["2024-07-24T15:43:24.010000"],["2024-07-24T15:43:25.010000"],["2024-07-24T15:43:26.010000"],["2024-07-24T15:43:27.010000"],["2024-07-24T15:43:28.010000"],["2024-07-24T15:43:29.010000"],["2024-07-24T15:43:30.010000"],["2024-07-24T15:43:31.010000"],["2024-07-24T15:43:32.010000"],["2024-07-24T15:43:33.010000"],["2024-07-24T15:43:34.010000"],["2024-07-24T15:43:35.010000"],["2024-07-24T15:43:36.010000"],["2024-07-24T15:43:37.010000"],["2024-07-24T15:43:38.010000"],["2024-07-24T15:43:39.010000"],["2024-07-24T15:43:40.010000"],["2024-07-24T15:43:41.010000"],["2024-07-24T15:43:42.010000"],["2024-07-24T15:43:43.010000"],["2024-07-24T15:43:44.010000"],["2024-07-24T15:43:45.010000"],["2024-07-24T15:43:46.010000"],["2024-07-24T15:43:47.010000"],["2024-07-24T15:43:48.010000"],["2024-07-24T15:43:49.010000"],["2024-07-24T15:43:50.010000"],["2024-07-24T15:43:51.010000"],["2024-07-24T15:43:52.010000"],["2024-07-24T15:43:53.010000"],["2024-07-24T15:43:54.010000"],["2024-07-24T15:43:55.010000"],["2024-07-24T15:43:56.010000"],["2024-07-24T15:43:57.010000"],["2024-07-24T15:43:58.010000"],["2024-07-24T15:43:59.010000"],["2024-07-24T15:44:00.010000"],["2024-07-24T15:44:01.010000"],["2024-07-24T15:44:02.010000"],["2024-07-24T15:44:03.010000"],["2024-07-24T15:44:04.010000"],["2024-07-24T15:44:05.010000"],["2024-07-24T15:44:06.010000"],["2024-07-24T15:44:07.010000"],["2024-07-24T15:44:08.010000"],["2024-07-24T15:44:09.010000"],["2024-07-24T15:44:10.010000"],["2024-07-24T15:44:11.010000"],["2024-07-24T15:44:12.010000"],["2024-07-24T15:44:13.010000"],["2024-07-24T15:44:14.010000"],["2024-07-24T15:44:15.010000"],["2024-07-24T15:44:16.010000"],["2024-07-24T15:44:17.010000"],["2024-07-24T15:44:18.010000"],["2024-07-24T15:44:19.010000"],["2024-07-24T15:44:20.010000"],["2024-07-24T15:44:21.010000"],["2024-07-24T15:44:22.010000"],["2024-07-24T15:44:23.010000"],["2024-07-24T15:44:24.010000"],["2024-07-24T15:44:25.010000"],["2024-07-24T15:44:26.010000"],["2024-07-24T15:44:27.010000"],["2024-07-24T15:44:28.010000"],["2024-07-24T15:44:29.010000"],["2024-07-24T15:44:30.010000"],["2024-07-24T15:44:31.010000"],["2024-07-24T15:44:32.010000"],["2024-07-24T15:44:33.010000"],["2024-07-24T15:44:34.010000"],["2024-07-24T15:44:35.010000"],["2024-07-24T15:44:36.010000"],["2024-07-24T15:44:37.010000"],["2024-07-24T15:44:38.010000"],["2024-07-24T15:44:39.010000"],["2024-07-24T15:44:40.010000"],["2024-07-24T15:44:41.010000"],["2024-07-24T15:44:42.010000"],["2024-07-24T15:44:43.010000"],["2024-07-24T15:44:44.010000"],["2024-07-24T15:44:45.010000"],["2024-07-24T15:44:46.010000"],["2024-07-24T15:44:47.010000"],["2024-07-24T15:44:48.010000"],["2024-07-24T15:44:49.010000"],["2024-07-24T15:44:50.010000"],["2024-07-24T15:44:51.010000"],["2024-07-24T15:44:52.010000"],["2024-07-24T15:44:53.010000"],["2024-07-24T15:44:54.010000"],["2024-07-24T15:44:55.010000"],["2024-07-24T15:44:56.010000"],["2024-07-24T15:44:57.010000"],["2024-07-24T15:44:58.010000"],["2024-07-24T15:44:59.010000"],["2024-07-24T15:45:00.010000"],["2024-07-24T15:45:01.010000"],["2024-07-24T15:45:02.010000"],["2024-07-24T15:45:03.010000"],["2024-07-24T15:45:04.010000"],["2024-07-24T15:45:05.010000"],["2024-07-24T15:45:06.010000"],["2024-07-24T15:45:07.010000"],["2024-07-24T15:45:08.010000"],["2024-07-24T15:45:09.010000"],["2024-07-24T15:45:10.010000"],["2024-07-24T15:45:11.010000"],["2024-07-24T15:45:12.010000"],["2024-07-24T15:45:13.010000"],["2024-07-24T15:45:14.010000"],["2024-07-24T15:45:15.010000"],["2024-07-24T15:45:16.010000"],["2024-07-24T15:45:17.010000"],["2024-07-24T15:45:18.010000"],["2024-07-24T15:45:19.010000"],["2024-07-24T15:45:20.010000"],["2024-07-24T15:45:21.010000"],["2024-07-24T15:45:22.010000"],["2024-07-24T15:45:23.010000"],["2024-07-24T15:45:24.010000"],["2024-07-24T15:45:25.010000"],["2024-07-24T15:45:26.010000"],["2024-07-24T15:45:27.010000"],["2024-07-24T15:45:28.010000"],["2024-07-24T15:45:29.010000"],["2024-07-24T15:45:30.010000"],["2024-07-24T15:45:31.010000"],["2024-07-24T15:45:32.010000"],["2024-07-24T15:45:33.010000"],["2024-07-24T15:45:34.010000"],["2024-07-24T15:45:35.010000"],["2024-07-24T15:45:36.010000"],["2024-07-24T15:45:37.010000"],["2024-07-24T15:45:38.010000"],["2024-07-24T15:45:39.010000"],["2024-07-24T15:45:40.010000"],["2024-07-24T15:45:41.010000"],["2024-07-24T15:45:42.010000"],["2024-07-24T15:45:43.010000"],["2024-07-24T15:45:44.010000"],["2024-07-24T15:45:45.010000"],["2024-07-24T15:45:46.010000"],["2024-07-24T15:45:47.010000"],["2024-07-24T15:45:48.010000"],["2024-07-24T15:45:49.010000"],["2024-07-24T15:45:50.010000"],["2024-07-24T15:45:51.010000"],["2024-07-24T15:45:52.010000"],["2024-07-24T15:45:53.010000"],["2024-07-24T15:45:54.010000"],["2024-07-24T15:45:55.010000"],["2024-07-24T15:45:56.010000"],["2024-07-24T15:45:57.010000"],["2024-07-24T15:45:58.010000"],["2024-07-24T15:45:59.010000"],["2024-07-24T15:46:00.010000"],["2024-07-24T15:46:01.010000"],["2024-07-24T15:46:02.010000"],["2024-07-24T15:46:03.010000"],["2024-07-24T15:46:04.010000"],["2024-07-24T15:46:05.010000"],["2024-07-24T15:46:06.010000"],["2024-07-24T15:46:07.010000"],["2024-07-24T15:46:08.010000"],["2024-07-24T15:46:09.010000"],["2024-07-24T15:46:10.010000"],["2024-07-24T15:46:11.010000"],["2024-07-24T15:46:12.010000"],["2024-07-24T15:46:13.010000"],["2024-07-24T15:46:14.010000"],["2024-07-24T15:46:15.010000"],["2024-07-24T15:46:16.010000"],["2024-07-24T15:46:17.010000"],["2024-07-24T15:46:18.010000"],["2024-07-24T15:46:19.010000"],["2024-07-24T15:46:20.010000"],["2024-07-24T15:46:21.010000"],["2024-07-24T15:46:22.010000"],["2024-07-24T15:46:23.010000"],["2024-07-24T15:46:24.010000"],["2024-07-24T15:46:25.010000"],["2024-07-24T15:46:26.010000"],["2024-07-24T15:46:27.010000"],["2024-07-24T15:46:28.010000"],["2024-07-24T15:46:29.010000"],["2024-07-24T15:46:30.010000"],["2024-07-24T15:46:31.010000"],["2024-07-24T15:46:32.010000"],["2024-07-24T15:46:33.010000"],["2024-07-24T15:46:34.010000"],["2024-07-24T15:46:35.010000"],["2024-07-24T15:46:36.010000"],["2024-07-24T15:46:37.010000"],["2024-07-24T15:46:38.010000"],["2024-07-24T15:46:39.010000"],["2024-07-24T15:46:40.010000"],["2024-07-24T15:46:41.010000"],["2024-07-24T15:46:42.010000"],["2024-07-24T15:46:43.010000"],["2024-07-24T15:46:44.010000"],["2024-07-24T15:46:45.010000"],["2024-07-24T15:46:46.010000"],["2024-07-24T15:46:47.010000"],["2024-07-24T15:46:48.010000"],["2024-07-24T15:46:49.010000"],["2024-07-24T15:46:50.010000"],["2024-07-24T15:46:51.010000"],["2024-07-24T15:46:52.010000"],["2024-07-24T15:46:53.010000"],["2024-07-24T15:46:54.010000"],["2024-07-24T15:46:55.010000"],["2024-07-24T15:46:56.010000"],["2024-07-24T15:46:57.010000"],["2024-07-24T15:46:58.010000"],["2024-07-24T15:46:59.010000"],["2024-07-24T15:47:00.010000"],["2024-07-24T15:47:01.010000"],["2024-07-24T15:47:02.010000"],["2024-07-24T15:47:03.010000"],["2024-07-24T15:47:04.010000"],["2024-07-24T15:47:05.010000"],["2024-07-24T15:47:06.010000"],["2024-07-24T15:47:07.010000"],["2024-07-24T15:47:08.010000"],["2024-07-24T15:47:09.010000"],["2024-07-24T15:47:10.010000"],["2024-07-24T15:47:11.010000"],["2024-07-24T15:47:12.010000"],["2024-07-24T15:47:13.010000"],["2024-07-24T15:47:14.010000"],["2024-07-24T15:47:15.010000"],["2024-07-24T15:47:16.010000"],["2024-07-24T15:47:17.010000"],["2024-07-24T15:47:18.010000"],["2024-07-24T15:47:19.010000"],["2024-07-24T15:47:20.010000"],["2024-07-24T15:47:21.010000"],["2024-07-24T15:47:22.010000"],["2024-07-24T15:47:23.010000"],["2024-07-24T15:47:24.010000"],["2024-07-24T15:47:25.010000"],["2024-07-24T15:47:26.010000"],["2024-07-24T15:47:27.010000"],["2024-07-24T15:47:28.010000"],["2024-07-24T15:47:29.010000"],["2024-07-24T15:47:30.010000"],["2024-07-24T15:47:31.010000"],["2024-07-24T15:47:32.010000"],["2024-07-24T15:47:33.010000"],["2024-07-24T15:47:34.010000"],["2024-07-24T15:47:35.010000"],["2024-07-24T15:47:36.010000"],["2024-07-24T15:47:37.010000"],["2024-07-24T15:47:38.010000"],["2024-07-24T15:47:39.010000"],["2024-07-24T15:47:40.010000"],["2024-07-24T15:47:41.010000"],["2024-07-24T15:47:42.010000"],["2024-07-24T15:47:43.010000"],["2024-07-24T15:47:44.010000"],["2024-07-24T15:47:45.010000"],["2024-07-24T15:47:46.010000"],["2024-07-24T15:47:47.010000"],["2024-07-24T15:47:48.010000"],["2024-07-24T15:47:49.010000"],["2024-07-24T15:47:50.010000"],["2024-07-24T15:47:51.010000"],["2024-07-24T15:47:52.010000"],["2024-07-24T15:47:53.010000"],["2024-07-24T15:47:54.010000"],["2024-07-24T15:47:55.010000"],["2024-07-24T15:47:56.010000"],["2024-07-24T15:47:57.010000"],["2024-07-24T15:47:58.010000"],["2024-07-24T15:47:59.010000"],["2024-07-24T15:48:00.010000"],["2024-07-24T15:48:01.010000"],["2024-07-24T15:48:02.010000"],["2024-07-24T15:48:03.010000"],["2024-07-24T15:48:04.010000"],["2024-07-24T15:48:05.010000"],["2024-07-24T15:48:06.010000"],["2024-07-24T15:48:07.010000"],["2024-07-24T15:48:08.010000"],["2024-07-24T15:48:09.010000"],["2024-07-24T15:48:10.010000"],["2024-07-24T15:48:11.010000"],["2024-07-24T15:48:12.010000"],["2024-07-24T15:48:13.010000"],["2024-07-24T15:48:14.010000"],["2024-07-24T15:48:15.010000"],["2024-07-24T15:48:16.010000"],["2024-07-24T15:48:17.010000"],["2024-07-24T15:48:18.010000"],["2024-07-24T15:48:19.010000"],["2024-07-24T15:48:20.010000"],["2024-07-24T15:48:21.010000"],["2024-07-24T15:48:22.010000"],["2024-07-24T15:48:23.010000"],["2024-07-24T15:48:24.010000"],["2024-07-24T15:48:25.010000"],["2024-07-24T15:48:26.010000"],["2024-07-24T15:48:27.010000"],["2024-07-24T15:48:28.010000"],["2024-07-24T15:48:29.010000"],["2024-07-24T15:48:30.010000"],["2024-07-24T15:48:31.010000"],["2024-07-24T15:48:32.010000"],["2024-07-24T15:48:33.010000"],["2024-07-24T15:48:34.010000"],["2024-07-24T15:48:35.010000"],["2024-07-24T15:48:36.010000"],["2024-07-24T15:48:37.010000"],["2024-07-24T15:48:38.010000"],["2024-07-24T15:48:39.010000"],["2024-07-24T15:48:40.010000"],["2024-07-24T15:48:41.010000"],["2024-07-24T15:48:42.010000"],["2024-07-24T15:48:43.010000"],["2024-07-24T15:48:44.010000"],["2024-07-24T15:48:45.010000"],["2024-07-24T15:48:46.010000"],["2024-07-24T15:48:47.010000"],["2024-07-24T15:48:48.010000"],["2024-07-24T15:48:49.010000"],["2024-07-24T15:48:50.010000"],["2024-07-24T15:48:51.010000"],["2024-07-24T15:48:52.010000"],["2024-07-24T15:48:53.010000"],["2024-07-24T15:48:54.010000"],["2024-07-24T15:48:55.010000"],["2024-07-24T15:48:56.010000"],["2024-07-24T15:48:57.010000"],["2024-07-24T15:48:58.010000"],["2024-07-24T15:48:59.010000"],["2024-07-24T15:49:00.010000"],["2024-07-24T15:49:01.010000"],["2024-07-24T15:49:02.010000"],["2024-07-24T15:49:03.010000"],["2024-07-24T15:49:04.010000"],["2024-07-24T15:49:05.010000"],["2024-07-24T15:49:06.010000"],["2024-07-24T15:49:07.010000"],["2024-07-24T15:49:08.010000"],["2024-07-24T15:49:09.010000"],["2024-07-24T15:49:10.010000"],["2024-07-24T15:49:11.010000"],["2024-07-24T15:49:12.010000"],["2024-07-24T15:49:13.010000"],["2024-07-24T15:49:14.010000"],["2024-07-24T15:49:15.010000"],["2024-07-24T15:49:16.010000"],["2024-07-24T15:49:17.010000"],["2024-07-24T15:49:18.010000"],["2024-07-24T15:49:19.010000"],["2024-07-24T15:49:20.010000"],["2024-07-24T15:49:21.010000"],["2024-07-24T15:49:22.010000"],["2024-07-24T15:49:23.010000"],["2024-07-24T15:49:24.010000"],["2024-07-24T15:49:25.010000"],["2024-07-24T15:49:26.010000"],["2024-07-24T15:49:27.010000"],["2024-07-24T15:49:28.010000"],["2024-07-24T15:49:29.010000"],["2024-07-24T15:49:30.010000"],["2024-07-24T15:49:31.010000"],["2024-07-24T15:49:32.010000"],["2024-07-24T15:49:33.010000"],["2024-07-24T15:49:34.010000"],["2024-07-24T15:49:35.010000"],["2024-07-24T15:49:36.010000"],["2024-07-24T15:49:37.010000"],["2024-07-24T15:49:38.010000"],["2024-07-24T15:49:39.010000"],["2024-07-24T15:49:40.010000"],["2024-07-24T15:49:41.010000"],["2024-07-24T15:49:42.010000"],["2024-07-24T15:49:43.010000"],["2024-07-24T15:49:44.010000"],["2024-07-24T15:49:45.010000"],["2024-07-24T15:49:46.010000"],["2024-07-24T15:49:47.010000"],["2024-07-24T15:49:48.010000"],["2024-07-24T15:49:49.010000"],["2024-07-24T15:49:50.010000"],["2024-07-24T15:49:51.010000"],["2024-07-24T15:49:52.010000"],["2024-07-24T15:49:53.010000"],["2024-07-24T15:49:54.010000"],["2024-07-24T15:49:55.010000"],["2024-07-24T15:49:56.010000"],["2024-07-24T15:49:57.010000"],["2024-07-24T15:49:58.010000"],["2024-07-24T15:49:59.010000"],["2024-07-24T15:50:00.010000"],["2024-07-24T15:50:01.010000"],["2024-07-24T15:50:02.010000"],["2024-07-24T15:50:03.010000"],["2024-07-24T15:50:04.010000"],["2024-07-24T15:50:05.010000"],["2024-07-24T15:50:06.010000"],["2024-07-24T15:50:07.010000"],["2024-07-24T15:50:08.010000"],["2024-07-24T15:50:09.010000"],["2024-07-24T15:50:10.010000"],["2024-07-24T15:50:11.010000"],["2024-07-24T15:50:12.010000"],["2024-07-24T15:50:13.010000"],["2024-07-24T15:50:14.010000"],["2024-07-24T15:50:15.010000"],["2024-07-24T15:50:16.010000"],["2024-07-24T15:50:17.010000"],["2024-07-24T15:50:18.010000"],["2024-07-24T15:50:19.010000"],["2024-07-24T15:50:20.010000"],["2024-07-24T15:50:21.010000"],["2024-07-24T15:50:22.010000"],["2024-07-24T15:50:23.010000"],["2024-07-24T15:50:24.010000"],["2024-07-24T15:50:25.010000"],["2024-07-24T15:50:26.010000"],["2024-07-24T15:50:27.010000"],["2024-07-24T15:50:28.010000"],["2024-07-24T15:50:29.010000"],["2024-07-24T15:50:30.010000"],["2024-07-24T15:50:31.010000"],["2024-07-24T15:50:32.010000"],["2024-07-24T15:50:33.010000"],["2024-07-24T15:50:34.010000"],["2024-07-24T15:50:35.010000"],["2024-07-24T15:50:36.010000"],["2024-07-24T15:50:37.010000"],["2024-07-24T15:50:38.010000"],["2024-07-24T15:50:39.010000"],["2024-07-24T15:50:40.010000"],["2024-07-24T15:50:41.010000"],["2024-07-24T15:50:42.010000"],["2024-07-24T15:50:43.010000"],["2024-07-24T15:50:44.010000"],["2024-07-24T15:50:45.010000"],["2024-07-24T15:50:46.010000"],["2024-07-24T15:50:47.010000"],["2024-07-24T15:50:48.010000"],["2024-07-24T15:50:49.010000"],["2024-07-24T15:50:50.010000"],["2024-07-24T15:50:51.010000"],["2024-07-24T15:50:52.010000"],["2024-07-24T15:50:53.010000"],["2024-07-24T15:50:54.010000"],["2024-07-24T15:50:55.010000"],["2024-07-24T15:50:56.010000"],["2024-07-24T15:50:57.010000"],["2024-07-24T15:50:58.010000"],["2024-07-24T15:50:59.010000"],["2024-07-24T15:51:00.010000"],["2024-07-24T15:51:01.010000"],["2024-07-24T15:51:02.010000"],["2024-07-24T15:51:03.010000"],["2024-07-24T15:51:04.010000"],["2024-07-24T15:51:05.010000"],["2024-07-24T15:51:06.010000"],["2024-07-24T15:51:07.010000"],["2024-07-24T15:51:08.010000"],["2024-07-24T15:51:09.010000"],["2024-07-24T15:51:10.010000"],["2024-07-24T15:51:11.010000"],["2024-07-24T15:51:12.010000"],["2024-07-24T15:51:13.010000"],["2024-07-24T15:51:14.010000"],["2024-07-24T15:51:15.010000"],["2024-07-24T15:51:16.010000"],["2024-07-24T15:51:17.010000"],["2024-07-24T15:51:18.010000"],["2024-07-24T15:51:19.010000"],["2024-07-24T15:51:20.010000"],["2024-07-24T15:51:21.010000"],["2024-07-24T15:51:22.010000"],["2024-07-24T15:51:23.010000"],["2024-07-24T15:51:24.010000"],["2024-07-24T15:51:25.010000"],["2024-07-24T15:51:26.010000"],["2024-07-24T15:51:27.010000"],["2024-07-24T15:51:28.010000"],["2024-07-24T15:51:29.010000"],["2024-07-24T15:51:30.010000"],["2024-07-24T15:51:31.010000"],["2024-07-24T15:51:32.010000"],["2024-07-24T15:51:33.010000"],["2024-07-24T15:51:34.010000"],["2024-07-24T15:51:35.010000"],["2024-07-24T15:51:36.010000"],["2024-07-24T15:51:37.010000"],["2024-07-24T15:51:38.010000"],["2024-07-24T15:51:39.010000"],["2024-07-24T15:51:40.010000"],["2024-07-24T15:51:41.010000"],["2024-07-24T15:51:42.010000"],["2024-07-24T15:51:43.010000"],["2024-07-24T15:51:44.010000"],["2024-07-24T15:51:45.010000"],["2024-07-24T15:51:46.010000"],["2024-07-24T15:51:47.010000"],["2024-07-24T15:51:48.010000"],["2024-07-24T15:51:49.010000"],["2024-07-24T15:51:50.010000"],["2024-07-24T15:51:51.010000"],["2024-07-24T15:51:52.010000"],["2024-07-24T15:51:53.010000"],["2024-07-24T15:51:54.010000"],["2024-07-24T15:51:55.010000"],["2024-07-24T15:51:56.010000"],["2024-07-24T15:51:57.010000"],["2024-07-24T15:51:58.010000"],["2024-07-24T15:51:59.010000"],["2024-07-24T15:52:00.010000"],["2024-07-24T15:52:01.010000"],["2024-07-24T15:52:02.010000"],["2024-07-24T15:52:03.010000"],["2024-07-24T15:52:04.010000"],["2024-07-24T15:52:05.010000"],["2024-07-24T15:52:06.010000"],["2024-07-24T15:52:07.010000"],["2024-07-24T15:52:08.010000"],["2024-07-24T15:52:09.010000"],["2024-07-24T15:52:10.010000"],["2024-07-24T15:52:11.010000"],["2024-07-24T15:52:12.010000"],["2024-07-24T15:52:13.010000"],["2024-07-24T15:52:14.010000"],["2024-07-24T15:52:15.010000"],["2024-07-24T15:52:16.010000"],["2024-07-24T15:52:17.010000"],["2024-07-24T15:52:18.010000"],["2024-07-24T15:52:19.010000"],["2024-07-24T15:52:20.010000"],["2024-07-24T15:52:21.010000"],["2024-07-24T15:52:22.010000"],["2024-07-24T15:52:23.010000"],["2024-07-24T15:52:24.010000"],["2024-07-24T15:52:25.010000"],["2024-07-24T15:52:26.010000"],["2024-07-24T15:52:27.010000"],["2024-07-24T15:52:28.010000"],["2024-07-24T15:52:29.010000"],["2024-07-24T15:52:30.010000"],["2024-07-24T15:52:31.010000"],["2024-07-24T15:52:32.010000"],["2024-07-24T15:52:33.010000"],["2024-07-24T15:52:34.010000"],["2024-07-24T15:52:35.010000"],["2024-07-24T15:52:36.010000"],["2024-07-24T15:52:37.010000"],["2024-07-24T15:52:38.010000"],["2024-07-24T15:52:39.010000"],["2024-07-24T15:52:40.010000"],["2024-07-24T15:52:41.010000"],["2024-07-24T15:52:42.010000"],["2024-07-24T15:52:43.010000"],["2024-07-24T15:52:44.010000"],["2024-07-24T15:52:45.010000"],["2024-07-24T15:52:46.010000"],["2024-07-24T15:52:47.010000"],["2024-07-24T15:52:48.010000"],["2024-07-24T15:52:49.010000"],["2024-07-24T15:52:50.010000"],["2024-07-24T15:52:51.010000"],["2024-07-24T15:52:52.010000"],["2024-07-24T15:52:53.010000"],["2024-07-24T15:52:54.010000"],["2024-07-24T15:52:55.010000"],["2024-07-24T15:52:56.010000"],["2024-07-24T15:52:57.010000"],["2024-07-24T15:52:58.010000"],["2024-07-24T15:52:59.010000"],["2024-07-24T15:53:00.010000"],["2024-07-24T15:53:01.010000"],["2024-07-24T15:53:02.010000"],["2024-07-24T15:53:03.010000"],["2024-07-24T15:53:04.010000"],["2024-07-24T15:53:05.010000"],["2024-07-24T15:53:06.010000"],["2024-07-24T15:53:07.010000"],["2024-07-24T15:53:08.010000"],["2024-07-24T15:53:09.010000"],["2024-07-24T15:53:10.010000"],["2024-07-24T15:53:11.010000"],["2024-07-24T15:53:12.010000"],["2024-07-24T15:53:13.010000"],["2024-07-24T15:53:14.010000"],["2024-07-24T15:53:15.010000"],["2024-07-24T15:53:16.010000"],["2024-07-24T15:53:17.010000"],["2024-07-24T15:53:18.010000"],["2024-07-24T15:53:19.010000"],["2024-07-24T15:53:20.010000"],["2024-07-24T15:53:21.010000"],["2024-07-24T15:53:22.010000"],["2024-07-24T15:53:23.010000"],["2024-07-24T15:53:24.010000"],["2024-07-24T15:53:25.010000"],["2024-07-24T15:53:26.010000"],["2024-07-24T15:53:27.010000"],["2024-07-24T15:53:28.010000"],["2024-07-24T15:53:29.010000"],["2024-07-24T15:53:30.010000"],["2024-07-24T15:53:31.010000"],["2024-07-24T15:53:32.010000"],["2024-07-24T15:53:33.010000"],["2024-07-24T15:53:34.010000"],["2024-07-24T15:53:35.010000"],["2024-07-24T15:53:36.010000"],["2024-07-24T15:53:37.010000"],["2024-07-24T15:53:38.010000"],["2024-07-24T15:53:39.010000"],["2024-07-24T15:53:40.010000"],["2024-07-24T15:53:41.010000"],["2024-07-24T15:53:42.010000"],["2024-07-24T15:53:43.010000"],["2024-07-24T15:53:44.010000"],["2024-07-24T15:53:45.010000"],["2024-07-24T15:53:46.010000"],["2024-07-24T15:53:47.010000"],["2024-07-24T15:53:48.010000"],["2024-07-24T15:53:49.010000"],["2024-07-24T15:53:50.010000"],["2024-07-24T15:53:51.010000"],["2024-07-24T15:53:52.010000"],["2024-07-24T15:53:53.010000"],["2024-07-24T15:53:54.010000"],["2024-07-24T15:53:55.010000"],["2024-07-24T15:53:56.010000"],["2024-07-24T15:53:57.010000"],["2024-07-24T15:53:58.010000"],["2024-07-24T15:53:59.010000"],["2024-07-24T15:54:00.010000"],["2024-07-24T15:54:01.010000"],["2024-07-24T15:54:02.010000"],["2024-07-24T15:54:03.010000"],["2024-07-24T15:54:04.010000"],["2024-07-24T15:54:05.010000"],["2024-07-24T15:54:06.010000"],["2024-07-24T15:54:07.010000"],["2024-07-24T15:54:08.010000"],["2024-07-24T15:54:09.010000"],["2024-07-24T15:54:10.010000"],["2024-07-24T15:54:11.010000"],["2024-07-24T15:54:12.010000"],["2024-07-24T15:54:13.010000"],["2024-07-24T15:54:14.010000"],["2024-07-24T15:54:15.010000"],["2024-07-24T15:54:16.010000"],["2024-07-24T15:54:17.010000"],["2024-07-24T15:54:18.010000"],["2024-07-24T15:54:19.010000"],["2024-07-24T15:54:20.010000"],["2024-07-24T15:54:21.010000"],["2024-07-24T15:54:22.010000"],["2024-07-24T15:54:23.010000"],["2024-07-24T15:54:24.010000"],["2024-07-24T15:54:25.010000"],["2024-07-24T15:54:26.010000"],["2024-07-24T15:54:27.010000"],["2024-07-24T15:54:28.010000"],["2024-07-24T15:54:29.010000"],["2024-07-24T15:54:30.010000"],["2024-07-24T15:54:31.010000"],["2024-07-24T15:54:32.010000"],["2024-07-24T15:54:33.010000"],["2024-07-24T15:54:34.010000"],["2024-07-24T15:54:35.010000"],["2024-07-24T15:54:36.010000"],["2024-07-24T15:54:37.010000"],["2024-07-24T15:54:38.010000"],["2024-07-24T15:54:39.010000"],["2024-07-24T15:54:40.010000"],["2024-07-24T15:54:41.010000"],["2024-07-24T15:54:42.010000"],["2024-07-24T15:54:43.010000"],["2024-07-24T15:54:44.010000"],["2024-07-24T15:54:45.010000"],["2024-07-24T15:54:46.010000"],["2024-07-24T15:54:47.010000"],["2024-07-24T15:54:48.010000"],["2024-07-24T15:54:49.010000"],["2024-07-24T15:54:50.010000"],["2024-07-24T15:54:51.010000"],["2024-07-24T15:54:52.010000"],["2024-07-24T15:54:53.010000"],["2024-07-24T15:54:54.010000"],["2024-07-24T15:54:55.010000"],["2024-07-24T15:54:56.010000"],["2024-07-24T15:54:57.010000"],["2024-07-24T15:54:58.010000"],["2024-07-24T15:54:59.010000"],["2024-07-24T15:55:00.010000"],["2024-07-24T15:55:01.010000"],["2024-07-24T15:55:02.010000"],["2024-07-24T15:55:03.010000"],["2024-07-24T15:55:04.010000"],["2024-07-24T15:55:05.010000"],["2024-07-24T15:55:06.010000"],["2024-07-24T15:55:07.010000"],["2024-07-24T15:55:08.010000"],["2024-07-24T15:55:09.010000"],["2024-07-24T15:55:10.010000"],["2024-07-24T15:55:11.010000"],["2024-07-24T15:55:12.010000"],["2024-07-24T15:55:13.010000"],["2024-07-24T15:55:14.010000"],["2024-07-24T15:55:15.010000"],["2024-07-24T15:55:16.010000"],["2024-07-24T15:55:17.010000"],["2024-07-24T15:55:18.010000"],["2024-07-24T15:55:19.010000"],["2024-07-24T15:55:20.010000"],["2024-07-24T15:55:21.010000"],["2024-07-24T15:55:22.010000"],["2024-07-24T15:55:23.010000"],["2024-07-24T15:55:24.010000"],["2024-07-24T15:55:25.010000"],["2024-07-24T15:55:26.010000"],["2024-07-24T15:55:27.010000"],["2024-07-24T15:55:28.010000"],["2024-07-24T15:55:29.010000"],["2024-07-24T15:55:30.010000"],["2024-07-24T15:55:31.010000"],["2024-07-24T15:55:32.010000"],["2024-07-24T15:55:33.010000"],["2024-07-24T15:55:34.010000"],["2024-07-24T15:55:35.010000"],["2024-07-24T15:55:36.010000"],["2024-07-24T15:55:37.010000"],["2024-07-24T15:55:38.010000"],["2024-07-24T15:55:39.010000"],["2024-07-24T15:55:40.010000"],["2024-07-24T15:55:41.010000"],["2024-07-24T15:55:42.010000"],["2024-07-24T15:55:43.010000"],["2024-07-24T15:55:44.010000"],["2024-07-24T15:55:45.010000"],["2024-07-24T15:55:46.010000"],["2024-07-24T15:55:47.010000"],["2024-07-24T15:55:48.010000"],["2024-07-24T15:55:49.010000"],["2024-07-24T15:55:50.010000"],["2024-07-24T15:55:51.010000"],["2024-07-24T15:55:52.010000"],["2024-07-24T15:55:53.010000"],["2024-07-24T15:55:54.010000"],["2024-07-24T15:55:55.010000"],["2024-07-24T15:55:56.010000"],["2024-07-24T15:55:57.010000"],["2024-07-24T15:55:58.010000"],["2024-07-24T15:55:59.010000"],["2024-07-24T15:56:00.010000"],["2024-07-24T15:56:01.010000"],["2024-07-24T15:56:02.010000"],["2024-07-24T15:56:03.010000"],["2024-07-24T15:56:04.010000"],["2024-07-24T15:56:05.010000"],["2024-07-24T15:56:06.010000"],["2024-07-24T15:56:07.010000"],["2024-07-24T15:56:08.010000"],["2024-07-24T15:56:09.010000"],["2024-07-24T15:56:10.010000"],["2024-07-24T15:56:11.010000"],["2024-07-24T15:56:12.010000"],["2024-07-24T15:56:13.010000"],["2024-07-24T15:56:14.010000"],["2024-07-24T15:56:15.010000"],["2024-07-24T15:56:16.010000"],["2024-07-24T15:56:17.010000"],["2024-07-24T15:56:18.010000"],["2024-07-24T15:56:19.010000"],["2024-07-24T15:56:20.010000"],["2024-07-24T15:56:21.010000"],["2024-07-24T15:56:22.010000"],["2024-07-24T15:56:23.010000"],["2024-07-24T15:56:24.010000"],["2024-07-24T15:56:25.010000"],["2024-07-24T15:56:26.010000"],["2024-07-24T15:56:27.010000"],["2024-07-24T15:56:28.010000"],["2024-07-24T15:56:29.010000"],["2024-07-24T15:56:30.010000"],["2024-07-24T15:56:31.010000"],["2024-07-24T15:56:32.010000"],["2024-07-24T15:56:33.010000"],["2024-07-24T15:56:34.010000"],["2024-07-24T15:56:35.010000"],["2024-07-24T15:56:36.010000"],["2024-07-24T15:56:37.010000"],["2024-07-24T15:56:38.010000"],["2024-07-24T15:56:39.010000"],["2024-07-24T15:56:40.010000"],["2024-07-24T15:56:41.010000"],["2024-07-24T15:56:42.010000"],["2024-07-24T15:56:43.010000"],["2024-07-24T15:56:44.010000"],["2024-07-24T15:56:45.010000"],["2024-07-24T15:56:46.010000"],["2024-07-24T15:56:47.010000"],["2024-07-24T15:56:48.010000"],["2024-07-24T15:56:49.010000"],["2024-07-24T15:56:50.010000"],["2024-07-24T15:56:51.010000"],["2024-07-24T15:56:52.010000"],["2024-07-24T15:56:53.010000"],["2024-07-24T15:56:54.010000"],["2024-07-24T15:56:55.010000"],["2024-07-24T15:56:56.010000"],["2024-07-24T15:56:57.010000"],["2024-07-24T15:56:58.010000"],["2024-07-24T15:56:59.010000"],["2024-07-24T15:57:00.010000"],["2024-07-24T15:57:01.010000"],["2024-07-24T15:57:02.010000"],["2024-07-24T15:57:03.010000"],["2024-07-24T15:57:04.010000"],["2024-07-24T15:57:05.010000"],["2024-07-24T15:57:06.010000"],["2024-07-24T15:57:07.010000"],["2024-07-24T15:57:08.010000"],["2024-07-24T15:57:09.010000"],["2024-07-24T15:57:10.010000"],["2024-07-24T15:57:11.010000"],["2024-07-24T15:57:12.010000"],["2024-07-24T15:57:13.010000"],["2024-07-24T15:57:14.010000"],["2024-07-24T15:57:15.010000"],["2024-07-24T15:57:16.010000"],["2024-07-24T15:57:17.010000"],["2024-07-24T15:57:18.010000"],["2024-07-24T15:57:19.010000"],["2024-07-24T15:57:20.010000"],["2024-07-24T15:57:21.010000"],["2024-07-24T15:57:22.010000"],["2024-07-24T15:57:23.010000"],["2024-07-24T15:57:24.010000"],["2024-07-24T15:57:25.010000"],["2024-07-24T15:57:26.010000"],["2024-07-24T15:57:27.010000"],["2024-07-24T15:57:28.010000"],["2024-07-24T15:57:29.010000"],["2024-07-24T15:57:30.010000"],["2024-07-24T15:57:31.010000"],["2024-07-24T15:57:32.010000"],["2024-07-24T15:57:33.010000"],["2024-07-24T15:57:34.010000"],["2024-07-24T15:57:35.010000"],["2024-07-24T15:57:36.010000"],["2024-07-24T15:57:37.010000"],["2024-07-24T15:57:38.010000"],["2024-07-24T15:57:39.010000"],["2024-07-24T15:57:40.010000"],["2024-07-24T15:57:41.010000"],["2024-07-24T15:57:42.010000"],["2024-07-24T15:57:43.010000"],["2024-07-24T15:57:44.010000"],["2024-07-24T15:57:45.010000"],["2024-07-24T15:57:46.010000"],["2024-07-24T15:57:47.010000"],["2024-07-24T15:57:48.010000"],["2024-07-24T15:57:49.010000"],["2024-07-24T15:57:50.010000"],["2024-07-24T15:57:51.010000"],["2024-07-24T15:57:52.010000"],["2024-07-24T15:57:53.010000"],["2024-07-24T15:57:54.010000"],["2024-07-24T15:57:55.010000"],["2024-07-24T15:57:56.010000"],["2024-07-24T15:57:57.010000"],["2024-07-24T15:57:58.010000"],["2024-07-24T15:57:59.010000"],["2024-07-24T15:58:00.010000"],["2024-07-24T15:58:01.010000"],["2024-07-24T15:58:02.010000"],["2024-07-24T15:58:03.010000"],["2024-07-24T15:58:04.010000"],["2024-07-24T15:58:05.010000"],["2024-07-24T15:58:06.010000"],["2024-07-24T15:58:07.010000"],["2024-07-24T15:58:08.010000"],["2024-07-24T15:58:09.010000"],["2024-07-24T15:58:10.010000"],["2024-07-24T15:58:11.010000"],["2024-07-24T15:58:12.010000"],["2024-07-24T15:58:13.010000"],["2024-07-24T15:58:14.010000"],["2024-07-24T15:58:15.010000"],["2024-07-24T15:58:16.010000"],["2024-07-24T15:58:17.010000"],["2024-07-24T15:58:18.010000"],["2024-07-24T15:58:19.010000"],["2024-07-24T15:58:20.010000"],["2024-07-24T15:58:21.010000"],["2024-07-24T15:58:22.010000"],["2024-07-24T15:58:23.010000"],["2024-07-24T15:58:24.010000"],["2024-07-24T15:58:25.010000"],["2024-07-24T15:58:26.010000"],["2024-07-24T15:58:27.010000"],["2024-07-24T15:58:28.010000"],["2024-07-24T15:58:29.010000"],["2024-07-24T15:58:30.010000"],["2024-07-24T15:58:31.010000"],["2024-07-24T15:58:32.010000"],["2024-07-24T15:58:33.010000"],["2024-07-24T15:58:34.010000"],["2024-07-24T15:58:35.010000"],["2024-07-24T15:58:36.010000"],["2024-07-24T15:58:37.010000"],["2024-07-24T15:58:38.010000"],["2024-07-24T15:58:39.010000"],["2024-07-24T15:58:40.010000"],["2024-07-24T15:58:41.010000"],["2024-07-24T15:58:42.010000"],["2024-07-24T15:58:43.010000"],["2024-07-24T15:58:44.010000"],["2024-07-24T15:58:45.010000"],["2024-07-24T15:58:46.010000"],["2024-07-24T15:58:47.010000"],["2024-07-24T15:58:48.010000"],["2024-07-24T15:58:49.010000"],["2024-07-24T15:58:50.010000"],["2024-07-24T15:58:51.010000"],["2024-07-24T15:58:52.010000"],["2024-07-24T15:58:53.010000"],["2024-07-24T15:58:54.010000"],["2024-07-24T15:58:55.010000"],["2024-07-24T15:58:56.010000"],["2024-07-24T15:58:57.010000"],["2024-07-24T15:58:58.010000"],["2024-07-24T15:58:59.010000"],["2024-07-24T15:59:00.010000"],["2024-07-24T15:59:01.010000"],["2024-07-24T15:59:02.010000"],["2024-07-24T15:59:03.010000"],["2024-07-24T15:59:04.010000"],["2024-07-24T15:59:05.010000"],["2024-07-24T15:59:06.010000"],["2024-07-24T15:59:07.010000"],["2024-07-24T15:59:08.010000"],["2024-07-24T15:59:09.010000"],["2024-07-24T15:59:10.010000"],["2024-07-24T15:59:11.010000"],["2024-07-24T15:59:12.010000"],["2024-07-24T15:59:13.010000"],["2024-07-24T15:59:14.010000"],["2024-07-24T15:59:15.010000"],["2024-07-24T15:59:16.010000"],["2024-07-24T15:59:17.010000"],["2024-07-24T15:59:18.010000"],["2024-07-24T15:59:19.010000"],["2024-07-24T15:59:20.010000"],["2024-07-24T15:59:21.010000"],["2024-07-24T15:59:22.010000"],["2024-07-24T15:59:23.010000"],["2024-07-24T15:59:24.010000"],["2024-07-24T15:59:25.010000"],["2024-07-24T15:59:26.010000"],["2024-07-24T15:59:27.010000"],["2024-07-24T15:59:28.010000"],["2024-07-24T15:59:29.010000"],["2024-07-24T15:59:30.010000"],["2024-07-24T15:59:31.010000"],["2024-07-24T15:59:32.010000"],["2024-07-24T15:59:33.010000"],["2024-07-24T15:59:34.010000"],["2024-07-24T15:59:35.010000"],["2024-07-24T15:59:36.010000"],["2024-07-24T15:59:37.010000"],["2024-07-24T15:59:38.010000"],["2024-07-24T15:59:39.010000"],["2024-07-24T15:59:40.010000"],["2024-07-24T15:59:41.010000"],["2024-07-24T15:59:42.010000"],["2024-07-24T15:59:43.010000"],["2024-07-24T15:59:44.010000"],["2024-07-24T15:59:45.010000"],["2024-07-24T15:59:46.010000"],["2024-07-24T15:59:47.010000"],["2024-07-24T15:59:48.010000"],["2024-07-24T15:59:49.010000"],["2024-07-24T15:59:50.010000"],["2024-07-24T15:59:51.010000"],["2024-07-24T15:59:52.010000"],["2024-07-24T15:59:53.010000"],["2024-07-24T15:59:54.010000"],["2024-07-24T15:59:55.010000"],["2024-07-24T15:59:56.010000"],["2024-07-24T15:59:57.010000"],["2024-07-24T15:59:58.010000"],["2024-07-24T15:59:59.010000"],["2024-07-24T16:00:00.010000"],["2024-07-24T16:00:01.010000"],["2024-07-24T16:00:02.010000"],["2024-07-24T16:00:03.010000"],["2024-07-24T16:00:04.010000"],["2024-07-24T16:00:05.010000"],["2024-07-24T16:00:06.010000"],["2024-07-24T16:00:07.010000"],["2024-07-24T16:00:08.010000"],["2024-07-24T16:00:09.010000"],["2024-07-24T16:00:10.010000"],["2024-07-24T16:00:11.010000"],["2024-07-24T16:00:12.010000"],["2024-07-24T16:00:13.010000"],["2024-07-24T16:00:14.010000"],["2024-07-24T16:00:15.010000"],["2024-07-24T16:00:16.010000"],["2024-07-24T16:00:17.010000"],["2024-07-24T16:00:18.010000"],["2024-07-24T16:00:19.010000"],["2024-07-24T16:00:20.010000"],["2024-07-24T16:00:21.010000"],["2024-07-24T16:00:22.010000"],["2024-07-24T16:00:23.010000"],["2024-07-24T16:00:24.010000"],["2024-07-24T16:00:25.010000"],["2024-07-24T16:00:26.010000"],["2024-07-24T16:00:27.010000"],["2024-07-24T16:00:28.010000"],["2024-07-24T16:00:29.010000"],["2024-07-24T16:00:30.010000"],["2024-07-24T16:00:31.010000"],["2024-07-24T16:00:32.010000"],["2024-07-24T16:00:33.010000"],["2024-07-24T16:00:34.010000"],["2024-07-24T16:00:35.010000"],["2024-07-24T16:00:36.010000"],["2024-07-24T16:00:37.010000"],["2024-07-24T16:00:38.010000"],["2024-07-24T16:00:39.010000"],["2024-07-24T16:00:40.010000"],["2024-07-24T16:00:41.010000"],["2024-07-24T16:00:42.010000"],["2024-07-24T16:00:43.010000"],["2024-07-24T16:00:44.010000"],["2024-07-24T16:00:45.010000"],["2024-07-24T16:00:46.010000"],["2024-07-24T16:00:47.010000"],["2024-07-24T16:00:48.010000"],["2024-07-24T16:00:49.010000"],["2024-07-24T16:00:50.010000"],["2024-07-24T16:00:51.010000"],["2024-07-24T16:00:52.010000"],["2024-07-24T16:00:53.010000"],["2024-07-24T16:00:54.010000"],["2024-07-24T16:00:55.010000"],["2024-07-24T16:00:56.010000"],["2024-07-24T16:00:57.010000"],["2024-07-24T16:00:58.010000"],["2024-07-24T16:00:59.010000"],["2024-07-24T16:01:00.010000"],["2024-07-24T16:01:01.010000"],["2024-07-24T16:01:02.010000"],["2024-07-24T16:01:03.010000"],["2024-07-24T16:01:04.010000"],["2024-07-24T16:01:05.010000"],["2024-07-24T16:01:06.010000"],["2024-07-24T16:01:07.010000"],["2024-07-24T16:01:08.010000"],["2024-07-24T16:01:09.010000"],["2024-07-24T16:01:10.010000"],["2024-07-24T16:01:11.010000"],["2024-07-24T16:01:12.010000"],["2024-07-24T16:01:13.010000"],["2024-07-24T16:01:14.010000"],["2024-07-24T16:01:15.010000"],["2024-07-24T16:01:16.010000"],["2024-07-24T16:01:17.010000"],["2024-07-24T16:01:18.010000"],["2024-07-24T16:01:19.010000"],["2024-07-24T16:01:20.010000"],["2024-07-24T16:01:21.010000"],["2024-07-24T16:01:22.010000"],["2024-07-24T16:01:23.010000"],["2024-07-24T16:01:24.010000"],["2024-07-24T16:01:25.010000"],["2024-07-24T16:01:26.010000"],["2024-07-24T16:01:27.010000"],["2024-07-24T16:01:28.010000"],["2024-07-24T16:01:29.010000"],["2024-07-24T16:01:30.010000"],["2024-07-24T16:01:31.010000"],["2024-07-24T16:01:32.010000"],["2024-07-24T16:01:33.010000"],["2024-07-24T16:01:34.010000"],["2024-07-24T16:01:35.010000"],["2024-07-24T16:01:36.010000"],["2024-07-24T16:01:37.010000"],["2024-07-24T16:01:38.010000"],["2024-07-24T16:01:39.010000"],["2024-07-24T16:01:40.010000"],["2024-07-24T16:01:41.010000"],["2024-07-24T16:01:42.010000"],["2024-07-24T16:01:43.010000"],["2024-07-24T16:01:44.010000"],["2024-07-24T16:01:45.010000"],["2024-07-24T16:01:46.010000"],["2024-07-24T16:01:47.010000"],["2024-07-24T16:01:48.010000"],["2024-07-24T16:01:49.010000"],["2024-07-24T16:01:50.010000"],["2024-07-24T16:01:51.010000"],["2024-07-24T16:01:52.010000"],["2024-07-24T16:01:53.010000"],["2024-07-24T16:01:54.010000"],["2024-07-24T16:01:55.010000"],["2024-07-24T16:01:56.010000"],["2024-07-24T16:01:57.010000"],["2024-07-24T16:01:58.010000"],["2024-07-24T16:01:59.010000"],["2024-07-24T16:02:00.010000"],["2024-07-24T16:02:01.010000"],["2024-07-24T16:02:02.010000"],["2024-07-24T16:02:03.010000"],["2024-07-24T16:02:04.010000"],["2024-07-24T16:02:05.010000"],["2024-07-24T16:02:06.010000"],["2024-07-24T16:02:07.010000"],["2024-07-24T16:02:08.010000"],["2024-07-24T16:02:09.010000"],["2024-07-24T16:02:10.010000"],["2024-07-24T16:02:11.010000"],["2024-07-24T16:02:12.010000"],["2024-07-24T16:02:13.010000"],["2024-07-24T16:02:14.010000"],["2024-07-24T16:02:15.010000"],["2024-07-24T16:02:16.010000"],["2024-07-24T16:02:17.010000"],["2024-07-24T16:02:18.010000"],["2024-07-24T16:02:19.010000"],["2024-07-24T16:02:20.010000"],["2024-07-24T16:02:21.010000"],["2024-07-24T16:02:22.010000"],["2024-07-24T16:02:23.010000"],["2024-07-24T16:02:24.010000"],["2024-07-24T16:02:25.010000"],["2024-07-24T16:02:26.010000"],["2024-07-24T16:02:27.010000"],["2024-07-24T16:02:28.010000"],["2024-07-24T16:02:29.010000"],["2024-07-24T16:02:30.010000"],["2024-07-24T16:02:31.010000"],["2024-07-24T16:02:32.010000"],["2024-07-24T16:02:33.010000"],["2024-07-24T16:02:34.010000"],["2024-07-24T16:02:35.010000"],["2024-07-24T16:02:36.010000"],["2024-07-24T16:02:37.010000"],["2024-07-24T16:02:38.010000"],["2024-07-24T16:02:39.010000"],["2024-07-24T16:02:40.010000"],["2024-07-24T16:02:41.010000"],["2024-07-24T16:02:42.010000"],["2024-07-24T16:02:43.010000"],["2024-07-24T16:02:44.010000"],["2024-07-24T16:02:45.010000"],["2024-07-24T16:02:46.010000"],["2024-07-24T16:02:47.010000"],["2024-07-24T16:02:48.010000"],["2024-07-24T16:02:49.010000"],["2024-07-24T16:02:50.010000"],["2024-07-24T16:02:51.010000"],["2024-07-24T16:02:52.010000"],["2024-07-24T16:02:53.010000"],["2024-07-24T16:02:54.010000"],["2024-07-24T16:02:55.010000"],["2024-07-24T16:02:56.010000"],["2024-07-24T16:02:57.010000"],["2024-07-24T16:02:58.010000"],["2024-07-24T16:02:59.010000"],["2024-07-24T16:03:00.010000"],["2024-07-24T16:03:01.010000"],["2024-07-24T16:03:02.010000"],["2024-07-24T16:03:03.010000"],["2024-07-24T16:03:04.010000"],["2024-07-24T16:03:05.010000"],["2024-07-24T16:03:06.010000"],["2024-07-24T16:03:07.010000"],["2024-07-24T16:03:08.010000"],["2024-07-24T16:03:09.010000"],["2024-07-24T16:03:10.010000"],["2024-07-24T16:03:11.010000"],["2024-07-24T16:03:12.010000"],["2024-07-24T16:03:13.010000"],["2024-07-24T16:03:14.010000"],["2024-07-24T16:03:15.010000"],["2024-07-24T16:03:16.010000"],["2024-07-24T16:03:17.010000"],["2024-07-24T16:03:18.010000"],["2024-07-24T16:03:19.010000"],["2024-07-24T16:03:20.010000"],["2024-07-24T16:03:21.010000"],["2024-07-24T16:03:22.010000"],["2024-07-24T16:03:23.010000"],["2024-07-24T16:03:24.010000"],["2024-07-24T16:03:25.010000"],["2024-07-24T16:03:26.010000"],["2024-07-24T16:03:27.010000"],["2024-07-24T16:03:28.010000"],["2024-07-24T16:03:29.010000"],["2024-07-24T16:03:30.010000"],["2024-07-24T16:03:31.010000"],["2024-07-24T16:03:32.010000"],["2024-07-24T16:03:33.010000"],["2024-07-24T16:03:34.010000"],["2024-07-24T16:03:35.010000"],["2024-07-24T16:03:36.010000"],["2024-07-24T16:03:37.010000"],["2024-07-24T16:03:38.010000"],["2024-07-24T16:03:39.010000"],["2024-07-24T16:03:40.010000"],["2024-07-24T16:03:41.010000"],["2024-07-24T16:03:42.010000"],["2024-07-24T16:03:43.010000"],["2024-07-24T16:03:44.010000"],["2024-07-24T16:03:45.010000"],["2024-07-24T16:03:46.010000"],["2024-07-24T16:03:47.010000"],["2024-07-24T16:03:48.010000"],["2024-07-24T16:03:49.010000"],["2024-07-24T16:03:50.010000"],["2024-07-24T16:03:51.010000"],["2024-07-24T16:03:52.010000"],["2024-07-24T16:03:53.010000"],["2024-07-24T16:03:54.010000"],["2024-07-24T16:03:55.010000"],["2024-07-24T16:03:56.010000"],["2024-07-24T16:03:57.010000"],["2024-07-24T16:03:58.010000"],["2024-07-24T16:03:59.010000"],["2024-07-24T16:04:00.010000"],["2024-07-24T16:04:01.010000"],["2024-07-24T16:04:02.010000"],["2024-07-24T16:04:03.010000"],["2024-07-24T16:04:04.010000"],["2024-07-24T16:04:05.010000"],["2024-07-24T16:04:06.010000"],["2024-07-24T16:04:07.010000"],["2024-07-24T16:04:08.010000"],["2024-07-24T16:04:09.010000"],["2024-07-24T16:04:10.010000"],["2024-07-24T16:04:11.010000"],["2024-07-24T16:04:12.010000"],["2024-07-24T16:04:13.010000"],["2024-07-24T16:04:14.010000"],["2024-07-24T16:04:15.010000"],["2024-07-24T16:04:16.010000"],["2024-07-24T16:04:17.010000"],["2024-07-24T16:04:18.010000"],["2024-07-24T16:04:19.010000"],["2024-07-24T16:04:20.010000"],["2024-07-24T16:04:21.010000"],["2024-07-24T16:04:22.010000"],["2024-07-24T16:04:23.010000"],["2024-07-24T16:04:24.010000"],["2024-07-24T16:04:25.010000"],["2024-07-24T16:04:26.010000"],["2024-07-24T16:04:27.010000"],["2024-07-24T16:04:28.010000"],["2024-07-24T16:04:29.010000"],["2024-07-24T16:04:30.010000"],["2024-07-24T16:04:31.010000"],["2024-07-24T16:04:32.010000"],["2024-07-24T16:04:33.010000"],["2024-07-24T16:04:34.010000"],["2024-07-24T16:04:35.010000"],["2024-07-24T16:04:36.010000"],["2024-07-24T16:04:37.010000"],["2024-07-24T16:04:38.010000"],["2024-07-24T16:04:39.010000"],["2024-07-24T16:04:40.010000"],["2024-07-24T16:04:41.010000"],["2024-07-24T16:04:42.010000"],["2024-07-24T16:04:43.010000"],["2024-07-24T16:04:44.010000"],["2024-07-24T16:04:45.010000"],["2024-07-24T16:04:46.010000"],["2024-07-24T16:04:47.010000"],["2024-07-24T16:04:48.010000"],["2024-07-24T16:04:49.010000"],["2024-07-24T16:04:50.010000"],["2024-07-24T16:04:51.010000"],["2024-07-24T16:04:52.010000"],["2024-07-24T16:04:53.010000"],["2024-07-24T16:04:54.010000"],["2024-07-24T16:04:55.010000"],["2024-07-24T16:04:56.010000"],["2024-07-24T16:04:57.010000"],["2024-07-24T16:04:58.010000"],["2024-07-24T16:04:59.010000"],["2024-07-24T16:05:00.010000"],["2024-07-24T16:05:01.010000"],["2024-07-24T16:05:02.010000"],["2024-07-24T16:05:03.010000"],["2024-07-24T16:05:04.010000"],["2024-07-24T16:05:05.010000"],["2024-07-24T16:05:06.010000"],["2024-07-24T16:05:07.010000"],["2024-07-24T16:05:08.010000"],["2024-07-24T16:05:09.010000"],["2024-07-24T16:05:10.010000"],["2024-07-24T16:05:11.010000"],["2024-07-24T16:05:12.010000"],["2024-07-24T16:05:13.010000"],["2024-07-24T16:05:14.010000"],["2024-07-24T16:05:15.010000"],["2024-07-24T16:05:16.010000"],["2024-07-24T16:05:17.010000"],["2024-07-24T16:05:18.010000"],["2024-07-24T16:05:19.010000"],["2024-07-24T16:05:20.010000"],["2024-07-24T16:05:21.010000"],["2024-07-24T16:05:22.010000"],["2024-07-24T16:05:23.010000"],["2024-07-24T16:05:24.010000"],["2024-07-24T16:05:25.010000"],["2024-07-24T16:05:26.010000"],["2024-07-24T16:05:27.010000"],["2024-07-24T16:05:28.010000"],["2024-07-24T16:05:29.010000"],["2024-07-24T16:05:30.010000"],["2024-07-24T16:05:31.010000"],["2024-07-24T16:05:32.010000"],["2024-07-24T16:05:33.010000"],["2024-07-24T16:05:34.010000"],["2024-07-24T16:05:35.010000"],["2024-07-24T16:05:36.010000"],["2024-07-24T16:05:37.010000"],["2024-07-24T16:05:38.010000"],["2024-07-24T16:05:39.010000"],["2024-07-24T16:05:40.010000"],["2024-07-24T16:05:41.010000"],["2024-07-24T16:05:42.010000"],["2024-07-24T16:05:43.010000"],["2024-07-24T16:05:44.010000"],["2024-07-24T16:05:45.010000"],["2024-07-24T16:05:46.010000"],["2024-07-24T16:05:47.010000"],["2024-07-24T16:05:48.010000"],["2024-07-24T16:05:49.010000"],["2024-07-24T16:05:50.010000"],["2024-07-24T16:05:51.010000"],["2024-07-24T16:05:52.010000"],["2024-07-24T16:05:53.010000"],["2024-07-24T16:05:54.010000"],["2024-07-24T16:05:55.010000"],["2024-07-24T16:05:56.010000"],["2024-07-24T16:05:57.010000"],["2024-07-24T16:05:58.010000"],["2024-07-24T16:05:59.010000"],["2024-07-24T16:06:00.010000"],["2024-07-24T16:06:01.010000"],["2024-07-24T16:06:02.010000"],["2024-07-24T16:06:03.010000"],["2024-07-24T16:06:04.010000"],["2024-07-24T16:06:05.010000"],["2024-07-24T16:06:06.010000"],["2024-07-24T16:06:07.010000"],["2024-07-24T16:06:08.010000"],["2024-07-24T16:06:09.010000"],["2024-07-24T16:06:10.010000"],["2024-07-24T16:06:11.010000"],["2024-07-24T16:06:12.010000"],["2024-07-24T16:06:13.010000"],["2024-07-24T16:06:14.010000"],["2024-07-24T16:06:15.010000"],["2024-07-24T16:06:16.010000"],["2024-07-24T16:06:17.010000"],["2024-07-24T16:06:18.010000"],["2024-07-24T16:06:19.010000"],["2024-07-24T16:06:20.010000"],["2024-07-24T16:06:21.010000"],["2024-07-24T16:06:22.010000"],["2024-07-24T16:06:23.010000"],["2024-07-24T16:06:24.010000"],["2024-07-24T16:06:25.010000"],["2024-07-24T16:06:26.010000"],["2024-07-24T16:06:27.010000"],["2024-07-24T16:06:28.010000"],["2024-07-24T16:06:29.010000"],["2024-07-24T16:06:30.010000"],["2024-07-24T16:06:31.010000"],["2024-07-24T16:06:32.010000"],["2024-07-24T16:06:33.010000"],["2024-07-24T16:06:34.010000"],["2024-07-24T16:06:35.010000"],["2024-07-24T16:06:36.010000"],["2024-07-24T16:06:37.010000"],["2024-07-24T16:06:38.010000"],["2024-07-24T16:06:39.010000"],["2024-07-24T16:06:40.010000"],["2024-07-24T16:06:41.010000"],["2024-07-24T16:06:42.010000"],["2024-07-24T16:06:43.010000"],["2024-07-24T16:06:44.010000"],["2024-07-24T16:06:45.010000"],["2024-07-24T16:06:46.010000"],["2024-07-24T16:06:47.010000"],["2024-07-24T16:06:48.010000"],["2024-07-24T16:06:49.010000"],["2024-07-24T16:06:50.010000"],["2024-07-24T16:06:51.010000"],["2024-07-24T16:06:52.010000"],["2024-07-24T16:06:53.010000"],["2024-07-24T16:06:54.010000"],["2024-07-24T16:06:55.010000"],["2024-07-24T16:06:56.010000"],["2024-07-24T16:06:57.010000"],["2024-07-24T16:06:58.010000"],["2024-07-24T16:06:59.010000"],["2024-07-24T16:07:00.010000"],["2024-07-24T16:07:01.010000"],["2024-07-24T16:07:02.010000"],["2024-07-24T16:07:03.010000"],["2024-07-24T16:07:04.010000"],["2024-07-24T16:07:05.010000"],["2024-07-24T16:07:06.010000"],["2024-07-24T16:07:07.010000"],["2024-07-24T16:07:08.010000"],["2024-07-24T16:07:09.010000"],["2024-07-24T16:07:10.010000"],["2024-07-24T16:07:11.010000"],["2024-07-24T16:07:12.010000"],["2024-07-24T16:07:13.010000"],["2024-07-24T16:07:14.010000"],["2024-07-24T16:07:15.010000"],["2024-07-24T16:07:16.010000"],["2024-07-24T16:07:17.010000"],["2024-07-24T16:07:18.010000"],["2024-07-24T16:07:19.010000"],["2024-07-24T16:07:20.010000"],["2024-07-24T16:07:21.010000"],["2024-07-24T16:07:22.010000"],["2024-07-24T16:07:23.010000"],["2024-07-24T16:07:24.010000"],["2024-07-24T16:07:25.010000"],["2024-07-24T16:07:26.010000"],["2024-07-24T16:07:27.010000"],["2024-07-24T16:07:28.010000"],["2024-07-24T16:07:29.010000"],["2024-07-24T16:07:30.010000"],["2024-07-24T16:07:31.010000"],["2024-07-24T16:07:32.010000"],["2024-07-24T16:07:33.010000"],["2024-07-24T16:07:34.010000"],["2024-07-24T16:07:35.010000"],["2024-07-24T16:07:36.010000"],["2024-07-24T16:07:37.010000"],["2024-07-24T16:07:38.010000"],["2024-07-24T16:07:39.010000"],["2024-07-24T16:07:40.010000"],["2024-07-24T16:07:41.010000"],["2024-07-24T16:07:42.010000"],["2024-07-24T16:07:43.010000"],["2024-07-24T16:07:44.010000"],["2024-07-24T16:07:45.010000"],["2024-07-24T16:07:46.010000"],["2024-07-24T16:07:47.010000"],["2024-07-24T16:07:48.010000"],["2024-07-24T16:07:49.010000"],["2024-07-24T16:07:50.010000"],["2024-07-24T16:07:51.010000"],["2024-07-24T16:07:52.010000"],["2024-07-24T16:07:53.010000"],["2024-07-24T16:07:54.010000"],["2024-07-24T16:07:55.010000"],["2024-07-24T16:07:56.010000"],["2024-07-24T16:07:57.010000"],["2024-07-24T16:07:58.010000"],["2024-07-24T16:07:59.010000"],["2024-07-24T16:08:00.010000"],["2024-07-24T16:08:01.010000"],["2024-07-24T16:08:02.010000"],["2024-07-24T16:08:03.010000"],["2024-07-24T16:08:04.010000"],["2024-07-24T16:08:05.010000"],["2024-07-24T16:08:06.010000"],["2024-07-24T16:08:07.010000"],["2024-07-24T16:08:08.010000"],["2024-07-24T16:08:09.010000"],["2024-07-24T16:08:10.010000"],["2024-07-24T16:08:11.010000"],["2024-07-24T16:08:12.010000"],["2024-07-24T16:08:13.010000"],["2024-07-24T16:08:14.010000"],["2024-07-24T16:08:15.010000"],["2024-07-24T16:08:16.010000"],["2024-07-24T16:08:17.010000"],["2024-07-24T16:08:18.010000"],["2024-07-24T16:08:19.010000"],["2024-07-24T16:08:20.010000"],["2024-07-24T16:08:21.010000"],["2024-07-24T16:08:22.010000"],["2024-07-24T16:08:23.010000"],["2024-07-24T16:08:24.010000"],["2024-07-24T16:08:25.010000"],["2024-07-24T16:08:26.010000"],["2024-07-24T16:08:27.010000"],["2024-07-24T16:08:28.010000"],["2024-07-24T16:08:29.010000"],["2024-07-24T16:08:30.010000"],["2024-07-24T16:08:31.010000"],["2024-07-24T16:08:32.010000"],["2024-07-24T16:08:33.010000"],["2024-07-24T16:08:34.010000"],["2024-07-24T16:08:35.010000"],["2024-07-24T16:08:36.010000"],["2024-07-24T16:08:37.010000"],["2024-07-24T16:08:38.010000"],["2024-07-24T16:08:39.010000"],["2024-07-24T16:08:40.010000"],["2024-07-24T16:08:41.010000"],["2024-07-24T16:08:42.010000"],["2024-07-24T16:08:43.010000"],["2024-07-24T16:08:44.010000"],["2024-07-24T16:08:45.010000"],["2024-07-24T16:08:46.010000"],["2024-07-24T16:08:47.010000"],["2024-07-24T16:08:48.010000"],["2024-07-24T16:08:49.010000"],["2024-07-24T16:08:50.010000"],["2024-07-24T16:08:51.010000"],["2024-07-24T16:08:52.010000"],["2024-07-24T16:08:53.010000"],["2024-07-24T16:08:54.010000"],["2024-07-24T16:08:55.010000"],["2024-07-24T16:08:56.010000"],["2024-07-24T16:08:57.010000"],["2024-07-24T16:08:58.010000"],["2024-07-24T16:08:59.010000"],["2024-07-24T16:09:00.010000"],["2024-07-24T16:09:01.010000"],["2024-07-24T16:09:02.010000"],["2024-07-24T16:09:03.010000"],["2024-07-24T16:09:04.010000"],["2024-07-24T16:09:05.010000"],["2024-07-24T16:09:06.010000"],["2024-07-24T16:09:07.010000"],["2024-07-24T16:09:08.010000"],["2024-07-24T16:09:09.010000"],["2024-07-24T16:09:10.010000"],["2024-07-24T16:09:11.010000"],["2024-07-24T16:09:12.010000"],["2024-07-24T16:09:13.010000"],["2024-07-24T16:09:14.010000"],["2024-07-24T16:09:15.010000"],["2024-07-24T16:09:16.010000"],["2024-07-24T16:09:17.010000"],["2024-07-24T16:09:18.010000"],["2024-07-24T16:09:19.010000"],["2024-07-24T16:09:20.010000"],["2024-07-24T16:09:21.010000"],["2024-07-24T16:09:22.010000"],["2024-07-24T16:09:23.010000"],["2024-07-24T16:09:24.010000"],["2024-07-24T16:09:25.010000"],["2024-07-24T16:09:26.010000"],["2024-07-24T16:09:27.010000"],["2024-07-24T16:09:28.010000"],["2024-07-24T16:09:29.010000"],["2024-07-24T16:09:30.010000"],["2024-07-24T16:09:31.010000"],["2024-07-24T16:09:32.010000"],["2024-07-24T16:09:33.010000"],["2024-07-24T16:09:34.010000"],["2024-07-24T16:09:35.010000"],["2024-07-24T16:09:36.010000"],["2024-07-24T16:09:37.010000"],["2024-07-24T16:09:38.010000"],["2024-07-24T16:09:39.010000"],["2024-07-24T16:09:40.010000"],["2024-07-24T16:09:41.010000"],["2024-07-24T16:09:42.010000"],["2024-07-24T16:09:43.010000"],["2024-07-24T16:09:44.010000"],["2024-07-24T16:09:45.010000"],["2024-07-24T16:09:46.010000"],["2024-07-24T16:09:47.010000"],["2024-07-24T16:09:48.010000"],["2024-07-24T16:09:49.010000"],["2024-07-24T16:09:50.010000"],["2024-07-24T16:09:51.010000"],["2024-07-24T16:09:52.010000"],["2024-07-24T16:09:53.010000"],["2024-07-24T16:09:54.010000"],["2024-07-24T16:09:55.010000"],["2024-07-24T16:09:56.010000"],["2024-07-24T16:09:57.010000"],["2024-07-24T16:09:58.010000"],["2024-07-24T16:09:59.010000"],["2024-07-24T16:10:00.010000"],["2024-07-24T16:10:01.010000"],["2024-07-24T16:10:02.010000"],["2024-07-24T16:10:03.010000"],["2024-07-24T16:10:04.010000"],["2024-07-24T16:10:05.010000"],["2024-07-24T16:10:06.010000"],["2024-07-24T16:10:07.010000"],["2024-07-24T16:10:08.010000"],["2024-07-24T16:10:09.010000"],["2024-07-24T16:10:10.010000"],["2024-07-24T16:10:11.010000"],["2024-07-24T16:10:12.010000"],["2024-07-24T16:10:13.010000"],["2024-07-24T16:10:14.010000"],["2024-07-24T16:10:15.010000"],["2024-07-24T16:10:16.010000"],["2024-07-24T16:10:17.010000"],["2024-07-24T16:10:18.010000"],["2024-07-24T16:10:19.010000"],["2024-07-24T16:10:20.010000"],["2024-07-24T16:10:21.010000"],["2024-07-24T16:10:22.010000"],["2024-07-24T16:10:23.010000"],["2024-07-24T16:10:24.010000"],["2024-07-24T16:10:25.010000"],["2024-07-24T16:10:26.010000"],["2024-07-24T16:10:27.010000"],["2024-07-24T16:10:28.010000"],["2024-07-24T16:10:29.010000"],["2024-07-24T16:10:30.010000"],["2024-07-24T16:10:31.010000"],["2024-07-24T16:10:32.010000"],["2024-07-24T16:10:33.010000"],["2024-07-24T16:10:34.010000"],["2024-07-24T16:10:35.010000"],["2024-07-24T16:10:36.010000"],["2024-07-24T16:10:37.010000"],["2024-07-24T16:10:38.010000"],["2024-07-24T16:10:39.010000"],["2024-07-24T16:10:40.010000"],["2024-07-24T16:10:41.010000"],["2024-07-24T16:10:42.010000"],["2024-07-24T16:10:43.010000"],["2024-07-24T16:10:44.010000"],["2024-07-24T16:10:45.010000"],["2024-07-24T16:10:46.010000"],["2024-07-24T16:10:47.010000"],["2024-07-24T16:10:48.010000"],["2024-07-24T16:10:49.010000"],["2024-07-24T16:10:50.010000"],["2024-07-24T16:10:51.010000"],["2024-07-24T16:10:52.010000"],["2024-07-24T16:10:53.010000"],["2024-07-24T16:10:54.010000"],["2024-07-24T16:10:55.010000"],["2024-07-24T16:10:56.010000"],["2024-07-24T16:10:57.010000"],["2024-07-24T16:10:58.010000"],["2024-07-24T16:10:59.010000"],["2024-07-24T16:11:00.010000"],["2024-07-24T16:11:01.010000"],["2024-07-24T16:11:02.010000"],["2024-07-24T16:11:03.010000"],["2024-07-24T16:11:04.010000"],["2024-07-24T16:11:05.010000"],["2024-07-24T16:11:06.010000"],["2024-07-24T16:11:07.010000"],["2024-07-24T16:11:08.010000"],["2024-07-24T16:11:09.010000"],["2024-07-24T16:11:10.010000"],["2024-07-24T16:11:11.010000"],["2024-07-24T16:11:12.010000"],["2024-07-24T16:11:13.010000"],["2024-07-24T16:11:14.010000"],["2024-07-24T16:11:15.010000"],["2024-07-24T16:11:16.010000"],["2024-07-24T16:11:17.010000"],["2024-07-24T16:11:18.010000"],["2024-07-24T16:11:19.010000"],["2024-07-24T16:11:20.010000"],["2024-07-24T16:11:21.010000"],["2024-07-24T16:11:22.010000"],["2024-07-24T16:11:23.010000"],["2024-07-24T16:11:24.010000"],["2024-07-24T16:11:25.010000"],["2024-07-24T16:11:26.010000"],["2024-07-24T16:11:27.010000"],["2024-07-24T16:11:28.010000"],["2024-07-24T16:11:29.010000"],["2024-07-24T16:11:30.010000"],["2024-07-24T16:11:31.010000"],["2024-07-24T16:11:32.010000"],["2024-07-24T16:11:33.010000"],["2024-07-24T16:11:34.010000"],["2024-07-24T16:11:35.010000"],["2024-07-24T16:11:36.010000"],["2024-07-24T16:11:37.010000"],["2024-07-24T16:11:38.010000"],["2024-07-24T16:11:39.010000"],["2024-07-24T16:11:40.010000"],["2024-07-24T16:11:41.010000"],["2024-07-24T16:11:42.010000"],["2024-07-24T16:11:43.010000"],["2024-07-24T16:11:44.010000"],["2024-07-24T16:11:45.010000"],["2024-07-24T16:11:46.010000"],["2024-07-24T16:11:47.010000"],["2024-07-24T16:11:48.010000"],["2024-07-24T16:11:49.010000"],["2024-07-24T16:11:50.010000"],["2024-07-24T16:11:51.010000"],["2024-07-24T16:11:52.010000"],["2024-07-24T16:11:53.010000"],["2024-07-24T16:11:54.010000"],["2024-07-24T16:11:55.010000"],["2024-07-24T16:11:56.010000"],["2024-07-24T16:11:57.010000"],["2024-07-24T16:11:58.010000"],["2024-07-24T16:11:59.010000"],["2024-07-24T16:12:00.010000"],["2024-07-24T16:12:01.010000"],["2024-07-24T16:12:02.010000"],["2024-07-24T16:12:03.010000"],["2024-07-24T16:12:04.010000"],["2024-07-24T16:12:05.010000"],["2024-07-24T16:12:06.010000"],["2024-07-24T16:12:07.010000"],["2024-07-24T16:12:08.010000"],["2024-07-24T16:12:09.010000"],["2024-07-24T16:12:10.010000"],["2024-07-24T16:12:11.010000"],["2024-07-24T16:12:12.010000"],["2024-07-24T16:12:13.010000"],["2024-07-24T16:12:14.010000"],["2024-07-24T16:12:15.010000"],["2024-07-24T16:12:16.010000"],["2024-07-24T16:12:17.010000"],["2024-07-24T16:12:18.010000"],["2024-07-24T16:12:19.010000"],["2024-07-24T16:12:20.010000"],["2024-07-24T16:12:21.010000"],["2024-07-24T16:12:22.010000"],["2024-07-24T16:12:23.010000"],["2024-07-24T16:12:24.010000"],["2024-07-24T16:12:25.010000"],["2024-07-24T16:12:26.010000"],["2024-07-24T16:12:27.010000"],["2024-07-24T16:12:28.010000"],["2024-07-24T16:12:29.010000"],["2024-07-24T16:12:30.010000"],["2024-07-24T16:12:31.010000"],["2024-07-24T16:12:32.010000"],["2024-07-24T16:12:33.010000"],["2024-07-24T16:12:34.010000"],["2024-07-24T16:12:35.010000"],["2024-07-24T16:12:36.010000"],["2024-07-24T16:12:37.010000"],["2024-07-24T16:12:38.010000"],["2024-07-24T16:12:39.010000"],["2024-07-24T16:12:40.010000"],["2024-07-24T16:12:41.010000"],["2024-07-24T16:12:42.010000"],["2024-07-24T16:12:43.010000"],["2024-07-24T16:12:44.010000"],["2024-07-24T16:12:45.010000"],["2024-07-24T16:12:46.010000"],["2024-07-24T16:12:47.010000"],["2024-07-24T16:12:48.010000"],["2024-07-24T16:12:49.010000"],["2024-07-24T16:12:50.010000"],["2024-07-24T16:12:51.010000"],["2024-07-24T16:12:52.010000"],["2024-07-24T16:12:53.010000"],["2024-07-24T16:12:54.010000"],["2024-07-24T16:12:55.010000"],["2024-07-24T16:12:56.010000"],["2024-07-24T16:12:57.010000"],["2024-07-24T16:12:58.010000"],["2024-07-24T16:12:59.010000"],["2024-07-24T16:13:00.010000"],["2024-07-24T16:13:01.010000"],["2024-07-24T16:13:02.010000"],["2024-07-24T16:13:03.010000"],["2024-07-24T16:13:04.010000"],["2024-07-24T16:13:05.010000"],["2024-07-24T16:13:06.010000"],["2024-07-24T16:13:07.010000"],["2024-07-24T16:13:08.010000"],["2024-07-24T16:13:09.010000"],["2024-07-24T16:13:10.010000"],["2024-07-24T16:13:11.010000"],["2024-07-24T16:13:12.010000"],["2024-07-24T16:13:13.010000"],["2024-07-24T16:13:14.010000"],["2024-07-24T16:13:15.010000"],["2024-07-24T16:13:16.010000"],["2024-07-24T16:13:17.010000"],["2024-07-24T16:13:18.010000"],["2024-07-24T16:13:19.010000"],["2024-07-24T16:13:20.010000"],["2024-07-24T16:13:21.010000"],["2024-07-24T16:13:22.010000"],["2024-07-24T16:13:23.010000"],["2024-07-24T16:13:24.010000"],["2024-07-24T16:13:25.010000"],["2024-07-24T16:13:26.010000"],["2024-07-24T16:13:27.010000"],["2024-07-24T16:13:28.010000"],["2024-07-24T16:13:29.010000"],["2024-07-24T16:13:30.010000"],["2024-07-24T16:13:31.010000"],["2024-07-24T16:13:32.010000"],["2024-07-24T16:13:33.010000"],["2024-07-24T16:13:34.010000"],["2024-07-24T16:13:35.010000"],["2024-07-24T16:13:36.010000"],["2024-07-24T16:13:37.010000"],["2024-07-24T16:13:38.010000"],["2024-07-24T16:13:39.010000"],["2024-07-24T16:13:40.010000"],["2024-07-24T16:13:41.010000"],["2024-07-24T16:13:42.010000"],["2024-07-24T16:13:43.010000"],["2024-07-24T16:13:44.010000"],["2024-07-24T16:13:45.010000"],["2024-07-24T16:13:46.010000"],["2024-07-24T16:13:47.010000"],["2024-07-24T16:13:48.010000"],["2024-07-24T16:13:49.010000"],["2024-07-24T16:13:50.010000"],["2024-07-24T16:13:51.010000"],["2024-07-24T16:13:52.010000"],["2024-07-24T16:13:53.010000"],["2024-07-24T16:13:54.010000"],["2024-07-24T16:13:55.010000"],["2024-07-24T16:13:56.010000"],["2024-07-24T16:13:57.010000"],["2024-07-24T16:13:58.010000"],["2024-07-24T16:13:59.010000"],["2024-07-24T16:14:00.010000"],["2024-07-24T16:14:01.010000"],["2024-07-24T16:14:02.010000"],["2024-07-24T16:14:03.010000"],["2024-07-24T16:14:04.010000"],["2024-07-24T16:14:05.010000"],["2024-07-24T16:14:06.010000"],["2024-07-24T16:14:07.010000"],["2024-07-24T16:14:08.010000"],["2024-07-24T16:14:09.010000"],["2024-07-24T16:14:10.010000"],["2024-07-24T16:14:11.010000"],["2024-07-24T16:14:12.010000"],["2024-07-24T16:14:13.010000"],["2024-07-24T16:14:14.010000"],["2024-07-24T16:14:15.010000"],["2024-07-24T16:14:16.010000"],["2024-07-24T16:14:17.010000"],["2024-07-24T16:14:18.010000"],["2024-07-24T16:14:19.010000"],["2024-07-24T16:14:20.010000"],["2024-07-24T16:14:21.010000"],["2024-07-24T16:14:22.010000"],["2024-07-24T16:14:23.010000"],["2024-07-24T16:14:24.010000"],["2024-07-24T16:14:25.010000"],["2024-07-24T16:14:26.010000"],["2024-07-24T16:14:27.010000"],["2024-07-24T16:14:28.010000"],["2024-07-24T16:14:29.010000"],["2024-07-24T16:14:30.010000"],["2024-07-24T16:14:31.010000"],["2024-07-24T16:14:32.010000"],["2024-07-24T16:14:33.010000"],["2024-07-24T16:14:34.010000"],["2024-07-24T16:14:35.010000"],["2024-07-24T16:14:36.010000"],["2024-07-24T16:14:37.010000"],["2024-07-24T16:14:38.010000"],["2024-07-24T16:14:39.010000"],["2024-07-24T16:14:40.010000"],["2024-07-24T16:14:41.010000"],["2024-07-24T16:14:42.010000"],["2024-07-24T16:14:43.010000"],["2024-07-24T16:14:44.010000"],["2024-07-24T16:14:45.010000"],["2024-07-24T16:14:46.010000"],["2024-07-24T16:14:47.010000"],["2024-07-24T16:14:48.010000"],["2024-07-24T16:14:49.010000"],["2024-07-24T16:14:50.010000"],["2024-07-24T16:14:51.010000"],["2024-07-24T16:14:52.010000"],["2024-07-24T16:14:53.010000"],["2024-07-24T16:14:54.010000"],["2024-07-24T16:14:55.010000"],["2024-07-24T16:14:56.010000"],["2024-07-24T16:14:57.010000"],["2024-07-24T16:14:58.010000"],["2024-07-24T16:14:59.010000"],["2024-07-24T16:15:00.010000"],["2024-07-24T16:15:01.010000"],["2024-07-24T16:15:02.010000"],["2024-07-24T16:15:03.010000"],["2024-07-24T16:15:04.010000"],["2024-07-24T16:15:05.010000"],["2024-07-24T16:15:06.010000"],["2024-07-24T16:15:07.010000"],["2024-07-24T16:15:08.010000"],["2024-07-24T16:15:09.010000"],["2024-07-24T16:15:10.010000"],["2024-07-24T16:15:11.010000"],["2024-07-24T16:15:12.010000"],["2024-07-24T16:15:13.010000"],["2024-07-24T16:15:14.010000"],["2024-07-24T16:15:15.010000"],["2024-07-24T16:15:16.010000"],["2024-07-24T16:15:17.010000"],["2024-07-24T16:15:18.010000"],["2024-07-24T16:15:19.010000"],["2024-07-24T16:15:20.010000"],["2024-07-24T16:15:21.010000"],["2024-07-24T16:15:22.010000"],["2024-07-24T16:15:23.010000"],["2024-07-24T16:15:24.010000"],["2024-07-24T16:15:25.010000"],["2024-07-24T16:15:26.010000"],["2024-07-24T16:15:27.010000"],["2024-07-24T16:15:28.010000"],["2024-07-24T16:15:29.010000"],["2024-07-24T16:15:30.010000"],["2024-07-24T16:15:31.010000"],["2024-07-24T16:15:32.010000"],["2024-07-24T16:15:33.010000"],["2024-07-24T16:15:34.010000"],["2024-07-24T16:15:35.010000"],["2024-07-24T16:15:36.010000"],["2024-07-24T16:15:37.010000"],["2024-07-24T16:15:38.010000"],["2024-07-24T16:15:39.010000"],["2024-07-24T16:15:40.010000"],["2024-07-24T16:15:41.010000"],["2024-07-24T16:15:42.010000"],["2024-07-24T16:15:43.010000"],["2024-07-24T16:15:44.010000"],["2024-07-24T16:15:45.010000"],["2024-07-24T16:15:46.010000"],["2024-07-24T16:15:47.010000"],["2024-07-24T16:15:48.010000"],["2024-07-24T16:15:49.010000"],["2024-07-24T16:15:50.010000"],["2024-07-24T16:15:51.010000"],["2024-07-24T16:15:52.010000"],["2024-07-24T16:15:53.010000"],["2024-07-24T16:15:54.010000"],["2024-07-24T16:15:55.010000"],["2024-07-24T16:15:56.010000"],["2024-07-24T16:15:57.010000"],["2024-07-24T16:15:58.010000"],["2024-07-24T16:15:59.010000"],["2024-07-24T16:16:00.010000"],["2024-07-24T16:16:01.010000"],["2024-07-24T16:16:02.010000"],["2024-07-24T16:16:03.010000"],["2024-07-24T16:16:04.010000"],["2024-07-24T16:16:05.010000"],["2024-07-24T16:16:06.010000"],["2024-07-24T16:16:07.010000"],["2024-07-24T16:16:08.010000"],["2024-07-24T16:16:09.010000"],["2024-07-24T16:16:10.010000"],["2024-07-24T16:16:11.010000"],["2024-07-24T16:16:12.010000"],["2024-07-24T16:16:13.010000"],["2024-07-24T16:16:14.010000"],["2024-07-24T16:16:15.010000"],["2024-07-24T16:16:16.010000"],["2024-07-24T16:16:17.010000"],["2024-07-24T16:16:18.010000"],["2024-07-24T16:16:19.010000"],["2024-07-24T16:16:20.010000"],["2024-07-24T16:16:21.010000"],["2024-07-24T16:16:22.010000"],["2024-07-24T16:16:23.010000"],["2024-07-24T16:16:24.010000"],["2024-07-24T16:16:25.010000"],["2024-07-24T16:16:26.010000"],["2024-07-24T16:16:27.010000"],["2024-07-24T16:16:28.010000"],["2024-07-24T16:16:29.010000"],["2024-07-24T16:16:30.010000"],["2024-07-24T16:16:31.010000"],["2024-07-24T16:16:32.010000"],["2024-07-24T16:16:33.010000"],["2024-07-24T16:16:34.010000"],["2024-07-24T16:16:35.010000"],["2024-07-24T16:16:36.010000"],["2024-07-24T16:16:37.010000"],["2024-07-24T16:16:38.010000"],["2024-07-24T16:16:39.010000"],["2024-07-24T16:16:40.010000"],["2024-07-24T16:16:41.010000"],["2024-07-24T16:16:42.010000"],["2024-07-24T16:16:43.010000"],["2024-07-24T16:16:44.010000"],["2024-07-24T16:16:45.010000"],["2024-07-24T16:16:46.010000"],["2024-07-24T16:16:47.010000"],["2024-07-24T16:16:48.010000"],["2024-07-24T16:16:49.010000"],["2024-07-24T16:16:50.010000"],["2024-07-24T16:16:51.010000"],["2024-07-24T16:16:52.010000"],["2024-07-24T16:16:53.010000"],["2024-07-24T16:16:54.010000"],["2024-07-24T16:16:55.010000"],["2024-07-24T16:16:56.010000"],["2024-07-24T16:16:57.010000"],["2024-07-24T16:16:58.010000"],["2024-07-24T16:16:59.010000"],["2024-07-24T16:17:00.010000"],["2024-07-24T16:17:01.010000"],["2024-07-24T16:17:02.010000"],["2024-07-24T16:17:03.010000"],["2024-07-24T16:17:04.010000"],["2024-07-24T16:17:05.010000"],["2024-07-24T16:17:06.010000"],["2024-07-24T16:17:07.010000"],["2024-07-24T16:17:08.010000"],["2024-07-24T16:17:09.010000"],["2024-07-24T16:17:10.010000"],["2024-07-24T16:17:11.010000"],["2024-07-24T16:17:12.010000"],["2024-07-24T16:17:13.010000"],["2024-07-24T16:17:14.010000"],["2024-07-24T16:17:15.010000"],["2024-07-24T16:17:16.010000"],["2024-07-24T16:17:17.010000"],["2024-07-24T16:17:18.010000"],["2024-07-24T16:17:19.010000"],["2024-07-24T16:17:20.010000"],["2024-07-24T16:17:21.010000"],["2024-07-24T16:17:22.010000"],["2024-07-24T16:17:23.010000"],["2024-07-24T16:17:24.010000"],["2024-07-24T16:17:25.010000"],["2024-07-24T16:17:26.010000"],["2024-07-24T16:17:27.010000"],["2024-07-24T16:17:28.010000"],["2024-07-24T16:17:29.010000"],["2024-07-24T16:17:30.010000"],["2024-07-24T16:17:31.010000"],["2024-07-24T16:17:32.010000"],["2024-07-24T16:17:33.010000"],["2024-07-24T16:17:34.010000"],["2024-07-24T16:17:35.010000"],["2024-07-24T16:17:36.010000"],["2024-07-24T16:17:37.010000"],["2024-07-24T16:17:38.010000"],["2024-07-24T16:17:39.010000"],["2024-07-24T16:17:40.010000"],["2024-07-24T16:17:41.010000"],["2024-07-24T16:17:42.010000"],["2024-07-24T16:17:43.010000"],["2024-07-24T16:17:44.010000"],["2024-07-24T16:17:45.010000"],["2024-07-24T16:17:46.010000"],["2024-07-24T16:17:47.010000"],["2024-07-24T16:17:48.010000"],["2024-07-24T16:17:49.010000"],["2024-07-24T16:17:50.010000"],["2024-07-24T16:17:51.010000"],["2024-07-24T16:17:52.010000"],["2024-07-24T16:17:53.010000"],["2024-07-24T16:17:54.010000"],["2024-07-24T16:17:55.010000"],["2024-07-24T16:17:56.010000"],["2024-07-24T16:17:57.010000"],["2024-07-24T16:17:58.010000"],["2024-07-24T16:17:59.010000"],["2024-07-24T16:18:00.010000"],["2024-07-24T16:18:01.010000"],["2024-07-24T16:18:02.010000"],["2024-07-24T16:18:03.010000"],["2024-07-24T16:18:04.010000"],["2024-07-24T16:18:05.010000"],["2024-07-24T16:18:06.010000"],["2024-07-24T16:18:07.010000"],["2024-07-24T16:18:08.010000"],["2024-07-24T16:18:09.010000"],["2024-07-24T16:18:10.010000"],["2024-07-24T16:18:11.010000"],["2024-07-24T16:18:12.010000"],["2024-07-24T16:18:13.010000"],["2024-07-24T16:18:14.010000"],["2024-07-24T16:18:15.010000"],["2024-07-24T16:18:16.010000"],["2024-07-24T16:18:17.010000"],["2024-07-24T16:18:18.010000"],["2024-07-24T16:18:19.010000"],["2024-07-24T16:18:20.010000"],["2024-07-24T16:18:21.010000"],["2024-07-24T16:18:22.010000"],["2024-07-24T16:18:23.010000"],["2024-07-24T16:18:24.010000"],["2024-07-24T16:18:25.010000"],["2024-07-24T16:18:26.010000"],["2024-07-24T16:18:27.010000"],["2024-07-24T16:18:28.010000"],["2024-07-24T16:18:29.010000"],["2024-07-24T16:18:30.010000"],["2024-07-24T16:18:31.010000"],["2024-07-24T16:18:32.010000"],["2024-07-24T16:18:33.010000"],["2024-07-24T16:18:34.010000"],["2024-07-24T16:18:35.010000"],["2024-07-24T16:18:36.010000"],["2024-07-24T16:18:37.010000"],["2024-07-24T16:18:38.010000"],["2024-07-24T16:18:39.010000"],["2024-07-24T16:18:40.010000"],["2024-07-24T16:18:41.010000"],["2024-07-24T16:18:42.010000"],["2024-07-24T16:18:43.010000"],["2024-07-24T16:18:44.010000"],["2024-07-24T16:18:45.010000"],["2024-07-24T16:18:46.010000"],["2024-07-24T16:18:47.010000"],["2024-07-24T16:18:48.010000"],["2024-07-24T16:18:49.010000"],["2024-07-24T16:18:50.010000"],["2024-07-24T16:18:51.010000"],["2024-07-24T16:18:52.010000"],["2024-07-24T16:18:53.010000"],["2024-07-24T16:18:54.010000"],["2024-07-24T16:18:55.010000"],["2024-07-24T16:18:56.010000"],["2024-07-24T16:18:57.010000"],["2024-07-24T16:18:58.010000"],["2024-07-24T16:18:59.010000"],["2024-07-24T16:19:00.010000"],["2024-07-24T16:19:01.010000"],["2024-07-24T16:19:02.010000"],["2024-07-24T16:19:03.010000"],["2024-07-24T16:19:04.010000"],["2024-07-24T16:19:05.010000"],["2024-07-24T16:19:06.010000"],["2024-07-24T16:19:07.010000"],["2024-07-24T16:19:08.010000"],["2024-07-24T16:19:09.010000"],["2024-07-24T16:19:10.010000"],["2024-07-24T16:19:11.010000"],["2024-07-24T16:19:12.010000"],["2024-07-24T16:19:13.010000"],["2024-07-24T16:19:14.010000"],["2024-07-24T16:19:15.010000"],["2024-07-24T16:19:16.010000"],["2024-07-24T16:19:17.010000"],["2024-07-24T16:19:18.010000"],["2024-07-24T16:19:19.010000"],["2024-07-24T16:19:20.010000"],["2024-07-24T16:19:21.010000"],["2024-07-24T16:19:22.010000"],["2024-07-24T16:19:23.010000"],["2024-07-24T16:19:24.010000"],["2024-07-24T16:19:25.010000"],["2024-07-24T16:19:26.010000"],["2024-07-24T16:19:27.010000"],["2024-07-24T16:19:28.010000"],["2024-07-24T16:19:29.010000"],["2024-07-24T16:19:30.010000"],["2024-07-24T16:19:31.010000"],["2024-07-24T16:19:32.010000"],["2024-07-24T16:19:33.010000"],["2024-07-24T16:19:34.010000"],["2024-07-24T16:19:35.010000"],["2024-07-24T16:19:36.010000"],["2024-07-24T16:19:37.010000"],["2024-07-24T16:19:38.010000"],["2024-07-24T16:19:39.010000"],["2024-07-24T16:19:40.010000"],["2024-07-24T16:19:41.010000"],["2024-07-24T16:19:42.010000"],["2024-07-24T16:19:43.010000"],["2024-07-24T16:19:44.010000"],["2024-07-24T16:19:45.010000"],["2024-07-24T16:19:46.010000"],["2024-07-24T16:19:47.010000"],["2024-07-24T16:19:48.010000"],["2024-07-24T16:19:49.010000"],["2024-07-24T16:19:50.010000"],["2024-07-24T16:19:51.010000"],["2024-07-24T16:19:52.010000"],["2024-07-24T16:19:53.010000"],["2024-07-24T16:19:54.010000"],["2024-07-24T16:19:55.010000"],["2024-07-24T16:19:56.010000"],["2024-07-24T16:19:57.010000"],["2024-07-24T16:19:58.010000"],["2024-07-24T16:19:59.010000"],["2024-07-24T16:20:00.010000"],["2024-07-24T16:20:01.010000"],["2024-07-24T16:20:02.010000"],["2024-07-24T16:20:03.010000"],["2024-07-24T16:20:04.010000"],["2024-07-24T16:20:05.010000"],["2024-07-24T16:20:06.010000"],["2024-07-24T16:20:07.010000"],["2024-07-24T16:20:08.010000"],["2024-07-24T16:20:09.010000"],["2024-07-24T16:20:10.010000"],["2024-07-24T16:20:11.010000"],["2024-07-24T16:20:12.010000"],["2024-07-24T16:20:13.010000"],["2024-07-24T16:20:14.010000"],["2024-07-24T16:20:15.010000"],["2024-07-24T16:20:16.010000"],["2024-07-24T16:20:17.010000"],["2024-07-24T16:20:18.010000"],["2024-07-24T16:20:19.010000"],["2024-07-24T16:20:20.010000"],["2024-07-24T16:20:21.010000"],["2024-07-24T16:20:22.010000"],["2024-07-24T16:20:23.010000"],["2024-07-24T16:20:24.010000"],["2024-07-24T16:20:25.010000"],["2024-07-24T16:20:26.010000"],["2024-07-24T16:20:27.010000"],["2024-07-24T16:20:28.010000"],["2024-07-24T16:20:29.010000"],["2024-07-24T16:20:30.010000"],["2024-07-24T16:20:31.010000"],["2024-07-24T16:20:32.010000"],["2024-07-24T16:20:33.010000"],["2024-07-24T16:20:34.010000"],["2024-07-24T16:20:35.010000"],["2024-07-24T16:20:36.010000"],["2024-07-24T16:20:37.010000"],["2024-07-24T16:20:38.010000"],["2024-07-24T16:20:39.010000"],["2024-07-24T16:20:40.010000"],["2024-07-24T16:20:41.010000"],["2024-07-24T16:20:42.010000"],["2024-07-24T16:20:43.010000"],["2024-07-24T16:20:44.010000"],["2024-07-24T16:20:45.010000"],["2024-07-24T16:20:46.010000"],["2024-07-24T16:20:47.010000"],["2024-07-24T16:20:48.010000"],["2024-07-24T16:20:49.010000"],["2024-07-24T16:20:50.010000"],["2024-07-24T16:20:51.010000"],["2024-07-24T16:20:52.010000"],["2024-07-24T16:20:53.010000"],["2024-07-24T16:20:54.010000"],["2024-07-24T16:20:55.010000"],["2024-07-24T16:20:56.010000"],["2024-07-24T16:20:57.010000"],["2024-07-24T16:20:58.010000"],["2024-07-24T16:20:59.010000"],["2024-07-24T16:21:00.010000"],["2024-07-24T16:21:01.010000"],["2024-07-24T16:21:02.010000"],["2024-07-24T16:21:03.010000"],["2024-07-24T16:21:04.010000"],["2024-07-24T16:21:05.010000"],["2024-07-24T16:21:06.010000"],["2024-07-24T16:21:07.010000"],["2024-07-24T16:21:08.010000"],["2024-07-24T16:21:09.010000"],["2024-07-24T16:21:10.010000"],["2024-07-24T16:21:11.010000"],["2024-07-24T16:21:12.010000"],["2024-07-24T16:21:13.010000"],["2024-07-24T16:21:14.010000"],["2024-07-24T16:21:15.010000"],["2024-07-24T16:21:16.010000"],["2024-07-24T16:21:17.010000"],["2024-07-24T16:21:18.010000"],["2024-07-24T16:21:19.010000"],["2024-07-24T16:21:20.010000"],["2024-07-24T16:21:21.010000"],["2024-07-24T16:21:22.010000"],["2024-07-24T16:21:23.010000"],["2024-07-24T16:21:24.010000"],["2024-07-24T16:21:25.010000"],["2024-07-24T16:21:26.010000"],["2024-07-24T16:21:27.010000"],["2024-07-24T16:21:28.010000"],["2024-07-24T16:21:29.010000"],["2024-07-24T16:21:30.010000"],["2024-07-24T16:21:31.010000"],["2024-07-24T16:21:32.010000"],["2024-07-24T16:21:33.010000"],["2024-07-24T16:21:34.010000"],["2024-07-24T16:21:35.010000"],["2024-07-24T16:21:36.010000"],["2024-07-24T16:21:37.010000"],["2024-07-24T16:21:38.010000"],["2024-07-24T16:21:39.010000"],["2024-07-24T16:21:40.010000"],["2024-07-24T16:21:41.010000"],["2024-07-24T16:21:42.010000"],["2024-07-24T16:21:43.010000"],["2024-07-24T16:21:44.010000"],["2024-07-24T16:21:45.010000"],["2024-07-24T16:21:46.010000"],["2024-07-24T16:21:47.010000"],["2024-07-24T16:21:48.010000"],["2024-07-24T16:21:49.010000"],["2024-07-24T16:21:50.010000"],["2024-07-24T16:21:51.010000"],["2024-07-24T16:21:52.010000"],["2024-07-24T16:21:53.010000"],["2024-07-24T16:21:54.010000"],["2024-07-24T16:21:55.010000"],["2024-07-24T16:21:56.010000"],["2024-07-24T16:21:57.010000"],["2024-07-24T16:21:58.010000"],["2024-07-24T16:21:59.010000"],["2024-07-24T16:22:00.010000"],["2024-07-24T16:22:01.010000"],["2024-07-24T16:22:02.010000"],["2024-07-24T16:22:03.010000"],["2024-07-24T16:22:04.010000"],["2024-07-24T16:22:05.010000"],["2024-07-24T16:22:06.010000"],["2024-07-24T16:22:07.010000"],["2024-07-24T16:22:08.010000"],["2024-07-24T16:22:09.010000"],["2024-07-24T16:22:10.010000"],["2024-07-24T16:22:11.010000"],["2024-07-24T16:22:12.010000"],["2024-07-24T16:22:13.010000"],["2024-07-24T16:22:14.010000"],["2024-07-24T16:22:15.010000"],["2024-07-24T16:22:16.010000"],["2024-07-24T16:22:17.010000"],["2024-07-24T16:22:18.010000"],["2024-07-24T16:22:19.010000"],["2024-07-24T16:22:20.010000"],["2024-07-24T16:22:21.010000"],["2024-07-24T16:22:22.010000"],["2024-07-24T16:22:23.010000"],["2024-07-24T16:22:24.010000"],["2024-07-24T16:22:25.010000"],["2024-07-24T16:22:26.010000"],["2024-07-24T16:22:27.010000"],["2024-07-24T16:22:28.010000"],["2024-07-24T16:22:29.010000"],["2024-07-24T16:22:30.010000"],["2024-07-24T16:22:31.010000"],["2024-07-24T16:22:32.010000"],["2024-07-24T16:22:33.010000"],["2024-07-24T16:22:34.010000"],["2024-07-24T16:22:35.010000"],["2024-07-24T16:22:36.010000"],["2024-07-24T16:22:37.010000"],["2024-07-24T16:22:38.010000"],["2024-07-24T16:22:39.010000"],["2024-07-24T16:22:40.010000"],["2024-07-24T16:22:41.010000"],["2024-07-24T16:22:42.010000"],["2024-07-24T16:22:43.010000"],["2024-07-24T16:22:44.010000"],["2024-07-24T16:22:45.010000"],["2024-07-24T16:22:46.010000"],["2024-07-24T16:22:47.010000"],["2024-07-24T16:22:48.010000"],["2024-07-24T16:22:49.010000"],["2024-07-24T16:22:50.010000"],["2024-07-24T16:22:51.010000"],["2024-07-24T16:22:52.010000"],["2024-07-24T16:22:53.010000"],["2024-07-24T16:22:54.010000"],["2024-07-24T16:22:55.010000"],["2024-07-24T16:22:56.010000"],["2024-07-24T16:22:57.010000"],["2024-07-24T16:22:58.010000"],["2024-07-24T16:22:59.010000"],["2024-07-24T16:23:00.010000"],["2024-07-24T16:23:01.010000"],["2024-07-24T16:23:02.010000"],["2024-07-24T16:23:03.010000"],["2024-07-24T16:23:04.010000"],["2024-07-24T16:23:05.010000"],["2024-07-24T16:23:06.010000"],["2024-07-24T16:23:07.010000"],["2024-07-24T16:23:08.010000"],["2024-07-24T16:23:09.010000"],["2024-07-24T16:23:10.010000"],["2024-07-24T16:23:11.010000"],["2024-07-24T16:23:12.010000"],["2024-07-24T16:23:13.010000"],["2024-07-24T16:23:14.010000"],["2024-07-24T16:23:15.010000"],["2024-07-24T16:23:16.010000"],["2024-07-24T16:23:17.010000"],["2024-07-24T16:23:18.010000"],["2024-07-24T16:23:19.010000"],["2024-07-24T16:23:20.010000"],["2024-07-24T16:23:21.010000"],["2024-07-24T16:23:22.010000"],["2024-07-24T16:23:23.010000"],["2024-07-24T16:23:24.010000"],["2024-07-24T16:23:25.010000"],["2024-07-24T16:23:26.010000"],["2024-07-24T16:23:27.010000"],["2024-07-24T16:23:28.010000"],["2024-07-24T16:23:29.010000"],["2024-07-24T16:23:30.010000"],["2024-07-24T16:23:31.010000"],["2024-07-24T16:23:32.010000"],["2024-07-24T16:23:33.010000"],["2024-07-24T16:23:34.010000"],["2024-07-24T16:23:35.010000"],["2024-07-24T16:23:36.010000"],["2024-07-24T16:23:37.010000"],["2024-07-24T16:23:38.010000"],["2024-07-24T16:23:39.010000"],["2024-07-24T16:23:40.010000"],["2024-07-24T16:23:41.010000"],["2024-07-24T16:23:42.010000"],["2024-07-24T16:23:43.010000"],["2024-07-24T16:23:44.010000"],["2024-07-24T16:23:45.010000"],["2024-07-24T16:23:46.010000"],["2024-07-24T16:23:47.010000"],["2024-07-24T16:23:48.010000"],["2024-07-24T16:23:49.010000"],["2024-07-24T16:23:50.010000"],["2024-07-24T16:23:51.010000"],["2024-07-24T16:23:52.010000"],["2024-07-24T16:23:53.010000"],["2024-07-24T16:23:54.010000"],["2024-07-24T16:23:55.010000"],["2024-07-24T16:23:56.010000"],["2024-07-24T16:23:57.010000"],["2024-07-24T16:23:58.010000"],["2024-07-24T16:23:59.010000"],["2024-07-24T16:24:00.010000"],["2024-07-24T16:24:01.010000"],["2024-07-24T16:24:02.010000"],["2024-07-24T16:24:03.010000"],["2024-07-24T16:24:04.010000"],["2024-07-24T16:24:05.010000"],["2024-07-24T16:24:06.010000"],["2024-07-24T16:24:07.010000"],["2024-07-24T16:24:08.010000"],["2024-07-24T16:24:09.010000"],["2024-07-24T16:24:10.010000"],["2024-07-24T16:24:11.010000"],["2024-07-24T16:24:12.010000"],["2024-07-24T16:24:13.010000"],["2024-07-24T16:24:14.010000"],["2024-07-24T16:24:15.010000"],["2024-07-24T16:24:16.010000"],["2024-07-24T16:24:17.010000"],["2024-07-24T16:24:18.010000"],["2024-07-24T16:24:19.010000"],["2024-07-24T16:24:20.010000"],["2024-07-24T16:24:21.010000"],["2024-07-24T16:24:22.010000"],["2024-07-24T16:24:23.010000"],["2024-07-24T16:24:24.010000"],["2024-07-24T16:24:25.010000"],["2024-07-24T16:24:26.010000"],["2024-07-24T16:24:27.010000"],["2024-07-24T16:24:28.010000"],["2024-07-24T16:24:29.010000"],["2024-07-24T16:24:30.010000"],["2024-07-24T16:24:31.010000"],["2024-07-24T16:24:32.010000"],["2024-07-24T16:24:33.010000"],["2024-07-24T16:24:34.010000"],["2024-07-24T16:24:35.010000"],["2024-07-24T16:24:36.010000"],["2024-07-24T16:24:37.010000"],["2024-07-24T16:24:38.010000"],["2024-07-24T16:24:39.010000"],["2024-07-24T16:24:40.010000"],["2024-07-24T16:24:41.010000"],["2024-07-24T16:24:42.010000"],["2024-07-24T16:24:43.010000"],["2024-07-24T16:24:44.010000"],["2024-07-24T16:24:45.010000"],["2024-07-24T16:24:46.010000"],["2024-07-24T16:24:47.010000"],["2024-07-24T16:24:48.010000"],["2024-07-24T16:24:49.010000"],["2024-07-24T16:24:50.010000"],["2024-07-24T16:24:51.010000"],["2024-07-24T16:24:52.010000"],["2024-07-24T16:24:53.010000"],["2024-07-24T16:24:54.010000"],["2024-07-24T16:24:55.010000"],["2024-07-24T16:24:56.010000"],["2024-07-24T16:24:57.010000"],["2024-07-24T16:24:58.010000"],["2024-07-24T16:24:59.010000"],["2024-07-24T16:25:00.010000"],["2024-07-24T16:25:01.010000"],["2024-07-24T16:25:02.010000"],["2024-07-24T16:25:03.010000"],["2024-07-24T16:25:04.010000"],["2024-07-24T16:25:05.010000"],["2024-07-24T16:25:06.010000"],["2024-07-24T16:25:07.010000"],["2024-07-24T16:25:08.010000"],["2024-07-24T16:25:09.010000"],["2024-07-24T16:25:10.010000"],["2024-07-24T16:25:11.010000"],["2024-07-24T16:25:12.010000"],["2024-07-24T16:25:13.010000"],["2024-07-24T16:25:14.010000"],["2024-07-24T16:25:15.010000"],["2024-07-24T16:25:16.010000"],["2024-07-24T16:25:17.010000"],["2024-07-24T16:25:18.010000"],["2024-07-24T16:25:19.010000"],["2024-07-24T16:25:20.010000"],["2024-07-24T16:25:21.010000"],["2024-07-24T16:25:22.010000"],["2024-07-24T16:25:23.010000"],["2024-07-24T16:25:24.010000"],["2024-07-24T16:25:25.010000"],["2024-07-24T16:25:26.010000"],["2024-07-24T16:25:27.010000"],["2024-07-24T16:25:28.010000"],["2024-07-24T16:25:29.010000"],["2024-07-24T16:25:30.010000"],["2024-07-24T16:25:31.010000"],["2024-07-24T16:25:32.010000"],["2024-07-24T16:25:33.010000"],["2024-07-24T16:25:34.010000"],["2024-07-24T16:25:35.010000"],["2024-07-24T16:25:36.010000"],["2024-07-24T16:25:37.010000"],["2024-07-24T16:25:38.010000"],["2024-07-24T16:25:39.010000"],["2024-07-24T16:25:40.010000"],["2024-07-24T16:25:41.010000"],["2024-07-24T16:25:42.010000"],["2024-07-24T16:25:43.010000"],["2024-07-24T16:25:44.010000"],["2024-07-24T16:25:45.010000"],["2024-07-24T16:25:46.010000"],["2024-07-24T16:25:47.010000"],["2024-07-24T16:25:48.010000"],["2024-07-24T16:25:49.010000"],["2024-07-24T16:25:50.010000"],["2024-07-24T16:25:51.010000"],["2024-07-24T16:25:52.010000"],["2024-07-24T16:25:53.010000"],["2024-07-24T16:25:54.010000"],["2024-07-24T16:25:55.010000"],["2024-07-24T16:25:56.010000"],["2024-07-24T16:25:57.010000"],["2024-07-24T16:25:58.010000"],["2024-07-24T16:25:59.010000"],["2024-07-24T16:26:00.010000"],["2024-07-24T16:26:01.010000"],["2024-07-24T16:26:02.010000"],["2024-07-24T16:26:03.010000"],["2024-07-24T16:26:04.010000"],["2024-07-24T16:26:05.010000"],["2024-07-24T16:26:06.010000"],["2024-07-24T16:26:07.010000"],["2024-07-24T16:26:08.010000"],["2024-07-24T16:26:09.010000"],["2024-07-24T16:26:10.010000"],["2024-07-24T16:26:11.010000"],["2024-07-24T16:26:12.010000"],["2024-07-24T16:26:13.010000"],["2024-07-24T16:26:14.010000"],["2024-07-24T16:26:15.010000"],["2024-07-24T16:26:16.010000"],["2024-07-24T16:26:17.010000"],["2024-07-24T16:26:18.010000"],["2024-07-24T16:26:19.010000"],["2024-07-24T16:26:20.010000"],["2024-07-24T16:26:21.010000"],["2024-07-24T16:26:22.010000"],["2024-07-24T16:26:23.010000"],["2024-07-24T16:26:24.010000"],["2024-07-24T16:26:25.010000"],["2024-07-24T16:26:26.010000"],["2024-07-24T16:26:27.010000"],["2024-07-24T16:26:28.010000"],["2024-07-24T16:26:29.010000"],["2024-07-24T16:26:30.010000"],["2024-07-24T16:26:31.010000"],["2024-07-24T16:26:32.010000"],["2024-07-24T16:26:33.010000"],["2024-07-24T16:26:34.010000"],["2024-07-24T16:26:35.010000"],["2024-07-24T16:26:36.010000"],["2024-07-24T16:26:37.010000"],["2024-07-24T16:26:38.010000"],["2024-07-24T16:26:39.010000"],["2024-07-24T16:26:40.010000"],["2024-07-24T16:26:41.010000"],["2024-07-24T16:26:42.010000"],["2024-07-24T16:26:43.010000"],["2024-07-24T16:26:44.010000"],["2024-07-24T16:26:45.010000"],["2024-07-24T16:26:46.010000"],["2024-07-24T16:26:47.010000"],["2024-07-24T16:26:48.010000"],["2024-07-24T16:26:49.010000"],["2024-07-24T16:26:50.010000"],["2024-07-24T16:26:51.010000"],["2024-07-24T16:26:52.010000"],["2024-07-24T16:26:53.010000"],["2024-07-24T16:26:54.010000"],["2024-07-24T16:26:55.010000"],["2024-07-24T16:26:56.010000"],["2024-07-24T16:26:57.010000"],["2024-07-24T16:26:58.010000"],["2024-07-24T16:26:59.010000"],["2024-07-24T16:27:00.010000"],["2024-07-24T16:27:01.010000"],["2024-07-24T16:27:02.010000"],["2024-07-24T16:27:03.010000"],["2024-07-24T16:27:04.010000"],["2024-07-24T16:27:05.010000"],["2024-07-24T16:27:06.010000"],["2024-07-24T16:27:07.010000"],["2024-07-24T16:27:08.010000"],["2024-07-24T16:27:09.010000"],["2024-07-24T16:27:10.010000"],["2024-07-24T16:27:11.010000"],["2024-07-24T16:27:12.010000"],["2024-07-24T16:27:13.010000"],["2024-07-24T16:27:14.010000"],["2024-07-24T16:27:15.010000"],["2024-07-24T16:27:16.010000"],["2024-07-24T16:27:17.010000"],["2024-07-24T16:27:18.010000"],["2024-07-24T16:27:19.010000"],["2024-07-24T16:27:20.010000"],["2024-07-24T16:27:21.010000"],["2024-07-24T16:27:22.010000"],["2024-07-24T16:27:23.010000"],["2024-07-24T16:27:24.010000"],["2024-07-24T16:27:25.010000"],["2024-07-24T16:27:26.010000"],["2024-07-24T16:27:27.010000"],["2024-07-24T16:27:28.010000"],["2024-07-24T16:27:29.010000"],["2024-07-24T16:27:30.010000"],["2024-07-24T16:27:31.010000"],["2024-07-24T16:27:32.010000"],["2024-07-24T16:27:33.010000"],["2024-07-24T16:27:34.010000"],["2024-07-24T16:27:35.010000"],["2024-07-24T16:27:36.010000"],["2024-07-24T16:27:37.010000"],["2024-07-24T16:27:38.010000"],["2024-07-24T16:27:39.010000"],["2024-07-24T16:27:40.010000"],["2024-07-24T16:27:41.010000"],["2024-07-24T16:27:42.010000"],["2024-07-24T16:27:43.010000"],["2024-07-24T16:27:44.010000"],["2024-07-24T16:27:45.010000"],["2024-07-24T16:27:46.010000"],["2024-07-24T16:27:47.010000"],["2024-07-24T16:27:48.010000"],["2024-07-24T16:27:49.010000"],["2024-07-24T16:27:50.010000"],["2024-07-24T16:27:51.010000"],["2024-07-24T16:27:52.010000"],["2024-07-24T16:27:53.010000"],["2024-07-24T16:27:54.010000"],["2024-07-24T16:27:55.010000"],["2024-07-24T16:27:56.010000"],["2024-07-24T16:27:57.010000"],["2024-07-24T16:27:58.010000"],["2024-07-24T16:27:59.010000"],["2024-07-24T16:28:00.010000"],["2024-07-24T16:28:01.010000"],["2024-07-24T16:28:02.010000"],["2024-07-24T16:28:03.010000"],["2024-07-24T16:28:04.010000"],["2024-07-24T16:28:05.010000"],["2024-07-24T16:28:06.010000"],["2024-07-24T16:28:07.010000"],["2024-07-24T16:28:08.010000"],["2024-07-24T16:28:09.010000"],["2024-07-24T16:28:10.010000"],["2024-07-24T16:28:11.010000"],["2024-07-24T16:28:12.010000"],["2024-07-24T16:28:13.010000"],["2024-07-24T16:28:14.010000"],["2024-07-24T16:28:15.010000"],["2024-07-24T16:28:16.010000"],["2024-07-24T16:28:17.010000"],["2024-07-24T16:28:18.010000"],["2024-07-24T16:28:19.010000"],["2024-07-24T16:28:20.010000"],["2024-07-24T16:28:21.010000"],["2024-07-24T16:28:22.010000"],["2024-07-24T16:28:23.010000"],["2024-07-24T16:28:24.010000"],["2024-07-24T16:28:25.010000"],["2024-07-24T16:28:26.010000"],["2024-07-24T16:28:27.010000"],["2024-07-24T16:28:28.010000"],["2024-07-24T16:28:29.010000"],["2024-07-24T16:28:30.010000"],["2024-07-24T16:28:31.010000"],["2024-07-24T16:28:32.010000"],["2024-07-24T16:28:33.010000"],["2024-07-24T16:28:34.010000"],["2024-07-24T16:28:35.010000"],["2024-07-24T16:28:36.010000"],["2024-07-24T16:28:37.010000"],["2024-07-24T16:28:38.010000"],["2024-07-24T16:28:39.010000"],["2024-07-24T16:28:40.010000"],["2024-07-24T16:28:41.010000"],["2024-07-24T16:28:42.010000"],["2024-07-24T16:28:43.010000"],["2024-07-24T16:28:44.010000"],["2024-07-24T16:28:45.010000"],["2024-07-24T16:28:46.010000"],["2024-07-24T16:28:47.010000"],["2024-07-24T16:28:48.010000"],["2024-07-24T16:28:49.010000"],["2024-07-24T16:28:50.010000"],["2024-07-24T16:28:51.010000"],["2024-07-24T16:28:52.010000"],["2024-07-24T16:28:53.010000"],["2024-07-24T16:28:54.010000"],["2024-07-24T16:28:55.010000"],["2024-07-24T16:28:56.010000"],["2024-07-24T16:28:57.010000"],["2024-07-24T16:28:58.010000"],["2024-07-24T16:28:59.010000"],["2024-07-24T16:29:00.010000"],["2024-07-24T16:29:01.010000"],["2024-07-24T16:29:02.010000"],["2024-07-24T16:29:03.010000"],["2024-07-24T16:29:04.010000"],["2024-07-24T16:29:05.010000"],["2024-07-24T16:29:06.010000"],["2024-07-24T16:29:07.010000"],["2024-07-24T16:29:08.010000"],["2024-07-24T16:29:09.010000"],["2024-07-24T16:29:10.010000"],["2024-07-24T16:29:11.010000"],["2024-07-24T16:29:12.010000"],["2024-07-24T16:29:13.010000"],["2024-07-24T16:29:14.010000"],["2024-07-24T16:29:15.010000"],["2024-07-24T16:29:16.010000"],["2024-07-24T16:29:17.010000"],["2024-07-24T16:29:18.010000"],["2024-07-24T16:29:19.010000"],["2024-07-24T16:29:20.010000"],["2024-07-24T16:29:21.010000"],["2024-07-24T16:29:22.010000"],["2024-07-24T16:29:23.010000"],["2024-07-24T16:29:24.010000"],["2024-07-24T16:29:25.010000"],["2024-07-24T16:29:26.010000"],["2024-07-24T16:29:27.010000"],["2024-07-24T16:29:28.010000"],["2024-07-24T16:29:29.010000"],["2024-07-24T16:29:30.010000"],["2024-07-24T16:29:31.010000"],["2024-07-24T16:29:32.010000"],["2024-07-24T16:29:33.010000"],["2024-07-24T16:29:34.010000"],["2024-07-24T16:29:35.010000"],["2024-07-24T16:29:36.010000"],["2024-07-24T16:29:37.010000"],["2024-07-24T16:29:38.010000"],["2024-07-24T16:29:39.010000"],["2024-07-24T16:29:40.010000"],["2024-07-24T16:29:41.010000"],["2024-07-24T16:29:42.010000"],["2024-07-24T16:29:43.010000"],["2024-07-24T16:29:44.010000"],["2024-07-24T16:29:45.010000"],["2024-07-24T16:29:46.010000"],["2024-07-24T16:29:47.010000"],["2024-07-24T16:29:48.010000"],["2024-07-24T16:29:49.010000"],["2024-07-24T16:29:50.010000"],["2024-07-24T16:29:51.010000"],["2024-07-24T16:29:52.010000"],["2024-07-24T16:29:53.010000"],["2024-07-24T16:29:54.010000"],["2024-07-24T16:29:55.010000"],["2024-07-24T16:29:56.010000"],["2024-07-24T16:29:57.010000"],["2024-07-24T16:29:58.010000"],["2024-07-24T16:29:59.010000"],["2024-07-24T16:30:00.010000"],["2024-07-24T16:30:01.010000"],["2024-07-24T16:30:02.010000"],["2024-07-24T16:30:03.010000"],["2024-07-24T16:30:04.010000"],["2024-07-24T16:30:05.010000"],["2024-07-24T16:30:06.010000"],["2024-07-24T16:30:07.010000"],["2024-07-24T16:30:08.010000"],["2024-07-24T16:30:09.010000"],["2024-07-24T16:30:10.010000"],["2024-07-24T16:30:11.010000"],["2024-07-24T16:30:12.010000"],["2024-07-24T16:30:13.010000"],["2024-07-24T16:30:14.010000"],["2024-07-24T16:30:15.010000"],["2024-07-24T16:30:16.010000"],["2024-07-24T16:30:17.010000"],["2024-07-24T16:30:18.010000"],["2024-07-24T16:30:19.010000"],["2024-07-24T16:30:20.010000"],["2024-07-24T16:30:21.010000"],["2024-07-24T16:30:22.010000"],["2024-07-24T16:30:23.010000"],["2024-07-24T16:30:24.010000"],["2024-07-24T16:30:25.010000"],["2024-07-24T16:30:26.010000"],["2024-07-24T16:30:27.010000"],["2024-07-24T16:30:28.010000"],["2024-07-24T16:30:29.010000"],["2024-07-24T16:30:30.010000"],["2024-07-24T16:30:31.010000"],["2024-07-24T16:30:32.010000"],["2024-07-24T16:30:33.010000"],["2024-07-24T16:30:34.010000"],["2024-07-24T16:30:35.010000"],["2024-07-24T16:30:36.010000"],["2024-07-24T16:30:37.010000"],["2024-07-24T16:30:38.010000"],["2024-07-24T16:30:39.010000"],["2024-07-24T16:30:40.010000"],["2024-07-24T16:30:41.010000"],["2024-07-24T16:30:42.010000"],["2024-07-24T16:30:43.010000"],["2024-07-24T16:30:44.010000"],["2024-07-24T16:30:45.010000"],["2024-07-24T16:30:46.010000"],["2024-07-24T16:30:47.010000"],["2024-07-24T16:30:48.010000"],["2024-07-24T16:30:49.010000"],["2024-07-24T16:30:50.010000"],["2024-07-24T16:30:51.010000"],["2024-07-24T16:30:52.010000"],["2024-07-24T16:30:53.010000"],["2024-07-24T16:30:54.010000"],["2024-07-24T16:30:55.010000"],["2024-07-24T16:30:56.010000"],["2024-07-24T16:30:57.010000"],["2024-07-24T16:30:58.010000"],["2024-07-24T16:30:59.010000"],["2024-07-24T16:31:00.010000"],["2024-07-24T16:31:01.010000"],["2024-07-24T16:31:02.010000"],["2024-07-24T16:31:03.010000"],["2024-07-24T16:31:04.010000"],["2024-07-24T16:31:05.010000"],["2024-07-24T16:31:06.010000"],["2024-07-24T16:31:07.010000"],["2024-07-24T16:31:08.010000"],["2024-07-24T16:31:09.010000"],["2024-07-24T16:31:10.010000"],["2024-07-24T16:31:11.010000"],["2024-07-24T16:31:12.010000"],["2024-07-24T16:31:13.010000"],["2024-07-24T16:31:14.010000"],["2024-07-24T16:31:15.010000"],["2024-07-24T16:31:16.010000"],["2024-07-24T16:31:17.010000"],["2024-07-24T16:31:18.010000"],["2024-07-24T16:31:19.010000"],["2024-07-24T16:31:20.010000"],["2024-07-24T16:31:21.010000"],["2024-07-24T16:31:22.010000"],["2024-07-24T16:31:23.010000"],["2024-07-24T16:31:24.010000"],["2024-07-24T16:31:25.010000"],["2024-07-24T16:31:26.010000"],["2024-07-24T16:31:27.010000"],["2024-07-24T16:31:28.010000"],["2024-07-24T16:31:29.010000"],["2024-07-24T16:31:30.010000"],["2024-07-24T16:31:31.010000"],["2024-07-24T16:31:32.010000"],["2024-07-24T16:31:33.010000"],["2024-07-24T16:31:34.010000"],["2024-07-24T16:31:35.010000"],["2024-07-24T16:31:36.010000"],["2024-07-24T16:31:37.010000"],["2024-07-24T16:31:38.010000"],["2024-07-24T16:31:39.010000"],["2024-07-24T16:31:40.010000"],["2024-07-24T16:31:41.010000"],["2024-07-24T16:31:42.010000"],["2024-07-24T16:31:43.010000"],["2024-07-24T16:31:44.010000"],["2024-07-24T16:31:45.010000"],["2024-07-24T16:31:46.010000"],["2024-07-24T16:31:47.010000"],["2024-07-24T16:31:48.010000"],["2024-07-24T16:31:49.010000"],["2024-07-24T16:31:50.010000"],["2024-07-24T16:31:51.010000"],["2024-07-24T16:31:52.010000"],["2024-07-24T16:31:53.010000"],["2024-07-24T16:31:54.010000"],["2024-07-24T16:31:55.010000"],["2024-07-24T16:31:56.010000"],["2024-07-24T16:31:57.010000"],["2024-07-24T16:31:58.010000"],["2024-07-24T16:31:59.010000"],["2024-07-24T16:32:00.010000"],["2024-07-24T16:32:01.010000"],["2024-07-24T16:32:02.010000"],["2024-07-24T16:32:03.010000"],["2024-07-24T16:32:04.010000"],["2024-07-24T16:32:05.010000"],["2024-07-24T16:32:06.010000"],["2024-07-24T16:32:07.010000"],["2024-07-24T16:32:08.010000"],["2024-07-24T16:32:09.010000"],["2024-07-24T16:32:10.010000"],["2024-07-24T16:32:11.010000"],["2024-07-24T16:32:12.010000"],["2024-07-24T16:32:13.010000"],["2024-07-24T16:32:14.010000"],["2024-07-24T16:32:15.010000"],["2024-07-24T16:32:16.010000"],["2024-07-24T16:32:17.010000"],["2024-07-24T16:32:18.010000"],["2024-07-24T16:32:19.010000"],["2024-07-24T16:32:20.010000"],["2024-07-24T16:32:21.010000"],["2024-07-24T16:32:22.010000"],["2024-07-24T16:32:23.010000"],["2024-07-24T16:32:24.010000"],["2024-07-24T16:32:25.010000"],["2024-07-24T16:32:26.010000"],["2024-07-24T16:32:27.010000"],["2024-07-24T16:32:28.010000"],["2024-07-24T16:32:29.010000"],["2024-07-24T16:32:30.010000"],["2024-07-24T16:32:31.010000"],["2024-07-24T16:32:32.010000"],["2024-07-24T16:32:33.010000"],["2024-07-24T16:32:34.010000"],["2024-07-24T16:32:35.010000"],["2024-07-24T16:32:36.010000"],["2024-07-24T16:32:37.010000"],["2024-07-24T16:32:38.010000"],["2024-07-24T16:32:39.010000"],["2024-07-24T16:32:40.010000"],["2024-07-24T16:32:41.010000"],["2024-07-24T16:32:42.010000"],["2024-07-24T16:32:43.010000"],["2024-07-24T16:32:44.010000"],["2024-07-24T16:32:45.010000"],["2024-07-24T16:32:46.010000"],["2024-07-24T16:32:47.010000"],["2024-07-24T16:32:48.010000"],["2024-07-24T16:32:49.010000"],["2024-07-24T16:32:50.010000"],["2024-07-24T16:32:51.010000"],["2024-07-24T16:32:52.010000"],["2024-07-24T16:32:53.010000"],["2024-07-24T16:32:54.010000"],["2024-07-24T16:32:55.010000"],["2024-07-24T16:32:56.010000"],["2024-07-24T16:32:57.010000"],["2024-07-24T16:32:58.010000"],["2024-07-24T16:32:59.010000"],["2024-07-24T16:33:00.010000"],["2024-07-24T16:33:01.010000"],["2024-07-24T16:33:02.010000"],["2024-07-24T16:33:03.010000"],["2024-07-24T16:33:04.010000"],["2024-07-24T16:33:05.010000"],["2024-07-24T16:33:06.010000"],["2024-07-24T16:33:07.010000"],["2024-07-24T16:33:08.010000"],["2024-07-24T16:33:09.010000"],["2024-07-24T16:33:10.010000"],["2024-07-24T16:33:11.010000"],["2024-07-24T16:33:12.010000"],["2024-07-24T16:33:13.010000"],["2024-07-24T16:33:14.010000"],["2024-07-24T16:33:15.010000"],["2024-07-24T16:33:16.010000"],["2024-07-24T16:33:17.010000"],["2024-07-24T16:33:18.010000"],["2024-07-24T16:33:19.010000"],["2024-07-24T16:33:20.010000"],["2024-07-24T16:33:21.010000"],["2024-07-24T16:33:22.010000"],["2024-07-24T16:33:23.010000"],["2024-07-24T16:33:24.010000"],["2024-07-24T16:33:25.010000"],["2024-07-24T16:33:26.010000"],["2024-07-24T16:33:27.010000"],["2024-07-24T16:33:28.010000"],["2024-07-24T16:33:29.010000"],["2024-07-24T16:33:30.010000"],["2024-07-24T16:33:31.010000"],["2024-07-24T16:33:32.010000"],["2024-07-24T16:33:33.010000"],["2024-07-24T16:33:34.010000"],["2024-07-24T16:33:35.010000"],["2024-07-24T16:33:36.010000"],["2024-07-24T16:33:37.010000"],["2024-07-24T16:33:38.010000"],["2024-07-24T16:33:39.010000"],["2024-07-24T16:33:40.010000"],["2024-07-24T16:33:41.010000"],["2024-07-24T16:33:42.010000"],["2024-07-24T16:33:43.010000"],["2024-07-24T16:33:44.010000"],["2024-07-24T16:33:45.010000"],["2024-07-24T16:33:46.010000"],["2024-07-24T16:33:47.010000"],["2024-07-24T16:33:48.010000"],["2024-07-24T16:33:49.010000"],["2024-07-24T16:33:50.010000"],["2024-07-24T16:33:51.010000"],["2024-07-24T16:33:52.010000"],["2024-07-24T16:33:53.010000"],["2024-07-24T16:33:54.010000"],["2024-07-24T16:33:55.010000"],["2024-07-24T16:33:56.010000"],["2024-07-24T16:33:57.010000"],["2024-07-24T16:33:58.010000"],["2024-07-24T16:33:59.010000"],["2024-07-24T16:34:00.010000"],["2024-07-24T16:34:01.010000"],["2024-07-24T16:34:02.010000"],["2024-07-24T16:34:03.010000"],["2024-07-24T16:34:04.010000"],["2024-07-24T16:34:05.010000"],["2024-07-24T16:34:06.010000"],["2024-07-24T16:34:07.010000"],["2024-07-24T16:34:08.010000"],["2024-07-24T16:34:09.010000"],["2024-07-24T16:34:10.010000"],["2024-07-24T16:34:11.010000"],["2024-07-24T16:34:12.010000"],["2024-07-24T16:34:13.010000"],["2024-07-24T16:34:14.010000"],["2024-07-24T16:34:15.010000"],["2024-07-24T16:34:16.010000"],["2024-07-24T16:34:17.010000"],["2024-07-24T16:34:18.010000"],["2024-07-24T16:34:19.010000"],["2024-07-24T16:34:20.010000"],["2024-07-24T16:34:21.010000"],["2024-07-24T16:34:22.010000"],["2024-07-24T16:34:23.010000"],["2024-07-24T16:34:24.010000"],["2024-07-24T16:34:25.010000"],["2024-07-24T16:34:26.010000"],["2024-07-24T16:34:27.010000"],["2024-07-24T16:34:28.010000"],["2024-07-24T16:34:29.010000"],["2024-07-24T16:34:30.010000"],["2024-07-24T16:34:31.010000"],["2024-07-24T16:34:32.010000"],["2024-07-24T16:34:33.010000"],["2024-07-24T16:34:34.010000"],["2024-07-24T16:34:35.010000"],["2024-07-24T16:34:36.010000"],["2024-07-24T16:34:37.010000"],["2024-07-24T16:34:38.010000"],["2024-07-24T16:34:39.010000"],["2024-07-24T16:34:40.010000"],["2024-07-24T16:34:41.010000"],["2024-07-24T16:34:42.010000"],["2024-07-24T16:34:43.010000"],["2024-07-24T16:34:44.010000"],["2024-07-24T16:34:45.010000"],["2024-07-24T16:34:46.010000"],["2024-07-24T16:34:47.010000"],["2024-07-24T16:34:48.010000"],["2024-07-24T16:34:49.010000"],["2024-07-24T16:34:50.010000"],["2024-07-24T16:34:51.010000"],["2024-07-24T16:34:52.010000"],["2024-07-24T16:34:53.010000"],["2024-07-24T16:34:54.010000"],["2024-07-24T16:34:55.010000"],["2024-07-24T16:34:56.010000"],["2024-07-24T16:34:57.010000"],["2024-07-24T16:34:58.010000"],["2024-07-24T16:34:59.010000"],["2024-07-24T16:35:00.010000"],["2024-07-24T16:35:01.010000"],["2024-07-24T16:35:02.010000"],["2024-07-24T16:35:03.010000"],["2024-07-24T16:35:04.010000"],["2024-07-24T16:35:05.010000"],["2024-07-24T16:35:06.010000"],["2024-07-24T16:35:07.010000"],["2024-07-24T16:35:08.010000"],["2024-07-24T16:35:09.010000"],["2024-07-24T16:35:10.010000"],["2024-07-24T16:35:11.010000"],["2024-07-24T16:35:12.010000"],["2024-07-24T16:35:13.010000"],["2024-07-24T16:35:14.010000"],["2024-07-24T16:35:15.010000"],["2024-07-24T16:35:16.010000"],["2024-07-24T16:35:17.010000"],["2024-07-24T16:35:18.010000"],["2024-07-24T16:35:19.010000"],["2024-07-24T16:35:20.010000"],["2024-07-24T16:35:21.010000"],["2024-07-24T16:35:22.010000"],["2024-07-24T16:35:23.010000"],["2024-07-24T16:35:24.010000"],["2024-07-24T16:35:25.010000"],["2024-07-24T16:35:26.010000"],["2024-07-24T16:35:27.010000"],["2024-07-24T16:35:28.010000"],["2024-07-24T16:35:29.010000"],["2024-07-24T16:35:30.010000"],["2024-07-24T16:35:31.010000"],["2024-07-24T16:35:32.010000"],["2024-07-24T16:35:33.010000"],["2024-07-24T16:35:34.010000"],["2024-07-24T16:35:35.010000"],["2024-07-24T16:35:36.010000"],["2024-07-24T16:35:37.010000"],["2024-07-24T16:35:38.010000"],["2024-07-24T16:35:39.010000"],["2024-07-24T16:35:40.010000"],["2024-07-24T16:35:41.010000"],["2024-07-24T16:35:42.010000"],["2024-07-24T16:35:43.010000"],["2024-07-24T16:35:44.010000"],["2024-07-24T16:35:45.010000"],["2024-07-24T16:35:46.010000"],["2024-07-24T16:35:47.010000"],["2024-07-24T16:35:48.010000"],["2024-07-24T16:35:49.010000"],["2024-07-24T16:35:50.010000"],["2024-07-24T16:35:51.010000"],["2024-07-24T16:35:52.010000"],["2024-07-24T16:35:53.010000"],["2024-07-24T16:35:54.010000"],["2024-07-24T16:35:55.010000"],["2024-07-24T16:35:56.010000"],["2024-07-24T16:35:57.010000"],["2024-07-24T16:35:58.010000"],["2024-07-24T16:35:59.010000"],["2024-07-24T16:36:00.010000"],["2024-07-24T16:36:01.010000"],["2024-07-24T16:36:02.010000"],["2024-07-24T16:36:03.010000"],["2024-07-24T16:36:04.010000"],["2024-07-24T16:36:05.010000"],["2024-07-24T16:36:06.010000"],["2024-07-24T16:36:07.010000"],["2024-07-24T16:36:08.010000"],["2024-07-24T16:36:09.010000"],["2024-07-24T16:36:10.010000"],["2024-07-24T16:36:11.010000"],["2024-07-24T16:36:12.010000"],["2024-07-24T16:36:13.010000"],["2024-07-24T16:36:14.010000"],["2024-07-24T16:36:15.010000"],["2024-07-24T16:36:16.010000"],["2024-07-24T16:36:17.010000"],["2024-07-24T16:36:18.010000"],["2024-07-24T16:36:19.010000"],["2024-07-24T16:36:20.010000"],["2024-07-24T16:36:21.010000"],["2024-07-24T16:36:22.010000"],["2024-07-24T16:36:23.010000"],["2024-07-24T16:36:24.010000"],["2024-07-24T16:36:25.010000"],["2024-07-24T16:36:26.010000"],["2024-07-24T16:36:27.010000"],["2024-07-24T16:36:28.010000"],["2024-07-24T16:36:29.010000"],["2024-07-24T16:36:30.010000"],["2024-07-24T16:36:31.010000"],["2024-07-24T16:36:32.010000"],["2024-07-24T16:36:33.010000"],["2024-07-24T16:36:34.010000"],["2024-07-24T16:36:35.010000"],["2024-07-24T16:36:36.010000"],["2024-07-24T16:36:37.010000"],["2024-07-24T16:36:38.010000"],["2024-07-24T16:36:39.010000"],["2024-07-24T16:36:40.010000"],["2024-07-24T16:36:41.010000"],["2024-07-24T16:36:42.010000"],["2024-07-24T16:36:43.010000"],["2024-07-24T16:36:44.010000"],["2024-07-24T16:36:45.010000"],["2024-07-24T16:36:46.010000"],["2024-07-24T16:36:47.010000"],["2024-07-24T16:36:48.010000"],["2024-07-24T16:36:49.010000"],["2024-07-24T16:36:50.010000"],["2024-07-24T16:36:51.010000"],["2024-07-24T16:36:52.010000"],["2024-07-24T16:36:53.010000"],["2024-07-24T16:36:54.010000"],["2024-07-24T16:36:55.010000"],["2024-07-24T16:36:56.010000"],["2024-07-24T16:36:57.010000"],["2024-07-24T16:36:58.010000"],["2024-07-24T16:36:59.010000"],["2024-07-24T16:37:00.010000"],["2024-07-24T16:37:01.010000"],["2024-07-24T16:37:02.010000"],["2024-07-24T16:37:03.010000"],["2024-07-24T16:37:04.010000"],["2024-07-24T16:37:05.010000"],["2024-07-24T16:37:06.010000"],["2024-07-24T16:37:07.010000"],["2024-07-24T16:37:08.010000"],["2024-07-24T16:37:09.010000"],["2024-07-24T16:37:10.010000"],["2024-07-24T16:37:11.010000"],["2024-07-24T16:37:12.010000"],["2024-07-24T16:37:13.010000"],["2024-07-24T16:37:14.010000"],["2024-07-24T16:37:15.010000"],["2024-07-24T16:37:16.010000"],["2024-07-24T16:37:17.010000"],["2024-07-24T16:37:18.010000"],["2024-07-24T16:37:19.010000"],["2024-07-24T16:37:20.010000"],["2024-07-24T16:37:21.010000"],["2024-07-24T16:37:22.010000"],["2024-07-24T16:37:23.010000"],["2024-07-24T16:37:24.010000"],["2024-07-24T16:37:25.010000"],["2024-07-24T16:37:26.010000"],["2024-07-24T16:37:27.010000"],["2024-07-24T16:37:28.010000"],["2024-07-24T16:37:29.010000"],["2024-07-24T16:37:30.010000"],["2024-07-24T16:37:31.010000"],["2024-07-24T16:37:32.010000"],["2024-07-24T16:37:33.010000"],["2024-07-24T16:37:34.010000"],["2024-07-24T16:37:35.010000"],["2024-07-24T16:37:36.010000"],["2024-07-24T16:37:37.010000"],["2024-07-24T16:37:38.010000"],["2024-07-24T16:37:39.010000"],["2024-07-24T16:37:40.010000"],["2024-07-24T16:37:41.010000"],["2024-07-24T16:37:42.010000"],["2024-07-24T16:37:43.010000"],["2024-07-24T16:37:44.010000"],["2024-07-24T16:37:45.010000"],["2024-07-24T16:37:46.010000"],["2024-07-24T16:37:47.010000"],["2024-07-24T16:37:48.010000"],["2024-07-24T16:37:49.010000"],["2024-07-24T16:37:50.010000"],["2024-07-24T16:37:51.010000"],["2024-07-24T16:37:52.010000"],["2024-07-24T16:37:53.010000"],["2024-07-24T16:37:54.010000"],["2024-07-24T16:37:55.010000"],["2024-07-24T16:37:56.010000"],["2024-07-24T16:37:57.010000"],["2024-07-24T16:37:58.010000"],["2024-07-24T16:37:59.010000"],["2024-07-24T16:38:00.010000"],["2024-07-24T16:38:01.010000"],["2024-07-24T16:38:02.010000"],["2024-07-24T16:38:03.010000"],["2024-07-24T16:38:04.010000"],["2024-07-24T16:38:05.010000"],["2024-07-24T16:38:06.010000"],["2024-07-24T16:38:07.010000"],["2024-07-24T16:38:08.010000"],["2024-07-24T16:38:09.010000"],["2024-07-24T16:38:10.010000"],["2024-07-24T16:38:11.010000"],["2024-07-24T16:38:12.010000"],["2024-07-24T16:38:13.010000"],["2024-07-24T16:38:14.010000"],["2024-07-24T16:38:15.010000"],["2024-07-24T16:38:16.010000"],["2024-07-24T16:38:17.010000"],["2024-07-24T16:38:18.010000"],["2024-07-24T16:38:19.010000"],["2024-07-24T16:38:20.010000"],["2024-07-24T16:38:21.010000"],["2024-07-24T16:38:22.010000"],["2024-07-24T16:38:23.010000"],["2024-07-24T16:38:24.010000"],["2024-07-24T16:38:25.010000"],["2024-07-24T16:38:26.010000"],["2024-07-24T16:38:27.010000"],["2024-07-24T16:38:28.010000"],["2024-07-24T16:38:29.010000"],["2024-07-24T16:38:30.010000"],["2024-07-24T16:38:31.010000"],["2024-07-24T16:38:32.010000"],["2024-07-24T16:38:33.010000"],["2024-07-24T16:38:34.010000"],["2024-07-24T16:38:35.010000"],["2024-07-24T16:38:36.010000"],["2024-07-24T16:38:37.010000"],["2024-07-24T16:38:38.010000"],["2024-07-24T16:38:39.010000"],["2024-07-24T16:38:40.010000"],["2024-07-24T16:38:41.010000"],["2024-07-24T16:38:42.010000"],["2024-07-24T16:38:43.010000"],["2024-07-24T16:38:44.010000"],["2024-07-24T16:38:45.010000"],["2024-07-24T16:38:46.010000"],["2024-07-24T16:38:47.010000"],["2024-07-24T16:38:48.010000"],["2024-07-24T16:38:49.010000"],["2024-07-24T16:38:50.010000"],["2024-07-24T16:38:51.010000"],["2024-07-24T16:38:52.010000"],["2024-07-24T16:38:53.010000"],["2024-07-24T16:38:54.010000"],["2024-07-24T16:38:55.010000"],["2024-07-24T16:38:56.010000"],["2024-07-24T16:38:57.010000"],["2024-07-24T16:38:58.010000"],["2024-07-24T16:38:59.010000"],["2024-07-24T16:39:00.010000"],["2024-07-24T16:39:01.010000"],["2024-07-24T16:39:02.010000"],["2024-07-24T16:39:03.010000"],["2024-07-24T16:39:04.010000"],["2024-07-24T16:39:05.010000"],["2024-07-24T16:39:06.010000"],["2024-07-24T16:39:07.010000"],["2024-07-24T16:39:08.010000"],["2024-07-24T16:39:09.010000"],["2024-07-24T16:39:10.010000"],["2024-07-24T16:39:11.010000"],["2024-07-24T16:39:12.010000"],["2024-07-24T16:39:13.010000"],["2024-07-24T16:39:14.010000"],["2024-07-24T16:39:15.010000"],["2024-07-24T16:39:16.010000"],["2024-07-24T16:39:17.010000"],["2024-07-24T16:39:18.010000"],["2024-07-24T16:39:19.010000"],["2024-07-24T16:39:20.010000"],["2024-07-24T16:39:21.010000"],["2024-07-24T16:39:22.010000"],["2024-07-24T16:39:23.010000"],["2024-07-24T16:39:24.010000"],["2024-07-24T16:39:25.010000"],["2024-07-24T16:39:26.010000"],["2024-07-24T16:39:27.010000"],["2024-07-24T16:39:28.010000"],["2024-07-24T16:39:29.010000"],["2024-07-24T16:39:30.010000"],["2024-07-24T16:39:31.010000"],["2024-07-24T16:39:32.010000"],["2024-07-24T16:39:33.010000"],["2024-07-24T16:39:34.010000"],["2024-07-24T16:39:35.010000"],["2024-07-24T16:39:36.010000"],["2024-07-24T16:39:37.010000"],["2024-07-24T16:39:38.010000"],["2024-07-24T16:39:39.010000"],["2024-07-24T16:39:40.010000"],["2024-07-24T16:39:41.010000"],["2024-07-24T16:39:42.010000"],["2024-07-24T16:39:43.010000"],["2024-07-24T16:39:44.010000"],["2024-07-24T16:39:45.010000"],["2024-07-24T16:39:46.010000"],["2024-07-24T16:39:47.010000"],["2024-07-24T16:39:48.010000"],["2024-07-24T16:39:49.010000"],["2024-07-24T16:39:50.010000"],["2024-07-24T16:39:51.010000"],["2024-07-24T16:39:52.010000"],["2024-07-24T16:39:53.010000"],["2024-07-24T16:39:54.010000"],["2024-07-24T16:39:55.010000"],["2024-07-24T16:39:56.010000"],["2024-07-24T16:39:57.010000"],["2024-07-24T16:39:58.010000"],["2024-07-24T16:39:59.010000"],["2024-07-24T16:40:00.010000"],["2024-07-24T16:40:01.010000"],["2024-07-24T16:40:02.010000"],["2024-07-24T16:40:03.010000"],["2024-07-24T16:40:04.010000"],["2024-07-24T16:40:05.010000"],["2024-07-24T16:40:06.010000"],["2024-07-24T16:40:07.010000"],["2024-07-24T16:40:08.010000"],["2024-07-24T16:40:09.010000"],["2024-07-24T16:40:10.010000"],["2024-07-24T16:40:11.010000"],["2024-07-24T16:40:12.010000"],["2024-07-24T16:40:13.010000"],["2024-07-24T16:40:14.010000"],["2024-07-24T16:40:15.010000"],["2024-07-24T16:40:16.010000"],["2024-07-24T16:40:17.010000"],["2024-07-24T16:40:18.010000"],["2024-07-24T16:40:19.010000"],["2024-07-24T16:40:20.010000"],["2024-07-24T16:40:21.010000"],["2024-07-24T16:40:22.010000"],["2024-07-24T16:40:23.010000"],["2024-07-24T16:40:24.010000"],["2024-07-24T16:40:25.010000"],["2024-07-24T16:40:26.010000"],["2024-07-24T16:40:27.010000"],["2024-07-24T16:40:28.010000"],["2024-07-24T16:40:29.010000"],["2024-07-24T16:40:30.010000"],["2024-07-24T16:40:31.010000"],["2024-07-24T16:40:32.010000"],["2024-07-24T16:40:33.010000"],["2024-07-24T16:40:34.010000"],["2024-07-24T16:40:35.010000"],["2024-07-24T16:40:36.010000"],["2024-07-24T16:40:37.010000"],["2024-07-24T16:40:38.010000"],["2024-07-24T16:40:39.010000"],["2024-07-24T16:40:40.010000"],["2024-07-24T16:40:41.010000"],["2024-07-24T16:40:42.010000"],["2024-07-24T16:40:43.010000"],["2024-07-24T16:40:44.010000"],["2024-07-24T16:40:45.010000"],["2024-07-24T16:40:46.010000"],["2024-07-24T16:40:47.010000"],["2024-07-24T16:40:48.010000"],["2024-07-24T16:40:49.010000"],["2024-07-24T16:40:50.010000"],["2024-07-24T16:40:51.010000"],["2024-07-24T16:40:52.010000"],["2024-07-24T16:40:53.010000"],["2024-07-24T16:40:54.010000"],["2024-07-24T16:40:55.010000"],["2024-07-24T16:40:56.010000"],["2024-07-24T16:40:57.010000"],["2024-07-24T16:40:58.010000"],["2024-07-24T16:40:59.010000"],["2024-07-24T16:41:00.010000"],["2024-07-24T16:41:01.010000"],["2024-07-24T16:41:02.010000"],["2024-07-24T16:41:03.010000"],["2024-07-24T16:41:04.010000"],["2024-07-24T16:41:05.010000"],["2024-07-24T16:41:06.010000"],["2024-07-24T16:41:07.010000"],["2024-07-24T16:41:08.010000"],["2024-07-24T16:41:09.010000"],["2024-07-24T16:41:10.010000"],["2024-07-24T16:41:11.010000"],["2024-07-24T16:41:12.010000"],["2024-07-24T16:41:13.010000"],["2024-07-24T16:41:14.010000"],["2024-07-24T16:41:15.010000"],["2024-07-24T16:41:16.010000"],["2024-07-24T16:41:17.010000"],["2024-07-24T16:41:18.010000"],["2024-07-24T16:41:19.010000"],["2024-07-24T16:41:20.010000"],["2024-07-24T16:41:21.010000"],["2024-07-24T16:41:22.010000"],["2024-07-24T16:41:23.010000"],["2024-07-24T16:41:24.010000"],["2024-07-24T16:41:25.010000"],["2024-07-24T16:41:26.010000"],["2024-07-24T16:41:27.010000"],["2024-07-24T16:41:28.010000"],["2024-07-24T16:41:29.010000"],["2024-07-24T16:41:30.010000"],["2024-07-24T16:41:31.010000"],["2024-07-24T16:41:32.010000"],["2024-07-24T16:41:33.010000"],["2024-07-24T16:41:34.010000"],["2024-07-24T16:41:35.010000"],["2024-07-24T16:41:36.010000"],["2024-07-24T16:41:37.010000"],["2024-07-24T16:41:38.010000"],["2024-07-24T16:41:39.010000"],["2024-07-24T16:41:40.010000"],["2024-07-24T16:41:41.010000"],["2024-07-24T16:41:42.010000"],["2024-07-24T16:41:43.010000"],["2024-07-24T16:41:44.010000"],["2024-07-24T16:41:45.010000"],["2024-07-24T16:41:46.010000"],["2024-07-24T16:41:47.010000"],["2024-07-24T16:41:48.010000"],["2024-07-24T16:41:49.010000"],["2024-07-24T16:41:50.010000"],["2024-07-24T16:41:51.010000"],["2024-07-24T16:41:52.010000"],["2024-07-24T16:41:53.010000"],["2024-07-24T16:41:54.010000"],["2024-07-24T16:41:55.010000"],["2024-07-24T16:41:56.010000"],["2024-07-24T16:41:57.010000"],["2024-07-24T16:41:58.010000"],["2024-07-24T16:41:59.010000"],["2024-07-24T16:42:00.010000"],["2024-07-24T16:42:01.010000"],["2024-07-24T16:42:02.010000"],["2024-07-24T16:42:03.010000"],["2024-07-24T16:42:04.010000"],["2024-07-24T16:42:05.010000"],["2024-07-24T16:42:06.010000"],["2024-07-24T16:42:07.010000"],["2024-07-24T16:42:08.010000"],["2024-07-24T16:42:09.010000"],["2024-07-24T16:42:10.010000"],["2024-07-24T16:42:11.010000"],["2024-07-24T16:42:12.010000"],["2024-07-24T16:42:13.010000"],["2024-07-24T16:42:14.010000"],["2024-07-24T16:42:15.010000"],["2024-07-24T16:42:16.010000"],["2024-07-24T16:42:17.010000"],["2024-07-24T16:42:18.010000"],["2024-07-24T16:42:19.010000"],["2024-07-24T16:42:20.010000"],["2024-07-24T16:42:21.010000"],["2024-07-24T16:42:22.010000"],["2024-07-24T16:42:23.010000"],["2024-07-24T16:42:24.010000"],["2024-07-24T16:42:25.010000"],["2024-07-24T16:42:26.010000"],["2024-07-24T16:42:27.010000"],["2024-07-24T16:42:28.010000"],["2024-07-24T16:42:29.010000"],["2024-07-24T16:42:30.010000"],["2024-07-24T16:42:31.010000"],["2024-07-24T16:42:32.010000"],["2024-07-24T16:42:33.010000"],["2024-07-24T16:42:34.010000"],["2024-07-24T16:42:35.010000"],["2024-07-24T16:42:36.010000"],["2024-07-24T16:42:37.010000"],["2024-07-24T16:42:38.010000"],["2024-07-24T16:42:39.010000"],["2024-07-24T16:42:40.010000"],["2024-07-24T16:42:41.010000"],["2024-07-24T16:42:42.010000"],["2024-07-24T16:42:43.010000"],["2024-07-24T16:42:44.010000"],["2024-07-24T16:42:45.010000"],["2024-07-24T16:42:46.010000"],["2024-07-24T16:42:47.010000"],["2024-07-24T16:42:48.010000"],["2024-07-24T16:42:49.010000"],["2024-07-24T16:42:50.010000"],["2024-07-24T16:42:51.010000"],["2024-07-24T16:42:52.010000"],["2024-07-24T16:42:53.010000"],["2024-07-24T16:42:54.010000"],["2024-07-24T16:42:55.010000"],["2024-07-24T16:42:56.010000"],["2024-07-24T16:42:57.010000"],["2024-07-24T16:42:58.010000"],["2024-07-24T16:42:59.010000"],["2024-07-24T16:43:00.010000"],["2024-07-24T16:43:01.010000"],["2024-07-24T16:43:02.010000"],["2024-07-24T16:43:03.010000"],["2024-07-24T16:43:04.010000"],["2024-07-24T16:43:05.010000"],["2024-07-24T16:43:06.010000"],["2024-07-24T16:43:07.010000"],["2024-07-24T16:43:08.010000"],["2024-07-24T16:43:09.010000"],["2024-07-24T16:43:10.010000"],["2024-07-24T16:43:11.010000"],["2024-07-24T16:43:12.010000"],["2024-07-24T16:43:13.010000"],["2024-07-24T16:43:14.010000"],["2024-07-24T16:43:15.010000"],["2024-07-24T16:43:16.010000"],["2024-07-24T16:43:17.010000"],["2024-07-24T16:43:18.010000"],["2024-07-24T16:43:19.010000"],["2024-07-24T16:43:20.010000"],["2024-07-24T16:43:21.010000"],["2024-07-24T16:43:22.010000"],["2024-07-24T16:43:23.010000"],["2024-07-24T16:43:24.010000"],["2024-07-24T16:43:25.010000"],["2024-07-24T16:43:26.010000"],["2024-07-24T16:43:27.010000"],["2024-07-24T16:43:28.010000"],["2024-07-24T16:43:29.010000"],["2024-07-24T16:43:30.010000"],["2024-07-24T16:43:31.010000"],["2024-07-24T16:43:32.010000"],["2024-07-24T16:43:33.010000"],["2024-07-24T16:43:34.010000"],["2024-07-24T16:43:35.010000"],["2024-07-24T16:43:36.010000"],["2024-07-24T16:43:37.010000"],["2024-07-24T16:43:38.010000"],["2024-07-24T16:43:39.010000"],["2024-07-24T16:43:40.010000"],["2024-07-24T16:43:41.010000"],["2024-07-24T16:43:42.010000"],["2024-07-24T16:43:43.010000"],["2024-07-24T16:43:44.010000"],["2024-07-24T16:43:45.010000"],["2024-07-24T16:43:46.010000"],["2024-07-24T16:43:47.010000"],["2024-07-24T16:43:48.010000"],["2024-07-24T16:43:49.010000"],["2024-07-24T16:43:50.010000"],["2024-07-24T16:43:51.010000"],["2024-07-24T16:43:52.010000"],["2024-07-24T16:43:53.010000"],["2024-07-24T16:43:54.010000"],["2024-07-24T16:43:55.010000"],["2024-07-24T16:43:56.010000"],["2024-07-24T16:43:57.010000"],["2024-07-24T16:43:58.010000"],["2024-07-24T16:43:59.010000"],["2024-07-24T16:44:00.010000"],["2024-07-24T16:44:01.010000"],["2024-07-24T16:44:02.010000"],["2024-07-24T16:44:03.010000"],["2024-07-24T16:44:04.010000"],["2024-07-24T16:44:05.010000"],["2024-07-24T16:44:06.010000"],["2024-07-24T16:44:07.010000"],["2024-07-24T16:44:08.010000"],["2024-07-24T16:44:09.010000"],["2024-07-24T16:44:10.010000"],["2024-07-24T16:44:11.010000"],["2024-07-24T16:44:12.010000"],["2024-07-24T16:44:13.010000"],["2024-07-24T16:44:14.010000"],["2024-07-24T16:44:15.010000"],["2024-07-24T16:44:16.010000"],["2024-07-24T16:44:17.010000"],["2024-07-24T16:44:18.010000"],["2024-07-24T16:44:19.010000"],["2024-07-24T16:44:20.010000"],["2024-07-24T16:44:21.010000"],["2024-07-24T16:44:22.010000"],["2024-07-24T16:44:23.010000"],["2024-07-24T16:44:24.010000"],["2024-07-24T16:44:25.010000"],["2024-07-24T16:44:26.010000"],["2024-07-24T16:44:27.010000"],["2024-07-24T16:44:28.010000"],["2024-07-24T16:44:29.010000"],["2024-07-24T16:44:30.010000"],["2024-07-24T16:44:31.010000"],["2024-07-24T16:44:32.010000"],["2024-07-24T16:44:33.010000"],["2024-07-24T16:44:34.010000"],["2024-07-24T16:44:35.010000"],["2024-07-24T16:44:36.010000"],["2024-07-24T16:44:37.010000"],["2024-07-24T16:44:38.010000"],["2024-07-24T16:44:39.010000"],["2024-07-24T16:44:40.010000"],["2024-07-24T16:44:41.010000"],["2024-07-24T16:44:42.010000"],["2024-07-24T16:44:43.010000"],["2024-07-24T16:44:44.010000"],["2024-07-24T16:44:45.010000"],["2024-07-24T16:44:46.010000"],["2024-07-24T16:44:47.010000"],["2024-07-24T16:44:48.010000"],["2024-07-24T16:44:49.010000"],["2024-07-24T16:44:50.010000"],["2024-07-24T16:44:51.010000"],["2024-07-24T16:44:52.010000"],["2024-07-24T16:44:53.010000"],["2024-07-24T16:44:54.010000"],["2024-07-24T16:44:55.010000"],["2024-07-24T16:44:56.010000"],["2024-07-24T16:44:57.010000"],["2024-07-24T16:44:58.010000"],["2024-07-24T16:44:59.010000"],["2024-07-24T16:45:00.010000"],["2024-07-24T16:45:01.010000"],["2024-07-24T16:45:02.010000"],["2024-07-24T16:45:03.010000"],["2024-07-24T16:45:04.010000"],["2024-07-24T16:45:05.010000"],["2024-07-24T16:45:06.010000"],["2024-07-24T16:45:07.010000"],["2024-07-24T16:45:08.010000"],["2024-07-24T16:45:09.010000"],["2024-07-24T16:45:10.010000"],["2024-07-24T16:45:11.010000"],["2024-07-24T16:45:12.010000"],["2024-07-24T16:45:13.010000"],["2024-07-24T16:45:14.010000"],["2024-07-24T16:45:15.010000"],["2024-07-24T16:45:16.010000"],["2024-07-24T16:45:17.010000"],["2024-07-24T16:45:18.010000"],["2024-07-24T16:45:19.010000"],["2024-07-24T16:45:20.010000"],["2024-07-24T16:45:21.010000"],["2024-07-24T16:45:22.010000"],["2024-07-24T16:45:23.010000"],["2024-07-24T16:45:24.010000"],["2024-07-24T16:45:25.010000"],["2024-07-24T16:45:26.010000"],["2024-07-24T16:45:27.010000"],["2024-07-24T16:45:28.010000"],["2024-07-24T16:45:29.010000"],["2024-07-24T16:45:30.010000"],["2024-07-24T16:45:31.010000"],["2024-07-24T16:45:32.010000"],["2024-07-24T16:45:33.010000"],["2024-07-24T16:45:34.010000"],["2024-07-24T16:45:35.010000"],["2024-07-24T16:45:36.010000"],["2024-07-24T16:45:37.010000"],["2024-07-24T16:45:38.010000"],["2024-07-24T16:45:39.010000"],["2024-07-24T16:45:40.010000"],["2024-07-24T16:45:41.010000"],["2024-07-24T16:45:42.010000"],["2024-07-24T16:45:43.010000"],["2024-07-24T16:45:44.010000"],["2024-07-24T16:45:45.010000"],["2024-07-24T16:45:46.010000"],["2024-07-24T16:45:47.010000"],["2024-07-24T16:45:48.010000"],["2024-07-24T16:45:49.010000"],["2024-07-24T16:45:50.010000"],["2024-07-24T16:45:51.010000"],["2024-07-24T16:45:52.010000"],["2024-07-24T16:45:53.010000"],["2024-07-24T16:45:54.010000"],["2024-07-24T16:45:55.010000"],["2024-07-24T16:45:56.010000"],["2024-07-24T16:45:57.010000"],["2024-07-24T16:45:58.010000"],["2024-07-24T16:45:59.010000"],["2024-07-24T16:46:00.010000"],["2024-07-24T16:46:01.010000"],["2024-07-24T16:46:02.010000"],["2024-07-24T16:46:03.010000"],["2024-07-24T16:46:04.010000"],["2024-07-24T16:46:05.010000"],["2024-07-24T16:46:06.010000"],["2024-07-24T16:46:07.010000"],["2024-07-24T16:46:08.010000"],["2024-07-24T16:46:09.010000"],["2024-07-24T16:46:10.010000"],["2024-07-24T16:46:11.010000"],["2024-07-24T16:46:12.010000"],["2024-07-24T16:46:13.010000"],["2024-07-24T16:46:14.010000"],["2024-07-24T16:46:15.010000"],["2024-07-24T16:46:16.010000"],["2024-07-24T16:46:17.010000"],["2024-07-24T16:46:18.010000"],["2024-07-24T16:46:19.010000"],["2024-07-24T16:46:20.010000"],["2024-07-24T16:46:21.010000"],["2024-07-24T16:46:22.010000"],["2024-07-24T16:46:23.010000"],["2024-07-24T16:46:24.010000"],["2024-07-24T16:46:25.010000"],["2024-07-24T16:46:26.010000"],["2024-07-24T16:46:27.010000"],["2024-07-24T16:46:28.010000"],["2024-07-24T16:46:29.010000"],["2024-07-24T16:46:30.010000"],["2024-07-24T16:46:31.010000"],["2024-07-24T16:46:32.010000"],["2024-07-24T16:46:33.010000"],["2024-07-24T16:46:34.010000"],["2024-07-24T16:46:35.010000"],["2024-07-24T16:46:36.010000"],["2024-07-24T16:46:37.010000"],["2024-07-24T16:46:38.010000"],["2024-07-24T16:46:39.010000"],["2024-07-24T16:46:40.010000"],["2024-07-24T16:46:41.010000"],["2024-07-24T16:46:42.010000"],["2024-07-24T16:46:43.010000"],["2024-07-24T16:46:44.010000"],["2024-07-24T16:46:45.010000"],["2024-07-24T16:46:46.010000"],["2024-07-24T16:46:47.010000"],["2024-07-24T16:46:48.010000"],["2024-07-24T16:46:49.010000"],["2024-07-24T16:46:50.010000"],["2024-07-24T16:46:51.010000"],["2024-07-24T16:46:52.010000"],["2024-07-24T16:46:53.010000"],["2024-07-24T16:46:54.010000"],["2024-07-24T16:46:55.010000"],["2024-07-24T16:46:56.010000"],["2024-07-24T16:46:57.010000"],["2024-07-24T16:46:58.010000"],["2024-07-24T16:46:59.010000"],["2024-07-24T16:47:00.010000"],["2024-07-24T16:47:01.010000"],["2024-07-24T16:47:02.010000"],["2024-07-24T16:47:03.010000"],["2024-07-24T16:47:04.010000"],["2024-07-24T16:47:05.010000"],["2024-07-24T16:47:06.010000"],["2024-07-24T16:47:07.010000"],["2024-07-24T16:47:08.010000"],["2024-07-24T16:47:09.010000"],["2024-07-24T16:47:10.010000"],["2024-07-24T16:47:11.010000"],["2024-07-24T16:47:12.010000"],["2024-07-24T16:47:13.010000"],["2024-07-24T16:47:14.010000"],["2024-07-24T16:47:15.010000"],["2024-07-24T16:47:16.010000"],["2024-07-24T16:47:17.010000"],["2024-07-24T16:47:18.010000"],["2024-07-24T16:47:19.010000"],["2024-07-24T16:47:20.010000"],["2024-07-24T16:47:21.010000"],["2024-07-24T16:47:22.010000"],["2024-07-24T16:47:23.010000"],["2024-07-24T16:47:24.010000"],["2024-07-24T16:47:25.010000"],["2024-07-24T16:47:26.010000"],["2024-07-24T16:47:27.010000"],["2024-07-24T16:47:28.010000"],["2024-07-24T16:47:29.010000"],["2024-07-24T16:47:30.010000"],["2024-07-24T16:47:31.010000"],["2024-07-24T16:47:32.010000"],["2024-07-24T16:47:33.010000"],["2024-07-24T16:47:34.010000"],["2024-07-24T16:47:35.010000"],["2024-07-24T16:47:36.010000"],["2024-07-24T16:47:37.010000"],["2024-07-24T16:47:38.010000"],["2024-07-24T16:47:39.010000"],["2024-07-24T16:47:40.010000"],["2024-07-24T16:47:41.010000"],["2024-07-24T16:47:42.010000"],["2024-07-24T16:47:43.010000"],["2024-07-24T16:47:44.010000"],["2024-07-24T16:47:45.010000"],["2024-07-24T16:47:46.010000"],["2024-07-24T16:47:47.010000"],["2024-07-24T16:47:48.010000"],["2024-07-24T16:47:49.010000"],["2024-07-24T16:47:50.010000"],["2024-07-24T16:47:51.010000"],["2024-07-24T16:47:52.010000"],["2024-07-24T16:47:53.010000"],["2024-07-24T16:47:54.010000"],["2024-07-24T16:47:55.010000"],["2024-07-24T16:47:56.010000"],["2024-07-24T16:47:57.010000"],["2024-07-24T16:47:58.010000"],["2024-07-24T16:47:59.010000"],["2024-07-24T16:48:00.010000"],["2024-07-24T16:48:01.010000"],["2024-07-24T16:48:02.010000"],["2024-07-24T16:48:03.010000"],["2024-07-24T16:48:04.010000"],["2024-07-24T16:48:05.010000"],["2024-07-24T16:48:06.010000"],["2024-07-24T16:48:07.010000"],["2024-07-24T16:48:08.010000"],["2024-07-24T16:48:09.010000"],["2024-07-24T16:48:10.010000"],["2024-07-24T16:48:11.010000"],["2024-07-24T16:48:12.010000"],["2024-07-24T16:48:13.010000"],["2024-07-24T16:48:14.010000"],["2024-07-24T16:48:15.010000"],["2024-07-24T16:48:16.010000"],["2024-07-24T16:48:17.010000"],["2024-07-24T16:48:18.010000"],["2024-07-24T16:48:19.010000"],["2024-07-24T16:48:20.010000"],["2024-07-24T16:48:21.010000"],["2024-07-24T16:48:22.010000"],["2024-07-24T16:48:23.010000"],["2024-07-24T16:48:24.010000"],["2024-07-24T16:48:25.010000"],["2024-07-24T16:48:26.010000"],["2024-07-24T16:48:27.010000"],["2024-07-24T16:48:28.010000"],["2024-07-24T16:48:29.010000"],["2024-07-24T16:48:30.010000"],["2024-07-24T16:48:31.010000"],["2024-07-24T16:48:32.010000"],["2024-07-24T16:48:33.010000"],["2024-07-24T16:48:34.010000"],["2024-07-24T16:48:35.010000"],["2024-07-24T16:48:36.010000"],["2024-07-24T16:48:37.010000"],["2024-07-24T16:48:38.010000"],["2024-07-24T16:48:39.010000"],["2024-07-24T16:48:40.010000"],["2024-07-24T16:48:41.010000"],["2024-07-24T16:48:42.010000"],["2024-07-24T16:48:43.010000"],["2024-07-24T16:48:44.010000"],["2024-07-24T16:48:45.010000"],["2024-07-24T16:48:46.010000"],["2024-07-24T16:48:47.010000"],["2024-07-24T16:48:48.010000"],["2024-07-24T16:48:49.010000"],["2024-07-24T16:48:50.010000"],["2024-07-24T16:48:51.010000"],["2024-07-24T16:48:52.010000"],["2024-07-24T16:48:53.010000"],["2024-07-24T16:48:54.010000"],["2024-07-24T16:48:55.010000"],["2024-07-24T16:48:56.010000"],["2024-07-24T16:48:57.010000"],["2024-07-24T16:48:58.010000"],["2024-07-24T16:48:59.010000"],["2024-07-24T16:49:00.010000"],["2024-07-24T16:49:01.010000"],["2024-07-24T16:49:02.010000"],["2024-07-24T16:49:03.010000"],["2024-07-24T16:49:04.010000"],["2024-07-24T16:49:05.010000"],["2024-07-24T16:49:06.010000"],["2024-07-24T16:49:07.010000"],["2024-07-24T16:49:08.010000"],["2024-07-24T16:49:09.010000"],["2024-07-24T16:49:10.010000"],["2024-07-24T16:49:11.010000"],["2024-07-24T16:49:12.010000"],["2024-07-24T16:49:13.010000"],["2024-07-24T16:49:14.010000"],["2024-07-24T16:49:15.010000"],["2024-07-24T16:49:16.010000"],["2024-07-24T16:49:17.010000"],["2024-07-24T16:49:18.010000"],["2024-07-24T16:49:19.010000"],["2024-07-24T16:49:20.010000"],["2024-07-24T16:49:21.010000"],["2024-07-24T16:49:22.010000"],["2024-07-24T16:49:23.010000"],["2024-07-24T16:49:24.010000"],["2024-07-24T16:49:25.010000"],["2024-07-24T16:49:26.010000"],["2024-07-24T16:49:27.010000"],["2024-07-24T16:49:28.010000"],["2024-07-24T16:49:29.010000"],["2024-07-24T16:49:30.010000"],["2024-07-24T16:49:31.010000"],["2024-07-24T16:49:32.010000"],["2024-07-24T16:49:33.010000"],["2024-07-24T16:49:34.010000"],["2024-07-24T16:49:35.010000"],["2024-07-24T16:49:36.010000"],["2024-07-24T16:49:37.010000"],["2024-07-24T16:49:38.010000"],["2024-07-24T16:49:39.010000"],["2024-07-24T16:49:40.010000"],["2024-07-24T16:49:41.010000"],["2024-07-24T16:49:42.010000"],["2024-07-24T16:49:43.010000"],["2024-07-24T16:49:44.010000"],["2024-07-24T16:49:45.010000"],["2024-07-24T16:49:46.010000"],["2024-07-24T16:49:47.010000"],["2024-07-24T16:49:48.010000"],["2024-07-24T16:49:49.010000"],["2024-07-24T16:49:50.010000"],["2024-07-24T16:49:51.010000"],["2024-07-24T16:49:52.010000"],["2024-07-24T16:49:53.010000"],["2024-07-24T16:49:54.010000"],["2024-07-24T16:49:55.010000"],["2024-07-24T16:49:56.010000"],["2024-07-24T16:49:57.010000"],["2024-07-24T16:49:58.010000"],["2024-07-24T16:49:59.010000"],["2024-07-24T16:50:00.010000"],["2024-07-24T16:50:01.010000"],["2024-07-24T16:50:02.010000"],["2024-07-24T16:50:03.010000"],["2024-07-24T16:50:04.010000"],["2024-07-24T16:50:05.010000"],["2024-07-24T16:50:06.010000"],["2024-07-24T16:50:07.010000"],["2024-07-24T16:50:08.010000"],["2024-07-24T16:50:09.010000"],["2024-07-24T16:50:10.010000"],["2024-07-24T16:50:11.010000"],["2024-07-24T16:50:12.010000"],["2024-07-24T16:50:13.010000"],["2024-07-24T16:50:14.010000"],["2024-07-24T16:50:15.010000"],["2024-07-24T16:50:16.010000"],["2024-07-24T16:50:17.010000"],["2024-07-24T16:50:18.010000"],["2024-07-24T16:50:19.010000"],["2024-07-24T16:50:20.010000"],["2024-07-24T16:50:21.010000"],["2024-07-24T16:50:22.010000"],["2024-07-24T16:50:23.010000"],["2024-07-24T16:50:24.010000"],["2024-07-24T16:50:25.010000"],["2024-07-24T16:50:26.010000"],["2024-07-24T16:50:27.010000"],["2024-07-24T16:50:28.010000"],["2024-07-24T16:50:29.010000"],["2024-07-24T16:50:30.010000"],["2024-07-24T16:50:31.010000"],["2024-07-24T16:50:32.010000"],["2024-07-24T16:50:33.010000"],["2024-07-24T16:50:34.010000"],["2024-07-24T16:50:35.010000"],["2024-07-24T16:50:36.010000"],["2024-07-24T16:50:37.010000"],["2024-07-24T16:50:38.010000"],["2024-07-24T16:50:39.010000"],["2024-07-24T16:50:40.010000"],["2024-07-24T16:50:41.010000"],["2024-07-24T16:50:42.010000"],["2024-07-24T16:50:43.010000"],["2024-07-24T16:50:44.010000"],["2024-07-24T16:50:45.010000"],["2024-07-24T16:50:46.010000"],["2024-07-24T16:50:47.010000"],["2024-07-24T16:50:48.010000"],["2024-07-24T16:50:49.010000"],["2024-07-24T16:50:50.010000"],["2024-07-24T16:50:51.010000"],["2024-07-24T16:50:52.010000"],["2024-07-24T16:50:53.010000"],["2024-07-24T16:50:54.010000"],["2024-07-24T16:50:55.010000"],["2024-07-24T16:50:56.010000"],["2024-07-24T16:50:57.010000"],["2024-07-24T16:50:58.010000"],["2024-07-24T16:50:59.010000"],["2024-07-24T16:51:00.010000"],["2024-07-24T16:51:01.010000"],["2024-07-24T16:51:02.010000"],["2024-07-24T16:51:03.010000"],["2024-07-24T16:51:04.010000"],["2024-07-24T16:51:05.010000"],["2024-07-24T16:51:06.010000"],["2024-07-24T16:51:07.010000"],["2024-07-24T16:51:08.010000"],["2024-07-24T16:51:09.010000"],["2024-07-24T16:51:10.010000"],["2024-07-24T16:51:11.010000"],["2024-07-24T16:51:12.010000"],["2024-07-24T16:51:13.010000"],["2024-07-24T16:51:14.010000"],["2024-07-24T16:51:15.010000"],["2024-07-24T16:51:16.010000"],["2024-07-24T16:51:17.010000"],["2024-07-24T16:51:18.010000"],["2024-07-24T16:51:19.010000"],["2024-07-24T16:51:20.010000"],["2024-07-24T16:51:21.010000"],["2024-07-24T16:51:22.010000"],["2024-07-24T16:51:23.010000"],["2024-07-24T16:51:24.010000"],["2024-07-24T16:51:25.010000"],["2024-07-24T16:51:26.010000"],["2024-07-24T16:51:27.010000"],["2024-07-24T16:51:28.010000"],["2024-07-24T16:51:29.010000"],["2024-07-24T16:51:30.010000"],["2024-07-24T16:51:31.010000"],["2024-07-24T16:51:32.010000"],["2024-07-24T16:51:33.010000"],["2024-07-24T16:51:34.010000"],["2024-07-24T16:51:35.010000"],["2024-07-24T16:51:36.010000"],["2024-07-24T16:51:37.010000"],["2024-07-24T16:51:38.010000"],["2024-07-24T16:51:39.010000"],["2024-07-24T16:51:40.010000"],["2024-07-24T16:51:41.010000"],["2024-07-24T16:51:42.010000"],["2024-07-24T16:51:43.010000"],["2024-07-24T16:51:44.010000"],["2024-07-24T16:51:45.010000"],["2024-07-24T16:51:46.010000"],["2024-07-24T16:51:47.010000"],["2024-07-24T16:51:48.010000"],["2024-07-24T16:51:49.010000"],["2024-07-24T16:51:50.010000"],["2024-07-24T16:51:51.010000"],["2024-07-24T16:51:52.010000"],["2024-07-24T16:51:53.010000"],["2024-07-24T16:51:54.010000"],["2024-07-24T16:51:55.010000"],["2024-07-24T16:51:56.010000"],["2024-07-24T16:51:57.010000"],["2024-07-24T16:51:58.010000"],["2024-07-24T16:51:59.010000"],["2024-07-24T16:52:00.010000"],["2024-07-24T16:52:01.010000"],["2024-07-24T16:52:02.010000"],["2024-07-24T16:52:03.010000"],["2024-07-24T16:52:04.010000"],["2024-07-24T16:52:05.010000"],["2024-07-24T16:52:06.010000"],["2024-07-24T16:52:07.010000"],["2024-07-24T16:52:08.010000"],["2024-07-24T16:52:09.010000"],["2024-07-24T16:52:10.010000"],["2024-07-24T16:52:11.010000"],["2024-07-24T16:52:12.010000"],["2024-07-24T16:52:13.010000"],["2024-07-24T16:52:14.010000"],["2024-07-24T16:52:15.010000"],["2024-07-24T16:52:16.010000"],["2024-07-24T16:52:17.010000"],["2024-07-24T16:52:18.010000"],["2024-07-24T16:52:19.010000"],["2024-07-24T16:52:20.010000"],["2024-07-24T16:52:21.010000"],["2024-07-24T16:52:22.010000"],["2024-07-24T16:52:23.010000"],["2024-07-24T16:52:24.010000"],["2024-07-24T16:52:25.010000"],["2024-07-24T16:52:26.010000"],["2024-07-24T16:52:27.010000"],["2024-07-24T16:52:28.010000"],["2024-07-24T16:52:29.010000"],["2024-07-24T16:52:30.010000"],["2024-07-24T16:52:31.010000"],["2024-07-24T16:52:32.010000"],["2024-07-24T16:52:33.010000"],["2024-07-24T16:52:34.010000"],["2024-07-24T16:52:35.010000"],["2024-07-24T16:52:36.010000"],["2024-07-24T16:52:37.010000"],["2024-07-24T16:52:38.010000"],["2024-07-24T16:52:39.010000"],["2024-07-24T16:52:40.010000"],["2024-07-24T16:52:41.010000"],["2024-07-24T16:52:42.010000"],["2024-07-24T16:52:43.010000"],["2024-07-24T16:52:44.010000"],["2024-07-24T16:52:45.010000"],["2024-07-24T16:52:46.010000"],["2024-07-24T16:52:47.010000"],["2024-07-24T16:52:48.010000"],["2024-07-24T16:52:49.010000"],["2024-07-24T16:52:50.010000"],["2024-07-24T16:52:51.010000"],["2024-07-24T16:52:52.010000"],["2024-07-24T16:52:53.010000"],["2024-07-24T16:52:54.010000"],["2024-07-24T16:52:55.010000"],["2024-07-24T16:52:56.010000"],["2024-07-24T16:52:57.010000"],["2024-07-24T16:52:58.010000"],["2024-07-24T16:52:59.010000"],["2024-07-24T16:53:00.010000"],["2024-07-24T16:53:01.010000"],["2024-07-24T16:53:02.010000"],["2024-07-24T16:53:03.010000"],["2024-07-24T16:53:04.010000"],["2024-07-24T16:53:05.010000"],["2024-07-24T16:53:06.010000"],["2024-07-24T16:53:07.010000"],["2024-07-24T16:53:08.010000"],["2024-07-24T16:53:09.010000"],["2024-07-24T16:53:10.010000"],["2024-07-24T16:53:11.010000"],["2024-07-24T16:53:12.010000"],["2024-07-24T16:53:13.010000"],["2024-07-24T16:53:14.010000"],["2024-07-24T16:53:15.010000"],["2024-07-24T16:53:16.010000"],["2024-07-24T16:53:17.010000"],["2024-07-24T16:53:18.010000"],["2024-07-24T16:53:19.010000"],["2024-07-24T16:53:20.010000"],["2024-07-24T16:53:21.010000"],["2024-07-24T16:53:22.010000"],["2024-07-24T16:53:23.010000"],["2024-07-24T16:53:24.010000"],["2024-07-24T16:53:25.010000"],["2024-07-24T16:53:26.010000"],["2024-07-24T16:53:27.010000"],["2024-07-24T16:53:28.010000"],["2024-07-24T16:53:29.010000"],["2024-07-24T16:53:30.010000"],["2024-07-24T16:53:31.010000"],["2024-07-24T16:53:32.010000"],["2024-07-24T16:53:33.010000"],["2024-07-24T16:53:34.010000"],["2024-07-24T16:53:35.010000"],["2024-07-24T16:53:36.010000"],["2024-07-24T16:53:37.010000"],["2024-07-24T16:53:38.010000"],["2024-07-24T16:53:39.010000"],["2024-07-24T16:53:40.010000"],["2024-07-24T16:53:41.010000"],["2024-07-24T16:53:42.010000"],["2024-07-24T16:53:43.010000"],["2024-07-24T16:53:44.010000"],["2024-07-24T16:53:45.010000"],["2024-07-24T16:53:46.010000"],["2024-07-24T16:53:47.010000"],["2024-07-24T16:53:48.010000"],["2024-07-24T16:53:49.010000"],["2024-07-24T16:53:50.010000"],["2024-07-24T16:53:51.010000"],["2024-07-24T16:53:52.010000"],["2024-07-24T16:53:53.010000"],["2024-07-24T16:53:54.010000"],["2024-07-24T16:53:55.010000"],["2024-07-24T16:53:56.010000"],["2024-07-24T16:53:57.010000"],["2024-07-24T16:53:58.010000"],["2024-07-24T16:53:59.010000"],["2024-07-24T16:54:00.010000"],["2024-07-24T16:54:01.010000"],["2024-07-24T16:54:02.010000"],["2024-07-24T16:54:03.010000"],["2024-07-24T16:54:04.010000"],["2024-07-24T16:54:05.010000"],["2024-07-24T16:54:06.010000"],["2024-07-24T16:54:07.010000"],["2024-07-24T16:54:08.010000"],["2024-07-24T16:54:09.010000"],["2024-07-24T16:54:10.010000"],["2024-07-24T16:54:11.010000"],["2024-07-24T16:54:12.010000"],["2024-07-24T16:54:13.010000"],["2024-07-24T16:54:14.010000"],["2024-07-24T16:54:15.010000"],["2024-07-24T16:54:16.010000"],["2024-07-24T16:54:17.010000"],["2024-07-24T16:54:18.010000"],["2024-07-24T16:54:19.010000"],["2024-07-24T16:54:20.010000"],["2024-07-24T16:54:21.010000"],["2024-07-24T16:54:22.010000"],["2024-07-24T16:54:23.010000"],["2024-07-24T16:54:24.010000"],["2024-07-24T16:54:25.010000"],["2024-07-24T16:54:26.010000"],["2024-07-24T16:54:27.010000"],["2024-07-24T16:54:28.010000"],["2024-07-24T16:54:29.010000"],["2024-07-24T16:54:30.010000"],["2024-07-24T16:54:31.010000"],["2024-07-24T16:54:32.010000"],["2024-07-24T16:54:33.010000"],["2024-07-24T16:54:34.010000"],["2024-07-24T16:54:35.010000"],["2024-07-24T16:54:36.010000"],["2024-07-24T16:54:37.010000"],["2024-07-24T16:54:38.010000"],["2024-07-24T16:54:39.010000"],["2024-07-24T16:54:40.010000"],["2024-07-24T16:54:41.010000"],["2024-07-24T16:54:42.010000"],["2024-07-24T16:54:43.010000"],["2024-07-24T16:54:44.010000"],["2024-07-24T16:54:45.010000"],["2024-07-24T16:54:46.010000"],["2024-07-24T16:54:47.010000"],["2024-07-24T16:54:48.010000"],["2024-07-24T16:54:49.010000"],["2024-07-24T16:54:50.010000"],["2024-07-24T16:54:51.010000"],["2024-07-24T16:54:52.010000"],["2024-07-24T16:54:53.010000"],["2024-07-24T16:54:54.010000"],["2024-07-24T16:54:55.010000"],["2024-07-24T16:54:56.010000"],["2024-07-24T16:54:57.010000"],["2024-07-24T16:54:58.010000"],["2024-07-24T16:54:59.010000"],["2024-07-24T16:55:00.010000"],["2024-07-24T16:55:01.010000"],["2024-07-24T16:55:02.010000"],["2024-07-24T16:55:03.010000"],["2024-07-24T16:55:04.010000"],["2024-07-24T16:55:05.010000"],["2024-07-24T16:55:06.010000"],["2024-07-24T16:55:07.010000"],["2024-07-24T16:55:08.010000"],["2024-07-24T16:55:09.010000"],["2024-07-24T16:55:10.010000"],["2024-07-24T16:55:11.010000"],["2024-07-24T16:55:12.010000"],["2024-07-24T16:55:13.010000"],["2024-07-24T16:55:14.010000"],["2024-07-24T16:55:15.010000"],["2024-07-24T16:55:16.010000"],["2024-07-24T16:55:17.010000"],["2024-07-24T16:55:18.010000"],["2024-07-24T16:55:19.010000"],["2024-07-24T16:55:20.010000"],["2024-07-24T16:55:21.010000"],["2024-07-24T16:55:22.010000"],["2024-07-24T16:55:23.010000"],["2024-07-24T16:55:24.010000"],["2024-07-24T16:55:25.010000"],["2024-07-24T16:55:26.010000"],["2024-07-24T16:55:27.010000"],["2024-07-24T16:55:28.010000"],["2024-07-24T16:55:29.010000"],["2024-07-24T16:55:30.010000"],["2024-07-24T16:55:31.010000"],["2024-07-24T16:55:32.010000"],["2024-07-24T16:55:33.010000"],["2024-07-24T16:55:34.010000"],["2024-07-24T16:55:35.010000"],["2024-07-24T16:55:36.010000"],["2024-07-24T16:55:37.010000"],["2024-07-24T16:55:38.010000"],["2024-07-24T16:55:39.010000"],["2024-07-24T16:55:40.010000"],["2024-07-24T16:55:41.010000"],["2024-07-24T16:55:42.010000"],["2024-07-24T16:55:43.010000"],["2024-07-24T16:55:44.010000"],["2024-07-24T16:55:45.010000"],["2024-07-24T16:55:46.010000"],["2024-07-24T16:55:47.010000"],["2024-07-24T16:55:48.010000"],["2024-07-24T16:55:49.010000"],["2024-07-24T16:55:50.010000"],["2024-07-24T16:55:51.010000"],["2024-07-24T16:55:52.010000"],["2024-07-24T16:55:53.010000"],["2024-07-24T16:55:54.010000"],["2024-07-24T16:55:55.010000"],["2024-07-24T16:55:56.010000"],["2024-07-24T16:55:57.010000"],["2024-07-24T16:55:58.010000"],["2024-07-24T16:55:59.010000"],["2024-07-24T16:56:00.010000"],["2024-07-24T16:56:01.010000"],["2024-07-24T16:56:02.010000"],["2024-07-24T16:56:03.010000"],["2024-07-24T16:56:04.010000"],["2024-07-24T16:56:05.010000"],["2024-07-24T16:56:06.010000"],["2024-07-24T16:56:07.010000"],["2024-07-24T16:56:08.010000"],["2024-07-24T16:56:09.010000"],["2024-07-24T16:56:10.010000"],["2024-07-24T16:56:11.010000"],["2024-07-24T16:56:12.010000"],["2024-07-24T16:56:13.010000"],["2024-07-24T16:56:14.010000"],["2024-07-24T16:56:15.010000"],["2024-07-24T16:56:16.010000"],["2024-07-24T16:56:17.010000"],["2024-07-24T16:56:18.010000"],["2024-07-24T16:56:19.010000"],["2024-07-24T16:56:20.010000"],["2024-07-24T16:56:21.010000"],["2024-07-24T16:56:22.010000"],["2024-07-24T16:56:23.010000"],["2024-07-24T16:56:24.010000"],["2024-07-24T16:56:25.010000"],["2024-07-24T16:56:26.010000"],["2024-07-24T16:56:27.010000"],["2024-07-24T16:56:28.010000"],["2024-07-24T16:56:29.010000"],["2024-07-24T16:56:30.010000"],["2024-07-24T16:56:31.010000"],["2024-07-24T16:56:32.010000"],["2024-07-24T16:56:33.010000"],["2024-07-24T16:56:34.010000"],["2024-07-24T16:56:35.010000"],["2024-07-24T16:56:36.010000"],["2024-07-24T16:56:37.010000"],["2024-07-24T16:56:38.010000"],["2024-07-24T16:56:39.010000"],["2024-07-24T16:56:40.010000"],["2024-07-24T16:56:41.010000"],["2024-07-24T16:56:42.010000"],["2024-07-24T16:56:43.010000"],["2024-07-24T16:56:44.010000"],["2024-07-24T16:56:45.010000"],["2024-07-24T16:56:46.010000"],["2024-07-24T16:56:47.010000"],["2024-07-24T16:56:48.010000"],["2024-07-24T16:56:49.010000"],["2024-07-24T16:56:50.010000"],["2024-07-24T16:56:51.010000"],["2024-07-24T16:56:52.010000"],["2024-07-24T16:56:53.010000"],["2024-07-24T16:56:54.010000"],["2024-07-24T16:56:55.010000"],["2024-07-24T16:56:56.010000"],["2024-07-24T16:56:57.010000"],["2024-07-24T16:56:58.010000"],["2024-07-24T16:56:59.010000"],["2024-07-24T16:57:00.010000"],["2024-07-24T16:57:01.010000"],["2024-07-24T16:57:02.010000"],["2024-07-24T16:57:03.010000"],["2024-07-24T16:57:04.010000"],["2024-07-24T16:57:05.010000"],["2024-07-24T16:57:06.010000"],["2024-07-24T16:57:07.010000"],["2024-07-24T16:57:08.010000"],["2024-07-24T16:57:09.010000"],["2024-07-24T16:57:10.010000"],["2024-07-24T16:57:11.010000"],["2024-07-24T16:57:12.010000"],["2024-07-24T16:57:13.010000"],["2024-07-24T16:57:14.010000"],["2024-07-24T16:57:15.010000"],["2024-07-24T16:57:16.010000"],["2024-07-24T16:57:17.010000"],["2024-07-24T16:57:18.010000"],["2024-07-24T16:57:19.010000"],["2024-07-24T16:57:20.010000"],["2024-07-24T16:57:21.010000"],["2024-07-24T16:57:22.010000"],["2024-07-24T16:57:23.010000"],["2024-07-24T16:57:24.010000"],["2024-07-24T16:57:25.010000"],["2024-07-24T16:57:26.010000"],["2024-07-24T16:57:27.010000"],["2024-07-24T16:57:28.010000"],["2024-07-24T16:57:29.010000"],["2024-07-24T16:57:30.010000"],["2024-07-24T16:57:31.010000"],["2024-07-24T16:57:32.010000"],["2024-07-24T16:57:33.010000"],["2024-07-24T16:57:34.010000"],["2024-07-24T16:57:35.010000"],["2024-07-24T16:57:36.010000"],["2024-07-24T16:57:37.010000"],["2024-07-24T16:57:38.010000"],["2024-07-24T16:57:39.010000"],["2024-07-24T16:57:40.010000"],["2024-07-24T16:57:41.010000"],["2024-07-24T16:57:42.010000"],["2024-07-24T16:57:43.010000"],["2024-07-24T16:57:44.010000"],["2024-07-24T16:57:45.010000"],["2024-07-24T16:57:46.010000"],["2024-07-24T16:57:47.010000"],["2024-07-24T16:57:48.010000"],["2024-07-24T16:57:49.010000"],["2024-07-24T16:57:50.010000"],["2024-07-24T16:57:51.010000"],["2024-07-24T16:57:52.010000"],["2024-07-24T16:57:53.010000"],["2024-07-24T16:57:54.010000"],["2024-07-24T16:57:55.010000"],["2024-07-24T16:57:56.010000"],["2024-07-24T16:57:57.010000"],["2024-07-24T16:57:58.010000"],["2024-07-24T16:57:59.010000"],["2024-07-24T16:58:00.010000"],["2024-07-24T16:58:01.010000"],["2024-07-24T16:58:02.010000"],["2024-07-24T16:58:03.010000"],["2024-07-24T16:58:04.010000"],["2024-07-24T16:58:05.010000"],["2024-07-24T16:58:06.010000"],["2024-07-24T16:58:07.010000"],["2024-07-24T16:58:08.010000"],["2024-07-24T16:58:09.010000"],["2024-07-24T16:58:10.010000"],["2024-07-24T16:58:11.010000"],["2024-07-24T16:58:12.010000"],["2024-07-24T16:58:13.010000"],["2024-07-24T16:58:14.010000"],["2024-07-24T16:58:15.010000"],["2024-07-24T16:58:16.010000"],["2024-07-24T16:58:17.010000"],["2024-07-24T16:58:18.010000"],["2024-07-24T16:58:19.010000"],["2024-07-24T16:58:20.010000"],["2024-07-24T16:58:21.010000"],["2024-07-24T16:58:22.010000"],["2024-07-24T16:58:23.010000"],["2024-07-24T16:58:24.010000"],["2024-07-24T16:58:25.010000"],["2024-07-24T16:58:26.010000"],["2024-07-24T16:58:27.010000"],["2024-07-24T16:58:28.010000"],["2024-07-24T16:58:29.010000"],["2024-07-24T16:58:30.010000"],["2024-07-24T16:58:31.010000"],["2024-07-24T16:58:32.010000"],["2024-07-24T16:58:33.010000"],["2024-07-24T16:58:34.010000"],["2024-07-24T16:58:35.010000"],["2024-07-24T16:58:36.010000"],["2024-07-24T16:58:37.010000"],["2024-07-24T16:58:38.010000"],["2024-07-24T16:58:39.010000"],["2024-07-24T16:58:40.010000"],["2024-07-24T16:58:41.010000"],["2024-07-24T16:58:42.010000"],["2024-07-24T16:58:43.010000"],["2024-07-24T16:58:44.010000"],["2024-07-24T16:58:45.010000"],["2024-07-24T16:58:46.010000"],["2024-07-24T16:58:47.010000"],["2024-07-24T16:58:48.010000"],["2024-07-24T16:58:49.010000"],["2024-07-24T16:58:50.010000"],["2024-07-24T16:58:51.010000"],["2024-07-24T16:58:52.010000"],["2024-07-24T16:58:53.010000"],["2024-07-24T16:58:54.010000"],["2024-07-24T16:58:55.010000"],["2024-07-24T16:58:56.010000"],["2024-07-24T16:58:57.010000"],["2024-07-24T16:58:58.010000"],["2024-07-24T16:58:59.010000"],["2024-07-24T16:59:00.010000"],["2024-07-24T16:59:01.010000"],["2024-07-24T16:59:02.010000"],["2024-07-24T16:59:03.010000"],["2024-07-24T16:59:04.010000"],["2024-07-24T16:59:05.010000"],["2024-07-24T16:59:06.010000"],["2024-07-24T16:59:07.010000"],["2024-07-24T16:59:08.010000"],["2024-07-24T16:59:09.010000"],["2024-07-24T16:59:10.010000"],["2024-07-24T16:59:11.010000"],["2024-07-24T16:59:12.010000"],["2024-07-24T16:59:13.010000"],["2024-07-24T16:59:14.010000"],["2024-07-24T16:59:15.010000"],["2024-07-24T16:59:16.010000"],["2024-07-24T16:59:17.010000"],["2024-07-24T16:59:18.010000"],["2024-07-24T16:59:19.010000"],["2024-07-24T16:59:20.010000"],["2024-07-24T16:59:21.010000"],["2024-07-24T16:59:22.010000"],["2024-07-24T16:59:23.010000"],["2024-07-24T16:59:24.010000"],["2024-07-24T16:59:25.010000"],["2024-07-24T16:59:26.010000"],["2024-07-24T16:59:27.010000"],["2024-07-24T16:59:28.010000"],["2024-07-24T16:59:29.010000"],["2024-07-24T16:59:30.010000"],["2024-07-24T16:59:31.010000"],["2024-07-24T16:59:32.010000"],["2024-07-24T16:59:33.010000"],["2024-07-24T16:59:34.010000"],["2024-07-24T16:59:35.010000"],["2024-07-24T16:59:36.010000"],["2024-07-24T16:59:37.010000"],["2024-07-24T16:59:38.010000"],["2024-07-24T16:59:39.010000"],["2024-07-24T16:59:40.010000"],["2024-07-24T16:59:41.010000"],["2024-07-24T16:59:42.010000"],["2024-07-24T16:59:43.010000"],["2024-07-24T16:59:44.010000"],["2024-07-24T16:59:45.010000"],["2024-07-24T16:59:46.010000"],["2024-07-24T16:59:47.010000"],["2024-07-24T16:59:48.010000"],["2024-07-24T16:59:49.010000"],["2024-07-24T16:59:50.010000"],["2024-07-24T16:59:51.010000"],["2024-07-24T16:59:52.010000"],["2024-07-24T16:59:53.010000"],["2024-07-24T16:59:54.010000"],["2024-07-24T16:59:55.010000"],["2024-07-24T16:59:56.010000"],["2024-07-24T16:59:57.010000"],["2024-07-24T16:59:58.010000"],["2024-07-24T16:59:59.010000"],["2024-07-24T17:00:00.010000"],["2024-07-24T17:00:01.010000"],["2024-07-24T17:00:02.010000"],["2024-07-24T17:00:03.010000"],["2024-07-24T17:00:04.010000"],["2024-07-24T17:00:05.010000"],["2024-07-24T17:00:06.010000"],["2024-07-24T17:00:07.010000"],["2024-07-24T17:00:08.010000"],["2024-07-24T17:00:09.010000"],["2024-07-24T17:00:10.010000"],["2024-07-24T17:00:11.010000"],["2024-07-24T17:00:12.010000"],["2024-07-24T17:00:13.010000"],["2024-07-24T17:00:14.010000"],["2024-07-24T17:00:15.010000"],["2024-07-24T17:00:16.010000"],["2024-07-24T17:00:17.010000"],["2024-07-24T17:00:18.010000"],["2024-07-24T17:00:19.010000"],["2024-07-24T17:00:20.010000"],["2024-07-24T17:00:21.010000"],["2024-07-24T17:00:22.010000"],["2024-07-24T17:00:23.010000"],["2024-07-24T17:00:24.010000"],["2024-07-24T17:00:25.010000"],["2024-07-24T17:00:26.010000"],["2024-07-24T17:00:27.010000"],["2024-07-24T17:00:28.010000"],["2024-07-24T17:00:29.010000"],["2024-07-24T17:00:30.010000"],["2024-07-24T17:00:31.010000"],["2024-07-24T17:00:32.010000"],["2024-07-24T17:00:33.010000"],["2024-07-24T17:00:34.010000"],["2024-07-24T17:00:35.010000"],["2024-07-24T17:00:36.010000"],["2024-07-24T17:00:37.010000"],["2024-07-24T17:00:38.010000"],["2024-07-24T17:00:39.010000"],["2024-07-24T17:00:40.010000"],["2024-07-24T17:00:41.010000"],["2024-07-24T17:00:42.010000"],["2024-07-24T17:00:43.010000"],["2024-07-24T17:00:44.010000"],["2024-07-24T17:00:45.010000"],["2024-07-24T17:00:46.010000"],["2024-07-24T17:00:47.010000"],["2024-07-24T17:00:48.010000"],["2024-07-24T17:00:49.010000"],["2024-07-24T17:00:50.010000"],["2024-07-24T17:00:51.010000"],["2024-07-24T17:00:52.010000"],["2024-07-24T17:00:53.010000"],["2024-07-24T17:00:54.010000"],["2024-07-24T17:00:55.010000"],["2024-07-24T17:00:56.010000"],["2024-07-24T17:00:57.010000"],["2024-07-24T17:00:58.010000"],["2024-07-24T17:00:59.010000"],["2024-07-24T17:01:00.010000"],["2024-07-24T17:01:01.010000"],["2024-07-24T17:01:02.010000"],["2024-07-24T17:01:03.010000"],["2024-07-24T17:01:04.010000"],["2024-07-24T17:01:05.010000"],["2024-07-24T17:01:06.010000"],["2024-07-24T17:01:07.010000"],["2024-07-24T17:01:08.010000"],["2024-07-24T17:01:09.010000"],["2024-07-24T17:01:10.010000"],["2024-07-24T17:01:11.010000"],["2024-07-24T17:01:12.010000"],["2024-07-24T17:01:13.010000"],["2024-07-24T17:01:14.010000"],["2024-07-24T17:01:15.010000"],["2024-07-24T17:01:16.010000"],["2024-07-24T17:01:17.010000"],["2024-07-24T17:01:18.010000"],["2024-07-24T17:01:19.010000"],["2024-07-24T17:01:20.010000"],["2024-07-24T17:01:21.010000"],["2024-07-24T17:01:22.010000"],["2024-07-24T17:01:23.010000"],["2024-07-24T17:01:24.010000"],["2024-07-24T17:01:25.010000"],["2024-07-24T17:01:26.010000"],["2024-07-24T17:01:27.010000"],["2024-07-24T17:01:28.010000"],["2024-07-24T17:01:29.010000"],["2024-07-24T17:01:30.010000"],["2024-07-24T17:01:31.010000"],["2024-07-24T17:01:32.010000"],["2024-07-24T17:01:33.010000"],["2024-07-24T17:01:34.010000"],["2024-07-24T17:01:35.010000"],["2024-07-24T17:01:36.010000"],["2024-07-24T17:01:37.010000"],["2024-07-24T17:01:38.010000"],["2024-07-24T17:01:39.010000"],["2024-07-24T17:01:40.010000"],["2024-07-24T17:01:41.010000"],["2024-07-24T17:01:42.010000"],["2024-07-24T17:01:43.010000"],["2024-07-24T17:01:44.010000"],["2024-07-24T17:01:45.010000"],["2024-07-24T17:01:46.010000"],["2024-07-24T17:01:47.010000"],["2024-07-24T17:01:48.010000"],["2024-07-24T17:01:49.010000"],["2024-07-24T17:01:50.010000"],["2024-07-24T17:01:51.010000"],["2024-07-24T17:01:52.010000"],["2024-07-24T17:01:53.010000"],["2024-07-24T17:01:54.010000"],["2024-07-24T17:01:55.010000"],["2024-07-24T17:01:56.010000"],["2024-07-24T17:01:57.010000"],["2024-07-24T17:01:58.010000"],["2024-07-24T17:01:59.010000"],["2024-07-24T17:02:00.010000"],["2024-07-24T17:02:01.010000"],["2024-07-24T17:02:02.010000"],["2024-07-24T17:02:03.010000"],["2024-07-24T17:02:04.010000"],["2024-07-24T17:02:05.010000"],["2024-07-24T17:02:06.010000"],["2024-07-24T17:02:07.010000"],["2024-07-24T17:02:08.010000"],["2024-07-24T17:02:09.010000"],["2024-07-24T17:02:10.010000"],["2024-07-24T17:02:11.010000"],["2024-07-24T17:02:12.010000"],["2024-07-24T17:02:13.010000"],["2024-07-24T17:02:14.010000"],["2024-07-24T17:02:15.010000"],["2024-07-24T17:02:16.010000"],["2024-07-24T17:02:17.010000"],["2024-07-24T17:02:18.010000"],["2024-07-24T17:02:19.010000"],["2024-07-24T17:02:20.010000"],["2024-07-24T17:02:21.010000"],["2024-07-24T17:02:22.010000"],["2024-07-24T17:02:23.010000"],["2024-07-24T17:02:24.010000"],["2024-07-24T17:02:25.010000"],["2024-07-24T17:02:26.010000"],["2024-07-24T17:02:27.010000"],["2024-07-24T17:02:28.010000"],["2024-07-24T17:02:29.010000"],["2024-07-24T17:02:30.010000"],["2024-07-24T17:02:31.010000"],["2024-07-24T17:02:32.010000"],["2024-07-24T17:02:33.010000"],["2024-07-24T17:02:34.010000"],["2024-07-24T17:02:35.010000"],["2024-07-24T17:02:36.010000"],["2024-07-24T17:02:37.010000"],["2024-07-24T17:02:38.010000"],["2024-07-24T17:02:39.010000"],["2024-07-24T17:02:40.010000"],["2024-07-24T17:02:41.010000"],["2024-07-24T17:02:42.010000"],["2024-07-24T17:02:43.010000"],["2024-07-24T17:02:44.010000"],["2024-07-24T17:02:45.010000"],["2024-07-24T17:02:46.010000"],["2024-07-24T17:02:47.010000"],["2024-07-24T17:02:48.010000"],["2024-07-24T17:02:49.010000"],["2024-07-24T17:02:50.010000"],["2024-07-24T17:02:51.010000"],["2024-07-24T17:02:52.010000"],["2024-07-24T17:02:53.010000"],["2024-07-24T17:02:54.010000"],["2024-07-24T17:02:55.010000"],["2024-07-24T17:02:56.010000"],["2024-07-24T17:02:57.010000"],["2024-07-24T17:02:58.010000"],["2024-07-24T17:02:59.010000"],["2024-07-24T17:03:00.010000"],["2024-07-24T17:03:01.010000"],["2024-07-24T17:03:02.010000"],["2024-07-24T17:03:03.010000"],["2024-07-24T17:03:04.010000"],["2024-07-24T17:03:05.010000"],["2024-07-24T17:03:06.010000"],["2024-07-24T17:03:07.010000"],["2024-07-24T17:03:08.010000"],["2024-07-24T17:03:09.010000"],["2024-07-24T17:03:10.010000"],["2024-07-24T17:03:11.010000"],["2024-07-24T17:03:12.010000"],["2024-07-24T17:03:13.010000"],["2024-07-24T17:03:14.010000"],["2024-07-24T17:03:15.010000"],["2024-07-24T17:03:16.010000"],["2024-07-24T17:03:17.010000"],["2024-07-24T17:03:18.010000"],["2024-07-24T17:03:19.010000"],["2024-07-24T17:03:20.010000"],["2024-07-24T17:03:21.010000"],["2024-07-24T17:03:22.010000"],["2024-07-24T17:03:23.010000"],["2024-07-24T17:03:24.010000"],["2024-07-24T17:03:25.010000"],["2024-07-24T17:03:26.010000"],["2024-07-24T17:03:27.010000"],["2024-07-24T17:03:28.010000"],["2024-07-24T17:03:29.010000"],["2024-07-24T17:03:30.010000"],["2024-07-24T17:03:31.010000"],["2024-07-24T17:03:32.010000"],["2024-07-24T17:03:33.010000"],["2024-07-24T17:03:34.010000"],["2024-07-24T17:03:35.010000"],["2024-07-24T17:03:36.010000"],["2024-07-24T17:03:37.010000"],["2024-07-24T17:03:38.010000"],["2024-07-24T17:03:39.010000"],["2024-07-24T17:03:40.010000"],["2024-07-24T17:03:41.010000"],["2024-07-24T17:03:42.010000"],["2024-07-24T17:03:43.010000"],["2024-07-24T17:03:44.010000"],["2024-07-24T17:03:45.010000"],["2024-07-24T17:03:46.010000"],["2024-07-24T17:03:47.010000"],["2024-07-24T17:03:48.010000"],["2024-07-24T17:03:49.010000"],["2024-07-24T17:03:50.010000"],["2024-07-24T17:03:51.010000"],["2024-07-24T17:03:52.010000"],["2024-07-24T17:03:53.010000"],["2024-07-24T17:03:54.010000"],["2024-07-24T17:03:55.010000"],["2024-07-24T17:03:56.010000"],["2024-07-24T17:03:57.010000"],["2024-07-24T17:03:58.010000"],["2024-07-24T17:03:59.010000"],["2024-07-24T17:04:00.010000"],["2024-07-24T17:04:01.010000"],["2024-07-24T17:04:02.010000"],["2024-07-24T17:04:03.010000"],["2024-07-24T17:04:04.010000"],["2024-07-24T17:04:05.010000"],["2024-07-24T17:04:06.010000"],["2024-07-24T17:04:07.010000"],["2024-07-24T17:04:08.010000"],["2024-07-24T17:04:09.010000"],["2024-07-24T17:04:10.010000"],["2024-07-24T17:04:11.010000"],["2024-07-24T17:04:12.010000"],["2024-07-24T17:04:13.010000"],["2024-07-24T17:04:14.010000"],["2024-07-24T17:04:15.010000"],["2024-07-24T17:04:16.010000"],["2024-07-24T17:04:17.010000"],["2024-07-24T17:04:18.010000"],["2024-07-24T17:04:19.010000"],["2024-07-24T17:04:20.010000"],["2024-07-24T17:04:21.010000"],["2024-07-24T17:04:22.010000"],["2024-07-24T17:04:23.010000"],["2024-07-24T17:04:24.010000"],["2024-07-24T17:04:25.010000"],["2024-07-24T17:04:26.010000"],["2024-07-24T17:04:27.010000"],["2024-07-24T17:04:28.010000"],["2024-07-24T17:04:29.010000"],["2024-07-24T17:04:30.010000"],["2024-07-24T17:04:31.010000"],["2024-07-24T17:04:32.010000"],["2024-07-24T17:04:33.010000"],["2024-07-24T17:04:34.010000"],["2024-07-24T17:04:35.010000"],["2024-07-24T17:04:36.010000"],["2024-07-24T17:04:37.010000"],["2024-07-24T17:04:38.010000"],["2024-07-24T17:04:39.010000"],["2024-07-24T17:04:40.010000"],["2024-07-24T17:04:41.010000"],["2024-07-24T17:04:42.010000"],["2024-07-24T17:04:43.010000"],["2024-07-24T17:04:44.010000"],["2024-07-24T17:04:45.010000"],["2024-07-24T17:04:46.010000"],["2024-07-24T17:04:47.010000"],["2024-07-24T17:04:48.010000"],["2024-07-24T17:04:49.010000"],["2024-07-24T17:04:50.010000"],["2024-07-24T17:04:51.010000"],["2024-07-24T17:04:52.010000"],["2024-07-24T17:04:53.010000"],["2024-07-24T17:04:54.010000"],["2024-07-24T17:04:55.010000"],["2024-07-24T17:04:56.010000"],["2024-07-24T17:04:57.010000"],["2024-07-24T17:04:58.010000"],["2024-07-24T17:04:59.010000"],["2024-07-24T17:05:00.010000"],["2024-07-24T17:05:01.010000"],["2024-07-24T17:05:02.010000"],["2024-07-24T17:05:03.010000"],["2024-07-24T17:05:04.010000"],["2024-07-24T17:05:05.010000"],["2024-07-24T17:05:06.010000"],["2024-07-24T17:05:07.010000"],["2024-07-24T17:05:08.010000"],["2024-07-24T17:05:09.010000"],["2024-07-24T17:05:10.010000"],["2024-07-24T17:05:11.010000"],["2024-07-24T17:05:12.010000"],["2024-07-24T17:05:13.010000"],["2024-07-24T17:05:14.010000"],["2024-07-24T17:05:15.010000"],["2024-07-24T17:05:16.010000"],["2024-07-24T17:05:17.010000"],["2024-07-24T17:05:18.010000"],["2024-07-24T17:05:19.010000"],["2024-07-24T17:05:20.010000"],["2024-07-24T17:05:21.010000"],["2024-07-24T17:05:22.010000"],["2024-07-24T17:05:23.010000"],["2024-07-24T17:05:24.010000"],["2024-07-24T17:05:25.010000"],["2024-07-24T17:05:26.010000"],["2024-07-24T17:05:27.010000"],["2024-07-24T17:05:28.010000"],["2024-07-24T17:05:29.010000"],["2024-07-24T17:05:30.010000"],["2024-07-24T17:05:31.010000"],["2024-07-24T17:05:32.010000"],["2024-07-24T17:05:33.010000"],["2024-07-24T17:05:34.010000"],["2024-07-24T17:05:35.010000"],["2024-07-24T17:05:36.010000"],["2024-07-24T17:05:37.010000"],["2024-07-24T17:05:38.010000"],["2024-07-24T17:05:39.010000"],["2024-07-24T17:05:40.010000"],["2024-07-24T17:05:41.010000"],["2024-07-24T17:05:42.010000"],["2024-07-24T17:05:43.010000"],["2024-07-24T17:05:44.010000"],["2024-07-24T17:05:45.010000"],["2024-07-24T17:05:46.010000"],["2024-07-24T17:05:47.010000"],["2024-07-24T17:05:48.010000"],["2024-07-24T17:05:49.010000"],["2024-07-24T17:05:50.010000"],["2024-07-24T17:05:51.010000"],["2024-07-24T17:05:52.010000"],["2024-07-24T17:05:53.010000"],["2024-07-24T17:05:54.010000"],["2024-07-24T17:05:55.010000"],["2024-07-24T17:05:56.010000"],["2024-07-24T17:05:57.010000"],["2024-07-24T17:05:58.010000"],["2024-07-24T17:05:59.010000"],["2024-07-24T17:06:00.010000"],["2024-07-24T17:06:01.010000"],["2024-07-24T17:06:02.010000"],["2024-07-24T17:06:03.010000"],["2024-07-24T17:06:04.010000"],["2024-07-24T17:06:05.010000"],["2024-07-24T17:06:06.010000"],["2024-07-24T17:06:07.010000"],["2024-07-24T17:06:08.010000"],["2024-07-24T17:06:09.010000"],["2024-07-24T17:06:10.010000"],["2024-07-24T17:06:11.010000"],["2024-07-24T17:06:12.010000"],["2024-07-24T17:06:13.010000"],["2024-07-24T17:06:14.010000"],["2024-07-24T17:06:15.010000"],["2024-07-24T17:06:16.010000"],["2024-07-24T17:06:17.010000"],["2024-07-24T17:06:18.010000"],["2024-07-24T17:06:19.010000"],["2024-07-24T17:06:20.010000"],["2024-07-24T17:06:21.010000"],["2024-07-24T17:06:22.010000"],["2024-07-24T17:06:23.010000"],["2024-07-24T17:06:24.010000"],["2024-07-24T17:06:25.010000"],["2024-07-24T17:06:26.010000"],["2024-07-24T17:06:27.010000"],["2024-07-24T17:06:28.010000"],["2024-07-24T17:06:29.010000"],["2024-07-24T17:06:30.010000"],["2024-07-24T17:06:31.010000"],["2024-07-24T17:06:32.010000"],["2024-07-24T17:06:33.010000"],["2024-07-24T17:06:34.010000"],["2024-07-24T17:06:35.010000"],["2024-07-24T17:06:36.010000"],["2024-07-24T17:06:37.010000"],["2024-07-24T17:06:38.010000"],["2024-07-24T17:06:39.010000"],["2024-07-24T17:06:40.010000"],["2024-07-24T17:06:41.010000"],["2024-07-24T17:06:42.010000"],["2024-07-24T17:06:43.010000"],["2024-07-24T17:06:44.010000"],["2024-07-24T17:06:45.010000"],["2024-07-24T17:06:46.010000"],["2024-07-24T17:06:47.010000"],["2024-07-24T17:06:48.010000"],["2024-07-24T17:06:49.010000"],["2024-07-24T17:06:50.010000"],["2024-07-24T17:06:51.010000"],["2024-07-24T17:06:52.010000"],["2024-07-24T17:06:53.010000"],["2024-07-24T17:06:54.010000"],["2024-07-24T17:06:55.010000"],["2024-07-24T17:06:56.010000"],["2024-07-24T17:06:57.010000"],["2024-07-24T17:06:58.010000"],["2024-07-24T17:06:59.010000"],["2024-07-24T17:07:00.010000"],["2024-07-24T17:07:01.010000"],["2024-07-24T17:07:02.010000"],["2024-07-24T17:07:03.010000"],["2024-07-24T17:07:04.010000"],["2024-07-24T17:07:05.010000"],["2024-07-24T17:07:06.010000"],["2024-07-24T17:07:07.010000"],["2024-07-24T17:07:08.010000"],["2024-07-24T17:07:09.010000"],["2024-07-24T17:07:10.010000"],["2024-07-24T17:07:11.010000"],["2024-07-24T17:07:12.010000"],["2024-07-24T17:07:13.010000"],["2024-07-24T17:07:14.010000"],["2024-07-24T17:07:15.010000"],["2024-07-24T17:07:16.010000"],["2024-07-24T17:07:17.010000"],["2024-07-24T17:07:18.010000"],["2024-07-24T17:07:19.010000"],["2024-07-24T17:07:20.010000"],["2024-07-24T17:07:21.010000"],["2024-07-24T17:07:22.010000"],["2024-07-24T17:07:23.010000"],["2024-07-24T17:07:24.010000"],["2024-07-24T17:07:25.010000"],["2024-07-24T17:07:26.010000"],["2024-07-24T17:07:27.010000"],["2024-07-24T17:07:28.010000"],["2024-07-24T17:07:29.010000"],["2024-07-24T17:07:30.010000"],["2024-07-24T17:07:31.010000"],["2024-07-24T17:07:32.010000"],["2024-07-24T17:07:33.010000"],["2024-07-24T17:07:34.010000"],["2024-07-24T17:07:35.010000"],["2024-07-24T17:07:36.010000"],["2024-07-24T17:07:37.010000"],["2024-07-24T17:07:38.010000"],["2024-07-24T17:07:39.010000"],["2024-07-24T17:07:40.010000"],["2024-07-24T17:07:41.010000"],["2024-07-24T17:07:42.010000"],["2024-07-24T17:07:43.010000"],["2024-07-24T17:07:44.010000"],["2024-07-24T17:07:45.010000"],["2024-07-24T17:07:46.010000"],["2024-07-24T17:07:47.010000"],["2024-07-24T17:07:48.010000"],["2024-07-24T17:07:49.010000"],["2024-07-24T17:07:50.010000"],["2024-07-24T17:07:51.010000"],["2024-07-24T17:07:52.010000"],["2024-07-24T17:07:53.010000"],["2024-07-24T17:07:54.010000"],["2024-07-24T17:07:55.010000"],["2024-07-24T17:07:56.010000"],["2024-07-24T17:07:57.010000"],["2024-07-24T17:07:58.010000"],["2024-07-24T17:07:59.010000"],["2024-07-24T17:08:00.010000"],["2024-07-24T17:08:01.010000"],["2024-07-24T17:08:02.010000"],["2024-07-24T17:08:03.010000"],["2024-07-24T17:08:04.010000"],["2024-07-24T17:08:05.010000"],["2024-07-24T17:08:06.010000"],["2024-07-24T17:08:07.010000"],["2024-07-24T17:08:08.010000"],["2024-07-24T17:08:09.010000"],["2024-07-24T17:08:10.010000"],["2024-07-24T17:08:11.010000"],["2024-07-24T17:08:12.010000"],["2024-07-24T17:08:13.010000"],["2024-07-24T17:08:14.010000"],["2024-07-24T17:08:15.010000"],["2024-07-24T17:08:16.010000"],["2024-07-24T17:08:17.010000"],["2024-07-24T17:08:18.010000"],["2024-07-24T17:08:19.010000"],["2024-07-24T17:08:20.010000"],["2024-07-24T17:08:21.010000"],["2024-07-24T17:08:22.010000"],["2024-07-24T17:08:23.010000"],["2024-07-24T17:08:24.010000"],["2024-07-24T17:08:25.010000"],["2024-07-24T17:08:26.010000"],["2024-07-24T17:08:27.010000"],["2024-07-24T17:08:28.010000"],["2024-07-24T17:08:29.010000"],["2024-07-24T17:08:30.010000"],["2024-07-24T17:08:31.010000"],["2024-07-24T17:08:32.010000"],["2024-07-24T17:08:33.010000"],["2024-07-24T17:08:34.010000"],["2024-07-24T17:08:35.010000"],["2024-07-24T17:08:36.010000"],["2024-07-24T17:08:37.010000"],["2024-07-24T17:08:38.010000"],["2024-07-24T17:08:39.010000"],["2024-07-24T17:08:40.010000"],["2024-07-24T17:08:41.010000"],["2024-07-24T17:08:42.010000"],["2024-07-24T17:08:43.010000"],["2024-07-24T17:08:44.010000"],["2024-07-24T17:08:45.010000"],["2024-07-24T17:08:46.010000"],["2024-07-24T17:08:47.010000"],["2024-07-24T17:08:48.010000"],["2024-07-24T17:08:49.010000"],["2024-07-24T17:08:50.010000"],["2024-07-24T17:08:51.010000"],["2024-07-24T17:08:52.010000"],["2024-07-24T17:08:53.010000"],["2024-07-24T17:08:54.010000"],["2024-07-24T17:08:55.010000"],["2024-07-24T17:08:56.010000"],["2024-07-24T17:08:57.010000"],["2024-07-24T17:08:58.010000"],["2024-07-24T17:08:59.010000"],["2024-07-24T17:09:00.010000"],["2024-07-24T17:09:01.010000"],["2024-07-24T17:09:02.010000"],["2024-07-24T17:09:03.010000"],["2024-07-24T17:09:04.010000"],["2024-07-24T17:09:05.010000"],["2024-07-24T17:09:06.010000"],["2024-07-24T17:09:07.010000"],["2024-07-24T17:09:08.010000"],["2024-07-24T17:09:09.010000"],["2024-07-24T17:09:10.010000"],["2024-07-24T17:09:11.010000"],["2024-07-24T17:09:12.010000"],["2024-07-24T17:09:13.010000"],["2024-07-24T17:09:14.010000"],["2024-07-24T17:09:15.010000"],["2024-07-24T17:09:16.010000"],["2024-07-24T17:09:17.010000"],["2024-07-24T17:09:18.010000"],["2024-07-24T17:09:19.010000"],["2024-07-24T17:09:20.010000"],["2024-07-24T17:09:21.010000"],["2024-07-24T17:09:22.010000"],["2024-07-24T17:09:23.010000"],["2024-07-24T17:09:24.010000"],["2024-07-24T17:09:25.010000"],["2024-07-24T17:09:26.010000"],["2024-07-24T17:09:27.010000"],["2024-07-24T17:09:28.010000"],["2024-07-24T17:09:29.010000"],["2024-07-24T17:09:30.010000"],["2024-07-24T17:09:31.010000"],["2024-07-24T17:09:32.010000"],["2024-07-24T17:09:33.010000"],["2024-07-24T17:09:34.010000"],["2024-07-24T17:09:35.010000"],["2024-07-24T17:09:36.010000"],["2024-07-24T17:09:37.010000"],["2024-07-24T17:09:38.010000"],["2024-07-24T17:09:39.010000"],["2024-07-24T17:09:40.010000"],["2024-07-24T17:09:41.010000"],["2024-07-24T17:09:42.010000"],["2024-07-24T17:09:43.010000"],["2024-07-24T17:09:44.010000"],["2024-07-24T17:09:45.010000"],["2024-07-24T17:09:46.010000"],["2024-07-24T17:09:47.010000"],["2024-07-24T17:09:48.010000"],["2024-07-24T17:09:49.010000"],["2024-07-24T17:09:50.010000"],["2024-07-24T17:09:51.010000"],["2024-07-24T17:09:52.010000"],["2024-07-24T17:09:53.010000"],["2024-07-24T17:09:54.010000"],["2024-07-24T17:09:55.010000"],["2024-07-24T17:09:56.010000"],["2024-07-24T17:09:57.010000"],["2024-07-24T17:09:58.010000"],["2024-07-24T17:09:59.010000"],["2024-07-24T17:10:00.010000"],["2024-07-24T17:10:01.010000"],["2024-07-24T17:10:02.010000"],["2024-07-24T17:10:03.010000"],["2024-07-24T17:10:04.010000"],["2024-07-24T17:10:05.010000"],["2024-07-24T17:10:06.010000"],["2024-07-24T17:10:07.010000"],["2024-07-24T17:10:08.010000"],["2024-07-24T17:10:09.010000"],["2024-07-24T17:10:10.010000"],["2024-07-24T17:10:11.010000"],["2024-07-24T17:10:12.010000"],["2024-07-24T17:10:13.010000"],["2024-07-24T17:10:14.010000"],["2024-07-24T17:10:15.010000"],["2024-07-24T17:10:16.010000"],["2024-07-24T17:10:17.010000"],["2024-07-24T17:10:18.010000"],["2024-07-24T17:10:19.010000"],["2024-07-24T17:10:20.010000"],["2024-07-24T17:10:21.010000"],["2024-07-24T17:10:22.010000"],["2024-07-24T17:10:23.010000"],["2024-07-24T17:10:24.010000"],["2024-07-24T17:10:25.010000"],["2024-07-24T17:10:26.010000"],["2024-07-24T17:10:27.010000"],["2024-07-24T17:10:28.010000"],["2024-07-24T17:10:29.010000"],["2024-07-24T17:10:30.010000"],["2024-07-24T17:10:31.010000"],["2024-07-24T17:10:32.010000"],["2024-07-24T17:10:33.010000"],["2024-07-24T17:10:34.010000"],["2024-07-24T17:10:35.010000"],["2024-07-24T17:10:36.010000"],["2024-07-24T17:10:37.010000"],["2024-07-24T17:10:38.010000"],["2024-07-24T17:10:39.010000"],["2024-07-24T17:10:40.010000"],["2024-07-24T17:10:41.010000"],["2024-07-24T17:10:42.010000"],["2024-07-24T17:10:43.010000"],["2024-07-24T17:10:44.010000"],["2024-07-24T17:10:45.010000"],["2024-07-24T17:10:46.010000"],["2024-07-24T17:10:47.010000"],["2024-07-24T17:10:48.010000"],["2024-07-24T17:10:49.010000"],["2024-07-24T17:10:50.010000"],["2024-07-24T17:10:51.010000"],["2024-07-24T17:10:52.010000"],["2024-07-24T17:10:53.010000"],["2024-07-24T17:10:54.010000"],["2024-07-24T17:10:55.010000"],["2024-07-24T17:10:56.010000"],["2024-07-24T17:10:57.010000"],["2024-07-24T17:10:58.010000"],["2024-07-24T17:10:59.010000"],["2024-07-24T17:11:00.010000"],["2024-07-24T17:11:01.010000"],["2024-07-24T17:11:02.010000"],["2024-07-24T17:11:03.010000"],["2024-07-24T17:11:04.010000"],["2024-07-24T17:11:05.010000"],["2024-07-24T17:11:06.010000"],["2024-07-24T17:11:07.010000"],["2024-07-24T17:11:08.010000"],["2024-07-24T17:11:09.010000"],["2024-07-24T17:11:10.010000"],["2024-07-24T17:11:11.010000"],["2024-07-24T17:11:12.010000"],["2024-07-24T17:11:13.010000"],["2024-07-24T17:11:14.010000"],["2024-07-24T17:11:15.010000"],["2024-07-24T17:11:16.010000"],["2024-07-24T17:11:17.010000"],["2024-07-24T17:11:18.010000"],["2024-07-24T17:11:19.010000"],["2024-07-24T17:11:20.010000"],["2024-07-24T17:11:21.010000"],["2024-07-24T17:11:22.010000"],["2024-07-24T17:11:23.010000"],["2024-07-24T17:11:24.010000"],["2024-07-24T17:11:25.010000"],["2024-07-24T17:11:26.010000"],["2024-07-24T17:11:27.010000"],["2024-07-24T17:11:28.010000"],["2024-07-24T17:11:29.010000"],["2024-07-24T17:11:30.010000"],["2024-07-24T17:11:31.010000"],["2024-07-24T17:11:32.010000"],["2024-07-24T17:11:33.010000"],["2024-07-24T17:11:34.010000"],["2024-07-24T17:11:35.010000"],["2024-07-24T17:11:36.010000"],["2024-07-24T17:11:37.010000"],["2024-07-24T17:11:38.010000"],["2024-07-24T17:11:39.010000"],["2024-07-24T17:11:40.010000"],["2024-07-24T17:11:41.010000"],["2024-07-24T17:11:42.010000"],["2024-07-24T17:11:43.010000"],["2024-07-24T17:11:44.010000"],["2024-07-24T17:11:45.010000"],["2024-07-24T17:11:46.010000"],["2024-07-24T17:11:47.010000"],["2024-07-24T17:11:48.010000"],["2024-07-24T17:11:49.010000"],["2024-07-24T17:11:50.010000"],["2024-07-24T17:11:51.010000"],["2024-07-24T17:11:52.010000"],["2024-07-24T17:11:53.010000"],["2024-07-24T17:11:54.010000"],["2024-07-24T17:11:55.010000"],["2024-07-24T17:11:56.010000"],["2024-07-24T17:11:57.010000"],["2024-07-24T17:11:58.010000"],["2024-07-24T17:11:59.010000"],["2024-07-24T17:12:00.010000"],["2024-07-24T17:12:01.010000"],["2024-07-24T17:12:02.010000"],["2024-07-24T17:12:03.010000"],["2024-07-24T17:12:04.010000"],["2024-07-24T17:12:05.010000"],["2024-07-24T17:12:06.010000"],["2024-07-24T17:12:07.010000"],["2024-07-24T17:12:08.010000"],["2024-07-24T17:12:09.010000"],["2024-07-24T17:12:10.010000"],["2024-07-24T17:12:11.010000"],["2024-07-24T17:12:12.010000"],["2024-07-24T17:12:13.010000"],["2024-07-24T17:12:14.010000"],["2024-07-24T17:12:15.010000"],["2024-07-24T17:12:16.010000"],["2024-07-24T17:12:17.010000"],["2024-07-24T17:12:18.010000"],["2024-07-24T17:12:19.010000"],["2024-07-24T17:12:20.010000"],["2024-07-24T17:12:21.010000"],["2024-07-24T17:12:22.010000"],["2024-07-24T17:12:23.010000"],["2024-07-24T17:12:24.010000"],["2024-07-24T17:12:25.010000"],["2024-07-24T17:12:26.010000"],["2024-07-24T17:12:27.010000"],["2024-07-24T17:12:28.010000"],["2024-07-24T17:12:29.010000"],["2024-07-24T17:12:30.010000"],["2024-07-24T17:12:31.010000"],["2024-07-24T17:12:32.010000"],["2024-07-24T17:12:33.010000"],["2024-07-24T17:12:34.010000"],["2024-07-24T17:12:35.010000"],["2024-07-24T17:12:36.010000"],["2024-07-24T17:12:37.010000"],["2024-07-24T17:12:38.010000"],["2024-07-24T17:12:39.010000"],["2024-07-24T17:12:40.010000"],["2024-07-24T17:12:41.010000"],["2024-07-24T17:12:42.010000"],["2024-07-24T17:12:43.010000"],["2024-07-24T17:12:44.010000"],["2024-07-24T17:12:45.010000"],["2024-07-24T17:12:46.010000"],["2024-07-24T17:12:47.010000"],["2024-07-24T17:12:48.010000"],["2024-07-24T17:12:49.010000"],["2024-07-24T17:12:50.010000"],["2024-07-24T17:12:51.010000"],["2024-07-24T17:12:52.010000"],["2024-07-24T17:12:53.010000"],["2024-07-24T17:12:54.010000"],["2024-07-24T17:12:55.010000"],["2024-07-24T17:12:56.010000"],["2024-07-24T17:12:57.010000"],["2024-07-24T17:12:58.010000"],["2024-07-24T17:12:59.010000"],["2024-07-24T17:13:00.010000"],["2024-07-24T17:13:01.010000"],["2024-07-24T17:13:02.010000"],["2024-07-24T17:13:03.010000"],["2024-07-24T17:13:04.010000"],["2024-07-24T17:13:05.010000"],["2024-07-24T17:13:06.010000"],["2024-07-24T17:13:07.010000"],["2024-07-24T17:13:08.010000"],["2024-07-24T17:13:09.010000"],["2024-07-24T17:13:10.010000"],["2024-07-24T17:13:11.010000"],["2024-07-24T17:13:12.010000"],["2024-07-24T17:13:13.010000"],["2024-07-24T17:13:14.010000"],["2024-07-24T17:13:15.010000"],["2024-07-24T17:13:16.010000"],["2024-07-24T17:13:17.010000"],["2024-07-24T17:13:18.010000"],["2024-07-24T17:13:19.010000"],["2024-07-24T17:13:20.010000"],["2024-07-24T17:13:21.010000"],["2024-07-24T17:13:22.010000"],["2024-07-24T17:13:23.010000"],["2024-07-24T17:13:24.010000"],["2024-07-24T17:13:25.010000"],["2024-07-24T17:13:26.010000"],["2024-07-24T17:13:27.010000"],["2024-07-24T17:13:28.010000"],["2024-07-24T17:13:29.010000"],["2024-07-24T17:13:30.010000"],["2024-07-24T17:13:31.010000"],["2024-07-24T17:13:32.010000"],["2024-07-24T17:13:33.010000"],["2024-07-24T17:13:34.010000"],["2024-07-24T17:13:35.010000"],["2024-07-24T17:13:36.010000"],["2024-07-24T17:13:37.010000"],["2024-07-24T17:13:38.010000"],["2024-07-24T17:13:39.010000"],["2024-07-24T17:13:40.010000"],["2024-07-24T17:13:41.010000"],["2024-07-24T17:13:42.010000"],["2024-07-24T17:13:43.010000"],["2024-07-24T17:13:44.010000"],["2024-07-24T17:13:45.010000"],["2024-07-24T17:13:46.010000"],["2024-07-24T17:13:47.010000"],["2024-07-24T17:13:48.010000"],["2024-07-24T17:13:49.010000"],["2024-07-24T17:13:50.010000"],["2024-07-24T17:13:51.010000"],["2024-07-24T17:13:52.010000"],["2024-07-24T17:13:53.010000"],["2024-07-24T17:13:54.010000"],["2024-07-24T17:13:55.010000"],["2024-07-24T17:13:56.010000"],["2024-07-24T17:13:57.010000"],["2024-07-24T17:13:58.010000"],["2024-07-24T17:13:59.010000"],["2024-07-24T17:14:00.010000"],["2024-07-24T17:14:01.010000"],["2024-07-24T17:14:02.010000"],["2024-07-24T17:14:03.010000"],["2024-07-24T17:14:04.010000"],["2024-07-24T17:14:05.010000"],["2024-07-24T17:14:06.010000"],["2024-07-24T17:14:07.010000"],["2024-07-24T17:14:08.010000"],["2024-07-24T17:14:09.010000"],["2024-07-24T17:14:10.010000"],["2024-07-24T17:14:11.010000"],["2024-07-24T17:14:12.010000"],["2024-07-24T17:14:13.010000"],["2024-07-24T17:14:14.010000"],["2024-07-24T17:14:15.010000"],["2024-07-24T17:14:16.010000"],["2024-07-24T17:14:17.010000"],["2024-07-24T17:14:18.010000"],["2024-07-24T17:14:19.010000"],["2024-07-24T17:14:20.010000"],["2024-07-24T17:14:21.010000"],["2024-07-24T17:14:22.010000"],["2024-07-24T17:14:23.010000"],["2024-07-24T17:14:24.010000"],["2024-07-24T17:14:25.010000"],["2024-07-24T17:14:26.010000"],["2024-07-24T17:14:27.010000"],["2024-07-24T17:14:28.010000"],["2024-07-24T17:14:29.010000"],["2024-07-24T17:14:30.010000"],["2024-07-24T17:14:31.010000"],["2024-07-24T17:14:32.010000"],["2024-07-24T17:14:33.010000"],["2024-07-24T17:14:34.010000"],["2024-07-24T17:14:35.010000"],["2024-07-24T17:14:36.010000"],["2024-07-24T17:14:37.010000"],["2024-07-24T17:14:38.010000"],["2024-07-24T17:14:39.010000"],["2024-07-24T17:14:40.010000"],["2024-07-24T17:14:41.010000"],["2024-07-24T17:14:42.010000"],["2024-07-24T17:14:43.010000"],["2024-07-24T17:14:44.010000"],["2024-07-24T17:14:45.010000"],["2024-07-24T17:14:46.010000"],["2024-07-24T17:14:47.010000"],["2024-07-24T17:14:48.010000"],["2024-07-24T17:14:49.010000"],["2024-07-24T17:14:50.010000"],["2024-07-24T17:14:51.010000"],["2024-07-24T17:14:52.010000"],["2024-07-24T17:14:53.010000"],["2024-07-24T17:14:54.010000"],["2024-07-24T17:14:55.010000"],["2024-07-24T17:14:56.010000"],["2024-07-24T17:14:57.010000"],["2024-07-24T17:14:58.010000"],["2024-07-24T17:14:59.010000"],["2024-07-24T17:15:00.010000"],["2024-07-24T17:15:01.010000"],["2024-07-24T17:15:02.010000"],["2024-07-24T17:15:03.010000"],["2024-07-24T17:15:04.010000"],["2024-07-24T17:15:05.010000"],["2024-07-24T17:15:06.010000"],["2024-07-24T17:15:07.010000"],["2024-07-24T17:15:08.010000"],["2024-07-24T17:15:09.010000"],["2024-07-24T17:15:10.010000"],["2024-07-24T17:15:11.010000"],["2024-07-24T17:15:12.010000"],["2024-07-24T17:15:13.010000"],["2024-07-24T17:15:14.010000"],["2024-07-24T17:15:15.010000"],["2024-07-24T17:15:16.010000"],["2024-07-24T17:15:17.010000"],["2024-07-24T17:15:18.010000"],["2024-07-24T17:15:19.010000"],["2024-07-24T17:15:20.010000"],["2024-07-24T17:15:21.010000"],["2024-07-24T17:15:22.010000"],["2024-07-24T17:15:23.010000"],["2024-07-24T17:15:24.010000"],["2024-07-24T17:15:25.010000"],["2024-07-24T17:15:26.010000"],["2024-07-24T17:15:27.010000"],["2024-07-24T17:15:28.010000"],["2024-07-24T17:15:29.010000"],["2024-07-24T17:15:30.010000"],["2024-07-24T17:15:31.010000"],["2024-07-24T17:15:32.010000"],["2024-07-24T17:15:33.010000"],["2024-07-24T17:15:34.010000"],["2024-07-24T17:15:35.010000"],["2024-07-24T17:15:36.010000"],["2024-07-24T17:15:37.010000"],["2024-07-24T17:15:38.010000"],["2024-07-24T17:15:39.010000"],["2024-07-24T17:15:40.010000"],["2024-07-24T17:15:41.010000"],["2024-07-24T17:15:42.010000"],["2024-07-24T17:15:43.010000"],["2024-07-24T17:15:44.010000"],["2024-07-24T17:15:45.010000"],["2024-07-24T17:15:46.010000"],["2024-07-24T17:15:47.010000"],["2024-07-24T17:15:48.010000"],["2024-07-24T17:15:49.010000"],["2024-07-24T17:15:50.010000"],["2024-07-24T17:15:51.010000"],["2024-07-24T17:15:52.010000"],["2024-07-24T17:15:53.010000"],["2024-07-24T17:15:54.010000"],["2024-07-24T17:15:55.010000"],["2024-07-24T17:15:56.010000"],["2024-07-24T17:15:57.010000"],["2024-07-24T17:15:58.010000"],["2024-07-24T17:15:59.010000"],["2024-07-24T17:16:00.010000"],["2024-07-24T17:16:01.010000"],["2024-07-24T17:16:02.010000"],["2024-07-24T17:16:03.010000"],["2024-07-24T17:16:04.010000"],["2024-07-24T17:16:05.010000"],["2024-07-24T17:16:06.010000"],["2024-07-24T17:16:07.010000"],["2024-07-24T17:16:08.010000"],["2024-07-24T17:16:09.010000"],["2024-07-24T17:16:10.010000"],["2024-07-24T17:16:11.010000"],["2024-07-24T17:16:12.010000"],["2024-07-24T17:16:13.010000"],["2024-07-24T17:16:14.010000"],["2024-07-24T17:16:15.010000"],["2024-07-24T17:16:16.010000"],["2024-07-24T17:16:17.010000"],["2024-07-24T17:16:18.010000"],["2024-07-24T17:16:19.010000"],["2024-07-24T17:16:20.010000"],["2024-07-24T17:16:21.010000"],["2024-07-24T17:16:22.010000"],["2024-07-24T17:16:23.010000"],["2024-07-24T17:16:24.010000"],["2024-07-24T17:16:25.010000"],["2024-07-24T17:16:26.010000"],["2024-07-24T17:16:27.010000"],["2024-07-24T17:16:28.010000"],["2024-07-24T17:16:29.010000"],["2024-07-24T17:16:30.010000"],["2024-07-24T17:16:31.010000"],["2024-07-24T17:16:32.010000"],["2024-07-24T17:16:33.010000"],["2024-07-24T17:16:34.010000"],["2024-07-24T17:16:35.010000"],["2024-07-24T17:16:36.010000"],["2024-07-24T17:16:37.010000"],["2024-07-24T17:16:38.010000"],["2024-07-24T17:16:39.010000"],["2024-07-24T17:16:40.010000"],["2024-07-24T17:16:41.010000"],["2024-07-24T17:16:42.010000"],["2024-07-24T17:16:43.010000"],["2024-07-24T17:16:44.010000"],["2024-07-24T17:16:45.010000"],["2024-07-24T17:16:46.010000"],["2024-07-24T17:16:47.010000"],["2024-07-24T17:16:48.010000"],["2024-07-24T17:16:49.010000"],["2024-07-24T17:16:50.010000"],["2024-07-24T17:16:51.010000"],["2024-07-24T17:16:52.010000"],["2024-07-24T17:16:53.010000"],["2024-07-24T17:16:54.010000"],["2024-07-24T17:16:55.010000"],["2024-07-24T17:16:56.010000"],["2024-07-24T17:16:57.010000"],["2024-07-24T17:16:58.010000"],["2024-07-24T17:16:59.010000"],["2024-07-24T17:17:00.010000"],["2024-07-24T17:17:01.010000"],["2024-07-24T17:17:02.010000"],["2024-07-24T17:17:03.010000"],["2024-07-24T17:17:04.010000"],["2024-07-24T17:17:05.010000"],["2024-07-24T17:17:06.010000"],["2024-07-24T17:17:07.010000"],["2024-07-24T17:17:08.010000"],["2024-07-24T17:17:09.010000"],["2024-07-24T17:17:10.010000"],["2024-07-24T17:17:11.010000"],["2024-07-24T17:17:12.010000"],["2024-07-24T17:17:13.010000"],["2024-07-24T17:17:14.010000"],["2024-07-24T17:17:15.010000"],["2024-07-24T17:17:16.010000"],["2024-07-24T17:17:17.010000"],["2024-07-24T17:17:18.010000"],["2024-07-24T17:17:19.010000"],["2024-07-24T17:17:20.010000"],["2024-07-24T17:17:21.010000"],["2024-07-24T17:17:22.010000"],["2024-07-24T17:17:23.010000"],["2024-07-24T17:17:24.010000"],["2024-07-24T17:17:25.010000"],["2024-07-24T17:17:26.010000"],["2024-07-24T17:17:27.010000"],["2024-07-24T17:17:28.010000"],["2024-07-24T17:17:29.010000"],["2024-07-24T17:17:30.010000"],["2024-07-24T17:17:31.010000"],["2024-07-24T17:17:32.010000"],["2024-07-24T17:17:33.010000"],["2024-07-24T17:17:34.010000"],["2024-07-24T17:17:35.010000"],["2024-07-24T17:17:36.010000"],["2024-07-24T17:17:37.010000"],["2024-07-24T17:17:38.010000"],["2024-07-24T17:17:39.010000"],["2024-07-24T17:17:40.010000"],["2024-07-24T17:17:41.010000"],["2024-07-24T17:17:42.010000"],["2024-07-24T17:17:43.010000"],["2024-07-24T17:17:44.010000"],["2024-07-24T17:17:45.010000"],["2024-07-24T17:17:46.010000"],["2024-07-24T17:17:47.010000"],["2024-07-24T17:17:48.010000"],["2024-07-24T17:17:49.010000"],["2024-07-24T17:17:50.010000"],["2024-07-24T17:17:51.010000"],["2024-07-24T17:17:52.010000"],["2024-07-24T17:17:53.010000"],["2024-07-24T17:17:54.010000"],["2024-07-24T17:17:55.010000"],["2024-07-24T17:17:56.010000"],["2024-07-24T17:17:57.010000"],["2024-07-24T17:17:58.010000"],["2024-07-24T17:17:59.010000"],["2024-07-24T17:18:00.010000"],["2024-07-24T17:18:01.010000"],["2024-07-24T17:18:02.010000"],["2024-07-24T17:18:03.010000"],["2024-07-24T17:18:04.010000"],["2024-07-24T17:18:05.010000"],["2024-07-24T17:18:06.010000"],["2024-07-24T17:18:07.010000"],["2024-07-24T17:18:08.010000"],["2024-07-24T17:18:09.010000"],["2024-07-24T17:18:10.010000"],["2024-07-24T17:18:11.010000"],["2024-07-24T17:18:12.010000"],["2024-07-24T17:18:13.010000"],["2024-07-24T17:18:14.010000"],["2024-07-24T17:18:15.010000"],["2024-07-24T17:18:16.010000"],["2024-07-24T17:18:17.010000"],["2024-07-24T17:18:18.010000"],["2024-07-24T17:18:19.010000"],["2024-07-24T17:18:20.010000"],["2024-07-24T17:18:21.010000"],["2024-07-24T17:18:22.010000"],["2024-07-24T17:18:23.010000"],["2024-07-24T17:18:24.010000"],["2024-07-24T17:18:25.010000"],["2024-07-24T17:18:26.010000"],["2024-07-24T17:18:27.010000"],["2024-07-24T17:18:28.010000"],["2024-07-24T17:18:29.010000"],["2024-07-24T17:18:30.010000"],["2024-07-24T17:18:31.010000"],["2024-07-24T17:18:32.010000"],["2024-07-24T17:18:33.010000"],["2024-07-24T17:18:34.010000"],["2024-07-24T17:18:35.010000"],["2024-07-24T17:18:36.010000"],["2024-07-24T17:18:37.010000"],["2024-07-24T17:18:38.010000"],["2024-07-24T17:18:39.010000"],["2024-07-24T17:18:40.010000"],["2024-07-24T17:18:41.010000"],["2024-07-24T17:18:42.010000"],["2024-07-24T17:18:43.010000"],["2024-07-24T17:18:44.010000"],["2024-07-24T17:18:45.010000"],["2024-07-24T17:18:46.010000"],["2024-07-24T17:18:47.010000"],["2024-07-24T17:18:48.010000"],["2024-07-24T17:18:49.010000"],["2024-07-24T17:18:50.010000"],["2024-07-24T17:18:51.010000"],["2024-07-24T17:18:52.010000"],["2024-07-24T17:18:53.010000"],["2024-07-24T17:18:54.010000"],["2024-07-24T17:18:55.010000"],["2024-07-24T17:18:56.010000"],["2024-07-24T17:18:57.010000"],["2024-07-24T17:18:58.010000"],["2024-07-24T17:18:59.010000"],["2024-07-24T17:19:00.010000"],["2024-07-24T17:19:01.010000"],["2024-07-24T17:19:02.010000"],["2024-07-24T17:19:03.010000"],["2024-07-24T17:19:04.010000"],["2024-07-24T17:19:05.010000"],["2024-07-24T17:19:06.010000"],["2024-07-24T17:19:07.010000"],["2024-07-24T17:19:08.010000"],["2024-07-24T17:19:09.010000"],["2024-07-24T17:19:10.010000"],["2024-07-24T17:19:11.010000"],["2024-07-24T17:19:12.010000"],["2024-07-24T17:19:13.010000"],["2024-07-24T17:19:14.010000"],["2024-07-24T17:19:15.010000"],["2024-07-24T17:19:16.010000"],["2024-07-24T17:19:17.010000"],["2024-07-24T17:19:18.010000"],["2024-07-24T17:19:19.010000"],["2024-07-24T17:19:20.010000"],["2024-07-24T17:19:21.010000"],["2024-07-24T17:19:22.010000"],["2024-07-24T17:19:23.010000"],["2024-07-24T17:19:24.010000"],["2024-07-24T17:19:25.010000"],["2024-07-24T17:19:26.010000"],["2024-07-24T17:19:27.010000"],["2024-07-24T17:19:28.010000"],["2024-07-24T17:19:29.010000"],["2024-07-24T17:19:30.010000"],["2024-07-24T17:19:31.010000"],["2024-07-24T17:19:32.010000"],["2024-07-24T17:19:33.010000"],["2024-07-24T17:19:34.010000"],["2024-07-24T17:19:35.010000"],["2024-07-24T17:19:36.010000"],["2024-07-24T17:19:37.010000"],["2024-07-24T17:19:38.010000"],["2024-07-24T17:19:39.010000"],["2024-07-24T17:19:40.010000"],["2024-07-24T17:19:41.010000"],["2024-07-24T17:19:42.010000"],["2024-07-24T17:19:43.010000"],["2024-07-24T17:19:44.010000"],["2024-07-24T17:19:45.010000"],["2024-07-24T17:19:46.010000"],["2024-07-24T17:19:47.010000"],["2024-07-24T17:19:48.010000"],["2024-07-24T17:19:49.010000"],["2024-07-24T17:19:50.010000"],["2024-07-24T17:19:51.010000"],["2024-07-24T17:19:52.010000"],["2024-07-24T17:19:53.010000"],["2024-07-24T17:19:54.010000"],["2024-07-24T17:19:55.010000"],["2024-07-24T17:19:56.010000"],["2024-07-24T17:19:57.010000"],["2024-07-24T17:19:58.010000"],["2024-07-24T17:19:59.010000"],["2024-07-24T17:20:00.010000"],["2024-07-24T17:20:01.010000"],["2024-07-24T17:20:02.010000"],["2024-07-24T17:20:03.010000"],["2024-07-24T17:20:04.010000"],["2024-07-24T17:20:05.010000"],["2024-07-24T17:20:06.010000"],["2024-07-24T17:20:07.010000"],["2024-07-24T17:20:08.010000"],["2024-07-24T17:20:09.010000"],["2024-07-24T17:20:10.010000"],["2024-07-24T17:20:11.010000"],["2024-07-24T17:20:12.010000"],["2024-07-24T17:20:13.010000"],["2024-07-24T17:20:14.010000"],["2024-07-24T17:20:15.010000"],["2024-07-24T17:20:16.010000"],["2024-07-24T17:20:17.010000"],["2024-07-24T17:20:18.010000"],["2024-07-24T17:20:19.010000"],["2024-07-24T17:20:20.010000"],["2024-07-24T17:20:21.010000"],["2024-07-24T17:20:22.010000"],["2024-07-24T17:20:23.010000"],["2024-07-24T17:20:24.010000"],["2024-07-24T17:20:25.010000"],["2024-07-24T17:20:26.010000"],["2024-07-24T17:20:27.010000"],["2024-07-24T17:20:28.010000"],["2024-07-24T17:20:29.010000"],["2024-07-24T17:20:30.010000"],["2024-07-24T17:20:31.010000"],["2024-07-24T17:20:32.010000"],["2024-07-24T17:20:33.010000"],["2024-07-24T17:20:34.010000"],["2024-07-24T17:20:35.010000"],["2024-07-24T17:20:36.010000"],["2024-07-24T17:20:37.010000"],["2024-07-24T17:20:38.010000"],["2024-07-24T17:20:39.010000"],["2024-07-24T17:20:40.010000"],["2024-07-24T17:20:41.010000"],["2024-07-24T17:20:42.010000"],["2024-07-24T17:20:43.010000"],["2024-07-24T17:20:44.010000"],["2024-07-24T17:20:45.010000"],["2024-07-24T17:20:46.010000"],["2024-07-24T17:20:47.010000"],["2024-07-24T17:20:48.010000"],["2024-07-24T17:20:49.010000"],["2024-07-24T17:20:50.010000"],["2024-07-24T17:20:51.010000"],["2024-07-24T17:20:52.010000"],["2024-07-24T17:20:53.010000"],["2024-07-24T17:20:54.010000"],["2024-07-24T17:20:55.010000"],["2024-07-24T17:20:56.010000"],["2024-07-24T17:20:57.010000"],["2024-07-24T17:20:58.010000"],["2024-07-24T17:20:59.010000"],["2024-07-24T17:21:00.010000"],["2024-07-24T17:21:01.010000"],["2024-07-24T17:21:02.010000"],["2024-07-24T17:21:03.010000"],["2024-07-24T17:21:04.010000"],["2024-07-24T17:21:05.010000"],["2024-07-24T17:21:06.010000"],["2024-07-24T17:21:07.010000"],["2024-07-24T17:21:08.010000"],["2024-07-24T17:21:09.010000"],["2024-07-24T17:21:10.010000"],["2024-07-24T17:21:11.010000"],["2024-07-24T17:21:12.010000"],["2024-07-24T17:21:13.010000"],["2024-07-24T17:21:14.010000"],["2024-07-24T17:21:15.010000"],["2024-07-24T17:21:16.010000"],["2024-07-24T17:21:17.010000"],["2024-07-24T17:21:18.010000"],["2024-07-24T17:21:19.010000"],["2024-07-24T17:21:20.010000"],["2024-07-24T17:21:21.010000"],["2024-07-24T17:21:22.010000"],["2024-07-24T17:21:23.010000"],["2024-07-24T17:21:24.010000"],["2024-07-24T17:21:25.010000"],["2024-07-24T17:21:26.010000"],["2024-07-24T17:21:27.010000"],["2024-07-24T17:21:28.010000"],["2024-07-24T17:21:29.010000"],["2024-07-24T17:21:30.010000"],["2024-07-24T17:21:31.010000"],["2024-07-24T17:21:32.010000"],["2024-07-24T17:21:33.010000"],["2024-07-24T17:21:34.010000"],["2024-07-24T17:21:35.010000"],["2024-07-24T17:21:36.010000"],["2024-07-24T17:21:37.010000"],["2024-07-24T17:21:38.010000"],["2024-07-24T17:21:39.010000"],["2024-07-24T17:21:40.010000"],["2024-07-24T17:21:41.010000"],["2024-07-24T17:21:42.010000"],["2024-07-24T17:21:43.010000"],["2024-07-24T17:21:44.010000"],["2024-07-24T17:21:45.010000"],["2024-07-24T17:21:46.010000"],["2024-07-24T17:21:47.010000"],["2024-07-24T17:21:48.010000"],["2024-07-24T17:21:49.010000"],["2024-07-24T17:21:50.010000"],["2024-07-24T17:21:51.010000"],["2024-07-24T17:21:52.010000"],["2024-07-24T17:21:53.010000"],["2024-07-24T17:21:54.010000"],["2024-07-24T17:21:55.010000"],["2024-07-24T17:21:56.010000"],["2024-07-24T17:21:57.010000"],["2024-07-24T17:21:58.010000"],["2024-07-24T17:21:59.010000"],["2024-07-24T17:22:00.010000"],["2024-07-24T17:22:01.010000"],["2024-07-24T17:22:02.010000"],["2024-07-24T17:22:03.010000"],["2024-07-24T17:22:04.010000"],["2024-07-24T17:22:05.010000"],["2024-07-24T17:22:06.010000"],["2024-07-24T17:22:07.010000"],["2024-07-24T17:22:08.010000"],["2024-07-24T17:22:09.010000"],["2024-07-24T17:22:10.010000"],["2024-07-24T17:22:11.010000"],["2024-07-24T17:22:12.010000"],["2024-07-24T17:22:13.010000"],["2024-07-24T17:22:14.010000"],["2024-07-24T17:22:15.010000"],["2024-07-24T17:22:16.010000"],["2024-07-24T17:22:17.010000"],["2024-07-24T17:22:18.010000"],["2024-07-24T17:22:19.010000"],["2024-07-24T17:22:20.010000"],["2024-07-24T17:22:21.010000"],["2024-07-24T17:22:22.010000"],["2024-07-24T17:22:23.010000"],["2024-07-24T17:22:24.010000"],["2024-07-24T17:22:25.010000"],["2024-07-24T17:22:26.010000"],["2024-07-24T17:22:27.010000"],["2024-07-24T17:22:28.010000"],["2024-07-24T17:22:29.010000"],["2024-07-24T17:22:30.010000"],["2024-07-24T17:22:31.010000"],["2024-07-24T17:22:32.010000"],["2024-07-24T17:22:33.010000"],["2024-07-24T17:22:34.010000"],["2024-07-24T17:22:35.010000"],["2024-07-24T17:22:36.010000"],["2024-07-24T17:22:37.010000"],["2024-07-24T17:22:38.010000"],["2024-07-24T17:22:39.010000"],["2024-07-24T17:22:40.010000"],["2024-07-24T17:22:41.010000"],["2024-07-24T17:22:42.010000"],["2024-07-24T17:22:43.010000"],["2024-07-24T17:22:44.010000"],["2024-07-24T17:22:45.010000"],["2024-07-24T17:22:46.010000"],["2024-07-24T17:22:47.010000"],["2024-07-24T17:22:48.010000"],["2024-07-24T17:22:49.010000"],["2024-07-24T17:22:50.010000"],["2024-07-24T17:22:51.010000"],["2024-07-24T17:22:52.010000"],["2024-07-24T17:22:53.010000"],["2024-07-24T17:22:54.010000"],["2024-07-24T17:22:55.010000"],["2024-07-24T17:22:56.010000"],["2024-07-24T17:22:57.010000"],["2024-07-24T17:22:58.010000"],["2024-07-24T17:22:59.010000"],["2024-07-24T17:23:00.010000"],["2024-07-24T17:23:01.010000"],["2024-07-24T17:23:02.010000"],["2024-07-24T17:23:03.010000"],["2024-07-24T17:23:04.010000"],["2024-07-24T17:23:05.010000"],["2024-07-24T17:23:06.010000"],["2024-07-24T17:23:07.010000"],["2024-07-24T17:23:08.010000"],["2024-07-24T17:23:09.010000"],["2024-07-24T17:23:10.010000"],["2024-07-24T17:23:11.010000"],["2024-07-24T17:23:12.010000"],["2024-07-24T17:23:13.010000"],["2024-07-24T17:23:14.010000"],["2024-07-24T17:23:15.010000"],["2024-07-24T17:23:16.010000"],["2024-07-24T17:23:17.010000"],["2024-07-24T17:23:18.010000"],["2024-07-24T17:23:19.010000"],["2024-07-24T17:23:20.010000"],["2024-07-24T17:23:21.010000"],["2024-07-24T17:23:22.010000"],["2024-07-24T17:23:23.010000"],["2024-07-24T17:23:24.010000"],["2024-07-24T17:23:25.010000"],["2024-07-24T17:23:26.010000"],["2024-07-24T17:23:27.010000"],["2024-07-24T17:23:28.010000"],["2024-07-24T17:23:29.010000"],["2024-07-24T17:23:30.010000"],["2024-07-24T17:23:31.010000"],["2024-07-24T17:23:32.010000"],["2024-07-24T17:23:33.010000"],["2024-07-24T17:23:34.010000"],["2024-07-24T17:23:35.010000"],["2024-07-24T17:23:36.010000"],["2024-07-24T17:23:37.010000"],["2024-07-24T17:23:38.010000"],["2024-07-24T17:23:39.010000"],["2024-07-24T17:23:40.010000"],["2024-07-24T17:23:41.010000"],["2024-07-24T17:23:42.010000"],["2024-07-24T17:23:43.010000"],["2024-07-24T17:23:44.010000"],["2024-07-24T17:23:45.010000"],["2024-07-24T17:23:46.010000"],["2024-07-24T17:23:47.010000"],["2024-07-24T17:23:48.010000"],["2024-07-24T17:23:49.010000"],["2024-07-24T17:23:50.010000"],["2024-07-24T17:23:51.010000"],["2024-07-24T17:23:52.010000"],["2024-07-24T17:23:53.010000"],["2024-07-24T17:23:54.010000"],["2024-07-24T17:23:55.010000"],["2024-07-24T17:23:56.010000"],["2024-07-24T17:23:57.010000"],["2024-07-24T17:23:58.010000"],["2024-07-24T17:23:59.010000"],["2024-07-24T17:24:00.010000"],["2024-07-24T17:24:01.010000"],["2024-07-24T17:24:02.010000"],["2024-07-24T17:24:03.010000"],["2024-07-24T17:24:04.010000"],["2024-07-24T17:24:05.010000"],["2024-07-24T17:24:06.010000"],["2024-07-24T17:24:07.010000"],["2024-07-24T17:24:08.010000"],["2024-07-24T17:24:09.010000"],["2024-07-24T17:24:10.010000"],["2024-07-24T17:24:11.010000"],["2024-07-24T17:24:12.010000"],["2024-07-24T17:24:13.010000"],["2024-07-24T17:24:14.010000"],["2024-07-24T17:24:15.010000"],["2024-07-24T17:24:16.010000"],["2024-07-24T17:24:17.010000"],["2024-07-24T17:24:18.010000"],["2024-07-24T17:24:19.010000"],["2024-07-24T17:24:20.010000"],["2024-07-24T17:24:21.010000"],["2024-07-24T17:24:22.010000"],["2024-07-24T17:24:23.010000"],["2024-07-24T17:24:24.010000"],["2024-07-24T17:24:25.010000"],["2024-07-24T17:24:26.010000"],["2024-07-24T17:24:27.010000"],["2024-07-24T17:24:28.010000"],["2024-07-24T17:24:29.010000"],["2024-07-24T17:24:30.010000"],["2024-07-24T17:24:31.010000"],["2024-07-24T17:24:32.010000"],["2024-07-24T17:24:33.010000"],["2024-07-24T17:24:34.010000"],["2024-07-24T17:24:35.010000"],["2024-07-24T17:24:36.010000"],["2024-07-24T17:24:37.010000"],["2024-07-24T17:24:38.010000"],["2024-07-24T17:24:39.010000"],["2024-07-24T17:24:40.010000"],["2024-07-24T17:24:41.010000"],["2024-07-24T17:24:42.010000"],["2024-07-24T17:24:43.010000"],["2024-07-24T17:24:44.010000"],["2024-07-24T17:24:45.010000"],["2024-07-24T17:24:46.010000"],["2024-07-24T17:24:47.010000"],["2024-07-24T17:24:48.010000"],["2024-07-24T17:24:49.010000"],["2024-07-24T17:24:50.010000"],["2024-07-24T17:24:51.010000"],["2024-07-24T17:24:52.010000"],["2024-07-24T17:24:53.010000"],["2024-07-24T17:24:54.010000"],["2024-07-24T17:24:55.010000"],["2024-07-24T17:24:56.010000"],["2024-07-24T17:24:57.010000"],["2024-07-24T17:24:58.010000"],["2024-07-24T17:24:59.010000"],["2024-07-24T17:25:00.010000"],["2024-07-24T17:25:01.010000"],["2024-07-24T17:25:02.010000"],["2024-07-24T17:25:03.010000"],["2024-07-24T17:25:04.010000"],["2024-07-24T17:25:05.010000"],["2024-07-24T17:25:06.010000"],["2024-07-24T17:25:07.010000"],["2024-07-24T17:25:08.010000"],["2024-07-24T17:25:09.010000"],["2024-07-24T17:25:10.010000"],["2024-07-24T17:25:11.010000"],["2024-07-24T17:25:12.010000"],["2024-07-24T17:25:13.010000"],["2024-07-24T17:25:14.010000"],["2024-07-24T17:25:15.010000"],["2024-07-24T17:25:16.010000"],["2024-07-24T17:25:17.010000"],["2024-07-24T17:25:18.010000"],["2024-07-24T17:25:19.010000"],["2024-07-24T17:25:20.010000"],["2024-07-24T17:25:21.010000"],["2024-07-24T17:25:22.010000"],["2024-07-24T17:25:23.010000"],["2024-07-24T17:25:24.010000"],["2024-07-24T17:25:25.010000"],["2024-07-24T17:25:26.010000"],["2024-07-24T17:25:27.010000"],["2024-07-24T17:25:28.010000"],["2024-07-24T17:25:29.010000"],["2024-07-24T17:25:30.010000"],["2024-07-24T17:25:31.010000"],["2024-07-24T17:25:32.010000"],["2024-07-24T17:25:33.010000"],["2024-07-24T17:25:34.010000"],["2024-07-24T17:25:35.010000"],["2024-07-24T17:25:36.010000"],["2024-07-24T17:25:37.010000"],["2024-07-24T17:25:38.010000"],["2024-07-24T17:25:39.010000"],["2024-07-24T17:25:40.010000"],["2024-07-24T17:25:41.010000"],["2024-07-24T17:25:42.010000"],["2024-07-24T17:25:43.010000"],["2024-07-24T17:25:44.010000"],["2024-07-24T17:25:45.010000"],["2024-07-24T17:25:46.010000"],["2024-07-24T17:25:47.010000"],["2024-07-24T17:25:48.010000"],["2024-07-24T17:25:49.010000"],["2024-07-24T17:25:50.010000"],["2024-07-24T17:25:51.010000"],["2024-07-24T17:25:52.010000"],["2024-07-24T17:25:53.010000"],["2024-07-24T17:25:54.010000"],["2024-07-24T17:25:55.010000"],["2024-07-24T17:25:56.010000"],["2024-07-24T17:25:57.010000"],["2024-07-24T17:25:58.010000"],["2024-07-24T17:25:59.010000"],["2024-07-24T17:26:00.010000"],["2024-07-24T17:26:01.010000"],["2024-07-24T17:26:02.010000"],["2024-07-24T17:26:03.010000"],["2024-07-24T17:26:04.010000"],["2024-07-24T17:26:05.010000"],["2024-07-24T17:26:06.010000"],["2024-07-24T17:26:07.010000"],["2024-07-24T17:26:08.010000"],["2024-07-24T17:26:09.010000"],["2024-07-24T17:26:10.010000"],["2024-07-24T17:26:11.010000"],["2024-07-24T17:26:12.010000"],["2024-07-24T17:26:13.010000"],["2024-07-24T17:26:14.010000"],["2024-07-24T17:26:15.010000"],["2024-07-24T17:26:16.010000"],["2024-07-24T17:26:17.010000"],["2024-07-24T17:26:18.010000"],["2024-07-24T17:26:19.010000"],["2024-07-24T17:26:20.010000"],["2024-07-24T17:26:21.010000"],["2024-07-24T17:26:22.010000"],["2024-07-24T17:26:23.010000"],["2024-07-24T17:26:24.010000"],["2024-07-24T17:26:25.010000"],["2024-07-24T17:26:26.010000"],["2024-07-24T17:26:27.010000"],["2024-07-24T17:26:28.010000"],["2024-07-24T17:26:29.010000"],["2024-07-24T17:26:30.010000"],["2024-07-24T17:26:31.010000"],["2024-07-24T17:26:32.010000"],["2024-07-24T17:26:33.010000"],["2024-07-24T17:26:34.010000"],["2024-07-24T17:26:35.010000"],["2024-07-24T17:26:36.010000"],["2024-07-24T17:26:37.010000"],["2024-07-24T17:26:38.010000"],["2024-07-24T17:26:39.010000"],["2024-07-24T17:26:40.010000"],["2024-07-24T17:26:41.010000"],["2024-07-24T17:26:42.010000"],["2024-07-24T17:26:43.010000"],["2024-07-24T17:26:44.010000"],["2024-07-24T17:26:45.010000"],["2024-07-24T17:26:46.010000"],["2024-07-24T17:26:47.010000"],["2024-07-24T17:26:48.010000"],["2024-07-24T17:26:49.010000"],["2024-07-24T17:26:50.010000"],["2024-07-24T17:26:51.010000"],["2024-07-24T17:26:52.010000"],["2024-07-24T17:26:53.010000"],["2024-07-24T17:26:54.010000"],["2024-07-24T17:26:55.010000"],["2024-07-24T17:26:56.010000"],["2024-07-24T17:26:57.010000"],["2024-07-24T17:26:58.010000"],["2024-07-24T17:26:59.010000"],["2024-07-24T17:27:00.010000"],["2024-07-24T17:27:01.010000"],["2024-07-24T17:27:02.010000"],["2024-07-24T17:27:03.010000"],["2024-07-24T17:27:04.010000"],["2024-07-24T17:27:05.010000"],["2024-07-24T17:27:06.010000"],["2024-07-24T17:27:07.010000"],["2024-07-24T17:27:08.010000"],["2024-07-24T17:27:09.010000"],["2024-07-24T17:27:10.010000"],["2024-07-24T17:27:11.010000"],["2024-07-24T17:27:12.010000"],["2024-07-24T17:27:13.010000"],["2024-07-24T17:27:14.010000"],["2024-07-24T17:27:15.010000"],["2024-07-24T17:27:16.010000"],["2024-07-24T17:27:17.010000"],["2024-07-24T17:27:18.010000"],["2024-07-24T17:27:19.010000"],["2024-07-24T17:27:20.010000"],["2024-07-24T17:27:21.010000"],["2024-07-24T17:27:22.010000"],["2024-07-24T17:27:23.010000"],["2024-07-24T17:27:24.010000"],["2024-07-24T17:27:25.010000"],["2024-07-24T17:27:26.010000"],["2024-07-24T17:27:27.010000"],["2024-07-24T17:27:28.010000"],["2024-07-24T17:27:29.010000"],["2024-07-24T17:27:30.010000"],["2024-07-24T17:27:31.010000"],["2024-07-24T17:27:32.010000"],["2024-07-24T17:27:33.010000"],["2024-07-24T17:27:34.010000"],["2024-07-24T17:27:35.010000"],["2024-07-24T17:27:36.010000"],["2024-07-24T17:27:37.010000"],["2024-07-24T17:27:38.010000"],["2024-07-24T17:27:39.010000"],["2024-07-24T17:27:40.010000"],["2024-07-24T17:27:41.010000"],["2024-07-24T17:27:42.010000"],["2024-07-24T17:27:43.010000"],["2024-07-24T17:27:44.010000"],["2024-07-24T17:27:45.010000"],["2024-07-24T17:27:46.010000"],["2024-07-24T17:27:47.010000"],["2024-07-24T17:27:48.010000"],["2024-07-24T17:27:49.010000"],["2024-07-24T17:27:50.010000"],["2024-07-24T17:27:51.010000"],["2024-07-24T17:27:52.010000"],["2024-07-24T17:27:53.010000"],["2024-07-24T17:27:54.010000"],["2024-07-24T17:27:55.010000"],["2024-07-24T17:27:56.010000"],["2024-07-24T17:27:57.010000"],["2024-07-24T17:27:58.010000"],["2024-07-24T17:27:59.010000"],["2024-07-24T17:28:00.010000"],["2024-07-24T17:28:01.010000"],["2024-07-24T17:28:02.010000"],["2024-07-24T17:28:03.010000"],["2024-07-24T17:28:04.010000"],["2024-07-24T17:28:05.010000"],["2024-07-24T17:28:06.010000"],["2024-07-24T17:28:07.010000"],["2024-07-24T17:28:08.010000"],["2024-07-24T17:28:09.010000"],["2024-07-24T17:28:10.010000"],["2024-07-24T17:28:11.010000"],["2024-07-24T17:28:12.010000"],["2024-07-24T17:28:13.010000"],["2024-07-24T17:28:14.010000"],["2024-07-24T17:28:15.010000"],["2024-07-24T17:28:16.010000"],["2024-07-24T17:28:17.010000"],["2024-07-24T17:28:18.010000"],["2024-07-24T17:28:19.010000"],["2024-07-24T17:28:20.010000"],["2024-07-24T17:28:21.010000"],["2024-07-24T17:28:22.010000"],["2024-07-24T17:28:23.010000"],["2024-07-24T17:28:24.010000"],["2024-07-24T17:28:25.010000"],["2024-07-24T17:28:26.010000"],["2024-07-24T17:28:27.010000"],["2024-07-24T17:28:28.010000"],["2024-07-24T17:28:29.010000"],["2024-07-24T17:28:30.010000"],["2024-07-24T17:28:31.010000"],["2024-07-24T17:28:32.010000"],["2024-07-24T17:28:33.010000"],["2024-07-24T17:28:34.010000"],["2024-07-24T17:28:35.010000"],["2024-07-24T17:28:36.010000"],["2024-07-24T17:28:37.010000"],["2024-07-24T17:28:38.010000"],["2024-07-24T17:28:39.010000"],["2024-07-24T17:28:40.010000"],["2024-07-24T17:28:41.010000"],["2024-07-24T17:28:42.010000"],["2024-07-24T17:28:43.010000"],["2024-07-24T17:28:44.010000"],["2024-07-24T17:28:45.010000"],["2024-07-24T17:28:46.010000"],["2024-07-24T17:28:47.010000"],["2024-07-24T17:28:48.010000"],["2024-07-24T17:28:49.010000"],["2024-07-24T17:28:50.010000"],["2024-07-24T17:28:51.010000"],["2024-07-24T17:28:52.010000"],["2024-07-24T17:28:53.010000"],["2024-07-24T17:28:54.010000"],["2024-07-24T17:28:55.010000"],["2024-07-24T17:28:56.010000"],["2024-07-24T17:28:57.010000"],["2024-07-24T17:28:58.010000"],["2024-07-24T17:28:59.010000"],["2024-07-24T17:29:00.010000"],["2024-07-24T17:29:01.010000"],["2024-07-24T17:29:02.010000"],["2024-07-24T17:29:03.010000"],["2024-07-24T17:29:04.010000"],["2024-07-24T17:29:05.010000"],["2024-07-24T17:29:06.010000"],["2024-07-24T17:29:07.010000"],["2024-07-24T17:29:08.010000"],["2024-07-24T17:29:09.010000"],["2024-07-24T17:29:10.010000"],["2024-07-24T17:29:11.010000"],["2024-07-24T17:29:12.010000"],["2024-07-24T17:29:13.010000"],["2024-07-24T17:29:14.010000"],["2024-07-24T17:29:15.010000"],["2024-07-24T17:29:16.010000"],["2024-07-24T17:29:17.010000"],["2024-07-24T17:29:18.010000"],["2024-07-24T17:29:19.010000"],["2024-07-24T17:29:20.010000"],["2024-07-24T17:29:21.010000"],["2024-07-24T17:29:22.010000"],["2024-07-24T17:29:23.010000"],["2024-07-24T17:29:24.010000"],["2024-07-24T17:29:25.010000"],["2024-07-24T17:29:26.010000"],["2024-07-24T17:29:27.010000"],["2024-07-24T17:29:28.010000"],["2024-07-24T17:29:29.010000"],["2024-07-24T17:29:30.010000"],["2024-07-24T17:29:31.010000"],["2024-07-24T17:29:32.010000"],["2024-07-24T17:29:33.010000"],["2024-07-24T17:29:34.010000"],["2024-07-24T17:29:35.010000"],["2024-07-24T17:29:36.010000"],["2024-07-24T17:29:37.010000"],["2024-07-24T17:29:38.010000"],["2024-07-24T17:29:39.010000"],["2024-07-24T17:29:40.010000"],["2024-07-24T17:29:41.010000"],["2024-07-24T17:29:42.010000"],["2024-07-24T17:29:43.010000"],["2024-07-24T17:29:44.010000"],["2024-07-24T17:29:45.010000"],["2024-07-24T17:29:46.010000"],["2024-07-24T17:29:47.010000"],["2024-07-24T17:29:48.010000"],["2024-07-24T17:29:49.010000"],["2024-07-24T17:29:50.010000"],["2024-07-24T17:29:51.010000"],["2024-07-24T17:29:52.010000"],["2024-07-24T17:29:53.010000"],["2024-07-24T17:29:54.010000"],["2024-07-24T17:29:55.010000"],["2024-07-24T17:29:56.010000"],["2024-07-24T17:29:57.010000"],["2024-07-24T17:29:58.010000"],["2024-07-24T17:29:59.010000"],["2024-07-24T17:30:00.010000"],["2024-07-24T17:30:01.010000"],["2024-07-24T17:30:02.010000"],["2024-07-24T17:30:03.010000"],["2024-07-24T17:30:04.010000"],["2024-07-24T17:30:05.010000"],["2024-07-24T17:30:06.010000"],["2024-07-24T17:30:07.010000"],["2024-07-24T17:30:08.010000"],["2024-07-24T17:30:09.010000"],["2024-07-24T17:30:10.010000"],["2024-07-24T17:30:11.010000"],["2024-07-24T17:30:12.010000"],["2024-07-24T17:30:13.010000"],["2024-07-24T17:30:14.010000"],["2024-07-24T17:30:15.010000"],["2024-07-24T17:30:16.010000"],["2024-07-24T17:30:17.010000"],["2024-07-24T17:30:18.010000"],["2024-07-24T17:30:19.010000"],["2024-07-24T17:30:20.010000"],["2024-07-24T17:30:21.010000"],["2024-07-24T17:30:22.010000"],["2024-07-24T17:30:23.010000"],["2024-07-24T17:30:24.010000"],["2024-07-24T17:30:25.010000"],["2024-07-24T17:30:26.010000"],["2024-07-24T17:30:27.010000"],["2024-07-24T17:30:28.010000"],["2024-07-24T17:30:29.010000"],["2024-07-24T17:30:30.010000"],["2024-07-24T17:30:31.010000"],["2024-07-24T17:30:32.010000"],["2024-07-24T17:30:33.010000"],["2024-07-24T17:30:34.010000"],["2024-07-24T17:30:35.010000"],["2024-07-24T17:30:36.010000"],["2024-07-24T17:30:37.010000"],["2024-07-24T17:30:38.010000"],["2024-07-24T17:30:39.010000"],["2024-07-24T17:30:40.010000"],["2024-07-24T17:30:41.010000"],["2024-07-24T17:30:42.010000"],["2024-07-24T17:30:43.010000"],["2024-07-24T17:30:44.010000"],["2024-07-24T17:30:45.010000"],["2024-07-24T17:30:46.010000"],["2024-07-24T17:30:47.010000"],["2024-07-24T17:30:48.010000"],["2024-07-24T17:30:49.010000"],["2024-07-24T17:30:50.010000"],["2024-07-24T17:30:51.010000"],["2024-07-24T17:30:52.010000"],["2024-07-24T17:30:53.010000"],["2024-07-24T17:30:54.010000"],["2024-07-24T17:30:55.010000"],["2024-07-24T17:30:56.010000"],["2024-07-24T17:30:57.010000"],["2024-07-24T17:30:58.010000"],["2024-07-24T17:30:59.010000"],["2024-07-24T17:31:00.010000"],["2024-07-24T17:31:01.010000"],["2024-07-24T17:31:02.010000"],["2024-07-24T17:31:03.010000"],["2024-07-24T17:31:04.010000"],["2024-07-24T17:31:05.010000"],["2024-07-24T17:31:06.010000"],["2024-07-24T17:31:07.010000"],["2024-07-24T17:31:08.010000"],["2024-07-24T17:31:09.010000"],["2024-07-24T17:31:10.010000"],["2024-07-24T17:31:11.010000"],["2024-07-24T17:31:12.010000"],["2024-07-24T17:31:13.010000"],["2024-07-24T17:31:14.010000"],["2024-07-24T17:31:15.010000"],["2024-07-24T17:31:16.010000"],["2024-07-24T17:31:17.010000"],["2024-07-24T17:31:18.010000"],["2024-07-24T17:31:19.010000"],["2024-07-24T17:31:20.010000"],["2024-07-24T17:31:21.010000"],["2024-07-24T17:31:22.010000"],["2024-07-24T17:31:23.010000"],["2024-07-24T17:31:24.010000"],["2024-07-24T17:31:25.010000"],["2024-07-24T17:31:26.010000"],["2024-07-24T17:31:27.010000"],["2024-07-24T17:31:28.010000"],["2024-07-24T17:31:29.010000"],["2024-07-24T17:31:30.010000"],["2024-07-24T17:31:31.010000"],["2024-07-24T17:31:32.010000"],["2024-07-24T17:31:33.010000"],["2024-07-24T17:31:34.010000"],["2024-07-24T17:31:35.010000"],["2024-07-24T17:31:36.010000"],["2024-07-24T17:31:37.010000"],["2024-07-24T17:31:38.010000"],["2024-07-24T17:31:39.010000"],["2024-07-24T17:31:40.010000"],["2024-07-24T17:31:41.010000"],["2024-07-24T17:31:42.010000"],["2024-07-24T17:31:43.010000"],["2024-07-24T17:31:44.010000"],["2024-07-24T17:31:45.010000"],["2024-07-24T17:31:46.010000"],["2024-07-24T17:31:47.010000"],["2024-07-24T17:31:48.010000"],["2024-07-24T17:31:49.010000"],["2024-07-24T17:31:50.010000"],["2024-07-24T17:31:51.010000"],["2024-07-24T17:31:52.010000"],["2024-07-24T17:31:53.010000"],["2024-07-24T17:31:54.010000"],["2024-07-24T17:31:55.010000"],["2024-07-24T17:31:56.010000"],["2024-07-24T17:31:57.010000"],["2024-07-24T17:31:58.010000"],["2024-07-24T17:31:59.010000"],["2024-07-24T17:32:00.010000"],["2024-07-24T17:32:01.010000"],["2024-07-24T17:32:02.010000"],["2024-07-24T17:32:03.010000"],["2024-07-24T17:32:04.010000"],["2024-07-24T17:32:05.010000"],["2024-07-24T17:32:06.010000"],["2024-07-24T17:32:07.010000"],["2024-07-24T17:32:08.010000"],["2024-07-24T17:32:09.010000"],["2024-07-24T17:32:10.010000"],["2024-07-24T17:32:11.010000"],["2024-07-24T17:32:12.010000"],["2024-07-24T17:32:13.010000"],["2024-07-24T17:32:14.010000"],["2024-07-24T17:32:15.010000"],["2024-07-24T17:32:16.010000"],["2024-07-24T17:32:17.010000"],["2024-07-24T17:32:18.010000"],["2024-07-24T17:32:19.010000"],["2024-07-24T17:32:20.010000"],["2024-07-24T17:32:21.010000"],["2024-07-24T17:32:22.010000"],["2024-07-24T17:32:23.010000"],["2024-07-24T17:32:24.010000"],["2024-07-24T17:32:25.010000"],["2024-07-24T17:32:26.010000"],["2024-07-24T17:32:27.010000"],["2024-07-24T17:32:28.010000"],["2024-07-24T17:32:29.010000"],["2024-07-24T17:32:30.010000"],["2024-07-24T17:32:31.010000"],["2024-07-24T17:32:32.010000"],["2024-07-24T17:32:33.010000"],["2024-07-24T17:32:34.010000"],["2024-07-24T17:32:35.010000"],["2024-07-24T17:32:36.010000"],["2024-07-24T17:32:37.010000"],["2024-07-24T17:32:38.010000"],["2024-07-24T17:32:39.010000"],["2024-07-24T17:32:40.010000"],["2024-07-24T17:32:41.010000"],["2024-07-24T17:32:42.010000"],["2024-07-24T17:32:43.010000"],["2024-07-24T17:32:44.010000"],["2024-07-24T17:32:45.010000"],["2024-07-24T17:32:46.010000"],["2024-07-24T17:32:47.010000"],["2024-07-24T17:32:48.010000"],["2024-07-24T17:32:49.010000"],["2024-07-24T17:32:50.010000"],["2024-07-24T17:32:51.010000"],["2024-07-24T17:32:52.010000"],["2024-07-24T17:32:53.010000"],["2024-07-24T17:32:54.010000"],["2024-07-24T17:32:55.010000"],["2024-07-24T17:32:56.010000"],["2024-07-24T17:32:57.010000"],["2024-07-24T17:32:58.010000"],["2024-07-24T17:32:59.010000"],["2024-07-24T17:33:00.010000"],["2024-07-24T17:33:01.010000"],["2024-07-24T17:33:02.010000"],["2024-07-24T17:33:03.010000"],["2024-07-24T17:33:04.010000"],["2024-07-24T17:33:05.010000"],["2024-07-24T17:33:06.010000"],["2024-07-24T17:33:07.010000"],["2024-07-24T17:33:08.010000"],["2024-07-24T17:33:09.010000"],["2024-07-24T17:33:10.010000"],["2024-07-24T17:33:11.010000"],["2024-07-24T17:33:12.010000"],["2024-07-24T17:33:13.010000"],["2024-07-24T17:33:14.010000"],["2024-07-24T17:33:15.010000"],["2024-07-24T17:33:16.010000"],["2024-07-24T17:33:17.010000"],["2024-07-24T17:33:18.010000"],["2024-07-24T17:33:19.010000"],["2024-07-24T17:33:20.010000"],["2024-07-24T17:33:21.010000"],["2024-07-24T17:33:22.010000"],["2024-07-24T17:33:23.010000"],["2024-07-24T17:33:24.010000"],["2024-07-24T17:33:25.010000"],["2024-07-24T17:33:26.010000"],["2024-07-24T17:33:27.010000"],["2024-07-24T17:33:28.010000"],["2024-07-24T17:33:29.010000"],["2024-07-24T17:33:30.010000"],["2024-07-24T17:33:31.010000"],["2024-07-24T17:33:32.010000"],["2024-07-24T17:33:33.010000"],["2024-07-24T17:33:34.010000"],["2024-07-24T17:33:35.010000"],["2024-07-24T17:33:36.010000"],["2024-07-24T17:33:37.010000"],["2024-07-24T17:33:38.010000"],["2024-07-24T17:33:39.010000"],["2024-07-24T17:33:40.010000"],["2024-07-24T17:33:41.010000"],["2024-07-24T17:33:42.010000"],["2024-07-24T17:33:43.010000"],["2024-07-24T17:33:44.010000"],["2024-07-24T17:33:45.010000"],["2024-07-24T17:33:46.010000"],["2024-07-24T17:33:47.010000"],["2024-07-24T17:33:48.010000"],["2024-07-24T17:33:49.010000"],["2024-07-24T17:33:50.010000"],["2024-07-24T17:33:51.010000"],["2024-07-24T17:33:52.010000"],["2024-07-24T17:33:53.010000"],["2024-07-24T17:33:54.010000"],["2024-07-24T17:33:55.010000"],["2024-07-24T17:33:56.010000"],["2024-07-24T17:33:57.010000"],["2024-07-24T17:33:58.010000"],["2024-07-24T17:33:59.010000"],["2024-07-24T17:34:00.010000"],["2024-07-24T17:34:01.010000"],["2024-07-24T17:34:02.010000"],["2024-07-24T17:34:03.010000"],["2024-07-24T17:34:04.010000"],["2024-07-24T17:34:05.010000"],["2024-07-24T17:34:06.010000"],["2024-07-24T17:34:07.010000"],["2024-07-24T17:34:08.010000"],["2024-07-24T17:34:09.010000"],["2024-07-24T17:34:10.010000"],["2024-07-24T17:34:11.010000"],["2024-07-24T17:34:12.010000"],["2024-07-24T17:34:13.010000"],["2024-07-24T17:34:14.010000"],["2024-07-24T17:34:15.010000"],["2024-07-24T17:34:16.010000"],["2024-07-24T17:34:17.010000"],["2024-07-24T17:34:18.010000"],["2024-07-24T17:34:19.010000"],["2024-07-24T17:34:20.010000"],["2024-07-24T17:34:21.010000"],["2024-07-24T17:34:22.010000"],["2024-07-24T17:34:23.010000"],["2024-07-24T17:34:24.010000"],["2024-07-24T17:34:25.010000"],["2024-07-24T17:34:26.010000"],["2024-07-24T17:34:27.010000"],["2024-07-24T17:34:28.010000"],["2024-07-24T17:34:29.010000"],["2024-07-24T17:34:30.010000"],["2024-07-24T17:34:31.010000"],["2024-07-24T17:34:32.010000"],["2024-07-24T17:34:33.010000"],["2024-07-24T17:34:34.010000"],["2024-07-24T17:34:35.010000"],["2024-07-24T17:34:36.010000"],["2024-07-24T17:34:37.010000"],["2024-07-24T17:34:38.010000"],["2024-07-24T17:34:39.010000"],["2024-07-24T17:34:40.010000"],["2024-07-24T17:34:41.010000"],["2024-07-24T17:34:42.010000"],["2024-07-24T17:34:43.010000"],["2024-07-24T17:34:44.010000"],["2024-07-24T17:34:45.010000"],["2024-07-24T17:34:46.010000"],["2024-07-24T17:34:47.010000"],["2024-07-24T17:34:48.010000"],["2024-07-24T17:34:49.010000"],["2024-07-24T17:34:50.010000"],["2024-07-24T17:34:51.010000"],["2024-07-24T17:34:52.010000"],["2024-07-24T17:34:53.010000"],["2024-07-24T17:34:54.010000"],["2024-07-24T17:34:55.010000"],["2024-07-24T17:34:56.010000"],["2024-07-24T17:34:57.010000"],["2024-07-24T17:34:58.010000"],["2024-07-24T17:34:59.010000"],["2024-07-24T17:35:00.010000"],["2024-07-24T17:35:01.010000"],["2024-07-24T17:35:02.010000"],["2024-07-24T17:35:03.010000"],["2024-07-24T17:35:04.010000"],["2024-07-24T17:35:05.010000"]],"hovertemplate":"color=2\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"2","line":{"color":"#00cc96","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"2","scene":"scene","showlegend":true,"x":[-0.08867599396035075,-0.2741587474010885,0.26594995614141226,0.3257990307174623,-0.1631986740976572,-0.37872320879250765,0.10024961596354842,-0.3107677586376667,-0.00060323067009449,0.02943884441629052,-0.5145007758401334,-0.34353572502732277,-0.49098770460113883,0.4837042544968426,-0.43721915734931827,0.8053211150690913,-0.2833534902893007,-0.6491499044932425,0.2085139504633844,0.1497003766708076,-0.5686530019156635,-0.1036828844808042,0.840053700376302,0.4706650320440531,0.07370440242812037,0.5364467049948871,0.27861668542027473,-0.4831797042861581,0.2941706031560898,-0.6714225546456873,0.330012293998152,-0.5619006520137191,0.8383949156850576,0.4618701320141554,-0.4777881973423064,0.40829024091362953,0.8933238065801561,-0.24907965119928122,0.33499246928840876,0.813699584454298,0.943864272441715,-0.6526451911777258,0.7318804920651019,-0.8174233469180763,0.609462405089289,0.34263995196670294,-0.5404502525925636,0.24137053731828928,-0.0015380480326712132,-0.18624619534239173,0.16510854242369533,0.10168060148134828,0.44669571379199624,-0.7389282030053437,0.1859775255434215,0.7380916634574533,-0.4464676072821021,0.17294636368751526,0.0914470013231039,0.44714533211663365,-0.5089216195046902,0.151599635835737,-0.23809211375191808,-0.2043406148441136,-0.3459354001097381,-0.7034575315192342,-0.4853581073693931,0.717046367470175,-0.1576062231324613,-0.8785608941689134,-0.03969642799347639,0.8449747506529093,-0.7419868777506053,0.3883172692731023,0.5690995492041111,-0.04250815510749817,0.3825362492352724,0.7792097521014512,-0.7603620407171547,0.18775909394025803,0.006249808706343174,-0.3544273814186454,0.8594316113740206,-0.8960866620764136,-0.4816591003909707,-0.9471699469722807,0.7407888090237975,-0.5783521854318678,-0.46505626337602735,0.13274680683389306,-0.23016810743138194,-0.30346737056970596,-0.24060540087521076,-0.8135610455647111,0.43973338324576616,0.5031596054323018,-0.05520154582336545,-0.40667120600119233,-0.11156194005161524,-0.6870434647426009,0.6279037185013294,0.31669992161914706,0.1385471890680492,0.5820285636000335,0.4706693161278963,0.5645347125828266,0.0969208455644548,0.7424389277584851,-0.8518118583597243,0.4274851642549038,-0.71184405637905,-0.17131829913705587,-0.5840244935825467,0.39073762437328696,-0.0954885589890182,-0.6270286128856242,0.84617341728881,-0.8295481516979635,0.9566880743950605,0.6662092371843755,0.6240845830179751,0.6512177451513708,0.4389739455655217,0.16123513085767627,-0.1674329126253724,0.7575575956143439,0.4146863939240575,0.6983212693594396,-0.9358915747143328,-0.29282497940585017,-0.858943872153759,-0.35444347746670246,0.43887303164228797,0.5404294738546014,-0.49967018980532885,0.5921116252429783,-0.5150243868120015,-0.5940535399131477,-0.019342578947544098,0.19100759690627456,0.215514013543725,0.19722510408610106,0.4808348841033876,0.30748908780515194,-0.7044243984855711,-0.5078562069684267,0.13587077800184488,0.09363095927983522,0.9810637193731964,0.44129552599042654,0.7875199853442609,-0.9663234031759202,0.18733265716582537,-0.3493615509942174,-0.9378633042797446,-0.806140695232898,-0.525368494912982,-0.0003963117487728596,0.6212961953133345,0.6423208909109235,0.3168727741576731,0.596341460943222,0.3276852574199438,-0.5691104624420404,0.30582668725401163,-0.14222466526553035,-0.30257206223905087,-0.922299396712333,-0.8756017140112817,-0.5033506355248392,0.3797709010541439,-0.5074536185711622,-0.28190700290724635,-0.05817307671532035,-0.9426920311525464,-0.26772813173010945,0.748811790253967,-0.9386021355167031,-0.261887910310179,-0.6531051113270223,0.9059948190115392,-0.8358051287941635,-0.2517897547222674,-0.8291928633116186,0.8587328842841089,0.11750379716977477,0.21299399761483073,0.5590709247626364,0.7206465154886246,0.8715164340101182,0.5275387517176569,0.9239806341938674,-0.17151409713551402,0.5630727452225983,0.6456080754287541,0.37830634927377105,-0.7338018869049847,-0.4989117681980133,0.4558959030546248,-0.4751710928976536,-0.3151574321091175,0.23608063021674752,-0.1954768318682909,0.35806539142504334,-0.6052502770908177,-0.30018829787150025,-0.3679271787405014,-0.6030726875178516,-0.04941517673432827,-0.14991257758811116,0.6264545232988894,0.42365734465420246,0.681254202965647,-0.30205856589600444,-0.8480133255943656,0.5593649819493294,-0.5783759844489396,-0.7956937928684056,-0.8080778406001627,-0.3307418036274612,0.6998587157577276,0.806269065476954,0.5175748695619404,-0.4904842278920114,0.805010611191392,-0.1853464343585074,0.992162904702127,-0.4686822537332773,-0.973377259913832,-0.4146856665611267,-0.4702313859015703,0.9518601731397212,0.1231385632418096,-0.8977865814231336,0.9815711728297174,0.6524752946570516,-0.12806405778974295,-0.6645340244285762,0.7627601884305477,-0.7129905475303531,-0.9582755556330085,-0.39086850779131055,-0.08223367063328624,0.6277857744134963,-0.8888265276327729,0.21812240919098258,0.07630272023379803,-0.13962762895971537,-0.7669628700241446,-0.5621952065266669,-0.9927429254166782,-0.2170225977897644,-0.8558880486525595,0.9872367144562304,-0.07874076860025525,0.04789217561483383,-0.5653613382019103,-0.37185978703200817,-0.36878402484580874,0.4394302926957607,0.8142389007844031,0.3801941345445812,0.1703975577838719,0.5107871955260634,-0.7940305201336741,0.6953823422081769,-0.03215232025831938,0.9867695071734488,0.33711098739877343,-0.5412176735699177,0.7568515501916409,0.24024011380970478,-0.7846503243781626,0.5306252739392221,-0.5988269383087754,0.2708520395681262,0.2634812816977501,-0.9383566086180508,0.027534042950719595,0.8894545356743038,0.2854565316811204,0.896223786752671,0.725752298720181,0.312675716355443,-0.04161296645179391,-0.45126973325386643,0.8761053089983761,-0.7394978422671556,-0.7590733170509338,-0.814144934527576,-0.3674414143897593,-0.8032142948359251,-0.43752108700573444,-0.6352163478732109,0.24344969680532813,-0.8986810990609229,-0.6060484102927148,-0.6225814106874168,-0.035998506005853415,0.5967880804091692,0.7911484558135271,0.41419219272211194,0.36795397382229567,0.36630322551354766,0.8869664981029928,-0.5455955513752997,0.05661246087402105,0.18377381563186646,-0.16418309416621923,-0.6815188718028367,-0.5176226147450507,-0.6912952661514282,0.33478997088968754,-0.5925947376526892,-0.8820733446627855,0.7414492014795542,0.4006383386440575,-0.29778066370636225,-0.525387657340616,-0.5263409563340247,-0.25042965076863766,-0.786104270722717,-0.2150106607005,0.20046945428475738,0.9468534388579428,0.20556210353970528,-0.8576897201128304,0.3169932668097317,0.2549030710943043,-0.21547863213345408,0.5004494185559452,0.11241576308384538,0.5806880565360188,0.2837576777674258,-0.3878576341085136,0.022751282900571823,-0.8827719152905047,0.807325379922986,-0.2312201620079577,-0.18739053606987,-0.060242585837841034,-0.10300523322075605,-0.09710736060515046,0.708523575682193,-0.008846423588693142,-0.44629005063325167,0.7533296719193459,0.11667104251682758,-0.011609781067818403,0.32520502991974354,-0.28304873686283827,0.9103495865128934,-0.04136901907622814,0.34554463159292936,-0.732067693490535,-0.11267723515629768,0.4569216179661453,0.5018370668403804,-0.8122318596579134,-0.911552029196173,0.8210902134887874,0.05091976607218385,0.024908618070185184,-0.8631085380911827,0.4778636135160923,0.029293333180248737,0.596065292134881,-0.17750295251607895,0.12244063429534435,0.23769141361117363,0.34625059785321355,0.1906123198568821,0.2515519675798714,-0.5083347181789577,0.36834037117660046,0.4928970574401319,0.5689709191210568,-0.06419255025684834,0.7533508650958538,0.8078434159979224,-0.3032913305796683,-0.031503843143582344,-0.4985057320445776,-0.3618759009987116,-0.7608303995802999,-0.33988256799057126,-0.8460607980377972,0.9859907892532647,0.8967411969788373,-0.23006004141643643,0.44772623712196946,-0.5091040437109768,0.5489747156389058,0.33478884445503354,-0.14866833854466677,0.7668627528473735,-0.08953429432585835,-0.08043929003179073,0.6079371245577931,-0.12822630535811186,0.9905083365738392,-0.3681864985264838,0.050673291087150574,0.4184935875236988,-0.8620393425226212,0.4816142120398581,0.7556438348256052,0.6240038340911269,-0.5725432909093797,0.5423620687797666,0.760776034090668,-0.31785804592072964,0.45851826202124357,-0.24814380845054984,-0.6335433656349778,-0.8343847980722785,-0.49032349651679397,-0.00891153421252966,-0.21689063729718328,-0.9819066412746906,-0.5921201072633266,-0.7346018692478538,-0.3991425554268062,0.7384453075937927,0.7725760573521256,-0.9051333018578589,-0.5801296136341989,-0.3154448000714183,0.6200562408193946,-0.8987385709770024,0.4936279174871743,-0.14600104233250022,0.987201776355505,0.38899708446115255,0.3077781586907804,0.5678034494630992,0.5752051002345979,0.43891966063529253,0.43583538103848696,-0.307227301876992,-0.8096215636469424,0.16355709172785282,-0.9842939195223153,0.8949737227521837,-0.9610131736844778,0.8406108883209527,-0.4833565498702228,-0.82516661984846,-0.6742145651951432,0.37386382929980755,-0.02261589001864195,0.9328198814764619,-0.8359014689922333,0.35499788308516145,0.21726811164990067,0.8635314092971385,0.8540869052521884,0.2872467380948365,-0.9903088952414691,0.3169117462821305,-0.5452642841264606,0.5851904847659171,-0.6838925038464367,0.7952345558442175,-0.9902239111252129,-0.21130335750058293,-0.8889560280367732,0.31990986643359065,-0.25040184054523706,0.6312317815609276,0.9409868586808443,-0.5308718476444483,0.5005491501651704,0.9647710840217769,-0.12351835099980235,-0.16756047680974007,0.29426985094323754,-0.19249499356374145,0.37899109115824103,-0.689011056907475,0.17034459486603737,0.6852366728708148,-0.33493702858686447,0.8252658015117049,-0.6969438884407282,0.4242153661325574,0.45568846026435494,0.3636679807677865,0.042584740556776524,-0.942165442276746,0.5020025689154863,-0.7773441220633686,0.6439576856791973,0.6281533786095679,-0.25283881882205606,-0.6818370623514056,-0.4800083967857063,0.24314897786825895,0.1723523992113769,0.0886173932813108,0.5044685606844723,0.35019713500514627,0.7649063556455076,-0.8589914767071605,-0.8189368317835033,0.9452239293605089,0.6219673422165215,-0.8893788210116327,0.005320268217474222,0.286919251549989,0.6359365512616932,-0.6007684972137213,0.47934032743796706,-0.6889854026958346,0.44435930997133255,0.2078736126422882,-0.8785378374159336,-0.4020379027351737,-0.6739035891368985,0.2879955009557307,0.5706204706802964,0.7228957465849817,0.988709052093327,0.6486386228352785,0.24118831427767873,-0.22830729419365525,0.5783802159130573,-0.20125407120212913,0.7083798707462847,-0.7915942431427538,-0.08629971463233232,-0.018763385247439146,-0.72171496367082,0.17023333674296737,0.46240583481267095,0.501731472555548,0.16417813813313842,0.0800719722174108,0.11259014811366796,0.5779167762957513,-0.4507846045307815,0.2634473918005824,0.1946314643137157,0.047522345557808876,-0.8673437116667628,0.5160958291962743,-0.5300458143465221,0.8901228890754282,0.32302656257525086,0.3107693027704954,0.721843559294939,-0.2536546355113387,-0.6090318956412375,-0.8782370500266552,-0.8616269798949361,-0.6679999674670398,-0.17014068132266402,0.871553991921246,-0.03921458125114441,0.07712936401367188,-0.2731932238675654,0.9529386963695288,0.8008948373608291,0.22869562497362494,-0.8039744840934873,0.456882958766073,-0.1551335845142603,-0.4092775881290436,0.09395436476916075,0.7980610989034176,-0.848122897092253,-0.21913379058241844,-0.0441375058144331,0.1628605853766203,-0.08443786622956395,0.6459194226190448,-0.40115970140323043,-0.802933145314455,0.6847991840913892,-0.8511940161697567,0.3360748831182718,0.05422253301367164,0.01670150924474001,0.8330478370189667,-0.043293763883411884,0.879134124610573,0.3632056890055537,0.10058194864541292,-0.5822948729619384,0.9933486059308052,-0.5453818826936185,0.09846430039033294,-0.28373984759673476,-0.7073579328134656,-0.07863506488502026,-0.6051084799692035,0.3931170948781073,-0.13927489891648293,0.4959419136866927,-0.9511647964827716,-0.914539304561913,0.23412039270624518,0.5460103694349527,0.11569063877686858,0.9661905989050865,0.6360851898789406,0.10717275645583868,0.07922424841672182,0.4002516819164157,0.092095036059618,-0.2955456399358809,-0.25418946240097284,-0.5614138888195157,-0.6529939770698547,0.7841256530955434,0.23266959795728326,-0.7593833529390395,0.5704796710051596,0.49208721704781055,0.5306981350295246,-0.3948620450682938,-0.19455785490572453,0.18573250388726592,-0.5816435758024454,-0.5320850922726095,0.829037643969059,0.5989273586310446,-0.407478136010468,0.11014377512037754,-0.541207198984921,0.794207367580384,0.6835277224890888,-0.7519579301588237,-0.5366103034466505,-0.8784394012764096,0.5941833597607911,0.20004152739420533,-0.5002690209075809,-0.1824142998084426,0.13434255635365844,-0.5316200461238623,0.41874919505789876,0.9582198588177562,0.18678387673571706,-0.37426821794360876,0.2805138239637017,0.0023817461915314198,0.29978745384141803,-0.15491413557901978,-0.7260821620002389,0.8918215529993176,-0.002960384823381901,0.48645171895623207,-0.6957112522795796,-0.2619144609197974,0.2987020704895258,0.3854683372192085,0.9229293912649155,0.6986130434088409,0.1697025545872748,-0.6843257411383092,-0.5675538210198283,0.06227998621761799,0.7555903540924191,0.7553361672908068,0.06923663802444935,0.8950160783715546,-0.4339088713750243,-0.21895168256014585,-0.6354282447136939,0.8060885234735906,0.013882881496101618,-0.06654121167957783,-0.3897731597535312,0.08841354586184025,0.724302708171308,0.16285047680139542,0.7407063296996057,0.9557506931014359,-0.11644285684451461,0.143784508574754,-0.13238453259691596,0.5564547800458968,-0.746379217132926,0.5008058971725404,0.4713530456647277,-0.6376382922753692,-0.5958183030597866,0.9653979693539441,-0.1868551205843687,-0.3589886478148401,-0.04651507129892707,0.7542554447427392,-0.5761228739283979,-0.27241072431206703,0.9547270778566599,0.913514472078532,-0.1264598984271288,0.8539608977735043,-0.6140960031189024,0.8053622650913894,0.6794899911619723,-0.9122656276449561,0.8222720134072006,0.011339421384036541,0.3480373811908066,-0.4293162147514522,0.921324897557497,0.41360065853223205,-0.8727563456632197,-0.5697524542920291,0.4371844935230911,-0.8230942143127322,0.8652965538203716,-0.7252245410345495,-0.14690180588513613,-0.10435512848198414,0.9428241569548845,-0.3074719477444887,-0.6153888832777739,0.29197132820263505,0.09235789999365807,0.8417418678291142,0.41926705185323954,-0.9618719820864499,-0.6463217530399561,0.4317366983741522,0.741703363135457,0.5034742569550872,0.8183415927924216,0.00496816448867321,-0.8929059389047325,-0.19087965367361903,-0.07127549918368459,0.03784517338499427,-0.7812182740308344,0.2142688506282866,0.6649043918587267,-0.32333421148359776,-0.7203951240517199,-0.7073955498635769,0.9526410307735205,0.4275101604871452,0.14465325884521008,0.5690056877210736,-0.40494964830577374,-0.5823608320206404,0.9732065126299858,-0.9482689630240202,-0.885935568716377,-0.7140236929990351,0.4619094650261104,0.8826638869941235,0.23859178088605404,-0.5017134631052613,0.43953302688896656,-0.4889282654039562,-0.20854965643957257,0.45298213930800557,0.8374056341126561,-0.39271267130970955,-0.5012569930404425,0.6249553416855633,-0.15550838643684983,0.5411861538887024,-0.33785878121852875,-0.1052140430547297,0.34790236968547106,-0.713101991917938,0.7106515080668032,0.49024414317682385,-0.98225705511868,-0.4516745428554714,0.3905199174769223,-0.6511510936543345,-0.6091380584985018,-0.06139843538403511,0.6229789359495044,0.13672225922346115,-0.877053705509752,-0.28235141979530454,0.1420425921678543,0.4098715092986822,-0.14771260740235448,0.457894669380039,0.6336057442240417,0.38182002818211913,-0.8359848689287901,0.21196514694020152,-0.2584604392759502,0.1475608148612082,-0.44694643933326006,-0.7682133936323225,-0.6896647941321135,0.3237110082991421,0.9257356636226177,-0.911821770016104,0.5735030262731016,0.8278792067430913,-0.5441260128282011,-0.5834198934026062,0.37043888913467526,-0.7920147157274187,0.3934619943611324,0.5669265980832279,0.8618839923292398,0.006412001326680183,-0.9341430077329278,-0.9630392380058765,-0.8179772580042481,0.46583241363987327,0.6927073216065764,0.5918896556831896,-0.9379382003098726,-0.5148657239042222,0.3510836008936167,-0.779613905120641,-0.46680619195103645,0.24410837329924107,-0.7135041756555438,-0.6478965464048088,0.5221837698481977,-0.3095942698419094,-0.29728883411735296,-0.8461861284449697,-0.9940748042427003,0.2574241887778044,0.14922414161264896,-0.05526376375928521,-0.8383354116231203,0.005781612824648619,-0.5975510464049876,0.980740861967206,0.8444951670244336,0.595720237120986,0.7304609082639217,-0.45491842133924365,0.3800833774730563,0.1385956946760416,0.307260621804744,-0.6049389899708331,-0.17442644853144884,0.5829751063138247,0.7794153848662972,0.02976813819259405,-0.7569388346746564,0.5918532237410545,-0.029060394503176212,0.7701207064092159,-0.7460982208140194,0.3312082099728286,0.12952219229191542,-0.1982237845659256,0.6878995005972683,0.5335381519980729,-0.04618480149656534,0.8710877462290227,-0.6720584132708609,-0.40449301851913333,-0.8373616780154407,0.7320512719452381,0.16686398163437843,-0.3841504962183535,-0.5094589376822114,0.5464863968081772,0.9461076869629323,0.18773541180416942,0.4270852175541222,-0.4963072454556823,0.14211684139445424,-0.700590718537569,-0.9620220330543816,-0.6966688404791057,-0.8343349494971335,0.34807143593207,0.9445929527282715,0.08267443813383579,-0.9712799079716206,0.4125032904557884,0.28801659727469087,-0.29362108930945396,-0.7902346574701369,0.15686957724392414,0.9471212029457092,-0.826178717892617,0.2663674056529999,-0.10042731650173664,-0.8299531154334545,-0.598858320619911,0.7044747294858098,0.5295638162642717,0.2874285359866917,-0.5201509366743267,-0.12702117953449488,-0.4716800758615136,0.4185790540650487,-0.43236301746219397,-0.1731895711272955,0.47991393180564046,0.8305618506856263,-0.9786598938517272,0.29649485601112247,0.061095536686480045,0.3005217704921961,0.963839768897742,-0.987808988429606,-0.9332056324928999,0.5965200904756784,-0.45654449984431267,-0.6723872637376189,0.8361849077045918,0.8881403123959899,-0.018529518507421017,0.27658607764169574,-0.7451031636446714,-0.5462966207414865,-0.4631035076454282,0.49608239717781544,-0.46833090391010046,0.7540067215450108,0.9438553089275956,-0.6950012068264186,-0.2839605207554996,-0.5787811130285263,0.22667049197480083,0.9543070527724922,-0.2995993332006037,0.30675823614001274,0.4836369133554399,0.4806341454386711,0.9113269592635334,-0.8896819381043315,0.658626894466579,-0.7524125049822032,-0.11440202314406633,-0.02965480973944068,0.32008401677012444,0.8512825630605221,-0.7835256243124604,-0.888917772565037,-0.802239244338125,0.8966628825291991,-0.6772066857665777,-0.7545731458812952,0.39033024944365025,0.9593270695768297,-0.17013316741213202,-0.8317753840237856,0.09836648218333721,-0.8264360041357577,-0.857116081751883,0.15513227740302682,-0.7529716845601797,-0.6660498701967299,-0.2147510927170515,0.828696227632463,-0.43726774072274566,-0.4784731916151941,0.013516549952328205,-0.4803534229286015,-0.7910519796423614,-0.15819536754861474,0.770970432087779,0.6071802135556936,0.3531143395230174,0.20518691977486014,0.8201033822260797,-0.4495702553540468,-0.10257872613146901,0.6206543678417802,0.5952778388746083,0.9660092345438898,-0.06670768931508064,0.10410645417869091,0.0030095484107732773,-0.8865329069085419,0.7314696391113102,-0.5587475653737783,0.4359293580055237,0.35440396750345826,0.6585495094768703,0.24545569391921163,-0.37217441434040666,0.87504270253703,-0.5214637322351336,0.21464907145127654,-0.12404319038614631,-0.9758203644305468,-0.7633292865939438,0.6067909151315689,-0.46624648477882147,0.40209078090265393,-0.2439949414692819,-0.6354256239719689,0.015663106460124254,0.1381651172414422,-0.2805760786868632,0.8568880138918757,0.7393030487000942,0.9660020987503231,0.6926796166226268,-0.2618027478456497,-0.5388797605410218,-0.07007714919745922,-0.8918372518382967,0.39330993918702006,0.7317395182326436,0.2654569470323622,-0.9353086780756712,0.956671271007508,0.30253605311736465,0.6312699969857931,0.057774005457758904,0.029170040506869555,-0.07926452299579978,-0.2933598682284355,0.48556007631123066,-0.8755759452469647,-0.4982202867977321,-0.6862893137149513,-0.5577412359416485,-0.960148602258414,0.3024992891587317,-0.09216307569295168,0.4368345527909696,0.552433944772929,-0.3186835339292884,-0.5535030015744269,-0.5171430516056716,-0.7160308808088303,-0.34656247263774276,0.05441553797572851,0.32180530950427055,0.22762550320476294,-0.6343461638316512,-0.4798628017306328,0.9272058089263737,0.6443316978402436,-0.6940713590011001,0.00959923630580306,0.1008741962723434,-0.19944484112784266,-0.2508708802051842,0.1862976816482842,0.33569097705185413,-0.5009252792224288,-0.36663540452718735,-0.7795666726306081,0.4998960383236408,-0.7665074560791254,0.38368868362158537,-0.876751372590661,0.8285718681290746,-0.6007062960416079,0.0619799941778183,0.06792668253183365,-0.9543516328558326,0.09972124174237251,-0.8981694588437676,-0.4528099694289267,-0.26848662784323096,-0.1219069305807352,0.2589449677616358,0.39399041747674346,0.8793806633912027,-0.894501973874867,0.767031766474247,-0.25884065264835954,-0.889507444575429,-0.9576975218951702,-0.7530348706059158,0.9749922705814242,0.36983597837388515,-0.4881875878199935,0.9090127646923065,-0.9157634633593261,-0.480434394441545,0.46340299490839243,0.8864770461805165,0.929001706186682,-0.1898487783037126,-0.8097556508146226,0.648692982736975,0.033022039104253054,-0.1501725255511701,-0.7494263644330204,-0.7532605621963739,0.6834714468568563,-0.11103178700432181,-0.4462094656191766,0.8852146961726248,-0.20339382905513048,-0.3797810743562877,0.670927990693599,-0.4054288547486067,0.2580033978447318,-0.10058411629870534,-0.6930970042012632,-0.8199301743879914,0.6130616455338895,0.33688723761588335,0.04144441010430455,0.3353384295478463,0.5779399075545371,-0.20208410220220685,0.4600524064153433,0.49889256432652473,-0.4575949343852699,-0.3274644850753248,0.8595345453359187,0.8617314286530018,-0.7447656486183405,0.1242783940397203,-0.9025983638130128,-0.03842652775347233,0.7614111974835396,0.35106784338131547,-0.8128044339828193,-0.6914188107475638,-0.13117385283112526,-0.43019164027646184,-0.9131289878860116,0.5038023074157536,-0.5999770220369101,-0.8151393020525575,0.5742762158624828,-0.4491112348623574,0.8779749847017229,-0.1944811986759305,-0.45482160802930593,-0.8234688057564199,-0.6552492091432214,0.11571221891790628,0.3327203821390867,-0.3040107246488333,0.25441529229283333,-0.9397711735218763,0.9277915712445974,0.5804860377684236,-0.9339567967690527,0.7948142937384546,-0.3440827555023134,0.9136230987496674,-0.7318227719515562,-0.6441694968380034,-0.6536841532215476,0.13331754971295595,-0.520871318411082,-0.34334986563771963,0.6750115440227091,0.9363729325123131,0.2121492624282837,-0.2178587089292705,-0.44353259075433016,-0.0631425497122109,-0.2707150038331747,-0.7952332277782261,-0.6260434184223413,-0.7910990109667182,0.09618683019652963,0.7174489963799715,-0.14962176326662302,-0.6994672599248588,0.9030035762116313,-0.10067389160394669,-0.33833848126232624,-0.12459031399339437,0.56192043190822,-0.7998980032280087,0.42368233017623425,0.9662798796780407,0.664192920550704,0.9463879209943116,0.10940409265458584,0.04347540345042944,-0.17621894367039204,0.8962381747551262,0.7470446294173598,-0.6131692328490317,-0.7402347987517715,0.5151653224602342,-0.0047639720141887665,0.41082658572122455,0.2636646097525954,-0.237561228685081,-0.842442593537271,0.2283504125662148,0.8275134135037661,-0.4332409924827516,0.08689366094768047,-0.7400994901545346,-0.4079150650650263,-0.582457406911999,0.10958844795823097,-0.14950007293373346,0.6330478428862989,0.5595485968515277,-0.6405264083296061,-0.6987197860144079,-0.022589039523154497,0.7903867708519101,0.5640815161168575,-0.6541096172295511,0.06573627376928926,-0.5782054760493338,-0.26396344183012843,0.9325766609981656,-0.21610879572108388,0.5577315585687757,-0.7515187589451671,0.9384738611988723,0.38322801422327757,-0.2715006675571203,-0.7827784237451851,0.30217719729989767,0.933863090351224,0.3258891268633306,-0.47372286627069116,-0.9655561842955649,-0.6010121628642082,0.7091192952357233,-0.4225301956757903,-0.8495070831850171,-0.17537647299468517,0.7176307262852788,-0.37097071949392557,-0.08744569402188063,0.7623058739118278,-0.8806977206841111,0.7620383058674634,0.6728284177370369,-0.9240568750537932,0.5008441796526313,-0.7635674984194338,0.02567639062181115,0.42003728775307536,0.19729896821081638,-0.011481496039777994,-0.928423129953444,-0.7990442770533264,0.6453706882894039,0.26905403891578317,-0.35869336454197764,0.990412310231477,0.919485948048532,-0.6946799331344664,-0.16019093245267868,-0.7246298720128834,0.41477755131199956,-0.07548301946371794,0.8109950018115342,-0.42757719149813056,-0.19498966913670301,0.8555825734511018,0.2826175787486136,-0.3280963972210884,0.9251508959569037,-0.6040617604739964,-0.20901255356147885,-0.15988548751920462,-0.01154217030853033,0.04219539323821664,-0.8625559899955988,-0.863994593732059,-0.9847870953381062,-0.3516917321830988,0.6705240989103913,-0.12325452780351043,0.656398568302393,0.12106719007715583,-0.854925915133208,-0.5225556003861129,0.9986569806933403,0.06608223123475909,0.3987575760111213,0.808095395565033,-0.33423137199133635,-0.4131200537085533,-0.06230233144015074,-0.3050938849337399,-0.36334662698209286,0.31394021725282073,0.17184530198574066,-0.29918319871649146,-0.2280910974368453,0.5617459053173661,0.5510404012165964,0.643787294626236,-0.4885681006126106,0.8148602973669767,-0.3872956377454102,-0.4797830334864557,-0.2572196922264993,-0.3965095467865467,0.7351501015946269,0.0831028907559812,-0.5302926348522305,0.9570879372768104,-0.7692085821181536,-0.9681439828127623,0.9186529433354735,-0.3891911939717829,-0.5671494752168655,-0.25341241620481014,0.6363461278378963,-0.108510862570256,-0.2707752618007362,0.5156491668894887,-0.9364132662303746,0.7275198106653988,-0.4201884907670319,-0.21043638419359922,-0.4141733874566853,0.21806418057531118,0.6873853523284197,-0.41707859840244055,-0.15205221623182297,0.5733044445514679,-0.7888124482706189,0.27453670371323824,0.6288205380551517,-0.9682626770809293,-0.14475605497136712,-0.09085541404783726,-0.05028580129146576,0.33589403284713626,-0.6537898937240243,-0.5445915865711868,-0.23506014328449965,-0.8379768119193614,0.3788123596459627,0.0007483712397515774,0.920959341339767,0.46907213097438216,-0.3340843031182885,-0.5625367099419236,0.0006854557432234287,0.15408262331038713,0.3902504947036505,-0.9717433624900877,-0.426077579613775,0.7144648777320981,-0.21385109517723322,0.35889371670782566,0.27430574130266905,-0.9812432583421469,0.5007236283272505,0.957819789648056,-0.20381969446316361,0.8727554678916931,0.12742192903533578,-0.154565273784101,0.4309291481040418,0.896643502637744,-0.4158251076005399,0.9767868188209832,0.5799679919146001,0.9179690582677722,0.590106007643044,-0.6092223958112299,0.17500809952616692,0.545667780097574,0.5625073565170169,-0.6064576781354845,0.47984781535342336,0.46848352951928973,-0.809948074631393,-0.6211409047245979,0.9067647233605385,-0.6594332815147936,0.36661896854639053,-0.14690518006682396,-0.7671611825935543,0.04853222006931901,0.7984335445798934,0.3578088986687362,-0.3408604417927563,0.8088171472772956,-0.9204989722929895,0.8188529452309012,-0.06137577258050442,0.7374022980220616,-0.3609823980368674,0.9334228388033807,-0.7293776953592896,-0.4173472700640559,-0.5105392360128462,-0.9722585799172521,-0.775046025402844,0.6728476821444929,-0.7909071766771376,-0.18674294045194983,-0.5835018656216562,-0.5404831897467375,0.9400865091010928,0.4481546632014215,0.6187311531975865,-0.7913702321238816,0.42992837028577924,0.060973948799073696,0.11998241348192096,-0.2307260585948825,-0.8656309940852225,0.8243383867666125,0.8983946410007775,0.4030787758529186,-0.9265793692320585,-0.970107008703053,-0.9550846759229898,0.25077863363549113,-0.8962899367325008,-0.5557581894099712,-0.1946632880717516,0.32084024185314775,0.40161211090162396,-0.6957998559810221,0.9449750194326043,0.3250138354487717,0.4840589528903365,-0.30796244367957115,0.8155828374437988,-0.8405977850779891,-0.33984140306711197,0.40427127480506897,0.9853296903893352,-0.014911131002008915,0.4071875191293657,0.5572940967977047,0.6309915916062891,0.7068503960035741,0.5044379681348801,-0.3090135781094432,-0.4061771989800036,-0.776352530810982,0.5277575221844018,-0.28984811063855886,0.5703014214523137,0.16473981272429228,0.9099488346837461,0.64245571102947,0.5251089343801141,0.7357201757840812,0.7406151094473898,-0.4398659789003432,0.08840726222842932,0.3155779647640884,-0.6891121412627399,0.616232150234282,0.8917280142195523,-0.43662037141621113,-0.5569404973648489,0.473073061555624,-0.2739791083149612,0.2628383133560419,0.25273200031369925,-0.5416608224622905,0.6472277399152517,0.9222802668809891,-0.26866220543161035,0.14444312546402216,0.10864085471257567,-0.15411448758095503,0.6682949652895331,-0.9732652441598475,0.7743852576240897,-0.9446350261569023,-0.5361641184426844,-0.4567597755230963,0.18721518572419882,-0.0028607863932847977,0.7533137304708362,-0.1642029145732522,-0.3415679559111595,0.13547394098713994,-0.06400695443153381,0.8850023453123868,-0.30066248308867216,-0.7979332520626485,-0.033269309904426336,-0.1536108055151999,-0.9460023590363562,0.9696289147250354,0.15704668359830976,-0.34253507014364004,0.43908090656623244,0.8218362601473927,0.5379034886136651,-0.49822359904646873,0.91849519405514,0.8806281075812876,-0.21290272707119584,0.5786387589760125,0.36433996725827456,-0.592560654040426,0.25256254337728024,0.8552344255149364,0.7715828977525234,0.7581648109480739,-0.9947217702865601,0.28434330178424716,0.20111958216875792,-0.28033750550821424,0.7517484212294221,-0.8220302509143949,-0.32520133117213845,-0.09356132848188281,0.39156675431877375,-0.7177342036738992,-0.5514070484787226,0.06647661468014121,0.024858819786459208,0.09528251038864255,0.520043688826263,0.030664396937936544,0.8083326006308198,-0.8849664437584579,0.618675041012466,0.8714652550406754,-0.502053517382592,0.4507893403060734,-0.38272311585024,0.9362082504667342,0.30868782848119736,0.680020812433213,0.8825482851825655,-0.5104020470753312,-0.14826291287317872,-0.035435246769338846,-0.31430137855932117,-0.2054795939475298,-0.5586528466083109,0.9306909618899226,-0.6945182005874813,0.39423307217657566,-0.4620325113646686,0.07352800481021404,-0.3241254682652652,0.040493511129170656,0.15934120398014784,-0.3607119405642152,0.33364304061979055,0.583855114877224,0.7176638054661453,0.07038909522816539,0.15685815177857876,0.3636770071461797,-0.753268607892096,-0.6511933482252061,-0.9538093889132142,0.04262943845242262,-0.7954023126512766,0.8373609897680581,-0.7569606588222086,0.4826299427077174,0.9586000414565206,0.21010613813996315,0.3384204460307956,-0.4729562336578965,0.36678743176162243,0.8902706769295037,0.725865803193301,0.41482026409357786,-0.5112945334985852,-0.8347099767997861,0.5525780883617699,-0.48493488878011703,0.32544914446771145,0.16446721367537975,-0.36485677026212215,0.35572566371411085,0.11313709942623973,0.8699607998132706,-0.5417428640648723,0.652067428920418,-0.40997691452503204,0.91387571208179,0.43460447806864977,0.6095403009094298,-0.33274089079350233,0.1376323034055531,0.5369622311554849,-0.7515604980289936,0.5375357586890459,-0.6840697512961924,0.8901690621860325,0.9601291241124272,0.05232099210843444,-0.7673093797639012,0.06797506799921393,0.5807305062189698,-0.34889755258336663,-0.8065076894126832,0.2230462753213942,-0.03632782679051161,-0.2513268981128931,0.21778754983097315,0.03093076217919588,-0.28445540787652135,-0.11423215782269835,0.7919250708073378,-0.7627224759198725,-0.7493853941559792,-0.7707825819961727,-0.5264581274241209,-0.25918584363535047,0.5584529018960893,0.8553237267769873,0.3867386798374355,-0.11014482704922557,-0.2659506746567786,-0.4328242065384984,0.8111314433626831,0.8528110357001424,-0.639894915279001,0.34574615443125367,0.3888152656145394,0.9135350747965276,-0.9858496328815818,-0.23181858006864786,-0.6351282158866525,-0.5709374253638089,-0.005769567098468542,0.08165256213396788,0.0002694125287234783,0.2259613834321499,-0.5345281506888568,0.30013000033795834,0.32439213106408715,-0.6304347161203623,0.6932888668961823,0.8661179314367473,0.8610470541752875,-0.5755998021923006,0.10253942105919123,-0.17910508159548044,0.6299771661870182,-0.4075430063530803,-0.7081775614060462,0.265265641734004,0.8867749483324587,0.40842392994090915,-0.052825409919023514,0.5507835224270821,-0.0717346053570509,0.5135739129036665,0.20174809684976935,0.37930725095793605,-0.9527408820576966,-0.431133056525141,-0.17862910637632012,-0.7147151264362037,0.5110066188499331,0.28429576428607106,-0.07217636238783598,0.670388609636575,-0.6101010264828801,0.8607593588531017,0.6265908074565232,-0.9549091807566583,-0.660453415941447,0.0007268744520843029,0.20014651911333203,0.7873136731795967,-0.8460200107656419,0.4142681257799268,0.5991620980203152,-0.45473207952454686,-0.6467173621058464,0.625086416490376,-0.27201887452974916,-0.6254872065037489,0.22097556758672,0.3468305435962975,0.13526843255385756,0.36450718017295003,-0.04769239528104663,-0.7518040691502392,-0.9391767787747085,0.22937017492949963,-0.42768137250095606,0.668138634879142,-0.9580366527661681,-0.36168928956612945,0.6073434427380562,-0.4587025800719857,0.2675723028369248,0.17094568023458123,0.6926434161141515,0.7400817512534559,-0.8554018829017878,0.12718183314427733,0.5316440416499972,0.3009037086740136,0.8573381002061069,-0.9474651236087084,0.6836491036228836,-0.4081496596336365,0.14860429195687175,-0.1201538247987628,0.21354060992598534,-0.6054486059583724,-0.8540757806040347,-0.46140164975076914,-0.5870386278256774,-0.25890531251206994,0.0006178375333547592,0.8786653834395111,-0.8530905479565263,-0.20166559517383575,0.4189947829581797,-0.5880688549950719,0.28709740471094847,-0.4065158753655851,-0.7805848051793873,0.6155062937177718,0.5180318779312074,-0.9094839910976589,0.847605244256556,0.03568717231974006,0.9992976048961282,0.4431694499216974,0.6242064782418311,0.08384172944352031,0.9143823571503162,0.714607990346849,0.5660745543427765,0.7598375715315342,-0.5376804633997381,0.6729528373107314,-0.4785376414656639,-0.9425944066606462,-0.3107311991043389,-0.873852202668786,0.46641082782298326,0.21200692327693105,-0.005571617279201746,0.9894011998549104,-0.46939731016755104,0.024969452060759068,-0.8773830933496356,0.8237742492929101,-0.7978056613355875,0.2361110895872116,-0.882816159632057,0.1662820791825652,-0.30994059098884463,-0.8268288318067789,-0.2594867399893701,-0.2761513334698975,0.862114415038377,-0.9273943547159433,0.31406499771401286,-0.34502397989854217,0.8978437590412796,-0.17888028174638748,-0.20996654173359275,0.6804076614789665,-0.28249842021614313,0.008167293388396502,0.13487258460372686,0.9127050098031759,-0.582754485309124,0.9251459133811295,-0.47024457436054945,0.2579918773844838,-0.03606547322124243,0.8355388115160167,0.7748934533447027,-0.49777370784431696,0.19520918931812048,-0.24133124155923724,0.030905540566891432,0.5748957470059395,-0.9563739863224328,0.10002448968589306,0.8908241013996303,-0.1727127213962376,-0.5248821559362113,0.9190402035601437,-0.558544356841594,-0.7218836261890829,-0.3995481920428574,-0.4354842584580183,0.044260348193347454,0.057632334530353546,-0.28549146745353937,-0.8669891287572682,-0.9199743056669831,0.06674448493868113,0.095390560105443,-0.10889319516718388,-0.2665214133448899,-0.48279033694416285,0.13504741014912724,0.9334175791591406,-0.4430576553568244,-0.7316039856523275,0.5189136718399823,-0.06418441934511065,-0.6999471564777195,0.04660590272396803,0.8144063288345933,-0.7613219204358757,-0.9706688914448023,-0.14444439858198166,0.9451260678470135,-0.6163416979834437,0.21171597158536315,0.38557395758107305,-0.7429492361843586,-0.1830524723045528,-0.7046040897257626,0.8890931964851916,0.7946631577797234,0.7233859365805984,0.9067071313038468,0.29048902448266745,0.5031555113382638,0.9997414271347225,0.15469085471704602,0.21338140266016126,-0.9900230285711586,0.28824577014893293,-0.185728392098099,0.1631431826390326,0.025334336329251528,-0.06198289059102535,-0.12148459162563086,-0.7430563848465681,-0.46825998835265636,0.34332273760810494,0.7707292051054537,0.612192892935127,0.9292676146142185,0.5849229977466166,-0.21820235345512629,0.7154609928838909,-0.6769571802578866,-0.5745278219692409,0.5321180080063641,-0.004430670756846666,0.8830258417874575,0.8239237307570875,0.7516140602529049,-0.5257203793153167,0.6164376055821776,0.9936325587332249,-0.6210442539304495,-0.7647708784788847,0.09499963046982884,-0.8820831412449479,0.8135492634028196,-0.8672792916186154,-0.18524241214618087,0.6038221796043217,0.8177928300574422,-0.6014740560203791,0.3417022810317576,0.12365470640361309,-0.8140294728800654,0.5650232047773898,-0.23932827869430184,0.3071273132227361,0.7800286007113755,-0.3185281055048108,0.7977254134602845,-0.2873402121476829,0.3637295044027269,-0.2584123187698424,-0.11362794879823923,-0.5780924689024687,-0.8340585832484066,0.8457719837315381,0.5813378682360053,0.12488953117281199,-0.20554002188146114,0.664552859030664,-0.8904344984330237,-0.018808084540069103,-0.034460210241377354,-0.4267913866788149,-0.676831282209605,-0.9075977620668709,-0.008588173892349005,-0.06580280791968107,-0.21746602142229676,-0.768076513428241,-0.32350786961615086,-0.17905724048614502,0.014891674742102623,-0.3668733285740018,-0.8977191857993603,0.2814753628335893,-0.14316418580710888,0.35643200343474746,-0.4852686650119722,0.6487078727222979,0.7701918464154005,0.49475532909855247,-0.14033954124897718,0.34615335473790765,0.6942727584391832,0.5224245619028807,-0.9926717709749937,0.13600686797872186,-0.5798155185766518,0.3632660345174372,0.3837966974824667,-0.3468565712682903,0.7428672141395509,-0.3123882790096104,-0.11279319925233722,0.11316571896895766,0.4741418012417853,-0.25998418079689145,0.49966848315671086,-0.5070130098611116,0.06035233289003372,0.16500783246010542,0.9135466213338077,0.8672751998528838,0.5155134880915284,-0.6136391665786505,0.5459486590698361,0.5173071306198835,0.5209435308352113,-0.9956204574555159,0.785295533016324,-0.5304253026843071,-0.09271963406354189,-0.6456013084389269,0.0351281906478107,-0.9451683443039656,-0.18753373576328158,0.09862720593810081,0.39166919561102986,0.9169739144854248,0.6625444944947958,-0.6021640719845891,-0.872752146795392,-0.8645669440738857,-0.42502208705991507,-0.5766264460980892,-0.7730462932959199,0.049034608993679285,0.8366067004390061,-0.9427961288020015,-0.47490099910646677,0.8714168108999729,-0.0441944869235158,-0.17309419065713882,-0.01823044428601861,0.5765833011828363,-0.6147609776817262,-0.9444841765798628,0.9457717379555106,0.9714908879250288,0.07497706171125174,0.8699741750024259,0.4938082187436521,-0.2041986589320004,-0.4144742204807699,-0.574940184596926,-0.6376302344724536,-0.17003438109532,-0.9876932520419359,0.6767851789481938,0.8765808660537004,0.6397574529983103,0.45926859276369214,-0.5372913461178541,-0.6968983490951359,0.012730332557111979,-0.066983284894377,0.24668731540441513,0.11477755568921566,-0.47251602448523045,-0.08992103906348348,0.9878512592986226,0.40756332594901323,-0.44898828072473407,-0.22376447124406695,0.43488833541050553,-0.9517197259701788,0.811358327511698,-0.1286405581049621,0.232940630055964,-0.9353664699010551,-0.4689937746152282,0.8404086474329233,-0.7430366645567119,-0.1831967164762318,0.18432685360312462,0.5725710792466998,0.4593947259709239,-0.4641444240696728,-0.17460173973813653,-0.5317536550574005,-0.6193105955608189,-0.8360695405863225,-0.9624419594183564,0.3146864022128284,0.9994231378659606,0.19195085624232888,0.2348990086466074,0.987618072424084,0.956725865136832,0.002343623898923397,0.039186050184071064,-0.5849767155013978,0.49763243505731225,-0.8376313191838562,-0.32338936999440193,0.9208987141028047,-0.9019402344711125,0.16276213619858027,-0.940743500366807,0.7255152999423444,-0.982406206894666,0.11503604613244534,0.6543676764704287,-0.7809505136683583,-0.24337996868416667,-0.9388195294886827,0.845900397747755,-0.8016015677712858,0.693633877672255,0.8165702298283577,-0.986891076900065,-0.12360933469608426,0.26810316275805235,-0.5316518214531243,-0.8867698921822011,-0.7007004767656326,0.8114796681329608,-0.9813262927345932,0.1701266006566584,0.6245823730714619,-0.19484506454318762,-0.901196091901511,-0.9056356204673648,0.7992231422103941,0.5802617659792304,-0.6664687795564532,0.9566082265228033,0.26993772061541677,0.4879735307767987,-0.9995320690795779,-0.7088121641427279,-0.9398052524775267,0.9216617252677679,0.2318160911090672,0.865186199080199,0.6321211126632988,0.5738050364889205,0.9358515930362046,0.991050295997411,0.3039287691935897,0.8196290023624897,0.7823770176619291,-0.6005705264396966,0.035604717675596476,-0.908981810323894,-0.32283866265788674,-0.9735038327053189,0.515990698710084,-0.8358735954388976,-0.3403841033577919,0.19339992571622133,0.8607518784701824,-0.3065972086042166,-0.29768125992268324,-0.07066355040296912,0.8504110998474061,-0.6589715019799769,0.24528914550319314,-0.35746413888409734,-0.8176962723955512,-0.1993222301825881,-0.09043426439166069,0.8190948851406574,0.6418136432766914,-0.5375620848499238,0.041486600413918495,-0.26332043297588825,-0.12455449951812625,-0.9474416254088283,-0.8681438784115016,0.7966404566541314,-0.07075320649892092,0.4210394127294421,-0.9823420303873718,-0.31639187783002853,0.3417513081803918,0.971615076996386,0.2919886433519423,-0.09783021314069629,-0.21262594731524587,0.01711947051808238,0.7256770906969905,0.419714976567775,0.5046670292504132,0.7674078620038927,-0.7702283207327127,-0.23448793264105916,0.4678192245773971,-0.7077917135320604,-0.8451385800726712,0.7169360904954374,-0.3582458798773587,-0.024942643474787474,-0.6911634793505073,0.289359618909657,-0.9427563711069524,-0.990846733096987,-0.9707553433254361,0.955926536116749,-0.7203880129382014,-0.12185047380626202,0.295528382062912,-0.4284195378422737,-0.7808186146430671,0.06597665790468454,-0.21187306800857186,0.6965181394480169,-0.2553157592192292,-0.826910472009331,-0.531966301612556,-0.5177972917445004,0.9177339510060847,-0.29139871010556817,-0.9047872121445835,-0.526437543798238,-0.4643800430931151,-0.3383557265624404,0.6172760454937816,0.26561151072382927,-0.19461346231400967,-0.7198470230214298,-0.10115951113402843,-0.05813692416995764,0.7519001667387784,-0.908645345363766,0.5296568186022341,0.9671831498853862,-0.18327699787914753,0.37300880532711744,-0.06335151521489024,-0.19646781589835882,0.6292282254435122,-0.016073564998805523,-0.7774171703495085,0.28494732175022364,0.7187025020830333,0.5087956809438765,0.0346278278157115,-0.9181655780412257,0.045207150280475616,-0.34015979897230864,0.5549866687506437,0.33184420177713037,0.13362631667405367,0.3571004359982908,-0.987783151678741,0.6811612760648131,0.5207752799615264,0.25915173906832933,-0.04364153603091836,-0.24059617519378662,-0.8763691354542971,0.6478065964765847,-0.974006216507405,0.4496020576916635,-0.2195832864381373,0.07285008113831282,0.6011950895190239,0.7549333991482854,-0.17450485611334443,-0.39963490376248956,0.3602163544856012,0.6433358867652714,-0.32686949288472533,0.9106587190181017,-0.3366148956120014,0.0984302475117147,-0.559140816796571,0.3177876900881529,-0.5587588967755437,0.9111321424134076,-0.049643820617347956,-0.3124359897337854,-0.687029558699578,-0.5179831646382809,-0.979240819811821,0.3432450285181403,0.6557924379594624,0.6809764667414129,0.23784805880859494,-0.05965249799191952,-0.7601192458532751,-0.22839059680700302,0.23016445199027658,0.17243548342958093,-0.794649085495621,0.7757682069204748,0.38947847951203585,0.9866523453965783,0.3942181677557528,0.38999400520697236,0.7087945723906159,-0.8079160330817103,0.4078327575698495,0.35445670457556844,0.37995452666655183,0.5448840563185513,0.30356635665521026,-0.9268365711905062,-0.765570814255625,-0.1654885937459767,0.5581664885394275,-0.8317038668319583,0.6593849258497357,0.8581596887670457,-0.5804497329518199,-0.2802964258007705,0.9446025672368705,0.4286351785995066,0.7474962286651134,-0.9366344222798944,0.8207329194992781,0.904924179892987,0.42269845120608807,0.2821187721565366,0.5475241406820714,-0.8457760103046894,-0.35708562657237053,-0.062973462510854,-0.7401418401859701,-0.6417003804817796,0.9151650643907487,-0.7383766383863986,-0.2386355111375451,-0.35417761048302054,-0.7023204141296446,0.8174213217571378,-0.5753376209177077,-0.709470153786242,-0.7040498061105609,0.4810457141138613,-0.9651078805327415,-0.3944454602897167,-0.14015586394816637,-0.7020728113129735,0.009769682306796312,-0.9847973524592817,0.00019890442490577698,-0.6929029761813581,-0.5532082892023027,0.06535589648410678,0.5661200392059982,0.9772447100840509,-0.022865230217576027,0.4182583950459957,-0.39665505662560463,-0.37109124194830656,0.8393226340413094,-0.8165905573405325,-0.3233675677329302,-0.06770575325936079,-0.5707565564662218,0.6855710321106017,-0.30840509943664074,0.31519692530855536,-0.9301694631576538,0.21574071235954762,0.25507090613245964,-0.347916373051703,-0.9942973172292113,-0.2906897687353194,0.894862889777869,0.37221062229946256,0.580580763053149,0.8736474760808051,-0.461195039562881,0.006930533796548843,0.27187782200053334,0.6111791701987386,-0.626968557946384,-0.16904455004259944,0.16989825293421745,0.24086019629612565,-0.6638329247944057,0.5608954709023237,-0.8301703343167901,-0.6828397065401077,0.40014880849048495,0.6339957281015813,0.4069046308286488,-0.5035102283582091,0.175592590123415,0.7909495956264436,0.7714001988060772,0.13307897513732314,0.13501391978934407,-0.3491402668878436,-0.5401386320590973,0.17804432706907392,0.9517329619266093,0.8994416422210634,0.5942420032806695,-0.8948553036898375,-0.5300439409911633,0.08586777420714498,-0.38961724610999227,0.400469820946455,-0.36856410931795835,-0.025995829608291388,-0.8275609221309423,0.4756329134106636,0.19806508161127567,0.6531227678060532,-0.1770888422615826,-0.9348221863619983,-0.08792630955576897,-0.5428039445541799,0.38088873075321317,0.4218669165857136,0.6143426666967571,0.7907904032617807,-0.03828034922480583,0.9776749876327813,0.7348693995736539,-0.7183734970167279,0.6615472701378167,-0.22837419575080276,-0.06547317421063781,-0.5033155521377921,-0.11050950130447745,0.9632491497322917,0.6506594303064048,-0.479769594501704,0.6269604153931141,-0.9372367691248655,-0.7911703679710627,0.9792088479734957,0.3459945418871939,-0.0395181979984045,-0.41051026433706284,0.7121267993934453,0.0528627447783947,0.13200053479522467,0.36002185195684433,0.20115727093070745,0.6819369131699204,-0.12155631650239229,-0.9319425383582711,0.6165209230966866,0.6630071415565908,-0.8027249155566096,-0.20275432989001274,-0.15285734040662646,0.2757058860734105,-0.8881770996376872,0.5166392922401428,-0.6127922968007624,0.5070200846530497,0.9977606385946274,0.8703027605079114,-0.792246375232935,0.7289859079755843,-0.6913763778284192,-0.04654904315248132,0.32184382947161794,-0.3876438094303012,0.3342014392837882,-0.3833642886020243,0.9630813323892653,0.8981615239754319,-0.4269185517914593,0.5570121668279171,0.8653821661137044,-0.9997404455207288,0.29498171247541904,-0.4262725920416415,0.4044594536535442,-0.6499887402169406,-0.2759824050590396,0.24473695270717144,-0.41188302310183644,-0.018310158047825098,-0.700656259432435,-0.6793706142343581,-0.18208279320970178,-0.5040062740445137,-0.39896130468696356,-0.30196695402264595,0.8054516711272299,0.08755146665498614,-0.9227367793209851,-0.8902996387332678,0.6848781523294747,-0.7921355622820556,0.009470438119024038,0.3167862333357334,-0.155216746032238,-0.5426028450019658,0.8535053585655987,0.018911411985754967,-0.5995301576331258,-0.16040139645338058,0.05560626881197095,-0.044048603624105453,-0.6713217631913722,0.6289932881481946,-0.027644377667456865,0.1490194029174745,-0.4448724831454456,-0.40290730400010943,-0.06697949720546603,0.49619231605902314,0.7989614135585725,-0.12493189331144094,-0.08356577204540372,-0.2640680018812418,-0.21646908344700933,-0.33561784867197275,0.304027137812227,0.1603028648532927,0.374679465778172,-0.11094433860853314,0.04170056665316224,0.04602744476869702,0.08161789504811168,0.3754737628623843,-0.4536767117679119,-0.027082290034741163,0.8209367864765227,-0.4520676461979747,-0.9353583469055593,0.16148766316473484,0.5853268541395664,0.3807123824954033,0.6355483010411263,-0.15224390989169478,0.7534551122225821,-0.29418228939175606,0.5169800538569689,0.8990954593755305,-0.9657184383831918,0.4960981369949877,0.4536781827919185,0.8961768881417811,0.6288576172664762,0.8308122889138758,-0.09482599049806595,0.9733308688737452,-0.20331248966977,0.8182837977074087,-0.8382212030701339,-0.6026595053263009,-0.5708347060717642,0.5917155304923654,0.8198699224740267,-0.8452342660166323,0.8150294753722847,-0.4970160876400769,-0.00538531644269824,-0.9310747422277927,0.6952742538414896,0.8813048424199224,-0.21635710867121816,-0.47495295898988843,-0.4758690423332155,-0.04876095103099942,0.1560908742249012,0.5922199059277773,-0.5124892862513661,0.17550673708319664,-0.9092326546087861,-0.7513344520702958,-0.5340883289463818,0.5207359124906361,-0.592524342238903,-0.03282795613631606,-0.09737996896728873,0.4241670216433704,0.45776398479938507,0.24012548010796309,0.049487282522022724,0.7635416970588267,-0.833472843747586,0.25284781586378813,-0.4913764279335737,-0.6792644402012229,0.21168984984979033,-0.8428077343851328,-0.9489402682520449,0.38993009831756353,0.0392938875593245,0.9426033245399594,0.9737858637236059,0.9403566410765052,0.07852225191891193,0.06410688301548362,-0.607073828112334,0.5950845093466341,-0.3737621642649174,0.5334420036524534,-0.31426002085208893,-0.0383728239685297,0.36616043699905276,0.9039408783428371,0.6279386063106358,-0.36626939894631505,0.6259420379064977,0.9433919754810631,-0.36423952132463455,-0.329995805863291,0.44475084403529763,0.8169374596327543,-0.7816399005241692,-0.9213189496658742,-0.09470599004998803,-0.7683665635995567,-0.5586169781163335,0.5134061030112207,-0.4418899528682232,-0.6340810200199485,0.5003131809644401,-0.0533014303073287,0.9369082455523312,-0.38841463532298803,0.4683899483643472,-0.0286430511623621,-0.5589476656168699,-0.3068819078616798,-0.48253293056041,0.7707790406420827,0.07433742098510265,0.9073460609652102,0.3368179281242192,-0.9680385258980095,-0.32727514300495386,0.5006518978625536,0.9646545951254666,0.4513243888504803,-0.32343036960810423,0.0036069462075829506,-0.4206661549396813,0.029020029585808516,0.9705389053560793,-0.8455190393142402,0.34103594394400716,0.5946552138775587,0.48285786947235465,-0.9540076996199787,-0.4091965090483427,-0.6696929070167243,-0.3963615847751498,0.3390525197610259,-0.5972799411974847,-0.3000455889850855,0.32618606369942427,-0.9799732151441276,-0.33622276363894343,0.32726190565153956,-0.6822628607042134,0.231144062243402,0.8522031186148524,-0.2667644894681871,-0.20096430554986,0.46275301184505224,-0.3854521280154586,-0.42354843206703663,0.9891331302933395,-0.36757261818274856,-0.5666849743574858,0.5816923063248396,0.6869477755390108,0.8039360833354294,-0.8437336264178157,0.28322711819782853,0.8192004025913775,-0.14122582506388426,-0.4338362794369459,0.48050343384966254,-0.5768010797910392,-0.9083527312614024,-0.8761533191427588,0.6263784379698336,-0.25449894834309816,-0.3963462570682168,-0.3649786626920104,-0.7030141428112984,0.8822493101470172,-0.20194690441712737,-0.5301144835539162,0.9766338840126991,0.14629234606400132,-0.10762025462463498,-0.820973624009639,-0.3266448676586151,-0.7619843846186996,-0.06165558518841863,-0.17559531470760703,-0.90545540349558,0.6584419785067439,0.3945677326992154,0.5618539107963443,-0.3852702076546848,0.05146726965904236,0.020752090495079756,-0.7527296612970531,-0.6228815424256027,-0.31278142472729087,0.5368496961891651,0.15369483828544617,0.3128320067189634,-0.07501226896420121,0.322312458883971,0.6616806616075337,-0.10000579059123993,0.4341810536570847,-0.822804911993444,0.4803677788004279,0.6204642755910754,-0.6230244017206132,0.7256381898187101,-0.907159477006644,0.8249934245832264,0.5377909038215876,-0.3409210783429444,-0.2986330334097147,-0.7317581167444587,0.7864170311950147,0.4252266068942845,-0.5304683642461896,0.09120409097522497,0.5474309283308685,0.7377328248694539,0.5917245573364198,-0.5070522343739867,-0.6233822698704898,-0.38481291104108095,0.8531345799565315,0.6609688061289489,-0.20798548543825746,-0.7711849575862288,-0.13256130646914244,0.7083531902171671,-0.5467214472591877,-0.9445982542820275,-0.43443012377247214,0.841989743988961,0.7253754413686693,0.8849238883703947,-0.3766825580969453,-0.692464460618794,0.8587484331801534,-0.8111414997838438,0.7044385578483343,0.37627636082470417,0.8101436221040785,0.4154889611527324,-0.7918863669037819,-0.516716820653528,0.3527023899368942,0.33046555519104004,0.6042011892423034,-0.46804255014285445,0.35669518215581775,-0.01783869182690978,-0.32335740327835083,-0.04898665798828006,-0.18037961889058352,-0.8123073535971344,-0.11393722984939814,-0.3546726112253964,0.9355126530863345,0.11140207294374704,0.7052950314246118,0.5200607590377331,-0.8159447936341166,-0.6430633720010519,0.23422860400751233,0.6978119648993015,-0.42349747801199555,0.20626995712518692,0.709859570953995,0.9346429938450456,0.5688980151899159,0.39156315801665187,0.4584108632989228,0.40091242268681526,-0.7549934010021389,0.5300637404434383,-0.5023922179825604,0.5219107810407877,0.10347983380779624,0.5728471609763801,0.9668925181031227,0.8633671361021698,0.42696763621643186,-0.35428651282563806,0.017479850910604,0.9516559620387852,-0.2332704053260386,0.009126408025622368,-0.1194080444984138,-0.9381250999867916,-0.8324729241430759,0.4198206812143326,-0.6105362405069172,0.07940904004499316,-0.9889727947302163,-0.033251757733523846,-0.8299222104251385,0.5213429187424481,-0.18105716723948717,0.7635336816310883,0.7248916383832693,0.16105631832033396,0.8450963818468153,0.16757199633866549,0.9521574387326837,-0.6418370227329433,-0.828612501733005,0.28847283544018865,0.5587453399784863,0.7804363258183002,-0.8438687203451991,0.48234242806211114,-0.14314434817060828,0.6485745953395963,0.6615123427473009,0.19398763263598084,-0.7043529595248401,0.5699857892468572,-0.43634261144325137,0.5139978281222284,0.7998636807315052,0.8194327438250184,0.042830710764974356,-0.8875106670893729,0.9291644957847893,-0.8164798878133297,0.2704224265180528,-0.13659503497183323,-0.6686604246497154,0.19099678890779614,-0.05009429669007659,-0.04968097060918808,-0.06720333779230714,-0.44031050661578774,-0.6575521854683757,-0.15916314721107483,-0.19739561714231968,-0.5035532373003662,-0.13614448672160506,0.3061523297801614,-0.6810450977645814,-0.17641856195405126,-0.9727026191540062,-0.16367391217499971,-0.7998401699587703,-0.9511669781059027,-0.7892760150134563,0.7270329296588898,0.7362445485778153,-0.7130901026539505,-0.8837146190926433,-0.7457384262233973,-0.5191267374902964,-0.7187453899532557,0.18986494420096278,0.8367651076987386,0.2757632164284587,0.5967840435914695,-0.008560112211853266,-0.7309635248966515,-0.6868705642409623,-0.3505230559967458,0.9001922570168972,0.9685516124591231,-0.5441815033555031,0.12124440027400851,0.8806523899547756,-0.993680234067142,-0.9058934985660017,0.5259180623106658,0.27056631864979863,0.5621121758595109,0.8513494143262506,0.4638291778974235,0.15084193600341678,0.7060002279467881,-0.27348968712612987,-0.1595288789831102,0.5746976044028997,0.7374451346695423,0.09424365498125553,-0.9073461424559355,0.6949041909538209,0.28968065418303013,-0.2437194841913879,0.4861175795085728,-0.1807525409385562,-0.6047033672221005,0.9236789410933852,0.7479915083386004,0.5241640396416187,0.4796485402621329,-0.8983489042147994,-0.30799247324466705,0.6108051780611277,0.5632543894462287,-0.49189434945583344,0.4755933624692261,0.7294399719685316,-0.15359696885570884,0.9825207595713437,-0.5416296413168311,0.7691391548141837,0.7059806459583342,-0.3849092647433281,-0.8812177567742765,0.5771515001542866,-0.742592497728765,-0.08794960146769881,-0.9737938828766346,-0.3817523932084441,0.9788475157693028,0.7988605415448546,0.4706541197374463,-0.8181572444736958,-0.8294444787316024,-0.145697261672467,0.728655987419188,0.1819929680787027,-0.2725673676468432,-0.03656867751851678,0.012303241062909365,-0.861223375890404,-0.5153254964388907,0.2551695997826755,-0.8091192780993879,0.6196749373339117,0.29172189626842737,-0.6602067393250763,-0.36397801898419857,0.7060068971477449,-0.38316938653588295,0.33704499527812004,0.5700425524264574,-0.3993034060113132,0.4818721320480108,-0.22885641222819686,-0.9471772033721209,0.8368693687953055,0.025274353101849556,-0.34708308475092053,-0.10232092626392841,0.710324767511338,-0.5072568920440972,-0.012191065587103367,0.35227989545091987,0.5881968741305172,-0.3773763533681631,-0.8714032438583672,-0.33292980631813407,-0.24749030405655503,0.08260622434318066,-0.9853354906663299,0.31026127142831683,-0.565673241391778,-0.6197475297376513,0.349224376026541,0.20693364366889,-0.07092944951727986,-0.6102971294894814,-0.920820549596101,-0.5890392507426441,-0.19467619759961963,-0.2739157755859196,-0.3792891185730696,-0.3799698604270816,-0.5578654510900378,-0.13709396682679653,-0.4435663092881441,0.3706650477834046,0.23477172292768955,-0.5535760661587119,0.3027134803123772,-0.8036745241843164,-0.27754446864128113,-0.16575367050245404,0.4293096805922687,0.9563233973458409,0.33210328919813037,0.2029225961305201,-0.28412792878225446,0.8315468588843942,0.9992155977524817,0.6852074209600687,-0.7932119565084577,0.29984689969569445,-0.5863772458396852,-0.44979941844940186,0.1075655990280211,-0.7851656363345683,0.5983341191895306,-0.30895777978003025,0.9284659842960536,0.5271635237149894,-0.8221078030765057,0.2743572215549648,-0.8063580663874745,0.3019319330342114,-0.1745508974418044,0.5779596590436995,-0.5209229420870543,-0.843202531337738,0.20558497216552496,0.07836994854733348,0.3207245687954128,0.06790316896513104,-0.018219142220914364,0.9962001740932465,-0.5168988965451717,-0.25709578581154346,0.38911283016204834,0.898865117225796,0.6290377760306001,0.31267970940098166,-0.8066297462210059,0.24151362339034677,-0.6816006130538881,-0.18384938081726432,-0.5908693810924888,0.24684119084849954,-0.11928631039336324,-0.8137496248818934,0.4069372210651636,0.9412768371403217,0.4018145175650716,0.6096424623392522,-0.8408246790058911,0.4080103663727641,0.29514128249138594,0.4878785004839301,0.5691902409307659,-0.870102392975241,0.8615995203144848,0.8351057646796107,0.6720190248452127,0.33711544005200267,-0.7922193477861583,-0.9886928084306419,-0.8769899127073586,0.11173169827088714,0.19080222444608808,0.5806971024721861,0.2662753378972411,-0.9512228099629283,0.4475498800165951,-0.49125252151861787,0.2960430905222893,-0.9096616264432669,0.9186210762709379,-0.03584866505116224,0.8198371445760131,0.4126750803552568,0.40583215607330203,-0.7930968585424125,0.522537003736943,0.8106981753371656,0.4276168695650995,-0.8714741705916822,-0.27692664973437786,-0.5428312974981964,0.6960805696435273,0.26567125879228115,-0.1431411192752421,0.9803677597083151,-0.7626644386909902,-0.5007638856768608,-0.21234781527891755,0.7650072225369513,0.843626847025007,-0.11715798964723945,0.3809741507284343,-0.7540022544562817,0.7673144512809813,-0.2665702593512833,-0.3007679767906666,-0.757399033755064,0.02077686693519354,-0.6806134404614568,0.6813362850807607,0.4840564141049981,0.970518980640918,0.6088423267938197,0.5718912957236171,-0.46694992342963815,0.6888146107085049,-0.6630027261562645,-0.2600156129337847,0.6801111809909344,-0.16194967878982425,-0.5357560236006975,-0.6428864505141973,0.7180364290252328,0.7868913980200887,-0.5375451031140983,-0.6301312576979399,-0.2512426651082933,0.43479158030822873,-0.5005235532298684,0.10780376242473722,0.7579470127820969,0.14252647710964084,0.5824983641505241,0.16042498126626015,-0.9625076646916568,0.48754713870584965,0.34538220660761,-0.9019264876842499,-0.3145879441872239,-0.42450523655861616,-0.08236407488584518,-0.2845974415540695,0.4652005531825125,0.763587056659162,-0.19553303811699152,0.7873207959346473,0.5156246684491634,0.42904724460095167,-0.17061939276754856,0.59260875871405,0.2358103422448039,-0.17877310002222657,0.21279196767136455,0.49754968797788024,0.2625299710780382,0.7898349747993052,-0.6336117438040674,0.3499089377000928,0.03592845285311341,-0.34555181255564094,0.06015281844884157,-0.9156488124281168,0.15512151271104813,0.43759512016549706,-0.6887381966225803,-0.2124799438752234,-0.9362050476484001,0.8884694492444396,-0.7966773062944412,0.6253748200833797,-0.9748473139479756,0.734337440226227,-0.5869720252230763,-0.06510812370106578,-0.13765968661755323,0.44530380377545953,-0.4350935057736933,0.4513204921968281,-0.41759853390976787,0.4360630316659808,-0.491718334145844,0.15396619122475386,0.7489438634365797,0.6141453352756798,-0.35982882184907794,0.39767647674307227,-0.27308728732168674,0.833631400950253,0.7996446909382939,0.5971091291867197,0.3012010185047984,0.6754046767018735,0.06576449377462268,0.09627793170511723,-0.658078130800277,0.8353188689798117,-0.17168788751587272,-0.5570004703477025,-0.304936318192631,0.07244183728471398,0.9076246568001807,-0.6249516792595387,-0.6611637622117996,-0.9232375524006784,-0.8615316008217633,0.43254960095509887,-0.9226588541641831,0.4748926847241819,-0.6114182909950614,0.9371568197384477,-0.8547126660123467,-0.382550704292953,-0.6748948651365936,0.6711652502417564,0.15996833890676498,0.6927842013537884,-0.7581238206475973,0.6350594596005976,0.5363003383390605,-0.7317386781796813,0.6629795748740435,0.055949856992810965,0.6970196263864636,0.33328222250565886,-0.28198542073369026,-0.9566173576749861,-0.11820606328547001,-0.05116733070462942,0.7027302859351039,-0.9108424028381705,0.7906511314213276,-0.2979178559035063,-0.05510158045217395,0.4533051555044949,0.7132166987285018,0.2991370679810643,0.4737712871283293,-0.5094209332019091,0.7396616810001433,0.7167087011039257,-0.5068079750053585,-0.19003914296627045,-0.8987990114837885,-0.4436619463376701,-0.952180037740618,-0.5275402097031474,-0.14529866399243474,0.2897445079870522,-0.3149558906443417,-0.7330730804242194,-0.3404319891706109,-0.8268284713849425,-0.7364420965313911,0.8075621053576469,0.354582030326128,-0.48784018121659756,-0.015343802981078625,0.49874773621559143,-0.37781710689887404,0.5523882783018053,0.7569606225006282,-0.7612136714160442,0.7751254485920072,0.952026130631566,0.5754024493508041,-0.5066166943870485,-0.8834508592262864,-0.17943249642848969,0.9478813600726426,-0.3639534395188093,0.6911646560765803,0.15810411144047976,-0.06933591980487108,-0.3793178745545447,-0.949829279910773,-0.6171237849630415,0.14870608178898692,0.3642930965870619,-0.1882155011408031,0.30352191906422377,-0.776612704154104,-0.6863080612383783,-0.38102112570777535,-0.9601011574268341,-0.5832252809777856,0.49141104938462377,-0.19012490985915065,-0.3802870768122375,-0.3141952487640083,0.5780587214976549,-0.6234029652550817,0.8991370326839387,-0.35401749052107334,-0.9569136695936322,0.6601414666511118,-0.8904067920520902,-0.6687450557947159,0.1322894124314189,-0.2157353339716792,-0.012081143446266651,-0.3873617369681597,-0.07583190547302365,-0.8372755013406277,0.21971184760332108,-0.6907096244394779,-0.2760665584355593,0.037106240168213844,-0.23182745929807425,0.027917172759771347,-0.20602047629654408,0.26315205451101065,-0.8076170599088073,-0.25121814012527466,0.40565489372238517,0.85033486969769,-0.042643859051167965,0.8834741129539907,0.42221005680039525,-0.6010963232256472,-0.6518542026169598,-0.608161361888051,0.010054770391434431,0.6163761299103498,-0.7436626814305782,0.929338501766324,0.027218523435294628,0.3452399526722729,-0.0729892086237669,-0.7714403597638011,-0.8980052061378956,0.10078871436417103,0.8533533024601638,-0.8583230972290039,-0.8336368193849921,-0.6267561842687428,0.9786691884510219,-0.9014830878004432,0.4938358929939568,0.45119134010747075,-0.7604663646779954,0.19608530355617404,0.12729686498641968,0.6198256001807749,-0.864910236094147,0.3795933206565678,-0.04922659927979112,-0.7103512259200215,-0.20986777171492577,0.38915462838485837,0.905669969972223,-0.8575923149473965,-0.15666847489774227,0.3143292632885277,0.2585185472853482,-0.24711253214627504,-0.7585754408501089,0.8064444703049958,-0.13360015954822302,0.64083445770666,0.4152102619409561,0.4040662348270416,-0.8867708221077919,0.2806191458366811,-0.6803152286447585,-0.09216054622083902,-0.03836605232208967,-0.9193291794508696,0.8754218798130751,-0.03230624459683895,-0.6033863136544824,0.9114313339814544,0.39304188219830394,0.5672327592037618,0.8919623512774706,0.6767710228450596,-0.4783568289130926,-0.34401134867221117,-0.6716584581881762,0.5215571587905288,0.48792368499562144,0.026878368575125933,-0.4455503220669925,0.4314987291581929,0.24375668028369546,-0.9979738844558597,-0.7928508948534727,-0.5618670829571784,-0.23014358151704073,0.5502955592237413,0.895322525408119,0.3320091818459332,0.9939143946394324,0.5643336125649512,0.8944781627506018,0.7197958389297128,0.16263894084841013,-0.20474028447642922,0.5424505993723869,0.9055605228058994,0.05364496260881424,0.86636449303478,0.5140339154750109,0.79103111801669,-0.22218841733410954,0.10309467371553183,0.2750613368116319,-0.29899473348632455,-0.9749074107967317,0.36201075790449977,0.9991680169478059,-0.9185575060546398,-0.51013860758394,-0.8542710901238024,0.6398058137856424,0.3315399060957134,-0.5197809529490769,0.3130494374781847,0.06131736468523741,0.7885681358166039,-0.5205228878185153,0.293888334184885,0.14086553221568465,0.4680219874717295,-0.6410492630675435,0.20957755437120795,0.26249624975025654,0.7052181442268193,-0.4516421868465841,0.7648458248004317,0.09958671499043703,0.9860661160200834,0.260791159234941,-0.08597074402496219,-0.3457728340290487,0.9423908200114965,0.06184440804645419,0.502662131562829,0.643304951954633,-0.7521648029796779,-0.4394925208762288,0.5712502491660416,0.3287647347897291,-0.910582032520324,-0.8239415334537625,-0.6049929112195969,-0.28486256347969174,-0.6297857565805316,0.2177770039997995,-0.7609328869730234,-0.6212796964682639,-0.6279188748449087,0.19083462236449122,0.6522880704142153,-0.10635039024055004,0.9273365950211883,0.08830352872610092,0.16054863668978214,-0.8787518925964832,-0.9731105491518974,0.09764256700873375,-0.700717082247138,0.2760999174788594,0.7875445699319243,0.03451704187318683,0.5542775490321219,0.44614091888070107,0.411430842243135,0.48778437450528145,-0.9582839603535831,-0.0637533264234662,-0.08958371868357062,-0.24452315084636211,-0.41052338434383273,-0.9797527240589261,-0.973885306622833,-0.7957396619021893,0.045367717277258635,0.7864791662432253,0.9813843173906207,-0.7948235212825239,0.3082288303412497,-0.8515496966429055,0.21655068127438426,0.6766933505423367,0.14679357782006264,0.9613450085744262,-0.5207209745422006,-0.09150946186855435,0.6258640233427286,0.028910094872117043,0.19831878878176212,-0.6694555059075356,0.2654207185842097,-0.12931603426113725,0.4055577698163688,-0.41449598921462893,0.8682744270190597,-0.917597615160048,-0.24210862116888165,-0.4627896947786212,-0.8614630023948848,-0.9588055117055774,0.8943790309131145,0.3829290526919067,0.9529703888110816,0.06498927855864167,-0.13100896449759603,0.18238926772028208,-0.2318142564035952,-0.7352115935645998,-0.09410303039476275,0.6076935883611441,-0.7252049543894827,-0.2078019641339779,-0.7317900755442679,0.4446065491065383,-0.08278961619362235,-0.8136797742918134,0.5652572531253099,-0.4135524914599955,0.7284563761204481,0.6108131757937372,-0.9320035730488598,0.4004194843582809,0.49632334196940064,-0.8341614240780473,0.3018141472712159,0.35194595670327544,-0.573469425085932,0.7557497951202095,0.7621007529087365,-0.43868287466466427,0.006599679589271545,-0.7329504527151585,0.04832023475319147,-0.07436122978106141,-0.5809652796015143,0.41411914583295584,0.6515496713109314,0.08620328921824694,0.5669685150496662,-0.30790946213528514,0.8594747958704829,-0.24154465459287167,0.5801284275949001,-0.09795385925099254,-0.1993116419762373,0.48912165220826864,0.8310835314914584,-0.5805208454839885,-0.8673449442721903,-0.6347248069941998,-0.23725662380456924,-0.124851627741009,-0.8015009481459856,-0.41190344421193004,0.1354973721317947,-0.7136276601813734,0.9646247467026114,-0.02158027281984687,-0.6483123418875039,0.31857469817623496,0.15671344194561243,-0.9214964602142572,-0.6430047573521733,0.2511296500451863,0.7703723590821028,-0.0040792240761220455,0.30648111272603273,-0.008885903749614954,-0.5265164989978075,-0.5184302739799023,-0.5531951803714037,0.5164389372803271,-0.8114963690750301,-0.5725726508535445,-0.9390792632475495,-0.8112883996218443,0.5154685126617551,0.7643904155120254,0.0701358588412404,0.26180222537368536,-0.15232446882873774,0.8394963503815234,-0.45958629064261913,-0.10094537725672126,-0.5320280524902046,-0.8512246762402356,0.7192155565135181,-0.6117270854301751,-0.7591375247575343,-0.6460270825773478,0.32532676169648767,0.06912452261894941,-0.40967441629618406,0.1616300498135388,0.3682531495578587,-0.04276126576587558,-0.04851998761296272,0.6060563470236957,-0.26357882050797343,0.12040179688483477,-0.03734372602775693,-0.012026725336909294,0.2878134045749903,0.28317995835095644,0.8023042106069624,0.1433140905573964,-0.8760846112854779,-0.1580502688884735,-0.32558224629610777,0.8813576400279999,-0.24406175035983324,-0.8227007598616183,-0.7751418072730303,-0.2492052079178393,-0.9189614518545568,0.7561276433989406,-0.4365819366648793,0.9715860248543322,0.07100580586120486,0.8257059506140649,-0.3933733799494803,0.651948063634336,0.8691885606385767,-0.3484284533187747,0.8182920832186937,-0.8623141478747129,-0.8221489558927715,0.6744252750650048,-0.3797738463617861,0.320552630815655,-0.9406160456128418,0.23518061265349388,-0.991038906853646,-0.18632371071726084,-0.8831355548463762,-0.38960010558366776,-0.6186635000631213,0.3036221223883331,0.8627703390084207,0.41897501377388835,0.17074265936389565,-0.8927817037329078,0.8153785532340407,0.8156538889743388,-0.6505188960582018,-0.002809414640069008,0.4900813354179263,-0.06211095675826073,0.8573989938013256,-0.612447100225836,-0.9618806727230549,-0.8618401065468788,0.8924182397313416,-0.46647321293130517,0.3226995300501585,0.7202788959257305,0.7761709485203028,-0.4555275123566389,-0.48589748283848166,-0.5403433879837394,0.5672171581536531,0.480174268130213,0.27391419606283307,0.3429853720590472,-0.31472898088395596,-0.4488715105690062,-0.35144422901794314,0.24131122371181846,0.3821764523163438,0.9605889110825956,0.5695051355287433,0.5258948840200901,0.056176706217229366,0.7808009502477944,0.36836599046364427,0.7177553852088749,0.508897100109607,0.760683560743928,-0.065976332873106,0.2839214624837041,-0.6080163726583123,0.9720124723389745,0.028930116444826126,-0.04183722520247102,-0.8381961174309254,0.08177070086821914,-0.23687554243952036,-0.4694077130407095,0.6344849993474782,-0.27526385663077235,-0.019144929945468903,0.7899676361121237,-0.7391355400905013,0.26875429321080446,0.3857674212194979,0.28554118890315294,0.5358320754021406,-0.8565861228853464,0.9077003048732877,0.2475761533714831,-0.8767736260779202,0.9880714355967939,-0.030717080924659967,-0.26114120334386826,-0.07535330206155777,0.7268783869221807,-0.6786535806022584,-0.35106526454910636,0.9695235313847661,0.21714072534814477,0.02270773984491825,-0.5506274132058024,-0.7066624537110329,-0.8074018689803779,-0.39673681929707527,-0.6847037877887487,-0.43018050538375974,0.39592478470876813,-0.845049103256315,0.22660233778879046,0.15751856612041593,-0.3853011108003557,0.46871759789064527,-0.7996773747727275,0.4595763171091676,-0.04115030821412802,-0.9696540380828083,-0.4300780463963747,0.25414516078308225,0.8505823160521686,0.24331273371353745,-0.19114712439477444,0.5661626607179642,-0.45755060063675046,0.5120101608335972,-0.163928363006562,-0.2637282218784094,0.8271264028735459,0.3912241696380079,-0.3536965842358768,-0.9440209553577006,-0.06628933316096663,-0.568200446665287,-0.9352338616736233,-0.5843931655399501,-0.0875784307718277,0.9205244304612279,-0.022500638384371996,0.8132531614974141,0.7106367629021406,0.8314777459017932,0.6864321152679622,0.687425326090306,-0.43051177402958274,-0.08556160982698202,-0.721961660310626,-0.8575867614708841,-0.4813098921440542,0.32328597363084555,-0.22432901989668608,0.7793293641880155,0.11186360707506537,-0.18304269900545478,0.20728011801838875,0.9557855371385813,-0.9119037017226219,0.37093404587358236,-0.6379291699267924,0.43841648660600185,0.9242441924288869,-0.4438315383158624,-0.9819710948504508,0.20717072999104857,-0.20934570021927357,-0.9987404635176063,-0.7009400026872754,0.6371258520521224,-0.707101205829531,0.7912098448723555,-0.47293878765776753,-0.89407813642174,-0.9697603834792972,-0.8466028510592878,-0.13017897447571158,-0.39006393775343895,-0.03335139621049166,0.7724926071241498,-0.21011005016043782,0.9111803760752082,0.3272725883871317,-0.911049316637218,-0.07733655534684658,0.9314923784695566,-0.02153344452381134,-0.9462826591916382,-0.9919110876508057,0.3426368925720453,-0.8171305796131492,-0.5116361021064222,-0.4730505491606891,0.6442563608288765,0.8513720859773457,-0.16456752410158515,0.2080818973481655,0.6488643139600754,-0.5732281571254134,0.006011034362018108,-0.4810823127627373,0.8655567010864615,-0.5203829407691956,0.6000845599919558,0.6228770348243415,-0.264399669598788,0.7750363643281162,0.2767819259315729,-0.4379050675779581,0.2418519090861082,-0.23212680500000715,0.6749998605810106,-0.7436427096836269,-0.8033035383559763,0.0025966092944145203,0.40748655144125223,-0.857876252848655,0.6367036709561944,-0.25424002995714545,0.5910382033325732,-0.9194856425747275,-0.8796195005998015,0.9370359289459884,0.6063954518176615,0.7789189647883177,-0.9677160601131618,-0.6190512282773852,0.2542529054917395,-0.025507593993097544,-0.49593314016237855,0.34757078625261784,-0.5681959562934935,0.3047009943984449,-0.8328919936902821,0.31448947498574853,-0.8985220259055495,-0.1650057313963771,0.031614734791219234,-0.5107160075567663,0.6912369290366769,-0.26113700633868575,0.646365815307945,-0.24054735153913498,0.48674771236255765,0.5028422023169696,-0.7206688378937542,0.8914823862724006,0.5150442589074373,-0.6479564993642271,0.32743955170735717,0.024367413017898798,0.6906471448019147,-0.9435108075849712,0.16214264556765556,-0.4150501675903797,0.7831564992666245,-0.35731284646317363,-0.9902749676257372,-0.957541212439537,0.9989897198975086,-0.7997760884463787,0.3894857270643115,0.4686699667945504,0.3417127379216254,0.2537106014788151,-0.11097276583313942,0.8388846213929355,-0.18722058786079288,0.7836062842980027,-0.14705219585448503,-0.6287159021012485,0.6033445401117206,0.5907563185319304,-0.2997595425695181,0.8704837546683848,-0.9340972010977566,0.6903551635332406,0.799016042612493,0.36446010507643223,-0.1526315864175558,-0.7018363787792623,-0.1345563866198063,-0.2446911078877747,-0.6679431875236332,-0.012712568044662476,0.6380637530237436,-0.8083775448612869,0.24340470833703876,0.33493140852078795,-0.4026158335618675,-0.718109177891165,0.8321490855887532,0.8130962532013655,-0.9206823208369315,-0.21783840470016003,-0.6374108083546162,0.5505881044082344,0.14890275476500392,0.6375136631540954,-0.5701798656955361,0.32855286775156856,-0.28103786148130894,-0.7436744328588247,-0.482965171802789,0.4593571019358933,-0.986932490952313,-0.7545393402688205,0.10796308564022183,-0.7523482921533287,0.8213167903013527,-0.18345788586884737,0.3972494131885469,0.0758469789288938,-0.7672804570756853,0.5602901186794043,0.6212958004325628,-0.9064966100268066,0.13788520358502865,0.1476407190784812,-0.9778338647447526,0.6857399581931531,0.6058839312754571,-0.9769410467706621,0.5127192614600062,0.6938741854391992,-0.9313240819610655,-0.08461840590462089,0.4505353681743145,0.4858682891353965,0.5702807642519474,0.08882358763366938,-0.5806526211090386,0.8986425260081887,-0.9039554363116622,0.7184895030222833,-0.7439314029179513,-0.2652402142994106,-0.21544541930779815,0.46638172725215554,-0.9073753510601819,0.18593878811225295,-0.9501850451342762,-0.5260999780148268,-0.4682673942297697,0.5179832675494254,0.5394255109131336,0.03415528079494834,-0.48321289010345936,-0.2943677199073136,0.7442607595585287,0.15242651151493192,-0.9284523976966739,-0.41057777497917414,-0.9821667675860226,-0.4681765162386,-0.26194266928359866,0.18515433417633176,-0.44164412654936314,0.4301079986616969,0.27011160319671035,0.7330159461125731,0.16498631983995438,0.133993377443403,-0.916288023814559,-0.5516569116152823,-0.8564040740020573,0.6876014666631818,-0.9883528118953109,0.14877836778759956,-0.658206176944077,-0.5557656930759549,0.672448358964175,-0.6970333415083587,-0.31446780962869525,0.28814873984083533,0.9066292862407863,-0.46098223188892007,0.843419290613383,0.5890945382416248,0.29920623637735844,0.3851675712503493,-0.8460878012701869,0.49459213856607676,-0.22692090412601829,-0.5694027282297611,-0.007756973151117563,0.6271266709081829,0.0983766708523035,-0.8253351952880621,0.5199173307046294,-0.703242463991046,-0.355382586363703,0.5502940365113318,0.9786662780679762,0.22091330541297793,0.04126006970182061,0.38097112346440554,-0.19487062422558665,-0.09053207468241453,-0.43894626619294286,0.4420216712169349,0.44242294132709503,0.8521856544539332,0.8451882004737854,-0.5336868641898036,0.17439572932198644,-0.8724167379550636,0.3385270540602505,0.5235187108628452,0.4359380388632417,-0.9234161004424095,0.19046337343752384,0.6741530830040574,0.45344971073791385,0.46324318880215287,-0.278684068005532,0.7414542254991829,-0.9690160634927452,-0.3215520465746522,0.2505300254561007,0.3984670890495181,0.8002720163203776,-0.41742460196837783,0.37669348157942295,-0.699699844699353,-0.4233972239308059,-0.671110840048641,-0.6786701614037156,-0.20611753454431891,-0.03587393695488572,0.15403717383742332,-0.3212535842321813,-0.45809251675382257,-0.9492708086036146,0.4407319207675755,-0.7364167985506356,-0.4998983829282224,0.873366542160511,0.7524237842299044,-0.6831272696144879,0.6293289810419083,-0.1293528857640922,-0.6864334335550666,-0.7760881138965487,-0.09626342635601759,0.7976234583184123,0.9354740693233907,0.7872110698372126,0.5928033711388707,-0.5475991987623274,0.03755194880068302,-0.46319967741146684,-0.12536752969026566,0.8940408197231591,0.028442549519240856,-0.9789112354628742,0.20337193831801414,0.9625955834053457,0.22530185244977474,-0.2151882778853178,0.14671657793223858,-0.6793644968420267,0.64400848839432,0.6367072979919612,-0.01512511121109128,-0.9549344410188496,0.23567732004448771,-0.14996606158092618,0.3593060984276235,-0.6312876264564693,0.780371343716979,0.8473539091646671,0.1972076864913106,-0.45016114553436637,-0.2667974019423127,0.9539703247137368,-0.5984992748126388,0.8346171281300485,-0.9428626135922968,0.26130401575937867,0.8831741949543357,-0.6689203893765807,-0.9141212250106037,-0.03177169291302562,0.6844947733916342,0.3789306660182774,-0.0009517436847090721,0.4583215373568237,0.4140417855232954,0.11462182458490133,-0.2609771671704948,-0.9445160417817533,0.4606298333965242,0.878587675280869,-0.06413975125178695,0.6754698692820966,0.8336818502284586,-0.14358760369941592,-0.004795433487743139,0.5427206470631063,0.19311844930052757,-0.3612057026475668,-0.1566852293908596,0.5076533742249012,-0.8375901551917195,-0.828283310867846,-0.3573099011555314,-0.7445539780892432,0.4421193739399314,-0.6038368865847588,-0.8470225944183767,-0.2216579462401569,-0.09407639317214489,0.47299516992643476,0.37158036697655916,-0.7360801063477993,0.5508744274266064,0.024776414968073368,0.45075452234596014,0.3026258018799126,-0.3469971567392349,-0.49952029529958963,-0.2599305221810937,-0.3110430482774973,-0.35943841142579913,-0.9695037077181041,0.62171067064628,-0.3989632986485958,0.017257125582545996,-0.007108666468411684,-0.5951444827951491,-0.3603443927131593,-0.32829204574227333,-0.8735066745430231,-0.9800527859479189,0.4126626611687243,-0.12984576681628823,0.423484664876014,-0.8258665534667671,0.4456588514149189,-0.5324771893210709,0.0217930618673563,0.22061302233487368,0.8864055620506406,0.7098411559127271,0.2438862482085824,0.4898894992657006,0.33105642395094037,-0.400229693390429,-0.007703973446041346,0.1638280083425343,-0.3217078479938209,0.665566214825958,0.05901075666770339,0.2695718891918659,0.9817941416986287,-0.9441831507720053,-0.9657011772505939,0.3776930649764836,-0.2553088879212737,0.3263469166122377,0.14277928741648793,-0.4062352520413697,-0.5199548439122736,0.513474375475198,0.2807719106785953,-0.39228969160467386,-0.8641777220182121,-0.5100768208503723,-0.9974475880153477,0.06568911485373974,0.29453623201698065,-0.6469891709275544,-0.8609703630208969,-0.15869201440364122,-0.6885841623879969,-0.4937342256307602,0.19547837087884545,0.5108210160396993,0.5458163698203862,0.07690300606191158,0.7263760603964329,0.7188455429859459,0.4284360194578767,-0.5766589618287981,-0.7342394017614424,0.795856200158596,-0.3701437492854893,0.27084182389080524,-0.8969605877064168,-0.33415178721770644,0.7747815907932818,0.8487730752676725,-0.3797969198785722,-0.410375258885324,0.9569415017031133,0.2101557762362063,0.2640581182204187,-0.5576229998841882,-0.40077868942171335,0.7138859373517334,-0.39214514242485166,-0.12491477001458406,0.37017525592818856,0.5004336629062891,-0.21148423571139574,-0.8742411001585424,0.5009054988622665,-0.3021872262470424,0.9633220704272389,-0.8881893916986883,0.1725750556215644,0.41208563139662147,-0.2909737997688353,0.47332357289269567,-0.655630134511739,0.8713016170077026,-0.4914603242650628,-0.19027772871777415,0.7697764495387673,-0.19897275883704424,-0.6092393039725721,0.20597776910290122,0.9301608363166451,0.6870431839488447,-0.39533512527123094,-0.48356285970658064,-0.0017325556837022305,-0.25115271378308535,-0.5486080921255052,-0.9121794514358044,0.856727515347302,0.3498976514674723,0.40712702507153153,0.2585190641693771,-0.024287221021950245,0.047426645178347826,0.23080061189830303,-0.07015486853197217,0.8393173329532146,0.2496965047903359,0.546255512163043,0.6211010366678238,-0.38412141613662243,0.5496355509385467,-0.5841569807380438,-0.00031335605308413506,0.6030029403045774,0.06132257729768753,0.8331585894338787,-0.4753818465396762,0.018585579004138708,0.9752559489570558,0.9797960864380002,-0.23779864143580198,0.6720920018851757,0.9429872995242476,0.5388000123202801,-0.1261013513430953,0.17081975704059005,0.8922124854288995,0.22085901908576488,-0.37468331679701805,-0.6086209127679467,-0.6881281416863203,0.1024993690662086,0.4402300645597279,0.17581813782453537,-0.797528893686831,0.9383762618526816,0.04546091519296169,-0.9719263045117259,-0.3885466572828591,-0.3892344287596643,0.4087324272841215,-0.006238466128706932,-0.510141046717763,-0.9509991244412959,0.14453967288136482,-0.8457628362812102,-0.6888440926559269,-0.47593184979632497,-0.7738089528866112,0.8781481254845858,0.7389801512472332,0.19534594332799315,0.15725656412541866,0.9759729416109622,0.974746941588819,0.5899117635563016,0.5661455984227359,-0.12092602532356977,0.3196972063742578,0.20688133034855127,0.9444903023540974,-0.6586675848811865,-0.7710421211086214,0.32118638418614864,0.22600548341870308,-0.8251429903320968,-0.323277800809592,0.290026543661952,0.850499046035111,0.8154979031533003,-0.8853411441668868,-0.23826154507696629,-0.6801976766437292,0.6274480326101184,-0.028610292356461287,0.5521663054823875,-0.9222578895278275,-0.18651861231774092,0.26478353375568986,0.9008357147686183,0.22680147551000118,0.5733779123984277,-0.8098342879675329,0.8927077730186284,0.9844842967577279,0.7126356903463602,0.3381528095342219,0.401894373819232,0.6981487679295242,-0.4933546409010887,0.8480520006269217,0.22071231063455343,0.9782742094248533,-0.048782901372760534,0.5816620052792132,0.288605232257396,0.0386331626214087,0.7898099767044187,0.3508474016562104,0.12466139905154705,0.3662538849748671,-0.4157901578582823,-0.5593726467341185,-0.12488714046776295,0.893024580553174,-0.5593604296445847,-0.14501654636114836,-0.47613037284463644,0.7347301049157977,0.6784017696045339,0.28129321383312345,0.23391806753352284,0.9480236270464957,-0.17866786941885948,0.16877495776861906,0.9058958571404219,0.17694750986993313,-0.3988630482926965,-0.5579904564656317,-0.4615168673917651,-0.753995016682893,-0.7726761871017516,-0.48801137832924724,0.04465235210955143,-0.13336631702259183,0.2411350840702653,0.4053807365708053,0.16469732858240604,0.30437197210267186,0.1994047947227955,-0.9598429375328124,0.8137638731859624,-0.8428119868040085,-0.15513356123119593,0.28089564898982644,0.4639967903494835,0.02302441978827119,0.4320901222527027,0.7209164160303771,0.5416637789458036,-0.5679538268595934,-0.12244691327214241,-0.5739502403885126,-0.9260761132463813,-0.38814274594187737,-0.9060665890574455,0.7522021871991456,0.025298253167420626,-0.6612557009793818,-0.7845712350681424,-0.5599191407673061,0.5042990865185857,-0.11220595147460699,0.022654519882053137,0.7231589136645198,-0.17031086888164282,-0.6592471301555634,-0.7111403369344771,-0.5239666430279613,0.31592056434601545,0.6244331351481378,-0.7051269570365548,-0.09281714027747512,0.9173661777749658,-0.21109212143346667,0.8581343623809516,-0.6214680806733668,0.8459164858795702,-0.9369670711457729,-0.8222808507271111,-0.6506877932697535,0.9774514366872609,-0.49969700165092945,0.8668469544500113,0.8772495039738715,-0.9591664541512728,0.2445428352802992,0.7563198381103575,-0.9629120249301195,-0.8765889396890998,0.04419625736773014,0.6720398631878197,0.22636704053729773,0.15071622468531132,0.522834022063762,0.6189655172638595,0.8697977224364877,0.6545397522859275,0.7152500711381435,-0.8489270401187241,0.9388053016737103,0.5931607889942825,0.6060331002809107,0.2743018469773233,0.10381316347047687,0.2116283313371241,-0.6644274368882179,-0.2949558002874255,-0.5208698017522693,-0.5990898781456053,-0.9265809617936611,0.1088354978710413,-0.9073889842256904,0.5928877862170339,0.7500846176408231,-0.19688470801338553,-0.8953103218227625,-0.6636266242712736,-0.22374773165211082,0.7830461286939681,0.37216364638879895,0.6118636168539524,0.2710223728790879,-0.0399479903280735,0.0019657504744827747,-0.8967685527168214,0.4440302741713822,0.2953942338936031,0.6099583203904331,-0.6724678291939199,-0.4965829961001873,-0.21854533394798636,-0.7085172687657177,0.3328151339665055,-0.9309802651405334,0.1875456515699625,0.5416188696399331,-0.23307095747441053,-0.6799352332018316,0.8743051434867084,-0.8512216522358358,-0.7218840946443379,-0.7061824961565435,0.430032966658473,0.13852387061342597,-0.8138046427629888,0.8392718955874443,-0.5291339801624417,-0.05884186178445816,-0.942873649764806,0.2910788906738162,-0.8586095180362463,-0.2333208005875349,0.9651772622019053,-0.9055452472530305,0.6258660615421832,-0.29529969906434417,0.18041031155735254,-0.007999245543032885,0.8535647131502628,-0.2834747121669352,0.3071842812933028,0.6096560526639223,0.35138774337247014,0.9223007224500179,-0.12513257889077067,0.904712697956711,0.10917921690270305,-0.0009269397705793381,-0.5684283361770213,-0.3508760300464928,-0.24453590484336019,0.5163120678626001,-0.3829276994802058,0.08746195770800114,0.29434206429868937,0.9631132218055427,-0.7434188360348344,-0.038245214615017176,0.15670159179717302,0.9629305605776608,0.7243408462963998,-0.896623213775456,0.7916299323551357,-0.6016134521923959,0.8279947303235531,0.24657894438132644,-0.061624300200492144,-0.7590405694209039,0.9473690623417497,0.2456036419607699,0.4024627050384879,-0.7813863912597299,0.6160946874879301,-0.2006494626402855,-0.31505606416612864,-0.599617378320545,0.9331749654375017,-0.8465103763155639,-0.80277467565611,-0.8698626039549708,-0.5555406087078154,-0.09747203858569264,0.2354327291250229,-0.447247295640409,0.29029650846496224,-0.4161832882091403,-0.6207161117345095,-0.16485638078302145,-0.9340124055743217,-0.652042135130614,0.8720427849330008,0.7256181337870657,0.9437573049217463,-0.604439158923924,0.627437915187329,0.016616913955658674,0.5649075019173324,-0.10137230809777975,-0.03150536259636283,0.2806448321789503,0.3632953194901347,-0.359350370708853,0.24709147308021784,0.1120479665696621,-0.2245918558910489,-0.5225845631211996,0.31640941370278597,-0.38938784319907427,-0.1430744738318026,0.7361941123381257,-0.8788347714580595,0.3566597723402083,0.266926446929574,0.10056498972699046,0.3483879496343434,-0.30334579898044467,0.2582125272601843,-0.3368502911180258,-0.19817319512367249,0.630326783284545,-0.6037474777549505,-0.9617370958440006,0.3268023389391601,0.6767205065116286,0.6391476565040648,-0.3716107178479433,0.5201544035226107,0.5226615592837334,-0.8563140421174467,0.8423110824078321,-0.04849707242101431,0.736241040751338,0.6166834332980216,-0.5609091832302511,0.38854636158794165,-0.39125224808230996,0.07441396359354258,0.8889782470650971,0.188286108430475,-0.1439518127590418,-0.5258787721395493,0.2535677910782397,-0.4244232811033726,0.35226173512637615,0.21970575349405408,0.6579292872920632,0.919018714223057,0.9688550662249327,-0.6230424814857543,0.5275474679656327,-0.9169789059087634,0.752422187011689,0.31669007102027535,0.18145279632881284,-0.5400081272237003,-0.3149730321019888,0.7452657390385866,0.9351881374605,0.715791410766542,0.9564522900618613,0.3624117923900485,0.9498204477131367,0.01780453883111477,-0.4541915380395949,0.8192301476374269,0.8602554630488157,0.6102428175508976,-0.9733579820021987,0.4264971246011555,0.5561604532413185,0.5009176274761558,0.2626121696084738,-0.6572465696372092,-0.41603243071585894,0.5503065977245569,0.26393656292930245,0.6321577983908355,0.20296507608145475,-0.352389223407954,0.5413424959406257,0.031021200586110353,0.46295754006132483,-0.00906431209295988,-0.15029847482219338,0.4334734412841499,-0.28854973847046494,0.9732773494906723,0.14598620170727372,0.16072001261636615,0.4002660238184035,-0.8420142075046897,-0.09939275216311216,0.8926740880124271,-0.13686889270320535,0.1756424568593502,-0.6242835777811706,0.2209966047666967,0.911384692415595,0.20757508277893066,-0.6686925948597491,-0.8149773110635579,-0.07818693900480866,-0.794814198743552,-0.03942004078999162,0.4379704240709543,0.34256436256691813,-0.143730528652668,0.5639532753266394,-0.019455380737781525,-0.1388027141802013,0.8039204082451761,-0.738223088439554,-0.5563109037466347,0.9478837931528687,0.2832816424779594,0.1517944112420082,0.8020289074629545,0.3793533015996218,-0.2800413598306477,-0.31994583597406745,-0.3067103815265,0.08705788478255272,-0.06190751399844885,0.46685631526634097,-0.9930522269569337,0.5287718330509961,0.9438213426619768,-0.1592071526683867,-0.9813932133838534,0.2604225007817149,0.3815520852804184,0.28106749756261706,0.3267303411848843,-0.9793548821471632,0.5019868384115398,-0.21332638198509812,0.24730527587234974,0.6315829087980092,0.4030018304474652,-0.4683574144728482,-0.887827136553824,-0.9190584239549935,0.6151165775954723,0.8386464426293969,0.224627242423594,-0.26744838198646903,-0.02075502648949623,-0.2978638974018395,-0.5424580220133066,0.5897370902821422,0.3519507572054863,-0.22605707170441747,0.0010619699023663998,-0.2764170584268868,0.7900531119666994,-0.9650092674419284,-0.056720021180808544,0.9805710152722895,-0.326163150370121,-0.25969977863132954,0.561003569047898,0.8737111743539572,0.7886633770540357,0.6798214502632618,0.5750890132039785,0.1350044128485024,0.3873665486462414,0.6022466192953289,0.4764174669981003,0.11259370110929012,-0.3903863071464002,-0.641702092718333,-0.3421031953766942,-0.35421484895050526,-0.5713220434263349,-0.3742157923988998,0.748162710107863,-0.48317111749202013,0.1683599716052413,-0.5747330402955413,-0.3076927657239139,0.9484158013947308,0.45702845323830843,-0.7571209752932191,0.6754664867185056,-0.7511147777549922,-0.417069177608937,-0.5008720457553864,-0.10734085366129875,-0.2798433662392199,-0.8629990960471332,0.3762577446177602,-0.12211505137383938,0.1068847537972033,0.5898452424444258,-0.824643955565989,-0.28926495369523764,0.9808168606832623,-0.17895477637648582,0.4688398144207895,-0.4015773697756231,0.3119899295270443,-0.679247428663075,-0.46164232213050127,0.9923690711148083,-0.8942716442979872,0.8565906654112041,-0.6645395774394274,-0.8371448088437319,-0.31782048381865025,0.9671835317276418,-0.9436687612906098,-0.05902129365131259,0.5801432798616588,0.959597556386143,0.9518394987098873,0.6656794850714505,0.81555813876912,0.21217955648899078,-0.8311998923309147,0.23693311819806695,-0.6585968686267734,0.18668426340445876,-0.8511564810760319,-0.6793698472902179,0.7419535764493048,0.7950212392024696,-0.9060629908926785,0.6255046376027167,0.1368615203537047,0.7259767889045179,-0.3603816661052406,-0.5783290541730821,0.8534944839775562,0.9917399869300425,-0.2679713242687285,0.3554029227234423,0.27853958075866103,0.04391659889370203,0.6185242459177971,0.9909438430331647,-0.6631152671761811,-0.8701172126457095,0.9765059477649629,0.48390740202739835,0.7490455382503569,0.655933293979615,0.8502569072879851,0.9754324043169618,-0.6250204262323678,0.051131097599864006,-0.6265403963625431,0.06013067811727524,-0.023600199725478888,-0.3634931049309671,-0.5034861830063164,0.6983829732052982,-0.6482022474519908,0.24523501563817263,-0.4785234071314335,-0.44601990561932325,-0.23372322181239724,0.5648523727431893,0.5279890950769186,-0.37864738376811147,0.55363136716187,0.23837652849033475,0.45761616388335824,0.7079844493418932,-0.6297441683709621,-0.821243139449507,0.26779262162745,0.3149797082878649,-0.8610887709073722,0.6781546548008919,0.14204547833651304,-0.8946810197085142,0.6986181857064366,-0.47624184330925345,-0.8192243580706418,0.35337149584665895,0.5550440577790141,0.4007945256307721,-0.7327458900399506,-0.23493081703782082,0.9348700908012688,-0.2430718052200973,0.9577141883783042,-0.9949607686139643,0.19138897024095058,-0.2441643262282014,-0.5505991219542921,-0.7675945120863616,-0.9868444046005607,0.7440388118848205,0.734919878654182,0.21317253913730383,-0.14712472958490252,-0.5750036025419831,-0.2062061568722129,0.5743987802416086,0.5324705145321786,0.12503172550350428,0.6921108830720186,-0.4692947524599731,-0.05266463337466121,-0.40201110346242785,0.027333592996001244,0.6187122766859829,-0.212425016798079,-0.9083793312311172,-0.2529025189578533,0.5064280652441084,0.6074948268942535,0.31486386246979237,0.6619788086973131,0.7145470762625337,-0.6231373795308173,-0.009177625644952059,-0.8750290283933282,0.8678980180993676,0.5407449221238494,0.7681838083080947,0.21264428785070777,-0.44054469373077154,0.8117794459685683,0.3005514396354556,0.5390121806412935,0.8071164167486131,-0.6669671372510493,-0.7057078224606812,0.9309440129436553,0.1921543823555112,-0.6815981506370008,0.9124075365252793,0.8845375264063478,0.9608094957657158,0.6805995041504502,-0.32571175741031766,-0.933869268745184,-0.5007322067394853,0.6032517342828214,0.4144042953848839,0.5429698158986866,-0.5216850889846683,-0.38799794809892774,-0.6986638456583023,0.1146134133450687,-0.6864285380579531,0.4138693269342184,-0.9179944456554949,0.06132700713351369,0.30920796003192663,-0.2004729937762022,0.12288294127210975,-0.9513711966574192,0.22246283059939742,0.8476444408297539,-0.593169619794935,0.5218697139061987,0.07650641584768891,0.1548607535660267,-0.6005991888232529,0.7324319793842733,-0.03571060160174966,-0.14768474036827683,-0.15464844554662704,-0.07790272729471326,0.9684208943508565,0.8643969604745507,0.6889880346134305,0.6572637069039047,-0.5825548265129328,0.3866389854811132,0.4416890060529113,0.8432293469086289,-0.5874808831140399,0.728507845196873,-0.27100466284900904,0.5095586264505982,0.5372367864474654,0.9280679076910019,0.6515635722316802,-0.5933601544238627,-0.3235156103037298,0.4995429655537009,0.050750048365443945,0.99384680762887,0.8110156962648034,-0.01446973904967308,-0.551242426969111,0.3852669964544475,0.6761364620178938,0.8144594859331846,0.3041054052300751,-0.43764712335541844,0.8247377504594624,-0.47310148319229484,-0.283871169667691,-0.14196826377883554,0.34120019152760506,0.9451872929930687,-0.3003122373484075,0.013333439361304045,-0.13082632701843977,-0.4101115087978542,0.6534109017811716,0.7648046570830047,-0.7408490180969238,0.07103208871558309,0.6928319572471082,-0.6131074228323996,-0.1979618244804442,0.040637388825416565,-0.24352009873837233,-0.9502691333182156,0.8857467244379222,0.7268083854578435,0.06614647386595607,0.9376812134869397,0.4705094834789634,-0.4761990513652563,0.9008894404396415,-0.11860534129664302,0.690921753179282,0.15623389650136232,0.8998803314752877,-0.9463807237334549,0.3638993501663208,0.20300121419131756,0.11823298176750541,0.9163729478605092,0.1852057296782732,0.7818609420210123,0.26483982102945447,0.2212594342418015,0.652662378270179,-0.7272110162302852,0.5449222554452717,0.3871334306895733,-0.10575939016416669,0.8877484407275915,-0.3068551109172404,0.23261730233207345,0.6064192089252174,-0.7592415832914412,-0.4170803497545421,-0.8823956358246505,0.7253721468150616,0.4522045315243304,0.6333824298344553,0.7338434541597962,0.48430676758289337,-0.16618351312354207,-0.26138258865103126,0.5124307610094547,0.7975240279920399,-0.7952002105303109,0.15927122253924608,0.47016717912629247,-0.521340062841773,0.10898198513314128,0.27975471783429384,0.6902911667712033,0.5220805234275758,-0.46156634157523513,0.9038127441890538,-0.5207463558763266,-0.5218443833291531,0.7565994532778859,0.32592960447072983,0.9458935521543026,0.3214913886040449,-0.9642327730543911,0.07496299361810088,-0.30764862569049,-0.35057627595961094,-0.6963295200839639,0.949930521659553,-0.17758914548903704,-0.5452582421712577,-0.5910825892351568,-0.9645152823068202,0.6074104383587837,0.19458361947908998,-0.15535479690879583,-0.23711115587502718,-0.5300852423533797,-0.8480483554303646,-0.31589072989299893,-0.9861780246719718,-0.878437599632889,-0.13912524562329054,0.12094989512115717,-0.7038258370012045,0.6252680504694581,-0.7580497963353992,-0.7546558366157115,0.5711801149882376,-0.5044398978352547,-0.9826175598427653,-0.3790435832925141,0.9891435159370303,-0.5521447863429785,0.12012404296547174,-0.08758308133110404,0.26580910477787256,0.8821875504218042,-0.9843729487620294,-0.7056889631785452,0.502107041887939,0.3950358317233622,-0.1820778646506369,0.7568977228365839,-0.6054533240385354,0.14303870918229222,-0.5741584226489067,-0.03178185783326626,0.5378264114260674,-0.41038985550403595,0.468524849973619,-0.006166187115013599,-0.7019937853328884,0.47256587259471416,-0.9847284494899213,0.2763124341145158,-0.3487156555056572,-0.1326995394192636,0.42994727846235037,-0.8516898504458368,0.12063024519011378,0.9247046899981797,-0.024200744926929474,0.400816663634032,-0.8638304714113474,0.7299619852565229,0.8997200196608901,0.7727248226292431,0.6455196640454233,0.9482741779647768,-0.6317885019816458,0.22168157948181033,-0.07579459110274911,-0.7973923156969249,-0.24404086265712976,-0.27648989763110876,0.40071361837908626,0.32686067651957273,0.1511171404272318,-0.01686895824968815,0.9733139122836292,-0.5239511993713677,-0.26792706549167633,0.15564996330067515,0.964889036025852,-0.41439144499599934,-0.1339119509793818,0.7405646131373942,-0.9983422844670713,-0.8839104641228914,0.6454830635339022,0.8934236620552838,-0.06784626841545105,0.07977306330576539,-0.3466570610180497,-0.9948582681827247,0.7500540311448276,-0.6854993528686464,0.4486045967787504,0.1792682115919888,0.6187948333099484,-0.32422931771725416,-0.022195374593138695,-0.008445380255579948,0.780067487154156,0.7629939690232277,0.2599009000696242,0.03478199243545532,-0.5663161622360349,-0.900215064175427,0.7753400229848921,-0.5289992685429752,-0.707330362405628,0.32610837183892727,-0.8942496622912586,-0.032415707129985094,-0.7739575090818107,0.5806065225042403,0.02818355616182089,0.2578087975271046,-0.2897275690920651,0.6179233458824456,0.9958486394025385,0.9871703507378697,-0.9083877857774496,0.3992023905739188,0.2755417786538601,-0.4556822357699275,0.7675682050175965,-0.5923568704165518,-0.32106146961450577,0.9080423931591213,0.245083037763834,0.42266010073944926,-0.10920622572302818,-0.11105235852301121,0.9047576552256942,0.28846421046182513,0.6960375192575157,-0.1651698281057179,0.7143462309613824,0.6187652265653014,0.7811862560920417,-0.7032694285735488,-0.07558254897594452,-0.0891563929617405,-0.2520897858776152,-0.9284444632939994,-0.550935847684741,-0.08198887249454856,-0.5954544460400939,0.6923310267738998,-0.2693019127473235,0.49587961100041866,0.5651723770424724,-0.002074365969747305,-0.7785477750003338,-0.21045019524171948,0.9637790494598448,-0.31613182090222836,0.859469682443887,0.18341169320046902,-0.19221067987382412,0.6621819189749658,0.16329110553488135,0.799391089938581,0.06327207386493683,-0.27326027676463127,-0.7264249417930841,0.6995085985399783,0.16570459865033627,0.11053593410179019,0.15149463573470712,0.9868673579767346,0.12837699800729752,0.12452364480122924,-0.8969607739709318,-0.4371086657047272,-0.4040553537197411,0.7974876770749688,-0.910877387970686,-0.9823171934112906,0.17584050633013248,0.09413483878597617,0.15312857972458005,-0.19573691627010703,-0.8644733051769435,0.3966589067131281,0.7989574973471463,-0.29602164030075073,0.9309877990745008,-0.481087283231318,0.673882566858083,-0.6215372905135155,0.06590118864551187,-0.5028462754562497,-0.5214905221946537,0.5548378955572844,0.08806362608447671,-0.5621228055097163,0.36038285633549094,-0.47263932786881924,-0.18252119421958923,0.691302799154073,-0.8326564175076783,-0.6585943661630154,-0.5096089984290302,0.02729023154824972,0.17395759420469403,-0.7610281724482775,0.9577509355731308,-0.26189319835975766,0.18340970110148191,0.7046318920329213,0.9180023926310241,0.2412827955558896,-0.697553392034024,0.9122892180457711,0.13849519938230515,-0.02852047048509121,-0.32893411768600345,0.6930237477645278,-0.7766492362134159,-0.4926302316598594,0.6943468237295747,0.9652053266763687,0.3931409358046949,-0.6437252466566861,0.09317011712118983,-0.8914483753032982,-0.9122128654271364,0.1744078383781016,-0.010336385108530521,-0.46166148222982883,0.9306381940841675,-0.12480952264741063,-0.6604438563808799,0.13309458456933498,-0.10322857974097133,-0.4529058509506285,0.8515026741661131,-0.5948054832406342,0.2942967261187732,0.7701737997122109,-0.9839453240856528,0.38911173306405544,0.3543392401188612,0.5716548548080027,0.2462423867546022,0.5909993881359696,0.39421114791184664,0.5761413439176977,-0.21142860781401396,-0.8336176020093262,0.9819431551732123,-0.8844382939860225,-0.930103890132159,-0.35443412279710174,-0.060217336751520634,-0.476466063875705,0.08212185837328434,-0.23734847269952297,-0.8486815602518618,-0.48068629764020443,-0.1609235666692257,0.11498483130708337,-0.4788867365568876,0.841369672678411,0.3125288672745228,0.2816920126788318,-0.4201072920113802,-0.25342086935415864,0.5901133618317544,0.10462131397798657,0.7282016980461776,-0.7754491837695241,0.06007838761433959,0.042300458531826735,-0.4139782334677875,-0.10374922957271338,-0.11963264876976609,-0.6839374997653067,0.13846245408058167,-0.5545577886514366,-0.17208508495241404,-0.7499306150712073,0.5473920996300876,-0.7658422817476094,0.6144495070911944,0.9914775639772415,0.061455258168280125,0.7885452215559781,-0.44601532490924,0.5734391864389181,-0.3621896547265351,0.42684692284092307,-0.7954609440639615,0.5156341064721346,-0.035759109538048506,-0.4158247890882194,0.8773692711256444,-0.8310744282789528,0.5900266291573644,0.12982253823429346,0.6143721342086792,0.31675250781700015,0.6816624705679715,0.8176784752868116,0.29390453128144145,0.9911943282932043,-0.3635234981775284,-0.9331537312828004,-0.29711447563022375,-0.5318688726983964,-0.0380399813875556,0.794349068775773,0.7975107743404806,0.5471511073410511,-0.059409706853330135,0.6981401024386287,-0.46502364380285144,-0.005860193632543087,0.8031373205594718,-0.9508482608944178,-0.10086466325446963,-0.8904747255146503,-0.7778678606264293,0.9865828356705606,-0.08663072530180216,0.025668932124972343,-0.10929193906486034,-0.016699763480573893,-0.14110320946201682,-0.40258787339553237,0.7911371486261487,-0.12555465009063482,0.2569202287122607,-0.052836027927696705,0.9797800187952816,0.947400591801852,0.001879165880382061,0.825140452478081,0.8398956824094057,0.22863970277830958,-0.32774478290230036,0.48512447346001863,0.9120749798603356,0.4462048183195293,-0.03791090799495578,-0.3402557675726712,0.10416484251618385,0.904590102378279,-0.36439222330227494,-0.09822658495977521,-0.3753088042140007,0.4892606409266591,0.3463284531608224,-0.6828473983332515,0.4400799800641835,0.3848638688214123,-0.6550595732405782,-0.6376576814800501,-0.8579600942321122,0.7377993264235556,-0.1517905588261783,0.03329747077077627,-0.6793234637007117,-0.5778140667825937,0.36278230091556907,0.49090379662811756,-0.4814435010775924,-0.9985703537240624,0.5579316155053675,-0.45957910967990756,0.05723361438140273,-0.8535933457314968,0.6440501515753567,0.9247717242687941,0.6769784735515714,-0.6174455634318292,0.09616873646155,-0.40091237891465425,-0.6682338868267834,-0.49180732760578394,-0.28974340623244643,0.04537534108385444,-0.13842645520344377,0.828182231169194,0.010668040253221989,0.4470658269710839,-0.8771741823293269,0.4811354731209576,0.504350982606411,-0.3509359024465084,0.31976551935076714,-0.8513204813934863,-0.5269766403362155,0.1271139057353139,-0.41461836686357856,-0.9768754141405225,0.8383581102825701,-0.40618951106444,0.8073194879107177,-0.06247717095538974,-0.28325851261615753,0.05774431303143501,-0.7176375035196543,-0.39026243705302477,-0.03907771687954664,0.2827196759171784,0.5006014159880579,0.5280448873527348,-0.8345242510549724,0.7928278045728803,-0.6779969925992191,-0.38929982017725706,-0.1735362345352769,-0.5053812768310308,0.522887525614351,0.15304068848490715,0.7212841087020934,-0.8864502706564963,-0.24330578511580825,-0.034808751195669174,0.8505546012893319,-0.7454536431469023,0.8304986930452287,-0.09090904658660293,-0.2854260425083339,0.8740170975215733,0.8667908487841487,0.26531128818169236,0.8825164036825299,0.030208629556000233,0.7982119075022638,0.2285746424458921,0.530139206442982,-0.08876625960692763,-0.27304346580058336,0.8128331135958433,0.02563417237251997,-0.6413622270338237,0.3581371414475143,0.6171062905341387,0.5238415906205773,0.26208829786628485,-0.27352702524513006,0.9332368327304721,-0.07703797984868288,0.13027305714786053,-0.009950338397175074,0.9399932017549872,0.11671493016183376,-0.9922750787809491,0.04535932466387749,-0.9278658414259553,0.5826425603590906,-0.3062538094818592,-0.04031345993280411,0.6992729878984392,0.08280405262485147,-0.9558506961911917,-0.600311805959791,-0.1763924495317042,-0.5994396763853729,-0.7569130258634686,-0.7889083456248045,-0.03132308507338166,0.7680854331701994,0.6814476680010557,-0.9604813102632761,-0.5219861743971705,-0.6697461581788957,-0.01690447609871626,-0.10595754766836762,0.4233398251235485,0.8787080799229443,0.9451423930004239,0.2510929200798273,0.9453947423025966,-0.605208401568234,0.35944027127698064,0.5506423856131732,0.29259745310992,-0.12770966347306967,-0.18298870977014303,0.6033032624982297,-0.8284570854157209,-0.5521424999460578,-0.8472338696010411,0.4397907620295882,-0.7016487359069288,0.3786004092544317,-0.6575640877708793,0.1073231091722846,-0.6656673895195127,0.6481633340008557,0.41141520580276847,0.6770453592762351,-0.6802745196036994,-0.42332395538687706,0.1470752372406423,-0.42651050677523017,-0.41593537060543895,0.2819257229566574,-0.1918209004215896,-0.9514502617530525,0.9710617163218558,-0.8986415644176304,0.08244668785482645,0.27207122277468443,-0.43046595389023423,0.774158910382539,0.36717610573396087,0.7445468213409185,0.8735233037732542,-0.6775910425931215,-0.6141855749301612,-0.8771303677931428,-0.9169460507109761,0.02459303755313158,-0.6420177728869021,0.9908563070930541,0.23178415931761265,0.09845294943079352,0.4934911811724305,-0.2011840441264212,0.6835513389669359,0.19741789251565933,0.7954060980118811,-0.9143033097498119,-0.15886265086010098,-0.24901872035115957,-0.4537857542745769,0.4669840936549008,0.9980772137641907,-0.1222031912766397,0.8277736287564039,0.048768175300210714,-0.9712714608758688,0.9195066834799945,-0.25363354617729783,0.4841039776802063,-0.23112560017034411,0.1506702029146254,-0.241081272251904,0.7499046316370368,-0.7069828975945711,-0.7831549835391343,0.04810973256826401,-0.06674506049603224,-0.7601171764545143,0.6554671572521329,-0.6519627054221928,0.03393615735694766,-0.47853923588991165,0.23673469200730324,0.31832944601774216,-0.8651250298134983,0.7562468275427818,-0.7596326223574579,-0.3519425643607974,0.9776021605357528,-0.3319223360158503,-0.6034364881925285,-0.8683830117806792,-0.3340725637972355,0.2136842468753457,0.3781805387698114,0.5194547884166241,0.2569776545278728,0.02503013424575329,-0.363949803635478,-0.4332785252481699,-0.1146582025103271,0.1181690189987421,-0.09190217684954405,0.8958623805083334,0.9246354978531599,-0.62794692767784,0.38684427086263895,-0.5225849184207618,-0.7289663786068559,-0.05939682945609093,-0.7245880630798638,0.784605301450938,-0.36184992687776685,-0.5568111804313958,-0.8263385579921305,0.3026389474980533,0.30134778562933207,0.630478136241436,-0.23602106655016541,-0.6461761984974146,0.5340298488736153,0.4519138364121318,-0.29254632256925106,-0.8722720006480813,0.3460056050680578,0.5092827226035297,0.8064716751687229,-0.02961447974666953,0.5844351970590651,0.9443505872040987,0.16699196491390467,-0.5545165757648647,0.00655820406973362,-0.5083445296622813,-0.2903408771380782,0.8702854565344751,-0.6417495552450418,0.0938989999704063,-0.21679218485951424,-0.6533661372959614,0.4846444712020457,0.8121257275342941,0.1474476559087634,0.24144351109862328,-0.7459715148434043,0.4916301295161247,-0.3069871626794338,0.8502253852784634,-0.061595451552420855,0.1745476583018899,0.9172322871163487,-0.2413058285601437,0.32434022333472967,0.2587311682291329,-0.6449032039381564,0.36657946603372693,-0.7855823752470315,-0.2560401866212487,0.41267565730959177,0.09996732510626316,-0.2925685290247202,0.27943851007148623,-0.364244001917541,0.819186030421406,0.672807386610657,-0.574729647487402,0.9332620021887124,-0.9457762385718524,0.46519675478339195,-0.09704134985804558,0.616766975261271,0.5826711538247764,-0.2594944699667394,-0.6132713356055319,-0.4010034860111773,-0.24366614362224936,-0.6617226745001972,-0.37690247036516666,0.30268268659710884,0.6028086137957871,-0.3612241670489311,0.7196062873117626,-0.42458384670317173,-0.4521301407366991,0.4377684760838747,0.30487276799976826,-0.9865763010457158,-0.005994281265884638,-0.800260981079191,0.2994276857934892,-0.6100876438431442,-0.3399088862352073,0.6398272425867617,-0.5319621851667762,-0.656816144939512,0.31534639233723283,0.6790977823548019,0.940178900025785,-0.28434687526896596,-0.3464458682574332,-0.3688731072470546,0.3600606368854642,0.4875883311033249,-0.5283064544200897,-0.36986326333135366,-0.3951854519546032,-0.9478317424654961,-0.115932397544384,0.4251848701387644,-0.929326465819031,-0.27480276161804795,0.21850346960127354,-0.6692042537033558,-0.8428867170587182,0.9693160294555128,0.027289847377687693,-0.7452046764083207,-0.6034352234564722,-0.3993304008617997,-0.3235238087363541,0.2144199265167117,-0.11153750121593475,0.3112690346315503,-0.2507949033752084,0.750102590303868,-0.6828944552689791,0.16971358703449368,-0.7087840386666358,0.9948582262732089,-0.5226632603444159,-0.9862049696967006,0.03407544828951359,0.8014550502412021,0.8281524139456451,-0.6226210515014827,0.8016042290255427,0.1281269732862711,-0.825176399666816,0.3693239251151681,0.9971199524588883,0.18494031205773354,-0.4632844915613532,-0.30939992517232895,0.7090072734281421,0.5128225698135793,0.9796882220543921,0.2893286533653736,-0.12733124196529388,-0.8296357616782188,-0.13895774679258466,-0.8332185940816998,-0.3682139702141285,-0.7585202632471919,-0.12510327715426683,-0.6167427180334926,-0.3055602731183171,-0.7925458196550608,-0.6711687343195081,-0.8894686289131641,-0.765840926207602,0.011971656233072281,-0.8238572971895337,0.4269515089690685,-0.8180290376767516,0.18303859466686845,0.5208412241190672,0.7659128550440073,0.8037220523692667,-0.35488614439964294,0.5359867066144943,-0.3872255925089121,0.9514677291736007,0.7651144894771278,0.6868763426318765,0.37367184506729245,0.2563007469289005,0.790996921248734,-0.3109192131087184,0.195905189961195,0.3956928486004472,-0.7977714906446636,0.5415077717043459,-0.5559266535565257,-0.1390887084417045,-0.8265108657069504,0.07937795715406537,0.30593966506421566,-0.5459942589513958,0.8867476498708129,-0.07828292576596141,-0.9275439409539104,0.21052771946415305,-0.34806383261457086,-0.7089721942320466,0.8000054750591516,0.8643614728935063,-0.9806342031806707,0.21070719882845879,-0.874578676186502,-0.09703865135088563,-0.19253109488636255,-0.9847537162713706,0.9576562973670661,0.9530382486991584,-0.9992301519960165,-0.656030457932502,0.4646225795149803,-0.25656255101785064,-0.9689464997500181,-0.7225570557639003,0.7943890527822077,-0.6496143909171224,-0.2255965624935925,0.655448280274868,-0.3585585644468665,-0.3860232695005834,-0.2736221947707236,-0.15291470801457763,-0.2545372569002211,0.8065099776722491,-0.9275291990488768,-0.681299002841115,-0.33863984886556864,0.43162516597658396,0.3165229167789221,-0.2950082551687956,-0.8912289645522833,0.11083368957042694,0.20282151782885194,-0.7049751142039895,-0.25177840422838926,0.16421218402683735,0.745389605872333,0.7442023018375039,-0.8462865785695612,-0.8419255968183279,-0.28153597842901945,-0.9901500195264816,-0.7241641101427376,-0.2805263330228627,0.8344219317659736,-0.7917121793143451,0.7931855581700802,-0.7637738343328238,-0.4883200880140066,-0.9840501924045384,0.11075117159634829,0.017440592404454947,-0.5356694255024195,0.746921990532428,-0.2776484675705433,0.5481728757731616,-0.033378524240106344,-0.04429549444466829,-0.10751903476193547,0.195024854503572,0.10778127331286669,-0.2586606787517667,0.13713010679930449,0.9177511376328766,0.29051553318277,0.7982225180603564,0.9238308966159821,-0.4389426256529987,0.5283899991773069,-0.14537485036998987,0.9260156159289181,-0.9053999646566808,0.64812555257231,0.18212696071714163,0.5801894045434892,0.13374857371672988,0.5539854373782873,0.5354037280194461,-0.14348880387842655,0.540002578869462,-0.4788194433785975,0.24329234613105655,0.8587449956685305,-0.8895636536180973,-0.6482267375104129,0.9603990926407278,0.7817568113096058,0.17339487140998244,-0.6452933847904205,-0.3858849951066077,-0.9075233954936266,0.25370024237781763,-0.15901391068473458,-0.824596593156457,-0.4925091862678528,-0.6901816795580089,0.3182058557868004,-0.3886173749342561,0.30106998747214675,-0.8844724968075752,0.5834728465415537,0.3051224024966359,0.7051437450572848,-0.3043785970658064,0.26388535648584366,-0.077045111451298,-0.4099409347400069,-0.4613157673738897,-0.028433462139219046,-0.35778623213991523,-0.6214946899563074,-0.5060801138170063,-0.6802155170589685,-0.9114958411082625,0.44898598873987794,0.7789570651948452,-0.22643668530508876,0.06014917092397809,-0.7151687950827181,-0.8399205831810832,0.6304660621099174,-0.4884903314523399,-0.8753592832945287,0.2668997407890856,0.9938320051878691,-0.07813392579555511,0.805040555074811,-0.15915140509605408,-0.9649232714436948,0.5783766875974834,-0.9842753442935646,0.8328219261020422,0.839353050570935,0.1218319102190435,-0.06154655525460839,-0.9199749659746885,0.5955483885481954,-0.9178680656477809,0.31497361371293664,0.9730990678071976,0.14828743506222963,-0.23119613388553262,-0.8454454196617007,0.8832442946732044,0.2584864185191691,0.5717708664014935,-0.5148376282304525,0.15724220825359225,-0.7009063325822353,-0.1788199464790523,0.9828679473139346,-0.09325744723901153,0.31516083935275674,0.20017986511811614,0.3717537485063076,-0.9021695870906115,0.8837359515018761,-0.429030928760767,-0.3271269756369293,-0.07681838748976588,0.30791757302358747,0.2834125170484185,0.6265434925444424,0.3286596271209419,-0.5799623113125563,0.6393098481930792,0.8026744253002107,0.7247448456473649,-0.19127376191318035,0.07507487805560231,0.3299603471532464,0.42909813579171896,-0.1479739984497428,-0.5490943593904376,-0.9260282889008522,-0.7365663452073932,0.05411994177848101,0.5086670056916773,0.09107916429638863,-0.1466556298546493,-0.35392530309036374,0.45044171065092087,0.8216210855171084,0.13528529508039355,0.8967953976243734,-0.712369027081877,0.06737048923969269,0.32587708346545696,0.1847684197127819,-0.19648391287773848,-0.1184745361097157,0.5535768908448517,0.5198932220228016,0.07642414513975382,-0.7390581471845508,-0.546422712970525,-0.6299917874857783,0.286714481189847,-0.4411846334114671,-0.2583732255734503,-0.6662791129201651,0.02843194082379341,-0.5128446198068559,0.33592309430241585,0.3876677746884525,-0.7236750200390816,-0.5347456471063197,-0.799923955462873,0.5927489036694169,0.3344121309928596,0.7770557175390422,-0.5155924991704524,-0.4514510282315314,-0.927915336098522,-0.4073666031472385,-0.9326984290964901,-0.3857524492777884,-0.3268188778311014,0.6175856059417129,-0.7246126332320273,0.2620249642059207,-0.49948192574083805,-0.706440968438983,-0.7039089994505048,-0.21956677036359906,0.5831201574765146,0.36076165130361915,-0.11036693817004561,-0.8832651637494564,-0.6887406930327415,0.6486791921779513,-0.7733337092213333,0.35528411669656634,-0.4096832340583205,-0.39275487745180726,0.5986116705462337,-0.6901682885363698,-0.22317061806097627,-0.5897208247333765,0.07801408367231488,-0.9175480753183365,0.2463871669024229,0.4913287400268018,-0.9663192294538021,-0.6938777505420148,0.9786817813292146,0.24802111601457,0.339431993663311,0.579849433619529,0.0006422447040677071,-0.36155880615115166,0.6066313190385699,-0.926031329203397,-0.2053356203250587,0.2998161381110549,-0.18702282896265388,-0.412002838216722,0.45273178489878774,0.9928294513374567,-0.14574113581329584,-0.2266524680890143,0.2929706182330847,0.4547851220704615,0.27195147005841136,0.5663891080766916,0.6567358113825321,0.8444175715558231,-0.7736395583488047,-0.42246121214702725,-0.166117446962744,0.2628550548106432,0.4199907649308443,-0.8954346692189574,-0.25499567948281765,-0.5352984801866114,0.7539628962986171,-0.6523040975444019,0.26813641376793385,0.7279349509626627,0.2079971320927143,-0.7761092805303633,-0.3395591941662133,0.4971254551783204,0.494609581772238,0.43903578352183104,-0.39918059622868896,0.526073670014739,0.5522231198847294,-0.546584127470851,-0.38841967144981027,0.3606693265028298,-0.6536129890009761,0.44315084954723716,-0.277228157967329,-0.8871892145834863,-0.933834174182266,-0.2963266340084374,0.9127181903459132,0.5733603704720736,-0.8048189743421972,-0.6212113434448838,0.09287757845595479,0.6601614821702242,0.2837504055351019,0.8559424304403365,0.47993057454004884,0.7894545695744455,0.8835769598372281,0.35536898393183947,0.3596491953358054,0.022759971674531698,-0.6346608926542103,-0.8421091078780591,0.6132922181859612,0.007054767571389675,-0.49413391575217247,-0.4982786001637578,0.5890465695410967,0.9564397833310068,-0.9357061013579369,0.5403378941118717,0.10521608218550682,-0.819943833630532,0.2965105581097305,0.7342786700464785,0.7980831856839359,-0.262235508300364,-0.8964554839767516,-0.6617390876635909,0.4421413508243859,0.1565105775371194,0.31051552575081587,0.6453375616110861,0.6855135369114578,-0.6215787343680859,0.5272567584179342,-0.7172678648494184,0.4150534621439874,0.9260801272466779,-0.843949566129595,-0.873912557028234,0.18986041564494371,-0.7404196243733168,0.0024727368727326393,-0.7308167815208435,-0.5761599419638515,0.9550548642873764,0.30632159672677517,-0.6354335900396109,0.6120357494801283,0.14221142418682575,-0.5457929004915059,-0.23093660967424512,0.7032860484905541,0.42658190429210663,-0.8077908656559885,-0.4963055429980159,0.026729795150458813,0.07217241358011961,-0.6592344725504518,-0.6424898854456842,-0.7213104362599552,-0.3995234686881304,-0.05328724207356572,0.10765067348256707,0.8060393580235541,0.5876762648113072,0.27718512155115604,0.782225183211267,-0.823863323777914,0.5002806959673762,0.14701934112235904,-0.8541630855761468,-0.8086716025136411,0.5803854600526392,0.3876299234107137,0.3878319198265672,0.1241180133074522,-0.7447891212068498,-0.5991415176540613,-0.9026698851957917,0.43675996642559767,0.823321077041328,0.9419451430439949,-0.31563742412254214,0.25058588245883584,0.1650793612934649,0.4151193997822702,-0.22323316475376487,-0.8263858496211469,-0.9608484166674316,-0.2544541102834046,-0.7879665731452405,-0.5348360491916537,0.41419871198013425,0.9067905214615166,-0.11428730189800262,-0.6598724327050149,0.8123037167824805,-0.6016952246427536,-0.6919271238148212,0.6020142338238657,-0.10107874451205134,-0.9445916716940701,0.5328816846013069,0.993764866143465,0.0581117644906044,0.1750849112868309,-0.44661604799330235,-0.052573482505977154,-0.5737819699570537,0.8555380562320352,-0.9780659526586533,-0.6860291147604585,-0.465034362860024,0.25504460697993636,0.5239227004349232,0.4283043658360839,0.8427533344365656,0.5525696370750666,-0.9881504136137664,0.2491758526302874,-0.12095968844369054,0.8313904795795679,0.8725707964040339,-0.9537957874126732,0.888564052991569,-0.8949543726630509,0.7350521204061806,-0.3028981410898268,0.5578720546327531,-0.6724955104291439,-0.5606554136611521,-0.9587088203988969,-0.23836530838161707,-0.45326462062075734,0.8051027399487793,-0.3164419229142368,0.33340674452483654,-0.21493012132123113,0.5623592045158148,0.4912394192069769,0.3705643159337342,0.8225540854036808,-0.3011108385398984,-0.5135801839642227,-0.5313092982396483,0.8314799191430211,-0.4051300035789609,0.3407765869051218,-0.5951428203843534,-0.6678059655241668,0.7663776935078204,-0.16964937699958682,0.7433074531145394,0.9730133055709302,-0.8099836781620979,-0.6104344176128507,0.11702401656657457,0.6967706307768822,0.6018735421821475,0.044350994285196066,-0.9677710803225636,0.687815445009619,-0.8733476679772139,0.3335700239986181,0.38455335702747107,0.3848475506529212,-0.7451958190649748,0.9380891937762499,-0.1599493552930653,0.6866629212163389,-0.4514699764549732,-0.7960754153318703,-0.22986652562394738,0.34562228713184595,0.833799141459167,0.2868526899255812,0.8811871041543782,-0.6586843533441424,0.608768061734736,-0.4340095608495176,-0.7818341250531375,0.3788195876404643,0.6029380285181105,0.5160275236703455,0.9240401755087078,-0.9880635654553771,0.4598906352184713,0.5699421958997846,-0.3551652957685292,0.9694201587699354,-0.11242134496569633,-0.4112097737379372,0.25684706633910537,0.042807094752788544,0.4568691300228238,-0.6209554900415242,0.23187029268592596,-0.866057095117867,-0.16279885359108448,-0.24182067392393947,-0.7147737061604857,0.9908409742638469,-0.1519932528026402,0.25612920243293047,0.06571640260517597,0.8495079996064305,-0.26546056661754847,-0.05736595718190074,0.2602591849863529,-0.5184648344293237,-0.3820435106754303,-0.940469944383949,0.7891659527085721,0.9579739649780095,-0.375212833750993,-0.5479958755895495,-0.6024938086047769,0.4548383383080363,0.7639708290807903,0.17295554699376225,0.8863973910920322,0.8470344301313162,-0.6766774109564722,0.628261283505708,-0.8177750017493963,0.37643484119325876,0.1537513262592256,-0.7272557835094631,-0.024355059023946524,-0.3958997717127204,-0.811759352684021,-0.1399151491932571,-0.6372712911106646,-0.3805502438917756,-0.5341799375601113,-0.26710182102397084,0.2911105086095631,-0.4418765543960035,0.13930450193583965,-0.8660760032944381,-0.5062332735396922,0.16690440522506833,0.18309911852702498,-0.10349720111116767,-0.04395332187414169,-0.790879531763494,0.9539798996411264,-0.24778486927971244,-0.640344719402492,-0.10706764226779342,0.37609656946733594,-0.034949591383337975,0.5851158895529807,-0.923051739577204,-0.3823178024031222,-0.7096286276355386,-0.9424760267138481,-0.653978165704757,0.29190183710306883,0.5161283588968217,0.7881294754333794,-0.1302963807247579,-0.029979273676872253,-0.23841293063014746,0.5299035138450563,-0.8289937651716173,-0.21481876214966178,-0.10886325780302286,0.764968887437135,0.7598611325956881,-0.30958195542916656,0.6675752657465637,-0.4043888202868402,0.514222698751837,0.7638089321553707,-0.627644807100296,-0.6162927318364382,-0.1238213861361146,0.1856528464704752,0.6831507654860616,-0.859016302973032,-0.9243169771507382,0.47782596480101347,-0.4724234393797815,0.47726357728242874,-0.21182237332686782,0.6709090596996248,-0.4142981101758778,0.8644757494330406,-0.1941877524368465,0.6822498892433941,0.0012257765047252178,-0.17670531617477536,0.6144479038193822,-0.839545208029449,0.7356962948106229,-0.2529089003801346,0.1286826995201409,-0.2412196579389274,-0.4811020391061902,-0.5731781334616244,-0.7325230576097965,-0.8727877936325967,0.6953548700548708,0.804927266202867,-0.40315757086500525,0.6277537532150745,-0.44842223823070526,-0.7545588603243232,0.9145889575593174,0.02088490081951022,0.7619973160326481,-0.21376285329461098,-0.410637179389596,0.5183419096283615,0.1928204307332635,-0.6182039421983063,-0.2346208137460053,-0.7651218469254673,-0.008348364382982254,-0.36147381411865354,-0.47514584893360734,-0.7298188749700785,0.1521850200369954,-0.0333730042912066,0.07624357752501965,-0.2501375046558678,-0.6450524954125285,0.7970927134156227,-0.7926503922790289,-0.37965986505150795,0.9207898685708642,-0.25991902593523264,0.7829461032524705,0.40261386428028345,-0.7663018740713596,-0.5689329667948186,0.28140042815357447,-0.13631564006209373,0.6124018579721451,-0.6744755101390183,-0.11227106116712093,0.15996398497372866,-0.8231411008164287,-0.828763974364847,0.7737239110283554,-0.05341014638543129,0.1102412473410368,0.41016481863334775,0.7520127026364207,0.6158095519058406,-0.4746897267177701,-0.9915431933477521,0.36425937013700604,0.7821972901001573,0.6558393780142069,-0.42131741158664227,-0.9833010574802756,0.3529475019313395,-0.25648536207154393,-0.6963990917429328,-0.5516755138523877,-0.022359236609190702,0.33723012497648597,-0.4248330742120743,-0.6270806780084968,0.8402235182002187,0.18339911475777626,-0.8716973797418177,-0.6624011034145951,0.3613684228621423,-0.6014224062673748,0.9274054048582911,-0.8989310176111758,0.48815455427393317,-0.29592547519132495,0.8950984533876181,-0.9532263334840536,0.8951207366771996,-0.5154671892523766,-0.7952085705474019,-0.24641818972304463,-0.8734624111093581,0.26921570440754294,0.14546684129163623,-0.7220918419770896,-0.919152295216918,0.37595519702881575,0.7120303581468761,0.1694638398475945,0.7824872336350381,0.341257284861058,0.18768368614837527,-0.15704297553747892,-0.46803342225030065,-0.8751233755610883,-0.14497256418690085,0.2398969754576683,-0.3068714877590537,0.7577659175731242,0.1375714549794793,0.9796436112374067,0.706992351450026,-0.9504101723432541,0.03539943043142557,-0.33629449037835,-0.7945395219139755,-0.24814191879704595,0.955302803311497,-0.43791394168511033,0.8728245235979557,0.9814269547350705,-0.7763820737600327,0.1483184932731092,0.14063498005270958,0.6554746017791331,-0.9116039779037237,0.9544020621106029,0.5434812353923917,0.7468661181628704,0.058434299658983946,0.7815771265886724,0.3713245573453605,0.07476750621572137,-0.44238630263134837,0.806697366759181,-0.780407190322876,0.287346872035414,-0.9885312598198652,-0.8980368017219007,-0.29885673988610506,0.8661468676291406,0.9972618003375828,-0.7170261372812092,-0.7265149909071624,-0.9313411870971322,0.12418865226209164,-0.34818908479064703,0.6949206232093275,-0.5391675718128681,0.5987681234255433,0.5828413376584649,-0.013129546772688627,-0.24094556691125035,0.1792259467765689,-0.5062744291499257,0.9953347835689783,-0.5642853938043118,-0.04651502659544349,-0.07906107045710087,-0.11226625833660364,0.012630697339773178,0.19560662051662803,-0.6735540400259197,0.8026812388561666,0.5894368514418602,0.7127049490809441,0.2472032462246716,0.37355047184973955,-0.30667230067774653,-0.4110044096596539,-0.3156123273074627,-0.883750478271395,0.4783308166079223,-0.5538051407784224,0.7912195450626314,-0.4626795328222215,0.03576914593577385,-0.5579862957820296,0.4255427052266896,0.4108819458633661,0.031033964827656746,-0.23891686042770743,0.5220524636097252,-0.052182561717927456,-0.45932709192857146,-0.47792834462597966,0.39957737550139427,0.757739594206214,-0.8515474731102586,-0.35285648703575134,-0.6435065558180213,-0.9729849314317107,0.6820781189016998,0.07616327842697501,-0.8567219036631286,-0.5303567387163639,-0.447868162766099,0.7180836447514594,0.5975945256650448,-0.2406575414352119,0.41138603212311864,-0.022773705422878265,0.24581493670120835,-0.40026395581662655,0.052367223892360926,0.3439573301002383,0.46065377816557884,-0.8080385499633849,-0.04113933490589261,0.2980457921512425,-0.9274602932855487,0.2954781763255596,0.26809570426121354,0.27779174596071243,0.5920266313478351,0.016151820309460163,-0.15046024601906538,0.9298118520528078,0.8664824985899031,0.30108432937413454,-0.35831878846511245,-0.7559947022236884,0.47697323048487306,0.20677751721814275,-0.8534629857167602,-0.9209515959955752,0.16809296421706676,0.5753159942105412,-0.9757054611109197,0.07757490267977118,0.611199111212045,-0.05669731879606843,0.5457791816443205,0.26777373161166906,0.8434904841706157,0.7949499282985926,-0.5435182633809745,-0.6233098045922816,-0.5065003475174308,-0.8358860719017684,-0.7842517793178558,-0.26096030743792653,-0.41480602556839585,-0.7171698808670044,-0.9029843183234334,-0.039043905679136515,-0.833513303194195,-0.5213769362308085,0.9207609454169869,0.9369793380610645,0.15100931050255895,-0.6443245909176767,-0.03047547396272421,-0.9529447508975863,-0.6848836927674711,0.06759448442608118,0.43660688679665327,0.2660595579072833,0.9024155563674867,0.3668290749192238,0.34176310105249286,-0.8500666674226522,-0.4783262121491134,-0.45229384023696184,0.6359599637798965,0.2061630841344595,-0.7330439197830856,-0.5697306361980736,0.0005739256739616394,0.9242130322381854,-0.29595027631148696,0.4759393357671797,-0.07512513780966401,0.9887789259664714,-0.9525033817626536,-0.6635747863911092,0.807787143625319,0.650481856893748,0.03812035406008363,-0.7646593288518488,-0.21924427384510636,0.04901440627872944,-0.9783851532265544,0.5287838047370315,-0.15732354298233986,-0.447255733422935,0.5998329911381006,0.937615554779768,0.6030942108482122,0.7401480926200747,0.9360429458320141,0.18278301740065217,0.07628395780920982,-0.5155557664111257,0.5462020593695343,0.16128753451630473,0.7038184087723494,0.883265748154372,-0.47415321273729205,0.935354764573276,-0.056997430976480246,0.09676840668544173,0.853313606698066,0.21432304242625833,0.1576901189982891,0.5597543925978243,0.41228737076744437,0.28650711150839925,-0.6211224105209112,0.486991279758513,0.19403316779062152,-0.8561737397685647,0.5817455421201885,0.5648061870597303,0.12969144992530346,-0.6473011625930667,0.401436026673764,-0.09610720397904515,-0.07440373953431845,0.38040646631270647,0.7029712130315602,-0.35810544341802597,0.703917846083641,0.6113436589948833,0.5023069833405316,-0.16058434871956706,-0.9007475282996893,-0.15428193425759673,0.7059809435158968,0.3246011771261692,0.09081346681341529,-0.8674609563313425,-0.09374392591416836,-0.9734094981104136,0.6823747833259404,0.9782513030804694,0.361830513458699,-0.3348345663398504,0.6273501249961555,-0.7961768195964396,-0.6778065878897905,0.1693283598870039,-0.5694475965574384,-0.03399625886231661,0.24581462517380714,-0.7110339454375207,0.050916390493512154,-0.5001555564813316,-0.9515983150340617,0.8673801822587848,-0.12527941213920712,0.20282216789200902,0.11265022261068225,-0.597178575117141,0.24224391346797347,-0.14911904511973262,-0.34373136749491096,-0.03899571718648076,-0.2153887008316815,0.9172455007210374,-0.5659501058980823,-0.25582798663526773,-0.7107110098004341,0.0897727757692337,0.6673002918250859,-0.8973038410767913,-0.674457595217973,-0.6679854136891663,0.7313408763147891,-0.9138584532774985,0.11969191255047917,-0.3226997284218669,-0.9643140519037843,0.5717002842575312,0.6857577958144248,-0.27647962188348174,0.4528377237729728,0.3564867628738284,-0.44921925012022257,-0.062405273783952,0.9284832058474422,-0.12932419404387474,0.6653036870993674,0.5220373622141778,0.9586702515371144,0.6860198425129056,-0.8291084850206971,0.7860519788227975,0.5241742064245045,-0.7054843562655151,-0.9219021117314696,-0.7821253412403166,0.4658642867580056,0.12260904395952821,-0.1873656022362411,0.8422199687920511,0.8218036289326847,0.6170812263153493,0.7276250221766531,0.4212218448519707,-0.40686619468033314,-0.6937535586766899,-0.516756372526288,-0.7854584073647857,0.337350829038769,-0.5298620159737766,0.9139683181419969,0.9552369606681168,0.33548274682834744,0.853721444029361,-0.16322373552247882,0.07880573347210884,0.30808338336646557,0.5650275177322328,0.1900735222734511,-0.7963483738712966,-0.5409141732379794,-0.29127114405855536,-0.42508628172799945,0.7107831011526287,0.19292463921010494,-0.525495192501694,0.9473962606862187,-0.11560079222545028,-0.4732748274691403,0.9191176239401102,0.7719857417978346,-0.7589683951810002,-0.9975829161703587,-0.5976157458499074,0.9728057910688221,-0.5517350668087602,0.5554324551485479,-0.7719258042052388,-0.8253729795105755,0.4560095355845988,0.5029943305999041,0.7480648434720933,0.6058259573765099,-0.8112248438410461,0.9074098952114582,-0.43643640307709575,-0.40675128623843193,0.938236391171813,-0.5748872430995107,0.0895678368397057,-0.6932639284059405,-0.7889285376295447,0.1780953211709857,-0.6741703855805099,0.915109601803124,0.07104336516931653,0.22253600368276238,-0.7575385323725641,0.5526600810699165,0.7061589104123414,-0.28680937737226486,0.1766353235580027,-0.7810978754423559,-0.4754153988324106,-0.6856953403912485,-0.31732547748833895,0.420765221118927,-0.42408647015690804,-0.4394272146746516,-0.07387413876131177,-0.10068172123283148,-0.28192297834903,0.7142098085023463,0.30192597350105643,0.5895501440390944,0.5508674494922161,-0.3032539435662329,0.04924630047753453,-0.6990348100662231,0.03333126241341233,-0.07054730225354433,0.2513631130568683,-0.809491187799722,-0.16446078335866332,0.5829627034254372,-0.7919057467952371,-0.3429757603444159,0.7723448309116066,-0.3077274449169636,0.5378473126329482,-0.17684032954275608,0.8500681463629007,-0.3919032644480467,-0.6730361673980951,0.8712954539805651,0.29252218920737505,0.7379913572221994,0.14641713444143534,0.5798972165212035,-0.6107251048088074,-0.9647929216735065,0.7106152637861669,0.535882783588022,-0.04950614692643285,0.8689133697189391,0.24023572262376547,0.3285341118462384,0.4874583431519568,-0.24558861181139946,0.6084439922124147,-0.5240231198258698,-0.15032878005877137,0.321796040982008,0.7051045158877969,0.1629998330026865,0.25176109559834003,-0.6246514548547566,-0.25439803674817085,0.5237370440736413,0.10061152605339885,0.9501620596274734,0.5809222278185189,-0.5803315714001656,-0.8128299675881863,0.9693125165067613,-0.32866744976490736,0.5820921123959124,-0.9486552686430514,0.2833959893323481,0.7223427682183683,0.14843072649091482,0.5408371910452843,0.8364950912073255,0.058725178241729736,0.10693485802039504,-0.27719900989905,-0.9181522186845541,-0.31453818222507834,-0.5827909796498716,-0.7818667464889586,0.729809204582125,0.28277027048170567,-0.8840676643885672,0.7949104178696871,-0.4349211943335831,0.5507087763398886,0.4849255601875484,0.535753465257585,0.13708405708894134,-0.39648965280503035,-0.47727689146995544,-0.5163200539536774,0.48906871769577265,0.6523732510395348,-0.43792383233085275,0.007684539537876844,0.2538384939543903,-0.8461379809305072,0.8971664300188422,-0.9337819362990558,0.16189189115539193,-0.4563350947573781,0.3306414131075144,-0.9083514246158302,-0.6558907339349389,-0.6847438071854413,0.016774507705122232,0.758170141838491,-0.22738845273852348,0.0801199022680521,-0.67730244807899,0.49083058815449476,-0.2421695222146809,-0.09361036634072661,0.24940656870603561,0.38535279780626297,0.015061822719871998,-0.0837443065829575,0.9440962062217295,0.7804424185305834,0.08637668751180172,0.6036295564845204,0.3002114202827215,0.5157947679981589,-0.9153397995978594,-0.5657848371192813,0.39041804522275925,-0.03939899243414402,-0.929505898617208,0.9631565026938915,0.6191654880531132,-0.12549610156565905,0.006886486895382404,0.7517159376293421,0.22925136098638177,-0.36589017463847995,-0.554909863974899,0.9255680805072188,-0.7647748603485525,0.24186444794759154,0.7428210927173495,-0.6102620009332895,-0.7378377057611942,0.19146131305024028,0.33241374464705586,-0.06841663038358092,0.6891970452852547,0.6461001872085035,0.6430950672365725,-0.9995748372748494,0.899655700661242,0.45115904370322824,0.8981292941607535,-0.29875188367441297,0.007481332868337631,-0.024254832416772842,-0.6472608558833599,-0.2163558923639357,-0.8063246621750295,0.7080006250180304,0.9781796694733202,-0.3129942691884935,0.5113104400224984,-0.841106868814677,-0.5220756605267525,0.00977582298219204,-0.12870539771392941,0.6486225081607699,0.8247367111034691,-0.19070523930713534,0.6231289166025817,0.37830717116594315,0.08577261120080948,-0.20573505386710167,-0.36804468650370836,-0.23512552212923765,0.7827599900774658,-0.3279488985426724,0.17313528154045343,0.17687767976894975,0.8946347772143781,-0.08728842018172145,-0.6427762573584914,0.3750032945536077,0.5387401049956679,-0.68176026083529,0.454084612429142,0.16564460285007954,0.04220551764592528,0.4236782602965832,0.23307193629443645,-0.8918847227469087,0.8787555317394435,-0.2125396360643208,-0.26403096690773964,0.13516186643391848,0.012896367814391851,0.025082394015043974,0.39891391061246395,0.14372615842148662,0.2124839429743588,-0.8844595761038363,-0.47164164017885923,-0.47394001856446266,0.5871220412664115,-0.5642961892299354,-0.9292316962964833,0.5931870760396123,0.49950593058019876,-0.1835570684634149,0.7021939950063825,-0.8071660720743239,0.25664461590349674,-0.5395580171607435,-0.9339747396297753,0.8187625408172607,-0.3341122269630432,-0.17709619039669633,-0.2777675758115947,0.5300296391360462,-0.8727039243094623,0.7117082951590419,-0.7490268833935261,-0.4922704007476568,0.4558597123250365,-0.1741515793837607,0.4974685152992606,0.650966074783355,-0.2505364599637687,0.031062317546457052,-0.4951979760080576,-0.10277790948748589,-0.9235751726664603,-0.40407447004690766,0.03219826193526387,-0.1764556961134076,0.20155796222388744,-0.9802758162841201,0.9022330297157168,0.6340977651998401,0.40965785551816225,-0.3774253553710878,0.57324732048437,-0.1517450255341828,-0.4838436464779079,0.08604331267997622,-0.9127674237824976,0.4843335780315101,-0.14736681012436748,-0.07074421271681786,0.2290261839516461,-0.8739855708554387,0.3310838448815048,-0.5459686350077391,0.5412564193829894,0.02276099007576704,-0.8741042232140899,-0.1390544925816357,-0.6240240968763828,-0.7774672121740878,0.9140593693591654,-0.5314967529848218,-0.28810253646224737,-0.4557231245562434,-0.6047787498682737,-0.7368263369426131,0.9532742383889854,-0.5868275011889637,0.5584445246495306,0.7083086255006492,0.2528941002674401,-0.3168531027622521,-0.9604877708479762,-0.9020513663999736,-0.46345609799027443,-0.5637849010527134,-0.40422207582741976,-0.949267344083637,0.6621894179843366,-0.11638420540839434,0.07491828594356775,-0.20483697718009353,-0.17061509704217315,0.3589393855072558,0.8735539438202977,0.6921473969705403,-0.260119067505002,0.2610222012735903,0.25623622676357627,0.8031901302747428,0.7287989757023752,-0.4779024999588728,-0.8508087005466223,0.5008783605881035,-0.28030213294550776,-0.526452817954123,-0.14117484353482723,0.660532558336854,0.568992605432868,0.1646037413738668,0.8124619857408106,-0.09035744005814195,0.8760691308416426,-0.5046289749443531,0.06848963256925344,-0.10364867839962244,-0.8471183534711599,0.1191100450232625,-0.1241481201723218,-0.8697556518018246,0.7413614769466221,0.8076169290579855,0.5486824596300721,0.5374726550653577,-0.5570375928655267,0.40320522990077734,0.25578115228563547,-0.4672381295822561,-0.05753189465031028,-0.6800463548861444,-0.17271646857261658,-0.843373951036483,-0.1433380781672895,-0.48382225120440125,0.23888227995485067,0.14581611519679427,-0.6384398550726473,-0.8095849459059536,0.3821094906888902,0.9285130691714585,-0.5166512611322105,0.10787407634779811,-0.23313482897356153,0.11855988204479218,0.6495049553923309,-0.3336165389046073,-0.8989522727206349,-0.1312011145055294,-0.37327236868441105,0.6768429474905133,0.42896949080750346,0.585515861865133,-0.5686314348131418,0.2581301052123308,0.5014191493391991,0.1397902788594365,0.6393987014889717,0.01927964622154832,0.9147802824154496,-0.25325414724648,-0.9549985728226602,0.7809373871423304,-0.44871990801766515,-0.4956092834472656,-0.2531409482471645,0.5858381809666753,-0.6894064168445766,-0.3305230149999261,0.21419906755909324,0.5607618680223823,0.6694028642959893,-0.09180496400222182,0.5063143665902317,-0.9484592732042074,-0.7969306320883334,-0.7662949054501951,0.35364860063418746,0.18436736380681396,0.14600862562656403,0.5096786571666598,-0.31150321336463094,-0.4243377763777971,0.23175039840862155,0.5856460565701127,-0.11303729051724076,0.007924703881144524,0.9351881090551615,0.005827825050801039,0.7444015466608107,0.37056140741333365,-0.379377419129014,-0.730535127222538,0.5122394696809351,0.658088993281126,0.7311918623745441,0.8119403645396233,-0.4485619394108653,-0.10345759941264987,0.953869292512536,0.8909423258155584,-0.8730705599300563,-0.7449524183757603,-0.3891729614697397,0.3069585603661835,-0.3718890626914799,-0.3874721978791058,0.4032768430188298,0.07050658576190472,0.21477897791191936,-0.9281344502232969,-0.8788187000900507,-0.5561433648690581,0.37043714616447687,0.12995936581864953,-0.39995994698256254,0.7295840764418244,0.3369175875559449,0.423437946010381,0.5401725773699582,-0.058397223241627216,0.22039339412003756,-0.6319830347783864,-0.8463232885114849,0.15373637899756432,-0.7340927552431822,0.9535678853280842,-0.07680279575288296,-0.9666854487732053,0.9334983904846013,-0.2089744615368545,-0.9051050576381385,0.5248525813221931,-0.025115008000284433,0.8456389713101089,-0.7098680105991662,-0.7202217965386808,-0.4093277333304286,0.9053696249611676,-0.37850585114210844,-0.9109195368364453,-0.41272791009396315,-0.417685953900218,-0.6704348591156304,-0.2754304143600166,-0.5028994884341955,0.8566792015917599,0.3795052394270897,-0.7335223737172782,-0.017543272115290165,-0.1463162829168141,0.5250746426172554,-0.2793194456025958,0.6369777130894363,-0.7827646285295486,-0.5240040281787515,-0.34729081904515624,-0.1958010238595307,-0.5750038824044168,0.8775179884396493,0.5930614550597966,-0.5511605110950768,0.549345298204571,-0.4803054262883961,0.3743623630143702,-0.9568267660215497,-0.8188941120170057,0.07278462965041399,0.6895324545912445,-0.9094530059956014,0.4629343361593783,-0.8419228638522327,-0.9183621741831303,-0.32704170560464263,0.2696682238020003,-0.9010225813835859,-0.6224158233962953,-0.4552526012994349,0.4958158410154283,0.4086597110144794,0.11709542293101549,-0.03881852142512798,-0.8367964397184551,-0.21794367348775268,0.4160488462075591,0.7296335948631167,0.7311083250679076,0.6848201123066247,0.2564596584998071,0.43728658417239785,0.8713204972445965,-0.8061231514438987,-0.9613228016532958,-0.8343229228630662,-0.23530603293329477,0.9731161273084581,-0.0013001710176467896,0.3956549670547247,-0.6047333432361484,0.1390177425928414,-0.9978628605604172,0.9891383261419833,0.10864167055115104,-0.35092534637078643,-0.7168136825785041,0.6252693817950785,0.3436466702260077,-0.1011388162150979,0.17023286502808332,0.03310709819197655,0.29507296765223145,0.9842017330229282,-0.8161777276545763,-0.5418724329210818,-0.28400265891104937,0.30659349262714386,-0.8814490931108594,-0.5069363545626402,0.3719729785807431,0.4448934677056968,0.9969510999508202,0.5301615013740957,0.8430518945679069,0.6218427973799407,0.09500733762979507,-0.4458447955548763,0.1536862114444375,0.5160204111598432,-0.6144176311790943,0.8399668578058481,0.8960019475780427,0.8165838671848178,-0.43326034490019083,0.8396612368524075,-0.5685084885917604,-0.7669714237563312,-0.5853553242050111,0.7133510503917933,0.037303161807358265,0.7866303022019565,-0.7924669412896037,0.6587040033191442,-0.7952497880905867,0.44284357223659754,0.9109040540643036,0.5257184747606516,-0.9463609717786312,-0.7534397467970848,0.7491183206439018,0.10564048308879137,0.47915995586663485,0.998423136305064,0.7898755115456879,0.21803149720653892,0.7156113497912884,-0.06247799936681986,-0.1574056106619537,-0.46282632695510983,-0.37716809986159205,-0.789346189238131,0.8198691862635314,0.9082425674423575,-0.8815724197775126,-0.19116240926086903,-0.9542562821879983,0.30846475157886744,-0.09102280996739864,0.9197447500191629,-0.3508558748289943,-0.943255742546171,-0.7665531518869102,0.4983137990348041,0.14855387527495623,-0.4688261095434427,-0.3359103328548372,0.9276752066798508,-0.2242763857357204,0.460374363232404,0.9482038835994899,-0.22111683757975698,-0.8738140985369682,0.2624695859849453,-0.9809926208108664,-0.3936282261274755,-0.3346372959204018,0.01693063462153077,-0.46979479026049376,0.2505398071371019,0.08994397288188338,-0.48985605919733644,0.7916415208019316,-0.5566296675242484,0.10418557934463024,0.9661307763308287,-0.3184525119140744,-0.0017271670512855053,-0.8012384832836688,0.3153565777465701,-0.8083321494050324,0.63858333369717,-0.8688236000016332,-0.2247616103850305,0.1743933204561472,-0.12014047615230083,0.7811999241821468,-0.04228236200287938,-0.19266241136938334,0.7973064398393035,-0.5861872821114957,0.17109925858676434,-0.9817249719053507,-0.04696117481216788,-0.9130997634492815,0.584832017775625,0.34835690911859274,0.5823403093963861,-0.42455392656847835,0.5375818177126348,0.6798330768942833,0.6549552697688341,-0.2256042822264135,-0.34368237759917974,0.10410836711525917,0.272934652864933,-0.734238734934479,-0.909285209607333,-0.43849886069074273,0.18499564239755273,0.5379899591207504,0.14933117479085922,-0.3307498227804899,0.7171461880207062,0.5915557579137385,-0.3522200449369848,-0.22785803116858006,-0.007726871408522129,0.9840846383012831,-0.9557770900428295,0.6917908415198326,-0.7213326590135694,0.35340147325769067,-0.7498537586070597,0.9795276303775609,-0.5820944458246231,-0.3368985871784389,0.3234303733333945,0.41872674133628607,0.7869727150537074,0.9562133108265698,-0.5633166134357452,0.897347659803927,0.6730237007141113,0.17757516540586948,0.5264621255919337,-0.10949656600132585,-0.4579615914262831,0.603583917953074,-0.18713187519460917,0.480298038572073,-0.258320617955178,0.47765165846794844,0.4206825466826558,-0.9062971649691463,0.4869159725494683,-0.5530196246691048,-0.6654301825910807,0.6315385396592319,0.6602517934516072,0.7621859959326684,0.508199792355299,0.9680040399543941,-0.601824298966676,0.5354953701607883,0.7241131295450032,0.6667363378219306,0.66519690817222,-0.008149988949298859,0.6206959090195596,-0.10537205636501312,0.8062952398322523,-0.1236250214278698,-0.9021705985069275,0.3210479631088674,0.0815919297747314,-0.035122006200253963,-0.41798415314406157,-0.371639936696738,0.19217751594260335,0.5083272974006832,0.7243132838048041,-0.2180280047468841,-0.7544114664196968,0.34291936084628105,0.48223178228363395,-0.5285300649702549,-0.26579597080126405,-0.36454096203669906,-0.27226212667301297,-0.11553853005170822,0.6450177757069468,-0.3000337043777108,-0.46725129010155797,0.21724777901545167,-0.5288070836104453,-0.22833146154880524,0.45536758145317435,0.3736133328638971,0.314304041210562,0.022994143422693014,-0.505476679187268,0.6627082997001708,0.8632535594515502,0.7552064857445657,0.8089189743623137,0.04524626396596432,0.8754681632854044,-0.11955635389313102,-0.10029421607032418,-0.8138218554668128,0.9631044971756637,-0.24792602052912116,0.07623105589300394,0.26345671294257045,-0.5434928419999778,-0.18907464668154716,0.7699201302602887,-0.07466923398897052,0.6209781859070063,0.9227257138118148,-0.7447216790169477,0.44581957114860415,-0.22056959848850965,-0.24381744675338268,0.2953476756811142,0.18306747544556856,0.22961464477702975,0.4070697510614991,0.12925596954301,0.08298717252910137,-0.12991395825520158,-0.5607977779582143,0.6382998037151992,-0.18167691119015217,-0.25633864058181643,-0.7320984229445457,-0.9648073208518326,-0.6523476070724428,-0.2887301933951676,-0.2743008160032332,-0.2423882787115872,-0.6811644495464861,0.11163502093404531,0.5633643548935652,-0.46392808528617024,0.5500947195105255,-0.8013856974430382,0.6057407748885453,-0.8722000755369663,0.3406787686981261,-0.02045307820662856,0.8212778428569436,0.5048360209912062,-0.0013928981497883797,-0.9329114402644336,-0.4217964671552181,-0.665638430044055,-0.5644174753688276,0.4297031848691404,0.24740144982933998,0.7283513704314828,-0.34362832037732005,0.22876404225826263,0.8914520619437099,-0.13687607971951365,-0.4249547990038991,-0.3240745789371431,0.4301024884916842,0.48794919112697244,0.5306559181772172,0.6362583083100617,-0.39001155039295554,0.18373920442536473,0.9933971012942493,-0.6888309069909155,-0.8388702454976737,0.3172607575543225,-0.14842350501567125,-0.4404292432591319,-0.6215955629013479,0.42087470227852464,0.9659626297652721,-0.8721541441045702,0.2270104717463255,-0.14835248235613108,0.03949808934703469,0.2584723341278732,0.16774819558486342,-0.48408684227615595,0.5626251203939319,0.34977494925260544,-0.4572560698725283,0.764096190687269,0.8664918947033584,-0.283619468100369,-0.093504982534796,-0.6573782106861472,-0.685261013917625,0.5073960176669061,0.2050588666461408,-0.1753217289224267,0.8082626783289015,-0.2803231501020491,-0.5141834644600749,-0.19130620686337352,0.7533875140361488,0.30310481740161777,0.9497060291469097,-0.8803956308402121,0.47490651067346334,0.6795577933080494,0.7206949787214398,-0.4970587049610913,0.8006457886658609,0.3111368459649384,-0.06660018023103476,-0.7174676256254315,0.17394483787938952,-0.6263765068724751,-0.8532827566377819,0.7315478478558362,0.8410951737314463,0.6677082637324929,0.9161655004136264,0.009601796977221966,-0.41580001125112176,0.8369517461396754,-0.7833549967035651,-0.7899271454662085,-0.6547026871703565,-0.7207443993538618,0.13240936258807778,-0.023840230889618397,-0.09504835866391659,-0.9460062705911696,-0.6533979550004005,0.9417939833365381,-0.212645813357085,0.5461842631921172,0.5928664766252041,-0.35513835260644555,0.8866943139582872,0.9458709042519331,0.98235945077613,0.1321609732694924,-0.11810371559113264,-0.504011298995465,0.15012098103761673,-0.11806987039744854,0.3673740802332759,0.5199685306288302,0.9550915961153805,-0.5375254242680967,-0.9041809588670731,-0.5417581363581121,0.8278403920121491,-0.6825340273790061,-0.2632741774432361,-0.6551223150454462,0.42853340739384294,-0.6653532246127725,-0.1166592133231461,-0.44116957439109683,0.7638177410699427,0.6796598634682596,0.5929403123445809,-0.701496722176671,0.9905177927576005,0.8355869576334953,-0.2746209120377898,-0.29394521843641996,0.5368976085446775,0.1514457748271525,0.8921596389263868,-0.3839630726724863,-0.8741945405490696,0.14283894281834364,-0.7077452391386032,-0.4342236267402768,-0.5713340882211924,0.52679722616449,-0.476663829293102,0.5797968050464988,-0.08799876226112247,0.2036680718883872,-0.6195829934440553,-0.00837044371291995,-0.9834573767147958,-0.5486772716976702,-0.6477834857068956,0.44999166252091527,-0.3814071901142597,0.16649899072945118,0.13937304634600878,0.8669932126067579,0.2822204758413136,-0.33451303001493216,-0.7993232836015522,0.352881770581007,-0.7158950888551772,-0.9219001214951277,-0.3480099174194038,-0.8981717573478818,-0.197760378010571,0.1452921316958964,0.040399941615760326,0.08855358231812716,0.0038888142444193363,-0.7726478003896773,0.23621465638279915,-0.2611366515047848,-0.19793873419985175,0.8101464980281889,0.2330938084051013,-0.5831244802102447,0.3815132468007505,-0.11239742441102862,0.9243965824134648,-0.21036890428513288,-0.43010353250429034,0.24717383459210396,-0.33502247184515,0.6399492542259395,0.159266727976501,-0.21049954742193222,0.5703298426233232,-0.4384137010201812,-0.5715161883272231,-0.499632709659636,-0.6655232729390264,-0.2159302094951272,0.04203248582780361,0.6086581884883344,-0.22577383974567056,0.9984288024716079,-0.1616917154751718,0.7788321408443153,-0.2949382676742971,-0.9456636244431138,-0.06922530708834529,0.2517970805056393,0.6579053248278797,0.2856828086078167,0.49541136994957924,0.9846680085174739,0.5122268456034362,-0.32849952345713973,0.02568551106378436,0.705921714194119,0.7125605829060078,-0.8519504084251821,0.1225416106171906,0.5296913646161556,0.6353735798038542,0.16130116628482938,-0.7874181787483394,0.9002043753862381,0.24509066436439753,-0.758278644643724,0.6793632041662931,-0.7834552400745451,0.3249568212777376,-0.29003840312361717,0.641563146840781,0.8490121886134148,0.01618316490203142,0.27196101751178503,-0.6411525835283101,-0.0142492582090199,0.6577229858376086,0.6021993272006512,0.5269241416826844,-0.04836867470294237,0.19366385089233518,0.08590790256857872,0.323169257491827,0.5292828283272684,-0.8278441019356251,0.7696298686787486,-0.6259516547434032,0.11255186051130295,-0.11022795084863901,-0.5154190375469625,-0.480946128256619,-0.8522333758883178,0.7673152047209442,0.09301486518234015,-0.15707911597564816,0.5792485978454351,0.09377321833744645,-0.7694669384509325,-0.5069740656763315,0.8386769238859415,-0.44268261827528477,-0.9478521076962352,-0.7316908524371684,-0.18246128829196095,-0.6607726314105093,0.8667639959603548,0.01951643405482173,-0.17847282020375133,0.14875251008197665,-0.028885724488645792,0.5205853316001594,0.7191366660408676,0.5280597410164773,0.8366268579848111,-0.8325071297585964,0.14938214235007763,-0.7542859856039286,-0.7327553313225508,0.28205875121057034,-0.6422998080961406,-0.691729505546391,0.8666013348847628,0.7941874666139483,0.9185770484618843,0.12335281632840633,0.7593191429041326,-0.4019372696056962,-0.6380259804427624,0.10746963554993272,-0.6347410855814815,-0.6407988257706165,-0.0006860592402517796,0.007925630547106266,0.16307664243504405,0.6850623618811369,-0.12352736061438918,-0.8880687574855983,0.1377083482220769,0.6983623597770929,0.13904953142628074,0.27546085650101304,0.9351491276174784,-0.3188454103656113,-0.8090205662883818,-0.3374040932394564,0.8363986522890627,-0.4846205492503941,0.8850629306398332,-0.6937008230015635,-0.7878025313839316,-0.2945859688334167,0.0680504129268229,-0.10901564359664917,-0.17714160960167646,0.5420418209396303,0.41127673350274563,0.6639626128599048,0.5139093264006078,0.5316322054713964,-0.728869762737304,-0.9602693230845034,-0.6342473952099681,0.6759104286320508,0.8660634579136968,-0.5727852680720389,0.5488674058578908,0.9900853601284325,-0.312198783736676,-0.7409680997952819,0.4055257230065763,-0.16598471673205495,0.7967625968158245,0.3265725774690509,-0.23802524199709296,-0.9471442922949791,-0.5779520994983613,-0.5833218628540635,0.32199542596936226,-0.691055042669177,-0.696169710252434,0.6136526623740792,-0.4663630137220025,-0.3705394002608955,-0.31369596254080534,-0.12554413685575128,-0.04231366002932191,-0.2206991626881063,0.8433180674910545,-0.26756130438297987,0.5959996203891933,0.37356344470754266,-0.5231210016645491,0.34755294723436236,-0.07010559272021055,0.9384718397632241,-0.09921791544184089,0.5794134428724647,-0.9557587243616581,-0.624707926530391,0.4255193695425987,0.8489208617247641,0.7154257050715387,0.453149339184165,0.13011175859719515,-0.5313053261488676,-0.783752067014575,-0.10326792998239398,-0.5629441435448825,0.7477727341465652,-0.2365970998071134,-0.6790412487462163,-0.7767085852101445,-0.328411013353616,0.7923043537884951,-0.8756513777188957,0.5191773339174688,-0.30699743004515767,-0.7421388509683311,-0.8165205051191151,-0.7061523324809968,0.5181200238876045,-0.2464212435297668,0.2731717908754945,0.500904499553144,0.8506815782748163,-0.16937711276113987,-0.07409255532547832,0.619431215338409,-0.8014274062588811,-0.5060356655158103,-0.0032667038030922413,-0.17552093230187893,-0.2386726881377399,-0.877255966886878,0.5126910535618663,0.8425613366998732,0.9651921582408249,0.3951405272819102,-0.9725778214633465,-0.03700220072641969,-0.3021485679782927,-0.42497819382697344,0.893556117080152,0.5372943361289799,0.06541196536272764,0.4384723207913339,-0.3653112519532442,0.41516354819759727,-0.7625794182531536,0.8315451047383249,0.2038780669681728,0.6522868191823363,-0.31927644088864326,-0.28240222902968526,-0.6525223697535694,-0.9147855429910123,0.9070517593063414,0.4457686231471598,0.9677985236048698,0.9290776895359159,-0.08163172984495759,0.7944824225269258,0.5534164733253419,0.8765346426516771,-0.33061138493940234,0.5535051403567195,-0.397865008097142,0.41937851533293724,0.6588787380605936,-0.5402339966967702,-0.7923699384555221,0.05060025071725249,0.0026861471123993397,-0.8572037373669446,-0.8740184898488224,-0.3730990602634847,0.961259039118886,0.6249521858990192,0.6137994611635804,0.20295591745525599,-0.4564365856349468,-0.6665789079852402,0.6121073374524713,0.39946675952523947,0.321145904250443,0.10312895197421312,0.7552983956411481,0.9799746912904084,0.2442498398013413,-0.7782066129148006,-0.16096182679757476,-0.05503234500065446,0.8820797665975988,0.011148027144372463,-0.936765349470079,-0.5014084889553487,0.5467925942502916,-0.25344714196398854,0.7999406582675874,-0.3719289870932698,-0.7075736904516816,-0.9923399882391095,-0.28582914313301444,0.6641413643956184,-0.7540866727940738,-0.3386491509154439,0.11094249505549669,-0.189793202560395,-0.7880228967405856,0.08382077142596245,0.885065658017993,0.9189978814683855,0.04260218981653452,0.32024163333699107,0.9119205861352384,-0.10654432978481054,0.7763045071624219,-0.25683198403567076,-0.9510443764738739,0.7978527192026377,-0.9136503892950714,0.4908624105155468,0.8281514733098447,0.02905374765396118,-0.20836573233827949,0.6401790804229677,0.7434808006510139,0.9999305312521756,0.39513615099713206,0.9137797052972019,-0.5095040267333388,0.9641077700071037,0.863939649425447,0.0953402197919786,0.6671606912277639,0.9316022847779095,0.8370838104747236,-0.7770586526021361,-0.8495182511396706,-0.03856021212413907,-0.4558487832546234,0.09458572650328279,-0.6515653915703297,0.3749338570050895,0.16351259779185057,0.43961589550599456,0.5119707095436752,-0.9009399763308465,0.14347367594018579,0.09310353314504027,-0.31907760025933385,-0.8179102530702949,0.45437347097322345,0.9729885836131871,-0.7420272175222635,-0.07404121616855264,0.6528389677405357,0.1115954308770597,-0.8606265913695097,0.3622844717465341,-0.07366445567458868,-0.5454450258985162,0.3403573101386428,-0.18592210533097386,0.6522728567942977,0.55470912437886,-0.1335365609265864,0.5216508079320192,-0.39936514664441347,-0.7538677370175719,0.09177317144349217,0.6173327472060919,-0.519682134501636,-0.47163634235039353,0.19743203930556774,-0.9807754228822887,0.14222044264897704,-0.20419803215190768,0.8205499253235757,-0.7743532811291516,-0.03730495413765311,0.8705886430107057,0.7647126289084554,-0.7542011472396553,0.7814487665891647,0.4069431214593351,-0.7740937541238964,0.7480541793629527,-0.9316157586872578,0.8156547113321722,0.9561684541404247,0.028613143600523472,0.5901834303513169,-0.7647610069252551,-0.5258068731054664,-0.5913138519972563,0.3530554100871086,0.9725159420631826,-0.03681964194402099,0.3190199681557715,0.7461205166764557,-0.6662822207435966,-0.9169987146742642,-0.01615033484995365,0.03842209465801716,-0.671465537045151,0.06501987110823393,0.9673102106899023,0.8881530812941492,-0.9772922280244529,-0.02260539960116148,0.7430527694523335,-0.1250453949905932,-0.8557622437365353,0.22154987324029207,-0.07139112008735538,0.7689584381878376,0.25957502564415336,-0.19903854560106993,0.35385805554687977,0.0783047336153686,0.694267641287297,-0.13370515266433358,-0.042489489540457726,-0.8496640911325812,0.8272848138585687,-0.8060734015889466,0.21267202543094754,-0.10986876394599676,-0.46485233725979924,0.940402896143496,-0.43661394249647856,0.566136886831373,0.7136762673035264,0.5353428982198238,0.4772116201929748,0.6834106245078146,-0.8961631171405315,-0.4355016341432929,0.5184990237466991,-0.396830131765455,0.33037931146100163,0.3061143308877945,0.8970375810749829,0.6519129774533212,0.9838590039871633,0.5487007824704051,0.7456019460223615,-0.6605451591312885,0.18075709184631705,-0.026277354452759027,0.3238828619942069,-0.8660047315061092,-0.12515323888510466,0.8236651248298585,0.8109531723894179,-0.7937482232227921,-0.9704350042156875,-0.3464635466225445,-0.4367398861795664,0.6529370932839811,-0.05049800034612417,0.4495793040841818,0.330061174929142,0.8675845866091549,-0.7488936726003885,-0.6274779210798442,-0.1924012335948646,-0.016303385607898235,0.6668292344547808,-0.34264110773801804,0.8113569188863039,-0.2854463034309447,-0.44120867270976305,-0.14069022005423903,-0.5479180552065372,0.5271413405425847,-0.625850475858897,0.18315179971978068,0.08618762716650963,0.06912845838814974,0.5796351940371096,0.11280405567958951,-0.40162187442183495,-0.9721030695363879,0.5928619815967977,0.24981442978605628,-0.9458183948881924,-0.032113316003233194,-0.960826619528234,0.6133898482657969,-0.7158032571896911,-0.06174307130277157,-0.10511305741965771,0.21080991113558412,-0.34848107723519206,-0.1850182842463255,-0.5004517557099462,0.547956504393369,-0.3857582062482834,-0.5354370144195855,0.32732481276616454,-0.8891550558619201,-0.2954906076192856,0.05062412889674306,0.5801551719196141,0.5187484449706972,-0.9054537704214454,-0.09111138433218002,-0.2553972280584276,0.8084327750839293,-0.0055435881949961185,0.11586645990610123,0.8701800024136901,0.11129599390551448,-0.06571812322363257,0.9166801939718425,0.3929344560019672,0.48856441397219896,-0.5312690795399249,0.4584115934558213,0.7740805125795305,0.2013697512447834,0.5322429481893778,-0.7856239206157625,-0.4071133956313133,-0.6947134402580559,0.5779335265979171,-0.2718869452364743,-0.9470417071133852,0.01971866888925433,-0.8704439192079008,0.6663028285838664,-0.454850260168314,-0.3069947361946106,0.5854365676641464,-0.19927623867988586,-0.360492339823395,0.6479778136126697,-0.6933032628148794,0.11978906020522118,0.6697051227092743,0.8782072253525257,-0.40672490978613496,0.2115171067416668,-0.8742684731259942,-0.9651742121204734,-0.1334780785255134,-0.13878607703372836,0.7718415888957679,0.32067510671913624,-0.7582037234678864,-0.6401600022800267,-0.9859895361587405,-0.7860164339654148,0.4279244947247207,0.05511112930253148,-0.138390158303082,-0.40408978099003434,0.9196832901798189,-0.5535265514627099,0.9035867182537913,0.5040144179947674,-0.1694006659090519,0.5295270411297679,0.9092422309331596,0.13556169159710407,-0.8373527745716274,0.4000461087562144,-0.5714481887407601,0.22076180716976523,0.5730522144585848,-0.7666678773239255,0.08454529801383615,-0.4075242974795401,0.06271631363779306,-0.6235706806182861,0.1249546124599874,-0.608061992097646,-0.8273842427879572,0.8196274884976447,-0.023416421841830015,0.4657982066273689,0.6135142706334591,0.8549335706047714,0.5840639169327915,-0.8225965262390673,-0.6037534619681537,0.3941416568122804,0.7112332810647786,0.12471197405830026,-0.8081337679177523,0.14044654089957476,-0.41296112164855003,-0.6898395782336593,0.38820356922224164,0.8621360687538981,0.2161612818017602,-0.4536097324453294,-0.7891044039279222,0.13540441868826747,0.44415114959701896,0.2356673856265843,-0.3361046356149018,0.48127695405855775,0.16676510637626052,0.520536339841783,0.7224269672296941,-0.6394336437806487,0.44373420160263777,-0.7284812387079,-0.6254629790782928,0.8544505182653666,0.52249178243801,0.511519062332809,0.3546685865148902,-0.009095162153244019,0.13291361229494214,-0.03714679880067706,0.3516731704585254,0.7575929723680019,0.8592376220040023,0.06837513437494636,0.27849141135811806,-0.3825359297916293,0.5513856499455869,-0.1406910032965243,0.6263411366380751,0.18344636680558324,-0.7624533264897764,0.42447733087465167,-0.594511856790632,0.9917262783274055,0.38114403327926993,-0.4871615478768945,0.621394488029182,0.67531698057428,-0.7473768880590796,-0.6742666917853057,0.5680908034555614,0.023344700690358877,0.9888650197535753,-0.1442786785773933,-0.10450111282989383,0.13568511558696628,0.6985007915645838,-0.8539338214322925,-0.03673660242930055,0.08184070140123367,-0.5544034028425813,0.387299666646868,0.2488506236113608,0.26390348048880696,0.6169076873920858,0.8675874201580882,0.20001214602962136,-0.2338602552190423,-0.09660276677459478,0.5044946214184165,-0.48177832551300526,0.8733883700333536,0.13795482274144888,-0.7069252547807992,0.09076649323105812,-0.5326731312088668,0.35528878308832645,-0.395079905167222,-0.863436674233526,0.7518285140395164,-0.4783287635073066,0.5783440619707108,0.4783949847333133,-0.1863597659394145,0.312880864366889,-0.2514944695867598,0.17480493988841772,0.15242447052150965,-0.42033118940889835,0.012007464654743671,0.6778349322266877,-0.8296436350792646,0.5800367053598166,0.920959762763232,0.39396668365225196,-0.5391407925635576,-0.45763917034491897,0.9394414676353335,-0.05524056265130639,0.10062333662062883,0.2572861616499722,-0.3711951575241983,0.6590140382759273,-0.9829435548745096,-0.29390918323770165,0.13015676755458117,0.9197744252160192,0.7856683414429426,-0.5390878957696259,-0.013865659944713116,-0.5905148615129292,0.8745409245602787,-0.986654500477016,0.17510383808985353,-0.967876709997654,0.8659852226264775,0.05901591992005706,0.49901279667392373,0.4459240920841694,-0.43085367139428854,0.11791927134618163,0.33014093758538365,-0.43808020232245326,-0.32936926931142807,0.5992203103378415,-0.40135517017915845,-0.7167867482639849,-0.007717240136116743,0.9281997210346162,0.5815261323004961,-0.5396090624853969,0.2972216587513685,-0.5603507338091731,-0.7605169923044741,-0.6372348759323359,-0.21431100275367498,0.8759751631878316,0.390130499843508,0.5577180939726532,-0.08236655965447426,-0.4457850526086986,0.42107641650363803,0.48317117476835847,-0.7291308115236461,0.6860714852809906,0.7098062252625823,0.07703444501385093,0.13126401416957378,-0.3455562931485474,-0.5338453780859709,0.872412116266787,-0.07328699063509703,0.8774776826612651,-0.07524478109553456,-0.05900377966463566,0.20057334564626217,0.5358959771692753,-0.16743181180208921,0.24797354079782963,0.017314279451966286,0.41026104614138603,0.7566501274704933,-0.7354612778872252,-0.7073088041506708,0.1475403537042439,0.8909254465252161,0.22715240437537432,0.8840936659835279,-0.40277604293078184,-0.6871775863692164,0.2059214380569756,0.3037777286954224,-0.35776071390137076,-0.22683633863925934,0.8459150432609022,0.325209719594568,0.6066766898147762,-0.17973622446879745,0.34375642566010356,-0.37504297494888306,-0.07145534688606858,-0.587205518502742,-0.8647491396404803,0.7853657016530633,-0.017045737244188786,-0.01132603408768773,-0.24111363990232348,0.45442342665046453,0.6592361987568438,-0.0888035255484283,-0.4194890074431896,-0.49281094409525394,0.5756099689751863,-0.7382543277926743,-0.9292990816757083,0.8536762576550245,0.7399641619995236,-0.20161653822287917,-0.4144766894169152,0.20071183610707521,0.2644913960248232,-0.8490900169126689,-0.1411351296119392,0.08946782257407904,-0.5494360541924834,-0.025486634112894535,0.43039482133463025,0.2642519511282444,0.6520184837281704,-0.305295726750046,-0.499709727242589,-0.519504776224494,0.10655238479375839,0.5021098232828081,0.7203324460424483,-0.7364646722562611,-0.07633450580760837,0.7048361734487116,-0.2949309339746833,-0.8316455753520131,0.8333893334493041,-0.04003013949841261,0.006920123938471079,-0.5972475097514689,0.09697438031435013,0.03734961757436395,0.67765789385885,0.9693120550364256,-0.5674725724384189,0.5013061589561403,-0.3228417746722698,0.44601648300886154,0.35938118770718575,0.35154285188764334,-0.03616947215050459,-0.3376311920583248,-0.42159608332440257,-0.10900858510285616,0.212258146610111,0.33581019658595324,-0.020784126594662666,-0.22150585521012545,-0.18466566875576973,0.16042174771428108,0.44971920968964696,-0.9708504234440625,0.7297219126485288,0.7278382843360305,0.26560298074036837,-0.825015845708549,-0.9334341157227755,0.7591996528208256,0.4692800394259393,0.8190146093256772,0.43349446542561054,-0.3568809409625828,0.050666669849306345,0.7430131202563643,-0.06251927046105266,-0.1676571248099208,-0.06129811517894268,0.06034331955015659,0.3730576462112367,-0.8630377729423344,-0.727725928183645,0.8347563147544861,-0.5666941050440073,-0.9554792512208223,0.7378653958439827,-0.5121592315845191,-0.7716002929955721,-0.35561125027015805,-0.19430879689753056,-0.7300951243378222,0.2232531262561679,-0.8089967961423099,-0.8553500017151237,-0.9725479423068464,-0.21741852164268494,-0.8328350395895541,-0.1460565635934472,0.2962427488528192,0.6191970952786505,0.21570408018305898,0.3114206069149077,-0.1846459647640586,0.9543972802348435,-0.3566444618627429,0.579068383667618,-0.16790765058249235,0.8226436716504395,0.6013490320183337,0.16502489801496267,-0.7326771724037826,0.9200205048546195,-0.003722023218870163,0.7114778426475823,0.08593389391899109,0.6618655170314014,-0.25755534414201975,-0.14464731933549047,-0.5217357920482755,0.7029579235240817,-0.5510383541695774,-0.1526812012307346,-0.20599644351750612,0.626289667095989,0.07770509412512183,0.5697372523136437,-0.2964313216507435,-0.11430853698402643,-0.813210928812623,-0.37784723890945315,-0.16484440909698606,0.642424572724849,-0.9350324887782335,-0.1329313861206174,0.025060498155653477,-0.23380053462460637,-0.7664390816353261,-0.12213464267551899,-0.9636233816854656,0.5793505511246622,0.17316050408408046,0.9619092070497572,-0.5279012345708907,-0.2992763528600335,0.6418740469962358,0.5404302878305316,-0.16440286673605442,0.2282370338216424,0.8642706666141748,0.22800675686448812,-0.6608289037831128,-0.5953690586611629,0.5162249021232128,-0.3017564043402672,0.4448566581122577,-0.09729510173201561,0.3303554723970592,0.1907755620777607,0.11928003141656518,0.24965211749076843,0.41800141241401434,-0.25637144409120083,0.46834262972697616,-0.6422160803340375,-0.05497537786141038,0.8145275441929698,-0.7418904220685363,-0.05747708352282643,0.3379237740300596,-0.31893215142190456,0.17895448813214898,-0.2157989703118801,0.23688548291102052,0.05897957878187299,0.8041365812532604,0.5909380046650767,-0.802017122041434,-0.9001472559757531,0.9285746668465436,0.07983912480995059,-0.03012549690902233,0.9278529579751194,-0.6347906212322414,-0.4116980736143887,0.912718559615314,0.6572683393023908,-0.14205063367262483,-0.09052803227677941,0.5239581516943872,0.49886500276625156,0.7157826540060341,-0.6808876194991171,-0.38727148808538914,-0.40482385642826557,-0.8604983147233725,0.7395513849332929,-0.05130238505080342,-0.6423231489025056,-0.18715339340269566,-0.36677273781970143,0.6330279596149921,0.2805990120396018,-0.4131535952910781,0.712329086381942,-0.1353630288504064,0.20840826677158475,0.1009880849160254,0.7764454325661063,-0.2833141996525228,0.6317216334864497,0.6501741115935147,0.5179833797737956,-0.172425857745111,-0.01777448831126094,0.06926058419048786,-0.691048102453351,0.8143961559981108,0.06597705697640777,-0.7916636578738689,-0.6072676270268857,0.8844752823933959,0.16616157116368413,0.43677989998832345,-0.3131167287938297,-0.49003189196810126,-0.4352990319021046,0.897505808621645,-0.13128145085647702,0.5238663959316909,0.1991434688679874,-0.12461904296651483,-0.7817343873903155,0.7950588897801936,0.8914228519424796,0.014574733097106218,0.27303903736174107,-0.8971435222774744,0.4047733531333506,-0.009041912388056517,-0.03394191525876522,0.36690783360973,0.9522265116684139,0.41755802230909467,0.7017660518176854,-0.8534501381218433,0.48574438551440835,-0.6035886183381081,-0.027611487545073032,-0.6636371104978025,0.17509224312379956,0.6640471508726478,-0.16240045800805092,0.6583317848853767,-0.17582835722714663,0.6232359297573566,0.8028999506495893,0.75739831244573,0.06356357736513019,0.7204146482981741,0.7483026306144893,0.6216896525584161,0.1436146548949182,-0.9241894604638219,0.8077895385213196,-0.41023822082206607,-0.646216677967459,0.33780516451224685,0.0550824087113142,-0.4473129790276289,-0.8860260057263076,0.26020222529768944,0.07188622420653701,-0.20040921727195382,0.3119649630971253,0.8653278197161853,-0.6285499869845808,-0.6843395126052201,0.04171268781647086,0.8558648778125644,0.13435425469651818,0.6099489652551711,-0.720310268457979,-0.6817025914788246,0.9400325687602162,-0.092060427647084,0.1911844783462584,-0.47753640729933977,-0.7455203346908092,-0.2301238290965557,-0.32915723556652665,-0.7021839986555278,0.6693426319397986,-0.883389690425247,-0.8545127604156733,-0.708065218757838,0.6209526509046555,-0.6851499322801828,-0.18158414168283343,0.41176442382857203,-0.7665154370479286,-0.7835757960565388,-0.25887197395786643,0.035178097896277905,-0.3025214020162821,0.24331814143806696,0.6443080324679613,-0.14347650203853846,0.34772292617708445,-0.321148372720927,-0.9309326410293579,0.4016255927272141,0.6547304592095315,0.0058283377438783646,0.006200244650244713,-0.6990445177070796,-0.3556514550000429,0.25583902187645435,0.17086536949500442,-0.9562005554325879,0.9716550591401756,0.40858097188174725,-0.6279648100025952,-0.34639039915055037,0.7631004373542964,0.12241814797744155,-0.9741671453230083,-0.8208930296823382,0.5797454486601055,-0.4897472383454442,0.7948117074556649,-0.12572230258956552,-0.1770910774357617,-0.396718502510339,-0.1689329193904996,-0.06052607065066695,-0.28545197658240795,-0.9423034689389169,-0.2793508335016668,-0.9078966332599521,-0.4450225718319416,-0.5612828047014773,-0.6661212374456227,-0.5498682702891529,0.5771806165575981,0.7809578855521977,0.6042555323801935,-0.1117668361403048,0.3199034482240677,0.4876566887833178,0.8397152558900416,-0.34083421947434545,-0.5933319819159806,-0.5908828512765467,0.61321160197258,0.6026038494892418,0.8488119780085981,0.10293827718123794,-0.3770808964036405,-0.759328109677881,-0.35234151082113385,0.5344103779643774,0.2096146522089839,0.03704900573939085,-0.05864611780270934,-0.19071616232395172,0.9075959962792695,-0.5520734041929245,-0.6699260440655053,-0.27530512819066644,-0.6302769519388676,-0.05471967486664653,0.21867365203797817,-0.6556405387818813,-0.676485781557858,-0.2296113525517285,-0.20147683238610625,0.4940912458114326,-0.5485585224814713,0.9417442246340215,0.49079272244125605,-0.8880907814018428,-0.44200512766838074,-0.965816552285105,0.7110761841759086,0.5272128768265247,-0.29067863151431084,0.5690384469926357,-0.8871678183786571,0.9356230273842812,0.836133181117475,-0.22977736499160528,-0.7368789510801435,0.11549149081110954,-0.6926143425516784,-0.3498508487828076,-0.2272634762339294,0.4665458109229803,0.38480197452008724,-0.3377825557254255,-0.5748929278925061,-0.8005944518372416,-0.2984951324760914,0.2653117119334638,0.41183101618662477,0.6074012322351336,-0.69935267791152,-0.25131919514387846,-0.34261818183586,-0.6342947576195002,0.484257981646806,-0.9826790844090283,-0.36187834292650223,-0.09389795688912272,-0.7524821199476719,0.2663776921108365,-0.9652336975559592,0.38661616621538997,0.17829188471660018,0.823082450311631,0.9976144945248961,-0.015279425773769617,0.5827717403881252,-0.2759925820864737,0.7223215117119253,0.8565861638635397,0.18872188637033105,-0.8438952318392694,0.8350861510261893,0.22089456021785736,0.2420638119801879,-0.9190922356210649,0.8428080398589373,-0.7678750390186906,0.5803306209854782,-0.5279654795303941,-0.2773719225078821,-0.821304997894913,0.6534030293114483,-0.5783301363699138,0.7414473136886954,0.7190773463808,-0.3338797651231289,0.806580523494631,-0.48190225940197706,0.18586582550778985,-0.8528053518384695,0.4241503020748496,-0.267219927161932,-0.9546829056926072,0.6330519448965788,-0.6276209959760308,0.09518743073567748,0.5364945540204644,-0.274042806122452,0.9474764228798449,-0.4819622617214918,0.5607854062691331,0.5230535208247602,-0.38321564346551895,-0.9345986898988485,-0.26728883711621165,0.5513114579953253,-0.07150823855772614,0.6881550392135978,0.8563635498285294,-0.15709812100976706,-0.31376856518909335,0.5927308020181954,0.8270991900935769,0.31155103957280517,-0.8016075775958598,-0.9540978968143463,0.1412185374647379,0.9155303151346743,-0.8125091325491667,0.0809098444879055,0.15551503654569387,-0.9532052590511739,-0.40753745660185814,-0.5762708303518593,0.3975196531973779,0.7533524478785694,0.6713345949538052,0.5203017443418503,-0.5853103059343994,0.9163552988320589,0.7425348935648799,0.2430656640790403,0.21223230753093958,-0.5789953116327524,0.7015202948823571,0.17886600736528635,0.5046093766577542,0.01565687544643879,0.23334142845124006,-0.4990971456281841,0.9202170292846859,-0.23252319591119885,0.5823573428206146,-0.22920186631381512,-0.4676005160436034,-0.16296062665060163,0.8515313561074436,0.637731044087559,-0.7100659040734172,-0.9165365351364017,-0.8978658625856042,-0.5199621459469199,-0.04985103756189346,-0.8784624254330993,0.8754117116332054,0.806321709882468,-0.002316146157681942,-0.004837945103645325,-0.7690363903529942,0.25396897504106164,-0.9546641521155834,0.47920384583994746,-0.5556472465395927,0.5650685247965157,-0.4304743302054703,0.5909269140101969,0.32048945408314466,0.13905471842736006,-0.1899732449091971,0.5003251456655562,-0.38274222891777754,-0.5918124127201736,0.8162499419413507,-0.614035255741328,0.33579239854589105,-0.6617217026650906,0.8984809005632997,0.05665641790255904,-0.9369008378125727,0.9069339372217655,0.5353808281943202,-0.8223949666135013,0.30304966773837805,-0.5325336027890444,0.35900239320471883,-0.5312887621112168,-0.8157749269157648,-0.7188770663924515,0.06655515683814883,0.9574231076985598,0.29106512339785695,-0.8171170391142368,-0.06862623384222388,0.6526606176048517,0.7373614450916648,-0.3100616750307381,0.2860282422043383,0.23581560049206018,-0.23815138451755047,-0.3745078998617828,0.4750558929517865,0.5397593178786337,0.8741522463969886,-0.7651670831255615,0.24038009531795979,-0.307434044778347,0.12163421045988798,0.3195162802003324,0.39239154290407896,0.34565101005136967,-0.4024843964725733,-0.5095601766370237,0.10764948697760701,0.6019683666527271,-0.8247730699367821,-0.6567608397454023,-0.3637028685770929,-0.9419737909920514,-0.10693875420838594,0.12622096994891763,-0.8913034279830754,-0.1584632284939289,0.20197157328948379,0.9743556762114167,0.8481725757010281,0.48377210879698396,-0.743865012191236,-0.8384026256389916,-0.91011036420241,0.9877159199677408,0.0204386617988348,-0.11028039501979947,-0.6247592973522842,-0.897565508261323,-0.9691791697405279,-0.5247606714256108,0.8837966904975474,0.26674513006582856,0.28330432809889317,-0.692421646323055,0.31766234477981925,0.40839744731783867,-0.06102489214390516,-0.9422697182744741,-0.07591605884954333,0.0070381262339651585,-0.026018592528998852,-0.19554343819618225,0.8219109992496669,-0.687487113289535,-0.6046880236826837,0.8822486745193601,-0.7876379182562232,0.9722609492018819,0.6541999201290309,-0.5610625050030649,-0.507529875729233,-0.6180995996110141,0.4439759268425405,0.6449483223259449,-0.6996676879934967,0.7294146614149213,-0.9424596917815506,0.5512429494410753,-0.551769794896245,0.1252464479766786,0.39914963906630874,0.5821099258027971,-0.6322025950066745,-0.00466919457539916,-0.05780831864103675,0.9609288894571364,0.7085331967100501,-0.9273261148482561,-0.16849635588005185,0.1924317660741508,-0.03681653970852494,-0.28881826624274254,0.05734148994088173,-0.26080580288544297,-0.7322307066060603,0.5541277299635112,-0.5800318149849772,0.23355164099484682,0.605949005112052,-0.44944935478270054,-0.3996946453116834,0.002770683728158474,-0.8263212428428233,0.4382782853208482,-0.30767811834812164,0.18845942011103034,0.38068987568840384,0.7384338635019958,-0.6592197907157242,-0.38215604005381465,-0.016932092607021332,-0.36339689791202545,-0.5714087514206767,0.44989150622859597,-0.5766699141822755,0.5280668521299958,0.3166808532550931,-0.4451986886560917,-0.5432662894017994,0.16027301317080855,0.01253111194819212,-0.37534816935658455,0.21432172041386366,0.9034387785941362,0.8389017907902598,-0.024984543677419424,0.5678979018703103,0.024352463893592358,0.3839901373721659,0.4102651313878596,0.42887600697577,-0.3067269083112478,-0.5359161226078868,-0.24404402263462543,0.1495301383547485,0.7462012092582881,0.9175612414255738,0.5255346037447453,0.7084004958160222,-0.3173467982560396,0.9030322977341712,-0.9834266067482531,0.9387874910607934,-0.5878136120736599,0.624436910264194,-0.11270673759281635,-0.5318149854429066,-0.4025415191426873,0.03418026398867369,-0.06957219634205103,0.8938295715488493,-0.3858672995120287,0.17014449881389737,-0.9319270537234843,0.21880486281588674,-0.17390860198065639,0.08643149770796299,-0.6852430221624672,0.25225779972970486,-0.5426585543900728,-0.9531260523945093,0.8775670286267996,-0.9584704637527466,-0.09406539471819997,0.3474545832723379,0.8301572715863585,-0.3514009350910783,-0.20837915502488613,-0.6270764577202499,-0.8771480941213667,0.24099520361050963,-0.16586445784196258,0.36620141193270683,0.5101924054324627,-0.6190482615493238,-0.8824668196029961,-0.07875056518241763,-0.1244477741420269,-0.3676166096702218,-0.4809070164337754,0.9608060112223029,0.8519568094052374,-0.8177995518781245,-0.24853698862716556,-0.1908484287559986,0.8462320142425597,-0.6232933448627591,0.21202828735113144,0.6013126373291016,0.317225334700197,0.6279599121771753,0.6210136422887444,0.2622945951297879,-0.6192382490262389,-0.10580813093110919,-0.9136715666390955,-0.5624343962408602,-0.49880172638222575,0.9777001948095858,-0.013239018153399229,0.18128064693883061,-0.9113817913457751,-0.14145646104589105,0.9889945220202208,0.9315256401896477,0.21578613622114062,-0.9488181732594967,-0.13666019076481462,-0.09902157029137015,-0.8503116401843727,0.8113772086799145,0.7235569101758301,-0.742423118557781,-0.053515971172600985,0.9262876189313829,0.7738902037963271,0.5553739941678941,0.457747939042747,-0.05886410316452384,-0.06922341976314783,0.6545578492805362,0.5481279753148556,0.8319744016043842,-0.6317767882719636,-0.7913037338294089,-0.4560688645578921,0.7330851755104959,-0.9134086999110878,0.29369916999712586,0.877619085367769,0.3101965580135584,0.4056689264252782,0.08434057794511318,0.971028046682477,0.5348150203935802,0.33645321102812886,-0.9354157014749944,0.7028061812743545,-0.04968280391767621,0.7944726822897792,0.4306102148257196,0.5681119752116501,0.5772653091698885,-0.27200529631227255,-0.9720611036755145,0.663971811067313,-0.617038278374821,0.7942723841406405,0.6724490635097027,-0.9266793220303953,0.13851874228566885,-0.04559866664931178,-0.2695163278840482,0.6908960049040616,-0.9057856686413288,-0.7591138831339777,-0.7728186375461519,0.28010308695957065,-0.8037429684773088,0.8001899737864733,-0.09080715198069811,0.8696175804361701,0.8346290453337133,-0.282283007632941,0.7705445317551494,0.23076708987355232,0.15554293850436807,0.7796610142104328,0.11834302078932524,0.9879001919180155,0.03585340874269605,-0.48717619525268674,-0.2421743688173592,-0.37017609225586057,0.7671824116259813,0.19305538991466165,0.9404523926787078,-0.621534675359726,-0.12994483625516295,-0.9933792594820261,0.8623516177758574,-0.8503702511079609,-0.36478034034371376,0.9553575608879328,0.45134434569627047,0.018165837973356247,-0.8024749760515988,0.6064153732731938,0.4067805279046297,0.4045488159172237,0.318260342348367,-0.8313313014805317,0.9492208082228899,-0.86181974504143,0.91452901577577,-0.06029114034026861,0.9930959469638765,-0.0013072490692138672,-0.7608821396715939,0.25364513229578733,0.7232287456281483,-0.8225152781233191,0.36859986931085587,-0.38763691997155547,-0.6153024290688336,0.17287159385159612,-0.5411407579667866,-0.423474476672709,-0.8231423972174525,-0.9446986075490713,0.7857916229404509,-0.45151720894500613,-0.5876003494486213,-0.4996938221156597,-0.8823381210677326,-0.5902541815303266,-0.4150509061291814,0.6009762589819729,-0.022169244941323996,-0.5923848645761609,0.3283345429226756,-0.5526855536736548,0.24675761442631483,0.1624716534279287,0.8707882589660585,0.6979449335485697,-0.4183731619268656,0.4313202346675098,-0.3077421127818525,0.8443657997995615,0.9859138778410852,-0.436574790161103,-0.9909983072429895,-0.2648036410100758,-0.10542262252420187,-0.8022309965454042,0.8123295647092164,-0.6725823604501784,-0.5950742363929749,-0.21449552150443196,0.0938085988163948,-0.013998553156852722,-0.18924064189195633,-0.8130993437953293,0.04383326321840286,-0.8887464920990169,-0.1125066177919507,-0.24524919083341956,-0.25184197071939707,-0.17835344839841127,-0.511383687146008,0.9106697300449014,0.767113174777478,-0.03419364709407091,0.5350364036858082,0.3426107713021338,0.8950330768711865,-0.4479787638410926,-0.7250814903527498,0.9089519302360713,-0.021907603833824396,-0.22306325612589717,0.5802329033613205,-0.4528508842922747,0.2245476939715445,0.5316902068443596,0.7118844413198531,0.9830848202109337,-0.4602170861326158,-0.14174549002200365,-0.5607954734005034,-0.20586652075871825,0.9036902282387018,0.8994738715700805,-0.9020861680619419,-0.24832283332943916,-0.03998049581423402,-0.23740096110850573,0.5376202054321766,-0.16882150014862418,0.4709064522758126,0.17983315559104085,0.5666828309185803,0.3915405375882983,-0.1696984674781561,-0.19199203979223967,-0.8636343935504556,-0.25570470839738846,-0.9401801233179867,0.6053169583901763,0.3098525246605277,-0.6070854770950973,-0.4775037672370672,-0.4093869086354971,-0.8347136308439076,0.7141003119759262,0.7087901360355318,0.6692421734333038,0.5622386573813856,0.33704149117693305,-0.6078890231437981,-0.07128428434953094,0.9008425096981227,0.010066136252135038,0.32229958148673177,0.8943624063394964,0.6878307238221169,0.9234771858900785,0.2735926625318825,-0.6537049831822515,-0.8325081733055413,0.6533725881017745,0.41883290745317936,-0.5460151913575828,0.806750176474452,0.9578354307450354,-0.4439159738831222,0.19967816397547722,0.07956859236583114,0.6879712180234492,-0.2679635202512145,-0.5939440103247762,0.5057322098873556,-0.564392666798085,-0.32673639990389347,0.549963862169534,-0.6499692862853408,0.29173848731443286,-0.08263003313913941,0.1397693445906043,0.04138401476666331,0.04773675464093685,-0.09650473343208432,0.6704106056131423,0.46736722718924284,-0.04632353223860264,-0.6994690452702343,-0.0016889730468392372,0.5568591356277466,-0.8519812515005469,0.9545779791660607,-0.9361409302800894,0.41876280261203647,-0.44855832774192095,-0.02725256560370326,0.9755466841161251,-0.5802941936999559,-0.16689784033223987,-0.0847848136909306,0.10656076390296221,0.8151630186475813,-0.9125359277240932,-0.42131444392725825,-0.031183508690446615,0.6900456734001637,0.7996954992413521,0.13472497183829546,0.43777375342324376,-0.9182609193958342,0.12815476208925247,0.4370615412481129,-0.8979351143352687,0.09044936206191778,0.6007444686256349,-0.4673912697471678,-0.11743136076256633,-0.1494805682450533,-0.8871492422185838,0.6374544342979789,0.13453747099265456,-0.630416112486273,0.5440202355384827,0.6618537218309939,0.020623433403670788,0.6134475520811975,-0.23911406053230166,0.5896675116382539,-0.21399307250976562,-0.3668667306192219,0.18247708678245544,-0.11539403581991792,0.14095104997977614,-0.6871369197033346,0.49519243836402893,0.9363987948745489,-0.7939934921450913,0.9525691983290017,-0.3521979572251439,0.5971969962120056,0.4922380121424794,0.23052367800846696,-0.5275045363232493,0.9756808676756918,-0.5012960424646735,-0.14334244560450315,0.25293539837002754,-0.4748324630782008,-0.41946705849841237,-0.830732174217701,-0.31014785217121243,0.07087892899289727,0.37641916749998927,-0.8313486762344837,0.8610334978438914,-0.7680686903186142,0.9391981605440378,0.8946992238052189,-0.9928595395758748,-0.8101104856468737,-0.9353393446654081,-0.21409232821315527,-0.025717152282595634,-0.15750128915533423,-0.23699696781113744,-0.7456224001944065,0.794557130895555,-0.6536030671559274,0.12338493345305324,-0.7790252473205328,-0.4771352196112275,-0.14143511652946472,-0.3771507986821234,0.31619854224845767,0.06415659422054887,-0.4959151819348335,-0.017839967738837004,0.037281612399965525,0.5579002033919096,-0.7720507155172527,-0.44288986921310425,-0.7598891821689904,-0.7008094359189272,0.7754297824576497,0.321348425000906,-0.49591631861403584,-0.43154998030513525,-0.10851567052304745,0.08326245006173849,-0.3700234265998006,0.28011465119197965,0.9134161113761365,0.6917139431461692,0.8405604129657149,0.30835578776896,0.2336077969521284,-0.2643339242786169,-0.10140424454584718,-0.2422595820389688,-0.6520961485803127,0.9428342985920608,-0.82785410201177,-0.6144837252795696,0.14435379626229405,-0.877205494325608,0.13156893104314804,0.8185302973724902,0.9568510944955051,0.16141311544924974,-0.6859479048289359,0.930279697291553,-0.08010225184261799,0.5264757890254259,0.8590075578540564,0.8378440532833338,-0.5128921843133867,-0.24030974181368947,0.12947244569659233,0.4329996947199106,-0.3330627642571926,0.5182943111285567,-0.7392123476602137,0.06910151988267899,0.8158426275476813,-0.9977233880199492,-0.39977348828688264,-0.21826677955687046,0.35523692006245255,0.715243237093091,0.8616992416791618,0.2857257593423128,-0.4929602756164968,-0.3384105949662626,0.2549220179207623,-0.10075286636129022,0.3188122594729066,0.7761656455695629,-0.2868798212148249,-0.5016776924021542,-0.6360199498012662,-0.23318442841991782,0.9906165050342679,0.36472933273762465,-0.9071326614357531,0.5107177798636258,0.8333310363814235,-0.8497704197652638,-0.7759689772501588,0.7099166586995125,-0.3822405440732837,0.8251160676591098,-0.8065135222859681,0.15232482692226768,0.7594836787320673,0.2748877997510135,-0.8344390983693302,0.019029240123927593,-0.36418628552928567,-0.5158376027829945,0.3128529661335051,0.4348885715007782,-0.851791222114116,-0.966796790715307,0.8741073124110699,-0.029996145982295275,-0.9456489691510797,0.028106736484915018,-0.39150863187387586,-0.9195067449472845,-0.7922296607866883,-0.6945678950287402,-0.6014150958508253,-0.3545356742106378,0.5241690054535866,0.36985148023813963,-0.43948321929201484,-0.03133975528180599,-0.8528433814644814,-0.9022760535590351,0.9247158686630428,0.5819444260559976,-0.9816363696008921,-0.6485078814439476,0.5523151168599725,0.8418755945749581,-0.6274684057570994,0.718453835695982,0.02443809388205409,0.1249821768142283,0.7393280621618032,-0.08895265264436603,0.6414061430841684,0.1626815777271986,-0.7088811183348298,-0.05232938937842846,-0.5087278173305094,-0.9764318284578621,0.9720794935710728,-0.10585657460615039,-0.8810605965554714,-0.7299204058945179,0.9636766039766371,0.18312577158212662,0.7521963664330542,0.05824316339567304,-0.020162176806479692,0.37593602668493986,-0.3497042441740632,0.4007454216480255,0.24906896380707622,0.29240793781355023,0.7109179012477398,0.08569645183160901,-0.5980805410072207,0.6966265761293471,0.6770362979732454,0.7890085377730429,-0.964917563367635,0.8089701309800148,-0.7830222947522998,-0.03445624187588692,0.6610982231795788,-0.7634917520917952,-0.867491202428937,0.2882226277142763,-0.8872161861509085,-0.029385918751358986,0.8082294557243586,-0.9324998026713729,-0.039471471682190895,0.5562409195117652,-0.7691698083654046,-0.0678758192807436,-0.173435693141073,0.46040468011051416,0.7666402910836041,0.9572985055856407,0.6581080220639706,-0.8314242488704622,0.952896045986563,-0.69795300392434,0.5161085785366595,0.4996811393648386,-0.24068386759608984,0.6115801772102714,-0.25138023821637034,-0.4618221218697727,-0.55468888906762,0.7899678787216544,0.716603531036526,-0.4778256295248866,-0.06194845540449023,0.5746554573997855,-0.27184118796139956,0.6939800502732396,0.38304773159325123,0.6718868939206004,-0.6155869695357978,0.7248796857893467,0.24011205416172743,-0.8821793915703893,0.37626028759405017,-0.22643181309103966,0.3603817471303046,0.007003873586654663,0.5529520041309297,-0.13272806629538536,-0.16217841720208526,-0.32256104331463575,-0.9539929330348969,-0.17052039271220565,-0.41476217238232493,0.08528116252273321,-0.04480706434696913,0.8158515840768814,-0.16094265459105372,-0.6057273005135357,-0.18136483523994684,-0.629017872735858,0.28518134355545044,0.5701001174747944,0.13556118309497833,-0.6807009228505194,0.3428948479704559,-0.13620766531676054,0.43107631523162127,0.11005596769973636,-0.9453138383105397,0.41073093889281154,-0.3756545428186655,-0.6900566574186087,0.5156330987811089,-0.9513527234084904,0.8168274341151118,0.9950041146948934,0.6798167075030506,-0.5230557774193585,0.9093489665538073,-0.5185727295465767,0.09060014598071575,0.4376043891534209,-0.6099906992167234,0.1128400624729693,-0.10328223183751106,-0.9621056630276144,-0.38528835913166404,-0.6736227753572166,0.16986976098269224,0.6081280200742185,-0.4775772620923817,-0.03945167362689972,-0.6299783983267844,0.5303837317042053,-0.8090367801487446,0.7281411676667631,0.9838737733662128,0.4283240963704884,0.027284578885883093,0.43550658924505115,0.34476820612326264,0.32856021309271455,-0.8120119208469987,-0.5477462252601981,0.7780359387397766,0.6663556359708309,0.5862655797973275,-0.12195059889927506,-0.9414248173125088,0.6454553995281458,-0.2459687148220837,0.9151244126260281,-0.46107197692617774,0.9779049605131149,0.451192163862288,-0.08206422487273812,0.8940517120063305,-0.4233022462576628,0.28079342003911734,0.05111129488795996,-0.4604645795188844,0.3782537220977247,0.3932650722563267,-0.569488384295255,0.5885201077908278,0.4357074094004929,0.8441897053271532,0.5210142028518021,0.6535029215738177,-0.6370660690590739,0.07666935818269849,-0.13142547477036715,0.5361574399285018,0.42414121190086007,-0.9703209293074906,-0.6253030728548765,0.46061302348971367,0.3433662638999522,-0.8721042284741998,0.5621390421874821,-0.17940754955634475,0.3366222488693893,0.05396660789847374,0.7317793001420796,-0.7580798179842532,0.8419928853400052,0.8337409025989473,0.14045974519103765,-0.2698767529800534,0.22879389999434352,0.7289057788439095,0.38559673400595784,0.22643656842410564,-0.21489307144656777,-0.4169231550768018,-0.7897081421688199,0.6567896991036832,-0.2970322147011757,-0.5452774632722139,0.17463009431958199,-0.1714355326257646,-0.12446550000458956,-0.39310173504054546,-0.666764855850488,0.25458056293427944,0.8982083047740161,-0.8868300379253924,0.5920515204779804,-0.9346360857598484,0.33672246197238564,0.6104457261972129,-0.28119945246726274,0.07503452012315392,-0.7636674758978188,-0.35596361802890897,-0.10748970415443182,0.5932834534905851,-0.28959526401013136,0.8535499395802617,0.293047153390944,0.9656440834514797,-0.4139412669464946,0.8457332546822727,0.7594987284392118,-0.01881016045808792,-0.8013653913512826,-0.5217901114374399,0.24453268758952618,0.45993782998993993,-0.026210100390017033,-0.1698460066691041,-0.45464736642315984,0.21027758670970798,0.5265722228214145,-0.8642115127295256,0.1365340892225504,-0.417095810174942,0.8585640168748796,0.9026220934465528,0.5050779054872692,0.6115927184000611,-0.9152949317358434,-0.9599850517697632,0.7797907926142216,-0.43566575087606907,0.1416798159480095,-0.3743983986787498,0.7196469539776444,0.5961624467745423,0.29029019409790635,-0.30132474936544895,-0.1262019257992506,-0.8491917843930423,-0.8708168738521636,-0.0894147134386003,0.9922118191607296,0.6884568217210472,-0.5023453971371055,0.6182309677824378,-0.22607000777497888,0.08066385425627232,-0.724837401881814,0.1643838076852262,0.4277679016813636,-0.23164544254541397,-0.05992555897682905,-0.9847593447193503,-0.5695346770808101,-0.5718145901337266,-0.8029025737196207,0.6997852683998644,-0.012176014017313719,0.07573149539530277,-0.0055869161151349545,-0.6379479146562517,0.6594683597795665,-0.621449466329068,0.3156968643888831,-0.5963221061974764,-0.32255330961197615,0.717262074816972,-0.9433756032958627,-0.5085010663606226,-0.5176434451714158,0.03241911809891462,-0.8414178034290671,-0.5853459700010717,0.9427279401570559,-0.35222227731719613,-0.824982185382396,0.6168059757910669,-0.2121577183715999,0.8282672809436917,0.37089525256305933,0.500187398865819,0.012239358853548765,-0.6746609844267368,-0.8873507473617792,0.5548318293876946,0.9656365695409477,0.4494185443036258,0.08304813457652926,0.3442264134064317,-0.5460702320560813,0.33494526240974665,-0.6220434112474322,-0.3911150675266981,0.373402445577085,0.47805843967944384,0.3617758643813431,-0.1374931763857603,-0.26524970727041364,0.28269316675141454,-0.8564313426613808,0.23882269393652678,0.8658170280978084,0.4909693640656769,-0.7934094350785017,-0.9303468004800379,-0.7201538574881852,0.2913670837879181,-0.39185315277427435,0.3493462838232517,-0.36956672789528966,-0.5267424336634576,-0.6767740398645401,-0.05931351566687226,-0.20992715284228325,-0.6374743129126728,0.24456176161766052,-0.7542510642670095,0.0027264137752354145,-0.16216855682432652,-0.6454073232598603,-0.8367686406709254,0.6214677733369172,0.46244351705536246,-0.3725943574681878,-0.26746739400550723,0.8949436950497329,-0.31305284751579165,0.3915912779048085,-0.1553484732285142,-0.5132011757232249,-0.37464351020753384,-0.6991398264653981,0.2374303862452507,-0.8507079938426614,0.8094170982949436,-0.5291609894484282,-0.6860268940217793,-0.6184275285340846,0.006711008492857218,-0.7330403691157699,-0.373032255563885,0.9454370266757905,-0.38226259499788284,-0.7853763648308814,-0.16983813559636474,0.7958486820571125,0.048035162035375834,-0.6220817496068776,0.06042774906381965,0.4146061558276415,-0.25292010558769107,0.12915811594575644,-0.52933378983289,-0.39049489330500364,0.19743542047217488,0.35594464745372534,-0.972353883087635,0.6248529888689518,-0.15659422054886818,0.995013568084687,0.39568639686331153,-0.9338851822540164,-0.5999666494317353,-0.6664431542158127,0.428921218495816,0.7844118652865291,-0.14956909650936723,-0.95945327822119,0.3093058792874217,0.08582907170057297,0.984834841452539,-0.9544469378888607,0.11469664564356208,-0.9526322642341256,-0.7138635395094752,0.9841308477334678,-0.6549013997428119,-0.762796632014215,-0.980910305865109,0.2863670620135963,-0.3561815298162401,-0.6721702250652015,0.0471627744846046,-0.09883129969239235,0.4087266572751105,0.869811394251883,0.41937284963205457,0.8960425606928766,-0.10460150660946965,0.9338800855912268,0.7136319922283292,0.9399413047358394,0.4189274786040187,-0.6844217665493488,0.20393414702266455,-0.7149205254390836,-0.614649647846818,-0.9600415430031717,0.16328518651425838,-0.23780460329726338,0.3725770195014775,-0.8376725371927023,-0.2947472184896469,0.9509155671112239,-0.06725388951599598,0.5220505460165441,-0.26833399944007397,-0.4694029246456921,-0.597229877486825,-0.7988909878768027,0.09249325795099139,0.919122411403805,-0.09726905450224876,0.2492881240323186,0.6359955347143114,-0.11212069215252995,-0.5491844988428056,0.38444496178999543,-0.85019521554932,0.10161962267011404,0.30553105007857084,-0.2756145359016955,-0.8931283550336957,0.3271661209873855,-0.17585391970351338,-0.6652791458182037,0.5518671493045986,-0.2528685233555734,0.6682205977849662,0.5328675657510757,0.3172518345527351,0.7581948526203632,-0.6230168538168073,-0.18147872015833855,-0.03586327517405152,0.49529010569676757,-0.7911982452496886,-0.5423310012556612,0.48926656879484653,-0.0033024922013282776,-0.2166637317277491,-0.10771224787458777,-0.0999559317715466,-0.8798525761812925,-0.6040147598832846,0.7385330852121115,-0.7531657353974879,0.3536644992418587,-0.776826124638319,0.8808288546279073,0.41664827754721045,0.6588289635255933,0.8621864938177168,-0.08524099877104163,-0.3042576932348311,-0.580738349352032,0.280159710906446,0.509778456762433,0.2021794579923153,-0.9201755789108574,-0.6926185972988605,0.35969948722049594,-0.06567173404619098,-0.526813683565706,-0.9678935091942549,-0.05068380385637283,0.5470022018998861,0.27662987168878317,0.2645776104182005,-0.14895939081907272,0.37443576380610466,-0.18343832483515143,0.05560302082449198,0.18360406393185258,0.19535154523327947,0.36324862018227577,0.0490549779497087,0.14451265055686235,0.13518973859027028,-0.9460688577964902,-0.36954477010294795,-0.448560434859246,-0.22051478642970324,-0.1316251577809453,0.2366408514790237,0.2516639968380332,0.5687316074036062,-0.6998089449480176,0.8188419658690691,-0.03315031062811613,0.4706902327015996,0.6294515281915665,-0.36316261533647776,0.05002066306769848,-0.8174022268503904,-0.2070575226098299,0.8376092445105314,-0.5235370425507426,0.7356461668387055,-0.4081079065799713,0.3881330583244562,0.5788256386294961,0.4786841496825218,-0.9493240849114954,-0.3967417813837528,0.7957098791375756,0.3797398111782968,-0.738201554864645,-0.5019343988969922,0.33990147011354566,-0.7382094846107066,0.3577703144401312,-0.04012925177812576,-0.7286134595051408,0.5532904979772866,-0.0765586094930768,-0.8964456412941217,-0.8420530436560512,-0.23832589853554964,0.7073013610206544,-0.0815014117397368,-0.9150539743714035,0.36753279296681285,-0.5135687827132642,0.6680243071168661,-0.4115824159234762,-0.6010537683032453,-0.20652263285592198,0.1759362369775772,-0.8409133870154619,-0.08901729201897979,0.6545825367793441,0.9120748280547559,0.6365169426426291,-0.8826610627584159,0.8457220937125385,-0.5342585896141827,0.23130486998707056,-0.9219524506479502,0.5836500991135836,-0.3516243938356638,0.37448777072131634,-0.6739672464318573,-0.6127495993860066,0.00039091240614652634,-0.22815906768664718,0.5385290835984051,-0.15271592885255814,-0.7406355780549347,0.17350771883502603,0.8572377203963697,-0.31697064032778144,0.6682605319656432,-0.11702738935127854,-0.5956122064962983,-0.8254029736854136,-0.9912708159536123,-0.03641503909602761,-0.31054625334218144,-0.021045958623290062,-0.7348232455551624,-0.30287635000422597,0.06225285632535815,0.5421946421265602,0.16717949230223894,-0.6133992616087198,-0.7097058887593448,-0.10069299722090364,0.44465625332668424,-0.36059328401461244,0.8185286549851298,-0.594136418774724,-0.6718656863085926,0.7187917996197939,-0.9882150017656386,0.47388360695913434,-0.418117574416101,0.4828521986491978,0.49046819983050227,0.7485663532279432,-0.965328190010041,0.6101019601337612,0.4942032163962722,0.49348290637135506,-0.8882908979430795,0.5766471028327942,-0.4220719747245312,0.032724947202950716,0.14599918527528644,-0.22621011827141047,-0.9744194825179875,-0.2562812166288495,-0.21725327521562576,0.20238174591213465,0.6193300629965961,0.4256064402870834,0.047400637064129114,0.14326533675193787,-0.25221344735473394,0.7711497112177312,0.8636501743458211,-0.10642436891794205,0.7065060962922871,-0.6275021936744452,0.7949278960004449,-0.9092255486175418,-0.9470395343378186,0.26237656408920884,-0.30333826830610633,-0.4553275518119335,0.9829953745938838,-0.720312983263284,0.4792678104713559,-0.03724652715027332,0.5726354508660734,-0.623668042011559,-0.047705385368317366,0.7316874428652227,0.43442239658907056,-0.9843758610077202,0.3418328077532351,-0.6756961392238736,0.8963965578004718,-0.4084490486420691,-0.8752675545401871,-0.7811707057990134,0.5181027799844742,0.6213713525794446,0.7966355793178082,0.4241731562651694,-0.12283291760832071,-0.17801377875730395,0.07477018935605884,-0.5279110185801983,-0.8516130093485117,0.9721975158900023,0.793657073751092,0.7294303788803518,0.2803859398700297,-0.45883851777762175,-0.4840932064689696,-0.5039046527817845,-0.11524637322872877,-0.18084076279774308,-0.2657412448897958,-0.778686685487628,0.4091942007653415,-0.19907393772155046,0.2777120154350996,0.4262917321175337,0.8652291013859212,-0.19581216666847467,0.39921240927651525,0.328266398049891,0.6557058854959905,0.16234225314110518,0.515766454860568,-0.44806221686303616,0.992820433806628,-0.9130538986064494,0.07015411835163832,-0.30868822429329157,0.49516488751396537,0.47179686604067683,-0.35872945887967944,-0.0950456690043211,0.5239878101274371,-0.25114797381684184,0.08956750715151429,-0.40088700596243143,0.5632259934209287,0.23685616767033935,-0.14649123698472977,0.3278687517158687,0.9430457553826272,0.28436929173767567,0.25504440627992153,0.5368460859172046,-0.03724252060055733,0.6654778374359012,-0.5001070648431778,-0.3253393522463739,-0.9611538168974221,0.31809891341254115,-0.24812587210908532,-0.057241092436015606,0.2971386616118252,0.3311026864685118,-0.940908086951822,0.17904436914250255,-0.804777117446065,-0.24208879191428423,-0.9976205327548087,0.9174070134758949,-0.1851215655915439,-0.2594356229528785,-0.5880496320314705,0.11430614395067096,0.04357246542349458,0.4369750521145761,-0.0099017140455544,-0.07051912415772676,0.9629409471526742,-0.832928616553545,0.04529542941600084,-0.5252733887173235,-0.7699683015234768,0.6091829887591302,-0.5923529504798353,-0.355563182849437,0.4457039791159332,0.8139883624389768,0.38536005932837725,-0.4374003419652581,-0.0426276451908052,-0.049413498025387526,-0.07376539800316095,-0.7244774335995317,-0.057775699999183416,-0.5899770329706371,-0.23386637214571238,0.618790035136044,-0.9260031539015472,0.33624594658613205,0.989581061527133,0.0606931415386498,0.24630509689450264,-0.23394017899408937,-0.17143367789685726,-0.20909314416348934,-0.03670685226097703,-0.9746985919773579,-0.5926110586151481,-0.5064042420126498,-0.06009084591642022,-0.4073383556678891,-0.6498471316881478,0.7269687899388373,0.4062966131605208,-0.5388923780992627,-0.38075695326551795,0.36514002550393343,0.1293337708339095,0.06227658223360777,-0.3650667048059404,0.023846042808145285,-0.3092439379543066,-0.5330294026061893,-0.455334413331002,-0.3216552841477096,-0.673481925856322,0.1275863405317068,0.7653402830474079,0.6400704085826874,-0.18612291384488344,0.11785086710005999,-0.80298140225932,-0.9650361854583025,-0.7557429955340922,-0.0029936782084405422,0.29189767967909575,-0.21228810120373964,0.363636311609298,0.3364339987747371,-0.8747373889200389,-0.0237311995588243,-0.028920774813741446,-0.43820759234949946,-0.8640450066886842,-0.4424875467084348,0.8743492276407778,-0.2001768471673131,-0.9593954971060157,0.49782060319557786,0.9887062325142324,0.20007141446694732,-0.0075135547667741776,-0.6967991171404719,0.6460730391554534,-0.4700793814845383,0.9077988909557462,0.4218108057975769,-0.7654895186424255,-0.16283253487199545,-0.27629545284435153,-0.01809119340032339,0.5755364624783397,0.7923366273753345,-0.3821750534698367,0.4413881227374077,0.16350269597023726,0.18480051681399345,0.7697489256970584,0.6016826322302222,-0.7628710712306201,0.5625186269171536,-0.27824882976710796,0.10763243539258838,0.9419398298487067,0.1362515646032989,0.3551919385790825,0.529027066193521,-0.20400531124323606,0.3283067876473069,0.7849979409947991,-0.8560897717252374,0.7091426253318787,0.18467487441375852,-0.9483647798188031,0.05139481229707599,-0.8612286769784987,0.40581780672073364,0.17658532597124577,0.34631374664604664,-0.8564049964770675,0.30792095931246877,0.9824900003150105,-0.12766925571486354,-0.032022940926253796,0.2814532285556197,0.25931922253221273,-0.016361516900360584,-0.3267209054902196,-0.9739397508092225,0.19397397805005312,0.2256006603129208,-0.1522593731060624,-0.761788107920438,0.7415616824291646,-0.7349270624108613,-0.8397450973279774,-0.24949684692546725,-0.14065777231007814,0.8410754157230258,0.9501382620073855,0.046171538066118956,0.2645220127888024,0.019610431976616383,0.8293833322823048,-0.12280289828777313,-0.7499728724360466,-0.4603006634861231,-0.5545010757632554,0.9581162752583623,-0.9219711371697485,0.4629005859605968,0.2933548018336296,-0.9780643032863736,-0.6323207444511354,0.7359276129864156,0.2973058791831136,-0.6228735134936869,-0.31622286699712276,0.4495901772752404,0.5539810778573155,0.04636990558356047,0.7995519717223942,-0.6880528582260013,0.8062645592726767,0.9485087976790965,0.11538965441286564,0.08091663848608732,-0.1885834727436304,-0.7139554619789124,0.20609925733879209,0.7055902318097651,-0.2723281173966825,-0.7985616405494511,0.09568603336811066,0.14874912844970822,0.9280943726189435,0.9458791222423315,-0.2824063468724489,-0.3029673448763788,-0.7391152000054717,0.6906795408576727,-0.5236378163099289,0.004532699007540941,-0.515541716478765,-0.33105021296069026,0.7399096149019897,0.664532735478133,-0.07299493718892336,-0.7870313893072307,-0.44436697009950876,0.1478393222205341,-0.11053640069440007,0.8217372400686145,0.2542647738009691,0.11929547553882003,0.8957785801030695,0.8531195186078548,-0.9989856062456965,-0.2544863955117762,-0.6255737440660596,-0.7442182856611907,-0.28589889593422413,-0.8043717383407056,0.14926045574247837,-0.9308677092194557,0.33196621714159846,-0.07199481781572104,0.745548200327903,-0.20360198616981506,0.3312920741736889,-0.40636172285303473,0.979750860016793,-0.21656877268105745,-0.21572426659986377,-0.9191657397896051,0.9244342539459467,-0.5146548473276198,0.029024622403085232,-0.20973097393289208,0.3029411076568067,0.73402010044083,-0.3463481036014855,-0.34885501535609365,-0.1286009787581861,-0.3152078855782747,0.42996619595214725,-0.8017677823081613,-0.11204011598601937,0.39283554162830114,0.7867318699136376,0.7379619874991477,0.24705736245959997,-0.09152127290144563,-0.8297077747993171,-0.25165297416970134,-0.11106626223772764,0.7379696876741946,-0.06345397932454944,0.2824233095161617,0.3084411467425525,-0.47856091754511,0.7894080141559243,-0.6492495695129037,0.45295526133850217,0.8480746634304523,-0.28827100386843085,0.38944164756685495,-0.8414808358065784,0.4774039820767939,0.8387612132355571,0.846897195558995,0.7790492968633771,0.6262009665369987,0.38838737923651934,-0.9746290198527277,0.18175110034644604,-0.517271151766181,-0.12855538818985224,-0.8338881302624941,0.2873743190430105,0.21610892610624433,0.16343722771853209,-0.6327432277612388,-0.8776937443763018,0.9221431501209736,0.5940786623395979,0.8378920699469745,-0.7415508097037673,-0.8644046494737267,-0.018474722281098366,0.0006818538531661034,0.2525306437164545,-0.4920576880685985,0.2973684058524668,0.6451211366802454,0.8496258193627,0.76768988231197,-0.8906156145967543,-0.7005118299275637,0.2676202319562435,0.03057495830580592,-0.6101792356930673,0.6719902632758021,-0.9677078416571021,0.41450708312913775,-0.3623565104790032,0.1660297648049891,-0.1668708990328014,-0.6859149686060846,-0.06253186939284205,0.23304450698196888,-0.23009466100484133,-0.8482826901599765,0.22081166598945856,-0.01986593473702669,-0.8094723694957793,0.8093373430892825,-0.811464081518352,0.8636852935887873,0.7285813600756228,0.5147969308309257,0.1180333592928946,-0.33865818148478866,-0.314718475099653,-0.3271469506435096,-0.9851760570891201,0.6599753848277032,-0.7151913261041045,0.9625591170042753,0.384956699796021,0.15961867477744818,0.0007050787098705769,-0.9432153049856424,-0.7274910327978432,-0.5157928541302681,0.06962315505370498,0.084695840254426,-0.8786955452524126,-0.615935695823282,0.5575513085350394,0.756049151532352,0.6663510650396347,-0.551602310501039,0.8575073778629303,0.3827025811187923,0.8515750705264509,0.27603822480887175,0.8654913017526269,0.436032687779516,-0.7021345901302993,0.39297932107001543,0.664610655978322,-0.2710644812323153,-0.5113524659536779,0.636894284747541,0.7320575267076492,-0.10659381747245789,-0.7282882113941014,0.3631728459149599,0.4501080815680325,0.570094074588269,0.7654551863670349,0.45224203588441014,-0.6926227831281722,0.5804653046652675,-0.7084393687546253,0.665660984814167,-0.1562879690900445,0.412414223421365,-0.27578469598665833,-0.4464389360509813,-0.902132079936564,-0.5665645780973136,0.3098074961453676,0.7233090102672577,0.37646594969555736,-0.10505390586331487,0.4770624921657145,-0.04604795156046748,0.5821025427430868,-0.06301021156832576,0.8540906794369221,-0.9455830398947,0.43815935542806983,0.9595867483876646,0.2927755326963961,-0.48386022448539734,-0.19831893034279346,0.5887423031963408,0.09687908692285419,0.06926081888377666,-0.2174276583828032,-0.6595275686122477,-0.048326279036700726,-0.9904318847693503,-0.6110424627549946,-0.6882978705689311,0.14101769775152206,-0.21827751770615578,-0.9874700382351875,0.6619764450006187,0.042274093721061945,0.9259944427758455,0.07519074529409409,0.9883954399265349,0.6045089359395206,-0.6894940603524446,0.27047945791855454,-0.7685082065872848,0.3746885168366134,-0.4784367810934782,0.8846072964370251,0.6533262515440583,-0.23972637439146638,-0.519822021946311,-0.6712160226888955,0.8345776069909334,-0.7517695822753012,0.9756090394221246,-0.6318250806070864,-0.4423445574939251,0.7558474792167544,-0.426889652851969,-0.6167127205990255,-0.5871012029238045,-0.0390508989803493,-0.4844254059717059,-0.13913794280961156,-0.8062615836970508,-0.02800643490627408,0.9389652740210295,-0.6682403599843383,0.26573494356125593,-0.409938485827297,0.002975264098495245,0.08876390056684613,0.7814269522204995,-0.7474512443877757,0.15366643108427525,0.10129224695265293,-0.08296604221686721,0.3490168242715299,0.09056445537135005,0.08043978549540043,-0.3458844004198909,0.958530543372035,-0.22881976794451475,0.2679980774410069,-0.7795300278812647,-0.3680504132062197,0.21521428041160107,0.8874711198732257,-0.5179967940784991,-0.254753184504807,-0.6502474155277014,-0.7576696299947798,-0.44617250422015786,0.6750500802882016,-0.49052077485248446,-0.8761331574060023,0.8106674416922033,0.8031949931755662,-0.7026530778966844,0.7376304473727942,-0.8360806768760085,-0.11614954192191362,-0.3259422620758414,-0.4593622670508921,0.38339437963441014,0.9028001679107547,-0.9707324891351163,-0.7264126548543572,-0.5958915557712317,0.6603239481337368,0.6839491231366992,0.9082261300645769,-0.08950820472091436,-0.18488549161702394,0.10600458271801472,-0.37099182419478893,-0.8405481483787298,-0.7153962389566004,0.8011328037828207,0.12531805410981178,0.1944921617396176,-0.20038506714627147,0.7459224425256252,-0.5230635143816471,0.91629240475595,-0.32573865726590157,-0.21144519886001945,-0.5555792842060328,0.42594335693866014,0.5607605180703104,-0.988628055434674,0.00828023161739111,0.8396557248197496,0.7058835341595113,0.8321272321045399,0.8514073067344725,-0.8226887821219862,0.8537496840581298,0.49668749049305916,0.405880531296134,0.18099556723609567,-0.2570526204071939,-0.06659271800890565,-0.6259452323429286,-0.3081920533441007,0.40141548309475183,0.557181941345334,-0.09717338858172297,-0.8898446676321328,0.3304066420532763,0.7399431234225631,-0.8564959592185915,-0.6873952751047909,0.8722522538155317,0.32085438119247556,0.0037526097148656845,0.9046626351773739,0.03152079414576292,0.8642576965503395,-0.33135423995554447,0.43396792840212584,-0.7112528830766678,0.8060579253360629,0.8159714587964118,0.2785010561347008,0.44930913718417287,-0.12914320267736912,0.7918294882401824,-0.8222960876300931,-0.3616908034309745,-0.03748763585463166,0.8208621353842318,-0.16166906943544745,0.5689399177208543,-0.8808544944040477,0.9242652975954115,-0.7478715120814741,-0.952566733583808,0.4893496590666473,-0.553915130905807,0.22024186048656702,0.18665678892284632,0.9926447095349431,-0.22360034985467792,-0.5624130968935788,0.5217751543968916,-0.4166712281294167,0.9284544652327895,0.5405366998165846,0.4067370849661529,-0.31358940759673715,0.41529454197734594,0.8001591111533344,0.8898446694947779,0.9968092269264162,0.43415896873921156,0.1269410438835621,0.056345084216445684,0.5862428634427488,-0.9322477113455534,-0.3356553795747459,-0.7805104088038206,0.26994154416024685,0.34330787090584636,-0.5078095742501318,-0.3581730620935559,-0.5680664088577032,-0.307371127884835,0.05549683840945363,-0.1410454325377941,-0.9723548381589353,-0.7208111616782844,-0.5812823083251715,-0.28583772061392665,0.05685174325481057,0.24637073278427124,-0.9944493640214205,0.556930688675493,0.3446946428157389,-0.3506965530104935,0.18002059310674667,-0.9353945660404861,-0.5561901917681098,0.855552816297859,-0.48415148723870516,0.5904321684502065,-0.748235197737813,-0.5342999212443829,-0.46260274527594447,-0.15332928532734513,0.8618253539316356,0.6884223446249962,-0.18629243271425366,-0.7891579968854785,0.20356853492558002,0.4546206961385906,-0.48417807230725884,-0.15511038666591048,-0.8944496288895607,-0.009672423359006643,0.9911546078510582,-0.5372190824709833,-0.4727175934240222,0.42580557195469737,0.1691991100087762,-0.8546089767478406,-0.281297002453357,-0.9720211834646761,-0.6543088122271001,0.044567354023456573,0.9015055801719427,0.9929794217459857,-0.5157812503166497,-0.5680011897347867,-0.3597936653532088,-0.2786715663969517,0.00025739986449480057,0.32900360645726323,-0.4157306496053934,0.09931087493896484,-0.26034983806312084,-0.16775524942204356,0.8521947613917291,-0.9138997471891344,-0.9122319403104484,-0.7081073308363557,-0.6053403886035085,0.49116953695192933,0.49423697125166655,0.16909331222996116,-0.5629332517273724,0.9488875460810959,0.7659985655918717,-0.21991173969581723,0.1448273453861475,0.09164441423490644,-0.9004910457879305,0.3134580100886524,0.46477541141211987,-0.8032247046940029,-0.1405502469278872,0.5235822610557079,0.812869415152818,-0.664451717864722,0.8213769029825926,0.9922803356312215,0.036905776243656874,0.9165671151131392,-0.41041476279497147,-0.9770534597337246,0.35743253538385034,-0.5177782606333494,-0.014401969965547323,0.32410360081121325,0.9599705906584859,-0.4088489627465606,0.8191253230907023,0.23725897120311856,-0.5873903352767229,0.761761306785047,0.2121083689853549,0.1246379790827632,0.7842385917901993,0.1293453061953187,-0.15816345810890198,-0.04570666654035449,0.20450757211074233,-0.36723511200398207,-0.9320672103203833,-0.9124608086422086,-0.43652292899787426,0.6662988997995853,-0.22116321045905352,-0.40891694091260433,-0.13842402677983046,-0.043791175819933414,-0.17509607039391994,0.526345940772444,0.8857847210019827,-0.18595771631225944,0.9634702526964247,0.4047184968367219,-0.24377795681357384,0.10888885520398617,-0.5067383856512606,-0.055766492150723934,0.6457000416703522,-0.7889613290317357,0.15588057413697243,-0.10791105637326837,0.990158159751445,0.4108256855979562,0.6527588427998126,0.0702962358482182,-0.7015087367035449,0.5075760767795146,0.1157685499638319,-0.3633845029398799,-0.2678988156840205,-0.45021615782752633,0.19139349646866322,0.2855483749881387,0.3702305215410888,0.8150189355947077,-0.10361091699451208,0.5278311362490058,-0.8903600452467799,-0.9727412867359817,0.22637413535267115,0.9142485097981989,0.1295068208128214,0.9733415059745312,0.00296413479372859,0.8885360537096858,0.9128423812799156,0.5694293286651373,-0.2658455674536526,-0.4987488240003586,0.3244499689899385,0.12409686297178268,-0.13274066569283605,-0.8912324020639062,0.9890001835301518,0.9243682599626482,-0.28442283533513546,0.10579419462010264,-0.5497906180098653,0.15618610009551048,-0.18663652101531625,-0.5422090142965317,-0.716728734318167,0.9597396072931588,0.9944518362171948,-0.6288427826948464,0.1027672691270709,-0.5411350820213556,0.4670985876582563,0.4497314081527293,0.049372806679457426,0.341743316501379,0.16923834383487701,-0.15191865107044578,-0.12817864259704947,-0.7185911564156413,0.5931365750730038,0.1971747507341206,0.03897517593577504,-0.6113847210071981,0.7490822435356677,-0.41643912019208074,-0.06022615032270551,-0.8190887584351003,0.3334448249079287,-0.4502990790642798,0.2005316000431776,-0.6133160986937582,-0.8415214638225734,0.5007380857132375,0.7346083335578442,0.9064770936965942,0.01418966194614768,0.030330725014209747,-0.7945374161936343,0.04840290127322078,0.47289951238781214,-0.7828248147852719,0.5865599196404219,0.8689206237904727,0.04008261673152447,0.5968718496151268,0.17718045599758625,-0.7578713460825384,-0.6870532422326505,0.319739262573421,0.6184463514946401,0.6136615267023444,0.11294311191886663,-0.5604925998486578,-0.8509495523758233,0.15445690834894776,-0.07066144095733762,0.2833825000561774,0.21742945769801736,0.32904298650100827,0.41917330818250775,0.2946620211005211,0.42869870364665985,-0.33235129807144403,0.001729372888803482,0.44643472554162145,0.7931781988590956,-0.503328706137836,0.2484473790973425,0.023575322702527046,-0.7403154470957816,-0.878888217266649,0.7589445803314447,0.825402851216495,0.6711998684331775,-0.5531516680493951,0.7836827477440238,0.40599801298230886,-0.49863896518945694,0.6551624052226543,0.1475204648450017,0.5320882895030081,0.2345237098634243,-0.11251617921516299,0.09798408532515168,-0.1342880018055439,0.09286783915013075,-0.21817722776904702,-0.8668676353991032,-0.207864785566926,0.06575458403676748,0.6970707336440682,0.8156454265117645,0.3172068065032363,0.004365808796137571,0.048664729576557875,-0.41045282781124115,-0.7917321943677962,0.3699477924965322,-0.4782769144512713,0.27632904099300504,-0.055931988172233105,0.8499188018031418,-0.23171107843518257,0.8947663763538003,0.005609104875475168,0.38190521067008376,-0.6422193790785968,0.01691972091794014,-0.5487257656641304,-0.34402702935039997,-0.018216188065707684,0.3634716868400574,0.6663062232546508,0.4232692113146186,-0.011299904901534319,-0.41871079010888934,0.2134937420487404,0.5221661766991019,0.13450910756364465,0.5717182853259146,-0.9802842065691948,0.4620452905073762,-0.9290156909264624,-0.37017861660569906,0.6771571752615273,-0.5145765226334333,-0.914282857440412,0.9889111067168415,-0.9644699832424521,0.9682457465678453,0.2556302761659026,-0.6309870104305446,0.266339173540473,-0.9135342012159526,-0.2349067348986864,-0.12448440818116069,-0.908588252030313,-0.9146146113052964,-0.5729545704089105,-0.41508597880601883,0.3980952245183289,0.24533817218616605,-0.535332749132067,-0.6559690083377063,0.9191249199211597,-0.30176225071772933,0.1531588858924806,-0.8807211262173951,-0.26149550545960665,-0.26313890563324094,0.22520175017416477,-0.214601234998554,-0.23310056049376726,0.7303674323484302,0.20828502532094717,-0.22671382362022996,-0.08520393865182996,0.37251506792381406,-0.1248189234174788,-0.5592183321714401,-0.9369894196279347,0.49678116012364626,-0.5914285685867071,0.4717211006209254,-0.016094036865979433,0.36049780156463385,0.8710574121214449,-0.962103271856904,0.1499462565407157,-0.553381813224405,0.8341758851893246,-0.709144753869623,-0.39432533644139767,-0.33832039264962077,-0.06480235327035189,-0.8661192958243191,-0.5603320631198585,0.7527393097989261,0.9796849978156388,-0.19019984174519777,0.7436816063709557,-0.7508777366019785,0.1782536651007831,-0.11226627649739385,-0.7135948659852147,0.570675172843039,0.06233777664601803,0.5114132049493492,-0.3523472766391933,-0.7902400936000049,-0.8333713114261627,-0.915580119471997,-0.05012906948104501,-0.6191186006180942,-0.30247681168839335,-0.8266440676525235,-0.11805246537551284,0.9485316537320614,0.8633927055634558,0.1945786876603961,-0.29912313586100936,0.47609001537784934,0.7139132646843791,-0.7170790322124958,-0.3854224979877472,-0.0759076252579689,0.46715952502563596,0.7852565981447697,0.5380941331386566,-0.3663007067516446,-0.9265286661684513,0.2042582305148244,0.050735424272716045,-0.17392880097031593,-0.9778816597536206,-0.6784169618040323,0.8335639107972383,0.1600898983888328,0.1551600294187665,0.5169850969687104,0.8764202883467078,-0.20279556047171354,-0.2753131170757115,-0.7683519679121673,0.6946214316412807,0.21206914307549596,0.06003313418477774,-0.7808658666908741,0.7494754679501057,-0.0686425263993442,-0.13943347614258528,0.06827365001663566,0.9513995749875903,-0.316097489092499,0.6847259276546538,0.7587863313965499,0.22453952487558126,0.9603754291310906,-0.5704284789972007,-0.1785643184557557,-0.7761725820600986,0.7081702509894967,0.3003855044953525,-0.5152039281092584,-0.7378043429926038,0.1942136948928237,-0.41603088192641735,-0.7418109062127769,-0.06045328313484788,0.32090101670473814,0.8333923551253974,0.5242496258579195,-0.07056583184748888,-0.32318416563794017,0.025965246371924877,0.5150024434551597,-0.5729875070974231,0.8976762718521059,-0.43545624939724803,0.8924581785686314,-0.5869256206788123,0.7506742356345057,0.08705500001087785,0.3852695096284151,0.09052723413333297,0.13883056119084358,0.7619218043982983,-0.9167753318324685,0.8102627638727427,-0.46412667632102966,-0.6511555821634829,0.49650557432323694,-0.8697403226979077,0.8830218282528222,-0.04835747368633747,0.63305245898664,-0.2629818837158382,-0.6273636762052774,-0.3792727757245302,0.04004413587972522,0.062146680895239115,0.4911695742048323,-0.6953556789085269,0.8237200318835676,0.3620418952777982,-0.7329249787144363,-0.8393120253458619,-0.7405057298019528,-0.3452072078362107,-0.14800096675753593,-0.7734549879096448,-0.44635110488161445,-0.7739229588769376,0.8517736326903105,-0.886965851765126,-0.11378993932157755,0.09767992002889514,0.005270231515169144,0.9710686174221337,-0.9817733191885054,-0.5708544454537332,-0.33499149326235056,0.3960424461401999,0.9173906138166785,0.332816774956882,0.554494135081768,-0.8354199030436575,0.04924533190205693,0.7470958428457379,0.6592018031515181,0.12190734827890992,0.31727586640045047,0.28779748594388366,-0.6851089242845774,0.8697287240065634,-0.08176046283915639,0.511380145791918,-0.5354480394162238,0.5704823695123196,0.4986143736168742,-0.39105076575651765,-0.8847806341946125,0.7564536463469267,0.6337686935439706,0.5042081833817065,-0.2540464401245117,-0.36038482980802655,-0.6694417735561728,-0.6081774588674307,0.6503059859387577,-0.40048731677234173,-0.20076837576925755,0.024948465172201395,0.9874491388909519,0.13094180449843407,-0.3908666134811938,0.9210955258458853,-0.8492558780126274,0.6803077422082424,-0.10259632300585508,-0.07345546036958694,-0.7903803051449358,0.3635308020748198,0.16717435652390122,-0.6800553146749735,-0.6573628499172628,0.8597794570960104,0.9383359872736037,-0.599960268009454,0.18515480821952224,-0.9987242501229048,0.6579039734788239,0.08411392336711287,0.9380728639662266,0.23040286730974913,0.39016050938516855,-0.2729444717988372,0.9300111890770495,-0.22881479328498244,-0.592035221401602,-0.05227720690891147,-0.8466415191069245,0.25943936919793487,-0.784360462334007,-0.9366814005188644,0.36947032203897834,-0.2809584327042103,-0.055821532383561134,-0.46485465951263905,-0.8113300008699298,0.9960790309123695,0.7158171208575368,-0.17035331390798092,0.28425182588398457,0.5548690920695662,0.5867281965911388,0.927615727763623,-0.261037303134799,0.9065102580934763,0.04375665495172143,0.5878168912604451,-0.272220179438591,0.3951960555277765,0.7028271369636059,-0.20154500007629395,0.21533185662701726,0.454775613732636,-0.3456279179081321,-0.4967285939492285,0.5201485143043101,-0.24944281671196222,-0.09646340738981962,0.2044731630012393,-0.5459478138945997,0.17052443930879235,-0.8059294740669429,-0.1397705669514835,0.2577583249658346,0.30665538692846894,-0.6005458473227918,-0.4180918815545738,0.9727150723338127,-0.625082369428128,-0.5298636467196047,0.49368451349437237,-0.42445753421634436,-0.3678307463414967,0.6110791442915797,-0.857882737647742,0.030972724314779043,0.8621860546991229,0.48766999738290906,0.31763218017295003,0.3930035438388586,-0.8761493293568492,-0.730925458483398,0.013628108892589808,0.7050495473667979,0.573977961204946,-0.19750170828774571,-0.21681746374815702,-0.7973067369312048,0.6803455399349332,-0.31831570202484727,-0.3185560442507267,0.9049846068955958,0.8687934232875705,0.7138204867951572,0.11022932594642043,0.17214196035638452,0.06779619166627526,-0.31173544004559517,0.10149813676252961,0.9557321881875396,0.04817022057250142,-0.5857582301832736,0.1261332780122757,0.7777915513142943,-0.6920647472143173,-0.17576696164906025,-0.14124066568911076,-0.47547824680805206,0.692591356113553,-0.02163634542375803,0.3782647680491209,0.19829666381701827,0.6074454551562667,0.9856554884463549,-0.11545585794374347,-0.12935656076297164,-0.8979432214982808,-0.41236183047294617,0.7146166022866964,-0.12425582436844707,0.08343680622056127,0.37681324733421206,0.618692577816546,0.5000845729373395,-0.9911633231677115,0.7398861674591899,0.14378975797444582,-0.639394264202565,-0.03447264339774847,0.07633053883910179,0.3162860795855522,-0.7698052683845162,-0.8468003766611218,-0.0867466158233583,0.823181782849133,-0.12886629765853286,0.03783198446035385,-0.5543626388534904,-0.767735586501658,0.6726478370837867,0.5632347608916461,-0.9270999566651881,-0.23781997431069613,-0.3890295624732971,0.5320672104135156,0.3230053693987429,-0.5668602488003671,0.5522276633419096,0.07150158053264022,-0.7909773443825543,-0.942232605535537,-0.6611132230609655,0.032190070021897554,-0.10834091855213046,0.5887738741002977,-0.7593876188620925,-0.5429298761300743,-0.493551563937217,-0.4638365963473916,-0.1892703021876514,-0.9545597322285175,0.32467384077608585,-0.13734940672293305,0.59775310754776,0.9754081624560058,0.8989591975696385,0.5469895829446614,0.4688739846460521,0.9610704416409135,-0.25928181735798717,0.24179104762151837,0.18882711604237556,-0.8151218178682029,-0.5703488304279745,-0.8562490912154317,-0.5954843354411423,-0.38388195587322116,0.3098735250532627,0.1089212317019701,0.552562172524631,-0.5133783835917711,0.030335315503180027,0.9074569917283952,-0.5034272409975529,0.8295845570974052,0.035156440921127796,0.11439313227310777,0.36120542883872986,-0.6624044668860734,0.6508405720815063,0.7902745003812015,-0.8695353800430894,0.326155433896929,-0.2318544671870768,0.2691264967434108,0.37374790431931615,-0.06939225690439343,-0.9420139347203076,-0.37599403178319335,-0.9038606430403888,0.4149227892048657,0.5391283454373479,0.12121623940765858,-0.47670476231724024,-0.12193221971392632,0.06439092429354787,-0.9072423838078976,-0.07230819761753082,0.11223387205973268,0.4892801260575652,0.3217115090228617,-0.47866474045440555,0.2988408417440951,-0.4417049614712596,-0.3237569578923285,-0.5806542881764472,-0.10086912754923105,0.7799081676639616,0.5588867329061031,-0.3232980235479772,0.3707173285074532,-0.11698747519403696,0.10662685800343752,0.4841266954317689,-0.11143494304269552,-0.43996271025389433,-0.5445761210285127,0.48559603933244944,0.9630153547041118,0.8874533139169216,0.7397956876084208,0.15695492224767804,-0.9138492681086063,-0.9000817849300802,0.7563430755399168,-0.8787827058695257,-0.01851421594619751,0.9960314454510808,0.46311631659045815,-0.08781626634299755,-0.32890294026583433,-0.8303014691919088,0.22306750528514385,-0.673185046762228,0.9266572697088122,-0.6684959982521832,-0.04458359722048044,0.15564284240826964,0.24598520528525114,-0.8793634208850563,-0.0011031082831323147,-0.13691031700000167,0.6870504897087812,0.8929882161319256,-0.3485814551822841,-0.4949461934156716,0.7262947256676853,0.2807522062212229,0.500497757922858,0.4242651085369289,-0.5931226368993521,-0.9493743982166052,-0.08522925339639187,-0.9332426767796278,0.7205425179563463,0.3507217229343951,0.002780867274850607,0.12178127560764551,-0.7539310497231781,-0.5669236946851015,-0.7822935124859214,-0.5113742635585368,-0.23858570493757725,0.615622628480196,-0.024688872043043375,-0.7964916336350143,-0.5716674071736634,0.3170602321624756,-0.9755092621780932,-0.7183177415281534,0.6702161659486592,-0.3916104082018137,-0.7667158539406955,0.2939522503875196,0.2268266249448061,0.17288890853524208,0.6099653132259846,-0.5803739484399557,-0.5765691506676376,-0.31121460627764463,-0.689319169614464,0.12680208962410688,0.43158506602048874,0.048176223412156105,-0.8288332400843501,-0.01267465204000473,-0.9514450086280704,-0.817320694681257,-0.7655534637160599,0.930594437289983,0.8510486357845366,-0.8918195222504437,-0.7164202560670674,-0.34497914370149374,0.5805995538830757,-0.7659814232029021,-0.6496576839126647,0.9062160039320588,-0.05277206562459469,0.3107474287971854,0.8326316522434354,0.9750174013897777,0.6275224140845239,-0.5556423761881888,0.40647162962704897,0.272263468708843,0.7558581936173141,-0.39527264330536127,-0.7013467233628035,-0.2120012235827744,-0.0993662690743804,0.30681825894862413,-0.5382460434921086,0.8100548586808145,-0.43526276061311364,0.38942954828962684,0.36493740137666464,-0.7236983180046082,0.46064331848174334,0.9618732980452478,0.3983842069283128,0.8746563806198537,-0.14722859300673008,0.701002353336662,-0.6548151518218219,0.7989761871285737,-0.18712739599868655,-0.41836078418418765,0.8402480520308018,-0.42331903567537665,0.026167061179876328,0.2357072434388101,0.6057028276845813,0.7070253994315863,-0.8688350832089782,-0.19177712593227625,0.5941143240779638,-0.3363528596237302,-0.487710858695209,-0.9548850446008146,-0.1464429534971714,0.060122779570519924,-0.6267413729801774,0.7845800663344562,-0.15481837699189782,0.5384754994884133,-0.7218059292063117,-0.6890289094299078,-0.39409450720995665,0.11805069353431463,0.8341269949451089,-0.39537046011537313,0.584728597663343,-0.4595727641135454,-0.2442565276287496,0.9790355931036174,0.5477203237824142,-0.7715150457806885,-0.7150714271701872,0.6046224604360759,0.9825151893310249,0.7371850544586778,0.1555012296885252,-0.09701840486377478,-0.4056535684503615,-0.3978391895070672,-0.4924963819794357,0.39414804615080357,-0.7998322560451925,-0.23154931515455246,-0.8285294212400913,-0.49059044662863016,-0.3989015254192054,-0.8583508688025177,-0.9726922810077667,-0.569595146458596,0.954653101041913,-0.5509174922481179,0.581197801977396,-0.5552407973445952,0.2462804587557912,0.16517155710607767,-0.18390238424763083,0.03611142188310623,-0.9660572316497564,0.4195126825943589,-0.34672583220526576,-0.4973926832899451,-0.9893229631707072,0.901387816760689,0.5687871184200048,0.7827845863066614,-0.6513468730263412,0.3460913700982928,-0.1567263496108353,0.36873257206752896,0.6884730374440551,-0.3173883566632867,-0.4493100303225219,-0.5186730735003948,0.14815310761332512,-0.8334844689816236,-0.33103371737524867,-0.01773581886664033,0.2621852606534958,0.9363576238974929,0.025739199947565794,-0.8142955498769879,-0.8216623743064702,0.8500526188872755,0.7315883375704288,-0.003395772073417902,-0.049936460331082344,0.17580223083496094,0.31268908735364676,0.6663909833878279,0.32249247282743454,-0.8211630843579769,-0.286927976179868,0.5868719108402729,-0.11197556974366307,-0.2816387708298862,-0.4168626945465803,-0.3694385043345392,0.752848123665899,-0.9583939090371132,-0.5229787416756153,-0.001375929918140173,0.6770509853959084,0.6354424613527954,0.08712043706327677,0.5215623178519309,-0.22155977506190538,-0.5314385937526822,0.6738597867079079,0.5625033266842365,0.7534381137229502,0.5137063786387444,0.45626712311059237,0.6903618355281651,-0.6373136900365353,-0.16949680726975203,-0.5219064899720252,0.10938702523708344,-0.1945657217875123,0.0724137183278799,0.29912749771028757,0.5076724248938262,-0.5129890060052276,-0.7032595723867416,-0.3994514336809516,0.2930758181028068,0.6711003249511123,-0.9476798926480114,0.6893116147257388,-0.7446338343434036,-0.5751984226517379,-0.07426935946568847,0.7654658579267561,-0.508471664506942,0.5586977996863425,0.7048693224787712,0.14913549600169063,-0.8842890453524888,-0.49098741356283426,-0.12817032169550657,0.15795025834813714,-0.45792845357209444,-0.9228649772703648,0.08073946041986346,0.3469097753986716,-0.3182054655626416,0.19659701874479651,-0.3160418844781816,0.5212658648379147,-0.6500239884480834,-0.07701076101511717,-0.9446963625960052,0.5813016835600138,-0.8941811383701861,-0.802481662016362,0.46032003685832024,0.6224847584962845,-0.37818378675729036,-0.9491721540689468,0.7518294840119779,-0.6246766806580126,-0.24153992114588618,-0.15308763552457094,0.771909648552537,0.3893890338949859,0.02058437466621399,0.8962353421375155,0.41411249665543437,-0.20794083550572395,-0.5808214494027197,-0.7866533128544688,-0.7696766760200262,0.2749651581980288,0.7119418075308204,-0.02826650021597743,-0.6473608943633735,0.2743824333883822,0.27394017297774553,-0.3177280235104263,-0.46519778203219175,0.5665754964575171,-0.5889614317566156,0.4440117715857923,-0.5217733229510486,-0.4074408132582903,0.030172226950526237,0.7241230588406324,-0.32555478904396296,-0.9741161027923226,-0.19687713589519262,0.3613561294041574,0.9841672708280385,0.9779229150153697,-0.5012927739880979,0.24623993132263422,0.08277541259303689,0.8319327044300735,0.8349826773628592,0.5157462591305375,0.8066344452090561,-0.08779189549386501,-0.4188308175653219,0.5098160631023347,0.6748680737800896,-0.42738998401910067,-0.06494587939232588,-0.7672077184543014,-0.43311911216005683,0.8450287343002856,0.19435589760541916,0.9013141831383109,-0.6097521306946874,0.18790396954864264,0.22380687668919563,0.7773517202585936,-0.1647032224573195,0.27537645818665624,0.9373719352297485,0.1951067140325904,-0.5431241458281875,0.5593017376959324,0.5569079276174307,0.7677145772613585,-0.7211102694272995,0.6074726432561874,-0.21359302988275886,0.069717051461339,-0.6122568985447288,0.08042716234922409,0.7800761591643095,-0.6554985553957522,-0.03709254739806056,-0.38274999940767884,0.2094288864172995,0.1408235365524888,-0.043525613378733397,-0.823392148129642,-0.8056629006750882,0.32822664082050323,0.7232778053730726,-0.8553033033385873,-0.4767346829175949,0.8574524219147861,-0.6374725666828454,0.9786884854547679,-0.4673797581344843,-0.8520817761309445,-0.2581762680783868,-0.9196370458230376,0.8847161736339331,0.46471940353512764,-0.23967890767380595,-0.2951429826207459,0.4666080209426582,0.27700087102130055,-0.42273097299039364,0.27335524605587125,0.09551903838291764,0.3205660143867135,-0.11584854312241077,-0.7892607161775231,-0.9433254976756871,0.46565840812399983,-0.29157085390761495,0.8180980342440307,-0.6284969230182469,0.3411612515337765,0.8394926306791604,0.761911807116121,0.5149769447743893,0.5440954314544797,-0.27353863790631294,0.8219201136380434,-0.9577256953343749,-0.6062615108676255,0.5992286400869489,-0.33377634081989527,0.19397696992382407,-0.3861142359673977,0.934348083101213,-0.06018562940880656,-0.7673441744409502,0.16427746741101146,0.6988642392680049,-0.051896095275878906,0.348977233748883,0.9154848284088075,-0.5021162582561374,-0.32449199445545673,0.4169195140711963,-0.8094053128734231,0.5445607383735478,0.9592055431567132,0.6547681177034974,-0.3602839903905988,-0.409376323223114,0.14159487141296268,-0.1949912291020155,-0.12723534321412444,0.3498197663575411,0.40139202354475856,0.3684504716657102,0.7024056022055447,-0.788326311390847,0.020600578282028437,-0.17152772098779678,0.03881757939234376,-0.5818524528294802,0.09810866508632898,-0.33543893275782466,0.2572128321044147,0.30523926485329866,-0.9947940767742693,0.7624947540462017,-0.3630449818447232,-0.3760903598740697,0.49415973480790854,-0.0950205810368061,-0.2807756015099585,0.5178804541938007,-0.9446111526340246,0.3659445634111762,-0.2583431228995323,-0.3415484931319952,0.7589923278428614,0.43439330579712987,0.08445963356643915,0.24901835061609745,-0.88916259072721,0.3366449656896293,-0.22370468359440565,-0.25654466543346643,-0.24748864443972707,0.163493684027344,-0.3846545252017677,-0.32534498488530517,-0.5113090197555721,0.21608285000547767,0.6981706698425114,-0.37327487440779805,-0.6243553189560771,0.24635584373027086,-0.40667321160435677,-0.9413839047774673,0.549617379438132,0.5184084363281727,0.7091922746039927,0.22354314848780632,0.7695212597027421,0.17527450062334538,-0.9622118715196848,-0.19592810422182083,0.750523672439158,-0.6770613556727767,0.21773720625787973,-0.031801007222384214,0.6142740114592016,0.6270607365295291,-0.8638740014284849,0.9903743239119649,0.33355853660032153,0.873181271366775,0.7800969751551747,0.5937496507540345,-0.7266657664440572,0.4058478628285229,0.13892932748422027,0.06118937861174345,0.3305180766619742,0.09652397688478231,-0.6147049181163311,0.18123543029651046,0.05026877112686634,-0.1486621447838843,0.8686004583723843,-0.8699192483909428,0.4610040308907628,0.0046458980068564415,0.7720532547682524,-0.7914829361252487,0.45049235690385103,0.3991812728345394,-0.3352197892963886,-0.06806128239259124,-0.6148268664255738,0.950968848541379,0.6392024680972099,-0.5602499358355999,-0.8800479033961892,0.31871090503409505,-0.6536606983281672,0.08948785765096545,-0.3685769448056817,0.14607965061441064,-0.6250053127296269,0.9567944770678878,-0.13884600065648556,-0.2653885739855468,0.2894826903939247,0.30793095007538795,0.33753878762945533,-0.040402757469564676,-0.217141583096236,-0.8282513283193111,0.48685339465737343,-0.7739993711002171,0.8667771690525115,0.4627853846177459,0.8454825556837022,-0.8766414052806795,-0.9585801847279072,-0.14616583241149783,0.3694233186542988,0.26349843200296164,0.7078065443783998,0.7073610434308648,0.3925381824374199,-0.4396966961212456,-0.4185573970898986,0.9400900895707309,-0.11200758349150419,0.37429935531690717,0.6453754985705018,-0.6504570958204567,0.6060000145807862,-0.9846447119489312,0.08891477016732097,-0.602005161345005,0.5976675217971206,0.5737928096204996,0.9200841938145459,-0.45771485194563866,-0.7774778348393738,-0.9022250594571233,0.24212030600756407,0.021364483516663313,-0.5216520568355918,0.6305830585770309,0.12023730156943202,0.9656644747592509,-0.8962848386727273,-0.49577531311661005,0.06156502105295658,0.19201436219736934,-0.08776687551289797,0.8761160261929035,0.3621022175066173,-0.6104529313743114,-0.5854301676154137,-0.4253497999161482,0.4345244485884905,0.03476346144452691,-0.8797801462933421,0.9842841825447977,0.293827585875988,-0.0663372608833015,-0.5762386946007609,0.8044987302273512,0.08830959815531969,-0.05398971401154995,0.6828621421009302,0.7301101773045957,-0.6222222000360489,-0.8954093223437667,0.6773742064833641,-0.35732655972242355,0.2628130381926894,0.34487841418012977,0.7378150201402605,0.5587194878607988,0.6424983041360974,0.2756346622481942,0.7238680417649448,-0.6054135481826961,-0.8212779839523137,0.8802007827907801,0.5655225375667214,0.4997646906413138,-0.19052401138469577,0.4992253496311605,0.6424720636568964,0.5609575649723411,0.849210518412292,0.43262311117723584,-0.6816500606946647,-0.06936363130807877,0.9369645961560309,-0.23895081970840693,-0.4096937892027199,0.5420506037771702,-0.6506288195960224,0.21690107230097055,-0.7013284428976476,0.48646204825490713,-0.7313872948288918,0.46043231151998043,0.9385529607534409,-0.39583546575158834,0.43755719996988773,0.3849032400175929,0.8451993390917778,0.7263114885427058,-0.8685950832441449,0.040093936026096344,-0.08771587256342173,-0.5470713772810996,-0.2547130645252764,-0.7971399114467204,0.026595160830765963,-0.3728589513339102,0.44181685289368033,-0.7352393963374197,0.6220040102489293,0.41273584496229887,0.3470536074601114,-0.4770658318884671,-0.23195936623960733,0.4830120028927922,-0.10433875909075141,0.9314587130211294,0.5389529536478221,-0.5030848202295601,-0.28990613808855414,-0.3500720513984561,0.7236237828619778,-0.5467184530571103,-0.3380830818787217,0.5035206852480769,-0.4188258498907089,0.8001683889888227,-0.837556469719857,0.4232268398627639,0.7893911842256784,0.5114891747944057,-0.2845312519930303,-0.877110374160111,0.1776088448241353,0.6626404412090778,-0.1325479820370674,-0.28464572317898273,0.9645434198901057,-0.27259214501827955,-0.14915673760697246,-0.31083374191075563,0.569150504656136,0.02855931594967842,-0.6943569756112993,-0.03931753756478429,-0.3148172991350293,-0.8270746855996549,-0.9316575820557773,-0.6703448095358908,0.5578095256350935,0.6939254961907864,0.13797428086400032,0.443206284660846,0.3363918885588646,-0.03051140671595931,-0.4948223400861025,-0.693368926178664,-0.041770712938159704,0.7502109333872795,-0.02132857497781515,0.5940721724182367,-0.03988110227510333,-0.034919499419629574,-0.6852612216025591,-0.5222225789912045,-0.12212783191353083,-0.6523547633551061,-0.6150193731300533,-0.2752003208734095,0.8444748385809362,0.6988575896248221,0.9630726096220315,-0.016266934107989073,0.3938594488427043,-0.10939287301152945,-0.9834666363894939,0.5477942191064358,-0.4894500416703522,-0.6448169960640371,-0.9371145125478506,0.24539329437538981,-0.06311604427173734,0.6694354377686977,0.6690321913920343,0.47088764421641827,-0.31761658983305097,-0.9060474606230855,-0.1831610263325274,-0.1780312885530293,-0.9864583942107856,-0.6166776441968977,-0.6781743071042001,0.2337110871449113,-0.812332013156265,0.5926247755996883,-0.6259914534166455,-0.7861595773138106,-0.6288331048563123,-0.8310215678066015,0.16772261820733547,-0.7323367833159864,0.3001024192199111,-0.49971963511779904,0.010328217875212431,0.3966071135364473,0.10981967207044363,0.3080869885161519,-0.3570310021750629,-0.715406680945307,-0.09670609841123223,-0.12514626514166594,-0.3558572349138558,-0.7513265837915242,-0.3556314157322049,-0.06299612997099757,-0.8187470617704093,-0.6785294287838042,-0.0353135853074491,0.37527751130983233,-0.03887460054829717,0.08435675129294395,-0.4222337296232581,-0.6776958242990077,0.6616985104046762,0.9562735171057284,-0.004186548292636871,-0.8256729459390044,-0.231953211594373,0.6672365297563374,0.8421603054739535,0.7582476851530373,-0.8875558846630156,-0.9439339037053287,0.6920269979164004,0.7415442471392453,0.11803011922165751,-0.1911487621255219,-0.07287682639434934,0.21093083173036575,0.12981060473248363,0.022790282033383846,-0.241362314671278,0.7032671356573701,-0.29495402704924345,-0.40828006621450186,-0.3327322192490101,-0.11468695057556033,-0.567568501457572,-0.02810552204027772,0.7443334315903485,0.20173940481618047,0.22207402903586626,0.05932962708175182,-0.23902524448931217,0.10183274606242776,-0.3011464378796518,0.5672693476080894,0.29400560492649674,0.23984911339357495,0.838269792497158,-0.49361799843609333,-0.07304935343563557,-0.17713255900889635,-0.05442365678027272,-0.9628175222314894,-0.7965001207776368,-0.7264355658553541,-0.49657939095050097,0.5074821091257036,-0.8309026784263551,0.5523775406181812,-0.9861542996950448,-0.7013819180428982,-0.32857555197551847,-0.33666628738865256,-0.7239047209732234,0.668154058046639,0.41193257039412856,0.3070624186657369,-0.5253817979246378,-0.633978380355984,-0.7684439700096846,0.3940171957947314,-0.5598313356749713,0.9704650184139609,-0.6305117420852184,-0.015412217937409878,0.5627684341743588,0.08680571103468537,0.43700812850147486,0.4233042965643108,0.6904287249781191,-0.9753506714478135,-0.08083790354430676,-0.19322429271414876,-0.3480215249583125,-0.44751517893746495,0.09327404294162989,0.24077817145735025,-0.31927833799272776,-0.935055096168071,-0.4153456655330956,-0.07253655465319753,-0.8782884078100324,0.03572251880541444,-0.14350743452087045,-0.8187742978334427,-0.5516330762766302,0.7988896323367953,0.5210084021091461,-0.07536845840513706,0.743386700283736,-0.3825949155725539,0.613400049507618,0.7855795798823237,-0.04155823215842247,0.6320528294891119,-0.5271475738845766,-0.09355085529386997,-0.3481035199947655,-0.025716483127325773,-0.6530919414944947,-0.9357065735384822,-0.48886087257415056,-0.8090000888332725,0.21500081941485405,0.4840647359378636,-0.8319233804941177,0.9201249382458627,0.7903519612737,0.8722630124539137,-0.9001781684346497,-0.10108616156503558,0.4666010979562998,0.6369528826326132,-0.21793573955073953,0.3973048636689782,0.44078529020771384,-0.5520675415173173,-0.5569378780201077,0.18049980839714408,0.6745446962304413,-0.7373213265091181,-0.24802343687042594,0.43257824517786503,0.6938495896756649,-0.348914525937289,-0.5740627055056393,0.12213234696537256,0.182934426702559,0.6219548033550382,-0.518165776040405,-0.40338863246142864,-0.9702587891370058,0.1922480883076787,0.8641141322441399,0.14422816457226872,0.2922721835784614,0.6557308058254421,0.3833724451251328,-0.46465626219287515,0.8362133125774562,0.7332161040976644,0.7293712384998798,-0.48354601906612515,0.1835337420925498,0.15707027027383447,0.302031425293535,-0.25860341684892774,-0.33186784526333213,-0.5109286759980023,-0.3672203286550939,0.5815212549641728,-0.7651751847006381,-0.12060708878561854,0.014866765588521957,0.8050903049297631,0.352597139775753,0.9364513354375958,-0.15093966014683247,0.962895855307579,0.7328170095570385,0.8452769303694367,-0.7634907108731568,-0.009155411273241043,0.34725397545844316,0.8756387401372194,0.488664697855711,-0.18601101962849498,0.7366104288958013,0.13988778507336974,0.06789413746446371,0.10092102689668536,-0.9743454083800316,-0.9393891924992204,0.13177923392504454,0.3605671124532819,-0.6105315494351089,0.5166936521418393,0.02724516624584794,0.783187594730407,-0.6555199418216944,-0.3552421312779188,-0.39417491387575865,-0.5322583117522299,0.25158232590183616,0.757556987926364,0.3239730764180422,0.9806527136825025,0.8007631963118911,0.34386681066825986,-0.8284532665275037,-0.5147482710890472,-0.04101894469931722,0.02401197049766779,0.07399711851030588,0.7532286331988871,-0.36990257864817977,0.6121189473196864,-0.6789073050022125,0.31394467828795314,-0.9231575173325837,-0.4960420005954802,0.21656803507357836,0.766782074701041,0.38424589624628425,0.6379152964800596,0.46820796746760607,-0.7740834029391408,0.8647096897475421,0.9214516845531762,0.029652169905602932,0.05861192895099521,-0.6789155108854175,-0.2838992686010897,-0.2954717297106981,0.2920892806723714,0.4536214149557054,0.5729798697866499,0.5624156035482883,0.7878909413702786,0.5375214661471546,-0.36473104218021035,0.5160468206740916,0.2964646895416081,0.6027209176681936,0.9109172411262989,0.9066541194915771,0.41503390157595277,0.4614377939142287,0.9060180531814694,-0.11030103778466582,-0.9066868862137198,0.6522908913902938,0.29034435702487826,0.6792583139613271,0.24335556337609887,0.17714499728754163,-0.2596463575027883,0.69865746749565,-0.7254367950372398,0.8693051659502089,0.6337162316776812,0.5256456090137362,-0.1956921904347837,0.6200610268861055,-0.5992052829824388,-0.6104088169522583,0.4397507989779115,0.9838864100165665,0.8917870810255408,-0.4595533739775419,-0.028564987238496542,0.4551338357850909,-0.6399108222685754,-0.8357743164524436,0.4195347586646676,0.32699712458997965,0.531516115181148,-0.3822456528432667,-0.628066009376198,-0.5869568693451583,0.15745346061885357,0.34310219483450055,0.1051843143068254,0.7256123418919742,0.6078840126283467,0.38261231733486056,-0.646225840318948,0.6588344248011708,-0.7170353434048593,-0.39694619458168745,0.2739700027741492,0.9089582720771432,-0.1921858424320817,-0.9912736839614809,0.8248290899209678,0.27328973822295666,0.7412701528519392,-0.06201041489839554,-0.7056200755760074,-0.35000531608238816,0.922328120097518,-0.02737996121868491,-0.7434177729301155,-0.3381188050843775,0.290037730243057,-0.5256419130600989,-0.43098765332251787,0.7046890766359866,-0.14628905523568392,0.15916509507223964,-0.15513661690056324,-0.47822057642042637,-0.43220122484490275,-0.5415400215424597,0.9789594961330295,0.8233119607903063,-0.7246785569004714,0.9217455466277897,-0.6013548597693443,-0.3863901114091277,-0.34606050373986363,0.7243029722012579,-0.3205903540365398,-0.20414870837703347,0.7083508502691984,0.7779055605642498,-0.3894092966802418,0.6415321696549654,0.7805823758244514,0.09624364972114563,-0.6837970349006355,-0.1626178314909339,0.843742738943547,-0.2074858034029603,0.5726785040460527,0.6332827704027295,0.8041886962018907,0.061339871026575565,0.018966758158057928,0.7917689033783972,-0.2655840930528939,-0.15447137039154768,0.17285374971106648,0.9989501293748617,-0.5193825364112854,0.7134329965338111,-0.1777147580869496,0.7058234349824488,-0.48925173562020063,-0.8491916176863015,0.8930116901174188,-0.6697692493908107,0.21168701956048608,-0.6569476458244026,-0.4200258874334395,0.30785472551360726,0.2920381370931864,-0.008911370299756527,-0.9829472675919533,-0.14836612762883306,0.5060203676111996,-0.5893662963062525,0.9021605928428471,-0.8678737338632345,0.17045612493529916,0.845218631438911,-0.7254785527475178,0.6680656182579696,0.3132731160148978,0.4140059449709952,0.0034262794069945812,0.42756044678390026,-0.8370449733920395,0.829847767483443,-0.9178627319633961,-0.20909659331664443,0.4677949412725866,-0.1270550680346787,0.7664202428422868,-0.6223118784837425,-0.49514027684926987,0.28061886224895716,-0.22118200501427054,0.09180995495989919,-0.3542143050581217,0.8049203688278794,0.9118375396355987,0.598462434951216,0.7996047022752464,0.4378833482041955,0.8458586586639285,0.8891972010023892,0.8397067110054195,-0.08982332237064838,0.0890338085591793,0.7809183923527598,-0.6000510053709149,-0.9239572626538575,0.8710547052323818,0.3212949289008975,-0.14098639274016023,-0.5942495223134756,0.9353891722857952,0.7243415443226695,-0.382575954310596,-0.521811795886606,-0.13305546110495925,-0.15426625404506922,-0.24157681921496987,-0.9834927981719375,-0.572166255209595,-0.455800021532923,-0.12684111995622516,0.8160242275334895,-0.9355943026021123,-0.23957572458311915,-0.9085227134637535,0.4363267491571605,0.3783903466537595,0.49553384771570563,0.7537288763560355,-0.559691202826798,0.892221171874553,-0.9709426346234977,0.7109382743947208,0.5188364912755787,-0.5562323150224984,0.20963524794206023,-0.29278907366096973,-0.8053183672018349,-0.7287763855420053,-0.09733657212927938,0.8539783437736332,-0.2521167639642954,-0.5381840015761554,-0.7306661163456738,0.4011114817112684,0.893028870690614,-0.9184213886037469,-0.002712931949645281,-0.01692213211208582,0.6594090978614986,0.8520479933358729,-0.4264799212105572,0.13333537708967924,-0.8333454728126526,0.5630295551382005,0.49884376348927617,0.2772277547046542,0.9525019153952599,0.5289862840436399,0.14336452446877956,0.6952421935275197,0.7541540092788637,0.5608460800722241,-0.6197475614026189,-0.5580872166901827,-0.6135343522764742,-0.6312369047664106,0.04256853507831693,0.5569790410809219,-0.5139071424491704,0.10038362350314856,-0.7189911301247776,0.7111652991734445,0.283117925748229,-0.006984035484492779,-0.39811685448512435,0.694965522736311,-0.13959281845018268,-0.2911537657491863,-0.3298809453845024,-0.3600714788772166,0.9503101594746113,-0.7518965671770275,0.20583494706079364,0.7715879371389747,0.6627835612744093,0.24882666394114494,-0.541820390149951,0.6554170157760382,-0.028934127651154995,0.15205742791295052,0.14816298382356763,0.43310866970568895,0.7786931623704731,0.14790439186617732,0.6186769045889378,-0.6981077487580478,-0.5209879716858268,0.20713637443259358,0.5821535964496434,-0.6992864618077874,0.5277495654299855,0.2779571679420769,0.13526818761602044,-0.604587035253644,0.551419644150883,-0.705725783482194,0.8464744202792645,0.9646637937985361,-0.3368203383870423,-0.013598925899714231,-0.18229672592133284,0.13593929447233677,0.8961239093914628,0.17984538432210684,-0.37088710768148303,-0.635174997150898,0.553859231993556,0.44698609597980976,0.3420544061809778,0.9700275952927768,-0.9892226345837116,0.694991388823837,-0.9836469823494554,-0.4474123571999371,0.4011664083227515,0.3948515164665878,0.15416380343958735,-0.49634784599766135,-0.34515380999073386,0.9613280580379069,0.3521704482845962,-0.15726188197731972,-0.4351909486576915,0.7244761567562819,-0.24342495994642377,-0.5988487806171179,-0.04242495773360133,0.5459521734155715,0.7561341882683337,-0.2982970541343093,0.5078054927289486,-0.03644881630316377,0.1646889722906053,-0.6042978200130165,0.4515306302346289,0.3047267710790038,0.4219802715815604,0.810250710695982,-0.1563573614694178,0.6056968220509589,0.03586748614907265,0.9626397378742695,0.3901943927630782,0.3073981860652566,-0.04618933703750372,-0.7647047005593777,0.6219297503121197,0.48397700814530253,-0.9184344010427594,-0.21581133781000972,-0.9966824403963983,0.18961125100031495,-0.3788901097141206,0.9902522973716259,-0.16693608043715358,-0.6197102833539248,-0.5279805404134095,-0.852158937137574,-0.19004013808444142,-0.6927920361049473,0.3991672727279365,-0.9643478160724044,-0.4165534288622439,0.4753953446634114,0.5261436118744314,-0.4385998207144439,0.7063581771217287,0.15811863634735346,-0.23472722340375185,0.8392037688754499,0.3131521316245198,-0.391317852307111,0.6418806631118059,-0.03699799720197916,0.26337927812710404,0.14680513087660074,-0.6339041632600129,0.6080522742122412,-0.36009414214640856,0.048610436264425516,0.5621502865105867,-0.8158467165194452,0.29121522698551416,-0.9209016030654311,-0.6207813592627645,-0.13395707122981548,-0.286264531314373,-0.4807844050228596,-0.8350390843115747,0.460991982370615,0.6376207298599184,-0.42874279897660017,-0.40708390017971396,0.39648038148880005,0.3639221047051251,-0.6219493979588151,-0.10999630391597748,-0.3298820615746081,0.09080254565924406,-0.4487244919873774,-0.37946048472076654,0.3754556141793728,-0.1529573262669146,0.16553160594776273,-0.2625123942270875,0.0395124601200223,0.026656988076865673,0.3462776457890868,-0.8022043439559639,0.28080946346744895,0.7203620527870953,-0.6726274392567575,-0.049343008548021317,-0.4181714719161391,0.967391247395426,0.968193206936121,0.2963984776288271,0.7700888481922448,0.40189821319654584,0.3836788507178426,-0.03380725812166929,0.6744788936339319,-0.8897422454319894,-0.4460845305584371,-0.1783899525180459,-0.9143344764597714,0.7356058941222727,-0.9749863925389946,-0.22028112318366766,-0.41794046573340893,0.7055585216730833,0.22607459546998143,0.4827602840960026,-0.1813349360600114,0.35531669203191996,-0.849534553475678,-0.8944118600338697,-0.8345635868608952,-0.05490672681480646,0.853544064797461,-0.665151251014322,0.014450309798121452,0.559462545439601,-0.030161157250404358,-0.11258541932329535,-0.08152370294556022,0.10288830567151308,-0.9286883505992591,-0.8448162968270481,0.9130364577285945,0.5241322009824216,0.8626422141678631,-0.9472026322036982,-0.6904928754083812,0.9254588442854583,-0.8723074994049966,-0.728149582631886,-0.3437929339706898,-0.9653029688633978,0.6215175832621753,0.07269059866666794,-0.5041352827101946,-0.6685624616220593,0.3564007105305791,0.8683272115886211,-0.24410833232104778,-0.7102866722270846,0.6663106074556708,-0.38829398760572076,-0.4890465475618839,0.7409493760205805,0.9446467403322458,-0.7634631716646254,0.43377706687897444,-0.4817949840798974,0.5478038699366152,0.6910869902931154,0.21340199979022145,0.6578602041117847,0.37669332744553685,-0.2639917000196874,0.8794161234982312,0.3792077377438545,0.46487779449671507,0.6057861614972353,-0.02864748053252697,-0.1385995694436133,0.5962097174488008,-0.7427920997142792,-0.5012631202116609,-0.8414035108871758,0.30753538524731994,-0.8559619085863233,-0.898625336587429,0.24687645165249705,0.48020715499296784,0.42940488550812006,0.24837362673133612,-0.6904699769802392,-0.7214662251062691,0.1890421025454998,0.4923570272512734,-0.2696948410011828,-0.9525733226910233,-0.2698905523866415,-0.49129894049838185,-0.9937519272789359,0.03589703142642975,-0.4830518690869212,-0.6834263186901808,-0.19063218077644706,0.24487716099247336,0.5144758713431656,0.956520140171051,0.003828644286841154,-0.7119522383436561,-0.26511413510888815,0.9016594244167209,0.8462383248843253,-0.10372560890391469,-0.693091590423137,-0.7694165236316621,0.10504822293296456,0.5725125577300787,0.9947178373113275,0.8825530442409217,0.11928318254649639,-0.8630466163158417,-0.6794721214100718,0.06767047988250852,0.35309720784425735,-0.004917751532047987,0.5813671504147351,0.35225989390164614,-0.7163751791231334,-0.43214455200359225,0.4096778864040971,0.1876816526055336,-0.7217836179770529,0.1615822515450418,-0.060427141841501,-0.7104761209338903,-0.8295003999955952,-0.6975579094141722,0.21533780312165618,-0.9410255905240774,-0.7221315172500908,-0.9024626067839563,0.06406527338549495,0.1118979318998754,-0.6860990645363927,0.8794128061272204,-0.854481820948422,0.010439247358590364,0.45916560059413314,0.42335317842662334,0.9539096956141293,0.2946724039502442,0.5472069876268506,0.5892925043590367,0.09293626761063933,0.8117400077171624,-0.03270028065890074,-0.6525436099618673,-0.7911518318578601,-0.8182670441456139,-0.4382365755736828,0.06317245867103338,0.34838227136060596,-0.27799251349642873,0.5567818726412952,-0.17756479047238827,-0.19661416858434677,-0.9389294516295195,-0.6317138252779841,0.3335093390196562,0.21485215239226818,0.653460739646107,0.3656493225134909,-0.8561501917429268,-0.5055199894122779,0.9498662776313722,-0.8990111593157053,-0.8075068145990372,0.706813202239573,0.6907017077319324,0.12088180333375931,-0.672955087851733,0.8305139341391623,0.8880731142126024,-0.047834410797804594,0.4637137050740421,-0.9640435534529388,0.5344921387732029,0.47926197899505496,0.12417978467419744,-0.5941404500044882,0.15751650417223573,0.7470333045348525,0.3989341794513166,-0.9282306637614965,-0.9217917355708778,-0.4637594004161656,-0.9534380603581667,0.1858225530013442,-0.7930403770878911,-0.643223668448627,-0.48701200261712074,0.9774236152879894,0.4474335266277194,0.21990439714863896,-0.4473727783188224,-0.045881401281803846,-0.5128639279864728,0.7005481589585543,-0.23035198682919145,0.2663923716172576,0.10490283509716392,0.3072928097099066,0.44618551433086395,-0.011703553143888712,0.8607413042336702,-0.38469871040433645,-0.4384696944616735,-0.6040947558358312,-0.5758857829496264,-0.8027045549824834,0.7679654820822179,-0.2047370788641274,0.7526255645789206,-0.07874798867851496,-0.16598976217210293,-0.8089304710738361,-0.5056087919510901,0.6597309364005923,-0.5029991986230016,-0.3604057375341654,0.5230897068977356,0.5005315062589943,-0.078797975089401,-0.09909049980342388,-0.3034787317737937,0.4906905279494822,0.8295490108430386,-0.838488235604018,-0.26024840539321303,-0.9999265647493303,0.9551925221458077,0.33535583736374974,0.23459842847660184,-0.33834784012287855,-0.7268437412567437,-0.007496576756238937,0.16833778470754623,-0.715481935068965,-0.6774789863266051,0.04922689078375697,-0.7770861736498773,-0.7215512334369123,0.17503338167443871,0.8431648244149983,0.8443084214814007,0.49319812608882785,-0.34065211983397603,0.4584087119437754,0.2356504793278873,-0.012025270611047745,-0.0012939060106873512,-0.6167429476045072,0.833828333299607,-0.0730709433555603,-0.8494357299059629,0.975921664852649,0.05311436438933015,0.3441706649027765,0.33192311879247427,-0.10052959574386477,0.38149711675941944,0.023680678568780422,-0.580694817006588,0.28077821945771575,0.6924855024553835,-0.5431444556452334,0.18947753123939037,-0.37867206800729036,-0.6370546645484865,-0.6755680446512997,-0.4898369233123958,0.7791174962185323,-0.8750037956051528,-0.2914679259993136,0.5882021989673376,0.7212383886799216,0.7859051628038287,-0.3285901015624404,-0.6696531986817718,0.25236878683790565,0.17053688177838922,-0.22504632221534848,-0.07333891978487372,0.34320882987231016,0.8235230976715684,0.13881208607926965,0.4890970843844116,0.8097450076602399,0.9414576068520546,-0.29160850029438734,-0.9645599303767085,-0.8024532343260944,0.04637355823069811,-0.106421560049057,-0.20619335863739252,0.060225650668144226,0.31217854004353285,0.23922113329172134,0.6416093148291111,0.17855601804330945,0.1500082015991211,-0.8860945482738316,-0.9141013887710869,-0.3126337565481663,-0.8563210987485945,-0.04901724075898528,-0.7672721794806421,0.2757658842019737,-0.8796006883494556,0.7829823247157037,0.2975519592873752,0.44068215833976865,-0.6489606481045485,0.859521480742842,0.01775241643190384,0.4358688471838832,0.09224063297733665,-0.07206777390092611,-0.4680524463765323,-0.805131334811449,0.024389001540839672,0.6206291331909597,0.1301629818044603,-0.7948423442430794,-0.32696384796872735,-0.9764887685887516,-0.7104847733862698,-0.49241307144984603,-0.5658211894333363,-0.10194663098081946,0.037471987307071686,-0.8481758614070714,0.9712014920078218,0.20158372819423676,-0.743519495241344,-0.8406544290482998,-0.194074347615242,-0.03354861540719867,0.9990572687238455,-0.8142022681422532,0.005838528275489807,-0.5802421844564378,0.22372506465762854,-0.6596372211351991,0.9015320162288845,-0.39883365482091904,-0.9509843057021499,-0.7484753485769033,0.6203673169948161,0.1643533855676651,-0.5899743437767029,-0.3314773701131344,-0.4394893473945558,-0.7816752446815372,0.346489614341408,0.7208091150969267,-0.8182858196087182,-0.11792071629315615,-0.09011014690622687,-0.3013428058475256,0.4763270835392177,0.44428696669638157,0.8478036718443036,0.5328065054491162,0.727206461597234,-0.804205471649766,-0.752645188011229,0.633538187481463,0.4859478692524135,-0.9387642978690565,-0.7392852837219834,0.36389354104176164,0.4683574098162353,-0.9894457473419607,0.3234638557769358,-0.8139399960637093,-0.627465593162924,-0.13016993971541524,0.003648695070296526,-0.7281351978890598,-0.8590596225112677,0.03499277587980032,-0.22843682439997792,-0.024534601718187332,0.4807725069113076,-0.29526458494365215,0.46694420371204615,0.3327029999345541,0.11351581895723939,0.13728718739002943,-0.5443721748888493,-0.7320019132457674,0.6993015729822218,-0.2913389462046325,0.9083815421909094,-0.11965831322595477,-0.5612936997786164,-0.6495517352595925,0.819735016208142,0.23719441425055265,0.6720738881267607,-0.6720079160295427,-0.46955257188528776,0.13583589857444167,-0.43702299473807216,0.6654715221375227,0.02006586641073227,-0.1033293604850769,-0.0302911507897079,-0.7141048917546868,-0.7947592511773109,-0.9658741829916835,-0.6929993377998471,-0.6746457945555449,0.3654240001924336,0.7934375498443842,-0.8790436037816107,0.6050213798880577,-0.4026137166656554,0.5905513186007738,-0.849875945597887,-0.06829365622252226,-0.18006582977250218,-0.35641803219914436,-0.2776500782929361,0.8713311143219471,0.3793275165371597,-0.6439892519265413,0.35277113365009427,0.8218071511946619,0.7213888601399958,-0.3802883829921484,-0.7201433535665274,-0.10436722915619612,0.19826935324817896,0.5679599130526185,0.07834292203187943,0.42921940982341766,-0.8323653084225953,0.8696659421548247,-0.6109752836637199,-0.355278929695487,0.137524776160717,0.17535858508199453,-0.4698981186375022,-0.13670355454087257,0.7156693204306066,0.8876534500159323,0.07678288407623768,-0.1839962829835713,0.904867762234062,0.8750547803938389,-0.44596817856654525,-0.7204239671118557,0.04271049750968814,0.7902018190361559,0.3192962412722409,0.3873908636160195,-0.8211047830991447,-0.7423793561756611,0.2816149964928627,-0.6323295808397233,0.7227809699252248,-0.1381205813959241,0.8572529163211584,0.3717643180862069,0.713368168566376,-0.03979202592745423,0.5951321637257934,0.5636473651975393,0.8651304333470762,0.0007814369164407253,-0.17898419685661793,0.3681000745855272,0.8193883732892573,0.5918387807905674,-0.29255241667851806,0.245760481338948,-0.5277685564942658,-0.874323767144233,-0.22861295333132148,-0.477635707706213,-0.4970626402646303,0.4841371779330075,-0.5647547775879502,-0.06207137228921056,-0.5228165579028428,0.2105002347379923,-0.9210318028926849,-0.6191648221574724,-0.6290498045273125,-0.6478432430885732,0.8262261780910194,-0.6909543080255389,-0.856876365840435,0.06019088393077254,-0.06218851637095213,0.46164662949740887,0.766600941773504,0.48902881518006325,-0.9924242631532252,0.028128660283982754,-0.44362108828499913,0.8952835826203227,0.4026174647733569,-0.6059612720273435,-0.5540156844072044,-0.14095399295911193,-0.2507621832191944,0.1143912086263299,0.873513379599899,0.7613920206204057,0.48678727727383375,0.36704670917242765,0.08301765331998467,-0.02917196834459901,-0.03534229379147291,-0.37397191440686584,0.02058621821925044,-0.8413987536914647,-0.4929211395792663,0.9094341737218201,0.8482845523394644,0.5381208914332092,-0.8863690765574574,0.25187889905646443,0.6625012471340597,0.8964544148184359,-0.30590411415323615,0.36818626103922725,-0.9649363257922232,0.9785701148211956,-0.9241439583711326,0.6040191138163209,-0.29847438260912895,0.23528460413217545,0.45590408938005567,-0.4321013647131622,0.08150553377345204,0.5066606188192964,0.9600338214077055,0.14625835651531816,0.9375057020224631,0.8735915254801512,-0.7913562934845686,-0.9421547469682992,0.9938640766777098,0.7805045186541975,-0.5281048626638949,0.8394920839928091,0.7990653389133513,0.00446728989481926,0.06627030577510595,-0.26363414572551847,0.45609668269753456,-0.8654051427729428,-0.8351211654953659,-0.24870496755465865,-0.08668160624802113,-0.9361270447261631,0.1433928064070642,-0.7185786943882704,0.18764682998880744,-0.4262265251018107,0.9789367788471282,0.34636101871728897,-0.9850471913814545,0.5881226193159819,-0.8664379427209496,0.41682452661916614,-0.23623126652091742,0.32658719178289175,0.37931637559086084,0.31325400434434414,-0.030311623122543097,0.4158874577842653,-0.5769582488574088,0.5406498797237873,0.01484307087957859,-0.35137000121176243,-0.6720666689798236,-0.5463192681781948,0.2646243292838335,-0.687985316850245,0.6277281707152724,-0.20039675384759903,-0.931636709254235,0.3254195088520646,-0.7225702125579119,0.3634966863319278,-0.1116420142352581,-0.20255971560254693,0.8080320814624429,0.6650401926599443,-0.8950143228285015,0.5842974870465696,-0.48133218474686146,0.08839114056900144,0.5129680479876697,-0.6108071403577924,-0.9005546146072447,0.49578465055674314,0.9582115467637777,0.18897160235792398,-0.5023249294608831,-0.6376072987914085,-0.9914785758592188,0.7404752862639725,-0.4682412277907133,0.623609977774322,-0.33761146245524287,-0.5013990481384099,-0.2768846759572625,0.5670513049699366,-0.6620158641599119,-0.2933072904124856,0.15555340657010674,-0.8251802665181458,0.9767734110355377,0.7097531729377806,-0.9813454090617597,0.7060310337692499,-0.3458557315170765,0.6764954016543925,0.3300565811805427,-0.37321481900289655,0.5072743934579194,0.024430253077298403,-0.8419935605488718,-0.728889508638531,-0.7853846764191985,-0.3075601467862725,-0.813159950543195,-0.2903719572350383,0.7886891630478203,-0.31645819917321205,0.6576675628311932,0.39831774588674307,0.8008995656855404,0.017905356362462044,0.6398647832684219,0.3921883087605238,-0.704139412380755,-0.5440752217546105,0.44598487485200167,0.00410378398373723,-0.2630189526826143,-0.3160050264559686,-0.359813513699919,0.589218370616436,0.36727349180728197,-0.32775326957926154,0.9204030497930944,0.9973525144159794,0.2690547467209399,0.785157825332135,0.6338194184936583,-0.7620887560769916,0.8561047748662531,0.9906260431744158,-0.26209531631320715,0.17404439905658364,0.8572561517357826,-0.010074506979435682,-0.03920483961701393,0.2968312562443316,-0.09692234126850963,0.6587325823493302,-0.8488013823516667,-0.34757261350750923,-0.12767732236534357,-0.08818585937842727,0.8834409038536251,0.93793203542009,-0.18240973446518183,-0.2743460922501981,0.8075018739327788,-0.20063966885209084,0.06468019727617502,-0.07199601456522942,-0.9661437245085835,0.7281172820366919,-0.39260489912703633,0.4292693021707237,-0.5642180540598929,-0.4537745928391814,0.1540879444219172,0.42316000210121274,-0.4871731116436422,0.7004728680476546,0.2594819604419172,-0.47026275377720594,-0.5264667919836938,0.7852992503903806,0.8254389208741486,-0.013070221524685621,-0.5592448492534459,0.20284576155245304,0.954302919562906,-0.8122480208985507,-0.5831627533771098,0.8374417601153255,-0.03490402176976204,-0.336167826782912,-0.13851191801950336,0.14221400488168,0.9370753266848624,-0.8868229384534061,0.258654962759465,-0.056638289242982864,-0.6899713249877095,0.09848710196092725,0.0057770623825490475,0.6447289506904781,0.2923023863695562,0.5806336225941777,-0.8338980912230909,0.5587625955231488,-0.5964182978495955,-0.7812517341226339,0.6277614254504442,-0.502001516520977,0.35975225316360593,0.7268584701232612,0.3330115610733628,-0.29379949253052473,0.975050313398242,0.8554989555850625,0.029133533127605915,0.47010357351973653,-0.7816728823818266,0.12122295564040542,-0.9581057722680271,-0.648585635703057,0.1028699898160994,0.7937084608711302,0.11853478942066431,0.108777379617095,0.4150482048280537,-0.01322930259630084,-0.581035069655627,-0.8337167161516845,0.2915359325706959,0.6905924193561077,0.12856479408219457,0.26104518165811896,-0.06499039195477962,0.22846100106835365,0.6938871387392282,-0.16276977583765984,0.08031979436054826,0.7372982734814286,-0.16435911506414413,0.9535449952818453,-0.30847987486049533,-0.38923313515260816,-0.8819804061204195,0.9642492104321718,-0.5183231923729181,0.12312340689823031,-0.8916918812319636,-0.45243826461955905,-0.25038020918145776,0.46722109615802765,-0.44637108501046896,0.4009470376186073,0.5916091683320701,-0.9855525312013924,0.33661962440237403,0.9806670513935387,-0.947733330540359,-0.7041080840863287,-0.6813161089085042,0.10170085076242685,0.4038543626666069,0.41850010538473725,-0.31291401060298085,-0.3040988426655531,0.06769452197477221,0.6159528940916061,0.6682476908899844,-0.83987359656021,0.8018031306564808,-0.9086414342746139,-0.7619513599202037,0.857336238026619,-0.4827007111161947,-0.9234675737097859,-0.8477575918659568,0.9271371345967054,0.6337397000752389,0.05725423851981759,-0.8758560460992157,-0.19554721610620618,0.5577912577427924,0.03343640407547355,0.17131962534040213,0.06512597296386957,0.2886793799698353,0.5938239470124245,0.855663153808564,0.8608221393078566,-0.46377237141132355,0.3562381532974541,0.39900421211495996,0.6762452437542379,0.9098946703597903,0.4348921966738999,-0.6683979909867048,-0.9115457208827138,-0.8179747881367803,0.7029972393065691,-0.5003447001799941,-0.532488449010998,0.20570971444249153,-0.166943262796849,0.8145825820975006,0.5606661136262119,-0.6681263814680278,-0.50701067969203,-0.7926420709118247,0.587515268009156,0.628944665659219,0.3948546601459384,-0.39001915277913213,0.3319957088679075,-0.4193810294382274,0.2563759949989617,0.8062902730889618,0.6667999760247767,0.6866048173978925,0.9375374685041606,-0.6447400450706482,0.9913358478806913,0.5094828763976693,-0.041000483091920614,0.26203403854742646,0.5062150228768587,0.4104683599434793,-0.5983117111027241,0.13681737566366792,-0.6625835811719298,-0.21471479907631874,0.7368698306381702,0.7933344477787614,-0.32939952379092574,-0.5826735589653254,-0.757511627394706,-0.3751139151863754,0.9660884430631995,-0.3643505834043026,0.8468592613935471,-0.022388489451259375,0.8295181463472545,0.5249751964583993,-0.9503767974674702,-0.24522883724421263,-0.13915221625939012,0.1671912930905819,0.23786811716854572,-0.40154361771419644,-0.37430886551737785,0.07220571674406528,0.959620266687125,-0.2746092462912202,-0.6733601735904813,-0.4235756271518767,-0.9373766998760402,0.1709198704920709,0.932901029009372,0.5430697933770716,0.20184558210894465,-0.5437035206705332,0.7782449005171657,-0.3294913601130247,0.1495330915786326,0.1493082526139915,0.976651331409812,-0.3586286911740899,0.3952630627900362,-0.733803937677294,0.3953291419893503,0.6002011210657656,0.3963560597039759,-0.2867898312397301,-0.5371197597123682,-0.6155796623788774,-0.518675796687603,0.46945483796298504,0.11668880470097065,0.07720228284597397,-0.9919586395844817,0.502779932692647,0.7157182493247092,0.5724393911659718,-0.8187904241494834,0.2877859049476683,-0.8700199737213552,-0.39307305589318275,0.20347065851092339,-0.2526463847607374,-0.2631571819074452,0.9103089482523501,0.7484992924146354,0.9384364574216306,0.5267930957488716,0.21734071569517255,-0.5797682614065707,0.4830484031699598,-0.5890183835290372,0.859560455661267,0.6550748511217535,-0.10347059555351734,-0.1659448016434908,-0.24149038083851337,-0.29445948312059045,0.4335368536412716,-0.13412248063832521,-0.4655894599854946,-0.4728527758270502,-0.9680870422162116,0.09111994178965688,-0.5173832261934876,0.9530913839116693,0.0006861668080091476,0.31915238918736577,0.9019814440980554,-0.5155482566915452,-0.9134476906619966,0.8249885896220803,0.5736758620478213,0.22609384125098586,0.8580053234472871,0.9086627666838467,0.731903787702322,-0.73133804788813,-0.7391787958331406,-0.8381779179908335,-0.8051707469858229,0.3183852541260421,0.1483672079630196,-0.053305383305996656,-0.9901819634251297,-0.764958213083446,0.942857610527426,-0.8525719586759806,0.6219653231091797,-0.5312879607081413,-0.1220301678404212,0.03917454509064555,0.5875574862584472,-0.22121631260961294,-0.37542317481711507,0.9385418929159641,0.627521229442209,0.11462380038574338,0.33041383884847164,0.7403132296167314,-0.5557666644454002,-0.21230902150273323,0.8850770425051451,-0.7929459409788251,-0.33192720729857683,0.21066272538155317,0.7409656178206205,0.5075282813049853,0.8647688999772072,-0.9152677869424224,0.6888081850484014,0.46912271436303854,-0.7562470878474414,-0.25717451283708215,-0.5074958889745176,-0.7681257566437125,0.3454079502262175,-0.03617697209119797,-0.14157441724091768,0.22754353703930974,0.7258901474997401,-0.7443654811941087,0.5437269643880427,-0.3536046748049557,0.5237810099497437,-0.7627446171827614,0.442825635895133,0.6285182130523026,0.4528568172827363,0.006525016855448484,0.9248743057250977,0.4540101457387209,-0.9746334268711507,-0.6269558104686439,-0.8859410174190998,-0.2863739370368421,-0.6331138364039361,-0.08579652197659016,0.9391599167138338,-0.8937143562361598,-0.20871251914650202,-0.576076855417341,0.10013305628672242,-0.323936537373811,-0.1986353900283575,0.9290757570415735,0.4380485964938998,0.8147628675214946,0.6070636142976582,0.05316276289522648,-0.749341728631407,0.3735206052660942,-0.5748939318582416,-0.7721160752698779,-0.7616454577073455,-0.21774976933375,-0.8397586438804865,0.8183303526602685,0.4077946851029992,0.8111640037968755,0.33412826666608453,-0.43716558860614896,-0.8401913065463305,0.4465522011741996,-0.5897711394354701,0.06365716271102428,-0.4538143430836499,0.9856378170661628,-0.682132656686008,-0.38013726798817515,0.815257731359452,0.26886233128607273,-0.21674388786777854,0.36765178432688117,-0.7301267278380692,-0.38765728333964944,0.5109402476809919,-0.41976276552304626,0.6187321334145963,0.9027156536467373,0.6866654744371772,0.9211576650850475,-0.2572831027209759,0.4464297303929925,0.4224900403060019,0.998373594135046,0.5145400008186698,-0.9563148617744446,0.8414358906447887,0.12024821620434523,0.3217528513632715,0.25002300506457686,0.9603298157453537,0.4518710891716182,-0.9673574967309833,0.8181988904252648,0.837287800386548,0.775567872915417,-0.8073161784559488,0.9420344447717071,0.8462574682198465,0.09402782702818513,-0.917107411660254,0.9765161089599133,0.10479901358485222,-0.7123576137237251,-0.30588655499741435,-0.6739530605264008,-0.8106964365579188,0.10826717037707567,-0.23004910722374916,-0.561750560067594,-0.3076667981222272,0.3682951182126999,0.8882026318460703,0.39336601085960865,-0.6817571390420198,0.00830627279356122,-0.41227894742041826,-0.9888167171739042,0.8022988778539002,-0.3422098597511649,0.40586485527455807,-0.5211608475074172,-0.8723869873210788,0.33057194110006094,0.04732515662908554,-0.6836627600714564,-0.3211279297247529,0.5213197967968881,0.24993308121338487,-0.1448596972040832,-0.1361633180640638,-0.673907954711467,-0.911138379946351,-0.30952259758487344,-0.3222383689135313,0.5602245042100549,0.010209952015429735,0.004592653829604387,0.8739280169829726,-0.5571675542742014,0.5829018969088793,-0.8889825870282948,-0.4603102249093354,-0.7713440186344087,0.10542811406776309,0.7247926308773458,0.7758266008459032,0.1632455107755959,0.14931174786761403,0.49971521319821477,-0.3343304540030658,0.8789639659225941,0.11290280101820827,0.2397652049548924,0.3482724172063172,0.025113677605986595,0.7655815584585071,0.5429165144450963,0.5421388931572437,0.7142286435700953,0.04852741910144687,0.8971274001523852,0.14816066436469555,-0.823067900724709,-0.2668202165514231,-0.07013128325343132,-0.01849868753924966,0.33098585810512304,-0.29102862486615777,-0.5296026160940528,0.5760826175101101,-0.6621966101229191,-0.5885629304684699,0.4423497151583433,0.36624089861288667,0.24005194893106818,0.9800912756472826,-0.5403201067820191,0.41340186866000295,-0.8385123619809747,-0.9956034123897552,0.3840043148957193,-0.6102586183696985,-0.33998991874977946,-0.046168793458491564,-0.42307963827624917,-0.7590702846646309,-0.09020869294181466,0.9901259653270245,-0.7231910931877792,-0.9664148478768766,-0.1270658764988184,0.017396805342286825,0.9713791189715266,-0.9450376364402473,0.17889531143009663,-0.4519523889757693,0.8738327757455409,0.6371614742092788,-0.24718068027868867,0.04983221227303147,0.03074923763051629,-0.4270496517419815,-0.468971136957407,0.4827488320879638,-0.8453981555067003,0.19841734133660793,0.016159559600055218,-0.7323288191109896,-0.040171979926526546,0.1815682607702911,0.4360915254801512,-0.9462464107200503,-0.5841609816998243,0.7948765968903899,0.3780731023289263,0.8007339546456933,0.2685601976700127,-0.6072537014260888,-0.8308002860285342,0.6336279804818332,0.7717471513897181,0.7372632906772196,0.4280219515785575,0.7169858254492283,0.9253429076634347,-0.6084305481053889,-0.6755162589251995,-0.11640122719109058,0.4885626304894686,0.2611406003125012,0.011810010764747858,0.7642815294675529,0.2896753055974841,-0.7792014237493277,0.7380820540711284,0.31367008946835995,0.18493281584233046,-0.03564048046246171,-0.2293863920494914,-0.08855435438454151,-0.7785468739457428,-0.4118847553618252,-0.7929893867112696,0.20911301160231233,0.20005969190970063,-0.5394419571384788,-0.3900596406310797,0.8240092513151467,-0.20198338059708476,-0.885538512840867,-0.9715453092940152,0.7951130582951009,0.19597110943868756,-0.8134362674318254,0.4173922399058938,-0.7670500865206122,0.9425059040077031,-0.19768870156258345,0.0333415069617331,0.23143556248396635,0.5323580596596003,-0.7744294698350132,-0.8179827881976962,0.3732824889011681,-0.33720926754176617,-0.32834622636437416,-0.8542215144261718,-0.24862536694854498,0.06815850781276822,0.3456884357146919,-0.3427204373292625,0.9430429139174521,-0.9910282753407955,0.06992358760908246,0.9693579217419028,-0.7743519167415798,-0.08535864483565092,-0.190489761531353,-0.9086349289864302,-0.3168157725594938,-0.42804448772221804,-0.006977028213441372,0.8543643862940371,0.8247837806120515,0.6998476232402027,-0.14835952408611774,0.692985450848937,-0.11698525724932551,-0.2603475390933454,-0.099204336758703,-0.024848240427672863,0.487589031457901,0.019409083761274815,0.5318108354695141,0.923432809766382,-0.1326927486807108,0.024187436792999506,-0.4656585562042892,-0.5113956267014146,0.82604178506881,-0.7937949346378446,-0.17881148122251034,-0.917663702275604,0.03891259524971247,-0.8165992046706378,0.6421013274230063,0.5154370861127973,-0.3033743449486792,0.8697289386764169,-0.24734429875388741,-0.2377860196866095,-0.733374965377152,0.4338548327796161,-0.2941890861839056,0.7986797923222184,0.3374019186012447,-0.2840711111202836,0.6487561124376953,-0.6429201401770115,0.022936377208679914,0.21827750513330102,-0.07960819033905864,0.29931128211319447,0.9501715265214443,0.3984581083059311,0.20106951938942075,0.858936405275017,0.4524284927174449,0.8662441880442202,0.5008511412888765,0.10453571798279881,-0.6981218531727791,-0.07190628023818135,0.6510932175442576,0.6225857911631465,0.4065032107755542,0.2092850124463439,0.04607194010168314,-0.12225424172356725,-0.804825633764267,0.7707313550636172,0.07866168394684792,0.16384839406237006,0.48573800968006253,-0.9838661896064878,-0.6326110358349979,0.7876350302249193,0.1748422090895474,0.10852302936837077,0.46127698943018913,-0.3633363884873688,-0.6900382111780345,0.028896409552544355,0.587518020067364,-0.9199957847595215,-0.8166267792694271,-0.4609276601113379,-0.6021986580453813,0.6524601457640529,0.41418164083734155,-0.9304079920984805,-0.4773703529499471,0.40925228875130415,0.18067009467631578,0.7064981632865965,-0.9830727316439152,0.09974199626594782,-0.047163242008537054,-0.31327741453424096,0.9540055617690086,0.04434208385646343,0.7135095992125571,0.13201879430562258,-0.1961167212575674,0.09279522905126214,0.9530112589709461,-0.4058617874979973,0.006650293245911598,0.5969169484451413,0.5713722514919937,0.5628158622421324,0.6148722264915705,-0.5456766299903393,0.29501039534807205,-0.5492966324090958,-0.28602516930550337,0.9900840879417956,-0.16318539530038834,-0.10255415504798293,-0.9030922818928957,0.39375918824225664,-0.4515366512350738,0.705071683973074,0.958078961353749,0.2649717298336327,0.9129021624103189,0.9453878924250603,0.7963533452711999,0.4985186536796391,0.09385824296623468,-0.7742971442639828,-0.6630076505243778,0.28876036405563354,0.2814142066054046,0.31733726151287556,0.7470107730478048,-0.7866170317865908,-0.5154343247413635,-0.4899095883592963,0.24093141639605165,0.6401181449182332,-0.996617425698787,0.5610380074940622,-0.26335721649229527,-0.21168773528188467,0.34523787070065737,0.7487275875173509,0.1867030942812562,0.7975572319701314,0.6481606527231634,0.39040540577843785,-0.6666465406306088,0.0771564245223999,-0.5837132674641907,0.20349491853266954,0.6957715889438987,-0.20804851641878486,-0.1822113306261599,-0.6454486078582704,0.8277444057166576,-0.4625350683927536,-0.8210555831901729,-0.7243355507962406,-0.2982888901606202,0.9807373606599867,-0.691365665756166,0.9152464047074318,0.373398560564965,-0.7854481567628682,0.13151688082143664,0.06916428916156292,-0.564836525823921,0.1633132970891893,-0.6821606252342463,0.2640621569007635,-0.11659332178533077,-0.34243130777031183,0.8237802474759519,-0.2655873275361955,-0.20256337011232972,0.354178246576339,-0.4888907787390053,0.24711951659992337,0.043473821599036455,0.3230934883467853,0.26174629433080554,0.26330842869356275,-0.42521690065041184,-0.7216972946189344,0.852092569693923,0.9014642145484686,0.03585552470758557,0.9438772066496313,0.11782641243189573,0.9383923443965614,-0.9665726087987423,0.295303616207093,-0.2584788789972663,0.6652871994301677,-0.9182456196285784,0.7605590219609439,-0.5128008862957358,0.8335525230504572,-0.3802076601423323,0.3289293320849538,0.43358142860233784,-0.33367990935221314,-0.24118555709719658,-0.166669353377074,-0.7763039441779256,-0.6044368683360517,-0.9057277902029455,0.1680035376921296,-0.6650627595372498,0.6039085765369236,0.15266997227445245,0.782787702511996,0.3660345459356904,-0.85115229152143,-0.05328067531809211,0.32968462770804763,-0.30985119100660086,-0.8857331373728812,-0.4790546805597842,-0.1660984237678349,-0.852148964535445,-0.11159063642844558,-0.9589105886407197,-0.9151985561475158,-0.7966615278273821,0.39187432592734694,0.4212861689738929,-0.0656375139951706,0.7229502331465483,-0.968544527888298,-0.8021415662951767,0.23452739836648107,0.7651727078482509,0.17897355509921908,0.5701540978625417,0.10608605854213238,0.17258777981624007,0.5053035253658891,0.04541393369436264,-0.3045280585065484,-0.26348238810896873,-0.4052211050875485,-0.32213721377775073,-0.31977421091869473,0.23286390583962202,-0.8985477611422539,-0.7322854022495449,0.08350967802107334,0.13800125336274505,-0.7132447245530784,-0.3304862058721483,0.18371652299538255,-0.7865225672721863,0.10459289699792862,0.45395709620788693,-0.8864927492104471,0.712801733519882,0.11585136642679572,0.7617218648083508,-0.6478819642215967,-0.6428639786317945,0.7332450589165092,-0.5622545219957829,-0.9070001957006752,-0.2972334544174373,-0.5071189939044416,-0.23608005978167057,-0.13016524352133274,0.9139432576484978,0.1767204198986292,-0.5161187280900776,-0.38536704145371914,-0.7336183176375926,0.04701304389163852,-0.856210745871067,-0.6440250971354544,0.4103324110619724,0.8589174039661884,0.2484151446260512,0.13464880734682083,-0.6126455557532609,-0.06266207294538617,0.9686811910942197,-0.5312840132974088,-0.8336372426711023,-0.4618119648657739,-0.18594557791948318,0.5027628401294351,0.8931089732795954,0.2978403097949922,-0.1661202092655003,0.13407849986106157,-0.3242719052359462,-0.359472771640867,0.030459852423518896,0.18781479494646192,-0.6785657848231494,-0.16124538239091635,-0.010357663035392761,-0.23028263030573726,-0.3877889378927648,0.9996030419133604,0.971866556443274,0.37010718788951635,-0.5987067054957151,0.7267879913561046,-0.08035632502287626,-0.3244095048867166,-0.656300060916692,0.581917701754719,-0.37125319987535477,0.2599359229207039,-0.6436694795265794,0.369761576410383,0.19405287271365523,-0.1219396092928946,-0.34302056580781937,0.19567141262814403,0.03732980974018574,-0.16958693601191044,0.308060044888407,0.16162258619442582,0.8934678062796593,0.2739603416994214,0.9791156300343573,-0.32687791157513857,-0.19066201662644744,-0.046787753235548735,0.6447865520603955,-0.20197463780641556,-0.06911381846293807,0.6610530889593065,0.493917606305331,-0.7061036401428282,0.1208348860964179,0.7813099073246121,-0.941712053027004,0.9240405210293829,-0.20871909987181425,0.4826563838869333,-0.09407330304384232,-0.9494721335358918,0.11682837596163154,0.8857677993364632,-0.572241370100528,-0.6942771486938,-0.06765001267194748,-0.7561587998643517,-0.3149435082450509,-0.5354892611503601,-0.17485321126878262,0.8728449447080493,-0.961805694270879,0.35996751906350255,0.44729634933173656,0.7614846560172737,-0.8795667341910303,-0.35848659183830023,-0.4342028610408306,-0.5499790054745972,0.8936975835822523,-0.3614368047565222,0.7993232430890203,0.5479002646170557,-0.20630711037665606,0.5759327970445156,-0.2719761827029288,-0.6158124711364508,0.604908443056047,-0.9345086687244475,-0.4805363994091749,0.23606834467500448,-0.41811571968719363,0.08796616923063993,0.03396230889484286,0.8150311163626611,-0.012206862680613995,0.9857370657846332,-0.9097492573782802,-0.7611736766994,-0.7882484719157219,-0.9610965652391315,-0.7607317338697612,0.5661458987742662,0.7288384884595871,-0.0754219489172101,0.2521453471854329,-0.5204543173313141,0.26954540656879544,0.13410329492762685,0.9091681726276875,0.6274686777032912,0.8003160832449794,0.07122877100482583,-0.9530816017650068,0.37383371545001864,-0.9829553505405784,-0.46896596904844046,0.7818508492782712,-0.35618768353015184,0.6554742539301515,0.06840353738516569,-0.6364487567916512,0.61190076591447,-0.04617186821997166,-0.460073028691113,0.6464917492121458,-0.9029240352101624,-0.16262626321986318,-0.11192866694182158,0.8669394683092833,0.9101131916977465,0.5200970419682562,-0.3324749656021595,-0.9633810329250991,0.19770170515403152,-0.7533006775192916,-0.10719639016315341,-0.2161826230585575,-0.5040138331241906,-0.30826375680044293,-0.9308447293005884,-0.4657508614473045,0.24886567750945687,0.3125524674542248,-0.6789357024244964,-0.4855628530494869,-0.6275549125857651,0.6633071005344391,0.9430727059952915,-0.9614413110539317,-0.7089164196513593,-0.5546130063012242,0.25238802935928106,-0.465705543756485,0.46026007691398263,0.656875538174063,0.927139163017273,0.3336080014705658,0.17216190183535218,-0.39573373179882765,0.6719432715326548,-0.5678097894415259,-0.9989732108078897,-0.3527969610877335,0.002731715328991413,0.7340210126712918,0.6060042637400329,-0.491227968595922,0.9299766807816923,-0.2766171069815755,0.7198137724772096,0.9541973704472184,-0.17852077167481184,0.07625654898583889,-0.9858779339119792,0.5584564032033086,0.0716038728132844,0.9848605650477111,-0.3041646461933851,0.9263382093049586,0.6018380904570222,0.682764105964452,0.8791658491827548,0.5060223829932511,-0.2626213785260916,-0.299864430911839,-0.8497704565525055,0.0011522681452333927,-0.20546837244182825,0.14264787500724196,-0.8954145177267492,-0.29264917597174644,0.07962623843923211,-0.5120663433335721,-0.13810562249273062,0.9782472113147378,-0.8099961834959686,-0.41846983693540096,0.14636392425745726,-0.0178856011480093,0.37378273624926805,-0.7061791303567588,-0.011514257173985243,-0.5661576171405613,0.0604747268371284,0.4731161268427968,0.2397607145830989,0.411566826980561,0.548071401193738,-0.766823832411319,-0.2548344903625548,-0.6256612092256546,0.5786940986290574,-0.28712700633332133,-0.39359785756096244,-0.32288526045158505,0.6655664262361825,0.9242827552370727,0.5460650473833084,0.0683090123347938,0.07997097913175821,-0.05369288381189108,-0.049327180720865726,0.4528761450201273,0.6673550438135862,-0.8034592038020492,-0.18598565086722374,0.12357248226180673,-0.0886060856282711,-0.42543276865035295,0.5717049785889685,-0.6300709964707494,-0.18533063493669033,-0.11473149759694934,0.6076942244544625,0.283542693592608,-0.7107367455027997,-0.445139373652637,-0.25595353078097105,-0.1904533696360886,0.8121945261955261,-0.2790026762522757,0.7322361352853477,0.9676460199989378,0.11324367672204971,-0.536934566218406,-0.7861973089165986,-0.3960854047909379,-0.6615167111158371,0.674106263089925,-0.32494637835770845,0.6110888728871942,-0.4349138392135501,0.9427133766002953,-0.6774118249304593,-0.7356973341666162,0.0974565539509058,-0.12243584729731083,-0.2486137873493135,0.9916535662487149,-0.07284758426249027,-0.8617334757000208,0.5222199340350926,-0.6967640765942633,-0.4404276479035616,0.24891080893576145,-0.8714256444945931,0.26475304597988725,-0.9522704551927745,0.8627168731763959,0.30011170031502843,-0.7509179525077343,0.646974481176585,-0.4736829441972077,-0.42406207928434014,0.1528836744837463,0.5701455022208393,-0.20917501021176577,-0.6219564410857856,-0.32990282215178013,0.5008028252050281,-0.022391108330339193,-0.21618065191432834,-0.2619387893937528,-0.08972733654081821,-0.8036343292333186,0.19544901559129357,0.08574970066547394,-0.20252974051982164,-0.04632000671699643,-0.12587562249973416,0.7479022801853716,-0.6262258780188859,0.7674051327630877,0.8700460307300091,0.7893296629190445,0.7837516558356583,0.6036472478881478,-0.36810193490237,0.15555054089054465,-0.14689246285706758,-0.5251014139503241,0.8683149069547653,0.18831068417057395,0.1844789613969624,-0.7334320871159434,0.284682824742049,0.15073074214160442,-0.48363207280635834,-0.5040846485644579,0.21452406700700521,-0.4082246134057641,0.08669945364817977,0.77731026802212,0.6040779906325042,-0.43536925315856934,0.48293746216222644,0.11268363334238529,0.9057044209912419,-0.43887795601040125,-0.4452031319960952,-0.016022907104343176,0.9999908218160272,-0.8155341525562108,0.023384432774037123,-0.7712281486019492,-0.4588589812628925,0.050489512737840414,-0.10230597481131554,0.5169056388549507,-0.02048586029559374,0.3188591543585062,0.712253961712122,0.33497563283890486,0.29843496391549706,-0.07256743218749762,0.36251304391771555,0.6914256014861166,0.6617261092178524,-0.5300371386110783,-0.849834063090384,0.5664911768399179,-0.7495672241784632,0.241946910507977,-0.40986465476453304,-0.6850735656917095,0.47441838681697845,-0.7069385647773743,-0.5054548098705709,-0.5828367187641561,0.49166883528232574,-0.8235711557790637,-0.6905073681846261,0.7748895441181958,-0.30971343582496047,0.581700686365366,0.2779046162031591,0.1218864363618195,0.8457136587239802,0.10821126913651824,-0.2479265844449401,0.12864471320062876,-0.8773786989040673,-0.8944102511741221,0.9727987144142389,-0.6235096724703908,-0.5202099876478314,0.1335085853934288,-0.08096516178920865,0.39439222821965814,0.6377546447329223,-0.9365478223189712,-0.6041727210395038,0.26693210611119866,-0.41818529600277543,0.31611102679744363,-0.48949286015704274,0.014604846015572548,0.03595710825175047,-0.8839649739675224,-0.5049008564092219,-0.7180045396089554,-0.35019112983718514,0.5177398314699531,-0.7808341197669506,0.015911868773400784,-0.36255451245233417,-0.10794402239844203,0.7567246882244945,0.20156470080837607,-0.30382431112229824,0.4064183058217168,-0.11379219917580485,0.17057110089808702,0.9448051559738815,-0.4492108803242445,0.2522021662443876,0.7518798774108291,0.9312876774929464,-0.7444814145565033,-0.8383664186112583,0.15967396087944508,0.9990296759642661,-0.7169246282428503,-0.665404015686363,0.49196724966168404,0.5702701564878225,0.03302021324634552,0.4109547105617821,0.9532185271382332,0.43632038589566946,0.1553368610329926,0.40665058651939034,0.43136675795540214,-0.36084145680069923,-0.9979795273393393,0.71184625569731,0.3864447888918221,-0.8885764558799565,-0.9087437414564192,0.16562013048678637,-0.4577396116219461,0.12223762786015868,0.25343198608607054,0.13192731700837612,-0.9651913410052657,-0.7141324374824762,0.7434455459006131,0.5277288090437651,-0.7296640309505165,-0.7445504269562662,0.13024964788928628,0.5331097915768623,0.10208263993263245,-0.008393601980060339,-0.9270092099905014,0.5052141798660159,-0.9699831120669842,0.33047514874488115,0.8469956233166158,-0.7838925556279719,-0.5662868511863053,0.01881144056096673,0.8625469813123345,-0.8516904427669942,-0.9098813510499895,-0.07403376512229443,0.4882219694554806,-0.28340494679287076,-0.13760460307821631,0.017188226338475943,0.6848544310778379,-0.6292776931077242,-0.3309355964884162,0.7856956939212978,-0.4299461292102933,-0.33401355938985944,0.8276768242940307,-0.8707502176985145,-0.5750385695137084,0.5451174103654921,0.5628804895095527,0.8908444694243371,0.075397539883852,-0.7448501894250512,0.1266219592653215,-0.11910728365182877,0.3690662635490298,-0.6594031052663922,-0.03475393354892731,0.6277654943987727,-0.47703086491674185,0.3667452009394765,0.9248782671056688,0.4306820845231414,0.999939230736345,-0.12434218544512987,0.248621697537601,0.41247248789295554,-0.9397449367679656,0.7826654715463519,0.9177398267202079,0.9125574645586312,-0.0763255232013762,-0.9382424750365317,0.9403475280851126,0.9793169163167477,0.9430529992096126,-0.7123793167993426,0.18857006169855595,0.04543482977896929,0.8261310760863125,-0.13234958657994866,0.6114801429212093,-0.6100503611378372,-0.323156445287168,0.43517075572162867,0.7940235286951065,-0.3163897846825421,0.3852206380106509,0.11815800704061985,-0.9180799243040383,-0.559846653137356,-0.7910121977329254,0.7216150998137891,-0.8623888222500682,-0.06913786800578237,0.02464180812239647,-0.8272059122100472,0.382784980814904,-0.07275938708335161,-0.7171635683625937,0.41944838454946876,-0.12904593953862786,-0.12808191496878862,0.23027674946933985,-0.35298535181209445,0.3203126275911927,0.520399734377861,0.8993993662297726,-0.9481210582889616,0.6921719582751393,0.5431155133992434,0.026660677511245012,0.1586424601264298,0.5041310274973512,0.7064293278381228,0.05018826061859727,0.021014096681028605,-0.804534450173378,0.6957974582910538,0.5299172052182257,0.8338556294329464,-0.41105581913143396,0.33891744492575526,-0.7316532568074763,0.8219131412915885,0.12348330859094858,0.00167562672868371,-0.4032602393999696,-0.5857591019012034,0.8526869602501392,0.3069115923717618,0.6213729283772409,-0.8758456828072667,-0.4431494646705687,0.337183881085366,0.6455359160900116,0.9469800079241395,0.4592020660638809,0.9986347411759198,0.921531128231436,0.6988278911449015,0.9225090174004436,0.5340889706276357,0.03735926188528538,0.35208474192768335,-0.09213706385344267,0.9630278465338051,-0.9116345285438001,0.2552738790400326,0.31819533091038465,0.50373211549595,-0.8128806636668742,-0.9452586770057678,0.30714980512857437,-0.30445684352889657,-0.8752233041450381,0.0009343563579022884,0.19843512028455734,0.8294549877755344,-0.5638063275255263,0.9793407833203673,0.7229454470798373,-0.19397374987602234,0.6878822692669928,0.48556028958410025,-0.7143305642530322,-0.2479644948616624,0.6397466594353318,-0.8176869619637728,0.1635704399086535,0.9880071212537587,0.8064995976164937,-0.9719807603396475,-0.4458826812915504,-0.9698546957224607,-0.5982979317195714,0.5966921146027744,-0.9311202703975141,0.9368057488463819,0.13720289710909128,-0.7247603815048933,0.4634659751318395,0.8130028150044382,0.9016507249325514,-0.4738623141311109,-0.0152637236751616,-0.21892356919124722,-0.17770978203043342,0.18954790523275733,-0.6329516521655023,-0.3675818098708987,-0.7019348926842213,0.3104365160688758,-0.11545073194429278,0.5935759297572076,0.7595099080353975,0.42429829202592373,-0.6905023632571101,-0.4713719733990729,0.5551577964797616,-0.8524994966574013,-0.7803346221335232,0.4253837619908154,0.42807431798428297,0.5794291850179434,-0.27020458690822124,-0.7616745955310762,-0.7716662939637899,0.31084238458424807,-0.3771994817070663,-0.5012650415301323,0.03570466907694936,0.5514630256220698,0.21207692846655846,-0.9112000879831612,0.3686405960470438,0.3515534778125584,0.8783492906950414,0.5911310259252787,0.6753290207125247,-0.34195997193455696,-0.0024053738452494144,-0.7380745662376285,0.35463170520961285,-0.34495006455108523,-0.5770214037038386,-0.9126207181252539,0.16767726512625813,0.6257811058312654,0.07127238437533379,0.6131615629419684,0.8792854431085289,-0.6086771581321955,0.4382184031419456,-0.6710362248122692,-0.1395692746154964,0.4329673876054585,0.4086050959303975,-0.9211327042430639,-0.3611493627540767,0.14691387908533216,0.11801663553342223,-0.9092117487452924,0.5851510185748339,0.38660699129104614,0.5239988816902041,0.08572785835713148,-0.8196094958111644,-0.2255959422327578,0.32935776887461543,0.6380997360683978,-0.9728654781356454,0.6706682587973773,0.7042511734180152,-0.7495008637197316,0.004212041385471821,0.30793072609230876,0.5085053173825145,0.22503630770370364,-0.98743995744735,-0.643189009744674,-0.20571236871182919,-0.6057303394190967,-0.1678017619997263,0.8394753430038691,0.30353780230507255,-0.6677982634864748,-0.8547729584388435,-0.42430589068681,0.5005989358760417,-0.9862162410281599,0.188276378903538,-0.41672628093510866,0.34091382240876555,0.12733168387785554,0.17485998384654522,0.8094540419988334,0.4101595589891076,-0.6999104828573763,-0.618848321493715,-0.018804673571139574,-0.0055846585892140865,-0.1716481982730329,-0.9535316321998835,-0.184516292065382,0.7374737188220024,0.7214386742562056,-0.7797742234542966,-0.964680043514818,0.5097244619391859,-0.9543552892282605,-0.8837668583728373,-0.751768016256392,0.3019832642748952,0.5546875325962901,0.11014681914821267,0.2427221341058612,-0.6420823847874999,0.6876072315499187,0.6059118956327438,0.2905796403065324,0.70794807234779,0.6594407446682453,-0.061430562287569046,-0.5376638611778617,-0.22872476372867823,0.6571878492832184,-0.13241062546148896,0.6070648664608598,-0.5388703932985663,-0.6810631258413196,-0.049065643921494484,-0.49975674552842975,0.47923186840489507,0.8169339639134705,-0.8313198662362993,0.8845710777677596,-0.7937802667729557,-0.36298542842268944,0.9596963347867131,-0.5314293405972421,0.8194134538061917,-0.5821640058420599,-0.4143094066530466,-0.2353767892345786,0.20933079905807972,-0.2893705824390054,0.3302206457592547,-0.6776325600221753,0.5319497985765338,-0.6165007050149143,0.8430622788146138,0.39904662733897567,-0.22087732050567865,-0.6518375421874225,0.39554097270593047,0.16676255501806736,-0.5284183477051556,-0.48749001836404204,-0.7602162146940827,0.9966563773341477,0.34439429407939315,0.5003300881944597,-0.9786243820562959,0.5004503685049713,0.15885398909449577,-0.46487578516826034,0.06843402329832315,0.04790904652327299,0.9027318814769387,-0.11681009596213698,-0.1289986683987081,0.15888547338545322,-0.14189883694052696,0.9164484781213105,0.8639610856771469,-0.7606616052798927,-0.6287158303894103,-0.36675702361389995,0.4642489571124315,-0.8709793575108051,-0.881809291895479,0.05018574744462967,0.6987917148508132,-0.8795317322947085,0.09556153370067477,0.4808211154304445,-0.8724961131811142,-0.2880196822807193,-0.6508726258762181,0.35427530342713,-0.978037616237998,0.09060466708615422,0.02673137979581952,0.475562475156039,-0.9757468551397324,0.7201549024321139,0.029903773684054613,0.7656704294495285,0.42803453747183084,-0.8640762269496918,-0.5268736970610917,0.9726316533051431,0.9868522840552032,-0.514567022677511,0.12505049398168921,0.9601064044982195,0.39370450749993324,-0.9100127164274454,0.9095196262933314,0.6774428230710328,0.6684927907772362,0.6319918944500387,0.09508295590057969,0.4747948092408478,-0.6107063549570739,-0.4820052310824394,-0.6713943458162248,-0.39491852931678295,-0.37706993892788887,0.5720354341901839,-0.3984695472754538,-0.8362418552860618,0.7726176413707435,0.3316632527858019,-0.3524374491535127,-0.5188565016724169,-0.29737204406410456,0.7926136469468474,-0.08927070815116167,-0.581236126832664,-0.7687716870568693,0.5071254414506257,-0.4683403177186847,-0.20230576395988464,0.08503877371549606,0.6800253810361028,0.6009407644160092,0.41195849888026714,-0.4500190047547221,-0.35237802704796195,0.9861888624727726,-0.584575183223933,-0.034673884976655245,-0.31275724712759256,0.41515048732981086,0.3148095249198377,-0.8664404754526913,0.980718981474638,0.05033243168145418,0.8510640654712915,0.8714690897613764,0.3601522147655487,0.9476143843494356,0.337782459333539,-0.45175932021811604,0.7030457695946097,-0.7934384513646364,0.2891636397689581,0.1305355317890644,-0.14255530294030905,-0.5567324762232602,-0.2814556979574263,0.9996473151259124,0.6076775407418609,0.4247150127775967,-0.7502941279672086,0.27284084307029843,-0.758555066306144,-0.9382491768337786,-0.8479324830695987,-0.4209539610892534,0.9552591354586184,0.06828892044723034,-0.20011771516874433,0.6238267947919667,-0.2982855159789324,0.3737211087718606,-0.5192371625453234,-0.9371374030597508,-0.4002524511888623,0.009117892012000084,0.7140872464515269,0.03907172055914998,-0.13507508160546422,0.29732643626630306,0.30399704817682505,0.16967341117560863,-0.011689384002238512,-0.3804201656021178,0.8825339414179325,-0.8125441907905042,-0.8831960884854198,0.3956052241846919,0.06734024779871106,-0.8972602523863316,-0.982401258777827,-0.3773571876809001,0.5961645566858351,0.7439729459583759,0.7862931881099939,-0.46059715701267123,0.462218149099499,-0.10067184967920184,0.2448163153603673,0.779820388648659,0.4851618497632444,-0.1515134139917791,-0.47548002004623413,-0.7152691925875843,-0.8108221828006208,0.7991240005940199,0.6004465953446925,0.5560488989576697,0.9682585895061493,-0.11891544423997402,-0.1182590825483203,-0.8287162585183978,0.08553667180240154,0.06813210528343916,-0.4209726224653423,0.34883397072553635,-0.07651126431301236,0.2587247332558036,-0.10249845637008548,-0.4262478486634791,0.9205442317761481,0.08822217071428895,-0.12338555976748466,0.5980609119869769,0.6671019727364182,-0.542109651491046,0.16658719722181559,0.11589301098138094,0.9485905803740025,0.5832763398066163,0.7680709608830512,0.9694645758718252,0.35067772399634123,0.18159105023369193,0.23092683916911483,0.02459627203643322,0.192615766543895,-0.8361491705290973,0.8955668099224567,-0.6091880411840975,0.8638704316690564,-0.7899794029071927,-0.9117407826706767,0.7804064215160906,0.41244210395962,-0.6230084006674588,0.9069114667363465,-0.045079156290739775,0.8409600434824824,0.9330044779926538,-0.6066281469538808,0.6491778716444969,0.6614698702469468,-0.4185059447772801,-0.7960814470425248,-0.7041050442494452,-0.8203004375100136,-0.7538720709271729,0.8522740695625544,-0.634090774692595,0.9749998822808266,-0.6427490930072963,0.6768362475559115,-0.1981896967627108,-0.31562323588877916,-0.39977498445659876,-0.5810301341116428,-0.9919197545386851,0.9415666861459613,0.04527459945529699,0.8100422453135252,0.14158503524959087,0.9467207742854953,0.1524755172431469,0.22996442206203938,0.03141348250210285,-0.6126087154261768,0.6439655278809369,-0.8870697729289532,-0.8392397062852979,-0.44147346122190356,0.9909996264614165,-0.13670628610998392,-0.36109704012051225,0.15498974360525608,-0.2921793325804174,0.3652365622110665,-0.6702980124391615,0.28479331359267235,-0.0910908430814743,-0.6477491073310375,0.3359050205908716,-0.026370383333414793,0.5223022601567209,-0.7386413863860071,-0.843955637421459,0.4137721615843475,0.9055518754757941,0.43854591017588973,-0.5898300320841372,-0.5136315580457449,-0.5868697203695774,-0.7896636254154146,-0.4622976677492261,0.6175829460844398,0.07708974275738001,-0.5002153920941055,-0.969490657094866,-0.3828010684810579,0.2878960333764553,0.29784292727708817,0.4518395150080323,-0.31991698732599616,0.0015153209678828716,-0.39783850125968456,0.7774902014061809,-0.3718444248661399,-0.2046662587672472,-0.1240746988914907,0.20918354904279113,-0.24897088948637247,-0.6490342025645077,-0.24764750059694052,0.42725038155913353,-0.31403671437874436,-0.28588369162753224,-0.3624965734779835,0.01789993140846491,-0.11135148722678423,0.7973585817962885,0.04353897413238883,-0.2675232654437423,-0.9796836851164699,-0.48593620164319873,0.3536709980107844,0.27898652758449316,-0.9796275249682367,-0.5170128559693694,0.4716821820475161,-0.11079532513394952,0.5882951463572681,0.21945526730269194,0.38487283419817686,0.6243078634142876,0.1237134076654911,0.15468212496489286,-0.6852831169962883,0.8203276665881276,-0.28400643542408943,-0.5093273711390793,0.4016479281708598,-0.46902279555797577,0.9842508528381586,-0.724162248428911,0.9450189615599811,-0.8107458623126149,-0.6633830973878503,0.979175022803247,-0.9031976326368749,0.5859307427890599,-0.6248588999733329,0.03558176290243864,-0.15286533208563924,0.3176818029023707,-0.13100912794470787,-0.7105002463795245,0.23031632648780942,-0.9498980212956667,-0.11741046141833067,-0.958268707152456,0.6555636543780565,-0.5020909509621561,0.6700922208838165,0.8816301366314292,-0.772069551050663,-0.5236544767394662,-0.15910788159817457,0.907146564219147,0.5438339877873659,-0.03410552907735109,0.4765578708611429,-0.005808752030134201,-0.06718620285391808,0.5525379376485944,-0.9765767068602145,0.4977900246158242,0.2838547984138131,-0.8281065938062966,0.6976940198801458,0.5057047209702432,-0.5866827522404492,-0.5810613823123276,-0.915716515854001,0.768251976929605,0.5478887865319848,0.6752399988472462,0.4885153160430491,-0.5182117526419461,0.09881303366273642,0.2980406051501632,0.34473334439098835,0.8983731432817876,-0.24748424207791686,0.4388135625049472,-0.10181239200755954,-0.7464808654040098,0.45864235423505306,-0.4871511827223003,-0.9095548829063773,-0.7967411214485765,-0.13760548178106546,0.8129495768807828,-0.7512241443619132,0.9594938149675727,0.5029435069300234,0.34813926881179214,0.797984731849283,-0.48248483007773757,0.5704104136675596,0.002623565960675478,0.48071501264348626,-0.9220532304607332,-0.32862057350575924,-0.47313692048192024,-0.4647070742212236,-0.4007480265572667,-0.8048169226385653,0.3525296514853835,0.07970851194113493,0.2789560230448842,0.7642319113947451,0.5018317350186408,-0.3477026508189738,0.32260703667998314,0.3179328953847289,0.6031887466087937,0.03480682335793972,-0.1326435524970293,0.018822679296135902,0.8670055377297103,0.7110195877030492,-0.5166093888692558,0.852099179290235,0.7734932540915906,0.2132578263990581,0.2566947629675269,-0.10775065561756492,-0.5815073503181338,-0.13208482041954994,-0.7362275761552155,-0.8373679774813354,0.8003042126074433,0.8572502452880144,0.16127564618363976,-0.7870818814262748,-0.5238205310888588,-0.1518093105405569,0.920264816377312,-0.7583261728286743,0.26822420861572027,0.9543232843279839,-0.7443059445358813,-0.6122995018959045,-0.8350687972269952,-0.8753407350741327,0.24576679011806846,0.02389681525528431,-0.2047379817813635,-0.9134966237470508,-0.13292364170774817,0.9759918535128236,0.8227481539361179,-0.15378423873335123,0.13379902439191937,-0.2643398414365947,-0.4015234145335853,0.24338535452261567,0.41757795913144946,0.763711507897824,-0.8229774869978428,0.17718249605968595,-0.8913655425421894,-0.02151442039757967,0.22707039769738913,0.835173043422401,-0.12617390183731914,0.5494213537313044,-0.0036361967213451862,0.8048762702383101,0.18992046872153878,0.3593157920986414,0.5886162025853992,-0.05323967384174466,-0.9766620718874037,-0.42916380567476153,0.8395981541834772,-0.08501868788152933,-0.9944958374835551,-0.86417914647609,0.12711374694481492,-0.8048096704296768,-0.7110811742022634,-0.8163180882111192,0.9117452520877123,0.3573463140055537,-0.6683391607366502,-0.3990561072714627,-0.7251997576095164,0.8944294811226428,-0.6803614986129105,0.718602851498872,-0.7946167513728142,-0.20262378500774503,0.09485095739364624,-0.644567328505218,-0.8232317403890193,0.9134636400267482,-0.11042996915057302,0.6060667033307254,-0.6417249119840562,-0.01852134708315134,0.07254075491800904,-0.6104528391733766,0.9150495962239802,0.08011664915829897,0.4559632823802531,-0.8557300255633891,0.3439025888219476,-0.22913342528045177,-0.703382161911577,-0.6089757368899882,0.32118186354637146,-0.6712597329169512,-0.3660158538259566,-0.9681676779873669,-0.16883728886023164,-0.14700188487768173,0.6755577581934631,-0.9154256135225296,0.5709177795797586,-0.7764852163381875,-0.8418511892668903,0.27837608521804214,0.9072734923101962,0.5374551499262452,0.7067074747756124,-0.05552367912605405,0.9507081634365022,0.10827129054814577,0.6462812535464764,-0.32441997434943914,-0.4766721031628549,0.4646584512665868,0.5317152189090848,0.7250644802115858,-0.9414910618215799,-0.7417414393275976,0.09589207544922829,0.5605042087845504,0.941105027217418,0.00723449420183897,-0.8435196997597814,-0.5057163932360709,0.7713317708112299,0.7786015761084855,0.8778223670087755,0.39340408705174923,0.27928679483011365,-0.907673966139555,-0.10185404354706407,-0.11425750609487295,0.33636026456952095,-0.7719401810318232,-0.408302444498986,-0.4389100973494351,-0.9228274603374302,0.2246783128939569,0.45768214063718915,-0.6531445137225091,0.39250384736806154,0.08426785795018077,0.19395782053470612,-0.35008156672120094,0.8465280057862401,-0.46656633261591196,0.9375819130800664,-0.5016024517826736,-0.8159880256280303,-0.9322130382061005,-0.6581410276703537,0.2031219699420035,-0.4630669760517776,-0.293016264680773,-0.2366890935227275,-0.9211981408298016,-0.5423624292016029,0.5119437081739306,-0.6512652239762247,-0.8466449738480151,-0.043116172309964895,0.6127431648783386,0.10269985953345895,0.3892042185179889,0.258444728795439,0.8889244431629777,-0.7900993875227869,0.9032433438114822,-0.2065681954845786,0.3122334727086127,0.34260542364791036,-0.525877520442009,0.12318146647885442,-0.18723870813846588,-0.1422695741057396,0.43306598998606205,0.7735867374576628,-0.08746788883581758,0.1624638643115759,-0.22747944574803114,-0.4636792098172009,-0.37950331810861826,0.24376666080206633,-0.07015872001647949,-0.3858557157218456,0.1086236392147839,0.35920455725863576,-0.24933917680755258,0.5279648303985596,0.8188326135277748,0.15211444487795234,-0.591887419577688,0.2686382392421365,-0.6010991348885,0.8545105648227036,-0.8738773027434945,0.32572874426841736,-0.6274251588620245,-0.7807591771706939,-0.25436392007395625,-0.8714464199729264,0.5365318399854004,-0.21260037552565336,0.2437633192166686,0.11782550578936934,-0.007579157128930092,0.5837283674627542,-0.026400542352348566,-0.4154358352534473,0.8996249348856509,-0.8351625078357756,-0.5754660773091018,0.505331969819963,0.22016329038888216,-0.6648142402991652,-0.7203316292725503,-0.6745628276839852,-0.21775306155905128,0.3492457466199994,0.5377971110865474,0.020704617723822594,-0.7525723432190716,0.030622337944805622,0.1141743753105402,-0.23313308507204056,-0.3044644366018474,0.44758545188233256,0.19782847864553332,0.18255846109241247,-0.4699553740210831,0.7734727007336915,0.6381049319170415,0.24576376285403967,0.5160820079036057,0.9720308682881296,-0.5169209195300937,0.24830764159560204,0.8479893235489726,-0.04355821944773197,-0.5112236412242055,-0.45348369469866157,-0.5221215984784067,0.46124073630198836,0.058060478419065475,-0.9235175792127848,-0.9117582235485315,0.7445244980044663,0.7829980016686022,-0.6508116004988551,0.7273933752439916,0.9828629461117089,0.7575972494669259,0.3682835646905005,-0.9645323380827904,0.41837769746780396,0.9896970256231725,-0.6928931609727442,0.8721033982001245,0.37115930719301105,-0.40286317793652415,-0.848533749114722,0.09860515035688877,0.31696916930377483,0.10609594034031034,0.23480559699237347,0.5481741549447179,-0.31632918026298285,-0.9020941806957126,0.5110590606927872,0.251236782874912,-0.1796999596990645,0.27361868182197213,-0.8520738817751408,0.7907722499221563,-0.2886613756418228,-0.5204206462949514,0.7390609332360327,-0.22271638922393322,0.468896911945194,-0.5553570068441331,-0.09088527923449874,0.3156861732713878,-0.45275780791416764,0.4613064890727401,0.4663297813385725,-0.24043215112760663,-0.14146299846470356,-0.04338126117363572,-0.78434470994398,-0.04095569113269448,0.758167099673301,-0.42940891114994884,-0.13774330727756023,-0.2831244692206383,0.5467868014238775,0.09405556740239263,0.07992656156420708,-0.03399387979879975,-0.6786832269281149,0.4824554533697665,0.3688617469742894,-0.8173057157546282,-0.8911584857851267,-0.8064621048979461,0.1929802750237286,-0.28924796264618635,-0.8589834016747773,-0.5609350940212607,0.3997358880005777,-0.6058003688231111,0.8733606948517263,-0.674044038169086,-0.8722583432681859,-0.88465386768803,0.5650022840127349,-0.04293757816776633,0.5285341972485185,-0.4186072745360434,0.8235418098047376,-0.929677507840097,-0.5364562841132283,0.2922033774666488,0.31472378922626376,-0.13726086867973208,-0.3037610212340951,0.9884931002743542,0.9237370216287673,0.7009111042134464,0.78809600090608,-0.39458504458889365,-0.1376907150261104,-0.9906162172555923,-0.0036395033821463585,-0.38425439735874534,0.37473273323848844,0.41237711952999234,0.5731079517863691,0.12379267998039722,-0.9207108849659562,0.04618347715586424,0.32149057649075985,-0.23966240277513862,-0.8800945980474353,0.6079615042544901,-0.9402198349125683,0.5842250594869256,0.6494417041540146,-0.7173127485439181,0.35789582459256053,-0.1711439904756844,0.8064335063099861,0.9470538082532585,-0.13390153273940086,0.23943983670324087,0.566764950286597,0.542015140876174,-0.95923126116395,0.3914675284177065,0.9593492625281215,-0.29472047043964267,-0.6736658355221152,-0.06627369858324528,-0.7614653347991407,0.4253896032460034,-0.23639828944578767,0.4089645850472152,-0.6073314277455211,-0.12075764965265989,-0.20004023239016533,-0.4968306212686002,0.5664569120854139,-0.7146231723017991,-0.03951227804645896,0.8273814548738301,-0.18737647263333201,-0.53242422407493,0.8229529932141304,-0.11655244929715991,-0.2666659406386316,-0.1524968850426376,0.33932930743321776,0.08530369959771633,-0.3018531696870923,0.900283245369792,0.5983398738317192,0.5298707326874137,-0.6469583874568343,-0.5725340419448912,-0.9009240567684174,-0.6194852134212852,-0.4630204178392887,-0.19345156149938703,0.9556435151025653,0.8633525702171028,-0.43613207805901766,0.7660031132400036,0.3851706343702972,0.78841069387272,-0.6203293236903846,0.6301315370947123,0.26819129195064306,-0.7159171714447439,-0.5833666864782572,0.12046579644083977,-0.906231977045536,0.41217097779735923,0.466363703366369,0.9366732728667557,0.5995043865405023,0.6862410437315702,-0.4456775262951851,-0.5353831998072565,-0.0919055319391191,-0.4423465011641383,-0.5164917507208884,0.6546574118547142,0.677124718669802,-0.08205386297777295,-0.23381709773093462,-0.8767381384968758,0.3434524266049266,0.5256457426585257,-0.7573231202550232,0.47619770746678114,-0.2634232887066901,-0.12450965633615851,0.2747212704271078,0.5605977601371706,0.44371193181723356,0.8782038982026279,-0.39964793715626,0.2569765979424119,-0.08166687656193972,0.06570021389052272,-0.5188920516520739,0.9403140638023615,0.2277762615121901,0.13181967847049236,0.47008207766339183,0.6873879437334836,-0.1025628293864429,-0.989339791238308,-0.8572795442305505,0.8271465892903507,0.5898500992916524,0.38155859569087625,0.03869953751564026,0.03816894022747874,-0.5101589458063245,0.0689275674521923,-0.11524235596880317,-0.5585134793072939,0.792420316953212,0.7818957953713834,-0.1354871508665383,-0.8133035819046199,0.9777376833371818,0.7180986646562815,0.5057126237079501,-0.9507267223671079,0.4635404981672764,-0.5142645239830017,-0.7389012267813087,0.6654070671647787,0.08104299800470471,-0.30232910765334964,0.53215441852808,0.5569360121153295,-0.6460462571121752,0.6262582917697728,0.9851257693953812,0.8769941870123148,-0.4626377122476697,0.8480290248990059,0.4903338151052594,-0.6565168951638043,-0.39077891409397125,0.1660020798444748,0.3627111753448844,0.7336802701465786,0.9353747675195336,-0.26893764873966575,-0.5592071679420769,-0.9882865720428526,0.5838266620412469,-0.5287947887554765,0.9479831168428063,-0.33084922563284636,0.5023299064487219,0.7663050391711295,0.7152778152376413,0.24946922762319446,0.7022653552703559,0.9441849864087999,-0.9408015953376889,0.6492134584113955,-0.7199601768516004,0.3025422948412597,-0.470263444352895,0.23719090409576893,0.7792567512951791,-0.02584871556609869,-0.08405281649902463,0.6132838744670153,-0.8889847728423774,-0.6656534103676677,-0.4972189352847636,-0.31296626990661025,0.651048525236547,0.6441145618446171,0.8665529852733016,0.02913217432796955,-0.8463446325622499,-0.6322252037934959,0.5693094371818006,0.20034776302054524,-0.7754622334614396,-0.09769526915624738,-0.1014963323250413,0.1680306256748736,-0.31807221844792366,-0.6742176050320268,0.8870463729836047,-0.5057968753390014,-0.8472794620320201,0.5260231136344373,-0.2878919611684978,-0.9811408082023263,-0.24686644319444895,0.6966355103068054,-0.9348453525453806,0.39467563293874264,-0.3376212390139699,-0.8739738049916923,0.6918396824039519,-0.21901899436488748,0.23679505661129951,-0.8120931121520698,0.6330522266216576,0.03417773870751262,0.3328488264232874,-0.3818489508703351,-0.6767979254946113,-0.9911976284347475,0.09821262769401073,0.26474588410928845,-0.7106059924699366,-0.13587076356634498,-0.9106660075485706,-0.8228249875828624,-0.08056288631632924,0.4096139706671238,0.0791407860815525,0.5028741448186338,0.8524350998923182,-0.9426884348504245,-0.19202350731939077,0.9356377106159925,-0.4303230759687722,-0.9800876383669674,0.26403498742729425,0.9552966663613915,-0.4897250500507653,-0.9946139641106129,-0.3164599104784429,0.16231323266401887,-0.21278489334508777,0.1964118331670761,0.1455707447603345,-0.28626820258796215,0.7938357498496771,0.30447334004566073,-0.7491080509498715,-0.434878493193537,0.7004564725793898,0.8102062842808664,-0.4300673329271376,0.8850662391632795,0.04957664618268609,-0.37421773187816143,0.9487390099093318,0.9113000300712883,0.073998489882797,0.9992514466866851,0.5067237797193229,-0.9415343687869608,0.11817081086337566,0.5078509706072509,0.5704537108540535,-0.9927671966142952,0.7408484574407339,0.9254309330135584,-0.6735503999516368,-0.036658539436757565,-0.7969398619607091,-0.38089332869276404,0.8777156658470631,0.9632899658754468,-0.6634743208996952,0.27928127394989133,-0.07227361854165792,-0.17315940093249083,-0.6588939856737852,0.05735268956050277,0.5135707268491387,0.5478286980651319,-0.6078912750817835,0.6577433221973479,0.7999688652344048,-0.034656182397156954,0.6817099871113896,0.8873937092721462,-0.1760550308972597,0.11237064888700843,0.5985229518264532,0.3116753310896456,0.7827640930190682,-0.5657762130722404,0.6101943412795663,-0.8704003333114088,-0.006415582727640867,0.5608696979470551,0.04508314933627844,-0.07133670104667544,0.7821492156945169,-0.9885542788542807,0.8882459355518222,0.08936973428353667,-0.34473002795130014,0.7633893135935068,0.6772240060381591,0.915896100923419,-0.6353759765625,0.4769559889100492,-0.578869033139199,0.47282985830679536,0.11878294497728348,-0.5928570469841361,0.7672866736538708,0.5169792189262807,-0.7802600176073611,0.2604398583061993,0.6407980732619762,0.5276514627039433,0.007071211002767086,0.5560545930638909,0.43297280836850405,-0.006764298304915428,0.21355285681784153,-0.8858447098173201,0.7539890646003187,-0.7175564710050821,-0.7463655830360949,-0.7078239279799163,0.5848152586258948,-0.31442439556121826,-0.0700752167031169,-0.7746541765518486,0.6499389177188277,-0.4006678992882371,0.20869551179930568,-0.4891259870491922,0.010448814369738102,0.6070811953395605,-0.5458070407621562,-0.4178002756088972,0.9718890944495797,0.8648432279005647,-0.07585045136511326,0.07314846850931644,0.21811469551175833,-0.6655200654640794,0.49169173184782267,0.5848041051067412,-0.5941665787249804,-0.171718489844352,0.8204113366082311,0.06597272818908095,0.1813066629692912,-0.4395634913817048,-0.5188423367217183,-0.6637599752284586,-0.0822039027698338,0.9660228481516242,0.779173640999943,-0.8015835168771446,-0.8748667677864432,0.5532380859367549,0.06137591740116477,-0.11701943539083004,-0.6407642201520503,0.13511567283421755,-0.7132297363132238,-0.6005269973538816,-0.6965992380864918,0.8424330898560584,0.9132302789948881,-0.3440811587497592,-0.9885287173092365,0.2220909553579986,-0.3080141828395426,-0.7221708139404655,-0.020042231306433678,0.7382305231876671,0.26288171857595444,-0.48660816391929984,-0.8968379595316947,0.35520505625754595,0.46503514191135764,0.4362571560777724,0.89073192095384,0.5691632088273764,-0.8102251314558089,0.4705378394573927,-0.9076783028431237,-0.9987636730074883,0.4249431793577969,-0.5332151418551803,-0.11747008515521884,-0.81255345325917,0.7274413383565843,-0.10723201464861631,-0.9543407689779997,0.21848537912592292,0.48447277303785086,0.35400889441370964,-0.24656787468120456,0.3868847987614572,0.5412551667541265,0.5201073391363025,-0.611202563624829,-0.38646094454452395,0.263646577950567,-0.9386538621038198,-0.5227756649255753,0.11702031129971147,-0.7100997800007463,0.17199680721387267,0.6394349625334144,0.4163963505998254,-0.4705590349622071,0.4789802646264434,0.6959740053862333,0.9319630702957511,-0.1891041286289692,-0.9289511195383966,0.3172042481601238,-0.798837895039469,-0.23869673209264874,-0.47395223984494805,0.6708497265353799,0.3896043342538178,0.004061502404510975,0.7918504350818694,0.6063352385535836,-0.5882398304529488,-0.003567194100469351,-0.7659509815275669,0.43487675208598375,-0.962687112390995,0.7536940388381481,-0.6742400317452848,-0.4434946635738015,-0.3371833823621273,0.09214515797793865,0.5642804275266826,0.3136297478340566,0.5992758376523852,0.7005146984010935,0.8882312281057239,-0.708681158721447,-0.9678276940248907,-0.9797697896137834,-0.15579249151051044,0.8735812646336854,-0.13122488372027874,-0.020903365220874548,-0.10050321975722909,0.13794759521260858,-0.7188400435261428,0.6841924581676722,-0.18508058600127697,0.014303495641797781,-0.2889535240828991,-0.30378454830497503,-0.5391408330760896,0.5267321509309113,-0.3439793884754181,-0.7984253405593336,-0.5848989016376436,-0.7685145512223244,-0.8201060686260462,0.6843628501519561,0.7702097021974623,-0.21971012838184834,-0.5698609035462141,-0.5046920641325414,0.07797302585095167,-0.4584228591993451,-0.7550509478896856,0.7272732220590115,0.5987711679190397,0.056454905308783054,0.23924024170264602,-0.32925807125866413,0.08800200559198856,-0.1503390036523342,-0.48317825235426426,-0.6041305363178253,-0.018994346261024475,-0.7169312313199043,-0.889441438484937,-0.7587417745962739,0.02255535451695323,0.440052870195359,0.38181867683306336,0.8088336498476565,0.8564535262994468,0.8710723253898323,0.7938591907732189,-0.5775830051861703,0.9623727826401591,0.23896057857200503,-0.5760969165712595,0.8022569613531232,0.5541201182641089,-0.15960815735161304,-0.1427142797037959,-0.852306641638279,-0.21389668202027678,-0.8141299211420119,-0.3364190845750272,0.9630058114416897,0.11319184489548206,0.25776149006560445,-0.18974250415340066,0.8128770757466555,0.8636040152050555,-0.8920104750432074,0.4626034670509398,-0.7150394874624908,0.5625844961032271,-0.31795354979112744,0.3254489218816161,0.28847616678103805,0.9133034232072532,-0.49501275829970837,0.7017024178057909,-0.728560599964112,-0.7579423580318689,0.5174053683876991,0.5740445451810956,-0.1658430858515203,0.6068594749085605,0.10238359542563558,-0.9924666443839669,0.06566651398316026,0.390598620288074,-0.641441848129034,0.5409319968894124,0.19343981286510825,0.5322113796137273,0.41248276783153415,-0.25204681139439344,0.7084722202271223,-0.4704350917600095,-0.8951173722743988,0.28970412351191044,-0.8945950702764094,0.33558616368100047,0.8017670651897788,0.1409363728016615,0.31893414445221424,0.7495725238695741,0.531649976503104,-0.877257352694869,0.5838070921599865,0.07470123330131173,0.011899957433342934,0.8892647330649197,-0.6363209364935756,-0.4752091863192618,-0.6080137677490711,-0.16233559418469667,-0.97120076790452,-0.8656880124472082,-0.649474308360368,-0.40839017229154706,0.942498201970011,-0.20813356153666973,-0.046317243948578835,-0.33887747628614306,0.3977839509025216,-0.27068252582103014,-0.20469961129128933,-0.9767738482914865,-0.8993064304813743,-0.23677328182384372,0.7009743079543114,-0.590559842530638,-0.9580439142882824,-0.29739255364984274,-0.39269437547773123,0.8345940141007304,0.6248678234405816,-0.6989723844453692,0.31220758939161897,-0.08568080281838775,0.03391210874542594,0.09121521143242717,-0.2915420620702207,-0.7852737363427877,-0.5132932779379189,0.14679853385314345,0.49213432101532817,0.8011379027739167,-0.4077884592115879,-0.5958593958057463,-0.6832027556374669,-0.6038435446098447,-0.7795669417828321,0.07773237116634846,0.008027651347219944,0.9960909876972437,0.13379671704024076,-0.248999266885221,0.467276856303215,0.8260572236031294,-0.9882876980118454,0.6035216506570578,-0.25036868965253234,-0.8884137501008809,-0.8020703429356217,-0.7231360948644578,0.3962806253693998,0.8748247302137315,0.649932389613241,-0.5906462129205465,0.36108291149139404,-0.4137381324544549,-0.7197115141898394,-0.6172565575689077,-0.15133687062188983,-0.2005074443295598,-0.4562584995292127,-0.9169786851853132,0.8529756129719317,-0.42655918281525373,0.06830775318667293,-0.3108928818255663,0.753292968031019,-0.8976514306850731,-0.47696758387610316,0.24539973447099328,0.5953473490662873,0.8265559868887067,0.7350319302640855,-0.2950388086028397,0.04277599463239312,0.7019106950610876,-0.753349952865392,0.45682801958173513,0.48390680411830544,-0.2507107141427696,-0.8280172916129231,0.08790055057033896,0.3311555376276374,-0.9947162736207247,-0.007014926988631487,-0.250968633685261,-0.5282857432030141,-0.97626929031685,-0.5662451479583979,-0.2786634834483266,0.9158098031766713,-0.7879555341787636,-0.797350159380585,-0.1076776459813118,0.43427704414352775,-0.46757431607693434,-0.6423019026406109,0.21356701804324985,-0.12164485268294811,-0.2974106497131288,-0.2517891130410135,0.51021638372913,-0.120223477948457,-0.499083845410496,0.08823294378817081,0.4282242520712316,-0.5310086933895946,0.24845486227422953,-0.3377612461335957,0.049311138689517975,0.13263717433437705,0.09185309521853924,-0.00237818481400609,0.5186102050356567,-0.26069114822894335,0.004855358973145485,0.42304662987589836,0.6261147684417665,0.05674845911562443,0.6205538976937532,-0.7073313845321536,0.01729230908676982,0.040788144804537296,0.8460052940063179,0.5588429891504347,-0.7768460428342223,-0.7550278431735933,-0.9251856524497271,0.28062421502545476,0.5850866646505892,0.0623715166002512,0.4820285504683852,0.16531121032312512,0.7011960693635046,0.9070134819485247,0.5951099982485175,-0.3557064631022513,-0.7225961093790829,-0.43976721400395036,-0.8742417297326028,-0.8813199973665178,-0.5797948315739632,0.5181001368910074,-0.4499061401002109,0.4066762370057404,-0.2526333420537412,-0.2598715606145561,-0.24817619239911437,-0.732787711545825,-0.00945723196491599,0.002851883415132761,0.28349848883226514,-0.8000148488208652,0.24011910147964954,-0.7238589869812131,0.7560169664211571,-0.9802240049466491,-0.40279392432421446,0.40721726045012474,0.624797782395035,-0.5930403620004654,-0.6734197582118213,-0.41677243262529373,-0.4237892064265907,0.9067479860968888,0.04668860603123903,-0.4194458667188883,-0.17981241224333644,-0.41360678616911173,0.3214360265992582,0.5227968306280673,0.3199669090099633,-0.027530478313565254,-0.9803421017713845,-0.7360012857243419,-0.6345497006550431,0.1008367114700377,0.9119367925450206,0.3303754245862365,0.49164696130901575,0.5992497317492962,-0.2843376467935741,0.975203528534621,0.9967639888636768,-0.06556300725787878,-0.8168340581469238,-0.7073487644083798,0.15325532900169492,-0.7781822239048779,-0.3880183701403439,-0.0736385309137404,0.7689859443344176,-0.6288591530174017,-0.3420614153146744,0.3494136477820575,-0.6797052412293851,0.7249960056506097,-0.1443637376651168,0.08811538526788354,0.09603173425421119,-0.05317978374660015,0.8692433200776577,-0.13267922634258866,0.03825484914705157,0.8644952629692852,0.1521254419349134,0.047500803135335445,-0.8725729691796005,-0.33426383836194873,0.9176261015236378,0.33830365631729364,-0.6901794942095876,0.6877229288220406,-0.3239025557413697,0.4646320343017578,-0.1150315199047327,0.8489086013287306,0.4083608272485435,0.33796531800180674,-0.8094325573183596,0.9747910047881305,-0.5025744750164449,0.9002504609525204,-0.7577778939157724,0.6935192584060133,-0.633232622873038,0.8380211582407355,-0.4102771827019751,0.41417467780411243,0.09155895095318556,0.9816696378402412,0.1664582146331668,0.8096892540343106,0.8576426180079579,0.6821343321353197,0.35913111502304673,-0.6627471088431776,-0.6966113303788006,-0.6649134457111359,-0.3654533242806792,-0.7997726136818528,-0.21080151153728366,0.8257328178733587,-0.8032905850559473,-0.9293050155974925,0.6132498877122998,-0.21621564868837595,0.47922598756849766,-0.29524922790005803,-0.8360050334595144,-0.18719449173659086,-0.6720241736620665,0.5206131720915437,-0.7504828497767448,-0.12274714559316635,-0.08694524737074971,-0.7123944191262126,-0.8190460656769574,-0.6514454237185419,-0.19801474688574672,0.9119228199124336,-0.6577261802740395,-0.6349597563967109,-0.5266842874698341,-0.9643068164587021,0.9630883210338652,0.5543044377118349,0.16670945566147566,0.7732293959707022,0.15884093521162868,0.4484333489090204,0.2519258731044829,0.8714770255610347,0.003822733648121357,-0.165569799952209,-0.09719749866053462,-0.08547187875956297,0.4525063228793442,0.30290824407711625,0.3876431337557733,0.17354836221784353,0.16449080454185605,0.3674751613289118,-0.17973249964416027,-0.7594679961912334,-0.7566834795288742,-0.7780609279870987,-0.9709795606322587,-0.0828913189470768,-0.48546958761289716,-0.3686260296963155,0.74876325763762,0.6744606336578727,0.9695463012903929,0.37029615556821227,0.6117455526255071,0.40218457393348217,0.16981223598122597,-0.6677470910362899,-0.09237683285027742,-0.6645713495090604,-0.6006271499209106,-0.891767802182585,-0.7436218126676977,-0.403029331471771,-0.058530105743557215,0.16761377593502402,-0.4144355393946171,0.03600997384637594,-0.8481802851893008,0.19530280865728855,-0.5200461163185537,0.8464748575352132,0.21196557907387614,-0.6855769674293697,-0.3284236751496792,-0.483952266164124,-0.43159758672118187,-0.252123252954334,0.5888448101468384,-0.7604141291230917,-0.1724781901575625,-0.21947184344753623,-0.45317091001197696,-0.27299355063587427,0.6139238616451621,0.2672277460806072,0.5179320434108377,0.6184127135202289,0.606218796223402,0.7851604879833758,0.8229048028588295,0.0731048840098083,-0.7485661283135414,0.8100229250267148,-0.08688705880194902,-0.5397243774496019,0.8694616258144379,0.7957769096828997,0.4847620641812682,-0.15440780157223344,-0.09138767793774605,-0.8309222557581961,-0.7712388094514608,-0.35371966985985637,0.6342135090380907,0.2878423137590289,0.9762579412199557,0.35611515352502465,0.04324814863502979,-0.7069782628677785,0.5261090467683971,-0.7246608044952154,0.7690538307651877,0.8540416252799332,-0.7774943900294602,0.903026367072016,-0.03221191372722387,-0.5221927994862199,0.5915225334465504,0.6135498769581318,-0.7449431018903852,0.2595228534191847,-0.09176021348685026,0.49110039602965117,-0.6918668439611793,-0.9776390702463686,-0.044768620282411575,0.14547767909243703,-0.3615590911358595,0.9467413425445557,0.9240697342902422,-0.22750116558745503,0.053947302512824535,0.8505769702605903,0.11644001631066203,0.10988050838932395,-0.7377666239626706,-0.9285546676255763,-0.3189476430416107,0.11200429638847709,0.0759075777605176,-0.0675267861224711,0.45434338646009564,-0.6695617772638798,0.5493209380656481,-0.5415468239225447,0.7247582697309554,0.2895450205542147,0.5271630957722664,0.8923333683051169,0.4850287539884448,-0.4548323508352041,-0.031626186799257994,0.47488408628851175,-0.5138597516342998,0.6690338449552655,0.16626624017953873,0.31346022663637996,-0.2135615535080433,-0.6474463324993849,-0.40006755478680134,-0.34229646530002356,0.607491425704211,-0.6623877538368106,0.8960735239088535,0.5453471341170371,0.07001872779801488,0.7205606321804225,-0.6690970747731626,0.8707406353205442,-0.7185602830722928,-0.5886221537366509,-0.35390257462859154,0.46198195684701204,0.2685079565271735,0.7954698260873556,-0.29073005821555853,0.46935584489256144,-0.6496093054302037,-0.9746167417615652,0.3042282569222152,-0.0063695660792291164,-0.13159976340830326,-0.05226009106263518,-0.40438341116532683,0.4541951445862651,0.2090962314978242,-0.4154803794808686,-0.1697061494924128,-0.4914998500607908,-0.31579040363430977,0.016526704654097557,0.5925907343626022,-0.855856244917959,-0.27000400610268116,-0.6276692813262343,0.0406700293533504,0.8580330153927207,0.779737317468971,0.3046579291112721,0.3938317680731416,-0.2925457591190934,0.40441422490403056,0.6799242896959186,0.6464465837925673,0.45766537031158805,-0.6989827658981085,0.5185382035560906,0.10379926860332489,-0.3415636206045747,0.9881132352165878,0.09487910382449627,0.801292382646352,-0.4641940789297223,-0.9499403182417154,-0.08448299346491694,0.8708069520071149,-0.5177251086570323,-0.08849341329187155,0.7828298667445779,0.6588012124411762,0.12587032187730074,-0.1768045723438263,-0.6671046395786107,-0.6532324911095202,0.7191174691542983,-0.7301656110212207,-0.03574580093845725,-0.5387223111465573,-0.8078462220728397,0.20642365235835314,0.278711776714772,-0.3079456523992121,-0.7004789845086634,0.2695157486014068,-0.2704371018335223,0.07782167987897992,0.29752745386213064,0.7367563913576305,-0.47854864643886685,-0.9980150223709643,-0.6183548774570227,-0.11044237716123462,-0.7057166593149304,-0.5710825040005147,-0.4307547421194613,-0.7326161661185324,-0.631030694115907,0.1464614332653582,0.3473386885598302,-0.5062846825458109,-0.7317072749137878,0.8131249020807445,0.7030026782304049,0.09136918373405933,0.13624880462884903,0.2803621762432158,-0.11054240120574832,0.027881009504199028,-0.409268784802407,-0.3173734680749476,0.13378810789436102,-0.7488621724769473,0.2927220235578716,0.4277817993424833,0.16677791764959693,0.8285035849548876,0.9669874464161694,-0.2913586753420532,0.21726526552811265,0.6080693928524852,-0.6182461176067591,-0.3191207079216838,-0.10909314593300223,-0.3390790713019669,0.16667480999603868,-0.5911227939650416,-0.9222786747850478,0.27193861920386553,0.9206003383733332,0.533453275449574,0.7709894212894142,0.1292382888495922,-0.05104395467787981,-0.4822765802964568,-0.5222029672004282,-0.3262424785643816,-0.1438358654268086,-0.16744221607223153,0.4339449997060001,-0.495742364320904,0.12121819099411368,0.5469103823415935,-0.052898386027663946,-0.9698660494759679,-0.6644947035238147,-0.12165653426200151,0.18490461818873882,-0.045904341619461775,0.7493134280666709,0.29179714946076274,0.3120396393351257,-0.2790262773633003,0.757400460075587,0.44997730664908886,-0.19747181236743927,0.7109307814389467,-0.502118709962815,0.12348048854619265,-0.30452463356778026,0.8324994021095335,-0.8392933933064342,-0.7823784565553069,0.7954197623766959,-0.8685607030056417,0.5971100851893425,0.9886642559431493,0.26930955424904823,-0.05770106567069888,-0.4123685169033706,0.23307357262820005,-0.11082091834396124,-0.5435201097279787,0.7847969625145197,-0.6871447935700417,0.5735299033112824,0.1376397106796503,0.7641407153569162,0.298353741876781,0.9396202336065471,-0.3035317314788699,-0.3899535625241697,-0.6637001181952655,0.6442206357605755,0.8764654844999313,0.11055930145084858,-0.45992918917909265,-0.5793608548119664,0.6134940763004124,-0.9608999025076628,0.16273054014891386,0.669841721188277,-0.7795065054669976,0.28994461242109537,-0.2183663584291935,0.8122988110408187,-0.4355803676880896,-0.7343911966308951,0.726378511171788,0.2218815041705966,0.7005598046816885,0.350894111674279,0.5323774083517492,0.8556108088232577,-0.13467291463166475,0.15704277716577053,0.6004207818768919,-0.18801452033221722,-0.6256420738063753,-0.5570531501434743,-0.41010213643312454,-0.4501485722139478,0.02348193246871233,-0.9457730744034052,-0.5703097800724208,-0.14056541305035353,-0.565481249243021,-0.42962490394711494,0.2616031668148935,-0.8160203481093049,-0.333929639775306,-0.1190106337890029,0.4962705709040165,0.5511478036642075,-0.519893110729754,-0.7516198833473027,-0.11965398117899895,-0.458037655800581,-0.6122818356379867,-0.1988609852269292,0.6676012058742344,-0.2740921229124069,0.68963732291013,0.14336318895220757,-0.5986958076246083,0.28893009200692177,0.1760318810120225,0.1887418939732015,-0.6887842668220401,0.7452964610420167,-0.4921328080818057,-0.5757616031914949,0.0569343944080174,0.712027168367058,-0.48421467235311866,-0.06900776969268918,-0.3737220442853868,-0.8676326191052794,-0.44198227813467383,-0.9018143080174923,0.21250555897131562,0.952688267454505,0.4175431220792234,-0.11602767650038004,0.5918030277825892,0.15413257339969277,0.47871591756120324,0.051629974506795406,-0.45825824327766895,0.01820615539327264,0.7034720699302852,0.48240348557010293,-0.9387052948586643,0.007452129386365414,-0.47568465350195765,-0.5798441478982568,-0.560632205568254,0.2651971853338182,0.8696049069985747,-0.4501092475838959,0.8519742335192859,-0.6557846441864967,0.17094031954184175,0.38070995220914483,0.6921052862890065,0.6636332529596984,0.7749102599918842,-0.33962455624714494,-0.32810894353315234,0.3122785910964012,0.7567096599377692,-0.431145281996578,-0.757210535928607,-0.0026817498728632927,-0.42834635451436043,-0.21987364999949932,0.4998483285307884,-0.8710338529199362,0.29053028486669064,-0.8483267021365464,-0.29949904372915626,-0.973334782756865,-0.5219729682430625,0.3212847043760121,-0.4015794894658029,0.6687880074605346,-0.04258414451032877,0.7781410664319992,0.660598864313215,0.22370298858731985,-0.6697229780256748,0.002230555284768343,0.5180137013085186,0.4058198528364301,0.8362620179541409,0.6677096136845648,0.9631408154964447,-0.8502565589733422,0.06703076511621475,-0.27385248616337776,0.28041962534189224,0.08823457779362798,-0.49912955006584525,0.5398188885301352,-0.26530375936999917,0.632929147221148,-0.42784238886088133,-0.8607250233180821,0.8864578306674957,0.3272486748173833,-0.9618163765408099,0.5434636292047799,0.09892173996195197,-0.48481063917279243,-0.25964988209307194,0.947096117772162,0.2751292260363698,0.7590099037624896,0.5698736496269703,-0.5299986433237791,0.7457050448283553,-0.5877217915840447,0.006199137307703495,0.3135196976363659,-0.33205530932173133,-0.41152107948437333,-0.010772465262562037,0.6576685863547027,-0.5233716163784266,-0.4878116734325886,0.0911419503390789,-0.290871340315789,-0.4370618346147239,0.04784448677673936,-0.32776871882379055,-0.8631823710165918,0.9422173025086522,0.5714492131955922,0.18458337476477027,-0.052990796975791454,-0.1525782961398363,0.8464609943330288,-0.03244439512491226,-0.4414477185346186,-0.9085523094981909,0.8074417705647647,0.3833879427984357,0.24377024685963988,-0.5131978127174079,0.04097394738346338,0.02341538853943348,-0.6895035663619637,-0.6262657484039664,0.8732145940884948,-0.6580813084729016,0.040226493030786514,-0.5219054878689349,-0.42532954830676317,0.03832161286845803,-0.04528452316299081,0.9137906557880342,-0.6399666955694556,-0.9324197941459715,0.7157482337206602,-0.8191270548850298,0.5995648079551756,0.8849744698964059,0.2901095086708665,-0.8316814624704421,-0.44931797683238983,-0.05913606192916632,0.8356310408562422,-0.5189583385363221,-0.6887033344246447,-0.23135074973106384,-0.7947388738393784,-0.4163068006746471,-0.7070192946121097,0.04039846593514085,-0.4719434790313244,-0.806880324613303,-0.30921471724286675,0.6248058434575796,0.0255995262414217,0.8675347757525742,-0.6957708210684359,0.8767207791097462,0.41645939461886883,0.9163380232639611,0.23906268132850528,-0.23897609720006585,0.8714054306037724,0.16027398267760873,0.5735493781976402,-0.9859897647984326,0.6696591465733945,-0.33225425565615296,0.33950030663982034,0.8234115415252745,0.6798725272528827,-0.6324058286845684,0.6428592875599861,-0.8905226760543883,-0.8151116189546883,-0.18551821075379848,-0.7879369407892227,0.7275947784073651,-0.34140231739729643,0.8101103948429227,0.7007128507830203,0.06809610687196255,0.8453317419625819,-0.5491146524436772,-0.013637488707900047,-0.25225623045116663,0.48486410453915596,-0.3124906523153186,-0.805204370059073,-0.41928526666015387,-0.2613427136093378,-0.3759112162515521,-0.13764390582218766,0.33870614785701036,0.2563436278142035,-0.013885520864278078,0.4848913880996406,0.7668784684501588,0.7816584156826138,0.8669312512502074,-0.40868576522916555,-0.8716736850328743,-0.6438328316435218,0.5746091189794242,-0.4070128733292222,-0.27287792041897774,-0.35206682700663805,-0.31571631180122495,0.4757389072328806,0.7496707220561802,0.0810077846981585,0.18434248119592667,-0.4856975330039859,-0.8107202891260386,0.7334699584171176,0.24676885595545173,-0.7456926903687418,0.962183446623385,0.19963944191113114,0.904887855052948,-0.6452910052612424,0.8080899082124233,-0.21056777285411954,-0.013659974560141563,-0.06812970479950309,-0.3901262264698744,0.9833077671937644,-0.08463089540600777,-0.10405911831185222,0.7431406434625387,0.051366557367146015,0.19489418528974056,-0.24533827137202024,-0.5137677555903792,0.3566682697273791,0.6578154116868973,-0.9848399655893445,-0.7382647157646716,-0.7728521884419024,-0.6067172028124332,-0.046490345150232315,-0.9136135610751808,-0.38005308667197824,0.4413786670193076,-0.592037190683186,-0.7104729856364429,0.08290307456627488,-0.8353439620696008,-0.9338525966741145,-0.09655128046870232,-0.06848148535937071,0.24012438720092177,0.5712867099791765,-0.37018961552530527,-0.43781603407114744,-0.47977139987051487,-0.935887343250215,-0.9392298222519457,0.8341433340683579,-0.5114219710230827,0.1709730844013393,0.48859462700784206,0.8355907117947936,0.5807857671752572,-0.8471909379586577,-0.01801314391195774,-0.3663928243331611,-0.5509583656676114,0.2706524641253054,0.7461903765797615,0.9430783200077713,0.22335281781852245,-0.427520505618304,0.3623321386985481,-0.8045496749691665,0.7055792324244976,-0.9381272182799876,0.348772497382015,-0.11249340046197176,-0.8265153085812926,0.18045991426333785,0.5679293125867844,-0.6134647252038121,-0.6361727514304221,-0.41202883841469884,0.3101899651810527,-0.011244118213653564,-0.35940470127388835,-0.9278835621662438,-0.282934220507741,-0.5214658258482814,0.6396845993585885,0.15508008981123567,-0.99099001288414,0.8149951528757811,-0.04062382085248828,0.02349928766489029,0.6200612848624587,-0.10374661022797227,-0.5148248048499227,-0.4950585230253637,0.817259085830301,-0.6430934704840183,-0.7566292406991124,-0.2355567952618003,-0.20518646528944373,-0.368032259400934,-0.582928353920579,0.14762498438358307,-0.7515950105153024,0.930379515979439,0.552481041289866,-0.24254069942981005,-0.7497316347435117,0.014183837920427322,-0.18115762434899807,0.8934217756614089,-0.5314330905675888,-0.8986996039748192,0.7604100406169891,-0.903919143602252,0.14745869301259518,0.026270505506545305,-0.7026081853546202,0.40035280585289,0.6925272531807423,-0.535592689178884,-0.3462361814454198,-0.7504749707877636,0.42915891483426094,-0.48547741305083036,-0.3938780380412936,-0.4756134245544672,-0.09041640721261501,0.7942426460795105,0.6592554873786867,0.6213364801369607,0.921823600307107,0.8991263154894114,0.8674961673095822,-0.12947839871048927,-0.3686481909826398,-0.56896598264575,0.1134233484044671,0.5304239192046225,0.42750578792765737,0.7179109542630613,0.25453215930610895,0.14588262233883142,-0.9149480583146214,0.4770927228964865,-0.8931043902412057,-0.2126652030274272,0.4341177614405751,0.12003840273246169,0.7469652551226318,-0.8289588815532625,0.5558600588701665,-0.10484782420098782,0.7687008380889893,0.057188103441148996,-0.9056055317632854,-0.2673237598501146,-0.2758675990626216,-0.8563530244864523,-0.9250118196941912,-0.7053960445336998,0.9247915484011173,0.5354977864772081,0.1417014398612082,0.207757159601897,0.6325825415551662,0.8142581209540367,-0.3069723513908684,0.27351051149889827,0.13705677166581154,-0.7760700052604079,-0.8789632669650018,-0.39525767881423235,0.2773039350286126,-0.29774300241842866,0.7056136503815651,-0.9427481410093606,0.587634842377156,0.4816455114632845,0.08967414917424321,-0.22954259580001235,-0.9894900391809642,-0.3783338274806738,0.767623770982027,0.44349383655935526,0.2762122107669711,-0.8147730426862836,-0.820705275516957,-0.5099972160533071,-0.615413177292794,-0.4892610260285437,0.12266398034989834,0.0904375547543168,0.6294964556582272,-0.994071458466351,-0.22443763352930546,0.07547081215307117,0.03941200114786625,0.5308308727107942,0.42348297126591206,-0.22709516808390617,-0.6817691256292164,0.9902660623192787,0.034792990889400244,0.41942561278119683,-0.5672439960762858,-0.9195664655417204,-0.057522423565387726,0.1780466018244624,0.6250972007401288,0.8704995666630566,0.09171413024887443,-0.16814739350229502,-0.2731194347143173,0.8730320362374187,0.14080688077956438,0.8802571431733668,-0.022268018685281277,-0.2561558922752738,0.1109224702231586,-0.7894595866091549,0.8782251011580229,0.3430795483291149,-0.1992134815081954,-0.9061548854224384,0.10195575142279267,-0.6319713080301881,0.5957699911668897,-0.2740232674404979,-0.8581539979204535,0.7375749042257667,-0.6782418061047792,-0.12952689174562693,-0.7354131727479398,0.42017372883856297,-0.09772721538320184,-0.47936129523441195,-0.43293001782149076,0.2815086180344224,0.30263903830200434,0.4961995589546859,0.6239434662275016,0.1732903872616589,0.5343344160355628,0.9088687477633357,0.7569095520302653,-0.29945916030555964,-0.49736081110313535,-0.2888304917141795,-0.5989372185431421,0.4858818603679538,-0.9308098889887333,0.6290469248779118,0.718251611571759,-0.027546545024961233,-0.16314341593533754,-0.019304028246551752,-0.7119221775792539,0.10219017183408141,-0.4243261944502592,-0.7340236837044358,-0.8736349232494831,0.8947449331171811,-0.7052575158886611,-0.9700229102745652,-0.13750889338552952,-0.9102533957920969,-0.14314205758273602,0.5858188662678003,-0.7228452078998089,0.9157393020577729,-0.7166049708612263,-0.038951112888753414,0.8463691244833171,0.9953558119013906,0.775209192186594,-0.6312002213671803,0.47114909952506423,-0.36921926215291023,0.5783755239099264,0.7439686292782426,-0.228938948828727,0.33406672393903136,0.901859637349844,0.8751395530998707,0.25403530476614833,0.9339323411695659,0.5607616803608835,0.5504541010595858,-0.4266896080225706,0.11618628399446607,0.796058654319495,0.352080091368407,-0.9084209967404604,-0.6777601558715105,-0.22200843412429094,0.044446142856031656,0.6562321241945028,0.5102412048727274,-0.2707404433749616,-0.19874934619292617,0.9539914885535836,0.34298273641616106,0.029763792641460896,-0.8703571809455752,0.33326974231749773,-0.337911874987185,0.19981921650469303,-0.9350300147198141,-0.7906726370565593,-0.16269577154889703,-0.5825623208656907,-0.711199791636318,-0.7326718689873815,0.2876311060972512,0.6039689797908068,0.01097551453858614,-0.15737854596227407,-0.730817895848304,-0.25252764485776424,0.6777399047277868,-0.6807072637602687,0.7022702512331307,-0.7372989514842629,0.34480751352384686,0.7861108109354973,0.003011117223650217,0.056641720701009035,-0.2800612198188901,-0.4487654846161604,-0.3828677632845938,0.5859953546896577,-0.30227227322757244,-0.6574261542409658,-0.7360494867898524,0.11431947583332658,0.6117535126395524,0.08283921936526895,0.018698089756071568,0.10424615303054452,0.1539341970346868,-0.33289315178990364,-0.2914741081185639,0.4895536904223263,0.5519899833016098,0.07092706207185984,0.5911185680888593,-0.10872524790465832,-0.46504640160128474,-0.895377688575536,0.9247471271082759,0.9544332250952721,0.22351108212023973,-0.8017759444192052,0.7107333219610155,-0.7938407678157091,-0.3816857263445854,0.6558072119951248,-0.045618349220603704,-0.6896037976257503,0.776738999877125,0.7257556789554656,0.15458283200860023,0.7564329300075769,0.728273288346827,-0.7446278491988778,0.63979790546,0.8701659156940877,0.5747128119692206,0.40861052740365267,0.26789427921175957,-0.5112539753317833,0.05190206412225962,0.3131716107018292,0.7153290621936321,-0.7420718679204583,0.9492265228182077,0.8411741154268384,0.9353587096557021,-0.8311574710533023,-0.2694859388284385,-0.7985440222546458,-0.22442605020478368,0.16494980873540044,-0.6031797742471099,0.4972999827004969,-0.006616582628339529,0.007027395069599152,-0.11773540871217847,-0.6407733098603785,0.5931567479856312,0.5873400010168552,0.6493777702562511,-0.918662226293236,-0.16054856358096004,-0.254115954041481,0.7308146739378572,-0.5418230039067566,0.3413198543712497,0.7863741545006633,0.9747105385176837,-0.03468884155154228,-0.9702683459036052,0.20370391989126801,-0.6565142953768373,-0.20194370578974485,-0.04448849894106388,0.1344975344836712,-0.9927147324196994,-0.5943958074785769,-0.07497447449713945,0.2727494048886001,0.5163111789152026,-0.31262655882164836,-0.37565636821091175,0.4022429441101849,0.21564270835369825,-0.7903927024453878,-0.024072350934147835,0.8069378770887852,-0.2419379041530192,-0.8150606020353734,0.350944431964308,0.8250910672359169,-0.7923024408519268,0.42870718985795975,-0.6877624895423651,0.9436608175747097,-0.6472330666147172,0.1328959404490888,0.1471227454021573,0.45610512094572186,0.4595420891419053,-0.10298019833862782,0.09683017060160637,-0.6020132792182267,-0.6892039435915649,-0.4441996328532696,-0.7466408954933286,-0.33386100083589554,-0.48910593055188656,-0.13470091484487057,-0.6112447320483625,0.8492015046067536,-0.45326918503269553,0.06436237646266818,0.9029443208128214,-0.5012946184724569,-0.14697115402668715,0.5389164825901389,0.08505568886175752,0.6321860067546368,-0.5749482396058738,-0.8770765252411366,-0.2561066737398505,0.6199270337820053,-0.5355478278361261,0.22116775577887893,0.2841804879717529,0.26236050482839346,0.6021888139657676,-0.2786035002209246,0.030362979974597692,0.2390970247797668,-0.4633984356187284,-0.9003134565427899,0.51576410792768,0.24982103472575545,-0.1181596270762384,-0.1560475886799395,0.10387035785242915,0.3623465048149228,0.2660040403716266,0.06347012845799327,-0.7536775567568839,-0.672591932117939,0.25645297626033425,0.13011818286031485,0.9834007723256946,-0.20688994973897934,-0.18281095614656806,0.2688178508542478,0.058552656788378954,-0.8695800388231874,-0.9149315585382283,0.8910686704330146,0.24990643141791224,0.3123166882432997,0.26737443543970585,-0.15868825418874621,-0.44162534503266215,-0.2684288970194757,-0.06790894456207752,-0.28228873759508133,0.0704182586632669,0.3042090251110494,0.7184832547791302,-0.7916650068946183,0.30869277473539114,-0.9639923041686416,-0.08230424812063575,-0.9183395253494382,-0.4113885494880378,-0.013952563051134348,0.5656817173585296,-0.48499298794195056,0.5839654970914125,-0.1526287356391549,0.33536325115710497,-0.26034142123535275,-0.19614719226956367,0.2950545703060925,0.3198046088218689,-0.3304338273592293,-0.9896098924800754,0.8267260431312025,-0.8288071029819548,-0.6488710739649832,0.9291510637849569,-0.32026313804090023,0.21867233188822865,-0.09004830475896597,-0.30539638455957174,-0.290487858466804,0.9431812386028469,0.830677610822022,-0.7427935088053346,-0.2945649167522788,-0.49444150971248746,0.13359103398397565,-0.49124658992514014,-0.02340820338577032,-0.9143500332720578,0.8764027953147888,-0.6496760142035782,-0.32079901127144694,-0.8221195084042847,-0.9189749364741147,-0.8356882724910975,0.7554312078282237,0.4743792205117643,0.9961731974035501,0.3332301671616733,0.42152755707502365,-0.5138437855057418,-0.49534799065440893,-0.6595981591381133,0.6784376325085759,-0.8375187180936337,-0.45903126848861575,0.09164857910946012,-0.0034218630753457546,0.5850661611184478,0.2705601849593222,0.8032626858912408,0.2599260341376066,0.3500785161741078,0.13825809443369508,-0.7037911070510745,-0.30766506353393197,-0.1011134940199554,0.9154137442819774,0.40124710043892264,0.220858006272465,0.579144743271172,-0.9655617214739323,-0.4293886376544833,0.5938111594878137,-0.14968097070232034,0.9120483133010566,-0.7291770614683628,0.3834176901727915,0.45718961488455534,-0.9037931896746159,-0.057340281549841166,0.6233074702322483,-0.541922873351723,-0.04510239977389574,0.7912514368072152,-0.6382683971896768,-0.3953546602278948,0.6644511795602739,-0.9292537667788565,-0.09139217576012015,-0.21782499877735972,0.1862887446768582,0.6184892011806369,-0.6084705898538232,0.5073380004614592,0.9782231259159744,-0.28311767615377903,-0.0531438416801393,0.01642536884173751,-0.6216459590941668,0.14425623696297407,-0.37385503109544516,-0.2947896020486951,-0.01651723589748144,0.3455859199166298,0.8717540381476283,-0.16569442255422473,0.6564536839723587,0.9074301067739725,-0.7176260664127767,-0.34358013421297073,-0.6363736777566373,0.08606874104589224,0.044196723494678736,-0.8437508530914783,-0.5207502036355436,-0.603269464801997,0.3216341659426689,-0.5646883533336222,0.9785776375792921,-0.47160031320527196,-0.16025990899652243,-0.9149044970981777,0.8188946908339858,-0.4669604869559407,0.23991474136710167,0.2563376775942743,0.13429256016388535,0.3901850376278162,0.39186646416783333,0.929726704955101,-0.3284052633680403,0.27911729784682393,-0.23202296206727624,-0.8671178985387087,0.3485538880340755,0.86785350413993,-0.4404898127540946,-0.5592988785356283,0.07489110808819532,0.3310187985189259,0.566508708987385,0.7843804941512644,0.057424824219197035,0.8108622515574098,-0.8898042757064104,0.1627724813297391,-0.017349560745060444,0.1951534729450941,0.04098782176151872,0.5986281353980303,-0.28044598270207644,0.7338528460823,-0.19536089105531573,0.29511812422424555,0.605584314558655,0.7071414995007217,-0.02622282924130559,0.39144849963486195,0.5764525649137795,-0.6780890626832843,-0.45364178624004126,-0.5490804496221244,-0.4936663182452321,-0.23673604056239128,0.8205931279808283,0.3137292927131057,0.7749803285114467,-0.3871670034714043,-0.3067689766176045,0.32243063673377037,0.9158762190490961,-0.6831332892179489,-0.32005208963528275,0.5072632934898138,0.8266362673602998,0.006406859029084444,0.8625238807871938,-0.05831217998638749,0.7949624168686569,-0.6077134446240962,-0.450448757968843,0.8149958872236311,-0.9640617705881596,0.9652845803648233,0.060658381786197424,-0.87061049323529,0.22528870729729533,0.20606564870104194,-0.8889665207825601,-0.06665563490241766,0.01290955115109682,-0.6340495608747005,0.8035868825390935,0.1465159459039569,-0.5051490291953087,0.20118340058252215,0.8088451316580176,0.9447298273444176,0.0015712357126176357,0.5633186884224415,0.9954992020502687,0.16914440225809813,0.7110341647639871,0.40638527227565646,0.7863048235885799,-0.7089429888874292,-0.7317683142609894,-0.44994828337803483,0.6076404424384236,-0.934863795991987,-0.3246543947607279,0.5527170551940799,0.6835622359067202,0.4117857036180794,-0.9903925927355886,-0.12348462175577879,0.8063974021933973,0.5375294000841677,-0.5829100799746811,0.3965368662029505,0.9770044484175742,-0.48977223271504045,0.9372315835207701,-0.33471801597625017,-0.07427920261397958,-0.6826366628520191,0.7241241475567222,-0.9623877992853522,0.21552426647394896,-0.2715782271698117,0.36273203836753964,-0.6079336297698319,0.4043590039946139,0.9683141564019024,-0.2128486018627882,0.939281428232789,-0.5323733282275498,-0.7642874838784337,-0.6041941470466554,0.5944559872150421,0.8886830359697342,-0.25353515706956387,0.3628781330771744,0.4839007812552154,0.3290163232013583,-0.1568527827039361,0.11031110258772969,-0.8236349490471184,-0.2884257729165256,0.3897672099992633,-0.16993767814710736,0.6035971930250525,0.4375909003429115,0.6799395913258195,0.7463160865008831,-0.3267898103222251,0.23345543211326003,0.5543279736302793,0.40152640733867884,0.7795284977182746,0.6431619222275913,0.6113411011174321,0.13739826856181026,0.5634411950595677,-0.47959458641707897,-0.999801030382514,0.9077802379615605,-0.24900094885379076,0.3939923965372145,0.5676535638049245,0.24352195020765066,0.8706953646615148,0.847484668251127,-0.6507079163566232,-0.05189829831942916,-0.24135526083409786,0.5293893213383853,-0.7588311275467277,0.9618458487093449,0.7348510678857565,-0.2520069363527,0.892821897752583,-0.20352140301838517,0.49288538796827197,0.5006539905443788,0.8638949291780591,0.7033681883476675,0.10845264187082648,0.05999961122870445,-0.4621159331873059,-0.1299735764041543,0.3214016016572714,-0.9295157310552895,0.18752376781776547,0.23092353157699108,0.3722793310880661,0.4372399440035224,0.6199986641295254,-0.06546137062832713,0.6837453814223409,0.0806383672170341,-0.6773748029954731,-0.8376997848972678,-0.5780171141959727,0.1293616029433906,0.27032156474888325,-0.8456374388188124,0.03989675082266331,0.26470141811296344,0.8811564072966576,-0.3279621540568769,-0.7319572730921209,-0.10803655022755265,-0.6813006112352014,0.9350199499167502,-0.5919138649478555,0.5711910561658442,0.5529483086429536,0.4356070216745138,-0.9794252282008529,0.7035977020859718,-0.13176739821210504,-0.05636766413226724,-0.7187235597521067,0.04560759710147977,0.1324863601475954,0.5258536795154214,0.8732559424825013,0.8520461325533688,0.15982363326475024,-0.058730398304760456,0.23413618095219135,0.3804835509508848,0.7153272512368858,-0.06564479367807508,-0.014889539685100317,0.3675192925147712,-0.09144965326413512,0.03860669629648328,0.38457677513360977,0.07098177168518305,0.2650706176646054,0.27237673103809357,-0.10025920765474439,-0.0975148188881576,-0.8901209137402475,0.026920714881271124,0.47335890168324113,-0.8736394527368248,-0.6577637614682317,-0.5407299674116075,0.7481129886582494,-0.5422999626025558,-0.37666449416428804,0.23466896219179034,-0.5507501922547817,-0.5053119901567698,-0.4220306850038469,-0.45300657395273447,0.48757690330967307,-0.37370998226106167,0.7995229042135179,0.5058187642134726,0.19601273350417614,0.3718596985563636,-0.5527915549464524,0.6891666585579515,0.660772723145783,-0.3643205934204161,-0.3143697693012655,-0.6386778014712036,0.16854480607435107,0.870807833969593,0.1501761875115335,0.506934545468539,0.7621027054265141,-0.07379512395709753,-0.6543539739213884,-0.5681479461491108,0.5206338032148778,0.06403002329170704,-0.6543358112685382,-0.0032032299786806107,0.9460987532511353,-0.26153257163241506,-0.5652868403121829,-0.5194888939149678,0.3047125185839832,-0.9131808606907725,0.41613610554486513,0.011070993728935719,-0.2603951604105532,0.5806880127638578,0.6953058037906885,0.6133025237359107,0.11278863996267319,-0.461232484318316,-0.6051442632451653,0.029045176692306995,-0.1950489915907383,-0.400619228836149,-0.6631402592174709,0.9093963159248233,-0.5096589359454811,-0.9188102940097451,-0.05232670484110713,0.1428854251280427,0.20511174527928233,0.5023661819286644,0.26128800632432103,0.7437189933843911,0.2645378760062158,-0.756702717859298,-0.3781015877611935,0.06640477245673537,-0.6753518125042319,0.22543656919151545,-0.154475930146873,0.33037034794688225,-0.1753807500936091,0.4754645973443985,0.8045479389838874,0.513212411198765,-0.3214613483287394,-0.2589852958917618,-0.5835692253895104,0.2226296472363174,-0.35801951866596937,0.6547021097503603,0.6446268996223807,0.6847168458625674,-0.548313079867512,0.6464405255392194,-0.970366972964257,0.10423306189477444,-0.6284233760088682,-0.35715398099273443,0.08558267122134566,-0.8757198425009847,0.8333395132794976,0.5757876615971327,0.7233177083544433,0.2113138884305954,0.2632053797133267,-0.17963622929528356,-0.9042530907317996,0.6416804217733443,0.24673658050596714,-0.9507123013027012,0.012973174918442965,-0.7145808152854443,0.4448718447238207,-0.4145482978783548,-0.49552088789641857,-0.844191163778305,0.6609744639135897,0.8992506782524288,-0.3756961766630411,-0.9607893731445074,0.6503698495216668,0.6509429109282792,-0.8481159810908139,-0.758269399870187,0.47162294248118997,0.20636929431930184,0.0854255286976695,-0.7907132585532963,-0.2517997161485255,0.4826135281473398,-0.9397894334979355,0.45628902362659574,-0.9717026269063354,0.8536321450956166,0.2787677487358451,0.7505342504009604,0.43397821858525276,0.12573852902278304,0.7873028852045536,-0.26918497402220964,0.05746036069467664,0.8840416511520743,0.744218316860497,-0.27467805659398437,0.8248969251289964,-0.49308490147814155,0.2715128413401544,0.1513146790675819,0.5379219274036586,0.4333435236476362,-0.855679711792618,-0.8840922089293599,0.3404801902361214,-0.006975659169256687,-0.21342596458271146,0.17399108968675137,-0.3557195761241019,-0.7061363221146166,0.5235512224026024,-0.20654152007773519,0.15011876542121172,-0.6326655237935483,0.35632922826334834,0.2661517383530736,0.3796018208377063,-0.7125655920244753,0.7514635547995567,-0.07075228029862046,0.8431308679282665,-0.6702365926466882,-0.7058744030073285,0.7685231370851398,-0.09899202780798078,0.17963397270068526,0.6561284516938031,0.27607023622840643,0.6003967891447246,0.5666082119569182,-0.24968985095620155,-0.5838677119463682,-0.4488219851627946,0.3940795105881989,-0.401882806327194,0.8051420655101538,0.8507454912178218,0.3296190542168915,0.18207971984520555,-0.47589728562161326,-0.9002666403539479,0.768098967615515,-0.3248013951815665,0.2640035995282233,0.727511181961745,-0.4602526994422078,0.435492024756968,-0.08804155280813575,-0.12615317711606622,-0.37930474895983934,-0.24482344929128885,-0.29086267156526446,0.26614633295685053,0.4403632087633014,0.842512006405741,0.7683602967299521,-0.24396067624911666,-0.21779089281335473,-0.4967593536712229,-0.3243866069242358,-0.538700311910361,0.7615477074868977,-0.019621537532657385,0.6076142298988998,0.7388817765749991,0.35785935539752245,0.15691139549016953,0.032183184288442135,-0.4717709613032639,-0.5530952359549701,-0.7526315348222852,0.3812265037558973,0.3100169305689633,0.9806218147277832,-0.48621521703898907,0.3072921857237816,-0.12167851440608501,-0.8836289062164724,-0.14957792777568102,0.6976150311529636,-0.29611537186428905,-0.15494194068014622,-0.573702706489712,0.21176262386143208,-0.6094330954365432,0.9888653918169439,0.33268949249759316,0.5947795142419636,-0.8789661941118538,-0.8048092466779053,0.9471961087547243,0.8062172993086278,0.0017954050563275814,0.3112537427805364,0.7679305053316057,-0.4385526943951845,0.9031724920496345,0.20558402128517628,-0.8267987929284573,0.25635287445038557,0.18740851758047938,0.5498176561668515,0.5899579082615674,-0.9741739179007709,0.07311070198193192,-0.7943511730991304,0.793042826000601,0.06717733480036259,0.5673577408306301,-0.278740581125021,0.7315402142703533,-0.8988165212795138,-0.5883811982348561,0.19404987897723913,0.26710364781320095,-0.8870220021344721,-0.32297282945364714,0.7896560556255281,0.6914547896012664,-0.8568443530239165,-0.4392018658109009,-0.5158188147470355,0.361985235940665,0.004729683510959148,-0.972120925784111,0.9822813109494746,-0.6020996896550059,-0.3723575114272535,0.5422555594705045,-0.7069971999153495,0.30162852443754673,-0.6530565535649657,0.5276375701650977,-0.18332842597737908,-0.32888135919347405,0.7943433979526162,0.4227862716652453,0.9062820253893733,0.0046678087674081326,-0.8005121131427586,-0.5555722313001752,0.8899817219935358,0.6107816128060222,-0.022305564489215612,-0.8590480121783912,-0.4508601645939052,-0.34233546862378716,0.9997596316970885,0.0713666002266109,-0.8142009009607136,0.8379055606201291,-0.6304116360843182,0.3050613272935152,0.754342274274677,-0.14612770918756723,0.9476744779385626,-0.3835509470663965,-0.6723133902996778,-0.8857475030235946,-0.5033693113364279,0.071838756557554,0.2977304165251553,0.08061639312654734,0.33390759723261,0.4308863328769803,-0.19067063694819808,-0.3433643989264965,0.7015038896352053,-0.035448919516056776,0.38285065116360784,0.9860952286981046,0.2796790460124612,-0.7636786671355367,0.7638818142004311,-0.5343795106746256,0.1416525738313794,-0.8591052861884236,0.35647376580163836,0.8551237243227661,-0.8413551463745534,0.42788017075508833,0.1245813318528235,0.6371330958791077,-0.254262893460691,0.2277896306477487,0.9962254385463893,-0.2603698498569429,0.4348343932069838,0.2528564599342644,0.30402869638055563,-0.1028739120811224,-0.8587744920514524,0.7873609382659197,-0.3136960854753852,0.7123665777035058,-0.8583771120756865,-0.069791573099792,0.9653477952815592,0.10948639223352075,0.6483071600086987,-0.04053434822708368,0.8102762890048325,-0.6487597119994462,-0.7904428034089506,0.793293877504766,0.10090864263474941,0.4617043468169868,-0.22607682878151536,-0.05833760183304548,-0.17510254634544253,0.5508147226646543,0.15177150582894683,-0.3267302722670138,0.4580422989092767,0.6582439481280744,-0.9560226537287235,-0.29220353346318007,0.43079111352562904,0.6135329948738217,-0.7460598172619939,0.5808330154977739,0.570268090814352,-0.9973649065941572,0.1258558458648622,-0.34875191329047084,0.13448426639661193,-0.8260577074252069,-0.740710087120533,-0.6675117881968617,-0.9291771268472075,-0.04015208315104246,0.9498594268225133,-0.5674305194988847,-0.060259025543928146,-0.043495265766978264,0.12307351268827915,-0.5443996819667518,0.7608797876164317,0.22055160906165838,0.15830806270241737,-0.6431621154770255,-0.24972405564039946,0.10551017383113503,0.2728987638838589,-0.14856999181210995,-0.788759873714298,-0.7998326332308352,-0.17236840864643455,-0.16337788570672274,-0.5244716005399823,-0.30583471059799194,0.6454296102747321,-0.87230608984828,-0.266765674110502,0.37169483909383416,-0.27994532510638237,-0.290928615257144,-0.22863147128373384,-0.8115818575024605,-0.696017044596374,0.08803105307742953,-0.8926941026002169,0.8843799456954002,0.18473830027505755,0.7263555256649852,0.194468401838094,-0.4775556088425219,0.6795719237998128,0.7193622370250523,0.018355929292738438,0.6355885379016399,-0.8495638743042946,0.7196646854281425,-0.1646958733908832,-0.49196524173021317,0.0023044683039188385,-0.1930249324068427,-0.5967735154554248,0.20221539959311485,0.2148724771104753,0.2620383333414793,-0.5034173862077296,0.6915663760155439,-0.9111393690109253,0.9793737079016864,-0.3366585122421384,-0.953269352670759,-0.4482254171743989,-0.938130849506706,-0.6498166499659419,-0.3796612531878054,-0.3912547891959548,0.6663333224132657,-0.39659584360197186,0.8472492061555386,0.4214313463307917,-0.06033635139465332,-0.7638729833997786,0.6743394047953188,0.3925877739675343,0.8628345495089889,0.2788103255443275,0.20877421088516712,0.9227405549027026,0.42522363970056176,0.5184149090200663,0.7115982882678509,-0.864880995824933,-0.6990868081338704,0.3384309848770499,0.6760305897332728,-0.9069544682279229,-0.17250386532396078,-0.6582048125565052,-0.5592594803310931,-0.5030798381194472,0.6685091299004853,0.5759848025627434,-0.3868016414344311,0.011538958176970482,-0.9649791945703328,0.5509208664298058,0.4806595556437969,0.03221243526786566,-0.5901918085291982,0.055087057407945395,-0.1767033371143043,-0.44554360024631023,-0.59328055055812,-0.07714732317253947,-0.6418140730820596,0.6620443523861468,-0.6479071793146431,0.17223820742219687,-0.2530564060434699,-0.13301513204351068,-0.5475687747821212,-0.5233328053727746,0.5446021780371666,0.5925664273090661,0.14051450649276376,0.13774093287065625,-0.160368915181607,0.16251643327996135,-0.6514924024231732,0.15596799831837416,0.5924197994172573,0.6372731924057007,0.8287594597786665,0.8796326955780387,-0.4799556899815798,-0.928887995891273,-0.5690493332222104,0.9762927410192788,-0.44702035328373313,-0.6119699100963771,0.41426366195082664,0.5566704701632261,0.41748064290732145,0.37032509595155716,0.26697350200265646,0.45620177406817675,-0.6812468050047755,0.9510294306091964,-0.797194903716445,-0.6332115894183517,-0.3542863172478974,-0.018299096263945103,-0.9377332921139896,0.5226329327560961,0.3961990284733474,-0.7012472269125283,0.44100822042673826,0.7761163106188178,-0.2720173583365977,-0.32648119144141674,0.028227931819856167,0.9474089909344912,0.9490693090483546,0.28065147856250405,0.8161613489501178,0.1774817886762321,-0.5876993052661419,0.09916117275133729,0.14336396008729935,0.24319060565903783,-0.8725240058265626,-0.43182326573878527,0.3249308569356799,0.8446832308545709,0.2394481748342514,-0.7666767188347876,-0.6615609219297767,-0.8783114054240286,-0.12872338434681296,0.16082824021577835,0.8485741303302348,0.2309078946709633,-0.8186968099325895,-0.21853295993059874,-0.5095557812601328,-0.7210751948878169,-0.5658621615730226,-0.3169802716001868,0.9775691777467728,-0.6366790886968374,0.6391514143906534,0.34499654406681657,-0.10575395217165351,0.3962871325202286,0.5883498745970428,-0.004382827784866095,0.5434735175222158,0.6596051212400198,-0.07331700576469302,0.49305228888988495,-0.6289145834743977,-0.3725384562276304,-0.5091922832652926,-0.9846802596002817,-0.3670437540858984,-0.3561728112399578,-0.620985948946327,-0.4929548790678382,0.46959126042202115,0.20130396354943514,-0.011124967597424984,0.649068864993751,-0.42020984878763556,-0.9028135351836681,-0.09597672102972865,-0.4325177501887083,0.7536287624388933,-0.16647356934845448,0.37851498648524284,0.2960901143960655,-0.7056166091933846,-0.34018484968692064,-0.4927251245826483,-0.9147269302047789,-0.97615403868258,0.8526602308265865,-0.9394020028412342,0.9487209795042872,0.22874218272045255,-0.1493216590024531,0.31052203895524144,-0.21969619719311595,-0.8226683055981994,-0.25534401275217533,-0.11959586758166552,0.2663175077177584,-0.19551740074530244,-0.16292442474514246,-0.28881196212023497,-0.10011893510818481,-0.05221333308145404,0.0009413394145667553,-0.09709209809079766,-0.9054747722111642,0.773006112780422,-0.8126556454226375,-0.6177769307978451,-0.82416120916605,0.7906214240938425,-0.032192524522542953,-0.20656561804935336,0.8411783166229725,-0.8697149939835072,0.5797225241549313,-0.2473443103954196,-0.7914348249323666,-0.83733821939677,0.0883170198649168,0.4618693869560957,-0.8995560039766133,-0.9648924339562654,-0.27781596733257174,0.2416005083359778,-0.9773935433477163,-0.15990388253703713,0.24181255418807268,0.8774327784776688,-0.24709239276126027,0.05718974582850933,0.9626710158772767,0.7216544100083411,-0.638937761541456,0.5324172098189592,-0.9015022637322545,-0.38177235424518585,-0.1707402286119759,0.04819578118622303,0.3794191684573889,-0.5043649077415466,0.8902860688976943,0.05278416816145182,0.015073525719344616,-0.6443800707347691,0.0619848882779479,0.36229208298027515,0.09100956609472632,0.5090475981123745,0.7467983108945191,0.6292010582983494,0.417226689402014,-0.6006105737760663,0.29610925633460283,-0.830260593444109,-0.4896952477283776,-0.6905791633762419,0.12288718996569514,0.6097705792635679,0.1558894906193018,0.006096439901739359,0.2551673543639481,0.38829935947433114,0.4856862681917846,0.95788305811584,-0.889963367022574,0.18319755094125867,-0.5611144197173417,-0.40531888557597995,-0.04197577154263854,-0.6776525094173849,0.7094903560355306,-0.3855455727316439,-0.5029517114162445,0.8730375985614955,0.6593924928456545,0.02353863650932908,0.5770751237869263,0.21701059397310019,0.66097122291103,-0.895285434089601,0.09935487573966384,-0.3519097715616226,-0.06662822747603059,-0.875562958419323,-0.1920342338271439,-0.7698776004835963,0.5407134299166501,-0.7666635559871793,-0.6641540108248591,0.13866829220205545,0.06441516848281026,-0.07548388186842203,-0.23340321751311421,-0.564102144446224,0.5859947153367102,0.8077303194440901,0.7418982144445181,0.6682210643775761,-0.6362071870826185,0.34754580073058605,-0.528875142801553,0.3656375100836158,0.3184756920672953,-0.4929420039989054,-0.46782442182302475,0.9735008152201772,0.665402608923614,-0.09091879054903984,0.8132006214000285,0.2905768733471632,-0.22364974115043879,-0.3499040910974145,0.8122847308404744,0.5297437449917197,-0.018097986932843924,0.5613961601629853,-0.45394391659647226,0.012122130952775478,-0.9178819083608687,-0.7611761442385614,0.09907734766602516,-0.32020949199795723,-0.8233591029420495,0.8715010224841535,-0.8069973452948034,-0.0414139861240983,-0.9316983432509005,0.5077792466618121,0.1829582005739212,-0.7199132987298071,0.5718747181817889,0.777529988437891,0.8353354437276721,0.37178443698212504,0.6979958624579012,0.07502310862764716,0.1317509226500988,-0.38251813501119614,-0.4560612943023443,-0.9773256685584784,0.7104019559919834,0.8033666461706161,0.31024863151833415,0.4940052395686507,0.8011096836999059,0.24647157359868288,-0.7261178246699274,-0.7446779371239245,-0.3079476743005216,0.45717369951307774,0.8731054933741689,-0.6096722539514303,0.4358785063959658,0.07880966737866402,0.5513414181768894,0.4421205958351493,-0.6360840327106416,-0.3409435716457665,0.9500241344794631,-0.24189247516915202,0.6817710436880589,0.13126756204292178,-0.7951386822387576,0.6593796815723181,0.003341850358992815,0.803646759595722,-0.40721999295055866,0.28084810450673103,-0.10372540866956115,-0.038237414322793484,-0.19539133040234447,-0.7584149539470673,0.3202933673746884,0.36331167770549655,-0.7582654454745352,0.4305392620153725,-0.5602000821381807,-0.5741563318297267,0.6525378036312759,0.13092012470588088,0.9294665255583823,-0.2676364565268159,0.2862705127336085,-0.8467605640180409,0.027909633237868547,-0.12009450141340494,0.3042951915413141,-0.6613150504417717,-0.7634354620240629,-0.04915682598948479,-0.4868029849603772,0.8762392550706863,0.39893778087571263,0.5143135953694582,-0.11837103962898254,0.421395979821682,-0.5087638213299215,-0.289604804944247,-0.044270871207118034,0.7308878139592707,0.5629893667064607,0.04972621100023389,-0.27760233962908387,0.3202783218584955,0.18575015617534518,0.5138002252206206,-0.41308680502697825,0.13973393943160772,0.0436993264593184,-0.9646249585784972,-0.33673398941755295,0.593647938221693,-0.5503912111744285,-0.3281426392495632,-0.19898717943578959,-0.16480749286711216,0.5591474734246731,0.6807913482189178,-0.9459358919411898,0.8848996292799711,-0.7672486510127783,-0.3080330858938396,0.3131564729847014,-0.9779919399879873,0.10985640995204449,0.08602877706289291,-0.8864035182632506,-0.5318406010046601,-0.8662181398831308,0.23253521183505654,0.9556531617417932,0.5055894181132317,-0.9178666085936129,0.11398871103301644,-0.3500356744043529,0.442677672021091,-0.2729000789113343,-0.26708076475188136,-0.04362354660406709,-0.6505897562019527,-0.8105769730173051,0.3219432579353452,0.5769867794588208,-0.511355250608176,-0.6729946085251868,0.47313772374764085,0.8790883170440793,0.6659355298615992,-0.7471073651686311,-0.21546399220824242,0.836806635838002,-0.5943978289142251,0.7035827953368425,-0.845107669942081,0.6501153041608632,-0.10372607316821814,-0.001720445230603218,-0.15309581579640508,0.5236314674839377,0.7390719070099294,0.1611331314779818,0.4350975453853607,0.2263338640332222,0.31348231341689825,0.8545464258641005,-0.6751532144844532,-0.28371079452335835,0.6960103772580624,0.5530709982849658,0.8311654939316213,0.5031780684366822,-0.4765436011366546,0.8321124413050711,-0.5096432347781956,-0.1279163435101509,0.9838557844050229,0.3888227818533778,-0.9224541466683149,-0.4355541695840657,0.9095448227599263,0.03755348967388272,-0.713242051191628,-0.7157884421758354,0.39771474292501807,-0.9404057469218969,0.4986377409659326,-0.5340297943912446,-0.605091464240104,-0.8298480031080544,0.6972519159317017,0.21142244571819901,-0.2826815997250378,0.3030432346276939,0.3375542499125004,-0.29031716333702207,-0.30253277346491814,-0.812355357222259,-0.9545249580405653,0.3365622963756323,0.8377131265588105,-0.7770609697327018,-0.851210277993232,-0.5805492019280791,-0.54353828728199,0.7990022907033563,-0.27461597602814436,-0.8846700852736831,-0.7754467409104109,-0.22304359916597605,-0.7741956519894302,0.21492052916437387,0.6606759983114898,-0.8265646807849407,0.08088102517649531,0.9681877512484789,0.21735472371801734,-0.9797321055084467,0.543736252002418,-0.2971236542798579,0.9413919006474316,-0.1283845640718937,0.9093043552711606,-0.6126607554033399,-0.9950833227485418,-0.9023071536794305,-0.08529891772195697,-0.8728210981935263,0.4695496712811291,0.909439985640347,-0.2772624287754297,0.9291096543893218,-0.27402475802227855,-0.4041791148483753,0.5354102659039199,-0.1608208348043263,-0.43759945407509804,-0.9687002575956285,0.23516326351091266,0.4126977054402232,-0.1934476289898157,0.5415748893283308,0.4745759330689907,-0.29134669667109847,-0.9301186776719987,0.46091795805841684,0.9528300473466516,-0.18229182111099362,-0.002840858418494463,-0.5450911996886134,0.508191647939384,-0.38585461815819144,-0.2696211733855307,0.0801965962164104,0.7867666468955576,0.4650722714141011,0.8454502117820084,-0.9865283076651394,0.22624068148434162,0.7804537708871067,0.6952015035785735,0.6446349048055708,0.9521713792346418,-0.9406255492940545,0.90907735330984,-0.5415223906747997,-0.32321532582864165,0.5715694366954267,-0.42391045158728957,0.8897923482581973,-0.02877655066549778,0.46211267868056893,-0.1356636811979115,-0.9699442530982196,-0.9213462159968913,-0.6307904631830752,0.9622450331225991,0.19425505865365267,0.0154809495434165,0.7190466108731925,0.11641244497150183,0.19463911140337586,-0.8427796070463955,-0.8476730426773429,0.9760340633802116,-0.6576817724853754,0.2126983730122447,0.8693543062545359,0.9108306500129402,0.4188744695857167,0.8964007296599448,-0.8665446471422911,0.8098298842087388,0.4171296623535454,-0.14613746525719762,-0.3564011105336249,0.5055570742115378,0.7991157406941056,0.9955457802861929,-0.6053811856545508,0.7797447377815843,0.4626769837923348,0.13345622969791293,-0.2541432366706431,0.12461796123534441,-0.6670523611828685,0.5799143263138831,-0.18551617162302136,-0.46559035452082753,0.6329699470661581,-0.8931942032650113,0.9998698798008263,-0.9236642550677061,-0.9957635891623795,-0.9293014025315642,-0.5080108852125704,-0.5985982390120625,0.7693096613511443,0.5254641366191208,0.8100283560343087,0.5390168046578765,-0.9455951382406056,-0.33713505789637566,0.8549099289812148,-0.5968790175393224,0.6718125673942268,0.39368352154269814,0.6769730648957193,-0.49537880904972553,-0.6705627553164959,0.1657169978134334,0.7177672805264592,-0.9052580781280994,0.19009369239211082,-0.32147423550486565,0.9534294693730772,-0.5507328724488616,-0.44458491262048483,-0.4586642235517502,-0.01572169689461589,-0.7193885678425431,0.6339903799816966,0.12591909617185593,-0.5612945891916752,0.7612545909360051,-0.7455004146322608,-0.547772980760783,-0.46733054192736745,0.09408234572038054,0.9318453492596745,0.45329600758850574,0.9690785226412117,0.9339138763025403,0.9333423064090312,-0.3617319604381919,0.511865206528455,-0.2351798927411437,0.28953203512355685,-0.6248369379900396,0.09341651713475585,-0.8174785007722676,-0.4826059518381953,0.5968148722313344,-0.6258165370672941,-0.09686176106333733,0.13639911590144038,-0.4484266545623541,-0.9688889710232615,0.3710730099119246,0.8332760576158762,-0.4262495166622102,-0.5910487263463438,0.053978321608155966,-0.5009824531152844,0.3054841533303261,-0.5169765348546207,0.3671814436092973,0.2598825339227915,0.30705853505060077,0.8302127681672573,-0.34693695046007633,-0.36313204653561115,-0.2050438215956092,0.9380335207097232,0.18441713694483042,0.1480777277611196,0.40777860255911946,-0.505751880351454,0.6549622062593699,-0.2965444433502853,0.20740372175350785,-0.8076940905302763,0.34133902192115784,0.6468988782726228,0.28500478668138385,0.7112954845651984,0.7181146484799683,-0.0016079191118478775,-0.02616908773779869,-0.613866607658565,-0.02948798006400466,-0.9780581053346395,-0.0857661017216742,0.048233636654913425,-0.09050438925623894,-0.6337220333516598,-0.22216440457850695,0.024366253055632114,0.6010534455999732,0.7814232823438942,0.8918201038613915,0.9600702356547117,-0.6353303580544889,0.6499218284152448,-0.8556165634654462,0.3905743327923119,0.27440065145492554,0.3041935400106013,0.3417005892843008,-0.09919751528650522,-0.4007455864921212,-0.9777974579483271,0.752887804992497,0.05491705797612667,0.9343407996930182,-0.6092218831181526,-0.7531066169030964,0.5080969706177711,-0.6651972271502018,-0.14720782078802586,0.44829755928367376,-0.16683599585667253,-0.8999703857116401,0.4548587347380817,-0.5674667889252305,-0.43729291995987296,0.793467849958688,0.18058786680921912,0.6518605495803058,0.0544854961335659,0.9454940250143409,0.2225338383577764,-0.4575985409319401,0.4143249038606882,-0.5209819353185594,-0.6773998239077628,-0.9487514859065413,0.9942427957430482,-0.8151077665388584,0.3165723313577473,-0.844144833739847,0.5096009536646307,0.3565228790976107,-0.9411420002579689,0.5074572339653969,0.6231005825102329,-0.765731206163764,0.39176529459655285,0.016786217223852873,0.8551239166408777,0.3292261315509677,0.945750430226326,0.3349071051925421,-0.9462776901200414,-0.49957191850990057,0.6495295977219939,-0.6994194719009101,-0.20091200387105346,0.41442490415647626,-0.4887343277223408,-0.7804934014566243,-0.9340185825712979,-0.8862680993042886,0.6873727971687913,0.4361246293410659,-0.758152658585459,-0.6842162455432117,0.635149510577321,-0.5843858127482235,0.5865751919336617,-0.5429565138183534,0.010487092658877373,-0.030160045251250267,0.6443511508405209,0.7833952573128045,0.7422980256378651,-0.29371626069769263,-0.9164331587962806,0.803401879966259,0.052349322475492954,0.1796205546706915,0.858688096050173,0.8934774361550808,0.05359613848850131,0.4512249301187694,-0.8648290755227208,-0.9095938052050769,0.7387870098464191,-0.47254413180053234,-0.08894409658387303,0.8543366584926844,0.4377049426548183,0.6544497651048005,0.47123727947473526,0.7776974397711456,0.9659138331189752,-0.27656391682103276,0.9632024429738522,0.6758470186032355,-0.6525476602837443,-0.4759351615794003,-0.7199846780858934,0.4462490822188556,-0.9584701103158295,0.09003675216808915,0.7451508534140885,-0.6386631415225565,-0.5920231305062771,-0.8800910273566842,-0.907823211979121,-0.14420111943036318,-0.15566058130934834,0.6453790664672852,-0.23045434942469,0.43988220440223813,0.7894668094813824,0.5978796873241663,0.962816006038338,0.20735856983810663,-0.5109235881827772,0.26105628721415997,-0.1940412251278758,-0.27663886779919267,-0.5347846974618733,-0.5516571034677327,-0.6603973940946162,-0.9833525437861681,-0.06752860127016902,-0.528130083810538,-0.5298529011197388,0.20199482329189777,-0.4509631530381739,0.9688316378742456,-0.4804440219886601,0.4294730229303241,0.11404276965186,-0.9008295550011098,0.2868932979181409,-0.4188912068493664,-0.40510517405346036,0.9976925905793905,0.6643677414394915,0.24865027330815792,0.07140379585325718,0.23491105483844876,-0.3357620481401682,-0.5312569094821811,0.5546803935430944,0.8601615917868912,-0.5561703396961093,-0.4183079437352717,0.7851383131928742,-0.20928809512406588,-0.03972227172926068,-0.06310834549367428,0.35595662239938974,0.0820301566272974,-0.4698359780013561,-0.45121429208666086,0.22936817351728678,-0.872172920498997,0.8705757944844663,-0.06432273332029581,-0.3050189330242574,-0.649080173112452,0.041021437384188175,0.5921196443960071,0.5254291850142181,0.5882460298016667,-0.002555379644036293,0.9324476695619524,0.72121148603037,0.548152138479054,0.2799220276065171,-0.44301219983026385,0.9488622569479048,-0.7789627839811146,0.5641079270280898,-0.017861786764115095,-0.7483102255500853,-0.200055877212435,-0.8049961454235017,-0.4064746079966426,0.4484662958420813,-0.35999505827203393,0.9320706510916352,-0.09726256877183914,0.833939622156322,-0.8948593637906015,-0.03705284418538213,0.30607521114870906,-0.9540295777842402,-0.7450957968831062,0.011521905194967985,0.3754472956061363,-0.577707574237138,-0.4195298687554896,-0.1994426092132926,-0.783824210986495,-0.9718203460797668,0.09254719689488411,-0.6996126133017242,-0.2531482889316976,0.7554592480883002,0.797596805728972,-0.8243103516288102,0.4840253754518926,0.7600431526079774,-0.3953963303938508,0.5168373850174248,0.620495683979243,0.17327364534139633,-0.33374606212601066,-0.6303614345379174,-0.07149041863158345,0.5706776259467006,-0.4953345353715122,-0.797909970395267,-0.32664050394669175,0.542712852358818,0.8223323198035359,-0.046301900409162045,-0.861802474129945,0.28232526406645775,-0.5519380206242204,-0.12610676931217313,-0.6745055732317269,-0.8681960836984217,-0.8243566197343171,0.6097291922196746,0.6807186095975339,0.812602567486465,0.6962830619886518,0.9983513550832868,-0.4317485662177205,-0.7078252364881337,-0.19025541143491864,-0.7111402796581388,-0.06745980074629188,-0.7188424696214497,-0.1990570155903697,-0.38980407174676657,-0.7617961713112891,-0.04724996071308851,0.5090719629079103,-0.5929051330313087,-0.38431907584890723,-0.35584045061841607,0.666865533683449,-0.4672608757391572,-0.7995265582576394,-0.3600649400614202,0.2587236571125686,-0.16570780239999294,-0.5907241478562355,-0.8594299955293536,-0.6990693281404674,0.9455955484881997,-0.06865379028022289,-0.5365998269990087,-0.11665489291772246,-0.3711979645304382,-0.37839936139062047,-0.050275652669370174,-0.22538577392697334,-0.790460083168,-0.9820235064253211,-0.930799753870815,0.6605261093936861,0.074585129506886,-0.013938484713435173,-0.07251656148582697,-0.563011675607413,0.6679969108663499,0.10571160353720188,0.04439107794314623,-0.5513945720158517,0.06440261472016573,0.32999491319060326,0.8497485890984535,-0.8144795768894255,0.8319069161079824,0.7394571709446609,0.9250572044402361,0.5011739823967218,-0.6436677272431552,-0.8937026299536228,-0.45092293340712786,-0.7903079413808882,-0.9856843436136842,-0.2749954401515424,-0.3968687327578664,0.4258931898511946,-0.2709572147578001,0.341245140414685,-0.5380134177394211,-0.22693908214569092,-0.7429815046489239,-0.7528589214198291,0.31676091393455863,-0.7263890826143324,0.7581382822245359,0.5390952699817717,0.9086591978557408,0.13620153302326798,0.41187340719625354,-0.2159836613573134,0.5949511365033686,-0.6028412966988981,0.8967964947223663,0.1005630069412291,0.9940242315642536,-0.6834549140185118,-0.9735362119972706,-0.19047801056876779,0.3045001542195678,-0.09891532361507416,-0.21876533655449748,-0.7284461800009012,-0.8276296094991267,-0.201318243984133,0.8427005005069077,-0.5945615600794554,0.8091522990725935,-0.4903293251991272,0.2612724360078573,0.7586880582384765,-0.12139325542375445,0.19543540431186557,-0.27567172050476074,0.11591169703751802,0.10739334486424923,-0.9143347362987697,0.07990877889096737,-0.7576964055188,0.36308165127411485,-0.10602158261463046,-0.615458641666919,-0.6829968583770096,-0.64751041168347,-0.9784202589653432,-0.3905493160709739,-0.6417388203553855,-0.36797434790059924,-0.5265813232399523,-0.8067774050869048,0.053866070695221424,0.9887547879479825,0.5924493451602757,-0.9754846058785915,0.45315555669367313,-0.567876051645726,-0.8672268660739064,-0.38481514621526003,-0.039081694558262825,0.4795553875155747,0.4991045403294265,0.43758527049794793,0.28213015478104353,0.2699495661072433,-0.2817384358495474,-0.6768053472042084,0.8704246790148318,0.09076045034453273,-0.5212461575865746,-0.7354957703500986,0.76171452132985,0.3565793987363577,0.7284178049303591,0.5461253458634019,0.47879286715760827,0.10353311570361257,0.9233724386431277,-0.5587309137918055,-0.11092475801706314,-0.6288242931477726,-0.8094214489683509,-0.7079496933147311,0.9121093354187906,0.1915241819806397,-0.5166603587567806,0.1986188804730773,0.1516737136989832,-0.4620094201527536,0.3402614574879408,0.7004648274742067,0.28869080264121294,-0.12217795895412564,0.5490262014791369,0.5360679677687585,0.7587777180597186,0.4344699461944401,0.28100691456347704,-0.38680641213431954,-0.02060305792838335,-0.4907095255330205,-0.602357036434114,0.5355976754799485,0.09123895736411214,-0.037110368721187115,-0.11229062406346202,0.8920618402771652,-0.9702879595570266,0.5916341817937791,-0.7564495406113565,-0.08956383913755417,-0.6707285600714386,-0.4431396061554551,0.9824641165323555,-0.03515952965244651,-0.1123678283765912,-0.6572131258435547,0.8503171824850142,-0.8667266336269677,-0.5477049252949655,-0.3280554497614503,0.06770718051120639,-0.07581551466137171,-0.7658362411893904,-0.23605202930048108,-0.6877556894905865,0.40960192447528243,-0.7596424208022654,-0.5104437433183193,0.8408614196814597,0.3747483971528709,-0.752591953612864,-0.98799306480214,0.1444167224690318,0.8274193215183914,-0.40031735179945827,0.2914178194478154,-0.6295461379922926,-0.8222265285439789,-0.749439381994307,0.5548283117823303,-0.6692658048123121,0.6816994166001678,0.1896853670477867,0.9684104300104082,0.7245001229457557,0.8616970563307405,-0.7930218195542693,0.279544070828706,-0.9706554203294218,0.319194991607219,-0.9594705300405622,-0.5880546537227929,0.8963891821913421,0.35610038693994284,-0.7356045315973461,-0.29502671398222446,-0.6800031196326017,-0.1922366893850267,-0.822424846701324,0.9503840804100037,0.557354258839041,-0.3027247195132077,0.6277804453857243,0.9814451839774847,-0.4887715158984065,0.3800988872535527,-0.16769603826105595,0.5264836177229881,0.4207227281294763,0.5133384745568037,0.8501296481117606,-0.2627311320975423,0.8065567035228014,-0.1561219566501677,0.2065273649059236,0.5428089220076799,0.5125223137438297,-0.6395035334862769,0.45657556410878897,0.5255273464135826,0.07647439278662205,-0.485614565666765,0.023988134693354368,0.8454494685865939,-0.8420111793093383,-0.7064116317778826,-0.13815460680052638,0.7998274364508688,-0.9398767128586769,0.4318039990030229,-0.1995954355224967,-0.7193194194696844,0.78099818341434,0.9770916923880577,0.4866435443982482,0.010881411377340555,-0.9924219977110624,0.7935535409487784,-0.5901353233493865,-0.23999470053240657,0.8714011358097196,-0.14677215460687876,0.5614111400209367,-0.1667477167211473,0.37612302089110017,-0.9929676949977875,0.9317974294535816,-0.31590344943106174,-0.23744567297399044,0.6082619703374803,-0.13922194251790643,0.12978514842689037,0.6246309108100832,0.03852153941988945,-0.43731984216719866,-0.9617019165307283,0.8802473661489785,0.08266985323280096,0.6091225924901664,0.9943422921933234,-0.0437719295732677,0.7200201898813248,-0.09567593270912766,-0.3824634877964854,-0.7917827209457755,-0.9342172387987375,-0.7088978779502213,0.468017915263772,-0.9602353391237557,-0.9570388686843216,0.1973640350624919,0.10321580618619919,-0.12041522422805429,0.17759606800973415,-0.8419245053082705,0.8060751846060157,-0.07401838339865208,-0.3198108822107315,0.47494114516302943,-0.23422830272465944,-0.7921845419332385,0.14286833768710494,0.6553051462396979,0.045702564995735884,-0.3060653251595795,0.9797616372816265,0.2612443435937166,0.5708409668877721,-0.12161420797929168,0.23076071590185165,-0.5614991276524961,0.25722423708066344,0.14614591700956225,-0.42015644861385226,0.3528588595800102,0.8453181064687669,-0.19431535759940743,-0.011814449448138475,-0.5617733965627849,0.21387202478945255,-0.3111270656809211,-0.055714826099574566,-0.5024828840978444,0.3545992146246135,0.4783366471529007,0.6666599409654737,-0.3276673574000597,-0.2056711562909186,-0.7652815100736916,0.8047883622348309,0.846902294550091,0.933274342212826,-0.43922618962824345,0.6393533041700721,-0.8637503255158663,-0.17854164773598313,0.7111549992114305,0.11834545526653528,-0.8521026852540672,0.24829099141061306,0.6819765735417604,0.4332823562435806,-0.4880752479657531,-0.42552836891263723,-0.7737314333207905,-0.7596719227731228,-0.7507998277433217,-0.5303661599755287,0.05638595623895526,0.06742305681109428,0.03675790224224329,0.855504606384784,0.09389436664059758,0.6756279519759119,-0.9964634766802192,0.28339940309524536,-0.3488115631043911,0.07469692686572671,-0.6693685548380017,0.018900820519775152,0.9145870511420071,-0.5447815824300051,0.3220169981941581,0.01922787819057703,-0.2631866098381579,-0.15124020306393504,0.5517643699422479,0.8281007120385766,0.1665329383686185,-0.1526964083313942,0.9062989116646349,0.8926125876605511,0.007859332952648401,-0.772173878736794,0.8810394271276891,-0.04491297388449311,-0.3851271183229983,0.29990531131625175,-0.8273518881760538,0.6293472773395479,-0.5406295512802899,0.07567924540489912,-0.8603481026366353,-0.2863706243224442,0.3894023080356419,-0.47684219712391496,0.8550591170787811,0.9317750460468233,0.8743182523176074,-0.9750727284699678,-0.41712100617587566,0.33425377774983644,0.22716282028704882,-0.08787021646276116,0.4392474149353802,-0.3753466447815299,-0.5347940963692963,-0.07615050487220287,0.02885736059397459,0.7955094343051314,-0.017410182859748602,-0.8291285797022283,0.6506975176744163,0.027376316022127867,0.04035508260130882,-0.29400260746479034,-0.2137103332206607,0.8204200966283679,0.17601365083828568,-0.40560924308374524,0.7779109496623278,0.08024258073419333,-0.5340326465666294,-0.0014213388785719872,-0.3423387687653303,-0.10256649507209659,-0.22647600201889873,-0.29777291929349303,-0.9861091217026114,0.2930296421982348,0.3355787708424032,0.9004656998440623,0.0913608050905168,0.27867100620642304,0.8621381004340947,0.832225430291146,0.01209720503538847,-0.35245933989062905,0.03343454981222749,0.9525278164073825,0.8344469992443919,0.17069965321570635,0.5430864673107862,0.8101880270987749,0.039835347793996334,-0.9928385172970593,-0.25101527385413647,-0.31342819426208735,-0.1782338097691536,0.10850381758064032,0.25438345689326525,-0.42735125264152884,-0.5481312493793666,0.21868176711723208,-0.6597143318504095,0.33952670032158494,0.14686659816652536,0.2798981317318976,-0.024159304331988096,0.820121705532074,-0.1407572701573372,0.7274279119446874,-0.00850114319473505,-0.8749015587382019,-0.019027249421924353,0.252701616846025,-0.6425408367067575,-0.539562969468534,-0.30717279575765133,-0.8584204777143896,0.23918736958876252,0.9267200441099703,0.3294921526685357,-0.9921808452345431,-0.4160537417046726,-0.5966368643566966,0.8302833745256066,0.834796782117337,0.7778849345631897,0.6295324522070587,0.6444885530509055,-0.8379273600876331,0.9277256391942501,-0.45625074906274676,-0.9852815293706954,0.6727674663998187,0.4954155143350363,-0.9941674773581326,-0.3965073451399803,-0.957332600839436,0.19883431727066636,0.5459087127819657,0.7646344914101064,0.6391503461636603,0.1298162406310439,-0.8110200962983072,0.26683000894263387,-0.11590880108997226,0.35353288147598505,0.689544121734798,0.27416043309494853,0.8965034550055861,0.9169106893241405,-0.14943048916757107,-0.9879848849959671,0.8190527334809303,-0.5916114076972008,0.8417955092154443,0.9932354218326509,0.6611849740147591,-0.6171398772858083,-0.9120914111845195,-0.7378906309604645,0.9046031259931624,-0.5614868998527527,-0.18958748504519463,-0.35269534355029464,0.9064918882213533,0.1282456461340189,-0.38243096554651856,-0.48628617031499743,0.6835547657683492,0.35865145083516836,-0.20563048357143998,-0.11329939682036638,0.11556265130639076,0.4047893933020532,0.5863554952666163,0.2504960969090462,-0.8643673886545002,-0.4551201802678406,-0.7275885324925184,0.5065994770266116,-0.34603714756667614,0.6234294432215393,0.9846192114055157,-0.7011081986129284,0.6708328584209085,0.17640030523762107,-0.4812092133797705,-0.49214138090610504,0.8125422126613557,-0.5774591704830527,-0.34530063765123487,-0.30965940002352,0.8476667362265289,-0.26518952287733555,-0.9119784566573799,-0.7124951160512865,0.12722702510654926,0.8214649301953614,-0.49324151035398245,0.1821831683628261,-0.1458123498596251,0.5776392878033221,-0.5367497173137963,0.9177422788925469,-0.6763040297664702,0.03526091808453202,0.1856187847442925,0.66092972131446,0.6426168871112168,0.7369219190441072,0.45037715416401625,-0.5223434269428253,-0.7772456901147962,0.6482531307265162,0.6252953787334263,-0.6647853925824165,-0.7944679372012615,-0.5336224646307528,0.1283622058108449,0.7315670908428729,0.8023729510605335,-0.9077158286236227,-0.10944519471377134,0.468892659060657,0.966094546020031,0.6737746531143785,-0.4042151737958193,-0.30416226433590055,0.1984932883642614,0.07605510111898184,-0.7563603050075471,-0.3643825454637408,0.057365968357771635,0.9744514687918127,0.8090583817102015,-0.13632827997207642,-0.28889509942382574,-0.4348368691280484,-0.6949088852852583,0.6787553951144218,0.9047817243263125,-0.58586551155895,0.6703714965842664,0.84605393698439,-0.5334184416569769,0.34534258441999555,0.3090381268411875,-0.05040706740692258,0.9788239812478423,0.161054867785424,-0.8450063322670758,0.7884155162610114,-0.34780807979404926,-0.4065512237139046,0.2836398398503661,0.23214043397456408,0.5733854444697499,-0.025664108339697123,-0.27075457153841853,0.3414113838225603,0.09594867564737797,0.8119586696848273,-0.6124172871932387,-0.7810260793194175,0.7625023750588298,-0.39055829495191574,0.9559472654946148,-0.8066386771388352,0.42692686803638935,-0.9884620322845876,0.36231489619240165,0.25158161763101816,0.5477035720832646,-0.253720551263541,0.4251006762497127,0.13805531850084662,0.3858351674862206,-0.6159527557902038,-0.4646328133530915,0.5339217018336058,0.032368998508900404,-0.9366220720112324,0.5509791714139283,-0.6745795719325542,0.8998053991235793,-0.6158809452317655,0.2898680022917688,-0.5756911039352417,-0.8005357598885894,0.7244430403225124,0.5268329177051783,-0.022649345453828573,-0.44660658156499267,-0.3963552196510136,0.6419966970570385,-0.8037956357002258,0.8046698207035661,0.3503322806209326,0.35849402844905853,0.7013344559818506,0.9853124185465276,0.47889794409275055,0.3949612071737647,0.07964200247079134,0.7685518143698573,-0.32865224685519934,0.6829820638522506,0.574740129057318,0.38885665964335203,0.3207595432177186,-0.9537884262390435,0.6077264850027859,0.6514293956570327,0.8174552475102246,-0.026526485104113817,0.8988859886303544,-0.6620246507227421,-0.4751225942745805,0.05567979160696268,0.9854622255079448,-0.22217496577650309,-0.9866357082501054,0.05839409586042166,-0.379123916849494,-0.3511043698526919,0.6043040775693953,-0.8940559881739318,0.6747944983653724,-0.47678708704188466,-0.5154071869328618,-0.4546550586819649,0.06874022167176008,0.5760891758836806,-0.6925504072569311,0.3359152772463858,-0.9238191577605903,-0.41102160094305873,0.4517201455309987,-0.37837869953364134,0.20489175571128726,-0.10712464665994048,0.36811294639483094,-0.04906729655340314,-0.8010831051506102,0.7895319014787674,0.20924469688907266,0.7752696522511542,0.7781018810346723,0.4591905726119876,0.151195231359452,-0.43779183411970735,0.15191863756626844,0.38828152511268854,-0.36433429829776287,0.9616240682080388,-0.7153838477097452,0.8015106413513422,0.909868948161602,-0.6561318542808294,0.6927291662432253,-0.36938558192923665,0.019956357777118683,-0.1619634749367833,0.8319168365560472,0.9440955235622823,0.8770748595707119,-0.25686437264084816,0.13011352764442563,0.45463122008368373,-0.44836475187912583,0.2644003336317837,0.7118648639880121,-0.4782482390291989,0.22460250509902835,0.8542214990593493,-0.9944652849808335,-0.7727289735339582,0.15374157391488552,0.6222829641774297,-0.9117511184886098,-0.5219278745353222,-0.2253231769427657,0.019552079495042562,-0.9634010070003569,0.43086172034963965,-0.22650211211293936,-0.08024734584614635,-0.8125141174532473,0.6936219707131386,0.3063205098733306,0.1712363436818123,-0.9770397958345711,-0.22584683215245605,0.4401523005217314,-0.4474139683879912,-0.5496103032492101,0.031029877718538046,-0.99332404602319,0.2511775097809732,-0.9073976962827146,-0.8669189461506903,-0.7845667395740747,-0.637163647916168,0.12309976480901241,-0.7004521950148046,-0.06323152501136065,0.32511905999854207,0.4451086544431746,-0.08286741562187672,0.37342263106256723,0.03999728290364146,0.6319748307578266,-0.7562924129888415,-0.8270677980035543,-0.4155345684848726,-0.32371857948601246,-0.38070809794589877,-0.06760708196088672,-0.2014718628488481,0.3652420355938375,-0.21666148770600557,0.4097420568577945,0.9669597120955586,0.32278053695335984,-0.8053568894974887,-0.8685051882639527,0.10341603821143508,0.9898323169909418,0.5479285917244852,-0.056565763894468546,0.35179656744003296,-0.9535178495571017,0.5215985430404544,0.3776712231338024,0.45036746421828866,0.43082821974530816,-0.46892148815095425,-0.018231305293738842,-0.6824211063794792,0.7575294240377843,-0.3961066431365907,-0.8369189202785492,-0.42625955818220973,-0.9912221361882985,-0.8347024857066572,0.01669123535975814,0.5080234780907631,0.9418565523810685,0.879292010795325,0.5902923005633056,0.5285856323316693,0.45587098645046353,0.28419318748638034,-0.7945987093262374,0.12959127314388752,-0.23323133867233992,-0.35124284867197275,0.27692056400701404,0.6400947817601264,-0.4417769415304065,0.4101270600222051,-0.8520145276561379,0.5665236250497401,0.3535998510196805,-0.9647589074447751,0.85795708745718,0.1766388388350606,0.4617796936072409,-0.24647024367004633,0.26377848722040653,-0.2922583967447281,0.31471134861931205,0.5845136702992022,0.038585218135267496,-0.2980693383142352,-0.588936903513968,0.6814644420519471,-0.6190118468366563,-0.9683180321007967,0.5118968929164112,-0.5690281274728477,0.048889340832829475,-0.6813082280568779,-0.13363122986629605,0.030085319187492132,-0.34366191318258643,0.13912959955632687,-0.18022297974675894,-0.8454537098295987,-0.9350488395430148,-0.2795424344949424,0.5744035854004323,-0.9671664051711559,-0.6530488710850477,-0.3959308029152453,0.6157558686099946,-0.9038618220947683,0.8109119548462331,0.7543239928781986,-0.668025347404182,-0.6190225458703935,0.24734415858983994,-0.7620692374184728,-0.5001148693263531,-0.4767790110781789,-0.5927970162592828,0.019061964005231857,-0.22386203473433852,0.13995798025280237,0.3440512460656464,-0.05300132371485233,-0.07431083498522639,0.3100014948286116,0.8394718514755368,-0.9335229154676199,0.6923621278256178,-0.16129507310688496,0.12346666632220149,0.9024914395995438,0.9623440844006836,0.6181828272528946,-0.6625263541936874,-0.30399453081190586,-0.7200245037674904,-0.5171688720583916,-0.5714422459714115,-0.7067172089591622,-0.5378988347947598,-0.31088384753093123,0.022916554007679224,0.9644935438409448,0.8310291860252619,-0.6807700553908944,0.5892948075197637,-0.8230138216167688,-0.7188458270393312,-0.6120031177997589,0.8697598977014422,-0.5559713542461395,-0.24616766115650535,0.4889954747632146,-0.2790170549415052,-0.5635973480530083,-0.3525989237241447,-0.3775429748930037,0.29679121961817145,-0.2868655207566917,0.18439423479139805,-0.44886748399585485,-0.6228554528206587,0.3438123157247901,-0.0616152947768569,0.9445372996851802,-0.44111134484410286,-0.7817284781485796,0.08930117404088378,-0.7579863062128425,-0.19133128365501761,0.7688732426613569,-0.44267518259584904,0.8045841283164918,-0.9908142774365842,-0.37854258669540286,0.8176600392907858,-0.3603503694757819,-0.7498182160779834,0.8195756571367383,0.8350543663837016,-0.1422899910248816,0.7919495427049696,0.5468254131264985,0.07557542249560356,-0.795459995046258,0.559013843536377,0.21825841069221497,0.8190411715768278,-0.5219721542671323,0.040001021698117256,0.33370846696197987,0.26107456535100937,-0.14830318419262767,0.10189870232716203,0.06031142175197601,0.9854213348589838,0.3851697272621095,-0.17109898338094354,0.041593808215111494,-0.16582692554220557,-0.8622373477555811,-0.4027087059803307,0.14421068411320448,0.95033516921103,0.8458289336413145,-0.561005515512079,0.0020206491462886333,-0.9485807130113244,-0.03520799148827791,-0.41776604345068336,-0.6732302228920162,-0.8888090518303216,-0.27053705463185906,-0.4002887844108045,0.49676597584038973,-0.7603322388604283,-0.01056252047419548,0.9703241651877761,0.17185339611023664,0.6989771318621933,0.33240910433232784,-0.06698873173445463,-0.0992834479548037,0.6948980037122965,-0.03985473047941923,-0.6983496267348528,-0.3600003896281123,-0.7308392934501171,-0.6269595790654421,-0.6965719512663782,-0.49641057290136814,0.3212833129800856,0.18837309768423438,-0.28873186744749546,-0.7600771472789347,0.9164090896956623,0.649539374280721,-0.02696943050250411,-0.925017025321722,-0.8545570974238217,0.07170165050774813,0.6955470587126911,0.041289400309324265,0.7657010187394917,0.2754377364180982,0.6264553223736584,-0.021233984734863043,-0.4985232362523675,-0.5477837081998587,0.03195719560608268,-0.3538291393779218,0.5436393660493195,-0.783574104309082,-0.5086477659642696,-0.9893978284671903,-0.5628220001235604,-0.23602018551900983,-0.33156458800658584,-0.08745375322178006,0.598289736546576,0.5159034286625683,-0.9534203475341201,0.8111426010727882,0.6783043001778424,0.9329499495215714,-0.059970504604279995,0.5605378970503807,0.18757062731310725,0.46398273576050997,0.5361916162073612,0.7170170517638326,-0.4467452778480947,-0.9666088493540883,-0.7030074326321483,-0.8020718707703054,0.3447389076463878,-0.23678057687357068,0.8736216234974563,0.3705432969145477,0.7485894812270999,-0.16119260620325804,0.9826196138747036,-0.2538758856244385,0.6536466083489358,0.22145477728918195,-0.14122644579038024,0.5300788478925824,-0.6688756453804672,-0.02132391557097435,-0.4530567931942642,0.9270352679304779,0.4398123687133193,0.25870921555906534,0.8347748867236078,-0.16982837161049247,0.584994797129184,0.43729905877262354,0.16715461807325482,0.9818165670149028,0.6573488218709826,-0.6842749952338636,-0.006636704318225384,-0.6551840216852725,-0.7518976111896336,0.3669322454370558,-0.533371050376445,-0.6134331412613392,-0.8570646829903126,0.11492385203018785,-0.43066922249272466,-0.3390689375810325,0.09649587515741587,-0.15084779355674982,0.8753948612138629,-0.22197827557101846,0.6815947047434747,0.17798222322016954,-0.2456286670640111,-0.3654706529341638,-0.6909164264798164,0.15200429502874613,0.6227835235185921,-0.19304857170209289,0.35567082231864333,0.28586907871067524,-0.8963052625767887,-0.9076363453641534,-0.3112297309562564,-0.8323195236735046,0.8388409186154604,0.654406638815999,-0.2269954765215516,-0.8566138432361186,0.12399002257734537,0.14909996977075934,-0.7927297186106443,0.7278989921323955,-0.12338630808517337,-0.13743257382884622,0.2726315422914922,-0.0824672901071608,0.4066891255788505,0.37156476313248277,-0.5957236774265766,-0.14085244107991457,-0.5893612732179463,0.9341613128781319,-0.3013892536982894,0.7492681788280606,-0.07288235751911998,-0.7488074488937855,-0.5221941992640495,-0.6045035440474749,-0.28645663475617766,-0.8542893552221358,-0.6854905118234456,-0.8300304361619055,-0.6618480598554015,-0.4973306586034596,0.4658355382271111,-0.31280526146292686,0.6914443182758987,-0.36188817396759987,0.32101550325751305,0.46599003951996565,0.06919142184779048,-0.7044865707866848,0.7428111513145268,0.33353159623220563,-0.7023707865737379,0.22953432984650135,-0.39903962798416615,0.40112408669665456,-0.3733388688415289,0.31019232934340835,-0.6176397446542978,0.0037834574468433857,0.8368615470826626,0.46004427364096045,0.1553127788938582,-0.47502703266218305,0.09285225719213486,0.08513808203861117,0.7380029899068177,-0.3278112895786762,-0.7568420609459281,0.011470343451946974,0.2374952002428472,-0.7822574544698,-0.4333690060302615,0.3934010383673012,0.6829990930855274,0.8768770005553961,0.33114023692905903,0.042621178552508354,0.6029886985197663,0.11103602591902018,0.18047184590250254,-0.34126997413113713,-0.7246676608920097,0.760659845545888,0.47271368373185396,0.49436060478910804,0.7762855440378189,0.9406010638922453,-0.3964352626353502,0.5974946143105626,-0.5456634843721986,-0.8810759051702917,-0.3785136076621711,0.9153807410039008,-0.9512211033143103,0.2759913052432239,0.5434592519886792,0.5527514875866473,0.878195624332875,0.5928297499194741,-0.9805754390545189,-0.19631271250545979,-0.4520194218493998,-0.9867958007380366,-0.6368038938380778,0.4344256641343236,0.7925006905570626,-0.9268164066597819,0.7845630701631308,-0.6440540407784283,0.3189118606969714,-0.6985166110098362,-0.8208827981725335,-0.7692839638330042,-0.2845998457632959,-0.8295051218010485,0.9291017185896635,-0.596618720330298,-0.16442803898826241,0.5004182639531791,-0.5684153586626053,-0.09001907240599394,-0.891937252599746,0.2802108330652118,0.9552285680547357,-0.5015228088013828,-0.7478002398274839,0.6166384550742805,-0.655890972353518,0.7214449876919389,0.0804183823056519,-0.8737702229991555,0.3939724825322628,0.9574934290722013,-0.09880121424794197,-0.9208143246360123,-0.44221266685053706,-0.5967637151479721,0.10792383598163724,-0.7324417335912585,0.5922984243370593,-0.7034877636469901,-0.413058842997998,0.7436848571524024,0.3030992951244116,-0.06049044569954276,-0.4547164933755994,-0.4686902738176286,0.6738371178507805,0.4033782663755119,0.9661817271262407,0.6736647421494126,0.6758738504722714,-0.8638907498680055,0.29875458078458905,0.4735060683451593,0.31399896554648876,-0.4476431207731366,0.19053395045921206,0.321280216332525,0.4733989182859659,0.2942402600310743,-0.3555711293593049,0.5864744149148464,0.04523956449702382,0.0009346120059490204,-0.36461767135187984,0.7619470283389091,-0.08772909175604582,-0.2949117897078395,0.8265237421728671,0.9350538938306272,-0.6104083368554711,-0.3801927864551544,0.5847420180216432,0.5250550941564143,0.8841624790802598,-0.969392987433821,-0.7237040158361197,-0.06570122065022588,0.4324008272960782,-0.8491209805943072,-0.21461979066953063,0.45025001652538776,0.5913150701671839,0.9182592034339905,0.5740631120279431,0.27426204830408096,-0.7056242837570608,-0.6478534126654267,0.3373391996137798,0.4958492196165025,0.425514233764261,-0.9153337408788502,0.4618226829916239,-0.8113033482804894,0.6186237414367497,-0.03950583003461361,0.27009895676746964,-0.8154662624001503,0.43188963178545237,-0.7526825396344066,0.6836081040091813,-0.5786538259126246,-0.36577949533239007,-0.8928197966888547,0.014920543879270554,0.6949335807003081,-0.47392646316438913,0.6555895311757922,0.5402307244949043,-0.9193832254968584,-0.7321329670958221,-0.22498335735872388,0.4556031432002783,0.8134772563353181,0.32517017563804984,-0.6225819401443005,-0.10888401139527559,0.733504022937268,-0.04843065328896046,-0.906495553907007,0.8578247679397464,-0.5300673833116889,-0.13234176114201546,0.13893323577940464,-0.18629401130601764,0.11478668684139848,-0.7481577903963625,-0.23953284602612257,0.38012876082211733,0.9956431840546429,0.710410256870091,0.40180567651987076,-0.958551811054349,0.8656324790790677,0.706304722931236,-0.15504135191440582,0.89172353874892,0.21908839279785752,-0.263635307084769,-0.5881489552557468,0.394095700699836,-0.5334495860151947,-0.6916223824955523,-0.4160861554555595,-0.6430600234307349,0.8742255098186433,0.32369252294301987,0.40782052651047707,0.8495588609948754,-0.6958278911188245,-0.06032498273998499,0.9219650961458683,-0.8287481269799173,0.8678646539337933,0.7949127741158009,0.9332139566540718,0.05478125438094139,-0.20997878164052963,0.4802848771214485,0.7323310622014105,0.5475979875773191,-0.4732588902115822,-0.42353698378428817,-0.444285832811147,0.8539209603331983,0.08544674655422568,-0.774250503629446,-0.6600153241306543,-0.27030638698488474,0.8883654451929033,-0.5708672883920372,-0.14768235618248582,0.7499817260541022,-0.5930884443223476,0.4976072823628783,-0.390790325589478,-0.14336256217211485,0.4507930828258395,0.5887488652952015,-0.6594112645834684,-0.7221088455989957,0.878114971332252,0.9333451618440449,-0.4847260732203722,0.32952384650707245,0.6275448128581047,0.12705018231645226,0.6874631233513355,-0.7720642602071166,0.17975039407610893,0.6415620096959174,0.7318236697465181,0.012580519542098045,0.9957605567760766,-0.12385251419618726,0.042876943945884705,-0.1585581647232175,0.6350254686549306,-0.5628664218820632,0.2971880850382149,0.7729310817085207,0.3645430183969438,-0.7904723975807428,-0.16921545658260584,0.28139355685561895,-0.039887456223368645,-0.6286252029240131,-0.29862560238689184,-0.5320470067672431,0.0152185526676476,-0.8552943174727261,-0.6281015174463391,-0.17863156273961067,0.5004213112406433,-0.8861745297908783,0.07428905321285129,0.11294963676482439,-0.36422356124967337,-0.40922267688438296,0.23282239818945527,-0.4016835377551615,-0.8865965711884201,0.3225819761864841,0.7428554040379822,-0.5115160280838609,-0.4771038289181888,-0.529391685500741,0.6781840464100242,-0.8788307304494083,-0.6973882196471095,-0.6915095658041537,0.40504204807803035,-0.817233273293823,0.9916965793818235,0.7725369888357818,0.7904586503282189,0.6892474428750575,0.4639637293294072,0.6844965247437358,-0.5306569114327431,0.4038208993151784,-0.912931832484901,0.26763112284243107,-0.21698912419378757,0.6054155202582479,0.22525485325604677,-0.33661313401535153,0.4955979688093066,-0.777619494125247,-0.7030530059710145,0.06464814022183418,0.5376517185941339,-0.07756283227354288,0.2274179090745747,0.7095695119351149,-0.20001853862777352,0.9818338961340487,0.005951937288045883,-0.5889317882247269,-0.3758108322508633,-0.2859109747223556,-0.8829243369400501,-0.6163919167593122,0.7411691043525934,0.9016473512165248,-0.5603981278836727,-0.7162597379647195,-0.390649801120162,-0.49539729626849294,-0.6726447381079197,-0.6509142783470452,-0.10584853403270245,-0.26351438043639064,-0.9702359582297504,-0.29055315162986517,-0.5746187614277005,0.8988897390663624,-0.7312881704419851,0.20112814148887992,-0.43064408004283905,0.03652710700407624,-0.1213502106256783,-0.3028991841711104,0.2679765713401139,0.39268242847174406,0.1756204911507666,-0.14082539454102516,-0.847872257232666,0.20438226778060198,-0.45489535573869944,0.6198816876858473,-0.39055202063173056,0.4876895467750728,-0.9593403651379049,-0.5994482561945915,-0.0013428791426122189,0.3914316133596003,-0.6231855303049088,-0.3324347147718072,0.9477141108363867,-0.4627306228503585,0.32960969815030694,0.9325525588355958,-0.5254132263362408,0.812328849453479,-0.6418542666360736,-0.1660850141197443,-0.1416860232129693,-0.6993579613044858,0.1603308403864503,-0.45417178329080343,-0.2882364862598479,-0.5205279560759664,0.16476457193493843,-0.21946807205677032,-0.8758238446898758,-0.7098920387215912,-0.7273956057615578,-0.08852924266830087,-0.5326863839291036,0.9867866453714669,-0.7355529088526964,0.2403288632631302,0.2568540843203664,0.7815054142847657,0.28632010566070676,0.13984115328639746,-0.12773769302293658,0.32252191193401814,-0.24491863418370485,-0.36340717459097505,-0.4470510589890182,-0.2316262829117477,-0.06958019267767668,0.32188534922897816,-0.20327908359467983,0.5297473799437284,-0.3466580896638334,-0.425500113517046,-0.9207338090054691,-0.7488147830590606,-0.17072083475068212,0.04297101031988859,0.49672802025452256,0.5554333659820259,0.2070078533142805,0.48197342827916145,0.9232834009453654,-0.8532204129733145,0.04260054836049676,-0.44251295598223805,0.05530612962320447,0.6870608287863433,-0.44708597008138895,0.31484641321003437,0.7373022167012095,-0.6752080982550979,-0.5667946166358888,0.27693864330649376,-0.9911139304749668,-0.3922712877392769,0.2839554464444518,-0.2207795581780374,-0.6870471672154963,0.7262329082004726,-0.9366637878119946,0.36375611182302237,0.03705713292583823,-0.7717480883002281,0.6429537711665034,-0.16877087345346808,-0.9477636846713722,0.6557772955857217,0.4699641475453973,-0.7090597860515118,0.7330036982893944,-0.15006576757878065,0.16534921526908875,-0.028525564819574356,0.874428290873766,-0.9172580605372787,0.7010089415125549,0.27405452728271484,0.7541505699045956,0.07587657263502479,-0.9478479227982461,-0.04729313077405095,-0.453361879568547,0.1671176217496395,0.0025803232565522194,0.04143791366368532,-0.94101516995579,-0.7120516351424158,-0.6252057077363133,0.4704905552789569,0.5019500446505845,-0.729611427988857,-0.4034850634634495,-0.42344726994633675,-0.7639238061383367,-0.6519685816019773,0.9398336675949395,0.27227162243798375,-0.2125789006240666,0.23925563599914312,0.6306385975331068,0.25368312327191234,0.9249777421355247,-0.11632625386118889,-0.1798514099791646,0.614887144882232,-0.2145385444164276,0.37838267581537366,-0.41132864030078053,-0.549976228736341,0.6972433221526444,-0.7459150981158018,0.7367291119880974,-0.906934863422066,0.005829512607306242,-0.3818259248510003,0.7951756808906794,0.20850824797526002,0.8150808895006776,-0.6337951417081058,0.0021512331441044807,0.5811337819322944,0.9281213525682688,0.6451123948208988,-0.9175751940347254,0.7065978315658867,-0.5589382271282375,-0.16062692180275917,0.18582518910989165,-0.5472987974062562,-0.9528596620075405,0.43983293417841196,0.12132500810548663,0.26430227514356375,0.8788221767172217,-0.4621223844587803,-0.36860661627724767,-0.22836340870708227,0.29543681209906936,-0.6564263496547937,-0.8534022262319922,0.8012224370613694,0.10229194955900311,-0.5244063790887594,-0.12380109680816531,0.8474438730627298,0.6712558045983315,0.909270822070539,-0.8950139530934393,-0.6386864143423736,-0.8301483555696905,0.3113790829665959,-0.7232979824766517,-0.147953272331506,-0.1067564426921308,0.9825437846593559,0.40185802057385445,-0.9759341082535684,0.01845322595909238,0.6258767326362431,-0.49521730840206146,0.04324892722070217,-0.47127857943996787,-0.7593896258622408,0.3105374313890934,-0.7920093750581145,-0.7530914791859686,-0.6080791251733899,0.03852438274770975,-0.18194097932428122,0.35059799766168,-0.376751481089741,0.05357431713491678,0.6885169507004321,-0.7085544252768159,-0.05170884542167187,-0.028573439456522465,0.5970484269782901,0.8197725946083665,-0.2671814844943583,-0.7387909037061036,-0.039114028215408325,-0.6605371562764049,0.15312143322080374,0.7651766198687255,-0.21327295852825046,0.7732253731228411,0.43617238849401474,0.33272286131978035,-0.6394746992737055,0.5421555126085877,-0.4907602812163532,0.16531174117699265,0.5942286713980138,-0.5771816079504788,-0.9738007956184447,0.8388110743835568,0.09117258619517088,-0.5246664006263018,0.9379327646456659,0.7784286304377019,0.6680261986330152,0.23724827682599425,0.19687596149742603,0.0065785963088274,-0.27274338295683265,0.8526985459029675,-0.2582025146111846,-0.8596802931278944,-0.14588348800316453,-0.9578169244341552,-0.7603073115460575,-0.6399846919812262,-0.5891104368492961,0.9907275531440973,0.10537538398057222,-0.9801690992899239,-0.382042296230793,-0.632461036555469,-0.9206117861904204,-0.9469749219715595,0.810943678021431,-0.7610626742243767,-0.6475687106139958,0.26313992077484727,0.9009616575203836,-0.34555484354496,-0.7590625090524554,0.743184837512672,0.7741819084621966,-0.22314848564565182,-0.597196766640991,-0.056709693279117346,-0.32428182661533356,0.07214507088065147,-0.24277227511629462,0.6574585177004337,0.7261221893131733,-0.12596793938428164,0.7338015330024064,0.07292143907397985,0.7212834251113236,0.6406383854337037,0.06590368691831827,-0.9375338652171195,0.3520284299738705,0.9826664132997394,0.3373801060952246,0.7447154908441007,0.26261824276298285,-0.7733386000618339,-0.7890396104194224,-0.020237118937075138,0.37681880220770836,-0.6183765567839146,0.0015671560540795326,-0.8718201285228133,-0.7913665613159537,0.96486726263538,-0.8223006157204509,0.13511982513591647,-0.25742877274751663,-0.2698067966848612,0.4924190095625818,-0.869992895051837,0.33409912837669253,-0.737410572823137,-0.8929542088881135,0.4182529877871275,-0.024293692782521248,0.32081335317343473,0.21873375913128257,0.2781714531593025,0.12213465292006731,-0.17945113265886903,0.4271263279952109,0.6299920552410185,0.31155954161658883,0.6273326436057687,0.6703226598910987,0.4978622579947114,0.833729425445199,0.540889157447964,0.07986775832250714,-0.16306329611688852,0.19447557348757982,0.9032450136728585,0.9524180036969483,-0.5964619847945869,-0.0294064381159842,-0.1858039628714323,-0.7999950521625578,-0.9636486605741084,-0.6766128549352288,0.4908984242938459,0.8081393837928772,-0.42807992035523057,0.4655664120800793,-0.14538540644571185,-0.28107958380132914,0.07772955112159252,-0.19324228493496776,0.14263843093067408,-0.8633178137242794,0.3446542890742421,0.07801884459331632,-0.5798727530054748,0.5501625100150704,0.07099725306034088,0.13244118075817823,-0.9003795473836362,0.8943802318535745,-0.9130818811245263,-0.23337773233652115,0.1205075983889401,0.7451105299405754,0.6602721563540399,0.3576003136113286,-0.5080154379829764,-0.14251256408169866,0.9392137466929853,-0.5716472887434065,0.196203900501132,-0.2823286894708872,0.710655324626714,0.14381082030013204,-0.14930015243589878,0.5890378714539111,-0.2284411615692079,0.7195260743610561,0.8231054479256272,-0.5635672803036869,0.21195934107527137,0.3207001374103129,-0.21530821407213807,-0.5461379056796432,-0.967072531580925,0.11666023172438145,0.41737864585593343,-0.45690369233489037,-0.901626159902662,0.8345955014228821,-0.6411652360111475,-0.6266988157294691,0.6566358925774693,-0.5405896785669029,-0.5389674361795187,-0.5763635197654366,-0.9448162782937288,-0.5038620918057859,-0.5563914785161614,-0.46308583952486515,0.6804527719505131,-0.09327299892902374,-0.014700483996421099,0.46045572962611914,-0.9347552354447544,0.13686157437041402,-0.2220311565324664,0.8824064298532903,-0.7053045495413244,0.5239640199579298,0.3446696847677231,0.8987320126034319,-0.5990634271875024,-0.8481405205093324,-0.6110510593280196,0.8166964240372181,0.4111611326225102,-0.10872901882976294,0.5983157143928111,-0.3824375276453793,-0.04053612891584635,0.5727858822792768,0.6898721139878035,-0.6306000729091465,-0.687691742554307,-0.17642694897949696,-0.9739125003106892,0.2922509894706309,-0.05356971733272076,-0.576438907533884,-0.0299328975379467,0.031177089549601078,0.06300087133422494,-0.7541307997889817,0.3091586893424392,-0.8421615436673164,0.6156812570989132,0.9507271219044924,0.8793988581746817,0.5350643624551594,0.82820979738608,0.1071875193156302,-0.03609921270981431,-0.020078317262232304,0.3123692702502012,0.45853086607530713,-0.6151984119787812,0.3438036469742656,-0.4304254106245935,0.8216526857577264,0.5709430412389338,0.45578209962695837,-0.5017108637839556,-0.6603023987263441,0.4254207699559629,0.9203098695725203,-0.24807873647660017,0.9432137347757816,0.753830281086266,-0.015394050162285566,0.7652440690435469,-0.5499485088512301,0.26735534286126494,0.8266237983480096,0.9621313968673348,-0.3954942040145397,0.17730906000360847,-0.6566969631239772,0.02310012001544237,0.911262390203774,0.8442948730662465,0.03564537409693003,0.1106097144074738,0.3064372604712844,-0.9066801117733121,0.6125622810795903,-0.28015201166272163,0.7331012366339564,-0.7422707877121866,0.1990250195376575,-0.897429674398154,0.02577316341921687,0.6064586313441396,-0.6654139044694602,0.19693020451813936,-0.7734126062132418,-0.548509054351598,0.934817093424499,0.6483456739224494,-0.32880822056904435,-0.3267184719443321,0.020197111647576094,-0.5997851365245879,0.6017608377151191,-0.8472216720692813,0.6986832595430315,0.34462612215429544,-0.2311370773240924,-0.49536008993163705,-0.02899256208911538,-0.5584292844869196,-0.12991985073313117,-0.16888027172535658,-0.9955657203681767,0.4102256861515343,-0.21466725459322333,0.8419112167321146,0.913769172038883,-0.6686102547682822,0.26581467455253005,-0.1573682837188244,-0.36946956627070904,-0.4458801234140992,0.31499195424839854,0.367309648077935,0.8999588466249406,-0.7297015059739351,-0.8642859715037048,0.46722483402118087,-0.7161081661470234,0.25466981530189514,0.5072758896276355,-0.338007936719805,-0.45517308032140136,0.2097727288492024,-0.5448516900651157,0.6783339758403599,0.5039356616325676,0.4975177044980228,-0.5973054231144488,-0.667662771884352,0.4763320479542017,-0.21098886569961905,0.7272124183364213,-0.5357652152888477,-0.2719423146918416,0.09655643720179796,0.3054651548154652,-0.04007437499240041,0.05506115686148405,0.5542475651018322,-0.44206997845321894,0.49194674706086516,-0.4236821006052196,-0.46952311135828495,-0.95090561080724,0.5527378129772842,-0.32914272090420127,-0.05094007821753621,0.3863123129121959,0.15853321459144354,0.8780694562010467,-0.7339368872344494,0.29618912003934383,-0.6315983147360384,0.21076457342132926,0.4948383909650147,-0.1893776673823595,0.8506245035678148,0.21381774684414268,0.6783343972638249,0.009448988363146782,-0.15088493889197707,-0.16489455569535494,0.45315822632983327,-0.38197594322264194,-0.21426548901945353,0.9584582187235355,0.48839110555127263,-0.8426623367704451,-0.892044787760824,-0.1103870621882379,-0.9269610927440226,-0.975325093138963,0.0925887911580503,0.7980230408720672,0.4948305538855493,-0.6954344497062266,0.6147346873767674,-0.14667949127033353,-0.12360621150583029,-0.6253428505733609,-0.16370067605748773,-0.8194352705031633,0.6726504405960441,-0.5957008968107402,-0.8774101599119604,-0.06573276175186038,0.7599016963504255,0.7677576914429665,0.39191390108317137,0.012811102904379368,0.30597810773178935,-0.893685300834477,-0.26827762369066477,0.5375708043575287,-0.4111036341637373,-0.8645566208288074,-0.7710157986730337,-0.4365880931727588,-0.8352868594229221,0.8339512036181986,-0.8677562954835594,-0.03859105799347162,-0.8690444948151708,-0.6047223298810422,0.30874792765825987,0.719207604881376,-0.3721386925317347,-0.5603028582409024,-0.963126007001847,-0.1650661053135991,0.2903585215099156,-0.3927408563904464,-0.376533817499876,-0.7079771226271987,0.2965345745906234,0.14770520059391856,-0.12610163493081927,0.8188850125297904,-0.2890978157520294,0.49629992665722966,0.18143383832648396,-0.16753683984279633,-0.1840262613259256,-0.5114672845229506,-0.2944078389555216,0.5311477412469685,0.8319072085432708,-0.9959083460271358,0.09023864287883043,-0.6896582902409136,0.6592808510176837,0.3287693033926189,-0.37982654152438045,-0.5965708065778017,0.2802351526916027,0.8638263060711324,-0.9067347468808293,0.6115402863360941,-0.12352637620642781,0.843024667352438,-0.6286906776949763,0.2590290573425591,-0.32031937036663294,0.49297800892964005,-0.4695479804649949,-0.4905912559479475,-0.19553804025053978,-0.6839101831428707,0.7473995792679489,-0.25011863093823195,0.15131197962909937,-0.9544134153984487,-0.2557006236165762,0.4861421762034297,-0.21853544283658266,0.9954993058927357,-0.14617262268438935,-0.9304162999615073,0.7945250393822789,-0.40547208162024617,0.318829835858196,0.7657005260698497,0.15142417140305042,0.7313234871253371,-0.534609756898135,-0.7202127883210778,0.46612290665507317,-0.44449730683118105,-0.9118788102641702,-0.21818792121484876,-0.1298540779389441,-0.10759600205346942,0.161459150724113,0.7965069864876568,-0.12527430662885308,0.05294770607724786,-0.7244055517949164,-0.5497079850174487,-0.5247231717221439,-0.4649974540807307,-0.42020917870104313,-0.2899814718402922,-0.6638689404353499,0.7589849750511348,0.33502453519031405,0.05112879630178213,-0.9807140091434121,-0.8106179479509592,-0.5275735156610608,0.8807042585685849,0.08117985399439931,-0.4601847459562123,0.11954272259026766,-0.37334809405729175,0.9974249959923327,-0.7008134350180626,0.08297379966825247,-0.9980639931745827,0.8381254775449634,-0.0216334848664701,-0.518965682014823,0.8759855031967163,0.10662603052332997,0.3853738778270781,0.7320122411474586,-0.9372145961970091,-0.5252112033776939,-0.9633133364841342,0.35504816798493266,0.6357773896306753,-0.19135496811941266,0.3955997279845178,0.7799586351029575,-0.46222516475245357,0.6680536232888699,-0.22951191710308194,0.797713101375848,0.02055065706372261,-0.6518685431219637,0.5888806800357997,-0.09207042073830962,-0.9203688316047192,0.14458437217399478,-0.06332870060577989,-0.6705908761359751,-0.8166880430653691,0.08610263420268893,-0.9020132701843977,0.8112424346618354,0.29524960555136204,-0.7518261349759996,-0.1088183750398457,0.3994926940649748,-0.37416823487728834,-0.8625333230011165,-0.6488339337520301,0.6557303476147354,-0.46708409022539854,-0.45001217583194375,0.9453750420361757,0.1258957521058619,-0.03657680004835129,-0.07761189108714461,-0.06195822637528181,-0.11340000433847308,-0.41493905847892165,0.5224197385832667,0.11099474132061005,-0.9650938562117517,0.05467361072078347,-0.5741796870715916,-0.11361009068787098,0.5410539894364774,-0.14796372409909964,0.8136891750618815,0.43043466564267874,0.8885163702070713],"y":[-0.4148943149484694,-0.05322908144444227,-0.5657066567800939,0.7540787030011415,-0.7559131528250873,-0.611789271235466,-0.642395384144038,-0.15677190199494362,0.7746972059831023,-0.15435040835291147,0.5022777109406888,0.9554466735571623,-0.87390615651384,0.007675529457628727,0.14196752524003386,-0.9559160331264138,0.6061088107526302,0.5461709722876549,-0.1131307752802968,-0.73118099803105,-0.5772181954234838,-0.3462430532090366,0.7530084024183452,-0.39596085995435715,-0.5389132993295789,0.2939364528283477,-0.40140166878700256,-0.7365782991982996,0.5904286787845194,-0.3557832236401737,-0.76682766713202,-0.2755652335472405,-0.7568686865270138,-0.5602283165790141,0.23816071124747396,-0.16328849829733372,0.07811106415465474,-0.21430410956963897,-0.8038488072343171,-0.2843540711328387,0.21634011389687657,-0.9619333916343749,0.7183343819342554,0.35429385863244534,0.2055251095443964,0.2663770727813244,-0.962765846401453,-0.020431973971426487,-0.32238520169630647,0.28897642716765404,0.509136316832155,0.15077006351202726,-0.5962306279689074,0.8529767226427794,-0.5077599375508726,-0.08843569085001945,0.5131797031499445,0.1296960455365479,0.5019271010532975,-0.5449662473984063,0.022852222435176373,0.9933670097962022,-0.8915605274960399,0.44437067955732346,0.7047021863982081,0.2509280787780881,0.7654887107200921,0.34178707282990217,0.7589051867835224,0.3451884100213647,-0.5745601183734834,-0.7943813013844192,0.7023639380931854,-0.5234625400044024,0.5556496349163353,0.7610509833320975,-0.939140600617975,-0.8355956161394715,-0.5124179017730057,0.4548792219720781,-0.17076958250254393,-0.691416687797755,-0.7632270697504282,-0.20074121095240116,0.8389712097123265,-0.3633263185620308,0.4807436401024461,-0.30547723453491926,0.0726571255363524,-0.6594279767014086,0.6761675481684506,-0.4156990060582757,0.6235911976546049,-0.24750929698348045,0.48856149008497596,-0.15553431911394,-0.9340255572460592,0.0552330045029521,-0.7188546000979841,-0.9166305339895189,-0.7817292469553649,0.8016161508858204,0.0522223929874599,0.2034140690229833,-0.6785158505663276,0.8517282116226852,-0.9204313480295241,0.5398649754934013,-0.6875288733281195,0.6629827069118619,0.35657056979835033,0.9687284282408655,0.39239337015897036,0.443845194298774,-0.6820870651863515,-0.22179366694763303,-0.9162337738089263,-0.8157605421729386,-0.26769569190219045,0.6078715994954109,0.010654364712536335,0.7887751245871186,-0.44853471778333187,-0.1251218095421791,0.6291835722513497,-0.06975534930825233,0.3951348443515599,-0.4984950893558562,0.3402805724181235,0.2723245080560446,0.6857772599905729,0.576583715621382,-0.27190109621733427,-0.2927842936478555,-0.7700745742768049,0.8623527116142213,0.15887990919873118,0.6602194663137197,-0.5671084760688245,0.20030659576877952,0.3162035238929093,-0.25459506176412106,-0.22465191408991814,0.8105937102809548,-0.7753092558123171,0.2251654933206737,-0.2970305848866701,0.027439707424491644,-0.6164517290890217,0.5487418361008167,0.33360856492072344,0.18838402349501848,0.8690958991646767,0.2947002584114671,-0.7731776395812631,0.9612425710074604,0.9884450086392462,-0.6888547982089221,0.7250582366250455,-0.46333406353369355,0.43302725441753864,0.5498255719430745,0.8439367632381618,-0.6706371996551752,0.8377037635073066,0.2616159156896174,-0.5414693122729659,-0.024021147284656763,-0.060631133150309324,0.5382385775446892,0.35767411487177014,-0.6767666395753622,-0.00936712371185422,-0.8300594221800566,0.9833542183041573,0.33238371927291155,0.9259161250665784,0.5843556136824191,0.9863582998514175,0.7834640885703266,-0.6358139342628419,0.7645155633799732,-0.5995383625850081,0.3536770371720195,-0.0927179018035531,-0.664871561806649,-0.9602927910163999,0.728968657553196,-0.8153338707052171,0.13787597883492708,-0.475587354041636,-0.6893525714986026,0.6504845307208598,-0.806912352796644,0.6326313791796565,-0.522019409108907,-0.19364116480574012,-0.6759705049917102,0.32294995756819844,0.48088516714051366,-0.061851915903389454,0.29983410611748695,0.7825151202268898,-0.9486370496451855,-0.5832365406677127,0.11362819466739893,0.666737066116184,0.018864445853978395,-0.36059424187988043,0.6844994658604264,0.6561438385397196,0.8848502384498715,0.7349935662932694,0.8754587126895785,-0.17365517653524876,-0.007702193688601255,-0.6948248730041087,0.43642906146124005,-0.7760757463984191,-0.5913146012462676,-0.34809534903615713,0.1302797207608819,-0.7401305655948818,-0.24004921363666654,-0.7653884938918054,0.6987675288692117,-0.10409665759652853,-0.6388694173656404,-0.8857434177771211,-0.3217401849105954,0.7730129365809262,-0.8833351656794548,0.8705278770066798,0.08533583721145988,0.25228774826973677,0.7058841469697654,0.824328800663352,0.06658874871209264,0.7372156647033989,-0.5850428445264697,-0.8345907982438803,-0.5554347322322428,-0.007728183176368475,0.675477446988225,-0.528837229590863,0.4990190821699798,-0.42480211751535535,0.8251589913852513,-0.8337511741556227,-0.5200913390144706,0.5129119609482586,-0.4233617093414068,0.6427641054615378,0.923302061855793,0.008307775482535362,0.8458602298051119,0.033006795682013035,-0.6967526273801923,-0.5755688520148396,0.820415485650301,0.5279560266062617,0.03687515342608094,-0.03439094591885805,-0.9353981036692858,0.18346436321735382,-0.8277077740058303,-0.7843118929304183,-0.13784374250099063,0.9553559799678624,-0.9962268341332674,-0.3512312937527895,-0.17407285794615746,-0.7028389796614647,-0.29457880137488246,0.7804999477230012,0.09528758749365807,0.2148877694271505,0.1787424050271511,-0.38118947856128216,-0.4497222420759499,-0.8402220401912928,-0.134302974678576,0.9965919987298548,-0.5177098498679698,-0.7228735061362386,-0.5267454637214541,-0.9005452790297568,-0.834089539013803,0.4156648935750127,-0.26150630228221416,-0.17659681988880038,-0.31315478635951877,-0.711490505374968,0.5658034216612577,0.11298081371933222,-0.6701181409880519,0.5721735288389027,-0.6233975137583911,0.759590963833034,0.7206755061633885,0.9579947688616812,-0.1367412507534027,0.7236999575980008,-0.9612051080912352,-0.5936188856139779,0.3726407513022423,-0.7439951095730066,0.601601664442569,0.2471882328391075,-0.9959624498151243,-0.0788356545381248,0.9239837722852826,-0.7138215838931501,-0.4843657943420112,0.47994263703003526,0.7896306030452251,-0.6233766605146229,0.8455885709263384,-0.5959234898909926,-0.9416110962629318,0.09100418398156762,-0.3440690222196281,0.08660530718043447,0.702151220291853,0.047184566501528025,-0.4257761943154037,0.3510317876935005,-0.4407510543242097,0.5484584956429899,0.21206484828144312,-0.8272165511734784,-0.5400421940721571,0.776907994877547,-0.23028985084965825,-0.530916718300432,-0.6610205927863717,-0.26265675760805607,0.3064190484583378,0.5463586798869073,-0.9742376478388906,-0.7904762597754598,0.760365966707468,0.7131616813130677,-0.5815708246082067,0.3642197288572788,0.821355517487973,-0.9908205261453986,0.7476359158754349,0.48119658697396517,-0.009971775114536285,0.33463340951129794,-0.39549361262470484,-0.9587650457397103,0.05856242496520281,-0.6192740299738944,-0.45476447604596615,-0.11188734648749232,0.8929265066981316,0.4921009112149477,-0.6737840874120593,0.20041258912533522,0.8139751558192074,0.9648314043879509,-0.005822648294270039,-0.9805512721650302,-0.0741713079623878,0.3862371137365699,0.7456419919617474,-0.557761762291193,0.8711467711254954,-0.6433548298664391,0.6250360514968634,-0.42173622734844685,-0.7036215448752046,-0.6395401633344591,-0.9710573307238519,-0.4223147057928145,-0.6708181272260845,0.13961141556501389,-0.2728014891035855,0.43292762991040945,-0.6760296681895852,0.6721365628764033,0.2698233937844634,0.9678804571740329,-0.02162538655102253,0.21717765647917986,0.8208858431316912,0.4067602097056806,-0.7045975406654179,0.9172843461856246,-0.32603269862011075,0.5867767157033086,0.26352716609835625,-0.7187536917626858,0.46578174317255616,-0.7547663124278188,0.22247897740453482,0.6088470169343054,0.0777841149829328,0.8565677045844495,0.7353067537769675,0.8083177176304162,-0.5856815963052213,0.9033746612258255,-0.24378164438530803,0.8813880481757224,0.32658804627135396,-0.5177658745087683,0.4289703997783363,-0.4931930019520223,0.11495229508727789,-0.7201238567940891,-0.769504901021719,0.703813617117703,-0.8277630275115371,-0.473446108866483,0.7696062331087887,0.08697701618075371,-0.28459111182019114,-0.3728139754384756,0.5273430184461176,0.07471907418221235,0.12967038480564952,0.937652740161866,0.6043393234722316,-0.0034559639170765877,0.2526407316327095,-0.38487292639911175,-0.6000182856805623,-0.3527412754483521,-0.45200085267424583,0.2167912134900689,0.5032646497711539,0.058027520310133696,-0.5443714242428541,0.9036083701066673,0.2842714125290513,0.523040181491524,-0.63009560899809,0.18682482512667775,0.644749688450247,-0.6721238698810339,-0.9919368969276547,-0.3235474736429751,0.4336663824506104,-0.09630319802090526,-0.594646027777344,-0.996162498369813,0.25006647082045674,-0.026242921594530344,-0.31015920359641314,-0.2781536332331598,0.605785695835948,0.016890415456146002,0.9337343997322023,-0.9797452497296035,0.7408537142910063,-0.7405062261968851,-0.3006660849787295,-0.9623843748122454,0.8653999022208154,-0.029536144342273474,0.7961308392696083,-0.775408189278096,0.10403446480631828,-0.25294611789286137,0.7924088686704636,-0.6597685199230909,0.6757540898397565,-0.48015421256422997,0.35145308496430516,0.7802205691114068,-0.4243635735474527,-0.2622988331131637,0.5661000343970954,-0.3509658072143793,0.725075765978545,0.5463915406726301,-0.937810342758894,0.6810100446455181,-0.8009515651501715,-0.42798265954479575,0.0017094197683036327,-0.40702966460958123,-0.4101750166155398,0.9696926828473806,-0.8829861623235047,0.9689300237223506,-0.0856598699465394,-0.14231421146541834,-0.924477752763778,0.1592222680337727,0.18931584479287267,-0.9129088767804205,0.7581617902033031,0.6501329010352492,0.09160733735188842,-0.6673793969675899,0.34700619988143444,0.4185712616890669,0.7102774335071445,0.9519581156782806,0.9572970303706825,0.3829246824607253,-0.10787128191441298,-0.8009792771190405,0.7701826468110085,0.4389378326013684,-0.4938504472374916,-0.6232530027627945,0.2520084693096578,0.15649422723799944,0.954111679457128,-0.9048070982098579,-0.23316762130707502,0.21468034433200955,-0.45961397886276245,0.7702221912331879,-0.6268677189946175,-0.8743623844347894,-0.2378125856630504,-0.2128516542725265,-0.8258617245592177,0.6986041078343987,-0.5784591231495142,-0.10460098972544074,0.058445846661925316,0.6185742230154574,0.1269981381483376,0.14122615847736597,0.6853234684094787,-0.30530587024986744,-0.002863769419491291,-0.14771823212504387,-0.8842421416193247,0.5251614144071937,0.07006286131218076,-0.34682054724544287,0.3346840380690992,-0.6934542693197727,0.42952990671619773,0.15818015299737453,0.48388443794101477,0.9032633355818689,-0.9479390932247043,0.08274079812690616,0.5287954863160849,-0.09091449249535799,0.9782146504148841,-0.4931654674001038,-0.9722139383666217,0.761110095307231,-0.6021571471355855,-0.43044253112748265,-0.33619989873841405,0.9804607811383903,-0.28979400359094143,-0.793768597766757,-0.481866386719048,0.6563308965414762,-0.5343861039727926,0.29038819670677185,0.347958916798234,0.2177334800362587,-0.9572438760660589,0.06530829379335046,-0.9241992165334523,-0.8720012130215764,-0.06454489752650261,0.3875914113596082,-0.2838555984199047,0.4831461161375046,-0.27117525041103363,-0.8424869985319674,0.158678671810776,0.9148754253983498,0.29016628209501505,-0.6506709069944918,0.5569202923215926,0.8427006434649229,0.5586588713340461,0.8568279244937003,-0.3691926714964211,-0.8087159520946443,0.7483953856863081,0.5248099835589528,0.7097846241667867,-0.0067543513141572475,-0.5958099514245987,-0.7388393101282418,0.9333928236737847,-0.3062029299326241,-0.2751490203663707,0.3511052909307182,-0.9681864907033741,0.5512914881110191,0.11216022027656436,-0.38941726135089993,0.6711740102618933,0.0061518410220742226,0.7721564234234393,-0.27322288090363145,0.9489131211303174,-0.2232720530591905,0.6102527105249465,-0.5315886680036783,0.6183759765699506,0.6169840493239462,-0.025213091634213924,0.8503556731157005,0.9889475568197668,0.706686370074749,-0.8115525729954243,0.8575763357803226,0.5371942245401442,-0.7784988507628441,0.9515403588302433,0.286675329785794,0.5130152432247996,0.4733120510354638,-0.39905042853206396,-0.13468545582145452,-0.4147611358202994,0.842505298089236,-0.013243167661130428,0.011683154385536909,-0.4003412905149162,0.6812660964205861,0.38065040949732065,-0.15126953553408384,0.36748124891892076,-0.8509386936202645,-0.2933710813522339,0.19724250584840775,-0.6643284228630364,0.4643685179762542,0.5882572452537715,0.8268790547735989,-0.5481000049039721,-0.1979781985282898,-0.5285006430931389,-0.4314089068211615,0.17653836496174335,0.875384674873203,0.43984073773026466,-0.9988669198937714,-0.2918983814306557,0.9252750962041318,-0.9340029414743185,-0.21207505790516734,-0.19453766755759716,-0.6516849659383297,0.35854715993627906,-0.6268773302435875,-0.035504451021552086,-0.41865747002884746,0.21750168222934008,0.33001854503527284,0.7087209112942219,-0.8535300362855196,-0.8930442295968533,-0.4711762755177915,0.42771185003221035,0.1073402538895607,-0.7287869020365179,0.5997194112278521,0.36335215670987964,0.7670967932790518,-0.44041335489600897,0.8439986649900675,-0.1022182023152709,0.4951737681403756,-0.2796855787746608,-0.979859268758446,0.9301733868196607,-0.7735993331298232,-0.3080004323273897,0.8884365325793624,-0.5647519500926137,0.9858282166533172,0.07720284909009933,-0.6514645437709987,-0.8701128666289151,0.8266037302091718,-0.6480993488803506,0.015409977175295353,0.10831631952896714,-0.39843163592740893,-0.412526470143348,-0.22595839714631438,-0.7936199251562357,0.9708700655028224,-0.026460913475602865,0.3492553704418242,0.8462226339615881,0.90603754715994,0.30257306061685085,0.2574272775091231,0.07168678287416697,0.3485611258074641,-0.9631193852983415,0.7594712870195508,0.7318728598766029,-0.12733882432803512,-0.08388991234824061,0.9532926650717854,-0.10489532863721251,-0.8878935147076845,-0.21905101370066404,-0.22913809539750218,-0.07090752199292183,0.14382140757516026,-0.38453605212271214,0.9554658494889736,0.6143127204850316,0.8846504022367299,0.5909256529994309,-0.8995190975256264,-0.6977467890828848,0.20131134241819382,0.24299748288467526,-0.001161626074463129,0.82452093064785,0.3950263732112944,-0.9834178625606,-0.8766640448011458,0.7515655974857509,-0.5051443334668875,-0.8891514739952981,-0.47872232599183917,-0.21053114999085665,0.9378965403884649,0.9959869901649654,-0.07874383078888059,-0.4820738681592047,0.21277087228372693,-0.4891392500139773,0.5015307446010411,0.8381548095494509,-0.21560852136462927,0.9494690834544599,0.6613760837353766,-0.9943535970523953,-0.00778392655774951,-0.8025149218738079,-0.6502036019228399,0.7949751620180905,-0.2635853639803827,-0.8070222088135779,0.890543453861028,0.06060729408636689,0.06908467784523964,0.5506678377278149,-0.9256261866539717,0.7907799780368805,0.721301875077188,0.13373030070215464,0.4903983692638576,-0.2513394742272794,-0.23807906778529286,-0.5528404908254743,-0.14302660850808024,0.9248096384108067,-0.5407417281530797,-0.19652583822607994,0.1796450070105493,0.20183340786024928,0.35630306508392096,-0.11646702233701944,-0.10252290358766913,-0.0301133100874722,-0.7360814595595002,0.2971981265582144,-0.36256496980786324,0.4401315376162529,0.917702803388238,-0.2531671700999141,0.37682014238089323,-0.4094706652686,0.6604209369979799,-0.488278737757355,0.5393474907614291,0.4515559421852231,0.018706700298935175,-0.5108704357407987,-0.9335089367814362,-0.9148903200402856,0.03321581892669201,-0.5616207686252892,0.6938418890349567,0.5233868374489248,-0.936926526017487,0.19886764651164412,-0.24555477313697338,0.44116864493116736,-0.5782676641829312,-0.9095776071771979,0.8722786661237478,-0.7630601995624602,-0.15583666134625673,0.19941957434639335,0.04333720123395324,-0.11106016533449292,-0.7953543360345066,-0.4904268542304635,0.05076200794428587,-0.19892949471250176,-0.33817547652870417,0.20371291460469365,0.15514947893097997,0.10174453677609563,0.41892329324036837,-0.9941951553337276,0.9945111959241331,0.03630049480125308,0.9053853815421462,-0.7503786506131291,-0.5880448613315821,0.45186715107411146,-0.654826168436557,-0.8999606566503644,-0.33124629547819495,0.258685942273587,0.7418474382720888,0.9583611371926963,-0.018160016741603613,-0.2182601559907198,0.9584714444354177,0.7129439427517354,0.8424095124937594,-0.8594876043498516,0.08917679451406002,0.3549941936507821,0.3596017067320645,0.5561349932104349,-0.09419074701145291,0.013381460215896368,0.5730745736509562,0.5206948928534985,-0.061292397789657116,-0.9175482443533838,0.8221618365496397,0.35698714200407267,0.15327238384634256,0.11509345471858978,-0.0995273613370955,0.17982956441119313,0.5214666980318725,-0.5833823755383492,-0.697543338406831,-0.09065412683412433,-0.9612679029814899,0.7745389002375305,-0.461577164940536,0.5492967390455306,0.6647572838701308,0.6968981609679759,0.037141745910048485,-0.5561642572283745,-0.44751326786354184,-0.7170433783903718,0.4648825377225876,0.7149927979335189,-0.09752223221585155,-0.3008849401958287,-0.5286722360178828,0.018769266083836555,0.4022898627445102,-0.688089158385992,0.8979037902317941,0.844818458892405,-0.5096502159722149,-0.3701224806718528,0.7806300800293684,0.03006900381296873,0.5125135662965477,0.2735772435553372,0.9077620031312108,0.8496049898676574,-0.24773799814283848,0.012394070625305176,-0.4846607521176338,-0.8365943552926183,-0.14090546173974872,0.8519353657029569,-0.12396397348493338,0.6866796929389238,-0.4233893216587603,-0.8223815066739917,0.9882021709345281,-0.35947247641161084,-0.6574152447283268,0.35419132839888334,0.461161732673645,-0.4909642292186618,-0.3961463370360434,-0.1941130142658949,-0.4044173154979944,0.9495283756405115,-0.8453596429899335,-0.160381562076509,-0.09947783406823874,-0.639166803099215,-0.9064240483567119,-0.8238427368924022,0.20482304645702243,0.9600631631910801,0.6506412602029741,0.11615787353366613,0.40288282837718725,-0.24403085047379136,-0.6798685528337955,-0.5909413509070873,-0.8792955558747053,-0.853888051584363,0.4505081158131361,0.3972081677056849,-0.9137571873143315,-0.4032501932233572,0.4567757733166218,-0.3131123138591647,-0.024956253822892904,-0.4713465957902372,0.5883825556375086,-0.9982957146130502,0.800211772788316,0.9744433835148811,0.1959280762821436,-0.44985848013311625,-0.5406836797483265,0.40242254128679633,0.6393245398066938,-0.8218392222188413,0.1273990166373551,0.23252179520204663,-0.5585583671927452,-0.5370797887444496,-0.08941414020955563,0.7962213275022805,-0.13838535221293569,-0.8933968530036509,-0.5865911226719618,0.6633599167689681,-0.06016124412417412,-0.32088335510343313,-0.4406336070969701,-0.6336649954319,-0.031404935754835606,-0.8697155155241489,0.43345314450562,-0.7794825825840235,0.9354334911331534,-0.8968912274576724,-0.29961333936080337,-0.021138472948223352,-0.13783738855272532,-0.28295524418354034,0.9506541327573359,-0.44353066431358457,0.4300660747103393,0.15176674583926797,-0.5425590006634593,0.5966378073208034,0.3399023851379752,-0.08729904936626554,-0.5420349491760135,-0.014604363590478897,-0.8336001574061811,-0.6052996530197561,0.7844701404683292,0.14313162444159389,-0.7156870192848146,-0.8963836468756199,0.287695087492466,0.7201597238890827,0.1650230805389583,-0.8872331492602825,-0.031179865822196007,0.06974088819697499,-0.7521897456608713,-0.1271796585060656,0.052085303235799074,0.9636833560653031,-0.2903052973560989,-0.1209542858414352,0.4356886725872755,-0.1324131991714239,-0.2754013556987047,-0.553810769226402,0.3669751062989235,-0.031597355380654335,0.8109184559434652,0.9695513155311346,-0.8766561839729548,0.5627362267114222,0.2920403443276882,-0.8273572535254061,0.3510225722566247,-0.3455693330615759,-0.9101665541529655,-0.16542813600972295,-0.6533754160627723,-0.10753224091604352,0.32749439077451825,-0.20023176120594144,-0.2531188321299851,-0.05384431825950742,-0.7866845792159438,-0.8202002998441458,-0.7983812927268445,0.4930777419358492,0.8651516335085034,-0.944608018733561,-0.8317817598581314,0.5407339818775654,-0.24860422546043992,-0.19936535647138953,0.2116511119529605,-0.6595984632149339,0.03676991118118167,-0.7418561335653067,0.8367619575001299,-0.5013448232784867,0.6853674640879035,0.7816887120716274,0.04211682919412851,0.07804445782676339,0.3115105661563575,-0.31596126966178417,0.23466509254649282,-0.5281537380069494,-0.5785998832434416,-0.7973547237925231,-0.07144935010001063,-0.2514759204350412,-0.7487983829341829,-0.6869097235612571,-0.7546105599030852,0.15088101522997022,-0.26101998379454017,-0.10597628587856889,-0.47560551716014743,-0.9183327862992883,0.9435919607058167,-0.5478564123623073,0.21268673101440072,-0.6641147695481777,0.8182675819844007,0.37011324474588037,0.5144420037977397,-0.9056523744948208,0.6829336751252413,-0.7973594553768635,0.46096031507477164,0.44068279722705483,-0.33471421897411346,-0.3259377325884998,-0.17934904620051384,-0.018625335302203894,0.25393727608025074,0.6529410262592137,0.698152236174792,0.024420087225735188,0.39849888859316707,-0.1454533482901752,0.3557656845077872,0.01255520386621356,-0.21624279394745827,0.22680720454081893,-0.04947146400809288,0.18928528437390924,-0.8979029525071383,0.3534392905421555,-0.983560589607805,0.3353180196136236,0.8638023650273681,0.11043080501258373,-0.8757526809349656,-0.666116795502603,0.09002991952002048,0.12615228723734617,-0.9920872687362134,0.7120509073138237,-0.5367164136841893,-0.7424403270706534,0.5264127934351563,-0.29433453315868974,-0.30526542384177446,0.6993813393637538,0.1873572114855051,0.7385856811888516,0.7932313485071063,0.8938966835848987,0.35430946107953787,0.966404524166137,-0.8213068996556103,-0.9433900690637529,0.6046032384037971,-0.8176627517677844,0.15097603620961308,-0.485695144161582,-0.9013527827337384,0.6440647728741169,0.9387381873093545,-0.3321291860193014,0.5253696702420712,-0.4427320593968034,0.46422124234959483,-0.22541537461802363,0.7531988457776606,-0.4685777244158089,-0.4369150763377547,0.5426723398268223,-0.8636573730036616,0.8019366515800357,0.5899766138754785,0.4437059718184173,0.5366797400638461,-0.9648062442429364,0.3785778684541583,0.10737464297562838,-0.31344125140458345,-0.15995007054880261,-0.2025496424175799,0.23023283295333385,0.3590497155673802,0.2652216483838856,-0.27656342880800366,0.18878115620464087,-0.6722875707782805,-0.11553479079157114,-0.1050137453712523,0.7973691960796714,-0.42231726134195924,-0.10045856423676014,0.8949042968451977,-0.7315234397538006,0.13897804031148553,0.6955719967372715,0.42196421325206757,0.549120138399303,0.05456577567383647,-0.21521429484710097,0.36467523965984583,0.6148982183076441,-0.044162672478705645,0.6514820642769337,-0.8919295486994088,0.4789150757715106,-0.7521149888634682,-0.8303529564291239,-0.642327481880784,-0.48425063863396645,0.34834593208506703,0.21176609257236123,0.6356410481967032,0.4920339463278651,-0.48383898567408323,0.9002137966454029,-0.677311846986413,-0.49193508364260197,-0.2117948872037232,0.7325408980250359,-0.38148679211735725,0.4574677716009319,-0.38328601187095046,0.8719881074503064,0.4408083246089518,0.8656060039065778,-0.25064416183158755,-0.7275702110491693,-0.0005439883098006248,0.38919485872611403,-0.8557079960592091,-0.37502328772097826,-0.8924067160114646,-0.370336655061692,-0.9278784617781639,-0.4992021657526493,-0.9144266215153039,-0.08534617209807038,-0.8590419953688979,-0.9928941484540701,-0.8326369668357074,-0.28008016012609005,-0.851992916315794,0.1456489572301507,-0.5009388756006956,0.7690699049271643,-0.48948534531518817,-0.9818103415891528,-0.2702849227935076,0.4989632028155029,0.3570491662248969,-0.4346386347897351,0.7812440418638289,0.3840061449445784,0.04085534485056996,0.6781836953014135,0.2505232165567577,-0.04773726733401418,-0.2197754536755383,-0.2553805517964065,0.15213529765605927,-0.32773406570777297,-0.24605659767985344,0.6202159035019577,-0.9034917810931802,0.6875587394461036,0.8535888073965907,-0.13683576602488756,-0.840867942199111,0.2532404665835202,-0.28814981412142515,-0.3361784350126982,0.38037403440102935,-0.5803885753266513,-0.9323354591615498,0.8173953606747091,-0.005903839599341154,0.021049128379672766,-0.31689350260421634,0.004712204914540052,-0.5917656249366701,0.6114537385292351,0.14644024707376957,0.16354885650798678,0.09346573147922754,0.9586891010403633,0.45339276175946,0.8745334562845528,0.4771335213445127,-0.005149479489773512,-0.6303989565931261,0.578137272503227,0.10996737191453576,-0.9534794157370925,0.7245514988899231,-0.4018835914321244,0.64719403302297,0.4266195287927985,0.007722414564341307,-0.9852648857049644,0.6674160682596266,-0.08736630249768496,-0.8097442993894219,0.25024001533165574,-0.758054562844336,-0.5709302648901939,0.007089377846568823,0.4611708801239729,0.9332353728823364,-0.6650054799392819,-0.4452701862901449,0.7817105418071151,0.5795774310827255,-0.6078160335309803,0.6512948139570653,-0.9712149850092828,0.15663439454510808,0.7816756749525666,0.9609799454919994,0.8414909620769322,-0.41155118495225906,-0.7965872208587825,0.22458505909889936,-0.6440734136849642,0.6778081222437322,0.9858643221668899,-0.29373758006840944,-0.7715853997506201,0.4384692977182567,-0.2240317384712398,-0.700062099378556,0.5933167445473373,0.262049647513777,0.7360351006500423,0.053418886847794056,0.7462197514250875,0.3369607231579721,0.5734005626291037,0.7551737427711487,-0.17814959166571498,0.35612499061971903,0.659176919143647,-0.3829961232841015,0.8675928120501339,-0.2111742589622736,-0.9984403108246624,0.4514467213302851,-0.3729659728705883,-0.3700145031325519,0.037410580553114414,-0.5207905755378306,-0.9493611515499651,0.8960491791367531,0.4193294779397547,0.5208822661079466,0.016501586884260178,0.13248200714588165,-0.4301235442981124,0.296859641559422,0.7437201128341258,0.6538626281544566,-0.8437821790575981,-0.2653681575320661,-0.3083036565221846,0.3343973341397941,0.10223493026569486,0.375005089212209,0.9948309524916112,-0.8430477054789662,0.059455765411257744,-0.4794902093708515,-0.4071728899143636,-0.5016400716267526,0.17959723016247153,-0.5018430175259709,-0.01951706502586603,-0.3230009702965617,-0.875232083722949,0.32818260649219155,0.6557474341243505,0.005448147188872099,-0.3101997906342149,-0.7400365732610226,-0.9811581601388752,0.2683183471672237,-0.09372470900416374,-0.7729685679078102,0.588466826826334,-0.13076034421101213,-0.8672140333801508,-0.2543343701399863,0.072909333743155,0.3261423986405134,-0.7986203585751355,0.9202835634350777,-0.14033525297418237,-0.5133148767054081,0.41816375963389874,-0.06855688849464059,-0.835945728700608,0.27369489753618836,0.4294640547595918,0.08907639281824231,0.08419146575033665,0.4143522004596889,-0.836794716771692,0.5224665934219956,0.41733965231105685,-0.9435276719741523,0.7474137553945184,-0.03003376955166459,0.25415212474763393,0.31442375807091594,0.8899615621194243,0.5991534520871937,0.37019174406304955,0.8260248424485326,0.2861469923518598,-0.9968457599170506,0.1551307588815689,0.1841607433743775,0.19186932081356645,0.13897299533709884,0.5113862063735723,0.8244298812933266,0.8606872078962624,0.8419452076777816,-0.08288218453526497,0.7677072393707931,-0.5828610411845148,0.010564624331891537,-0.17895681178197265,0.5194709962233901,0.8160349633544683,0.28341213148087263,-0.1626665834337473,-0.31741065764799714,0.48201680835336447,0.19013754650950432,0.8347337068989873,0.33089553099125624,-0.9334082170389593,-0.7284618131816387,-0.054868354462087154,-0.5827458729036152,0.44165625609457493,0.8374557350762188,-0.028246507979929447,0.5182147803716362,-0.3901658374816179,-0.9181738630868495,-0.31127863144502044,0.20424464344978333,0.04456929350271821,-0.20737973880022764,-0.0955149563960731,-0.005935502238571644,-0.558374548330903,-0.8733758432790637,0.372817596886307,-0.6859360602684319,0.1542037627659738,0.8506143754348159,0.3792474647052586,0.3196159587241709,-0.6815835097804666,0.2744066030718386,-0.8588445140048862,-0.19058839790523052,0.10364594869315624,0.3952451879158616,-0.36271826969459653,0.18687649723142385,-0.23381422460079193,0.9120273906737566,-0.7796618603169918,0.44169252505525947,-0.1031457046046853,0.5705862720496953,0.3682513451203704,0.9835837944410741,0.43372865580022335,0.15977464755997062,-0.34473576955497265,-0.4414922380819917,0.6799281747080386,0.07629746058955789,-0.1465880353935063,0.9754377477802336,0.7466958942823112,0.21771141001954675,0.8700388995930552,-0.4878335976973176,-0.5528684905730188,-0.9482531952671707,-0.78649438964203,0.5659911683760583,0.9082468943670392,-0.13990172697231174,0.6240302929654717,0.9986402383074164,-0.45018621906638145,-0.9738656147383153,-0.5787367662414908,0.19259828375652432,0.9146176311187446,-0.44323802925646305,0.7010773979127407,-0.24490776844322681,-0.9112800960429013,0.7852647821418941,0.2920911838300526,-0.3631530124694109,-0.3775165076367557,0.2052906877361238,-0.03772448841482401,0.06374423624947667,-0.23666911385953426,0.11261631455272436,0.14603692339733243,0.01390362111851573,-0.1813455317169428,0.7782047018408775,0.8449624734930694,0.4803192182444036,0.9892593738622963,-0.48907093377783895,-0.9645919557660818,0.4130588383413851,-0.7831005686894059,0.8697982942685485,-0.2910788543522358,0.9713117093779147,-0.2964427783153951,-0.2216368280351162,0.5106435269117355,0.4534282856620848,0.07260931981727481,-0.4105710214935243,-0.9555852236226201,-0.2254399829544127,0.41194994281977415,0.010392287280410528,0.8277426357381046,-0.6059146132320166,0.317901031114161,0.0630927518941462,0.3104133359156549,0.4290734496898949,-0.0947740375995636,-0.2163722924888134,0.6512239603325725,0.8042081743478775,-0.8854210004210472,0.8251904235221446,-0.7429018849506974,0.15049395663663745,-0.3650395292788744,-0.8947389419190586,-0.6266092923469841,-0.3740002061240375,-0.1668589892797172,-0.7510663480497897,0.8921679155901074,0.6715194093994796,-0.7480671643279493,-0.13228715816512704,-0.7073088348843157,-0.3403857024386525,-0.2094682096503675,0.9310463378205895,-0.995000135153532,-0.25862419372424483,0.7455822979100049,-0.03862552344799042,0.21479998668655753,-0.48880427749827504,0.4210492833517492,0.5611638049595058,0.3687294409610331,0.09608496958389878,0.35273815551772714,-0.8631271719932556,0.35573642468079925,0.9005235093645751,0.27940932800993323,0.901160110719502,-0.26612614281475544,0.30719743110239506,0.3229559282772243,-0.05640748282894492,-0.0944121852517128,0.0589548060670495,-0.713628189638257,0.2600408475846052,-0.10283521842211485,0.7107059825211763,-0.8950831252150238,0.5800628988072276,-0.48184164008125663,0.48819993250072,0.4422452813014388,0.681188733316958,-0.4658252573572099,-0.7817287025973201,0.47238001227378845,0.21959663461893797,0.7974890959449112,-0.666459693107754,0.5216691666282713,-0.7368747722357512,-0.6114567159675062,-0.8683022372424603,-0.9607311962172389,0.6906463010236621,-0.24293315969407558,-0.8168163890950382,0.9267606507055461,0.578051287215203,-0.9991740742698312,0.276954363565892,-0.5723635861650109,-0.3178262640722096,-0.2594115901738405,-0.4478558744303882,-0.967040432151407,0.9519450319930911,0.6624785889871418,-0.5049110637046397,-0.7295980304479599,-0.9428580133244395,0.9965551933273673,0.8094269172288477,-0.13228629948571324,-0.13895591907203197,0.8476641345769167,-0.7904531550593674,0.9192253868095577,-0.9619426587596536,-0.9891761736944318,0.3416466470807791,-0.11649113986641169,-0.22796670626848936,0.3131604352965951,0.4737502411007881,-0.5257768109440804,-0.48649762524291873,0.3219912052154541,0.06908177630975842,0.17865742044523358,-0.25647569354623556,0.6207567360252142,-0.692843277938664,-0.9732467522844672,-0.930135422386229,0.8425645758397877,-0.10715292626991868,-0.15854752995073795,-0.8054190371185541,-0.8640111419372261,-0.5483113317750394,-0.5527546280063689,0.6825646171346307,-0.6362154106609523,-0.8034976553171873,0.0821366598829627,0.23673330899327993,0.9464307287707925,-0.9656605757772923,0.6697136336006224,-0.6283679180778563,0.8545564943924546,-0.7522712866775692,-0.832516469527036,-0.9989904752001166,0.5702821183949709,0.8046834515407681,-0.7031473945826292,0.8068152726627886,-0.8311064862646163,-0.9035662808455527,0.6947824587114155,-0.5178662040270865,0.3915183083154261,-0.7428302178159356,-0.0217006029561162,-0.6258812467567623,-0.05747944209724665,-0.600440876558423,-0.02161280671134591,-0.9122461751103401,0.0031348606571555138,0.1764671062119305,-0.3834755318239331,0.7709405873902142,-0.9390689260326326,-0.6529428903013468,-0.8691866686567664,-0.6592188961803913,0.9847951005212963,-0.48075551073998213,0.19912928063422441,0.40631021466106176,-0.3232888453640044,-0.2068540551699698,-0.8018845319747925,0.5149600962176919,-0.037998446729034185,0.5478125014342368,0.7005628920160234,0.6300401883199811,0.0780894448980689,0.8462732778862119,0.8153882189653814,-0.09899208880960941,0.9451636327430606,0.7119935173541307,-0.08240377111360431,0.23007077211514115,0.9297903305850923,-0.6676386217586696,-0.34625054337084293,0.31505009066313505,-0.25601981207728386,0.891263822093606,0.6867461730726063,0.22393917758017778,-0.7501531443558633,-0.7800174127332866,-0.6939506945200264,-0.16010269848629832,0.2751566031947732,-0.25471544498577714,0.42950988793745637,-0.26410219073295593,0.2134950738400221,0.4116929625160992,-0.04755349596962333,0.1777143250219524,0.9964285483583808,0.0454845461063087,0.6727679967880249,0.730272535700351,-0.4895014031790197,-0.08793161949142814,0.6937594483606517,0.9034125106409192,0.7698067319579422,-0.280439377296716,0.8262861482799053,-0.0934203639626503,-0.9018206926994026,-0.10384711856022477,0.7842672159895301,-0.5558827328495681,-0.34968728572130203,-0.5973796108737588,-0.7491479218006134,-0.7359746699221432,0.9166040462441742,0.16101264907047153,-0.1822665436193347,-0.46576303290203214,-0.09947577910497785,0.5586385848000646,-0.7912010294385254,0.9586298884823918,-0.04212025040760636,0.824201965238899,0.052447267808020115,0.3465067269280553,-0.6582708470523357,-0.8123389128595591,0.9894914356991649,0.7302599675022066,0.4822359122335911,0.45493069384247065,0.05546748684719205,0.9492344581522048,-0.15809845412150025,-0.06708539789542556,-0.8936726162210107,0.747303145006299,0.7598583158105612,0.13578370586037636,-0.6360382754355669,0.6878523244522512,0.9379337760619819,0.2589059821330011,0.5898927683010697,-0.23770553898066282,-0.8705690954811871,0.1393281938508153,-0.8070003818720579,0.38625423796474934,0.4561205501668155,0.010594225488603115,0.8426020285114646,-0.6918756975792348,-0.5039872154593468,-0.22961268806830049,0.27764564426615834,-0.780027539934963,0.3154625054448843,0.6723560765385628,0.9335139114409685,0.9188674278557301,-0.5372858396731317,0.9260537382215261,-0.6861115111969411,0.41862677270546556,0.16239459021016955,0.9683306002989411,-0.23577723884955049,-0.27620881237089634,-0.5470824418589473,-0.2525421264581382,0.8814580962061882,0.8070218055509031,0.3450550236739218,0.43139835447072983,-0.4047957630828023,0.2837835783138871,-0.53281210642308,-0.8012473438866436,0.8280156888067722,-0.9582992377690971,-0.13421436259523034,0.008868648204952478,-0.5421394994482398,0.029121536761522293,0.22511992510408163,-0.3081381218507886,-0.8041554568335414,0.8618375062942505,0.23557474743574858,0.20856331195682287,0.1443087374791503,0.9379105754196644,0.5756144728511572,0.4468876728788018,-0.2210376081056893,-0.49506101617589593,0.11396197695285082,-0.6306809866800904,-0.440086776856333,-0.4838826861232519,0.39156512496992946,0.9092585761100054,-0.9615761348977685,0.8544704681262374,0.1355679566040635,0.7269215737469494,0.2895266250707209,0.21118299383670092,-0.8390504764392972,0.7263200907036662,-0.7200872688554227,0.35993655724450946,0.2576148849911988,0.31289692129939795,0.8760866429656744,0.7444475754164159,-0.6526225935667753,-0.9778786362148821,-0.2189153521321714,-0.5681191841140389,-0.06321520218625665,0.9518158277496696,0.34611877938732505,-0.6640942608937621,-0.6733741858042777,-0.4575610114261508,-0.03531788708642125,0.3356346394866705,0.024667561054229736,-0.40158842178061604,0.41273752227425575,0.19593827286735177,-0.34691601200029254,-0.7109881122596562,0.005210104398429394,0.06866048229858279,0.5828521782532334,-0.7015604129992425,0.455613421741873,0.42425517505034804,0.7194497678428888,0.5278338924981654,0.5011028833687305,0.5545037989504635,-0.4345121239311993,-0.6828447873704135,0.9692934043705463,0.9844427723437548,-0.21511293528601527,0.5773192644119263,-0.7784114480018616,0.42096102563664317,0.9294882221147418,-0.8482183241285384,0.20890336111187935,-0.9521667938679457,-0.1618979424238205,-0.33178167324513197,-0.4780784761533141,-0.7751487484201789,-0.7126782983541489,0.2815901837311685,-0.16346028540283442,-0.8292159955017269,0.7680398751981556,-0.9240586026571691,0.8532724413089454,-0.36300430493429303,-0.28608137741684914,0.8770940694957972,-0.8533615693449974,0.7474101260304451,0.7661107578314841,0.6283321981318295,-0.3206956279464066,0.1896660504862666,0.19010173110291362,-0.19286742433905602,0.7746191620826721,-0.15954408142715693,-0.3465282302349806,-0.7416090215556324,-0.7631675126031041,0.09018397284671664,0.509737828746438,-0.1263092109002173,0.24193512368947268,0.012672480195760727,0.12972159404307604,0.8106441628187895,0.3087937128730118,-0.12871143873780966,-0.12013702746480703,-0.8387306686490774,0.5581097984686494,0.3233247557654977,-0.40181478625163436,-0.19071125518530607,0.9074725764803588,0.09283802378922701,0.36609851475805044,-0.07096562255173922,-0.24623567471280694,0.2818285059183836,-0.11884027998894453,0.5569276819005609,-0.9832562310621142,-0.9398378431797028,0.4226637068204582,0.2320367363281548,-0.662202755920589,-0.7557430118322372,0.3249845146201551,0.34405950689688325,0.6897002984769642,-0.9308937741443515,-0.2423781855031848,0.3683299655094743,-0.8155615483410656,0.9180654594674706,-0.24872488249093294,0.8134204666130245,0.765890674199909,-0.9528312161564827,0.4375859471037984,-0.8104653903283179,0.6303917304612696,-0.07278767973184586,-0.20455561624839902,-0.5578548614867032,0.996777824126184,0.8960095099173486,-0.47511973744258285,0.9179693111218512,-0.11971342144533992,0.8213393338955939,0.09522180259227753,-0.5956953321583569,-0.9059866890311241,-0.9730100026354194,0.6883640144951642,-0.23872280912473798,0.38995169708505273,-0.3933565323241055,0.5916301659308374,-0.5587303494103253,-0.07784924563020468,-0.7293561841361225,0.5095448433421552,-0.5214244136586785,-0.8022033683955669,-0.8059135298244655,-0.19662508508190513,0.4507686491124332,0.8593591363169253,0.35889298655092716,-0.52857412584126,-0.9173166896216571,-0.5531286718323827,0.018472731113433838,-0.5658454308286309,0.34223652072250843,0.5701219420880079,-0.7204933748580515,0.398374583106488,-0.9928154423832893,-0.9816188933327794,0.40585231548175216,0.21427544299513102,-0.6233782870694995,0.15355890151113272,0.1029116977006197,0.9053643397055566,0.5903577865101397,-0.652589195407927,0.12560789287090302,0.05127639416605234,-0.3013778757303953,-0.3312889696098864,-0.616512343287468,-0.8137210672721267,0.4045388102531433,0.5862984168343246,-0.3952735485509038,0.617735464591533,0.906160166952759,0.3442633505910635,0.6119570820592344,-0.9808932333253324,0.8655258445069194,-0.9121914859861135,-0.17837892705574632,0.05531026469543576,-0.5740839475765824,0.5559206274338067,0.42382345674559474,0.10458905948325992,-0.16053466964513063,0.24865347985178232,0.4805500516667962,-0.5666764792986214,-0.5844018557108939,-0.9109790027141571,-0.560849595349282,0.6975605976767838,-0.481026089284569,-0.8611822770908475,-0.15693546971306205,0.2058633379638195,-0.9154399922117591,-0.890676420647651,0.53514120914042,-0.20769575610756874,-0.6608131057582796,-0.0653644111007452,0.9785098042339087,-0.8497153087519109,-0.9906709734350443,0.4378223060630262,0.8819596115499735,-0.9029617542400956,0.9320217068307102,0.6203026389703155,-0.19005594588816166,0.429691762663424,-0.23769798502326012,0.020312374457716942,0.9815996768884361,0.634298287332058,-0.610832653939724,0.6557053723372519,0.39292176021263003,0.8997162114828825,-0.10181364975869656,0.5499907829798758,-0.005562483333051205,-0.16581067629158497,0.6207071067765355,0.0031860889866948128,0.71309206308797,0.48406724352389574,-0.6878509046509862,0.7800715966150165,0.303044349886477,-0.49639206705614924,0.8728092079982162,-0.05270937317982316,-0.09675074508413672,0.27819770062342286,-0.5855317120440304,0.14922959497198462,-0.7626577727496624,-0.22245927853509784,0.17989225964993238,-0.8647952256724238,0.23735526483505964,-0.20797729305922985,-0.8042645310051739,0.5933921989053488,0.4178556650876999,-0.6684598689898849,0.3342303829267621,-0.5538320057094097,0.26302608055993915,-0.5517571331001818,-0.5658958647400141,-0.9262947849929333,-0.030558332800865173,0.7355191237293184,-0.9079864965751767,0.43834078311920166,0.5103299934417009,-0.4881057385355234,0.7743642972782254,0.023891575168818235,-0.9900013818405569,0.4201842644251883,-0.26109458366408944,-0.6420312090776861,-0.5624558320268989,0.6300221472047269,0.23038455145433545,-0.8148416862823069,0.48476247442886233,0.24190961243584752,-0.12275855801999569,0.9999391781166196,-0.24855844164267182,-0.5101500432938337,0.3879298772662878,-0.4559132936410606,0.3205659268423915,0.14637595880776644,0.7328706555999815,0.2285345201380551,0.4379936424084008,0.2988301678560674,-0.5094802561216056,-0.4411529419012368,-0.5076414034701884,-0.19297664985060692,0.30681989900767803,0.4210145785473287,-0.44281006697565317,0.3784633008763194,-0.5506140780635178,0.26715444726869464,-0.614842769689858,0.1038944604806602,-0.14440454496070743,-0.19186497991904616,-0.44960496621206403,-0.5613540625199676,-0.1938431547023356,-0.1514371233060956,-0.22590777929872274,-0.5839979662559927,-0.4990278836339712,-0.3526326157152653,0.4518754300661385,-0.20813053008168936,0.9361827834509313,0.31122644571587443,-0.08588056173175573,0.10262241354212165,-0.127159817609936,0.05785842426121235,-0.27712758956477046,-0.4484848203137517,0.5112991402857006,-0.2509425892494619,-0.8917734930291772,0.7421264136210084,0.6956207505427301,-0.6189129338599741,0.4356642640195787,0.6036732727661729,0.9533882783725858,-0.7405081484466791,-0.3005075892433524,0.735748253762722,-0.8676122073084116,-0.4986759964376688,-0.25602136878296733,0.8400653311982751,-0.34371756110340357,-0.7780278874561191,-0.6347144180908799,-0.5729853976517916,-0.5833289609290659,-0.6942699528299272,-0.7383442586287856,0.4726049145683646,-0.21430128207430243,-0.16495195915922523,0.9360212879255414,0.5361843430437148,0.2479511396959424,0.9230106230825186,0.3282280880957842,-0.9676219359971583,-0.4539282973855734,-0.2056595031172037,0.3296409174799919,-0.9134233924560249,0.29027081094682217,-0.32988849794492126,-0.7856207224540412,-0.8529453687369823,-0.7904371689073741,-0.3408725382760167,0.7263932912610471,-0.35068320063874125,0.609246903564781,0.3569517731666565,-0.7981609026901424,-0.06496599782258272,-0.27159910928457975,0.03754146583378315,-0.2980211107060313,-0.25143719371408224,-0.8043442624621093,0.41788695799186826,0.8313134028576314,-0.29577728966251016,-0.8387633338570595,-0.2569171339273453,0.38351407693699,0.09103173250332475,0.24875910067930818,0.7070784876123071,0.634585733525455,-0.859147718641907,-0.8766911611892283,-0.37463047076016665,-0.495408833026886,-0.47856062138453126,0.07546947710216045,-0.1977432039566338,-0.6764820008538663,0.18514221953228116,0.369901567697525,-0.1567158680409193,-0.743014199193567,0.7035896717570722,-0.5039872182533145,0.4375291243195534,-0.4802783955819905,0.4581739301793277,-0.8946116236038506,-0.43235225323587656,0.9645018866285682,0.14122709073126316,0.2778620235621929,0.8453224147669971,-0.759206157643348,-0.056624429766088724,0.3043716852553189,0.33724991511553526,0.7526345197111368,-0.7071190089918673,-0.11184408562257886,0.4381406530737877,-0.758028294891119,0.33334316220134497,-0.12028690613806248,-0.8696454809978604,-0.17717093089595437,-0.2560742269270122,-0.44046809850260615,-0.5793426930904388,0.5167842875234783,0.6793529498390853,-0.7100024241954088,-0.24034549063071609,-0.6819239500910044,-0.4291742858476937,0.004308121744543314,0.514680664986372,-0.005664581432938576,-0.8900960749015212,0.5334893618710339,-0.8486104146577418,-0.6652538306079805,-0.8243743842467666,-0.25534389028325677,0.9750128798186779,0.7161555849015713,0.597793947905302,-0.2260671053081751,0.8541783820837736,0.7224675361067057,-0.9640631047077477,-0.35263010300695896,0.41007692785933614,0.892810046672821,-0.04492382053285837,-0.8843670762144029,0.11338363634422421,0.9507358274422586,0.9478093511424959,-0.46156048215925694,-0.826693500392139,0.25450551602989435,0.6952792187221348,-0.1821950958110392,0.12307028053328395,0.5218967660330236,-0.07763154851272702,0.08602371579036117,0.22185492608696222,0.794998895842582,-0.9672539574094117,-0.4108939114958048,-0.6919913357123733,0.3350974917411804,0.6695344354957342,-0.6394108827225864,-0.4814829332754016,0.28807617304846644,0.19125800346955657,-0.10890274308621883,0.8466806407086551,0.27633320773020387,0.35718697030097246,0.9881542320363224,0.3780534123070538,0.19984969776123762,0.9306818689219654,0.09354733629152179,0.45721935480833054,0.6519271675497293,0.5659199012443423,0.210995358414948,0.9929403406567872,0.802294394467026,0.861127040348947,0.6253246669657528,-0.019101894460618496,0.040089611895382404,-0.9519829782657325,-0.09517917316406965,-0.23016644967719913,0.7839998714625835,-0.513767299707979,0.015552968718111515,0.7655912926420569,0.14338915329426527,-0.5263679884374142,0.6503349607810378,0.4660492683760822,0.15059076389297843,0.6711589624173939,0.2540318788960576,0.5364983333274722,0.9088927223347127,-0.5870130877010524,-0.4568096334114671,-0.8743884712457657,0.5658783507533371,0.19951217202469707,0.46417300030589104,-0.47433561738580465,-0.8454829836264253,0.9108762964606285,0.8294142815284431,0.5416385973803699,0.2069796295836568,-0.916160088032484,-0.4038876695558429,-0.032757268752902746,-0.12938678357750177,0.3156452248804271,0.3497333680279553,-0.668022355530411,0.4443828221410513,0.014382206369191408,-0.03886343911290169,0.9844058756716549,0.13350929645821452,-0.6986872088164091,-0.6242805030196905,0.18812374817207456,-0.4481788701377809,0.8031609305180609,0.8753889412619174,-0.883369505405426,0.8384707979857922,-0.052264722529798746,-0.8425012305378914,0.01714420923963189,0.7325525102205575,-0.6844383510760963,-0.6966928336769342,-0.30767467245459557,-0.10572382248938084,0.1251282379962504,0.08195750555023551,0.19506808277219534,0.029663567431271076,0.9699943359009922,-0.27167315036058426,0.3346717250533402,0.0017170622013509274,0.4044512612745166,0.09688610071316361,-0.1754111028276384,0.37219895236194134,0.9203538824804127,-0.7194823338650167,-0.9827238651923835,-0.2961968332529068,0.6604662360623479,0.20988926570862532,-0.9791761846281588,-0.9809150896035135,-0.688615997787565,-0.5971763781271875,0.653854341711849,0.20776822790503502,0.2494461303576827,-0.07193477964028716,0.18864137027412653,-0.709112755022943,-0.5398081550374627,0.4832255379296839,-0.42124799685552716,0.1299024112522602,0.8827192559838295,0.033105527982115746,0.7295030588284135,-0.5906935287639499,-0.3559422097168863,0.655303365085274,-0.8645746423862875,0.45024003693833947,-0.0035903113894164562,-0.0173332872800529,-0.09062057919800282,0.9062457731924951,0.8158501330763102,-0.2039619069546461,0.7207573605701327,0.18470027530565858,-0.2866274267435074,-0.780216874089092,-0.5922961155883968,0.017210974358022213,-0.5234492057934403,-0.13097400218248367,-0.8616381348110735,0.2995115495286882,-0.16534115839749575,-0.8379412870854139,0.8737925761379302,-0.6977093424648046,-0.39516535261645913,0.2209233846515417,0.8697618404403329,0.06574642844498158,0.9695580312982202,0.6661911807022989,-0.773288925178349,0.40927216270938516,0.22548917261883616,0.6258904221467674,0.3704645703546703,-0.9626447451300919,0.46748964954167604,-0.6531765214167535,-0.16213708091527224,-0.6489267060533166,-0.38058348977938294,0.9447525958530605,0.17552195535972714,-0.391749229747802,-0.7587816859595478,0.17349362280219793,-0.9164458061568439,-0.16463691089302301,-0.07171679567545652,0.7772699687629938,-0.32602733839303255,0.12952314829453826,0.7169767175801098,0.504595180042088,-0.5799574120901525,-0.6542590465396643,-0.47072226414456964,-0.6796104679815471,-0.31462653586640954,0.5259133223444223,-0.8054920923896134,-0.38238874869421124,-0.4993606680072844,0.8904988989233971,-0.049324854742735624,-0.3549714791588485,0.36810820922255516,-0.106097764801234,0.13086695643141866,-0.5727507239207625,0.28069696808233857,-0.2714013014920056,-0.9429371221922338,0.11806499678641558,0.5981677775271237,-0.9215844343416393,-0.263177880551666,-0.4568212116137147,0.2607615664601326,-0.4478193665854633,-0.4500625622458756,-0.42110508447512984,0.9778473381884396,0.6564539838582277,0.5577322836034,0.37727225152775645,-0.7050594077445567,-0.0017297477461397648,0.4251609514467418,0.7302396795712411,-0.6271506696939468,0.10087067726999521,-0.2585442722775042,0.08585125347599387,0.4619304873049259,-0.6625131526961923,-0.1410619388334453,-0.5660999403335154,0.16922535235062242,-0.5035998998209834,0.7038266537711024,0.9095651246607304,0.9629313447512686,0.25740469386801124,0.5293978620320559,0.7703388603404164,0.1091499999165535,0.41507249092683196,0.7379433936439455,0.3346604760736227,-0.0702760280109942,-0.8322319118306041,-0.4435315178707242,-0.6707659712992609,0.9300169995985925,-0.4086841498501599,0.36092695454135537,0.46194846695289016,0.9854856031015515,0.2663455824367702,-0.11707485653460026,-0.2764102974906564,-0.592325096949935,0.7933103572577238,-0.23267635935917497,0.24003938073292375,-0.5381936081685126,-0.3050199877470732,-0.7334605143405497,-0.7892516953870654,0.9527686410583556,-0.6723423241637647,-0.04878842597827315,0.5454065441153944,-0.08379424642771482,0.879354499746114,-0.00199032761156559,-0.9791818712837994,-0.05165428575128317,0.7730268896557391,0.8980416795238853,-0.5175013928674161,-0.640514325350523,0.5244842595420778,-0.19035180006176233,-0.7653815266676247,0.7328018164262176,0.2904182826168835,0.6244266843423247,-0.050732989795506,0.2712728972546756,0.39216484734788537,0.40747233713045716,-0.22032028809189796,0.23727534292265773,0.8741027493961155,-0.9044839483685791,-0.13572784652933478,-0.15307424636557698,-0.5720935738645494,-0.9729575389064848,-0.6796164843253791,-0.8860502829775214,0.4331847201101482,-0.29955886537209153,0.3385447249747813,0.7697643977589905,-0.1573767918162048,-0.7735197525471449,-0.41714474093168974,0.04488062718883157,-0.2907183491624892,0.7493250458501279,0.34909068886190653,0.8882159423083067,-0.6345032379031181,-0.6785884350538254,-0.8210833100602031,0.9360234453342855,0.31006177235394716,-0.22442707885056734,0.338687548879534,-0.0023701973259449005,0.952941588126123,0.09221455361694098,0.7749475142918527,-0.35018266178667545,0.6938203349709511,-0.2452733493410051,0.9975168365053833,0.49418792873620987,0.9681273391470313,-0.4522716007195413,-0.22091300878673792,-0.8894390920177102,0.109713114798069,-0.5560604422353208,0.0352350608445704,0.8082326697185636,-0.8228184501640499,0.0994126321747899,0.6543535948731005,-0.18976775743067265,0.007331828586757183,0.15096237929537892,-0.0048551117070019245,0.0158964772708714,0.6560487458482385,-0.04973109997808933,0.4671619483269751,0.9161878814920783,0.056370886974036694,-0.44371172972023487,0.578688511159271,0.13523481041193008,-0.9278612937778234,-0.9209487768821418,0.3730037696659565,-0.15548637276515365,-0.18199539510533214,-0.7974065686576068,-0.5982359736226499,0.1991436150856316,-0.6923887589946389,0.7986843483522534,0.7674339208751917,0.9280593213625252,-0.40805480582639575,-0.03418150870129466,0.38126702746376395,-0.7793108457699418,0.2631491827778518,-0.9391943658702075,-0.5755378161557019,-0.6344356564804912,0.4956235336139798,-0.7979064299724996,0.10218588402494788,-0.7876352830789983,0.10540501307696104,-0.3177245953120291,-0.6352939321659505,0.04391346126794815,0.6774944444186985,-0.13102202443405986,0.8584382878616452,0.583709507714957,0.9620407414622605,0.9198798937723041,0.03483931440860033,-0.4957803348079324,0.24167670914903283,0.4797791759483516,0.2177619943395257,-0.06867115711793303,0.32013262109830976,0.9624353563413024,0.19041163939982653,0.12137121055275202,0.8768175970762968,0.4992976658977568,-0.9371349778957665,-0.2874039108864963,-0.6073545031249523,0.791052810382098,-0.6912534791044891,-0.5136184860020876,-0.840278746560216,-0.6452738512307405,-0.9114421312697232,0.9358955263160169,0.8915224252268672,0.23163086781278253,0.7749335113912821,-0.5152792888693511,-0.8489545588381588,0.4673764850012958,-0.6934256963431835,-0.8491099877282977,0.465340755879879,-0.49262584606185555,0.7871127957478166,-0.05768461525440216,-0.6557223629206419,-0.8633577604778111,0.19172211084514856,0.04245050484314561,0.9304197379387915,-0.21572038531303406,0.7990942564792931,0.5002383142709732,-0.4449188318103552,0.15769447293132544,-0.45562045089900494,0.8590557649731636,-0.08678614161908627,-0.8094609067775309,-0.5194980641826987,-0.5377579643391073,0.24446119368076324,-0.2695388160645962,0.4067627680487931,0.4542456935159862,-0.1869407813064754,0.9838868696242571,-0.9966641324572265,0.8542209626175463,0.20147613901644945,-0.4304636330343783,-0.9203370600007474,-0.9040777813643217,-0.17105982173234224,-0.9583326089195907,0.40153589146211743,-0.8879185668192804,-0.6416148911230266,-0.4559190231375396,0.8176223086193204,-0.7344892472028732,0.46637036418542266,0.8506650384515524,0.3782025584951043,-0.6367709757760167,-0.5581399803049862,0.7754259333014488,-0.3793671685270965,0.11660321103408933,0.007015412673354149,0.7637578076682985,0.15103244595229626,-0.7542794430628419,-0.05166358361020684,-0.8586311633698642,-0.9675546777434647,-0.6082686195150018,0.45156461372971535,-0.6653838884085417,-0.6115844305604696,-0.4863263056613505,-0.8986643739044666,-0.722855135332793,-0.26869765808805823,-0.22068892838433385,-0.8548288233578205,-0.05359577061608434,-0.05582929076626897,-0.7832702388986945,0.9761304813437164,0.7181656216271222,-0.26725847693160176,0.8573947306722403,0.3835459998808801,0.6221464811824262,0.11850352771580219,0.28441325621679425,0.20310819055885077,-0.8439302076585591,-0.7882054392248392,0.3155437624081969,-0.5032325605861843,-0.6489457036368549,-0.4805625779554248,-0.21269238693639636,0.41640994511544704,-0.46489499788731337,0.4353506122715771,0.8019825876690447,-0.9489998957142234,-0.255828645080328,-0.5159281771630049,0.33520748745650053,0.16334846056997776,0.5645171706564724,-0.6232092715799809,0.821628584060818,-0.7226467127911747,-0.09222616627812386,0.424848182592541,-0.6635388545691967,-0.5479408483952284,-0.20020458847284317,-0.17380796326324344,0.7655642777681351,0.7642151643522084,0.9331866092979908,-0.7771008806303144,0.7360092736780643,-0.3450842830352485,0.08643028885126114,0.2138508944772184,0.7027499806135893,0.8215056415647268,0.5023628431372344,-0.3548487634398043,-0.9422434032894671,0.28479405445978045,0.7415735772810876,0.10251562250778079,0.4042843980714679,0.44326837453991175,0.10443787928670645,0.38262484734877944,-0.4328393768519163,-0.5432911361567676,-0.9502056082710624,-0.3644481129013002,0.18114138068631291,-0.8369623445905745,0.5888102166354656,-0.5424739052541554,-0.978584582451731,0.5472622741945088,-0.36403485434129834,0.31295964028686285,0.7441325569525361,-0.2692503430880606,-0.5367259834893048,-0.6908197305165231,0.8177605182863772,-0.5198755380697548,0.08186746016144753,0.9961262131109834,0.5171987866051495,0.14061590936034918,0.13565453328192234,-0.6545608770102262,-0.8594355965033174,-0.7219465407542884,-0.2692626272328198,-0.014109369833022356,0.34969090623781085,0.3103400622494519,-0.5922783017158508,0.907722843810916,-0.6291136592626572,-0.2151095774024725,-0.7212663413956761,-0.45088252890855074,-0.9212323920801282,-0.9315919880755246,-0.5158930458128452,-0.2826460190117359,0.5077735194936395,0.35377654107287526,0.13228377746418118,-0.7725032586604357,0.7822638973593712,0.6625359323807061,-0.7515674913302064,0.4780645379796624,-0.9793816786259413,-0.42569327913224697,-0.4770970758982003,-0.6596657698974013,-0.28673538751900196,-0.10417872853577137,0.3075794307515025,0.6921097105368972,0.08131160959601402,-0.6789481439627707,0.007189767900854349,-0.08490721695125103,0.9874640121124685,0.6321933353319764,-0.278414030559361,0.6379682864062488,-0.12898351810872555,-0.07827092939987779,-0.3534174361266196,-0.328327857889235,0.20949753560125828,-0.5355356247164309,-0.8024317133240402,-0.8836553664878011,-0.8778772931545973,0.9011422651819885,-0.060004713013768196,-0.04426496755331755,-0.6950827320106328,-0.7767903236672282,-0.8753086435608566,-0.6921124937944114,-0.875351760070771,0.2726880512200296,-0.2471165843307972,0.4464917052537203,0.6771994628943503,0.5551050235517323,-0.48653271002694964,-0.3586189141497016,0.5891095846891403,0.05754087120294571,0.6561082201078534,0.811806763522327,0.9417822188697755,-0.46121659176424146,-0.5052247219718993,-0.2661559283733368,0.7705863802693784,-0.17239850061014295,-0.35806324565783143,0.27117799082770944,0.36153413355350494,-0.8804226205684245,0.21355288662016392,0.4453038591891527,-0.4335855203680694,0.5861460203304887,0.7086701816879213,0.7604984412901103,-0.4040422006510198,-0.8356775841675699,0.5733353653922677,0.2632847912609577,-0.08929288899526,0.4175128065980971,0.2914374200627208,-0.970083640422672,-0.5384902250953019,0.3572078747674823,-0.48608299903571606,-0.1551989042200148,0.23144888458773494,-0.03753665974363685,0.8412755238823593,-0.7350819390267134,-0.7339573251083493,0.7343085939064622,0.4171527265571058,0.21163479378446937,0.992713310290128,-0.19789569592103362,0.6214470858685672,-0.3712399317882955,-0.04920402728021145,-0.11388083640486002,0.3020870559848845,-0.24529072735458612,0.7193129151128232,0.4924180218949914,-0.5607171598821878,-0.9484242964535952,0.10349797457456589,-0.6909625772386789,0.2985022640787065,-0.9199222973547876,-0.07245745183899999,0.054402176290750504,0.41391914105042815,-0.6722317300736904,0.32196506205946207,0.16873521357774734,-0.31560034584254026,0.027384437154978514,0.6707494473084807,-0.6924965162761509,-0.7605201676487923,0.9999659387394786,0.6892019365914166,-0.7324370057322085,-0.10668934788554907,-0.39222916355356574,0.9826468229293823,-0.8802520432509482,-0.7575659537687898,0.9701188411563635,-0.9043595590628684,-0.36522152042016387,-0.3113527474924922,-0.7807680941186845,-0.3923931485041976,0.7883181008510292,-0.30680076126009226,0.8835319550707936,0.16709631774574518,-0.026482025627046824,0.4579801419749856,-0.37634538672864437,-0.9160407539457083,0.9017984340898693,-0.2622969285584986,0.17205675272271037,-0.5040345918387175,-0.8361321822740138,0.11349269328638911,-0.8875356786884367,0.3347406298853457,0.670547628775239,-0.12759955879300833,0.6405985942110419,-0.8443531324155629,-0.04654194414615631,0.17997993901371956,-0.9705782942473888,0.9983974019996822,0.023123843129724264,-0.2479657414369285,0.7206137822940946,-0.054492768831551075,0.3768064393661916,-0.11637581791728735,0.6051828917115927,0.7671065242029727,0.8099797079339623,-0.9120219955220819,0.4347221809439361,0.2941103084012866,0.6215243572369218,-0.9884641822427511,0.6068266090005636,-0.551286403555423,0.3838167847134173,-0.12263405229896307,0.5589766721241176,0.8837961205281317,-0.629243993666023,0.01750390324741602,0.7688156347721815,-0.06866966979578137,-0.6867779111489654,-0.5167203159071505,0.5893516018986702,-0.5834415596909821,-0.7448941599577665,0.615521774161607,0.8903755615465343,0.09061606833711267,-0.738847279921174,-0.1568147554062307,-0.4124944140203297,-0.3672759528271854,0.6613107747398317,-0.4666958930902183,-0.8682146980427206,-0.8257830454967916,0.5799908069893718,0.7221974898129702,0.4247949216514826,-0.5246345638297498,-0.4583534044213593,-0.5108332405798137,0.785672543104738,-0.44242982706055045,-0.030963529832661152,-0.032860980834811926,0.23447942873463035,0.5276279165409505,0.3252371735870838,0.9135578805580735,0.9391012452542782,-0.5888286461122334,-0.7841957584023476,0.7041845107451081,-0.5926687968894839,-0.9595336224883795,-0.23820418491959572,0.19631237909197807,0.18007834162563086,-0.35403296211734414,0.07697697775438428,0.1479411912150681,-0.388807934243232,0.29689201479777694,-0.380598287563771,-0.3081866358406842,0.6839562370441854,-0.43519020779058337,0.2556606917642057,-0.5176436323672533,-0.059998064301908016,0.4821228114888072,-0.2505893986672163,-0.7514271773397923,0.5359351220540702,0.38621119409799576,-0.18123742891475558,-0.03271561907604337,0.3188283550553024,-0.02864475455135107,0.19301709672436118,-0.5798311815597117,-0.2269154479727149,0.34284967090934515,0.445215234067291,-0.1033133720047772,-0.18966468516737223,-0.7844150788150728,0.4142486294731498,0.6206891490146518,0.5636726669035852,0.31794147193431854,0.1616814904846251,0.9496329519897699,-0.19616880919784307,0.24693974573165178,-0.5036730319261551,0.06598302908241749,-0.6817473019473255,-0.5522640175186098,0.5724619519896805,0.8507326571270823,0.6616952395997941,-0.2726385509595275,-0.2533772923052311,-0.2566737988963723,0.4282300234772265,0.07956154644489288,-0.9540776778012514,0.16174094611778855,-0.6219565607607365,0.22097608633339405,-0.24371427204459906,-0.01693332241848111,0.8519743205979466,-0.07242188137024641,0.9696908327750862,-0.5312247239053249,0.3939768807031214,0.31131505919620395,0.08611509948968887,0.8983451281674206,-0.48913719318807125,0.12970755947753787,-0.3546749260276556,-0.8110538804903626,0.7962856916710734,-0.5049163494259119,-0.22529986361041665,0.2681717933155596,0.595189391169697,0.3180142166092992,0.419333238620311,0.27923018112778664,0.3739612069912255,-0.7138852532953024,0.41917314380407333,0.34493516478687525,-0.4709126418456435,0.7296392531134188,0.9497650591656566,0.39484957838431,0.613799334038049,-0.6630035946145654,-0.28302778117358685,0.9507765723392367,-0.9897411903366446,0.9716388829983771,-0.09211612492799759,-0.16393014416098595,0.26488232892006636,-0.39342005737125874,-0.026829028967767954,-0.1384203596971929,0.8111059335060418,-0.03600944159552455,-0.9236825751140714,0.9443134884350002,-0.9021963933482766,0.8472499344497919,-0.32112084422260523,0.1369790700264275,-0.14842554088681936,-0.052309620659798384,-0.203767494764179,-0.8375177467241883,-0.920754608232528,0.2796063804998994,-0.06327080307528377,-0.9907785565592349,0.45437877997756004,0.2213172409683466,0.2381892311386764,-0.854607286863029,-0.87865468300879,0.745929665863514,-0.5814463342539966,-0.13141953479498625,0.9600288765504956,-0.683245247695595,0.14294015849009156,-0.3866477645933628,-0.1872789361514151,0.4230779963545501,-0.27112717228010297,0.9198057544417679,0.5833306978456676,0.6597792599350214,-0.7378029879182577,0.11737234005704522,0.09247264871373773,0.26801643427461386,0.43212559912353754,-0.019468058366328478,0.6846690210513771,0.7579864547587931,-0.28910467959940434,-0.46542728412896395,0.2069043628871441,0.8627434773370624,-0.7955949353054166,-0.5918810819275677,0.08053168747574091,-0.22293679090216756,-0.04788466077297926,-0.680960541125387,-0.9005183009430766,0.24174812017008662,-0.3630935978144407,0.07152125053107738,-0.9824553923681378,-0.11796787288039923,-0.12884098291397095,0.5908304899930954,0.7459383271634579,0.4433060851879418,0.41985340090468526,-0.47940210811793804,-0.012682434171438217,0.8357423883862793,-0.07101849839091301,-0.3338316483423114,-0.6666125399060547,-0.2836461360566318,-0.4921633065678179,-0.9176237108185887,-0.543141701258719,-0.8342069839127362,-0.6973445531912148,-0.7782316245138645,-0.8090884555131197,0.38263254007324576,0.29288342176005244,0.8963740789331496,-0.08552763145416975,0.21715397434309125,0.7810036269947886,-0.5747994487173855,0.5593306482769549,0.009463085327297449,-0.4439032985828817,0.5935803465545177,0.8821097393520176,-0.14545917743816972,0.23329834220930934,-0.793840141966939,-0.8303935583680868,0.514029304496944,0.49760299595072865,-0.0983302341774106,0.9829981732182205,0.4399923547171056,0.8488939185626805,0.40552922897040844,-0.5575181525200605,-0.6095297769643366,0.09407463949173689,-0.6897788317874074,-0.5610425570048392,0.9530449449084699,-0.9148204200901091,-0.482198229059577,-0.1488571627996862,0.3333892449736595,-0.7588360826484859,-0.35490476666018367,-0.7026068372651935,0.5296378037892282,-0.25418355548754334,-0.12218533083796501,-0.7377029773779213,-0.30804524663835764,0.9865553113631904,-0.8855409948155284,0.028237386140972376,0.8276045420207083,-0.8317146142944694,0.20628648856654763,0.870858421549201,0.13262941502034664,-0.44708114117383957,-0.06564046302810311,0.6801582388579845,0.12613066099584103,0.20904342783614993,0.6847858033142984,0.1652014134451747,0.6102934740483761,-0.6836797194555402,-0.46353368181735277,0.032292081508785486,0.9077333277091384,-0.5676101287826896,0.19412060640752316,0.9555106987245381,0.5128258187323809,0.7890540878288448,-0.8596124239265919,-0.6822169572114944,-0.7272962112911046,0.019009476527571678,-0.22332895221188664,-0.48287930618971586,-0.15037271985784173,-0.6898612128570676,0.6387056997045875,0.777291314676404,-0.3348932242952287,-0.15697526466101408,-0.8922190289013088,-0.5226314458996058,0.3914817194454372,-0.7668518479913473,-0.8093183375895023,-0.43820362351834774,0.1377194127999246,0.7075735577382147,-0.8641905523836613,0.6936803767457604,0.5478079663589597,0.5517860255204141,0.9048829642124474,-0.6696145851165056,0.5797005663625896,0.7292342446744442,-0.9120478010736406,0.011769573204219341,-0.18726100865751505,-0.4694860056042671,0.4792879563756287,0.27536601945757866,0.4523023129440844,-0.6880973330698907,-0.9650101456791162,-0.7787096779793501,-0.4555990193039179,0.72825360391289,0.12411233317106962,-0.9217668049968779,-0.3659884026274085,-0.35607631457969546,0.6497967350296676,-0.44916092325001955,0.5955269332043827,-0.31576054636389017,0.43482482666149735,-0.746064736507833,-0.7870057472027838,-0.6304528266191483,-0.9469775031320751,0.7662529703229666,0.24986683716997504,0.7234577252529562,0.1798580726608634,0.019993963185697794,0.6885935892350972,0.6073943534865975,-0.7395273772999644,0.3973642587661743,0.05463208397850394,0.8105768524110317,-0.13028201321139932,0.75845099799335,0.7772361193783581,-0.4202304361388087,-0.9239944671280682,0.4020684128627181,0.03129393374547362,-0.9242191300727427,0.11972789000719786,-0.09976038942113519,-0.990728541277349,0.8040148047730327,0.4525919989682734,-0.6783083570189774,0.0067433384247124195,0.25607256311923265,-0.6059237667359412,-0.1422657291404903,-0.6253755115903914,0.6499972930178046,-0.7469038343988359,0.10559633793309331,-0.6552168671041727,0.5405721850693226,-0.8024118067696691,0.8135558483190835,0.15609643002972007,0.5087680732831359,0.8551876838319004,0.25581934954971075,0.3017265950329602,-0.40027015982195735,-0.7526388396508992,0.7002791943959892,-0.6511347447521985,-0.38105995301157236,-0.3807460702955723,-0.5750799183733761,0.852470004465431,-0.7127552889287472,0.006232346873730421,-0.4838219992816448,0.06617610529065132,-0.4720981572754681,-0.6504983208142221,-0.0015076086856424809,0.4572025747038424,0.6583735155873001,-0.9770527021028101,0.45601421128958464,0.49873105389997363,0.003372069913893938,0.33140367176383734,0.022807558067142963,-0.42131891194730997,0.8236726131290197,-0.6757437004707754,-0.8821293888613582,-0.16040502255782485,0.28101995307952166,-0.7119224453344941,-0.239444593898952,-0.10562546364963055,-0.8883906789124012,-0.33576079923659563,0.918682009447366,-0.5431833430193365,0.05568480957299471,-0.90200350061059,-0.8423041990026832,0.29709436278790236,-0.7872797884047031,-0.5917490120045841,0.055795508436858654,-0.17942482186481357,-0.6275678956881166,0.5640409938059747,0.3219298655167222,-0.7752666738815606,0.7979353256523609,-0.40945080015808344,0.0009506647475063801,-0.44558200566098094,0.8471814217045903,0.413552004378289,-0.35910101095214486,-0.332400627899915,0.6567590464837849,-0.26723701413720846,0.9909008867107332,-0.7855506567284465,0.5071638179942966,-0.00046650972217321396,-0.3985625277273357,-0.331110633444041,0.824857933446765,0.911880147177726,0.4118857029825449,-0.6065686987712979,-0.4070665454491973,-0.6842558044008911,-0.6592784309759736,-0.37975831842049956,-0.45466543175280094,-0.7691416698507965,0.0990076963789761,0.5070338170044124,-0.5153446746990085,-0.4578409004025161,-0.7993358969688416,-0.6119591668248177,0.8681674455292523,0.8425614447332919,0.6861160509288311,0.4085005046799779,0.05841530300676823,0.6313858395442367,-0.7956226663663983,-0.7639415110461414,0.7756490232422948,0.4807186322286725,0.7006081640720367,0.539040066767484,-0.48032540595158935,-0.7664491701871157,-0.8259746516123414,-0.04746819008141756,0.099615512881428,-0.4548982521519065,0.19234215700998902,-0.14724897360429168,0.2884641163982451,0.18544898740947247,0.8257682025432587,-0.9152968735434115,-0.5123602650128305,0.37443890841677785,0.3398073632270098,0.08789377752691507,-0.976323198992759,0.269205569755286,0.41439034324139357,0.5565956304781139,0.08385434886440635,-0.6502140001393855,-0.9773396300151944,0.1378762712702155,0.811132287606597,-0.8037375560961664,0.9968588459305465,-0.8922826088964939,-0.9603411108255386,0.3880020063370466,0.7888346104882658,0.6547802933491766,0.9831032389774919,0.46552575286477804,-0.791307823266834,0.647485772613436,0.5435317424125969,0.4416473344899714,0.6199640040285885,0.19298984576016665,0.7749792020767927,-0.749825666192919,0.5090131182223558,-0.8651755885221064,0.712141890078783,-0.3650486283004284,0.4160448764450848,-0.6494348389096558,-0.251013170927763,0.2701494893990457,0.43369445111602545,-0.3602435076609254,0.07711451686918736,0.35793511942029,0.7610784252174199,-0.4581960174255073,0.0405969419516623,-0.26156169129535556,-0.18001905782148242,0.47190090036019683,0.5164686655625701,0.38327375845983624,-0.15304920682683587,0.0651160841807723,-0.5802484750747681,-0.3306489116512239,0.755817683879286,0.31907266192138195,-0.9225842729210854,-0.60968799283728,-0.7301550693809986,0.39322635624557734,-0.9845860516652465,0.32215982768684626,-0.1471033999696374,-0.6274344827979803,-0.5021389150060713,-0.4821267765946686,-0.47179584950208664,-0.4058863171376288,-0.32352316239848733,0.4944052118808031,-0.7899122801609337,-0.4921223698183894,-0.5524750868789852,0.34585241274908185,0.07212898507714272,-0.7973979106172919,-0.5756476693786681,0.8267679857090116,-0.059015361592173576,0.11366801522672176,-0.0019566547125577927,0.822762927506119,0.6854560058563948,-0.48864299803972244,0.792647069785744,-0.17674063611775637,-0.15696924971416593,-0.7292455034330487,0.6450668158940971,-0.48906382778659463,-0.8621222907677293,-0.9785546488128603,-0.6707639270462096,0.39161516493186355,0.6723524671979249,-0.9107021139934659,-0.16797390766441822,0.5990868173539639,-0.8156631761230528,-0.1050606775097549,-0.3602722301147878,0.980046711396426,0.06716299429535866,-0.3520227922126651,0.988240959122777,0.7398329563438892,-0.49239189410582185,0.14756874972954392,-0.1956917094066739,0.43320057867094874,0.4406055365689099,0.6651542386971414,-0.5056272726505995,0.7332805464975536,0.3301978725939989,0.6513561001047492,-0.9359548594802618,-0.7323297983966768,-0.04623589850962162,-0.5265624299645424,-0.17650803923606873,-0.16184514621272683,0.23886616388335824,-0.9866856788285077,-0.40507950680330396,-0.7040499025024474,-0.4368370692245662,0.3820290295407176,-0.08658721949905157,-0.7643311428837478,0.3241760917007923,-0.6458520530723035,-0.11361941555514932,-0.5730825499631464,0.46698719961568713,0.6479268213734031,-0.029544553719460964,0.7278019855730236,0.012099133804440498,-0.6873454814776778,-0.7153808302246034,0.02858747262507677,-0.17844976531341672,-0.3631846713833511,-0.781132404692471,-0.4112597107887268,-0.4255742859095335,0.08699997561052442,-0.3418194684199989,-0.179531155154109,0.4669826691970229,0.6334342337213457,-0.9739285325631499,0.526762027759105,-0.3828132329508662,-0.7778133875690401,-0.3892848799005151,-0.809170791413635,0.3333279639482498,-0.3497515278868377,-0.28370060585439205,0.4425665158778429,-0.5013836179859936,-0.9600411192514002,0.5223264712840319,0.0582591462880373,0.837237998843193,0.09427129430696368,0.8500123634003103,-0.8685506545007229,-0.3193047447130084,0.057247384916990995,0.7927963323891163,-0.38495803670957685,-0.024250926449894905,0.4770937515422702,0.05450379429385066,0.18056859262287617,0.27003271970897913,0.3187637650407851,-0.9974952177144587,-0.6085237362422049,0.5077883526682854,0.17570216860622168,-0.06326986011117697,0.450982675421983,-0.2870853431522846,-0.9009271496906877,0.09313532151281834,0.611795405857265,0.6977243907749653,0.5598839465528727,-0.9904560223221779,-0.41421189019456506,-0.8076132028363645,0.6257154974155128,-0.330905644223094,-0.6462771743535995,0.9336242200806737,0.25907967146486044,0.4401213931851089,0.11274294462054968,-0.3030751165933907,-0.7987715005874634,-0.1517844758927822,-0.18637540563941002,-0.08145656809210777,-0.09077821299433708,-0.009857045486569405,-0.596562366001308,0.00432420801371336,-0.6926924991421402,0.9535662713460624,0.048854653257876635,-0.7996869841590524,-0.9288011081516743,0.43639669520780444,-0.9962687464430928,0.9926436101086438,-0.5634509352967143,-0.10470899567008018,0.5306625855155289,-0.23309479607269168,0.507929265499115,-0.9401983530260623,0.25968246813863516,0.21276151575148106,0.9071186324581504,-0.9201524960808456,-0.9900737316347659,-0.577335674315691,0.596083405893296,0.8908893167972565,0.8015693016350269,0.5572308180853724,0.317460595164448,-0.05365161504596472,-0.3237632638774812,0.6781240678392351,0.4246702999807894,0.141507379245013,-0.5184845691546798,0.7966345422901213,0.6501030828803778,-0.35821927059441805,0.0024508661590516567,-0.21281103091314435,-0.3406112929806113,-0.24792841216549277,-0.11051449691876769,-0.9014286696910858,0.09024746809154749,-0.09219256928190589,-0.3261621040292084,0.9892478436231613,-0.39948602113872766,-0.5950665674172342,-0.9300425201654434,0.714531023055315,0.12165280152112246,-0.37664139503613114,0.3083394104614854,0.08552473643794656,-0.9179069502279162,-0.3154985038563609,0.5873044324107468,-0.8174242805689573,-0.9279054789803922,-0.8787077902816236,0.6892181034199893,0.13434299128130078,0.36910996912047267,0.5132839013822377,-0.3346333554945886,0.060016365721821785,0.6304859779775143,-0.4248804305680096,0.5207329229451716,-0.45320196310058236,0.558344813529402,-0.0335096656344831,0.6041745282709599,-0.5993386162444949,-0.9816048792563379,-0.970708747394383,0.46838671853765845,-0.31132132885977626,0.43272561160847545,0.622576245572418,-0.8938282830640674,-0.15550527488812804,-0.528169630561024,0.3347276314161718,-0.9233144358731806,0.709043434355408,0.5239339675754309,0.19797152932733297,-0.4838105463422835,0.15616573067381978,-0.8122904859483242,0.38776645343750715,-0.719710981938988,0.7208949830383062,0.1570074581541121,0.6542934761382639,-0.2962703383527696,-0.24325070530176163,0.8809359078295529,-0.21844719303771853,-0.3563504461199045,-0.46091926144436,-0.1437792251817882,-0.03561872383579612,0.4310481185093522,-0.6201687753200531,-0.34282915759831667,0.24938617506995797,-0.46142116049304605,-0.264085432048887,0.48530921805649996,0.09774639783427119,-0.8912672656588256,-0.1871260697953403,-0.36379162315279245,0.15792289935052395,0.8949227789416909,-0.27812027418985963,-0.3517877869307995,0.4921622392721474,-0.7442608783021569,0.5824993932619691,-0.02114848420023918,-0.0936087891459465,-0.3665358442813158,-0.3476675390265882,-0.2134750043042004,-0.5162307331338525,-0.8529655253514647,0.7224354264326394,-0.0363209405913949,0.061283628921955824,-0.6227099364623427,-0.19948234222829342,-0.5089901317842305,0.01639175182208419,0.06883100047707558,-0.8025251911021769,-0.07068354776129127,-0.1987997405230999,-0.6395173482596874,0.09706244664266706,0.21625271951779723,0.2712567518465221,0.4899367783218622,0.879935294855386,0.42679177690297365,0.21023974800482392,-0.2460442166775465,0.6810460621491075,0.8932982957921922,0.5377274411730468,-0.7662696419283748,0.25435742922127247,0.6418616557493806,0.24754144437611103,0.7053164932876825,-0.20442819083109498,0.048561306204646826,0.13097097491845489,0.7643865263089538,-0.8589148572646081,-0.7983072809875011,-0.27484107157215476,-0.6494961278513074,-0.5943162827752531,-0.22371540823951364,0.2975830906070769,0.8258829833939672,0.8164502601139247,0.34784045116975904,-0.93189203646034,-0.12114438600838184,0.992406930308789,0.810321741271764,0.653523055370897,0.5602693324908614,-0.5393489426933229,0.09977774601429701,0.9628911879844964,-0.7040543500334024,0.80013637105003,-0.1361568453721702,0.38262227876111865,0.36941097816452384,0.07660105871036649,-0.12902813823893666,0.7884028782136738,0.1249236180447042,0.09046931192278862,-0.3550904495641589,0.41747191920876503,-0.9101622295565903,-0.31427425099536777,0.5095066614449024,0.6345143215730786,0.47258389787748456,-0.5001764418557286,0.2275651772506535,0.024093730840831995,0.6648117294535041,0.911963171325624,0.5664330087602139,0.4686206979677081,0.8944893493317068,-0.4575734222307801,0.849247207865119,-0.7884917678311467,0.14550787629559636,0.04591358499601483,0.2608064766973257,0.031669754069298506,-0.05509181786328554,0.8265404524281621,0.3863319233059883,-0.6559006683528423,-0.5757911112159491,0.2586968964897096,-0.25472736032679677,-0.7215455183759332,0.14811837021261454,-0.8611663458868861,-0.8566579562611878,-0.0807665716856718,0.883184858597815,-0.32559218537062407,0.6958798859268427,0.35811017034575343,0.34462143713608384,0.5987606719136238,0.09677718346938491,-0.30854322109371424,0.24248639680445194,0.9447292573750019,-0.7605503657832742,-0.2835030322894454,-0.43437776807695627,-0.5532874194905162,-0.7115501328371465,-0.256303119007498,0.01741643063724041,0.37235971027985215,0.9404290020465851,-0.2827020245604217,-0.19419157272204757,0.4928101464174688,-0.45149132795631886,-0.9115816196426749,0.8940982869826257,0.5803267038427293,0.6733942446298897,0.24275995697826147,-0.7625926993787289,-0.4161687078885734,-0.1532642412930727,-0.6816881587728858,-0.3265852751210332,0.041472389828413725,-0.2359130042605102,0.331558046862483,0.2263140040449798,-0.32525459257885814,-0.14492049114778638,0.3852872424758971,-0.3766686310991645,-0.2375291078351438,0.6968777440488338,0.893513651099056,-0.5841574524529278,0.2988103535026312,0.13625901099294424,-0.7673732545226812,0.6537608467042446,-0.07792470138520002,-0.6503888117149472,-0.5869999122805893,0.9685768797062337,-0.21362430742010474,0.2799701001495123,0.08662918349727988,-0.6131501314230263,0.1376957418397069,-0.7594720595516264,0.5301565797999501,0.26341573242098093,0.1938973586075008,0.4971851813606918,-0.8547391258180141,0.7469755685888231,-0.5333578502759337,0.907532062381506,0.06819473393261433,0.2223394992761314,0.4921085434034467,-0.6484250701032579,-0.767906819935888,0.41724302899092436,-0.6378740300424397,0.8911054898053408,0.4461353844963014,-0.04316947516053915,-0.9449754012748599,-0.9408314428292215,0.5966453235596418,0.756114381365478,0.44353699730709195,0.7936407504603267,-0.40451224939897656,-0.0049102273769676685,-0.9175850870087743,-0.9146522800438106,-0.8153653745539486,-0.988870298024267,-0.8733881525695324,-0.3311629216186702,-0.6019994695670903,-0.018333783373236656,-0.79880216345191,-0.750724480021745,0.8561921180225909,-0.4164872276596725,-0.06187837012112141,0.6156122083775699,-0.5833792071789503,-0.07467407686635852,-0.6687680939212441,-0.48297953559085727,-0.3148769256658852,0.9654712094925344,-0.11476498423144221,-0.5546321286819875,-0.6171192592009902,-0.389271741732955,-0.32430092012509704,-0.11758503876626492,0.5853254236280918,-0.5963094579055905,-0.09136607963591814,0.8278644480742514,-0.8603746676817536,-0.8633931623771787,-0.23260087799280882,0.7807940393686295,0.21987383579835296,0.6140247350558639,0.20942397508770227,0.06725545646622777,0.8745464822277427,-0.70986657589674,-0.8323103957809508,-0.453925599809736,-0.9520946335978806,0.761283899191767,0.4589260327629745,0.6875873822718859,0.5857541020959616,0.07585931941866875,0.8484679819084704,-0.397991640958935,-0.3622287712059915,-0.16865574708208442,-0.9491990967653692,-0.20593471825122833,0.9745267760008574,-0.8912716847844422,-0.05135909514501691,-0.008630931377410889,0.9286838578991592,0.792729230131954,-0.17189393937587738,-0.9773013917729259,0.9973031068220735,-0.8917812900617719,0.4810484782792628,-0.9980032322928309,0.25840331800282,-0.8440842614509165,-0.7394770085811615,0.6644890229217708,-0.5220621461048722,0.5404471531510353,-0.025783053599298,0.20385083742439747,-0.42007033340632915,0.531985102687031,-0.7827016119845212,-0.19665764179080725,-0.06893418729305267,-0.7604795708321035,0.17307792231440544,0.7448591440916061,-0.7619951218366623,-0.5598808815702796,0.9763167193159461,0.7499373224563897,0.9449815675616264,-0.1185152898542583,-0.20328965224325657,-0.7928115362301469,0.5517411986365914,0.3076368300244212,-0.20825834665447474,0.0800334014929831,0.5459495247341692,0.44364833971485496,0.4613690860569477,0.9857076476328075,-0.600875630043447,0.6215984337031841,0.6004668180830777,-0.15971532091498375,-0.8714469657279551,-0.4832363110035658,-0.11092100013047457,-0.8805332519114017,-0.1047332244925201,-0.21059457398951054,-0.43199370335787535,-0.9367078016512096,-0.9067747918888927,0.15649520652368665,0.3275118353776634,0.46504988661035895,0.6039678533561528,0.4655858245678246,-0.8060785024426877,0.6380721488967538,-0.19706419436261058,0.9007491627708077,-0.2954879542812705,0.6500189807265997,0.9299971079453826,-0.4046263541094959,-0.426301306579262,0.9942822447046638,-0.6126357736065984,-0.5724996360950172,-0.9467323613353074,-0.9114748388528824,0.5920622171834111,0.32118245819583535,-0.7420928538776934,0.4932435527443886,-0.34470027405768633,0.6347892275080085,-0.981186464894563,-0.4803360286168754,0.9062480954453349,-0.5881286496296525,-0.9896155884489417,0.43436705507338047,-0.8201590278185904,0.5977559299208224,-0.8650793852284551,0.3527593081817031,-0.7320808758959174,0.8219580887816846,0.6480016824789345,-0.990109933540225,0.7425087196752429,0.5416553569957614,0.4338387199677527,-0.7837497116997838,-0.3998780674301088,-0.20414154324680567,0.5818336214870214,-0.8426388702355325,0.35073846904560924,0.35665093176066875,-0.209232481662184,-0.25373835302889347,-0.6379685569554567,-0.5502551910467446,-0.8111228342168033,-0.17091349605470896,-0.800760823301971,-0.4919667551293969,-0.7470422317273915,0.09622577764093876,0.868775968439877,-0.3788241893053055,0.285714169498533,0.07907077018171549,-0.38541988655924797,0.7422709534876049,-0.6037877984344959,-0.9433344295248389,-0.9744278704747558,-0.20346377976238728,-0.565181759186089,-0.7396623371168971,0.49869954446330667,0.3836208409629762,0.12847581040114164,0.6844127466902137,0.14461837615817785,-0.034989274106919765,0.3544778269715607,-0.3961049080826342,0.012714028358459473,0.19262831890955567,0.4940979899838567,0.8015497750602663,-0.42034485284239054,0.9007822996936738,0.8973855590447783,-0.4335919148288667,0.2096057771705091,0.5616396083496511,-0.5384094500914216,0.37972554564476013,-0.10945472773164511,-0.0314285927452147,-0.4666100824251771,-0.19875705428421497,0.4978114147670567,-0.2760440451093018,0.012256959453225136,0.9662221265025437,0.032669741194695234,0.7923686071299016,0.29643850633874536,0.47824665158987045,-0.2584738959558308,-0.10177420359104872,-0.5826560114510357,-0.39520004484802485,-0.8455268531106412,0.8845030767843127,-0.7778269061818719,-0.8951756437309086,0.2475690422579646,0.028652226086705923,-0.6888320944271982,0.8619730714708567,0.7081001102924347,0.4637399138882756,0.8223435250110924,-0.6899238643236458,0.25757870357483625,0.09648151649162173,-0.22262955969199538,0.8716388130560517,-0.04642926109954715,-0.9407232557423413,0.47518137097358704,-0.27300978545099497,0.6882499675266445,0.8216039063408971,-0.7127095344476402,-0.6358784488402307,-0.06172245508059859,0.31863992707803845,-0.5441753640770912,-0.9455144270323217,-0.6428957981988788,0.05879215057939291,0.6218286389485002,0.8210825813002884,-0.3220655284821987,0.19074233667925,-0.5301771080121398,0.20927324751392007,0.36426661582663655,0.38326779287308455,-0.32442509662359953,0.39565769908949733,-0.14616976492106915,-0.9138398231007159,-0.15469171572476625,0.2257443438284099,0.41050948901101947,0.5745949721895158,0.7387457629665732,0.4665342471562326,-0.3150757602415979,0.04424690501764417,-0.4353053797967732,0.8722768696025014,0.5387355987913907,0.5583545416593552,-0.1509460243396461,-0.4069748669862747,-0.1338881184346974,-0.846867254935205,0.07813525851815939,-0.5836854968219995,-0.45845889998599887,-0.8299239557236433,0.018144634552299976,0.04276812123134732,0.5377064105123281,0.9726511742919683,-0.14819210022687912,-0.9255042183212936,-0.614281676709652,-0.8857119157910347,-0.12951240735128522,-0.743294564075768,-0.15355096384882927,-0.5978136556223035,0.6664607776328921,-0.17914855293929577,-0.5918275569565594,0.7733247028663754,0.7764402679167688,0.7926514386199415,-0.5829656012356281,-0.5876769372262061,-0.08175874734297395,0.4143883460201323,0.9000205332413316,-0.5339032053016126,0.338735559489578,0.5638083778321743,0.4549720217473805,-0.7443086798302829,-0.6832293942570686,-0.19949369877576828,0.03710647812113166,-0.35697532957419753,0.39005483547225595,-0.1894649500027299,-0.24076593527570367,0.5469520972110331,0.21505369944497943,0.7500479677692056,-0.6803914913907647,-0.4433554816059768,-0.19618903892114758,0.6773525765165687,0.49852199107408524,-0.9643556708469987,0.7608067742548883,0.4992661885917187,-0.21193070942535996,0.1328042228706181,-0.9556242944672704,0.3347021131776273,-0.26836902741342783,-0.5058717303909361,0.6508049946278334,0.04931860789656639,0.9279688987880945,-0.7632716014049947,-0.48724314430728555,0.7180117499083281,0.9229077021591365,0.3474398283287883,-0.7622732417657971,-0.5951834409497678,0.3978264583274722,0.6861575311049819,-0.8849150380119681,0.17826259043067694,-0.024738153908401728,-0.7975989021360874,-0.5667943572625518,0.5842031491920352,0.2484315731562674,-0.40918636741116643,-0.4234936241991818,0.9595332206226885,0.24548035766929388,-0.8668668270111084,-0.4980961265973747,-0.5685497345402837,0.7218441716395319,-0.1802710318006575,-0.09802282741293311,0.5288756359368563,0.3239056603051722,0.1679800027050078,-0.38613905804231763,-0.0219422928057611,-0.6125017306767404,-0.08391371089965105,-0.3373512546531856,0.22211343748494983,0.800975346006453,0.5951276114210486,0.9072226723656058,-0.4429591251537204,-0.29455317789688706,0.5513610793277621,-0.945406733546406,-0.9264008025638759,0.40128896245732903,0.833541362080723,0.2774628419429064,0.22473467700183392,0.25364523753523827,0.41591346682980657,0.388457911554724,-0.8549936176277697,0.9543237034231424,0.5702898059971631,-0.28228287817910314,-0.836486873216927,-0.5591757181100547,-0.7695469511672854,-0.6054556421004236,-0.527081333566457,0.8233270333148539,0.0713918125256896,0.8815046176314354,0.38594371965155005,0.5664546135812998,0.5424497532658279,0.7021714225411415,-0.8428191491402686,-0.7806830946356058,-0.5109209506772459,0.29624422127380967,-0.1048798025585711,-0.5206408342346549,0.36822687601670623,-0.8550527151674032,0.5109079075045884,-0.6337016043253243,-0.2329874741844833,0.8095409236848354,-0.6286416752263904,-0.6189135047607124,-0.240574536845088,-0.2329958979971707,0.4736847239546478,-0.003076245542615652,-0.7899136482737958,-0.0034814891405403614,0.7142882053740323,0.46941768610849977,-0.41918864473700523,-0.5023480588570237,-0.49712927360087633,-0.19136837497353554,0.5889515383169055,0.7817215668037534,-0.1176514383405447,0.13477330608293414,0.999215196352452,0.02421676553785801,-0.5503116664476693,0.35061203595250845,0.19964786199852824,-0.24274272425100207,-0.05659543490037322,0.199601037427783,-0.8700268012471497,-0.9524379260838032,0.41055618040263653,0.447563867084682,0.033068545162677765,-0.4006238551810384,0.6677612396888435,-0.04094656137749553,0.6562077165581286,0.5741832507774234,-0.05598113778978586,-0.996739115100354,-0.02633860521018505,0.9858674975112081,0.7858298462815583,-0.7335950387641788,0.6188154653646052,-0.8236509044654667,0.11181764863431454,-0.33404334215447307,-0.9564404957927763,-0.4020544830709696,-0.5782071705907583,-0.6917424527928233,-0.980179734993726,0.7772339824587107,-0.1003652224317193,-0.3226855481043458,-0.5934314783662558,-0.12283291155472398,-0.41399387875571847,0.04557347251102328,-0.3857843275181949,0.5005918820388615,-0.9971076711080968,0.7973484979011118,-0.2269158074632287,0.713058193679899,-0.4345773970708251,0.3072390118613839,0.989199792034924,-0.29288652958348393,-0.010019436944276094,0.5092106414958835,0.15081082796677947,0.36654359428212047,0.9347151457332075,0.4498264198191464,-0.723391083534807,0.34000926837325096,-0.11962211551144719,0.15208412567153573,-0.6515841567888856,0.9493613028898835,-0.6266350797377527,0.7158269113861024,-0.7992015858180821,-0.04893271857872605,0.35024163220077753,0.8216397273354232,-0.2469620443880558,0.9757149931974709,-0.964666083920747,-0.11951360665261745,-0.9392315363511443,-0.04035961348563433,0.7595296576619148,-0.7327656373381615,0.10811816295608878,0.39843078702688217,-0.6596725909039378,0.7144954707473516,0.8050675163976848,0.1297234413214028,0.546161356382072,-0.46791908144950867,-0.2864215960726142,0.02896561985835433,-0.636063929181546,-0.3088111924007535,-0.9390932521782815,-0.6747819515876472,0.6206426187418401,-0.9097347361966968,-0.41600496135652065,-0.967596264090389,0.5236433129757643,0.5607360741123557,0.4249501037411392,0.06724980473518372,0.7922893627546728,0.63345129461959,-0.12102073198184371,-0.27632346004247665,0.15688137849792838,-0.8887339890934527,0.7533281878568232,-0.010291417129337788,-0.03958358149975538,-0.9304085620678961,-0.45138910319656134,0.8127142074517906,0.19197641452774405,-0.479900527279824,0.3033089032396674,-0.4232831518165767,-0.09164559887722135,-0.2534372014924884,-0.7370044514536858,0.19575541652739048,-0.2083112196996808,0.6198210930451751,0.8342971922829747,0.5003045732155442,-0.8334624473936856,0.755746248178184,-0.38024370186030865,-0.6864181272685528,0.4195675030350685,0.24959579901769757,0.7094152322970331,0.3825429668650031,0.8257907284423709,-0.08346223272383213,0.7912967563606799,-0.3086623130366206,0.7434961693361402,-0.04839030187577009,-0.9475352154113352,0.20781970908865333,0.5413911240175366,0.9526395881548524,0.2101482800208032,-0.29395435051992536,-0.11872558249160647,-0.5542647554539144,-0.6140649733133614,0.993317220825702,-0.07580377347767353,-0.7638198938220739,0.03907247493043542,-0.5549230966717005,0.4524933956563473,0.7362267621792853,0.7365470244549215,0.4324649032205343,0.2780086090788245,-0.7583569870330393,-0.6540376436896622,-0.4192993682809174,0.42702203756198287,-0.20624067494645715,-0.19593456806614995,-0.9266983391717076,0.8167599220760167,-0.5415254137478769,0.47372182877734303,0.08618414495140314,0.9036015402525663,0.7463933750987053,-0.9368068911135197,-0.1806201646104455,-0.6914152172394097,0.036213209852576256,-0.3034361843019724,0.5585262654349208,-0.9567366377450526,0.8762479205615819,0.3540938952937722,-0.9411748172715306,-0.657466980163008,0.8649911577813327,0.4778265948407352,0.964323605876416,-0.04791222373023629,0.02777905762195587,0.803345859516412,0.7530589373782277,-0.08970172330737114,0.8286613924428821,-0.6928433026187122,-0.9160577105358243,-0.46900856401771307,-0.7665976961143315,0.3125573555007577,-0.6541529046371579,-0.11298990901559591,-0.43559085484594107,0.3053790577687323,0.4949057796038687,-0.9169207504019141,-0.9478714657016098,-0.10525530995801091,0.6671678861603141,-0.7525140703655779,0.13179890625178814,0.5431530270725489,0.7817603289149702,0.7220550430938601,0.957762140315026,0.9839911065064371,0.8089137049391866,-0.43186594266444445,0.9478133162483573,0.31786404456943274,0.13308629719540477,-0.1419624057598412,-0.26084992988035083,-0.6715142806060612,0.6408838937059045,-0.12125350069254637,-0.817322876304388,-0.8666270584799349,-0.05670171370729804,0.5895839151926339,0.34846040001139045,-0.8348427168093622,0.743514338042587,-0.9219876290298998,-0.32674515759572387,0.9698031698353589,0.03813403099775314,-0.8204500079154968,0.7225099029019475,-0.5336365951225162,-0.4193789907731116,-0.7457772581838071,-0.2547760265879333,0.8663078900426626,0.2241933927871287,-0.6193105028942227,-0.3594258073717356,-0.20296122366562486,-0.7706360011361539,-0.5746453842148185,0.41225791396573186,0.32061334047466516,0.22678723745048046,-0.9042825670912862,-0.840407891664654,0.787527906242758,-0.00449735252186656,0.9844389543868601,0.8675754717551172,0.3172088270075619,0.708346014842391,-0.10430315369740129,-0.40701974276453257,0.23589956760406494,0.28921838384121656,0.9940714151598513,0.052483937703073025,0.23879359010607004,-0.3280571587383747,-0.9586215121671557,0.36714221769943833,-0.5495715797878802,0.18022496672347188,-0.8838007231242955,-0.42158552538603544,-0.7558779688552022,-0.15083791594952345,-0.22471890226006508,-0.8724991101771593,0.745644495356828,-0.3993551963940263,0.4341074414551258,0.4341090191155672,0.701868905685842,0.24156379653140903,0.4967011883854866,0.5694489018060267,0.8936921530403197,0.23733947426080704,0.41788775380700827,0.2801004173234105,0.10260403016582131,-0.06749808555468917,-0.17950829397886992,-0.6672983430325985,0.38058485044166446,-0.0054673864506185055,0.5717399790883064,0.365702582988888,0.593825385440141,-0.7237971560098231,0.01620551571249962,0.37951608980074525,-0.547390925232321,-0.6231021410785615,-0.7404205105267465,0.42344079399481416,-0.9607315533794463,0.7908364706672728,-0.4656039383262396,0.7178914560936391,-0.9618253661319613,-0.8637457392178476,0.19244606466963887,0.6603194703347981,0.5630623106844723,-0.2693789042532444,-0.661241770721972,-0.9858161718584597,0.020805707201361656,-0.22022868180647492,-0.4692659671418369,-0.37850866466760635,-0.9607088915072381,-0.26505902875214815,-0.9058283152990043,0.5808106153272092,-0.49013841431587934,-0.38424590323120356,0.21322085103020072,-0.9720476772636175,0.79975351318717,-0.33867029240354896,-0.8532867636531591,-0.40286803198978305,0.6634461102075875,0.8414847683161497,0.12036474561318755,0.4970507235266268,0.5963680977001786,-0.8790143290534616,0.839687149040401,0.5974654196761549,-0.26867631589993834,0.3798549831844866,-0.44536864617839456,-0.11192755866795778,0.013235808815807104,-0.3350316658616066,0.09735082555562258,-0.6091694328933954,-0.4470630162395537,0.44375386741012335,0.22299461485818028,-0.3980902349576354,0.6324601266533136,-0.641026156488806,0.6999363638460636,-0.984836314804852,0.4923272165469825,-0.4511708961799741,0.8384027038700879,0.42990254471078515,-0.779850997030735,0.33793474873527884,-0.09415363986045122,0.8491894584149122,0.37479240726679564,-0.6935736499726772,0.14293909538537264,-0.21626442624256015,0.9930969993583858,0.6555599230341613,0.8380533717572689,0.5785028501413763,-0.3160514668561518,-0.8467934266664088,0.44228470092639327,-0.44559438433498144,-0.09474897710606456,-0.8892945502884686,0.028266282752156258,0.691097853705287,-0.006022948771715164,-0.18236320139840245,0.4747121869586408,0.6555476412177086,-0.12202787771821022,-0.2890602885745466,-0.4771696296520531,0.5560852866619825,-0.7069111834280193,-0.1728149908594787,0.7057034149765968,0.2652053888887167,-0.5024601630866528,0.8348458982072771,0.6236381568014622,0.5886123487725854,0.3609305168502033,0.5037036640569568,-0.08955766214057803,0.5615307316184044,0.7274984526447952,-0.6527711604721844,-0.6529938778840005,-0.2919266144745052,0.8474489483051002,-0.2994390418753028,0.5599469016306102,0.8028223286382854,0.1756626395508647,0.5062753008678555,-0.026858866214752197,-0.9403843451291323,0.46486348612233996,-0.6442739414051175,0.4776866170577705,-0.9145325510762632,-0.03191674267873168,0.512650060467422,0.6628827867098153,-0.2592412969097495,-0.3065609163604677,-0.28384579811245203,0.6336520835757256,-0.606896716170013,0.9925409611314535,-0.676906178239733,0.04039593832567334,-0.3715399447828531,0.6233629835769534,0.09549483517184854,0.4611494247801602,-0.07057060254737735,0.9451461541466415,0.5451441183686256,0.9711999711580575,-0.3957567363977432,-0.5046840934082866,-0.04418476577848196,0.2352647944353521,-0.7106035384349525,0.8096173061057925,0.6055488879792392,0.8231923673301935,-0.9171032458543777,0.17246363312005997,0.43331049429252744,0.9247840573079884,0.6621948354877532,-0.8013478219509125,0.8793403138406575,0.13204337563365698,0.3615972469560802,0.24147846968844533,-0.5862008295953274,-0.4433953990228474,0.07605827739462256,-0.4056612430140376,0.019467117730528116,0.9195196265354753,0.3652619649656117,-0.864461010787636,-0.7021525697782636,-0.36736008804291487,0.8148966073058546,-0.8066332945600152,0.33824653970077634,-0.8846394093707204,0.6339205270633101,-0.1200741296634078,0.06780972564592957,-0.1585821253247559,-0.091826225630939,0.18162264488637447,-0.49128298461437225,-0.22391837975010276,0.6962994802743196,-0.3843981786631048,0.4436881351284683,-0.537191703915596,-0.9434543787501752,0.03884956333786249,0.3108540768735111,-0.750678370706737,-0.31005229940637946,0.7632196694612503,-0.4020282393321395,-0.6723214481025934,0.13077246071770787,-0.45382261695340276,-0.40582060627639294,-0.4787337612360716,-0.09950630413368344,-0.18871343787759542,-0.19492792384698987,-0.7536028381437063,0.9177857129834592,0.1869909167289734,-0.46631444804370403,-0.8056796807795763,-0.36027609277516603,-0.5258729159832001,0.4890103815123439,-0.5766923292540014,0.9852865780703723,-0.6849634004756808,0.01126843225210905,-0.8145444095134735,-0.4204253163188696,0.4047613306902349,-0.08078603353351355,0.8684500469826162,0.7150248428806663,-0.3048371528275311,-0.16732561402022839,0.9440276236273348,-0.8227668330073357,-0.9921581293456256,0.9086594711989164,0.6360656712204218,0.2526223645545542,-0.7801114972680807,-0.2751958491280675,0.5766180921345949,0.3858485100790858,-0.0479405359365046,0.8917065323330462,0.09873659070581198,-0.06977189891040325,0.8191714324057102,-0.4448079322464764,0.4383453596383333,-0.8100340268574655,-0.9988416619598866,0.6113820616155863,-0.407983539160341,-0.7015725574456155,0.6628566002473235,-0.8704230566509068,-0.6165749654173851,0.40454931976273656,0.14075229316949844,0.8101485567167401,-0.3347483300603926,0.5618393160402775,-0.29146216344088316,0.5827179243788123,0.6810907800681889,0.29664789652451873,0.057239878457039595,-0.6749753775075078,0.28434991370886564,0.5563584784977138,-0.20466763153672218,0.8753011380322278,-0.48871455108746886,-0.8346796319819987,-0.41138988733291626,0.448378415312618,-0.09559356234967709,0.995131250936538,0.47764929151162505,0.24289002642035484,0.31757956137880683,0.8511456032283604,0.4407939976081252,-0.10285563068464398,0.5735156470909715,0.7105362215079367,0.4419437316246331,0.6253150305710733,-0.6865215892903507,0.6332221105694771,0.4854881330393255,-0.8256323630921543,0.936348716262728,0.058611370623111725,0.6518744644708931,-0.31290407152846456,-0.022695777472108603,0.22340232087299228,-0.5920807290822268,-0.8325144713744521,-0.4684470882639289,0.9591924413107336,0.607459728140384,-0.38957436056807637,-0.9393437644466758,-0.8504896224476397,-0.8070077006705105,-0.43718253495171666,0.2621395750902593,-0.3665028973482549,-0.945810467004776,0.27043583150953054,0.6862147995270789,0.1072168885730207,0.09900389425456524,-0.12244959268718958,-0.4084543767385185,-0.3453191057778895,0.823764649219811,0.8105524573475122,-0.20025987597182393,-0.7601949428208172,0.613358486443758,-0.6861322335898876,-0.692175735719502,-0.4383896216750145,-0.9713141140528023,0.6777976672165096,0.6808558222837746,-0.9500737953931093,-0.16695945244282484,-0.28140962310135365,-0.14429884357377887,-0.6991096055135131,0.11646693013608456,0.8667028001509607,-0.3463005209341645,-0.1377501506358385,-0.11195201938971877,-0.7527532447129488,-0.07340830937027931,-0.8685664413496852,-0.7606338304467499,0.10851730778813362,-0.21611961722373962,0.4733305396512151,-0.24305523373186588,0.6574736782349646,0.335075072478503,-0.0018983082845807076,-0.8140657669864595,-0.18734666611999273,-0.8350718673318624,0.8560058730654418,-0.10687027452513576,-0.38051949441432953,0.20635755732655525,-0.010156332049518824,0.03468884015455842,0.5040827104821801,-0.4734689141623676,0.9935118616558611,-0.7339356672018766,0.6962730512022972,-0.527653391007334,0.4497416033409536,-0.6157762347720563,0.04911655653268099,0.6319411313161254,0.35649358853697777,-0.5969769130460918,0.48887107986956835,-0.6860750750638545,-0.6701438720338047,-0.8182302475906909,0.4955586059950292,0.12243624962866306,-0.19344923924654722,0.6051222607493401,-0.41144943004474044,-0.7224973673000932,0.7794479709118605,0.036184923723340034,-0.09044627007097006,0.05416047992184758,-0.8718100930564106,-0.8032092680223286,-0.7639823970384896,0.03648052038624883,-0.42317231139168143,-0.234516188967973,0.7327372170984745,-0.08514117449522018,0.36746096750721335,0.6732937563210726,-0.0314772455021739,0.5937848486937582,-0.14432589756324887,0.6489697829820216,0.5672828811220825,-0.28772792406380177,-0.5733207068406045,0.26315363170579076,0.8212039843201637,0.6248723766766489,-0.8591081728227437,-0.9103974541649222,0.5885325307026505,-0.21349290991201997,0.5508794025518,-0.04448631964623928,0.39790691062808037,-0.42340836208313704,-0.22611918533220887,0.7831631596200168,-0.927880153991282,0.26910059666261077,0.19841227401047945,0.8686615349724889,0.18576810462400317,0.7972991350106895,0.18750983709469438,0.8645247234962881,0.1497743153013289,0.19737447705119848,-0.908200747333467,-0.4727753601036966,0.21396914310753345,-0.4928364804945886,-0.27713716635480523,-0.4301433521322906,0.0118139972910285,0.20564644876867533,-0.020044376607984304,0.841340312268585,0.1147625558078289,-0.5336139076389372,0.8936798837967217,0.16609152127057314,-0.6508473418653011,-0.21530094044283032,-0.7118057869374752,0.45360977901145816,0.4901707572862506,-0.2365452558733523,0.9497206145897508,-0.12086186604574323,0.6844389094039798,-0.03178480174392462,-0.3651542509905994,0.6511475197039545,-0.058727177791297436,-0.7901634401641786,0.12006272608414292,-0.3287930474616587,0.48500243620947003,-0.30638381419703364,-0.12791252648457885,0.3746469346806407,-0.667771034874022,0.8194017186760902,0.12249646987766027,-0.8882809793576598,0.7388640521094203,0.3684235825203359,-0.7846672171726823,0.8589919367805123,0.21741747902706265,-0.3570303809829056,0.8504757224582136,0.4356845114380121,0.9996873852796853,-0.046729655005037785,0.719783287961036,-0.6451672818511724,0.9014408118091524,-0.17827799543738365,-0.3443108000792563,0.2709397464059293,-0.6806732695549726,-0.34152729669585824,0.29987158440053463,-0.5602369713597,-0.10268768761307001,0.929438613820821,0.9140610750764608,0.732166385743767,-0.8072268743999302,-0.5848792172037065,-0.8370582251809537,-0.11372572975233197,-0.04600049136206508,-0.8184298956766725,-0.4813576019369066,0.2903269496746361,0.8469504108652472,0.43491492234170437,0.12917935755103827,-0.010505588259547949,0.724790692795068,-0.5682167583145201,-0.687354420311749,-0.5584995779208839,0.16644893726333976,-0.6821065419353545,-0.4078901740722358,-0.16226575104519725,0.35259015718474984,-0.6806034706532955,0.5478575029410422,0.5792506919242442,-0.7983241491019726,-0.631231143604964,0.7537993397563696,-0.045863076113164425,0.9593004686757922,0.6394172990694642,0.464730282779783,0.9817643091082573,-0.07741073612123728,0.1714488286525011,-0.5122985397465527,-0.3378407643176615,0.7531031621620059,-0.5865690000355244,0.74485296709463,0.3268162598833442,-0.6178906676359475,-0.14902354823425412,-0.34081876557320356,-0.5873026009649038,-0.5168880415149033,0.15901866229251027,0.9321423727087677,-0.5296784332022071,-0.41649744426831603,-0.6698797107674181,-0.21765226777642965,-0.05584608670324087,-0.7760398047976196,-0.5487195774912834,-0.1028991281054914,0.46543461736291647,0.8527856138534844,-0.8700831383466721,-0.14990744972601533,0.24606437841430306,-0.25088100461289287,0.5593718313612044,-0.35631491150707006,0.5583362951874733,-0.688620557077229,-0.5246908594854176,0.5730439517647028,0.007091529201716185,-0.22293026046827435,-0.3037656764499843,0.5445772861130536,-0.19691564608365297,-0.09428967582061887,0.5804381365887821,0.7161091682501137,-0.46148828277364373,-0.9425788521766663,-0.042551616206765175,0.8158242967911065,0.11759360181167722,0.3072742582298815,-0.7498459215275943,-0.3113821977749467,-0.2211325829848647,0.37490533431991935,0.4986853958107531,0.04100977163761854,-0.9254520428366959,0.7011927799321711,0.5177289769053459,-0.545135282445699,0.9529554820619524,0.6574544818140566,0.9144319333136082,-0.7481444631703198,0.6098016300238669,0.08010891638696194,-0.6873266589827836,0.4353515086695552,-0.48512265365570784,0.9818012439645827,0.19824022892862558,0.6556939664296806,0.5329039674252272,0.2661694693379104,-0.4195733815431595,-0.5385704501532018,0.4028701651841402,-0.12086118292063475,-0.3162258695811033,-0.10666790744289756,-0.371543787419796,-0.6698259734548628,-0.9104898809455335,0.8172150319442153,-0.19518592953681946,0.15622742334380746,0.3835884206928313,0.12465714477002621,0.3171540447510779,0.4794142786413431,-0.9784358870238066,-0.9881431236863136,-0.09214155003428459,-0.5098790000192821,-0.4517812756821513,-0.7156043867580593,-0.6452173409052193,0.44710906967520714,0.572220996953547,-0.35219024447724223,-0.5298313535749912,0.5760800638236105,-0.7947574811987579,0.6914540287107229,-0.018521611113101244,-0.5666797873564065,0.6356302299536765,0.5644817124120891,0.5548595846630633,-0.2480491572059691,0.7186639020219445,0.5156927295029163,0.9545630030333996,-0.9393699886277318,0.5677142329514027,-0.16700270678848028,-0.012948200106620789,-0.8582467311061919,-0.4670852771960199,0.9042315003462136,-0.06978013413026929,-0.6107606505975127,-0.31457943469285965,-0.2859061905182898,-0.858917121309787,-0.8368578930385411,-0.720699982251972,0.4565630694851279,-0.29807905992493033,0.907219756860286,0.08708250289782882,-0.14604007545858622,-0.47464546794071794,0.5903566293418407,-0.02442500600591302,0.3207443254068494,0.7196769388392568,0.947426444850862,-0.8892066110856831,-0.11071196245029569,0.656228416133672,0.047808773815631866,0.6023247041739523,0.9614197895862162,-0.1471570422872901,-0.35824549896642566,0.5577695625834167,-0.2917649243026972,-0.43601537123322487,0.5859572868794203,-0.3155281995423138,-0.7136991797015071,-0.1202086191624403,-0.9876555153168738,-0.6129584573209286,-0.5409117443487048,-0.8974718414247036,-0.527732964605093,-0.21536143403500319,-0.10468732984736562,0.8864864031784236,-0.33481916692107916,-0.8264562864787877,0.5057711745612323,0.8511389172635972,-0.06119491858407855,-0.9905490260571241,0.26418320974335074,0.03458362212404609,-0.8996755024418235,-0.8411263865418732,-0.3461942975409329,-0.18413567962124944,0.11732219811528921,-0.5967267411760986,0.5239186687394977,0.9274904844351113,0.5088657676242292,-0.004050760995596647,0.014418880455195904,0.11257292330265045,-0.4895422183908522,-0.012437265831977129,-0.8960169800557196,0.3210483845323324,0.3248741705901921,-0.25378614058718085,0.8608475453220308,0.1403261460363865,-0.9345657620579004,-0.08280741469934583,-0.8212966253049672,0.6392464707605541,0.2768580331467092,-0.20518981385976076,0.1065636076964438,0.5662624682299793,0.33090141508728266,-0.29105247976258397,0.7027421365492046,0.6999854440800846,-0.5735334353521466,0.8724986226297915,0.21968560852110386,-0.7011015419848263,0.6007314319722354,-0.8373298803344369,0.14194872323423624,-0.2782851834781468,0.5295570478774607,-0.18409739201888442,-0.15676899068057537,-0.4442652794532478,0.5921534695662558,0.9758659233339131,0.4874724722467363,0.4979312848299742,-0.16280542546883225,-0.7960860221646726,0.33708193013444543,0.8417302151210606,-0.2979704071767628,0.23840094869956374,-0.07660820847377181,0.5684456410817802,0.9328349377028644,-0.23897786438465118,-0.7802395648323,-0.26534631103277206,0.537523964419961,0.28144750697538257,0.1875943960621953,0.8781437799334526,-0.8747281236574054,0.27524884371086955,0.24216989567503333,0.908307091332972,0.429458050057292,0.24370705522596836,-0.786183774471283,-0.7765519805252552,-0.012478146236389875,0.6989227188751101,0.8652896746061742,-0.9516887399367988,-0.42097431560978293,-0.09273663582280278,-0.15930802188813686,0.5540235759690404,0.931785891763866,-0.7816123636439443,-0.44724488304927945,0.24441319797188044,-0.07226645294576883,0.8039532597176731,-0.7028803415596485,0.18714549019932747,-0.46839497704058886,-0.7529193083755672,0.11213875561952591,-0.18289258843287826,-0.8760510887950659,0.8589315894059837,0.5426425454206765,-0.42133522499352694,-0.7584445723332465,-0.45297194132581353,0.5087724565528333,-0.8429503166116774,-0.8812840823084116,-0.5184676600620151,0.7522745216265321,0.5416994616389275,-0.1737027233466506,0.5566018144600093,0.35640435572713614,0.24827655125409365,0.517426508013159,0.7930728630162776,-0.5247172452509403,0.11833310453221202,0.4944174555130303,-0.8662944356910884,-0.06533670797944069,0.7491019307635725,0.548109233379364,0.894338115118444,-0.4214513539336622,-0.29860048461705446,0.9163812380284071,0.49681750778108835,0.09224848123267293,-0.04239527974277735,-0.41507727606222034,-0.8118926882743835,-0.7705051288940012,0.027182951103895903,0.45361666521057487,-0.2524974625557661,-0.09639246063306928,-0.2983434656634927,0.009593152906745672,0.8220052509568632,0.4450962143018842,0.9091151054017246,0.07778167584910989,0.8701060023158789,-0.24930410366505384,0.7861541691236198,-0.7814318831078708,0.11373892240226269,-0.10672564525157213,-0.5454552583396435,-0.6752635654993355,0.34768030932173133,-0.33315633283928037,-0.1833483660593629,0.04839388933032751,0.05840924056246877,-0.7269581137225032,-0.2925293641164899,0.09231794392690063,-0.5929057393223047,0.8562785680405796,-0.5328043545596302,-0.5226291897706687,0.33698750752955675,-0.5350200701504946,-0.0737197077833116,0.7905781758017838,0.20070258155465126,-0.7060278034768999,-0.20279271341860294,0.35649686213582754,-0.49731779797002673,-0.6701331189833581,0.9427316896617413,0.008900220971554518,0.044515253975987434,0.24594563245773315,-0.1989835947751999,-0.6192520689219236,0.8397707086987793,0.19987743254750967,-0.3063648445531726,-0.1932066553272307,-0.5271785142831504,-0.780343352816999,0.4034529863856733,0.6982476837001741,-0.6879128650762141,-0.38698203628882766,-0.07565828459337354,-0.40330810472369194,0.6764971287921071,-0.21817168546840549,0.11719833081588149,-0.4361343323253095,-0.9032491846010089,0.22826456231996417,-0.9511280828155577,0.037836610805243254,0.07820669608190656,-0.15947851398959756,-0.6885536704212427,-0.6605033245868981,0.20542833907529712,-0.8216934432275593,-0.964307279791683,0.7537454585544765,-0.4674345082603395,0.609078835695982,-0.606316146440804,0.06801095558330417,-0.7569776959717274,0.7969683445990086,-0.8798269340768456,0.5919831600040197,-0.9659295231103897,0.25099434331059456,-0.4843797548674047,0.40296411607414484,0.326011526864022,0.41420454531908035,-0.07124930061399937,-0.2504675346426666,-0.5560492384247482,0.7335091889835894,0.7423951216042042,0.5866585155017674,-0.5420467401854694,-0.5623388704843819,0.5323606352321804,0.046138066332787275,0.9676308217458427,0.9495287328027189,-0.4266292816027999,0.9791567223146558,0.6722310557961464,0.8391538606956601,0.8395624202676117,0.14190597785636783,-0.9801029451191425,0.6543292459100485,0.8459449768997729,0.46409479808062315,-0.6317053372040391,0.8782732039690018,-0.48988209292292595,-0.4353708168491721,-0.4669709177687764,-0.7262974781915545,0.7902545765973628,-0.3547884407453239,0.025374998338520527,0.14903895324096084,0.5218434291891754,-0.3860172717832029,0.5893335458822548,-0.9881434342823923,0.10931417718529701,0.17913034558296204,-0.2528082965873182,-0.4031378640793264,-0.3377383556216955,0.4553199904039502,0.3988872352056205,0.7105030426755548,0.3582403864711523,0.6410002508200705,0.14423679606989026,0.0981764025054872,-0.7010460970923305,-0.22637751093134284,-0.10791237279772758,-0.30201920634135604,0.46111555118113756,-0.5957275242544711,0.7939580548554659,0.9063688237220049,0.2792310658842325,0.7404192960821092,0.41537864739075303,0.8145894962362945,-0.05640057707205415,0.2440256979316473,0.30609391117468476,-0.4672066564671695,-0.30701555917039514,0.12743554171174765,0.9205207843333483,0.18728322116658092,-0.1053958679549396,-0.04194743186235428,-0.6911623976193368,-0.9220842104405165,-0.1819788604043424,0.20924336928874254,0.9527857601642609,0.3503226898610592,-0.09414312336593866,-0.6360548562370241,0.7241431120783091,-0.2905270615592599,0.3873589690774679,0.2739193909801543,0.9284652480855584,0.321484440471977,0.27689224015921354,-0.6990939057432115,0.5569117618724704,-0.8705527884885669,-0.7753741219639778,0.5108789741061628,0.2647512243129313,0.8446572204120457,0.7885062568821013,-0.430989034473896,0.30405826726928353,-0.626778197940439,0.816058712080121,0.21446024347096682,0.24764372082427144,-0.7070513721555471,0.6038470538333058,0.4763714182190597,0.6376603692770004,0.34581922413781285,0.4519605617970228,-0.5416039172559977,0.46933811996132135,-0.011219562031328678,-0.667777406051755,0.7099649468436837,-0.6300701601430774,0.8067365633323789,0.3598864101804793,0.159480145201087,-0.8555129203014076,-0.443732266779989,0.566906628664583,0.1341563225723803,-0.39558777771890163,-0.2874398985877633,-0.539852783549577,0.9212697334587574,0.871804912108928,-0.18335662363097072,-0.9709152313880622,0.020117195788770914,0.8134425170719624,-0.06303747091442347,-0.8484788574278355,-0.6773605430498719,-0.0005484959110617638,0.4956971053034067,-0.07756697572767735,0.6776620466262102,-0.32670571422204375,0.22784094978123903,-0.9710464961826801,0.6350219114683568,0.8818078655749559,-0.8914925679564476,0.057588216848671436,-0.6868254081346095,-0.259866981767118,-0.5713889133185148,0.4339850195683539,0.6362442411482334,-0.5325800077989697,-0.8473224057815969,-0.5946225048974156,-0.3432232830673456,0.7634287662804127,0.0411851922981441,-0.18637999380007386,0.5059729460626841,0.9034487772732973,0.057353461161255836,-0.9815681204199791,0.7109840288758278,-0.6490902113728225,-0.34970951918512583,0.7335379347205162,-0.6074469238519669,0.22079254873096943,-0.5153568028472364,0.6234117322601378,0.559311862103641,-0.43916720105335116,-0.8754602284170687,-0.003675237763673067,0.49095826828852296,-0.002836750354617834,0.2673802920617163,0.11695527797564864,0.3601256487891078,-0.4783086599782109,0.13691978808492422,-0.4524666373617947,0.7509292424656451,0.531821177341044,-0.8383330563083291,0.3207682752981782,-0.4129768582060933,-0.1333570471033454,-0.8003451279364526,-0.22957795718684793,-0.9583172313869,0.47589146392419934,-0.9199529867619276,-0.5406606504693627,0.2928843596018851,0.445369272492826,-0.04130749637261033,-0.8984809210523963,-0.7588782021775842,-0.3785567064769566,0.5163987977430224,0.6923236856237054,0.18387088319286704,-0.4117227238602936,0.7369772610254586,-0.4619996566325426,0.03216223372146487,0.9150872705504298,-0.8683019503951073,0.9554230440407991,0.1427311128936708,-0.22876165388152003,-0.6039437670260668,0.21603197418153286,0.5472521148622036,-0.07456671772524714,0.3649616031907499,0.3196389442309737,-0.03488072520121932,0.7569739753380418,-0.04701896104961634,0.9794915965758264,-0.38688810309395194,-0.890418694820255,0.6444630804471672,0.6172382282093167,-0.14930747775360942,0.15322012826800346,0.6299807238392532,0.7917369427159429,-0.6011959407478571,-0.9416397991590202,0.4621463338844478,0.12361710332334042,0.055254210252314806,-0.9715188103727996,-0.04459833586588502,-0.7163483728654683,-0.9361090203747153,-0.5887883817777038,0.5755328261293471,-0.6547793988138437,0.8580240104347467,-0.0068634627386927605,0.8288261350244284,-0.2598890610970557,0.48013922246173024,0.09062274498865008,0.5983744841068983,-0.9291268517263234,0.7883164947852492,-0.32901771925389767,0.9480042872019112,-0.305464222561568,0.9204657762311399,-0.6949139158241451,0.12475279392674565,0.8837640122510493,0.9514209171757102,0.7566208015196025,0.8333170190453529,0.3189593986608088,0.0964016611687839,-0.45841368241235614,0.9598305965773761,-0.17060844926163554,0.9813519478775561,-0.43829961959272623,0.056143791414797306,0.7742818067781627,-0.9735346506349742,-0.12712381221354008,0.9422672400251031,-0.8049891656264663,0.34346703020855784,-0.8853016216307878,-0.6718472293578088,0.009717770852148533,-0.03649738663807511,-0.9471715041436255,0.5509852371178567,-0.1467585489153862,0.35743787698447704,0.1633886406198144,-0.6304857842624187,-0.43483789125457406,-0.5756526258774102,0.8315862929448485,0.2547143129631877,-0.6818889188580215,0.797490949742496,-0.8706573587842286,0.4907757635228336,0.16781365685164928,-0.39346272265538573,0.6134160626679659,0.27270216634497046,-0.8651881152763963,-0.9046061253175139,-0.31228129705414176,-0.9013959863223135,-0.5367374997586012,-0.6648918115533888,0.8021427514031529,-0.3959308029152453,0.580628723371774,0.017773244995623827,0.271405431907624,0.40554905869066715,0.6415081368759274,-0.2590120928362012,0.371784754563123,0.03545014513656497,0.04769308120012283,0.3959000501781702,0.46254420885816216,-0.7220156011171639,-0.4893313026987016,-0.8357008900493383,-0.3664218606427312,0.4438258963637054,0.9506846973672509,0.10973864141851664,0.4995253374800086,-0.653078727889806,-0.34649688424542546,0.25633857725188136,-0.887147780507803,-0.70204016007483,0.19612145191058517,-0.6356031824834645,-0.20257292268797755,-0.018484709318727255,-0.8195296707563102,-0.22371175745502114,0.46623100573197007,-0.19492030795663595,-0.3714050711132586,-0.7315813829191029,0.27743337815627456,-0.1889546224847436,-0.04938657255843282,0.7221763459965587,-0.5306271710433066,0.6248987223953009,0.3156390627846122,-0.3953625434078276,-0.20172943966463208,-0.8059185002930462,0.08539313729852438,-0.4396707732230425,-0.23089462192729115,0.8326986944302917,0.4499362362548709,0.9213242772966623,-0.743825308047235,-0.16298292577266693,0.25243317941203713,-0.9212188781239092,-0.6875230139121413,0.9832085184752941,0.4063402018509805,-0.9569821418263018,-0.12974260281771421,-0.16909260721877217,0.27989549189805984,-0.016058114357292652,0.4016172136180103,0.941364427562803,-0.23977192351594567,0.4978302828967571,-0.4385570012964308,0.08309474913403392,0.5749000729992986,0.9415176026523113,-0.9547359314747155,-0.28806025674566627,-0.29408421739935875,-0.9957849173806608,0.45034935884177685,-0.5853923880495131,-0.19648557621985674,0.5042585451155901,-0.8489824468269944,0.6821745256893337,0.4848040626384318,0.09519663965329528,-0.837805830873549,-0.8671188256703317,-0.9097703127190471,0.9197741593234241,0.06978695467114449,0.7464464600197971,-0.5062377387657762,0.23065783130005002,0.6472588996402919,-0.18045381736010313,0.2707100138068199,-0.26354930363595486,-0.3908068989403546,0.0548429018817842,-0.039711123798042536,0.5544157158583403,0.6679565655067563,0.6503815804608166,-0.9947242620401084,0.5826347637921572,-0.8376088328659534,-0.3141651442274451,0.2264103777706623,-0.7271372769027948,-0.4678707313723862,-0.053906721994280815,0.35163262905552983,-0.5635082134976983,0.9226501174271107,0.347107567358762,-0.5040774866938591,0.7756168427877128,-0.38455215422436595,0.5313490070402622,-0.9414250771515071,0.3575598788447678,-0.37499602185562253,-0.10462106391787529,-0.4065635446459055,0.12964950362220407,-0.7523087211884558,0.9206166779622436,-0.5233982880599797,0.4157595094293356,-0.30212762439623475,-0.1744190384633839,-0.8800904680974782,0.9417447089217603,0.5378456395119429,0.41533036157488823,0.58784055756405,0.594583619851619,-0.33752849139273167,0.7699205758981407,0.005817007273435593,-0.6614440525881946,-0.5211840528063476,0.7138319252990186,0.25934498524293303,-0.8711982350796461,-0.29422124195843935,-0.4864057279191911,0.08332382142543793,-0.22905113780871034,-0.9254648452624679,0.5350771560333669,-0.4024941809475422,-0.5392901008017361,-0.2337327329441905,0.8851716150529683,-0.8357213656418025,-0.3523730095475912,0.1958634532056749,-0.8440679274499416,0.7962894537486136,0.41119266068562865,0.24868696928024292,-0.11613441910594702,0.3985547930933535,0.846197972074151,0.8195434557273984,0.9410511213354766,0.06415171502158046,0.8152180216275156,0.6937656085938215,0.5239033522084355,-0.059850613586604595,-0.3554838658310473,0.24611922400072217,0.30190335866063833,0.8552748118527234,0.895790749695152,0.6665326366201043,-0.6280935858376324,-0.1927151125855744,0.05119350552558899,-0.17849542805925012,0.6047672922722995,-0.11626314790919423,0.45853443956002593,-0.6893374840728939,0.6240172674879432,0.5882090590894222,-0.5368839190341532,-0.8268069089390337,0.4157530856318772,-0.21505062095820904,0.6239141384139657,-0.5386197604238987,0.988934513181448,0.8315604911185801,-0.1732801697216928,0.6614502314478159,-0.37875825678929687,0.8144263196736574,0.31876375107094646,0.8699575643986464,0.012126112822443247,0.1847380525432527,0.16082276636734605,0.4666006830520928,0.23920598486438394,-0.6807363601401448,-0.9061152255162597,0.8371296469122171,0.3549351501278579,-0.29780611116439104,-0.8169312905520201,0.9491241592913866,0.8396326089277864,-0.45173168927431107,-0.33161402121186256,0.11083377851173282,-0.9145694063045084,-0.4019060484133661,0.4499726709909737,0.673018841072917,0.6633581882342696,0.9687986494973302,0.5012021525762975,-0.22030882071703672,0.34735253313556314,-0.12367144599556923,-0.09344365634024143,0.775020772125572,-0.6592497443780303,0.026962225791066885,-0.44806970469653606,-0.8864907696843147,-0.366289169061929,0.534203733317554,-0.8652605297975242,-0.9465769552625716,0.4056299510411918,0.18232593405991793,-0.2475919988937676,-0.5483113881200552,-0.6050887564197183,-0.875379488337785,-0.22423970513045788,-0.9250683509744704,-0.027356991078704596,0.4236227641813457,-0.29304498294368386,0.8983298251405358,-0.3086461001075804,0.7478388417512178,-0.4513613046146929,-0.19311961997300386,0.9250748013146222,-0.24615863477811217,0.40179860685020685,-0.0017684348858892918,-0.014419772662222385,-0.807324493303895,0.04849539930000901,-0.7618878851644695,-0.4945801799185574,-0.74307099590078,0.7229506303556263,0.9791484279558063,0.5078721749596298,0.7631219034083188,-0.8864618353545666,-0.5075397198088467,0.36519379168748856,0.9453015481121838,0.24750525038689375,-0.13924559066072106,-0.6456543472595513,0.8864204077981412,0.05408775806427002,-0.0769155346788466,0.8171057929284871,0.3022874603047967,-0.841736035887152,0.42439202405512333,-0.5676111881621182,-0.21198000572621822,0.9841509996913373,0.2917344784364104,-0.7488123197108507,0.022900130599737167,0.08140078047290444,0.47712220437824726,0.6319232457317412,-0.16449947375804186,-0.041731647215783596,-0.10977035574615002,-0.5711818807758391,0.7848359323106706,-0.7126875543035567,-0.5431227860972285,-0.7023101900704205,0.4469773783348501,0.9294040971435606,-0.3761015427298844,0.2886684942059219,0.4605488823726773,-0.07025012513622642,-0.9917301977984607,-0.8784676636569202,0.8353509935550392,0.11062155058607459,0.15259342407807708,0.3685194877907634,0.35563977155834436,0.11378931114450097,-0.5589044620282948,-0.817034478764981,-0.6015357971191406,0.8809066768735647,0.18627577973529696,0.07229466829448938,-0.15306394267827272,0.04662151262164116,0.776733614038676,-0.34268464194610715,-0.6501952554099262,-0.0867167036049068,-0.828546563629061,0.9750947463326156,0.727655456867069,0.2086983877234161,0.4169424790889025,0.976451298687607,-0.15890405559912324,0.005663083400577307,-0.556780347134918,0.49990719137713313,-0.28799324529245496,-0.10324745066463947,0.7924843649379909,0.36962988041341305,0.33581959130242467,0.0718725249171257,-0.5001109945587814,0.40740265091881156,-0.1713642575778067,-0.6920144339092076,0.07968598650768399,0.505916019435972,-0.4378323727287352,-0.532265636138618,-0.26450798148289323,0.4257308696396649,0.13328130077570677,-0.15685197804123163,0.050077756866812706,-0.7553402003832161,-0.9586213687434793,-0.486600243486464,0.8215582217089832,-0.28813346615061164,-0.44524304661899805,-0.5915635665878654,-0.985587673727423,0.5541553003713489,0.9958176915533841,0.5022398885339499,-0.7788634896278381,-0.6578887840732932,0.8599739549681544,0.5164192072115839,0.49404106847941875,0.3608440072275698,-0.6123422896489501,-0.18423826899379492,-0.47981674736365676,0.8174482178874314,0.3549728696234524,0.6211978881619871,0.5645689880475402,0.3090389487333596,-0.9881932898424566,-0.5755290947854519,-0.9858622956089675,-0.3801521216519177,-0.6896264781244099,0.7160815978422761,-0.45434611896052957,0.9217744176276028,-0.3854741370305419,0.8309740563854575,0.22259643021970987,0.8417612123303115,-0.42030021268874407,0.50971814757213,-0.7127649956382811,0.2630701051093638,0.41728454641997814,-0.208934735506773,-0.31728475634008646,0.5521294372156262,0.8773672911338508,0.6955108409747481,-0.042099711019545794,-0.44509139377623796,-0.2744327699765563,0.32319852244108915,0.7998728607781231,0.3076349380426109,-0.790254469960928,-0.4064008346758783,0.31147276144474745,-0.2317924853414297,-0.07264202553778887,-0.6387584647163749,0.6423643138259649,0.8305045044980943,-0.10780217126011848,0.2909584320150316,0.842431538272649,-0.353272445499897,0.07639489509165287,0.2417356977239251,-0.9924917449243367,0.6413518842309713,0.7970363097265363,-0.5239117881283164,0.4539294228889048,0.21005627559497952,-0.6740658553317189,0.8828852148726583,0.9806828298605978,-0.3298467993736267,-0.6532365381717682,-0.5030177980661392,0.9439915916882455,0.13782312534749508,-0.1669710036367178,0.06111896177753806,-0.5785451312549412,0.44756140699610114,-0.013052064925432205,0.27953582163900137,0.9664313024841249,0.2110660020262003,-0.4910854725167155,0.6471352968364954,0.03007288509979844,-0.7599235735833645,-0.9608333352953196,0.3888451671227813,0.6348203681409359,-0.8841873449273407,-0.31619621766731143,-0.9931657575070858,-0.01749665103852749,-0.7305643740110099,0.09596808860078454,0.6090361196547747,0.9613676033914089,-0.6853171586990356,-0.4187951213680208,0.24691843520849943,-0.7182684317231178,-0.7173115978948772,-0.6671166121959686,-0.42249762872233987,-0.016024291049689054,0.1688789762556553,0.9063548902049661,-0.7922568223439157,-0.9946271264925599,0.6683260565623641,0.22183196572586894,-0.47333140345290303,0.14777837228029966,-0.5798714230768383,-0.5019124983809888,-0.6632923395372927,0.945703137665987,-0.006617717444896698,0.9689756836742163,0.4037615512497723,-0.6765486001968384,-0.08190693566575646,0.8881474672816694,0.7529283915646374,0.8956160563975573,0.7089215302839875,0.49148326087743044,-0.60879125026986,0.6646314975805581,-0.7757822023704648,0.6651095198467374,-0.3665843829512596,0.5435540596954525,-0.995608024764806,-0.8825764646753669,0.5658131283707917,0.32678831554949284,0.5621327320113778,0.08479487570002675,-0.45472191646695137,0.10465299431234598,-0.1993271061219275,-0.9502379139885306,-0.6393279619514942,-0.0469198296777904,0.03784978995099664,-0.4906077813357115,0.5480600935406983,-0.8956466014496982,-0.41148524917662144,0.38553360709920526,0.7169641605578363,0.7342691938392818,0.6748317629098892,-0.00679419469088316,0.11781712481752038,-0.21251435624435544,-0.2027746681123972,-0.3354932237416506,-0.16795391496270895,-0.5085810930468142,-0.7038037329912186,-0.4702658518217504,-0.6308104046620429,-0.9245973536744714,0.29490118753165007,0.371024620719254,0.45824022544547915,0.346922195982188,0.9635483077727258,0.2800763435661793,-0.004835712257772684,0.09651104873046279,0.6729431650601327,-0.6394141833297908,-0.22470058547332883,0.07022754335775971,-0.36902821715921164,-0.4538038372993469,-0.16994604095816612,0.19313985714688897,-0.4253147607669234,0.6322126910090446,0.5271279071457684,0.31112792901694775,-0.052693912759423256,0.8334565162658691,0.5198888704180717,-0.48845573933795094,-0.6053072949871421,-0.29520822037011385,-0.054946871008723974,-0.63496222672984,-0.19401508290320635,-0.49646321684122086,0.7557428432628512,-0.030910000670701265,-0.7321691811084747,0.31381084118038416,0.08361506834626198,0.3545784498564899,-0.9126734179444611,-0.7661907426081598,0.35061935521662235,0.27896702848374844,0.3904258874244988,0.6397093757987022,-0.8527509532868862,-0.8411085298284888,-0.8509316481649876,0.8818940669298172,-0.030838605482131243,-0.6302857659757137,-0.9199286582879722,-0.6796333421953022,-0.051363139878958464,-0.3004020508378744,-0.43588307686150074,0.9793772106058896,0.2180251651443541,0.13159025367349386,-0.547867089509964,-0.9927170509472489,0.05421900888904929,-0.8720545931719244,-0.6936808032914996,-0.7391429115086794,-0.13061939179897308,-0.8750192602165043,-0.4040781715884805,-0.3832959271967411,-0.39092456735670567,0.5033457209356129,0.8446841859258711,-0.34157334500923753,-0.7004534043371677,0.675724487286061,-0.33937591314315796,0.3281475123949349,-0.5457987873815,0.10347674321383238,0.7843070137314498,0.5862453430891037,-0.7295003407634795,-0.5783899216912687,0.8985966267064214,0.1970548778772354,-0.4838168458081782,-0.6105370125733316,0.3387748864479363,0.7777514844201505,0.2591228587552905,0.985777354799211,-0.7776809623464942,0.9707042882218957,0.16773192770779133,0.4369380767457187,-0.43852799013257027,-0.907340616453439,0.2653019204735756,-0.07518071820959449,-0.8794550956226885,0.4321425808593631,-0.48283442156389356,-0.6623231335543096,-0.1474426523782313,-0.5629097218625247,0.9640903756953776,0.8904888941906393,-0.001359474379569292,0.07907289080321789,0.42305710818618536,-0.6255443841218948,0.5348622919991612,0.06551697663962841,-0.06001978740096092,0.38295894768089056,0.18265517009422183,0.4470595885068178,-0.1242497144266963,0.01024939538910985,0.5823997124098241,-0.7615510327741504,-0.441321212798357,0.33439121255651116,0.7224782295525074,-0.35005671391263604,-0.3558422848582268,0.5882409759797156,0.8308947123587132,-0.8689184472896159,-0.49670630507171154,0.39948558900505304,-0.4965103887952864,0.11516138957813382,0.24578833812847733,0.6477448837831616,0.07865166384726763,-0.371135629247874,-0.8213688749819994,0.18831241130828857,0.3545864378102124,-0.7187978434376419,-0.47311650356277823,-0.7198901204392314,0.19075837824493647,-0.6857068035751581,0.4813256780616939,-0.20004883082583547,0.5773696503601968,-0.6940571232698858,-0.3287242241203785,-0.6763019766658545,-0.14971702685579658,-0.5942169008776546,-0.08421104680746794,0.6810338711366057,-0.3228304707445204,0.14645477291196585,0.3426757659763098,0.42607122426852584,0.7768433624878526,0.18225200986489654,0.3858252358622849,0.9429097967222333,-0.8459201632067561,0.03941622609272599,-0.4162448113784194,0.4210317535325885,0.9386358833871782,0.24461619183421135,-0.08738596038892865,-0.0727895051240921,-0.5633354354649782,0.9654665477573872,0.9804764240980148,-0.9246139354072511,0.6705877776257694,-0.2980214701965451,0.13088329695165157,0.7298223678953946,0.5770956394262612,0.7940669232048094,0.6957368217408657,0.8079043319448829,0.7079498949460685,-0.6477592210285366,0.4666648334823549,-0.4901207764633,0.3767109918408096,-0.5148650449700654,-0.8040997167117894,0.7568449154496193,0.25849038921296597,-0.549287062138319,0.9180226633325219,0.7124109514988959,0.3224948439747095,-0.3763807029463351,0.9170586601831019,0.31775646191090345,-0.10298915486782789,-0.9048004527576268,0.2884526769630611,-0.3882605596445501,-0.3605143027380109,0.7066971100866795,0.21614417945966125,-0.21848933352157474,-0.31426534801721573,0.17891080398112535,0.08304769266396761,-0.7045042030513287,-0.2985903415828943,0.6684009837917984,0.8605470098555088,0.061796221416443586,0.60762476362288,0.38434051256626844,-0.7438774327747524,-0.4677019026130438,0.6323373937048018,-0.7604006775654852,-0.8558549876324832,-0.6945367762818933,0.14453175151720643,-0.046598419081419706,-0.4552716496400535,-0.9786074110306799,0.16451630275696516,0.26923148427158594,0.695634919218719,0.9150237222202122,-0.5667947106994689,-0.44877059711143374,0.998600494582206,0.4083300386555493,-0.7585690394043922,0.8527081818319857,-0.9582475167699158,-0.25770588498562574,0.01644608937203884,-0.3740224130451679,-0.46369544323533773,-0.23532390175387263,-0.8494173595681787,-0.08162964461371303,0.24942211294546723,-0.3545471038669348,-0.20139318518340588,0.06201164564117789,-0.7410223595798016,0.9325409098528326,-0.30662569170817733,-0.12177715543657541,0.7816367922350764,0.08938033739104867,-0.9600408701226115,-0.9299287083558738,-0.025367638561874628,-0.3986522858031094,0.1559398495592177,0.4150568339973688,0.5268044103868306,0.6692447531968355,-0.5536678121425211,-0.98287124466151,-0.6383692254312336,0.6579564539715648,0.7924463776871562,-0.20267800893634558,0.12906501488760114,0.955920172855258,0.641207464504987,-0.45844119880348444,0.11726065073162317,0.8982441504485905,-0.04541842080652714,-0.23856839165091515,-0.7160112159326673,-0.12014014786109328,0.6781094069592655,-0.8636976885609329,-0.34108912386000156,-0.3406374529004097,-0.847051755990833,-0.34643662674352527,-0.7091331412084401,-0.39391047321259975,0.9658624576404691,-0.4156386973336339,-0.33583984756842256,-0.817856271751225,-0.583329651504755,0.08749465364962816,-0.9229027051478624,0.5464895609766245,0.3776808031834662,-0.9402795797213912,-0.5648182812146842,-0.3829186758957803,0.4571781028062105,0.7759119030088186,0.8896055459044874,-0.43413872737437487,0.719516565091908,0.07367730792611837,0.7014552834443748,0.7875827066600323,-0.34806481236591935,0.36860801046714187,0.8115704325027764,0.6858697161078453,-0.3762905881740153,-0.08480137912556529,0.7029366106726229,-0.7960590557195246,-0.36042144102975726,0.19082836899906397,-0.4793683961033821,0.5424907742999494,-0.4808004698716104,-0.15856619365513325,-0.5852567809633911,-0.6290132440626621,-0.8803236801177263,-0.6668168348260224,0.9241600544191897,0.5565426400862634,-0.12301849946379662,0.7127898242324591,-0.4388050464913249,-0.4183813673444092,0.013349747750908136,-0.029689332470297813,0.6727514914236963,-0.6365394392050803,0.5912902737036347,0.08656827779486775,-0.2200776361860335,0.22479626210406423,0.8786775008775294,-0.5357281123287976,0.46564272744581103,0.3063251725398004,-0.9489508611150086,-0.7609262820333242,0.8211619006469846,0.23072681948542595,-0.2950625126250088,-0.9046035511419177,-0.8354444708675146,0.8109990614466369,-0.6069596535526216,-0.05921922205016017,-0.7394540458917618,0.3647452434524894,-0.9558635260909796,-0.4077208377420902,-0.5518640880472958,0.7746717794798315,-0.26022232603281736,0.8798957457765937,0.2036415273323655,-0.4154437957331538,0.21220804704353213,0.3497724439948797,-0.8279780633747578,-0.7243864815682173,0.18206686666235328,0.4969002795405686,0.7244764538481832,-0.40902772126719356,0.16279477858915925,0.5618179063312709,-0.09603427117690444,-0.31643288722261786,-0.758180558681488,-0.46427018055692315,-0.7320712320506573,0.10271570459008217,-0.7617672239430249,0.42680358281359076,0.8699923800304532,-0.5538020269013941,-0.6529606613330543,-0.6306586135178804,0.06654200423508883,-0.5645578592084348,0.5357688548974693,0.04113062284886837,-0.4523139437660575,-0.8378362143412232,-0.04210790665820241,0.8745944215916097,-0.7625074842944741,0.23587166238576174,0.19638130767270923,-0.01720686024054885,0.6191133591346443,-0.7985589886084199,-0.8310110433958471,0.3456570841372013,0.42793169943615794,0.3254435881972313,0.987740168813616,-0.3453622297383845,0.391844414640218,-0.9688191055320203,-0.8709071311168373,0.7863748925738037,0.7143674669787288,-0.8738479944877326,0.9245762713253498,0.60212905658409,0.9629289200529456,0.23135470831766725,-0.6164872325025499,0.9480183753184974,-0.34183379961177707,0.35968052549287677,0.8228272786363959,-0.6417742865160108,-0.2725535435602069,-0.08700511464849114,-0.6950665698386729,0.3816417087800801,0.21731219114735723,0.1430389885790646,0.19960072310641408,0.5775633100420237,-0.644888648763299,-0.713616278488189,-0.6832070644013584,0.7198745799250901,0.09736302262172103,0.6314866719767451,0.127186790574342,0.24614944960922003,-0.23545226035639644,-0.050699769519269466,0.2543174377642572,-0.9337518061511219,-0.769763526506722,-0.373377890791744,0.6746551375836134,-0.3349347738549113,-0.03386454377323389,0.573778307531029,0.5127755124121904,0.07372777350246906,0.7020007204264402,-0.17088977014645934,-0.4733684309758246,-0.9335868670605123,-0.34507028479129076,-0.5818097470328212,0.6011525113135576,0.7279093130491674,-0.09678965527564287,0.979136873036623,-0.9891888140700758,0.918241242878139,0.5465631554834545,-0.7482015769928694,0.25384816620498896,-0.24373023258522153,0.5748294666409492,0.6682340460829437,0.30944371363148093,0.8719878578558564,-0.9490769729018211,0.5453895176760852,0.03968471568077803,0.058357300236821175,-0.34088406432420015,0.2686027567833662,0.6326003102585673,-0.35341547476127744,-0.28316150326281786,-0.03976114187389612,-0.5500249764882028,-0.7462469507008791,-0.9562538671307266,-0.9386733458377421,0.6904243198223412,-0.23277721228078008,0.3625295697711408,-0.20094306766986847,-0.6990173729136586,-0.9887836826965213,0.8790521258488297,-0.17306243628263474,-0.2410625317133963,0.04208841314539313,0.3348563648760319,-0.9530054479837418,0.7489631595090032,0.1675239596515894,0.3920086440630257,-0.5928720384836197,-0.5511887958273292,-0.45773441158235073,0.9132731589488685,0.5473540956154466,-0.31715014204382896,-0.3050967548042536,0.1722340057604015,-0.7617330672219396,-0.9861340625211596,0.10020170966163278,0.9903728878125548,0.6650288281962276,-0.15311626018956304,0.00947782676666975,0.5099082575179636,-0.11312554171308875,0.14010568475350738,0.3602350796572864,0.15195687115192413,0.5176336960867047,-0.2171598174609244,0.21022716164588928,0.7880325727164745,-0.9451046450994909,-0.7869261153973639,0.4367284174077213,0.5079542994499207,-0.6338813714683056,-0.44074800005182624,0.6614427715539932,0.05203837901353836,-0.4523264179006219,-0.9738619616255164,-0.1004895493388176,0.5743670566007495,0.3903502435423434,-0.8647939572110772,-0.004310314077883959,-0.05353161413222551,0.5272543970495462,0.6492059999145567,-0.5521395574323833,-0.8490484543144703,0.9329647980630398,0.45152013609185815,0.49481551302596927,-0.8856722484342754,0.950593744404614,-0.29571626288816333,-0.08007419900968671,-0.7978043775074184,-0.8946609408594668,-0.23912370158359408,0.086001668125391,-0.3954207147471607,-0.27485330402851105,0.5528498371131718,-0.6832866803742945,0.09893155610188842,0.24417579313740134,-0.6456641280092299,-0.3278687885031104,-0.33388709742575884,0.6040318673476577,-0.5825968408025801,-0.09230336640030146,-0.01098778611049056,0.33879658207297325,-0.9571895147673786,0.8284805933944881,0.7664432758465409,-0.5528918118216097,0.20800665114074945,-0.5263379467651248,0.9489349406212568,-0.6689058574847877,-0.6845599911175668,-0.8844651295803487,-0.3508938681334257,-0.7756000207737088,-0.04671507561579347,-0.32044243486598134,-0.10027478449046612,-0.05036154203116894,0.25041348952800035,0.2468318692408502,-0.5935203460976481,0.19285000208765268,0.29176136665046215,-0.6439505498856306,-0.626718349289149,-0.2870160024613142,-0.9192408295348287,-0.38313506497070193,-0.4956392301246524,-0.6524739097803831,-0.6918743187561631,-0.3190263290889561,-0.7882151086814702,-0.3376115644350648,0.9386559114791453,0.6723820185288787,0.7321408786810935,-0.424563177395612,-0.030603235121816397,-0.7184206140227616,-0.5297234812751412,0.3799364850856364,0.8512963471002877,-0.02680963557213545,0.4780781315639615,-0.27372850058600307,0.9619076014496386,0.5477471123449504,-0.23832856304943562,0.5493145384825766,-0.9911442068405449,-0.2793705742806196,-0.152537670917809,0.3401184221729636,0.302711698692292,-0.4607873191125691,0.35102403489872813,0.7937464732676744,-0.44101131660863757,-0.1955125886015594,0.8760361494496465,0.2543369992636144,-0.1877037938684225,0.9650024301372468,-0.8470254512503743,-0.24269161326810718,0.7410738822072744,-0.281002776697278,-0.7752045467495918,0.11947666434571147,0.11147719249129295,-0.062087873462587595,0.6116020111367106,-0.062152691185474396,0.4062786353752017,0.5159943578764796,0.6807012846693397,-0.16883516032248735,-0.6559742861427367,0.02706318162381649,-0.9401343800127506,-0.12560784490779042,-0.325933572370559,0.37560660066083074,0.498297655954957,-0.22961209248751402,0.010099978186190128,0.33311446756124496,-0.7067501093260944,-0.7317920299246907,-0.15610640542581677,-0.6421695309691131,-0.0008091619238257408,-0.5694425804540515,0.7106518358923495,-0.3965215594507754,-0.7721767695620656,0.5842366772703826,0.921443382743746,0.6390129933133721,0.7620245716534555,-0.9665841208770871,0.5883151614107192,0.2332725585438311,-0.07972887437790632,0.05022840341553092,-0.49885091185569763,0.1084715542383492,0.8494906472042203,0.5529014319181442,-0.879404975567013,-0.9959730566479266,-0.050523847341537476,-0.633040189743042,0.8075053030624986,0.03966035880148411,-0.09482316765934229,0.35716027533635497,0.8794881757348776,-0.7199751851148903,0.6154221347533166,0.7978416914120317,0.5906826118007302,-0.5016579208895564,-0.6241921586915851,-0.4204693646170199,0.21849678363651037,0.7032333509996533,0.02501449128612876,0.8053141054697335,-0.2593111004680395,0.03142752079293132,0.9462582296691835,0.8053547595627606,-0.07483688881620765,-0.9690532078966498,-0.8542537675239146,0.6364026721566916,0.920196486171335,0.997768759727478,-0.4845228409394622,0.2580048772506416,-0.7278198334388435,0.9042355874553323,-0.05410463223233819,-0.45932398131117225,-0.4485001927241683,0.44739487301558256,0.9622759185731411,-0.8465561931952834,-0.7437199535779655,-0.9321840819902718,0.595442131627351,-0.33755285665392876,-0.8834309335798025,0.5413966113701463,-0.8976468075998127,0.5424200887791812,-0.2964531681500375,-0.7221269491128623,-0.03979815961793065,-0.6018927730619907,0.4757883232086897,0.4383819568902254,-0.25165171502158046,0.11146491160616279,-0.36097711604088545,-0.09119395352900028,-0.4229103703983128,-0.5417833169922233,-0.36219033086672425,0.11298381723463535,-0.07607479020953178,-0.514673750847578,-0.6827019406482577,0.7079116445966065,0.07057556929066777,-0.29717662604525685,-0.2733178581111133,-0.2001690217293799,-0.7970187366008759,-0.08993834676221013,0.1837024358101189,-0.23087692353874445,0.7943111676722765,-0.5876564271748066,-0.2666142447851598,0.01735188253223896,0.38466860353946686,-0.05603304132819176,-0.714958165306598,0.9542819219641387,0.4878382198512554,-0.8780998871661723,0.9328513229265809,0.10276222741231322,-0.4445985471829772,0.560095694847405,0.8557162978686392,0.37615772243589163,0.11089518945664167,0.09865271206945181,0.9973122831434011,-0.5769729600287974,-0.7999032349325716,-0.762779810000211,0.7641366040334105,0.03275567479431629,-0.5993195655755699,0.972118191421032,-0.26431288477033377,0.1459353738464415,-0.611900307238102,0.78543068934232,-0.7372349393554032,0.6263845884241164,0.7713476344943047,0.17207983322441578,-0.8679294465109706,-0.4128552540205419,0.2505362047813833,-0.6552843716926873,-0.86208460573107,0.04893816588446498,0.33467094227671623,0.47301134234294295,-0.5361651726998389,-0.8153315442614257,-0.08138604322448373,-0.9008329352363944,-0.733812965452671,-0.15893130842596292,0.6537590539082885,0.4445128096267581,0.7363559165969491,-0.898538458161056,0.3130862885154784,0.008050641976296902,-0.12072512973099947,0.16399677656590939,-0.6764289769344032,-0.09745054971426725,-0.7827545800246298,0.5348990317434072,-0.6732952403835952,0.18205278925597668,0.14839101722463965,-0.1170648280531168,0.9886817960068583,-0.7508715577423573,-0.6965588852763176,0.36372191552072763,-0.6919649154879153,0.8911403929814696,-0.3901366563513875,-0.17541398527100682,0.8807540619745851,-0.514496716670692,0.9797724229283631,0.9197956072166562,-0.2244957978837192,0.6508592832833529,0.8778936029411852,0.7312952829524875,0.66740632802248,-0.5664970236830413,0.12929635727778077,0.38706543389707804,0.8413108657114208,0.9730493505485356,-0.47940137702971697,-0.45513026835396886,0.8340049111284316,-0.4033813467249274,-0.8122067339718342,-0.6535091665573418,-0.8659298894926906,-0.38424347154796124,0.9111866489984095,-0.21127570373937488,0.4551332341507077,0.388225510250777,-0.11830783868208528,-0.11612461041659117,-0.37022196454927325,0.98622295120731,-0.452521737664938,0.9569446160458028,0.6500734142027795,0.25683678267523646,-0.022703449707478285,0.3572007231414318,-0.48963894648477435,0.637369442731142,-0.9386794152669609,0.5046834070235491,0.01719700265675783,-0.6822494217194617,0.6402382925152779,0.6516754506155849,-0.811449792701751,-0.6004268112592399,0.21239232877269387,0.6026632185094059,-0.4531631995923817,0.05093240737915039,-0.3547388934530318,0.8475208501331508,-0.18405178375542164,0.6108910064212978,-0.06313553499057889,-0.816232624463737,-0.19261183449998498,-0.9835681701079011,-0.9469465031288564,0.26253437995910645,0.11324020102620125,0.6866302918642759,0.6534898234531283,0.5072124903090298,-0.6805026894435287,-0.13973634969443083,-0.06970223458483815,-0.6308589270338416,0.309962194878608,-0.616361953318119,0.2632314790971577,-0.6718332218006253,-0.7301394622772932,-0.4064023275859654,0.4369367817416787,0.7857842687517405,0.8919099564664066,0.13942346535623074,0.8865465354174376,0.3118414478376508,-0.889831964392215,0.2986529180780053,-0.578926500864327,0.7758181933313608,0.38966130232438445,0.9857581164687872,0.1664372025988996,-0.35382173163816333,0.09191753389313817,-0.023896333295851946,-0.3816169323399663,0.8937184466049075,-0.41850996436551213,-0.2164451670832932,-0.045336675364524126,0.45220627216622233,-0.18901211209595203,0.37152467761188745,-0.917046447750181,0.7772286268882453,0.7493040845729411,-0.953836475033313,-0.7789872400462627,0.1807880299165845,-0.36242647003382444,0.32324298936873674,0.6149748708121479,-0.1299722376279533,-0.5509958597831428,-0.5894547482021153,0.5658522373996675,-0.9278288735076785,0.1415753709152341,0.272120448295027,0.20229162415489554,0.7314698677510023,-0.8533203713595867,-0.29459891794249415,-0.8383123376406729,0.5747677916660905,-0.5666653402149677,-0.29061834793537855,0.649928605183959,0.12754949601367116,0.45994095457717776,0.39698872342705727,0.8450382854789495,0.9830620773136616,-0.012558803427964449,-0.7177841127850115,0.4725483153015375,-0.17072842363268137,-0.4837685893289745,0.030630576889961958,-0.9108553789556026,0.3263263422995806,0.46412037778645754,0.9648926490917802,0.0008475235663354397,-0.4591112728230655,-0.41139206336811185,0.46522192703559995,0.05885851988568902,0.44057037215679884,0.540070153772831,0.9312959085218608,-0.3253931528888643,0.6944774365983903,-0.484602072276175,-0.9503876003436744,0.09106232924386859,0.8059588922187686,0.011470394674688578,0.9187087435275316,0.7431549397297204,0.824638435151428,0.4335370841436088,0.5327081917785108,0.6948305885307491,-0.22738911397755146,0.3627021722495556,-0.6809603073634207,-0.2332686665467918,-0.557754784822464,-0.4575856290757656,-0.3859613169915974,0.026899362914264202,0.5024657566100359,-0.044938995968550444,0.7112384866923094,-0.005741707049310207,-0.6328197279945016,-0.7736661462113261,-0.11533652991056442,0.533341595903039,0.842317373957485,-0.3347265347838402,-0.04808354703709483,-0.20133841503411531,-0.9626724636182189,0.37103206338360906,0.9920002673752606,0.21498378552496433,-0.9710630876943469,-0.3925367332994938,-0.2674842611886561,0.13836901495233178,-0.11705547291785479,-0.18378133000805974,0.8372339769266546,-0.14180939830839634,-0.1704279282130301,0.328077451325953,0.583332534879446,-0.10199743043631315,-0.4572623437270522,0.07596703013405204,-0.5821211342699826,-0.17118518194183707,0.6138406018726528,0.06261124229058623,0.7329015089198947,-0.19468430755659938,0.5424805339425802,-0.7802768349647522,-0.7544532576575875,-0.6415731785818934,-0.4226094507612288,0.05842257896438241,-0.6469176290556788,-0.714728182181716,0.0956066376529634,0.1870538406074047,0.6367924311198294,-0.7870842525735497,0.5872459881938994,-0.23253175988793373,-0.4508383390493691,-0.05993917491286993,0.12482696771621704,-0.737384922336787,-0.5764671792276204,-0.5442490573041141,0.2690877909772098,0.3350217789411545,-0.2787959612905979,0.2917447742074728,0.7241001399233937,0.1544961156323552,-0.7640624851919711,-0.019881653133779764,-0.7624116172082722,0.21295988885685802,-0.42145619774237275,0.47297333739697933,-0.6519920621067286,-0.9697759198024869,0.6226680702529848,0.5708664795383811,-0.9475677022710443,0.7918596179224551,0.17647717148065567,-0.7176387859508395,0.26633115485310555,0.765697403345257,0.19433382619172335,0.5995510704815388,0.13566059386357665,-0.8721670773811638,0.9236780339851975,-0.43664001673460007,-0.2728356411680579,0.7576962695457041,0.48315103352069855,0.2524801488034427,-0.42588846245780587,0.154355444945395,-0.5597712495364249,-0.324252727907151,-0.5760404546745121,-0.14047130895778537,0.4631338478066027,0.34743389254435897,0.789014704991132,0.767130923923105,0.15206254925578833,0.34559936448931694,0.8238863879814744,-0.29248517705127597,0.7073125392198563,0.9677727459929883,0.17360881622880697,-0.6952087380923331,-0.7118924204260111,0.6851198114454746,0.7816732632927597,-0.04358809441328049,0.5783647666685283,0.18498611636459827,0.8446738547645509,-0.25536762084811926,0.7451991564594209,0.04385963501408696,-0.1786777339875698,0.42994722723960876,-0.47017400013282895,0.10751389991492033,0.07585271215066314,-0.42882108967751265,-0.7189724766649306,-0.19043363258242607,0.44299382995814085,0.2986660096794367,-0.15902258781716228,-0.4243781240656972,0.19358376832678914,-0.5034475065767765,-0.9308766205795109,0.7384249856695533,-0.40171771915629506,-0.20207973895594478,0.6491102981381118,0.6644252594560385,0.9881448782980442,-0.12242263834923506,-0.719701636582613,0.4524200949817896,-0.044442822225391865,0.06886982079595327,-0.5007353420369327,0.17101445980370045,-0.35314926598221064,-0.42188205337151885,0.8198032090440392,0.7672155993059278,-0.48989077005535364,0.39937869645655155,-0.020398573949933052,0.21435113437473774,-0.540640149731189,0.39553032955154777,0.462347277905792,-0.3316381722688675,-0.5297528663650155,0.0970480814576149,0.7081182771362364,0.9139064908958972,0.4911304246634245,0.21269341837614775,-0.4130594404414296,-0.6861326727084816,0.9281364101916552,-0.7379915765486658,0.5269105196930468,0.09647094085812569,-0.42984297312796116,0.16359083773568273,0.17079731076955795,-0.673194230068475,0.47706380067393184,0.8634684807620943,0.9887394085526466,-0.03193030459806323,0.06750092655420303,-0.9450053088366985,-0.8538716742768884,0.12756130378693342,-0.3055010293610394,-0.44987235544249415,-0.25323054613545537,-0.9342899485491216,-0.1656872550956905,-0.6921798577532172,-0.49409745493903756,-0.03068835800513625,-0.41906512482091784,-0.8603711891919374,0.5112711801193655,0.04848134936764836,-0.6180594051256776,0.4980325694195926,0.37437973357737064,0.7560288775712252,0.9686707183718681,-0.47894188994541764,-0.3680569492280483,0.3840369051322341,-0.2025648825801909,-0.21181537443771958,0.6226306301541626,-0.019567634910345078,0.9579350096173584,0.5933422683738172,-0.2699978477321565,-0.1507625812664628,-0.2735243858769536,0.6661579608917236,-0.23516211891546845,-0.5949951447546482,-0.9229467934928834,0.862363328691572,-0.23515802342444658,-0.741792319342494,0.9504095707088709,0.7767445952631533,0.2259062947705388,0.983637266792357,-0.4429866964928806,-0.30859084287658334,-0.5400317222811282,-0.40779296727851033,0.941422768868506,-0.05007073050364852,0.0439883666113019,0.0847790609113872,-0.3553654523566365,0.5439973282627761,0.016319420654326677,0.2812780635431409,-0.08983155386522412,0.9195568417198956,0.9091368508525193,0.9976182072423398,0.106223592069,-0.9163264031521976,0.49438857147470117,-0.7937667025253177,-0.10873193852603436,0.43835341604426503,-0.12352375639602542,-0.5606351895257831,-0.1459084888920188,0.1428403672762215,0.08989322977140546,-0.4835399561561644,-0.2512013614177704,-0.25957100838422775,-0.1576446807011962,0.6590382088907063,-0.8062223815359175,0.4712954256683588,0.47430238174274564,-0.2737141936086118,-0.5350870387628675,0.9958946327678859,0.002501769457012415,0.49923249054700136,0.47832263680174947,0.32888488145545125,-0.5463703591376543,-0.46241353964433074,0.5866925679147243,0.9133423957973719,-0.20428912853822112,-0.6242966433055699,-0.26087117148563266,0.681632102932781,-0.6905011138878763,-0.9713184046559036,-0.7558355517685413,0.9544203924015164,0.020846273750066757,-0.1702076531946659,0.27409532526507974,-0.4509517028927803,0.18270648270845413,0.44707540050148964,0.6880466742441058,-0.7972351531498134,0.3547865664586425,-0.25674022268503904,0.805033796466887,-0.6610925560817122,0.26099732611328363,0.11080952128395438,-0.20133782736957073,0.8945843614637852,0.5772314090281725,0.4870610539801419,0.49037423171103,0.6717644687741995,-0.3061073524877429,0.9606991945765913,-0.19428872922435403,0.5681205652654171,0.7424485553056002,0.7065056464634836,0.6105798380449414,-0.07556866435334086,-0.7950159232132137,0.26597835402935743,0.4830946275033057,-0.1683282107114792,-0.69171825889498,-0.8207485964521766,-0.10156882088631392,0.4102887762710452,0.6378343207761645,0.04592803539708257,0.9270197511650622,-0.3553065089508891,0.5314897410571575,0.026822965126484632,0.39884179597720504,0.8885355605743825,-0.802737622987479,-0.18117063771933317,0.42861721105873585,0.019869348965585232,-0.985823524184525,-0.513916383497417,0.40565634751692414,0.9328421363607049,0.045786111149936914,0.38843152578920126,-0.9727179543115199,0.5767351277172565,-0.16963398782536387,-0.9738225224427879,-0.35967764258384705,0.30955218663439155,0.9273985312320292,0.07860699808225036,0.6823894395492971,0.0508478325791657,0.8995406907051802,0.17570569925010204,0.09062343137338758,0.782056050375104,-0.26703618420287967,0.7388127166777849,-0.46562065556645393,-0.9504323001019657,-0.1814074874855578,0.5454427748918533,0.21632172726094723,-0.19959803158417344,0.048869474325329065,0.002640643622726202,0.10113240778446198,0.17132798535749316,-0.2229962763376534,0.37216565711423755,0.8073019473813474,-0.3775312006473541,-0.38615373242646456,-0.8787980685010552,-0.7078712643124163,-0.6807433711364865,0.86634377297014,-0.1170943328179419,0.35661831870675087,-0.2974847233854234,0.5627112067304552,-0.6422453196719289,-0.3677327875047922,-0.05361086688935757,-0.6989610572345555,0.5901668891310692,-0.7358128726482391,-0.2716005062684417,0.25288885878399014,-0.7160278670489788,-0.015190263278782368,-0.3157200259156525,-0.7340028476901352,-0.07584307948127389,-0.2414489877410233,0.6441484219394624,0.07819161470979452,-0.8436768893152475,0.8200000869110227,0.552131955511868,0.009438579436391592,0.31776036927476525,0.8285584831610322,-0.9698896557092667,0.9684751923196018,0.4942663456313312,-0.3511994695290923,0.211040033493191,-0.8447306286543608,0.6338227870874107,0.3809844790957868,-0.19118107995018363,0.16132613876834512,-0.8094620569609106,0.0635768361389637,0.6608043592423201,-0.4013133575208485,-0.5069570462219417,0.7207433562725782,0.511702608782798,-0.8324505286291242,-0.6762843462638557,-0.6616452420130372,0.8078131643123925,-0.6708985306322575,-0.47457929933443666,0.8826816119253635,-0.6251943046227098,0.8209172636270523,0.5016633938066661,-0.95340766152367,0.3790396759286523,0.45097697526216507,0.09445910342037678,-0.7943448154255748,0.8973117838613689,-0.5465419483371079,-0.565422032494098,0.4682939974591136,-0.7717913091182709,-0.8721285238862038,-0.07922308892011642,0.9584548571147025,0.3597671249881387,-0.8613887596875429,-0.7190408906899393,-0.4447936196811497,-0.34924500761553645,-0.3012049510143697,-0.11665593693032861,-0.203260300680995,0.5791794718243182,-0.9014127007685602,-0.18134013703092933,-0.46930972672998905,-0.6859849393367767,0.3400635435245931,-0.002060652244836092,-0.04346147831529379,0.6569267841987312,0.6764069492928684,0.8252135789953172,-0.5359628098085523,-0.649663720279932,0.8057066816836596,-0.5630149226635695,-0.46641441294923425,0.5828590602613986,0.7432426461018622,-0.3980907676741481,0.6752031832002103,-0.1517700720578432,0.25204406306147575,-0.7671265029348433,0.5744234356097877,-0.723343510646373,0.020839893259108067,-0.8132518301717937,-0.37971155205741525,-0.7238909271545708,0.14375657308846712,-0.41642722254619,0.8722202102653682,0.627448913641274,0.5667235772125423,0.05385142890736461,-0.22540713008493185,-0.5530227962881327,0.10625087283551693,0.7364900838583708,0.17859660414978862,0.058978970628231764,-0.057895011734217405,-0.4995904532261193,-0.6146172354929149,0.7649203781038523,-0.8875846099108458,-0.8822307433001697,0.656214646063745,-0.2700226386077702,-0.8512563719414175,-0.3345704460516572,-0.21011022245511413,-0.47592372680082917,0.9080293788574636,-0.26376964524388313,-0.03402560018002987,-0.10722417291253805,-0.5875238352455199,0.403021224308759,0.8472713422961533,0.4437037850730121,0.8522471515461802,0.21243082312867045,0.5073228850960732,-0.5552514083683491,-0.7269263612106442,-0.06672154180705547,-0.8765803584828973,0.8776776432059705,0.7850831397809088,0.8704953878186643,-0.8600583956576884,-0.9216810995712876,0.7836523349396884,0.5794036663137376,-0.7392417984083295,-0.353352015838027,0.6466437196359038,-0.09042171016335487,-0.6584230316802859,-0.29988987697288394,-0.3565639406442642,-0.6005762279964983,0.8741889083757997,-0.9230348910205066,0.8711574343033135,0.049951376393437386,-0.31884609907865524,0.7081357599236071,-0.1374698798172176,-0.5784853831864893,-0.4395940243266523,-0.1966175651177764,-0.1541679692454636,0.4046692280098796,-0.2996769747696817,0.43927933601662517,0.9047776404768229,-0.7338605029508471,0.7030064612627029,0.2813904331997037,0.8427778906188905,0.9680403065867722,0.988262128084898,-0.17224534694105387,-0.30173281906172633,-0.12093647755682468,0.9800710752606392,0.8073040917515755,0.7275974224321544,0.8152913986705244,0.24494940880686045,0.8125531077384949,-0.5403493922203779,0.021529624238610268,-0.6447620368562639,0.22550340462476015,0.3398692295886576,0.9722909568808973,-0.3032609182409942,0.47144728247076273,-0.6683860355988145,0.9243121789768338,-0.5927656861022115,-0.8123420216143131,-0.7806789297610521,-0.30228390032425523,0.31025007041171193,0.7722319765016437,0.09081174526363611,0.28710315097123384,-0.5029948642477393,0.7577072926796973,-0.9162795483134687,0.5415076720528305,0.5621673837304115,-0.9594007548876107,0.024718915577977896,-0.3940030597150326,0.7473088717088103,-0.28726581996306777,0.7478478858247399,0.47967831138521433,0.6424613217823207,-0.6829270492307842,0.2046364052221179,0.20191297680139542,-0.15148697001859546,-0.530975965783,0.6066063358448446,-0.684479555580765,-0.15728733222931623,0.4771992703899741,0.8564896970055997,0.8472182312980294,0.27199058001860976,0.5299339178018272,-0.08724553696811199,-0.15947885252535343,0.6072315243072808,0.9561520195566118,-0.4167785048484802,-0.4808180914260447,-0.839249414857477,-0.29210693994536996,-0.08630672097206116,-0.435208719689399,0.5187371959909797,-0.8243145989254117,-0.5379351787269115,0.84280521934852,0.9983419827185571,-0.3843883275985718,0.13556446693837643,-0.9817889095284045,0.9769353647716343,-0.12250875402241945,-0.673719332087785,-0.6007810225710273,-0.6288827578537166,-0.27870207699015737,-0.802292981185019,-0.07096892362460494,-0.7804931285791099,-0.1374266934581101,0.8559456830844283,-0.36885900842025876,-0.8453126084059477,0.34836333710700274,0.35881005600094795,0.6024839030578732,-0.9788839286193252,-0.0888889841735363,-0.10989756975322962,-0.1444287383928895,0.4477929309941828,-0.2909223404712975,0.7130675185471773,-0.20942933717742562,-0.773100474383682,-0.22087580058723688,-0.8940437259152532,0.38036361522972584,0.8572456310503185,0.46751219127327204,-0.1487099500373006,-0.8895452730357647,0.8808337487280369,-0.06664545694366097,0.5396895748563111,0.48523492692038417,0.04816011665388942,0.09041984146460891,-0.42147377831861377,0.974489510525018,0.9821217125281692,-0.9780414775013924,-0.018773647490888834,0.5865127905271947,0.8039773171767592,-0.17140375450253487,0.8708424880169332,0.7095309947617352,0.5465549090877175,0.6291539329104125,0.6061571347527206,-0.8282500994391739,-0.47188363783061504,-0.9711963450536132,-0.03625167207792401,-0.532336053904146,-0.4021258382126689,-0.5878726514056325,0.2464692611247301,0.8768291594460607,0.9459963594563305,-0.15326568018645048,-0.6768417726270854,-0.3897028253413737,0.49646356236189604,-0.8459026967175305,-0.7776545295491815,0.5184631221927702,0.6657860521227121,0.9843515292741358,-0.31737531535327435,0.29233605274930596,-0.2384695871733129,-0.8928296878002584,-0.6585353319533169,0.39379152841866016,-0.43938462994992733,-0.18355271592736244,-0.5832167197950184,-0.9385227439925075,0.8084113639779389,-0.49762743804603815,-0.8652402143925428,0.7973150620236993,-0.1779291951097548,0.7559459451586008,0.6838214960880578,-0.5997274653054774,-0.5506952996365726,0.15269190585240722,-0.3259222232736647,-0.3152706306427717,-0.5338557558134198,-0.2296322425827384,-0.375638413708657,-0.17699178121984005,0.9108737772330642,-0.7119070771150291,0.7813657787628472,0.4960488439537585,0.6378765841946006,-0.27488426957279444,0.12143954122439027,0.6958137121982872,-0.8163469610735774,-0.3830407867208123,-0.529300204012543,-0.8844412467442453,-0.6995525169186294,0.1610787706449628,-0.7133905319496989,0.8502640230581164,0.7035014093853533,-0.7422576826065779,-0.1623453376814723,0.9353477684780955,-0.5399267417378724,-0.017655192874372005,0.40712117310613394,-0.4006943115964532,-0.7514494392089546,0.5074200080707669,-0.467792181763798,0.6751195713877678,0.3662465405650437,-0.10931596998125315,-0.4606853243894875,0.30231229960918427,-0.6247380976565182,-0.10314532835036516,0.404679071623832,-0.3132045650854707,0.4676838805899024,0.615984870120883,-0.7822019937448204,0.6350910081528127,0.8001460959203541,-0.10573327634483576,0.8027530387043953,-0.22846221132203937,-0.6114657986909151,-0.30201217671856284,0.5371713959611952,0.7875983011908829,0.15004438487812877,-0.8217531302943826,-0.3823322947137058,0.2931043151766062,0.7718825531192124,-0.01544182375073433,0.6842879941686988,-0.38886269740760326,0.47487846156582236,-0.9801698783412576,-0.7747182715684175,0.9424556395970285,-0.6231280169449747,0.5256784013472497,-0.551044967956841,-0.6026725345291197,0.5009684874676168,-0.8728845403529704,0.9837471419014037,-0.32700192416086793,-0.6708004921674728,0.9615019992925227,0.5738030239008367,-0.16927400836721063,0.06440222170203924,0.13520213216543198,0.855140978936106,0.4787614825181663,-0.8390872427262366,0.03222966194152832,-0.40428752498701215,0.8543202476575971,0.6192545387893915,-0.3787484052591026,-0.9457423957064748,0.21555004734545946,-0.4401976843364537,-0.11791232042014599,-0.6417370727285743,0.23089766083285213,0.7635677228681743,0.8546544229611754,-0.04010059405118227,-0.49051156360656023,0.3151527065783739,0.9295719750225544,-0.9463677345775068,0.4205059325322509,-0.5988843720406294,-0.3687321273609996,0.6527829156257212,-0.273864209651947,-0.5008697691373527,-0.3846078524366021,0.8718940950930119,-0.36670779762789607,0.7818627343513072,-0.3964630514383316,0.46877909637987614,0.4716041567735374,0.36143883690238,0.4726600702852011,-0.3561882432550192,-0.6050032055936754,0.13251528330147266,0.47784600546583533,-0.28229402052238584,-0.5499179172329605,0.14747453993186355,0.3484415621496737,-0.3864189605228603,0.10664279805496335,-0.5488342833705246,0.9031374636106193,0.1628191671334207,0.4933639047667384,0.8397610108368099,0.5406772056594491,0.16555207362398505,-0.2626228122971952,0.012586039490997791,-0.2222530753351748,-0.3917488260194659,-0.6586228995583951,0.3392896009609103,-0.9359022732824087,0.9521191637031734,-0.013775120954960585,-0.0022542220540344715,-0.1767228045500815,0.2767697526142001,-0.9523754892870784,-0.23065789183601737,-0.6510266596451402,0.8269701572135091,-0.08530184114351869,-0.5584363555535674,-0.8528043017722666,0.45053775515407324,0.5488786231726408,-0.512091426178813,0.046397944912314415,-0.4360317559912801,0.03964286483824253,0.2863283953629434,0.18188953027129173,0.5972902653738856,0.10892123403027654,-0.18492156406864524,-0.24737737886607647,-0.13534838939085603,0.37746545718982816,-0.06882728356868029,0.8801952707581222,0.9640668318606913,-0.5846091802231967,0.9382704114541411,-0.2524490491487086,-0.1866974476724863,0.12310924101620913,-0.821628937497735,0.838484272826463,0.590628813020885,0.09651737147942185,-0.04440573323518038,-0.362286489456892,0.5308781769126654,-0.13208478363230824,0.21748060127720237,-0.17257603351026773,-0.7796001583337784,-0.5309622078202665,0.8236495228484273,0.9183603511191905,0.4302775440737605,0.8817504779435694,-0.9626793428324163,0.712613089941442,-0.28043295769020915,-0.058391595259308815,0.0008575087413191795,0.017895244993269444,-0.2648103446699679,-0.7031655651517212,-0.7873879196122289,-0.4895097939297557,-0.500497748143971,-0.6386045855470002,0.8906262000091374,-0.449259418528527,-0.5392779018729925,-0.4950623814947903,0.8880949700251222,0.221517204772681,-0.3280481332913041,0.65994768217206,-0.1854902054183185,-0.3938348786905408,0.7123889611102641,-0.0024950685910880566,-0.4667229484766722,0.9685242539271712,-0.9416997348889709,0.48188414983451366,-0.26470395643264055,-0.22784321941435337,-0.12240721238777041,-0.4415659625083208,0.7094178982079029,0.3883526776917279,-0.897836402989924,-0.08150677289813757,-0.6829358888790011,0.1860847664065659,-0.8078415435738862,0.9755291873589158,-0.7135333279147744,-0.6877790284343064,0.41091473354026675,-0.1351252575404942,-0.850340558681637,-0.42842623544856906,0.3767363168299198,0.682000853586942,0.932270803488791,-0.7856436353176832,-0.30002290569245815,-0.040298099629580975,0.28612567484378815,-0.19564511626958847,0.7100585508160293,0.6800446920096874,-0.09879540745168924,0.7925741178914905,-0.19845761032775044,-0.7790067363530397,-0.04399941023439169,-0.48442460782825947,0.5077811703085899,-0.5296239797025919,-0.3525249380618334,0.8155214940197766,0.8336634472943842,-0.6925328010693192,-0.7900373195298016,0.4265012317337096,0.5650206622667611,-0.40004066238179803,0.32807176373898983,-0.9503551800735295,0.948916588909924,0.484141637571156,0.23988930555060506,0.7897147219628096,-0.8539604223333299,-0.08465484157204628,0.3875129730440676,-0.6730109304189682,0.23804524494335055,0.6922223148867488,0.7841618699021637,0.8287525051273406,0.00928607676178217,-0.4817189401946962,0.837726341560483,0.649781430605799,0.9051746786572039,0.7912659235298634,-0.420086866710335,0.9292478510178626,-0.8367264638654888,-0.5822597304359078,0.8625411167740822,-0.5399194378405809,0.5799655187875032,-0.49638879857957363,0.5417938632890582,-0.7077446361072361,-0.1949103237129748,0.49883890291675925,0.9060882143676281,0.909479646012187,0.5410277936607599,0.21687479130923748,-0.4835227197036147,0.6934125428088009,0.14703528117388487,-0.7964399703778327,0.7010569460690022,0.8327078460715711,-0.8382067456841469,-0.7293408536352217,0.3815733673982322,0.015515807550400496,-0.1862420435063541,0.5097417496144772,0.5439737131819129,0.7287129429168999,-0.6580549539066851,0.8228495270013809,-0.959791665431112,-0.9977541016414762,0.4119838820770383,-0.03191506862640381,0.6741203758865595,-0.06666620587930083,-0.8394810762256384,-0.23468287847936153,-0.07429191609844565,-0.4742329828441143,0.021666066721081734,0.3812305862084031,-0.010352475102990866,-0.9363575461320579,-0.3909858143888414,0.48885746859014034,-0.9880021438002586,0.7442339975386858,-0.05919415503740311,-0.7283993782475591,-0.20421369327232242,-0.4396848785690963,-0.8485736083239317,-0.3453203556127846,-0.5736327995546162,-0.5924696773290634,0.4732195748947561,-0.8954012421891093,-0.9802077878266573,0.18654036754742265,-0.6109935329295695,-0.1625850941054523,0.6984095820225775,0.6258612480014563,-0.2971547939814627,-0.559147777967155,0.9264481076970696,0.7775079365819693,0.3624401958659291,0.6587676592171192,-0.7743903663940728,0.1362879043444991,0.18824476515874267,-0.2947565717622638,0.5273842429742217,-0.22583307977765799,0.46651663864031434,-0.025742072146385908,-0.7621020139195025,-0.015901809558272362,-0.6018917988985777,0.4817758249118924,0.6654790872707963,-0.12624670891091228,-0.5567532870918512,-0.6461171279661357,-0.9670421024784446,0.7160439840517938,0.9337558043189347,0.6679909965023398,0.8181740744039416,0.5585710559971631,-0.8200122849084437,0.5810249666683376,0.011975158471614122,0.7284766086377203,-0.18123571248725057,0.12966675544157624,0.28848698316141963,0.9393564248457551,0.49566457187756896,-0.3200521348044276,-0.7841762807220221,0.14523770147934556,-0.4566747988574207,0.03069710126146674,0.4201594884507358,-0.8403758411295712,0.26081607863307,0.7641386408358812,0.027903246693313122,-0.8817491121590137,0.39114910224452615,0.11472131917253137,0.577511896379292,-0.7732726754620671,0.793373832013458,-0.15826628915965557,-0.7900982736609876,0.913578534964472,-0.10624052444472909,-0.41448980616405606,-0.7576770205050707,0.6161333252675831,0.10093152755871415,-0.34060481237247586,-0.09033263707533479,0.24656605394557118,-0.6006793822161853,0.00019124476239085197,-0.319814205635339,0.8342690174467862,-0.4093309286981821,-0.10849841078743339,0.4349162969738245,-0.6737829959020019,-0.9261255147866905,0.03207352664321661,-0.8502284348942339,0.6188686480745673,-0.582573417108506,0.8691426333971322,-0.8509239619597793,0.29886039765551686,0.7829122976399958,0.945343776140362,-0.4082856588065624,-0.29193120170384645,-0.6912719281390309,0.20821290789172053,-0.2757547269575298,-0.6815274092368782,-0.004869386088103056,0.8559872549958527,-0.8453183006495237,-0.8674210882745683,-0.5926733021624386,-0.8529660142958164,-0.31127666868269444,0.08025162387639284,0.8540416182950139,-0.2598756798543036,-0.4956562612205744,-0.7998210494406521,0.5937577812001109,-0.312761337030679,0.8752864939160645,-0.1802802560850978,-0.7652802341617644,0.7046720273792744,0.5816368060186505,-0.27558110281825066,-0.9525069878436625,-0.49266984034329653,0.8864034269936383,0.3678510799072683,-0.5885463613085449,-0.9936763383448124,0.1168242609128356,-0.22797774756327271,-0.30983951734378934,0.9216350461356342,-0.721694799605757,-0.30217001400887966,0.8866723538376391,-0.6513240509666502,0.4794206633232534,0.849099247250706,0.7626511170528829,-0.7819388434290886,-0.06039770878851414,-0.009942914824932814,0.25229516718536615,0.5427886638790369,0.6041530114598572,-0.5915749198757112,-0.24120529694482684,0.7972539947368205,0.3672650782391429,0.9135879310779274,-0.5032005719840527,-0.49331946298480034,0.43992962315678596,0.10234754532575607,0.7669271896593273,-0.2611504551023245,-0.1785039403475821,0.7724974192678928,0.5304883322678506,-0.7428989298641682,-0.6041984371840954,-0.5720599368214607,0.5314993662759662,0.4460791959427297,-0.9895523278973997,-0.04892696626484394,0.060163896065205336,0.0009833001531660557,0.6408551428467035,-0.2682319707237184,0.16098875552415848,-0.9558340911753476,0.05488056456670165,-0.5301766791380942,-0.20880000526085496,0.18878465984016657,0.38957769656553864,-0.5133170951157808,0.720331622287631,-0.35156334517523646,-0.05143371690064669,-0.4647467639297247,-0.9772340715862811,-0.5883345603942871,0.8738908311352134,0.3963062013499439,-0.9321454204618931,0.4572906941175461,-0.5573427095077932,-0.6768861557357013,-0.637919734697789,0.8617406841367483,-0.2604931746609509,-0.7553568985313177,0.5205668271519244,0.2976935817860067,0.16727492306381464,0.649326469283551,0.21745886653661728,-0.7009428828023374,0.04352522175759077,-0.4307874892838299,-0.6430480284616351,-0.9864545799791813,-0.3037487925030291,-0.4141161795705557,0.4805344631895423,-0.5674139065667987,-0.7062152638100088,-0.5967154009267688,0.5670229154638946,0.8342999750748277,0.443587729241699,0.4429835150949657,0.8278139028698206,-0.3821273883804679,0.12125877244397998,-0.8531887969002128,-0.8819023873656988,-0.15955827571451664,0.9588636718690395,-0.6246291776187718,0.45501830615103245,0.5464969626627862,-0.07482384517788887,-0.9688162114471197,-0.1896269633434713,0.9808183130808175,-0.83157819788903,0.39001391641795635,-0.28884895518422127,0.9846595106646419,0.2307418747805059,0.10619367333129048,-0.9452597214840353,0.3525913287885487,0.9179929275996983,0.754343374632299,-0.3880890547297895,-0.48497140826657414,-0.036002746783196926,0.25158176058903337,-0.6633390313945711,-0.6507904450409114,0.8503917856141925,-0.688330807723105,0.26273722713813186,0.9338048952631652,-0.7616184554062784,0.46264673955738544,0.34083424787968397,-0.9636114570312202,0.11097036581486464,-0.2600936954841018,0.7921811984851956,0.08161525474861264,-0.41700567165389657,0.9186284909956157,0.1746289860457182,-0.19524830859154463,-0.5120691708289087,0.7961534094065428,-0.5633862605318427,0.2757695596665144,0.034419269766658545,-0.9622857645153999,-0.7331961272284389,-0.6822802359238267,-0.8511561062186956,0.002908730413764715,-0.24446037039160728,-0.2972879190929234,0.3246106496080756,-0.5336954570375383,-0.06014365889132023,0.8254319657571614,-0.5506452852860093,0.8608161034062505,0.637271910905838,0.47646315349265933,0.9389795199967921,0.32036917097866535,0.5127212479710579,-0.4225604678504169,0.5146408081054688,-0.19901609886437654,-0.3527134177275002,-0.23300371738150716,0.20923847751691937,-0.19923221552744508,-0.9318622923456132,-0.8543335665017366,0.34714502235874534,0.391227510292083,0.22366701113060117,0.17139255674555898,-0.7688410319387913,-0.20777079788967967,0.9146237876266241,-0.6530986549332738,0.08402927685528994,-0.33053808426484466,-0.3296787813305855,-0.8076065755449235,0.674282715190202,-0.3338893325999379,-0.7028039372526109,-0.7865733015350997,-0.711577623616904,0.3915079105645418,0.15268261870369315,-0.16295205941423774,0.9442954608239233,0.4868797715753317,-0.33072134107351303,0.20039979927241802,-0.2520106858573854,-0.9938862738199532,-0.019223535899072886,0.9477860410697758,0.25793439941480756,0.12515222001820803,0.2984435181133449,-0.32977699767798185,0.06476675113663077,-0.1502941600047052,0.9718009727075696,0.625403156504035,-0.45861860271543264,0.54549261322245,-0.6593538969755173,0.7852171654812992,0.6756752002984285,-0.9293915135785937,0.23789148591458797,0.027563835959881544,0.268630285281688,-0.08811200270429254,0.33290467830374837,0.17191660404205322,0.39526868984103203,0.7038113106973469,0.5600693272426724,-0.8570432690903544,0.3657604278996587,-0.4360442883335054,-0.831763590220362,-0.2767669390887022,0.9845463456586003,-0.3346757902763784,-0.6828021607361734,0.7802493120543659,0.7701719612814486,0.3600853835232556,-0.5689347591251135,0.9756781510077417,-0.5604462483897805,-0.9613232086412609,0.04753647372126579,0.49092111410573125,0.12048708135262132,0.5915218661539257,-0.20545264892280102,-0.1838407078757882,-0.18600178183987737,-0.9637280432507396,-0.4693054277449846,0.9926710040308535,-0.9172761924564838,0.35636383201926947,0.2367818634957075,0.37876122538000345,-0.3090283162891865,0.5381105672568083,0.2062840131111443,-0.9988258075900376,0.3232764843851328,-0.14441331429407,-0.4962641131132841,-0.21995924320071936,-0.07872203551232815,-0.9349447758868337,0.003673885017633438,-0.8898840183392167,0.29473772924393415,-0.6230118749663234,-0.4210352338850498,0.7368105505593121,-0.18210078682750463,-0.3862174372188747,0.9630876840092242,0.31379934679716825,0.27461978839710355,-0.4111623661592603,0.9770684591494501,0.975474005099386,-0.9263771213591099,-0.05628100549802184,0.14275239128619432,-0.08077039662748575,0.3358562448993325,0.9273505606688559,0.6189421149902046,-0.4402660755440593,0.7743450468406081,0.5489137559197843,0.6470005353912711,-0.7046251716092229,-0.42767192190513015,-0.8171694190241396,-0.4498927188105881,0.02024498861283064,-0.10159530490636826,0.7189425630494952,-0.7907904386520386,-0.03739730827510357,-0.44922277610749006,-0.724751743953675,0.2191709792241454,0.2777122142724693,-0.27499528136104345,-0.16459067910909653,-0.9682334261015058,0.42127032252028584,0.5915419808588922,-0.6065533943474293,-0.45328601263463497,-0.6521521541289985,0.08156809769570827,-0.09045686945319176,0.4105111937969923,-0.3159030540846288,0.38647067826241255,-0.85540935350582,-0.579310913104564,-0.25465614441782236,-0.1440685037523508,0.9537075571715832,-0.5841080704703927,0.44076278898864985,0.6426455900073051,-0.4912288347259164,-0.46801675437018275,-0.5958306188695133,-0.9155897237360477,-0.35798869002610445,0.8640520162880421,0.9131606034934521,0.4683958082459867,0.9821237265132368,0.5145478965714574,-0.9048670399934053,-0.8446258464828134,-0.12175446189939976,0.06727400003001094,-0.7621025857515633,0.17895226646214724,-0.3067558095790446,0.8838310046121478,0.30167820816859603,0.9516680384986103,-0.0156678706407547,0.4671170958317816,0.919526532292366,0.48252122290432453,-0.8189106178469956,-0.9955289643257856,0.9163380083627999,0.3469176455400884,0.3101353966630995,0.7855237070471048,-0.6704246471635997,0.44067551055923104,-0.16408276138827205,0.4208303173072636,0.5494817406870425,0.828306688927114,-0.13148512644693255,-0.8069985620677471,0.4316160366870463,0.28979500057175756,0.5806575734168291,-0.9164167982526124,0.8141191056929529,0.7911483268253505,0.6380988089367747,0.9192229090258479,0.9799166284501553,0.15300732757896185,-0.43705342058092356,0.5265319803729653,0.7518166373483837,-0.9268587059341371,0.09192262310534716,0.5581747279502451,0.9691824396140873,0.5414881501346827,-0.6537506110034883,-0.5697970995679498,0.25393549632281065,0.5255798771977425,-0.7648124643601477,0.0966550880111754,0.7211059341207147,-0.7751403916627169,0.23516363743692636,-0.12551638251170516,-0.36202876875177026,-0.43484820472076535,-0.7068243795074522,-0.3446449930779636,-0.11039377190172672,0.4853174635209143,0.5678416774608195,0.4936092523857951,0.2941548745147884,0.7238773531280458,-0.7296011513099074,0.2155105946585536,-0.9001711215823889,0.7464546007104218,-0.8255865834653378,-0.9067988703027368,0.7170712067745626,0.0877832300029695,0.8410721318796277,-0.6171442260965705,0.06582586420699954,0.39989431481808424,0.6693352377042174,-0.7739321128465235,-0.28909043315798044,0.1278986264951527,-0.5257044956088066,-0.3711452204734087,-0.1709952475503087,0.9666157490573823,0.8332124473527074,-0.2751152631826699,-0.3432745891623199,-0.5937752951867878,-0.8206194979138672,-0.2216646084561944,0.708872945047915,-0.09664117265492678,-0.5065605049021542,0.17899462906643748,0.45115204714238644,-0.6823814976960421,0.9634441751986742,-0.773373581469059,-0.7086281930096447,0.43568994430825114,0.08300155214965343,-0.025809031445533037,0.2540506203658879,0.8850452140904963,-0.5569595755077899,-0.9295324673876166,0.11604305962100625,0.6771329310722649,0.08944523939862847,0.745593308005482,0.03497176198288798,0.968827092088759,0.6063770004548132,0.8489710250869393,0.612606224603951,-0.9788757115602493,-0.7001134199090302,0.80856440262869,-0.696654655970633,0.5442279726266861,-0.7368229860439897,0.6095709004439414,-0.7680676314048469,0.04541672859340906,0.6627270919270813,0.00798004912212491,-0.9332366725429893,0.8355090664699674,-0.27474862383678555,-0.8917334983125329,0.9423557198606431,-0.30531342700123787,0.08865653024986386,0.3171780500560999,0.3332049320451915,-0.8885714937932789,-0.679234528914094,-0.5373383560217917,0.9782541706226766,0.21204421250149608,-0.21327597089111805,-0.5817251391708851,-0.37337308283895254,0.016718901693820953,-0.007095871027559042,0.6638898178935051,0.971711715683341,0.19067378714680672,0.7209690408781171,-0.8649859549477696,-0.7435223148204386,0.35672304686158895,0.3292831042781472,-0.09008447267115116,0.651741751935333,0.4261341639794409,-0.18924726638942957,0.49055201187729836,0.12291777972131968,-0.9617029679939151,-0.439393799751997,0.18948410591110587,-0.3243496036157012,-0.8350551594048738,0.08485341863706708,-0.4536847868002951,-0.2526003932580352,-0.9571811417117715,0.4166317698545754,0.17701452039182186,0.4445229577831924,0.14154615998268127,0.3012205520644784,-0.5389610338024795,0.8249617363326252,-0.7571052657440305,-0.7231917437165976,0.11037926003336906,0.19337709993124008,0.16462222347036004,-0.45116442115977407,-0.8940044506452978,-0.19800395844504237,-0.7072310876101255,-0.6729607814922929,0.21253693662583828,0.6908680344931781,-0.2385707194916904,-0.07205539150163531,0.30522366473451257,0.47190332179889083,-0.960312326438725,0.028594978153705597,-0.8522042627446353,0.15323668671771884,0.43787614116445184,0.4152100896462798,0.23514514323323965,-0.7912944331765175,-0.7014622390270233,0.9038684079423547,0.2337701735086739,0.46720928978174925,-0.5510989190079272,-0.2142937327735126,0.1266161254607141,-0.041035179514437914,0.34880136558786035,-0.5012929080985487,0.9155900906771421,0.4997652773745358,-0.29751550080254674,-0.948077370878309,-0.42176053998991847,0.08771944092586637,-0.38529391353949904,0.23871466144919395,-0.10557366721332073,0.2571523617953062,0.26274368073791265,-0.14053916046395898,-0.2034063353203237,-0.2815907821059227,-0.36768878158181906,0.6009221510030329,-0.6874964167363942,0.9236324457451701,0.4017375120893121,0.8536784071475267,0.19483922608196735,0.54661118471995,0.16778977680951357,0.8415166581980884,0.4314487357623875,0.3228537649847567,-0.16647506644949317,0.8675819947384298,-0.9130124296061695,-0.9154959162697196,0.8561192294582725,-0.39302418287843466,-0.26025301590561867,-0.498567963950336,0.8172783371992409,0.9791345279663801,-0.4541889471001923,0.7626149021089077,0.16801851708441973,-0.2117263162508607,-0.9879408362321556,0.7910303827375174,-0.47173735313117504,-0.3168531386181712,0.9871345208957791,0.42516628932207823,0.3444701596163213,-0.44054827792569995,0.7567211701534688,0.5641414658166468,0.776068682782352,0.5725470795296133,-0.1185071892105043,-0.5159284961409867,0.16043165838345885,0.21603680402040482,0.8072349731810391,-0.9678179817274213,-0.52030213130638,0.37810416892170906,0.551094597671181,0.7114474745467305,-0.8603665288537741,0.49965530540794134,0.1002425360493362,-0.7859584456309676,-0.4834557883441448,-0.639924188144505,-0.005606715101748705,0.9612082643434405,-0.03506204951554537,0.36824563844129443,-0.40292453207075596,0.5181862055324018,0.24783740751445293,0.24121571285650134,0.9620841694995761,0.7097590267658234,0.3026061290875077,-0.4765340178273618,0.21018982492387295,0.29320903215557337,0.5677523980848491,-0.5824236925691366,0.5620054453611374,-0.4876330541446805,0.24017964722588658,-0.12850411515682936,-0.6327846474014223,0.27941892528906465,-0.9774165684357285,-0.6774094612337649,-0.39509365567937493,-0.18705573258921504,-0.7853478216566145,-0.5284527959302068,-0.2052174643613398,0.23085285164415836,-0.20997268008068204,0.7216415940783918,-0.15428555477410555,0.9730349639430642,-0.631651469040662,-0.1468978300690651,0.8733124770224094,-0.2720839115791023,-0.4440364632755518,0.28843559976667166,-0.8677507685497403,-0.6465815710835159,0.23832952743396163,0.562191198579967,-0.7822007341310382,-0.17296008672565222,0.8191396933980286,0.6380960554815829,0.0980878290720284,-0.6193273505195975,0.3793680793605745,0.8594295987859368,0.46629306487739086,0.2206841567531228,-0.9754603165201843,-0.013095794711261988,0.9813584517687559,0.3782016704790294,-0.6503348224796355,0.4590791701339185,-0.2065131333656609,0.6293754749931395,0.29848118172958493,0.33993063354864717,0.3487090007402003,0.7074943478219211,-0.029740698169916868,0.2959133326075971,0.05944049544632435,-0.954800724517554,-0.9110314901918173,-0.6820466313511133,0.569542292971164,-0.7940795156173408,0.49448637291789055,-0.9793923660181463,-0.44055863888934255,0.9322801949456334,-0.9074328471906483,0.8890402773395181,-0.08856646437197924,-0.40761060174554586,-0.6300974846817553,-0.8093496994115412,-0.7333552581258118,0.7509213420562446,-0.9266228363849223,0.3484344780445099,0.91777717275545,0.32227331306785345,-0.5597932231612504,-0.9766789535060525,0.9629265912808478,-0.4296792019158602,0.5930425371043384,0.6280785826966166,0.5300113493576646,-0.13043922372162342,-0.3228978384286165,0.23790907999500632,-0.7033623941242695,0.7044474426656961,-0.4752202327363193,0.36370267579331994,0.4502285625785589,0.4796969695016742,-0.15440529165789485,0.4015468116849661,0.5483668493106961,0.9064426645636559,-0.4318073778413236,-0.09388232324272394,0.9553665444254875,-0.8086247346363962,-0.21757848840206861,0.6583755975589156,0.6523754019290209,0.9670544536784291,-0.5810185670852661,0.22077892301604152,-0.7640850245952606,-0.26060782093554735,0.485116767231375,0.2830957588739693,-0.6157556772232056,0.8236494567245245,-0.8231222247704864,0.10099604725837708,-0.28462608298286796,0.39533793833106756,-0.25973402289673686,0.4573367820121348,-0.5395775604993105,-0.18140019616112113,-0.6243041125126183,0.9371700617484748,0.38001569733023643,-0.3791090380400419,-0.9471086245030165,-0.16892301617190242,-0.08610301092267036,-0.005136786960065365,0.28008044650778174,-0.44057856034487486,0.31778836203739047,-0.12873209780082107,-0.5090759000740945,0.35978742176666856,-0.8628915618173778,0.15381446853280067,-0.6181886335834861,0.20656658615916967,0.8967011068016291,0.9864783175289631,-0.10219503566622734,-0.632063205819577,0.876917106565088,-0.28424003859981894,0.5295095657929778,-0.815315562300384,0.8369283331558108,-0.4879033253528178,-0.4563377178274095,0.5177526846528053,0.012158010620623827,0.3400625418871641,0.2277755057439208,0.5844603390432894,0.5016287080943584,0.9222185709513724,-0.06704453192651272,-0.5967143569141626,0.615958362352103,-0.33087265584617853,0.0007848148234188557,0.9928907440043986,0.34551990684121847,-0.8973105335608125,-0.8121787151321769,-0.7383972583338618,0.26175066782161593,0.04857016494497657,-0.5580057562328875,-0.8831056109629571,0.060125313233584166,-0.2946772682480514,0.6588651984930038,-0.7634265455417335,-0.4873027498833835,-0.6477123945951462,0.4926508725620806,0.9906055014580488,0.6683689253404737,0.9811516064219177,0.8235517549328506,-0.021785986609756947,-0.29060486052185297,-0.14387073507532477,0.0787194431759417,-0.330239066388458,0.7534379679709673,0.8831140799447894,0.8667461043223739,-0.18285288009792566,0.3419271670281887,0.8344833552837372,-0.2983203367330134,0.2579999924637377,-0.8614690257236362,-0.3858029772527516,-0.000925910659134388,-0.1244555558077991,0.4295958741568029,-0.6832189816050231,-0.6770475800149143,-0.152933185454458,-0.8317363546229899,0.14987040776759386,0.8351629627868533,-0.028469965793192387,-0.03707303153350949,-0.15181604493409395,0.3581789555028081,-0.6336111500859261,0.7157518984749913,0.9862362644635141,-0.5962067097425461,-0.42350122053176165,-0.0132176848128438,-0.6539709381759167,0.00963842449709773,0.3582018483430147,0.2730788327753544,0.5941964238882065,0.3538111401721835,-0.6896553277038038,0.40379258897155523,0.5279285036958754,0.3652133378200233,0.2817264446057379,0.11450648726895452,-0.7445126618258655,-0.8566918657161295,-0.539145405869931,-0.23898039245977998,0.16352184629067779,0.9560136976651847,-0.20682096248492599,0.5555351204238832,-0.507086128462106,0.701784445438534,-0.2595033859834075,0.47203880129382014,-0.19232406560331583,0.7634336305782199,0.5418334822170436,-0.20376169262453914,-0.18975771078839898,0.9686559475958347,-0.6320044146850705,0.9754840242676437,-0.874156768899411,0.37382915429770947,-0.24513776041567326,-0.9596562180668116,-0.2304891273379326,-0.9579629190266132,-0.07122261123731732,-0.3843704182654619,0.9458465832285583,0.8959371130913496,-0.9645896549336612,-0.4340721578337252,0.214323909021914,0.7166301044635475,-0.731364160310477,-0.45475664315745234,-0.3440617728047073,-0.07651823060587049,0.9429034264758229,0.09467652393504977,0.4925861908122897,-0.1619767490774393,0.9749863990582526,-0.7278441460803151,-0.5275188307277858,-0.9340978753753006,0.11440323386341333,-0.8597699836827815,0.20326472027227283,0.4326380044221878,0.7682489193975925,0.43317008716985583,0.11432069912552834,0.8748431941494346,0.9938513319939375,0.5160455955192447,0.16761060012504458,0.19775200076401234,0.6639666282571852,-0.3334964266978204,0.7590271811932325,0.2212542607448995,-0.42398967454209924,0.3953223214484751,0.27905956050381064,0.734472805634141,0.7655914225615561,0.9461741894483566,-0.5980539936572313,-0.48641642834991217,0.8472094782628119,0.13714635046198964,-0.8532431614585221,0.43360170628875494,-0.011441673152148724,0.4592408612370491,-0.8236210378818214,-0.1449655289761722,-0.5769812418147922,-0.5053069330751896,-0.3564797844737768,-0.7891167285852134,0.8067318899556994,-0.7625796552747488,0.32183437421917915,0.6063108989037573,-0.9504374344833195,0.020183037500828505,0.03191324649378657,0.20535361720249057,0.17066586902365088,-0.2988006817176938,-0.6872877669520676,-0.3923551761545241,-0.20928394189104438,0.8595596184022725,0.7872273568063974,-0.8211386459879577,0.26094269938766956,-0.7849213229492307,0.7851133178919554,-0.6833807430230081,0.21976840076968074,0.36869960092008114,-0.3376314979977906,0.9337174147367477,0.4364663236774504,0.3222864796407521,-0.5269250134006143,0.6333212461322546,-0.7191689317114651,0.016001295763999224,-0.518970939796418,-0.38960548490285873,0.504121863283217,-0.6677034143358469,0.5536605608649552,0.3813669951632619,0.2685732734389603,-0.3483140328899026,0.33216175669804215,0.9940869365818799,-0.7855170429684222,-0.05658742459490895,0.8318067947402596,0.5408358224667609,0.21305272402241826,-0.40103532699868083,0.6373546808026731,-0.5189899215474725,0.4143229075707495,-0.5205018473789096,-0.39356927014887333,-0.04357034480199218,0.18852775963023305,-0.18030042434111238,0.22822633339092135,0.44538180250674486,-0.17570470552891493,-0.22610434936359525,0.8636215562000871,0.23721973365172744,0.8060465971939266,-0.7859350899234414,0.36012124503031373,0.09823491331189871,0.7403318756259978,0.21087745251134038,-0.8299503880552948,-0.7390884403139353,-0.6949847275391221,-0.4981468031182885,0.283469146117568,-0.01264197425916791,0.9417315372265875,-0.6924201915971935,0.8674510908313096,-0.3345370441675186,0.5643183938227594,0.8162691984325647,0.3575368165038526,-0.4337977822870016,-0.8737424490973353,0.6818610019981861,-0.3668103311210871,0.582389525603503,-0.24719907576218247,-0.7799271233379841,0.575980028603226,0.23063112329691648,0.4008276145905256,-0.6652213945053518,-0.3951104455627501,-0.6221731198020279,-0.4122324511408806,0.5587754105217755,0.9348459150642157,-0.15211853897199035,-0.6516633331775665,-0.10948750330135226,-0.6301565091125667,-0.9234008216299117,0.2434526151046157,0.8295891801826656,-0.6422265875153244,-0.13889375841245055,0.4240953829139471,-0.03183464938774705,0.618366508744657,0.7729854979552329,0.3597800536081195,0.19191040424630046,-0.010268509853631258,-0.7236397368833423,0.28968939185142517,0.3358407439664006,-0.22167455218732357,-0.6411359552294016,-0.9142042608000338,-0.6452767788432539,0.3901184475980699,-0.8509549223817885,0.7311897813342512,0.9296611049212515,0.1332489214837551,0.441866222769022,0.3165307235904038,0.34594148118048906,0.7050750465132296,-0.7045042053796351,-0.2579949405044317,-0.4565284112468362,0.41252333112061024,0.4666565586812794,-0.4421548591926694,0.35856022546067834,0.32758879382163286,0.4607776920311153,-0.9388421224430203,0.8133581061847508,0.1827093935571611,0.7889500483870506,0.9942216388881207,0.38767431722953916,0.42511099949479103,-0.39452278427779675,0.29814452305436134,-0.5979218832217157,-0.5158342286013067,-0.3888341854326427,-0.1148085230961442,0.391507541295141,-0.7294704872183502,-0.21005150629207492,-0.4197984281927347,0.3906152327544987,-0.809215955901891,0.3085849778726697,0.8670160500332713,0.6943890419788659,-0.9770269161090255,-0.31291872123256326,-0.31676654517650604,0.008573472034186125,-0.8618927737697959,0.5029594344086945,0.45434192568063736,-0.9077944685705006,0.9382664365693927,0.8166102669201791,0.43721446860581636,-0.7822969029657543,-0.3324067695066333,-0.5292436107993126,0.2405216796323657,-0.13172009261325002,0.45317332074046135,0.3730801693163812,0.5347614893689752,-0.8829790516756475,-0.43970230408012867,0.06987823033705354,0.017671046312898397,0.643707097042352,-0.42756247287616134,-0.9023372000083327,-0.6990507035516202,-0.356261630076915,-0.9698831201530993,-0.097511385101825,0.635299083776772,-0.06582664279267192,-0.8741625002585351,-0.3089455356821418,0.9925898965448141,-0.8355942508205771,0.5099438978359103,-0.279724205378443,0.5607596370391548,-0.3909411313943565,-0.768278097268194,0.9839237085543573,-0.004426676779985428,-0.45522811030969024,-0.9421031619422138,-0.139569244813174,-0.9999101562425494,0.9685656456276774,0.06993077555671334,-0.5933942259289324,-0.11809262167662382,0.9198806406930089,0.9352690964005888,-0.10722854407504201,-0.04003520309925079,-0.6564187700860202,-0.008090970572084188,0.1788979647681117,-0.9327170834876597,0.5823822114616632,-0.6711114193312824,-0.19557836651802063,0.5416798265650868,-0.33710336964577436,-0.49751382041722536,0.3417010260745883,-0.5118678491562605,0.29475913802161813,0.05414182832464576,0.23146968567743897,-0.5556833297014236,-0.3031054250895977,-0.4768207217566669,-0.044760622549802065,0.5855135968886316,0.9735882068052888,0.03674495732411742,-0.7570918016135693,-0.038648493587970734,0.3200223152525723,0.306252823676914,-0.43755492754280567,0.4284117566421628,-0.1448710528202355,-0.17422209400683641,-0.7348916530609131,0.25030078645795584,-0.04979293281212449,0.43807546561583877,-0.5344277024269104,0.5365598825737834,-0.42025138763710856,-0.6816756804473698,-0.40628576977178454,0.9777895398437977,-0.48296499205753207,0.16056902008131146,-0.3281939113512635,0.10841553891077638,-0.0827752286568284,-0.8915737206116319,0.43839125661179423,0.3468108410015702,0.024574821814894676,-0.9335881271399558,0.12171749025583267,-0.8020546673797071,-0.9644890963099897,-0.39539289893582463,-0.9815300153568387,0.5081217433325946,-0.9492736193351448,-0.1625711489468813,-0.3639077744446695,-0.13319450849667192,0.009834852069616318,-0.8813141542486846,-0.9405804867856205,0.17994204722344875,-0.7038030051626265,0.0184826017357409,-0.19210901018232107,0.1606887523084879,0.09613396553322673,0.8932711165398359,0.3751056403852999,-0.33073185849934816,-0.39642433822155,0.1610872088931501,-0.32415929390117526,-0.06769311241805553,0.37645108671858907,-0.21519608283415437,0.10155388806015253,0.5079729920253158,-0.6967965899966657,-0.1510939602740109,-0.011154958046972752,0.767586731351912,0.4261898430995643,-0.5260881446301937,0.26977358805015683,-0.9457479515112936,-0.9650776647031307,-0.4432255835272372,0.9072059225291014,0.807306126691401,0.9358609258197248,0.960117164067924,-0.7165436614304781,-0.9661830435507,-0.5897386493161321,-0.9190982775762677,-0.32218441972509027,0.20048870611935854,0.3117984691634774,-0.3619420612230897,0.5192957753315568,0.06179764261469245,-0.3370919432491064,0.22087876871228218,-0.856515044812113,-0.4299362041056156,0.364969645626843,0.4484212030656636,-0.6653415230102837,0.34470978332683444,-0.6130448444746435,-0.38047607615590096,-0.6634411695413291,-0.761875307187438,0.45475172996520996,-0.6983710918575525,0.7748271264135838,0.39847231935709715,0.31946776108816266,0.6851447611115873,0.12990299053490162,0.17871213052421808,-0.09524845378473401,0.027286425232887268,0.8139212396927178,-0.4940475574694574,-0.1319507285952568,0.28130362229421735,-0.8784574009478092,-0.45151731045916677,0.7509579872712493,0.9142516236752272,0.8033857685513794,-0.618050723336637,0.19962602946907282,0.2631831066682935,0.13939789310097694,-0.8913488890975714,-0.2845758805051446,-0.4084852454252541,-0.4805026729591191,-0.2866979781538248,-0.011871755123138428,-0.09223819198086858,0.4746306869201362,0.2923275800421834,-0.7413660283200443,0.8635488389991224,-0.5022923718206584,-0.48668244713917375,0.227535386569798,0.32313253497704864,-0.2930898549966514,-0.2862189719453454,0.8465917957946658,0.19492107117548585,-0.4701203084550798,-0.549900178797543,-0.34483939316123724,0.8573845559731126,-0.42990019964054227,0.6116944407112896,-0.5389306209981441,-0.22759129432961345,-0.8641434414312243,0.6228121654130518,0.29090853221714497,0.780317663680762,-0.9415144603699446,-0.750441066455096,0.5462893070653081,0.856106931809336,-0.1570886797271669,0.7491870820522308,0.6917785769328475,-0.7135066338814795,-0.36713989824056625,0.758966420777142,0.41563692362979054,0.8256406672298908,-0.009189420379698277,0.5089691961184144,-0.5305255330167711,0.8826435226947069,-0.6690816329792142,-0.43542634369805455,0.9450822751969099,0.373793832026422,-0.0036565661430358887,0.5976228304207325,-0.8176111471839249,-0.7253064382821321,0.4813285623677075,-0.42725452641025186,-0.9049070198088884,0.4153811880387366,0.9314439948648214,-0.048376682214438915,0.7453515231609344,0.8589938706718385,-0.6829713331535459,-0.051066771149635315,-0.9108315538614988,0.4639777271077037,0.5715189827606082,0.9650768088176847,-0.008852626662701368,-0.6338715679012239,0.06675880309194326,-0.38150391075760126,-0.8070679055526853,-0.6200324366800487,-0.7621390507556498,0.011851719580590725,-0.97214414505288,0.7963587548583746,0.3648798493668437,0.8886043303646147,0.5235743257217109,0.6771399863064289,0.9938581357710063,0.8036150969564915,0.7621375760063529,-0.3672035038471222,0.24166975170373917,0.648490637075156,-0.22825436666607857,-0.20973536372184753,-0.4016338596120477,-0.30266294488683343,0.5314096813090146,-0.3201566971838474,-0.4974051029421389,-0.705938006285578,-0.463299707043916,-0.2504420750774443,-0.2667753454297781,-0.9433987066149712,0.1421956056728959,0.12181234220042825,-0.6096871248446405,0.6530074300244451,-0.6836242349818349,-0.5564032946713269,-0.14608710864558816,-0.2641174281015992,-0.7392553146928549,0.8083035084418952,0.3594874548725784,-0.04729904513806105,0.851821260061115,0.38062248518690467,-0.041723502334207296,0.9459628737531602,0.5729169123806059,-0.7765550841577351,-0.3790841344743967,0.46587188774719834,-0.4237063373439014,0.015425516292452812,-0.011935244780033827,-0.7218436412513256,-0.4512916775420308,-0.2784814825281501,0.7332735466770828,0.45352927036583424,0.2941562091000378,-0.9966312143951654,0.46641530515626073,0.9157501207664609,-0.9396501719020307,0.06334390444681048,0.7211358821950853,0.051540251821279526,0.28496388252824545,-0.8412353284657001,-0.45506069902330637,0.34895674092695117,-0.8407079679891467,0.7121622734703124,0.7584951110184193,0.334804474376142,0.7309081614948809,0.5660857991315424,0.33334126975387335,0.1777700511738658,0.3275209139101207,-0.11429879814386368,0.15441535180434585,-0.4145700754597783,-0.22417050460353494,0.4006758597679436,0.34990181727334857,0.8561538611538708,0.8111443887464702,-0.28614355996251106,0.33786486787721515,0.4197661052457988,0.5988103225827217,-0.43238840717822313,0.44765078090131283,-0.4686096194200218,-0.05828745802864432,-0.3524058391340077,-0.06709362706169486,0.8376547493971884,0.9747337754815817,0.2981974403373897,-0.10597193753346801,-0.5015027313493192,-0.41916302032768726,-0.1065693125128746,-0.6932728192768991,0.7631512675434351,0.1365204337053001,-0.9322500713169575,-0.17582325078547,-0.7130805654451251,-0.9587920475751162,-0.3432564027607441,0.9491850775666535,-0.29247320303693414,-0.2213973836041987,0.968950011767447,-0.3567650099284947,-0.6334017757326365,0.2121889851987362,-0.5835732030682266,-0.1362157235853374,-0.5659588170237839,-0.23647928843274713,-0.9020966971293092,0.3906299243681133,-0.6617847881279886,-0.9101859792135656,0.20321038831025362,-0.7410593782551587,-0.6628932342864573,-0.6624468974769115,0.4884811439551413,-0.9758021589368582,0.8411735678091645,0.9501142320223153,0.2702783769927919,0.7297935294918716,-0.8247754597105086,0.2356270751915872,0.8350077057257295,0.29056208208203316,-0.11900596274062991,0.5073009440675378,0.7993560638278723,-0.32918220153078437,-0.20794006111100316,0.09260004432871938,0.7187244314700365,-0.6724653611890972,0.3399321180768311,-0.33600579109042883,-0.7365488335490227,0.35273587377741933,0.865920941811055,0.47573936311528087,-0.3876934344880283,-0.08590171858668327,-0.4587932778522372,-0.5811551799997687,0.6147431530989707,0.7775264396332204,0.9459980917163193,-0.41635882668197155,0.9701120438985527,0.5858598188497126,-0.6143704405985773,-0.09555080207064748,-0.14362191641703248,-0.19084632536396384,-0.7492195623926818,-0.04422664036974311,0.932886803522706,-0.37381204403936863,0.30532853305339813,0.2525814017280936,-0.6089622117578983,0.8089592172764242,-0.6472261678427458,0.35711124865338206,0.2615362536162138,0.7338960589841008,0.9325549649074674,-0.40374050522223115,-0.650161670986563,0.6000399091280997,0.2759123332798481,0.12563691288232803,0.5461099082604051,-0.5041274600662291,0.48371951282024384,-0.09475472662597895,-0.9624062147922814,-0.5182691221125424,-0.8377142827957869,0.737785731907934,-0.37257728818804026,-0.4099889472126961,-0.3761999853886664,0.22124619409441948,0.5717605487443507,-0.02059337915852666,-0.8109668651595712,0.5303985946811736,-0.5844228314235806,0.3005309789441526,-0.8799956771545112,0.14588155085220933,-0.04229268431663513,0.6312546073459089,0.8723807334899902,0.6429433198645711,0.6649503232911229,0.4051771704107523,0.29218239709734917,0.902849632780999,0.1522361757233739,0.439573529176414,-0.5117626287974417,0.14821771485731006,-0.23230593418702483,-0.24218373093754053,-0.22792760841548443,0.4682639092206955,0.6144157629460096,0.7655860474333167,-0.05656916694715619,0.22661584662273526,-0.768570065498352,0.4709017123095691,-0.06432221736758947,0.7724335794337094,-0.9521180568262935,-0.8305787444114685,0.2842572540976107,-0.16863876348361373,0.9231217787601054,-0.5988069749437273,-0.5896355267614126,0.17491384968161583,0.1486006947234273,-0.426658371463418,-0.1730071483179927,0.7848853152245283,-0.3858713167719543,0.573036867659539,-0.917474948335439,0.5600344645790756,0.8371645268052816,-0.9483568924479187,-0.5046477573923767,0.5665915040299296,0.6833911463618279,-0.29367059422656894,-0.5391448680311441,-0.1205645208247006,-0.8001302946358919,0.8534721643663943,-0.2618168224580586,0.006890990771353245,-0.4430299401283264,-0.6586278104223311,0.5685231797397137,-0.5748660792596638,-0.7599591701291502,0.8401147178374231,0.20224242564290762,0.46231425693258643,0.9506556824781001,0.07060991507023573,0.06589412922039628,0.4806686984375119,0.739871303550899,0.7896563149988651,0.1450657183304429,-0.7687734104692936,-0.5503329071216285,-0.8680615262128413,-0.13702252134680748,0.7097222218289971,0.17709176568314433,-0.35111635318025947,-0.3340108636766672,-0.10180668346583843,-0.08194023231044412,0.1756614912301302,-0.7592947287485003,-0.5251318113878369,-0.6079223472625017,0.4447342213243246,-0.08631142321974039,0.30402070563286543,0.040702035650610924,-0.7654916550964117,-0.19749507680535316,-0.6658607362769544,-0.053676667623221874,0.29497191216796637,0.4132575090043247,0.018940366804599762,0.5384597899392247,-0.16761485813185573,0.018330853432416916,-0.006464582402259111,0.2691937331110239,-0.8953591007739305,0.5448734699748456,-0.6260653021745384,0.6812359085306525,-0.24341339198872447,0.7609665947966278,0.7820111974142492,0.07608569879084826,0.011255358345806599,0.29302489245310426,0.7696877084672451,-0.041382936760783195,-0.5617993003688753,0.6369760115630925,0.3263100702315569,-0.4039806453511119,-0.058701775036752224,0.0778320929966867,0.658077628351748,-0.6689693937078118,0.7964312848635018,0.14446660364046693,0.42428112821653485,-0.8099118280224502,0.5376469478942454,0.2938695540651679,-0.2097916933707893,0.0048173097893595695,-0.14009912963956594,-0.9678779980167747,-0.8502130028791726,0.7161436770111322,0.9535914389416575,-0.11625095037743449,-0.15401201276108623,0.8541573705151677,-0.32918409211561084,0.20554407825693488,0.9437569240108132,0.7408653758466244,-0.6331982375122607,-0.03509762370958924,0.8415318364277482,0.6985095893032849,-0.6784926783293486,-0.580560963600874,-0.9446888659149408,0.899033029563725,-0.8569972682744265,0.9427682990208268,0.6087031047791243,0.1106372382491827,-0.1325491340830922,-0.6536303656175733,0.05921464879065752,0.9427482057362795,0.4827429046854377,0.14947109436616302,0.998796446248889,0.9778939667157829,0.9766425066627562,0.3526031207293272,0.9502379270270467,-0.8706252984702587,-0.49440471827983856,0.9735146355815232,-0.5445260717533529,-0.29905743012204766,0.6628064806573093,-0.45222373865544796,0.2700803386978805,-0.16029794421046972,-0.32898257905617356,-0.08170288521796465,0.09817879507318139,-0.8008104194886982,-0.7662797444500029,0.33368116384372115,-0.27835456747561693,-0.6636223685927689,0.5218458934687078,-0.3264587172307074,0.15950532304123044,-0.2558344043791294,-0.7771373852156103,0.9641634938307106,-0.3863302865065634,0.3156203334219754,-0.6030585463158786,0.9353790888562799,0.6324267224408686,0.40932364016771317,0.6429525637067854,-0.7938244743272662,0.4130086777731776,-0.3562539918348193,0.38006104808300734,0.41503919940441847,-0.4301387472078204,0.5992038096301258,-0.7965472540818155,-0.07507210224866867,-0.9659312446601689,-0.8686096244491637,0.5486196647398174,0.47656796546652913,-0.7552505782805383,-0.2485113046132028,-0.24885169137269258,0.18480544351041317,0.1547899185679853,-0.5293834651820362,-0.7827241192571819,0.6035680454224348,0.4672756907530129,-0.9908166583627462,-0.6951662753708661,0.1270424798130989,-0.3017386421561241,-0.39458762714639306,0.18601754866540432,0.4504964961670339,-0.12322340160608292,-0.3278284091502428,-0.5803400967270136,-0.16610716469585896,-0.4549192884005606,-0.07853977987542748,0.8893840401433408,0.6954410658217967,0.07610540883615613,-0.04564164066687226,0.6010598326101899,-0.1658501992933452,-0.18749349657446146,-0.08649440249428153,0.29235555697232485,-0.750799108762294,-0.6484934822656214,-0.22610744554549456,-0.5804326310753822,-0.47796680219471455,0.282833821605891,0.35077426629140973,0.3742424980737269,0.3533633407205343,0.7265062634833157,0.7573693138547242,0.9475012603215873,0.6236223606392741,0.6573596787638962,-0.2033190056681633,0.23384200409054756,-0.16251902608200908,0.7900445703417063,0.5841929032467306,-0.637495684903115,-0.7546588182449341,-0.1795093179680407,0.361679142806679,-0.5793884019367397,-0.37417508382350206,-0.5702423164620996,-0.1275226273573935,0.16864374419674277,0.22359534539282322,0.4906678842380643,0.9684905838221312,0.9477496687322855,0.38239260436967015,0.17764537874609232,-0.2919986913911998,-0.15685683116316795,-0.20242652483284473,-0.11094251368194818,-0.791766282171011,-0.9414743301458657,0.30477369017899036,-0.624783378560096,0.6086843642406166,0.4723030310124159,0.200869033113122,-0.556629388127476,0.08604075899347663,0.33274277253076434,0.3131717429496348,-0.8437272012233734,-0.26418494805693626,0.49088624212890863,0.25077625550329685,-0.18964473437517881,0.410879953764379,0.94885214837268,-0.6009203139692545,0.8014443940483034,-0.7796129337511957,0.34564809082075953,0.600885221734643,-0.004135908558964729,0.39569661719724536,-0.3737347312271595,-0.19397975923493505,-0.569186866749078,0.7686887760646641,-0.6502556204795837,0.2720059370622039,-0.6300029358826578,-0.7521414789371192,0.3390838843770325,0.42983082169666886,0.1151678143069148,0.10942048346623778,0.41985214687883854,-0.13533729454502463,-0.4082079119980335,-0.6879525585100055,0.957954456564039,-0.34862740570679307,0.43982408475130796,0.9426782797090709,0.6645369417965412,-0.6472177496179938,0.006206469144672155,-0.8964251386933029,0.32858654484152794,-0.5337994699366391,0.9395923293195665,-0.3436193708330393,-0.7917837901040912,0.30204101698473096,-0.7760657048784196,0.7957093110308051,-0.4923217627219856,0.21747615840286016,-0.6239264560863376,-0.805487961973995,-0.2543903784826398,-0.37488189432770014,-0.2579928794875741,-0.20672280807048082,0.6895882845856249,-0.4033696101978421,-0.5847544218413532,-0.9206110686063766,0.18444044375792146,-0.942223310470581,0.8306917450390756,-0.2013289276510477,-0.2738189301453531,0.6664952975697815,0.42576337279751897,-0.9387379195541143,0.17503876378759742,-0.09188064886257052,0.22755123302340508,-0.3984231445938349,-0.8713060044683516,0.6092234621755779,0.4713056217879057,0.9094141600653529,0.23894409742206335,0.8570283749140799,-0.7802034430205822,0.18163582822307944,-0.34363406198099256,-0.4400307107716799,-0.9128261473961174,0.7207384607754648,0.3092248416505754,-0.3339425981976092,0.16823695553466678,-0.15528204524889588,0.9172100075520575,0.6258461191318929,0.5480678752064705,0.8417699015699327,0.12228951090946794,-0.9418066651560366,-0.5153025635518134,0.4548822590149939,-0.11790095549076796,0.4980492703616619,-0.8231514366343617,-0.45907969307154417,0.32184625091031194,0.8515534144826233,0.31897799018770456,0.7859443766064942,-0.09726496785879135,-0.3898341804742813,0.8616943741217256,-0.7191247311420739,0.7296038423664868,-0.9254097701050341,0.15453642420470715,0.5575490687042475,0.6257643853314221,0.3710803440771997,-0.028983665630221367,-0.9980509080924094,-0.5765745933167636,0.9879787070676684,-0.4536866480484605,-0.8266701921820641,-0.03612214745953679,0.47036054776981473,-0.8269433150999248,-0.47964915819466114,-0.5245808679610491,0.4416927248239517,0.4010428562760353,0.772105272859335,0.2376765012741089,0.24441817216575146,-0.32346618501469493,0.4441328323446214,-0.8490654970519245,0.6476242206990719,-0.08734174631536007,-0.13103003753349185,-0.4884629952721298,0.9815118331462145,-0.07845016848295927,0.09409470204263926,-0.811902548186481,0.06872740434482694,-0.2117870762012899,0.5335516086779535,0.9789816713891923,-0.9515166715718806,0.9912826344370842,0.6098375041037798,-0.541323964484036,-0.6172313429415226,0.41623875172808766,0.12628536578267813,0.19407591270282865,-0.5189104801975191,0.028389659710228443,0.07400437677279115,-0.003483776468783617,-0.7749291323125362,0.030829937662929296,0.2832583710551262,-0.6341145904734731,-0.9868295630440116,0.1132335476577282,-0.3886962574906647,-0.973905352409929,-0.3106318498030305,-0.49963706033304334,0.1823719795793295,-0.7287913677282631,-0.7913463325239718,0.25572276022285223,0.1929459567181766,0.9229387966915965,-0.1850450001657009,-0.9136519064195454,-0.20787463476881385,-0.7072741072624922,-0.3819777611643076,0.05374918878078461,0.5365035617724061,-0.6916540008969605,0.8370004636235535,-0.271576713770628,-0.38288445491343737,-0.7524768128059804,0.8070170045830309,-0.9297377159819007,0.8380072452127934,0.4540860871784389,-0.6937096337787807,-0.1568583333864808,0.7451233267784119,-0.3431087271310389,0.4146312312223017,-0.6103105139918625,-0.8679824294522405,0.12674456648528576,-0.0353561919182539,0.30829899990931153,-0.45827194210141897,-0.5910778376273811,-0.8833764335140586,0.3682491942308843,-0.4646976822987199,-0.4066904350183904,0.4961195504292846,0.3215206991881132,0.7985990280285478,-0.42821740778163075,-0.5838985471054912,-0.910185172688216,-0.4426176673732698,0.8156827720813453,0.8738805586472154,-0.006775651592761278,-0.32555751129984856,0.7385089402087033,0.23813562048599124,-0.4006073996424675,0.6272016856819391,0.025281259790062904,-0.3248268188908696,0.0589015232399106,0.8279280895367265,-0.45536160841584206,0.17636736016720533,0.6354874363169074,-0.13187622465193272,-0.6802389635704458,0.16622301703318954,-0.3666675998829305,-0.6160448840819299,-0.25388843985274434,0.526539174374193,0.4540563649497926,0.8607354522682726,0.13954766979441047,0.009926045779138803,-0.8062522276304662,0.052786494605243206,-0.4613579912111163,-0.2636356623843312,-0.8669535079970956,-0.8965592999011278,0.19782037427648902,0.31285513332113624,-0.4031248725950718,-0.18828273424878716,-0.34993454487994313,0.942674866411835,-0.42754354048520327,-0.11471603065729141,0.8866481124423444,-0.8204718409106135,-0.8115103510208428,-0.8701701578684151,0.8585257446393371,-0.9297119304537773,0.134658498223871,0.8284524558112025,0.5296283257193863,-0.37071994971483946,-0.39821328362450004,-0.6167188403196633,-0.3808870860375464,0.3617438795045018,0.3125838413834572,0.5160094038583338,0.32697896286845207,-0.20960914762690663,0.07495800266042352,0.7519301720894873,0.7076321425847709,0.3520556502044201,0.15272639971226454,-0.6041227490641177,-0.8463560198433697,0.4336387594230473,0.7782132932916284,0.9497566702775657,-0.7796806772239506,-0.20085117127746344,-0.6116886860691011,0.4250547676347196,0.673840266186744,-0.8972442704252899,0.7422950332984328,0.9452828541398048,-0.40676879696547985,-0.2626049551181495,-0.25085001764819026,0.4032573662698269,-0.5465923412702978,0.7718089851550758,-0.7562600774690509,-0.5229927464388311,-0.37928662495687604,0.8767827446572483,0.49613614892587066,0.09712145291268826,0.9576927432790399,-0.3769784872420132,0.32698735129088163,-0.4226765148341656,-0.08218992594629526,0.2645261734724045,0.8034949428401887,0.5733532751910388,0.2583448844961822,-0.43426969926804304,-0.6126405131071806,0.3916879794560373,-0.5530754812061787,0.23257384542375803,0.06917789997532964,0.34007979230955243,-0.8931971462443471,-0.331880456302315,0.628615191206336,0.7957195467315614,0.6865035663358867,0.007926230318844318,0.40357047226279974,0.3418970312923193,0.13396271085366607,-0.640836589038372,0.22236646572127938,-0.796873303130269,0.489793979562819,-0.22469244292005897,-0.3714986927807331,-0.5245215380564332,0.1942738676443696,-0.759795586578548,-0.19730297941714525,0.6057667164131999,0.4668879508972168,0.08415728667750955,-0.0889519089832902,-0.2084745028987527,-0.24255033768713474,-0.5980728659778833,-0.7621544380672276,-0.38682152051478624,-0.2677253233268857,0.46817793929949403,0.2126953788101673,0.7448416342958808,0.29545537289232016,-0.08129755966365337,0.717486368957907,0.820362601429224,0.7270295238122344,0.05336250411346555,-0.684417222160846,-0.6877524391748011,0.18246255302801728,-0.6808327441103756,-0.2237122068181634,-0.29927642783150077,-0.8471990874968469,0.14159278105944395,-0.9873196925036609,0.7720475262030959,0.7444187682121992,0.27516967011615634,-0.4595089005306363,-0.5096822138875723,-0.060367987491190434,-0.635239084251225,0.4031737600453198,-0.4375424194149673,-0.19020506460219622,0.36175617249682546,0.7221305626444519,0.5459981700405478,0.6392420385964215,0.01834470871835947,-0.7401115475222468,0.46051218919456005,0.6981132980436087,0.11383792804554105,-0.3028166899457574,0.29737686179578304,0.1652578948996961,0.4478138699196279,-0.26820107363164425,-0.14109933516010642,-0.8605321100912988,-0.7020532344467938,-0.5679936651140451,0.3558232234790921,0.5660047857090831,0.7454682989045978,0.5991431288421154,-0.8963786740787327,-0.9446594710461795,0.606799082364887,-0.6208235914818943,0.39646451780572534,-0.6881305677816272,-0.809468905441463,-0.9849582477472723,-0.16459913086146116,-0.28583991015329957,0.5848387558944523,0.8397901612333953,0.1872193063609302,-0.5192613508552313,-0.12541576800867915,0.33310719579458237,0.15450520534068346,-0.2711667795665562,0.9175137430429459,0.25328911701217294,-0.5478184493258595,-0.9016915992833674,0.17382955690845847,-0.6926263300701976,0.013879847712814808,0.2059261705726385,0.6794630102813244,-0.2755991453304887,0.2779844617471099,0.49081688094884157,0.40835859533399343,0.12043421296402812,0.06836299458518624,-0.3473296295851469,-0.7792161456309259,-0.6294841966591775,0.985547786578536,-0.15434899367392063,0.8116672476753592,-0.8774338494986296,-0.2730159116908908,-0.18187930108979344,0.09463927755132318,0.923606307245791,-0.38203125447034836,0.3634214890189469,-0.8408909779973328,-0.2845528698526323,-0.6786923222243786,0.18000851292163134,0.3363674432039261,-0.23424129141494632,-0.7235388089902699,0.8989665200933814,-0.9883665638044477,-0.01166231045499444,0.7098877937532961,-0.034187654964625835,-0.1517935232259333,-0.07763217762112617,-0.3907213653437793,0.8142435057088733,-0.10344854881986976,-0.4598291334696114,0.4463302316144109,-0.7169493255205452,-0.8277967618778348,0.5195299433544278,0.7648287662304938,0.08615436824038625,0.9009113418869674,0.835600164718926,0.5360135808587074,-0.915279267821461,0.5537860146723688,-0.09735794737935066,0.7614644458517432,-0.8116737985983491,-0.8738331771455705,0.05625964421778917,-0.9934741980396211,0.23832230642437935,0.37720789667218924,-0.5349614773876965,0.45146664744243026,-0.0487550632096827,0.6023607784882188,0.8724606204777956,-0.1533351493999362,-0.12786104064434767,-0.16975311236456037,-0.45578472036868334,-0.7383438153192401,0.6706491261720657,0.4813703531399369,0.9700848180800676,-0.668795014731586,0.2834640652872622,0.272642828989774,-0.8692550975829363,0.3085768208838999,-0.6207514340057969,-0.5653930781409144,-0.5766182574443519,-0.6170371877960861,-0.3685602373443544,0.29086779709905386,-0.7293933290056884,-0.7055546203628182,-0.7309739263728261,0.7403332241810858,0.5564610003493726,0.03673334186896682,-0.7106076045893133,-0.024041972123086452,0.1769880042411387,0.5577112003229558,0.17546757915988564,-0.1533850897103548,0.43415868328884244,-0.08187130186706781,-0.8498896290548146,0.6623925808817148,0.30783209623768926,0.026112507097423077,-0.28437410434708,0.8841981939040124,0.7305804179050028,0.597456612624228,-0.9559560315683484,0.6974413697607815,0.42738699074834585,0.49164286023005843,0.3469253210350871,0.8341486779972911,0.7517921379767358,-0.5467372313141823,-0.9647651999257505,0.1018646378070116,0.6372505533508956,-0.9962075902149081,-0.012566498946398497,-0.8651087787002325,-0.4088762723840773,-0.6008419054560363,0.8384550050832331,-0.25976555421948433,-0.7358100032433867,-0.09947800822556019,-0.6274308701977134,0.8073645578697324,0.983808065764606,-0.8535319957882166,0.5455537075176835,-0.0520011717453599,0.13000946771353483,0.40075821755453944,0.6316362572833896,-0.5936275809071958,0.5226219715550542,0.3889907682314515,-0.731288411654532,0.35252277413383126,-0.22818649606779218,-0.012951675336807966,0.1268974025733769,0.6779706664383411,0.08411349449306726,-0.7767555951140821,0.5187385263852775,0.6683661681599915,-0.8494304940104485,0.8763277223333716,0.656917052809149,0.41476256400346756,0.3040978405624628,0.5693175857886672,0.6499769538640976,-0.7615513657219708,-0.6277752057649195,-0.26404920732602477,-0.38580262567847967,-0.5221678824163973,0.8158410377800465,0.6287405281327665,-0.8507877695374191,0.20775941433385015,0.7827491275966167,0.5801492049358785,0.12605414260178804,-0.15656395442783833,-0.9382457272149622,-0.23867587419226766,0.3845010260120034,0.12095410283654928,-0.7898866292089224,0.9727201135829091,-0.8460622983984649,0.9116297764703631,0.877197390422225,-0.8095462010242045,-0.606889920309186,-0.35784904146566987,0.6071026800200343,0.9603399247862399,-0.8273182515986264,-0.28828394273296,-0.633954020217061,-0.36172166327014565,0.18457535514608026,0.6694184513762593,-0.8161296690814197,0.5429542013444006,0.5116623896174133,0.34480342734605074,0.9843239691108465,-0.9799097036011517,0.5514840176329017,-0.39028135780245066,0.8036429136991501,-0.29887116700410843,0.44594422122463584,0.1631019883789122,0.9872833066619933,0.45184606593102217,0.411419615149498,-0.40626653423532844,0.1679405472241342,0.19559542275965214,0.7067253049463034,0.6926797134801745,-0.9872523904778063,0.1580632529221475,0.14710566820576787,0.7785915597341955,-0.871101213619113,0.6594430659897625,-0.49033061042428017,-0.799170327372849,0.181909644510597,0.5002837660722435,0.860000834800303,0.2731509245932102,-0.8212817911989987,0.0011005373671650887,-0.07236862415447831,0.503632721491158,-0.5078919073566794,-0.25522308563813567,-0.695605730637908,-0.22436329256743193,0.08648262592032552,0.7006557649001479,0.5905779614113271,0.3104842179454863,0.7328328830190003,0.47337161004543304,0.30770296417176723,-0.5497421692125499,0.12976483814418316,-0.2368003656156361,-0.5502706044353545,-0.7849966073408723,0.3155153375118971,-0.039486394729465246,0.09860980371013284,0.13432460092008114,0.7641499605961144,0.2684455830603838,-0.04426409164443612,-0.3410629755817354,0.8255538707599044,0.9877589554525912,-0.32316830940544605,-0.7774047809652984,-0.6249173083342612,-0.015539539512246847,0.3872282179072499,0.5332453800365329,0.722166761290282,-0.904357064049691,0.6553115011192858,-0.1376602635718882,-0.771362635307014,0.6961675961501896,0.0986837400123477,0.6353663937188685,0.37312238570302725,0.6346008321270347,0.38292460702359676,0.7508653914555907,0.3238821057602763,0.926559564191848,0.04013625346124172,0.7866313541308045,-0.7196124489419162,0.23868738347664475,-0.6882076119072735,0.4941237401217222,0.9718846622854471,0.08252156712114811,-0.2432063091546297,-0.603038308210671,-0.660685334354639,0.08165088016539812,0.4397303625009954,0.2382703935727477,0.14950094046071172,-0.9296430195681751,-0.23353169206529856,-0.2225641356781125,0.8677102164365351,0.32263876451179385,-0.19968746462836862,0.8820756962522864,-0.9846253818832338,0.7201591213233769,0.8974174503237009,0.06728656124323606,0.48170912079513073,-0.853167837485671,-0.5908429962582886,0.49379348009824753,-0.6607501795515418,0.4225407890044153,-0.9205206045880914,0.6440052487887442,-0.6855713333934546,0.24117189925163984,-0.9457365837879479,0.9512796802446246,0.15639778785407543,0.7022937573492527,-0.18852062011137605,-0.03326472081243992,0.21708462107926607,-0.30844125617295504,0.6641340903006494,-0.698768365662545,-0.1479627969674766,-0.1395884044468403,0.6684538368135691,-0.4030670593492687,-0.30599454743787646,-0.40040504885837436,-0.7548367888666689,-0.21658874629065394,0.3796474146656692,0.9865506715141237,-0.6371969031170011,0.21619992330670357,0.09109378000721335,-0.822207564022392,-0.19323980761691928,-0.1553376642987132,0.5407047253102064,-0.25083409575745463,0.8827008167281747,-0.24904069723561406,-0.1561461598612368,0.6045866995118558,-0.9104258907027543,0.9743667063303292,0.5535239269956946,-0.11145418183878064,0.7080110688693821,0.3929023565724492,-0.5971592743881047,0.0009516202844679356,-0.6149519924074411,-0.1296859635040164,-0.9040570077486336,-0.26316991448402405,0.6014341595582664,-0.5379064967855811,-0.491905327886343,0.3934236573986709,0.020077962893992662,-0.9412838751450181,0.8954536928795278,-0.9121619896031916,-0.7389884209260345,-0.9512563925236464,0.19473258592188358,0.9602583502419293,-0.37851753691211343,-0.8822231208905578,0.22405736288055778,0.1482119564898312,0.984178785700351,0.07823783345520496,-0.38101355778053403,0.8172524515539408,0.26428881054744124,-0.3561601280234754,0.8379263333044946,0.8925349111668766,-0.867577345110476,-0.21781799430027604,0.01888567814603448,0.9827766539528966,0.488368078134954,-0.08806177554652095,0.7608973481692374,-0.9019792918115854,0.3648328217677772,-0.1071592727676034,0.7941132979467511,0.444717550650239,0.8318090061657131,0.7518145516514778,-0.7864864994771779,-0.3354478613473475,-0.7811047425493598,-0.986941606272012,-0.6415422107093036,-0.49802669882774353,-0.784651611931622,-0.6219038120470941,0.2335816379636526,-0.26492919167503715,-0.9150997889228165,0.8161959471181035,0.7765391757711768,-0.07620208570733666,0.3390089860185981,0.5143856415525079,-0.15357246110215783,0.23603492509573698,-0.3806971558369696,0.2766951937228441,-0.25374241452664137,-0.2921738740988076,-0.03300626156851649,-0.4558819932863116,0.2655152315273881,0.4640047335997224,0.19032764993607998,-0.5113470032811165,0.3910771682858467,0.4363849894143641,0.04266153136268258,0.34679169440642,0.5162252406589687,0.6910052793100476,0.27674010349437594,0.5290591111406684,-0.6427004709839821,0.3920863028615713,-0.6692632217891514,-0.0927442591637373,0.5187849099747837,0.11008181748911738,-0.8526176321320236,0.6685350430198014,-0.8688150816597044,-0.45454059168696404,0.6890765693970025,-0.15122645208612084,-0.5148095642216504,-0.04135292815044522,0.470115867909044,-0.6935564558953047,-0.18754129018634558,0.18846754683181643,0.7909961240366101,0.7901597558520734,0.5819914196617901,0.16073209699243307,-0.9661174011416733,-0.19855613354593515,0.23446894390508533,0.5926282033324242,-0.0984954982995987,-0.8576416638679802,0.4571608421392739,-0.5964387827552855,0.9576385715045035,-0.2478588903322816,-0.30511133186519146,0.7629328109323978,0.9767333106137812,0.3781173462048173,-0.9811018067412078,0.2550307405181229,0.392810748424381,0.3876007725484669,-0.029676396399736404,0.8797680740244687,-0.8390895607881248,0.7265189788304269,-0.30355622759088874,0.7752253054641187,0.12063439143821597,0.5388990100473166,-0.5442588911391795,-0.9349184236489236,0.6578886453062296,0.2942217090167105,-0.19703545980155468,0.5250662709586322,-0.5645053116604686,0.028440766036510468,0.24393376894295216,0.32999001536518335,0.7222138619981706,0.9859494147822261,-0.9119386705569923,-0.7870244653895497,-0.18868979858234525,-0.47621521912515163,-0.8218733454123139,-0.7917314930818975,-0.6474665505811572,0.18388737691566348,-0.3963568019680679,-0.4731384636834264,-0.9103748574852943,0.14820366725325584,-0.07291388045996428,0.296672725584358,-0.6131134303286672,0.9138274723663926,-0.6640451522544026,0.015606225933879614,0.4664973528124392,-0.08902857732027769,0.83452710788697,-0.07701720856130123,0.37338170083239675,0.3045755550265312,-0.826530187856406,0.23393507674336433,-0.49847700260579586,0.6414066315628588,0.5186998122371733,-0.6052133627235889,-0.22149447770789266,-0.9944110792130232,-0.6023121043108404,0.21893933787941933,0.5081676631234586,-0.037718246690928936,-0.6827772785909474,0.2753411210142076,0.892210841178894,-0.8217527605593204,0.7076751939021051,-0.1099378177896142,0.18834634590893984,-0.630289716180414,-0.2026346935890615,0.5346246981061995,-0.9670169409364462,-0.31805929308757186,0.6331574600189924,0.8051906786859035,0.6051085130311549,-0.084560951218009,-0.13134346064180136,0.17337304446846247,0.845662304200232,0.710217259824276,-0.8341240775771439,-0.8054958158172667,-0.353111591655761,0.5446981685236096,-0.3243825677782297,0.3607303942553699,-0.2964145033620298,-0.9931118357926607,-0.8034350350499153,-0.2333653480745852,-0.7958078519441187,0.18883434915915132,0.3551239538937807,-0.2837651763111353,0.980361383408308,-0.7755978223867714,-0.02746091317385435,0.5652865837328136,-0.05746601428836584,-0.2048408780246973,-0.5920799453742802,-0.01516413502395153,-0.19285370782017708,-0.3191752238199115,0.32549452083185315,-0.26678506936877966,0.2093969313427806,-0.9384988867677748,-0.6924963328056037,0.16443206183612347,-0.14425655081868172,-0.5002198428846896,-0.2327710841782391,0.09941710392013192,0.5189032494090497,0.6990452646277845,-0.7038801671005785,0.9214491206221282,0.28708476899191737,0.9116398608312011,-0.36446428624913096,0.2169444216415286,0.6853503524325788,0.0875520994886756,-0.27409795206040144,-0.5478244139812887,0.6676928368397057,0.6980603625997901,-0.1162379658780992,0.13510258356109262,-0.7756111240014434,-0.9115687860175967,-0.6066180616617203,0.9887110204435885,0.4008649941533804,-0.19553446723148227,-0.5406020246446133,-0.5457382597960532,-0.6913066492415965,0.30743819009512663,-0.010654862970113754,-0.6848793816752732,-0.9486199063248932,-0.7581751686520875,-0.9274838850833476,-0.8444285211153328,-0.13778994139283895,-0.7410601899027824,-0.009968297090381384,0.49449706915766,-0.15638088202103972,0.042702356819063425,0.5163023630157113,0.5384270115755498,0.6691673547029495,0.3124552108347416,0.7791689978912473,0.0448692929930985,0.7460643597878516,-0.7136308453045785,-0.07309328159317374,0.961736349388957,-0.8749327166005969,-0.5957334665581584,-0.7326244032010436,-0.5887319105677307,-0.23071614047512412,0.006855783052742481,-0.3012577071785927,0.14538437081500888,-0.6755921710282564,0.6519499300047755,0.744854633230716,0.467122248839587,0.7417044546455145,0.6385322129353881,-0.38657371513545513,-0.2730242544785142,-0.22208208125084639,-0.5717215808108449,0.5456445226445794,0.8651974778622389,-0.4448974714614451,-0.2093975404277444,-0.2521469392813742,0.8779318369925022,-0.7689060852862895,-0.6624648692086339,0.4810586483217776,-0.3431752463802695,0.6222239620983601,0.9232137626968324,-0.7097037802450359,0.5199166871607304,-0.4500825321301818,-0.35436336835846305,-0.6693996996618807,-0.6348425871692598,0.1506221778690815,-0.888184720184654,-0.5753791769966483,-0.14458026876673102,0.5100313611328602,-0.9580009398050606,-0.3924557948485017,0.8639499116688967,-0.063685507979244,0.08241567201912403,0.45990231772884727,0.549336179625243,0.7920981799252331,0.15577016584575176,-0.9891399978660047,0.27491289423778653,-0.7316480781883001,-0.6197163467295468,-0.17413240810856223,0.4319132142700255,-0.5011053425259888,-0.49708817061036825,0.4027868593111634,0.24940639734268188,0.363135626539588,-0.9907566416077316,0.6536641721613705,0.2490331195294857,-0.32959527149796486,-0.07715116767212749,-0.5116377463564277,0.5754654742777348,-0.5717721777036786,-0.9259524056687951,-0.8183661070652306,-0.161859433632344,0.9521104223094881,0.9691861923784018,0.11772500071674585,-0.24965190840885043,-0.2862741150893271,0.0977595872245729,0.7832194888032973,-0.2882404262199998,-0.9027990065515041,-0.836595930159092,-0.4727691598236561,0.14059625333175063,0.10353026539087296,-0.7562117255292833,0.11745564267039299,-0.27309578098356724,-0.025581315625458956,-0.9075522101484239,0.7989961439743638,0.607516563963145,0.8405368784442544,0.8807841786183417,0.6118135168217123,-0.9347141841426492,0.708661777433008,-0.8457196061499417,-0.6396248540841043,0.44909082539379597,0.04188391426578164,0.9651624388061464,-0.46464823046699166,0.9743280448019505,-0.43156727543100715,0.5552850090898573,-0.960686749778688,0.8308271272107959,0.3442461220547557,0.5869801295921206,-0.7037309990264475,-0.4821229875087738,-0.7339128726162016,-0.25086839869618416,-0.09979551518335938,0.3952274047769606,0.0023101288825273514,-0.37550784507766366,-0.5198487555608153,0.031135940458625555,0.544229500927031,-0.42714351834729314,0.5026720324531198,0.028512914199382067,-0.3163591572083533,-0.32952093333005905,0.11475554760545492,-0.8889947654679418,0.4543877309188247,-0.7459212080575526,0.8977343929000199,-0.07030535442754626,0.22869517467916012,-0.7946889381855726,-0.6783210914582014,0.13785545714199543,0.4308278295211494,-0.4298835061490536,-0.6861050706356764,-0.9939614208415151,-0.6907065147534013,-0.1913414471782744,-0.0997717478312552,-0.9740692791529,0.9700481030158699,-0.2380794072523713,-0.8873147955164313,0.5845406451262534,0.6038146205246449,-0.43028047820553184,0.331482055131346,-0.15727739920839667,0.5664055473171175,0.3421459258534014,-0.5685909581370652,-0.053581816609948874,-0.1031628018245101,-0.43221658281981945,-0.8999150316230953,-0.10532327927649021,-0.4880772796459496,-0.48998349951580167,0.9437282313592732,0.2701676283031702,0.24379749782383442,-0.09642160823568702,-0.0640833075158298,-0.37246131896972656,-0.6905396874062717,-0.006043085362762213,0.14312636107206345,0.2326007685624063,0.5232869400642812,-0.6589117371477187,-0.6273361532948911,-0.27663131058216095,0.9689435418695211,0.7049805712886155,-0.707178405020386,-0.4618632378987968,-0.5852798032574356,-0.5100156501866877,-0.38604004262015224,0.4776530545204878,-0.306155608035624,-0.49713472509756684,-0.23439946910366416,0.5507149756886065,0.6829171390272677,0.12210472160950303,0.3583597978577018,-0.920031035784632,-0.05909186974167824,-0.08158651320263743,0.46154450811445713,0.5998303610831499,0.8566809259355068,-0.34414340229704976,-0.24434884218499064,0.6688419575802982,0.09525454510003328,-0.4393537025898695,-0.3639418389648199,-0.11947270017117262,-0.8434060267172754,0.5922843562439084,-0.022711301688104868,0.3857204467058182,-0.7497849618084729,-0.024277554359287024,-0.07928861351683736,-0.45351770520210266,-0.7062884815968573,-0.5611351015977561,0.21610538801178336,0.45759848272427917,0.9607966365292668,0.13215296668931842,0.26881350483745337,0.16557330265641212,0.19424509955570102,0.007227645721286535,0.33896495774388313,0.8319244151934981,0.36011275509372354,-0.4142293781042099,0.7966257352381945,-0.3003574814647436,0.41358578810468316,0.9875013488344848,0.31343478290364146,0.10209859209135175,0.8562110043130815,0.1217914829030633,0.038735523354262114,-0.08489292208105326,0.3378807413391769,-0.40347300143912435,0.16150076035410166,0.9591814815066755,-0.17753834277391434,-0.572841172106564,0.17539833532646298,0.8628472066484392,-0.14589121844619513,-0.9884198405779898,-0.03748308541253209,-0.8334265886805952,0.12102207448333502,-0.5809196992777288,0.5687476303428411,0.5940250856801867,0.2877507330849767,-0.7276570685207844,-0.7139635379426181,0.09670350141823292,0.2007490349933505,-0.9038085998035967,0.96161540877074,-0.05719976406544447,-0.29832497518509626,0.670282225124538,0.26917002722620964,0.462794185616076,0.23461648728698492,0.15389557927846909,0.6086684162728488,-0.017122526187449694,-0.7170824254862964,0.46634399658069015,0.9391183904372156,0.30760309798642993,0.7006673840805888,-0.7515706606209278,-0.0467617716640234,0.44914170168340206,0.8736427244730294,-0.4421461895108223,-0.655091192573309,-0.09410272585228086,0.2682682597078383,0.7773428643122315,-0.3135829484090209,0.07586850877851248,-0.2195706721395254,0.9505689046345651,-0.5678783426992595,0.39014679193496704,0.22381195984780788,0.2931043580174446,-0.7450894764624536,0.38695170916616917,0.6685510342940688,0.38001626543700695,0.6934976344928145,-0.5911142332479358,-0.9114564768970013,0.7473760424181819,0.48081751726567745,0.032200316432863474,0.20521444641053677,-0.9867057502269745,0.565747732296586,0.4509803638793528,0.06497428240254521,-0.3477383842691779,-0.4797722678631544,-0.013719462789595127,-0.11384820938110352,0.7652597702108324,-0.006979894358664751,0.7120623970404267,-0.25607308000326157,0.5123384883627295,0.49279886297881603,0.3301772689446807,-0.8452076781541109,-0.5329863261431456,-0.08646223926916718,-0.5295585538260639,-0.6414233553223312,-0.6054501505568624,0.5489707812666893,-0.24134543957188725,-0.10268335184082389,-0.03673467319458723,-0.5037379362620413,0.8087973152287304,0.699853818397969,-0.9787078048102558,0.21964939450845122,0.00758402468636632,0.0777274533174932,0.7401400413364172,0.8922393121756613,0.07224005181342363,-0.06509079691022635,0.5381882884539664,0.31701796408742666,0.7967084334231913,0.5983678782358766,-0.9257506472058594,0.019100999925285578,0.4379109628498554,0.5292009389959276,0.4940553931519389,-0.4596521910279989,-0.8512592250481248,0.9832437010481954,-0.5438238591887057,0.17513241758570075,-0.9671177472919226,-0.8990872716531157,0.11309889517724514,-0.6998843932524323,-0.26228703651577234,-0.44361164001747966,0.5878651402890682,0.12379778688773513,0.4376353267580271,-0.1299759647808969,0.3640570994466543,-0.8442956060171127,0.708407296333462,-0.8257995331659913,0.29665612429380417,-0.045151785016059875,0.6193054136820138,0.40221124375239015,0.28486314695328474,0.7135088508948684,-0.6588357449509203,0.9818525169976056,0.42258662870153785,-0.6335612027905881,-0.6885880376212299,0.0962554826401174,0.28180480701848865,0.7548255822621286,0.5255054621957242,0.18723028479143977,0.41418541641905904,-0.22767770616337657,-0.48373553436249495,-0.5038804449141026,0.55462144035846,0.39098096918314695,-0.6333971554413438,0.48273499123752117,0.8096319809556007,0.23942929599434137,-0.5831709536723793,0.5065078930929303,0.20017507951706648,0.1795024648308754,0.3577519622631371,0.44666211446747184,-0.6210420927964151,-0.8095078016631305,-0.85028893686831,0.8145777266472578,-0.004799381364136934,0.349043405149132,-0.5446095233783126,-0.5080597293563187,-0.035946447402238846,-0.25265395594760776,0.05133009934797883,0.20555683644488454,-0.3549739778973162,-0.8445857088081539,-0.6045591072179377,0.7869122684933245,0.8290089559741318,-0.02951102703809738,-0.3887736084870994,-0.12975058518350124,0.9195990795269608,-0.3899991437792778,-0.4935062495060265,-0.9469737913459539,0.5928767574951053,-0.24296255456283689,0.6923051560297608,-0.4887565542012453,0.22665509022772312,0.12201022822409868,0.6097614448517561,-0.4060523877851665,-0.06304281251505017,-0.22755073569715023,-0.012668784242123365,-0.2493154383264482,0.6933220247738063,0.8225196967832744,-0.3074905164539814,-0.018065697513520718,0.6485825479030609,0.8587824921123683,0.5231191073544323,-0.37333063827827573,0.1979682552628219,-0.23453773092478514,0.4210378145799041,-0.021584862377494574,-0.05871542124077678,-0.6092429738491774,-0.006221284158527851,-0.6906980299390852,-0.6213329331949353,-0.945977695286274,0.9964549173600972,0.5650748256593943,0.5604071766138077,0.23514416348189116,-0.014280036557465792,-0.5509704700671136,-0.46978227607905865,0.011331150308251381,0.4839424155652523,0.2556773559190333,0.8267876622267067,0.44098479859530926,-0.9018408209085464,-0.6429433263838291,0.64894391130656,-0.6167748109437525,-0.46098375506699085,0.7471394198946655,0.6248573712073267,0.762214157730341,0.35315294889733195,0.8127578133717179,0.734167093411088,-0.7263434994965792,-0.5077635063789785,-0.2729152091778815,-0.0774870696477592,0.08382201287895441,-0.23814532533288002,0.7340025915764272,-0.7912725624628365,-0.6951515711843967,-0.0824550143443048,-0.8014220693148673,0.20994114549830556,-0.5926541718654335,0.2329359669238329,0.6039227992296219,-0.8214595150202513,-0.9337238981388509,-0.3932731272652745,0.4993737917393446,0.9281380726024508,-0.010472007095813751,0.7305410522967577,-0.7708617621101439,0.7932945336215198,-0.833111151587218,0.8511698856018484,0.1842308952473104,0.27211071038618684,-0.5336250839754939,-0.006614713463932276,0.12083512358367443,-0.13244421035051346,-0.6262075947597623,-0.5265417164191604,0.380421947222203,-0.5998347182758152,0.28027208894491196,0.5479535665363073,0.2760375887155533,0.28660081420093775,-0.16309417225420475,-0.9218007996678352,0.8763124053366482,-0.6238725064322352,0.6969530885107815,0.8857903429307044,0.13844911707565188,-0.6419453346170485,-0.4965611035004258,0.2241089642047882,0.8000550293363631,0.15137670561671257,0.8931433870457113,-0.5976993422955275,0.8243167232722044,0.294459386728704,-0.9557369640097022,-0.06706920638680458,-0.5064245159737766,0.8626428167335689,-0.3904379019513726,-0.5632389388047159,-0.20425620069727302,-0.5374014088883996,-0.24904447328299284,0.32721769995987415,0.349571218714118,-0.21554214367643,0.44460707204416394,0.8871497488580644,0.48960497975349426,-0.48391828313469887,0.6228254437446594,0.055801845621317625,-0.5430567101575434,0.4480691463686526,0.07035241229459643,-0.8880202961154282,-0.48935676086694,0.723787582013756,-0.9759272928349674,-0.8446204932406545,-0.7447795225307345,0.7816109298728406,-0.49198816902935505,0.8834285754710436,0.8310770648531616,-0.9858744852244854,-0.675981838721782,-0.38936875155195594,-0.549411372281611,-0.7539726905524731,0.9282559347338974,-0.4835533411242068,-0.38919218722730875,0.5748138683848083,-0.008030906785279512,-0.6835952722467482,-0.3215340836904943,-0.5326986885629594,-0.6793617242947221,0.9319619135931134,-0.31973530212417245,-0.1652193171903491,0.3683385676704347,-0.4164980659261346,0.7297818302176893,0.011706388089805841,-0.21425738418474793,0.011713007930666208,-0.6909815040417016,0.7448640433140099,-0.05159879755228758,0.5118751944974065,-0.23456447198987007,-0.10380516154691577,0.7730657970532775,0.9437503479421139,-0.9895292213186622,-0.5225393828004599,0.6822434710338712,-0.35114721208810806,-0.9728935398161411,0.729490770958364,0.9761610995046794,0.5785356280393898,0.819960470777005,-0.15522193536162376,-0.8779835915192962,-0.9558762889355421,-0.8566681095398962,-0.8952039140276611,-0.015846804715692997,-0.9372659088112414,-0.9729621764272451,-0.20950607815757394,0.9019829304888844,0.053573266603052616,0.292810567189008,-0.8400170225650072,-0.5899006682448089,-0.3703074282966554,-0.9087406806647778,-0.9041502163745463,0.6335183726623654,-0.9712495133280754,0.14283244917169213,-0.4906507069244981,0.3783335704356432,-0.246921269223094,-0.07087362930178642,-0.5138962310738862,-0.8402635082602501,0.41139699751511216,-0.16815115278586745,0.6785767837427557,0.9991472777910531,0.7036062334664166,0.32430296763777733,0.6030909055843949,0.8740421491675079,-0.9602314010262489,-0.8170558288693428,-0.6965420804917812,-0.11402968456968665,0.32352852914482355,0.3766963114030659,0.017260508146137,0.5842270338907838,0.6679939269088209,-0.5968371070921421,0.16058298805728555,-0.8647507284767926,-0.025107817724347115,0.19605027744546533,0.7818247359246016,-0.5676794005557895,0.35962172551080585,0.9337504762224853,0.8658420476131141,0.3803514810279012,-0.8693682649172843,0.8442682945169508,0.25368939572945237,-0.7033248920924962,-0.8736344506032765,0.28265460580587387,-0.057401550468057394,0.26381779508665204,0.865293915849179,0.327992195263505,0.0952208605594933,0.952864155638963,0.6853956426493824,-0.9336017067544162,0.9721246785484254,0.42202412709593773,0.03954569390043616,-0.04445391148328781,0.029489548411220312,-0.20363050792366266,-0.5786574063822627,-0.2973149190656841,-0.08592877071350813,-0.3114734557457268,-0.7411472243256867,-0.5126579366624355,0.7186454166658223,0.3671354209072888,-0.25014021107926965,-0.9205467728897929,-0.44165504444390535,-0.8337835567072034,-0.9919543471187353,-0.7128814128227532,0.8816531505435705,0.7156907161697745,0.3135690223425627,0.8709323527291417,-0.2746727308258414,-0.2199866552837193,-0.28407452162355185,-0.3095953515730798,0.9732652269303799,0.14061352657154202,0.5795606658793986,-0.28554331231862307,0.3155673728324473,-0.843315061647445,-0.834472528193146,0.5349241425283253,0.3794693718664348,-0.9757080129347742,0.4296123031526804,-0.47462013456970453,-0.07175592565909028,0.3763317670673132,-0.17892755568027496,-0.25961459148675203,0.4979929723776877,-0.4810323864221573,-0.439938070718199,0.8523145369254053,-0.14254542021080852,0.23453108547255397,0.439080074429512,-0.9223213596269488,-0.5425043595023453,-0.2047615717165172,0.234085017349571,-0.18729240540415049,0.6600364334881306,-0.746048622764647,0.4203573255799711,-0.708898177370429,-0.01649870816618204,0.06542741553857923,-0.6517610298469663,0.24149179877713323,0.986076052300632,0.4535823967307806,-0.31462847301736474,-0.21532335365191102,0.8597747408784926,-0.5748313455842435,-0.9943534415215254,0.6721714963205159,0.02476852387189865,0.6836403454653919,-0.47366190049797297,-0.20494246296584606,0.22300667315721512,-0.0442593339830637,-0.2064090920612216,-0.6836644960567355,0.3111801682971418,0.6580898547545075,-0.10879300069063902,-0.9929741378873587,-0.734986035618931,-0.7032534503377974,0.9904415472410619,-0.45374364173039794,-0.19840971194207668,-0.47257014736533165,-0.38141422998160124,0.7588341417722404,0.40471656853333116,-0.4436024581082165,0.7867427384480834,-0.9940081178210676,-0.06321944389492273,0.03037960361689329,0.2528309365734458,-0.21311606327071786,0.30413110414519906,0.8662591115571558,-0.6815041471272707,0.3577547101303935,-0.6989840408787131,-0.14826795971021056,0.536674449685961,-0.8826311118900776,0.5062908995896578,-0.6030799993313849,-0.9809639872983098,0.7019492401741445,0.12168461829423904,-0.9204189907759428,0.8430703566409647,-0.6968550537712872,0.8852141066454351,-0.7090255967341363,-0.03846822725608945,-0.30908070458099246,-0.521886202506721,-0.7619784502312541,-0.49545982340350747,0.3904217267408967,0.02504775859415531,0.3756234645843506,0.30473297741264105,0.8978796536102891,-0.19230677280575037,-0.5387011980637908,0.6599741699174047,0.9056435776874423,0.8469123095273972,0.3539723982103169,0.5912391454912722,0.15850013587623835,0.6269609788432717,-0.2753272266127169,-0.7532223388552666,-0.7441586372442544,-0.865540768019855,0.393802123144269,-0.7360317693091929,0.45249101566150784,0.5175365102477372,-0.9965489143505692,-0.8327070437371731,0.5144735453650355,0.5168051505461335,0.5446830433793366,0.9301458299160004,-0.5668064020574093,-0.7619699467904866,0.8776128254830837,0.4690794739872217,0.8095458378084004,0.36139554623514414,-0.37565547367557883,-0.37204771721735597,0.750812591984868,-0.011801041662693024,-0.3203141735866666,-0.6375961964949965,0.2862299638800323,0.3129113642498851,-0.767677541822195,0.6334865936078131,0.3078025854192674,-0.8848092486150563,0.6054063043557107,0.4336580648086965,-0.9002405810169876,-0.20962878735736012,0.04352953098714352,0.011532551608979702,0.5999831915833056,-0.9448474827222526,0.9945186534896493,0.021583136171102524,-0.4544431618414819,-0.760824610479176,-0.1782039706595242,-0.9959304328076541,-0.12260368326678872,0.5820481423288584,0.6061259182170033,-0.1111427373252809,0.05213060323148966,0.7126679243519902,0.6719323135912418,-0.696049134247005,-0.13615619810298085,0.3137255967594683,-0.008624226320534945,-0.4577488065697253,0.42730410071089864,-0.34931236132979393,-0.8348321253433824,-0.3220362523570657,-0.073797975666821,0.1562813320197165,0.4291100832633674,0.016093531157821417,0.02388849016278982,0.04024793207645416,-0.6429192037321627,0.09822743199765682,0.6733238003216684,-0.056438091211020947,0.6290032346732914,0.14996977150440216,-0.39875101763755083,-0.5408063745126128,0.6059058834798634,-0.8928747167810798,-0.8240824672393501,-0.04855095222592354,0.7600984601303935,0.8385312268510461,0.871157796587795,-0.4305228693410754,-0.6698860041797161,-0.4477861803025007,-0.49063203064724803,0.9005707739852369,-0.9347824221476912,0.5977813205681741,-0.9660204113461077,-0.9694235534407198,-0.4902201653458178,0.7344538234174252,0.2720696786418557,-0.4386065802536905,0.5166307520121336,0.8668716298416257,0.2079017893411219,-0.3283399948850274,-0.07804703386500478,-0.2044139509089291,0.37872248562052846,0.3181878821924329,-0.7274419046007097,0.47468003490939736,-0.6676506195217371,-0.9935181764885783,-0.5165534317493439,-0.07305959099903703,0.009244257118552923,0.9355707420036197,0.6359330271370709,0.8779054302722216,0.3881956567056477,0.3352459566667676,-0.9229519912041724,0.6265552458353341,0.18908307468518615,-0.05968012800440192,-0.7504156972281635,-0.38398555060848594,0.6867699618451297,-0.027077993843704462,0.7622307087294757,-0.3568191868253052,0.9033049256540835,-0.81325179990381,-0.06022375589236617,0.8173837391659617,-0.8439454617910087,0.5722093158401549,0.12163208331912756,0.7712518144398928,0.6812523026019335,-0.6535857343114913,0.4824434304609895,-0.5022100014612079,-0.5261113359592855,0.04129820503294468,0.6752784447744489,-0.054203118197619915,0.4806860242970288,0.7818292574957013,-0.8143675932660699,-0.12542325677350163,0.20629675453528762,-0.2713780556805432,-0.091484600212425,-0.612918162252754,0.8404295267537236,0.9801150877028704,0.5666849496774375,0.5707859746180475,0.8797087357379496,-0.8476252821274102,-0.9170778747648001,-0.7020638398826122,-0.6828144895844162,0.4678305182605982,-0.4328624987974763,0.4564798092469573,-0.494677503593266,0.37348855938762426,-0.14023767039179802,0.928575492464006,0.7651871065609157,0.011520600412040949,0.8769815592095256,0.38555703265592456,-0.5781580917537212,0.9992179428227246,-0.9517782456241548,-0.2263925615698099,0.27400926081463695,-0.000993926078081131,-0.48467210540547967,0.9757511685602367,-0.9904506667517126,0.7113270820118487,-0.85650196345523,0.7475998234003782,0.8741572974249721,-0.044339433778077364,-0.4215561915189028,0.5517653422430158,0.20404931996017694,0.27193318866193295,0.3069032458588481,0.4218975258991122,0.8716170974075794,-0.12598970858380198,0.9465680913999677,0.45151334535330534,-0.3492629798129201,0.7346001528203487,-0.6319829970598221,0.3433906571008265,-0.5195570150390267,-0.8731126743368804,-0.5966056482866406,-0.2471692869439721,0.3672437211498618,0.5499266893602908,0.29645154997706413,0.36063783848658204,0.9348152787424624,0.3778501986525953,0.1761431316845119,0.7338452972471714,0.2940117619000375,-0.7360517736524343,-0.626967643853277,0.35644529946148396,0.7764688297174871,0.5188155071809888,-0.11968864314258099,-0.6162257478572428,-0.8640819503925741,0.7603231063112617,-0.8119457759894431,0.7016538251191378,0.7259387793019414,-0.9104548869654536,0.5125846867449582,-0.7483072141185403,0.2607522546313703,0.2509380145929754,-0.971024573314935,0.1371891787275672,0.2662631147541106,-0.6366289085708559,-0.6101924278773367,0.5595070719718933,0.26800298364833,-0.1977345789782703,-0.7105496260337532,0.4058264340274036,0.9866961948573589,-0.009866700042039156,-0.8269006018526852,0.08716418454423547,0.4009648892097175,0.6201331741176546,-0.7622272251173854,0.8500956646166742,0.4338571010157466,-0.7757837767712772,-0.0007394743151962757,-0.31083821691572666,0.5918753459118307,-0.7074468643404543,-0.022301201708614826,-0.01827233610674739,-0.7518943110480905,0.17912275856360793,0.15869450569152832,-0.2610817193053663,0.8378069717437029,-0.922609708737582,-0.9685547002591193,-0.7098556370474398,0.45503594586625695,0.032556036952883005,-0.052217776887118816,-0.8809701544232666,0.7918048952706158,0.5923729818314314,0.7520983116701245,0.08114354964345694,-0.837920842692256,0.42514123767614365,-0.13836911600083113,-0.3752222345210612,0.29204774601385,-0.3935636691749096,0.8963014772161841,-0.36189269833266735,-0.5480607408098876,0.28915944462642074,-0.20124718639999628,0.3621020819991827,0.9103597877547145,-0.7010770570486784,0.17556656152009964,0.9026968358084559,0.898526054341346,0.9431144809350371,0.8870883290655911,0.9034988600760698,0.31494977697730064,-0.5481897406280041,0.4252600963227451,0.9941768115386367,0.28697970416396856,-0.6190911033190787,-0.9176825527101755,-0.18354823347181082,0.4862850056961179,-0.5919096642173827,0.1781564406119287,0.652193178422749,0.028185830917209387,0.14890863746404648,-0.839670748449862,-0.6711717587895691,0.7276225285604596,0.3536353623494506,0.3776223259046674,-0.2412599422968924,-0.4269375065341592,0.16444027237594128,0.9415940949693322,0.5374308503232896,-0.5105434218421578,-0.33112904243171215,0.9555323487147689,-0.7401421801187098,0.9167654355987906,-0.14124260190874338,-0.7976893521845341,-0.464709788095206,-0.9875544430688024,0.22616322059184313,0.7333133039064705,0.001933288760483265,-0.8102748724631965,-0.1875732154585421,0.36928047938272357,-0.9078912949189544,-0.6270808973349631,-0.06180852139368653,0.8067808644846082,-0.11540765268728137,-0.9298803973942995,-0.4793098452500999,0.04637764627113938,0.43888151552528143,0.7886472591198981,-0.021227827295660973,-0.8079527127556503,-0.34292801562696695,0.8548447573557496,0.44209651555866003,0.2608047197572887,0.4251268277876079,-0.1377756968140602,0.775386321824044,0.1375113227404654,-0.29316757898777723,-0.25866489950567484,-0.31536885490641,-0.5644945995882154,-0.19052338739857078,-0.4847761928103864,-0.27308810129761696,0.29737756308168173,-0.8207527371123433,0.5337009485810995,-0.023918084800243378,-0.1521460167132318,-0.06034454330801964,0.21588632743805647,0.5531345554627478,-0.19084742618724704,0.03651620075106621,-0.6402708576060832,0.5788886081427336,-0.5030091600492597,-0.5697505408897996,0.39387579867616296,0.7628614935092628,-0.24454538943246007,-0.02843483118340373,0.45570500707253814,-0.5668540722690523,-0.1771635003387928,-0.6477734385989606,0.8948851870372891,-0.03490198403596878,0.8239484713412821,0.5538389836438,0.5878229518420994,0.5199186070822179,0.42211074382066727,-0.8482634532265365,0.013941978570073843,0.6153861680068076,-0.8687527016736567,0.8166248789057136,0.9189779255539179,0.21612780867144465,0.08072579745203257,-0.8263560701161623,0.17264833394438028,-0.06407967768609524,0.2503865254111588,0.06637620273977518,0.07477682828903198,0.8029893185012043,0.9407237996347249,-0.47226892365142703,0.3702676333487034,0.8102776776067913,-0.00835171202197671,0.04499003058299422,0.2028915756382048,0.7634724169038236,-0.7166857998818159,-0.7850588704459369,-0.10555872041732073,-0.6050158780999482,-0.21037775557488203,0.15573305590078235,0.9314001691527665,0.6309288223274052,-0.02529806550592184,0.2757234354503453,0.5206303466111422,0.5333608547225595,-0.20968320639804006,0.5209850715473294,0.04782707942649722,-0.9935666606761515,-0.40488990023732185,-0.43632182432338595,0.864523088093847,0.24537154519930482,-0.7711826045997441,-0.6574654835276306,-0.3560477886348963,0.926186369266361,-0.7378099360503256,0.0650973659940064,-0.31658632308244705,0.18252085987478495,0.800228915642947,-0.1933786803856492,0.9583829990588129,-0.47577633894979954,0.3513768007978797,0.24457266880199313,-0.3027078057639301,-0.9047924540936947,-0.3812830960378051,0.11916359467431903,0.23053230810910463,0.6962232128717005,0.8081046319566667,0.7834703610278666,0.9183535906486213,-0.6744384579360485,0.9616012265905738,0.12967540230602026,0.8853681059554219,-0.7685262402519584,-0.1712188683450222,-0.13156873127445579,-0.05229117814451456,-0.11886221216991544,0.4435385190881789,0.709709688089788,0.5061442703008652,0.07368462532758713,-0.45186064951121807,-0.3154714941047132,-0.35083637898787856,0.2351458789780736,-0.46824187180027366,-0.1298155472613871,0.5149493319913745,0.8242581649683416,-0.7520681354217231,0.7501775827258825,0.5408861534669995,-0.10956297861412168,0.8994162557646632,-0.5058705322444439,-0.8661452061496675,0.32353848358616233,0.509533844422549,0.36785558983683586,-0.4515039580874145,-0.10702577885240316,0.08375325426459312,0.5672807600349188,0.8395186052657664,-0.2710820781067014,-0.6017435034736991,0.0788317914120853,-0.1163312061689794,-0.8290795478969812,0.6798857375979424,0.11917084641754627,-0.9642102899961174,0.9017864265479147,0.8840294945985079,0.40254953783005476,-0.16354860784485936,0.13687660777941346,-0.5169329126365483,0.16727425577118993,-0.15671702474355698,0.9171689827926457,-0.6535254940390587,0.9478641310706735,0.86223733285442,0.7487662346102297,0.5691244518384337,0.03788814786821604,0.31450034910812974,-0.5854665176011622,0.9023698829114437,-0.6995459953323007,0.0664912979118526,-0.7861866704188287,-0.010791877750307322,-0.42348998226225376,0.3421279373578727,0.8441879842430353,-0.16701850667595863,0.4016112042590976,0.8288325876928866,-0.4788566795177758,0.31529252510517836,-0.18993397010490298,0.39449086831882596,0.625991702079773,0.1544740074314177,0.6831638752482831,-0.3731426168233156,-0.391090911347419,-0.9408495328389108,-0.8923813551664352,0.6887553362175822,0.9008180643431842,0.06102171493694186,-0.16116451285779476,0.33405624609440565,-0.2441829345189035,0.33605119911953807,0.6254528383724391,-0.1392705962061882,0.4916436509229243,0.17843622900545597,0.154874746222049,0.1281558908522129,0.9102921229787171,-0.3433510852046311,0.6928524496033788,-0.5870532314293087,0.431666798889637,-0.3037442835047841,0.011850325390696526,0.88323890324682,-0.20695776864886284,-0.339994877576828,-0.8456831951625645,-0.21468510851264,0.942701967433095,0.5369000034406781,-0.7597351716831326,0.8588864635676146,-0.6809691432863474,0.4736453830264509,0.8469821554608643,-0.7177222324535251,0.8467705599032342,0.7491260929964483,-0.745171679649502,-0.661998906172812,0.8816413981840014,-0.38727720407769084,-0.6985427723266184,0.20494544552639127,0.7792143761180341,-0.8086347854696214,0.6458984850905836,0.5822078757919371,0.19637348549440503,0.6861406248062849,-0.35459642903879285,0.8373653315939009,0.8877576887607574,0.1072173505090177,0.9270020658150315,-0.8617003578692675,0.6033381009474397,-0.4110097144730389,-0.6218370962888002,0.6781375333666801,-0.3870948487892747,0.806343896780163,0.8100613420829177,0.40314460871741176,0.4810509611852467,0.4642206043936312,0.21048917155712843,0.8771851863712072,0.21735456446185708,-0.31659863516688347,0.7604179731570184,0.47171229869127274,0.706295223440975,0.8572155139409006,0.6544014280661941,-0.8331907722167671,-0.5315817827358842,-0.5366661134175956,-0.02126065595075488,-0.937170771881938,-0.4360553906299174,-0.9152878345921636,0.7082575238309801,-0.5290804961696267,-0.6106713712215424,-0.2853048471733928,0.16466216510161757,-0.056376393884420395,-0.5566061600111425,0.159482731949538,-0.9557523024268448,0.3419721177779138,0.3795266067609191,0.3232207680121064,0.8026357553899288,0.8312381911091506,-0.046114612836390734,0.42597067868337035,-0.04396765027195215,-0.5399733739905059,0.926054849755019,-0.032351077534258366,-0.2413287404924631,-0.8179347421973944,0.6256750822067261,0.08201914094388485,0.389504452701658,0.1352308699861169,-0.0800744597800076,0.4640116454102099,-0.8802624088712037,-0.8628974049352109,-0.46644677221775055,0.6787429917603731,0.20596690196543932,-0.535020031966269,0.07830559927970171,-0.2944937301799655,0.9400766338221729,-0.8991181231103837,-0.7994297621771693,-0.8811108744703233,0.8172230320051312,-0.7810761481523514,0.6317453016526997,-0.19539195531979203,-0.0003488520160317421,-0.5067469794303179,0.7733856663107872,-0.2733921753242612,0.6997737633064389,0.9684253195300698,-0.7870167405344546,-0.8351801773533225,-0.6573409382253885,0.9448651247657835,0.9959692466072738,-0.2169989999383688,-0.9767759768292308,-0.9647579714655876,0.09913113806396723,0.976486858446151,0.19418471306562424,-0.8792665819637477,-0.4773933859542012,0.5074354633688927,-0.9814604767598212,-0.4687385242432356,-0.29850968392565846,0.8359730383381248,0.3908592574298382,0.16539061116054654,-0.9331858586519957,-0.18899789778515697,-0.3792345323599875,0.8772804019972682,0.011340655386447906,0.25037783570587635,0.04741822835057974,0.47869646828621626,-0.8629066688008606,0.07778570568189025,-0.7791773960925639,0.8679468813352287,-0.8925188379362226,0.6866968446411192,-0.42663991264998913,0.12206811225041747,-0.0958692291751504,0.1806605472229421,-0.00640943692997098,0.8747610431164503,-0.9522789334878325,0.8842796208336949,0.05283168936148286,-0.9701551455073059,0.9034812888130546,-0.6270432067103684,-0.06244213506579399,-0.8581701256334782,0.5252516330219805,0.13189591374248266,-0.9096074355766177,-0.867330982349813,-0.5317154517397285,-0.9527920703403652,0.09932202426716685,-0.3894654680043459,0.30350401531904936,0.009219581726938486,-0.4531294428743422,0.14204663317650557,0.21073412522673607,-0.23252278985455632,-0.3337216884829104,0.4805616610683501,-0.09560211794450879,-0.17858121916651726,0.49367808597162366,0.15440463880077004,0.9441715143620968,-0.7790603972971439,-0.22950369864702225,-0.34368015406653285,-0.6735951523296535,-0.39375500148162246,0.7611730750650167,0.5561873498372734,0.6535350168123841,-0.3565132808871567,-0.09377791499719024,-0.7193087148480117,-0.05474393395707011,0.411241736728698,0.6874555107206106,-0.6904884506948292,-0.9425977729260921,0.28942616656422615,-0.26967139448970556,0.8889368674717844,0.22453420469537377,-0.8582663522101939,-0.10897153103724122,-0.708275361917913,-0.3870496917515993,0.2198679158464074,-0.9210508642718196,0.9895145893096924,-0.6256984914653003,-0.3746254462748766,0.7279177233576775,0.8964929427020252,0.8619913924485445,-0.5489449510350823,-0.9184238580055535,-0.1856644838117063,-0.07483905088156462,-0.15249735349789262,0.8310388955287635,-0.29891509795561433,-0.5355189726687968,-0.7165845911949873,0.6890203636139631,-0.08064871933311224,-0.27657318813726306,0.4151944313198328,-0.9380287071689963,0.4438380245119333,-0.9525587153621018,0.5726419864222407,0.365922462195158,-0.7775470265187323,0.13177044270560145,-0.31521744979545474,0.25865134969353676,-0.2724695880897343,-0.808111468795687,-0.991709996946156,-0.21627197042107582,-0.2437661220319569,-0.973150557372719,0.922156285494566,-0.5108516225591302,0.5083570433780551,0.01619374519214034,0.7468149471096694,-0.004500131122767925,-0.22268983954563737,0.9856312964111567,-0.02600130159407854,-0.5588530735112727,0.46977123711258173,-0.20714011508971453,0.9338993281126022,-0.25644226325675845,0.38447024673223495,-0.5820909193716943,-0.850776479113847,0.31993812322616577,-0.6039311420172453,0.5693368338979781,0.9999068058095872,-0.7262177118100226,-0.1313454369083047,0.22949449717998505,-0.0844327132217586,-0.485671557020396,0.7907166555523872,0.656783708371222,-0.9513673791661859,-0.5927741471678019,0.8944265954196453,-0.9958228729665279,0.6087939185090363,-0.39634856348857284,-0.1592015433125198,-0.3037193063646555,0.36341783264651895,-0.7921142019331455,0.3656701627187431,-0.2751823579892516,-0.7568507334217429,-0.8325577671639621,-0.04388808598741889,-0.030456540640443563,-0.652695610653609,-0.19665328785777092,-0.27429124526679516,0.58898094156757,0.5656659654341638,-0.2051450521685183,0.9797069444321096,-0.1301346910186112,-0.11733264615759254,-0.734542541205883,-0.5494673200882971,0.3657521475106478,-0.6512715956196189,0.2598185455426574,-0.573292204644531,-0.618277866858989,-0.60068986332044,0.9359315214678645,-0.06578813306987286,-0.9635367090813816,-0.3030357132665813,-0.22355690086260438,0.19587357016280293,-0.6596530792303383,-0.24218062637373805,0.8871897771023214,-0.997739864513278,-0.022062080446630716,0.1069457083940506,0.20553857227787375,0.837929452303797,-0.44994088541716337,0.11343096196651459,-0.05797578487545252,0.2909277961589396,0.3572504981420934,0.4444880448281765,0.10579732339829206,-0.41159488214179873,-0.6201858106069267,0.9290276286192238,0.2321988893672824,-0.25084658106788993,-0.3626502314582467,-0.2907804073765874,-0.7407466731965542,0.28214570600539446,-0.2610009228810668,0.1149234352633357,0.791071935556829,-0.989528561476618,-0.7261062324978411,-0.10688034864142537,-0.8044311557896435,0.08970299270004034,-0.7292380970902741,-0.14409298542886972,-0.032811746932566166,0.29761355090886354,-0.7557147853076458,-0.5997428265400231,0.9441837975755334,0.21263297367841005,-0.26917150197550654,-0.3330022948794067,-0.47101945197209716,0.9405882763676345,-0.9056310378946364,0.03829369181767106,-0.5285052009858191,0.13412700174376369,-0.731101730838418,-0.6525383964180946,-0.42509773606434464,-0.19005159009248018,0.8227281663566828,-0.07372605707496405,0.6493431790731847,-0.18875664565712214,0.7370071560144424,-0.41689837677404284,0.29121013171970844,-0.4609797350130975,0.4147957218810916,-0.42575698858127,0.02732228860259056,-0.27054159389808774,-0.27187273744493723,0.7884016162715852,-0.8020692146383226,-0.23765478748828173,-0.31549365632236004,-0.6963254795409739,-0.46224676351994276,-0.06449759285897017,-0.43681225273758173,0.24645037716254592,0.8469209768809378,-0.5857101115398109,-0.9479821980930865,0.7506885654293001,0.9505075006745756,-0.4930421505123377,-0.57412328151986,0.5634939740411937,-0.2692112708464265,-0.6858703740872443,-0.5835500690154731,-0.1845507430844009,0.5868341932073236,0.40177214378491044,-0.6848802366293967,0.3856505099684,-0.21388998674228787,-0.17413413990288973,-0.2322272160090506,-0.16672804160043597,-0.3005994032137096,0.3639291441068053,0.5833145398646593,-0.1377346278168261,0.9921644609421492,-0.5965167731046677,0.8325341925956309,-0.6781897936016321,0.8897997243329883,-0.39817471290007234,-0.24679377069696784,-0.587252645753324,0.5765965352766216,-0.2583179669454694,-0.08737608231604099,0.10964137874543667,-0.22407999401912093,0.6693803011439741,-0.4304081373848021,0.9511490031145513,-0.3243572451174259,-0.04084813175722957,-0.10187147930264473,-0.5043354132212698,0.035246610175818205,0.4761342112906277,0.5124037694185972,0.03326754039153457,-0.997814912814647,0.3137005362659693,0.4650312140583992,0.5251781553961337,-0.6487413696013391,-0.33397126477211714,-0.135833784006536,-0.8436326929368079,-0.5885403021238744,-0.6275116712786257,0.8296859376132488,0.4599497774615884,0.32086717104539275,0.22486136155202985,-0.9901221501640975,0.3285256400704384,-0.4125450341962278,-0.4553596214391291,0.2762462957762182,0.8500263481400907,0.1623659422621131,0.0038584726862609386,0.9737335806712508,-0.18460121098905802,-0.7792788902297616,-0.3441221211105585,0.35093668196350336,-0.5915212547406554,0.7103541321121156,0.7089790529571474,0.5658890707418323,0.3172190934419632,0.15690240636467934,-0.8318653162568808,-0.974414040800184,-0.3188816485926509,0.5549313593655825,-0.4542674645781517,0.20305646862834692,0.6454231049865484,-0.5355013450607657,-0.5811866032890975,-0.8146926686167717,-0.22458954015746713,0.503903049044311,0.5186695344746113,0.8885777392424643,0.2035673912614584,0.06602027406916022,-0.20761116035282612,-0.9721833947114646,0.0878488733433187,0.3458154541440308,-0.16780326841399074,0.12925291387364268,-0.5926073202863336,0.06689458200708032,-0.03674137918278575,0.16471183113753796,0.0720057561993599,-0.4510713913477957,-0.47312580700963736,-0.5469654267653823,-0.8362081185914576,-0.3154766736552119,-0.8438785742036998,-0.486466933041811,0.08883594814687967,-0.12353931553661823,0.7416367875412107,0.19250171398743987,-0.8196801315061748,0.5401267912238836,-0.10282180551439524,0.5218053027056158,-0.07487983582541347,0.012441004160791636,0.24994338769465685,0.4165152790956199,0.23893105797469616,-0.6147077139467001,-0.955137942917645,0.9873235584236681,-0.13644878147169948,0.11305179819464684,0.6338537307456136,0.06308433832600713,0.43628016393631697,-0.5556838437914848,-0.4589837798848748,0.6638511517085135,0.2808169540949166,0.8565150839276612,-0.6779835065826774,-0.3816425856202841,-0.5740014109760523,0.20328573510050774,-0.12982765305787325,0.9191013351082802,0.7102959859184921,0.029678864404559135,-0.5439377510920167,0.7738073482178152,0.771416543982923,0.582408239133656,0.6776313497684896,0.22044488275423646,0.5067775584757328,-0.41897875955328345,-0.14370218152180314,-0.4266577959060669,0.5929908510297537,-0.5378507059067488,-0.6022365251556039,-0.3514866326004267,0.484704299364239,-0.8444257467053831,-0.9506233213469386,-0.7017328743822873,0.2601005295291543,-0.008204729296267033,0.7746033747680485,0.09651946928352118,0.368532785680145,-0.68295809160918,0.9152239244431257,-0.5910616889595985,-0.1878996854647994,-0.8357231356203556,-0.5300246844999492,-0.9845560127869248,0.36835888773202896,-0.9967160355299711,0.059891573153436184,-0.7919216165319085,0.5539729162119329,-0.7055082214064896,0.30787009093910456,0.9406918291933835,-0.26202215580269694,-0.02734432928264141,0.06544551718980074,-0.04061455698683858,0.9138047569431365,0.5374315194785595,-0.4713971638120711,-0.9788513001985848,-0.8688041474670172,-0.8136447798460722,0.9922310868278146,0.13553184969350696,-0.689657298848033,-0.38212611619383097,0.08354415697976947,0.7390422271564603,0.12702971510589123,-0.5332844760268927,-0.7187677267938852,0.23042157478630543,-0.20669642370194197,0.1998031735420227,-0.5334202805534005,-0.3806165982969105,0.533925037831068,-0.4494183617644012,-0.6844667098484933,-0.1333895679563284,0.9909012168645859,-0.1429860987700522,-0.5315306074917316,-0.6592681212350726,-0.21833760105073452,-0.5351342167705297,-0.32870197109878063,-0.4877125187776983,0.3654839708469808,0.07687463890761137,0.07960803527384996,0.6079625003039837,-0.35285515058785677,-0.8742153556086123,0.5453072572126985,0.44663375429809093,0.9452140843495727,-0.9185294802300632,0.9100529528222978,-0.04269871162250638,0.13175434432923794,-0.47660220274701715,0.5500723514705896,0.033278103452175856,0.5390973933972418,-0.5310098915360868,-0.5359975658357143,-0.8970975400879979,0.0177070377394557,0.8843158232048154,-0.46134538436308503,-0.6993873617611825,-0.8338578026741743,0.4939932799898088,0.25212752958759665,0.7458829446695745,-0.7268614429049194,-0.39008941454812884,0.9520316943526268,-0.7134696436114609,-0.8841452654451132,0.8856965638697147,0.9712410350330174,-0.03895958513021469,0.12501241452991962,-0.6507670758292079,0.07811670936644077,0.6124613536521792,0.4352345154620707,0.685825236607343,0.3191527738235891,0.7386408247984946,-0.04347475431859493,-0.1278913696296513,-0.6971438801847398,-0.26386957708746195,0.5036463546566665,-0.2329322719015181,-0.9531999961473048,0.9211338460445404,-0.6883516698144376,0.17934537259861827,0.5657292772084475,-0.1919013438746333,0.83876185817644,-0.16470171697437763,0.7967791575938463,0.13176765106618404,0.5387195670045912,-0.7502528969198465,0.5940481973811984,0.9451192896813154,-0.7157318824902177,-0.9878589976578951,-0.09210917307063937,-0.13989407243207097,-0.3034631269983947,0.300267260055989,0.9789670361205935,0.9416898088529706,0.12505503138527274,-0.583877825178206,-0.17468213196843863,-0.5912655107676983,0.5864530745893717,-0.24904802022501826,-0.0733241643756628,0.1152326287701726,-0.6674784566275775,0.44487063819542527,0.5585588845424354,0.6922968290746212,0.33229378424584866,-0.6783602838404477,-0.5971451243385673,-0.1877697790041566,0.3948162207379937,-0.13274952350184321,0.2149075185880065,0.5064095356501639,-0.7073509590700269,0.19008167879655957,-0.9459945852868259,0.5011251894757152,0.3197568068280816,0.8923880844376981,-0.350054232403636,0.24111000495031476,-0.369348197709769,-0.721564267296344,-0.23227006662636995,-0.5243812710978091,-0.6187511375173926,0.5285156634636223,-0.665705525316298,-0.917510577943176,0.08631867216899991,-0.08940356690436602,-0.448510795366019,0.4015776659362018,-0.635087444446981,0.9893468795344234,0.7642044713720679,-0.8980425200425088,-0.13168201595544815,-0.44290496688336134,0.12405803799629211,-0.6129079726524651,0.38806814048439264,0.8918364127166569,0.3871219092980027,-0.028208096977323294,0.5141259520314634,-0.469054875895381,-0.9686502837575972,-0.35947925318032503,-0.07646030187606812,0.3277030782774091,0.004788884427398443,-0.6257792632095516,-0.5732349841855466,-0.7596563189290464,-0.382695444393903,-0.7513610939495265,0.9700873019173741,0.7642928203567863,0.2934478083625436,0.36111797066405416,0.6010937700048089,0.08551922626793385,0.050934597849845886,-0.03366420976817608,0.6601072787307203,0.650710083078593,-0.5988865913823247,-0.010427736211568117,0.45151433162391186,0.22782450821250677,0.8798136650584638,0.8623156333342195,0.8446083636954427,0.5375776761211455,0.05841467436403036,-0.5633499920368195,-0.7718693106435239,0.3308818363584578,0.019826794508844614,-0.19898728607222438,-0.22656419314444065,0.16356309223920107,0.5150934429839253,-0.9252133066765964,0.2650028085336089,-0.25337457144632936,0.18149349140003324,-0.008701479993760586,-0.43683851417154074,-0.9335493328981102,0.6744312550872564,0.5770476451143622,-0.8240632768720388,0.49299396853893995,0.6858254973776639,-0.5332417893223464,-0.07983965333551168,-0.8571679489687085,-0.7443964653648436,0.9135707933455706,-0.437575273681432,0.40662946784868836,-0.9739805497229099,-0.5790377147495747,0.9517145664431155,0.3942689262330532,0.1372468820773065,-0.12465829309076071,0.6445610905066133,-0.8417261624708772,0.1363058532588184,0.4401421439833939,-0.8909935294650495,-0.7083431943319738,-0.5117996269837022,0.4804225265979767,0.3617986855097115,-0.7797217769548297,-0.8013126263394952,-0.0639702444896102,-0.32150186877697706,-0.7055501472204924,0.72663314640522,0.7340064160525799,0.4731296757236123,-0.46710992278531194,0.4196990532800555,0.7235370315611362,-0.04855876788496971,0.18666329141706228,-0.13509314646944404,0.9416665029712021,0.43974790582433343,0.033154530450701714,0.6061141863465309,0.056638956535607576,-0.03873968403786421,-0.7244113176129758,-0.09995566494762897,0.9312330270186067,0.11953184520825744,0.14473519241437316,0.04901332966983318,-0.9709390350617468,-0.9840894634835422,0.5580190313048661,-0.06048901518806815,-0.9143349742516875,0.8361314069479704,-0.26774653419852257,-0.6868376261554658,-0.008184115868061781,0.6732608494348824,-0.8733577770181,0.8601445220410824,0.5641410686075687,0.023648199159651995,-0.5798478526994586,0.4290338237769902,-0.7485424974001944,0.572406301740557,0.425094248726964,0.5392113085836172,-0.2373793558217585,0.10596678638830781,-0.8903507222421467,-0.59258340485394,-0.306003425270319,0.3228110307827592,0.9770876439288259,0.3659801143221557,-0.8957914994098246,0.5128879607655108,0.8155362848192453,0.3923693262040615,-0.8116807537153363,-0.9375209375284612,-0.8008140693418682,-0.7223782953806221,-0.7767958445474505,0.6055432632565498,-0.5053236084058881,-0.281500072684139,-0.8786197914741933,0.21341722831130028,0.10829626303166151,-0.7771755489520729,0.9764157561585307,0.7963596438057721,0.9890358834527433,0.28117756731808186,-0.20182714331895113,0.25765773421153426,-0.045727336313575506,0.3321505766361952,0.474067572504282,-0.4770487602800131,0.5802020383998752,-0.14652190869674087,-0.04506720323115587,0.8390948586165905,0.15101861115545034,0.3673144029453397,-0.37790555134415627,0.9790293364785612,0.4428894608281553,0.7872320977039635,-0.8993245861493051,0.48733541648834944,-0.14723627315834165,-0.05433015199378133,-0.44531919388100505,0.3593564899638295,0.9015519386157393,-0.8878518757410347,0.12713217549026012,0.8679828126914799,0.5025095222517848,-0.4818197884596884,-0.02733995672315359,-0.9827410425059497,0.6736705549992621,-0.7762083141133189,0.4796407478861511,-0.7416975027881563,0.9402179415337741,0.8279011859558523,-0.8633363307453692,-0.311034151352942,-0.44512862898409367,0.8034901591017842,0.6338240564800799,-0.13177565718069673,0.07395273959264159,-0.9790661144070327,0.0011355308815836906,-0.7483227867633104,-0.916852445807308,0.28698896430432796,0.08929062960669398,0.12765224045142531,-0.6569176805205643,0.25563836889341474,0.24783979495987296,0.008609198965132236,-0.24368235049769282,-0.9473354355432093,0.45874048490077257,-0.7106564533896744,-0.8196404338814318,-0.01882992684841156,0.5000807289034128,0.7117218477651477,-0.02127700299024582,0.43094597989693284,-0.6213363464921713,0.7770614447072148,0.6350618181750178,0.3566076154820621,-0.7922375942580402,0.9981990894302726,0.8828815459273756,-0.4902709163725376,0.8056175354868174,0.21490830276161432,0.9926724792458117,-0.06404561223462224,0.05528721259906888,-0.5981069677509367,0.02141959872096777,-0.9767861547879875,0.2956863190047443,0.11067432817071676,-0.8016996691003442,-0.013815433718264103,0.18367535062134266,0.6326310401782393,-0.465001227799803,0.6754381991922855,0.4887823583558202,0.7809158526360989,0.20988942496478558,0.8239384815096855,0.5844101407565176,0.08893168484792113,-0.17086862912401557,0.28202602732926607,-0.48151468532159925,-0.6581979892216623,0.1903641247190535,-0.855211865156889,-0.34727869601920247,0.9896872886456549,0.22403988242149353,0.8101072893477976,-0.8499425486661494,0.20511664962396026,-0.47291274927556515,0.5135557823814452,0.779259564820677,-0.42615319276228547,0.5802482892759144,0.6908116838894784,-0.2822235110215843,0.8130875122733414,-0.3336352566257119,-0.4950997503474355,0.13828764762729406,0.8098451974801719,-0.42912622867152095,0.9335520188324153,-0.5145471342839301,0.9190495740622282,-0.30501923710107803,-0.23136434890329838,0.46316177025437355,-0.18808449571952224,0.11539420066401362,0.3296729102730751,-0.6403790316544473,0.7251032325439155,-0.7525246534496546,-0.20504676969721913,-0.8783149453811347,0.2221006052568555,-0.27913694689050317,-0.4318553311750293,0.015915539115667343,-0.9072051080875099,0.653101128526032,-0.08212978625670075,0.42208219366148114,0.44526216806843877,-0.4475001012906432,-0.14857432572171092,-0.19147637439891696,0.8299633134156466,-0.9927275413647294,-0.933113788254559,-0.904368884395808,0.5732941818423569,-0.9251349060796201,-0.09702199883759022,-0.7236356302164495,-0.6928462977521122,-0.4114926108159125,0.6140211476013064,0.28556215669959784,0.8995947372168303,-0.038148462772369385,0.5064990553073585,0.9540198701433837,-0.9993258486501873,-0.7682895208708942,0.5760318525135517,-0.1676679663360119,-0.10640513291582465,-0.7322354535572231,-0.05999491456896067,-0.30879522347822785,-0.07284904876723886,-0.6189513560384512,-0.5583851803094149,0.7016072939150035,0.4914269526489079,-0.10424028942361474,-0.8563308282755315,0.5417356598190963,0.8525495897047222,-0.335070866625756,-0.08862391347065568,0.5667508486658335,0.12924583069980145,-0.6281258361414075,-0.5790047361515462,0.8000663840211928,0.350397739559412,-0.11678244080394506,-0.7339647659100592,0.8082395535893738,-0.12029518466442823,-0.21829404309391975,-0.3503377796150744,-0.31697864132001996,-0.6802661307156086,0.6552808415144682,-0.37051705457270145,0.686022664885968,0.8714611893519759,-0.0701695834286511,-0.4608543626964092,0.3909414317458868,-0.6915835095569491,0.9312694519758224,-0.3645289740525186,-0.8626510440371931,-0.6404845719225705,0.10196340084075928,-0.04152735322713852,0.9808748164214194,0.19087541475892067,-0.39505565678700805,0.9030960644595325,0.897433829959482,0.5530524947680533,0.28632073989138007,0.2841990618035197,-0.20754031417891383,0.2709798770956695,-0.9591314354911447,0.45392206544056535,-0.18193369638174772,0.8920560041442513,0.5205430365167558,0.5975036406889558,0.5953249870799482,-0.2968802936375141,-0.4474278874695301,0.21072269743308425,0.5053427829407156,-0.570319359190762,0.6547833355143666,-0.010142103768885136,0.8922829297371209,-0.2665496068075299,-0.18235971545800567,-0.21632430935278535,-0.5688051483593881,0.07533338107168674,0.5889514363370836,0.7991157840006053,-0.11270706029608846,-0.4841260462999344,0.4187228521332145,-0.5805676998570561,-0.9852583957836032,0.9209628636017442,0.8878205982036889,-0.7001219959929585,-0.022930835839360952,0.5623220824636519,0.1945728580467403,-0.6511783860623837,0.4486075253225863,0.5598654835484922,-0.8254738464020193,-0.3239343147724867,0.23295408068224788,0.960198531858623,-0.9998289686627686,0.6634039375931025,0.6385682439431548,-0.5804572086781263,0.010341241955757141,0.07900345418602228,0.14994809310883284,-0.41368768690153956,-0.14201615005731583,0.5267458129674196,0.36358474753797054,-0.3464280962944031,0.4051442504860461,-0.5479142861440778,0.5184985580854118,-0.5321065480820835,-0.27027159091085196,0.6761151263490319,-0.41773050697520375,0.7416245378553867,-0.6703187040984631,0.42302184412255883,0.04353304812684655,0.30564363254234195,-0.28734999103471637,-0.6336600850336254,0.7856031558476388,-0.5428384193219244,-0.3995148711837828,0.9755030102096498,0.6088903592899442,0.9185991161502898,-0.07761155441403389,-0.4296575877815485,0.6631381292827427,-0.41507818503305316,0.9751565977931023,0.6120104682631791,0.9799368684180081,0.26606125570833683,0.0683810724876821,-0.8928568991832435,-0.3273253822699189,0.16198787791654468,-0.11576219974085689,-0.8499018992297351,-0.3095298921689391,0.43792398646473885,0.7193121663294733,0.7738237138837576,-0.2575749233365059,-0.609427364077419,0.8165787793695927,0.34199386229738593,-0.2158867111429572,-0.6212644074112177,0.93990070046857,0.20582158491015434,0.4732609372586012,0.956856801174581,0.49690950429067016,0.4323845310136676,0.07345974445343018,-0.5942629030905664,-0.4171963054686785,-0.22799711767584085,-0.771372701972723,0.5962989833205938,-0.3012956636957824,0.4360600053332746,-0.8836579686030746,0.014455198775976896,-0.5076642585918307,-0.23725571017712355,-0.6400834186933935,-0.26506645465269685,0.6944174109958112,-0.6700694803148508,0.47406480414792895,0.35846715373918414,-0.9865644504316151,-0.605052606202662,0.7696227487176657,0.8476011278107762,0.9499374297447503,-0.23327078111469746,0.05315393069759011,-0.41377871623262763,-0.5971497590653598,0.34406327083706856,0.3671706533059478,0.14639993757009506,-0.8861142583191395,-0.5733979381620884,-0.4813749152235687,-0.9973243353888392,0.720908222720027,-0.9877596166916192,0.42657472286373377,-0.33586151897907257,-0.049852697644382715,-0.69374307570979,-0.31252172216773033,-0.7345868502743542,0.22712921304628253,-0.2584400135092437,-0.8930361135862768,-0.7025449913926423,-0.4638641895726323,-0.6249829432927072,-0.8262807126156986,-0.41815763991326094,-0.038585342932492495,0.6877907072193921,-0.8598871068097651,-0.5442930101417005,0.20381484227254987,0.8223794191144407,0.8382117305882275,0.22159416507929564,-0.43476109113544226,-0.4634780529886484,0.3658612733706832,-0.6028827773407102,-0.2487460868433118,-0.17115162406116724,0.5217383457347751,-0.36146211344748735,-0.5529858884401619,0.975175678730011,-0.4864483838900924,0.4496050998568535,0.06473349826410413,0.08845501113682985,0.4102313071489334,-0.17255002120509744,0.639368258882314,-0.5326173091307282,-0.6950802858918905,0.8954208553768694,0.8527085306122899,0.7206059750169516,-0.6508001438342035,0.24039251310750842,-0.6496181688271463,-0.7150987447239459,0.4383225520141423,-0.564202303532511,0.828869394492358,0.8313880977220833,-0.8068542047403753,-0.9175174091942608,-0.02228450169786811,-0.8463952918536961,0.5972152203321457,-0.6869097799062729,0.8370088702067733,-0.6895979717373848,-0.48471898678690195,0.2611466497182846,0.7306617530994117,-0.49513868195936084,-0.6407627104781568,-0.2393991886638105,0.8253203281201422,0.560236650519073,0.302766555454582,0.8213006425648928,-0.9141730852425098,-0.5769984382204711,0.424829815980047,0.7776894462294877,0.6290948833338916,0.5745836095884442,-0.35173440584912896,-0.0912541626021266,0.2248745635151863,-0.6002402189187706,0.8472872502170503,0.27293392084538937,0.8366092778742313,-0.8946357909590006,0.10300167510285974,-0.08691456774249673,-0.6713462057523429,-0.9529992770403624,-0.5437581953592598,-0.8678263323381543,0.855271517764777,-0.7659527729265392,0.7574205063283443,0.3265526215545833,-0.44179258961230516,-0.6028938456438482,0.8215257814154029,0.18814503541216254,-0.36132350005209446,-0.6808064449578524,0.4073805087246001,-0.4847078435122967,-0.42972339130938053,0.3456846596673131,0.8998683420941234,-0.777685381937772,0.20603066124022007,0.602969872765243,0.031899798195809126,-0.7947316239587963,0.3828247622586787,0.5226667397655547,-0.6314288354478776,0.30756306927651167,-0.3534212950617075,0.014578165020793676,-0.40475225960835814,-0.16681203991174698,0.8432514984160662,0.1389098111540079,0.6811842638999224,-0.6332820034585893,0.19196831341832876,0.13216819195076823,-0.3253430984914303,0.466136836912483,-0.5169850941747427,0.7199259181506932,0.06946906959638,-0.601584801916033,0.903431807179004,0.983974255155772,-0.5377947730012238,0.31025678338482976,0.857558966614306,-0.7628776729106903,-0.39963096333667636,0.6808129516430199,-0.5436271699145436,0.4926900817081332,0.2731934650801122,0.8471125341020525,0.9409237010404468,0.8962130998261273,-0.12600989593192935,-0.6084861592389643,0.6669882079586387,0.9898332911543548,-0.6207748227752745,-0.5386047596111894,0.27120440592989326,0.837201445363462,0.08622159715741873,0.899469340685755,0.6840489539317787,-0.4954068507067859,0.78358621802181,0.7134615262039006,-0.023237924091517925,-0.821153128053993,-0.7793433810584247,0.7763393088243902,-0.9511363091878593,0.20942504052072763,-0.4802026282995939,0.19668152183294296,0.9362216074950993,0.1424982538446784,-0.1688998118042946,-0.8156890175305307,0.03326321020722389,0.22563071129843593,-0.08142458228394389,0.13283297512680292,-0.9859702703543007,0.814904117025435,0.3876482150517404,0.318099164403975,-0.4193815835751593,0.1376020614989102,0.623554250691086,0.20774603309109807,-0.21120111271739006,0.4275329732336104,0.3549038525670767,0.6159289204515517,-0.433713395614177,-0.7523024347610772,0.6614565495401621,0.24797322042286396,-0.7181312059983611,-0.9462515697814524,0.25314115127548575,-0.9947575475089252,0.312449867837131,0.747557271271944,-0.832201614510268,0.8035357384942472,-0.6217136913910508,-0.3443484357558191,0.8921727957203984,0.7587442547082901,-0.9668295909650624,-0.49701766576617956,-0.8681985223665833,-0.10267740674316883,-0.18639731407165527,0.059494917280972004,-0.9520445442758501,0.8157337461598217,0.6602814374491572,0.19449632382020354,-0.5882182070054114,-0.8669361099600792,0.6422572201117873,0.3088348568417132,0.8913640244863927,0.9455716735683382,-0.6793895033188164,-0.09370259940624237,-0.13694504834711552,0.6685967878438532,-0.015614097006618977,-0.7474637646228075,0.3735138885676861,0.7976043750531971,0.8067904766649008,0.5470933392643929,0.5143661606125534,-0.28192979097366333,0.02307245507836342,-0.7271810779348016,-0.3223749166354537,-0.003619544208049774,0.9007931752130389,0.8306656586937606,-0.9707916458137333,-0.7063457383774221,-0.20431741373613477,0.5422637169249356,0.6134751751087606,-0.520875605288893,0.8797906604595482,-0.8743390999734402,0.5676787397824228,-0.5422915718518198,-0.8270328692160547,-0.8092338787391782,-0.5981484479270875,0.21007391856983304,0.09385512117296457,0.7097576819360256,-0.8302087765187025,-0.578524355776608,0.9995935983024538,-0.7880250993184745,0.7147548128850758,-0.8085645171813667,0.13805094501003623,-0.42280820943415165,-0.7827617102302611,-0.9129088623449206,0.4557540095411241,0.04464536625891924,0.003172584343701601,-0.8352390928193927,-0.44177020248025656,0.7947623180225492,0.34899257868528366,-0.040861770045012236,0.500801223795861,-0.6763513698242605,-0.7134069609455764,0.8093498921953142,-0.17907929234206676,-0.9457591827958822,-0.16999978618696332,0.7875537625513971,-0.48660322185605764,-0.566821395419538,-0.6364803137257695,0.48863051552325487,-0.5223475899547338,-0.5753564168699086,0.2145639513619244,-0.8358560148626566,0.6869048662483692,-0.9794637900777161,-0.33630360243842006,-0.9709628974087536,0.09526918362826109,-0.35550608206540346,0.2812343337573111,0.003775757271796465,-0.7598286573775113,0.3669199477881193,0.9566497579216957,-0.5065166275016963,-0.313472353387624,0.32629291294142604,0.787058814894408,0.023411173839122057,0.5464697876013815,-0.30226664850488305,0.0808789529837668,0.01800828380510211,-0.8301622122526169,-0.07418749248608947,-0.9103471334092319,-0.8338559255935252,-0.7886743019334972,-0.9794664322398603,0.8210868537425995,0.637972102034837,-0.7676294078119099,-0.4868450779467821,0.8428843296132982,-0.6957870610058308,0.45894010784104466,0.3443573643453419,0.7820883123204112,-0.13858550088480115,0.43104834062978625,-0.12166273966431618,-0.5656507005915046,0.3638811130076647,-0.9219012917019427,-0.08182514691725373,-0.10711188055574894,-0.12210863502696157,0.7629187544807792,-0.9681264325045049,0.05561084672808647,0.20703737437725067,0.4315274953842163,-0.19506059447303414,-0.4694962091743946,-0.5078887264244258,0.8752316329628229,-0.00400339812040329,0.5855756676755846,-0.15721141081303358,0.8323111413046718,0.3053787569515407,-0.6271640108898282,-0.6626040125265718,-0.5510291876271367,-0.12879267567768693,-0.9638055516406894,0.42672541784122586,-0.20627070451155305,-0.9906410854309797,0.48113435599952936,-0.4630146394483745,0.8183150584809482,-0.8260697769001126,-0.27712504705414176,-0.14993594493716955,0.26838034112006426,-0.7331609954126179,0.9415360162965953,0.40319617837667465,0.5927036157809198,0.23133358592167497,0.6406525066122413,0.22978074988350272,0.31869004061445594,0.28917655861005187,0.41381002543494105,-0.04603014187887311,0.46712952153757215,0.7178804706782103,0.0397947384044528,-0.34660563291981816,0.7770175794139504,-0.55842354753986,-0.3781923744827509,-0.2925459607504308,0.7111211800947785,-0.569363153539598,-0.6242846818640828,-0.7334800362586975,0.1612895024009049,-0.10491205472499132,-0.32552862213924527,0.9574968353845179,-0.7570914775133133,-0.20355911273509264,-0.6369048072956502,0.6364613501355052,-0.5538430511951447,-0.3254784378223121,-0.5208333083428442,0.7313403412699699,-0.911244613584131,-0.0512350806966424,-0.8554015345871449,-0.7813944313675165,0.31330459052696824,0.04919684957712889,0.2708538919687271,-0.7774002649821341,0.6185021107085049,0.2712424574419856,0.9897448942065239,0.8582355664111674,0.7440114235505462,-0.013032335322350264,-0.5098502575419843,0.8056033654138446,-0.4331898195669055,0.8179314085282385,0.5517688090912998,-0.12067103059962392,0.6013108659535646,-0.5382140427827835,-0.21411097515374422,0.44375421945005655,0.15759591665118933,-0.435253432020545,-0.2935446109622717,0.10196565557271242,0.20203716168180108,-0.34477102803066373,0.7359150662086904,-0.8488383814692497,0.5775150652043521,0.4675943343900144,-0.9723379500210285,-0.9213615376502275,0.07738027581945062,0.9485478946007788,-0.035399436485022306,-0.11106177046895027,-0.6202556751668453,-0.42468241043388844,-0.4867704678326845,-0.5565207656472921,-0.6993464650586247,0.1649999818764627,0.9328618552535772,-0.8230137857608497,-0.5053924415260553,-0.47842540545389056,-0.6063440861180425,-0.6403968427330256,0.695843477267772,-0.8862975910305977,-0.5724249146878719,0.5939915804192424,0.7076455801725388,-0.4138393416069448,0.7513815728016198,0.7477924209088087,0.31318280892446637,0.5014731246046722,0.7645384138450027,0.3285945216193795,-0.2505742167122662,0.7755138641223311,-0.41226837132126093,0.038175500463694334,-0.13329373579472303,0.3497278862632811,0.9454405107535422,-0.28877358604222536,-0.34029312152415514,-0.6861576368100941,-0.9455674514174461,-0.8153873477131128,0.22198617737740278,0.4514834131114185,-0.6511989538557827,0.970955815166235,-0.2290750634856522,0.9413224658928812,0.10690476419404149,0.7524160677567124,-0.11255645705386996,0.8756050514057279,-0.9870794801972806,-0.15980230225250125,-0.60610695136711,0.40431527234613895,-0.6815121006220579,0.8842880823649466,-0.4914036924019456,0.3076131660491228,0.5249482151120901,0.19237624760717154,0.04966648342087865,-0.5031145708635449,-0.4879428381100297,-0.389884555246681,0.6869797445833683,0.039479192811995745,-0.6273089805617929,-0.5138391419313848,0.11883754376322031,0.34810844296589494,-0.2249802597798407,0.5059210555627942,-0.8443865836597979,0.4508903999812901,0.7070542355068028,0.0030530625954270363,-0.3141036545857787,-0.5493244882673025,0.9633183982223272,-0.23849883582443,0.3696555565111339,-0.01926127215847373,-0.2999985651113093,0.44419455574825406,0.7220369689166546,-0.2504737703129649,-0.9963286770507693,0.5737337698228657,0.3104284848086536,-0.6332531599327922,-0.6486855153925717,-0.7964380574412644,-0.2736707800067961,0.040257653687149286,-0.3471073000691831,-0.7384599098004401,-0.4091782448813319,0.37530965683981776,-0.9156849612481892,-0.051838748157024384,-0.7704668333753943,0.6409687870182097,-0.9339795894920826,-0.3415736276656389,-0.3007174748927355,-0.21417178539559245,-0.2402268392033875,0.5603682813234627,-0.3690747646614909,0.2925677844323218,0.2842480083927512,0.6273193932138383,0.38418562011793256,-0.2784819891676307,0.46812373446300626,0.16836735093966126,0.7458498440682888,-0.720733629539609,-0.7353765205480158,0.5353031964041293,0.24366843001917005,-0.09890797501429915,0.4610453248023987,-0.7219184637069702,0.7600301830098033,-0.5414449819363654,-0.4054709877818823,0.27289453241974115,0.5682236035354435,0.7708158884197474,-0.5102278841659427,0.35373770585283637,0.3061294718645513,-0.03105367301031947,0.72142478171736,-0.5158189740031958,-0.5891867522150278,-0.9560974999330938,0.8548035933636129,-0.12183061242103577,-0.5334777683019638,0.6542251706123352,-0.21685646520927548,-0.8940240773372352,0.6270243623293936,0.30665638763457537,0.1653445977717638,0.2779844459146261,-0.6217590109445155,-0.05047396011650562,0.5186243243515491,0.3138130442239344,-0.9225880261510611,-0.2957098144106567,0.45421849796548486,0.221901033539325,0.11201908299699426,0.7035280507989228,-0.3605197719298303,0.24688131595030427,0.30106317391619086,0.6598921995609999,0.98153096716851,0.026137715205550194,-0.4995810240507126,0.6555276615545154,0.17849796265363693,0.28577624959871173,-0.7580448621883988,0.5337235508486629,-0.9328348296694458,-0.2891349489800632,0.9236359186470509,-0.5909389066509902,-0.8526918794959784,-0.523263783659786,0.42371232714504004,0.23738679010421038,0.33415670739486814,0.9529430116526783,-0.2266719900071621,-0.20300107775256038,-0.41647822642698884,0.6771366582252085,0.5866985083557665,0.4189978698268533,0.7303069680929184,-0.18923544278368354,-0.9727429747581482,-0.42451575910672545,0.5140979285351932,0.5279577230103314,0.06432235101237893,-0.07536470983177423,-0.19312078831717372,-0.5835496624931693,0.44134242180734873,-0.9818206736817956,0.4861105536110699,0.8377683525905013,0.45480527309700847,-0.598165936768055,-0.44312172196805477,-0.508218024391681,-0.04830752406269312,-0.246861491817981,0.9657390946522355,-0.20063281944021583,-0.3246841197833419,0.5704004541039467,0.4980791313573718,-0.12303095031529665,0.6909296233206987,0.7003184775821865,0.7105937721207738,-0.2986615113914013,0.2120329411700368,0.5574957174248993,0.23326699063181877,0.08030252298340201,0.48329422529786825,-0.3330433936789632,-0.19898412004113197,0.7780525544658303,-0.586789729539305,0.3867801269516349,0.7518535032868385,0.8055141787044704,0.018808643333613873,0.6675741914659739,-0.14145508827641606,0.5917219826951623,-0.4762677769176662,-0.1493563363328576,-0.49857008922845125,-0.11291133612394333,-0.17538398411124945,-0.8371940664947033,-0.3242041105404496,-0.8665559934452176,0.27774434443563223,-0.888521890155971,-0.48860688088461757,-0.1708210571669042,0.5921284770593047,0.2569944867864251,0.3031455581076443,-0.9076305711641908,0.30847549671307206,-0.06919947359710932,-0.7200684295967221,-0.6784486640244722,-0.33477206667885184,-0.19201477337628603,0.8352077002637088,-0.7324955267831683,0.019954971503466368,-0.29792232578620315,0.5247851810418069,-0.23116663517430425,0.6914157457649708,-0.7477723173797131,-0.21310346899554133,-0.30761472694575787,0.3934657615609467,0.7138346936553717,-0.6419697720557451,-0.4809143180027604,0.5118555752560496,-0.08322326559573412,-0.5399028230458498,-0.6080728960223496,-0.6941464645788074,-0.46779614547267556,0.49027444049715996,-0.13961796322837472,0.7580636376515031,-0.21261107781901956,0.9996143341995776,-0.07332000508904457,0.8221588768064976,-0.0073231239803135395,0.5076803979463875,-0.8891385113820434,-0.6394447786733508,-0.8297659009695053,-0.2557916035875678,0.3403902272693813,-0.2512854668311775,-0.9717955002561212,0.5674857893027365,0.14500134391710162,0.4555488293990493,0.8491412452422082,-0.9239305425435305,0.27649999037384987,-0.20143846794962883,-0.3768682284280658,0.21577927144244313,-0.6999225816689432,0.39159419713541865,-0.17203470272943377,-0.6825282578356564,0.8349013859406114,0.9515716033056378,-0.06647143047302961,0.4994470183737576,0.6043107709847391,-0.3513383371755481,-0.8378921407274902,-0.039564216043800116,-0.3093057391233742,-0.16698230523616076,0.6079943282529712,0.4886720273643732,0.06853271834552288,0.06930539291352034,-0.9949289560317993,-0.4380188169889152,0.3649125462397933,0.1548064942471683,0.9075291552580893,0.5380939501337707,0.08737634867429733,-0.3888730420731008,-0.20441342098638415,-0.9141576285474002,-0.14546066522598267,-0.36806212505325675,0.48464962746948004,-0.27820076141506433,0.07144223945215344,-0.8481750464998186,0.8423924497328699,-0.9181970492936671,0.9614522429183125,0.9996815067715943,-0.4211518242955208,-0.057050414849072695,-0.14408430783078074,-0.9137817439623177,-0.491621816996485,0.8854350904002786,0.02055965131148696,-0.36791266733780503,0.054087577387690544,0.11685563204810023,0.8841999568976462,-0.9835272370837629,0.08922323537990451,-0.3756481008604169,0.8590571344830096,0.6604596432298422,-0.7407943969592452,-0.2936111753806472,-0.04356722626835108,0.5622684024274349,-0.8152942601591349,-0.7169473771937191,-0.1642658761702478,-0.27365971682593226,0.7137092738412321,0.7067173598334193,-0.883116576820612,0.3208331768400967,-0.344144593924284,0.8730090702883899,0.04382979962974787,-0.2591808158904314,0.17745607858523726,0.7344390451908112,-0.7695685708895326,-0.5900846282020211,-0.551331905182451,0.689994081389159,-0.37541814474388957,0.7719315602444112,-0.8779772641137242,-0.18052889639511704,-0.5422523929737508,0.6570166954770684,0.02206250699236989,0.7341347727924585,0.2457205760292709,-0.06017462909221649,-0.01793990610167384,-0.8282014890573919,-0.5493825534358621,-0.09548615664243698,0.7516839597374201,-0.8366519901901484,-0.0030606789514422417,0.451204938814044,0.34789371443912387,-0.7325944863259792,0.9777541998773813,-0.11588971363380551,0.7947832071222365,0.32088751485571265,0.04665733268484473,-0.8192780511453748,0.00014272332191467285,0.6937250178307295,0.4320946102961898,-0.9741278616711497,0.33188673527911305,0.6263576885685325,0.30631947983056307,-0.5086492830887437,-0.10145719535648823,-0.5908815027214587,-0.9351525064557791,0.9208538271486759,0.015481813810765743,-0.7779758186079562,0.8028744142502546,-0.21998850023373961,-0.3601567610166967,-0.00471463380381465,-0.17914017522707582,0.4986088927835226,0.08566343318670988,0.4666041689924896,0.29617137648165226,0.7492209700867534,-0.5172473606653512,-0.07480129553005099,-0.1632734970189631,0.06408070959150791,0.20908748311921954,-0.7503804150037467,-0.9076250484213233,-0.7991842785850167,-0.3003511275164783,0.9884695555083454,-0.4750624909065664,0.3195149404928088,-0.9947476889938116,0.20922576589509845,0.6639898670837283,-0.07321564294397831,0.24148659594357014,-0.42801656061783433,0.8201628257520497,0.473041461315006,0.11448670784011483,-0.16612454364076257,0.6701869261451066,-0.717864824924618,0.46042959252372384,-0.2332737692631781,0.7212698282673955,-0.5561371422372758,-0.6189268017187715,0.90297627216205,-0.05941232154145837,-0.8375197793357074,0.01121903257444501,0.4327256390824914,-0.9941872581839561,-0.4461805736646056,0.04696959350258112,-0.43253628397360444,-0.41163145937025547,-0.8267599521204829,0.1337721231393516,-0.1488352040760219,-0.5933742066845298,0.7925653401762247,0.4808936291374266,0.663856134749949,-0.32933883322402835,-0.430876103695482,-0.6288082334212959,0.6202433565631509,0.7341400096192956,0.014553722459822893,-0.1849895315244794,0.3795008175075054,-0.21107460651546717,-0.4920168682001531,0.8469837596639991,-0.7075231117196381,0.3367774775251746,-0.8194985687732697,0.18986420147120953,0.38632342079654336,-0.4044148805551231,0.31166187627241015,0.4905103505589068,-0.20763032790273428,-0.1141058374196291,0.35312628420069814,-0.29243029467761517,0.6056237956508994,0.4633887461386621,-0.5674008266068995,-0.6785684563219547,0.16701017459854484,-0.23258511908352375,-0.08079976076260209,0.5296385935507715,-0.3530093552544713,0.09065014077350497,0.6913336776196957,-0.8313337811268866,0.19442946882918477,-0.614334377925843,-0.9271788108162582,-0.5653626481071115,0.7488228124566376,-0.07997667463496327,-0.8868636614643037,-0.6047122832387686,-0.9905181769281626,-0.7851264011114836,0.9487617067061365,0.34941074810922146,0.06312301056459546,0.770611104555428,0.19963742420077324,-0.6831173761747777,0.8742425148375332,-0.9526449777185917,-0.8950095889158547,-0.07032084558159113,-0.05903134401887655,-0.897511234972626,0.20462042931467295,0.10799961490556598,0.31210822192952037,0.24784296983852983,0.5332607161253691,0.5144109213724732,0.23749869968742132,-0.07350083580240607,0.10134421475231647,-0.6685693706385791,-0.8078686515800655,-0.8766210172325373,-0.8148631555959582,0.7881419849582016,0.01535459328442812,0.16508035687729716,0.28201149497181177,-0.5370628880336881,-0.26537835597991943,0.6290531032718718,-0.4132321234792471,0.4235293543897569,-0.025608951225876808,0.9651078102178872,0.6717593995854259,0.9653643481433392,-0.06020530825480819,-0.04253803892061114,-0.08347878139466047,-0.2100621652789414,-0.7884100051596761,-0.6056557106785476,0.8330871630460024,-0.12142602447420359,-0.9428510889410973,-0.23056304501369596,-0.5014940397813916,0.6574790398590267,-0.741999123711139,0.6099578882567585,-0.8448177771642804,-0.10546916676685214,0.6532598570920527,0.19238244043663144,0.43926578341051936,0.9788962663151324,-0.2629742845892906,0.820367899723351,-0.7310931840911508,-0.7225138545036316,0.2751372251659632,0.6821203608997166,0.6177415940910578,0.8627739548683167,-0.2630947292782366,-0.5772277875803411,-0.4025097875855863,0.2429625540971756,0.3563106609508395,0.3517132163979113,-0.5708349258638918,-0.20349882263690233,-0.9599270564503968,-0.5962613341398537,0.7730265804566443,-0.4030742961913347,0.7235420406796038,-0.36927488073706627,-0.13182011805474758,0.9598572785034776,0.2293581054545939,-0.07318809535354376,-0.5020319391041994,0.023343240842223167,0.23419516626745462,0.671317262109369,-0.11730119260028005,-0.9310949337668717,-0.5357558410614729,0.05443221377208829,-0.1749654095619917,0.16437892569229007,0.1507274266332388,-0.8430991130881011,0.3736084382981062,0.663319397252053,0.5285078193992376,-0.5427631260827184,-0.8321052491664886,0.4915959946811199,-0.13071086164563894,0.1482805055566132,0.40114880073815584,-0.2471950575709343,-0.8931628945283592,-0.34516248013824224,-0.7947324179112911,0.9838105384260416,-0.08009758498519659,0.25747363874688745,0.8919537584297359,-0.12693187221884727,0.10858622984960675,0.9653797182254493,0.6162818428128958,-0.24138491321355104,0.48759559309110045,0.05724960286170244,0.9633016614243388,-0.47386536793783307,0.19530893443152308,0.31547429133206606,0.7682533119805157,-0.19368764804676175,0.7626659795641899,0.5175558771006763,0.03746491437777877,-0.025631246622651815,-0.284612821880728,-0.12811929220333695,0.041643358301371336,0.3090179702267051,0.22388180438429117,-0.8638792661949992,0.8934497563168406,0.6531362058594823,0.9288030210882425,-0.060878371354192495,0.10588094452396035,0.8426215322688222,0.5320398355834186,0.5606958707794547,0.7108687250874937,-0.2350405235774815,-0.4615115006454289,-0.48895479971542954,0.951488166116178,0.1406380468979478,-0.5082452590577304,-0.9643104840070009,0.750129665248096,-0.7185093965381384,-0.45833800127729774,0.7344557740725577,-0.1015823814086616,-0.7857606308534741,0.5206901398487389,0.1534312078729272,-0.007198551669716835,0.20781671861186624,0.7509157378226519,-0.4383041299879551,-0.2581629524938762,0.07629239466041327,-0.12223487766459584,-0.03707144083455205,-0.13330949004739523,0.8561875745654106,0.2876448421739042,-0.3908269531093538,0.607068866956979,-0.37459442345425487,-0.842587688472122,-0.3287173598073423,0.8225705018267035,-0.2881193249486387,0.3618206330575049,0.02349854027852416,-0.4285621331073344,0.48220438649877906,0.19796406710520387,0.2728033550083637,0.9152483628131449,-0.7735813427716494,-0.2345830095000565,-0.04982157563790679,0.6263641100376844,-0.3797308183275163,0.6388118276372552,0.8002982665784657,-0.5638583730906248,0.6646996727213264,0.42271450255066156,0.34405460208654404,0.047796839848160744,0.12140833679586649,-0.2627760488539934,0.9238771516829729,0.044697567354887724,-0.012237262446433306,0.03836930496618152,0.43864794773980975,-0.934403310995549,-0.6719462764449418,0.24293925194069743,0.631312822457403,0.9186271438375115,-0.05446746340021491,0.8899705596268177,0.008730199187994003,0.12073155026882887,0.6040592519566417,0.9529101704247296,-0.24821012513712049,-0.42879103869199753,0.6200833921320736,0.982344810385257,0.0663022119551897,0.9341424093581736,-0.08593789720907807,0.9208977492526174,0.9849064592272043,0.18847149843350053,-0.8650398440659046,-0.35465121222659945,0.48903564596548676,-0.06056710984557867,0.48888305854052305,0.48076058691367507,-0.9579483731649816,-0.15021256310865283,0.9215052262879908,0.8230582550168037,-0.8550943825393915,-0.8114385474473238,0.7423693859018385,0.042298635467886925,0.12037598434835672,0.006964518688619137,0.5556905968114734,-0.6896102665923536,0.1495602410286665,-0.7728343126364052,0.9541566208936274,-0.7090496900491416,0.0524477856233716,-0.5329281291924417,-0.9021270796656609,0.0849040700122714,0.554333882406354,-0.2076355330646038,0.6097542033530772,-0.3188610034994781,-0.919937105383724,0.24705832498148084,-0.2148332898505032,-0.8707245169207454,0.37788390228524804,0.22708904324099422,-0.5990348467603326,-0.8418208961375058,-0.6589576504193246,-0.4740453027188778,0.6030857870355248,0.9030578774400055,-0.6661692801862955,-0.15086869010701776,-0.33414245396852493,0.4299202114343643,0.32866011187434196,0.9175373073667288,-0.2715499843470752,-0.6784565798006952,0.9304898218251765,0.25674661807715893,-0.1955860615707934,0.7088114344514906,0.7267951313406229,-0.6736849928274751,0.47396411560475826,0.2043369491584599,0.5451185023412108,-0.8258012332953513,0.2872869148850441,0.020421231165528297,-0.27787770377472043,-0.7753566768951714,-0.8663535616360605,-0.5335350525565445,-0.8439289717935026,0.25981808407232165,0.022048728074878454,-0.6217976161278784,0.7166701299138367,-0.03308345843106508,0.09587263129651546,0.9991211318410933,0.856836115475744,0.6677597826346755,0.8718935279175639,0.16228734562173486,0.3619554224424064,0.9703124761581421,-0.20093657029792666,0.5745414197444916,-0.4430697816424072,-0.47267209738492966,0.30772522557526827,-0.6371761481277645,-0.07331109698861837,-0.9966492028906941,-0.9268145994283259,-0.9824696644209325,0.34976860089227557,0.3636054191738367,0.8707509264349937,0.175104224588722,0.8235160266049206,-0.6314244596287608,-0.3700953060761094,-0.9937622910365462,0.7804895061999559,0.9366879821754992,-0.34102477319538593,-0.7483871523290873,-0.3334179986268282,0.914847198408097,-0.48222632287070155,0.5459836162626743,0.27934353332966566,-0.028595557902008295,0.6786690740846097,-0.16000370075926185,0.1609847261570394,-0.9325688872486353,0.7768237194977701,0.8112534829415381,-0.3640347379259765,0.17707386147230864,-0.22476377012208104,-0.7413016515783966,-0.908918172121048,0.20149508677423,0.6015580124221742,0.8132684105075896,-0.9827532391063869,0.8451364715583622,0.047160645481199026,0.8926431001164019,0.526025659404695,-0.24476352147758007,-0.8561064680106938,-0.6605598903261125,0.6475493060424924,-0.3186847078613937,-0.0022669536992907524,-0.899723063223064,-0.2203151471912861,-0.21133895218372345,-0.9237114856950939,-0.6930623175576329,0.18012818694114685,0.6783497827127576,0.05610163230448961,0.050497344229370356,-0.9902393231168389,-0.04371686885133386,-0.09920606203377247,0.0924171106889844,-0.5225845035165548,-0.16141889663413167,-0.13568088365718722,0.6672715558670461,-0.05883464775979519,-0.2892915275879204,0.5380373490042984,-0.10909928986802697,-0.4264732380397618,-0.6652212282642722,-0.7118291994556785,0.40052462089806795,0.24046391202136874,0.6589362225495279,0.6997237275354564,0.08226852538064122,0.6725263316184282,0.3564064702950418,-0.8660058369860053,0.38818320678547025,0.6400050125084817,-0.27237021131440997,-0.31182477343827486,0.08745905058458447,-0.7239066427573562,-0.004284712020307779,-0.2312143468298018,-0.8792107049375772,0.03352560102939606,-0.9689231906086206,-0.5088317203335464,0.7150428337045014,-0.6781828836537898,0.0555350910872221,0.16190541023388505,-0.3894682414829731,0.9200062067247927,-0.1985856811515987,0.3664032178930938,-0.326808113604784,0.5957156079821289,-0.24159678677096963,-0.030990727711468935,0.4399049743078649,-0.6571094705723226,0.2858258248306811,0.4588374444283545,-0.9469443545676768,0.0768266785889864,-0.727313672658056,-0.9378617098554969,-0.8654757384210825,-0.9406888941302896,-0.4793798546306789,-0.16070482740178704,-0.5994458384811878,-0.15607556467875838,-0.2165681328624487,-0.07974089356139302,-0.23045448260381818,-0.15634304657578468,-0.018893166445195675,-0.7260765861719847,0.42722491826862097,-0.909441139549017,-0.6555135450325906,0.08668989175930619,0.7029829495586455,-0.21902875695377588,0.5704463454894722,-0.05913924193009734,0.3415629807859659,-0.8802348300814629,0.201966461725533,-0.5977267860434949,-0.7852720036171377,-0.4180011209100485,0.7790882796980441,-0.9652052228339016,0.864356264937669,-0.34952342649921775,0.004697461146861315,-0.699078269302845,0.9830050668679178,-0.6295476872473955,-0.19349521398544312,-0.5285996375605464,0.45087788067758083,-0.12233309913426638,-0.42119152238592505,0.9517826610244811,-0.8725316864438355,0.2612032969482243,0.4659707238897681,0.5703257545828819,-0.6050930428318679,-0.2834112481214106,0.9078521751798689,-0.9439742937684059,-0.7876442070119083,0.08873943798244,0.2927799350582063,-0.8001181012950838,0.8037997200153768,0.005545928608626127,-0.2803204180672765,0.4284147787839174,0.12384176161140203,0.9447555025108159,-0.33984755352139473,-0.04775985283777118,0.414676820859313,-0.9641282511875033,-0.20761993061751127,0.03581632021814585,0.2163945371285081,0.535877188667655,-0.14541441993787885,-0.8329587173648179,-0.33063675183802843,-0.5037381774745882,0.14042439870536327,0.3459976711310446,0.26799190044403076,0.04692113911733031,-0.2714609708636999,0.6559885740280151,0.973378011956811,0.8406847114674747,-0.7966458313167095,0.8009206303395331,0.7858874099329114,0.7281222688034177,0.8594593545421958,0.8093411410227418,0.8443076540715992,0.9347850624471903,-0.9905386106111109,-0.3806886086240411,-0.3679164722561836,0.8390848841518164,-0.4328841157257557,0.8737276340834796,0.9064806960523129,0.03277948126196861,0.77621587831527,0.14778865175321698,0.022948413621634245,-0.7230192623101175,-0.7563686519861221,0.5149711114354432,0.511945397593081,-0.9660177151672542,-0.790346669498831,0.5490207220427692,-0.24309912184253335,-0.832779923453927,-0.43544182600453496,0.17980380076915026,-0.39189879316836596,0.19268447533249855,0.13833238603547215,0.8867977862246335,0.19218570180237293,0.8463897025212646,-0.7350177667103708,-0.41510811587795615,-0.49122452503070235,-0.5281003289856017,0.5330333919264376,0.8270013029687107,-0.39407592033967376,-0.48449515039101243,-0.862841091118753,0.6980163687840104,-0.7614850420504808,0.7819147291593254,-0.8769669821485877,-0.5594784379936755,0.0996872573159635,-0.5577553855255246,0.8731139255687594,0.31980925099924207,-0.6204012059606612,-0.35395608516409993,0.06967727188020945,0.7291896441020072,-0.3641913654282689,-0.11042026011273265,0.41529176011681557,0.16001495998352766,-0.4296413860283792,-0.2197262546978891,0.9804079462774098,0.917263044975698,-0.9290002435445786,0.5772384097799659,0.08284529950469732,0.8239118652418256,0.20699259545654058,0.06750367814674973,-0.4212301718071103,-0.21711223851889372,-0.39671922428533435,0.5704889367334545,-0.991955189500004,0.7707272805273533,-0.16411597235128284,0.8137487513013184,-0.4220662876032293,0.13544577546417713,0.6269997679628432,0.5301169822923839,-0.650325053371489,-0.363271321170032,0.02080171601846814,-0.9772973582148552,0.3466189205646515,-0.7800565208308399,0.8740226128138602,0.9297527787275612,0.35590972751379013,0.32196694426238537,-0.9534431751817465,0.18799687642604113,-0.6785319251939654,-0.16917977994307876,0.25673024356365204,-0.4747137972153723,-0.25446230079978704,-0.9040909255854785,0.45296898391097784,0.8042538687586784,0.029505383223295212,-0.7320296070538461,-0.9696974623948336,-0.8745861109346151,-0.4007912171073258,-0.4100052500143647,-0.899682420771569,-0.7431206577457488,0.6908361748792231,0.40212405379861593,0.9080162704922259,-0.33420188864693046,-0.38230055337771773,-0.3521109940484166,-0.20548238465562463,-0.4757076050154865,0.476550598628819,-0.9592732065357268,-0.30473026307299733,-0.1462479461915791,-0.9202344981022179,0.9222525539807975,0.68891571322456,0.8259208207018673,0.38968709437176585,-0.23359935265034437,0.3354030423797667,0.5466831522062421,-0.3883386701345444,-0.22270527901127934,0.06436031637713313,0.2754739420488477,-0.8800172246992588,-0.7531375116668642,0.7889394173398614,-0.15957669215276837,0.6358492509461939,0.6907156738452613,-0.4993146560154855,0.6865218495950103,0.9090735004283488,-0.923181870020926,-0.03265257319435477,-0.6689790491946042,0.75416578957811,0.7620323966257274,-0.41385104414075613,0.760690878611058,-0.6865732688456774,-0.9221188998781145,0.06583088357001543,-0.6620689262636006,0.12113142525777221,-0.4915498262271285,-0.5710226139053702,-0.9232560559175909,-0.3910122951492667,0.7196281515061855,0.9551252298988402,0.4306908785365522,0.8165530203841627,-0.08605373604223132,0.6239862143993378,-0.7570577347651124,0.9016972612589598,0.3845050106756389,0.6765926978550851,0.6215727706439793,-0.03958120243623853,0.3126441352069378,0.9740891237743199,0.9379785638302565,-0.6953796902671456,0.742486163508147,-0.3397272531874478,0.6039103236980736,-0.5706314463168383,-0.8664202531799674,-0.13387712696567178,0.8949413332156837,-0.3902484071440995,-0.8510950854979455,0.19431202672421932,0.9931809934787452,0.4555004294961691,0.5119348554871976,0.8888116083107889,0.978717084042728,-0.8217182899825275,0.07507184287533164,-0.8986512478441,-0.49669230869039893,-0.8142300485633314,-0.16719787055626512,0.688665219116956,0.589446238707751,-0.4337004595436156,0.23258145293220878,-0.9210771690122783,-0.06555205024778843,0.6946462015621364,-0.7929436438716948,-0.13350916653871536,0.017446151468902826,0.5356940976344049,0.8079181709326804,0.2829907424747944,-0.1845451327972114,-0.4600021573714912,-0.044318536296486855,0.2962849149480462,0.8832507971674204,-0.8269373527728021,0.12652272684499621,0.5084489360451698,-0.30587025731801987,0.9735811469145119,0.07427968503907323,0.8041999754495919,-0.31855187052860856,0.47207460133358836,0.7479455801658332,0.2456971718929708,0.7769401432015002,0.6190522145479918,-0.8287643729709089,0.14330556010827422,0.21992994425818324,0.6519282669760287,-0.3499650424346328,-0.2764987279661,0.8717042612843215,-0.3509233221411705,-0.73239527316764,-0.9441434624604881,0.39392612501978874,0.08640499459579587,0.7520130961202085,-0.14898868463933468,0.46351175382733345,-0.2724201832897961,0.49893637001514435,-0.48533800384029746,0.4955114424228668,0.6816645888611674,-0.7706957519985735,-0.9217235706746578,-0.6190579212270677,-0.7741959514096379,0.842165494337678,0.45563496090471745,-0.3563387021422386,-0.9283343791030347,0.9793375004082918,0.9699648222886026,0.29287566943094134,-0.48153232829645276,-0.7417186074890196,0.03670366294682026,0.43548177601769567,-0.5781179624609649,-0.7832363164052367,-0.39784624706953764,0.8285941872745752,0.352366647683084,0.31186734791845083,0.3073566425591707,-0.08172007044777274,0.4020179733633995,0.43270893301814795,0.6166155822575092,-0.4138481398113072,0.04454729752615094,0.8806806658394635,-0.4428772567771375,0.9214365417137742,0.8580848518759012,-0.17730164574459195,-0.17293927259743214,0.8161197840236127,0.4831561432220042,-0.5778283756226301,-0.7645426341332495,-0.2603238457813859,0.6884748823940754,0.007806682493537664,-0.5450156866572797,-0.4585167830809951,-0.2130341548472643,-0.7710412312299013,0.8991602193564177,0.6351922885514796,0.5901471436955035,0.1744125415571034,0.3739952612668276,0.020101171918213367,0.7371675283648074,0.5437319818884134,0.4399896892718971,0.17144754203036427,0.2662337515503168,-0.12014443520456553,-0.09853111067786813,-0.2939917529001832,0.9130995441228151,0.5608586580492556,0.42619076184928417,-0.9750300417654216,-0.8070645541884005,-0.544571899343282,0.6286461614072323,-0.026374013628810644,0.7119067898020148,-0.3266392503865063,-0.6705311019904912,0.8460850180126727,0.7078749765641987,-0.25159160885959864,-0.47821117332205176,-0.0027013872750103474,-0.8669531936757267,0.9381792116910219,-0.9234067783690989,0.09658118477091193,0.3675923543050885,0.9440890094265342,-0.014114003162831068,0.6671804739162326,-0.1296694609336555,0.21217456506565213,-0.008168135304003954,0.224328454118222,0.8220428531058133,0.7520484556443989,0.5652642124332488,-0.08954750234261155,-0.5882918681018054,0.9718843773007393,-0.8196825576014817,0.5663000540807843,0.1331552155315876,0.24228830495849252,-0.5703050871379673,0.6044933386147022,0.881830682978034,-0.010221452452242374,-0.30957189481705427,0.48144376277923584,0.8612818089313805,0.8567887926474214,-0.23986524995416403,0.7303778720088303,-0.5375847294926643,0.7687673550099134,0.42189279245212674,0.4231142643839121,0.5225840243510902,-0.8232299508526921,0.24537975760176778,-0.895156720187515,0.8895511021837592,0.37272032955661416,0.23638426279649138,-0.7892473177053034,-0.007883506827056408,0.02102291351184249,-0.7153520481660962,-0.7896087616682053,-0.36011036531999707,0.3917889609001577,-0.21674906043335795,0.33407659735530615,-0.663001324981451,0.7512296899221838,-0.09187850914895535,0.12371890665963292,-0.47506092488765717,-0.6998727284371853,0.9433620907366276,-0.47134842770174146,-0.9265448269434273,0.33307112473994493,0.24424671567976475,-0.7598177972249687,-0.4236330580897629,0.2849698360078037,-0.10589041002094746,0.691896088887006,0.6427871650084853,-0.6014899588190019,0.3312515430152416,0.21587270172312856,-0.49371561547741294,-0.12774083111435175,-0.019109234679490328,0.840234003495425,-0.3388296007178724,0.772818919736892,-0.09246175875887275,0.11412470834329724,-0.12062895204871893,0.28879730124026537,0.08629157301038504,0.4447114788927138,0.350589394569397,-0.956329292152077,-0.463088549207896,-0.4228039477020502,-0.6087456690147519,-0.9258053759112954,-0.7034081388264894,-0.6363563337363303,-0.20104753784835339,0.5450780894607306,-0.7695728004910052,0.03457799460738897,-0.20093211252242327,0.6076867766678333,-0.03824583487585187,0.47469259332865477,0.4983359230682254,0.893494512885809,-0.9728354099206626,0.2332156291231513,-0.28700118651613593,0.058123583905398846,-0.16774205910041928,0.3104152223095298,-0.21093656308948994,-0.6909574531018734,0.9874454578384757,0.26457090163603425,0.5523165087215602,-0.5189182367175817,-0.9602379002608359,0.5855208686552942,-0.7221951158717275,0.52539003174752,0.0371500663459301,0.24755184864625335,0.13944664085283875,-0.6183265205472708,-0.8496883204206824,-0.21469723619520664,-0.6685775388032198,0.2386264787055552,-0.21281443582847714,0.35380870709195733,-0.05362473474815488,-0.8291294979862869,0.9821806098334491,-0.2789299222640693,-0.3223356190137565,-0.38898511743173003,-0.8461141274310648,-0.7294070119969547,0.5741592948324978,0.7351534883491695,-0.9772748309187591,-0.8245435026474297,-0.7457711426541209,-0.08733966993167996,0.021209327038377523,-0.49026284692808986,-0.09308601962402463,0.6190184904262424,0.12741922959685326,-0.49901225324720144,0.17268778942525387,-0.2755616516806185,0.8537397678010166,-0.9337695189751685,0.2370791044086218,0.9674774245359004,0.32304520159959793,0.0017551276832818985,-0.8307707859203219,-0.37854155292734504,-0.8844795948825777,0.6715711462311447,0.6629229229874909,0.31895812368020415,-0.055703443475067616,-0.37438239762559533,0.10668633366003633,-0.9941064538434148,-0.9794568126089871,0.08037223108112812,-0.4005490611307323,-0.32281341310590506,0.6947384891100228,-0.7850797763094306,-0.44335490418598056,0.6184675777330995,0.6161198010668159,-0.8214341369457543,-0.7835088223218918,-0.7912232666276395,-0.9833938470110297,0.10697828466072679,-0.11982452450320125,0.2743800822645426,0.7766321464441717,-0.21693029254674911,-0.8965032882988453,0.375743490178138,-0.9436704958789051,-0.033299063332378864,-0.19280180847272277,-0.29207615554332733,-0.712644818238914,0.40605372935533524,-0.06777100404724479,0.9946792032569647,0.759419331792742,-0.3752174424007535,-0.5339222610928118,-0.723617609590292,0.3129207151941955,0.9569802084006369,-0.4458261295221746,0.7777443965896964,0.8758243303745985,-0.6520805386826396,-0.16798952594399452,0.2562900851480663,-0.02940870402380824,0.09247361542657018,-0.615385121665895,-0.9070927873253822,-0.5501712937839329,0.825417251791805,-0.08077948540449142,0.41920976573601365,0.3424983830191195,0.16394018661230803,0.7406005058437586,0.8031040439382195,-0.8642196701839566,0.8184925485402346,-0.6859900136478245,-0.10340942163020372,-0.542427393142134,-0.664239858277142,0.337211424484849,-0.7609814880415797,0.6666884804144502,-0.5428264592774212,0.3262654938735068,-0.8053449150174856,0.8983519780449569,0.23621490318328142,0.5194591418839991,0.8782653915695846,-0.14075728552415967,0.5645587048493326,0.4040382392704487,-0.4033149559982121,-0.4673170866444707,-0.171335204038769,0.06953528802841902,0.12395574292168021,-0.07077554985880852,-0.13868076261132956,0.028190311044454575,-0.9301756955683231,-0.11315276147797704,0.37427951768040657,0.8365641264244914,-0.9153533848002553,0.9294597851112485,-0.695740049239248,-0.7969461865723133,0.49688437301665545,-0.3827908392995596,0.03501740703359246,-0.10309614101424813,0.754191919695586,-0.02883515041321516,0.1733332467265427,-0.8688403503037989,-0.3728299345821142,-0.865008776076138,-0.5926394057460129,-0.1510792919434607,0.7961252527311444,-0.31710438476875424,0.8162581264041364,-0.24614766705781221,0.3907639728859067,-0.6482067089527845,-0.28156987950205803,0.44415131444111466,-0.8513820143416524,0.45434789452701807,0.4418346472084522,0.0188019797205925,-0.9143930780701339,0.7242134250700474,0.556220568716526,-0.10061678476631641,0.20498435106128454,0.9834099779836833,-0.48619090532884,0.5870828721672297,0.6317031793296337,-0.9261366347782314,-0.14262970862910151,-0.14968232112005353,-0.3302659369073808,-0.8307097004726529,0.8180224010720849,-0.938609529286623,-0.03249849658459425,-0.8205411015078425,-0.7365951808169484,-0.31644179997965693,0.230361666996032,0.44117882708087564,-0.47251945175230503,-0.028563758824020624,-0.7649224111810327,0.02981182187795639,0.09827535971999168,-0.1756125632673502,0.5569309620186687,-0.3286832394078374,0.44209152227267623,0.6409420780837536,0.3470454467460513,0.5730489417910576,-0.5224826326593757,0.8087698249146342,-0.6804324775002897,0.09649371122941375,0.9020018568262458,0.7637843466363847,0.03437365964055061,-0.1670777229592204,0.7685965648852289,0.5982628343626857,-0.26422446267679334,-0.5463996869511902,0.12296253349632025,-0.36055866349488497,-0.8963958076201379,0.07732898090034723,-0.3522020149976015,0.37323980312794447,-0.7518154555000365,-0.5655742012895644,-0.5949976099655032,0.19261628668755293,-0.16846124781295657,0.10148969199508429,0.08089503180235624,-0.7416577637195587,0.5351807232946157,-0.18109652400016785,0.9719156748615205,-0.30696810223162174,0.9456261484883726,-0.010458522010594606,0.988798139616847,0.88960514171049,0.20973077230155468,-0.9951846986077726,-0.7836261834017932,-0.9683476719073951,-0.4191216775216162,0.3344356846064329,0.8907017619349062,0.6903841174207628,-0.06935282284393907,-0.983936857432127,0.6243016649968922,-0.9254826731048524,0.7314440519548953,0.3779713260009885,0.6959381187334657,-0.9613018948584795,-0.8669485161080956,0.8180535538122058,0.4921109350398183,-0.6791340704075992,-0.4436069610528648,-0.948071314021945,-0.33519149059429765,-0.9900307357311249,0.35806435579434037,-0.6784996213391423,0.6515432242304087,-0.8198751006275415,0.49280348466709256,0.6507320562377572,0.162505897693336,0.668221683241427,0.9725355114787817,-0.5959468334913254,0.8974621677771211,0.7962261051870883,-0.8327080272138119,0.6815963443368673,-0.6581522687338293,-0.38454726291820407,-0.18108222261071205,-0.38625342631712556,0.9141516373492777,-0.7138672336004674,0.9261521194130182,-0.9041359755210578,-0.50979208573699,-0.9640944148413837,-0.9140010150149465,0.3626526575535536,-0.12697836756706238,0.9673065692186356,-0.7895602742210031,0.7983302194625139,0.8515807427465916,0.4285492147319019,-0.1583799635991454,-0.33717599930241704,-0.9170262506231666,0.07975018490105867,-0.8201011442579329,0.35080397222191095,0.6317350529134274,0.3946523191407323,0.00719030573964119,0.32883325265720487,0.12781579559668899,0.22933599585667253,-0.5523809306323528,0.07667722878977656,0.9381844829767942,-0.14880944974720478,-0.5094789136201143,0.18557580187916756,-0.004628933500498533,-0.3223998313769698,-0.4372703544795513,-0.8135888585820794,0.9983753985725343,-0.47245516907423735,-0.06021973164752126,-0.341588765848428,-0.8203709577210248,0.841744520701468,0.41747623635455966,0.2443895973265171,0.9192105396650732,-0.9875256777741015,-0.4230232094414532,-0.4665840044617653,-0.22056682454422116,0.24790735309943557,0.8713949527591467,-0.871799360960722,-0.8422676925547421,0.5073259812779725,-0.383548547513783,0.03778868727385998,-0.46422228775918484,-0.6644174507819116,-0.07002501050010324,-0.8853216064162552,-0.11234560050070286,-0.3499207906424999,-0.7367359469644725,0.3888258896768093,-0.7807656521908939,-0.669933844357729,-0.7080170158296824,-0.49247037013992667,0.023744482081383467,-0.5923645705915987,-0.23555248975753784,-0.8415165580809116,-0.2792990538291633,-0.9455210962332785,-0.20441005378961563,-0.18281328724697232,0.7603907804004848,0.15461732912808657,-0.3175101182423532,-0.16131741786375642,0.3833509339019656,0.8521539513021708,0.4000797471962869,0.8691291543655097,-0.2702353917993605,-0.5851783980615437,-0.7252936437726021,0.6083860979415476,0.8217975189909339,-0.5410057362169027,-0.5362776503898203,-0.9973630923777819,0.565237850882113,0.11538354447111487,-0.7293823901563883,-0.9332149615511298,0.31710984371602535,0.36133203841745853,-0.08979441039264202,0.5501465168781579,0.32835787162184715,0.19483802653849125,-0.6165979192592204,0.6171578383073211,-0.2809069789946079,0.37740095006302,0.9921702886931598,0.442572764120996,0.6005408195778728,0.18672388140112162,-0.06383796036243439,0.2597933020442724,-0.06932512717321515,-0.8053484107367694,0.9224324426613748,0.8578748442232609,-0.25379169872030616,0.6375417853705585,0.8173751686699688,0.4517690655775368,0.8170808786526322,0.6246312591247261,-0.9328960604034364,0.26965638576075435,-0.8155451980419457,0.0923864496871829,-0.7443428789265454,0.8213061434216797,-0.028893967624753714,0.11258644470945,0.20423736004158854,0.9306308357045054,-0.1153285545296967,0.46980703715234995,0.8861086461693048,0.5895249960012734,0.9723428655415773,-0.7377783991396427,-0.5978571139276028,0.8820768413133919,-0.21761961420997977,0.8174046347849071,-0.33265237510204315,0.7529985755681992,0.07566715311259031,-0.1945945257321,-0.8302081068977714,0.9046244956552982,0.7603290542028844,0.15436177188530564,0.6802927791140974,-0.7638998003676534,-0.3367467657662928,0.5880334773100913,-0.9553211773745716,0.8752748584374785,-0.2083580745384097,-0.6059366222470999,0.3311612466350198,0.8613283568993211,0.7417964451014996,0.6673349966295063,-0.8010055529884994,-0.8656757944263518,0.8542544385418296,-0.32431059749796987,0.7921397406607866,-0.6012983429245651,-0.9982696953229606,-0.19066023686900735,-0.9625188088975847,0.0786312036216259,-0.2592975595034659,-0.42590514151379466,-0.8723466582596302,-0.3020712393335998,0.25817626202479005,0.15494905458763242,-0.849250172264874,-0.11791885178536177,0.5176523942500353,0.6086409501731396,0.8671771651133895,-0.07892164122313261,0.7216606349684298,-0.6076110918074846,-0.134019345510751,-0.5203676363453269,0.39463400887325406,-0.1221507485024631,0.5088830003514886,0.32684372505173087,0.993126246612519,0.17434685723856091,0.8751406311057508,-0.10283549362793565,-0.2236679052002728,-0.947010014206171,0.8317252201959491,-0.5032236631959677,0.43430435517802835,0.8546877461485565,0.5352128562517464,0.026717093773186207,-0.32193551678210497,-0.0811796197667718,0.7084700241684914,0.5969718582928181,-0.4812958426773548,-0.8096205238252878,0.8274455470964313,-0.8357864981517196,0.925048565492034,-0.9084956613369286,0.24879050767049193,-0.3683973094448447,0.5994786256924272,-0.6819405695423484,0.03996221628040075,-0.7832890306599438,0.3166417283937335,-0.6724966452457011,-0.10228796256706119,-0.1524936850182712,0.5001917323097587,-0.9596813973039389,0.28358600148931146,-0.6866214689798653,-0.8499951716512442,0.5410851016640663,0.633657441008836,-0.9101300174370408,0.15367744723334908,0.5266717653721571,-0.9698679125867784,0.21817452693358064,-0.19969126675277948,0.24005033913999796,0.82069804193452,-0.19730960857123137,0.1288992245681584,0.02912951959297061,0.956763677764684,0.8092046142555773,-0.14731709705665708,0.7860644971951842,0.31837745383381844,0.18433177564293146,-0.35901868576183915,0.3240081216208637,0.9046865105628967,-0.5778237171471119,-0.7820600224658847,0.20864105224609375,0.25364315090700984,0.31358198821544647,-0.9251856696791947,-0.32383595826104283,0.40961669431999326,0.5687410300597548,-0.14343186793848872,0.175471018999815,0.8737101517617702,-0.9968744330108166,0.9696204517967999,-0.12145119160413742,-0.4642703626304865,-0.4901837734505534,-0.8598326249048114,0.6414159703999758,-0.36731891613453627,-0.40159844886511564,0.7634934973903,0.5956335067749023,-0.7537171542644501,0.7792683271691203,-0.2626071646809578,-0.20350689813494682,-0.07709656422957778,0.9734262158162892,0.6964999749325216,-0.6924573015421629,-0.3838343224488199,-0.9975409698672593,-0.3603756036609411,-0.018862996250391006,-0.33269810816273093,-0.22330949688330293,-0.6720073814503849,0.01299503119662404,0.7327471524477005,-0.386084855068475,-0.457747008651495,-0.03787978691980243,0.6666846089065075,-0.25049597723409534,0.05689174169674516,0.18216042639687657,0.6493445453234017,0.5533768152818084,-0.57764912256971,-0.7432836112566292,0.4754109214991331,0.9256819286383688,0.35680346889421344,-0.43812333373352885,-0.9853347707539797,0.805951677262783,0.1957221794873476,-0.7940457784570754,-0.17525656195357442,0.7848397181369364,-0.337669569067657,-0.5288364384323359,-0.17136993119493127,-0.28306390019133687,0.6418329859152436,-0.9669100069440901,0.694949930999428,-0.6964459056034684,0.5454002167098224,0.9678773297928274,0.5308227562345564,-0.17169933998957276,-0.9005314004607499,-0.15257442835718393,-0.809439011849463,-0.1904415530152619,-0.3902640286833048,0.30455186450853944,0.8342224801890552,0.6087949792854488,-0.24126772675663233,0.5407378296367824,0.49514908576384187,-0.6383370547555387,0.041142049711197615,-0.9968554531224072,-0.11734357057139277,-0.6524883680976927,0.9480660245753825,-0.05993024446070194,0.555996609851718,0.6833206107839942,-0.5659172763116658,0.3964965557679534,-0.7023632163181901,0.6650109463371336,-0.27824770007282495,0.26739089423790574,-0.9563826830126345,-0.39110669773072004,0.4886541669256985,-0.7899827188812196,0.7580927959643304,-0.7558330940082669,-0.7406865209341049,-0.1356260352768004,0.6771242902614176,0.8159062494523823,0.4929919047281146,-0.6759082833305001,-0.7489259149879217,-0.8549341983161867,-0.958366007078439,-0.780018791090697,-0.11135741462931037,0.9121108120307326,-0.13546021049842238,0.14858383359387517,0.5338932750746608,-0.32104763807728887,-0.589038850273937,-0.24236524617299438,0.22424944676458836,0.07996630249544978,0.5390584012493491,-0.6523694414645433,0.14867148036137223,-0.8649070248939097,0.009521883446723223,0.029330724850296974,0.9519424652680755,-0.8590565025806427,-0.5829282100312412,-0.12286712229251862,-0.3413136247545481,-0.4427020917646587,-0.558659388218075,0.10230704443529248,-0.3054621098563075,0.2598176533356309,-0.9031197782605886,0.2573607317171991,0.41460283240303397,0.6572293071076274,0.5986483008600771,-0.30690985079854727,-0.20739876478910446,-0.03153920592740178,0.46798846824094653,0.7534838812425733,-0.44943974167108536,-0.6303393337875605,-0.19725045561790466,-0.8367572710849345,0.5776676316745579,0.5959390187636018,0.6154754087328911,0.7572838617488742,0.6190990223549306,0.6794618694111705,-0.06233499152585864,-0.16465163975954056,-0.7536112521775067,-0.3693223772570491,0.7107676155865192,-0.20570789650082588,-0.9589923997409642,0.13017145218327641,-0.4113743267953396,0.4555724775418639,0.6051920671015978,0.7015137341804802,-0.14532075636088848,-0.9343385337851942,0.8183097038418055,0.025640571024268866,0.6234317701309919,0.4423929024487734,-0.7737872540019453,-0.021689115092158318,0.880689047742635,-0.8977926014922559,-0.609809662681073,0.1821397733874619,-0.4179254798218608,-0.9714943962171674,-0.5486337332986295,0.8741486724466085,-0.34099429147318006,0.010034347884356976,-0.5633082226850092,-0.848663262091577,0.596151031088084,-0.5073354714550078,-0.21802629297599196,0.9115735981613398,-0.4056287524290383,-0.9369470016099513,-0.672726730350405,-0.41066829999908805,-0.8208802929148078,0.04111025668680668,-0.36865420546382666,-0.5945560848340392,-0.6060481923632324,0.21965771820396185,-0.08157222950831056,0.42449104879051447,0.4933618400245905,-0.5310423048213124,0.24582070298492908,0.43042477359995246,-0.9600705150514841,-0.9127840078435838,0.5612954315729439,-0.7373643787577748,-0.9378005564212799,-0.26761094899848104,-0.031640452332794666,-0.6642983504571021,-0.6447475464083254,0.7834741896949708,-0.9174863202497363,-0.10567544773221016,0.6470763133838773,-0.02458044793456793,-0.31169618293643,-0.01175040565431118,-0.5015851552598178,-0.6303473836742342,0.5534489541314542,-0.7892774906940758,-0.09308873396366835,-0.8374881781637669,-0.9592257994227111,0.5855462113395333,0.8201184398494661,0.6587064010091126,0.41399313462898135,0.925301356241107,-0.316910351626575,-0.22738429019227624,-0.6457338868640363,-0.79490268509835,0.9035693197511137,0.31680577574297786,-0.11855605617165565,0.12413139455020428,-0.21813486656174064,-0.2584938290528953,0.7596551873721182,-0.13817292172461748,-0.7010902403853834,0.12929237773641944,-0.7035048147663474,0.49684053054079413,-0.37979012820869684,-0.37170422868803144,0.06715011643245816,-0.06568590318784118,-0.8194932583719492,-0.6864813230931759,0.03659882955253124,-0.2749753766693175,0.3772680419497192,0.9248889163136482,-0.33220446249470115,0.5091712386347353,-0.9470162657089531,-0.9331031022593379,0.10162828210741282,0.9314270773902535,0.6733292895369232,0.630257623270154,-0.349411359988153,-0.17035806877538562,-0.8618075801059604,-0.6487117647193372,0.8230126462876797,-0.6749564446508884,0.8784475130960345,-0.40319232968613505,0.5500146797858179,0.3738517723977566,-0.7189132575877011,0.34274243796244264,0.4728860897012055,-0.3227933752350509,0.6525570810772479,0.6245692842639983,-0.8992900084704161,-0.5232469625771046,0.5762803684920073,-0.036768241319805384,-0.660014521330595,0.992738164961338,-0.4056333298794925,-0.4036323856562376,-0.5055074798874557,-0.8088039131835103,0.9956198548898101,0.11682758200913668,-0.9638127880170941,-0.6537657589651644,0.182537448592484,0.8761282674968243,0.030821700114756823,-0.2513462845236063,0.08172004437074065,0.5079320748336613,-0.0048072123900055885,-0.49877539463341236,-0.517400645185262,0.7430512933060527,0.7451743627898395,-0.37190107768401504,-0.6793994666077197,0.3011942710727453,-0.36858589528128505,0.8109517791308463,0.20388393942266703,0.0728558343835175,0.2439054436981678,-0.3677508891560137,-0.42792735947296023,-0.1902537285350263,-0.8700376898050308,-0.7750101834535599,0.8691140585578978,-0.21960763772949576,0.8809174592606723,-0.9753931621089578,-0.6410891329869628,-0.47149000130593777,-0.4474493097513914,-0.6727595156989992,0.04606948560103774,-0.08759733429178596,-0.8100478663109243,-0.39216528413817286,0.27182670775800943,0.8802348086610436,-0.7891763118095696,0.321492338553071,0.8703501028940082,0.33599216025322676,-0.4006843199022114,-0.3647597720846534,-0.9873600895516574,-0.978004353120923,0.7131770341657102,-0.0123362154699862,-0.07903528027236462,0.7084639281965792,0.5313094980083406,-0.141858019400388,0.3416734649799764,-0.2874582358635962,-0.2774683595634997,0.0450485167093575,0.3124698963947594,0.670792018994689,0.2462431830354035,-0.43778919940814376,0.38961653551086783,-0.3495781240053475,-0.012882358860224485,0.9850878724828362,-0.02138272440060973,0.9863132475875318,0.3938212883658707,0.5071308226324618,0.3665972715243697,0.47626612475141883,0.24138489877805114,0.7059055753052235,0.8851287518627942,-0.3990521444939077,0.367600679397583,0.571018761023879,0.4611807521432638,-0.1388011514209211,-0.023633675649762154,0.7557632764801383,0.2342225187458098,-0.3375976951792836,0.9963842527940869,-0.4741403553634882,-0.49554930068552494,0.5259299878962338,0.09291882207617164,0.3489917921833694,0.2824806463904679,-0.2237360142171383,0.8126503974199295,0.05988287925720215,0.2633590050972998,0.5592877925373614,-0.4331194437108934,0.6521858852356672,0.06657353835180402,0.600754878949374,-0.24779625749215484,0.08498704992234707,-0.15370911313220859,0.023682668805122375,0.6610463280230761,-0.4231527061201632,-0.9283650936558843,0.23772125924006104,0.09914963552728295,-0.5862607969902456,-0.04246169235557318,-0.573802528437227,-0.7104383753612638,-0.932383831590414,-0.7478368617594242,0.9191550887189806,0.021546246483922005,-0.6113370470702648,0.7533212481066585,0.1597829875536263,-0.11478263838216662,-0.11913867574185133,-0.17256244271993637,0.13579226844012737,-0.4768664017319679,-0.9028746872209013,0.023090632166713476,0.25516897765919566,-0.08699389919638634,-0.114060222171247,0.18225252348929644,0.016299963928759098,-0.18196374783292413,0.074939273763448,0.8990159379318357,0.11652457853779197,0.3789154849946499,-0.24637552304193377,0.4330367757938802,0.5490109059028327,0.6497289147228003,0.09389007929712534,0.9795834273099899,0.4397331979125738,0.7225842550396919,-0.5139872008003294,-0.06104988232254982,-0.080652407836169,-0.11485499562695622,0.22392630809918046,-0.34478070912882686,0.15274825086817145,-0.8716482808813453,-0.8771870471537113,-0.7428084407001734,-0.9419534802436829,0.33300890494138,0.05935419863089919,0.9970975499600172,0.08054984733462334,0.3903169292025268,0.4925125199370086,-0.03461717674508691,0.6828907616436481,0.36941058514639735,-0.473722867667675,0.34657719917595387,0.24547602562233806,0.3277135076932609,-0.7367247566580772,0.662066001445055,0.365658164024353,-0.2521854192018509,-0.5481967483647168,0.9598841555416584,-0.1160276341252029,-0.23352744616568089,-0.8264116435311735,0.9724681880325079,-0.6787695754319429,-0.5240432233549654,0.09022624837234616,-0.23445059452205896,0.7033829391002655,0.3191996645182371,-0.8628928754478693,0.5237453286536038,0.5447351736947894,-0.5108674219809473,-0.8083024928346276,-0.3787594847381115,-0.7590892082080245,-0.5549444956704974,-0.9341592458076775,0.4558343696407974,-0.45954162161797285,0.5948203597217798,0.00961311487480998,0.7041570036672056,-0.06898915953934193,0.32499588932842016,-0.41576763708144426,-0.43086526170372963,0.13920412305742502,-0.33916175132617354,0.6195246214047074,-0.5912887090817094,-0.34155229618772864,-0.7464318512938917,0.8851475571282208,0.301447493955493,-0.658874623477459,-0.0634127757512033,0.44293199200183153,0.39941381523385644,-0.5181015068665147,-0.06735487887635827,0.010662737302482128,-0.2500215554609895,0.7194540281780064,0.8481431733816862,-0.049299503210932016,-0.24412290938198566,-0.5365666034631431,0.3450293792411685,0.8363464931026101,-0.6138004236854613,-0.20266528613865376,-0.7145562833175063,0.4730344791896641,-0.6339251887984574,-0.5353693421930075,-0.31716552982106805,0.04230086551979184,0.706317360047251,0.601215198636055,-0.31360510969534516,0.9955587321892381,0.03330037463456392,0.810721724294126,-0.3383656293153763,-0.03006160445511341,-0.25722814816981554,-0.41462133219465613,0.6000726982019842,0.4978448711335659,0.2660715151578188,-0.5315192840062082,0.14880285086110234,0.7690992141142488,0.11568128503859043,0.6179042751900852,0.35934331826865673,-0.6225261050276458,-0.22196051012724638,0.15047558629885316,-0.7612367440015078,0.9033103603869677,0.08405011426657438,-0.4192854091525078,0.6668824297375977,-0.8037860738113523,0.3261549915187061,-0.368392463773489,0.5172650255262852,0.931013245601207,-0.6931153382174671,-0.3722449676133692,-0.5951489345170557,0.29573627142235637,0.5637092548422515,0.174858336802572,0.5983566250652075,-0.6187032470479608,-0.3261195267550647,0.9844452389515936,-0.2601168416440487,0.7244966560974717,-0.02224254561588168,-0.1907348413951695,0.4905340252444148,0.9328365628607571,-0.2611045246012509,-0.3706757244654,0.21929081808775663,0.8331821211613715,0.5945816677995026,0.8232028014026582,-0.6497873160988092,0.7379879704676569,0.3846775940619409,0.8144158823415637,-0.2372085927054286,-0.8887877878732979,-0.19620082108303905,0.36078788712620735,-0.7318290127441287,-0.7401813678443432,0.9210748830810189,-0.08753320714458823,0.9088187790475786,-0.7950286641716957,0.7023325264453888,0.06024011177942157,0.8950196877121925,0.924164374358952,0.5953983319923282,0.5457288399338722,-0.6441294709220529,-0.10728304972872138,0.8714993325993419,-0.8797301515005529,0.06820251327008009,-0.7274077176116407,0.29215423902496696,0.5213894112966955,-0.958034714218229,-0.41807512659579515,-0.46023852238431573,0.7549252640455961,0.3818005328066647,-0.31054051546379924,0.04237986821681261,0.016605747863650322,0.8098760824650526,-0.6303527229465544,0.2103777094744146,-0.8132817293517292,0.17049989802762866,-0.5154713490046561,-0.3731134496629238,-0.7129626381210983,0.4324143808335066,-0.26401164662092924,0.0598568650893867,-0.32665886217728257,0.5332823204807937,-0.0617391555570066,0.5662605008110404,0.40501242130994797,-0.3269307753071189,0.881488457787782,0.025163210462778807,0.5079074529930949,0.8067975495941937,0.2299947589635849,0.6041790661402047,0.40373362926766276,0.8908891249448061,0.5841899239458144,0.21142984833568335,-0.12708408711478114,0.8559350883588195,0.33271602680906653,0.4880998651497066,-0.5946844178251922,-0.2611273778602481,-0.6715974025428295,0.9034342635422945,-0.3111502742394805,-0.7096480862237513,0.7755278437398374,0.8194258864969015,0.2540294770151377,-0.940109122544527,-0.0892038899473846,-0.030791989527642727,-0.760355839971453,0.6240634559653699,0.9106174684129655,-0.24293776275590062,0.5055782501585782,-0.7692138003185391,0.7021506023593247,0.484399554785341,-0.8205445627681911,-0.18541327863931656,-0.1195717272348702,-0.036891401279717684,-0.6924837245605886,0.9155481779016554,0.9663204550743103,-0.2999200443737209,-0.5803616256453097,-0.8091795993968844,0.5662368726916611,-0.7176486542448401,-0.3321806010790169,0.48697783797979355,-0.995311776176095,-0.6715863547287881,-0.23383004684001207,-0.34639645693823695,-0.8830057070590556,0.470808585640043,-0.962144514080137,-0.885394568555057,-0.5445253578945994,-0.7917044837959111,0.1030768845230341,0.4797378992661834,0.008810911327600479,-0.0459125810302794,0.4034097222611308,-0.7568673552013934,-0.8183655356988311,-0.0036507705226540565,-0.3573936577886343,0.5043657426722348,0.7688810490071774,0.8634153921157122,-0.35811500111594796,-0.756741726770997,0.07167138764634728,0.4869792703539133,0.17242575762793422,-0.6413593799807131,0.6833639619871974,-0.3335078018717468,-0.7824112921953201,-0.7064561014994979,0.937756254337728,0.36439722031354904,-0.34144531423226,-0.6916221398860216,0.5334165706299245,0.6636412222869694,0.9208731055259705,0.7307461905293167,-0.7316770707257092,-0.9058611737564206,-0.8235883335582912,0.6052901837974787,0.940087947063148,0.6603009100072086,-0.974982822779566,0.10305164428427815,0.9641681746579707,-0.36192349065095186,-0.14520429400727153,-0.4431247333995998,0.9977745385840535,-0.9660724368877709,-0.5080248317681253,0.15007252153009176,0.647678610868752,0.6733489357866347,-0.05838872166350484,0.6406073486432433,0.8726052488200366,0.21135621005669236,-0.7642150707542896,0.9108434738591313,0.9881377159617841,0.10862482991069555,0.4435673928819597,-0.606855143327266,-0.8754301271401346,-0.9345141653902829,0.3464917163364589,0.7806844529695809,-0.12772005051374435,0.03699476504698396,-0.8171688332222402,0.23155282344669104,0.2402013773098588,-0.7610096707940102,0.5888835093937814,0.31677220668643713,-0.14761690003797412,0.4901882600970566,0.6652207463048398,-0.6284890742972493,-0.7262527626007795,-0.33726828871294856,-0.03040803363546729,0.5904742684215307,0.851064776070416,0.07304613338783383,0.8356216670945287,0.7526103961281478,-0.2220769990235567,-0.07679096888750792,0.42939132638275623,-0.11812404310330749,0.5141442222520709,-0.33069260884076357,-0.8208007924258709,-0.5861871456727386,0.46408343873918056,-0.9763377173803747,-0.35282396944239736,0.5220509795472026,0.6637763315811753,0.9944211221300066,0.33117291098460555,-0.35207334626466036,-0.9989683218300343,0.37799630081281066,-0.0824715313501656,0.5720700775273144,-0.4789604633115232,-0.7127594137564301,-0.7576881442219019,0.19163723336532712,0.6501729260198772,-0.41794071113690734,0.2729246518574655,-0.597446714527905,-0.15973263746127486,0.517137102317065,-0.2578548532910645,0.93215950159356,-0.7672153143212199,-0.4966166792437434,-0.6086799325421453,-0.8933072094805539,-0.1019056267105043,0.8206266122870147,-0.29152906173840165,-0.29160683834925294,-0.7499731448478997,0.12812994979321957,-0.05355061125010252,-0.5503253946080804,0.49145652586594224,0.8846005969680846,0.4733517151325941,0.2696517459116876,-0.8667448102496564,0.785052252933383,0.8980267830193043,-0.4115951838903129,-0.7795762871392071,-0.21459713391959667,-0.03033745614811778,0.8332427712157369,-0.28251186991110444,0.05059980461373925,0.8362585622817278,-0.7933450639247894,0.6614467636682093,0.7084570890292525,0.8596064611338079,-0.08976949099451303,-0.47976590832695365,0.027214607689529657,-0.8770815460011363,0.06144997710362077,0.17400161502882838,-0.32528948271647096,0.42221142118796706,0.509233498480171,0.5182841527275741,-0.8080337797291577,-0.7452130992896855,0.4366097995080054,-0.2728943065740168,-0.19069236144423485,-0.7347009647637606,-0.3556309142149985,0.5894622281193733,-0.8782863426022232,-0.7585896565578878,0.6392136830836535,0.9057360105216503,0.6074951416812837,0.009263657964766026,-0.2613910064101219,-0.3195246597751975,-0.36175859021022916,0.8113376176916063,0.5433319662697613,0.42896426701918244,-0.4589956356212497,-0.8821950438432395,0.6457410296425223,0.6552187134511769,0.9676655768416822,0.9076660610735416,-0.027078297920525074,-0.11168867256492376,-0.009768649470061064,0.14788592793047428,0.12457118602469563,-0.5354493628256023,-0.753958135843277,-0.011583422776311636,-0.17874968331307173,0.23703034315258265,-0.1856178706511855,0.7572272806428373,-0.5305575514212251,0.2419918761588633,-0.8717072131112218,0.5374287436716259,0.21916318964213133,-0.23596446448937058,-0.09450116055086255,0.9103232994675636,0.025770661421120167,0.1376979392953217,0.8965368079952896,0.7957197325304151,-0.8213829309679568,-0.013795780949294567,-0.44959831424057484,0.3448866489343345,0.41007373994216323,0.48547953367233276,0.15126882819458842,0.3790565333329141,0.7386346971616149,-0.24362638872116804,0.7926458548754454,-0.7785952733829618,-0.5910052852705121,0.5886124465614557,-0.6967025897465646,0.6217066263779998,0.10420572385191917,-0.9592183423228562,-0.2232350525446236,-0.20240604737773538,0.44618621142581105,0.5891331895254552,-0.01795890973880887,0.5492471568286419,0.15865638153627515,0.5773636437952518,-0.030230937525629997,0.13292338838800788,-0.22422428941354156,-0.8162655713967979,-0.7442379384301603,0.9757889951579273,0.19276616722345352,-0.772084612865001,-0.5136788417585194,-0.6135849822312593,0.5665180296637118,0.8308763238601387,0.2450171373784542,0.06306391581892967,0.10565196303650737,0.801096782553941,-0.610192050691694,-0.013454684987664223,-0.6814232207834721,-0.622440526727587,-0.43047831999138,0.0037016146816313267,0.2146905274130404,0.6174064017832279,-0.7986239963211119,0.12286899704486132,-0.09942662809044123,0.24320749146863818,-0.2800027239136398,-0.6134138032793999,-0.3134371554479003,0.3112352602183819,-0.13979010051116347,-0.955603966023773,-0.5300676887854934,0.833860139362514,-0.8611564659513533,0.42538078036159277,0.37843845365568995,0.762620241381228,-0.36124010337516665,0.5812017754651606,0.9464450031518936,0.608060700353235,-0.44805716583505273,-0.8028844017535448,-0.8843846702948213,0.42874262388795614,0.5553826848044991,-0.2853050217963755,0.18273313529789448,-0.3737215748988092,-0.21500663040205836,0.27887990279123187,0.37803242448717356,0.5193328787572682,-0.07716061547398567,0.47956755058839917,0.3873580787330866,-0.7454038467258215,0.8606392648071051,-0.8252788670361042,0.857170975767076,-0.8936334024183452,0.005655910354107618,0.28216217504814267,0.819345885887742,-0.05989993875846267,-0.2639514422044158,0.8603508644737303,-0.35449458146467805,0.3965356848202646,-0.9289904199540615,-0.784531029406935,0.9564120997674763,-0.8273685975000262,0.9397417749278247,-0.3804609118960798,-0.10748313507065177,-0.6564950556494296,0.6574224676005542,0.19334334786981344,-0.2786087584681809,0.7775626992806792,0.7958990000188351,-0.6523918244056404,-0.423766179010272,-0.7516065398231149,-0.5470420802012086,-0.2182238451205194,-0.839842732064426,0.3586078477092087,-0.046206056140363216,0.6937840874306858,-0.8905362919904292,-0.5893981554545462,0.8282229695469141,0.5338638131506741,0.022144346497952938,-0.8388909450732172,0.8709604479372501,0.5251638549380004,0.757127407938242,-0.020137394778430462,-0.20243448810651898,0.2554157874546945,0.25353983137756586,-0.11906414804980159,-0.8713704533874989,0.48382386518642306,0.11495905602350831,0.42604128876701,-0.013366615865379572,0.8004690073430538,-0.8086003814823925,-0.06211738148704171,0.47487245919182897,0.41326898662373424,0.03377694031223655,0.7675535804592073,0.5973817226476967,0.7984528355300426,-0.025218617636710405,0.8896726411767304,0.39381313091143966,0.4291502139531076,-0.5278851739130914,-0.48800005204975605,-0.561896541621536,0.3416379685513675,0.307102182880044,-0.7574993129819632,0.6529919719323516,0.6429651835933328,-0.8042182154022157,-0.8171801762655377,0.031192772556096315,-0.18323674937710166,-0.8183465814217925,0.8360211504623294,0.3942389930598438,0.13846576819196343,-0.153284196741879,-0.2847020640037954,0.5314239910803735,0.3447235212661326,0.7749322010204196,-0.6425051605328918,-0.05357525637373328,-0.9675253611057997,0.5704399077221751,-0.16704028146341443,-0.24542401265352964,-0.8102214592508972,0.37508898228406906,-0.5062784585170448,0.9175896537490189,-0.9621748505160213,-0.564712880179286,0.5857464834116399,-0.8894595671445131,0.5206435322761536,-0.8193758735433221,0.2724948604591191,-0.22808503778651357,-0.23830106062814593,0.7555742263793945,-0.6251210896298289,-0.6161516858264804,0.6091718026436865,0.2554754260927439,0.1547190356068313,0.5492695099674165,0.8207280389033258,-0.10938129760324955,0.05527167022228241,-0.6475482019595802,0.7162426630966365,0.9527887208387256,0.9114171252585948,0.7746984362602234,0.33336164662614465,0.873806924559176,-0.7519166404381394,0.7471410841681063,0.45369524462148547,-0.8235795423388481,0.561829118989408,0.9599589789286256,0.834094928111881,0.37106348434463143,-0.4061498767696321,-0.7226154515519738,-0.5732163889333606,0.15786502230912447,0.48974077869206667,-0.8846404668875039,-0.05627299938350916,-0.8294592387974262,0.5970731731504202,-0.9115635608322918,0.9113570787012577,-0.24942556582391262,-0.5165377710945904,-0.6884522326290607,0.6104202377609909,-0.17466746782884002,-0.1207550005055964,-0.851992174051702,-0.33114515570923686,-0.4821378909982741,0.0003472273238003254,-0.6910886182449758,-0.824745761230588,0.3462976310402155,-0.9248416367918253,-0.6074282345362008,-0.8896795469336212,0.6252100099809468,-0.9171280972659588,0.38362005772069097,0.18715273728594184,-0.6717327022925019,0.11868090461939573,0.4637593845836818,0.056822337210178375,-0.8343831892125309,0.31155274575576186,-0.322129235137254,-0.12084148870781064,0.8009741455316544,0.9505734778940678,-0.9506557215936482,0.2639359743334353,-0.7841222137212753,-0.8626423212699592,-0.7478253389708698,0.7009237422607839,0.6751399068161845,0.349008996039629,-0.852435021661222,0.8063333039171994,-0.06622982304543257,-0.8673535785637796,-0.15389009611681104,0.8014355329796672,-0.4241324793547392,0.4542724546045065,-0.5848961342126131,0.28282112162560225,0.7634316389448941,-0.09154762560501695,-0.6575541198253632,-0.7938769441097975,0.16807003878057003,0.8176508150063455,0.8452581032179296,0.461118808016181,0.7190506495535374,0.0415351171977818,-0.3701104028150439,0.7039865832775831,0.35505561670288444,-0.007736731320619583,-0.38731126580387354,-0.829281538259238,0.8310642316937447,-0.9265925046056509,0.27400073036551476,-0.25895115872845054,0.24101348454132676,0.7335043093189597,-0.1501286495476961,-0.2988783176988363,-0.4564520795829594,0.8458290817216039,-0.4895783122628927,0.5402234066277742,0.3769158059731126,-0.5011719656176865,-0.49250027211382985,0.5969722382724285,0.3899483443237841,-0.8760029864497483,-0.5006572534330189,-0.027762620709836483,0.06400838727131486,0.08808736130595207,-0.36266158148646355,0.5768944569863379,0.8171675908379257,-0.6636087442748249,-0.8331311196088791,0.2073050132021308,-0.27440232317894697,-0.7908185143023729,0.17129284562543035,0.851116503123194,-0.8328292034566402,-0.3651082110591233,0.3147677988745272,-0.08539574593305588,0.39034311287105083,0.888872460462153,-0.40519743924960494,0.8658731109462678,0.44396460289135575,0.06470908550545573,-0.9967898302711546,0.7403535577468574,0.555925665423274,-0.6429308797232807,-0.025246758945286274,-0.9145510676316917,0.2738720797933638,0.7120327418670058,0.9409021688625216,0.956940766889602,0.3709517437964678,0.23273376654833555,0.016394182108342648,0.2842167424969375,0.47803837852552533,-0.4245636761188507,0.15457768272608519,-0.2217155322432518,-0.7446092162281275,-0.6214669421315193,0.2012834744527936,0.2370325978845358,-0.04222327936440706,-0.7109074671752751,-0.741965708322823,-0.8309104442596436,-0.4974609250202775,0.5291223037056625,0.08772464096546173,-0.23755171708762646,0.39757718425244093,0.7706815535202622,0.4902399415150285,-0.567384494934231,-0.26359774312004447,-0.9713944769464433,-0.7058807136490941,0.9467317997477949,-0.5884442976675928,0.8288404243066907,0.5514838974922895,-0.5232468796893954,0.08800850762054324,0.5196245461702347,0.42851049173623323,-0.14210749231278896,0.9806405645795166,0.34073380567133427,0.30278379935771227,-0.311450548004359,0.050131093710660934,0.7733834031969309,0.2463027574121952,0.2539746589027345,-0.7965213139541447,-0.7296995418146253,0.8351449281908572,0.10382801666855812,-0.8650609198957682,0.0322561957873404,0.03890342079102993,0.9187137838453054,-0.3281712685711682,0.7420821441337466,0.024069379083812237,0.6188490451313555,-0.15357749676331878,0.2377481209114194,-0.10950444312766194,-0.6296357517130673,-0.8219643468037248,0.31743681989610195,0.1984503366984427,0.8823470948264003,-0.1773817352950573,-0.7062628068961203,-0.8442699019797146,0.4680280163884163,-0.0990070910193026,0.6704660933464766,0.12241249857470393,-0.1326533779501915,-0.35080285044386983,-0.27612593909725547,0.970235793851316,0.7679264466278255,0.8679540352895856,-0.6985883843153715,-0.8941543232649565,0.7170699071139097,-0.27425931533798575,-0.34691196773201227,-0.7782835834659636,-0.2275103833526373,-0.39801617665216327,0.060898215509951115,0.36147495033219457,-0.06071074865758419,0.5351861976087093,-0.18639908265322447,-0.20501708332449198,0.7101146876811981,-0.6533789862878621,0.003306297119706869,-0.8320971899665892,-0.41846044128760695,0.016525222454220057,-0.5356819131411612,0.24832458095625043,-0.08389719808474183,0.5790369776077569,-0.8183248033747077,0.0460487469099462,-0.03350068908184767,0.26003209967166185,-0.28518718061968684,0.41419251961633563,0.5916057815775275,-0.6568650556728244,-0.4099048348143697,-0.8566592582501471,0.33843968668952584,0.11885566916316748,-0.3213979098945856,0.13500047428533435,0.9653962859883904,-0.8579361904412508,-0.8874173979274929,0.11782173532992601,-0.36322421533986926,-0.3442264823243022,-0.33055198891088367,0.39603748824447393,-0.364317880012095,-0.464938310906291,-0.37533889850601554,-0.5909763933159411,-0.7092690216377378,0.9253462655469775,0.1479005878791213,-0.6057125963270664,0.7705753394402564,0.29567889450117946,-0.9029963663779199,0.16883856523782015,0.550325034186244,-0.20815451769158244,-0.33145318180322647,0.23006184631958604,-0.20564799522981048,-0.27173585956916213,-0.6141908019781113,-0.5540256039239466,-0.20475838612765074,-0.1359815583564341,-0.12473534792661667,-0.6603179755620658,-0.7644469337537885,-0.3006624816916883,-0.6445001852698624,-0.5349571043625474,-0.784368647262454,0.18451238609850407,-0.3231942914426327,-0.22633950458839536,0.14433577377349138,0.20635395403951406,0.768759676720947,0.2645237483084202,0.09094164753332734,0.2909374521113932,-0.4094683537259698,-0.7224954050034285,0.331526639405638,-0.21149198710918427,-0.0793055915273726,-0.785214324016124,0.7160414955578744,0.889601883944124,-0.982735806144774,-0.8101894846186042,0.953303299844265,0.15358181530609727,-0.17345489468425512,0.16798757202923298,-0.06696547288447618,-0.029852090403437614,-0.14813559735193849,0.084703603759408,0.5034470222890377,0.035963679663836956,-0.10165750561282039,-0.5225300132296979,-0.9429972097277641,-0.40048928931355476,0.5386106469668448,0.8930402910336852,0.6171513730660081,0.9334393618628383,0.5802964880131185,0.3322119037620723,0.7254514745436609,-0.6287963911890984,-0.3141680001281202,0.27454469352960587,-0.7789410464465618,0.29875547206029296,-0.3851831369102001,0.708020081743598,0.21948565589264035,0.629099820740521,0.10554656619206071,-0.15516240987926722,0.40005151508376,0.3232834879308939,0.9814220555126667,0.42821541568264365,0.6538214227184653,-0.04950224095955491,-0.9951060162857175,0.34607663936913013,-0.052492891903966665,-0.5992400692775846,-0.8141595437191427,0.8819823781959713,0.6443688650615513,-0.61737175937742,-0.9526376556605101,-0.7959778639487922,0.505096547305584,0.7809707471169531,-0.4996849256567657,0.4384899949654937,-0.8450225219130516,-0.4153244448825717,0.5443679243326187,-0.8869752241298556,-0.05189020186662674,0.8684050547890365,-0.03178250091150403,-0.6939310906454921,-0.6423539207316935,-0.5011944817379117,0.6422475702129304,-0.937623143196106,-0.8560214941389859,0.17460934072732925,0.3534201644361019,-0.5900204153731465,0.11343716969713569,0.7107425844296813,-0.46562641579657793,0.902212773449719,-0.815042519941926,0.5988452895544469,0.03399165067821741,-0.8602436240762472,-0.7314004856161773,-0.48109758645296097,0.9018464456312358,-0.9164151158183813,0.07236894313246012,0.8211464858613908,0.2251263028010726,0.8546850541606545,0.38562788954004645,0.9872118765488267,-0.3697868217714131,0.480497355107218,0.5335186868906021,0.4138579275459051,0.22953470796346664,0.6336198663339019,0.11199032654985785,-0.8613372081890702,0.8587451563216746,-0.568847646471113,0.005944663658738136,0.0006663338281214237,-0.7876304080709815,0.031022953800857067,-0.6919282195158303,0.12543855141848326,0.45880368165671825,-0.9040571814402938,0.8784981742501259,0.08167189219966531,0.33012140914797783,0.8598958025686443,0.021791588980704546,0.7630075663328171,-0.4982723887078464,0.7063015871681273,0.20551337860524654,-0.9533782708458602,-0.7582447095774114,-0.5602994272485375,0.16780144488438964,-0.07285813335329294,0.89178969245404,0.01741723995655775,-0.6716049839742482,0.07868665410205722,0.2160021085292101,0.6705058324150741,-0.5228834506124258,-0.07179463841021061,0.2026297957636416,-0.6056212321855128,0.10564542561769485,0.2780000288039446,0.8165748179890215,0.8054656274616718,0.23659464484080672,-0.5051876539364457,-0.8233011066913605,-0.5568735697306693,-0.39854037296026945,-0.6217915578745306,-0.3775030509568751,0.16888700518757105,0.5393111449666321,-0.22727141855284572,0.1264400277286768,-0.5561411627568305,0.05358181009069085,-0.4936464740894735,0.6170666967518628,-0.33011725079268217,0.8501192308031023,0.07117479294538498,0.2627106113359332,0.09166519390419126,-0.4000573609955609,0.45784557657316327,0.40400981809943914,0.09396781167015433,-0.7897460982203484,0.25193583220243454,-0.8978337114676833,-0.5235622888430953,-0.24868231499567628,0.4451546398922801,-0.03191340155899525,0.6517912377603352,0.3655051877722144,0.4453119467943907,0.46813832502812147,0.8079047529026866,-0.274311778601259,-0.4349162927828729,0.4642340410500765,-0.43561452254652977,-0.8387684654444456,0.12727411929517984,0.8465914577245712,0.5288898395374417,-0.9950938723050058,0.7546702525578439,-0.6292544421739876,-0.20401131082326174,-0.5663133766502142,0.4527240479364991,0.9923484567552805,-0.03999275807291269,-0.24475661851465702,-0.5597773031331599,0.30285206623375416,-0.8067151457071304,0.23217604029923677,0.13499892270192504,0.03286011191084981,-0.938769955188036,-0.947229141369462,-0.04234448308125138,-0.17134428257122636,0.2777980091050267,0.8994645862840116,-0.18767190864309669,0.3941350909881294,0.46242891158908606,0.8714177501387894,-0.8375337193720043,0.15177349047735333,0.4452039487659931,0.9361994895152748,0.863121323287487,0.7603271421976388,-0.0010813763365149498,-0.5907226549461484,-0.22319328878074884,-0.6055286270566285,-0.7353457361459732,0.48246750328689814,-0.4456935254856944,-0.9700351902283728,0.9647441417910159,-0.9256162289530039,0.617521075066179,0.35911428974941373,0.17675109719857574,0.8758018971420825,-0.9453086499124765,-0.31079688807949424,-0.5425626956857741,-0.28094722609966993,0.5054155201651156,-0.9234750661998987,-0.22136087762191892,0.7810195633210242,-0.0426848279312253,0.2997557329945266,-0.6369811855256557,-0.5186236533336341,0.17766793677583337,-0.7644081404432654,-0.643381567671895,0.08804365247488022,0.47344449488446116,0.36864681262522936,0.7925544106401503,0.7984443977475166,-0.6032304703257978,0.3354588928632438,0.10337223531678319,-0.7741192863322794,-0.12960717733949423,-0.4597418890334666,0.7854579514823854,0.7486063684336841,-0.7985987872816622,-0.9574384880252182,-0.40491719683632255,0.7292020237073302,-0.8193075032904744,-0.14868076611310244,-0.9906824585050344,-0.7716668755747378,0.8684353218413889,0.6316650500521064,-0.9967907909303904,-0.9550604191608727,0.4667369411326945,-0.6405095485970378,-0.9173626028932631,-0.5934249376878142,0.7606094316579401,0.49589811684563756,0.06210503168404102,-0.8385506351478398,0.4676152993924916,-0.5964213949628174,0.6105192839168012,-0.3527935608290136,-0.2232710705138743,0.6673011709935963,0.09015835635364056,-0.259942002594471,-0.7629403239116073,0.11233594128862023,-0.782093022018671,0.6324080466292799,-0.18425066489726305,-0.5754940705373883,-0.2981900633312762,-0.6096119866706431,-0.51533118262887,0.2467453763820231,-0.30734698474407196,-0.1357657453045249,-0.1411207914352417,0.1957757226191461,0.7636414328590035,-0.6877261470071971,-0.1472893562167883,0.17296134401112795,-0.08914280356839299,-0.7174876066856086,-0.19060067925602198,-0.787589197512716,-0.5133491763845086,-0.2632065271027386,-0.769891491625458,-0.05449388036504388,-0.13929187133908272,-0.029646421782672405,0.5152182527817786,0.5025897538289428,-0.9530274723656476,-0.08915320225059986,0.00942277256399393,0.4595155566930771,0.6244609770365059,0.5790328071452677,-0.7022860427387059,-0.010531087405979633,-0.27185623440891504,0.7776793618686497,0.6001521050930023,-0.40557332802563906,0.34852966014295816,-0.8429400525055826,-0.07749915588647127,-0.43291999492794275,0.8980343653820455,-0.5959603348746896,-0.2611694084480405,-0.6499220891855657,-0.05246085114777088,-0.8138558426871896,0.3976598489098251,-0.9172579762525856,-0.716066169552505,0.7387218913063407,0.9810196682810783,-0.2519511957652867,0.028383743949234486,-0.30931197525933385,-0.5606114068068564,0.39297998789697886,0.7701691491529346,0.2116910219192505,0.1298159658908844,-0.1710949819535017,-0.43412731401622295,-0.42194087943062186,-0.8862736620940268,0.7735415389761329,-0.4875705991871655,0.39812920708209276,-0.8083924101665616,0.5053041842766106,0.022115739062428474,0.16063792444765568,-0.3163012354634702,-0.15380605682730675,0.5952920592390001,-0.01379341073334217,0.6034299479797482,0.24588348669931293,0.8298847656697035,0.416112688370049,-0.8011012529022992,0.5079726399853826,-0.2869253293611109,-0.16282430430874228,-0.7498860079795122,0.5674459375441074,0.0035645877942442894,-0.12649385770782828,-0.22798309940844774,0.3624041457660496,0.8376836134120822,0.5079361009411514,0.16503963386639953,0.8805709080770612,-0.10075200069695711,-0.39984352653846145,0.5396869671531022,-0.9005899536423385,0.90197115810588,-0.7885809587314725,-0.17071297438815236,-0.029601628426462412,0.019168656785041094,0.7771220644935966,0.5879972786642611,0.8866222626529634,-0.7552834399975836,0.164361750241369,-0.9903392987325788,0.2275578686967492,0.8124223435297608,0.6019282462075353,-0.010915079154074192,-0.149397861212492,-0.7197972917929292,-0.6811183337122202,0.8398943073116243,0.0928695248439908,-0.02978027518838644,0.9887704872526228,0.20652713114395738,0.8183525330387056,-0.233267436735332,0.2543001426383853,-0.47350457590073347,-0.15973892947658896,0.22370012383908033,0.356735625769943,-0.1707499292679131,0.1749986158683896,0.9008682873100042,-0.2940777647309005,-0.11306245950981975,0.03666315134614706,-0.02217318583279848,0.5778984501957893,0.9809496817179024,0.9871461926959455,0.7077781525440514,0.7415717709809542,-0.04123883508145809,0.934595603030175,0.08210305776447058,0.014110559597611427,-0.31739828269928694,-0.2455449253320694,-0.5578589988872409,-0.6614964730106294,-0.19404120789840817,-0.4008794385008514,-0.43749786587432027,-0.6111470353789628,0.6754172421060503,0.1954055824317038,0.10365575598552823,0.6843574470840394,-0.8786276066675782,0.3124331613071263,-0.8813157365657389,-0.455817848443985,0.02010779082775116,0.9423697157762945,-0.4521288308314979,-0.5721284365281463,0.7204299764707685,-0.31991906045004725,-0.021460369694978,-0.8282110281288624,0.31161531107500196,-0.9112726389430463,0.5946774403564632,-0.16305770026519895,0.692116592079401,-0.9375723660923541,-0.7192083089612424,-0.41857642447575927,0.752238024957478,-0.592734161298722,-0.8306382293812931,0.3949127751402557,-0.8463613297790289,-0.8377916770987213,-0.348186569288373,0.9525883854366839,-0.5288496050052345,-0.8787917234003544,0.09105623234063387,0.4019761714152992,0.7314859316684306,-0.3894022414460778,-0.23681641556322575,-0.14023816213011742,-0.27418429823592305,0.034072383772581816,0.9278668113984168,-0.5919219166971743,0.5226268554106355,-0.364340100903064,0.7663347376510501,0.10148200578987598,0.312153079546988,0.009711822029203176,-0.05811381293460727,-0.33877639286220074,-0.39290881622582674,-0.938212857581675,-0.5492418319918215,-0.04741554148495197,-0.28307313146069646,-0.36258892714977264,0.8530223835259676,0.5624004187993705,0.8798558372072875,0.10021060379222035,-0.25922111654654145,0.14173854468390346,0.9299041628837585,-0.5388519428670406,0.15890212869271636,0.32598429545760155,0.7451252336613834,-0.7622529878281057,0.26860049460083246,0.9060852699913085,0.4119656905531883,-0.47221771627664566,-0.6410587225109339,-0.28824406769126654,-0.414330608677119,0.7383134318515658,-0.4833997320383787,0.9504799940623343,-0.1137620615772903,-0.8167564980685711,0.11356614017859101,-0.7108956873416901,0.7279841545969248,-0.10768684232607484,0.10200141556560993,0.714603525120765,0.9882711786776781,-0.44867580849677324,0.7085433080792427,0.23754806956276298,-0.407213534694165,-0.017508933320641518,0.544678261037916,0.34768996527418494,-0.024117453023791313,0.5021084840409458,-0.7021011114120483,-0.7728907498531044,-0.9905816372483969,-0.6590409646742046,-0.48569521587342024,-0.4122889800928533,0.46380498725920916,0.35097296023741364,0.553187103010714,-0.966975174844265,-0.057972513139247894,0.7339801792986691,-0.8006880064494908,0.03186718374490738,0.009858598932623863,-0.04695140244439244,-0.9120246563106775,-0.18088528933003545,-0.5089829256758094,-0.17175011849030852,0.42454318376258016,0.3144146758131683,0.4245853847824037,0.4386702557094395,-0.21461226837709546,0.7786819529719651,-0.5244886274449527,0.6187830315902829,-0.6724753952585161,-0.01982975797727704,-0.9995214408263564,-0.5090549741871655,0.23428246844559908,-0.01830138312652707,-0.045412599109113216,0.613338727504015,-0.25822860142216086,-0.14230962470173836,0.06400336278602481,0.6470736428163946,-0.7672134349122643,0.8870492628775537,0.9646562063135207,0.11648363200947642,0.5908743259496987,-0.12204368552193046,-0.6959546748548746,0.8990937704220414,-0.6418302836827934,0.4733111960813403,0.5865736193954945,-0.36712427949532866,0.5821765698492527,0.19070171285420656,0.9205827792175114,-0.04956195643171668,-0.1998144332319498,0.45632892986759543,0.5239325691945851,0.5619978136382997,0.9716671691276133,-0.5865654400549829,0.8780882325954735,-0.5801270888186991,0.9294992494396865,-0.3275359715335071,0.022007950581610203,0.7114724623970687,-0.19046710059046745,0.9411584618501365,0.20741636352613568,0.986890075262636,0.004885324742645025,0.1128051932901144,-0.7532322984188795,-0.8058157544583082,-0.8653362020850182,0.38562011905014515,-0.9784495360217988,0.4907089238986373,0.2539288429543376,-0.3581934259273112,0.8744015381671488,0.05503981187939644,-0.8169187963940203,-0.24911989364773035,-0.0056596496142446995,-0.6624270468018949,-0.5086532314307988,0.6174021670594811,0.012186610139906406,0.8298027231357992,0.6268583214841783,0.30362773686647415,-0.2607742762193084,0.6394166923128068,-0.4134545987471938,-0.5205143680796027,-0.73352404916659,-0.7934212409891188,-0.6751564214937389,0.8804372088052332,0.30820228392258286,-0.3473745402880013,-0.40556595381349325,0.8026951416395605,0.4729942143894732,-0.4420942598953843,0.4719847650267184,0.07904819957911968,-0.7389565454795957,-0.7158146854490042,-0.7342226826585829,0.02634685207158327,-0.0317559028044343,0.3101575751788914,-0.7816879036836326,0.5890113776549697,-0.8647172711789608,-0.9266695589758456,-0.14652861701324582,0.4202181603759527,0.5225812182761729,0.6560791227966547,0.8456844622269273,0.062989282887429,0.317470446228981,-0.7639119806699455,0.465540393255651,-0.24470613710582256,-0.5255722515285015,0.05836619110777974,0.8917943085543811,-0.8874172088690102,-0.7807455882430077,0.33725616661831737,-0.208431554492563,-0.6598154683597386,0.9850874976255,-0.8780789994634688,0.12595891254022717,0.3522021803073585,0.7917219153605402,-0.07165159424766898,-0.6035732864402235,0.4413615735247731,-0.8197558205574751,-0.9888580557890236,-0.586946974042803,-0.32787327701225877,0.5666755079291761,-0.22767303558066487,-0.1467971708625555,-0.1302406252361834,-0.19326852960512042,0.7677407832816243,-0.41173378145322204,0.467860238160938,0.5808967649936676,0.09224973013624549,-0.2256657569669187,-0.021033200435340405,-0.2653553420677781,0.9534605527296662,-0.4697894579730928,-0.37411666940897703,0.07321639079600573,0.19020985951647162,0.19962349813431501,0.09344978956505656,-0.0833878293633461,0.7569173369556665,-0.641023697797209,-0.6006553443148732,0.09810108924284577,0.8206493384204805,0.819790949113667,-0.37643027445301414,-0.1887690513394773,-0.22802690556272864,0.9457014594227076,0.3426091247238219,0.5036346022970974,-0.12678023567423224,0.31521027348935604,0.03859056951478124,0.11818339535966516,-0.7531811739318073,-0.758527415804565,-0.4715676009654999,0.23121203389018774,0.13093844754621387,-0.13939071632921696,0.2175808227621019,-0.6605951325036585,0.6202961374074221,-0.40398633340373635,0.41758972173556685,0.05874106753617525,-0.9571974845603108,-0.8017463213764131,-0.23168344562873244,-0.9000202524475753,0.06719800410792232,-0.3114380924962461,-0.08709477446973324,-0.17601692350581288,0.5595234725624323,0.6634311689995229,-0.3117797472514212,0.7523966361768544,-0.9325992548838258,0.2606390076689422,0.6054741251282394,0.2242918242700398,0.6201286003924906,-0.8224798091687262,-0.7146517760120332,-0.847934135235846,-0.09265072597190738,-0.011145536322146654,0.9396483469754457,-0.7228874224238098,-0.4013724843971431,-0.03763996250927448,0.7253005006350577,-0.3938104803673923,-0.43088032538071275,-0.5631187460385263,-0.21673859702423215,0.11228945478796959,0.6818042933009565,-0.5364095075055957,0.5073955324478447,0.6325381430797279,-0.32446772465482354,-0.0034605166874825954,0.6387245855294168,-0.22492340207099915,0.8627103744074702,-0.5400041523389518,0.05395016400143504,-0.21603920869529247,-0.9497564346529543,-0.5836484078317881,0.628441333770752,0.023752730805426836,0.8838539682328701,-0.16394230257719755,-0.5255128308199346,0.06360794231295586,-0.7808724003843963,-0.41612426564097404,0.36629552533850074,-0.6697941911406815,-0.3883986407890916,-0.44280697172507644,-0.3917534095235169,-0.911205985583365,0.10299512138590217,0.7261962457560003,-0.5806544446386397,-0.9400045271031559,-0.010827736929059029,-0.2091603516601026,-0.8740720795467496,0.47190710715949535,-0.5698468154296279,0.016165729146450758,-0.6697498220019042,0.23158109094947577,0.6475829207338393,0.15866126026958227,0.5735511188395321,-0.48216440668329597,0.46549858804792166,0.3211626410484314,-0.4307946772314608,0.048456255346536636,0.3517014500685036,-0.9839504021219909,0.33746590791270137,-0.8618923323228955,0.6808680067770183,-0.023677662014961243,0.05639396794140339,0.37985916156321764,0.3655456714332104,-0.8652519239112735,0.5993964690715075,-0.24737276742234826,-0.012262378819286823,-0.10243201162666082,-0.08718900661915541,0.29971666308119893,0.6265940088778734,-0.8594009894877672,-0.6556423255242407,0.260523256380111,-0.21832308219745755,0.7469531586393714,-0.9023968819528818,-0.14714867575094104,0.4392276438884437,0.9918511938303709,0.7751863994635642,-0.36311696469783783,-0.17945923516526818,0.5824445895850658,-0.6963361441157758,0.8394496385008097,0.07248068042099476,-0.46439029462635517,-0.6143175363540649,0.1065056687220931,-0.2786027705296874,0.11482123238965869,-0.20540777873247862,0.4194007492624223,-0.424511375837028,0.5362364621832967,0.3713612603023648,0.11746520036831498,0.010960175190120935,0.2113882484845817,0.7714286493137479,0.8413923014886677,0.9044991810806096,0.3449486088939011,-0.3105774000287056,-0.5448749144561589,-0.8298059036023915,-0.43485889164730906,0.6119396272115409,0.13864306826144457,-0.24145188927650452,-0.32670948561280966,-0.6849857908673584,0.15305427089333534,0.14580997731536627,-0.01789613300934434,-0.7133534015156329,-0.4297311222180724,-0.6874198438599706,-0.1981589919887483,0.6101802946068347,-0.8900944208726287,-0.4475723300129175,-0.9215307347476482,0.8084277263842523,-0.6395583595149219,0.02928579319268465,0.38863491592928767,0.5055691758170724,-0.9339969647116959,0.7027211510576308,0.7507941541261971,0.25132652232423425,-0.8069949611090124,0.7295858063735068,0.8261680128052831,0.05167290102690458,-0.9813044788315892,0.3306100629270077,0.1138422004878521,0.9842145764268935,0.18303828174248338,0.3184663327410817,0.4056382901035249,-0.9049710845574737,0.012291653547435999,-0.5820513577200472,0.6805781493894756,0.9739105217158794,-0.8007437912747264,0.08835619175806642,-0.5339128612540662,0.8765648975968361,0.10853742016479373,-0.914847185369581,0.9942042855545878,0.7564633549191058,-0.6659243665635586,0.7204219168052077,-0.13434604788199067,-0.47007054975256324,0.44910117238759995,0.10446936450898647,-0.2872174959629774,-0.6653212327510118,0.8281536605209112,0.4740401622839272,0.6945549948140979,-0.9965675673447549,0.27234502835199237,0.22806903580203652,-0.9084508111700416,-0.2009744504466653,0.33821879466995597,0.99904312659055,-0.20673893578350544,0.346920779440552,-0.6917126378975809,0.518146994523704,-0.6999160493724048,0.5467327288351953,-0.4402146451175213,-0.5794207565486431,0.7322057308629155,0.4111425504088402,-0.29430861165747046,0.6230839556083083,-0.08473530178889632,0.5381422671489418,0.8452121969312429,0.26236329646781087,-0.26696877367794514,0.7872265763580799,-0.7276531122624874,-0.1413179561495781,0.017340301536023617,-0.8977934448048472,0.9419953259639442,-0.14860597578808665,0.564544873777777,0.12023769970983267,0.9068984189070761,-0.8309413613751531,0.4927157578058541,0.9203640962950885,0.8314140909351408,-0.037915474735200405,-0.5151979699730873,0.26458372827619314,-0.578105385415256,-0.9521440947428346,0.8775677592493594,-0.6185897961258888,-0.7351045794785023,0.367800060659647,0.07032343186438084,-0.5825592144392431,-0.36268311832100153,-0.682674101088196,0.4573272541165352,0.8316291221417487,-0.7418131879530847,-0.864355721976608,0.8693003850057721,-0.3026531832292676,0.31135263526812196,0.03887471742928028,0.5596497468650341,0.13474463764578104,0.6760748103260994,0.49936761567369103,0.2130368142388761,-0.47396055655553937,-0.7025423757731915,-0.5930947470478714,-0.9964277343824506,0.9803179749287665,0.2697139629162848,0.6573863923549652,-0.09982733428478241,0.3517733393236995,0.1878558974713087,-0.15404328517615795,-0.2848449656739831,-0.2628662372007966,0.7436386435292661,0.40003270795568824,0.2658887216821313,-0.8270249259658158,0.4254431049339473,-0.2769178547896445,-0.9311408665962517,-0.07931639812886715,0.8553877836093307,0.41491980431601405,-0.31439609033986926,-0.8270952673628926,-0.9415078768506646,-0.2436253479681909,-0.9892321061342955,-0.45588583732023835,0.29907420882955194,0.04276641737669706,0.1810188232921064,0.07550972001627088,0.2845813790336251,0.44088518852367997,0.6052671493962407,0.6691794670186937,0.32950402656570077,0.28213421162217855,0.7069578375667334,-0.44324923027306795,0.579869229812175,-0.6937685301527381,0.25589844211935997,-0.9232498849742115,-0.3489345726557076,-0.16650427598506212,0.07452845200896263,-0.42169447615742683,0.3995487876236439,-0.3820330947637558,-0.06215193122625351,-0.6869536065496504,-0.13280778471380472,0.43723385175690055,-0.5986880594864488,0.5144264395348728,-0.7976348344236612,0.41974777122959495,0.6613221196457744,-0.5964989350177348,0.8435383606702089,-0.527894145809114,-0.8794599501416087,-0.04337821574881673,-0.7182964263483882,-0.9342600647360086,-0.9498889758251607,-0.2901134183630347,-0.16937190014868975,0.6807250017300248,0.04820548603311181,0.14814916672185063,0.24317899532616138,-0.46579932142049074,0.7618799251504242,0.9431734969839454,-0.07415839936584234,0.4499408039264381,0.214270097669214,0.7052524648606777,0.576216118875891,0.6563913417048752,0.611265838611871,0.9710688129998744,0.006534062325954437,-0.3579732500948012,0.5528489961288869,0.9177879067137837,-0.09992726799100637,-0.9555225763469934,-0.9228905835188925,0.8792288368567824,0.6646671141497791,-0.3054335964843631,0.66300781769678,0.1976312450133264,-0.08614506060257554,0.5214172536507249,0.3584624594077468,0.9579058778472245,-0.8454198054969311,-0.6712802620604634,-0.5999320982955396,0.05859648110345006,-0.4246279061771929,-0.5220769830048084,0.4676815755665302,0.06377795059233904,0.057857392355799675,0.17967434925958514,-0.20599735993891954,-0.9503791364841163,-0.5097474637441337,0.7825955394655466,0.1493650390766561,-0.7978338692337275,-0.5026340228505433,-0.8281468600034714,0.9953373768366873,0.27682189270853996,-0.45251899352297187,0.8985613463446498,-0.735697403550148,-0.7517248159274459,0.6559007880277932,0.6542276344262064,-0.9225741578266025,0.9264003410935402,0.33433996699750423,0.9110630946233869,0.0009071645326912403,0.10609573451802135,-0.5977463023737073,0.8113379776477814,-0.43366706371307373,0.8413765765726566,-0.4509818940423429,0.15794504201039672,-0.41766461497172713,0.5151300225406885,0.4356179446913302,0.3244058941490948,0.8186926762573421,-0.7034488571807742,-0.43568435963243246,0.8781610284931958,0.7133914791047573,0.03328207414597273,0.6372182723134756,-0.33483298541978,-0.12622286658734083,0.6871834183111787,0.07791895931586623,0.10479710763320327,0.2300536767579615,0.03826477937400341,-0.23502470599487424,0.7976643452420831,-0.9023089972324669,-0.10620275139808655,-0.4235067246481776,-0.7623342494480312,0.8802988845854998,-0.2763172760605812,-0.13167107198387384,0.1894630086608231,0.6287126643583179,0.8439805810339749,-0.7527317735366523,0.4855784270912409,-0.6883043968118727,0.5415578307583928,0.4503709417767823,0.7475682129152119,0.2306673964485526,0.7999266549013555,0.4844415211118758,-0.2919150711968541,0.20403239503502846,0.5774016221985221,0.31913620652630925,-0.24630012130364776,0.9719556602649391,0.41029017558321357,0.45639157434925437,0.7622425029985607,-0.9132633586414158,0.3767919926904142,0.6889593852683902,0.6520888218656182,0.58846783824265,0.28610491706058383,-0.509074586443603,-0.8869718657806516,0.6101086279377341,0.7747658104635775,0.582668352406472,0.5484339478425682,0.5690609556622803,-0.4223520625382662,0.13127210130915046,-0.4650513371452689,-0.6170437103137374,-0.021019164007157087,0.9010231862775981,-0.19681989261880517,-0.4716558959335089,-0.11811247188597918,0.3796784966252744,0.0326822753995657,-0.26948744570836425,0.8494613599032164,-0.2356870835646987,-0.681858534924686,0.9227387164719403,-0.3024332011118531,0.8743865871801972,-0.3126845988444984,-0.19209119398146868,-0.9490574379451573,-0.08814320433884859,0.42159845028072596,0.25496303057298064,-0.8746765376999974,-0.7092084474861622,0.7741570277139544,0.45821890560910106,0.06841457448899746,-0.574575541075319,0.25953374058008194,0.6724117193371058,0.6900207102298737,0.36464534420520067,0.7798093557357788,-0.7237220671959221,-0.7687598541378975,-0.7233197363093495,0.39761306531727314,0.6791971269994974,0.4866706021130085,-0.8698577038012445,0.3837078334763646,0.28597746277228,0.4010492004454136,0.2886145203374326,-0.9563421909697354,0.7880474920384586,-0.36003818456083536,-0.866269560996443,0.7993357409723103,-0.1012733276002109,-0.9851832110434771,0.23094533709809184,0.1036096322350204,0.9112350265495479,0.5720999827608466,0.8647997998632491,0.025270090904086828,-0.4068785239942372,-0.00371467974036932,-0.607046952471137,0.48023681063205004,0.32847049180418253,0.6433067307807505,0.07100217882543802,-0.18488508183509111,-0.4686789456754923,0.37955078296363354,0.2432551966048777,-0.4512945697642863,-0.5611280146986246,-0.30060327192768455,-0.9112064857035875,0.4787116884253919,0.5521297599188983,0.6436466979794204,0.48415034357458353,-0.9536933950148523,-0.9383547641336918,-0.9407016169279814,0.30218393029645085,0.38341627130284905,-0.854229343123734,-0.5067853084765375,-0.6782375476323068,-0.15662976820021868,-0.27184994518756866,-0.9748217710293829,-0.20749026350677013,0.9926654035225511,0.9552965573966503,-0.238499547354877,-0.1253337673842907,0.7097779898904264,-0.4274977007880807,-0.3135237921960652,0.2294409410096705,0.6338812680914998,-0.36098135029897094,-0.6872569830156863,0.17490270640701056,-0.7031755284406245,0.1670411010272801,-0.06331651099026203,-0.5794400107115507,0.27301738038659096,0.9625765541568398,-0.291478113271296,-0.4598228703252971,-0.6312749302014709,0.18094742810353637,-0.31007307954132557,0.8102667471393943,-0.8390348604880273,0.645127369556576,0.06369613762944937,-0.6694955886341631,-0.30322890542447567,-0.8165180864743888,0.28932616021484137,-0.12024070741608739,-0.9756237138062716,-0.41286657052114606,0.6149986260570586,0.43806590512394905,-0.7584201591089368,-0.3369141439907253,-0.9277379070408642,0.20339467423036695,-0.10201417747884989,0.9824410513974726,-0.9472827101126313,-0.76570341642946,0.25800174102187157,0.6221136678941548,0.4984802845865488,-0.7452070387080312,0.21489350777119398,-0.18541380623355508,0.9508636030368507,-0.19099396653473377,0.26886535715311766,0.31471521966159344,0.35527228098362684,-0.5459285550750792,0.6960886716842651,-0.0005686921067535877,-0.04742079693824053,-0.9520726217888296,-0.5056595327332616,-0.054747678339481354,-0.19349511992186308,-0.10355035215616226,0.586929858662188,0.41577521432191133,0.7033625454641879,0.5869419807568192,0.49025404499843717,-0.6235354240052402,-0.36328126210719347,-0.05874929390847683,-0.6423922404646873,0.5991152822971344,0.4061958556994796,0.6858631633222103,-0.051607110537588596,-0.5346984080970287,-0.8502884469926357,0.18611592566594481,-0.11635442869737744,0.11043144948780537,-0.7413601456210017,-0.5690731457434595,-0.7208306835964322,0.9384905681945384,0.42594211222603917,-0.9237253475002944,-0.28001901926472783,0.040309923235327005,-0.0020874105393886566,-0.5315059311687946,0.35181942116469145,-0.4160326812416315,0.4467126252129674,0.19250699132680893,0.015140878967940807,0.9316971367225051,-0.890739809256047,0.7203534874133766,-0.982178692240268,0.19505307963117957,-0.2946225721389055,-0.8338698856532574,0.018488433212041855,0.19713225541636348,0.6917840265668929,-0.34162953263148665,0.6199009343981743,0.5826459997333586,0.039738516323268414,-0.5365935158915818,0.8529584924690425,0.5386304338462651,0.7510070698335767,-0.010212294291704893,0.7741444120183587,-0.06483288295567036,0.7884785016067326,0.5998901277780533,0.9113336387090385,-0.4338373285718262,0.5936315841972828,-0.8933766833506525,0.2832077518105507,0.7405020068399608,-0.7196680204942822,0.13354739639908075,0.5874057416804135,0.11465442599728703,0.18457911582663655,-0.1896224799565971,0.07770404033362865,0.4622021918185055,-0.23482694942504168,-0.9247755846008658,0.0635958625935018,-0.2981743491254747,-0.3460707520134747,0.31749910674989223,-0.17759082047268748,0.08931980328634381,-0.4667125018313527,0.5168234878219664,0.6981326309032738,-0.1465855143032968,0.10031293844804168,-0.367108051199466,-0.11696479981765151,0.5233212192542851,0.10495593259111047,-0.14945312729105353,-0.1577648427337408,-0.6298526362515986,0.666064016520977,-0.17060767067596316,-0.2445117994211614,-0.4611431728117168,0.9801872340030968,-0.2107056644745171,0.7381415590643883,0.47427975945174694,-0.21405493328347802,0.44953248044475913,0.8666647877544165,0.6668511219322681,-0.08965765358880162,-0.062321857549250126,0.9567543109878898,-0.5541659374721348,0.5571576789952815,-0.21945996908470988,-0.9183796332217753,0.8039120421744883,0.6585331242531538,0.7780678202398121,0.9372130697593093,-0.23597027454525232,-0.642623383551836,0.6761889685876667,-0.061362046748399734,-0.48535830760374665,-0.5979662397876382,-0.29616672545671463,0.25153876934200525,0.1236201492138207,0.32438479363918304,-0.4091776870191097,0.6953944000415504,-0.8943657819181681,-0.09507745690643787,-0.1763762142509222,0.12049463763833046,0.45827597193419933,0.1875121952034533,0.9564177999272943,0.9796898681670427,-0.6229332685470581,0.7036159057170153,0.8965477771125734,-0.08197438670322299,-0.4869234599173069,0.8137304070405662,0.2825746750459075,0.6608639564365149,-0.6899296538904309,0.3427695515565574,-0.3238651123829186,-0.6045518438331783,-0.5220597516745329,0.10642086807638407,0.27059341268613935,-0.4761242028325796,-0.434399435762316,-0.17609194060787559,0.8748434474691749,0.5541152223013341,-0.3884992338716984,-0.2851931364275515,0.5317709571681917,-0.05949851544573903,-0.7390572442673147,-0.8667164365760982,0.8784693339839578,-0.5169936805032194,0.37736546294763684,0.3328885962255299,-0.8137286910787225,-0.860079450532794,0.9819168574176729,0.8655661875382066,0.047372978180646896,-0.8684340352192521,-0.24044992728158832,0.7990385708399117,-0.33773777401074767,0.654788778629154,-0.02691338350996375,-0.7412427528761327,0.5151901347562671,0.8716721744276583,0.8792475429363549,0.02178242802619934,-0.23140149377286434,0.9516897141002119,0.6254960782825947,0.041540345177054405,0.3293462651781738,-0.8614651225507259,0.19698685873299837,0.9224566626362503,-0.10782952886074781,0.3974219695664942,0.008294492959976196,-0.29326608777046204,-0.035688585601747036,0.306767163798213,-0.2592913629487157,0.14949434623122215,-0.4241110924631357,0.4940585736185312,0.23930873349308968,0.8975682859309018,0.04590169386938214,0.16463002329692245,-0.3153182393871248,0.38512124959379435,-0.30726087279617786,0.7179620107635856,0.04404052207246423,0.6279832124710083,0.5723780882544816,0.02723872335627675,-0.6988584818318486,-0.1488355495966971,0.40041513880714774,0.7985126860439777,-0.4312578933313489,0.9374982514418662,-0.06253261165693402,-0.6070867534726858,0.07576217036694288,0.34469064557924867,-0.3743014018982649,0.5641534086316824,0.34780507767573,0.6717554721981287,-0.21949651092290878,-0.636668614577502,0.8821224584244192,-0.5116467466577888,-0.5334729086607695,0.0864992318674922,0.6762178465723991,-0.6112599289044738,0.39937249245122075,-0.1692982641980052,-0.47981941560283303,0.023456960916519165,-0.22406662302091718,0.8594123311340809,-0.7734027882106602,-0.055341835133731365,0.5824918751604855,-0.5052669546566904,-0.7057158704847097,-0.3670390881597996,0.7098757079802454,-0.213296617846936,0.719288513995707,0.7271922896616161,-0.3439116436056793,-0.8881955002434552,-0.3945180377922952,-0.4634499605745077,-0.6254111025482416,0.8315953528508544,-0.9569762321189046,-0.22292210021987557,-0.2879507401958108,-0.8979330994188786,-0.8169345348142087,-0.34157272707670927,-0.9309432203881443,-0.1958408374339342,0.9050723249092698,-0.3483133763074875,0.9204911012202501,-0.002077390905469656,-0.34984094370156527,-0.13687541568651795,-0.5801089885644615,0.10180823132395744,0.22867362620308995,-0.30759118776768446,-0.05396991083398461,-0.09233652893453836,-0.8398988591507077,-0.8580834050662816,0.7169106798246503,-0.5414417609572411,-0.2099881791509688,0.02495304448530078,0.07395134959369898,0.21714024059474468,-0.31018855795264244,0.8223008178174496,0.9019865146838129,-0.11987818498164415,0.3544237334281206,-0.21537006460130215,-0.22021342115476727,0.8624272351153195,0.3389827092178166,-0.11000074539333582,-0.697719955816865,0.1830555982887745,-0.21826477022841573,0.9096612082794309,-0.26086822990328074,0.8802300072275102,-0.5219594640657306,0.7740961178205907,0.39695757161825895,-0.9871770874597132,0.026057659648358822,0.16965013975277543,0.6076490003615618,-0.8342882827855647,0.8120508552528918,0.12127769412472844,-0.18420596467331052,0.6958044995553792,0.7211630013771355,0.7906512315385044,0.40461053140461445,-0.04403976071625948,0.5073256082832813,0.4830593806691468,-0.32687225472182035,0.12717313785105944,0.5176590150222182,0.3171752612106502,0.846475487574935,0.20401900634169579,0.050462044309824705,-0.708538107573986,0.08737915754318237,-0.6495571844279766,-0.07431992795318365,-0.5237055369652808,-0.4210582710802555,-0.3074904098175466,0.3738825893960893,-0.4128431216813624,-0.18016240652650595,-0.8590155472047627,0.06736975442618132,0.17100249556824565,0.03837391175329685,0.529349731747061,0.7707682736217976,-0.48319961270317435,-0.9171023298986256,-0.6892741271294653,0.6051454613916576,-0.4301316188648343,0.7889739884994924,-0.8816449269652367,0.6238753260113299,0.5173070877790451,-0.32715031830593944,0.4694209466688335,-0.4315534555353224,-0.5724010970443487,-0.9972455995157361,-0.959571466781199,0.08217250602319837,0.08376215491443872,0.13380984449759126,-0.7644700612872839,-0.13172848615795374,-0.6288767596706748,-0.9370683534070849,0.33931462094187737,0.3694931170903146,-0.26058252761140466,0.3271897053346038,-0.12476670369505882,-0.6108232871629298,-0.5323920249938965,-0.05591434007510543,-0.2532419450581074,-0.639781417325139,-0.4461447545327246,-0.11579638812690973,-0.5817243233323097,0.03809038968756795,-0.4348129788413644,-0.3472009254619479,-0.24823266686871648,-0.5149575886316597,-0.686020321212709,-0.22198770893737674,0.5173993776552379,-0.8401571549475193,-0.5163267850875854,-0.08608272951096296,-0.3861494525335729,-0.5150803797878325,0.17725228518247604,-0.522970262914896,-0.1722702020779252,-0.7509405235759914,-0.6443022061139345,-0.5913117197342217,-0.13293921994045377,0.02048605913296342,-0.30883154459297657,0.519086766988039,-0.1384045691229403,-0.5124731748364866,0.017050106544047594,-0.8769846023060381,0.017966647166758776,0.26692484971135855,-0.40757631743326783,-0.26491109607741237,-0.7481356244534254,-0.33718999195843935,0.24362440593540668,-0.8290359349921346,-0.5601647654548287,-0.24210367631167173,0.5853465939871967,-0.960816836450249,0.7385068312287331,0.14836526662111282,-0.9997003967873752,0.5263580610044301,0.8187987585552037,-0.19205449055880308,0.3495420911349356,0.9285050416365266,0.6884725070558488,0.5877776565030217,0.0036163153126835823,-0.7869794955477118,-0.1488943872973323,-0.9011705787852407,0.9877088167704642,0.09113344736397266,0.27570142643526196,-0.30977115547284484,0.14311631210148335,0.4837310682050884,0.4597100168466568,0.30653287610039115,-0.1872192327864468,0.5392517293803394,-0.6760307820513844,-0.5304847275838256,0.37453275406733155,0.19471580907702446,0.46649838611483574,0.7176988897845149,0.877895716112107,0.19880337873473763,0.5174625949002802,0.8979054722003639,0.22202653530985117,0.8008618480525911,0.14058920973911881,-0.8831043639220297,-0.23292566370218992,-0.46042996272444725,-0.0783806792460382,-0.766803571023047,-0.19709764700382948,-0.279884388204664,-0.7049272512085736,-0.7008935525082052,-0.7320021716877818,-0.6456112363375723,0.6323306136764586,-0.1654132567346096,-0.4182127700187266,-0.23842700431123376,-0.9196965042501688,-0.9375569098629057,-0.5754912937991321,-0.8464139411225915,-0.7635439322330058,-0.9351560105569661,0.35425682831555605,0.38549519050866365,-0.8857052521780133,-0.7780441441573203,-0.9996751863509417,0.019959695637226105,0.15045991027727723,-0.45353700313717127,-0.4336070269346237,0.1654986315406859,0.5100337010808289,0.7476141662336886,-0.05178464576601982,0.4894290892407298,0.985656357370317,0.4874322647228837,0.3994111455976963,0.3509379127062857,-0.9873699606396258,-0.4642715062946081,0.803679340519011,-0.88256258610636,0.4011078141629696,-0.25959794595837593,0.3996359915472567,-0.5466158268973231,0.880288693588227,-0.08283470943570137,0.27803927566856146,0.27503947215154767,-0.29846307821571827,-0.4887861628085375,0.5490106139332056,-0.24854185385629535,-0.7583945342339575,-0.9618443786166608,-0.5049748397432268,0.5085067241452634,-0.13581875571981072,0.5318866912275553,0.5871500982902944,-0.8715609228238463,-0.3458511154167354,0.23911340720951557,0.29559447430074215,-0.11039285222068429,0.6680666403844953,-0.1638918542303145,-0.20273110596463084,-0.6474179960787296,-0.6457845130935311,0.2114270394667983,-0.09594539925456047,0.5208652131259441,0.9935081489384174,-0.6351544233039021,0.5740426066331565,-0.6818495998159051,0.9624388008378446,-0.758613612037152,0.017914791591465473,-0.9594823848456144,0.5328826918266714,-0.5080926632508636,0.5503004002384841,0.11046527605503798,-0.510087639093399,0.6157829626463354,-0.1495316014625132,0.9584668101742864,0.9854186582379043,0.42017194302752614,0.4402678464539349,0.08426142809912562,-0.18667925707995892,0.6542989714071155,-0.7841513366438448,0.5874436437152326,-0.11271961871534586,0.08572216564789414,0.1793468869291246,0.7613109401427209,0.3812884949147701,-0.5739727169275284,-0.7992884442210197,-0.23636767687276006,0.7492104433476925,0.7008501919917762,0.9813012816011906,-0.1658471068367362,-0.6812528325244784,0.9025030629709363,-0.8013129695318639,-0.46912299329414964,0.6083713476546109,-0.7680918527767062,-0.9368846374563873,0.05766379972919822,0.3035490410402417,-0.10847405157983303,-0.033430265728384256,0.8802338219247758,-0.4984495984390378,-0.63321837130934,-0.9754251963458955,0.4767297385260463,-0.28579676803201437,0.6626848373562098,0.8077085334807634,-0.42170628206804395,-0.9552098931744695,0.15288339601829648,-0.2752027013339102,0.02589637879282236,0.847120005171746,0.16708805784583092,0.5896485601551831,0.1382762328721583,-0.7104661827906966,-0.3658449579961598,0.19865424605086446,-0.9282048470340669,0.9310984113253653,0.5377870458178222,-0.9577396330423653,-0.18450929410755634,-0.29601715644821525,0.49223325261846185,-0.5062597244977951,-0.5479948869906366,0.6881499076262116,-0.20026469975709915,-0.14697227394208312,-0.7038789307698607,-0.852057128213346,0.025385480374097824,-0.08712079282850027,0.39063865412026644,-0.43900304893031716,0.3015529401600361,0.5622806223109365,0.023448027670383453,0.5158654116094112,0.17114585172384977,-0.11326478654518723,-0.8288258020766079,0.8594055292196572,-0.3266057553701103,-0.24045740580186248,0.5964174079708755,-0.09747822070494294,0.4065106399357319,-0.3645162461325526,-0.8695622812956572,0.4051421699114144,-0.7312894756905735,0.46679301653057337,0.2091690693050623,-0.25945373997092247,-0.7978105572983623,-0.9485600311309099,0.1610661158338189,0.1334279435686767,0.2181275673210621,-0.38459032168611884,-0.46280498430132866,-0.5559830390848219,-0.6138850976713002,0.7916999496519566,-0.9086472247727215,-0.25653045857325196,-0.4901098273694515,0.23806989192962646,-0.6897904104553163,-0.2633356568403542,-0.5521334786899388,-0.2042902559041977,-0.7013337635435164,0.6611816426739097,0.4504143591038883,0.4856299599632621,-0.29304449539631605,0.8378431187011302,-0.6501399516128004,0.9863035134039819,0.4046646491624415,0.7923903595656157,0.3868360910564661,-0.18906335812062025,0.37121104123070836,-0.9255216447636485,0.20868383953347802,-0.02228527143597603,-0.6569586717523634,0.6911387015134096,-0.885188851505518,-0.6949615892954171,0.16597391944378614,0.7848240900784731,0.8706575888209045,0.39438839070498943,-0.9129487164318562,0.8848014529794455,-0.747247242834419,-0.37424999196082354,-0.6205922360531986,0.09687823709100485,0.9633486401289701,-0.32338519115000963,-0.32025512447580695,-0.5731454603374004,-0.15804587677121162,0.052801903802901506,-0.9790224297903478,0.5618817554786801,0.1552468598820269,-0.4245536597445607,0.7941201296634972,-0.2440153481438756,0.360731465741992,0.2915181750431657,-0.11566543346270919,-0.4869450437836349,0.037639538291841745,-0.10457000555470586,0.3854893702082336,-0.6614166740328074,0.9132226081565022,0.7111142412759364,-0.4139668885618448,0.8474820982664824,-0.7470367113128304,0.33949165837839246,-0.244603986851871,-0.2895949948579073,-0.7837562598288059,0.6232548709958792,0.01629870105534792,-0.769828091841191,0.032386033330112696,-0.17288112174719572,-0.25295449746772647,0.4755429085344076,-0.24531047325581312,0.24257028428837657,0.15877939946949482,0.5818032831884921,0.14567759400233626,0.34478176571428776,-0.9671335918828845,-0.28847159864380956,0.006327219307422638,0.9413850614801049,-0.4057969735004008,-0.9735135529190302,-0.1690837754867971,-0.504854301456362,-0.7773051047697663,0.032645842526108027,0.9766531838104129,0.06301385210826993,0.5091203204356134,0.8695502015762031,-0.684379184152931,-0.827153290156275,0.9221514305099845,0.3652469450607896,-0.20096663711592555,0.39038199512287974,0.10904627665877342,-0.27933199563995004,0.7710391008295119,0.754831891041249,-0.7318616230040789,-0.29124197037890553,0.6644350895658135,0.43435712764039636,-0.6206489633768797,-0.19364092592149973,-0.30391315510496497,-0.30725663993507624,-0.011595543473958969,-0.7520549786277115,0.9720904063433409,0.8593581290915608,0.8739406010136008,-0.0904911975376308,-0.6230060425586998,-0.32119351299479604,-0.04060169868171215,0.6528048729524016,0.8054920248687267,-0.8188374945893884,0.8420922360382974,0.30410418612882495,0.4425623225979507,-0.7453587404452264,-0.6911036185920238,0.7581023755483329,-0.8483653129078448,-0.4336951286531985,-0.6590515994466841,-0.35485038720071316,-0.6234816457144916,-0.28624581219628453,-0.4385738708078861,0.9417997971177101,0.6268962980248034,-0.1217304547317326,-0.900324575137347,-0.505553072784096,-0.2870887229219079,0.20748005947098136,0.3976996783167124,-0.8550259303301573,-0.24228941975161433,0.6207606717944145,0.41912053152918816,-0.6181370061822236,0.28168857377022505,-0.9084997125901282,-0.8773665274493396,-0.9499936578795314,-0.18080897070467472,-0.20435572555288672,0.9435900882817805,-0.7559992135502398,-0.305745423771441,-0.7666580928489566,0.2105796178802848,-0.16661849757656455,0.5212417119182646,0.9930763365700841,-0.8221736620180309,-0.7101539121940732,0.8318101745098829,0.9129006047733128,-0.5696448781527579,0.7952391216531396,-0.9218437438830733,-0.336485237814486,0.07074273889884353,-0.9788407511077821,-0.620049137622118,0.03530801134184003,-0.636570664588362,0.878801628947258,-0.2379379579797387,0.8773641367442906,-0.517140582203865,0.4834856977686286,0.450265527702868,-0.1198812979273498,0.4959921194240451,-0.3972638421691954,0.966183275450021,0.33949886681512,-0.5700870580039918,0.6825766833499074,0.42757082683965564,-0.6597237065434456,-0.6906699682585895,-0.2801738362759352,-0.9207342527806759,0.677246184553951,0.16684500267729163,-0.9331854223273695,0.4949308787472546,-0.5964102200232446,-0.7799499132670462,0.6216507330536842,0.15020338725298643,-0.4890877977013588,-0.42556900437921286,0.10205400036647916,-0.34777195611968637,0.8588841985911131,-0.19497329089790583,0.7095666471868753,0.7561502996832132,-0.2112707863561809,0.8118794290348887,-0.7728536571376026,-0.6252966746687889,-0.3973814928904176,-0.08072684379294515,0.943121193908155,0.5753376362845302,0.9075207901187241,-0.3873128448612988,-0.34250434674322605,-0.237004523165524,0.09027160750702024,0.22348308749496937,-0.2690274645574391,-0.9399137268774211,-0.7533132289536297,0.8179706875234842,0.0024305880069732666,-0.8274925518780947,-0.6901182741858065,0.23351865401491523,0.7945834039710462,-0.28290562285110354,-0.549565420486033,0.2586981011554599,0.4446112127043307,0.2168488847091794,-0.8156330841593444,0.9379471624270082,-0.9380371971055865,-0.001851957757025957,-0.4910816508345306,0.9212070554494858,-0.6675680549815297,0.8832706604152918,-0.9225682243704796,0.8921175030991435,-0.6969680348411202,0.5725876223295927,0.6502144285477698,0.017227231990545988,-0.7245697481557727,0.15079238172620535,0.5966574531048536,-0.7049518660642207,-0.5602504620328546,-0.6598370634019375,-0.07935170596465468,-0.36133397091180086,0.9753843862563372,-0.43475954979658127,-0.4298413824290037,-0.9775167661719024,-0.5792009858414531,-0.5806489503011107,-0.20181282935664058,-0.6961401444859803,0.6864876169711351,-0.06478623999282718,0.24973531579598784,-0.6524413558654487,0.09054924920201302,0.7351650856435299,0.9841742529533803,-0.8330749566666782,-0.9709839215502143,-0.2873195610009134,0.6741461735218763,0.9788078428246081,0.9817695119418204,-0.8982031485065818,0.2801061640493572,0.09274731297045946,-0.5550458827055991,-0.6802647346630692,0.44223548332229257,-0.5334397973492742,0.618028158787638,-0.48884709272533655,0.6427836739458144,-0.9764164816588163,-0.3123168721795082,-0.467431363184005,-0.10225664358586073,-0.8319341125898063,-0.055385458283126354,-0.14466956118121743,-0.40061561204493046,-0.3043998833745718,0.9509132537059486,0.9821256943978369,-0.3660840089432895,0.3429368305951357,0.16034805960953236,-0.8508164677768946,-0.5871630250476301,0.6921268133446574,-0.1066757645457983,0.08246173989027739,0.8425587671808898,-0.3117359187453985,-0.2996482253074646,-0.40305937360972166,0.9807057389989495,-0.21864014165475965,-0.19341166224330664,0.12233673315495253,-0.35168152675032616,-0.886685011908412,-0.23787310859188437,0.6196022424846888,0.4142194427549839,0.6608070582151413,0.5753740365616977,-0.09114969754591584,0.7011667350307107,0.09398351237177849,0.0988095086067915,0.43404137855395675,-0.8939947295002639,-0.328692635986954,-0.9180475794710219,-0.20496217859908938,-0.7367796958424151,-0.9009968745522201,-0.8982542045414448,0.2312563955783844,-0.4979842393659055,0.8110560621134937,-0.3735924959182739,-0.10310677764937282,0.2626021164469421,-0.6300793504342437,-0.4279791144654155,0.4239377952180803,0.32149844290688634,-0.4619232681579888,-0.6426059463992715,0.9963239505887032,-0.09436371549963951,-0.4806516058743,0.027263812255114317,0.3185741864144802,0.09120132029056549,0.8115948508493602,-0.632430559489876,-0.3442472545430064,0.9649397628381848,0.880323214456439,0.24894597195088863,-0.7964758360758424,-0.9227022775448859,0.4145028148777783,0.5951511827297509,0.1267673629336059,-0.45285330154001713,0.7265864964574575,-0.32146191224455833,-0.3851428418420255,0.31679206155240536,-0.2514329212717712,-0.03869312442839146,0.024175628554075956,0.37221271684393287,0.5704166674986482,0.6418431415222585,0.5709301009774208,0.12965988647192717,0.4624597989022732,-0.844778090249747,0.2039287299849093,-0.6387054407969117,-0.8689543632790446,0.9463112414814532,0.31870221765711904,0.30449193017557263,0.016761265229433775,-0.978636892978102,0.6316605256870389,-0.865452105179429,0.10489081218838692,-0.7385802753269672,-0.12318369466811419,0.7011228548362851,-0.4158549760468304,0.694003835786134,0.29069447237998247,-0.21919071162119508,-0.012623424641788006,0.5976197039708495,-0.5515743447467685,-0.5811383011750877,-0.4183003259822726,-0.7935136305168271,0.069956015329808,-0.33759758388623595,0.4829198201186955,-0.04306218633428216,0.9450622005388141,-0.6156758866272867,0.9012909675948322,0.7088751085102558,0.8343647317960858,0.35991805605590343,0.11297886678948998,0.9023953448049724,-0.343464286532253,-0.23787328507751226,-0.21357505582273006,0.49302717996761203,0.878765657544136,-0.5987177547067404,-0.5404529459774494,-0.4699326199479401,0.7554520685225725,0.7908461336046457,0.1812318186275661,0.0032789367251098156,0.40821848064661026,0.6367908027023077,0.701133799739182,-0.9892866048030555,0.6322460700757802,0.5161998830735683,0.1875597843900323,0.8222066606394947,-0.7116345856338739,-0.6771344146691263,0.8789891498163342,-0.5144939566962421,-0.06023267284035683,0.8384311771951616,0.39590811636298895,-0.7698175059631467,-0.8270054878666997,0.18061133567243814,-0.06607560394331813,-0.040474350564181805,0.5993145913816988,0.7727711396291852,-0.14558086916804314,0.6698267827741802,0.10366812394931912,0.7396477097645402,0.6576372678391635,0.8525194264948368,0.6469334727153182,0.9062945321202278,0.0280239125713706,0.7505446402356029,0.23759636841714382,-0.8157318993471563,0.5609177523292601,0.8733376464806497,0.41284577967599034,0.9027275578118861,0.3792375801131129,0.373796705622226,-0.037442763801664114,0.07173247262835503,0.6153511703014374,0.3982076784595847,-0.32505765091627836,0.6444409200921655,-0.35587522434070706,-0.509572823997587,0.29154635360464454,-0.30976160429418087,-0.6149474317207932,-0.7473708265461028,-0.859612453263253,-0.020665967371314764,0.3426958676427603,0.28122203471139073,-0.9676038208417594,0.7879553264938295,-0.9015683396719396,0.38299583457410336,0.19395710993558168,-0.3860865100286901,-0.13911526929587126,0.16151573276147246,0.39021547278389335,0.7730495957657695,0.892523780465126,0.7170463893562555,0.030317695811390877,0.09610093059018254,-0.6673128879629076,-0.2236685985699296,0.7158206021413207,-0.6798336645588279,-0.9544705729931593,0.7976109571754932,-0.509667300619185,0.030060925520956516,0.9650291409343481,0.440277399495244,-0.15114947967231274,-0.02372870361432433,0.028090085368603468,0.8965063951909542,-0.9668689263053238,-0.6270445017144084,-0.1594185191206634,0.041282510850578547,-0.4290117849595845,-0.5800381978042424,-0.14169182302430272,-0.6402502930723131,0.538825636729598,0.46026023803278804,0.7321271183900535,-0.990358542650938,0.708784653339535,-0.0685511901974678,0.8065050495788455,-0.6220681248232722,-0.2826345730572939,-0.8994084922596812,-0.4756821561604738,-0.5066030756570399,0.566681036259979,-0.9659443129785359,0.19176005152985454,-0.43715342227369547,0.45951732993125916,-0.621322141494602,0.6855727257207036,0.2898201639764011,-0.4143259050324559,0.5315456232056022,0.26984821492806077,-0.7778147598728538,0.4057868691161275,0.2399107776582241,-0.0009718439541757107,0.436253406573087,-0.3084268309175968,-0.5327032688073814,-0.9694004952907562,0.5780848464928567,0.9623219408094883,0.05370375094935298,-0.0942042819224298,-0.4586352980695665,0.5945312636904418,0.475894040428102,0.780297227203846,-0.6692039016634226,0.9028789107687771,-0.5555452960543334,0.28731518192216754,0.9523735758848488,0.014245675411075354,-0.26701696310192347,-0.3582804980687797,0.30188764492049813,-0.33497911458835006,0.42761726304888725,0.4332387507893145,0.9334273808635771,0.6945168827660382,-0.522665707860142,-0.469901402015239,0.8358849245123565,-0.6993340351618826,-0.10591832594946027,0.06602103263139725,0.33093564584851265,0.9883237946778536,0.182323451153934,0.012463293969631195,-0.7679838743060827,0.023466117214411497,0.24953381391242146,-0.8971568974666297,-0.37973026605322957,-0.49214764311909676,-0.21053367434069514,0.0708687654696405,-0.9909462430514395,-0.2757580108009279,0.6193636669777334,-0.2998212552629411,0.6484518353827298,-0.17054677149280906,-0.32676015282049775,0.05341845704242587,0.56429936690256,0.5647251778282225,-0.8368843542411923,-0.7372842086479068,0.4075138997286558,0.1995097673498094,0.009460446890443563,-0.43200997076928616,-0.18624816043302417,-0.5485843704082072,-0.2118177036754787,-0.7847116398625076,-0.28530655056238174,-0.4124076310545206,-0.7911094571463764,-0.4326267410069704,0.6848211497999728,-0.20327696297317743,-0.7899875794537365,0.9316937285475433,0.2023208411410451,-0.11582310637459159,-0.39145563216879964,-0.1351739806123078,0.11126022739335895,-0.836299501825124,-0.058885281439870596,0.7489486974664032,0.9197003585286438,0.9993115835823119,-0.5850311303511262,-0.1546153142116964,-0.13611365435644984,0.7229421283118427,0.5916245966218412,-0.3554062619805336,-0.8079409007914364,0.77143146796152,-0.6629567039199173,0.6459022611379623,0.27228163462132215,0.3256866722367704,-0.2559512248262763,-0.9591339575126767,-0.5564308525063097,-0.5482312953099608,0.1270987787283957,0.6041894820518792,0.4823398436419666,0.9240828067995608,0.022189973387867212,0.2709891661070287,-0.149329234380275,-0.19442717172205448,0.6427540783770382,0.13083301251754165,0.6179480268619955,0.03796673845499754,0.4876862675882876,-0.15105854673311114,0.2656401889398694,-0.17471428401768208,-0.541549205314368,-0.016899074893444777,0.3690854082815349,0.6557812546379864,-0.523926256224513,-0.19969506468623877,0.43359998473897576,-0.7508667488582432,0.1357241435907781,0.1678922027349472,-0.7533108461648226,0.19445170043036342,-0.5787488934583962,-0.7187750013545156,-0.6223109094426036,0.2307537435553968,0.9772596335969865,-0.3534063375554979,-0.5875051487237215,-0.4541706843301654,-0.9166449741460383,-0.0031435471028089523,0.9805587609298527,-0.6581290005706251,0.20918562449514866,-0.7052707457914948,0.31560002639889717,0.26205927412956953,-0.1907633375376463,0.9833411718718708,0.802497427444905,-0.03781435685232282,-0.8483288818970323,-0.15769196627661586,-0.568927158601582,-0.5015584928914905,0.76391965104267,0.746970874723047,-0.49089746037498116,-0.09253771184012294,-0.9000117015093565,-0.796681469772011,-0.1658859420567751,0.7542261746712029,0.17027284670621157,-0.08053343137726188,0.2848857003264129,0.6375041664578021,0.8643497014418244,-0.24504957348108292,0.21346091898158193,0.28747784486040473,0.11151218367740512,0.6923154261894524,-0.34760416438803077,-0.7287878450006247,0.5873540658503771,0.22043489571660757,0.300664362963289,-0.23119972692802548,0.24954052781686187,0.04375154338777065,0.4123238851316273,0.05084926262497902,-0.9971703789196908,0.903252889867872,-0.949648286215961,0.8234518808312714,0.6075944057665765,-0.2821394526399672,0.29680797131732106,0.7168913544155657,0.5555485715158284,0.20486487541347742,0.9298173761926591,-0.9278588704764843,-0.26061272993683815,-0.15023686457425356,0.2751166936941445,0.4575936272740364,0.48924284847453237,-0.15806998778134584,-0.5216470430605114,-0.08531755348667502,0.30597920110449195,-0.9991961633786559,0.01092554023489356,0.5354129197075963,0.6312106973491609,0.3436831505969167,-0.4422765434719622,-0.3505958281457424,0.09968731133267283,-0.5069425934925675,-0.7090168977156281,-0.2806200906634331,-0.3967392360791564,0.3599764285609126,-0.7586736315861344,-0.9443929200060666,-0.510980311781168,0.3334286301396787,-0.9203383447602391,0.2024932922795415,-0.5526322247460485,-0.319746321067214,-0.14496967196464539,0.38768478762358427,0.5333047490566969,-0.534699744079262,0.47490166453644633,-0.0534207783639431,0.35599208204075694,0.8060744176618755,-0.8484633211046457,-0.744172565639019,-0.2504098741337657,0.744878857396543,-0.8341770698316395,0.05065911402925849,0.11609283555299044,0.9787925356067717,-0.33201388036832213,-0.746844579000026,0.6635871366597712,0.2682794234715402,-0.8487552884034812,-0.6883661840111017,0.6113504222594202,-0.104537692386657,-0.4740023207850754,-0.47586645605042577,0.8616290586069226,0.3924018833786249,0.34268766129389405,0.6847157930023968,-0.2273062774911523,-0.9097777754068375,-0.6488042678683996,0.5500890598632395,-0.5349579453468323,-0.588435813318938,-0.6240245443768799,0.9831941807642579,0.5897162882611156,0.29585684882476926,-0.3915425664745271,0.20007813395932317,0.010187578853219748,-0.3361442843452096,-0.6069964282214642,-0.2614683033898473,0.5293267709203064,0.8163421647623181,0.35519443172961473,-0.45603432273492217,0.8770817904733121,0.3016549260355532,0.884715236723423,-0.0708138020709157,0.22443411778658628,-0.7025412674993277,-0.030038722790777683,0.8928431021049619,-0.16004552645608783,0.0897568934597075,-0.8075633179396391,-0.5954866814427078,-0.7321923123672605,0.86849031643942,-0.6651301328092813,-0.860573383513838,-0.03532676910981536,-0.9511411585845053,0.048832693602889776,-0.9505079858936369,0.8576705865561962,0.4665260035544634,0.31321698892861605,-0.740086424164474,0.18080292409285903,-0.5186562775634229,-0.23203639267012477,-0.8224513684399426,0.3458190681412816,-0.2680508363991976,-0.10857390332967043,0.23678577924147248,-0.5823877467773855,-0.48299100948497653,-0.7032886021770537,0.5340315075591207,0.7426030938513577,0.8987454087473452,-0.8341157692484558,0.09368176152929664,-0.9592322264797986,0.9498101114295423,-0.18265519523993134,0.3337531313300133,0.9642045060172677,-0.12553714821115136,-0.17787653021514416,0.057743925135582685,0.4042615881189704,0.7250175969675183,0.5428745192475617,0.982311979867518,0.13399326289072633,-0.9624801757745445,0.92148064263165,-0.7187639568001032,-0.9579211371019483,-0.25130627071484923,-0.7607678999193013,0.8161723748780787,0.5030303411185741,0.07569056656211615,0.5271440157666802,0.6454540165141225,0.18937047105282545,-0.16438022535294294,-0.9731961842626333,-0.7029942502267659,0.23042406188324094,0.19559379573911428,-0.09108369005843997,0.43599399644881487,0.26682420587167144,-0.1105559840798378,0.8159332126379013,0.7963311006315053,0.34868315421044827,-0.6130704847164452,-0.5815937449224293,-0.06883759656921029,-0.94772446481511,0.15790375275537372,-0.19371110666543245,0.6693067280575633,0.6495852535590529,-0.8899571723304689,0.06247612880542874,-0.714096188545227,-0.06947166472673416,-0.016721520572900772,-0.7338925874792039,0.32267927192151546,-0.7086291406303644,0.2705241031944752,0.09166660765185952,0.3872600910253823,-0.6764687397517264,-0.6072685262188315,-0.8168105883523822,-0.10881253192201257,0.6011749100871384,-0.3203717269934714,-0.2580776955001056,0.6345604043453932,0.037112098187208176,-0.06011830037459731,0.722114878706634,0.04766063764691353,0.12524323957040906,0.3913164851255715,-0.7784942565485835,0.1645628483965993,0.8559627630747855,0.6487158578820527,-0.0846870057284832,-0.7111613252200186,-0.7847325219772756,0.6878618905320764,0.7978117489255965,-0.5870624938979745,-0.5431090439669788,0.2838378446176648,0.9330741153098643,0.7669968232512474,0.5579967433586717,-0.8836020221933722,-0.71182020008564,-0.8325925744138658,0.5494460831396282,0.1262720893137157,-0.48389281751587987,-0.05756897293031216,0.39872866636142135,-0.01574079506099224,0.5150797478854656,-0.12181168515235186,-0.2140743127092719,0.1940644378773868,0.2410820028744638,-0.9466298040933907,-0.40153340669348836,0.37227631406858563,-0.6510982122272253,-0.09366773022338748,-0.796984588727355,-0.6233400008641183,-0.5352425063028932,0.5386711829341948,-0.5827460652217269,-0.9564536749385297,0.6155165573582053,-0.931834630202502,0.385061995126307,-0.3657938255928457,0.2810101914219558,-0.6666045463643968,-0.6979766241274774,0.14513943204656243,0.2755961096845567,-0.3080904078669846,-0.23870328534394503,0.7663262491114438,-0.42087711673229933,-0.36476625641807914,-0.2941009644418955,-0.14997260412201285,0.9124238449148834,-0.1501863864250481,0.3614881644025445,-0.9578094910830259,0.06713048042729497,-0.9913533222861588,0.7003869507461786,0.9329256541095674,-0.6435800236649811,-0.40972772194072604,-0.2721831020899117,0.11974227614700794,0.07965922076255083,-0.4501317352987826,-0.5173614108934999,0.39966147020459175,-0.9316770005971193,0.2479524021036923,0.904158306773752,0.6524877734482288,0.09541202615946531,-0.781573049724102,-0.25621171994134784,-0.5516084819100797,0.09600590588524938,0.2689064317382872,0.520057063549757,-0.09686013124883175,-0.14285674644634128,-0.12271378980949521,0.2796796392649412,-0.5479262582957745,0.7714394549839199,0.13417838187888265,-0.3120934683829546,0.37115155765786767,0.7611903687939048,0.8683520923368633,0.9665973205119371,-0.12200935231521726,-0.0367056573741138,-0.5989439035765827,0.1283344179391861,-0.17474993085488677,-0.2654429515823722,0.9825705420225859,-0.6335492911748588,0.48025739565491676,0.07218313170596957,0.8762732702307403,0.979153975378722,0.19476642180234194,-0.880520214792341,-0.07841013418510556,-0.4529036497697234,0.7859395178966224,-0.519985668361187,-0.19227435812354088,-0.5112428702414036,-0.6697747157886624,0.8568918639793992,-0.41254151426255703,0.041360429022461176,0.015725824050605297,0.1342911208048463,0.9060119399800897,-0.03272935701534152,0.533974721096456,-0.7121665826998651,0.8447018694132566,0.3559917393140495,-0.9739777874201536,-0.8189770267345011,-0.43231147481128573,0.14134112698957324,-0.1234384779818356,-0.12244152324274182,0.44497210811823606,-0.26263337722048163,-0.03126128390431404,-0.5469634430482984,-0.3918347838334739,-0.5043311575427651,0.11668003350496292,-0.15052275825291872,0.9337253230623901,-0.6461109207011759,0.5307798818685114,-0.782902046572417,0.082932791672647,0.5186812058091164,0.011652787681668997,0.5317411874420941,-0.3634791295044124,-0.7496386929415166,-0.7919113314710557,-0.3479772945865989,0.3087907866574824,-0.28687312453985214,0.7829152764752507,-0.47234109696000814,-0.8509541423991323,-0.6169906724244356,0.6362372813746333,-0.16305280197411776,-0.22120980639010668,0.2589931786060333,-0.8473416566848755,0.6766527849249542,-0.30830596573650837,0.6609596232883632,0.1392456623725593,0.17149690678343177,0.9188120537437499,-0.8993835672736168,-0.04829653212800622,-0.09933458175510168,0.9451913712546229,-0.8717550071887672,0.579146527685225,-0.5221342016011477,0.5903938077390194,-0.3266652384772897,-0.2851747269742191,0.6007475443184376,-0.486107942648232,0.8375331996940076,0.49518228601664305,-0.3602898586541414,0.5362480143085122,0.4570194664411247,0.19896862981840968,0.15660642134025693,0.0820482075214386,-0.6182530843652785,0.3972635609097779,0.28631708957254887,0.4329030984081328,0.6469493005424738,-0.9075157935731113,0.7258134665898979,0.07002020394429564,-0.7656358471140265,-0.8036993416026235,-0.3819848299026489,0.8251113439910114,-0.8646407248452306,0.9232060047797859,-0.9956248495727777,0.09312419686466455,-0.5790537944994867,-0.07602652627974749,-0.740032606292516,0.8190034721046686,-0.738061489071697,0.9461118965409696,-0.9275457947514951,0.630522436928004,-0.9950397256761789,-0.8547114315442741,0.5178419393487275,-0.90487723890692,0.8155972342938185,0.9606981873512268,0.8889049645513296,0.959354103077203,0.1579341539181769,-0.23314468888565898,-0.514650197699666,-0.04635266028344631,-0.5888947150669992,-0.010574643965810537,-0.3496373435482383,0.4955338351428509,-0.04847088363021612,0.7458261647261679,0.07224220782518387,-0.46523013105615973,-0.02152440743520856,-0.042163961101323366,0.7240748223848641,0.2572728116065264,0.16122535802423954,0.0031540649943053722,-0.7197829461656511,-0.3931209151633084,0.574154902715236,-0.7597965276800096,0.5252768942154944,-0.7134861988015473,-0.780043310020119,-0.37507516518235207,-0.7750142049044371,0.08198588574305177,-0.014527332969009876,0.42765345983207226,0.9786476478911936,-0.12059166794642806,-0.4274171395227313,-0.45693050557747483,-0.9719558181241155,-0.24880381673574448,0.4524108851328492,0.9802390630356967,0.8622110085561872,0.668838304001838,-0.2979497881606221,0.13771696714684367,0.9062455119565129,0.02966090850532055,0.6576034403406084,-0.26499795448035,0.7938248231075704,-0.5117691410705447,-0.14060109108686447,0.24983132490888238,-0.08999669225886464,-0.5740068354643881,-0.8978808824904263,-0.7427238253876567,-0.843468772713095,0.4345996044576168,-0.4852363611571491,-0.8148793978616595,-0.43134112749248743,0.9907611315138638,0.554764301981777,-0.7217364367097616,0.8219205774366856,-0.6343299839645624,-0.07447616057470441,0.9638877832330763,0.9630403839983046,0.9200870245695114,-0.27856631856411695,0.10689048422500491,-0.7971977833658457,-0.3919477737508714,0.874811815097928,0.3466236344538629,0.9488025740720332,-0.3644522759132087,-0.2168427282012999,-0.2047117268666625,-0.5294601269997656,0.4121556943282485,0.025138957425951958,-0.31952840741723776,-0.8070520046167076,0.6209310945123434,-0.792807619087398,-0.09740828070789576,-0.8994547170586884,0.9128967565484345,0.2704426893033087,0.10225756466388702,0.05437419470399618,-0.17857913579791784,-0.24748194217681885,-0.7821702281944454,-0.5522631569765508,0.5441209599375725,0.11043764092028141,0.1505942172370851,-0.21193383261561394,0.7710725115612149,0.3938392442651093,0.02825984824448824,-0.0504187922924757,-0.726152163464576,0.1858095028437674,0.2732602567411959,-0.7134034647606313,0.9633528171107173,-0.22345063416287303,0.5731465192511678,-0.5021364353597164,0.11246443865820765,0.18202319322153926,-0.09280791599303484,-0.019422642420977354,-0.8876163493841887,0.611041366122663,-0.8588760439306498,-0.1054919552989304,-0.09758474351838231,0.008895139209926128,-0.29201596649363637,-0.24248849507421255,-0.6952002281323075,0.25261823926120996,0.19331096205860376,-0.9805046948604286,0.5096054566092789,0.4697649544104934,0.3214878598228097,0.7456817734055221,-0.16310632321983576,-0.7259865049272776,0.2558940448798239,0.09229244012385607,-0.47131909197196364,-0.3443551999516785,-0.5649583423510194,-0.5606390405446291,-0.9412110270932317,-0.0665828213095665,0.956549062859267,0.3325067702680826,0.6916533522307873,-0.36361057544127107,0.28512676106765866,0.11237252270802855,-0.34733713138848543,-0.7368972217664123,0.8581057325936854,-0.6879942449741066,-0.22454362409189343,-0.08019573101773858,-0.5316011901013553,-0.05802810797467828,-0.6842766259796917,0.5002164910547435,-0.29451271798461676,-0.8046746356412768,-0.3700520331040025,-0.767448344733566,-0.9350254950113595,-0.3284982945770025,0.724856018088758,-0.4801588370464742,0.6256508026272058,-0.8439891319721937,0.6594416229054332,0.28217281959950924,-0.25214805686846375,-0.5536525407806039,-0.7679939931258559,0.8381236474961042,0.8739274796098471,0.9438725239597261,0.6556917480193079,0.3827361282892525,-0.701133687980473,0.6854836670681834,0.9044473539106548,0.581024800427258,0.7852933485992253,0.20297095086425543,-0.33818099554628134,0.011732482351362705,-0.22456818260252476,0.578570494428277,0.6304854564368725,0.07343918969854712,0.3302399907261133,0.8269483936019242,0.21209766576066613,0.6686363555490971,-0.18193689221516252,0.17942258901894093,-0.4342950736172497,0.40466627152636647,-0.4033195939846337,0.9517486193217337,-0.22462241351604462,0.6184157347306609,-0.24023305298760533,0.8734830608591437,0.1767817190848291,0.27492757281288505,0.6801509307697415,0.9699471900239587,0.7983943801373243,0.3691716054454446,-0.7504593832418323,-0.5357438097707927,-0.1778191700577736,0.09160005021840334,0.8420903268270195,-0.6736851828172803,0.019496973138302565,-0.5935335080139339,-0.27283511823043227,0.6457167603075504,-0.011565049644559622,-0.07960598077625036,-0.350358750205487,0.053826901130378246,0.5946258842013776,-0.24952817847952247,0.7349900980480015,-0.9789993627928197,-0.5844645854085684,-0.03161843540146947,-0.48153779609128833,0.8487215777859092,-0.75310979783535,0.7998313568532467,-0.9430832080543041,-0.06094148149713874,-0.3204808095470071,-0.6440990902483463,-0.3165763202123344,-0.39456452429294586,-0.7628565113991499,0.8231672565452754,0.8150776838883758,0.8891751677729189,0.7878223983570933,-0.9773436323739588,0.8930357778444886,0.8528366317041218,0.21330343140289187,-0.7204880933277309,0.44334543868899345,0.1988131394609809,0.36836143722757697,-0.3660531286150217,0.5019760322757065,0.5195946837775409,0.08299866318702698,0.3255112720653415,-0.9586707004345953,-0.6507797813974321,0.5649089082144201,0.40293960785493255,0.9436449748463929,0.6156632024794817,0.7436279887333512,0.7356427721679211,-0.05197752360254526,0.8953626402653754,-0.13461297191679478,-0.9535848256200552,0.6737437224946916,-0.8480285028927028,-0.7937049507163465,-0.7620397042483091,0.4501148140989244,0.19870277075096965,-0.1276030819863081,0.7022410440258682,-0.5920162228867412,0.8318013935349882,0.8821115521714091,-0.6744551220908761,-0.44579741917550564,0.6543247113004327,0.19975130911916494,0.36532738991081715,-0.6647070217877626,-0.7631787937134504,-0.9205886689014733,-0.8616683837026358,0.6475605838932097,-0.6327924286015332,0.9184030364267528,0.8085433300584555,-0.2383948229253292,0.3526278040371835,0.6648609680123627,0.17939583398401737,0.8628430608659983,-0.9112977697513998,0.46959683019667864,-0.7733917701989412,0.2926154616288841,-0.9439939791336656,-0.6080693476833403,-0.5905184871517122,-0.910200753249228,-0.6697543165646493,-0.5776833593845367,0.7041978444904089,-0.6218087989836931,0.43091528909280896,0.8865306628867984,0.9138372237794101,0.3928864714689553,-0.29463811684399843,0.5332761062309146,-0.5400837175548077,0.6930386945605278,0.45155570516362786,0.4998932774178684,-0.21443998301401734,-0.7618422415107489,-0.5192743833176792,0.5935763660818338,0.5111286686733365,-0.02979215933009982,0.0302211232483387,0.8222507615573704,-0.974243565928191,-0.7060569929890335,0.6562293395400047,0.7348746121861041,0.478313026484102,-0.6821947027929127,-0.49445249140262604,0.5983798732049763,0.15318516781553626,0.15794609254226089,-0.1552493921481073,0.8932026904076338,0.3570621623657644,0.506381734739989,0.4098693407140672,0.6973542673513293,0.4886671146377921,0.2854093131609261,-0.3870984185487032,0.08657412929460406,-0.6526815332472324,-0.7036051750183105,-0.9614724428392947,-0.3009714288637042,0.9989251443184912,0.4956606971099973,-0.011250175070017576,-0.4882234362885356,0.9014228847809136,0.006683457642793655,0.6672017630189657,-0.8456734586507082,0.14632722828537226,0.7957004406489432,-0.384873912204057,0.24160533118993044,0.21250743931159377,0.8757749237120152,-0.8138012769632041,0.12501505063846707,-0.14575131190940738,-0.543224134016782,-0.00015287846326828003,0.40716471895575523,0.08883309224620461,-0.0020981277339160442,-0.8242340171709657,0.32065435498952866,-0.4158590114675462,-0.8379276860505342,-0.571489604189992,0.03977647237479687,-0.6323833572678268,0.8377897781319916,-0.6192769194021821,0.6479780836962163,0.5603852360509336,-0.8454327173531055,-0.9516255618073046,-0.19268299033865333,0.19858535612002015,0.9101279824972153,-0.14780212147161365,-0.5604860889725387,0.11276822863146663,0.8857395211234689,-0.8974651950411499,-0.09804652538150549,0.24322067853063345,0.3197271111421287,-0.5334359016269445,-0.6238032085821033,0.009723891969770193,-0.7652988159097731,-0.49450499890372157,0.007049793377518654,-0.1057386389002204,0.8693078844808042,-0.9661582205444574,-0.4272330915555358,-0.4449681150726974,-0.5489695025607944,-0.4621910974383354,-0.31160101434215903,0.026404637843370438,0.2637486797757447,0.8583355895243585,0.050707978662103415,-0.43770053423941135,0.7081733155064285,-0.6230100067332387,0.3779811216518283,0.3009017030708492,0.5207960624247789,-0.4799255160614848,-0.28483332321047783,0.9611550411209464,0.19676591828465462,-0.6895430842414498,-0.3267415640875697,0.33875137055292726,-0.9144822275266051,0.4098853715695441,-0.32322739949449897,0.22883160132914782,-0.4568925257772207,0.8257932509295642,-0.022499949671328068,0.46676197787746787,0.6448233011178672,0.5489172381348908,-0.25913019571453333,0.44517242442816496,-0.3388526071794331,0.6139271901920438,0.3164585414342582,0.8866462032310665,-0.34351743618026376,0.8059265189804137,-0.6657636892050505,0.4738396997563541,0.7858738419599831,-0.9219379173591733,-0.031393887009471655,0.06531746499240398,-0.41398543398827314,-0.6786036929115653,-0.8335032043978572,-0.19330870592966676,0.6078709051944315,0.7754311477765441,-0.8932665381580591,-0.6791953230276704,0.11055002082139254,0.21280489023774862,-0.3197246603667736,-0.22990117641165853,-0.9967017318122089,-0.34839965123683214,-0.9345470271073282,0.9559249067679048,-0.9524423871189356,0.7697085775434971,-0.4406018368899822,0.4384204070083797,-0.8564946129918098,-0.5321638062596321,0.7083996892906725,0.9979328201152384,-0.9268353707157075,-0.07471686322242022,-0.8565900172106922,0.918245607521385,-0.0117157525382936,0.34969105245545506,-0.9720684690400958,-0.6476509142667055,-0.5682500200346112,0.40133945224806666,-0.907411681022495,-0.10008222609758377,-0.9012483078986406,-0.20981427049264312,-0.2797964736819267,-0.7086786148138344,-0.48005874175578356,-0.028532313648611307,-0.4439246137626469,-0.8475842531770468,-0.6626680763438344,-0.35907922172918916,0.4191529103554785,-0.6955070840194821,0.6599670359864831,0.6303962017409503,-0.08344164025038481,-0.1735786790959537,-0.8587771137244999,0.6774954185821116,-0.6192980189807713,-0.7700010808184743,0.492553286254406,-0.25334505597129464,-0.4516940978355706,0.39821545826271176,-0.6306001655757427,0.6451071104966104,0.8389532691799104,-0.855639673769474,-0.724469200707972,0.6263146558776498,0.12026993790641427,0.1075795735232532,-0.7796653872355819,0.16627272963523865,0.5137160788290203,0.5286850007250905,-0.830971397459507,0.5407276544719934,-0.3322871155105531,0.9198742876760662,0.46261195139959455,-0.7347197332419455,0.45148976892232895,-0.2931471192277968,0.2906902483664453,-0.43404753832146525,0.42717020446434617,0.413572667632252,0.16751175047829747,-0.891275099478662,0.31851997738704085,-0.8876291597262025,-0.33078214107081294,0.13779072044417262,-0.8747788206674159,-0.6046443362720311,-0.6404105378314853,-0.6120212101377547,-0.25146019784733653,0.5900125182233751,-0.9261041348800063,-0.10269076423719525,-0.7255960064940155,-0.42712311167269945,-0.7181496419943869,0.8939975872635841,-0.4625368542037904,0.3739836816675961,-0.8847037726081908,0.06130895111709833,0.6702845240943134,-0.1498122438788414,0.34912218526005745,0.8536901357583702,-0.22823067335411906,-0.056054319720715284,0.3838790091685951,0.35428092582151294,0.4141448619775474,-0.16249655885621905,-0.8025600733235478,-0.24474421655759215,0.2618789649568498,0.44868756644427776,0.9625796666368842,0.517503647133708,-0.5013981843367219,-0.2498912112787366,-0.26111424854025245,-0.21727328840643167,0.8886075960472226,-0.9309325972571969,0.6556966183707118,-0.6997643588110805,0.9681155625730753,-0.7459122757427394,0.6672025052830577,0.583872998598963,-0.9396717329509556,-0.9535476206801832,-0.33119464153423905,-0.2903113537468016,0.0203056070022285,0.2469748086296022,0.5405412251129746],"z":[-0.8620355678722262,0.02392245875671506,-0.569929460529238,0.4699360392987728,0.7118448494002223,0.9560876903124154,0.5913686999119818,-0.5307591115124524,0.5083254654891789,0.8047170420177281,-0.6858065812848508,0.0780474953353405,0.04350898787379265,0.33745899656787515,-0.6290063722990453,-0.9820437929593027,-0.2663784772157669,-0.7984619489870965,0.8431322663091123,-0.9087122329510748,-0.6928523182868958,-0.42858179192990065,-0.7521901936270297,0.19645891664549708,0.9565708162263036,0.33542850287631154,-0.5452650575898588,0.4062748192809522,0.8224870380945504,-0.6680060755461454,-0.4242794872261584,0.7189975390210748,0.5864775702357292,-0.9409508034586906,-0.9750805390067399,-0.9102110960520804,0.3024572217836976,-0.5644480301998556,0.04885470820590854,0.07024453114718199,-0.4807934993878007,-0.038393450900912285,0.502664368133992,-0.013528312090784311,0.4401617981493473,-0.06271158112213016,0.028998613357543945,0.22162390407174826,0.45165614783763885,0.184141936711967,-0.5637451848015189,0.19007160793989897,0.7238181559368968,0.6095616333186626,-0.6400305251590908,-0.06454587168991566,-0.3855346334166825,0.1587126008234918,-0.46362962992861867,0.9800687744282186,0.4572163298726082,0.7269659880548716,0.6356997294351459,0.6816193722188473,-0.978779005818069,0.15652806451544166,-0.9415416475385427,0.15182711975649,-0.2048257444985211,0.2679236070252955,0.7548141847364604,-0.0007548350840806961,0.8340789382345974,-0.9121103058569133,-0.6249167253263295,0.8742634654045105,0.12417158065363765,0.8869609162211418,0.5821149945259094,-0.9724427247419953,-0.2640463160350919,0.6328348568640649,0.15093513438478112,-0.44212254974991083,0.2630073274485767,-0.6192039926536381,-0.7580736172385514,-0.5281952517107129,0.21026617055758834,-0.3660461730323732,-0.22037255810573697,0.9936060807667673,0.6471665422432125,-0.16149461595341563,-0.32484815549105406,0.5774127012118697,0.3528835936449468,0.6300400267355144,-0.905067274812609,0.13864250807091594,0.31655448442324996,0.3665785836055875,-0.9395345882512629,-0.814040903467685,-0.3747126874513924,0.3499492509290576,-0.8605218851007521,-0.38941402500495315,0.8567051570862532,-0.1206435919739306,0.8376026563346386,0.73498221533373,0.7858211612328887,-0.034388805739581585,0.19234898826107383,0.3906562807969749,-0.42666920833289623,0.3285507280379534,0.7374231363646686,0.33745387475937605,0.1576458322815597,0.2274902332574129,0.023287194315344095,-0.21977574797347188,0.6745014623738825,-0.1617340361699462,0.05512198340147734,0.5657472512684762,0.8447276060469449,0.8781402464956045,-0.4889571121893823,0.5155797698535025,0.5517868823371828,-0.4450987819582224,-0.8708140468224883,-0.916342772077769,-0.28677411284297705,0.12843987066298723,0.38946694508194923,0.31550257792696357,-0.07899229228496552,0.8174849129281938,-0.5326362107880414,0.06352678406983614,0.964215281419456,0.9940963624976575,0.15378076117485762,0.4455891544930637,-0.6899076993577182,-0.8573200339451432,0.9007554166018963,0.37303759157657623,0.023598799016326666,0.060655005276203156,-0.2842136095277965,0.2074232967570424,-0.7205185075290501,0.02905033528804779,-0.7453469610773027,0.288496854249388,-0.5750552243553102,0.6928118676878512,-0.3569993912242353,0.9165209303610027,-0.8334777113050222,-0.6593951131217182,0.08256272692233324,-0.8831699043512344,0.8908248823136091,-0.9887643051333725,0.5618871194310486,0.0994578693062067,-0.5991509794257581,0.11698922794312239,-0.2878629006445408,-0.8328840942122042,0.6064122822135687,0.9965257165022194,0.10764776077121496,0.7472834936343133,0.7450520610436797,0.37311485409736633,-0.7751377965323627,0.18240766180679202,-0.48709672316908836,-0.9133123122155666,-0.020163698121905327,0.9412165526300669,0.2856044974178076,0.5651182131841779,0.8339861910790205,0.3161364342086017,0.7104828078299761,-0.31229804642498493,0.7807537675835192,-0.8949263547547162,-0.32042710529640317,-0.38381579238921404,-0.35443452280014753,-0.8640802917070687,-0.34451337810605764,0.4878073250874877,-0.18547224439680576,0.22821981459856033,0.605768334120512,0.1677217073738575,-0.8554775794036686,-0.319218585267663,0.4146335646510124,0.1919387229718268,-0.2561943484470248,0.247428007889539,0.3258167742751539,-0.30755958100780845,0.037730975076556206,-0.5916761346161366,0.016764795407652855,-0.8079704814590514,0.8897446077316999,-0.9983175732195377,0.6950846607796848,-0.4142060070298612,-0.8414937681518495,0.6455565369687974,0.17685344256460667,-0.12913756724447012,0.5526434420607984,0.6272940961644053,-0.9430092079564929,0.36284636752679944,-0.3228615350089967,-0.9958111736923456,-0.4386640335433185,-0.6414418667554855,-0.7865695166401565,0.06968509871512651,0.0062492541037499905,-0.9319618623703718,0.6560660214163363,-0.10314715141430497,0.795049540232867,0.7330458885990083,0.66095913015306,-0.27791136549785733,-0.1677991314791143,0.8294579801149666,-0.4040757603943348,0.9803677424788475,-0.5278265057131648,-0.5245140693150461,0.5267163538374007,0.9374653110280633,-0.020131514873355627,-0.9064808133989573,-0.44914925191551447,-0.12368401046842337,-0.3991880901157856,-0.31955194007605314,0.8102602753788233,-0.32743881456553936,-0.17325794883072376,0.0857395688071847,0.40076282946392894,-0.3719388931058347,-0.31558844819664955,-0.5242171511054039,-0.16205791756510735,0.9543051677756011,0.33824290335178375,-0.4402376441285014,-0.0254627731628716,0.03984093386679888,0.7758954195305705,0.5280567198060453,-0.6812988827005029,-0.31007506512105465,0.2200455623678863,-0.19544837484136224,0.09498627111315727,-0.6664351937361062,-0.6386665180325508,0.9061717297881842,0.4164715092629194,0.40453315200284123,0.29827053006738424,-0.7488937890157104,-0.7421832690015435,-0.11250729952007532,-0.6924959756433964,-0.6749772252514958,0.9653729116544127,-0.0852956916205585,-0.40674680192023516,-0.9483986515551805,-0.6261509135365486,0.9185759988613427,0.39945970894768834,0.972637542989105,0.8553941864520311,-0.5533264656551182,0.1917066015303135,-0.32378930412232876,0.7518493225798011,-0.18798796040937304,-0.9135949881747365,-0.8287417981773615,0.8202295806258917,-0.5588052705861628,0.3881834070198238,-0.1065350235439837,-0.26660272805020213,0.046646732836961746,-0.7657902222126722,0.03003914514556527,-0.9238862688653171,0.10543903009966016,0.462374908849597,0.06330453837290406,-0.9731129705905914,0.6290309554897249,-0.5939955981448293,-0.43032702011987567,-0.3175046448595822,-0.02997591532766819,-0.7760672187432647,-0.4560123812407255,-0.6133099156431854,-0.9616275047883391,-0.07564487121999264,0.07890981948003173,-0.5580645413137972,-0.056104003451764584,0.04619610123336315,-0.8528342782519758,0.36707602348178625,0.8068072013556957,0.481634387280792,0.5911056618206203,-0.6870911200530827,0.6588986152783036,-0.27900335751473904,-0.5917951264418662,0.6754197981208563,-0.13467494724318385,-0.0719614545814693,-0.9998906869441271,0.9405322875827551,0.55061527621001,0.3491655639372766,0.6920437775552273,-0.017948877066373825,0.5523952287621796,0.9545216890983284,0.05278034834191203,0.04098384082317352,0.8263842626474798,-0.3523171981796622,0.7412689700722694,0.26344133587554097,0.11837576748803258,-0.032445377204567194,-0.14971546130254865,-0.6584058948792517,-0.9765659482218325,0.353857334703207,0.8601726698689163,0.3447360168211162,-0.022288184612989426,0.36282625468447804,0.34229748835787177,-0.3854172471910715,0.06703316885977983,-0.6349844811484218,0.6981199337169528,-0.9787856293842196,-0.8475125697441399,0.18504724837839603,0.9019011887721717,0.9115536375902593,0.001982115674763918,0.4637769805267453,0.8326765275560319,-0.28381055453792214,0.7858185931108892,0.5155546530149877,0.4474234809167683,0.9616511119529605,0.7633955795317888,-0.08976126555353403,-0.8906400911509991,0.10206594225019217,0.44236316392198205,-0.9351331698708236,-0.03463815525174141,0.4288735566660762,0.6652655857615173,0.506596848834306,0.061735933646559715,-0.3316390374675393,0.7724246438592672,-0.23238757206127048,0.12398822605609894,0.7502057775855064,0.9029949512332678,-0.4201593669131398,0.286226118914783,0.9052880113013089,-0.3866119193844497,-0.7165411682799459,0.5223664832301438,-0.12558684824034572,0.7280304692685604,-0.3489447175525129,-0.49066642578691244,-0.7620655852369964,0.2627606503665447,0.431370051112026,-0.5061300229281187,-0.34634303767234087,-0.028889194130897522,-0.9235482886433601,0.5080093541182578,-0.639497400727123,-0.9198302552103996,0.1758692148141563,-0.8262064433656633,-0.8019052562303841,0.5462490692734718,-0.2927876436151564,-0.9889568518847227,-0.331436840351671,-0.6648245817050338,0.5761757967993617,0.5300359204411507,0.4275210667401552,-0.7875304375775158,0.7077077287249267,-0.024201704189181328,0.9320470746606588,0.7186546372249722,-0.6030988013371825,-0.041281240060925484,0.8311997926793993,0.1622755564749241,-0.8575114589184523,-0.5298152696341276,0.05039380816742778,-0.7037824466824532,0.5524149485863745,0.5721633918583393,0.00018152082338929176,0.6688188184052706,0.4818942532874644,0.03633240284398198,-0.5012436308898032,0.9541162382811308,0.9466363489627838,-0.1318857460282743,-0.7135427906177938,0.9091814993880689,0.09055475378409028,-0.12190478341653943,0.20872453413903713,-0.14657143549993634,-0.83641019416973,0.8310460587963462,-0.8600234626792371,0.4889260898344219,-0.7638999167829752,0.06288998480886221,-0.19008519314229488,-0.37754814606159925,0.00037618260830640793,0.13655956601724029,0.39989546686410904,0.05912183690816164,-0.6588174621574581,0.8747697276994586,0.7725740415044129,0.562806605361402,0.7387821516022086,-0.1660093949176371,0.1243813200853765,-0.370462532620877,0.6976724416017532,0.3839429561048746,0.6877680355682969,-0.21602177899330854,0.08013823023065925,0.8238517795689404,0.6300334972329438,0.40222537657245994,-0.3418981311842799,0.2679789341054857,-0.7829665769822896,-0.08301375713199377,0.6648798249661922,0.10641218489035964,0.5952356932684779,-0.6204718900844455,0.5588995655998588,-0.019940827041864395,-0.6533051976002753,-0.1831513005308807,0.8602672703564167,0.3447452085092664,-0.17831773729994893,0.7273400179110467,-0.004704941995441914,0.23458266956731677,-0.1486499602906406,0.6339467456564307,0.729325451888144,0.2805643482133746,0.5755788502283394,-0.9764981176704168,0.3642499726265669,-0.5411029779352248,-0.585090059787035,-0.14470608672127128,0.6352209257893264,-0.9942961558699608,0.2859579352661967,-0.9866665680892766,0.6547491117380559,0.16457662684842944,-0.8465694235637784,0.5598207307048142,-0.3190595870837569,0.5024372646585107,0.08943324489519,-0.1675480050034821,-0.14936571568250656,-0.2271877136081457,0.731517774052918,-0.838801528327167,0.6227708091028035,-0.3763930522836745,-0.761099633295089,-0.6411552564240992,-0.32777363481000066,-0.2440513987094164,0.8196558458730578,-0.39892593678086996,-0.36295653972774744,-0.5507698911242187,0.44051138451322913,-0.371110915672034,0.060542432591319084,0.8554631625302136,-0.5572191784158349,-0.5451218299567699,0.8096145135350525,-0.5111584705300629,-0.35629726527258754,0.7935108402743936,-0.591119711752981,0.32820896338671446,-0.9366809241473675,-0.2996652056463063,0.7373462826944888,0.2916042893193662,-0.20142087386921048,0.6734423222951591,-0.3431667909026146,-0.5727879027836025,0.3233755365945399,-0.20190898142755032,-0.8995474916882813,0.1710749724879861,0.1246350584551692,-0.9653890104964375,0.5607966794632375,-0.3968717288225889,0.6632929225452244,0.13584491331130266,0.2368101724423468,-0.3434389471076429,-0.5971523700281978,0.6813902016729116,0.3610556395724416,0.8432405386120081,-0.208933649584651,-0.1932845525443554,0.09719900600612164,0.4841537200845778,0.5834651291370392,0.8659123471006751,0.937843220308423,0.6502347528003156,0.964400973636657,0.04714069468900561,0.22080116625875235,-0.20743154222145677,-0.8698405688628554,0.9062500079162419,0.26251054322347045,-0.7327432604506612,0.8282271763309836,0.555465953424573,0.26155509194359183,-0.7869254411198199,0.23342417180538177,0.5495523340068758,0.3950640158727765,0.6712647587992251,0.005163909867405891,0.7998381098732352,-0.2558657671324909,-0.9414300522767007,0.2584213516674936,-0.7012328030541539,-0.32551536709070206,0.38340059854090214,0.44424710515886545,0.08754420513287187,0.46014817990362644,0.11988190887495875,0.37737095821648836,0.5585916470736265,0.805050830822438,-0.9558764854446054,0.8268554341048002,0.901804594323039,-0.09182673878967762,-0.9399496358819306,0.3399927602149546,0.8882003896869719,0.007770470809191465,0.04896039981395006,-0.3987981090322137,0.4302947325631976,-0.3540507694706321,-0.5332068935967982,0.5542770135216415,0.5977348433807492,-0.45762194506824017,0.6629357011988759,-0.3167408825829625,-0.6676771999336779,0.06334807770326734,-0.7411358710378408,0.52612813282758,-0.7618783991783857,-0.5691133183427155,0.24933660263195634,-0.10416063154116273,0.1879502860829234,0.5760204736143351,-0.870483829639852,0.6304396265186369,-0.6909118238836527,-0.9381612818688154,-0.5432413928210735,-0.9029211052693427,-0.47346503799781203,-0.4672829476185143,-0.7857932089827955,0.8319360404275358,-0.07077726582065225,0.17310892650857568,-0.46662859665229917,0.954620358068496,-0.6004760609939694,0.055825932417064905,-0.9352081893011928,-0.0405640690587461,0.43015379272401333,-0.6691550007089972,-0.18629516754299402,0.27691158885136247,-0.17770723532885313,0.03394021978601813,-0.48846152517944574,-0.5424640062265098,-0.9098162720911205,0.7705993531271815,0.8947052890434861,-0.033211744856089354,-0.9813622664660215,-0.13458661129698157,-0.11793998163193464,0.724738915450871,-0.29326113499701023,0.7716620452702045,-0.9146085451357067,0.8784370156936347,-0.8959958842024207,-0.2987214741297066,-0.6912518218159676,-0.3103559077717364,0.4664268749766052,-0.6980431377887726,-0.0906804003752768,0.7895345715805888,0.9820313206873834,0.8875392321497202,-0.7304653632454574,0.1195046710781753,0.7173116821795702,0.8256480288691819,0.26402386417612433,0.49713105103001,-0.16182926390320063,-0.5064090806990862,-0.3011606312356889,-0.9053533179685473,0.047990741673856974,-0.6158317881636322,0.006963310297578573,0.42042099591344595,0.30624429043382406,-0.9034495111554861,0.9585487870499492,0.7018070043995976,0.20291266171261668,0.38876133086159825,0.6090882075950503,-0.3450699388049543,-0.97201616037637,0.7166193965822458,0.9006580295972526,-0.8907309430651367,-0.9099108874797821,0.40871557546779513,-0.7448004614561796,-0.1894072163850069,0.4838304705917835,-0.9579195389524102,-0.9118966506794095,0.1647911942563951,-0.16003029560670257,0.11463527008891106,0.22848370717838407,0.30316436290740967,-0.9973371950909495,0.6520536444149911,0.2337278132326901,0.3307839808985591,-0.042744286358356476,-0.49488785956054926,0.36797139747068286,-0.9459565468132496,-0.36997112911194563,0.1911996272392571,0.19823394529521465,-0.05400753254070878,-0.980131262447685,-0.4336386686190963,0.4552478203549981,-0.40401991829276085,-0.4525006590411067,-0.9692393909208477,0.8907991014420986,0.6507878587581217,-0.7624853341840208,-0.09397435048595071,0.8263381044380367,-0.9221622655168176,0.05840321024879813,-0.8908328153192997,0.4897644757293165,-0.8941249810159206,-0.23223101068288088,-0.2773585431277752,-0.9164908016100526,0.33680278435349464,-0.5188383120112121,-0.6158729917369783,0.4392279330641031,0.7648391709662974,-0.6319669275544584,-0.9748735269531608,0.7008942188695073,0.12412582105025649,-0.3576360852457583,-0.40182835003361106,0.14464406855404377,-0.06442563934251666,0.21440388029441237,0.7152732382528484,0.4987981109879911,-0.9785993350669742,-0.6052399878390133,-0.502417269628495,0.9866225072182715,0.13365255715325475,0.6536185471341014,0.0012739598751068115,0.42115137400105596,0.9711870234459639,-0.33106077555567026,-0.7630708692595363,0.9884906350634992,-0.7131141875870526,0.5948094860650599,-0.12635516515001655,-0.29928916273638606,0.17446293914690614,-0.5323285018093884,0.6978639825247228,-0.9040516703389585,-0.24302680743858218,-0.773885440081358,0.5320161525160074,0.5386443696916103,0.5065671484917402,-0.4155464298091829,-0.7723148092627525,-0.8239150592125952,0.27828662004321814,0.6550707016140223,0.6136583928018808,0.7269880487583578,0.9096628553234041,0.6700611473061144,-0.9516283990815282,-0.7803646703250706,-0.23145211627706885,0.44894253415986896,-0.6283518676646054,0.10675863455981016,0.15966072166338563,0.8978403266519308,0.40234024776145816,-0.9927953532896936,-0.8785477154888213,-0.9087963565252721,0.9454672406427562,0.13155530905351043,0.8922292646020651,0.768994745798409,0.03589723678305745,-0.5667986609041691,0.4640374444425106,-0.6781961778178811,0.9512718813493848,0.13867188524454832,0.5570194767788053,-0.5674080243334174,0.8812937783077359,-0.7748543554916978,0.710025412030518,0.8158991979435086,0.867892843671143,-0.9693108522333205,0.4394473182037473,-0.4846756085753441,0.6007789107970893,-0.15878912527114153,-0.4402750786393881,-0.5866845389828086,-0.14745002053678036,-0.05953814834356308,-0.628563485108316,0.10403956100344658,-0.4574817204847932,-0.37073253374546766,0.42629085620865226,-0.8287792867049575,0.13316111778840423,0.8514460199512541,-0.24476898089051247,-0.8339396002702415,-0.006354016717523336,0.8849431164562702,-0.7719300133176148,-0.01659142831340432,-0.7678293390199542,0.3596977349370718,-0.8506661122664809,0.014858139678835869,-0.8561526932753623,0.546558543574065,0.7547096004709601,-0.895829601213336,-0.36824778746813536,0.9503814345225692,0.21980233071371913,-0.7588675715960562,-0.35803850600495934,-0.5450009265914559,-0.008826588280498981,0.6521896445192397,-0.5071882596239448,-0.7474776301532984,0.7752903304062784,-0.7080109831877053,0.5019974582828581,-0.7138829655013978,0.29210372595116496,-0.512931898701936,-0.5604231068864465,0.8170412434265018,0.09013090701773763,-0.7228444190695882,-0.726770824752748,-0.34669248666614294,-0.7300456399098039,-0.5589259401895106,-0.3185450001619756,-0.40616449480876327,-0.2693856591358781,0.31818257411941886,0.46207703137770295,0.3919140128418803,-0.5101333614438772,-0.27225028024986386,-0.3558248784393072,-0.6136110704392195,0.36138605372980237,-0.6547461720183492,0.41068403143435717,0.8555036606267095,0.11746888747438788,-0.3688090299256146,0.045744228176772594,0.040238147135823965,0.826235206797719,0.2930248901247978,-0.8680995460599661,0.44043392315506935,-0.5352263376116753,0.4398523988202214,-0.08848912315443158,0.9246482355520129,0.5680063907057047,-0.4237473960965872,0.9000320099294186,0.08955357735976577,-0.3651598719879985,0.3035952588543296,-0.40874347044155,0.09935882780700922,0.7209694148041308,-0.867106594145298,0.8505794159136713,-0.19440401997417212,-0.3867225698195398,-0.42444603238254786,-0.017005451023578644,0.5256566391326487,-0.5542154242284596,0.8997320788912475,-0.900436810683459,-0.4662705850787461,0.09853515913709998,-0.21014209929853678,0.018728707917034626,-0.7116251024417579,-0.7974524754099548,0.16296009393408895,0.2578805652447045,-0.13408619677647948,-0.19218957796692848,-0.6707810149528086,0.6618433841504157,0.14366155629977584,0.7874673521146178,-0.2791029424406588,-0.5614706980995834,-0.7990827560424805,0.29881492629647255,0.37225631112232804,0.6105705164372921,0.18303828546777368,-0.12220648862421513,0.7423785794526339,0.4741578456014395,0.03071242617443204,0.39765888499096036,0.5186200994066894,0.48319164384156466,-0.2543092495761812,-0.7678582454100251,0.22765661589801311,0.11559072835370898,0.034364978317171335,-0.5771885113790631,-0.03333780914545059,-0.40055311331525445,0.5072610056959093,0.33408924797549844,0.4034777479246259,-0.6800636905245483,-0.15404522279277444,0.9544631424359977,-0.9301905133761466,0.06616635480895638,0.07960777776315808,-0.5581008172594011,-0.9810089371167123,0.5223148562945426,-0.508276314008981,0.3722109366208315,-0.45039162412285805,0.13080924656242132,-0.3978816755115986,-0.4892865000292659,0.29342308826744556,0.025941764935851097,0.6175362933427095,0.8702988945879042,0.70855304133147,0.7784289247356355,-0.4489261079579592,-0.0696563720703125,0.7260380694642663,-0.38552392087876797,0.2279136278666556,0.08799680043011904,0.7922027502208948,-0.5578417093493044,0.8106740987859666,-0.6138780619949102,-0.37297469610348344,0.7810879345051944,-0.07441047159954906,0.8923716256394982,-0.9305567289702594,0.8220740999095142,-0.924795008264482,0.43395724426954985,-0.3964470406062901,-0.13406973564997315,-0.12336035212501884,-0.8589166216552258,-0.27942618634551764,0.527915810700506,0.23625801783055067,0.4346845536492765,0.20488010859116912,0.22961934516206384,-0.12098297383636236,-0.32433920074254274,0.16371994884684682,0.24610096961259842,-0.6709026289172471,-0.35506380954757333,0.9871938088908792,0.26482420368120074,0.42800167202949524,-0.7936999490484595,-0.5233644754625857,0.1045145457610488,0.7122126473113894,0.3341431934386492,-0.2511225985363126,-0.7715197708457708,0.6138455313630402,0.45226442674174905,0.6921312785707414,0.06670578429475427,-0.11712659383192658,-0.39486358035355806,-0.0992475375533104,-0.6120891184546053,-0.6105590094812214,-0.3327007042244077,-0.3843738557770848,-0.14445975190028548,0.5777919599786401,0.16750659327954054,0.6949963332153857,-0.882231576833874,0.4730720305815339,0.5834061028435826,0.9561683475039899,-0.05803300207480788,-0.3079140023328364,-0.6030293148942292,-0.26333327824249864,-0.968754562549293,-0.4630788154900074,0.8990782066248357,0.8997207381762564,-0.20213679177686572,-0.5119437999092042,-0.7886632899753749,-0.7164934589527547,-0.4924337938427925,-0.5038883574306965,0.5038312678225338,0.4858201825991273,0.5472320574335754,-0.3237758381292224,0.15314297936856747,0.054362759459763765,-0.4288903260603547,0.7248207950033247,0.9134079120121896,0.7914543352089822,-0.8339029178023338,0.5523671987466514,-0.18830618914216757,-0.0483693266287446,0.7838799157179892,-0.8229039488360286,0.7122909273020923,0.1428681341931224,-0.1583001255057752,-0.92466887133196,0.8186744349077344,0.6632177736610174,-0.7396790268830955,0.985694982111454,-0.5833018803969026,-0.32068520737811923,-0.5074317152611911,-0.39932172326371074,0.0979139287956059,-0.5132131180725992,0.5375140188261867,-0.5297401491552591,-0.6106174611486495,0.7639425317756832,-0.9362045796588063,0.03583050100132823,-0.9131337548606098,0.992756886407733,-0.40267969900742173,0.5936276824213564,0.3771550194360316,0.42834110651165247,0.05782603845000267,-0.06236197892576456,0.18873132718726993,0.1477911933325231,-0.9286093283444643,0.3246159115806222,-0.15500620799139142,-0.025644873268902302,-0.9051808160729706,-0.083462652284652,-0.2993927584029734,0.043840235099196434,-0.2965233223512769,0.6656000870279968,0.1930796024389565,-0.39254156732931733,0.6315069566480815,0.538839899469167,-0.17012947099283338,-0.816838750615716,-0.3853073390200734,0.6394103816710413,-0.22866116696968675,-0.6981173814274371,0.4281682064756751,0.8537274077534676,-0.5028922650963068,-0.5380821386352181,-0.9117503170855343,0.8378793317824602,-0.5867559337057173,-0.8610282293520868,-0.3857898162677884,-0.7939123469404876,-0.6236988212913275,-0.9627422168850899,-0.7111600283533335,-0.39975274773314595,0.41308866208419204,-0.5173621238209307,-0.9602445554919541,-0.3160563805140555,-0.22560773137956858,0.2435267618857324,-0.9255694635212421,-0.36946764029562473,-0.3942872048355639,0.07736096438020468,-0.05061011901125312,0.40787046682089567,-0.9058676837012172,-0.951588427182287,0.24686675146222115,-0.22772342013195157,-0.5580638409592211,-0.056926860474050045,0.6749378787353635,0.5195451420731843,0.4474002202041447,-0.5382398059591651,0.25913678435608745,0.7598813064396381,-0.335573919583112,-0.51632628031075,0.9636063487268984,-0.2945377863943577,0.44259229907765985,-0.9179952875711024,-0.43585036834701896,0.8101937668398023,0.10252405749633908,-0.7175301485694945,-0.34636325389146805,-0.07174122938886285,0.4877787418663502,-0.9618824091739953,-0.1403203564696014,-0.5564223239198327,-0.4334487672895193,0.1303024892695248,0.7667468329891562,-0.402602375485003,0.8223105622455478,-0.37470284989103675,-0.4595115385018289,0.6606133012101054,-0.3177726110443473,0.9953645663335919,0.37968857679516077,0.5191882727667689,-0.30270327208563685,-0.23056341847404838,0.916995270177722,-0.4217590996995568,-0.46739747608080506,-0.8025381430052221,0.11428701039403677,0.2256886581890285,0.37922183936461806,0.1344677652232349,0.6731347162276506,0.8081235657446086,-0.4125705510377884,0.4756467747502029,0.8385777026414871,-0.5585171529091895,0.17234410624951124,-0.65855109738186,-0.5986254648305476,-0.41523978114128113,-0.1418190822005272,-0.11225468758493662,-0.6521820281632245,0.37979535292834044,-0.11738269682973623,-0.8820737944915891,0.35797590343281627,-0.961297020316124,0.6215776107273996,0.5799404084682465,-0.7081194696947932,-0.5458240271545947,0.17602027021348476,-0.36111972527578473,0.9177399044856429,-0.29957153275609016,0.055793463718146086,-0.21867518732324243,-0.9956950135529041,-0.6347074890509248,0.4992798054590821,-0.41208457155153155,0.06612347904592752,-0.044676887802779675,0.2782282615080476,-0.9152764356695116,-0.18914844747632742,-0.05831464985385537,-0.26805437356233597,-0.21256950637325644,-0.7345481924712658,-0.8036564169451594,-0.5768995718099177,0.8033279613591731,-0.4567774389870465,-0.5664001684635878,-0.35636356472969055,0.1225204486399889,-0.809715773910284,-0.7414937769062817,-0.754609209485352,-0.24700356693938375,-0.8593319291248918,0.9483535960316658,0.7113540107384324,0.5426664156839252,0.8698473586700857,-0.3938012095168233,-0.6592498943209648,-0.9148379950784147,-0.07872406812384725,0.8346531568095088,0.7986783757805824,0.8721612310037017,-0.7051778677850962,-0.6542990226298571,0.6877785599790514,-0.5164395282045007,-0.6084958189167082,0.028304155450314283,0.9988064533099532,-0.5595975965261459,0.1295666377991438,0.111490233335644,0.6538656307384372,-0.8820106126368046,-0.9498391845263541,0.09480531886219978,-0.017822774592787027,-0.4264429588802159,-0.4830643143504858,-0.410897352732718,0.28681729175150394,0.6639617765322328,0.9485889645293355,0.6530094998888671,-0.6639953404664993,0.8537665945477784,0.4429246047511697,0.5704996166750789,-0.9872751869261265,-0.6557035837322474,0.25928918085992336,-0.4035876439884305,0.8725148169323802,0.5586132104508579,-0.5965834953822196,0.6887421873398125,0.3868114687502384,0.29752098210155964,-0.5661708489060402,-0.6689184042625129,-0.6183303133584559,0.2338088545948267,-0.5624611829407513,0.028968614991754293,0.6128802271559834,-0.2766364053823054,0.5744822220876813,-0.11335088312625885,-0.32114986050873995,0.15923388628289104,0.6154184374026954,0.8378194645047188,-0.2526247641071677,0.3713125274516642,0.24200233351439238,0.9781735548749566,-0.6685232724994421,-0.8703295271843672,-0.3694599545560777,0.16769536770880222,0.9622563710436225,-0.22582173999398947,0.8670545956119895,-0.4449087795801461,0.2578407130204141,0.10424048826098442,-0.2768113291822374,0.8148474437184632,-0.29857838759198785,0.6548532885499299,-0.8101131860166788,0.4243736332282424,-0.7109358296729624,0.939640689175576,-0.08361654449254274,0.2824563351459801,0.547185561619699,-0.22217129124328494,-0.06815759232267737,0.4557967884466052,0.2679083445109427,-0.498730908613652,-0.9751207744702697,0.32144295144826174,0.6095221866853535,-0.5770761547610164,0.24038735311478376,0.14338745921850204,-0.7522680251859128,-0.5434793578460813,-0.15337036782875657,-0.06606501713395119,-0.7220052531920373,0.5482394909486175,0.21702158031985164,-0.9560619764961302,-0.4729981650598347,-0.7726197051815689,-0.6781781646423042,0.3804022651165724,-0.8779934425838292,0.9746016720309854,0.9367643762379885,0.24849011655896902,0.6410603211261332,0.3493660781532526,-0.36680456064641476,-0.254567873198539,0.11432839883491397,-0.8305998835712671,0.8189030210487545,0.6673028343357146,-0.0757269780151546,0.5303701739758253,-0.2846781201660633,0.29048274271190166,0.42780105490237474,0.7881307732313871,-0.3132857750169933,0.7567889983765781,0.9573338166810572,-0.7298509669490159,-0.4430542499758303,-0.39024074329063296,-0.2214524084702134,-0.11389995692297816,-0.5805471809580922,-0.5541244717314839,0.6249321918003261,-0.20522272400557995,0.505527803208679,-0.8249421170912683,-0.42205559834837914,-0.8502509160898626,0.9512357795611024,0.06930162804201245,0.5009886655025184,0.8805136163718998,0.11564668780192733,0.7777352198027074,0.710100457072258,-0.9722273098304868,0.18061043228954077,0.025178701616823673,-0.3390159229747951,0.19648266630247235,-0.05262659303843975,-0.036321528255939484,0.08443245152011514,0.5173838743939996,0.35454408917576075,0.23337365640327334,0.8687696410343051,0.34250276861712337,0.591177727561444,0.1404698994010687,0.41064698714762926,0.6528466115705669,0.31299421517178416,0.195929822511971,-0.393616309389472,-0.19520543422549963,-0.19815840711817145,-0.36518233036622405,-0.4157983623445034,0.228822348639369,-0.6363632436841726,-0.13488599937409163,-0.5194692434743047,0.5574847324751318,-0.9312027338892221,0.7800539694726467,0.7708693142049015,-0.18244011839851737,-0.9280253420583904,-0.12809512531384826,0.8894949592649937,-0.14610548270866275,-0.9355620010755956,-0.736940607894212,0.036311720963567495,-0.190133566968143,-0.5232135127298534,0.8739528963342309,0.698479893617332,0.7690514293499291,0.2607485465705395,0.3101089675910771,0.44805104099214077,-0.6801701686345041,-0.8139297240413725,0.5568021857179701,0.526985689997673,0.35726193618029356,0.0057145399041473866,-0.21875893883407116,-0.5980197270400822,-0.45118842413648963,0.2775011663325131,0.8983307490125299,0.2173677566461265,-0.636370237916708,-0.9906636378727853,0.4081202610395849,-0.038951830472797155,-0.11589378211647272,-0.8799258763901889,0.4285806007683277,0.8808005577884614,-0.41497845062986016,-0.8592723198235035,-0.43207832518965006,0.059173980727791786,-0.2525498210452497,-0.6347306217066944,-0.7767268102616072,0.7451827577315271,0.6503864917904139,0.8731724079698324,0.8593806037679315,0.17843583971261978,0.2633416876196861,0.7125779530033469,0.08267485722899437,-0.35494398744776845,0.8571137222461402,-0.36755340825766325,-0.2836817870847881,-0.1721460777334869,0.037304702680557966,-0.394986926112324,0.20334718003869057,0.10816839383915067,0.020338889211416245,-0.27685886761173606,0.9049112643115222,-0.531381850130856,-0.8615346685983241,0.7972946763038635,0.6889012907631695,-0.8226010510697961,0.5604811259545386,0.4967194376513362,0.8585325567983091,-0.15685071563348174,0.969378937035799,-0.8930706912651658,0.7005173079669476,0.9338679974898696,0.4823753787204623,0.3745049089193344,-0.9685873845592141,-0.48540526954457164,0.16995403869077563,0.14066577702760696,-0.031276888214051723,0.5095536154694855,0.17305365530773997,-0.175173400901258,-0.33062515687197447,0.5628019515424967,0.9286684049293399,0.34360975632444024,0.6145599707961082,-0.8411582768894732,-0.26171280443668365,0.6908015101216733,-0.2780472422018647,0.9876490891911089,0.9337276509031653,0.38369057374075055,0.0875820373184979,0.8163842456415296,-0.7280362821184099,0.5390668632462621,0.7826625090092421,-0.7365123736672103,-0.6181088648736477,-0.3423448856920004,0.8396622776053846,0.40981492726132274,-0.7239685445092618,0.38737250957638025,0.6229892414994538,0.9097017929889262,0.7350785345770419,-0.3769070003181696,-0.059020830783993006,0.10625296318903565,-0.046973282005637884,0.6539052864536643,0.28585696406662464,-0.061229064129292965,-0.8039623559452593,0.35344229359179735,-0.06534780282527208,-0.8573070359416306,0.6420407686382532,-0.6231883377768099,0.41234194161370397,0.18577717011794448,-0.11805653246119618,-0.21447174670174718,0.7451739571988583,-0.9925299785099924,-0.7586231441237032,-0.11635073786601424,-0.2093949862755835,0.16478606313467026,-0.09527810057625175,-0.2393243066035211,0.6653704638592899,-0.4578522960655391,0.32285384042188525,0.1259070448577404,-0.5203609792515635,0.8785900548100471,0.3033118103630841,-0.5071355444379151,0.7466212306171656,0.627722489181906,-0.23630549618974328,0.6712857978418469,-0.4222011626698077,0.7263550315983593,0.6528659965842962,-0.2141810581088066,0.0824027843773365,-0.636013600975275,-0.4406865229830146,-0.1880210842937231,0.5226811557076871,0.6145212389528751,0.6460336586460471,0.49292149441316724,0.8864243179559708,-0.37273393012583256,-0.5928510641679168,0.9794622445479035,-0.17050132621079683,-0.4244247046299279,-0.06333954352885485,0.0634210235439241,0.9345803395844996,0.42135209310799837,0.9090986722148955,0.3930587274953723,0.4222065722569823,0.8072876860387623,-0.4259404488839209,-0.21293078921735287,-0.5491949082352221,-0.7789844297803938,0.8812547870911658,0.23846810590475798,0.9569745357148349,0.7203257782384753,-0.5246284985914826,-0.08851457620039582,-0.6527861934155226,0.1963941426947713,0.19860998261719942,-0.7399817653931677,0.9814248788170516,0.17375016445294023,0.590954891871661,0.2730156206525862,0.5271061384119093,0.8040569932200015,0.8079050276428461,-0.6547049442306161,-0.29438930843025446,-0.625638207886368,0.331858157645911,-0.42249846225604415,0.09097605291754007,0.2664302522316575,-0.02856736071407795,0.7456553294323385,0.9973520501516759,-0.5960790528915823,-0.3050095522776246,0.772214304190129,-0.06366621190682054,0.8047091504558921,-0.3133994787931442,0.15922039560973644,0.5323782181367278,0.8707539299502969,0.29208805738016963,-0.7499440335668623,0.07980203349143267,0.21920739207416773,-0.19281166838482022,-0.3806224698200822,-0.8454295471310616,0.4221257637254894,0.31654207967221737,0.47741726180538535,-0.5510088219307363,-0.4232982872053981,-0.2901433617807925,0.4245181269943714,0.9407629645429552,-0.14416883885860443,0.7662337892688811,0.7663558218628168,-0.29956946009770036,-0.7363414848223329,-0.32050865795463324,0.7504031895659864,0.741376937367022,0.7479603700339794,-0.965814592782408,0.36943313013762236,0.8949067485518754,0.9127163859084249,0.949257810600102,0.7190091819502413,-0.9143275585956872,0.5506775733083487,0.9325277591124177,-0.32949036406353116,0.287753117736429,-0.1882637357339263,-0.03947788244113326,0.40637300396338105,0.5310633718036115,0.9844886744394898,-0.932416872587055,-0.8290981505997479,0.5247301617637277,-0.5437160576693714,-0.23750004451721907,-0.8212076998315752,-0.16727900225669146,0.11340339574962854,0.8974554156884551,0.15354748629033566,0.3180986763909459,-0.8980518211610615,0.5138730192556977,0.567187299951911,0.6795633155852556,-0.16124925343319774,0.8317306181415915,-0.8933228733949363,-0.3515884862281382,0.1979545741342008,0.6542014172300696,0.027346704620867968,-0.8532075244002044,0.8396424949169159,0.10747388377785683,0.4514499851502478,-0.2749868459068239,0.7530272849835455,0.9253262290731072,-0.08173055946826935,0.29260408924892545,0.8408997389487922,-0.6667361501604319,0.9499123143032193,-0.9484630571678281,-0.4880139725282788,-0.0671613602899015,0.13302204431965947,0.860903229098767,0.269935289863497,-0.681261045858264,0.5905978619121015,0.36114622140303254,-0.5781766660511494,-0.7355944351293147,0.9817813946865499,-0.1316302651539445,0.8615100486204028,-0.8779314663261175,-0.04996907198801637,-0.30416713980957866,-0.21091743605211377,-0.8711962751112878,-0.8246301040053368,0.17197142075747252,-0.5041737500578165,-0.62415761500597,-0.37897973880171776,0.5783128328621387,-0.25733000924810767,0.7087987097911537,-0.9920763848349452,0.8483451027423143,-0.07220646273344755,-0.1785424342378974,0.21117651602253318,0.8659033607691526,-0.07849660096690059,-0.8159552444703877,0.7301783319562674,0.8415151303634048,-0.16862489329650998,0.6353421611711383,-0.7924686498008668,-0.3950750404037535,0.3401062577031553,-0.7777591049671173,0.8051225342787802,0.9487557117827237,-0.9401410799473524,0.6208696910180151,0.9377283481881022,0.8984578885138035,0.5108781233429909,-0.41743557527661324,-0.7955368380062282,-0.027209305204451084,-0.9450138108804822,0.6283214297145605,-0.12872669287025928,0.2538157496601343,-0.12741970736533403,-0.6012400528416038,0.938294779509306,-0.8953984538093209,-0.29306578170508146,-0.18441662983968854,-0.9424566407687962,-0.8591566290706396,0.6374851274304092,0.3223229022696614,-0.5742493905127048,0.21280890237540007,-0.6131097627803683,0.9428487326949835,0.5782222994603217,0.10200548358261585,0.7098787194117904,-0.2130602984689176,-0.4383660815656185,-0.3095602598041296,-0.0706841591745615,0.2253593411296606,0.07152802823111415,0.4908530409447849,-0.3318884535692632,-0.559372543822974,0.9134300057776272,-0.020680889952927828,-0.519526185002178,-0.49921511858701706,-0.7226582528091967,0.344003239646554,0.03012516163289547,-0.3198978779837489,-0.29190237168222666,0.14676314312964678,0.0706822844222188,-0.580522533506155,-0.8363044708967209,0.05873044626787305,-0.5958706508390605,-0.34731593634933233,0.6110334037803113,0.5746993524953723,-0.7364306463859975,0.21503740642219782,-0.6624029064550996,-0.3718519313260913,-0.9599872594699264,-0.8203747356310487,-0.9138511903584003,-0.9895788989961147,-0.6996409040875733,-0.7153841461986303,0.5758371348492801,-0.2636233218945563,-0.3960969871841371,0.2067310307174921,-0.9018651293590665,-0.7808940168470144,0.9883710644207895,-0.968386135995388,-0.11227265559136868,0.8279987727291882,0.4978806125000119,-0.9555524489842355,0.270273226313293,-0.020554674323648214,0.6699720635078847,0.7362769916653633,0.9906480102799833,0.41051577776670456,-0.039009629748761654,0.33383430214598775,-0.5575329922139645,0.1774902972392738,-0.717267150990665,0.8435404100455344,-0.053407066501677036,-0.23704345291480422,-0.7358539053238928,0.9282445353455842,0.004927677568048239,0.7878326321952045,0.459641691762954,-0.03233693307265639,0.3198369946330786,-0.908546244725585,-0.15499949036166072,-0.864555626641959,0.47668320732191205,-0.06415617931634188,-0.6406472749076784,-0.5467843455262482,0.8483372200280428,0.4094568621367216,0.0033968742936849594,-0.7871612724848092,-0.6104431706480682,0.4647476593963802,-0.8721902305260301,-0.8739858465269208,0.5126245678402483,0.6711814622394741,0.028553984127938747,0.14231070969253778,-0.8835895522497594,0.631440416444093,0.9373358613811433,0.6283779763616621,0.9777482906356454,-0.8782748621888459,0.43868020828813314,0.3584665455855429,-0.40377260698005557,-0.0496251592412591,0.5717930877581239,-0.5847293259575963,-0.7335761897265911,0.3584672724828124,-0.6109760068356991,0.14762859139591455,0.15235350839793682,-0.9297590726055205,0.5680502825416625,0.22654807474464178,0.10649018036201596,-0.2553408411331475,0.5425774930045009,0.1690763202495873,0.47340776352211833,-0.3341375207528472,0.7253430774435401,-0.48872643942013383,0.374434772413224,0.02000934863463044,-0.6140967127867043,0.9256351399235427,0.6705059800297022,-0.8265286544337869,-0.44164055632427335,-0.4821957857348025,-0.3797117951326072,0.30343445437029004,-0.5297558410093188,0.2722302465699613,-0.6851472966372967,0.0832786369137466,-0.6506899534724653,0.052536694798618555,0.6613390799611807,0.09762163599953055,0.5791105716489255,-0.3191010127775371,0.7695416314527392,0.9321961137466133,-0.08545378223061562,0.023181430995464325,-0.21598377544432878,0.16607050504535437,0.5216409526765347,0.40534923365339637,-0.5782908224500716,0.362661506049335,0.1804953054524958,0.9718394144438207,-0.4260734496638179,0.39785867603495717,0.7821005554869771,0.3703242470510304,-0.42890780232846737,-0.9976481450721622,-0.5587040176615119,-0.7296485519036651,-0.8356492449529469,0.2877614009194076,-0.45888828253373504,0.9674569056369364,-0.5173242543824017,-0.7547183320857584,0.4443722735159099,-0.29791154339909554,-0.2720549991354346,-0.35463903844356537,-0.9950794177129865,0.5581002281978726,0.25244895135983825,-0.8209020309150219,0.7095804191194475,-0.2453883197158575,0.6030710344202816,0.27055289782583714,0.6762322969734669,0.650051785632968,-0.8923025070689619,-0.023040757980197668,-0.3301317859441042,0.13748940639197826,0.9029080173932016,-0.6347522889263928,0.21144624706357718,0.8420321010053158,-0.6645279182121158,0.684592426288873,0.8590390076860785,-0.06153197819367051,0.6612402452155948,0.5523582887835801,-0.14417722448706627,0.004138290882110596,-0.9892236939631402,0.30135525250807405,0.35340498900040984,0.486790940631181,0.047261066269129515,0.9084618170745671,0.8938121604733169,0.5859997631050646,-0.8467201106250286,-0.5604685889557004,-0.8524899687618017,0.456566390581429,-0.07352025341242552,-0.07822985481470823,-0.7870834227651358,0.35793263791128993,-0.7108828709460795,0.5210107956081629,-0.013343480415642262,0.45250534219667315,-0.5021945023909211,0.5129103590734303,0.2760349656455219,-0.27758570527657866,-0.6069489549845457,0.2960999608039856,0.3066446022130549,0.5057132188230753,-0.768526969011873,0.8338970299810171,0.774031643755734,-0.8439278076402843,-0.7445347746834159,0.22540280083194375,0.9274021261371672,-0.7549926894716918,-0.027172303292900324,-0.14200109662488103,-0.501878977753222,-0.2730268482118845,0.1454056571237743,-0.1339044515043497,0.24858406512066722,0.8500785110518336,-0.42312601720914245,0.02893052203580737,-0.8967064376920462,-0.8229540972970426,-0.18709241645410657,-0.4861832386814058,0.4557866076938808,0.5060115442611277,0.5919401398859918,-0.26127747585996985,0.5450069406069815,0.40675540594384074,-0.5217594085261226,-0.3023463534191251,-0.5324011351913214,0.08399568777531385,0.265186364762485,0.7677463642321527,0.9844103003852069,0.49248052714392543,-0.9041702677495778,-0.1329312464222312,-0.09760082187131047,-0.8837400740012527,0.8640207946300507,0.628780641593039,0.6445719851180911,0.6822740822099149,0.12695242930203676,-0.11745091853663325,-0.828309724573046,0.39487014804035425,-0.3262119689024985,-0.11595966387540102,-0.3086311835795641,0.5021456554532051,-0.2472763885743916,-0.3396582561545074,-0.19524953002110124,-0.5845522745512426,-0.7546507050283253,0.44481899216771126,0.3499752376228571,-0.7226572758518159,0.6642335085198283,0.9744615047238767,0.7724232180044055,0.1194398426450789,0.7242735568434,-0.6554841049946845,0.9724380825646222,0.27188219176605344,0.5045417458750308,-0.2625124924816191,-0.555234685074538,0.448947689961642,-0.11439393740147352,-0.601050250697881,0.05382986878976226,0.727119860239327,0.8610818525776267,-0.13727815030142665,0.16782277962192893,-0.5971892760135233,0.46081866044551134,0.1772607541643083,-0.5603224541991949,-0.5983818746171892,-0.716909899841994,0.7792101744562387,0.6825270582921803,0.1539563941769302,0.18762275390326977,0.4029013733379543,-0.5806169863790274,-0.39659724198281765,0.3218814651481807,-0.5434232270345092,-0.28875037049874663,-0.17062003770843148,-0.020162934437394142,0.7080302317626774,0.630876044742763,-0.9032585425302386,-0.14818880707025528,-0.8297350858338177,0.5615085959434509,0.009513341821730137,0.209840873721987,-0.004955342970788479,-0.6628526682034135,-0.25859555369243026,-0.9659066936001182,0.33730903873220086,0.3894516001455486,-0.5166316535323858,0.9029199811629951,-0.36102495808154345,-0.6663708896376193,-0.9527112236246467,-0.16386311640962958,0.5943639134056866,0.3945703604258597,-0.6992112598381937,-0.7714501065202057,-0.6208970281295478,0.191710505168885,-0.9267523800954223,-0.9818488890305161,0.10038880351930857,-0.02259359834715724,0.10210893861949444,0.9061494646593928,0.7620943421497941,0.1552925263531506,-0.5772602176293731,0.8901615818031132,-0.7848645839840174,0.39677847689017653,-0.22617201507091522,-0.17755867261439562,-0.7486408767290413,-0.7258836780674756,0.3754128310829401,0.3053602115251124,-0.802966367918998,0.5860908962786198,-0.6752203516662121,0.01824587769806385,0.6437468910589814,0.2853117138147354,0.2537034600973129,0.35982832685112953,0.4257449395954609,0.6025788839906454,-0.5653464128263295,0.23211276764050126,-0.16265364969149232,-0.35231004329398274,-0.63975183153525,-0.3370543625205755,0.9731026105582714,0.11794909974560142,0.5901030078530312,-0.07304198015481234,0.4447019430808723,-0.3090164843015373,-0.5850010584108531,0.5927326320670545,-0.01775406813248992,-0.9389841915108263,-0.6879636840894818,0.5861566527746618,0.5776954842731357,-0.4597623967565596,-0.12417104700580239,-0.7001673700287938,-0.3002531058155,0.10033605666831136,-0.339927208609879,-0.9865611582063138,-0.5040612872689962,0.2465388490818441,0.23439049255102873,0.5461527886800468,0.8718928387388587,-0.9550830004736781,-0.8014313671737909,-0.32731087878346443,-0.697179461363703,-0.49892641277983785,-0.03560743108391762,-0.15902958996593952,0.8805938167497516,-0.9009785512462258,0.3376415600068867,-0.604057942982763,-0.38529315777122974,0.3861983995884657,0.06956312013790011,0.8753500347957015,-0.6222094455733895,-0.028299226891249418,0.39279057923704386,-0.1788551053032279,0.1889592595398426,-0.9200088568031788,0.6333426721394062,-0.42404814437031746,-0.7760792900808156,0.8067476036958396,0.9753214474767447,-0.541500321123749,0.8494065217673779,-0.3433680715970695,-0.9071907615289092,0.8808213463053107,0.977947932202369,-0.8823880921117961,-0.3439415171742439,0.06233363272622228,-0.13744545355439186,-0.23519266536459327,0.08394345873966813,0.9688148754648864,0.5145778339356184,0.046932280994951725,-0.8355535655282438,0.7426876425743103,-0.19042548025026917,0.2673288891091943,-0.21652483940124512,0.5686534051783383,0.30391909601166844,0.9899017130956054,0.5923022925853729,-0.1343260258436203,-0.46084992587566376,0.3177860057912767,0.20115910191088915,-0.9277525003999472,-0.13470615725964308,0.9327221354469657,0.8948823707178235,0.8483185428194702,0.9194443472661078,0.7134728613309562,0.4878219095990062,-0.014574078842997551,-0.4683344676159322,-0.8910488905385137,-0.18192384578287601,-0.9622218897566199,-0.5948002352379262,0.37959977984428406,0.9578465260565281,-0.3027092185802758,-0.7468640636652708,0.3432510099373758,0.26252897595986724,-0.7535745222121477,-0.9034263337962329,0.23961709626019,0.4329279223456979,-0.019170145504176617,0.9967229277826846,-0.5205872426740825,0.9325553006492555,0.897696546278894,-0.9759040921926498,-0.08631865354254842,-0.33434199215844274,-0.5775189576670527,0.11465194588527083,-0.745252073276788,-0.34283681493252516,-0.3792997794225812,-0.034542717039585114,0.6755131762474775,0.5807092357426882,-0.8070529717952013,-0.8919649971649051,-0.3496169652789831,-0.9887303402647376,-0.9475031099282205,-0.384697113186121,-0.49706159299239516,-0.46911695320159197,0.9225928499363363,-0.6943043479695916,-0.9706694167107344,-0.9253096710890532,0.254691265989095,-0.1046312116086483,0.10303940204903483,-0.7899287678301334,-0.8478264971636236,0.6965397107414901,-0.08329542865976691,-0.33032276341691613,0.05001646326854825,0.4935352364555001,-0.8490729918703437,0.7028695740737021,0.6186809609644115,0.438773216214031,0.6584380283020437,-0.42375253327190876,0.08184027811512351,-0.7630802160128951,-0.9419873720034957,0.3427939065732062,0.15801984118297696,-0.7637260416522622,-0.5383897176943719,0.3524634325876832,0.5139411194249988,-0.7930825240910053,-0.6547296987846494,0.5428436030633748,-0.1031803316436708,0.4786195997148752,0.29489128245040774,-0.1006182343699038,-0.8972843284718692,-0.6036397614516318,0.6350841652601957,-0.5472410819493234,-0.00893605500459671,-0.06391889601945877,0.9396145176142454,0.7217911700718105,0.15749121690168977,-0.6520574619062245,-0.5620925449766219,0.28256444400176406,-0.6602565101347864,0.4345763954333961,0.8171099401079118,0.694030256010592,0.8278347179293633,0.9640503427945077,0.5778251080773771,-0.16685894737020135,0.896861900575459,0.9622130412608385,-0.3089364366605878,0.6953702149912715,0.13392232917249203,-0.6857542698271573,0.9642602768726647,-0.17966151516884565,-0.6836259015835822,-0.23923896299675107,-0.3015229990705848,0.21958973165601492,0.8692559981718659,-0.10973311820998788,0.8621528805233538,0.4210324971936643,0.6581954099237919,0.997483981307596,0.31970789562910795,-0.7301516779698431,0.27025581430643797,0.23190998611971736,0.13954853964969516,0.7636740212328732,0.09862610371783376,0.24087585462257266,0.581290936563164,0.7626377986744046,0.21828236803412437,-0.007712356746196747,0.6247731922194362,0.7682839022018015,0.7258169008418918,-0.07296065520495176,-0.8110369141213596,-0.16550521226599813,-0.10134405409917235,-0.7644246551208198,-0.903272005263716,-0.7402306264266372,-0.2298745894804597,-0.5528565305285156,0.028291549999266863,-0.7771673551760614,0.27099523413926363,-0.8450165614485741,0.14917249651625752,0.8787036235444248,0.7554026986472309,-0.31463530706241727,0.5890915687195957,-0.6477305050939322,0.7629280611872673,0.11828504083678126,-0.25048052333295345,-0.9830334866419435,-0.5707511114887893,0.8591758157126606,-0.38175814505666494,-0.088062375318259,-0.39752341667190194,-0.04404437681660056,-0.6735521508380771,-0.34045539144426584,-0.06727879587560892,-0.1513256742618978,0.9502801294438541,0.7003973098471761,0.9076469554565847,-0.013231109827756882,-0.36040025670081377,0.15649739420041442,-0.7798095196485519,-0.6840033833868802,0.1745579051785171,-0.1913216756656766,-0.009468445554375648,-0.09846500353887677,-0.3330488121137023,0.4877407727763057,0.5739440862089396,-0.990429388359189,-0.07007007766515017,-0.18281244905665517,0.1466950634494424,0.8078476372174919,-0.7874095081351697,0.7580118137411773,0.11471591657027602,-0.5413124533370137,-0.6268930565565825,0.41622333554551005,0.1649744100868702,0.13549649436026812,-0.34255849104374647,0.465207789093256,0.1978776059113443,0.562929873354733,0.3401137636974454,0.1733984281308949,0.7531520519405603,-0.8970079403370619,-0.35164262959733605,-0.9261133642867208,0.7383504118770361,-0.7134086955338717,0.1436940166167915,-0.5372929219156504,0.26518058963119984,0.16861606389284134,-0.3075522854924202,-0.5714604398235679,0.3220608211122453,0.10017240280285478,0.8713024407625198,-0.13602739665657282,0.8709011836908758,-0.7381495041772723,0.44302607979625463,0.770189015660435,0.5546796061098576,0.9097355320118368,-0.9730306374840438,-0.9246307942084968,0.3382813255302608,0.5256216712296009,-0.3547167247161269,0.9516823892481625,-0.4949862230569124,0.6434303033165634,0.4121286026202142,0.13679804047569633,-0.47280737198889256,-0.20281462278217077,-0.37656536931172013,-0.24251349875703454,-0.38559593074023724,0.09799438435584307,0.024841272737830877,0.7918567829765379,0.2696159556508064,0.9723495286889374,0.40357059706002474,0.6729302396997809,-0.2966426080092788,-0.8625733349472284,0.047482730355113745,0.5071978154592216,-0.4363259528763592,0.17735614627599716,-0.3736603045836091,0.9693344230763614,-0.7816170072183013,-0.06073234975337982,-0.13850564742460847,0.9161981293000281,0.6304773986339569,0.16791669046506286,-0.6841593687422574,0.13392201345413923,0.5472850715741515,-0.29538700357079506,-0.1917593185789883,-0.7118467418476939,0.4029102106578648,0.6782980835996568,-0.9392763022333384,-0.9699822906404734,0.2796720191836357,0.8892759438604116,0.347714273724705,0.8580944482237101,-0.10182947479188442,0.8673568787053227,-0.3346884334459901,0.40063362987712026,-0.6943439855240285,0.5564352115616202,0.7480396125465631,-0.4623837247490883,-0.09180432325229049,0.30675773369148374,0.8526048585772514,0.758375387173146,-0.8545532561838627,0.1999526433646679,0.6093403603881598,-0.44322660425677896,0.1839675740338862,0.34553970117121935,-0.22579529229551554,0.7819769401103258,0.7062411857768893,-0.3712263898923993,0.9493738631717861,-0.9711403283290565,-0.9820549101568758,-0.9415935440920293,-0.7835963503457606,0.6132790762931108,0.21938989590853453,0.2248209468089044,0.44262491911649704,-0.14381273556500673,-0.2667369758710265,-0.9495268990285695,0.14851846313104033,-0.14199203345924616,-0.9169307295233011,0.6178647559136152,-0.5913518127053976,-0.8875628244131804,-0.9780996302142739,0.5339870667085052,0.7384771364741027,0.5122947725467384,-0.24970078328624368,0.2304286491125822,0.940123007632792,-0.8267792705446482,-0.9314853395335376,-0.3892092602327466,-0.7992485300637782,-0.39635914377868176,0.3756366493180394,-0.9951586215756834,-0.35203590197488666,-0.4506070278584957,-0.5059929294511676,0.8214970440603793,-0.04464709339663386,-0.6837154631502926,0.06705445563420653,0.11910368455573916,-0.9093065755441785,-0.7958984784781933,-0.6156363477930427,0.4904979453422129,0.5057750004343688,0.8493115371093154,0.545426307246089,-0.9634847114793956,0.6769939856603742,0.9979281700216234,-0.7222517924383283,0.43401758233085275,-0.7948205261491239,0.017039329279214144,0.8198671089485288,0.6623749770224094,-0.5324645335786045,-0.3731558062136173,0.8265729658305645,-0.28252790961414576,0.8810210954397917,0.7322505707852542,-0.9327725959010422,0.7681813221424818,-0.4625553139485419,-0.9007844584994018,0.8161804010160267,-0.9882242400199175,0.7012974149547517,-0.5471662594936788,-0.05317970598116517,-0.030957087874412537,0.09156560432165861,0.2526730098761618,-0.4689674722030759,0.8041607360355556,0.46960298623889685,-0.0020411862060427666,-0.15143105760216713,-0.530308781657368,-0.6294710538350046,0.19296462088823318,-0.6742907278239727,0.1563486522063613,0.2788774692453444,-0.5276346616446972,0.20711656752973795,0.41417310619726777,-0.320338471326977,-0.5294598750770092,0.3949650418944657,-0.406637164298445,0.18590228306129575,-0.5490653775632381,-0.8593243965879083,-0.8986313086934388,0.6117130829952657,-0.2585715465247631,-0.6141526876017451,0.7922244304791093,-0.700860237237066,0.05256936280056834,-0.2904283842071891,0.2277513174340129,0.6071344488300383,-0.6491411225870252,0.1294527999125421,-0.022586082108318806,0.4035325269214809,0.8966645584441721,-0.8327783779241145,-0.06318501010537148,-0.003270076122134924,0.05973839107900858,-0.3114376408047974,-0.457889205776155,0.006917895749211311,0.34617157792672515,0.5775624765083194,0.8320166440680623,-0.2693881648592651,0.7197452876716852,0.8302322295494378,0.9159699031151831,0.6235732352361083,0.1642183973453939,0.8707197653129697,-0.5666233696974814,0.9469123338349164,-0.20771964453160763,0.04318462545052171,0.4839227101765573,0.6344835353083909,0.31145366095006466,-0.45217349333688617,0.21896991413086653,0.4381973878480494,0.614342091139406,-0.2798110987059772,-0.8178850994445384,-0.32305656280368567,0.7636533980257809,-0.8661396303214133,-0.9824053402990103,-0.4670936483889818,-0.30996318301185966,-0.9293568404391408,-0.3644656236283481,-0.42196576576679945,-0.9562542182393372,0.31774264900013804,-0.030265497975051403,-0.6112823914736509,0.39928565733134747,-0.16633347934111953,-0.6544770319014788,0.6752220056951046,-0.6897298479452729,0.7531347749754786,-0.016157737001776695,-0.7531985342502594,-0.41028185933828354,-0.8880683039315045,-0.6728717852383852,0.02919044904410839,0.21809057798236609,0.09943828545510769,0.02457126183435321,0.5006947228685021,0.5270122387446463,-0.522458759136498,0.8478433629497886,-0.09125241683796048,-0.34545134380459785,0.1825767308473587,-0.6990994494408369,-0.20506768440827727,-0.6820857343263924,0.4984305570833385,0.6805179165676236,-0.5098925274796784,0.36714835837483406,-0.8356840410269797,0.37977141654118896,0.3096782024949789,0.5409278245642781,-0.8300083694048226,-0.20020216749981046,0.6130644390359521,-0.9419884588569403,0.12961344933137298,0.06593009503558278,-0.8350244471803308,-0.9277617135085166,-0.03581083379685879,-0.8292806185781956,0.5430051940493286,-0.5840835319831967,0.9374693748541176,0.9336821571923792,0.6872777980752289,-0.16674464335665107,-0.49032839061692357,-0.8156887292861938,-0.503335025627166,0.6122155296616256,-0.5885795527137816,0.9642628817819059,0.9640817921608686,0.6030815741978586,0.39001080114394426,0.36910501029342413,-0.7368110180832446,-0.05156522383913398,0.20577072072774172,-0.5798184010200202,-0.8644758728332818,0.039280089084059,-0.15376604720950127,0.9143683426082134,0.9412248856388032,0.0038954862393438816,0.27578282356262207,-0.7269191946834326,-0.4061984848231077,-0.5584465605206788,0.09826463554054499,-0.359239193610847,-0.01421683980152011,0.34092983696609735,-0.09182282304391265,0.05703670345246792,0.5971016632393003,-0.6202911324799061,-0.5618542302399874,-0.8917804164811969,0.48755117738619447,-0.544427125249058,-0.42028264701366425,-0.8715748097747564,0.745162021368742,0.581501355394721,0.24978328542783856,-0.24961968744173646,0.34319340577349067,-0.4374916981905699,-0.5065143932588398,0.6528416546061635,-0.5097507196478546,-0.7618251880630851,0.537911029998213,0.9913259083405137,0.758267835713923,0.7760174055583775,0.45849597034975886,-0.19326072838157415,-0.17317668301984668,-0.5417708354070783,-0.7917586946859956,-0.019279788248240948,0.6694165077060461,-0.09852615324780345,-0.3774924296885729,-0.3895060010254383,-0.6702098776586354,-0.39097330486401916,-0.5940167815424502,-0.28280058642849326,-0.7179973581805825,-0.36789937876164913,0.6575534986332059,-0.763227651361376,-0.18353712419047952,-0.29409693786874413,-0.09568734187632799,-0.7706006444059312,0.967074734158814,0.30169157730415463,0.7139804325997829,-0.7757312781177461,-0.6789686898700893,-0.8717659865505993,-0.7643368258140981,0.8944662492722273,0.26675439858809114,-0.2857101378031075,-0.5037529426626861,-0.25141492718830705,-0.8110631606541574,-0.47406948171555996,-0.20046590035781264,0.982128350995481,-0.3121387120336294,-0.5367976510897279,0.06434243125841022,-0.4081475022248924,0.31517838686704636,0.13543375162407756,0.8130280547775328,0.1487338594160974,0.3312582182697952,-0.48297697911038995,0.4818919156678021,0.9282900681719184,-0.8118187324143946,0.0810509417206049,-0.8607138795778155,0.5663592624478042,0.6456619151867926,0.12727104406803846,0.1954624569043517,0.32286533899605274,0.4685463020578027,-0.9143256470561028,-0.9600589610636234,0.5452954871580005,-0.49749417416751385,0.6873755450360477,-0.8375466889701784,-0.9309570076875389,0.6084663146175444,0.9261805405840278,-0.9210149287246168,0.2334913774393499,-0.507783682551235,0.7710656439885497,0.17950406530871987,0.9675705805420876,-0.1828153058886528,0.41878029191866517,0.21148889372125268,-0.10377845633774996,0.2895518569275737,-0.14395611733198166,0.08423506561666727,-0.10333517286926508,0.40120444260537624,0.22168823704123497,-0.33730069641023874,0.8852799138985574,0.9411737048067153,-0.9696453623473644,-0.007546242792159319,0.0910879815928638,0.6437873877584934,0.5178155386820436,0.015857404097914696,0.48133965488523245,-0.977180655580014,0.7236466729082167,0.6810504356399179,-0.7545960736460984,0.2706328150816262,-0.675691831856966,0.37366946460679173,-0.06486240215599537,0.7693013967946172,-0.03940960904583335,-0.5609902543947101,0.37562621338292956,-0.4360890747047961,0.4061919115483761,-0.8352005090564489,-0.04496312793344259,0.7686852104961872,0.4552353722974658,0.6202580980025232,0.32068197010084987,0.812575756572187,0.47794497990980744,0.1430181749165058,0.2631344054825604,-0.6053993627429008,-0.7309085563756526,-0.9461175012402236,-0.32369939936324954,-0.3677816647104919,-0.8845631764270365,-0.5848019472323358,-0.9988700826652348,0.3348076520487666,-0.726595176383853,0.14962114905938506,-0.7599011980928481,0.024116624146699905,-0.12096968526020646,-0.6323567861691117,-0.33209869638085365,0.10359428683295846,0.8505731387995183,0.28566527692601085,-0.4973605335690081,-0.5424997364170849,-0.06065817549824715,-0.15008798707276583,-0.5427722656168044,-0.9639517175965011,-0.7530018305405974,-0.8795312084257603,0.21089841471984982,-0.1818075142800808,-0.09736590180546045,-0.7230410245247185,-0.9409091961570084,0.6345813381485641,-0.29702471708878875,0.19789305655285716,-0.17088093096390367,0.7468137629330158,0.29993135295808315,-0.40222030552104115,0.3679132182151079,-0.7727714260108769,0.9543272955343127,0.19506907649338245,-0.9615106149576604,0.6418143725022674,-0.7424865253269672,0.6958430735394359,-0.018991996068507433,0.8308403119444847,0.6301510538905859,-0.5917371795512736,0.6959169693291187,-0.3157118200324476,-0.5529048955067992,-0.6975982114672661,-0.8421716256998479,0.8280366491526365,-0.21552508510649204,0.5016428115777671,0.5341434818692505,0.9181636827997863,0.8429938363842666,0.7140701371245086,0.5736068207770586,-0.5802783649414778,0.9216672349721193,0.8079629875719547,0.13277462823316455,-0.9109731279313564,-0.6379916910082102,0.2681511426344514,-0.7090148767456412,0.7144221481867135,-0.6246821195818484,0.9812550791539252,0.8633921500295401,0.3208254831843078,0.4078290229663253,-0.9004721906967461,0.04434186639264226,0.09259905200451612,0.7953762821853161,0.760663082357496,-0.5625910884700716,0.591547975782305,0.16989329643547535,0.06208826508373022,0.6138845765963197,-0.3386035533621907,0.8253948176279664,0.09720253478735685,0.9088671780191362,0.40140024619176984,-0.7767611425369978,-0.9531216355971992,-0.9496446829289198,0.7823226670734584,0.49057444697245955,0.7821626644581556,0.11517000664025545,0.3553095948882401,-0.24456425430253148,-0.42179032135754824,0.17618962051346898,0.0998590630479157,0.015172380022704601,0.3915538312867284,-0.1827658861875534,-0.42669507302343845,0.3577312328852713,0.625330432318151,-0.7371521526947618,-0.22074584662914276,0.7448894991539419,0.3267928836867213,-0.7826971565373242,0.46238113660365343,-0.26131670642644167,0.35866036638617516,0.6167864487506449,-0.352915664203465,0.41647341614589095,0.30668703373521566,-0.3648509122431278,-0.807092759758234,0.09756621532142162,0.7180505809374154,-0.24992370838299394,0.6541919144801795,-0.4773721359670162,0.300323820207268,0.6934741195291281,-0.29567491356283426,-0.9045741823501885,0.5156366843730211,-0.17144964402541518,-0.5810835687443614,0.49695263616740704,0.17398921167477965,-0.19980665622279048,-0.7464323313906789,-0.5473251971416175,0.06678389525040984,0.0061002252623438835,0.2035776167176664,0.8050509844906628,0.7709198109805584,-0.8528327960520983,-0.7228077943436801,0.9058600091375411,-0.7454289314337075,-0.8706144872121513,-0.9828422451391816,-0.5787633559666574,-0.01559112872928381,-0.6524365502409637,0.4037805278785527,0.14658294152468443,-0.151909451931715,-0.31742540607228875,0.41614657919853926,-0.3700174209661782,-0.7882405365817249,0.3119196896441281,0.9073289134539664,0.8088579778559506,0.98796028457582,0.6343005276285112,-0.8573301709257066,0.11599909095093608,-0.30468758614733815,-0.7714335964992642,0.27217164915055037,0.458859259262681,-0.8503907076083124,-0.14278743229806423,-0.8489694325253367,-0.1595404758118093,-0.9456987343728542,-0.0019779130816459656,-0.7504251287318766,-0.9574065837077796,-0.7996570952236652,0.7201353600248694,0.4737386582419276,-0.6123721562325954,-0.8223106092773378,-0.49052183562889695,-0.5467039467766881,0.6615028949454427,0.6296453629620373,-0.6703762207180262,-0.32101198099553585,-0.3014904707670212,-0.13301492342725396,0.8060226738452911,-0.45454101357609034,0.16436139773577452,-0.5492690606042743,0.7712734513916075,0.9946962874382734,0.9762224475853145,0.9624235858209431,-0.05376187292858958,0.5590900420211256,-0.4991890238597989,0.5269631901755929,-0.8862997540272772,0.7948650475591421,0.9076615804806352,0.1446537747979164,-0.9877989739179611,-0.44348993012681603,0.9369989451952279,-0.6015588790178299,0.017164922785013914,-0.3275064956396818,0.4134473758749664,-0.13281247625127435,-0.856474922504276,-0.046929280273616314,0.6805203496478498,0.9106695069931448,0.9810051363892853,-0.37971225287765265,0.04312288714572787,-0.797725266776979,0.8653819025494158,-0.860039284452796,-0.8749457281082869,-0.3083297060802579,-0.8615456046536565,-0.026607804000377655,0.5624954444356263,-0.046463098376989365,0.18936476949602365,0.4525315910577774,-0.266017546877265,-0.7696840753778815,0.3127383878454566,0.21874048188328743,-0.27770004514604807,0.08588178735226393,0.9831327474676073,-0.8256230680271983,0.13358489330857992,0.2581066181883216,0.8448687833733857,-0.09794790903106332,0.5469597983174026,0.9099530498497188,0.5315606854856014,-0.036097686272114515,0.8210340305231512,-0.8151749782264233,0.6005589501000941,-0.42165018897503614,0.7907883413136005,0.28655220102518797,0.028647768311202526,0.8235299135558307,0.919138400349766,-0.6338978987187147,-0.043035393580794334,-0.40088714845478535,-0.024452114943414927,-0.5984307220205665,0.7533893347717822,0.35127069242298603,-0.31161841563880444,0.4893283494748175,0.28391026705503464,0.611764445900917,-0.5520207844674587,0.10904341796413064,-0.5196437444537878,-0.7271174751222134,-0.4713321179151535,0.48975927801802754,0.17552021285519004,-0.7040323410183191,-0.9053113413974643,-0.6391758713871241,-0.6289266902022064,-0.7021791469305754,0.006395283620804548,-0.18649730971083045,0.8098943466320634,-0.9274732354097068,0.3378892373293638,-0.9912440991029143,0.163897258695215,-0.620235025882721,0.346212609205395,0.06437198584899306,0.4244832880795002,0.5605035228654742,-0.8947904519736767,-0.46750955330207944,0.4377431473694742,-0.10373711120337248,0.1761799962259829,-0.4389446503482759,0.5911413202993572,-0.38270920095965266,-0.5940943132154644,-0.30134412087500095,-0.2332459632307291,0.3445472405292094,-0.8563520731404424,0.5936998161487281,-0.9157549692317843,-0.1074016303755343,0.15996590675786138,0.0575208137743175,0.8592963037081063,0.1021865769289434,-0.6981153534725308,0.09332742961123586,0.6381446509622037,-0.49833768233656883,-0.45418353471904993,0.9825114281848073,-0.9203673782758415,-0.9142374354414642,0.3025587694719434,-0.5306835230439901,-0.23833240056410432,-0.014367870520800352,0.4298655637539923,-0.8653728291392326,-0.31184545857831836,-0.7215321231633425,-0.5792891476303339,-0.03467143280431628,-0.05084463860839605,0.9911404573358595,-0.9931221888400614,-0.7813009773381054,-0.11587552027776837,0.8327570538967848,-0.12189582968130708,0.9158482174389064,0.4702310711145401,-0.5560305425897241,0.3361031939275563,-0.32691802782937884,-0.7213506428524852,-0.5497850370593369,0.08917568158358335,-0.8860400998964906,-0.802817749325186,0.17635602178052068,0.4814925193786621,-0.6215392616577446,-0.5339904939755797,0.7450371738523245,-0.04442063067108393,0.5000443360768259,0.8428223477676511,-0.25194502249360085,-0.3002844541333616,-0.09507112437859178,-0.4958419590257108,0.6482993345707655,0.21663743956014514,0.1614720500074327,0.10508029349148273,0.15715887350961566,-0.2921135281212628,0.8767210547812283,0.5161105007864535,0.17213084967806935,0.8108291174285114,-0.5760277230292559,0.1971455398015678,0.5075774416327477,0.5022622384130955,-0.29985946835950017,-0.674757051281631,-0.9180835774168372,0.37342108646407723,-0.7727053305134177,-0.6369258817285299,-0.7490864875726402,0.7464783135801554,0.80482267588377,0.5710215629078448,-0.8318316172808409,-0.3122101412154734,-0.893723567482084,-0.9346259040758014,-0.13256272859871387,-0.29319362062960863,0.38904406363144517,-0.944727118127048,-0.8593559125438333,0.34614486107602715,0.9968557311221957,0.37239129981026053,-0.030625719111412764,-0.6239107656292617,0.845915213227272,-0.1719563426449895,-0.041268930304795504,0.06326771527528763,0.4184510395862162,-0.5102758542634547,0.7058904012665153,0.2758504543453455,0.7768656732514501,-0.4450621488504112,-0.20704436069354415,-0.9794308226555586,-0.7895245617255569,-0.4763507656753063,-0.599520605057478,0.8008676753379405,-0.35328067280352116,0.9007706791162491,-0.20433611888438463,0.09719338035210967,-0.812299408018589,0.8624824821017683,-0.5240649343468249,-0.8593062544241548,-0.08244789578020573,-0.8720174357295036,-0.2279699696227908,0.7449643528088927,0.06467839051038027,-0.3149723415262997,0.22264278307557106,-0.26295367255806923,0.7840381632559001,-0.9849706767126918,-0.061480519361793995,-0.21778592141345143,-0.42958125611767173,-0.15563476458191872,-0.9858924611471593,0.36145912716165185,-0.224217988550663,0.5635077427141368,-0.9357473384588957,0.9988240343518555,-0.9391877544112504,0.6546651348471642,-0.41662079654634,0.2987296162173152,-0.4466233993880451,0.5827527968212962,-0.8785594031214714,0.4607326746918261,-0.5602580001577735,-0.29749621031805873,0.30062226951122284,-0.6743769948370755,-0.10916653089225292,0.38724059611558914,0.9738210360519588,-0.2010542545467615,0.7394651351496577,0.7352475360967219,0.6971500618383288,-0.9275332749821246,-0.19349861424416304,0.1380257369019091,-0.988077366258949,0.8150177462957799,0.15134457405656576,0.05460938531905413,0.845399163197726,-0.49648946337401867,0.02234165882691741,-0.1192067819647491,0.9439694667235017,0.8175223548896611,0.48470782255753875,0.5136671676300466,0.3998227617703378,-0.5340051776729524,0.5037875664420426,-0.36073905089870095,0.7436812506057322,0.06217761477455497,0.529817832633853,-0.1874994169920683,-0.6141201020218432,0.1163231092505157,0.71423812629655,-0.19322127616032958,-0.004449955653399229,-0.507388939615339,-0.34512422047555447,-0.3004438281059265,-0.21699201688170433,0.06268079532310367,0.5287435948848724,-0.34529127506539226,0.7356918868608773,-0.03825945965945721,-0.9812831091694534,-0.5648946650326252,-0.2998110498301685,-0.8636475489474833,-0.17772814212366939,-0.5065709194168448,0.9794692671857774,-0.9946406660601497,0.12598151853308082,0.19121359940618277,-0.44289578637108207,-0.3137229415588081,0.8321092245168984,-0.17523718858137727,0.722208505962044,0.309444491751492,0.36462434474378824,0.04512587049975991,0.13879151549190283,-0.26298668747767806,-0.3985947952605784,-0.09960134793072939,-0.7400875524617732,0.7653421838767827,0.33756475849077106,-0.7320922291837633,-0.05205988837406039,-0.6712585953064263,-0.25341853965073824,0.5577492606826127,0.39386510010808706,-0.7955549922771752,0.13422327302396297,-0.34610539488494396,0.5084772114641964,0.13438714249059558,0.13831202778965235,-0.857702387496829,-0.7343416586518288,0.629714768845588,0.3354071625508368,-0.8968552858568728,0.6096644466742873,-0.5713267060928047,-0.8979697003960609,0.8458975781686604,0.7617704845033586,0.023989454843103886,0.1716867983341217,-0.1871176133863628,-0.8819393157027662,0.8157628988847136,0.2683733101002872,-0.42651677317917347,-0.21157388063147664,-0.7404065011069179,-0.5661620097234845,-0.5704482737928629,-0.28635323606431484,0.9912321544252336,0.24871618719771504,0.23965811636298895,-0.01284699933603406,-0.18140008533373475,0.5116416267119348,-0.7811878025531769,0.05138342687860131,-0.440588912460953,0.23925688536837697,0.07329174410551786,0.9142772140912712,0.5479607870802283,0.45444591576233506,0.07227891869843006,-0.2744265338405967,0.13981609465554357,-0.486106192227453,0.18755015777423978,0.9648509854450822,0.07123375637456775,-0.5980387376621366,0.5041754585690796,0.5225742780603468,0.46532454481348395,-0.34980418300256133,0.9989382433705032,-0.8132605254650116,0.6865181727334857,0.32080779504030943,-0.15151707036420703,-0.7364324992522597,-0.12452973006293178,-0.23690342297777534,-0.5312532596290112,0.7675007279030979,0.4114048616029322,0.9571918654255569,-0.2938437038101256,0.6260315496474504,-0.716681428719312,-0.013856471981853247,-0.32519670901820064,0.2633347762748599,-0.8267701538279653,0.22239351412281394,-0.1153517309576273,-0.24036102183163166,0.9399231891147792,0.6388315833173692,-0.7697743247263134,0.6951184119097888,-0.8053866694681346,0.5370810660533607,-0.00589893851429224,-0.0966514078900218,0.27760888868942857,-0.9681015564128757,-0.30013709608465433,-0.2610745523124933,-0.6973154661245644,-0.5006915559060872,-0.30946697434410453,-0.8699039900675416,0.3183842394500971,0.5861339378170669,0.937728663906455,-0.6970455059781671,-0.8339962977916002,0.14080133195966482,0.2294275462627411,0.9261358305811882,-0.76656310306862,0.5900872815400362,0.16315889544785023,-0.404094023630023,0.040724539663642645,0.8080669972114265,-0.12642199033871293,0.6976844957098365,-0.9861751440912485,-0.7051939642988145,-0.17366970889270306,-0.5715015814639628,-0.00613734545186162,-0.5771121000871062,-0.10949462419375777,-0.8070989134721458,0.9248896222561598,-0.10865129344165325,0.17027082853019238,-0.8727912264876068,-0.10872961161658168,0.17763969069346786,-0.7922626929357648,0.9856608230620623,-0.9522350048646331,-0.21261351741850376,-0.2377996388822794,0.7619617469608784,-0.6279388749971986,0.38062356133013964,0.731880106497556,0.7759951911866665,-0.7116318582557142,-0.8654685541987419,-0.21426432905718684,-0.6909047779627144,0.4624458118341863,0.36391515005379915,0.7895074863918126,0.46581624913960695,-0.10179602634161711,0.2899823961779475,-0.14646492805331945,-0.7207033564336598,-0.8278613639995456,-0.7120775985531509,0.7756046471185982,-0.6107161673717201,0.8566716504283249,0.07862912910059094,-0.2024891539476812,-0.09191951854154468,-0.1560365636833012,0.5758850905112922,0.7123861899599433,-0.9776502097956836,-0.24062265176326036,-0.8876662850379944,-0.06721889181062579,0.6879064706154168,-0.1418242654763162,-0.7444569589570165,-0.9040147513151169,0.32681266451254487,0.10227509681135416,0.6792172254063189,-0.2351879575289786,-0.4411406326107681,0.9990826067514718,0.11704543465748429,0.23791124718263745,0.6872742134146392,0.13407075917348266,0.2608652845956385,0.2935742395929992,-0.24757891241461039,0.8665760043077171,0.6200725310482085,-0.35815399372950196,-0.04520383244380355,-0.8009259160608053,-0.4084395528770983,0.48013286013156176,0.380646831355989,-0.5210610427893698,0.0015122760087251663,-0.9911600612103939,-0.778197574429214,-0.9150545420125127,0.3141307234764099,-0.22287601698189974,-0.37953979382291436,-0.4198633525520563,-0.6708858772180974,-0.7651763367466629,-0.2679148083552718,0.8020230452530086,0.48969139298424125,0.3193657863885164,-0.5793032660149038,-0.7720739087089896,0.9846708183176816,0.21942065516486764,0.062464501708745956,-0.07991532376036048,0.8399921101517975,0.9727864717133343,0.7834246424026787,0.7841508565470576,0.9634357267059386,0.6229933016002178,0.008275777567178011,-0.27240181853994727,0.0979466293938458,-0.30387701420113444,-0.9976387303322554,-0.4791622585617006,0.7744386657141149,0.1722436393611133,-0.9858804983086884,-0.9479248095303774,-0.2808832209557295,0.3727432917803526,0.5716177481226623,0.6851085685193539,0.5144691467285156,-0.18589026993140578,-0.1040493524633348,-0.687560954131186,0.6805390473455191,-0.17805783078074455,0.3147550644353032,0.4183594025671482,0.5128578911535442,-0.5468738093040884,0.0952202994376421,0.2328159138560295,-0.8684011735022068,0.17117928015068173,-0.8733750060200691,0.6194746205583215,-0.9649267443455756,-0.5982098150998354,0.11277255974709988,-0.8271577032282948,-0.7391899917274714,-0.8207707908004522,-0.47467881813645363,0.2102074110880494,0.9276141519658267,-0.9488029470667243,-0.7000299487262964,0.5398552124388516,0.7852821750566363,-0.07706100959330797,-0.2217186288908124,0.9919388168491423,0.05713461712002754,0.4754211432300508,-0.5918147903867066,-0.773094997741282,0.030397556722164154,-0.43129964219406247,0.08489456633105874,0.4426949550397694,0.3412929312326014,0.8799211103469133,0.7375565487891436,-0.3552250540815294,0.9519801316782832,0.9583614654839039,0.9245308530516922,0.2701780996285379,0.9809627579525113,0.28203730331733823,0.18603683216497302,-0.643293397501111,-0.34860651521012187,-0.187773906160146,0.49817308271303773,-0.32676135608926415,-0.2909866003319621,0.0331055698916316,0.5539656761102378,-0.7920194831676781,0.5912408591248095,-0.9963635699823499,-0.39786026580259204,0.04286661231890321,0.8128022621385753,0.8795482008717954,0.07083686301484704,-0.8000524463132024,0.5444019576534629,0.8453375673852861,0.43101354222744703,0.8840441098436713,-0.6553914546966553,-0.1337087913416326,0.001423453912138939,-0.15796319022774696,0.46948625007644296,0.6263492018915713,0.60783896362409,-0.403752903919667,0.7162047890014946,0.6947863125242293,-0.26246920973062515,-0.577803140040487,-0.13339211326092482,0.767818144056946,-0.07740396587178111,0.048382971435785294,-0.48880995297804475,-0.9307965519838035,-0.6932138856500387,-0.8408376472070813,0.9251055726781487,-0.19322944479063153,0.13057207828387618,-0.7024261429905891,0.46743813809007406,-0.8341814745217562,-0.14863833785057068,0.40696301963180304,0.41533773159608245,-0.7061830256134272,0.19617914082482457,-0.2383088106289506,-0.6318001886829734,0.6342263505794108,0.4988320325501263,0.23013094859197736,-0.2111362349241972,-0.8993945303373039,-0.43589828396216035,0.1900414894334972,0.014708910137414932,0.7414620006456971,0.43180452613160014,0.20055654319003224,-0.8868604637682438,0.37302062613889575,-0.7183037265203893,0.7710645417682827,-0.22715507028624415,0.505236383061856,-0.5330343306995928,-0.5248487731441855,0.22880929987877607,0.3872601753100753,0.9236128912307322,-0.4208046472631395,-0.7607550537213683,0.3914402392692864,0.13055321713909507,-0.2843534513376653,-0.7742020855657756,-0.9132448728196323,-0.5067718224599957,-0.2973016519099474,-0.04989525582641363,0.9662667089141905,-0.547098143491894,0.4401337751187384,-0.8606426608748734,0.061144673731178045,0.6193777224980295,-0.9791529225185513,0.6174904755316675,-0.719428398180753,-0.21095758071169257,0.354319273494184,0.026414738036692142,-0.21807040041312575,-0.9009498339146376,0.6746297786012292,0.9844534411095083,-0.9224772290326655,0.5247952844947577,0.6897829785011709,-0.3052458195015788,-0.7968748197890818,0.33250650437548757,0.1605371073819697,-0.633005237672478,0.4398428821004927,0.37922965455800295,0.16982362093403935,0.9899849616922438,0.7435456304810941,0.2884409003891051,-0.6128899790346622,-0.9343290315009654,-0.6938537294045091,-0.8698555235750973,-0.15881362417712808,0.3851227913983166,-0.28341438388451934,0.5206184261478484,0.9988641776144505,0.08955558622255921,0.6827072738669813,-0.5682432935573161,0.9571473435498774,0.4045802359469235,0.6789474030956626,-0.6581843802705407,0.7926727649755776,0.1442942232824862,0.8834831193089485,-0.13513560546562076,-0.5603512465022504,0.6235438329167664,0.5055894134566188,-0.45271746441721916,0.699898409191519,-0.719001229852438,-0.8001739061437547,0.32822121074423194,0.03339029895141721,-0.9268033113330603,0.20133183803409338,-0.5512183308601379,0.9317274983040988,0.5389905422925949,-0.25183467753231525,-0.6030378453433514,-0.9725918415933847,-0.45173187367618084,-0.2018907913006842,-0.14260173169896007,-0.7051783450879157,-0.46826462261378765,-0.4907581368461251,0.9569978974759579,-0.30540036130696535,-0.38414699444547296,-0.008228940423578024,0.9716510903090239,0.8422925313934684,-0.06613003509119153,0.7871957053430378,-0.749774606898427,0.7046226453967392,-0.2300285487435758,-0.4948146566748619,0.10561539698392153,0.9267016239464283,0.10810391930863261,0.39677932392805815,-0.281122128944844,-0.46985864406451583,-0.5090605937875807,0.8273069066926837,-0.45072281872853637,0.8402337376028299,-0.7672990905120969,0.03697332460433245,-0.9251714968122542,0.776845526881516,-0.1651383638381958,0.20577387837693095,-0.5647252514027059,0.7197269429452717,0.41043061576783657,-0.5060735694132745,-0.26539984717965126,-0.42678076261654496,-0.9715054659172893,-0.6445126566104591,0.06579597480595112,-0.42386720422655344,-0.7827286468818784,-0.30567527329549193,-0.0653766286559403,-0.8236101693473756,0.29325227811932564,-0.024511293042451143,0.04593291645869613,0.5856530456803739,-0.44063789676874876,-0.2706046989187598,0.6185175254940987,0.5095082172192633,-0.6676875343546271,-0.7247421708889306,-0.3654312416911125,0.5894460934214294,-0.6199330710805953,-0.6233232854865491,0.9974899315275252,0.22206421894952655,0.9462768607772887,0.571783859282732,0.8652840205468237,0.40271870559081435,0.730126622132957,-0.7056540702469647,0.29785290407016873,0.46769601199775934,0.6173665286041796,-0.8103054701350629,-0.7303941091522574,-0.32164429873228073,-0.4676605542190373,-0.5764011959545314,-0.8294073534198105,0.9796626465395093,0.553284156601876,0.5376458535902202,0.4369435650296509,0.7547000022605062,-0.47265436314046383,0.5683548334054649,-0.39434136589989066,-0.5901373270899057,0.8378927656449378,-0.9948528967797756,-0.21724852174520493,0.38693462079390883,0.7408185205422342,-0.8957040323875844,-0.7088369065895677,0.3988693691790104,-0.8522965484298766,-0.469048029743135,-0.38847569841891527,0.8826699387282133,-0.39079860504716635,-0.08677024394273758,0.7394072026945651,-0.12662761937826872,0.031741115264594555,0.8597011365927756,-0.8804369177669287,0.6840747520327568,0.3143932814709842,-0.7275619655847549,0.060364045668393373,-0.6087423814460635,-0.6234581037424505,0.6226435196585953,0.6540517564862967,-0.05595923401415348,-0.7829283527098596,-0.9102815464138985,0.28404434863477945,-0.30854210862889886,0.9505528304725885,0.3519742996431887,0.5277918605133891,0.4226395767182112,0.272615859284997,0.5041162711568177,0.8193420683965087,0.4244329887442291,0.25862863659858704,-0.47611921606585383,0.06560628628358245,0.859271764755249,-0.315943184774369,0.41968809347599745,0.696456712204963,0.6204260834492743,0.05471633514389396,0.3107681581750512,0.37429699627682567,0.41822191001847386,0.8664423953741789,0.9222300774417818,0.2873000828549266,-0.9595502554439008,0.36160032264888287,0.34429659275338054,0.2080921600572765,-0.7318403040990233,-0.6895589074119925,-0.8776139873079956,0.21988072711974382,0.1570943370461464,-0.018594669178128242,0.8459576801396906,0.4433919880539179,-0.3660744884982705,0.23732780711725354,0.7262925379909575,-0.012288087047636509,-0.3483000244013965,-0.8412306304089725,0.7882992592640221,-0.04436890687793493,-0.14442289806902409,-0.20438789715990424,-0.7594992509111762,0.3780997055582702,0.05502255819737911,-0.6488854615017772,0.7915232516825199,-0.944666959811002,-0.47327417274937034,-0.1721432087942958,-0.10382683062925935,0.5045291110873222,0.7149538374505937,-0.9736426840536296,0.8155783978290856,-0.5528324912302196,-0.10994399478659034,0.37018792517483234,-0.1807975685223937,0.7535626264289021,-0.6987902782857418,-0.7680370830930769,-0.2474408820271492,0.9692602693103254,0.33136729430407286,0.453513965010643,0.7495547789148986,-0.6667984812520444,-0.3002703567035496,0.057021927554160357,0.4771476271562278,0.8018496232107282,0.5388731169514358,-0.3977449797093868,-0.8717464134097099,0.33246307959780097,0.42566140461713076,0.1506201704032719,-0.531059333588928,0.7632210538722575,-0.3413670170120895,-0.07723123859614134,0.8282449645921588,-0.5106662507168949,-0.951837033033371,-0.589437591843307,-0.8146855183877051,0.927408991381526,-0.7793430215679109,0.4226323361508548,-0.441071979701519,-0.037607789505273104,0.004938239697366953,-0.7950487625785172,-0.17496634367853403,-0.5536012244410813,-0.5839445376768708,-0.3111644256860018,0.574535041116178,-0.6451199492439628,-0.25575386779382825,-0.3450119108892977,0.9171941122040153,0.9833518154919147,0.9879438113421202,0.7577843214385211,0.6163901598192751,0.8467825474217534,-0.20584230264648795,-0.043449125718325377,-0.4475209782831371,0.3526644208468497,-0.21035018004477024,-0.1418460300192237,-0.7645782558247447,0.47591692535206676,-0.6636207392439246,0.6281808903440833,0.8172230320051312,-0.2763834986835718,-0.7635517437011003,0.6270019095391035,-0.979641324840486,0.4023287780582905,-0.8439738326705992,0.4753499305807054,0.5262911501340568,-0.8179020923562348,-0.6891014543361962,-0.1288880673237145,-0.5489674913696945,-0.2175119537860155,0.7849737158976495,-0.03594963904470205,0.1249446808360517,-0.3677907856181264,-0.488481521140784,0.24280813476070762,-0.29956872714683414,-0.8806653399951756,-0.970042257104069,-0.9220978426747024,-0.9619997274130583,-0.5391385871917009,0.7954022013582289,0.1464937049895525,-0.7855284889228642,-0.8043644446879625,-0.749391179997474,-0.7239099442958832,0.6089573525823653,-0.031391678377985954,0.7469816883094609,0.3074747840873897,0.4098730399273336,-0.24752663355320692,-0.5987033941783011,-0.7023137956857681,0.897482437081635,0.10443015629425645,0.6041004401631653,-0.7478989525698125,0.7265240014530718,-0.21974218683317304,-0.8301045023836195,0.17273651575669646,0.4299793434329331,-0.5293331323191524,-0.20663795014843345,-0.8658464760519564,-0.11669943714514375,0.14312558248639107,0.7874289955943823,0.6269888198003173,-0.5045255701988935,-0.7225086470134556,0.07445704704150558,-0.8289981326088309,0.38612429378554225,0.12476789625361562,-0.6260647345334291,-0.34109952906146646,0.08651791280135512,0.3956414172425866,0.659212164580822,0.4532549693249166,-0.7141548627987504,-0.9392960625700653,0.9985545645467937,-0.6864741193130612,-0.40142009733244777,0.5062451330013573,-0.19798524118959904,-0.7608048268593848,0.27378659741953015,0.9116993583738804,0.8536861855536699,0.27928270772099495,0.3449050486087799,0.8323890846222639,0.06767121376469731,-0.762085226830095,-0.36460242979228497,0.8940116972662508,0.3674876745790243,-0.5977915995754302,0.0009148363023996353,0.8441644245758653,0.2747310088016093,-0.37845794996246696,0.28224756568670273,0.17199998488649726,-0.8421586137264967,-0.6728279395028949,-0.2500511761754751,0.6048047235235572,0.11067675659433007,-0.10767849814146757,-0.8861236041411757,-0.9080508109182119,0.3176891300827265,-0.7985182763077319,0.12253912026062608,0.3819685159251094,-0.07697425782680511,0.13030631002038717,-0.5613640290684998,0.6000785250216722,0.01413162611424923,-0.6757942182011902,-0.3371537453494966,-0.7699832525104284,-0.7263423292897642,0.5209282478317618,0.5730946059338748,-0.16906013479456306,-0.954123645555228,0.6212576674297452,-0.728710952680558,0.1615620288066566,0.07666129153221846,0.8125261822715402,0.03370128106325865,-0.4571012002415955,-0.18867101659998298,-0.1899440330453217,0.8033840293064713,0.9658875074237585,0.7153289359994233,-0.18935218499973416,0.5674820360727608,0.9728865697979927,-0.058415097650140524,0.24396055797114968,-0.7884254697710276,0.773233987390995,-0.20252904901281,0.6888757445849478,0.49391268473118544,-0.6347776683978736,-0.9335822854191065,-0.7408527759835124,0.6015579830855131,0.046860720962285995,-0.6104362532496452,0.7868456509895623,-0.08214796427637339,-0.19609774416312575,-0.7852457258850336,0.9530772315338254,0.25909012695774436,-0.6866483427584171,-0.4201438883319497,-0.05471008736640215,0.2734031998552382,0.6555050201714039,-0.15149701898917556,-0.9853428020142019,-0.2598389904014766,0.8550883806310594,0.5100146709010005,-0.36864396557211876,0.2969417148269713,-0.8517302959226072,-0.8093452756293118,0.46843588072806597,-0.7809943561442196,0.6469579352997243,-0.6057417606934905,0.6002389919012785,0.34065473172813654,-0.3995983563363552,-0.9797548037022352,0.5998322549276054,0.12030813749879599,-0.3961792541667819,0.08750245859846473,0.0010378658771514893,-0.2916532573290169,0.5897372076287866,0.34926567086949944,0.5010606925934553,-0.7340731453150511,-0.43909982265904546,-0.017902566120028496,0.720710925757885,0.32794358767569065,0.8631414296105504,-0.4835770479403436,0.7194841271266341,-0.49416464334353805,0.984312261454761,0.8470438527874649,-0.4727793028578162,0.5292558684013784,0.0073918504640460014,-0.3974342937581241,0.6368942726403475,0.003602900542318821,0.08731080684810877,0.8135283295996487,0.06991782365366817,-0.04774573119357228,-0.7077526515349746,-0.6108407871797681,0.31772012123838067,-0.7794497921131551,-0.49376765405759215,-0.8696665978059173,0.7474862840026617,0.23245056252926588,-0.5181819456629455,-0.2982911253347993,0.02226670878008008,0.7232765024527907,-0.30774123733863235,0.5936483736149967,-0.7432057610712945,-0.36804751120507717,0.9647309724241495,0.4171418957412243,0.15656482009217143,0.5230943644419312,-0.7347820433788002,-0.1828745692037046,0.3117009955458343,0.5714771379716694,0.27543428912758827,0.051644930616021156,-0.10645347135141492,0.9562253062613308,-0.5050587221048772,-0.14765857299789786,0.36358169559389353,-0.399870412889868,0.6979144383221865,-0.38690518494695425,0.13555844873189926,-0.9637575671076775,-0.5197257963009179,0.8325594714842737,0.4954077200964093,-0.47884481493383646,-0.9170703035779297,-0.3081045635044575,0.0006722575053572655,0.018693098798394203,-0.20886996621266007,-0.765905988868326,-0.8743711351417005,0.7556766294874251,-0.17969760205596685,-0.8599128220230341,0.6994576859287918,0.3163496656343341,-0.5760597251355648,-0.4682222129777074,-0.0991127286106348,-0.8585477457381785,0.0885291462764144,0.406730524264276,0.4283475633710623,-0.15819475473836064,-0.18650349229574203,-0.026782779954373837,-0.449846301227808,0.285286380443722,0.9059021617285907,0.8390397308394313,-0.049821012653410435,0.031040231231600046,-0.9671156923286617,-0.11614072090014815,0.6384041551500559,-0.1832144041545689,-0.7981339623220265,-0.6678885300643742,0.367099919822067,-0.33069234248250723,-0.9555290499702096,-0.7546567274257541,0.889607927761972,0.7316506272181869,-0.06730050034821033,-0.4966553831472993,0.9426027755253017,-0.02798254555091262,0.39891362097114325,0.5079629826359451,0.4510946674272418,-0.345612614415586,0.8166545853018761,0.8271973072551191,0.344554525334388,0.25435167783871293,0.08963709464296699,0.235098282340914,-0.7902440908364952,-0.5533351320773363,-0.35232169972732663,-0.5831021461635828,0.624122500885278,-0.8700142535381019,-0.1335714953020215,0.38314042892307043,-0.9025252354331315,0.8972804518416524,-0.56518589053303,-0.8220809623599052,0.034074864350259304,0.6986877787858248,0.1939767529256642,0.4296592716127634,-0.6178085040301085,-0.5785444285720587,0.3875070661306381,0.6993186986073852,0.24423635238781571,-0.01640082336962223,-0.6676626517437398,0.060606470331549644,-0.3995796130038798,0.043525978457182646,-0.37945155100896955,-0.39240455348044634,-0.7627013833262026,0.1155514270067215,0.42600621096789837,0.9416246502660215,-0.6869536214508116,0.41088451398536563,0.8821622054092586,-0.4758364758454263,-0.4889225224032998,0.11551841348409653,0.4795282701961696,-0.09414303814992309,-0.6529420502483845,0.8669109935872257,-0.15385832032188773,-0.9213466108776629,-0.6764998375438154,-0.00293898256495595,-0.14883477054536343,0.07527117570862174,-0.06385364709421992,-0.6349438070319593,0.6682789176702499,-0.7035730304196477,-0.3609153446741402,0.12619803054258227,-0.32766049914062023,-0.7782201641239226,-0.2364955055527389,-0.602616140153259,0.7743486268445849,0.9045921564102173,0.7848621071316302,-0.07940871408209205,0.6405407562851906,-0.3296443922445178,0.011550507973879576,-0.6110778958536685,0.5841684299521148,-0.7475091740489006,0.8087328434921801,-0.37493841629475355,0.644287780392915,0.9459574376232922,0.20465555880218744,0.9545053741894662,0.7812411761842668,-0.5775062651373446,0.8610809599049389,0.7748179319314659,-0.921756393276155,-0.3315368676558137,-0.43656724179163575,-0.9996218769811094,0.7939305189065635,0.47981898952275515,0.8666641488671303,-0.7169753527268767,-0.4987942297011614,-0.4419596064835787,0.36634709360077977,-0.7733493847772479,-0.10087501211091876,-0.6903659920208156,-0.4080673730932176,-0.8654281464405358,0.29799349000677466,0.09437663992866874,0.5094831231981516,0.8943622205406427,0.5348307839594781,-0.9406313034705818,0.49942935397848487,-0.792860817629844,0.2727639344520867,0.33247483149170876,0.07044852804392576,-0.5528420233167708,0.6715830392204225,-0.9682488534599543,-0.4876863951794803,-0.1502535194158554,0.3434417494572699,-0.4517374988645315,0.7549171331338584,0.10666293138638139,-0.09612962789833546,0.23572421353310347,-0.6202411032281816,-0.0017931223846971989,-0.6775197740644217,-0.796639293897897,-0.9525750549510121,0.6829736619256437,-0.16456262581050396,-0.13780378038063645,0.953707396518439,0.37626932421699166,-0.6059535597451031,0.7587200840935111,0.23015273129567504,0.918607123196125,0.5987165165133774,0.1994799105450511,0.7733165994286537,0.7126605813391507,-0.6308926790952682,-0.9564041304402053,0.5434948545880616,-0.0201081451959908,0.04538054903969169,-0.30515205627307296,-0.8836267539300025,0.5973421665839851,0.2909569665789604,0.34516726341098547,-0.7938089673407376,0.7165662813931704,0.8169957897625864,0.8074431763961911,-0.8830378111451864,0.24294241284951568,-0.6494659939780831,-0.5219621998257935,0.6183942011557519,-0.8019180856645107,-0.8050779583863914,0.7291049007326365,0.7609241157770157,0.8777055498212576,0.4135446981526911,-0.6920468416064978,0.2671787631697953,-0.4836740167811513,0.6714934320189059,0.7011062228120863,0.04081086162477732,-0.007196009624749422,-0.7249235124327242,0.46200809720903635,-0.9872898850589991,-0.8707145610824227,0.5818509366363287,0.9884381894953549,-0.35504161566495895,-0.23671730095520616,0.7966209161095321,-0.11037506489083171,0.5015217997133732,0.9315256555564702,0.7643267367966473,0.5316528775729239,-0.38727029925212264,-0.05809655413031578,0.6224602325819433,0.15869568567723036,-0.015312783420085907,-0.8200526484288275,-0.317522038705647,-0.3818666357547045,0.029235132969915867,0.7549315402284265,-0.3156992271542549,0.550204249098897,-0.40098519064486027,-0.023520389571785927,0.8249187339097261,-0.02873934991657734,-0.8753717397339642,-0.8740487601608038,0.36796823563054204,-0.8101967982947826,0.893075873143971,-0.446429381147027,0.9132936531677842,0.9637938961386681,-0.4764139922335744,-0.003996123094111681,0.6601544828154147,0.6773204519413412,0.8879875103011727,0.6088806879706681,0.5882222624495625,0.12334587471559644,0.5576250110752881,-0.7983115403912961,0.6394865661859512,0.05856119329109788,0.1327489078976214,0.3824261222034693,0.5331356371752918,0.5061072795651853,0.37867004331201315,-0.5554419104009867,-0.5698700062930584,0.27968334732577205,0.17234050994738936,0.42683559795841575,0.4478695862926543,-0.4953719163313508,-0.4908226691186428,-0.5096080675721169,-0.6700178547762334,-0.8057147841900587,-0.921489973552525,-0.5944551154971123,0.6738649681210518,-0.6755986139178276,-0.34930419921875,0.3568621245212853,0.7962665306404233,-0.03277090052142739,0.8618858372792602,0.9752005231566727,0.8448764341883361,0.6712727001868188,-0.9794932859949768,-0.9461275581270456,-0.13418278144672513,0.5991826867684722,0.8891313667409122,0.4362744679674506,0.1718354974873364,-0.9174993908964097,0.2841168032027781,-0.3218995979987085,-0.4925797716714442,-0.6068207821808755,-0.5854738103225827,0.3359289765357971,-0.7416067807935178,0.1549619296565652,0.05647010775282979,-0.7643920741975307,-0.06423795782029629,0.7793848803266883,-0.7800166131928563,-0.9472617073915899,-0.14260015962645411,-0.8885195963084698,0.49192707845941186,0.33150773821398616,-0.31768991285935044,0.9459527544677258,-0.37548668403178453,0.14529925538226962,0.5076372772455215,-0.9048347040079534,-0.2658624523319304,0.17414369527250528,-0.005443887319415808,0.9583484423346817,-0.4816430378705263,-0.49010360799729824,0.0318726166151464,-0.09510571230202913,-0.7999701173976064,-0.6785352765582502,-0.8433241974562407,-0.9289105362258852,0.35355311818420887,0.04042232967913151,-0.21389960404485464,0.001672828570008278,0.7703866977244616,-0.22750275256112218,-0.4657316883094609,-0.9482809589244425,0.8312159227207303,-0.39592133881524205,0.7038245336152613,-0.7842261851765215,-0.32368045253679156,-0.9011996150948107,-0.331190497148782,-0.27363339625298977,0.7361124795861542,0.625936612021178,-0.7311431178823113,0.9894993547350168,0.742300963960588,0.6313742781057954,-0.3571019070222974,-0.9728350485675037,0.9020696529187262,-0.025973832234740257,0.8096588300541043,0.25893249129876494,-0.2991641550324857,0.29077671468257904,-0.2703168950974941,-0.8989757122471929,0.194585632532835,-0.4566132393665612,0.7659432347863913,-0.5155938598327339,-0.4073568871244788,0.0011841687373816967,-0.7649257057346404,0.8929100371897221,0.042579229455441236,-0.027900881599634886,0.26627212623134255,-0.30331471655517817,0.0357086923904717,-0.9395222058519721,0.9088291665539145,-0.2794429142959416,-0.07247263938188553,-0.4562983578070998,0.5807480658404529,-0.04516451247036457,-0.9807653054594994,0.6533033708110452,-0.9451031191274524,-0.8500209925696254,0.9037130433134735,0.1605069199576974,0.9442129642702639,-0.25834893714636564,0.445349607616663,0.6049714516848326,-0.5558847640641034,-0.4491745471023023,0.008173173759132624,0.5975969349965453,0.5150449816137552,0.19177197199314833,0.3274020212702453,-0.6013385849073529,0.596097250469029,0.43631545221433043,0.6119936159811914,-0.09690131852403283,-0.8703986080363393,-0.07656757580116391,0.9887381070293486,0.7759703560732305,-0.4403860564343631,-0.29621660290285945,-0.614645913708955,-0.7701796772889793,-0.5177086344920099,-0.47743996093049645,0.9494825303554535,0.251186337787658,0.16933725588023663,-0.2849281723611057,-0.33973340736702085,-0.2423780565150082,0.2743038861081004,-0.6843841224908829,-0.2369458950124681,-0.8773771720007062,0.7914500837214291,-0.05042459862306714,0.5247535998933017,0.23619065899401903,-0.9722598749212921,-0.7952454560436308,-0.06907605519518256,-0.11015279311686754,0.7842273032292724,0.8630208908580244,0.8998222630470991,0.029953463934361935,0.09476778469979763,0.6418902729637921,0.3907693694345653,0.21395090455189347,-0.3865497116930783,0.6380666145123541,0.8964117118157446,-0.9094546493142843,-0.2565069878473878,0.5568637573160231,0.880971051286906,-0.09505694778636098,-0.7179864156059921,0.8816405241377652,-0.4864018624648452,0.04878182336688042,-0.9016821663826704,-0.16410220740363002,-0.8308437229134142,0.8947557150386274,0.8563791322521865,0.3026035721413791,0.17229653103277087,-0.923099416308105,-0.9154478367418051,0.9415417057462037,0.5325212022289634,0.03729673707857728,-0.27246528677642345,0.45680137909948826,-0.415723938960582,-0.03801325662061572,-0.29238687455654144,0.4125217008404434,0.29316775500774384,-0.6669905642047524,-0.17746431613340974,-0.6696695773862302,0.8635029192082584,0.6989002227783203,-0.26946611190214753,0.49335902417078614,0.9113643756136298,-0.41808238439261913,-0.6724265934899449,-0.6326599433086812,0.21094785211607814,0.9282939159311354,-0.7348317811265588,0.1709708054549992,0.49528413359075785,0.26152422092854977,-0.35049990890547633,0.21657051425427198,-0.4531706590205431,0.4336563269607723,-0.8754768245853484,0.9497853983193636,0.4550354122184217,0.3935698070563376,0.37273952970281243,-0.45882613165304065,0.008689729031175375,0.15719297528266907,-0.6327567272819579,-0.463752219453454,0.5571680869907141,-0.9901201939210296,-0.1624086699448526,0.5231411741115153,-0.5910105220973492,0.5405592173337936,-0.2934926035813987,0.057410575449466705,-0.4927395493723452,0.9223868665285408,0.25355423521250486,-0.6878920067101717,0.8911054874770343,0.42497732723131776,-0.41036606999114156,-0.02719951421022415,0.3689014040865004,-0.2857413156889379,-0.48902789084240794,-0.5643445746973157,-0.9975444488227367,0.24658207455649972,-0.2793050385080278,-0.1251273644156754,0.11903210124000907,0.45753869134932756,-0.19634696003049612,-0.29339297767728567,0.035218159668147564,-0.4789529610425234,-0.7053798269480467,0.7842960846610367,0.340282638091594,0.04663492599502206,-0.2828338979743421,-0.8292335183359683,0.7564785797148943,-0.8678465047851205,0.7949354192242026,0.8295318973250687,-0.8317570094950497,0.4165633264929056,-0.5251022325828671,-0.4457766553387046,0.3909272593446076,0.8117909240536392,-0.03803857881575823,0.46511445939540863,0.825661523733288,0.21221937192603946,-0.09914878150448203,-0.1941716019064188,-0.6852368316613138,0.7213006946258247,0.6418553711846471,0.33885023230686784,0.9481068085879087,0.5921023618429899,-0.4686063723638654,-0.8000680385157466,0.13878401508554816,0.8545402940362692,0.5606400705873966,-0.64183862041682,0.1591517785564065,0.3346234648488462,0.30404006876051426,0.6395623153075576,0.9831615667790174,-0.13339407974854112,-9.656045585870743e-05,-0.4497417416423559,-0.4904942298308015,0.01657576998695731,-0.1434575580060482,-0.12162094749510288,0.5873546823859215,-0.012193283997476101,-0.38191513158380985,0.6332442304119468,0.38867586478590965,0.38611950585618615,0.8966026678681374,-0.8242673268541694,0.9056230145506561,-0.8815056881867349,-0.5659372992813587,0.13053326727822423,-0.27207060623914003,0.6908164639025927,0.49227157421410084,-0.012377097737044096,0.42909452551975846,-0.055998796597123146,0.7523868647404015,0.8359190952032804,0.7957376688718796,0.09159251628443599,-0.951911420095712,0.09840034414082766,0.6888492195867002,-0.5564639773219824,-0.441899502184242,0.9849049160256982,0.874368516728282,-0.7805743091739714,-0.4239376992918551,-0.7510567354038358,-0.8124501686543226,-0.08665545377880335,0.32842578925192356,-0.11070948885753751,-0.8237855611369014,0.17763151228427887,-0.16095334105193615,0.24316473910585046,-0.1333687324076891,0.15392214339226484,-0.545377915725112,-0.39406140334904194,-0.04768151929602027,-0.5639219786971807,-0.641493343282491,0.3357593324035406,-0.9607470077462494,0.07778267888352275,-0.4661413663998246,-0.33800990087911487,0.1997027969919145,-0.7981800292618573,0.15126227866858244,-0.6511143031530082,-0.8803436681628227,-0.6786671192385256,0.4433693699538708,0.6096590613014996,0.5375435575842857,0.3565786639228463,-0.48055562376976013,-0.09427457628771663,-0.8754277192056179,-0.7172365337610245,0.017327778972685337,-0.5669255629181862,-0.22659681597724557,-0.8288852055557072,-0.8889258718118072,-0.29929455928504467,0.47032214514911175,-0.1833857516758144,-0.8102056528441608,-0.2369548436254263,-0.7036851793527603,0.041439257096499205,-0.24830126436427236,-0.6038820445537567,-0.5886137466877699,-0.783428255468607,-0.3168259966187179,0.7128884172998369,-0.03133701207116246,0.6515564932487905,0.34565877821296453,-0.7363881324417889,0.2529806378297508,0.2400067960843444,-0.6975433914922178,0.8051315485499799,-0.8243943289853632,-0.5701203816570342,0.06232902128249407,-0.6883370745927095,-0.5577249112538993,0.800154896453023,0.7805050970055163,-0.07666450878605247,0.569952274672687,0.9945999998599291,-0.4025792460888624,-0.442296439781785,0.7479734015651047,0.30286835925653577,0.09753149142488837,0.1557532800361514,0.6721144467592239,0.17999676521867514,0.06383498245850205,-0.0296490048058331,0.39495937107130885,-0.2445809245109558,-0.19515944831073284,-0.9552937461994588,-0.7647389294579625,0.5648323027417064,0.6471812329255044,0.3558686007745564,0.3576177735812962,0.551375821698457,0.6008553854189813,-0.7441065581515431,0.5116893970407546,-0.9341554171405733,-0.7610998027957976,0.2398447822779417,0.6287458641454577,0.6958386474289,0.6349274348467588,0.09093909105286002,0.5395532571710646,-0.3466214803047478,0.1555733042769134,0.06003919942304492,-0.4897137056104839,-0.1714764842763543,-0.6763681876473129,-0.10463861282914877,0.7440872555598617,0.5171511569060385,0.576346377376467,0.5974715217016637,-0.08214349439367652,0.21547611523419619,-0.016543285455554724,-0.5729064284823835,-0.26060281647369266,-0.8770753843709826,0.35337360901758075,-0.8455818751826882,-0.48085525538772345,0.719966622069478,0.4975629113614559,0.8777417778037488,-0.3918499364517629,0.31191411381587386,0.7551701124757528,-0.8108577723614872,-0.5597913367673755,-0.13410132844001055,0.3502296442165971,0.338582631200552,0.3827936127781868,0.7700097463093698,0.015240245498716831,-0.675410914234817,-0.7864527124911547,-0.25128319254145026,-0.6038339198566973,-0.2452588863670826,-0.31986556202173233,-0.9708871021866798,-0.6513198642060161,0.3990650433115661,-0.4747675769031048,0.7557060164399445,-0.15478065609931946,0.15680627757683396,0.5009482814930379,-0.21731566544622183,0.4548528748564422,-0.40050373040139675,0.7610696302726865,0.19647314166650176,-0.09971313131973147,-0.5536819761618972,0.19322216231375933,0.019027761183679104,-0.10437683202326298,0.5364271141588688,-0.5255618933588266,-0.006731285247951746,0.6587752304039896,-0.3142996784299612,0.24772777454927564,0.8043513894081116,0.1718878885731101,-0.15206441981717944,0.10525825386866927,-0.2076353537850082,0.7975048148073256,0.8593494356609881,-0.5491097322665155,-0.8568513989448547,0.04172949027270079,-0.8336976515129209,0.8963881502859294,-0.20334290247410536,-0.5662450585514307,-0.7558004232123494,0.5374397397972643,0.7451665168628097,0.25045153545215726,-0.5022703506983817,0.7644274355843663,-0.08020223723724484,0.13438763469457626,-0.4817022504284978,-0.5853359419852495,-0.35477391816675663,0.7791616139002144,0.5131530440412462,0.21739436080679297,0.9834011271595955,0.29778237733989954,-0.4487101682461798,0.17775266943499446,0.36325825517997146,0.12906696228310466,0.6601056852377951,-0.9715813240036368,-0.4874458350241184,0.18400858854874969,0.44686088943853974,-0.8105977275408804,0.8918265434913337,0.9722094791941345,0.3000557073391974,-0.8163513015024364,0.24327791761606932,0.20226293010637164,0.8870834563858807,0.5558121320791543,0.41138258622959256,-0.15643027983605862,-0.9826884143985808,-0.8666687966324389,-0.36626086197793484,0.108790700789541,-0.588797053322196,-0.3986757090315223,0.44679003208875656,-0.27769466722384095,-0.5676934658549726,-0.40440667420625687,0.35046945698559284,-0.594683725386858,-0.37934456393122673,0.7507800864987075,-0.8695414778776467,0.3311427808366716,0.37456436920911074,0.7219131966121495,-0.27372676553204656,0.9040547334589064,0.7743282900191844,-0.9491746914573014,0.7772727170959115,0.24065112276002765,0.881182495970279,0.3542621647939086,0.9571165824308991,0.4426067187450826,0.6269067307002842,0.501808974891901,-0.32989367516711354,0.6257521375082433,0.8841867037117481,-0.12261036969721317,0.7822058745659888,0.6322717126458883,-0.0863793483003974,0.12344877421855927,0.4938840423710644,0.23721407912671566,-0.58757040835917,-0.15156834432855248,-0.11935113463550806,-0.7161051705479622,0.061236689798533916,-0.08014350850135088,0.5669037909246981,-0.6713071879930794,-0.30722172698006034,0.7572129666805267,-0.9123570956289768,0.9436260885559022,-0.5881946398876607,0.9742902470752597,-0.33676978200674057,-0.008701805956661701,-0.6309970845468342,-0.2487373328767717,0.8981382977217436,-0.46789119904860854,-0.9156674677506089,0.4207351910881698,0.5001180749386549,0.19191336492076516,-0.054330405313521624,-0.09372722310945392,0.7476668367162347,0.4753132867626846,-0.5299574676901102,-0.8060770719312131,-0.1658191061578691,0.6343797170557082,0.3918302059173584,0.9914635070599616,-0.6758475862443447,-0.7544218241237104,-0.42867967672646046,0.43747321190312505,-0.6006135530769825,-0.8616450601257384,0.5725986752659082,0.6319517400115728,0.8204905572347343,-0.25092756329104304,0.04123720293864608,-0.25256237806752324,0.30888373497873545,-0.7971242112107575,-0.7104542464949191,0.269453430082649,-0.6424642470665276,-0.05759967537596822,-0.6700915531255305,-0.8342784340493381,0.5091344933025539,0.7918841377831995,0.8586958209052682,0.16817250614985824,-0.7684697434306145,0.5859407600946724,-0.8502554311417043,-0.2982091228477657,0.16763147292658687,0.0967204044573009,-0.4983995337970555,-0.3105351496487856,0.7560340878553689,-0.07527142576873302,0.6834115032106638,0.08224257361143827,0.8685997729189694,0.8226340510882437,-0.4016090421937406,-0.39516899129375815,-0.5561179290525615,-0.3129733456298709,0.10359515063464642,-0.7166510275565088,-0.9404777446761727,-0.6575917936861515,0.8908737557940185,-0.022457804530858994,-0.9230783088132739,0.6684573432430625,-0.6713522518984973,0.285112296231091,0.43344610184431076,-0.20277447206899524,0.5078113409690559,0.2218639999628067,0.5309764556586742,-0.6152035691775382,0.3029317194595933,0.23982809158042073,0.24481035256758332,-0.9866662262938917,-0.4020258807577193,-0.2082644458860159,-0.45836711255833507,0.6391887050122023,-0.8590695769526064,0.35244108736515045,-0.08848801162093878,0.08051938144490123,0.7953629782423377,-0.5977597935125232,-0.4006596221588552,-0.4031883808784187,0.2900035846978426,0.11516699427738786,-0.17529911827296019,-0.373929928522557,0.7099314802326262,0.9870144324377179,0.8783978372812271,-0.4155999608337879,-0.7930772984400392,-0.7423958396539092,0.920119546353817,0.12409025989472866,0.2678888305090368,0.743744071573019,0.3996058260090649,-0.6399116762913764,0.261289291549474,-0.45090333512052894,-0.1735584451816976,0.6346356188878417,0.8413578700274229,0.8958775815553963,-0.03148075006902218,-0.7403341527096927,0.024306430481374264,-0.38676424976438284,-0.9702189844101667,0.3607799964956939,0.3038461306132376,0.735311618540436,-0.20734954439103603,0.3734647105447948,0.5530052385292947,-0.5018650437705219,0.6001619985327125,0.844741475302726,-0.3150426670908928,-0.069036606233567,-0.4681169237010181,0.9390503969043493,-0.7529857670888305,-0.42308461433276534,0.7500952328555286,0.01162510085850954,0.7495104530826211,0.817187353502959,0.8648541332222521,0.1882456736639142,0.0646003307774663,-0.32839740766212344,-0.4976813457906246,0.01908485172316432,0.33025770727545023,-0.8578454325906932,-0.6431705891154706,-0.7985260505229235,-0.9201289149932563,0.016947046387940645,0.3181575182825327,0.18306352803483605,-0.2873747549019754,0.9942640010267496,0.4185243151150644,-0.11595496674999595,-0.5557441092096269,0.5153440884314477,-0.9466253486461937,0.08165015187114477,-0.1857906961813569,-0.8426522398367524,0.7307340549305081,-0.10427137790247798,0.2912292890250683,-0.3186107617802918,-0.4486321029253304,0.33147171465680003,-0.9025589963421226,-0.9101614425890148,-0.8101302161812782,-0.019201776944100857,-0.6968699581921101,0.1882860534824431,0.28107741521671414,-0.2715104944072664,-0.1612219070084393,0.918564016930759,0.3340073130093515,0.036584960762411356,-0.12284288974478841,-0.20924164541065693,0.961467252112925,-0.44321360159665346,-0.5855436567217112,-0.7264743600971997,-0.47071017837151885,0.9376062112860382,-0.9383278195746243,0.44138261303305626,-0.9377416265197098,0.8555020703934133,0.896696237847209,0.6449709641747177,0.8152579520829022,-0.6041384725831449,-0.051753836683928967,0.7196202832274139,-0.3657826348207891,-0.970807131845504,-0.9853584473021328,0.2681823065504432,0.64390325313434,0.1382644372060895,-0.6461883252486587,-0.8403564221225679,-0.03430882561951876,-0.5701365768909454,-0.1186693599447608,0.6962459315545857,0.07484234217554331,-0.8790179626084864,0.5051159569993615,0.15144476061686873,-0.754953168798238,0.8365952679887414,0.20403403183445334,-0.8017058204859495,-0.04718569153919816,-0.2464594915509224,0.301117654889822,-0.991036165971309,0.34631442511454225,-0.7145851692184806,0.5046526482328773,0.622018642257899,-0.1191123235039413,0.3419677121564746,0.04301042715087533,-0.7311676517128944,0.6900404798798263,0.040023043286055326,-0.7623223531991243,0.34786691097542644,0.6152845933102071,0.5085966340266168,0.33844671538099647,-0.6362824416719377,0.8133615860715508,-0.07517920853570104,0.9069876200519502,0.38719671219587326,0.479146433994174,-0.8521219016984105,-0.09988057566806674,0.024395952932536602,-0.7039919225499034,-0.9575434201397002,0.090786705724895,0.38436271948739886,0.331512653734535,-0.07253108453005552,-0.2864515669643879,-0.5939080445095897,0.7573281899094582,0.49697345355525613,-0.32773892721161246,0.786911784671247,-0.38657788885757327,-0.18040627567097545,-0.2126729995943606,0.5972450878471136,0.045416971668601036,-0.9961659368127584,0.719437601044774,-0.6584606971591711,-0.8749804394319654,0.21699996618553996,0.389426417183131,-0.12334763770923018,-0.5013594697229564,-0.9948800662532449,-0.43587167048826814,0.813072778750211,0.8846661788411438,0.22617847425863147,-0.5362691972404718,0.03388828178867698,0.1696260515600443,0.5030451565980911,0.1717671356163919,-0.5485326978377998,0.4754844792187214,-0.8062169197946787,-0.1384846605360508,-0.4140376327559352,-0.9732986888848245,0.5225921669043601,0.3406435404904187,-0.21690999111160636,-0.6409844751469791,-0.36042717518284917,-0.7981012184172869,0.39715858921408653,0.1405428950674832,0.5805022744461894,-0.6606115074828267,0.6862748037092388,-0.846267955377698,-0.8091336847282946,-0.3039428470656276,-0.34028948564082384,-0.052987725008279085,0.6027885163202882,-0.16837380547076464,0.520140194799751,0.3213441241532564,-0.16615980537608266,0.8986530881375074,-0.37568415608257055,-0.10091552883386612,-0.44741178629919887,0.8009875547140837,-0.18150505470111966,0.723658558446914,0.9915934512391686,0.7187806009314954,0.9066789010539651,-0.31669976050034165,0.7221474768593907,-0.333194765727967,-0.9029188808053732,0.37150321574881673,0.657573529984802,0.18834266997873783,0.03917643427848816,0.9393813260830939,0.42652776930481195,0.011336591094732285,-0.2678622412495315,0.22338201012462378,-0.3641357962042093,0.40904335398226976,0.48482499085366726,-0.5022467975504696,-0.9179385332390666,-0.39179970044642687,-0.182620236184448,-0.8720634244382381,-0.6719656600616872,-0.24870650144293904,0.10562368622049689,-0.3552243378944695,0.28591271862387657,0.9127018875442445,-0.8144572703167796,-0.4347276226617396,-0.1897515314631164,-0.3912010854110122,0.8135115234181285,0.32741374941542745,0.7991136694326997,0.07014667149633169,0.29770002234727144,-0.9209132762625813,-0.4337367368862033,-0.7770121609792113,-0.03276377310976386,-0.009187697898596525,-0.7254406455904245,-0.05591763323172927,-0.8069858406670392,-0.16358584770932794,0.2478354275226593,-0.6191450944170356,-0.5982334115542471,-0.07963122939690948,-0.3096135025843978,-0.22221533255651593,0.7057089055888355,0.7098556929267943,0.7567129195667803,0.9415644123218954,-0.5894747534766793,-0.6530897482298315,0.7175009618513286,-0.3758441167883575,0.836021882481873,-0.7411563913337886,0.8683714829385281,-0.20710787875577807,0.6784741440787911,0.275075304787606,0.8888050224632025,0.4336713422089815,0.7768434789031744,-0.22643411392346025,0.2320659440010786,-0.30614370852708817,0.8011290235444903,-0.9338219044730067,0.8496446055360138,0.3447495377622545,0.9439043286256492,-0.009835653472691774,0.11131010623648763,-0.24403834016993642,0.9764409540221095,0.6314226207323372,0.5793062373995781,-0.3525139898993075,-0.37735304702073336,0.5852487529627979,-0.2375800982117653,-0.7845872226171196,0.03689398616552353,-0.07160217128694057,-0.2641203128732741,-0.7405225280672312,-0.5898549072444439,-0.29861772479489446,0.05681764427572489,0.501250518951565,-0.6689571365714073,0.5842794561758637,-0.0242391643114388,-0.38338208571076393,-0.23969247844070196,0.69759676232934,-0.9194139367900789,0.649562060367316,-0.39199764328077435,-0.8674392011016607,-0.22167947934940457,0.8122906163334846,-0.16160392295569181,0.15083917556330562,-0.504600821994245,0.32544153882190585,-0.8321661329828203,-0.05932787340134382,0.837553272023797,-0.1427201689220965,0.9482340603135526,-0.5262661124579608,0.6250069574452937,-0.3109166016802192,0.9923258293420076,-0.41120882611721754,-0.1068663839250803,0.6872058501467109,0.19778923876583576,0.5029760864563286,-0.03556347591802478,0.2915932103060186,-0.7922089118510485,0.819684328045696,0.7581099406816065,-0.0996139026246965,0.10691678011789918,-0.28191265976056457,0.12939737737178802,0.9977087955921888,0.35419030068442225,0.17003741580992937,-0.4399934899993241,-0.8164880704134703,-0.9186558253131807,0.9547653291374445,0.7586833368986845,0.17212947644293308,-0.5024423319846392,-0.45037954906001687,0.5088766980916262,-0.6167664211243391,0.29669738886877894,0.9039807701483369,-0.5246374811977148,-0.25742512894794345,0.8907867991365492,-0.807339945808053,-0.38255043188109994,-0.8752083936706185,0.016124851536005735,-0.15165423415601254,-0.44218422193080187,-0.14574803179129958,-0.6896391334012151,0.6167360236868262,-0.056359296664595604,0.38535131001845,-0.649837686214596,0.0450019296258688,-0.2478937515988946,-0.08342945436015725,0.38628201140090823,-0.22649076534435153,8.130073547363281e-05,-0.8420084845274687,0.02205347642302513,-0.8224077839404345,-0.03334752842783928,0.8341757757589221,0.8694940223358572,0.3722194656729698,-0.4822039073333144,-0.34028413239866495,-0.28776146145537496,-0.8152456004172564,-0.7412126935087144,0.7482823524624109,0.2726346938870847,0.4964638790115714,0.037885420955717564,0.887674517929554,-0.28873783629387617,0.2907067183405161,-0.15905701462179422,-0.03917983081191778,-0.16281896829605103,-0.8403920787386596,0.709159645717591,0.8249649652279913,-0.08651289390400052,0.8197597404941916,-0.6550457645207644,-0.4605678003281355,0.842027417384088,-0.9269758313894272,-0.39701751386746764,0.5808631330728531,0.13718646438792348,-0.3531854832544923,0.6727970903739333,0.7156816967763007,-0.2975485962815583,-0.2326714894734323,0.8490048428066075,-0.03917306661605835,-0.07530251191928983,0.7234691502526402,0.44933461025357246,0.5662839943543077,-0.6003578659147024,0.4468874051235616,-0.534704489633441,0.04697011923417449,0.6715378509834409,-0.18657786725088954,-0.48734964057803154,-0.05739171151071787,-0.01221115281805396,-0.6286925519816577,-0.9948422922752798,-0.6586861205287278,-0.26764897210523486,0.16729146428406239,-0.030572314281016588,0.185477486345917,0.5895874300040305,-0.9107705121859908,-0.41366470279172063,0.32747605023905635,-0.2837508977390826,0.19600397907197475,0.25417811376973987,-0.821479179430753,0.4279723782092333,-0.589299333281815,-0.19379787193611264,-0.8127980693243444,0.4247772181406617,0.38140342477709055,0.6803193069063127,-0.894615835044533,-0.8787412224337459,-0.39528237003833055,-0.46395099675282836,0.7970380987972021,0.5562934470362961,0.5843698107637465,0.9500467767938972,0.8976940838620067,0.1427973653189838,-0.56187276635319,-0.08155109593644738,-0.3543672068044543,-0.5873092734254897,0.6499812323600054,0.9320435072295368,0.24935456737875938,0.6120093991048634,0.43947403505444527,-0.935544949490577,0.9320253129117191,-0.026723905932158232,-0.33915031468495727,-0.4473688299767673,0.8481468977406621,-0.6447894480079412,-0.39947433257475495,0.7517235958948731,-0.19426663778722286,-0.4752145744860172,-0.12904682802036405,-0.8487149542197585,0.178934495896101,0.5138453412801027,-0.5752701032906771,-0.7048349436372519,-0.400821456220001,-0.05916694179177284,-0.6313923546113074,0.10572816291823983,0.3357026479206979,-0.7467928063124418,-0.7786536123603582,-0.32843098137527704,-0.875027833506465,0.2829801687039435,-0.038978766184300184,-0.621201338712126,0.9445346752181649,0.5403084587305784,-0.46756174601614475,0.32099379412829876,-0.9370227558538318,-0.6437780689448118,-0.9358467604033649,-0.83525595581159,0.7025824347510934,-0.03366429964080453,-0.5671881386078894,0.10697714192792773,0.8528309133835137,-0.18892411282286048,0.274058582726866,0.5677365618757904,-0.5408937339670956,0.3103764709085226,0.6484709833748639,0.190238815266639,0.9956856328062713,0.8607597216032445,0.25349419517442584,0.9403138589113951,0.23600817983970046,-0.3352294750511646,0.28075864538550377,0.8585667181760073,-0.4485792382620275,-0.37832875922322273,0.7562703206203878,-0.32006804179400206,-0.5729434550739825,-0.9966304432600737,0.7713624057359993,0.09131795866414905,0.5636563524603844,-0.3124199225567281,-0.0015809726901352406,-0.7794710784219205,0.4742890582419932,-0.696476983372122,-0.913870045915246,0.45845923759043217,0.9006356815807521,0.16088394913822412,0.816533756442368,-0.7732001128606498,-0.9286325871944427,0.5229520867578685,0.6930574225261807,0.9681152398698032,0.9069578181952238,-0.06316019967198372,0.7187411901541054,-0.4096432509832084,0.47051822673529387,-0.7397665907628834,0.21041881060227752,-0.6649416284635663,0.100189627148211,-0.1916008424013853,0.19683750811964273,-0.5236038994044065,-0.8429260035045445,-0.9645441994071007,0.11206750944256783,0.9616352096199989,-0.9017832479439676,-0.6608125483617187,0.102702796459198,-0.4061318482272327,-0.8091427739709616,0.7354712197557092,-0.9075982277281582,0.4036179827526212,0.7312860684469342,-0.7841761675663292,0.008399597834795713,0.5617673923261464,-0.8091715732589364,0.6340403589420021,-0.6107961782254279,-0.9984427089802921,0.7117470214143395,-0.1447418164461851,0.9178656451404095,-0.5220097759738564,-0.26064022025093436,-0.9869589721783996,-0.033264065627008677,0.514023229945451,-0.5768042951822281,-0.3646044577471912,0.32143679913133383,-0.921740414109081,-0.9149424182251096,-0.10270259296521544,-0.9224825785495341,0.5773200346156955,-0.02425302192568779,-0.9370191171765327,0.998280449770391,-0.1377719729207456,-0.7806923971511424,0.36668092105537653,0.8860155446454883,0.10085759637877345,0.39914226345717907,0.6971883676014841,0.20145282242447138,-0.5253804945386946,-0.9200596688315272,-0.7997736600227654,0.7054337612353265,-0.1571785705164075,0.9342009271495044,0.6503770630806684,0.6069763726554811,-0.6067648003809154,0.2542896750383079,-0.5370955443941057,-0.8361357315443456,-0.6154846022836864,-0.3911475953646004,0.21205281745642424,-0.1120832352899015,-0.5439821104519069,-0.23835898051038384,-0.42255263729020953,-0.34663932863622904,0.8180514154955745,0.23421098804101348,0.8857546048238873,-0.2982458332553506,0.7411941606551409,-0.6405789172276855,-0.8991081551648676,-0.4742353870533407,-0.9660921022295952,-0.9785644821822643,0.22037875885143876,0.04553190106526017,0.019654436502605677,0.6612788941711187,-0.20682134665548801,0.9673534506000578,-0.6856655105948448,-0.08760726964101195,-0.5851161535829306,0.5504982024431229,0.4520556558854878,-0.6665221429429948,0.5876519158482552,-0.3544022352434695,0.27166449185460806,0.05635450221598148,0.15400204295292497,-0.034148067235946655,-0.8437709053978324,0.7317519155330956,-0.8059030985459685,-0.02161761187016964,-0.2557869446463883,-0.589485184289515,-0.7776210461743176,0.46309824381023645,-0.20075902948156,0.5496198795735836,0.8400074238888919,-0.07696418138220906,-0.6338915843516588,-0.7067363555543125,0.022579199634492397,-0.10350093245506287,-0.5256720865145326,0.7477371506392956,0.20720305340364575,0.5677315639331937,0.14552438305690885,0.4548386000096798,-0.9788574636913836,-0.08657316770404577,-0.6240577450953424,0.9883717400953174,0.20682263933122158,-0.6583871687762439,0.9842998450621963,0.4815368349663913,-0.9491269579157233,0.5197252738289535,-0.9337564231827855,0.6057692752219737,0.07488648779690266,-0.9104540823027492,0.3679929091595113,0.6609588162973523,-0.37076860712841153,0.38241029530763626,-0.11364341853186488,0.8650792320258915,0.7954682623967528,0.7555077029392123,0.6329080774448812,-0.7832040842622519,-0.8065658179111779,0.9542749845422804,0.6566893714480102,0.4820769769139588,0.41781566105782986,-0.217054542619735,-0.20359297143295407,-0.9461450721137226,-0.07482628896832466,-0.5814982117153704,0.9617909258231521,0.7944423472508788,-0.49934846023097634,-0.5465911566279829,-0.7577356658875942,0.17412728490307927,0.13462428003549576,0.9230138571001589,0.8481005760841072,-0.9048286085017025,-0.47300064470618963,-0.5237636910751462,-0.2853616182692349,0.9879147838801146,0.4061640319414437,0.5606299182400107,0.6214089416898787,-0.311944461427629,0.833597594872117,-0.5132276164367795,-0.45672534219920635,0.26631429698318243,-0.5027540251612663,0.19746652245521545,0.926920473575592,0.8704353831708431,0.30619295546784997,0.9575733528472483,-0.1677949968725443,0.4387458311393857,-0.9813483348116279,0.6567641207948327,0.9311960358172655,-0.0327530219219625,0.5441645095124841,-0.5188752631656826,0.30288519710302353,-0.08980507683008909,-0.7914774338714778,0.6279385797679424,0.9897679407149553,0.7479301751591265,-0.26135863550007343,-0.8906832966022193,-0.32241638470441103,0.42128584161400795,-0.16327922325581312,0.6519750813022256,0.4001416307874024,0.5837341118603945,0.2788463314063847,0.6099735768511891,-0.32853658543899655,-0.6532089002430439,-0.7728394102305174,0.4878087523393333,-0.3123322422616184,-0.997305391356349,-0.9917458831332624,0.46201796270906925,0.10079378355294466,-0.1349270767532289,-0.2660379596054554,-0.8390552760101855,-0.7074688044376671,-0.5401335237547755,0.6430736780166626,-0.5812409347854555,-0.32900014612823725,-0.955526951700449,0.5464498549699783,-0.24689757591113448,-0.3451253245584667,-0.049590491224080324,-0.29871337627992034,-0.9253380517475307,0.16151524893939495,-0.5231525488197803,-0.2752497079782188,-0.40806742990389466,-0.2041067024692893,0.2993514030240476,-0.8937192503362894,-0.8447198579087853,0.472162202000618,-0.741550718434155,-0.37102472642436624,-0.019494129344820976,-0.5359819899313152,0.9251430132426322,-0.9856872423551977,0.13390647154301405,0.4519609259441495,-0.15103456657379866,0.2788397241383791,0.9173528687097132,-0.6459623123519123,0.9438768727704883,0.4016357297077775,0.02626289101317525,0.07746891863644123,0.31494859093800187,0.4926138552837074,0.8248644755221903,0.023805327247828245,-0.6351624145172536,0.6482286313548684,-0.870771546382457,0.8897315566428006,-0.25578510435298085,0.1759048029780388,0.5448969402350485,-0.8510608631186187,0.09185630735009909,-0.461192196700722,-0.6660752985626459,0.40610723616555333,0.20016822265461087,0.3216001237742603,0.44587647868320346,-0.21982647851109505,-0.36061427276581526,0.35519683035090566,0.38633262971416116,0.9487901171669364,0.2536279270425439,-0.7497341362759471,-0.10039861081168056,-0.9496743190102279,-0.6520674894563854,0.5143117322586477,0.5970214339904487,-0.12990943482145667,-0.8210898730903864,-0.9852190068922937,0.3851608312688768,-0.9549826793372631,0.3024798105470836,0.47706129448488355,0.23839455284178257,-0.4529979177750647,-0.6472129840403795,-0.9582152212969959,-0.040883172769099474,0.8014170429669321,0.4947055922821164,-0.3363979714922607,0.7607815996743739,0.9421057901345193,0.8275781143456697,0.4765988434664905,0.5002239271998405,0.050421019084751606,-0.7310838736593723,0.13352490914985538,-0.4265876724384725,0.13143227575346828,-0.5911641889251769,-0.05886071687564254,0.19435329316183925,-0.5231298767030239,-0.7484496897086501,-0.48781388998031616,0.23315403098240495,0.2037030328065157,0.6731685930863023,-0.14187047583982348,-0.26525310846045613,0.05011349776759744,0.5540674761869013,0.43254295689985156,0.14328632364049554,-0.18714399449527264,-0.8778373100794852,0.21698165917769074,-0.4862187700346112,0.05660135205835104,-0.5705438749864697,0.8426975002512336,-0.8013259903527796,-0.05071787303313613,0.6095641017891467,0.39277432719245553,0.8714342536404729,-0.9950782074593008,0.12790813716128469,-0.00264133233577013,-0.5549086458049715,0.9485820992849767,-0.598202605266124,0.9266229756176472,0.20894530089572072,0.15933228190988302,-0.5502866595052183,-0.7462362246587873,-0.12038466800004244,0.9659255472943187,0.7051143543794751,0.9903418123722076,-0.8868254129774868,0.12321036588400602,-0.18443265510722995,-0.35573503328487277,-0.07914713909849524,-0.6385386874899268,0.9041328481398523,0.947325392626226,-0.3395994142629206,-0.7521823695860803,0.7051778100430965,-0.24560068361461163,-0.6123473411425948,-0.9907838660292327,0.45991574274376035,-0.5234813657589257,0.8543606312014163,-0.311701653059572,-0.4998413217253983,0.14805456064641476,0.9553606249392033,0.33886842988431454,0.617048907559365,-0.42770719481632113,-0.5327046923339367,0.8249042751267552,-0.6377978846430779,0.5095943394117057,-0.07978244731202722,-0.2651352919638157,-0.7271556882187724,0.21579315047711134,-0.06099934643134475,0.4674200373701751,-0.3986075995489955,0.19911904260516167,-0.6616969294846058,0.18845544150099158,-0.427906047552824,-0.20861729281023145,0.2259876523166895,0.7466503591276705,-0.6307238843291998,0.7610811414197087,-0.4639328271150589,0.14496230892837048,-0.6658058194443583,-0.5327755617909133,0.6268065730109811,-0.13008277583867311,0.25101033179089427,0.019934723619371653,-0.675947017967701,0.08399971574544907,-0.5948523203842342,-0.9915701695717871,0.9815041059628129,-0.4494204381480813,-0.6214445196092129,0.7285577631555498,-0.7709805057384074,0.0596977099776268,0.31317097367718816,-0.484637507237494,0.323363957926631,-0.19888283777981997,0.7642893199808896,0.9451008164323866,-0.09579346189275384,0.20610072184354067,-0.383073958568275,0.21317033795639873,0.16842766012996435,-0.9802752006798983,-0.7453599935397506,-0.8852903922088444,0.035871138330549,0.20409872382879257,0.28798700496554375,0.8581778816878796,-0.417252688203007,0.6476931450888515,-0.20008785463869572,0.546201148070395,0.12566488282755017,0.16844132635742426,-0.21972625236958265,-0.6807927386835217,-0.21590693481266499,-0.31912111351266503,0.6087938025593758,-0.15690218470990658,-0.6739555336534977,-0.23445410514250398,-0.13238372839987278,0.8175336201675236,0.6026445431634784,0.9022735352627933,0.5102103585377336,-0.3547473940998316,-0.839350713416934,0.8056817864999175,0.6934531205333769,-0.7770910803228617,0.8289015768095851,-0.9577029743231833,0.3045797352679074,-0.6777826081961393,0.34226176235824823,-0.3978957487270236,0.7817971147596836,-0.9631728483363986,0.8460533912293613,-0.6768712247721851,-0.6726061385124922,-0.0059560686349868774,-0.25779336458072066,-0.9058666862547398,-0.932522386778146,-0.6164851984940469,-0.44799512764438987,-0.057387813460081816,0.5217345138080418,-0.7286787810735404,0.9996734787710011,0.8929134397767484,-0.2632500594481826,0.4439158006571233,0.30127104790881276,0.5572423860430717,-0.774881255812943,0.1063488656654954,-0.3990729977376759,0.1199476276524365,-0.9055100595578551,-0.9565196502953768,-0.6043380754999816,-0.8160732905380428,0.8271044394932687,0.7707017906941473,-0.2624063375405967,-0.8370214193128049,-0.7983775143511593,-0.6106499712914228,0.4142896728590131,-0.9955342123284936,0.9085760861635208,0.6769078844226897,-0.08461289806291461,0.7670127819292247,0.7428764458745718,-0.28108989959582686,0.19661026820540428,0.9057871750555933,0.8127561518922448,-0.5088891116902232,0.02102134143933654,-0.3991074119694531,0.5876851580105722,0.4651950211264193,-0.8913609604351223,-0.8982825828716159,0.5461268932558596,-0.26271262718364596,-0.7795207453891635,0.12381975864991546,0.2637544455938041,0.34761168668046594,0.2935306578874588,0.8257413739338517,0.48128203907981515,0.6667867540381849,0.6136643085628748,0.28534436970949173,-0.32792297285050154,-0.41826007375493646,-0.5737686790525913,-0.27495751855894923,0.7240105913951993,0.4927788735367358,-0.9738002442754805,0.7019638614729047,-0.3811768521554768,-0.4098084392026067,0.8577241962775588,0.7915105032734573,0.8410785743035376,-0.8396992851048708,0.7287178342230618,0.47185564367100596,-0.6414673090912402,-0.7089946791529655,-0.2505637132562697,-0.10061737010255456,0.3973589832894504,0.16929593216627836,-0.48563510552048683,-0.2993453787639737,0.37443120358511806,0.38553206296637654,0.7236319533549249,-0.9706696211360395,-0.028769864235073328,-0.03516826592385769,0.5974716721102595,0.07472061365842819,-0.39847536757588387,-0.4030083571560681,0.19991154316812754,0.416121372487396,-0.2380529548972845,0.5761831277050078,0.3727745823562145,-0.26547176530584693,0.2772939852438867,-0.6022450122982264,-0.8327174466103315,0.5114283752627671,0.5552967665717006,0.11530973156914115,-0.5079434127546847,-0.5891172308474779,-0.14965917728841305,0.21085485583171248,-0.5374138602055609,0.8069530073553324,0.4763190527446568,0.5663782889023423,0.6725491816177964,0.04516446450725198,-0.07179525727406144,-0.6223592022433877,-0.36943858675658703,0.6815463486127555,0.9331254241988063,0.7475099698640406,-0.9038313329219818,0.640380731318146,0.6587134199216962,0.2696537454612553,-0.6828366010449827,0.351815537083894,-0.9737882558256388,-0.5469047273509204,0.4753117589280009,0.6670237071812153,-0.0907377190887928,0.1672688014805317,0.08907946152612567,-0.9478455577045679,0.6046062931418419,-0.40785941760987043,0.4757919581606984,0.4669959177263081,-0.5446697841398418,-0.45395288337022066,-0.8553835581988096,0.459690161049366,-0.7823187503963709,-0.8129667546600103,-0.8243886562995613,-0.773328076582402,-0.3699564612470567,-0.6569860144518316,-0.3655552566051483,0.7749973349273205,-0.7270695283077657,0.3669254118576646,0.9578579533845186,-0.9855994153767824,0.7782293036580086,-0.2617268795147538,0.145283960737288,-0.962620532605797,-0.032659441232681274,0.04259688686579466,-0.22797671426087618,-0.05162244429811835,-0.8172378344461322,0.24622630421072245,-0.3768129604868591,-0.5514563680626452,0.044608631171286106,-0.5554437730461359,-0.475805745460093,-0.20576247619464993,0.900660038460046,0.1267900113016367,0.9466914464719594,0.6206614444963634,-0.16046044882386923,-0.6705123693682253,0.3627024753950536,0.8399978457018733,-0.40629138983786106,0.9331178213469684,-0.23017311934381723,0.432754241861403,0.12962291948497295,0.6020096121355891,-0.22169593255966902,0.851485934574157,0.38542564306408167,-0.6472972179763019,0.672635992988944,0.4193351501598954,0.7440795404836535,0.9042107914574444,-0.7776846997439861,-0.9655767031945288,-0.12086477037519217,-0.7535451510921121,0.8145438367500901,0.5514378729276359,0.70662522315979,0.9987282138317823,0.8547684182412922,0.014917891006916761,-0.08516651252284646,-0.27503596618771553,0.25680335331708193,0.008597193751484156,-0.829011688940227,0.1287808525376022,-0.6249181381426752,0.5402788920328021,-0.875660561490804,0.9735206342302263,0.3789083082228899,0.1397834187373519,0.3172707799822092,0.9244503234513104,-0.7208257243037224,-0.35025044390931726,0.12939324788749218,0.938482919242233,0.580839591100812,-0.4545976701192558,-0.8896109503693879,-0.1770864105783403,0.19368354557082057,-0.1131459609605372,0.5235714125446975,0.6223147730343044,-0.24283583462238312,0.22501635272055864,0.9987500607967377,0.0795402699150145,-0.48359705368056893,-0.6134292846545577,0.7859633774496615,0.535709991119802,0.40221958234906197,-0.9830491580069065,-0.924581368919462,0.3113609729334712,0.8414394115097821,-0.5635511465370655,0.23786762356758118,-0.02737836353480816,-0.4968183501623571,-0.6664256420917809,-0.6367295728996396,-0.8854018598794937,-0.7681005545891821,-0.11915041087195277,0.8507921774871647,0.10737496893852949,-0.8294862695038319,0.5118796951137483,0.2285478268750012,-0.3766361544840038,-0.8209078027866781,-0.7043249048292637,-0.5022222404368222,0.4192433636635542,0.12708351435139775,0.22842525644227862,0.7208767882548273,0.6788507890887558,0.8255154401995242,0.18662724364548922,0.9362955153919756,0.05539380619302392,0.4287223559804261,-0.9315576716326177,0.551867812871933,0.5863815965130925,0.13196151377633214,0.6474324683658779,0.16971806343644857,0.9364522336982191,-0.5167516334913671,-0.36049849772825837,0.348395814653486,0.0449819047935307,-0.7844371623359621,0.30737041495740414,0.06330002844333649,-0.39778268383815885,-0.5135614196769893,-0.7789632612839341,0.7338415342383087,-0.8573613632470369,0.15901989303529263,0.370717266574502,0.7785316822119057,0.9998546889983118,0.08535103080794215,0.5303262369707227,0.9532930832356215,0.06294263806194067,0.5681718033738434,0.8577618733979762,0.8347895294427872,0.2696643890812993,-0.6711142677813768,-0.96637480892241,0.5212368229404092,0.6689916970208287,-0.4064407739788294,-0.7001545918174088,0.8842781279236078,-0.4256893922574818,0.6887799091637135,0.36557087814435363,-0.3010466191917658,0.6510999980382621,0.20161736942827702,0.8565896195359528,-0.4728834368288517,-0.83723148657009,-0.24357843957841396,-0.3308444102294743,0.5661956425756216,-0.4735877299681306,0.29476660024374723,0.4570803288370371,0.784071353264153,-0.8245203085243702,-0.09615338267758489,0.7426425558514893,0.9569597039371729,0.03857813775539398,0.12730158539488912,0.5930898357182741,-0.7831595968455076,0.6080581024289131,0.27615608647465706,-0.8690032549202442,0.5600369586609304,0.7016476579010487,0.08671156503260136,0.3380897562019527,0.011168037541210651,0.48516705026850104,-0.822197437286377,-0.3288715765811503,0.7810941296629608,0.6827763584442437,0.239872713573277,0.6113469074480236,0.44631525641307235,0.9373641521669924,0.8230989333242178,0.6287355893291533,-0.2914855913259089,0.5875024884007871,0.38192898174747825,-0.00015385635197162628,-0.8185103666037321,0.2298253490589559,-0.8032510331831872,-0.5360041186213493,-0.7724199420772493,-0.9635413717478514,-0.07794806454330683,0.3804529611952603,-0.5104053569957614,-0.4811549508012831,0.9605539632029831,0.336608893238008,-0.9733612583950162,-0.5888778055086732,-0.6538731106556952,0.058306814171373844,0.44046111637726426,0.2069240161217749,-0.592210250440985,-0.7409894443117082,-0.9754661535844207,-0.45027986308559775,-0.2966295136138797,0.9516619085334241,0.618280481081456,-0.5102824899367988,-0.02224890235811472,0.6932498612441123,0.36621773382648826,0.9582106443122029,-0.7108632093295455,-0.5486508440226316,-0.5474332515150309,-0.16720221191644669,-0.1284764977172017,0.8367026075720787,0.465962334536016,0.39444917254149914,0.691962749697268,0.4421048513613641,0.5664934329688549,0.8947136299684644,-0.7913075513206422,-0.8024721597321332,-0.5811629598028958,-0.07632500398904085,0.2288642479106784,0.2888833493925631,-0.9819906312040985,0.46169897401705384,-0.49735051300376654,0.5246514626778662,-0.5488977828063071,0.35435939487069845,0.6971161160618067,0.6262415070086718,0.6283116047270596,0.9194371602497995,-0.3354022284038365,-0.9170357906259596,0.9631503620184958,0.5443756775930524,-0.8720307028852403,0.9900149316526949,-0.3210218623280525,0.9256214997731149,-0.9940805067308247,-0.22641999181360006,-0.019771196879446507,0.7271246453747153,0.986723757814616,0.47379408963024616,-0.3794465702958405,-0.32668726425617933,0.7707865289412439,0.3472265931777656,-0.7139232181943953,0.5402771984227002,0.6217247545719147,-0.7381821922026575,-0.7401718790642917,-0.1311824112199247,0.3073852714151144,0.9858828256838024,-0.15031918697059155,-0.22076885169371963,0.5614930144511163,-0.4731957856565714,0.4516633809544146,-0.9402585411444306,0.3057499201968312,-0.8893967107869685,0.21486210962757468,0.9348774268291891,-0.9777810503728688,0.02807041723281145,-0.8764251167885959,0.059942107647657394,0.9920970378443599,0.6974773467518389,-0.7949339528568089,0.5917551396414638,0.9728475892916322,-0.32775206444785,-0.6206758767366409,-0.1654687188565731,-0.32244929065927863,0.14222040213644505,0.06644299672916532,0.6295036473311484,0.29139040876179934,0.12851656647399068,-0.27990204747766256,0.6708090673200786,0.21022523753345013,-0.44879606692120433,-0.9680677312426269,0.47918740240857005,0.35230017686262727,-0.8618004843592644,0.49592135148122907,-0.029426181688904762,-0.3172324923798442,-0.13139808038249612,0.1716032950207591,-0.7572421408258379,-0.8160248249769211,-0.8799887550994754,-0.5705078821629286,-0.6678861803375185,0.9711008034646511,-0.6114948112517595,-0.6115381522104144,-0.665132821071893,0.310853349044919,-0.14693800965324044,0.9422088642604649,0.9785554693080485,0.32111796736717224,0.5983157949522138,-0.5605591237545013,0.23605069983750582,0.9687828035093844,0.2961081895045936,-0.341711618937552,-0.5643039499409497,0.852986317127943,-0.9664454283192754,0.8971143951639533,-0.844485635869205,0.22868582746014,-0.8181980513036251,-0.8133489573374391,0.003557373769581318,0.6685372656211257,-0.6949895918369293,-0.5750779118388891,-0.5154926744289696,0.016197288874536753,0.2088856198824942,0.7176639745011926,-0.723787640221417,-0.41309812758117914,0.3067838251590729,0.058287184685468674,0.7917503076605499,-0.08192312996834517,0.7725022630766034,0.033704258035868406,-0.1151788760907948,0.24086947552859783,-0.9162141131237149,-0.6129182302393019,0.3957372116856277,0.982274018228054,0.13604682590812445,0.27837249217554927,0.4065876118838787,-0.751501542981714,-0.055015051271766424,-0.9630620670504868,0.35265800217166543,0.9759973902255297,0.16091370210051537,0.09950770484283566,0.05009577050805092,0.7444327925331891,0.5580593179911375,-0.04494342813268304,-0.7052209498360753,0.2968850149773061,0.44576984038576484,0.06813902454450727,0.5880798427388072,-0.44284867960959673,0.2082147137261927,0.1824039905332029,0.9972097259014845,0.6389609649777412,-0.2678947476670146,0.4663118552416563,-0.037759446538984776,0.8199403551407158,0.9696570602245629,0.032993742264807224,-0.5647813631221652,0.19897420285269618,0.4005667623132467,0.04528864659368992,0.6587349679321051,0.25619036704301834,0.8077947031706572,-0.06321989418938756,0.18121100030839443,0.19648841442540288,0.6619958425872028,0.3347744671627879,-0.7055236231535673,-0.7296663667075336,-0.45283010648563504,0.9281675419770181,-0.5807424699887633,0.5598533838056028,0.766814713831991,-0.4515320104546845,-0.6655270173214376,-0.44902082066982985,0.6152217700146139,-0.2502079298719764,0.8355748015455902,-0.05851815268397331,-0.6700200890190899,-0.7789397654123604,-0.4261341346427798,-0.22159826150164008,-0.6814687587320805,-0.952202120795846,-0.18757133465260267,-0.08813144732266665,0.6353996726684272,-0.43888336326926947,-0.8451011059805751,-0.563735029194504,0.5545184253714979,0.7034108745865524,-0.8556434186175466,-0.9216531286947429,-0.24585619242861867,0.5264541730284691,0.3085395283997059,-0.6935876249335706,0.8893940355628729,0.8138570575974882,0.9271158664487302,-0.5520054828375578,0.4009115556254983,0.9376927046105266,-0.27610205952078104,-0.4942482621408999,-0.5996820963919163,0.6638473090715706,0.6329961349256337,-0.6349741816520691,0.43582954443991184,0.486310794018209,-0.1398850167170167,-0.4061805638484657,0.16014182614162564,-0.33082986203953624,0.9473990616388619,-0.5339288325048983,0.16860297601670027,0.9865355864167213,0.7569004013203084,0.2121254545636475,0.40916543919593096,0.3165509016253054,0.37944875191897154,-0.038239986170083284,-0.8969927118159831,-0.8753223116509616,-0.2958233901299536,-0.6519011599011719,-0.47537497244775295,-0.7509947228245437,-0.06148003460839391,-0.798023774754256,0.8715657196007669,0.5785492504946887,0.8460822999477386,-0.7246225643903017,0.844444707967341,-0.4225911698304117,0.49235899746418,-0.1946215433999896,-0.3333581262268126,-0.8924750229343772,0.4411405590362847,-0.8621652815490961,-0.12841802649199963,0.08864988991990685,0.79193358682096,0.744168555829674,0.8973860419355333,-0.8836184637621045,0.607390868011862,-0.4066840107552707,0.2917683366686106,0.560841454192996,-0.785769599955529,0.016097671817988157,-0.1352754575200379,-0.8214617543853819,0.07481938088312745,-0.5576832345686853,-0.29967097472399473,-0.29538304498419166,0.901932755485177,-0.028889615554362535,-0.1672893986105919,-0.714448066893965,0.43951898720115423,-0.2568415170535445,0.2900136881507933,0.2929163374938071,-0.7540228245779872,0.287949001416564,0.5544906863942742,0.94402040168643,0.7371770828031003,0.6378622315824032,0.6734700496308506,0.05919483210891485,0.8297804989852011,0.795322906691581,-0.6067184200510383,-0.5751563888043165,0.21980086620897055,-0.20642277831211686,-0.27297010039910674,0.15482193371281028,0.9312474490143359,0.8727719970047474,0.04759513959288597,-0.177797163836658,0.16261770529672503,-0.5078999707475305,-0.35186626063659787,0.5705139245837927,0.4270699773915112,-0.7474986813031137,-0.6310541722923517,0.8094636769965291,-0.6145760882645845,-0.3134867921471596,0.7706458317115903,0.14404260041192174,-0.4604455316439271,0.42819750029593706,0.9010327812284231,0.3236100925132632,-0.46375273121520877,0.11398599669337273,0.39751569740474224,0.8261668882332742,0.9859955818392336,-0.3347590137273073,-0.12379552004858851,0.1481259623542428,-0.24393597804009914,-0.922701308503747,-0.9748840625397861,-0.9134007045067847,0.872160994913429,-0.01249995594844222,0.6693541146814823,-0.6479449137113988,-0.9131821212358773,-0.7790695913136005,-0.48326056730002165,-0.5786124891601503,-0.9328172076493502,0.46761296316981316,-0.5798554224893451,0.08660694910213351,-0.055945491418242455,-0.689408874604851,0.42723907763138413,-0.9467560234479606,0.864878015127033,0.14220938133075833,-0.35281811421737075,0.519581962376833,0.8299989346414804,0.5371236950159073,0.5872613666579127,-0.9477377659641206,-0.22956629935652018,-0.39565090276300907,-0.6124179963953793,-0.5106765748932958,0.09356301790103316,-0.8007468716241419,-0.836422554217279,0.728470541536808,0.6267148465849459,-0.006941637955605984,0.6612688596360385,0.0840356801636517,-0.4475699826143682,-0.6301495931111276,-0.26747024059295654,0.9358119070529938,-0.6151261427439749,0.7738356306217611,-0.8719604997895658,-0.10723270196467638,-0.7401998662389815,0.6971303741447628,-0.8359938953071833,-0.0956540578044951,0.012585192918777466,0.5203928067348897,-0.18596039386466146,0.8217761777341366,-0.6654177699238062,0.7612726460210979,0.4410764966160059,0.9619145165197551,0.5145250600762665,0.654641586355865,0.30033718794584274,-0.9077505525201559,-0.3238600017502904,-0.4292140072211623,0.3659895281307399,-0.8128946162760258,-0.6649511423893273,-0.1879038419574499,-0.659993885550648,0.044302082154899836,0.5126679744571447,-0.11974343052133918,0.7857062853872776,-0.8869855748489499,0.5011670426465571,0.5553174549713731,-0.8808835190720856,0.7453872202895582,-0.3516737804748118,-0.5149165876209736,0.8043248616158962,0.061317709274590015,0.9092378648929298,-0.486896637827158,-0.5419196174480021,0.5707044452428818,-0.5094919884577394,-0.3033027583733201,-0.9777388358488679,-0.8392030042596161,-0.9191861669532955,-0.5655005411244929,-0.42861297400668263,-0.5121093364432454,0.15766114881262183,0.004667835775762796,0.1739732357673347,0.956415546592325,0.42980339797213674,0.8833897565491498,0.21828891709446907,0.9549767780117691,0.7560663912445307,0.544350104406476,0.5982238166034222,0.2146203606389463,-0.9710972695611417,-0.9660454229451716,-0.42801773315295577,0.8821737761609256,-0.8495133332908154,0.5755729502998292,0.7256027176044881,0.2532191020436585,-0.43130614794790745,-0.40859420085325837,-0.35264286398887634,0.5933092734776437,0.5153220542706549,-0.5526866032741964,0.9159800237976015,0.6409624861553311,0.29248156677931547,0.16565760783851147,0.5046618701890111,-0.28873755503445864,0.41730504389852285,-0.8905898109078407,-0.4690825277939439,-0.5903838453814387,0.9215390044264495,0.9983755913563073,0.41391876386478543,-0.35461881710216403,-0.6466167815960944,0.5124193956144154,0.6000838675536215,0.3281409312039614,-0.9118969361297786,-0.7754520154558122,-0.7981903180480003,-0.26114777429029346,0.775892173871398,0.875532983802259,0.07590088481083512,-0.526830680668354,-0.5410941950976849,-0.30313843255862594,0.429636268876493,-0.8133220355957747,-0.6757062152028084,0.5069598350673914,0.20215163100510836,-0.2511165947653353,-0.4454604065977037,0.5233211005106568,-0.791739709675312,0.14688684791326523,0.7235829094424844,-0.1379158841446042,0.86176872625947,-0.37554717576131225,-0.2072290233336389,-0.6665306547656655,0.22690551821142435,-0.2997732060030103,-0.26464356714859605,0.21243446366861463,0.8208244410343468,-0.47440581675618887,-0.6885527963750064,0.9386682719923556,-0.012203001417219639,-0.29823710257187486,0.4309455882757902,-0.8960932092741132,-0.9308378901332617,-0.6796810156665742,-0.4540224834345281,0.919600822031498,-0.3140318221412599,-0.5518027199432254,-0.1018488323315978,0.1417870009317994,0.03670963505282998,0.21356979105621576,0.034251075237989426,-0.8229406410828233,-0.6622165269218385,-0.7139609078876674,-0.5711805736646056,0.12267656065523624,0.5623402101919055,0.15151439094915986,0.8208108302205801,0.742549127433449,-0.5961070558987558,-0.9868260654620826,0.7097758408635855,0.3328149113804102,0.6694133346900344,0.9929447309114039,-0.4157070154324174,-0.6193233891390264,0.05571082001551986,-0.9908464038744569,-0.6917666485533118,0.8394240057095885,-0.2649059030227363,-0.19063023757189512,0.3307664655148983,0.9424907150678337,0.5188100705854595,-0.2265441669151187,-0.12974597187712789,-0.8779961257241666,-0.4030232368968427,-0.4002599655650556,0.5274162399582565,-0.40092614060267806,-0.8444020161405206,-0.693845912348479,0.7520282878540456,-0.2145572858862579,-0.6051989332772791,0.33393482863903046,-0.19824484270066023,-0.8414473505690694,-0.006865404080599546,-0.05391439236700535,0.3091582516208291,-0.2789699472486973,-0.6643345593474805,-0.8418394019827247,-0.9182480531744659,-0.7738937488757074,0.019545998889952898,-0.3242084542289376,0.3075577993877232,-0.9466619933955371,-0.9279240649193525,-0.7554225828498602,0.20599760301411152,-0.5847437055781484,0.5427085300907493,-0.7752218577079475,-0.4538551480509341,-0.7703635389916599,-0.5448722625151277,-0.8562751808203757,-0.040671756491065025,0.3260879055596888,0.3473095647059381,0.053382843267172575,-0.694435054436326,-0.71741629159078,0.7099224179983139,-0.7235858663916588,0.6780326627194881,0.45641682436689734,-0.35507318703457713,-0.8846214455552399,0.5045361374504864,-0.2121580014936626,0.08071599807590246,0.41383659606799483,0.9671095386147499,0.5632562348619103,-0.6452933172695339,-0.5201972387731075,-0.5856137457303703,0.21939246077090502,0.8870230242609978,-0.7331672185100615,-0.10628832038491964,-0.48452064534649253,-0.2975378758274019,-0.5688337767496705,-0.9065698059275746,-0.862395194824785,0.42722912365570664,0.965231797657907,0.7372793960385025,0.07171216374263167,0.25627915235236287,0.4043530961498618,-0.27101445384323597,-0.8559509795159101,-0.6208691871725023,-0.7631679913029075,-0.32279601227492094,-0.7136116768233478,-0.6794051015749574,-0.16871371725574136,-0.328137363307178,-0.7768871891312301,-0.0634653065353632,-0.8713165852241218,0.13928639702498913,-0.3155436567030847,0.49512609792873263,0.7046147380024195,0.35482327779754996,0.24135349784046412,-0.29787985095754266,-0.8699493072926998,0.4147363235242665,0.9875207031145692,-0.4205091521143913,-0.5585047244094312,0.991247511934489,0.07469449238851666,0.558992946986109,0.7225418817251921,0.12812638841569424,-0.2890168414451182,0.8344804137013853,0.19792302139103413,0.3314175698906183,-0.7244688994251192,-0.4102878551930189,-0.139178151730448,0.8443700200878084,-0.7440205318853259,-0.948092061560601,-0.06482995394617319,-0.5468341764062643,0.18197695910930634,-0.011175345163792372,0.21477763215079904,0.9250391856767237,-0.2514361720532179,-0.5004442865028977,-0.7787504843436182,0.6866686567664146,-0.029400964733213186,0.5354972518980503,0.7834129249677062,-0.17761864233762026,0.7782957879826427,-0.05503339972347021,-0.6406691349111497,-0.4696936490945518,-0.9643705687485635,-0.9040359947830439,-0.3326802374795079,-0.23593279300257564,-0.3435997786000371,-0.8643785798922181,0.037916540168225765,0.444305797573179,-0.6516968412324786,0.7358069266192615,-0.5460570589639246,0.5334891169331968,-0.7047130349092185,0.12195443315431476,-0.5279375743120909,-0.9578956509940326,-0.7766190962865949,0.5918057472445071,0.060435773339122534,-0.9290014761500061,0.16122794803231955,-0.8300565765239298,-0.9112676987424493,0.523613952100277,0.6211668439209461,0.36762274196371436,0.44116459833458066,-0.2295631724409759,0.4174757185392082,-0.07983608450740576,0.5405873898416758,0.1851833090186119,-0.19901412446051836,-0.8956787684001029,-0.565481981728226,0.021651535760611296,0.4719570870511234,0.8052054271101952,-0.4305336317047477,-0.1259733820334077,0.9068849058821797,0.7241417542099953,-0.14363934053108096,-0.5420632441528141,0.9629740449599922,-0.09105302998796105,-0.43136080354452133,0.4168338314630091,-0.194364202208817,0.4597569275647402,0.6871381038799882,-0.30108274705708027,0.0857089702039957,-0.03362351702526212,0.8464708314277232,0.24604492308571935,-0.18976854160428047,-0.7022232366725802,0.21296372404322028,0.11701097525656223,-0.6833106726408005,0.8620142554864287,-0.6848487630486488,-0.88730175094679,0.14736460987478495,0.9816708955913782,0.763491362798959,-0.1775247072800994,0.819547317456454,0.07265156228095293,-0.41454984014853835,0.7206720402464271,-0.6168560869991779,0.12073949258774519,0.6012825998477638,0.5261963200755417,-0.4557901402004063,-0.2669321703724563,-0.7599585251882672,-0.8465744666755199,-0.47586454497650266,0.4282846790738404,-0.11166655365377665,-0.7574997679330409,-0.9492209670133889,0.11387183098122478,-0.0006147543899714947,-0.8271295079030097,-0.2519520344212651,0.5152579350396991,-0.11781298415735364,0.15082996431738138,-0.3589916811324656,0.4284739694558084,-0.6144936811178923,0.7732057147659361,-0.5265631987713277,-0.45590008748695254,-0.6575735416263342,0.13636956131085753,0.6280235275626183,-0.30007800040766597,0.4671211591921747,-0.9829262774437666,-0.24780414253473282,-0.4284518687054515,0.6268993024714291,0.24896872509270906,-0.5981220779940486,-0.2737256996333599,0.6217360529117286,-0.1565773650072515,-0.6410039118491113,-0.8571493681520224,0.7760684639215469,-0.7772092735394835,-0.39753411803394556,-0.10562463570386171,-0.1506202658638358,0.055696756578981876,0.5307914768345654,0.564241245854646,0.7843675338663161,0.16938698152080178,-0.8763154475018382,-0.39023811323568225,0.5136434645392001,-0.4134598132222891,0.1535692778415978,0.4203719636425376,-0.10943233035504818,0.2377641163766384,0.1840969161130488,-0.04577552946284413,0.28600866440683603,-0.5085147810168564,-0.07107723411172628,0.37151035387068987,0.5526113011874259,0.005138604901731014,0.8662579841911793,-0.1740361494012177,0.13543206406757236,-0.9862089050002396,-0.19323761900886893,-0.31240928219631314,-0.3370248032733798,-0.4005028959363699,-0.17954922327771783,0.12787538720294833,0.4780871937982738,0.6493581091053784,-0.42788536567240953,0.13000660249963403,0.5848342454992235,-0.6777207357808948,-0.7406909116543829,0.9589213826693594,-0.2592287380248308,-0.2298796810209751,0.4360988801345229,0.34641527803614736,-0.7530217771418393,0.6969860643148422,-0.9291216428391635,0.08109256066381931,0.5763299125246704,-0.9253716333769262,0.8765884530730546,0.33882090961560607,-0.1323865638114512,-0.25358701357617974,-0.6020531659014523,-0.9471174268983305,0.38575200689956546,-0.4204056402668357,0.7317685247398913,-0.04291070159524679,-0.6291901441290975,-0.12399153271690011,0.3219356834888458,0.805004084482789,0.15503578213974833,0.9459161940030754,-0.9053463228046894,-0.8162978990003467,0.2746269744820893,-0.3928094324655831,0.32156107435002923,-0.09843507688492537,-0.7242330024018884,0.16099412785843015,-0.5173010537400842,0.34885373432189226,-0.5141561953350902,0.8910461938939989,-0.16416304325684905,0.8252718173898757,-0.6413441468030214,0.7819286026060581,-0.32741480553522706,-0.46578335482627153,-0.6240730583667755,0.7360505652613938,-0.18350823735818267,-0.2473261123523116,0.9347354024648666,0.5813203519210219,-0.03090345347300172,0.11032207543030381,0.4069989607669413,-0.595892580691725,-0.4230222194455564,-0.016439147293567657,-0.5788760124705732,0.198939960449934,0.2576653277501464,-0.24589983187615871,-0.9798841308802366,-0.38816593773663044,0.5245599327608943,0.0762312994338572,-0.5784484967589378,0.2359451875090599,0.3862307774834335,-0.7937957430258393,-0.20484382845461369,-0.3855694537051022,-0.21710591716691852,-0.8099491223692894,0.31914746342226863,-0.19107519695535302,-0.5573525847867131,-0.6652691042982042,0.5704077091068029,0.9434572136960924,0.5182927655987442,-0.2645732774399221,-0.26483004540205,-0.9450387516990304,-0.3134457254782319,-0.48560416977852583,0.13845003210008144,0.7259805798530579,-0.447116956114769,0.5474350065924227,0.29704532912001014,-0.2796700797043741,0.17659950954839587,-0.8712322851642966,0.8021196788176894,0.1432439461350441,0.9588256175629795,-0.6700948453508317,-0.43267096765339375,-0.6118083465844393,-0.12277169292792678,0.17399417934939265,-0.5667494488880038,-0.9560710680671036,0.3844455233775079,0.23473830940201879,0.7897678483277559,0.5810678200796247,0.6764967190101743,-0.22433392377570271,-0.9909894010052085,0.22782271401956677,-0.5208963872864842,0.7259358800947666,-0.03228334104642272,-0.014108363538980484,-0.46283228136599064,-0.41304522193968296,0.7768329419195652,-0.27188475523144007,-0.3510250807739794,-0.1805020640604198,0.023951415438205004,0.2915115477517247,0.41931730788201094,-0.8358032740652561,-0.19749417761340737,-0.8808493190445006,-0.6491960240527987,-0.09968366520479321,-0.3222309136763215,-0.5053992373868823,0.3224603305570781,0.29270885279402137,0.7664874130859971,0.1323680505156517,-0.8779179463163018,-0.09042514441534877,0.7410483551211655,0.06948940688744187,-0.7305321013554931,-0.34535726998001337,0.5243025925010443,0.7928367690183222,0.044821109622716904,-0.06654166197404265,-0.23653496988117695,-0.8714671023190022,0.36059486540034413,-0.7223841855302453,0.8230542177334428,0.8588405586779118,-0.9619476599618793,-0.8849606947042048,-0.5971573744900525,-0.9760028086602688,-0.07745110988616943,0.5236964304931462,-0.7179449484683573,-0.161601432133466,-0.11505225440487266,-0.7289746156893671,-0.05896161450073123,0.6050612526014447,-0.22888752026483417,0.7344984151422977,0.8315030154772103,-0.07838574377819896,-0.7145315175876021,-0.245488952845335,-0.35232532816007733,-0.9339307672344148,-0.1197707480750978,0.4217104041017592,-0.4268827731721103,-0.9681964991614223,0.9563035820610821,0.5103677939623594,0.9473019861616194,0.7701451643370092,-0.2855744049884379,0.35778952250257134,-0.3927188781090081,0.2004875484853983,0.9882245985791087,-0.06273197382688522,-0.2940122508443892,-0.5656224694103003,0.47788880951702595,0.3408860182389617,0.14023576024919748,0.8344985493458807,-0.3696996234357357,0.27103564282879233,0.569197322241962,0.22869972186163068,0.11323794769123197,-0.5387135855853558,-0.8626915793865919,-0.012254031375050545,-0.1545820706523955,0.5673353346064687,0.9289327710866928,-0.25991731928661466,-0.719500110950321,0.4154565939679742,0.6021577059291303,0.9345697211101651,0.5422292784787714,-0.7851048088632524,-0.01070288848131895,-0.13565202755853534,-0.16467565530911088,0.17394218547269702,0.9385858848690987,0.9366593188606203,0.268330255523324,0.06234131567180157,0.5606948649510741,0.8507639202289283,-0.13472121907398105,0.8687587813474238,-0.8623728132806718,0.5851265760138631,-0.9553102967329323,-0.17267887853085995,-0.5064864954911172,-0.7550434623844922,0.8898578411899507,0.5353085454553366,-0.930464596953243,-0.8181160921230912,0.12071089167147875,-0.5144557449966669,-0.3985876706428826,-0.2254209779202938,0.5760027435608208,0.4458118132315576,-0.5773862604983151,0.8335132086649537,0.5472370614297688,0.07286129519343376,0.7664705477654934,-0.4826597375795245,0.2903746566735208,-0.10338972602039576,0.6281964592635632,-0.43100646138191223,0.7336633666418493,-0.8532508220523596,-0.2044897247105837,0.2846994479186833,0.16275576874613762,0.2126015811227262,-0.21662102127447724,0.736385602504015,0.6120364358648658,-0.941631221678108,-0.5865625427104533,-0.11205761739984155,-0.20545021211728454,0.9062384809367359,-0.08256351528689265,-0.2789167957380414,-0.2644699104130268,-0.19805913837626576,-0.3712449111044407,-0.023313955403864384,-0.22571006510406733,-0.7959204255603254,0.8146117986179888,0.8647284540347755,0.13053466752171516,-0.6824943558312953,0.6573601830750704,0.7080128686502576,0.5926811238750815,0.6275485283695161,-0.3644803990609944,0.7287937416695058,-0.25514506734907627,0.526746794115752,0.4192897453904152,-0.014849620871245861,-0.8600835110992193,-0.13289203168824315,-0.4049919112585485,-0.04757794085890055,-0.5282804225571454,0.015793371945619583,-0.6559334616176784,-0.7003565775230527,-0.7300202087499201,-0.32876022020354867,-0.9934125943109393,-0.2328952713869512,0.7285639690235257,-0.9479360724799335,0.4912823555059731,0.19295065011829138,-0.6349287196062505,-0.31698274007067084,0.5799762830138206,-0.15535897947847843,-0.34296101285144687,0.14452401036396623,-0.47663099877536297,0.44182009203359485,0.9141487441956997,-0.12663998268544674,-0.44885801849886775,0.7356884488835931,0.21962704369798303,0.08957078400999308,0.7369157918728888,0.062148301396518946,0.9138608248904347,-0.8871584553271532,0.9691493371501565,0.49036192102357745,-0.05803777417168021,-0.2375581143423915,0.6526415511034429,-0.6877765441313386,-0.659980216063559,0.10122082801535726,0.5839655986055732,-0.02131004398688674,0.7500444645993412,-0.9221177864819765,0.9038426578044891,0.3784993374720216,0.3747272971086204,0.3153873453848064,-0.7515631960704923,-0.4682786436751485,-0.3446616609580815,-0.15430318657308817,0.12771308980882168,0.654229047242552,-0.22910142922773957,0.8085764548741281,0.8301233937963843,0.18502224003896117,0.09483516216278076,0.4772818721830845,-0.009868389461189508,-0.5645216489210725,0.35355645092204213,-0.273422762285918,-0.36951185250654817,-0.9487023926340044,-0.9121728176251054,-0.05403227033093572,-0.2588174673728645,0.3205775539390743,0.3755130567587912,-0.18504230678081512,-0.014460386242717505,-0.7372928317636251,0.7298883427865803,-0.9613066497258842,0.5787771204486489,-0.1895170253701508,-0.5340863750316203,-0.40079611260443926,0.24010952794924378,0.1385519290342927,-0.9511169986799359,0.20987118501216173,0.09154965076595545,-0.7711274279281497,0.1230870122089982,-0.08752920385450125,-0.31907930690795183,-0.8393128849565983,-0.9624421959742904,0.17199728079140186,-0.3840286070480943,0.7941867085173726,-0.450399661436677,0.19608322298154235,-0.3602375267073512,0.03274878719821572,-0.8193981749936938,0.01655587926506996,0.6447229692712426,-0.7825811370275915,0.8585085938684642,-0.3480267566628754,-0.21737489150837064,0.8139076316729188,-0.06250922381877899,0.6337118977680802,-0.21473815804347396,0.575830306392163,-0.5853004599921405,-0.3988835462369025,-0.8585504405200481,0.19344065058976412,0.6654947865754366,-0.721699486952275,-0.6174215055070817,0.3303214581683278,-0.7946655978448689,0.09341350803151727,0.2498818621970713,0.16696730069816113,0.8155420483089983,0.2586272256448865,0.022243052255362272,-0.6910679042339325,0.8616487844847143,0.19973582355305552,-0.9877740358933806,0.3668833007104695,-0.7015287121757865,-0.7968574604019523,-0.034747181460261345,-0.4773367987945676,0.7434440408833325,-0.5502480170689523,0.9459760482423007,0.062230960465967655,-0.5759757393971086,0.48309733625501394,0.11804549535736442,-0.24634924484416842,-0.05513339536264539,0.6931225662119687,0.9775175778195262,0.45867917966097593,-0.14089916041120887,-0.0814804439432919,-0.690891909878701,-0.38676915830001235,0.8559701102785766,0.2578352619893849,0.3245074055157602,-0.7866071453318,0.778846871573478,0.34232117515057325,-0.7011547167785466,0.40994389820843935,0.645224648527801,-0.9366295053623617,0.7782711880281568,0.43750267941504717,-0.39993492886424065,0.6139162611216307,0.5613852818496525,0.06302996724843979,-0.39286276046186686,-0.6975882579572499,0.2943453686311841,0.40449364203959703,-0.8420119844377041,-0.024459613021463156,-0.22721928264945745,0.8577096993103623,-0.6763732014223933,-0.7545160739682615,0.46686804154887795,-0.21945277648046613,-0.9155117450281978,-0.7953098965808749,-0.8204135177657008,0.6731016980484128,-0.8807986816391349,-0.23382696229964495,-0.4551659752614796,-0.009676310233771801,-0.2625329182483256,-0.27786371344700456,0.6264751958660781,-0.5405499436892569,-0.739887467585504,0.03545373119413853,0.6004191469401121,-0.9422738146968186,0.18953111115843058,0.38408852415159345,0.478426618501544,-0.32843848085030913,-0.4467330202460289,-0.32215374847874045,-0.7326144389808178,0.37021674402058125,0.38749648816883564,0.901081180665642,-0.8325152806937695,0.769701246637851,-0.10401345044374466,0.5589166954159737,-0.3673318033106625,0.11866367002949119,-0.9491275539621711,-0.7534788092598319,-0.4814837882295251,-0.6938622379675508,-0.3517953036352992,-0.00445319851860404,0.24205785058438778,0.8419725275598466,-0.22813982237130404,0.8215870121493936,0.21153004886582494,-0.6435231077484787,0.651666363235563,-0.1911076926626265,-0.5294241937808692,0.48466959968209267,-0.3726284201256931,0.6289040655829012,0.5055561186745763,-0.5909725511446595,-0.583520426414907,0.36004486959427595,0.17126492224633694,0.1423446317203343,0.862120384350419,-0.6654001250863075,0.4484916185028851,0.15319025749340653,0.6133309048600495,-0.21570930304005742,-0.367779070045799,0.2527644680812955,-0.25607344787567854,-0.11216969601809978,0.9710350702516735,0.3679159004241228,-0.11203233432024717,-0.7587705897167325,-0.14679030515253544,-0.9998366218060255,0.8023247513920069,-0.14694234915077686,0.3279040320776403,0.7646721028722823,-0.7869428494013846,-0.7212861524894834,0.39807598711922765,-0.8622879078611732,0.7569971000775695,0.007537450175732374,0.8821267266757786,0.2778653069399297,-0.9984130477532744,0.03656933829188347,-0.5757874324917793,0.6726657478138804,-0.6236412529833615,-0.2389271524734795,0.651793809607625,-0.7243365780450404,0.48668219754472375,-0.8608269761316478,-0.4227847456932068,-0.07464746758341789,0.9253465537913144,0.09912117663770914,-0.9939688965678215,0.6901040375232697,-0.9660487286746502,0.2538726720958948,0.8506012465804815,-0.9990142798051238,-0.12274270784109831,0.9657389288768172,0.7248492911458015,-0.3460164899006486,-0.15726706245914102,-0.18784433696419,-0.26140650548040867,0.28169340919703245,-0.6893613319844007,0.025362617801874876,-0.569598819129169,-0.2601852882653475,0.39306428702548146,0.5228665503673255,0.8506019404157996,0.9994770581834018,-0.021721255034208298,-0.3842408210039139,-0.6846459093503654,0.9716295655816793,-0.5947438161820173,-0.3816925399005413,-0.9345349166542292,-0.8004554263316095,-0.723052145447582,-0.7205714760348201,-0.35876829735934734,-0.22649777308106422,0.6866832519881427,-0.8142987140454352,0.9254660406149924,0.5227652974426746,0.05693975696340203,-0.7014451595023274,0.9086450980976224,-0.25985420122742653,0.3230526791885495,-0.2840751726180315,0.9652120140381157,-0.45351767586544156,0.9800908179022372,0.11121008498594165,0.9925468838773668,0.5513855507597327,-0.7242500758729875,-0.788721552118659,-0.2651904090307653,0.6806453596800566,0.45796009665355086,0.5960915102623403,-0.30603630328550935,-0.3057032502256334,0.45688567217439413,-0.8093956331722438,-0.5253883632831275,-0.22577483858913183,-0.16868019755929708,-0.27011778205633163,0.2627838351763785,-0.8173137037083507,0.25129163870587945,0.9942489350214601,0.911134687718004,0.5544865797273815,-0.41154982848092914,0.16789798205718398,0.38069972582161427,0.6854730271734297,0.5996220367960632,-0.8386964537203312,0.13697704160586,0.6443404448218644,0.028001752216368914,0.940806279424578,-0.28307731077075005,-0.14696658356115222,-0.11334908613935113,-0.798174281604588,-0.5509430444799364,0.6909517608582973,-0.6603185636922717,0.3163390406407416,0.7190644140355289,0.5005878410302103,-0.16324056731536984,-0.2732559274882078,-0.2850492503494024,0.13971747644245625,-0.9794783322140574,0.48944297479465604,0.9599885176867247,-0.5639328961260617,-0.24223007448017597,0.555746232625097,-0.9019135674461722,0.8713219054043293,-0.4256913368590176,-0.5946299429051578,0.003646473865956068,0.5463064974173903,0.7209737878292799,0.5907670790329576,-0.03904953505843878,-0.3173925010487437,0.9996314221061766,-0.8119069989770651,0.24719566013664007,0.5772219379432499,-0.590932831633836,0.7281345203518867,-0.6793665420264006,0.085582145024091,0.6988557823933661,-0.5820722938515246,0.9274103604257107,0.6904882094822824,-0.5871127597056329,0.3493378395214677,0.7677099681459367,-0.05607155757024884,0.3255976908840239,-0.3402324807830155,-0.6085837902501225,-0.9666447942145169,0.5743242246098816,0.7631527045741677,-0.8955425657331944,-0.5131943710148335,-0.5862884595990181,0.5111041907221079,0.6260552927851677,-0.22778784250840545,0.49670623475685716,0.9091202607378364,-0.5964847109280527,0.6631587077863514,-0.959194868337363,0.3032178250141442,-0.9842757508158684,0.0059188976883888245,-0.652791318949312,-0.6342721171677113,-0.6239275131374598,-0.6196043672971427,-0.03432717500254512,0.16072883689776063,0.49519415153190494,-0.23902632761746645,-0.8494184808805585,0.385517917573452,0.4990019993856549,0.7226766683161259,-0.5618013506755233,-0.6983886924572289,0.23513827053830028,-0.9728569751605392,0.9268311853520572,-0.2730923113413155,0.5482588093727827,0.9567511440254748,0.7632414186373353,0.09690790949389338,0.43936118204146624,-0.5303822499699891,-0.17640219256281853,0.8027178202755749,-0.12058092653751373,-0.457286118529737,0.38479413790628314,-0.9521462507545948,-0.9139055944979191,0.7639384367503226,-0.46632122434675694,0.5506870108656585,-0.6203924347646534,0.6100081391632557,-0.6527146580629051,0.9305744217708707,0.6239467272534966,-0.06823563994839787,-0.7066487516276538,0.8770285709761083,0.9280661470256746,-0.8946385704912245,-0.2844735742546618,0.4978826134465635,0.7858462752774358,-0.8926320234313607,-0.5216737794689834,-0.5431048609316349,0.12892876146361232,0.8083255579695106,-0.2902037054300308,-0.9355744644999504,-0.8923114920035005,0.12132151005789638,-0.3513878798112273,0.562742673791945,-0.5596919148229063,-0.6729862270876765,-0.950405899900943,-0.3271896680817008,-0.29143201652914286,0.8655347712337971,0.5571035603061318,-0.9654524493962526,-0.6647123796865344,-0.7889419952407479,0.6805778099223971,-0.05872934823855758,0.2656660471111536,-0.43052454572170973,0.9235297171398997,0.7452666163444519,-0.9183279229328036,0.9783198051154613,-0.0034312596544623375,-0.6433724379166961,-0.2074610823765397,0.2644238588400185,0.3983583622612059,0.5045302682556212,0.010539134498685598,-0.5750968712382019,0.1963490885682404,-0.47718247259035707,-0.712041805498302,-0.3399732834659517,-0.917359534651041,-0.48101652413606644,0.2022228240966797,0.43815703922882676,-0.9370582057163119,0.9939253935590386,0.4846552684903145,0.276140199508518,0.02271460322663188,0.05506003741174936,0.18552348110824823,-0.059037061873823404,-0.17668782779946923,0.05660568503662944,0.7154473066329956,0.06215225625783205,0.5332294055260718,-0.3970782570540905,0.5735288113355637,0.3568738610483706,0.1429541241377592,0.6266026366502047,-0.8370506037026644,0.7382133579812944,0.09537399699911475,0.05719676287844777,0.22668318916112185,0.16205074870958924,-0.6815967648290098,0.05305617023259401,0.8029510485939682,0.8177511859685183,0.2375553078018129,-0.8925594524480402,-0.6737931123934686,0.46825542533770204,-0.7119461488910019,0.5359380315057933,-0.5958710452541709,0.7664849795401096,0.11602312652394176,0.7685221266001463,0.004434265196323395,-0.6128553841263056,0.700206627137959,-0.1635171198286116,0.6794816474430263,0.9490724299103022,-0.4271815842948854,-0.6486571100540459,-0.43633957393467426,-0.47747626854106784,0.41327258897945285,-0.03130520647391677,-0.6175604732707143,-0.9325334434397519,-0.29573262529447675,-0.8426183429546654,-0.4082595561631024,-0.6771544776856899,0.6556765916757286,-0.1651394721120596,-0.38287394028156996,0.8920588023029268,0.46662627486512065,-0.1336456243880093,0.5745973163284361,0.49268914479762316,0.6032548486255109,-0.6126491986215115,-0.5801880471408367,-0.11857076175510883,-0.8513360610231757,-0.30848831217736006,0.6576497219502926,0.08821135433390737,0.3465003063902259,0.10670565720647573,-0.7446789131499827,-0.7930764579214156,0.030929830390959978,-0.9643309395760298,-0.8163893269374967,0.6171229789033532,-0.32946411054581404,0.5097509706392884,0.2600228013470769,0.6203796886838973,-0.3481133496388793,0.20490397419780493,0.5019107209518552,-0.4196480200625956,0.39735123328864574,-0.1455956748686731,0.6609095688909292,-0.3033610926941037,-0.8838148387148976,-0.2690062369219959,-0.6706297472119331,0.10449152626097202,-0.25182379968464375,0.5911647854372859,-0.04887982923537493,-0.9714612737298012,-0.5427002380602062,0.9755841810256243,-0.645191959105432,0.45239402260631323,-0.9113845084793866,-0.9813652471639216,-0.4436006024479866,-0.6219541924074292,0.632778090890497,-0.18374854093417525,-0.6293826154433191,-0.6774751772172749,0.6098307059146464,-0.8107177559286356,-0.6339756809175014,-0.5162381818518043,0.6153689720667899,-0.7837341339327395,-0.5494635053910315,0.5965231088921428,0.8628398394212127,-0.0998613485135138,0.726228644605726,0.10598678747192025,-0.6067267335020006,0.2646255134604871,-0.11242974549531937,0.2920180130749941,-0.6665817801840603,0.5065457532182336,-0.6318376706913114,-0.9702785001136363,-0.10614979546517134,0.08324424596503377,-0.882172784768045,-0.46938175708055496,-0.11771845119073987,-0.7705454607494175,0.9321695100516081,0.7647290104068816,-0.04575285781174898,-0.6790000074543059,-0.06605280935764313,-0.7492955648340285,0.7612326298840344,0.6448011519387364,-0.9191194018349051,0.6841637655161321,-0.8719384549185634,-0.28697332134470344,-0.4781561465933919,-0.07396575575694442,-0.10256028454750776,-0.3067425866611302,-0.06987169664353132,-0.6385500323958695,-0.5612409533932805,-0.2633083160035312,0.7550822114571929,0.13934491574764252,-0.3169110040180385,0.7116854707710445,0.7981908973306417,0.22941284626722336,-0.9082443066872656,0.7204647888429463,0.016606193035840988,0.40469634952023625,0.16355875506997108,-0.7864914396777749,-0.165770105086267,-0.5628632851876318,0.32907528476789594,0.7521571749821305,0.860651237424463,-0.770569066517055,-0.1312201381660998,-0.3791782781481743,-0.4962574038654566,-0.7815931146033108,-0.999228966422379,0.7331864591687918,0.38912895880639553,0.7410458084195852,-0.31411557411774993,0.5271320296451449,0.7585552162490785,0.803742294665426,-0.776347509585321,-0.871938151307404,-0.3947690613567829,-0.639432089868933,0.745918816421181,0.7459048493765295,0.3869129801169038,0.4841270027682185,0.9928284268826246,0.9214822710491717,0.8148163668811321,0.3246861849911511,-0.6237578154541552,-0.924212112557143,-0.4939310662448406,0.8577603721059859,-0.235016452614218,-0.04481900716200471,-0.7812013430520892,0.9527868484146893,0.03487336682155728,-0.12727716006338596,-0.37797658052295446,-0.5754523193463683,0.11433004774153233,-0.27214684756472707,-0.23903650231659412,-0.2837125929072499,-0.6813546316698194,0.13145460234954953,-0.12476885737851262,-0.8397963736206293,-0.7277116551995277,-0.41809546761214733,-0.6808535400778055,0.9098358754999936,-0.5793757624924183,-0.1824989323504269,-0.4916117419488728,0.3298796550370753,0.050997746642678976,-0.034015856217592955,-0.5914314356632531,0.1298149637877941,-0.8105901125818491,-0.7212178744375706,-0.034134792629629374,-0.8470836691558361,-0.14313395600765944,0.22084132861346006,0.6577166207134724,0.8549949298612773,0.1319825304672122,-0.9061229294165969,-0.1792458943091333,-0.6619039182551205,0.2842169995419681,-0.0555904689244926,0.32502383179962635,-0.586090836673975,0.7368691652081907,0.06925926078110933,-0.11871056538075209,0.5552122979424894,-0.35044882679358125,-0.4408698840998113,-0.11719885794445872,-0.042603378649801016,-0.12511771079152822,0.5092201679944992,0.5782446237280965,-0.9714701003395021,0.2190279234200716,0.4200175255537033,-0.11905027786269784,0.9809719398617744,0.14847684651613235,0.07851428398862481,-0.25002796901389956,0.5797214540652931,0.5907963998615742,0.20469927415251732,-0.5944861290045083,-0.6276799733750522,0.5347475889138877,-0.8634285759180784,0.4087220556102693,-0.0695069283246994,0.6824062815867364,-0.9307471509091556,0.7103196745738387,0.584159517660737,0.38300189562141895,-0.2645380892790854,0.24401266127824783,-0.796824942342937,0.4553129826672375,-0.02130518713966012,-0.87407111749053,-0.6172749712131917,-0.30375177739188075,-0.007356331218034029,0.6721440148539841,0.5605458910576999,0.37612291099503636,0.5631837006658316,0.4117785766720772,-0.894383339677006,-0.8062034514732659,-0.9075721888802946,-0.41139425663277507,-0.6398289655335248,-0.49721961468458176,0.3239904195070267,-0.8410861217416823,-0.6317186742089689,-0.22506997641175985,0.6238696277141571,0.5990402223542333,-0.01666675368323922,-0.19542487617582083,-0.008163487538695335,-0.5554952681995928,-0.7385441493242979,-0.30736615136265755,0.954934558365494,0.12366224825382233,0.1426724367775023,0.6075417841784656,0.43144866451621056,-0.13471273705363274,0.3932253918610513,-0.6999787725508213,-0.804644055198878,0.3192826621234417,0.4539088890887797,0.650011754129082,-0.11734619596973062,0.2283787289634347,-0.9852781849913299,-0.7983550997450948,-0.4521112311631441,-0.3001214121468365,-0.36555259115993977,-0.07625725539401174,0.43008151557296515,0.8565258267335594,-0.7162590948864818,-0.10818493925035,0.25360725820064545,-0.8689069570973516,0.8377056703902781,-0.45026913890615106,-0.8330511557869613,0.717744892463088,0.605523532256484,0.6626460696570575,-0.3948643170297146,0.3999843173660338,0.4237808701582253,0.5564867998473346,-0.49882862716913223,0.7477598357945681,0.4544089422561228,0.6621891679242253,-0.030427156016230583,-0.30380453867837787,0.32396639278158545,-0.1765135657042265,-0.3058164222165942,-0.5131449713371694,-0.23312547011300921,-0.47651795111596584,0.6243113847449422,0.5381671655923128,-0.5291002681478858,-0.12545968731865287,-0.7746377629227936,-0.7892693476751447,0.3430569381453097,0.718733889516443,-0.22376426123082638,0.8706306242384017,-0.14951033517718315,0.7755454028956592,0.48739380203187466,-0.7832796424627304,-0.25943412026390433,-0.2914283727295697,0.4654520507901907,-0.3996652467176318,-0.23515475634485483,-0.7441454078070819,-0.8196814190596342,-0.09379545785486698,-0.9572766195051372,-0.2672603935934603,0.5694359531626105,-0.8774847574532032,0.9995724204927683,0.9303183695301414,-0.27790692541748285,0.1440389584749937,0.8619226831942797,-0.9915584772825241,0.3574911314062774,0.9143707687035203,0.871155271306634,0.4796113301999867,-0.9967268356122077,-0.6329197003506124,0.4359235200099647,-0.9498129300773144,-0.1049085813574493,-0.6886777598410845,0.2748118797317147,0.1753152972087264,0.9419054402969778,-0.1051954124122858,0.8552800421603024,-0.9302009576931596,0.40982865169644356,-0.837485387455672,-0.6842768886126578,0.1521094790659845,-0.18109102779999375,-0.46235070284456015,-0.6502437079325318,-0.2730365586467087,-0.7050912994891405,0.051004610024392605,0.8885278236120939,-0.6598617001436651,0.1419639503583312,0.6395186204463243,0.17362041678279638,0.7393109048716724,-0.9972385787405074,-0.5361171518452466,0.42756433319300413,-0.2120623174123466,0.9464683174155653,-0.515242185909301,0.811893742531538,0.4679982797242701,-0.2887951312586665,0.22286512050777674,0.20647525321692228,0.6727314786985517,0.03512611472979188,0.1682763658463955,0.041437729727476835,0.09657911816611886,0.5859731235541403,0.013374517671763897,-0.8635388789698482,-0.11278248531743884,0.400551482103765,0.29346373258158565,0.7959532444365323,0.478503146674484,-0.4330150908790529,-0.24146283976733685,-0.4916412001475692,0.9813502272590995,0.9677802110090852,0.39158206386491656,0.19679819699376822,0.7830582954920828,0.9228496672585607,0.8588519939221442,0.4717092555947602,-0.4562768004834652,0.7248204019851983,0.9708148059435189,-0.9762131026946008,0.38764443900436163,0.37114920979365706,-0.7718436024151742,0.35698852175846696,0.8841706104576588,0.0660709417425096,0.8509266353212297,0.9019021582789719,-0.9762212838977575,-0.37335339142009616,-0.9986679935827851,-0.6384221762418747,0.5493610538542271,0.19351008022204041,0.8876590519212186,0.22301033791154623,0.20277840830385685,0.619226485490799,-0.19210248813033104,0.422461390029639,-0.40221463050693274,0.6655101738870144,-0.9354867078363895,0.6040468509308994,-0.4258822174742818,0.03741917759180069,-0.5881000701338053,-0.06141307996585965,-0.8521926878020167,0.42212328501045704,0.5001283134333789,0.3050981154665351,0.11804725602269173,-0.40359151316806674,-0.3794125895947218,-0.6140344296582043,0.10094450647011399,-0.6802720311097801,0.7172089973464608,0.2652678764425218,0.43393247993662953,-0.029373562894761562,0.5920287128537893,-0.15954351518303156,-0.286817227024585,-0.9927982874214649,0.11533489590510726,-0.5148041252978146,0.30523034930229187,0.9569246671162546,-0.5480182920582592,-0.8545190053991973,-0.8810272738337517,0.025395707692950964,0.32540998002514243,0.6399851688183844,0.2609459231607616,-0.9218463152647018,-0.24331097025424242,-0.331110836006701,0.6182749774307013,-0.434911135584116,-0.001911090686917305,-0.8613316998817027,-0.8590818089433014,-0.28477388760074973,0.7655011522583663,-0.4615568798035383,0.255896276794374,-0.06356529472395778,-0.25963807199150324,0.5163118401542306,-0.6987451459281147,-0.47207447746768594,-0.5441709384322166,-0.23631044011563063,0.024789257906377316,-0.47981436690315604,0.20244402904063463,0.47030817391350865,-0.7045311988331378,-0.3868666156195104,0.269632579293102,-0.41866779467090964,0.33906231028959155,0.2900822111405432,0.2687774868682027,-0.450847988948226,-0.45054252725094557,-0.35179439978674054,-0.0018277335911989212,-0.33332935627549887,-0.9427749156020582,-0.12735987873747945,0.3164326399564743,0.06422780035063624,0.539347134064883,-0.9724253327585757,0.7568948552943766,-0.04767826618626714,-0.006138017401099205,0.6682048724032938,0.20339842978864908,0.5134253376163542,-0.4521094989031553,-0.6368671315722167,-0.5466180457733572,0.23424360202625394,0.5385689581744373,-0.8667525686323643,0.579154722392559,-0.591938154771924,0.5358162452466786,-0.7314875540323555,-0.048059399239718914,-0.9360955986194313,0.03572657564654946,0.5127400541678071,0.9584757150150836,-0.9301617662422359,-0.5094139217399061,0.1576553052291274,-0.3335391441360116,0.5849634264595807,-0.5456792702898383,-0.3985691387206316,0.9580805650912225,-0.15008732210844755,0.6877975794486701,0.9460500893183053,-0.1806469070725143,-0.7628813679330051,0.1850738632492721,-0.2619353448972106,0.32274036668241024,-0.5698549053631723,0.8543056775815785,0.2528088390827179,0.6227836515754461,0.36627763975411654,0.7294857241213322,0.9473500847816467,-0.9881972181610763,-0.25694403517991304,0.9519246653653681,-0.487812165170908,0.8572990694083273,0.1316590546630323,-0.6002311641350389,0.8394436393864453,-0.8037447622045875,0.9245939180254936,0.2821090240031481,-0.2233402761630714,-0.03997000493109226,-0.8930747816339135,-0.9114967477507889,0.25319774309173226,0.5001852102577686,-0.6723221666179597,0.5245619304478168,0.3916391581296921,0.9222926734946668,0.8615585407242179,-0.7581914383918047,-0.8514002026058733,-0.4143033376894891,0.5619044206105173,0.26972707314416766,0.619861226528883,0.19278819672763348,-0.14092664467170835,-0.19419217621907592,0.06506956368684769,0.4432418243959546,-0.7699427134357393,0.7303833519108593,-0.725290353409946,-0.5204584435559809,-0.757191822398454,0.6552577763795853,0.7500883843749762,-0.8036283263936639,0.7912421594373882,0.039355693850666285,-0.8040799121372402,0.7278741793707013,0.9031022829003632,0.5479047140106559,-0.10639633843675256,0.5860105217434466,-0.22530174907296896,-0.4583147601224482,-0.39582101022824645,-0.6859947615303099,-0.8842460447922349,0.895147277507931,0.11280021164566278,0.019777780398726463,-0.0791719127446413,-0.35059926426038146,0.8699818272143602,0.014657729770988226,-0.5964172226376832,-0.06998352985829115,-0.10579880513250828,-0.9279396841302514,-0.67025510314852,-0.8589222021400928,0.49813881050795317,-0.37192009994760156,-0.5858555417507887,-0.7343581491149962,-0.532075768802315,0.8865262265317142,0.9984860680997372,0.991446384228766,0.6264996845275164,0.44711631489917636,0.3194774417206645,-0.3022141386754811,0.16907298704609275,0.6880064108408988,0.7567107416689396,0.129857097286731,-0.6620580847375095,0.5324754863977432,0.21691298065707088,-0.5829799356870353,0.7880678339861333,0.6842701593413949,-0.02984411735087633,-0.42373499646782875,-0.2638356043025851,0.9409976368770003,0.37064112396910787,0.9989196765236557,0.07456994848325849,0.6934680682606995,0.39631023071706295,0.6617063633166254,-0.42481061397120357,0.6390513395890594,-0.8327675336040556,-0.8839670647867024,-0.3405142268165946,0.8654889999888837,0.17818608600646257,-0.6740026981569827,0.23705969844013453,0.333699616137892,0.8495943741872907,0.061928223352879286,-0.6092962045222521,-0.9346299823373556,0.4099778737872839,0.1559422709979117,0.9911476168781519,0.08290106151252985,-0.8234662669710815,0.057274071499705315,0.5406940975226462,-0.4300553435459733,-0.2538380632176995,0.5486687566153705,0.7387392786331475,-0.4887032052502036,0.8181225280277431,0.41760266851633787,0.10914459358900785,0.2135746581479907,0.6600239714607596,-0.07873817486688495,0.27503133611753583,-0.21043319115415215,-0.047582617960870266,0.29411598620936275,0.365604218095541,0.4697941900230944,0.06301958346739411,-0.9791902801953256,0.8588054445572197,0.8378098397515714,-0.6145754307508469,0.790498408023268,0.27961690118536353,0.901436410844326,0.5333301164209843,0.8785065985284746,-0.25562022533267736,-0.2364352671429515,-0.3701658290810883,0.35986801655963063,-0.9708416350185871,-0.415803343988955,0.27552220644429326,0.21114135067909956,-0.5296805445104837,-0.8861890155822039,0.12899898272007704,0.41733487509191036,-0.9055935689248145,0.1066226209513843,-0.23182293446734548,0.6608866406604648,0.561166760046035,-0.40997172938659787,-0.07213763147592545,0.38146343268454075,0.839262121822685,0.2758996090851724,-0.45701027987524867,0.1628690636716783,-0.258422726765275,-3.423774614930153e-05,0.8832893390208483,0.21004697820171714,0.08684373181313276,0.41799529548734426,0.18558886274695396,-0.4255494028329849,-0.4438160974532366,-0.7975303740240633,0.568531384691596,-0.7978682890534401,0.3242792203091085,0.7693849112838507,-0.7215089886449277,0.5423542326316237,0.7510825525969267,0.08813156094402075,0.1776272812858224,0.17982142604887486,0.5793537474237382,-0.3745669056661427,-0.04891188256442547,-0.9794346960261464,-0.19001783523708582,-0.5629320065490901,0.9812722788192332,0.22172053717076778,-0.8732865466736257,0.6916621145792305,-0.1377704320475459,-0.6075176014564931,-0.11320366337895393,-0.5341568063013256,-0.9110701382160187,0.3876689630560577,0.9381845435127616,-0.5510369730181992,0.9056734922342002,-0.9626117874868214,-0.681653537787497,0.10247951373457909,-0.9807673990726471,0.5729685965925455,-0.5624555954709649,-0.9282219032756984,0.2247455371543765,0.12089846283197403,-0.8656235979869962,0.09192365920171142,0.5111255985684693,-0.5902173081412911,-0.23214196739718318,0.03243628516793251,-0.7848589518107474,0.5103102368302643,-0.16467465553432703,0.3798824502155185,0.7177555686794221,0.06400769157335162,0.666832956019789,0.23969311779364944,-0.36756083741784096,0.4716526591219008,-0.9947005584836006,-0.3973815939389169,-0.6105828108265996,0.2425385736860335,-0.4264837256632745,0.9759146710857749,-0.6748870443552732,0.05957410531118512,-0.6045104875229299,0.8664797367528081,0.8959381943568587,0.9486428126692772,0.28845686046406627,-0.42026652209460735,-0.17243269179016352,-0.5239000208675861,0.8030599486082792,-0.7189567079767585,-0.28969560330733657,0.8419701848179102,-0.2801162600517273,0.8648564033210278,-0.20873273955658078,0.38331657322123647,-0.8175360579043627,-0.23069782368838787,-0.22729439893737435,0.1723369755782187,0.3032742808572948,0.7377394577488303,0.03481043362990022,0.8511259802617133,0.5981041197665036,-0.5295467507094145,0.23653204273432493,-0.6147143105044961,0.6902833827771246,-0.5404526004567742,0.16691669216379523,-0.3202792024239898,0.45427837362512946,-0.6131878793239594,-0.7437240057624876,-0.7642169995233417,-0.4345686906017363,-0.2717152377590537,-0.043440483044832945,-0.8855574089102447,0.03549876483157277,-0.9770542657934129,-0.22230283776298165,0.8602507039904594,0.503356802277267,0.9841930805705488,-0.929274738766253,-0.27038893895223737,0.43579890904948115,-0.22303087543696165,-0.9858038732782006,-0.32023088773712516,0.48169770650565624,-0.8000759831629694,-0.1705319513566792,0.391702473629266,-0.805791606195271,-0.6420826395042241,-0.6637227763421834,0.4110153545625508,-0.8763010767288506,0.9006938245147467,-0.3064033882692456,-0.20180113380774856,-0.1058751754462719,-0.6377205085009336,0.28353950707241893,0.1844205460511148,-0.5192749788984656,-0.9644330427981913,0.41061513870954514,0.5166311138309538,-0.6433145105838776,0.6883977688848972,-0.37103388691321015,0.10757695604115725,-0.9877274492755532,0.9413822339847684,-0.3471620809286833,-0.34035840537399054,0.5134070129133761,-0.17432754766196012,0.32231237227097154,-0.997038418892771,-0.07800403004512191,0.4403609395958483,-0.7471088138408959,0.8978295982815325,0.7617244943976402,-0.9086079685948789,0.8418728914111853,0.680731107480824,0.038181350100785494,0.3891181848011911,-0.9448675476014614,-0.9745546504855156,0.9828083184547722,0.15800614934414625,0.6424959320574999,-0.7831761823035777,0.8750754757784307,0.7609044355340302,-0.03362998412922025,0.7879786076955497,0.9196733850985765,0.6514789606444538,-0.31827374594286084,-0.3232150124385953,0.9303877325728536,0.9158356166444719,0.5956381843425333,0.8574320282787085,-0.4754929728806019,0.6479354603216052,0.5328099145554006,0.2303966754116118,-0.5802872776985168,0.7641283138655126,-0.19887373317033052,0.21178014762699604,-0.76959780883044,0.6549232075922191,0.006195646245032549,0.6617761887609959,0.7237231396138668,-0.26415515085682273,-0.32153133023530245,0.9664259045384824,-0.5366096338257194,-0.005505750421434641,-0.26738928770646453,0.5256726802326739,0.2617585281841457,0.8684713523834944,0.8748519904911518,0.1952899214811623,-0.3045168677344918,-0.34829333797097206,0.15857236552983522,0.5593870738521218,-0.03934853244572878,-0.726636300329119,-0.6178594031371176,0.6471091681160033,-0.10438424814492464,-0.1605108086951077,-0.714994085021317,-0.8695774236693978,0.8303115675225854,0.5499890055507421,0.800170358736068,0.7910277359187603,0.5131880813278258,0.6610056678764522,0.35440382873639464,-0.32267809472978115,-0.8431774596683681,-0.4612053306773305,-0.5655311541631818,-0.9189251568168402,-0.5490283793769777,0.7328320764936507,0.011805927380919456,-0.20750850578770041,-0.18082690658047795,-0.4141831248998642,-0.046649275347590446,-0.8402291112579405,-0.034768827725201845,-0.0067529138177633286,0.8212696430273354,-0.9472009702585638,-0.12018395401537418,0.4330138675868511,0.48466358706355095,-0.0789001570083201,0.12323555164039135,0.5729876216500998,0.2520661507733166,-0.13769885571673512,-0.6939709978178144,-0.9324983516708016,-0.7351232501678169,0.15442358842119575,0.9912648922763765,-0.6827317019924521,0.7782111181877553,-0.5093959481455386,-0.31151334568858147,-0.47595084458589554,0.5058557642623782,0.9971852628514171,-0.12430229131132364,-0.3562655826099217,-0.37238576356321573,-0.035055160988122225,-0.014952273573726416,-0.532038223464042,-0.4818005380220711,-0.4416961120441556,0.02233447227627039,0.777554321102798,-0.7300866334699094,-0.6629112819209695,0.7403670158237219,0.9896531822159886,0.36697665927931666,0.2266757427714765,0.5546063557267189,-0.3136880835518241,0.4059140393510461,-0.8703947910107672,-0.09174140030518174,0.4091262868605554,0.3991403323598206,-0.8527226275764406,0.2087042243219912,0.7841852665878832,0.9820120162330568,0.2093000910244882,0.4722026018425822,-0.40803055791184306,0.6216907822526991,0.05601806007325649,-0.8353973068296909,0.4470122577622533,-0.6413019825704396,-0.8747738027013838,-0.8961925068870187,0.7096209083683789,-0.11558072874322534,0.6130421948619187,-0.21605430776253343,-0.9121056143194437,-0.8583472752943635,0.8025898919440806,-0.250913736410439,0.6995929032564163,-0.531965084373951,0.20237919967621565,0.7577899405732751,0.6231015725061297,-0.0670043951831758,-0.10029016574844718,-0.9946055640466511,0.2324943714775145,0.6220141751691699,-0.8532908968627453,0.4140668008476496,-0.22439801413565874,-0.5205370951443911,-0.8524194783531129,-0.9338910868391395,0.8785567353479564,0.6016882681287825,-0.03201756626367569,-0.9005387178622186,0.2618383225053549,0.4595496105030179,0.3432842749170959,0.2920694975182414,-0.9546192763373256,-0.8783139521256089,0.5035050907172263,0.13296819711104035,0.8302121362648904,0.30055941734462976,-0.39622423239052296,0.3838420230895281,-0.9963507507927716,0.7063205284066498,0.8507474604994059,0.8170657493174076,0.6827061232179403,0.08575730537995696,-0.06537869991734624,-0.646049443166703,-0.8898114436306059,0.45260652853176,0.8747596484608948,0.2984033403918147,-0.12863107305020094,-0.3570813392288983,-0.6980161219835281,-0.06573205208405852,0.6733158468268812,0.3534819111227989,0.03821939695626497,0.3985599889419973,0.8732807063497603,0.42563057132065296,-0.0994261596351862,0.9386035231873393,-0.37944388343021274,0.26889729918912053,0.7267091916874051,0.28090729285031557,-0.47664039488881826,0.9112342102453113,-0.560723246075213,0.7437863573431969,0.04758806433528662,-0.19608992151916027,-0.6885797432623804,-0.8846832416020334,-0.6397883668541908,-0.20176745811477304,0.519700423348695,-0.7981233350001276,-0.972991565708071,-0.37062245374545455,-0.3442268082872033,-0.9667052351869643,0.8868076703511178,0.8124301843345165,0.7391191013157368,-0.9535604803822935,-0.3935665627941489,-0.8211988746188581,-0.6377164935693145,-0.8714509820565581,0.7488031140528619,0.29675369895994663,0.47786995163187385,-0.634204376488924,0.9069530167616904,-0.1309349350631237,-0.6772028300911188,-0.6028784066438675,-0.7015407592989504,-0.005295341834425926,0.1087576812133193,0.16233614878728986,0.2249871944077313,0.6032510907389224,0.8577666976489127,-0.37903739186003804,0.550588593352586,0.6944053182378411,0.6575197032652795,0.2757844137959182,0.5354665978811681,0.03777550766244531,0.9296655412763357,-0.9494780558161438,0.6462875716388226,0.7551319706253707,-0.04728831583634019,-0.1631684093736112,-0.3987886938266456,-0.6803444870747626,0.22204144671559334,0.24147383635863662,0.6081006759777665,0.19845333183184266,-0.4263855596072972,0.18504783464595675,0.5273149348795414,0.6186674241907895,-0.8777425461448729,-0.6225712895393372,-0.1967904013581574,-0.14952947525307536,-0.4276260402984917,-0.0381894139572978,-0.9820621814578772,0.44975369423627853,0.17241891101002693,0.03594043757766485,0.383077931124717,-0.07266299240291119,-0.35400573909282684,-0.3612662460654974,-0.5163911134004593,-0.9207392330281436,0.7277449313551188,0.11458989745005965,-0.8360526692122221,-0.9045480499044061,-0.9453008524142206,0.14460035879164934,-0.6317287613637745,0.2134341625496745,-0.051491161808371544,-0.07525862706825137,0.7792113125324249,0.7472864575684071,-0.7289243191480637,-0.3436499494127929,0.6106640109792352,0.6946245762519538,0.8306454098783433,-0.24207971384748816,0.7291770912706852,0.9752651187591255,-0.6349682905711234,-0.668074379209429,-0.5580275030806661,-0.8595907902345061,0.813651573844254,-0.1962854783050716,0.8529938831925392,-0.47246925439685583,0.893885136116296,0.446269812528044,-0.33684826362878084,0.027697905898094177,-0.5264890086837113,0.5237755719572306,-0.4274739883840084,-0.8855367251671851,-0.968357034958899,-0.7641510907560587,0.5469881384633482,0.7783728535287082,0.5648349761031568,0.5326446942053735,-0.5662577664479613,-0.4384797029197216,0.015465613920241594,-0.16733159311115742,-0.24017206951975822,-0.5702784461900592,0.6804021834395826,-0.4785650633275509,-0.7280308133922517,-0.9611062733456492,-0.7823681384325027,-0.49874874018132687,-0.8822146723978221,-0.10981806088238955,-0.03644723445177078,-0.2566231172531843,0.22824312932789326,0.6310325041413307,0.8090990660712123,0.4510951596312225,0.6784478602930903,0.5140911764465272,-0.32119241962209344,-0.47669223695993423,0.9724836074747145,-0.1748677114956081,0.35977856256067753,-0.19159084977582097,0.9876601351425052,-0.10984940873458982,0.49426699010655284,0.8122729752212763,0.01348927989602089,0.981691483873874,0.9606300829909742,-0.24707260634750128,-0.21752661699429154,-0.29283849336206913,0.273769929073751,0.771596850361675,0.3766789841465652,-0.9414202957414091,-0.8459662911482155,0.2665967298671603,0.78308180347085,-0.8390730586834252,0.5660160016268492,-0.122367178555578,-0.3233818761073053,-0.9715984067879617,0.10105050448328257,-0.3050804743543267,-0.13418368436396122,-0.40340982424095273,-0.1636275569908321,0.8910128218121827,-0.8330862484872341,0.713664305396378,0.4158670171163976,0.9527813796885312,-0.5866183592006564,0.7984471134841442,0.1129464847035706,0.1875819624401629,-0.3385180626064539,-0.7994326562620699,0.2887251144275069,0.7354539157822728,0.29436287144199014,0.8279062109068036,-0.6647878945805132,-0.9883932052180171,0.23151299124583602,-0.5430345581844449,0.8000501357018948,0.9849341278895736,-0.24672791874036193,0.740824421402067,-0.8049485669471323,0.8401295663788915,0.9131887000985444,-0.44616747787222266,-0.639837259426713,0.1676939227618277,0.27156890369951725,0.37443951051682234,0.9291954464279115,0.28468203265219927,-0.3777059051208198,-0.8882008572109044,-0.5294340709224343,0.6545487521216273,0.44574385648593307,-0.026513265911489725,0.8740379763767123,0.6888680947013199,0.905317205004394,0.06616741698235273,0.20341395400464535,0.97371467621997,0.8076693215407431,-0.323809377849102,0.10784887475892901,0.038980551064014435,0.7531724530272186,0.5731710544787347,-0.6921064588241279,0.15153197990730405,-0.6528961146250367,-0.4515918539837003,0.6201212061569095,-0.1719221114180982,0.1606187867000699,-0.8621290693990886,-0.8887167582288384,-0.8110111644491553,-0.1334087187424302,-0.8930315519683063,-0.15605112351477146,-0.1094826627522707,-0.616301201749593,-0.9375723619014025,-0.10542809264734387,-0.6380931339226663,0.45698072109371424,0.7020501084625721,-0.21121546113863587,-0.9823577348142862,-0.8599922228604555,-0.4930563666857779,0.915722883772105,0.025628022383898497,0.9225931908003986,-0.43189686303958297,-0.72649060562253,0.8146047024056315,0.7028754907660186,-0.7603962388820946,-0.22811250481754541,-0.14411237370222807,0.33147082291543484,0.38969219010323286,-0.09040968585759401,-0.537573124282062,-0.4963766196742654,0.6885470906272531,-0.7236829507164657,-0.21897829975932837,-0.2839794880710542,-0.35096236038953066,-0.3794650277122855,0.05539743509143591,0.059478864539414644,0.8232248788699508,-0.17947058659046888,-0.16959436517208815,0.27501032361760736,0.5880422811023891,-0.6277072434313595,0.7710018106736243,0.8991558058187366,-0.23177198274061084,0.7821337897330523,0.07105602184310555,0.18946944829076529,-0.8062391923740506,0.48674064967781305,-0.22201978275552392,-0.19486613059416413,-0.9461555257439613,-0.3812757274135947,-0.752630871720612,-0.20120828319340944,-0.7490328876301646,0.778305565007031,-0.010393691714853048,-0.8268425595015287,0.789349724072963,0.4793087779544294,-0.19796201027929783,-0.02271165931597352,-0.9074880965054035,-0.13500782009214163,0.8299492090009153,0.36415300611406565,-0.6499143303371966,0.0577265121974051,-0.718710545450449,-0.45186145417392254,0.58645458240062,0.8352828016504645,0.05291084945201874,-0.26843863632529974,-0.4570486359298229,-0.8084203065373003,0.3567374525591731,0.34947124496102333,-0.17472124146297574,-0.6812351206317544,0.30949320970103145,-0.9655058300122619,-0.763783810660243,-0.34142230823636055,-0.17136583337560296,0.31620201049372554,-0.332995000295341,-0.10937569383531809,0.5350941889919341,-0.5732615324668586,0.428068820387125,0.27463716454803944,-0.19181485986337066,0.3352508647367358,-0.8377409083768725,-0.2244741963222623,0.4965429278090596,-0.4379173261113465,0.11170228570699692,0.07783532654866576,0.8365240045823157,-0.5095204766839743,-0.05752324452623725,0.2852957877330482,-0.8071890501305461,0.46535063488408923,-0.5269713783636689,-0.11277590086683631,-0.534331685397774,0.9599462915211916,-0.9152958067134023,0.3802250795997679,-0.38256108528003097,0.6791301518678665,-0.948257046751678,-0.3534612087532878,0.6863974640145898,-0.9896187325939536,-0.8983176299370825,-0.6820525857619941,0.8645390425808728,-0.9787772549316287,-0.9616683986969292,0.19656292675063014,0.6452612672001123,0.8795146490447223,0.44391355803236365,-0.10955633735284209,0.7032845336943865,0.19683350948616862,0.8729222123511136,-0.6942552444525063,0.9654100053012371,0.5252810465171933,0.5453164223581553,-0.7769371764734387,0.1926847156137228,-0.45876642409712076,0.8612409918569028,0.9482127581723034,0.0313231386244297,-0.26692304434254766,0.4233239581808448,-0.5599309005774558,0.5339570450596511,-0.7582715833559632,0.8458739826455712,0.49024952109903097,0.1586920223198831,0.3420554958283901,0.003363952971994877,-0.9593350347131491,0.8489612555131316,-0.30348832439631224,-0.9546288130804896,-0.7852565967477858,0.6766938981600106,-0.23272438952699304,-0.6013972898945212,0.3829881916753948,0.3178144874982536,-0.7360687493346632,0.9507180866785347,-0.6310449801385403,0.32544402964413166,0.19309557555243373,-0.9034739504568279,0.9348153970204294,0.10947770206257701,0.05569315608590841,-0.30370141100138426,-0.17367023276165128,-0.01894946163520217,-0.13132404815405607,0.26141888834536076,0.4343394497409463,0.7354799062013626,-0.7485648216679692,0.2686489140614867,0.6458667009137571,0.3979793502949178,0.2717796778306365,0.8325670254416764,-0.363478428684175,-0.852964710444212,0.7281606188043952,0.9478466203436255,-0.5022617536596954,0.7355168242938817,0.7452293275855482,0.4694773661904037,-0.9559823689050972,0.015981407836079597,-0.887103040702641,0.7491793548688293,-0.35004628729075193,0.19525566417723894,-0.8060016543604434,0.8880309872329235,-0.6118160597980022,0.18743666214868426,-0.6556801004335284,0.5997966900467873,-0.17624101461842656,0.23775095725432038,0.447119208984077,0.04272048361599445,0.6306219478137791,-0.8824656847864389,0.9585311193950474,0.588450226932764,0.08582168398424983,0.498673555906862,-0.381805376149714,0.04014429869130254,0.9913836368359625,0.13573724403977394,0.8552924315445125,0.9888605214655399,0.3732909755781293,-0.8895003851503134,0.16517305467277765,0.024825771804898977,-0.5948483617976308,0.153515437617898,-0.8879446303471923,0.6485210563987494,-0.34709861874580383,0.4975163470953703,-0.2100313832052052,0.017036809120327234,0.5377881289459765,-0.20947229582816362,0.07873564679175615,-0.11030321847647429,-0.4353589527308941,0.04799034586176276,-0.06360064074397087,-0.5604359656572342,-0.23365837382152677,-0.5207469519227743,-0.12039374792948365,-0.22217268915846944,-0.517554821446538,-0.23525717947632074,0.7310359166003764,0.5017947894521058,0.8303336501121521,0.7394406963139772,0.4868388371542096,0.44846893660724163,-0.1468006237410009,0.37010048516094685,-0.05255203880369663,-0.5631928374059498,0.7080710795708001,0.0427035610191524,-0.20355930319055915,-0.3309080991894007,0.7927742446772754,0.5248075076378882,-0.7219463442452252,0.3777443249709904,-0.9317350247874856,0.2931898101232946,-0.910998357925564,0.04077308112755418,0.8449212140403688,0.4504309459589422,-0.24511992698535323,0.8582102623768151,-0.800225242972374,-0.15442355256527662,0.7973474450409412,-0.22673144889995456,-0.05969844711944461,-0.0417439048178494,0.4032970010302961,0.2727444120682776,-0.7167833186686039,0.0036650681868195534,-0.13019335083663464,0.849768070038408,-0.9946164200082421,-0.15716772712767124,-0.6167879388667643,0.4022837281227112,-0.7728009098209441,0.8707136586308479,-0.6140260528773069,0.1450905087403953,-0.8720830688253045,0.19719283189624548,0.7322309729643166,0.5450876667164266,0.03407246479764581,-0.8130720504559577,0.13888942636549473,0.08399271871894598,0.5367132844403386,-0.4459893964231014,-0.2214383278042078,0.6920699710026383,0.9153302037157118,0.15948131261393428,0.664870735257864,0.357070114929229,-0.28811518009752035,0.9305133391171694,-0.5325823104940355,0.7833357364870608,-0.9406879553571343,-0.6709674997255206,-0.9364411812275648,0.020355874206870794,0.1360077289864421,0.3234113845974207,-0.9695460172370076,-0.9620028845965862,-0.3951470013707876,-0.2793452008627355,0.42395636485889554,0.7454853765666485,0.628383916337043,-0.2923976108431816,0.0716769052669406,0.09878722298890352,0.5155449290759861,0.21409752359613776,-0.6532042562030256,-0.0449196407571435,-0.8990184445865452,0.6164344977587461,0.27185526536777616,0.12793621001765132,-0.9243226796388626,0.03335551219061017,0.1872303755953908,-0.2970396731980145,-0.13860073732212186,0.29680006904527545,0.19150236807763577,-0.3930107560008764,0.9027590118348598,0.7521912548691034,0.016219397075474262,-0.2588801649399102,0.1591070289723575,0.4547348665073514,-0.8614301159977913,0.6945432163774967,-0.7630862146615982,-0.025520597118884325,0.04929822403937578,0.23320671590045094,0.8552818782627583,-0.6389865335077047,0.4133734521456063,-0.007706517819315195,-0.01405694568529725,0.0692196199670434,-0.36279878905043006,0.7800684738904238,0.6543275308795273,-0.8336254605092108,0.4434918868355453,0.8484748434275389,0.5542399496771395,-0.06680060690268874,-0.800944303162396,0.5507807438261807,-0.7259306688793004,0.4368255059234798,0.26758902380242944,-0.7061384255066514,0.5396805577911437,-0.5733287110924721,-0.86931580491364,-0.5748192081227899,-0.21245470689609647,-0.7234701090492308,0.4114608974196017,0.6640400257892907,0.47775269765406847,0.4852644703350961,0.3733068285509944,0.11719408258795738,0.6870127688162029,0.12358398456126451,-0.4417899837717414,-0.6296441135928035,-0.2957676802761853,-0.8678581123240292,-0.5567511832341552,-0.09631126653403044,0.8733991384506226,0.20691728498786688,-0.5946558401919901,-0.15753981145098805,0.45903071854263544,0.5763326408341527,0.8193827699869871,0.45639746356755495,-0.5749164544977248,0.042556547559797764,0.3954940219409764,-0.039926618337631226,0.4373371950350702,0.31611087545752525,-0.7708982229232788,0.9560787063091993,0.8847593921236694,0.5173520701937377,0.42721486184746027,0.35916313668712974,-0.62058080220595,-0.5814098557457328,0.6648301011882722,0.0758815691806376,0.7387898517772555,-0.6839742562733591,0.1414244887419045,-0.6370651316829026,-0.11359836766496301,0.20922816265374422,0.9924804507754743,0.6418075347319245,0.20908440370112658,0.5287267090752721,0.21962203364819288,-0.777320480439812,0.5634582997299731,0.6565963528119028,-0.85797882033512,0.3520485972985625,-0.6484766583889723,0.054696055594831705,-0.5069858655333519,0.8788298335857689,-0.487412182148546,0.2812135238200426,-0.5501281507313251,0.2284168447367847,0.2590762507170439,0.8807601244188845,0.9476551641710103,-0.3085937234573066,-0.9756964510306716,-0.21582726808264852,0.7056837873533368,-0.33933539781719446,-0.6523469355888665,0.7176635256037116,0.4659664831124246,0.6311253015883267,0.5028149555437267,0.40089122811332345,-0.11856176750734448,0.7967655621469021,-0.658273687120527,-0.6583547489717603,0.29436513874679804,-0.7434001239016652,0.7621840448118746,0.4164581564255059,-0.2340527167543769,-0.9571886761114001,0.61191285867244,-0.15719892643392086,0.5582892447710037,-0.3203449919819832,-0.5160465696826577,0.2039878135547042,0.1091204914264381,0.7486520195379853,-0.2372060175985098,0.1606831308454275,0.5581468539312482,0.09044871013611555,-0.6669470048509538,-0.8977019181475043,-0.007423207629472017,-0.7204155428335071,0.17717921501025558,0.23618779936805367,0.5334057030268013,0.029476939234882593,0.6808911361731589,-0.8220384772866964,-0.02529405476525426,0.5861817095428705,0.9315229402855039,-0.34368179459124804,-0.9850918143056333,0.9899789425544441,-0.018312520813196898,0.31742236157879233,-0.12940078927204013,0.7876719981431961,0.7277431753464043,0.6438982700929046,-0.7598525150679052,0.14184668567031622,0.043101323302835226,0.01760533871129155,0.888548098038882,0.7516433768905699,0.22248823568224907,0.3544059544801712,-0.6072368086315691,-0.15101003041490912,0.7220275863073766,0.4682596712373197,0.1590964561328292,0.5560690988786519,-0.08346169767901301,0.8742985068820417,0.5798459346406162,-0.7298534926958382,-0.47705558873713017,-0.4017891241237521,-0.5069722589105368,0.6466033374890685,0.9137989240698516,-0.9325392097234726,-0.7944672512821853,0.26755257742479444,0.11951404111459851,-0.14433477399870753,-0.43474703934043646,0.009361542295664549,0.39093753742054105,0.8741861982271075,0.11806416604667902,-0.445918720215559,-0.33821072429418564,0.7389822374098003,-0.898787135258317,0.5993042904883623,-0.46895729936659336,0.9951123739592731,0.6939368052408099,0.7642727359198034,-0.8371624168939888,0.405545839574188,0.48600333323702216,0.18979189079254866,-0.30174958845600486,-0.5780987390317023,0.018004125449806452,0.9227594225667417,0.8133999644778669,0.12749470863491297,0.750701054930687,-0.6178066050633788,0.8944257353432477,0.9773851674981415,0.20631791558116674,0.10331361554563046,-0.8939144583418965,0.7754792422056198,0.9880665447562933,-0.5979330861009657,0.578141582198441,-0.12293315678834915,0.78757478389889,0.11677314154803753,-0.4721093880943954,0.33484050584957004,-0.18379225628450513,0.9420344727113843,-0.011550458148121834,-0.9656057334505022,-0.9358319235034287,0.7408036296255887,-0.713516206946224,0.22309470223262906,0.5073070614598691,-0.8250857037492096,-0.3754251324571669,0.01372120575979352,-0.033522640354931355,0.9461636757478118,-0.832429913803935,0.036916338838636875,-0.9939719354733825,-0.2109233015216887,0.529093362390995,0.8058159095235169,0.9209303255192935,0.7096034158021212,-0.3103903201408684,0.647701745852828,0.3210330889560282,-0.1860554558224976,0.13144698133692145,0.7750197877176106,0.11846540402621031,0.7448348272591829,0.04272907134145498,0.47087696287781,0.9217731491662562,0.5020063752308488,0.6090451828204095,0.9136619581840932,0.6487542097456753,-0.4720947742462158,0.5196703881956637,0.289719820022583,0.6664030570536852,0.7942537125200033,-0.9127238462679088,-0.7126423865556717,-0.4508050591684878,0.49419126380234957,-0.035703437868505716,0.3691062331199646,0.6795601374469697,-0.10072011221200228,0.08931597415357828,-0.14503300795331597,-0.8917429032735527,0.29770065285265446,0.9578185547143221,-0.450270788744092,-0.028133905492722988,-0.025806594640016556,-0.3530069515109062,0.3461488513275981,-0.3672317867167294,-0.8102131481282413,0.18497803574427962,0.8297958583571017,-0.021353767719119787,0.4006876111961901,0.46044757403433323,0.5652216747403145,-0.4253114298917353,-0.6006313315592706,-0.9866973352618515,-0.8705719453282654,0.6670674998313189,0.6999409603886306,-0.5043416675180197,-0.5752847497351468,0.48357002483680844,-0.5539243840612471,0.11294143367558718,0.19267850928008556,0.44523129845038056,0.7331443475559354,-0.10391818080097437,0.12063100934028625,-0.9972999352030456,0.13241367228329182,-0.16311926068738103,-0.9640968311578035,0.3442785772494972,-0.6982016493566334,-0.15012666070833802,-0.14141915692016482,-0.2627884028479457,-0.9226492969319224,-0.8664906462654471,-0.8921829811297357,0.6578775304369628,0.22048656502738595,-0.004355091135948896,-0.9827919248491526,0.4917671149596572,0.5243999762460589,-0.9837535722181201,-0.697214622516185,0.006901905406266451,0.3534948490560055,0.8595783757045865,-0.09247352695092559,-0.8995858486741781,-0.7170098349452019,0.7292523304931819,-0.38098934944719076,0.29662104370072484,0.9998268685303628,-0.6878855600953102,-0.054918721318244934,-0.37302287481725216,-0.7944683134555817,0.2443821895867586,0.8408325375057757,0.9342827200889587,-0.016517053823918104,-0.6113500487990677,-0.7870147149078548,0.07482042722404003,0.6948464130982757,0.6791159114800394,0.6055597974918783,-0.795354759786278,-0.3520609796978533,-0.34809497091919184,-0.8909238837659359,0.8603858817368746,-0.424879243131727,-0.4676995798945427,-0.6620596419088542,-0.30587003054097295,-0.4786426336504519,0.02985344920307398,0.8888680012896657,-0.006101131439208984,-0.3517229245044291,0.4478796813637018,-0.3858596538193524,-0.4031085381284356,-0.47911830339580774,0.2823101179674268,0.34557070955634117,-0.9568878919817507,-0.9597339145839214,-0.2543244636617601,0.3420861344784498,0.9313913346268237,0.732052085455507,0.6529047302901745,0.5377116613090038,-0.14351724600419402,0.7216346450150013,0.8643300291150808,-0.1969194496050477,0.9311677338555455,0.29947252245619893,0.9032315406948328,-0.19664793275296688,-0.7989833075553179,-0.3392585851252079,-0.3814792479388416,-0.06054482003673911,0.4145649988204241,-0.3498990903608501,-0.44679220439866185,0.1906448481604457,0.7209817389957607,-0.07132937107235193,-0.7283369498327374,0.36990310112014413,-0.9319772864691913,0.7760811592452228,-0.12940299278125167,0.9099155548028648,0.17455406952649355,0.6277725147083402,0.7213497860357165,0.47888019355013967,-0.15521591901779175,-0.17047174042090774,-0.43549773283302784,-0.08279383461922407,-0.3800173969939351,-0.3443017778918147,0.03457563789561391,0.1591603420674801,0.5083129866980016,0.24317035172134638,0.008614656515419483,-0.8846134198829532,-0.5498840496875346,-0.16374008264392614,-0.37858765153214335,0.7693233420141041,-0.22171820374205709,0.5487018381245434,-0.9597240528091788,0.8563081887550652,0.5305291665717959,0.3961350708268583,-0.9379480797797441,-0.4543616324663162,-0.5884015718474984,0.9494996415451169,0.653161097317934,-0.3548375768586993,-0.2544797179289162,-0.7754189916886389,-0.20128415478393435,-0.8789451280608773,0.6734637352637947,-0.2607148326933384,0.200928152538836,-0.4987754565663636,-0.7019709185697138,0.22289323946461082,0.5851814053021371,0.554543417878449,-0.5780206751078367,0.2771129780448973,0.5471723065711558,-0.07335135200992227,0.5228154524229467,-0.04771501291543245,0.7349974559620023,0.8877476193010807,-0.9972716057673097,-0.46400845190510154,0.4058916964568198,0.47424206929281354,-0.08301764773204923,-0.9314153613522649,-0.1463065748102963,0.6369421877898276,-0.8997836653143167,-0.49949665227904916,0.8309655827470124,-0.7975538275204599,-0.4153633429668844,-0.10895118536427617,0.11481285095214844,-0.8231316874735057,0.05431257467716932,0.9724279223009944,0.6103084455244243,-0.18921711342409253,-0.303806331474334,0.16389570478349924,0.7784523409791291,0.15903122257441282,0.6620241017080843,-0.17393916379660368,0.1824934845790267,-0.18994828825816512,0.7805033619515598,0.920668656937778,0.17065573809668422,-0.28216387052088976,-0.6964055630378425,0.7031897203996778,0.8682823670096695,0.23622892517596483,0.12349489191547036,-0.7826045043766499,-0.42843217216432095,0.39456529496237636,-0.8490676246583462,0.20857918169349432,0.661465001758188,-0.7915231352671981,-0.22513708006590605,0.7131509957835078,-0.1444487157277763,0.12627125810831785,-0.6461333371698856,0.13903529196977615,-0.3972304672934115,0.1279789749532938,0.8751450409181416,-0.8132422124035656,-0.677944625262171,0.820141552016139,0.7999374950304627,-0.8814361374825239,-0.06122842198237777,0.8011888866312802,-0.6857101959176362,-0.7381639746017754,0.8576086503453553,0.5017312127165496,-0.7947193249128759,0.6169210500083864,0.45011404575780034,-0.7627964182756841,-0.5650571449659765,-0.2978001534938812,-0.6896759527735412,0.5759110930375755,-0.02707202499732375,0.0767594687640667,-0.12364283669739962,-0.05689095892012119,0.5032193977385759,0.7689202330075204,-0.10256937379017472,0.022234235424548388,0.9281215467490256,0.9162537362426519,0.26116354344412684,0.6406563841737807,-0.9821399105712771,-0.32367662992328405,0.7913156505674124,-0.5071046510711312,-0.9234351962804794,-0.6450130101293325,0.033015952445566654,0.06967931473627687,-0.33688722690567374,-0.11165421362966299,-0.7386349835433066,-0.06164469430223107,0.20867492677643895,-0.07508201338350773,0.24879622599110007,0.48142375936731696,0.7185621117241681,0.9783181818202138,0.09299226338043809,-0.4113569068722427,0.9450241136364639,0.004906033631414175,0.80194704933092,0.41219566529616714,0.17821680987253785,-0.828364996239543,-0.5467359651811421,0.19104764517396688,-0.549712429754436,-0.6721797906793654,0.770458335056901,0.17371621588245034,0.8705120095983148,-0.6089068823494017,-0.47506240010261536,-0.43293643463402987,-0.8882973394356668,0.40860896883532405,-0.6702628806233406,0.06112485844641924,0.7502952157519758,-0.4877110212109983,-0.1483714822679758,0.14498690469190478,0.6746311094611883,0.43182672606781125,-0.16074987780302763,-0.20892379060387611,-0.26180545007809997,-0.0029541212134063244,0.6635134108364582,0.43737786868587136,-0.9522146503441036,0.7546705305576324,0.3874572655186057,0.4249892705120146,-0.4012631643563509,-0.7955975686199963,0.1001249342225492,-0.1408205460757017,0.022268958389759064,-0.8137917094863951,0.015567623544484377,0.9325619610026479,-0.5705683203414083,-0.03676151856780052,0.7281781136989594,0.19155270839110017,0.519667596090585,-0.9394697397947311,-0.7832367769442499,-0.25102625554427505,0.9033579472452402,-0.24955406319350004,-0.30649809958413243,0.8122491538524628,0.5566757945343852,0.9382375190034509,-0.5295974472537637,-0.8893925193697214,-0.002103217877447605,-0.09775216272100806,-0.5187393887899816,-0.42967561446130276,0.7059918637387455,-0.2075474699959159,0.6949150776490569,0.6002891091629863,0.16355149820446968,-0.5289708925411105,-0.7488488862290978,0.4346057139337063,0.7653177473694086,-0.4319970654323697,-0.9935609856620431,-0.3819433553144336,-0.4398707668296993,-0.8591839862056077,0.7835223660804331,0.13033278193324804,-0.8015438984148204,-0.7881146864965558,0.6198898646980524,-0.11262488598003983,0.7562188073061407,-0.8444909728132188,-0.006499901879578829,0.7008968670852482,-0.3605294958688319,-0.10347510781139135,0.40557856345549226,0.42599489353597164,0.27537626354023814,-0.1433157525025308,-0.14635939616709948,-0.6637712172232568,-0.5836592838168144,0.8932341691106558,0.9481269046664238,0.324818667024374,-0.7610435020178556,0.020180001389235258,0.9448092989623547,0.12025599973276258,0.753272756934166,0.05016273260116577,-0.3037905595265329,-0.47714146599173546,-0.6021165936253965,0.1975753717124462,-0.3983698347583413,0.8222085800953209,-0.9875618452206254,0.8929117685183883,0.7941020303405821,0.9739472675137222,-0.6716471631079912,-0.2388447835110128,0.024872881826013327,0.6838172441348433,0.19160073064267635,0.22560031339526176,0.18492139130830765,-0.8336732238531113,-0.5597097724676132,-0.28803057223558426,-0.19385148026049137,0.9030906190164387,0.8797669117338955,0.33357764780521393,0.5745273730717599,0.04907951969653368,0.32905708346515894,0.9050165778025985,-0.6530592613853514,0.8834413015283644,-0.881227744743228,0.6562108425423503,-0.23053637193515897,-0.7266330542042851,-0.04082452645525336,0.39572796830907464,-0.9913498125970364,-0.06761588156223297,-0.8668534713797271,-0.8250190457329154,0.23567341594025493,-0.9589398698881269,0.17841404909268022,-0.25810298090800643,-0.7317275875248015,-0.7014276050031185,0.26057979837059975,-0.8608641852624714,-0.6947576384991407,0.47752078669145703,-0.9131542248651385,-0.470302174333483,-0.6751042157411575,-0.7107529807835817,0.4832599079236388,0.16185793466866016,-0.9537383941933513,-0.6895486260764301,-0.017076855525374413,-0.5533373788930476,-0.19574175868183374,-0.4867734080180526,0.14439565548673272,-0.05546581605449319,0.8322366173379123,-0.462044479791075,0.30716482969000936,-0.7391735878773034,0.8500948515720665,0.8244614386931062,0.9883616282604635,0.05155766475945711,0.8036696263588965,0.7705465164035559,0.6219771122559905,0.3930806890130043,0.10641762847080827,-0.8304750183597207,-0.8006801060400903,-0.19470378290861845,-0.8003678098320961,-0.31415057787671685,0.292411376722157,-0.12202584836632013,-0.9898441722616553,0.9692309093661606,-0.34888717252761126,0.9816884901374578,-0.38714703684672713,0.2784094759263098,0.275303999427706,-0.8515316443517804,-0.4667313867248595,0.1589430538006127,0.0501338760368526,-0.9526403923518956,-0.08689542999491096,-0.13537304243072867,-0.552742843516171,-0.2851117835380137,0.6983885541558266,-0.7840400021523237,0.140140475705266,-0.7290595816448331,0.4352277731522918,-0.16746866889297962,-0.4072519848123193,-0.5731889763846993,-0.8046604241244495,-0.3599437731318176,-0.8123771245591342,-0.8910500416532159,0.06044147349894047,0.3557473998516798,0.19920846121385694,0.8195704715326428,-0.6656937268562615,-0.0062817842699587345,0.7064946983009577,0.28981753904372454,-0.05887010367587209,-0.8689541267231107,-0.8087550010532141,0.8577840100042522,-0.7419288558885455,0.32771106204017997,-0.5243241973221302,-0.6792177925817668,-0.09381568199023604,0.7858943701721728,0.5867557851597667,-0.3668024162761867,0.8501594993285835,-0.9680904028937221,-0.009463947266340256,-0.21380657702684402,-0.9886110150255263,0.14729237975552678,-0.7426436003297567,-0.20375249488279223,0.12353589106351137,-0.13818159233778715,0.0956272748298943,-0.7181011424399912,0.744719052221626,-0.5584355276077986,0.9002369157969952,-0.19821192231029272,-0.0573490927927196,-0.2026068032719195,-0.051857336424291134,-0.46667588129639626,0.4277526172809303,0.049142544623464346,0.6766911647282541,-0.20428978744894266,-0.793633091263473,-0.4058336107991636,-0.20840766932815313,-0.9340378702618182,0.21743155177682638,-0.4768497506156564,0.5251038349233568,0.2099646427668631,0.9205067697912455,-0.6246471758931875,-0.2945658043026924,-0.7753549143671989,-0.8973192670382559,0.9223992470651865,-0.1738936584442854,-0.2132418705150485,0.2181996344588697,-0.5755293895490468,0.14650918636471033,-0.08998680533841252,0.7097561927512288,-0.7436982579529285,0.9420307707041502,0.4448137078434229,-0.14201966067776084,0.9625741862691939,0.4660875266417861,0.11391357472166419,0.7753077195957303,-0.21965716825798154,0.15252797910943627,-0.6717434907332063,-0.603717693593353,-0.5884182541631162,-0.29015621868893504,0.6191152348183095,-0.3660533186048269,-0.8461158159188926,-0.9592399108223617,-0.34677809942513704,0.5717794122174382,-0.06785708293318748,-0.7704570768401027,-0.1782942428253591,-0.8083855086006224,-0.4243422201834619,-0.07007457222789526,0.4609164181165397,-0.13025210658088326,0.779155429918319,-0.29471918987110257,-0.3036671942099929,0.07502451073378325,-0.3620222182944417,-0.39440850960090756,-0.9548159190453589,0.7721064481884241,0.9738548905588686,0.41747737023979425,0.571405484341085,-0.4442078252322972,-0.9788523782044649,0.33493574475869536,-0.1875399211421609,0.8960111569613218,0.38005341682583094,-0.39443825045600533,0.11133326543495059,0.5380824250169098,0.24422688502818346,0.4758423422463238,-0.9392210524529219,-0.3163801818154752,0.9271942786872387,0.17511099530383945,-0.8308761296793818,-0.6956460331566632,0.9292167564854026,-0.06518177641555667,0.5710820145905018,0.3032887834124267,-0.7276328587904572,-0.15368176437914371,0.3073579710908234,0.8581495243124664,0.4712379486300051,0.7414415655657649,0.3517941301688552,-0.11324318451806903,-0.5663730991072953,0.43930144095793366,0.736182960215956,0.9515740126371384,-0.6896518105641007,0.38366339076310396,-0.27346509601920843,0.98909647250548,0.9900036994367838,-0.5419661020860076,0.7975350241176784,0.717224876396358,-0.5795178790576756,-0.9794763047248125,-0.5954825393855572,-0.030218746047466993,-0.06931205373257399,0.5124585400335491,-0.583885733038187,0.9713380360044539,-0.10526102362200618,0.14119480503723025,-0.7816378795541823,0.2597465547733009,0.47819500835612416,0.724858476780355,0.8749161087907851,-0.5866656741127372,-0.582187105435878,-0.7699659047648311,-0.45041126711294055,-0.14704364212229848,-0.6550323073752224,-0.3767702393233776,0.5494433110579848,0.6333961375057697,-0.4067336954176426,-0.9954728158190846,-0.6320619732141495,-0.3821486006490886,0.6319692246615887,0.26067019207403064,-0.5085752541199327,0.03426932590082288,-0.20939030777662992,-0.7784040411934257,0.3683234923519194,0.7494879481382668,0.1695212498307228,-0.2752811801619828,-0.53056316729635,0.5220577144064009,0.5278647416271269,-0.08147584088146687,-0.6509718080051243,0.7831341144628823,-0.61781164444983,0.39270137064158916,-0.6680282466113567,-0.7611352712847292,0.5737237464636564,-0.3739590812474489,0.1838969811797142,-0.011650473810732365,-0.8470235606655478,0.26907775085419416,0.5032864562235773,-0.32203709706664085,-0.4699113410897553,-0.09395193727687001,-0.4549870602786541,-0.7607964635826647,0.5443109916523099,0.04678505379706621,0.79814812541008,0.2688995539210737,-0.07932190410792828,0.3214239049702883,-0.7591891908086836,-0.9802097887732089,-0.5043924176134169,-0.7284725648351014,0.03162322053685784,-0.07569507835432887,0.030488447286188602,0.3046613382175565,0.605388829484582,-0.8488350501284003,0.6479643378406763,-0.1208770265802741,-0.6294938549399376,0.2810101602226496,0.11481910990551114,0.29974128771573305,-0.6263531534932554,0.5202943435870111,0.2511832579039037,0.298162289429456,0.7000420847907662,-0.013043247163295746,-0.9336641184054315,-0.5785026061348617,-0.9700325089506805,-0.17743778368458152,-0.619345395360142,0.7149361837655306,-0.8267194554209709,-0.9497600365430117,0.8654796397313476,0.9999007852748036,-0.9694680720567703,-0.29630291229113936,0.06102420249953866,-0.21187092503532767,-0.5228432714939117,-0.4484077296219766,0.6670601204968989,-0.40881080413237214,0.08075167797505856,-0.5999819268472493,0.7440752359107137,0.1460379147902131,0.01575426384806633,0.9963510697707534,-0.3715704558417201,-0.401094373781234,0.7912257676944137,-0.8667649473063648,-0.6363294669426978,-0.9349162830039859,-0.6939942110329866,0.7734140856191516,-0.8203766876831651,0.6659759404137731,0.5467150676995516,0.10908788861706853,0.790232406463474,0.31741822231560946,-0.7263826695270836,0.5749775380827487,0.007741747424006462,-0.4668388734571636,-0.6220004563219845,-0.5416792426258326,0.5233310274779797,-0.6420797198079526,-0.10526555078104138,0.7606256087310612,0.2384756705723703,0.12500847410410643,-0.9975594901479781,-0.44741740450263023,-0.9048573542386293,-0.9153954591602087,0.3028694069944322,-0.15576003678143024,-0.579884048551321,0.27686576917767525,0.9617044674232602,-0.7657776148989797,-0.9183453326113522,0.6142338840290904,-0.6152150044217706,0.600157153327018,0.8762885448522866,-0.8264437923207879,0.5256631770171225,0.21178393764421344,-0.10478524817153811,-0.3512363014742732,0.8018100233748555,0.26567157777026296,-0.45418374985456467,0.8889972413890064,0.4133924632333219,-0.7480392386205494,0.01990495342761278,-0.40038266172632575,0.7742499369196594,0.13312517385929823,0.09989201324060559,-0.07112047309055924,0.8561101844534278,-0.44294771645218134,-0.03322801552712917,-0.9515875410288572,-0.8939605625346303,0.025697778444737196,0.9822715846821666,0.7302594408392906,0.5216175778768957,-0.9103132546879351,-0.5064580603502691,-0.08922472735866904,0.7564185503870249,0.9710384719073772,0.343598326202482,-0.14595584943890572,0.4823956238105893,-0.7113431212492287,0.019591350574046373,-0.01877743750810623,0.09575339825823903,0.4812525059096515,0.15700659342110157,0.7530323029495776,-0.7104248483665287,-0.10494513623416424,-0.016923689283430576,0.6244443953037262,0.24657639861106873,0.9883375563658774,-0.29173359042033553,0.8457652353681624,-0.3890649080276489,-0.12293089274317026,0.19768637930974364,-0.5141160036437213,-0.44092548498883843,-0.5880857221782207,0.9780529532581568,-0.5491422452032566,0.42357611609622836,0.35860589891672134,-0.8999640406109393,-0.19282465800642967,-0.08917925925925374,-0.6001130826771259,-0.516468208283186,0.13180004712194204,0.7306078551337123,-0.05438446952030063,0.9584459778852761,0.8796976474113762,-0.5799028263427317,0.06722352467477322,-0.6097355512902141,0.3315769708715379,-0.3908806089311838,-0.312546334695071,-0.3252645330503583,-0.7355560613796115,0.7127782269380987,0.2016196302138269,0.8859678343869746,0.8075497830286622,0.8171132816933095,-0.2928341752849519,-0.282674927264452,-0.41254690708592534,0.40959580428898335,-0.4909415962174535,-0.39409482665359974,-0.42416762094944715,0.6712751719169319,-0.8362515177577734,0.346418802626431,-0.4468130278401077,0.877245910000056,0.42538038920611143,0.28514341404661536,-0.23163868533447385,0.5237442632205784,0.22109983768314123,-0.5706772212870419,0.03136765630915761,-0.1928116544149816,0.10654609138146043,0.43390460405498743,0.24993845541030169,0.4873053072951734,-0.2809471203945577,0.625919705722481,-0.6153220273554325,0.18071056669577956,0.17382887192070484,-0.6298225736245513,-0.8182949647307396,0.9595702774822712,-0.02217743406072259,0.09996284637600183,-0.06176344212144613,0.8447860558517277,-0.83910374622792,-0.3888032780960202,0.49686122965067625,-0.694727448746562,-0.8904979974031448,-0.2659676759503782,0.9493351862765849,0.5612333966419101,-0.40826766565442085,-0.17965171299874783,0.7005916577763855,-0.697212612722069,0.13936659833416343,0.4117987318895757,-0.7723204912617803,-0.2311920882202685,0.4363295631483197,0.45087743690237403,0.47038039937615395,0.6200230550020933,-0.7920597968623042,-0.7162703718058765,-0.8018751312047243,-0.3658455773256719,0.012729134410619736,-0.7806209167465568,-0.7909041531383991,0.8314100066199899,0.37788357958197594,-0.10704787680879235,-0.8035432514734566,-0.9026130018755794,0.9084446500055492,0.6592009938322008,-0.8765269117429852,-0.5041018966585398,-0.463814664632082,-0.08135843556374311,-0.6533333715051413,0.3929847185499966,-0.6845334502868354,0.919126596301794,-0.16312095802277327,0.4251977354288101,-0.4675327157601714,-0.8787501328624785,0.37947550043463707,0.9529838771559298,-0.13789189653471112,-0.06888628704473376,0.030069687869399786,-0.29599028173834085,0.20875904383137822,0.04299336997792125,0.885857546236366,-0.33627601247280836,0.6448639873415232,-0.6468749279156327,-0.11717751063406467,-0.6765132397413254,0.716722855810076,-0.06983494805172086,0.42448717821389437,0.6848734370432794,-0.056236821692436934,0.8436527727171779,0.11191764008253813,0.9096848261542618,0.43311723973602057,-0.8761269222013652,0.41325507825240493,-0.14483618875965476,0.6692774668335915,0.5551872225478292,-0.7832573037594557,-0.8464598502032459,-0.8313582502305508,0.7908789031207561,-0.7712694006040692,-0.3565428350120783,0.44332393491640687,-0.661977494135499,-0.6969805140979588,0.16210120497271419,0.6289823804982007,-0.10450056754052639,-0.853624414652586,0.5523112830705941,-0.7462781583890319,-0.7053446304053068,-0.6300062825903296,0.8477339735254645,0.5052559222094715,-0.320790805388242,-0.9267890905030072,-0.19473804533481598,-0.6804595305584371,-0.7285838630050421,0.4845130853354931,-0.5066111856140196,0.9024640950374305,-0.7283780355937779,-0.9532675594091415,0.20954203978180885,-0.27123304083943367,0.4241635389626026,0.04812566190958023,-0.808963387273252,-0.4235680755227804,0.4954559188336134,0.4843700765632093,0.25678562419489026,0.4525578608736396,0.09541768254712224,0.06571898888796568,0.6266364557668567,-0.2740112831816077,-0.6968564200215042,-0.14033405436202884,-0.2586526772938669,-0.5102252848446369,0.16401003021746874,0.6094413637183607,0.8643245259299874,-0.30109055526554585,-0.2598403738811612,-0.716304948553443,-0.3083831104449928,0.3133647060021758,-0.9885991676710546,-0.2847694274969399,0.29909734847024083,0.19466240471228957,0.8830523570068181,0.973493741825223,-0.8272850369103253,0.26454872358590364,-0.731328571215272,0.42018389236181974,0.1127248639240861,0.8148471568711102,-0.47855634009465575,-0.40052676759660244,-0.5257665854878724,0.8765553757548332,-0.14277243940159678,0.21344945253804326,-0.5967617272399366,-0.11125813098624349,0.7484421278350055,0.7312099803239107,-0.2786995912902057,0.14150334196165204,-0.7306835507042706,0.4821523018181324,-0.46722169732674956,-0.6720813373103738,-0.2170242052525282,0.006034308113157749,0.10189328715205193,-0.9257613588124514,-0.0986031680367887,0.15244228672236204,0.9223567573353648,-0.7190232244320214,0.869678701274097,0.016881642397493124,-0.5999743225984275,-0.497095865663141,0.942479251883924,-0.053534291218966246,-0.23990200413390994,0.5590593237429857,-0.28525289660319686,-0.913748599588871,-0.3702503847889602,0.6758400076068938,0.3458762355148792,0.6786330426111817,0.4497479130513966,0.484842527192086,0.2498210547491908,0.7497209189459682,-0.45915530156344175,-0.15551186259835958,0.5947522642090917,-0.28818331798538566,-0.5669574877247214,0.7771273250691593,-0.8787971185520291,-0.9882804793305695,-0.31385667249560356,-0.25371338287368417,-0.6249640886671841,-0.8325041560456157,0.49979705829173326,-0.9194107921794057,-0.006066166330128908,0.7874086536467075,-0.905641688965261,-0.28265499556437135,0.14649517554789782,0.2161496109329164,-0.30112171499058604,-0.5370664745569229,0.9363733218051493,0.3917690864764154,0.4314885074272752,0.4909964455291629,-0.9417297798208892,-0.8482500649988651,0.4927795184776187,0.40974683314561844,0.808185447473079,-0.979409989900887,0.8019535914063454,-0.6037216559052467,-0.39538261154666543,-0.4706201902590692,0.8216467234306037,0.8880806192755699,-0.11917888838797808,0.8356555141508579,-0.18140191910788417,-0.040049330331385136,0.59661626489833,-0.5104441144503653,-0.21567705506458879,-0.44658589782193303,0.7695541428402066,0.7644929033704102,0.998124229721725,-0.32455075392499566,-0.4802155182696879,-0.4565118197351694,0.2992472997866571,0.48815356474369764,0.5140286600217223,-0.8681008303537965,-0.36773430136963725,0.12826784467324615,-0.9060747898183763,0.30165606504306197,0.8219066709280014,0.6013198089785874,-0.9414593582041562,0.2221997776068747,-0.6420498020015657,-0.515302550047636,0.20872983383014798,-0.8466380960308015,-0.5145695228129625,0.6938509596511722,-0.8420584010891616,0.5753171355463564,-0.930287548340857,-0.5900719529017806,0.18134944699704647,0.8154267426580191,-0.6774735441431403,-0.2606902443803847,-0.4235276966355741,-0.010372796095907688,-0.09135085623711348,-0.8605553009547293,0.5149919232353568,0.13421890838071704,0.4485335163772106,-0.22375646606087685,-0.33071831800043583,0.6310917139053345,0.7785280994139612,0.7937185931950808,-0.8254622831009328,-0.13026108732447028,0.11764920223504305,0.8114703539758921,-0.5647037434391677,-0.14917037403210998,0.6530439215712249,0.18595165759325027,-0.4586585243232548,0.201375684235245,0.30684269266203046,0.8179327789694071,0.10424263263121247,0.8813646216876805,0.031573446467518806,0.9236554647795856,-0.18198490096256137,-0.7506631691940129,0.6011257460340858,-0.523481862153858,-0.6155905351042747,0.15869915718212724,0.8980524647049606,0.8617685767821968,0.818946270737797,0.7880592830479145,-0.9698243453167379,0.9019363042898476,0.15670535899698734,-0.9695217865519226,0.1732204221189022,-0.8729937574826181,-0.5918754516169429,-0.7789173303171992,-0.5551877971738577,-0.7698570718057454,0.5827767262235284,-0.3937258389778435,0.26527806697413325,-0.5101525695063174,0.9609312163665891,0.5110171041451395,0.9719853857532144,0.6809904561378062,0.8749213586561382,-0.7706196210347116,-0.27529887296259403,0.28548907581716776,-0.6737362099811435,0.13492602482438087,-0.8189477515406907,0.8401449332013726,-0.5200872994028032,0.023715699557214975,0.6718072225339711,-0.05177434766665101,0.8707475033588707,-0.3814282324165106,0.4661148739978671,0.16093008173629642,0.3144487887620926,-0.2962088165804744,-0.3184246737509966,0.8392507247626781,-0.26495561795309186,0.08703881688416004,-0.7863980303518474,0.8671641498804092,0.5993441212922335,-0.9347008094191551,-0.3160170898772776,-0.9812302268110216,-0.3222877816297114,0.7954786797054112,-0.1658358327113092,-0.20825928077101707,0.907681951764971,0.4849902633577585,-0.25130605790764093,-0.02169048087671399,-0.8231236543506384,0.5317578902468085,-0.435484251473099,-0.5914683002047241,-0.3629267876967788,-0.8702878267504275,0.6827310090884566,-0.0952967144548893,-0.6600874811410904,-0.535584656521678,-0.6899986173957586,-0.8670102097094059,0.7644677986390889,0.6989434412680566,0.6443819301202893,-0.31103303423151374,-0.44372150814160705,-0.6881887107156217,0.5057357796467841,0.3820752236060798,0.0582707435823977,0.07649716967716813,0.8343698596581817,-0.0030035539530217648,0.1691169487312436,0.37050143955275416,-0.2812360357493162,0.7564556929282844,-0.2764638941735029,0.7732103615999222,-0.6219358774833381,0.2750662467442453,0.7716448782011867,0.866061847191304,0.3585907150991261,-0.6953092077746987,-0.00596931017935276,-0.9791021132841706,0.803395795635879,0.42443962674587965,-0.4837221880443394,-0.6736524272710085,0.7184743420220912,-0.07695991778746247,-0.35915467189624906,-0.14800703711807728,-0.5043073212727904,0.43171267490834,-0.2087526130490005,0.19243265828117728,0.15867699729278684,0.9558275425806642,0.027092397212982178,-0.19389998260885477,0.429649043828249,0.9347028690390289,0.4643346853554249,-0.9230514676310122,-0.07170758675783873,0.09944981709122658,-0.7103939722292125,-0.20065368618816137,-0.9983626529574394,-0.703784616664052,-0.22008177917450666,0.296364632435143,-0.11434922553598881,-0.9023207919672132,0.2995228385552764,0.7621199530549347,0.8920561131089926,0.515627074521035,0.37419046740978956,0.6167059461586177,0.9434938570484519,0.411962250713259,-0.2668893048539758,0.758863159455359,0.15358212403953075,-0.0321474545635283,0.671903237234801,0.10515922633931041,-0.3127413927577436,0.37539201928302646,0.4068990428932011,0.6578609813004732,0.19461915828287601,0.8200953933410347,-0.5778031698428094,0.9849209780804813,0.4606114416383207,0.6318355784751475,-0.7723130332306027,0.6967396060936153,0.9654125007800758,0.28949168836697936,0.006736766081303358,0.9672514041885734,0.9338918523862958,-0.4916139910928905,0.9171690689399838,0.9572397056035697,-0.6763513116165996,-0.7543935659341514,-0.20927494624629617,-0.02769261645153165,0.07732902746647596,-0.7935585360974073,-0.6834360030479729,0.7156642978079617,0.4277019230648875,0.2781895319931209,0.013726391829550266,0.1394335008226335,0.5373527151532471,0.6178489681333303,-0.5379338092170656,0.9904655511491001,-0.14989986456930637,0.8090208983048797,-0.08289211569353938,0.45743675576522946,-0.41875553829595447,-0.5397220691666007,0.6652722610160708,-0.3548299861140549,-0.4411509232595563,0.15161770721897483,0.7910254588350654,0.8899951074272394,-0.1658520814962685,-0.7893369286321104,-0.49036962538957596,-0.5283516719937325,-0.7552122105844319,0.9126070379279554,-0.5746373515576124,0.4579943707212806,-0.6888440269976854,-0.6707755164243281,0.09587328881025314,0.17294232454150915,0.7559744608588517,-0.8234976134262979,0.8875269223935902,0.9359415541402996,-0.0811356264166534,0.022238705307245255,-0.19433827232569456,0.29261118546128273,-0.6766699403524399,0.7026848057284951,0.16076483903452754,0.48808020912110806,-0.7885701283812523,-0.41134787211194634,-0.7273422698490322,-0.04179904796183109,-0.34924121014773846,0.18758704885840416,-0.09368544956669211,0.051904977299273014,-0.007779537700116634,-0.061229093465954065,-0.5040586469694972,-0.4465348874218762,0.885210495442152,0.7868810491636395,-0.958822316955775,0.3411551471799612,0.8152196793816984,-0.8608868569135666,-0.8485377845354378,-0.27410182962194085,-0.0303389560431242,0.21887680003419518,-0.18226936366409063,0.24115506699308753,-0.47341090347617865,-0.6919060051441193,-0.6748252920806408,-0.8588325525633991,0.8932724520564079,0.5300553115084767,-0.5532239535823464,-0.4504321217536926,0.6574074504896998,-0.3085776777006686,-0.5473954547196627,-0.11873026844114065,-0.5403252993710339,-0.08957970747724175,-0.8094418663531542,0.560504307039082,0.7220898657105863,0.6335770608857274,0.19667239766567945,-0.10619354387745261,0.7962044356390834,-0.089503965806216,0.9254448572173715,0.12430580658838153,0.34010387398302555,-0.06249080924317241,-0.20570292510092258,0.24860228318721056,0.8434638171456754,0.3855495755560696,-0.9408926437608898,-0.7046504928730428,0.2812934471294284,-0.48462904850021005,0.35729122208431363,0.6694651241414249,0.05283204931765795,0.9823025423102081,-0.26567300921306014,-0.8698531654663384,-0.7568860091269016,-0.1421860777772963,0.201748956926167,0.5454576704651117,-0.20357810240238905,0.19035908160731196,-0.5004101428203285,0.13006381085142493,-0.36627427488565445,-0.6265416168607771,0.8431594725698233,0.08305452391505241,0.2623055726289749,0.664100962691009,0.33870186284184456,0.04720297595486045,0.04810504801571369,-0.8571487818844616,0.8715298143215477,-0.8813987411558628,-0.49062938522547483,0.48323393100872636,0.5262557924725115,-0.9127160483039916,-0.3158662118948996,0.2819011681713164,-0.44696478825062513,0.7815684559755027,0.007219577208161354,0.3772451104596257,0.8898819000460207,-0.05576934851706028,-0.3029589159414172,-0.28472925862297416,-0.9147538575343788,-0.869879363104701,-0.24611144047230482,0.8310741754248738,-0.6330138561315835,-0.07267059804871678,0.5702720829285681,-0.4583636689931154,0.5255835191346705,-0.3379737725481391,0.08537370385602117,-0.3010589322075248,0.7701111817732453,0.8145218347199261,-0.34987845877185464,-0.6248922082595527,0.3436419856734574,0.041592531837522984,0.8462296519428492,-0.8742124107666314,-0.5406937194056809,0.2272399142384529,0.479201418813318,-0.8167947409674525,-0.6126736029982567,-0.6429023202508688,0.8366556623950601,-0.9477198771201074,-0.5953782689757645,-0.45406116312369704,-0.16882289620116353,-0.25376173947006464,0.7325255977921188,-0.6140592847950757,0.20413233758881688,0.5253218514844775,-0.22563105961307883,-0.37355067301541567,-0.20876387739554048,-0.6387243033386767,-0.7167246844619513,-0.7057918244972825,0.46292244363576174,-0.6527395518496633,0.4795015533454716,-0.7652756432071328,-0.2584992223419249,0.7313388828188181,-0.2545125372707844,0.41326542757451534,-0.782323656603694,-0.2511360836215317,-0.004485416691750288,0.13856615219265223,0.7319863215088844,-0.7414531107060611,-0.705231994856149,0.5105826621875167,-0.6295343805104494,0.3637457275763154,-0.6226363740861416,0.5388286644592881,-0.01724357297644019,0.7353677270002663,0.8282931339927018,-0.34501194953918457,0.43454616516828537,-0.8593103578314185,-0.4055871865712106,-0.35258475923910737,-0.7362964968197048,-0.5923735634423792,0.9917757729999721,-0.9598491159267724,-0.10826762113720179,0.7896562898531556,-0.8511779448017478,0.16049091331660748,-0.8721491806209087,-0.257118112873286,0.789651648607105,-0.45137155149132013,0.3989918832667172,-0.5578737761825323,-0.7528191902674735,-0.7866327571682632,-0.8313740161247551,0.11535128578543663,0.23321629175916314,-0.49350393982604146,0.5337215350009501,0.1856160070747137,-0.25678595853969455,0.9809275041334331,0.1718602403998375,0.021179786417633295,-0.9819207359105349,-0.5297443810850382,-0.15082777803763747,0.7566466745920479,-0.5716073424555361,-0.9157584402710199,0.9712782516144216,-0.2857231548987329,-0.16189143201336265,-0.24682201631367207,0.532664536498487,-0.5557829984463751,0.6332591292448342,-0.506745817605406,0.030768316239118576,0.8472762438468635,-0.6074433098547161,0.7653438718989491,0.109853845089674,0.32886091666296124,-0.17744082398712635,-0.14131436171010137,-0.513457718770951,0.0931460210122168,0.6489235577173531,0.8256194037385285,-0.35450745234265924,0.49673580657690763,-0.2420583264902234,-0.9680761699564755,0.18841945100575686,-0.9069198379293084,-0.5413075909018517,-0.24095212807878852,-0.812500599771738,-0.3149861413985491,-0.22525929380208254,-0.9906831602565944,-0.824751477688551,0.029158788733184338,-0.4926095479167998,-0.49965377105399966,0.2110641705803573,-0.47606281097978354,0.7583230845630169,-0.33274616207927465,-0.3672205386683345,0.8030648254789412,0.40370985632762313,-0.17512331390753388,-0.48044937709346414,0.35976273380219936,-0.35089334985241294,0.0977963232435286,0.6938807303085923,0.5447376971133053,-0.8569648945704103,0.8569616093300283,0.3876444026827812,0.46256081806495786,0.9219075939618051,-0.45160188991576433,-0.38644747948274016,-0.6124786706641316,-0.7486689770594239,-0.05971229122951627,0.7613832736387849,-0.8976598461158574,-0.1642201617360115,-0.23706900142133236,-0.8245146055705845,-0.8176775309257209,0.702942296396941,0.32761320285499096,-0.8721017739735544,0.01839024806395173,0.20306332223117352,-0.0455075167119503,-0.17169066285714507,0.5440652100369334,0.48136090068146586,-0.4234230234287679,-0.4642662750557065,0.2758016134612262,-0.741636298596859,0.3191255140118301,0.47311433032155037,0.8408988672308624,-0.524981954600662,0.000461638905107975,0.44513456523418427,-0.05537379393354058,0.9126671529375017,0.26385554345324636,0.9047384816221893,0.09555693436414003,-0.12689096573740244,-0.4836829067207873,-0.25581559259444475,-0.4828120335005224,0.3884689789265394,0.3730538422241807,0.33574828738346696,0.929900751914829,-0.5643658288754523,0.962206247728318,-0.09167716838419437,0.040424952283501625,0.34030357375741005,-0.5658026984892786,-0.4814699897542596,-0.20692445244640112,0.16141784749925137,-0.3588001895695925,0.36032239021733403,-0.9433990153484046,-0.3906896854750812,-0.863111658487469,-0.03585406579077244,-0.6762577136978507,0.0981594561599195,-0.5200423682108521,-0.4441249296069145,-0.31633960641920567,-0.023453140631318092,-0.9221834205091,-0.04196774959564209,0.15527737699449062,0.34950072690844536,-0.7984705539420247,-0.5820369962602854,0.28778910730034113,0.512908227276057,0.18884817091748118,0.19429701566696167,-0.6012935140170157,0.009370730258524418,0.0658694920130074,-0.09741270821541548,0.40019119065254927,-0.24383449833840132,0.6985937720164657,0.12307604728266597,-0.650724318344146,0.21318496018648148,0.6817080830223858,0.5049187820404768,0.8202558713965118,-0.9854021458886564,-0.1363593195565045,0.7004395355470479,0.6321509392000735,0.3231395320035517,-0.6702767638489604,-0.503725232090801,0.4214160996489227,0.2806457378901541,-0.18320606322959065,0.622384141664952,-0.93991296319291,-0.6608025254681706,0.4207986779510975,-0.9211580250412226,-0.2965600909665227,-0.3595697972923517,-0.9029265851713717,0.005536029580980539,0.370459221303463,0.8120685531757772,0.8718372285366058,0.750039872713387,-0.7832571063190699,0.48635292146354914,0.2096973666921258,0.4197677606716752,0.6837610960938036,0.10295836441218853,-0.33216283889487386,-0.6102611115202308,0.258075256831944,0.24223210150375962,-0.3386227716691792,0.16492335498332977,0.5907199471257627,0.7167092780582607,-0.9626349695026875,-0.41085532447323203,-0.8987995446659625,0.9685231097973883,-0.8153358586132526,-0.4274423820897937,0.3484397525899112,0.16348013002425432,0.2604802120476961,0.009659823961555958,-0.1851085014641285,-0.4560966435819864,0.2791932853870094,0.7237348831258714,-0.6236910014413297,-0.6799423363991082,0.8463427773676813,0.21533924993127584,-0.4023958989419043,0.9540211940184236,-0.39829273987561464,0.20633298018947244,0.5947562367655337,-0.36108619114384055,0.9839448281563818,-0.36851702304556966,-0.4739443752914667,0.5397527422755957,-0.5978044830262661,0.40189126320183277,-0.6556697646155953,0.012327788397669792,0.9400882343761623,-0.064332808367908,-0.30166500248014927,-0.5406671180389822,0.7163491128012538,-0.6520759700797498,-0.5701854545623064,-0.9041914860717952,-0.4112387872301042,0.18076662067323923,-0.42627955973148346,-0.8364492086693645,0.0026859999634325504,-0.572373409755528,-0.74912433559075,-0.7984974454157054,-0.8063804041594267,0.09405357856303453,0.33736213855445385,0.7723628501407802,-0.3654426457360387,0.5161042152903974,-0.7933395309373736,0.6896321387030184,0.8254003943875432,0.19001689553260803,0.5325158117339015,0.4618285889737308,0.6302887606434524,0.5149664133787155,-0.7764021079055965,-0.6480800034478307,0.983985937666148,-0.907157318200916,0.39769897842779756,0.027797353453934193,0.22982044704258442,0.9215533682145178,-0.6127790622413158,0.5601661587134004,-0.8889308432117105,0.5005180900916457,0.7694580475799739,-0.7769358921796083,0.3365695532411337,-0.008072074502706528,-0.7005446967668831,-0.31525514647364616,-0.8760235109366477,0.24864694150164723,0.49377551348879933,0.9997512786649168,-0.25302096642553806,0.7158414670266211,0.2097132494673133,0.39305745251476765,-0.8158239359036088,-0.06207273481413722,-0.902519743423909,0.9660910195671022,0.8664422868750989,0.6931921192444861,0.8696213546209037,0.269207573030144,-0.7230183077044785,-0.5207573035731912,0.2868201108649373,-0.07346836244687438,0.9224016875959933,0.50676393462345,0.5383465923368931,0.45473693450912833,0.05410809116438031,0.46953971637412906,-0.2830458404496312,-0.8616510080173612,-0.40791579242795706,-0.574256797786802,0.04131679097190499,0.4467093450948596,-0.26159495394676924,0.7661409149877727,-0.45395921310409904,-0.3559103924781084,-0.2620850009843707,-0.18447519652545452,0.5101758977398276,-0.4279357884079218,0.2523877848871052,0.9075558623299003,-0.13565298728644848,-0.7480977908708155,-0.7820069459266961,0.9827126222662628,-0.5074137542396784,-0.10854033241048455,-0.44514219323173165,0.5758402701467276,-0.7443087459541857,0.44585976796224713,-0.933422259055078,-0.45127670047804713,0.01019585458561778,0.34394032042473555,-0.31538069201633334,0.8221995830535889,-0.7814258383587003,-0.8644427275285125,0.20772627741098404,-0.7454879493452609,0.677013898268342,-0.9952720338478684,-0.43284773640334606,-0.4870972470380366,0.8247972289100289,0.17037629475817084,-0.25961266830563545,0.13466827478259802,0.6859367634169757,-0.48848688416182995,0.5507312468253076,-0.6886019338853657,-0.8483671536669135,-0.5694667352363467,-0.6943035121075809,0.5795432720333338,0.33659322280436754,0.0658373711630702,0.4267306528054178,-0.6676177089102566,0.4871381470002234,0.870718399528414,-0.4835007800720632,-0.7500095004215837,0.33160301158204675,-0.4497032091021538,0.4140546186827123,0.8613186995498836,-0.6309459200128913,-0.8819970740005374,-0.45073656225576997,-0.6774272816255689,-0.7520560473203659,0.6445713499560952,-0.006700810510665178,-0.8918817164376378,0.6789996535517275,-0.002366730011999607,-0.956037035677582,-0.8063795329071581,0.9961057803593576,-0.46690849820151925,-0.36396024376153946,0.022400933783501387,-0.6834784741513431,0.12938105408102274,-0.4303200072608888,0.7127828686498106,-0.5457510827109218,-0.423740794416517,0.22008452704176307,-0.5236682491376996,0.7693748390302062,0.5716260112822056,0.8075238936580718,-0.20474234642460942,0.896976952906698,0.10773965856060386,-0.67892488790676,-0.6796444277279079,-0.715289122890681,-0.49764180602505803,-0.157152459025383,0.5947684631682932,-0.0754557978361845,-0.9249645369127393,-0.8845067769289017,0.3864460112527013,-0.47111285058781505,-0.8914543655700982,0.9375454625114799,0.45757324527949095,-0.2029888122342527,-0.6091329641640186,-0.9434801395982504,-0.7269524773582816,-0.5930073484778404,0.27745511243119836,-0.32185558695346117,0.1619809535332024,0.7612557462416589,0.6630271258763969,0.02817870071157813,-0.24550696834921837,-0.5316506763920188,-0.7365360343828797,0.6686573289334774,0.7144990507513285,-0.07717253174632788,0.7742490461096168,0.34656510315835476,-0.599005529191345,-0.06286913063377142,-0.46828610682860017,0.8828551089391112,0.11773836147040129,0.4616314726881683,-0.5538209285587072,0.02530454797670245,-0.1814039540477097,0.6971320412121713,-0.8799896263517439,-0.34851117711514235,-0.7441016561351717,0.9418761320412159,0.5183016466908157,0.163038051687181,0.5665417080745101,-0.4866463481448591,0.5086849862709641,-0.6786104729399085,-0.7326238257810473,0.1768629983998835,0.1629307488910854,0.9588000420480967,-0.9213503766804934,0.70782704744488,0.7715973840095103,-0.1809607264585793,0.6511741471476853,0.5483100130222738,-0.26019486086443067,0.5925852572545409,0.7116843056865036,0.9089522031135857,-0.41799325309693813,-0.4561685654334724,0.33327970700338483,-0.14755453681573272,0.34505448257550597,0.08418042911216617,0.6764241089113057,0.44100914848968387,-0.2222212445922196,-0.21043690433725715,-0.36536128260195255,0.308522813487798,0.7678901590406895,0.1328976363874972,0.24573863670229912,-0.3392303423024714,0.14465548237785697,-0.41337389638647437,0.08776813140138984,-0.1632379638031125,-0.8227336062118411,0.12084234226495028,-0.5790688577108085,0.533798489253968,0.0869525340385735,0.08099880954250693,0.6524662594310939,0.9359157648868859,0.7849694178439677,0.38072830345481634,0.5767168295569718,0.5649020657874644,-0.7489121966063976,0.589479963760823,-0.7765767658129334,0.6198648288846016,-0.7914961175993085,-0.9845347078517079,-0.6373891313560307,-0.5014887889847159,-0.2063904283568263,-0.20741115044802427,-0.4065988599322736,0.5411858018487692,0.2190037383697927,0.20762507524341345,0.7916579623706639,0.9278130298480392,0.14521161327138543,-0.03551037749275565,-0.804937519133091,-0.6160141699947417,-0.5088554522953928,0.2559037678875029,-0.9315932509489357,0.08945526834577322,-0.20493905153125525,0.481105484534055,0.8208624315448105,0.16323630325496197,-0.5096421004272997,-0.925879580900073,0.7383255404420197,0.44816446118056774,0.07881376938894391,0.4530457821674645,-0.0390803930349648,-0.25411983067169785,-0.6693961909040809,-0.5242926683276892,-0.442537282127887,0.21459998795762658,-0.5470340391620994,0.3451404529623687,0.648750938475132,0.020384055096656084,-0.658933887258172,0.895032268948853,-0.12351136608049273,0.00535635044798255,0.781855033710599,-0.9052395559847355,-0.22683147387579083,-0.06037812354043126,0.9297948675230145,-0.034566666930913925,0.5341108818538487,-0.8328263191506267,0.3994039143435657,0.12267714133486152,0.09816765738651156,0.9980728230439126,-0.6045797583647072,0.3431013161316514,-0.13381258537992835,-0.6215567183680832,0.4567037741653621,0.171207832172513,-0.9556555901654065,-0.08082636399194598,0.2934238538146019,0.045369187369942665,0.749323642347008,0.9013501680456102,-0.7792148487642407,-0.26014953292906284,0.9326333696953952,-0.5559168993495405,-0.6994162979535758,-0.08997096680104733,0.378033883869648,-0.6730222022160888,-0.46518665738403797,-0.4768993458710611,0.42940582521259785,0.9424030440859497,-0.39853896340355277,-0.2392932870425284,0.9495682255364954,-0.758127517066896,0.8604936362244189,-0.5474094678647816,-0.13072213251143694,-0.8095976510085166,-0.11268022330477834,-0.9347610818222165,0.7329002204351127,-0.014392862096428871,-0.5553562100976706,0.8876059055328369,-0.3650245745666325,-0.29658904066309333,-0.7694005756638944,0.9636305714957416,0.6803951095789671,0.712745233438909,-0.6109949103556573,-0.6540594561956823,-0.015188101679086685,0.7464162576943636,0.46684488421306014,0.2366033298894763,0.12320155370980501,0.21789022255688906,0.23195204976946115,0.7266344809904695,0.23617034032940865,0.08760314201936126,0.3685611062683165,0.01908402005210519,-0.3450474254786968,0.24000939074903727,0.9195022797212005,0.4180885632522404,-0.060362332966178656,-0.04005493363365531,0.4353702166117728,-0.9090045490302145,-0.9566522603854537,0.6568380501121283,0.5201601423323154,-0.33774051116779447,0.07424991438165307,0.8864770587533712,0.08186552673578262,-0.32369586918503046,-0.6797652603127062,0.9665659507736564,0.002936597913503647,0.5712691131047904,-0.09958763094618917,0.3305724570527673,0.806250752415508,0.25965258944779634,0.6660007881000638,-0.9169336869381368,0.3466968508437276,-0.6801281091757119,-0.12450716737657785,0.142596703954041,0.25562455225735903,-0.42951862839981914,0.2203573090955615,0.8975833747535944,-0.9259967650286853,0.1109988484531641,0.5856630750931799,-0.7659464725293219,0.39014679193496704,0.7533443532884121,-0.8077434324659407,-0.2436462608166039,0.9789786622859538,-0.10370666813105345,-0.10814306978136301,0.7594684697687626,-0.6208718251436949,0.7394032147713006,-0.2882985407486558,-0.2550768190994859,0.8831935520283878,0.7913832254707813,-0.03365268278867006,0.1089736158028245,0.38312258664518595,-0.22846045717597008,-0.019629238173365593,-0.1737451171502471,0.3903329982422292,-0.18074496602639556,-0.27446637907996774,-0.9508778927847743,0.5918474509380758,-0.3017200259491801,-0.6560585615225136,-0.8121943916194141,0.5773431872949004,-0.054395392537117004,0.8627347592264414,0.7397247250191867,0.5501131685450673,-0.370389258954674,0.5511982785537839,-0.22215222055092454,0.4065779778175056,0.2260244432836771,-0.8324273969046772,0.5779138961806893,0.532790504861623,-0.352301845792681,0.7311681318096817,0.30043711327016354,0.8000262230634689,0.8252639966085553,0.6318274480290711,0.6106856255792081,0.24415287654846907,0.8810320515185595,-0.140854112803936,0.3435349357314408,0.2479028506204486,-0.8744850340299308,-0.1896650968119502,0.9324129270389676,-0.508965658955276,-0.30192588502541184,-0.6138731753453612,-0.34855472203344107,-0.6375771318562329,0.5468109035864472,0.2626926782540977,-0.7031269166618586,-0.5450329221785069,-0.5126442709006369,0.508840620983392,0.9701627367176116,0.21365243941545486,0.6749047613702714,0.10860733361914754,0.11108731897547841,-0.31113716028630733,0.16379967564716935,-0.7838227138854563,0.040348713751882315,-0.37860411312431097,0.4618901205249131,-0.4266527616418898,-0.8303477140143514,0.524438283406198,-0.37739949580281973,0.7832253659144044,0.8949336484074593,-0.17198827723041177,-0.5067354333586991,0.8304152521304786,-0.9074093126691878,-0.04108839947730303,0.612096881493926,0.875646099448204,-0.2730463403277099,-0.9827576312236488,0.23712880071252584,-0.0684944442473352,-0.7437578560784459,0.4086977173574269,0.39236467331647873,0.6450659804977477,0.8584563797339797,0.23385934391990304,-0.1756186243146658,-0.5412984439171851,-0.4345591915771365,0.6049469113349915,0.0592233925126493,0.21380105940625072,-0.10052083386108279,-0.1667575016617775,0.432935681194067,0.40995170129463077,0.9985139593482018,-0.9394980571232736,-0.9475261806510389,-0.09603086533024907,0.9497880511917174,0.2823876040056348,0.16972915083169937,0.17190089263021946,-0.3769826451316476,-0.5343521852046251,-0.4171729707159102,-0.07226786389946938,0.32745497580617666,-0.9386722194030881,-0.7635570494458079,0.32017723051831126,-0.538199748378247,0.9031034298241138,-0.11155127268284559,-0.7085511758923531,-0.6024963888339698,0.6878285766579211,-0.7943757600151002,0.3665898968465626,-0.43770377058535814,0.3741795551031828,0.4616752527654171,-0.8064504400826991,-0.8626757217571139,0.21339249471202493,0.08643850078806281,0.7574367662891746,0.003976146690547466,0.9005607315339148,-0.24946224689483643,-0.9548670826479793,-0.4535701833665371,-0.1846779747866094,0.29983314499258995,-0.2527580764144659,-0.37010604282841086,0.6966243754141033,0.7157269055023789,-0.060175289399921894,-0.8133609900251031,0.8659168938174844,-0.46614607563242316,0.0025420119054615498,-0.21319029293954372,0.000533099751919508,-0.8763606199063361,0.756040109321475,-0.3747995221056044,0.059806767385452986,-0.19115816988050938,0.9242538693360984,0.7796589089557528,-0.7561958162114024,-0.5196644989773631,-0.9733751462772489,-0.011567588429898024,0.643060845322907,-0.7858508750796318,-0.3607527236454189,0.7675874433480203,0.6748514091596007,-0.3478475189767778,0.879328029230237,0.13604804081842303,0.9791665761731565,0.9044974860735238,0.7398251574486494,-0.7269912445917726,-0.917729714885354,0.5867651584558189,0.2699565659277141,0.22546104155480862,0.22243845276534557,-0.3823190927505493,-0.3738762754946947,-0.4314372683875263,0.384863390121609,0.40500073693692684,0.9447161527350545,0.583389095030725,0.9230369064025581,0.4101185593754053,0.2770533147267997,0.7329453662969172,-0.8544591958634555,0.4549594740383327,0.3687665588222444,0.6549435509368777,0.02736803563311696,-0.4421479059383273,0.2909282483160496,-0.5038889027200639,0.7999672177247703,0.7519348724745214,-0.2824582806788385,0.6390939727425575,-0.7980832383036613,0.020985142327845097,0.13642273657023907,-0.27842582762241364,0.1399404159747064,0.21986111905425787,0.7629003850743175,-0.4197457921691239,-0.5161922774277627,0.8510290798731148,0.86021159728989,-0.22001416375860572,0.05628542508929968,-0.7350660050287843,0.9382164920680225,0.6832978706806898,0.6025503668934107,0.35372724616900086,0.9579975469969213,0.4939970476552844,-0.43507580645382404,0.3020187155343592,-0.2168790358118713,-0.9002430876716971,-0.5267723109573126,0.5513185234740376,-0.44888985762372613,-0.6674850322306156,0.9210263439454138,0.5617158669047058,0.07751988572999835,-0.2827870552428067,0.9613295942544937,-0.719513722229749,-0.6193452384322882,-0.3036464545875788,0.21904483903199434,-0.01393029186874628,-0.4764364939182997,-0.025739131961017847,-0.38694353215396404,-0.2789823729544878,-0.19827305572107434,0.1387236788868904,-0.41047089593485,0.1258897571824491,0.4215141832828522,-0.5173285617493093,-0.05828869389370084,0.9866398791782558,0.4966293158940971,0.36282570753246546,0.23018395621329546,-0.6179711502045393,0.9269262584857643,-0.6231066123582423,-0.6875570742413402,0.9147895094938576,-0.7800652515143156,-0.4505607015453279,0.5505758244544268,-0.3982880776748061,-0.786907076369971,-0.11729179788380861,-0.3229757766239345,-0.01209891913458705,-0.5732378466054797,0.11194704007357359,0.6332808756269515,0.7980864350683987,-0.4471115996129811,-0.9738314561545849,0.17401340510696173,0.6099545434117317,0.5572644444182515,-0.9093287689611316,0.6459359135478735,0.18628939474001527,-0.30398286832496524,-0.25088189309462905,0.9680787594988942,0.8850545007735491,0.8233672329224646,-0.7758096032775939,-0.8644079701043665,-0.6109261326491833,-0.5699696633964777,0.9133555595763028,0.2432782589457929,0.8283524825237691,0.7272023796103895,0.8536555166356266,0.4170717247761786,0.6980837723240256,-0.03480061888694763,-0.5500011458061635,-0.030639746226370335,0.27770688058808446,-0.6002485165372491,-0.04871729714795947,-0.9232098311185837,0.3697546860203147,0.9161379891447723,0.7871878775767982,-0.9558774516917765,-0.4768877332098782,0.7227201825007796,0.8057546741329134,-0.6612939336337149,0.6856645224615932,-0.8322401670739055,-0.6390461139380932,-0.36110383085906506,-0.5000258684158325,-0.14055933989584446,0.41294608591124415,0.645050635561347,0.46482855919748545,0.7199016944505274,0.808243456762284,-0.9764369311742485,-0.7619146695360541,-0.48484248016029596,-0.48383961664512753,-0.779596128500998,-0.5375096681527793,0.3666572249494493,0.5978584745898843,0.7361552682705224,-0.9554343963973224,-0.22535099042579532,0.25427571358159184,-0.400325202383101,0.14707778161391616,0.8491498827934265,-0.6517237811349332,0.9621716919355094,-0.5952160651795566,0.020263448357582092,-0.006076709367334843,0.8717648191377521,0.2690376080572605,0.9295892142690718,-0.6853804048150778,-0.5694788307882845,0.15975407045334578,-0.9947654074057937,-0.29675545124337077,0.172752914018929,0.13081280887126923,-0.9116445467807353,-0.4074191376566887,0.04317476926371455,-0.5320482356473804,-0.7056128946132958,-0.7165861916728318,-0.24048082996159792,-0.9641022891737521,0.7182315750978887,-0.830916428938508,-0.6246443563140929,-0.3464700039476156,0.08455242775380611,-0.5605374723672867,-0.2934121140278876,0.24293783446773887,-0.816774426959455,0.8217796334065497,-0.8487405353225768,-0.8797615049406886,0.5678095179609954,0.09605531953275204,0.5624074386432767,0.4262596983462572,-0.5327861602418125,0.3010637969709933,0.15211137104779482,0.1472244644537568,-0.8181638279929757,-0.4138432824984193,0.9685609661974013,0.2821927974000573,0.9224340175278485,0.6297554937191308,-0.9023714093491435,0.29718108009546995,-0.11316367099061608,0.9994568801485002,0.6965099582448602,-0.23547835322096944,0.14979214454069734,0.022219206672161818,0.4432981228455901,-0.7735510407947004,-0.6979313720948994,-0.019296100828796625,-0.8339681006036699,0.5891121453605592,-0.004774340428411961,0.5933976261876523,-0.6253360197879374,-0.5131175783462822,0.6869490221142769,-0.027568007819354534,-0.24258319986984134,0.32734433421865106,0.611586838029325,0.3650099583901465,-0.2944040456786752,-0.6858115550130606,0.3078389437869191,0.7680797656066716,0.05116989649832249,-0.8269551056437194,0.8541523069143295,-0.49601172283291817,0.22378282714635134,-0.5195873808115721,-0.5818937476724386,0.25209956616163254,-0.24058892019093037,-0.2271848116070032,0.258681945502758,0.8652574769221246,0.9872984127141535,-0.21384628070518374,0.03418889408931136,-0.6379323923029006,-0.426553085912019,0.6920308950357139,0.2750384686514735,-0.4927845853380859,0.03004021616652608,0.49778753938153386,-0.9261562335304916,0.9112413073889911,-0.37927511893212795,0.9076110529713333,0.7679072134196758,0.28153871931135654,-0.9655255065299571,-0.39674977818503976,-0.6804429511539638,-0.4209125335328281,-0.4536684681661427,-0.9315422507934272,0.07344330847263336,0.5274055832996964,-0.2579684262163937,-0.11060111131519079,0.14159731986001134,0.2217089249752462,0.15366592444479465,0.2552577410824597,0.3809237680397928,0.8386225895956159,0.25215348321944475,0.5621678279712796,-0.07825099118053913,-0.259607657790184,0.12951214192435145,-0.8920915140770376,-0.18061171658337116,0.48718704748898745,0.1473170113749802,0.5103065795265138,0.2148831426165998,0.9513495718128979,-0.3267264938913286,0.06968567427247763,-0.13340835040435195,0.466799805406481,-0.5489451019093394,-0.8565546865575016,0.7686347137205303,-0.9968019519001245,0.13924679392948747,-0.07826252048835158,0.5106857023201883,0.40595821756869555,0.7420138996094465,-0.6814862084574997,-0.2207485376857221,-0.4160367473959923,0.4220452983863652,-0.8777681915089488,-0.5760189220309258,-0.6873842035420239,0.7582020279951394,-0.8689959128387272,0.15983154997229576,-0.46011067600920796,-0.37078203074634075,-0.33104716753587127,0.10351509833708405,-0.7165967971086502,0.8564622239209712,0.769640373531729,-0.8890416347421706,-0.5844707093201578,-0.5227719629183412,-0.5100323064252734,-0.02380674099549651,-0.2268168581649661,0.6160089294426143,-0.012586213182657957,-0.19462887290865183,-0.9316520118154585,0.40150862419977784,0.2562747532501817,0.28974483208730817,0.9674697062000632,0.8175671021454036,0.5047861575149,-0.005645845551043749,-0.11358026834204793,0.08089405205100775,-0.3538719806820154,0.43782637547701597,-0.44502280140295625,-0.19465409079566598,-0.7269641724415123,-0.5502361208200455,-0.2893365575000644,0.505389207508415,-0.226879408583045,-0.041644361801445484,-0.22902562096714973,0.5030552507378161,0.2133181686513126,0.6818453096784651,-0.10715239029377699,0.6559223518706858,-0.23765750508755445,0.3827755842357874,-0.7047902289777994,-0.31925619998946786,-0.22193513344973326,-0.12337837368249893,-0.04192855814471841,0.7488401406444609,-0.6257366579957306,0.47565272031351924,-0.7103262287564576,0.4747545877471566,-0.367914458271116,-0.26569472858682275,0.8168813195079565,0.31181913847103715,-0.2793490490876138,0.6149262124672532,0.5654496448114514,-0.92342932196334,0.28047519316896796,0.9958352576941252,0.05563980480656028,-0.13789390679448843,0.46122317016124725,-0.056172136683017015,0.0028793569654226303,-0.06908656703308225,0.06363636301830411,-0.28773953998461366,-0.40142154367640615,-0.6351929502561688,0.7309832698665559,-0.3849820694886148,-0.3461323664523661,-0.5360202919691801,-0.6944996863603592,0.7110936744138598,0.20340807875618339,0.8838009350001812,-0.33000955637544394,0.11927361832931638,-0.4927979973144829,0.17842596862465143,0.6053317016921937,-0.9288985012099147,-0.2810908001847565,-0.8321725684218109,-0.5881207115016878,-0.8828259911388159,0.4132675286382437,0.37812177930027246,-0.8848536885343492,0.9723461549729109,-0.3300755247473717,0.17963801231235266,-0.9291383177042007,-0.8029445908032358,0.621900325641036,0.8135306434705853,-0.46831219317391515,0.2245808020234108,-0.15762550150975585,0.5065244790166616,-0.27904096245765686,-0.8413881179876626,-0.41656690603122115,-0.9064983101561666,-0.7089090007357299,0.7842352567240596,0.2948364815674722,0.4983161725103855,-0.8523356379009783,-0.5656809005886316,-0.6437027910724282,-0.27742297062650323,-0.7445055330172181,-0.2969665280543268,0.48493242636322975,-0.08778942562639713,0.3470257045701146,0.840904587879777,-0.35323985386639833,0.35313337855041027,0.9205157719552517,-0.3899934240616858,-0.34067682456225157,-0.20793322334066033,-0.5071691782213748,0.5927259023301303,-0.059614557307213545,-0.5483861956745386,0.5901863449253142,-0.8859428837895393,0.42089100927114487,0.9369943728670478,-0.5318027078174055,0.4799530138261616,-0.2410242073237896,-0.2780113578774035,-0.5696319015696645,0.00599965825676918,0.04236292187124491,0.5795463253743947,0.6684800838120282,-0.5905179046094418,-0.20801525097340345,-0.4573910064063966,-0.9225409021601081,-0.3924336745403707,0.8166101286187768,0.8766280706040561,-0.14125447627156973,-0.5801458917558193,0.29093455569818616,0.07716662576422095,-0.7395740752108395,-0.9082359243184328,-0.1869092988781631,0.08635815978050232,0.5596373151056468,-0.24921933421865106,0.4977948684245348,0.4448401122353971,0.3839520555920899,0.7490523494780064,-0.6385923642665148,0.4457739992067218,-0.27219756226986647,0.48030108865350485,0.3295658081769943,0.8072690782137215,-0.20752839278429747,-0.8182538980618119,-0.7996139596216381,-0.15641859034076333,-0.4137576650828123,-0.6227200571447611,-0.23515385249629617,-0.9301000768318772,0.08706323662772775,0.4692817875184119,-0.06684096762910485,0.1748978211544454,-0.7608678671531379,-0.901712120976299,0.2026247726753354,-0.23931336915120482,-0.43360724626109004,0.4592355261556804,0.31093988846987486,-0.5608338522724807,-0.6510691037401557,-0.8129078992642462,-0.4021079265512526,0.32569118589162827,0.7904241341166198,-0.5611093384213746,-0.04146651457995176,0.6903013563714921,-0.7022227505221963,-0.35180663922801614,0.3388711232692003,0.937023667152971,-0.9462185371667147,0.8982677329331636,0.45593585073947906,0.10705060558393598,0.8754900982603431,-0.8915138212032616,0.8547640135511756,0.5515497205778956,0.276011832524091,-0.18445063987746835,0.1290205311961472,0.9453071742318571,-0.5456406408920884,0.9040103214792907,-0.41082080733031034,0.3342029224149883,0.25804974883794785,0.0597539683803916,0.3757783807814121,-0.32905982434749603,0.743905627168715,-0.6427355934865773,0.9535935604944825,-0.543214756064117,0.3934923349879682,-0.2169948872178793,0.7848762711510062,-0.9873932967893779,-0.5544775547459722,-0.7709302413277328,-0.5689242477528751,-0.09038542723283172,-0.6320718284696341,-0.6194919450208545,0.05702741304412484,0.010786265134811401,0.010319013614207506,0.5873516509309411,-0.6113006374798715,-0.36152052553370595,0.38976750476285815,-0.27021180000156164,0.67326720058918,0.8228650577366352,0.4330438943579793,-0.20615319442003965,0.6945984973572195,0.3909858991391957,0.6677319342270494,0.3652838421985507,-0.07836428377777338,-0.6269081295467913,-0.8491782825440168,0.9898753580637276,0.4910711031407118,-0.927045448217541,0.8033511089161038,-0.9174306434579194,-0.35801328578963876,0.37903337739408016,0.7740603955462575,0.1301925042644143,-0.4053736673668027,0.10040984768420458,-0.9040573867969215,0.4834846663288772,-0.2371579771861434,0.7275763945654035,-0.07572663202881813,-0.29210879327729344,0.36869996739551425,-0.6002288614399731,-0.3644719794392586,0.5009788149036467,-0.15870024915784597,0.4993228930979967,-0.2365608373656869,0.9244714719243348,-0.012237421236932278,0.5025075189769268,0.11271063378080726,-0.7717417371459305,0.7785170921124518,-0.5138198919594288,0.04185544792562723,0.9447303800843656,0.26588122360408306,0.6864461172372103,-0.048365401569753885,0.48202940775081515,0.9368881727568805,0.44083834905177355,0.7182067534886301,0.48185095516964793,0.7875984301790595,-0.7493243846111,-0.17567545780912042,0.7789577827788889,-0.45922347949817777,-0.6896690065041184,0.14904655516147614,-0.2817405415698886,-0.5526763652451336,-0.024616931099444628,0.7046413379721344,-0.5794229907914996,0.4339810758829117,0.8076569237746298,-0.39537560008466244,0.32422591745853424,0.6697676130570471,-0.8607212584465742,-0.3298387276008725,0.9945138683542609,-0.718205763027072,-0.657861391082406,0.9517483538948,-0.20745067158713937,0.23155136965215206,-0.24667672673240304,0.4229212449863553,-0.07412564847618341,0.4368661600165069,0.01583104580640793,0.446012023370713,-0.7663028542883694,0.34990717098116875,-0.6807423261925578,0.4555480172857642,0.1412896979600191,0.5850008260458708,0.5642161648720503,-0.8178744902834296,0.6738270856440067,0.5688668731600046,-0.46829964872449636,0.18826141534373164,-0.5811733021400869,0.3002128857187927,0.22036611335352063,-0.9825840150006115,-0.5919748079031706,-0.5587030393071473,0.6007199143059552,-0.6673867446370423,-0.9930975800380111,0.9709601192735136,0.08038985729217529,0.3032205100171268,-0.9718665410764515,-0.21199143724516034,0.8535458641126752,-0.5705552366562188,0.9382342919707298,-0.3807039512321353,0.8111676457338035,-0.29238388827070594,0.8617661749012768,-0.518973589874804,0.8814420904964209,-0.30307958275079727,-0.9821812510490417,0.7950572832487524,-0.313210460357368,-0.1898244428448379,0.39811442978680134,0.8762536998838186,-0.31398152047768235,-0.14023911813274026,0.38484472455456853,0.23178091133013368,-0.8138159494847059,-0.3516625394113362,0.17670865636318922,-0.5162631799466908,0.20160934748128057,-0.9320537908934057,-0.6259382241405547,-0.33681068010628223,0.6955966581590474,-0.4621971878223121,0.5128678167238832,-0.18619852885603905,0.7904242314398289,-0.35537890531122684,0.14868899062275887,-0.9222316392697394,-0.9482065732590854,-0.5872276248410344,-0.7191322278231382,0.5648930692113936,0.12343259435147047,-0.08391519170254469,-0.9467320521362126,-0.11476577166467905,0.48824363527819514,0.8080288423225284,-0.7585074524395168,0.2738661332987249,-0.3184005096554756,0.6583603224717081,0.427836820948869,0.5500013390555978,-0.49367954349145293,-0.16598870093002915,-0.3830859363079071,-0.8990232553333044,-0.15761946514248848,-0.6966863637790084,0.8097239979542792,-0.5682585327886045,0.45397522347047925,0.8739167680032551,0.1575145749375224,-0.8450445448979735,0.02379641216248274,0.9296453734859824,-0.46601402666419744,0.7124378285370767,-0.7395306839607656,-0.37171419290825725,-0.582681983243674,0.25182795338332653,-0.5990454009734094,-0.2889982587657869,0.5801817253232002,-0.1062894887290895,-0.19069135375320911,-0.7904330552555621,0.1544102681800723,-0.12566345976665616,0.782970174215734,0.7325859148986638,-0.9037005892023444,0.3672677241265774,0.8925577849149704,0.5028858529403806,-0.8172148512676358,0.5495409779250622,-0.9222019766457379,0.5528977350331843,0.2899325410835445,-0.12345153419300914,0.9293314935639501,0.19784573838114738,0.07325237849727273,0.756898217368871,0.4461519489996135,0.34314719028770924,-0.5632009715773165,-0.39106030855327845,0.6993997795507312,0.8791282065212727,0.28118468588218093,0.4092412060126662,0.25327672390267253,-0.5056006424129009,0.7660733023658395,0.16832000436261296,0.877421707380563,-0.2941584740765393,0.8613935858011246,-0.896227574441582,0.3881842535920441,0.8755454514175653,-0.34936571633443236,-0.21906806249171495,0.724853543099016,0.9525797343812883,0.03638952178880572,-0.14917899202555418,0.6958149056881666,0.9743994669988751,0.15807959949597716,-0.7054589875042439,0.23518000775948167,-0.1995696839876473,0.04274829523637891,-0.11602821899577975,-0.7699170778505504,0.42044724989682436,-0.6312542390078306,-0.6203061509877443,-0.7637832262553275,-0.79380121268332,0.5077299270778894,0.6251205680891871,-0.028669518884271383,-0.06598948920145631,0.8390186713077128,-0.2583559462800622,0.12549216812476516,-0.7225825721397996,-0.9524412848986685,-0.5213365475647151,-0.6202558293007314,0.17264185985550284,0.2213173657655716,0.25787246925756335,0.6833330909721553,-0.6751336874440312,0.7622058968991041,0.36728750402107835,-0.5087870983406901,-0.060640404000878334,-0.7451428459025919,-0.733230599667877,0.33047595899552107,-0.9609604957513511,0.5947989257983863,-0.04608770366758108,0.8183833211660385,-0.10979122249409556,-0.577563607133925,0.8224533721804619,0.7540647378191352,0.7886751471087337,0.9263062849640846,-0.1773146209307015,-0.10002888925373554,0.0169626846909523,-0.7760607483796775,-0.3261568648740649,0.11280245473608375,0.7172839953564107,-0.10266485856845975,0.3092461861670017,-0.08293972071260214,0.997243907302618,0.9449185309931636,0.9494557715952396,0.09897176874801517,-0.32147496147081256,-0.8846180345863104,0.03807677002623677,0.8622299158014357,0.4278423017822206,-0.9688862450420856,0.05396664049476385,-0.6101871659047902,0.2377421515993774,-0.8087466079741716,0.9345130580477417,0.22999984165653586,0.04431303823366761,-0.40740036917850375,-0.051723895128816366,0.8285266640596092,-0.2215929846279323,-0.018709999974817038,-0.023861290886998177,0.04224000824615359,-0.18235957249999046,0.7992531908676028,0.7571231378242373,-0.5170532069168985,0.1407978804782033,-0.29072966426610947,-0.5713009596802294,0.8417439823970199,-0.9608189021237195,0.4562464659102261,0.6741423094645143,-0.08566091163083911,-0.927421448752284,0.7347878613509238,0.009135697968304157,0.12143809208646417,-0.18529046094045043,0.1390227503143251,-0.6234474321827292,-0.3133989190682769,-0.779365980066359,-0.19656927464529872,-0.18261456303298473,0.4382710470817983,-0.02806850243359804,-0.023040599189698696,-0.9552930812351406,-0.6600424400530756,-0.10315085900947452,0.9393016421236098,-0.5041420818306506,0.5558194420300424,0.9537505353800952,0.7534474516287446,-0.43423995841294527,0.32759305415675044,0.8786711459979415,-0.3513244977220893,0.5745081868954003,0.2377071469090879,0.6166046652942896,0.2582218898460269,0.9280869732610881,-0.22818916430696845,-0.7356224628165364,0.6917718746699393,-0.9242192865349352,0.6445901370607316,-0.5502014067023993,-0.6993459314107895,-0.4581947550177574,0.33648811699822545,0.8750062747858465,0.9704902861267328,0.3117973799817264,-0.09846091410145164,0.4371371497400105,-0.20688055222854018,0.7652600104920566,0.8445013118907809,-0.8051761789247394,0.3074051449075341,-0.7171554989181459,0.7211426473222673,-0.5019254363141954,-0.33326677326112986,-0.5354976402595639,0.7173393215052783,-0.608989963773638,-0.9065920631401241,0.1494859936647117,0.5826923586428165,0.8963392623700202,0.5886144945397973,-0.8849926176480949,-0.7250469932332635,0.18754049483686686,0.17576497234404087,0.26737022772431374,-0.42022652504965663,-0.9583695200271904,0.1595042422413826,0.782269926276058,0.1343155214563012,0.8990800911560655,0.035240489058196545,0.990163185633719,-0.5857818997465074,0.5248710988089442,-0.6718482454307377,-0.3306767721660435,-0.8498441074043512,-0.17114746337756515,-0.41046033008024096,0.4931789985857904,-0.8542808066122234,0.7766072670929134,0.3109629563987255,0.8760982099920511,-0.41878140019252896,-0.15011036582291126,-0.24282737961038947,-0.2033690419048071,-0.7757231909781694,0.6078885532915592,-0.19540237868204713,0.9664012221619487,-0.5418167300522327,0.9684965438209474,0.12757714046165347,-0.5864146454259753,0.5471800933592021,0.2729790499433875,-0.6794931925833225,-0.8638737457804382,0.7975642788223922,-0.6804861784912646,-0.9432297092862427,-0.49919411819428205,0.2809865418821573,-0.36877998523414135,0.16271888557821512,0.20722806407138705,0.12208399781957269,-0.7707389546558261,-0.24792327266186476,0.6414670017547905,-0.42600933695212007,-0.7322151581756771,-0.27081286115571856,0.9637934151105583,0.6126117231324315,-0.6946783657185733,0.6619684044271708,-0.4579776432365179,-0.8644692003726959,-0.2578406436368823,-0.18585180444642901,0.6228923480957747,-0.18556248489767313,-0.40348023688420653,0.28008262207731605,-0.5539449732750654,-0.7951559321954846,-0.04322192491963506,-0.9186655804514885,-0.9080866035073996,0.4650842696428299,-0.10954716615378857,0.28702602721750736,-0.32335114385932684,0.9003859516233206,0.00771569088101387,0.45428835693746805,0.06293045030906796,-0.44158297032117844,0.7380085890181363,0.42572653852403164,0.12837913818657398,-0.0589071842841804,-0.9272387693636119,0.22390549769625068,-0.3918081549927592,-0.7062641531229019,-0.972947905305773,-0.6526297694072127,0.34961987286806107,-0.0345997205004096,-0.8150218725204468,-0.9552743304520845,0.1372966794297099,0.17368000745773315,0.6462062550708652,-0.3052693884819746,-0.027886797208338976,-0.4712542346678674,0.6403820845298469,-0.13997107138857245,-0.7865566597320139,-0.329214699100703,0.4095942312851548,-0.8185178306885064,-0.39624628657475114,0.9142223657108843,-0.8324527256190777,-0.11026897141709924,-0.27781296288594604,-0.1668118010275066,-0.4295078869909048,0.24756010808050632,0.6956780590116978,0.011702388059347868,-0.06417035963386297,-0.9453297001309693,-0.07964468700811267,-0.8809197531081736,-0.5451210318133235,0.5786790587007999,-0.520925298333168,0.32696773996576667,-0.5745993521995842,0.6068530846387148,0.027305177878588438,0.6594212534837425,-0.705914328340441,0.6322549055330455,0.72972301999107,-0.9298374671489,-0.0031681014224886894,-0.7864590603858232,-0.4464093125425279,-0.021153979003429413,0.024868486914783716,-0.35723150335252285,0.255800714250654,-0.7999788029119372,-0.7753843748942018,-0.6815570397302508,0.7969310227781534,0.1099000577814877,0.9646968701854348,0.05800015293061733,-0.9343571192584932,-0.17128675756976008,-0.7489927602000535,-0.3892723647877574,0.6235859454609454,0.6940890112891793,-0.8632004563696682,-0.6314541604369879,0.17186344135552645,-0.988338865339756,-0.8448261418379843,0.9679696569219232,0.019841482397168875,0.6702071400359273,-0.9557214616797864,-0.7563073728233576,0.22493177745491266,0.007310529705137014,0.8544160206802189,-0.10962949553504586,-0.5901433560065925,-0.3654080550186336,-0.2951817372813821,-0.5246623218990862,0.2579693137668073,-0.8355795913375914,0.8934527360834181,-0.22018791129812598,0.8645282639190555,0.5560920895077288,-0.17770036309957504,-0.45356141217052937,-0.058234423864632845,0.6531024072319269,-0.20308815082535148,0.1642860108986497,-0.6230063396506011,0.2304760841652751,0.13578856037929654,-0.7654521600343287,-0.6351579334586859,0.027196108363568783,0.21909749088808894,0.23919358057901263,0.32344253873452544,0.25568957813084126,0.4881205437704921,-0.405073958914727,-0.5038839080370963,-0.7019819426350296,-0.8356004473753273,-0.6058510979637504,-0.539047037716955,-0.4882490923628211,0.4698243299499154,0.8083587321452796,0.8115351544693112,0.9694058867171407,0.28984087565913796,-0.8122856579720974,-0.6388499275781214,-0.45781845692545176,-0.4215668528340757,0.027714588213711977,-0.7068819417618215,-0.5042052147909999,0.915260607842356,-0.27854164224117994,-0.45500208297744393,0.9368228213861585,0.1796148931607604,-0.24798446940258145,0.4035822548903525,-0.9157754629850388,-0.9390943651087582,0.770963188726455,-0.2185235694050789,-0.28208328038454056,0.7160228136926889,-0.625797160435468,0.41911152051761746,-0.486756672617048,-0.23213490284979343,0.29958989191800356,-0.31762333400547504,0.5114563214592636,-0.06906403787434101,-0.025076637510210276,0.9718902437016368,0.2649907721206546,-0.15497441543266177,0.6008228044956923,0.10840162821114063,0.009390325751155615,0.34946829406544566,-0.7184163900092244,0.7001668140292168,-0.9368540248833597,-0.13439396675676107,-0.08355918852612376,-0.7904537254944444,-0.877508201636374,-0.1998041677288711,-0.13094322243705392,-0.41786644142121077,0.256344189401716,0.562688463833183,-0.8347414624877274,-0.4837059830315411,-0.10839814832434058,-0.3879672111943364,-0.5261151646263897,0.6010039569810033,-0.6356598874554038,0.19361409824341536,-0.5184318171814084,-0.9512931685894728,-0.46801835019141436,-0.981081370729953,-0.5992455128580332,0.04825265891849995,0.27752728294581175,-0.5844167806208134,-0.2350105419754982,0.6599472346715629,0.9230202101171017,-0.2019097451120615,-0.07071539340540767,-0.5997303547337651,0.1842842702753842,-0.38311994541436434,0.1455428833141923,0.1755010080523789,0.7949490337632596,0.5627738861367106,-0.4848617627285421,-0.09610366867855191,-0.3432708508335054,0.1900631496682763,0.5224583619274199,-0.877451284788549,0.6678990288637578,-0.35537213645875454,-0.721576111856848,-0.870624952018261,0.07298727100715041,0.4270755401812494,-0.325141922570765,0.12568129505962133,0.2071779672987759,-0.30761782359331846,0.18167956685647368,0.7152719222940505,-0.4394579026848078,-0.10343187488615513,-0.2246165480464697,-0.4634919739328325,0.8551334361545742,0.41687239380553365,-0.14251577388495207,0.37705137580633163,0.24760416010394692,-0.9799706637859344,0.4022842887789011,0.38112915493547916,0.5274496665224433,0.45210217125713825,-0.9578173947520554,-0.7004254488274455,-0.2110899230465293,0.3129305001348257,0.10137378610670567,-0.010563291609287262,0.6472080945968628,0.25383090740069747,0.039175585843622684,-0.33013868890702724,0.4451691280119121,0.15508226305246353,-0.10363657074049115,-0.039840145502239466,0.9526590565219522,0.8200071989558637,0.3588573019951582,-0.4746234994381666,-0.8364539663307369,-0.18369756592437625,0.5617066388949752,-0.8420387087389827,0.2421411951072514,-0.30409574694931507,0.43162935925647616,-0.15878747357055545,-0.061741968616843224,0.04174968507140875,-0.2504511410370469,0.781759818084538,0.1776810772716999,-0.7089446447789669,0.4430731604807079,0.9436224703676999,0.9664501948282123,-0.8535970188677311,0.8823167108930647,-0.16302610747516155,-0.3218769542872906,-0.3802586980164051,0.7154359580017626,-0.426598459482193,-0.3005883083678782,-0.9998426171950996,-0.1484270547516644,0.34429460670799017,-0.2658726619556546,-0.5505631784908473,0.6123477495275438,0.5428612125106156,0.4609314822591841,-0.48699578177183867,0.38686800887808204,-0.8698582025244832,0.67497518658638,0.5779149504378438,0.48231927771121264,-0.357601473107934,0.9340155301615596,-0.0641182642430067,-0.506272308062762,-0.6050350964069366,0.061371125746518373,0.6502580409869552,0.04064049292355776,0.9139204225502908,-0.8996444586664438,-0.9767366168089211,-0.8985680253244936,0.5018712189048529,0.8057616776786745,0.052444024942815304,0.6914482531137764,-0.6439742418006063,0.36293421359732747,-0.9098596712574363,-0.8682314287871122,-0.04355203919112682,-0.24682373134419322,-0.5248375632800162,-0.44325573137030005,0.9721696982160211,0.24026352912187576,-0.20378631772473454,-0.3234429117292166,-0.4689682833850384,0.3548386231996119,-0.6217654971405864,-0.6161244590766728,-0.18112425273284316,0.3743896782398224,-0.5243144393898547,0.6263055666349828,-0.532306348439306,0.6624679085798562,-0.2177199157886207,-0.9433068973012269,0.24870346719399095,0.9803818049840629,0.6995172230526805,0.40493962820619345,0.5888195997104049,-0.9422411071136594,-0.2925252439454198,0.01195076759904623,0.7202323167584836,-0.6641009729355574,-0.6686945846304297,0.6024692123755813,0.15405762800946832,-0.2897847439162433,-0.11514756036922336,-0.8488725959323347,0.6985109113156796,-0.5650441809557378,0.3477548067457974,0.004047870635986328,0.44087111111730337,0.9134329403750598,0.31443064380437136,-0.19031732715666294,-0.2945198272354901,-0.7369902827776968,0.9809583588503301,0.9897006838582456,-0.6694512227550149,-0.22001536889001727,-0.4332180339843035,0.13054549042135477,-0.6880710115656257,0.3540378655306995,0.5733024701476097,-0.998237325809896,0.9927219836972654,-0.32819881569594145,-0.144103629514575,0.6320896628312767,-0.2295775800012052,0.292180503718555,-0.9256293689832091,-0.3444098406471312,0.7488991837017238,-0.8463398711755872,-0.006992172449827194,-0.7481666202656925,-0.8182183825410903,-0.5070186886005104,0.834153788164258,0.2520351237617433,0.6286508706398308,0.14452674519270658,0.7999414340592921,-0.499939264729619,0.8653497300110757,-0.33919074665755033,-0.9195358082652092,0.5516356285661459,-0.614920346532017,-0.5047711944207549,0.6972212707623839,-0.2665203483775258,-0.9602486225776374,0.5148995923809707,-0.14089509285986423,-0.21544148912653327,-0.5343149271793664,0.49794246396049857,0.7962394491769373,-0.6587956300936639,0.07394940126687288,0.2897027647122741,-0.7501835427246988,-0.6051884656772017,0.7276350962929428,-0.9997184090316296,0.8726902534253895,-0.04525760468095541,0.9901354359462857,-0.3985361782833934,-0.43576108245179057,0.7142802630551159,-0.028423627372831106,0.7254342050291598,0.7683207779191434,-0.3191916407085955,0.5741547239013016,-0.8717538947239518,-0.6196578592061996,-0.7366127660498023,0.9260746985673904,0.4301205254159868,-0.7108334824442863,-0.19833152601495385,0.34498056396842003,-0.28411040361970663,-0.21194478264078498,0.7682503066025674,-0.32886723568663,-0.07657479820773005,-0.47101855417713523,0.43391203135252,0.5507952170446515,0.7479971013963223,-0.29522442910820246,0.8211662308312953,-0.5090854023583233,0.7847819523885846,0.6339866514317691,0.06353401811793447,-0.9478306663222611,-0.6178060420788825,0.8188084997236729,0.28493278892710805,0.5113172014243901,0.17696556961163878,-0.49702634988352656,0.6316438354551792,0.542371129617095,0.2847772133536637,0.4242794495075941,0.5073624085634947,-0.437534611672163,0.5569834806956351,-0.6984606115147471,0.00952041707932949,0.9595253891311586,0.679313980974257,-0.7930667223408818,0.6287777796387672,0.13177680829539895,-0.26371185202151537,0.05320547567680478,-0.08902892423793674,0.5752497832290828,0.972981940023601,-0.3530927752144635,0.5241822055540979,-0.5662991027347744,0.7665242874063551,0.23962050583213568,-0.5683738994412124,0.05618229368701577,-0.98748534405604,0.6816232982091606,0.7479720311239362,-0.3424486182630062,-0.9017203208059072,-0.6950875744223595,-0.345524285454303,0.34642418660223484,0.08382252510637045,0.39562242198735476,-0.5332312760874629,0.3683024230413139,0.9245269284583628,0.42895206762477756,0.5712287276983261,-0.6374481413513422,0.6784514556638896,-0.5181727302260697,0.033245749771595,-0.19203775376081467,0.3233046056702733,-0.7093354985117912,-0.21126451529562473,-0.3244337774813175,-0.05806792387738824,0.5201552077196538,0.9718874325044453,-0.3554792646318674,-0.37480640737339854,-0.7983549009077251,-0.40510075772181153,0.7676588273607194,-0.2147096823900938,0.8090897728689015,0.11252191197127104,-0.34522076416760683,0.7764772158116102,0.09470640541985631,-0.388571260496974,0.9319432778283954,-0.45588593650609255,0.428357841912657,0.17362824454903603,-0.11624731682240963,-0.20233689714223146,0.7410483676940203,-0.16437510726973414,-0.8262112280353904,-0.4479595562443137,-0.3721971297636628,-0.9467187798582017,-0.7132662744261324,0.7053439114242792,0.7790956115350127,-0.7994379731826484,-0.33863831451162696,-0.36861744429916143,-0.48607037076726556,-0.2275102618150413,0.7161850347183645,0.3989858985878527,0.9594326680526137,0.44309216272085905,0.15202471939846873,-0.36119171790778637,0.23921187967061996,0.16085181199014187,0.6752041419968009,0.5209882990457118,-0.5142522589303553,-0.23201434453949332,0.5758525040000677,-0.10650707501918077,-0.13734725583344698,0.7351408521644771,-0.6697090016677976,0.24691702891141176,0.9966642679646611,0.6836213921196759,-0.8961408962495625,-0.006951312068849802,0.0686551509425044,0.23481341311708093,-0.19025347847491503,-0.14418757613748312,-0.23671857500448823,0.9930224269628525,0.45211730897426605,0.8839091686531901,-0.04650563560426235,-0.13580075791105628,0.19747998612001538,0.5874811303801835,-0.488998438231647,-0.5264318166300654,-0.6576424823142588,0.06563600245863199,-0.04535010922700167,-0.5508326850831509,-0.32608984876424074,0.209366450086236,-0.5650059874169528,0.9290173477493227,-0.9316178131848574,-0.6348066423088312,-0.35454220697283745,0.45902190264314413,0.14583187270909548,0.26688356744125485,0.3202361701987684,-0.8584548509679735,-0.1529181655496359,-0.7570864073932171,0.20249933516606688,-0.6736247814260423,-0.9968011300079525,-0.13628649292513728,-0.1226539621129632,-0.9470320772379637,0.6006396673619747,-0.3112705182284117,0.4297283450141549,-0.6458414737135172,-0.6539089749567211,-0.13009416963905096,-0.15453574946150184,0.40976547868922353,-0.774383906275034,-0.26520657865330577,0.27461247565224767,-0.568262089509517,0.44814287638291717,-0.18537534400820732,-0.7596526383422315,0.10992785729467869,0.7805798565968871,-0.9538055206649005,0.39159053610637784,-0.5410627550445497,-0.32870735274627805,-0.2883882103487849,-0.6030543083325028,0.6643873113207519,-0.8511907639913261,0.24807470152154565,0.6825363491661847,0.4827749845571816,-0.47127846954390407,0.9513437151908875,0.0631017992272973,-0.17758343880996108,0.08282873313874006,-0.2532340958714485,0.9165928051806986,-0.5788820241577923,-0.6733106020838022,-0.8824706408195198,0.15393926203250885,-0.6156660104170442,0.882498421240598,0.28414802299812436,-0.35711809201166034,0.010830610059201717,-0.3756042504683137,-0.1251951358281076,0.2948773130774498,-0.8603430618532002,0.8361931117251515,-0.7423316719941795,0.4254192253574729,0.19586696615442634,0.7845925581641495,0.05466860719025135,0.04386029113084078,-0.789935345761478,-0.26142382621765137,0.4503126605413854,-0.4487890605814755,0.4871139726601541,0.002753374632447958,0.31740935193374753,0.4735906138084829,-0.4253149498254061,0.8110388549976051,-0.13399984734132886,-0.08957945182919502,-0.6033776155672967,-0.21043780632317066,-0.029844955075532198,0.30233376612886786,-0.836327170021832,0.7093714997172356,0.7373171434737742,0.13058007461950183,0.10713452659547329,0.6539897909387946,-0.7925773430615664,-0.8037241897545755,-0.15491504268720746,-0.1104702316224575,-0.5704657137393951,-0.204784344881773,0.31226128432899714,0.8461525682359934,0.23857843782752752,-0.6382346618920565,-0.3595382343046367,0.8948305258527398,-0.9922298225574195,0.5983043797314167,0.6306103970855474,0.7446450954303145,-0.5169924912042916,0.4830631949007511,0.028423492331057787,-0.30747248651459813,0.8915128409862518,-0.6995113962329924,-0.43530661053955555,0.697082104627043,-0.872907507698983,0.8469811640679836,0.10700519476085901,0.11924408748745918,0.16051781363785267,-0.8488009930588305,0.8240032326430082,0.5923109562136233,-0.869457199703902,0.9581322511658072,0.17412662599235773,-0.8008932950906456,0.06020167050883174,-0.8412012145854533,-0.7802131664939225,-0.7166370707564056,0.6353288074024022,0.35227956995368004,0.8507539038546383,0.15561966225504875,0.39031547540798783,-0.03813590481877327,0.30194890312850475,-0.8586982674896717,-0.7329612215980887,-0.1326565658673644,-0.5827332548797131,-0.8298567156307399,0.044861295726150274,-0.5023870952427387,-0.46547173988074064,-0.8966571027413011,0.14984303480014205,0.2961566271260381,0.2990759024396539,0.6836193082854152,-0.7565785446204245,-0.9469087175093591,-0.48188792867586017,0.8364255512133241,0.8982611843384802,-0.10078466637060046,-0.5358687578700483,0.3482307870872319,0.7229482140392065,-0.657976595684886,0.8556185690686107,-0.025251296814531088,-0.9191623642109334,0.18956471653655171,0.08878880087286234,-0.6206427002325654,-0.5317727043293417,0.13018578197807074,0.021770333405584097,0.50201954273507,0.6648638276383281,-0.9272089777514338,0.05670068273320794,-0.6888242438435555,-0.4730104524642229,-0.4273938243277371,0.8541982644237578,-0.945046701002866,0.08657888835296035,-0.7862015105783939,-0.650720099452883,-0.5822487231343985,0.1644912133924663,0.5885438909754157,0.6514637321233749,0.11122660944238305,-0.4743073512800038,0.14517500577494502,-0.008949407376348972,-0.7802881598472595,0.7265481282956898,0.6748057114891708,0.1692556431517005,0.007317643146961927,-0.001532010268419981,-0.04942815378308296,-0.9137015198357403,0.9059538547880948,-0.5963380988687277,-0.7333120238035917,0.10517952358350158,0.0381063693203032,0.4760706485249102,0.5784029788337648,-0.2917755884118378,-0.998908331617713,0.3596918391995132,0.019220353104174137,-0.40162751264870167,-0.012438892852514982,0.048190074507147074,-0.5804057642817497,0.6504251882433891,-0.8550223670899868,-0.5330430809408426,-0.23140403907746077,-0.2119406769052148,0.4084688485600054,-0.1671222415752709,-0.9444189900532365,0.3808304122649133,0.5788026386871934,0.8866120339371264,-0.7244752426631749,-0.5288372985087335,0.01009339326992631,0.9561554444953799,0.5850552446208894,0.8321220590732992,-0.0977237825281918,-0.01635066932067275,-0.20635225251317024,0.44369338173419237,-0.5389022356830537,-0.1345229516737163,-0.44157804409042,-0.11928353738039732,0.580664568580687,-0.000692540779709816,0.9284837380982935,-0.105332444421947,0.34610468661412597,0.4752791887149215,0.33434978034347296,0.8029001215472817,0.3134730798192322,-0.14932255307212472,0.9225152982398868,-0.6076142922975123,0.25070232572034,0.25925313774496317,0.02115135733038187,-0.8894428317435086,-0.4155944217927754,0.8909810478799045,0.9983752034604549,-0.47012453665956855,-0.19895968679338694,-0.09032964799553156,0.29148598946630955,-0.0270614898763597,0.45552802039310336,0.6854079449549317,-0.8552327179349959,0.7208969504572451,-0.7700011474080384,-0.28066940465942025,0.3256793348118663,-0.0978851062245667,-0.7560277422890067,0.9779259725473821,0.7975174128077924,0.7995274723507464,0.9472158811986446,0.28908607782796025,0.5660862945951521,-0.8879526727832854,0.31180608086287975,-0.4055878655053675,0.9543867208994925,-0.34803421003744006,-0.8323433217592537,-0.6137238889932632,-0.2970698270946741,-0.8598547652363777,0.1263010441325605,0.5478046252392232,0.6012044455856085,0.8633291437290609,0.6903244606219232,0.600349904038012,-0.16875344514846802,0.9903120934031904,0.916848795954138,0.19651090446859598,0.9900852516293526,0.08465393865481019,-0.9771184455603361,-0.17500671418383718,0.042876086197793484,-0.08108218340203166,-0.653237062972039,-0.4116122270934284,-0.7892766240984201,0.7000736445188522,-0.8595527964644134,-0.27493883203715086,-0.7518506571650505,-0.7581500196829438,0.19657844211906195,-0.814119653776288,-0.10187788913026452,-0.004811353515833616,0.9814917524345219,-0.5794719299301505,-0.39153400203213096,-0.5290676015429199,0.7212761738337576,-0.10526400897651911,-0.3752406369894743,0.9539551665075123,-0.7036049421876669,0.2062241225503385,-0.546746535692364,0.5557325431145728,-0.8401161194778979,-0.7658624341711402,0.31084938533604145,-0.9046320267952979,-0.8999122423119843,-0.3957932726480067,0.5663444176316261,-0.534967053681612,-0.5959200565703213,-0.7900019781664014,0.5523793939501047,-0.08588451659306884,0.3060061172582209,-0.48575560189783573,0.3964452650398016,-0.8041405044496059,0.9807173828594387,-0.03294447576627135,0.42262507881969213,-0.5261033829301596,-0.38778918888419867,-0.0009755915962159634,0.1662689307704568,0.23131557600572705,-0.45374192856252193,0.23708689911291003,0.27606732537969947,0.8989099957980216,0.958034910261631,-0.579860485624522,0.06179754342883825,-0.139813051559031,0.21412614034488797,0.991702803876251,0.31674459809437394,0.40094642573967576,0.5735252471640706,0.6397193800657988,-0.2917252923361957,0.8174791848286986,-0.0839460683055222,0.30756911681964993,0.8543250225484371,-0.4407510068267584,0.6853608400560915,-0.26744321221485734,-0.1450740722939372,0.3295409046113491,-0.5026145102456212,0.2763138394802809,0.11220259452238679,0.9620032049715519,0.42079109977930784,0.5836697346530855,0.3622929430566728,0.2535855118185282,0.6981613333337009,0.6156981447711587,-0.4943309244699776,-0.9256400601007044,0.46600374998524785,0.16912131803110242,0.6197110963985324,0.399220812600106,0.43000210961326957,0.4908248670399189,-0.5951476050540805,0.6329661784693599,0.42046853341162205,0.20811849692836404,0.6987601602450013,-0.8079224638640881,-0.04406058369204402,0.22383792186155915,0.6080327918753028,-0.09884499106556177,-0.35162504808977246,0.6741870101541281,0.8621961483731866,0.9038529377430677,-0.9421738041564822,0.7546859374269843,-0.2043183664791286,-0.7309536435641348,-0.15753912925720215,-0.8733108406886458,0.039079390931874514,-0.5228179194964468,-0.0592655916698277,-0.5926274145022035,0.666392738930881,0.14154902333393693,0.8443661918863654,-0.6343636116944253,-0.5245064799673855,-0.4120823540724814,-0.37223132187500596,-0.90700524719432,0.8350834003649652,0.16705899965018034,0.19418630795553327,0.4257594319060445,0.022347713354974985,0.6686795512214303,0.042465814389288425,-0.9673319989815354,-0.7178075760602951,-0.26602269848808646,0.7949705035425723,-0.8004896622151136,-0.3315200265496969,0.5349988644011319,-0.593589412048459,0.5887955692596734,0.2728025233373046,0.7741365870460868,-0.59648124454543,0.8086055666208267,-0.40233670361340046,0.16135337064042687,-0.8809997797943652,-0.5585518591105938,0.17604115884751081,0.7370781116187572,0.1659908308647573,-0.3114956570789218,0.9946781806647778,0.38853223202750087,0.9310002056881785,0.6535366252064705,-0.46906281681731343,-0.47851424757391214,0.6592783671803772,-0.5844029006548226,0.04606177378445864,0.8923212983645499,-0.07317506754770875,-0.46064276061952114,0.06437833327800035,0.9594797366298735,-0.7411065013147891,0.5835836082696915,-0.41437280690297484,-0.24416155135259032,0.140331597533077,0.5865747006610036,0.6506391717121005,-0.20367844076827168,-0.8680066084489226,0.9793023876845837,-0.7855645166710019,0.9563818797469139,-0.2579784099943936,0.18799035111442208,-0.27593457978218794,-0.39798924466595054,-0.7929794150404632,-0.06514210207387805,0.1815442182123661,0.8193924822844565,-0.8106519798748195,0.8818199704401195,-0.7242799615487456,-0.344253771007061,-0.7365925502963364,0.8497452544979751,0.932373964227736,-0.8799141789786518,0.8584220674820244,0.5193722816184163,-0.8801139271818101,0.2880251365713775,-0.7710769693367183,0.6224425588734448,0.803175606764853,-0.6568599273450673,0.3820758471265435,-0.5491724219173193,0.08837744547054172,0.6921994341537356,0.4496308686211705,-0.5358913382515311,0.6016101222485304,-0.7177759320475161,0.450569667853415,-0.023794245906174183,0.26395590184256434,-0.4033853765577078,-0.9745591054670513,-0.6924233008176088,-0.30161250522360206,0.9673668253235519,-0.32306184666231275,-0.9412070927210152,0.11383624840527773,0.5694916979409754,-0.0873130401596427,-0.16105230059474707,0.8898309678770602,0.07690603332594037,0.6094912462867796,-0.2521041124127805,-0.3004917032085359,-0.17944569420069456,0.04872346203774214,0.38521502120420337,0.9976533423177898,0.07933525228872895,-0.5954875657334924,-0.4623197754845023,-0.646327821072191,-0.5065009114332497,-0.7936331750825047,-0.2878486244007945,-0.03738458314910531,-0.09339119447395205,-0.5253664967603981,-0.6478372355923057,0.9611784634180367,0.38159803953021765,0.7392814471386373,0.8835134343244135,0.2917138705961406,-0.7468647225759923,0.0490865814499557,0.8988603064790368,0.4071423034183681,-0.46575703425332904,0.27773009007796645,0.061543602496385574,0.2109057381749153,0.015574517659842968,-0.869927863124758,-0.7382466103881598,0.2913001864217222,0.5784115376882255,-0.8949964866042137,0.7455047606490552,-0.840028113219887,-0.1860459535382688,-0.24508141027763486,-0.7334412899799645,0.9030855065211654,0.38819191977381706,-0.5747434850782156,0.520855167414993,-0.5700864577665925,0.8520163353532553,-0.8089406481012702,0.3384774839505553,0.7465328662656248,0.6969882012344897,-0.2034402908757329,-0.9112456371076405,-0.06665733642876148,-0.9845225806348026,-0.4345747288316488,0.1785394111648202,0.7179824062623084,-0.06356335571035743,-0.2557561947032809,0.02061586733907461,-0.016903049778193235,-0.5657202540896833,0.12945573450997472,0.779001038055867,0.4328056676313281,-0.9757099435664713,-0.34174189483746886,0.5193972671404481,0.6951587637886405,0.06501049315556884,0.07769164582714438,-0.22142633888870478,0.12512491829693317,-0.8410562048666179,-0.33067090390250087,0.10079183476045728,0.9496066733263433,0.056806756649166346,-0.1781603153795004,-0.11818448873236775,0.2072584331035614,-0.4051258247345686,0.384727930650115,0.39139557676389813,-0.7557806642726064,-0.9789303871802986,-0.21737329894676805,0.21168080857023597,-0.9637481118552387,-0.1905375849455595,-0.03027744684368372,-0.1451290426775813,0.8539582439698279,-0.34417480416595936,-0.8958426481112838,0.8686675899662077,0.7368030515499413,0.6515203090384603,0.6053454428911209,0.20233387919142842,-0.30163502460345626,-0.9600666956976056,-0.6079765185713768,-0.6182967177592218,-0.099730902351439,-0.38994413521140814,0.5597463245503604,0.32497396878898144,0.14089340157806873,-0.21466201450675726,0.07802074775099754,0.9405815666541457,-0.7669108309783041,-0.31908570183441043,-0.5584230297245085,-0.21537563065066934,-0.7890874040313065,0.3044371660798788,-0.0679659927263856,-0.005377278663218021,0.14820686168968678,0.8720562420785427,-0.33284213580191135,0.30177661404013634,0.5193337509408593,-0.28586232010275126,0.876655847299844,-0.4830390065908432,-0.08062984328716993,0.6514764591120183,-0.4778055180795491,0.6447086371481419,-0.22902951063588262,-0.4663341394625604,0.4817807557992637,-0.9514613691717386,0.06352665508165956,0.2800308717414737,0.3064223644323647,0.5445658387616277,0.02810062002390623,0.7846100903116167,-0.3777212002314627,-0.03822113946080208,-0.8251569676212966,0.7138147447258234,-0.93407639907673,-0.2122588506899774,0.801862467546016,-0.3021533894352615,0.39388624858111143,-0.34094182262197137,-0.1979682850651443,-0.5024732826277614,0.014182048384100199,-0.8951918049715459,0.8783781924284995,0.04242732049897313,-0.2049010735936463,-0.8659732099622488,-0.47484883479774,-0.2578095425851643,0.4746704907156527,0.010565407574176788,0.8464008159935474,0.9066272070631385,-0.7774621229618788,-0.9967839051969349,-0.1402260367758572,0.9294516956433654,0.9330464699305594,0.2526279389858246,0.1964627904817462,0.2529765251092613,0.5492670969106257,-0.5355027141049504,-0.6663508880883455,-0.9415087117813528,-0.11195423360913992,0.6353875556960702,0.66736307926476,0.0561767490580678,-0.2746703354641795,-0.3352871900424361,0.12718347553163767,0.7446499979123473,-0.09907982498407364,-0.529057230334729,-0.9109831457026303,0.6168135046027601,0.10735008819028735,0.10363638354465365,0.37789397221058607,-0.3817024058662355,0.4080103822052479,0.9169521010480821,-0.9507839693687856,-0.9643874727189541,-0.6258129728958011,-0.058243632316589355,0.6806672466918826,-0.8824170748703182,-0.7050086879171431,-0.674893849529326,-0.5522787836380303,-0.19302610028535128,0.21783651644364,-0.44281861325725913,0.08103374345228076,-0.16330915037542582,-0.3476338400505483,0.5372121357358992,0.08662649057805538,-0.47828780533745885,-0.6110219471156597,0.13004612317308784,0.6359929535537958,0.43187361769378185,-0.5454317783005536,0.5672937710769475,-0.776492653414607,-0.0365248559974134,0.6766698532737792,-0.9192344015464187,0.9030212955549359,0.40507085295394063,-0.1978686060756445,-0.1465347371995449,0.015929554123431444,0.08747098594903946,0.08204208360984921,0.9603689508512616,0.3541808621957898,0.07951042987406254,-0.06751986686140299,-0.7589788595214486,0.5112715102732182,0.7789831641130149,-0.09376681176945567,0.8387968339957297,-0.4560821712948382,0.7927643479779363,0.018387652467936277,0.005717298947274685,-0.36185027845203876,0.23418835550546646,0.7033882583491504,0.8832285399548709,-0.19358003977686167,0.9466978558339179,-0.0045689987018704414,0.13075786689296365,0.38256107177585363,-0.07941971719264984,0.35943753737956285,0.5159688605926931,0.5300570833496749,-0.9287010882981122,0.5742067438550293,-0.45345424860715866,-0.7486296920105815,-0.6757337199524045,-0.9041016497649252,0.6884082416072488,-0.04572651581838727,0.6753932819701731,-0.010997929144650698,-0.3060226128436625,0.5239515388384461,0.8629215760156512,0.1888053398579359,0.6735441819764674,0.4563944065012038,0.9716235338710248,0.7312481920234859,0.6131724272854626,0.5202842983417213,0.6234394330531359,-0.007903801277279854,0.6696812924928963,-0.6684089507907629,0.15607395069673657,0.8822492193430662,0.8480492164380848,0.6142552345991135,-0.049905762542039156,0.21507252985611558,-0.26650168374180794,0.6907148333266377,-0.5740209389477968,-0.4007581523619592,-0.5609934679232538,0.6865443028509617,-0.3977971510030329,-0.9765867069363594,-0.34286185819655657,0.6806661458685994,0.3155190171673894,-0.5304380021989346,-0.3236060608178377,-0.3796772458590567,0.7508509089238942,0.4944804063998163,0.7356632305309176,0.24263865500688553,-0.10961199924349785,0.17629275657236576,-0.9044399023987353,-0.6275303354486823,0.532180336304009,0.6540259825997055,0.5519663775339723,-0.331570896320045,0.06266521569341421,-0.11081347335129976,-0.7488272879272699,0.7670532213523984,-0.36340861674398184,0.6174233318306506,0.140111047308892,-0.4805454704910517,-0.5924925119616091,0.7620377475395799,-0.3476811167784035,-0.029831276275217533,0.6530468077398837,-0.16625333111733198,-0.8735636724159122,-0.73782645072788,0.5415887096896768,0.03214331716299057,0.260989164467901,0.3671626215800643,0.8893391340970993,0.5510830278508365,-0.9810263393446803,-0.4902471019886434,-0.05536417616531253,0.9263217216357589,-0.7299854620359838,0.7006992930546403,-0.08286598138511181,0.3106447793543339,0.9520634417422116,-0.5124293775297701,0.7732352083548903,0.15197245962917805,0.9819401954300702,-0.8262862972915173,-0.9931397656910121,-0.7713771318085492,0.8735338454134762,-0.8221195517107844,0.11384146008640528,0.893583373632282,-0.319286544341594,0.359122259542346,0.2752541028894484,-0.7008726289495826,0.28459727903828025,0.9500090260989964,0.36878944374620914,-0.30779034085571766,-0.9669224242679775,-0.045850115828216076,-0.19361572293564677,-0.9048201953992248,-0.5517496704123914,0.9755432745441794,-0.35827339300885797,-0.75422333041206,0.3338472074829042,0.6952075348235667,-0.904954475350678,0.07072423351928592,-0.07045311434194446,0.39705634489655495,0.3355281981639564,0.9974358784966171,-0.8879470052197576,-0.7875180733390152,0.8979983231984079,-0.17892853496596217,-0.9616888388991356,-0.8566762912087142,-0.16710757231339812,-0.8908317522145808,0.42014073114842176,0.24243177054449916,-0.39447942236438394,-0.7155831437557936,0.7923412257805467,0.8517819656990469,-0.07074684090912342,0.30351895233616233,0.5876011690124869,0.42085733357816935,0.8258280125446618,-0.10246940469369292,-0.0578077994287014,-0.904056211002171,-0.05562974326312542,-0.5563267534598708,0.21749811340123415,-0.4072986920364201,0.6743578086607158,-0.34198158979415894,0.11609199736267328,0.5020905551500618,-0.7272291383706033,-0.22241787193343043,-0.19251574017107487,-0.44975016731768847,0.08176010753959417,0.5826063621789217,-0.18087400775402784,0.9507660097442567,-0.2742429221980274,0.8069677376188338,0.26296129589900374,-0.08166002109646797,0.22901076450943947,0.857437202706933,0.8544084555469453,-0.8003292102366686,0.7543085860088468,0.3422036161646247,0.979031328111887,-0.03761326242238283,-0.8753430899232626,0.592069435864687,0.1471864366903901,-0.8640156011097133,0.6556156198494136,-0.6499100895598531,0.7164518078789115,-0.6464939238503575,0.7609508675523102,-0.6910587749443948,-0.4058040422387421,0.8940846873447299,-0.2772328252904117,-0.12642043409869075,-0.16462422581389546,0.9936647592112422,0.1139306747354567,0.11188407987356186,0.7111512082628906,-0.7588286059908569,-0.6888733650557697,0.2616775995120406,-0.5107112415134907,-0.3402979029342532,-0.7625268721021712,0.6755503192543983,-0.4513971768319607,0.036862763576209545,-0.9763946221210063,0.25954752834513783,0.19025336997583508,0.041168218944221735,0.3215111652389169,-0.7283268366008997,0.6837847828865051,-0.09101748233661056,-0.2556800786405802,0.23868282977491617,-0.29101216420531273,0.8067997661419213,-0.9999268772080541,0.10843630693852901,-0.018431060947477818,0.14798071281984448,0.37761360919103026,-0.8994793058373034,-0.029184621758759022,-0.7278994582593441,0.364749469794333,0.0702465153299272,-0.6435858970507979,-0.12458608066663146,0.6491791484877467,0.5329717537388206,-0.4414666024968028,0.22830565180629492,0.22433314193040133,0.4753567799925804,0.7664087857119739,-0.6523697641678154,-0.46396080451086164,-0.3165953033603728,-0.3512239125557244,-0.8630718756467104,-0.6470253118313849,-0.892550878226757,0.27027763333171606,0.5585993980057538,-0.9489305084571242,-0.5932597415521741,0.49928999366238713,0.33351971535012126,-0.5436548688448966,0.24607620807364583,-0.31367314187809825,-0.16413716273382306,0.3129402487538755,-0.5395712237805128,-0.8875535600818694,-0.5068809906952083,-0.28561361925676465,0.9219617038033903,0.8703579432331026,0.288304403424263,-0.6426875689066947,0.8147195992060006,-0.7602573735639453,-0.8045934163965285,-0.954221866093576,-0.6154004829004407,0.9680470176972449,0.03967885859310627,-0.03293441096320748,0.5953908814117312,-0.4920093188993633,0.10951698431745172,-0.5527029014192522,0.7534283427521586,0.5852641193196177,0.45603094017133117,-0.6926298993639648,-0.004256309941411018,0.303989608772099,0.8298206590116024,0.19379728147760034,-0.5952845090068877,0.866044376976788,0.3238968076184392,-0.06114194169640541,0.6423184690065682,-0.5707383882254362,-0.6937739946879447,-0.4707393008284271,-0.9682380640879273,0.9074616525322199,-0.1078091561794281,-0.5261185145936906,-0.5038380520418286,-0.16048117727041245,0.9571139928884804,0.6563090751878917,-0.8293740991503,0.8689300739206374,-0.8282996439374983,-0.8404201436787844,0.2532351859845221,-0.4383425270207226,-0.4544893866404891,-0.9792231740429997,0.902994180098176,-0.7667481284588575,0.3547012507915497,0.10879490477964282,0.5929557858034968,0.6866813795641065,-0.18221486592665315,-0.8367853094823658,0.2680293791927397,-0.06178318941965699,0.9895630036480725,0.24691395601257682,0.757714101113379,-0.9686318775638938,0.789612093474716,-0.5027015865780413,-0.08905847650021315,0.28749068919569254,-0.47462388034909964,0.13422262016683817,-0.8484824188053608,0.527433417737484,-0.6082269558683038,0.6041684350930154,-0.4198490483686328,0.6192947337403893,-0.5949991936795413,0.19895160058513284,-0.12726738909259439,0.5427749305963516,0.5967465224675834,0.049223579466342926,-0.8703657984733582,-0.021566803567111492,-0.3905448471195996,-0.6791012529283762,-0.09235635725781322,-0.6410127263516188,0.46078864950686693,-0.47931251442059875,0.5478164777159691,-0.9388619498349726,-0.6359849842265248,-0.10860147094354033,0.36206920351833105,0.049195889849215746,-0.03200601972639561,0.970690343528986,-0.9906351426616311,-0.3696837988682091,-0.9290277464315295,-0.2723876000382006,-0.037851051427423954,-0.11888622958213091,0.41765244165435433,-0.6480562752112746,-0.311557010281831,0.5910656899213791,-0.20644848886877298,-0.8983445754274726,-0.2234809398651123,-0.44497283082455397,-0.8489892459474504,-0.9087387323379517,-0.4290311262011528,0.44238168420270085,-0.27508099703118205,0.15322775021195412,-0.6068042651750147,-0.26313954032957554,-0.1046102736145258,0.5585768772289157,0.5474894484505057,-0.04285928839817643,0.27876597736030817,0.34623322496190667,-0.547004452906549,-0.5843696747906506,0.3944024844095111,0.06653885589912534,0.6512947296723723,-0.4470194596797228,0.5168060488067567,-0.7853197231888771,-0.539242465980351,0.8767028111033142,-0.8794695278629661,0.873215717729181,0.31215038197115064,0.36879417998716235,-0.6997780008241534,0.14565019914880395,0.237277970649302,-0.6651774733327329,-0.3738554180599749,0.15717218210920691,-0.7245519091375172,-0.4292351370677352,-0.017563287168741226,0.06756596453487873,-0.6067515504546463,0.47663922468200326,0.2184309042058885,-0.03477771021425724,-0.7064110212959349,0.05629207892343402,0.7820170423947275,0.3519952245987952,0.21505178697407246,-0.8163296873681247,0.5169862504117191,0.42127413814887404,0.5623353566043079,-0.0499197905883193,0.7428246773779392,0.45059582497924566,-0.8551738611422479,-0.1176741630770266,-0.9418580690398812,0.9119907091371715,-0.8644311605021358,0.5446895663626492,-0.3999425168149173,-0.21348569868132472,0.43005816638469696,0.1713450513780117,0.9472512942738831,-0.05265992693603039,-0.2647919310256839,0.12785964692011476,-0.024489366449415684,-0.5167479440569878,0.43129348009824753,-0.6281678578816354,-0.470645310357213,0.7808646559715271,0.09321365831419826,-0.4009691858664155,0.8479540352709591,0.5826694476418197,-0.5508475294336677,-0.009502744302153587,-0.10213364008814096,-0.41673260647803545,-0.6299497364088893,0.26179657317698,0.006282704416662455,-0.19442157447338104,0.525618695653975,0.861274843569845,-0.7421935596503317,0.5506400521844625,0.19258797448128462,-0.08960688067600131,0.8840979966334999,-0.4711211402900517,0.8907270515337586,0.4582415921613574,-0.08686204766854644,0.6772067528218031,0.5813170466572046,-0.8864368824288249,-0.08465495007112622,0.5615918515250087,0.07573613943532109,-0.9645453710108995,0.6000112085603178,0.5124825742095709,-0.4754460444673896,-0.3238762468099594,-0.20388367678970098,-0.822563090827316,-0.8731429628096521,-0.3770943684503436,-0.11295651411637664,0.9974014675244689,0.7660706690512598,0.9881020891480148,-0.24672530451789498,-0.27650040900334716,0.7588335727341473,0.18339796317741275,-0.2207626048475504,-0.9006200758740306,0.5716417417861521,0.32373815635219216,0.5492433505132794,-0.6291176746599376,-0.9185284445993602,0.6268204641528428,-0.08160414500162005,-0.7884144219569862,0.3487014211714268,-0.41651167115196586,0.27357765659689903,-0.0027952389791607857,0.30026765912771225,-0.10949758114293218,0.4101742161437869,-0.1502422522753477,-0.11103775957599282,0.5459964321926236,0.1784527413547039,0.4123235493898392,-0.3966806964017451,0.3661333261989057,-0.09912657923996449,-0.8540254337713122,0.3498149337247014,0.13745546899735928,-0.39472226426005363,0.36716242460533977,-0.8833506242372096,0.02735872659832239,0.40154171269387007,0.8954760786145926,-0.08863079594448209,-0.3671285738237202,0.6598398815840483,-0.29975862987339497,0.9720467329025269,0.3777439543046057,0.7517669568769634,0.2685974845662713,0.2272065761499107,0.7359589822590351,-0.4022973603568971,0.9856580346822739,0.5852506086230278,-0.935130066704005,0.5448882589116693,0.9821129352785647,0.8857952109538019,0.5039131939411163,0.94316661125049,0.4922904148697853,0.34711270965635777,-0.11111808335408568,0.30048431968316436,0.08198072109371424,0.3442876827903092,-0.6284278267994523,0.8822547281160951,-0.2387554249726236,0.3187961154617369,-0.8816751688718796,0.05627136956900358,-0.8716914509423077,0.37197946896776557,-0.02421288564801216,0.22628576587885618,-0.9755525207147002,0.8796272445470095,-0.8997045834548771,0.41061676293611526,0.09229725645855069,0.7861398477107286,-0.4380360064096749,-0.22695205314084888,-0.6281943498179317,0.448101291898638,-0.5830380809493363,0.061324837151914835,0.10650890273973346,0.5831741136498749,0.19217726541683078,0.8685240386985242,-0.024594643153250217,0.3102186545729637,0.38796984078362584,-0.6326862731948495,-0.5521768308244646,0.22899029636755586,-0.8667860943824053,0.6401063171215355,-0.6899339654482901,-0.3111460264772177,0.2517373291775584,-0.6349478890188038,0.4827760001644492,-0.5664962786249816,0.10577269550412893,0.3096456667408347,-0.18478257907554507,0.5811778232455254,-0.6942085102200508,0.9965015044435859,-0.48914918350055814,-0.89359884057194,-0.10398693196475506,-0.260731543879956,-0.8571461038663983,0.2954800594598055,-0.37886055931448936,0.7335802940651774,-0.6365384967066348,-0.3286386807449162,-0.06577829830348492,0.6643450101837516,-0.16043717972934246,0.13535792659968138,0.799084410071373,0.5151278059929609,0.16179902665317059,0.943483505398035,-0.7657128199934959,-0.06026980420574546,-0.5331374863162637,0.7485902183689177,0.957832109183073,0.4748690356500447,-0.13698946544900537,0.07903934875503182,-0.7199559584259987,-0.4300482515245676,-0.3502717181108892,-0.7647617366164923,0.37146608997136354,0.9214297407306731,-0.7906050579622388,0.8315312508493662,0.3495040340349078,-0.3687474485486746,-0.05261294124647975,0.5057375449687243,0.30451252358034253,-0.8144491291604936,-0.2308741812594235,-0.4988765032030642,-0.8591541186906397,0.4810337359085679,-0.2771994601935148,-0.6245516710914671,0.9556853389367461,0.2804000270552933,-0.054370926693081856,0.17670967848971486,0.9026108961552382,-0.38688469491899014,-0.2537598144263029,-0.9398465533740819,0.36523663392290473,0.2049574819393456,-0.7285477207042277,-0.39106694562360644,0.9298585713841021,0.3324086512438953,-0.4588477062061429,-0.5736219831742346,-0.49220696510747075,-0.9817762551829219,-0.4323610598221421,-0.17845051316544414,-0.3238807315938175,0.036596470046788454,0.3357176464051008,0.7793122357688844,-0.3649067925289273,0.6626084516756237,-0.2910960912704468,0.10200008004903793,0.5596361397765577,-0.49807673785835505,-0.6550056315027177,-0.9081476712599397,0.1460583247244358,-0.613318981602788,0.4653662131167948,-0.36465200828388333,-0.34249867498874664,0.0698536355048418,0.1499497750774026,0.3075362630188465,-0.194185521453619,-0.6665297290310264,-0.2717440281994641,-0.0006274683400988579,0.4102254854515195,0.909334558993578,0.4799769935198128,0.7609128104522824,-0.5197586095891893,0.7686958159320056,-0.6585562340915203,0.0579365654848516,0.005347325000911951,0.9959543785080314,0.9260454215109348,-0.2619869043119252,0.059240685775876045,-0.062014139257371426,-0.509157101623714,0.09672639658674598,0.8524710671044886,0.6890873778611422,-0.41277592023834586,-0.8533890503458679,-0.5180036635138094,-0.3435569331049919,0.5709809260442853,0.6693310630507767,0.5179274082183838,-0.27865399047732353,-0.43413921957835555,-0.40192900598049164,-0.2687390516512096,-0.5227534691803157,-0.8683567037805915,0.1362631623633206,0.8940716180950403,0.26602133037522435,-0.7735839006491005,-0.20058941934257746,-0.206737928558141,0.9227541284635663,-0.8943405300378799,-0.1292638871818781,0.35631083650514483,-0.23506471002474427,0.5906666154041886,0.2574012433178723,-0.26328838570043445,0.33778530126437545,0.8840512046590447,-0.39180109091103077,0.9803183386102319,0.48787200171500444,-0.6732958038337529,-0.5860388744622469,0.4532944578677416,0.5084104496054351,-0.34285699063912034,0.08180992072448134,0.43169111013412476,-0.21171442093327641,-0.23248780518770218,-0.3679395285435021,0.49024853575974703,-0.47453866293653846,-0.7711461549624801,-0.6346444971859455,-0.8390660937875509,-0.9185260282829404,0.8546496033668518,-0.6815730296075344,0.29905818589031696,-0.7674170667305589,-0.7177413869649172,-0.9970000246539712,0.34937332244589925,0.6542360596358776,0.07821783050894737,-0.3514242945238948,-0.9798748656176031,-0.5379220736213028,-0.8440888421609998,-0.0804197546094656,0.007083847187459469,-0.16176143614575267,0.029466274194419384,0.35471402620896697,0.8141003297641873,0.9394385530613363,-0.7590914973989129,0.5013043684884906,0.19262508302927017,0.4692454328760505,-0.6920510013587773,0.541102051269263,-0.9566836189478636,0.33197178691625595,0.1300296662375331,-0.8780351649038494,0.8487562113441527,-0.6915592141449451,-0.9725081739015877,0.3770285709761083,0.9214810486882925,-0.9476969600655138,0.43585636001080275,-0.32814459362998605,-0.5864759436808527,-0.1993841496296227,0.019618963822722435,-0.4534374796785414,0.5088901869021356,-0.6134355855174363,0.8394739981740713,0.15502759348601103,0.3836758006364107,-0.7000254187732935,0.16273459838703275,0.3713657781481743,0.6494456734508276,0.04993057530373335,-0.30195708805695176,-0.7345404457300901,-0.7150847064331174,0.7223863997496665,0.5070659006014466,0.4355414039455354,0.2886811466887593,-0.938038578722626,-0.38290187157690525,-0.46784236934036016,0.350447298027575,0.40297885378822684,-0.8552252133376896,-0.5883310232311487,0.422415264416486,-0.18159281415864825,-0.9855137458071113,-0.956415319815278,0.6150733586400747,-0.7442156537435949,-0.029936338774859905,0.16783449845388532,0.4173677586950362,-0.44290980510413647,-0.07147228717803955,0.8351152995601296,-0.2986622382886708,-0.7565767862834036,-0.252723699901253,0.03392095770686865,0.5133667392656207,-0.22948231734335423,-0.0678302301093936,-0.33991716988384724,-0.15502642700448632,-0.9855130561627448,0.20161355286836624,-0.8626136439852417,-0.9006608873605728,0.3690381497144699,-0.8384479777887464,0.7182869762182236,0.09219815442338586,-0.6228419826366007,0.028409382794052362,-0.0022838423028588295,-0.5382935581728816,0.05251647997647524,0.8267892636358738,0.09324439615011215,0.28192187240347266,-0.1670688446611166,-0.9728160039521754,-0.4956325483508408,0.8154312819242477,-0.7349647632800043,0.8680506870150566,0.1258379346691072,0.5664453925564885,0.9768730462528765,-0.5420796158723533,-0.13254525046795607,0.38876342261210084,-0.775483625009656,0.7009862400591373,-0.28202441753819585,-0.5019266558811069,-0.2592039806768298,-0.8461620127782226,-0.3485576002858579,0.7506601419299841,0.8106655129231513,-0.28719277353957295,0.05218195728957653,0.494706270750612,-0.07648113509640098,0.7858300129882991,-0.05107927089557052,0.8588706431910396,0.3984616589732468,-0.8367476789280772,-0.39959752280265093,-0.3808766156435013,-0.36203553015366197,-0.5159982349723577,0.09306618617847562,0.2231691237539053,-0.887146532535553,0.22010871674865484,0.6779412738978863,0.1590404654853046,-0.26329386746510863,-0.6741250483319163,0.16124580148607492,-0.32614903477951884,0.162961192894727,-0.5673853266052902,-0.5168282291851938,0.4723839098587632,-0.39517157757654786,0.5817693592980504,0.6708821021020412,0.8687899149954319,-0.6979335807263851,-0.7211731770075858,-0.30557937175035477,0.975302193313837,-0.01746111735701561,-0.040890691336244345,0.3521133381873369,-0.20543072698637843,-0.3413782394491136,-0.7569471392780542,-0.03479190682992339,-0.15230642585083842,0.6164873791858554,-0.5942345880903304,-0.25740098487585783,0.429142992477864,-0.16235570842400193,0.8923797700554132,0.32093529123812914,0.480725659057498,0.48340172739699483,-0.20486861653625965,0.8392270146869123,-0.5010937312617898,0.056349233724176884,0.42770878644660115,0.747855116147548,-0.386824001558125,-0.9747418435290456,-0.3205351415090263,0.8310774271376431,-0.512785698287189,0.9895944227464497,-0.6967101297341287,0.89942721510306,-0.5487652677111328,0.704967187717557,0.8913071257993579,0.6868817461654544,0.8536673742346466,0.36784922052174807,-0.3445723275654018,-0.05741356499493122,-0.7756497142836452,-0.5501747946254909,-0.08827618649229407,0.514966004062444,-0.20417416421696544,0.646547787822783,-0.8030572235584259,-0.1290695844218135,-0.6604886697605252,-0.4205670733936131,0.5557372965849936,-0.31866741087287664,-0.7734217834658921,0.8472020966000855,-0.45821826811879873,-0.1857028855010867,-0.6620312128216028,0.32261328771710396,-0.6889602434821427,-0.5650042546913028,-0.8585934527218342,-0.3332549259066582,0.20802432531490922,-0.25350097101181746,-0.9432420302182436,-0.2411281457170844,-0.07526553049683571,0.6776309818960726,-0.6456771907396615,-0.12455960921943188,0.44999145856127143,0.5385395847260952,-0.5706067155115306,0.6011166637763381,0.15522379195317626,0.43622108921408653,0.6739331400021911,-0.28409965662285686,-0.01199569832533598,-0.2497245417907834,0.9845211994834244,0.8693350120447576,0.4233207320794463,0.8701999671757221,0.9971330217085779,0.968983524478972,-0.9675001511350274,-0.5800467431545258,-0.1179118761792779,0.3984980476088822,0.14309793431311846,0.36948755430057645,0.8243625634349883,-0.2565301088616252,-0.00707330321893096,0.2093029636889696,-0.1329256584867835,0.4333509113639593,-0.4051766265183687,-0.3503524186089635,0.5102678230032325,-0.11818832717835903,0.8711784877814353,-0.21871460415422916,0.09878457430750132,0.6600956036709249,-0.23820610903203487,-0.7339517367072403,-0.046735243406146765,0.5574367004446685,-0.5765003762207925,0.5716038844548166,-0.06430415529757738,0.4258443736471236,0.4780257367528975,0.6825093068182468,0.25582501478493214,0.81718605523929,-0.9749305858276784,-0.596910344902426,0.17787611717358232,0.9595684674568474,0.07188347401097417,0.2485207966528833,0.19297686219215393,-0.6838661772198975,-0.11392874084413052,-0.7675278787501156,-0.38339049462229013,-0.05980436410754919,0.6559403194114566,0.3852381957694888,-0.717172218952328,0.8643726413138211,-0.19434462394565344,-0.8935466296970844,0.6843924666754901,-0.21124844020232558,0.49953600857406855,0.19996510492637753,0.45127391070127487,0.2665434228256345,-0.09180752001702785,0.21550896810367703,-0.0015576183795928955,0.21155383018776774,0.16509608551859856,-0.10848695645108819,-0.6928705046884716,0.8285860186442733,0.33273253636434674,0.1664709676988423,-0.1586119867861271,-0.9055368108674884,0.8808609237894416,0.35289348429068923,-0.4542679307051003,0.04835148900747299,-0.6797142243012786,-0.8062996133230627,-0.06706940522417426,-0.46522128116339445,0.39834860106930137,-0.028221082873642445,-0.9863434904254973,-0.8738397913984954,0.04353815829381347,-0.2461264356970787,0.4693459328263998,-0.41868215845897794,0.9121991777792573,-0.7618295615538955,0.34805646911263466,-0.985407994594425,-0.6426381967030466,-0.2769634313881397,-0.3735298765823245,0.07245202362537384,-0.37457901425659657,0.6278744880110025,-0.2876256317831576,-0.22587051801383495,0.24826208595186472,0.5698348744772375,0.11147448886185884,0.4397662435658276,-0.46466050017625093,0.06576239131391048,-0.4974506162106991,-0.47904624976217747,0.9766037054359913,-0.6780433184467256,0.06459702691063285,-0.4168928265571594,-0.9230889994651079,-0.2062405850738287,-0.7178982286714017,-0.26746890461072326,0.7820620485581458,0.5356529746204615,0.9279943215660751,-0.10579850571230054,-0.7146461987867951,0.28643273189663887,0.42877263436093926,-0.5869875443167984,-0.5153580047190189,0.9234250085428357,0.9083953783847392,-0.7653349256142974,0.5188190978951752,-0.4103934518061578,-0.20253710029646754,0.8116305801086128,-0.8105927901342511,-0.7124312333762646,-0.3738903682678938,-0.011274600867182016,0.6980507909320295,0.12238145200535655,0.7277753371745348,0.2281878343783319,-0.9830780490301549,0.6929013440385461,-0.2552816905081272,-0.7547856410965323,0.250089961104095,0.9584687645547092,-0.1961927367374301,-0.491816399153322,0.5183702660724521,-0.43113484559580684,0.7925576348789036,0.019799158442765474,0.3464487069286406,-0.8167179338634014,0.5394272627308965,0.2970058936625719,-0.4170685592107475,0.7505046771839261,-0.6859361589886248,-0.9204940288327634,0.23680453561246395,-0.8434093482792377,-0.9043636308051646,0.49635780369862914,0.9514763858169317,0.39471594570204616,0.6217362391762435,-0.4873460056260228,-0.9000584254972637,-0.6623331001028419,0.04483041865751147,0.03718265937641263,-0.5881742448545992,-0.03241638420149684,0.6784307803027332,-0.6423558965325356,-0.6454990291967988,0.9522899664007127,0.5440699504688382,-0.9589955313131213,-0.07155596883967519,0.6154994773678482,-0.011059222277253866,0.33489705389365554,-0.21697512175887823,-0.940012366976589,-0.8597029186785221,0.5452854153700173,-0.5235719080083072,-0.02261297218501568,0.06991861574351788,0.8459671000018716,0.17956386925652623,0.511101774405688,0.13843248272314668,0.33065667375922203,-0.027392185293138027,-0.9831645688973367,0.8239098582416773,0.2405923088081181,0.07627620315179229,0.23671905836090446,0.20011274330317974,0.8128237812779844,0.47089242935180664,0.8971332311630249,-0.8799220537766814,0.3357167774811387,0.28410856518894434,-0.12350669084116817,0.6626402046531439,-0.04226292343810201,0.25294238002970815,-0.6879661018028855,-0.7520575723610818,-0.9661541786044836,-0.567393806297332,0.8847808497957885,-0.4242678163573146,-0.5215927110984921,-0.5302932853810489,0.43828261736780405,-0.2488157544285059,-0.7001321078278124,-0.3817379539832473,-0.8616183842532337,0.13806541729718447,-0.8721567103639245,0.05688099702820182,-0.026724320370703936,-0.8832271308638155,0.2340461271815002,0.16885313484817743,-0.001954497769474983,-0.9948137472383678,0.8593026660382748,0.7022371399216354,0.8239375418052077,-0.36346620647236705,-0.7805282301269472,-0.6844600001350045,0.42873525619506836,0.24543488956987858,-0.7824396216310561,0.7806741278618574,0.9582195184193552,0.9377778340131044,-0.5546047063544393,-0.031193922739475965,0.9995408486574888,0.6833289456553757,-0.8824458848685026,0.5556802055798471,0.41569260228425264,-0.09137357817962766,-0.05135018052533269,0.012006158009171486,-0.14201623667031527,0.06627863692119718,-0.5287131173536181,0.004051301162689924,0.6664935452863574,-0.27356777619570494,0.7550585558637977,-0.847825507633388,-0.934062133077532,-0.6996463546529412,0.7439863197505474,-0.694816758390516,-0.5489324638620019,-0.022672722581773996,0.44482982344925404,-0.02787335030734539,0.6885931855067611,-0.9137169350869954,0.6505097495391965,0.7627400574274361,-0.3196784504689276,0.39266463415697217,-0.374527495354414,-0.5650758747942746,0.5932129272259772,0.4246887322515249,-0.6779634198173881,-0.3348329602740705,-0.6717524481937289,-0.612302656751126,0.9418647643178701,0.8594437362626195,-0.6491604568436742,0.9865468153730035,-0.0985774458386004,-0.9670155844651163,-0.3838972211815417,0.6406915499828756,-0.5723656918853521,0.6383404703810811,-0.3679839367978275,0.12538075959309936,-0.9810716393403709,0.09205618128180504,-0.185060974676162,0.3980652284808457,0.14570739958435297,-0.10962063865736127,-0.009880335070192814,0.9097632179036736,0.8467444684356451,-0.4239858970977366,-0.5258487048558891,0.43608180060982704,0.9154286957345903,0.3143724463880062,0.7454871186055243,0.147881131619215,-0.8829081240110099,0.6447856309823692,0.012782851234078407,-0.2411538171581924,0.46518192579969764,-0.3415112844668329,-0.6000147052109241,-0.5530829336494207,0.872828065417707,0.5618182965554297,0.1370273637585342,0.8676725495606661,0.704591931309551,0.6633942550979555,-0.6342917904257774,-0.9304733606986701,-0.2472655507735908,0.02815791592001915,0.40134186716750264,-0.6796350535005331,-0.5092824571765959,-0.8948050760664046,-0.8092878949828446,-0.5404339293017983,0.6271430496126413,0.5520008900202811,-0.6200879327952862,0.6075429036282003,-0.5552029274404049,-0.6561337751336396,0.3086035382002592,0.9241615193895996,0.42093802662566304,0.9723795782774687,0.6039497684687376,0.5525772497057915,-0.6533473385497928,0.88007927313447,0.6913245329633355,-0.3017078172415495,-0.4129880303516984,0.7953129047527909,-0.3938610954210162,0.2718057483434677,-0.4488804801367223,-0.7246133126318455,0.3685164721682668,0.5848835399374366,-0.9822336421348155,-0.6263067657127976,0.1085554207675159,-0.06046186527237296,0.6170810689218342,0.04462263872846961,0.031160207465291023,-0.16746145160868764,-0.8927367124706507,0.9488800223916769,0.6263545490801334,-0.9009380545467138,-0.9496122300624847,-0.8511941847391427,0.4782928158529103,0.41114979051053524,-0.16233602073043585,-0.5918900649994612,0.6046825451776385,0.6433305377140641,0.361663531512022,-0.6940970574505627,0.34856062661856413,-0.033365658950060606,0.42382066091522574,0.5654726210050285,0.08646372379735112,0.9751367610879242,-0.5981637123040855,-0.07785567967221141,-0.18484040535986423,0.577730166260153,0.5092375236563385,-0.1603619852103293,0.41219247365370393,0.8419937221333385,0.998482636641711,0.7724859700538218,0.026614402886480093,-0.7126279738731682,0.44436178263276815,-0.9541324544698,0.5173022905364633,0.17891283566132188,-0.6787837692536414,0.17096854327246547,0.18350602267310023,-0.7569167986512184,-0.7720810822211206,-0.17088245321065187,-0.9345374442636967,-0.90077487193048,0.2253196113742888,0.8643121114000678,0.984868158120662,-0.6762276738882065,0.9778220462612808,0.4011736405082047,-0.020803370513021946,-0.7385827987454832,-0.5081047103740275,0.9472325895912945,-0.9827809501439333,0.4479415318928659,0.016803001053631306,0.8021578416228294,-0.27019626274704933,-0.8502498548477888,-0.4679289790801704,-0.9866516208276153,0.018252700567245483,0.25369736971333623,0.8465175572782755,0.6194805935956538,0.4943569228053093,-0.5390916136093438,-0.7549188579432666,-0.6140347640030086,-0.8743967884220183,-0.24623977579176426,0.3330291695892811,-0.2792627466842532,0.897015237249434,-0.7079511084593832,0.7259997054934502,0.8006762457080185,-0.9983631772920489,0.21184751484543085,-0.782474004663527,-0.9431173312477767,-0.4632183783687651,-0.028781224507838488,0.4280407251790166,0.9348435206338763,0.7068805578164756,-0.19848143495619297,-0.49647726165130734,0.6712992331013083,-0.8590371967293322,0.4149388587102294,-0.010781101416796446,0.8968157665804029,-0.004585039336234331,0.8374961335211992,0.6136138746514916,-0.9694651537574828,0.9529732777737081,0.761557949706912,-0.8402626235038042,0.5150701091624796,-0.0858852001838386,-0.39914744114503264,0.46378450840711594,0.14719915483146906,-0.09653554717078805,0.2961007561534643,-0.6055873543955386,0.9266315205022693,-0.05257335351780057,-0.29833955876529217,0.5873597702011466,-0.2461568065918982,-0.8899029297754169,0.6755497590638697,-0.23973194276914,-0.815068316180259,-0.5173220033757389,0.6199962389655411,0.970557851716876,0.6788274990394711,0.5164568987675011,0.0027930280193686485,0.9994187131524086,-0.18903231620788574,-0.39649213710799813,0.6809863317757845,-0.5107243829406798,-0.01513652317225933,-0.02931372681632638,-0.11940334318205714,0.7664424637332559,-0.9473193022422493,-0.4033652921207249,-0.8722561085596681,0.40282409032806754,0.42549030017107725,-0.689277810510248,0.9734162334352732,0.5869253501296043,0.30983947636559606,-0.2523379842750728,0.564981808885932,-0.5354128871113062,-0.4798401305451989,0.8504723021760583,-0.6567697911523283,-0.22839259449392557,0.595501706469804,0.27679653698578477,0.36699868366122246,-0.6896488987840712,0.6806663060560822,0.20242345612496138,0.539644590113312,0.5044194599613547,-0.49626998184248805,-0.6525947102345526,-0.8266215450130403,0.9239176516421139,0.34580890368670225,-0.8642768673598766,-0.5247597866691649,-0.6749768392182887,-0.446798755787313,-0.5299753760918975,0.14220501203089952,0.530764423776418,-0.7234576218761504,-0.9805166539736092,0.5511333970353007,0.32791453739628196,0.17358038015663624,-0.21356161823496222,-0.5928338086232543,-0.12545782793313265,0.7591324904933572,0.21745331306010485,0.9830368016846478,0.4632748938165605,0.5410195728763938,0.765013272408396,-0.667552447412163,-0.025786762591451406,0.5397062222473323,0.4582527936436236,0.07911831047385931,-0.4383316715247929,0.9671889771707356,0.10019951406866312,-0.6042552976869047,0.044944739900529385,-0.949012529104948,0.8220959017053246,0.8189331921748817,-0.1160243833437562,-0.35594805609434843,0.8801774815656245,-0.8571504973806441,0.18212181748822331,0.7076843664981425,-0.3798900074325502,0.0875908536836505,-0.6154553587548435,-0.6198602071963251,0.1027279063127935,0.7676331358961761,0.4480788134969771,-0.02342376159504056,-0.153226257301867,0.5777314491569996,0.35987831419333816,0.6238793465308845,-0.9002679311670363,-0.4368177205324173,0.4635894261300564,0.9564895615912974,0.37993022333830595,-0.40623774426057935,0.4170330008491874,-0.18593327514827251,0.4101569131016731,-0.37873741518706083,-0.6071307114325464,0.962282766122371,0.6338229677639902,-0.6586565664038062,0.24656135914847255,-0.10601122118532658,0.8099991083145142,0.5065675326623023,0.8123905095271766,0.3421454303897917,-0.708332727663219,-0.8246420403011143,0.31216565566137433,-0.8623202093876898,0.3745937175117433,-0.9532259679399431,-0.6921672304160893,-0.7516558873467147,0.2165913642384112,-0.9373687449842691,0.8465560483746231,-0.3674816833809018,-0.0498768868856132,0.12822876684367657,-0.5231075207702816,0.22588514210656285,0.4597710333764553,-0.7716702972538769,0.10428639780730009,0.49589178478345275,0.11262910580262542,0.16447667172178626,-0.05714778648689389,-0.030615902971476316,0.43855587439611554,0.04336958471685648,0.025188198778778315,0.12043262738734484,0.31973252166062593,0.11540559493005276,-0.9468310056254268,0.8191981241106987,-0.29963493859395385,0.6776447324082255,-0.5999977439641953,0.42371033504605293,-0.7351888418197632,-0.9338707369752228,0.3853867817670107,-0.764923024456948,-0.8785343528725207,0.1050218902528286,0.03600612096488476,0.3106172429397702,-0.1645658053457737,-0.08407176146283746,-0.22524043172597885,-0.4195397710427642,0.04615890188142657,-0.23893635533750057,0.2428964995779097,-0.8716506422497332,-0.48196543799713254,-0.11267136735841632,-0.6476386566646397,0.3683100091293454,0.36622010730206966,0.04414351377636194,0.10505274776369333,-0.9499648725613952,0.36412808299064636,-0.9263205719180405,0.6961022368632257,0.8216358674690127,0.38431780179962516,-0.3567239847034216,0.7985724462196231,-0.948789136018604,-0.9053046382032335,-0.5645353756844997,-0.8606484527699649,0.9833068400621414,-0.04460617760196328,0.6618975424207747,0.017757366877049208,-0.1398931979201734,0.8545773541554809,-0.5788526944816113,0.2937474502250552,-0.6314949383959174,0.3155695223249495,0.7197694792412221,-0.5908984537236392,0.1144626084715128,0.09807482454925776,-0.10169804142788053,-0.18400842882692814,-0.7006331463344395,-0.7201679269783199,0.4861749289557338,-0.8720439421012998,-0.8168685617856681,-0.8639673013240099,0.2716907490976155,0.9425952583551407,0.18913837522268295,-0.8338108863681555,-0.7881064522080123,-0.3898365101777017,0.4781069024465978,-0.9126117783598602,0.9579765987582505,0.20821702713146806,0.5726755731739104,0.3315172637812793,0.1444058925844729,0.6271686349064112,0.7239620434120297,-0.5341257373802364,-0.7325581121258438,0.6361333862878382,-0.464295475743711,-0.12390439305454493,0.8097593900747597,-0.4701623059809208,-0.6919712303206325,-0.9518681331537664,0.6756774494424462,-0.10270936880260706,0.9949081246741116,0.6427514487877488,-0.16557008307427168,-0.26233659917488694,0.27515002340078354,-0.9352602316066623,0.3905984233133495,0.8639638894237578,0.280783852096647,-0.5204641879536211,-0.29368466464802623,0.5686138779856265,0.4598336322233081,0.68493427708745,-0.3801387823186815,-0.9015707597136497,-0.7305535166524351,0.72882075374946,0.4101243116892874,-0.498865048866719,-0.5310076870955527,0.01879682531580329,0.7063602167181671,-0.5815142979845405,-0.3499477095901966,-0.4545849612914026,-0.07837895723059773,0.5055948444642127,-0.8557662717066705,-0.9773847060278058,-0.776567670982331,-0.01831627869978547,-0.3897082367911935,-0.43757447646930814,0.3612413709051907,0.7054741042666137,0.9607563242316246,0.8381772097200155,0.6097375908866525,-0.07443184079602361,-0.19300489639863372,0.15394541760906577,0.7971455198712647,0.03728981362655759,0.6927152900025249,0.7319436431862414,0.28661691211164,0.279145170468837,0.22443421464413404,0.001726322341710329,-0.5487081413157284,-0.3223138926550746,0.8439233736135066,-0.7728651277720928,0.8801605678163469,0.4620672990567982,-0.6670770137570798,0.11444211658090353,0.3205073159188032,0.8848806209862232,-0.198640292044729,-0.06820357311517,0.7935785027220845,0.2670004041865468,-0.2910390058532357,0.00859204214066267,0.041609999258071184,0.8505495768040419,-0.49056615121662617,0.10627790726721287,0.9803901077248156,-0.041112346574664116,0.625124632846564,0.6601585829630494,0.2875971491448581,0.6281069819815457,-0.15301205636933446,-0.8326842156238854,-0.9690211587585509,0.7556213401257992,-0.7091231620870531,0.055010139010846615,-0.9884347878396511,0.8283615671098232,-0.868323415517807,0.890828282572329,0.5468907249160111,0.2568539436906576,-0.2803736631758511,0.37646274315193295,0.4004017445258796,-0.5254174740985036,0.7238666685298085,-0.9862638199701905,0.14074528077617288,-0.8005242617800832,-0.9524109256453812,0.46879033697769046,0.7943817730993032,0.5660559753887355,0.27175247203558683,0.4009380335919559,0.21952509135007858,-0.9532783799804747,0.1609241315163672,0.7370392549782991,0.9094599201343954,0.5735622048377991,-0.5309596238657832,-0.8756489306688309,0.6498426129110157,0.62649355083704,-0.9477550080046058,0.2656738022342324,0.8012325628660619,0.18189074425026774,-0.4733081664890051,0.23169532883912325,0.5214918805286288,0.019780531525611877,-0.30812958627939224,0.21703971875831485,-0.985226072371006,0.19926967937499285,0.35456209955736995,-0.567814455833286,-0.5898436629213393,0.050556108355522156,0.12323369551450014,-0.017694187816232443,0.29428807040676475,-0.028312784153968096,-0.77587272785604,-0.5491184862330556,-0.24283425137400627,-0.7621356891468167,-0.4222466293722391,0.5155866974964738,0.7066346793435514,0.22134536551311612,-0.6458799699321389,0.14305135142058134,-0.4049797235056758,0.6758129424415529,-0.7799221617169678,0.050352735444903374,-0.5836691572330892,-0.5836857878603041,0.15965027967467904,-0.8925421652384102,-0.8425550768151879,-0.5704532046802342,0.02045762725174427,-0.26717343367636204,-0.5128377447836101,-0.6147648389451206,-0.40939477179199457,0.8646393581293523,0.34738436806946993,0.3942692093551159,-0.1652643447741866,0.579806333873421,-0.28241312876343727,-0.034464354161173105,-0.8038986884057522,0.31852083280682564,-0.47111389599740505,0.5227764220908284,-0.31729476526379585,-0.20255726855248213,-0.6317928852513433,-0.8214823813177645,0.9857164872810245,0.7580468039959669,0.3811638578772545,-0.5100373751483858,-0.7697607944719493,0.940641860011965,-0.041060921270400286,0.5269770226441324,0.4371458012610674,-0.11199776409193873,0.6048150942660868,-0.007433503866195679,0.5547654824331403,0.0989353102631867,0.12551331100985408,0.5743329925462604,0.821462532505393,0.687392639927566,0.9190472061745822,0.8694300861097872,-0.24304029578343034,0.9157068813219666,-0.5105663440190256,-0.21690808003768325,0.3972821868956089,-0.41937917983159423,0.8430714574642479,-0.8113753763027489,-0.8188566286116838,-0.06892152084037662,0.7023165007121861,-0.2714834241196513,0.43204603623598814,0.2107425658032298,-0.1295314496383071,0.7999111874960363,-0.3013981757685542,0.3696797131560743,-0.44093605177477,-0.8974640066735446,0.9194332449696958,0.30791249219328165,-0.7848460213281214,-0.08623736957088113,0.959917364642024,0.4970864672213793,-0.8237904710695148,0.9591913591139019,0.6498670591972768,0.09526982298120856,0.5427976180799305,-0.2880581161007285,-0.9235414904542267,-0.55347690731287,-0.4967756397090852,0.2916701128706336,0.08461391134187579,-0.5279544238001108,-0.06236099824309349,-0.23674876429140568,0.40633190842345357,0.4564966605976224,-0.3897356390953064,-0.9903706065379083,0.3166650580242276,-0.690197563264519,0.7563055888749659,-0.22127581806853414,-0.15381353255361319,0.44470324693247676,-0.4263350060209632,-0.6813773731701076,-0.8443500967696309,0.15317436819896102,0.6534591559320688,0.6177521380595863,0.2897985647432506,0.39634600980207324,-0.4686143659055233,0.6902045221067965,-0.8817091579549015,-0.16394206462427974,-0.8671535104513168,-0.7592111891135573,-0.3067491268739104,0.5210922262631357,0.8574884724803269,-0.17171247769147158,0.269309907220304,0.07859281543642282,-0.13159020524471998,0.6101240292191505,0.6087126387283206,0.005672474857419729,0.7604434941895306,0.7908584056422114,0.4814379676245153,0.060992083977907896,-0.33294408582150936,0.14550716476514935,-0.7007359629496932,0.6646858067251742,-0.9693177514709532,-0.7325901947915554,-0.21723526576533914,0.15542811481282115,0.3185881753452122,0.7949333530850708,-0.63684495491907,0.41394237289205194,0.037262295838445425,-0.9680269374512136,0.6132870339788496,-0.9705422450788319,-0.21249477518722415,0.38998417742550373,-0.9794662110507488,0.3358782413415611,0.19061118457466364,0.10350095294415951,0.04650399228557944,-0.40250712307170033,-0.7755630575120449,0.43268902925774455,0.9389850832521915,-0.7288573267869651,-0.9237892660312355,0.6060429196804762,-0.24302600184455514,0.6796720884740353,0.8677127868868411,0.08262448851019144,0.5799913867376745,0.7632262976840138,-0.3965155929327011,0.5351313590072095,0.5354880434460938,-0.891697240062058,-0.81705122301355,-0.5945985149592161,0.7319067451171577,-0.20658192224800587,0.7334076706320047,-0.6674098600633442,-0.7752105589024723,0.8864262499846518,0.6855018250644207,0.3874859707430005,0.9106507548131049,-0.5836655208840966,0.9650922603905201,0.015458835754543543,-0.10981784062460065,-0.8700068276375532,-0.4991509937681258,0.4202492539770901,-0.9093407671898603,-0.7837984571233392,0.9907540073618293,-0.15613940497860312,0.22485999669879675,0.563627281691879,-0.02656854037195444,0.3505018795840442,-0.22693379782140255,-0.0027893404476344585,0.17019899794831872,-0.9898134330287576,0.06479394715279341,-0.8402963019907475,-0.5248294435441494,-0.4424064289778471,-0.3267945107072592,-0.5691810119897127,-0.9490345851518214,-0.09502643020823598,-0.7533537009730935,0.40697264252230525,-0.38742385199293494,0.254913283046335,0.45942967757582664,-0.09054137952625751,-0.5225187740288675,0.10311991441994905,-0.5959186255931854,0.23067099088802934,0.6700168359093368,-0.48189172986894846,-0.4696016605012119,-0.16086249239742756,0.7830368424765766,-0.8764401925727725,-0.19758631335571408,-0.9447820293717086,0.3210400906391442,-0.4023806778714061,-0.6159480097703636,-0.9894203343428671,-0.11722580250352621,0.19370366632938385,-0.9933234332129359,-0.13506020652130246,0.4292809311300516,0.2476427131332457,-0.21917203767225146,-0.3924396582879126,-0.47426406387239695,-0.11118435021489859,0.10470606340095401,-0.4686501952819526,-0.4449424999766052,0.6922011864371598,0.7154682464897633,0.8394967210479081,0.10353006655350327,0.7169602285139263,0.21328998496755958,0.7688206774182618,-0.9084283718839288,0.5339325852692127,0.2833936531096697,-0.9704842325299978,0.7151373424567282,-0.6793183921836317,-0.1609195340424776,-0.6726267002522945,-0.5311664561741054,0.7953108353540301,-0.4879718949086964,-0.390922071877867,0.06318160053342581,0.3902591597288847,-0.6319844350218773,0.6845921715721488,-0.662325045093894,-0.8101424463093281,0.30688591953366995,-0.6468295860104263,0.4675299655646086,0.4734248137101531,0.27338122483342886,0.8756402744911611,0.3155819345265627,0.4108859193511307,-0.35360813653096557,-0.07158495159819722,0.38025329262018204,0.18682105094194412,-0.9686701130121946,-0.007767254952341318,-0.7922495440579951,0.7091309688985348,0.7172024152241647,-0.11706374865025282,0.6500069913454354,-0.736843612510711,0.31700889440253377,0.18094046134501696,-0.8961521959863603,0.2999174208380282,-0.8970067487098277,0.8680892470292747,0.09138670051470399,-0.5556120947003365,0.6162100955843925,0.5955107714980841,0.3467863565310836,0.004713858012109995,0.7340793563053012,-0.4941300908103585,-0.4031961881555617,-0.08774605672806501,0.5572370919398963,-0.9089989010244608,-0.4097638688981533,0.499540017452091,-0.7039947551675141,0.3045814395882189,-0.1184516679495573,0.9561655418947339,-0.6553369266912341,-0.26250928826630116,-0.5292161167599261,-0.26913499366492033,-0.37547514447942376,0.804405365139246,0.3419775031507015,-0.9386576125398278,0.6319511258043349,-0.49390664184466004,-0.6081282305531204,-0.7727168346755207,-0.45757001731544733,0.48036203859373927,0.529922354966402,-0.3751563630066812,-0.8266371707431972,0.41727498453110456,0.9129546484909952,-0.13902626186609268,-0.2023520297370851,-0.4592217989265919,-0.006227447185665369,0.450847836676985,0.9153995108790696,0.33627149648964405,0.1878808536566794,0.41959174210205674,0.6090261512435973,-0.015817413106560707,-0.10132470354437828,0.26326174568384886,0.5976209621876478,0.5441431808285415,-0.15626882761716843,-0.5076931891962886,-0.7150472491048276,0.35617970395833254,-0.19649080885574222,0.07027675583958626,-0.9960621758364141,-0.7780116857029498,-0.2677730922587216,-0.2007546853274107,-0.212309833150357,0.2389080785214901,0.3699694573879242,0.6628702832385898,0.6165297329425812,-0.8728386140428483,-0.5972437718883157,0.16103076515719295,-0.7248358451761305,0.6061446471139789,0.15093997167423368,-0.5769547349773347,-0.9215059536509216,0.8605531505309045,-0.33712605806067586,-0.7983604515902698,-0.5294230254366994,0.7025140495970845,0.5656517059542239,-0.6039954121224582,-0.6767917033284903,0.24224360333755612,-0.7923874123953283,-0.4593644575215876,0.7667242465540767,0.741295057348907,-0.4989928686991334,-0.5550307291559875,0.10118372645229101,0.14650621498003602,0.671172983944416,0.6256128740496933,0.7027115803211927,0.4234432694502175,-0.2545961360447109,-0.45676660584285855,-0.024729274678975344,0.3424463071860373,0.19061620254069567,0.496785378549248,0.28865861939266324,-0.8186470689252019,-0.324818211607635,0.49326662067323923,-0.49542895006015897,0.3485401710495353,0.4751688251271844,0.4544064966030419,-0.4663054090924561,-0.8063361402601004,-0.9170003244653344,0.5824028318747878,-0.762652575969696,0.041719311848282814,-0.9477936355397105,0.9755603522062302,0.019461579155176878,-0.6790505107492208,0.5791397918947041,0.46133692702278495,-0.6961816912516952,-0.661977379117161,0.07313275430351496,-0.6511962134391069,-0.46136280382052064,-0.4814629410393536,0.897566752973944,-0.30597863951697946,-0.4969163369387388,-0.4289734554477036,-0.1980325747281313,-0.3262170637026429,-0.13813250325620174,0.42764120968058705,-0.4894008496776223,0.0029053804464638233,-0.7913389829918742,0.7574850232340395,-0.9577003372833133,0.6529561043716967,-0.4699583863839507,0.22240213211625814,-0.12281957874074578,0.6048322692513466,0.6395128951407969,-0.14356234157457948,-0.36428370838984847,-0.04658237658441067,-0.23323522228747606,0.436349606141448,0.12652582116425037,-0.3332414752803743,-0.8176384959369898,-0.9784841691143811,0.6986667686142027,0.5425491011701524,0.38819455122575164,0.6772729614749551,-0.7999475114047527,-0.2819478651508689,-0.3978753611445427,-0.8717836937867105,-0.664782989770174,-0.9602557048201561,-0.9812116147950292,0.7916615665890276,-0.28771925158798695,0.23901709355413914,-0.5372587568126619,-0.5748869688250124,0.6170485992915928,-0.8290979373268783,0.2117048380896449,0.7059418666176498,-0.6540687973611057,0.7768526799045503,-0.35103447921574116,-0.9508193423971534,-0.39231377746909857,-0.2499041436240077,0.8734087734483182,-0.46941000362858176,-0.6018873257562518,0.28751943120732903,-0.30102731566876173,0.1283305287361145,0.26956298714503646,0.2552687507122755,0.0810478962957859,-0.6197578348219395,-0.8296146164648235,0.42097430024296045,0.25316046457737684,0.7437794893048704,-0.6250469242222607,-0.16061974596232176,0.7606916953809559,0.24099550256505609,0.7857197704724967,-0.4263909412547946,0.6003820756450295,-0.17217927053570747,-0.018286218866705894,0.9149796622805297,0.1695742537267506,-0.6103108795359731,-0.9829881577752531,0.8568847696296871,0.9422851684503257,-0.5987521074712276,-0.2839229186065495,-0.10178308561444283,0.6037974990904331,0.3085820432752371,-0.18484053248539567,0.25497959088534117,-0.7659266968257725,0.9567984864115715,-0.8080068561248481,0.7734782942570746,-0.39287507766857743,0.9343645139597356,0.7670104070566595,-0.23168742889538407,0.1388669703155756,-0.811610596254468,-0.07076238468289375,0.7052147393114865,0.29985310323536396,0.23372445348650217,0.8066711351275444,0.5227504675276577,0.226725188549608,0.03907418577000499,0.38650950510054827,-0.8360069459304214,-0.6736596073023975,0.2479364862665534,-0.9671303075738251,0.15012022713199258,-0.11150830611586571,0.7356379544362426,0.28440718818455935,-0.6633829516358674,0.9530413178727031,-0.35908092418685555,-0.8715862352401018,-0.32412154972553253,-0.6107257339172065,-0.8381978590041399,0.7609342732466757,-0.6685196231119335,-0.040705065708607435,0.5687873722054064,0.8557153292931616,0.7876289500854909,0.1759365820325911,0.3297646907158196,-0.03603901108726859,-0.5930589884519577,0.15985442558303475,-0.2409297632984817,-0.6946698692627251,-0.8343622563406825,0.0695837582461536,-0.8181365206837654,-0.857498895842582,0.683321566786617,0.7014547786675394,-0.7570384559221566,0.38409009855240583,0.9029924990609288,0.7141256178729236,-0.45805771462619305,0.7550940071232617,0.7512535406276584,0.10366046847775578,-0.5754105080850422,0.7587125157006085,0.9533493747003376,-0.1697283061221242,-0.6391637194901705,-0.5397078217938542,0.04617784870788455,-0.9154121153987944,0.9697404969483614,-0.20063484273850918,-0.029614076018333435,-0.5486157853156328,-0.943576080724597,0.7813615412451327,0.6759432088583708,0.6073581231757998,0.6169600761495531,0.4144401508383453,0.6862679929472506,-0.3974791467189789,-0.17121891863644123,-0.9154048403725028,-0.5705058900639415,-0.27274304209277034,0.9562554461881518,0.006898020394146442,-0.14045374328270555,-0.4678463158197701,0.4008109765127301,-0.12710564630106091,0.30524984328076243,0.09789496660232544,-0.03654106939211488,0.6400899807922542,0.5476687592454255,-0.7859519603662193,0.6333084744401276,0.09992469847202301,-0.264537142124027,0.825824704952538,-0.13441002648323774,-0.5792225142940879,-0.8171081705950201,-0.7695797267369926,0.4306615013629198,0.16376945562660694,-0.2827774165198207,-0.610255722887814,-0.20218717586249113,-0.35541249066591263,0.4699502484872937,0.3289679791778326,0.48534238059073687,-0.8385614808648825,0.4981747502461076,0.1199389211833477,-0.6777897169813514,-0.7175377677194774,0.26963252015411854,0.2756506600417197,-0.7721770792268217,0.4876656159758568,-0.6895902822725475,-0.551832681056112,-0.24595602368935943,0.6414270140230656,0.465135517064482,0.9585963939316571,0.9558469238691032,-0.4833896947093308,0.7682966580614448,0.5812214952893555,0.5109995403327048,0.38767098588868976,-0.16392173990607262,0.3717907457612455,0.9585159788839519,0.020233073737472296,0.4193330090492964,0.07719202991575003,0.024667236488312483,-0.12842573830857873,0.5929388338699937,-0.5693072928115726,0.18188319820910692,-0.3230118383653462,0.6377677014097571,-0.3791232639923692,-0.340076822321862,-0.28933902457356453,0.7124142171815038,-0.4189641051925719,0.26768630696460605,0.023828717879951,0.11917186435312033,-0.3704218491911888,-0.17132929898798466,-0.5471137352287769,-0.9267798392102122,-0.9011936937458813,-0.8908446067944169,0.3076225002296269,-0.7675964259542525,-0.03571258019655943,0.12623901246115565,0.9607803472317755,-0.3053870019502938,-0.9446117337793112,0.7927203234285116,-0.09045936027541757,-0.24319063918665051,0.952073470223695,0.7229317198507488,0.9798294431529939,0.0969024277292192,0.28133039362728596,0.23974250303581357,0.0671170293353498,0.6945735313929617,-0.5347026726230979,-0.1096581113524735,0.16810602694749832,0.34313142905011773,0.48738558357581496,-0.9509690823033452,-0.17159124743193388,-0.9057401502504945,-0.8666099044494331,0.8098223065026104,-0.2935122586786747,0.6586549230851233,-0.7370140198618174,0.7238079854287207,0.1729053477756679,0.29809073358774185,-0.28116292506456375,0.70597243309021,0.04890880733728409,0.8877106150612235,0.38585896603763103,-0.05884623900055885,0.5172261251136661,-0.69411153299734,-0.324934602715075,-0.6217512944713235,0.8268051100894809,-0.4840528266504407,0.17481899168342352,0.9346697395667434,-0.9181236135773361,0.04265468055382371,0.3434567959047854,0.2144980328157544,-0.31164315389469266,-0.9870528341270983,-0.5194316897541285,-0.757995864842087,-0.19208084139972925,-0.013557636179029942,-0.06632915325462818,-0.08322380157187581,0.37983908085152507,0.07822237676009536,-0.5001777559518814,-0.2033332665450871,0.9843334252946079,0.7253029081039131,-0.6295869871973991,-0.7020839704200625,-0.047061614226549864,-0.6761576724238694,-0.6882046330720186,0.49560872465372086,0.024667208082973957,-0.8757355958223343,-0.5054620667360723,0.3845993089489639,0.1165915378369391,-0.7957092188298702,-0.3870097300969064,-0.5400258833542466,-0.02925011795014143,-0.7806450482457876,-0.43455144856125116,0.08385796146467328,-0.12211270537227392,0.963365291710943,0.9404762228950858,0.38348164269700646,-0.6787532418966293,-0.6426850771531463,-0.4688618276268244,-0.10759622603654861,0.2085884721018374,0.7280757036060095,0.02271765097975731,0.5788996410556138,0.25534617668017745,0.2565055079758167,-0.40971176279708743,0.4134895191527903,0.5994091494940221,0.566385505720973,-0.2423637667670846,0.06332694878801703,-0.8087574695236981,-0.5947616756893694,-0.16877639293670654,0.43757443595677614,0.3014456480741501,-0.3241004007868469,0.7066743327304721,0.03930045245215297,-0.2166983224451542,-0.2755704829469323,0.7350474447011948,-0.545076014008373,-0.3272697883658111,-0.04146038740873337,0.5456900321878493,-0.5612834305502474,0.9268734497018158,0.5317516052164137,0.878134423866868,0.8803040683269501,-0.4650534577667713,-0.3281513350084424,-0.765335232950747,-0.7252230886369944,-0.4702491043135524,-0.5861054784618318,-0.7338119805790484,0.10217979783192277,0.18441715463995934,-0.29411752382293344,0.8509702812880278,0.9024277566932142,0.6038506194017828,0.37345178332179785,-0.8926924183033407,0.7066337731666863,0.7727003716863692,-0.18106201197952032,0.12424419960007071,0.6062119286507368,0.08971356833353639,-0.47959211887791753,-0.6862520561553538,0.30216145515441895,-0.7428511986508965,-0.7616443983279169,-0.2099695927463472,-0.2997301695868373,0.9658329556696117,0.03706648014485836,-0.7692598435096443,0.4048173991031945,-0.667801845818758,-0.8463270799256861,0.8401853651739657,-0.24996413011103868,0.6813241713680327,0.6604527211748064,0.9902852503582835,-0.6987880952656269,-0.7541513442993164,-0.1678138254210353,-0.6504284180700779,0.8792217592708766,-0.34277108730748296,-0.3200233718380332,-0.5602431511506438,-0.8679165309295058,0.615944683086127,-0.9534429623745382,-0.35239386139437556,-0.025552285835146904,0.8124623163603246,-0.46955462684854865,0.11869753338396549,0.31845284486189485,0.1524264053441584,0.7259336686693132,0.3726417711004615,-0.441593986004591,0.8644880042411387,-0.39552483428269625,-0.022200764622539282,-0.9814010900445282,-0.282982069067657,0.37091430462896824,-0.0879630078561604,0.011288242414593697,-0.12292216857895255,-0.7474093595519662,-0.11889776214957237,-0.9781411630101502,-0.26070796977728605,-0.5409247777424753,0.1990380217321217,-0.43286438565701246,-0.7173966923728585,0.40611400874331594,0.49320536898449063,-0.09336198633536696,-0.708796956576407,-0.18431138806045055,0.40977072436362505,0.5806238288059831,0.5044926414266229,0.9724509650841355,-0.5451819780282676,-0.38642019126564264,0.5813333443365991,0.3643180155195296,-0.06986399833112955,-0.9281457355245948,0.5448465584777296,0.015433119144290686,-0.600479528773576,0.15953720593824983,-0.1492992164567113,0.5439259968698025,0.08538716658949852,-0.8494604346342385,0.4009280586615205,0.5136833265423775,-0.34376328298822045,0.9557398054748774,0.1842529159039259,-0.8562292330898345,-0.27842331351712346,0.436683832667768,-0.8236958868801594,0.8892156202346087,-0.8459930373355746,0.5437408811412752,-0.9961946592666209,-0.3236982077360153,0.3762538922019303,0.005746173206716776,0.5239425841718912,-0.4319217037409544,-0.9025522219017148,-0.023157457821071148,-0.08353819604963064,0.5243198471143842,-0.4753442797809839,-0.3057910930365324,-0.5446428810246289,0.23661336256191134,-0.37393184192478657,0.38532900251448154,-0.8458261545747519,-0.710262740496546,-0.24902924103662372,0.07850158959627151,0.30840200278908014,0.5861430545337498,0.8684888603165746,0.3611008981242776,0.4328775661997497,0.3314090045168996,0.37556891050189734,-0.909630112349987,-0.26546030957251787,-0.661106267478317,0.8378556296229362,-0.44025783333927393,-0.2897304040379822,-0.7292183628305793,0.9109006701037288,0.06527114193886518,0.7681150743737817,-0.5699490839615464,0.6603265064768493,-0.5740398415364325,-0.8333284221589565,0.6676765321753919,-0.037817354779690504,0.9223576593212783,0.617862727958709,0.1344930394552648,-0.20177727797999978,0.846346452832222,-0.8292304989881814,-0.9602716378867626,0.9616360724903643,0.10694821970537305,-0.6850554933771491,-0.9244619673117995,-0.48901523230597377,0.1962922913953662,0.9976409808732569,0.23879936011508107,0.6319812084548175,0.716062274761498,0.5462216096930206,0.22762991581112146,0.39076621970161796,-0.32573093799874187,-0.6459754733368754,-0.02227780455723405,0.8841422912664711,0.4008322097361088,0.19663460412994027,0.14146360754966736,-0.7067348202690482,-0.10196792660281062,-0.03489949135109782,-0.4670161255635321,0.8491435004398227,0.04913180461153388,-0.5120930378325284,0.45527169946581125,0.45047151297330856,-0.7174526709131896,0.7314244173467159,-0.7025780300609767,0.43537222407758236,0.6662484491243958,-0.018346159253269434,-0.18588998587802052,-0.32440273463726044,0.3929732972756028,-0.8229046035557985,-0.7127165920101106,-0.5002577477134764,-0.17348548024892807,-0.6229901309125125,0.5047297473065555,-0.5327224507927895,0.7221781346015632,0.8997297235764563,0.342083933763206,0.695924841798842,0.055278082843869925,0.6633591176941991,-0.9299677372910082,0.05968500813469291,-0.44915981218218803,0.9524046001024544,-0.5906980610452592,-0.9425727594643831,-0.8267565784044564,-0.9975358424708247,-0.9389993278309703,0.05203039338812232,0.0784144620411098,-0.7848501037806273,-0.5535342688672245,0.9935867544263601,-0.4336738381534815,0.39365700352936983,-0.08746414678171277,-0.22226092964410782,0.5047176391817629,0.6128480909392238,0.03126784646883607,0.9250692510977387,0.6942015220411122,0.5348398010246456,0.11068193847313523,0.7101176930591464,0.17793677560985088,-0.17855749325826764,-0.1326646115630865,-0.8427006397396326,-0.36442187149077654,0.8017806820571423,-0.6559263681992888,0.5751000833697617,-0.7602833402343094,0.5546988439746201,0.5657416777685285,0.4411179763264954,0.7049637585878372,0.5266253300942481,0.1263267807662487,0.05042507732287049,-0.33600268652662635,0.9946837429888546,0.7356659513898194,-0.3284254786558449,0.4944318006746471,-0.15854341443628073,-0.7371705612167716,-0.9950198396109045,-0.2067343033850193,-0.8555143219418824,0.9699564282782376,0.3076356165111065,0.6886462601833045,0.14913868298754096,-0.35495974589139223,0.5929049174301326,-0.7184142833575606,0.9039806565269828,0.21978329215198755,-0.06319556478410959,-0.1396618471480906,-0.33438741927966475,0.5668086297810078,0.11289418116211891,-0.7688374617137015,-0.26133526489138603,-0.026879229117184877,-0.713992721401155,-0.7980233361013234,0.9569937014020979,0.8533507608808577,0.9052552566863596,0.6222569313831627,0.8338929046876729,0.7634848649613559,-0.04788747429847717,-0.07077579014003277,0.47835342958569527,0.5482569914311171,-0.7897895881906152,0.14065521536394954,0.36435521161183715,0.5946731036528945,0.9663322768174112,-0.4105629432015121,-0.14208290074020624,0.9055916825309396,0.765304961707443,0.22017061291262507,0.07803625566884875,0.7486300533637404,-0.051757520996034145,0.20154961897060275,0.9389449846930802,0.37867684476077557,-0.2535746581852436,0.7076960098929703,0.9259022297337651,-0.14475868875160813,0.7196413860656321,0.5350882657803595,-0.07296078465878963,-0.32413715962320566,0.03872496774420142,-0.2529806066304445,0.06421583471819758,-0.9370263391174376,-0.42032005777582526,0.519205070566386,0.6507035079412162,0.550451269838959,-0.6187014235183597,0.8721469598822296,0.5774769820272923,0.1412454154342413,-0.8662242912687361,0.28028969233855605,-0.05690001277253032,-0.880614182446152,-0.15687353210523725,0.9110082187689841,-0.7268445868976414,0.7542286496609449,-0.9000838003121316,-0.08009324269369245,0.9938228619284928,0.4571019634604454,-0.8850723374634981,0.6431761845014989,-0.7612452358007431,-0.1626944039016962,0.8632756676524878,-0.9544804943725467,0.33330028783529997,-0.46372208511456847,-0.7598384749144316,0.5213973363861442,0.46596776181831956,-0.8042646967805922,0.11213733488693833,0.8060878491960466,0.15544277196750045,0.665777204092592,-0.2525482433848083,0.5853931750170887,0.18014198821038008,-0.44660822907462716,-0.8774511404335499,-0.5727201062254608,0.29547477466985583,0.092381676658988,0.14138434315100312,-0.1642635646276176,-0.29606346460059285,0.5227191890589893,0.3324384312145412,0.87982241762802,0.38700225902721286,-0.8160199080593884,-0.18160184985026717,-0.5417299405671656,0.6265622787177563,-0.49876516964286566,-0.5467916061170399,0.6230272916145623,-0.021277877036482096,0.982726049143821,-0.31118222791701555,-0.8886754889972508,0.5418221377767622,0.46155056031420827,-0.630967047996819,0.7546505369246006,0.6099799643270671,-0.5790290758013725,0.6705162664875388,-0.9240965191274881,-0.08701957296580076,-0.7240975270979106,-0.5542952171526849,0.1406003567390144,-0.580800601746887,-0.03376061795279384,0.06256353808566928,-0.09016676433384418,-0.45376428263261914,-0.11398924421519041,-0.27088723611086607,-0.5238609788939357,0.04192411294206977,0.3696337500587106,0.44964182563126087,-0.33600706700235605,0.7099020420573652,0.9522212469018996,0.23589575849473476,-0.2650801814161241,0.11541304364800453,-0.3423095289617777,-0.22699293261393905,-0.5215556193143129,0.9347598715685308,-0.32027908274903893,0.3199809626676142,0.16896318225190043,0.35643087700009346,0.4705427666194737,-0.593543563503772,-0.6747402856126428,-0.996832799166441,-0.7495691701769829,-0.7254982474260032,0.5062925554811954,0.7110128947533667,-0.5613522282801569,0.8348846822045743,-0.7044247649610043,0.8190413843840361,0.9015123015269637,-0.564794335514307,0.20148451579734683,0.6327647934667766,-0.8442544196732342,0.8714406643994153,-0.4368140269070864,0.49531129049137235,-0.07949562883004546,0.07720207842066884,-0.6163082397542894,-0.13525686459615827,0.6883858316577971,0.29935412714257836,0.815642595756799,0.828302982263267,0.4343400225043297,0.5773064461536705,-0.8934131949208677,0.389533675275743,-0.4414367526769638,0.6653950451873243,-0.5059010274708271,-0.43204065319150686,-0.01431660307571292,0.12172815250232816,-0.34293180145323277,-0.502633583266288,-0.988240113016218,0.6100556678138673,-0.8205483970232308,-0.6934164050035179,0.83369818655774,0.7838033898733556,-0.4890718632377684,-0.7430039523169398,-0.0778875439427793,-0.4479441181756556,0.18067419296130538,-0.8928253506310284,-0.6340692732483149,-0.5741356131620705,-0.36716114869341254,0.29926214134320617,-0.5052354065701365,-0.4162044762633741,-0.8590026996098459,-0.593632863368839,-0.23795462306588888,0.4796512508764863,-0.19024314638227224,0.6323803635314107,0.9280164861120284,-0.7458087992854416,0.867464148439467,-0.4590165368281305,0.4454242973588407,0.8698200522921979,-0.8374580964446068,0.4018531693145633,-0.6563949538394809,0.2597977719269693,0.9076001532375813,-0.37650353321805596,-0.24340396048501134,0.0217614839784801,0.13922377163544297,0.8930711126886308,0.9650365728884935,0.9531461270526052,-0.5458935787901282,0.7396710989996791,0.7061460413970053,-0.4093218124471605,0.5016366234049201,0.19394425861537457,-0.48960710875689983,0.6914602615870535,0.47852394776418805,0.5877098180353642,-0.4422664614394307,-0.03578436793759465,-0.3697633557021618,0.4836517949588597,-0.32495497493073344,-0.4123299587517977,-0.2880628164857626,0.034645960200577974,0.8444203110411763,0.6361800152808428,-0.7084066825918853,-0.6056705336086452,0.8737248792313039,0.20889518270269036,0.7030801614746451,-0.5054436619393528,0.7534908205270767,-0.7257908354513347,0.5262125977315009,-0.7758308541961014,-0.7685639676637948,0.7646079496480525,-0.0962569690309465,0.18272610288113356,0.3574656001292169,-0.5590345277450979,-0.6893009515479207,0.6626379871740937,-0.3320144363678992,0.5130318854935467,0.2282563173212111,0.3664892874658108,-0.7385779083706439,0.8552380269393325,-0.011425710748881102,-0.506398456171155,0.21781868627294898,0.9361704331822693,-0.9729807768017054,0.9820872331038117,0.3014820138923824,0.10990885691717267,-0.83939138520509,-0.695607625413686,0.16128777619451284,0.464901661965996,-0.6162539822980762,-0.8530856291763484,0.9164954954758286,-0.1962035521864891,-0.7773201586678624,-0.3325875401496887,0.16489591309800744,0.12855364615097642,-0.9783525723032653,-0.4254810274578631,-0.0963087547570467,-0.549589233007282,0.7539978139102459,0.4379031006246805,0.038828172255307436,0.8443087758496404,-0.10765583673492074,-0.3947661449201405,0.4950584750622511,0.9923436609096825,-0.20743462815880775,-0.689770910423249,-0.6664371429942548,-0.7579723414964974,-0.7497863858006895,0.34419783391058445,0.6425266140140593,0.5324106994085014,0.3293947256170213,0.7088584271259606,0.7936383434571326,0.8404374131932855,0.7421786445192993,0.9561746837571263,-0.6149197882041335,-0.8027105461806059,0.43512591486796737,-0.6855830568820238,-0.9922128985635936,0.10390262911096215,0.36206491058692336,0.43681669887155294,-0.31833534175530076,-0.7989080580882728,-0.8093504831194878,-0.718053120188415,0.5688327574171126,0.1953711612150073,0.1591706881299615,-0.7102397195994854,0.164409589022398,-0.6534899966791272,-0.9995955168269575,-0.9510652804747224,-0.442578240763396,0.7019251026213169,0.2870442243292928,-0.49903850397095084,-0.266497771255672,-0.7562388237565756,-0.500428888015449,0.5801002574153244,0.22977714845910668,-0.4303300576284528,0.000344050582498312,0.010244964621961117,0.6732900445349514,0.9970058714970946,0.016922415234148502,0.9374463162384927,0.1481310655362904,0.2379432674497366,0.2870814139023423,0.7588039310649037,-0.49398141261190176,0.7690630382858217,-0.13124547665938735,0.8347390247508883,0.7384756812825799,0.712446624878794,0.9562263968400657,-0.08679701574146748,0.663278907071799,0.3237124001607299,-0.8804243230260909,-0.44267280446365476,-0.7676238706335425,0.21380965411663055,-0.7289825985208154,0.7147761480882764,-0.34533092426136136,-0.36196814430877566,-0.795052767265588,-0.5554382558912039,0.941005458123982,-0.9043013448826969,0.37816873425617814,-0.00014316663146018982,0.4168589171022177,0.7338965241797268,-0.44149666698649526,0.7509546503424644,-0.821909399703145,0.6489792708307505,-0.41157694067806005,-0.4159821621142328,0.02584194391965866,-0.4978573718108237,0.7559238574467599,-0.6114023039117455,-0.028848609421402216,0.9399565211497247,-0.2657982795499265,-0.9924211506731808,-0.4173012003302574,0.11524520488455892,0.7603683830238879,-0.1778877186588943,0.4374659741297364,0.17426636116579175,-0.9733592043630779,-0.2643201588653028,0.1705822702497244,0.3992530503310263,0.7603884222917259,0.8024958777241409,0.11074772849678993,0.029852219857275486,-0.48392349341884255,-0.18293050304055214,0.09573014499619603,0.12989815324544907,0.716636089142412,-0.14433865388855338,0.38712984696030617,0.9475754681043327,-0.019840295426547527,0.919878764078021,-0.5870983647182584,0.3564271489158273,0.9854778638109565,0.16148362727835774,0.1308846757747233,-0.6541705746203661,0.11170022236183286,-0.005369142629206181,0.12169969687238336,-0.372326223179698,0.07223872095346451,-0.9628932876512408,0.2194127137772739,0.4026271002367139,0.11643709149211645,-0.49599410267546773,-0.6324764704331756,-0.21865068841725588,0.20549710746854544,0.38126358250156045,-0.27087664790451527,0.820602816529572,-0.7574875871650875,0.6043220618739724,0.7116986471228302,0.3220346816815436,-0.6500794761814177,-0.616560123860836,0.45375178288668394,0.23905183793976903,0.7718896702863276,-0.0853997990489006,-0.5243481225334108,-0.8354824134148657,0.2621802892535925,-0.135082826949656,0.4540782496333122,-0.14895561197772622,-0.4819401139393449,0.6905988943763077,-0.9758416181430221,-0.0724850669503212,-0.6030413727276027,0.6081160921603441,0.7236050269566476,0.6194358775392175,0.22604927141219378,-0.09329662006348372,-0.41185450041666627,0.33142941165715456,-0.35736158676445484,-0.7931575537659228,0.23571024695411325,-0.3342628343962133,-0.6472102953121066,0.5473402086645365,-0.9912401693873107,0.3049370599910617,-0.31859141355380416,0.48374135326594114,-0.038541315123438835,0.5152059174142778,0.22910813940688968,-0.7596931927837431,0.08146522054448724,-0.49117699917405844,0.539422145113349,0.34104761434718966,-0.4136645821854472,0.39812939753755927,0.8213694500736892,-0.8893512333743274,-0.5068797231651843,-0.5571026257239282,-0.5595968263223767,0.828565661329776,0.055956322234123945,0.8010475831106305,-0.8911432069726288,-0.7929222821258008,-0.24882456194609404,0.770086161326617,-0.8442671098746359,-0.5687984959222376,0.8203062885440886,0.6223562909290195,0.8418353823944926,0.8745767739601433,0.4033189150504768,-0.7949230992235243,-0.09400881873443723,0.6019214084371924,0.5859674992971122,-0.3144206404685974,-0.32326719677075744,-0.09973353706300259,0.1307449098676443,0.37624902557581663,0.6254186588339508,-0.2386537166312337,-0.9864887702278793,-0.6337800449691713,-0.6127748000435531,0.7075448781251907,0.7845684471540153,0.8197199963033199,-0.6083195190876722,0.5371240074746311,0.4608226497657597,0.5849822373129427,-0.5479594795033336,0.8898232998326421,-0.02902140887454152,-0.15056310780346394,0.5256140832789242,0.20099658891558647,0.08736900659278035,0.0519548780284822,-0.8636579439043999,0.9407541109248996,-0.11333469999954104,-0.22663317620754242,0.26720184832811356,0.44187945779412985,0.7459999844431877,0.0021430249325931072,-0.1066804751753807,-0.291687554679811,-0.6426115427166224,-0.33122102078050375,0.7989183473400772,0.8598629226908088,0.6038566906936467,0.6239119889214635,0.22713332204148173,-0.34142691642045975,-0.15250321850180626,0.6761709707789123,-0.7095262608490884,0.46890983544290066,-0.43017002008855343,0.14820063253864646,-0.33727163448929787,-0.16262471582740545,0.8993951007723808,0.5215095826424658,0.3975406480021775,-0.15152582759037614,-0.7375204772688448,0.7327458332292736,0.889559009578079,-0.2293164781294763,0.14550590887665749,-0.4954788228496909,0.35254593938589096,0.026592392940074205,0.3364599742926657,-0.514789346139878,-0.6057528955861926,0.4480910561978817,-0.028672136832028627,-0.9509803489781916,-0.63021569699049,-0.06906772078946233,-0.3017243333160877,0.29359819600358605,-0.5901621854864061,0.16048223059624434,-0.7523282505571842,-0.9195366366766393,-0.18279960006475449,-0.5254289875738323,-0.3445141054689884,0.3649647287093103,-0.8320018397644162,-0.07693734113126993,0.14184081414714456,-0.5401088441722095,-0.9971819161437452,-0.9192119152285159,0.12538269301876426,0.5438384748995304,-0.9638790171593428,-0.8703507790341973,-0.20656333351507783,-0.09773192973807454,-0.31567298527807,-0.8394110389053822,0.7468990245833993,-0.090480986982584,0.35314257675781846,-0.19851242285221815,-0.4294632417149842,0.8325473158620298,-0.3339555812999606,-0.4033492077142,-0.43388005532324314,0.44214662071317434,0.902666736394167,-0.4374644965864718,-0.7231053439900279,-0.6280726091936231,-0.45834251400083303,0.18091099336743355,-0.4649824174121022,-0.4424722674302757,-0.6367818769067526,0.12143404083326459,0.001256884541362524,0.05748840747401118,-0.44610693445429206,-0.1646093330346048,0.3310783300548792,-0.8860758142545819,-0.2868992369621992,-0.5443357592448592,-0.9916222556494176,-0.8120377073064446,0.7765291035175323,-0.3770974692888558,-0.5950089893303812,0.23500228906050324,0.9051880771294236,-0.8178921015933156,-0.8456622315570712,-0.7578395227901638,-0.7069884459488094,0.5458875773474574,0.2721242527477443,-0.7916317209601402,0.7445170967839658,0.37933589704334736,0.3048129500821233,0.7084704395383596,0.3096768050454557,0.41630701813846827,0.10441560810431838,-0.840658400207758,0.647977159358561,-0.32142108120024204,-0.23544848803430796,0.42122191097587347,0.32411056896671653,0.39257731940597296,-0.37848923448473215,-0.24209930142387748,0.8416022141464055,0.1940434924326837,-0.14199118129909039,-0.6287192697636783,0.1738770166411996,0.9523070510476828,0.06000574538484216,-0.7390608410350978,-0.35889061400666833,-0.6781007288955152,-0.8136211754754186,-0.13175020134076476,-0.09701247187331319,0.3303282195702195,0.27315326035022736,-0.026747328229248524,0.973021391313523,0.9415422240272164,-0.26148653915151954,0.6960902200080454,0.146058761049062,-0.1511748544871807,-0.9902641582302749,0.4751508068293333,-0.33182816160842776,-0.5803692094050348,0.5586653407663107,0.6736386683769524,0.5416788747534156,0.7628706684336066,0.46245650481432676,-0.17035561287775636,0.018375608138740063,0.12345274211838841,0.5229375381022692,0.1323315599001944,0.8616912737488747,0.8805972570553422,-0.7941173086874187,0.7166344211436808,-0.616332761477679,-0.05737706460058689,0.4475066498853266,-0.7842501145787537,0.48004218796268106,0.6518073794431984,0.5130341169424355,-0.8659320417791605,0.5920301964506507,0.8655321542173624,0.9336408381350338,0.43083611223846674,-0.6658322126604617,0.3219378269277513,0.24077134998515248,-0.5936695579439402,-0.48501688707619905,-0.16448669880628586,-0.009172432124614716,-0.5838113608770072,-0.16407785611227155,0.17210793681442738,0.05340520618483424,0.43033099826425314,0.7143799373880029,0.15197717677801847,0.884139446541667,-0.5617373092100024,-0.2465204526670277,-0.5002835551276803,-0.5630890368483961,0.7786542032845318,-0.9611207810230553,-0.0343228536657989,-0.2728607221506536,-0.6135910828597844,0.3339300788938999,0.38551053823903203,-0.7532519185915589,0.282267180737108,-0.8659849027171731,-0.12977077392861247,-0.19239637535065413,-0.4636204708367586,0.7043903325684369,-0.29032854828983545,-0.32590065617114305,-0.9802273353561759,-0.3311320156790316,0.502507227472961,0.05947503075003624,-0.41074143582955003,0.6212701774202287,-0.9662187844514847,0.9515015901997685,-0.9388596899807453,-0.8716471828520298,0.8439803468063474,-0.9943324117921293,0.238383152987808,0.9943648306652904,-0.9451123401522636,-0.2049012864008546,0.5298169311136007,-0.6118355486541986,-0.85967763280496,-0.03818413848057389,-0.07897536596283317,0.8070365418680012,0.12098747678101063,-0.4938646825030446,0.8693553227931261,-0.25918644154444337,0.6674178820103407,-0.8522976380772889,0.31107290321961045,-0.3115153596736491,-0.7988847861997783,-0.7059148564003408,-0.49473445676267147,0.6810140148736537,-0.427340900991112,-0.8687051432207227,0.17842314997687936,0.4227333962917328,0.5624591894447803,0.03109798952937126,-0.09101043082773685,0.43111736234277487,0.08887403085827827,-0.42285978933796287,-0.17164922691881657,-0.31632038950920105,-0.8082354418002069,0.7468527625314891,-0.8256289195269346,-0.5929089314304292,0.07863030442968011,-0.9030850203707814,-0.7780264783650637,-0.008606662508100271,0.3655462674796581,0.23971271375194192,-0.2371347639709711,0.9177332632243633,-0.4309673821553588,0.27099616127088666,-0.8650267031043768,-0.4467805433087051,0.9524004203267395,0.738163448870182,0.7411306756548584,-0.15695849945768714,0.9817934148013592,-0.4952764301560819,-0.6453599478118122,-0.4339493280276656,0.1415654979646206,-0.774320641066879,-0.11857380671426654,-0.8838462885469198,0.9820678369142115,0.10386233404278755,-0.7600715495646,0.4292129282839596,-0.10109238605946302,0.05453382944688201,-0.04415799491107464,-0.8890478173270822,0.4122731941752136,0.4772301148623228,0.5597618795000017,0.9689897932112217,-0.41263673920184374,0.33565105916932225,0.9530601664446294,0.6172946342267096,0.29382624570280313,0.2197740776464343,0.6334820315241814,0.8727257498539984,-0.21900683781132102,-0.6914675780571997,-0.8024088190868497,0.21727431286126375,-0.27562428871169686,-0.05302800517529249,-0.06412624660879374,-0.8914423673413694,-0.007804078049957752,0.8018641993403435,-0.42868860345333815,-0.55261289793998,0.04424113780260086,0.14409706043079495,0.4950079955160618,-0.632862794212997,-0.18844533758237958,0.1280838819220662,0.8049315987154841,-0.34081696392968297,0.7472761552780867,0.391914255451411,-0.48704613000154495,-0.6397863985039294,0.8718499536626041,-0.3689235672354698,-0.6478886678814888,0.08767067408189178,-0.027416531462222338,-0.7845068695023656,-0.20524432742968202,-0.9936888036318123,-0.1183622214011848,-0.5507182087749243,0.9417821625247598,-0.43761325301602483,0.8898363187909126,-0.7941939234733582,0.40067727118730545,-0.8073741653934121,-0.7993203769437969,0.24498178251087666,0.8690443090163171,-0.10322315245866776,-0.54753761831671,-0.3276956342160702,0.8624887722544372,-0.34529987862333655,0.7316765701398253,-0.7246608240529895,-0.14653553301468492,-0.6398080857470632,-0.1266502388752997,-0.4563932935707271,-0.3804148850031197,0.236349917948246,0.018646232318133116,0.4852501810528338,0.8132285084575415,0.00513983890414238,0.3411874705925584,0.488379230722785,-0.8584919082932174,-0.13166670221835375,0.05100648570805788,-0.5693518267944455,0.41763967787846923,-0.929151819087565,0.09188301675021648,-0.029087927658110857,-0.9445440382696688,-0.1006031702272594,-0.6142928544431925,-0.6905293264426291,-0.053883993066847324,0.9681760058738291,-0.24824477545917034,0.08550180168822408,0.652344720903784,-0.7524449033662677,-0.610930600669235,0.4112310581840575,0.22037793137133121,-0.8892254526726902,-0.5953393541276455,-0.7387526659294963,0.608803934417665,0.5356958517804742,-0.13679646840319037,-0.5419895853847265,-0.039066129829734564,-0.14553472260013223,-0.5007055159658194,-0.49289120454341173,-0.8077685721218586,0.8574717994779348,0.9827510030008852,0.36450044345110655,0.8590776482596993,-0.9376743109896779,0.3940870789811015,0.8846205440349877,0.21554028848186135,0.10140035953372717,0.9178097518160939,-0.8599418024532497,0.6827987586148083,0.3400139641016722,-0.4781732065603137,-0.40167876332998276,-0.8604331626556814,0.9779197000898421,-0.9096409338526428,0.8024161267094314,0.3441980266943574,-0.12040915247052908,0.2541688517667353,0.19448881270363927,0.11905592400580645,0.947635552380234,0.7888407809659839,0.7657322431914508,-0.3348856372758746,-0.9916285625658929,-0.2213413706049323,-0.8723833374679089,-0.5992380320094526,0.9811501232907176,-0.879767204169184,0.024456925690174103,0.16539662424474955,-0.9590632086619735,0.43798275478184223,0.8131452542729676,-0.8396496982313693,0.25831906823441386,-0.15239315759390593,-0.39161740988492966,0.1394978449679911,-0.1273723728954792,-0.05780910141766071,0.1202096943743527,-0.022779868450015783,0.1482827146537602,-0.81256630923599,0.772492591291666,0.7464955905452371,-0.4262603595852852,0.8087958618998528,-0.2723031719215214,-0.707221339456737,-0.6050416599027812,-0.20528198732063174,-0.469338062684983,0.801832651719451,-0.6173352566547692,-0.9977952558547258,0.6596846003085375,-0.5820302884094417,0.8876797314733267,0.28906616754829884,0.3683034968562424,-0.5937402322888374,0.5711560947820544,-0.24181357258930802,0.5389031288214028,-0.49585066828876734,0.05186831345781684,-0.5662265848368406,-0.20316760381683707,0.2857591789215803,0.7009242461062968,0.20422855531796813,0.8833365864120424,-0.6923913029022515,-0.375230242498219,-0.4142963010817766,0.019675767049193382,-0.729996026493609,-0.6676648906432092,0.3373616421595216,0.29855850525200367,-0.35868357168510556,-0.413641064427793,0.5305752819404006,0.7525626085698605,-0.05124138528481126,-0.707262746989727,0.26507461117580533,0.9065708960406482,-0.7000550571829081,0.03556454135105014,0.9588880934752524,-0.7490786965936422,-0.9520440162159503,-0.17801053263247013,0.5154216215014458,0.10629371553659439,0.2857840433716774,0.9923980105668306,-0.30467419466003776,-0.2221948206424713,-0.6032964019104838,-0.1227617347612977,-0.3256585216149688,-0.2251523407176137,-0.48449730360880494,0.7493076035752892,-0.44103436497971416,0.6566211483441293,-0.6439692093990743,0.7243155501782894,-0.11106580821797252,-0.2540933168493211,-0.4491229332052171,-0.05968155665323138,-0.15077028051018715,-0.10302454140037298,0.8338612336665392,-0.34252374852076173,-0.8232775311917067,-0.5065665896981955,0.45122020598500967,-0.1288023297674954,0.06737717008218169,-0.059940801467746496,-0.7814265685155988,0.4304303568787873,0.940595215652138,0.9757262016646564,-0.9286717949435115,0.9870602786540985,-0.019812787882983685,0.7483256938867271,-0.4291147980839014,0.2831082404591143,-0.27210872434079647,0.3479312011040747,0.8841712069697678,0.5929754725657403,0.13505615340545774,-0.2940491666086018,0.5076246047392488,0.8414859971962869,-0.046460960526019335,0.9332434446550906,0.6187112471088767,-0.1667455267161131,-0.6096729091368616,0.28199804527685046,-0.17376595176756382,-0.86783492192626,-0.5805986099876463,-0.3882027450017631,-0.0481999646872282,-0.8420174322091043,0.40842302795499563,-0.8042800668627024,-0.28501220513135195,-0.19800229370594025,0.6059099799022079,-0.2897469010204077,-0.5510676926933229,-0.11253559542819858,-0.13878504326567054,-0.5544291455298662,0.3871123450808227,0.9874065848998725,-0.750306801404804,-0.6339566423557699,0.8908459208905697,0.9621704155579209,-0.3869543089531362,0.6411349517293274,0.07995676202699542,0.36217980179935694,-0.9238123446702957,0.5459339115768671,-0.3931195312179625,-0.8695177896879613,-0.5588452992960811,0.7136805723421276,-0.9323416883125901,0.7431319425813854,0.6776003283448517,0.15524581773206592,-0.991893214173615,-0.31327544804662466,-0.5502624637447298,-0.7278882819227874,0.2882227716036141,-0.7363250865601003,0.8649512617848814,-0.8741984246298671,-0.281911707483232,-0.6961642908863723,-0.6116052330471575,-0.5620245053432882,0.3084251252003014,-0.7524358704686165,0.9151562419719994,-0.9421367696486413,-0.4713919200003147,-0.5768892299383879,0.17281255964189768,0.34329946292564273,0.5612709801644087,-0.5786285270005465,-0.1841611978597939,-0.452280115801841,-0.5565594746731222,-0.7267483999021351,-0.924191711936146,-0.38992886850610375,0.8456504307687283,0.29320407565683126,0.7152722226455808,-0.40745526971295476,0.34985552495345473,-0.8805995807051659,0.37827453715726733,0.09129018615931273,-0.12795737851411104,0.7859506253153086,0.8907642648555338,0.5736178220249712,-0.7938095671124756,0.7744989232160151,0.5037377313710749,0.38507134560495615,0.66239431547001,0.17968261428177357,0.808864776045084,0.8539549112319946,-0.9676830205135047,0.20688357576727867,0.5139304357580841,-0.7965888036414981,-0.039078956469893456,-0.6864304440096021,0.2977135479450226,0.8102419758215547,-0.4745153090916574,-0.48736280063167214,0.8804340669885278,0.2791581563651562,-0.7043360667303205,0.9717413429170847,-0.41368488129228354,0.8889999943785369,0.45798738254234195,-0.19180649425834417,-0.5796100147999823,0.6091970833949745,-0.04704152373597026,0.935713998042047,0.615086370613426,-0.30287465127184987,-0.9852267373353243,0.7148407977074385,0.3113590506836772,0.09971190011128783,-0.6758570740930736,-0.17032303754240274,-0.13054389506578445,0.4927633670158684,0.014195096679031849,-0.3115132371895015,-0.21893315389752388,0.837182130664587,-0.6659672372043133,-0.701590976677835,0.11249318812042475,-0.669134106952697,-0.08039425313472748,0.15635233698412776,-0.23630796978250146,-0.8212978518567979,0.5419291434809566,-0.8570579513907433,-0.18464027158915997,-0.6359668467193842,-0.07050641579553485,-0.9818080356344581,-0.6490612379275262,0.7460859892889857,-0.5440369634889066,0.6556199667975307,0.4105952437967062,-0.4111751737073064,-0.8503113272599876,-0.40316929994150996,0.19074022211134434,-0.2449988448061049,0.3797215651720762,0.36320088990032673,-0.35589824756607413,-0.4599237837828696,0.10581261571496725,0.9883560976013541,0.8226391607895494,0.8405469227582216,-0.7779198000207543,-0.06535627320408821,0.6688252571038902,-0.8619987037964165,0.018136881291866302,0.909103190060705,0.4308948894031346,0.8420056225731969,-0.17621161323040724,0.7106080544181168,0.20208916440606117,0.5143397455103695,0.27752431901171803,0.0968562955968082,-0.8819089396856725,0.550558642949909,0.5674907164648175,0.19215870229527354,0.5260720285587013,-0.14620750350877643,0.8497056565247476,-0.01283732894808054,-0.2575948485173285,0.3612393126823008,0.9347050646319985,0.28716578520834446,-0.7947639529593289,0.6135325590148568,0.11535315262153745,-0.4490756797604263,-0.9716392755508423,-0.44009728357195854,-0.917187484446913,0.12695180717855692,-0.2732647736556828,-0.11215759627521038,0.4147373689338565,-0.018750238232314587,-0.43634197348728776,-0.7571662901900709,-0.16152769699692726,-0.09356664353981614,0.07609578734263778,0.18917139619588852,0.8350589484907687,-0.2686385144479573,0.874749249778688,0.40591740515083075,-0.49150567781180143,-0.47671905206516385,0.09825035696849227,-0.5524235856719315,0.8662382951006293,-0.42434013402089477,-0.8968030423857272,-0.9070238480344415,-0.8359137722291052,-0.8855200088582933,0.8155089425854385,-0.2405938641168177,-0.1780427573248744,0.8776518059894443,-0.1550752967596054,0.4822258264757693,0.0633962438441813,0.7869177055545151,0.6325561287812889,0.5637780246324837,-0.27392993913963437,-0.7366287289187312,-0.3783828024752438,0.5068054720759392,-0.423333253711462,0.04141386225819588,-0.5178626119159162,-0.757398038636893,-0.924006775021553,-0.6858915640041232,0.5795095623470843,0.3220126386731863,-0.9837928656488657,0.35481358924880624,0.7867834232747555,-0.15730329789221287,-0.753762099891901,0.5840486097149551,-0.6817148639820516,-0.8307973584160209,0.6234954320825636,0.08469319762662053,0.2224405468441546,-0.8953308453783393,-0.7891509286127985,-0.17739529395475984,-0.3074313160032034,-0.034651598427444696,0.9326641815714538,0.2804206246510148,0.7128033386543393,0.9437044160440564,-0.4161910959519446,0.944175485521555,-0.6315672332420945,-0.1906128074042499,-0.31290374090895057,0.5820954204536974,0.9397313348017633,0.933990144636482,-0.5452121100388467,0.5008798982016742,-0.48160669673234224,-0.20581582700833678,0.721833286806941,-0.36939598293974996,-0.09895157627761364,-0.6581048644147813,-0.7291977275162935,0.8636541711166501,0.1437255684286356,-0.13061373075470328,0.9844662244431674,0.03177059581503272,-0.9981550448574126,-0.13547723833471537,-0.20332290651276708,0.5415527559816837,-0.20509854285046458,-0.9717641579918563,0.5659511042758822,0.8279768107458949,0.4064380219206214,0.799242106731981,0.3489225120283663,-0.6265673516318202,0.8698677392676473,-0.7344115325249732,0.3153440188616514,0.3657253934070468,0.9249523361213505,-0.22174319718033075,0.09146257163956761,0.8088556863367558,-0.03968244232237339,0.40139219257980585,0.15150608262047172,-0.6882591140456498,-0.31030608573928475,-0.9513683775439858,-0.3821668210439384,-0.9243181496858597,0.40293539594858885,-0.09839282417669892,-0.1388783073052764,-0.03262294642627239,-0.9041873882524669,-0.35289292968809605,0.5401603896170855,-0.3095164019614458,0.19074697932228446,0.5414660554379225,-0.16867794189602137,-0.21622907230630517,0.06077691027894616,0.12275009695440531,-0.39322836650535464,0.4314558105543256,0.9918770054355264,0.6091902167536318,-0.619602891150862,0.32261496176943183,0.4037713366560638,-0.025299748871475458,-0.15195696940645576,-0.3453063680790365,0.003257205244153738,-0.4124046671204269,0.7835241435095668,0.6550690443255007,-0.4877722030505538,0.628712497651577,0.7115626451559365,-0.6159056085161865,-0.7761381422169507,0.5134800230152905,-0.8981972592882812,-0.20027503045275807,-0.018959263805299997,0.6774279326200485,0.6883898628875613,0.22486448334529996,0.4129994176328182,-0.6365324393846095,0.7156742210499942,0.35605893144384027,0.9956018561497331,-0.9759526266716421,0.3620083536952734,0.6146954135037959,-0.7865936197340488,-0.3992893169634044,-0.14404964633286,0.9349535955116153,0.9706336949020624,-0.12617924623191357,-0.34244831651449203,0.8872987744398415,0.5120562524534762,-0.11122071044519544,0.2954191826283932,0.430509643163532,-0.36777323856949806,0.8843724429607391,-0.9876934895291924,0.4765606517903507,0.8993498766794801,-0.42616223776713014,0.41541279992088675,0.12901102099567652,-0.851701092440635,-0.22582313790917397,0.6653814841993153,0.1076573715545237,0.5142836119048297,-0.781266238540411,0.7621802487410605,-0.5415603509172797,0.3411490600556135,-0.5055086985230446,-0.19334894558414817,-0.8834213423542678,0.7152505787089467,-0.37259196816012263,0.9108726661652327,-0.05460735457018018,-0.22547767590731382,0.5286941742524505,0.8898836248554289,0.5669429716654122,-0.013317687436938286,-0.38065924448892474,-0.44518345780670643,-0.6629803730174899,0.606984387151897,-0.7995106126181781,0.5419240994378924,0.5358803691342473,0.7671207650564611,0.6691538193263113,-0.3742505107074976,-0.7683806177228689,-0.9770547500811517,-0.3268889831379056,-0.5403341548517346,-0.7356102927587926,-0.5561229744926095,-0.5818736590445042,0.41141569102182984,0.48288536816835403,0.518087238073349,0.31095309322699904,-0.6591784148477018,-0.3120927312411368,-0.9734473288990557,-0.5546730682253838,0.7476708865724504,-0.4438319904729724,0.8326887292787433,0.24094153940677643,-0.05074807908385992,-0.21973021747544408,0.4301990047097206,-0.6218348927795887,-0.8307277676649392,0.5749108856543899,-0.4499116507358849,-0.041386842261999846,0.22695323266088963,-0.6005568881519139,-0.9524002433754504,-0.12952857185155153,-0.8736656527034938,-0.9020093632861972,-0.5140821635723114,-0.23785297898575664,0.33149527572095394,-0.6495350268669426,-0.7193233715370297,-0.6153268991038203,0.8852829555980861,0.08015348901972175,0.5658286195248365,-0.09519941546022892,0.5724963769316673,-0.8918434968218207,-0.6644836408086121,-0.9341185209341347,-0.49512495705857873,-0.9497157651931047,0.8669482921250165,0.1574575719423592,-0.20219256356358528,0.39266132609918714,0.6587133184075356,-0.5321909706108272,-0.2980731497518718,0.10264532547444105,0.0015446282923221588,0.09980110684409738,0.9516472495160997,-0.9507193923927844,0.4924179050140083,0.005613548681139946,-0.011212337296456099,0.12760568503290415,-0.554284930229187,-0.9420509873889387,-0.7301804581657052,0.8992101131007075,-0.5471504107117653,0.6120441239327192,0.8910192204639316,-0.3320774636231363,-0.406601601280272,-0.2665161853656173,0.4235327844507992,0.49279965786263347,0.4464996410533786,-0.18873813841491938,-0.18236398370936513,-0.4729402353987098,-0.10438327770680189,-0.6367746465839446,0.8008536989800632,0.5883644237183034,-0.45782759599387646,0.38281166087836027,0.5452820733189583,-0.8678973028436303,0.9279997861012816,0.4166778866201639,0.96932886634022,0.16174254473298788,0.9035433274693787,0.7699422794394195,0.8430294999852777,-0.0812633316963911,-0.08942016866058111,-0.17810676293447614,-0.4384366679005325,-0.055639789905399084,0.31139468355104327,0.26822387240827084,-0.5496069840155542,0.7913871011696756,0.10518382722511888,-0.5576669769361615,-0.49328293139114976,-0.6620053993538022,-0.7101797531358898,-0.5499304034747183,0.9441421236842871,0.8850190280936658,-0.37324633402749896,-0.859097155276686,-0.26388978911563754,-0.15516023337841034,0.4622388309799135,-0.012162386439740658,0.2391562699340284,-0.45960869546979666,-0.14229293260723352,-0.3884130115620792,0.8074615239165723,-0.8597047342918813,0.027572729624807835,-0.9873541966080666,-0.8156826263293624,0.16047236090525985,0.5888679903000593,-0.356354461517185,-0.2750038937665522,-0.29383730655536056,-0.8381937206722796,0.9691520254127681,-0.352651696652174,0.8875494468957186,-0.9713862389326096,-0.5009587802924216,-0.5608208389021456,-0.9826926849782467,-0.356699934694916,0.2514898804947734,-0.19264105753973126,0.5798322078771889,0.5179829751141369,-0.046769396867603064,-0.7627750015817583,0.2550535798072815,-0.8622134942561388,-0.3790862485766411,-0.2413445431739092,-0.06863234657794237,-0.6324975388124585,0.21379563305526972,0.44838425936177373,-0.025686087552458048,0.013424846809357405,-0.18016194738447666,0.1751687373034656,0.5521246702410281,-0.8180494108237326,0.009384709876030684,-0.319854442961514,0.4680561935529113,-0.47810782492160797,0.3049025456421077,-0.8739936714991927,-0.5844063274562359,-0.9588728896342218,-0.7914655632339418,0.07617666339501739,0.5808559814468026,-0.6322580850683153,0.575444208458066,0.6166028673760593,-0.40592141915112734,0.8245747489854693,0.6999476910568774,0.961345748975873,0.22953296219930053,-0.13367917574942112,-0.8932974236086011,-0.9935309272259474,0.5594826019369066,0.15164609346538782,0.3718479759991169,0.07243015198037028,0.6301713576540351,-0.9811626081354916,0.6030610278248787,0.9152126940898597,0.7805111543275416,-0.9215552383102477,0.15888478653505445,-0.468474593013525,-0.08981128875166178,-0.7774834870360792,0.10855520190671086,0.46445361338555813,-0.012344173155725002,0.8390397904440761,0.8972933781333268,0.6743592419661582,0.5002773203887045,0.7733667180873454,0.015241453889757395,0.7027648198418319,-0.632375250570476,-0.10973873687908053,0.5640752026811242,-0.6200472349300981,0.8361337301321328,-0.4053166778758168,0.11405720794573426,0.4102312126196921,-0.9405782069079578,-0.03330186754465103,-0.8875533831305802,0.4858212284743786,0.018391262739896774,-0.4432326043024659,-0.4446176844649017,0.7979064248502254,0.3105757706798613,-0.6069755447097123,-0.9668434672057629,-0.06313556851819158,0.2484999350272119,-0.7981873485259712,-0.13391340104863048,0.845996608491987,-0.6755654779262841,-0.0784561987966299,-0.2642768886871636,0.08917517540976405,0.7946519064716995,-0.29085972951725125,0.6862706141546369,-0.2115004020743072,0.013530455064028502,0.07082076789811254,0.3508789539337158,-0.9585236320272088,-0.4040424800477922,-0.5256302785128355,-0.9299013731069863,0.8943294603377581,0.805620217230171,0.6156486319378018,0.5280116708017886,-0.8132319711148739,-0.8761680582538247,-0.8676013527438045,-0.12785530928522348,0.9881877959705889,0.18528669700026512,0.5118159027770162,-0.7654461492784321,-0.8289032964967191,-0.0021340101957321167,0.3998125405050814,0.43547307094559073,-0.6859546490013599,0.6758919400162995,0.4923050017096102,0.6718410355970263,-0.6191593748517334,-0.7820507409051061,-0.3254984407685697,-0.3825022969394922,-0.7900755871087313,0.007065342273563147,0.36681841081008315,0.19961624266579747,-0.1640517394989729,-0.07080016750842333,0.8400345635600388,0.7130945473909378,-0.02353160595521331,-0.610740905161947,0.4490725938230753,0.5128896157257259,-0.7406133012846112,-0.703957352321595,0.016996705438941717,0.04385408665984869,-0.6568033453077078,-0.6690083560533822,-0.9335359646938741,0.9839134011417627,0.7295158854685724,-0.10535153234377503,0.12166274106130004,-0.9469689461402595,-0.7590837310999632,-0.5098581127822399,0.23161868145689368,-0.6034231060184538,-0.34770008735358715,-0.5445148940198123,0.4611013582907617,-0.5864575975574553,-0.4757501259446144,-0.28758138604462147,-0.2512548374943435,0.44553539669141173,0.18405691115185618,-0.0038394341245293617,0.09071805840358138,0.08941849274560809,-0.7926990608684719,-0.1778696971014142,-0.6100654737092555,0.6155507583171129,-0.16343427682295442,0.0639041499234736,0.8481766087934375,0.30541684944182634,-0.27267555659636855,0.8455306016840041,-0.523671620991081,-0.4147613230161369,0.4151967125944793,0.21526197623461485,0.1324765090830624,0.0989223220385611,-0.30595907755196095,0.34840464079752564,-0.9165903204120696,0.1169342715293169,-0.9151725075207651,0.21116203721612692,-0.8638419276103377,-0.6895343000069261,-0.9531308519653976,-0.4933923506177962,-0.03136344812810421,-0.7187483957968652,-0.33031695475801826,-0.18676989478990436,-0.434606668073684,-0.6684781378135085,0.3300981167703867,0.8387768506072462,0.20091895060613751,0.0163811263628304,-0.06842981232330203,0.4349439535290003,0.7619295688346028,0.6863185870461166,0.14110866840928793,0.9565529320389032,0.5277147423475981,0.6993000116199255,-0.19137502508237958,-0.17558832094073296,-0.31457261368632317,0.06471720105037093,-0.7319292002357543,0.6672157300636172,-0.9600184978917241,0.5786065827123821,-0.22906786995008588,-0.6199110765010118,-0.3897147630341351,-0.5004130457527936,-0.4753394559957087,-0.5519484970718622,-0.3748265150934458,-0.44310679705813527,-0.2043675845488906,0.4394107242114842,0.7501006489619613,0.9497190159745514,0.6489887037314475,0.05340012302622199,-0.20479732286185026,0.8487531174905598,0.18741252785548568,-0.16278401529416442,-0.8575900099240243,0.4351398767903447,0.48588064406067133,0.1003579362295568,-0.3887337548658252,-0.7946720500476658,-0.6266637537628412,-0.02974614966660738,0.5038095880299807,0.3848438486456871,-0.7767265378497541,-0.8238391308113933,0.17309255013242364,0.7284101056866348,0.9514902606606483,0.747992196585983,-0.8705298001877964,-0.6935790809802711,-0.7355602490715683,-0.7277711685746908,-0.4262448768131435,0.98573158076033,-0.6630240273661911,-0.9485327610746026,-0.8289234139956534,0.21442775055766106,0.2800475722178817,-0.457502868026495,-0.8184357671998441,0.7117678700014949,0.42773362807929516,-0.8202493651770055,0.9536241814494133,0.5696096061728895,0.992012667004019,-0.6806447189301252,-0.41479010274633765,-0.6978136207908392,0.7880293927155435,0.9623062163591385,0.9216590719297528,-0.0907701887190342,-0.38212576881051064,-0.30919012520462275,-0.6302251680754125,-0.010062994435429573,-0.7939238524995744,0.6204866631887853,-0.5123058897443116,-0.10805957950651646,0.17746535036712885,0.12470080051571131,-0.22887261305004358,0.8889179676771164,-0.48839363688603044,-0.9109531003050506,-0.8600021149031818,-0.01875267131254077,0.3567838710732758,0.8293832405470312,0.6488958289846778,-0.2741734138689935,-0.15188804687932134,-0.43970224959775805,-0.787990378215909,0.5147369899787009,0.6154491505585611,-0.7285075853578746,0.15128835570067167,-0.5783909638412297,-0.40184310311451554,-0.8006699569523335,0.2956171059049666,-0.26927772676572204,-0.1822073245421052,0.6339593264274299,-0.8685388620942831,-0.8024630690924823,-0.29490317218005657,-0.5295537444762886,-0.2964255306869745,0.8765863114967942,0.25787346716970205,-0.07405980303883553,-0.5443412680178881,-0.27645340422168374,0.5356665914878249,-0.014560478739440441,0.006817650981247425,-0.8880423144437373,-0.6224487037397921,-0.6560459486208856,0.20780199626460671,-0.35490674106404185,-0.796385332942009,0.17778297420591116,-0.1721355626359582,-0.02110598748549819,0.1937934053130448,0.02487297309562564,-0.7783899884670973,-0.8491412815637887,-0.5613018958829343,-0.500864268746227,-0.9645408494397998,0.8262423290871084,-0.23012987477704883,0.7284546485170722,0.9987287884578109,0.08147137891501188,-0.8871485590934753,0.6281698127277195,-0.08342673303559422,0.11924761580303311,0.30487636663019657,0.6694140057079494,-0.22349325567483902,0.5732347737066448,0.599012665450573,0.18963254475966096,0.044349775183945894,0.035057312808930874,-0.9793783724308014,-0.6388949300162494,0.2733108839020133,-0.2523049572482705,-0.617011439986527,0.5061121801845729,-0.8040260607376695,-0.6770806573331356,0.6351954210549593,0.5313899395987391,0.9308550073765218,0.615720123052597,0.6198475859127939,-0.3590771798044443,-0.13215720001608133,0.5034215236082673,0.7759262206964195,-0.9392142668366432,-0.21586013725027442,0.0883002351038158,-0.9626065730117261,0.026932948268949986,0.23752130893990397,0.4778730124235153,0.8840706720948219,0.963245265185833,0.487957120873034,0.3803168283775449,-0.5010794126428664,0.289246017113328,0.5930331884883344,-0.610736783593893,0.6620849943719804,0.9400641550309956,0.7732504489831626,0.16620087902992964,-0.7541759633459151,-0.9548410135321319,-0.04959539044648409,-0.6934481477364898,0.16454902524128556,-0.06360374391078949,-0.5599413863383234,-0.8288658405654132,0.39811791526153684,-0.5380964023061097,-0.14151945803314447,-0.993142481893301,-0.5989458872936666,0.19693925511091948,0.5718998275697231,0.24909949768334627,-0.9951781518757343,0.42811895394697785,-0.5012508318759501,-0.6187358470633626,-0.2744479114189744,0.8023314108140767,0.31316581135615706,-0.3352338238619268,0.42694403463974595,-0.5606656922027469,-0.6459425031207502,-0.6294183759018779,-0.3168700388632715,-0.5261921407654881,0.42506728414446115,0.4428182109259069,-0.29567244509235024,-0.43412452563643456,-0.04002893948927522,0.7749989023432136,0.5228368719108403,0.4765440705232322,0.31393540324643254,-0.9965549791231751,-0.5033325059339404,-0.30911394907161593,-0.06491420324891806,0.18633710965514183,-0.1419592802412808,0.46192766074091196,-0.7944275187328458,-0.746115165296942,0.12361803743988276,0.6319285403005779,-0.7712755082175136,0.2973046679981053,0.22243504645302892,0.9132120213471353,0.545898116659373,0.38282786682248116,-0.2771202279254794,-0.9400756629183888,0.6661905702203512,-0.9827042217366397,0.17485022265464067,0.4597893888130784,-0.8228513663634658,-0.6195708541199565,-0.789120904635638,-0.7980389199219644,0.8882687790319324,0.39129474107176065,-0.3164626881480217,0.4450757121667266,-0.018250140827149153,-0.5985967325977981,0.8916038298048079,-0.3111689332872629,-0.6555943442508578,0.37589432252570987,0.4271001503802836,-0.1569907907396555,0.6841490673832595,0.9248449658043683,0.2539808237925172,-0.0014299070462584496,0.1984406067058444,0.18669328512623906,0.8631677399389446,0.3843912649899721,-0.49281909968703985,-0.0502970302477479,0.25263452809304,-0.8395975646562874,-0.08893302641808987,0.2812606212683022,-0.8425580342300236,0.9017417435534298,0.4497593776322901,-0.6868779840879142,-0.21054668119177222,0.4278506711125374,-0.33295487333089113,0.3014649231918156,0.8770003546960652,-0.8760538920760155,0.34818967431783676,-0.8247306672856212,0.700661635491997,0.38377638068050146,-0.5959309325553477,0.5235332609154284,-0.6704377741552889,-0.16022182814776897,-0.7173013305291533,0.8770061610266566,-0.3889371184632182,0.35375403612852097,0.3439317746087909,0.6301805847324431,0.7485730927437544,-0.06971197063103318,-0.7523659612052143,0.3299060664139688,0.6961940857581794,0.2640377995558083,0.13849434163421392,-0.3938695094548166,-0.7449930626899004,-0.5925582651980221,-0.6575737884268165,-0.8661069539375603,0.10801514238119125,0.9169895355589688,0.18032246781513095,0.7504648356698453,0.5352912694215775,-0.8032211759127676,-0.5200291527435184,0.41463185008615255,0.43290519062429667,0.8325271857902408,0.7305782800540328,-0.12392104603350163,-0.3508467390201986,-0.5478809960186481,0.8281014864332974,0.8940432113595307,0.07795409951359034,0.19615471083670855,0.8779830825515091,0.7805271516554058,0.8693221784196794,0.26598480390384793,-0.98709775833413,0.9322130992077291,0.5714398860000074,-0.6960597559809685,0.055391141679137945,-0.7158570033498108,0.12667972035706043,0.33872544625774026,-0.3677298966795206,0.9276362732052803,-0.5925894170068204,-0.0168778239749372,0.34679775359109044,-0.40283824503421783,0.6130111524835229,-0.5477342833764851,0.24575437186285853,0.17102651670575142,0.8460938790813088,0.6534533826634288,-0.31717572873458266,-0.25259811664000154,0.46703028958290815,0.6523023988120258,-0.34206153778359294,0.16822136472910643,-0.5091440114192665,-0.6455023400485516,-0.536792891100049,-0.06614532647654414,0.5495424070395529,-0.9762892345897853,0.6163346888497472,0.7021438381634653,-0.8605216448195279,0.6454794523306191,-0.1651183059439063,-0.20037147728726268,-0.14037547819316387,0.146314715500921,-0.4044905500486493,0.6825633412227035,0.31947491969913244,0.1661702198907733,0.6748928930610418,-0.6649019080214202,-0.3848126162774861,-0.3610087572596967,0.751800608355552,-0.17415042873471975,0.42630330938845873,-0.32164603332057595,0.558146383613348,0.743528398219496,-0.6660295403562486,-0.9554931274615228,0.9015756361186504,-0.9216432087123394,0.6864147935993969,0.3668483919464052,-0.6015438428148627,0.8291797013953328,-0.6588783995248377,-0.31973531981930137,0.755195545963943,-0.19707927433773875,0.28516638232395053,-0.6383995153009892,0.3629194744862616,0.49178082635626197,-0.12367615289986134,-0.42862640460953116,0.8093344438821077,0.24525460554286838,-0.697486377786845,-0.3556262692436576,-0.8246845006942749,-0.32619465375319123,0.26295582205057144,0.6056396402418613,0.5402702838182449,-0.5490052681416273,-0.6283505097962916,0.06609661690890789,-0.7548582749441266,-0.12601956306025386,-0.6603706413879991,0.5892658187076449,-0.7817036942578852,0.19955707294866443,0.38160758884623647,0.6581678856164217,0.32724072504788637,-0.89508455991745,0.8279964998364449,-0.6088271443732083,-0.5902732624672353,-0.8406647746451199,-0.8540336303412914,0.14922320051118731,-0.24234641017392278,0.8075347393751144,-0.3551876759156585,-0.9377876040525734,0.05561754619702697,0.8622367857024074,-0.3118471521884203,-0.18187607638537884,0.7185103693045676,0.1503309514373541,-0.1185348960570991,-0.8968391828238964,0.3967422409914434,-0.07623563660308719,0.7816657903604209,-0.09743979433551431,-0.15303218690678477,-0.9498093482106924,-0.004108407534658909,-0.7941410029307008,0.8145431908778846,-0.7935962663032115,-0.8316095289774239,-0.26832858053967357,0.6226880461908877,-0.5844756443984807,0.8703567837364972,-0.7606413778848946,0.6775099751539528,-0.9068065900355577,0.5994088733568788,0.5987125374376774,0.7056439127773046,-0.1424847529269755,0.48827580735087395,-0.11073372093960643,-0.5546174263581634,0.6895777084864676,-0.11925014946609735,0.6671739066950977,0.15054496191442013,0.1433378839865327,0.6962581784464419,0.31505157612264156,-0.27594940597191453,0.6388773168437183,0.11631469475105405,-0.6792587665840983,0.20817705756053329,-0.47777847899124026,-0.16513551492244005,-0.6678882567211986,-0.7457384499721229,-0.38562893588095903,-0.8530654367059469,0.27144144428893924,-0.34395507210865617,-0.08533180132508278,0.313048820476979,-0.8891380131244659,0.08460364816710353,-0.014808308333158493,-0.5149550600908697,-0.6466938010416925,-0.3161026728339493,0.18126151571050286,-0.34160685213282704,-0.9293897752650082,-0.6376889515668154,-0.6322247218340635,-0.56022984161973,0.5009706411510706,0.8788279984146357,0.0997407678514719,-0.9206208637915552,0.6814118498004973,0.15355050936341286,0.5157348494976759,-0.4664436364546418,-0.6475855321623385,-0.950946073513478,0.8883502730168402,-0.6215007589198649,0.5271070944145322,0.17896363977342844,0.9875859143212438,0.5832045781426132,-0.9906877656467259,-0.19800492143258452,-0.6488309185951948,0.5283495523035526,-0.5459203394129872,0.5962600540369749,0.06617289921268821,-0.542249150108546,0.5330888284370303,0.3895391905680299,0.2351702069863677,0.39910227339714766,-0.6875699171796441,0.06911467481404543,0.903357164002955,0.39325375156477094,-0.7185948924161494,0.1885427189990878,-0.7424609698355198,0.7903230567462742,-0.6789781022816896,0.08527867961674929,0.287993292324245,-0.06061816308647394,0.044419520534574986,-0.5907656154595315,0.527278970927,-0.8429007884114981,-0.5157512561418116,-0.8912387629970908,-0.6530260974541306,-0.5627774149179459,-0.03875345177948475,-0.12714127637445927,-0.6412146664224565,0.11117598926648498,-0.0005954098887741566,0.7421965324319899,0.5415328424423933,0.2653401754796505,-0.9659169283695519,0.9394779624417424,0.9860728462226689,0.07141085295006633,0.06877295346930623,-0.8115214668214321,-0.2183094946667552,0.7601130404509604,0.9965126668103039,0.9239386334083974,-0.16115996288135648,0.64042281312868,0.9156968356110156,0.7715596673078835,-0.5450263675302267,-0.007764080073684454,0.6670362059958279,-0.7422312973067164,-0.47200254490599036,0.8663503564894199,-0.7791199418716133,-0.6686215749941766,-0.9657932855188847,0.8095787041820586,0.4583993167616427,0.9136767643503845,0.21061282698065042,-0.6633972432464361,0.48459256952628493,-0.6303609148599207,0.012733758892863989,0.06885823095217347,-0.9204880744218826,-0.9423002609983087,-0.06390327913686633,-0.40239849081262946,-0.2980808592401445,-0.3760521481744945,0.6446734224446118,0.3851034729741514,0.12608311511576176,0.24909641593694687,0.16489294916391373,-0.610302412416786,0.037885789293795824,-0.341027841437608,-0.16753384051844478,-0.7908121473155916,0.21154258539900184,0.235784865450114,-0.13057415327057242,-0.6433403310365975,-0.3837397862225771,0.039570254273712635,0.3710410534404218,0.6041547632776201,0.23885814659297466,0.9165495932102203,-0.8004174870438874,-0.729369028005749,-0.004971773829311132,-0.537079022731632,0.6891053291037679,0.8768234639428556,0.6835019951686263,-0.13341664988547564,0.20304144453257322,0.43015279714018106,0.6876888484694064,-0.6800128794275224,0.18701457604765892,-0.6122576035559177,0.362369982060045,-0.742730641271919,-0.7679835967719555,-0.639108587987721,0.6780187096446753,0.528802175540477,0.8074439563788474,-0.4074022741988301,-0.31894949031993747,0.09701697155833244,0.25722414115443826,-0.8368318779394031,0.26577281253412366,0.3853503242135048,0.44994747499004006,-0.47656786860898137,0.45306592294946313,0.8263758881948888,-0.060582642909139395,-0.501688196323812,-0.5416414197534323,0.9500825377181172,0.6581462537869811,-0.1106597501784563,-0.6988190026022494,-0.6463342173956335,0.11117641534656286,0.20905283698812127,0.234237315133214,0.7768490430898964,-0.7386632300913334,-0.16656255815178156,-0.6010639611631632,-0.49989766208454967,-0.9535452602431178,-0.9634198327548802,-0.7701888405717909,-0.056041219271719456,0.11463039927184582,-0.8028967729769647,-0.3927508960478008,-0.3854622673243284,-0.7690874254330993,0.8074727589264512,-0.7574583310633898,-0.4879685156047344,-0.19130238750949502,-0.3597639398649335,-0.5449717049486935,-0.25376626709476113,0.06852322397753596,-0.3870677389204502,0.8823200268670917,0.3879189249128103,0.5385669157840312,0.029982049483805895,-0.18071274366229773,0.6482431986369193,-0.759833621326834,-0.9021634943783283,0.49156236555427313,0.6352038653567433,-0.051876041572541,-0.9527998520061374,0.5383987342938781,0.991312438622117,-0.8607962154783309,-0.7939441301859915,-0.3805201346985996,-0.786088639870286,0.3064910755492747,0.19016557419672608,-0.2446697079576552,0.42346388567239046,-0.7485444783233106,0.6950834887102246,0.5905434899032116,-0.5314350901171565,-0.8617876460775733,-0.660316351801157,-0.2756870496086776,0.1662663030438125,-0.21307111531496048,0.9534848141483963,0.5340061290189624,-0.913389487657696,-0.45336670987308025,0.9180686520412564,-0.5876375213265419,0.6686133006587625,-0.30685447016730905,-0.8515737568959594,0.7781750285066664,-0.8394787185825408,-0.8878533476963639,0.5177955008111894,-0.9812419945374131,0.4331708010286093,-0.2411050251685083,0.5210442822426558,-0.9732663575559855,-0.017713263630867004,0.25517764827236533,-0.2790191676467657,-0.24841679353266954,0.9030257989652455,-0.12174628209322691,-0.2650025845505297,0.5330783580429852,-0.8683511563576758,-0.07886510575190187,-0.9619086165912449,0.13923058891668916,-0.9050642396323383,0.11000974057242274,-0.5061191082932055,0.3446484012529254,0.32632389664649963,-0.08227829309180379,0.8912413185462356,-0.64655533246696,0.6664926363155246,-0.3345691035501659,-0.6705708466470242,0.9902120078913867,-0.16185609064996243,0.23861809819936752,0.20996128348633647,0.26583024580031633,0.25979938777163625,-0.2485466692596674,-0.7967188903130591,-0.7236673925071955,-0.831708216574043,-0.07124704355373979,0.7908553648740053,-0.9696605973877013,0.29403434321284294,0.856136966496706,0.5046444218605757,-0.5808233343996108,-0.7750469287857413,-0.7527488013729453,0.3612750703468919,0.2702788943424821,-0.5255834464915097,0.13481042021885514,0.39070695638656616,-0.4836195698007941,-0.5594851020723581,-0.7723102681338787,0.09350849222391844,0.824145243037492,-0.5858286623843014,0.6705120424740016,0.969686665572226,-0.8278312920592725,-0.08053844841197133,0.0014604371972382069,-0.192298527341336,-0.23508594976738095,-0.6688371682539582,-0.4334027571603656,0.11157471407204866,0.7882797727361321,-0.7144828350283206,0.09223219705745578,-0.45866149896755815,0.1879158173687756,-0.6645059967413545,0.03774385713040829,0.3445853660814464,0.28251210879534483,0.4952606363222003,-0.7792944982647896,0.8962796214036644,-0.9386403379030526,0.48792431876063347,-0.7028606254607439,-0.13480131281539798,-0.5260760430246592,-0.1695535914041102,-0.5876258960925043,0.6755303638055921,0.4462075838819146,-0.9741418669000268,0.11140451859682798,-0.12625403329730034,-0.5136138219386339,0.5517135937698185,0.32244682032614946,0.7063752505928278,-0.5299197765998542,0.033249510917812586,0.31624072045087814,0.7372831357643008,-0.9784903298132122,0.824067484587431,0.2684463672339916,0.886353709269315,-0.6465354580432177,-0.527751054149121,-0.20340986363589764,-0.7216273290105164,0.9622555142268538,0.975442030467093,-0.46168048260733485,0.3222095719538629,0.12025672383606434,-0.7741759940981865,-0.7366903116926551,0.9563821251504123,0.5221455502323806,0.6659136107191443,-0.737493387889117,0.8671616711653769,-0.002950585912913084,-0.38891858933493495,-0.8483314835466444,-0.3699588696472347,-0.2728667063638568,0.8292772267013788,-0.8859529104083776,0.6968232546932995,-0.16340850666165352,-0.8767424188554287,-0.15749829867854714,0.7975223124958575,-0.8859328329563141,-0.8692299798130989,0.20818411512300372,0.005055402871221304,-0.3703925064764917,-0.7702341177500784,-0.8368923626840115,-0.8885135925374925,0.3775349883362651,0.49037788808345795,0.3857093178667128,-0.9049577247351408,0.3904735059477389,-0.15782102849334478,0.28731049317866564,0.08312393492087722,-0.03378641000017524,0.4394631669856608,0.6802637954242527,-0.0860259342007339,0.32818273501470685,0.02650007652118802,0.23930766759440303,0.3702706634066999,0.4439457361586392,0.05113202566280961,0.38482469553127885,0.3285845974460244,-0.7594543783925474,-0.517239878885448,0.4825952551327646,-0.39489625953137875,-0.7306141210719943,-0.3181029409170151,-0.714140563737601,-0.9363079690374434,-0.803704054094851,0.9456201721914113,-0.16590810380876064,0.5516750421375036,-0.9772325460799038,0.6928695468232036,0.07936733076348901,-0.21733898296952248,0.4954106002114713,0.35178029304370284,-0.7416067915037274,0.07360375439748168,0.8995078853331506,0.46103381691500545,-0.7122609363868833,0.9427810097113252,0.11795771075412631,0.8962961602956057,-0.35564396111294627,-0.12449533585458994,-0.694737836252898,-0.964334458578378,0.5113370418548584,-0.8097782391123474,-0.9933768636547029,-0.7306475471705198,0.8825815999880433,-0.70700903236866,0.3876066552475095,0.20264430344104767,0.9117773398756981,0.6645302763208747,-0.784724966622889,0.07628968451172113,-0.8848504885099828,0.7141853328794241,0.5326209967024624,-0.9312735670246184,-0.31522862426936626,0.9750789059326053,0.8822509795427322,0.8005481213331223,0.08798915054649115,-0.2475606808438897,-0.4602173874154687,0.49137960840016603,-0.5303859165869653,0.4389120265841484,0.3354667532257736,-0.5574237760156393,0.004705140832811594,0.9651794917881489,0.27254499215632677,-0.7696631709113717,0.16401161113753915,-0.8831931836903095,0.8268108074553311,-0.03560910886153579,-0.07166554033756256,-0.8269276726059616,-0.7338661421090364,-0.780358721036464,0.506517834495753,0.049497092608362436,0.5323533616028726,0.3382071014493704,-0.04275744408369064,0.014667895622551441,0.5075224991887808,0.6824089526198804,-0.898086357396096,-0.31919410871341825,0.9430223014205694,-0.3149393517524004,-0.09567477647215128,-0.726295574568212,-0.28885530307888985,-0.23546676896512508,0.5349502163007855,-0.16595797566697001,0.7228091568686068,-0.49999814946204424,-0.28036485612392426,-0.5493844323791564,0.14762880420312285,0.8664137022569776,0.9952890942804515,-0.24209622852504253,-0.5646692281588912,-0.2091634152457118,0.9982698396779597,0.542740082833916,0.3858880940824747,0.472871629986912,-0.11869176663458347,0.7918352172710001,0.42506103264167905,-0.30756540363654494,0.9425871418789029,-0.00853855861350894,0.1538831409998238,-0.9778195368126035,-0.9817504826933146,-0.5380832548253238,0.7814503195695579,-0.5860739685595036,0.14164749765768647,-0.9101465316489339,0.3332014624029398,0.03710785927250981,-0.3789730528369546,0.0829919264651835,0.09325779508799314,0.18612067587673664,0.5052563305944204,-0.4840210545808077,0.1280880868434906,-0.31480348110198975,0.17511056270450354,0.6775521347299218,-0.5149218309670687,0.4315702677704394,0.2939181476831436,-0.8820437784306705,0.8324923096224666,0.9962434712797403,0.34053526166826487,0.3365897750481963,0.49650339037179947,0.267064000479877,0.23164718924090266,-0.37867056392133236,0.9602499990724027,0.08886837307363749,0.8920592800714076,0.051612494979053736,0.6036544013768435,0.9116078987717628,-0.8994170059449971,-0.45132335694506764,0.24307830911129713,0.9708194453269243,-0.238738676533103,0.14763712277635932,-0.3920109677128494,0.44726421870291233,0.14082359848544002,0.03986624628305435,-0.7482093693688512,-0.9027243568561971,0.5502156089060009,0.7716150428168476,0.613712225575,0.20547495363280177,0.7297079935669899,-0.6928226728923619,0.8969050003215671,-0.014169906731694937,-0.34636438824236393,-0.8357069790363312,-0.285113079007715,0.7617060919292271,-0.44557418394833803,0.2768674651160836,0.06396115059033036,0.4788897456601262,0.7346100932918489,0.7101847534067929,0.9275165135040879,0.29775901418179274,0.3436632049269974,-0.30920558609068394,0.767532589379698,-0.23011536989361048,0.15438241977244616,-0.7872787681408226,0.13912390219047666,0.48042617179453373,0.24925319524481893,0.006965686101466417,0.3670716038905084,0.3891654787585139,-0.4183845892548561,-0.9517038972117007,0.10531664779409766,0.7963999211788177,0.9711835994385183,0.16214702650904655,-0.8598215519450605,0.5248589366674423,0.024139486253261566,0.9869895852170885,-0.9483928554691374,0.5721065304242074,0.3884410997852683,-0.07799794990569353,-0.9507282236590981,-0.5624208142980933,-0.5311673432588577,0.1482518226839602,0.6936362870037556,-0.5750623056665063,-0.8230164246633649,-0.24394312454387546,0.9213322354480624,-0.9670444303192198,0.354615880176425,0.5461364043876529,0.047365146689116955,0.30282300477847457,0.14639922697097063,0.4426844413392246,0.18354301154613495,0.5325867086648941,0.590513420291245,0.9659615391865373,-0.7738363691605628,0.02331221103668213,0.067931336350739,-0.6019212468527257,-0.615488002076745,-0.1530403085052967,0.9569169683381915,-0.3696071649901569,0.6847108770161867,-0.7189296502619982,0.3234104048460722,0.3249543812125921,-0.55845493869856,-0.8803956150077283,-0.32657630601897836,-0.695786957629025,0.37001016177237034,-0.9354898417368531,-0.8932247837074101,0.07466131262481213,0.8601274439133704,0.06503239274024963,0.14730556076392531,-0.9880598788149655,0.24586229864507914,-0.7367330999113619,-0.9005158198997378,0.6064697727560997,0.645564871840179,-0.7349365768022835,-0.08855472272261977,-0.6928152977488935,-0.8407943663187325,-0.4288689950481057,0.9442760413512588,-0.3835895205847919,-0.05356205301359296,-0.9537973888218403,-0.08723279926925898,-0.4227822073735297,-0.5464294436387718,-0.43075885716825724,0.6982804629951715,0.764734857250005,-0.6738969101570547,-0.41716262651607394,0.5939727029763162,-0.808561397716403,-0.9254899662919343,-0.13960739830508828,-0.04687441512942314,-0.6987598086707294,0.43721449514850974,-0.29951547691598535,0.2811202178709209,0.5911432816646993,0.7401332934387028,0.3503483715467155,0.19017149461433291,0.9141630427911878,-0.3188328971154988,0.2813443411141634,-0.9046980366110802,0.9039818146266043,-0.9665397126227617,0.19389962125569582,0.6603289251215756,-0.7871867311187088,0.39390866085886955,0.9999548327177763,0.014032065868377686,0.8846187903545797,0.2188740549609065,-0.8195610158145428,-0.0028527043759822845,0.8788203485310078,-0.6170271458104253,0.16733563877642155,-0.045524599961936474,-0.014747931156307459,0.09127788851037621,-0.08924962673336267,0.4142291280440986,-0.47550321836024523,0.6064174296334386,0.6794868586584926,0.24598121643066406,0.2703232024796307,-0.962846398819238,0.6157535980455577,-0.10573412105441093,0.844960292801261,-0.5653114849701524,-0.3899520239792764,-0.22497611353173852,0.2794186142273247,0.39592245733365417,-0.731634727679193,-0.4752380754798651,0.028044065460562706,0.1154787577688694,-0.7522824327461421,0.8086269311606884,-0.8461893671192229,0.6063311295583844,-0.6384782646782696,0.3183016125112772,0.9660196318291128,-0.262750290799886,0.46693542692810297,0.1283788187429309,-0.9902647226117551,0.5719449929893017,0.6252928557805717,-0.5713615822605789,-0.9678116547875106,0.8058887938968837,0.4085230380296707,-0.2576669789850712,-0.719501796644181,-0.2510519763454795,0.5608876850455999,0.9010039544664323,-0.9890218763612211,0.09159907698631287,0.4770656176842749,0.8450649413280189,0.15436520241200924,-0.40585046960040927,0.17968733794987202,0.2124803364276886,-0.5962028414942324,-0.24870774149894714,-0.3824199605733156,0.2681811503134668,0.47352433670312166,-0.3231817311607301,-0.5840800050646067,0.5308908401057124,0.6520089190453291,-0.6776710050180554,0.7614937550388277,-0.11507852887734771,-0.09713165974244475,0.5577189144678414,0.9725016034208238,-0.5087668155319989,-0.04142170213162899,0.04155802959576249,-0.20613253954797983,0.6094963508658111,-0.5158004546537995,0.965805362444371,0.8553539966233075,0.38574072625488043,-0.9007010767236352,-0.6333625772967935,0.1916618342511356,-0.246595389675349,-0.7165794903412461,0.6878455616533756,0.8371631382033229,0.7944903583265841,0.2391393524594605,0.005590691231191158,-0.613354233559221,0.9378794077783823,0.5556531143374741,-0.41823840234428644,-0.14247954450547695,-0.11258419929072261,-0.13895034743472934,0.30457068141549826,-0.7325715725310147,0.5131844175048172,0.36358861392363906,0.39592136116698384,-0.2851669699884951,-0.02197609981521964,0.8063608296215534,0.8725638841278851,0.01746512996032834,0.23023256286978722,0.71549830166623,0.09956875257194042,-0.5103125185705721,-0.05647117178887129,-0.7149065458215773,0.2513915952295065,-0.21733229840174317,0.7016438930295408,0.6412469381466508,0.009585379622876644,0.3806518577039242,0.8588157990016043,-0.3969856142066419,0.8421461801044643,-0.6897058188915253,-0.045936199836432934,-0.6111424318514764,-0.8349623112007976,0.1957019679248333,0.2513105794787407,0.855116032063961,-0.8073591277934611,-0.8402392063289881,-0.5729774739593267,-0.17364460043609142,0.21903169667348266,-0.9250552891753614,0.8943489212542772,0.23888115165755153,-0.5063403663225472,0.9539214451797307,0.18089711386710405,-0.6079300497658551,0.33333229552954435,-0.20654116990044713,-0.7784571475349367,0.5425493959337473,0.7774272654205561,-0.925411659758538,-0.932303209323436,0.19733814848586917,0.7652878686785698,-0.9543584412895143,0.16933867754414678,-0.18370801443234086,0.6434982502833009,-0.5047219754196703,-0.6892198505811393,0.38996592443436384,-0.38639432843774557,-0.5053079184144735,0.6589147411286831,-0.4337612632662058,-0.5391608984209597,-0.5315723391249776,0.9009272311814129,-0.5246219183318317,-0.3831145325675607,-0.33262867107987404,0.22507135244086385,0.4174105357378721,-0.7106346124783158,-0.6342966901138425,-0.07804881455376744,0.7004998750053346,0.5515357716940343,-0.26070283679291606,-0.8309062742628157,-0.313501987606287,-0.29907308239489794,0.07822884945198894,-0.6090616714209318,-0.6224366049282253,0.2865367936901748,-0.6357208820991218,0.136624694801867,-0.5124788610264659,-0.5399685301817954,0.4298593709245324,-0.777426574844867,0.26549420692026615,0.7792481752112508,0.7631422765552998,-0.4111155718564987,-0.14233015617355704,-0.6265675136819482,0.20576675236225128,0.08366844803094864,0.42818969022482634,0.27704146411269903,-0.14666447695344687,0.6328271999955177,0.39307632436975837,0.13046053471043706,-0.27314454782754183,-0.5764319216832519,-0.9504436911083758,-0.619845449924469,-0.5789068089798093,-0.46536531345918775,0.40410587191581726,-0.8481297316029668,0.6739513925276697,0.3805983290076256,0.2156463642604649,-0.9297972111962736,0.6761171817779541,0.731536515057087,-0.6198148587718606,0.7686597439460456,0.03872682573273778,-0.4067091392353177,-0.6229592692106962,0.8602967406623065,-0.7352217165753245,0.11377324210479856,0.299782944843173,-0.8233278379775584,-0.11113992240279913,-0.8530094381421804,0.7875909120775759,0.43241070164367557,-0.8830388360656798,0.4760160641744733,0.5192324719391763,-0.5388723388314247,-0.2364879511296749,-0.649683908559382,0.6592105496674776,0.20770415291190147,0.48867960972711444,0.7996474476531148,-0.6692921817302704,0.8706241454929113,-0.9250860256142914,0.6574896085076034,0.9157009720802307,-0.9471849650144577,-0.7084458908066154,0.9878342286683619,-0.910694292280823,-0.8540927805006504,0.9088637195527554,-0.6667697727680206,-0.31677444046363235,-0.3748217145912349,-0.673326862975955,-0.8321045953780413,-0.4676579958759248,0.5673693032003939,-0.7795528471469879,0.02488198457285762,-0.7483764160424471,0.5230229999870062,-0.10349260549992323,-0.1229683100245893,-0.9355839886702597,0.5924527058377862,0.9478851240128279,0.8524567089043558,0.25359439197927713,0.4630873049609363,-0.6575891873799264,-0.4595194933936,0.6795516614802182,-0.1770206387154758,-0.6176198259927332,0.38114589964970946,-0.19602969381958246,-0.7811678112484515,-0.8743498125113547,0.6568884341977537,-0.35449674213305116,0.8071789154782891,-0.536770564969629,0.8494747490622103,-0.3525747684761882,0.9650070639327168,0.863442883361131,-0.9292396963573992,-0.016529740765690804,0.6640135734342039,-0.9506324427202344,-0.19768273876979947,-0.6926155681721866,-0.45443127444013953,-0.5312931672669947,0.6251125722192228,-0.45891067758202553,0.31665770523250103,-0.08709776913747191,-0.538985984865576,0.791669478174299,0.8322185543365777,-0.0431094141677022,0.10042845318093896,-0.00014289561659097672,0.9380305358208716,-0.2935497877188027,-0.2750258450396359,0.3642086312174797,-0.46420884504914284,0.6391414301469922,-0.0037620035000145435,0.22203119937330484,-0.5469824648462236,0.16761001525446773,0.9450475377961993,-0.38596323411911726,0.98176025506109,0.8351758304052055,-0.1510542626492679,0.7748708822764456,-0.2552652577869594,-0.16427268087863922,0.3409738941118121,0.7613788801245391,-0.5929161147214472,0.7816578382626176,0.9249121057800949,-0.9109497140161693,0.4661109154112637,0.686993757262826,-0.46031316835433245],"type":"scatter3d"},{"customdata":[["2024-07-24T17:35:06.010000"],["2024-07-24T17:35:07.010000"],["2024-07-24T17:35:08.010000"],["2024-07-24T17:35:09.010000"],["2024-07-24T17:35:10.010000"],["2024-07-24T17:35:11.010000"],["2024-07-24T17:35:12.010000"],["2024-07-24T17:35:13.010000"],["2024-07-24T17:35:14.010000"],["2024-07-24T17:35:15.010000"],["2024-07-24T17:35:16.010000"],["2024-07-24T17:35:17.010000"],["2024-07-24T17:35:18.010000"],["2024-07-24T17:35:19.010000"],["2024-07-24T17:35:20.010000"],["2024-07-24T17:35:21.010000"],["2024-07-24T17:35:22.010000"],["2024-07-24T17:35:23.010000"],["2024-07-24T17:35:24.010000"],["2024-07-24T17:35:25.010000"],["2024-07-24T17:35:26.010000"],["2024-07-24T17:35:27.010000"],["2024-07-24T17:35:28.010000"],["2024-07-24T17:35:29.010000"],["2024-07-24T17:35:30.010000"],["2024-07-24T17:35:31.010000"],["2024-07-24T17:35:32.010000"],["2024-07-24T17:35:33.010000"],["2024-07-24T17:35:34.010000"],["2024-07-24T17:35:35.010000"],["2024-07-24T17:35:36.010000"],["2024-07-24T17:35:37.010000"],["2024-07-24T17:35:38.010000"],["2024-07-24T17:35:39.010000"],["2024-07-24T17:35:40.010000"],["2024-07-24T17:35:41.010000"],["2024-07-24T17:35:42.010000"],["2024-07-24T17:35:43.010000"],["2024-07-24T17:35:44.010000"],["2024-07-24T17:35:45.010000"],["2024-07-24T17:35:46.010000"],["2024-07-24T17:35:47.010000"],["2024-07-24T17:35:48.010000"],["2024-07-24T17:35:49.010000"],["2024-07-24T17:35:50.010000"],["2024-07-24T17:35:51.010000"],["2024-07-24T17:35:52.010000"],["2024-07-24T17:35:53.010000"],["2024-07-24T17:35:54.010000"],["2024-07-24T17:35:55.010000"],["2024-07-24T17:35:56.010000"],["2024-07-24T17:35:57.010000"],["2024-07-24T17:35:58.010000"],["2024-07-24T17:35:59.010000"],["2024-07-24T17:36:00.010000"],["2024-07-24T17:36:01.010000"],["2024-07-24T17:36:02.010000"],["2024-07-24T17:36:03.010000"],["2024-07-24T17:36:04.010000"],["2024-07-24T17:36:05.010000"],["2024-07-24T17:36:06.010000"],["2024-07-24T17:36:07.010000"],["2024-07-24T17:36:08.010000"],["2024-07-24T17:36:09.010000"],["2024-07-24T17:36:10.010000"],["2024-07-24T17:36:11.010000"],["2024-07-24T17:36:12.010000"],["2024-07-24T17:36:13.010000"],["2024-07-24T17:36:14.010000"],["2024-07-24T17:36:15.010000"],["2024-07-24T17:36:16.010000"],["2024-07-24T17:36:17.010000"],["2024-07-24T17:36:18.010000"],["2024-07-24T17:36:19.010000"],["2024-07-24T17:36:20.010000"],["2024-07-24T17:36:21.010000"],["2024-07-24T17:36:22.010000"],["2024-07-24T17:36:23.010000"],["2024-07-24T17:36:24.010000"],["2024-07-24T17:36:25.010000"],["2024-07-24T17:36:26.010000"],["2024-07-24T17:36:27.010000"],["2024-07-24T17:36:28.010000"],["2024-07-24T17:36:29.010000"],["2024-07-24T17:36:30.010000"],["2024-07-24T17:36:31.010000"],["2024-07-24T17:36:32.010000"],["2024-07-24T17:36:33.010000"],["2024-07-24T17:36:34.010000"],["2024-07-24T17:36:35.010000"],["2024-07-24T17:36:36.010000"],["2024-07-24T17:36:37.010000"],["2024-07-24T17:36:38.010000"],["2024-07-24T17:36:39.010000"],["2024-07-24T17:36:40.010000"],["2024-07-24T17:36:41.010000"],["2024-07-24T17:36:42.010000"],["2024-07-24T17:36:43.010000"],["2024-07-24T17:36:44.010000"],["2024-07-24T17:36:45.010000"],["2024-07-24T17:36:46.010000"],["2024-07-24T17:36:47.010000"],["2024-07-24T17:36:48.010000"],["2024-07-24T17:36:49.010000"],["2024-07-24T17:36:50.010000"],["2024-07-24T17:36:51.010000"],["2024-07-24T17:36:52.010000"],["2024-07-24T17:36:53.010000"],["2024-07-24T17:36:54.010000"],["2024-07-24T17:36:55.010000"],["2024-07-24T17:36:56.010000"],["2024-07-24T17:36:57.010000"],["2024-07-24T17:36:58.010000"],["2024-07-24T17:36:59.010000"],["2024-07-24T17:37:00.010000"],["2024-07-24T17:37:01.010000"],["2024-07-24T17:37:02.010000"],["2024-07-24T17:37:03.010000"],["2024-07-24T17:37:04.010000"],["2024-07-24T17:37:05.010000"],["2024-07-24T17:37:06.010000"],["2024-07-24T17:37:07.010000"],["2024-07-24T17:37:08.010000"],["2024-07-24T17:37:09.010000"],["2024-07-24T17:37:10.010000"],["2024-07-24T17:37:11.010000"],["2024-07-24T17:37:12.010000"],["2024-07-24T17:37:13.010000"],["2024-07-24T17:37:14.010000"],["2024-07-24T17:37:15.010000"],["2024-07-24T17:37:16.010000"],["2024-07-24T17:37:17.010000"],["2024-07-24T17:37:18.010000"],["2024-07-24T17:37:19.010000"],["2024-07-24T17:37:20.010000"],["2024-07-24T17:37:21.010000"],["2024-07-24T17:37:22.010000"],["2024-07-24T17:37:23.010000"],["2024-07-24T17:37:24.010000"],["2024-07-24T17:37:25.010000"],["2024-07-24T17:37:26.010000"],["2024-07-24T17:37:27.010000"],["2024-07-24T17:37:28.010000"],["2024-07-24T17:37:29.010000"],["2024-07-24T17:37:30.010000"],["2024-07-24T17:37:31.010000"],["2024-07-24T17:37:32.010000"],["2024-07-24T17:37:33.010000"],["2024-07-24T17:37:34.010000"],["2024-07-24T17:37:35.010000"],["2024-07-24T17:37:36.010000"],["2024-07-24T17:37:37.010000"],["2024-07-24T17:37:38.010000"],["2024-07-24T17:37:39.010000"],["2024-07-24T17:37:40.010000"],["2024-07-24T17:37:41.010000"],["2024-07-24T17:37:42.010000"],["2024-07-24T17:37:43.010000"],["2024-07-24T17:37:44.010000"],["2024-07-24T17:37:45.010000"],["2024-07-24T17:37:46.010000"],["2024-07-24T17:37:47.010000"],["2024-07-24T17:37:48.010000"],["2024-07-24T17:37:49.010000"],["2024-07-24T17:37:50.010000"],["2024-07-24T17:37:51.010000"],["2024-07-24T17:37:52.010000"],["2024-07-24T17:37:53.010000"],["2024-07-24T17:37:54.010000"],["2024-07-24T17:37:55.010000"],["2024-07-24T17:37:56.010000"],["2024-07-24T17:37:57.010000"],["2024-07-24T17:37:58.010000"],["2024-07-24T17:37:59.010000"],["2024-07-24T17:38:00.010000"],["2024-07-24T17:38:01.010000"],["2024-07-24T17:38:02.010000"],["2024-07-24T17:38:03.010000"],["2024-07-24T17:38:04.010000"],["2024-07-24T17:38:05.010000"],["2024-07-24T17:38:06.010000"],["2024-07-24T17:38:07.010000"],["2024-07-24T17:38:08.010000"],["2024-07-24T17:38:09.010000"],["2024-07-24T17:38:10.010000"],["2024-07-24T17:38:11.010000"],["2024-07-24T17:38:12.010000"],["2024-07-24T17:38:13.010000"],["2024-07-24T17:38:14.010000"],["2024-07-24T17:38:15.010000"],["2024-07-24T17:38:16.010000"],["2024-07-24T17:38:17.010000"],["2024-07-24T17:38:18.010000"],["2024-07-24T17:38:19.010000"],["2024-07-24T17:38:20.010000"],["2024-07-24T17:38:21.010000"],["2024-07-24T17:38:22.010000"],["2024-07-24T17:38:23.010000"],["2024-07-24T17:38:24.010000"],["2024-07-24T17:38:25.010000"],["2024-07-24T17:38:26.010000"],["2024-07-24T17:38:27.010000"],["2024-07-24T17:38:28.010000"],["2024-07-24T17:38:29.010000"],["2024-07-24T17:38:30.010000"],["2024-07-24T17:38:31.010000"],["2024-07-24T17:38:32.010000"],["2024-07-24T17:38:33.010000"],["2024-07-24T17:38:34.010000"],["2024-07-24T17:38:35.010000"],["2024-07-24T17:38:36.010000"],["2024-07-24T17:38:37.010000"],["2024-07-24T17:38:38.010000"],["2024-07-24T17:38:39.010000"],["2024-07-24T17:38:40.010000"],["2024-07-24T17:38:41.010000"],["2024-07-24T17:38:42.010000"],["2024-07-24T17:38:43.010000"],["2024-07-24T17:38:44.010000"],["2024-07-24T17:38:45.010000"],["2024-07-24T17:38:46.010000"],["2024-07-24T17:38:47.010000"],["2024-07-24T17:38:48.010000"],["2024-07-24T17:38:49.010000"],["2024-07-24T17:38:50.010000"],["2024-07-24T17:38:51.010000"],["2024-07-24T17:38:52.010000"],["2024-07-24T17:38:53.010000"],["2024-07-24T17:38:54.010000"],["2024-07-24T17:38:55.010000"],["2024-07-24T17:38:56.010000"],["2024-07-24T17:38:57.010000"],["2024-07-24T17:38:58.010000"],["2024-07-24T17:38:59.010000"],["2024-07-24T17:39:00.010000"],["2024-07-24T17:39:01.010000"],["2024-07-24T17:39:02.010000"],["2024-07-24T17:39:03.010000"],["2024-07-24T17:39:04.010000"],["2024-07-24T17:39:05.010000"],["2024-07-24T17:39:06.010000"],["2024-07-24T17:39:07.010000"],["2024-07-24T17:39:08.010000"],["2024-07-24T17:39:09.010000"],["2024-07-24T17:39:10.010000"],["2024-07-24T17:39:11.010000"],["2024-07-24T17:39:12.010000"],["2024-07-24T17:39:13.010000"],["2024-07-24T17:39:14.010000"],["2024-07-24T17:39:15.010000"],["2024-07-24T17:39:16.010000"],["2024-07-24T17:39:17.010000"],["2024-07-24T17:39:18.010000"],["2024-07-24T17:39:19.010000"],["2024-07-24T17:39:20.010000"],["2024-07-24T17:39:21.010000"],["2024-07-24T17:39:22.010000"],["2024-07-24T17:39:23.010000"],["2024-07-24T17:39:24.010000"],["2024-07-24T17:39:25.010000"],["2024-07-24T17:39:26.010000"],["2024-07-24T17:39:27.010000"],["2024-07-24T17:39:28.010000"],["2024-07-24T17:39:29.010000"],["2024-07-24T17:39:30.010000"],["2024-07-24T17:39:31.010000"],["2024-07-24T17:39:32.010000"],["2024-07-24T17:39:33.010000"],["2024-07-24T17:39:34.010000"],["2024-07-24T17:39:35.010000"],["2024-07-24T17:39:36.010000"],["2024-07-24T17:39:37.010000"],["2024-07-24T17:39:38.010000"],["2024-07-24T17:39:39.010000"],["2024-07-24T17:39:40.010000"],["2024-07-24T17:39:41.010000"],["2024-07-24T17:39:42.010000"],["2024-07-24T17:39:43.010000"],["2024-07-24T17:39:44.010000"],["2024-07-24T17:39:45.010000"],["2024-07-24T17:39:46.010000"],["2024-07-24T17:39:47.010000"],["2024-07-24T17:39:48.010000"],["2024-07-24T17:39:49.010000"],["2024-07-24T17:39:50.010000"],["2024-07-24T17:39:51.010000"],["2024-07-24T17:39:52.010000"],["2024-07-24T17:39:53.010000"],["2024-07-24T17:39:54.010000"],["2024-07-24T17:39:55.010000"],["2024-07-24T17:39:56.010000"],["2024-07-24T17:39:57.010000"],["2024-07-24T17:39:58.010000"],["2024-07-24T17:39:59.010000"],["2024-07-24T17:40:00.010000"],["2024-07-24T17:40:01.010000"],["2024-07-24T17:40:02.010000"],["2024-07-24T17:40:03.010000"],["2024-07-24T17:40:04.010000"],["2024-07-24T17:40:05.010000"],["2024-07-24T17:40:06.010000"],["2024-07-24T17:40:07.010000"],["2024-07-24T17:40:08.010000"],["2024-07-24T17:40:09.010000"],["2024-07-24T17:40:10.010000"],["2024-07-24T17:40:11.010000"],["2024-07-24T17:40:12.010000"],["2024-07-24T17:40:13.010000"],["2024-07-24T17:40:14.010000"],["2024-07-24T17:40:15.010000"],["2024-07-24T17:40:16.010000"],["2024-07-24T17:40:17.010000"],["2024-07-24T17:40:18.010000"],["2024-07-24T17:40:19.010000"],["2024-07-24T17:40:20.010000"],["2024-07-24T17:40:21.010000"],["2024-07-24T17:40:22.010000"],["2024-07-24T17:40:23.010000"],["2024-07-24T17:40:24.010000"],["2024-07-24T17:40:25.010000"],["2024-07-24T17:40:26.010000"],["2024-07-24T17:40:27.010000"],["2024-07-24T17:40:28.010000"],["2024-07-24T17:40:29.010000"],["2024-07-24T17:40:30.010000"],["2024-07-24T17:40:31.010000"],["2024-07-24T17:40:32.010000"],["2024-07-24T17:40:33.010000"],["2024-07-24T17:40:34.010000"],["2024-07-24T17:40:35.010000"],["2024-07-24T17:40:36.010000"],["2024-07-24T17:40:37.010000"],["2024-07-24T17:40:38.010000"],["2024-07-24T17:40:39.010000"],["2024-07-24T17:40:40.010000"],["2024-07-24T17:40:41.010000"],["2024-07-24T17:40:42.010000"],["2024-07-24T17:40:43.010000"],["2024-07-24T17:40:44.010000"],["2024-07-24T17:40:45.010000"],["2024-07-24T17:40:46.010000"],["2024-07-24T17:40:47.010000"],["2024-07-24T17:40:48.010000"],["2024-07-24T17:40:49.010000"],["2024-07-24T17:40:50.010000"],["2024-07-24T17:40:51.010000"],["2024-07-24T17:40:52.010000"],["2024-07-24T17:40:53.010000"],["2024-07-24T17:40:54.010000"],["2024-07-24T17:40:55.010000"],["2024-07-24T17:40:56.010000"],["2024-07-24T17:40:57.010000"],["2024-07-24T17:40:58.010000"],["2024-07-24T17:40:59.010000"],["2024-07-24T17:41:00.010000"],["2024-07-24T17:41:01.010000"],["2024-07-24T17:41:02.010000"],["2024-07-24T17:41:03.010000"],["2024-07-24T17:41:04.010000"],["2024-07-24T17:41:05.010000"],["2024-07-24T17:41:06.010000"],["2024-07-24T17:41:07.010000"],["2024-07-24T17:41:08.010000"],["2024-07-24T17:41:09.010000"],["2024-07-24T17:41:10.010000"],["2024-07-24T17:41:11.010000"],["2024-07-24T17:41:12.010000"],["2024-07-24T17:41:13.010000"],["2024-07-24T17:41:14.010000"],["2024-07-24T17:41:15.010000"],["2024-07-24T17:41:16.010000"],["2024-07-24T17:41:17.010000"],["2024-07-24T17:41:18.010000"],["2024-07-24T17:41:19.010000"],["2024-07-24T17:41:20.010000"],["2024-07-24T17:41:21.010000"],["2024-07-24T17:41:22.010000"],["2024-07-24T17:41:23.010000"],["2024-07-24T17:41:24.010000"],["2024-07-24T17:41:25.010000"],["2024-07-24T17:41:26.010000"],["2024-07-24T17:41:27.010000"],["2024-07-24T17:41:28.010000"],["2024-07-24T17:41:29.010000"],["2024-07-24T17:41:30.010000"],["2024-07-24T17:41:31.010000"],["2024-07-24T17:41:32.010000"],["2024-07-24T17:41:33.010000"],["2024-07-24T17:41:34.010000"],["2024-07-24T17:41:35.010000"],["2024-07-24T17:41:36.010000"],["2024-07-24T17:41:37.010000"],["2024-07-24T17:41:38.010000"],["2024-07-24T17:41:39.010000"],["2024-07-24T17:41:40.010000"],["2024-07-24T17:41:41.010000"],["2024-07-24T17:41:42.010000"],["2024-07-24T17:41:43.010000"],["2024-07-24T17:41:44.010000"],["2024-07-24T17:41:45.010000"],["2024-07-24T17:41:46.010000"],["2024-07-24T17:41:47.010000"],["2024-07-24T17:41:48.010000"],["2024-07-24T17:41:49.010000"],["2024-07-24T17:41:50.010000"],["2024-07-24T17:41:51.010000"],["2024-07-24T17:41:52.010000"],["2024-07-24T17:41:53.010000"],["2024-07-24T17:41:54.010000"],["2024-07-24T17:41:55.010000"],["2024-07-24T17:41:56.010000"],["2024-07-24T17:41:57.010000"],["2024-07-24T17:41:58.010000"],["2024-07-24T17:41:59.010000"],["2024-07-24T17:42:00.010000"],["2024-07-24T17:42:01.010000"],["2024-07-24T17:42:02.010000"],["2024-07-24T17:42:03.010000"],["2024-07-24T17:42:04.010000"],["2024-07-24T17:42:05.010000"],["2024-07-24T17:42:06.010000"],["2024-07-24T17:42:07.010000"],["2024-07-24T17:42:08.010000"],["2024-07-24T17:42:09.010000"],["2024-07-24T17:42:10.010000"],["2024-07-24T17:42:11.010000"],["2024-07-24T17:42:12.010000"],["2024-07-24T17:42:13.010000"],["2024-07-24T17:42:14.010000"],["2024-07-24T17:42:15.010000"],["2024-07-24T17:42:16.010000"],["2024-07-24T17:42:17.010000"],["2024-07-24T17:42:18.010000"],["2024-07-24T17:42:19.010000"],["2024-07-24T17:42:20.010000"],["2024-07-24T17:42:21.010000"],["2024-07-24T17:42:22.010000"],["2024-07-24T17:42:23.010000"],["2024-07-24T17:42:24.010000"],["2024-07-24T17:42:25.010000"],["2024-07-24T17:42:26.010000"],["2024-07-24T17:42:27.010000"],["2024-07-24T17:42:28.010000"],["2024-07-24T17:42:29.010000"],["2024-07-24T17:42:30.010000"],["2024-07-24T17:42:31.010000"],["2024-07-24T17:42:32.010000"],["2024-07-24T17:42:33.010000"],["2024-07-24T17:42:34.010000"],["2024-07-24T17:42:35.010000"],["2024-07-24T17:42:36.010000"],["2024-07-24T17:42:37.010000"],["2024-07-24T17:42:38.010000"],["2024-07-24T17:42:39.010000"],["2024-07-24T17:42:40.010000"],["2024-07-24T17:42:41.010000"],["2024-07-24T17:42:42.010000"],["2024-07-24T17:42:43.010000"],["2024-07-24T17:42:44.010000"],["2024-07-24T17:42:45.010000"],["2024-07-24T17:42:46.010000"],["2024-07-24T17:42:47.010000"],["2024-07-24T17:42:48.010000"],["2024-07-24T17:42:49.010000"],["2024-07-24T17:42:50.010000"],["2024-07-24T17:42:51.010000"],["2024-07-24T17:42:52.010000"],["2024-07-24T17:42:53.010000"],["2024-07-24T17:42:54.010000"],["2024-07-24T17:42:55.010000"],["2024-07-24T17:42:56.010000"],["2024-07-24T17:42:57.010000"],["2024-07-24T17:42:58.010000"],["2024-07-24T17:42:59.010000"],["2024-07-24T17:43:00.010000"],["2024-07-24T17:43:01.010000"],["2024-07-24T17:43:02.010000"],["2024-07-24T17:43:03.010000"],["2024-07-24T17:43:04.010000"],["2024-07-24T17:43:05.010000"],["2024-07-24T17:43:06.010000"],["2024-07-24T17:43:07.010000"],["2024-07-24T17:43:08.010000"],["2024-07-24T17:43:09.010000"],["2024-07-24T17:43:10.010000"],["2024-07-24T17:43:11.010000"],["2024-07-24T17:43:12.010000"],["2024-07-24T17:43:13.010000"],["2024-07-24T17:43:14.010000"],["2024-07-24T17:43:15.010000"],["2024-07-24T17:43:16.010000"],["2024-07-24T17:43:17.010000"],["2024-07-24T17:43:18.010000"],["2024-07-24T17:43:19.010000"],["2024-07-24T17:43:20.010000"],["2024-07-24T17:43:21.010000"],["2024-07-24T17:43:22.010000"],["2024-07-24T17:43:23.010000"],["2024-07-24T17:43:24.010000"],["2024-07-24T17:43:25.010000"],["2024-07-24T17:43:26.010000"],["2024-07-24T17:43:27.010000"],["2024-07-24T17:43:28.010000"],["2024-07-24T17:43:29.010000"],["2024-07-24T17:43:30.010000"],["2024-07-24T17:43:31.010000"],["2024-07-24T17:43:32.010000"],["2024-07-24T17:43:33.010000"],["2024-07-24T17:43:34.010000"],["2024-07-24T17:43:35.010000"],["2024-07-24T17:43:36.010000"],["2024-07-24T17:43:37.010000"],["2024-07-24T17:43:38.010000"],["2024-07-24T17:43:39.010000"],["2024-07-24T17:43:40.010000"],["2024-07-24T17:43:41.010000"],["2024-07-24T17:43:42.010000"],["2024-07-24T17:43:43.010000"],["2024-07-24T17:43:44.010000"],["2024-07-24T17:43:45.010000"],["2024-07-24T17:43:46.010000"],["2024-07-24T17:43:47.010000"],["2024-07-24T17:43:48.010000"],["2024-07-24T17:43:49.010000"],["2024-07-24T17:43:50.010000"],["2024-07-24T17:43:51.010000"],["2024-07-24T17:43:52.010000"],["2024-07-24T17:43:53.010000"],["2024-07-24T17:43:54.010000"],["2024-07-24T17:43:55.010000"],["2024-07-24T17:43:56.010000"],["2024-07-24T17:43:57.010000"],["2024-07-24T17:43:58.010000"],["2024-07-24T17:43:59.010000"],["2024-07-24T17:44:00.010000"],["2024-07-24T17:44:01.010000"],["2024-07-24T17:44:02.010000"],["2024-07-24T17:44:03.010000"],["2024-07-24T17:44:04.010000"],["2024-07-24T17:44:05.010000"],["2024-07-24T17:44:06.010000"],["2024-07-24T17:44:07.010000"],["2024-07-24T17:44:08.010000"],["2024-07-24T17:44:09.010000"],["2024-07-24T17:44:10.010000"],["2024-07-24T17:44:11.010000"],["2024-07-24T17:44:12.010000"],["2024-07-24T17:44:13.010000"],["2024-07-24T17:44:14.010000"],["2024-07-24T17:44:15.010000"],["2024-07-24T17:44:16.010000"],["2024-07-24T17:44:17.010000"],["2024-07-24T17:44:18.010000"],["2024-07-24T17:44:19.010000"],["2024-07-24T17:44:20.010000"],["2024-07-24T17:44:21.010000"],["2024-07-24T17:44:22.010000"],["2024-07-24T17:44:23.010000"],["2024-07-24T17:44:24.010000"],["2024-07-24T17:44:25.010000"],["2024-07-24T17:44:26.010000"],["2024-07-24T17:44:27.010000"],["2024-07-24T17:44:28.010000"],["2024-07-24T17:44:29.010000"],["2024-07-24T17:44:30.010000"],["2024-07-24T17:44:31.010000"],["2024-07-24T17:44:32.010000"],["2024-07-24T17:44:33.010000"],["2024-07-24T17:44:34.010000"],["2024-07-24T17:44:35.010000"],["2024-07-24T17:44:36.010000"],["2024-07-24T17:44:37.010000"],["2024-07-24T17:44:38.010000"],["2024-07-24T17:44:39.010000"],["2024-07-24T17:44:40.010000"],["2024-07-24T17:44:41.010000"],["2024-07-24T17:44:42.010000"],["2024-07-24T17:44:43.010000"],["2024-07-24T17:44:44.010000"],["2024-07-24T17:44:45.010000"],["2024-07-24T17:44:46.010000"],["2024-07-24T17:44:47.010000"],["2024-07-24T17:44:48.010000"],["2024-07-24T17:44:49.010000"],["2024-07-24T17:44:50.010000"],["2024-07-24T17:44:51.010000"],["2024-07-24T17:44:52.010000"],["2024-07-24T17:44:53.010000"],["2024-07-24T17:44:54.010000"],["2024-07-24T17:44:55.010000"],["2024-07-24T17:44:56.010000"],["2024-07-24T17:44:57.010000"],["2024-07-24T17:44:58.010000"],["2024-07-24T17:44:59.010000"],["2024-07-24T17:45:00.010000"],["2024-07-24T17:45:01.010000"],["2024-07-24T17:45:02.010000"],["2024-07-24T17:45:03.010000"],["2024-07-24T17:45:04.010000"],["2024-07-24T17:45:05.010000"],["2024-07-24T17:45:06.010000"],["2024-07-24T17:45:07.010000"],["2024-07-24T17:45:08.010000"],["2024-07-24T17:45:09.010000"],["2024-07-24T17:45:10.010000"],["2024-07-24T17:45:11.010000"],["2024-07-24T17:45:12.010000"],["2024-07-24T17:45:13.010000"],["2024-07-24T17:45:14.010000"],["2024-07-24T17:45:15.010000"],["2024-07-24T17:45:16.010000"],["2024-07-24T17:45:17.010000"],["2024-07-24T17:45:18.010000"],["2024-07-24T17:45:19.010000"],["2024-07-24T17:45:20.010000"],["2024-07-24T17:45:21.010000"],["2024-07-24T17:45:22.010000"],["2024-07-24T17:45:23.010000"],["2024-07-24T17:45:24.010000"],["2024-07-24T17:45:25.010000"],["2024-07-24T17:45:26.010000"],["2024-07-24T17:45:27.010000"],["2024-07-24T17:45:28.010000"],["2024-07-24T17:45:29.010000"],["2024-07-24T17:45:30.010000"],["2024-07-24T17:45:31.010000"],["2024-07-24T17:45:32.010000"],["2024-07-24T17:45:33.010000"],["2024-07-24T17:45:34.010000"],["2024-07-24T17:45:35.010000"],["2024-07-24T17:45:36.010000"],["2024-07-24T17:45:37.010000"],["2024-07-24T17:45:38.010000"],["2024-07-24T17:45:39.010000"],["2024-07-24T17:45:40.010000"],["2024-07-24T17:45:41.010000"],["2024-07-24T17:45:42.010000"],["2024-07-24T17:45:43.010000"],["2024-07-24T17:45:44.010000"],["2024-07-24T17:45:45.010000"],["2024-07-24T17:45:46.010000"],["2024-07-24T17:45:47.010000"],["2024-07-24T17:45:48.010000"],["2024-07-24T17:45:49.010000"],["2024-07-24T17:45:50.010000"],["2024-07-24T17:45:51.010000"],["2024-07-24T17:45:52.010000"],["2024-07-24T17:45:53.010000"],["2024-07-24T17:45:54.010000"],["2024-07-24T17:45:55.010000"],["2024-07-24T17:45:56.010000"],["2024-07-24T17:45:57.010000"],["2024-07-24T17:45:58.010000"],["2024-07-24T17:45:59.010000"],["2024-07-24T17:46:00.010000"],["2024-07-24T17:46:01.010000"],["2024-07-24T17:46:02.010000"],["2024-07-24T17:46:03.010000"],["2024-07-24T17:46:04.010000"],["2024-07-24T17:46:05.010000"],["2024-07-24T17:46:06.010000"],["2024-07-24T17:46:07.010000"],["2024-07-24T17:46:08.010000"],["2024-07-24T17:46:09.010000"],["2024-07-24T17:46:10.010000"],["2024-07-24T17:46:11.010000"],["2024-07-24T17:46:12.010000"],["2024-07-24T17:46:13.010000"],["2024-07-24T17:46:14.010000"],["2024-07-24T17:46:15.010000"],["2024-07-24T17:46:16.010000"],["2024-07-24T17:46:17.010000"],["2024-07-24T17:46:18.010000"],["2024-07-24T17:46:19.010000"],["2024-07-24T17:46:20.010000"],["2024-07-24T17:46:21.010000"],["2024-07-24T17:46:22.010000"],["2024-07-24T17:46:23.010000"],["2024-07-24T17:46:24.010000"],["2024-07-24T17:46:25.010000"],["2024-07-24T17:46:26.010000"],["2024-07-24T17:46:27.010000"],["2024-07-24T17:46:28.010000"],["2024-07-24T17:46:29.010000"],["2024-07-24T17:46:30.010000"],["2024-07-24T17:46:31.010000"],["2024-07-24T17:46:32.010000"],["2024-07-24T17:46:33.010000"],["2024-07-24T17:46:34.010000"],["2024-07-24T17:46:35.010000"],["2024-07-24T17:46:36.010000"],["2024-07-24T17:46:37.010000"],["2024-07-24T17:46:38.010000"],["2024-07-24T17:46:39.010000"],["2024-07-24T17:46:40.010000"],["2024-07-24T17:46:41.010000"],["2024-07-24T17:46:42.010000"],["2024-07-24T17:46:43.010000"],["2024-07-24T17:46:44.010000"],["2024-07-24T17:46:45.010000"],["2024-07-24T17:46:46.010000"],["2024-07-24T17:46:47.010000"],["2024-07-24T17:46:48.010000"],["2024-07-24T17:46:49.010000"],["2024-07-24T17:46:50.010000"],["2024-07-24T17:46:51.010000"],["2024-07-24T17:46:52.010000"],["2024-07-24T17:46:53.010000"],["2024-07-24T17:46:54.010000"],["2024-07-24T17:46:55.010000"],["2024-07-24T17:46:56.010000"],["2024-07-24T17:46:57.010000"],["2024-07-24T17:46:58.010000"],["2024-07-24T17:46:59.010000"],["2024-07-24T17:47:00.010000"],["2024-07-24T17:47:01.010000"],["2024-07-24T17:47:02.010000"],["2024-07-24T17:47:03.010000"],["2024-07-24T17:47:04.010000"],["2024-07-24T17:47:05.010000"],["2024-07-24T17:47:06.010000"],["2024-07-24T17:47:07.010000"],["2024-07-24T17:47:08.010000"],["2024-07-24T17:47:09.010000"],["2024-07-24T17:47:10.010000"],["2024-07-24T17:47:11.010000"],["2024-07-24T17:47:12.010000"],["2024-07-24T17:47:13.010000"],["2024-07-24T17:47:14.010000"],["2024-07-24T17:47:15.010000"],["2024-07-24T17:47:16.010000"],["2024-07-24T17:47:17.010000"],["2024-07-24T17:47:18.010000"],["2024-07-24T17:47:19.010000"],["2024-07-24T17:47:20.010000"],["2024-07-24T17:47:21.010000"],["2024-07-24T17:47:22.010000"],["2024-07-24T17:47:23.010000"],["2024-07-24T17:47:24.010000"],["2024-07-24T17:47:25.010000"],["2024-07-24T17:47:26.010000"],["2024-07-24T17:47:27.010000"],["2024-07-24T17:47:28.010000"],["2024-07-24T17:47:29.010000"],["2024-07-24T17:47:30.010000"],["2024-07-24T17:47:31.010000"],["2024-07-24T17:47:32.010000"],["2024-07-24T17:47:33.010000"],["2024-07-24T17:47:34.010000"],["2024-07-24T17:47:35.010000"],["2024-07-24T17:47:36.010000"],["2024-07-24T17:47:37.010000"],["2024-07-24T17:47:38.010000"],["2024-07-24T17:47:39.010000"],["2024-07-24T17:47:40.010000"],["2024-07-24T17:47:41.010000"],["2024-07-24T17:47:42.010000"],["2024-07-24T17:47:43.010000"],["2024-07-24T17:47:44.010000"],["2024-07-24T17:47:45.010000"],["2024-07-24T17:47:46.010000"],["2024-07-24T17:47:47.010000"],["2024-07-24T17:47:48.010000"],["2024-07-24T17:47:49.010000"],["2024-07-24T17:47:50.010000"],["2024-07-24T17:47:51.010000"],["2024-07-24T17:47:52.010000"],["2024-07-24T17:47:53.010000"],["2024-07-24T17:47:54.010000"],["2024-07-24T17:47:55.010000"],["2024-07-24T17:47:56.010000"],["2024-07-24T17:47:57.010000"],["2024-07-24T17:47:58.010000"],["2024-07-24T17:47:59.010000"],["2024-07-24T17:48:00.010000"],["2024-07-24T17:48:01.010000"],["2024-07-24T17:48:02.010000"],["2024-07-24T17:48:03.010000"],["2024-07-24T17:48:04.010000"],["2024-07-24T17:48:05.010000"],["2024-07-24T17:48:06.010000"],["2024-07-24T17:48:07.010000"],["2024-07-24T17:48:08.010000"],["2024-07-24T17:48:09.010000"],["2024-07-24T17:48:10.010000"],["2024-07-24T17:48:11.010000"],["2024-07-24T17:48:12.010000"],["2024-07-24T17:48:13.010000"],["2024-07-24T17:48:14.010000"],["2024-07-24T17:48:15.010000"],["2024-07-24T17:48:16.010000"],["2024-07-24T17:48:17.010000"],["2024-07-24T17:48:18.010000"],["2024-07-24T17:48:19.010000"],["2024-07-24T17:48:20.010000"],["2024-07-24T17:48:21.010000"],["2024-07-24T17:48:22.010000"],["2024-07-24T17:48:23.010000"],["2024-07-24T17:48:24.010000"],["2024-07-24T17:48:25.010000"],["2024-07-24T17:48:26.010000"],["2024-07-24T17:48:27.010000"],["2024-07-24T17:48:28.010000"],["2024-07-24T17:48:29.010000"],["2024-07-24T17:48:30.010000"],["2024-07-24T17:48:31.010000"],["2024-07-24T17:48:32.010000"],["2024-07-24T17:48:33.010000"],["2024-07-24T17:48:34.010000"],["2024-07-24T17:48:35.010000"],["2024-07-24T17:48:36.010000"],["2024-07-24T17:48:37.010000"],["2024-07-24T17:48:38.010000"],["2024-07-24T17:48:39.010000"],["2024-07-24T17:48:40.010000"],["2024-07-24T17:48:41.010000"],["2024-07-24T17:48:42.010000"],["2024-07-24T17:48:43.010000"],["2024-07-24T17:48:44.010000"],["2024-07-24T17:48:45.010000"],["2024-07-24T17:48:46.010000"],["2024-07-24T17:48:47.010000"],["2024-07-24T17:48:48.010000"],["2024-07-24T17:48:49.010000"],["2024-07-24T17:48:50.010000"],["2024-07-24T17:48:51.010000"],["2024-07-24T17:48:52.010000"],["2024-07-24T17:48:53.010000"],["2024-07-24T17:48:54.010000"],["2024-07-24T17:48:55.010000"],["2024-07-24T17:48:56.010000"],["2024-07-24T17:48:57.010000"],["2024-07-24T17:48:58.010000"],["2024-07-24T17:48:59.010000"],["2024-07-24T17:49:00.010000"],["2024-07-24T17:49:01.010000"],["2024-07-24T17:49:02.010000"],["2024-07-24T17:49:03.010000"],["2024-07-24T17:49:04.010000"],["2024-07-24T17:49:05.010000"],["2024-07-24T17:49:06.010000"],["2024-07-24T17:49:07.010000"],["2024-07-24T17:49:08.010000"],["2024-07-24T17:49:09.010000"],["2024-07-24T17:49:10.010000"],["2024-07-24T17:49:11.010000"],["2024-07-24T17:49:12.010000"],["2024-07-24T17:49:13.010000"],["2024-07-24T17:49:14.010000"],["2024-07-24T17:49:15.010000"],["2024-07-24T17:49:16.010000"],["2024-07-24T17:49:17.010000"],["2024-07-24T17:49:18.010000"],["2024-07-24T17:49:19.010000"],["2024-07-24T17:49:20.010000"],["2024-07-24T17:49:21.010000"],["2024-07-24T17:49:22.010000"],["2024-07-24T17:49:23.010000"],["2024-07-24T17:49:24.010000"],["2024-07-24T17:49:25.010000"],["2024-07-24T17:49:26.010000"],["2024-07-24T17:49:27.010000"],["2024-07-24T17:49:28.010000"],["2024-07-24T17:49:29.010000"],["2024-07-24T17:49:30.010000"],["2024-07-24T17:49:31.010000"],["2024-07-24T17:49:32.010000"],["2024-07-24T17:49:33.010000"],["2024-07-24T17:49:34.010000"],["2024-07-24T17:49:35.010000"],["2024-07-24T17:49:36.010000"],["2024-07-24T17:49:37.010000"],["2024-07-24T17:49:38.010000"],["2024-07-24T17:49:39.010000"],["2024-07-24T17:49:40.010000"],["2024-07-24T17:49:41.010000"],["2024-07-24T17:49:42.010000"],["2024-07-24T17:49:43.010000"],["2024-07-24T17:49:44.010000"],["2024-07-24T17:49:45.010000"],["2024-07-24T17:49:46.010000"],["2024-07-24T17:49:47.010000"],["2024-07-24T17:49:48.010000"],["2024-07-24T17:49:49.010000"],["2024-07-24T17:49:50.010000"],["2024-07-24T17:49:51.010000"],["2024-07-24T17:49:52.010000"],["2024-07-24T17:49:53.010000"],["2024-07-24T17:49:54.010000"],["2024-07-24T17:49:55.010000"],["2024-07-24T17:49:56.010000"],["2024-07-24T17:49:57.010000"],["2024-07-24T17:49:58.010000"],["2024-07-24T17:49:59.010000"],["2024-07-24T17:50:00.010000"],["2024-07-24T17:50:01.010000"],["2024-07-24T17:50:02.010000"],["2024-07-24T17:50:03.010000"],["2024-07-24T17:50:04.010000"],["2024-07-24T17:50:05.010000"],["2024-07-24T17:50:06.010000"],["2024-07-24T17:50:07.010000"],["2024-07-24T17:50:08.010000"],["2024-07-24T17:50:09.010000"],["2024-07-24T17:50:10.010000"],["2024-07-24T17:50:11.010000"],["2024-07-24T17:50:12.010000"],["2024-07-24T17:50:13.010000"],["2024-07-24T17:50:14.010000"],["2024-07-24T17:50:15.010000"],["2024-07-24T17:50:16.010000"],["2024-07-24T17:50:17.010000"],["2024-07-24T17:50:18.010000"],["2024-07-24T17:50:19.010000"],["2024-07-24T17:50:20.010000"],["2024-07-24T17:50:21.010000"],["2024-07-24T17:50:22.010000"],["2024-07-24T17:50:23.010000"],["2024-07-24T17:50:24.010000"],["2024-07-24T17:50:25.010000"],["2024-07-24T17:50:26.010000"],["2024-07-24T17:50:27.010000"],["2024-07-24T17:50:28.010000"],["2024-07-24T17:50:29.010000"],["2024-07-24T17:50:30.010000"],["2024-07-24T17:50:31.010000"],["2024-07-24T17:50:32.010000"],["2024-07-24T17:50:33.010000"],["2024-07-24T17:50:34.010000"],["2024-07-24T17:50:35.010000"],["2024-07-24T17:50:36.010000"],["2024-07-24T17:50:37.010000"],["2024-07-24T17:50:38.010000"],["2024-07-24T17:50:39.010000"],["2024-07-24T17:50:40.010000"],["2024-07-24T17:50:41.010000"],["2024-07-24T17:50:42.010000"],["2024-07-24T17:50:43.010000"],["2024-07-24T17:50:44.010000"],["2024-07-24T17:50:45.010000"],["2024-07-24T17:50:46.010000"],["2024-07-24T17:50:47.010000"],["2024-07-24T17:50:48.010000"],["2024-07-24T17:50:49.010000"],["2024-07-24T17:50:50.010000"],["2024-07-24T17:50:51.010000"],["2024-07-24T17:50:52.010000"],["2024-07-24T17:50:53.010000"],["2024-07-24T17:50:54.010000"],["2024-07-24T17:50:55.010000"],["2024-07-24T17:50:56.010000"],["2024-07-24T17:50:57.010000"],["2024-07-24T17:50:58.010000"],["2024-07-24T17:50:59.010000"],["2024-07-24T17:51:00.010000"],["2024-07-24T17:51:01.010000"],["2024-07-24T17:51:02.010000"],["2024-07-24T17:51:03.010000"],["2024-07-24T17:51:04.010000"],["2024-07-24T17:51:05.010000"],["2024-07-24T17:51:06.010000"],["2024-07-24T17:51:07.010000"],["2024-07-24T17:51:08.010000"],["2024-07-24T17:51:09.010000"],["2024-07-24T17:51:10.010000"],["2024-07-24T17:51:11.010000"],["2024-07-24T17:51:12.010000"],["2024-07-24T17:51:13.010000"],["2024-07-24T17:51:14.010000"],["2024-07-24T17:51:15.010000"],["2024-07-24T17:51:16.010000"],["2024-07-24T17:51:17.010000"],["2024-07-24T17:51:18.010000"],["2024-07-24T17:51:19.010000"],["2024-07-24T17:51:20.010000"],["2024-07-24T17:51:21.010000"],["2024-07-24T17:51:22.010000"],["2024-07-24T17:51:23.010000"],["2024-07-24T17:51:24.010000"],["2024-07-24T17:51:25.010000"],["2024-07-24T17:51:26.010000"],["2024-07-24T17:51:27.010000"],["2024-07-24T17:51:28.010000"],["2024-07-24T17:51:29.010000"],["2024-07-24T17:51:30.010000"],["2024-07-24T17:51:31.010000"],["2024-07-24T17:51:32.010000"],["2024-07-24T17:51:33.010000"],["2024-07-24T17:51:34.010000"],["2024-07-24T17:51:35.010000"],["2024-07-24T17:51:36.010000"],["2024-07-24T17:51:37.010000"],["2024-07-24T17:51:38.010000"],["2024-07-24T17:51:39.010000"],["2024-07-24T17:51:40.010000"],["2024-07-24T17:51:41.010000"],["2024-07-24T17:51:42.010000"],["2024-07-24T17:51:43.010000"],["2024-07-24T17:51:44.010000"],["2024-07-24T17:51:45.010000"],["2024-07-24T17:51:46.010000"],["2024-07-24T17:51:47.010000"],["2024-07-24T17:51:48.010000"],["2024-07-24T17:51:49.010000"],["2024-07-24T17:51:50.010000"],["2024-07-24T17:51:51.010000"],["2024-07-24T17:51:52.010000"],["2024-07-24T17:51:53.010000"],["2024-07-24T17:51:54.010000"],["2024-07-24T17:51:55.010000"],["2024-07-24T17:51:56.010000"],["2024-07-24T17:51:57.010000"],["2024-07-24T17:51:58.010000"],["2024-07-24T17:51:59.010000"],["2024-07-24T17:52:00.010000"],["2024-07-24T17:52:01.010000"],["2024-07-24T17:52:02.010000"],["2024-07-24T17:52:03.010000"],["2024-07-24T17:52:04.010000"],["2024-07-24T17:52:05.010000"],["2024-07-24T17:52:06.010000"],["2024-07-24T17:52:07.010000"],["2024-07-24T17:52:08.010000"],["2024-07-24T17:52:09.010000"],["2024-07-24T17:52:10.010000"],["2024-07-24T17:52:11.010000"],["2024-07-24T17:52:12.010000"],["2024-07-24T17:52:13.010000"],["2024-07-24T17:52:14.010000"],["2024-07-24T17:52:15.010000"],["2024-07-24T17:52:16.010000"],["2024-07-24T17:52:17.010000"],["2024-07-24T17:52:18.010000"],["2024-07-24T17:52:19.010000"],["2024-07-24T17:52:20.010000"],["2024-07-24T17:52:21.010000"],["2024-07-24T17:52:22.010000"],["2024-07-24T17:52:23.010000"],["2024-07-24T17:52:24.010000"],["2024-07-24T17:52:25.010000"],["2024-07-24T17:52:26.010000"],["2024-07-24T17:52:27.010000"],["2024-07-24T17:52:28.010000"],["2024-07-24T17:52:29.010000"],["2024-07-24T17:52:30.010000"],["2024-07-24T17:52:31.010000"],["2024-07-24T17:52:32.010000"],["2024-07-24T17:52:33.010000"],["2024-07-24T17:52:34.010000"],["2024-07-24T17:52:35.010000"],["2024-07-24T17:52:36.010000"],["2024-07-24T17:52:37.010000"],["2024-07-24T17:52:38.010000"],["2024-07-24T17:52:39.010000"],["2024-07-24T17:52:40.010000"],["2024-07-24T17:52:41.010000"],["2024-07-24T17:52:42.010000"],["2024-07-24T17:52:43.010000"],["2024-07-24T17:52:44.010000"],["2024-07-24T17:52:45.010000"],["2024-07-24T17:52:46.010000"],["2024-07-24T17:52:47.010000"],["2024-07-24T17:52:48.010000"],["2024-07-24T17:52:49.010000"],["2024-07-24T17:52:50.010000"],["2024-07-24T17:52:51.010000"],["2024-07-24T17:52:52.010000"],["2024-07-24T17:52:53.010000"],["2024-07-24T17:52:54.010000"],["2024-07-24T17:52:55.010000"],["2024-07-24T17:52:56.010000"],["2024-07-24T17:52:57.010000"],["2024-07-24T17:52:58.010000"],["2024-07-24T17:52:59.010000"],["2024-07-24T17:53:00.010000"],["2024-07-24T17:53:01.010000"],["2024-07-24T17:53:02.010000"],["2024-07-24T17:53:03.010000"],["2024-07-24T17:53:04.010000"],["2024-07-24T17:53:05.010000"],["2024-07-24T17:53:06.010000"],["2024-07-24T17:53:07.010000"],["2024-07-24T17:53:08.010000"],["2024-07-24T17:53:09.010000"],["2024-07-24T17:53:10.010000"],["2024-07-24T17:53:11.010000"],["2024-07-24T17:53:12.010000"],["2024-07-24T17:53:13.010000"],["2024-07-24T17:53:14.010000"],["2024-07-24T17:53:15.010000"],["2024-07-24T17:53:16.010000"],["2024-07-24T17:53:17.010000"],["2024-07-24T17:53:18.010000"],["2024-07-24T17:53:19.010000"],["2024-07-24T17:53:20.010000"],["2024-07-24T17:53:21.010000"],["2024-07-24T17:53:22.010000"],["2024-07-24T17:53:23.010000"],["2024-07-24T17:53:24.010000"],["2024-07-24T17:53:25.010000"],["2024-07-24T17:53:26.010000"],["2024-07-24T17:53:27.010000"],["2024-07-24T17:53:28.010000"],["2024-07-24T17:53:29.010000"],["2024-07-24T17:53:30.010000"],["2024-07-24T17:53:31.010000"],["2024-07-24T17:53:32.010000"],["2024-07-24T17:53:33.010000"],["2024-07-24T17:53:34.010000"],["2024-07-24T17:53:35.010000"],["2024-07-24T17:53:36.010000"],["2024-07-24T17:53:37.010000"],["2024-07-24T17:53:38.010000"],["2024-07-24T17:53:39.010000"],["2024-07-24T17:53:40.010000"],["2024-07-24T17:53:41.010000"],["2024-07-24T17:53:42.010000"],["2024-07-24T17:53:43.010000"],["2024-07-24T17:53:44.010000"],["2024-07-24T17:53:45.010000"],["2024-07-24T17:53:46.010000"],["2024-07-24T17:53:47.010000"],["2024-07-24T17:53:48.010000"],["2024-07-24T17:53:49.010000"],["2024-07-24T17:53:50.010000"],["2024-07-24T17:53:51.010000"],["2024-07-24T17:53:52.010000"],["2024-07-24T17:53:53.010000"],["2024-07-24T17:53:54.010000"],["2024-07-24T17:53:55.010000"],["2024-07-24T17:53:56.010000"],["2024-07-24T17:53:57.010000"],["2024-07-24T17:53:58.010000"],["2024-07-24T17:53:59.010000"],["2024-07-24T17:54:00.010000"],["2024-07-24T17:54:01.010000"],["2024-07-24T17:54:02.010000"],["2024-07-24T17:54:03.010000"],["2024-07-24T17:54:04.010000"],["2024-07-24T17:54:05.010000"],["2024-07-24T17:54:06.010000"],["2024-07-24T17:54:07.010000"],["2024-07-24T17:54:08.010000"],["2024-07-24T17:54:09.010000"],["2024-07-24T17:54:10.010000"],["2024-07-24T17:54:11.010000"],["2024-07-24T17:54:12.010000"],["2024-07-24T17:54:13.010000"],["2024-07-24T17:54:14.010000"],["2024-07-24T17:54:15.010000"],["2024-07-24T17:54:16.010000"],["2024-07-24T17:54:17.010000"],["2024-07-24T17:54:18.010000"],["2024-07-24T17:54:19.010000"],["2024-07-24T17:54:20.010000"],["2024-07-24T17:54:21.010000"],["2024-07-24T17:54:22.010000"],["2024-07-24T17:54:23.010000"],["2024-07-24T17:54:24.010000"],["2024-07-24T17:54:25.010000"],["2024-07-24T17:54:26.010000"],["2024-07-24T17:54:27.010000"],["2024-07-24T17:54:28.010000"],["2024-07-24T17:54:29.010000"],["2024-07-24T17:54:30.010000"],["2024-07-24T17:54:31.010000"],["2024-07-24T17:54:32.010000"],["2024-07-24T17:54:33.010000"],["2024-07-24T17:54:34.010000"],["2024-07-24T17:54:35.010000"],["2024-07-24T17:54:36.010000"],["2024-07-24T17:54:37.010000"],["2024-07-24T17:54:38.010000"],["2024-07-24T17:54:39.010000"],["2024-07-24T17:54:40.010000"],["2024-07-24T17:54:41.010000"],["2024-07-24T17:54:42.010000"],["2024-07-24T17:54:43.010000"],["2024-07-24T17:54:44.010000"],["2024-07-24T17:54:45.010000"],["2024-07-24T17:54:46.010000"],["2024-07-24T17:54:47.010000"],["2024-07-24T17:54:48.010000"],["2024-07-24T17:54:49.010000"],["2024-07-24T17:54:50.010000"],["2024-07-24T17:54:51.010000"],["2024-07-24T17:54:52.010000"],["2024-07-24T17:54:53.010000"],["2024-07-24T17:54:54.010000"],["2024-07-24T17:54:55.010000"],["2024-07-24T17:54:56.010000"],["2024-07-24T17:54:57.010000"],["2024-07-24T17:54:58.010000"],["2024-07-24T17:54:59.010000"],["2024-07-24T17:55:00.010000"],["2024-07-24T17:55:01.010000"],["2024-07-24T17:55:02.010000"],["2024-07-24T17:55:03.010000"],["2024-07-24T17:55:04.010000"],["2024-07-24T17:55:05.010000"],["2024-07-24T17:55:06.010000"],["2024-07-24T17:55:07.010000"],["2024-07-24T17:55:08.010000"],["2024-07-24T17:55:09.010000"],["2024-07-24T17:55:10.010000"],["2024-07-24T17:55:11.010000"],["2024-07-24T17:55:12.010000"],["2024-07-24T17:55:13.010000"],["2024-07-24T17:55:14.010000"],["2024-07-24T17:55:15.010000"],["2024-07-24T17:55:16.010000"],["2024-07-24T17:55:17.010000"],["2024-07-24T17:55:18.010000"],["2024-07-24T17:55:19.010000"],["2024-07-24T17:55:20.010000"],["2024-07-24T17:55:21.010000"],["2024-07-24T17:55:22.010000"],["2024-07-24T17:55:23.010000"],["2024-07-24T17:55:24.010000"],["2024-07-24T17:55:25.010000"],["2024-07-24T17:55:26.010000"],["2024-07-24T17:55:27.010000"],["2024-07-24T17:55:28.010000"],["2024-07-24T17:55:29.010000"],["2024-07-24T17:55:30.010000"],["2024-07-24T17:55:31.010000"],["2024-07-24T17:55:32.010000"],["2024-07-24T17:55:33.010000"],["2024-07-24T17:55:34.010000"],["2024-07-24T17:55:35.010000"],["2024-07-24T17:55:36.010000"],["2024-07-24T17:55:37.010000"],["2024-07-24T17:55:38.010000"],["2024-07-24T17:55:39.010000"],["2024-07-24T17:55:40.010000"],["2024-07-24T17:55:41.010000"],["2024-07-24T17:55:42.010000"],["2024-07-24T17:55:43.010000"],["2024-07-24T17:55:44.010000"],["2024-07-24T17:55:45.010000"],["2024-07-24T17:55:46.010000"],["2024-07-24T17:55:47.010000"],["2024-07-24T17:55:48.010000"],["2024-07-24T17:55:49.010000"],["2024-07-24T17:55:50.010000"],["2024-07-24T17:55:51.010000"],["2024-07-24T17:55:52.010000"],["2024-07-24T17:55:53.010000"],["2024-07-24T17:55:54.010000"],["2024-07-24T17:55:55.010000"],["2024-07-24T17:55:56.010000"],["2024-07-24T17:55:57.010000"],["2024-07-24T17:55:58.010000"],["2024-07-24T17:55:59.010000"],["2024-07-24T17:56:00.010000"],["2024-07-24T17:56:01.010000"],["2024-07-24T17:56:02.010000"],["2024-07-24T17:56:03.010000"],["2024-07-24T17:56:04.010000"],["2024-07-24T17:56:05.010000"],["2024-07-24T17:56:06.010000"],["2024-07-24T17:56:07.010000"],["2024-07-24T17:56:08.010000"],["2024-07-24T17:56:09.010000"],["2024-07-24T17:56:10.010000"],["2024-07-24T17:56:11.010000"],["2024-07-24T17:56:12.010000"],["2024-07-24T17:56:13.010000"],["2024-07-24T17:56:14.010000"],["2024-07-24T17:56:15.010000"],["2024-07-24T17:56:16.010000"],["2024-07-24T17:56:17.010000"],["2024-07-24T17:56:18.010000"],["2024-07-24T17:56:19.010000"],["2024-07-24T17:56:20.010000"],["2024-07-24T17:56:21.010000"],["2024-07-24T17:56:22.010000"],["2024-07-24T17:56:23.010000"],["2024-07-24T17:56:24.010000"],["2024-07-24T17:56:25.010000"],["2024-07-24T17:56:26.010000"],["2024-07-24T17:56:27.010000"],["2024-07-24T17:56:28.010000"],["2024-07-24T17:56:29.010000"],["2024-07-24T17:56:30.010000"],["2024-07-24T17:56:31.010000"],["2024-07-24T17:56:32.010000"],["2024-07-24T17:56:33.010000"],["2024-07-24T17:56:34.010000"],["2024-07-24T17:56:35.010000"],["2024-07-24T17:56:36.010000"],["2024-07-24T17:56:37.010000"],["2024-07-24T17:56:38.010000"],["2024-07-24T17:56:39.010000"],["2024-07-24T17:56:40.010000"],["2024-07-24T17:56:41.010000"],["2024-07-24T17:56:42.010000"],["2024-07-24T17:56:43.010000"],["2024-07-24T17:56:44.010000"],["2024-07-24T17:56:45.010000"],["2024-07-24T17:56:46.010000"],["2024-07-24T17:56:47.010000"],["2024-07-24T17:56:48.010000"],["2024-07-24T17:56:49.010000"],["2024-07-24T17:56:50.010000"],["2024-07-24T17:56:51.010000"],["2024-07-24T17:56:52.010000"],["2024-07-24T17:56:53.010000"],["2024-07-24T17:56:54.010000"],["2024-07-24T17:56:55.010000"],["2024-07-24T17:56:56.010000"],["2024-07-24T17:56:57.010000"],["2024-07-24T17:56:58.010000"],["2024-07-24T17:56:59.010000"],["2024-07-24T17:57:00.010000"],["2024-07-24T17:57:01.010000"],["2024-07-24T17:57:02.010000"],["2024-07-24T17:57:03.010000"],["2024-07-24T17:57:04.010000"],["2024-07-24T17:57:05.010000"],["2024-07-24T17:57:06.010000"],["2024-07-24T17:57:07.010000"],["2024-07-24T17:57:08.010000"],["2024-07-24T17:57:09.010000"],["2024-07-24T17:57:10.010000"],["2024-07-24T17:57:11.010000"],["2024-07-24T17:57:12.010000"],["2024-07-24T17:57:13.010000"],["2024-07-24T17:57:14.010000"],["2024-07-24T17:57:15.010000"],["2024-07-24T17:57:16.010000"],["2024-07-24T17:57:17.010000"],["2024-07-24T17:57:18.010000"],["2024-07-24T17:57:19.010000"],["2024-07-24T17:57:20.010000"],["2024-07-24T17:57:21.010000"],["2024-07-24T17:57:22.010000"],["2024-07-24T17:57:23.010000"],["2024-07-24T17:57:24.010000"],["2024-07-24T17:57:25.010000"],["2024-07-24T17:57:26.010000"],["2024-07-24T17:57:27.010000"],["2024-07-24T17:57:28.010000"],["2024-07-24T17:57:29.010000"],["2024-07-24T17:57:30.010000"],["2024-07-24T17:57:31.010000"],["2024-07-24T17:57:32.010000"],["2024-07-24T17:57:33.010000"],["2024-07-24T17:57:34.010000"],["2024-07-24T17:57:35.010000"],["2024-07-24T17:57:36.010000"],["2024-07-24T17:57:37.010000"],["2024-07-24T17:57:38.010000"],["2024-07-24T17:57:39.010000"],["2024-07-24T17:57:40.010000"],["2024-07-24T17:57:41.010000"],["2024-07-24T17:57:42.010000"],["2024-07-24T17:57:43.010000"],["2024-07-24T17:57:44.010000"],["2024-07-24T17:57:45.010000"],["2024-07-24T17:57:46.010000"],["2024-07-24T17:57:47.010000"],["2024-07-24T17:57:48.010000"],["2024-07-24T17:57:49.010000"],["2024-07-24T17:57:50.010000"],["2024-07-24T17:57:51.010000"],["2024-07-24T17:57:52.010000"],["2024-07-24T17:57:53.010000"],["2024-07-24T17:57:54.010000"],["2024-07-24T17:57:55.010000"],["2024-07-24T17:57:56.010000"],["2024-07-24T17:57:57.010000"],["2024-07-24T17:57:58.010000"],["2024-07-24T17:57:59.010000"],["2024-07-24T17:58:00.010000"],["2024-07-24T17:58:01.010000"],["2024-07-24T17:58:02.010000"],["2024-07-24T17:58:03.010000"],["2024-07-24T17:58:04.010000"],["2024-07-24T17:58:05.010000"],["2024-07-24T17:58:06.010000"],["2024-07-24T17:58:07.010000"],["2024-07-24T17:58:08.010000"],["2024-07-24T17:58:09.010000"],["2024-07-24T17:58:10.010000"],["2024-07-24T17:58:11.010000"],["2024-07-24T17:58:12.010000"],["2024-07-24T17:58:13.010000"],["2024-07-24T17:58:14.010000"],["2024-07-24T17:58:15.010000"],["2024-07-24T17:58:16.010000"],["2024-07-24T17:58:17.010000"],["2024-07-24T17:58:18.010000"],["2024-07-24T17:58:19.010000"],["2024-07-24T17:58:20.010000"],["2024-07-24T17:58:21.010000"],["2024-07-24T17:58:22.010000"],["2024-07-24T17:58:23.010000"],["2024-07-24T17:58:24.010000"],["2024-07-24T17:58:25.010000"],["2024-07-24T17:58:26.010000"],["2024-07-24T17:58:27.010000"],["2024-07-24T17:58:28.010000"],["2024-07-24T17:58:29.010000"],["2024-07-24T17:58:30.010000"],["2024-07-24T17:58:31.010000"],["2024-07-24T17:58:32.010000"],["2024-07-24T17:58:33.010000"],["2024-07-24T17:58:34.010000"],["2024-07-24T17:58:35.010000"],["2024-07-24T17:58:36.010000"],["2024-07-24T17:58:37.010000"],["2024-07-24T17:58:38.010000"],["2024-07-24T17:58:39.010000"],["2024-07-24T17:58:40.010000"],["2024-07-24T17:58:41.010000"],["2024-07-24T17:58:42.010000"],["2024-07-24T17:58:43.010000"],["2024-07-24T17:58:44.010000"],["2024-07-24T17:58:45.010000"],["2024-07-24T17:58:46.010000"],["2024-07-24T17:58:47.010000"],["2024-07-24T17:58:48.010000"],["2024-07-24T17:58:49.010000"],["2024-07-24T17:58:50.010000"],["2024-07-24T17:58:51.010000"],["2024-07-24T17:58:52.010000"],["2024-07-24T17:58:53.010000"],["2024-07-24T17:58:54.010000"],["2024-07-24T17:58:55.010000"],["2024-07-24T17:58:56.010000"],["2024-07-24T17:58:57.010000"],["2024-07-24T17:58:58.010000"],["2024-07-24T17:58:59.010000"],["2024-07-24T17:59:00.010000"],["2024-07-24T17:59:01.010000"],["2024-07-24T17:59:02.010000"],["2024-07-24T17:59:03.010000"],["2024-07-24T17:59:04.010000"],["2024-07-24T17:59:05.010000"],["2024-07-24T17:59:06.010000"],["2024-07-24T17:59:07.010000"],["2024-07-24T17:59:08.010000"],["2024-07-24T17:59:09.010000"],["2024-07-24T17:59:10.010000"],["2024-07-24T17:59:11.010000"],["2024-07-24T17:59:12.010000"],["2024-07-24T17:59:13.010000"],["2024-07-24T17:59:14.010000"],["2024-07-24T17:59:15.010000"],["2024-07-24T17:59:16.010000"],["2024-07-24T17:59:17.010000"],["2024-07-24T17:59:18.010000"],["2024-07-24T17:59:19.010000"],["2024-07-24T17:59:20.010000"],["2024-07-24T17:59:21.010000"],["2024-07-24T17:59:22.010000"],["2024-07-24T17:59:23.010000"],["2024-07-24T17:59:24.010000"],["2024-07-24T17:59:25.010000"],["2024-07-24T17:59:26.010000"],["2024-07-24T17:59:27.010000"],["2024-07-24T17:59:28.010000"],["2024-07-24T17:59:29.010000"],["2024-07-24T17:59:30.010000"],["2024-07-24T17:59:31.010000"],["2024-07-24T17:59:32.010000"],["2024-07-24T17:59:33.010000"],["2024-07-24T17:59:34.010000"],["2024-07-24T17:59:35.010000"],["2024-07-24T17:59:36.010000"],["2024-07-24T17:59:37.010000"],["2024-07-24T17:59:38.010000"],["2024-07-24T17:59:39.010000"],["2024-07-24T17:59:40.010000"],["2024-07-24T17:59:41.010000"],["2024-07-24T17:59:42.010000"],["2024-07-24T17:59:43.010000"],["2024-07-24T17:59:44.010000"],["2024-07-24T17:59:45.010000"],["2024-07-24T17:59:46.010000"],["2024-07-24T17:59:47.010000"],["2024-07-24T17:59:48.010000"],["2024-07-24T17:59:49.010000"],["2024-07-24T17:59:50.010000"],["2024-07-24T17:59:51.010000"],["2024-07-24T17:59:52.010000"],["2024-07-24T17:59:53.010000"],["2024-07-24T17:59:54.010000"],["2024-07-24T17:59:55.010000"],["2024-07-24T17:59:56.010000"],["2024-07-24T17:59:57.010000"],["2024-07-24T17:59:58.010000"],["2024-07-24T17:59:59.010000"],["2024-07-24T18:00:00.010000"],["2024-07-24T18:00:01.010000"],["2024-07-24T18:00:02.010000"],["2024-07-24T18:00:03.010000"],["2024-07-24T18:00:04.010000"],["2024-07-24T18:00:05.010000"],["2024-07-24T18:00:06.010000"],["2024-07-24T18:00:07.010000"],["2024-07-24T18:00:08.010000"],["2024-07-24T18:00:09.010000"],["2024-07-24T18:00:10.010000"],["2024-07-24T18:00:11.010000"],["2024-07-24T18:00:12.010000"],["2024-07-24T18:00:13.010000"],["2024-07-24T18:00:14.010000"],["2024-07-24T18:00:15.010000"],["2024-07-24T18:00:16.010000"],["2024-07-24T18:00:17.010000"],["2024-07-24T18:00:18.010000"],["2024-07-24T18:00:19.010000"],["2024-07-24T18:00:20.010000"],["2024-07-24T18:00:21.010000"],["2024-07-24T18:00:22.010000"],["2024-07-24T18:00:23.010000"],["2024-07-24T18:00:24.010000"],["2024-07-24T18:00:25.010000"],["2024-07-24T18:00:26.010000"],["2024-07-24T18:00:27.010000"],["2024-07-24T18:00:28.010000"],["2024-07-24T18:00:29.010000"],["2024-07-24T18:00:30.010000"],["2024-07-24T18:00:31.010000"],["2024-07-24T18:00:32.010000"],["2024-07-24T18:00:33.010000"],["2024-07-24T18:00:34.010000"],["2024-07-24T18:00:35.010000"],["2024-07-24T18:00:36.010000"],["2024-07-24T18:00:37.010000"],["2024-07-24T18:00:38.010000"],["2024-07-24T18:00:39.010000"],["2024-07-24T18:00:40.010000"],["2024-07-24T18:00:41.010000"],["2024-07-24T18:00:42.010000"],["2024-07-24T18:00:43.010000"],["2024-07-24T18:00:44.010000"],["2024-07-24T18:00:45.010000"],["2024-07-24T18:00:46.010000"],["2024-07-24T18:00:47.010000"],["2024-07-24T18:00:48.010000"],["2024-07-24T18:00:49.010000"],["2024-07-24T18:00:50.010000"],["2024-07-24T18:00:51.010000"],["2024-07-24T18:00:52.010000"],["2024-07-24T18:00:53.010000"],["2024-07-24T18:00:54.010000"],["2024-07-24T18:00:55.010000"],["2024-07-24T18:00:56.010000"],["2024-07-24T18:00:57.010000"],["2024-07-24T18:00:58.010000"],["2024-07-24T18:00:59.010000"],["2024-07-24T18:01:00.010000"],["2024-07-24T18:01:01.010000"],["2024-07-24T18:01:02.010000"],["2024-07-24T18:01:03.010000"],["2024-07-24T18:01:04.010000"],["2024-07-24T18:01:05.010000"],["2024-07-24T18:01:06.010000"],["2024-07-24T18:01:07.010000"],["2024-07-24T18:01:08.010000"],["2024-07-24T18:01:09.010000"],["2024-07-24T18:01:10.010000"],["2024-07-24T18:01:11.010000"],["2024-07-24T18:01:12.010000"],["2024-07-24T18:01:13.010000"],["2024-07-24T18:01:14.010000"],["2024-07-24T18:01:15.010000"],["2024-07-24T18:01:16.010000"],["2024-07-24T18:01:17.010000"],["2024-07-24T18:01:18.010000"],["2024-07-24T18:01:19.010000"],["2024-07-24T18:01:20.010000"],["2024-07-24T18:01:21.010000"],["2024-07-24T18:01:22.010000"],["2024-07-24T18:01:23.010000"],["2024-07-24T18:01:24.010000"],["2024-07-24T18:01:25.010000"],["2024-07-24T18:01:26.010000"],["2024-07-24T18:01:27.010000"],["2024-07-24T18:01:28.010000"],["2024-07-24T18:01:29.010000"],["2024-07-24T18:01:30.010000"],["2024-07-24T18:01:31.010000"],["2024-07-24T18:01:32.010000"],["2024-07-24T18:01:33.010000"],["2024-07-24T18:01:34.010000"],["2024-07-24T18:01:35.010000"],["2024-07-24T18:01:36.010000"],["2024-07-24T18:01:37.010000"],["2024-07-24T18:01:38.010000"],["2024-07-24T18:01:39.010000"],["2024-07-24T18:01:40.010000"],["2024-07-24T18:01:41.010000"],["2024-07-24T18:01:42.010000"],["2024-07-24T18:01:43.010000"],["2024-07-24T18:01:44.010000"],["2024-07-24T18:01:45.010000"],["2024-07-24T18:01:46.010000"],["2024-07-24T18:01:47.010000"],["2024-07-24T18:01:48.010000"],["2024-07-24T18:01:49.010000"],["2024-07-24T18:01:50.010000"],["2024-07-24T18:01:51.010000"],["2024-07-24T18:01:52.010000"],["2024-07-24T18:01:53.010000"],["2024-07-24T18:01:54.010000"],["2024-07-24T18:01:55.010000"],["2024-07-24T18:01:56.010000"],["2024-07-24T18:01:57.010000"],["2024-07-24T18:01:58.010000"],["2024-07-24T18:01:59.010000"],["2024-07-24T18:02:00.010000"],["2024-07-24T18:02:01.010000"],["2024-07-24T18:02:02.010000"],["2024-07-24T18:02:03.010000"],["2024-07-24T18:02:04.010000"],["2024-07-24T18:02:05.010000"],["2024-07-24T18:02:06.010000"],["2024-07-24T18:02:07.010000"],["2024-07-24T18:02:08.010000"],["2024-07-24T18:02:09.010000"],["2024-07-24T18:02:10.010000"],["2024-07-24T18:02:11.010000"],["2024-07-24T18:02:12.010000"],["2024-07-24T18:02:13.010000"],["2024-07-24T18:02:14.010000"],["2024-07-24T18:02:15.010000"],["2024-07-24T18:02:16.010000"],["2024-07-24T18:02:17.010000"],["2024-07-24T18:02:18.010000"],["2024-07-24T18:02:19.010000"],["2024-07-24T18:02:20.010000"],["2024-07-24T18:02:21.010000"],["2024-07-24T18:02:22.010000"],["2024-07-24T18:02:23.010000"],["2024-07-24T18:02:24.010000"],["2024-07-24T18:02:25.010000"],["2024-07-24T18:02:26.010000"],["2024-07-24T18:02:27.010000"],["2024-07-24T18:02:28.010000"],["2024-07-24T18:02:29.010000"],["2024-07-24T18:02:30.010000"],["2024-07-24T18:02:31.010000"],["2024-07-24T18:02:32.010000"],["2024-07-24T18:02:33.010000"],["2024-07-24T18:02:34.010000"],["2024-07-24T18:02:35.010000"],["2024-07-24T18:02:36.010000"],["2024-07-24T18:02:37.010000"],["2024-07-24T18:02:38.010000"],["2024-07-24T18:02:39.010000"],["2024-07-24T18:02:40.010000"],["2024-07-24T18:02:41.010000"],["2024-07-24T18:02:42.010000"],["2024-07-24T18:02:43.010000"],["2024-07-24T18:02:44.010000"],["2024-07-24T18:02:45.010000"],["2024-07-24T18:02:46.010000"],["2024-07-24T18:02:47.010000"],["2024-07-24T18:02:48.010000"],["2024-07-24T18:02:49.010000"],["2024-07-24T18:02:50.010000"],["2024-07-24T18:02:51.010000"],["2024-07-24T18:02:52.010000"],["2024-07-24T18:02:53.010000"],["2024-07-24T18:02:54.010000"],["2024-07-24T18:02:55.010000"],["2024-07-24T18:02:56.010000"],["2024-07-24T18:02:57.010000"],["2024-07-24T18:02:58.010000"],["2024-07-24T18:02:59.010000"],["2024-07-24T18:03:00.010000"],["2024-07-24T18:03:01.010000"],["2024-07-24T18:03:02.010000"],["2024-07-24T18:03:03.010000"],["2024-07-24T18:03:04.010000"],["2024-07-24T18:03:05.010000"],["2024-07-24T18:03:06.010000"],["2024-07-24T18:03:07.010000"],["2024-07-24T18:03:08.010000"],["2024-07-24T18:03:09.010000"],["2024-07-24T18:03:10.010000"],["2024-07-24T18:03:11.010000"],["2024-07-24T18:03:12.010000"],["2024-07-24T18:03:13.010000"],["2024-07-24T18:03:14.010000"],["2024-07-24T18:03:15.010000"],["2024-07-24T18:03:16.010000"],["2024-07-24T18:03:17.010000"],["2024-07-24T18:03:18.010000"],["2024-07-24T18:03:19.010000"],["2024-07-24T18:03:20.010000"],["2024-07-24T18:03:21.010000"],["2024-07-24T18:03:22.010000"],["2024-07-24T18:03:23.010000"],["2024-07-24T18:03:24.010000"],["2024-07-24T18:03:25.010000"],["2024-07-24T18:03:26.010000"],["2024-07-24T18:03:27.010000"],["2024-07-24T18:03:28.010000"],["2024-07-24T18:03:29.010000"],["2024-07-24T18:03:30.010000"],["2024-07-24T18:03:31.010000"],["2024-07-24T18:03:32.010000"],["2024-07-24T18:03:33.010000"],["2024-07-24T18:03:34.010000"],["2024-07-24T18:03:35.010000"],["2024-07-24T18:03:36.010000"],["2024-07-24T18:03:37.010000"],["2024-07-24T18:03:38.010000"],["2024-07-24T18:03:39.010000"],["2024-07-24T18:03:40.010000"],["2024-07-24T18:03:41.010000"],["2024-07-24T18:03:42.010000"],["2024-07-24T18:03:43.010000"],["2024-07-24T18:03:44.010000"],["2024-07-24T18:03:45.010000"],["2024-07-24T18:03:46.010000"],["2024-07-24T18:03:47.010000"],["2024-07-24T18:03:48.010000"],["2024-07-24T18:03:49.010000"],["2024-07-24T18:03:50.010000"],["2024-07-24T18:03:51.010000"],["2024-07-24T18:03:52.010000"],["2024-07-24T18:03:53.010000"],["2024-07-24T18:03:54.010000"],["2024-07-24T18:03:55.010000"],["2024-07-24T18:03:56.010000"],["2024-07-24T18:03:57.010000"],["2024-07-24T18:03:58.010000"],["2024-07-24T18:03:59.010000"],["2024-07-24T18:04:00.010000"],["2024-07-24T18:04:01.010000"],["2024-07-24T18:04:02.010000"],["2024-07-24T18:04:03.010000"],["2024-07-24T18:04:04.010000"],["2024-07-24T18:04:05.010000"],["2024-07-24T18:04:06.010000"],["2024-07-24T18:04:07.010000"],["2024-07-24T18:04:08.010000"],["2024-07-24T18:04:09.010000"],["2024-07-24T18:04:10.010000"],["2024-07-24T18:04:11.010000"],["2024-07-24T18:04:12.010000"],["2024-07-24T18:04:13.010000"],["2024-07-24T18:04:14.010000"],["2024-07-24T18:04:15.010000"],["2024-07-24T18:04:16.010000"],["2024-07-24T18:04:17.010000"],["2024-07-24T18:04:18.010000"],["2024-07-24T18:04:19.010000"],["2024-07-24T18:04:20.010000"],["2024-07-24T18:04:21.010000"],["2024-07-24T18:04:22.010000"],["2024-07-24T18:04:23.010000"],["2024-07-24T18:04:24.010000"],["2024-07-24T18:04:25.010000"],["2024-07-24T18:04:26.010000"],["2024-07-24T18:04:27.010000"],["2024-07-24T18:04:28.010000"],["2024-07-24T18:04:29.010000"],["2024-07-24T18:04:30.010000"],["2024-07-24T18:04:31.010000"],["2024-07-24T18:04:32.010000"],["2024-07-24T18:04:33.010000"],["2024-07-24T18:04:34.010000"],["2024-07-24T18:04:35.010000"],["2024-07-24T18:04:36.010000"],["2024-07-24T18:04:37.010000"],["2024-07-24T18:04:38.010000"],["2024-07-24T18:04:39.010000"],["2024-07-24T18:04:40.010000"],["2024-07-24T18:04:41.010000"],["2024-07-24T18:04:42.010000"],["2024-07-24T18:04:43.010000"],["2024-07-24T18:04:44.010000"],["2024-07-24T18:04:45.010000"],["2024-07-24T18:04:46.010000"],["2024-07-24T18:04:47.010000"],["2024-07-24T18:04:48.010000"],["2024-07-24T18:04:49.010000"],["2024-07-24T18:04:50.010000"],["2024-07-24T18:04:51.010000"],["2024-07-24T18:04:52.010000"],["2024-07-24T18:04:53.010000"],["2024-07-24T18:04:54.010000"],["2024-07-24T18:04:55.010000"],["2024-07-24T18:04:56.010000"],["2024-07-24T18:04:57.010000"],["2024-07-24T18:04:58.010000"],["2024-07-24T18:04:59.010000"],["2024-07-24T18:05:00.010000"],["2024-07-24T18:05:01.010000"],["2024-07-24T18:05:02.010000"],["2024-07-24T18:05:03.010000"],["2024-07-24T18:05:04.010000"],["2024-07-24T18:05:05.010000"],["2024-07-24T18:05:06.010000"],["2024-07-24T18:05:07.010000"],["2024-07-24T18:05:08.010000"],["2024-07-24T18:05:09.010000"],["2024-07-24T18:05:10.010000"],["2024-07-24T18:05:11.010000"],["2024-07-24T18:05:12.010000"],["2024-07-24T18:05:13.010000"],["2024-07-24T18:05:14.010000"],["2024-07-24T18:05:15.010000"],["2024-07-24T18:05:16.010000"],["2024-07-24T18:05:17.010000"],["2024-07-24T18:05:18.010000"],["2024-07-24T18:05:19.010000"],["2024-07-24T18:05:20.010000"],["2024-07-24T18:05:21.010000"],["2024-07-24T18:05:22.010000"],["2024-07-24T18:05:23.010000"],["2024-07-24T18:05:24.010000"],["2024-07-24T18:05:25.010000"],["2024-07-24T18:05:26.010000"],["2024-07-24T18:05:27.010000"],["2024-07-24T18:05:28.010000"],["2024-07-24T18:05:29.010000"],["2024-07-24T18:05:30.010000"],["2024-07-24T18:05:31.010000"],["2024-07-24T18:05:32.010000"],["2024-07-24T18:05:33.010000"],["2024-07-24T18:05:34.010000"],["2024-07-24T18:05:35.010000"],["2024-07-24T18:05:36.010000"],["2024-07-24T18:05:37.010000"],["2024-07-24T18:05:38.010000"],["2024-07-24T18:05:39.010000"],["2024-07-24T18:05:40.010000"],["2024-07-24T18:05:41.010000"],["2024-07-24T18:05:42.010000"],["2024-07-24T18:05:43.010000"],["2024-07-24T18:05:44.010000"],["2024-07-24T18:05:45.010000"],["2024-07-24T18:05:46.010000"],["2024-07-24T18:05:47.010000"],["2024-07-24T18:05:48.010000"],["2024-07-24T18:05:49.010000"],["2024-07-24T18:05:50.010000"],["2024-07-24T18:05:51.010000"],["2024-07-24T18:05:52.010000"],["2024-07-24T18:05:53.010000"],["2024-07-24T18:05:54.010000"],["2024-07-24T18:05:55.010000"],["2024-07-24T18:05:56.010000"],["2024-07-24T18:05:57.010000"],["2024-07-24T18:05:58.010000"],["2024-07-24T18:05:59.010000"],["2024-07-24T18:06:00.010000"],["2024-07-24T18:06:01.010000"],["2024-07-24T18:06:02.010000"],["2024-07-24T18:06:03.010000"],["2024-07-24T18:06:04.010000"],["2024-07-24T18:06:05.010000"],["2024-07-24T18:06:06.010000"],["2024-07-24T18:06:07.010000"],["2024-07-24T18:06:08.010000"],["2024-07-24T18:06:09.010000"],["2024-07-24T18:06:10.010000"],["2024-07-24T18:06:11.010000"],["2024-07-24T18:06:12.010000"],["2024-07-24T18:06:13.010000"],["2024-07-24T18:06:14.010000"],["2024-07-24T18:06:15.010000"],["2024-07-24T18:06:16.010000"],["2024-07-24T18:06:17.010000"],["2024-07-24T18:06:18.010000"],["2024-07-24T18:06:19.010000"],["2024-07-24T18:06:20.010000"],["2024-07-24T18:06:21.010000"],["2024-07-24T18:06:22.010000"],["2024-07-24T18:06:23.010000"],["2024-07-24T18:06:24.010000"],["2024-07-24T18:06:25.010000"],["2024-07-24T18:06:26.010000"],["2024-07-24T18:06:27.010000"],["2024-07-24T18:06:28.010000"],["2024-07-24T18:06:29.010000"],["2024-07-24T18:06:30.010000"],["2024-07-24T18:06:31.010000"],["2024-07-24T18:06:32.010000"],["2024-07-24T18:06:33.010000"],["2024-07-24T18:06:34.010000"],["2024-07-24T18:06:35.010000"],["2024-07-24T18:06:36.010000"],["2024-07-24T18:06:37.010000"],["2024-07-24T18:06:38.010000"],["2024-07-24T18:06:39.010000"],["2024-07-24T18:06:40.010000"],["2024-07-24T18:06:41.010000"],["2024-07-24T18:06:42.010000"],["2024-07-24T18:06:43.010000"],["2024-07-24T18:06:44.010000"],["2024-07-24T18:06:45.010000"],["2024-07-24T18:06:46.010000"],["2024-07-24T18:06:47.010000"],["2024-07-24T18:06:48.010000"],["2024-07-24T18:06:49.010000"],["2024-07-24T18:06:50.010000"],["2024-07-24T18:06:51.010000"],["2024-07-24T18:06:52.010000"],["2024-07-24T18:06:53.010000"],["2024-07-24T18:06:54.010000"],["2024-07-24T18:06:55.010000"],["2024-07-24T18:06:56.010000"],["2024-07-24T18:06:57.010000"],["2024-07-24T18:06:58.010000"],["2024-07-24T18:06:59.010000"],["2024-07-24T18:07:00.010000"],["2024-07-24T18:07:01.010000"],["2024-07-24T18:07:02.010000"],["2024-07-24T18:07:03.010000"],["2024-07-24T18:07:04.010000"],["2024-07-24T18:07:05.010000"],["2024-07-24T18:07:06.010000"],["2024-07-24T18:07:07.010000"],["2024-07-24T18:07:08.010000"],["2024-07-24T18:07:09.010000"],["2024-07-24T18:07:10.010000"],["2024-07-24T18:07:11.010000"],["2024-07-24T18:07:12.010000"],["2024-07-24T18:07:13.010000"],["2024-07-24T18:07:14.010000"],["2024-07-24T18:07:15.010000"],["2024-07-24T18:07:16.010000"],["2024-07-24T18:07:17.010000"],["2024-07-24T18:07:18.010000"],["2024-07-24T18:07:19.010000"],["2024-07-24T18:07:20.010000"],["2024-07-24T18:07:21.010000"],["2024-07-24T18:07:22.010000"],["2024-07-24T18:07:23.010000"],["2024-07-24T18:07:24.010000"],["2024-07-24T18:07:25.010000"],["2024-07-24T18:07:26.010000"],["2024-07-24T18:07:27.010000"],["2024-07-24T18:07:28.010000"],["2024-07-24T18:07:29.010000"],["2024-07-24T18:07:30.010000"],["2024-07-24T18:07:31.010000"],["2024-07-24T18:07:32.010000"],["2024-07-24T18:07:33.010000"],["2024-07-24T18:07:34.010000"],["2024-07-24T18:07:35.010000"],["2024-07-24T18:07:36.010000"],["2024-07-24T18:07:37.010000"],["2024-07-24T18:07:38.010000"],["2024-07-24T18:07:39.010000"],["2024-07-24T18:07:40.010000"],["2024-07-24T18:07:41.010000"],["2024-07-24T18:07:42.010000"],["2024-07-24T18:07:43.010000"],["2024-07-24T18:07:44.010000"],["2024-07-24T18:07:45.010000"],["2024-07-24T18:07:46.010000"],["2024-07-24T18:07:47.010000"],["2024-07-24T18:07:48.010000"],["2024-07-24T18:07:49.010000"],["2024-07-24T18:07:50.010000"],["2024-07-24T18:07:51.010000"],["2024-07-24T18:07:52.010000"],["2024-07-24T18:07:53.010000"],["2024-07-24T18:07:54.010000"],["2024-07-24T18:07:55.010000"],["2024-07-24T18:07:56.010000"],["2024-07-24T18:07:57.010000"],["2024-07-24T18:07:58.010000"],["2024-07-24T18:07:59.010000"],["2024-07-24T18:08:00.010000"],["2024-07-24T18:08:01.010000"],["2024-07-24T18:08:02.010000"],["2024-07-24T18:08:03.010000"],["2024-07-24T18:08:04.010000"],["2024-07-24T18:08:05.010000"],["2024-07-24T18:08:06.010000"],["2024-07-24T18:08:07.010000"],["2024-07-24T18:08:08.010000"],["2024-07-24T18:08:09.010000"],["2024-07-24T18:08:10.010000"],["2024-07-24T18:08:11.010000"],["2024-07-24T18:08:12.010000"],["2024-07-24T18:08:13.010000"],["2024-07-24T18:08:14.010000"],["2024-07-24T18:08:15.010000"],["2024-07-24T18:08:16.010000"],["2024-07-24T18:08:17.010000"],["2024-07-24T18:08:18.010000"],["2024-07-24T18:08:19.010000"],["2024-07-24T18:08:20.010000"],["2024-07-24T18:08:21.010000"],["2024-07-24T18:08:22.010000"],["2024-07-24T18:08:23.010000"],["2024-07-24T18:08:24.010000"],["2024-07-24T18:08:25.010000"],["2024-07-24T18:08:26.010000"],["2024-07-24T18:08:27.010000"],["2024-07-24T18:08:28.010000"],["2024-07-24T18:08:29.010000"],["2024-07-24T18:08:30.010000"],["2024-07-24T18:08:31.010000"],["2024-07-24T18:08:32.010000"],["2024-07-24T18:08:33.010000"],["2024-07-24T18:08:34.010000"],["2024-07-24T18:08:35.010000"],["2024-07-24T18:08:36.010000"],["2024-07-24T18:08:37.010000"],["2024-07-24T18:08:38.010000"],["2024-07-24T18:08:39.010000"],["2024-07-24T18:08:40.010000"],["2024-07-24T18:08:41.010000"],["2024-07-24T18:08:42.010000"],["2024-07-24T18:08:43.010000"],["2024-07-24T18:08:44.010000"],["2024-07-24T18:08:45.010000"],["2024-07-24T18:08:46.010000"],["2024-07-24T18:08:47.010000"],["2024-07-24T18:08:48.010000"],["2024-07-24T18:08:49.010000"],["2024-07-24T18:08:50.010000"],["2024-07-24T18:08:51.010000"],["2024-07-24T18:08:52.010000"],["2024-07-24T18:08:53.010000"],["2024-07-24T18:08:54.010000"],["2024-07-24T18:08:55.010000"],["2024-07-24T18:08:56.010000"],["2024-07-24T18:08:57.010000"],["2024-07-24T18:08:58.010000"],["2024-07-24T18:08:59.010000"],["2024-07-24T18:09:00.010000"],["2024-07-24T18:09:01.010000"],["2024-07-24T18:09:02.010000"],["2024-07-24T18:09:03.010000"],["2024-07-24T18:09:04.010000"],["2024-07-24T18:09:05.010000"],["2024-07-24T18:09:06.010000"],["2024-07-24T18:09:07.010000"],["2024-07-24T18:09:08.010000"],["2024-07-24T18:09:09.010000"],["2024-07-24T18:09:10.010000"],["2024-07-24T18:09:11.010000"],["2024-07-24T18:09:12.010000"],["2024-07-24T18:09:13.010000"],["2024-07-24T18:09:14.010000"],["2024-07-24T18:09:15.010000"],["2024-07-24T18:09:16.010000"],["2024-07-24T18:09:17.010000"],["2024-07-24T18:09:18.010000"],["2024-07-24T18:09:19.010000"],["2024-07-24T18:09:20.010000"],["2024-07-24T18:09:21.010000"],["2024-07-24T18:09:22.010000"],["2024-07-24T18:09:23.010000"],["2024-07-24T18:09:24.010000"],["2024-07-24T18:09:25.010000"],["2024-07-24T18:09:26.010000"],["2024-07-24T18:09:27.010000"],["2024-07-24T18:09:28.010000"],["2024-07-24T18:09:29.010000"],["2024-07-24T18:09:30.010000"],["2024-07-24T18:09:31.010000"],["2024-07-24T18:09:32.010000"],["2024-07-24T18:09:33.010000"],["2024-07-24T18:09:34.010000"],["2024-07-24T18:09:35.010000"],["2024-07-24T18:09:36.010000"],["2024-07-24T18:09:37.010000"],["2024-07-24T18:09:38.010000"],["2024-07-24T18:09:39.010000"],["2024-07-24T18:09:40.010000"],["2024-07-24T18:09:41.010000"],["2024-07-24T18:09:42.010000"],["2024-07-24T18:09:43.010000"],["2024-07-24T18:09:44.010000"],["2024-07-24T18:09:45.010000"],["2024-07-24T18:09:46.010000"],["2024-07-24T18:09:47.010000"],["2024-07-24T18:09:48.010000"],["2024-07-24T18:09:49.010000"],["2024-07-24T18:09:50.010000"],["2024-07-24T18:09:51.010000"],["2024-07-24T18:09:52.010000"],["2024-07-24T18:09:53.010000"],["2024-07-24T18:09:54.010000"],["2024-07-24T18:09:55.010000"],["2024-07-24T18:09:56.010000"],["2024-07-24T18:09:57.010000"],["2024-07-24T18:09:58.010000"],["2024-07-24T18:09:59.010000"],["2024-07-24T18:10:00.010000"],["2024-07-24T18:10:01.010000"],["2024-07-24T18:10:02.010000"],["2024-07-24T18:10:03.010000"],["2024-07-24T18:10:04.010000"],["2024-07-24T18:10:05.010000"],["2024-07-24T18:10:06.010000"],["2024-07-24T18:10:07.010000"],["2024-07-24T18:10:08.010000"],["2024-07-24T18:10:09.010000"],["2024-07-24T18:10:10.010000"],["2024-07-24T18:10:11.010000"],["2024-07-24T18:10:12.010000"],["2024-07-24T18:10:13.010000"],["2024-07-24T18:10:14.010000"],["2024-07-24T18:10:15.010000"],["2024-07-24T18:10:16.010000"],["2024-07-24T18:10:17.010000"],["2024-07-24T18:10:18.010000"],["2024-07-24T18:10:19.010000"],["2024-07-24T18:10:20.010000"],["2024-07-24T18:10:21.010000"],["2024-07-24T18:10:22.010000"],["2024-07-24T18:10:23.010000"],["2024-07-24T18:10:24.010000"],["2024-07-24T18:10:25.010000"],["2024-07-24T18:10:26.010000"],["2024-07-24T18:10:27.010000"],["2024-07-24T18:10:28.010000"],["2024-07-24T18:10:29.010000"],["2024-07-24T18:10:30.010000"],["2024-07-24T18:10:31.010000"],["2024-07-24T18:10:32.010000"],["2024-07-24T18:10:33.010000"],["2024-07-24T18:10:34.010000"],["2024-07-24T18:10:35.010000"],["2024-07-24T18:10:36.010000"],["2024-07-24T18:10:37.010000"],["2024-07-24T18:10:38.010000"],["2024-07-24T18:10:39.010000"],["2024-07-24T18:10:40.010000"],["2024-07-24T18:10:41.010000"],["2024-07-24T18:10:42.010000"],["2024-07-24T18:10:43.010000"],["2024-07-24T18:10:44.010000"],["2024-07-24T18:10:45.010000"],["2024-07-24T18:10:46.010000"],["2024-07-24T18:10:47.010000"],["2024-07-24T18:10:48.010000"],["2024-07-24T18:10:49.010000"],["2024-07-24T18:10:50.010000"],["2024-07-24T18:10:51.010000"],["2024-07-24T18:10:52.010000"],["2024-07-24T18:10:53.010000"],["2024-07-24T18:10:54.010000"],["2024-07-24T18:10:55.010000"],["2024-07-24T18:10:56.010000"],["2024-07-24T18:10:57.010000"],["2024-07-24T18:10:58.010000"],["2024-07-24T18:10:59.010000"],["2024-07-24T18:11:00.010000"],["2024-07-24T18:11:01.010000"],["2024-07-24T18:11:02.010000"],["2024-07-24T18:11:03.010000"],["2024-07-24T18:11:04.010000"],["2024-07-24T18:11:05.010000"],["2024-07-24T18:11:06.010000"],["2024-07-24T18:11:07.010000"],["2024-07-24T18:11:08.010000"],["2024-07-24T18:11:09.010000"],["2024-07-24T18:11:10.010000"],["2024-07-24T18:11:11.010000"],["2024-07-24T18:11:12.010000"],["2024-07-24T18:11:13.010000"],["2024-07-24T18:11:14.010000"],["2024-07-24T18:11:15.010000"],["2024-07-24T18:11:16.010000"],["2024-07-24T18:11:17.010000"],["2024-07-24T18:11:18.010000"],["2024-07-24T18:11:19.010000"],["2024-07-24T18:11:20.010000"],["2024-07-24T18:11:21.010000"],["2024-07-24T18:11:22.010000"],["2024-07-24T18:11:23.010000"],["2024-07-24T18:11:24.010000"],["2024-07-24T18:11:25.010000"],["2024-07-24T18:11:26.010000"],["2024-07-24T18:11:27.010000"],["2024-07-24T18:11:28.010000"],["2024-07-24T18:11:29.010000"],["2024-07-24T18:11:30.010000"],["2024-07-24T18:11:31.010000"],["2024-07-24T18:11:32.010000"],["2024-07-24T18:11:33.010000"],["2024-07-24T18:11:34.010000"],["2024-07-24T18:11:35.010000"],["2024-07-24T18:11:36.010000"],["2024-07-24T18:11:37.010000"],["2024-07-24T18:11:38.010000"],["2024-07-24T18:11:39.010000"],["2024-07-24T18:11:40.010000"],["2024-07-24T18:11:41.010000"],["2024-07-24T18:11:42.010000"],["2024-07-24T18:11:43.010000"],["2024-07-24T18:11:44.010000"],["2024-07-24T18:11:45.010000"],["2024-07-24T18:11:46.010000"],["2024-07-24T18:11:47.010000"],["2024-07-24T18:11:48.010000"],["2024-07-24T18:11:49.010000"],["2024-07-24T18:11:50.010000"],["2024-07-24T18:11:51.010000"],["2024-07-24T18:11:52.010000"],["2024-07-24T18:11:53.010000"],["2024-07-24T18:11:54.010000"],["2024-07-24T18:11:55.010000"],["2024-07-24T18:11:56.010000"],["2024-07-24T18:11:57.010000"],["2024-07-24T18:11:58.010000"],["2024-07-24T18:11:59.010000"],["2024-07-24T18:12:00.010000"],["2024-07-24T18:12:01.010000"],["2024-07-24T18:12:02.010000"],["2024-07-24T18:12:03.010000"],["2024-07-24T18:12:04.010000"],["2024-07-24T18:12:05.010000"],["2024-07-24T18:12:06.010000"],["2024-07-24T18:12:07.010000"],["2024-07-24T18:12:08.010000"],["2024-07-24T18:12:09.010000"],["2024-07-24T18:12:10.010000"],["2024-07-24T18:12:11.010000"],["2024-07-24T18:12:12.010000"],["2024-07-24T18:12:13.010000"],["2024-07-24T18:12:14.010000"],["2024-07-24T18:12:15.010000"],["2024-07-24T18:12:16.010000"],["2024-07-24T18:12:17.010000"],["2024-07-24T18:12:18.010000"],["2024-07-24T18:12:19.010000"],["2024-07-24T18:12:20.010000"],["2024-07-24T18:12:21.010000"],["2024-07-24T18:12:22.010000"],["2024-07-24T18:12:23.010000"],["2024-07-24T18:12:24.010000"],["2024-07-24T18:12:25.010000"],["2024-07-24T18:12:26.010000"],["2024-07-24T18:12:27.010000"],["2024-07-24T18:12:28.010000"],["2024-07-24T18:12:29.010000"],["2024-07-24T18:12:30.010000"],["2024-07-24T18:12:31.010000"],["2024-07-24T18:12:32.010000"],["2024-07-24T18:12:33.010000"],["2024-07-24T18:12:34.010000"],["2024-07-24T18:12:35.010000"],["2024-07-24T18:12:36.010000"],["2024-07-24T18:12:37.010000"],["2024-07-24T18:12:38.010000"],["2024-07-24T18:12:39.010000"],["2024-07-24T18:12:40.010000"],["2024-07-24T18:12:41.010000"],["2024-07-24T18:12:42.010000"],["2024-07-24T18:12:43.010000"],["2024-07-24T18:12:44.010000"],["2024-07-24T18:12:45.010000"],["2024-07-24T18:12:46.010000"],["2024-07-24T18:12:47.010000"],["2024-07-24T18:12:48.010000"],["2024-07-24T18:12:49.010000"],["2024-07-24T18:12:50.010000"],["2024-07-24T18:12:51.010000"],["2024-07-24T18:12:52.010000"],["2024-07-24T18:12:53.010000"],["2024-07-24T18:12:54.010000"],["2024-07-24T18:12:55.010000"],["2024-07-24T18:12:56.010000"],["2024-07-24T18:12:57.010000"],["2024-07-24T18:12:58.010000"],["2024-07-24T18:12:59.010000"],["2024-07-24T18:13:00.010000"],["2024-07-24T18:13:01.010000"],["2024-07-24T18:13:02.010000"],["2024-07-24T18:13:03.010000"],["2024-07-24T18:13:04.010000"],["2024-07-24T18:13:05.010000"],["2024-07-24T18:13:06.010000"],["2024-07-24T18:13:07.010000"],["2024-07-24T18:13:08.010000"],["2024-07-24T18:13:09.010000"],["2024-07-24T18:13:10.010000"],["2024-07-24T18:13:11.010000"],["2024-07-24T18:13:12.010000"],["2024-07-24T18:13:13.010000"],["2024-07-24T18:13:14.010000"],["2024-07-24T18:13:15.010000"],["2024-07-24T18:13:16.010000"],["2024-07-24T18:13:17.010000"],["2024-07-24T18:13:18.010000"],["2024-07-24T18:13:19.010000"],["2024-07-24T18:13:20.010000"],["2024-07-24T18:13:21.010000"],["2024-07-24T18:13:22.010000"],["2024-07-24T18:13:23.010000"],["2024-07-24T18:13:24.010000"],["2024-07-24T18:13:25.010000"],["2024-07-24T18:13:26.010000"],["2024-07-24T18:13:27.010000"],["2024-07-24T18:13:28.010000"],["2024-07-24T18:13:29.010000"],["2024-07-24T18:13:30.010000"],["2024-07-24T18:13:31.010000"],["2024-07-24T18:13:32.010000"],["2024-07-24T18:13:33.010000"],["2024-07-24T18:13:34.010000"],["2024-07-24T18:13:35.010000"],["2024-07-24T18:13:36.010000"],["2024-07-24T18:13:37.010000"],["2024-07-24T18:13:38.010000"],["2024-07-24T18:13:39.010000"],["2024-07-24T18:13:40.010000"],["2024-07-24T18:13:41.010000"],["2024-07-24T18:13:42.010000"],["2024-07-24T18:13:43.010000"],["2024-07-24T18:13:44.010000"],["2024-07-24T18:13:45.010000"],["2024-07-24T18:13:46.010000"],["2024-07-24T18:13:47.010000"],["2024-07-24T18:13:48.010000"],["2024-07-24T18:13:49.010000"],["2024-07-24T18:13:50.010000"],["2024-07-24T18:13:51.010000"],["2024-07-24T18:13:52.010000"],["2024-07-24T18:13:53.010000"],["2024-07-24T18:13:54.010000"],["2024-07-24T18:13:55.010000"],["2024-07-24T18:13:56.010000"],["2024-07-24T18:13:57.010000"],["2024-07-24T18:13:58.010000"],["2024-07-24T18:13:59.010000"],["2024-07-24T18:14:00.010000"],["2024-07-24T18:14:01.010000"],["2024-07-24T18:14:02.010000"],["2024-07-24T18:14:03.010000"],["2024-07-24T18:14:04.010000"],["2024-07-24T18:14:05.010000"],["2024-07-24T18:14:06.010000"],["2024-07-24T18:14:07.010000"],["2024-07-24T18:14:08.010000"],["2024-07-24T18:14:09.010000"],["2024-07-24T18:14:10.010000"],["2024-07-24T18:14:11.010000"],["2024-07-24T18:14:12.010000"],["2024-07-24T18:14:13.010000"],["2024-07-24T18:14:14.010000"],["2024-07-24T18:14:15.010000"],["2024-07-24T18:14:16.010000"],["2024-07-24T18:14:17.010000"],["2024-07-24T18:14:18.010000"],["2024-07-24T18:14:19.010000"],["2024-07-24T18:14:20.010000"],["2024-07-24T18:14:21.010000"],["2024-07-24T18:14:22.010000"],["2024-07-24T18:14:23.010000"],["2024-07-24T18:14:24.010000"],["2024-07-24T18:14:25.010000"],["2024-07-24T18:14:26.010000"],["2024-07-24T18:14:27.010000"],["2024-07-24T18:14:28.010000"],["2024-07-24T18:14:29.010000"],["2024-07-24T18:14:30.010000"],["2024-07-24T18:14:31.010000"],["2024-07-24T18:14:32.010000"],["2024-07-24T18:14:33.010000"],["2024-07-24T18:14:34.010000"],["2024-07-24T18:14:35.010000"],["2024-07-24T18:14:36.010000"],["2024-07-24T18:14:37.010000"],["2024-07-24T18:14:38.010000"],["2024-07-24T18:14:39.010000"],["2024-07-24T18:14:40.010000"],["2024-07-24T18:14:41.010000"],["2024-07-24T18:14:42.010000"],["2024-07-24T18:14:43.010000"],["2024-07-24T18:14:44.010000"],["2024-07-24T18:14:45.010000"],["2024-07-24T18:14:46.010000"],["2024-07-24T18:14:47.010000"],["2024-07-24T18:14:48.010000"],["2024-07-24T18:14:49.010000"],["2024-07-24T18:14:50.010000"],["2024-07-24T18:14:51.010000"],["2024-07-24T18:14:52.010000"],["2024-07-24T18:14:53.010000"],["2024-07-24T18:14:54.010000"],["2024-07-24T18:14:55.010000"],["2024-07-24T18:14:56.010000"],["2024-07-24T18:14:57.010000"],["2024-07-24T18:14:58.010000"],["2024-07-24T18:14:59.010000"],["2024-07-24T18:15:00.010000"],["2024-07-24T18:15:01.010000"],["2024-07-24T18:15:02.010000"],["2024-07-24T18:15:03.010000"],["2024-07-24T18:15:04.010000"],["2024-07-24T18:15:05.010000"],["2024-07-24T18:15:06.010000"],["2024-07-24T18:15:07.010000"],["2024-07-24T18:15:08.010000"],["2024-07-24T18:15:09.010000"],["2024-07-24T18:15:10.010000"],["2024-07-24T18:15:11.010000"],["2024-07-24T18:15:12.010000"],["2024-07-24T18:15:13.010000"],["2024-07-24T18:15:14.010000"],["2024-07-24T18:15:15.010000"],["2024-07-24T18:15:16.010000"],["2024-07-24T18:15:17.010000"],["2024-07-24T18:15:18.010000"],["2024-07-24T18:15:19.010000"],["2024-07-24T18:15:20.010000"],["2024-07-24T18:15:21.010000"],["2024-07-24T18:15:22.010000"],["2024-07-24T18:15:23.010000"],["2024-07-24T18:15:24.010000"],["2024-07-24T18:15:25.010000"],["2024-07-24T18:15:26.010000"],["2024-07-24T18:15:27.010000"],["2024-07-24T18:15:28.010000"],["2024-07-24T18:15:29.010000"],["2024-07-24T18:15:30.010000"],["2024-07-24T18:15:31.010000"],["2024-07-24T18:15:32.010000"],["2024-07-24T18:15:33.010000"],["2024-07-24T18:15:34.010000"],["2024-07-24T18:15:35.010000"],["2024-07-24T18:15:36.010000"],["2024-07-24T18:15:37.010000"],["2024-07-24T18:15:38.010000"],["2024-07-24T18:15:39.010000"],["2024-07-24T18:15:40.010000"],["2024-07-24T18:15:41.010000"],["2024-07-24T18:15:42.010000"],["2024-07-24T18:15:43.010000"],["2024-07-24T18:15:44.010000"],["2024-07-24T18:15:45.010000"],["2024-07-24T18:15:46.010000"],["2024-07-24T18:15:47.010000"],["2024-07-24T18:15:48.010000"],["2024-07-24T18:15:49.010000"],["2024-07-24T18:15:50.010000"],["2024-07-24T18:15:51.010000"],["2024-07-24T18:15:52.010000"],["2024-07-24T18:15:53.010000"],["2024-07-24T18:15:54.010000"],["2024-07-24T18:15:55.010000"],["2024-07-24T18:15:56.010000"],["2024-07-24T18:15:57.010000"],["2024-07-24T18:15:58.010000"],["2024-07-24T18:15:59.010000"],["2024-07-24T18:16:00.010000"],["2024-07-24T18:16:01.010000"],["2024-07-24T18:16:02.010000"],["2024-07-24T18:16:03.010000"],["2024-07-24T18:16:04.010000"],["2024-07-24T18:16:05.010000"],["2024-07-24T18:16:06.010000"],["2024-07-24T18:16:07.010000"],["2024-07-24T18:16:08.010000"],["2024-07-24T18:16:09.010000"],["2024-07-24T18:16:10.010000"],["2024-07-24T18:16:11.010000"],["2024-07-24T18:16:12.010000"],["2024-07-24T18:16:13.010000"],["2024-07-24T18:16:14.010000"],["2024-07-24T18:16:15.010000"],["2024-07-24T18:16:16.010000"],["2024-07-24T18:16:17.010000"],["2024-07-24T18:16:18.010000"],["2024-07-24T18:16:19.010000"],["2024-07-24T18:16:20.010000"],["2024-07-24T18:16:21.010000"],["2024-07-24T18:16:22.010000"],["2024-07-24T18:16:23.010000"],["2024-07-24T18:16:24.010000"],["2024-07-24T18:16:25.010000"],["2024-07-24T18:16:26.010000"],["2024-07-24T18:16:27.010000"],["2024-07-24T18:16:28.010000"],["2024-07-24T18:16:29.010000"],["2024-07-24T18:16:30.010000"],["2024-07-24T18:16:31.010000"],["2024-07-24T18:16:32.010000"],["2024-07-24T18:16:33.010000"],["2024-07-24T18:16:34.010000"],["2024-07-24T18:16:35.010000"],["2024-07-24T18:16:36.010000"],["2024-07-24T18:16:37.010000"],["2024-07-24T18:16:38.010000"],["2024-07-24T18:16:39.010000"],["2024-07-24T18:16:40.010000"],["2024-07-24T18:16:41.010000"],["2024-07-24T18:16:42.010000"],["2024-07-24T18:16:43.010000"],["2024-07-24T18:16:44.010000"],["2024-07-24T18:16:45.010000"],["2024-07-24T18:16:46.010000"],["2024-07-24T18:16:47.010000"],["2024-07-24T18:16:48.010000"],["2024-07-24T18:16:49.010000"],["2024-07-24T18:16:50.010000"],["2024-07-24T18:16:51.010000"],["2024-07-24T18:16:52.010000"],["2024-07-24T18:16:53.010000"],["2024-07-24T18:16:54.010000"],["2024-07-24T18:16:55.010000"],["2024-07-24T18:16:56.010000"],["2024-07-24T18:16:57.010000"],["2024-07-24T18:16:58.010000"],["2024-07-24T18:16:59.010000"],["2024-07-24T18:17:00.010000"],["2024-07-24T18:17:01.010000"],["2024-07-24T18:17:02.010000"],["2024-07-24T18:17:03.010000"],["2024-07-24T18:17:04.010000"],["2024-07-24T18:17:05.010000"],["2024-07-24T18:17:06.010000"],["2024-07-24T18:17:07.010000"],["2024-07-24T18:17:08.010000"],["2024-07-24T18:17:09.010000"],["2024-07-24T18:17:10.010000"],["2024-07-24T18:17:11.010000"],["2024-07-24T18:17:12.010000"],["2024-07-24T18:17:13.010000"],["2024-07-24T18:17:14.010000"],["2024-07-24T18:17:15.010000"],["2024-07-24T18:17:16.010000"],["2024-07-24T18:17:17.010000"],["2024-07-24T18:17:18.010000"],["2024-07-24T18:17:19.010000"],["2024-07-24T18:17:20.010000"],["2024-07-24T18:17:21.010000"],["2024-07-24T18:17:22.010000"],["2024-07-24T18:17:23.010000"],["2024-07-24T18:17:24.010000"],["2024-07-24T18:17:25.010000"],["2024-07-24T18:17:26.010000"],["2024-07-24T18:17:27.010000"],["2024-07-24T18:17:28.010000"],["2024-07-24T18:17:29.010000"],["2024-07-24T18:17:30.010000"],["2024-07-24T18:17:31.010000"],["2024-07-24T18:17:32.010000"],["2024-07-24T18:17:33.010000"],["2024-07-24T18:17:34.010000"],["2024-07-24T18:17:35.010000"],["2024-07-24T18:17:36.010000"],["2024-07-24T18:17:37.010000"],["2024-07-24T18:17:38.010000"],["2024-07-24T18:17:39.010000"],["2024-07-24T18:17:40.010000"],["2024-07-24T18:17:41.010000"],["2024-07-24T18:17:42.010000"],["2024-07-24T18:17:43.010000"],["2024-07-24T18:17:44.010000"],["2024-07-24T18:17:45.010000"],["2024-07-24T18:17:46.010000"],["2024-07-24T18:17:47.010000"],["2024-07-24T18:17:48.010000"],["2024-07-24T18:17:49.010000"],["2024-07-24T18:17:50.010000"],["2024-07-24T18:17:51.010000"],["2024-07-24T18:17:52.010000"],["2024-07-24T18:17:53.010000"],["2024-07-24T18:17:54.010000"],["2024-07-24T18:17:55.010000"],["2024-07-24T18:17:56.010000"],["2024-07-24T18:17:57.010000"],["2024-07-24T18:17:58.010000"],["2024-07-24T18:17:59.010000"],["2024-07-24T18:18:00.010000"],["2024-07-24T18:18:01.010000"],["2024-07-24T18:18:02.010000"],["2024-07-24T18:18:03.010000"],["2024-07-24T18:18:04.010000"],["2024-07-24T18:18:05.010000"],["2024-07-24T18:18:06.010000"],["2024-07-24T18:18:07.010000"],["2024-07-24T18:18:08.010000"],["2024-07-24T18:18:09.010000"],["2024-07-24T18:18:10.010000"],["2024-07-24T18:18:11.010000"],["2024-07-24T18:18:12.010000"],["2024-07-24T18:18:13.010000"],["2024-07-24T18:18:14.010000"],["2024-07-24T18:18:15.010000"],["2024-07-24T18:18:16.010000"],["2024-07-24T18:18:17.010000"],["2024-07-24T18:18:18.010000"],["2024-07-24T18:18:19.010000"],["2024-07-24T18:18:20.010000"],["2024-07-24T18:18:21.010000"],["2024-07-24T18:18:22.010000"],["2024-07-24T18:18:23.010000"],["2024-07-24T18:18:24.010000"],["2024-07-24T18:18:25.010000"],["2024-07-24T18:18:26.010000"],["2024-07-24T18:18:27.010000"],["2024-07-24T18:18:28.010000"],["2024-07-24T18:18:29.010000"],["2024-07-24T18:18:30.010000"],["2024-07-24T18:18:31.010000"],["2024-07-24T18:18:32.010000"],["2024-07-24T18:18:33.010000"],["2024-07-24T18:18:34.010000"],["2024-07-24T18:18:35.010000"],["2024-07-24T18:18:36.010000"],["2024-07-24T18:18:37.010000"],["2024-07-24T18:18:38.010000"],["2024-07-24T18:18:39.010000"],["2024-07-24T18:18:40.010000"],["2024-07-24T18:18:41.010000"],["2024-07-24T18:18:42.010000"],["2024-07-24T18:18:43.010000"],["2024-07-24T18:18:44.010000"],["2024-07-24T18:18:45.010000"],["2024-07-24T18:18:46.010000"],["2024-07-24T18:18:47.010000"],["2024-07-24T18:18:48.010000"],["2024-07-24T18:18:49.010000"],["2024-07-24T18:18:50.010000"],["2024-07-24T18:18:51.010000"],["2024-07-24T18:18:52.010000"],["2024-07-24T18:18:53.010000"],["2024-07-24T18:18:54.010000"],["2024-07-24T18:18:55.010000"],["2024-07-24T18:18:56.010000"],["2024-07-24T18:18:57.010000"],["2024-07-24T18:18:58.010000"],["2024-07-24T18:18:59.010000"],["2024-07-24T18:19:00.010000"],["2024-07-24T18:19:01.010000"],["2024-07-24T18:19:02.010000"],["2024-07-24T18:19:03.010000"],["2024-07-24T18:19:04.010000"],["2024-07-24T18:19:05.010000"],["2024-07-24T18:19:06.010000"],["2024-07-24T18:19:07.010000"],["2024-07-24T18:19:08.010000"],["2024-07-24T18:19:09.010000"],["2024-07-24T18:19:10.010000"],["2024-07-24T18:19:11.010000"],["2024-07-24T18:19:12.010000"],["2024-07-24T18:19:13.010000"],["2024-07-24T18:19:14.010000"],["2024-07-24T18:19:15.010000"],["2024-07-24T18:19:16.010000"],["2024-07-24T18:19:17.010000"],["2024-07-24T18:19:18.010000"],["2024-07-24T18:19:19.010000"],["2024-07-24T18:19:20.010000"],["2024-07-24T18:19:21.010000"],["2024-07-24T18:19:22.010000"],["2024-07-24T18:19:23.010000"],["2024-07-24T18:19:24.010000"],["2024-07-24T18:19:25.010000"],["2024-07-24T18:19:26.010000"],["2024-07-24T18:19:27.010000"],["2024-07-24T18:19:28.010000"],["2024-07-24T18:19:29.010000"],["2024-07-24T18:19:30.010000"],["2024-07-24T18:19:31.010000"],["2024-07-24T18:19:32.010000"],["2024-07-24T18:19:33.010000"],["2024-07-24T18:19:34.010000"],["2024-07-24T18:19:35.010000"],["2024-07-24T18:19:36.010000"],["2024-07-24T18:19:37.010000"],["2024-07-24T18:19:38.010000"],["2024-07-24T18:19:39.010000"],["2024-07-24T18:19:40.010000"],["2024-07-24T18:19:41.010000"],["2024-07-24T18:19:42.010000"],["2024-07-24T18:19:43.010000"],["2024-07-24T18:19:44.010000"],["2024-07-24T18:19:45.010000"],["2024-07-24T18:19:46.010000"],["2024-07-24T18:19:47.010000"],["2024-07-24T18:19:48.010000"],["2024-07-24T18:19:49.010000"],["2024-07-24T18:19:50.010000"],["2024-07-24T18:19:51.010000"],["2024-07-24T18:19:52.010000"],["2024-07-24T18:19:53.010000"],["2024-07-24T18:19:54.010000"],["2024-07-24T18:19:55.010000"],["2024-07-24T18:19:56.010000"],["2024-07-24T18:19:57.010000"],["2024-07-24T18:19:58.010000"],["2024-07-24T18:19:59.010000"],["2024-07-24T18:20:00.010000"],["2024-07-24T18:20:01.010000"],["2024-07-24T18:20:02.010000"],["2024-07-24T18:20:03.010000"],["2024-07-24T18:20:04.010000"],["2024-07-24T18:20:05.010000"],["2024-07-24T18:20:06.010000"],["2024-07-24T18:20:07.010000"],["2024-07-24T18:20:08.010000"],["2024-07-24T18:20:09.010000"],["2024-07-24T18:20:10.010000"],["2024-07-24T18:20:11.010000"],["2024-07-24T18:20:12.010000"],["2024-07-24T18:20:13.010000"],["2024-07-24T18:20:14.010000"],["2024-07-24T18:20:15.010000"],["2024-07-24T18:20:16.010000"],["2024-07-24T18:20:17.010000"],["2024-07-24T18:20:18.010000"],["2024-07-24T18:20:19.010000"],["2024-07-24T18:20:20.010000"],["2024-07-24T18:20:21.010000"],["2024-07-24T18:20:22.010000"],["2024-07-24T18:20:23.010000"],["2024-07-24T18:20:24.010000"],["2024-07-24T18:20:25.010000"],["2024-07-24T18:20:26.010000"],["2024-07-24T18:20:27.010000"],["2024-07-24T18:20:28.010000"],["2024-07-24T18:20:29.010000"],["2024-07-24T18:20:30.010000"],["2024-07-24T18:20:31.010000"],["2024-07-24T18:20:32.010000"],["2024-07-24T18:20:33.010000"],["2024-07-24T18:20:34.010000"],["2024-07-24T18:20:35.010000"],["2024-07-24T18:20:36.010000"],["2024-07-24T18:20:37.010000"],["2024-07-24T18:20:38.010000"],["2024-07-24T18:20:39.010000"],["2024-07-24T18:20:40.010000"],["2024-07-24T18:20:41.010000"],["2024-07-24T18:20:42.010000"],["2024-07-24T18:20:43.010000"],["2024-07-24T18:20:44.010000"],["2024-07-24T18:20:45.010000"],["2024-07-24T18:20:46.010000"],["2024-07-24T18:20:47.010000"],["2024-07-24T18:20:48.010000"],["2024-07-24T18:20:49.010000"],["2024-07-24T18:20:50.010000"],["2024-07-24T18:20:51.010000"],["2024-07-24T18:20:52.010000"],["2024-07-24T18:20:53.010000"],["2024-07-24T18:20:54.010000"],["2024-07-24T18:20:55.010000"],["2024-07-24T18:20:56.010000"],["2024-07-24T18:20:57.010000"],["2024-07-24T18:20:58.010000"],["2024-07-24T18:20:59.010000"],["2024-07-24T18:21:00.010000"],["2024-07-24T18:21:01.010000"],["2024-07-24T18:21:02.010000"],["2024-07-24T18:21:03.010000"],["2024-07-24T18:21:04.010000"],["2024-07-24T18:21:05.010000"],["2024-07-24T18:21:06.010000"],["2024-07-24T18:21:07.010000"],["2024-07-24T18:21:08.010000"],["2024-07-24T18:21:09.010000"],["2024-07-24T18:21:10.010000"],["2024-07-24T18:21:11.010000"],["2024-07-24T18:21:12.010000"],["2024-07-24T18:21:13.010000"],["2024-07-24T18:21:14.010000"],["2024-07-24T18:21:15.010000"],["2024-07-24T18:21:16.010000"],["2024-07-24T18:21:17.010000"],["2024-07-24T18:21:18.010000"],["2024-07-24T18:21:19.010000"],["2024-07-24T18:21:20.010000"],["2024-07-24T18:21:21.010000"],["2024-07-24T18:21:22.010000"],["2024-07-24T18:21:23.010000"],["2024-07-24T18:21:24.010000"],["2024-07-24T18:21:25.010000"],["2024-07-24T18:21:26.010000"],["2024-07-24T18:21:27.010000"],["2024-07-24T18:21:28.010000"],["2024-07-24T18:21:29.010000"],["2024-07-24T18:21:30.010000"],["2024-07-24T18:21:31.010000"],["2024-07-24T18:21:32.010000"],["2024-07-24T18:21:33.010000"],["2024-07-24T18:21:34.010000"],["2024-07-24T18:21:35.010000"],["2024-07-24T18:21:36.010000"],["2024-07-24T18:21:37.010000"],["2024-07-24T18:21:38.010000"],["2024-07-24T18:21:39.010000"],["2024-07-24T18:21:40.010000"],["2024-07-24T18:21:41.010000"],["2024-07-24T18:21:42.010000"],["2024-07-24T18:21:43.010000"],["2024-07-24T18:21:44.010000"],["2024-07-24T18:21:45.010000"],["2024-07-24T18:21:46.010000"],["2024-07-24T18:21:47.010000"],["2024-07-24T18:21:48.010000"],["2024-07-24T18:21:49.010000"],["2024-07-24T18:21:50.010000"],["2024-07-24T18:21:51.010000"],["2024-07-24T18:21:52.010000"],["2024-07-24T18:21:53.010000"],["2024-07-24T18:21:54.010000"],["2024-07-24T18:21:55.010000"],["2024-07-24T18:21:56.010000"],["2024-07-24T18:21:57.010000"],["2024-07-24T18:21:58.010000"],["2024-07-24T18:21:59.010000"],["2024-07-24T18:22:00.010000"],["2024-07-24T18:22:01.010000"],["2024-07-24T18:22:02.010000"],["2024-07-24T18:22:03.010000"],["2024-07-24T18:22:04.010000"],["2024-07-24T18:22:05.010000"],["2024-07-24T18:22:06.010000"],["2024-07-24T18:22:07.010000"],["2024-07-24T18:22:08.010000"],["2024-07-24T18:22:09.010000"],["2024-07-24T18:22:10.010000"],["2024-07-24T18:22:11.010000"],["2024-07-24T18:22:12.010000"],["2024-07-24T18:22:13.010000"],["2024-07-24T18:22:14.010000"],["2024-07-24T18:22:15.010000"],["2024-07-24T18:22:16.010000"],["2024-07-24T18:22:17.010000"],["2024-07-24T18:22:18.010000"],["2024-07-24T18:22:19.010000"],["2024-07-24T18:22:20.010000"],["2024-07-24T18:22:21.010000"],["2024-07-24T18:22:22.010000"],["2024-07-24T18:22:23.010000"],["2024-07-24T18:22:24.010000"],["2024-07-24T18:22:25.010000"],["2024-07-24T18:22:26.010000"],["2024-07-24T18:22:27.010000"],["2024-07-24T18:22:28.010000"],["2024-07-24T18:22:29.010000"],["2024-07-24T18:22:30.010000"],["2024-07-24T18:22:31.010000"],["2024-07-24T18:22:32.010000"],["2024-07-24T18:22:33.010000"],["2024-07-24T18:22:34.010000"],["2024-07-24T18:22:35.010000"],["2024-07-24T18:22:36.010000"],["2024-07-24T18:22:37.010000"],["2024-07-24T18:22:38.010000"],["2024-07-24T18:22:39.010000"],["2024-07-24T18:22:40.010000"],["2024-07-24T18:22:41.010000"],["2024-07-24T18:22:42.010000"],["2024-07-24T18:22:43.010000"],["2024-07-24T18:22:44.010000"],["2024-07-24T18:22:45.010000"],["2024-07-24T18:22:46.010000"],["2024-07-24T18:22:47.010000"],["2024-07-24T18:22:48.010000"],["2024-07-24T18:22:49.010000"],["2024-07-24T18:22:50.010000"],["2024-07-24T18:22:51.010000"],["2024-07-24T18:22:52.010000"],["2024-07-24T18:22:53.010000"],["2024-07-24T18:22:54.010000"],["2024-07-24T18:22:55.010000"],["2024-07-24T18:22:56.010000"],["2024-07-24T18:22:57.010000"],["2024-07-24T18:22:58.010000"],["2024-07-24T18:22:59.010000"],["2024-07-24T18:23:00.010000"],["2024-07-24T18:23:01.010000"],["2024-07-24T18:23:02.010000"],["2024-07-24T18:23:03.010000"],["2024-07-24T18:23:04.010000"],["2024-07-24T18:23:05.010000"],["2024-07-24T18:23:06.010000"],["2024-07-24T18:23:07.010000"],["2024-07-24T18:23:08.010000"],["2024-07-24T18:23:09.010000"],["2024-07-24T18:23:10.010000"],["2024-07-24T18:23:11.010000"],["2024-07-24T18:23:12.010000"],["2024-07-24T18:23:13.010000"],["2024-07-24T18:23:14.010000"],["2024-07-24T18:23:15.010000"],["2024-07-24T18:23:16.010000"],["2024-07-24T18:23:17.010000"],["2024-07-24T18:23:18.010000"],["2024-07-24T18:23:19.010000"],["2024-07-24T18:23:20.010000"],["2024-07-24T18:23:21.010000"],["2024-07-24T18:23:22.010000"],["2024-07-24T18:23:23.010000"],["2024-07-24T18:23:24.010000"],["2024-07-24T18:23:25.010000"],["2024-07-24T18:23:26.010000"],["2024-07-24T18:23:27.010000"],["2024-07-24T18:23:28.010000"],["2024-07-24T18:23:29.010000"],["2024-07-24T18:23:30.010000"],["2024-07-24T18:23:31.010000"],["2024-07-24T18:23:32.010000"],["2024-07-24T18:23:33.010000"],["2024-07-24T18:23:34.010000"],["2024-07-24T18:23:35.010000"],["2024-07-24T18:23:36.010000"],["2024-07-24T18:23:37.010000"],["2024-07-24T18:23:38.010000"],["2024-07-24T18:23:39.010000"],["2024-07-24T18:23:40.010000"],["2024-07-24T18:23:41.010000"],["2024-07-24T18:23:42.010000"],["2024-07-24T18:23:43.010000"],["2024-07-24T18:23:44.010000"],["2024-07-24T18:23:45.010000"],["2024-07-24T18:23:46.010000"],["2024-07-24T18:23:47.010000"],["2024-07-24T18:23:48.010000"],["2024-07-24T18:23:49.010000"],["2024-07-24T18:23:50.010000"],["2024-07-24T18:23:51.010000"],["2024-07-24T18:23:52.010000"],["2024-07-24T18:23:53.010000"],["2024-07-24T18:23:54.010000"],["2024-07-24T18:23:55.010000"],["2024-07-24T18:23:56.010000"],["2024-07-24T18:23:57.010000"],["2024-07-24T18:23:58.010000"],["2024-07-24T18:23:59.010000"],["2024-07-24T18:24:00.010000"],["2024-07-24T18:24:01.010000"],["2024-07-24T18:24:02.010000"],["2024-07-24T18:24:03.010000"],["2024-07-24T18:24:04.010000"],["2024-07-24T18:24:05.010000"],["2024-07-24T18:24:06.010000"],["2024-07-24T18:24:07.010000"],["2024-07-24T18:24:08.010000"],["2024-07-24T18:24:09.010000"],["2024-07-24T18:24:10.010000"],["2024-07-24T18:24:11.010000"],["2024-07-24T18:24:12.010000"],["2024-07-24T18:24:13.010000"],["2024-07-24T18:24:14.010000"],["2024-07-24T18:24:15.010000"],["2024-07-24T18:24:16.010000"],["2024-07-24T18:24:17.010000"],["2024-07-24T18:24:18.010000"],["2024-07-24T18:24:19.010000"],["2024-07-24T18:24:20.010000"],["2024-07-24T18:24:21.010000"],["2024-07-24T18:24:22.010000"],["2024-07-24T18:24:23.010000"],["2024-07-24T18:24:24.010000"],["2024-07-24T18:24:25.010000"],["2024-07-24T18:24:26.010000"],["2024-07-24T18:24:27.010000"],["2024-07-24T18:24:28.010000"],["2024-07-24T18:24:29.010000"],["2024-07-24T18:24:30.010000"],["2024-07-24T18:24:31.010000"],["2024-07-24T18:24:32.010000"],["2024-07-24T18:24:33.010000"],["2024-07-24T18:24:34.010000"],["2024-07-24T18:24:35.010000"],["2024-07-24T18:24:36.010000"],["2024-07-24T18:24:37.010000"],["2024-07-24T18:24:38.010000"],["2024-07-24T18:24:39.010000"],["2024-07-24T18:24:40.010000"],["2024-07-24T18:24:41.010000"],["2024-07-24T18:24:42.010000"],["2024-07-24T18:24:43.010000"],["2024-07-24T18:24:44.010000"],["2024-07-24T18:24:45.010000"],["2024-07-24T18:24:46.010000"],["2024-07-24T18:24:47.010000"],["2024-07-24T18:24:48.010000"],["2024-07-24T18:24:49.010000"],["2024-07-24T18:24:50.010000"],["2024-07-24T18:24:51.010000"],["2024-07-24T18:24:52.010000"],["2024-07-24T18:24:53.010000"],["2024-07-24T18:24:54.010000"],["2024-07-24T18:24:55.010000"],["2024-07-24T18:24:56.010000"],["2024-07-24T18:24:57.010000"],["2024-07-24T18:24:58.010000"],["2024-07-24T18:24:59.010000"],["2024-07-24T18:25:00.010000"],["2024-07-24T18:25:01.010000"],["2024-07-24T18:25:02.010000"],["2024-07-24T18:25:03.010000"],["2024-07-24T18:25:04.010000"],["2024-07-24T18:25:05.010000"],["2024-07-24T18:25:06.010000"],["2024-07-24T18:25:07.010000"],["2024-07-24T18:25:08.010000"],["2024-07-24T18:25:09.010000"],["2024-07-24T18:25:10.010000"],["2024-07-24T18:25:11.010000"],["2024-07-24T18:25:12.010000"],["2024-07-24T18:25:13.010000"],["2024-07-24T18:25:14.010000"],["2024-07-24T18:25:15.010000"],["2024-07-24T18:25:16.010000"],["2024-07-24T18:25:17.010000"],["2024-07-24T18:25:18.010000"],["2024-07-24T18:25:19.010000"],["2024-07-24T18:25:20.010000"],["2024-07-24T18:25:21.010000"],["2024-07-24T18:25:22.010000"],["2024-07-24T18:25:23.010000"],["2024-07-24T18:25:24.010000"],["2024-07-24T18:25:25.010000"],["2024-07-24T18:25:26.010000"],["2024-07-24T18:25:27.010000"],["2024-07-24T18:25:28.010000"],["2024-07-24T18:25:29.010000"],["2024-07-24T18:25:30.010000"],["2024-07-24T18:25:31.010000"],["2024-07-24T18:25:32.010000"],["2024-07-24T18:25:33.010000"],["2024-07-24T18:25:34.010000"],["2024-07-24T18:25:35.010000"],["2024-07-24T18:25:36.010000"],["2024-07-24T18:25:37.010000"],["2024-07-24T18:25:38.010000"],["2024-07-24T18:25:39.010000"],["2024-07-24T18:25:40.010000"],["2024-07-24T18:25:41.010000"],["2024-07-24T18:25:42.010000"],["2024-07-24T18:25:43.010000"],["2024-07-24T18:25:44.010000"],["2024-07-24T18:25:45.010000"],["2024-07-24T18:25:46.010000"],["2024-07-24T18:25:47.010000"],["2024-07-24T18:25:48.010000"],["2024-07-24T18:25:49.010000"],["2024-07-24T18:25:50.010000"],["2024-07-24T18:25:51.010000"],["2024-07-24T18:25:52.010000"],["2024-07-24T18:25:53.010000"],["2024-07-24T18:25:54.010000"],["2024-07-24T18:25:55.010000"],["2024-07-24T18:25:56.010000"],["2024-07-24T18:25:57.010000"],["2024-07-24T18:25:58.010000"],["2024-07-24T18:25:59.010000"],["2024-07-24T18:26:00.010000"],["2024-07-24T18:26:01.010000"],["2024-07-24T18:26:02.010000"],["2024-07-24T18:26:03.010000"],["2024-07-24T18:26:04.010000"],["2024-07-24T18:26:05.010000"],["2024-07-24T18:26:06.010000"],["2024-07-24T18:26:07.010000"],["2024-07-24T18:26:08.010000"],["2024-07-24T18:26:09.010000"],["2024-07-24T18:26:10.010000"],["2024-07-24T18:26:11.010000"],["2024-07-24T18:26:12.010000"],["2024-07-24T18:26:13.010000"],["2024-07-24T18:26:14.010000"],["2024-07-24T18:26:15.010000"],["2024-07-24T18:26:16.010000"],["2024-07-24T18:26:17.010000"],["2024-07-24T18:26:18.010000"],["2024-07-24T18:26:19.010000"],["2024-07-24T18:26:20.010000"],["2024-07-24T18:26:21.010000"],["2024-07-24T18:26:22.010000"],["2024-07-24T18:26:23.010000"],["2024-07-24T18:26:24.010000"],["2024-07-24T18:26:25.010000"],["2024-07-24T18:26:26.010000"],["2024-07-24T18:26:27.010000"],["2024-07-24T18:26:28.010000"],["2024-07-24T18:26:29.010000"],["2024-07-24T18:26:30.010000"],["2024-07-24T18:26:31.010000"],["2024-07-24T18:26:32.010000"],["2024-07-24T18:26:33.010000"],["2024-07-24T18:26:34.010000"],["2024-07-24T18:26:35.010000"],["2024-07-24T18:26:36.010000"],["2024-07-24T18:26:37.010000"],["2024-07-24T18:26:38.010000"],["2024-07-24T18:26:39.010000"],["2024-07-24T18:26:40.010000"],["2024-07-24T18:26:41.010000"],["2024-07-24T18:26:42.010000"],["2024-07-24T18:26:43.010000"],["2024-07-24T18:26:44.010000"],["2024-07-24T18:26:45.010000"],["2024-07-24T18:26:46.010000"],["2024-07-24T18:26:47.010000"],["2024-07-24T18:26:48.010000"],["2024-07-24T18:26:49.010000"],["2024-07-24T18:26:50.010000"],["2024-07-24T18:26:51.010000"],["2024-07-24T18:26:52.010000"],["2024-07-24T18:26:53.010000"],["2024-07-24T18:26:54.010000"],["2024-07-24T18:26:55.010000"],["2024-07-24T18:26:56.010000"],["2024-07-24T18:26:57.010000"],["2024-07-24T18:26:58.010000"],["2024-07-24T18:26:59.010000"],["2024-07-24T18:27:00.010000"],["2024-07-24T18:27:01.010000"],["2024-07-24T18:27:02.010000"],["2024-07-24T18:27:03.010000"],["2024-07-24T18:27:04.010000"],["2024-07-24T18:27:05.010000"],["2024-07-24T18:27:06.010000"],["2024-07-24T18:27:07.010000"],["2024-07-24T18:27:08.010000"],["2024-07-24T18:27:09.010000"],["2024-07-24T18:27:10.010000"],["2024-07-24T18:27:11.010000"],["2024-07-24T18:27:12.010000"],["2024-07-24T18:27:13.010000"],["2024-07-24T18:27:14.010000"],["2024-07-24T18:27:15.010000"],["2024-07-24T18:27:16.010000"],["2024-07-24T18:27:17.010000"],["2024-07-24T18:27:18.010000"],["2024-07-24T18:27:19.010000"],["2024-07-24T18:27:20.010000"],["2024-07-24T18:27:21.010000"],["2024-07-24T18:27:22.010000"],["2024-07-24T18:27:23.010000"],["2024-07-24T18:27:24.010000"],["2024-07-24T18:27:25.010000"],["2024-07-24T18:27:26.010000"],["2024-07-24T18:27:27.010000"],["2024-07-24T18:27:28.010000"],["2024-07-24T18:27:29.010000"],["2024-07-24T18:27:30.010000"],["2024-07-24T18:27:31.010000"],["2024-07-24T18:27:32.010000"],["2024-07-24T18:27:33.010000"],["2024-07-24T18:27:34.010000"],["2024-07-24T18:27:35.010000"],["2024-07-24T18:27:36.010000"],["2024-07-24T18:27:37.010000"],["2024-07-24T18:27:38.010000"],["2024-07-24T18:27:39.010000"],["2024-07-24T18:27:40.010000"],["2024-07-24T18:27:41.010000"],["2024-07-24T18:27:42.010000"],["2024-07-24T18:27:43.010000"],["2024-07-24T18:27:44.010000"],["2024-07-24T18:27:45.010000"],["2024-07-24T18:27:46.010000"],["2024-07-24T18:27:47.010000"],["2024-07-24T18:27:48.010000"],["2024-07-24T18:27:49.010000"],["2024-07-24T18:27:50.010000"],["2024-07-24T18:27:51.010000"],["2024-07-24T18:27:52.010000"],["2024-07-24T18:27:53.010000"],["2024-07-24T18:27:54.010000"],["2024-07-24T18:27:55.010000"],["2024-07-24T18:27:56.010000"],["2024-07-24T18:27:57.010000"],["2024-07-24T18:27:58.010000"],["2024-07-24T18:27:59.010000"],["2024-07-24T18:28:00.010000"],["2024-07-24T18:28:01.010000"],["2024-07-24T18:28:02.010000"],["2024-07-24T18:28:03.010000"],["2024-07-24T18:28:04.010000"],["2024-07-24T18:28:05.010000"],["2024-07-24T18:28:06.010000"],["2024-07-24T18:28:07.010000"],["2024-07-24T18:28:08.010000"],["2024-07-24T18:28:09.010000"],["2024-07-24T18:28:10.010000"],["2024-07-24T18:28:11.010000"],["2024-07-24T18:28:12.010000"],["2024-07-24T18:28:13.010000"],["2024-07-24T18:28:14.010000"],["2024-07-24T18:28:15.010000"],["2024-07-24T18:28:16.010000"],["2024-07-24T18:28:17.010000"],["2024-07-24T18:28:18.010000"],["2024-07-24T18:28:19.010000"],["2024-07-24T18:28:20.010000"],["2024-07-24T18:28:21.010000"],["2024-07-24T18:28:22.010000"],["2024-07-24T18:28:23.010000"],["2024-07-24T18:28:24.010000"],["2024-07-24T18:28:25.010000"],["2024-07-24T18:28:26.010000"],["2024-07-24T18:28:27.010000"],["2024-07-24T18:28:28.010000"],["2024-07-24T18:28:29.010000"],["2024-07-24T18:28:30.010000"],["2024-07-24T18:28:31.010000"],["2024-07-24T18:28:32.010000"],["2024-07-24T18:28:33.010000"],["2024-07-24T18:28:34.010000"],["2024-07-24T18:28:35.010000"],["2024-07-24T18:28:36.010000"],["2024-07-24T18:28:37.010000"],["2024-07-24T18:28:38.010000"],["2024-07-24T18:28:39.010000"],["2024-07-24T18:28:40.010000"],["2024-07-24T18:28:41.010000"],["2024-07-24T18:28:42.010000"],["2024-07-24T18:28:43.010000"],["2024-07-24T18:28:44.010000"],["2024-07-24T18:28:45.010000"],["2024-07-24T18:28:46.010000"],["2024-07-24T18:28:47.010000"],["2024-07-24T18:28:48.010000"],["2024-07-24T18:28:49.010000"],["2024-07-24T18:28:50.010000"],["2024-07-24T18:28:51.010000"],["2024-07-24T18:28:52.010000"],["2024-07-24T18:28:53.010000"],["2024-07-24T18:28:54.010000"],["2024-07-24T18:28:55.010000"],["2024-07-24T18:28:56.010000"],["2024-07-24T18:28:57.010000"],["2024-07-24T18:28:58.010000"],["2024-07-24T18:28:59.010000"],["2024-07-24T18:29:00.010000"],["2024-07-24T18:29:01.010000"],["2024-07-24T18:29:02.010000"],["2024-07-24T18:29:03.010000"],["2024-07-24T18:29:04.010000"],["2024-07-24T18:29:05.010000"],["2024-07-24T18:29:06.010000"],["2024-07-24T18:29:07.010000"],["2024-07-24T18:29:08.010000"],["2024-07-24T18:29:09.010000"],["2024-07-24T18:29:10.010000"],["2024-07-24T18:29:11.010000"],["2024-07-24T18:29:12.010000"],["2024-07-24T18:29:13.010000"],["2024-07-24T18:29:14.010000"],["2024-07-24T18:29:15.010000"],["2024-07-24T18:29:16.010000"],["2024-07-24T18:29:17.010000"],["2024-07-24T18:29:18.010000"],["2024-07-24T18:29:19.010000"],["2024-07-24T18:29:20.010000"],["2024-07-24T18:29:21.010000"],["2024-07-24T18:29:22.010000"],["2024-07-24T18:29:23.010000"],["2024-07-24T18:29:24.010000"],["2024-07-24T18:29:25.010000"],["2024-07-24T18:29:26.010000"],["2024-07-24T18:29:27.010000"],["2024-07-24T18:29:28.010000"],["2024-07-24T18:29:29.010000"],["2024-07-24T18:29:30.010000"],["2024-07-24T18:29:31.010000"],["2024-07-24T18:29:32.010000"],["2024-07-24T18:29:33.010000"],["2024-07-24T18:29:34.010000"],["2024-07-24T18:29:35.010000"],["2024-07-24T18:29:36.010000"],["2024-07-24T18:29:37.010000"],["2024-07-24T18:29:38.010000"],["2024-07-24T18:29:39.010000"],["2024-07-24T18:29:40.010000"],["2024-07-24T18:29:41.010000"],["2024-07-24T18:29:42.010000"],["2024-07-24T18:29:43.010000"],["2024-07-24T18:29:44.010000"],["2024-07-24T18:29:45.010000"],["2024-07-24T18:29:46.010000"],["2024-07-24T18:29:47.010000"],["2024-07-24T18:29:48.010000"],["2024-07-24T18:29:49.010000"],["2024-07-24T18:29:50.010000"],["2024-07-24T18:29:51.010000"],["2024-07-24T18:29:52.010000"],["2024-07-24T18:29:53.010000"],["2024-07-24T18:29:54.010000"],["2024-07-24T18:29:55.010000"],["2024-07-24T18:29:56.010000"],["2024-07-24T18:29:57.010000"],["2024-07-24T18:29:58.010000"],["2024-07-24T18:29:59.010000"],["2024-07-24T18:30:00.010000"],["2024-07-24T18:30:01.010000"],["2024-07-24T18:30:02.010000"],["2024-07-24T18:30:03.010000"],["2024-07-24T18:30:04.010000"],["2024-07-24T18:30:05.010000"],["2024-07-24T18:30:06.010000"],["2024-07-24T18:30:07.010000"],["2024-07-24T18:30:08.010000"],["2024-07-24T18:30:09.010000"],["2024-07-24T18:30:10.010000"],["2024-07-24T18:30:11.010000"],["2024-07-24T18:30:12.010000"],["2024-07-24T18:30:13.010000"],["2024-07-24T18:30:14.010000"],["2024-07-24T18:30:15.010000"],["2024-07-24T18:30:16.010000"],["2024-07-24T18:30:17.010000"],["2024-07-24T18:30:18.010000"],["2024-07-24T18:30:19.010000"],["2024-07-24T18:30:20.010000"],["2024-07-24T18:30:21.010000"],["2024-07-24T18:30:22.010000"],["2024-07-24T18:30:23.010000"],["2024-07-24T18:30:24.010000"],["2024-07-24T18:30:25.010000"],["2024-07-24T18:30:26.010000"],["2024-07-24T18:30:27.010000"],["2024-07-24T18:30:28.010000"],["2024-07-24T18:30:29.010000"],["2024-07-24T18:30:30.010000"],["2024-07-24T18:30:31.010000"],["2024-07-24T18:30:32.010000"],["2024-07-24T18:30:33.010000"],["2024-07-24T18:30:34.010000"],["2024-07-24T18:30:35.010000"],["2024-07-24T18:30:36.010000"],["2024-07-24T18:30:37.010000"],["2024-07-24T18:30:38.010000"],["2024-07-24T18:30:39.010000"],["2024-07-24T18:30:40.010000"],["2024-07-24T18:30:41.010000"],["2024-07-24T18:30:42.010000"],["2024-07-24T18:30:43.010000"],["2024-07-24T18:30:44.010000"],["2024-07-24T18:30:45.010000"],["2024-07-24T18:30:46.010000"],["2024-07-24T18:30:47.010000"],["2024-07-24T18:30:48.010000"],["2024-07-24T18:30:49.010000"],["2024-07-24T18:30:50.010000"],["2024-07-24T18:30:51.010000"],["2024-07-24T18:30:52.010000"],["2024-07-24T18:30:53.010000"],["2024-07-24T18:30:54.010000"],["2024-07-24T18:30:55.010000"],["2024-07-24T18:30:56.010000"],["2024-07-24T18:30:57.010000"],["2024-07-24T18:30:58.010000"],["2024-07-24T18:30:59.010000"],["2024-07-24T18:31:00.010000"],["2024-07-24T18:31:01.010000"],["2024-07-24T18:31:02.010000"],["2024-07-24T18:31:03.010000"],["2024-07-24T18:31:04.010000"],["2024-07-24T18:31:05.010000"],["2024-07-24T18:31:06.010000"],["2024-07-24T18:31:07.010000"],["2024-07-24T18:31:08.010000"],["2024-07-24T18:31:09.010000"],["2024-07-24T18:31:10.010000"],["2024-07-24T18:31:11.010000"],["2024-07-24T18:31:12.010000"],["2024-07-24T18:31:13.010000"],["2024-07-24T18:31:14.010000"],["2024-07-24T18:31:15.010000"],["2024-07-24T18:31:16.010000"],["2024-07-24T18:31:17.010000"],["2024-07-24T18:31:18.010000"],["2024-07-24T18:31:19.010000"],["2024-07-24T18:31:20.010000"],["2024-07-24T18:31:21.010000"],["2024-07-24T18:31:22.010000"],["2024-07-24T18:31:23.010000"],["2024-07-24T18:31:24.010000"],["2024-07-24T18:31:25.010000"],["2024-07-24T18:31:26.010000"],["2024-07-24T18:31:27.010000"],["2024-07-24T18:31:28.010000"],["2024-07-24T18:31:29.010000"],["2024-07-24T18:31:30.010000"],["2024-07-24T18:31:31.010000"],["2024-07-24T18:31:32.010000"],["2024-07-24T18:31:33.010000"],["2024-07-24T18:31:34.010000"],["2024-07-24T18:31:35.010000"],["2024-07-24T18:31:36.010000"],["2024-07-24T18:31:37.010000"],["2024-07-24T18:31:38.010000"],["2024-07-24T18:31:39.010000"],["2024-07-24T18:31:40.010000"],["2024-07-24T18:31:41.010000"],["2024-07-24T18:31:42.010000"],["2024-07-24T18:31:43.010000"],["2024-07-24T18:31:44.010000"],["2024-07-24T18:31:45.010000"],["2024-07-24T18:31:46.010000"],["2024-07-24T18:31:47.010000"],["2024-07-24T18:31:48.010000"],["2024-07-24T18:31:49.010000"],["2024-07-24T18:31:50.010000"],["2024-07-24T18:31:51.010000"],["2024-07-24T18:31:52.010000"],["2024-07-24T18:31:53.010000"],["2024-07-24T18:31:54.010000"],["2024-07-24T18:31:55.010000"],["2024-07-24T18:31:56.010000"],["2024-07-24T18:31:57.010000"],["2024-07-24T18:31:58.010000"],["2024-07-24T18:31:59.010000"],["2024-07-24T18:32:00.010000"],["2024-07-24T18:32:01.010000"],["2024-07-24T18:32:02.010000"],["2024-07-24T18:32:03.010000"],["2024-07-24T18:32:04.010000"],["2024-07-24T18:32:05.010000"],["2024-07-24T18:32:06.010000"],["2024-07-24T18:32:07.010000"],["2024-07-24T18:32:08.010000"],["2024-07-24T18:32:09.010000"],["2024-07-24T18:32:10.010000"],["2024-07-24T18:32:11.010000"],["2024-07-24T18:32:12.010000"],["2024-07-24T18:32:13.010000"],["2024-07-24T18:32:14.010000"],["2024-07-24T18:32:15.010000"],["2024-07-24T18:32:16.010000"],["2024-07-24T18:32:17.010000"],["2024-07-24T18:32:18.010000"],["2024-07-24T18:32:19.010000"],["2024-07-24T18:32:20.010000"],["2024-07-24T18:32:21.010000"],["2024-07-24T18:32:22.010000"],["2024-07-24T18:32:23.010000"],["2024-07-24T18:32:24.010000"],["2024-07-24T18:32:25.010000"],["2024-07-24T18:32:26.010000"],["2024-07-24T18:32:27.010000"],["2024-07-24T18:32:28.010000"],["2024-07-24T18:32:29.010000"],["2024-07-24T18:32:30.010000"],["2024-07-24T18:32:31.010000"],["2024-07-24T18:32:32.010000"],["2024-07-24T18:32:33.010000"],["2024-07-24T18:32:34.010000"],["2024-07-24T18:32:35.010000"],["2024-07-24T18:32:36.010000"],["2024-07-24T18:32:37.010000"],["2024-07-24T18:32:38.010000"],["2024-07-24T18:32:39.010000"],["2024-07-24T18:32:40.010000"],["2024-07-24T18:32:41.010000"],["2024-07-24T18:32:42.010000"],["2024-07-24T18:32:43.010000"],["2024-07-24T18:32:44.010000"],["2024-07-24T18:32:45.010000"],["2024-07-24T18:32:46.010000"],["2024-07-24T18:32:47.010000"],["2024-07-24T18:32:48.010000"],["2024-07-24T18:32:49.010000"],["2024-07-24T18:32:50.010000"],["2024-07-24T18:32:51.010000"],["2024-07-24T18:32:52.010000"],["2024-07-24T18:32:53.010000"],["2024-07-24T18:32:54.010000"],["2024-07-24T18:32:55.010000"],["2024-07-24T18:32:56.010000"],["2024-07-24T18:32:57.010000"],["2024-07-24T18:32:58.010000"],["2024-07-24T18:32:59.010000"],["2024-07-24T18:33:00.010000"],["2024-07-24T18:33:01.010000"],["2024-07-24T18:33:02.010000"],["2024-07-24T18:33:03.010000"],["2024-07-24T18:33:04.010000"],["2024-07-24T18:33:05.010000"],["2024-07-24T18:33:06.010000"],["2024-07-24T18:33:07.010000"],["2024-07-24T18:33:08.010000"],["2024-07-24T18:33:09.010000"],["2024-07-24T18:33:10.010000"],["2024-07-24T18:33:11.010000"],["2024-07-24T18:33:12.010000"],["2024-07-24T18:33:13.010000"],["2024-07-24T18:33:14.010000"],["2024-07-24T18:33:15.010000"],["2024-07-24T18:33:16.010000"],["2024-07-24T18:33:17.010000"],["2024-07-24T18:33:18.010000"],["2024-07-24T18:33:19.010000"],["2024-07-24T18:33:20.010000"],["2024-07-24T18:33:21.010000"],["2024-07-24T18:33:22.010000"],["2024-07-24T18:33:23.010000"],["2024-07-24T18:33:24.010000"],["2024-07-24T18:33:25.010000"],["2024-07-24T18:33:26.010000"],["2024-07-24T18:33:27.010000"],["2024-07-24T18:33:28.010000"],["2024-07-24T18:33:29.010000"],["2024-07-24T18:33:30.010000"],["2024-07-24T18:33:31.010000"],["2024-07-24T18:33:32.010000"],["2024-07-24T18:33:33.010000"],["2024-07-24T18:33:34.010000"],["2024-07-24T18:33:35.010000"],["2024-07-24T18:33:36.010000"],["2024-07-24T18:33:37.010000"],["2024-07-24T18:33:38.010000"],["2024-07-24T18:33:39.010000"],["2024-07-24T18:33:40.010000"],["2024-07-24T18:33:41.010000"],["2024-07-24T18:33:42.010000"],["2024-07-24T18:33:43.010000"],["2024-07-24T18:33:44.010000"],["2024-07-24T18:33:45.010000"],["2024-07-24T18:33:46.010000"],["2024-07-24T18:33:47.010000"],["2024-07-24T18:33:48.010000"],["2024-07-24T18:33:49.010000"],["2024-07-24T18:33:50.010000"],["2024-07-24T18:33:51.010000"],["2024-07-24T18:33:52.010000"],["2024-07-24T18:33:53.010000"],["2024-07-24T18:33:54.010000"],["2024-07-24T18:33:55.010000"],["2024-07-24T18:33:56.010000"],["2024-07-24T18:33:57.010000"],["2024-07-24T18:33:58.010000"],["2024-07-24T18:33:59.010000"],["2024-07-24T18:34:00.010000"],["2024-07-24T18:34:01.010000"],["2024-07-24T18:34:02.010000"],["2024-07-24T18:34:03.010000"],["2024-07-24T18:34:04.010000"],["2024-07-24T18:34:05.010000"],["2024-07-24T18:34:06.010000"],["2024-07-24T18:34:07.010000"],["2024-07-24T18:34:08.010000"],["2024-07-24T18:34:09.010000"],["2024-07-24T18:34:10.010000"],["2024-07-24T18:34:11.010000"],["2024-07-24T18:34:12.010000"],["2024-07-24T18:34:13.010000"],["2024-07-24T18:34:14.010000"],["2024-07-24T18:34:15.010000"],["2024-07-24T18:34:16.010000"],["2024-07-24T18:34:17.010000"],["2024-07-24T18:34:18.010000"],["2024-07-24T18:34:19.010000"],["2024-07-24T18:34:20.010000"],["2024-07-24T18:34:21.010000"],["2024-07-24T18:34:22.010000"],["2024-07-24T18:34:23.010000"],["2024-07-24T18:34:24.010000"],["2024-07-24T18:34:25.010000"],["2024-07-24T18:34:26.010000"],["2024-07-24T18:34:27.010000"],["2024-07-24T18:34:28.010000"],["2024-07-24T18:34:29.010000"],["2024-07-24T18:34:30.010000"],["2024-07-24T18:34:31.010000"],["2024-07-24T18:34:32.010000"],["2024-07-24T18:34:33.010000"],["2024-07-24T18:34:34.010000"],["2024-07-24T18:34:35.010000"],["2024-07-24T18:34:36.010000"],["2024-07-24T18:34:37.010000"],["2024-07-24T18:34:38.010000"],["2024-07-24T18:34:39.010000"],["2024-07-24T18:34:40.010000"],["2024-07-24T18:34:41.010000"],["2024-07-24T18:34:42.010000"],["2024-07-24T18:34:43.010000"],["2024-07-24T18:34:44.010000"],["2024-07-24T18:34:45.010000"],["2024-07-24T18:34:46.010000"],["2024-07-24T18:34:47.010000"],["2024-07-24T18:34:48.010000"],["2024-07-24T18:34:49.010000"],["2024-07-24T18:34:50.010000"],["2024-07-24T18:34:51.010000"],["2024-07-24T18:34:52.010000"],["2024-07-24T18:34:53.010000"],["2024-07-24T18:34:54.010000"],["2024-07-24T18:34:55.010000"],["2024-07-24T18:34:56.010000"],["2024-07-24T18:34:57.010000"],["2024-07-24T18:34:58.010000"],["2024-07-24T18:34:59.010000"],["2024-07-24T18:35:00.010000"],["2024-07-24T18:35:01.010000"],["2024-07-24T18:35:02.010000"],["2024-07-24T18:35:03.010000"],["2024-07-24T18:35:04.010000"],["2024-07-24T18:35:05.010000"],["2024-07-24T18:35:06.010000"],["2024-07-24T18:35:07.010000"],["2024-07-24T18:35:08.010000"],["2024-07-24T18:35:09.010000"],["2024-07-24T18:35:10.010000"],["2024-07-24T18:35:11.010000"],["2024-07-24T18:35:12.010000"],["2024-07-24T18:35:13.010000"],["2024-07-24T18:35:14.010000"],["2024-07-24T18:35:15.010000"],["2024-07-24T18:35:16.010000"],["2024-07-24T18:35:17.010000"],["2024-07-24T18:35:18.010000"],["2024-07-24T18:35:19.010000"],["2024-07-24T18:35:20.010000"],["2024-07-24T18:35:21.010000"],["2024-07-24T18:35:22.010000"],["2024-07-24T18:35:23.010000"],["2024-07-24T18:35:24.010000"],["2024-07-24T18:35:25.010000"],["2024-07-24T18:35:26.010000"],["2024-07-24T18:35:27.010000"],["2024-07-24T18:35:28.010000"],["2024-07-24T18:35:29.010000"],["2024-07-24T18:35:30.010000"],["2024-07-24T18:35:31.010000"],["2024-07-24T18:35:32.010000"],["2024-07-24T18:35:33.010000"],["2024-07-24T18:35:34.010000"],["2024-07-24T18:35:35.010000"],["2024-07-24T18:35:36.010000"],["2024-07-24T18:35:37.010000"],["2024-07-24T18:35:38.010000"],["2024-07-24T18:35:39.010000"],["2024-07-24T18:35:40.010000"],["2024-07-24T18:35:41.010000"],["2024-07-24T18:35:42.010000"],["2024-07-24T18:35:43.010000"],["2024-07-24T18:35:44.010000"],["2024-07-24T18:35:45.010000"],["2024-07-24T18:35:46.010000"],["2024-07-24T18:35:47.010000"],["2024-07-24T18:35:48.010000"],["2024-07-24T18:35:49.010000"],["2024-07-24T18:35:50.010000"],["2024-07-24T18:35:51.010000"],["2024-07-24T18:35:52.010000"],["2024-07-24T18:35:53.010000"],["2024-07-24T18:35:54.010000"],["2024-07-24T18:35:55.010000"],["2024-07-24T18:35:56.010000"],["2024-07-24T18:35:57.010000"],["2024-07-24T18:35:58.010000"],["2024-07-24T18:35:59.010000"],["2024-07-24T18:36:00.010000"],["2024-07-24T18:36:01.010000"],["2024-07-24T18:36:02.010000"],["2024-07-24T18:36:03.010000"],["2024-07-24T18:36:04.010000"],["2024-07-24T18:36:05.010000"],["2024-07-24T18:36:06.010000"],["2024-07-24T18:36:07.010000"],["2024-07-24T18:36:08.010000"],["2024-07-24T18:36:09.010000"],["2024-07-24T18:36:10.010000"],["2024-07-24T18:36:11.010000"],["2024-07-24T18:36:12.010000"],["2024-07-24T18:36:13.010000"],["2024-07-24T18:36:14.010000"],["2024-07-24T18:36:15.010000"],["2024-07-24T18:36:16.010000"],["2024-07-24T18:36:17.010000"],["2024-07-24T18:36:18.010000"],["2024-07-24T18:36:19.010000"],["2024-07-24T18:36:20.010000"],["2024-07-24T18:36:21.010000"],["2024-07-24T18:36:22.010000"],["2024-07-24T18:36:23.010000"],["2024-07-24T18:36:24.010000"],["2024-07-24T18:36:25.010000"],["2024-07-24T18:36:26.010000"],["2024-07-24T18:36:27.010000"],["2024-07-24T18:36:28.010000"],["2024-07-24T18:36:29.010000"],["2024-07-24T18:36:30.010000"],["2024-07-24T18:36:31.010000"],["2024-07-24T18:36:32.010000"],["2024-07-24T18:36:33.010000"],["2024-07-24T18:36:34.010000"],["2024-07-24T18:36:35.010000"],["2024-07-24T18:36:36.010000"],["2024-07-24T18:36:37.010000"],["2024-07-24T18:36:38.010000"],["2024-07-24T18:36:39.010000"],["2024-07-24T18:36:40.010000"],["2024-07-24T18:36:41.010000"],["2024-07-24T18:36:42.010000"],["2024-07-24T18:36:43.010000"],["2024-07-24T18:36:44.010000"],["2024-07-24T18:36:45.010000"],["2024-07-24T18:36:46.010000"],["2024-07-24T18:36:47.010000"],["2024-07-24T18:36:48.010000"],["2024-07-24T18:36:49.010000"],["2024-07-24T18:36:50.010000"],["2024-07-24T18:36:51.010000"],["2024-07-24T18:36:52.010000"],["2024-07-24T18:36:53.010000"],["2024-07-24T18:36:54.010000"],["2024-07-24T18:36:55.010000"],["2024-07-24T18:36:56.010000"],["2024-07-24T18:36:57.010000"],["2024-07-24T18:36:58.010000"],["2024-07-24T18:36:59.010000"],["2024-07-24T18:37:00.010000"],["2024-07-24T18:37:01.010000"],["2024-07-24T18:37:02.010000"],["2024-07-24T18:37:03.010000"],["2024-07-24T18:37:04.010000"],["2024-07-24T18:37:05.010000"],["2024-07-24T18:37:06.010000"],["2024-07-24T18:37:07.010000"],["2024-07-24T18:37:08.010000"],["2024-07-24T18:37:09.010000"],["2024-07-24T18:37:10.010000"],["2024-07-24T18:37:11.010000"],["2024-07-24T18:37:12.010000"],["2024-07-24T18:37:13.010000"],["2024-07-24T18:37:14.010000"],["2024-07-24T18:37:15.010000"],["2024-07-24T18:37:16.010000"],["2024-07-24T18:37:17.010000"],["2024-07-24T18:37:18.010000"],["2024-07-24T18:37:19.010000"],["2024-07-24T18:37:20.010000"],["2024-07-24T18:37:21.010000"],["2024-07-24T18:37:22.010000"],["2024-07-24T18:37:23.010000"],["2024-07-24T18:37:24.010000"],["2024-07-24T18:37:25.010000"],["2024-07-24T18:37:26.010000"],["2024-07-24T18:37:27.010000"],["2024-07-24T18:37:28.010000"],["2024-07-24T18:37:29.010000"],["2024-07-24T18:37:30.010000"],["2024-07-24T18:37:31.010000"],["2024-07-24T18:37:32.010000"],["2024-07-24T18:37:33.010000"],["2024-07-24T18:37:34.010000"],["2024-07-24T18:37:35.010000"],["2024-07-24T18:37:36.010000"],["2024-07-24T18:37:37.010000"],["2024-07-24T18:37:38.010000"],["2024-07-24T18:37:39.010000"],["2024-07-24T18:37:40.010000"],["2024-07-24T18:37:41.010000"],["2024-07-24T18:37:42.010000"],["2024-07-24T18:37:43.010000"],["2024-07-24T18:37:44.010000"],["2024-07-24T18:37:45.010000"],["2024-07-24T18:37:46.010000"],["2024-07-24T18:37:47.010000"],["2024-07-24T18:37:48.010000"],["2024-07-24T18:37:49.010000"],["2024-07-24T18:37:50.010000"],["2024-07-24T18:37:51.010000"],["2024-07-24T18:37:52.010000"],["2024-07-24T18:37:53.010000"],["2024-07-24T18:37:54.010000"],["2024-07-24T18:37:55.010000"],["2024-07-24T18:37:56.010000"],["2024-07-24T18:37:57.010000"],["2024-07-24T18:37:58.010000"],["2024-07-24T18:37:59.010000"],["2024-07-24T18:38:00.010000"],["2024-07-24T18:38:01.010000"],["2024-07-24T18:38:02.010000"],["2024-07-24T18:38:03.010000"],["2024-07-24T18:38:04.010000"],["2024-07-24T18:38:05.010000"],["2024-07-24T18:38:06.010000"],["2024-07-24T18:38:07.010000"],["2024-07-24T18:38:08.010000"],["2024-07-24T18:38:09.010000"],["2024-07-24T18:38:10.010000"],["2024-07-24T18:38:11.010000"],["2024-07-24T18:38:12.010000"],["2024-07-24T18:38:13.010000"],["2024-07-24T18:38:14.010000"],["2024-07-24T18:38:15.010000"],["2024-07-24T18:38:16.010000"],["2024-07-24T18:38:17.010000"],["2024-07-24T18:38:18.010000"],["2024-07-24T18:38:19.010000"],["2024-07-24T18:38:20.010000"],["2024-07-24T18:38:21.010000"],["2024-07-24T18:38:22.010000"],["2024-07-24T18:38:23.010000"],["2024-07-24T18:38:24.010000"],["2024-07-24T18:38:25.010000"],["2024-07-24T18:38:26.010000"],["2024-07-24T18:38:27.010000"],["2024-07-24T18:38:28.010000"],["2024-07-24T18:38:29.010000"],["2024-07-24T18:38:30.010000"],["2024-07-24T18:38:31.010000"],["2024-07-24T18:38:32.010000"],["2024-07-24T18:38:33.010000"],["2024-07-24T18:38:34.010000"],["2024-07-24T18:38:35.010000"],["2024-07-24T18:38:36.010000"],["2024-07-24T18:38:37.010000"],["2024-07-24T18:38:38.010000"],["2024-07-24T18:38:39.010000"],["2024-07-24T18:38:40.010000"],["2024-07-24T18:38:41.010000"],["2024-07-24T18:38:42.010000"],["2024-07-24T18:38:43.010000"],["2024-07-24T18:38:44.010000"],["2024-07-24T18:38:45.010000"],["2024-07-24T18:38:46.010000"],["2024-07-24T18:38:47.010000"],["2024-07-24T18:38:48.010000"],["2024-07-24T18:38:49.010000"],["2024-07-24T18:38:50.010000"],["2024-07-24T18:38:51.010000"],["2024-07-24T18:38:52.010000"],["2024-07-24T18:38:53.010000"],["2024-07-24T18:38:54.010000"],["2024-07-24T18:38:55.010000"],["2024-07-24T18:38:56.010000"],["2024-07-24T18:38:57.010000"],["2024-07-24T18:38:58.010000"],["2024-07-24T18:38:59.010000"],["2024-07-24T18:39:00.010000"],["2024-07-24T18:39:01.010000"],["2024-07-24T18:39:02.010000"],["2024-07-24T18:39:03.010000"],["2024-07-24T18:39:04.010000"],["2024-07-24T18:39:05.010000"],["2024-07-24T18:39:06.010000"],["2024-07-24T18:39:07.010000"],["2024-07-24T18:39:08.010000"],["2024-07-24T18:39:09.010000"],["2024-07-24T18:39:10.010000"],["2024-07-24T18:39:11.010000"],["2024-07-24T18:39:12.010000"],["2024-07-24T18:39:13.010000"],["2024-07-24T18:39:14.010000"],["2024-07-24T18:39:15.010000"],["2024-07-24T18:39:16.010000"],["2024-07-24T18:39:17.010000"],["2024-07-24T18:39:18.010000"],["2024-07-24T18:39:19.010000"],["2024-07-24T18:39:20.010000"],["2024-07-24T18:39:21.010000"],["2024-07-24T18:39:22.010000"],["2024-07-24T18:39:23.010000"],["2024-07-24T18:39:24.010000"],["2024-07-24T18:39:25.010000"],["2024-07-24T18:39:26.010000"],["2024-07-24T18:39:27.010000"],["2024-07-24T18:39:28.010000"],["2024-07-24T18:39:29.010000"],["2024-07-24T18:39:30.010000"],["2024-07-24T18:39:31.010000"],["2024-07-24T18:39:32.010000"],["2024-07-24T18:39:33.010000"],["2024-07-24T18:39:34.010000"],["2024-07-24T18:39:35.010000"],["2024-07-24T18:39:36.010000"],["2024-07-24T18:39:37.010000"],["2024-07-24T18:39:38.010000"],["2024-07-24T18:39:39.010000"],["2024-07-24T18:39:40.010000"],["2024-07-24T18:39:41.010000"],["2024-07-24T18:39:42.010000"],["2024-07-24T18:39:43.010000"],["2024-07-24T18:39:44.010000"],["2024-07-24T18:39:45.010000"],["2024-07-24T18:39:46.010000"],["2024-07-24T18:39:47.010000"],["2024-07-24T18:39:48.010000"],["2024-07-24T18:39:49.010000"],["2024-07-24T18:39:50.010000"],["2024-07-24T18:39:51.010000"],["2024-07-24T18:39:52.010000"],["2024-07-24T18:39:53.010000"],["2024-07-24T18:39:54.010000"],["2024-07-24T18:39:55.010000"],["2024-07-24T18:39:56.010000"],["2024-07-24T18:39:57.010000"],["2024-07-24T18:39:58.010000"],["2024-07-24T18:39:59.010000"],["2024-07-24T18:40:00.010000"],["2024-07-24T18:40:01.010000"],["2024-07-24T18:40:02.010000"],["2024-07-24T18:40:03.010000"],["2024-07-24T18:40:04.010000"],["2024-07-24T18:40:05.010000"],["2024-07-24T18:40:06.010000"],["2024-07-24T18:40:07.010000"],["2024-07-24T18:40:08.010000"],["2024-07-24T18:40:09.010000"],["2024-07-24T18:40:10.010000"],["2024-07-24T18:40:11.010000"],["2024-07-24T18:40:12.010000"],["2024-07-24T18:40:13.010000"],["2024-07-24T18:40:14.010000"],["2024-07-24T18:40:15.010000"],["2024-07-24T18:40:16.010000"],["2024-07-24T18:40:17.010000"],["2024-07-24T18:40:18.010000"],["2024-07-24T18:40:19.010000"],["2024-07-24T18:40:20.010000"],["2024-07-24T18:40:21.010000"],["2024-07-24T18:40:22.010000"],["2024-07-24T18:40:23.010000"],["2024-07-24T18:40:24.010000"],["2024-07-24T18:40:25.010000"],["2024-07-24T18:40:26.010000"],["2024-07-24T18:40:27.010000"],["2024-07-24T18:40:28.010000"],["2024-07-24T18:40:29.010000"],["2024-07-24T18:40:30.010000"],["2024-07-24T18:40:31.010000"],["2024-07-24T18:40:32.010000"],["2024-07-24T18:40:33.010000"],["2024-07-24T18:40:34.010000"],["2024-07-24T18:40:35.010000"],["2024-07-24T18:40:36.010000"],["2024-07-24T18:40:37.010000"],["2024-07-24T18:40:38.010000"],["2024-07-24T18:40:39.010000"],["2024-07-24T18:40:40.010000"],["2024-07-24T18:40:41.010000"],["2024-07-24T18:40:42.010000"],["2024-07-24T18:40:43.010000"],["2024-07-24T18:40:44.010000"],["2024-07-24T18:40:45.010000"],["2024-07-24T18:40:46.010000"],["2024-07-24T18:40:47.010000"],["2024-07-24T18:40:48.010000"],["2024-07-24T18:40:49.010000"],["2024-07-24T18:40:50.010000"],["2024-07-24T18:40:51.010000"],["2024-07-24T18:40:52.010000"],["2024-07-24T18:40:53.010000"],["2024-07-24T18:40:54.010000"],["2024-07-24T18:40:55.010000"],["2024-07-24T18:40:56.010000"],["2024-07-24T18:40:57.010000"],["2024-07-24T18:40:58.010000"],["2024-07-24T18:40:59.010000"],["2024-07-24T18:41:00.010000"],["2024-07-24T18:41:01.010000"],["2024-07-24T18:41:02.010000"],["2024-07-24T18:41:03.010000"],["2024-07-24T18:41:04.010000"],["2024-07-24T18:41:05.010000"],["2024-07-24T18:41:06.010000"],["2024-07-24T18:41:07.010000"],["2024-07-24T18:41:08.010000"],["2024-07-24T18:41:09.010000"],["2024-07-24T18:41:10.010000"],["2024-07-24T18:41:11.010000"],["2024-07-24T18:41:12.010000"],["2024-07-24T18:41:13.010000"],["2024-07-24T18:41:14.010000"],["2024-07-24T18:41:15.010000"],["2024-07-24T18:41:16.010000"],["2024-07-24T18:41:17.010000"],["2024-07-24T18:41:18.010000"],["2024-07-24T18:41:19.010000"],["2024-07-24T18:41:20.010000"],["2024-07-24T18:41:21.010000"],["2024-07-24T18:41:22.010000"],["2024-07-24T18:41:23.010000"],["2024-07-24T18:41:24.010000"],["2024-07-24T18:41:25.010000"],["2024-07-24T18:41:26.010000"],["2024-07-24T18:41:27.010000"],["2024-07-24T18:41:28.010000"],["2024-07-24T18:41:29.010000"],["2024-07-24T18:41:30.010000"],["2024-07-24T18:41:31.010000"],["2024-07-24T18:41:32.010000"],["2024-07-24T18:41:33.010000"],["2024-07-24T18:41:34.010000"],["2024-07-24T18:41:35.010000"],["2024-07-24T18:41:36.010000"],["2024-07-24T18:41:37.010000"],["2024-07-24T18:41:38.010000"],["2024-07-24T18:41:39.010000"],["2024-07-24T18:41:40.010000"],["2024-07-24T18:41:41.010000"],["2024-07-24T18:41:42.010000"],["2024-07-24T18:41:43.010000"],["2024-07-24T18:41:44.010000"],["2024-07-24T18:41:45.010000"],["2024-07-24T18:41:46.010000"],["2024-07-24T18:41:47.010000"],["2024-07-24T18:41:48.010000"],["2024-07-24T18:41:49.010000"],["2024-07-24T18:41:50.010000"],["2024-07-24T18:41:51.010000"],["2024-07-24T18:41:52.010000"],["2024-07-24T18:41:53.010000"],["2024-07-24T18:41:54.010000"],["2024-07-24T18:41:55.010000"],["2024-07-24T18:41:56.010000"],["2024-07-24T18:41:57.010000"],["2024-07-24T18:41:58.010000"],["2024-07-24T18:41:59.010000"],["2024-07-24T18:42:00.010000"],["2024-07-24T18:42:01.010000"],["2024-07-24T18:42:02.010000"],["2024-07-24T18:42:03.010000"],["2024-07-24T18:42:04.010000"],["2024-07-24T18:42:05.010000"],["2024-07-24T18:42:06.010000"],["2024-07-24T18:42:07.010000"],["2024-07-24T18:42:08.010000"],["2024-07-24T18:42:09.010000"],["2024-07-24T18:42:10.010000"],["2024-07-24T18:42:11.010000"],["2024-07-24T18:42:12.010000"],["2024-07-24T18:42:13.010000"],["2024-07-24T18:42:14.010000"],["2024-07-24T18:42:15.010000"],["2024-07-24T18:42:16.010000"],["2024-07-24T18:42:17.010000"],["2024-07-24T18:42:18.010000"],["2024-07-24T18:42:19.010000"],["2024-07-24T18:42:20.010000"],["2024-07-24T18:42:21.010000"],["2024-07-24T18:42:22.010000"],["2024-07-24T18:42:23.010000"],["2024-07-24T18:42:24.010000"],["2024-07-24T18:42:25.010000"],["2024-07-24T18:42:26.010000"],["2024-07-24T18:42:27.010000"],["2024-07-24T18:42:28.010000"],["2024-07-24T18:42:29.010000"],["2024-07-24T18:42:30.010000"],["2024-07-24T18:42:31.010000"],["2024-07-24T18:42:32.010000"],["2024-07-24T18:42:33.010000"],["2024-07-24T18:42:34.010000"],["2024-07-24T18:42:35.010000"],["2024-07-24T18:42:36.010000"],["2024-07-24T18:42:37.010000"],["2024-07-24T18:42:38.010000"],["2024-07-24T18:42:39.010000"],["2024-07-24T18:42:40.010000"],["2024-07-24T18:42:41.010000"],["2024-07-24T18:42:42.010000"],["2024-07-24T18:42:43.010000"],["2024-07-24T18:42:44.010000"],["2024-07-24T18:42:45.010000"],["2024-07-24T18:42:46.010000"],["2024-07-24T18:42:47.010000"],["2024-07-24T18:42:48.010000"],["2024-07-24T18:42:49.010000"],["2024-07-24T18:42:50.010000"],["2024-07-24T18:42:51.010000"],["2024-07-24T18:42:52.010000"],["2024-07-24T18:42:53.010000"],["2024-07-24T18:42:54.010000"],["2024-07-24T18:42:55.010000"],["2024-07-24T18:42:56.010000"],["2024-07-24T18:42:57.010000"],["2024-07-24T18:42:58.010000"],["2024-07-24T18:42:59.010000"],["2024-07-24T18:43:00.010000"],["2024-07-24T18:43:01.010000"],["2024-07-24T18:43:02.010000"],["2024-07-24T18:43:03.010000"],["2024-07-24T18:43:04.010000"],["2024-07-24T18:43:05.010000"],["2024-07-24T18:43:06.010000"],["2024-07-24T18:43:07.010000"],["2024-07-24T18:43:08.010000"],["2024-07-24T18:43:09.010000"],["2024-07-24T18:43:10.010000"],["2024-07-24T18:43:11.010000"],["2024-07-24T18:43:12.010000"],["2024-07-24T18:43:13.010000"],["2024-07-24T18:43:14.010000"],["2024-07-24T18:43:15.010000"],["2024-07-24T18:43:16.010000"],["2024-07-24T18:43:17.010000"],["2024-07-24T18:43:18.010000"],["2024-07-24T18:43:19.010000"],["2024-07-24T18:43:20.010000"],["2024-07-24T18:43:21.010000"],["2024-07-24T18:43:22.010000"],["2024-07-24T18:43:23.010000"],["2024-07-24T18:43:24.010000"],["2024-07-24T18:43:25.010000"],["2024-07-24T18:43:26.010000"],["2024-07-24T18:43:27.010000"],["2024-07-24T18:43:28.010000"],["2024-07-24T18:43:29.010000"],["2024-07-24T18:43:30.010000"],["2024-07-24T18:43:31.010000"],["2024-07-24T18:43:32.010000"],["2024-07-24T18:43:33.010000"],["2024-07-24T18:43:34.010000"],["2024-07-24T18:43:35.010000"],["2024-07-24T18:43:36.010000"],["2024-07-24T18:43:37.010000"],["2024-07-24T18:43:38.010000"],["2024-07-24T18:43:39.010000"],["2024-07-24T18:43:40.010000"],["2024-07-24T18:43:41.010000"],["2024-07-24T18:43:42.010000"],["2024-07-24T18:43:43.010000"],["2024-07-24T18:43:44.010000"],["2024-07-24T18:43:45.010000"],["2024-07-24T18:43:46.010000"],["2024-07-24T18:43:47.010000"],["2024-07-24T18:43:48.010000"],["2024-07-24T18:43:49.010000"],["2024-07-24T18:43:50.010000"],["2024-07-24T18:43:51.010000"],["2024-07-24T18:43:52.010000"],["2024-07-24T18:43:53.010000"],["2024-07-24T18:43:54.010000"],["2024-07-24T18:43:55.010000"],["2024-07-24T18:43:56.010000"],["2024-07-24T18:43:57.010000"],["2024-07-24T18:43:58.010000"],["2024-07-24T18:43:59.010000"],["2024-07-24T18:44:00.010000"],["2024-07-24T18:44:01.010000"],["2024-07-24T18:44:02.010000"],["2024-07-24T18:44:03.010000"],["2024-07-24T18:44:04.010000"],["2024-07-24T18:44:05.010000"],["2024-07-24T18:44:06.010000"],["2024-07-24T18:44:07.010000"],["2024-07-24T18:44:08.010000"],["2024-07-24T18:44:09.010000"],["2024-07-24T18:44:10.010000"],["2024-07-24T18:44:11.010000"],["2024-07-24T18:44:12.010000"],["2024-07-24T18:44:13.010000"],["2024-07-24T18:44:14.010000"],["2024-07-24T18:44:15.010000"],["2024-07-24T18:44:16.010000"],["2024-07-24T18:44:17.010000"],["2024-07-24T18:44:18.010000"],["2024-07-24T18:44:19.010000"],["2024-07-24T18:44:20.010000"],["2024-07-24T18:44:21.010000"],["2024-07-24T18:44:22.010000"],["2024-07-24T18:44:23.010000"],["2024-07-24T18:44:24.010000"],["2024-07-24T18:44:25.010000"],["2024-07-24T18:44:26.010000"],["2024-07-24T18:44:27.010000"],["2024-07-24T18:44:28.010000"],["2024-07-24T18:44:29.010000"],["2024-07-24T18:44:30.010000"],["2024-07-24T18:44:31.010000"],["2024-07-24T18:44:32.010000"],["2024-07-24T18:44:33.010000"],["2024-07-24T18:44:34.010000"],["2024-07-24T18:44:35.010000"],["2024-07-24T18:44:36.010000"],["2024-07-24T18:44:37.010000"],["2024-07-24T18:44:38.010000"],["2024-07-24T18:44:39.010000"],["2024-07-24T18:44:40.010000"],["2024-07-24T18:44:41.010000"],["2024-07-24T18:44:42.010000"],["2024-07-24T18:44:43.010000"],["2024-07-24T18:44:44.010000"],["2024-07-24T18:44:45.010000"],["2024-07-24T18:44:46.010000"],["2024-07-24T18:44:47.010000"],["2024-07-24T18:44:48.010000"],["2024-07-24T18:44:49.010000"],["2024-07-24T18:44:50.010000"],["2024-07-24T18:44:51.010000"],["2024-07-24T18:44:52.010000"],["2024-07-24T18:44:53.010000"],["2024-07-24T18:44:54.010000"],["2024-07-24T18:44:55.010000"],["2024-07-24T18:44:56.010000"],["2024-07-24T18:44:57.010000"],["2024-07-24T18:44:58.010000"],["2024-07-24T18:44:59.010000"],["2024-07-24T18:45:00.010000"],["2024-07-24T18:45:01.010000"],["2024-07-24T18:45:02.010000"],["2024-07-24T18:45:03.010000"],["2024-07-24T18:45:04.010000"],["2024-07-24T18:45:05.010000"],["2024-07-24T18:45:06.010000"],["2024-07-24T18:45:07.010000"],["2024-07-24T18:45:08.010000"],["2024-07-24T18:45:09.010000"],["2024-07-24T18:45:10.010000"],["2024-07-24T18:45:11.010000"],["2024-07-24T18:45:12.010000"],["2024-07-24T18:45:13.010000"],["2024-07-24T18:45:14.010000"],["2024-07-24T18:45:15.010000"],["2024-07-24T18:45:16.010000"],["2024-07-24T18:45:17.010000"],["2024-07-24T18:45:18.010000"],["2024-07-24T18:45:19.010000"],["2024-07-24T18:45:20.010000"],["2024-07-24T18:45:21.010000"],["2024-07-24T18:45:22.010000"],["2024-07-24T18:45:23.010000"],["2024-07-24T18:45:24.010000"],["2024-07-24T18:45:25.010000"],["2024-07-24T18:45:26.010000"],["2024-07-24T18:45:27.010000"],["2024-07-24T18:45:28.010000"],["2024-07-24T18:45:29.010000"],["2024-07-24T18:45:30.010000"],["2024-07-24T18:45:31.010000"],["2024-07-24T18:45:32.010000"],["2024-07-24T18:45:33.010000"],["2024-07-24T18:45:34.010000"],["2024-07-24T18:45:35.010000"],["2024-07-24T18:45:36.010000"],["2024-07-24T18:45:37.010000"],["2024-07-24T18:45:38.010000"],["2024-07-24T18:45:39.010000"],["2024-07-24T18:45:40.010000"],["2024-07-24T18:45:41.010000"],["2024-07-24T18:45:42.010000"],["2024-07-24T18:45:43.010000"],["2024-07-24T18:45:44.010000"],["2024-07-24T18:45:45.010000"],["2024-07-24T18:45:46.010000"],["2024-07-24T18:45:47.010000"],["2024-07-24T18:45:48.010000"],["2024-07-24T18:45:49.010000"],["2024-07-24T18:45:50.010000"],["2024-07-24T18:45:51.010000"],["2024-07-24T18:45:52.010000"],["2024-07-24T18:45:53.010000"],["2024-07-24T18:45:54.010000"],["2024-07-24T18:45:55.010000"],["2024-07-24T18:45:56.010000"],["2024-07-24T18:45:57.010000"],["2024-07-24T18:45:58.010000"],["2024-07-24T18:45:59.010000"],["2024-07-24T18:46:00.010000"],["2024-07-24T18:46:01.010000"],["2024-07-24T18:46:02.010000"],["2024-07-24T18:46:03.010000"],["2024-07-24T18:46:04.010000"],["2024-07-24T18:46:05.010000"],["2024-07-24T18:46:06.010000"],["2024-07-24T18:46:07.010000"],["2024-07-24T18:46:08.010000"],["2024-07-24T18:46:09.010000"],["2024-07-24T18:46:10.010000"],["2024-07-24T18:46:11.010000"],["2024-07-24T18:46:12.010000"],["2024-07-24T18:46:13.010000"],["2024-07-24T18:46:14.010000"],["2024-07-24T18:46:15.010000"],["2024-07-24T18:46:16.010000"],["2024-07-24T18:46:17.010000"],["2024-07-24T18:46:18.010000"],["2024-07-24T18:46:19.010000"],["2024-07-24T18:46:20.010000"],["2024-07-24T18:46:21.010000"],["2024-07-24T18:46:22.010000"],["2024-07-24T18:46:23.010000"],["2024-07-24T18:46:24.010000"],["2024-07-24T18:46:25.010000"],["2024-07-24T18:46:26.010000"],["2024-07-24T18:46:27.010000"],["2024-07-24T18:46:28.010000"],["2024-07-24T18:46:29.010000"],["2024-07-24T18:46:30.010000"],["2024-07-24T18:46:31.010000"],["2024-07-24T18:46:32.010000"],["2024-07-24T18:46:33.010000"],["2024-07-24T18:46:34.010000"],["2024-07-24T18:46:35.010000"],["2024-07-24T18:46:36.010000"],["2024-07-24T18:46:37.010000"],["2024-07-24T18:46:38.010000"],["2024-07-24T18:46:39.010000"],["2024-07-24T18:46:40.010000"],["2024-07-24T18:46:41.010000"],["2024-07-24T18:46:42.010000"],["2024-07-24T18:46:43.010000"],["2024-07-24T18:46:44.010000"],["2024-07-24T18:46:45.010000"],["2024-07-24T18:46:46.010000"],["2024-07-24T18:46:47.010000"],["2024-07-24T18:46:48.010000"],["2024-07-24T18:46:49.010000"],["2024-07-24T18:46:50.010000"],["2024-07-24T18:46:51.010000"],["2024-07-24T18:46:52.010000"],["2024-07-24T18:46:53.010000"],["2024-07-24T18:46:54.010000"],["2024-07-24T18:46:55.010000"],["2024-07-24T18:46:56.010000"],["2024-07-24T18:46:57.010000"],["2024-07-24T18:46:58.010000"],["2024-07-24T18:46:59.010000"],["2024-07-24T18:47:00.010000"],["2024-07-24T18:47:01.010000"],["2024-07-24T18:47:02.010000"],["2024-07-24T18:47:03.010000"],["2024-07-24T18:47:04.010000"],["2024-07-24T18:47:05.010000"],["2024-07-24T18:47:06.010000"],["2024-07-24T18:47:07.010000"],["2024-07-24T18:47:08.010000"],["2024-07-24T18:47:09.010000"],["2024-07-24T18:47:10.010000"],["2024-07-24T18:47:11.010000"],["2024-07-24T18:47:12.010000"],["2024-07-24T18:47:13.010000"],["2024-07-24T18:47:14.010000"],["2024-07-24T18:47:15.010000"],["2024-07-24T18:47:16.010000"],["2024-07-24T18:47:17.010000"],["2024-07-24T18:47:18.010000"],["2024-07-24T18:47:19.010000"],["2024-07-24T18:47:20.010000"],["2024-07-24T18:47:21.010000"],["2024-07-24T18:47:22.010000"],["2024-07-24T18:47:23.010000"],["2024-07-24T18:47:24.010000"],["2024-07-24T18:47:25.010000"],["2024-07-24T18:47:26.010000"],["2024-07-24T18:47:27.010000"],["2024-07-24T18:47:28.010000"],["2024-07-24T18:47:29.010000"],["2024-07-24T18:47:30.010000"],["2024-07-24T18:47:31.010000"],["2024-07-24T18:47:32.010000"],["2024-07-24T18:47:33.010000"],["2024-07-24T18:47:34.010000"],["2024-07-24T18:47:35.010000"],["2024-07-24T18:47:36.010000"],["2024-07-24T18:47:37.010000"],["2024-07-24T18:47:38.010000"],["2024-07-24T18:47:39.010000"],["2024-07-24T18:47:40.010000"],["2024-07-24T18:47:41.010000"],["2024-07-24T18:47:42.010000"],["2024-07-24T18:47:43.010000"],["2024-07-24T18:47:44.010000"],["2024-07-24T18:47:45.010000"],["2024-07-24T18:47:46.010000"],["2024-07-24T18:47:47.010000"],["2024-07-24T18:47:48.010000"],["2024-07-24T18:47:49.010000"],["2024-07-24T18:47:50.010000"],["2024-07-24T18:47:51.010000"],["2024-07-24T18:47:52.010000"],["2024-07-24T18:47:53.010000"],["2024-07-24T18:47:54.010000"],["2024-07-24T18:47:55.010000"],["2024-07-24T18:47:56.010000"],["2024-07-24T18:47:57.010000"],["2024-07-24T18:47:58.010000"],["2024-07-24T18:47:59.010000"],["2024-07-24T18:48:00.010000"],["2024-07-24T18:48:01.010000"],["2024-07-24T18:48:02.010000"],["2024-07-24T18:48:03.010000"],["2024-07-24T18:48:04.010000"],["2024-07-24T18:48:05.010000"],["2024-07-24T18:48:06.010000"],["2024-07-24T18:48:07.010000"],["2024-07-24T18:48:08.010000"],["2024-07-24T18:48:09.010000"],["2024-07-24T18:48:10.010000"],["2024-07-24T18:48:11.010000"],["2024-07-24T18:48:12.010000"],["2024-07-24T18:48:13.010000"],["2024-07-24T18:48:14.010000"],["2024-07-24T18:48:15.010000"],["2024-07-24T18:48:16.010000"],["2024-07-24T18:48:17.010000"],["2024-07-24T18:48:18.010000"],["2024-07-24T18:48:19.010000"],["2024-07-24T18:48:20.010000"],["2024-07-24T18:48:21.010000"],["2024-07-24T18:48:22.010000"],["2024-07-24T18:48:23.010000"],["2024-07-24T18:48:24.010000"],["2024-07-24T18:48:25.010000"],["2024-07-24T18:48:26.010000"],["2024-07-24T18:48:27.010000"],["2024-07-24T18:48:28.010000"],["2024-07-24T18:48:29.010000"],["2024-07-24T18:48:30.010000"],["2024-07-24T18:48:31.010000"],["2024-07-24T18:48:32.010000"],["2024-07-24T18:48:33.010000"],["2024-07-24T18:48:34.010000"],["2024-07-24T18:48:35.010000"],["2024-07-24T18:48:36.010000"],["2024-07-24T18:48:37.010000"],["2024-07-24T18:48:38.010000"],["2024-07-24T18:48:39.010000"],["2024-07-24T18:48:40.010000"],["2024-07-24T18:48:41.010000"],["2024-07-24T18:48:42.010000"],["2024-07-24T18:48:43.010000"],["2024-07-24T18:48:44.010000"],["2024-07-24T18:48:45.010000"],["2024-07-24T18:48:46.010000"],["2024-07-24T18:48:47.010000"],["2024-07-24T18:48:48.010000"],["2024-07-24T18:48:49.010000"],["2024-07-24T18:48:50.010000"],["2024-07-24T18:48:51.010000"],["2024-07-24T18:48:52.010000"],["2024-07-24T18:48:53.010000"],["2024-07-24T18:48:54.010000"],["2024-07-24T18:48:55.010000"],["2024-07-24T18:48:56.010000"],["2024-07-24T18:48:57.010000"],["2024-07-24T18:48:58.010000"],["2024-07-24T18:48:59.010000"],["2024-07-24T18:49:00.010000"],["2024-07-24T18:49:01.010000"],["2024-07-24T18:49:02.010000"],["2024-07-24T18:49:03.010000"],["2024-07-24T18:49:04.010000"],["2024-07-24T18:49:05.010000"],["2024-07-24T18:49:06.010000"],["2024-07-24T18:49:07.010000"],["2024-07-24T18:49:08.010000"],["2024-07-24T18:49:09.010000"],["2024-07-24T18:49:10.010000"],["2024-07-24T18:49:11.010000"],["2024-07-24T18:49:12.010000"],["2024-07-24T18:49:13.010000"],["2024-07-24T18:49:14.010000"],["2024-07-24T18:49:15.010000"],["2024-07-24T18:49:16.010000"],["2024-07-24T18:49:17.010000"],["2024-07-24T18:49:18.010000"],["2024-07-24T18:49:19.010000"],["2024-07-24T18:49:20.010000"],["2024-07-24T18:49:21.010000"],["2024-07-24T18:49:22.010000"],["2024-07-24T18:49:23.010000"],["2024-07-24T18:49:24.010000"],["2024-07-24T18:49:25.010000"],["2024-07-24T18:49:26.010000"],["2024-07-24T18:49:27.010000"],["2024-07-24T18:49:28.010000"],["2024-07-24T18:49:29.010000"],["2024-07-24T18:49:30.010000"],["2024-07-24T18:49:31.010000"],["2024-07-24T18:49:32.010000"],["2024-07-24T18:49:33.010000"],["2024-07-24T18:49:34.010000"],["2024-07-24T18:49:35.010000"],["2024-07-24T18:49:36.010000"],["2024-07-24T18:49:37.010000"],["2024-07-24T18:49:38.010000"],["2024-07-24T18:49:39.010000"],["2024-07-24T18:49:40.010000"],["2024-07-24T18:49:41.010000"],["2024-07-24T18:49:42.010000"],["2024-07-24T18:49:43.010000"],["2024-07-24T18:49:44.010000"],["2024-07-24T18:49:45.010000"],["2024-07-24T18:49:46.010000"],["2024-07-24T18:49:47.010000"],["2024-07-24T18:49:48.010000"],["2024-07-24T18:49:49.010000"],["2024-07-24T18:49:50.010000"],["2024-07-24T18:49:51.010000"],["2024-07-24T18:49:52.010000"],["2024-07-24T18:49:53.010000"],["2024-07-24T18:49:54.010000"],["2024-07-24T18:49:55.010000"],["2024-07-24T18:49:56.010000"],["2024-07-24T18:49:57.010000"],["2024-07-24T18:49:58.010000"],["2024-07-24T18:49:59.010000"],["2024-07-24T18:50:00.010000"],["2024-07-24T18:50:01.010000"],["2024-07-24T18:50:02.010000"],["2024-07-24T18:50:03.010000"],["2024-07-24T18:50:04.010000"],["2024-07-24T18:50:05.010000"],["2024-07-24T18:50:06.010000"],["2024-07-24T18:50:07.010000"],["2024-07-24T18:50:08.010000"],["2024-07-24T18:50:09.010000"],["2024-07-24T18:50:10.010000"],["2024-07-24T18:50:11.010000"],["2024-07-24T18:50:12.010000"],["2024-07-24T18:50:13.010000"],["2024-07-24T18:50:14.010000"],["2024-07-24T18:50:15.010000"],["2024-07-24T18:50:16.010000"],["2024-07-24T18:50:17.010000"],["2024-07-24T18:50:18.010000"],["2024-07-24T18:50:19.010000"],["2024-07-24T18:50:20.010000"],["2024-07-24T18:50:21.010000"],["2024-07-24T18:50:22.010000"],["2024-07-24T18:50:23.010000"],["2024-07-24T18:50:24.010000"],["2024-07-24T18:50:25.010000"],["2024-07-24T18:50:26.010000"],["2024-07-24T18:50:27.010000"],["2024-07-24T18:50:28.010000"],["2024-07-24T18:50:29.010000"],["2024-07-24T18:50:30.010000"],["2024-07-24T18:50:31.010000"],["2024-07-24T18:50:32.010000"],["2024-07-24T18:50:33.010000"],["2024-07-24T18:50:34.010000"],["2024-07-24T18:50:35.010000"],["2024-07-24T18:50:36.010000"],["2024-07-24T18:50:37.010000"],["2024-07-24T18:50:38.010000"],["2024-07-24T18:50:39.010000"],["2024-07-24T18:50:40.010000"],["2024-07-24T18:50:41.010000"],["2024-07-24T18:50:42.010000"],["2024-07-24T18:50:43.010000"],["2024-07-24T18:50:44.010000"],["2024-07-24T18:50:45.010000"],["2024-07-24T18:50:46.010000"],["2024-07-24T18:50:47.010000"],["2024-07-24T18:50:48.010000"],["2024-07-24T18:50:49.010000"],["2024-07-24T18:50:50.010000"],["2024-07-24T18:50:51.010000"],["2024-07-24T18:50:52.010000"],["2024-07-24T18:50:53.010000"],["2024-07-24T18:50:54.010000"],["2024-07-24T18:50:55.010000"],["2024-07-24T18:50:56.010000"],["2024-07-24T18:50:57.010000"],["2024-07-24T18:50:58.010000"],["2024-07-24T18:50:59.010000"],["2024-07-24T18:51:00.010000"],["2024-07-24T18:51:01.010000"],["2024-07-24T18:51:02.010000"],["2024-07-24T18:51:03.010000"],["2024-07-24T18:51:04.010000"],["2024-07-24T18:51:05.010000"],["2024-07-24T18:51:06.010000"],["2024-07-24T18:51:07.010000"],["2024-07-24T18:51:08.010000"],["2024-07-24T18:51:09.010000"],["2024-07-24T18:51:10.010000"],["2024-07-24T18:51:11.010000"],["2024-07-24T18:51:12.010000"],["2024-07-24T18:51:13.010000"],["2024-07-24T18:51:14.010000"],["2024-07-24T18:51:15.010000"],["2024-07-24T18:51:16.010000"],["2024-07-24T18:51:17.010000"],["2024-07-24T18:51:18.010000"],["2024-07-24T18:51:19.010000"],["2024-07-24T18:51:20.010000"],["2024-07-24T18:51:21.010000"],["2024-07-24T18:51:22.010000"],["2024-07-24T18:51:23.010000"],["2024-07-24T18:51:24.010000"],["2024-07-24T18:51:25.010000"],["2024-07-24T18:51:26.010000"],["2024-07-24T18:51:27.010000"],["2024-07-24T18:51:28.010000"],["2024-07-24T18:51:29.010000"],["2024-07-24T18:51:30.010000"],["2024-07-24T18:51:31.010000"],["2024-07-24T18:51:32.010000"],["2024-07-24T18:51:33.010000"],["2024-07-24T18:51:34.010000"],["2024-07-24T18:51:35.010000"],["2024-07-24T18:51:36.010000"],["2024-07-24T18:51:37.010000"],["2024-07-24T18:51:38.010000"],["2024-07-24T18:51:39.010000"],["2024-07-24T18:51:40.010000"],["2024-07-24T18:51:41.010000"],["2024-07-24T18:51:42.010000"],["2024-07-24T18:51:43.010000"],["2024-07-24T18:51:44.010000"],["2024-07-24T18:51:45.010000"],["2024-07-24T18:51:46.010000"],["2024-07-24T18:51:47.010000"],["2024-07-24T18:51:48.010000"],["2024-07-24T18:51:49.010000"],["2024-07-24T18:51:50.010000"],["2024-07-24T18:51:51.010000"],["2024-07-24T18:51:52.010000"],["2024-07-24T18:51:53.010000"],["2024-07-24T18:51:54.010000"],["2024-07-24T18:51:55.010000"],["2024-07-24T18:51:56.010000"],["2024-07-24T18:51:57.010000"],["2024-07-24T18:51:58.010000"],["2024-07-24T18:51:59.010000"],["2024-07-24T18:52:00.010000"],["2024-07-24T18:52:01.010000"],["2024-07-24T18:52:02.010000"],["2024-07-24T18:52:03.010000"],["2024-07-24T18:52:04.010000"],["2024-07-24T18:52:05.010000"],["2024-07-24T18:52:06.010000"],["2024-07-24T18:52:07.010000"],["2024-07-24T18:52:08.010000"],["2024-07-24T18:52:09.010000"],["2024-07-24T18:52:10.010000"],["2024-07-24T18:52:11.010000"],["2024-07-24T18:52:12.010000"],["2024-07-24T18:52:13.010000"],["2024-07-24T18:52:14.010000"],["2024-07-24T18:52:15.010000"],["2024-07-24T18:52:16.010000"],["2024-07-24T18:52:17.010000"],["2024-07-24T18:52:18.010000"],["2024-07-24T18:52:19.010000"],["2024-07-24T18:52:20.010000"],["2024-07-24T18:52:21.010000"],["2024-07-24T18:52:22.010000"],["2024-07-24T18:52:23.010000"],["2024-07-24T18:52:24.010000"],["2024-07-24T18:52:25.010000"],["2024-07-24T18:52:26.010000"],["2024-07-24T18:52:27.010000"],["2024-07-24T18:52:28.010000"],["2024-07-24T18:52:29.010000"],["2024-07-24T18:52:30.010000"],["2024-07-24T18:52:31.010000"],["2024-07-24T18:52:32.010000"],["2024-07-24T18:52:33.010000"],["2024-07-24T18:52:34.010000"],["2024-07-24T18:52:35.010000"],["2024-07-24T18:52:36.010000"],["2024-07-24T18:52:37.010000"],["2024-07-24T18:52:38.010000"],["2024-07-24T18:52:39.010000"],["2024-07-24T18:52:40.010000"],["2024-07-24T18:52:41.010000"],["2024-07-24T18:52:42.010000"],["2024-07-24T18:52:43.010000"],["2024-07-24T18:52:44.010000"],["2024-07-24T18:52:45.010000"],["2024-07-24T18:52:46.010000"],["2024-07-24T18:52:47.010000"],["2024-07-24T18:52:48.010000"],["2024-07-24T18:52:49.010000"],["2024-07-24T18:52:50.010000"],["2024-07-24T18:52:51.010000"],["2024-07-24T18:52:52.010000"],["2024-07-24T18:52:53.010000"],["2024-07-24T18:52:54.010000"],["2024-07-24T18:52:55.010000"],["2024-07-24T18:52:56.010000"],["2024-07-24T18:52:57.010000"],["2024-07-24T18:52:58.010000"],["2024-07-24T18:52:59.010000"],["2024-07-24T18:53:00.010000"],["2024-07-24T18:53:01.010000"],["2024-07-24T18:53:02.010000"],["2024-07-24T18:53:03.010000"],["2024-07-24T18:53:04.010000"],["2024-07-24T18:53:05.010000"],["2024-07-24T18:53:06.010000"],["2024-07-24T18:53:07.010000"],["2024-07-24T18:53:08.010000"],["2024-07-24T18:53:09.010000"],["2024-07-24T18:53:10.010000"],["2024-07-24T18:53:11.010000"],["2024-07-24T18:53:12.010000"],["2024-07-24T18:53:13.010000"],["2024-07-24T18:53:14.010000"],["2024-07-24T18:53:15.010000"],["2024-07-24T18:53:16.010000"],["2024-07-24T18:53:17.010000"],["2024-07-24T18:53:18.010000"],["2024-07-24T18:53:19.010000"],["2024-07-24T18:53:20.010000"],["2024-07-24T18:53:21.010000"],["2024-07-24T18:53:22.010000"],["2024-07-24T18:53:23.010000"],["2024-07-24T18:53:24.010000"],["2024-07-24T18:53:25.010000"],["2024-07-24T18:53:26.010000"],["2024-07-24T18:53:27.010000"],["2024-07-24T18:53:28.010000"],["2024-07-24T18:53:29.010000"],["2024-07-24T18:53:30.010000"],["2024-07-24T18:53:31.010000"],["2024-07-24T18:53:32.010000"],["2024-07-24T18:53:33.010000"],["2024-07-24T18:53:34.010000"],["2024-07-24T18:53:35.010000"],["2024-07-24T18:53:36.010000"],["2024-07-24T18:53:37.010000"],["2024-07-24T18:53:38.010000"],["2024-07-24T18:53:39.010000"],["2024-07-24T18:53:40.010000"],["2024-07-24T18:53:41.010000"],["2024-07-24T18:53:42.010000"],["2024-07-24T18:53:43.010000"],["2024-07-24T18:53:44.010000"],["2024-07-24T18:53:45.010000"],["2024-07-24T18:53:46.010000"],["2024-07-24T18:53:47.010000"],["2024-07-24T18:53:48.010000"],["2024-07-24T18:53:49.010000"],["2024-07-24T18:53:50.010000"],["2024-07-24T18:53:51.010000"],["2024-07-24T18:53:52.010000"],["2024-07-24T18:53:53.010000"],["2024-07-24T18:53:54.010000"],["2024-07-24T18:53:55.010000"],["2024-07-24T18:53:56.010000"],["2024-07-24T18:53:57.010000"],["2024-07-24T18:53:58.010000"],["2024-07-24T18:53:59.010000"],["2024-07-24T18:54:00.010000"],["2024-07-24T18:54:01.010000"],["2024-07-24T18:54:02.010000"],["2024-07-24T18:54:03.010000"],["2024-07-24T18:54:04.010000"],["2024-07-24T18:54:05.010000"],["2024-07-24T18:54:06.010000"],["2024-07-24T18:54:07.010000"],["2024-07-24T18:54:08.010000"],["2024-07-24T18:54:09.010000"],["2024-07-24T18:54:10.010000"],["2024-07-24T18:54:11.010000"],["2024-07-24T18:54:12.010000"],["2024-07-24T18:54:13.010000"],["2024-07-24T18:54:14.010000"],["2024-07-24T18:54:15.010000"],["2024-07-24T18:54:16.010000"],["2024-07-24T18:54:17.010000"],["2024-07-24T18:54:18.010000"],["2024-07-24T18:54:19.010000"],["2024-07-24T18:54:20.010000"],["2024-07-24T18:54:21.010000"],["2024-07-24T18:54:22.010000"],["2024-07-24T18:54:23.010000"],["2024-07-24T18:54:24.010000"],["2024-07-24T18:54:25.010000"],["2024-07-24T18:54:26.010000"],["2024-07-24T18:54:27.010000"],["2024-07-24T18:54:28.010000"],["2024-07-24T18:54:29.010000"],["2024-07-24T18:54:30.010000"],["2024-07-24T18:54:31.010000"],["2024-07-24T18:54:32.010000"],["2024-07-24T18:54:33.010000"],["2024-07-24T18:54:34.010000"],["2024-07-24T18:54:35.010000"],["2024-07-24T18:54:36.010000"],["2024-07-24T18:54:37.010000"],["2024-07-24T18:54:38.010000"],["2024-07-24T18:54:39.010000"],["2024-07-24T18:54:40.010000"],["2024-07-24T18:54:41.010000"],["2024-07-24T18:54:42.010000"],["2024-07-24T18:54:43.010000"],["2024-07-24T18:54:44.010000"],["2024-07-24T18:54:45.010000"],["2024-07-24T18:54:46.010000"],["2024-07-24T18:54:47.010000"],["2024-07-24T18:54:48.010000"],["2024-07-24T18:54:49.010000"],["2024-07-24T18:54:50.010000"],["2024-07-24T18:54:51.010000"],["2024-07-24T18:54:52.010000"],["2024-07-24T18:54:53.010000"],["2024-07-24T18:54:54.010000"],["2024-07-24T18:54:55.010000"],["2024-07-24T18:54:56.010000"],["2024-07-24T18:54:57.010000"],["2024-07-24T18:54:58.010000"],["2024-07-24T18:54:59.010000"],["2024-07-24T18:55:00.010000"],["2024-07-24T18:55:01.010000"],["2024-07-24T18:55:02.010000"],["2024-07-24T18:55:03.010000"],["2024-07-24T18:55:04.010000"],["2024-07-24T18:55:05.010000"],["2024-07-24T18:55:06.010000"],["2024-07-24T18:55:07.010000"],["2024-07-24T18:55:08.010000"],["2024-07-24T18:55:09.010000"],["2024-07-24T18:55:10.010000"],["2024-07-24T18:55:11.010000"],["2024-07-24T18:55:12.010000"],["2024-07-24T18:55:13.010000"],["2024-07-24T18:55:14.010000"],["2024-07-24T18:55:15.010000"],["2024-07-24T18:55:16.010000"],["2024-07-24T18:55:17.010000"],["2024-07-24T18:55:18.010000"],["2024-07-24T18:55:19.010000"],["2024-07-24T18:55:20.010000"],["2024-07-24T18:55:21.010000"],["2024-07-24T18:55:22.010000"],["2024-07-24T18:55:23.010000"],["2024-07-24T18:55:24.010000"],["2024-07-24T18:55:25.010000"],["2024-07-24T18:55:26.010000"],["2024-07-24T18:55:27.010000"],["2024-07-24T18:55:28.010000"],["2024-07-24T18:55:29.010000"],["2024-07-24T18:55:30.010000"],["2024-07-24T18:55:31.010000"],["2024-07-24T18:55:32.010000"],["2024-07-24T18:55:33.010000"],["2024-07-24T18:55:34.010000"],["2024-07-24T18:55:35.010000"],["2024-07-24T18:55:36.010000"],["2024-07-24T18:55:37.010000"],["2024-07-24T18:55:38.010000"],["2024-07-24T18:55:39.010000"],["2024-07-24T18:55:40.010000"],["2024-07-24T18:55:41.010000"],["2024-07-24T18:55:42.010000"],["2024-07-24T18:55:43.010000"],["2024-07-24T18:55:44.010000"],["2024-07-24T18:55:45.010000"],["2024-07-24T18:55:46.010000"],["2024-07-24T18:55:47.010000"],["2024-07-24T18:55:48.010000"],["2024-07-24T18:55:49.010000"],["2024-07-24T18:55:50.010000"],["2024-07-24T18:55:51.010000"],["2024-07-24T18:55:52.010000"],["2024-07-24T18:55:53.010000"],["2024-07-24T18:55:54.010000"],["2024-07-24T18:55:55.010000"],["2024-07-24T18:55:56.010000"],["2024-07-24T18:55:57.010000"],["2024-07-24T18:55:58.010000"],["2024-07-24T18:55:59.010000"],["2024-07-24T18:56:00.010000"],["2024-07-24T18:56:01.010000"],["2024-07-24T18:56:02.010000"],["2024-07-24T18:56:03.010000"],["2024-07-24T18:56:04.010000"],["2024-07-24T18:56:05.010000"],["2024-07-24T18:56:06.010000"],["2024-07-24T18:56:07.010000"],["2024-07-24T18:56:08.010000"],["2024-07-24T18:56:09.010000"],["2024-07-24T18:56:10.010000"],["2024-07-24T18:56:11.010000"],["2024-07-24T18:56:12.010000"],["2024-07-24T18:56:13.010000"],["2024-07-24T18:56:14.010000"],["2024-07-24T18:56:15.010000"],["2024-07-24T18:56:16.010000"],["2024-07-24T18:56:17.010000"],["2024-07-24T18:56:18.010000"],["2024-07-24T18:56:19.010000"],["2024-07-24T18:56:20.010000"],["2024-07-24T18:56:21.010000"],["2024-07-24T18:56:22.010000"],["2024-07-24T18:56:23.010000"],["2024-07-24T18:56:24.010000"],["2024-07-24T18:56:25.010000"],["2024-07-24T18:56:26.010000"],["2024-07-24T18:56:27.010000"],["2024-07-24T18:56:28.010000"],["2024-07-24T18:56:29.010000"],["2024-07-24T18:56:30.010000"],["2024-07-24T18:56:31.010000"],["2024-07-24T18:56:32.010000"],["2024-07-24T18:56:33.010000"],["2024-07-24T18:56:34.010000"],["2024-07-24T18:56:35.010000"],["2024-07-24T18:56:36.010000"],["2024-07-24T18:56:37.010000"],["2024-07-24T18:56:38.010000"],["2024-07-24T18:56:39.010000"],["2024-07-24T18:56:40.010000"],["2024-07-24T18:56:41.010000"],["2024-07-24T18:56:42.010000"],["2024-07-24T18:56:43.010000"],["2024-07-24T18:56:44.010000"],["2024-07-24T18:56:45.010000"],["2024-07-24T18:56:46.010000"],["2024-07-24T18:56:47.010000"],["2024-07-24T18:56:48.010000"],["2024-07-24T18:56:49.010000"],["2024-07-24T18:56:50.010000"],["2024-07-24T18:56:51.010000"],["2024-07-24T18:56:52.010000"],["2024-07-24T18:56:53.010000"],["2024-07-24T18:56:54.010000"],["2024-07-24T18:56:55.010000"],["2024-07-24T18:56:56.010000"],["2024-07-24T18:56:57.010000"],["2024-07-24T18:56:58.010000"],["2024-07-24T18:56:59.010000"],["2024-07-24T18:57:00.010000"],["2024-07-24T18:57:01.010000"],["2024-07-24T18:57:02.010000"],["2024-07-24T18:57:03.010000"],["2024-07-24T18:57:04.010000"],["2024-07-24T18:57:05.010000"],["2024-07-24T18:57:06.010000"],["2024-07-24T18:57:07.010000"],["2024-07-24T18:57:08.010000"],["2024-07-24T18:57:09.010000"],["2024-07-24T18:57:10.010000"],["2024-07-24T18:57:11.010000"],["2024-07-24T18:57:12.010000"],["2024-07-24T18:57:13.010000"],["2024-07-24T18:57:14.010000"],["2024-07-24T18:57:15.010000"],["2024-07-24T18:57:16.010000"],["2024-07-24T18:57:17.010000"],["2024-07-24T18:57:18.010000"],["2024-07-24T18:57:19.010000"],["2024-07-24T18:57:20.010000"],["2024-07-24T18:57:21.010000"],["2024-07-24T18:57:22.010000"],["2024-07-24T18:57:23.010000"],["2024-07-24T18:57:24.010000"],["2024-07-24T18:57:25.010000"],["2024-07-24T18:57:26.010000"],["2024-07-24T18:57:27.010000"],["2024-07-24T18:57:28.010000"],["2024-07-24T18:57:29.010000"],["2024-07-24T18:57:30.010000"],["2024-07-24T18:57:31.010000"],["2024-07-24T18:57:32.010000"],["2024-07-24T18:57:33.010000"],["2024-07-24T18:57:34.010000"],["2024-07-24T18:57:35.010000"],["2024-07-24T18:57:36.010000"],["2024-07-24T18:57:37.010000"],["2024-07-24T18:57:38.010000"],["2024-07-24T18:57:39.010000"],["2024-07-24T18:57:40.010000"],["2024-07-24T18:57:41.010000"],["2024-07-24T18:57:42.010000"],["2024-07-24T18:57:43.010000"],["2024-07-24T18:57:44.010000"],["2024-07-24T18:57:45.010000"],["2024-07-24T18:57:46.010000"],["2024-07-24T18:57:47.010000"],["2024-07-24T18:57:48.010000"],["2024-07-24T18:57:49.010000"],["2024-07-24T18:57:50.010000"],["2024-07-24T18:57:51.010000"],["2024-07-24T18:57:52.010000"],["2024-07-24T18:57:53.010000"],["2024-07-24T18:57:54.010000"],["2024-07-24T18:57:55.010000"],["2024-07-24T18:57:56.010000"],["2024-07-24T18:57:57.010000"],["2024-07-24T18:57:58.010000"],["2024-07-24T18:57:59.010000"],["2024-07-24T18:58:00.010000"],["2024-07-24T18:58:01.010000"],["2024-07-24T18:58:02.010000"],["2024-07-24T18:58:03.010000"],["2024-07-24T18:58:04.010000"],["2024-07-24T18:58:05.010000"],["2024-07-24T18:58:06.010000"],["2024-07-24T18:58:07.010000"],["2024-07-24T18:58:08.010000"],["2024-07-24T18:58:09.010000"],["2024-07-24T18:58:10.010000"],["2024-07-24T18:58:11.010000"],["2024-07-24T18:58:12.010000"],["2024-07-24T18:58:13.010000"],["2024-07-24T18:58:14.010000"],["2024-07-24T18:58:15.010000"],["2024-07-24T18:58:16.010000"],["2024-07-24T18:58:17.010000"],["2024-07-24T18:58:18.010000"],["2024-07-24T18:58:19.010000"],["2024-07-24T18:58:20.010000"],["2024-07-24T18:58:21.010000"],["2024-07-24T18:58:22.010000"],["2024-07-24T18:58:23.010000"],["2024-07-24T18:58:24.010000"],["2024-07-24T18:58:25.010000"],["2024-07-24T18:58:26.010000"],["2024-07-24T18:58:27.010000"],["2024-07-24T18:58:28.010000"],["2024-07-24T18:58:29.010000"],["2024-07-24T18:58:30.010000"],["2024-07-24T18:58:31.010000"],["2024-07-24T18:58:32.010000"],["2024-07-24T18:58:33.010000"],["2024-07-24T18:58:34.010000"],["2024-07-24T18:58:35.010000"],["2024-07-24T18:58:36.010000"],["2024-07-24T18:58:37.010000"],["2024-07-24T18:58:38.010000"],["2024-07-24T18:58:39.010000"],["2024-07-24T18:58:40.010000"],["2024-07-24T18:58:41.010000"],["2024-07-24T18:58:42.010000"],["2024-07-24T18:58:43.010000"],["2024-07-24T18:58:44.010000"],["2024-07-24T18:58:45.010000"],["2024-07-24T18:58:46.010000"],["2024-07-24T18:58:47.010000"],["2024-07-24T18:58:48.010000"],["2024-07-24T18:58:49.010000"],["2024-07-24T18:58:50.010000"],["2024-07-24T18:58:51.010000"],["2024-07-24T18:58:52.010000"],["2024-07-24T18:58:53.010000"],["2024-07-24T18:58:54.010000"],["2024-07-24T18:58:55.010000"],["2024-07-24T18:58:56.010000"],["2024-07-24T18:58:57.010000"],["2024-07-24T18:58:58.010000"],["2024-07-24T18:58:59.010000"],["2024-07-24T18:59:00.010000"],["2024-07-24T18:59:01.010000"],["2024-07-24T18:59:02.010000"],["2024-07-24T18:59:03.010000"],["2024-07-24T18:59:04.010000"],["2024-07-24T18:59:05.010000"],["2024-07-24T18:59:06.010000"],["2024-07-24T18:59:07.010000"],["2024-07-24T18:59:08.010000"],["2024-07-24T18:59:09.010000"],["2024-07-24T18:59:10.010000"],["2024-07-24T18:59:11.010000"],["2024-07-24T18:59:12.010000"],["2024-07-24T18:59:13.010000"],["2024-07-24T18:59:14.010000"],["2024-07-24T18:59:15.010000"],["2024-07-24T18:59:16.010000"],["2024-07-24T18:59:17.010000"],["2024-07-24T18:59:18.010000"],["2024-07-24T18:59:19.010000"],["2024-07-24T18:59:20.010000"],["2024-07-24T18:59:21.010000"],["2024-07-24T18:59:22.010000"],["2024-07-24T18:59:23.010000"],["2024-07-24T18:59:24.010000"],["2024-07-24T18:59:25.010000"],["2024-07-24T18:59:26.010000"],["2024-07-24T18:59:27.010000"],["2024-07-24T18:59:28.010000"],["2024-07-24T18:59:29.010000"],["2024-07-24T18:59:30.010000"],["2024-07-24T18:59:31.010000"],["2024-07-24T18:59:32.010000"],["2024-07-24T18:59:33.010000"],["2024-07-24T18:59:34.010000"],["2024-07-24T18:59:35.010000"],["2024-07-24T18:59:36.010000"],["2024-07-24T18:59:37.010000"],["2024-07-24T18:59:38.010000"],["2024-07-24T18:59:39.010000"],["2024-07-24T18:59:40.010000"],["2024-07-24T18:59:41.010000"],["2024-07-24T18:59:42.010000"],["2024-07-24T18:59:43.010000"],["2024-07-24T18:59:44.010000"],["2024-07-24T18:59:45.010000"],["2024-07-24T18:59:46.010000"],["2024-07-24T18:59:47.010000"],["2024-07-24T18:59:48.010000"],["2024-07-24T18:59:49.010000"],["2024-07-24T18:59:50.010000"],["2024-07-24T18:59:51.010000"],["2024-07-24T18:59:52.010000"],["2024-07-24T18:59:53.010000"],["2024-07-24T18:59:54.010000"],["2024-07-24T18:59:55.010000"],["2024-07-24T18:59:56.010000"],["2024-07-24T18:59:57.010000"],["2024-07-24T18:59:58.010000"],["2024-07-24T18:59:59.010000"],["2024-07-24T19:00:00.010000"],["2024-07-24T19:00:01.010000"],["2024-07-24T19:00:02.010000"],["2024-07-24T19:00:03.010000"],["2024-07-24T19:00:04.010000"],["2024-07-24T19:00:05.010000"],["2024-07-24T19:00:06.010000"],["2024-07-24T19:00:07.010000"],["2024-07-24T19:00:08.010000"],["2024-07-24T19:00:09.010000"],["2024-07-24T19:00:10.010000"],["2024-07-24T19:00:11.010000"],["2024-07-24T19:00:12.010000"],["2024-07-24T19:00:13.010000"],["2024-07-24T19:00:14.010000"],["2024-07-24T19:00:15.010000"],["2024-07-24T19:00:16.010000"],["2024-07-24T19:00:17.010000"],["2024-07-24T19:00:18.010000"],["2024-07-24T19:00:19.010000"],["2024-07-24T19:00:20.010000"],["2024-07-24T19:00:21.010000"],["2024-07-24T19:00:22.010000"],["2024-07-24T19:00:23.010000"],["2024-07-24T19:00:24.010000"],["2024-07-24T19:00:25.010000"],["2024-07-24T19:00:26.010000"],["2024-07-24T19:00:27.010000"],["2024-07-24T19:00:28.010000"],["2024-07-24T19:00:29.010000"],["2024-07-24T19:00:30.010000"],["2024-07-24T19:00:31.010000"],["2024-07-24T19:00:32.010000"],["2024-07-24T19:00:33.010000"],["2024-07-24T19:00:34.010000"],["2024-07-24T19:00:35.010000"],["2024-07-24T19:00:36.010000"],["2024-07-24T19:00:37.010000"],["2024-07-24T19:00:38.010000"],["2024-07-24T19:00:39.010000"],["2024-07-24T19:00:40.010000"],["2024-07-24T19:00:41.010000"],["2024-07-24T19:00:42.010000"],["2024-07-24T19:00:43.010000"],["2024-07-24T19:00:44.010000"],["2024-07-24T19:00:45.010000"],["2024-07-24T19:00:46.010000"],["2024-07-24T19:00:47.010000"],["2024-07-24T19:00:48.010000"],["2024-07-24T19:00:49.010000"],["2024-07-24T19:00:50.010000"],["2024-07-24T19:00:51.010000"],["2024-07-24T19:00:52.010000"],["2024-07-24T19:00:53.010000"],["2024-07-24T19:00:54.010000"],["2024-07-24T19:00:55.010000"],["2024-07-24T19:00:56.010000"],["2024-07-24T19:00:57.010000"],["2024-07-24T19:00:58.010000"],["2024-07-24T19:00:59.010000"],["2024-07-24T19:01:00.010000"],["2024-07-24T19:01:01.010000"],["2024-07-24T19:01:02.010000"],["2024-07-24T19:01:03.010000"],["2024-07-24T19:01:04.010000"],["2024-07-24T19:01:05.010000"],["2024-07-24T19:01:06.010000"],["2024-07-24T19:01:07.010000"],["2024-07-24T19:01:08.010000"],["2024-07-24T19:01:09.010000"],["2024-07-24T19:01:10.010000"],["2024-07-24T19:01:11.010000"],["2024-07-24T19:01:12.010000"],["2024-07-24T19:01:13.010000"],["2024-07-24T19:01:14.010000"],["2024-07-24T19:01:15.010000"],["2024-07-24T19:01:16.010000"],["2024-07-24T19:01:17.010000"],["2024-07-24T19:01:18.010000"],["2024-07-24T19:01:19.010000"],["2024-07-24T19:01:20.010000"],["2024-07-24T19:01:21.010000"],["2024-07-24T19:01:22.010000"],["2024-07-24T19:01:23.010000"],["2024-07-24T19:01:24.010000"],["2024-07-24T19:01:25.010000"],["2024-07-24T19:01:26.010000"],["2024-07-24T19:01:27.010000"],["2024-07-24T19:01:28.010000"],["2024-07-24T19:01:29.010000"],["2024-07-24T19:01:30.010000"],["2024-07-24T19:01:31.010000"],["2024-07-24T19:01:32.010000"],["2024-07-24T19:01:33.010000"],["2024-07-24T19:01:34.010000"],["2024-07-24T19:01:35.010000"],["2024-07-24T19:01:36.010000"],["2024-07-24T19:01:37.010000"],["2024-07-24T19:01:38.010000"],["2024-07-24T19:01:39.010000"],["2024-07-24T19:01:40.010000"],["2024-07-24T19:01:41.010000"],["2024-07-24T19:01:42.010000"],["2024-07-24T19:01:43.010000"],["2024-07-24T19:01:44.010000"],["2024-07-24T19:01:45.010000"],["2024-07-24T19:01:46.010000"],["2024-07-24T19:01:47.010000"],["2024-07-24T19:01:48.010000"],["2024-07-24T19:01:49.010000"],["2024-07-24T19:01:50.010000"],["2024-07-24T19:01:51.010000"],["2024-07-24T19:01:52.010000"],["2024-07-24T19:01:53.010000"],["2024-07-24T19:01:54.010000"],["2024-07-24T19:01:55.010000"],["2024-07-24T19:01:56.010000"],["2024-07-24T19:01:57.010000"],["2024-07-24T19:01:58.010000"],["2024-07-24T19:01:59.010000"],["2024-07-24T19:02:00.010000"],["2024-07-24T19:02:01.010000"],["2024-07-24T19:02:02.010000"],["2024-07-24T19:02:03.010000"],["2024-07-24T19:02:04.010000"],["2024-07-24T19:02:05.010000"],["2024-07-24T19:02:06.010000"],["2024-07-24T19:02:07.010000"],["2024-07-24T19:02:08.010000"],["2024-07-24T19:02:09.010000"],["2024-07-24T19:02:10.010000"],["2024-07-24T19:02:11.010000"],["2024-07-24T19:02:12.010000"],["2024-07-24T19:02:13.010000"],["2024-07-24T19:02:14.010000"],["2024-07-24T19:02:15.010000"],["2024-07-24T19:02:16.010000"],["2024-07-24T19:02:17.010000"],["2024-07-24T19:02:18.010000"],["2024-07-24T19:02:19.010000"],["2024-07-24T19:02:20.010000"],["2024-07-24T19:02:21.010000"],["2024-07-24T19:02:22.010000"],["2024-07-24T19:02:23.010000"],["2024-07-24T19:02:24.010000"],["2024-07-24T19:02:25.010000"],["2024-07-24T19:02:26.010000"],["2024-07-24T19:02:27.010000"],["2024-07-24T19:02:28.010000"],["2024-07-24T19:02:29.010000"],["2024-07-24T19:02:30.010000"],["2024-07-24T19:02:31.010000"],["2024-07-24T19:02:32.010000"],["2024-07-24T19:02:33.010000"],["2024-07-24T19:02:34.010000"],["2024-07-24T19:02:35.010000"],["2024-07-24T19:02:36.010000"],["2024-07-24T19:02:37.010000"],["2024-07-24T19:02:38.010000"],["2024-07-24T19:02:39.010000"],["2024-07-24T19:02:40.010000"],["2024-07-24T19:02:41.010000"],["2024-07-24T19:02:42.010000"],["2024-07-24T19:02:43.010000"],["2024-07-24T19:02:44.010000"],["2024-07-24T19:02:45.010000"],["2024-07-24T19:02:46.010000"],["2024-07-24T19:02:47.010000"],["2024-07-24T19:02:48.010000"],["2024-07-24T19:02:49.010000"],["2024-07-24T19:02:50.010000"],["2024-07-24T19:02:51.010000"],["2024-07-24T19:02:52.010000"],["2024-07-24T19:02:53.010000"],["2024-07-24T19:02:54.010000"],["2024-07-24T19:02:55.010000"],["2024-07-24T19:02:56.010000"],["2024-07-24T19:02:57.010000"],["2024-07-24T19:02:58.010000"],["2024-07-24T19:02:59.010000"],["2024-07-24T19:03:00.010000"],["2024-07-24T19:03:01.010000"],["2024-07-24T19:03:02.010000"],["2024-07-24T19:03:03.010000"],["2024-07-24T19:03:04.010000"],["2024-07-24T19:03:05.010000"],["2024-07-24T19:03:06.010000"],["2024-07-24T19:03:07.010000"],["2024-07-24T19:03:08.010000"],["2024-07-24T19:03:09.010000"],["2024-07-24T19:03:10.010000"],["2024-07-24T19:03:11.010000"],["2024-07-24T19:03:12.010000"],["2024-07-24T19:03:13.010000"],["2024-07-24T19:03:14.010000"],["2024-07-24T19:03:15.010000"],["2024-07-24T19:03:16.010000"],["2024-07-24T19:03:17.010000"],["2024-07-24T19:03:18.010000"],["2024-07-24T19:03:19.010000"],["2024-07-24T19:03:20.010000"],["2024-07-24T19:03:21.010000"],["2024-07-24T19:03:22.010000"],["2024-07-24T19:03:23.010000"],["2024-07-24T19:03:24.010000"],["2024-07-24T19:03:25.010000"],["2024-07-24T19:03:26.010000"],["2024-07-24T19:03:27.010000"],["2024-07-24T19:03:28.010000"],["2024-07-24T19:03:29.010000"],["2024-07-24T19:03:30.010000"],["2024-07-24T19:03:31.010000"],["2024-07-24T19:03:32.010000"],["2024-07-24T19:03:33.010000"],["2024-07-24T19:03:34.010000"],["2024-07-24T19:03:35.010000"],["2024-07-24T19:03:36.010000"],["2024-07-24T19:03:37.010000"],["2024-07-24T19:03:38.010000"],["2024-07-24T19:03:39.010000"],["2024-07-24T19:03:40.010000"],["2024-07-24T19:03:41.010000"],["2024-07-24T19:03:42.010000"],["2024-07-24T19:03:43.010000"],["2024-07-24T19:03:44.010000"],["2024-07-24T19:03:45.010000"],["2024-07-24T19:03:46.010000"],["2024-07-24T19:03:47.010000"],["2024-07-24T19:03:48.010000"],["2024-07-24T19:03:49.010000"],["2024-07-24T19:03:50.010000"],["2024-07-24T19:03:51.010000"],["2024-07-24T19:03:52.010000"],["2024-07-24T19:03:53.010000"],["2024-07-24T19:03:54.010000"],["2024-07-24T19:03:55.010000"],["2024-07-24T19:03:56.010000"],["2024-07-24T19:03:57.010000"],["2024-07-24T19:03:58.010000"],["2024-07-24T19:03:59.010000"],["2024-07-24T19:04:00.010000"],["2024-07-24T19:04:01.010000"],["2024-07-24T19:04:02.010000"],["2024-07-24T19:04:03.010000"],["2024-07-24T19:04:04.010000"],["2024-07-24T19:04:05.010000"],["2024-07-24T19:04:06.010000"],["2024-07-24T19:04:07.010000"],["2024-07-24T19:04:08.010000"],["2024-07-24T19:04:09.010000"],["2024-07-24T19:04:10.010000"],["2024-07-24T19:04:11.010000"],["2024-07-24T19:04:12.010000"],["2024-07-24T19:04:13.010000"],["2024-07-24T19:04:14.010000"],["2024-07-24T19:04:15.010000"],["2024-07-24T19:04:16.010000"],["2024-07-24T19:04:17.010000"],["2024-07-24T19:04:18.010000"],["2024-07-24T19:04:19.010000"],["2024-07-24T19:04:20.010000"],["2024-07-24T19:04:21.010000"],["2024-07-24T19:04:22.010000"],["2024-07-24T19:04:23.010000"],["2024-07-24T19:04:24.010000"],["2024-07-24T19:04:25.010000"],["2024-07-24T19:04:26.010000"],["2024-07-24T19:04:27.010000"],["2024-07-24T19:04:28.010000"],["2024-07-24T19:04:29.010000"],["2024-07-24T19:04:30.010000"],["2024-07-24T19:04:31.010000"],["2024-07-24T19:04:32.010000"],["2024-07-24T19:04:33.010000"],["2024-07-24T19:04:34.010000"],["2024-07-24T19:04:35.010000"],["2024-07-24T19:04:36.010000"],["2024-07-24T19:04:37.010000"],["2024-07-24T19:04:38.010000"],["2024-07-24T19:04:39.010000"],["2024-07-24T19:04:40.010000"],["2024-07-24T19:04:41.010000"],["2024-07-24T19:04:42.010000"],["2024-07-24T19:04:43.010000"],["2024-07-24T19:04:44.010000"],["2024-07-24T19:04:45.010000"],["2024-07-24T19:04:46.010000"],["2024-07-24T19:04:47.010000"],["2024-07-24T19:04:48.010000"],["2024-07-24T19:04:49.010000"],["2024-07-24T19:04:50.010000"],["2024-07-24T19:04:51.010000"],["2024-07-24T19:04:52.010000"],["2024-07-24T19:04:53.010000"],["2024-07-24T19:04:54.010000"],["2024-07-24T19:04:55.010000"],["2024-07-24T19:04:56.010000"],["2024-07-24T19:04:57.010000"],["2024-07-24T19:04:58.010000"],["2024-07-24T19:04:59.010000"],["2024-07-24T19:05:00.010000"],["2024-07-24T19:05:01.010000"],["2024-07-24T19:05:02.010000"],["2024-07-24T19:05:03.010000"],["2024-07-24T19:05:04.010000"],["2024-07-24T19:05:05.010000"],["2024-07-24T19:05:06.010000"],["2024-07-24T19:05:07.010000"],["2024-07-24T19:05:08.010000"],["2024-07-24T19:05:09.010000"],["2024-07-24T19:05:10.010000"],["2024-07-24T19:05:11.010000"],["2024-07-24T19:05:12.010000"],["2024-07-24T19:05:13.010000"],["2024-07-24T19:05:14.010000"],["2024-07-24T19:05:15.010000"],["2024-07-24T19:05:16.010000"],["2024-07-24T19:05:17.010000"],["2024-07-24T19:05:18.010000"],["2024-07-24T19:05:19.010000"],["2024-07-24T19:05:20.010000"],["2024-07-24T19:05:21.010000"],["2024-07-24T19:05:22.010000"],["2024-07-24T19:05:23.010000"],["2024-07-24T19:05:24.010000"],["2024-07-24T19:05:25.010000"],["2024-07-24T19:05:26.010000"],["2024-07-24T19:05:27.010000"],["2024-07-24T19:05:28.010000"],["2024-07-24T19:05:29.010000"],["2024-07-24T19:05:30.010000"],["2024-07-24T19:05:31.010000"],["2024-07-24T19:05:32.010000"],["2024-07-24T19:05:33.010000"],["2024-07-24T19:05:34.010000"],["2024-07-24T19:05:35.010000"],["2024-07-24T19:05:36.010000"],["2024-07-24T19:05:37.010000"],["2024-07-24T19:05:38.010000"],["2024-07-24T19:05:39.010000"],["2024-07-24T19:05:40.010000"],["2024-07-24T19:05:41.010000"],["2024-07-24T19:05:42.010000"],["2024-07-24T19:05:43.010000"],["2024-07-24T19:05:44.010000"],["2024-07-24T19:05:45.010000"],["2024-07-24T19:05:46.010000"],["2024-07-24T19:05:47.010000"],["2024-07-24T19:05:48.010000"],["2024-07-24T19:05:49.010000"],["2024-07-24T19:05:50.010000"],["2024-07-24T19:05:51.010000"],["2024-07-24T19:05:52.010000"],["2024-07-24T19:05:53.010000"],["2024-07-24T19:05:54.010000"],["2024-07-24T19:05:55.010000"],["2024-07-24T19:05:56.010000"],["2024-07-24T19:05:57.010000"],["2024-07-24T19:05:58.010000"],["2024-07-24T19:05:59.010000"],["2024-07-24T19:06:00.010000"],["2024-07-24T19:06:01.010000"],["2024-07-24T19:06:02.010000"],["2024-07-24T19:06:03.010000"],["2024-07-24T19:06:04.010000"],["2024-07-24T19:06:05.010000"],["2024-07-24T19:06:06.010000"],["2024-07-24T19:06:07.010000"],["2024-07-24T19:06:08.010000"],["2024-07-24T19:06:09.010000"],["2024-07-24T19:06:10.010000"],["2024-07-24T19:06:11.010000"],["2024-07-24T19:06:12.010000"],["2024-07-24T19:06:13.010000"],["2024-07-24T19:06:14.010000"],["2024-07-24T19:06:15.010000"],["2024-07-24T19:06:16.010000"],["2024-07-24T19:06:17.010000"],["2024-07-24T19:06:18.010000"],["2024-07-24T19:06:19.010000"],["2024-07-24T19:06:20.010000"],["2024-07-24T19:06:21.010000"],["2024-07-24T19:06:22.010000"],["2024-07-24T19:06:23.010000"],["2024-07-24T19:06:24.010000"],["2024-07-24T19:06:25.010000"],["2024-07-24T19:06:26.010000"],["2024-07-24T19:06:27.010000"],["2024-07-24T19:06:28.010000"],["2024-07-24T19:06:29.010000"],["2024-07-24T19:06:30.010000"],["2024-07-24T19:06:31.010000"],["2024-07-24T19:06:32.010000"],["2024-07-24T19:06:33.010000"],["2024-07-24T19:06:34.010000"],["2024-07-24T19:06:35.010000"],["2024-07-24T19:06:36.010000"],["2024-07-24T19:06:37.010000"],["2024-07-24T19:06:38.010000"],["2024-07-24T19:06:39.010000"],["2024-07-24T19:06:40.010000"],["2024-07-24T19:06:41.010000"],["2024-07-24T19:06:42.010000"],["2024-07-24T19:06:43.010000"],["2024-07-24T19:06:44.010000"],["2024-07-24T19:06:45.010000"],["2024-07-24T19:06:46.010000"],["2024-07-24T19:06:47.010000"],["2024-07-24T19:06:48.010000"],["2024-07-24T19:06:49.010000"],["2024-07-24T19:06:50.010000"],["2024-07-24T19:06:51.010000"],["2024-07-24T19:06:52.010000"],["2024-07-24T19:06:53.010000"],["2024-07-24T19:06:54.010000"],["2024-07-24T19:06:55.010000"],["2024-07-24T19:06:56.010000"],["2024-07-24T19:06:57.010000"],["2024-07-24T19:06:58.010000"],["2024-07-24T19:06:59.010000"],["2024-07-24T19:07:00.010000"],["2024-07-24T19:07:01.010000"],["2024-07-24T19:07:02.010000"],["2024-07-24T19:07:03.010000"],["2024-07-24T19:07:04.010000"],["2024-07-24T19:07:05.010000"],["2024-07-24T19:07:06.010000"],["2024-07-24T19:07:07.010000"],["2024-07-24T19:07:08.010000"],["2024-07-24T19:07:09.010000"],["2024-07-24T19:07:10.010000"],["2024-07-24T19:07:11.010000"],["2024-07-24T19:07:12.010000"],["2024-07-24T19:07:13.010000"],["2024-07-24T19:07:14.010000"],["2024-07-24T19:07:15.010000"],["2024-07-24T19:07:16.010000"],["2024-07-24T19:07:17.010000"],["2024-07-24T19:07:18.010000"],["2024-07-24T19:07:19.010000"],["2024-07-24T19:07:20.010000"],["2024-07-24T19:07:21.010000"],["2024-07-24T19:07:22.010000"],["2024-07-24T19:07:23.010000"],["2024-07-24T19:07:24.010000"],["2024-07-24T19:07:25.010000"],["2024-07-24T19:07:26.010000"],["2024-07-24T19:07:27.010000"],["2024-07-24T19:07:28.010000"],["2024-07-24T19:07:29.010000"],["2024-07-24T19:07:30.010000"],["2024-07-24T19:07:31.010000"],["2024-07-24T19:07:32.010000"],["2024-07-24T19:07:33.010000"],["2024-07-24T19:07:34.010000"],["2024-07-24T19:07:35.010000"],["2024-07-24T19:07:36.010000"],["2024-07-24T19:07:37.010000"],["2024-07-24T19:07:38.010000"],["2024-07-24T19:07:39.010000"],["2024-07-24T19:07:40.010000"],["2024-07-24T19:07:41.010000"],["2024-07-24T19:07:42.010000"],["2024-07-24T19:07:43.010000"],["2024-07-24T19:07:44.010000"],["2024-07-24T19:07:45.010000"],["2024-07-24T19:07:46.010000"],["2024-07-24T19:07:47.010000"],["2024-07-24T19:07:48.010000"],["2024-07-24T19:07:49.010000"],["2024-07-24T19:07:50.010000"],["2024-07-24T19:07:51.010000"],["2024-07-24T19:07:52.010000"],["2024-07-24T19:07:53.010000"],["2024-07-24T19:07:54.010000"],["2024-07-24T19:07:55.010000"],["2024-07-24T19:07:56.010000"],["2024-07-24T19:07:57.010000"],["2024-07-24T19:07:58.010000"],["2024-07-24T19:07:59.010000"],["2024-07-24T19:08:00.010000"],["2024-07-24T19:08:01.010000"],["2024-07-24T19:08:02.010000"],["2024-07-24T19:08:03.010000"],["2024-07-24T19:08:04.010000"],["2024-07-24T19:08:05.010000"],["2024-07-24T19:08:06.010000"],["2024-07-24T19:08:07.010000"],["2024-07-24T19:08:08.010000"],["2024-07-24T19:08:09.010000"],["2024-07-24T19:08:10.010000"],["2024-07-24T19:08:11.010000"],["2024-07-24T19:08:12.010000"],["2024-07-24T19:08:13.010000"],["2024-07-24T19:08:14.010000"],["2024-07-24T19:08:15.010000"],["2024-07-24T19:08:16.010000"],["2024-07-24T19:08:17.010000"],["2024-07-24T19:08:18.010000"],["2024-07-24T19:08:19.010000"],["2024-07-24T19:08:20.010000"],["2024-07-24T19:08:21.010000"],["2024-07-24T19:08:22.010000"],["2024-07-24T19:08:23.010000"],["2024-07-24T19:08:24.010000"],["2024-07-24T19:08:25.010000"],["2024-07-24T19:08:26.010000"],["2024-07-24T19:08:27.010000"],["2024-07-24T19:08:28.010000"],["2024-07-24T19:08:29.010000"],["2024-07-24T19:08:30.010000"],["2024-07-24T19:08:31.010000"],["2024-07-24T19:08:32.010000"],["2024-07-24T19:08:33.010000"],["2024-07-24T19:08:34.010000"],["2024-07-24T19:08:35.010000"],["2024-07-24T19:08:36.010000"],["2024-07-24T19:08:37.010000"],["2024-07-24T19:08:38.010000"],["2024-07-24T19:08:39.010000"],["2024-07-24T19:08:40.010000"],["2024-07-24T19:08:41.010000"],["2024-07-24T19:08:42.010000"],["2024-07-24T19:08:43.010000"],["2024-07-24T19:08:44.010000"],["2024-07-24T19:08:45.010000"],["2024-07-24T19:08:46.010000"],["2024-07-24T19:08:47.010000"],["2024-07-24T19:08:48.010000"],["2024-07-24T19:08:49.010000"],["2024-07-24T19:08:50.010000"],["2024-07-24T19:08:51.010000"],["2024-07-24T19:08:52.010000"],["2024-07-24T19:08:53.010000"],["2024-07-24T19:08:54.010000"],["2024-07-24T19:08:55.010000"],["2024-07-24T19:08:56.010000"],["2024-07-24T19:08:57.010000"],["2024-07-24T19:08:58.010000"],["2024-07-24T19:08:59.010000"],["2024-07-24T19:09:00.010000"],["2024-07-24T19:09:01.010000"],["2024-07-24T19:09:02.010000"],["2024-07-24T19:09:03.010000"],["2024-07-24T19:09:04.010000"],["2024-07-24T19:09:05.010000"],["2024-07-24T19:09:06.010000"],["2024-07-24T19:09:07.010000"],["2024-07-24T19:09:08.010000"],["2024-07-24T19:09:09.010000"],["2024-07-24T19:09:10.010000"],["2024-07-24T19:09:11.010000"],["2024-07-24T19:09:12.010000"],["2024-07-24T19:09:13.010000"],["2024-07-24T19:09:14.010000"],["2024-07-24T19:09:15.010000"],["2024-07-24T19:09:16.010000"],["2024-07-24T19:09:17.010000"],["2024-07-24T19:09:18.010000"],["2024-07-24T19:09:19.010000"],["2024-07-24T19:09:20.010000"],["2024-07-24T19:09:21.010000"],["2024-07-24T19:09:22.010000"],["2024-07-24T19:09:23.010000"],["2024-07-24T19:09:24.010000"],["2024-07-24T19:09:25.010000"],["2024-07-24T19:09:26.010000"],["2024-07-24T19:09:27.010000"],["2024-07-24T19:09:28.010000"],["2024-07-24T19:09:29.010000"],["2024-07-24T19:09:30.010000"],["2024-07-24T19:09:31.010000"],["2024-07-24T19:09:32.010000"],["2024-07-24T19:09:33.010000"],["2024-07-24T19:09:34.010000"],["2024-07-24T19:09:35.010000"],["2024-07-24T19:09:36.010000"],["2024-07-24T19:09:37.010000"],["2024-07-24T19:09:38.010000"],["2024-07-24T19:09:39.010000"],["2024-07-24T19:09:40.010000"],["2024-07-24T19:09:41.010000"],["2024-07-24T19:09:42.010000"],["2024-07-24T19:09:43.010000"],["2024-07-24T19:09:44.010000"],["2024-07-24T19:09:45.010000"],["2024-07-24T19:09:46.010000"],["2024-07-24T19:09:47.010000"],["2024-07-24T19:09:48.010000"],["2024-07-24T19:09:49.010000"],["2024-07-24T19:09:50.010000"],["2024-07-24T19:09:51.010000"],["2024-07-24T19:09:52.010000"],["2024-07-24T19:09:53.010000"],["2024-07-24T19:09:54.010000"],["2024-07-24T19:09:55.010000"],["2024-07-24T19:09:56.010000"],["2024-07-24T19:09:57.010000"],["2024-07-24T19:09:58.010000"],["2024-07-24T19:09:59.010000"],["2024-07-24T19:10:00.010000"],["2024-07-24T19:10:01.010000"],["2024-07-24T19:10:02.010000"],["2024-07-24T19:10:03.010000"],["2024-07-24T19:10:04.010000"],["2024-07-24T19:10:05.010000"],["2024-07-24T19:10:06.010000"],["2024-07-24T19:10:07.010000"],["2024-07-24T19:10:08.010000"],["2024-07-24T19:10:09.010000"],["2024-07-24T19:10:10.010000"],["2024-07-24T19:10:11.010000"],["2024-07-24T19:10:12.010000"],["2024-07-24T19:10:13.010000"],["2024-07-24T19:10:14.010000"],["2024-07-24T19:10:15.010000"],["2024-07-24T19:10:16.010000"],["2024-07-24T19:10:17.010000"],["2024-07-24T19:10:18.010000"],["2024-07-24T19:10:19.010000"],["2024-07-24T19:10:20.010000"],["2024-07-24T19:10:21.010000"],["2024-07-24T19:10:22.010000"],["2024-07-24T19:10:23.010000"],["2024-07-24T19:10:24.010000"],["2024-07-24T19:10:25.010000"],["2024-07-24T19:10:26.010000"],["2024-07-24T19:10:27.010000"],["2024-07-24T19:10:28.010000"],["2024-07-24T19:10:29.010000"],["2024-07-24T19:10:30.010000"],["2024-07-24T19:10:31.010000"],["2024-07-24T19:10:32.010000"],["2024-07-24T19:10:33.010000"],["2024-07-24T19:10:34.010000"],["2024-07-24T19:10:35.010000"],["2024-07-24T19:10:36.010000"],["2024-07-24T19:10:37.010000"],["2024-07-24T19:10:38.010000"],["2024-07-24T19:10:39.010000"],["2024-07-24T19:10:40.010000"],["2024-07-24T19:10:41.010000"],["2024-07-24T19:10:42.010000"],["2024-07-24T19:10:43.010000"],["2024-07-24T19:10:44.010000"],["2024-07-24T19:10:45.010000"],["2024-07-24T19:10:46.010000"],["2024-07-24T19:10:47.010000"],["2024-07-24T19:10:48.010000"],["2024-07-24T19:10:49.010000"],["2024-07-24T19:10:50.010000"],["2024-07-24T19:10:51.010000"],["2024-07-24T19:10:52.010000"],["2024-07-24T19:10:53.010000"],["2024-07-24T19:10:54.010000"],["2024-07-24T19:10:55.010000"],["2024-07-24T19:10:56.010000"],["2024-07-24T19:10:57.010000"],["2024-07-24T19:10:58.010000"],["2024-07-24T19:10:59.010000"],["2024-07-24T19:11:00.010000"],["2024-07-24T19:11:01.010000"],["2024-07-24T19:11:02.010000"],["2024-07-24T19:11:03.010000"],["2024-07-24T19:11:04.010000"],["2024-07-24T19:11:05.010000"],["2024-07-24T19:11:06.010000"],["2024-07-24T19:11:07.010000"],["2024-07-24T19:11:08.010000"],["2024-07-24T19:11:09.010000"],["2024-07-24T19:11:10.010000"],["2024-07-24T19:11:11.010000"],["2024-07-24T19:11:12.010000"],["2024-07-24T19:11:13.010000"],["2024-07-24T19:11:14.010000"],["2024-07-24T19:11:15.010000"],["2024-07-24T19:11:16.010000"],["2024-07-24T19:11:17.010000"],["2024-07-24T19:11:18.010000"],["2024-07-24T19:11:19.010000"],["2024-07-24T19:11:20.010000"],["2024-07-24T19:11:21.010000"],["2024-07-24T19:11:22.010000"],["2024-07-24T19:11:23.010000"],["2024-07-24T19:11:24.010000"],["2024-07-24T19:11:25.010000"],["2024-07-24T19:11:26.010000"],["2024-07-24T19:11:27.010000"],["2024-07-24T19:11:28.010000"],["2024-07-24T19:11:29.010000"],["2024-07-24T19:11:30.010000"],["2024-07-24T19:11:31.010000"],["2024-07-24T19:11:32.010000"],["2024-07-24T19:11:33.010000"],["2024-07-24T19:11:34.010000"],["2024-07-24T19:11:35.010000"],["2024-07-24T19:11:36.010000"],["2024-07-24T19:11:37.010000"],["2024-07-24T19:11:38.010000"],["2024-07-24T19:11:39.010000"],["2024-07-24T19:11:40.010000"],["2024-07-24T19:11:41.010000"],["2024-07-24T19:11:42.010000"],["2024-07-24T19:11:43.010000"],["2024-07-24T19:11:44.010000"],["2024-07-24T19:11:45.010000"],["2024-07-24T19:11:46.010000"],["2024-07-24T19:11:47.010000"],["2024-07-24T19:11:48.010000"],["2024-07-24T19:11:49.010000"],["2024-07-24T19:11:50.010000"],["2024-07-24T19:11:51.010000"],["2024-07-24T19:11:52.010000"],["2024-07-24T19:11:53.010000"],["2024-07-24T19:11:54.010000"],["2024-07-24T19:11:55.010000"],["2024-07-24T19:11:56.010000"],["2024-07-24T19:11:57.010000"],["2024-07-24T19:11:58.010000"],["2024-07-24T19:11:59.010000"],["2024-07-24T19:12:00.010000"],["2024-07-24T19:12:01.010000"],["2024-07-24T19:12:02.010000"],["2024-07-24T19:12:03.010000"],["2024-07-24T19:12:04.010000"],["2024-07-24T19:12:05.010000"],["2024-07-24T19:12:06.010000"],["2024-07-24T19:12:07.010000"],["2024-07-24T19:12:08.010000"],["2024-07-24T19:12:09.010000"],["2024-07-24T19:12:10.010000"],["2024-07-24T19:12:11.010000"],["2024-07-24T19:12:12.010000"],["2024-07-24T19:12:13.010000"],["2024-07-24T19:12:14.010000"],["2024-07-24T19:12:15.010000"],["2024-07-24T19:12:16.010000"],["2024-07-24T19:12:17.010000"],["2024-07-24T19:12:18.010000"],["2024-07-24T19:12:19.010000"],["2024-07-24T19:12:20.010000"],["2024-07-24T19:12:21.010000"],["2024-07-24T19:12:22.010000"],["2024-07-24T19:12:23.010000"],["2024-07-24T19:12:24.010000"],["2024-07-24T19:12:25.010000"],["2024-07-24T19:12:26.010000"],["2024-07-24T19:12:27.010000"],["2024-07-24T19:12:28.010000"],["2024-07-24T19:12:29.010000"],["2024-07-24T19:12:30.010000"],["2024-07-24T19:12:31.010000"],["2024-07-24T19:12:32.010000"],["2024-07-24T19:12:33.010000"],["2024-07-24T19:12:34.010000"],["2024-07-24T19:12:35.010000"],["2024-07-24T19:12:36.010000"],["2024-07-24T19:12:37.010000"],["2024-07-24T19:12:38.010000"],["2024-07-24T19:12:39.010000"],["2024-07-24T19:12:40.010000"],["2024-07-24T19:12:41.010000"],["2024-07-24T19:12:42.010000"],["2024-07-24T19:12:43.010000"],["2024-07-24T19:12:44.010000"],["2024-07-24T19:12:45.010000"],["2024-07-24T19:12:46.010000"],["2024-07-24T19:12:47.010000"],["2024-07-24T19:12:48.010000"],["2024-07-24T19:12:49.010000"],["2024-07-24T19:12:50.010000"],["2024-07-24T19:12:51.010000"],["2024-07-24T19:12:52.010000"],["2024-07-24T19:12:53.010000"],["2024-07-24T19:12:54.010000"],["2024-07-24T19:12:55.010000"],["2024-07-24T19:12:56.010000"],["2024-07-24T19:12:57.010000"],["2024-07-24T19:12:58.010000"],["2024-07-24T19:12:59.010000"],["2024-07-24T19:13:00.010000"],["2024-07-24T19:13:01.010000"],["2024-07-24T19:13:02.010000"],["2024-07-24T19:13:03.010000"],["2024-07-24T19:13:04.010000"],["2024-07-24T19:13:05.010000"],["2024-07-24T19:13:06.010000"],["2024-07-24T19:13:07.010000"],["2024-07-24T19:13:08.010000"],["2024-07-24T19:13:09.010000"],["2024-07-24T19:13:10.010000"],["2024-07-24T19:13:11.010000"],["2024-07-24T19:13:12.010000"],["2024-07-24T19:13:13.010000"],["2024-07-24T19:13:14.010000"],["2024-07-24T19:13:15.010000"],["2024-07-24T19:13:16.010000"],["2024-07-24T19:13:17.010000"],["2024-07-24T19:13:18.010000"],["2024-07-24T19:13:19.010000"],["2024-07-24T19:13:20.010000"],["2024-07-24T19:13:21.010000"],["2024-07-24T19:13:22.010000"],["2024-07-24T19:13:23.010000"],["2024-07-24T19:13:24.010000"],["2024-07-24T19:13:25.010000"],["2024-07-24T19:13:26.010000"],["2024-07-24T19:13:27.010000"],["2024-07-24T19:13:28.010000"],["2024-07-24T19:13:29.010000"],["2024-07-24T19:13:30.010000"],["2024-07-24T19:13:31.010000"],["2024-07-24T19:13:32.010000"],["2024-07-24T19:13:33.010000"],["2024-07-24T19:13:34.010000"],["2024-07-24T19:13:35.010000"],["2024-07-24T19:13:36.010000"],["2024-07-24T19:13:37.010000"],["2024-07-24T19:13:38.010000"],["2024-07-24T19:13:39.010000"],["2024-07-24T19:13:40.010000"],["2024-07-24T19:13:41.010000"],["2024-07-24T19:13:42.010000"],["2024-07-24T19:13:43.010000"],["2024-07-24T19:13:44.010000"],["2024-07-24T19:13:45.010000"],["2024-07-24T19:13:46.010000"],["2024-07-24T19:13:47.010000"],["2024-07-24T19:13:48.010000"],["2024-07-24T19:13:49.010000"],["2024-07-24T19:13:50.010000"],["2024-07-24T19:13:51.010000"],["2024-07-24T19:13:52.010000"],["2024-07-24T19:13:53.010000"],["2024-07-24T19:13:54.010000"],["2024-07-24T19:13:55.010000"],["2024-07-24T19:13:56.010000"],["2024-07-24T19:13:57.010000"],["2024-07-24T19:13:58.010000"],["2024-07-24T19:13:59.010000"],["2024-07-24T19:14:00.010000"],["2024-07-24T19:14:01.010000"],["2024-07-24T19:14:02.010000"],["2024-07-24T19:14:03.010000"],["2024-07-24T19:14:04.010000"],["2024-07-24T19:14:05.010000"],["2024-07-24T19:14:06.010000"],["2024-07-24T19:14:07.010000"],["2024-07-24T19:14:08.010000"],["2024-07-24T19:14:09.010000"],["2024-07-24T19:14:10.010000"],["2024-07-24T19:14:11.010000"],["2024-07-24T19:14:12.010000"],["2024-07-24T19:14:13.010000"],["2024-07-24T19:14:14.010000"],["2024-07-24T19:14:15.010000"],["2024-07-24T19:14:16.010000"],["2024-07-24T19:14:17.010000"],["2024-07-24T19:14:18.010000"],["2024-07-24T19:14:19.010000"],["2024-07-24T19:14:20.010000"],["2024-07-24T19:14:21.010000"],["2024-07-24T19:14:22.010000"],["2024-07-24T19:14:23.010000"],["2024-07-24T19:14:24.010000"],["2024-07-24T19:14:25.010000"],["2024-07-24T19:14:26.010000"],["2024-07-24T19:14:27.010000"],["2024-07-24T19:14:28.010000"],["2024-07-24T19:14:29.010000"],["2024-07-24T19:14:30.010000"],["2024-07-24T19:14:31.010000"],["2024-07-24T19:14:32.010000"],["2024-07-24T19:14:33.010000"],["2024-07-24T19:14:34.010000"],["2024-07-24T19:14:35.010000"],["2024-07-24T19:14:36.010000"],["2024-07-24T19:14:37.010000"],["2024-07-24T19:14:38.010000"],["2024-07-24T19:14:39.010000"],["2024-07-24T19:14:40.010000"],["2024-07-24T19:14:41.010000"],["2024-07-24T19:14:42.010000"],["2024-07-24T19:14:43.010000"],["2024-07-24T19:14:44.010000"],["2024-07-24T19:14:45.010000"],["2024-07-24T19:14:46.010000"],["2024-07-24T19:14:47.010000"],["2024-07-24T19:14:48.010000"],["2024-07-24T19:14:49.010000"],["2024-07-24T19:14:50.010000"],["2024-07-24T19:14:51.010000"],["2024-07-24T19:14:52.010000"],["2024-07-24T19:14:53.010000"],["2024-07-24T19:14:54.010000"],["2024-07-24T19:14:55.010000"],["2024-07-24T19:14:56.010000"],["2024-07-24T19:14:57.010000"],["2024-07-24T19:14:58.010000"],["2024-07-24T19:14:59.010000"],["2024-07-24T19:15:00.010000"],["2024-07-24T19:15:01.010000"],["2024-07-24T19:15:02.010000"],["2024-07-24T19:15:03.010000"],["2024-07-24T19:15:04.010000"],["2024-07-24T19:15:05.010000"],["2024-07-24T19:15:06.010000"],["2024-07-24T19:15:07.010000"],["2024-07-24T19:15:08.010000"],["2024-07-24T19:15:09.010000"],["2024-07-24T19:15:10.010000"],["2024-07-24T19:15:11.010000"],["2024-07-24T19:15:12.010000"],["2024-07-24T19:15:13.010000"],["2024-07-24T19:15:14.010000"],["2024-07-24T19:15:15.010000"],["2024-07-24T19:15:16.010000"],["2024-07-24T19:15:17.010000"],["2024-07-24T19:15:18.010000"],["2024-07-24T19:15:19.010000"],["2024-07-24T19:15:20.010000"],["2024-07-24T19:15:21.010000"],["2024-07-24T19:15:22.010000"],["2024-07-24T19:15:23.010000"],["2024-07-24T19:15:24.010000"],["2024-07-24T19:15:25.010000"],["2024-07-24T19:15:26.010000"],["2024-07-24T19:15:27.010000"],["2024-07-24T19:15:28.010000"],["2024-07-24T19:15:29.010000"],["2024-07-24T19:15:30.010000"],["2024-07-24T19:15:31.010000"],["2024-07-24T19:15:32.010000"],["2024-07-24T19:15:33.010000"],["2024-07-24T19:15:34.010000"],["2024-07-24T19:15:35.010000"],["2024-07-24T19:15:36.010000"],["2024-07-24T19:15:37.010000"],["2024-07-24T19:15:38.010000"],["2024-07-24T19:15:39.010000"],["2024-07-24T19:15:40.010000"],["2024-07-24T19:15:41.010000"],["2024-07-24T19:15:42.010000"],["2024-07-24T19:15:43.010000"],["2024-07-24T19:15:44.010000"],["2024-07-24T19:15:45.010000"],["2024-07-24T19:15:46.010000"],["2024-07-24T19:15:47.010000"],["2024-07-24T19:15:48.010000"],["2024-07-24T19:15:49.010000"],["2024-07-24T19:15:50.010000"],["2024-07-24T19:15:51.010000"],["2024-07-24T19:15:52.010000"],["2024-07-24T19:15:53.010000"],["2024-07-24T19:15:54.010000"],["2024-07-24T19:15:55.010000"],["2024-07-24T19:15:56.010000"],["2024-07-24T19:15:57.010000"],["2024-07-24T19:15:58.010000"],["2024-07-24T19:15:59.010000"],["2024-07-24T19:16:00.010000"],["2024-07-24T19:16:01.010000"],["2024-07-24T19:16:02.010000"],["2024-07-24T19:16:03.010000"],["2024-07-24T19:16:04.010000"],["2024-07-24T19:16:05.010000"],["2024-07-24T19:16:06.010000"],["2024-07-24T19:16:07.010000"],["2024-07-24T19:16:08.010000"],["2024-07-24T19:16:09.010000"],["2024-07-24T19:16:10.010000"],["2024-07-24T19:16:11.010000"],["2024-07-24T19:16:12.010000"],["2024-07-24T19:16:13.010000"],["2024-07-24T19:16:14.010000"],["2024-07-24T19:16:15.010000"],["2024-07-24T19:16:16.010000"],["2024-07-24T19:16:17.010000"],["2024-07-24T19:16:18.010000"],["2024-07-24T19:16:19.010000"],["2024-07-24T19:16:20.010000"],["2024-07-24T19:16:21.010000"],["2024-07-24T19:16:22.010000"],["2024-07-24T19:16:23.010000"],["2024-07-24T19:16:24.010000"],["2024-07-24T19:16:25.010000"],["2024-07-24T19:16:26.010000"],["2024-07-24T19:16:27.010000"],["2024-07-24T19:16:28.010000"],["2024-07-24T19:16:29.010000"],["2024-07-24T19:16:30.010000"],["2024-07-24T19:16:31.010000"],["2024-07-24T19:16:32.010000"],["2024-07-24T19:16:33.010000"],["2024-07-24T19:16:34.010000"],["2024-07-24T19:16:35.010000"],["2024-07-24T19:16:36.010000"],["2024-07-24T19:16:37.010000"],["2024-07-24T19:16:38.010000"],["2024-07-24T19:16:39.010000"],["2024-07-24T19:16:40.010000"],["2024-07-24T19:16:41.010000"],["2024-07-24T19:16:42.010000"],["2024-07-24T19:16:43.010000"],["2024-07-24T19:16:44.010000"],["2024-07-24T19:16:45.010000"],["2024-07-24T19:16:46.010000"],["2024-07-24T19:16:47.010000"],["2024-07-24T19:16:48.010000"],["2024-07-24T19:16:49.010000"],["2024-07-24T19:16:50.010000"],["2024-07-24T19:16:51.010000"],["2024-07-24T19:16:52.010000"],["2024-07-24T19:16:53.010000"],["2024-07-24T19:16:54.010000"],["2024-07-24T19:16:55.010000"],["2024-07-24T19:16:56.010000"],["2024-07-24T19:16:57.010000"],["2024-07-24T19:16:58.010000"],["2024-07-24T19:16:59.010000"],["2024-07-24T19:17:00.010000"],["2024-07-24T19:17:01.010000"],["2024-07-24T19:17:02.010000"],["2024-07-24T19:17:03.010000"],["2024-07-24T19:17:04.010000"],["2024-07-24T19:17:05.010000"],["2024-07-24T19:17:06.010000"],["2024-07-24T19:17:07.010000"],["2024-07-24T19:17:08.010000"],["2024-07-24T19:17:09.010000"],["2024-07-24T19:17:10.010000"],["2024-07-24T19:17:11.010000"],["2024-07-24T19:17:12.010000"],["2024-07-24T19:17:13.010000"],["2024-07-24T19:17:14.010000"],["2024-07-24T19:17:15.010000"],["2024-07-24T19:17:16.010000"],["2024-07-24T19:17:17.010000"],["2024-07-24T19:17:18.010000"],["2024-07-24T19:17:19.010000"],["2024-07-24T19:17:20.010000"],["2024-07-24T19:17:21.010000"],["2024-07-24T19:17:22.010000"],["2024-07-24T19:17:23.010000"],["2024-07-24T19:17:24.010000"],["2024-07-24T19:17:25.010000"],["2024-07-24T19:17:26.010000"],["2024-07-24T19:17:27.010000"],["2024-07-24T19:17:28.010000"],["2024-07-24T19:17:29.010000"],["2024-07-24T19:17:30.010000"],["2024-07-24T19:17:31.010000"],["2024-07-24T19:17:32.010000"],["2024-07-24T19:17:33.010000"],["2024-07-24T19:17:34.010000"],["2024-07-24T19:17:35.010000"],["2024-07-24T19:17:36.010000"],["2024-07-24T19:17:37.010000"],["2024-07-24T19:17:38.010000"],["2024-07-24T19:17:39.010000"],["2024-07-24T19:17:40.010000"],["2024-07-24T19:17:41.010000"],["2024-07-24T19:17:42.010000"],["2024-07-24T19:17:43.010000"],["2024-07-24T19:17:44.010000"],["2024-07-24T19:17:45.010000"],["2024-07-24T19:17:46.010000"],["2024-07-24T19:17:47.010000"],["2024-07-24T19:17:48.010000"],["2024-07-24T19:17:49.010000"],["2024-07-24T19:17:50.010000"],["2024-07-24T19:17:51.010000"],["2024-07-24T19:17:52.010000"],["2024-07-24T19:17:53.010000"],["2024-07-24T19:17:54.010000"],["2024-07-24T19:17:55.010000"],["2024-07-24T19:17:56.010000"],["2024-07-24T19:17:57.010000"],["2024-07-24T19:17:58.010000"],["2024-07-24T19:17:59.010000"],["2024-07-24T19:18:00.010000"],["2024-07-24T19:18:01.010000"],["2024-07-24T19:18:02.010000"],["2024-07-24T19:18:03.010000"],["2024-07-24T19:18:04.010000"],["2024-07-24T19:18:05.010000"],["2024-07-24T19:18:06.010000"],["2024-07-24T19:18:07.010000"],["2024-07-24T19:18:08.010000"],["2024-07-24T19:18:09.010000"],["2024-07-24T19:18:10.010000"],["2024-07-24T19:18:11.010000"],["2024-07-24T19:18:12.010000"],["2024-07-24T19:18:13.010000"],["2024-07-24T19:18:14.010000"],["2024-07-24T19:18:15.010000"],["2024-07-24T19:18:16.010000"],["2024-07-24T19:18:17.010000"],["2024-07-24T19:18:18.010000"],["2024-07-24T19:18:19.010000"],["2024-07-24T19:18:20.010000"],["2024-07-24T19:18:21.010000"],["2024-07-24T19:18:22.010000"],["2024-07-24T19:18:23.010000"],["2024-07-24T19:18:24.010000"],["2024-07-24T19:18:25.010000"],["2024-07-24T19:18:26.010000"],["2024-07-24T19:18:27.010000"],["2024-07-24T19:18:28.010000"],["2024-07-24T19:18:29.010000"],["2024-07-24T19:18:30.010000"],["2024-07-24T19:18:31.010000"],["2024-07-24T19:18:32.010000"],["2024-07-24T19:18:33.010000"],["2024-07-24T19:18:34.010000"],["2024-07-24T19:18:35.010000"],["2024-07-24T19:18:36.010000"],["2024-07-24T19:18:37.010000"],["2024-07-24T19:18:38.010000"],["2024-07-24T19:18:39.010000"],["2024-07-24T19:18:40.010000"],["2024-07-24T19:18:41.010000"],["2024-07-24T19:18:42.010000"],["2024-07-24T19:18:43.010000"],["2024-07-24T19:18:44.010000"],["2024-07-24T19:18:45.010000"],["2024-07-24T19:18:46.010000"],["2024-07-24T19:18:47.010000"],["2024-07-24T19:18:48.010000"],["2024-07-24T19:18:49.010000"],["2024-07-24T19:18:50.010000"],["2024-07-24T19:18:51.010000"],["2024-07-24T19:18:52.010000"],["2024-07-24T19:18:53.010000"],["2024-07-24T19:18:54.010000"],["2024-07-24T19:18:55.010000"],["2024-07-24T19:18:56.010000"],["2024-07-24T19:18:57.010000"],["2024-07-24T19:18:58.010000"],["2024-07-24T19:18:59.010000"],["2024-07-24T19:19:00.010000"],["2024-07-24T19:19:01.010000"],["2024-07-24T19:19:02.010000"],["2024-07-24T19:19:03.010000"],["2024-07-24T19:19:04.010000"],["2024-07-24T19:19:05.010000"],["2024-07-24T19:19:06.010000"],["2024-07-24T19:19:07.010000"],["2024-07-24T19:19:08.010000"],["2024-07-24T19:19:09.010000"],["2024-07-24T19:19:10.010000"],["2024-07-24T19:19:11.010000"],["2024-07-24T19:19:12.010000"],["2024-07-24T19:19:13.010000"],["2024-07-24T19:19:14.010000"],["2024-07-24T19:19:15.010000"],["2024-07-24T19:19:16.010000"],["2024-07-24T19:19:17.010000"],["2024-07-24T19:19:18.010000"],["2024-07-24T19:19:19.010000"],["2024-07-24T19:19:20.010000"],["2024-07-24T19:19:21.010000"],["2024-07-24T19:19:22.010000"],["2024-07-24T19:19:23.010000"],["2024-07-24T19:19:24.010000"],["2024-07-24T19:19:25.010000"],["2024-07-24T19:19:26.010000"],["2024-07-24T19:19:27.010000"],["2024-07-24T19:19:28.010000"],["2024-07-24T19:19:29.010000"],["2024-07-24T19:19:30.010000"],["2024-07-24T19:19:31.010000"],["2024-07-24T19:19:32.010000"],["2024-07-24T19:19:33.010000"],["2024-07-24T19:19:34.010000"],["2024-07-24T19:19:35.010000"],["2024-07-24T19:19:36.010000"],["2024-07-24T19:19:37.010000"],["2024-07-24T19:19:38.010000"],["2024-07-24T19:19:39.010000"],["2024-07-24T19:19:40.010000"],["2024-07-24T19:19:41.010000"],["2024-07-24T19:19:42.010000"],["2024-07-24T19:19:43.010000"],["2024-07-24T19:19:44.010000"],["2024-07-24T19:19:45.010000"],["2024-07-24T19:19:46.010000"],["2024-07-24T19:19:47.010000"],["2024-07-24T19:19:48.010000"],["2024-07-24T19:19:49.010000"],["2024-07-24T19:19:50.010000"],["2024-07-24T19:19:51.010000"],["2024-07-24T19:19:52.010000"],["2024-07-24T19:19:53.010000"],["2024-07-24T19:19:54.010000"],["2024-07-24T19:19:55.010000"],["2024-07-24T19:19:56.010000"],["2024-07-24T19:19:57.010000"],["2024-07-24T19:19:58.010000"],["2024-07-24T19:19:59.010000"],["2024-07-24T19:20:00.010000"],["2024-07-24T19:20:01.010000"],["2024-07-24T19:20:02.010000"],["2024-07-24T19:20:03.010000"],["2024-07-24T19:20:04.010000"],["2024-07-24T19:20:05.010000"],["2024-07-24T19:20:06.010000"],["2024-07-24T19:20:07.010000"],["2024-07-24T19:20:08.010000"],["2024-07-24T19:20:09.010000"],["2024-07-24T19:20:10.010000"],["2024-07-24T19:20:11.010000"],["2024-07-24T19:20:12.010000"],["2024-07-24T19:20:13.010000"],["2024-07-24T19:20:14.010000"],["2024-07-24T19:20:15.010000"],["2024-07-24T19:20:16.010000"],["2024-07-24T19:20:17.010000"],["2024-07-24T19:20:18.010000"],["2024-07-24T19:20:19.010000"],["2024-07-24T19:20:20.010000"],["2024-07-24T19:20:21.010000"],["2024-07-24T19:20:22.010000"],["2024-07-24T19:20:23.010000"],["2024-07-24T19:20:24.010000"],["2024-07-24T19:20:25.010000"],["2024-07-24T19:20:26.010000"],["2024-07-24T19:20:27.010000"],["2024-07-24T19:20:28.010000"],["2024-07-24T19:20:29.010000"],["2024-07-24T19:20:30.010000"],["2024-07-24T19:20:31.010000"],["2024-07-24T19:20:32.010000"],["2024-07-24T19:20:33.010000"],["2024-07-24T19:20:34.010000"],["2024-07-24T19:20:35.010000"],["2024-07-24T19:20:36.010000"],["2024-07-24T19:20:37.010000"],["2024-07-24T19:20:38.010000"],["2024-07-24T19:20:39.010000"],["2024-07-24T19:20:40.010000"],["2024-07-24T19:20:41.010000"],["2024-07-24T19:20:42.010000"],["2024-07-24T19:20:43.010000"],["2024-07-24T19:20:44.010000"],["2024-07-24T19:20:45.010000"],["2024-07-24T19:20:46.010000"],["2024-07-24T19:20:47.010000"],["2024-07-24T19:20:48.010000"],["2024-07-24T19:20:49.010000"],["2024-07-24T19:20:50.010000"],["2024-07-24T19:20:51.010000"],["2024-07-24T19:20:52.010000"],["2024-07-24T19:20:53.010000"],["2024-07-24T19:20:54.010000"],["2024-07-24T19:20:55.010000"],["2024-07-24T19:20:56.010000"],["2024-07-24T19:20:57.010000"],["2024-07-24T19:20:58.010000"],["2024-07-24T19:20:59.010000"],["2024-07-24T19:21:00.010000"],["2024-07-24T19:21:01.010000"],["2024-07-24T19:21:02.010000"],["2024-07-24T19:21:03.010000"],["2024-07-24T19:21:04.010000"],["2024-07-24T19:21:05.010000"],["2024-07-24T19:21:06.010000"],["2024-07-24T19:21:07.010000"],["2024-07-24T19:21:08.010000"],["2024-07-24T19:21:09.010000"],["2024-07-24T19:21:10.010000"],["2024-07-24T19:21:11.010000"],["2024-07-24T19:21:12.010000"],["2024-07-24T19:21:13.010000"],["2024-07-24T19:21:14.010000"],["2024-07-24T19:21:15.010000"],["2024-07-24T19:21:16.010000"],["2024-07-24T19:21:17.010000"],["2024-07-24T19:21:18.010000"],["2024-07-24T19:21:19.010000"],["2024-07-24T19:21:20.010000"],["2024-07-24T19:21:21.010000"],["2024-07-24T19:21:22.010000"],["2024-07-24T19:21:23.010000"],["2024-07-24T19:21:24.010000"],["2024-07-24T19:21:25.010000"],["2024-07-24T19:21:26.010000"],["2024-07-24T19:21:27.010000"],["2024-07-24T19:21:28.010000"],["2024-07-24T19:21:29.010000"],["2024-07-24T19:21:30.010000"],["2024-07-24T19:21:31.010000"],["2024-07-24T19:21:32.010000"],["2024-07-24T19:21:33.010000"],["2024-07-24T19:21:34.010000"],["2024-07-24T19:21:35.010000"],["2024-07-24T19:21:36.010000"],["2024-07-24T19:21:37.010000"],["2024-07-24T19:21:38.010000"],["2024-07-24T19:21:39.010000"],["2024-07-24T19:21:40.010000"],["2024-07-24T19:21:41.010000"],["2024-07-24T19:21:42.010000"],["2024-07-24T19:21:43.010000"],["2024-07-24T19:21:44.010000"],["2024-07-24T19:21:45.010000"],["2024-07-24T19:21:46.010000"],["2024-07-24T19:21:47.010000"],["2024-07-24T19:21:48.010000"],["2024-07-24T19:21:49.010000"],["2024-07-24T19:21:50.010000"],["2024-07-24T19:21:51.010000"],["2024-07-24T19:21:52.010000"],["2024-07-24T19:21:53.010000"],["2024-07-24T19:21:54.010000"],["2024-07-24T19:21:55.010000"],["2024-07-24T19:21:56.010000"],["2024-07-24T19:21:57.010000"],["2024-07-24T19:21:58.010000"],["2024-07-24T19:21:59.010000"],["2024-07-24T19:22:00.010000"],["2024-07-24T19:22:01.010000"],["2024-07-24T19:22:02.010000"],["2024-07-24T19:22:03.010000"],["2024-07-24T19:22:04.010000"],["2024-07-24T19:22:05.010000"],["2024-07-24T19:22:06.010000"],["2024-07-24T19:22:07.010000"],["2024-07-24T19:22:08.010000"],["2024-07-24T19:22:09.010000"],["2024-07-24T19:22:10.010000"],["2024-07-24T19:22:11.010000"],["2024-07-24T19:22:12.010000"],["2024-07-24T19:22:13.010000"],["2024-07-24T19:22:14.010000"],["2024-07-24T19:22:15.010000"],["2024-07-24T19:22:16.010000"],["2024-07-24T19:22:17.010000"],["2024-07-24T19:22:18.010000"],["2024-07-24T19:22:19.010000"],["2024-07-24T19:22:20.010000"],["2024-07-24T19:22:21.010000"],["2024-07-24T19:22:22.010000"],["2024-07-24T19:22:23.010000"],["2024-07-24T19:22:24.010000"],["2024-07-24T19:22:25.010000"],["2024-07-24T19:22:26.010000"],["2024-07-24T19:22:27.010000"],["2024-07-24T19:22:28.010000"],["2024-07-24T19:22:29.010000"],["2024-07-24T19:22:30.010000"],["2024-07-24T19:22:31.010000"],["2024-07-24T19:22:32.010000"],["2024-07-24T19:22:33.010000"],["2024-07-24T19:22:34.010000"],["2024-07-24T19:22:35.010000"],["2024-07-24T19:22:36.010000"],["2024-07-24T19:22:37.010000"],["2024-07-24T19:22:38.010000"],["2024-07-24T19:22:39.010000"],["2024-07-24T19:22:40.010000"],["2024-07-24T19:22:41.010000"],["2024-07-24T19:22:42.010000"],["2024-07-24T19:22:43.010000"],["2024-07-24T19:22:44.010000"],["2024-07-24T19:22:45.010000"],["2024-07-24T19:22:46.010000"],["2024-07-24T19:22:47.010000"],["2024-07-24T19:22:48.010000"],["2024-07-24T19:22:49.010000"],["2024-07-24T19:22:50.010000"],["2024-07-24T19:22:51.010000"],["2024-07-24T19:22:52.010000"],["2024-07-24T19:22:53.010000"],["2024-07-24T19:22:54.010000"],["2024-07-24T19:22:55.010000"],["2024-07-24T19:22:56.010000"],["2024-07-24T19:22:57.010000"],["2024-07-24T19:22:58.010000"],["2024-07-24T19:22:59.010000"],["2024-07-24T19:23:00.010000"],["2024-07-24T19:23:01.010000"],["2024-07-24T19:23:02.010000"],["2024-07-24T19:23:03.010000"],["2024-07-24T19:23:04.010000"],["2024-07-24T19:23:05.010000"],["2024-07-24T19:23:06.010000"],["2024-07-24T19:23:07.010000"],["2024-07-24T19:23:08.010000"],["2024-07-24T19:23:09.010000"],["2024-07-24T19:23:10.010000"],["2024-07-24T19:23:11.010000"],["2024-07-24T19:23:12.010000"],["2024-07-24T19:23:13.010000"],["2024-07-24T19:23:14.010000"],["2024-07-24T19:23:15.010000"],["2024-07-24T19:23:16.010000"],["2024-07-24T19:23:17.010000"],["2024-07-24T19:23:18.010000"],["2024-07-24T19:23:19.010000"],["2024-07-24T19:23:20.010000"],["2024-07-24T19:23:21.010000"],["2024-07-24T19:23:22.010000"],["2024-07-24T19:23:23.010000"],["2024-07-24T19:23:24.010000"],["2024-07-24T19:23:25.010000"],["2024-07-24T19:23:26.010000"],["2024-07-24T19:23:27.010000"],["2024-07-24T19:23:28.010000"],["2024-07-24T19:23:29.010000"],["2024-07-24T19:23:30.010000"],["2024-07-24T19:23:31.010000"],["2024-07-24T19:23:32.010000"],["2024-07-24T19:23:33.010000"],["2024-07-24T19:23:34.010000"],["2024-07-24T19:23:35.010000"],["2024-07-24T19:23:36.010000"],["2024-07-24T19:23:37.010000"],["2024-07-24T19:23:38.010000"],["2024-07-24T19:23:39.010000"],["2024-07-24T19:23:40.010000"],["2024-07-24T19:23:41.010000"],["2024-07-24T19:23:42.010000"],["2024-07-24T19:23:43.010000"],["2024-07-24T19:23:44.010000"],["2024-07-24T19:23:45.010000"],["2024-07-24T19:23:46.010000"],["2024-07-24T19:23:47.010000"],["2024-07-24T19:23:48.010000"],["2024-07-24T19:23:49.010000"],["2024-07-24T19:23:50.010000"],["2024-07-24T19:23:51.010000"],["2024-07-24T19:23:52.010000"],["2024-07-24T19:23:53.010000"],["2024-07-24T19:23:54.010000"],["2024-07-24T19:23:55.010000"],["2024-07-24T19:23:56.010000"],["2024-07-24T19:23:57.010000"],["2024-07-24T19:23:58.010000"],["2024-07-24T19:23:59.010000"],["2024-07-24T19:24:00.010000"],["2024-07-24T19:24:01.010000"],["2024-07-24T19:24:02.010000"],["2024-07-24T19:24:03.010000"],["2024-07-24T19:24:04.010000"],["2024-07-24T19:24:05.010000"],["2024-07-24T19:24:06.010000"],["2024-07-24T19:24:07.010000"],["2024-07-24T19:24:08.010000"],["2024-07-24T19:24:09.010000"],["2024-07-24T19:24:10.010000"],["2024-07-24T19:24:11.010000"],["2024-07-24T19:24:12.010000"],["2024-07-24T19:24:13.010000"],["2024-07-24T19:24:14.010000"],["2024-07-24T19:24:15.010000"],["2024-07-24T19:24:16.010000"],["2024-07-24T19:24:17.010000"],["2024-07-24T19:24:18.010000"],["2024-07-24T19:24:19.010000"],["2024-07-24T19:24:20.010000"],["2024-07-24T19:24:21.010000"],["2024-07-24T19:24:22.010000"],["2024-07-24T19:24:23.010000"],["2024-07-24T19:24:24.010000"],["2024-07-24T19:24:25.010000"],["2024-07-24T19:24:26.010000"],["2024-07-24T19:24:27.010000"],["2024-07-24T19:24:28.010000"],["2024-07-24T19:24:29.010000"],["2024-07-24T19:24:30.010000"],["2024-07-24T19:24:31.010000"],["2024-07-24T19:24:32.010000"],["2024-07-24T19:24:33.010000"],["2024-07-24T19:24:34.010000"],["2024-07-24T19:24:35.010000"],["2024-07-24T19:24:36.010000"],["2024-07-24T19:24:37.010000"],["2024-07-24T19:24:38.010000"],["2024-07-24T19:24:39.010000"],["2024-07-24T19:24:40.010000"],["2024-07-24T19:24:41.010000"],["2024-07-24T19:24:42.010000"],["2024-07-24T19:24:43.010000"],["2024-07-24T19:24:44.010000"],["2024-07-24T19:24:45.010000"],["2024-07-24T19:24:46.010000"],["2024-07-24T19:24:47.010000"],["2024-07-24T19:24:48.010000"],["2024-07-24T19:24:49.010000"],["2024-07-24T19:24:50.010000"],["2024-07-24T19:24:51.010000"],["2024-07-24T19:24:52.010000"],["2024-07-24T19:24:53.010000"],["2024-07-24T19:24:54.010000"],["2024-07-24T19:24:55.010000"],["2024-07-24T19:24:56.010000"],["2024-07-24T19:24:57.010000"],["2024-07-24T19:24:58.010000"],["2024-07-24T19:24:59.010000"],["2024-07-24T19:25:00.010000"],["2024-07-24T19:25:01.010000"],["2024-07-24T19:25:02.010000"],["2024-07-24T19:25:03.010000"],["2024-07-24T19:25:04.010000"],["2024-07-24T19:25:05.010000"],["2024-07-24T19:25:06.010000"],["2024-07-24T19:25:07.010000"],["2024-07-24T19:25:08.010000"],["2024-07-24T19:25:09.010000"],["2024-07-24T19:25:10.010000"],["2024-07-24T19:25:11.010000"],["2024-07-24T19:25:12.010000"],["2024-07-24T19:25:13.010000"],["2024-07-24T19:25:14.010000"],["2024-07-24T19:25:15.010000"],["2024-07-24T19:25:16.010000"],["2024-07-24T19:25:17.010000"],["2024-07-24T19:25:18.010000"],["2024-07-24T19:25:19.010000"],["2024-07-24T19:25:20.010000"],["2024-07-24T19:25:21.010000"],["2024-07-24T19:25:22.010000"],["2024-07-24T19:25:23.010000"],["2024-07-24T19:25:24.010000"],["2024-07-24T19:25:25.010000"],["2024-07-24T19:25:26.010000"],["2024-07-24T19:25:27.010000"],["2024-07-24T19:25:28.010000"],["2024-07-24T19:25:29.010000"],["2024-07-24T19:25:30.010000"],["2024-07-24T19:25:31.010000"],["2024-07-24T19:25:32.010000"],["2024-07-24T19:25:33.010000"],["2024-07-24T19:25:34.010000"],["2024-07-24T19:25:35.010000"],["2024-07-24T19:25:36.010000"],["2024-07-24T19:25:37.010000"],["2024-07-24T19:25:38.010000"],["2024-07-24T19:25:39.010000"],["2024-07-24T19:25:40.010000"],["2024-07-24T19:25:41.010000"],["2024-07-24T19:25:42.010000"],["2024-07-24T19:25:43.010000"],["2024-07-24T19:25:44.010000"],["2024-07-24T19:25:45.010000"],["2024-07-24T19:25:46.010000"],["2024-07-24T19:25:47.010000"],["2024-07-24T19:25:48.010000"],["2024-07-24T19:25:49.010000"],["2024-07-24T19:25:50.010000"],["2024-07-24T19:25:51.010000"],["2024-07-24T19:25:52.010000"],["2024-07-24T19:25:53.010000"],["2024-07-24T19:25:54.010000"],["2024-07-24T19:25:55.010000"],["2024-07-24T19:25:56.010000"],["2024-07-24T19:25:57.010000"],["2024-07-24T19:25:58.010000"],["2024-07-24T19:25:59.010000"],["2024-07-24T19:26:00.010000"],["2024-07-24T19:26:01.010000"],["2024-07-24T19:26:02.010000"],["2024-07-24T19:26:03.010000"],["2024-07-24T19:26:04.010000"],["2024-07-24T19:26:05.010000"],["2024-07-24T19:26:06.010000"],["2024-07-24T19:26:07.010000"],["2024-07-24T19:26:08.010000"],["2024-07-24T19:26:09.010000"],["2024-07-24T19:26:10.010000"],["2024-07-24T19:26:11.010000"],["2024-07-24T19:26:12.010000"],["2024-07-24T19:26:13.010000"],["2024-07-24T19:26:14.010000"],["2024-07-24T19:26:15.010000"],["2024-07-24T19:26:16.010000"],["2024-07-24T19:26:17.010000"],["2024-07-24T19:26:18.010000"],["2024-07-24T19:26:19.010000"],["2024-07-24T19:26:20.010000"],["2024-07-24T19:26:21.010000"],["2024-07-24T19:26:22.010000"],["2024-07-24T19:26:23.010000"],["2024-07-24T19:26:24.010000"],["2024-07-24T19:26:25.010000"],["2024-07-24T19:26:26.010000"],["2024-07-24T19:26:27.010000"],["2024-07-24T19:26:28.010000"],["2024-07-24T19:26:29.010000"],["2024-07-24T19:26:30.010000"],["2024-07-24T19:26:31.010000"],["2024-07-24T19:26:32.010000"],["2024-07-24T19:26:33.010000"],["2024-07-24T19:26:34.010000"],["2024-07-24T19:26:35.010000"],["2024-07-24T19:26:36.010000"],["2024-07-24T19:26:37.010000"],["2024-07-24T19:26:38.010000"],["2024-07-24T19:26:39.010000"],["2024-07-24T19:26:40.010000"],["2024-07-24T19:26:41.010000"],["2024-07-24T19:26:42.010000"],["2024-07-24T19:26:43.010000"],["2024-07-24T19:26:44.010000"],["2024-07-24T19:26:45.010000"],["2024-07-24T19:26:46.010000"],["2024-07-24T19:26:47.010000"],["2024-07-24T19:26:48.010000"],["2024-07-24T19:26:49.010000"],["2024-07-24T19:26:50.010000"],["2024-07-24T19:26:51.010000"],["2024-07-24T19:26:52.010000"],["2024-07-24T19:26:53.010000"],["2024-07-24T19:26:54.010000"],["2024-07-24T19:26:55.010000"],["2024-07-24T19:26:56.010000"],["2024-07-24T19:26:57.010000"],["2024-07-24T19:26:58.010000"],["2024-07-24T19:26:59.010000"],["2024-07-24T19:27:00.010000"],["2024-07-24T19:27:01.010000"],["2024-07-24T19:27:02.010000"],["2024-07-24T19:27:03.010000"],["2024-07-24T19:27:04.010000"],["2024-07-24T19:27:05.010000"],["2024-07-24T19:27:06.010000"],["2024-07-24T19:27:07.010000"],["2024-07-24T19:27:08.010000"],["2024-07-24T19:27:09.010000"],["2024-07-24T19:27:10.010000"],["2024-07-24T19:27:11.010000"],["2024-07-24T19:27:12.010000"],["2024-07-24T19:27:13.010000"],["2024-07-24T19:27:14.010000"],["2024-07-24T19:27:15.010000"],["2024-07-24T19:27:16.010000"],["2024-07-24T19:27:17.010000"],["2024-07-24T19:27:18.010000"],["2024-07-24T19:27:19.010000"],["2024-07-24T19:27:20.010000"],["2024-07-24T19:27:21.010000"],["2024-07-24T19:27:22.010000"],["2024-07-24T19:27:23.010000"],["2024-07-24T19:27:24.010000"],["2024-07-24T19:27:25.010000"],["2024-07-24T19:27:26.010000"],["2024-07-24T19:27:27.010000"],["2024-07-24T19:27:28.010000"],["2024-07-24T19:27:29.010000"],["2024-07-24T19:27:30.010000"],["2024-07-24T19:27:31.010000"],["2024-07-24T19:27:32.010000"],["2024-07-24T19:27:33.010000"],["2024-07-24T19:27:34.010000"],["2024-07-24T19:27:35.010000"],["2024-07-24T19:27:36.010000"],["2024-07-24T19:27:37.010000"],["2024-07-24T19:27:38.010000"],["2024-07-24T19:27:39.010000"],["2024-07-24T19:27:40.010000"],["2024-07-24T19:27:41.010000"],["2024-07-24T19:27:42.010000"],["2024-07-24T19:27:43.010000"],["2024-07-24T19:27:44.010000"],["2024-07-24T19:27:45.010000"],["2024-07-24T19:27:46.010000"],["2024-07-24T19:27:47.010000"],["2024-07-24T19:27:48.010000"],["2024-07-24T19:27:49.010000"],["2024-07-24T19:27:50.010000"],["2024-07-24T19:27:51.010000"],["2024-07-24T19:27:52.010000"],["2024-07-24T19:27:53.010000"],["2024-07-24T19:27:54.010000"],["2024-07-24T19:27:55.010000"],["2024-07-24T19:27:56.010000"],["2024-07-24T19:27:57.010000"],["2024-07-24T19:27:58.010000"],["2024-07-24T19:27:59.010000"],["2024-07-24T19:28:00.010000"],["2024-07-24T19:28:01.010000"],["2024-07-24T19:28:02.010000"],["2024-07-24T19:28:03.010000"],["2024-07-24T19:28:04.010000"],["2024-07-24T19:28:05.010000"],["2024-07-24T19:28:06.010000"],["2024-07-24T19:28:07.010000"],["2024-07-24T19:28:08.010000"],["2024-07-24T19:28:09.010000"],["2024-07-24T19:28:10.010000"],["2024-07-24T19:28:11.010000"],["2024-07-24T19:28:12.010000"],["2024-07-24T19:28:13.010000"],["2024-07-24T19:28:14.010000"],["2024-07-24T19:28:15.010000"],["2024-07-24T19:28:16.010000"],["2024-07-24T19:28:17.010000"],["2024-07-24T19:28:18.010000"],["2024-07-24T19:28:19.010000"],["2024-07-24T19:28:20.010000"],["2024-07-24T19:28:21.010000"],["2024-07-24T19:28:22.010000"],["2024-07-24T19:28:23.010000"],["2024-07-24T19:28:24.010000"],["2024-07-24T19:28:25.010000"],["2024-07-24T19:28:26.010000"],["2024-07-24T19:28:27.010000"],["2024-07-24T19:28:28.010000"],["2024-07-24T19:28:29.010000"],["2024-07-24T19:28:30.010000"],["2024-07-24T19:28:31.010000"],["2024-07-24T19:28:32.010000"],["2024-07-24T19:28:33.010000"],["2024-07-24T19:28:34.010000"],["2024-07-24T19:28:35.010000"],["2024-07-24T19:28:36.010000"],["2024-07-24T19:28:37.010000"],["2024-07-24T19:28:38.010000"],["2024-07-24T19:28:39.010000"],["2024-07-24T19:28:40.010000"],["2024-07-24T19:28:41.010000"],["2024-07-24T19:28:42.010000"],["2024-07-24T19:28:43.010000"],["2024-07-24T19:28:44.010000"],["2024-07-24T19:28:45.010000"],["2024-07-24T19:28:46.010000"],["2024-07-24T19:28:47.010000"],["2024-07-24T19:28:48.010000"],["2024-07-24T19:28:49.010000"],["2024-07-24T19:28:50.010000"],["2024-07-24T19:28:51.010000"],["2024-07-24T19:28:52.010000"],["2024-07-24T19:28:53.010000"],["2024-07-24T19:28:54.010000"],["2024-07-24T19:28:55.010000"],["2024-07-24T19:28:56.010000"],["2024-07-24T19:28:57.010000"],["2024-07-24T19:28:58.010000"],["2024-07-24T19:28:59.010000"],["2024-07-24T19:29:00.010000"],["2024-07-24T19:29:01.010000"],["2024-07-24T19:29:02.010000"],["2024-07-24T19:29:03.010000"],["2024-07-24T19:29:04.010000"],["2024-07-24T19:29:05.010000"],["2024-07-24T19:29:06.010000"],["2024-07-24T19:29:07.010000"],["2024-07-24T19:29:08.010000"],["2024-07-24T19:29:09.010000"],["2024-07-24T19:29:10.010000"],["2024-07-24T19:29:11.010000"],["2024-07-24T19:29:12.010000"],["2024-07-24T19:29:13.010000"],["2024-07-24T19:29:14.010000"],["2024-07-24T19:29:15.010000"],["2024-07-24T19:29:16.010000"],["2024-07-24T19:29:17.010000"],["2024-07-24T19:29:18.010000"],["2024-07-24T19:29:19.010000"],["2024-07-24T19:29:20.010000"],["2024-07-24T19:29:21.010000"],["2024-07-24T19:29:22.010000"],["2024-07-24T19:29:23.010000"],["2024-07-24T19:29:24.010000"],["2024-07-24T19:29:25.010000"],["2024-07-24T19:29:26.010000"],["2024-07-24T19:29:27.010000"],["2024-07-24T19:29:28.010000"],["2024-07-24T19:29:29.010000"],["2024-07-24T19:29:30.010000"],["2024-07-24T19:29:31.010000"],["2024-07-24T19:29:32.010000"],["2024-07-24T19:29:33.010000"],["2024-07-24T19:29:34.010000"],["2024-07-24T19:29:35.010000"],["2024-07-24T19:29:36.010000"],["2024-07-24T19:29:37.010000"],["2024-07-24T19:29:38.010000"],["2024-07-24T19:29:39.010000"],["2024-07-24T19:29:40.010000"],["2024-07-24T19:29:41.010000"],["2024-07-24T19:29:42.010000"],["2024-07-24T19:29:43.010000"],["2024-07-24T19:29:44.010000"],["2024-07-24T19:29:45.010000"],["2024-07-24T19:29:46.010000"],["2024-07-24T19:29:47.010000"],["2024-07-24T19:29:48.010000"],["2024-07-24T19:29:49.010000"],["2024-07-24T19:29:50.010000"],["2024-07-24T19:29:51.010000"],["2024-07-24T19:29:52.010000"],["2024-07-24T19:29:53.010000"],["2024-07-24T19:29:54.010000"],["2024-07-24T19:29:55.010000"],["2024-07-24T19:29:56.010000"],["2024-07-24T19:29:57.010000"],["2024-07-24T19:29:58.010000"],["2024-07-24T19:29:59.010000"],["2024-07-24T19:30:00.010000"],["2024-07-24T19:30:01.010000"],["2024-07-24T19:30:02.010000"],["2024-07-24T19:30:03.010000"],["2024-07-24T19:30:04.010000"],["2024-07-24T19:30:05.010000"],["2024-07-24T19:30:06.010000"],["2024-07-24T19:30:07.010000"],["2024-07-24T19:30:08.010000"],["2024-07-24T19:30:09.010000"],["2024-07-24T19:30:10.010000"],["2024-07-24T19:30:11.010000"],["2024-07-24T19:30:12.010000"],["2024-07-24T19:30:13.010000"],["2024-07-24T19:30:14.010000"],["2024-07-24T19:30:15.010000"],["2024-07-24T19:30:16.010000"],["2024-07-24T19:30:17.010000"],["2024-07-24T19:30:18.010000"],["2024-07-24T19:30:19.010000"],["2024-07-24T19:30:20.010000"],["2024-07-24T19:30:21.010000"],["2024-07-24T19:30:22.010000"],["2024-07-24T19:30:23.010000"],["2024-07-24T19:30:24.010000"],["2024-07-24T19:30:25.010000"],["2024-07-24T19:30:26.010000"],["2024-07-24T19:30:27.010000"],["2024-07-24T19:30:28.010000"],["2024-07-24T19:30:29.010000"],["2024-07-24T19:30:30.010000"],["2024-07-24T19:30:31.010000"],["2024-07-24T19:30:32.010000"],["2024-07-24T19:30:33.010000"],["2024-07-24T19:30:34.010000"],["2024-07-24T19:30:35.010000"],["2024-07-24T19:30:36.010000"],["2024-07-24T19:30:37.010000"],["2024-07-24T19:30:38.010000"],["2024-07-24T19:30:39.010000"],["2024-07-24T19:30:40.010000"],["2024-07-24T19:30:41.010000"],["2024-07-24T19:30:42.010000"],["2024-07-24T19:30:43.010000"],["2024-07-24T19:30:44.010000"],["2024-07-24T19:30:45.010000"],["2024-07-24T19:30:46.010000"],["2024-07-24T19:30:47.010000"],["2024-07-24T19:30:48.010000"],["2024-07-24T19:30:49.010000"],["2024-07-24T19:30:50.010000"],["2024-07-24T19:30:51.010000"],["2024-07-24T19:30:52.010000"],["2024-07-24T19:30:53.010000"],["2024-07-24T19:30:54.010000"],["2024-07-24T19:30:55.010000"],["2024-07-24T19:30:56.010000"],["2024-07-24T19:30:57.010000"],["2024-07-24T19:30:58.010000"],["2024-07-24T19:30:59.010000"],["2024-07-24T19:31:00.010000"],["2024-07-24T19:31:01.010000"],["2024-07-24T19:31:02.010000"],["2024-07-24T19:31:03.010000"],["2024-07-24T19:31:04.010000"],["2024-07-24T19:31:05.010000"],["2024-07-24T19:31:06.010000"],["2024-07-24T19:31:07.010000"],["2024-07-24T19:31:08.010000"],["2024-07-24T19:31:09.010000"],["2024-07-24T19:31:10.010000"],["2024-07-24T19:31:11.010000"],["2024-07-24T19:31:12.010000"],["2024-07-24T19:31:13.010000"],["2024-07-24T19:31:14.010000"],["2024-07-24T19:31:15.010000"],["2024-07-24T19:31:16.010000"],["2024-07-24T19:31:17.010000"],["2024-07-24T19:31:18.010000"],["2024-07-24T19:31:19.010000"],["2024-07-24T19:31:20.010000"],["2024-07-24T19:31:21.010000"],["2024-07-24T19:31:22.010000"],["2024-07-24T19:31:23.010000"],["2024-07-24T19:31:24.010000"],["2024-07-24T19:31:25.010000"],["2024-07-24T19:31:26.010000"],["2024-07-24T19:31:27.010000"],["2024-07-24T19:31:28.010000"],["2024-07-24T19:31:29.010000"],["2024-07-24T19:31:30.010000"],["2024-07-24T19:31:31.010000"],["2024-07-24T19:31:32.010000"],["2024-07-24T19:31:33.010000"],["2024-07-24T19:31:34.010000"],["2024-07-24T19:31:35.010000"],["2024-07-24T19:31:36.010000"],["2024-07-24T19:31:37.010000"],["2024-07-24T19:31:38.010000"],["2024-07-24T19:31:39.010000"],["2024-07-24T19:31:40.010000"],["2024-07-24T19:31:41.010000"],["2024-07-24T19:31:42.010000"],["2024-07-24T19:31:43.010000"],["2024-07-24T19:31:44.010000"],["2024-07-24T19:31:45.010000"],["2024-07-24T19:31:46.010000"],["2024-07-24T19:31:47.010000"],["2024-07-24T19:31:48.010000"],["2024-07-24T19:31:49.010000"],["2024-07-24T19:31:50.010000"],["2024-07-24T19:31:51.010000"],["2024-07-24T19:31:52.010000"],["2024-07-24T19:31:53.010000"],["2024-07-24T19:31:54.010000"],["2024-07-24T19:31:55.010000"],["2024-07-24T19:31:56.010000"],["2024-07-24T19:31:57.010000"],["2024-07-24T19:31:58.010000"],["2024-07-24T19:31:59.010000"],["2024-07-24T19:32:00.010000"],["2024-07-24T19:32:01.010000"],["2024-07-24T19:32:02.010000"],["2024-07-24T19:32:03.010000"],["2024-07-24T19:32:04.010000"],["2024-07-24T19:32:05.010000"],["2024-07-24T19:32:06.010000"],["2024-07-24T19:32:07.010000"],["2024-07-24T19:32:08.010000"],["2024-07-24T19:32:09.010000"],["2024-07-24T19:32:10.010000"],["2024-07-24T19:32:11.010000"],["2024-07-24T19:32:12.010000"],["2024-07-24T19:32:13.010000"],["2024-07-24T19:32:14.010000"],["2024-07-24T19:32:15.010000"],["2024-07-24T19:32:16.010000"],["2024-07-24T19:32:17.010000"],["2024-07-24T19:32:18.010000"],["2024-07-24T19:32:19.010000"],["2024-07-24T19:32:20.010000"],["2024-07-24T19:32:21.010000"],["2024-07-24T19:32:22.010000"],["2024-07-24T19:32:23.010000"],["2024-07-24T19:32:24.010000"],["2024-07-24T19:32:25.010000"],["2024-07-24T19:32:26.010000"],["2024-07-24T19:32:27.010000"],["2024-07-24T19:32:28.010000"],["2024-07-24T19:32:29.010000"],["2024-07-24T19:32:30.010000"],["2024-07-24T19:32:31.010000"],["2024-07-24T19:32:32.010000"],["2024-07-24T19:32:33.010000"],["2024-07-24T19:32:34.010000"],["2024-07-24T19:32:35.010000"],["2024-07-24T19:32:36.010000"],["2024-07-24T19:32:37.010000"],["2024-07-24T19:32:38.010000"],["2024-07-24T19:32:39.010000"],["2024-07-24T19:32:40.010000"],["2024-07-24T19:32:41.010000"],["2024-07-24T19:32:42.010000"],["2024-07-24T19:32:43.010000"],["2024-07-24T19:32:44.010000"],["2024-07-24T19:32:45.010000"],["2024-07-24T19:32:46.010000"],["2024-07-24T19:32:47.010000"],["2024-07-24T19:32:48.010000"],["2024-07-24T19:32:49.010000"],["2024-07-24T19:32:50.010000"],["2024-07-24T19:32:51.010000"],["2024-07-24T19:32:52.010000"],["2024-07-24T19:32:53.010000"],["2024-07-24T19:32:54.010000"],["2024-07-24T19:32:55.010000"],["2024-07-24T19:32:56.010000"],["2024-07-24T19:32:57.010000"],["2024-07-24T19:32:58.010000"],["2024-07-24T19:32:59.010000"],["2024-07-24T19:33:00.010000"],["2024-07-24T19:33:01.010000"],["2024-07-24T19:33:02.010000"],["2024-07-24T19:33:03.010000"],["2024-07-24T19:33:04.010000"],["2024-07-24T19:33:05.010000"],["2024-07-24T19:33:06.010000"],["2024-07-24T19:33:07.010000"],["2024-07-24T19:33:08.010000"],["2024-07-24T19:33:09.010000"],["2024-07-24T19:33:10.010000"],["2024-07-24T19:33:11.010000"],["2024-07-24T19:33:12.010000"],["2024-07-24T19:33:13.010000"],["2024-07-24T19:33:14.010000"],["2024-07-24T19:33:15.010000"],["2024-07-24T19:33:16.010000"],["2024-07-24T19:33:17.010000"],["2024-07-24T19:33:18.010000"],["2024-07-24T19:33:19.010000"],["2024-07-24T19:33:20.010000"],["2024-07-24T19:33:21.010000"],["2024-07-24T19:33:22.010000"],["2024-07-24T19:33:23.010000"],["2024-07-24T19:33:24.010000"],["2024-07-24T19:33:25.010000"],["2024-07-24T19:33:26.010000"],["2024-07-24T19:33:27.010000"],["2024-07-24T19:33:28.010000"],["2024-07-24T19:33:29.010000"],["2024-07-24T19:33:30.010000"],["2024-07-24T19:33:31.010000"],["2024-07-24T19:33:32.010000"],["2024-07-24T19:33:33.010000"],["2024-07-24T19:33:34.010000"],["2024-07-24T19:33:35.010000"],["2024-07-24T19:33:36.010000"],["2024-07-24T19:33:37.010000"],["2024-07-24T19:33:38.010000"],["2024-07-24T19:33:39.010000"],["2024-07-24T19:33:40.010000"],["2024-07-24T19:33:41.010000"],["2024-07-24T19:33:42.010000"],["2024-07-24T19:33:43.010000"],["2024-07-24T19:33:44.010000"],["2024-07-24T19:33:45.010000"],["2024-07-24T19:33:46.010000"],["2024-07-24T19:33:47.010000"],["2024-07-24T19:33:48.010000"],["2024-07-24T19:33:49.010000"],["2024-07-24T19:33:50.010000"],["2024-07-24T19:33:51.010000"],["2024-07-24T19:33:52.010000"],["2024-07-24T19:33:53.010000"],["2024-07-24T19:33:54.010000"],["2024-07-24T19:33:55.010000"],["2024-07-24T19:33:56.010000"],["2024-07-24T19:33:57.010000"],["2024-07-24T19:33:58.010000"],["2024-07-24T19:33:59.010000"],["2024-07-24T19:34:00.010000"],["2024-07-24T19:34:01.010000"],["2024-07-24T19:34:02.010000"],["2024-07-24T19:34:03.010000"],["2024-07-24T19:34:04.010000"],["2024-07-24T19:34:05.010000"],["2024-07-24T19:34:06.010000"],["2024-07-24T19:34:07.010000"],["2024-07-24T19:34:08.010000"],["2024-07-24T19:34:09.010000"],["2024-07-24T19:34:10.010000"],["2024-07-24T19:34:11.010000"],["2024-07-24T19:34:12.010000"],["2024-07-24T19:34:13.010000"],["2024-07-24T19:34:14.010000"],["2024-07-24T19:34:15.010000"],["2024-07-24T19:34:16.010000"],["2024-07-24T19:34:17.010000"],["2024-07-24T19:34:18.010000"],["2024-07-24T19:34:19.010000"],["2024-07-24T19:34:20.010000"],["2024-07-24T19:34:21.010000"],["2024-07-24T19:34:22.010000"],["2024-07-24T19:34:23.010000"],["2024-07-24T19:34:24.010000"],["2024-07-24T19:34:25.010000"],["2024-07-24T19:34:26.010000"],["2024-07-24T19:34:27.010000"],["2024-07-24T19:34:28.010000"],["2024-07-24T19:34:29.010000"],["2024-07-24T19:34:30.010000"],["2024-07-24T19:34:31.010000"],["2024-07-24T19:34:32.010000"],["2024-07-24T19:34:33.010000"],["2024-07-24T19:34:34.010000"],["2024-07-24T19:34:35.010000"],["2024-07-24T19:34:36.010000"],["2024-07-24T19:34:37.010000"],["2024-07-24T19:34:38.010000"],["2024-07-24T19:34:39.010000"],["2024-07-24T19:34:40.010000"],["2024-07-24T19:34:41.010000"],["2024-07-24T19:34:42.010000"],["2024-07-24T19:34:43.010000"],["2024-07-24T19:34:44.010000"],["2024-07-24T19:34:45.010000"],["2024-07-24T19:34:46.010000"],["2024-07-24T19:34:47.010000"],["2024-07-24T19:34:48.010000"],["2024-07-24T19:34:49.010000"],["2024-07-24T19:34:50.010000"],["2024-07-24T19:34:51.010000"],["2024-07-24T19:34:52.010000"],["2024-07-24T19:34:53.010000"],["2024-07-24T19:34:54.010000"],["2024-07-24T19:34:55.010000"],["2024-07-24T19:34:56.010000"],["2024-07-24T19:34:57.010000"],["2024-07-24T19:34:58.010000"],["2024-07-24T19:34:59.010000"],["2024-07-24T19:35:00.010000"],["2024-07-24T19:35:01.010000"],["2024-07-24T19:35:02.010000"],["2024-07-24T19:35:03.010000"],["2024-07-24T19:35:04.010000"],["2024-07-24T19:35:05.010000"],["2024-07-24T19:35:06.010000"],["2024-07-24T19:35:07.010000"],["2024-07-24T19:35:08.010000"],["2024-07-24T19:35:09.010000"],["2024-07-24T19:35:10.010000"],["2024-07-24T19:35:11.010000"],["2024-07-24T19:35:12.010000"],["2024-07-24T19:35:13.010000"],["2024-07-24T19:35:14.010000"],["2024-07-24T19:35:15.010000"],["2024-07-24T19:35:16.010000"],["2024-07-24T19:35:17.010000"],["2024-07-24T19:35:18.010000"],["2024-07-24T19:35:19.010000"],["2024-07-24T19:35:20.010000"],["2024-07-24T19:35:21.010000"],["2024-07-24T19:35:22.010000"],["2024-07-24T19:35:23.010000"],["2024-07-24T19:35:24.010000"],["2024-07-24T19:35:25.010000"],["2024-07-24T19:35:26.010000"],["2024-07-24T19:35:27.010000"],["2024-07-24T19:35:28.010000"],["2024-07-24T19:35:29.010000"],["2024-07-24T19:35:30.010000"],["2024-07-24T19:35:31.010000"],["2024-07-24T19:35:32.010000"],["2024-07-24T19:35:33.010000"],["2024-07-24T19:35:34.010000"],["2024-07-24T19:35:35.010000"],["2024-07-24T19:35:36.010000"],["2024-07-24T19:35:37.010000"],["2024-07-24T19:35:38.010000"],["2024-07-24T19:35:39.010000"],["2024-07-24T19:35:40.010000"],["2024-07-24T19:35:41.010000"],["2024-07-24T19:35:42.010000"],["2024-07-24T19:35:43.010000"],["2024-07-24T19:35:44.010000"],["2024-07-24T19:35:45.010000"],["2024-07-24T19:35:46.010000"],["2024-07-24T19:35:47.010000"],["2024-07-24T19:35:48.010000"],["2024-07-24T19:35:49.010000"],["2024-07-24T19:35:50.010000"],["2024-07-24T19:35:51.010000"],["2024-07-24T19:35:52.010000"],["2024-07-24T19:35:53.010000"],["2024-07-24T19:35:54.010000"],["2024-07-24T19:35:55.010000"],["2024-07-24T19:35:56.010000"],["2024-07-24T19:35:57.010000"],["2024-07-24T19:35:58.010000"],["2024-07-24T19:35:59.010000"],["2024-07-24T19:36:00.010000"],["2024-07-24T19:36:01.010000"],["2024-07-24T19:36:02.010000"],["2024-07-24T19:36:03.010000"],["2024-07-24T19:36:04.010000"],["2024-07-24T19:36:05.010000"],["2024-07-24T19:36:06.010000"],["2024-07-24T19:36:07.010000"],["2024-07-24T19:36:08.010000"],["2024-07-24T19:36:09.010000"],["2024-07-24T19:36:10.010000"],["2024-07-24T19:36:11.010000"],["2024-07-24T19:36:12.010000"],["2024-07-24T19:36:13.010000"],["2024-07-24T19:36:14.010000"],["2024-07-24T19:36:15.010000"],["2024-07-24T19:36:16.010000"],["2024-07-24T19:36:17.010000"],["2024-07-24T19:36:18.010000"],["2024-07-24T19:36:19.010000"],["2024-07-24T19:36:20.010000"],["2024-07-24T19:36:21.010000"],["2024-07-24T19:36:22.010000"],["2024-07-24T19:36:23.010000"],["2024-07-24T19:36:24.010000"],["2024-07-24T19:36:25.010000"],["2024-07-24T19:36:26.010000"],["2024-07-24T19:36:27.010000"],["2024-07-24T19:36:28.010000"],["2024-07-24T19:36:29.010000"],["2024-07-24T19:36:30.010000"],["2024-07-24T19:36:31.010000"],["2024-07-24T19:36:32.010000"],["2024-07-24T19:36:33.010000"],["2024-07-24T19:36:34.010000"],["2024-07-24T19:36:35.010000"],["2024-07-24T19:36:36.010000"],["2024-07-24T19:36:37.010000"],["2024-07-24T19:36:38.010000"],["2024-07-24T19:36:39.010000"],["2024-07-24T19:36:40.010000"],["2024-07-24T19:36:41.010000"],["2024-07-24T19:36:42.010000"],["2024-07-24T19:36:43.010000"],["2024-07-24T19:36:44.010000"],["2024-07-24T19:36:45.010000"],["2024-07-24T19:36:46.010000"],["2024-07-24T19:36:47.010000"],["2024-07-24T19:36:48.010000"],["2024-07-24T19:36:49.010000"],["2024-07-24T19:36:50.010000"],["2024-07-24T19:36:51.010000"],["2024-07-24T19:36:52.010000"],["2024-07-24T19:36:53.010000"],["2024-07-24T19:36:54.010000"],["2024-07-24T19:36:55.010000"],["2024-07-24T19:36:56.010000"],["2024-07-24T19:36:57.010000"],["2024-07-24T19:36:58.010000"],["2024-07-24T19:36:59.010000"],["2024-07-24T19:37:00.010000"],["2024-07-24T19:37:01.010000"],["2024-07-24T19:37:02.010000"],["2024-07-24T19:37:03.010000"],["2024-07-24T19:37:04.010000"],["2024-07-24T19:37:05.010000"],["2024-07-24T19:37:06.010000"],["2024-07-24T19:37:07.010000"],["2024-07-24T19:37:08.010000"],["2024-07-24T19:37:09.010000"],["2024-07-24T19:37:10.010000"],["2024-07-24T19:37:11.010000"],["2024-07-24T19:37:12.010000"],["2024-07-24T19:37:13.010000"],["2024-07-24T19:37:14.010000"],["2024-07-24T19:37:15.010000"],["2024-07-24T19:37:16.010000"],["2024-07-24T19:37:17.010000"],["2024-07-24T19:37:18.010000"],["2024-07-24T19:37:19.010000"],["2024-07-24T19:37:20.010000"],["2024-07-24T19:37:21.010000"],["2024-07-24T19:37:22.010000"],["2024-07-24T19:37:23.010000"],["2024-07-24T19:37:24.010000"],["2024-07-24T19:37:25.010000"],["2024-07-24T19:37:26.010000"],["2024-07-24T19:37:27.010000"],["2024-07-24T19:37:28.010000"],["2024-07-24T19:37:29.010000"],["2024-07-24T19:37:30.010000"],["2024-07-24T19:37:31.010000"],["2024-07-24T19:37:32.010000"],["2024-07-24T19:37:33.010000"],["2024-07-24T19:37:34.010000"],["2024-07-24T19:37:35.010000"],["2024-07-24T19:37:36.010000"],["2024-07-24T19:37:37.010000"],["2024-07-24T19:37:38.010000"],["2024-07-24T19:37:39.010000"],["2024-07-24T19:37:40.010000"],["2024-07-24T19:37:41.010000"],["2024-07-24T19:37:42.010000"],["2024-07-24T19:37:43.010000"],["2024-07-24T19:37:44.010000"],["2024-07-24T19:37:45.010000"],["2024-07-24T19:37:46.010000"],["2024-07-24T19:37:47.010000"],["2024-07-24T19:37:48.010000"],["2024-07-24T19:37:49.010000"],["2024-07-24T19:37:50.010000"],["2024-07-24T19:37:51.010000"],["2024-07-24T19:37:52.010000"],["2024-07-24T19:37:53.010000"],["2024-07-24T19:37:54.010000"],["2024-07-24T19:37:55.010000"],["2024-07-24T19:37:56.010000"],["2024-07-24T19:37:57.010000"],["2024-07-24T19:37:58.010000"],["2024-07-24T19:37:59.010000"],["2024-07-24T19:38:00.010000"],["2024-07-24T19:38:01.010000"],["2024-07-24T19:38:02.010000"],["2024-07-24T19:38:03.010000"],["2024-07-24T19:38:04.010000"],["2024-07-24T19:38:05.010000"],["2024-07-24T19:38:06.010000"],["2024-07-24T19:38:07.010000"],["2024-07-24T19:38:08.010000"],["2024-07-24T19:38:09.010000"],["2024-07-24T19:38:10.010000"],["2024-07-24T19:38:11.010000"],["2024-07-24T19:38:12.010000"],["2024-07-24T19:38:13.010000"],["2024-07-24T19:38:14.010000"],["2024-07-24T19:38:15.010000"],["2024-07-24T19:38:16.010000"],["2024-07-24T19:38:17.010000"],["2024-07-24T19:38:18.010000"],["2024-07-24T19:38:19.010000"],["2024-07-24T19:38:20.010000"],["2024-07-24T19:38:21.010000"],["2024-07-24T19:38:22.010000"],["2024-07-24T19:38:23.010000"],["2024-07-24T19:38:24.010000"],["2024-07-24T19:38:25.010000"],["2024-07-24T19:38:26.010000"],["2024-07-24T19:38:27.010000"],["2024-07-24T19:38:28.010000"],["2024-07-24T19:38:29.010000"],["2024-07-24T19:38:30.010000"],["2024-07-24T19:38:31.010000"],["2024-07-24T19:38:32.010000"],["2024-07-24T19:38:33.010000"],["2024-07-24T19:38:34.010000"],["2024-07-24T19:38:35.010000"],["2024-07-24T19:38:36.010000"],["2024-07-24T19:38:37.010000"],["2024-07-24T19:38:38.010000"],["2024-07-24T19:38:39.010000"],["2024-07-24T19:38:40.010000"],["2024-07-24T19:38:41.010000"],["2024-07-24T19:38:42.010000"],["2024-07-24T19:38:43.010000"],["2024-07-24T19:38:44.010000"],["2024-07-24T19:38:45.010000"],["2024-07-24T19:38:46.010000"],["2024-07-24T19:38:47.010000"],["2024-07-24T19:38:48.010000"],["2024-07-24T19:38:49.010000"],["2024-07-24T19:38:50.010000"],["2024-07-24T19:38:51.010000"],["2024-07-24T19:38:52.010000"],["2024-07-24T19:38:53.010000"],["2024-07-24T19:38:54.010000"],["2024-07-24T19:38:55.010000"],["2024-07-24T19:38:56.010000"],["2024-07-24T19:38:57.010000"],["2024-07-24T19:38:58.010000"],["2024-07-24T19:38:59.010000"],["2024-07-24T19:39:00.010000"],["2024-07-24T19:39:01.010000"],["2024-07-24T19:39:02.010000"],["2024-07-24T19:39:03.010000"],["2024-07-24T19:39:04.010000"],["2024-07-24T19:39:05.010000"],["2024-07-24T19:39:06.010000"],["2024-07-24T19:39:07.010000"],["2024-07-24T19:39:08.010000"],["2024-07-24T19:39:09.010000"],["2024-07-24T19:39:10.010000"],["2024-07-24T19:39:11.010000"],["2024-07-24T19:39:12.010000"],["2024-07-24T19:39:13.010000"],["2024-07-24T19:39:14.010000"],["2024-07-24T19:39:15.010000"],["2024-07-24T19:39:16.010000"],["2024-07-24T19:39:17.010000"],["2024-07-24T19:39:18.010000"],["2024-07-24T19:39:19.010000"],["2024-07-24T19:39:20.010000"],["2024-07-24T19:39:21.010000"],["2024-07-24T19:39:22.010000"],["2024-07-24T19:39:23.010000"],["2024-07-24T19:39:24.010000"],["2024-07-24T19:39:25.010000"],["2024-07-24T19:39:26.010000"],["2024-07-24T19:39:27.010000"],["2024-07-24T19:39:28.010000"],["2024-07-24T19:39:29.010000"],["2024-07-24T19:39:30.010000"],["2024-07-24T19:39:31.010000"],["2024-07-24T19:39:32.010000"],["2024-07-24T19:39:33.010000"],["2024-07-24T19:39:34.010000"],["2024-07-24T19:39:35.010000"],["2024-07-24T19:39:36.010000"],["2024-07-24T19:39:37.010000"],["2024-07-24T19:39:38.010000"],["2024-07-24T19:39:39.010000"],["2024-07-24T19:39:40.010000"],["2024-07-24T19:39:41.010000"],["2024-07-24T19:39:42.010000"],["2024-07-24T19:39:43.010000"],["2024-07-24T19:39:44.010000"],["2024-07-24T19:39:45.010000"],["2024-07-24T19:39:46.010000"],["2024-07-24T19:39:47.010000"],["2024-07-24T19:39:48.010000"],["2024-07-24T19:39:49.010000"],["2024-07-24T19:39:50.010000"],["2024-07-24T19:39:51.010000"],["2024-07-24T19:39:52.010000"],["2024-07-24T19:39:53.010000"],["2024-07-24T19:39:54.010000"],["2024-07-24T19:39:55.010000"],["2024-07-24T19:39:56.010000"],["2024-07-24T19:39:57.010000"],["2024-07-24T19:39:58.010000"],["2024-07-24T19:39:59.010000"],["2024-07-24T19:40:00.010000"],["2024-07-24T19:40:01.010000"],["2024-07-24T19:40:02.010000"],["2024-07-24T19:40:03.010000"],["2024-07-24T19:40:04.010000"],["2024-07-24T19:40:05.010000"],["2024-07-24T19:40:06.010000"],["2024-07-24T19:40:07.010000"],["2024-07-24T19:40:08.010000"],["2024-07-24T19:40:09.010000"],["2024-07-24T19:40:10.010000"],["2024-07-24T19:40:11.010000"],["2024-07-24T19:40:12.010000"],["2024-07-24T19:40:13.010000"],["2024-07-24T19:40:14.010000"],["2024-07-24T19:40:15.010000"],["2024-07-24T19:40:16.010000"],["2024-07-24T19:40:17.010000"],["2024-07-24T19:40:18.010000"],["2024-07-24T19:40:19.010000"],["2024-07-24T19:40:20.010000"],["2024-07-24T19:40:21.010000"],["2024-07-24T19:40:22.010000"],["2024-07-24T19:40:23.010000"],["2024-07-24T19:40:24.010000"],["2024-07-24T19:40:25.010000"],["2024-07-24T19:40:26.010000"],["2024-07-24T19:40:27.010000"],["2024-07-24T19:40:28.010000"],["2024-07-24T19:40:29.010000"],["2024-07-24T19:40:30.010000"],["2024-07-24T19:40:31.010000"],["2024-07-24T19:40:32.010000"],["2024-07-24T19:40:33.010000"],["2024-07-24T19:40:34.010000"],["2024-07-24T19:40:35.010000"],["2024-07-24T19:40:36.010000"],["2024-07-24T19:40:37.010000"],["2024-07-24T19:40:38.010000"],["2024-07-24T19:40:39.010000"],["2024-07-24T19:40:40.010000"],["2024-07-24T19:40:41.010000"],["2024-07-24T19:40:42.010000"],["2024-07-24T19:40:43.010000"],["2024-07-24T19:40:44.010000"],["2024-07-24T19:40:45.010000"],["2024-07-24T19:40:46.010000"],["2024-07-24T19:40:47.010000"],["2024-07-24T19:40:48.010000"],["2024-07-24T19:40:49.010000"],["2024-07-24T19:40:50.010000"],["2024-07-24T19:40:51.010000"],["2024-07-24T19:40:52.010000"],["2024-07-24T19:40:53.010000"],["2024-07-24T19:40:54.010000"],["2024-07-24T19:40:55.010000"],["2024-07-24T19:40:56.010000"],["2024-07-24T19:40:57.010000"],["2024-07-24T19:40:58.010000"],["2024-07-24T19:40:59.010000"],["2024-07-24T19:41:00.010000"],["2024-07-24T19:41:01.010000"],["2024-07-24T19:41:02.010000"],["2024-07-24T19:41:03.010000"],["2024-07-24T19:41:04.010000"],["2024-07-24T19:41:05.010000"],["2024-07-24T19:41:06.010000"],["2024-07-24T19:41:07.010000"],["2024-07-24T19:41:08.010000"],["2024-07-24T19:41:09.010000"],["2024-07-24T19:41:10.010000"],["2024-07-24T19:41:11.010000"],["2024-07-24T19:41:12.010000"],["2024-07-24T19:41:13.010000"],["2024-07-24T19:41:14.010000"],["2024-07-24T19:41:15.010000"],["2024-07-24T19:41:16.010000"],["2024-07-24T19:41:17.010000"],["2024-07-24T19:41:18.010000"],["2024-07-24T19:41:19.010000"],["2024-07-24T19:41:20.010000"],["2024-07-24T19:41:21.010000"],["2024-07-24T19:41:22.010000"],["2024-07-24T19:41:23.010000"],["2024-07-24T19:41:24.010000"],["2024-07-24T19:41:25.010000"],["2024-07-24T19:41:26.010000"],["2024-07-24T19:41:27.010000"],["2024-07-24T19:41:28.010000"],["2024-07-24T19:41:29.010000"],["2024-07-24T19:41:30.010000"],["2024-07-24T19:41:31.010000"],["2024-07-24T19:41:32.010000"],["2024-07-24T19:41:33.010000"],["2024-07-24T19:41:34.010000"],["2024-07-24T19:41:35.010000"],["2024-07-24T19:41:36.010000"],["2024-07-24T19:41:37.010000"],["2024-07-24T19:41:38.010000"],["2024-07-24T19:41:39.010000"],["2024-07-24T19:41:40.010000"],["2024-07-24T19:41:41.010000"],["2024-07-24T19:41:42.010000"],["2024-07-24T19:41:43.010000"],["2024-07-24T19:41:44.010000"],["2024-07-24T19:41:45.010000"],["2024-07-24T19:41:46.010000"],["2024-07-24T19:41:47.010000"],["2024-07-24T19:41:48.010000"],["2024-07-24T19:41:49.010000"],["2024-07-24T19:41:50.010000"],["2024-07-24T19:41:51.010000"],["2024-07-24T19:41:52.010000"],["2024-07-24T19:41:53.010000"],["2024-07-24T19:41:54.010000"],["2024-07-24T19:41:55.010000"],["2024-07-24T19:41:56.010000"],["2024-07-24T19:41:57.010000"],["2024-07-24T19:41:58.010000"],["2024-07-24T19:41:59.010000"],["2024-07-24T19:42:00.010000"],["2024-07-24T19:42:01.010000"],["2024-07-24T19:42:02.010000"],["2024-07-24T19:42:03.010000"],["2024-07-24T19:42:04.010000"],["2024-07-24T19:42:05.010000"],["2024-07-24T19:42:06.010000"],["2024-07-24T19:42:07.010000"],["2024-07-24T19:42:08.010000"],["2024-07-24T19:42:09.010000"],["2024-07-24T19:42:10.010000"],["2024-07-24T19:42:11.010000"],["2024-07-24T19:42:12.010000"],["2024-07-24T19:42:13.010000"],["2024-07-24T19:42:14.010000"],["2024-07-24T19:42:15.010000"],["2024-07-24T19:42:16.010000"],["2024-07-24T19:42:17.010000"],["2024-07-24T19:42:18.010000"],["2024-07-24T19:42:19.010000"],["2024-07-24T19:42:20.010000"],["2024-07-24T19:42:21.010000"],["2024-07-24T19:42:22.010000"],["2024-07-24T19:42:23.010000"],["2024-07-24T19:42:24.010000"],["2024-07-24T19:42:25.010000"],["2024-07-24T19:42:26.010000"],["2024-07-24T19:42:27.010000"],["2024-07-24T19:42:28.010000"],["2024-07-24T19:42:29.010000"],["2024-07-24T19:42:30.010000"],["2024-07-24T19:42:31.010000"],["2024-07-24T19:42:32.010000"],["2024-07-24T19:42:33.010000"],["2024-07-24T19:42:34.010000"],["2024-07-24T19:42:35.010000"],["2024-07-24T19:42:36.010000"],["2024-07-24T19:42:37.010000"],["2024-07-24T19:42:38.010000"],["2024-07-24T19:42:39.010000"],["2024-07-24T19:42:40.010000"],["2024-07-24T19:42:41.010000"],["2024-07-24T19:42:42.010000"],["2024-07-24T19:42:43.010000"],["2024-07-24T19:42:44.010000"],["2024-07-24T19:42:45.010000"],["2024-07-24T19:42:46.010000"],["2024-07-24T19:42:47.010000"],["2024-07-24T19:42:48.010000"],["2024-07-24T19:42:49.010000"],["2024-07-24T19:42:50.010000"],["2024-07-24T19:42:51.010000"],["2024-07-24T19:42:52.010000"],["2024-07-24T19:42:53.010000"],["2024-07-24T19:42:54.010000"],["2024-07-24T19:42:55.010000"],["2024-07-24T19:42:56.010000"],["2024-07-24T19:42:57.010000"],["2024-07-24T19:42:58.010000"],["2024-07-24T19:42:59.010000"],["2024-07-24T19:43:00.010000"],["2024-07-24T19:43:01.010000"],["2024-07-24T19:43:02.010000"],["2024-07-24T19:43:03.010000"],["2024-07-24T19:43:04.010000"],["2024-07-24T19:43:05.010000"],["2024-07-24T19:43:06.010000"],["2024-07-24T19:43:07.010000"],["2024-07-24T19:43:08.010000"],["2024-07-24T19:43:09.010000"],["2024-07-24T19:43:10.010000"],["2024-07-24T19:43:11.010000"],["2024-07-24T19:43:12.010000"],["2024-07-24T19:43:13.010000"],["2024-07-24T19:43:14.010000"],["2024-07-24T19:43:15.010000"],["2024-07-24T19:43:16.010000"],["2024-07-24T19:43:17.010000"],["2024-07-24T19:43:18.010000"],["2024-07-24T19:43:19.010000"],["2024-07-24T19:43:20.010000"],["2024-07-24T19:43:21.010000"],["2024-07-24T19:43:22.010000"],["2024-07-24T19:43:23.010000"],["2024-07-24T19:43:24.010000"],["2024-07-24T19:43:25.010000"],["2024-07-24T19:43:26.010000"],["2024-07-24T19:43:27.010000"],["2024-07-24T19:43:28.010000"],["2024-07-24T19:43:29.010000"],["2024-07-24T19:43:30.010000"],["2024-07-24T19:43:31.010000"],["2024-07-24T19:43:32.010000"],["2024-07-24T19:43:33.010000"],["2024-07-24T19:43:34.010000"],["2024-07-24T19:43:35.010000"],["2024-07-24T19:43:36.010000"],["2024-07-24T19:43:37.010000"],["2024-07-24T19:43:38.010000"],["2024-07-24T19:43:39.010000"],["2024-07-24T19:43:40.010000"],["2024-07-24T19:43:41.010000"],["2024-07-24T19:43:42.010000"],["2024-07-24T19:43:43.010000"],["2024-07-24T19:43:44.010000"],["2024-07-24T19:43:45.010000"],["2024-07-24T19:43:46.010000"],["2024-07-24T19:43:47.010000"],["2024-07-24T19:43:48.010000"],["2024-07-24T19:43:49.010000"],["2024-07-24T19:43:50.010000"],["2024-07-24T19:43:51.010000"],["2024-07-24T19:43:52.010000"],["2024-07-24T19:43:53.010000"],["2024-07-24T19:43:54.010000"],["2024-07-24T19:43:55.010000"],["2024-07-24T19:43:56.010000"],["2024-07-24T19:43:57.010000"],["2024-07-24T19:43:58.010000"],["2024-07-24T19:43:59.010000"],["2024-07-24T19:44:00.010000"],["2024-07-24T19:44:01.010000"],["2024-07-24T19:44:02.010000"],["2024-07-24T19:44:03.010000"],["2024-07-24T19:44:04.010000"],["2024-07-24T19:44:05.010000"],["2024-07-24T19:44:06.010000"],["2024-07-24T19:44:07.010000"],["2024-07-24T19:44:08.010000"],["2024-07-24T19:44:09.010000"],["2024-07-24T19:44:10.010000"],["2024-07-24T19:44:11.010000"],["2024-07-24T19:44:12.010000"],["2024-07-24T19:44:13.010000"],["2024-07-24T19:44:14.010000"],["2024-07-24T19:44:15.010000"],["2024-07-24T19:44:16.010000"],["2024-07-24T19:44:17.010000"],["2024-07-24T19:44:18.010000"],["2024-07-24T19:44:19.010000"],["2024-07-24T19:44:20.010000"],["2024-07-24T19:44:21.010000"],["2024-07-24T19:44:22.010000"],["2024-07-24T19:44:23.010000"],["2024-07-24T19:44:24.010000"],["2024-07-24T19:44:25.010000"],["2024-07-24T19:44:26.010000"],["2024-07-24T19:44:27.010000"],["2024-07-24T19:44:28.010000"],["2024-07-24T19:44:29.010000"],["2024-07-24T19:44:30.010000"],["2024-07-24T19:44:31.010000"],["2024-07-24T19:44:32.010000"],["2024-07-24T19:44:33.010000"],["2024-07-24T19:44:34.010000"],["2024-07-24T19:44:35.010000"],["2024-07-24T19:44:36.010000"],["2024-07-24T19:44:37.010000"],["2024-07-24T19:44:38.010000"],["2024-07-24T19:44:39.010000"],["2024-07-24T19:44:40.010000"],["2024-07-24T19:44:41.010000"],["2024-07-24T19:44:42.010000"],["2024-07-24T19:44:43.010000"],["2024-07-24T19:44:44.010000"],["2024-07-24T19:44:45.010000"],["2024-07-24T19:44:46.010000"],["2024-07-24T19:44:47.010000"],["2024-07-24T19:44:48.010000"],["2024-07-24T19:44:49.010000"],["2024-07-24T19:44:50.010000"],["2024-07-24T19:44:51.010000"],["2024-07-24T19:44:52.010000"],["2024-07-24T19:44:53.010000"],["2024-07-24T19:44:54.010000"],["2024-07-24T19:44:55.010000"],["2024-07-24T19:44:56.010000"],["2024-07-24T19:44:57.010000"],["2024-07-24T19:44:58.010000"],["2024-07-24T19:44:59.010000"],["2024-07-24T19:45:00.010000"],["2024-07-24T19:45:01.010000"],["2024-07-24T19:45:02.010000"],["2024-07-24T19:45:03.010000"],["2024-07-24T19:45:04.010000"],["2024-07-24T19:45:05.010000"],["2024-07-24T19:45:06.010000"],["2024-07-24T19:45:07.010000"],["2024-07-24T19:45:08.010000"],["2024-07-24T19:45:09.010000"],["2024-07-24T19:45:10.010000"],["2024-07-24T19:45:11.010000"],["2024-07-24T19:45:12.010000"],["2024-07-24T19:45:13.010000"],["2024-07-24T19:45:14.010000"],["2024-07-24T19:45:15.010000"],["2024-07-24T19:45:16.010000"],["2024-07-24T19:45:17.010000"],["2024-07-24T19:45:18.010000"],["2024-07-24T19:45:19.010000"],["2024-07-24T19:45:20.010000"],["2024-07-24T19:45:21.010000"],["2024-07-24T19:45:22.010000"],["2024-07-24T19:45:23.010000"],["2024-07-24T19:45:24.010000"],["2024-07-24T19:45:25.010000"],["2024-07-24T19:45:26.010000"],["2024-07-24T19:45:27.010000"],["2024-07-24T19:45:28.010000"],["2024-07-24T19:45:29.010000"],["2024-07-24T19:45:30.010000"],["2024-07-24T19:45:31.010000"],["2024-07-24T19:45:32.010000"],["2024-07-24T19:45:33.010000"],["2024-07-24T19:45:34.010000"],["2024-07-24T19:45:35.010000"],["2024-07-24T19:45:36.010000"],["2024-07-24T19:45:37.010000"],["2024-07-24T19:45:38.010000"],["2024-07-24T19:45:39.010000"],["2024-07-24T19:45:40.010000"],["2024-07-24T19:45:41.010000"],["2024-07-24T19:45:42.010000"],["2024-07-24T19:45:43.010000"],["2024-07-24T19:45:44.010000"],["2024-07-24T19:45:45.010000"],["2024-07-24T19:45:46.010000"],["2024-07-24T19:45:47.010000"],["2024-07-24T19:45:48.010000"],["2024-07-24T19:45:49.010000"],["2024-07-24T19:45:50.010000"],["2024-07-24T19:45:51.010000"],["2024-07-24T19:45:52.010000"],["2024-07-24T19:45:53.010000"],["2024-07-24T19:45:54.010000"],["2024-07-24T19:45:55.010000"],["2024-07-24T19:45:56.010000"],["2024-07-24T19:45:57.010000"],["2024-07-24T19:45:58.010000"],["2024-07-24T19:45:59.010000"],["2024-07-24T19:46:00.010000"],["2024-07-24T19:46:01.010000"],["2024-07-24T19:46:02.010000"],["2024-07-24T19:46:03.010000"],["2024-07-24T19:46:04.010000"],["2024-07-24T19:46:05.010000"],["2024-07-24T19:46:06.010000"],["2024-07-24T19:46:07.010000"],["2024-07-24T19:46:08.010000"],["2024-07-24T19:46:09.010000"],["2024-07-24T19:46:10.010000"],["2024-07-24T19:46:11.010000"],["2024-07-24T19:46:12.010000"],["2024-07-24T19:46:13.010000"],["2024-07-24T19:46:14.010000"],["2024-07-24T19:46:15.010000"],["2024-07-24T19:46:16.010000"],["2024-07-24T19:46:17.010000"],["2024-07-24T19:46:18.010000"],["2024-07-24T19:46:19.010000"],["2024-07-24T19:46:20.010000"],["2024-07-24T19:46:21.010000"],["2024-07-24T19:46:22.010000"],["2024-07-24T19:46:23.010000"],["2024-07-24T19:46:24.010000"],["2024-07-24T19:46:25.010000"],["2024-07-24T19:46:26.010000"],["2024-07-24T19:46:27.010000"],["2024-07-24T19:46:28.010000"],["2024-07-24T19:46:29.010000"],["2024-07-24T19:46:30.010000"],["2024-07-24T19:46:31.010000"],["2024-07-24T19:46:32.010000"],["2024-07-24T19:46:33.010000"],["2024-07-24T19:46:34.010000"],["2024-07-24T19:46:35.010000"],["2024-07-24T19:46:36.010000"],["2024-07-24T19:46:37.010000"],["2024-07-24T19:46:38.010000"],["2024-07-24T19:46:39.010000"],["2024-07-24T19:46:40.010000"],["2024-07-24T19:46:41.010000"],["2024-07-24T19:46:42.010000"],["2024-07-24T19:46:43.010000"],["2024-07-24T19:46:44.010000"],["2024-07-24T19:46:45.010000"],["2024-07-24T19:46:46.010000"],["2024-07-24T19:46:47.010000"],["2024-07-24T19:46:48.010000"],["2024-07-24T19:46:49.010000"],["2024-07-24T19:46:50.010000"],["2024-07-24T19:46:51.010000"],["2024-07-24T19:46:52.010000"],["2024-07-24T19:46:53.010000"],["2024-07-24T19:46:54.010000"],["2024-07-24T19:46:55.010000"],["2024-07-24T19:46:56.010000"],["2024-07-24T19:46:57.010000"],["2024-07-24T19:46:58.010000"],["2024-07-24T19:46:59.010000"],["2024-07-24T19:47:00.010000"],["2024-07-24T19:47:01.010000"],["2024-07-24T19:47:02.010000"],["2024-07-24T19:47:03.010000"],["2024-07-24T19:47:04.010000"],["2024-07-24T19:47:05.010000"],["2024-07-24T19:47:06.010000"],["2024-07-24T19:47:07.010000"],["2024-07-24T19:47:08.010000"],["2024-07-24T19:47:09.010000"],["2024-07-24T19:47:10.010000"],["2024-07-24T19:47:11.010000"],["2024-07-24T19:47:12.010000"],["2024-07-24T19:47:13.010000"],["2024-07-24T19:47:14.010000"],["2024-07-24T19:47:15.010000"],["2024-07-24T19:47:16.010000"],["2024-07-24T19:47:17.010000"],["2024-07-24T19:47:18.010000"],["2024-07-24T19:47:19.010000"],["2024-07-24T19:47:20.010000"],["2024-07-24T19:47:21.010000"],["2024-07-24T19:47:22.010000"],["2024-07-24T19:47:23.010000"],["2024-07-24T19:47:24.010000"],["2024-07-24T19:47:25.010000"],["2024-07-24T19:47:26.010000"],["2024-07-24T19:47:27.010000"],["2024-07-24T19:47:28.010000"],["2024-07-24T19:47:29.010000"],["2024-07-24T19:47:30.010000"],["2024-07-24T19:47:31.010000"],["2024-07-24T19:47:32.010000"],["2024-07-24T19:47:33.010000"],["2024-07-24T19:47:34.010000"],["2024-07-24T19:47:35.010000"],["2024-07-24T19:47:36.010000"],["2024-07-24T19:47:37.010000"],["2024-07-24T19:47:38.010000"],["2024-07-24T19:47:39.010000"],["2024-07-24T19:47:40.010000"],["2024-07-24T19:47:41.010000"],["2024-07-24T19:47:42.010000"],["2024-07-24T19:47:43.010000"],["2024-07-24T19:47:44.010000"],["2024-07-24T19:47:45.010000"],["2024-07-24T19:47:46.010000"],["2024-07-24T19:47:47.010000"],["2024-07-24T19:47:48.010000"],["2024-07-24T19:47:49.010000"],["2024-07-24T19:47:50.010000"],["2024-07-24T19:47:51.010000"],["2024-07-24T19:47:52.010000"],["2024-07-24T19:47:53.010000"],["2024-07-24T19:47:54.010000"],["2024-07-24T19:47:55.010000"],["2024-07-24T19:47:56.010000"],["2024-07-24T19:47:57.010000"],["2024-07-24T19:47:58.010000"],["2024-07-24T19:47:59.010000"],["2024-07-24T19:48:00.010000"],["2024-07-24T19:48:01.010000"],["2024-07-24T19:48:02.010000"],["2024-07-24T19:48:03.010000"],["2024-07-24T19:48:04.010000"],["2024-07-24T19:48:05.010000"],["2024-07-24T19:48:06.010000"],["2024-07-24T19:48:07.010000"],["2024-07-24T19:48:08.010000"],["2024-07-24T19:48:09.010000"],["2024-07-24T19:48:10.010000"],["2024-07-24T19:48:11.010000"],["2024-07-24T19:48:12.010000"],["2024-07-24T19:48:13.010000"],["2024-07-24T19:48:14.010000"],["2024-07-24T19:48:15.010000"],["2024-07-24T19:48:16.010000"],["2024-07-24T19:48:17.010000"],["2024-07-24T19:48:18.010000"],["2024-07-24T19:48:19.010000"],["2024-07-24T19:48:20.010000"],["2024-07-24T19:48:21.010000"],["2024-07-24T19:48:22.010000"],["2024-07-24T19:48:23.010000"],["2024-07-24T19:48:24.010000"],["2024-07-24T19:48:25.010000"],["2024-07-24T19:48:26.010000"],["2024-07-24T19:48:27.010000"],["2024-07-24T19:48:28.010000"],["2024-07-24T19:48:29.010000"],["2024-07-24T19:48:30.010000"],["2024-07-24T19:48:31.010000"],["2024-07-24T19:48:32.010000"],["2024-07-24T19:48:33.010000"],["2024-07-24T19:48:34.010000"],["2024-07-24T19:48:35.010000"],["2024-07-24T19:48:36.010000"],["2024-07-24T19:48:37.010000"],["2024-07-24T19:48:38.010000"],["2024-07-24T19:48:39.010000"],["2024-07-24T19:48:40.010000"],["2024-07-24T19:48:41.010000"],["2024-07-24T19:48:42.010000"],["2024-07-24T19:48:43.010000"],["2024-07-24T19:48:44.010000"],["2024-07-24T19:48:45.010000"],["2024-07-24T19:48:46.010000"],["2024-07-24T19:48:47.010000"],["2024-07-24T19:48:48.010000"],["2024-07-24T19:48:49.010000"],["2024-07-24T19:48:50.010000"],["2024-07-24T19:48:51.010000"],["2024-07-24T19:48:52.010000"],["2024-07-24T19:48:53.010000"],["2024-07-24T19:48:54.010000"],["2024-07-24T19:48:55.010000"],["2024-07-24T19:48:56.010000"],["2024-07-24T19:48:57.010000"],["2024-07-24T19:48:58.010000"],["2024-07-24T19:48:59.010000"],["2024-07-24T19:49:00.010000"],["2024-07-24T19:49:01.010000"],["2024-07-24T19:49:02.010000"],["2024-07-24T19:49:03.010000"],["2024-07-24T19:49:04.010000"],["2024-07-24T19:49:05.010000"],["2024-07-24T19:49:06.010000"],["2024-07-24T19:49:07.010000"],["2024-07-24T19:49:08.010000"],["2024-07-24T19:49:09.010000"],["2024-07-24T19:49:10.010000"],["2024-07-24T19:49:11.010000"],["2024-07-24T19:49:12.010000"],["2024-07-24T19:49:13.010000"],["2024-07-24T19:49:14.010000"],["2024-07-24T19:49:15.010000"],["2024-07-24T19:49:16.010000"],["2024-07-24T19:49:17.010000"],["2024-07-24T19:49:18.010000"],["2024-07-24T19:49:19.010000"],["2024-07-24T19:49:20.010000"],["2024-07-24T19:49:21.010000"],["2024-07-24T19:49:22.010000"],["2024-07-24T19:49:23.010000"],["2024-07-24T19:49:24.010000"],["2024-07-24T19:49:25.010000"],["2024-07-24T19:49:26.010000"],["2024-07-24T19:49:27.010000"],["2024-07-24T19:49:28.010000"],["2024-07-24T19:49:29.010000"],["2024-07-24T19:49:30.010000"],["2024-07-24T19:49:31.010000"],["2024-07-24T19:49:32.010000"],["2024-07-24T19:49:33.010000"],["2024-07-24T19:49:34.010000"],["2024-07-24T19:49:35.010000"],["2024-07-24T19:49:36.010000"],["2024-07-24T19:49:37.010000"],["2024-07-24T19:49:38.010000"],["2024-07-24T19:49:39.010000"],["2024-07-24T19:49:40.010000"],["2024-07-24T19:49:41.010000"],["2024-07-24T19:49:42.010000"],["2024-07-24T19:49:43.010000"],["2024-07-24T19:49:44.010000"],["2024-07-24T19:49:45.010000"],["2024-07-24T19:49:46.010000"],["2024-07-24T19:49:47.010000"],["2024-07-24T19:49:48.010000"],["2024-07-24T19:49:49.010000"],["2024-07-24T19:49:50.010000"],["2024-07-24T19:49:51.010000"],["2024-07-24T19:49:52.010000"],["2024-07-24T19:49:53.010000"],["2024-07-24T19:49:54.010000"],["2024-07-24T19:49:55.010000"],["2024-07-24T19:49:56.010000"],["2024-07-24T19:49:57.010000"],["2024-07-24T19:49:58.010000"],["2024-07-24T19:49:59.010000"],["2024-07-24T19:50:00.010000"],["2024-07-24T19:50:01.010000"],["2024-07-24T19:50:02.010000"],["2024-07-24T19:50:03.010000"],["2024-07-24T19:50:04.010000"],["2024-07-24T19:50:05.010000"],["2024-07-24T19:50:06.010000"],["2024-07-24T19:50:07.010000"],["2024-07-24T19:50:08.010000"],["2024-07-24T19:50:09.010000"],["2024-07-24T19:50:10.010000"],["2024-07-24T19:50:11.010000"],["2024-07-24T19:50:12.010000"],["2024-07-24T19:50:13.010000"],["2024-07-24T19:50:14.010000"],["2024-07-24T19:50:15.010000"],["2024-07-24T19:50:16.010000"],["2024-07-24T19:50:17.010000"],["2024-07-24T19:50:18.010000"],["2024-07-24T19:50:19.010000"],["2024-07-24T19:50:20.010000"],["2024-07-24T19:50:21.010000"],["2024-07-24T19:50:22.010000"],["2024-07-24T19:50:23.010000"],["2024-07-24T19:50:24.010000"],["2024-07-24T19:50:25.010000"],["2024-07-24T19:50:26.010000"],["2024-07-24T19:50:27.010000"],["2024-07-24T19:50:28.010000"],["2024-07-24T19:50:29.010000"],["2024-07-24T19:50:30.010000"],["2024-07-24T19:50:31.010000"],["2024-07-24T19:50:32.010000"],["2024-07-24T19:50:33.010000"],["2024-07-24T19:50:34.010000"],["2024-07-24T19:50:35.010000"],["2024-07-24T19:50:36.010000"],["2024-07-24T19:50:37.010000"],["2024-07-24T19:50:38.010000"],["2024-07-24T19:50:39.010000"],["2024-07-24T19:50:40.010000"],["2024-07-24T19:50:41.010000"],["2024-07-24T19:50:42.010000"],["2024-07-24T19:50:43.010000"],["2024-07-24T19:50:44.010000"],["2024-07-24T19:50:45.010000"],["2024-07-24T19:50:46.010000"],["2024-07-24T19:50:47.010000"],["2024-07-24T19:50:48.010000"],["2024-07-24T19:50:49.010000"],["2024-07-24T19:50:50.010000"],["2024-07-24T19:50:51.010000"],["2024-07-24T19:50:52.010000"],["2024-07-24T19:50:53.010000"],["2024-07-24T19:50:54.010000"],["2024-07-24T19:50:55.010000"],["2024-07-24T19:50:56.010000"],["2024-07-24T19:50:57.010000"],["2024-07-24T19:50:58.010000"],["2024-07-24T19:50:59.010000"],["2024-07-24T19:51:00.010000"],["2024-07-24T19:51:01.010000"],["2024-07-24T19:51:02.010000"],["2024-07-24T19:51:03.010000"],["2024-07-24T19:51:04.010000"],["2024-07-24T19:51:05.010000"],["2024-07-24T19:51:06.010000"],["2024-07-24T19:51:07.010000"],["2024-07-24T19:51:08.010000"],["2024-07-24T19:51:09.010000"],["2024-07-24T19:51:10.010000"],["2024-07-24T19:51:11.010000"],["2024-07-24T19:51:12.010000"],["2024-07-24T19:51:13.010000"],["2024-07-24T19:51:14.010000"],["2024-07-24T19:51:15.010000"],["2024-07-24T19:51:16.010000"],["2024-07-24T19:51:17.010000"],["2024-07-24T19:51:18.010000"],["2024-07-24T19:51:19.010000"],["2024-07-24T19:51:20.010000"],["2024-07-24T19:51:21.010000"],["2024-07-24T19:51:22.010000"],["2024-07-24T19:51:23.010000"],["2024-07-24T19:51:24.010000"],["2024-07-24T19:51:25.010000"],["2024-07-24T19:51:26.010000"],["2024-07-24T19:51:27.010000"],["2024-07-24T19:51:28.010000"],["2024-07-24T19:51:29.010000"],["2024-07-24T19:51:30.010000"],["2024-07-24T19:51:31.010000"],["2024-07-24T19:51:32.010000"],["2024-07-24T19:51:33.010000"],["2024-07-24T19:51:34.010000"],["2024-07-24T19:51:35.010000"],["2024-07-24T19:51:36.010000"],["2024-07-24T19:51:37.010000"],["2024-07-24T19:51:38.010000"],["2024-07-24T19:51:39.010000"],["2024-07-24T19:51:40.010000"],["2024-07-24T19:51:41.010000"],["2024-07-24T19:51:42.010000"],["2024-07-24T19:51:43.010000"],["2024-07-24T19:51:44.010000"],["2024-07-24T19:51:45.010000"],["2024-07-24T19:51:46.010000"],["2024-07-24T19:51:47.010000"],["2024-07-24T19:51:48.010000"],["2024-07-24T19:51:49.010000"],["2024-07-24T19:51:50.010000"],["2024-07-24T19:51:51.010000"],["2024-07-24T19:51:52.010000"],["2024-07-24T19:51:53.010000"],["2024-07-24T19:51:54.010000"],["2024-07-24T19:51:55.010000"],["2024-07-24T19:51:56.010000"],["2024-07-24T19:51:57.010000"],["2024-07-24T19:51:58.010000"],["2024-07-24T19:51:59.010000"],["2024-07-24T19:52:00.010000"],["2024-07-24T19:52:01.010000"],["2024-07-24T19:52:02.010000"],["2024-07-24T19:52:03.010000"],["2024-07-24T19:52:04.010000"],["2024-07-24T19:52:05.010000"],["2024-07-24T19:52:06.010000"],["2024-07-24T19:52:07.010000"],["2024-07-24T19:52:08.010000"],["2024-07-24T19:52:09.010000"],["2024-07-24T19:52:10.010000"],["2024-07-24T19:52:11.010000"],["2024-07-24T19:52:12.010000"],["2024-07-24T19:52:13.010000"],["2024-07-24T19:52:14.010000"],["2024-07-24T19:52:15.010000"],["2024-07-24T19:52:16.010000"],["2024-07-24T19:52:17.010000"],["2024-07-24T19:52:18.010000"],["2024-07-24T19:52:19.010000"],["2024-07-24T19:52:20.010000"],["2024-07-24T19:52:21.010000"],["2024-07-24T19:52:22.010000"],["2024-07-24T19:52:23.010000"],["2024-07-24T19:52:24.010000"],["2024-07-24T19:52:25.010000"],["2024-07-24T19:52:26.010000"],["2024-07-24T19:52:27.010000"],["2024-07-24T19:52:28.010000"],["2024-07-24T19:52:29.010000"],["2024-07-24T19:52:30.010000"],["2024-07-24T19:52:31.010000"],["2024-07-24T19:52:32.010000"],["2024-07-24T19:52:33.010000"],["2024-07-24T19:52:34.010000"],["2024-07-24T19:52:35.010000"],["2024-07-24T19:52:36.010000"],["2024-07-24T19:52:37.010000"],["2024-07-24T19:52:38.010000"],["2024-07-24T19:52:39.010000"],["2024-07-24T19:52:40.010000"],["2024-07-24T19:52:41.010000"],["2024-07-24T19:52:42.010000"],["2024-07-24T19:52:43.010000"],["2024-07-24T19:52:44.010000"],["2024-07-24T19:52:45.010000"],["2024-07-24T19:52:46.010000"],["2024-07-24T19:52:47.010000"],["2024-07-24T19:52:48.010000"],["2024-07-24T19:52:49.010000"],["2024-07-24T19:52:50.010000"],["2024-07-24T19:52:51.010000"],["2024-07-24T19:52:52.010000"],["2024-07-24T19:52:53.010000"],["2024-07-24T19:52:54.010000"],["2024-07-24T19:52:55.010000"],["2024-07-24T19:52:56.010000"],["2024-07-24T19:52:57.010000"],["2024-07-24T19:52:58.010000"],["2024-07-24T19:52:59.010000"],["2024-07-24T19:53:00.010000"],["2024-07-24T19:53:01.010000"],["2024-07-24T19:53:02.010000"],["2024-07-24T19:53:03.010000"],["2024-07-24T19:53:04.010000"],["2024-07-24T19:53:05.010000"],["2024-07-24T19:53:06.010000"],["2024-07-24T19:53:07.010000"],["2024-07-24T19:53:08.010000"],["2024-07-24T19:53:09.010000"],["2024-07-24T19:53:10.010000"],["2024-07-24T19:53:11.010000"],["2024-07-24T19:53:12.010000"],["2024-07-24T19:53:13.010000"],["2024-07-24T19:53:14.010000"],["2024-07-24T19:53:15.010000"],["2024-07-24T19:53:16.010000"],["2024-07-24T19:53:17.010000"],["2024-07-24T19:53:18.010000"],["2024-07-24T19:53:19.010000"],["2024-07-24T19:53:20.010000"],["2024-07-24T19:53:21.010000"],["2024-07-24T19:53:22.010000"],["2024-07-24T19:53:23.010000"],["2024-07-24T19:53:24.010000"],["2024-07-24T19:53:25.010000"],["2024-07-24T19:53:26.010000"],["2024-07-24T19:53:27.010000"],["2024-07-24T19:53:28.010000"],["2024-07-24T19:53:29.010000"],["2024-07-24T19:53:30.010000"],["2024-07-24T19:53:31.010000"],["2024-07-24T19:53:32.010000"],["2024-07-24T19:53:33.010000"],["2024-07-24T19:53:34.010000"],["2024-07-24T19:53:35.010000"],["2024-07-24T19:53:36.010000"],["2024-07-24T19:53:37.010000"],["2024-07-24T19:53:38.010000"],["2024-07-24T19:53:39.010000"],["2024-07-24T19:53:40.010000"],["2024-07-24T19:53:41.010000"],["2024-07-24T19:53:42.010000"],["2024-07-24T19:53:43.010000"],["2024-07-24T19:53:44.010000"],["2024-07-24T19:53:45.010000"],["2024-07-24T19:53:46.010000"],["2024-07-24T19:53:47.010000"],["2024-07-24T19:53:48.010000"],["2024-07-24T19:53:49.010000"],["2024-07-24T19:53:50.010000"],["2024-07-24T19:53:51.010000"],["2024-07-24T19:53:52.010000"],["2024-07-24T19:53:53.010000"],["2024-07-24T19:53:54.010000"],["2024-07-24T19:53:55.010000"],["2024-07-24T19:53:56.010000"],["2024-07-24T19:53:57.010000"],["2024-07-24T19:53:58.010000"],["2024-07-24T19:53:59.010000"],["2024-07-24T19:54:00.010000"],["2024-07-24T19:54:01.010000"],["2024-07-24T19:54:02.010000"],["2024-07-24T19:54:03.010000"],["2024-07-24T19:54:04.010000"],["2024-07-24T19:54:05.010000"],["2024-07-24T19:54:06.010000"],["2024-07-24T19:54:07.010000"],["2024-07-24T19:54:08.010000"],["2024-07-24T19:54:09.010000"],["2024-07-24T19:54:10.010000"],["2024-07-24T19:54:11.010000"],["2024-07-24T19:54:12.010000"],["2024-07-24T19:54:13.010000"],["2024-07-24T19:54:14.010000"],["2024-07-24T19:54:15.010000"],["2024-07-24T19:54:16.010000"],["2024-07-24T19:54:17.010000"],["2024-07-24T19:54:18.010000"],["2024-07-24T19:54:19.010000"],["2024-07-24T19:54:20.010000"],["2024-07-24T19:54:21.010000"],["2024-07-24T19:54:22.010000"],["2024-07-24T19:54:23.010000"],["2024-07-24T19:54:24.010000"],["2024-07-24T19:54:25.010000"],["2024-07-24T19:54:26.010000"],["2024-07-24T19:54:27.010000"],["2024-07-24T19:54:28.010000"],["2024-07-24T19:54:29.010000"],["2024-07-24T19:54:30.010000"],["2024-07-24T19:54:31.010000"],["2024-07-24T19:54:32.010000"],["2024-07-24T19:54:33.010000"],["2024-07-24T19:54:34.010000"],["2024-07-24T19:54:35.010000"],["2024-07-24T19:54:36.010000"],["2024-07-24T19:54:37.010000"],["2024-07-24T19:54:38.010000"],["2024-07-24T19:54:39.010000"],["2024-07-24T19:54:40.010000"],["2024-07-24T19:54:41.010000"],["2024-07-24T19:54:42.010000"],["2024-07-24T19:54:43.010000"],["2024-07-24T19:54:44.010000"],["2024-07-24T19:54:45.010000"],["2024-07-24T19:54:46.010000"],["2024-07-24T19:54:47.010000"],["2024-07-24T19:54:48.010000"],["2024-07-24T19:54:49.010000"],["2024-07-24T19:54:50.010000"],["2024-07-24T19:54:51.010000"],["2024-07-24T19:54:52.010000"],["2024-07-24T19:54:53.010000"],["2024-07-24T19:54:54.010000"],["2024-07-24T19:54:55.010000"],["2024-07-24T19:54:56.010000"],["2024-07-24T19:54:57.010000"],["2024-07-24T19:54:58.010000"],["2024-07-24T19:54:59.010000"],["2024-07-24T19:55:00.010000"],["2024-07-24T19:55:01.010000"],["2024-07-24T19:55:02.010000"],["2024-07-24T19:55:03.010000"],["2024-07-24T19:55:04.010000"],["2024-07-24T19:55:05.010000"],["2024-07-24T19:55:06.010000"],["2024-07-24T19:55:07.010000"],["2024-07-24T19:55:08.010000"],["2024-07-24T19:55:09.010000"],["2024-07-24T19:55:10.010000"],["2024-07-24T19:55:11.010000"],["2024-07-24T19:55:12.010000"],["2024-07-24T19:55:13.010000"],["2024-07-24T19:55:14.010000"],["2024-07-24T19:55:15.010000"],["2024-07-24T19:55:16.010000"],["2024-07-24T19:55:17.010000"],["2024-07-24T19:55:18.010000"],["2024-07-24T19:55:19.010000"],["2024-07-24T19:55:20.010000"],["2024-07-24T19:55:21.010000"],["2024-07-24T19:55:22.010000"],["2024-07-24T19:55:23.010000"],["2024-07-24T19:55:24.010000"],["2024-07-24T19:55:25.010000"],["2024-07-24T19:55:26.010000"],["2024-07-24T19:55:27.010000"],["2024-07-24T19:55:28.010000"],["2024-07-24T19:55:29.010000"],["2024-07-24T19:55:30.010000"],["2024-07-24T19:55:31.010000"],["2024-07-24T19:55:32.010000"],["2024-07-24T19:55:33.010000"],["2024-07-24T19:55:34.010000"],["2024-07-24T19:55:35.010000"],["2024-07-24T19:55:36.010000"],["2024-07-24T19:55:37.010000"],["2024-07-24T19:55:38.010000"],["2024-07-24T19:55:39.010000"],["2024-07-24T19:55:40.010000"],["2024-07-24T19:55:41.010000"],["2024-07-24T19:55:42.010000"],["2024-07-24T19:55:43.010000"],["2024-07-24T19:55:44.010000"],["2024-07-24T19:55:45.010000"],["2024-07-24T19:55:46.010000"],["2024-07-24T19:55:47.010000"],["2024-07-24T19:55:48.010000"],["2024-07-24T19:55:49.010000"],["2024-07-24T19:55:50.010000"],["2024-07-24T19:55:51.010000"],["2024-07-24T19:55:52.010000"],["2024-07-24T19:55:53.010000"],["2024-07-24T19:55:54.010000"],["2024-07-24T19:55:55.010000"],["2024-07-24T19:55:56.010000"],["2024-07-24T19:55:57.010000"],["2024-07-24T19:55:58.010000"],["2024-07-24T19:55:59.010000"],["2024-07-24T19:56:00.010000"],["2024-07-24T19:56:01.010000"],["2024-07-24T19:56:02.010000"],["2024-07-24T19:56:03.010000"],["2024-07-24T19:56:04.010000"],["2024-07-24T19:56:05.010000"],["2024-07-24T19:56:06.010000"],["2024-07-24T19:56:07.010000"],["2024-07-24T19:56:08.010000"],["2024-07-24T19:56:09.010000"],["2024-07-24T19:56:10.010000"],["2024-07-24T19:56:11.010000"],["2024-07-24T19:56:12.010000"],["2024-07-24T19:56:13.010000"],["2024-07-24T19:56:14.010000"],["2024-07-24T19:56:15.010000"],["2024-07-24T19:56:16.010000"],["2024-07-24T19:56:17.010000"],["2024-07-24T19:56:18.010000"],["2024-07-24T19:56:19.010000"],["2024-07-24T19:56:20.010000"],["2024-07-24T19:56:21.010000"],["2024-07-24T19:56:22.010000"],["2024-07-24T19:56:23.010000"],["2024-07-24T19:56:24.010000"],["2024-07-24T19:56:25.010000"],["2024-07-24T19:56:26.010000"],["2024-07-24T19:56:27.010000"],["2024-07-24T19:56:28.010000"],["2024-07-24T19:56:29.010000"],["2024-07-24T19:56:30.010000"],["2024-07-24T19:56:31.010000"],["2024-07-24T19:56:32.010000"],["2024-07-24T19:56:33.010000"],["2024-07-24T19:56:34.010000"],["2024-07-24T19:56:35.010000"],["2024-07-24T19:56:36.010000"],["2024-07-24T19:56:37.010000"],["2024-07-24T19:56:38.010000"],["2024-07-24T19:56:39.010000"],["2024-07-24T19:56:40.010000"],["2024-07-24T19:56:41.010000"],["2024-07-24T19:56:42.010000"],["2024-07-24T19:56:43.010000"],["2024-07-24T19:56:44.010000"],["2024-07-24T19:56:45.010000"],["2024-07-24T19:56:46.010000"],["2024-07-24T19:56:47.010000"],["2024-07-24T19:56:48.010000"],["2024-07-24T19:56:49.010000"],["2024-07-24T19:56:50.010000"],["2024-07-24T19:56:51.010000"],["2024-07-24T19:56:52.010000"],["2024-07-24T19:56:53.010000"],["2024-07-24T19:56:54.010000"],["2024-07-24T19:56:55.010000"],["2024-07-24T19:56:56.010000"],["2024-07-24T19:56:57.010000"],["2024-07-24T19:56:58.010000"],["2024-07-24T19:56:59.010000"],["2024-07-24T19:57:00.010000"],["2024-07-24T19:57:01.010000"],["2024-07-24T19:57:02.010000"],["2024-07-24T19:57:03.010000"],["2024-07-24T19:57:04.010000"],["2024-07-24T19:57:05.010000"],["2024-07-24T19:57:06.010000"],["2024-07-24T19:57:07.010000"],["2024-07-24T19:57:08.010000"],["2024-07-24T19:57:09.010000"],["2024-07-24T19:57:10.010000"],["2024-07-24T19:57:11.010000"],["2024-07-24T19:57:12.010000"],["2024-07-24T19:57:13.010000"],["2024-07-24T19:57:14.010000"],["2024-07-24T19:57:15.010000"],["2024-07-24T19:57:16.010000"],["2024-07-24T19:57:17.010000"],["2024-07-24T19:57:18.010000"],["2024-07-24T19:57:19.010000"],["2024-07-24T19:57:20.010000"],["2024-07-24T19:57:21.010000"],["2024-07-24T19:57:22.010000"],["2024-07-24T19:57:23.010000"],["2024-07-24T19:57:24.010000"],["2024-07-24T19:57:25.010000"],["2024-07-24T19:57:26.010000"],["2024-07-24T19:57:27.010000"],["2024-07-24T19:57:28.010000"],["2024-07-24T19:57:29.010000"],["2024-07-24T19:57:30.010000"],["2024-07-24T19:57:31.010000"],["2024-07-24T19:57:32.010000"],["2024-07-24T19:57:33.010000"],["2024-07-24T19:57:34.010000"],["2024-07-24T19:57:35.010000"],["2024-07-24T19:57:36.010000"],["2024-07-24T19:57:37.010000"],["2024-07-24T19:57:38.010000"],["2024-07-24T19:57:39.010000"],["2024-07-24T19:57:40.010000"],["2024-07-24T19:57:41.010000"],["2024-07-24T19:57:42.010000"],["2024-07-24T19:57:43.010000"],["2024-07-24T19:57:44.010000"],["2024-07-24T19:57:45.010000"],["2024-07-24T19:57:46.010000"],["2024-07-24T19:57:47.010000"],["2024-07-24T19:57:48.010000"],["2024-07-24T19:57:49.010000"],["2024-07-24T19:57:50.010000"],["2024-07-24T19:57:51.010000"],["2024-07-24T19:57:52.010000"],["2024-07-24T19:57:53.010000"],["2024-07-24T19:57:54.010000"],["2024-07-24T19:57:55.010000"],["2024-07-24T19:57:56.010000"],["2024-07-24T19:57:57.010000"],["2024-07-24T19:57:58.010000"],["2024-07-24T19:57:59.010000"],["2024-07-24T19:58:00.010000"],["2024-07-24T19:58:01.010000"],["2024-07-24T19:58:02.010000"],["2024-07-24T19:58:03.010000"],["2024-07-24T19:58:04.010000"],["2024-07-24T19:58:05.010000"],["2024-07-24T19:58:06.010000"],["2024-07-24T19:58:07.010000"],["2024-07-24T19:58:08.010000"],["2024-07-24T19:58:09.010000"],["2024-07-24T19:58:10.010000"],["2024-07-24T19:58:11.010000"],["2024-07-24T19:58:12.010000"],["2024-07-24T19:58:13.010000"],["2024-07-24T19:58:14.010000"],["2024-07-24T19:58:15.010000"],["2024-07-24T19:58:16.010000"],["2024-07-24T19:58:17.010000"],["2024-07-24T19:58:18.010000"],["2024-07-24T19:58:19.010000"],["2024-07-24T19:58:20.010000"],["2024-07-24T19:58:21.010000"],["2024-07-24T19:58:22.010000"],["2024-07-24T19:58:23.010000"],["2024-07-24T19:58:24.010000"],["2024-07-24T19:58:25.010000"],["2024-07-24T19:58:26.010000"],["2024-07-24T19:58:27.010000"],["2024-07-24T19:58:28.010000"],["2024-07-24T19:58:29.010000"],["2024-07-24T19:58:30.010000"],["2024-07-24T19:58:31.010000"],["2024-07-24T19:58:32.010000"],["2024-07-24T19:58:33.010000"],["2024-07-24T19:58:34.010000"],["2024-07-24T19:58:35.010000"],["2024-07-24T19:58:36.010000"],["2024-07-24T19:58:37.010000"],["2024-07-24T19:58:38.010000"],["2024-07-24T19:58:39.010000"],["2024-07-24T19:58:40.010000"],["2024-07-24T19:58:41.010000"],["2024-07-24T19:58:42.010000"],["2024-07-24T19:58:43.010000"],["2024-07-24T19:58:44.010000"],["2024-07-24T19:58:45.010000"],["2024-07-24T19:58:46.010000"],["2024-07-24T19:58:47.010000"],["2024-07-24T19:58:48.010000"],["2024-07-24T19:58:49.010000"],["2024-07-24T19:58:50.010000"],["2024-07-24T19:58:51.010000"],["2024-07-24T19:58:52.010000"],["2024-07-24T19:58:53.010000"],["2024-07-24T19:58:54.010000"],["2024-07-24T19:58:55.010000"],["2024-07-24T19:58:56.010000"],["2024-07-24T19:58:57.010000"],["2024-07-24T19:58:58.010000"],["2024-07-24T19:58:59.010000"],["2024-07-24T19:59:00.010000"],["2024-07-24T19:59:01.010000"],["2024-07-24T19:59:02.010000"],["2024-07-24T19:59:03.010000"],["2024-07-24T19:59:04.010000"],["2024-07-24T19:59:05.010000"],["2024-07-24T19:59:06.010000"],["2024-07-24T19:59:07.010000"],["2024-07-24T19:59:08.010000"],["2024-07-24T19:59:09.010000"],["2024-07-24T19:59:10.010000"],["2024-07-24T19:59:11.010000"],["2024-07-24T19:59:12.010000"],["2024-07-24T19:59:13.010000"],["2024-07-24T19:59:14.010000"],["2024-07-24T19:59:15.010000"],["2024-07-24T19:59:16.010000"],["2024-07-24T19:59:17.010000"],["2024-07-24T19:59:18.010000"],["2024-07-24T19:59:19.010000"],["2024-07-24T19:59:20.010000"],["2024-07-24T19:59:21.010000"],["2024-07-24T19:59:22.010000"],["2024-07-24T19:59:23.010000"],["2024-07-24T19:59:24.010000"],["2024-07-24T19:59:25.010000"],["2024-07-24T19:59:26.010000"],["2024-07-24T19:59:27.010000"],["2024-07-24T19:59:28.010000"],["2024-07-24T19:59:29.010000"],["2024-07-24T19:59:30.010000"],["2024-07-24T19:59:31.010000"],["2024-07-24T19:59:32.010000"],["2024-07-24T19:59:33.010000"],["2024-07-24T19:59:34.010000"],["2024-07-24T19:59:35.010000"],["2024-07-24T19:59:36.010000"],["2024-07-24T19:59:37.010000"],["2024-07-24T19:59:38.010000"],["2024-07-24T19:59:39.010000"],["2024-07-24T19:59:40.010000"],["2024-07-24T19:59:41.010000"],["2024-07-24T19:59:42.010000"],["2024-07-24T19:59:43.010000"],["2024-07-24T19:59:44.010000"],["2024-07-24T19:59:45.010000"],["2024-07-24T19:59:46.010000"],["2024-07-24T19:59:47.010000"],["2024-07-24T19:59:48.010000"],["2024-07-24T19:59:49.010000"],["2024-07-24T19:59:50.010000"],["2024-07-24T19:59:51.010000"],["2024-07-24T19:59:52.010000"],["2024-07-24T19:59:53.010000"],["2024-07-24T19:59:54.010000"],["2024-07-24T19:59:55.010000"],["2024-07-24T19:59:56.010000"],["2024-07-24T19:59:57.010000"],["2024-07-24T19:59:58.010000"],["2024-07-24T19:59:59.010000"],["2024-07-24T20:00:00.010000"],["2024-07-24T20:00:01.010000"],["2024-07-24T20:00:02.010000"],["2024-07-24T20:00:03.010000"],["2024-07-24T20:00:04.010000"],["2024-07-24T20:00:05.010000"],["2024-07-24T20:00:06.010000"],["2024-07-24T20:00:07.010000"],["2024-07-24T20:00:08.010000"],["2024-07-24T20:00:09.010000"],["2024-07-24T20:00:10.010000"],["2024-07-24T20:00:11.010000"],["2024-07-24T20:00:12.010000"],["2024-07-24T20:00:13.010000"],["2024-07-24T20:00:14.010000"],["2024-07-24T20:00:15.010000"],["2024-07-24T20:00:16.010000"],["2024-07-24T20:00:17.010000"],["2024-07-24T20:00:18.010000"],["2024-07-24T20:00:19.010000"],["2024-07-24T20:00:20.010000"],["2024-07-24T20:00:21.010000"],["2024-07-24T20:00:22.010000"],["2024-07-24T20:00:23.010000"],["2024-07-24T20:00:24.010000"],["2024-07-24T20:00:25.010000"],["2024-07-24T20:00:26.010000"],["2024-07-24T20:00:27.010000"],["2024-07-24T20:00:28.010000"],["2024-07-24T20:00:29.010000"],["2024-07-24T20:00:30.010000"],["2024-07-24T20:00:31.010000"],["2024-07-24T20:00:32.010000"],["2024-07-24T20:00:33.010000"],["2024-07-24T20:00:34.010000"],["2024-07-24T20:00:35.010000"],["2024-07-24T20:00:36.010000"],["2024-07-24T20:00:37.010000"],["2024-07-24T20:00:38.010000"],["2024-07-24T20:00:39.010000"],["2024-07-24T20:00:40.010000"],["2024-07-24T20:00:41.010000"],["2024-07-24T20:00:42.010000"],["2024-07-24T20:00:43.010000"],["2024-07-24T20:00:44.010000"],["2024-07-24T20:00:45.010000"],["2024-07-24T20:00:46.010000"],["2024-07-24T20:00:47.010000"],["2024-07-24T20:00:48.010000"],["2024-07-24T20:00:49.010000"],["2024-07-24T20:00:50.010000"],["2024-07-24T20:00:51.010000"],["2024-07-24T20:00:52.010000"],["2024-07-24T20:00:53.010000"],["2024-07-24T20:00:54.010000"],["2024-07-24T20:00:55.010000"],["2024-07-24T20:00:56.010000"],["2024-07-24T20:00:57.010000"],["2024-07-24T20:00:58.010000"],["2024-07-24T20:00:59.010000"],["2024-07-24T20:01:00.010000"],["2024-07-24T20:01:01.010000"],["2024-07-24T20:01:02.010000"],["2024-07-24T20:01:03.010000"],["2024-07-24T20:01:04.010000"],["2024-07-24T20:01:05.010000"],["2024-07-24T20:01:06.010000"],["2024-07-24T20:01:07.010000"],["2024-07-24T20:01:08.010000"],["2024-07-24T20:01:09.010000"],["2024-07-24T20:01:10.010000"],["2024-07-24T20:01:11.010000"],["2024-07-24T20:01:12.010000"],["2024-07-24T20:01:13.010000"],["2024-07-24T20:01:14.010000"],["2024-07-24T20:01:15.010000"],["2024-07-24T20:01:16.010000"],["2024-07-24T20:01:17.010000"],["2024-07-24T20:01:18.010000"],["2024-07-24T20:01:19.010000"],["2024-07-24T20:01:20.010000"],["2024-07-24T20:01:21.010000"],["2024-07-24T20:01:22.010000"],["2024-07-24T20:01:23.010000"],["2024-07-24T20:01:24.010000"],["2024-07-24T20:01:25.010000"],["2024-07-24T20:01:26.010000"],["2024-07-24T20:01:27.010000"],["2024-07-24T20:01:28.010000"],["2024-07-24T20:01:29.010000"],["2024-07-24T20:01:30.010000"],["2024-07-24T20:01:31.010000"],["2024-07-24T20:01:32.010000"],["2024-07-24T20:01:33.010000"],["2024-07-24T20:01:34.010000"],["2024-07-24T20:01:35.010000"],["2024-07-24T20:01:36.010000"],["2024-07-24T20:01:37.010000"],["2024-07-24T20:01:38.010000"],["2024-07-24T20:01:39.010000"],["2024-07-24T20:01:40.010000"],["2024-07-24T20:01:41.010000"],["2024-07-24T20:01:42.010000"],["2024-07-24T20:01:43.010000"],["2024-07-24T20:01:44.010000"],["2024-07-24T20:01:45.010000"],["2024-07-24T20:01:46.010000"],["2024-07-24T20:01:47.010000"],["2024-07-24T20:01:48.010000"],["2024-07-24T20:01:49.010000"],["2024-07-24T20:01:50.010000"],["2024-07-24T20:01:51.010000"],["2024-07-24T20:01:52.010000"],["2024-07-24T20:01:53.010000"],["2024-07-24T20:01:54.010000"],["2024-07-24T20:01:55.010000"],["2024-07-24T20:01:56.010000"],["2024-07-24T20:01:57.010000"],["2024-07-24T20:01:58.010000"],["2024-07-24T20:01:59.010000"],["2024-07-24T20:02:00.010000"],["2024-07-24T20:02:01.010000"],["2024-07-24T20:02:02.010000"],["2024-07-24T20:02:03.010000"],["2024-07-24T20:02:04.010000"],["2024-07-24T20:02:05.010000"],["2024-07-24T20:02:06.010000"],["2024-07-24T20:02:07.010000"],["2024-07-24T20:02:08.010000"],["2024-07-24T20:02:09.010000"],["2024-07-24T20:02:10.010000"],["2024-07-24T20:02:11.010000"],["2024-07-24T20:02:12.010000"],["2024-07-24T20:02:13.010000"],["2024-07-24T20:02:14.010000"],["2024-07-24T20:02:15.010000"],["2024-07-24T20:02:16.010000"],["2024-07-24T20:02:17.010000"],["2024-07-24T20:02:18.010000"],["2024-07-24T20:02:19.010000"],["2024-07-24T20:02:20.010000"],["2024-07-24T20:02:21.010000"],["2024-07-24T20:02:22.010000"],["2024-07-24T20:02:23.010000"],["2024-07-24T20:02:24.010000"],["2024-07-24T20:02:25.010000"],["2024-07-24T20:02:26.010000"],["2024-07-24T20:02:27.010000"],["2024-07-24T20:02:28.010000"],["2024-07-24T20:02:29.010000"],["2024-07-24T20:02:30.010000"],["2024-07-24T20:02:31.010000"],["2024-07-24T20:02:32.010000"],["2024-07-24T20:02:33.010000"],["2024-07-24T20:02:34.010000"],["2024-07-24T20:02:35.010000"],["2024-07-24T20:02:36.010000"],["2024-07-24T20:02:37.010000"],["2024-07-24T20:02:38.010000"],["2024-07-24T20:02:39.010000"],["2024-07-24T20:02:40.010000"],["2024-07-24T20:02:41.010000"],["2024-07-24T20:02:42.010000"],["2024-07-24T20:02:43.010000"],["2024-07-24T20:02:44.010000"],["2024-07-24T20:02:45.010000"],["2024-07-24T20:02:46.010000"],["2024-07-24T20:02:47.010000"],["2024-07-24T20:02:48.010000"],["2024-07-24T20:02:49.010000"],["2024-07-24T20:02:50.010000"],["2024-07-24T20:02:51.010000"],["2024-07-24T20:02:52.010000"],["2024-07-24T20:02:53.010000"],["2024-07-24T20:02:54.010000"],["2024-07-24T20:02:55.010000"],["2024-07-24T20:02:56.010000"],["2024-07-24T20:02:57.010000"],["2024-07-24T20:02:58.010000"],["2024-07-24T20:02:59.010000"],["2024-07-24T20:03:00.010000"],["2024-07-24T20:03:01.010000"],["2024-07-24T20:03:02.010000"],["2024-07-24T20:03:03.010000"],["2024-07-24T20:03:04.010000"],["2024-07-24T20:03:05.010000"],["2024-07-24T20:03:06.010000"],["2024-07-24T20:03:07.010000"],["2024-07-24T20:03:08.010000"],["2024-07-24T20:03:09.010000"],["2024-07-24T20:03:10.010000"],["2024-07-24T20:03:11.010000"],["2024-07-24T20:03:12.010000"],["2024-07-24T20:03:13.010000"],["2024-07-24T20:03:14.010000"],["2024-07-24T20:03:15.010000"],["2024-07-24T20:03:16.010000"],["2024-07-24T20:03:17.010000"],["2024-07-24T20:03:18.010000"],["2024-07-24T20:03:19.010000"],["2024-07-24T20:03:20.010000"],["2024-07-24T20:03:21.010000"],["2024-07-24T20:03:22.010000"],["2024-07-24T20:03:23.010000"],["2024-07-24T20:03:24.010000"],["2024-07-24T20:03:25.010000"],["2024-07-24T20:03:26.010000"],["2024-07-24T20:03:27.010000"],["2024-07-24T20:03:28.010000"],["2024-07-24T20:03:29.010000"],["2024-07-24T20:03:30.010000"],["2024-07-24T20:03:31.010000"],["2024-07-24T20:03:32.010000"],["2024-07-24T20:03:33.010000"],["2024-07-24T20:03:34.010000"],["2024-07-24T20:03:35.010000"],["2024-07-24T20:03:36.010000"],["2024-07-24T20:03:37.010000"],["2024-07-24T20:03:38.010000"],["2024-07-24T20:03:39.010000"],["2024-07-24T20:03:40.010000"],["2024-07-24T20:03:41.010000"],["2024-07-24T20:03:42.010000"],["2024-07-24T20:03:43.010000"],["2024-07-24T20:03:44.010000"],["2024-07-24T20:03:45.010000"],["2024-07-24T20:03:46.010000"],["2024-07-24T20:03:47.010000"],["2024-07-24T20:03:48.010000"],["2024-07-24T20:03:49.010000"],["2024-07-24T20:03:50.010000"],["2024-07-24T20:03:51.010000"],["2024-07-24T20:03:52.010000"],["2024-07-24T20:03:53.010000"],["2024-07-24T20:03:54.010000"],["2024-07-24T20:03:55.010000"],["2024-07-24T20:03:56.010000"],["2024-07-24T20:03:57.010000"],["2024-07-24T20:03:58.010000"],["2024-07-24T20:03:59.010000"],["2024-07-24T20:04:00.010000"],["2024-07-24T20:04:01.010000"],["2024-07-24T20:04:02.010000"],["2024-07-24T20:04:03.010000"],["2024-07-24T20:04:04.010000"],["2024-07-24T20:04:05.010000"],["2024-07-24T20:04:06.010000"],["2024-07-24T20:04:07.010000"],["2024-07-24T20:04:08.010000"],["2024-07-24T20:04:09.010000"],["2024-07-24T20:04:10.010000"],["2024-07-24T20:04:11.010000"],["2024-07-24T20:04:12.010000"],["2024-07-24T20:04:13.010000"],["2024-07-24T20:04:14.010000"],["2024-07-24T20:04:15.010000"],["2024-07-24T20:04:16.010000"],["2024-07-24T20:04:17.010000"],["2024-07-24T20:04:18.010000"],["2024-07-24T20:04:19.010000"],["2024-07-24T20:04:20.010000"],["2024-07-24T20:04:21.010000"],["2024-07-24T20:04:22.010000"],["2024-07-24T20:04:23.010000"],["2024-07-24T20:04:24.010000"],["2024-07-24T20:04:25.010000"],["2024-07-24T20:04:26.010000"],["2024-07-24T20:04:27.010000"],["2024-07-24T20:04:28.010000"],["2024-07-24T20:04:29.010000"],["2024-07-24T20:04:30.010000"],["2024-07-24T20:04:31.010000"],["2024-07-24T20:04:32.010000"],["2024-07-24T20:04:33.010000"],["2024-07-24T20:04:34.010000"],["2024-07-24T20:04:35.010000"],["2024-07-24T20:04:36.010000"],["2024-07-24T20:04:37.010000"],["2024-07-24T20:04:38.010000"],["2024-07-24T20:04:39.010000"],["2024-07-24T20:04:40.010000"],["2024-07-24T20:04:41.010000"],["2024-07-24T20:04:42.010000"],["2024-07-24T20:04:43.010000"],["2024-07-24T20:04:44.010000"],["2024-07-24T20:04:45.010000"],["2024-07-24T20:04:46.010000"],["2024-07-24T20:04:47.010000"],["2024-07-24T20:04:48.010000"],["2024-07-24T20:04:49.010000"],["2024-07-24T20:04:50.010000"],["2024-07-24T20:04:51.010000"],["2024-07-24T20:04:52.010000"],["2024-07-24T20:04:53.010000"],["2024-07-24T20:04:54.010000"],["2024-07-24T20:04:55.010000"],["2024-07-24T20:04:56.010000"],["2024-07-24T20:04:57.010000"],["2024-07-24T20:04:58.010000"],["2024-07-24T20:04:59.010000"],["2024-07-24T20:05:00.010000"],["2024-07-24T20:05:01.010000"],["2024-07-24T20:05:02.010000"],["2024-07-24T20:05:03.010000"],["2024-07-24T20:05:04.010000"],["2024-07-24T20:05:05.010000"],["2024-07-24T20:05:06.010000"],["2024-07-24T20:05:07.010000"],["2024-07-24T20:05:08.010000"],["2024-07-24T20:05:09.010000"],["2024-07-24T20:05:10.010000"],["2024-07-24T20:05:11.010000"],["2024-07-24T20:05:12.010000"],["2024-07-24T20:05:13.010000"],["2024-07-24T20:05:14.010000"],["2024-07-24T20:05:15.010000"],["2024-07-24T20:05:16.010000"],["2024-07-24T20:05:17.010000"],["2024-07-24T20:05:18.010000"],["2024-07-24T20:05:19.010000"],["2024-07-24T20:05:20.010000"],["2024-07-24T20:05:21.010000"],["2024-07-24T20:05:22.010000"],["2024-07-24T20:05:23.010000"],["2024-07-24T20:05:24.010000"],["2024-07-24T20:05:25.010000"],["2024-07-24T20:05:26.010000"],["2024-07-24T20:05:27.010000"],["2024-07-24T20:05:28.010000"],["2024-07-24T20:05:29.010000"],["2024-07-24T20:05:30.010000"],["2024-07-24T20:05:31.010000"],["2024-07-24T20:05:32.010000"],["2024-07-24T20:05:33.010000"],["2024-07-24T20:05:34.010000"],["2024-07-24T20:05:35.010000"],["2024-07-24T20:05:36.010000"],["2024-07-24T20:05:37.010000"],["2024-07-24T20:05:38.010000"],["2024-07-24T20:05:39.010000"],["2024-07-24T20:05:40.010000"],["2024-07-24T20:05:41.010000"],["2024-07-24T20:05:42.010000"],["2024-07-24T20:05:43.010000"],["2024-07-24T20:05:44.010000"],["2024-07-24T20:05:45.010000"],["2024-07-24T20:05:46.010000"],["2024-07-24T20:05:47.010000"],["2024-07-24T20:05:48.010000"],["2024-07-24T20:05:49.010000"],["2024-07-24T20:05:50.010000"],["2024-07-24T20:05:51.010000"],["2024-07-24T20:05:52.010000"],["2024-07-24T20:05:53.010000"],["2024-07-24T20:05:54.010000"],["2024-07-24T20:05:55.010000"],["2024-07-24T20:05:56.010000"],["2024-07-24T20:05:57.010000"],["2024-07-24T20:05:58.010000"],["2024-07-24T20:05:59.010000"],["2024-07-24T20:06:00.010000"],["2024-07-24T20:06:01.010000"],["2024-07-24T20:06:02.010000"],["2024-07-24T20:06:03.010000"],["2024-07-24T20:06:04.010000"],["2024-07-24T20:06:05.010000"],["2024-07-24T20:06:06.010000"],["2024-07-24T20:06:07.010000"],["2024-07-24T20:06:08.010000"],["2024-07-24T20:06:09.010000"],["2024-07-24T20:06:10.010000"],["2024-07-24T20:06:11.010000"],["2024-07-24T20:06:12.010000"],["2024-07-24T20:06:13.010000"],["2024-07-24T20:06:14.010000"],["2024-07-24T20:06:15.010000"],["2024-07-24T20:06:16.010000"],["2024-07-24T20:06:17.010000"],["2024-07-24T20:06:18.010000"],["2024-07-24T20:06:19.010000"],["2024-07-24T20:06:20.010000"],["2024-07-24T20:06:21.010000"],["2024-07-24T20:06:22.010000"],["2024-07-24T20:06:23.010000"],["2024-07-24T20:06:24.010000"],["2024-07-24T20:06:25.010000"],["2024-07-24T20:06:26.010000"],["2024-07-24T20:06:27.010000"],["2024-07-24T20:06:28.010000"],["2024-07-24T20:06:29.010000"],["2024-07-24T20:06:30.010000"],["2024-07-24T20:06:31.010000"],["2024-07-24T20:06:32.010000"],["2024-07-24T20:06:33.010000"],["2024-07-24T20:06:34.010000"],["2024-07-24T20:06:35.010000"],["2024-07-24T20:06:36.010000"],["2024-07-24T20:06:37.010000"],["2024-07-24T20:06:38.010000"],["2024-07-24T20:06:39.010000"],["2024-07-24T20:06:40.010000"],["2024-07-24T20:06:41.010000"],["2024-07-24T20:06:42.010000"],["2024-07-24T20:06:43.010000"],["2024-07-24T20:06:44.010000"],["2024-07-24T20:06:45.010000"],["2024-07-24T20:06:46.010000"],["2024-07-24T20:06:47.010000"],["2024-07-24T20:06:48.010000"],["2024-07-24T20:06:49.010000"],["2024-07-24T20:06:50.010000"],["2024-07-24T20:06:51.010000"],["2024-07-24T20:06:52.010000"],["2024-07-24T20:06:53.010000"],["2024-07-24T20:06:54.010000"],["2024-07-24T20:06:55.010000"],["2024-07-24T20:06:56.010000"],["2024-07-24T20:06:57.010000"],["2024-07-24T20:06:58.010000"],["2024-07-24T20:06:59.010000"],["2024-07-24T20:07:00.010000"],["2024-07-24T20:07:01.010000"],["2024-07-24T20:07:02.010000"],["2024-07-24T20:07:03.010000"],["2024-07-24T20:07:04.010000"],["2024-07-24T20:07:05.010000"],["2024-07-24T20:07:06.010000"],["2024-07-24T20:07:07.010000"],["2024-07-24T20:07:08.010000"],["2024-07-24T20:07:09.010000"],["2024-07-24T20:07:10.010000"],["2024-07-24T20:07:11.010000"],["2024-07-24T20:07:12.010000"],["2024-07-24T20:07:13.010000"],["2024-07-24T20:07:14.010000"],["2024-07-24T20:07:15.010000"],["2024-07-24T20:07:16.010000"],["2024-07-24T20:07:17.010000"],["2024-07-24T20:07:18.010000"],["2024-07-24T20:07:19.010000"],["2024-07-24T20:07:20.010000"],["2024-07-24T20:07:21.010000"],["2024-07-24T20:07:22.010000"],["2024-07-24T20:07:23.010000"],["2024-07-24T20:07:24.010000"],["2024-07-24T20:07:25.010000"],["2024-07-24T20:07:26.010000"],["2024-07-24T20:07:27.010000"],["2024-07-24T20:07:28.010000"],["2024-07-24T20:07:29.010000"],["2024-07-24T20:07:30.010000"],["2024-07-24T20:07:31.010000"],["2024-07-24T20:07:32.010000"],["2024-07-24T20:07:33.010000"],["2024-07-24T20:07:34.010000"],["2024-07-24T20:07:35.010000"],["2024-07-24T20:07:36.010000"],["2024-07-24T20:07:37.010000"],["2024-07-24T20:07:38.010000"],["2024-07-24T20:07:39.010000"],["2024-07-24T20:07:40.010000"],["2024-07-24T20:07:41.010000"],["2024-07-24T20:07:42.010000"],["2024-07-24T20:07:43.010000"],["2024-07-24T20:07:44.010000"],["2024-07-24T20:07:45.010000"],["2024-07-24T20:07:46.010000"],["2024-07-24T20:07:47.010000"],["2024-07-24T20:07:48.010000"],["2024-07-24T20:07:49.010000"],["2024-07-24T20:07:50.010000"],["2024-07-24T20:07:51.010000"],["2024-07-24T20:07:52.010000"],["2024-07-24T20:07:53.010000"],["2024-07-24T20:07:54.010000"],["2024-07-24T20:07:55.010000"],["2024-07-24T20:07:56.010000"],["2024-07-24T20:07:57.010000"],["2024-07-24T20:07:58.010000"],["2024-07-24T20:07:59.010000"],["2024-07-24T20:08:00.010000"],["2024-07-24T20:08:01.010000"],["2024-07-24T20:08:02.010000"],["2024-07-24T20:08:03.010000"],["2024-07-24T20:08:04.010000"],["2024-07-24T20:08:05.010000"],["2024-07-24T20:08:06.010000"],["2024-07-24T20:08:07.010000"],["2024-07-24T20:08:08.010000"],["2024-07-24T20:08:09.010000"],["2024-07-24T20:08:10.010000"],["2024-07-24T20:08:11.010000"],["2024-07-24T20:08:12.010000"],["2024-07-24T20:08:13.010000"],["2024-07-24T20:08:14.010000"],["2024-07-24T20:08:15.010000"],["2024-07-24T20:08:16.010000"],["2024-07-24T20:08:17.010000"],["2024-07-24T20:08:18.010000"],["2024-07-24T20:08:19.010000"],["2024-07-24T20:08:20.010000"],["2024-07-24T20:08:21.010000"],["2024-07-24T20:08:22.010000"],["2024-07-24T20:08:23.010000"],["2024-07-24T20:08:24.010000"],["2024-07-24T20:08:25.010000"],["2024-07-24T20:08:26.010000"],["2024-07-24T20:08:27.010000"],["2024-07-24T20:08:28.010000"],["2024-07-24T20:08:29.010000"],["2024-07-24T20:08:30.010000"],["2024-07-24T20:08:31.010000"],["2024-07-24T20:08:32.010000"],["2024-07-24T20:08:33.010000"],["2024-07-24T20:08:34.010000"],["2024-07-24T20:08:35.010000"],["2024-07-24T20:08:36.010000"],["2024-07-24T20:08:37.010000"],["2024-07-24T20:08:38.010000"],["2024-07-24T20:08:39.010000"],["2024-07-24T20:08:40.010000"],["2024-07-24T20:08:41.010000"],["2024-07-24T20:08:42.010000"],["2024-07-24T20:08:43.010000"],["2024-07-24T20:08:44.010000"],["2024-07-24T20:08:45.010000"],["2024-07-24T20:08:46.010000"],["2024-07-24T20:08:47.010000"],["2024-07-24T20:08:48.010000"],["2024-07-24T20:08:49.010000"],["2024-07-24T20:08:50.010000"],["2024-07-24T20:08:51.010000"],["2024-07-24T20:08:52.010000"],["2024-07-24T20:08:53.010000"],["2024-07-24T20:08:54.010000"],["2024-07-24T20:08:55.010000"],["2024-07-24T20:08:56.010000"],["2024-07-24T20:08:57.010000"],["2024-07-24T20:08:58.010000"],["2024-07-24T20:08:59.010000"],["2024-07-24T20:09:00.010000"],["2024-07-24T20:09:01.010000"],["2024-07-24T20:09:02.010000"],["2024-07-24T20:09:03.010000"],["2024-07-24T20:09:04.010000"],["2024-07-24T20:09:05.010000"],["2024-07-24T20:09:06.010000"],["2024-07-24T20:09:07.010000"],["2024-07-24T20:09:08.010000"],["2024-07-24T20:09:09.010000"],["2024-07-24T20:09:10.010000"],["2024-07-24T20:09:11.010000"],["2024-07-24T20:09:12.010000"],["2024-07-24T20:09:13.010000"],["2024-07-24T20:09:14.010000"],["2024-07-24T20:09:15.010000"],["2024-07-24T20:09:16.010000"],["2024-07-24T20:09:17.010000"],["2024-07-24T20:09:18.010000"],["2024-07-24T20:09:19.010000"],["2024-07-24T20:09:20.010000"],["2024-07-24T20:09:21.010000"],["2024-07-24T20:09:22.010000"],["2024-07-24T20:09:23.010000"],["2024-07-24T20:09:24.010000"],["2024-07-24T20:09:25.010000"],["2024-07-24T20:09:26.010000"],["2024-07-24T20:09:27.010000"],["2024-07-24T20:09:28.010000"],["2024-07-24T20:09:29.010000"],["2024-07-24T20:09:30.010000"],["2024-07-24T20:09:31.010000"],["2024-07-24T20:09:32.010000"],["2024-07-24T20:09:33.010000"],["2024-07-24T20:09:34.010000"],["2024-07-24T20:09:35.010000"],["2024-07-24T20:09:36.010000"],["2024-07-24T20:09:37.010000"],["2024-07-24T20:09:38.010000"],["2024-07-24T20:09:39.010000"],["2024-07-24T20:09:40.010000"],["2024-07-24T20:09:41.010000"],["2024-07-24T20:09:42.010000"],["2024-07-24T20:09:43.010000"],["2024-07-24T20:09:44.010000"],["2024-07-24T20:09:45.010000"],["2024-07-24T20:09:46.010000"],["2024-07-24T20:09:47.010000"],["2024-07-24T20:09:48.010000"],["2024-07-24T20:09:49.010000"],["2024-07-24T20:09:50.010000"],["2024-07-24T20:09:51.010000"],["2024-07-24T20:09:52.010000"],["2024-07-24T20:09:53.010000"],["2024-07-24T20:09:54.010000"],["2024-07-24T20:09:55.010000"],["2024-07-24T20:09:56.010000"],["2024-07-24T20:09:57.010000"],["2024-07-24T20:09:58.010000"],["2024-07-24T20:09:59.010000"],["2024-07-24T20:10:00.010000"],["2024-07-24T20:10:01.010000"],["2024-07-24T20:10:02.010000"],["2024-07-24T20:10:03.010000"],["2024-07-24T20:10:04.010000"],["2024-07-24T20:10:05.010000"],["2024-07-24T20:10:06.010000"],["2024-07-24T20:10:07.010000"],["2024-07-24T20:10:08.010000"],["2024-07-24T20:10:09.010000"],["2024-07-24T20:10:10.010000"],["2024-07-24T20:10:11.010000"],["2024-07-24T20:10:12.010000"],["2024-07-24T20:10:13.010000"],["2024-07-24T20:10:14.010000"],["2024-07-24T20:10:15.010000"],["2024-07-24T20:10:16.010000"],["2024-07-24T20:10:17.010000"],["2024-07-24T20:10:18.010000"],["2024-07-24T20:10:19.010000"],["2024-07-24T20:10:20.010000"],["2024-07-24T20:10:21.010000"],["2024-07-24T20:10:22.010000"],["2024-07-24T20:10:23.010000"],["2024-07-24T20:10:24.010000"],["2024-07-24T20:10:25.010000"],["2024-07-24T20:10:26.010000"],["2024-07-24T20:10:27.010000"],["2024-07-24T20:10:28.010000"],["2024-07-24T20:10:29.010000"],["2024-07-24T20:10:30.010000"],["2024-07-24T20:10:31.010000"],["2024-07-24T20:10:32.010000"],["2024-07-24T20:10:33.010000"],["2024-07-24T20:10:34.010000"],["2024-07-24T20:10:35.010000"],["2024-07-24T20:10:36.010000"],["2024-07-24T20:10:37.010000"],["2024-07-24T20:10:38.010000"],["2024-07-24T20:10:39.010000"],["2024-07-24T20:10:40.010000"],["2024-07-24T20:10:41.010000"],["2024-07-24T20:10:42.010000"],["2024-07-24T20:10:43.010000"],["2024-07-24T20:10:44.010000"],["2024-07-24T20:10:45.010000"],["2024-07-24T20:10:46.010000"],["2024-07-24T20:10:47.010000"],["2024-07-24T20:10:48.010000"],["2024-07-24T20:10:49.010000"],["2024-07-24T20:10:50.010000"],["2024-07-24T20:10:51.010000"],["2024-07-24T20:10:52.010000"],["2024-07-24T20:10:53.010000"],["2024-07-24T20:10:54.010000"],["2024-07-24T20:10:55.010000"],["2024-07-24T20:10:56.010000"],["2024-07-24T20:10:57.010000"],["2024-07-24T20:10:58.010000"],["2024-07-24T20:10:59.010000"],["2024-07-24T20:11:00.010000"],["2024-07-24T20:11:01.010000"],["2024-07-24T20:11:02.010000"],["2024-07-24T20:11:03.010000"],["2024-07-24T20:11:04.010000"],["2024-07-24T20:11:05.010000"],["2024-07-24T20:11:06.010000"],["2024-07-24T20:11:07.010000"],["2024-07-24T20:11:08.010000"],["2024-07-24T20:11:09.010000"],["2024-07-24T20:11:10.010000"],["2024-07-24T20:11:11.010000"],["2024-07-24T20:11:12.010000"],["2024-07-24T20:11:13.010000"],["2024-07-24T20:11:14.010000"],["2024-07-24T20:11:15.010000"],["2024-07-24T20:11:16.010000"],["2024-07-24T20:11:17.010000"],["2024-07-24T20:11:18.010000"],["2024-07-24T20:11:19.010000"],["2024-07-24T20:11:20.010000"],["2024-07-24T20:11:21.010000"],["2024-07-24T20:11:22.010000"],["2024-07-24T20:11:23.010000"],["2024-07-24T20:11:24.010000"],["2024-07-24T20:11:25.010000"],["2024-07-24T20:11:26.010000"],["2024-07-24T20:11:27.010000"],["2024-07-24T20:11:28.010000"],["2024-07-24T20:11:29.010000"],["2024-07-24T20:11:30.010000"],["2024-07-24T20:11:31.010000"],["2024-07-24T20:11:32.010000"],["2024-07-24T20:11:33.010000"],["2024-07-24T20:11:34.010000"],["2024-07-24T20:11:35.010000"],["2024-07-24T20:11:36.010000"],["2024-07-24T20:11:37.010000"],["2024-07-24T20:11:38.010000"],["2024-07-24T20:11:39.010000"],["2024-07-24T20:11:40.010000"],["2024-07-24T20:11:41.010000"],["2024-07-24T20:11:42.010000"],["2024-07-24T20:11:43.010000"],["2024-07-24T20:11:44.010000"],["2024-07-24T20:11:45.010000"],["2024-07-24T20:11:46.010000"],["2024-07-24T20:11:47.010000"],["2024-07-24T20:11:48.010000"],["2024-07-24T20:11:49.010000"],["2024-07-24T20:11:50.010000"],["2024-07-24T20:11:51.010000"],["2024-07-24T20:11:52.010000"],["2024-07-24T20:11:53.010000"],["2024-07-24T20:11:54.010000"],["2024-07-24T20:11:55.010000"],["2024-07-24T20:11:56.010000"],["2024-07-24T20:11:57.010000"],["2024-07-24T20:11:58.010000"],["2024-07-24T20:11:59.010000"],["2024-07-24T20:12:00.010000"],["2024-07-24T20:12:01.010000"],["2024-07-24T20:12:02.010000"],["2024-07-24T20:12:03.010000"],["2024-07-24T20:12:04.010000"],["2024-07-24T20:12:05.010000"],["2024-07-24T20:12:06.010000"],["2024-07-24T20:12:07.010000"],["2024-07-24T20:12:08.010000"],["2024-07-24T20:12:09.010000"],["2024-07-24T20:12:10.010000"],["2024-07-24T20:12:11.010000"],["2024-07-24T20:12:12.010000"],["2024-07-24T20:12:13.010000"],["2024-07-24T20:12:14.010000"],["2024-07-24T20:12:15.010000"],["2024-07-24T20:12:16.010000"],["2024-07-24T20:12:17.010000"],["2024-07-24T20:12:18.010000"],["2024-07-24T20:12:19.010000"],["2024-07-24T20:12:20.010000"],["2024-07-24T20:12:21.010000"],["2024-07-24T20:12:22.010000"],["2024-07-24T20:12:23.010000"],["2024-07-24T20:12:24.010000"],["2024-07-24T20:12:25.010000"],["2024-07-24T20:12:26.010000"],["2024-07-24T20:12:27.010000"],["2024-07-24T20:12:28.010000"],["2024-07-24T20:12:29.010000"],["2024-07-24T20:12:30.010000"],["2024-07-24T20:12:31.010000"],["2024-07-24T20:12:32.010000"],["2024-07-24T20:12:33.010000"],["2024-07-24T20:12:34.010000"],["2024-07-24T20:12:35.010000"],["2024-07-24T20:12:36.010000"],["2024-07-24T20:12:37.010000"],["2024-07-24T20:12:38.010000"],["2024-07-24T20:12:39.010000"],["2024-07-24T20:12:40.010000"],["2024-07-24T20:12:41.010000"],["2024-07-24T20:12:42.010000"],["2024-07-24T20:12:43.010000"],["2024-07-24T20:12:44.010000"],["2024-07-24T20:12:45.010000"],["2024-07-24T20:12:46.010000"],["2024-07-24T20:12:47.010000"],["2024-07-24T20:12:48.010000"],["2024-07-24T20:12:49.010000"],["2024-07-24T20:12:50.010000"],["2024-07-24T20:12:51.010000"],["2024-07-24T20:12:52.010000"],["2024-07-24T20:12:53.010000"],["2024-07-24T20:12:54.010000"],["2024-07-24T20:12:55.010000"],["2024-07-24T20:12:56.010000"],["2024-07-24T20:12:57.010000"],["2024-07-24T20:12:58.010000"],["2024-07-24T20:12:59.010000"],["2024-07-24T20:13:00.010000"],["2024-07-24T20:13:01.010000"],["2024-07-24T20:13:02.010000"],["2024-07-24T20:13:03.010000"],["2024-07-24T20:13:04.010000"],["2024-07-24T20:13:05.010000"],["2024-07-24T20:13:06.010000"],["2024-07-24T20:13:07.010000"],["2024-07-24T20:13:08.010000"],["2024-07-24T20:13:09.010000"],["2024-07-24T20:13:10.010000"],["2024-07-24T20:13:11.010000"],["2024-07-24T20:13:12.010000"],["2024-07-24T20:13:13.010000"],["2024-07-24T20:13:14.010000"],["2024-07-24T20:13:15.010000"],["2024-07-24T20:13:16.010000"],["2024-07-24T20:13:17.010000"],["2024-07-24T20:13:18.010000"],["2024-07-24T20:13:19.010000"],["2024-07-24T20:13:20.010000"],["2024-07-24T20:13:21.010000"],["2024-07-24T20:13:22.010000"],["2024-07-24T20:13:23.010000"],["2024-07-24T20:13:24.010000"],["2024-07-24T20:13:25.010000"],["2024-07-24T20:13:26.010000"],["2024-07-24T20:13:27.010000"],["2024-07-24T20:13:28.010000"],["2024-07-24T20:13:29.010000"],["2024-07-24T20:13:30.010000"],["2024-07-24T20:13:31.010000"],["2024-07-24T20:13:32.010000"],["2024-07-24T20:13:33.010000"],["2024-07-24T20:13:34.010000"],["2024-07-24T20:13:35.010000"],["2024-07-24T20:13:36.010000"],["2024-07-24T20:13:37.010000"],["2024-07-24T20:13:38.010000"],["2024-07-24T20:13:39.010000"],["2024-07-24T20:13:40.010000"],["2024-07-24T20:13:41.010000"],["2024-07-24T20:13:42.010000"],["2024-07-24T20:13:43.010000"],["2024-07-24T20:13:44.010000"],["2024-07-24T20:13:45.010000"],["2024-07-24T20:13:46.010000"],["2024-07-24T20:13:47.010000"],["2024-07-24T20:13:48.010000"],["2024-07-24T20:13:49.010000"],["2024-07-24T20:13:50.010000"],["2024-07-24T20:13:51.010000"],["2024-07-24T20:13:52.010000"],["2024-07-24T20:13:53.010000"],["2024-07-24T20:13:54.010000"],["2024-07-24T20:13:55.010000"],["2024-07-24T20:13:56.010000"],["2024-07-24T20:13:57.010000"],["2024-07-24T20:13:58.010000"],["2024-07-24T20:13:59.010000"],["2024-07-24T20:14:00.010000"],["2024-07-24T20:14:01.010000"],["2024-07-24T20:14:02.010000"],["2024-07-24T20:14:03.010000"],["2024-07-24T20:14:04.010000"],["2024-07-24T20:14:05.010000"],["2024-07-24T20:14:06.010000"],["2024-07-24T20:14:07.010000"],["2024-07-24T20:14:08.010000"],["2024-07-24T20:14:09.010000"],["2024-07-24T20:14:10.010000"],["2024-07-24T20:14:11.010000"],["2024-07-24T20:14:12.010000"],["2024-07-24T20:14:13.010000"],["2024-07-24T20:14:14.010000"],["2024-07-24T20:14:15.010000"],["2024-07-24T20:14:16.010000"],["2024-07-24T20:14:17.010000"],["2024-07-24T20:14:18.010000"],["2024-07-24T20:14:19.010000"],["2024-07-24T20:14:20.010000"],["2024-07-24T20:14:21.010000"],["2024-07-24T20:14:22.010000"],["2024-07-24T20:14:23.010000"],["2024-07-24T20:14:24.010000"],["2024-07-24T20:14:25.010000"],["2024-07-24T20:14:26.010000"],["2024-07-24T20:14:27.010000"],["2024-07-24T20:14:28.010000"],["2024-07-24T20:14:29.010000"],["2024-07-24T20:14:30.010000"],["2024-07-24T20:14:31.010000"],["2024-07-24T20:14:32.010000"],["2024-07-24T20:14:33.010000"],["2024-07-24T20:14:34.010000"],["2024-07-24T20:14:35.010000"],["2024-07-24T20:14:36.010000"],["2024-07-24T20:14:37.010000"],["2024-07-24T20:14:38.010000"],["2024-07-24T20:14:39.010000"],["2024-07-24T20:14:40.010000"],["2024-07-24T20:14:41.010000"],["2024-07-24T20:14:42.010000"],["2024-07-24T20:14:43.010000"],["2024-07-24T20:14:44.010000"],["2024-07-24T20:14:45.010000"],["2024-07-24T20:14:46.010000"],["2024-07-24T20:14:47.010000"],["2024-07-24T20:14:48.010000"],["2024-07-24T20:14:49.010000"],["2024-07-24T20:14:50.010000"],["2024-07-24T20:14:51.010000"],["2024-07-24T20:14:52.010000"],["2024-07-24T20:14:53.010000"],["2024-07-24T20:14:54.010000"],["2024-07-24T20:14:55.010000"],["2024-07-24T20:14:56.010000"],["2024-07-24T20:14:57.010000"],["2024-07-24T20:14:58.010000"],["2024-07-24T20:14:59.010000"],["2024-07-24T20:15:00.010000"],["2024-07-24T20:15:01.010000"],["2024-07-24T20:15:02.010000"],["2024-07-24T20:15:03.010000"],["2024-07-24T20:15:04.010000"],["2024-07-24T20:15:05.010000"],["2024-07-24T20:15:06.010000"],["2024-07-24T20:15:07.010000"],["2024-07-24T20:15:08.010000"],["2024-07-24T20:15:09.010000"],["2024-07-24T20:15:10.010000"],["2024-07-24T20:15:11.010000"],["2024-07-24T20:15:12.010000"],["2024-07-24T20:15:13.010000"],["2024-07-24T20:15:14.010000"],["2024-07-24T20:15:15.010000"],["2024-07-24T20:15:16.010000"],["2024-07-24T20:15:17.010000"],["2024-07-24T20:15:18.010000"],["2024-07-24T20:15:19.010000"],["2024-07-24T20:15:20.010000"],["2024-07-24T20:15:21.010000"],["2024-07-24T20:15:22.010000"],["2024-07-24T20:15:23.010000"],["2024-07-24T20:15:24.010000"],["2024-07-24T20:15:25.010000"],["2024-07-24T20:15:26.010000"],["2024-07-24T20:15:27.010000"],["2024-07-24T20:15:28.010000"],["2024-07-24T20:15:29.010000"],["2024-07-24T20:15:30.010000"],["2024-07-24T20:15:31.010000"],["2024-07-24T20:15:32.010000"],["2024-07-24T20:15:33.010000"],["2024-07-24T20:15:34.010000"],["2024-07-24T20:15:35.010000"],["2024-07-24T20:15:36.010000"],["2024-07-24T20:15:37.010000"],["2024-07-24T20:15:38.010000"],["2024-07-24T20:15:39.010000"],["2024-07-24T20:15:40.010000"],["2024-07-24T20:15:41.010000"],["2024-07-24T20:15:42.010000"],["2024-07-24T20:15:43.010000"],["2024-07-24T20:15:44.010000"],["2024-07-24T20:15:45.010000"],["2024-07-24T20:15:46.010000"],["2024-07-24T20:15:47.010000"],["2024-07-24T20:15:48.010000"],["2024-07-24T20:15:49.010000"],["2024-07-24T20:15:50.010000"],["2024-07-24T20:15:51.010000"],["2024-07-24T20:15:52.010000"],["2024-07-24T20:15:53.010000"],["2024-07-24T20:15:54.010000"],["2024-07-24T20:15:55.010000"],["2024-07-24T20:15:56.010000"],["2024-07-24T20:15:57.010000"],["2024-07-24T20:15:58.010000"],["2024-07-24T20:15:59.010000"],["2024-07-24T20:16:00.010000"],["2024-07-24T20:16:01.010000"],["2024-07-24T20:16:02.010000"],["2024-07-24T20:16:03.010000"],["2024-07-24T20:16:04.010000"],["2024-07-24T20:16:05.010000"],["2024-07-24T20:16:06.010000"],["2024-07-24T20:16:07.010000"],["2024-07-24T20:16:08.010000"],["2024-07-24T20:16:09.010000"],["2024-07-24T20:16:10.010000"],["2024-07-24T20:16:11.010000"],["2024-07-24T20:16:12.010000"],["2024-07-24T20:16:13.010000"],["2024-07-24T20:16:14.010000"],["2024-07-24T20:16:15.010000"],["2024-07-24T20:16:16.010000"],["2024-07-24T20:16:17.010000"],["2024-07-24T20:16:18.010000"],["2024-07-24T20:16:19.010000"],["2024-07-24T20:16:20.010000"],["2024-07-24T20:16:21.010000"],["2024-07-24T20:16:22.010000"],["2024-07-24T20:16:23.010000"],["2024-07-24T20:16:24.010000"],["2024-07-24T20:16:25.010000"],["2024-07-24T20:16:26.010000"],["2024-07-24T20:16:27.010000"],["2024-07-24T20:16:28.010000"],["2024-07-24T20:16:29.010000"],["2024-07-24T20:16:30.010000"],["2024-07-24T20:16:31.010000"],["2024-07-24T20:16:32.010000"],["2024-07-24T20:16:33.010000"],["2024-07-24T20:16:34.010000"],["2024-07-24T20:16:35.010000"],["2024-07-24T20:16:36.010000"],["2024-07-24T20:16:37.010000"],["2024-07-24T20:16:38.010000"],["2024-07-24T20:16:39.010000"],["2024-07-24T20:16:40.010000"],["2024-07-24T20:16:41.010000"],["2024-07-24T20:16:42.010000"],["2024-07-24T20:16:43.010000"],["2024-07-24T20:16:44.010000"],["2024-07-24T20:16:45.010000"],["2024-07-24T20:16:46.010000"],["2024-07-24T20:16:47.010000"],["2024-07-24T20:16:48.010000"],["2024-07-24T20:16:49.010000"],["2024-07-24T20:16:50.010000"],["2024-07-24T20:16:51.010000"],["2024-07-24T20:16:52.010000"],["2024-07-24T20:16:53.010000"],["2024-07-24T20:16:54.010000"],["2024-07-24T20:16:55.010000"],["2024-07-24T20:16:56.010000"],["2024-07-24T20:16:57.010000"],["2024-07-24T20:16:58.010000"],["2024-07-24T20:16:59.010000"],["2024-07-24T20:17:00.010000"],["2024-07-24T20:17:01.010000"],["2024-07-24T20:17:02.010000"],["2024-07-24T20:17:03.010000"],["2024-07-24T20:17:04.010000"],["2024-07-24T20:17:05.010000"],["2024-07-24T20:17:06.010000"],["2024-07-24T20:17:07.010000"],["2024-07-24T20:17:08.010000"],["2024-07-24T20:17:09.010000"],["2024-07-24T20:17:10.010000"],["2024-07-24T20:17:11.010000"],["2024-07-24T20:17:12.010000"],["2024-07-24T20:17:13.010000"],["2024-07-24T20:17:14.010000"],["2024-07-24T20:17:15.010000"],["2024-07-24T20:17:16.010000"],["2024-07-24T20:17:17.010000"],["2024-07-24T20:17:18.010000"],["2024-07-24T20:17:19.010000"],["2024-07-24T20:17:20.010000"],["2024-07-24T20:17:21.010000"],["2024-07-24T20:17:22.010000"],["2024-07-24T20:17:23.010000"],["2024-07-24T20:17:24.010000"],["2024-07-24T20:17:25.010000"],["2024-07-24T20:17:26.010000"],["2024-07-24T20:17:27.010000"],["2024-07-24T20:17:28.010000"],["2024-07-24T20:17:29.010000"],["2024-07-24T20:17:30.010000"],["2024-07-24T20:17:31.010000"],["2024-07-24T20:17:32.010000"],["2024-07-24T20:17:33.010000"],["2024-07-24T20:17:34.010000"],["2024-07-24T20:17:35.010000"],["2024-07-24T20:17:36.010000"],["2024-07-24T20:17:37.010000"],["2024-07-24T20:17:38.010000"],["2024-07-24T20:17:39.010000"],["2024-07-24T20:17:40.010000"],["2024-07-24T20:17:41.010000"],["2024-07-24T20:17:42.010000"],["2024-07-24T20:17:43.010000"],["2024-07-24T20:17:44.010000"],["2024-07-24T20:17:45.010000"],["2024-07-24T20:17:46.010000"],["2024-07-24T20:17:47.010000"],["2024-07-24T20:17:48.010000"],["2024-07-24T20:17:49.010000"],["2024-07-24T20:17:50.010000"],["2024-07-24T20:17:51.010000"],["2024-07-24T20:17:52.010000"],["2024-07-24T20:17:53.010000"],["2024-07-24T20:17:54.010000"],["2024-07-24T20:17:55.010000"],["2024-07-24T20:17:56.010000"],["2024-07-24T20:17:57.010000"],["2024-07-24T20:17:58.010000"],["2024-07-24T20:17:59.010000"],["2024-07-24T20:18:00.010000"],["2024-07-24T20:18:01.010000"],["2024-07-24T20:18:02.010000"],["2024-07-24T20:18:03.010000"],["2024-07-24T20:18:04.010000"],["2024-07-24T20:18:05.010000"],["2024-07-24T20:18:06.010000"],["2024-07-24T20:18:07.010000"],["2024-07-24T20:18:08.010000"],["2024-07-24T20:18:09.010000"],["2024-07-24T20:18:10.010000"],["2024-07-24T20:18:11.010000"],["2024-07-24T20:18:12.010000"],["2024-07-24T20:18:13.010000"],["2024-07-24T20:18:14.010000"],["2024-07-24T20:18:15.010000"],["2024-07-24T20:18:16.010000"],["2024-07-24T20:18:17.010000"],["2024-07-24T20:18:18.010000"],["2024-07-24T20:18:19.010000"],["2024-07-24T20:18:20.010000"],["2024-07-24T20:18:21.010000"],["2024-07-24T20:18:22.010000"],["2024-07-24T20:18:23.010000"],["2024-07-24T20:18:24.010000"],["2024-07-24T20:18:25.010000"],["2024-07-24T20:18:26.010000"],["2024-07-24T20:18:27.010000"],["2024-07-24T20:18:28.010000"],["2024-07-24T20:18:29.010000"],["2024-07-24T20:18:30.010000"],["2024-07-24T20:18:31.010000"],["2024-07-24T20:18:32.010000"],["2024-07-24T20:18:33.010000"],["2024-07-24T20:18:34.010000"],["2024-07-24T20:18:35.010000"],["2024-07-24T20:18:36.010000"],["2024-07-24T20:18:37.010000"],["2024-07-24T20:18:38.010000"],["2024-07-24T20:18:39.010000"],["2024-07-24T20:18:40.010000"],["2024-07-24T20:18:41.010000"],["2024-07-24T20:18:42.010000"],["2024-07-24T20:18:43.010000"],["2024-07-24T20:18:44.010000"],["2024-07-24T20:18:45.010000"],["2024-07-24T20:18:46.010000"],["2024-07-24T20:18:47.010000"],["2024-07-24T20:18:48.010000"],["2024-07-24T20:18:49.010000"],["2024-07-24T20:18:50.010000"],["2024-07-24T20:18:51.010000"],["2024-07-24T20:18:52.010000"],["2024-07-24T20:18:53.010000"],["2024-07-24T20:18:54.010000"],["2024-07-24T20:18:55.010000"],["2024-07-24T20:18:56.010000"],["2024-07-24T20:18:57.010000"],["2024-07-24T20:18:58.010000"],["2024-07-24T20:18:59.010000"],["2024-07-24T20:19:00.010000"],["2024-07-24T20:19:01.010000"],["2024-07-24T20:19:02.010000"],["2024-07-24T20:19:03.010000"],["2024-07-24T20:19:04.010000"],["2024-07-24T20:19:05.010000"],["2024-07-24T20:19:06.010000"],["2024-07-24T20:19:07.010000"],["2024-07-24T20:19:08.010000"],["2024-07-24T20:19:09.010000"],["2024-07-24T20:19:10.010000"],["2024-07-24T20:19:11.010000"],["2024-07-24T20:19:12.010000"],["2024-07-24T20:19:13.010000"],["2024-07-24T20:19:14.010000"],["2024-07-24T20:19:15.010000"],["2024-07-24T20:19:16.010000"],["2024-07-24T20:19:17.010000"],["2024-07-24T20:19:18.010000"],["2024-07-24T20:19:19.010000"],["2024-07-24T20:19:20.010000"],["2024-07-24T20:19:21.010000"],["2024-07-24T20:19:22.010000"],["2024-07-24T20:19:23.010000"],["2024-07-24T20:19:24.010000"],["2024-07-24T20:19:25.010000"],["2024-07-24T20:19:26.010000"],["2024-07-24T20:19:27.010000"],["2024-07-24T20:19:28.010000"],["2024-07-24T20:19:29.010000"],["2024-07-24T20:19:30.010000"],["2024-07-24T20:19:31.010000"],["2024-07-24T20:19:32.010000"],["2024-07-24T20:19:33.010000"],["2024-07-24T20:19:34.010000"],["2024-07-24T20:19:35.010000"],["2024-07-24T20:19:36.010000"],["2024-07-24T20:19:37.010000"],["2024-07-24T20:19:38.010000"],["2024-07-24T20:19:39.010000"],["2024-07-24T20:19:40.010000"],["2024-07-24T20:19:41.010000"],["2024-07-24T20:19:42.010000"],["2024-07-24T20:19:43.010000"],["2024-07-24T20:19:44.010000"],["2024-07-24T20:19:45.010000"],["2024-07-24T20:19:46.010000"],["2024-07-24T20:19:47.010000"],["2024-07-24T20:19:48.010000"],["2024-07-24T20:19:49.010000"],["2024-07-24T20:19:50.010000"],["2024-07-24T20:19:51.010000"],["2024-07-24T20:19:52.010000"],["2024-07-24T20:19:53.010000"],["2024-07-24T20:19:54.010000"],["2024-07-24T20:19:55.010000"],["2024-07-24T20:19:56.010000"],["2024-07-24T20:19:57.010000"],["2024-07-24T20:19:58.010000"],["2024-07-24T20:19:59.010000"],["2024-07-24T20:20:00.010000"],["2024-07-24T20:20:01.010000"],["2024-07-24T20:20:02.010000"],["2024-07-24T20:20:03.010000"],["2024-07-24T20:20:04.010000"],["2024-07-24T20:20:05.010000"],["2024-07-24T20:20:06.010000"],["2024-07-24T20:20:07.010000"],["2024-07-24T20:20:08.010000"],["2024-07-24T20:20:09.010000"],["2024-07-24T20:20:10.010000"],["2024-07-24T20:20:11.010000"],["2024-07-24T20:20:12.010000"],["2024-07-24T20:20:13.010000"],["2024-07-24T20:20:14.010000"],["2024-07-24T20:20:15.010000"],["2024-07-24T20:20:16.010000"],["2024-07-24T20:20:17.010000"],["2024-07-24T20:20:18.010000"],["2024-07-24T20:20:19.010000"],["2024-07-24T20:20:20.010000"],["2024-07-24T20:20:21.010000"],["2024-07-24T20:20:22.010000"],["2024-07-24T20:20:23.010000"],["2024-07-24T20:20:24.010000"],["2024-07-24T20:20:25.010000"],["2024-07-24T20:20:26.010000"],["2024-07-24T20:20:27.010000"],["2024-07-24T20:20:28.010000"],["2024-07-24T20:20:29.010000"],["2024-07-24T20:20:30.010000"],["2024-07-24T20:20:31.010000"],["2024-07-24T20:20:32.010000"],["2024-07-24T20:20:33.010000"],["2024-07-24T20:20:34.010000"],["2024-07-24T20:20:35.010000"],["2024-07-24T20:20:36.010000"],["2024-07-24T20:20:37.010000"],["2024-07-24T20:20:38.010000"],["2024-07-24T20:20:39.010000"],["2024-07-24T20:20:40.010000"],["2024-07-24T20:20:41.010000"],["2024-07-24T20:20:42.010000"],["2024-07-24T20:20:43.010000"],["2024-07-24T20:20:44.010000"],["2024-07-24T20:20:45.010000"],["2024-07-24T20:20:46.010000"],["2024-07-24T20:20:47.010000"],["2024-07-24T20:20:48.010000"],["2024-07-24T20:20:49.010000"],["2024-07-24T20:20:50.010000"],["2024-07-24T20:20:51.010000"],["2024-07-24T20:20:52.010000"],["2024-07-24T20:20:53.010000"],["2024-07-24T20:20:54.010000"],["2024-07-24T20:20:55.010000"],["2024-07-24T20:20:56.010000"],["2024-07-24T20:20:57.010000"],["2024-07-24T20:20:58.010000"],["2024-07-24T20:20:59.010000"],["2024-07-24T20:21:00.010000"],["2024-07-24T20:21:01.010000"],["2024-07-24T20:21:02.010000"],["2024-07-24T20:21:03.010000"],["2024-07-24T20:21:04.010000"],["2024-07-24T20:21:05.010000"],["2024-07-24T20:21:06.010000"],["2024-07-24T20:21:07.010000"],["2024-07-24T20:21:08.010000"],["2024-07-24T20:21:09.010000"],["2024-07-24T20:21:10.010000"],["2024-07-24T20:21:11.010000"],["2024-07-24T20:21:12.010000"],["2024-07-24T20:21:13.010000"],["2024-07-24T20:21:14.010000"],["2024-07-24T20:21:15.010000"],["2024-07-24T20:21:16.010000"],["2024-07-24T20:21:17.010000"],["2024-07-24T20:21:18.010000"],["2024-07-24T20:21:19.010000"],["2024-07-24T20:21:20.010000"],["2024-07-24T20:21:21.010000"],["2024-07-24T20:21:22.010000"],["2024-07-24T20:21:23.010000"],["2024-07-24T20:21:24.010000"],["2024-07-24T20:21:25.010000"],["2024-07-24T20:21:26.010000"],["2024-07-24T20:21:27.010000"],["2024-07-24T20:21:28.010000"],["2024-07-24T20:21:29.010000"],["2024-07-24T20:21:30.010000"],["2024-07-24T20:21:31.010000"],["2024-07-24T20:21:32.010000"],["2024-07-24T20:21:33.010000"],["2024-07-24T20:21:34.010000"],["2024-07-24T20:21:35.010000"],["2024-07-24T20:21:36.010000"],["2024-07-24T20:21:37.010000"],["2024-07-24T20:21:38.010000"],["2024-07-24T20:21:39.010000"],["2024-07-24T20:21:40.010000"],["2024-07-24T20:21:41.010000"],["2024-07-24T20:21:42.010000"],["2024-07-24T20:21:43.010000"],["2024-07-24T20:21:44.010000"],["2024-07-24T20:21:45.010000"],["2024-07-24T20:21:46.010000"],["2024-07-24T20:21:47.010000"],["2024-07-24T20:21:48.010000"],["2024-07-24T20:21:49.010000"],["2024-07-24T20:21:50.010000"],["2024-07-24T20:21:51.010000"],["2024-07-24T20:21:52.010000"],["2024-07-24T20:21:53.010000"],["2024-07-24T20:21:54.010000"],["2024-07-24T20:21:55.010000"],["2024-07-24T20:21:56.010000"],["2024-07-24T20:21:57.010000"],["2024-07-24T20:21:58.010000"],["2024-07-24T20:21:59.010000"],["2024-07-24T20:22:00.010000"],["2024-07-24T20:22:01.010000"],["2024-07-24T20:22:02.010000"],["2024-07-24T20:22:03.010000"],["2024-07-24T20:22:04.010000"],["2024-07-24T20:22:05.010000"],["2024-07-24T20:22:06.010000"],["2024-07-24T20:22:07.010000"],["2024-07-24T20:22:08.010000"],["2024-07-24T20:22:09.010000"],["2024-07-24T20:22:10.010000"],["2024-07-24T20:22:11.010000"],["2024-07-24T20:22:12.010000"],["2024-07-24T20:22:13.010000"],["2024-07-24T20:22:14.010000"],["2024-07-24T20:22:15.010000"],["2024-07-24T20:22:16.010000"],["2024-07-24T20:22:17.010000"],["2024-07-24T20:22:18.010000"],["2024-07-24T20:22:19.010000"],["2024-07-24T20:22:20.010000"],["2024-07-24T20:22:21.010000"],["2024-07-24T20:22:22.010000"],["2024-07-24T20:22:23.010000"],["2024-07-24T20:22:24.010000"],["2024-07-24T20:22:25.010000"],["2024-07-24T20:22:26.010000"],["2024-07-24T20:22:27.010000"],["2024-07-24T20:22:28.010000"],["2024-07-24T20:22:29.010000"],["2024-07-24T20:22:30.010000"],["2024-07-24T20:22:31.010000"],["2024-07-24T20:22:32.010000"],["2024-07-24T20:22:33.010000"],["2024-07-24T20:22:34.010000"],["2024-07-24T20:22:35.010000"],["2024-07-24T20:22:36.010000"],["2024-07-24T20:22:37.010000"],["2024-07-24T20:22:38.010000"],["2024-07-24T20:22:39.010000"],["2024-07-24T20:22:40.010000"],["2024-07-24T20:22:41.010000"],["2024-07-24T20:22:42.010000"],["2024-07-24T20:22:43.010000"],["2024-07-24T20:22:44.010000"],["2024-07-24T20:22:45.010000"],["2024-07-24T20:22:46.010000"],["2024-07-24T20:22:47.010000"],["2024-07-24T20:22:48.010000"],["2024-07-24T20:22:49.010000"],["2024-07-24T20:22:50.010000"],["2024-07-24T20:22:51.010000"],["2024-07-24T20:22:52.010000"],["2024-07-24T20:22:53.010000"],["2024-07-24T20:22:54.010000"],["2024-07-24T20:22:55.010000"],["2024-07-24T20:22:56.010000"],["2024-07-24T20:22:57.010000"],["2024-07-24T20:22:58.010000"],["2024-07-24T20:22:59.010000"],["2024-07-24T20:23:00.010000"],["2024-07-24T20:23:01.010000"],["2024-07-24T20:23:02.010000"],["2024-07-24T20:23:03.010000"],["2024-07-24T20:23:04.010000"],["2024-07-24T20:23:05.010000"],["2024-07-24T20:23:06.010000"],["2024-07-24T20:23:07.010000"],["2024-07-24T20:23:08.010000"],["2024-07-24T20:23:09.010000"],["2024-07-24T20:23:10.010000"],["2024-07-24T20:23:11.010000"],["2024-07-24T20:23:12.010000"],["2024-07-24T20:23:13.010000"],["2024-07-24T20:23:14.010000"],["2024-07-24T20:23:15.010000"],["2024-07-24T20:23:16.010000"],["2024-07-24T20:23:17.010000"],["2024-07-24T20:23:18.010000"],["2024-07-24T20:23:19.010000"],["2024-07-24T20:23:20.010000"],["2024-07-24T20:23:21.010000"],["2024-07-24T20:23:22.010000"],["2024-07-24T20:23:23.010000"],["2024-07-24T20:23:24.010000"],["2024-07-24T20:23:25.010000"],["2024-07-24T20:23:26.010000"],["2024-07-24T20:23:27.010000"],["2024-07-24T20:23:28.010000"],["2024-07-24T20:23:29.010000"],["2024-07-24T20:23:30.010000"],["2024-07-24T20:23:31.010000"],["2024-07-24T20:23:32.010000"],["2024-07-24T20:23:33.010000"],["2024-07-24T20:23:34.010000"],["2024-07-24T20:23:35.010000"],["2024-07-24T20:23:36.010000"],["2024-07-24T20:23:37.010000"],["2024-07-24T20:23:38.010000"],["2024-07-24T20:23:39.010000"],["2024-07-24T20:23:40.010000"],["2024-07-24T20:23:41.010000"],["2024-07-24T20:23:42.010000"],["2024-07-24T20:23:43.010000"],["2024-07-24T20:23:44.010000"],["2024-07-24T20:23:45.010000"],["2024-07-24T20:23:46.010000"],["2024-07-24T20:23:47.010000"],["2024-07-24T20:23:48.010000"],["2024-07-24T20:23:49.010000"],["2024-07-24T20:23:50.010000"],["2024-07-24T20:23:51.010000"],["2024-07-24T20:23:52.010000"],["2024-07-24T20:23:53.010000"],["2024-07-24T20:23:54.010000"],["2024-07-24T20:23:55.010000"],["2024-07-24T20:23:56.010000"],["2024-07-24T20:23:57.010000"],["2024-07-24T20:23:58.010000"],["2024-07-24T20:23:59.010000"],["2024-07-24T20:24:00.010000"],["2024-07-24T20:24:01.010000"],["2024-07-24T20:24:02.010000"],["2024-07-24T20:24:03.010000"],["2024-07-24T20:24:04.010000"],["2024-07-24T20:24:05.010000"],["2024-07-24T20:24:06.010000"],["2024-07-24T20:24:07.010000"],["2024-07-24T20:24:08.010000"],["2024-07-24T20:24:09.010000"],["2024-07-24T20:24:10.010000"],["2024-07-24T20:24:11.010000"],["2024-07-24T20:24:12.010000"],["2024-07-24T20:24:13.010000"],["2024-07-24T20:24:14.010000"],["2024-07-24T20:24:15.010000"],["2024-07-24T20:24:16.010000"],["2024-07-24T20:24:17.010000"],["2024-07-24T20:24:18.010000"],["2024-07-24T20:24:19.010000"],["2024-07-24T20:24:20.010000"],["2024-07-24T20:24:21.010000"],["2024-07-24T20:24:22.010000"],["2024-07-24T20:24:23.010000"],["2024-07-24T20:24:24.010000"],["2024-07-24T20:24:25.010000"],["2024-07-24T20:24:26.010000"],["2024-07-24T20:24:27.010000"],["2024-07-24T20:24:28.010000"],["2024-07-24T20:24:29.010000"],["2024-07-24T20:24:30.010000"],["2024-07-24T20:24:31.010000"],["2024-07-24T20:24:32.010000"],["2024-07-24T20:24:33.010000"],["2024-07-24T20:24:34.010000"],["2024-07-24T20:24:35.010000"],["2024-07-24T20:24:36.010000"],["2024-07-24T20:24:37.010000"],["2024-07-24T20:24:38.010000"],["2024-07-24T20:24:39.010000"],["2024-07-24T20:24:40.010000"],["2024-07-24T20:24:41.010000"],["2024-07-24T20:24:42.010000"],["2024-07-24T20:24:43.010000"],["2024-07-24T20:24:44.010000"],["2024-07-24T20:24:45.010000"],["2024-07-24T20:24:46.010000"],["2024-07-24T20:24:47.010000"],["2024-07-24T20:24:48.010000"],["2024-07-24T20:24:49.010000"],["2024-07-24T20:24:50.010000"],["2024-07-24T20:24:51.010000"],["2024-07-24T20:24:52.010000"],["2024-07-24T20:24:53.010000"],["2024-07-24T20:24:54.010000"],["2024-07-24T20:24:55.010000"],["2024-07-24T20:24:56.010000"],["2024-07-24T20:24:57.010000"],["2024-07-24T20:24:58.010000"],["2024-07-24T20:24:59.010000"],["2024-07-24T20:25:00.010000"],["2024-07-24T20:25:01.010000"],["2024-07-24T20:25:02.010000"],["2024-07-24T20:25:03.010000"],["2024-07-24T20:25:04.010000"],["2024-07-24T20:25:05.010000"],["2024-07-24T20:25:06.010000"],["2024-07-24T20:25:07.010000"],["2024-07-24T20:25:08.010000"],["2024-07-24T20:25:09.010000"],["2024-07-24T20:25:10.010000"],["2024-07-24T20:25:11.010000"],["2024-07-24T20:25:12.010000"],["2024-07-24T20:25:13.010000"],["2024-07-24T20:25:14.010000"],["2024-07-24T20:25:15.010000"],["2024-07-24T20:25:16.010000"],["2024-07-24T20:25:17.010000"],["2024-07-24T20:25:18.010000"],["2024-07-24T20:25:19.010000"],["2024-07-24T20:25:20.010000"],["2024-07-24T20:25:21.010000"],["2024-07-24T20:25:22.010000"],["2024-07-24T20:25:23.010000"],["2024-07-24T20:25:24.010000"],["2024-07-24T20:25:25.010000"],["2024-07-24T20:25:26.010000"],["2024-07-24T20:25:27.010000"],["2024-07-24T20:25:28.010000"],["2024-07-24T20:25:29.010000"],["2024-07-24T20:25:30.010000"],["2024-07-24T20:25:31.010000"],["2024-07-24T20:25:32.010000"],["2024-07-24T20:25:33.010000"],["2024-07-24T20:25:34.010000"],["2024-07-24T20:25:35.010000"],["2024-07-24T20:25:36.010000"],["2024-07-24T20:25:37.010000"],["2024-07-24T20:25:38.010000"],["2024-07-24T20:25:39.010000"],["2024-07-24T20:25:40.010000"],["2024-07-24T20:25:41.010000"],["2024-07-24T20:25:42.010000"],["2024-07-24T20:25:43.010000"],["2024-07-24T20:25:44.010000"],["2024-07-24T20:25:45.010000"],["2024-07-24T20:25:46.010000"],["2024-07-24T20:25:47.010000"],["2024-07-24T20:25:48.010000"],["2024-07-24T20:25:49.010000"],["2024-07-24T20:25:50.010000"],["2024-07-24T20:25:51.010000"],["2024-07-24T20:25:52.010000"],["2024-07-24T20:25:53.010000"],["2024-07-24T20:25:54.010000"],["2024-07-24T20:25:55.010000"],["2024-07-24T20:25:56.010000"],["2024-07-24T20:25:57.010000"],["2024-07-24T20:25:58.010000"],["2024-07-24T20:25:59.010000"],["2024-07-24T20:26:00.010000"],["2024-07-24T20:26:01.010000"],["2024-07-24T20:26:02.010000"],["2024-07-24T20:26:03.010000"],["2024-07-24T20:26:04.010000"],["2024-07-24T20:26:05.010000"],["2024-07-24T20:26:06.010000"],["2024-07-24T20:26:07.010000"],["2024-07-24T20:26:08.010000"],["2024-07-24T20:26:09.010000"],["2024-07-24T20:26:10.010000"],["2024-07-24T20:26:11.010000"],["2024-07-24T20:26:12.010000"],["2024-07-24T20:26:13.010000"],["2024-07-24T20:26:14.010000"],["2024-07-24T20:26:15.010000"],["2024-07-24T20:26:16.010000"],["2024-07-24T20:26:17.010000"],["2024-07-24T20:26:18.010000"],["2024-07-24T20:26:19.010000"],["2024-07-24T20:26:20.010000"],["2024-07-24T20:26:21.010000"],["2024-07-24T20:26:22.010000"],["2024-07-24T20:26:23.010000"],["2024-07-24T20:26:24.010000"],["2024-07-24T20:26:25.010000"],["2024-07-24T20:26:26.010000"],["2024-07-24T20:26:27.010000"],["2024-07-24T20:26:28.010000"],["2024-07-24T20:26:29.010000"],["2024-07-24T20:26:30.010000"],["2024-07-24T20:26:31.010000"],["2024-07-24T20:26:32.010000"],["2024-07-24T20:26:33.010000"],["2024-07-24T20:26:34.010000"],["2024-07-24T20:26:35.010000"],["2024-07-24T20:26:36.010000"],["2024-07-24T20:26:37.010000"],["2024-07-24T20:26:38.010000"],["2024-07-24T20:26:39.010000"],["2024-07-24T20:26:40.010000"],["2024-07-24T20:26:41.010000"],["2024-07-24T20:26:42.010000"],["2024-07-24T20:26:43.010000"],["2024-07-24T20:26:44.010000"],["2024-07-24T20:26:45.010000"],["2024-07-24T20:26:46.010000"],["2024-07-24T20:26:47.010000"],["2024-07-24T20:26:48.010000"],["2024-07-24T20:26:49.010000"],["2024-07-24T20:26:50.010000"],["2024-07-24T20:26:51.010000"],["2024-07-24T20:26:52.010000"],["2024-07-24T20:26:53.010000"],["2024-07-24T20:26:54.010000"],["2024-07-24T20:26:55.010000"],["2024-07-24T20:26:56.010000"],["2024-07-24T20:26:57.010000"],["2024-07-24T20:26:58.010000"],["2024-07-24T20:26:59.010000"],["2024-07-24T20:27:00.010000"],["2024-07-24T20:27:01.010000"],["2024-07-24T20:27:02.010000"],["2024-07-24T20:27:03.010000"],["2024-07-24T20:27:04.010000"],["2024-07-24T20:27:05.010000"],["2024-07-24T20:27:06.010000"],["2024-07-24T20:27:07.010000"],["2024-07-24T20:27:08.010000"],["2024-07-24T20:27:09.010000"],["2024-07-24T20:27:10.010000"],["2024-07-24T20:27:11.010000"],["2024-07-24T20:27:12.010000"],["2024-07-24T20:27:13.010000"],["2024-07-24T20:27:14.010000"],["2024-07-24T20:27:15.010000"],["2024-07-24T20:27:16.010000"],["2024-07-24T20:27:17.010000"],["2024-07-24T20:27:18.010000"],["2024-07-24T20:27:19.010000"],["2024-07-24T20:27:20.010000"],["2024-07-24T20:27:21.010000"],["2024-07-24T20:27:22.010000"],["2024-07-24T20:27:23.010000"],["2024-07-24T20:27:24.010000"],["2024-07-24T20:27:25.010000"],["2024-07-24T20:27:26.010000"],["2024-07-24T20:27:27.010000"],["2024-07-24T20:27:28.010000"],["2024-07-24T20:27:29.010000"],["2024-07-24T20:27:30.010000"],["2024-07-24T20:27:31.010000"],["2024-07-24T20:27:32.010000"],["2024-07-24T20:27:33.010000"],["2024-07-24T20:27:34.010000"],["2024-07-24T20:27:35.010000"],["2024-07-24T20:27:36.010000"],["2024-07-24T20:27:37.010000"],["2024-07-24T20:27:38.010000"],["2024-07-24T20:27:39.010000"],["2024-07-24T20:27:40.010000"],["2024-07-24T20:27:41.010000"],["2024-07-24T20:27:42.010000"],["2024-07-24T20:27:43.010000"],["2024-07-24T20:27:44.010000"],["2024-07-24T20:27:45.010000"],["2024-07-24T20:27:46.010000"],["2024-07-24T20:27:47.010000"],["2024-07-24T20:27:48.010000"],["2024-07-24T20:27:49.010000"],["2024-07-24T20:27:50.010000"],["2024-07-24T20:27:51.010000"],["2024-07-24T20:27:52.010000"],["2024-07-24T20:27:53.010000"],["2024-07-24T20:27:54.010000"],["2024-07-24T20:27:55.010000"],["2024-07-24T20:27:56.010000"],["2024-07-24T20:27:57.010000"],["2024-07-24T20:27:58.010000"],["2024-07-24T20:27:59.010000"],["2024-07-24T20:28:00.010000"],["2024-07-24T20:28:01.010000"],["2024-07-24T20:28:02.010000"],["2024-07-24T20:28:03.010000"],["2024-07-24T20:28:04.010000"],["2024-07-24T20:28:05.010000"],["2024-07-24T20:28:06.010000"],["2024-07-24T20:28:07.010000"],["2024-07-24T20:28:08.010000"],["2024-07-24T20:28:09.010000"],["2024-07-24T20:28:10.010000"],["2024-07-24T20:28:11.010000"],["2024-07-24T20:28:12.010000"],["2024-07-24T20:28:13.010000"],["2024-07-24T20:28:14.010000"],["2024-07-24T20:28:15.010000"],["2024-07-24T20:28:16.010000"],["2024-07-24T20:28:17.010000"],["2024-07-24T20:28:18.010000"],["2024-07-24T20:28:19.010000"],["2024-07-24T20:28:20.010000"],["2024-07-24T20:28:21.010000"],["2024-07-24T20:28:22.010000"],["2024-07-24T20:28:23.010000"],["2024-07-24T20:28:24.010000"],["2024-07-24T20:28:25.010000"],["2024-07-24T20:28:26.010000"],["2024-07-24T20:28:27.010000"],["2024-07-24T20:28:28.010000"],["2024-07-24T20:28:29.010000"],["2024-07-24T20:28:30.010000"],["2024-07-24T20:28:31.010000"],["2024-07-24T20:28:32.010000"],["2024-07-24T20:28:33.010000"],["2024-07-24T20:28:34.010000"],["2024-07-24T20:28:35.010000"],["2024-07-24T20:28:36.010000"],["2024-07-24T20:28:37.010000"],["2024-07-24T20:28:38.010000"],["2024-07-24T20:28:39.010000"],["2024-07-24T20:28:40.010000"],["2024-07-24T20:28:41.010000"],["2024-07-24T20:28:42.010000"],["2024-07-24T20:28:43.010000"],["2024-07-24T20:28:44.010000"],["2024-07-24T20:28:45.010000"],["2024-07-24T20:28:46.010000"],["2024-07-24T20:28:47.010000"],["2024-07-24T20:28:48.010000"],["2024-07-24T20:28:49.010000"],["2024-07-24T20:28:50.010000"],["2024-07-24T20:28:51.010000"],["2024-07-24T20:28:52.010000"],["2024-07-24T20:28:53.010000"],["2024-07-24T20:28:54.010000"],["2024-07-24T20:28:55.010000"],["2024-07-24T20:28:56.010000"],["2024-07-24T20:28:57.010000"],["2024-07-24T20:28:58.010000"],["2024-07-24T20:28:59.010000"],["2024-07-24T20:29:00.010000"],["2024-07-24T20:29:01.010000"],["2024-07-24T20:29:02.010000"],["2024-07-24T20:29:03.010000"],["2024-07-24T20:29:04.010000"],["2024-07-24T20:29:05.010000"],["2024-07-24T20:29:06.010000"],["2024-07-24T20:29:07.010000"],["2024-07-24T20:29:08.010000"],["2024-07-24T20:29:09.010000"],["2024-07-24T20:29:10.010000"],["2024-07-24T20:29:11.010000"],["2024-07-24T20:29:12.010000"],["2024-07-24T20:29:13.010000"],["2024-07-24T20:29:14.010000"],["2024-07-24T20:29:15.010000"],["2024-07-24T20:29:16.010000"],["2024-07-24T20:29:17.010000"],["2024-07-24T20:29:18.010000"],["2024-07-24T20:29:19.010000"],["2024-07-24T20:29:20.010000"],["2024-07-24T20:29:21.010000"],["2024-07-24T20:29:22.010000"],["2024-07-24T20:29:23.010000"],["2024-07-24T20:29:24.010000"],["2024-07-24T20:29:25.010000"],["2024-07-24T20:29:26.010000"],["2024-07-24T20:29:27.010000"],["2024-07-24T20:29:28.010000"],["2024-07-24T20:29:29.010000"],["2024-07-24T20:29:30.010000"],["2024-07-24T20:29:31.010000"],["2024-07-24T20:29:32.010000"],["2024-07-24T20:29:33.010000"],["2024-07-24T20:29:34.010000"],["2024-07-24T20:29:35.010000"],["2024-07-24T20:29:36.010000"],["2024-07-24T20:29:37.010000"],["2024-07-24T20:29:38.010000"],["2024-07-24T20:29:39.010000"],["2024-07-24T20:29:40.010000"],["2024-07-24T20:29:41.010000"],["2024-07-24T20:29:42.010000"],["2024-07-24T20:29:43.010000"],["2024-07-24T20:29:44.010000"],["2024-07-24T20:29:45.010000"],["2024-07-24T20:29:46.010000"],["2024-07-24T20:29:47.010000"],["2024-07-24T20:29:48.010000"],["2024-07-24T20:29:49.010000"],["2024-07-24T20:29:50.010000"],["2024-07-24T20:29:51.010000"],["2024-07-24T20:29:52.010000"],["2024-07-24T20:29:53.010000"],["2024-07-24T20:29:54.010000"],["2024-07-24T20:29:55.010000"],["2024-07-24T20:29:56.010000"],["2024-07-24T20:29:57.010000"],["2024-07-24T20:29:58.010000"],["2024-07-24T20:29:59.010000"],["2024-07-24T20:30:00.010000"],["2024-07-24T20:30:01.010000"],["2024-07-24T20:30:02.010000"],["2024-07-24T20:30:03.010000"],["2024-07-24T20:30:04.010000"],["2024-07-24T20:30:05.010000"],["2024-07-24T20:30:06.010000"],["2024-07-24T20:30:07.010000"],["2024-07-24T20:30:08.010000"],["2024-07-24T20:30:09.010000"],["2024-07-24T20:30:10.010000"],["2024-07-24T20:30:11.010000"],["2024-07-24T20:30:12.010000"],["2024-07-24T20:30:13.010000"],["2024-07-24T20:30:14.010000"],["2024-07-24T20:30:15.010000"],["2024-07-24T20:30:16.010000"],["2024-07-24T20:30:17.010000"],["2024-07-24T20:30:18.010000"],["2024-07-24T20:30:19.010000"],["2024-07-24T20:30:20.010000"],["2024-07-24T20:30:21.010000"],["2024-07-24T20:30:22.010000"],["2024-07-24T20:30:23.010000"],["2024-07-24T20:30:24.010000"],["2024-07-24T20:30:25.010000"],["2024-07-24T20:30:26.010000"],["2024-07-24T20:30:27.010000"],["2024-07-24T20:30:28.010000"],["2024-07-24T20:30:29.010000"],["2024-07-24T20:30:30.010000"],["2024-07-24T20:30:31.010000"],["2024-07-24T20:30:32.010000"],["2024-07-24T20:30:33.010000"],["2024-07-24T20:30:34.010000"],["2024-07-24T20:30:35.010000"],["2024-07-24T20:30:36.010000"],["2024-07-24T20:30:37.010000"],["2024-07-24T20:30:38.010000"],["2024-07-24T20:30:39.010000"],["2024-07-24T20:30:40.010000"],["2024-07-24T20:30:41.010000"],["2024-07-24T20:30:42.010000"],["2024-07-24T20:30:43.010000"],["2024-07-24T20:30:44.010000"],["2024-07-24T20:30:45.010000"],["2024-07-24T20:30:46.010000"],["2024-07-24T20:30:47.010000"],["2024-07-24T20:30:48.010000"],["2024-07-24T20:30:49.010000"],["2024-07-24T20:30:50.010000"],["2024-07-24T20:30:51.010000"],["2024-07-24T20:30:52.010000"],["2024-07-24T20:30:53.010000"],["2024-07-24T20:30:54.010000"],["2024-07-24T20:30:55.010000"],["2024-07-24T20:30:56.010000"],["2024-07-24T20:30:57.010000"],["2024-07-24T20:30:58.010000"],["2024-07-24T20:30:59.010000"],["2024-07-24T20:31:00.010000"],["2024-07-24T20:31:01.010000"],["2024-07-24T20:31:02.010000"],["2024-07-24T20:31:03.010000"],["2024-07-24T20:31:04.010000"],["2024-07-24T20:31:05.010000"],["2024-07-24T20:31:06.010000"],["2024-07-24T20:31:07.010000"],["2024-07-24T20:31:08.010000"],["2024-07-24T20:31:09.010000"],["2024-07-24T20:31:10.010000"],["2024-07-24T20:31:11.010000"],["2024-07-24T20:31:12.010000"],["2024-07-24T20:31:13.010000"],["2024-07-24T20:31:14.010000"],["2024-07-24T20:31:15.010000"],["2024-07-24T20:31:16.010000"],["2024-07-24T20:31:17.010000"],["2024-07-24T20:31:18.010000"],["2024-07-24T20:31:19.010000"],["2024-07-24T20:31:20.010000"],["2024-07-24T20:31:21.010000"],["2024-07-24T20:31:22.010000"],["2024-07-24T20:31:23.010000"],["2024-07-24T20:31:24.010000"],["2024-07-24T20:31:25.010000"],["2024-07-24T20:31:26.010000"],["2024-07-24T20:31:27.010000"],["2024-07-24T20:31:28.010000"],["2024-07-24T20:31:29.010000"],["2024-07-24T20:31:30.010000"],["2024-07-24T20:31:31.010000"],["2024-07-24T20:31:32.010000"],["2024-07-24T20:31:33.010000"],["2024-07-24T20:31:34.010000"],["2024-07-24T20:31:35.010000"],["2024-07-24T20:31:36.010000"],["2024-07-24T20:31:37.010000"],["2024-07-24T20:31:38.010000"],["2024-07-24T20:31:39.010000"],["2024-07-24T20:31:40.010000"],["2024-07-24T20:31:41.010000"],["2024-07-24T20:31:42.010000"],["2024-07-24T20:31:43.010000"],["2024-07-24T20:31:44.010000"],["2024-07-24T20:31:45.010000"],["2024-07-24T20:31:46.010000"],["2024-07-24T20:31:47.010000"],["2024-07-24T20:31:48.010000"],["2024-07-24T20:31:49.010000"],["2024-07-24T20:31:50.010000"],["2024-07-24T20:31:51.010000"],["2024-07-24T20:31:52.010000"],["2024-07-24T20:31:53.010000"],["2024-07-24T20:31:54.010000"],["2024-07-24T20:31:55.010000"],["2024-07-24T20:31:56.010000"],["2024-07-24T20:31:57.010000"],["2024-07-24T20:31:58.010000"],["2024-07-24T20:31:59.010000"],["2024-07-24T20:32:00.010000"],["2024-07-24T20:32:01.010000"],["2024-07-24T20:32:02.010000"],["2024-07-24T20:32:03.010000"],["2024-07-24T20:32:04.010000"],["2024-07-24T20:32:05.010000"],["2024-07-24T20:32:06.010000"],["2024-07-24T20:32:07.010000"],["2024-07-24T20:32:08.010000"],["2024-07-24T20:32:09.010000"],["2024-07-24T20:32:10.010000"],["2024-07-24T20:32:11.010000"],["2024-07-24T20:32:12.010000"],["2024-07-24T20:32:13.010000"],["2024-07-24T20:32:14.010000"],["2024-07-24T20:32:15.010000"],["2024-07-24T20:32:16.010000"],["2024-07-24T20:32:17.010000"],["2024-07-24T20:32:18.010000"],["2024-07-24T20:32:19.010000"],["2024-07-24T20:32:20.010000"],["2024-07-24T20:32:21.010000"],["2024-07-24T20:32:22.010000"],["2024-07-24T20:32:23.010000"],["2024-07-24T20:32:24.010000"],["2024-07-24T20:32:25.010000"],["2024-07-24T20:32:26.010000"],["2024-07-24T20:32:27.010000"],["2024-07-24T20:32:28.010000"],["2024-07-24T20:32:29.010000"],["2024-07-24T20:32:30.010000"],["2024-07-24T20:32:31.010000"],["2024-07-24T20:32:32.010000"],["2024-07-24T20:32:33.010000"],["2024-07-24T20:32:34.010000"],["2024-07-24T20:32:35.010000"],["2024-07-24T20:32:36.010000"],["2024-07-24T20:32:37.010000"],["2024-07-24T20:32:38.010000"],["2024-07-24T20:32:39.010000"],["2024-07-24T20:32:40.010000"],["2024-07-24T20:32:41.010000"],["2024-07-24T20:32:42.010000"],["2024-07-24T20:32:43.010000"],["2024-07-24T20:32:44.010000"],["2024-07-24T20:32:45.010000"],["2024-07-24T20:32:46.010000"],["2024-07-24T20:32:47.010000"],["2024-07-24T20:32:48.010000"],["2024-07-24T20:32:49.010000"],["2024-07-24T20:32:50.010000"],["2024-07-24T20:32:51.010000"],["2024-07-24T20:32:52.010000"],["2024-07-24T20:32:53.010000"],["2024-07-24T20:32:54.010000"],["2024-07-24T20:32:55.010000"],["2024-07-24T20:32:56.010000"],["2024-07-24T20:32:57.010000"],["2024-07-24T20:32:58.010000"],["2024-07-24T20:32:59.010000"],["2024-07-24T20:33:00.010000"],["2024-07-24T20:33:01.010000"],["2024-07-24T20:33:02.010000"],["2024-07-24T20:33:03.010000"],["2024-07-24T20:33:04.010000"],["2024-07-24T20:33:05.010000"],["2024-07-24T20:33:06.010000"],["2024-07-24T20:33:07.010000"],["2024-07-24T20:33:08.010000"],["2024-07-24T20:33:09.010000"],["2024-07-24T20:33:10.010000"],["2024-07-24T20:33:11.010000"],["2024-07-24T20:33:12.010000"],["2024-07-24T20:33:13.010000"],["2024-07-24T20:33:14.010000"],["2024-07-24T20:33:15.010000"],["2024-07-24T20:33:16.010000"],["2024-07-24T20:33:17.010000"],["2024-07-24T20:33:18.010000"],["2024-07-24T20:33:19.010000"],["2024-07-24T20:33:20.010000"],["2024-07-24T20:33:21.010000"],["2024-07-24T20:33:22.010000"],["2024-07-24T20:33:23.010000"],["2024-07-24T20:33:24.010000"],["2024-07-24T20:33:25.010000"],["2024-07-24T20:33:26.010000"],["2024-07-24T20:33:27.010000"],["2024-07-24T20:33:28.010000"],["2024-07-24T20:33:29.010000"],["2024-07-24T20:33:30.010000"],["2024-07-24T20:33:31.010000"],["2024-07-24T20:33:32.010000"],["2024-07-24T20:33:33.010000"],["2024-07-24T20:33:34.010000"],["2024-07-24T20:33:35.010000"],["2024-07-24T20:33:36.010000"],["2024-07-24T20:33:37.010000"],["2024-07-24T20:33:38.010000"],["2024-07-24T20:33:39.010000"],["2024-07-24T20:33:40.010000"],["2024-07-24T20:33:41.010000"],["2024-07-24T20:33:42.010000"],["2024-07-24T20:33:43.010000"],["2024-07-24T20:33:44.010000"],["2024-07-24T20:33:45.010000"],["2024-07-24T20:33:46.010000"],["2024-07-24T20:33:47.010000"],["2024-07-24T20:33:48.010000"],["2024-07-24T20:33:49.010000"],["2024-07-24T20:33:50.010000"],["2024-07-24T20:33:51.010000"],["2024-07-24T20:33:52.010000"],["2024-07-24T20:33:53.010000"],["2024-07-24T20:33:54.010000"],["2024-07-24T20:33:55.010000"],["2024-07-24T20:33:56.010000"],["2024-07-24T20:33:57.010000"],["2024-07-24T20:33:58.010000"],["2024-07-24T20:33:59.010000"],["2024-07-24T20:34:00.010000"],["2024-07-24T20:34:01.010000"],["2024-07-24T20:34:02.010000"],["2024-07-24T20:34:03.010000"],["2024-07-24T20:34:04.010000"],["2024-07-24T20:34:05.010000"],["2024-07-24T20:34:06.010000"],["2024-07-24T20:34:07.010000"],["2024-07-24T20:34:08.010000"],["2024-07-24T20:34:09.010000"],["2024-07-24T20:34:10.010000"],["2024-07-24T20:34:11.010000"],["2024-07-24T20:34:12.010000"],["2024-07-24T20:34:13.010000"],["2024-07-24T20:34:14.010000"],["2024-07-24T20:34:15.010000"],["2024-07-24T20:34:16.010000"],["2024-07-24T20:34:17.010000"],["2024-07-24T20:34:18.010000"],["2024-07-24T20:34:19.010000"],["2024-07-24T20:34:20.010000"],["2024-07-24T20:34:21.010000"],["2024-07-24T20:34:22.010000"],["2024-07-24T20:34:23.010000"],["2024-07-24T20:34:24.010000"],["2024-07-24T20:34:25.010000"],["2024-07-24T20:34:26.010000"],["2024-07-24T20:34:27.010000"],["2024-07-24T20:34:28.010000"],["2024-07-24T20:34:29.010000"],["2024-07-24T20:34:30.010000"],["2024-07-24T20:34:31.010000"],["2024-07-24T20:34:32.010000"],["2024-07-24T20:34:33.010000"],["2024-07-24T20:34:34.010000"],["2024-07-24T20:34:35.010000"],["2024-07-24T20:34:36.010000"],["2024-07-24T20:34:37.010000"],["2024-07-24T20:34:38.010000"],["2024-07-24T20:34:39.010000"],["2024-07-24T20:34:40.010000"],["2024-07-24T20:34:41.010000"],["2024-07-24T20:34:42.010000"],["2024-07-24T20:34:43.010000"],["2024-07-24T20:34:44.010000"],["2024-07-24T20:34:45.010000"],["2024-07-24T20:34:46.010000"],["2024-07-24T20:34:47.010000"],["2024-07-24T20:34:48.010000"],["2024-07-24T20:34:49.010000"],["2024-07-24T20:34:50.010000"],["2024-07-24T20:34:51.010000"],["2024-07-24T20:34:52.010000"],["2024-07-24T20:34:53.010000"],["2024-07-24T20:34:54.010000"],["2024-07-24T20:34:55.010000"],["2024-07-24T20:34:56.010000"],["2024-07-24T20:34:57.010000"],["2024-07-24T20:34:58.010000"],["2024-07-24T20:34:59.010000"],["2024-07-24T20:35:00.010000"],["2024-07-24T20:35:01.010000"],["2024-07-24T20:35:02.010000"],["2024-07-24T20:35:03.010000"],["2024-07-24T20:35:04.010000"],["2024-07-24T20:35:05.010000"],["2024-07-24T20:35:06.010000"],["2024-07-24T20:35:07.010000"],["2024-07-24T20:35:08.010000"],["2024-07-24T20:35:09.010000"],["2024-07-24T20:35:10.010000"],["2024-07-24T20:35:11.010000"],["2024-07-24T20:35:12.010000"],["2024-07-24T20:35:13.010000"],["2024-07-24T20:35:14.010000"],["2024-07-24T20:35:15.010000"],["2024-07-24T20:35:16.010000"],["2024-07-24T20:35:17.010000"],["2024-07-24T20:35:18.010000"],["2024-07-24T20:35:19.010000"],["2024-07-24T20:35:20.010000"],["2024-07-24T20:35:21.010000"],["2024-07-24T20:35:22.010000"],["2024-07-24T20:35:23.010000"],["2024-07-24T20:35:24.010000"],["2024-07-24T20:35:25.010000"],["2024-07-24T20:35:26.010000"],["2024-07-24T20:35:27.010000"],["2024-07-24T20:35:28.010000"],["2024-07-24T20:35:29.010000"],["2024-07-24T20:35:30.010000"],["2024-07-24T20:35:31.010000"],["2024-07-24T20:35:32.010000"],["2024-07-24T20:35:33.010000"],["2024-07-24T20:35:34.010000"],["2024-07-24T20:35:35.010000"],["2024-07-24T20:35:36.010000"],["2024-07-24T20:35:37.010000"],["2024-07-24T20:35:38.010000"],["2024-07-24T20:35:39.010000"],["2024-07-24T20:35:40.010000"],["2024-07-24T20:35:41.010000"],["2024-07-24T20:35:42.010000"],["2024-07-24T20:35:43.010000"],["2024-07-24T20:35:44.010000"],["2024-07-24T20:35:45.010000"],["2024-07-24T20:35:46.010000"],["2024-07-24T20:35:47.010000"],["2024-07-24T20:35:48.010000"],["2024-07-24T20:35:49.010000"],["2024-07-24T20:35:50.010000"],["2024-07-24T20:35:51.010000"],["2024-07-24T20:35:52.010000"],["2024-07-24T20:35:53.010000"],["2024-07-24T20:35:54.010000"],["2024-07-24T20:35:55.010000"],["2024-07-24T20:35:56.010000"],["2024-07-24T20:35:57.010000"],["2024-07-24T20:35:58.010000"],["2024-07-24T20:35:59.010000"],["2024-07-24T20:36:00.010000"],["2024-07-24T20:36:01.010000"],["2024-07-24T20:36:02.010000"],["2024-07-24T20:36:03.010000"],["2024-07-24T20:36:04.010000"],["2024-07-24T20:36:05.010000"],["2024-07-24T20:36:06.010000"],["2024-07-24T20:36:07.010000"],["2024-07-24T20:36:08.010000"],["2024-07-24T20:36:09.010000"],["2024-07-24T20:36:10.010000"],["2024-07-24T20:36:11.010000"],["2024-07-24T20:36:12.010000"],["2024-07-24T20:36:13.010000"],["2024-07-24T20:36:14.010000"],["2024-07-24T20:36:15.010000"],["2024-07-24T20:36:16.010000"],["2024-07-24T20:36:17.010000"],["2024-07-24T20:36:18.010000"],["2024-07-24T20:36:19.010000"],["2024-07-24T20:36:20.010000"],["2024-07-24T20:36:21.010000"],["2024-07-24T20:36:22.010000"],["2024-07-24T20:36:23.010000"],["2024-07-24T20:36:24.010000"],["2024-07-24T20:36:25.010000"],["2024-07-24T20:36:26.010000"],["2024-07-24T20:36:27.010000"],["2024-07-24T20:36:28.010000"],["2024-07-24T20:36:29.010000"],["2024-07-24T20:36:30.010000"],["2024-07-24T20:36:31.010000"],["2024-07-24T20:36:32.010000"],["2024-07-24T20:36:33.010000"],["2024-07-24T20:36:34.010000"],["2024-07-24T20:36:35.010000"],["2024-07-24T20:36:36.010000"],["2024-07-24T20:36:37.010000"],["2024-07-24T20:36:38.010000"],["2024-07-24T20:36:39.010000"],["2024-07-24T20:36:40.010000"],["2024-07-24T20:36:41.010000"],["2024-07-24T20:36:42.010000"],["2024-07-24T20:36:43.010000"],["2024-07-24T20:36:44.010000"],["2024-07-24T20:36:45.010000"],["2024-07-24T20:36:46.010000"],["2024-07-24T20:36:47.010000"],["2024-07-24T20:36:48.010000"],["2024-07-24T20:36:49.010000"],["2024-07-24T20:36:50.010000"],["2024-07-24T20:36:51.010000"],["2024-07-24T20:36:52.010000"],["2024-07-24T20:36:53.010000"],["2024-07-24T20:36:54.010000"],["2024-07-24T20:36:55.010000"],["2024-07-24T20:36:56.010000"],["2024-07-24T20:36:57.010000"],["2024-07-24T20:36:58.010000"],["2024-07-24T20:36:59.010000"],["2024-07-24T20:37:00.010000"],["2024-07-24T20:37:01.010000"],["2024-07-24T20:37:02.010000"],["2024-07-24T20:37:03.010000"],["2024-07-24T20:37:04.010000"],["2024-07-24T20:37:05.010000"],["2024-07-24T20:37:06.010000"],["2024-07-24T20:37:07.010000"],["2024-07-24T20:37:08.010000"],["2024-07-24T20:37:09.010000"],["2024-07-24T20:37:10.010000"],["2024-07-24T20:37:11.010000"],["2024-07-24T20:37:12.010000"],["2024-07-24T20:37:13.010000"],["2024-07-24T20:37:14.010000"],["2024-07-24T20:37:15.010000"],["2024-07-24T20:37:16.010000"],["2024-07-24T20:37:17.010000"],["2024-07-24T20:37:18.010000"],["2024-07-24T20:37:19.010000"],["2024-07-24T20:37:20.010000"],["2024-07-24T20:37:21.010000"],["2024-07-24T20:37:22.010000"],["2024-07-24T20:37:23.010000"],["2024-07-24T20:37:24.010000"],["2024-07-24T20:37:25.010000"],["2024-07-24T20:37:26.010000"],["2024-07-24T20:37:27.010000"],["2024-07-24T20:37:28.010000"],["2024-07-24T20:37:29.010000"],["2024-07-24T20:37:30.010000"],["2024-07-24T20:37:31.010000"],["2024-07-24T20:37:32.010000"],["2024-07-24T20:37:33.010000"],["2024-07-24T20:37:34.010000"],["2024-07-24T20:37:35.010000"],["2024-07-24T20:37:36.010000"],["2024-07-24T20:37:37.010000"],["2024-07-24T20:37:38.010000"],["2024-07-24T20:37:39.010000"],["2024-07-24T20:37:40.010000"],["2024-07-24T20:37:41.010000"],["2024-07-24T20:37:42.010000"],["2024-07-24T20:37:43.010000"],["2024-07-24T20:37:44.010000"],["2024-07-24T20:37:45.010000"],["2024-07-24T20:37:46.010000"],["2024-07-24T20:37:47.010000"],["2024-07-24T20:37:48.010000"],["2024-07-24T20:37:49.010000"],["2024-07-24T20:37:50.010000"],["2024-07-24T20:37:51.010000"],["2024-07-24T20:37:52.010000"],["2024-07-24T20:37:53.010000"],["2024-07-24T20:37:54.010000"],["2024-07-24T20:37:55.010000"],["2024-07-24T20:37:56.010000"],["2024-07-24T20:37:57.010000"],["2024-07-24T20:37:58.010000"],["2024-07-24T20:37:59.010000"],["2024-07-24T20:38:00.010000"],["2024-07-24T20:38:01.010000"],["2024-07-24T20:38:02.010000"],["2024-07-24T20:38:03.010000"],["2024-07-24T20:38:04.010000"],["2024-07-24T20:38:05.010000"],["2024-07-24T20:38:06.010000"],["2024-07-24T20:38:07.010000"],["2024-07-24T20:38:08.010000"],["2024-07-24T20:38:09.010000"],["2024-07-24T20:38:10.010000"],["2024-07-24T20:38:11.010000"],["2024-07-24T20:38:12.010000"],["2024-07-24T20:38:13.010000"],["2024-07-24T20:38:14.010000"],["2024-07-24T20:38:15.010000"],["2024-07-24T20:38:16.010000"],["2024-07-24T20:38:17.010000"],["2024-07-24T20:38:18.010000"],["2024-07-24T20:38:19.010000"],["2024-07-24T20:38:20.010000"],["2024-07-24T20:38:21.010000"],["2024-07-24T20:38:22.010000"],["2024-07-24T20:38:23.010000"],["2024-07-24T20:38:24.010000"],["2024-07-24T20:38:25.010000"],["2024-07-24T20:38:26.010000"],["2024-07-24T20:38:27.010000"],["2024-07-24T20:38:28.010000"],["2024-07-24T20:38:29.010000"],["2024-07-24T20:38:30.010000"],["2024-07-24T20:38:31.010000"],["2024-07-24T20:38:32.010000"],["2024-07-24T20:38:33.010000"],["2024-07-24T20:38:34.010000"],["2024-07-24T20:38:35.010000"],["2024-07-24T20:38:36.010000"],["2024-07-24T20:38:37.010000"],["2024-07-24T20:38:38.010000"],["2024-07-24T20:38:39.010000"],["2024-07-24T20:38:40.010000"],["2024-07-24T20:38:41.010000"],["2024-07-24T20:38:42.010000"],["2024-07-24T20:38:43.010000"],["2024-07-24T20:38:44.010000"],["2024-07-24T20:38:45.010000"],["2024-07-24T20:38:46.010000"],["2024-07-24T20:38:47.010000"],["2024-07-24T20:38:48.010000"],["2024-07-24T20:38:49.010000"],["2024-07-24T20:38:50.010000"],["2024-07-24T20:38:51.010000"],["2024-07-24T20:38:52.010000"],["2024-07-24T20:38:53.010000"],["2024-07-24T20:38:54.010000"],["2024-07-24T20:38:55.010000"],["2024-07-24T20:38:56.010000"],["2024-07-24T20:38:57.010000"],["2024-07-24T20:38:58.010000"],["2024-07-24T20:38:59.010000"],["2024-07-24T20:39:00.010000"],["2024-07-24T20:39:01.010000"],["2024-07-24T20:39:02.010000"],["2024-07-24T20:39:03.010000"],["2024-07-24T20:39:04.010000"],["2024-07-24T20:39:05.010000"],["2024-07-24T20:39:06.010000"],["2024-07-24T20:39:07.010000"],["2024-07-24T20:39:08.010000"],["2024-07-24T20:39:09.010000"],["2024-07-24T20:39:10.010000"],["2024-07-24T20:39:11.010000"],["2024-07-24T20:39:12.010000"],["2024-07-24T20:39:13.010000"],["2024-07-24T20:39:14.010000"],["2024-07-24T20:39:15.010000"],["2024-07-24T20:39:16.010000"],["2024-07-24T20:39:17.010000"],["2024-07-24T20:39:18.010000"],["2024-07-24T20:39:19.010000"],["2024-07-24T20:39:20.010000"],["2024-07-24T20:39:21.010000"],["2024-07-24T20:39:22.010000"],["2024-07-24T20:39:23.010000"],["2024-07-24T20:39:24.010000"],["2024-07-24T20:39:25.010000"],["2024-07-24T20:39:26.010000"],["2024-07-24T20:39:27.010000"],["2024-07-24T20:39:28.010000"],["2024-07-24T20:39:29.010000"],["2024-07-24T20:39:30.010000"],["2024-07-24T20:39:31.010000"],["2024-07-24T20:39:32.010000"],["2024-07-24T20:39:33.010000"],["2024-07-24T20:39:34.010000"],["2024-07-24T20:39:35.010000"],["2024-07-24T20:39:36.010000"],["2024-07-24T20:39:37.010000"],["2024-07-24T20:39:38.010000"],["2024-07-24T20:39:39.010000"],["2024-07-24T20:39:40.010000"],["2024-07-24T20:39:41.010000"],["2024-07-24T20:39:42.010000"],["2024-07-24T20:39:43.010000"],["2024-07-24T20:39:44.010000"],["2024-07-24T20:39:45.010000"],["2024-07-24T20:39:46.010000"],["2024-07-24T20:39:47.010000"],["2024-07-24T20:39:48.010000"],["2024-07-24T20:39:49.010000"],["2024-07-24T20:39:50.010000"],["2024-07-24T20:39:51.010000"],["2024-07-24T20:39:52.010000"],["2024-07-24T20:39:53.010000"],["2024-07-24T20:39:54.010000"],["2024-07-24T20:39:55.010000"],["2024-07-24T20:39:56.010000"],["2024-07-24T20:39:57.010000"],["2024-07-24T20:39:58.010000"],["2024-07-24T20:39:59.010000"],["2024-07-24T20:40:00.010000"],["2024-07-24T20:40:01.010000"],["2024-07-24T20:40:02.010000"],["2024-07-24T20:40:03.010000"],["2024-07-24T20:40:04.010000"],["2024-07-24T20:40:05.010000"],["2024-07-24T20:40:06.010000"],["2024-07-24T20:40:07.010000"],["2024-07-24T20:40:08.010000"],["2024-07-24T20:40:09.010000"],["2024-07-24T20:40:10.010000"],["2024-07-24T20:40:11.010000"],["2024-07-24T20:40:12.010000"],["2024-07-24T20:40:13.010000"],["2024-07-24T20:40:14.010000"],["2024-07-24T20:40:15.010000"],["2024-07-24T20:40:16.010000"],["2024-07-24T20:40:17.010000"],["2024-07-24T20:40:18.010000"],["2024-07-24T20:40:19.010000"],["2024-07-24T20:40:20.010000"],["2024-07-24T20:40:21.010000"],["2024-07-24T20:40:22.010000"],["2024-07-24T20:40:23.010000"],["2024-07-24T20:40:24.010000"],["2024-07-24T20:40:25.010000"],["2024-07-24T20:40:26.010000"],["2024-07-24T20:40:27.010000"],["2024-07-24T20:40:28.010000"],["2024-07-24T20:40:29.010000"],["2024-07-24T20:40:30.010000"],["2024-07-24T20:40:31.010000"],["2024-07-24T20:40:32.010000"],["2024-07-24T20:40:33.010000"],["2024-07-24T20:40:34.010000"],["2024-07-24T20:40:35.010000"],["2024-07-24T20:40:36.010000"],["2024-07-24T20:40:37.010000"],["2024-07-24T20:40:38.010000"],["2024-07-24T20:40:39.010000"],["2024-07-24T20:40:40.010000"],["2024-07-24T20:40:41.010000"],["2024-07-24T20:40:42.010000"],["2024-07-24T20:40:43.010000"],["2024-07-24T20:40:44.010000"],["2024-07-24T20:40:45.010000"],["2024-07-24T20:40:46.010000"],["2024-07-24T20:40:47.010000"],["2024-07-24T20:40:48.010000"],["2024-07-24T20:40:49.010000"],["2024-07-24T20:40:50.010000"],["2024-07-24T20:40:51.010000"],["2024-07-24T20:40:52.010000"],["2024-07-24T20:40:53.010000"],["2024-07-24T20:40:54.010000"],["2024-07-24T20:40:55.010000"],["2024-07-24T20:40:56.010000"],["2024-07-24T20:40:57.010000"],["2024-07-24T20:40:58.010000"],["2024-07-24T20:40:59.010000"],["2024-07-24T20:41:00.010000"],["2024-07-24T20:41:01.010000"],["2024-07-24T20:41:02.010000"],["2024-07-24T20:41:03.010000"],["2024-07-24T20:41:04.010000"],["2024-07-24T20:41:05.010000"],["2024-07-24T20:41:06.010000"],["2024-07-24T20:41:07.010000"],["2024-07-24T20:41:08.010000"],["2024-07-24T20:41:09.010000"],["2024-07-24T20:41:10.010000"],["2024-07-24T20:41:11.010000"],["2024-07-24T20:41:12.010000"],["2024-07-24T20:41:13.010000"],["2024-07-24T20:41:14.010000"],["2024-07-24T20:41:15.010000"],["2024-07-24T20:41:16.010000"],["2024-07-24T20:41:17.010000"],["2024-07-24T20:41:18.010000"],["2024-07-24T20:41:19.010000"],["2024-07-24T20:41:20.010000"],["2024-07-24T20:41:21.010000"],["2024-07-24T20:41:22.010000"],["2024-07-24T20:41:23.010000"],["2024-07-24T20:41:24.010000"],["2024-07-24T20:41:25.010000"],["2024-07-24T20:41:26.010000"],["2024-07-24T20:41:27.010000"],["2024-07-24T20:41:28.010000"],["2024-07-24T20:41:29.010000"],["2024-07-24T20:41:30.010000"],["2024-07-24T20:41:31.010000"],["2024-07-24T20:41:32.010000"],["2024-07-24T20:41:33.010000"],["2024-07-24T20:41:34.010000"],["2024-07-24T20:41:35.010000"],["2024-07-24T20:41:36.010000"],["2024-07-24T20:41:37.010000"],["2024-07-24T20:41:38.010000"],["2024-07-24T20:41:39.010000"],["2024-07-24T20:41:40.010000"],["2024-07-24T20:41:41.010000"],["2024-07-24T20:41:42.010000"],["2024-07-24T20:41:43.010000"],["2024-07-24T20:41:44.010000"],["2024-07-24T20:41:45.010000"],["2024-07-24T20:41:46.010000"],["2024-07-24T20:41:47.010000"],["2024-07-24T20:41:48.010000"],["2024-07-24T20:41:49.010000"],["2024-07-24T20:41:50.010000"],["2024-07-24T20:41:51.010000"],["2024-07-24T20:41:52.010000"],["2024-07-24T20:41:53.010000"],["2024-07-24T20:41:54.010000"],["2024-07-24T20:41:55.010000"],["2024-07-24T20:41:56.010000"],["2024-07-24T20:41:57.010000"],["2024-07-24T20:41:58.010000"],["2024-07-24T20:41:59.010000"],["2024-07-24T20:42:00.010000"],["2024-07-24T20:42:01.010000"],["2024-07-24T20:42:02.010000"],["2024-07-24T20:42:03.010000"],["2024-07-24T20:42:04.010000"],["2024-07-24T20:42:05.010000"],["2024-07-24T20:42:06.010000"],["2024-07-24T20:42:07.010000"],["2024-07-24T20:42:08.010000"],["2024-07-24T20:42:09.010000"],["2024-07-24T20:42:10.010000"],["2024-07-24T20:42:11.010000"],["2024-07-24T20:42:12.010000"],["2024-07-24T20:42:13.010000"],["2024-07-24T20:42:14.010000"],["2024-07-24T20:42:15.010000"],["2024-07-24T20:42:16.010000"],["2024-07-24T20:42:17.010000"],["2024-07-24T20:42:18.010000"],["2024-07-24T20:42:19.010000"],["2024-07-24T20:42:20.010000"],["2024-07-24T20:42:21.010000"],["2024-07-24T20:42:22.010000"],["2024-07-24T20:42:23.010000"],["2024-07-24T20:42:24.010000"],["2024-07-24T20:42:25.010000"],["2024-07-24T20:42:26.010000"],["2024-07-24T20:42:27.010000"],["2024-07-24T20:42:28.010000"],["2024-07-24T20:42:29.010000"],["2024-07-24T20:42:30.010000"],["2024-07-24T20:42:31.010000"],["2024-07-24T20:42:32.010000"],["2024-07-24T20:42:33.010000"],["2024-07-24T20:42:34.010000"],["2024-07-24T20:42:35.010000"],["2024-07-24T20:42:36.010000"],["2024-07-24T20:42:37.010000"],["2024-07-24T20:42:38.010000"],["2024-07-24T20:42:39.010000"],["2024-07-24T20:42:40.010000"],["2024-07-24T20:42:41.010000"],["2024-07-24T20:42:42.010000"],["2024-07-24T20:42:43.010000"],["2024-07-24T20:42:44.010000"],["2024-07-24T20:42:45.010000"],["2024-07-24T20:42:46.010000"],["2024-07-24T20:42:47.010000"],["2024-07-24T20:42:48.010000"],["2024-07-24T20:42:49.010000"],["2024-07-24T20:42:50.010000"],["2024-07-24T20:42:51.010000"],["2024-07-24T20:42:52.010000"],["2024-07-24T20:42:53.010000"],["2024-07-24T20:42:54.010000"],["2024-07-24T20:42:55.010000"],["2024-07-24T20:42:56.010000"],["2024-07-24T20:42:57.010000"],["2024-07-24T20:42:58.010000"],["2024-07-24T20:42:59.010000"],["2024-07-24T20:43:00.010000"],["2024-07-24T20:43:01.010000"],["2024-07-24T20:43:02.010000"],["2024-07-24T20:43:03.010000"],["2024-07-24T20:43:04.010000"],["2024-07-24T20:43:05.010000"],["2024-07-24T20:43:06.010000"],["2024-07-24T20:43:07.010000"],["2024-07-24T20:43:08.010000"],["2024-07-24T20:43:09.010000"],["2024-07-24T20:43:10.010000"],["2024-07-24T20:43:11.010000"],["2024-07-24T20:43:12.010000"],["2024-07-24T20:43:13.010000"],["2024-07-24T20:43:14.010000"],["2024-07-24T20:43:15.010000"],["2024-07-24T20:43:16.010000"],["2024-07-24T20:43:17.010000"],["2024-07-24T20:43:18.010000"],["2024-07-24T20:43:19.010000"],["2024-07-24T20:43:20.010000"],["2024-07-24T20:43:21.010000"],["2024-07-24T20:43:22.010000"],["2024-07-24T20:43:23.010000"],["2024-07-24T20:43:24.010000"],["2024-07-24T20:43:25.010000"],["2024-07-24T20:43:26.010000"],["2024-07-24T20:43:27.010000"],["2024-07-24T20:43:28.010000"],["2024-07-24T20:43:29.010000"],["2024-07-24T20:43:30.010000"],["2024-07-24T20:43:31.010000"],["2024-07-24T20:43:32.010000"],["2024-07-24T20:43:33.010000"],["2024-07-24T20:43:34.010000"],["2024-07-24T20:43:35.010000"],["2024-07-24T20:43:36.010000"],["2024-07-24T20:43:37.010000"],["2024-07-24T20:43:38.010000"],["2024-07-24T20:43:39.010000"],["2024-07-24T20:43:40.010000"],["2024-07-24T20:43:41.010000"],["2024-07-24T20:43:42.010000"],["2024-07-24T20:43:43.010000"],["2024-07-24T20:43:44.010000"],["2024-07-24T20:43:45.010000"],["2024-07-24T20:43:46.010000"],["2024-07-24T20:43:47.010000"],["2024-07-24T20:43:48.010000"],["2024-07-24T20:43:49.010000"],["2024-07-24T20:43:50.010000"],["2024-07-24T20:43:51.010000"],["2024-07-24T20:43:52.010000"],["2024-07-24T20:43:53.010000"],["2024-07-24T20:43:54.010000"],["2024-07-24T20:43:55.010000"],["2024-07-24T20:43:56.010000"],["2024-07-24T20:43:57.010000"],["2024-07-24T20:43:58.010000"],["2024-07-24T20:43:59.010000"],["2024-07-24T20:44:00.010000"],["2024-07-24T20:44:01.010000"],["2024-07-24T20:44:02.010000"],["2024-07-24T20:44:03.010000"],["2024-07-24T20:44:04.010000"],["2024-07-24T20:44:05.010000"],["2024-07-24T20:44:06.010000"],["2024-07-24T20:44:07.010000"],["2024-07-24T20:44:08.010000"],["2024-07-24T20:44:09.010000"],["2024-07-24T20:44:10.010000"],["2024-07-24T20:44:11.010000"],["2024-07-24T20:44:12.010000"],["2024-07-24T20:44:13.010000"],["2024-07-24T20:44:14.010000"],["2024-07-24T20:44:15.010000"],["2024-07-24T20:44:16.010000"],["2024-07-24T20:44:17.010000"],["2024-07-24T20:44:18.010000"],["2024-07-24T20:44:19.010000"],["2024-07-24T20:44:20.010000"],["2024-07-24T20:44:21.010000"],["2024-07-24T20:44:22.010000"],["2024-07-24T20:44:23.010000"],["2024-07-24T20:44:24.010000"],["2024-07-24T20:44:25.010000"],["2024-07-24T20:44:26.010000"],["2024-07-24T20:44:27.010000"],["2024-07-24T20:44:28.010000"],["2024-07-24T20:44:29.010000"],["2024-07-24T20:44:30.010000"],["2024-07-24T20:44:31.010000"],["2024-07-24T20:44:32.010000"],["2024-07-24T20:44:33.010000"],["2024-07-24T20:44:34.010000"],["2024-07-24T20:44:35.010000"],["2024-07-24T20:44:36.010000"],["2024-07-24T20:44:37.010000"],["2024-07-24T20:44:38.010000"],["2024-07-24T20:44:39.010000"],["2024-07-24T20:44:40.010000"],["2024-07-24T20:44:41.010000"],["2024-07-24T20:44:42.010000"],["2024-07-24T20:44:43.010000"],["2024-07-24T20:44:44.010000"],["2024-07-24T20:44:45.010000"],["2024-07-24T20:44:46.010000"],["2024-07-24T20:44:47.010000"],["2024-07-24T20:44:48.010000"],["2024-07-24T20:44:49.010000"],["2024-07-24T20:44:50.010000"],["2024-07-24T20:44:51.010000"],["2024-07-24T20:44:52.010000"],["2024-07-24T20:44:53.010000"],["2024-07-24T20:44:54.010000"],["2024-07-24T20:44:55.010000"],["2024-07-24T20:44:56.010000"],["2024-07-24T20:44:57.010000"],["2024-07-24T20:44:58.010000"],["2024-07-24T20:44:59.010000"],["2024-07-24T20:45:00.010000"],["2024-07-24T20:45:01.010000"],["2024-07-24T20:45:02.010000"],["2024-07-24T20:45:03.010000"],["2024-07-24T20:45:04.010000"],["2024-07-24T20:45:05.010000"],["2024-07-24T20:45:06.010000"],["2024-07-24T20:45:07.010000"],["2024-07-24T20:45:08.010000"],["2024-07-24T20:45:09.010000"],["2024-07-24T20:45:10.010000"],["2024-07-24T20:45:11.010000"],["2024-07-24T20:45:12.010000"],["2024-07-24T20:45:13.010000"],["2024-07-24T20:45:14.010000"],["2024-07-24T20:45:15.010000"],["2024-07-24T20:45:16.010000"],["2024-07-24T20:45:17.010000"],["2024-07-24T20:45:18.010000"],["2024-07-24T20:45:19.010000"],["2024-07-24T20:45:20.010000"],["2024-07-24T20:45:21.010000"],["2024-07-24T20:45:22.010000"],["2024-07-24T20:45:23.010000"],["2024-07-24T20:45:24.010000"],["2024-07-24T20:45:25.010000"],["2024-07-24T20:45:26.010000"],["2024-07-24T20:45:27.010000"],["2024-07-24T20:45:28.010000"],["2024-07-24T20:45:29.010000"],["2024-07-24T20:45:30.010000"],["2024-07-24T20:45:31.010000"],["2024-07-24T20:45:32.010000"],["2024-07-24T20:45:33.010000"],["2024-07-24T20:45:34.010000"],["2024-07-24T20:45:35.010000"],["2024-07-24T20:45:36.010000"],["2024-07-24T20:45:37.010000"],["2024-07-24T20:45:38.010000"],["2024-07-24T20:45:39.010000"],["2024-07-24T20:45:40.010000"],["2024-07-24T20:45:41.010000"],["2024-07-24T20:45:42.010000"],["2024-07-24T20:45:43.010000"],["2024-07-24T20:45:44.010000"],["2024-07-24T20:45:45.010000"],["2024-07-24T20:45:46.010000"],["2024-07-24T20:45:47.010000"],["2024-07-24T20:45:48.010000"],["2024-07-24T20:45:49.010000"],["2024-07-24T20:45:50.010000"],["2024-07-24T20:45:51.010000"],["2024-07-24T20:45:52.010000"],["2024-07-24T20:45:53.010000"],["2024-07-24T20:45:54.010000"],["2024-07-24T20:45:55.010000"],["2024-07-24T20:45:56.010000"],["2024-07-24T20:45:57.010000"],["2024-07-24T20:45:58.010000"],["2024-07-24T20:45:59.010000"],["2024-07-24T20:46:00.010000"],["2024-07-24T20:46:01.010000"],["2024-07-24T20:46:02.010000"],["2024-07-24T20:46:03.010000"],["2024-07-24T20:46:04.010000"],["2024-07-24T20:46:05.010000"],["2024-07-24T20:46:06.010000"],["2024-07-24T20:46:07.010000"],["2024-07-24T20:46:08.010000"],["2024-07-24T20:46:09.010000"],["2024-07-24T20:46:10.010000"],["2024-07-24T20:46:11.010000"],["2024-07-24T20:46:12.010000"],["2024-07-24T20:46:13.010000"],["2024-07-24T20:46:14.010000"],["2024-07-24T20:46:15.010000"],["2024-07-24T20:46:16.010000"],["2024-07-24T20:46:17.010000"],["2024-07-24T20:46:18.010000"],["2024-07-24T20:46:19.010000"],["2024-07-24T20:46:20.010000"],["2024-07-24T20:46:21.010000"],["2024-07-24T20:46:22.010000"],["2024-07-24T20:46:23.010000"],["2024-07-24T20:46:24.010000"],["2024-07-24T20:46:25.010000"],["2024-07-24T20:46:26.010000"],["2024-07-24T20:46:27.010000"],["2024-07-24T20:46:28.010000"],["2024-07-24T20:46:29.010000"],["2024-07-24T20:46:30.010000"],["2024-07-24T20:46:31.010000"],["2024-07-24T20:46:32.010000"],["2024-07-24T20:46:33.010000"],["2024-07-24T20:46:34.010000"],["2024-07-24T20:46:35.010000"],["2024-07-24T20:46:36.010000"],["2024-07-24T20:46:37.010000"],["2024-07-24T20:46:38.010000"],["2024-07-24T20:46:39.010000"],["2024-07-24T20:46:40.010000"],["2024-07-24T20:46:41.010000"],["2024-07-24T20:46:42.010000"],["2024-07-24T20:46:43.010000"],["2024-07-24T20:46:44.010000"],["2024-07-24T20:46:45.010000"],["2024-07-24T20:46:46.010000"],["2024-07-24T20:46:47.010000"],["2024-07-24T20:46:48.010000"],["2024-07-24T20:46:49.010000"],["2024-07-24T20:46:50.010000"],["2024-07-24T20:46:51.010000"],["2024-07-24T20:46:52.010000"],["2024-07-24T20:46:53.010000"],["2024-07-24T20:46:54.010000"],["2024-07-24T20:46:55.010000"],["2024-07-24T20:46:56.010000"],["2024-07-24T20:46:57.010000"],["2024-07-24T20:46:58.010000"],["2024-07-24T20:46:59.010000"],["2024-07-24T20:47:00.010000"],["2024-07-24T20:47:01.010000"],["2024-07-24T20:47:02.010000"],["2024-07-24T20:47:03.010000"],["2024-07-24T20:47:04.010000"],["2024-07-24T20:47:05.010000"],["2024-07-24T20:47:06.010000"],["2024-07-24T20:47:07.010000"],["2024-07-24T20:47:08.010000"],["2024-07-24T20:47:09.010000"],["2024-07-24T20:47:10.010000"],["2024-07-24T20:47:11.010000"],["2024-07-24T20:47:12.010000"],["2024-07-24T20:47:13.010000"],["2024-07-24T20:47:14.010000"],["2024-07-24T20:47:15.010000"],["2024-07-24T20:47:16.010000"],["2024-07-24T20:47:17.010000"],["2024-07-24T20:47:18.010000"],["2024-07-24T20:47:19.010000"],["2024-07-24T20:47:20.010000"],["2024-07-24T20:47:21.010000"],["2024-07-24T20:47:22.010000"],["2024-07-24T20:47:23.010000"],["2024-07-24T20:47:24.010000"],["2024-07-24T20:47:25.010000"],["2024-07-24T20:47:26.010000"],["2024-07-24T20:47:27.010000"],["2024-07-24T20:47:28.010000"],["2024-07-24T20:47:29.010000"],["2024-07-24T20:47:30.010000"],["2024-07-24T20:47:31.010000"],["2024-07-24T20:47:32.010000"],["2024-07-24T20:47:33.010000"],["2024-07-24T20:47:34.010000"],["2024-07-24T20:47:35.010000"],["2024-07-24T20:47:36.010000"],["2024-07-24T20:47:37.010000"],["2024-07-24T20:47:38.010000"],["2024-07-24T20:47:39.010000"],["2024-07-24T20:47:40.010000"],["2024-07-24T20:47:41.010000"],["2024-07-24T20:47:42.010000"],["2024-07-24T20:47:43.010000"],["2024-07-24T20:47:44.010000"],["2024-07-24T20:47:45.010000"],["2024-07-24T20:47:46.010000"],["2024-07-24T20:47:47.010000"],["2024-07-24T20:47:48.010000"],["2024-07-24T20:47:49.010000"],["2024-07-24T20:47:50.010000"],["2024-07-24T20:47:51.010000"],["2024-07-24T20:47:52.010000"],["2024-07-24T20:47:53.010000"],["2024-07-24T20:47:54.010000"],["2024-07-24T20:47:55.010000"],["2024-07-24T20:47:56.010000"],["2024-07-24T20:47:57.010000"],["2024-07-24T20:47:58.010000"],["2024-07-24T20:47:59.010000"],["2024-07-24T20:48:00.010000"],["2024-07-24T20:48:01.010000"],["2024-07-24T20:48:02.010000"],["2024-07-24T20:48:03.010000"],["2024-07-24T20:48:04.010000"],["2024-07-24T20:48:05.010000"],["2024-07-24T20:48:06.010000"],["2024-07-24T20:48:07.010000"],["2024-07-24T20:48:08.010000"],["2024-07-24T20:48:09.010000"],["2024-07-24T20:48:10.010000"],["2024-07-24T20:48:11.010000"],["2024-07-24T20:48:12.010000"],["2024-07-24T20:48:13.010000"],["2024-07-24T20:48:14.010000"],["2024-07-24T20:48:15.010000"],["2024-07-24T20:48:16.010000"],["2024-07-24T20:48:17.010000"],["2024-07-24T20:48:18.010000"],["2024-07-24T20:48:19.010000"],["2024-07-24T20:48:20.010000"],["2024-07-24T20:48:21.010000"],["2024-07-24T20:48:22.010000"],["2024-07-24T20:48:23.010000"],["2024-07-24T20:48:24.010000"],["2024-07-24T20:48:25.010000"],["2024-07-24T20:48:26.010000"],["2024-07-24T20:48:27.010000"],["2024-07-24T20:48:28.010000"],["2024-07-24T20:48:29.010000"],["2024-07-24T20:48:30.010000"],["2024-07-24T20:48:31.010000"],["2024-07-24T20:48:32.010000"],["2024-07-24T20:48:33.010000"],["2024-07-24T20:48:34.010000"],["2024-07-24T20:48:35.010000"],["2024-07-24T20:48:36.010000"],["2024-07-24T20:48:37.010000"],["2024-07-24T20:48:38.010000"],["2024-07-24T20:48:39.010000"],["2024-07-24T20:48:40.010000"],["2024-07-24T20:48:41.010000"],["2024-07-24T20:48:42.010000"],["2024-07-24T20:48:43.010000"],["2024-07-24T20:48:44.010000"],["2024-07-24T20:48:45.010000"],["2024-07-24T20:48:46.010000"],["2024-07-24T20:48:47.010000"],["2024-07-24T20:48:48.010000"],["2024-07-24T20:48:49.010000"],["2024-07-24T20:48:50.010000"],["2024-07-24T20:48:51.010000"],["2024-07-24T20:48:52.010000"],["2024-07-24T20:48:53.010000"],["2024-07-24T20:48:54.010000"],["2024-07-24T20:48:55.010000"],["2024-07-24T20:48:56.010000"],["2024-07-24T20:48:57.010000"],["2024-07-24T20:48:58.010000"],["2024-07-24T20:48:59.010000"],["2024-07-24T20:49:00.010000"],["2024-07-24T20:49:01.010000"],["2024-07-24T20:49:02.010000"],["2024-07-24T20:49:03.010000"],["2024-07-24T20:49:04.010000"],["2024-07-24T20:49:05.010000"],["2024-07-24T20:49:06.010000"],["2024-07-24T20:49:07.010000"],["2024-07-24T20:49:08.010000"],["2024-07-24T20:49:09.010000"],["2024-07-24T20:49:10.010000"],["2024-07-24T20:49:11.010000"],["2024-07-24T20:49:12.010000"],["2024-07-24T20:49:13.010000"],["2024-07-24T20:49:14.010000"],["2024-07-24T20:49:15.010000"],["2024-07-24T20:49:16.010000"],["2024-07-24T20:49:17.010000"],["2024-07-24T20:49:18.010000"],["2024-07-24T20:49:19.010000"],["2024-07-24T20:49:20.010000"],["2024-07-24T20:49:21.010000"],["2024-07-24T20:49:22.010000"],["2024-07-24T20:49:23.010000"],["2024-07-24T20:49:24.010000"],["2024-07-24T20:49:25.010000"],["2024-07-24T20:49:26.010000"],["2024-07-24T20:49:27.010000"],["2024-07-24T20:49:28.010000"],["2024-07-24T20:49:29.010000"],["2024-07-24T20:49:30.010000"],["2024-07-24T20:49:31.010000"],["2024-07-24T20:49:32.010000"],["2024-07-24T20:49:33.010000"],["2024-07-24T20:49:34.010000"],["2024-07-24T20:49:35.010000"],["2024-07-24T20:49:36.010000"],["2024-07-24T20:49:37.010000"],["2024-07-24T20:49:38.010000"],["2024-07-24T20:49:39.010000"],["2024-07-24T20:49:40.010000"],["2024-07-24T20:49:41.010000"],["2024-07-24T20:49:42.010000"],["2024-07-24T20:49:43.010000"],["2024-07-24T20:49:44.010000"],["2024-07-24T20:49:45.010000"],["2024-07-24T20:49:46.010000"],["2024-07-24T20:49:47.010000"],["2024-07-24T20:49:48.010000"],["2024-07-24T20:49:49.010000"],["2024-07-24T20:49:50.010000"],["2024-07-24T20:49:51.010000"],["2024-07-24T20:49:52.010000"],["2024-07-24T20:49:53.010000"],["2024-07-24T20:49:54.010000"],["2024-07-24T20:49:55.010000"],["2024-07-24T20:49:56.010000"],["2024-07-24T20:49:57.010000"],["2024-07-24T20:49:58.010000"],["2024-07-24T20:49:59.010000"],["2024-07-24T20:50:00.010000"],["2024-07-24T20:50:01.010000"],["2024-07-24T20:50:02.010000"],["2024-07-24T20:50:03.010000"],["2024-07-24T20:50:04.010000"],["2024-07-24T20:50:05.010000"],["2024-07-24T20:50:06.010000"],["2024-07-24T20:50:07.010000"],["2024-07-24T20:50:08.010000"],["2024-07-24T20:50:09.010000"],["2024-07-24T20:50:10.010000"],["2024-07-24T20:50:11.010000"],["2024-07-24T20:50:12.010000"],["2024-07-24T20:50:13.010000"],["2024-07-24T20:50:14.010000"],["2024-07-24T20:50:15.010000"],["2024-07-24T20:50:16.010000"],["2024-07-24T20:50:17.010000"],["2024-07-24T20:50:18.010000"],["2024-07-24T20:50:19.010000"],["2024-07-24T20:50:20.010000"],["2024-07-24T20:50:21.010000"],["2024-07-24T20:50:22.010000"],["2024-07-24T20:50:23.010000"],["2024-07-24T20:50:24.010000"],["2024-07-24T20:50:25.010000"],["2024-07-24T20:50:26.010000"],["2024-07-24T20:50:27.010000"],["2024-07-24T20:50:28.010000"],["2024-07-24T20:50:29.010000"],["2024-07-24T20:50:30.010000"],["2024-07-24T20:50:31.010000"],["2024-07-24T20:50:32.010000"],["2024-07-24T20:50:33.010000"],["2024-07-24T20:50:34.010000"],["2024-07-24T20:50:35.010000"],["2024-07-24T20:50:36.010000"],["2024-07-24T20:50:37.010000"],["2024-07-24T20:50:38.010000"],["2024-07-24T20:50:39.010000"],["2024-07-24T20:50:40.010000"],["2024-07-24T20:50:41.010000"],["2024-07-24T20:50:42.010000"],["2024-07-24T20:50:43.010000"],["2024-07-24T20:50:44.010000"],["2024-07-24T20:50:45.010000"],["2024-07-24T20:50:46.010000"],["2024-07-24T20:50:47.010000"],["2024-07-24T20:50:48.010000"],["2024-07-24T20:50:49.010000"],["2024-07-24T20:50:50.010000"],["2024-07-24T20:50:51.010000"],["2024-07-24T20:50:52.010000"],["2024-07-24T20:50:53.010000"],["2024-07-24T20:50:54.010000"],["2024-07-24T20:50:55.010000"],["2024-07-24T20:50:56.010000"],["2024-07-24T20:50:57.010000"],["2024-07-24T20:50:58.010000"],["2024-07-24T20:50:59.010000"],["2024-07-24T20:51:00.010000"],["2024-07-24T20:51:01.010000"],["2024-07-24T20:51:02.010000"],["2024-07-24T20:51:03.010000"],["2024-07-24T20:51:04.010000"],["2024-07-24T20:51:05.010000"],["2024-07-24T20:51:06.010000"],["2024-07-24T20:51:07.010000"],["2024-07-24T20:51:08.010000"],["2024-07-24T20:51:09.010000"],["2024-07-24T20:51:10.010000"],["2024-07-24T20:51:11.010000"],["2024-07-24T20:51:12.010000"],["2024-07-24T20:51:13.010000"],["2024-07-24T20:51:14.010000"],["2024-07-24T20:51:15.010000"],["2024-07-24T20:51:16.010000"],["2024-07-24T20:51:17.010000"],["2024-07-24T20:51:18.010000"],["2024-07-24T20:51:19.010000"],["2024-07-24T20:51:20.010000"],["2024-07-24T20:51:21.010000"],["2024-07-24T20:51:22.010000"],["2024-07-24T20:51:23.010000"],["2024-07-24T20:51:24.010000"],["2024-07-24T20:51:25.010000"],["2024-07-24T20:51:26.010000"],["2024-07-24T20:51:27.010000"],["2024-07-24T20:51:28.010000"],["2024-07-24T20:51:29.010000"],["2024-07-24T20:51:30.010000"],["2024-07-24T20:51:31.010000"],["2024-07-24T20:51:32.010000"],["2024-07-24T20:51:33.010000"],["2024-07-24T20:51:34.010000"],["2024-07-24T20:51:35.010000"],["2024-07-24T20:51:36.010000"],["2024-07-24T20:51:37.010000"],["2024-07-24T20:51:38.010000"],["2024-07-24T20:51:39.010000"],["2024-07-24T20:51:40.010000"],["2024-07-24T20:51:41.010000"],["2024-07-24T20:51:42.010000"],["2024-07-24T20:51:43.010000"],["2024-07-24T20:51:44.010000"],["2024-07-24T20:51:45.010000"],["2024-07-24T20:51:46.010000"],["2024-07-24T20:51:47.010000"],["2024-07-24T20:51:48.010000"],["2024-07-24T20:51:49.010000"],["2024-07-24T20:51:50.010000"],["2024-07-24T20:51:51.010000"],["2024-07-24T20:51:52.010000"],["2024-07-24T20:51:53.010000"],["2024-07-24T20:51:54.010000"],["2024-07-24T20:51:55.010000"],["2024-07-24T20:51:56.010000"],["2024-07-24T20:51:57.010000"],["2024-07-24T20:51:58.010000"],["2024-07-24T20:51:59.010000"],["2024-07-24T20:52:00.010000"],["2024-07-24T20:52:01.010000"],["2024-07-24T20:52:02.010000"],["2024-07-24T20:52:03.010000"],["2024-07-24T20:52:04.010000"],["2024-07-24T20:52:05.010000"],["2024-07-24T20:52:06.010000"],["2024-07-24T20:52:07.010000"],["2024-07-24T20:52:08.010000"],["2024-07-24T20:52:09.010000"],["2024-07-24T20:52:10.010000"],["2024-07-24T20:52:11.010000"],["2024-07-24T20:52:12.010000"],["2024-07-24T20:52:13.010000"],["2024-07-24T20:52:14.010000"],["2024-07-24T20:52:15.010000"],["2024-07-24T20:52:16.010000"],["2024-07-24T20:52:17.010000"],["2024-07-24T20:52:18.010000"],["2024-07-24T20:52:19.010000"],["2024-07-24T20:52:20.010000"],["2024-07-24T20:52:21.010000"],["2024-07-24T20:52:22.010000"],["2024-07-24T20:52:23.010000"],["2024-07-24T20:52:24.010000"],["2024-07-24T20:52:25.010000"],["2024-07-24T20:52:26.010000"],["2024-07-24T20:52:27.010000"],["2024-07-24T20:52:28.010000"],["2024-07-24T20:52:29.010000"],["2024-07-24T20:52:30.010000"],["2024-07-24T20:52:31.010000"],["2024-07-24T20:52:32.010000"],["2024-07-24T20:52:33.010000"],["2024-07-24T20:52:34.010000"],["2024-07-24T20:52:35.010000"],["2024-07-24T20:52:36.010000"],["2024-07-24T20:52:37.010000"],["2024-07-24T20:52:38.010000"],["2024-07-24T20:52:39.010000"],["2024-07-24T20:52:40.010000"],["2024-07-24T20:52:41.010000"],["2024-07-24T20:52:42.010000"],["2024-07-24T20:52:43.010000"],["2024-07-24T20:52:44.010000"],["2024-07-24T20:52:45.010000"],["2024-07-24T20:52:46.010000"],["2024-07-24T20:52:47.010000"],["2024-07-24T20:52:48.010000"],["2024-07-24T20:52:49.010000"],["2024-07-24T20:52:50.010000"],["2024-07-24T20:52:51.010000"],["2024-07-24T20:52:52.010000"],["2024-07-24T20:52:53.010000"],["2024-07-24T20:52:54.010000"],["2024-07-24T20:52:55.010000"],["2024-07-24T20:52:56.010000"],["2024-07-24T20:52:57.010000"],["2024-07-24T20:52:58.010000"],["2024-07-24T20:52:59.010000"],["2024-07-24T20:53:00.010000"],["2024-07-24T20:53:01.010000"],["2024-07-24T20:53:02.010000"],["2024-07-24T20:53:03.010000"],["2024-07-24T20:53:04.010000"],["2024-07-24T20:53:05.010000"],["2024-07-24T20:53:06.010000"],["2024-07-24T20:53:07.010000"],["2024-07-24T20:53:08.010000"],["2024-07-24T20:53:09.010000"],["2024-07-24T20:53:10.010000"],["2024-07-24T20:53:11.010000"],["2024-07-24T20:53:12.010000"],["2024-07-24T20:53:13.010000"],["2024-07-24T20:53:14.010000"],["2024-07-24T20:53:15.010000"],["2024-07-24T20:53:16.010000"],["2024-07-24T20:53:17.010000"],["2024-07-24T20:53:18.010000"],["2024-07-24T20:53:19.010000"],["2024-07-24T20:53:20.010000"],["2024-07-24T20:53:21.010000"],["2024-07-24T20:53:22.010000"],["2024-07-24T20:53:23.010000"],["2024-07-24T20:53:24.010000"],["2024-07-24T20:53:25.010000"],["2024-07-24T20:53:26.010000"],["2024-07-24T20:53:27.010000"],["2024-07-24T20:53:28.010000"],["2024-07-24T20:53:29.010000"],["2024-07-24T20:53:30.010000"],["2024-07-24T20:53:31.010000"],["2024-07-24T20:53:32.010000"],["2024-07-24T20:53:33.010000"],["2024-07-24T20:53:34.010000"],["2024-07-24T20:53:35.010000"],["2024-07-24T20:53:36.010000"],["2024-07-24T20:53:37.010000"],["2024-07-24T20:53:38.010000"],["2024-07-24T20:53:39.010000"],["2024-07-24T20:53:40.010000"],["2024-07-24T20:53:41.010000"],["2024-07-24T20:53:42.010000"],["2024-07-24T20:53:43.010000"],["2024-07-24T20:53:44.010000"],["2024-07-24T20:53:45.010000"],["2024-07-24T20:53:46.010000"],["2024-07-24T20:53:47.010000"],["2024-07-24T20:53:48.010000"],["2024-07-24T20:53:49.010000"],["2024-07-24T20:53:50.010000"],["2024-07-24T20:53:51.010000"],["2024-07-24T20:53:52.010000"],["2024-07-24T20:53:53.010000"],["2024-07-24T20:53:54.010000"],["2024-07-24T20:53:55.010000"],["2024-07-24T20:53:56.010000"],["2024-07-24T20:53:57.010000"],["2024-07-24T20:53:58.010000"],["2024-07-24T20:53:59.010000"],["2024-07-24T20:54:00.010000"],["2024-07-24T20:54:01.010000"],["2024-07-24T20:54:02.010000"],["2024-07-24T20:54:03.010000"],["2024-07-24T20:54:04.010000"],["2024-07-24T20:54:05.010000"],["2024-07-24T20:54:06.010000"],["2024-07-24T20:54:07.010000"],["2024-07-24T20:54:08.010000"],["2024-07-24T20:54:09.010000"],["2024-07-24T20:54:10.010000"],["2024-07-24T20:54:11.010000"],["2024-07-24T20:54:12.010000"],["2024-07-24T20:54:13.010000"],["2024-07-24T20:54:14.010000"],["2024-07-24T20:54:15.010000"],["2024-07-24T20:54:16.010000"],["2024-07-24T20:54:17.010000"],["2024-07-24T20:54:18.010000"],["2024-07-24T20:54:19.010000"],["2024-07-24T20:54:20.010000"],["2024-07-24T20:54:21.010000"],["2024-07-24T20:54:22.010000"],["2024-07-24T20:54:23.010000"],["2024-07-24T20:54:24.010000"],["2024-07-24T20:54:25.010000"],["2024-07-24T20:54:26.010000"],["2024-07-24T20:54:27.010000"],["2024-07-24T20:54:28.010000"],["2024-07-24T20:54:29.010000"],["2024-07-24T20:54:30.010000"],["2024-07-24T20:54:31.010000"],["2024-07-24T20:54:32.010000"],["2024-07-24T20:54:33.010000"],["2024-07-24T20:54:34.010000"],["2024-07-24T20:54:35.010000"],["2024-07-24T20:54:36.010000"],["2024-07-24T20:54:37.010000"],["2024-07-24T20:54:38.010000"],["2024-07-24T20:54:39.010000"],["2024-07-24T20:54:40.010000"],["2024-07-24T20:54:41.010000"],["2024-07-24T20:54:42.010000"],["2024-07-24T20:54:43.010000"],["2024-07-24T20:54:44.010000"],["2024-07-24T20:54:45.010000"],["2024-07-24T20:54:46.010000"],["2024-07-24T20:54:47.010000"],["2024-07-24T20:54:48.010000"],["2024-07-24T20:54:49.010000"],["2024-07-24T20:54:50.010000"],["2024-07-24T20:54:51.010000"],["2024-07-24T20:54:52.010000"],["2024-07-24T20:54:53.010000"],["2024-07-24T20:54:54.010000"],["2024-07-24T20:54:55.010000"],["2024-07-24T20:54:56.010000"],["2024-07-24T20:54:57.010000"],["2024-07-24T20:54:58.010000"],["2024-07-24T20:54:59.010000"],["2024-07-24T20:55:00.010000"],["2024-07-24T20:55:01.010000"],["2024-07-24T20:55:02.010000"],["2024-07-24T20:55:03.010000"],["2024-07-24T20:55:04.010000"],["2024-07-24T20:55:05.010000"],["2024-07-24T20:55:06.010000"],["2024-07-24T20:55:07.010000"],["2024-07-24T20:55:08.010000"],["2024-07-24T20:55:09.010000"],["2024-07-24T20:55:10.010000"],["2024-07-24T20:55:11.010000"],["2024-07-24T20:55:12.010000"],["2024-07-24T20:55:13.010000"],["2024-07-24T20:55:14.010000"],["2024-07-24T20:55:15.010000"],["2024-07-24T20:55:16.010000"],["2024-07-24T20:55:17.010000"],["2024-07-24T20:55:18.010000"],["2024-07-24T20:55:19.010000"],["2024-07-24T20:55:20.010000"],["2024-07-24T20:55:21.010000"],["2024-07-24T20:55:22.010000"],["2024-07-24T20:55:23.010000"],["2024-07-24T20:55:24.010000"],["2024-07-24T20:55:25.010000"],["2024-07-24T20:55:26.010000"],["2024-07-24T20:55:27.010000"],["2024-07-24T20:55:28.010000"],["2024-07-24T20:55:29.010000"],["2024-07-24T20:55:30.010000"],["2024-07-24T20:55:31.010000"],["2024-07-24T20:55:32.010000"],["2024-07-24T20:55:33.010000"],["2024-07-24T20:55:34.010000"],["2024-07-24T20:55:35.010000"],["2024-07-24T20:55:36.010000"],["2024-07-24T20:55:37.010000"],["2024-07-24T20:55:38.010000"],["2024-07-24T20:55:39.010000"],["2024-07-24T20:55:40.010000"],["2024-07-24T20:55:41.010000"],["2024-07-24T20:55:42.010000"],["2024-07-24T20:55:43.010000"],["2024-07-24T20:55:44.010000"],["2024-07-24T20:55:45.010000"],["2024-07-24T20:55:46.010000"],["2024-07-24T20:55:47.010000"],["2024-07-24T20:55:48.010000"],["2024-07-24T20:55:49.010000"],["2024-07-24T20:55:50.010000"],["2024-07-24T20:55:51.010000"],["2024-07-24T20:55:52.010000"],["2024-07-24T20:55:53.010000"],["2024-07-24T20:55:54.010000"],["2024-07-24T20:55:55.010000"],["2024-07-24T20:55:56.010000"],["2024-07-24T20:55:57.010000"],["2024-07-24T20:55:58.010000"],["2024-07-24T20:55:59.010000"],["2024-07-24T20:56:00.010000"],["2024-07-24T20:56:01.010000"],["2024-07-24T20:56:02.010000"],["2024-07-24T20:56:03.010000"],["2024-07-24T20:56:04.010000"],["2024-07-24T20:56:05.010000"],["2024-07-24T20:56:06.010000"],["2024-07-24T20:56:07.010000"],["2024-07-24T20:56:08.010000"],["2024-07-24T20:56:09.010000"],["2024-07-24T20:56:10.010000"],["2024-07-24T20:56:11.010000"],["2024-07-24T20:56:12.010000"],["2024-07-24T20:56:13.010000"],["2024-07-24T20:56:14.010000"],["2024-07-24T20:56:15.010000"],["2024-07-24T20:56:16.010000"],["2024-07-24T20:56:17.010000"],["2024-07-24T20:56:18.010000"],["2024-07-24T20:56:19.010000"],["2024-07-24T20:56:20.010000"],["2024-07-24T20:56:21.010000"],["2024-07-24T20:56:22.010000"],["2024-07-24T20:56:23.010000"],["2024-07-24T20:56:24.010000"],["2024-07-24T20:56:25.010000"],["2024-07-24T20:56:26.010000"],["2024-07-24T20:56:27.010000"],["2024-07-24T20:56:28.010000"],["2024-07-24T20:56:29.010000"],["2024-07-24T20:56:30.010000"],["2024-07-24T20:56:31.010000"],["2024-07-24T20:56:32.010000"],["2024-07-24T20:56:33.010000"],["2024-07-24T20:56:34.010000"],["2024-07-24T20:56:35.010000"],["2024-07-24T20:56:36.010000"],["2024-07-24T20:56:37.010000"],["2024-07-24T20:56:38.010000"],["2024-07-24T20:56:39.010000"],["2024-07-24T20:56:40.010000"],["2024-07-24T20:56:41.010000"],["2024-07-24T20:56:42.010000"],["2024-07-24T20:56:43.010000"],["2024-07-24T20:56:44.010000"],["2024-07-24T20:56:45.010000"],["2024-07-24T20:56:46.010000"],["2024-07-24T20:56:47.010000"],["2024-07-24T20:56:48.010000"],["2024-07-24T20:56:49.010000"],["2024-07-24T20:56:50.010000"],["2024-07-24T20:56:51.010000"],["2024-07-24T20:56:52.010000"],["2024-07-24T20:56:53.010000"],["2024-07-24T20:56:54.010000"],["2024-07-24T20:56:55.010000"],["2024-07-24T20:56:56.010000"],["2024-07-24T20:56:57.010000"],["2024-07-24T20:56:58.010000"],["2024-07-24T20:56:59.010000"],["2024-07-24T20:57:00.010000"],["2024-07-24T20:57:01.010000"],["2024-07-24T20:57:02.010000"],["2024-07-24T20:57:03.010000"],["2024-07-24T20:57:04.010000"],["2024-07-24T20:57:05.010000"],["2024-07-24T20:57:06.010000"],["2024-07-24T20:57:07.010000"],["2024-07-24T20:57:08.010000"],["2024-07-24T20:57:09.010000"],["2024-07-24T20:57:10.010000"],["2024-07-24T20:57:11.010000"],["2024-07-24T20:57:12.010000"],["2024-07-24T20:57:13.010000"],["2024-07-24T20:57:14.010000"],["2024-07-24T20:57:15.010000"],["2024-07-24T20:57:16.010000"],["2024-07-24T20:57:17.010000"],["2024-07-24T20:57:18.010000"],["2024-07-24T20:57:19.010000"],["2024-07-24T20:57:20.010000"],["2024-07-24T20:57:21.010000"],["2024-07-24T20:57:22.010000"],["2024-07-24T20:57:23.010000"],["2024-07-24T20:57:24.010000"],["2024-07-24T20:57:25.010000"],["2024-07-24T20:57:26.010000"],["2024-07-24T20:57:27.010000"],["2024-07-24T20:57:28.010000"],["2024-07-24T20:57:29.010000"],["2024-07-24T20:57:30.010000"],["2024-07-24T20:57:31.010000"],["2024-07-24T20:57:32.010000"],["2024-07-24T20:57:33.010000"],["2024-07-24T20:57:34.010000"],["2024-07-24T20:57:35.010000"],["2024-07-24T20:57:36.010000"],["2024-07-24T20:57:37.010000"],["2024-07-24T20:57:38.010000"],["2024-07-24T20:57:39.010000"],["2024-07-24T20:57:40.010000"],["2024-07-24T20:57:41.010000"],["2024-07-24T20:57:42.010000"],["2024-07-24T20:57:43.010000"],["2024-07-24T20:57:44.010000"],["2024-07-24T20:57:45.010000"],["2024-07-24T20:57:46.010000"],["2024-07-24T20:57:47.010000"],["2024-07-24T20:57:48.010000"],["2024-07-24T20:57:49.010000"],["2024-07-24T20:57:50.010000"],["2024-07-24T20:57:51.010000"],["2024-07-24T20:57:52.010000"],["2024-07-24T20:57:53.010000"],["2024-07-24T20:57:54.010000"],["2024-07-24T20:57:55.010000"],["2024-07-24T20:57:56.010000"],["2024-07-24T20:57:57.010000"],["2024-07-24T20:57:58.010000"],["2024-07-24T20:57:59.010000"],["2024-07-24T20:58:00.010000"],["2024-07-24T20:58:01.010000"],["2024-07-24T20:58:02.010000"],["2024-07-24T20:58:03.010000"],["2024-07-24T20:58:04.010000"],["2024-07-24T20:58:05.010000"],["2024-07-24T20:58:06.010000"],["2024-07-24T20:58:07.010000"],["2024-07-24T20:58:08.010000"],["2024-07-24T20:58:09.010000"],["2024-07-24T20:58:10.010000"],["2024-07-24T20:58:11.010000"],["2024-07-24T20:58:12.010000"],["2024-07-24T20:58:13.010000"],["2024-07-24T20:58:14.010000"],["2024-07-24T20:58:15.010000"],["2024-07-24T20:58:16.010000"],["2024-07-24T20:58:17.010000"],["2024-07-24T20:58:18.010000"],["2024-07-24T20:58:19.010000"],["2024-07-24T20:58:20.010000"],["2024-07-24T20:58:21.010000"],["2024-07-24T20:58:22.010000"],["2024-07-24T20:58:23.010000"],["2024-07-24T20:58:24.010000"],["2024-07-24T20:58:25.010000"],["2024-07-24T20:58:26.010000"],["2024-07-24T20:58:27.010000"],["2024-07-24T20:58:28.010000"],["2024-07-24T20:58:29.010000"],["2024-07-24T20:58:30.010000"],["2024-07-24T20:58:31.010000"],["2024-07-24T20:58:32.010000"],["2024-07-24T20:58:33.010000"],["2024-07-24T20:58:34.010000"],["2024-07-24T20:58:35.010000"],["2024-07-24T20:58:36.010000"],["2024-07-24T20:58:37.010000"],["2024-07-24T20:58:38.010000"],["2024-07-24T20:58:39.010000"],["2024-07-24T20:58:40.010000"],["2024-07-24T20:58:41.010000"],["2024-07-24T20:58:42.010000"],["2024-07-24T20:58:43.010000"],["2024-07-24T20:58:44.010000"],["2024-07-24T20:58:45.010000"],["2024-07-24T20:58:46.010000"],["2024-07-24T20:58:47.010000"],["2024-07-24T20:58:48.010000"],["2024-07-24T20:58:49.010000"],["2024-07-24T20:58:50.010000"],["2024-07-24T20:58:51.010000"],["2024-07-24T20:58:52.010000"],["2024-07-24T20:58:53.010000"],["2024-07-24T20:58:54.010000"],["2024-07-24T20:58:55.010000"],["2024-07-24T20:58:56.010000"],["2024-07-24T20:58:57.010000"],["2024-07-24T20:58:58.010000"],["2024-07-24T20:58:59.010000"],["2024-07-24T20:59:00.010000"],["2024-07-24T20:59:01.010000"],["2024-07-24T20:59:02.010000"],["2024-07-24T20:59:03.010000"],["2024-07-24T20:59:04.010000"],["2024-07-24T20:59:05.010000"],["2024-07-24T20:59:06.010000"],["2024-07-24T20:59:07.010000"],["2024-07-24T20:59:08.010000"],["2024-07-24T20:59:09.010000"],["2024-07-24T20:59:10.010000"],["2024-07-24T20:59:11.010000"],["2024-07-24T20:59:12.010000"],["2024-07-24T20:59:13.010000"],["2024-07-24T20:59:14.010000"],["2024-07-24T20:59:15.010000"],["2024-07-24T20:59:16.010000"],["2024-07-24T20:59:17.010000"],["2024-07-24T20:59:18.010000"],["2024-07-24T20:59:19.010000"],["2024-07-24T20:59:20.010000"],["2024-07-24T20:59:21.010000"],["2024-07-24T20:59:22.010000"],["2024-07-24T20:59:23.010000"],["2024-07-24T20:59:24.010000"],["2024-07-24T20:59:25.010000"],["2024-07-24T20:59:26.010000"],["2024-07-24T20:59:27.010000"],["2024-07-24T20:59:28.010000"],["2024-07-24T20:59:29.010000"],["2024-07-24T20:59:30.010000"],["2024-07-24T20:59:31.010000"],["2024-07-24T20:59:32.010000"],["2024-07-24T20:59:33.010000"],["2024-07-24T20:59:34.010000"],["2024-07-24T20:59:35.010000"],["2024-07-24T20:59:36.010000"],["2024-07-24T20:59:37.010000"],["2024-07-24T20:59:38.010000"],["2024-07-24T20:59:39.010000"],["2024-07-24T20:59:40.010000"],["2024-07-24T20:59:41.010000"],["2024-07-24T20:59:42.010000"],["2024-07-24T20:59:43.010000"],["2024-07-24T20:59:44.010000"],["2024-07-24T20:59:45.010000"],["2024-07-24T20:59:46.010000"],["2024-07-24T20:59:47.010000"],["2024-07-24T20:59:48.010000"],["2024-07-24T20:59:49.010000"],["2024-07-24T20:59:50.010000"],["2024-07-24T20:59:51.010000"],["2024-07-24T20:59:52.010000"],["2024-07-24T20:59:53.010000"],["2024-07-24T20:59:54.010000"],["2024-07-24T20:59:55.010000"],["2024-07-24T20:59:56.010000"],["2024-07-24T20:59:57.010000"],["2024-07-24T20:59:58.010000"],["2024-07-24T20:59:59.010000"],["2024-07-24T21:00:00.010000"],["2024-07-24T21:00:01.010000"],["2024-07-24T21:00:02.010000"],["2024-07-24T21:00:03.010000"],["2024-07-24T21:00:04.010000"],["2024-07-24T21:00:05.010000"],["2024-07-24T21:00:06.010000"],["2024-07-24T21:00:07.010000"],["2024-07-24T21:00:08.010000"],["2024-07-24T21:00:09.010000"],["2024-07-24T21:00:10.010000"],["2024-07-24T21:00:11.010000"],["2024-07-24T21:00:12.010000"],["2024-07-24T21:00:13.010000"],["2024-07-24T21:00:14.010000"],["2024-07-24T21:00:15.010000"],["2024-07-24T21:00:16.010000"],["2024-07-24T21:00:17.010000"],["2024-07-24T21:00:18.010000"],["2024-07-24T21:00:19.010000"],["2024-07-24T21:00:20.010000"],["2024-07-24T21:00:21.010000"],["2024-07-24T21:00:22.010000"],["2024-07-24T21:00:23.010000"],["2024-07-24T21:00:24.010000"],["2024-07-24T21:00:25.010000"],["2024-07-24T21:00:26.010000"],["2024-07-24T21:00:27.010000"],["2024-07-24T21:00:28.010000"],["2024-07-24T21:00:29.010000"],["2024-07-24T21:00:30.010000"],["2024-07-24T21:00:31.010000"],["2024-07-24T21:00:32.010000"],["2024-07-24T21:00:33.010000"],["2024-07-24T21:00:34.010000"],["2024-07-24T21:00:35.010000"],["2024-07-24T21:00:36.010000"],["2024-07-24T21:00:37.010000"],["2024-07-24T21:00:38.010000"],["2024-07-24T21:00:39.010000"],["2024-07-24T21:00:40.010000"],["2024-07-24T21:00:41.010000"],["2024-07-24T21:00:42.010000"],["2024-07-24T21:00:43.010000"],["2024-07-24T21:00:44.010000"],["2024-07-24T21:00:45.010000"],["2024-07-24T21:00:46.010000"],["2024-07-24T21:00:47.010000"],["2024-07-24T21:00:48.010000"],["2024-07-24T21:00:49.010000"],["2024-07-24T21:00:50.010000"],["2024-07-24T21:00:51.010000"],["2024-07-24T21:00:52.010000"],["2024-07-24T21:00:53.010000"],["2024-07-24T21:00:54.010000"],["2024-07-24T21:00:55.010000"],["2024-07-24T21:00:56.010000"],["2024-07-24T21:00:57.010000"],["2024-07-24T21:00:58.010000"],["2024-07-24T21:00:59.010000"],["2024-07-24T21:01:00.010000"],["2024-07-24T21:01:01.010000"],["2024-07-24T21:01:02.010000"],["2024-07-24T21:01:03.010000"],["2024-07-24T21:01:04.010000"],["2024-07-24T21:01:05.010000"],["2024-07-24T21:01:06.010000"],["2024-07-24T21:01:07.010000"],["2024-07-24T21:01:08.010000"],["2024-07-24T21:01:09.010000"],["2024-07-24T21:01:10.010000"],["2024-07-24T21:01:11.010000"],["2024-07-24T21:01:12.010000"],["2024-07-24T21:01:13.010000"],["2024-07-24T21:01:14.010000"],["2024-07-24T21:01:15.010000"],["2024-07-24T21:01:16.010000"],["2024-07-24T21:01:17.010000"],["2024-07-24T21:01:18.010000"],["2024-07-24T21:01:19.010000"],["2024-07-24T21:01:20.010000"],["2024-07-24T21:01:21.010000"],["2024-07-24T21:01:22.010000"],["2024-07-24T21:01:23.010000"],["2024-07-24T21:01:24.010000"],["2024-07-24T21:01:25.010000"],["2024-07-24T21:01:26.010000"],["2024-07-24T21:01:27.010000"],["2024-07-24T21:01:28.010000"],["2024-07-24T21:01:29.010000"],["2024-07-24T21:01:30.010000"],["2024-07-24T21:01:31.010000"],["2024-07-24T21:01:32.010000"],["2024-07-24T21:01:33.010000"],["2024-07-24T21:01:34.010000"],["2024-07-24T21:01:35.010000"],["2024-07-24T21:01:36.010000"],["2024-07-24T21:01:37.010000"],["2024-07-24T21:01:38.010000"],["2024-07-24T21:01:39.010000"],["2024-07-24T21:01:40.010000"],["2024-07-24T21:01:41.010000"],["2024-07-24T21:01:42.010000"],["2024-07-24T21:01:43.010000"],["2024-07-24T21:01:44.010000"],["2024-07-24T21:01:45.010000"],["2024-07-24T21:01:46.010000"],["2024-07-24T21:01:47.010000"],["2024-07-24T21:01:48.010000"],["2024-07-24T21:01:49.010000"],["2024-07-24T21:01:50.010000"],["2024-07-24T21:01:51.010000"],["2024-07-24T21:01:52.010000"],["2024-07-24T21:01:53.010000"],["2024-07-24T21:01:54.010000"],["2024-07-24T21:01:55.010000"],["2024-07-24T21:01:56.010000"],["2024-07-24T21:01:57.010000"],["2024-07-24T21:01:58.010000"],["2024-07-24T21:01:59.010000"],["2024-07-24T21:02:00.010000"],["2024-07-24T21:02:01.010000"],["2024-07-24T21:02:02.010000"],["2024-07-24T21:02:03.010000"],["2024-07-24T21:02:04.010000"],["2024-07-24T21:02:05.010000"],["2024-07-24T21:02:06.010000"],["2024-07-24T21:02:07.010000"],["2024-07-24T21:02:08.010000"],["2024-07-24T21:02:09.010000"],["2024-07-24T21:02:10.010000"],["2024-07-24T21:02:11.010000"],["2024-07-24T21:02:12.010000"],["2024-07-24T21:02:13.010000"],["2024-07-24T21:02:14.010000"],["2024-07-24T21:02:15.010000"],["2024-07-24T21:02:16.010000"],["2024-07-24T21:02:17.010000"],["2024-07-24T21:02:18.010000"],["2024-07-24T21:02:19.010000"],["2024-07-24T21:02:20.010000"],["2024-07-24T21:02:21.010000"],["2024-07-24T21:02:22.010000"],["2024-07-24T21:02:23.010000"],["2024-07-24T21:02:24.010000"],["2024-07-24T21:02:25.010000"],["2024-07-24T21:02:26.010000"],["2024-07-24T21:02:27.010000"],["2024-07-24T21:02:28.010000"],["2024-07-24T21:02:29.010000"],["2024-07-24T21:02:30.010000"],["2024-07-24T21:02:31.010000"],["2024-07-24T21:02:32.010000"],["2024-07-24T21:02:33.010000"],["2024-07-24T21:02:34.010000"],["2024-07-24T21:02:35.010000"],["2024-07-24T21:02:36.010000"],["2024-07-24T21:02:37.010000"],["2024-07-24T21:02:38.010000"],["2024-07-24T21:02:39.010000"],["2024-07-24T21:02:40.010000"],["2024-07-24T21:02:41.010000"],["2024-07-24T21:02:42.010000"],["2024-07-24T21:02:43.010000"],["2024-07-24T21:02:44.010000"],["2024-07-24T21:02:45.010000"],["2024-07-24T21:02:46.010000"],["2024-07-24T21:02:47.010000"],["2024-07-24T21:02:48.010000"],["2024-07-24T21:02:49.010000"],["2024-07-24T21:02:50.010000"],["2024-07-24T21:02:51.010000"],["2024-07-24T21:02:52.010000"],["2024-07-24T21:02:53.010000"],["2024-07-24T21:02:54.010000"],["2024-07-24T21:02:55.010000"],["2024-07-24T21:02:56.010000"],["2024-07-24T21:02:57.010000"],["2024-07-24T21:02:58.010000"],["2024-07-24T21:02:59.010000"],["2024-07-24T21:03:00.010000"],["2024-07-24T21:03:01.010000"],["2024-07-24T21:03:02.010000"],["2024-07-24T21:03:03.010000"],["2024-07-24T21:03:04.010000"],["2024-07-24T21:03:05.010000"],["2024-07-24T21:03:06.010000"],["2024-07-24T21:03:07.010000"],["2024-07-24T21:03:08.010000"],["2024-07-24T21:03:09.010000"],["2024-07-24T21:03:10.010000"],["2024-07-24T21:03:11.010000"],["2024-07-24T21:03:12.010000"],["2024-07-24T21:03:13.010000"],["2024-07-24T21:03:14.010000"],["2024-07-24T21:03:15.010000"],["2024-07-24T21:03:16.010000"],["2024-07-24T21:03:17.010000"],["2024-07-24T21:03:18.010000"],["2024-07-24T21:03:19.010000"],["2024-07-24T21:03:20.010000"],["2024-07-24T21:03:21.010000"],["2024-07-24T21:03:22.010000"],["2024-07-24T21:03:23.010000"],["2024-07-24T21:03:24.010000"],["2024-07-24T21:03:25.010000"],["2024-07-24T21:03:26.010000"],["2024-07-24T21:03:27.010000"],["2024-07-24T21:03:28.010000"],["2024-07-24T21:03:29.010000"],["2024-07-24T21:03:30.010000"],["2024-07-24T21:03:31.010000"],["2024-07-24T21:03:32.010000"],["2024-07-24T21:03:33.010000"],["2024-07-24T21:03:34.010000"],["2024-07-24T21:03:35.010000"],["2024-07-24T21:03:36.010000"],["2024-07-24T21:03:37.010000"],["2024-07-24T21:03:38.010000"],["2024-07-24T21:03:39.010000"],["2024-07-24T21:03:40.010000"],["2024-07-24T21:03:41.010000"],["2024-07-24T21:03:42.010000"],["2024-07-24T21:03:43.010000"],["2024-07-24T21:03:44.010000"],["2024-07-24T21:03:45.010000"],["2024-07-24T21:03:46.010000"],["2024-07-24T21:03:47.010000"],["2024-07-24T21:03:48.010000"],["2024-07-24T21:03:49.010000"],["2024-07-24T21:03:50.010000"],["2024-07-24T21:03:51.010000"],["2024-07-24T21:03:52.010000"],["2024-07-24T21:03:53.010000"],["2024-07-24T21:03:54.010000"],["2024-07-24T21:03:55.010000"],["2024-07-24T21:03:56.010000"],["2024-07-24T21:03:57.010000"],["2024-07-24T21:03:58.010000"],["2024-07-24T21:03:59.010000"],["2024-07-24T21:04:00.010000"],["2024-07-24T21:04:01.010000"],["2024-07-24T21:04:02.010000"],["2024-07-24T21:04:03.010000"],["2024-07-24T21:04:04.010000"],["2024-07-24T21:04:05.010000"],["2024-07-24T21:04:06.010000"],["2024-07-24T21:04:07.010000"],["2024-07-24T21:04:08.010000"],["2024-07-24T21:04:09.010000"],["2024-07-24T21:04:10.010000"],["2024-07-24T21:04:11.010000"],["2024-07-24T21:04:12.010000"],["2024-07-24T21:04:13.010000"],["2024-07-24T21:04:14.010000"],["2024-07-24T21:04:15.010000"],["2024-07-24T21:04:16.010000"],["2024-07-24T21:04:17.010000"],["2024-07-24T21:04:18.010000"],["2024-07-24T21:04:19.010000"],["2024-07-24T21:04:20.010000"],["2024-07-24T21:04:21.010000"],["2024-07-24T21:04:22.010000"],["2024-07-24T21:04:23.010000"],["2024-07-24T21:04:24.010000"],["2024-07-24T21:04:25.010000"],["2024-07-24T21:04:26.010000"],["2024-07-24T21:04:27.010000"],["2024-07-24T21:04:28.010000"],["2024-07-24T21:04:29.010000"],["2024-07-24T21:04:30.010000"],["2024-07-24T21:04:31.010000"],["2024-07-24T21:04:32.010000"],["2024-07-24T21:04:33.010000"],["2024-07-24T21:04:34.010000"],["2024-07-24T21:04:35.010000"],["2024-07-24T21:04:36.010000"],["2024-07-24T21:04:37.010000"],["2024-07-24T21:04:38.010000"],["2024-07-24T21:04:39.010000"],["2024-07-24T21:04:40.010000"],["2024-07-24T21:04:41.010000"],["2024-07-24T21:04:42.010000"],["2024-07-24T21:04:43.010000"],["2024-07-24T21:04:44.010000"],["2024-07-24T21:04:45.010000"],["2024-07-24T21:04:46.010000"],["2024-07-24T21:04:47.010000"],["2024-07-24T21:04:48.010000"],["2024-07-24T21:04:49.010000"],["2024-07-24T21:04:50.010000"],["2024-07-24T21:04:51.010000"],["2024-07-24T21:04:52.010000"],["2024-07-24T21:04:53.010000"],["2024-07-24T21:04:54.010000"],["2024-07-24T21:04:55.010000"],["2024-07-24T21:04:56.010000"],["2024-07-24T21:04:57.010000"],["2024-07-24T21:04:58.010000"],["2024-07-24T21:04:59.010000"],["2024-07-24T21:05:00.010000"],["2024-07-24T21:05:01.010000"],["2024-07-24T21:05:02.010000"],["2024-07-24T21:05:03.010000"],["2024-07-24T21:05:04.010000"],["2024-07-24T21:05:05.010000"],["2024-07-24T21:05:06.010000"],["2024-07-24T21:05:07.010000"],["2024-07-24T21:05:08.010000"],["2024-07-24T21:05:09.010000"],["2024-07-24T21:05:10.010000"],["2024-07-24T21:05:11.010000"],["2024-07-24T21:05:12.010000"],["2024-07-24T21:05:13.010000"],["2024-07-24T21:05:14.010000"],["2024-07-24T21:05:15.010000"],["2024-07-24T21:05:16.010000"],["2024-07-24T21:05:17.010000"],["2024-07-24T21:05:18.010000"],["2024-07-24T21:05:19.010000"],["2024-07-24T21:05:20.010000"],["2024-07-24T21:05:21.010000"],["2024-07-24T21:05:22.010000"],["2024-07-24T21:05:23.010000"],["2024-07-24T21:05:24.010000"],["2024-07-24T21:05:25.010000"],["2024-07-24T21:05:26.010000"],["2024-07-24T21:05:27.010000"],["2024-07-24T21:05:28.010000"],["2024-07-24T21:05:29.010000"],["2024-07-24T21:05:30.010000"],["2024-07-24T21:05:31.010000"],["2024-07-24T21:05:32.010000"],["2024-07-24T21:05:33.010000"],["2024-07-24T21:05:34.010000"],["2024-07-24T21:05:35.010000"],["2024-07-24T21:05:36.010000"],["2024-07-24T21:05:37.010000"],["2024-07-24T21:05:38.010000"],["2024-07-24T21:05:39.010000"],["2024-07-24T21:05:40.010000"],["2024-07-24T21:05:41.010000"],["2024-07-24T21:05:42.010000"],["2024-07-24T21:05:43.010000"],["2024-07-24T21:05:44.010000"],["2024-07-24T21:05:45.010000"],["2024-07-24T21:05:46.010000"],["2024-07-24T21:05:47.010000"],["2024-07-24T21:05:48.010000"],["2024-07-24T21:05:49.010000"],["2024-07-24T21:05:50.010000"],["2024-07-24T21:05:51.010000"],["2024-07-24T21:05:52.010000"],["2024-07-24T21:05:53.010000"],["2024-07-24T21:05:54.010000"],["2024-07-24T21:05:55.010000"],["2024-07-24T21:05:56.010000"],["2024-07-24T21:05:57.010000"],["2024-07-24T21:05:58.010000"],["2024-07-24T21:05:59.010000"],["2024-07-24T21:06:00.010000"],["2024-07-24T21:06:01.010000"],["2024-07-24T21:06:02.010000"],["2024-07-24T21:06:03.010000"],["2024-07-24T21:06:04.010000"],["2024-07-24T21:06:05.010000"],["2024-07-24T21:06:06.010000"],["2024-07-24T21:06:07.010000"],["2024-07-24T21:06:08.010000"],["2024-07-24T21:06:09.010000"],["2024-07-24T21:06:10.010000"],["2024-07-24T21:06:11.010000"],["2024-07-24T21:06:12.010000"],["2024-07-24T21:06:13.010000"],["2024-07-24T21:06:14.010000"],["2024-07-24T21:06:15.010000"],["2024-07-24T21:06:16.010000"],["2024-07-24T21:06:17.010000"],["2024-07-24T21:06:18.010000"],["2024-07-24T21:06:19.010000"],["2024-07-24T21:06:20.010000"],["2024-07-24T21:06:21.010000"],["2024-07-24T21:06:22.010000"],["2024-07-24T21:06:23.010000"],["2024-07-24T21:06:24.010000"],["2024-07-24T21:06:25.010000"],["2024-07-24T21:06:26.010000"],["2024-07-24T21:06:27.010000"],["2024-07-24T21:06:28.010000"],["2024-07-24T21:06:29.010000"],["2024-07-24T21:06:30.010000"],["2024-07-24T21:06:31.010000"],["2024-07-24T21:06:32.010000"],["2024-07-24T21:06:33.010000"],["2024-07-24T21:06:34.010000"],["2024-07-24T21:06:35.010000"],["2024-07-24T21:06:36.010000"],["2024-07-24T21:06:37.010000"],["2024-07-24T21:06:38.010000"],["2024-07-24T21:06:39.010000"],["2024-07-24T21:06:40.010000"],["2024-07-24T21:06:41.010000"],["2024-07-24T21:06:42.010000"],["2024-07-24T21:06:43.010000"],["2024-07-24T21:06:44.010000"],["2024-07-24T21:06:45.010000"],["2024-07-24T21:06:46.010000"],["2024-07-24T21:06:47.010000"],["2024-07-24T21:06:48.010000"],["2024-07-24T21:06:49.010000"],["2024-07-24T21:06:50.010000"],["2024-07-24T21:06:51.010000"],["2024-07-24T21:06:52.010000"],["2024-07-24T21:06:53.010000"],["2024-07-24T21:06:54.010000"],["2024-07-24T21:06:55.010000"],["2024-07-24T21:06:56.010000"],["2024-07-24T21:06:57.010000"],["2024-07-24T21:06:58.010000"],["2024-07-24T21:06:59.010000"],["2024-07-24T21:07:00.010000"],["2024-07-24T21:07:01.010000"],["2024-07-24T21:07:02.010000"],["2024-07-24T21:07:03.010000"],["2024-07-24T21:07:04.010000"],["2024-07-24T21:07:05.010000"],["2024-07-24T21:07:06.010000"],["2024-07-24T21:07:07.010000"],["2024-07-24T21:07:08.010000"],["2024-07-24T21:07:09.010000"],["2024-07-24T21:07:10.010000"],["2024-07-24T21:07:11.010000"],["2024-07-24T21:07:12.010000"],["2024-07-24T21:07:13.010000"],["2024-07-24T21:07:14.010000"],["2024-07-24T21:07:15.010000"],["2024-07-24T21:07:16.010000"],["2024-07-24T21:07:17.010000"],["2024-07-24T21:07:18.010000"],["2024-07-24T21:07:19.010000"],["2024-07-24T21:07:20.010000"],["2024-07-24T21:07:21.010000"],["2024-07-24T21:07:22.010000"],["2024-07-24T21:07:23.010000"],["2024-07-24T21:07:24.010000"],["2024-07-24T21:07:25.010000"],["2024-07-24T21:07:26.010000"],["2024-07-24T21:07:27.010000"],["2024-07-24T21:07:28.010000"],["2024-07-24T21:07:29.010000"],["2024-07-24T21:07:30.010000"],["2024-07-24T21:07:31.010000"],["2024-07-24T21:07:32.010000"],["2024-07-24T21:07:33.010000"],["2024-07-24T21:07:34.010000"],["2024-07-24T21:07:35.010000"],["2024-07-24T21:07:36.010000"],["2024-07-24T21:07:37.010000"],["2024-07-24T21:07:38.010000"],["2024-07-24T21:07:39.010000"],["2024-07-24T21:07:40.010000"],["2024-07-24T21:07:41.010000"],["2024-07-24T21:07:42.010000"],["2024-07-24T21:07:43.010000"],["2024-07-24T21:07:44.010000"],["2024-07-24T21:07:45.010000"],["2024-07-24T21:07:46.010000"],["2024-07-24T21:07:47.010000"],["2024-07-24T21:07:48.010000"],["2024-07-24T21:07:49.010000"],["2024-07-24T21:07:50.010000"],["2024-07-24T21:07:51.010000"],["2024-07-24T21:07:52.010000"],["2024-07-24T21:07:53.010000"],["2024-07-24T21:07:54.010000"],["2024-07-24T21:07:55.010000"],["2024-07-24T21:07:56.010000"],["2024-07-24T21:07:57.010000"],["2024-07-24T21:07:58.010000"],["2024-07-24T21:07:59.010000"],["2024-07-24T21:08:00.010000"],["2024-07-24T21:08:01.010000"],["2024-07-24T21:08:02.010000"],["2024-07-24T21:08:03.010000"],["2024-07-24T21:08:04.010000"],["2024-07-24T21:08:05.010000"],["2024-07-24T21:08:06.010000"],["2024-07-24T21:08:07.010000"],["2024-07-24T21:08:08.010000"],["2024-07-24T21:08:09.010000"],["2024-07-24T21:08:10.010000"],["2024-07-24T21:08:11.010000"],["2024-07-24T21:08:12.010000"],["2024-07-24T21:08:13.010000"],["2024-07-24T21:08:14.010000"],["2024-07-24T21:08:15.010000"],["2024-07-24T21:08:16.010000"],["2024-07-24T21:08:17.010000"],["2024-07-24T21:08:18.010000"],["2024-07-24T21:08:19.010000"],["2024-07-24T21:08:20.010000"],["2024-07-24T21:08:21.010000"],["2024-07-24T21:08:22.010000"],["2024-07-24T21:08:23.010000"],["2024-07-24T21:08:24.010000"],["2024-07-24T21:08:25.010000"],["2024-07-24T21:08:26.010000"],["2024-07-24T21:08:27.010000"],["2024-07-24T21:08:28.010000"],["2024-07-24T21:08:29.010000"],["2024-07-24T21:08:30.010000"],["2024-07-24T21:08:31.010000"],["2024-07-24T21:08:32.010000"],["2024-07-24T21:08:33.010000"],["2024-07-24T21:08:34.010000"],["2024-07-24T21:08:35.010000"],["2024-07-24T21:08:36.010000"],["2024-07-24T21:08:37.010000"],["2024-07-24T21:08:38.010000"],["2024-07-24T21:08:39.010000"],["2024-07-24T21:08:40.010000"],["2024-07-24T21:08:41.010000"],["2024-07-24T21:08:42.010000"],["2024-07-24T21:08:43.010000"],["2024-07-24T21:08:44.010000"],["2024-07-24T21:08:45.010000"],["2024-07-24T21:08:46.010000"],["2024-07-24T21:08:47.010000"],["2024-07-24T21:08:48.010000"],["2024-07-24T21:08:49.010000"],["2024-07-24T21:08:50.010000"],["2024-07-24T21:08:51.010000"],["2024-07-24T21:08:52.010000"],["2024-07-24T21:08:53.010000"],["2024-07-24T21:08:54.010000"],["2024-07-24T21:08:55.010000"],["2024-07-24T21:08:56.010000"],["2024-07-24T21:08:57.010000"],["2024-07-24T21:08:58.010000"],["2024-07-24T21:08:59.010000"],["2024-07-24T21:09:00.010000"],["2024-07-24T21:09:01.010000"],["2024-07-24T21:09:02.010000"],["2024-07-24T21:09:03.010000"],["2024-07-24T21:09:04.010000"],["2024-07-24T21:09:05.010000"],["2024-07-24T21:09:06.010000"],["2024-07-24T21:09:07.010000"],["2024-07-24T21:09:08.010000"],["2024-07-24T21:09:09.010000"],["2024-07-24T21:09:10.010000"],["2024-07-24T21:09:11.010000"],["2024-07-24T21:09:12.010000"],["2024-07-24T21:09:13.010000"],["2024-07-24T21:09:14.010000"],["2024-07-24T21:09:15.010000"],["2024-07-24T21:09:16.010000"],["2024-07-24T21:09:17.010000"],["2024-07-24T21:09:18.010000"],["2024-07-24T21:09:19.010000"],["2024-07-24T21:09:20.010000"],["2024-07-24T21:09:21.010000"],["2024-07-24T21:09:22.010000"],["2024-07-24T21:09:23.010000"],["2024-07-24T21:09:24.010000"],["2024-07-24T21:09:25.010000"],["2024-07-24T21:09:26.010000"],["2024-07-24T21:09:27.010000"],["2024-07-24T21:09:28.010000"],["2024-07-24T21:09:29.010000"],["2024-07-24T21:09:30.010000"],["2024-07-24T21:09:31.010000"],["2024-07-24T21:09:32.010000"],["2024-07-24T21:09:33.010000"],["2024-07-24T21:09:34.010000"],["2024-07-24T21:09:35.010000"],["2024-07-24T21:09:36.010000"],["2024-07-24T21:09:37.010000"],["2024-07-24T21:09:38.010000"],["2024-07-24T21:09:39.010000"],["2024-07-24T21:09:40.010000"],["2024-07-24T21:09:41.010000"],["2024-07-24T21:09:42.010000"],["2024-07-24T21:09:43.010000"],["2024-07-24T21:09:44.010000"],["2024-07-24T21:09:45.010000"],["2024-07-24T21:09:46.010000"],["2024-07-24T21:09:47.010000"],["2024-07-24T21:09:48.010000"],["2024-07-24T21:09:49.010000"],["2024-07-24T21:09:50.010000"],["2024-07-24T21:09:51.010000"],["2024-07-24T21:09:52.010000"],["2024-07-24T21:09:53.010000"],["2024-07-24T21:09:54.010000"],["2024-07-24T21:09:55.010000"],["2024-07-24T21:09:56.010000"],["2024-07-24T21:09:57.010000"],["2024-07-24T21:09:58.010000"],["2024-07-24T21:09:59.010000"],["2024-07-24T21:10:00.010000"],["2024-07-24T21:10:01.010000"],["2024-07-24T21:10:02.010000"],["2024-07-24T21:10:03.010000"],["2024-07-24T21:10:04.010000"],["2024-07-24T21:10:05.010000"],["2024-07-24T21:10:06.010000"],["2024-07-24T21:10:07.010000"],["2024-07-24T21:10:08.010000"],["2024-07-24T21:10:09.010000"],["2024-07-24T21:10:10.010000"],["2024-07-24T21:10:11.010000"],["2024-07-24T21:10:12.010000"],["2024-07-24T21:10:13.010000"],["2024-07-24T21:10:14.010000"],["2024-07-24T21:10:15.010000"],["2024-07-24T21:10:16.010000"],["2024-07-24T21:10:17.010000"],["2024-07-24T21:10:18.010000"],["2024-07-24T21:10:19.010000"],["2024-07-24T21:10:20.010000"],["2024-07-24T21:10:21.010000"],["2024-07-24T21:10:22.010000"],["2024-07-24T21:10:23.010000"],["2024-07-24T21:10:24.010000"],["2024-07-24T21:10:25.010000"],["2024-07-24T21:10:26.010000"],["2024-07-24T21:10:27.010000"],["2024-07-24T21:10:28.010000"],["2024-07-24T21:10:29.010000"],["2024-07-24T21:10:30.010000"],["2024-07-24T21:10:31.010000"],["2024-07-24T21:10:32.010000"],["2024-07-24T21:10:33.010000"],["2024-07-24T21:10:34.010000"],["2024-07-24T21:10:35.010000"],["2024-07-24T21:10:36.010000"],["2024-07-24T21:10:37.010000"],["2024-07-24T21:10:38.010000"],["2024-07-24T21:10:39.010000"],["2024-07-24T21:10:40.010000"],["2024-07-24T21:10:41.010000"],["2024-07-24T21:10:42.010000"],["2024-07-24T21:10:43.010000"],["2024-07-24T21:10:44.010000"],["2024-07-24T21:10:45.010000"],["2024-07-24T21:10:46.010000"],["2024-07-24T21:10:47.010000"],["2024-07-24T21:10:48.010000"],["2024-07-24T21:10:49.010000"],["2024-07-24T21:10:50.010000"],["2024-07-24T21:10:51.010000"],["2024-07-24T21:10:52.010000"],["2024-07-24T21:10:53.010000"],["2024-07-24T21:10:54.010000"],["2024-07-24T21:10:55.010000"],["2024-07-24T21:10:56.010000"],["2024-07-24T21:10:57.010000"],["2024-07-24T21:10:58.010000"],["2024-07-24T21:10:59.010000"],["2024-07-24T21:11:00.010000"],["2024-07-24T21:11:01.010000"],["2024-07-24T21:11:02.010000"],["2024-07-24T21:11:03.010000"],["2024-07-24T21:11:04.010000"],["2024-07-24T21:11:05.010000"],["2024-07-24T21:11:06.010000"],["2024-07-24T21:11:07.010000"],["2024-07-24T21:11:08.010000"],["2024-07-24T21:11:09.010000"],["2024-07-24T21:11:10.010000"],["2024-07-24T21:11:11.010000"],["2024-07-24T21:11:12.010000"],["2024-07-24T21:11:13.010000"],["2024-07-24T21:11:14.010000"],["2024-07-24T21:11:15.010000"],["2024-07-24T21:11:16.010000"],["2024-07-24T21:11:17.010000"],["2024-07-24T21:11:18.010000"],["2024-07-24T21:11:19.010000"],["2024-07-24T21:11:20.010000"],["2024-07-24T21:11:21.010000"],["2024-07-24T21:11:22.010000"],["2024-07-24T21:11:23.010000"],["2024-07-24T21:11:24.010000"],["2024-07-24T21:11:25.010000"],["2024-07-24T21:11:26.010000"],["2024-07-24T21:11:27.010000"],["2024-07-24T21:11:28.010000"],["2024-07-24T21:11:29.010000"],["2024-07-24T21:11:30.010000"],["2024-07-24T21:11:31.010000"],["2024-07-24T21:11:32.010000"],["2024-07-24T21:11:33.010000"],["2024-07-24T21:11:34.010000"],["2024-07-24T21:11:35.010000"],["2024-07-24T21:11:36.010000"],["2024-07-24T21:11:37.010000"],["2024-07-24T21:11:38.010000"],["2024-07-24T21:11:39.010000"],["2024-07-24T21:11:40.010000"],["2024-07-24T21:11:41.010000"],["2024-07-24T21:11:42.010000"],["2024-07-24T21:11:43.010000"],["2024-07-24T21:11:44.010000"],["2024-07-24T21:11:45.010000"],["2024-07-24T21:11:46.010000"],["2024-07-24T21:11:47.010000"],["2024-07-24T21:11:48.010000"],["2024-07-24T21:11:49.010000"],["2024-07-24T21:11:50.010000"],["2024-07-24T21:11:51.010000"],["2024-07-24T21:11:52.010000"],["2024-07-24T21:11:53.010000"],["2024-07-24T21:11:54.010000"],["2024-07-24T21:11:55.010000"],["2024-07-24T21:11:56.010000"],["2024-07-24T21:11:57.010000"],["2024-07-24T21:11:58.010000"],["2024-07-24T21:11:59.010000"],["2024-07-24T21:12:00.010000"],["2024-07-24T21:12:01.010000"],["2024-07-24T21:12:02.010000"],["2024-07-24T21:12:03.010000"],["2024-07-24T21:12:04.010000"],["2024-07-24T21:12:05.010000"],["2024-07-24T21:12:06.010000"],["2024-07-24T21:12:07.010000"],["2024-07-24T21:12:08.010000"],["2024-07-24T21:12:09.010000"],["2024-07-24T21:12:10.010000"],["2024-07-24T21:12:11.010000"],["2024-07-24T21:12:12.010000"],["2024-07-24T21:12:13.010000"],["2024-07-24T21:12:14.010000"],["2024-07-24T21:12:15.010000"],["2024-07-24T21:12:16.010000"],["2024-07-24T21:12:17.010000"],["2024-07-24T21:12:18.010000"],["2024-07-24T21:12:19.010000"],["2024-07-24T21:12:20.010000"],["2024-07-24T21:12:21.010000"],["2024-07-24T21:12:22.010000"],["2024-07-24T21:12:23.010000"],["2024-07-24T21:12:24.010000"],["2024-07-24T21:12:25.010000"],["2024-07-24T21:12:26.010000"],["2024-07-24T21:12:27.010000"],["2024-07-24T21:12:28.010000"],["2024-07-24T21:12:29.010000"],["2024-07-24T21:12:30.010000"],["2024-07-24T21:12:31.010000"],["2024-07-24T21:12:32.010000"],["2024-07-24T21:12:33.010000"],["2024-07-24T21:12:34.010000"],["2024-07-24T21:12:35.010000"],["2024-07-24T21:12:36.010000"],["2024-07-24T21:12:37.010000"],["2024-07-24T21:12:38.010000"],["2024-07-24T21:12:39.010000"],["2024-07-24T21:12:40.010000"],["2024-07-24T21:12:41.010000"],["2024-07-24T21:12:42.010000"],["2024-07-24T21:12:43.010000"],["2024-07-24T21:12:44.010000"],["2024-07-24T21:12:45.010000"],["2024-07-24T21:12:46.010000"],["2024-07-24T21:12:47.010000"],["2024-07-24T21:12:48.010000"],["2024-07-24T21:12:49.010000"],["2024-07-24T21:12:50.010000"],["2024-07-24T21:12:51.010000"],["2024-07-24T21:12:52.010000"],["2024-07-24T21:12:53.010000"],["2024-07-24T21:12:54.010000"],["2024-07-24T21:12:55.010000"],["2024-07-24T21:12:56.010000"],["2024-07-24T21:12:57.010000"],["2024-07-24T21:12:58.010000"],["2024-07-24T21:12:59.010000"],["2024-07-24T21:13:00.010000"],["2024-07-24T21:13:01.010000"],["2024-07-24T21:13:02.010000"],["2024-07-24T21:13:03.010000"],["2024-07-24T21:13:04.010000"],["2024-07-24T21:13:05.010000"],["2024-07-24T21:13:06.010000"],["2024-07-24T21:13:07.010000"],["2024-07-24T21:13:08.010000"],["2024-07-24T21:13:09.010000"],["2024-07-24T21:13:10.010000"],["2024-07-24T21:13:11.010000"],["2024-07-24T21:13:12.010000"],["2024-07-24T21:13:13.010000"],["2024-07-24T21:13:14.010000"],["2024-07-24T21:13:15.010000"],["2024-07-24T21:13:16.010000"],["2024-07-24T21:13:17.010000"],["2024-07-24T21:13:18.010000"],["2024-07-24T21:13:19.010000"],["2024-07-24T21:13:20.010000"],["2024-07-24T21:13:21.010000"],["2024-07-24T21:13:22.010000"],["2024-07-24T21:13:23.010000"],["2024-07-24T21:13:24.010000"],["2024-07-24T21:13:25.010000"],["2024-07-24T21:13:26.010000"],["2024-07-24T21:13:27.010000"],["2024-07-24T21:13:28.010000"],["2024-07-24T21:13:29.010000"],["2024-07-24T21:13:30.010000"],["2024-07-24T21:13:31.010000"],["2024-07-24T21:13:32.010000"],["2024-07-24T21:13:33.010000"],["2024-07-24T21:13:34.010000"],["2024-07-24T21:13:35.010000"],["2024-07-24T21:13:36.010000"],["2024-07-24T21:13:37.010000"],["2024-07-24T21:13:38.010000"],["2024-07-24T21:13:39.010000"],["2024-07-24T21:13:40.010000"],["2024-07-24T21:13:41.010000"],["2024-07-24T21:13:42.010000"],["2024-07-24T21:13:43.010000"],["2024-07-24T21:13:44.010000"],["2024-07-24T21:13:45.010000"],["2024-07-24T21:13:46.010000"],["2024-07-24T21:13:47.010000"],["2024-07-24T21:13:48.010000"],["2024-07-24T21:13:49.010000"],["2024-07-24T21:13:50.010000"],["2024-07-24T21:13:51.010000"],["2024-07-24T21:13:52.010000"],["2024-07-24T21:13:53.010000"],["2024-07-24T21:13:54.010000"],["2024-07-24T21:13:55.010000"],["2024-07-24T21:13:56.010000"],["2024-07-24T21:13:57.010000"],["2024-07-24T21:13:58.010000"],["2024-07-24T21:13:59.010000"],["2024-07-24T21:14:00.010000"],["2024-07-24T21:14:01.010000"],["2024-07-24T21:14:02.010000"],["2024-07-24T21:14:03.010000"],["2024-07-24T21:14:04.010000"],["2024-07-24T21:14:05.010000"],["2024-07-24T21:14:06.010000"],["2024-07-24T21:14:07.010000"],["2024-07-24T21:14:08.010000"],["2024-07-24T21:14:09.010000"],["2024-07-24T21:14:10.010000"],["2024-07-24T21:14:11.010000"],["2024-07-24T21:14:12.010000"],["2024-07-24T21:14:13.010000"],["2024-07-24T21:14:14.010000"],["2024-07-24T21:14:15.010000"],["2024-07-24T21:14:16.010000"],["2024-07-24T21:14:17.010000"],["2024-07-24T21:14:18.010000"],["2024-07-24T21:14:19.010000"],["2024-07-24T21:14:20.010000"],["2024-07-24T21:14:21.010000"],["2024-07-24T21:14:22.010000"],["2024-07-24T21:14:23.010000"],["2024-07-24T21:14:24.010000"],["2024-07-24T21:14:25.010000"],["2024-07-24T21:14:26.010000"],["2024-07-24T21:14:27.010000"],["2024-07-24T21:14:28.010000"],["2024-07-24T21:14:29.010000"],["2024-07-24T21:14:30.010000"],["2024-07-24T21:14:31.010000"],["2024-07-24T21:14:32.010000"],["2024-07-24T21:14:33.010000"],["2024-07-24T21:14:34.010000"],["2024-07-24T21:14:35.010000"],["2024-07-24T21:14:36.010000"],["2024-07-24T21:14:37.010000"],["2024-07-24T21:14:38.010000"],["2024-07-24T21:14:39.010000"],["2024-07-24T21:14:40.010000"],["2024-07-24T21:14:41.010000"],["2024-07-24T21:14:42.010000"],["2024-07-24T21:14:43.010000"],["2024-07-24T21:14:44.010000"],["2024-07-24T21:14:45.010000"],["2024-07-24T21:14:46.010000"],["2024-07-24T21:14:47.010000"],["2024-07-24T21:14:48.010000"],["2024-07-24T21:14:49.010000"],["2024-07-24T21:14:50.010000"],["2024-07-24T21:14:51.010000"],["2024-07-24T21:14:52.010000"],["2024-07-24T21:14:53.010000"],["2024-07-24T21:14:54.010000"],["2024-07-24T21:14:55.010000"],["2024-07-24T21:14:56.010000"],["2024-07-24T21:14:57.010000"],["2024-07-24T21:14:58.010000"],["2024-07-24T21:14:59.010000"],["2024-07-24T21:15:00.010000"],["2024-07-24T21:15:01.010000"],["2024-07-24T21:15:02.010000"],["2024-07-24T21:15:03.010000"],["2024-07-24T21:15:04.010000"],["2024-07-24T21:15:05.010000"],["2024-07-24T21:15:06.010000"],["2024-07-24T21:15:07.010000"],["2024-07-24T21:15:08.010000"],["2024-07-24T21:15:09.010000"],["2024-07-24T21:15:10.010000"],["2024-07-24T21:15:11.010000"],["2024-07-24T21:15:12.010000"],["2024-07-24T21:15:13.010000"],["2024-07-24T21:15:14.010000"],["2024-07-24T21:15:15.010000"],["2024-07-24T21:15:16.010000"],["2024-07-24T21:15:17.010000"],["2024-07-24T21:15:18.010000"],["2024-07-24T21:15:19.010000"],["2024-07-24T21:15:20.010000"],["2024-07-24T21:15:21.010000"],["2024-07-24T21:15:22.010000"],["2024-07-24T21:15:23.010000"],["2024-07-24T21:15:24.010000"],["2024-07-24T21:15:25.010000"],["2024-07-24T21:15:26.010000"],["2024-07-24T21:15:27.010000"],["2024-07-24T21:15:28.010000"],["2024-07-24T21:15:29.010000"],["2024-07-24T21:15:30.010000"],["2024-07-24T21:15:31.010000"],["2024-07-24T21:15:32.010000"],["2024-07-24T21:15:33.010000"],["2024-07-24T21:15:34.010000"],["2024-07-24T21:15:35.010000"],["2024-07-24T21:15:36.010000"],["2024-07-24T21:15:37.010000"],["2024-07-24T21:15:38.010000"],["2024-07-24T21:15:39.010000"],["2024-07-24T21:15:40.010000"],["2024-07-24T21:15:41.010000"],["2024-07-24T21:15:42.010000"],["2024-07-24T21:15:43.010000"],["2024-07-24T21:15:44.010000"],["2024-07-24T21:15:45.010000"],["2024-07-24T21:15:46.010000"],["2024-07-24T21:15:47.010000"],["2024-07-24T21:15:48.010000"],["2024-07-24T21:15:49.010000"],["2024-07-24T21:15:50.010000"],["2024-07-24T21:15:51.010000"],["2024-07-24T21:15:52.010000"],["2024-07-24T21:15:53.010000"],["2024-07-24T21:15:54.010000"],["2024-07-24T21:15:55.010000"],["2024-07-24T21:15:56.010000"],["2024-07-24T21:15:57.010000"],["2024-07-24T21:15:58.010000"],["2024-07-24T21:15:59.010000"],["2024-07-24T21:16:00.010000"],["2024-07-24T21:16:01.010000"],["2024-07-24T21:16:02.010000"],["2024-07-24T21:16:03.010000"],["2024-07-24T21:16:04.010000"],["2024-07-24T21:16:05.010000"],["2024-07-24T21:16:06.010000"],["2024-07-24T21:16:07.010000"],["2024-07-24T21:16:08.010000"],["2024-07-24T21:16:09.010000"],["2024-07-24T21:16:10.010000"],["2024-07-24T21:16:11.010000"],["2024-07-24T21:16:12.010000"],["2024-07-24T21:16:13.010000"],["2024-07-24T21:16:14.010000"],["2024-07-24T21:16:15.010000"],["2024-07-24T21:16:16.010000"],["2024-07-24T21:16:17.010000"],["2024-07-24T21:16:18.010000"],["2024-07-24T21:16:19.010000"],["2024-07-24T21:16:20.010000"],["2024-07-24T21:16:21.010000"],["2024-07-24T21:16:22.010000"],["2024-07-24T21:16:23.010000"],["2024-07-24T21:16:24.010000"],["2024-07-24T21:16:25.010000"],["2024-07-24T21:16:26.010000"],["2024-07-24T21:16:27.010000"],["2024-07-24T21:16:28.010000"],["2024-07-24T21:16:29.010000"],["2024-07-24T21:16:30.010000"],["2024-07-24T21:16:31.010000"],["2024-07-24T21:16:32.010000"],["2024-07-24T21:16:33.010000"],["2024-07-24T21:16:34.010000"],["2024-07-24T21:16:35.010000"],["2024-07-24T21:16:36.010000"],["2024-07-24T21:16:37.010000"],["2024-07-24T21:16:38.010000"],["2024-07-24T21:16:39.010000"],["2024-07-24T21:16:40.010000"],["2024-07-24T21:16:41.010000"],["2024-07-24T21:16:42.010000"],["2024-07-24T21:16:43.010000"],["2024-07-24T21:16:44.010000"],["2024-07-24T21:16:45.010000"],["2024-07-24T21:16:46.010000"],["2024-07-24T21:16:47.010000"],["2024-07-24T21:16:48.010000"],["2024-07-24T21:16:49.010000"],["2024-07-24T21:16:50.010000"],["2024-07-24T21:16:51.010000"],["2024-07-24T21:16:52.010000"],["2024-07-24T21:16:53.010000"],["2024-07-24T21:16:54.010000"],["2024-07-24T21:16:55.010000"],["2024-07-24T21:16:56.010000"],["2024-07-24T21:16:57.010000"],["2024-07-24T21:16:58.010000"],["2024-07-24T21:16:59.010000"],["2024-07-24T21:17:00.010000"],["2024-07-24T21:17:01.010000"],["2024-07-24T21:17:02.010000"],["2024-07-24T21:17:03.010000"],["2024-07-24T21:17:04.010000"],["2024-07-24T21:17:05.010000"],["2024-07-24T21:17:06.010000"],["2024-07-24T21:17:07.010000"],["2024-07-24T21:17:08.010000"],["2024-07-24T21:17:09.010000"],["2024-07-24T21:17:10.010000"],["2024-07-24T21:17:11.010000"],["2024-07-24T21:17:12.010000"],["2024-07-24T21:17:13.010000"],["2024-07-24T21:17:14.010000"],["2024-07-24T21:17:15.010000"],["2024-07-24T21:17:16.010000"],["2024-07-24T21:17:17.010000"],["2024-07-24T21:17:18.010000"],["2024-07-24T21:17:19.010000"],["2024-07-24T21:17:20.010000"],["2024-07-24T21:17:21.010000"],["2024-07-24T21:17:22.010000"],["2024-07-24T21:17:23.010000"],["2024-07-24T21:17:24.010000"],["2024-07-24T21:17:25.010000"],["2024-07-24T21:17:26.010000"],["2024-07-24T21:17:27.010000"],["2024-07-24T21:17:28.010000"],["2024-07-24T21:17:29.010000"],["2024-07-24T21:17:30.010000"],["2024-07-24T21:17:31.010000"],["2024-07-24T21:17:32.010000"],["2024-07-24T21:17:33.010000"],["2024-07-24T21:17:34.010000"],["2024-07-24T21:17:35.010000"],["2024-07-24T21:17:36.010000"],["2024-07-24T21:17:37.010000"],["2024-07-24T21:17:38.010000"],["2024-07-24T21:17:39.010000"],["2024-07-24T21:17:40.010000"],["2024-07-24T21:17:41.010000"],["2024-07-24T21:17:42.010000"],["2024-07-24T21:17:43.010000"],["2024-07-24T21:17:44.010000"],["2024-07-24T21:17:45.010000"],["2024-07-24T21:17:46.010000"],["2024-07-24T21:17:47.010000"],["2024-07-24T21:17:48.010000"],["2024-07-24T21:17:49.010000"],["2024-07-24T21:17:50.010000"],["2024-07-24T21:17:51.010000"],["2024-07-24T21:17:52.010000"],["2024-07-24T21:17:53.010000"],["2024-07-24T21:17:54.010000"],["2024-07-24T21:17:55.010000"],["2024-07-24T21:17:56.010000"],["2024-07-24T21:17:57.010000"],["2024-07-24T21:17:58.010000"],["2024-07-24T21:17:59.010000"],["2024-07-24T21:18:00.010000"],["2024-07-24T21:18:01.010000"],["2024-07-24T21:18:02.010000"],["2024-07-24T21:18:03.010000"],["2024-07-24T21:18:04.010000"],["2024-07-24T21:18:05.010000"],["2024-07-24T21:18:06.010000"],["2024-07-24T21:18:07.010000"],["2024-07-24T21:18:08.010000"],["2024-07-24T21:18:09.010000"],["2024-07-24T21:18:10.010000"],["2024-07-24T21:18:11.010000"],["2024-07-24T21:18:12.010000"],["2024-07-24T21:18:13.010000"],["2024-07-24T21:18:14.010000"],["2024-07-24T21:18:15.010000"],["2024-07-24T21:18:16.010000"],["2024-07-24T21:18:17.010000"],["2024-07-24T21:18:18.010000"],["2024-07-24T21:18:19.010000"],["2024-07-24T21:18:20.010000"],["2024-07-24T21:18:21.010000"],["2024-07-24T21:18:22.010000"],["2024-07-24T21:18:23.010000"],["2024-07-24T21:18:24.010000"],["2024-07-24T21:18:25.010000"],["2024-07-24T21:18:26.010000"],["2024-07-24T21:18:27.010000"],["2024-07-24T21:18:28.010000"],["2024-07-24T21:18:29.010000"],["2024-07-24T21:18:30.010000"],["2024-07-24T21:18:31.010000"],["2024-07-24T21:18:32.010000"],["2024-07-24T21:18:33.010000"],["2024-07-24T21:18:34.010000"],["2024-07-24T21:18:35.010000"],["2024-07-24T21:18:36.010000"],["2024-07-24T21:18:37.010000"],["2024-07-24T21:18:38.010000"],["2024-07-24T21:18:39.010000"],["2024-07-24T21:18:40.010000"],["2024-07-24T21:18:41.010000"],["2024-07-24T21:18:42.010000"],["2024-07-24T21:18:43.010000"],["2024-07-24T21:18:44.010000"],["2024-07-24T21:18:45.010000"],["2024-07-24T21:18:46.010000"],["2024-07-24T21:18:47.010000"],["2024-07-24T21:18:48.010000"],["2024-07-24T21:18:49.010000"],["2024-07-24T21:18:50.010000"],["2024-07-24T21:18:51.010000"],["2024-07-24T21:18:52.010000"],["2024-07-24T21:18:53.010000"],["2024-07-24T21:18:54.010000"],["2024-07-24T21:18:55.010000"],["2024-07-24T21:18:56.010000"],["2024-07-24T21:18:57.010000"],["2024-07-24T21:18:58.010000"],["2024-07-24T21:18:59.010000"],["2024-07-24T21:19:00.010000"],["2024-07-24T21:19:01.010000"],["2024-07-24T21:19:02.010000"],["2024-07-24T21:19:03.010000"],["2024-07-24T21:19:04.010000"],["2024-07-24T21:19:05.010000"],["2024-07-24T21:19:06.010000"],["2024-07-24T21:19:07.010000"],["2024-07-24T21:19:08.010000"],["2024-07-24T21:19:09.010000"],["2024-07-24T21:19:10.010000"],["2024-07-24T21:19:11.010000"],["2024-07-24T21:19:12.010000"],["2024-07-24T21:19:13.010000"],["2024-07-24T21:19:14.010000"],["2024-07-24T21:19:15.010000"],["2024-07-24T21:19:16.010000"],["2024-07-24T21:19:17.010000"],["2024-07-24T21:19:18.010000"],["2024-07-24T21:19:19.010000"],["2024-07-24T21:19:20.010000"],["2024-07-24T21:19:21.010000"],["2024-07-24T21:19:22.010000"],["2024-07-24T21:19:23.010000"],["2024-07-24T21:19:24.010000"],["2024-07-24T21:19:25.010000"],["2024-07-24T21:19:26.010000"],["2024-07-24T21:19:27.010000"],["2024-07-24T21:19:28.010000"],["2024-07-24T21:19:29.010000"],["2024-07-24T21:19:30.010000"],["2024-07-24T21:19:31.010000"],["2024-07-24T21:19:32.010000"],["2024-07-24T21:19:33.010000"],["2024-07-24T21:19:34.010000"],["2024-07-24T21:19:35.010000"],["2024-07-24T21:19:36.010000"],["2024-07-24T21:19:37.010000"],["2024-07-24T21:19:38.010000"],["2024-07-24T21:19:39.010000"],["2024-07-24T21:19:40.010000"],["2024-07-24T21:19:41.010000"],["2024-07-24T21:19:42.010000"],["2024-07-24T21:19:43.010000"],["2024-07-24T21:19:44.010000"],["2024-07-24T21:19:45.010000"],["2024-07-24T21:19:46.010000"],["2024-07-24T21:19:47.010000"],["2024-07-24T21:19:48.010000"],["2024-07-24T21:19:49.010000"],["2024-07-24T21:19:50.010000"],["2024-07-24T21:19:51.010000"],["2024-07-24T21:19:52.010000"],["2024-07-24T21:19:53.010000"],["2024-07-24T21:19:54.010000"],["2024-07-24T21:19:55.010000"],["2024-07-24T21:19:56.010000"],["2024-07-24T21:19:57.010000"],["2024-07-24T21:19:58.010000"],["2024-07-24T21:19:59.010000"],["2024-07-24T21:20:00.010000"],["2024-07-24T21:20:01.010000"],["2024-07-24T21:20:02.010000"],["2024-07-24T21:20:03.010000"],["2024-07-24T21:20:04.010000"],["2024-07-24T21:20:05.010000"],["2024-07-24T21:20:06.010000"],["2024-07-24T21:20:07.010000"],["2024-07-24T21:20:08.010000"],["2024-07-24T21:20:09.010000"],["2024-07-24T21:20:10.010000"],["2024-07-24T21:20:11.010000"],["2024-07-24T21:20:12.010000"],["2024-07-24T21:20:13.010000"],["2024-07-24T21:20:14.010000"],["2024-07-24T21:20:15.010000"],["2024-07-24T21:20:16.010000"],["2024-07-24T21:20:17.010000"],["2024-07-24T21:20:18.010000"],["2024-07-24T21:20:19.010000"],["2024-07-24T21:20:20.010000"],["2024-07-24T21:20:21.010000"],["2024-07-24T21:20:22.010000"],["2024-07-24T21:20:23.010000"],["2024-07-24T21:20:24.010000"],["2024-07-24T21:20:25.010000"],["2024-07-24T21:20:26.010000"],["2024-07-24T21:20:27.010000"],["2024-07-24T21:20:28.010000"],["2024-07-24T21:20:29.010000"],["2024-07-24T21:20:30.010000"],["2024-07-24T21:20:31.010000"],["2024-07-24T21:20:32.010000"],["2024-07-24T21:20:33.010000"],["2024-07-24T21:20:34.010000"],["2024-07-24T21:20:35.010000"],["2024-07-24T21:20:36.010000"],["2024-07-24T21:20:37.010000"],["2024-07-24T21:20:38.010000"],["2024-07-24T21:20:39.010000"],["2024-07-24T21:20:40.010000"],["2024-07-24T21:20:41.010000"],["2024-07-24T21:20:42.010000"],["2024-07-24T21:20:43.010000"],["2024-07-24T21:20:44.010000"],["2024-07-24T21:20:45.010000"],["2024-07-24T21:20:46.010000"],["2024-07-24T21:20:47.010000"],["2024-07-24T21:20:48.010000"],["2024-07-24T21:20:49.010000"],["2024-07-24T21:20:50.010000"],["2024-07-24T21:20:51.010000"],["2024-07-24T21:20:52.010000"],["2024-07-24T21:20:53.010000"],["2024-07-24T21:20:54.010000"],["2024-07-24T21:20:55.010000"],["2024-07-24T21:20:56.010000"],["2024-07-24T21:20:57.010000"],["2024-07-24T21:20:58.010000"],["2024-07-24T21:20:59.010000"],["2024-07-24T21:21:00.010000"],["2024-07-24T21:21:01.010000"],["2024-07-24T21:21:02.010000"],["2024-07-24T21:21:03.010000"],["2024-07-24T21:21:04.010000"],["2024-07-24T21:21:05.010000"],["2024-07-24T21:21:06.010000"],["2024-07-24T21:21:07.010000"],["2024-07-24T21:21:08.010000"],["2024-07-24T21:21:09.010000"],["2024-07-24T21:21:10.010000"],["2024-07-24T21:21:11.010000"],["2024-07-24T21:21:12.010000"],["2024-07-24T21:21:13.010000"],["2024-07-24T21:21:14.010000"],["2024-07-24T21:21:15.010000"],["2024-07-24T21:21:16.010000"],["2024-07-24T21:21:17.010000"],["2024-07-24T21:21:18.010000"],["2024-07-24T21:21:19.010000"],["2024-07-24T21:21:20.010000"],["2024-07-24T21:21:21.010000"],["2024-07-24T21:21:22.010000"],["2024-07-24T21:21:23.010000"],["2024-07-24T21:21:24.010000"],["2024-07-24T21:21:25.010000"],["2024-07-24T21:21:26.010000"],["2024-07-24T21:21:27.010000"],["2024-07-24T21:21:28.010000"],["2024-07-24T21:21:29.010000"],["2024-07-24T21:21:30.010000"],["2024-07-24T21:21:31.010000"],["2024-07-24T21:21:32.010000"],["2024-07-24T21:21:33.010000"],["2024-07-24T21:21:34.010000"],["2024-07-24T21:21:35.010000"],["2024-07-24T21:21:36.010000"],["2024-07-24T21:21:37.010000"],["2024-07-24T21:21:38.010000"],["2024-07-24T21:21:39.010000"],["2024-07-24T21:21:40.010000"],["2024-07-24T21:21:41.010000"],["2024-07-24T21:21:42.010000"],["2024-07-24T21:21:43.010000"],["2024-07-24T21:21:44.010000"],["2024-07-24T21:21:45.010000"],["2024-07-24T21:21:46.010000"],["2024-07-24T21:21:47.010000"],["2024-07-24T21:21:48.010000"],["2024-07-24T21:21:49.010000"],["2024-07-24T21:21:50.010000"],["2024-07-24T21:21:51.010000"],["2024-07-24T21:21:52.010000"],["2024-07-24T21:21:53.010000"],["2024-07-24T21:21:54.010000"],["2024-07-24T21:21:55.010000"],["2024-07-24T21:21:56.010000"],["2024-07-24T21:21:57.010000"],["2024-07-24T21:21:58.010000"],["2024-07-24T21:21:59.010000"],["2024-07-24T21:22:00.010000"],["2024-07-24T21:22:01.010000"],["2024-07-24T21:22:02.010000"],["2024-07-24T21:22:03.010000"],["2024-07-24T21:22:04.010000"],["2024-07-24T21:22:05.010000"],["2024-07-24T21:22:06.010000"],["2024-07-24T21:22:07.010000"],["2024-07-24T21:22:08.010000"],["2024-07-24T21:22:09.010000"],["2024-07-24T21:22:10.010000"],["2024-07-24T21:22:11.010000"],["2024-07-24T21:22:12.010000"],["2024-07-24T21:22:13.010000"],["2024-07-24T21:22:14.010000"],["2024-07-24T21:22:15.010000"],["2024-07-24T21:22:16.010000"],["2024-07-24T21:22:17.010000"],["2024-07-24T21:22:18.010000"],["2024-07-24T21:22:19.010000"],["2024-07-24T21:22:20.010000"],["2024-07-24T21:22:21.010000"],["2024-07-24T21:22:22.010000"],["2024-07-24T21:22:23.010000"],["2024-07-24T21:22:24.010000"],["2024-07-24T21:22:25.010000"],["2024-07-24T21:22:26.010000"],["2024-07-24T21:22:27.010000"],["2024-07-24T21:22:28.010000"],["2024-07-24T21:22:29.010000"],["2024-07-24T21:22:30.010000"],["2024-07-24T21:22:31.010000"],["2024-07-24T21:22:32.010000"],["2024-07-24T21:22:33.010000"],["2024-07-24T21:22:34.010000"],["2024-07-24T21:22:35.010000"],["2024-07-24T21:22:36.010000"],["2024-07-24T21:22:37.010000"],["2024-07-24T21:22:38.010000"],["2024-07-24T21:22:39.010000"],["2024-07-24T21:22:40.010000"],["2024-07-24T21:22:41.010000"],["2024-07-24T21:22:42.010000"],["2024-07-24T21:22:43.010000"],["2024-07-24T21:22:44.010000"],["2024-07-24T21:22:45.010000"],["2024-07-24T21:22:46.010000"],["2024-07-24T21:22:47.010000"],["2024-07-24T21:22:48.010000"],["2024-07-24T21:22:49.010000"],["2024-07-24T21:22:50.010000"],["2024-07-24T21:22:51.010000"],["2024-07-24T21:22:52.010000"],["2024-07-24T21:22:53.010000"],["2024-07-24T21:22:54.010000"],["2024-07-24T21:22:55.010000"],["2024-07-24T21:22:56.010000"],["2024-07-24T21:22:57.010000"],["2024-07-24T21:22:58.010000"],["2024-07-24T21:22:59.010000"],["2024-07-24T21:23:00.010000"],["2024-07-24T21:23:01.010000"],["2024-07-24T21:23:02.010000"],["2024-07-24T21:23:03.010000"],["2024-07-24T21:23:04.010000"],["2024-07-24T21:23:05.010000"],["2024-07-24T21:23:06.010000"],["2024-07-24T21:23:07.010000"],["2024-07-24T21:23:08.010000"],["2024-07-24T21:23:09.010000"],["2024-07-24T21:23:10.010000"],["2024-07-24T21:23:11.010000"],["2024-07-24T21:23:12.010000"],["2024-07-24T21:23:13.010000"],["2024-07-24T21:23:14.010000"],["2024-07-24T21:23:15.010000"],["2024-07-24T21:23:16.010000"],["2024-07-24T21:23:17.010000"],["2024-07-24T21:23:18.010000"],["2024-07-24T21:23:19.010000"],["2024-07-24T21:23:20.010000"],["2024-07-24T21:23:21.010000"],["2024-07-24T21:23:22.010000"],["2024-07-24T21:23:23.010000"],["2024-07-24T21:23:24.010000"],["2024-07-24T21:23:25.010000"],["2024-07-24T21:23:26.010000"],["2024-07-24T21:23:27.010000"],["2024-07-24T21:23:28.010000"],["2024-07-24T21:23:29.010000"],["2024-07-24T21:23:30.010000"],["2024-07-24T21:23:31.010000"],["2024-07-24T21:23:32.010000"],["2024-07-24T21:23:33.010000"],["2024-07-24T21:23:34.010000"],["2024-07-24T21:23:35.010000"],["2024-07-24T21:23:36.010000"],["2024-07-24T21:23:37.010000"],["2024-07-24T21:23:38.010000"],["2024-07-24T21:23:39.010000"],["2024-07-24T21:23:40.010000"],["2024-07-24T21:23:41.010000"],["2024-07-24T21:23:42.010000"],["2024-07-24T21:23:43.010000"],["2024-07-24T21:23:44.010000"],["2024-07-24T21:23:45.010000"],["2024-07-24T21:23:46.010000"],["2024-07-24T21:23:47.010000"],["2024-07-24T21:23:48.010000"],["2024-07-24T21:23:49.010000"],["2024-07-24T21:23:50.010000"],["2024-07-24T21:23:51.010000"],["2024-07-24T21:23:52.010000"],["2024-07-24T21:23:53.010000"],["2024-07-24T21:23:54.010000"],["2024-07-24T21:23:55.010000"],["2024-07-24T21:23:56.010000"],["2024-07-24T21:23:57.010000"],["2024-07-24T21:23:58.010000"],["2024-07-24T21:23:59.010000"],["2024-07-24T21:24:00.010000"],["2024-07-24T21:24:01.010000"],["2024-07-24T21:24:02.010000"],["2024-07-24T21:24:03.010000"],["2024-07-24T21:24:04.010000"],["2024-07-24T21:24:05.010000"],["2024-07-24T21:24:06.010000"],["2024-07-24T21:24:07.010000"],["2024-07-24T21:24:08.010000"],["2024-07-24T21:24:09.010000"],["2024-07-24T21:24:10.010000"],["2024-07-24T21:24:11.010000"],["2024-07-24T21:24:12.010000"],["2024-07-24T21:24:13.010000"],["2024-07-24T21:24:14.010000"],["2024-07-24T21:24:15.010000"],["2024-07-24T21:24:16.010000"],["2024-07-24T21:24:17.010000"],["2024-07-24T21:24:18.010000"],["2024-07-24T21:24:19.010000"],["2024-07-24T21:24:20.010000"],["2024-07-24T21:24:21.010000"],["2024-07-24T21:24:22.010000"],["2024-07-24T21:24:23.010000"],["2024-07-24T21:24:24.010000"],["2024-07-24T21:24:25.010000"],["2024-07-24T21:24:26.010000"],["2024-07-24T21:24:27.010000"],["2024-07-24T21:24:28.010000"],["2024-07-24T21:24:29.010000"],["2024-07-24T21:24:30.010000"],["2024-07-24T21:24:31.010000"],["2024-07-24T21:24:32.010000"],["2024-07-24T21:24:33.010000"],["2024-07-24T21:24:34.010000"],["2024-07-24T21:24:35.010000"],["2024-07-24T21:24:36.010000"],["2024-07-24T21:24:37.010000"],["2024-07-24T21:24:38.010000"],["2024-07-24T21:24:39.010000"],["2024-07-24T21:24:40.010000"],["2024-07-24T21:24:41.010000"],["2024-07-24T21:24:42.010000"],["2024-07-24T21:24:43.010000"],["2024-07-24T21:24:44.010000"],["2024-07-24T21:24:45.010000"],["2024-07-24T21:24:46.010000"],["2024-07-24T21:24:47.010000"],["2024-07-24T21:24:48.010000"],["2024-07-24T21:24:49.010000"],["2024-07-24T21:24:50.010000"],["2024-07-24T21:24:51.010000"],["2024-07-24T21:24:52.010000"],["2024-07-24T21:24:53.010000"],["2024-07-24T21:24:54.010000"],["2024-07-24T21:24:55.010000"],["2024-07-24T21:24:56.010000"],["2024-07-24T21:24:57.010000"],["2024-07-24T21:24:58.010000"],["2024-07-24T21:24:59.010000"],["2024-07-24T21:25:00.010000"],["2024-07-24T21:25:01.010000"],["2024-07-24T21:25:02.010000"],["2024-07-24T21:25:03.010000"],["2024-07-24T21:25:04.010000"],["2024-07-24T21:25:05.010000"],["2024-07-24T21:25:06.010000"],["2024-07-24T21:25:07.010000"],["2024-07-24T21:25:08.010000"],["2024-07-24T21:25:09.010000"],["2024-07-24T21:25:10.010000"],["2024-07-24T21:25:11.010000"],["2024-07-24T21:25:12.010000"],["2024-07-24T21:25:13.010000"],["2024-07-24T21:25:14.010000"],["2024-07-24T21:25:15.010000"],["2024-07-24T21:25:16.010000"],["2024-07-24T21:25:17.010000"],["2024-07-24T21:25:18.010000"],["2024-07-24T21:25:19.010000"],["2024-07-24T21:25:20.010000"],["2024-07-24T21:25:21.010000"],["2024-07-24T21:25:22.010000"],["2024-07-24T21:25:23.010000"],["2024-07-24T21:25:24.010000"],["2024-07-24T21:25:25.010000"],["2024-07-24T21:25:26.010000"],["2024-07-24T21:25:27.010000"],["2024-07-24T21:25:28.010000"],["2024-07-24T21:25:29.010000"],["2024-07-24T21:25:30.010000"],["2024-07-24T21:25:31.010000"],["2024-07-24T21:25:32.010000"],["2024-07-24T21:25:33.010000"],["2024-07-24T21:25:34.010000"],["2024-07-24T21:25:35.010000"],["2024-07-24T21:25:36.010000"],["2024-07-24T21:25:37.010000"],["2024-07-24T21:25:38.010000"],["2024-07-24T21:25:39.010000"],["2024-07-24T21:25:40.010000"],["2024-07-24T21:25:41.010000"],["2024-07-24T21:25:42.010000"],["2024-07-24T21:25:43.010000"],["2024-07-24T21:25:44.010000"],["2024-07-24T21:25:45.010000"],["2024-07-24T21:25:46.010000"],["2024-07-24T21:25:47.010000"],["2024-07-24T21:25:48.010000"],["2024-07-24T21:25:49.010000"],["2024-07-24T21:25:50.010000"],["2024-07-24T21:25:51.010000"],["2024-07-24T21:25:52.010000"],["2024-07-24T21:25:53.010000"],["2024-07-24T21:25:54.010000"],["2024-07-24T21:25:55.010000"],["2024-07-24T21:25:56.010000"],["2024-07-24T21:25:57.010000"],["2024-07-24T21:25:58.010000"],["2024-07-24T21:25:59.010000"],["2024-07-24T21:26:00.010000"],["2024-07-24T21:26:01.010000"],["2024-07-24T21:26:02.010000"],["2024-07-24T21:26:03.010000"],["2024-07-24T21:26:04.010000"],["2024-07-24T21:26:05.010000"],["2024-07-24T21:26:06.010000"],["2024-07-24T21:26:07.010000"],["2024-07-24T21:26:08.010000"],["2024-07-24T21:26:09.010000"],["2024-07-24T21:26:10.010000"],["2024-07-24T21:26:11.010000"],["2024-07-24T21:26:12.010000"],["2024-07-24T21:26:13.010000"],["2024-07-24T21:26:14.010000"],["2024-07-24T21:26:15.010000"],["2024-07-24T21:26:16.010000"],["2024-07-24T21:26:17.010000"],["2024-07-24T21:26:18.010000"],["2024-07-24T21:26:19.010000"],["2024-07-24T21:26:20.010000"],["2024-07-24T21:26:21.010000"],["2024-07-24T21:26:22.010000"],["2024-07-24T21:26:23.010000"],["2024-07-24T21:26:24.010000"],["2024-07-24T21:26:25.010000"],["2024-07-24T21:26:26.010000"],["2024-07-24T21:26:27.010000"],["2024-07-24T21:26:28.010000"],["2024-07-24T21:26:29.010000"],["2024-07-24T21:26:30.010000"],["2024-07-24T21:26:31.010000"],["2024-07-24T21:26:32.010000"],["2024-07-24T21:26:33.010000"],["2024-07-24T21:26:34.010000"],["2024-07-24T21:26:35.010000"],["2024-07-24T21:26:36.010000"],["2024-07-24T21:26:37.010000"],["2024-07-24T21:26:38.010000"],["2024-07-24T21:26:39.010000"],["2024-07-24T21:26:40.010000"],["2024-07-24T21:26:41.010000"],["2024-07-24T21:26:42.010000"],["2024-07-24T21:26:43.010000"],["2024-07-24T21:26:44.010000"],["2024-07-24T21:26:45.010000"],["2024-07-24T21:26:46.010000"],["2024-07-24T21:26:47.010000"],["2024-07-24T21:26:48.010000"],["2024-07-24T21:26:49.010000"],["2024-07-24T21:26:50.010000"],["2024-07-24T21:26:51.010000"],["2024-07-24T21:26:52.010000"],["2024-07-24T21:26:53.010000"],["2024-07-24T21:26:54.010000"],["2024-07-24T21:26:55.010000"],["2024-07-24T21:26:56.010000"],["2024-07-24T21:26:57.010000"],["2024-07-24T21:26:58.010000"],["2024-07-24T21:26:59.010000"],["2024-07-24T21:27:00.010000"],["2024-07-24T21:27:01.010000"],["2024-07-24T21:27:02.010000"],["2024-07-24T21:27:03.010000"],["2024-07-24T21:27:04.010000"],["2024-07-24T21:27:05.010000"],["2024-07-24T21:27:06.010000"],["2024-07-24T21:27:07.010000"],["2024-07-24T21:27:08.010000"],["2024-07-24T21:27:09.010000"],["2024-07-24T21:27:10.010000"],["2024-07-24T21:27:11.010000"],["2024-07-24T21:27:12.010000"],["2024-07-24T21:27:13.010000"],["2024-07-24T21:27:14.010000"],["2024-07-24T21:27:15.010000"],["2024-07-24T21:27:16.010000"],["2024-07-24T21:27:17.010000"],["2024-07-24T21:27:18.010000"],["2024-07-24T21:27:19.010000"],["2024-07-24T21:27:20.010000"],["2024-07-24T21:27:21.010000"],["2024-07-24T21:27:22.010000"],["2024-07-24T21:27:23.010000"],["2024-07-24T21:27:24.010000"],["2024-07-24T21:27:25.010000"],["2024-07-24T21:27:26.010000"],["2024-07-24T21:27:27.010000"],["2024-07-24T21:27:28.010000"],["2024-07-24T21:27:29.010000"],["2024-07-24T21:27:30.010000"],["2024-07-24T21:27:31.010000"],["2024-07-24T21:27:32.010000"],["2024-07-24T21:27:33.010000"],["2024-07-24T21:27:34.010000"],["2024-07-24T21:27:35.010000"],["2024-07-24T21:27:36.010000"],["2024-07-24T21:27:37.010000"],["2024-07-24T21:27:38.010000"],["2024-07-24T21:27:39.010000"],["2024-07-24T21:27:40.010000"],["2024-07-24T21:27:41.010000"],["2024-07-24T21:27:42.010000"],["2024-07-24T21:27:43.010000"],["2024-07-24T21:27:44.010000"],["2024-07-24T21:27:45.010000"],["2024-07-24T21:27:46.010000"],["2024-07-24T21:27:47.010000"],["2024-07-24T21:27:48.010000"],["2024-07-24T21:27:49.010000"],["2024-07-24T21:27:50.010000"],["2024-07-24T21:27:51.010000"],["2024-07-24T21:27:52.010000"],["2024-07-24T21:27:53.010000"],["2024-07-24T21:27:54.010000"],["2024-07-24T21:27:55.010000"],["2024-07-24T21:27:56.010000"],["2024-07-24T21:27:57.010000"],["2024-07-24T21:27:58.010000"],["2024-07-24T21:27:59.010000"],["2024-07-24T21:28:00.010000"],["2024-07-24T21:28:01.010000"],["2024-07-24T21:28:02.010000"],["2024-07-24T21:28:03.010000"],["2024-07-24T21:28:04.010000"],["2024-07-24T21:28:05.010000"],["2024-07-24T21:28:06.010000"],["2024-07-24T21:28:07.010000"],["2024-07-24T21:28:08.010000"],["2024-07-24T21:28:09.010000"],["2024-07-24T21:28:10.010000"],["2024-07-24T21:28:11.010000"],["2024-07-24T21:28:12.010000"],["2024-07-24T21:28:13.010000"],["2024-07-24T21:28:14.010000"],["2024-07-24T21:28:15.010000"],["2024-07-24T21:28:16.010000"],["2024-07-24T21:28:17.010000"],["2024-07-24T21:28:18.010000"],["2024-07-24T21:28:19.010000"],["2024-07-24T21:28:20.010000"],["2024-07-24T21:28:21.010000"],["2024-07-24T21:28:22.010000"],["2024-07-24T21:28:23.010000"],["2024-07-24T21:28:24.010000"],["2024-07-24T21:28:25.010000"],["2024-07-24T21:28:26.010000"],["2024-07-24T21:28:27.010000"],["2024-07-24T21:28:28.010000"],["2024-07-24T21:28:29.010000"],["2024-07-24T21:28:30.010000"],["2024-07-24T21:28:31.010000"],["2024-07-24T21:28:32.010000"],["2024-07-24T21:28:33.010000"],["2024-07-24T21:28:34.010000"],["2024-07-24T21:28:35.010000"],["2024-07-24T21:28:36.010000"],["2024-07-24T21:28:37.010000"],["2024-07-24T21:28:38.010000"],["2024-07-24T21:28:39.010000"],["2024-07-24T21:28:40.010000"],["2024-07-24T21:28:41.010000"],["2024-07-24T21:28:42.010000"],["2024-07-24T21:28:43.010000"],["2024-07-24T21:28:44.010000"],["2024-07-24T21:28:45.010000"],["2024-07-24T21:28:46.010000"],["2024-07-24T21:28:47.010000"],["2024-07-24T21:28:48.010000"],["2024-07-24T21:28:49.010000"],["2024-07-24T21:28:50.010000"],["2024-07-24T21:28:51.010000"],["2024-07-24T21:28:52.010000"],["2024-07-24T21:28:53.010000"],["2024-07-24T21:28:54.010000"],["2024-07-24T21:28:55.010000"],["2024-07-24T21:28:56.010000"],["2024-07-24T21:28:57.010000"],["2024-07-24T21:28:58.010000"],["2024-07-24T21:28:59.010000"],["2024-07-24T21:29:00.010000"],["2024-07-24T21:29:01.010000"],["2024-07-24T21:29:02.010000"],["2024-07-24T21:29:03.010000"],["2024-07-24T21:29:04.010000"],["2024-07-24T21:29:05.010000"],["2024-07-24T21:29:06.010000"],["2024-07-24T21:29:07.010000"],["2024-07-24T21:29:08.010000"],["2024-07-24T21:29:09.010000"],["2024-07-24T21:29:10.010000"],["2024-07-24T21:29:11.010000"],["2024-07-24T21:29:12.010000"],["2024-07-24T21:29:13.010000"],["2024-07-24T21:29:14.010000"],["2024-07-24T21:29:15.010000"],["2024-07-24T21:29:16.010000"],["2024-07-24T21:29:17.010000"],["2024-07-24T21:29:18.010000"],["2024-07-24T21:29:19.010000"],["2024-07-24T21:29:20.010000"],["2024-07-24T21:29:21.010000"],["2024-07-24T21:29:22.010000"],["2024-07-24T21:29:23.010000"],["2024-07-24T21:29:24.010000"],["2024-07-24T21:29:25.010000"],["2024-07-24T21:29:26.010000"],["2024-07-24T21:29:27.010000"],["2024-07-24T21:29:28.010000"],["2024-07-24T21:29:29.010000"],["2024-07-24T21:29:30.010000"],["2024-07-24T21:29:31.010000"],["2024-07-24T21:29:32.010000"],["2024-07-24T21:29:33.010000"],["2024-07-24T21:29:34.010000"],["2024-07-24T21:29:35.010000"],["2024-07-24T21:29:36.010000"],["2024-07-24T21:29:37.010000"],["2024-07-24T21:29:38.010000"],["2024-07-24T21:29:39.010000"],["2024-07-24T21:29:40.010000"],["2024-07-24T21:29:41.010000"],["2024-07-24T21:29:42.010000"],["2024-07-24T21:29:43.010000"],["2024-07-24T21:29:44.010000"],["2024-07-24T21:29:45.010000"],["2024-07-24T21:29:46.010000"],["2024-07-24T21:29:47.010000"],["2024-07-24T21:29:48.010000"],["2024-07-24T21:29:49.010000"],["2024-07-24T21:29:50.010000"],["2024-07-24T21:29:51.010000"],["2024-07-24T21:29:52.010000"],["2024-07-24T21:29:53.010000"],["2024-07-24T21:29:54.010000"],["2024-07-24T21:29:55.010000"],["2024-07-24T21:29:56.010000"],["2024-07-24T21:29:57.010000"],["2024-07-24T21:29:58.010000"],["2024-07-24T21:29:59.010000"],["2024-07-24T21:30:00.010000"],["2024-07-24T21:30:01.010000"],["2024-07-24T21:30:02.010000"],["2024-07-24T21:30:03.010000"],["2024-07-24T21:30:04.010000"],["2024-07-24T21:30:05.010000"],["2024-07-24T21:30:06.010000"],["2024-07-24T21:30:07.010000"],["2024-07-24T21:30:08.010000"],["2024-07-24T21:30:09.010000"],["2024-07-24T21:30:10.010000"],["2024-07-24T21:30:11.010000"],["2024-07-24T21:30:12.010000"],["2024-07-24T21:30:13.010000"],["2024-07-24T21:30:14.010000"],["2024-07-24T21:30:15.010000"],["2024-07-24T21:30:16.010000"],["2024-07-24T21:30:17.010000"],["2024-07-24T21:30:18.010000"],["2024-07-24T21:30:19.010000"],["2024-07-24T21:30:20.010000"],["2024-07-24T21:30:21.010000"],["2024-07-24T21:30:22.010000"],["2024-07-24T21:30:23.010000"],["2024-07-24T21:30:24.010000"],["2024-07-24T21:30:25.010000"],["2024-07-24T21:30:26.010000"],["2024-07-24T21:30:27.010000"],["2024-07-24T21:30:28.010000"],["2024-07-24T21:30:29.010000"],["2024-07-24T21:30:30.010000"],["2024-07-24T21:30:31.010000"],["2024-07-24T21:30:32.010000"],["2024-07-24T21:30:33.010000"],["2024-07-24T21:30:34.010000"],["2024-07-24T21:30:35.010000"],["2024-07-24T21:30:36.010000"],["2024-07-24T21:30:37.010000"],["2024-07-24T21:30:38.010000"],["2024-07-24T21:30:39.010000"],["2024-07-24T21:30:40.010000"],["2024-07-24T21:30:41.010000"],["2024-07-24T21:30:42.010000"],["2024-07-24T21:30:43.010000"],["2024-07-24T21:30:44.010000"],["2024-07-24T21:30:45.010000"],["2024-07-24T21:30:46.010000"],["2024-07-24T21:30:47.010000"],["2024-07-24T21:30:48.010000"],["2024-07-24T21:30:49.010000"],["2024-07-24T21:30:50.010000"],["2024-07-24T21:30:51.010000"],["2024-07-24T21:30:52.010000"],["2024-07-24T21:30:53.010000"],["2024-07-24T21:30:54.010000"],["2024-07-24T21:30:55.010000"],["2024-07-24T21:30:56.010000"],["2024-07-24T21:30:57.010000"],["2024-07-24T21:30:58.010000"],["2024-07-24T21:30:59.010000"],["2024-07-24T21:31:00.010000"],["2024-07-24T21:31:01.010000"],["2024-07-24T21:31:02.010000"],["2024-07-24T21:31:03.010000"],["2024-07-24T21:31:04.010000"],["2024-07-24T21:31:05.010000"],["2024-07-24T21:31:06.010000"],["2024-07-24T21:31:07.010000"],["2024-07-24T21:31:08.010000"],["2024-07-24T21:31:09.010000"],["2024-07-24T21:31:10.010000"],["2024-07-24T21:31:11.010000"],["2024-07-24T21:31:12.010000"],["2024-07-24T21:31:13.010000"],["2024-07-24T21:31:14.010000"],["2024-07-24T21:31:15.010000"],["2024-07-24T21:31:16.010000"],["2024-07-24T21:31:17.010000"],["2024-07-24T21:31:18.010000"],["2024-07-24T21:31:19.010000"],["2024-07-24T21:31:20.010000"],["2024-07-24T21:31:21.010000"],["2024-07-24T21:31:22.010000"],["2024-07-24T21:31:23.010000"],["2024-07-24T21:31:24.010000"],["2024-07-24T21:31:25.010000"],["2024-07-24T21:31:26.010000"],["2024-07-24T21:31:27.010000"],["2024-07-24T21:31:28.010000"],["2024-07-24T21:31:29.010000"],["2024-07-24T21:31:30.010000"],["2024-07-24T21:31:31.010000"],["2024-07-24T21:31:32.010000"],["2024-07-24T21:31:33.010000"],["2024-07-24T21:31:34.010000"],["2024-07-24T21:31:35.010000"],["2024-07-24T21:31:36.010000"],["2024-07-24T21:31:37.010000"],["2024-07-24T21:31:38.010000"],["2024-07-24T21:31:39.010000"],["2024-07-24T21:31:40.010000"],["2024-07-24T21:31:41.010000"],["2024-07-24T21:31:42.010000"],["2024-07-24T21:31:43.010000"],["2024-07-24T21:31:44.010000"],["2024-07-24T21:31:45.010000"],["2024-07-24T21:31:46.010000"],["2024-07-24T21:31:47.010000"],["2024-07-24T21:31:48.010000"],["2024-07-24T21:31:49.010000"],["2024-07-24T21:31:50.010000"],["2024-07-24T21:31:51.010000"],["2024-07-24T21:31:52.010000"],["2024-07-24T21:31:53.010000"],["2024-07-24T21:31:54.010000"],["2024-07-24T21:31:55.010000"],["2024-07-24T21:31:56.010000"],["2024-07-24T21:31:57.010000"],["2024-07-24T21:31:58.010000"],["2024-07-24T21:31:59.010000"],["2024-07-24T21:32:00.010000"],["2024-07-24T21:32:01.010000"],["2024-07-24T21:32:02.010000"],["2024-07-24T21:32:03.010000"],["2024-07-24T21:32:04.010000"],["2024-07-24T21:32:05.010000"],["2024-07-24T21:32:06.010000"],["2024-07-24T21:32:07.010000"],["2024-07-24T21:32:08.010000"],["2024-07-24T21:32:09.010000"],["2024-07-24T21:32:10.010000"],["2024-07-24T21:32:11.010000"],["2024-07-24T21:32:12.010000"],["2024-07-24T21:32:13.010000"],["2024-07-24T21:32:14.010000"],["2024-07-24T21:32:15.010000"],["2024-07-24T21:32:16.010000"],["2024-07-24T21:32:17.010000"],["2024-07-24T21:32:18.010000"],["2024-07-24T21:32:19.010000"],["2024-07-24T21:32:20.010000"],["2024-07-24T21:32:21.010000"],["2024-07-24T21:32:22.010000"],["2024-07-24T21:32:23.010000"],["2024-07-24T21:32:24.010000"],["2024-07-24T21:32:25.010000"],["2024-07-24T21:32:26.010000"],["2024-07-24T21:32:27.010000"],["2024-07-24T21:32:28.010000"],["2024-07-24T21:32:29.010000"],["2024-07-24T21:32:30.010000"],["2024-07-24T21:32:31.010000"],["2024-07-24T21:32:32.010000"],["2024-07-24T21:32:33.010000"],["2024-07-24T21:32:34.010000"],["2024-07-24T21:32:35.010000"],["2024-07-24T21:32:36.010000"],["2024-07-24T21:32:37.010000"],["2024-07-24T21:32:38.010000"],["2024-07-24T21:32:39.010000"],["2024-07-24T21:32:40.010000"],["2024-07-24T21:32:41.010000"],["2024-07-24T21:32:42.010000"],["2024-07-24T21:32:43.010000"],["2024-07-24T21:32:44.010000"],["2024-07-24T21:32:45.010000"],["2024-07-24T21:32:46.010000"],["2024-07-24T21:32:47.010000"],["2024-07-24T21:32:48.010000"],["2024-07-24T21:32:49.010000"],["2024-07-24T21:32:50.010000"],["2024-07-24T21:32:51.010000"],["2024-07-24T21:32:52.010000"],["2024-07-24T21:32:53.010000"],["2024-07-24T21:32:54.010000"],["2024-07-24T21:32:55.010000"],["2024-07-24T21:32:56.010000"],["2024-07-24T21:32:57.010000"],["2024-07-24T21:32:58.010000"],["2024-07-24T21:32:59.010000"],["2024-07-24T21:33:00.010000"],["2024-07-24T21:33:01.010000"],["2024-07-24T21:33:02.010000"],["2024-07-24T21:33:03.010000"],["2024-07-24T21:33:04.010000"],["2024-07-24T21:33:05.010000"],["2024-07-24T21:33:06.010000"],["2024-07-24T21:33:07.010000"],["2024-07-24T21:33:08.010000"],["2024-07-24T21:33:09.010000"],["2024-07-24T21:33:10.010000"],["2024-07-24T21:33:11.010000"],["2024-07-24T21:33:12.010000"],["2024-07-24T21:33:13.010000"],["2024-07-24T21:33:14.010000"],["2024-07-24T21:33:15.010000"],["2024-07-24T21:33:16.010000"],["2024-07-24T21:33:17.010000"],["2024-07-24T21:33:18.010000"],["2024-07-24T21:33:19.010000"],["2024-07-24T21:33:20.010000"],["2024-07-24T21:33:21.010000"],["2024-07-24T21:33:22.010000"],["2024-07-24T21:33:23.010000"],["2024-07-24T21:33:24.010000"],["2024-07-24T21:33:25.010000"],["2024-07-24T21:33:26.010000"],["2024-07-24T21:33:27.010000"],["2024-07-24T21:33:28.010000"],["2024-07-24T21:33:29.010000"],["2024-07-24T21:33:30.010000"],["2024-07-24T21:33:31.010000"],["2024-07-24T21:33:32.010000"],["2024-07-24T21:33:33.010000"],["2024-07-24T21:33:34.010000"],["2024-07-24T21:33:35.010000"],["2024-07-24T21:33:36.010000"],["2024-07-24T21:33:37.010000"],["2024-07-24T21:33:38.010000"],["2024-07-24T21:33:39.010000"],["2024-07-24T21:33:40.010000"],["2024-07-24T21:33:41.010000"],["2024-07-24T21:33:42.010000"],["2024-07-24T21:33:43.010000"],["2024-07-24T21:33:44.010000"],["2024-07-24T21:33:45.010000"],["2024-07-24T21:33:46.010000"],["2024-07-24T21:33:47.010000"],["2024-07-24T21:33:48.010000"],["2024-07-24T21:33:49.010000"],["2024-07-24T21:33:50.010000"],["2024-07-24T21:33:51.010000"],["2024-07-24T21:33:52.010000"],["2024-07-24T21:33:53.010000"],["2024-07-24T21:33:54.010000"],["2024-07-24T21:33:55.010000"],["2024-07-24T21:33:56.010000"],["2024-07-24T21:33:57.010000"],["2024-07-24T21:33:58.010000"],["2024-07-24T21:33:59.010000"],["2024-07-24T21:34:00.010000"],["2024-07-24T21:34:01.010000"],["2024-07-24T21:34:02.010000"],["2024-07-24T21:34:03.010000"],["2024-07-24T21:34:04.010000"],["2024-07-24T21:34:05.010000"],["2024-07-24T21:34:06.010000"],["2024-07-24T21:34:07.010000"],["2024-07-24T21:34:08.010000"],["2024-07-24T21:34:09.010000"],["2024-07-24T21:34:10.010000"],["2024-07-24T21:34:11.010000"],["2024-07-24T21:34:12.010000"],["2024-07-24T21:34:13.010000"],["2024-07-24T21:34:14.010000"],["2024-07-24T21:34:15.010000"],["2024-07-24T21:34:16.010000"],["2024-07-24T21:34:17.010000"],["2024-07-24T21:34:18.010000"],["2024-07-24T21:34:19.010000"],["2024-07-24T21:34:20.010000"],["2024-07-24T21:34:21.010000"],["2024-07-24T21:34:22.010000"],["2024-07-24T21:34:23.010000"],["2024-07-24T21:34:24.010000"],["2024-07-24T21:34:25.010000"],["2024-07-24T21:34:26.010000"],["2024-07-24T21:34:27.010000"],["2024-07-24T21:34:28.010000"],["2024-07-24T21:34:29.010000"],["2024-07-24T21:34:30.010000"],["2024-07-24T21:34:31.010000"],["2024-07-24T21:34:32.010000"],["2024-07-24T21:34:33.010000"],["2024-07-24T21:34:34.010000"],["2024-07-24T21:34:35.010000"],["2024-07-24T21:34:36.010000"],["2024-07-24T21:34:37.010000"],["2024-07-24T21:34:38.010000"],["2024-07-24T21:34:39.010000"],["2024-07-24T21:34:40.010000"],["2024-07-24T21:34:41.010000"],["2024-07-24T21:34:42.010000"],["2024-07-24T21:34:43.010000"],["2024-07-24T21:34:44.010000"],["2024-07-24T21:34:45.010000"],["2024-07-24T21:34:46.010000"],["2024-07-24T21:34:47.010000"],["2024-07-24T21:34:48.010000"],["2024-07-24T21:34:49.010000"],["2024-07-24T21:34:50.010000"],["2024-07-24T21:34:51.010000"],["2024-07-24T21:34:52.010000"],["2024-07-24T21:34:53.010000"],["2024-07-24T21:34:54.010000"],["2024-07-24T21:34:55.010000"],["2024-07-24T21:34:56.010000"],["2024-07-24T21:34:57.010000"],["2024-07-24T21:34:58.010000"],["2024-07-24T21:34:59.010000"],["2024-07-24T21:35:00.010000"],["2024-07-24T21:35:01.010000"],["2024-07-24T21:35:02.010000"],["2024-07-24T21:35:03.010000"],["2024-07-24T21:35:04.010000"],["2024-07-24T21:35:05.010000"],["2024-07-24T21:35:06.010000"],["2024-07-24T21:35:07.010000"],["2024-07-24T21:35:08.010000"],["2024-07-24T21:35:09.010000"],["2024-07-24T21:35:10.010000"],["2024-07-24T21:35:11.010000"],["2024-07-24T21:35:12.010000"],["2024-07-24T21:35:13.010000"],["2024-07-24T21:35:14.010000"],["2024-07-24T21:35:15.010000"],["2024-07-24T21:35:16.010000"],["2024-07-24T21:35:17.010000"],["2024-07-24T21:35:18.010000"],["2024-07-24T21:35:19.010000"],["2024-07-24T21:35:20.010000"],["2024-07-24T21:35:21.010000"],["2024-07-24T21:35:22.010000"],["2024-07-24T21:35:23.010000"],["2024-07-24T21:35:24.010000"],["2024-07-24T21:35:25.010000"],["2024-07-24T21:35:26.010000"],["2024-07-24T21:35:27.010000"],["2024-07-24T21:35:28.010000"],["2024-07-24T21:35:29.010000"],["2024-07-24T21:35:30.010000"],["2024-07-24T21:35:31.010000"],["2024-07-24T21:35:32.010000"],["2024-07-24T21:35:33.010000"],["2024-07-24T21:35:34.010000"],["2024-07-24T21:35:35.010000"],["2024-07-24T21:35:36.010000"],["2024-07-24T21:35:37.010000"],["2024-07-24T21:35:38.010000"],["2024-07-24T21:35:39.010000"],["2024-07-24T21:35:40.010000"],["2024-07-24T21:35:41.010000"],["2024-07-24T21:35:42.010000"],["2024-07-24T21:35:43.010000"],["2024-07-24T21:35:44.010000"],["2024-07-24T21:35:45.010000"],["2024-07-24T21:35:46.010000"],["2024-07-24T21:35:47.010000"],["2024-07-24T21:35:48.010000"],["2024-07-24T21:35:49.010000"],["2024-07-24T21:35:50.010000"],["2024-07-24T21:35:51.010000"],["2024-07-24T21:35:52.010000"],["2024-07-24T21:35:53.010000"],["2024-07-24T21:35:54.010000"],["2024-07-24T21:35:55.010000"],["2024-07-24T21:35:56.010000"],["2024-07-24T21:35:57.010000"],["2024-07-24T21:35:58.010000"],["2024-07-24T21:35:59.010000"],["2024-07-24T21:36:00.010000"],["2024-07-24T21:36:01.010000"],["2024-07-24T21:36:02.010000"],["2024-07-24T21:36:03.010000"],["2024-07-24T21:36:04.010000"],["2024-07-24T21:36:05.010000"],["2024-07-24T21:36:06.010000"],["2024-07-24T21:36:07.010000"],["2024-07-24T21:36:08.010000"],["2024-07-24T21:36:09.010000"],["2024-07-24T21:36:10.010000"],["2024-07-24T21:36:11.010000"],["2024-07-24T21:36:12.010000"],["2024-07-24T21:36:13.010000"],["2024-07-24T21:36:14.010000"],["2024-07-24T21:36:15.010000"],["2024-07-24T21:36:16.010000"],["2024-07-24T21:36:17.010000"],["2024-07-24T21:36:18.010000"],["2024-07-24T21:36:19.010000"],["2024-07-24T21:36:20.010000"],["2024-07-24T21:36:21.010000"],["2024-07-24T21:36:22.010000"],["2024-07-24T21:36:23.010000"],["2024-07-24T21:36:24.010000"],["2024-07-24T21:36:25.010000"],["2024-07-24T21:36:26.010000"],["2024-07-24T21:36:27.010000"],["2024-07-24T21:36:28.010000"],["2024-07-24T21:36:29.010000"],["2024-07-24T21:36:30.010000"],["2024-07-24T21:36:31.010000"],["2024-07-24T21:36:32.010000"],["2024-07-24T21:36:33.010000"],["2024-07-24T21:36:34.010000"],["2024-07-24T21:36:35.010000"],["2024-07-24T21:36:36.010000"],["2024-07-24T21:36:37.010000"],["2024-07-24T21:36:38.010000"],["2024-07-24T21:36:39.010000"],["2024-07-24T21:36:40.010000"],["2024-07-24T21:36:41.010000"],["2024-07-24T21:36:42.010000"],["2024-07-24T21:36:43.010000"],["2024-07-24T21:36:44.010000"],["2024-07-24T21:36:45.010000"],["2024-07-24T21:36:46.010000"],["2024-07-24T21:36:47.010000"],["2024-07-24T21:36:48.010000"],["2024-07-24T21:36:49.010000"],["2024-07-24T21:36:50.010000"],["2024-07-24T21:36:51.010000"],["2024-07-24T21:36:52.010000"],["2024-07-24T21:36:53.010000"],["2024-07-24T21:36:54.010000"],["2024-07-24T21:36:55.010000"],["2024-07-24T21:36:56.010000"],["2024-07-24T21:36:57.010000"],["2024-07-24T21:36:58.010000"],["2024-07-24T21:36:59.010000"],["2024-07-24T21:37:00.010000"],["2024-07-24T21:37:01.010000"],["2024-07-24T21:37:02.010000"],["2024-07-24T21:37:03.010000"],["2024-07-24T21:37:04.010000"],["2024-07-24T21:37:05.010000"],["2024-07-24T21:37:06.010000"],["2024-07-24T21:37:07.010000"],["2024-07-24T21:37:08.010000"],["2024-07-24T21:37:09.010000"],["2024-07-24T21:37:10.010000"],["2024-07-24T21:37:11.010000"],["2024-07-24T21:37:12.010000"],["2024-07-24T21:37:13.010000"],["2024-07-24T21:37:14.010000"],["2024-07-24T21:37:15.010000"],["2024-07-24T21:37:16.010000"],["2024-07-24T21:37:17.010000"],["2024-07-24T21:37:18.010000"],["2024-07-24T21:37:19.010000"],["2024-07-24T21:37:20.010000"],["2024-07-24T21:37:21.010000"],["2024-07-24T21:37:22.010000"],["2024-07-24T21:37:23.010000"],["2024-07-24T21:37:24.010000"],["2024-07-24T21:37:25.010000"],["2024-07-24T21:37:26.010000"],["2024-07-24T21:37:27.010000"],["2024-07-24T21:37:28.010000"],["2024-07-24T21:37:29.010000"],["2024-07-24T21:37:30.010000"],["2024-07-24T21:37:31.010000"],["2024-07-24T21:37:32.010000"],["2024-07-24T21:37:33.010000"],["2024-07-24T21:37:34.010000"],["2024-07-24T21:37:35.010000"],["2024-07-24T21:37:36.010000"],["2024-07-24T21:37:37.010000"],["2024-07-24T21:37:38.010000"],["2024-07-24T21:37:39.010000"],["2024-07-24T21:37:40.010000"],["2024-07-24T21:37:41.010000"],["2024-07-24T21:37:42.010000"],["2024-07-24T21:37:43.010000"],["2024-07-24T21:37:44.010000"],["2024-07-24T21:37:45.010000"],["2024-07-24T21:37:46.010000"],["2024-07-24T21:37:47.010000"],["2024-07-24T21:37:48.010000"],["2024-07-24T21:37:49.010000"],["2024-07-24T21:37:50.010000"],["2024-07-24T21:37:51.010000"],["2024-07-24T21:37:52.010000"],["2024-07-24T21:37:53.010000"],["2024-07-24T21:37:54.010000"],["2024-07-24T21:37:55.010000"],["2024-07-24T21:37:56.010000"],["2024-07-24T21:37:57.010000"],["2024-07-24T21:37:58.010000"],["2024-07-24T21:37:59.010000"],["2024-07-24T21:38:00.010000"],["2024-07-24T21:38:01.010000"],["2024-07-24T21:38:02.010000"],["2024-07-24T21:38:03.010000"],["2024-07-24T21:38:04.010000"],["2024-07-24T21:38:05.010000"],["2024-07-24T21:38:06.010000"],["2024-07-24T21:38:07.010000"],["2024-07-24T21:38:08.010000"],["2024-07-24T21:38:09.010000"],["2024-07-24T21:38:10.010000"],["2024-07-24T21:38:11.010000"],["2024-07-24T21:38:12.010000"],["2024-07-24T21:38:13.010000"],["2024-07-24T21:38:14.010000"],["2024-07-24T21:38:15.010000"],["2024-07-24T21:38:16.010000"],["2024-07-24T21:38:17.010000"],["2024-07-24T21:38:18.010000"],["2024-07-24T21:38:19.010000"],["2024-07-24T21:38:20.010000"],["2024-07-24T21:38:21.010000"],["2024-07-24T21:38:22.010000"],["2024-07-24T21:38:23.010000"],["2024-07-24T21:38:24.010000"],["2024-07-24T21:38:25.010000"],["2024-07-24T21:38:26.010000"],["2024-07-24T21:38:27.010000"],["2024-07-24T21:38:28.010000"],["2024-07-24T21:38:29.010000"],["2024-07-24T21:38:30.010000"],["2024-07-24T21:38:31.010000"],["2024-07-24T21:38:32.010000"],["2024-07-24T21:38:33.010000"],["2024-07-24T21:38:34.010000"],["2024-07-24T21:38:35.010000"],["2024-07-24T21:38:36.010000"],["2024-07-24T21:38:37.010000"],["2024-07-24T21:38:38.010000"],["2024-07-24T21:38:39.010000"],["2024-07-24T21:38:40.010000"],["2024-07-24T21:38:41.010000"],["2024-07-24T21:38:42.010000"],["2024-07-24T21:38:43.010000"],["2024-07-24T21:38:44.010000"],["2024-07-24T21:38:45.010000"],["2024-07-24T21:38:46.010000"],["2024-07-24T21:38:47.010000"],["2024-07-24T21:38:48.010000"],["2024-07-24T21:38:49.010000"],["2024-07-24T21:38:50.010000"],["2024-07-24T21:38:51.010000"],["2024-07-24T21:38:52.010000"],["2024-07-24T21:38:53.010000"],["2024-07-24T21:38:54.010000"],["2024-07-24T21:38:55.010000"],["2024-07-24T21:38:56.010000"],["2024-07-24T21:38:57.010000"],["2024-07-24T21:38:58.010000"],["2024-07-24T21:38:59.010000"],["2024-07-24T21:39:00.010000"],["2024-07-24T21:39:01.010000"],["2024-07-24T21:39:02.010000"],["2024-07-24T21:39:03.010000"],["2024-07-24T21:39:04.010000"],["2024-07-24T21:39:05.010000"],["2024-07-24T21:39:06.010000"],["2024-07-24T21:39:07.010000"],["2024-07-24T21:39:08.010000"],["2024-07-24T21:39:09.010000"],["2024-07-24T21:39:10.010000"],["2024-07-24T21:39:11.010000"],["2024-07-24T21:39:12.010000"],["2024-07-24T21:39:13.010000"],["2024-07-24T21:39:14.010000"],["2024-07-24T21:39:15.010000"],["2024-07-24T21:39:16.010000"],["2024-07-24T21:39:17.010000"],["2024-07-24T21:39:18.010000"],["2024-07-24T21:39:19.010000"],["2024-07-24T21:39:20.010000"],["2024-07-24T21:39:21.010000"],["2024-07-24T21:39:22.010000"],["2024-07-24T21:39:23.010000"],["2024-07-24T21:39:24.010000"],["2024-07-24T21:39:25.010000"],["2024-07-24T21:39:26.010000"],["2024-07-24T21:39:27.010000"],["2024-07-24T21:39:28.010000"],["2024-07-24T21:39:29.010000"],["2024-07-24T21:39:30.010000"],["2024-07-24T21:39:31.010000"],["2024-07-24T21:39:32.010000"],["2024-07-24T21:39:33.010000"],["2024-07-24T21:39:34.010000"],["2024-07-24T21:39:35.010000"],["2024-07-24T21:39:36.010000"],["2024-07-24T21:39:37.010000"],["2024-07-24T21:39:38.010000"],["2024-07-24T21:39:39.010000"],["2024-07-24T21:39:40.010000"],["2024-07-24T21:39:41.010000"],["2024-07-24T21:39:42.010000"],["2024-07-24T21:39:43.010000"],["2024-07-24T21:39:44.010000"],["2024-07-24T21:39:45.010000"],["2024-07-24T21:39:46.010000"],["2024-07-24T21:39:47.010000"],["2024-07-24T21:39:48.010000"],["2024-07-24T21:39:49.010000"],["2024-07-24T21:39:50.010000"],["2024-07-24T21:39:51.010000"],["2024-07-24T21:39:52.010000"],["2024-07-24T21:39:53.010000"],["2024-07-24T21:39:54.010000"],["2024-07-24T21:39:55.010000"],["2024-07-24T21:39:56.010000"],["2024-07-24T21:39:57.010000"],["2024-07-24T21:39:58.010000"],["2024-07-24T21:39:59.010000"],["2024-07-24T21:40:00.010000"],["2024-07-24T21:40:01.010000"],["2024-07-24T21:40:02.010000"],["2024-07-24T21:40:03.010000"],["2024-07-24T21:40:04.010000"],["2024-07-24T21:40:05.010000"],["2024-07-24T21:40:06.010000"],["2024-07-24T21:40:07.010000"],["2024-07-24T21:40:08.010000"],["2024-07-24T21:40:09.010000"],["2024-07-24T21:40:10.010000"],["2024-07-24T21:40:11.010000"],["2024-07-24T21:40:12.010000"],["2024-07-24T21:40:13.010000"],["2024-07-24T21:40:14.010000"],["2024-07-24T21:40:15.010000"],["2024-07-24T21:40:16.010000"],["2024-07-24T21:40:17.010000"],["2024-07-24T21:40:18.010000"],["2024-07-24T21:40:19.010000"],["2024-07-24T21:40:20.010000"],["2024-07-24T21:40:21.010000"],["2024-07-24T21:40:22.010000"],["2024-07-24T21:40:23.010000"],["2024-07-24T21:40:24.010000"],["2024-07-24T21:40:25.010000"],["2024-07-24T21:40:26.010000"],["2024-07-24T21:40:27.010000"],["2024-07-24T21:40:28.010000"],["2024-07-24T21:40:29.010000"],["2024-07-24T21:40:30.010000"],["2024-07-24T21:40:31.010000"],["2024-07-24T21:40:32.010000"],["2024-07-24T21:40:33.010000"],["2024-07-24T21:40:34.010000"],["2024-07-24T21:40:35.010000"],["2024-07-24T21:40:36.010000"],["2024-07-24T21:40:37.010000"],["2024-07-24T21:40:38.010000"],["2024-07-24T21:40:39.010000"],["2024-07-24T21:40:40.010000"],["2024-07-24T21:40:41.010000"],["2024-07-24T21:40:42.010000"],["2024-07-24T21:40:43.010000"],["2024-07-24T21:40:44.010000"],["2024-07-24T21:40:45.010000"],["2024-07-24T21:40:46.010000"],["2024-07-24T21:40:47.010000"],["2024-07-24T21:40:48.010000"],["2024-07-24T21:40:49.010000"],["2024-07-24T21:40:50.010000"],["2024-07-24T21:40:51.010000"],["2024-07-24T21:40:52.010000"],["2024-07-24T21:40:53.010000"],["2024-07-24T21:40:54.010000"],["2024-07-24T21:40:55.010000"],["2024-07-24T21:40:56.010000"],["2024-07-24T21:40:57.010000"],["2024-07-24T21:40:58.010000"],["2024-07-24T21:40:59.010000"],["2024-07-24T21:41:00.010000"],["2024-07-24T21:41:01.010000"],["2024-07-24T21:41:02.010000"],["2024-07-24T21:41:03.010000"],["2024-07-24T21:41:04.010000"],["2024-07-24T21:41:05.010000"],["2024-07-24T21:41:06.010000"],["2024-07-24T21:41:07.010000"],["2024-07-24T21:41:08.010000"],["2024-07-24T21:41:09.010000"],["2024-07-24T21:41:10.010000"],["2024-07-24T21:41:11.010000"],["2024-07-24T21:41:12.010000"],["2024-07-24T21:41:13.010000"],["2024-07-24T21:41:14.010000"],["2024-07-24T21:41:15.010000"],["2024-07-24T21:41:16.010000"],["2024-07-24T21:41:17.010000"],["2024-07-24T21:41:18.010000"],["2024-07-24T21:41:19.010000"],["2024-07-24T21:41:20.010000"],["2024-07-24T21:41:21.010000"],["2024-07-24T21:41:22.010000"],["2024-07-24T21:41:23.010000"],["2024-07-24T21:41:24.010000"],["2024-07-24T21:41:25.010000"],["2024-07-24T21:41:26.010000"],["2024-07-24T21:41:27.010000"],["2024-07-24T21:41:28.010000"],["2024-07-24T21:41:29.010000"],["2024-07-24T21:41:30.010000"],["2024-07-24T21:41:31.010000"],["2024-07-24T21:41:32.010000"],["2024-07-24T21:41:33.010000"],["2024-07-24T21:41:34.010000"],["2024-07-24T21:41:35.010000"],["2024-07-24T21:41:36.010000"],["2024-07-24T21:41:37.010000"],["2024-07-24T21:41:38.010000"],["2024-07-24T21:41:39.010000"],["2024-07-24T21:41:40.010000"],["2024-07-24T21:41:41.010000"],["2024-07-24T21:41:42.010000"],["2024-07-24T21:41:43.010000"],["2024-07-24T21:41:44.010000"],["2024-07-24T21:41:45.010000"],["2024-07-24T21:41:46.010000"],["2024-07-24T21:41:47.010000"],["2024-07-24T21:41:48.010000"],["2024-07-24T21:41:49.010000"],["2024-07-24T21:41:50.010000"],["2024-07-24T21:41:51.010000"],["2024-07-24T21:41:52.010000"],["2024-07-24T21:41:53.010000"],["2024-07-24T21:41:54.010000"],["2024-07-24T21:41:55.010000"],["2024-07-24T21:41:56.010000"],["2024-07-24T21:41:57.010000"],["2024-07-24T21:41:58.010000"],["2024-07-24T21:41:59.010000"],["2024-07-24T21:42:00.010000"],["2024-07-24T21:42:01.010000"],["2024-07-24T21:42:02.010000"],["2024-07-24T21:42:03.010000"],["2024-07-24T21:42:04.010000"],["2024-07-24T21:42:05.010000"],["2024-07-24T21:42:06.010000"],["2024-07-24T21:42:07.010000"],["2024-07-24T21:42:08.010000"],["2024-07-24T21:42:09.010000"],["2024-07-24T21:42:10.010000"],["2024-07-24T21:42:11.010000"],["2024-07-24T21:42:12.010000"],["2024-07-24T21:42:13.010000"],["2024-07-24T21:42:14.010000"],["2024-07-24T21:42:15.010000"],["2024-07-24T21:42:16.010000"],["2024-07-24T21:42:17.010000"],["2024-07-24T21:42:18.010000"],["2024-07-24T21:42:19.010000"],["2024-07-24T21:42:20.010000"],["2024-07-24T21:42:21.010000"],["2024-07-24T21:42:22.010000"],["2024-07-24T21:42:23.010000"],["2024-07-24T21:42:24.010000"],["2024-07-24T21:42:25.010000"],["2024-07-24T21:42:26.010000"],["2024-07-24T21:42:27.010000"],["2024-07-24T21:42:28.010000"],["2024-07-24T21:42:29.010000"],["2024-07-24T21:42:30.010000"],["2024-07-24T21:42:31.010000"],["2024-07-24T21:42:32.010000"],["2024-07-24T21:42:33.010000"],["2024-07-24T21:42:34.010000"],["2024-07-24T21:42:35.010000"],["2024-07-24T21:42:36.010000"],["2024-07-24T21:42:37.010000"],["2024-07-24T21:42:38.010000"],["2024-07-24T21:42:39.010000"],["2024-07-24T21:42:40.010000"],["2024-07-24T21:42:41.010000"],["2024-07-24T21:42:42.010000"],["2024-07-24T21:42:43.010000"],["2024-07-24T21:42:44.010000"],["2024-07-24T21:42:45.010000"],["2024-07-24T21:42:46.010000"],["2024-07-24T21:42:47.010000"],["2024-07-24T21:42:48.010000"],["2024-07-24T21:42:49.010000"],["2024-07-24T21:42:50.010000"],["2024-07-24T21:42:51.010000"],["2024-07-24T21:42:52.010000"],["2024-07-24T21:42:53.010000"],["2024-07-24T21:42:54.010000"],["2024-07-24T21:42:55.010000"],["2024-07-24T21:42:56.010000"],["2024-07-24T21:42:57.010000"],["2024-07-24T21:42:58.010000"],["2024-07-24T21:42:59.010000"],["2024-07-24T21:43:00.010000"],["2024-07-24T21:43:01.010000"],["2024-07-24T21:43:02.010000"],["2024-07-24T21:43:03.010000"],["2024-07-24T21:43:04.010000"],["2024-07-24T21:43:05.010000"],["2024-07-24T21:43:06.010000"],["2024-07-24T21:43:07.010000"],["2024-07-24T21:43:08.010000"],["2024-07-24T21:43:09.010000"],["2024-07-24T21:43:10.010000"],["2024-07-24T21:43:11.010000"],["2024-07-24T21:43:12.010000"],["2024-07-24T21:43:13.010000"],["2024-07-24T21:43:14.010000"],["2024-07-24T21:43:15.010000"],["2024-07-24T21:43:16.010000"],["2024-07-24T21:43:17.010000"],["2024-07-24T21:43:18.010000"],["2024-07-24T21:43:19.010000"],["2024-07-24T21:43:20.010000"],["2024-07-24T21:43:21.010000"],["2024-07-24T21:43:22.010000"],["2024-07-24T21:43:23.010000"],["2024-07-24T21:43:24.010000"],["2024-07-24T21:43:25.010000"],["2024-07-24T21:43:26.010000"],["2024-07-24T21:43:27.010000"],["2024-07-24T21:43:28.010000"],["2024-07-24T21:43:29.010000"],["2024-07-24T21:43:30.010000"],["2024-07-24T21:43:31.010000"],["2024-07-24T21:43:32.010000"],["2024-07-24T21:43:33.010000"],["2024-07-24T21:43:34.010000"],["2024-07-24T21:43:35.010000"],["2024-07-24T21:43:36.010000"],["2024-07-24T21:43:37.010000"],["2024-07-24T21:43:38.010000"],["2024-07-24T21:43:39.010000"],["2024-07-24T21:43:40.010000"],["2024-07-24T21:43:41.010000"],["2024-07-24T21:43:42.010000"],["2024-07-24T21:43:43.010000"],["2024-07-24T21:43:44.010000"],["2024-07-24T21:43:45.010000"],["2024-07-24T21:43:46.010000"],["2024-07-24T21:43:47.010000"],["2024-07-24T21:43:48.010000"],["2024-07-24T21:43:49.010000"],["2024-07-24T21:43:50.010000"],["2024-07-24T21:43:51.010000"],["2024-07-24T21:43:52.010000"],["2024-07-24T21:43:53.010000"],["2024-07-24T21:43:54.010000"],["2024-07-24T21:43:55.010000"],["2024-07-24T21:43:56.010000"],["2024-07-24T21:43:57.010000"],["2024-07-24T21:43:58.010000"],["2024-07-24T21:43:59.010000"],["2024-07-24T21:44:00.010000"],["2024-07-24T21:44:01.010000"],["2024-07-24T21:44:02.010000"],["2024-07-24T21:44:03.010000"],["2024-07-24T21:44:04.010000"],["2024-07-24T21:44:05.010000"],["2024-07-24T21:44:06.010000"],["2024-07-24T21:44:07.010000"],["2024-07-24T21:44:08.010000"],["2024-07-24T21:44:09.010000"],["2024-07-24T21:44:10.010000"],["2024-07-24T21:44:11.010000"],["2024-07-24T21:44:12.010000"],["2024-07-24T21:44:13.010000"],["2024-07-24T21:44:14.010000"],["2024-07-24T21:44:15.010000"],["2024-07-24T21:44:16.010000"],["2024-07-24T21:44:17.010000"],["2024-07-24T21:44:18.010000"],["2024-07-24T21:44:19.010000"],["2024-07-24T21:44:20.010000"],["2024-07-24T21:44:21.010000"],["2024-07-24T21:44:22.010000"],["2024-07-24T21:44:23.010000"],["2024-07-24T21:44:24.010000"],["2024-07-24T21:44:25.010000"],["2024-07-24T21:44:26.010000"],["2024-07-24T21:44:27.010000"],["2024-07-24T21:44:28.010000"],["2024-07-24T21:44:29.010000"],["2024-07-24T21:44:30.010000"],["2024-07-24T21:44:31.010000"],["2024-07-24T21:44:32.010000"],["2024-07-24T21:44:33.010000"],["2024-07-24T21:44:34.010000"],["2024-07-24T21:44:35.010000"],["2024-07-24T21:44:36.010000"],["2024-07-24T21:44:37.010000"],["2024-07-24T21:44:38.010000"],["2024-07-24T21:44:39.010000"],["2024-07-24T21:44:40.010000"],["2024-07-24T21:44:41.010000"],["2024-07-24T21:44:42.010000"],["2024-07-24T21:44:43.010000"],["2024-07-24T21:44:44.010000"],["2024-07-24T21:44:45.010000"],["2024-07-24T21:44:46.010000"],["2024-07-24T21:44:47.010000"],["2024-07-24T21:44:48.010000"],["2024-07-24T21:44:49.010000"],["2024-07-24T21:44:50.010000"],["2024-07-24T21:44:51.010000"],["2024-07-24T21:44:52.010000"],["2024-07-24T21:44:53.010000"],["2024-07-24T21:44:54.010000"],["2024-07-24T21:44:55.010000"],["2024-07-24T21:44:56.010000"],["2024-07-24T21:44:57.010000"],["2024-07-24T21:44:58.010000"],["2024-07-24T21:44:59.010000"],["2024-07-24T21:45:00.010000"],["2024-07-24T21:45:01.010000"],["2024-07-24T21:45:02.010000"],["2024-07-24T21:45:03.010000"],["2024-07-24T21:45:04.010000"],["2024-07-24T21:45:05.010000"],["2024-07-24T21:45:06.010000"],["2024-07-24T21:45:07.010000"],["2024-07-24T21:45:08.010000"],["2024-07-24T21:45:09.010000"],["2024-07-24T21:45:10.010000"],["2024-07-24T21:45:11.010000"],["2024-07-24T21:45:12.010000"],["2024-07-24T21:45:13.010000"],["2024-07-24T21:45:14.010000"],["2024-07-24T21:45:15.010000"],["2024-07-24T21:45:16.010000"],["2024-07-24T21:45:17.010000"],["2024-07-24T21:45:18.010000"],["2024-07-24T21:45:19.010000"],["2024-07-24T21:45:20.010000"],["2024-07-24T21:45:21.010000"],["2024-07-24T21:45:22.010000"],["2024-07-24T21:45:23.010000"],["2024-07-24T21:45:24.010000"],["2024-07-24T21:45:25.010000"],["2024-07-24T21:45:26.010000"],["2024-07-24T21:45:27.010000"],["2024-07-24T21:45:28.010000"],["2024-07-24T21:45:29.010000"],["2024-07-24T21:45:30.010000"],["2024-07-24T21:45:31.010000"],["2024-07-24T21:45:32.010000"],["2024-07-24T21:45:33.010000"],["2024-07-24T21:45:34.010000"],["2024-07-24T21:45:35.010000"],["2024-07-24T21:45:36.010000"],["2024-07-24T21:45:37.010000"],["2024-07-24T21:45:38.010000"],["2024-07-24T21:45:39.010000"],["2024-07-24T21:45:40.010000"],["2024-07-24T21:45:41.010000"],["2024-07-24T21:45:42.010000"],["2024-07-24T21:45:43.010000"],["2024-07-24T21:45:44.010000"],["2024-07-24T21:45:45.010000"],["2024-07-24T21:45:46.010000"],["2024-07-24T21:45:47.010000"],["2024-07-24T21:45:48.010000"],["2024-07-24T21:45:49.010000"],["2024-07-24T21:45:50.010000"],["2024-07-24T21:45:51.010000"],["2024-07-24T21:45:52.010000"],["2024-07-24T21:45:53.010000"],["2024-07-24T21:45:54.010000"],["2024-07-24T21:45:55.010000"],["2024-07-24T21:45:56.010000"],["2024-07-24T21:45:57.010000"],["2024-07-24T21:45:58.010000"],["2024-07-24T21:45:59.010000"],["2024-07-24T21:46:00.010000"],["2024-07-24T21:46:01.010000"],["2024-07-24T21:46:02.010000"],["2024-07-24T21:46:03.010000"],["2024-07-24T21:46:04.010000"],["2024-07-24T21:46:05.010000"],["2024-07-24T21:46:06.010000"],["2024-07-24T21:46:07.010000"],["2024-07-24T21:46:08.010000"],["2024-07-24T21:46:09.010000"],["2024-07-24T21:46:10.010000"],["2024-07-24T21:46:11.010000"],["2024-07-24T21:46:12.010000"],["2024-07-24T21:46:13.010000"],["2024-07-24T21:46:14.010000"],["2024-07-24T21:46:15.010000"],["2024-07-24T21:46:16.010000"],["2024-07-24T21:46:17.010000"],["2024-07-24T21:46:18.010000"],["2024-07-24T21:46:19.010000"],["2024-07-24T21:46:20.010000"],["2024-07-24T21:46:21.010000"],["2024-07-24T21:46:22.010000"],["2024-07-24T21:46:23.010000"],["2024-07-24T21:46:24.010000"],["2024-07-24T21:46:25.010000"],["2024-07-24T21:46:26.010000"],["2024-07-24T21:46:27.010000"],["2024-07-24T21:46:28.010000"],["2024-07-24T21:46:29.010000"],["2024-07-24T21:46:30.010000"],["2024-07-24T21:46:31.010000"],["2024-07-24T21:46:32.010000"],["2024-07-24T21:46:33.010000"],["2024-07-24T21:46:34.010000"],["2024-07-24T21:46:35.010000"],["2024-07-24T21:46:36.010000"],["2024-07-24T21:46:37.010000"],["2024-07-24T21:46:38.010000"],["2024-07-24T21:46:39.010000"],["2024-07-24T21:46:40.010000"],["2024-07-24T21:46:41.010000"],["2024-07-24T21:46:42.010000"],["2024-07-24T21:46:43.010000"],["2024-07-24T21:46:44.010000"],["2024-07-24T21:46:45.010000"],["2024-07-24T21:46:46.010000"],["2024-07-24T21:46:47.010000"],["2024-07-24T21:46:48.010000"],["2024-07-24T21:46:49.010000"],["2024-07-24T21:46:50.010000"],["2024-07-24T21:46:51.010000"],["2024-07-24T21:46:52.010000"],["2024-07-24T21:46:53.010000"],["2024-07-24T21:46:54.010000"],["2024-07-24T21:46:55.010000"],["2024-07-24T21:46:56.010000"],["2024-07-24T21:46:57.010000"],["2024-07-24T21:46:58.010000"],["2024-07-24T21:46:59.010000"],["2024-07-24T21:47:00.010000"],["2024-07-24T21:47:01.010000"],["2024-07-24T21:47:02.010000"],["2024-07-24T21:47:03.010000"],["2024-07-24T21:47:04.010000"],["2024-07-24T21:47:05.010000"],["2024-07-24T21:47:06.010000"],["2024-07-24T21:47:07.010000"],["2024-07-24T21:47:08.010000"],["2024-07-24T21:47:09.010000"],["2024-07-24T21:47:10.010000"],["2024-07-24T21:47:11.010000"],["2024-07-24T21:47:12.010000"],["2024-07-24T21:47:13.010000"],["2024-07-24T21:47:14.010000"],["2024-07-24T21:47:15.010000"],["2024-07-24T21:47:16.010000"],["2024-07-24T21:47:17.010000"],["2024-07-24T21:47:18.010000"],["2024-07-24T21:47:19.010000"],["2024-07-24T21:47:20.010000"],["2024-07-24T21:47:21.010000"],["2024-07-24T21:47:22.010000"],["2024-07-24T21:47:23.010000"],["2024-07-24T21:47:24.010000"],["2024-07-24T21:47:25.010000"],["2024-07-24T21:47:26.010000"],["2024-07-24T21:47:27.010000"],["2024-07-24T21:47:28.010000"],["2024-07-24T21:47:29.010000"],["2024-07-24T21:47:30.010000"],["2024-07-24T21:47:31.010000"],["2024-07-24T21:47:32.010000"],["2024-07-24T21:47:33.010000"],["2024-07-24T21:47:34.010000"],["2024-07-24T21:47:35.010000"],["2024-07-24T21:47:36.010000"],["2024-07-24T21:47:37.010000"],["2024-07-24T21:47:38.010000"],["2024-07-24T21:47:39.010000"],["2024-07-24T21:47:40.010000"],["2024-07-24T21:47:41.010000"],["2024-07-24T21:47:42.010000"],["2024-07-24T21:47:43.010000"],["2024-07-24T21:47:44.010000"],["2024-07-24T21:47:45.010000"],["2024-07-24T21:47:46.010000"],["2024-07-24T21:47:47.010000"],["2024-07-24T21:47:48.010000"],["2024-07-24T21:47:49.010000"],["2024-07-24T21:47:50.010000"],["2024-07-24T21:47:51.010000"],["2024-07-24T21:47:52.010000"],["2024-07-24T21:47:53.010000"],["2024-07-24T21:47:54.010000"],["2024-07-24T21:47:55.010000"],["2024-07-24T21:47:56.010000"],["2024-07-24T21:47:57.010000"],["2024-07-24T21:47:58.010000"],["2024-07-24T21:47:59.010000"],["2024-07-24T21:48:00.010000"],["2024-07-24T21:48:01.010000"],["2024-07-24T21:48:02.010000"],["2024-07-24T21:48:03.010000"],["2024-07-24T21:48:04.010000"],["2024-07-24T21:48:05.010000"],["2024-07-24T21:48:06.010000"],["2024-07-24T21:48:07.010000"],["2024-07-24T21:48:08.010000"],["2024-07-24T21:48:09.010000"],["2024-07-24T21:48:10.010000"],["2024-07-24T21:48:11.010000"],["2024-07-24T21:48:12.010000"],["2024-07-24T21:48:13.010000"],["2024-07-24T21:48:14.010000"],["2024-07-24T21:48:15.010000"],["2024-07-24T21:48:16.010000"],["2024-07-24T21:48:17.010000"],["2024-07-24T21:48:18.010000"],["2024-07-24T21:48:19.010000"],["2024-07-24T21:48:20.010000"],["2024-07-24T21:48:21.010000"],["2024-07-24T21:48:22.010000"],["2024-07-24T21:48:23.010000"],["2024-07-24T21:48:24.010000"],["2024-07-24T21:48:25.010000"],["2024-07-24T21:48:26.010000"],["2024-07-24T21:48:27.010000"],["2024-07-24T21:48:28.010000"],["2024-07-24T21:48:29.010000"],["2024-07-24T21:48:30.010000"],["2024-07-24T21:48:31.010000"],["2024-07-24T21:48:32.010000"],["2024-07-24T21:48:33.010000"],["2024-07-24T21:48:34.010000"],["2024-07-24T21:48:35.010000"],["2024-07-24T21:48:36.010000"],["2024-07-24T21:48:37.010000"],["2024-07-24T21:48:38.010000"],["2024-07-24T21:48:39.010000"],["2024-07-24T21:48:40.010000"],["2024-07-24T21:48:41.010000"],["2024-07-24T21:48:42.010000"],["2024-07-24T21:48:43.010000"],["2024-07-24T21:48:44.010000"],["2024-07-24T21:48:45.010000"],["2024-07-24T21:48:46.010000"],["2024-07-24T21:48:47.010000"],["2024-07-24T21:48:48.010000"],["2024-07-24T21:48:49.010000"],["2024-07-24T21:48:50.010000"],["2024-07-24T21:48:51.010000"],["2024-07-24T21:48:52.010000"],["2024-07-24T21:48:53.010000"],["2024-07-24T21:48:54.010000"],["2024-07-24T21:48:55.010000"],["2024-07-24T21:48:56.010000"],["2024-07-24T21:48:57.010000"],["2024-07-24T21:48:58.010000"],["2024-07-24T21:48:59.010000"],["2024-07-24T21:49:00.010000"],["2024-07-24T21:49:01.010000"],["2024-07-24T21:49:02.010000"],["2024-07-24T21:49:03.010000"],["2024-07-24T21:49:04.010000"],["2024-07-24T21:49:05.010000"],["2024-07-24T21:49:06.010000"],["2024-07-24T21:49:07.010000"],["2024-07-24T21:49:08.010000"],["2024-07-24T21:49:09.010000"],["2024-07-24T21:49:10.010000"],["2024-07-24T21:49:11.010000"],["2024-07-24T21:49:12.010000"],["2024-07-24T21:49:13.010000"],["2024-07-24T21:49:14.010000"],["2024-07-24T21:49:15.010000"],["2024-07-24T21:49:16.010000"],["2024-07-24T21:49:17.010000"],["2024-07-24T21:49:18.010000"],["2024-07-24T21:49:19.010000"],["2024-07-24T21:49:20.010000"],["2024-07-24T21:49:21.010000"],["2024-07-24T21:49:22.010000"],["2024-07-24T21:49:23.010000"],["2024-07-24T21:49:24.010000"],["2024-07-24T21:49:25.010000"],["2024-07-24T21:49:26.010000"],["2024-07-24T21:49:27.010000"],["2024-07-24T21:49:28.010000"],["2024-07-24T21:49:29.010000"],["2024-07-24T21:49:30.010000"],["2024-07-24T21:49:31.010000"],["2024-07-24T21:49:32.010000"],["2024-07-24T21:49:33.010000"],["2024-07-24T21:49:34.010000"],["2024-07-24T21:49:35.010000"],["2024-07-24T21:49:36.010000"],["2024-07-24T21:49:37.010000"],["2024-07-24T21:49:38.010000"],["2024-07-24T21:49:39.010000"],["2024-07-24T21:49:40.010000"],["2024-07-24T21:49:41.010000"],["2024-07-24T21:49:42.010000"],["2024-07-24T21:49:43.010000"],["2024-07-24T21:49:44.010000"],["2024-07-24T21:49:45.010000"],["2024-07-24T21:49:46.010000"],["2024-07-24T21:49:47.010000"],["2024-07-24T21:49:48.010000"],["2024-07-24T21:49:49.010000"],["2024-07-24T21:49:50.010000"],["2024-07-24T21:49:51.010000"],["2024-07-24T21:49:52.010000"],["2024-07-24T21:49:53.010000"],["2024-07-24T21:49:54.010000"],["2024-07-24T21:49:55.010000"],["2024-07-24T21:49:56.010000"],["2024-07-24T21:49:57.010000"],["2024-07-24T21:49:58.010000"],["2024-07-24T21:49:59.010000"],["2024-07-24T21:50:00.010000"],["2024-07-24T21:50:01.010000"],["2024-07-24T21:50:02.010000"],["2024-07-24T21:50:03.010000"],["2024-07-24T21:50:04.010000"],["2024-07-24T21:50:05.010000"],["2024-07-24T21:50:06.010000"],["2024-07-24T21:50:07.010000"],["2024-07-24T21:50:08.010000"],["2024-07-24T21:50:09.010000"],["2024-07-24T21:50:10.010000"],["2024-07-24T21:50:11.010000"],["2024-07-24T21:50:12.010000"],["2024-07-24T21:50:13.010000"],["2024-07-24T21:50:14.010000"],["2024-07-24T21:50:15.010000"],["2024-07-24T21:50:16.010000"],["2024-07-24T21:50:17.010000"],["2024-07-24T21:50:18.010000"],["2024-07-24T21:50:19.010000"],["2024-07-24T21:50:20.010000"],["2024-07-24T21:50:21.010000"],["2024-07-24T21:50:22.010000"],["2024-07-24T21:50:23.010000"],["2024-07-24T21:50:24.010000"],["2024-07-24T21:50:25.010000"],["2024-07-24T21:50:26.010000"],["2024-07-24T21:50:27.010000"],["2024-07-24T21:50:28.010000"],["2024-07-24T21:50:29.010000"],["2024-07-24T21:50:30.010000"],["2024-07-24T21:50:31.010000"],["2024-07-24T21:50:32.010000"],["2024-07-24T21:50:33.010000"],["2024-07-24T21:50:34.010000"],["2024-07-24T21:50:35.010000"],["2024-07-24T21:50:36.010000"],["2024-07-24T21:50:37.010000"],["2024-07-24T21:50:38.010000"],["2024-07-24T21:50:39.010000"],["2024-07-24T21:50:40.010000"],["2024-07-24T21:50:41.010000"],["2024-07-24T21:50:42.010000"],["2024-07-24T21:50:43.010000"],["2024-07-24T21:50:44.010000"],["2024-07-24T21:50:45.010000"],["2024-07-24T21:50:46.010000"],["2024-07-24T21:50:47.010000"],["2024-07-24T21:50:48.010000"],["2024-07-24T21:50:49.010000"],["2024-07-24T21:50:50.010000"],["2024-07-24T21:50:51.010000"],["2024-07-24T21:50:52.010000"],["2024-07-24T21:50:53.010000"],["2024-07-24T21:50:54.010000"],["2024-07-24T21:50:55.010000"],["2024-07-24T21:50:56.010000"],["2024-07-24T21:50:57.010000"],["2024-07-24T21:50:58.010000"],["2024-07-24T21:50:59.010000"],["2024-07-24T21:51:00.010000"],["2024-07-24T21:51:01.010000"],["2024-07-24T21:51:02.010000"],["2024-07-24T21:51:03.010000"],["2024-07-24T21:51:04.010000"],["2024-07-24T21:51:05.010000"],["2024-07-24T21:51:06.010000"],["2024-07-24T21:51:07.010000"],["2024-07-24T21:51:08.010000"],["2024-07-24T21:51:09.010000"],["2024-07-24T21:51:10.010000"],["2024-07-24T21:51:11.010000"],["2024-07-24T21:51:12.010000"],["2024-07-24T21:51:13.010000"],["2024-07-24T21:51:14.010000"],["2024-07-24T21:51:15.010000"],["2024-07-24T21:51:16.010000"],["2024-07-24T21:51:17.010000"],["2024-07-24T21:51:18.010000"],["2024-07-24T21:51:19.010000"],["2024-07-24T21:51:20.010000"],["2024-07-24T21:51:21.010000"],["2024-07-24T21:51:22.010000"],["2024-07-24T21:51:23.010000"],["2024-07-24T21:51:24.010000"],["2024-07-24T21:51:25.010000"],["2024-07-24T21:51:26.010000"],["2024-07-24T21:51:27.010000"],["2024-07-24T21:51:28.010000"],["2024-07-24T21:51:29.010000"],["2024-07-24T21:51:30.010000"],["2024-07-24T21:51:31.010000"],["2024-07-24T21:51:32.010000"],["2024-07-24T21:51:33.010000"],["2024-07-24T21:51:34.010000"],["2024-07-24T21:51:35.010000"],["2024-07-24T21:51:36.010000"],["2024-07-24T21:51:37.010000"],["2024-07-24T21:51:38.010000"],["2024-07-24T21:51:39.010000"],["2024-07-24T21:51:40.010000"],["2024-07-24T21:51:41.010000"],["2024-07-24T21:51:42.010000"],["2024-07-24T21:51:43.010000"],["2024-07-24T21:51:44.010000"],["2024-07-24T21:51:45.010000"],["2024-07-24T21:51:46.010000"],["2024-07-24T21:51:47.010000"],["2024-07-24T21:51:48.010000"],["2024-07-24T21:51:49.010000"],["2024-07-24T21:51:50.010000"],["2024-07-24T21:51:51.010000"],["2024-07-24T21:51:52.010000"],["2024-07-24T21:51:53.010000"],["2024-07-24T21:51:54.010000"],["2024-07-24T21:51:55.010000"],["2024-07-24T21:51:56.010000"],["2024-07-24T21:51:57.010000"],["2024-07-24T21:51:58.010000"],["2024-07-24T21:51:59.010000"],["2024-07-24T21:52:00.010000"],["2024-07-24T21:52:01.010000"],["2024-07-24T21:52:02.010000"],["2024-07-24T21:52:03.010000"],["2024-07-24T21:52:04.010000"],["2024-07-24T21:52:05.010000"],["2024-07-24T21:52:06.010000"],["2024-07-24T21:52:07.010000"],["2024-07-24T21:52:08.010000"],["2024-07-24T21:52:09.010000"],["2024-07-24T21:52:10.010000"],["2024-07-24T21:52:11.010000"],["2024-07-24T21:52:12.010000"],["2024-07-24T21:52:13.010000"],["2024-07-24T21:52:14.010000"],["2024-07-24T21:52:15.010000"],["2024-07-24T21:52:16.010000"],["2024-07-24T21:52:17.010000"],["2024-07-24T21:52:18.010000"],["2024-07-24T21:52:19.010000"],["2024-07-24T21:52:20.010000"],["2024-07-24T21:52:21.010000"],["2024-07-24T21:52:22.010000"],["2024-07-24T21:52:23.010000"],["2024-07-24T21:52:24.010000"],["2024-07-24T21:52:25.010000"],["2024-07-24T21:52:26.010000"],["2024-07-24T21:52:27.010000"],["2024-07-24T21:52:28.010000"],["2024-07-24T21:52:29.010000"],["2024-07-24T21:52:30.010000"],["2024-07-24T21:52:31.010000"],["2024-07-24T21:52:32.010000"],["2024-07-24T21:52:33.010000"],["2024-07-24T21:52:34.010000"],["2024-07-24T21:52:35.010000"],["2024-07-24T21:52:36.010000"],["2024-07-24T21:52:37.010000"],["2024-07-24T21:52:38.010000"],["2024-07-24T21:52:39.010000"],["2024-07-24T21:52:40.010000"],["2024-07-24T21:52:41.010000"],["2024-07-24T21:52:42.010000"],["2024-07-24T21:52:43.010000"],["2024-07-24T21:52:44.010000"],["2024-07-24T21:52:45.010000"],["2024-07-24T21:52:46.010000"],["2024-07-24T21:52:47.010000"],["2024-07-24T21:52:48.010000"],["2024-07-24T21:52:49.010000"],["2024-07-24T21:52:50.010000"],["2024-07-24T21:52:51.010000"],["2024-07-24T21:52:52.010000"],["2024-07-24T21:52:53.010000"],["2024-07-24T21:52:54.010000"],["2024-07-24T21:52:55.010000"],["2024-07-24T21:52:56.010000"],["2024-07-24T21:52:57.010000"],["2024-07-24T21:52:58.010000"],["2024-07-24T21:52:59.010000"],["2024-07-24T21:53:00.010000"],["2024-07-24T21:53:01.010000"],["2024-07-24T21:53:02.010000"],["2024-07-24T21:53:03.010000"],["2024-07-24T21:53:04.010000"],["2024-07-24T21:53:05.010000"],["2024-07-24T21:53:06.010000"],["2024-07-24T21:53:07.010000"],["2024-07-24T21:53:08.010000"],["2024-07-24T21:53:09.010000"],["2024-07-24T21:53:10.010000"],["2024-07-24T21:53:11.010000"],["2024-07-24T21:53:12.010000"],["2024-07-24T21:53:13.010000"],["2024-07-24T21:53:14.010000"],["2024-07-24T21:53:15.010000"],["2024-07-24T21:53:16.010000"],["2024-07-24T21:53:17.010000"],["2024-07-24T21:53:18.010000"],["2024-07-24T21:53:19.010000"],["2024-07-24T21:53:20.010000"],["2024-07-24T21:53:21.010000"],["2024-07-24T21:53:22.010000"],["2024-07-24T21:53:23.010000"],["2024-07-24T21:53:24.010000"],["2024-07-24T21:53:25.010000"],["2024-07-24T21:53:26.010000"],["2024-07-24T21:53:27.010000"],["2024-07-24T21:53:28.010000"],["2024-07-24T21:53:29.010000"],["2024-07-24T21:53:30.010000"],["2024-07-24T21:53:31.010000"],["2024-07-24T21:53:32.010000"],["2024-07-24T21:53:33.010000"],["2024-07-24T21:53:34.010000"],["2024-07-24T21:53:35.010000"],["2024-07-24T21:53:36.010000"],["2024-07-24T21:53:37.010000"],["2024-07-24T21:53:38.010000"],["2024-07-24T21:53:39.010000"],["2024-07-24T21:53:40.010000"],["2024-07-24T21:53:41.010000"],["2024-07-24T21:53:42.010000"],["2024-07-24T21:53:43.010000"],["2024-07-24T21:53:44.010000"],["2024-07-24T21:53:45.010000"],["2024-07-24T21:53:46.010000"],["2024-07-24T21:53:47.010000"],["2024-07-24T21:53:48.010000"],["2024-07-24T21:53:49.010000"],["2024-07-24T21:53:50.010000"],["2024-07-24T21:53:51.010000"],["2024-07-24T21:53:52.010000"],["2024-07-24T21:53:53.010000"],["2024-07-24T21:53:54.010000"],["2024-07-24T21:53:55.010000"],["2024-07-24T21:53:56.010000"],["2024-07-24T21:53:57.010000"],["2024-07-24T21:53:58.010000"],["2024-07-24T21:53:59.010000"],["2024-07-24T21:54:00.010000"],["2024-07-24T21:54:01.010000"],["2024-07-24T21:54:02.010000"],["2024-07-24T21:54:03.010000"],["2024-07-24T21:54:04.010000"],["2024-07-24T21:54:05.010000"],["2024-07-24T21:54:06.010000"],["2024-07-24T21:54:07.010000"],["2024-07-24T21:54:08.010000"],["2024-07-24T21:54:09.010000"],["2024-07-24T21:54:10.010000"],["2024-07-24T21:54:11.010000"],["2024-07-24T21:54:12.010000"],["2024-07-24T21:54:13.010000"],["2024-07-24T21:54:14.010000"],["2024-07-24T21:54:15.010000"],["2024-07-24T21:54:16.010000"],["2024-07-24T21:54:17.010000"],["2024-07-24T21:54:18.010000"],["2024-07-24T21:54:19.010000"],["2024-07-24T21:54:20.010000"],["2024-07-24T21:54:21.010000"],["2024-07-24T21:54:22.010000"],["2024-07-24T21:54:23.010000"],["2024-07-24T21:54:24.010000"],["2024-07-24T21:54:25.010000"],["2024-07-24T21:54:26.010000"],["2024-07-24T21:54:27.010000"],["2024-07-24T21:54:28.010000"],["2024-07-24T21:54:29.010000"],["2024-07-24T21:54:30.010000"],["2024-07-24T21:54:31.010000"],["2024-07-24T21:54:32.010000"],["2024-07-24T21:54:33.010000"],["2024-07-24T21:54:34.010000"],["2024-07-24T21:54:35.010000"],["2024-07-24T21:54:36.010000"],["2024-07-24T21:54:37.010000"],["2024-07-24T21:54:38.010000"],["2024-07-24T21:54:39.010000"],["2024-07-24T21:54:40.010000"],["2024-07-24T21:54:41.010000"],["2024-07-24T21:54:42.010000"],["2024-07-24T21:54:43.010000"],["2024-07-24T21:54:44.010000"],["2024-07-24T21:54:45.010000"],["2024-07-24T21:54:46.010000"],["2024-07-24T21:54:47.010000"],["2024-07-24T21:54:48.010000"],["2024-07-24T21:54:49.010000"],["2024-07-24T21:54:50.010000"],["2024-07-24T21:54:51.010000"],["2024-07-24T21:54:52.010000"],["2024-07-24T21:54:53.010000"],["2024-07-24T21:54:54.010000"],["2024-07-24T21:54:55.010000"],["2024-07-24T21:54:56.010000"],["2024-07-24T21:54:57.010000"],["2024-07-24T21:54:58.010000"],["2024-07-24T21:54:59.010000"],["2024-07-24T21:55:00.010000"],["2024-07-24T21:55:01.010000"],["2024-07-24T21:55:02.010000"],["2024-07-24T21:55:03.010000"],["2024-07-24T21:55:04.010000"],["2024-07-24T21:55:05.010000"],["2024-07-24T21:55:06.010000"],["2024-07-24T21:55:07.010000"],["2024-07-24T21:55:08.010000"],["2024-07-24T21:55:09.010000"],["2024-07-24T21:55:10.010000"],["2024-07-24T21:55:11.010000"],["2024-07-24T21:55:12.010000"],["2024-07-24T21:55:13.010000"],["2024-07-24T21:55:14.010000"],["2024-07-24T21:55:15.010000"],["2024-07-24T21:55:16.010000"],["2024-07-24T21:55:17.010000"],["2024-07-24T21:55:18.010000"],["2024-07-24T21:55:19.010000"],["2024-07-24T21:55:20.010000"],["2024-07-24T21:55:21.010000"],["2024-07-24T21:55:22.010000"],["2024-07-24T21:55:23.010000"],["2024-07-24T21:55:24.010000"],["2024-07-24T21:55:25.010000"],["2024-07-24T21:55:26.010000"],["2024-07-24T21:55:27.010000"],["2024-07-24T21:55:28.010000"],["2024-07-24T21:55:29.010000"],["2024-07-24T21:55:30.010000"],["2024-07-24T21:55:31.010000"],["2024-07-24T21:55:32.010000"],["2024-07-24T21:55:33.010000"],["2024-07-24T21:55:34.010000"],["2024-07-24T21:55:35.010000"],["2024-07-24T21:55:36.010000"],["2024-07-24T21:55:37.010000"],["2024-07-24T21:55:38.010000"],["2024-07-24T21:55:39.010000"],["2024-07-24T21:55:40.010000"],["2024-07-24T21:55:41.010000"],["2024-07-24T21:55:42.010000"],["2024-07-24T21:55:43.010000"],["2024-07-24T21:55:44.010000"],["2024-07-24T21:55:45.010000"],["2024-07-24T21:55:46.010000"],["2024-07-24T21:55:47.010000"],["2024-07-24T21:55:48.010000"],["2024-07-24T21:55:49.010000"],["2024-07-24T21:55:50.010000"],["2024-07-24T21:55:51.010000"],["2024-07-24T21:55:52.010000"],["2024-07-24T21:55:53.010000"],["2024-07-24T21:55:54.010000"],["2024-07-24T21:55:55.010000"],["2024-07-24T21:55:56.010000"],["2024-07-24T21:55:57.010000"],["2024-07-24T21:55:58.010000"],["2024-07-24T21:55:59.010000"],["2024-07-24T21:56:00.010000"],["2024-07-24T21:56:01.010000"],["2024-07-24T21:56:02.010000"],["2024-07-24T21:56:03.010000"],["2024-07-24T21:56:04.010000"],["2024-07-24T21:56:05.010000"],["2024-07-24T21:56:06.010000"],["2024-07-24T21:56:07.010000"],["2024-07-24T21:56:08.010000"],["2024-07-24T21:56:09.010000"],["2024-07-24T21:56:10.010000"],["2024-07-24T21:56:11.010000"],["2024-07-24T21:56:12.010000"],["2024-07-24T21:56:13.010000"],["2024-07-24T21:56:14.010000"],["2024-07-24T21:56:15.010000"],["2024-07-24T21:56:16.010000"],["2024-07-24T21:56:17.010000"],["2024-07-24T21:56:18.010000"],["2024-07-24T21:56:19.010000"],["2024-07-24T21:56:20.010000"],["2024-07-24T21:56:21.010000"],["2024-07-24T21:56:22.010000"],["2024-07-24T21:56:23.010000"],["2024-07-24T21:56:24.010000"],["2024-07-24T21:56:25.010000"],["2024-07-24T21:56:26.010000"],["2024-07-24T21:56:27.010000"],["2024-07-24T21:56:28.010000"],["2024-07-24T21:56:29.010000"],["2024-07-24T21:56:30.010000"],["2024-07-24T21:56:31.010000"],["2024-07-24T21:56:32.010000"],["2024-07-24T21:56:33.010000"],["2024-07-24T21:56:34.010000"],["2024-07-24T21:56:35.010000"],["2024-07-24T21:56:36.010000"],["2024-07-24T21:56:37.010000"],["2024-07-24T21:56:38.010000"],["2024-07-24T21:56:39.010000"],["2024-07-24T21:56:40.010000"],["2024-07-24T21:56:41.010000"],["2024-07-24T21:56:42.010000"],["2024-07-24T21:56:43.010000"],["2024-07-24T21:56:44.010000"],["2024-07-24T21:56:45.010000"],["2024-07-24T21:56:46.010000"],["2024-07-24T21:56:47.010000"],["2024-07-24T21:56:48.010000"],["2024-07-24T21:56:49.010000"],["2024-07-24T21:56:50.010000"],["2024-07-24T21:56:51.010000"],["2024-07-24T21:56:52.010000"],["2024-07-24T21:56:53.010000"],["2024-07-24T21:56:54.010000"],["2024-07-24T21:56:55.010000"],["2024-07-24T21:56:56.010000"],["2024-07-24T21:56:57.010000"],["2024-07-24T21:56:58.010000"],["2024-07-24T21:56:59.010000"],["2024-07-24T21:57:00.010000"],["2024-07-24T21:57:01.010000"],["2024-07-24T21:57:02.010000"],["2024-07-24T21:57:03.010000"],["2024-07-24T21:57:04.010000"],["2024-07-24T21:57:05.010000"],["2024-07-24T21:57:06.010000"],["2024-07-24T21:57:07.010000"],["2024-07-24T21:57:08.010000"],["2024-07-24T21:57:09.010000"],["2024-07-24T21:57:10.010000"],["2024-07-24T21:57:11.010000"],["2024-07-24T21:57:12.010000"],["2024-07-24T21:57:13.010000"],["2024-07-24T21:57:14.010000"],["2024-07-24T21:57:15.010000"],["2024-07-24T21:57:16.010000"],["2024-07-24T21:57:17.010000"],["2024-07-24T21:57:18.010000"],["2024-07-24T21:57:19.010000"],["2024-07-24T21:57:20.010000"],["2024-07-24T21:57:21.010000"],["2024-07-24T21:57:22.010000"],["2024-07-24T21:57:23.010000"],["2024-07-24T21:57:24.010000"],["2024-07-24T21:57:25.010000"],["2024-07-24T21:57:26.010000"],["2024-07-24T21:57:27.010000"],["2024-07-24T21:57:28.010000"],["2024-07-24T21:57:29.010000"],["2024-07-24T21:57:30.010000"],["2024-07-24T21:57:31.010000"],["2024-07-24T21:57:32.010000"],["2024-07-24T21:57:33.010000"],["2024-07-24T21:57:34.010000"],["2024-07-24T21:57:35.010000"],["2024-07-24T21:57:36.010000"],["2024-07-24T21:57:37.010000"],["2024-07-24T21:57:38.010000"],["2024-07-24T21:57:39.010000"],["2024-07-24T21:57:40.010000"],["2024-07-24T21:57:41.010000"],["2024-07-24T21:57:42.010000"],["2024-07-24T21:57:43.010000"],["2024-07-24T21:57:44.010000"],["2024-07-24T21:57:45.010000"],["2024-07-24T21:57:46.010000"],["2024-07-24T21:57:47.010000"],["2024-07-24T21:57:48.010000"],["2024-07-24T21:57:49.010000"],["2024-07-24T21:57:50.010000"],["2024-07-24T21:57:51.010000"],["2024-07-24T21:57:52.010000"],["2024-07-24T21:57:53.010000"],["2024-07-24T21:57:54.010000"],["2024-07-24T21:57:55.010000"],["2024-07-24T21:57:56.010000"],["2024-07-24T21:57:57.010000"],["2024-07-24T21:57:58.010000"],["2024-07-24T21:57:59.010000"],["2024-07-24T21:58:00.010000"],["2024-07-24T21:58:01.010000"],["2024-07-24T21:58:02.010000"],["2024-07-24T21:58:03.010000"],["2024-07-24T21:58:04.010000"],["2024-07-24T21:58:05.010000"],["2024-07-24T21:58:06.010000"],["2024-07-24T21:58:07.010000"],["2024-07-24T21:58:08.010000"],["2024-07-24T21:58:09.010000"],["2024-07-24T21:58:10.010000"],["2024-07-24T21:58:11.010000"],["2024-07-24T21:58:12.010000"],["2024-07-24T21:58:13.010000"],["2024-07-24T21:58:14.010000"],["2024-07-24T21:58:15.010000"],["2024-07-24T21:58:16.010000"],["2024-07-24T21:58:17.010000"],["2024-07-24T21:58:18.010000"],["2024-07-24T21:58:19.010000"],["2024-07-24T21:58:20.010000"],["2024-07-24T21:58:21.010000"],["2024-07-24T21:58:22.010000"],["2024-07-24T21:58:23.010000"],["2024-07-24T21:58:24.010000"],["2024-07-24T21:58:25.010000"],["2024-07-24T21:58:26.010000"],["2024-07-24T21:58:27.010000"],["2024-07-24T21:58:28.010000"],["2024-07-24T21:58:29.010000"],["2024-07-24T21:58:30.010000"],["2024-07-24T21:58:31.010000"],["2024-07-24T21:58:32.010000"],["2024-07-24T21:58:33.010000"],["2024-07-24T21:58:34.010000"],["2024-07-24T21:58:35.010000"],["2024-07-24T21:58:36.010000"],["2024-07-24T21:58:37.010000"],["2024-07-24T21:58:38.010000"],["2024-07-24T21:58:39.010000"],["2024-07-24T21:58:40.010000"],["2024-07-24T21:58:41.010000"],["2024-07-24T21:58:42.010000"],["2024-07-24T21:58:43.010000"],["2024-07-24T21:58:44.010000"],["2024-07-24T21:58:45.010000"],["2024-07-24T21:58:46.010000"],["2024-07-24T21:58:47.010000"],["2024-07-24T21:58:48.010000"],["2024-07-24T21:58:49.010000"],["2024-07-24T21:58:50.010000"],["2024-07-24T21:58:51.010000"],["2024-07-24T21:58:52.010000"],["2024-07-24T21:58:53.010000"],["2024-07-24T21:58:54.010000"],["2024-07-24T21:58:55.010000"],["2024-07-24T21:58:56.010000"],["2024-07-24T21:58:57.010000"],["2024-07-24T21:58:58.010000"],["2024-07-24T21:58:59.010000"],["2024-07-24T21:59:00.010000"],["2024-07-24T21:59:01.010000"],["2024-07-24T21:59:02.010000"],["2024-07-24T21:59:03.010000"],["2024-07-24T21:59:04.010000"],["2024-07-24T21:59:05.010000"],["2024-07-24T21:59:06.010000"],["2024-07-24T21:59:07.010000"],["2024-07-24T21:59:08.010000"],["2024-07-24T21:59:09.010000"],["2024-07-24T21:59:10.010000"],["2024-07-24T21:59:11.010000"],["2024-07-24T21:59:12.010000"],["2024-07-24T21:59:13.010000"],["2024-07-24T21:59:14.010000"],["2024-07-24T21:59:15.010000"],["2024-07-24T21:59:16.010000"],["2024-07-24T21:59:17.010000"],["2024-07-24T21:59:18.010000"],["2024-07-24T21:59:19.010000"],["2024-07-24T21:59:20.010000"],["2024-07-24T21:59:21.010000"],["2024-07-24T21:59:22.010000"],["2024-07-24T21:59:23.010000"],["2024-07-24T21:59:24.010000"],["2024-07-24T21:59:25.010000"],["2024-07-24T21:59:26.010000"],["2024-07-24T21:59:27.010000"],["2024-07-24T21:59:28.010000"],["2024-07-24T21:59:29.010000"],["2024-07-24T21:59:30.010000"],["2024-07-24T21:59:31.010000"],["2024-07-24T21:59:32.010000"],["2024-07-24T21:59:33.010000"],["2024-07-24T21:59:34.010000"],["2024-07-24T21:59:35.010000"],["2024-07-24T21:59:36.010000"],["2024-07-24T21:59:37.010000"],["2024-07-24T21:59:38.010000"],["2024-07-24T21:59:39.010000"],["2024-07-24T21:59:40.010000"],["2024-07-24T21:59:41.010000"],["2024-07-24T21:59:42.010000"],["2024-07-24T21:59:43.010000"],["2024-07-24T21:59:44.010000"],["2024-07-24T21:59:45.010000"],["2024-07-24T21:59:46.010000"],["2024-07-24T21:59:47.010000"],["2024-07-24T21:59:48.010000"],["2024-07-24T21:59:49.010000"],["2024-07-24T21:59:50.010000"],["2024-07-24T21:59:51.010000"],["2024-07-24T21:59:52.010000"],["2024-07-24T21:59:53.010000"],["2024-07-24T21:59:54.010000"],["2024-07-24T21:59:55.010000"],["2024-07-24T21:59:56.010000"],["2024-07-24T21:59:57.010000"],["2024-07-24T21:59:58.010000"],["2024-07-24T21:59:59.010000"],["2024-07-24T22:00:00.010000"],["2024-07-24T22:00:01.010000"],["2024-07-24T22:00:02.010000"],["2024-07-24T22:00:03.010000"],["2024-07-24T22:00:04.010000"],["2024-07-24T22:00:05.010000"],["2024-07-24T22:00:06.010000"],["2024-07-24T22:00:07.010000"],["2024-07-24T22:00:08.010000"],["2024-07-24T22:00:09.010000"],["2024-07-24T22:00:10.010000"],["2024-07-24T22:00:11.010000"],["2024-07-24T22:00:12.010000"],["2024-07-24T22:00:13.010000"],["2024-07-24T22:00:14.010000"],["2024-07-24T22:00:15.010000"],["2024-07-24T22:00:16.010000"],["2024-07-24T22:00:17.010000"],["2024-07-24T22:00:18.010000"],["2024-07-24T22:00:19.010000"],["2024-07-24T22:00:20.010000"],["2024-07-24T22:00:21.010000"],["2024-07-24T22:00:22.010000"],["2024-07-24T22:00:23.010000"],["2024-07-24T22:00:24.010000"],["2024-07-24T22:00:25.010000"],["2024-07-24T22:00:26.010000"],["2024-07-24T22:00:27.010000"],["2024-07-24T22:00:28.010000"],["2024-07-24T22:00:29.010000"],["2024-07-24T22:00:30.010000"],["2024-07-24T22:00:31.010000"],["2024-07-24T22:00:32.010000"],["2024-07-24T22:00:33.010000"],["2024-07-24T22:00:34.010000"],["2024-07-24T22:00:35.010000"],["2024-07-24T22:00:36.010000"],["2024-07-24T22:00:37.010000"],["2024-07-24T22:00:38.010000"],["2024-07-24T22:00:39.010000"],["2024-07-24T22:00:40.010000"],["2024-07-24T22:00:41.010000"],["2024-07-24T22:00:42.010000"],["2024-07-24T22:00:43.010000"],["2024-07-24T22:00:44.010000"],["2024-07-24T22:00:45.010000"],["2024-07-24T22:00:46.010000"],["2024-07-24T22:00:47.010000"],["2024-07-24T22:00:48.010000"],["2024-07-24T22:00:49.010000"],["2024-07-24T22:00:50.010000"],["2024-07-24T22:00:51.010000"],["2024-07-24T22:00:52.010000"],["2024-07-24T22:00:53.010000"],["2024-07-24T22:00:54.010000"],["2024-07-24T22:00:55.010000"],["2024-07-24T22:00:56.010000"],["2024-07-24T22:00:57.010000"],["2024-07-24T22:00:58.010000"],["2024-07-24T22:00:59.010000"],["2024-07-24T22:01:00.010000"],["2024-07-24T22:01:01.010000"],["2024-07-24T22:01:02.010000"],["2024-07-24T22:01:03.010000"],["2024-07-24T22:01:04.010000"],["2024-07-24T22:01:05.010000"],["2024-07-24T22:01:06.010000"],["2024-07-24T22:01:07.010000"],["2024-07-24T22:01:08.010000"],["2024-07-24T22:01:09.010000"],["2024-07-24T22:01:10.010000"],["2024-07-24T22:01:11.010000"],["2024-07-24T22:01:12.010000"],["2024-07-24T22:01:13.010000"],["2024-07-24T22:01:14.010000"],["2024-07-24T22:01:15.010000"],["2024-07-24T22:01:16.010000"],["2024-07-24T22:01:17.010000"],["2024-07-24T22:01:18.010000"],["2024-07-24T22:01:19.010000"],["2024-07-24T22:01:20.010000"],["2024-07-24T22:01:21.010000"],["2024-07-24T22:01:22.010000"],["2024-07-24T22:01:23.010000"],["2024-07-24T22:01:24.010000"],["2024-07-24T22:01:25.010000"],["2024-07-24T22:01:26.010000"],["2024-07-24T22:01:27.010000"],["2024-07-24T22:01:28.010000"],["2024-07-24T22:01:29.010000"],["2024-07-24T22:01:30.010000"],["2024-07-24T22:01:31.010000"],["2024-07-24T22:01:32.010000"],["2024-07-24T22:01:33.010000"],["2024-07-24T22:01:34.010000"],["2024-07-24T22:01:35.010000"],["2024-07-24T22:01:36.010000"],["2024-07-24T22:01:37.010000"],["2024-07-24T22:01:38.010000"],["2024-07-24T22:01:39.010000"],["2024-07-24T22:01:40.010000"],["2024-07-24T22:01:41.010000"],["2024-07-24T22:01:42.010000"],["2024-07-24T22:01:43.010000"],["2024-07-24T22:01:44.010000"],["2024-07-24T22:01:45.010000"],["2024-07-24T22:01:46.010000"],["2024-07-24T22:01:47.010000"],["2024-07-24T22:01:48.010000"],["2024-07-24T22:01:49.010000"],["2024-07-24T22:01:50.010000"],["2024-07-24T22:01:51.010000"],["2024-07-24T22:01:52.010000"],["2024-07-24T22:01:53.010000"],["2024-07-24T22:01:54.010000"],["2024-07-24T22:01:55.010000"],["2024-07-24T22:01:56.010000"],["2024-07-24T22:01:57.010000"],["2024-07-24T22:01:58.010000"],["2024-07-24T22:01:59.010000"],["2024-07-24T22:02:00.010000"],["2024-07-24T22:02:01.010000"],["2024-07-24T22:02:02.010000"],["2024-07-24T22:02:03.010000"],["2024-07-24T22:02:04.010000"],["2024-07-24T22:02:05.010000"],["2024-07-24T22:02:06.010000"],["2024-07-24T22:02:07.010000"],["2024-07-24T22:02:08.010000"],["2024-07-24T22:02:09.010000"],["2024-07-24T22:02:10.010000"],["2024-07-24T22:02:11.010000"],["2024-07-24T22:02:12.010000"],["2024-07-24T22:02:13.010000"],["2024-07-24T22:02:14.010000"],["2024-07-24T22:02:15.010000"],["2024-07-24T22:02:16.010000"],["2024-07-24T22:02:17.010000"],["2024-07-24T22:02:18.010000"],["2024-07-24T22:02:19.010000"],["2024-07-24T22:02:20.010000"],["2024-07-24T22:02:21.010000"],["2024-07-24T22:02:22.010000"],["2024-07-24T22:02:23.010000"],["2024-07-24T22:02:24.010000"],["2024-07-24T22:02:25.010000"],["2024-07-24T22:02:26.010000"],["2024-07-24T22:02:27.010000"],["2024-07-24T22:02:28.010000"],["2024-07-24T22:02:29.010000"],["2024-07-24T22:02:30.010000"],["2024-07-24T22:02:31.010000"],["2024-07-24T22:02:32.010000"],["2024-07-24T22:02:33.010000"],["2024-07-24T22:02:34.010000"],["2024-07-24T22:02:35.010000"],["2024-07-24T22:02:36.010000"],["2024-07-24T22:02:37.010000"],["2024-07-24T22:02:38.010000"],["2024-07-24T22:02:39.010000"],["2024-07-24T22:02:40.010000"],["2024-07-24T22:02:41.010000"],["2024-07-24T22:02:42.010000"],["2024-07-24T22:02:43.010000"],["2024-07-24T22:02:44.010000"],["2024-07-24T22:02:45.010000"],["2024-07-24T22:02:46.010000"],["2024-07-24T22:02:47.010000"],["2024-07-24T22:02:48.010000"],["2024-07-24T22:02:49.010000"],["2024-07-24T22:02:50.010000"],["2024-07-24T22:02:51.010000"],["2024-07-24T22:02:52.010000"],["2024-07-24T22:02:53.010000"],["2024-07-24T22:02:54.010000"],["2024-07-24T22:02:55.010000"],["2024-07-24T22:02:56.010000"],["2024-07-24T22:02:57.010000"],["2024-07-24T22:02:58.010000"],["2024-07-24T22:02:59.010000"],["2024-07-24T22:03:00.010000"],["2024-07-24T22:03:01.010000"],["2024-07-24T22:03:02.010000"],["2024-07-24T22:03:03.010000"],["2024-07-24T22:03:04.010000"],["2024-07-24T22:03:05.010000"],["2024-07-24T22:03:06.010000"],["2024-07-24T22:03:07.010000"],["2024-07-24T22:03:08.010000"],["2024-07-24T22:03:09.010000"],["2024-07-24T22:03:10.010000"],["2024-07-24T22:03:11.010000"],["2024-07-24T22:03:12.010000"],["2024-07-24T22:03:13.010000"],["2024-07-24T22:03:14.010000"],["2024-07-24T22:03:15.010000"],["2024-07-24T22:03:16.010000"],["2024-07-24T22:03:17.010000"],["2024-07-24T22:03:18.010000"],["2024-07-24T22:03:19.010000"],["2024-07-24T22:03:20.010000"],["2024-07-24T22:03:21.010000"],["2024-07-24T22:03:22.010000"],["2024-07-24T22:03:23.010000"],["2024-07-24T22:03:24.010000"],["2024-07-24T22:03:25.010000"],["2024-07-24T22:03:26.010000"],["2024-07-24T22:03:27.010000"],["2024-07-24T22:03:28.010000"],["2024-07-24T22:03:29.010000"],["2024-07-24T22:03:30.010000"],["2024-07-24T22:03:31.010000"],["2024-07-24T22:03:32.010000"],["2024-07-24T22:03:33.010000"],["2024-07-24T22:03:34.010000"],["2024-07-24T22:03:35.010000"],["2024-07-24T22:03:36.010000"],["2024-07-24T22:03:37.010000"],["2024-07-24T22:03:38.010000"],["2024-07-24T22:03:39.010000"],["2024-07-24T22:03:40.010000"],["2024-07-24T22:03:41.010000"],["2024-07-24T22:03:42.010000"],["2024-07-24T22:03:43.010000"],["2024-07-24T22:03:44.010000"],["2024-07-24T22:03:45.010000"],["2024-07-24T22:03:46.010000"],["2024-07-24T22:03:47.010000"],["2024-07-24T22:03:48.010000"],["2024-07-24T22:03:49.010000"],["2024-07-24T22:03:50.010000"],["2024-07-24T22:03:51.010000"],["2024-07-24T22:03:52.010000"],["2024-07-24T22:03:53.010000"],["2024-07-24T22:03:54.010000"],["2024-07-24T22:03:55.010000"],["2024-07-24T22:03:56.010000"],["2024-07-24T22:03:57.010000"],["2024-07-24T22:03:58.010000"],["2024-07-24T22:03:59.010000"],["2024-07-24T22:04:00.010000"],["2024-07-24T22:04:01.010000"],["2024-07-24T22:04:02.010000"],["2024-07-24T22:04:03.010000"],["2024-07-24T22:04:04.010000"],["2024-07-24T22:04:05.010000"],["2024-07-24T22:04:06.010000"],["2024-07-24T22:04:07.010000"],["2024-07-24T22:04:08.010000"],["2024-07-24T22:04:09.010000"],["2024-07-24T22:04:10.010000"],["2024-07-24T22:04:11.010000"],["2024-07-24T22:04:12.010000"],["2024-07-24T22:04:13.010000"],["2024-07-24T22:04:14.010000"],["2024-07-24T22:04:15.010000"],["2024-07-24T22:04:16.010000"],["2024-07-24T22:04:17.010000"],["2024-07-24T22:04:18.010000"],["2024-07-24T22:04:19.010000"],["2024-07-24T22:04:20.010000"],["2024-07-24T22:04:21.010000"],["2024-07-24T22:04:22.010000"],["2024-07-24T22:04:23.010000"],["2024-07-24T22:04:24.010000"],["2024-07-24T22:04:25.010000"],["2024-07-24T22:04:26.010000"],["2024-07-24T22:04:27.010000"],["2024-07-24T22:04:28.010000"],["2024-07-24T22:04:29.010000"],["2024-07-24T22:04:30.010000"],["2024-07-24T22:04:31.010000"],["2024-07-24T22:04:32.010000"],["2024-07-24T22:04:33.010000"],["2024-07-24T22:04:34.010000"],["2024-07-24T22:04:35.010000"],["2024-07-24T22:04:36.010000"],["2024-07-24T22:04:37.010000"],["2024-07-24T22:04:38.010000"],["2024-07-24T22:04:39.010000"],["2024-07-24T22:04:40.010000"],["2024-07-24T22:04:41.010000"],["2024-07-24T22:04:42.010000"],["2024-07-24T22:04:43.010000"],["2024-07-24T22:04:44.010000"],["2024-07-24T22:04:45.010000"],["2024-07-24T22:04:46.010000"],["2024-07-24T22:04:47.010000"],["2024-07-24T22:04:48.010000"],["2024-07-24T22:04:49.010000"],["2024-07-24T22:04:50.010000"],["2024-07-24T22:04:51.010000"],["2024-07-24T22:04:52.010000"],["2024-07-24T22:04:53.010000"],["2024-07-24T22:04:54.010000"],["2024-07-24T22:04:55.010000"],["2024-07-24T22:04:56.010000"],["2024-07-24T22:04:57.010000"],["2024-07-24T22:04:58.010000"],["2024-07-24T22:04:59.010000"],["2024-07-24T22:05:00.010000"],["2024-07-24T22:05:01.010000"],["2024-07-24T22:05:02.010000"],["2024-07-24T22:05:03.010000"],["2024-07-24T22:05:04.010000"],["2024-07-24T22:05:05.010000"],["2024-07-24T22:05:06.010000"],["2024-07-24T22:05:07.010000"],["2024-07-24T22:05:08.010000"],["2024-07-24T22:05:09.010000"],["2024-07-24T22:05:10.010000"],["2024-07-24T22:05:11.010000"],["2024-07-24T22:05:12.010000"],["2024-07-24T22:05:13.010000"],["2024-07-24T22:05:14.010000"],["2024-07-24T22:05:15.010000"],["2024-07-24T22:05:16.010000"],["2024-07-24T22:05:17.010000"],["2024-07-24T22:05:18.010000"],["2024-07-24T22:05:19.010000"],["2024-07-24T22:05:20.010000"],["2024-07-24T22:05:21.010000"],["2024-07-24T22:05:22.010000"],["2024-07-24T22:05:23.010000"],["2024-07-24T22:05:24.010000"],["2024-07-24T22:05:25.010000"],["2024-07-24T22:05:26.010000"],["2024-07-24T22:05:27.010000"],["2024-07-24T22:05:28.010000"],["2024-07-24T22:05:29.010000"],["2024-07-24T22:05:30.010000"],["2024-07-24T22:05:31.010000"],["2024-07-24T22:05:32.010000"],["2024-07-24T22:05:33.010000"],["2024-07-24T22:05:34.010000"],["2024-07-24T22:05:35.010000"],["2024-07-24T22:05:36.010000"],["2024-07-24T22:05:37.010000"],["2024-07-24T22:05:38.010000"],["2024-07-24T22:05:39.010000"],["2024-07-24T22:05:40.010000"],["2024-07-24T22:05:41.010000"],["2024-07-24T22:05:42.010000"],["2024-07-24T22:05:43.010000"],["2024-07-24T22:05:44.010000"],["2024-07-24T22:05:45.010000"],["2024-07-24T22:05:46.010000"],["2024-07-24T22:05:47.010000"],["2024-07-24T22:05:48.010000"],["2024-07-24T22:05:49.010000"],["2024-07-24T22:05:50.010000"],["2024-07-24T22:05:51.010000"],["2024-07-24T22:05:52.010000"],["2024-07-24T22:05:53.010000"],["2024-07-24T22:05:54.010000"],["2024-07-24T22:05:55.010000"],["2024-07-24T22:05:56.010000"],["2024-07-24T22:05:57.010000"],["2024-07-24T22:05:58.010000"],["2024-07-24T22:05:59.010000"],["2024-07-24T22:06:00.010000"],["2024-07-24T22:06:01.010000"],["2024-07-24T22:06:02.010000"],["2024-07-24T22:06:03.010000"],["2024-07-24T22:06:04.010000"],["2024-07-24T22:06:05.010000"],["2024-07-24T22:06:06.010000"],["2024-07-24T22:06:07.010000"],["2024-07-24T22:06:08.010000"],["2024-07-24T22:06:09.010000"],["2024-07-24T22:06:10.010000"],["2024-07-24T22:06:11.010000"],["2024-07-24T22:06:12.010000"],["2024-07-24T22:06:13.010000"],["2024-07-24T22:06:14.010000"],["2024-07-24T22:06:15.010000"],["2024-07-24T22:06:16.010000"],["2024-07-24T22:06:17.010000"],["2024-07-24T22:06:18.010000"],["2024-07-24T22:06:19.010000"],["2024-07-24T22:06:20.010000"],["2024-07-24T22:06:21.010000"],["2024-07-24T22:06:22.010000"],["2024-07-24T22:06:23.010000"],["2024-07-24T22:06:24.010000"],["2024-07-24T22:06:25.010000"],["2024-07-24T22:06:26.010000"],["2024-07-24T22:06:27.010000"],["2024-07-24T22:06:28.010000"],["2024-07-24T22:06:29.010000"],["2024-07-24T22:06:30.010000"],["2024-07-24T22:06:31.010000"],["2024-07-24T22:06:32.010000"],["2024-07-24T22:06:33.010000"],["2024-07-24T22:06:34.010000"],["2024-07-24T22:06:35.010000"],["2024-07-24T22:06:36.010000"],["2024-07-24T22:06:37.010000"],["2024-07-24T22:06:38.010000"],["2024-07-24T22:06:39.010000"],["2024-07-24T22:06:40.010000"],["2024-07-24T22:06:41.010000"],["2024-07-24T22:06:42.010000"],["2024-07-24T22:06:43.010000"],["2024-07-24T22:06:44.010000"],["2024-07-24T22:06:45.010000"],["2024-07-24T22:06:46.010000"],["2024-07-24T22:06:47.010000"],["2024-07-24T22:06:48.010000"],["2024-07-24T22:06:49.010000"],["2024-07-24T22:06:50.010000"],["2024-07-24T22:06:51.010000"],["2024-07-24T22:06:52.010000"],["2024-07-24T22:06:53.010000"],["2024-07-24T22:06:54.010000"],["2024-07-24T22:06:55.010000"],["2024-07-24T22:06:56.010000"],["2024-07-24T22:06:57.010000"],["2024-07-24T22:06:58.010000"],["2024-07-24T22:06:59.010000"],["2024-07-24T22:07:00.010000"],["2024-07-24T22:07:01.010000"],["2024-07-24T22:07:02.010000"],["2024-07-24T22:07:03.010000"],["2024-07-24T22:07:04.010000"],["2024-07-24T22:07:05.010000"],["2024-07-24T22:07:06.010000"],["2024-07-24T22:07:07.010000"],["2024-07-24T22:07:08.010000"],["2024-07-24T22:07:09.010000"],["2024-07-24T22:07:10.010000"],["2024-07-24T22:07:11.010000"],["2024-07-24T22:07:12.010000"],["2024-07-24T22:07:13.010000"],["2024-07-24T22:07:14.010000"],["2024-07-24T22:07:15.010000"],["2024-07-24T22:07:16.010000"],["2024-07-24T22:07:17.010000"],["2024-07-24T22:07:18.010000"],["2024-07-24T22:07:19.010000"],["2024-07-24T22:07:20.010000"],["2024-07-24T22:07:21.010000"],["2024-07-24T22:07:22.010000"],["2024-07-24T22:07:23.010000"],["2024-07-24T22:07:24.010000"],["2024-07-24T22:07:25.010000"],["2024-07-24T22:07:26.010000"],["2024-07-24T22:07:27.010000"],["2024-07-24T22:07:28.010000"],["2024-07-24T22:07:29.010000"],["2024-07-24T22:07:30.010000"],["2024-07-24T22:07:31.010000"],["2024-07-24T22:07:32.010000"],["2024-07-24T22:07:33.010000"],["2024-07-24T22:07:34.010000"],["2024-07-24T22:07:35.010000"],["2024-07-24T22:07:36.010000"],["2024-07-24T22:07:37.010000"],["2024-07-24T22:07:38.010000"],["2024-07-24T22:07:39.010000"],["2024-07-24T22:07:40.010000"],["2024-07-24T22:07:41.010000"],["2024-07-24T22:07:42.010000"],["2024-07-24T22:07:43.010000"],["2024-07-24T22:07:44.010000"],["2024-07-24T22:07:45.010000"],["2024-07-24T22:07:46.010000"],["2024-07-24T22:07:47.010000"],["2024-07-24T22:07:48.010000"],["2024-07-24T22:07:49.010000"],["2024-07-24T22:07:50.010000"],["2024-07-24T22:07:51.010000"],["2024-07-24T22:07:52.010000"],["2024-07-24T22:07:53.010000"],["2024-07-24T22:07:54.010000"],["2024-07-24T22:07:55.010000"],["2024-07-24T22:07:56.010000"],["2024-07-24T22:07:57.010000"],["2024-07-24T22:07:58.010000"],["2024-07-24T22:07:59.010000"],["2024-07-24T22:08:00.010000"],["2024-07-24T22:08:01.010000"],["2024-07-24T22:08:02.010000"],["2024-07-24T22:08:03.010000"],["2024-07-24T22:08:04.010000"],["2024-07-24T22:08:05.010000"],["2024-07-24T22:08:06.010000"],["2024-07-24T22:08:07.010000"],["2024-07-24T22:08:08.010000"],["2024-07-24T22:08:09.010000"],["2024-07-24T22:08:10.010000"],["2024-07-24T22:08:11.010000"],["2024-07-24T22:08:12.010000"],["2024-07-24T22:08:13.010000"],["2024-07-24T22:08:14.010000"],["2024-07-24T22:08:15.010000"],["2024-07-24T22:08:16.010000"],["2024-07-24T22:08:17.010000"],["2024-07-24T22:08:18.010000"],["2024-07-24T22:08:19.010000"],["2024-07-24T22:08:20.010000"],["2024-07-24T22:08:21.010000"],["2024-07-24T22:08:22.010000"],["2024-07-24T22:08:23.010000"],["2024-07-24T22:08:24.010000"],["2024-07-24T22:08:25.010000"],["2024-07-24T22:08:26.010000"],["2024-07-24T22:08:27.010000"],["2024-07-24T22:08:28.010000"],["2024-07-24T22:08:29.010000"],["2024-07-24T22:08:30.010000"],["2024-07-24T22:08:31.010000"],["2024-07-24T22:08:32.010000"],["2024-07-24T22:08:33.010000"],["2024-07-24T22:08:34.010000"],["2024-07-24T22:08:35.010000"],["2024-07-24T22:08:36.010000"],["2024-07-24T22:08:37.010000"],["2024-07-24T22:08:38.010000"],["2024-07-24T22:08:39.010000"],["2024-07-24T22:08:40.010000"],["2024-07-24T22:08:41.010000"],["2024-07-24T22:08:42.010000"],["2024-07-24T22:08:43.010000"],["2024-07-24T22:08:44.010000"],["2024-07-24T22:08:45.010000"],["2024-07-24T22:08:46.010000"],["2024-07-24T22:08:47.010000"],["2024-07-24T22:08:48.010000"],["2024-07-24T22:08:49.010000"],["2024-07-24T22:08:50.010000"],["2024-07-24T22:08:51.010000"],["2024-07-24T22:08:52.010000"],["2024-07-24T22:08:53.010000"],["2024-07-24T22:08:54.010000"],["2024-07-24T22:08:55.010000"],["2024-07-24T22:08:56.010000"],["2024-07-24T22:08:57.010000"],["2024-07-24T22:08:58.010000"],["2024-07-24T22:08:59.010000"],["2024-07-24T22:09:00.010000"],["2024-07-24T22:09:01.010000"],["2024-07-24T22:09:02.010000"],["2024-07-24T22:09:03.010000"],["2024-07-24T22:09:04.010000"],["2024-07-24T22:09:05.010000"],["2024-07-24T22:09:06.010000"],["2024-07-24T22:09:07.010000"],["2024-07-24T22:09:08.010000"],["2024-07-24T22:09:09.010000"],["2024-07-24T22:09:10.010000"],["2024-07-24T22:09:11.010000"],["2024-07-24T22:09:12.010000"],["2024-07-24T22:09:13.010000"],["2024-07-24T22:09:14.010000"],["2024-07-24T22:09:15.010000"],["2024-07-24T22:09:16.010000"],["2024-07-24T22:09:17.010000"],["2024-07-24T22:09:18.010000"],["2024-07-24T22:09:19.010000"],["2024-07-24T22:09:20.010000"],["2024-07-24T22:09:21.010000"],["2024-07-24T22:09:22.010000"],["2024-07-24T22:09:23.010000"],["2024-07-24T22:09:24.010000"],["2024-07-24T22:09:25.010000"],["2024-07-24T22:09:26.010000"],["2024-07-24T22:09:27.010000"],["2024-07-24T22:09:28.010000"],["2024-07-24T22:09:29.010000"],["2024-07-24T22:09:30.010000"],["2024-07-24T22:09:31.010000"],["2024-07-24T22:09:32.010000"],["2024-07-24T22:09:33.010000"],["2024-07-24T22:09:34.010000"],["2024-07-24T22:09:35.010000"],["2024-07-24T22:09:36.010000"],["2024-07-24T22:09:37.010000"],["2024-07-24T22:09:38.010000"],["2024-07-24T22:09:39.010000"],["2024-07-24T22:09:40.010000"],["2024-07-24T22:09:41.010000"],["2024-07-24T22:09:42.010000"],["2024-07-24T22:09:43.010000"],["2024-07-24T22:09:44.010000"],["2024-07-24T22:09:45.010000"],["2024-07-24T22:09:46.010000"],["2024-07-24T22:09:47.010000"],["2024-07-24T22:09:48.010000"],["2024-07-24T22:09:49.010000"],["2024-07-24T22:09:50.010000"],["2024-07-24T22:09:51.010000"],["2024-07-24T22:09:52.010000"],["2024-07-24T22:09:53.010000"],["2024-07-24T22:09:54.010000"],["2024-07-24T22:09:55.010000"],["2024-07-24T22:09:56.010000"],["2024-07-24T22:09:57.010000"],["2024-07-24T22:09:58.010000"],["2024-07-24T22:09:59.010000"],["2024-07-24T22:10:00.010000"],["2024-07-24T22:10:01.010000"],["2024-07-24T22:10:02.010000"],["2024-07-24T22:10:03.010000"],["2024-07-24T22:10:04.010000"],["2024-07-24T22:10:05.010000"],["2024-07-24T22:10:06.010000"],["2024-07-24T22:10:07.010000"],["2024-07-24T22:10:08.010000"],["2024-07-24T22:10:09.010000"],["2024-07-24T22:10:10.010000"],["2024-07-24T22:10:11.010000"],["2024-07-24T22:10:12.010000"],["2024-07-24T22:10:13.010000"],["2024-07-24T22:10:14.010000"],["2024-07-24T22:10:15.010000"],["2024-07-24T22:10:16.010000"],["2024-07-24T22:10:17.010000"],["2024-07-24T22:10:18.010000"],["2024-07-24T22:10:19.010000"],["2024-07-24T22:10:20.010000"],["2024-07-24T22:10:21.010000"],["2024-07-24T22:10:22.010000"],["2024-07-24T22:10:23.010000"],["2024-07-24T22:10:24.010000"],["2024-07-24T22:10:25.010000"],["2024-07-24T22:10:26.010000"],["2024-07-24T22:10:27.010000"],["2024-07-24T22:10:28.010000"],["2024-07-24T22:10:29.010000"],["2024-07-24T22:10:30.010000"],["2024-07-24T22:10:31.010000"],["2024-07-24T22:10:32.010000"],["2024-07-24T22:10:33.010000"],["2024-07-24T22:10:34.010000"],["2024-07-24T22:10:35.010000"],["2024-07-24T22:10:36.010000"],["2024-07-24T22:10:37.010000"],["2024-07-24T22:10:38.010000"],["2024-07-24T22:10:39.010000"],["2024-07-24T22:10:40.010000"],["2024-07-24T22:10:41.010000"],["2024-07-24T22:10:42.010000"],["2024-07-24T22:10:43.010000"],["2024-07-24T22:10:44.010000"],["2024-07-24T22:10:45.010000"],["2024-07-24T22:10:46.010000"],["2024-07-24T22:10:47.010000"],["2024-07-24T22:10:48.010000"],["2024-07-24T22:10:49.010000"],["2024-07-24T22:10:50.010000"],["2024-07-24T22:10:51.010000"],["2024-07-24T22:10:52.010000"],["2024-07-24T22:10:53.010000"],["2024-07-24T22:10:54.010000"],["2024-07-24T22:10:55.010000"],["2024-07-24T22:10:56.010000"],["2024-07-24T22:10:57.010000"],["2024-07-24T22:10:58.010000"],["2024-07-24T22:10:59.010000"],["2024-07-24T22:11:00.010000"],["2024-07-24T22:11:01.010000"],["2024-07-24T22:11:02.010000"],["2024-07-24T22:11:03.010000"],["2024-07-24T22:11:04.010000"],["2024-07-24T22:11:05.010000"],["2024-07-24T22:11:06.010000"],["2024-07-24T22:11:07.010000"],["2024-07-24T22:11:08.010000"],["2024-07-24T22:11:09.010000"],["2024-07-24T22:11:10.010000"],["2024-07-24T22:11:11.010000"],["2024-07-24T22:11:12.010000"],["2024-07-24T22:11:13.010000"],["2024-07-24T22:11:14.010000"],["2024-07-24T22:11:15.010000"],["2024-07-24T22:11:16.010000"],["2024-07-24T22:11:17.010000"],["2024-07-24T22:11:18.010000"],["2024-07-24T22:11:19.010000"],["2024-07-24T22:11:20.010000"],["2024-07-24T22:11:21.010000"],["2024-07-24T22:11:22.010000"],["2024-07-24T22:11:23.010000"],["2024-07-24T22:11:24.010000"],["2024-07-24T22:11:25.010000"],["2024-07-24T22:11:26.010000"],["2024-07-24T22:11:27.010000"],["2024-07-24T22:11:28.010000"],["2024-07-24T22:11:29.010000"],["2024-07-24T22:11:30.010000"],["2024-07-24T22:11:31.010000"],["2024-07-24T22:11:32.010000"],["2024-07-24T22:11:33.010000"],["2024-07-24T22:11:34.010000"],["2024-07-24T22:11:35.010000"],["2024-07-24T22:11:36.010000"],["2024-07-24T22:11:37.010000"],["2024-07-24T22:11:38.010000"],["2024-07-24T22:11:39.010000"],["2024-07-24T22:11:40.010000"],["2024-07-24T22:11:41.010000"],["2024-07-24T22:11:42.010000"],["2024-07-24T22:11:43.010000"],["2024-07-24T22:11:44.010000"],["2024-07-24T22:11:45.010000"],["2024-07-24T22:11:46.010000"],["2024-07-24T22:11:47.010000"],["2024-07-24T22:11:48.010000"],["2024-07-24T22:11:49.010000"],["2024-07-24T22:11:50.010000"],["2024-07-24T22:11:51.010000"],["2024-07-24T22:11:52.010000"],["2024-07-24T22:11:53.010000"],["2024-07-24T22:11:54.010000"],["2024-07-24T22:11:55.010000"],["2024-07-24T22:11:56.010000"],["2024-07-24T22:11:57.010000"],["2024-07-24T22:11:58.010000"],["2024-07-24T22:11:59.010000"],["2024-07-24T22:12:00.010000"],["2024-07-24T22:12:01.010000"],["2024-07-24T22:12:02.010000"],["2024-07-24T22:12:03.010000"],["2024-07-24T22:12:04.010000"],["2024-07-24T22:12:05.010000"],["2024-07-24T22:12:06.010000"],["2024-07-24T22:12:07.010000"],["2024-07-24T22:12:08.010000"],["2024-07-24T22:12:09.010000"],["2024-07-24T22:12:10.010000"],["2024-07-24T22:12:11.010000"],["2024-07-24T22:12:12.010000"],["2024-07-24T22:12:13.010000"],["2024-07-24T22:12:14.010000"],["2024-07-24T22:12:15.010000"],["2024-07-24T22:12:16.010000"],["2024-07-24T22:12:17.010000"],["2024-07-24T22:12:18.010000"],["2024-07-24T22:12:19.010000"],["2024-07-24T22:12:20.010000"],["2024-07-24T22:12:21.010000"],["2024-07-24T22:12:22.010000"],["2024-07-24T22:12:23.010000"],["2024-07-24T22:12:24.010000"],["2024-07-24T22:12:25.010000"],["2024-07-24T22:12:26.010000"],["2024-07-24T22:12:27.010000"],["2024-07-24T22:12:28.010000"],["2024-07-24T22:12:29.010000"],["2024-07-24T22:12:30.010000"],["2024-07-24T22:12:31.010000"],["2024-07-24T22:12:32.010000"],["2024-07-24T22:12:33.010000"],["2024-07-24T22:12:34.010000"],["2024-07-24T22:12:35.010000"],["2024-07-24T22:12:36.010000"],["2024-07-24T22:12:37.010000"],["2024-07-24T22:12:38.010000"],["2024-07-24T22:12:39.010000"],["2024-07-24T22:12:40.010000"],["2024-07-24T22:12:41.010000"],["2024-07-24T22:12:42.010000"],["2024-07-24T22:12:43.010000"],["2024-07-24T22:12:44.010000"],["2024-07-24T22:12:45.010000"],["2024-07-24T22:12:46.010000"],["2024-07-24T22:12:47.010000"],["2024-07-24T22:12:48.010000"],["2024-07-24T22:12:49.010000"],["2024-07-24T22:12:50.010000"],["2024-07-24T22:12:51.010000"],["2024-07-24T22:12:52.010000"],["2024-07-24T22:12:53.010000"],["2024-07-24T22:12:54.010000"],["2024-07-24T22:12:55.010000"],["2024-07-24T22:12:56.010000"],["2024-07-24T22:12:57.010000"],["2024-07-24T22:12:58.010000"],["2024-07-24T22:12:59.010000"],["2024-07-24T22:13:00.010000"],["2024-07-24T22:13:01.010000"],["2024-07-24T22:13:02.010000"],["2024-07-24T22:13:03.010000"],["2024-07-24T22:13:04.010000"],["2024-07-24T22:13:05.010000"],["2024-07-24T22:13:06.010000"],["2024-07-24T22:13:07.010000"],["2024-07-24T22:13:08.010000"],["2024-07-24T22:13:09.010000"],["2024-07-24T22:13:10.010000"],["2024-07-24T22:13:11.010000"],["2024-07-24T22:13:12.010000"],["2024-07-24T22:13:13.010000"],["2024-07-24T22:13:14.010000"],["2024-07-24T22:13:15.010000"],["2024-07-24T22:13:16.010000"],["2024-07-24T22:13:17.010000"],["2024-07-24T22:13:18.010000"],["2024-07-24T22:13:19.010000"],["2024-07-24T22:13:20.010000"],["2024-07-24T22:13:21.010000"],["2024-07-24T22:13:22.010000"],["2024-07-24T22:13:23.010000"],["2024-07-24T22:13:24.010000"],["2024-07-24T22:13:25.010000"],["2024-07-24T22:13:26.010000"],["2024-07-24T22:13:27.010000"],["2024-07-24T22:13:28.010000"],["2024-07-24T22:13:29.010000"],["2024-07-24T22:13:30.010000"],["2024-07-24T22:13:31.010000"],["2024-07-24T22:13:32.010000"],["2024-07-24T22:13:33.010000"],["2024-07-24T22:13:34.010000"],["2024-07-24T22:13:35.010000"],["2024-07-24T22:13:36.010000"],["2024-07-24T22:13:37.010000"],["2024-07-24T22:13:38.010000"],["2024-07-24T22:13:39.010000"],["2024-07-24T22:13:40.010000"],["2024-07-24T22:13:41.010000"],["2024-07-24T22:13:42.010000"],["2024-07-24T22:13:43.010000"],["2024-07-24T22:13:44.010000"],["2024-07-24T22:13:45.010000"],["2024-07-24T22:13:46.010000"],["2024-07-24T22:13:47.010000"],["2024-07-24T22:13:48.010000"],["2024-07-24T22:13:49.010000"],["2024-07-24T22:13:50.010000"],["2024-07-24T22:13:51.010000"],["2024-07-24T22:13:52.010000"],["2024-07-24T22:13:53.010000"],["2024-07-24T22:13:54.010000"],["2024-07-24T22:13:55.010000"],["2024-07-24T22:13:56.010000"],["2024-07-24T22:13:57.010000"],["2024-07-24T22:13:58.010000"],["2024-07-24T22:13:59.010000"],["2024-07-24T22:14:00.010000"],["2024-07-24T22:14:01.010000"],["2024-07-24T22:14:02.010000"],["2024-07-24T22:14:03.010000"],["2024-07-24T22:14:04.010000"],["2024-07-24T22:14:05.010000"],["2024-07-24T22:14:06.010000"],["2024-07-24T22:14:07.010000"],["2024-07-24T22:14:08.010000"],["2024-07-24T22:14:09.010000"],["2024-07-24T22:14:10.010000"],["2024-07-24T22:14:11.010000"],["2024-07-24T22:14:12.010000"],["2024-07-24T22:14:13.010000"],["2024-07-24T22:14:14.010000"],["2024-07-24T22:14:15.010000"],["2024-07-24T22:14:16.010000"],["2024-07-24T22:14:17.010000"],["2024-07-24T22:14:18.010000"],["2024-07-24T22:14:19.010000"],["2024-07-24T22:14:20.010000"],["2024-07-24T22:14:21.010000"],["2024-07-24T22:14:22.010000"],["2024-07-24T22:14:23.010000"],["2024-07-24T22:14:24.010000"],["2024-07-24T22:14:25.010000"],["2024-07-24T22:14:26.010000"],["2024-07-24T22:14:27.010000"],["2024-07-24T22:14:28.010000"],["2024-07-24T22:14:29.010000"],["2024-07-24T22:14:30.010000"],["2024-07-24T22:14:31.010000"],["2024-07-24T22:14:32.010000"],["2024-07-24T22:14:33.010000"],["2024-07-24T22:14:34.010000"],["2024-07-24T22:14:35.010000"],["2024-07-24T22:14:36.010000"],["2024-07-24T22:14:37.010000"],["2024-07-24T22:14:38.010000"],["2024-07-24T22:14:39.010000"],["2024-07-24T22:14:40.010000"],["2024-07-24T22:14:41.010000"],["2024-07-24T22:14:42.010000"],["2024-07-24T22:14:43.010000"],["2024-07-24T22:14:44.010000"],["2024-07-24T22:14:45.010000"],["2024-07-24T22:14:46.010000"],["2024-07-24T22:14:47.010000"],["2024-07-24T22:14:48.010000"],["2024-07-24T22:14:49.010000"],["2024-07-24T22:14:50.010000"],["2024-07-24T22:14:51.010000"],["2024-07-24T22:14:52.010000"],["2024-07-24T22:14:53.010000"],["2024-07-24T22:14:54.010000"],["2024-07-24T22:14:55.010000"],["2024-07-24T22:14:56.010000"],["2024-07-24T22:14:57.010000"],["2024-07-24T22:14:58.010000"],["2024-07-24T22:14:59.010000"],["2024-07-24T22:15:00.010000"],["2024-07-24T22:15:01.010000"],["2024-07-24T22:15:02.010000"],["2024-07-24T22:15:03.010000"],["2024-07-24T22:15:04.010000"],["2024-07-24T22:15:05.010000"],["2024-07-24T22:15:06.010000"],["2024-07-24T22:15:07.010000"],["2024-07-24T22:15:08.010000"],["2024-07-24T22:15:09.010000"],["2024-07-24T22:15:10.010000"],["2024-07-24T22:15:11.010000"],["2024-07-24T22:15:12.010000"],["2024-07-24T22:15:13.010000"],["2024-07-24T22:15:14.010000"],["2024-07-24T22:15:15.010000"],["2024-07-24T22:15:16.010000"],["2024-07-24T22:15:17.010000"],["2024-07-24T22:15:18.010000"],["2024-07-24T22:15:19.010000"],["2024-07-24T22:15:20.010000"],["2024-07-24T22:15:21.010000"],["2024-07-24T22:15:22.010000"],["2024-07-24T22:15:23.010000"],["2024-07-24T22:15:24.010000"],["2024-07-24T22:15:25.010000"],["2024-07-24T22:15:26.010000"],["2024-07-24T22:15:27.010000"],["2024-07-24T22:15:28.010000"],["2024-07-24T22:15:29.010000"],["2024-07-24T22:15:30.010000"],["2024-07-24T22:15:31.010000"],["2024-07-24T22:15:32.010000"],["2024-07-24T22:15:33.010000"],["2024-07-24T22:15:34.010000"],["2024-07-24T22:15:35.010000"],["2024-07-24T22:15:36.010000"],["2024-07-24T22:15:37.010000"],["2024-07-24T22:15:38.010000"],["2024-07-24T22:15:39.010000"],["2024-07-24T22:15:40.010000"],["2024-07-24T22:15:41.010000"],["2024-07-24T22:15:42.010000"],["2024-07-24T22:15:43.010000"],["2024-07-24T22:15:44.010000"],["2024-07-24T22:15:45.010000"],["2024-07-24T22:15:46.010000"],["2024-07-24T22:15:47.010000"],["2024-07-24T22:15:48.010000"],["2024-07-24T22:15:49.010000"],["2024-07-24T22:15:50.010000"],["2024-07-24T22:15:51.010000"],["2024-07-24T22:15:52.010000"],["2024-07-24T22:15:53.010000"],["2024-07-24T22:15:54.010000"],["2024-07-24T22:15:55.010000"],["2024-07-24T22:15:56.010000"],["2024-07-24T22:15:57.010000"],["2024-07-24T22:15:58.010000"],["2024-07-24T22:15:59.010000"],["2024-07-24T22:16:00.010000"],["2024-07-24T22:16:01.010000"],["2024-07-24T22:16:02.010000"],["2024-07-24T22:16:03.010000"],["2024-07-24T22:16:04.010000"],["2024-07-24T22:16:05.010000"],["2024-07-24T22:16:06.010000"],["2024-07-24T22:16:07.010000"],["2024-07-24T22:16:08.010000"],["2024-07-24T22:16:09.010000"],["2024-07-24T22:16:10.010000"],["2024-07-24T22:16:11.010000"],["2024-07-24T22:16:12.010000"],["2024-07-24T22:16:13.010000"],["2024-07-24T22:16:14.010000"],["2024-07-24T22:16:15.010000"],["2024-07-24T22:16:16.010000"],["2024-07-24T22:16:17.010000"],["2024-07-24T22:16:18.010000"],["2024-07-24T22:16:19.010000"],["2024-07-24T22:16:20.010000"],["2024-07-24T22:16:21.010000"],["2024-07-24T22:16:22.010000"],["2024-07-24T22:16:23.010000"],["2024-07-24T22:16:24.010000"],["2024-07-24T22:16:25.010000"],["2024-07-24T22:16:26.010000"],["2024-07-24T22:16:27.010000"],["2024-07-24T22:16:28.010000"],["2024-07-24T22:16:29.010000"],["2024-07-24T22:16:30.010000"],["2024-07-24T22:16:31.010000"],["2024-07-24T22:16:32.010000"],["2024-07-24T22:16:33.010000"],["2024-07-24T22:16:34.010000"],["2024-07-24T22:16:35.010000"],["2024-07-24T22:16:36.010000"],["2024-07-24T22:16:37.010000"],["2024-07-24T22:16:38.010000"],["2024-07-24T22:16:39.010000"],["2024-07-24T22:16:40.010000"],["2024-07-24T22:16:41.010000"],["2024-07-24T22:16:42.010000"],["2024-07-24T22:16:43.010000"],["2024-07-24T22:16:44.010000"],["2024-07-24T22:16:45.010000"],["2024-07-24T22:16:46.010000"],["2024-07-24T22:16:47.010000"],["2024-07-24T22:16:48.010000"],["2024-07-24T22:16:49.010000"],["2024-07-24T22:16:50.010000"],["2024-07-24T22:16:51.010000"],["2024-07-24T22:16:52.010000"],["2024-07-24T22:16:53.010000"],["2024-07-24T22:16:54.010000"],["2024-07-24T22:16:55.010000"],["2024-07-24T22:16:56.010000"],["2024-07-24T22:16:57.010000"],["2024-07-24T22:16:58.010000"],["2024-07-24T22:16:59.010000"],["2024-07-24T22:17:00.010000"],["2024-07-24T22:17:01.010000"],["2024-07-24T22:17:02.010000"],["2024-07-24T22:17:03.010000"],["2024-07-24T22:17:04.010000"],["2024-07-24T22:17:05.010000"],["2024-07-24T22:17:06.010000"],["2024-07-24T22:17:07.010000"],["2024-07-24T22:17:08.010000"],["2024-07-24T22:17:09.010000"],["2024-07-24T22:17:10.010000"],["2024-07-24T22:17:11.010000"],["2024-07-24T22:17:12.010000"],["2024-07-24T22:17:13.010000"],["2024-07-24T22:17:14.010000"],["2024-07-24T22:17:15.010000"],["2024-07-24T22:17:16.010000"],["2024-07-24T22:17:17.010000"],["2024-07-24T22:17:18.010000"],["2024-07-24T22:17:19.010000"],["2024-07-24T22:17:20.010000"],["2024-07-24T22:17:21.010000"],["2024-07-24T22:17:22.010000"],["2024-07-24T22:17:23.010000"],["2024-07-24T22:17:24.010000"],["2024-07-24T22:17:25.010000"],["2024-07-24T22:17:26.010000"],["2024-07-24T22:17:27.010000"],["2024-07-24T22:17:28.010000"],["2024-07-24T22:17:29.010000"],["2024-07-24T22:17:30.010000"],["2024-07-24T22:17:31.010000"],["2024-07-24T22:17:32.010000"],["2024-07-24T22:17:33.010000"],["2024-07-24T22:17:34.010000"],["2024-07-24T22:17:35.010000"],["2024-07-24T22:17:36.010000"],["2024-07-24T22:17:37.010000"],["2024-07-24T22:17:38.010000"],["2024-07-24T22:17:39.010000"],["2024-07-24T22:17:40.010000"],["2024-07-24T22:17:41.010000"],["2024-07-24T22:17:42.010000"],["2024-07-24T22:17:43.010000"],["2024-07-24T22:17:44.010000"],["2024-07-24T22:17:45.010000"],["2024-07-24T22:17:46.010000"],["2024-07-24T22:17:47.010000"],["2024-07-24T22:17:48.010000"],["2024-07-24T22:17:49.010000"],["2024-07-24T22:17:50.010000"],["2024-07-24T22:17:51.010000"],["2024-07-24T22:17:52.010000"],["2024-07-24T22:17:53.010000"],["2024-07-24T22:17:54.010000"],["2024-07-24T22:17:55.010000"],["2024-07-24T22:17:56.010000"],["2024-07-24T22:17:57.010000"],["2024-07-24T22:17:58.010000"],["2024-07-24T22:17:59.010000"],["2024-07-24T22:18:00.010000"],["2024-07-24T22:18:01.010000"],["2024-07-24T22:18:02.010000"],["2024-07-24T22:18:03.010000"],["2024-07-24T22:18:04.010000"],["2024-07-24T22:18:05.010000"],["2024-07-24T22:18:06.010000"],["2024-07-24T22:18:07.010000"],["2024-07-24T22:18:08.010000"],["2024-07-24T22:18:09.010000"],["2024-07-24T22:18:10.010000"],["2024-07-24T22:18:11.010000"],["2024-07-24T22:18:12.010000"],["2024-07-24T22:18:13.010000"],["2024-07-24T22:18:14.010000"],["2024-07-24T22:18:15.010000"],["2024-07-24T22:18:16.010000"],["2024-07-24T22:18:17.010000"],["2024-07-24T22:18:18.010000"],["2024-07-24T22:18:19.010000"],["2024-07-24T22:18:20.010000"],["2024-07-24T22:18:21.010000"],["2024-07-24T22:18:22.010000"],["2024-07-24T22:18:23.010000"],["2024-07-24T22:18:24.010000"],["2024-07-24T22:18:25.010000"],["2024-07-24T22:18:26.010000"],["2024-07-24T22:18:27.010000"],["2024-07-24T22:18:28.010000"],["2024-07-24T22:18:29.010000"],["2024-07-24T22:18:30.010000"],["2024-07-24T22:18:31.010000"],["2024-07-24T22:18:32.010000"],["2024-07-24T22:18:33.010000"],["2024-07-24T22:18:34.010000"],["2024-07-24T22:18:35.010000"],["2024-07-24T22:18:36.010000"],["2024-07-24T22:18:37.010000"],["2024-07-24T22:18:38.010000"],["2024-07-24T22:18:39.010000"],["2024-07-24T22:18:40.010000"],["2024-07-24T22:18:41.010000"],["2024-07-24T22:18:42.010000"],["2024-07-24T22:18:43.010000"],["2024-07-24T22:18:44.010000"],["2024-07-24T22:18:45.010000"],["2024-07-24T22:18:46.010000"],["2024-07-24T22:18:47.010000"],["2024-07-24T22:18:48.010000"],["2024-07-24T22:18:49.010000"],["2024-07-24T22:18:50.010000"],["2024-07-24T22:18:51.010000"],["2024-07-24T22:18:52.010000"],["2024-07-24T22:18:53.010000"],["2024-07-24T22:18:54.010000"],["2024-07-24T22:18:55.010000"],["2024-07-24T22:18:56.010000"],["2024-07-24T22:18:57.010000"],["2024-07-24T22:18:58.010000"],["2024-07-24T22:18:59.010000"],["2024-07-24T22:19:00.010000"],["2024-07-24T22:19:01.010000"],["2024-07-24T22:19:02.010000"],["2024-07-24T22:19:03.010000"],["2024-07-24T22:19:04.010000"],["2024-07-24T22:19:05.010000"],["2024-07-24T22:19:06.010000"],["2024-07-24T22:19:07.010000"],["2024-07-24T22:19:08.010000"],["2024-07-24T22:19:09.010000"],["2024-07-24T22:19:10.010000"],["2024-07-24T22:19:11.010000"],["2024-07-24T22:19:12.010000"],["2024-07-24T22:19:13.010000"],["2024-07-24T22:19:14.010000"],["2024-07-24T22:19:15.010000"],["2024-07-24T22:19:16.010000"],["2024-07-24T22:19:17.010000"],["2024-07-24T22:19:18.010000"],["2024-07-24T22:19:19.010000"],["2024-07-24T22:19:20.010000"],["2024-07-24T22:19:21.010000"],["2024-07-24T22:19:22.010000"],["2024-07-24T22:19:23.010000"],["2024-07-24T22:19:24.010000"],["2024-07-24T22:19:25.010000"],["2024-07-24T22:19:26.010000"],["2024-07-24T22:19:27.010000"],["2024-07-24T22:19:28.010000"],["2024-07-24T22:19:29.010000"],["2024-07-24T22:19:30.010000"],["2024-07-24T22:19:31.010000"],["2024-07-24T22:19:32.010000"],["2024-07-24T22:19:33.010000"],["2024-07-24T22:19:34.010000"],["2024-07-24T22:19:35.010000"],["2024-07-24T22:19:36.010000"],["2024-07-24T22:19:37.010000"],["2024-07-24T22:19:38.010000"],["2024-07-24T22:19:39.010000"],["2024-07-24T22:19:40.010000"],["2024-07-24T22:19:41.010000"],["2024-07-24T22:19:42.010000"],["2024-07-24T22:19:43.010000"],["2024-07-24T22:19:44.010000"],["2024-07-24T22:19:45.010000"],["2024-07-24T22:19:46.010000"],["2024-07-24T22:19:47.010000"],["2024-07-24T22:19:48.010000"],["2024-07-24T22:19:49.010000"],["2024-07-24T22:19:50.010000"],["2024-07-24T22:19:51.010000"],["2024-07-24T22:19:52.010000"],["2024-07-24T22:19:53.010000"],["2024-07-24T22:19:54.010000"],["2024-07-24T22:19:55.010000"],["2024-07-24T22:19:56.010000"],["2024-07-24T22:19:57.010000"],["2024-07-24T22:19:58.010000"],["2024-07-24T22:19:59.010000"],["2024-07-24T22:20:00.010000"],["2024-07-24T22:20:01.010000"],["2024-07-24T22:20:02.010000"],["2024-07-24T22:20:03.010000"],["2024-07-24T22:20:04.010000"],["2024-07-24T22:20:05.010000"],["2024-07-24T22:20:06.010000"],["2024-07-24T22:20:07.010000"],["2024-07-24T22:20:08.010000"],["2024-07-24T22:20:09.010000"],["2024-07-24T22:20:10.010000"],["2024-07-24T22:20:11.010000"],["2024-07-24T22:20:12.010000"],["2024-07-24T22:20:13.010000"],["2024-07-24T22:20:14.010000"],["2024-07-24T22:20:15.010000"],["2024-07-24T22:20:16.010000"],["2024-07-24T22:20:17.010000"],["2024-07-24T22:20:18.010000"],["2024-07-24T22:20:19.010000"],["2024-07-24T22:20:20.010000"],["2024-07-24T22:20:21.010000"],["2024-07-24T22:20:22.010000"],["2024-07-24T22:20:23.010000"],["2024-07-24T22:20:24.010000"],["2024-07-24T22:20:25.010000"],["2024-07-24T22:20:26.010000"],["2024-07-24T22:20:27.010000"],["2024-07-24T22:20:28.010000"],["2024-07-24T22:20:29.010000"],["2024-07-24T22:20:30.010000"],["2024-07-24T22:20:31.010000"],["2024-07-24T22:20:32.010000"],["2024-07-24T22:20:33.010000"],["2024-07-24T22:20:34.010000"],["2024-07-24T22:20:35.010000"],["2024-07-24T22:20:36.010000"],["2024-07-24T22:20:37.010000"],["2024-07-24T22:20:38.010000"],["2024-07-24T22:20:39.010000"],["2024-07-24T22:20:40.010000"],["2024-07-24T22:20:41.010000"],["2024-07-24T22:20:42.010000"],["2024-07-24T22:20:43.010000"],["2024-07-24T22:20:44.010000"],["2024-07-24T22:20:45.010000"],["2024-07-24T22:20:46.010000"],["2024-07-24T22:20:47.010000"],["2024-07-24T22:20:48.010000"],["2024-07-24T22:20:49.010000"],["2024-07-24T22:20:50.010000"],["2024-07-24T22:20:51.010000"],["2024-07-24T22:20:52.010000"],["2024-07-24T22:20:53.010000"],["2024-07-24T22:20:54.010000"],["2024-07-24T22:20:55.010000"],["2024-07-24T22:20:56.010000"],["2024-07-24T22:20:57.010000"],["2024-07-24T22:20:58.010000"],["2024-07-24T22:20:59.010000"],["2024-07-24T22:21:00.010000"],["2024-07-24T22:21:01.010000"],["2024-07-24T22:21:02.010000"],["2024-07-24T22:21:03.010000"],["2024-07-24T22:21:04.010000"],["2024-07-24T22:21:05.010000"],["2024-07-24T22:21:06.010000"],["2024-07-24T22:21:07.010000"],["2024-07-24T22:21:08.010000"],["2024-07-24T22:21:09.010000"],["2024-07-24T22:21:10.010000"],["2024-07-24T22:21:11.010000"],["2024-07-24T22:21:12.010000"],["2024-07-24T22:21:13.010000"],["2024-07-24T22:21:14.010000"],["2024-07-24T22:21:15.010000"],["2024-07-24T22:21:16.010000"],["2024-07-24T22:21:17.010000"],["2024-07-24T22:21:18.010000"],["2024-07-24T22:21:19.010000"],["2024-07-24T22:21:20.010000"],["2024-07-24T22:21:21.010000"],["2024-07-24T22:21:22.010000"],["2024-07-24T22:21:23.010000"],["2024-07-24T22:21:24.010000"],["2024-07-24T22:21:25.010000"],["2024-07-24T22:21:26.010000"],["2024-07-24T22:21:27.010000"],["2024-07-24T22:21:28.010000"],["2024-07-24T22:21:29.010000"],["2024-07-24T22:21:30.010000"],["2024-07-24T22:21:31.010000"],["2024-07-24T22:21:32.010000"],["2024-07-24T22:21:33.010000"],["2024-07-24T22:21:34.010000"],["2024-07-24T22:21:35.010000"],["2024-07-24T22:21:36.010000"],["2024-07-24T22:21:37.010000"],["2024-07-24T22:21:38.010000"],["2024-07-24T22:21:39.010000"],["2024-07-24T22:21:40.010000"],["2024-07-24T22:21:41.010000"],["2024-07-24T22:21:42.010000"],["2024-07-24T22:21:43.010000"],["2024-07-24T22:21:44.010000"],["2024-07-24T22:21:45.010000"],["2024-07-24T22:21:46.010000"],["2024-07-24T22:21:47.010000"],["2024-07-24T22:21:48.010000"],["2024-07-24T22:21:49.010000"],["2024-07-24T22:21:50.010000"],["2024-07-24T22:21:51.010000"],["2024-07-24T22:21:52.010000"],["2024-07-24T22:21:53.010000"],["2024-07-24T22:21:54.010000"],["2024-07-24T22:21:55.010000"],["2024-07-24T22:21:56.010000"],["2024-07-24T22:21:57.010000"],["2024-07-24T22:21:58.010000"],["2024-07-24T22:21:59.010000"],["2024-07-24T22:22:00.010000"],["2024-07-24T22:22:01.010000"],["2024-07-24T22:22:02.010000"],["2024-07-24T22:22:03.010000"],["2024-07-24T22:22:04.010000"],["2024-07-24T22:22:05.010000"],["2024-07-24T22:22:06.010000"],["2024-07-24T22:22:07.010000"],["2024-07-24T22:22:08.010000"],["2024-07-24T22:22:09.010000"],["2024-07-24T22:22:10.010000"],["2024-07-24T22:22:11.010000"],["2024-07-24T22:22:12.010000"],["2024-07-24T22:22:13.010000"],["2024-07-24T22:22:14.010000"],["2024-07-24T22:22:15.010000"],["2024-07-24T22:22:16.010000"],["2024-07-24T22:22:17.010000"],["2024-07-24T22:22:18.010000"],["2024-07-24T22:22:19.010000"],["2024-07-24T22:22:20.010000"],["2024-07-24T22:22:21.010000"],["2024-07-24T22:22:22.010000"],["2024-07-24T22:22:23.010000"],["2024-07-24T22:22:24.010000"],["2024-07-24T22:22:25.010000"],["2024-07-24T22:22:26.010000"],["2024-07-24T22:22:27.010000"],["2024-07-24T22:22:28.010000"],["2024-07-24T22:22:29.010000"],["2024-07-24T22:22:30.010000"],["2024-07-24T22:22:31.010000"],["2024-07-24T22:22:32.010000"],["2024-07-24T22:22:33.010000"],["2024-07-24T22:22:34.010000"],["2024-07-24T22:22:35.010000"],["2024-07-24T22:22:36.010000"],["2024-07-24T22:22:37.010000"],["2024-07-24T22:22:38.010000"],["2024-07-24T22:22:39.010000"],["2024-07-24T22:22:40.010000"],["2024-07-24T22:22:41.010000"],["2024-07-24T22:22:42.010000"],["2024-07-24T22:22:43.010000"],["2024-07-24T22:22:44.010000"],["2024-07-24T22:22:45.010000"],["2024-07-24T22:22:46.010000"],["2024-07-24T22:22:47.010000"],["2024-07-24T22:22:48.010000"],["2024-07-24T22:22:49.010000"],["2024-07-24T22:22:50.010000"],["2024-07-24T22:22:51.010000"],["2024-07-24T22:22:52.010000"],["2024-07-24T22:22:53.010000"],["2024-07-24T22:22:54.010000"],["2024-07-24T22:22:55.010000"],["2024-07-24T22:22:56.010000"],["2024-07-24T22:22:57.010000"],["2024-07-24T22:22:58.010000"],["2024-07-24T22:22:59.010000"],["2024-07-24T22:23:00.010000"],["2024-07-24T22:23:01.010000"],["2024-07-24T22:23:02.010000"],["2024-07-24T22:23:03.010000"],["2024-07-24T22:23:04.010000"],["2024-07-24T22:23:05.010000"],["2024-07-24T22:23:06.010000"],["2024-07-24T22:23:07.010000"],["2024-07-24T22:23:08.010000"],["2024-07-24T22:23:09.010000"],["2024-07-24T22:23:10.010000"],["2024-07-24T22:23:11.010000"],["2024-07-24T22:23:12.010000"],["2024-07-24T22:23:13.010000"],["2024-07-24T22:23:14.010000"],["2024-07-24T22:23:15.010000"],["2024-07-24T22:23:16.010000"],["2024-07-24T22:23:17.010000"],["2024-07-24T22:23:18.010000"],["2024-07-24T22:23:19.010000"],["2024-07-24T22:23:20.010000"],["2024-07-24T22:23:21.010000"],["2024-07-24T22:23:22.010000"],["2024-07-24T22:23:23.010000"],["2024-07-24T22:23:24.010000"],["2024-07-24T22:23:25.010000"],["2024-07-24T22:23:26.010000"],["2024-07-24T22:23:27.010000"],["2024-07-24T22:23:28.010000"],["2024-07-24T22:23:29.010000"],["2024-07-24T22:23:30.010000"],["2024-07-24T22:23:31.010000"],["2024-07-24T22:23:32.010000"],["2024-07-24T22:23:33.010000"],["2024-07-24T22:23:34.010000"],["2024-07-24T22:23:35.010000"],["2024-07-24T22:23:36.010000"],["2024-07-24T22:23:37.010000"],["2024-07-24T22:23:38.010000"],["2024-07-24T22:23:39.010000"],["2024-07-24T22:23:40.010000"],["2024-07-24T22:23:41.010000"],["2024-07-24T22:23:42.010000"],["2024-07-24T22:23:43.010000"],["2024-07-24T22:23:44.010000"],["2024-07-24T22:23:45.010000"],["2024-07-24T22:23:46.010000"],["2024-07-24T22:23:47.010000"],["2024-07-24T22:23:48.010000"],["2024-07-24T22:23:49.010000"],["2024-07-24T22:23:50.010000"],["2024-07-24T22:23:51.010000"],["2024-07-24T22:23:52.010000"],["2024-07-24T22:23:53.010000"],["2024-07-24T22:23:54.010000"],["2024-07-24T22:23:55.010000"],["2024-07-24T22:23:56.010000"],["2024-07-24T22:23:57.010000"],["2024-07-24T22:23:58.010000"],["2024-07-24T22:23:59.010000"],["2024-07-24T22:24:00.010000"],["2024-07-24T22:24:01.010000"],["2024-07-24T22:24:02.010000"],["2024-07-24T22:24:03.010000"],["2024-07-24T22:24:04.010000"],["2024-07-24T22:24:05.010000"],["2024-07-24T22:24:06.010000"],["2024-07-24T22:24:07.010000"],["2024-07-24T22:24:08.010000"],["2024-07-24T22:24:09.010000"],["2024-07-24T22:24:10.010000"],["2024-07-24T22:24:11.010000"],["2024-07-24T22:24:12.010000"],["2024-07-24T22:24:13.010000"],["2024-07-24T22:24:14.010000"],["2024-07-24T22:24:15.010000"],["2024-07-24T22:24:16.010000"],["2024-07-24T22:24:17.010000"],["2024-07-24T22:24:18.010000"],["2024-07-24T22:24:19.010000"],["2024-07-24T22:24:20.010000"],["2024-07-24T22:24:21.010000"],["2024-07-24T22:24:22.010000"],["2024-07-24T22:24:23.010000"],["2024-07-24T22:24:24.010000"],["2024-07-24T22:24:25.010000"],["2024-07-24T22:24:26.010000"],["2024-07-24T22:24:27.010000"],["2024-07-24T22:24:28.010000"],["2024-07-24T22:24:29.010000"],["2024-07-24T22:24:30.010000"],["2024-07-24T22:24:31.010000"],["2024-07-24T22:24:32.010000"],["2024-07-24T22:24:33.010000"],["2024-07-24T22:24:34.010000"],["2024-07-24T22:24:35.010000"],["2024-07-24T22:24:36.010000"],["2024-07-24T22:24:37.010000"],["2024-07-24T22:24:38.010000"],["2024-07-24T22:24:39.010000"],["2024-07-24T22:24:40.010000"],["2024-07-24T22:24:41.010000"],["2024-07-24T22:24:42.010000"],["2024-07-24T22:24:43.010000"],["2024-07-24T22:24:44.010000"],["2024-07-24T22:24:45.010000"],["2024-07-24T22:24:46.010000"],["2024-07-24T22:24:47.010000"],["2024-07-24T22:24:48.010000"],["2024-07-24T22:24:49.010000"],["2024-07-24T22:24:50.010000"],["2024-07-24T22:24:51.010000"],["2024-07-24T22:24:52.010000"],["2024-07-24T22:24:53.010000"],["2024-07-24T22:24:54.010000"],["2024-07-24T22:24:55.010000"],["2024-07-24T22:24:56.010000"],["2024-07-24T22:24:57.010000"],["2024-07-24T22:24:58.010000"],["2024-07-24T22:24:59.010000"],["2024-07-24T22:25:00.010000"],["2024-07-24T22:25:01.010000"],["2024-07-24T22:25:02.010000"],["2024-07-24T22:25:03.010000"],["2024-07-24T22:25:04.010000"],["2024-07-24T22:25:05.010000"],["2024-07-24T22:25:06.010000"],["2024-07-24T22:25:07.010000"],["2024-07-24T22:25:08.010000"],["2024-07-24T22:25:09.010000"],["2024-07-24T22:25:10.010000"],["2024-07-24T22:25:11.010000"],["2024-07-24T22:25:12.010000"],["2024-07-24T22:25:13.010000"],["2024-07-24T22:25:14.010000"],["2024-07-24T22:25:15.010000"],["2024-07-24T22:25:16.010000"],["2024-07-24T22:25:17.010000"],["2024-07-24T22:25:18.010000"],["2024-07-24T22:25:19.010000"],["2024-07-24T22:25:20.010000"],["2024-07-24T22:25:21.010000"],["2024-07-24T22:25:22.010000"],["2024-07-24T22:25:23.010000"],["2024-07-24T22:25:24.010000"],["2024-07-24T22:25:25.010000"],["2024-07-24T22:25:26.010000"],["2024-07-24T22:25:27.010000"],["2024-07-24T22:25:28.010000"],["2024-07-24T22:25:29.010000"],["2024-07-24T22:25:30.010000"],["2024-07-24T22:25:31.010000"],["2024-07-24T22:25:32.010000"],["2024-07-24T22:25:33.010000"],["2024-07-24T22:25:34.010000"],["2024-07-24T22:25:35.010000"],["2024-07-24T22:25:36.010000"],["2024-07-24T22:25:37.010000"],["2024-07-24T22:25:38.010000"],["2024-07-24T22:25:39.010000"],["2024-07-24T22:25:40.010000"],["2024-07-24T22:25:41.010000"],["2024-07-24T22:25:42.010000"],["2024-07-24T22:25:43.010000"],["2024-07-24T22:25:44.010000"],["2024-07-24T22:25:45.010000"],["2024-07-24T22:25:46.010000"],["2024-07-24T22:25:47.010000"],["2024-07-24T22:25:48.010000"],["2024-07-24T22:25:49.010000"],["2024-07-24T22:25:50.010000"],["2024-07-24T22:25:51.010000"],["2024-07-24T22:25:52.010000"],["2024-07-24T22:25:53.010000"],["2024-07-24T22:25:54.010000"],["2024-07-24T22:25:55.010000"],["2024-07-24T22:25:56.010000"],["2024-07-24T22:25:57.010000"],["2024-07-24T22:25:58.010000"],["2024-07-24T22:25:59.010000"],["2024-07-24T22:26:00.010000"],["2024-07-24T22:26:01.010000"],["2024-07-24T22:26:02.010000"],["2024-07-24T22:26:03.010000"],["2024-07-24T22:26:04.010000"],["2024-07-24T22:26:05.010000"],["2024-07-24T22:26:06.010000"],["2024-07-24T22:26:07.010000"],["2024-07-24T22:26:08.010000"],["2024-07-24T22:26:09.010000"],["2024-07-24T22:26:10.010000"],["2024-07-24T22:26:11.010000"],["2024-07-24T22:26:12.010000"],["2024-07-24T22:26:13.010000"],["2024-07-24T22:26:14.010000"],["2024-07-24T22:26:15.010000"],["2024-07-24T22:26:16.010000"],["2024-07-24T22:26:17.010000"],["2024-07-24T22:26:18.010000"],["2024-07-24T22:26:19.010000"],["2024-07-24T22:26:20.010000"],["2024-07-24T22:26:21.010000"],["2024-07-24T22:26:22.010000"],["2024-07-24T22:26:23.010000"],["2024-07-24T22:26:24.010000"],["2024-07-24T22:26:25.010000"],["2024-07-24T22:26:26.010000"],["2024-07-24T22:26:27.010000"],["2024-07-24T22:26:28.010000"],["2024-07-24T22:26:29.010000"],["2024-07-24T22:26:30.010000"],["2024-07-24T22:26:31.010000"],["2024-07-24T22:26:32.010000"],["2024-07-24T22:26:33.010000"],["2024-07-24T22:26:34.010000"],["2024-07-24T22:26:35.010000"],["2024-07-24T22:26:36.010000"],["2024-07-24T22:26:37.010000"],["2024-07-24T22:26:38.010000"],["2024-07-24T22:26:39.010000"],["2024-07-24T22:26:40.010000"],["2024-07-24T22:26:41.010000"],["2024-07-24T22:26:42.010000"],["2024-07-24T22:26:43.010000"],["2024-07-24T22:26:44.010000"],["2024-07-24T22:26:45.010000"],["2024-07-24T22:26:46.010000"],["2024-07-24T22:26:47.010000"],["2024-07-24T22:26:48.010000"],["2024-07-24T22:26:49.010000"],["2024-07-24T22:26:50.010000"],["2024-07-24T22:26:51.010000"],["2024-07-24T22:26:52.010000"],["2024-07-24T22:26:53.010000"],["2024-07-24T22:26:54.010000"],["2024-07-24T22:26:55.010000"],["2024-07-24T22:26:56.010000"],["2024-07-24T22:26:57.010000"],["2024-07-24T22:26:58.010000"],["2024-07-24T22:26:59.010000"],["2024-07-24T22:27:00.010000"],["2024-07-24T22:27:01.010000"],["2024-07-24T22:27:02.010000"],["2024-07-24T22:27:03.010000"],["2024-07-24T22:27:04.010000"],["2024-07-24T22:27:05.010000"],["2024-07-24T22:27:06.010000"],["2024-07-24T22:27:07.010000"],["2024-07-24T22:27:08.010000"],["2024-07-24T22:27:09.010000"],["2024-07-24T22:27:10.010000"],["2024-07-24T22:27:11.010000"],["2024-07-24T22:27:12.010000"],["2024-07-24T22:27:13.010000"],["2024-07-24T22:27:14.010000"],["2024-07-24T22:27:15.010000"],["2024-07-24T22:27:16.010000"],["2024-07-24T22:27:17.010000"],["2024-07-24T22:27:18.010000"],["2024-07-24T22:27:19.010000"],["2024-07-24T22:27:20.010000"],["2024-07-24T22:27:21.010000"],["2024-07-24T22:27:22.010000"],["2024-07-24T22:27:23.010000"],["2024-07-24T22:27:24.010000"],["2024-07-24T22:27:25.010000"],["2024-07-24T22:27:26.010000"],["2024-07-24T22:27:27.010000"],["2024-07-24T22:27:28.010000"],["2024-07-24T22:27:29.010000"],["2024-07-24T22:27:30.010000"],["2024-07-24T22:27:31.010000"],["2024-07-24T22:27:32.010000"],["2024-07-24T22:27:33.010000"],["2024-07-24T22:27:34.010000"],["2024-07-24T22:27:35.010000"],["2024-07-24T22:27:36.010000"],["2024-07-24T22:27:37.010000"],["2024-07-24T22:27:38.010000"],["2024-07-24T22:27:39.010000"],["2024-07-24T22:27:40.010000"],["2024-07-24T22:27:41.010000"],["2024-07-24T22:27:42.010000"],["2024-07-24T22:27:43.010000"],["2024-07-24T22:27:44.010000"],["2024-07-24T22:27:45.010000"],["2024-07-24T22:27:46.010000"],["2024-07-24T22:27:47.010000"],["2024-07-24T22:27:48.010000"],["2024-07-24T22:27:49.010000"],["2024-07-24T22:27:50.010000"],["2024-07-24T22:27:51.010000"],["2024-07-24T22:27:52.010000"],["2024-07-24T22:27:53.010000"],["2024-07-24T22:27:54.010000"],["2024-07-24T22:27:55.010000"],["2024-07-24T22:27:56.010000"],["2024-07-24T22:27:57.010000"],["2024-07-24T22:27:58.010000"],["2024-07-24T22:27:59.010000"],["2024-07-24T22:28:00.010000"],["2024-07-24T22:28:01.010000"],["2024-07-24T22:28:02.010000"],["2024-07-24T22:28:03.010000"],["2024-07-24T22:28:04.010000"],["2024-07-24T22:28:05.010000"],["2024-07-24T22:28:06.010000"],["2024-07-24T22:28:07.010000"],["2024-07-24T22:28:08.010000"],["2024-07-24T22:28:09.010000"],["2024-07-24T22:28:10.010000"],["2024-07-24T22:28:11.010000"],["2024-07-24T22:28:12.010000"],["2024-07-24T22:28:13.010000"],["2024-07-24T22:28:14.010000"],["2024-07-24T22:28:15.010000"],["2024-07-24T22:28:16.010000"],["2024-07-24T22:28:17.010000"],["2024-07-24T22:28:18.010000"],["2024-07-24T22:28:19.010000"],["2024-07-24T22:28:20.010000"],["2024-07-24T22:28:21.010000"],["2024-07-24T22:28:22.010000"],["2024-07-24T22:28:23.010000"],["2024-07-24T22:28:24.010000"],["2024-07-24T22:28:25.010000"],["2024-07-24T22:28:26.010000"],["2024-07-24T22:28:27.010000"],["2024-07-24T22:28:28.010000"],["2024-07-24T22:28:29.010000"],["2024-07-24T22:28:30.010000"],["2024-07-24T22:28:31.010000"],["2024-07-24T22:28:32.010000"],["2024-07-24T22:28:33.010000"],["2024-07-24T22:28:34.010000"],["2024-07-24T22:28:35.010000"],["2024-07-24T22:28:36.010000"],["2024-07-24T22:28:37.010000"],["2024-07-24T22:28:38.010000"],["2024-07-24T22:28:39.010000"],["2024-07-24T22:28:40.010000"],["2024-07-24T22:28:41.010000"],["2024-07-24T22:28:42.010000"],["2024-07-24T22:28:43.010000"],["2024-07-24T22:28:44.010000"],["2024-07-24T22:28:45.010000"],["2024-07-24T22:28:46.010000"],["2024-07-24T22:28:47.010000"],["2024-07-24T22:28:48.010000"],["2024-07-24T22:28:49.010000"],["2024-07-24T22:28:50.010000"],["2024-07-24T22:28:51.010000"],["2024-07-24T22:28:52.010000"],["2024-07-24T22:28:53.010000"],["2024-07-24T22:28:54.010000"],["2024-07-24T22:28:55.010000"],["2024-07-24T22:28:56.010000"],["2024-07-24T22:28:57.010000"],["2024-07-24T22:28:58.010000"],["2024-07-24T22:28:59.010000"],["2024-07-24T22:29:00.010000"],["2024-07-24T22:29:01.010000"],["2024-07-24T22:29:02.010000"],["2024-07-24T22:29:03.010000"],["2024-07-24T22:29:04.010000"],["2024-07-24T22:29:05.010000"],["2024-07-24T22:29:06.010000"],["2024-07-24T22:29:07.010000"],["2024-07-24T22:29:08.010000"],["2024-07-24T22:29:09.010000"],["2024-07-24T22:29:10.010000"],["2024-07-24T22:29:11.010000"],["2024-07-24T22:29:12.010000"],["2024-07-24T22:29:13.010000"],["2024-07-24T22:29:14.010000"],["2024-07-24T22:29:15.010000"],["2024-07-24T22:29:16.010000"],["2024-07-24T22:29:17.010000"],["2024-07-24T22:29:18.010000"],["2024-07-24T22:29:19.010000"],["2024-07-24T22:29:20.010000"],["2024-07-24T22:29:21.010000"],["2024-07-24T22:29:22.010000"],["2024-07-24T22:29:23.010000"],["2024-07-24T22:29:24.010000"],["2024-07-24T22:29:25.010000"],["2024-07-24T22:29:26.010000"],["2024-07-24T22:29:27.010000"],["2024-07-24T22:29:28.010000"],["2024-07-24T22:29:29.010000"],["2024-07-24T22:29:30.010000"],["2024-07-24T22:29:31.010000"],["2024-07-24T22:29:32.010000"],["2024-07-24T22:29:33.010000"],["2024-07-24T22:29:34.010000"],["2024-07-24T22:29:35.010000"],["2024-07-24T22:29:36.010000"],["2024-07-24T22:29:37.010000"],["2024-07-24T22:29:38.010000"],["2024-07-24T22:29:39.010000"],["2024-07-24T22:29:40.010000"],["2024-07-24T22:29:41.010000"],["2024-07-24T22:29:42.010000"],["2024-07-24T22:29:43.010000"],["2024-07-24T22:29:44.010000"],["2024-07-24T22:29:45.010000"],["2024-07-24T22:29:46.010000"],["2024-07-24T22:29:47.010000"],["2024-07-24T22:29:48.010000"],["2024-07-24T22:29:49.010000"],["2024-07-24T22:29:50.010000"],["2024-07-24T22:29:51.010000"],["2024-07-24T22:29:52.010000"],["2024-07-24T22:29:53.010000"],["2024-07-24T22:29:54.010000"],["2024-07-24T22:29:55.010000"],["2024-07-24T22:29:56.010000"],["2024-07-24T22:29:57.010000"],["2024-07-24T22:29:58.010000"],["2024-07-24T22:29:59.010000"],["2024-07-24T22:30:00.010000"],["2024-07-24T22:30:01.010000"],["2024-07-24T22:30:02.010000"],["2024-07-24T22:30:03.010000"],["2024-07-24T22:30:04.010000"],["2024-07-24T22:30:05.010000"],["2024-07-24T22:30:06.010000"],["2024-07-24T22:30:07.010000"],["2024-07-24T22:30:08.010000"],["2024-07-24T22:30:09.010000"],["2024-07-24T22:30:10.010000"],["2024-07-24T22:30:11.010000"],["2024-07-24T22:30:12.010000"],["2024-07-24T22:30:13.010000"],["2024-07-24T22:30:14.010000"],["2024-07-24T22:30:15.010000"],["2024-07-24T22:30:16.010000"],["2024-07-24T22:30:17.010000"],["2024-07-24T22:30:18.010000"],["2024-07-24T22:30:19.010000"],["2024-07-24T22:30:20.010000"],["2024-07-24T22:30:21.010000"],["2024-07-24T22:30:22.010000"],["2024-07-24T22:30:23.010000"],["2024-07-24T22:30:24.010000"],["2024-07-24T22:30:25.010000"],["2024-07-24T22:30:26.010000"],["2024-07-24T22:30:27.010000"],["2024-07-24T22:30:28.010000"],["2024-07-24T22:30:29.010000"],["2024-07-24T22:30:30.010000"],["2024-07-24T22:30:31.010000"],["2024-07-24T22:30:32.010000"],["2024-07-24T22:30:33.010000"],["2024-07-24T22:30:34.010000"],["2024-07-24T22:30:35.010000"],["2024-07-24T22:30:36.010000"],["2024-07-24T22:30:37.010000"],["2024-07-24T22:30:38.010000"],["2024-07-24T22:30:39.010000"],["2024-07-24T22:30:40.010000"],["2024-07-24T22:30:41.010000"],["2024-07-24T22:30:42.010000"],["2024-07-24T22:30:43.010000"],["2024-07-24T22:30:44.010000"],["2024-07-24T22:30:45.010000"],["2024-07-24T22:30:46.010000"],["2024-07-24T22:30:47.010000"],["2024-07-24T22:30:48.010000"],["2024-07-24T22:30:49.010000"],["2024-07-24T22:30:50.010000"],["2024-07-24T22:30:51.010000"],["2024-07-24T22:30:52.010000"],["2024-07-24T22:30:53.010000"],["2024-07-24T22:30:54.010000"],["2024-07-24T22:30:55.010000"],["2024-07-24T22:30:56.010000"],["2024-07-24T22:30:57.010000"],["2024-07-24T22:30:58.010000"],["2024-07-24T22:30:59.010000"],["2024-07-24T22:31:00.010000"],["2024-07-24T22:31:01.010000"],["2024-07-24T22:31:02.010000"],["2024-07-24T22:31:03.010000"],["2024-07-24T22:31:04.010000"],["2024-07-24T22:31:05.010000"],["2024-07-24T22:31:06.010000"],["2024-07-24T22:31:07.010000"],["2024-07-24T22:31:08.010000"],["2024-07-24T22:31:09.010000"],["2024-07-24T22:31:10.010000"],["2024-07-24T22:31:11.010000"],["2024-07-24T22:31:12.010000"],["2024-07-24T22:31:13.010000"],["2024-07-24T22:31:14.010000"],["2024-07-24T22:31:15.010000"],["2024-07-24T22:31:16.010000"],["2024-07-24T22:31:17.010000"],["2024-07-24T22:31:18.010000"],["2024-07-24T22:31:19.010000"],["2024-07-24T22:31:20.010000"],["2024-07-24T22:31:21.010000"],["2024-07-24T22:31:22.010000"],["2024-07-24T22:31:23.010000"],["2024-07-24T22:31:24.010000"],["2024-07-24T22:31:25.010000"],["2024-07-24T22:31:26.010000"],["2024-07-24T22:31:27.010000"],["2024-07-24T22:31:28.010000"],["2024-07-24T22:31:29.010000"],["2024-07-24T22:31:30.010000"],["2024-07-24T22:31:31.010000"],["2024-07-24T22:31:32.010000"],["2024-07-24T22:31:33.010000"],["2024-07-24T22:31:34.010000"],["2024-07-24T22:31:35.010000"],["2024-07-24T22:31:36.010000"],["2024-07-24T22:31:37.010000"],["2024-07-24T22:31:38.010000"],["2024-07-24T22:31:39.010000"],["2024-07-24T22:31:40.010000"],["2024-07-24T22:31:41.010000"],["2024-07-24T22:31:42.010000"],["2024-07-24T22:31:43.010000"],["2024-07-24T22:31:44.010000"],["2024-07-24T22:31:45.010000"],["2024-07-24T22:31:46.010000"],["2024-07-24T22:31:47.010000"],["2024-07-24T22:31:48.010000"],["2024-07-24T22:31:49.010000"],["2024-07-24T22:31:50.010000"],["2024-07-24T22:31:51.010000"],["2024-07-24T22:31:52.010000"],["2024-07-24T22:31:53.010000"],["2024-07-24T22:31:54.010000"],["2024-07-24T22:31:55.010000"],["2024-07-24T22:31:56.010000"],["2024-07-24T22:31:57.010000"],["2024-07-24T22:31:58.010000"],["2024-07-24T22:31:59.010000"],["2024-07-24T22:32:00.010000"],["2024-07-24T22:32:01.010000"],["2024-07-24T22:32:02.010000"],["2024-07-24T22:32:03.010000"],["2024-07-24T22:32:04.010000"],["2024-07-24T22:32:05.010000"],["2024-07-24T22:32:06.010000"],["2024-07-24T22:32:07.010000"],["2024-07-24T22:32:08.010000"],["2024-07-24T22:32:09.010000"],["2024-07-24T22:32:10.010000"],["2024-07-24T22:32:11.010000"],["2024-07-24T22:32:12.010000"],["2024-07-24T22:32:13.010000"],["2024-07-24T22:32:14.010000"],["2024-07-24T22:32:15.010000"],["2024-07-24T22:32:16.010000"],["2024-07-24T22:32:17.010000"],["2024-07-24T22:32:18.010000"],["2024-07-24T22:32:19.010000"],["2024-07-24T22:32:20.010000"],["2024-07-24T22:32:21.010000"],["2024-07-24T22:32:22.010000"],["2024-07-24T22:32:23.010000"],["2024-07-24T22:32:24.010000"],["2024-07-24T22:32:25.010000"],["2024-07-24T22:32:26.010000"],["2024-07-24T22:32:27.010000"],["2024-07-24T22:32:28.010000"],["2024-07-24T22:32:29.010000"],["2024-07-24T22:32:30.010000"],["2024-07-24T22:32:31.010000"],["2024-07-24T22:32:32.010000"],["2024-07-24T22:32:33.010000"],["2024-07-24T22:32:34.010000"],["2024-07-24T22:32:35.010000"],["2024-07-24T22:32:36.010000"],["2024-07-24T22:32:37.010000"],["2024-07-24T22:32:38.010000"],["2024-07-24T22:32:39.010000"],["2024-07-24T22:32:40.010000"],["2024-07-24T22:32:41.010000"],["2024-07-24T22:32:42.010000"],["2024-07-24T22:32:43.010000"],["2024-07-24T22:32:44.010000"],["2024-07-24T22:32:45.010000"],["2024-07-24T22:32:46.010000"],["2024-07-24T22:32:47.010000"],["2024-07-24T22:32:48.010000"],["2024-07-24T22:32:49.010000"],["2024-07-24T22:32:50.010000"],["2024-07-24T22:32:51.010000"],["2024-07-24T22:32:52.010000"],["2024-07-24T22:32:53.010000"],["2024-07-24T22:32:54.010000"],["2024-07-24T22:32:55.010000"],["2024-07-24T22:32:56.010000"],["2024-07-24T22:32:57.010000"],["2024-07-24T22:32:58.010000"],["2024-07-24T22:32:59.010000"],["2024-07-24T22:33:00.010000"],["2024-07-24T22:33:01.010000"],["2024-07-24T22:33:02.010000"],["2024-07-24T22:33:03.010000"],["2024-07-24T22:33:04.010000"],["2024-07-24T22:33:05.010000"],["2024-07-24T22:33:06.010000"],["2024-07-24T22:33:07.010000"],["2024-07-24T22:33:08.010000"],["2024-07-24T22:33:09.010000"],["2024-07-24T22:33:10.010000"],["2024-07-24T22:33:11.010000"],["2024-07-24T22:33:12.010000"],["2024-07-24T22:33:13.010000"],["2024-07-24T22:33:14.010000"],["2024-07-24T22:33:15.010000"],["2024-07-24T22:33:16.010000"],["2024-07-24T22:33:17.010000"],["2024-07-24T22:33:18.010000"],["2024-07-24T22:33:19.010000"],["2024-07-24T22:33:20.010000"],["2024-07-24T22:33:21.010000"],["2024-07-24T22:33:22.010000"],["2024-07-24T22:33:23.010000"],["2024-07-24T22:33:24.010000"],["2024-07-24T22:33:25.010000"],["2024-07-24T22:33:26.010000"],["2024-07-24T22:33:27.010000"],["2024-07-24T22:33:28.010000"],["2024-07-24T22:33:29.010000"],["2024-07-24T22:33:30.010000"],["2024-07-24T22:33:31.010000"],["2024-07-24T22:33:32.010000"],["2024-07-24T22:33:33.010000"],["2024-07-24T22:33:34.010000"],["2024-07-24T22:33:35.010000"],["2024-07-24T22:33:36.010000"],["2024-07-24T22:33:37.010000"],["2024-07-24T22:33:38.010000"],["2024-07-24T22:33:39.010000"],["2024-07-24T22:33:40.010000"],["2024-07-24T22:33:41.010000"],["2024-07-24T22:33:42.010000"],["2024-07-24T22:33:43.010000"],["2024-07-24T22:33:44.010000"],["2024-07-24T22:33:45.010000"],["2024-07-24T22:33:46.010000"],["2024-07-24T22:33:47.010000"],["2024-07-24T22:33:48.010000"],["2024-07-24T22:33:49.010000"],["2024-07-24T22:33:50.010000"],["2024-07-24T22:33:51.010000"],["2024-07-24T22:33:52.010000"],["2024-07-24T22:33:53.010000"],["2024-07-24T22:33:54.010000"],["2024-07-24T22:33:55.010000"],["2024-07-24T22:33:56.010000"],["2024-07-24T22:33:57.010000"],["2024-07-24T22:33:58.010000"],["2024-07-24T22:33:59.010000"],["2024-07-24T22:34:00.010000"],["2024-07-24T22:34:01.010000"],["2024-07-24T22:34:02.010000"],["2024-07-24T22:34:03.010000"],["2024-07-24T22:34:04.010000"],["2024-07-24T22:34:05.010000"],["2024-07-24T22:34:06.010000"],["2024-07-24T22:34:07.010000"],["2024-07-24T22:34:08.010000"],["2024-07-24T22:34:09.010000"],["2024-07-24T22:34:10.010000"],["2024-07-24T22:34:11.010000"],["2024-07-24T22:34:12.010000"],["2024-07-24T22:34:13.010000"],["2024-07-24T22:34:14.010000"],["2024-07-24T22:34:15.010000"],["2024-07-24T22:34:16.010000"],["2024-07-24T22:34:17.010000"],["2024-07-24T22:34:18.010000"],["2024-07-24T22:34:19.010000"],["2024-07-24T22:34:20.010000"],["2024-07-24T22:34:21.010000"],["2024-07-24T22:34:22.010000"],["2024-07-24T22:34:23.010000"],["2024-07-24T22:34:24.010000"],["2024-07-24T22:34:25.010000"],["2024-07-24T22:34:26.010000"],["2024-07-24T22:34:27.010000"],["2024-07-24T22:34:28.010000"],["2024-07-24T22:34:29.010000"],["2024-07-24T22:34:30.010000"],["2024-07-24T22:34:31.010000"],["2024-07-24T22:34:32.010000"],["2024-07-24T22:34:33.010000"],["2024-07-24T22:34:34.010000"],["2024-07-24T22:34:35.010000"],["2024-07-24T22:34:36.010000"],["2024-07-24T22:34:37.010000"],["2024-07-24T22:34:38.010000"],["2024-07-24T22:34:39.010000"],["2024-07-24T22:34:40.010000"],["2024-07-24T22:34:41.010000"],["2024-07-24T22:34:42.010000"],["2024-07-24T22:34:43.010000"],["2024-07-24T22:34:44.010000"],["2024-07-24T22:34:45.010000"],["2024-07-24T22:34:46.010000"],["2024-07-24T22:34:47.010000"],["2024-07-24T22:34:48.010000"],["2024-07-24T22:34:49.010000"],["2024-07-24T22:34:50.010000"],["2024-07-24T22:34:51.010000"],["2024-07-24T22:34:52.010000"],["2024-07-24T22:34:53.010000"],["2024-07-24T22:34:54.010000"],["2024-07-24T22:34:55.010000"],["2024-07-24T22:34:56.010000"],["2024-07-24T22:34:57.010000"],["2024-07-24T22:34:58.010000"],["2024-07-24T22:34:59.010000"],["2024-07-24T22:35:00.010000"],["2024-07-24T22:35:01.010000"],["2024-07-24T22:35:02.010000"],["2024-07-24T22:35:03.010000"],["2024-07-24T22:35:04.010000"],["2024-07-24T22:35:05.010000"],["2024-07-24T22:35:06.010000"],["2024-07-24T22:35:07.010000"],["2024-07-24T22:35:08.010000"],["2024-07-24T22:35:09.010000"],["2024-07-24T22:35:10.010000"],["2024-07-24T22:35:11.010000"],["2024-07-24T22:35:12.010000"],["2024-07-24T22:35:13.010000"],["2024-07-24T22:35:14.010000"],["2024-07-24T22:35:15.010000"],["2024-07-24T22:35:16.010000"],["2024-07-24T22:35:17.010000"],["2024-07-24T22:35:18.010000"],["2024-07-24T22:35:19.010000"],["2024-07-24T22:35:20.010000"],["2024-07-24T22:35:21.010000"],["2024-07-24T22:35:22.010000"],["2024-07-24T22:35:23.010000"],["2024-07-24T22:35:24.010000"],["2024-07-24T22:35:25.010000"],["2024-07-24T22:35:26.010000"],["2024-07-24T22:35:27.010000"],["2024-07-24T22:35:28.010000"],["2024-07-24T22:35:29.010000"],["2024-07-24T22:35:30.010000"],["2024-07-24T22:35:31.010000"],["2024-07-24T22:35:32.010000"],["2024-07-24T22:35:33.010000"],["2024-07-24T22:35:34.010000"],["2024-07-24T22:35:35.010000"],["2024-07-24T22:35:36.010000"],["2024-07-24T22:35:37.010000"],["2024-07-24T22:35:38.010000"],["2024-07-24T22:35:39.010000"],["2024-07-24T22:35:40.010000"],["2024-07-24T22:35:41.010000"],["2024-07-24T22:35:42.010000"],["2024-07-24T22:35:43.010000"],["2024-07-24T22:35:44.010000"],["2024-07-24T22:35:45.010000"],["2024-07-24T22:35:46.010000"],["2024-07-24T22:35:47.010000"],["2024-07-24T22:35:48.010000"],["2024-07-24T22:35:49.010000"],["2024-07-24T22:35:50.010000"],["2024-07-24T22:35:51.010000"],["2024-07-24T22:35:52.010000"],["2024-07-24T22:35:53.010000"],["2024-07-24T22:35:54.010000"],["2024-07-24T22:35:55.010000"],["2024-07-24T22:35:56.010000"],["2024-07-24T22:35:57.010000"],["2024-07-24T22:35:58.010000"],["2024-07-24T22:35:59.010000"],["2024-07-24T22:36:00.010000"],["2024-07-24T22:36:01.010000"],["2024-07-24T22:36:02.010000"],["2024-07-24T22:36:03.010000"],["2024-07-24T22:36:04.010000"],["2024-07-24T22:36:05.010000"],["2024-07-24T22:36:06.010000"],["2024-07-24T22:36:07.010000"],["2024-07-24T22:36:08.010000"],["2024-07-24T22:36:09.010000"],["2024-07-24T22:36:10.010000"],["2024-07-24T22:36:11.010000"],["2024-07-24T22:36:12.010000"],["2024-07-24T22:36:13.010000"],["2024-07-24T22:36:14.010000"],["2024-07-24T22:36:15.010000"],["2024-07-24T22:36:16.010000"],["2024-07-24T22:36:17.010000"],["2024-07-24T22:36:18.010000"],["2024-07-24T22:36:19.010000"],["2024-07-24T22:36:20.010000"],["2024-07-24T22:36:21.010000"],["2024-07-24T22:36:22.010000"],["2024-07-24T22:36:23.010000"],["2024-07-24T22:36:24.010000"],["2024-07-24T22:36:25.010000"],["2024-07-24T22:36:26.010000"],["2024-07-24T22:36:27.010000"],["2024-07-24T22:36:28.010000"],["2024-07-24T22:36:29.010000"],["2024-07-24T22:36:30.010000"],["2024-07-24T22:36:31.010000"],["2024-07-24T22:36:32.010000"],["2024-07-24T22:36:33.010000"],["2024-07-24T22:36:34.010000"],["2024-07-24T22:36:35.010000"],["2024-07-24T22:36:36.010000"],["2024-07-24T22:36:37.010000"],["2024-07-24T22:36:38.010000"],["2024-07-24T22:36:39.010000"],["2024-07-24T22:36:40.010000"],["2024-07-24T22:36:41.010000"],["2024-07-24T22:36:42.010000"],["2024-07-24T22:36:43.010000"],["2024-07-24T22:36:44.010000"],["2024-07-24T22:36:45.010000"],["2024-07-24T22:36:46.010000"],["2024-07-24T22:36:47.010000"],["2024-07-24T22:36:48.010000"],["2024-07-24T22:36:49.010000"],["2024-07-24T22:36:50.010000"],["2024-07-24T22:36:51.010000"],["2024-07-24T22:36:52.010000"],["2024-07-24T22:36:53.010000"],["2024-07-24T22:36:54.010000"],["2024-07-24T22:36:55.010000"],["2024-07-24T22:36:56.010000"],["2024-07-24T22:36:57.010000"],["2024-07-24T22:36:58.010000"],["2024-07-24T22:36:59.010000"],["2024-07-24T22:37:00.010000"],["2024-07-24T22:37:01.010000"],["2024-07-24T22:37:02.010000"],["2024-07-24T22:37:03.010000"],["2024-07-24T22:37:04.010000"],["2024-07-24T22:37:05.010000"],["2024-07-24T22:37:06.010000"],["2024-07-24T22:37:07.010000"],["2024-07-24T22:37:08.010000"],["2024-07-24T22:37:09.010000"],["2024-07-24T22:37:10.010000"],["2024-07-24T22:37:11.010000"],["2024-07-24T22:37:12.010000"],["2024-07-24T22:37:13.010000"],["2024-07-24T22:37:14.010000"],["2024-07-24T22:37:15.010000"],["2024-07-24T22:37:16.010000"],["2024-07-24T22:37:17.010000"],["2024-07-24T22:37:18.010000"],["2024-07-24T22:37:19.010000"],["2024-07-24T22:37:20.010000"],["2024-07-24T22:37:21.010000"],["2024-07-24T22:37:22.010000"],["2024-07-24T22:37:23.010000"],["2024-07-24T22:37:24.010000"],["2024-07-24T22:37:25.010000"],["2024-07-24T22:37:26.010000"],["2024-07-24T22:37:27.010000"],["2024-07-24T22:37:28.010000"],["2024-07-24T22:37:29.010000"],["2024-07-24T22:37:30.010000"],["2024-07-24T22:37:31.010000"],["2024-07-24T22:37:32.010000"],["2024-07-24T22:37:33.010000"],["2024-07-24T22:37:34.010000"],["2024-07-24T22:37:35.010000"],["2024-07-24T22:37:36.010000"],["2024-07-24T22:37:37.010000"],["2024-07-24T22:37:38.010000"],["2024-07-24T22:37:39.010000"],["2024-07-24T22:37:40.010000"],["2024-07-24T22:37:41.010000"],["2024-07-24T22:37:42.010000"],["2024-07-24T22:37:43.010000"],["2024-07-24T22:37:44.010000"],["2024-07-24T22:37:45.010000"],["2024-07-24T22:37:46.010000"],["2024-07-24T22:37:47.010000"],["2024-07-24T22:37:48.010000"],["2024-07-24T22:37:49.010000"],["2024-07-24T22:37:50.010000"],["2024-07-24T22:37:51.010000"],["2024-07-24T22:37:52.010000"],["2024-07-24T22:37:53.010000"],["2024-07-24T22:37:54.010000"],["2024-07-24T22:37:55.010000"],["2024-07-24T22:37:56.010000"],["2024-07-24T22:37:57.010000"],["2024-07-24T22:37:58.010000"],["2024-07-24T22:37:59.010000"],["2024-07-24T22:38:00.010000"],["2024-07-24T22:38:01.010000"],["2024-07-24T22:38:02.010000"],["2024-07-24T22:38:03.010000"],["2024-07-24T22:38:04.010000"],["2024-07-24T22:38:05.010000"],["2024-07-24T22:38:06.010000"],["2024-07-24T22:38:07.010000"],["2024-07-24T22:38:08.010000"],["2024-07-24T22:38:09.010000"],["2024-07-24T22:38:10.010000"],["2024-07-24T22:38:11.010000"],["2024-07-24T22:38:12.010000"],["2024-07-24T22:38:13.010000"],["2024-07-24T22:38:14.010000"],["2024-07-24T22:38:15.010000"],["2024-07-24T22:38:16.010000"],["2024-07-24T22:38:17.010000"],["2024-07-24T22:38:18.010000"],["2024-07-24T22:38:19.010000"],["2024-07-24T22:38:20.010000"],["2024-07-24T22:38:21.010000"],["2024-07-24T22:38:22.010000"],["2024-07-24T22:38:23.010000"],["2024-07-24T22:38:24.010000"],["2024-07-24T22:38:25.010000"],["2024-07-24T22:38:26.010000"],["2024-07-24T22:38:27.010000"],["2024-07-24T22:38:28.010000"],["2024-07-24T22:38:29.010000"],["2024-07-24T22:38:30.010000"],["2024-07-24T22:38:31.010000"],["2024-07-24T22:38:32.010000"],["2024-07-24T22:38:33.010000"],["2024-07-24T22:38:34.010000"],["2024-07-24T22:38:35.010000"],["2024-07-24T22:38:36.010000"],["2024-07-24T22:38:37.010000"],["2024-07-24T22:38:38.010000"],["2024-07-24T22:38:39.010000"],["2024-07-24T22:38:40.010000"],["2024-07-24T22:38:41.010000"],["2024-07-24T22:38:42.010000"],["2024-07-24T22:38:43.010000"],["2024-07-24T22:38:44.010000"],["2024-07-24T22:38:45.010000"],["2024-07-24T22:38:46.010000"],["2024-07-24T22:38:47.010000"],["2024-07-24T22:38:48.010000"],["2024-07-24T22:38:49.010000"],["2024-07-24T22:38:50.010000"],["2024-07-24T22:38:51.010000"],["2024-07-24T22:38:52.010000"],["2024-07-24T22:38:53.010000"],["2024-07-24T22:38:54.010000"],["2024-07-24T22:38:55.010000"],["2024-07-24T22:38:56.010000"],["2024-07-24T22:38:57.010000"],["2024-07-24T22:38:58.010000"],["2024-07-24T22:38:59.010000"],["2024-07-24T22:39:00.010000"],["2024-07-24T22:39:01.010000"],["2024-07-24T22:39:02.010000"],["2024-07-24T22:39:03.010000"],["2024-07-24T22:39:04.010000"],["2024-07-24T22:39:05.010000"],["2024-07-24T22:39:06.010000"],["2024-07-24T22:39:07.010000"],["2024-07-24T22:39:08.010000"],["2024-07-24T22:39:09.010000"],["2024-07-24T22:39:10.010000"],["2024-07-24T22:39:11.010000"],["2024-07-24T22:39:12.010000"],["2024-07-24T22:39:13.010000"],["2024-07-24T22:39:14.010000"],["2024-07-24T22:39:15.010000"],["2024-07-24T22:39:16.010000"],["2024-07-24T22:39:17.010000"],["2024-07-24T22:39:18.010000"],["2024-07-24T22:39:19.010000"],["2024-07-24T22:39:20.010000"],["2024-07-24T22:39:21.010000"],["2024-07-24T22:39:22.010000"],["2024-07-24T22:39:23.010000"],["2024-07-24T22:39:24.010000"],["2024-07-24T22:39:25.010000"],["2024-07-24T22:39:26.010000"],["2024-07-24T22:39:27.010000"],["2024-07-24T22:39:28.010000"],["2024-07-24T22:39:29.010000"],["2024-07-24T22:39:30.010000"],["2024-07-24T22:39:31.010000"],["2024-07-24T22:39:32.010000"],["2024-07-24T22:39:33.010000"],["2024-07-24T22:39:34.010000"],["2024-07-24T22:39:35.010000"],["2024-07-24T22:39:36.010000"],["2024-07-24T22:39:37.010000"],["2024-07-24T22:39:38.010000"],["2024-07-24T22:39:39.010000"],["2024-07-24T22:39:40.010000"],["2024-07-24T22:39:41.010000"],["2024-07-24T22:39:42.010000"],["2024-07-24T22:39:43.010000"],["2024-07-24T22:39:44.010000"],["2024-07-24T22:39:45.010000"],["2024-07-24T22:39:46.010000"],["2024-07-24T22:39:47.010000"],["2024-07-24T22:39:48.010000"],["2024-07-24T22:39:49.010000"],["2024-07-24T22:39:50.010000"],["2024-07-24T22:39:51.010000"],["2024-07-24T22:39:52.010000"],["2024-07-24T22:39:53.010000"],["2024-07-24T22:39:54.010000"],["2024-07-24T22:39:55.010000"],["2024-07-24T22:39:56.010000"],["2024-07-24T22:39:57.010000"],["2024-07-24T22:39:58.010000"],["2024-07-24T22:39:59.010000"],["2024-07-24T22:40:00.010000"],["2024-07-24T22:40:01.010000"],["2024-07-24T22:40:02.010000"],["2024-07-24T22:40:03.010000"],["2024-07-24T22:40:04.010000"],["2024-07-24T22:40:05.010000"],["2024-07-24T22:40:06.010000"],["2024-07-24T22:40:07.010000"],["2024-07-24T22:40:08.010000"],["2024-07-24T22:40:09.010000"],["2024-07-24T22:40:10.010000"],["2024-07-24T22:40:11.010000"],["2024-07-24T22:40:12.010000"],["2024-07-24T22:40:13.010000"],["2024-07-24T22:40:14.010000"],["2024-07-24T22:40:15.010000"],["2024-07-24T22:40:16.010000"],["2024-07-24T22:40:17.010000"],["2024-07-24T22:40:18.010000"],["2024-07-24T22:40:19.010000"],["2024-07-24T22:40:20.010000"],["2024-07-24T22:40:21.010000"],["2024-07-24T22:40:22.010000"],["2024-07-24T22:40:23.010000"],["2024-07-24T22:40:24.010000"],["2024-07-24T22:40:25.010000"],["2024-07-24T22:40:26.010000"],["2024-07-24T22:40:27.010000"],["2024-07-24T22:40:28.010000"],["2024-07-24T22:40:29.010000"],["2024-07-24T22:40:30.010000"],["2024-07-24T22:40:31.010000"],["2024-07-24T22:40:32.010000"],["2024-07-24T22:40:33.010000"],["2024-07-24T22:40:34.010000"],["2024-07-24T22:40:35.010000"],["2024-07-24T22:40:36.010000"],["2024-07-24T22:40:37.010000"],["2024-07-24T22:40:38.010000"],["2024-07-24T22:40:39.010000"],["2024-07-24T22:40:40.010000"],["2024-07-24T22:40:41.010000"],["2024-07-24T22:40:42.010000"],["2024-07-24T22:40:43.010000"],["2024-07-24T22:40:44.010000"],["2024-07-24T22:40:45.010000"],["2024-07-24T22:40:46.010000"],["2024-07-24T22:40:47.010000"],["2024-07-24T22:40:48.010000"],["2024-07-24T22:40:49.010000"],["2024-07-24T22:40:50.010000"],["2024-07-24T22:40:51.010000"],["2024-07-24T22:40:52.010000"],["2024-07-24T22:40:53.010000"],["2024-07-24T22:40:54.010000"],["2024-07-24T22:40:55.010000"],["2024-07-24T22:40:56.010000"],["2024-07-24T22:40:57.010000"],["2024-07-24T22:40:58.010000"],["2024-07-24T22:40:59.010000"],["2024-07-24T22:41:00.010000"],["2024-07-24T22:41:01.010000"],["2024-07-24T22:41:02.010000"],["2024-07-24T22:41:03.010000"],["2024-07-24T22:41:04.010000"],["2024-07-24T22:41:05.010000"],["2024-07-24T22:41:06.010000"],["2024-07-24T22:41:07.010000"],["2024-07-24T22:41:08.010000"],["2024-07-24T22:41:09.010000"],["2024-07-24T22:41:10.010000"],["2024-07-24T22:41:11.010000"],["2024-07-24T22:41:12.010000"],["2024-07-24T22:41:13.010000"],["2024-07-24T22:41:14.010000"],["2024-07-24T22:41:15.010000"],["2024-07-24T22:41:16.010000"],["2024-07-24T22:41:17.010000"],["2024-07-24T22:41:18.010000"],["2024-07-24T22:41:19.010000"],["2024-07-24T22:41:20.010000"],["2024-07-24T22:41:21.010000"],["2024-07-24T22:41:22.010000"],["2024-07-24T22:41:23.010000"],["2024-07-24T22:41:24.010000"],["2024-07-24T22:41:25.010000"],["2024-07-24T22:41:26.010000"],["2024-07-24T22:41:27.010000"],["2024-07-24T22:41:28.010000"],["2024-07-24T22:41:29.010000"],["2024-07-24T22:41:30.010000"],["2024-07-24T22:41:31.010000"],["2024-07-24T22:41:32.010000"],["2024-07-24T22:41:33.010000"],["2024-07-24T22:41:34.010000"],["2024-07-24T22:41:35.010000"],["2024-07-24T22:41:36.010000"],["2024-07-24T22:41:37.010000"],["2024-07-24T22:41:38.010000"],["2024-07-24T22:41:39.010000"],["2024-07-24T22:41:40.010000"],["2024-07-24T22:41:41.010000"],["2024-07-24T22:41:42.010000"],["2024-07-24T22:41:43.010000"],["2024-07-24T22:41:44.010000"],["2024-07-24T22:41:45.010000"],["2024-07-24T22:41:46.010000"],["2024-07-24T22:41:47.010000"],["2024-07-24T22:41:48.010000"],["2024-07-24T22:41:49.010000"],["2024-07-24T22:41:50.010000"],["2024-07-24T22:41:51.010000"],["2024-07-24T22:41:52.010000"],["2024-07-24T22:41:53.010000"],["2024-07-24T22:41:54.010000"],["2024-07-24T22:41:55.010000"],["2024-07-24T22:41:56.010000"],["2024-07-24T22:41:57.010000"],["2024-07-24T22:41:58.010000"],["2024-07-24T22:41:59.010000"],["2024-07-24T22:42:00.010000"],["2024-07-24T22:42:01.010000"],["2024-07-24T22:42:02.010000"],["2024-07-24T22:42:03.010000"],["2024-07-24T22:42:04.010000"],["2024-07-24T22:42:05.010000"],["2024-07-24T22:42:06.010000"],["2024-07-24T22:42:07.010000"],["2024-07-24T22:42:08.010000"],["2024-07-24T22:42:09.010000"],["2024-07-24T22:42:10.010000"],["2024-07-24T22:42:11.010000"],["2024-07-24T22:42:12.010000"],["2024-07-24T22:42:13.010000"],["2024-07-24T22:42:14.010000"],["2024-07-24T22:42:15.010000"],["2024-07-24T22:42:16.010000"],["2024-07-24T22:42:17.010000"],["2024-07-24T22:42:18.010000"],["2024-07-24T22:42:19.010000"],["2024-07-24T22:42:20.010000"],["2024-07-24T22:42:21.010000"],["2024-07-24T22:42:22.010000"],["2024-07-24T22:42:23.010000"],["2024-07-24T22:42:24.010000"],["2024-07-24T22:42:25.010000"],["2024-07-24T22:42:26.010000"],["2024-07-24T22:42:27.010000"],["2024-07-24T22:42:28.010000"],["2024-07-24T22:42:29.010000"],["2024-07-24T22:42:30.010000"],["2024-07-24T22:42:31.010000"],["2024-07-24T22:42:32.010000"],["2024-07-24T22:42:33.010000"],["2024-07-24T22:42:34.010000"],["2024-07-24T22:42:35.010000"],["2024-07-24T22:42:36.010000"],["2024-07-24T22:42:37.010000"],["2024-07-24T22:42:38.010000"],["2024-07-24T22:42:39.010000"],["2024-07-24T22:42:40.010000"],["2024-07-24T22:42:41.010000"],["2024-07-24T22:42:42.010000"],["2024-07-24T22:42:43.010000"],["2024-07-24T22:42:44.010000"],["2024-07-24T22:42:45.010000"],["2024-07-24T22:42:46.010000"],["2024-07-24T22:42:47.010000"],["2024-07-24T22:42:48.010000"],["2024-07-24T22:42:49.010000"],["2024-07-24T22:42:50.010000"],["2024-07-24T22:42:51.010000"],["2024-07-24T22:42:52.010000"],["2024-07-24T22:42:53.010000"],["2024-07-24T22:42:54.010000"],["2024-07-24T22:42:55.010000"],["2024-07-24T22:42:56.010000"],["2024-07-24T22:42:57.010000"],["2024-07-24T22:42:58.010000"],["2024-07-24T22:42:59.010000"],["2024-07-24T22:43:00.010000"],["2024-07-24T22:43:01.010000"],["2024-07-24T22:43:02.010000"],["2024-07-24T22:43:03.010000"],["2024-07-24T22:43:04.010000"],["2024-07-24T22:43:05.010000"],["2024-07-24T22:43:06.010000"],["2024-07-24T22:43:07.010000"],["2024-07-24T22:43:08.010000"],["2024-07-24T22:43:09.010000"],["2024-07-24T22:43:10.010000"],["2024-07-24T22:43:11.010000"],["2024-07-24T22:43:12.010000"],["2024-07-24T22:43:13.010000"],["2024-07-24T22:43:14.010000"],["2024-07-24T22:43:15.010000"],["2024-07-24T22:43:16.010000"],["2024-07-24T22:43:17.010000"],["2024-07-24T22:43:18.010000"],["2024-07-24T22:43:19.010000"],["2024-07-24T22:43:20.010000"],["2024-07-24T22:43:21.010000"],["2024-07-24T22:43:22.010000"],["2024-07-24T22:43:23.010000"],["2024-07-24T22:43:24.010000"],["2024-07-24T22:43:25.010000"],["2024-07-24T22:43:26.010000"],["2024-07-24T22:43:27.010000"],["2024-07-24T22:43:28.010000"],["2024-07-24T22:43:29.010000"],["2024-07-24T22:43:30.010000"],["2024-07-24T22:43:31.010000"],["2024-07-24T22:43:32.010000"],["2024-07-24T22:43:33.010000"],["2024-07-24T22:43:34.010000"],["2024-07-24T22:43:35.010000"],["2024-07-24T22:43:36.010000"],["2024-07-24T22:43:37.010000"],["2024-07-24T22:43:38.010000"],["2024-07-24T22:43:39.010000"],["2024-07-24T22:43:40.010000"],["2024-07-24T22:43:41.010000"],["2024-07-24T22:43:42.010000"],["2024-07-24T22:43:43.010000"],["2024-07-24T22:43:44.010000"],["2024-07-24T22:43:45.010000"],["2024-07-24T22:43:46.010000"],["2024-07-24T22:43:47.010000"],["2024-07-24T22:43:48.010000"],["2024-07-24T22:43:49.010000"],["2024-07-24T22:43:50.010000"],["2024-07-24T22:43:51.010000"],["2024-07-24T22:43:52.010000"],["2024-07-24T22:43:53.010000"],["2024-07-24T22:43:54.010000"],["2024-07-24T22:43:55.010000"],["2024-07-24T22:43:56.010000"],["2024-07-24T22:43:57.010000"],["2024-07-24T22:43:58.010000"],["2024-07-24T22:43:59.010000"],["2024-07-24T22:44:00.010000"],["2024-07-24T22:44:01.010000"],["2024-07-24T22:44:02.010000"],["2024-07-24T22:44:03.010000"],["2024-07-24T22:44:04.010000"],["2024-07-24T22:44:05.010000"],["2024-07-24T22:44:06.010000"],["2024-07-24T22:44:07.010000"],["2024-07-24T22:44:08.010000"],["2024-07-24T22:44:09.010000"],["2024-07-24T22:44:10.010000"],["2024-07-24T22:44:11.010000"],["2024-07-24T22:44:12.010000"],["2024-07-24T22:44:13.010000"],["2024-07-24T22:44:14.010000"],["2024-07-24T22:44:15.010000"],["2024-07-24T22:44:16.010000"],["2024-07-24T22:44:17.010000"],["2024-07-24T22:44:18.010000"],["2024-07-24T22:44:19.010000"],["2024-07-24T22:44:20.010000"],["2024-07-24T22:44:21.010000"],["2024-07-24T22:44:22.010000"],["2024-07-24T22:44:23.010000"],["2024-07-24T22:44:24.010000"],["2024-07-24T22:44:25.010000"],["2024-07-24T22:44:26.010000"],["2024-07-24T22:44:27.010000"],["2024-07-24T22:44:28.010000"],["2024-07-24T22:44:29.010000"],["2024-07-24T22:44:30.010000"],["2024-07-24T22:44:31.010000"],["2024-07-24T22:44:32.010000"],["2024-07-24T22:44:33.010000"],["2024-07-24T22:44:34.010000"],["2024-07-24T22:44:35.010000"],["2024-07-24T22:44:36.010000"],["2024-07-24T22:44:37.010000"],["2024-07-24T22:44:38.010000"],["2024-07-24T22:44:39.010000"],["2024-07-24T22:44:40.010000"],["2024-07-24T22:44:41.010000"],["2024-07-24T22:44:42.010000"],["2024-07-24T22:44:43.010000"],["2024-07-24T22:44:44.010000"],["2024-07-24T22:44:45.010000"],["2024-07-24T22:44:46.010000"],["2024-07-24T22:44:47.010000"],["2024-07-24T22:44:48.010000"],["2024-07-24T22:44:49.010000"],["2024-07-24T22:44:50.010000"],["2024-07-24T22:44:51.010000"],["2024-07-24T22:44:52.010000"],["2024-07-24T22:44:53.010000"],["2024-07-24T22:44:54.010000"],["2024-07-24T22:44:55.010000"],["2024-07-24T22:44:56.010000"],["2024-07-24T22:44:57.010000"],["2024-07-24T22:44:58.010000"],["2024-07-24T22:44:59.010000"],["2024-07-24T22:45:00.010000"],["2024-07-24T22:45:01.010000"],["2024-07-24T22:45:02.010000"],["2024-07-24T22:45:03.010000"],["2024-07-24T22:45:04.010000"],["2024-07-24T22:45:05.010000"],["2024-07-24T22:45:06.010000"],["2024-07-24T22:45:07.010000"],["2024-07-24T22:45:08.010000"],["2024-07-24T22:45:09.010000"],["2024-07-24T22:45:10.010000"],["2024-07-24T22:45:11.010000"],["2024-07-24T22:45:12.010000"],["2024-07-24T22:45:13.010000"],["2024-07-24T22:45:14.010000"],["2024-07-24T22:45:15.010000"],["2024-07-24T22:45:16.010000"],["2024-07-24T22:45:17.010000"],["2024-07-24T22:45:18.010000"],["2024-07-24T22:45:19.010000"],["2024-07-24T22:45:20.010000"],["2024-07-24T22:45:21.010000"],["2024-07-24T22:45:22.010000"],["2024-07-24T22:45:23.010000"],["2024-07-24T22:45:24.010000"],["2024-07-24T22:45:25.010000"],["2024-07-24T22:45:26.010000"],["2024-07-24T22:45:27.010000"],["2024-07-24T22:45:28.010000"],["2024-07-24T22:45:29.010000"],["2024-07-24T22:45:30.010000"],["2024-07-24T22:45:31.010000"],["2024-07-24T22:45:32.010000"],["2024-07-24T22:45:33.010000"],["2024-07-24T22:45:34.010000"],["2024-07-24T22:45:35.010000"],["2024-07-24T22:45:36.010000"],["2024-07-24T22:45:37.010000"],["2024-07-24T22:45:38.010000"],["2024-07-24T22:45:39.010000"],["2024-07-24T22:45:40.010000"],["2024-07-24T22:45:41.010000"],["2024-07-24T22:45:42.010000"],["2024-07-24T22:45:43.010000"],["2024-07-24T22:45:44.010000"],["2024-07-24T22:45:45.010000"],["2024-07-24T22:45:46.010000"],["2024-07-24T22:45:47.010000"],["2024-07-24T22:45:48.010000"],["2024-07-24T22:45:49.010000"],["2024-07-24T22:45:50.010000"],["2024-07-24T22:45:51.010000"],["2024-07-24T22:45:52.010000"],["2024-07-24T22:45:53.010000"],["2024-07-24T22:45:54.010000"],["2024-07-24T22:45:55.010000"],["2024-07-24T22:45:56.010000"],["2024-07-24T22:45:57.010000"],["2024-07-24T22:45:58.010000"],["2024-07-24T22:45:59.010000"],["2024-07-24T22:46:00.010000"],["2024-07-24T22:46:01.010000"],["2024-07-24T22:46:02.010000"],["2024-07-24T22:46:03.010000"],["2024-07-24T22:46:04.010000"],["2024-07-24T22:46:05.010000"],["2024-07-24T22:46:06.010000"],["2024-07-24T22:46:07.010000"],["2024-07-24T22:46:08.010000"],["2024-07-24T22:46:09.010000"],["2024-07-24T22:46:10.010000"],["2024-07-24T22:46:11.010000"],["2024-07-24T22:46:12.010000"],["2024-07-24T22:46:13.010000"],["2024-07-24T22:46:14.010000"],["2024-07-24T22:46:15.010000"],["2024-07-24T22:46:16.010000"],["2024-07-24T22:46:17.010000"],["2024-07-24T22:46:18.010000"],["2024-07-24T22:46:19.010000"],["2024-07-24T22:46:20.010000"],["2024-07-24T22:46:21.010000"],["2024-07-24T22:46:22.010000"],["2024-07-24T22:46:23.010000"],["2024-07-24T22:46:24.010000"],["2024-07-24T22:46:25.010000"],["2024-07-24T22:46:26.010000"],["2024-07-24T22:46:27.010000"],["2024-07-24T22:46:28.010000"],["2024-07-24T22:46:29.010000"],["2024-07-24T22:46:30.010000"],["2024-07-24T22:46:31.010000"],["2024-07-24T22:46:32.010000"],["2024-07-24T22:46:33.010000"],["2024-07-24T22:46:34.010000"],["2024-07-24T22:46:35.010000"],["2024-07-24T22:46:36.010000"],["2024-07-24T22:46:37.010000"],["2024-07-24T22:46:38.010000"],["2024-07-24T22:46:39.010000"],["2024-07-24T22:46:40.010000"],["2024-07-24T22:46:41.010000"],["2024-07-24T22:46:42.010000"],["2024-07-24T22:46:43.010000"],["2024-07-24T22:46:44.010000"],["2024-07-24T22:46:45.010000"],["2024-07-24T22:46:46.010000"],["2024-07-24T22:46:47.010000"],["2024-07-24T22:46:48.010000"],["2024-07-24T22:46:49.010000"],["2024-07-24T22:46:50.010000"],["2024-07-24T22:46:51.010000"],["2024-07-24T22:46:52.010000"],["2024-07-24T22:46:53.010000"],["2024-07-24T22:46:54.010000"],["2024-07-24T22:46:55.010000"],["2024-07-24T22:46:56.010000"],["2024-07-24T22:46:57.010000"],["2024-07-24T22:46:58.010000"],["2024-07-24T22:46:59.010000"],["2024-07-24T22:47:00.010000"],["2024-07-24T22:47:01.010000"],["2024-07-24T22:47:02.010000"],["2024-07-24T22:47:03.010000"],["2024-07-24T22:47:04.010000"],["2024-07-24T22:47:05.010000"],["2024-07-24T22:47:06.010000"],["2024-07-24T22:47:07.010000"],["2024-07-24T22:47:08.010000"],["2024-07-24T22:47:09.010000"],["2024-07-24T22:47:10.010000"],["2024-07-24T22:47:11.010000"],["2024-07-24T22:47:12.010000"],["2024-07-24T22:47:13.010000"],["2024-07-24T22:47:14.010000"],["2024-07-24T22:47:15.010000"],["2024-07-24T22:47:16.010000"],["2024-07-24T22:47:17.010000"],["2024-07-24T22:47:18.010000"],["2024-07-24T22:47:19.010000"],["2024-07-24T22:47:20.010000"],["2024-07-24T22:47:21.010000"],["2024-07-24T22:47:22.010000"],["2024-07-24T22:47:23.010000"],["2024-07-24T22:47:24.010000"],["2024-07-24T22:47:25.010000"],["2024-07-24T22:47:26.010000"],["2024-07-24T22:47:27.010000"],["2024-07-24T22:47:28.010000"],["2024-07-24T22:47:29.010000"],["2024-07-24T22:47:30.010000"],["2024-07-24T22:47:31.010000"],["2024-07-24T22:47:32.010000"],["2024-07-24T22:47:33.010000"],["2024-07-24T22:47:34.010000"],["2024-07-24T22:47:35.010000"],["2024-07-24T22:47:36.010000"],["2024-07-24T22:47:37.010000"],["2024-07-24T22:47:38.010000"],["2024-07-24T22:47:39.010000"],["2024-07-24T22:47:40.010000"],["2024-07-24T22:47:41.010000"],["2024-07-24T22:47:42.010000"],["2024-07-24T22:47:43.010000"],["2024-07-24T22:47:44.010000"],["2024-07-24T22:47:45.010000"],["2024-07-24T22:47:46.010000"],["2024-07-24T22:47:47.010000"],["2024-07-24T22:47:48.010000"],["2024-07-24T22:47:49.010000"],["2024-07-24T22:47:50.010000"],["2024-07-24T22:47:51.010000"],["2024-07-24T22:47:52.010000"],["2024-07-24T22:47:53.010000"],["2024-07-24T22:47:54.010000"],["2024-07-24T22:47:55.010000"],["2024-07-24T22:47:56.010000"],["2024-07-24T22:47:57.010000"],["2024-07-24T22:47:58.010000"],["2024-07-24T22:47:59.010000"],["2024-07-24T22:48:00.010000"],["2024-07-24T22:48:01.010000"],["2024-07-24T22:48:02.010000"],["2024-07-24T22:48:03.010000"],["2024-07-24T22:48:04.010000"],["2024-07-24T22:48:05.010000"],["2024-07-24T22:48:06.010000"],["2024-07-24T22:48:07.010000"],["2024-07-24T22:48:08.010000"],["2024-07-24T22:48:09.010000"],["2024-07-24T22:48:10.010000"],["2024-07-24T22:48:11.010000"],["2024-07-24T22:48:12.010000"],["2024-07-24T22:48:13.010000"],["2024-07-24T22:48:14.010000"],["2024-07-24T22:48:15.010000"],["2024-07-24T22:48:16.010000"],["2024-07-24T22:48:17.010000"],["2024-07-24T22:48:18.010000"],["2024-07-24T22:48:19.010000"],["2024-07-24T22:48:20.010000"],["2024-07-24T22:48:21.010000"],["2024-07-24T22:48:22.010000"],["2024-07-24T22:48:23.010000"],["2024-07-24T22:48:24.010000"],["2024-07-24T22:48:25.010000"],["2024-07-24T22:48:26.010000"],["2024-07-24T22:48:27.010000"],["2024-07-24T22:48:28.010000"],["2024-07-24T22:48:29.010000"],["2024-07-24T22:48:30.010000"],["2024-07-24T22:48:31.010000"],["2024-07-24T22:48:32.010000"],["2024-07-24T22:48:33.010000"],["2024-07-24T22:48:34.010000"],["2024-07-24T22:48:35.010000"],["2024-07-24T22:48:36.010000"],["2024-07-24T22:48:37.010000"],["2024-07-24T22:48:38.010000"],["2024-07-24T22:48:39.010000"],["2024-07-24T22:48:40.010000"],["2024-07-24T22:48:41.010000"],["2024-07-24T22:48:42.010000"],["2024-07-24T22:48:43.010000"],["2024-07-24T22:48:44.010000"],["2024-07-24T22:48:45.010000"],["2024-07-24T22:48:46.010000"],["2024-07-24T22:48:47.010000"],["2024-07-24T22:48:48.010000"],["2024-07-24T22:48:49.010000"],["2024-07-24T22:48:50.010000"],["2024-07-24T22:48:51.010000"],["2024-07-24T22:48:52.010000"],["2024-07-24T22:48:53.010000"],["2024-07-24T22:48:54.010000"],["2024-07-24T22:48:55.010000"],["2024-07-24T22:48:56.010000"],["2024-07-24T22:48:57.010000"],["2024-07-24T22:48:58.010000"],["2024-07-24T22:48:59.010000"],["2024-07-24T22:49:00.010000"],["2024-07-24T22:49:01.010000"],["2024-07-24T22:49:02.010000"],["2024-07-24T22:49:03.010000"],["2024-07-24T22:49:04.010000"],["2024-07-24T22:49:05.010000"],["2024-07-24T22:49:06.010000"],["2024-07-24T22:49:07.010000"],["2024-07-24T22:49:08.010000"],["2024-07-24T22:49:09.010000"],["2024-07-24T22:49:10.010000"],["2024-07-24T22:49:11.010000"],["2024-07-24T22:49:12.010000"],["2024-07-24T22:49:13.010000"],["2024-07-24T22:49:14.010000"],["2024-07-24T22:49:15.010000"],["2024-07-24T22:49:16.010000"],["2024-07-24T22:49:17.010000"],["2024-07-24T22:49:18.010000"],["2024-07-24T22:49:19.010000"],["2024-07-24T22:49:20.010000"],["2024-07-24T22:49:21.010000"],["2024-07-24T22:49:22.010000"],["2024-07-24T22:49:23.010000"],["2024-07-24T22:49:24.010000"],["2024-07-24T22:49:25.010000"],["2024-07-24T22:49:26.010000"],["2024-07-24T22:49:27.010000"],["2024-07-24T22:49:28.010000"],["2024-07-24T22:49:29.010000"],["2024-07-24T22:49:30.010000"],["2024-07-24T22:49:31.010000"],["2024-07-24T22:49:32.010000"],["2024-07-24T22:49:33.010000"],["2024-07-24T22:49:34.010000"],["2024-07-24T22:49:35.010000"],["2024-07-24T22:49:36.010000"],["2024-07-24T22:49:37.010000"],["2024-07-24T22:49:38.010000"],["2024-07-24T22:49:39.010000"],["2024-07-24T22:49:40.010000"],["2024-07-24T22:49:41.010000"],["2024-07-24T22:49:42.010000"],["2024-07-24T22:49:43.010000"],["2024-07-24T22:49:44.010000"],["2024-07-24T22:49:45.010000"],["2024-07-24T22:49:46.010000"],["2024-07-24T22:49:47.010000"],["2024-07-24T22:49:48.010000"],["2024-07-24T22:49:49.010000"],["2024-07-24T22:49:50.010000"],["2024-07-24T22:49:51.010000"],["2024-07-24T22:49:52.010000"],["2024-07-24T22:49:53.010000"],["2024-07-24T22:49:54.010000"],["2024-07-24T22:49:55.010000"],["2024-07-24T22:49:56.010000"],["2024-07-24T22:49:57.010000"],["2024-07-24T22:49:58.010000"],["2024-07-24T22:49:59.010000"],["2024-07-24T22:50:00.010000"],["2024-07-24T22:50:01.010000"],["2024-07-24T22:50:02.010000"],["2024-07-24T22:50:03.010000"],["2024-07-24T22:50:04.010000"],["2024-07-24T22:50:05.010000"],["2024-07-24T22:50:06.010000"],["2024-07-24T22:50:07.010000"],["2024-07-24T22:50:08.010000"],["2024-07-24T22:50:09.010000"],["2024-07-24T22:50:10.010000"],["2024-07-24T22:50:11.010000"],["2024-07-24T22:50:12.010000"],["2024-07-24T22:50:13.010000"],["2024-07-24T22:50:14.010000"],["2024-07-24T22:50:15.010000"],["2024-07-24T22:50:16.010000"],["2024-07-24T22:50:17.010000"],["2024-07-24T22:50:18.010000"],["2024-07-24T22:50:19.010000"],["2024-07-24T22:50:20.010000"],["2024-07-24T22:50:21.010000"],["2024-07-24T22:50:22.010000"],["2024-07-24T22:50:23.010000"],["2024-07-24T22:50:24.010000"],["2024-07-24T22:50:25.010000"],["2024-07-24T22:50:26.010000"],["2024-07-24T22:50:27.010000"],["2024-07-24T22:50:28.010000"],["2024-07-24T22:50:29.010000"],["2024-07-24T22:50:30.010000"],["2024-07-24T22:50:31.010000"],["2024-07-24T22:50:32.010000"],["2024-07-24T22:50:33.010000"],["2024-07-24T22:50:34.010000"],["2024-07-24T22:50:35.010000"],["2024-07-24T22:50:36.010000"],["2024-07-24T22:50:37.010000"],["2024-07-24T22:50:38.010000"],["2024-07-24T22:50:39.010000"],["2024-07-24T22:50:40.010000"],["2024-07-24T22:50:41.010000"],["2024-07-24T22:50:42.010000"],["2024-07-24T22:50:43.010000"],["2024-07-24T22:50:44.010000"],["2024-07-24T22:50:45.010000"],["2024-07-24T22:50:46.010000"],["2024-07-24T22:50:47.010000"],["2024-07-24T22:50:48.010000"],["2024-07-24T22:50:49.010000"],["2024-07-24T22:50:50.010000"],["2024-07-24T22:50:51.010000"],["2024-07-24T22:50:52.010000"],["2024-07-24T22:50:53.010000"],["2024-07-24T22:50:54.010000"],["2024-07-24T22:50:55.010000"],["2024-07-24T22:50:56.010000"],["2024-07-24T22:50:57.010000"],["2024-07-24T22:50:58.010000"],["2024-07-24T22:50:59.010000"],["2024-07-24T22:51:00.010000"],["2024-07-24T22:51:01.010000"],["2024-07-24T22:51:02.010000"],["2024-07-24T22:51:03.010000"],["2024-07-24T22:51:04.010000"],["2024-07-24T22:51:05.010000"],["2024-07-24T22:51:06.010000"],["2024-07-24T22:51:07.010000"],["2024-07-24T22:51:08.010000"],["2024-07-24T22:51:09.010000"],["2024-07-24T22:51:10.010000"],["2024-07-24T22:51:11.010000"],["2024-07-24T22:51:12.010000"],["2024-07-24T22:51:13.010000"],["2024-07-24T22:51:14.010000"],["2024-07-24T22:51:15.010000"],["2024-07-24T22:51:16.010000"],["2024-07-24T22:51:17.010000"],["2024-07-24T22:51:18.010000"],["2024-07-24T22:51:19.010000"],["2024-07-24T22:51:20.010000"],["2024-07-24T22:51:21.010000"],["2024-07-24T22:51:22.010000"],["2024-07-24T22:51:23.010000"],["2024-07-24T22:51:24.010000"],["2024-07-24T22:51:25.010000"],["2024-07-24T22:51:26.010000"],["2024-07-24T22:51:27.010000"],["2024-07-24T22:51:28.010000"],["2024-07-24T22:51:29.010000"],["2024-07-24T22:51:30.010000"],["2024-07-24T22:51:31.010000"],["2024-07-24T22:51:32.010000"],["2024-07-24T22:51:33.010000"],["2024-07-24T22:51:34.010000"],["2024-07-24T22:51:35.010000"],["2024-07-24T22:51:36.010000"],["2024-07-24T22:51:37.010000"],["2024-07-24T22:51:38.010000"],["2024-07-24T22:51:39.010000"],["2024-07-24T22:51:40.010000"],["2024-07-24T22:51:41.010000"],["2024-07-24T22:51:42.010000"],["2024-07-24T22:51:43.010000"],["2024-07-24T22:51:44.010000"],["2024-07-24T22:51:45.010000"],["2024-07-24T22:51:46.010000"],["2024-07-24T22:51:47.010000"],["2024-07-24T22:51:48.010000"],["2024-07-24T22:51:49.010000"],["2024-07-24T22:51:50.010000"],["2024-07-24T22:51:51.010000"],["2024-07-24T22:51:52.010000"],["2024-07-24T22:51:53.010000"],["2024-07-24T22:51:54.010000"],["2024-07-24T22:51:55.010000"],["2024-07-24T22:51:56.010000"],["2024-07-24T22:51:57.010000"],["2024-07-24T22:51:58.010000"],["2024-07-24T22:51:59.010000"],["2024-07-24T22:52:00.010000"],["2024-07-24T22:52:01.010000"],["2024-07-24T22:52:02.010000"],["2024-07-24T22:52:03.010000"],["2024-07-24T22:52:04.010000"],["2024-07-24T22:52:05.010000"],["2024-07-24T22:52:06.010000"],["2024-07-24T22:52:07.010000"],["2024-07-24T22:52:08.010000"],["2024-07-24T22:52:09.010000"],["2024-07-24T22:52:10.010000"],["2024-07-24T22:52:11.010000"],["2024-07-24T22:52:12.010000"],["2024-07-24T22:52:13.010000"],["2024-07-24T22:52:14.010000"],["2024-07-24T22:52:15.010000"],["2024-07-24T22:52:16.010000"],["2024-07-24T22:52:17.010000"],["2024-07-24T22:52:18.010000"],["2024-07-24T22:52:19.010000"],["2024-07-24T22:52:20.010000"],["2024-07-24T22:52:21.010000"],["2024-07-24T22:52:22.010000"],["2024-07-24T22:52:23.010000"],["2024-07-24T22:52:24.010000"],["2024-07-24T22:52:25.010000"],["2024-07-24T22:52:26.010000"],["2024-07-24T22:52:27.010000"],["2024-07-24T22:52:28.010000"],["2024-07-24T22:52:29.010000"],["2024-07-24T22:52:30.010000"],["2024-07-24T22:52:31.010000"],["2024-07-24T22:52:32.010000"],["2024-07-24T22:52:33.010000"],["2024-07-24T22:52:34.010000"],["2024-07-24T22:52:35.010000"],["2024-07-24T22:52:36.010000"],["2024-07-24T22:52:37.010000"],["2024-07-24T22:52:38.010000"],["2024-07-24T22:52:39.010000"],["2024-07-24T22:52:40.010000"],["2024-07-24T22:52:41.010000"],["2024-07-24T22:52:42.010000"],["2024-07-24T22:52:43.010000"],["2024-07-24T22:52:44.010000"],["2024-07-24T22:52:45.010000"],["2024-07-24T22:52:46.010000"],["2024-07-24T22:52:47.010000"],["2024-07-24T22:52:48.010000"],["2024-07-24T22:52:49.010000"],["2024-07-24T22:52:50.010000"],["2024-07-24T22:52:51.010000"],["2024-07-24T22:52:52.010000"],["2024-07-24T22:52:53.010000"],["2024-07-24T22:52:54.010000"],["2024-07-24T22:52:55.010000"],["2024-07-24T22:52:56.010000"],["2024-07-24T22:52:57.010000"],["2024-07-24T22:52:58.010000"],["2024-07-24T22:52:59.010000"],["2024-07-24T22:53:00.010000"],["2024-07-24T22:53:01.010000"],["2024-07-24T22:53:02.010000"],["2024-07-24T22:53:03.010000"],["2024-07-24T22:53:04.010000"],["2024-07-24T22:53:05.010000"],["2024-07-24T22:53:06.010000"],["2024-07-24T22:53:07.010000"],["2024-07-24T22:53:08.010000"],["2024-07-24T22:53:09.010000"],["2024-07-24T22:53:10.010000"],["2024-07-24T22:53:11.010000"],["2024-07-24T22:53:12.010000"],["2024-07-24T22:53:13.010000"],["2024-07-24T22:53:14.010000"],["2024-07-24T22:53:15.010000"],["2024-07-24T22:53:16.010000"],["2024-07-24T22:53:17.010000"],["2024-07-24T22:53:18.010000"],["2024-07-24T22:53:19.010000"],["2024-07-24T22:53:20.010000"],["2024-07-24T22:53:21.010000"],["2024-07-24T22:53:22.010000"],["2024-07-24T22:53:23.010000"],["2024-07-24T22:53:24.010000"],["2024-07-24T22:53:25.010000"],["2024-07-24T22:53:26.010000"],["2024-07-24T22:53:27.010000"],["2024-07-24T22:53:28.010000"],["2024-07-24T22:53:29.010000"],["2024-07-24T22:53:30.010000"],["2024-07-24T22:53:31.010000"],["2024-07-24T22:53:32.010000"],["2024-07-24T22:53:33.010000"],["2024-07-24T22:53:34.010000"],["2024-07-24T22:53:35.010000"],["2024-07-24T22:53:36.010000"],["2024-07-24T22:53:37.010000"],["2024-07-24T22:53:38.010000"],["2024-07-24T22:53:39.010000"],["2024-07-24T22:53:40.010000"],["2024-07-24T22:53:41.010000"],["2024-07-24T22:53:42.010000"],["2024-07-24T22:53:43.010000"],["2024-07-24T22:53:44.010000"],["2024-07-24T22:53:45.010000"],["2024-07-24T22:53:46.010000"],["2024-07-24T22:53:47.010000"],["2024-07-24T22:53:48.010000"],["2024-07-24T22:53:49.010000"],["2024-07-24T22:53:50.010000"],["2024-07-24T22:53:51.010000"],["2024-07-24T22:53:52.010000"],["2024-07-24T22:53:53.010000"],["2024-07-24T22:53:54.010000"],["2024-07-24T22:53:55.010000"],["2024-07-24T22:53:56.010000"],["2024-07-24T22:53:57.010000"],["2024-07-24T22:53:58.010000"],["2024-07-24T22:53:59.010000"],["2024-07-24T22:54:00.010000"],["2024-07-24T22:54:01.010000"],["2024-07-24T22:54:02.010000"],["2024-07-24T22:54:03.010000"],["2024-07-24T22:54:04.010000"],["2024-07-24T22:54:05.010000"],["2024-07-24T22:54:06.010000"],["2024-07-24T22:54:07.010000"],["2024-07-24T22:54:08.010000"],["2024-07-24T22:54:09.010000"],["2024-07-24T22:54:10.010000"],["2024-07-24T22:54:11.010000"],["2024-07-24T22:54:12.010000"],["2024-07-24T22:54:13.010000"],["2024-07-24T22:54:14.010000"],["2024-07-24T22:54:15.010000"],["2024-07-24T22:54:16.010000"],["2024-07-24T22:54:17.010000"],["2024-07-24T22:54:18.010000"],["2024-07-24T22:54:19.010000"],["2024-07-24T22:54:20.010000"],["2024-07-24T22:54:21.010000"],["2024-07-24T22:54:22.010000"],["2024-07-24T22:54:23.010000"],["2024-07-24T22:54:24.010000"],["2024-07-24T22:54:25.010000"],["2024-07-24T22:54:26.010000"],["2024-07-24T22:54:27.010000"],["2024-07-24T22:54:28.010000"],["2024-07-24T22:54:29.010000"],["2024-07-24T22:54:30.010000"],["2024-07-24T22:54:31.010000"],["2024-07-24T22:54:32.010000"],["2024-07-24T22:54:33.010000"],["2024-07-24T22:54:34.010000"],["2024-07-24T22:54:35.010000"],["2024-07-24T22:54:36.010000"],["2024-07-24T22:54:37.010000"],["2024-07-24T22:54:38.010000"],["2024-07-24T22:54:39.010000"],["2024-07-24T22:54:40.010000"],["2024-07-24T22:54:41.010000"],["2024-07-24T22:54:42.010000"],["2024-07-24T22:54:43.010000"],["2024-07-24T22:54:44.010000"],["2024-07-24T22:54:45.010000"],["2024-07-24T22:54:46.010000"],["2024-07-24T22:54:47.010000"],["2024-07-24T22:54:48.010000"],["2024-07-24T22:54:49.010000"],["2024-07-24T22:54:50.010000"],["2024-07-24T22:54:51.010000"],["2024-07-24T22:54:52.010000"],["2024-07-24T22:54:53.010000"],["2024-07-24T22:54:54.010000"],["2024-07-24T22:54:55.010000"],["2024-07-24T22:54:56.010000"],["2024-07-24T22:54:57.010000"],["2024-07-24T22:54:58.010000"],["2024-07-24T22:54:59.010000"],["2024-07-24T22:55:00.010000"],["2024-07-24T22:55:01.010000"],["2024-07-24T22:55:02.010000"],["2024-07-24T22:55:03.010000"],["2024-07-24T22:55:04.010000"],["2024-07-24T22:55:05.010000"],["2024-07-24T22:55:06.010000"],["2024-07-24T22:55:07.010000"],["2024-07-24T22:55:08.010000"],["2024-07-24T22:55:09.010000"],["2024-07-24T22:55:10.010000"],["2024-07-24T22:55:11.010000"],["2024-07-24T22:55:12.010000"],["2024-07-24T22:55:13.010000"],["2024-07-24T22:55:14.010000"],["2024-07-24T22:55:15.010000"],["2024-07-24T22:55:16.010000"],["2024-07-24T22:55:17.010000"],["2024-07-24T22:55:18.010000"],["2024-07-24T22:55:19.010000"],["2024-07-24T22:55:20.010000"],["2024-07-24T22:55:21.010000"],["2024-07-24T22:55:22.010000"],["2024-07-24T22:55:23.010000"],["2024-07-24T22:55:24.010000"],["2024-07-24T22:55:25.010000"],["2024-07-24T22:55:26.010000"],["2024-07-24T22:55:27.010000"],["2024-07-24T22:55:28.010000"],["2024-07-24T22:55:29.010000"],["2024-07-24T22:55:30.010000"],["2024-07-24T22:55:31.010000"],["2024-07-24T22:55:32.010000"],["2024-07-24T22:55:33.010000"],["2024-07-24T22:55:34.010000"],["2024-07-24T22:55:35.010000"],["2024-07-24T22:55:36.010000"],["2024-07-24T22:55:37.010000"],["2024-07-24T22:55:38.010000"],["2024-07-24T22:55:39.010000"],["2024-07-24T22:55:40.010000"],["2024-07-24T22:55:41.010000"],["2024-07-24T22:55:42.010000"],["2024-07-24T22:55:43.010000"],["2024-07-24T22:55:44.010000"],["2024-07-24T22:55:45.010000"],["2024-07-24T22:55:46.010000"],["2024-07-24T22:55:47.010000"],["2024-07-24T22:55:48.010000"],["2024-07-24T22:55:49.010000"],["2024-07-24T22:55:50.010000"],["2024-07-24T22:55:51.010000"],["2024-07-24T22:55:52.010000"],["2024-07-24T22:55:53.010000"],["2024-07-24T22:55:54.010000"],["2024-07-24T22:55:55.010000"],["2024-07-24T22:55:56.010000"],["2024-07-24T22:55:57.010000"],["2024-07-24T22:55:58.010000"],["2024-07-24T22:55:59.010000"],["2024-07-24T22:56:00.010000"],["2024-07-24T22:56:01.010000"],["2024-07-24T22:56:02.010000"],["2024-07-24T22:56:03.010000"],["2024-07-24T22:56:04.010000"],["2024-07-24T22:56:05.010000"],["2024-07-24T22:56:06.010000"],["2024-07-24T22:56:07.010000"],["2024-07-24T22:56:08.010000"],["2024-07-24T22:56:09.010000"],["2024-07-24T22:56:10.010000"],["2024-07-24T22:56:11.010000"],["2024-07-24T22:56:12.010000"],["2024-07-24T22:56:13.010000"],["2024-07-24T22:56:14.010000"],["2024-07-24T22:56:15.010000"],["2024-07-24T22:56:16.010000"],["2024-07-24T22:56:17.010000"],["2024-07-24T22:56:18.010000"],["2024-07-24T22:56:19.010000"],["2024-07-24T22:56:20.010000"],["2024-07-24T22:56:21.010000"],["2024-07-24T22:56:22.010000"],["2024-07-24T22:56:23.010000"],["2024-07-24T22:56:24.010000"],["2024-07-24T22:56:25.010000"],["2024-07-24T22:56:26.010000"],["2024-07-24T22:56:27.010000"],["2024-07-24T22:56:28.010000"],["2024-07-24T22:56:29.010000"],["2024-07-24T22:56:30.010000"],["2024-07-24T22:56:31.010000"],["2024-07-24T22:56:32.010000"],["2024-07-24T22:56:33.010000"],["2024-07-24T22:56:34.010000"],["2024-07-24T22:56:35.010000"],["2024-07-24T22:56:36.010000"],["2024-07-24T22:56:37.010000"],["2024-07-24T22:56:38.010000"],["2024-07-24T22:56:39.010000"],["2024-07-24T22:56:40.010000"],["2024-07-24T22:56:41.010000"],["2024-07-24T22:56:42.010000"],["2024-07-24T22:56:43.010000"],["2024-07-24T22:56:44.010000"],["2024-07-24T22:56:45.010000"],["2024-07-24T22:56:46.010000"],["2024-07-24T22:56:47.010000"],["2024-07-24T22:56:48.010000"],["2024-07-24T22:56:49.010000"],["2024-07-24T22:56:50.010000"],["2024-07-24T22:56:51.010000"],["2024-07-24T22:56:52.010000"],["2024-07-24T22:56:53.010000"],["2024-07-24T22:56:54.010000"],["2024-07-24T22:56:55.010000"],["2024-07-24T22:56:56.010000"],["2024-07-24T22:56:57.010000"],["2024-07-24T22:56:58.010000"],["2024-07-24T22:56:59.010000"],["2024-07-24T22:57:00.010000"],["2024-07-24T22:57:01.010000"],["2024-07-24T22:57:02.010000"],["2024-07-24T22:57:03.010000"],["2024-07-24T22:57:04.010000"],["2024-07-24T22:57:05.010000"],["2024-07-24T22:57:06.010000"],["2024-07-24T22:57:07.010000"],["2024-07-24T22:57:08.010000"],["2024-07-24T22:57:09.010000"],["2024-07-24T22:57:10.010000"],["2024-07-24T22:57:11.010000"],["2024-07-24T22:57:12.010000"],["2024-07-24T22:57:13.010000"],["2024-07-24T22:57:14.010000"],["2024-07-24T22:57:15.010000"],["2024-07-24T22:57:16.010000"],["2024-07-24T22:57:17.010000"],["2024-07-24T22:57:18.010000"],["2024-07-24T22:57:19.010000"],["2024-07-24T22:57:20.010000"],["2024-07-24T22:57:21.010000"],["2024-07-24T22:57:22.010000"],["2024-07-24T22:57:23.010000"],["2024-07-24T22:57:24.010000"],["2024-07-24T22:57:25.010000"],["2024-07-24T22:57:26.010000"],["2024-07-24T22:57:27.010000"],["2024-07-24T22:57:28.010000"],["2024-07-24T22:57:29.010000"],["2024-07-24T22:57:30.010000"],["2024-07-24T22:57:31.010000"],["2024-07-24T22:57:32.010000"],["2024-07-24T22:57:33.010000"],["2024-07-24T22:57:34.010000"],["2024-07-24T22:57:35.010000"],["2024-07-24T22:57:36.010000"],["2024-07-24T22:57:37.010000"],["2024-07-24T22:57:38.010000"],["2024-07-24T22:57:39.010000"],["2024-07-24T22:57:40.010000"],["2024-07-24T22:57:41.010000"],["2024-07-24T22:57:42.010000"],["2024-07-24T22:57:43.010000"],["2024-07-24T22:57:44.010000"],["2024-07-24T22:57:45.010000"],["2024-07-24T22:57:46.010000"],["2024-07-24T22:57:47.010000"],["2024-07-24T22:57:48.010000"],["2024-07-24T22:57:49.010000"],["2024-07-24T22:57:50.010000"],["2024-07-24T22:57:51.010000"],["2024-07-24T22:57:52.010000"],["2024-07-24T22:57:53.010000"],["2024-07-24T22:57:54.010000"],["2024-07-24T22:57:55.010000"],["2024-07-24T22:57:56.010000"],["2024-07-24T22:57:57.010000"],["2024-07-24T22:57:58.010000"],["2024-07-24T22:57:59.010000"],["2024-07-24T22:58:00.010000"],["2024-07-24T22:58:01.010000"],["2024-07-24T22:58:02.010000"],["2024-07-24T22:58:03.010000"],["2024-07-24T22:58:04.010000"],["2024-07-24T22:58:05.010000"],["2024-07-24T22:58:06.010000"],["2024-07-24T22:58:07.010000"],["2024-07-24T22:58:08.010000"],["2024-07-24T22:58:09.010000"],["2024-07-24T22:58:10.010000"],["2024-07-24T22:58:11.010000"],["2024-07-24T22:58:12.010000"],["2024-07-24T22:58:13.010000"],["2024-07-24T22:58:14.010000"],["2024-07-24T22:58:15.010000"],["2024-07-24T22:58:16.010000"],["2024-07-24T22:58:17.010000"],["2024-07-24T22:58:18.010000"],["2024-07-24T22:58:19.010000"],["2024-07-24T22:58:20.010000"],["2024-07-24T22:58:21.010000"],["2024-07-24T22:58:22.010000"],["2024-07-24T22:58:23.010000"],["2024-07-24T22:58:24.010000"],["2024-07-24T22:58:25.010000"],["2024-07-24T22:58:26.010000"],["2024-07-24T22:58:27.010000"],["2024-07-24T22:58:28.010000"],["2024-07-24T22:58:29.010000"],["2024-07-24T22:58:30.010000"],["2024-07-24T22:58:31.010000"],["2024-07-24T22:58:32.010000"],["2024-07-24T22:58:33.010000"],["2024-07-24T22:58:34.010000"],["2024-07-24T22:58:35.010000"],["2024-07-24T22:58:36.010000"],["2024-07-24T22:58:37.010000"],["2024-07-24T22:58:38.010000"],["2024-07-24T22:58:39.010000"],["2024-07-24T22:58:40.010000"],["2024-07-24T22:58:41.010000"],["2024-07-24T22:58:42.010000"],["2024-07-24T22:58:43.010000"],["2024-07-24T22:58:44.010000"],["2024-07-24T22:58:45.010000"],["2024-07-24T22:58:46.010000"],["2024-07-24T22:58:47.010000"],["2024-07-24T22:58:48.010000"],["2024-07-24T22:58:49.010000"],["2024-07-24T22:58:50.010000"],["2024-07-24T22:58:51.010000"],["2024-07-24T22:58:52.010000"],["2024-07-24T22:58:53.010000"],["2024-07-24T22:58:54.010000"],["2024-07-24T22:58:55.010000"],["2024-07-24T22:58:56.010000"],["2024-07-24T22:58:57.010000"],["2024-07-24T22:58:58.010000"],["2024-07-24T22:58:59.010000"],["2024-07-24T22:59:00.010000"],["2024-07-24T22:59:01.010000"],["2024-07-24T22:59:02.010000"],["2024-07-24T22:59:03.010000"],["2024-07-24T22:59:04.010000"],["2024-07-24T22:59:05.010000"],["2024-07-24T22:59:06.010000"],["2024-07-24T22:59:07.010000"],["2024-07-24T22:59:08.010000"],["2024-07-24T22:59:09.010000"],["2024-07-24T22:59:10.010000"],["2024-07-24T22:59:11.010000"],["2024-07-24T22:59:12.010000"],["2024-07-24T22:59:13.010000"],["2024-07-24T22:59:14.010000"],["2024-07-24T22:59:15.010000"],["2024-07-24T22:59:16.010000"],["2024-07-24T22:59:17.010000"],["2024-07-24T22:59:18.010000"],["2024-07-24T22:59:19.010000"],["2024-07-24T22:59:20.010000"],["2024-07-24T22:59:21.010000"],["2024-07-24T22:59:22.010000"],["2024-07-24T22:59:23.010000"],["2024-07-24T22:59:24.010000"],["2024-07-24T22:59:25.010000"],["2024-07-24T22:59:26.010000"],["2024-07-24T22:59:27.010000"],["2024-07-24T22:59:28.010000"],["2024-07-24T22:59:29.010000"],["2024-07-24T22:59:30.010000"],["2024-07-24T22:59:31.010000"],["2024-07-24T22:59:32.010000"],["2024-07-24T22:59:33.010000"],["2024-07-24T22:59:34.010000"],["2024-07-24T22:59:35.010000"],["2024-07-24T22:59:36.010000"],["2024-07-24T22:59:37.010000"],["2024-07-24T22:59:38.010000"],["2024-07-24T22:59:39.010000"],["2024-07-24T22:59:40.010000"],["2024-07-24T22:59:41.010000"],["2024-07-24T22:59:42.010000"],["2024-07-24T22:59:43.010000"],["2024-07-24T22:59:44.010000"],["2024-07-24T22:59:45.010000"],["2024-07-24T22:59:46.010000"],["2024-07-24T22:59:47.010000"],["2024-07-24T22:59:48.010000"],["2024-07-24T22:59:49.010000"],["2024-07-24T22:59:50.010000"],["2024-07-24T22:59:51.010000"],["2024-07-24T22:59:52.010000"],["2024-07-24T22:59:53.010000"],["2024-07-24T22:59:54.010000"],["2024-07-24T22:59:55.010000"],["2024-07-24T22:59:56.010000"],["2024-07-24T22:59:57.010000"],["2024-07-24T22:59:58.010000"],["2024-07-24T22:59:59.010000"],["2024-07-24T23:00:00.010000"],["2024-07-24T23:00:01.010000"],["2024-07-24T23:00:02.010000"],["2024-07-24T23:00:03.010000"],["2024-07-24T23:00:04.010000"],["2024-07-24T23:00:05.010000"],["2024-07-24T23:00:06.010000"],["2024-07-24T23:00:07.010000"],["2024-07-24T23:00:08.010000"],["2024-07-24T23:00:09.010000"],["2024-07-24T23:00:10.010000"],["2024-07-24T23:00:11.010000"],["2024-07-24T23:00:12.010000"],["2024-07-24T23:00:13.010000"],["2024-07-24T23:00:14.010000"],["2024-07-24T23:00:15.010000"],["2024-07-24T23:00:16.010000"],["2024-07-24T23:00:17.010000"],["2024-07-24T23:00:18.010000"],["2024-07-24T23:00:19.010000"],["2024-07-24T23:00:20.010000"],["2024-07-24T23:00:21.010000"],["2024-07-24T23:00:22.010000"],["2024-07-24T23:00:23.010000"],["2024-07-24T23:00:24.010000"],["2024-07-24T23:00:25.010000"],["2024-07-24T23:00:26.010000"],["2024-07-24T23:00:27.010000"],["2024-07-24T23:00:28.010000"],["2024-07-24T23:00:29.010000"],["2024-07-24T23:00:30.010000"],["2024-07-24T23:00:31.010000"],["2024-07-24T23:00:32.010000"],["2024-07-24T23:00:33.010000"],["2024-07-24T23:00:34.010000"],["2024-07-24T23:00:35.010000"],["2024-07-24T23:00:36.010000"],["2024-07-24T23:00:37.010000"],["2024-07-24T23:00:38.010000"],["2024-07-24T23:00:39.010000"],["2024-07-24T23:00:40.010000"],["2024-07-24T23:00:41.010000"],["2024-07-24T23:00:42.010000"],["2024-07-24T23:00:43.010000"],["2024-07-24T23:00:44.010000"],["2024-07-24T23:00:45.010000"],["2024-07-24T23:00:46.010000"],["2024-07-24T23:00:47.010000"],["2024-07-24T23:00:48.010000"],["2024-07-24T23:00:49.010000"],["2024-07-24T23:00:50.010000"],["2024-07-24T23:00:51.010000"],["2024-07-24T23:00:52.010000"],["2024-07-24T23:00:53.010000"],["2024-07-24T23:00:54.010000"],["2024-07-24T23:00:55.010000"],["2024-07-24T23:00:56.010000"],["2024-07-24T23:00:57.010000"],["2024-07-24T23:00:58.010000"],["2024-07-24T23:00:59.010000"],["2024-07-24T23:01:00.010000"],["2024-07-24T23:01:01.010000"],["2024-07-24T23:01:02.010000"],["2024-07-24T23:01:03.010000"],["2024-07-24T23:01:04.010000"],["2024-07-24T23:01:05.010000"],["2024-07-24T23:01:06.010000"],["2024-07-24T23:01:07.010000"],["2024-07-24T23:01:08.010000"],["2024-07-24T23:01:09.010000"],["2024-07-24T23:01:10.010000"],["2024-07-24T23:01:11.010000"],["2024-07-24T23:01:12.010000"],["2024-07-24T23:01:13.010000"],["2024-07-24T23:01:14.010000"],["2024-07-24T23:01:15.010000"],["2024-07-24T23:01:16.010000"],["2024-07-24T23:01:17.010000"],["2024-07-24T23:01:18.010000"],["2024-07-24T23:01:19.010000"],["2024-07-24T23:01:20.010000"],["2024-07-24T23:01:21.010000"],["2024-07-24T23:01:22.010000"],["2024-07-24T23:01:23.010000"],["2024-07-24T23:01:24.010000"],["2024-07-24T23:01:25.010000"],["2024-07-24T23:01:26.010000"],["2024-07-24T23:01:27.010000"],["2024-07-24T23:01:28.010000"],["2024-07-24T23:01:29.010000"],["2024-07-24T23:01:30.010000"],["2024-07-24T23:01:31.010000"],["2024-07-24T23:01:32.010000"],["2024-07-24T23:01:33.010000"],["2024-07-24T23:01:34.010000"],["2024-07-24T23:01:35.010000"],["2024-07-24T23:01:36.010000"],["2024-07-24T23:01:37.010000"],["2024-07-24T23:01:38.010000"],["2024-07-24T23:01:39.010000"],["2024-07-24T23:01:40.010000"],["2024-07-24T23:01:41.010000"],["2024-07-24T23:01:42.010000"],["2024-07-24T23:01:43.010000"],["2024-07-24T23:01:44.010000"],["2024-07-24T23:01:45.010000"],["2024-07-24T23:01:46.010000"],["2024-07-24T23:01:47.010000"],["2024-07-24T23:01:48.010000"],["2024-07-24T23:01:49.010000"],["2024-07-24T23:01:50.010000"],["2024-07-24T23:01:51.010000"],["2024-07-24T23:01:52.010000"],["2024-07-24T23:01:53.010000"],["2024-07-24T23:01:54.010000"],["2024-07-24T23:01:55.010000"],["2024-07-24T23:01:56.010000"],["2024-07-24T23:01:57.010000"],["2024-07-24T23:01:58.010000"],["2024-07-24T23:01:59.010000"],["2024-07-24T23:02:00.010000"],["2024-07-24T23:02:01.010000"],["2024-07-24T23:02:02.010000"],["2024-07-24T23:02:03.010000"],["2024-07-24T23:02:04.010000"],["2024-07-24T23:02:05.010000"],["2024-07-24T23:02:06.010000"],["2024-07-24T23:02:07.010000"],["2024-07-24T23:02:08.010000"],["2024-07-24T23:02:09.010000"],["2024-07-24T23:02:10.010000"],["2024-07-24T23:02:11.010000"],["2024-07-24T23:02:12.010000"],["2024-07-24T23:02:13.010000"],["2024-07-24T23:02:14.010000"],["2024-07-24T23:02:15.010000"],["2024-07-24T23:02:16.010000"],["2024-07-24T23:02:17.010000"],["2024-07-24T23:02:18.010000"],["2024-07-24T23:02:19.010000"],["2024-07-24T23:02:20.010000"],["2024-07-24T23:02:21.010000"],["2024-07-24T23:02:22.010000"],["2024-07-24T23:02:23.010000"],["2024-07-24T23:02:24.010000"],["2024-07-24T23:02:25.010000"],["2024-07-24T23:02:26.010000"],["2024-07-24T23:02:27.010000"],["2024-07-24T23:02:28.010000"],["2024-07-24T23:02:29.010000"],["2024-07-24T23:02:30.010000"],["2024-07-24T23:02:31.010000"],["2024-07-24T23:02:32.010000"],["2024-07-24T23:02:33.010000"],["2024-07-24T23:02:34.010000"],["2024-07-24T23:02:35.010000"],["2024-07-24T23:02:36.010000"],["2024-07-24T23:02:37.010000"],["2024-07-24T23:02:38.010000"],["2024-07-24T23:02:39.010000"],["2024-07-24T23:02:40.010000"],["2024-07-24T23:02:41.010000"],["2024-07-24T23:02:42.010000"],["2024-07-24T23:02:43.010000"],["2024-07-24T23:02:44.010000"],["2024-07-24T23:02:45.010000"],["2024-07-24T23:02:46.010000"],["2024-07-24T23:02:47.010000"],["2024-07-24T23:02:48.010000"],["2024-07-24T23:02:49.010000"],["2024-07-24T23:02:50.010000"],["2024-07-24T23:02:51.010000"],["2024-07-24T23:02:52.010000"],["2024-07-24T23:02:53.010000"],["2024-07-24T23:02:54.010000"],["2024-07-24T23:02:55.010000"],["2024-07-24T23:02:56.010000"],["2024-07-24T23:02:57.010000"],["2024-07-24T23:02:58.010000"],["2024-07-24T23:02:59.010000"],["2024-07-24T23:03:00.010000"],["2024-07-24T23:03:01.010000"],["2024-07-24T23:03:02.010000"],["2024-07-24T23:03:03.010000"],["2024-07-24T23:03:04.010000"],["2024-07-24T23:03:05.010000"],["2024-07-24T23:03:06.010000"],["2024-07-24T23:03:07.010000"],["2024-07-24T23:03:08.010000"],["2024-07-24T23:03:09.010000"],["2024-07-24T23:03:10.010000"],["2024-07-24T23:03:11.010000"],["2024-07-24T23:03:12.010000"],["2024-07-24T23:03:13.010000"],["2024-07-24T23:03:14.010000"],["2024-07-24T23:03:15.010000"],["2024-07-24T23:03:16.010000"],["2024-07-24T23:03:17.010000"],["2024-07-24T23:03:18.010000"],["2024-07-24T23:03:19.010000"],["2024-07-24T23:03:20.010000"],["2024-07-24T23:03:21.010000"],["2024-07-24T23:03:22.010000"],["2024-07-24T23:03:23.010000"],["2024-07-24T23:03:24.010000"],["2024-07-24T23:03:25.010000"],["2024-07-24T23:03:26.010000"],["2024-07-24T23:03:27.010000"],["2024-07-24T23:03:28.010000"],["2024-07-24T23:03:29.010000"],["2024-07-24T23:03:30.010000"],["2024-07-24T23:03:31.010000"],["2024-07-24T23:03:32.010000"],["2024-07-24T23:03:33.010000"],["2024-07-24T23:03:34.010000"],["2024-07-24T23:03:35.010000"],["2024-07-24T23:03:36.010000"],["2024-07-24T23:03:37.010000"],["2024-07-24T23:03:38.010000"],["2024-07-24T23:03:39.010000"],["2024-07-24T23:03:40.010000"],["2024-07-24T23:03:41.010000"],["2024-07-24T23:03:42.010000"],["2024-07-24T23:03:43.010000"],["2024-07-24T23:03:44.010000"],["2024-07-24T23:03:45.010000"],["2024-07-24T23:03:46.010000"],["2024-07-24T23:03:47.010000"],["2024-07-24T23:03:48.010000"],["2024-07-24T23:03:49.010000"],["2024-07-24T23:03:50.010000"],["2024-07-24T23:03:51.010000"],["2024-07-24T23:03:52.010000"],["2024-07-24T23:03:53.010000"],["2024-07-24T23:03:54.010000"],["2024-07-24T23:03:55.010000"],["2024-07-24T23:03:56.010000"],["2024-07-24T23:03:57.010000"],["2024-07-24T23:03:58.010000"],["2024-07-24T23:03:59.010000"],["2024-07-24T23:04:00.010000"],["2024-07-24T23:04:01.010000"],["2024-07-24T23:04:02.010000"],["2024-07-24T23:04:03.010000"],["2024-07-24T23:04:04.010000"],["2024-07-24T23:04:05.010000"],["2024-07-24T23:04:06.010000"],["2024-07-24T23:04:07.010000"],["2024-07-24T23:04:08.010000"],["2024-07-24T23:04:09.010000"],["2024-07-24T23:04:10.010000"],["2024-07-24T23:04:11.010000"],["2024-07-24T23:04:12.010000"],["2024-07-24T23:04:13.010000"],["2024-07-24T23:04:14.010000"],["2024-07-24T23:04:15.010000"],["2024-07-24T23:04:16.010000"],["2024-07-24T23:04:17.010000"],["2024-07-24T23:04:18.010000"],["2024-07-24T23:04:19.010000"],["2024-07-24T23:04:20.010000"],["2024-07-24T23:04:21.010000"],["2024-07-24T23:04:22.010000"],["2024-07-24T23:04:23.010000"],["2024-07-24T23:04:24.010000"],["2024-07-24T23:04:25.010000"],["2024-07-24T23:04:26.010000"],["2024-07-24T23:04:27.010000"],["2024-07-24T23:04:28.010000"],["2024-07-24T23:04:29.010000"],["2024-07-24T23:04:30.010000"],["2024-07-24T23:04:31.010000"],["2024-07-24T23:04:32.010000"],["2024-07-24T23:04:33.010000"],["2024-07-24T23:04:34.010000"],["2024-07-24T23:04:35.010000"],["2024-07-24T23:04:36.010000"],["2024-07-24T23:04:37.010000"],["2024-07-24T23:04:38.010000"],["2024-07-24T23:04:39.010000"],["2024-07-24T23:04:40.010000"],["2024-07-24T23:04:41.010000"],["2024-07-24T23:04:42.010000"],["2024-07-24T23:04:43.010000"],["2024-07-24T23:04:44.010000"],["2024-07-24T23:04:45.010000"],["2024-07-24T23:04:46.010000"],["2024-07-24T23:04:47.010000"],["2024-07-24T23:04:48.010000"],["2024-07-24T23:04:49.010000"],["2024-07-24T23:04:50.010000"],["2024-07-24T23:04:51.010000"],["2024-07-24T23:04:52.010000"],["2024-07-24T23:04:53.010000"],["2024-07-24T23:04:54.010000"],["2024-07-24T23:04:55.010000"],["2024-07-24T23:04:56.010000"],["2024-07-24T23:04:57.010000"],["2024-07-24T23:04:58.010000"],["2024-07-24T23:04:59.010000"],["2024-07-24T23:05:00.010000"],["2024-07-24T23:05:01.010000"],["2024-07-24T23:05:02.010000"],["2024-07-24T23:05:03.010000"],["2024-07-24T23:05:04.010000"],["2024-07-24T23:05:05.010000"],["2024-07-24T23:05:06.010000"],["2024-07-24T23:05:07.010000"],["2024-07-24T23:05:08.010000"],["2024-07-24T23:05:09.010000"],["2024-07-24T23:05:10.010000"],["2024-07-24T23:05:11.010000"],["2024-07-24T23:05:12.010000"],["2024-07-24T23:05:13.010000"],["2024-07-24T23:05:14.010000"],["2024-07-24T23:05:15.010000"],["2024-07-24T23:05:16.010000"],["2024-07-24T23:05:17.010000"],["2024-07-24T23:05:18.010000"],["2024-07-24T23:05:19.010000"],["2024-07-24T23:05:20.010000"],["2024-07-24T23:05:21.010000"],["2024-07-24T23:05:22.010000"],["2024-07-24T23:05:23.010000"],["2024-07-24T23:05:24.010000"],["2024-07-24T23:05:25.010000"],["2024-07-24T23:05:26.010000"],["2024-07-24T23:05:27.010000"],["2024-07-24T23:05:28.010000"],["2024-07-24T23:05:29.010000"],["2024-07-24T23:05:30.010000"],["2024-07-24T23:05:31.010000"],["2024-07-24T23:05:32.010000"],["2024-07-24T23:05:33.010000"],["2024-07-24T23:05:34.010000"],["2024-07-24T23:05:35.010000"],["2024-07-24T23:05:36.010000"],["2024-07-24T23:05:37.010000"],["2024-07-24T23:05:38.010000"],["2024-07-24T23:05:39.010000"],["2024-07-24T23:05:40.010000"],["2024-07-24T23:05:41.010000"],["2024-07-24T23:05:42.010000"],["2024-07-24T23:05:43.010000"],["2024-07-24T23:05:44.010000"],["2024-07-24T23:05:45.010000"],["2024-07-24T23:05:46.010000"],["2024-07-24T23:05:47.010000"],["2024-07-24T23:05:48.010000"],["2024-07-24T23:05:49.010000"],["2024-07-24T23:05:50.010000"],["2024-07-24T23:05:51.010000"],["2024-07-24T23:05:52.010000"],["2024-07-24T23:05:53.010000"],["2024-07-24T23:05:54.010000"],["2024-07-24T23:05:55.010000"],["2024-07-24T23:05:56.010000"],["2024-07-24T23:05:57.010000"],["2024-07-24T23:05:58.010000"],["2024-07-24T23:05:59.010000"],["2024-07-24T23:06:00.010000"],["2024-07-24T23:06:01.010000"],["2024-07-24T23:06:02.010000"],["2024-07-24T23:06:03.010000"],["2024-07-24T23:06:04.010000"],["2024-07-24T23:06:05.010000"],["2024-07-24T23:06:06.010000"],["2024-07-24T23:06:07.010000"],["2024-07-24T23:06:08.010000"],["2024-07-24T23:06:09.010000"],["2024-07-24T23:06:10.010000"],["2024-07-24T23:06:11.010000"],["2024-07-24T23:06:12.010000"],["2024-07-24T23:06:13.010000"],["2024-07-24T23:06:14.010000"],["2024-07-24T23:06:15.010000"],["2024-07-24T23:06:16.010000"],["2024-07-24T23:06:17.010000"],["2024-07-24T23:06:18.010000"],["2024-07-24T23:06:19.010000"],["2024-07-24T23:06:20.010000"],["2024-07-24T23:06:21.010000"],["2024-07-24T23:06:22.010000"],["2024-07-24T23:06:23.010000"],["2024-07-24T23:06:24.010000"],["2024-07-24T23:06:25.010000"],["2024-07-24T23:06:26.010000"],["2024-07-24T23:06:27.010000"],["2024-07-24T23:06:28.010000"],["2024-07-24T23:06:29.010000"],["2024-07-24T23:06:30.010000"],["2024-07-24T23:06:31.010000"],["2024-07-24T23:06:32.010000"],["2024-07-24T23:06:33.010000"],["2024-07-24T23:06:34.010000"],["2024-07-24T23:06:35.010000"],["2024-07-24T23:06:36.010000"],["2024-07-24T23:06:37.010000"],["2024-07-24T23:06:38.010000"],["2024-07-24T23:06:39.010000"],["2024-07-24T23:06:40.010000"],["2024-07-24T23:06:41.010000"],["2024-07-24T23:06:42.010000"],["2024-07-24T23:06:43.010000"],["2024-07-24T23:06:44.010000"],["2024-07-24T23:06:45.010000"],["2024-07-24T23:06:46.010000"],["2024-07-24T23:06:47.010000"],["2024-07-24T23:06:48.010000"],["2024-07-24T23:06:49.010000"],["2024-07-24T23:06:50.010000"],["2024-07-24T23:06:51.010000"],["2024-07-24T23:06:52.010000"],["2024-07-24T23:06:53.010000"],["2024-07-24T23:06:54.010000"],["2024-07-24T23:06:55.010000"],["2024-07-24T23:06:56.010000"],["2024-07-24T23:06:57.010000"],["2024-07-24T23:06:58.010000"],["2024-07-24T23:06:59.010000"],["2024-07-24T23:07:00.010000"],["2024-07-24T23:07:01.010000"],["2024-07-24T23:07:02.010000"],["2024-07-24T23:07:03.010000"],["2024-07-24T23:07:04.010000"],["2024-07-24T23:07:05.010000"],["2024-07-24T23:07:06.010000"],["2024-07-24T23:07:07.010000"],["2024-07-24T23:07:08.010000"],["2024-07-24T23:07:09.010000"],["2024-07-24T23:07:10.010000"],["2024-07-24T23:07:11.010000"],["2024-07-24T23:07:12.010000"],["2024-07-24T23:07:13.010000"],["2024-07-24T23:07:14.010000"],["2024-07-24T23:07:15.010000"],["2024-07-24T23:07:16.010000"],["2024-07-24T23:07:17.010000"],["2024-07-24T23:07:18.010000"],["2024-07-24T23:07:19.010000"],["2024-07-24T23:07:20.010000"],["2024-07-24T23:07:21.010000"],["2024-07-24T23:07:22.010000"],["2024-07-24T23:07:23.010000"],["2024-07-24T23:07:24.010000"],["2024-07-24T23:07:25.010000"],["2024-07-24T23:07:26.010000"],["2024-07-24T23:07:27.010000"],["2024-07-24T23:07:28.010000"],["2024-07-24T23:07:29.010000"],["2024-07-24T23:07:30.010000"],["2024-07-24T23:07:31.010000"],["2024-07-24T23:07:32.010000"],["2024-07-24T23:07:33.010000"],["2024-07-24T23:07:34.010000"],["2024-07-24T23:07:35.010000"],["2024-07-24T23:07:36.010000"],["2024-07-24T23:07:37.010000"],["2024-07-24T23:07:38.010000"],["2024-07-24T23:07:39.010000"],["2024-07-24T23:07:40.010000"],["2024-07-24T23:07:41.010000"],["2024-07-24T23:07:42.010000"],["2024-07-24T23:07:43.010000"],["2024-07-24T23:07:44.010000"],["2024-07-24T23:07:45.010000"],["2024-07-24T23:07:46.010000"],["2024-07-24T23:07:47.010000"],["2024-07-24T23:07:48.010000"],["2024-07-24T23:07:49.010000"],["2024-07-24T23:07:50.010000"],["2024-07-24T23:07:51.010000"],["2024-07-24T23:07:52.010000"],["2024-07-24T23:07:53.010000"],["2024-07-24T23:07:54.010000"],["2024-07-24T23:07:55.010000"],["2024-07-24T23:07:56.010000"],["2024-07-24T23:07:57.010000"],["2024-07-24T23:07:58.010000"],["2024-07-24T23:07:59.010000"],["2024-07-24T23:08:00.010000"],["2024-07-24T23:08:01.010000"],["2024-07-24T23:08:02.010000"],["2024-07-24T23:08:03.010000"],["2024-07-24T23:08:04.010000"],["2024-07-24T23:08:05.010000"],["2024-07-24T23:08:06.010000"],["2024-07-24T23:08:07.010000"],["2024-07-24T23:08:08.010000"],["2024-07-24T23:08:09.010000"],["2024-07-24T23:08:10.010000"],["2024-07-24T23:08:11.010000"],["2024-07-24T23:08:12.010000"],["2024-07-24T23:08:13.010000"],["2024-07-24T23:08:14.010000"],["2024-07-24T23:08:15.010000"],["2024-07-24T23:08:16.010000"],["2024-07-24T23:08:17.010000"],["2024-07-24T23:08:18.010000"],["2024-07-24T23:08:19.010000"],["2024-07-24T23:08:20.010000"],["2024-07-24T23:08:21.010000"],["2024-07-24T23:08:22.010000"],["2024-07-24T23:08:23.010000"],["2024-07-24T23:08:24.010000"],["2024-07-24T23:08:25.010000"],["2024-07-24T23:08:26.010000"],["2024-07-24T23:08:27.010000"],["2024-07-24T23:08:28.010000"],["2024-07-24T23:08:29.010000"],["2024-07-24T23:08:30.010000"],["2024-07-24T23:08:31.010000"],["2024-07-24T23:08:32.010000"],["2024-07-24T23:08:33.010000"],["2024-07-24T23:08:34.010000"],["2024-07-24T23:08:35.010000"],["2024-07-24T23:08:36.010000"],["2024-07-24T23:08:37.010000"],["2024-07-24T23:08:38.010000"],["2024-07-24T23:08:39.010000"],["2024-07-24T23:08:40.010000"],["2024-07-24T23:08:41.010000"],["2024-07-24T23:08:42.010000"],["2024-07-24T23:08:43.010000"],["2024-07-24T23:08:44.010000"],["2024-07-24T23:08:45.010000"],["2024-07-24T23:08:46.010000"],["2024-07-24T23:08:47.010000"],["2024-07-24T23:08:48.010000"],["2024-07-24T23:08:49.010000"],["2024-07-24T23:08:50.010000"],["2024-07-24T23:08:51.010000"],["2024-07-24T23:08:52.010000"],["2024-07-24T23:08:53.010000"],["2024-07-24T23:08:54.010000"],["2024-07-24T23:08:55.010000"],["2024-07-24T23:08:56.010000"],["2024-07-24T23:08:57.010000"],["2024-07-24T23:08:58.010000"],["2024-07-24T23:08:59.010000"],["2024-07-24T23:09:00.010000"],["2024-07-24T23:09:01.010000"],["2024-07-24T23:09:02.010000"],["2024-07-24T23:09:03.010000"],["2024-07-24T23:09:04.010000"],["2024-07-24T23:09:05.010000"],["2024-07-24T23:09:06.010000"],["2024-07-24T23:09:07.010000"],["2024-07-24T23:09:08.010000"],["2024-07-24T23:09:09.010000"],["2024-07-24T23:09:10.010000"],["2024-07-24T23:09:11.010000"],["2024-07-24T23:09:12.010000"],["2024-07-24T23:09:13.010000"],["2024-07-24T23:09:14.010000"],["2024-07-24T23:09:15.010000"],["2024-07-24T23:09:16.010000"],["2024-07-24T23:09:17.010000"],["2024-07-24T23:09:18.010000"],["2024-07-24T23:09:19.010000"],["2024-07-24T23:09:20.010000"],["2024-07-24T23:09:21.010000"],["2024-07-24T23:09:22.010000"],["2024-07-24T23:09:23.010000"],["2024-07-24T23:09:24.010000"],["2024-07-24T23:09:25.010000"],["2024-07-24T23:09:26.010000"],["2024-07-24T23:09:27.010000"],["2024-07-24T23:09:28.010000"],["2024-07-24T23:09:29.010000"],["2024-07-24T23:09:30.010000"],["2024-07-24T23:09:31.010000"],["2024-07-24T23:09:32.010000"],["2024-07-24T23:09:33.010000"],["2024-07-24T23:09:34.010000"],["2024-07-24T23:09:35.010000"],["2024-07-24T23:09:36.010000"],["2024-07-24T23:09:37.010000"],["2024-07-24T23:09:38.010000"],["2024-07-24T23:09:39.010000"],["2024-07-24T23:09:40.010000"],["2024-07-24T23:09:41.010000"],["2024-07-24T23:09:42.010000"],["2024-07-24T23:09:43.010000"],["2024-07-24T23:09:44.010000"],["2024-07-24T23:09:45.010000"],["2024-07-24T23:09:46.010000"],["2024-07-24T23:09:47.010000"],["2024-07-24T23:09:48.010000"],["2024-07-24T23:09:49.010000"],["2024-07-24T23:09:50.010000"],["2024-07-24T23:09:51.010000"],["2024-07-24T23:09:52.010000"],["2024-07-24T23:09:53.010000"],["2024-07-24T23:09:54.010000"],["2024-07-24T23:09:55.010000"],["2024-07-24T23:09:56.010000"],["2024-07-24T23:09:57.010000"],["2024-07-24T23:09:58.010000"],["2024-07-24T23:09:59.010000"],["2024-07-24T23:10:00.010000"],["2024-07-24T23:10:01.010000"],["2024-07-24T23:10:02.010000"],["2024-07-24T23:10:03.010000"],["2024-07-24T23:10:04.010000"],["2024-07-24T23:10:05.010000"],["2024-07-24T23:10:06.010000"],["2024-07-24T23:10:07.010000"],["2024-07-24T23:10:08.010000"],["2024-07-24T23:10:09.010000"],["2024-07-24T23:10:10.010000"],["2024-07-24T23:10:11.010000"],["2024-07-24T23:10:12.010000"],["2024-07-24T23:10:13.010000"],["2024-07-24T23:10:14.010000"],["2024-07-24T23:10:15.010000"],["2024-07-24T23:10:16.010000"],["2024-07-24T23:10:17.010000"],["2024-07-24T23:10:18.010000"],["2024-07-24T23:10:19.010000"],["2024-07-24T23:10:20.010000"],["2024-07-24T23:10:21.010000"],["2024-07-24T23:10:22.010000"],["2024-07-24T23:10:23.010000"],["2024-07-24T23:10:24.010000"],["2024-07-24T23:10:25.010000"],["2024-07-24T23:10:26.010000"],["2024-07-24T23:10:27.010000"],["2024-07-24T23:10:28.010000"],["2024-07-24T23:10:29.010000"],["2024-07-24T23:10:30.010000"],["2024-07-24T23:10:31.010000"],["2024-07-24T23:10:32.010000"],["2024-07-24T23:10:33.010000"],["2024-07-24T23:10:34.010000"],["2024-07-24T23:10:35.010000"],["2024-07-24T23:10:36.010000"],["2024-07-24T23:10:37.010000"],["2024-07-24T23:10:38.010000"],["2024-07-24T23:10:39.010000"],["2024-07-24T23:10:40.010000"],["2024-07-24T23:10:41.010000"],["2024-07-24T23:10:42.010000"],["2024-07-24T23:10:43.010000"],["2024-07-24T23:10:44.010000"],["2024-07-24T23:10:45.010000"],["2024-07-24T23:10:46.010000"],["2024-07-24T23:10:47.010000"],["2024-07-24T23:10:48.010000"],["2024-07-24T23:10:49.010000"],["2024-07-24T23:10:50.010000"],["2024-07-24T23:10:51.010000"],["2024-07-24T23:10:52.010000"],["2024-07-24T23:10:53.010000"],["2024-07-24T23:10:54.010000"],["2024-07-24T23:10:55.010000"],["2024-07-24T23:10:56.010000"],["2024-07-24T23:10:57.010000"],["2024-07-24T23:10:58.010000"],["2024-07-24T23:10:59.010000"],["2024-07-24T23:11:00.010000"],["2024-07-24T23:11:01.010000"],["2024-07-24T23:11:02.010000"],["2024-07-24T23:11:03.010000"],["2024-07-24T23:11:04.010000"],["2024-07-24T23:11:05.010000"],["2024-07-24T23:11:06.010000"],["2024-07-24T23:11:07.010000"],["2024-07-24T23:11:08.010000"],["2024-07-24T23:11:09.010000"],["2024-07-24T23:11:10.010000"],["2024-07-24T23:11:11.010000"],["2024-07-24T23:11:12.010000"],["2024-07-24T23:11:13.010000"],["2024-07-24T23:11:14.010000"],["2024-07-24T23:11:15.010000"],["2024-07-24T23:11:16.010000"],["2024-07-24T23:11:17.010000"],["2024-07-24T23:11:18.010000"],["2024-07-24T23:11:19.010000"],["2024-07-24T23:11:20.010000"],["2024-07-24T23:11:21.010000"],["2024-07-24T23:11:22.010000"],["2024-07-24T23:11:23.010000"],["2024-07-24T23:11:24.010000"],["2024-07-24T23:11:25.010000"],["2024-07-24T23:11:26.010000"],["2024-07-24T23:11:27.010000"],["2024-07-24T23:11:28.010000"],["2024-07-24T23:11:29.010000"],["2024-07-24T23:11:30.010000"],["2024-07-24T23:11:31.010000"],["2024-07-24T23:11:32.010000"],["2024-07-24T23:11:33.010000"],["2024-07-24T23:11:34.010000"],["2024-07-24T23:11:35.010000"],["2024-07-24T23:11:36.010000"],["2024-07-24T23:11:37.010000"],["2024-07-24T23:11:38.010000"],["2024-07-24T23:11:39.010000"],["2024-07-24T23:11:40.010000"],["2024-07-24T23:11:41.010000"],["2024-07-24T23:11:42.010000"],["2024-07-24T23:11:43.010000"],["2024-07-24T23:11:44.010000"],["2024-07-24T23:11:45.010000"],["2024-07-24T23:11:46.010000"],["2024-07-24T23:11:47.010000"],["2024-07-24T23:11:48.010000"],["2024-07-24T23:11:49.010000"],["2024-07-24T23:11:50.010000"],["2024-07-24T23:11:51.010000"],["2024-07-24T23:11:52.010000"],["2024-07-24T23:11:53.010000"],["2024-07-24T23:11:54.010000"],["2024-07-24T23:11:55.010000"],["2024-07-24T23:11:56.010000"],["2024-07-24T23:11:57.010000"],["2024-07-24T23:11:58.010000"],["2024-07-24T23:11:59.010000"],["2024-07-24T23:12:00.010000"],["2024-07-24T23:12:01.010000"],["2024-07-24T23:12:02.010000"],["2024-07-24T23:12:03.010000"],["2024-07-24T23:12:04.010000"],["2024-07-24T23:12:05.010000"],["2024-07-24T23:12:06.010000"],["2024-07-24T23:12:07.010000"],["2024-07-24T23:12:08.010000"],["2024-07-24T23:12:09.010000"],["2024-07-24T23:12:10.010000"],["2024-07-24T23:12:11.010000"],["2024-07-24T23:12:12.010000"],["2024-07-24T23:12:13.010000"],["2024-07-24T23:12:14.010000"],["2024-07-24T23:12:15.010000"],["2024-07-24T23:12:16.010000"],["2024-07-24T23:12:17.010000"],["2024-07-24T23:12:18.010000"],["2024-07-24T23:12:19.010000"],["2024-07-24T23:12:20.010000"],["2024-07-24T23:12:21.010000"],["2024-07-24T23:12:22.010000"],["2024-07-24T23:12:23.010000"],["2024-07-24T23:12:24.010000"],["2024-07-24T23:12:25.010000"],["2024-07-24T23:12:26.010000"],["2024-07-24T23:12:27.010000"],["2024-07-24T23:12:28.010000"],["2024-07-24T23:12:29.010000"],["2024-07-24T23:12:30.010000"],["2024-07-24T23:12:31.010000"],["2024-07-24T23:12:32.010000"],["2024-07-24T23:12:33.010000"],["2024-07-24T23:12:34.010000"],["2024-07-24T23:12:35.010000"],["2024-07-24T23:12:36.010000"],["2024-07-24T23:12:37.010000"],["2024-07-24T23:12:38.010000"],["2024-07-24T23:12:39.010000"],["2024-07-24T23:12:40.010000"],["2024-07-24T23:12:41.010000"],["2024-07-24T23:12:42.010000"],["2024-07-24T23:12:43.010000"],["2024-07-24T23:12:44.010000"],["2024-07-24T23:12:45.010000"],["2024-07-24T23:12:46.010000"],["2024-07-24T23:12:47.010000"],["2024-07-24T23:12:48.010000"],["2024-07-24T23:12:49.010000"],["2024-07-24T23:12:50.010000"],["2024-07-24T23:12:51.010000"],["2024-07-24T23:12:52.010000"],["2024-07-24T23:12:53.010000"],["2024-07-24T23:12:54.010000"],["2024-07-24T23:12:55.010000"],["2024-07-24T23:12:56.010000"],["2024-07-24T23:12:57.010000"],["2024-07-24T23:12:58.010000"],["2024-07-24T23:12:59.010000"],["2024-07-24T23:13:00.010000"],["2024-07-24T23:13:01.010000"],["2024-07-24T23:13:02.010000"],["2024-07-24T23:13:03.010000"],["2024-07-24T23:13:04.010000"],["2024-07-24T23:13:05.010000"],["2024-07-24T23:13:06.010000"],["2024-07-24T23:13:07.010000"],["2024-07-24T23:13:08.010000"],["2024-07-24T23:13:09.010000"],["2024-07-24T23:13:10.010000"],["2024-07-24T23:13:11.010000"],["2024-07-24T23:13:12.010000"],["2024-07-24T23:13:13.010000"],["2024-07-24T23:13:14.010000"],["2024-07-24T23:13:15.010000"],["2024-07-24T23:13:16.010000"],["2024-07-24T23:13:17.010000"],["2024-07-24T23:13:18.010000"],["2024-07-24T23:13:19.010000"],["2024-07-24T23:13:20.010000"],["2024-07-24T23:13:21.010000"],["2024-07-24T23:13:22.010000"],["2024-07-24T23:13:23.010000"],["2024-07-24T23:13:24.010000"],["2024-07-24T23:13:25.010000"],["2024-07-24T23:13:26.010000"],["2024-07-24T23:13:27.010000"],["2024-07-24T23:13:28.010000"],["2024-07-24T23:13:29.010000"],["2024-07-24T23:13:30.010000"],["2024-07-24T23:13:31.010000"],["2024-07-24T23:13:32.010000"],["2024-07-24T23:13:33.010000"],["2024-07-24T23:13:34.010000"],["2024-07-24T23:13:35.010000"],["2024-07-24T23:13:36.010000"],["2024-07-24T23:13:37.010000"],["2024-07-24T23:13:38.010000"],["2024-07-24T23:13:39.010000"],["2024-07-24T23:13:40.010000"],["2024-07-24T23:13:41.010000"],["2024-07-24T23:13:42.010000"],["2024-07-24T23:13:43.010000"],["2024-07-24T23:13:44.010000"],["2024-07-24T23:13:45.010000"],["2024-07-24T23:13:46.010000"],["2024-07-24T23:13:47.010000"],["2024-07-24T23:13:48.010000"],["2024-07-24T23:13:49.010000"],["2024-07-24T23:13:50.010000"],["2024-07-24T23:13:51.010000"],["2024-07-24T23:13:52.010000"],["2024-07-24T23:13:53.010000"],["2024-07-24T23:13:54.010000"],["2024-07-24T23:13:55.010000"],["2024-07-24T23:13:56.010000"],["2024-07-24T23:13:57.010000"],["2024-07-24T23:13:58.010000"],["2024-07-24T23:13:59.010000"],["2024-07-24T23:14:00.010000"],["2024-07-24T23:14:01.010000"],["2024-07-24T23:14:02.010000"],["2024-07-24T23:14:03.010000"],["2024-07-24T23:14:04.010000"],["2024-07-24T23:14:05.010000"],["2024-07-24T23:14:06.010000"],["2024-07-24T23:14:07.010000"],["2024-07-24T23:14:08.010000"],["2024-07-24T23:14:09.010000"],["2024-07-24T23:14:10.010000"],["2024-07-24T23:14:11.010000"],["2024-07-24T23:14:12.010000"],["2024-07-24T23:14:13.010000"],["2024-07-24T23:14:14.010000"],["2024-07-24T23:14:15.010000"],["2024-07-24T23:14:16.010000"],["2024-07-24T23:14:17.010000"],["2024-07-24T23:14:18.010000"],["2024-07-24T23:14:19.010000"],["2024-07-24T23:14:20.010000"],["2024-07-24T23:14:21.010000"],["2024-07-24T23:14:22.010000"],["2024-07-24T23:14:23.010000"],["2024-07-24T23:14:24.010000"],["2024-07-24T23:14:25.010000"],["2024-07-24T23:14:26.010000"],["2024-07-24T23:14:27.010000"],["2024-07-24T23:14:28.010000"],["2024-07-24T23:14:29.010000"],["2024-07-24T23:14:30.010000"],["2024-07-24T23:14:31.010000"],["2024-07-24T23:14:32.010000"],["2024-07-24T23:14:33.010000"],["2024-07-24T23:14:34.010000"],["2024-07-24T23:14:35.010000"],["2024-07-24T23:14:36.010000"],["2024-07-24T23:14:37.010000"],["2024-07-24T23:14:38.010000"],["2024-07-24T23:14:39.010000"],["2024-07-24T23:14:40.010000"],["2024-07-24T23:14:41.010000"],["2024-07-24T23:14:42.010000"],["2024-07-24T23:14:43.010000"],["2024-07-24T23:14:44.010000"],["2024-07-24T23:14:45.010000"],["2024-07-24T23:14:46.010000"],["2024-07-24T23:14:47.010000"],["2024-07-24T23:14:48.010000"],["2024-07-24T23:14:49.010000"],["2024-07-24T23:14:50.010000"],["2024-07-24T23:14:51.010000"],["2024-07-24T23:14:52.010000"],["2024-07-24T23:14:53.010000"],["2024-07-24T23:14:54.010000"],["2024-07-24T23:14:55.010000"],["2024-07-24T23:14:56.010000"],["2024-07-24T23:14:57.010000"],["2024-07-24T23:14:58.010000"],["2024-07-24T23:14:59.010000"],["2024-07-24T23:15:00.010000"],["2024-07-24T23:15:01.010000"],["2024-07-24T23:15:02.010000"],["2024-07-24T23:15:03.010000"],["2024-07-24T23:15:04.010000"],["2024-07-24T23:15:05.010000"],["2024-07-24T23:15:06.010000"],["2024-07-24T23:15:07.010000"],["2024-07-24T23:15:08.010000"],["2024-07-24T23:15:09.010000"],["2024-07-24T23:15:10.010000"],["2024-07-24T23:15:11.010000"],["2024-07-24T23:15:12.010000"],["2024-07-24T23:15:13.010000"],["2024-07-24T23:15:14.010000"],["2024-07-24T23:15:15.010000"],["2024-07-24T23:15:16.010000"],["2024-07-24T23:15:17.010000"],["2024-07-24T23:15:18.010000"],["2024-07-24T23:15:19.010000"],["2024-07-24T23:15:20.010000"],["2024-07-24T23:15:21.010000"],["2024-07-24T23:15:22.010000"],["2024-07-24T23:15:23.010000"],["2024-07-24T23:15:24.010000"],["2024-07-24T23:15:25.010000"],["2024-07-24T23:15:26.010000"],["2024-07-24T23:15:27.010000"],["2024-07-24T23:15:28.010000"],["2024-07-24T23:15:29.010000"],["2024-07-24T23:15:30.010000"],["2024-07-24T23:15:31.010000"],["2024-07-24T23:15:32.010000"],["2024-07-24T23:15:33.010000"],["2024-07-24T23:15:34.010000"],["2024-07-24T23:15:35.010000"],["2024-07-24T23:15:36.010000"],["2024-07-24T23:15:37.010000"],["2024-07-24T23:15:38.010000"],["2024-07-24T23:15:39.010000"],["2024-07-24T23:15:40.010000"],["2024-07-24T23:15:41.010000"],["2024-07-24T23:15:42.010000"],["2024-07-24T23:15:43.010000"],["2024-07-24T23:15:44.010000"],["2024-07-24T23:15:45.010000"],["2024-07-24T23:15:46.010000"],["2024-07-24T23:15:47.010000"],["2024-07-24T23:15:48.010000"],["2024-07-24T23:15:49.010000"],["2024-07-24T23:15:50.010000"],["2024-07-24T23:15:51.010000"],["2024-07-24T23:15:52.010000"],["2024-07-24T23:15:53.010000"],["2024-07-24T23:15:54.010000"],["2024-07-24T23:15:55.010000"],["2024-07-24T23:15:56.010000"],["2024-07-24T23:15:57.010000"],["2024-07-24T23:15:58.010000"],["2024-07-24T23:15:59.010000"],["2024-07-24T23:16:00.010000"],["2024-07-24T23:16:01.010000"],["2024-07-24T23:16:02.010000"],["2024-07-24T23:16:03.010000"],["2024-07-24T23:16:04.010000"],["2024-07-24T23:16:05.010000"],["2024-07-24T23:16:06.010000"],["2024-07-24T23:16:07.010000"],["2024-07-24T23:16:08.010000"],["2024-07-24T23:16:09.010000"],["2024-07-24T23:16:10.010000"],["2024-07-24T23:16:11.010000"],["2024-07-24T23:16:12.010000"],["2024-07-24T23:16:13.010000"],["2024-07-24T23:16:14.010000"],["2024-07-24T23:16:15.010000"],["2024-07-24T23:16:16.010000"],["2024-07-24T23:16:17.010000"],["2024-07-24T23:16:18.010000"],["2024-07-24T23:16:19.010000"],["2024-07-24T23:16:20.010000"],["2024-07-24T23:16:21.010000"],["2024-07-24T23:16:22.010000"],["2024-07-24T23:16:23.010000"],["2024-07-24T23:16:24.010000"],["2024-07-24T23:16:25.010000"],["2024-07-24T23:16:26.010000"],["2024-07-24T23:16:27.010000"],["2024-07-24T23:16:28.010000"],["2024-07-24T23:16:29.010000"],["2024-07-24T23:16:30.010000"],["2024-07-24T23:16:31.010000"],["2024-07-24T23:16:32.010000"],["2024-07-24T23:16:33.010000"],["2024-07-24T23:16:34.010000"],["2024-07-24T23:16:35.010000"],["2024-07-24T23:16:36.010000"],["2024-07-24T23:16:37.010000"],["2024-07-24T23:16:38.010000"],["2024-07-24T23:16:39.010000"],["2024-07-24T23:16:40.010000"],["2024-07-24T23:16:41.010000"],["2024-07-24T23:16:42.010000"],["2024-07-24T23:16:43.010000"],["2024-07-24T23:16:44.010000"],["2024-07-24T23:16:45.010000"],["2024-07-24T23:16:46.010000"],["2024-07-24T23:16:47.010000"],["2024-07-24T23:16:48.010000"],["2024-07-24T23:16:49.010000"],["2024-07-24T23:16:50.010000"],["2024-07-24T23:16:51.010000"],["2024-07-24T23:16:52.010000"],["2024-07-24T23:16:53.010000"],["2024-07-24T23:16:54.010000"],["2024-07-24T23:16:55.010000"],["2024-07-24T23:16:56.010000"],["2024-07-24T23:16:57.010000"],["2024-07-24T23:16:58.010000"],["2024-07-24T23:16:59.010000"],["2024-07-24T23:17:00.010000"],["2024-07-24T23:17:01.010000"],["2024-07-24T23:17:02.010000"],["2024-07-24T23:17:03.010000"],["2024-07-24T23:17:04.010000"],["2024-07-24T23:17:05.010000"],["2024-07-24T23:17:06.010000"],["2024-07-24T23:17:07.010000"],["2024-07-24T23:17:08.010000"],["2024-07-24T23:17:09.010000"],["2024-07-24T23:17:10.010000"],["2024-07-24T23:17:11.010000"],["2024-07-24T23:17:12.010000"],["2024-07-24T23:17:13.010000"],["2024-07-24T23:17:14.010000"],["2024-07-24T23:17:15.010000"],["2024-07-24T23:17:16.010000"],["2024-07-24T23:17:17.010000"],["2024-07-24T23:17:18.010000"],["2024-07-24T23:17:19.010000"],["2024-07-24T23:17:20.010000"],["2024-07-24T23:17:21.010000"],["2024-07-24T23:17:22.010000"],["2024-07-24T23:17:23.010000"],["2024-07-24T23:17:24.010000"],["2024-07-24T23:17:25.010000"],["2024-07-24T23:17:26.010000"],["2024-07-24T23:17:27.010000"],["2024-07-24T23:17:28.010000"],["2024-07-24T23:17:29.010000"],["2024-07-24T23:17:30.010000"],["2024-07-24T23:17:31.010000"],["2024-07-24T23:17:32.010000"],["2024-07-24T23:17:33.010000"],["2024-07-24T23:17:34.010000"],["2024-07-24T23:17:35.010000"],["2024-07-24T23:17:36.010000"],["2024-07-24T23:17:37.010000"],["2024-07-24T23:17:38.010000"],["2024-07-24T23:17:39.010000"],["2024-07-24T23:17:40.010000"],["2024-07-24T23:17:41.010000"],["2024-07-24T23:17:42.010000"],["2024-07-24T23:17:43.010000"],["2024-07-24T23:17:44.010000"],["2024-07-24T23:17:45.010000"],["2024-07-24T23:17:46.010000"],["2024-07-24T23:17:47.010000"],["2024-07-24T23:17:48.010000"],["2024-07-24T23:17:49.010000"],["2024-07-24T23:17:50.010000"],["2024-07-24T23:17:51.010000"],["2024-07-24T23:17:52.010000"],["2024-07-24T23:17:53.010000"],["2024-07-24T23:17:54.010000"],["2024-07-24T23:17:55.010000"],["2024-07-24T23:17:56.010000"],["2024-07-24T23:17:57.010000"],["2024-07-24T23:17:58.010000"],["2024-07-24T23:17:59.010000"],["2024-07-24T23:18:00.010000"],["2024-07-24T23:18:01.010000"],["2024-07-24T23:18:02.010000"],["2024-07-24T23:18:03.010000"],["2024-07-24T23:18:04.010000"],["2024-07-24T23:18:05.010000"],["2024-07-24T23:18:06.010000"],["2024-07-24T23:18:07.010000"],["2024-07-24T23:18:08.010000"],["2024-07-24T23:18:09.010000"],["2024-07-24T23:18:10.010000"],["2024-07-24T23:18:11.010000"],["2024-07-24T23:18:12.010000"],["2024-07-24T23:18:13.010000"],["2024-07-24T23:18:14.010000"],["2024-07-24T23:18:15.010000"],["2024-07-24T23:18:16.010000"],["2024-07-24T23:18:17.010000"],["2024-07-24T23:18:18.010000"],["2024-07-24T23:18:19.010000"],["2024-07-24T23:18:20.010000"],["2024-07-24T23:18:21.010000"],["2024-07-24T23:18:22.010000"],["2024-07-24T23:18:23.010000"],["2024-07-24T23:18:24.010000"],["2024-07-24T23:18:25.010000"],["2024-07-24T23:18:26.010000"],["2024-07-24T23:18:27.010000"],["2024-07-24T23:18:28.010000"],["2024-07-24T23:18:29.010000"],["2024-07-24T23:18:30.010000"],["2024-07-24T23:18:31.010000"],["2024-07-24T23:18:32.010000"],["2024-07-24T23:18:33.010000"],["2024-07-24T23:18:34.010000"],["2024-07-24T23:18:35.010000"],["2024-07-24T23:18:36.010000"],["2024-07-24T23:18:37.010000"],["2024-07-24T23:18:38.010000"],["2024-07-24T23:18:39.010000"],["2024-07-24T23:18:40.010000"],["2024-07-24T23:18:41.010000"],["2024-07-24T23:18:42.010000"],["2024-07-24T23:18:43.010000"],["2024-07-24T23:18:44.010000"],["2024-07-24T23:18:45.010000"],["2024-07-24T23:18:46.010000"],["2024-07-24T23:18:47.010000"],["2024-07-24T23:18:48.010000"],["2024-07-24T23:18:49.010000"],["2024-07-24T23:18:50.010000"],["2024-07-24T23:18:51.010000"],["2024-07-24T23:18:52.010000"],["2024-07-24T23:18:53.010000"],["2024-07-24T23:18:54.010000"],["2024-07-24T23:18:55.010000"],["2024-07-24T23:18:56.010000"],["2024-07-24T23:18:57.010000"],["2024-07-24T23:18:58.010000"],["2024-07-24T23:18:59.010000"],["2024-07-24T23:19:00.010000"],["2024-07-24T23:19:01.010000"],["2024-07-24T23:19:02.010000"],["2024-07-24T23:19:03.010000"],["2024-07-24T23:19:04.010000"],["2024-07-24T23:19:05.010000"],["2024-07-24T23:19:06.010000"],["2024-07-24T23:19:07.010000"],["2024-07-24T23:19:08.010000"],["2024-07-24T23:19:09.010000"],["2024-07-24T23:19:10.010000"],["2024-07-24T23:19:11.010000"],["2024-07-24T23:19:12.010000"],["2024-07-24T23:19:13.010000"],["2024-07-24T23:19:14.010000"],["2024-07-24T23:19:15.010000"],["2024-07-24T23:19:16.010000"],["2024-07-24T23:19:17.010000"],["2024-07-24T23:19:18.010000"],["2024-07-24T23:19:19.010000"],["2024-07-24T23:19:20.010000"],["2024-07-24T23:19:21.010000"],["2024-07-24T23:19:22.010000"],["2024-07-24T23:19:23.010000"],["2024-07-24T23:19:24.010000"],["2024-07-24T23:19:25.010000"],["2024-07-24T23:19:26.010000"],["2024-07-24T23:19:27.010000"],["2024-07-24T23:19:28.010000"],["2024-07-24T23:19:29.010000"],["2024-07-24T23:19:30.010000"],["2024-07-24T23:19:31.010000"],["2024-07-24T23:19:32.010000"],["2024-07-24T23:19:33.010000"],["2024-07-24T23:19:34.010000"],["2024-07-24T23:19:35.010000"],["2024-07-24T23:19:36.010000"],["2024-07-24T23:19:37.010000"],["2024-07-24T23:19:38.010000"],["2024-07-24T23:19:39.010000"],["2024-07-24T23:19:40.010000"],["2024-07-24T23:19:41.010000"],["2024-07-24T23:19:42.010000"],["2024-07-24T23:19:43.010000"],["2024-07-24T23:19:44.010000"],["2024-07-24T23:19:45.010000"],["2024-07-24T23:19:46.010000"],["2024-07-24T23:19:47.010000"],["2024-07-24T23:19:48.010000"],["2024-07-24T23:19:49.010000"],["2024-07-24T23:19:50.010000"],["2024-07-24T23:19:51.010000"],["2024-07-24T23:19:52.010000"],["2024-07-24T23:19:53.010000"],["2024-07-24T23:19:54.010000"],["2024-07-24T23:19:55.010000"],["2024-07-24T23:19:56.010000"],["2024-07-24T23:19:57.010000"],["2024-07-24T23:19:58.010000"],["2024-07-24T23:19:59.010000"],["2024-07-24T23:20:00.010000"],["2024-07-24T23:20:01.010000"],["2024-07-24T23:20:02.010000"],["2024-07-24T23:20:03.010000"],["2024-07-24T23:20:04.010000"],["2024-07-24T23:20:05.010000"],["2024-07-24T23:20:06.010000"],["2024-07-24T23:20:07.010000"],["2024-07-24T23:20:08.010000"],["2024-07-24T23:20:09.010000"],["2024-07-24T23:20:10.010000"],["2024-07-24T23:20:11.010000"],["2024-07-24T23:20:12.010000"],["2024-07-24T23:20:13.010000"],["2024-07-24T23:20:14.010000"],["2024-07-24T23:20:15.010000"],["2024-07-24T23:20:16.010000"],["2024-07-24T23:20:17.010000"],["2024-07-24T23:20:18.010000"],["2024-07-24T23:20:19.010000"],["2024-07-24T23:20:20.010000"],["2024-07-24T23:20:21.010000"],["2024-07-24T23:20:22.010000"],["2024-07-24T23:20:23.010000"],["2024-07-24T23:20:24.010000"],["2024-07-24T23:20:25.010000"],["2024-07-24T23:20:26.010000"],["2024-07-24T23:20:27.010000"],["2024-07-24T23:20:28.010000"],["2024-07-24T23:20:29.010000"],["2024-07-24T23:20:30.010000"],["2024-07-24T23:20:31.010000"],["2024-07-24T23:20:32.010000"],["2024-07-24T23:20:33.010000"],["2024-07-24T23:20:34.010000"],["2024-07-24T23:20:35.010000"],["2024-07-24T23:20:36.010000"],["2024-07-24T23:20:37.010000"],["2024-07-24T23:20:38.010000"],["2024-07-24T23:20:39.010000"],["2024-07-24T23:20:40.010000"],["2024-07-24T23:20:41.010000"],["2024-07-24T23:20:42.010000"],["2024-07-24T23:20:43.010000"],["2024-07-24T23:20:44.010000"],["2024-07-24T23:20:45.010000"],["2024-07-24T23:20:46.010000"],["2024-07-24T23:20:47.010000"],["2024-07-24T23:20:48.010000"],["2024-07-24T23:20:49.010000"],["2024-07-24T23:20:50.010000"],["2024-07-24T23:20:51.010000"],["2024-07-24T23:20:52.010000"],["2024-07-24T23:20:53.010000"],["2024-07-24T23:20:54.010000"],["2024-07-24T23:20:55.010000"],["2024-07-24T23:20:56.010000"],["2024-07-24T23:20:57.010000"],["2024-07-24T23:20:58.010000"],["2024-07-24T23:20:59.010000"],["2024-07-24T23:21:00.010000"],["2024-07-24T23:21:01.010000"],["2024-07-24T23:21:02.010000"],["2024-07-24T23:21:03.010000"],["2024-07-24T23:21:04.010000"],["2024-07-24T23:21:05.010000"],["2024-07-24T23:21:06.010000"],["2024-07-24T23:21:07.010000"],["2024-07-24T23:21:08.010000"],["2024-07-24T23:21:09.010000"],["2024-07-24T23:21:10.010000"],["2024-07-24T23:21:11.010000"],["2024-07-24T23:21:12.010000"],["2024-07-24T23:21:13.010000"],["2024-07-24T23:21:14.010000"],["2024-07-24T23:21:15.010000"],["2024-07-24T23:21:16.010000"],["2024-07-24T23:21:17.010000"],["2024-07-24T23:21:18.010000"],["2024-07-24T23:21:19.010000"],["2024-07-24T23:21:20.010000"],["2024-07-24T23:21:21.010000"],["2024-07-24T23:21:22.010000"],["2024-07-24T23:21:23.010000"],["2024-07-24T23:21:24.010000"],["2024-07-24T23:21:25.010000"],["2024-07-24T23:21:26.010000"],["2024-07-24T23:21:27.010000"],["2024-07-24T23:21:28.010000"],["2024-07-24T23:21:29.010000"],["2024-07-24T23:21:30.010000"],["2024-07-24T23:21:31.010000"],["2024-07-24T23:21:32.010000"],["2024-07-24T23:21:33.010000"],["2024-07-24T23:21:34.010000"],["2024-07-24T23:21:35.010000"],["2024-07-24T23:21:36.010000"],["2024-07-24T23:21:37.010000"],["2024-07-24T23:21:38.010000"],["2024-07-24T23:21:39.010000"],["2024-07-24T23:21:40.010000"],["2024-07-24T23:21:41.010000"],["2024-07-24T23:21:42.010000"],["2024-07-24T23:21:43.010000"],["2024-07-24T23:21:44.010000"],["2024-07-24T23:21:45.010000"],["2024-07-24T23:21:46.010000"],["2024-07-24T23:21:47.010000"],["2024-07-24T23:21:48.010000"],["2024-07-24T23:21:49.010000"],["2024-07-24T23:21:50.010000"],["2024-07-24T23:21:51.010000"],["2024-07-24T23:21:52.010000"],["2024-07-24T23:21:53.010000"],["2024-07-24T23:21:54.010000"],["2024-07-24T23:21:55.010000"],["2024-07-24T23:21:56.010000"],["2024-07-24T23:21:57.010000"],["2024-07-24T23:21:58.010000"],["2024-07-24T23:21:59.010000"],["2024-07-24T23:22:00.010000"],["2024-07-24T23:22:01.010000"],["2024-07-24T23:22:02.010000"],["2024-07-24T23:22:03.010000"],["2024-07-24T23:22:04.010000"],["2024-07-24T23:22:05.010000"],["2024-07-24T23:22:06.010000"],["2024-07-24T23:22:07.010000"],["2024-07-24T23:22:08.010000"],["2024-07-24T23:22:09.010000"],["2024-07-24T23:22:10.010000"],["2024-07-24T23:22:11.010000"],["2024-07-24T23:22:12.010000"],["2024-07-24T23:22:13.010000"],["2024-07-24T23:22:14.010000"],["2024-07-24T23:22:15.010000"],["2024-07-24T23:22:16.010000"],["2024-07-24T23:22:17.010000"],["2024-07-24T23:22:18.010000"],["2024-07-24T23:22:19.010000"],["2024-07-24T23:22:20.010000"],["2024-07-24T23:22:21.010000"],["2024-07-24T23:22:22.010000"],["2024-07-24T23:22:23.010000"],["2024-07-24T23:22:24.010000"],["2024-07-24T23:22:25.010000"],["2024-07-24T23:22:26.010000"],["2024-07-24T23:22:27.010000"],["2024-07-24T23:22:28.010000"],["2024-07-24T23:22:29.010000"],["2024-07-24T23:22:30.010000"],["2024-07-24T23:22:31.010000"],["2024-07-24T23:22:32.010000"],["2024-07-24T23:22:33.010000"],["2024-07-24T23:22:34.010000"],["2024-07-24T23:22:35.010000"],["2024-07-24T23:22:36.010000"],["2024-07-24T23:22:37.010000"],["2024-07-24T23:22:38.010000"],["2024-07-24T23:22:39.010000"],["2024-07-24T23:22:40.010000"],["2024-07-24T23:22:41.010000"],["2024-07-24T23:22:42.010000"],["2024-07-24T23:22:43.010000"],["2024-07-24T23:22:44.010000"],["2024-07-24T23:22:45.010000"],["2024-07-24T23:22:46.010000"],["2024-07-24T23:22:47.010000"],["2024-07-24T23:22:48.010000"],["2024-07-24T23:22:49.010000"],["2024-07-24T23:22:50.010000"],["2024-07-24T23:22:51.010000"],["2024-07-24T23:22:52.010000"],["2024-07-24T23:22:53.010000"],["2024-07-24T23:22:54.010000"],["2024-07-24T23:22:55.010000"],["2024-07-24T23:22:56.010000"],["2024-07-24T23:22:57.010000"],["2024-07-24T23:22:58.010000"],["2024-07-24T23:22:59.010000"],["2024-07-24T23:23:00.010000"],["2024-07-24T23:23:01.010000"],["2024-07-24T23:23:02.010000"],["2024-07-24T23:23:03.010000"],["2024-07-24T23:23:04.010000"],["2024-07-24T23:23:05.010000"],["2024-07-24T23:23:06.010000"],["2024-07-24T23:23:07.010000"],["2024-07-24T23:23:08.010000"],["2024-07-24T23:23:09.010000"],["2024-07-24T23:23:10.010000"],["2024-07-24T23:23:11.010000"],["2024-07-24T23:23:12.010000"],["2024-07-24T23:23:13.010000"],["2024-07-24T23:23:14.010000"],["2024-07-24T23:23:15.010000"],["2024-07-24T23:23:16.010000"],["2024-07-24T23:23:17.010000"],["2024-07-24T23:23:18.010000"],["2024-07-24T23:23:19.010000"],["2024-07-24T23:23:20.010000"],["2024-07-24T23:23:21.010000"],["2024-07-24T23:23:22.010000"],["2024-07-24T23:23:23.010000"],["2024-07-24T23:23:24.010000"],["2024-07-24T23:23:25.010000"],["2024-07-24T23:23:26.010000"],["2024-07-24T23:23:27.010000"],["2024-07-24T23:23:28.010000"],["2024-07-24T23:23:29.010000"],["2024-07-24T23:23:30.010000"],["2024-07-24T23:23:31.010000"],["2024-07-24T23:23:32.010000"],["2024-07-24T23:23:33.010000"],["2024-07-24T23:23:34.010000"],["2024-07-24T23:23:35.010000"],["2024-07-24T23:23:36.010000"],["2024-07-24T23:23:37.010000"],["2024-07-24T23:23:38.010000"],["2024-07-24T23:23:39.010000"],["2024-07-24T23:23:40.010000"],["2024-07-24T23:23:41.010000"],["2024-07-24T23:23:42.010000"],["2024-07-24T23:23:43.010000"],["2024-07-24T23:23:44.010000"],["2024-07-24T23:23:45.010000"],["2024-07-24T23:23:46.010000"],["2024-07-24T23:23:47.010000"],["2024-07-24T23:23:48.010000"],["2024-07-24T23:23:49.010000"],["2024-07-24T23:23:50.010000"],["2024-07-24T23:23:51.010000"],["2024-07-24T23:23:52.010000"],["2024-07-24T23:23:53.010000"],["2024-07-24T23:23:54.010000"],["2024-07-24T23:23:55.010000"],["2024-07-24T23:23:56.010000"],["2024-07-24T23:23:57.010000"],["2024-07-24T23:23:58.010000"],["2024-07-24T23:23:59.010000"],["2024-07-24T23:24:00.010000"],["2024-07-24T23:24:01.010000"],["2024-07-24T23:24:02.010000"],["2024-07-24T23:24:03.010000"],["2024-07-24T23:24:04.010000"],["2024-07-24T23:24:05.010000"],["2024-07-24T23:24:06.010000"],["2024-07-24T23:24:07.010000"],["2024-07-24T23:24:08.010000"],["2024-07-24T23:24:09.010000"],["2024-07-24T23:24:10.010000"],["2024-07-24T23:24:11.010000"],["2024-07-24T23:24:12.010000"],["2024-07-24T23:24:13.010000"],["2024-07-24T23:24:14.010000"],["2024-07-24T23:24:15.010000"],["2024-07-24T23:24:16.010000"],["2024-07-24T23:24:17.010000"],["2024-07-24T23:24:18.010000"],["2024-07-24T23:24:19.010000"],["2024-07-24T23:24:20.010000"],["2024-07-24T23:24:21.010000"],["2024-07-24T23:24:22.010000"],["2024-07-24T23:24:23.010000"],["2024-07-24T23:24:24.010000"],["2024-07-24T23:24:25.010000"],["2024-07-24T23:24:26.010000"],["2024-07-24T23:24:27.010000"],["2024-07-24T23:24:28.010000"],["2024-07-24T23:24:29.010000"],["2024-07-24T23:24:30.010000"],["2024-07-24T23:24:31.010000"],["2024-07-24T23:24:32.010000"],["2024-07-24T23:24:33.010000"],["2024-07-24T23:24:34.010000"],["2024-07-24T23:24:35.010000"],["2024-07-24T23:24:36.010000"],["2024-07-24T23:24:37.010000"],["2024-07-24T23:24:38.010000"],["2024-07-24T23:24:39.010000"],["2024-07-24T23:24:40.010000"],["2024-07-24T23:24:41.010000"],["2024-07-24T23:24:42.010000"],["2024-07-24T23:24:43.010000"],["2024-07-24T23:24:44.010000"],["2024-07-24T23:24:45.010000"],["2024-07-24T23:24:46.010000"],["2024-07-24T23:24:47.010000"],["2024-07-24T23:24:48.010000"],["2024-07-24T23:24:49.010000"],["2024-07-24T23:24:50.010000"],["2024-07-24T23:24:51.010000"],["2024-07-24T23:24:52.010000"],["2024-07-24T23:24:53.010000"],["2024-07-24T23:24:54.010000"],["2024-07-24T23:24:55.010000"],["2024-07-24T23:24:56.010000"],["2024-07-24T23:24:57.010000"],["2024-07-24T23:24:58.010000"],["2024-07-24T23:24:59.010000"],["2024-07-24T23:25:00.010000"],["2024-07-24T23:25:01.010000"],["2024-07-24T23:25:02.010000"],["2024-07-24T23:25:03.010000"],["2024-07-24T23:25:04.010000"],["2024-07-24T23:25:05.010000"],["2024-07-24T23:25:06.010000"],["2024-07-24T23:25:07.010000"],["2024-07-24T23:25:08.010000"],["2024-07-24T23:25:09.010000"],["2024-07-24T23:25:10.010000"],["2024-07-24T23:25:11.010000"],["2024-07-24T23:25:12.010000"],["2024-07-24T23:25:13.010000"],["2024-07-24T23:25:14.010000"],["2024-07-24T23:25:15.010000"],["2024-07-24T23:25:16.010000"],["2024-07-24T23:25:17.010000"],["2024-07-24T23:25:18.010000"],["2024-07-24T23:25:19.010000"],["2024-07-24T23:25:20.010000"],["2024-07-24T23:25:21.010000"],["2024-07-24T23:25:22.010000"],["2024-07-24T23:25:23.010000"],["2024-07-24T23:25:24.010000"],["2024-07-24T23:25:25.010000"],["2024-07-24T23:25:26.010000"],["2024-07-24T23:25:27.010000"],["2024-07-24T23:25:28.010000"],["2024-07-24T23:25:29.010000"],["2024-07-24T23:25:30.010000"],["2024-07-24T23:25:31.010000"],["2024-07-24T23:25:32.010000"],["2024-07-24T23:25:33.010000"],["2024-07-24T23:25:34.010000"],["2024-07-24T23:25:35.010000"],["2024-07-24T23:25:36.010000"],["2024-07-24T23:25:37.010000"],["2024-07-24T23:25:38.010000"],["2024-07-24T23:25:39.010000"],["2024-07-24T23:25:40.010000"],["2024-07-24T23:25:41.010000"],["2024-07-24T23:25:42.010000"],["2024-07-24T23:25:43.010000"],["2024-07-24T23:25:44.010000"],["2024-07-24T23:25:45.010000"],["2024-07-24T23:25:46.010000"],["2024-07-24T23:25:47.010000"],["2024-07-24T23:25:48.010000"],["2024-07-24T23:25:49.010000"],["2024-07-24T23:25:50.010000"],["2024-07-24T23:25:51.010000"],["2024-07-24T23:25:52.010000"],["2024-07-24T23:25:53.010000"],["2024-07-24T23:25:54.010000"],["2024-07-24T23:25:55.010000"],["2024-07-24T23:25:56.010000"],["2024-07-24T23:25:57.010000"],["2024-07-24T23:25:58.010000"],["2024-07-24T23:25:59.010000"],["2024-07-24T23:26:00.010000"],["2024-07-24T23:26:01.010000"],["2024-07-24T23:26:02.010000"],["2024-07-24T23:26:03.010000"],["2024-07-24T23:26:04.010000"],["2024-07-24T23:26:05.010000"],["2024-07-24T23:26:06.010000"],["2024-07-24T23:26:07.010000"],["2024-07-24T23:26:08.010000"],["2024-07-24T23:26:09.010000"],["2024-07-24T23:26:10.010000"],["2024-07-24T23:26:11.010000"],["2024-07-24T23:26:12.010000"],["2024-07-24T23:26:13.010000"],["2024-07-24T23:26:14.010000"],["2024-07-24T23:26:15.010000"],["2024-07-24T23:26:16.010000"],["2024-07-24T23:26:17.010000"],["2024-07-24T23:26:18.010000"],["2024-07-24T23:26:19.010000"],["2024-07-24T23:26:20.010000"],["2024-07-24T23:26:21.010000"],["2024-07-24T23:26:22.010000"],["2024-07-24T23:26:23.010000"],["2024-07-24T23:26:24.010000"],["2024-07-24T23:26:25.010000"],["2024-07-24T23:26:26.010000"],["2024-07-24T23:26:27.010000"],["2024-07-24T23:26:28.010000"],["2024-07-24T23:26:29.010000"],["2024-07-24T23:26:30.010000"],["2024-07-24T23:26:31.010000"],["2024-07-24T23:26:32.010000"],["2024-07-24T23:26:33.010000"],["2024-07-24T23:26:34.010000"],["2024-07-24T23:26:35.010000"],["2024-07-24T23:26:36.010000"],["2024-07-24T23:26:37.010000"],["2024-07-24T23:26:38.010000"],["2024-07-24T23:26:39.010000"],["2024-07-24T23:26:40.010000"],["2024-07-24T23:26:41.010000"],["2024-07-24T23:26:42.010000"],["2024-07-24T23:26:43.010000"],["2024-07-24T23:26:44.010000"],["2024-07-24T23:26:45.010000"],["2024-07-24T23:26:46.010000"],["2024-07-24T23:26:47.010000"],["2024-07-24T23:26:48.010000"],["2024-07-24T23:26:49.010000"],["2024-07-24T23:26:50.010000"],["2024-07-24T23:26:51.010000"],["2024-07-24T23:26:52.010000"],["2024-07-24T23:26:53.010000"],["2024-07-24T23:26:54.010000"],["2024-07-24T23:26:55.010000"],["2024-07-24T23:26:56.010000"],["2024-07-24T23:26:57.010000"],["2024-07-24T23:26:58.010000"],["2024-07-24T23:26:59.010000"],["2024-07-24T23:27:00.010000"],["2024-07-24T23:27:01.010000"],["2024-07-24T23:27:02.010000"],["2024-07-24T23:27:03.010000"],["2024-07-24T23:27:04.010000"],["2024-07-24T23:27:05.010000"],["2024-07-24T23:27:06.010000"],["2024-07-24T23:27:07.010000"],["2024-07-24T23:27:08.010000"],["2024-07-24T23:27:09.010000"],["2024-07-24T23:27:10.010000"],["2024-07-24T23:27:11.010000"],["2024-07-24T23:27:12.010000"],["2024-07-24T23:27:13.010000"],["2024-07-24T23:27:14.010000"],["2024-07-24T23:27:15.010000"],["2024-07-24T23:27:16.010000"],["2024-07-24T23:27:17.010000"],["2024-07-24T23:27:18.010000"],["2024-07-24T23:27:19.010000"],["2024-07-24T23:27:20.010000"],["2024-07-24T23:27:21.010000"],["2024-07-24T23:27:22.010000"],["2024-07-24T23:27:23.010000"],["2024-07-24T23:27:24.010000"],["2024-07-24T23:27:25.010000"],["2024-07-24T23:27:26.010000"],["2024-07-24T23:27:27.010000"],["2024-07-24T23:27:28.010000"],["2024-07-24T23:27:29.010000"],["2024-07-24T23:27:30.010000"],["2024-07-24T23:27:31.010000"],["2024-07-24T23:27:32.010000"],["2024-07-24T23:27:33.010000"],["2024-07-24T23:27:34.010000"],["2024-07-24T23:27:35.010000"],["2024-07-24T23:27:36.010000"],["2024-07-24T23:27:37.010000"],["2024-07-24T23:27:38.010000"],["2024-07-24T23:27:39.010000"],["2024-07-24T23:27:40.010000"],["2024-07-24T23:27:41.010000"],["2024-07-24T23:27:42.010000"],["2024-07-24T23:27:43.010000"],["2024-07-24T23:27:44.010000"],["2024-07-24T23:27:45.010000"],["2024-07-24T23:27:46.010000"],["2024-07-24T23:27:47.010000"],["2024-07-24T23:27:48.010000"],["2024-07-24T23:27:49.010000"],["2024-07-24T23:27:50.010000"],["2024-07-24T23:27:51.010000"],["2024-07-24T23:27:52.010000"],["2024-07-24T23:27:53.010000"],["2024-07-24T23:27:54.010000"],["2024-07-24T23:27:55.010000"],["2024-07-24T23:27:56.010000"],["2024-07-24T23:27:57.010000"],["2024-07-24T23:27:58.010000"],["2024-07-24T23:27:59.010000"],["2024-07-24T23:28:00.010000"],["2024-07-24T23:28:01.010000"],["2024-07-24T23:28:02.010000"],["2024-07-24T23:28:03.010000"],["2024-07-24T23:28:04.010000"],["2024-07-24T23:28:05.010000"],["2024-07-24T23:28:06.010000"],["2024-07-24T23:28:07.010000"],["2024-07-24T23:28:08.010000"],["2024-07-24T23:28:09.010000"],["2024-07-24T23:28:10.010000"],["2024-07-24T23:28:11.010000"],["2024-07-24T23:28:12.010000"],["2024-07-24T23:28:13.010000"],["2024-07-24T23:28:14.010000"],["2024-07-24T23:28:15.010000"],["2024-07-24T23:28:16.010000"],["2024-07-24T23:28:17.010000"],["2024-07-24T23:28:18.010000"],["2024-07-24T23:28:19.010000"],["2024-07-24T23:28:20.010000"],["2024-07-24T23:28:21.010000"],["2024-07-24T23:28:22.010000"],["2024-07-24T23:28:23.010000"],["2024-07-24T23:28:24.010000"],["2024-07-24T23:28:25.010000"],["2024-07-24T23:28:26.010000"],["2024-07-24T23:28:27.010000"],["2024-07-24T23:28:28.010000"],["2024-07-24T23:28:29.010000"],["2024-07-24T23:28:30.010000"],["2024-07-24T23:28:31.010000"],["2024-07-24T23:28:32.010000"],["2024-07-24T23:28:33.010000"],["2024-07-24T23:28:34.010000"],["2024-07-24T23:28:35.010000"],["2024-07-24T23:28:36.010000"],["2024-07-24T23:28:37.010000"],["2024-07-24T23:28:38.010000"],["2024-07-24T23:28:39.010000"],["2024-07-24T23:28:40.010000"],["2024-07-24T23:28:41.010000"],["2024-07-24T23:28:42.010000"],["2024-07-24T23:28:43.010000"],["2024-07-24T23:28:44.010000"],["2024-07-24T23:28:45.010000"],["2024-07-24T23:28:46.010000"],["2024-07-24T23:28:47.010000"],["2024-07-24T23:28:48.010000"],["2024-07-24T23:28:49.010000"],["2024-07-24T23:28:50.010000"],["2024-07-24T23:28:51.010000"],["2024-07-24T23:28:52.010000"],["2024-07-24T23:28:53.010000"],["2024-07-24T23:28:54.010000"],["2024-07-24T23:28:55.010000"],["2024-07-24T23:28:56.010000"],["2024-07-24T23:28:57.010000"],["2024-07-24T23:28:58.010000"],["2024-07-24T23:28:59.010000"],["2024-07-24T23:29:00.010000"],["2024-07-24T23:29:01.010000"],["2024-07-24T23:29:02.010000"],["2024-07-24T23:29:03.010000"],["2024-07-24T23:29:04.010000"],["2024-07-24T23:29:05.010000"],["2024-07-24T23:29:06.010000"],["2024-07-24T23:29:07.010000"],["2024-07-24T23:29:08.010000"],["2024-07-24T23:29:09.010000"],["2024-07-24T23:29:10.010000"],["2024-07-24T23:29:11.010000"],["2024-07-24T23:29:12.010000"],["2024-07-24T23:29:13.010000"],["2024-07-24T23:29:14.010000"],["2024-07-24T23:29:15.010000"],["2024-07-24T23:29:16.010000"],["2024-07-24T23:29:17.010000"],["2024-07-24T23:29:18.010000"],["2024-07-24T23:29:19.010000"],["2024-07-24T23:29:20.010000"],["2024-07-24T23:29:21.010000"],["2024-07-24T23:29:22.010000"],["2024-07-24T23:29:23.010000"],["2024-07-24T23:29:24.010000"],["2024-07-24T23:29:25.010000"],["2024-07-24T23:29:26.010000"],["2024-07-24T23:29:27.010000"],["2024-07-24T23:29:28.010000"],["2024-07-24T23:29:29.010000"],["2024-07-24T23:29:30.010000"],["2024-07-24T23:29:31.010000"],["2024-07-24T23:29:32.010000"],["2024-07-24T23:29:33.010000"],["2024-07-24T23:29:34.010000"],["2024-07-24T23:29:35.010000"],["2024-07-24T23:29:36.010000"],["2024-07-24T23:29:37.010000"],["2024-07-24T23:29:38.010000"],["2024-07-24T23:29:39.010000"],["2024-07-24T23:29:40.010000"],["2024-07-24T23:29:41.010000"],["2024-07-24T23:29:42.010000"],["2024-07-24T23:29:43.010000"],["2024-07-24T23:29:44.010000"],["2024-07-24T23:29:45.010000"],["2024-07-24T23:29:46.010000"],["2024-07-24T23:29:47.010000"],["2024-07-24T23:29:48.010000"],["2024-07-24T23:29:49.010000"],["2024-07-24T23:29:50.010000"],["2024-07-24T23:29:51.010000"],["2024-07-24T23:29:52.010000"],["2024-07-24T23:29:53.010000"],["2024-07-24T23:29:54.010000"],["2024-07-24T23:29:55.010000"],["2024-07-24T23:29:56.010000"],["2024-07-24T23:29:57.010000"],["2024-07-24T23:29:58.010000"],["2024-07-24T23:29:59.010000"],["2024-07-24T23:30:00.010000"],["2024-07-24T23:30:01.010000"],["2024-07-24T23:30:02.010000"],["2024-07-24T23:30:03.010000"],["2024-07-24T23:30:04.010000"],["2024-07-24T23:30:05.010000"],["2024-07-24T23:30:06.010000"],["2024-07-24T23:30:07.010000"],["2024-07-24T23:30:08.010000"],["2024-07-24T23:30:09.010000"],["2024-07-24T23:30:10.010000"],["2024-07-24T23:30:11.010000"],["2024-07-24T23:30:12.010000"],["2024-07-24T23:30:13.010000"],["2024-07-24T23:30:14.010000"],["2024-07-24T23:30:15.010000"],["2024-07-24T23:30:16.010000"],["2024-07-24T23:30:17.010000"],["2024-07-24T23:30:18.010000"],["2024-07-24T23:30:19.010000"],["2024-07-24T23:30:20.010000"],["2024-07-24T23:30:21.010000"],["2024-07-24T23:30:22.010000"],["2024-07-24T23:30:23.010000"],["2024-07-24T23:30:24.010000"],["2024-07-24T23:30:25.010000"],["2024-07-24T23:30:26.010000"],["2024-07-24T23:30:27.010000"],["2024-07-24T23:30:28.010000"],["2024-07-24T23:30:29.010000"],["2024-07-24T23:30:30.010000"],["2024-07-24T23:30:31.010000"],["2024-07-24T23:30:32.010000"],["2024-07-24T23:30:33.010000"],["2024-07-24T23:30:34.010000"],["2024-07-24T23:30:35.010000"],["2024-07-24T23:30:36.010000"],["2024-07-24T23:30:37.010000"],["2024-07-24T23:30:38.010000"],["2024-07-24T23:30:39.010000"],["2024-07-24T23:30:40.010000"],["2024-07-24T23:30:41.010000"],["2024-07-24T23:30:42.010000"],["2024-07-24T23:30:43.010000"],["2024-07-24T23:30:44.010000"],["2024-07-24T23:30:45.010000"],["2024-07-24T23:30:46.010000"],["2024-07-24T23:30:47.010000"],["2024-07-24T23:30:48.010000"],["2024-07-24T23:30:49.010000"],["2024-07-24T23:30:50.010000"],["2024-07-24T23:30:51.010000"],["2024-07-24T23:30:52.010000"],["2024-07-24T23:30:53.010000"],["2024-07-24T23:30:54.010000"],["2024-07-24T23:30:55.010000"],["2024-07-24T23:30:56.010000"],["2024-07-24T23:30:57.010000"],["2024-07-24T23:30:58.010000"],["2024-07-24T23:30:59.010000"],["2024-07-24T23:31:00.010000"],["2024-07-24T23:31:01.010000"],["2024-07-24T23:31:02.010000"],["2024-07-24T23:31:03.010000"],["2024-07-24T23:31:04.010000"],["2024-07-24T23:31:05.010000"],["2024-07-24T23:31:06.010000"],["2024-07-24T23:31:07.010000"],["2024-07-24T23:31:08.010000"],["2024-07-24T23:31:09.010000"],["2024-07-24T23:31:10.010000"],["2024-07-24T23:31:11.010000"],["2024-07-24T23:31:12.010000"],["2024-07-24T23:31:13.010000"],["2024-07-24T23:31:14.010000"],["2024-07-24T23:31:15.010000"],["2024-07-24T23:31:16.010000"],["2024-07-24T23:31:17.010000"],["2024-07-24T23:31:18.010000"],["2024-07-24T23:31:19.010000"],["2024-07-24T23:31:20.010000"],["2024-07-24T23:31:21.010000"],["2024-07-24T23:31:22.010000"],["2024-07-24T23:31:23.010000"],["2024-07-24T23:31:24.010000"],["2024-07-24T23:31:25.010000"],["2024-07-24T23:31:26.010000"],["2024-07-24T23:31:27.010000"],["2024-07-24T23:31:28.010000"],["2024-07-24T23:31:29.010000"],["2024-07-24T23:31:30.010000"],["2024-07-24T23:31:31.010000"],["2024-07-24T23:31:32.010000"],["2024-07-24T23:31:33.010000"],["2024-07-24T23:31:34.010000"],["2024-07-24T23:31:35.010000"],["2024-07-24T23:31:36.010000"],["2024-07-24T23:31:37.010000"],["2024-07-24T23:31:38.010000"],["2024-07-24T23:31:39.010000"],["2024-07-24T23:31:40.010000"],["2024-07-24T23:31:41.010000"],["2024-07-24T23:31:42.010000"],["2024-07-24T23:31:43.010000"],["2024-07-24T23:31:44.010000"],["2024-07-24T23:31:45.010000"],["2024-07-24T23:31:46.010000"],["2024-07-24T23:31:47.010000"],["2024-07-24T23:31:48.010000"],["2024-07-24T23:31:49.010000"],["2024-07-24T23:31:50.010000"],["2024-07-24T23:31:51.010000"],["2024-07-24T23:31:52.010000"],["2024-07-24T23:31:53.010000"],["2024-07-24T23:31:54.010000"],["2024-07-24T23:31:55.010000"],["2024-07-24T23:31:56.010000"],["2024-07-24T23:31:57.010000"],["2024-07-24T23:31:58.010000"],["2024-07-24T23:31:59.010000"],["2024-07-24T23:32:00.010000"],["2024-07-24T23:32:01.010000"],["2024-07-24T23:32:02.010000"],["2024-07-24T23:32:03.010000"],["2024-07-24T23:32:04.010000"],["2024-07-24T23:32:05.010000"],["2024-07-24T23:32:06.010000"],["2024-07-24T23:32:07.010000"],["2024-07-24T23:32:08.010000"],["2024-07-24T23:32:09.010000"],["2024-07-24T23:32:10.010000"],["2024-07-24T23:32:11.010000"],["2024-07-24T23:32:12.010000"],["2024-07-24T23:32:13.010000"],["2024-07-24T23:32:14.010000"],["2024-07-24T23:32:15.010000"],["2024-07-24T23:32:16.010000"],["2024-07-24T23:32:17.010000"],["2024-07-24T23:32:18.010000"],["2024-07-24T23:32:19.010000"],["2024-07-24T23:32:20.010000"],["2024-07-24T23:32:21.010000"],["2024-07-24T23:32:22.010000"],["2024-07-24T23:32:23.010000"],["2024-07-24T23:32:24.010000"],["2024-07-24T23:32:25.010000"],["2024-07-24T23:32:26.010000"],["2024-07-24T23:32:27.010000"],["2024-07-24T23:32:28.010000"],["2024-07-24T23:32:29.010000"],["2024-07-24T23:32:30.010000"],["2024-07-24T23:32:31.010000"],["2024-07-24T23:32:32.010000"],["2024-07-24T23:32:33.010000"],["2024-07-24T23:32:34.010000"],["2024-07-24T23:32:35.010000"],["2024-07-24T23:32:36.010000"],["2024-07-24T23:32:37.010000"],["2024-07-24T23:32:38.010000"],["2024-07-24T23:32:39.010000"],["2024-07-24T23:32:40.010000"],["2024-07-24T23:32:41.010000"],["2024-07-24T23:32:42.010000"],["2024-07-24T23:32:43.010000"],["2024-07-24T23:32:44.010000"],["2024-07-24T23:32:45.010000"],["2024-07-24T23:32:46.010000"],["2024-07-24T23:32:47.010000"],["2024-07-24T23:32:48.010000"],["2024-07-24T23:32:49.010000"],["2024-07-24T23:32:50.010000"],["2024-07-24T23:32:51.010000"],["2024-07-24T23:32:52.010000"],["2024-07-24T23:32:53.010000"],["2024-07-24T23:32:54.010000"],["2024-07-24T23:32:55.010000"],["2024-07-24T23:32:56.010000"],["2024-07-24T23:32:57.010000"],["2024-07-24T23:32:58.010000"],["2024-07-24T23:32:59.010000"],["2024-07-24T23:33:00.010000"],["2024-07-24T23:33:01.010000"],["2024-07-24T23:33:02.010000"],["2024-07-24T23:33:03.010000"],["2024-07-24T23:33:04.010000"],["2024-07-24T23:33:05.010000"],["2024-07-24T23:33:06.010000"],["2024-07-24T23:33:07.010000"],["2024-07-24T23:33:08.010000"],["2024-07-24T23:33:09.010000"],["2024-07-24T23:33:10.010000"],["2024-07-24T23:33:11.010000"],["2024-07-24T23:33:12.010000"],["2024-07-24T23:33:13.010000"],["2024-07-24T23:33:14.010000"],["2024-07-24T23:33:15.010000"],["2024-07-24T23:33:16.010000"],["2024-07-24T23:33:17.010000"],["2024-07-24T23:33:18.010000"],["2024-07-24T23:33:19.010000"],["2024-07-24T23:33:20.010000"],["2024-07-24T23:33:21.010000"],["2024-07-24T23:33:22.010000"],["2024-07-24T23:33:23.010000"],["2024-07-24T23:33:24.010000"],["2024-07-24T23:33:25.010000"],["2024-07-24T23:33:26.010000"],["2024-07-24T23:33:27.010000"],["2024-07-24T23:33:28.010000"],["2024-07-24T23:33:29.010000"],["2024-07-24T23:33:30.010000"],["2024-07-24T23:33:31.010000"],["2024-07-24T23:33:32.010000"],["2024-07-24T23:33:33.010000"],["2024-07-24T23:33:34.010000"],["2024-07-24T23:33:35.010000"],["2024-07-24T23:33:36.010000"],["2024-07-24T23:33:37.010000"],["2024-07-24T23:33:38.010000"],["2024-07-24T23:33:39.010000"],["2024-07-24T23:33:40.010000"],["2024-07-24T23:33:41.010000"],["2024-07-24T23:33:42.010000"],["2024-07-24T23:33:43.010000"],["2024-07-24T23:33:44.010000"],["2024-07-24T23:33:45.010000"],["2024-07-24T23:33:46.010000"],["2024-07-24T23:33:47.010000"],["2024-07-24T23:33:48.010000"],["2024-07-24T23:33:49.010000"],["2024-07-24T23:33:50.010000"],["2024-07-24T23:33:51.010000"],["2024-07-24T23:33:52.010000"],["2024-07-24T23:33:53.010000"],["2024-07-24T23:33:54.010000"],["2024-07-24T23:33:55.010000"],["2024-07-24T23:33:56.010000"],["2024-07-24T23:33:57.010000"],["2024-07-24T23:33:58.010000"],["2024-07-24T23:33:59.010000"],["2024-07-24T23:34:00.010000"],["2024-07-24T23:34:01.010000"],["2024-07-24T23:34:02.010000"],["2024-07-24T23:34:03.010000"],["2024-07-24T23:34:04.010000"],["2024-07-24T23:34:05.010000"],["2024-07-24T23:34:06.010000"],["2024-07-24T23:34:07.010000"],["2024-07-24T23:34:08.010000"],["2024-07-24T23:34:09.010000"],["2024-07-24T23:34:10.010000"],["2024-07-24T23:34:11.010000"],["2024-07-24T23:34:12.010000"],["2024-07-24T23:34:13.010000"],["2024-07-24T23:34:14.010000"],["2024-07-24T23:34:15.010000"],["2024-07-24T23:34:16.010000"],["2024-07-24T23:34:17.010000"],["2024-07-24T23:34:18.010000"],["2024-07-24T23:34:19.010000"],["2024-07-24T23:34:20.010000"],["2024-07-24T23:34:21.010000"],["2024-07-24T23:34:22.010000"],["2024-07-24T23:34:23.010000"],["2024-07-24T23:34:24.010000"],["2024-07-24T23:34:25.010000"],["2024-07-24T23:34:26.010000"],["2024-07-24T23:34:27.010000"],["2024-07-24T23:34:28.010000"],["2024-07-24T23:34:29.010000"],["2024-07-24T23:34:30.010000"],["2024-07-24T23:34:31.010000"],["2024-07-24T23:34:32.010000"],["2024-07-24T23:34:33.010000"],["2024-07-24T23:34:34.010000"],["2024-07-24T23:34:35.010000"],["2024-07-24T23:34:36.010000"],["2024-07-24T23:34:37.010000"],["2024-07-24T23:34:38.010000"],["2024-07-24T23:34:39.010000"],["2024-07-24T23:34:40.010000"],["2024-07-24T23:34:41.010000"],["2024-07-24T23:34:42.010000"],["2024-07-24T23:34:43.010000"],["2024-07-24T23:34:44.010000"],["2024-07-24T23:34:45.010000"],["2024-07-24T23:34:46.010000"],["2024-07-24T23:34:47.010000"],["2024-07-24T23:34:48.010000"],["2024-07-24T23:34:49.010000"],["2024-07-24T23:34:50.010000"],["2024-07-24T23:34:51.010000"],["2024-07-24T23:34:52.010000"],["2024-07-24T23:34:53.010000"],["2024-07-24T23:34:54.010000"],["2024-07-24T23:34:55.010000"],["2024-07-24T23:34:56.010000"],["2024-07-24T23:34:57.010000"],["2024-07-24T23:34:58.010000"],["2024-07-24T23:34:59.010000"],["2024-07-24T23:35:00.010000"],["2024-07-24T23:35:01.010000"],["2024-07-24T23:35:02.010000"],["2024-07-24T23:35:03.010000"],["2024-07-24T23:35:04.010000"],["2024-07-24T23:35:05.010000"]],"hovertemplate":"color=3\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"3","line":{"color":"#ab63fa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"3","scene":"scene","showlegend":true,"x":[0.9671136224642396,-0.8191012549214065,-0.006812149193137884,-0.05445077735930681,-0.7507369862869382,0.18963675573468208,-0.8687509642913938,0.17583783017471433,0.7602552222087979,-0.04368592007085681,0.8250091443769634,-0.28861142322421074,-0.22519990662112832,-0.8254430582746863,0.6299813236109912,0.6309301997534931,-0.49345016572624445,-0.6893721036612988,0.9625917389057577,-0.04177334113046527,0.6748066009022295,-0.9776620222255588,0.24491729494184256,0.6776713542640209,0.04861065372824669,-0.5882930741645396,0.5979112386703491,0.8007630370557308,0.9088731287047267,0.6612087115645409,-0.7640290106646717,0.9986358946189284,-0.48265686305239797,0.5085076498799026,0.37034296011552215,-0.871797826141119,0.7414193660952151,-0.4139142665080726,0.36911214469000697,0.8700183192268014,0.33468861831352115,-0.6211992264725268,-0.7037184983491898,-0.31381253246217966,0.5686169075779617,0.29015295673161745,0.776796031743288,0.2419624775648117,-0.6503173294477165,-0.5092966458760202,0.7210048693232238,0.27751939138397574,-0.706613983027637,-0.8411831757985055,0.27896241238340735,0.5091549372300506,-0.6866048453375697,-0.9864350128918886,-0.8367516566067934,-0.10790096269920468,0.011782089713960886,-0.35582909919321537,-0.14271822944283485,-0.6805338021367788,0.8277589189819992,-0.8238073335960507,-0.3312463262118399,0.5585184376686811,-0.6803503343835473,-0.48974573193117976,-0.3284778632223606,0.19856905657798052,0.3831984670832753,-0.9863596428185701,-0.3156573064625263,0.3657441707327962,0.03699485398828983,-0.7705583879724145,0.34106521727517247,-0.8165911734104156,0.543818122241646,0.0731297037564218,0.4083753312006593,-0.8427169308997691,-0.337749688886106,-0.48246292723342776,-0.500581581145525,0.43742308113723993,0.6453038975596428,0.15620007272809744,-0.7526227822527289,0.980631351005286,0.7188796694390476,0.07691401429474354,-0.8535993490368128,0.8485199180431664,0.3123456109315157,-0.23724508145824075,-0.4906374402344227,0.2364592240191996,-0.2182905487716198,-0.7744228690862656,-0.1112536359578371,0.7579656564630568,0.7971402523107827,-0.44610582757741213,0.9262499259784818,-0.509215644095093,0.21148405643180013,-0.8895399505272508,0.7802570951171219,0.6288535334169865,0.3061702228151262,-0.26054739905521274,0.970079006627202,0.16616238094866276,-0.5065911072306335,0.43578522372990847,0.9444177756085992,-0.4713610205799341,-0.876667242962867,-0.60417101951316,0.4568689949810505,0.16479472676292062,0.3469396233558655,0.13751503312960267,-0.3441092665307224,0.5285889748483896,-0.02603064151480794,-0.13032214110717177,0.730372388381511,0.41558416187763214,0.8189029153436422,0.9896854269318283,-0.35744491359218955,-0.441530026961118,-0.08798862714320421,-0.863704189658165,-0.9085929938592017,-0.3357666046358645,-0.3012817087583244,0.4085870827548206,0.3410681807436049,-0.9642912452109158,-0.16333456430584192,-0.4649346088990569,-0.3858145819976926,-0.3983216402120888,-0.46037073945626616,-0.6899398164823651,-0.4657608834095299,-0.24968687538057566,-0.8550779209472239,0.18657465232536197,-0.28318805899471045,0.8123451196588576,-0.939702354837209,-0.6617626887746155,-0.9592681294307113,0.6698771365918219,0.5627185478806496,-0.9852751870639622,0.6422434519045055,0.5012382115237415,0.9774109479039907,0.17319997120648623,0.26860720198601484,0.5827047694474459,0.21867792448028922,-0.07064352044835687,-0.251518736127764,-0.31179126165807247,-0.25280838552862406,-0.5993907656520605,-0.6369912391528487,0.2365831951610744,0.41904391208663583,-0.2756480500102043,0.9746651560999453,-0.20973404543474317,-0.21711635356768966,0.10097394930198789,0.7983913547359407,0.7818944356404245,-0.14146215235814452,0.21545503148809075,0.33935016859322786,0.018584704492241144,-0.9970045313239098,-0.7593740816228092,-0.12808859208598733,0.9989241436123848,-0.8121034274809062,-0.8730200929567218,0.5886832782998681,0.7896767538040876,-0.6667307149618864,0.3328489698469639,-0.9281659554690123,0.6382998134940863,-0.06463306350633502,-0.5635426193475723,0.6853588577359915,-0.3873307267203927,-0.8080201302655041,0.22362798685207963,-0.9222252159379423,-0.14206433715298772,0.7690341719426215,0.7804513764567673,0.5661307061091065,-0.9567168713547289,-0.9253470161929727,0.8532812725752592,0.5776586369611323,0.8842891147360206,0.02511421823874116,-0.7971142837777734,0.03540766844525933,0.8250021017156541,0.795688780490309,0.71403673524037,-0.434766186401248,-0.03628182411193848,0.47328556794673204,-0.8075779597274959,-0.41728253150358796,-0.14466747594997287,-0.11030687857419252,0.7589088203385472,-0.14301607245579362,0.9705063509754837,-0.8782138521783054,-0.40675330394878983,-0.5462291990406811,0.6766734262928367,-0.723031765781343,-0.21993567422032356,-0.7871564454399049,-0.20484143029898405,0.42144116247072816,-0.18238917365670204,-0.5590113718062639,0.7407007915899158,-0.6480798153206706,-0.20995882619172335,-0.4507278110831976,-0.9322221204638481,-0.34303853660821915,0.4150060024112463,-0.33371749334037304,-0.8280690559186041,-0.6562294312752783,0.6746289432048798,-0.010141704697161913,-0.8433156032115221,0.4942223629914224,-0.3306274665519595,0.7939357198774815,0.10602014372125268,-0.007757768966257572,0.8638233444653451,0.36292445566505194,0.7563010780140758,0.6692560645751655,0.12153878016397357,0.2379472223110497,-0.49496428249403834,-0.16898922575637698,0.51378821907565,0.6206238567829132,-0.39370276872068644,-0.05097049521282315,0.648219714872539,0.90329525526613,0.8973058173432946,0.1545069352723658,0.7900527413003147,0.5124698337167501,-0.4246910298243165,0.9344704188406467,-0.8024428696371615,-0.09285465348511934,-0.21671004965901375,-0.28500422136858106,-0.07750871684402227,-0.7930633178912103,0.26646937197074294,0.660219753626734,-0.27199840638786554,-0.48336523585021496,0.8717898186296225,-0.3361120605841279,0.07488679932430387,-0.22207588609308004,-0.07755110552534461,-0.4381467686034739,-0.7522395667620003,0.09604997979477048,-0.6513750967569649,0.6546467486768961,-0.6068836124613881,-0.11681573139503598,0.46129334857687354,-0.6947608664631844,-0.38297143392264843,-0.35806096717715263,0.17270836466923356,-0.24657005676999688,-0.581592841539532,-0.5544249722734094,0.4386054170317948,0.18962097261101007,-0.08441914012655616,0.5617376235313714,-0.6620695195160806,0.32005957793444395,0.34752257261425257,0.49534546164795756,-0.27333649434149265,0.6222444605082273,-0.5139999287202954,0.8294416256248951,0.20118896942585707,-0.13109662104398012,-0.7947485861368477,0.24519160203635693,-0.4016207573004067,0.4810280320234597,-0.8792065237648785,0.3492361824028194,0.7724173874594271,0.2803516029380262,0.6174879567697644,-0.509783991612494,-0.04122355626896024,0.9358198228292167,0.28462413465604186,0.8575713098980486,-0.21133050648495555,-0.06439170893281698,0.28745036851614714,-0.6031908574514091,-0.288714034948498,-0.3268121727742255,-0.5413035778328776,-0.3674897765740752,0.8995160572230816,0.21628796309232712,0.23761540791019797,-0.16717572789639235,-0.013821297325193882,-0.4629713324829936,-0.9950219443999231,0.21869550505653024,0.2632738002575934,-0.20716013759374619,-0.18126581236720085,0.30207455065101385,0.38718965044245124,-0.0997094688937068,-0.7935696095228195,-0.07785475486889482,0.32983484538272023,0.5292761395685375,-0.32294269651174545,-0.6529381680302322,-0.6503531150519848,-0.41923749074339867,-0.5922271814197302,0.6184986610896885,-0.6080760955810547,-0.032758019398897886,0.9317084853537381,-0.7644123756326735,-0.9100870271213353,0.1699648378416896,-0.4546972527168691,-0.5489716599695385,0.26835438748821616,-0.5791918127797544,0.5066491225734353,0.24916877457872033,0.6106541696935892,0.6934254900552332,-0.010413155891001225,0.41638995753601193,0.25660539558157325,-0.28992472356185317,0.9700648654252291,-0.760564555414021,0.5894087832421064,-0.7831959649920464,-0.49403960118070245,0.6545424503274262,-0.25490770768374205,0.8656679033301771,0.7846262156963348,0.43176157027482986,0.6527784732170403,-0.776639458257705,0.05240424117073417,0.7540589468553662,0.7933726343326271,-0.8149062837474048,0.8513905466534197,-0.16165843326598406,-0.12625452689826488,-0.12219133134931326,-0.30831144470721483,0.46198820136487484,-0.6414475194178522,0.7777593969367445,-0.6864755908027291,0.8443989912047982,-0.36473737889900804,-0.27617046097293496,0.708637943957001,-0.43381792260333896,-0.664612099993974,-0.7869604374282062,-0.8900289065204561,0.7455257270485163,-0.45747334230691195,0.9517956944182515,0.583977373316884,0.08154767844825983,0.37163555761799216,0.9233017447404563,-0.8385320943780243,0.7083792765624821,-0.4325390635058284,0.5197523646056652,-0.2889545978978276,-0.4036468015983701,0.018769340589642525,0.3249888070859015,0.8455384070985019,-0.6343992864713073,-0.7258059857413173,0.6817720411345363,-0.6729957587085664,0.4122076714411378,-0.3523266655392945,0.023231361992657185,-0.2586408448405564,0.33365587797015905,-0.9217899227514863,-0.6812317674048245,-0.6352509809657931,0.20559706073254347,-0.2717155432328582,0.6025233208201826,-0.6343709011562169,0.9655311042442918,-0.813261694740504,-0.06813356513157487,-0.008782641962170601,0.6809436567127705,0.6161939189769328,-0.5129082007333636,0.33256606897339225,0.6473704525269568,-0.885437797755003,-0.8589925086125731,0.9361987323500216,-0.38127213157713413,0.6309609962627292,-0.9937336333096027,0.1668868106789887,0.89492176938802,0.061796125024557114,-0.07427649153396487,-0.3425708585418761,-0.0369405928067863,0.18426047870889306,-0.28740962920710444,0.7361788023263216,-0.7509115342982113,0.9740241253748536,-0.3791998918168247,-0.060873950365930796,0.039921910502016544,0.3870089999400079,-0.012625910807400942,-0.7240290534682572,-0.6391446753405035,0.2953827911987901,0.47194651467725635,-0.838794850744307,0.6198722645640373,-0.9881221409887075,0.09935599379241467,-0.7429360491223633,-0.6599005288444459,0.7642290950752795,0.1416618232615292,-0.6512374491430819,-0.026182634755969048,0.4965685335919261,0.9917458463460207,-0.5516902855597436,-0.7903366722166538,-0.7535431087017059,0.1580732804723084,-0.281981797888875,0.46221168525516987,-0.31921856850385666,-0.8500252412632108,0.35509763145819306,-0.4098513456992805,0.7237421022728086,0.9941512695513666,0.9524989183992147,0.3766686306335032,0.2808441794477403,0.14921496761962771,0.0662888577207923,0.1242316928692162,-0.059309786185622215,-0.03275830019265413,-0.9122392097488046,-0.3017718833871186,-0.6887285844422877,0.8102655317634344,0.724460257217288,0.2209911486133933,0.7445824081078172,0.7904003863222897,-0.7392871421761811,-0.6396745312958956,-0.9265406928025186,-0.5011497447267175,0.020176412537693977,0.07319961348548532,0.023050570860505104,0.772314693313092,-0.6238111690618098,0.8030050010420382,0.5108405495993793,-0.8807403217069805,0.8762499992735684,-0.29018740681931376,0.25468296790495515,0.6433311733417213,0.4122252743691206,-0.5228351149708033,0.8366041104309261,0.7516109282150865,-0.1821677004918456,-0.7337906835600734,-0.4793494511395693,-0.45285588782280684,-0.9206438893452287,0.5541831185109913,0.3332850085571408,-0.5967017496004701,0.3856447199359536,0.391219565179199,0.8987985118292272,-0.7064661039039493,-0.912088458891958,0.5049109514802694,0.23566412134096026,-0.7889373227953911,0.7465272094123065,-0.899798805359751,0.4828536347486079,0.35905673960223794,-0.19720383174717426,0.8283941824920475,0.28048371942713857,-0.10174126923084259,-0.43485646275803447,-0.5708430651575327,0.9932278478518128,0.46095931995660067,-0.27359159057959914,0.44785172678530216,0.8297043950296938,0.06026129424571991,0.2815814292989671,-0.2047526678070426,0.6308844839222729,0.6840472179464996,0.8824976393952966,-0.6523950449191034,0.49080100702121854,-0.910872545093298,-0.9951525572687387,0.3245902853086591,0.6627041446045041,-0.347353168297559,0.643235248979181,-0.834381926804781,-0.8449190338142216,-0.8710946030914783,-0.38555035553872585,0.21156764682382345,-0.9451900562271476,-0.6262751393951476,0.47481759870424867,0.42790154041722417,-0.024733721744269133,0.867660746909678,-0.6643080576322973,0.31448906287550926,-0.5442072250880301,-0.40891525661572814,-0.8287550443783402,0.6071253661066294,0.4735694881528616,0.27165109384804964,-0.15457271039485931,-0.571673191152513,-0.5378778618760407,-0.4131723679602146,-0.18128300178796053,-0.3169124461710453,-0.21016254788264632,-0.11181916855275631,0.05838144477456808,0.5074154995381832,-0.17534455843269825,0.7996194516308606,0.7026570225134492,-0.25680434983223677,-0.45869377348572016,0.06653929455205798,0.299318328499794,-0.6342335883527994,0.26548667112365365,-0.48633981542661786,0.9758391696959734,-0.240997061599046,0.8539859275333583,-0.23465351108461618,-0.641036476008594,0.8835473316721618,0.9504198338836432,0.9603009163402021,0.6215998022817075,-0.45651777321472764,0.9611958684399724,-0.43970842892304063,-0.35241345688700676,0.2815756304189563,0.16886379709467292,0.28798988508060575,0.3871596152894199,0.7597032911144197,-0.19821651047095656,-0.6520973136648536,0.6208151653409004,-0.8773584980517626,0.3582324613817036,-0.4336104728281498,-0.9535502842627466,-0.5928724589757621,-0.17526364792138338,0.3250189903192222,-0.22257281932979822,0.8832624247297645,-0.4316490748897195,0.6964785978198051,-0.08426487352699041,-0.13918152591213584,-0.7438554307445884,-0.8577438117936254,-0.9568414203822613,0.29940424812957644,0.17054897360503674,-0.838353181257844,-0.9689603056758642,-0.8062057825736701,-0.5876230029389262,-0.6180088985711336,-0.32386477617546916,0.976390777155757,-0.028603320475667715,-0.22177926311269403,-0.1983910254202783,0.29322439059615135,0.8338004513643682,-0.9702137471176684,0.21418772637844086,0.28704544389620423,0.7068913108669221,0.554122184868902,-0.9514800137840211,-0.4831822672858834,-0.348500685300678,-0.7855275622569025,-0.3964306483976543,0.15227394830435514,0.5755440061911941,-0.7783864112570882,-0.8312714635394514,0.03628308326005936,0.6427511442452669,-0.08217056654393673,-0.938039094209671,0.5332982293330133,-0.934758105315268,-0.6002265308052301,0.10670281760394573,0.4454472763463855,0.31027628388255835,-0.29192484728991985,-0.8919158084318042,-0.19843296147882938,-0.2585363662801683,-0.10999734699726105,0.12518486706539989,0.24657005770131946,-0.5444488283246756,-0.6810458838008344,0.5075999144464731,-0.18862328631803393,-0.19099325267598033,-0.1338886166922748,-0.2091319947503507,0.7800994459539652,-0.5011427761055529,0.6912037250585854,-0.9410558412782848,-0.1537371943704784,-0.62896051350981,-0.4931298983283341,-0.5810283124446869,0.24841831857338548,-0.4460330414585769,0.6167923202738166,0.6900431490503252,0.3980903187766671,-0.07793304836377501,0.7934313369914889,0.6471927999518812,-0.4252915191464126,0.028423483949154615,0.12706613540649414,0.4301877152174711,0.7778870118781924,-0.17713315319269896,-0.4726084591820836,-0.5896603018045425,-0.7843965799547732,-0.8241801802068949,0.7495190142653883,0.9488034243695438,0.7703880541957915,0.7540313927456737,-0.8303082678467035,0.4561646208167076,0.7809690730646253,0.6148495017550886,-0.14461435051634908,0.23272748803719878,0.8886758047156036,0.3466679756529629,0.0708630713634193,-0.4954188959673047,-0.021503928117454052,-0.7769275493919849,-0.06851331936195493,0.32646335707977414,-0.38767825812101364,-0.5636654398404062,-0.4700557761825621,-0.9932476668618619,-0.7107722172513604,-0.8727167858742177,-0.152183978818357,0.37338648131117225,-0.36577245499938726,0.08723201230168343,-0.5495772645808756,-0.288835056591779,-0.932030183263123,-0.21266340743750334,0.2937465375289321,0.6537046520970762,-0.22720968816429377,-0.16353213880211115,-0.7626346326433122,0.018776679877191782,0.40336278080940247,0.5806708605960011,-0.5979042262770236,0.2500332146883011,-0.641436327714473,-0.5269057680852711,0.33669733023270965,-0.4312138883396983,-0.1412609531544149,0.4898788705468178,0.629713992588222,-0.3577586282044649,-0.4182638372294605,-0.5382055621594191,0.11949825007468462,-0.8135813022963703,-0.6036856463178992,0.6474915943108499,-0.3507200628519058,-0.19597934233024716,-0.3787804585881531,0.12042258959263563,-0.518831052351743,-0.7046276745386422,0.11583358934149146,-0.15515341330319643,0.031227896455675364,0.9382572388276458,0.47010014299303293,-0.2867778451181948,0.7295973720028996,-0.6826775353401899,0.5664240657351911,0.5253082909621298,0.953893187455833,-0.3217708421871066,0.4113324428908527,0.5668957661837339,0.9342875648289919,-0.16044119698926806,0.6825041328556836,-0.2520272131077945,0.9973310516215861,0.0808916580863297,0.8044346831738949,-0.06143905268982053,-0.1088857501745224,-0.9373092516325414,-0.9821935696527362,-0.8077201154083014,-0.7860889020375907,-0.031845659017562866,-0.6643947223201394,-0.8939284551888704,-0.5617178911343217,0.659798092674464,-0.6675088736228645,-0.37837508879601955,0.3656721832230687,-0.0011203289031982422,-0.3626617603003979,0.7105020056478679,-0.6762808510102332,-0.7332734721712768,0.6821520896628499,-0.32109469920396805,0.8658800488337874,0.031144143547862768,-0.6857549017295241,0.7453947756439447,0.8851771443150938,-0.47339884797111154,0.29207245353609324,-0.2013967726379633,0.04900607839226723,0.3003886640071869,0.15356324845924973,-0.858958023134619,-0.3791673476807773,0.7093475596047938,-0.5398408938199282,0.8998418343253434,-0.7557756099849939,0.15423386497423053,-0.9109035539440811,0.556585525162518,0.4208069583401084,0.8583569605834782,-0.006822595372796059,0.9411141755990684,-0.2198608610779047,0.043275102972984314,0.7327820155769587,-0.1127483919262886,0.7231305642053485,0.26526895351707935,0.7377185993827879,0.3415508843027055,0.9213560298085213,-0.5797304371371865,-0.0928619597107172,-0.4894966562278569,0.4063397152349353,0.24536396097391844,0.5322981388308108,-0.5466282335110009,0.7591788521967828,0.35303839622065425,-0.6923843272961676,-0.2658854736946523,-0.3418043847195804,0.38746734941378236,-0.5699917315505445,0.4805094050243497,0.12357998685911298,0.27772048441693187,-0.09329011850059032,0.2860452486202121,0.35492983274161816,0.2652974994853139,-0.1357174883596599,0.964498442132026,0.40049433754757047,0.6303340317681432,-0.14474306302145123,0.33116101659834385,0.9977862201631069,-0.22271338663995266,-0.8110655536875129,0.13339945068582892,-0.4744955305941403,0.28844420006498694,0.2780574900098145,0.10747207514941692,0.8626535059884191,0.37033747928217053,0.8035764540545642,-0.4484809599816799,0.1747231069020927,-0.8962673493660986,0.32448724703863263,-0.5912797385826707,-0.2646109266206622,0.9817991270683706,0.1719909980893135,-0.9843072961084545,0.5466488627716899,-0.5564471329562366,0.8032136629335582,0.1892092451453209,-0.03836137894541025,0.47204728005453944,0.6843276382423937,0.22310965228825808,0.6597664933651686,0.47213036101311445,0.4612551457248628,0.2632728898897767,0.3932643779553473,-0.36167804757133126,0.17503438610583544,0.05248523410409689,0.727664687205106,0.3883703746832907,0.4007897865958512,-0.05668517015874386,-0.10619083698838949,-0.9201964982785285,-0.5530657935887575,0.24879615381360054,0.8134297206997871,-0.5076733622699976,-0.07239248417317867,0.8934528292156756,-0.9717191006056964,0.1182597023434937,-0.6711436221376061,-0.46129593905061483,0.565681959502399,0.9689706997014582,0.12458486016839743,-0.6454448173753917,0.2511708876118064,0.7748287827707827,0.39537240844219923,-0.8841646597720683,-0.6056452016346157,0.8918142654001713,0.5923544140532613,0.9335863757878542,-0.19961195020005107,0.27536238683387637,-0.6083180727437139,0.6325127179734409,0.22705621784552932,-0.00453103706240654,-0.32037193002179265,-0.8535331664606929,-0.14873633673414588,0.5747476192191243,-0.21383823035284877,0.5163144720718265,-0.5130612743087113,-0.8761906479485333,-0.9872685698792338,-0.6436358764767647,0.9783161855302751,0.799488898832351,0.43176342733204365,0.3302845130674541,0.6098775113932788,-0.5091257221065462,-0.03442027606070042,0.25246705301105976,0.5669711790978909,-0.29135340405628085,-0.8908934555947781,-0.7312840740196407,0.9688953943550587,-0.9812176390551031,0.21339116478338838,0.24129650322720408,0.22604528721421957,0.635224774479866,0.8011079607531428,0.21144992532208562,0.8551812609657645,0.5580818522721529,0.6303257416002452,0.25152301462367177,0.47114815609529614,-0.009665438439697027,-0.5393038475885987,-0.2752743912860751,-0.3189179007895291,-0.70369080780074,-0.07526272255927324,0.9371842336840928,-0.10403897007927299,0.7137033455073833,0.8002115697599947,0.6843837862834334,-0.3136172224767506,-0.13077121507376432,-0.7874066485092044,0.029818789567798376,-0.8796187192201614,-0.604175538290292,-0.11837021075189114,-0.12376105599105358,0.7939296304248273,-0.9736362742260098,-0.3362129325978458,0.89508196990937,-0.12374622141942382,0.5660607106983662,0.7307011680677533,0.07635201374068856,-0.4043597290292382,0.3868684102781117,0.4717000862583518,-0.5272039398550987,0.06414432264864445,-0.04669570876285434,0.5046739261597395,-0.913213477935642,0.648326545022428,0.8162229722365737,0.036029384937137365,0.975196014624089,-0.23615260096266866,-0.9811906656250358,0.5463221240788698,0.6802229601889849,0.18467041058465838,0.006726996041834354,-0.3995298775844276,-0.289061589166522,-0.7255282932892442,-0.5259112999774516,-0.8595787724480033,0.4850587393157184,-0.11824026750400662,-0.6643441999331117,-0.1883779475465417,0.4745618961751461,-0.6042199986986816,0.9815078019164503,-0.2969581028446555,0.4293970954604447,-0.291527193505317,0.32957846159115434,-0.30379695631563663,-0.17480240622535348,0.5627233977429569,-0.8074133270420134,-0.2678969809785485,-0.3675589510239661,0.2403609217144549,0.9086083481088281,0.13906363677233458,-0.6911274380981922,-0.30179443676024675,-0.15423374297097325,-0.531923595815897,0.8038518978282809,0.3465944556519389,0.41325446171686053,-0.7078490550629795,0.5354657457210124,0.9451066665351391,0.037226712331175804,0.3725561322644353,0.38320436188951135,-0.1222221665084362,0.570184055250138,0.1628401638008654,0.8392205047421157,-0.9768277164548635,-0.8055368522182107,0.2599454135634005,0.15134304342791438,0.728767248801887,0.744818989187479,0.7550850971601903,-0.2355515230447054,-0.781265907920897,-0.2955758017487824,-0.26218036049976945,0.4847772088833153,-0.2586394394747913,0.4703450626693666,0.45843530306592584,-0.0727864932268858,0.9320575087331235,-0.6347467508167028,-0.6969345109537244,-0.1380893886089325,-0.537071518599987,-0.14762532990425825,0.9203501101583242,0.3850703565403819,-0.6570125478319824,-0.3549039978533983,-0.39132683956995606,0.475592577829957,-0.19301319355145097,-0.43328924430534244,0.7521582362242043,-0.8848151648417115,0.51203160174191,-0.9739276026375592,0.0671314625069499,-0.5070780417881906,0.00030130473896861076,-0.6297437031753361,-0.8709438950754702,-0.2777955662459135,0.03259798511862755,0.5303908148780465,0.32727832719683647,-0.09239781182259321,-0.19062761729583144,-0.652139606885612,0.8974426980130374,-0.7024186779744923,0.39572331914678216,0.24698891444131732,0.6582981124520302,-0.8287316467612982,-0.6950329625979066,-0.4321070802398026,-0.6098790648393333,-0.7243507192470133,0.24585746927186847,-0.2408592035062611,0.6494400631636381,0.29778866143897176,0.11177671514451504,-0.6275849007070065,-0.007243064232170582,0.16301598632708192,-0.6061944453977048,0.11876709340140224,-0.31881903018802404,0.836857330519706,-0.6057062661275268,-0.49549482529982924,-0.06893169740214944,-0.46357253659516573,0.018802824895828962,0.33911085641011596,-0.5069539928808808,0.7502570184879005,-0.7991322833113372,0.920168062672019,0.22981559438630939,0.6480498192831874,0.8655538866296411,-0.17123517766594887,0.25709123024716973,-0.7748707649298012,-0.2930465671233833,0.5111913364380598,-0.08227492216974497,0.27151874266564846,-0.8173373327590525,-0.7260152269154787,-0.5956868249922991,0.4064577454701066,-0.8056187154725194,0.17319668782874942,-0.2664879928342998,0.5696997363120317,0.6997589855454862,0.9270070311613381,-0.6598015781491995,-0.9979067598469555,0.6644401191733778,0.6287107770331204,0.5520243970677257,-0.08571864617988467,-0.43467734195291996,-0.16288215853273869,0.5153568852692842,0.39263551123440266,0.998184209689498,0.047330311965197325,0.827671498991549,-0.9760034801438451,-0.37846039002761245,-0.6282377652823925,-0.5540887718088925,-0.9868723074905574,0.2920080288313329,-0.7774065560661256,0.862887442111969,-0.285586588550359,0.5716102086007595,-0.546161837875843,-0.5993718756362796,-0.1314269215799868,-0.9485649005509913,0.6925327968783677,0.1802238067612052,0.17705879732966423,0.852071687579155,-0.2233215356245637,-0.4005066300742328,-0.40833958936855197,0.4031806029379368,0.039898067712783813,0.29907455388456583,0.12182647967711091,-0.6337742456234992,-0.8958177659660578,0.9518947452306747,0.9628481515683234,-0.6034893663600087,-0.4149713250808418,0.3711953768506646,-0.3481184099800885,-0.502796174492687,-0.9958091317676008,-0.3055028701201081,-0.6422688360325992,-0.4089037673547864,0.5889181210659444,0.9163315743207932,-0.9049454741179943,-0.9414707482792437,-0.5949188191443682,-0.11052630702033639,0.14252711180597544,-0.9209064310416579,-0.30414669681340456,-0.18339447164908051,0.7205144204199314,-0.2961983485147357,-0.16981161665171385,0.10027064429596066,-0.8706304621882737,0.45373539859429,0.08882563980296254,-0.872855516616255,-0.31514018401503563,0.18147628055885434,-0.3004625719040632,0.2199231986887753,0.40947075514122844,-0.2739039878360927,-0.5989342904649675,0.8348564263433218,0.4780922126956284,-0.2961164927110076,0.0385630801320076,0.08556916331872344,-0.881768437102437,-0.08780677057802677,-0.004317190498113632,-0.442084735725075,-0.6692935470491648,-0.7491811588406563,-0.12616835162043571,0.5269212601706386,0.33865328785032034,0.35555521165952086,-0.7789757973514497,0.027386363595724106,0.2854153197258711,-0.5812869281508029,0.9124981430359185,0.9721166919916868,-0.7647589142434299,-0.4567118468694389,-0.40742338821291924,0.4082800019532442,-0.8229719344526529,-0.7504707723855972,-0.6094943531788886,0.10181042551994324,-0.33806980308145285,-0.8345025219023228,-0.7998762503266335,0.4488234482705593,-0.6678171777166426,-0.9845519498921931,-0.31774168787524104,-0.266070406883955,0.5651104818098247,0.8542638793587685,0.2192635927349329,-0.10405833087861538,-0.22678699856624007,0.7215970330871642,-0.4355735764838755,0.023770848289132118,0.1418150239624083,-0.8066491880454123,-0.1274871714413166,0.8855076949112117,0.32377455523237586,0.10891433898359537,-0.22054391587153077,-0.024719151202589273,-0.28368168510496616,0.7805807534605265,-0.38632370810955763,0.8900990826077759,-0.18660950334742665,-0.8888961323536932,-0.34011041559278965,-0.7546202936209738,-0.10207671858370304,-0.945421599317342,0.853368756826967,0.656742328312248,-0.8667694027535617,0.6866443422622979,-0.11983683612197638,0.8332977266982198,0.08225891552865505,0.7658210271038115,-0.3118723859079182,-0.4643712528049946,0.4805335202254355,0.7488338351249695,-0.37612567050382495,0.44161828700453043,0.08698870707303286,0.7240261039696634,-0.7119584265165031,0.96346226753667,0.11080633755773306,0.9630931536667049,0.6050433618947864,0.8620860469527543,-0.03195242676883936,0.43777861865237355,-0.8670171350240707,0.47735296934843063,0.7408815361559391,-0.36016082391142845,0.44116484140977263,0.9847283735871315,-0.7116434304043651,0.27963053761050105,0.9929174347780645,-0.4098069295287132,-0.5406991806812584,-0.29552163928747177,-0.9944011308252811,0.7010200419463217,0.5253341230563819,-0.22156242793425918,0.9592331955209374,0.27122074319049716,0.144148588180542,-0.3889732169918716,-0.09877153625711799,0.03802789282053709,-0.005959552712738514,-0.9189880746416748,0.5344773889519274,0.4428504556417465,-0.5804973552003503,-0.10550285642966628,-0.591900478117168,0.751196017023176,0.6947171692736447,0.8465057821013033,-0.9118929216638207,-0.8261749763041735,0.6163708632811904,-0.18289780616760254,-0.3696731412783265,-0.8261461881920695,0.8300820686854422,0.896826617885381,-0.17288167169317603,-0.5788561999797821,-0.3940744395367801,-0.14869935251772404,0.008943741675466299,-0.4665027507580817,-0.6541543416678905,0.010584892239421606,-0.24212027713656425,0.32929965015500784,0.836424729321152,-0.5593256489373744,-0.8333554407581687,0.25872995890676975,-0.449157876893878,-0.9549222425557673,0.6647511078044772,-0.5206986013799906,-0.6903685368597507,-0.014369058422744274,-0.9533336251042783,-0.9899928155355155,0.8425445654429495,-0.9656178699806333,0.15840276749804616,-0.9479300021193922,0.54587188269943,0.5301145906560123,-0.9223698070272803,0.873597941827029,0.5922301663085818,-0.9636652292683721,-0.5896436087787151,-0.9977174927480519,0.25359696988016367,0.04771025525406003,-0.5813202676363289,0.6620666580274701,0.8135845083743334,0.9661642559804022,-0.07301003159955144,0.7418634747155011,-0.9313512062653899,-0.7932446850463748,-0.13014038559049368,-0.8166648070327938,0.838510618545115,0.3413849505595863,0.22320339735597372,0.6697196080349386,-0.07097707828506827,-0.3230200898833573,-0.11975466227158904,0.27690389752388,-0.5397177855484188,0.21829559048637748,-0.9483799198642373,-0.3346702866256237,0.9562427080236375,-0.32282533403486013,0.1716913371346891,0.4844666379503906,0.09665752062574029,0.6666456977836788,-0.8650377187877893,0.8917604074813426,-0.6771444054320455,0.7161813718266785,0.403894969727844,0.852792177349329,0.8145897053182125,0.9887012373656034,-0.5556657775305212,0.2900921213440597,0.0659931218251586,0.033949785865843296,-0.16221315739676356,-0.6745896642096341,0.7676234594546258,-0.23014912800863385,0.11377501673996449,0.1088900463655591,-0.7579204887151718,0.8847840894013643,-0.5623346376232803,0.20781357679516077,-0.3887518532574177,0.5284457439556718,-0.46707872673869133,-0.21449842024594545,-0.4286302146501839,-0.4727501277811825,0.25879791053012013,0.9067758535966277,-0.7911611730232835,-0.966198577079922,0.905909082852304,0.18704122258350253,-0.24968944722786546,-0.34592964965850115,-0.9252728326246142,-0.39334189519286156,0.5360858296044171,-0.10760890087112784,-0.4062964953482151,0.9152129082940519,-0.875444405246526,0.024044150486588478,0.0029378938488662243,0.7827613828703761,-0.2637511705979705,-0.6003479780629277,-0.5322422604076564,0.8792598154395819,-0.17921045701950788,-0.1178214643150568,0.6966360565274954,0.39324245089665055,-0.21248482074588537,0.2809790405444801,0.8328318977728486,0.6814286564476788,-0.7421571956947446,-0.3885764447040856,-0.14044392248615623,-0.6331111947074533,0.07281708903610706,-0.795173829421401,-0.07004254730418324,0.032414871733635664,-0.19957287050783634,0.26832342660054564,0.14508474385365844,0.8353471085429192,0.6196536468341947,-0.9536799970082939,-0.7136803725734353,-0.3507034908980131,0.6428466057404876,-0.17128823045641184,-0.11091737169772387,-0.47709597228094935,0.7098751682788134,0.9480001949705184,-0.47884528059512377,0.31719732843339443,0.9216533042490482,-0.14433027850463986,0.40142176765948534,0.5870475801639259,-0.4078866052441299,-0.5133119616657495,-0.869133030064404,-0.7680243449285626,0.12438817927613854,0.15121318819001317,0.8123454507440329,-0.2493149545043707,-0.8493158235214651,-0.6369080813601613,0.5843544718809426,-0.5205840738490224,-0.22454454097896814,0.21004361333325505,0.6194419045932591,0.050473243463784456,-0.4718809947371483,-0.4608872029930353,0.21555188577622175,0.652433505281806,0.26069453777745366,0.28765572188422084,0.5559656424447894,-0.7075975192710757,0.10309725953266025,0.6956850183196366,-0.16318202065303922,0.2449935432523489,-0.6562123042531312,0.6467995964922011,0.8002604003995657,0.6565127023495734,0.8335927538573742,-0.454875071067363,-0.742644629906863,-0.6206133989617229,0.884467332623899,-0.4554262878373265,-0.9348048721440136,0.22024328261613846,0.4622050947509706,0.0408105063252151,-0.3382727871648967,-0.2465810738503933,0.80641297576949,0.613757795188576,-0.5985424541868269,0.6256584413349628,-0.38640332175418735,0.3041902924887836,-0.1811339114792645,0.8547159540466964,-0.41027128929272294,0.544908900745213,-0.7424564440734684,0.9250951488502324,0.6867624949663877,-0.3660467891022563,-0.08320956397801638,-0.49419755628332496,0.6976137850433588,0.20237747766077518,-0.2383630876429379,-0.4923854423686862,0.9055498307570815,0.6245894157327712,-0.4437980279326439,0.1087821121327579,-0.16292568482458591,0.1519780126400292,-0.34295456297695637,-0.6549265272915363,-0.07007199944928288,-0.9650426018051803,-0.5105440211482346,0.16127431159839034,0.9933768450282514,-0.5532841850072145,0.5391749972477555,-0.316347386687994,-0.15096545638516545,0.7658418859355152,0.1957819596864283,0.028655082918703556,0.8582136337645352,0.04529512207955122,0.7491831490769982,-0.10648282384499907,0.023747471626847982,-0.07298341440036893,0.7968291179277003,0.7155222967267036,0.328959824051708,-0.8882878557778895,0.26098464243113995,0.6342573002912104,-0.9024866381660104,-0.08090609963983297,0.39639466907829046,-0.8968921331688762,0.7764083775691688,-0.1507308385334909,0.634989763610065,-0.7330830483697355,0.12540421728044748,-0.7496727756224573,-0.3861851515248418,0.7318913671188056,0.2514603096060455,0.11703620944172144,-0.9433061792515218,-0.8940635602921247,0.3650562451221049,-0.4855349641293287,-0.6935727586969733,0.7272971803322434,0.35534035274758935,0.5578846894204617,-0.9843303002417088,0.11740264249965549,0.18292789068073034,-0.8414773195981979,0.45758936973288655,0.21701675094664097,0.4808753253892064,0.4793081171810627,0.16142185730859637,0.275452958419919,0.22279874328523874,-0.15370686212554574,-0.7372589847072959,-0.02408865327015519,-0.5831337948329747,0.17248056177049875,0.2767755826935172,0.47436887491494417,-0.5130426101386547,-0.34569645347073674,0.23861237755045295,-0.707573002204299,-0.8657448515295982,-0.01761329546570778,-0.571051403414458,-0.09389448491856456,-0.26177858421579003,0.287088664714247,0.5879013841040432,0.545465377625078,0.7907527065835893,0.3565195007249713,-0.9356641434133053,0.6828834433108568,-0.27385806851089,-0.14899940323084593,0.12507714610546827,-0.7165681924670935,-0.1267975834198296,-0.833515000063926,0.8031535996124148,-0.27422452345490456,0.9525225576944649,-0.17409181548282504,-0.9512915103696287,-0.9763768897391856,0.44061591383069754,-0.6118342634290457,-0.14695647452026606,-0.40663567604497075,0.47569324960932136,0.5562591427005827,0.5006198873743415,0.14334637438878417,-0.6123925624415278,-0.938723242841661,0.862669590394944,-0.780590926297009,-0.9374831458553672,-0.09971684496849775,0.4962639953009784,0.46778307063505054,-0.1797117656096816,0.9050289867445827,-0.6042683143168688,0.6100332695059478,0.9328229436650872,-0.16129545867443085,-0.9024050771258771,-0.906827419064939,0.8968679374083877,-0.06109560886397958,0.133720051497221,-0.7911154590547085,0.612111487891525,-0.11746392445638776,0.2919059847481549,-0.595239938236773,-0.4915737505070865,0.3851175862364471,0.881688117980957,-0.5236915200948715,0.7321277214214206,0.5414920505136251,0.6294710482470691,-0.17561978520825505,-0.777839198242873,-0.017807151190936565,0.8585835644043982,0.5056093656457961,-0.7571008959785104,0.03585415938869119,-0.4452913640998304,0.3094648686237633,-0.8946011438965797,-0.6603352436795831,0.277396974619478,0.6586054586805403,-0.03264421783387661,-0.8802722836844623,0.09776799567043781,0.38482119608670473,-0.8345417329110205,0.40034778602421284,-0.7538801659829915,-0.41304194973781705,-0.6695968089625239,0.10011854441836476,-0.8822378665208817,-0.01216905890032649,0.6368984482251108,-0.7988510844297707,-0.25021180091425776,0.6105959871783853,0.8106804653070867,0.06541439471766353,0.69631202891469,-0.8820666908286512,0.518009758554399,-0.9767420524731278,0.5757484943605959,0.7619174066931009,0.3912699706852436,-0.5483187800273299,0.009993492625653744,-0.9024902060627937,0.1858316883444786,0.03542457893490791,-0.4281479837372899,0.6171160074882209,0.42367352871224284,-0.43919540802016854,0.5287749823182821,-0.9784170240163803,-0.19943428365513682,0.012788912747055292,0.2840723474510014,-0.10717158066108823,-0.8750734771601856,0.37536518508568406,0.10785135813057423,0.4814974693581462,-0.2355036586523056,-0.38616269920021296,-0.19985562888905406,0.21062473114579916,0.6233033640310168,-0.6723086158744991,0.24878740729764104,0.3254712619818747,-0.09648714913055301,-0.6271294075995684,0.4432871863245964,-0.8020155210979283,-0.5101166581735015,-0.5137355905026197,0.5540190739557147,-0.314467609860003,-0.4183025136590004,-0.6666832654736936,0.06734011229127645,-0.528681275434792,0.7018150719814003,0.8507773377932608,0.6879024957306683,0.5769152091816068,-0.5971226100809872,-0.463139976374805,-0.29269982874393463,-0.26409337343648076,-0.43809789093211293,-0.6146161081269383,-0.7075926447287202,-0.26254864409565926,0.8046298413537443,0.7709049582481384,0.15822371933609247,0.7399532212875783,0.5085346871055663,0.26919801998883486,0.9382063150405884,0.22394804237410426,-0.6926482729613781,0.3799902102909982,-0.06647916277870536,0.2669525542296469,-0.46425656834617257,-0.5201417189091444,0.8011904335580766,-0.3814175883308053,-0.15675957687199116,0.5226032393984497,0.23768767900764942,-0.9174393373541534,-0.7127272645011544,0.46459621051326394,0.7417204636149108,0.7416687221266329,0.024201993364840746,0.7905055121518672,-0.3152687200345099,0.9091816786676645,-0.09601386310532689,-0.4471338181756437,0.6082394951954484,0.4147951863706112,-0.44718014309182763,0.4026591368019581,0.3689649300649762,0.9409875432029366,0.7096102968789637,0.7976331035606563,-0.3200155575759709,0.9666717331856489,0.7995263109914958,-0.5298584499396384,-0.3579176915809512,-0.7198489373549819,-0.16265123337507248,-0.2816038057208061,0.18035691464319825,0.05431008338928223,0.8614521939307451,0.2072612512856722,-0.16713595017790794,0.9510908643715084,-0.8687387332320213,0.2398949796333909,0.04412495158612728,0.17622943222522736,-0.9824018212966621,0.9615875068120658,0.7331691440194845,-0.5406217253766954,0.325174349360168,0.2680005291476846,0.5573117001913488,-0.21756551694124937,-0.6669983235187829,-0.14113487116992474,0.9427013513632119,-0.7386662377975881,-0.207860192283988,0.7077824883162975,0.47017097007483244,0.13264438090845942,-0.42301300214603543,0.693505123257637,-0.9527495815418661,-0.2967745871283114,-0.2204165207222104,0.17106065107509494,-0.29743551509454846,-0.7146512102335691,-0.1267859386280179,0.5991427483968437,0.027372976765036583,0.48803584231063724,0.7968087438493967,-0.9466674313880503,0.5043579544872046,0.5435276222415268,0.536527912132442,-0.6079664947465062,-0.11640448495745659,0.2643821509554982,0.21927605662494898,0.5550500326789916,-0.998065750580281,-0.9695630543865263,0.33965776301920414,0.4486617976799607,-0.5014913654886186,0.14594636112451553,0.4764296617358923,0.31028165481984615,-0.28434866294264793,-0.35845471639186144,0.5645208149217069,-0.10705338511615992,-0.012122444808483124,0.7338993586599827,-0.16868546465411782,-0.3667726186104119,0.9825838105753064,0.3263191203586757,0.03470688592642546,0.2064883508719504,-0.6386808878742158,-0.151327486615628,-0.10412205243483186,0.2634945036843419,0.2324134293012321,0.1947910487651825,-0.15412746090441942,-0.9132086127065122,0.19349512364715338,0.6929250732064247,0.8920788583345711,0.1338266246020794,-0.7174084768630564,0.2895573154091835,-0.029652173165231943,0.9612086336128414,0.6949780066497624,-0.8185681262984872,-0.34856873517856,-0.998148781247437,-0.8435872308909893,0.2772898394614458,0.5273769339546561,-0.6840586625039577,0.9964614473283291,-0.6418744698166847,-0.9287692573852837,-0.28684088634327054,-0.2294994117692113,-0.5477680824697018,-0.3723903535865247,-0.9375511296093464,-0.222683762665838,0.22892951173707843,0.7577584781683981,0.4661587034352124,0.11279391264542937,-0.6475135497748852,0.21895113494247198,0.40610111644491553,0.5943627231754363,-0.5739094442687929,0.34864409314468503,0.7743378351442516,-0.930634468793869,0.5726317027583718,-0.512886181473732,-0.15457439608871937,-0.28161716368049383,0.7813859484158456,0.9809842919930816,0.7556639173999429,0.7496367041021585,-0.8339560786262155,-0.8086623605340719,0.7535940110683441,0.5986429997719824,0.1424557790160179,-0.6860085832886398,0.23833650210872293,0.5424285479821265,0.4696231381967664,-0.7156502385623753,-0.9528898373246193,0.679804562125355,-0.976517528295517,0.8344510453753173,-0.04306425154209137,0.836130753159523,0.9726274567656219,0.3694419153034687,0.007540924474596977,0.15507816849276423,-0.45980240404605865,-0.2865354740060866,-0.26428258419036865,0.024633536115288734,-0.31775754457339644,-0.6213610423728824,0.8701678263023496,0.5653507048264146,0.3197605740278959,-0.9359320751391351,-0.08990697422996163,-0.9356306702829897,-0.5762939122505486,0.10075048310682178,-0.7252302756533027,-0.11020206799730659,0.7551429127342999,-0.3964852117933333,0.9617377482354641,-0.13570395344868302,-0.23061506263911724,0.09029201278463006,-0.9827902563847601,-0.20220115827396512,0.7566327918320894,0.8705303235910833,0.6059861811809242,-0.49418557016178966,0.24146754806861281,0.2762495134957135,0.3388795694336295,0.15989718167111278,0.5318914982490242,-0.6886695781722665,-0.8278240012004972,-0.6842181640677154,0.5947038205340505,0.7022533430717885,0.7890891851857305,0.435856013558805,-0.49036825727671385,0.5759471007622778,-0.1476594596169889,0.8007290852256119,0.6927265077829361,-0.9690593276172876,-0.4086875021457672,-0.7755601522512734,0.1533796126022935,-0.05479350173845887,-0.2036118251271546,-0.04236400779336691,0.0031239469535648823,-0.871819038875401,0.39640187472105026,0.2133508906699717,-0.5972213721834123,-0.1694871843792498,-0.029254685156047344,0.3210719097405672,-0.7106913616880774,-0.8301831027492881,-0.13051676098257303,0.5015579904429615,-0.470309448428452,-0.17027805699035525,-0.36129883909597993,-0.9141815900802612,0.3332465165294707,-0.42903133388608694,0.9201494450680912,0.1639330112375319,0.4042197745293379,-0.5123200910165906,-0.7266350914724171,0.17511566821485758,-0.5698450431227684,-0.5848110727965832,-0.0368095557205379,-0.3821929097175598,-0.16780057549476624,0.4126981236040592,-0.6435102168470621,-0.774314652197063,0.05103611294180155,0.45273742685094476,-0.04465815518051386,0.40946640307083726,0.41771257761865854,0.2783230426721275,0.8843911536969244,-0.2042570197954774,-0.4800069071352482,0.3350510085001588,0.5011336719617248,0.41570433462038636,-0.6806841995567083,0.10552763752639294,-0.4732305514626205,0.40726721519604325,0.3565633143298328,-0.13692560838535428,-0.651828040368855,-0.12323377234861255,0.6144046974368393,0.9446434821002185,0.4915213268250227,0.3179256799630821,-0.46146226301789284,-0.396194227039814,-0.8948652371764183,0.6477215066552162,0.344648236874491,0.5922130197286606,-0.8593463315628469,0.1477347370237112,0.5583333862014115,0.23568111145868897,0.8982305396348238,0.2620646762661636,0.8272085255011916,0.3920512665063143,0.6281943419016898,-0.8057415937073529,-0.48260671459138393,0.6354472492821515,0.8887244062498212,-0.741498239338398,-0.31597389467060566,-0.021657717414200306,-0.1461829161271453,-0.8384685097262263,0.4961199923418462,-0.8278148691169918,-0.5661076446995139,-0.08373976964503527,-0.611616725102067,0.9116327157244086,-0.2352560511790216,-0.8590422309935093,-0.25755980517715216,-0.10347275016829371,0.4585934653878212,0.015587677713483572,-0.8471409045159817,0.4322770764119923,0.59041603282094,-0.7648548171855509,0.1839656182564795,0.12956269504502416,0.08285514172166586,-0.5668909186497331,-0.8741103685460985,0.7131087398156524,-0.6362742595374584,0.8363707456737757,-0.43631002167239785,0.6146525843068957,0.8720027497038245,-0.3609616453759372,-0.8047439199872315,0.3471655510365963,-0.8196862749755383,-0.22630279790610075,0.5629789694212377,0.050872134044766426,0.9094315087422729,0.6931884218938649,0.2741783168166876,0.4068880551494658,-0.0632628328166902,0.8916048565879464,-0.9638827359303832,0.8614121926948428,0.6894268966279924,-0.17194860195741057,-0.643678838852793,-0.8136908346787095,-0.5919760852120817,-0.1505426145158708,-0.555070050060749,-0.5321019976399839,-0.5752008426934481,0.8405846008099616,-0.7404072801582515,0.08108605537563562,-0.8963245442137122,0.7095839339308441,0.12792199663817883,0.18566815136000514,-0.9500634577125311,-0.3918447494506836,-0.9190492704510689,-0.7897536242380738,-0.6745281303301454,0.01943892752751708,-0.9512687651440501,-0.2449470036663115,-0.287544222548604,-0.7498180642724037,-0.9543479876592755,-0.9405090929940343,-0.9990207273513079,-0.9038745365105569,0.7735731494612992,-0.8500043503008783,0.6224459116347134,-0.007941101677715778,0.14260950637981296,0.7722011310979724,-0.3982951547950506,-0.3886901210062206,-0.3614308484829962,0.5558873764239252,-0.7575395894236863,0.39065286656841636,-0.4178208219818771,-0.023536251857876778,-0.547671171836555,0.14486541924998164,0.8186676492914557,0.17058736784383655,-0.6832412802614272,-0.43905283929780126,0.0908264690078795,0.18102143984287977,0.1892891963943839,0.03641247842460871,0.9742274144664407,0.23558056261390448,0.6676526200026274,0.32020301511511207,-0.7913771406747401,-0.7182054370641708,0.3458702750504017,0.9018588624894619,-0.1909150006249547,0.35535699548199773,-0.9694943437352777,-0.028485804796218872,-0.13493671268224716,-0.34300531167536974,0.047047066036611795,0.5758785707876086,0.336804386228323,0.9890217278152704,0.03591729002073407,-0.5009616352617741,-0.385498879943043,-0.8411158393137157,0.6301388549618423,-0.08955152565613389,-0.4721547677181661,-0.2225240170955658,-0.23857613001018763,-0.019123918376863003,-0.6111037442460656,-0.8886591256596148,0.7651284052990377,0.46246865671128035,0.5375975663773715,0.21319166058674455,-0.8834093301557004,0.3054479197598994,0.9329060912132263,-0.6383164520375431,0.49527006689459085,0.5331617877818644,0.7278762408532202,0.9838197249919176,0.19296698225662112,-0.25285951467230916,0.8702554749324918,-0.6274671922437847,0.5960366660729051,-0.8147534728050232,0.939674521330744,-0.7892774562351406,-0.2866516434587538,0.6414935663342476,-0.28375576389953494,0.11645085923373699,0.617096240632236,-0.8359676613472402,-0.5826769126579165,0.8595430506393313,-0.6813142565079033,0.3823277624323964,0.026493529323488474,-0.3232986442744732,0.2368440544232726,-0.9157414943911135,0.4140088162384927,0.12673806911334395,0.26166030764579773,-0.810513969976455,0.3893377208150923,0.2312429486773908,0.7195035419426858,-0.13318166229873896,-0.05950213363394141,-0.3333468814380467,0.4573165406472981,0.18999812426045537,0.6778366742655635,0.6220408151857555,-0.09139455435797572,-0.140650590416044,0.13457003980875015,0.2918016663752496,0.9815041897818446,-0.3575656791217625,0.4504411844536662,0.7573451180942357,-0.16659580310806632,0.12598849600180984,-0.8458218486048281,-0.5406005745753646,-0.24492959585040808,-0.4237283943220973,-0.6288699191063643,-0.43980250880122185,-0.7106167902238667,0.7065759212709963,-0.3692131135612726,0.9722430543042719,0.8755887988954782,0.39127921825274825,-0.24475597264245152,-0.24236794793978333,-0.8564391271211207,-0.6574875982478261,-0.5286199981346726,-0.06621872773393989,0.4239702341146767,0.7775714010931551,0.1359846293926239,-0.3759492812678218,-0.6667407178319991,-0.6600003843195736,-0.9791193814016879,0.25270844623446465,0.7182183284312487,0.4814836070872843,-0.26838919427245855,-0.5439855875447392,-0.005805478431284428,-0.6725024655461311,-0.5140017298981547,0.6016574781388044,-0.07228231150656939,0.735144792124629,-0.9816428539343178,-0.7102995398454368,-0.13962193438783288,-0.1799018350429833,0.7879133988171816,-0.3792245895601809,0.7520214784890413,-0.282345924526453,0.6742352209985256,0.5022871266119182,0.0346334227360785,0.4521161587908864,-0.8739288938231766,-0.8144248779863119,0.5206423900090158,-0.3460391853004694,0.44918459095060825,0.6846036054193974,0.4296084614470601,-0.2849506288766861,0.2584060882218182,-0.27478743391111493,0.4040374606847763,-0.5045778700150549,0.3022299106232822,-0.06549356551840901,-0.8535261750221252,0.7216874081641436,0.03592418320477009,0.3409650600515306,0.8209791365079582,0.9817463937215507,-0.4146165894344449,-0.23894847696647048,-0.7097720978781581,-0.3472936390899122,0.7821134966798127,0.10061644669622183,-0.7644413784146309,-0.33745194924995303,0.7285449365153909,0.46158795338124037,0.9101399914361537,-0.7761516813188791,-0.842743597459048,0.6400152677670121,-0.99930689483881,0.9206812768243253,0.4856971646659076,-0.10436234762892127,0.4850434619002044,0.37431455682963133,0.7287369011901319,0.22989433351904154,0.18690609047189355,0.5358851663768291,0.333960291929543,-0.10563837829977274,-0.7222529565915465,0.04469269048422575,-0.33767509181052446,-0.1704592821188271,-0.11858193669468164,-0.5261441003531218,0.4341015126556158,0.39123437786474824,0.6486787223257124,0.6006828458048403,-0.2624900797381997,-0.03889626823365688,0.7148336218670011,0.7058985782787204,-0.5138685652054846,0.4850114486180246,0.10885957349091768,0.2953227018006146,0.12162813358008862,0.8166451388970017,0.5960619021207094,-0.9450374688021839,-0.6135720452293754,-0.4794328068383038,0.9153731209225953,0.7283727116882801,-0.6835880209691823,0.35805095778778195,-0.8471057368442416,0.8213050696067512,-0.27378977788612247,0.21108332835137844,0.7853520554490387,0.16062021302059293,0.7125673796981573,0.20185625366866589,-0.30737752467393875,-0.2636926481500268,0.6480887336656451,-0.19845261564478278,-0.1482392898760736,0.37592673674225807,0.3035108158364892,-0.05117199430242181,0.4408669234253466,0.012994660064578056,0.5825150082819164,0.013444667682051659,-0.18270752346143126,0.9423048519529402,-0.3585289535112679,-0.1714570801705122,-0.5410811048932374,0.48469598637893796,0.09752705041319132,0.5634718867950141,-0.13627805607393384,-0.8712059464305639,-0.08169522136449814,-0.8077321704477072,-0.9368953495286405,0.8306824737228453,0.028629207983613014,-0.39349883841350675,0.9769515274092555,0.7737000249326229,0.6554576144553721,-0.661574698984623,0.5334689957089722,-0.9604039923287928,0.8350388207472861,0.8769900491461158,-0.5185338561423123,0.46567063592374325,0.48635686887428164,0.46770909102633595,0.689939652569592,0.006290220655500889,-0.12662139860913157,0.7201115661300719,-0.5357079193927348,-0.6389247528277338,0.8392582987435162,-0.6069810008630157,-0.13266295287758112,-0.45509566739201546,-0.9958530506119132,0.15031799534335732,-0.12943862890824676,0.12068532733246684,-0.2752101169899106,-0.971553775947541,-0.5468801469542086,-0.2368299844674766,0.8616281696595252,0.03963611554354429,0.8631461192853749,0.46446868032217026,0.3265058700926602,0.7588411597535014,-0.8696803324855864,0.007550693582743406,-0.49501178599894047,0.04559294227510691,-0.6816636612638831,0.33939966233447194,0.9577053664252162,0.35631541768088937,0.17033811146393418,-0.7431271583773196,0.6708991322666407,-0.044775659684091806,-0.17630678741261363,0.7105880244635046,0.6802989700809121,0.4887653784826398,-0.6295127863995731,-0.28540052101016045,0.22336185770109296,-0.37234796956181526,-0.6428226451389492,-0.7373602092266083,0.6879812297411263,0.3185658445581794,0.39303949661552906,-0.8507757214829326,-0.8793309205211699,0.5586069314740598,0.4791192300617695,-0.44499094830825925,-0.27806926844641566,0.6263564033433795,-0.4387130495160818,0.18213338311761618,0.06668271729722619,-0.3202702021226287,0.6419060924090445,-0.6588531457819045,-0.37429140601307154,-0.22827864065766335,-0.752117098774761,0.39633719995617867,0.2989165587350726,-0.7116093137301505,-0.5152757288888097,-0.3087238888256252,-0.8863273970782757,0.4512077388353646,-0.09411114361137152,-0.8098910348489881,-0.32998970290645957,-0.9982068128883839,-0.9484067498706281,0.5516499225050211,0.29247885709628463,0.834405283909291,-0.9434485482051969,0.5143515509553254,0.34757991693913937,-0.5297046024352312,0.64460613951087,-0.25184821989387274,0.2945753806270659,0.42527513578534126,-0.5948187392205,0.2217661258764565,0.36228703102096915,-0.9435665523633361,0.4570875163190067,0.5938615133054554,0.5918974066153169,-0.45595098147168756,0.41962658800184727,-0.008060812950134277,0.20864568697288632,-0.676191808655858,0.5045359758660197,-0.9094963110983372,0.2694721086882055,-0.09298946522176266,-0.12490723934024572,0.20015742909163237,-0.5948547865264118,-0.7441626316867769,-0.08812517067417502,-0.5803358745761216,-0.8456975938752294,0.34459056658670306,0.5853293207474053,0.22608408005908132,-0.8351829475723207,-0.29666469106450677,0.7848820276558399,-0.4191895197145641,0.07500359369441867,-0.5482293935492635,-0.40414996165782213,0.07163999928161502,-0.8522113175131381,-0.3310783067718148,0.7070566089823842,0.0635422756895423,-0.6715119443833828,-0.7746331677772105,-0.8144385083578527,0.5277802566997707,0.5361831425689161,0.19617984257638454,-0.8718512901104987,0.10975287389010191,0.546086342073977,-0.7941944203339517,-0.9583948799408972,0.15147860068827868,-0.12986727012321353,0.691723323892802,0.6080338796600699,-0.10461359936743975,-0.5117618893273175,-0.2968212030827999,0.2459763316437602,-0.651150387711823,0.19562344439327717,-0.9689141367562115,0.0814515296369791,0.45198325207456946,0.3746575750410557,0.953116581775248,-0.49701777659356594,0.3044723607599735,0.3938122116960585,0.04255617829039693,0.17561279330402613,0.37261967780068517,0.20403338270261884,-0.2450873674824834,-0.07269308995455503,0.10298740351572633,-0.6361563722603023,0.23656660364940763,-0.9997446034103632,0.9068303690291941,-0.7061210391111672,-0.19080256344750524,0.08138893125578761,0.03674169443547726,0.17091489164158702,-0.8886571577750146,-0.1750644277781248,0.5162988714873791,0.4658594015054405,-0.9860566770657897,0.8597750328481197,0.24015273712575436,-0.13881745841354132,-0.5562198380939662,0.4865747014991939,0.8232199377380311,-0.10763092432171106,-0.3204328455030918,-0.5238578501157463,0.26028622407466173,-0.40873308572918177,0.37808146234601736,0.7631277740001678,0.6707762130536139,-0.8938223943114281,0.7670607175678015,0.24057337548583746,0.11000406462699175,-0.39183964394032955,-0.6926448168233037,0.4920313758775592,-0.05623883428052068,0.17176049994304776,0.019919120706617832,0.1547345919534564,-0.6535439877770841,0.6804981748573482,-0.684992631431669,0.8876573708839715,0.1822712253779173,-0.39223964838311076,-0.6938620749861002,-0.7245765058323741,-0.7401281921193004,-0.7998806573450565,0.9078799057751894,0.6588028674013913,-0.9212509952485561,-0.4171471237204969,-0.6104194237850606,-0.7603805069811642,-0.023099645972251892,0.2513560801744461,-0.15368364285677671,0.4684011093340814,-0.08409612765535712,0.9595948182977736,-0.3071319437585771,-0.41391243413090706,0.44050130154937506,0.5459322626702487,-0.35147636802867055,-0.3157602599821985,-0.4563248553313315,-0.9526719786226749,0.7029869831167161,0.4284276165999472,-0.9991153501905501,-0.6591439158655703,0.6871676244772971,0.3166301939636469,0.7128150621429086,-0.7066109883598983,0.32754764379933476,0.8875596025027335,0.17973652807995677,-0.5773937562480569,-0.440278931055218,0.3167030503973365,0.7693561427295208,-0.7611859147436917,-0.5108482846990228,0.850853041280061,-0.35308156721293926,0.35426792642101645,0.8025900330394506,0.21445985743775964,0.1058534923940897,0.689527144189924,0.5856528114527464,-0.16386059625074267,-0.2643998498097062,0.3638705085031688,-0.550706778652966,0.6848285784944892,0.9935326599515975,-0.2412669132463634,0.8051417176611722,0.138971331063658,0.8235581726767123,0.9872597805224359,-0.8385595316067338,0.4410122246481478,-0.218383745290339,0.4102591401897371,0.7422805959358811,0.28816415136680007,0.009636997245252132,-0.34131234511733055,-0.7672584163956344,-0.42003769520670176,-0.037455346435308456,0.21027533756569028,-0.9234941364265978,0.26708197919651866,0.733923926949501,0.3115030871704221,0.07638933323323727,0.03364409413188696,0.04842683766037226,0.38259419379755855,-0.3005996118299663,0.7144195511937141,-0.5630954746156931,0.13208002923056483,-0.932863702531904,-0.5630223071202636,0.48540963511914015,-0.7027716557495296,0.10163461975753307,-0.3495582193136215,-0.4182599289342761,0.3627976644784212,-0.3258425504900515,-0.07014300115406513,-0.569381351582706,-0.018735609017312527,0.9246275695040822,0.2767451121471822,0.25597011018544436,-0.46107998536899686,-0.20369652099907398,-0.33170048194006085,0.6316331061534584,0.8106328342109919,0.2050063549540937,0.966669490095228,-0.8741484163329005,-0.5565256783738732,-0.21210432099178433,-0.29066151985898614,-0.26179067324846983,0.5739669143222272,-0.17329423315823078,-0.9673824096098542,-0.9337310553528368,-0.905562546569854,-0.651728942990303,-0.4041537162847817,-0.9767883783206344,-0.008871424943208694,-0.4279976347461343,0.3047111942432821,0.023885473143309355,0.12296113464981318,0.052330972626805305,0.3588230428285897,-0.028011123649775982,0.7825312865898013,-0.5658225417137146,-0.845767174847424,-0.1248923777602613,-0.665845594368875,0.8183751213364303,0.6241318085230887,-0.4980751513503492,0.8204937023110688,0.1786846905015409,0.5672854008153081,0.8429287984035909,-0.7603856986388564,0.4543210547417402,-0.8377327504567802,-0.6507580266334116,0.6082099615596235,0.16659520799294114,-0.7436654618941247,-0.0956052914261818,-0.3996251542121172,-0.20028866874054074,-0.1932815182954073,-0.6565550435334444,0.9262726726010442,0.9256708333268762,-0.6269616433419287,0.6715502412989736,0.5117429564706981,0.5536427102051675,0.4771072994917631,0.40197659842669964,-0.8205001000314951,0.6486448277719319,-0.6952960700727999,0.9551934041082859,0.6740155494771898,-0.8410301436670125,-0.3630476831458509,-0.013785030227154493,0.7834975668229163,0.5738125522620976,-0.12698864936828613,0.21265669632703066,0.41762483725324273,0.2965181986801326,0.23651588382199407,-0.48542482731863856,-0.14722010865807533,-0.23194475239142776,0.14141327794641256,-0.13811588054522872,0.9925901466049254,-0.8033742196857929,0.032795446924865246,-0.5451784715987742,0.2908281241543591,-0.43928382731974125,0.6633177534677088,0.7751998491585255,0.03478750120848417,-0.8842620379291475,-0.33700719755142927,-0.7065881085582078,-0.010217105969786644,0.2124503469094634,0.5768518750555813,-0.40330642694607377,0.10330233303830028,0.6483069569803774,0.23765419190749526,-0.5884080193936825,-0.6660922523587942,0.6493650088086724,-0.9696734477765858,0.5231540151871741,-0.37377270637080073,0.43180441157892346,-0.4987987307831645,-0.3534148191101849,-0.3858313481323421,0.46738353557884693,-0.908609801903367,-0.29641449358314276,-0.8389538270421326,0.8072515437379479,0.4846625146456063,-0.6911926390603185,-0.16775420634076,-0.3641000110656023,0.7182483384385705,-0.7546592652797699,-0.7001894055865705,0.5969675574451685,-0.009451844729483128,-0.2670018910430372,-0.6976237408816814,-0.5481425514444709,0.2993673072196543,-0.9002575306221843,0.6999986725859344,-0.9614482326433063,0.9988353815861046,0.821628815960139,-0.8571809437125921,-0.694454568438232,-0.553104508202523,0.03518296731635928,-0.3785291691310704,0.9594143033027649,0.16870734095573425,-0.9230662831105292,-0.7725367569364607,-0.8164549707435071,-0.8845181805081666,0.4775698627345264,0.9606729196384549,0.43010346638038754,0.033788022585213184,0.5860310113057494,0.5280829952098429,0.1321168257854879,0.34685593377798796,-0.11112810112535954,0.536557761952281,0.2970171314664185,-0.618505631107837,-0.22825314803048968,0.05492336209863424,-0.5879016378894448,-0.374019923619926,-0.6728297267109156,-0.5779645387083292,0.6603430407121778,0.5437906668521464,-0.37611493514850736,0.781405592802912,-0.2804440879262984,0.05222785798832774,0.9298810926266015,0.5626967381685972,0.3366646757349372,-0.7679043901152909,-0.9075712552294135,0.47159315505996346,-0.9224879271350801,0.5068191858008504,0.04070011293515563,0.4148758789524436,-0.6313804015517235,0.5296335653401911,-0.304045079741627,-0.1070324806496501,0.5431108712218702,-0.7987699685618281,0.45108236744999886,0.40581411868333817,-0.5112343151122332,0.04117866884917021,-0.6004846128635108,0.8800775990821421,0.24487932538613677,-0.6615941911004484,0.3962907223030925,0.704780304338783,-0.8493309980258346,0.4071703846566379,0.8336303918622434,0.978293536696583,0.3781235786154866,0.0734147117473185,-0.3919270560145378,0.19338191766291857,0.9967077425681055,0.4104431555606425,0.4365203557536006,-0.11676129093393683,-0.4105795072391629,0.18806999921798706,0.36287448601797223,-0.7912219325080514,0.012072681915014982,-0.4449405032210052,-0.489156162366271,-0.0518647413700819,-0.44468754390254617,-0.7657340914011002,-0.36151187866926193,-0.009065776132047176,-0.2895093602128327,0.11319569777697325,-0.7368057356216013,0.8538327938877046,-0.5120441713370383,-0.24895813781768084,0.5743858469650149,-0.6248979573138058,-0.18886751774698496,0.2849773205816746,0.5445937095209956,0.9915522690862417,-0.745690371375531,-0.5407536579295993,0.608728508464992,0.482494771014899,-0.40138042578473687,0.026621616911143064,0.055924998596310616,0.10891801118850708,0.4639050327241421,-0.7423006384633482,-0.6051867520436645,0.18994655087590218,0.312673841137439,-0.671922733541578,0.7066013128496706,0.6821086844429374,-0.8959582448005676,-0.33355369325727224,0.6110492739826441,0.5352365956641734,-0.6946725896559656,-0.4903946225531399,0.5282689523883164,-0.8996453355066478,-0.202978927642107,-0.4959680628962815,-0.28141487343236804,0.5519151813350618,-0.42144348518922925,-0.2327943742275238,0.2806953056715429,-0.7986114281229675,0.9752339241094887,-0.7975745252333581,-0.9962703050114214,0.6754236351698637,-0.987677397672087,-0.14054860873147845,0.8039078582078218,-0.563435641117394,0.4648094750009477,-0.8492662333883345,0.22866328712552786,-0.0012069172225892544,0.506613208912313,-0.04693078435957432,-0.4398835087195039,-0.9826573934406042,-0.518622849136591,-0.8174567311070859,0.9653921821154654,0.9792804364115,-0.4459095988422632,0.7397070829756558,0.13910094927996397,-0.8956651063635945,0.4204745413735509,0.877136352006346,0.3491528844460845,0.09516667434945703,0.04002667684108019,0.7617876152507961,0.8752040290273726,0.7807364338077605,-0.10234848875552416,0.15095474617555737,-0.5285772169008851,0.35773189552128315,0.5989674376323819,-0.9987911516800523,0.12400439754128456,0.27249453496187925,0.692353751976043,-0.438679002225399,0.3260878883302212,0.3150960514321923,0.18798678973689675,0.1767529109492898,0.7166087836958468,-0.26008495688438416,-0.8803672716021538,-0.05650084000080824,-0.48555938759818673,0.2625978593714535,-0.7914454182609916,-0.6613287185318768,0.4593909289687872,-0.6880681277252734,0.36455031484365463,-0.6882281717844307,-0.16334311990067363,0.16921647358685732,-0.9591935072094202,0.9725819937884808,0.6214955938048661,0.29711796808987856,0.1320760389789939,0.7535476703196764,0.36623773677274585,0.9568974720314145,7.482385262846947e-05,-0.13796981750056148,0.8331181183457375,0.8179718633182347,-0.36004138831049204,-0.018716491293162107,0.0976823796518147,0.10536654526367784,0.6425662753172219,-0.6185744763351977,0.44084175070747733,0.040144873317331076,0.4902798808179796,0.9415318337269127,-0.21293047117069364,0.6676588463597,0.44586053490638733,-0.15744074806571007,-0.13063247129321098,-0.5763201429508626,-0.58213185146451,0.6832869444042444,0.06120061222463846,-0.5674501429311931,-0.09639719501137733,0.7674646186642349,-0.9071191227994859,0.4417124451138079,-0.4128023460507393,-0.3017100924625993,0.9267272143624723,0.9070019405335188,-0.9104384686797857,-0.2953048995696008,-0.2162190629169345,-0.3868721486069262,-0.9457056913524866,0.9980803267098963,0.058418987318873405,-0.7462039417587221,-0.5157308587804437,0.8016361314803362,0.378747524227947,-0.4045634102076292,0.14948243042454123,0.9958249195478857,-0.15061659691855311,-0.7140727420337498,0.1587607995606959,0.1392004215158522,-0.9711326831020415,0.8494036439806223,-0.4032836239784956,-0.5600167810916901,-0.36081930808722973,0.7682406893000007,0.0006363415159285069,0.3406522385776043,-0.17658261908218265,0.36608971003443,-0.9633267191238701,-0.5382480006664991,0.32474065385758877,0.9114678087644279,-0.7442425009794533,0.9058571145869792,0.38337114872410893,-0.8215405480004847,0.6597180915996432,-0.0640455367974937,0.8277548961341381,0.36843794165179133,0.521640500985086,0.9553878982551396,-0.002935402560979128,0.32672412786632776,0.8410379244014621,-0.5742454323917627,0.5270914421416819,-0.9783721813000739,-0.6437652143649757,-0.42968477541580796,-0.17901783576235175,-0.9157069190405309,-0.9134537298232317,0.2980835810303688,-0.8083840091712773,0.028273330070078373,-0.9398294347338378,-0.47643451346084476,0.6397173111326993,-0.6863639885559678,0.10735656786710024,-0.3845300613902509,0.36668090987950563,-0.17166830925270915,-0.5658022151328623,-0.3010108242742717,0.19567338842898607,0.9350104662589729,0.030535440426319838,-0.10833350708708167,-0.49294272949919105,0.23773921094834805,-0.6227821870706975,-0.5451950533315539,0.774752211291343,0.12391182780265808,0.3342521283775568,-0.09933502599596977,0.789747700560838,0.8945235405117273,0.5684983506798744,-0.6285802591592073,-0.06994410837069154,-0.31075844494625926,0.47956749936565757,0.6597786941565573,0.9202597276307642,-0.6484883665107191,0.6221183207817376,0.9213494192808867,0.9688143781386316,-0.3224791311658919,0.8389770742505789,-0.4705224884673953,-0.1629051654599607,-0.19910705741494894,0.7977766231633723,-0.9061349187977612,-0.5391157837584615,0.37560497131198645,-0.614269747864455,-0.22079884307458997,-0.257480641361326,0.7433235724456608,0.6440572808496654,-0.7792995111085474,0.346784096211195,0.5504570594057441,0.3759998818859458,0.8569617406465113,-0.2771222237497568,0.6476176655851305,-0.6308922911994159,-0.27460956992581487,0.9377421103417873,0.1224119896069169,0.17730669677257538,0.8190378863364458,0.45127773517742753,-0.13245364790782332,-0.9361688327044249,0.7688485002145171,0.293464969843626,-0.47671977523714304,0.8476076079532504,-0.6997319115325809,-0.1500394088216126,-0.6371704530902207,0.5473376247100532,0.764414697419852,-0.05934250773862004,-0.13557235663756728,0.11593238729983568,0.4646307658404112,-0.796698653139174,0.8853872017934918,0.4852649490348995,-0.8737336336635053,-0.004815060179680586,0.6452907309867442,-0.6459609079174697,0.6147450706921518,-0.3272502878680825,0.6646555294282734,0.8585902284830809,0.25448581017553806,0.24419564614072442,-0.9769570250064135,0.7016450837254524,-0.7388561181724072,0.3126215711236,-0.34966611862182617,0.31275048991665244,0.347960177809,0.3884046599268913,0.8628743723966181,-0.27437123842537403,-0.272718193475157,-0.2626026929356158,0.9733366379514337,-0.18588339816778898,-0.6193346432410181,0.09178832173347473,-0.8424661513417959,-0.5976741602644324,0.5086464933119714,-0.06506513198837638,0.005618966184556484,-0.5419126930646598,0.33809575205668807,-0.6132314503192902,0.2522942232899368,-0.7198322229087353,0.9634091821499169,0.31924654729664326,0.7339561674743891,-0.9863702803850174,-0.7733402489684522,-0.49267053278163075,0.18316103611141443,0.378083782736212,-0.08831210620701313,-0.07851987844333053,-0.6443446520715952,-0.17838530521839857,-0.35184293845668435,0.547915618866682,0.30656843073666096,0.9688305486924946,0.019456984475255013,-0.45181068731471896,-0.43675645161420107,-0.279231505934149,0.6432739342562854,-0.21918237209320068,-0.15793972508981824,0.37439197627827525,0.8786805761046708,-0.538194180931896,0.09714322723448277,0.251384349539876,-0.3969029877334833,0.7737033050507307,0.8428889978677034,-0.22423286642879248,0.7829903238452971,0.8295882348902524,0.932956806384027,0.8444026769138873,-0.9213255485519767,0.44067087210714817,0.355419987346977,-0.3546976987272501,-0.721312359906733,-0.9683358017355204,0.1213478366844356,-0.9214431988075376,0.23824694333598018,0.7238605176098645,0.5149742215871811,-0.1365983891300857,0.1896904744207859,-0.23916816478595138,0.8034259858541191,-0.8790614600293338,-0.04519370710477233,0.4838463896885514,0.10631689755246043,0.003574664704501629,-0.2989355307072401,-0.9869942059740424,0.8877414357848465,-0.7375992559827864,0.3387060696259141,0.618922031018883,0.2633292581886053,-0.9566169735044241,0.37003515381366014,-0.8714378038421273,-0.21339673036709428,-0.3405458964407444,0.25120977917686105,-0.21945762261748314,-0.05680573685094714,-0.22128694457933307,-0.6679012114182115,0.6873555881902575,-0.05246456200256944,0.3643271247856319,0.45178030524402857,0.6474330946803093,0.6899884911254048,0.3862798032350838,0.14437129208818078,-0.7885592766106129,-0.518275239970535,0.19977344758808613,-0.14309644931927323,-0.8851189138367772,-0.7392886984162033,-0.11536865076050162,-0.05057097366079688,-0.9934998140670359,0.3642503865994513,0.6884371829219162,0.7064175647683442,-0.5485808434896171,0.5816363273188472,-0.5546144582331181,-0.8716033915989101,0.5029801982454956,0.9258749429136515,0.07337187835946679,0.08998381486162543,0.5447952426038682,-0.9996941140852869,0.838000294752419,-0.6038368213921785,-0.769384981598705,0.23359308810904622,-0.7630904046818614,0.6085716667585075,-0.6019512731581926,0.1283707139082253,0.13620592933148146,-0.7238455819897354,0.6306396452710032,-0.4950947593897581,0.07480697333812714,0.21748095331713557,-0.024041760712862015,0.3992742574773729,-0.477802658919245,0.4680937174707651,-0.9646610249765217,0.10493195336312056,-0.29619851522147655,0.10007941396906972,0.8716813689097762,-0.9697058224119246,0.015784138347953558,-0.963438204023987,-0.23802013043314219,0.8956238967366517,0.3900159574113786,-0.7928584613837302,-0.12429750664159656,-0.42417683731764555,-0.6695224964059889,-0.87882976885885,-0.5666373199783266,-0.5920265754684806,0.7943683252669871,0.6223124046809971,-0.060202103573828936,0.784300435334444,0.9188334257341921,0.2504940810613334,0.3922926848754287,0.5356376823037863,0.025631367694586515,-0.7530724876560271,0.31820405181497335,-0.1589480908587575,-0.8027397436089814,0.10385523410513997,-0.2608531480655074,0.36547205271199346,0.0492960074916482,0.3866133070550859,-0.9588063978590071,-0.09239462018013,-0.43832307308912277,0.1107073943130672,-0.8211726970039308,0.6426972313784063,0.9562147581018507,0.31308826990425587,0.8371737934648991,0.8642908376641572,-0.09818145167082548,0.6762584974057972,-0.8611077158711851,-0.22428567800670862,0.17141225095838308,-0.5624330821447074,-0.8492665579542518,-0.4135652123950422,0.1888662758283317,0.37066729413345456,0.616566582582891,0.9966035545803607,0.856889242772013,0.20203325431793928,-0.03937768656760454,-0.8189701568335295,-0.9672078802250326,-0.49072397500276566,-0.43534942669793963,0.0943088554777205,-0.9301836621016264,-0.28412971645593643,0.5397536070086062,0.8403877769596875,-0.06150706671178341,0.5280096139758825,0.49801636347547174,0.692877228371799,-0.685858161188662,0.07498103147372603,-0.5222832094877958,-0.4888562634587288,0.036882470827549696,-0.11070885509252548,0.6195753691717982,-0.20506635028868914,0.11579524585977197,-0.41185928555205464,-0.5674846530891955,-0.036817423067986965,-0.4824727177619934,0.7903127004392445,-0.22667777258902788,-0.23688998352736235,-0.8809124366380274,0.2463042475283146,-0.6549039538949728,0.4420451200567186,0.6047598188742995,0.5461800680495799,-0.8214358291588724,0.04440847784280777,-0.021651487797498703,0.5998504632152617,0.5420729187317193,-0.5511855091899633,0.3167818388901651,-0.2859168346039951,0.2681988449767232,-0.25416550040245056,-0.9932111352682114,0.36462799459695816,0.16733983252197504,0.45831606397405267,-0.1532407202757895,-0.6948239109478891,-0.012445638421922922,0.17329446179792285,0.9798677554354072,-0.5765583049505949,-0.6065645329654217,-0.26231144508346915,0.944172399584204,-0.9126835684292018,-0.7620111322030425,-0.6580186733044684,0.025491398759186268,-0.720222435425967,0.8573497519828379,0.4228862365707755,-0.20887050544843078,0.38913887832313776,0.17140956269577146,-0.6049830042757094,-0.45826582703739405,-0.7420243648812175,-0.23599061788991094,-0.07950670085847378,0.44930106587707996,0.6793266832828522,0.42308479314669967,0.8259815783239901,-0.0013709613122045994,0.4324246756732464,-0.20717561757192016,-0.42433931306004524,-0.49498630268499255,0.2980304788798094,0.5432640928775072,0.4249699246138334,-0.45818465994670987,-0.9851904646493495,0.4552128678187728,-0.5879261898808181,0.8192054224200547,0.2406101613305509,0.4417217937298119,-0.8119664904661477,-0.011487076058983803,0.08452667016535997,0.44755775667726994,0.7648012577556074,0.24409975996240973,0.5725029613822699,0.15106212394312024,0.5125416028313339,-0.5620837975293398,0.6546026458963752,-0.27457159012556076,0.5261841770261526,-0.29234214778989553,-0.12800926761701703,0.47820464754477143,0.011125972494482994,0.6277857343666255,0.017455896362662315,-0.13254832848906517,-0.35866417502984405,-0.8938833591528237,-0.7487141420133412,0.7721728747710586,0.14598018815740943,0.30936219822615385,0.20700141647830606,-0.21276609878987074,0.2902224510908127,-0.9894242556765676,0.053135051392018795,0.650813068728894,-0.7609144961461425,-0.35460451524704695,-0.12270741676911712,-0.35718320216983557,0.9136927798390388,-0.682973351329565,0.12365749385207891,-0.5288549549877644,-0.7422347040846944,-0.38742934446781874,-0.3334196456708014,0.625889150891453,-0.6658702194690704,0.46548713464289904,0.008154750801622868,-0.8218116303905845,-0.1709393891505897,0.9798834044486284,-0.09838629281148314,0.38275803392753005,0.8377112406305969,-0.21782946726307273,-0.4630486168898642,-0.17089456878602505,0.984565740916878,-0.9123547649942338,0.006741933524608612,-0.4567231540568173,0.19612531317397952,-0.8524757958948612,-0.4290799694135785,-0.14980796026065946,0.4468382387422025,0.10864383075386286,-0.7714621317572892,0.5685348766855896,-0.21946259588003159,0.49814791744574904,-0.13831952679902315,-0.3537626750767231,0.25321089196950197,0.5281902435235679,-0.6794161661528051,-0.3888149964623153,-0.32652648352086544,0.7942903782241046,-0.5068103987723589,-0.00731193320825696,-0.9077945635654032,0.5424023545347154,-0.8698429707437754,0.3811581968329847,0.38929593842476606,0.6048495024442673,-0.9091400457546115,-0.34453761018812656,0.8708991622552276,0.003464881796389818,-0.11562239425256848,-0.7496492816135287,-0.010580968577414751,0.7957821502350271,0.6066660759970546,0.29307552333921194,0.2751857824623585,-0.03222459275275469,0.4878023201599717,-0.8381012314930558,0.12786256847903132,-0.6906830645166337,0.7317873695865273,0.5419162171892822,-0.793232386931777,0.18449636409059167,-0.6369582596234977,0.7000055946409702,-0.2831857758574188,-0.7070656614378095,-0.45778397051617503,-0.8138732044026256,-0.9916753312572837,-0.7845094166696072,0.4595228200778365,-0.10145467100664973,0.635565709322691,-0.0955715891905129,-0.5913263750262558,0.3007477051578462,0.07278590649366379,-0.11835625860840082,-0.9896868779323995,-0.5935937063768506,-0.08183421613648534,0.3710248707793653,-0.07220387132838368,0.7013208423741162,-0.6576914433389902,-0.44821416353806853,-0.08238804060965776,-0.4904241072945297,0.6818855321034789,-0.8747634668834507,-0.6728824442252517,0.05277665797621012,-0.666383596137166,0.24654394667595625,-0.07761379471048713,0.23175822058692575,-0.003999333828687668,0.011194191873073578,0.27302728593349457,0.34888694481924176,-0.9524244582280517,0.627248668577522,-0.7684621964581311,0.3740331204608083,-0.200874503236264,0.1227744915522635,0.6168076004832983,0.7910152794793248,-0.6786588253453374,-0.8818425205536187,0.014208185952156782,-0.9274017736315727,0.010484757367521524,0.4766964418813586,-0.9055752814747393,0.9327373309060931,-0.630443346221,0.3673022957518697,0.7739849342033267,0.4881295091472566,0.8205501232296228,-0.482692651450634,0.5788234416395426,0.9788828818127513,-0.11930626537650824,0.7577902753837407,0.2491452251560986,0.6143287355080247,-0.7690502530895174,0.1754242554306984,-0.6615782119333744,-0.9305582134984434,-0.19742764299735427,0.8951555648818612,0.06754425074905157,0.8008571034297347,0.5665045320056379,-0.29382685432210565,-0.9403122081421316,0.396044054068625,0.6413844446651638,-0.6194778196513653,-0.6269687730818987,0.8501201211474836,-0.8140728971920907,-0.31288564996793866,0.6188112911768258,-0.2718693963252008,-0.9629758046939969,0.9926522593013942,-0.6760326586663723,0.8496310627087951,-0.2400149959139526,-0.1643836642615497,0.9845412457361817,-0.2491788170300424,-0.7564901295118034,-0.9439094653353095,0.019142912235110998,-0.9045918579213321,0.5778372846543789,0.8452315428294241,0.5511268456466496,0.8520640535280108,0.8155684662051499,0.0972197251394391,-0.26563011249527335,0.34038676554337144,0.3676507552154362,-0.8659287882037461,-0.2873352034948766,0.2907222071662545,-0.0030132229439914227,0.4372453703545034,0.5306759951636195,-0.6165871252305806,0.4372991123236716,0.20417480496689677,0.3879395555704832,0.5989036005921662,0.28777643386274576,0.930940059479326,-0.6848760661669075,-0.10742054646834731,-0.5502967401407659,0.7727211718447506,-0.021170114632695913,-0.2880479418672621,-0.48978555481880903,0.7802098477259278,0.3654993693344295,-0.10174961993470788,0.5988225797191262,0.5789476004429162,0.42663454730063677,-0.8556863674893975,0.7455367506481707,0.4089366630651057,0.6381286983378232,-0.5343018234707415,-0.22177374456077814,0.7059653680771589,0.2325622127391398,-0.566530997864902,-0.8639951767399907,0.47113273246213794,-0.4994352417998016,0.19221582124009728,-0.8645107122138143,0.6879259557463229,0.9437356828711927,-0.2975562452338636,-0.11179791390895844,0.4212890909984708,-0.949384143576026,-0.735321668908,0.09486003499478102,0.4592065163888037,-0.9603728502988815,0.4259791527874768,0.7269083792343736,0.17070977296680212,-0.24915973376482725,-0.056329849641770124,0.6067563747055829,0.8832073803059757,-0.30379985831677914,-0.8843791745603085,-0.633888581302017,-0.7366375890560448,-0.571369263343513,0.22124893171712756,0.5234857290051877,0.48147510550916195,-0.5442276354879141,-0.9609860004857183,0.23537914408370852,0.8920114496722817,-0.20052370382472873,-0.37681128084659576,0.27742218086495996,-0.7646526214666665,0.15070936176925898,-0.07246483117341995,0.48962835827842355,0.5924423774704337,-0.9746148283593357,0.7179114227183163,0.17807086184620857,-0.2736751367338002,0.33646693592891097,-0.8688046210445464,-0.5588971199467778,-0.32657734863460064,-0.38989170640707016,0.28212284157052636,-0.6518101622350514,-0.3845712337642908,0.587249003816396,0.530417688190937,0.24384392565116286,0.5172457946464419,-0.10199762880802155,-0.7279335493221879,0.42570478934794664,-0.9144446374848485,-0.09424590272828937,0.2595306895673275,-0.3058366230688989,0.833648232743144,-0.245661664288491,0.4322692761197686,-0.8689373671077192,-0.7968385606072843,0.3875281363725662,-0.5741020482964814,0.4997992473654449,-0.020334948785603046,-0.044525804463773966,0.4993951232172549,-0.7603815370239317,-0.8046955782920122,0.22087283991277218,-0.9597521279938519,0.10884121991693974,0.7895288281142712,0.9205980808474123,0.9909574305638671,-0.06276082759723067,-0.05386499874293804,0.22559844236820936,0.0011498304083943367,0.010091973468661308,0.48722036369144917,-0.4224149361252785,0.39494872465729713,-0.7908130250871181,0.06400281842797995,-0.6137486943043768,-0.551155817694962,-0.9943527085706592,-0.6788978576660156,0.4010360315442085,-0.004365487024188042,0.5344127449207008,0.6367242438718677,-0.015623528975993395,-0.8482742975465953,0.2105340203270316,0.12592357862740755,-0.8770159869454801,-0.24085206724703312,0.7108787600882351,-0.470891818869859,0.7365142339840531,-0.8538533351384103,-0.37759484397247434,-0.19478531694039702,-0.42367672407999635,-0.46869437815621495,0.08547109831124544,-0.35068769194185734,0.5034961593337357,0.22794171143323183,0.686587477568537,-0.7861053496599197,-0.5712790177203715,0.8737432765774429,-0.4840554310940206,-0.8792542740702629,0.5074361655861139,-0.8349068812094629,0.5977924931794405,0.6892476915381849,-0.45522097824141383,-0.5332024111412466,0.561200400814414,0.19160574115812778,-0.8767525115981698,0.6993543189018965,0.7291883518919349,0.6466944082640111,0.604063484352082,0.18511357950046659,0.6453616954386234,0.11540882103145123,-0.5142309013754129,0.8405078807845712,0.5546087515540421,0.7831814894452691,0.9421174726448953,0.378727410454303,-0.9193440768867731,0.08219240373000503,0.7819511955603957,-0.14425099594518542,-0.35817448468878865,-0.9335755608044565,0.9408773626200855,-0.4505936084315181,-0.17324167909100652,0.8029386042617261,-0.2629121742211282,0.004591322969645262,-0.6712468578480184,-0.27560605853796005,-0.7418924574740231,0.9776376481167972,0.9969745045527816,0.1442139009013772,0.763693846296519,0.783698218408972,0.9698201147839427,0.9286457537673414,0.36823817482218146,-0.875025003682822,0.2230918533168733,-0.7134828721173108,-0.03670740080997348,-0.21081820270046592,0.03170176362618804,0.4766907556913793,0.006550923455506563,-0.17752938717603683,0.4868017225526273,-0.9910236354917288,-0.2922829738818109,-0.6843127571046352,-0.20900190714746714,0.9288850729353726,-0.6634782832115889,0.8830489115789533,0.34636830957606435,-0.7575983670540154,-0.406930819619447,0.18165277084335685,0.08727789018303156,0.12960288487374783,0.36519053392112255,0.10369026567786932,-0.350222522392869,0.035837532952427864,-0.6179139008745551,-0.20133631490170956,-0.09543928410857916,0.6030224980786443,0.8956998325884342,0.08364050509408116,-0.24374292371794581,0.9296016991138458,0.7726015653461218,-0.03150814166292548,0.9562608259730041,-0.9926306749694049,0.8627008148469031,0.012028906028717756,0.5048015536740422,-0.6308583538047969,-0.6295797382481396,0.8318723244592547,-0.40312010422348976,-0.31760548474267125,0.319324616342783,-0.07560929888859391,0.6668043057434261,-0.312707532197237,-0.3550495910458267,0.25120930559933186,-0.3071144805289805,0.8633434558287263,-0.45511649642139673,-0.3803948359563947,-0.8974431226961315,0.17559111211448908,0.5471705244854093,0.8560368111357093,0.5451508709229529,-0.434062872081995,-0.7903981958515942,-0.5491463607177138,0.219089490827173,0.751819274853915,0.6471907645463943,-0.3246856448240578,0.9906128500588238,-0.6695462097413838,0.06550349108874798,-0.338812998495996,0.8609235873445868,0.9358630073256791,0.13812326500192285,0.41895079193636775,-0.07673392491415143,0.1969882007688284,0.02254682732746005,0.2713030050508678,-0.1196953821927309,0.5298941330984235,0.18046171963214874,0.753623406868428,-0.45255599124357104,0.6499177664518356,0.6519269910641015,0.3595711812376976,-0.13382058590650558,0.21804330637678504,0.9077785508707166,0.010884988587349653,0.28598891384899616,-0.4653885099105537,0.7038422962650657,0.5641689547337592,-0.23494865698739886,0.659965977538377,0.37388687301427126,-0.44418768491595984,-0.8101338655687869,0.5106007899157703,-0.17836954211816192,0.7355664828792214,-0.5844374648295343,-0.6743329339660704,-0.37181447725743055,-0.0037163044326007366,-0.7747336737811565,-0.9369320780970156,0.6401026141829789,0.94935556454584,0.991747201886028,-0.026344200130552053,-0.8565652938559651,-0.6293375575914979,-0.6399778914637864,0.5872702710330486,-0.06281996658071876,-0.6478337291628122,0.022335710003972054,-0.26681247912347317,-0.7812641933560371,0.9723843610845506,0.5579433059319854,0.673076088540256,0.6159810577519238,-0.19820636976510286,-0.9696254413574934,-0.3527475348673761,0.6015816307626665,0.6064454601146281,-0.9375427360646427,0.09485080372542143,-0.9987854482606053,0.6153240255080163,0.985183103941381,-0.08121199626475573,0.7563680345192552,-0.6010175114497542,0.6491852668114007,-0.07555333897471428,0.9015316632576287,0.9301035022363067,0.3750733770430088,-0.5891062887385488,-0.5208890461362898,-0.8546705013141036,0.7876634239219129,0.8988807271234691,0.05078362254425883,0.9300390942953527,0.36363967694342136,-0.1576926396228373,0.2903719339519739,-0.0034407093189656734,0.5020638150162995,-0.7995141455903649,-0.03223949437960982,0.5981944394297898,0.9486956177279353,-0.019316020887345076,0.005627461709082127,-0.7159749916754663,-0.9942949116230011,-0.42969727516174316,-0.20001232391223311,0.36747472546994686,0.8062670575454831,-0.7881544823758304,-0.7317692353390157,-0.9125346313230693,-0.3056132085621357,-0.357328686863184,0.14034899976104498,-0.10846544103696942,-0.9495720854029059,0.5971715175546706,-0.766583148855716,0.7762663932517171,0.023589204996824265,0.4290214949287474,0.6889155837707222,0.2930311020463705,0.8148900982923806,0.22780292248353362,0.15730416495352983,-0.9289859705604613,0.26049710996448994,-0.5015803067944944,0.012144969776272774,0.385271314997226,-0.6578927021473646,-0.9567586951889098,-0.6390336798503995,-0.6519021666608751,0.6089424774982035,-0.19158246694132686,-0.33981228480115533,0.6462373058311641,0.994887269102037,0.9392959396354854,0.6910170502960682,0.537228989880532,0.552085311152041,0.432095387019217,-0.11445611855015159,0.6146044861525297,-0.2726807249709964,-0.6916601313278079,0.33500839164480567,-0.3593324525281787,0.8423433601856232,0.899543896317482,-0.7577455551363528,-0.6792578781023622,-0.9517972925677896,0.6361505817621946,0.6533140600658953,-0.01378923561424017,-0.5258892774581909,-0.11113781854510307,0.25851455656811595,0.9881558832712471,-0.8429870479740202,0.6503784279339015,0.5274473088793457,-0.9910120242275298,0.6728351321071386,-0.2202422060072422,-0.3544797603972256,0.5375391556881368,-0.2764959456399083,-0.378950257319957,-0.9881982901133597,0.14244593400508165,0.3274783338420093,0.5226339721120894,0.2997102225199342,0.33135526394471526,-0.49309446988627315,0.8502933727577329,-0.7951082037761807,0.5517107420600951,0.5002342937514186,0.43839765060693026,-0.8559095351956785,0.438705135602504,0.6026179050095379,0.7549677207134664,0.6040373742580414,-0.8789710630662739,-0.618131410330534,0.39079724019393325,0.9268007730133832,-0.9187904070131481,-0.831692757550627,-0.5411754962988198,0.13514545978978276,-0.6934736734256148,0.8064045766368508,-0.01000717980787158,0.23751718597486615,-0.673468173481524,0.38167810114100575,0.08500187983736396,0.6351943667978048,0.706048958003521,0.25976932467892766,-0.5323576857335865,0.7644506492651999,0.2508155023679137,0.7914764164015651,0.9620649013668299,-0.49657381465658545,0.7610589032992721,-0.09750988008454442,-0.6488760425709188,-0.055351842660456896,-0.12530089728534222,0.7926532407291234,-0.43330410262569785,-0.6556253838352859,0.27896305778995156,0.07745981216430664,-0.47140949964523315,-0.6489456766285002,0.6832385039888322,0.3804068095050752,-0.5572972022928298,0.24407733837142587,0.8017572052776814,0.34818815626204014,0.3699184260331094,-0.8483044588938355,-0.5945286061614752,0.8716736664064229,0.8404569043777883,0.15761452680453658,0.6876064157113433,-0.2974341055378318,0.9943962558172643,0.70804213732481,0.8889858410693705,-0.5187662411481142,-0.22874881466850638,-0.7514268103986979,-0.7424413254484534,0.7126183942891657,0.48926260182633996,-0.9418656989000738,-0.3501243470236659,-0.43933146027848125,-0.3506546947173774,-0.9631678489968181,-0.28048603096976876,0.03346807882189751,-0.6163807148113847,-0.25272692274302244,-0.14428765885531902,-0.22465399838984013,-0.9410124961286783,0.3187689231708646,0.6747541269287467,0.7570206690579653,-0.6696867509745061,0.40199477411806583,0.9751327941194177,-0.2636527684517205,-0.2531154165044427,0.5036359457299113,0.015005720313638449,0.945271834731102,0.16088210884481668,0.2715911311097443,0.314786474686116,0.871327105909586,0.13821528153494,-0.8984322883188725,-0.5956679182127118,-0.6348651577718556,-0.530723802279681,-0.0013507627882063389,0.7824472934007645,-0.6569816577248275,-0.11592039652168751,-0.8880740441381931,0.07534976908937097,-0.8499229992739856,-0.5221150335855782,-0.25412143860012293,-0.728513827547431,-0.8413309911265969,0.890286689158529,-0.40677271829918027,-0.618314134888351,-0.3789656516164541,0.824579088948667,-0.5664217253215611,-0.22608726331964135,0.900403228122741,0.7476737317629158,0.855424989014864,0.4371091006323695,0.3106136308051646,-0.4944012979976833,0.7129045180045068,-0.02814243407920003,0.31453836197033525,-0.5459099882282317,0.8370946273207664,-0.8397333100438118,0.12800488714128733,-0.8767564692534506,-0.47268584882840514,-0.9595265369862318,0.9002226274460554,-0.7343728551641107,-0.5282920598983765,0.9450920829549432,-0.03430170938372612,-0.40938959736377,-0.21837260527536273,0.9603204387240112,0.37720184959471226,-0.11763023538514972,0.6582531193271279,-0.9103385638445616,-0.6374908429570496,0.9820840172469616,-0.7576643163338304,-0.1880652979016304,0.5512723047286272,0.2213708134368062,0.19924468221142888,0.5258671469055116,0.6424962254241109,-0.14963817689567804,0.5532329203560948,0.26471724594011903,0.24143945798277855,-0.683278126642108,0.7879947097972035,-0.313115400262177,-0.4758033440448344,-0.9069364401511848,-0.6817871434614062,0.34646267956122756,-0.49678006023168564,0.42833455093204975,-0.5870531760156155,-0.616775615606457,0.8106785449199378,0.6375794489867985,0.8444755426608026,0.8286164901219308,0.05366405192762613,0.13175212685018778,-0.4453408373519778,-0.5966471307910979,0.3650030605494976,0.9062645663507283,-0.2733491500839591,-0.5101362867280841,-0.3083302262239158,-0.7782889399677515,0.29321240494027734,0.48714974895119667,0.9143259534612298,-0.04721753904595971,-0.36781675508245826,0.22513170400634408,-0.2406703718006611,-0.23764627473428845,-0.8205660288222134,0.8637522533535957,0.6202667732723057,0.854324895888567,-0.5567179298959672,0.3184395246207714,-0.9888300877064466,0.18721534218639135,-0.375695729162544,0.7812983873300254,0.6295595620758832,-0.5882767043076456,-0.6271326169371605,0.861629300750792,0.15569746354594827,0.6746057420969009,-0.1199805960059166,-0.08679418778046966,-0.4110713661648333,0.20277591701596975,0.59714848222211,-0.11039612628519535,0.6456366209313273,0.9582051648758352,-0.44447489781305194,-0.28488970221951604,0.7419957094825804,-0.23480943497270346,-0.6380890067666769,-0.45411366783082485,-0.8532005995512009,-0.7808794425800443,-0.9804976577870548,-0.7790974043309689,0.8468155241571367,-0.8915944918990135,-0.07772721908986568,-0.43610929418355227,-0.9567321492359042,-0.7244816264137626,0.04570675455033779,-0.10705850785598159,0.17228011973202229,0.8073313743807375,-0.30177087988704443,-0.25037131179124117,-0.9728685254231095,-0.8147149221040308,0.05617419118061662,0.8631941145285964,-0.7694676443934441,-0.8985476731322706,-0.45883572986349463,0.6022152495570481,0.7786655770614743,0.18605013750493526,0.2920551458373666,0.18614992080256343,-0.14429604215547442,-0.21017323760315776,-0.6841430426575243,-0.014489333145320415,-0.13465539645403624,0.5112771061249077,-0.8990678712725639,0.7592372633516788,0.14970738114789128,0.015219009015709162,0.8686033147387207,-0.6464933441020548,0.08916259417310357,-0.7711138259619474,0.20897360751405358,0.9849000289104879,0.5604633181355894,0.9823627108708024,-0.6885455693118274,-0.1520700054243207,0.7461254154331982,0.25493036350235343,0.8885143720544875,-0.5443602907471359,-0.8613532553426921,-0.5062225949950516,-0.735583181027323,-0.5402402845211327,-0.9133348679170012,-0.8092478942126036,0.4382458971813321,0.06832294538617134,-0.35270089330151677,0.17978013074025512,-0.6212604325264692,0.8748298771679401,0.10496965143829584,0.2630332796834409,0.7422987478785217,-0.2685040752403438,-0.5990554899908602,0.8626827360130847,-0.28734978288412094,0.19045029301196337,-0.14506239676848054,0.851050138939172,0.46875694720074534,-0.825141248293221,0.8091931939125061,0.4999494105577469,0.25117419054731727,-0.25151857966557145,0.44889722345396876,0.7837947430089116,0.32456869212910533,0.4357029991224408,-0.42387459287419915,0.10916328709572554,-0.0008609741926193237,0.49491073563694954,-0.60154585307464,-0.671664020512253,-0.8965587518177927,-0.8741837316192687,-0.8660275405272841,-0.421546480152756,0.827599982265383,-0.3180732075124979,0.844670647289604,-0.7744900532998145,0.8636344168335199,-0.28299303725361824,-0.9525390304625034,0.9124689805321395,-0.7023446476086974,-0.5979651180095971,-0.36601689644157887,0.5203788103535771,0.24346861755475402,0.035004736855626106,0.4740573060698807,0.23824043106287718,-0.17778994841501117,0.23062138445675373,0.35294395918026567,-0.2756067640148103,0.06537214480340481,0.8004276040010154,0.06308612180873752,0.04661912377923727,-0.36487119272351265,0.12009178893640637,0.1998744746670127,-0.3631719299592078,-0.21729458076879382,0.24701456492766738,-0.00017331819981336594,-0.016577019821852446,0.8896203334443271,0.7557459292002022,-0.9861806323751807,0.6711001400835812,-0.938742870464921,-0.39072614116594195,-0.1662156069651246,0.7854747176170349,-0.668682602699846,0.22015898628160357,-0.9492824957706034,-0.9197194944135845,-0.5437517412938178,-0.0017537670210003853,0.5425344966351986,0.13081191899254918,-0.8858717544935644,-0.6110201221890748,0.2250403850339353,-0.5140628558583558,0.09995516669005156,0.06819597352296114,-0.46470890240743756,0.023323211818933487,-0.7918549450114369,0.17279031313955784,-0.6079993029125035,-0.8916814462281764,-0.7322891126386821,-0.4912044135853648,0.23307803878560662,0.7290944457054138,0.7552972501143813,-0.7630718420259655,-0.3162519093602896,-0.3852961640805006,-0.6495836423709989,-0.8918171245604753,-0.6714548547752202,0.8055130573920906,0.054007632192224264,-0.502527002710849,-0.10808950755745173,-0.8622443811036646,-0.6598981870338321,0.3386850394308567,0.8064464149065316,0.673452933318913,-0.775515946559608,0.06474578566849232,0.9625058928504586,-0.4725518235936761,-0.6790174776688218,0.8489172346889973,0.46474301163107157,-0.2327741519547999,0.3999130530282855,-0.7047387980856001,0.7832580464892089,-0.883698997553438,-0.22524450300261378,-0.44410776905715466,0.6633602948859334,0.17374315485358238,0.256648616399616,0.06316613452509046,-0.7550513525493443,-0.6652387576177716,-0.5414049536921084,-0.46033078571781516,-0.8185359784401953,-0.2681648889556527,-0.45078263618052006,0.9271478443406522,0.11836084490641952,-0.701410349458456,0.3444502758793533,0.5670557511039078,-0.6766128554008901,-0.8364363173022866,-0.919439138378948,-0.5563414222560823,0.87124387267977,0.08316275291144848,0.2803666815161705,-0.4456067751161754,-0.46338156377896667,0.11637407494708896,-0.6755418269895017,-0.18761151749640703,-0.7788068852387369,-0.3407155694440007,0.20550907403230667,0.27616932429373264,0.16948526771739125,0.21091811498627067,-0.12949748849496245,0.4307829076424241,0.23855037800967693,-0.11892584385350347,-0.4213986420072615,-0.15517554664984345,0.0392740098759532,-0.13100283965468407,0.7388475961051881,-0.8741540862247348,0.01834161300212145,0.1800134340301156,-0.3442295528948307,-0.16858658101409674,-0.1458686664700508,-0.22047049645334482,-0.8257626974955201,-0.5253299474716187,-0.3461340507492423,0.3943341630510986,0.694386116694659,-0.9038816359825432,0.0518314503133297,0.21654051868245006,0.5922471480444074,0.7157381335273385,0.4584990334697068,-0.21329645160585642,0.6132279154844582,0.06028256379067898,-0.5552736320532858,-0.7964883800595999,0.3042859579436481,0.8691802700050175,0.8802466462366283,0.08622909337282181,-0.43595505878329277,0.019415270537137985,-0.9431484257802367,-0.5104993707500398,-0.26231892639771104,0.8640699335373938,-0.009236069396138191,0.24797646095976233,0.23870865674689412,-0.3170091463252902,0.5815841108560562,0.0773539855144918,-0.14024515636265278,0.0014678286388516426,0.3739637448452413,-0.4038445735350251,0.5676098261028528,-0.7067640400491655,0.5235254382714629,0.15843047853559256,0.17870515398681164,0.5040757362730801,0.6907393750734627,-0.5481002731248736,0.9398659253492951,-0.8116922727786005,-0.4569738148711622,-0.16597096994519234,-0.0792451468296349,-0.919813574757427,0.8804097794927657,0.579890581779182,0.8795630596578121,0.4144564135931432,-0.10847258428111672,0.015938774682581425,0.007273925933986902,-0.6358052287250757,0.27343148086220026,0.12812006287276745,-0.5352136678993702,0.5364032140932977,0.8274051425978541,0.9014080814085901,-0.7876956923864782,-0.8750727940350771,-0.4307783404365182,-0.7647243002429605,-0.7865304043516517,0.37544595217332244,-0.20879899943247437,0.48482394265010953,0.6369238123297691,0.08719508722424507,0.5220080697908998,0.5298984139226377,0.34712776681408286,-0.026916987262666225,-0.17968464782461524,0.04287036322057247,0.5787342204712331,-0.29424521001055837,-0.5668200198560953,-0.27908076625317335,-0.8053101473487914,-0.1544475625269115,-0.0017716074362397194,0.1741909789852798,-0.2535514826886356,0.4183848979882896,-0.7531862761825323,-0.46965283853933215,-0.01613590680062771,-0.2977771908044815,0.8497999254614115,-0.06727298116311431,0.4449210027232766,0.7538860677741468,0.22098641050979495,0.43490785732865334,-0.5734862247481942,-0.06811860436573625,0.1574719613417983,-0.698689007665962,0.280150399543345,-0.4560216059908271,0.21907568676397204,0.44286656891927123,0.4734743763692677,0.9193402114324272,-0.1412248150445521,-0.0730654327198863,-0.9489904986694455,-0.8218975267373025,0.891167058609426,0.3887857082299888,-0.6525659579783678,-0.034106346778571606,0.1348537509329617,-0.4493318856693804,-0.7559857764281332,-0.3776195188984275,0.11818470014259219,0.5493499846197665,0.02323954412713647,-0.024917100556194782,-0.5279733636416495,0.6219242573715746,-0.23422148451209068,0.8020918890833855,0.8610473172739148,0.6040838155895472,0.41672618221491575,0.48703389102593064,-0.4613706339150667,0.7667950512841344,-0.6788043072447181,-0.9650071347132325,0.38339016772806644,0.8831234104000032,-0.8061666418798268,-0.29364796401932836,0.12851899908855557,-0.9891494424082339,0.487379627302289,0.11626714048907161,0.4452485563233495,-0.4471714082174003,0.4749324480071664,-0.8306149910204113,0.6067653084173799,-0.3755923146381974,0.028333928901702166,0.9148330166935921,0.6058379928581417,-0.38041857024654746,-0.4692835188470781,-0.5961224334314466,0.06644277321174741,-0.35050838394090533,0.41239521326497197,0.19741624919697642,-0.5807357025332749,-0.8292963989078999,-0.5354635203257203,0.9447659119032323,0.5298833642154932,0.46912559447810054,-0.4674684223718941,0.0954733625985682,-0.472671605180949,-0.07551500154659152,-0.23091573035344481,-0.19124690536409616,0.2154494202695787,0.14902702439576387,0.6858314382843673,-0.19415255077183247,-0.1372153046540916,-0.4669715417549014,0.2781673395074904,0.20247692940756679,0.22270997148007154,0.9680179469287395,-0.3972277878783643,0.1919161370024085,0.3768770662136376,0.07321016443893313,-0.7302428777329624,-0.47097640531137586,0.3399993544444442,-0.583348210901022,-0.17925296956673265,-0.4721653060987592,0.7225536275655031,-0.4781490941531956,-0.018554960377514362,-0.72156638558954,0.887326936237514,-0.8141765738837421,0.2045867401175201,-0.7864097305573523,0.16579243447631598,-0.1564490688033402,-0.13405488757416606,-0.6638088896870613,0.48525031050667167,-0.7121715117245913,-0.8964179405011237,0.9911497482098639,0.8889523008838296,-0.38462550891563296,0.4902338716201484,-0.9197451630607247,-0.17079103831201792,-0.3315830253995955,0.7609631614759564,-0.895875386428088,-0.4417593264952302,0.6767627582885325,0.1468528676778078,0.002143524121493101,-0.7326039588078856,-0.6733099301345646,0.35556370252743363,0.04595101531594992,0.44354892801493406,0.011189494282007217,-0.9508246039040387,0.21059241145849228,-0.011007998138666153,-0.778588532935828,0.7110513960942626,0.8127151350490749,-0.5253809881396592,-0.5205794088542461,-0.1532843573950231,0.39607832999899983,-0.039750865660607815,-0.7601070767268538,-0.5820215097628534,-0.10353037575259805,0.9584792666137218,0.827595142647624,-0.0787485595792532,0.5644489135593176,0.3614628822542727,0.03395415795966983,-0.3891782648861408,-0.2931407322175801,0.0743654784746468,-0.312369286082685,0.7546069798991084,-0.8369893408380449,-0.20581606728956103,-0.03380870446562767,0.9788766652345657,-0.2647582245990634,0.21053197979927063,-0.9295028392225504,0.20995903899893165,0.6943442285992205,0.9130122819915414,-0.7982181897386909,-0.5322635066695511,-0.6858244324102998,0.6970766661688685,0.3974353475496173,0.3138475464656949,0.37611667113378644,0.2615006286650896,-0.8967827120795846,-0.01160778570920229,-0.21963362395763397,-0.6330036851577461,-0.9082607342861593,-0.9388599721714854,-0.4043221455067396,0.47880368027836084,-0.45439919689670205,0.6648575044237077,-0.04943113727495074,-0.06904580630362034,0.7429431118071079,0.38517130305990577,-0.06198282027617097,0.7205710806883872,0.5482836226001382,0.2574057742021978,0.05404575355350971,0.2483529313467443,0.8112469781190157,0.19448412954807281,-0.7354916357435286,0.6350320037454367,0.5067325602285564,0.9945270298048854,0.4083769307471812,0.7665843665599823,-0.5862588272430003,0.25358011946082115,-0.08577871276065707,0.03698504762724042,-0.9771131663583219,0.13367818435654044,0.9868782078847289,0.40384345781058073,-0.2449416914023459,-0.059105195105075836,-0.39186508394777775,-0.40189012652263045,-0.5166147667914629,0.7286927942186594,0.718454921618104,-0.8700578017160296,0.4156782510690391,-0.612701065838337,0.2699612667784095,-0.1585040483623743,-0.1360601489432156,0.48023167811334133,0.7725527402944863,-0.7311931373551488,-0.45128571474924684,0.7411322146654129,-0.3225205815397203,-0.7325040334835649,-0.6868650424294174,0.8047424266114831,-0.44002104364335537,0.4044322441332042,-0.02549702115356922,-0.04611617000773549,-0.26038227835670114,-0.41827773163095117,-0.5189734296873212,0.42061041109263897,0.4130005310289562,-0.7432515933178365,-0.5961723136715591,0.5853439588099718,-0.42039731657132506,0.18965058820322156,0.8535882858559489,0.3353975457139313,0.6487713702954352,0.7155293277464807,0.41882503125816584,-0.4134534355252981,0.3707189946435392,-0.7326436247676611,0.26644837064668536,0.6543603534810245,-0.6387890735641122,-0.06624990282580256,-0.7812657710164785,-0.821119025349617,0.6759275244548917,0.5430949535220861,0.284664211794734,-0.5231480188667774,0.7870030226185918,-0.24486096017062664,-0.017135682050138712,-0.5467532589100301,0.19288714602589607,-0.21333782328292727,0.35727081820368767,-0.6976173310540617,0.7601176830939949,-0.30998554918915033,-0.052193117793649435,0.42874025274068117,-0.545913428068161,-0.6162009122781456,0.018177748192101717,0.15994136966764927,0.1899496391415596,-0.11441838322207332,0.24981768056750298,0.08328688563778996,-0.45156225096434355,0.45039847679436207,0.8701127953827381,-0.14848718279972672,0.6447899197228253,0.6649787751957774,-0.5155149246565998,0.09130158741027117,0.993657676037401,-0.370860249735415,-0.6864694473333657,-0.37651655450463295,0.47652466828003526,0.12275434518232942,0.8197840363718569,0.7826184495352209,-0.9794380851089954,0.45290015265345573,-0.3466101032681763,0.10763895092532039,0.32019507233053446,-0.3810492977499962,-0.8221245347522199,0.5670849001035094,-0.4515859233215451,-0.9731490481644869,0.12355913734063506,0.145912803709507,0.8226943970657885,-0.6851633354090154,0.767578705213964,-0.2652487955056131,0.23772941017523408,0.7512840209528804,-0.4323106459341943,0.21603363938629627,0.9516922337934375,0.6050100359134376,-0.45840474544093013,0.8491661380976439,0.37821057392284274,0.6214893669821322,0.43415676755830646,0.24810674786567688,-0.4166801846586168,-0.6539411889389157,0.32191937416791916,0.9082614085637033,-0.11508151143789291,0.6043062396347523,0.8271017447113991,-0.35853151232004166,-0.2650178447365761,0.7915725172497332,-0.5743572507053614,-0.5781056648120284,-0.5380386626347899,0.08733492996543646,-0.3730587768368423,0.3454976794309914,0.507085423450917,-0.7857186617329717,-0.8951345351524651,-0.4501052633859217,0.8813581001013517,-0.04668769147247076,0.2797461939044297,-0.3512005568481982,-0.16931591043248773,0.05324570694938302,-0.9525597430765629,0.8559486917220056,-0.6917479042895138,-0.3701554099097848,0.3722715540789068,0.2998956562951207,0.6750612282194197,0.9056389657780528,-0.08306202292442322,0.1066644205711782,-0.6023563207127154,-0.022726725321263075,0.9240488992072642,-0.3803953370079398,0.3918425771407783,0.9598979288712144,0.5840772031806409,0.93509271601215,-0.7190019940026104,-0.0005056960508227348,-0.7643704577349126,0.9326106351800263,-0.14942092262208462,-0.21454265248030424,0.48189039761200547,-0.7287352443672717,0.25518199522048235,-0.716973046772182,0.0908944932743907,-0.5418328233063221,0.8518400699831545,0.2747786999680102,0.14833487896248698,-0.11134500754997134,-0.3408858319744468,-0.18766587413847446,-0.2937217205762863,0.38507211906835437,0.0883637648075819,0.21161850355565548,-0.8079995037987828,0.029981346800923347,-0.3518547066487372,-0.9137319978326559,0.7425467511638999,0.8133111805655062,0.4891001805663109,0.5236503686755896,0.9214107114821672,-0.6397525044158101,0.3632351034320891,-0.7959770481102169,-0.04839137615635991,0.12162395427003503,0.35793404560536146,0.3295712391845882,-0.47823570342734456,0.768568352330476,-0.3824663399718702,-0.7277064891532063,-0.4041367615573108,-0.9589956672862172,-0.7223015809431672,-0.5090501047670841,0.5163018866442144,0.8990873624570668,-0.5675867632962763,0.3339653299190104,-0.2125476854853332,0.7703876099549234,0.4946737396530807,0.3685574713163078,0.7096699741668999,0.8824403653852642,-0.8925591050647199,0.7665211888961494,0.9269390827976167,-0.19985747057944536,-0.8100277199409902,-0.5787194045260549,-0.20884817838668823,-0.8076023836620152,0.11572316568344831,-0.6332956072874367,0.038853277917951345,-0.5157934501767159,0.25108808372169733,0.7365187234245241,-0.7533889301121235,0.4228974315337837,0.4923861538991332,-0.47968867514282465,-0.20720104640349746,0.9528057747520506,0.45279808854684234,-0.9333428209647536,-0.22201861627399921,-0.8737786528654397,-0.4126186743378639,-0.949921615421772,0.35809715557843447,0.7343266378156841,0.22930777538567781,-0.45963219180703163,0.9414891377091408,-0.7268155026249588,0.16077654203400016,0.7940183114260435,-0.6455269730649889,0.247650901786983,0.40310935489833355,-0.04729293892160058,-0.3600521977059543,-0.4822931447997689,0.24501416832208633,-0.922070452477783,-0.574908759444952,-0.9964406942017376,0.6882795868441463,-0.5008862088434398,0.40804171515628695,-0.5910225547850132,0.2930089137516916,0.7619310733862221,-0.8271980178542435,0.7026158128865063,-0.8695268421433866,0.21223480394110084,0.3472466212697327,-0.2305802209302783,-0.2475895849056542,-0.0063224369660019875,-0.595590004697442,0.7164882095530629,0.5181007827632129,0.2281990209594369,-0.18857663124799728,-0.4074563137255609,-0.8156612021848559,-0.4274486727081239,-0.9028275916352868,0.8290159651078284,-0.016906142234802246,0.09791701007634401,0.04177860449999571,0.6427503670565784,-0.6147827380336821,-0.6531387595459819,0.06083649909123778,0.5183837651275098,-0.002558161038905382,0.3013765560463071,-0.9787890654988587,0.4727512737736106,-0.5833344315178692,0.3417481374926865,-0.3553297654725611,0.5752569204196334,-0.21494381921365857,-0.024869770742952824,-0.8946050857193768,0.2439148025587201,0.6938644428737462,-0.34633455658331513,-0.31811307230964303,-0.591630648355931,0.9012832585722208,0.5468306876718998,-0.5151648507453501,0.36535968724638224,-0.24319063918665051,-0.41195871541276574,-0.08992633176967502,-0.9889763868413866,-0.735979350283742,0.06894279457628727,-0.2478876244276762,0.24432485410943627,-0.533675448037684,-0.3710162127390504,-0.4597822683863342,0.2301594722084701,-0.5569303100928664,0.9627169268205762,0.6283977432176471,0.9465496889315546,-0.13036382431164384,0.7349103474989533,-0.23477206891402602,0.6769167836755514,-0.8805437404662371,0.5398585232906044,-0.32487376732751727,-0.9304537596181035,-0.5772012551315129,-0.44844740396365523,0.35018875915557146,-0.8000594507902861,0.03385451342910528,0.4943748717196286,-0.10826176637783647,-0.7228570263832808,0.157193495426327,0.9503630241379142,0.9445812716148794,0.9528866247273982,-0.3160787052474916,-0.3813044559210539,0.4367984738200903,0.489742792211473,0.9114140034653246,-0.39721500268206,-0.03057008981704712,0.4979390245862305,0.4693663800135255,0.029424123466014862,0.6317791431210935,0.9805633686482906,-0.6126756779849529,0.5880782757885754,0.5003311983309686,0.5473220772109926,0.036268225871026516,0.5670559699647129,0.7312002498656511,0.7781397551298141,-0.14005291601642966,-0.6630637715570629,0.18014883249998093,-0.28859693463891745,-0.4657941460609436,-0.4085180927067995,0.6100531457923353,0.5148991574533284,-0.9358664029277861,0.44268128648400307,-0.887723047286272,-0.5075881243683398,0.9484319360926747,-0.4165613050572574,0.2544767018407583,0.7673449642024934,-0.5409499895758927,0.23150542099028826,0.8045204719528556,-0.4732069852761924,0.7371111526153982,-0.40496901236474514,-0.004940742161124945,0.3337203813716769,0.21923188166692853,0.3192338845692575,0.9093290939927101,0.666486696805805,-0.9051083936356008,0.039968336932361126,-0.3969693393446505,0.9137839362956583,-0.5366407325491309,0.24965325696393847,0.7034421255812049,0.8819186664186418,-0.9372439151629806,0.0067430599592626095,0.8867610227316618,-0.5490642026998103,-0.16426963405683637,-0.6506431973539293,-0.42290571238845587,-0.37898063799366355,-0.48547069262713194,-0.9093618402257562,-0.497577749658376,0.9839907763525844,0.47412934014573693,0.3169992212206125,-0.4748382796533406,-0.6249191616661847,-0.7495774482376873,0.2199352658353746,-0.6133736874908209,-0.40979080786928535,-0.23950931802392006,0.9475360764190555,-0.8644816088490188,0.9581073322333395,0.6771499123424292,0.7718400438316166,-0.6826961082406342,-0.22924563381820917,0.8866176782175899,0.9196907435543835,0.1354971299879253,-0.195920264814049,-0.3959762863814831,0.6845617671497166,-0.43896919302642345,0.06666133599355817,0.001869412139058113,0.08597749657928944,0.4354994846507907,-0.7257045363076031,-0.9498062985949218,0.608119074255228,-0.9293575920164585,0.4772571213543415,-0.8912856290116906,0.23585472768172622,-0.284432974178344,-0.1983398557640612,-0.001900248695164919,0.840891154948622,0.6724345120601356,-0.2204134101048112,0.4387502884492278,-0.378361982293427,-0.7553507494740188,0.6640701424330473,0.18548134015873075,0.3404640406370163,-0.5947962109930813,-0.7270981962792575,0.08716004528105259,-0.2657992234453559,-0.35421530436724424,0.35607920214533806,0.2702501486055553,-0.17357943719252944,-0.3295397446490824,-0.8646719292737544,-0.8756442083977163,-0.44533459236845374,-0.9911197447218001,-0.04589848406612873,-0.7701365617103875,0.4002836709842086,0.06479667453095317,-0.5088036577217281,-0.8858431121334434,-0.7361646411009133,0.3686039559543133,0.6898875646293163,0.44695377349853516,-0.06807715306058526,0.9524036641232669,-0.3602449558675289,-0.9683467620052397,0.980270208325237,-0.48865277133882046,0.18745449976995587,0.027949205599725246,-0.3141702781431377,-0.13583524571731687,0.7012076703831553,0.689935143571347,-0.25865819631144404,0.8734634229913354,0.20222125528380275,-0.42741462076082826,0.5548655036836863,0.29505933728069067,0.10405290359631181,0.5470588803291321,-0.9850333495996892,-0.8111267229542136,0.978607440367341,-0.7679749615490437,0.9330845046788454,-0.19834020361304283,0.6672754995524883,0.25793444365262985,0.18057991517707705,0.34077245835214853,0.5772509071975946,-0.2364530935883522,-0.45725194131955504,-0.8922161282971501,0.10472142696380615,-0.3671404258348048,-0.9334372468292713,0.5599821829237044,-0.8529267427511513,-0.4142008414492011,0.8195941969752312,-0.11693829484283924,0.5852701347321272,0.6135340672917664,-0.1663482547737658,-0.8238644315861166,0.27805753517895937,0.22483717184513807,-0.15466749016195536,0.1106279892846942,-0.4308968842960894,0.21921137114986777,-0.09125579101964831,-0.14809553185477853,-0.6071109003387392,-0.1293864082545042,-0.6658883974887431,-0.5010277386754751,-0.7195069482550025,0.576449166983366,0.4548897542990744,0.8009549379348755,0.9800627920776606,0.683205240406096,0.61575872823596,0.08065614476799965,-0.2678189077414572,0.9729942204430699,0.7160692233592272,0.536537291482091,-0.961769251152873,-0.7568959509953856,0.6319480296224356,0.10767074581235647,-0.9389249426312745,-0.7860656236298382,0.8557707853615284,0.7631260342895985,-0.4018480503000319,0.9807883282192051,-0.9199690301902592,0.14014878682792187,0.4758054921403527,0.022514802869409323,-0.8970653987489641,0.7147974981926382,-0.8170611299574375,0.5288356910459697,0.30786969466134906,-0.7328727268613875,-0.8635837337933481,0.741378587204963,0.18375191278755665,0.5309676988981664,0.8713966980576515,-0.8367001358419657,-0.1586761469952762,0.9547551316209137,0.9442461272701621,-0.8444215157069266,-0.3679377478547394,0.6060772608034313,-0.8173345453105867,-0.22132173739373684,0.4340803846716881,-0.3783653350546956,-0.07260872656479478,0.08959208708256483,0.3159649888984859,-0.8648714190348983,-0.03469525370746851,0.7140688286162913,-0.7546816738322377,-0.09601267660036683,-0.8764951317571104,-0.9510154007002711,-0.26974679064005613,-0.7164839874021709,0.7297872118651867,-0.6658526542596519,-0.5520910592749715,0.25720558827742934,-0.5929945488460362,-0.550902493763715,0.6557996585033834,0.4647491294890642,0.04443088732659817,0.266393955796957,-0.04213882563635707,0.775272071827203,-0.9930458893068135,0.1969486651942134,-0.7878976855427027,-0.8332514013163745,-0.12067824648693204,0.23323068022727966,-0.8586321729235351,0.18303083395585418,-0.06392707815393806,0.4585201283916831,0.9203434088267386,0.7389780879020691,0.6560524422675371,-0.7960318829864264,0.21407345635816455,-0.5887978128157556,-0.10677551198750734,0.13472625752910972,-0.0029267603531479836,-0.24677592981606722,0.7971063214354217,-0.2442015716806054,-0.856439936440438,-0.6159969316795468,-0.2655470184981823,0.6815386819653213,-0.10942741064354777,0.5814067837782204,0.7730638519860804,-0.7537758676335216,0.10699521843343973,0.7866576593369246,-0.0009824750013649464,0.4428502977825701,-0.3157859365455806,0.8492060606367886,0.24126218538731337,0.5318154818378389,0.36729451874271035,-0.2678951262496412,-0.6240312978625298,0.10315293725579977,0.845139728859067,0.3986208806745708,-0.16254546120762825,-0.33439690293744206,-0.07565889414399862,-0.5884233731776476,-0.5681765698827803,-0.40285523561760783,-0.7143314592540264,0.6948895929381251,0.06359650287777185,0.8790052575059235,0.21962399315088987,-0.026711451821029186,-0.5523967039771378,-0.33064436726272106,0.5867519360035658,-0.3515544654801488,0.7146313856355846,-0.20797611260786653,0.6616794555447996,0.6307303817011416,0.9062544386833906,0.4137068819254637,-0.8118664217181504,-0.03584784874692559,0.21631522802636027,0.43557772040367126,-0.09543725801631808,-0.5308350091800094,-0.7249254337511957,-0.040388769935816526,-0.7145352037623525,-0.6886787489056587,-0.2696205382235348,-0.041809854097664356,0.810917123220861,-0.8879826213233173,-0.6027248534373939,0.22168781515210867,0.35083463229238987,0.6255778493359685,-0.6535141239874065,-0.9195506805554032,-0.6242220150306821,-0.46685541002079844,-0.9775913166813552,-0.7195434104651213,-0.861202156636864,-0.06067448062822223,-0.6228120094165206,0.6347892042249441,-0.05304000712931156,-0.4796998016536236,-0.4019400952383876,0.6161445556208491,-0.39889427460730076,-0.32477735821157694,-0.9999097385443747,0.028920498210936785,0.2740456508472562,-0.996736743953079,0.024834698997437954,-0.42835526121780276,-0.3116885260678828,-0.5841921074315906,-0.011417936533689499,-0.9498206269927323,-0.2961203558370471,0.6731472918763757,-0.6156273181550205,0.09889267571270466,-0.22186174103990197,-0.4913380048237741,-0.34501438308507204,-0.6899155420251191,0.34340000338852406,-0.70736154448241,-0.9179215743206441,0.08948526484891772,0.6573177408427,-0.18577729724347591,0.4335780739784241,-0.3523414605297148,0.3017130922526121,-0.07978090457618237,0.11726636625826359,0.01639698212966323,-0.7645885702222586,-0.5732839247211814,-0.9337331247515976,0.06762496521696448,-0.18033305136486888,-0.8884290051646531,-0.6609439919702709,0.8839169582352042,0.9638596326112747,0.6372981457971036,0.37341344077140093,-0.8765732175670564,-0.5077806897461414,0.2173764854669571,-0.4274458382278681,0.7487193234264851,0.6290993494912982,-0.7147600310854614,0.6175855477340519,0.6337194507941604,0.01352898683398962,-0.4623786751180887,-0.2812578263692558,-0.7373937647789717,-0.30721250968053937,0.5107582109048963,-0.32868441520258784,-0.008633473888039589,-0.016716651618480682,-0.6200643600896001,0.7193071404471993,0.5041546560823917,0.1860227519646287,0.1918086907826364,0.9280027956701815,-0.30858255503699183,-0.0003373404033482075,0.4415032803080976,-0.25088692270219326,0.09444993967190385,-0.3536429526284337,-0.5102655668742955,0.6182233681902289,-0.3066617459990084,-0.7777761486358941,0.966659982688725,0.2112556048668921,0.9519773945212364,-0.9689895207993686,-0.6826782659627497,0.2086745253764093,0.33376423409208655,-0.34319419180974364,0.08026285981759429,0.7361654993146658,0.02618659846484661,0.7278134939260781,0.5617817025631666,0.12485541310161352,0.3920003194361925,0.3625343353487551,-0.01460275985300541,0.5342047880403697,0.5207401751540601,-0.8125329972244799,-0.7039864454418421,0.17071905778720975,-0.3136071343906224,0.17566752061247826,0.18911041785031557,-0.7572754332795739,-0.267573902849108,-0.019330323673784733,-0.06535005616024137,0.6311542624607682,0.5659232968464494,0.9595636017620564,-0.39980674954131246,0.3579922607168555,0.75778544601053,-0.8963771052658558,0.13605500059202313,-0.19564772164449096,0.2698200196027756,0.6580443484708667,0.8543037986382842,-0.2577807563357055,-0.9911007727496326,-0.8984218942932785,0.12603605398908257,0.9194011390209198,-0.4355522068217397,0.9874269831925631,0.58389205718413,0.9628186165355146,0.22291871719062328,-0.6152807748876512,0.5498188296332955,0.8632757635787129,-0.0863546459004283,0.8256149524822831,0.704911382868886,-0.6790766157209873,-0.40234376722946763,0.7257223790511489,-0.21649761451408267,-0.7848051111213863,-0.7475556759163737,-0.5120894224382937,-0.8721640263684094,-0.6404470368288457,0.8488498325459659,0.5661516594700515,0.5041786450892687,-0.891496729105711,0.9950787611305714,0.5289588933810592,0.7679166113957763,-0.6782109555788338,0.7531900932081044,-0.032725727651268244,0.48207988403737545,-0.007395359221845865,-0.5330720134079456,0.8567898408509791,-0.20634288247674704,0.7418198576197028,-0.5026089139282703,0.9725907100364566,0.1448099142871797,0.7336649429053068,-0.45420439867302775,0.5839442294090986,0.23890927620232105,0.2644787491299212,0.9616847108118236,0.07897774176672101,0.038601019885391,0.8159453701227903,-0.8293436514213681,-0.4965343624353409,0.11535057099536061,0.497561645694077,-0.6387384352274239,-0.9328581825830042,-0.4554253285750747,0.12660038424655795,-0.4141054474748671,-0.8674318417906761,0.8256490197964013,0.09077386185526848,0.40230358811095357,0.8952118465676904,0.6689803753979504,-0.1024676775559783,0.12189282942563295,0.07114873407408595,0.44481907738372684,0.11485601356253028,-0.14413557527586818,0.3440742529928684,-0.6044667912647128,-0.5191919603385031,-0.6740071927197278,-0.3415065761655569,-0.5540920663625002,-0.445740781724453,-0.7233405513688922,0.3442254005931318,-0.6262867008335888,0.26979643665254116,-0.7177060688845813,0.6767689008265734,-0.351677602622658,0.7504117772914469,0.3295326502993703,0.34860667446628213,-0.15655983239412308,-0.29988910630345345,0.36653265403583646,-0.2145677339285612,0.4720343817025423,-0.5975859090685844,-0.9713331498205662,-0.44530557515099645,0.04984675953164697,0.4372100718319416,0.9097040551714599,-0.20848953071981668,0.32252355944365263,-0.5258511048741639,-0.6280718618072569,0.4580606045201421,-0.1384750441648066,0.8427500366233289,0.5404771594330668,0.6775558074004948,-0.34351554699242115,-0.7570468503981829,-0.2885783324018121,-0.4668072718195617,-0.03102301573380828,-0.6446784702129662,0.5906575480476022,0.9697939441539347,-0.45306962728500366,-0.6927150692790747,0.2176685738377273,-0.40111558977514505,0.11004977067932487,-0.5775370239280164,-0.37646118737757206,0.7041604146361351,-0.6835261299274862,0.003890741616487503,-0.8090924862772226,0.842372321523726,0.040386644657701254,-0.9449508842080832,-0.1863700789399445,-0.6320516769774258,0.8090568245388567,-0.6383868721313775,0.2898144698701799,-0.29080914286896586,0.9061607629992068,0.7015503840520978,-0.6436351109296083,0.2682763673365116,-0.6404210580512881,-0.3359308373183012,0.5304173440672457,-0.22778733912855387,-0.34287231881171465,0.10664714686572552,-0.4050423763692379,-0.8846849002875388,0.9405411859042943,-0.15659050550311804,-0.8956797695718706,0.6687935623340309,-0.8313163365237415,0.8100798423402011,0.7849123505875468,0.32350678043439984,0.4208042426034808,0.9814243842847645,-0.6670040488243103,0.9636178822256625,-0.03726447047665715,-0.07784377969801426,-0.4638962955214083,-0.8141562789678574,0.2594008888117969,-0.39249255787581205,0.5345989796333015,-0.8324982752092183,-0.20812476193532348,0.045652673579752445,-0.4157737484201789,-0.5803056606091559,0.9027758040465415,-0.5254582297056913,0.5020612240768969,-0.2040215185843408,-0.6835387847386301,0.6869680183008313,-0.6785999843850732,0.4913141382858157,0.6382482489570975,-0.1694170623086393,0.09429510543122888,0.15577802946791053,-0.7998104053549469,0.29139554081484675,-0.7259109332226217,-0.5807945923879743,-0.7225257162936032,-0.40772150829434395,-0.8727441322989762,0.30731961131095886,-0.1279655429534614,0.3853403739631176,0.895592839922756,0.1284270202741027,0.6913048890419304,0.476427695248276,-0.43317738082259893,-0.10069127893075347,0.46153801679611206,0.25240346137434244,-0.7434572130441666,0.0434412844479084,-0.4389076726511121,-0.8279775995761156,-0.5220735128968954,-0.5165568734519184,-0.8433424108661711,-0.4667359422892332,-0.6794300032779574,0.10814990941435099,0.5237721893936396,-0.08166608447209,-0.29190190928056836,-0.8619463699869812,-0.5526936948299408,-0.38989900378510356,-0.29463025787845254,0.9466855507344007,-0.7705161403864622,0.7217701906338334,-0.49703100323677063,-0.2076797727495432,-0.5508496160618961,0.3244244125671685,-0.7106716176494956,-0.6135895946063101,0.3198120519518852,-0.3631413164548576,-0.5570343658328056,0.9723949022591114,-0.8132629124447703,-0.942578676622361,-0.9177554408088326,0.2885672873817384,-0.1477590505965054,-0.056707972194999456,0.19647295819595456,0.7880802191793919,-0.5576774296350777,0.6502212435007095,-0.2035323171876371,-0.023601530119776726,-0.12504424387589097,0.23440395016223192,0.6864880141802132,0.11504440428689122,-0.29659191239625216,0.5194639833644032,0.2974405325949192,-0.9380764742381871,0.17298285523429513,-0.23055643355473876,-0.23383535025641322,0.11981307389214635,0.44259279826655984,0.4930361760780215,0.7052116375416517,0.5431097275577486,0.10548293683677912,0.232685262337327,0.9316452122293413,-0.921003854367882,0.5488955960609019,-0.6751940306276083,0.519093913026154,-0.6604812573641539,-0.20305121317505836,0.37502400390803814,-0.9981545563787222,0.8475854494608939,0.3268951461650431,0.5720854862593114,-0.8734533339738846,0.8757466147653759,0.6474671144969761,-0.4673366378992796,0.7960075596347451,0.09670853521674871,-0.44356480659916997,-0.6624232148751616,0.400158547796309,0.5511275483295321,-0.6563320606946945,-0.4695498012006283,0.8205714970827103,-0.05528492107987404,0.6409864574670792,0.9613912054337561,0.32659751549363136,-0.15127998078241944,-0.3949116114526987,0.6678844834677875,-0.3568294309079647,-0.6700657643377781,-0.6332611609250307,0.048980111721903086,-0.9414172344841063,0.9656702992506325,0.9598317849449813,0.39142816606909037,-0.6081159827299416,0.6756156538613141,-0.7852067798376083,-0.8799145175144076,-0.898594212718308,0.3436826295219362,-0.6668120329268277,0.5463434853591025,0.07884389068931341,0.5482691954821348,0.6693683518096805,-0.32956239487975836,-0.7608432164415717,-0.9573759278282523,-0.38365867640823126,-0.23152327025309205,-0.6614690134301782,0.8433961090631783,0.5025584730319679,0.4012014623731375,-0.0038176290690898895,0.5358417998068035,-0.1053514638915658,0.2386327963322401,0.14881447702646255,-0.5638155722990632,0.4584839353337884,0.9398260987363756,-0.3089612224139273,-0.9605651986785233,-0.11377689009532332,-0.9585913592018187,-0.09742049314081669,-0.4124001218006015,0.541576293297112,0.9534276952035725,-0.7076469915919006,0.23478085501119494,0.4577672812156379,-0.6312066097743809,0.41430269181728363,-0.29582729982212186,-0.3921894272789359,-0.30220548575744033,-0.944304786156863,-0.19831868959590793,0.37809749133884907,-0.7555507244542241,-0.8796883295290172,-0.9073444418609142,-0.0643583768978715,0.8243706189095974,-0.5162976896390319,0.7053141985088587,0.8525407579727471,-0.1330512403510511,-0.18560481537133455,-0.5963544654659927,-0.3510226742364466,-0.2889402243308723,-0.8089745747856796,-0.8692796230316162,0.7510619908571243,0.01441346388310194,-0.3734261905774474,0.6575228222645819,-0.4249737258069217,0.9974689735099673,0.38356022350490093,-0.593044466804713,0.6695130630396307,0.8795784371905029,-0.8153262445703149,-0.5266857510432601,-0.05196655914187431,-0.3344516293145716,0.47135590948164463,0.1485126935876906,-0.37355129048228264,0.948490381706506,-0.2668470498174429,0.02579602040350437,-0.16093942569568753,-0.11316081089898944,-0.7680669566616416,0.5313501423224807,0.7640448538586497,-0.4197004768066108,0.40385621786117554,-0.6153934570029378,0.24911428848281503,-0.8767908965237439,-0.16891813045367599,-0.3293701857328415,0.8153150132857263,0.5173886576667428,-0.1471518105827272,0.8054733318276703,0.6391957593150437,-0.6979331923648715,-0.6988370791077614,-0.2527557285502553,0.13990517938509583,0.7007151516154408,-0.04348939144983888,-0.2618302311748266,-0.21250681579113007,0.7189532872289419,0.6903436277061701,-0.8273868388496339,0.11104955291375518,-0.4944538213312626,-0.6879401565529406,-0.5805821437388659,-0.03435849538072944,-0.2689598142169416,-0.1647275355644524,-0.836653795093298,-0.2921531363390386,-0.6967758289538324,-0.31877623964101076,0.1553176688030362,-0.4201967194676399,0.2876430954784155,-0.2445170204155147,0.041370940394699574,0.1396894189529121,0.013820891734212637,0.44837923580780625,0.8135341214947402,0.42382593685761094,-0.5103794494643807,0.4934516386128962,0.522944618947804,-0.1787362601608038,0.3227616543881595,-0.9591296622529626,-0.29622498806566,-0.38668069848790765,-0.2818007580935955,-0.01712660538032651,0.003673276863992214,-0.24940629908815026,-0.6270233979448676,-0.5586513127200305,-0.37338418373838067,0.6245968663133681,0.7510680956766009,-0.7586339935660362,0.687199407722801,0.9563189311884344,0.6949510034173727,-0.9575372780673206,-0.7991725453175604,-0.6239697602577507,0.25155356992036104,-0.50531739089638,0.40374106308445334,-0.9348896890878677,0.5962226260453463,0.07611821219325066,-0.4671430685557425,-0.9648342644795775,-0.3302927096374333,0.5083859744481742,0.38181978231295943,0.14688039012253284,0.8951074909418821,0.09091738564893603,0.5422731987200677,0.5101212086156011,0.7033922635018826,-0.14164973609149456,0.41692320397123694,-0.9764434518292546,-0.6922534224577248,-0.8805162515491247,-0.09665019065141678,0.8803590857423842,0.7323079281486571,-0.5441541969776154,-0.7643874175846577,-0.770919035654515,0.6054673139005899,0.6718365629203618,0.45007794350385666,-0.6284723514690995,-0.019844918977469206,0.9692037934437394,0.09880933724343777,0.07087902026250958,-0.7639338970184326,-0.9706464409828186,-0.3807803806848824,-0.3569864658638835,0.058862490113824606,0.7055634777061641,-0.21287591755390167,-0.793410224840045,-0.8117483393289149,0.29627771954983473,0.9723678464069963,0.0074972128495574,-0.6971349595114589,0.727769369725138,0.3970713042654097,-0.20838539022952318,-0.6302523398771882,-0.9179989094845951,0.1425662082619965,0.018028887454420328,0.4384865751489997,0.28394169826060534,-0.551977944560349,-0.6250469218939543,-0.46687592566013336,0.05410686228424311,-0.6514367591589689,0.9717459776438773,0.09035692596808076,0.9888642178848386,0.479220652487129,-0.07728127110749483,-0.857217132113874,0.24081035144627094,0.2362656849436462,0.5651766178198159,-0.5483294711448252,0.1442652205005288,-0.6748020085506141,-0.9444986116141081,-0.49598010955378413,0.9935710374265909,-0.14152969093993306,0.9132529920898378,0.7790168542414904,-0.7917752033099532,-0.5307076843455434,0.04778478806838393,-0.2332399100996554,-0.7710457113571465,-0.6784492400474846,-0.7772603365592659,0.8100017225369811,-0.5353925358504057,-0.10706710442900658,0.6854779873974621,-0.6573106073774397,-0.9332284284755588,0.33206834690645337,0.23311763582751155,0.5396566293202341,0.43472499772906303,0.620964318048209,-0.06469425093382597,-0.8529313341714442,0.8428718755021691,-0.042973163072019815,-0.5078602754510939,-0.9061503941193223,-0.19360710633918643,0.017017371021211147,0.15117004932835698,0.6886238744482398,-0.15734949382022023,0.1561065367422998,0.334046074654907,-0.6763688581995666,-0.6509348866529763,0.18260900489985943,0.10307813063263893,-0.3693739902228117,0.46644034376367927,-0.28066576458513737,-0.5512530403211713,-0.04013201966881752,-0.5785131976008415,-0.21590756997466087,-0.498075436335057,0.9748096400871873,0.015026967041194439,-0.05947788804769516,-0.7123509650118649,-0.7809053282253444,0.03565430222079158,0.6805691686458886,-0.6344354492612183,0.35049524437636137,-0.42221923917531967,0.2681637010537088,0.9385912385769188,0.6983604487031698,-0.5428354204632342,0.6742524248547852,-0.9639845690689981,0.12091989116743207,0.12092190142720938,0.3295232765376568,0.8705482319928706,0.0919647878035903,-0.45009057596325874,-0.5437459498643875,-0.7810029131360352,0.6272229067981243,-0.28019227273762226,-0.6184772439301014,0.7039875807240605,-0.6897239391691983,-0.9531866419129074,0.6070661335252225,-0.9156021266244352,0.6036092219874263,-0.8833230352029204,-0.7897115983068943,-0.11446216003969312,-0.7018877360969782,0.12550869211554527,0.5285789608024061,0.16238168440759182,0.5107438140548766,-0.6169157945550978,0.6595503184944391,0.8483460159040987,-0.07659621676430106,0.33074973663315177,0.9747706050984561,-0.8665490131825209,-0.1366639183834195,-0.573300814256072,-0.6840438069775701,-0.21042431565001607,-0.038573186844587326,-0.4131744378246367,0.5491448142565787,0.9140961496159434,-0.8546317918226123,-0.20327400881797075,-0.34565572859719396,-0.6273676538839936,-0.35397655237466097,0.8726544794626534,-0.23377159656956792,0.8250984996557236,0.8693315801210701,-0.17033662414178252,-0.21092179883271456,0.8502093851566315,0.2001852602697909,-0.8601406011730433,0.018227018881589174,0.8248702334240079,0.5081045110709965,-0.16991781070828438,0.8868355383165181,-0.9209359604865313,-0.27450902573764324,0.7862727218307555,-0.16566921770572662,-0.5571576431393623,-0.7395315594039857,0.44515962712466717,0.7696750056929886,0.7316873352974653,-0.6524999565444887,0.4229782712645829,-0.5652485196478665,-0.3384976787492633,0.7172665963880718,-0.006028897128999233,-0.37569719552993774,-0.6562428828328848,0.18702207831665874,0.06231563072651625,0.6707930825650692,-0.5848592184484005,0.4030788275413215,0.6774812797084451,0.2564457459375262,-0.0854410445317626,-0.1368456045165658,-0.9503667056560516,-0.7083279406651855,-0.2095611565746367,-0.5566927287727594,-0.24724046094343066,-0.23973421705886722,0.8133559543639421,0.7346178307197988,0.05173341417685151,0.9928551390767097,-0.2185603892430663,0.1535041145980358,0.9492068672552705,0.4481063988059759,-0.08473393693566322,0.09945034421980381,0.592482466250658,-0.48295330395922065,0.961907621473074,0.7643851144239306,-0.9784086430445313,0.6338817114010453,-0.030976085923612118,0.05462718615308404,0.9577070903033018,0.1736410865560174,0.7077195267193019,-0.2971255355514586,0.44664503540843725,-0.945247758179903,-3.9142556488513947e-05,-0.16488338029012084,0.027201007585972548,0.7505775419995189,0.5146452211774886,0.3077773367986083,-0.27262782491743565,0.2537027937360108,-0.5486488142050803,-0.9526068549603224,-0.8368568047881126,0.7334788446314633,0.2993308058939874,0.9353704988025129,0.3207350648008287,-0.3351276661269367,0.015159719623625278,-0.02187314396724105,0.7261473536491394,-0.05402296222746372,0.8709119255654514,-0.7843904425390065,0.31752415699884295,-0.28940873965620995,0.08127761213108897,0.30305784242227674,-0.24555884953588247,0.2889128481037915,-0.7841475610621274,-0.7757749650627375,-0.9806823688559234,-0.9912875993177295,-0.8261279640719295,0.49046999402344227,-0.8737765834666789,-0.8830800214782357,0.40249328734353185,-0.746536931488663,-0.8781635435298085,-0.981327916495502,-0.35298381792381406,-0.5495022106915712,0.7364360289648175,-0.9774201358668506,0.9626561226323247,0.44656833866611123,-0.6818459555506706,-0.8622662755660713,0.17319032363593578,-0.2702510757371783,0.06039344426244497,-0.5978951673023403,0.658736732788384,0.11673883395269513,0.045697147492319345,-0.7079026657156646,0.0630873292684555,0.3584803156554699,-0.7126945564523339,-0.9005645629949868,0.08254454238340259,-0.2182918218895793,0.13720908481627703,0.5579678826034069,-0.40321606444194913,0.9876733277924359,-0.8510261671617627,-0.48656668653711677,-0.3405626709572971,0.06681749084964395,0.10610312595963478,0.12538711354136467,0.6498006149195135,0.943717060610652,0.36036126408725977,-0.1487404382787645,0.4748832737095654,0.4985807007178664,-0.5832837377674878,-0.7111455714330077,-0.13966040592640638,0.4830971146002412,0.014215721283107996,-0.5822312948293984,0.15528980270028114,0.49491837015375495,0.6399269830435514,-0.8302777428179979,0.7081585698761046,0.022240478079766035,0.2698132046498358,0.13058798480778933,-0.6364786489866674,0.7271270821802318,-0.5524080116301775,0.4719763738103211,0.20290330098941922,-0.787862965837121,-0.6048545259982347,0.46705719316378236,0.5526414564810693,0.9277502452023327,0.06202484434470534,-0.515555860940367,0.5401545874774456,-0.177006964571774,0.04204446589574218,-0.18314060615375638,0.841406328137964,-0.033093123231083155,0.5770789668895304,0.9356817402876914,-0.29089542059227824,-0.529340261593461,0.7064922195859253,0.4259608262218535,0.14109802851453424,0.639280732255429,-0.86976966727525,0.5469976430758834,-0.02326992154121399,-0.7752502881921828,0.6273374008014798,0.7515955199487507,0.8846500525251031,0.6621512034907937,0.19726146897301078,-0.4809297565370798,-0.02711480064317584,-0.23497327277436852,0.45517408614978194,-0.32939539244398475,-0.8662430178374052,0.4340464430861175,-0.5058156810700893,-0.23346888134256005,-0.43989464454352856,-0.7838719817809761,-0.36230494687333703,0.22681064205244184,-0.34001384349539876,0.67916892003268,-0.340020336676389,-0.6504468377679586,0.49356773821637034,-0.7972552226856351,0.04479442350566387,0.7252933797426522,0.3352096895687282,0.9724545502103865,-0.6493208105675876,0.8696433310396969,0.8477050489746034,-0.10044164350256324,-0.552653172519058,0.3580648014321923,0.6840455578640103,-0.09592332923784852,0.2380178547464311,0.8421759977936745,-0.8046532128937542,0.6557063274085522,0.8077797875739634,-0.22541757067665458,-0.3094607088714838,-0.060287872795015574,-0.8675559880211949,0.4694653693586588,0.058277951553463936,0.7250003283843398,-0.8591214292682707,-0.08526029856875539,-0.5003287680447102,-0.7956730872392654,-0.40183138428255916,-0.3974787830375135,0.07207217440009117,-0.5048336535692215,-0.2506429264321923,-0.7233036542311311,0.5997051056474447,-0.29458226542919874,0.17239507613703609,0.31258278200402856,0.8870662488043308,-0.45126780960708857,0.2815401703119278,0.4851680025458336,-0.25635845633223653,-0.4159608595073223,0.8011919273994863,-0.1677269386127591,-0.8987869452685118,-0.6769824675284326,-0.7847216506488621,-0.8740757131017745,-0.5896082450635731,0.4762637293897569,0.5667643188498914,0.8014322211965919,-0.2518475791439414,0.745044578332454,-0.5137875946238637,-0.8421155768446624,-0.38792038755491376,0.22261867439374328,-0.9207925307564437,0.9768992983736098,-0.880372772924602,0.38072757329791784,-0.2997312960214913,0.8754901755601168,-0.6890055974945426,0.9175057578831911,-0.6185043449513614,-0.10450402554124594,0.7362076845020056,-0.1914328937418759,-0.7849650313146412,0.01584379654377699,0.4711134806275368,0.7160998885519803,0.9134609717875719,-0.013486470561474562,-0.09092453820630908,0.7872199746780097,0.6125479540787637,-0.010912717785686255,-0.22611650452017784,0.5390022383071482,-0.6659878366626799,0.5303120515309274,0.6641354556195438,-0.49114842526614666,0.43592860782518983,-0.10772744147107005,0.8846085714176297,-0.6706530121155083,0.8526001302525401,0.03220062796026468,0.34291303949430585,0.7615306614898145,0.3401866853237152,-0.7349527548067272,0.9569320855662227,0.7919121491722763,-0.2772695920430124,-0.7918738550506532,-0.11091249389573932,0.6477939304895699,-0.5587458335794508,-0.5343740643002093,-0.7025429392233491,0.6682218941859901,0.195816311519593,0.6288798390887678,-0.13100715773180127,-0.5803827368654311,0.32304129377007484,0.8688406739383936,-0.23904723208397627,-0.41922304406762123,0.22903111763298512,0.8425582558847964,-0.5216218610294163,-0.45574319269508123,-0.25109299132600427,-0.5081553333438933,0.8565255706198514,0.497052404563874,-0.8693834510631859,-0.8705073795281351,-0.4803884788416326,0.05514854099601507,0.7735167578794062,-0.8476514155045152,-0.975862795021385,-0.08154763747006655,0.5138011476956308,-0.9108835207298398,0.9327547899447381,-0.5098731615580618,0.9582620118744671,-0.7156464317813516,-0.8836514921858907,0.017627711407840252,0.4496814850717783,0.519236954394728,-0.2290013488382101,0.3030118392780423,-0.7371588964015245,0.7929901834577322,0.7851700647734106,0.7377286567352712,-0.795956255402416,0.40640931110829115,0.24001173675060272,-0.8747425093315542,-0.29395344061776996,-0.4543331400491297,0.04247599188238382,0.4436220247298479,0.9851191341876984,-0.7805010895244777,0.9972544284537435,0.42191537376493216,0.48219341738149524,0.3484779284335673,0.8246661978773773,0.47841306403279305,-0.19903997611254454,0.44781758403405547,0.7978072487749159,-0.444059353787452,0.2421896462328732,0.5422338405624032,0.11535232234746218,-0.664859292563051,-0.23059828858822584,0.5147662083618343,0.7626018542796373,-0.4404566381126642,-0.9048694469965994,-0.9986424655653536,-0.2190159698948264,-0.6839656592346728,0.17377457208931446,-0.1246004463173449,0.9166236268356442,-0.7388632083311677,0.16039285296574235,0.9423614894039929,-0.8312381380237639,0.2932863854803145,-0.2398119787685573,-0.6355052357539535,-0.3045114711858332,0.7617291398346424,-0.5796998869627714,0.23764112731441855,0.4359334809705615,0.6702960515394807,-0.008010953664779663,0.7083727587014437,0.07283132057636976,0.9288624464534223,-0.9445120976306498,-0.4095404725521803,0.19107785588130355,-0.437068487983197,-0.23708590539172292,-0.6454936093650758,0.18679777812212706,-0.9071957818232477,0.8342955680564046,0.2696757768280804,0.04676826158538461,0.002089710906147957,-0.2848137002438307,0.748843674082309,0.07976522902026772,0.8564052595756948,-0.03468291135504842,-0.590539688244462,-0.6544026406481862,0.37473066709935665,0.20836397632956505,-0.17884277133271098,0.10627004085108638,-0.20536487037315965,0.883356133941561,-0.05193052347749472,-0.3784139915369451,0.9936567256227136,-0.3411987046711147,-0.27939757890999317,0.624556181486696,0.37867950228974223,-0.10142994113266468,-0.2651537279598415,0.3300107535906136,-0.7586434236727655,0.7112418441101909,0.5775089124217629,0.19456805707886815,-0.05802201945334673,-0.23786785872653127,-0.40115119190886617,-0.02528251614421606,0.7671500109136105,0.6407955940812826,-0.0007311427034437656,0.8570970189757645,0.895314424764365,0.8051633643917739,0.4202649933286011,-0.6848448030650616,0.26731240889057517,-0.14554826309904456,-0.028107086662203074,-0.10801327228546143,0.9337310115806758,-0.6659703613258898,0.6342705450952053,0.3101844470947981,0.5197887076064944,0.5757925566285849,-0.16124593187123537,0.06607523700222373,0.03396270936354995,0.3015697202645242,-0.18491341639310122,0.6188860875554383,-0.9225135087035596,-0.1486161001957953,-0.09945186553522944,-0.27834845520555973,-0.4999245507642627,0.9006727212108672,-0.9552797107025981,-0.01569634024053812,0.4231952950358391,-0.007423889823257923,-0.01060795271769166,-0.024963279254734516,0.8965380908921361,-0.7586257648654282,0.8563289744779468,0.894816261716187,0.6774230292066932,0.2244051992893219,0.30586988292634487,0.4870970780029893,-0.2663595611229539,0.024294539354741573,-0.8458000342361629,0.7197878630831838,-0.8856016830541193,-0.6457534125074744,0.2053421912714839,0.43749254615977407,-0.9108845209702849,0.20032383734360337,-0.25773551128804684,0.7891996372491121,-0.2081405008211732,0.8253344013355672,0.6094759213738143,-0.7496993537060916,0.127253376878798,-0.7765634479001164,-0.635856706649065,-0.5208475328981876,-0.5647751945070922,-0.5404127892106771,0.28072456317022443,0.11308952094987035,0.16395656624808908,-0.7227771822363138,0.6895786877721548,-0.28376241959631443,-0.2788454741239548,0.46077569387853146,-0.2530093747191131,-0.8430567188188434,0.30274377251043916,0.1896349978633225,-0.3319463641382754,-0.23504735436290503,0.6061273422092199,0.7884477148763835,0.09025074075907469,-0.11577353766188025,0.5423001428134739,-0.22776032239198685,0.5811317968182266,-0.4415483786724508,0.039538301061838865,-0.19275257363915443,-0.3140083160251379,-0.4321752982214093,-0.10369803663343191,-0.6094245379790664,0.9296294455416501,-0.1296238861978054,0.6986067113466561,-0.5373387392610312,-0.6079919547773898,-0.04317684285342693,0.957572478801012,-0.23849788354709744,-0.13890426512807608,-0.31662845239043236,0.8799791219644248,-0.5018585505895317,0.6301841055974364,-0.6459938837215304,0.10698444209992886,-0.25197472888976336,-0.015488998498767614,-0.13192613050341606,0.642916685435921,-0.987333046272397,0.41110445465892553,-0.3261137227527797,0.2573164817877114,-0.2131576226092875,-0.37305968906730413,-0.5803999360650778,-0.16190294921398163,-0.2525551402941346,0.6745071341283619,0.6920672082342207,0.4059553318656981,-0.9134453926235437,-0.38883119774982333,0.5494660940021276,-0.3413577261380851,0.5242645661346614,0.2169772586785257,0.5463650492019951,0.5071690469048917,-0.13401828054338694,0.1917824437841773,-0.7033456764183939,-0.4372580931521952,-0.8372653457336128,0.9439156604930758,-0.06729957042261958,-0.795447173062712,0.020014400593936443,0.4534408929757774,0.6405034544877708,0.5323465359397233,-0.03839216474443674,-0.03676854865625501,0.02992759272456169,0.49057833245024085,-0.9827370103448629,-0.769157009664923,-0.21203023055568337,0.900838004425168,-0.8800467313267291,0.8947847075760365,0.9356108196079731,0.6186796785332263,0.3996316846460104,-0.14458504412323236,0.09821117389947176,-0.5886354763060808,-0.8535168673843145,0.9643608783371747,0.8354111695662141,-0.4017378371208906,0.7680493397638202,0.6587311779148877,0.27992919785901904,-0.5330234286375344,-0.3164412151090801,0.5708052613772452,0.37542832363396883,0.018321162089705467,0.9680112516507506,0.8136858302168548,0.21490518702194095,-0.9865547721274197,0.11430337931960821,0.147502806968987,0.3926064525730908,-0.9740178007632494,0.10853242920711637,0.18425566237419844,0.026710946578532457,-0.025994195602834225,0.6241513094864786,-0.22913726419210434,-0.662359013222158,0.7417735592462122,0.26673990162089467,0.3113376460969448,0.5855713910423219,0.9403826431371272,0.8662983532994986,-0.3169927424751222,0.4352865694090724,-0.49774084612727165,-0.03907744772732258,-0.018011147156357765,-0.37991780741140246,-0.28675038646906614,0.5676072081550956,-0.4363787625916302,-0.16288200160488486,-0.7913913507945836,-0.649913399014622,-0.5136962807737291,0.3555561709217727,-0.3804716090671718,0.15126052172854543,0.6996793001890182,0.3769128853455186,-0.7230504914186895,-0.4178118812851608,-0.8944205394946039,0.5404302640818059,-0.6806195173412561,-0.2669580481015146,0.7647523167543113,0.9965643472969532,0.28380105178803205,0.1432674047537148,-0.18509808601811528,-0.5851306109689176,-0.4738790178671479,0.8413614565506577,-0.24435510160401464,0.20706669799983501,0.4888697317801416,-0.7899332228116691,-0.7342374459840357,-0.16474746679887176,0.09174225246533751,0.4389941580593586,0.5400985176675022,-0.7583000254817307,0.2154825273901224,-0.12481216108426452,-0.7630111873149872,0.9973491481505334,0.4204730656929314,0.5693016457371414,0.8860881431028247,0.5623261625878513,-0.6033213161863387,-0.0199949168600142,0.4792092083953321,-0.5117317130789161,-0.5993883186019957,-0.8544409689493477,-0.10589675791561604,0.7933584991842508,-0.46237292420119047,-0.13188487943261862,0.9796649836935103,-0.11724788788706064,-0.03971176780760288,-0.9949074075557292,0.537355066742748,-0.6387358866631985,-0.017253680620342493,0.6201876499690115,0.16378172021359205,-0.43896919628605247,-0.368885385338217,-0.850822439417243,0.9845174802467227,0.9992654812522233,0.4985198387876153,-0.2988335071131587,-0.4912713565863669,-0.7365622678771615,-0.26214621821418405,-0.832938558422029,0.8943600282073021,0.32890180544927716,-0.8415197161957622,-0.2139197406359017,-0.6369627309031785,-0.9961574161425233,-0.08176613878458738,0.6739716646261513,-0.6675535449758172,0.9479984827339649,0.12729144655168056,0.09474052116274834,0.14968749368563294,-0.8859259872697294,-0.21185143990442157,-0.5540725640021265,0.15141771314665675,0.4621810056269169,-0.767496800981462,0.027001765556633472,0.2202511467039585,-0.08146090433001518,0.23445075377821922,-0.816422644071281,-0.6655709561891854,0.4136709296144545,0.18911963934078813,0.12509475089609623,0.1437044688500464,0.5898634032346308,0.49868163000792265,0.0769736566580832,-0.8730744170024991,-0.03781955363228917,0.5783145288005471,-0.5447311960160732,0.7929102019406855,0.5797568499110639,0.23182147601619363,0.6939337640069425,-0.0739400302991271,0.9519562073983252,0.4284002403728664,-0.015245446935296059,0.9423247291706502,-0.5668653473258018,0.030392447486519814,-0.5022726533934474,-0.5101161268539727,-0.25769001012668014,0.7989610065706074,0.22374378005042672,-0.838100447319448,-0.3312139082700014,0.6032412480562925,0.6527373609133065,0.5348901674151421,-0.6453147693537176,0.42091067507863045,0.37312914803624153,-0.16680930694565177,-0.928130510263145,0.5275388574227691,0.1980580911040306,-0.21373779652640224,0.4721528207883239,0.8534896499477327,-0.575195072684437,-0.34822418447583914,0.24883021600544453,0.6062996410764754,-0.7155493246391416,-0.3585998178459704,-0.20175147475674748,0.6816926496103406,0.17815637309104204,-0.15890929475426674,0.5702297897078097,-0.2553960047662258,-0.581335723400116,0.6053059436380863,-0.45682067051529884,-0.2273681117221713,0.24684515316039324,-0.8927933000959456,0.43400906352326274,0.9345053369179368,-0.0901164785027504,0.24267567787319422,0.421690481249243,-0.4267913489602506,-0.5448672352358699,-0.9158704867586493,0.7825113544240594,0.4893265818245709,0.1678923647850752,0.3811727552674711,-0.28428885573521256,0.23673443868756294,0.06886218348518014,0.2160898200236261,0.7107616332359612,0.04907675227150321,0.5175912380218506,-0.8584942552261055,0.8695233319886029,-0.47557066613808274,0.15196443535387516,-0.7439068402163684,0.8995562652125955,0.5942974966019392,0.8774956301786005,0.10523124039173126,-0.7675399663858116,-0.4335215990431607,0.31300606532022357,0.8856504713185132,0.3948945850133896,-0.11293197283521295,0.7669259258545935,0.8139493819326162,0.18239412643015385,0.6173514984548092,-0.925407322589308,0.1773310862481594,0.4004597794264555,-0.6954637779854238,-0.495418980717659,0.22823441540822387,0.3931316207163036,-0.11484034545719624,-0.8895545066334307,-0.10730684548616409,-0.9651838419958949,-0.20108823012560606,-0.31258972408249974,0.5555680152028799,0.633011078927666,0.2102563655935228,-0.15222018212080002,-0.5267374608665705,-0.3821939663030207,-0.21124138962477446,0.5099441953934729,0.5872896341606975,0.5669740838930011,-0.03399553894996643,-0.0015848721377551556,-0.728284037206322,-0.673922068439424,-0.4997388473711908,0.11575469374656677,0.22197239566594362,-0.05054416134953499,0.004503261297941208,-0.0015480127185583115,0.16881295945495367,-0.5886949822306633,0.6076801177114248,0.5813030591234565,0.7406043815426528,0.9067066768184304,0.9341768003068864,0.682217753957957,-0.5824407506734133,0.990265381988138,-0.3724272777326405,-0.6320798709057271,0.5318096852861345,0.7719717691652477,-0.43468146584928036,-0.33010683255270123,0.6210925313644111,-0.652262834366411,-0.4747298266738653,0.6412723502144217,0.8251012261025608,0.31209489703178406,-0.9309386694803834,0.5035223392769694,0.7076234431006014,0.9961593677289784,0.671813849825412,0.6457675560377538,0.14045507833361626,-0.4096814952790737,0.5809895000420511,0.8487949622794986,0.9840042917057872,0.050299197901040316,0.724502946715802,-0.9711806713603437,0.6871501980349422,0.1163718975149095,0.24452847195789218,-0.7154179094359279,-0.13345345202833414,0.5230518127791584,0.8115528877824545,0.3165194899775088,0.4202549639157951,0.9041011924855411,-0.003741589840501547,0.03303802339360118,-0.24206624552607536,0.08116200007498264,0.18566492944955826,-0.43792368192225695,0.4598025609739125,-0.5984222269617021,0.18631658190861344,0.5784504399634898,0.2176111568696797,-0.12806319119408727,0.9372974941506982,-0.7384459441527724,-0.598231422714889,0.22774373879656196,0.26412648893892765,-0.5360490581952035,0.007298627868294716,0.8094418146647513,-0.7769526122137904,0.4994999263435602,-0.21276548644527793,-0.8003340177237988,-0.7584530515596271,0.6092706881463528,0.7043413305655122,0.056641215924173594,-0.16032979125157,0.6949907438829541,0.45028939563781023,0.7263694778084755,-0.7140804240480065,-0.2048813453875482,0.6057655280455947,-0.029989479575306177,-0.877159477211535,-0.42505188286304474,-0.6215351554565132,-0.05700446665287018,0.8667954420670867,-0.19536280259490013,-0.9359217286109924,-0.07504675723612309,-0.3064240147359669,0.17674411972984672,0.5893805450759828,0.4896330051124096,0.044853284023702145,0.5092829545028508,0.6109563768841326,-0.23224670020863414,0.5913932016119361,0.20859906589612365,-0.12148879235610366,0.5086285145953298,0.6763867819681764,-0.6553355273790658,0.37625260883942246,0.11943084793165326,-0.7518769931048155,-0.4613171787932515,-0.6472907299175858,-0.8773622810840607,0.42881993763148785,0.654077919665724,-0.9635038250125945,0.09920935612171888,-0.8554221834056079,0.7610697634518147,0.3300730031915009,-0.5120575306937099,-0.20931023266166449,0.8045597639866173,-0.656359450891614,0.40351826790720224,0.06536008324474096,0.040047586895525455,-0.7955442317761481,-0.46817562263458967,0.7349079907871783,0.0648485068231821,-0.391430820338428,-0.5240482953377068,0.32982161454856396,0.9233067408204079,0.9813967142254114,-0.9781903773546219,0.20299221854656935,-0.5844665286131203,0.8730181925930083,0.11748829577118158,-0.29535634769126773,0.808197277598083,0.32935992907732725,-0.3407329577021301,0.26075407583266497,0.7722562053240836,-0.9937664414756,0.8633664194494486,-0.0677766501903534,0.1605824800208211,-0.2641881750896573,-0.7276418344117701,-0.2581659918650985,-0.8837598050013185,0.8710014405660331,-0.5634251474402845,0.20477332547307014,-0.9250815170817077,-0.8859706316143274,0.43810349609702826,-0.6653137267567217,-0.586498701479286,0.7153468704782426,0.29108857410028577,0.7042567930184305,0.8162540951743722,0.5783426929265261,0.5667828605510294,0.7403424587100744,0.6081306748092175,-0.8853207905776799,-0.30327910417690873,-0.8894250323064625,0.13033366482704878,0.49045670265331864,-0.5415233387611806,0.6675308020785451,0.8544540381990373,0.901849084533751,0.4084903132170439,-0.2848510006442666,-0.13444911735132337,-0.8099935096688569,0.06699209287762642,-0.08641563775017858,-0.37887951312586665,0.23226016387343407,-0.8339627762325108,0.04915890097618103,-0.4861284540966153,0.8890072018839419,-0.9944197456352413,0.21546124061569571,-0.19596628798171878,0.0706511395983398,0.9701952468603849,0.3501555840484798,0.9298279634676874,0.232519855722785,-0.8393833716399968,0.6517460565082729,-0.2064787275157869,-0.027225113939493895,0.3237889572046697,-0.6358014512807131,-0.4141310784034431,-0.5101616126485169,0.8538065627217293,-0.8764461884275079,-0.6802402851171792,0.4125030837021768,-0.9760556039400399,-0.37850614450871944,0.29809921188279986,-0.27926542796194553,0.687260256614536,-0.8365533482283354,0.9100613673217595,-0.7699333447962999,0.36657045781612396,-0.6624532099813223,-0.5555823240429163,-0.22137234266847372,-0.1789193912409246,0.016625970602035522,0.036116066854447126,-0.8477652301080525,0.5493504949845374,-0.8988274959847331,-0.008556947112083435,0.7055247230455279,0.5086550679989159,0.6556470789946616,-0.9630100936628878,-0.6895022890530527,0.998544420581311,0.5383983715437353,-0.988677044864744,-0.30213920632377267,-0.36561878211796284,0.13200367195531726,0.8370935823768377,0.35502549074590206,-0.6165329166688025,-0.8966922266408801,-0.9881927212700248,0.16833637235686183,0.5933530912734568,0.01857560221105814,-0.7220295607112348,0.36176501866430044,0.21722385846078396,0.6120425993576646,-0.8705490776337683,-0.4202217641286552,-0.5838364395312965,0.22425095457583666,-0.7325568692758679,-0.5691889435984194,0.8349445224739611,0.5639227405190468,0.45825303066521883,0.699986825697124,-0.6465300437994301,-0.6023786426521838,0.09143896400928497,0.17332792514935136,-0.4954198310151696,-0.6962183071300387,-0.2865595677867532,-0.7750370684079826,-0.9328488996252418,-0.47521704202517867,0.03977257804945111,-0.34990029921755195,-0.870263434946537,0.4764713058248162,-0.6219273786991835,0.8270598938688636,-0.015538877807557583,-0.9181801257655025,0.6705293916165829,0.5981060564517975,0.5290451482869685,0.7974283010698855,-0.8910311735235155,-0.0864083101041615,0.47138264682143927,-0.28942622151225805,-0.6974848597310483,0.7181024244055152,0.9727578428573906,-0.7532209339551628,0.2724578520283103,-0.21601068787276745,0.9736782219260931,-0.561799481511116,0.48985253693535924,0.39129686215892434,0.7479069628752768,0.40981388092041016,-0.2567638522014022,-0.3636780381202698,0.27592753898352385,-0.9539039330556989,0.644977193325758,0.03863742109388113,0.32688140543177724,0.31682154815644026,0.3891854058019817,-0.02339779818430543,-0.19347298238426447,-0.4792411676608026,0.25187643291428685,0.8543198867700994,-0.6300600958056748,-0.48448074888437986,-0.4879450649023056,-0.5363831277936697,-0.03453374654054642,0.45619469275698066,-0.4892585054039955,0.678235063329339,-0.3136409567669034,0.21463676448911428,-0.31819679122418165,-0.9883499587886035,0.46717458544299006,0.39793882984668016,0.44391359854489565,0.7496107020415366,0.48722060304135084,0.5714285708963871,-0.5605983594432473,0.8342175791040063,-0.303092154674232,-0.25865469267591834,-0.7015927569009364,0.33546751039102674,-0.595397918485105,-0.7669688989408314,-0.30691343266516924,0.2963034608401358,-0.6486483169719577,-0.2343705352395773,-0.8257370973005891,0.6031253440305591,0.5779944965615869,-0.9613547027111053,-0.6304346174001694,0.2773525696247816,0.8647284829057753,-0.005313692148774862,0.7603898947127163,-0.833804490044713,0.41875098645687103,0.06303252652287483,-0.32427292177453637,0.0714198974892497,0.3956484696827829,-0.13319150591269135,0.7767081069760025,0.9526355960406363,0.07863634778186679,-0.41983768064528704,0.5984272486530244,0.951900857500732,-0.9509437927044928,0.8279742090962827,0.2711839242838323,0.29612768068909645,-0.6946070361882448,0.522469537332654,0.13258359394967556,-0.9300665091723204,-0.004970410838723183,-0.515523636713624,0.3726108390837908,-0.008956287056207657,0.4989558127708733,-0.05550188571214676,-0.8762545236386359,0.45637521240860224,-0.6159313023090363,-0.1148396534845233,-0.9767673192545772,-0.37032243981957436,0.879319982137531,0.3775797635316849,-0.6626807027496397,0.8743979763239622,-0.9330846383236349,0.0048579382710158825,-0.04589849943295121,0.6970102139748633,0.48158038035035133,-0.14190032798796892,0.610288989264518,0.3612125739455223,0.7849076259881258,-0.4463912579230964,-0.7421311629004776,0.940198723692447,0.1834498280659318,0.9698293888941407,-0.16221571387723088,0.3719644621014595,-0.8375980132259429,0.2470171870663762,-0.2712584640830755,-0.4058006606064737,-0.8628454147838056,0.7282195184379816,-0.9500474114902318,0.3267500167712569,-0.6737659680657089,-0.11026406614109874,-0.5774456630460918,0.7071312046609819,-0.3013687548227608,0.016078556887805462,-0.6309251538477838,-0.19784713815897703,0.8211581390351057,0.6304294699802995,0.2802363974042237,-0.6418037777766585,0.4094744143076241,-0.4301477591507137,0.7018961575813591,-0.013128627091646194,-0.034298821818083525,0.8372920118272305,-0.6364003578200936,0.509420279879123,0.4546660762280226,-0.601480451412499,-0.2049607988446951,0.9027810106053948,-0.34930741507560015,0.2832852629944682,0.12718585692346096,-0.9786162166856229,-0.49418217269703746,-0.011716418899595737,-0.3489475673995912,0.36812663450837135,0.2773084258660674,-0.6561616486869752,0.10811195196583867,-0.5437032305635512,-0.1805128580890596,0.3953360691666603,0.7449053227901459,0.8339444869197905,0.6961071770638227,0.09178820019587874,-0.49922860600054264,-0.68077736441046,-0.27485534455627203,-0.018028562888503075,0.46579437889158726,-0.24926893645897508,0.08334469655528665,-0.8167362166568637,0.332825327757746,-0.8566509624943137,-0.6643410637043417,0.44796006567776203,-0.9033734630793333,-0.78813995141536,-0.824559269938618,0.28228220948949456,0.4373761033639312,-0.8107242793776095,-0.3812996535561979,-0.42658060044050217,0.14317647134885192,0.49662212235853076,0.3162827864289284,0.9587410618551075,0.6411400190554559,-0.04477414395660162,-0.5449326890520751,0.6552278799936175,0.043551608454436064,-0.3698422466404736,-0.10726188728585839,-0.6473200526088476,-0.8494687066413462,0.5786772416904569,0.08365860721096396,-0.897977052256465,-0.6787002072669566,0.06592180347070098,-0.7063283920288086,-0.3503497834317386,0.7660698383115232,-0.3184374342672527,0.615972104948014,0.1839221604168415,0.11130203865468502,0.6093668024986982,-0.7196827917359769,-0.41939459508284926,-0.30555891804397106,-0.5472263623960316,-0.7265395242720842,-0.8406051760539412,-0.6994686252437532,0.061786394100636244,-0.5717856176197529,-0.1957627385854721,-0.39281579200178385,-0.521771174389869,0.0962985553778708,0.01872034603729844,-0.4838225687853992,-0.5467167343012989,-0.9331638370640576,0.9665931086055934,0.8195802900008857,-0.9342403057962656,-0.2832675199024379,-0.9093997371383011,0.7875023502856493,0.41614690888673067,-0.5797047950327396,0.4571786178275943,-0.6365377712063491,0.05541585059836507,-0.4403908113017678,0.6974191348999739,0.7573460349813104,-0.53010721411556,-0.8107676664367318,0.19288662169128656,0.777947158087045,-0.8985299854539335,0.8634918848983943,-0.9118206896819174,-0.43650376377627254,-0.7019599531777203,-0.7658842890523374,-0.244202789850533,-0.1169492406770587,-0.3519035098142922,-0.9503890853375196,-0.5715233655646443,0.7871582503430545,0.16270802775397897,0.6733775404281914,-0.8371944264508784,-0.3851643684320152,-0.2612859234213829,0.0858739004470408,-0.5319918133318424,-0.3012672606855631,-0.43746566912159324,-0.837827215436846,0.7648974312469363,0.7799109667539597,0.387172372546047,0.3538574827834964,0.7808675714768469,0.8214209922589362,0.3464958085678518,-0.4924515769816935,0.6178406206890941,-0.4602459678426385,-0.13983345916494727,-0.37841295450925827,0.8911986513994634,0.23241774458438158,0.6046873335726559,0.3964358479715884,-0.4505204097367823,0.9334739232435822,-0.3253517453558743,0.38601065753027797,0.9136238866485655,0.576005635317415,0.6468151318840683,0.9326557093299925,-0.9603553279303014,0.9661545096896589,0.1504567419178784,-0.08032157085835934,0.44050555815920234,-0.6721479645930231,0.4076877008192241,-0.9848522818647325,0.2173024145886302,0.1026424509473145,-0.3666952340863645,0.04127110308036208,-0.11376532772555947,-0.5327060278505087,0.1798130813986063,-0.28546439576894045,0.27277586981654167,0.08771462552249432,-0.7979230866767466,-0.7252785922028124,0.7177425124682486,-0.9976052888669074,-0.28329504653811455,-0.5367340445518494,-0.604016805998981,-0.05635110754519701,-0.19730722112581134,0.2759204376488924,-0.44243262987583876,-0.728690970223397,-0.5165422959253192,0.8496081186458468,-0.13218028424307704,-0.6510806307196617,0.06730162492021918,-0.42749951407313347,-0.11572324484586716,0.16961835278198123,-0.5052907895296812,-0.8948536035604775,0.1503746872767806,-0.37768826028332114,-0.3291214541532099,0.06075294874608517,-0.5734305842779577,-0.6645184685476124,-0.13679977506399155,-0.8176126852631569,-0.12748569808900356,-0.9560560872778296,-0.34389618411660194,-0.715076089836657,0.00602278858423233,-0.6556301126256585,-0.4812897746451199,0.19559253612533212,0.10206405026838183,0.8217444806359708,-0.51821279944852,-0.3470824360847473,-0.23725169198587537,0.544357294216752,0.06501542590558529,0.6463730339892209,-0.170430613681674,-0.9952658051624894,-0.4538450692780316,-0.8739944049157202,0.15630280459299684,-0.10732672363519669,-0.3870302587747574,0.5440244721248746,0.48078024899587035,-0.21696809073910117,0.8424586961045861,0.49295140244066715,0.701281214132905,-0.1263277125544846,-0.0981060485355556,-0.6961209643632174,0.9339854647405446,-0.8065371057018638,-0.6818133140914142,-0.9043551404029131,0.0775807173922658,0.5263496725820005,0.8440689644776285,0.7798052281141281,0.18074074713513255,-0.9636169839650393,0.32355792447924614,0.4755601463839412,-0.40221375366672873,0.44638878013938665,-0.41264054644852877,0.6971359858289361,0.32323163375258446,0.35208840714767575,-0.6234754244796932,-0.47596939839422703,-0.9170702244155109,-0.5497777918353677,-0.9163972795940936,0.652179375756532,-0.10169559624046087,-0.6411307952366769,0.07812059950083494,0.2778035677038133,0.9279299820773304,0.6381561341695487,-0.3141430504620075,0.20654865773394704,-0.36242670053616166,0.10301437182351947,0.48329792357981205,-0.9111350732855499,-0.11480528488755226,-0.7193664507940412,0.2286474467255175,-0.31892176577821374,0.5481314305216074,-0.9895410072058439,-0.22594034438952804,0.9422253905795515,0.5696558738127351,-0.398110871668905,0.4355759364552796,0.6544383228756487,0.05140418605878949,-0.8384050508029759,0.7480543539859354,0.4559828103519976,-0.08356092823669314,-0.6247093179263175,0.9680520319379866,-0.5890016676858068,-0.04260755144059658,0.8308601784519851,-0.17366661876440048,-0.5656997715122998,0.13354509184136987,0.14046656945720315,0.7266895878128707,0.7284168237820268,0.7453820230439305,-0.8446750231087208,0.4977280283346772,0.2996069868095219,0.25202155858278275,-0.3160760379396379,-0.24553952645510435,0.11764001147821546,0.5852775340899825,0.5895332503132522,0.41804615734145045,0.22722890647128224,0.3099810532294214,-0.5517298453487456,-0.5461059780791402,-0.6909697959199548,-0.7893888987600803,-0.2493161461316049,-0.7422965941950679,0.0892047043889761,-0.6282475921325386,-0.5936919148080051,0.08007599972188473,-0.7392815058119595,0.7836545049212873,0.08138926047831774,0.11658458365127444,0.4916486772708595,-0.6379482066258788,0.3112769736908376,0.35782941710203886,0.595372015144676,-0.683566833846271,0.6921914261765778,-0.16364793898537755,0.9122759215533733,-0.5532875396311283,0.8604780989699066,0.3786890869960189,0.053517524152994156,0.763496714644134,-0.3875265633687377,-0.9274055161513388,-0.6759297484531999,-0.02113193739205599,-0.9905641516670585,0.4713490502908826,-0.6561593487858772,-0.19632898550480604,-0.19415099965408444,0.8876966019161046,0.4972430029883981,-0.834430627990514,-0.22416521329432726,-0.7058799983933568,0.0022220490500330925,-0.8240430243313313,-0.20160396909341216,-0.42345226323232055,0.2993433363735676,0.5514282598160207,-0.26472737500444055,0.06733782449737191,0.011354979127645493,0.941065832041204,-0.18675018288195133,-0.16674967342987657,-0.8460576180368662,0.6737354737706482,0.6399939190596342,-0.5012591974809766,-0.41177661903202534,-0.6523979459889233,-0.04374024597927928,0.7580914963036776,-0.25701100239530206,0.3564180564135313,-0.967941377311945,-0.4406978669576347,0.22157655749469995,0.055729462299495935,0.14818645035848022,-0.7091910024173558,0.8716944418847561,-0.7823999491520226,-0.8856983757577837,-0.01212942972779274,0.03821832127869129,0.7270468515343964,-0.29785327380523086,0.3393192798830569,-0.5110306274145842,-0.8201904068700969,-0.40642151422798634,-0.5505161401815712,-0.7058166633360088,-0.13876439863815904,-0.2374319601804018,0.48703130474314094,0.8862978662364185,0.32510907435789704,0.9221337880007923,-0.9039027346298099,-0.6233623446896672,-0.3547555631957948,-0.7769942050799727,0.9507472072727978,-0.3332838583737612,-0.915384759195149,-0.6308754826895893,-0.2647051205858588,0.9582353183068335,0.13889690628275275,-0.6317625134252012,0.6038842904381454,0.8043513153679669,-0.5096719372086227,-0.8384714000858366,-0.44269787380471826,0.26985387736931443,0.5823631440289319,0.47093544946983457,0.19365848042070866,-0.824374632909894,0.7635176414623857,0.8459228407591581,0.8144308533519506,0.1530266529880464,-0.9550172192975879,0.25013123638927937,-0.8165919845923781,0.5544195743277669,-0.4188418332487345,0.4579306407831609,0.9608234968036413,-0.22798147797584534,0.9155334895476699,0.8825758136808872,0.9698938233777881,0.6712790462188423,0.39277134090662,0.34205260034650564,-0.8180824089795351,0.4307252438738942,0.22602958045899868,-0.02413714351132512,0.9811813030391932,-0.15068252012133598,-0.9097254602238536,0.08694696938619018,0.37766332225874066,0.6292546740733087,-0.08750840928405523,0.7060599448159337,0.16851200815290213,0.920884822960943,-0.5097318422049284,0.3149091205559671,0.4201167947612703,0.922698276117444,-0.6215855409391224,-0.07654591975733638,-0.7618274041451514,0.24529359443113208,0.6474568713456392,-0.3229980687610805,-0.26938115945085883,0.04563374491408467,-0.2981566935777664,-0.3159359530545771,-0.6833608099259436,-0.27323222626000643,0.25837423652410507,-0.24398491671308875,-0.5060153109952807,0.5009091729298234,-0.39875717367976904,0.022994389291852713,-0.17735248059034348,-0.09964568354189396,-0.7162297102622688,0.6723286686465144,-0.9662075419910252,-0.9578369180671871,0.03463262366130948,0.721789204981178,0.3163104089908302,0.5397738912142813,-0.6672978042624891,0.8875878066755831,-0.2309438455849886,-0.09910045424476266,0.3760061333887279,0.9409788334742188,0.6249586073681712,-0.16279009450227022,-0.11669111903756857,0.28698370046913624,-0.4008628260344267,0.27977064810693264,0.5071096266619861,0.6350410501472652,0.12385814497247338,-0.298156903591007,0.7714754762127995,-0.3327351617626846,0.32811713172122836,-0.7609026851132512,-0.24076694203540683,-0.3043551966547966,0.7598902238532901,-0.5724494638852775,0.22012170543894172,-0.6898447112180293,0.882271253503859,-0.507971128448844,0.6111616753041744,-0.2732098698616028,0.4582945303991437,-0.01576585043221712,0.11183085013180971,-0.8921791892498732,-0.05706822779029608,-0.9974823500961065,0.5712189660407603,0.17986402614042163,0.16833602730184793,-0.7453086618334055,-0.9080679197795689,0.3945873724296689,0.33903150632977486,0.6827868497930467,0.38042192021384835,0.8298268574289978,-0.8894773977808654,0.30456073116511106,-0.9945188886485994,0.8400900322012603,0.7562472936697304,-0.4943371145054698,0.4783916836604476,-0.19626008346676826,0.6081373351626098,0.40843685809522867,-0.26684597693383694,-0.933122172486037,-0.561592310667038,-0.9149522334337234,-0.10533146653324366,0.4243055433034897,-0.5614694985561073,0.3293775296770036,-0.2115354803390801,-0.8214002442546189,-0.4376611071638763,-0.46330725541338325,-0.7194167003035545,-0.45383658399805427,0.984361853916198,0.8703911784105003,0.010816233232617378,-0.1330625107511878,-0.6658908487297595,-0.2991094943135977,-0.3868600446730852,-0.5152003886178136,0.5771701857447624,-0.026031994726508856,-0.5583422654308379,0.767660316079855,-0.33607489382848144,0.5961103490553796,-0.5934584490023553,-0.9261635881848633,-0.7323509994894266,0.3014026265591383,0.04095476632937789,0.5587645838968456,0.09868359519168735,-0.3396289926022291,-0.6309637939557433,0.5264871967956424,-0.7598921419121325,-0.1573970546014607,0.24640927743166685,0.5822222921997309,-0.29277754528447986,-0.0848151515237987,-0.351102483458817,0.9339482053183019,0.001429982017725706,-0.11958500416949391,0.5983497174456716,-0.08065496804192662,-0.0921840094961226,-0.681229165289551,-0.15667663561180234,-0.6310778050683439,0.29459390603005886,0.25454663299024105,0.29800477903336287,-0.4599850559607148,-0.14470240147784352,-0.49938400322571397,-0.0890589663758874,-0.19267645245417953,0.1035473020747304,0.1873334078118205,-0.27977972850203514,0.17284251376986504,-0.9542490988969803,0.41072502732276917,-0.43391671730205417,-0.24860101751983166,0.9213057509623468,0.42882453836500645,0.06379529275000095,0.8095197472721338,0.06652596546337008,0.45070610474795103,0.36222828924655914,0.3781685382127762,0.8670776844955981,0.9571526842191815,-0.40600456623360515,0.978508158121258,-0.7391002103686333,-0.40645554242655635,0.3214032738469541,0.7035689521580935,-0.3688793792389333,0.07550339959561825,-0.9396939855068922,-0.3033744338899851,-0.35967135010287166,0.8785072574391961,0.02671925676986575,-0.6049305056221783,-0.4481559479609132,-0.02544637070968747,0.7915958361700177,0.3557461593300104,-0.4813776998780668,0.306645427364856,-0.48325170390307903,0.08280929224565625,-0.5182759729214013,0.9162870184518397,-0.6317350920289755,0.3297121045179665,0.29895844543352723,-0.8414126955904067,-0.7742372625507414,0.7145162378437817,0.5251877796836197,0.8087579230777919,-0.4230951885692775,0.616296973079443,0.8775486717931926,0.3953669769689441,0.3541004038415849,0.16942179296165705,-0.3670829669572413,0.6344958702102304,0.7246489613316953,-0.6827254137024283,0.7131037204526365,0.6203624620102346,0.9148907735943794,0.7675949009135365,-0.3707653982564807,0.47636627731844783,0.13379738898947835,-0.5969605878926814,0.7746464549563825,0.4433309603482485,0.8084490499459207,0.6841689511202276,-0.843685993924737,0.2748072687536478,0.7537315161898732,0.7274273429065943,0.6794715197756886,0.1748928790912032,-0.84968680748716,0.23984918231144547,0.12526418548077345,0.7307886914350092,0.16657218243926764,0.11495491489768028,-0.9588143052533269,0.9523134883493185,0.8813672107644379,-0.25267846835777164,-0.41793390084058046,-0.168610371183604,-0.6103668203577399,0.8993659298866987,0.651660087518394,0.8348695198073983,0.3411023300141096,0.3184149428270757,0.7253151377663016,-0.5095817996188998,-0.738067302852869,-0.41085792426019907,0.19827337097376585,-0.24765688460320234,-0.810638336930424,-0.5924637215211987,0.6811006995849311,0.8443668265827,-0.6166187282651663,0.09279381204396486,-0.8641393231227994,-0.6391132441349328,-0.06638146284967661,-0.8986919815652072,-0.5555385197512805,0.31990779330953956,-0.21061663143336773,0.17064363276585937,-0.8647578954696655,-0.7663884847424924,-0.3593456647358835,-0.1941347266547382,0.9145178026519716,-0.8707499164156616,-0.5527416164986789,0.3827645843848586,0.4851172831840813,-0.5915731312707067,0.6096791424788535,0.5065311649814248,0.10761065827682614,0.47019379772245884,0.40631899842992425,0.027441340498626232,0.0478907129727304,0.17166540259495378,-0.8211507466621697,-0.2362930541858077,0.10743526043370366,-0.8711082967929542,-0.3832022142596543,0.4968415964394808,0.998820114415139,-0.5409203195013106,-0.2926046154461801,-0.15091481851413846,-0.21226644981652498,-0.009277635253965855,0.9548614276573062,-0.5752789587713778,0.9640980465337634,0.42107908381149173,0.09920574445277452,-0.704058796633035,0.8404940459877253,0.4478367557749152,0.4464342752471566,0.01888968702405691,-0.03925380762666464,-0.5303551256656647,0.7261476321145892,0.21135350922122598,0.21951468382030725,-0.43904712051153183,-0.7883225395344198,0.3387980074621737,0.33140931790694594,0.6007331875152886,-0.22853928245604038,-0.029726109467446804,0.6463622329756618,-0.24171586940065026,0.551188878249377,-0.09602495050057769,0.8312880592420697,0.2630704245530069,-0.965854583773762,-0.2450088495388627,0.43369486182928085,0.03325422666966915,-0.43877726048231125,-0.5044382433407009,0.2767632990144193,-0.8518951823934913,0.17125066462904215,0.44396147318184376,0.7892821528948843,-0.39857695810496807,0.7268407205119729,0.8275144654326141,-0.08157717995345592,0.8727577524259686,-0.7622151873074472,0.202245082706213,-0.7458857665769756,0.11495312862098217,0.9777156910859048,0.7595899561420083,0.4724583658389747,-0.1498383479192853,-0.08273753570392728,-0.6503953142091632,-0.5607882062904537,-0.5832499754615128,0.39103144546970725,-0.644414315931499,-0.035040816757828,-0.12276801466941833,-0.607875213958323,-0.8801533728837967,-0.29218146577477455,0.40596956526860595,-0.6941863535903394,-0.7348767523653805,0.9837438380345702,0.6194772124290466,0.3128608833067119,-0.8658384359441698,-0.06039694510400295,-0.9213409898802638,-0.10583314625546336,0.8392127808183432,-0.6491559720598161,-0.18867312697693706,0.562082486692816,0.18206194322556257,0.5929695195518434,-0.7032954953610897,-0.7821519174613059,0.9555011321790516,0.8151267562061548,0.5251704095862806,-0.21630033804103732,-0.9665632620453835,-0.585887064691633,0.008282285183668137,-0.8605383145622909,0.10974359652027488,0.7331591765396297,0.17054602364078164,-0.3676419020630419,0.8202325436286628,0.4829093823209405,0.4373262985609472,0.10952144768089056,-0.05928338784724474,-0.810408232267946,0.5726395626552403,0.5899487501010299,0.4262722320854664,-0.6194298467598855,-0.9079263070598245,-0.2198474295437336,0.22873205225914717,-0.046282649505883455,-0.5735290651209652,-0.7148879850283265,-0.066681076772511,0.07568622706457973,0.12867224449291825,0.3337438879534602,0.00907033309340477,-0.2479252819903195,-0.7543173972517252,-0.9597574579529464,0.6905930330976844,0.2793568023480475,-0.49611592199653387,-0.7831994267180562,0.08276753779500723,-0.2194726406596601,0.9842450651340187,0.6755701098591089,-0.44375883834436536,0.42745630722492933,-0.5992607651278377,-0.1158922896720469,-0.05693631060421467,0.045215634163469076,-0.40763556072488427,0.4450978972017765,-0.4764481424354017,0.7172544556669891,0.17248645704239607,-0.11638136953115463,0.35365906869992614,0.2657623924314976,0.028682950884103775,0.23263404751196504,0.6736074574291706,0.6011634003371,0.0585439195856452,-0.1973327617160976,-0.670689164660871,0.07429576572030783,0.5148746068589389,0.1736161643639207,0.5359517741017044,0.6114161815494299,-0.0407228865660727,-0.37972860829904675,-0.6562538458965719,0.9761221231892705,-0.5243009184487164,0.01723703322932124,-0.7576539861038327,-0.9988923026248813,-0.44373338110744953,-0.22781073860824108,0.011658020783215761,0.4601372783072293,0.5938550974242389,0.38045766996219754,-0.10487510962411761,-0.8473311304114759,0.7014664988964796,-0.21338386181741953,-0.7183834691531956,-0.5160028031095862,-0.984504809603095,-0.17154100630432367,0.5654332148842514,-0.03910280577838421,0.3965129000134766,0.2301759379915893,0.24186770804226398,-0.4254400972276926,0.9846745473332703,0.6377165410667658,-0.821790911257267,-0.6988328411243856,0.11152520449832082,-0.5699308658950031,0.575491548050195,-0.8418314163573086,0.22796886833384633,-0.4055157550610602,0.07876473339274526,0.10287411091849208,-0.14948395732790232,-0.6044500092975795,-0.08310459973290563,0.1312072384171188,-0.060709384735673666,0.09261822747066617,0.5362565666437149,-0.6806020876392722,-0.572473268955946,0.020795184187591076,0.13751394301652908,0.9032106343656778,0.5190801140852273,-0.04330674605444074,-0.6170824817381799,0.1759946676902473,-0.5079637807793915,-0.08068935200572014,-0.6062035048380494,-0.47581192711368203,-0.06557635637000203,-0.6239596391096711,0.78572963969782,-0.23658124916255474,-0.7178267342969775,0.7158910036087036,-0.719976328779012,0.2789049004204571,-0.354592380579561,0.2552264058031142,0.5518065891228616,0.08629989717155695,-0.6715902746655047,-0.8380317622795701,0.8235969166271389,0.07118617510423064,0.7180028958246112,0.5063806721009314,0.8281194362789392,0.1489240787923336,-0.8207726129330695,0.29176259506493807,-0.22766092838719487,0.012252788990736008,-0.9851954458281398,-0.9373724088072777,-0.016088598407804966,0.13839433575049043,0.8347173184156418,0.6802041833288968,-0.9000123124569654,-0.8857646496035159,0.7828302402049303,0.6862136237323284,0.06831764988601208,0.9379279906861484,-0.14752289280295372,0.7323499023914337,0.45165250543504953,0.6728558908216655,-0.47607090324163437,-0.7155926059931517,0.7242529252544045,-0.5528491740114987,0.394987637642771,-0.28361128969118,-0.06125026103109121,0.020628662779927254,0.15472972765564919,0.6066131009720266,0.94884047890082,0.9067387799732387,0.5133842783980072,0.25980033120140433,0.3368632597848773,0.8299999488517642,-0.718790486920625,-0.6998908892273903,-0.4262168277055025,0.5733687714673579,-0.18862303672358394,0.5144464997574687,0.8172483080998063,0.8027690723538399,0.20088038966059685,-0.16583771212026477,0.13823140412569046,0.09101826976984739,-0.21700634341686964,-0.00687372637912631,0.5087618888355792,0.5636809151619673,-0.6767920725978911,-0.360115525778383,0.8659656657837331,0.7953527546487749,-0.618818361312151,-0.24309637630358338,-0.7887278110720217,-0.3037388822995126,0.18599362252280116,0.7654013410210609,0.5511460481211543,-0.38898667227476835,0.3428768515586853,-0.9337865640409291,-0.5961900823749602,0.41788656963035464,-0.8374364674091339,-0.8465999546460807,-0.8962033214047551,-0.015143499709665775,-0.05316854827105999,0.3256059065461159,-0.0697918925434351,0.598408083897084,-0.019164154306054115,0.514737097080797,-0.08455207711085677,0.8364434903487563,-0.5748461619950831,0.33823638083413243,-0.20851369760930538,-0.8310158480890095,0.8770510400645435,-0.9119136310182512,0.27570146368816495,-0.28336441656574607,0.24966812087222934,0.8036429155617952,0.48499640356749296,0.42466278513893485,-0.6112767038866878,-0.9335303478874266,-0.7613357026129961,-0.42611665837466717,0.20489073917269707,-0.07136222627013922,-0.013526986818760633,-0.8689554035663605,0.0478824689052999,0.9900297676213086,0.43505515810102224,0.47799145337194204,-0.38390231877565384,-0.2694280743598938,-0.01859849039465189,0.37395932292565703,0.9991278522647917,0.5795660289004445,0.11201264709234238,-0.045604963321238756,-0.8832041947171092,0.8006266574375331,-0.17242090310901403,0.9897423256188631,-0.022636516485363245,0.07720146793872118,-0.8272821907885373,-0.641968498006463,-0.786589362192899,0.7341446848586202,-0.07441102154552937,0.919297659303993,-0.7883959291502833,0.1180521477945149,-0.2796792099252343,0.7098028426989913,0.4365633218549192,-0.6442910404875875,-0.27808167412877083,0.8340544714592397,0.7629714435897768,0.24350947374477983,0.42447317158803344,0.5302625009790063,0.8476896956562996,0.2687336066737771,0.9538417691364884,-0.25004056189209223,0.9826446804217994,0.4883444500155747,-0.28871389804407954,0.12908252561464906,0.06328639527782798,0.345490425825119,0.13859127834439278,-0.028949675615876913,-0.40580079052597284,-0.21520066261291504,-0.17868315521627665,-0.6129162996076047,0.7628686553798616,0.49077747808769345,0.810829100664705,0.7656139289028943,-0.5411877948790789,-0.02634880319237709,0.4578696875832975,-0.9586727716960013,-0.39066516561433673,-0.9136265143752098,-0.3664476885460317,-0.43573505617678165,0.36055169766768813,-0.12071441626176238,-0.13485931186005473,0.34781315876170993,0.7299154005013406,0.6786927157081664,0.0695957918651402,0.821482109837234,-0.9157596682198346,0.8616742542944849,0.1968042398802936,-0.7440779362805188,0.9074546126648784,0.9851608378812671,-0.1691615218296647,0.6957856449298561,-0.24361802218481898,0.05938702076673508,-0.7761145927943289,0.9449549135752022,0.1428969046100974,0.24009451922029257,-0.3424713253043592,-0.2643238971941173,0.6645414857193828,0.08675887621939182,-0.5903355632908642,0.9726427416317165,0.3642005333676934,0.5741082718595862,0.6761563769541681,0.6441035130992532,0.40327546978369355,0.9759027124382555,0.9687949954532087,-0.06461965711787343,-0.9556165752001107,-0.6145512633956969,-0.05248845973983407,-0.5729349181056023,-0.09164792392402887,0.22912622056901455,-0.8867698875255883,-0.1122025465592742,-0.25089308293536305,-0.37815141351893544,-0.4298132574185729,0.5956168188713491,-0.07556380005553365,0.20332831190899014,-0.31964184483513236,0.426459398586303,-0.7844376801513135,0.9506424744613469,-0.9632289279252291,-0.7400365411303937,0.6292027551680803,0.3164627715013921,0.5631128917448223,-0.418122676666826,0.48802661430090666,-0.8931665932759643,-0.8466441053897142,0.4326328979805112,0.8913740450516343,-0.02483153622597456,0.48911232268437743,-0.18628938449546695,-0.683148808311671,-0.2090414110571146,-0.15560590149834752,0.5165260001085699,0.4855965655297041,0.34499082574620843,0.5169516326859593,-0.8960801409557462,-0.40492032188922167,-0.13922900706529617,0.5415392252616584,0.26777095440775156,-0.6424858164973557,-0.6580534563399851,-0.880856950301677,0.6528988676145673,0.35053942212834954,0.9451716276817024,0.23192455945536494,0.5561696724034846,-0.10815377999097109,-0.7186681278981268,0.7875936119817197,0.3727083667181432,-0.047234227415174246,-0.958535092882812,0.24629572965204716,-0.030602407176047564,-0.12128921458497643,0.026823848020285368,-0.31273542204871774,0.9347528596408665,-0.4221905032172799,0.63424365920946,0.2829359760507941,-0.3643650929443538,0.9963586796075106,-0.021437042392790318,0.9660702147521079,-0.7488823151215911,-0.8542795637622476,0.26367704989388585,0.3455724813975394,0.31472358433529735,-0.7538950368762016,-0.3824015804566443,-0.13417035527527332,-0.9644799004308879,0.6129685491323471,-0.7892800495028496,0.9290966298431158,-0.5453171897679567,0.46415714221075177,-0.6218003169633448,0.6366723384708166,-0.7735516116954386,-0.3768536550924182,-0.8752590585500002,-0.7782183564268053,0.6428343113511801,-0.7518486967310309,0.7741774013265967,-0.5458305613137782,0.7275302791967988,0.37867620354518294,-0.15827994793653488,-0.9810278965160251,0.8885685387067497,-0.3299572435207665,0.6062220758758485,-0.6930193677544594,0.3598361788317561,0.8922854214906693,-0.1499038115143776,-0.37989633064717054,0.5458263587206602,0.11238447623327374,0.19869109336286783,0.9206442539580166,0.047619955614209175,-0.3553790715523064,0.6577802821993828,0.7815105617046356,-0.4429277624003589,0.9643516237847507,-0.9291277336888015,-0.5310248620808125,0.6462324843741953,-0.5503333201631904,-0.40383406821638346,-0.3323981468565762,-0.5094494572840631,0.02853856049478054,0.32736244332045317,-0.6870886539109051,-0.3143219859339297,0.29684525122866035,-0.37408179603517056,0.6601642351597548,0.8794808187521994,-0.310340974945575,-0.4100713524967432,0.3488441579975188,-0.2965027685277164,0.06152727548032999,0.17498077312484384,-0.6979139279574156,-0.19430101290345192,0.38647084357216954,-0.6783144297078252,-0.23364695347845554,-0.7188454843126237,-0.17023860989138484,-0.4607987734489143,-0.41254779510200024,-0.6999868275597692,0.6124701122753322,0.6017218381166458,-0.006749295629560947,0.7422144021838903,0.5957676619291306,0.15524353692308068,0.7855855571106076,-0.5276090237312019,0.5340891256928444,0.31024460680782795,0.9682882097549736,0.09829292865470052,0.10380722302943468,-0.5931073324754834,0.44208918372169137,-0.46935829147696495,0.12011539051309228,-0.8310587350279093,0.176836505997926,-0.868463546037674,0.7876955959945917,0.6387795619666576,-0.8969341902993619,-0.7686711386777461,0.07260154141113162,-0.843394254334271,0.6240701116621494,-0.9723378820344806,-0.21479443972930312,-0.5289367362856865,0.529739186167717,-0.7781983055174351,0.3576009781099856,0.5718276482075453,0.14190454361960292,-0.977912075817585,0.36662462493404746,-0.8665722985751927,0.7478397958911955,-0.5187449990771711,0.5981446672230959,0.7067046910524368,-0.8552604257129133,-0.13077343441545963,-0.22752690594643354,0.44855318032205105,0.2791417841799557,0.060984260868281126,0.5990847698412836,0.5691689369268715,-0.16450695367529988,-0.45438786363229156,-0.9541093036532402,0.4766830177977681,-0.17185370018705726,0.05090054403990507,0.05753671796992421,0.23879376146942377,0.18140664603561163,-0.9141067671589553,0.8567819879390299,-0.9123873431235552,-0.6188156791031361,-0.5419047479517758,-0.27602221397683024,-0.6251526675187051,0.8924589096568525,-0.8746916628442705,-0.09161905804648995,0.48693854408338666,0.5036556725390255,0.15411716047674417,-0.7758568204008043,0.344497328158468,-0.5051504289731383,-0.3477886589244008,-0.6518329540267587,0.15813309326767921,-0.01830721041187644,-0.4944203868508339,0.19994275830686092,-0.6433871760964394,0.8949970644898713,0.5087633091025054,0.26709721563383937,-0.4105461030267179,0.02883448265492916,-0.5263397637754679,0.8672837065532804,-0.6217653010971844,-0.7986994474194944,-0.13936522928997874,-0.9527806309051812,-0.9633054183796048,-0.38595701940357685,0.02274267841130495,-0.6222234964370728,-0.6394420731812716,-0.9575223536230624,0.3607429782859981,0.01144297607243061,-0.10407546116039157,0.5973097998648882,-0.5355126354843378,-0.49650135170668364,-0.017690924927592278,-0.6765391514636576,-0.5210166340693831,0.5368416318669915,0.4838957339525223,-0.2998858639039099,-0.603144770488143,-0.9426922765560448,-0.9842705810442567,0.13881139643490314,0.20022559771314263,-0.4494189340621233,0.33735157269984484,-0.5586928757838905,0.35992369847372174,0.49174731597304344,0.8975577373057604,0.03284113109111786,-0.19995365338400006,-0.44741402566432953,0.9476756411604583,-0.45110229030251503,-0.6187003143131733,-0.7775702113285661,0.1796286297030747,0.23134307470172644,0.6702092490158975,0.4907221463508904,-0.0015024514868855476,0.007720370311290026,0.822845219168812,0.6006006393581629,0.6799861826002598,-0.1349451895803213,-0.7676846822723746,0.1586118983104825,-0.4795700213871896,-0.5004731421358883,0.3316054791212082,-0.3275938802398741,-0.2676250943914056,-0.8312550154514611,-0.7222272986546159,0.7239060956053436,0.8739305846393108,-0.8720721965655684,0.912343624047935,-0.5048282388597727,-0.29268211126327515,0.5440325736999512,0.47630800725892186,0.6027125469408929,-0.7406024932861328,-0.647772332187742,-0.31091839633882046,0.9592743543908,-0.30792097840458155,0.4228924913331866,-0.3566463436000049,0.7996182953938842,-0.27354416297748685,0.4450630568899214,-0.3130550542846322,0.29137527802959085,0.007256397977471352,-0.34958226699382067,0.008935197722166777,-0.8133564810268581,-0.8074065786786377,-0.13165578059852123,0.369794721249491,0.4706164919771254,0.06912152469158173,0.3006121660582721,0.9274708800949156,0.48468560352921486,-0.7052124310284853,-0.5367333744652569,0.8630223330110312,0.16362748807296157,0.8941279016435146,0.34752757009118795,0.9517422658391297,-0.8019418120384216,0.6637013726867735,0.27629860350862145,0.8748658546246588,0.7196080172434449,0.7184787136502564,-0.05358615051954985,-0.3438134752213955,-0.11681284382939339,-0.5989019996486604,-0.8603563732467592,-0.22872030548751354,-0.7934616296552122,-0.6348866974003613,-0.21058994624763727,-0.30724265752360225,-0.03877476369962096,0.4120274977758527,-0.06182414619252086,0.2503546397201717,0.11100332904607058,-0.5196149465627968,0.8009467958472669,-0.4684041906148195,-0.743318862747401,-0.04640613589435816,-0.45052234875038266,-0.16162270726636052,-0.6870814873836935,-0.4167287335731089,0.7529611415229738,0.20271323015913367,-0.6300623607821763,-0.9584086029790342,0.007334078196436167,0.7719213077798486,0.37742489483207464,-0.31609378941357136,-0.4317286708392203,0.35551141016185284,0.24141974980011582,0.8653566045686603,0.18228043243288994,-0.7918839547783136,-0.21845944644883275,-0.6568474643863738,-0.8126808376982808,-0.5313419429585338,0.923603655770421,-0.5948355658911169,0.20479062758386135,0.10178223485127091,-0.4838514127768576,0.32235926715657115,-0.6908276486210525,0.6320306384004653,-0.7289005490019917,0.4988139304332435,0.5136938812211156,0.25347524229437113,0.43077284283936024,0.4492803951725364,-0.022581689059734344,0.24227553140372038,0.23978286748751998,0.09662954742088914,-0.21541669825091958,-0.010198451112955809,-0.7343205856159329,-0.9448221027851105,-0.46044588927179575,-0.5462408307939768,-0.061525856144726276,0.01665149349719286,0.09947131853550673,0.011339539662003517,-0.9827085575088859,-0.7122139385901392,0.9523677621036768,0.5735401744022965,-0.1316271973773837,0.9295051833614707,0.5320565206930041,-0.8151196860708296,0.37118133110925555,-0.3726476142182946,0.04359124880284071,-0.46018707333132625,0.5376474931836128,0.2624243935570121,0.5418529249727726,0.6460638446733356,-0.5990540636703372,-0.7161249262280762,0.8736528512090445,-0.19439541827887297,0.6116718277335167,-0.4746542884968221,-0.2280283784493804,0.9376593246124685,0.1057081688195467,-0.03973515424877405,0.28326856531202793,-0.1618682686239481,0.38119859294965863,-0.09489524131640792,0.07053494174033403,0.2250486621633172,0.7754678232595325,-0.9090421930886805,0.9553202358074486,0.43030518665909767,0.36368529591709375,0.45044987043365836,-0.07125494303181767,-0.41024983720853925,-0.2462746244855225,0.3516736892051995,-0.8300068113021553,-0.6755318902432919,0.9967627455480397,0.29501468129456043,-0.6712396000511944,-0.9825150575488806,-0.3891037441790104,0.10404693987220526,-0.42402067268267274,0.5812591365538538,-0.8393599670380354,0.21336193103343248,-0.9203481054864824,-0.06303400592878461,0.0751671209000051,0.4236344355158508,0.22599051939323545,-0.9322741790674627,-0.9901978434063494,0.45288314390927553,0.5785554144531488,0.31881370348855853,-0.2840576572343707,0.9635388958267868,-0.6278455751016736,0.19269491406157613,-0.6971219382248819,0.4502098122611642,-0.8995727845467627,-0.5827337298542261,0.43627284094691277,0.3638645983301103,0.6937058866024017,0.4676405768841505,-0.660986544098705,0.44605660485103726,-0.723544851411134,0.771061516366899,-0.9240470896475017,-0.9986893776804209,0.7708211881108582,0.15511213056743145,-0.40507339034229517,-0.3491806318052113,-0.23017263552173972,0.7315321480855346,0.17743590893223882,0.6009802194312215,-0.36709669791162014,-0.30685389693826437,-0.2658329517580569,-0.8395505179651082,-0.766994068864733,0.9189526811242104,0.3864232958294451,-0.8622094611637294,0.5904491078108549,-0.8312460454180837,-0.0198065172880888,0.7855283063836396,0.2687190710566938,0.15341151598840952,-0.0028827176429331303,-0.4858263465575874,-0.7301620589569211,-0.9303370504640043,0.2543856608681381,0.07581458799540997,-0.8645655405707657,0.3429338871501386,-0.4664515764452517,0.7869138005189598,-0.014262612909078598,-0.8784735626541078,0.43429348478093743,-0.57627023011446,-0.2803099653683603,-0.44250020012259483,-0.36882204189896584,-0.9745244467630982,-0.20167178194969893,0.1135255447588861,-0.7100599957630038,0.5419442811980844,0.4995320672169328,-0.2853130563162267,0.3652813513763249,0.48206126037985086,-0.05659955274313688,-0.5495520937256515,-0.9043911369517446,-0.7675412837415934,-0.6364011894911528,-0.5433248286135495,-0.8840082962997258,0.5963199003599584,0.016538921277970076,-0.8853951129131019,0.8485682504251599,-0.46908001648262143,0.7119168676435947,-0.8118007965385914,0.8858896726742387,-0.7714559054002166,-0.5186514127999544,0.5363855930045247,-0.32863499131053686,-0.602302382234484,-0.524967270437628,0.4430386503227055,0.35595345264300704,0.9529157583601773,-0.8077037446200848,-0.8337042550556362,0.33632515789940953,-0.16577870910987258,-0.7391931377351284,0.5692169009707868,0.44277552887797356,-0.8526324313133955,-0.9719503307715058,0.7402924238704145,-0.5381745249032974,-0.010809950064867735,0.1517120935022831,-0.3870864943601191,-0.5211889296770096,-0.6175945224240422,-0.7410115683451295,-0.28075633803382516,0.483528652228415,-0.7887565051205456,-0.8070774674415588,-0.9565431838855147,0.8675449723377824,0.4695546762086451,-0.5392288859002292,-0.3685117079876363,0.11598304286599159,-0.45963554456830025,-0.6714789527468383,-0.24081453448161483,0.6236836886964738,-0.5949395359493792,0.9273315127938986,0.6810713899321854,0.9445892316289246,-0.388869808986783,0.5464450013823807,0.11404591286554933,0.20887883519753814,-0.5120417294092476,-0.5295511251315475,0.017604562919586897,-0.6935987644828856,0.41809378284960985,0.21106102969497442,0.4296594266779721,0.6309861578047276,-0.2378637883812189,0.6585872899740934,0.8977580615319312,0.16155149461701512,0.8622511238791049,0.20794234424829483,-0.10745035437867045,-0.47015730664134026,0.806598489638418,0.8889018213376403,-0.5703877313062549,-0.42940987600013614,-0.05267103249207139,0.18030230700969696,-0.437666539568454,0.7460879939608276,0.8539016405120492,0.41366003081202507,0.9239001884125173,0.4941497161053121,-0.5120823266915977,-0.8996793222613633,0.16376004228368402,0.37385998107492924,0.09489834401756525,0.9691619635559618,0.16944934288039804,-0.897798718418926,-0.9601067872717977,0.867159896530211,-0.0414209901355207,-0.29924689745530486,-0.7940623783506453,0.7516759405843914,-0.24523976305499673,0.8707919344305992,0.7664445415139198,-0.2697560181841254,0.36628868198022246,0.45351316779851913,0.16292611602693796,-0.4630733858793974,-0.15189515706151724,-0.3475064132362604,0.732677994761616,-0.4923893460072577,-0.7227771789766848,-0.42263422068208456,-0.9795591193251312,-0.5596012957394123,-0.7715863767080009,-0.08261592220515013,0.8409381699748337,-0.627750463783741,-0.7450268161483109,-0.23688886500895023,0.7025968637317419,0.25972685450688004,0.9289151537232101,-0.5904952902346849,0.27461706940084696,-0.31512394081801176,0.8379275994375348,0.8997554644010961,0.46566081140190363,-0.2952501391991973,0.2667841496877372,0.6405079723335803,-0.6838819906115532,-0.9000252322293818,-0.7946200286969543,0.2936437935568392,-0.06886845733970404,0.6169708878733218,0.6509411381557584,-0.33449596213176847,0.42337851179763675,0.029645303264260292,-0.8242281703278422,0.9651446407660842,-0.4517563502304256,0.633091265335679,0.2744442573748529,0.030206807889044285,0.6939071151427925,-0.9164470718242228,-0.9873930076137185,0.49755195109173656,-0.9339006585069001,-0.9987227087840438,0.8711914881132543,0.16576500330120325,0.7254256187006831,0.12478913040831685,0.9608832807280123,0.6350904111750424,-0.6358985607512295,-0.620987880975008,-0.7076109498739243,-0.13301303796470165,-0.19975543394684792,-0.5579356094822288,0.18010218534618616,-0.417004463262856,0.3823488662019372,0.07927382877096534,0.843447670340538,-0.8930142158642411,0.19500018004328012,-0.13833823380991817,0.24769441597163677,0.12886076513677835,0.8631154606118798,-0.9748678235337138,-0.05426641600206494,-0.5822623162530363,-0.032194891944527626,-0.1392793208360672,-0.31857593543827534,0.7645481899380684,-0.8671185462735593,0.28113292856141925,-0.18445337610319257,-0.43993448512628675,-0.13542979070916772,-0.9924095068126917,-0.6149416007101536,-0.4160613124258816,0.4261750690639019,-0.23537976806983352,0.6302195987664163,0.47828518506139517,-0.1127008032053709,-0.5783422226086259,0.8820619359612465,-0.8014310081489384,0.33598793717101216,-0.43476524436846375,0.5358436624519527,-0.3615255053155124,-0.9135356266051531,0.726989843416959,-0.9443933791480958,0.7340548834763467,0.7889095712453127,-0.8955213921144605,0.6062101274728775,0.5078403321094811,0.06984514510259032,-0.15303827729076147,0.6215165080502629,0.0071915527805686,0.6011906010098755,-0.30067843943834305,0.7549808332696557,-0.5319688692688942,-0.656602920498699,-0.6752669825218618,-0.5523730232380331,0.25067673437297344,-0.25388387590646744,-0.45112592400982976,-0.5335024604573846,-0.5197000401094556,0.6319832121953368,-0.3398582707159221,-0.4721237104386091,0.8576130424626172,0.7210629638284445,0.34987365966662765,-0.05110190762206912,-0.10245627583935857,0.07622704049572349,0.13603680161759257,0.4878483498468995,-0.713976944796741,0.41234951792284846,-0.18774454155936837,0.8364697429351509,-0.28984051709994674,0.720331053249538,-0.6133500714786351,0.07174878288060427,-0.6710805399343371,-0.7906125783920288,-0.5002273856662214,0.7677255920134485,-0.7746947198174894,-0.5511295786127448,-0.5933263460174203,0.10117566864937544,0.23604389559477568,0.2732010316103697,0.35353793762624264,-0.8574305307120085,0.006901630200445652,0.45619855308905244,-0.20164636988192797,-0.7286617620848119,-0.25362559128552675,-0.8744695307686925,-0.24074916401878,-0.7654102379456162,-0.46447042329236865,-0.3074143575504422,0.3292765812948346,-0.22840189607813954,0.09380600368604064,0.8115032096393406,0.7744313972070813,-0.08930986188352108,0.662041150033474,0.12325093382969499,0.3733937400393188,0.2753691510297358,0.9558076448738575,-0.4290641029365361,-0.6303887749090791,0.4765221462585032,0.5343727651052177,-0.3441789164207876,0.6544624459929764,0.3683977243490517,-0.08726383745670319,-0.09833909850567579,-0.46854118490591645,0.8288140608929098,-0.6040012002922595,0.369570123963058,-0.39977948600426316,-0.45136134093627334,-0.8628675900399685,-0.18271275609731674,0.529786225873977,0.3417403344064951,-0.5935779260471463,0.29018640518188477,0.643493642564863,-0.5186595399864018,0.43099273927509785,-0.4247490605339408,0.36956173460930586,0.9341213391162455,0.34341145353391767,0.8617460550740361,0.4977322528138757,0.4227114054374397,-0.4212631108239293,-0.9793414771556854,0.949708086438477,0.7785322740674019,0.7808580733835697,-0.25702870870009065,-0.7259170268662274,0.9987658229656518,-0.9162071673199534,-0.3731520976871252,0.901579465251416,-0.7695478703826666,-0.7299256273545325,-0.820473849773407,0.8327300841920078,0.5004871827550232,-0.19070384837687016,0.6258022682741284,-0.6799555467441678,-0.21555305691435933,0.7191084078513086,-0.6554083088412881,-0.2790647423826158,0.09223338915035129,0.08893729094415903,0.1977360867895186,-0.326379029545933,0.5193659430369735,0.4681373927742243,-0.7806371827609837,0.029709828551858664,0.3162097670137882,0.834708474110812,0.2679097345098853,0.3027865099720657,0.01218596613034606,-0.30175659339874983,-0.6521447054110467,-0.6981193572282791,-0.7964600548148155,-0.4554097163490951,-0.7043375400826335,0.7005712743848562,0.9671323313377798,0.6625501099042594,0.5241465419530869,-0.32830111775547266,-0.3483840744011104,-0.26236995216459036,-0.5563889821060002,-0.684787770267576,0.35113952215760946,0.46716928528621793,0.1502235857769847,-0.18122257431969047,0.27712427638471127,-0.40900860354304314,-0.5526653188280761,-0.025403146166354418,-0.8608775674365461,-0.7641913457773626,-0.04736202722415328,-0.694782979786396,-0.2847280874848366,-0.06853530835360289,0.23203720897436142,0.8103451980277896,-0.6844308427534997,-0.05568109964951873,0.6914802538231015,0.03741804091259837,-0.705966760404408,0.3818011675029993,-0.1734411809593439,-0.30168913677334785,-0.6197591261006892,-0.22883236408233643,-0.8110828045755625,-0.21527300821617246,-0.7772107482887805,0.10469041438773274,0.9262385033071041,-0.27535194158554077,0.7293463507667184,0.777401874307543,-0.2949405792169273,0.9887302299030125,-0.05091129103675485,-0.36779302824288607,0.33262286987155676,0.8674054495058954,0.4581662779673934,-0.859565460588783,0.6053630667738616,-0.09276178386062384,-0.18752325512468815,-0.7234664312563837,-0.4307037084363401,-0.3398246872238815,0.6588212829083204,0.7965418291278183,0.7435763496905565,-0.2288022111169994,-0.4023491865955293,-0.6217868258245289,-0.2746109957806766,-0.7704507210291922,0.5969486720860004,-0.25444159004837275,0.39083764888346195,-0.047078893054276705,-0.13028356712311506,0.9109920021146536,0.8217914993874729,0.4037878680974245,0.558238503523171,-0.7244220995344222,0.5559862465597689,-0.1870125331915915,-0.7264843126758933,-0.2873797412030399,-0.3740115691907704,-0.195083137601614,0.8690332877449691,-0.9081679997034371,0.44521709671244025,0.12980628618970513,-0.05661368649452925,0.9513540854677558,0.359297510702163,0.7420257045887411,0.67046485748142,-0.7614699504338205,0.5626561832614243,-0.9778727255761623,0.2405493571422994,-0.7191423210315406,-0.10195151902735233,-0.7386655458249152,0.9786025201901793,-0.47059158189222217,0.6522918404079974,-0.3825519420206547,0.9682894819416106,-0.18192675057798624,-0.2246175897307694,-0.9154891562648118,-0.8993280977010727,-0.40833293786272407,-0.4327838239260018,-0.5966265024617314,-0.6617429559119046,-0.367542642634362,0.4283602894283831,-0.34798919362947345,0.11987530486658216,-0.5221349694766104,0.5435489555820823,0.7589565431699157,0.3162551955319941,0.3530058292672038,-0.3008437720127404,0.47434535156935453,-0.5836339755915105,0.09737047925591469,-0.36568241380155087,-0.3564985115081072,-0.3465178143233061,0.8155183112248778,-0.30843854369595647,-0.06507981522008777,0.3576363194733858,0.548603383358568,-0.45216122828423977,0.7027144343592227,0.8639409258030355,0.9056035201065242,-0.9038614076562226,0.4374000388197601,0.23718615155667067,0.31513272365555167,-0.05702541256323457,0.5823115264065564,0.9454990569502115,0.8582388670183718,0.08218726934865117,-0.21310728695243597,0.026531954295933247,0.006810296792536974,0.5964194941334426,0.46922452049329877,-0.3463975111953914,-0.026133375708013773,0.5884126606397331,0.498786726500839,0.41230479488149285,-0.7347035622224212,-0.7756329318508506,0.5447075637057424,0.9243768998421729,-0.48046086449176073,0.41190628334879875,-0.3311797585338354,0.8721470260061324,-0.30713720386847854,-0.7874013558030128,0.982044231146574,0.7613452128134668,0.10818767128512263,-0.4312052042223513,-0.028307513799518347,0.7522659851238132,0.5167984860017896,0.7886235387995839,-0.02604928147047758,0.4737767605111003,0.9919944843277335,0.7562029222026467,0.6159242922440171,0.532450023572892,0.8319589518941939,0.0718494625762105,0.4402175643481314,-0.14749550633132458,0.9852150538936257,-0.5503353020176291,0.011699044145643711,-0.3549027945846319,-0.20181946642696857,0.062392815947532654,-0.2640665299259126,-0.2901771469041705,-0.7164114220067859,0.13831951981410384,0.3807619074359536,-0.8745126794092357,-0.1557238856330514,-0.3327428847551346,-0.11400565505027771,0.5061197560280561,-0.5994078475050628,-0.7229797709733248,-0.8529689549468458,0.9715492073446512,-0.3190346318297088,0.42824320681393147,-0.8200963516719639,-0.6736604045145214,-0.7439785576425493,-0.3592225653119385,-0.025806482415646315,-0.5609349254518747,-0.045141223818063736,0.45642437506467104,0.6411343896761537,0.24306900100782514,-0.7129402705468237,-0.03565488988533616,-0.317665692884475,-0.10314396815374494,-0.06676398077979684,-0.4802294634282589,-0.7226302362978458,0.43352555064484477,-0.6870386945083737,-0.47666191728785634,-0.6258938289247453,-0.1879226383753121,-0.6164828641340137,-0.17750546243041754,0.43851298885419965,-0.5211654575541615,-0.7822816078551114,0.9214644497260451,-0.48817366594448686,-0.846131163649261,0.6045521521009505,-0.9864250114187598,0.1940108542330563,0.3558402182534337,0.27277674665674567,0.3784579010680318,-0.17208017967641354,-0.27723303297534585,-0.39353113481774926,0.704418275039643,-0.99330023676157,0.5698413266800344,0.6379013182595372,-0.704526977147907,-0.8073673225007951,0.4230880942195654,0.934358824044466,0.45772983599454165,-0.1315085398964584,-0.5680515631102026,0.6286014714278281,-0.7748121437616646,0.8717817021533847,-0.8117199083790183,0.8919474137946963,0.6848971238359809,0.4125064820982516,-0.14913757098838687,0.6591755617409945,0.4429021538235247,0.6564390901476145,0.15525967301800847,0.2635068981908262,0.6772475107572973,-0.5861241691745818,-0.8887554476968944,0.8792325002141297,0.24095475301146507,0.8792082569561899,0.40478522377088666,0.03724711015820503,-0.6858418807387352,0.266397004481405,-0.7361151911318302,0.6448652651160955,-0.9689626642502844,-0.42768436297774315,0.9807907389476895,0.6639281795360148,-0.4281545737758279,0.2143287668004632,0.8692963542416692,-0.2092717494815588,0.19466195302084088,0.1667284583672881,0.8559791021980345,0.7288916753605008,-0.10215059854090214,-0.9745469517074525,-0.7589583741500974,0.7470272528007627,-0.2550081550143659,0.5569263868965209,-0.5727492226287723,-0.7242646091617644,-0.5731224431656301,0.13639608724042773,-0.11355435848236084,0.04318546690046787,-0.199873351957649,-0.07200395967811346,-0.6079046758823097,-0.36084168078377843,-0.1028622449375689,-0.8249630951322615,0.43358012521639466,0.08727945340797305,-0.29206459084525704,0.9569399082101882,-0.4640671508386731,-0.6658180872909725,-0.7831197432242334,0.1607933221384883,0.309600327629596,-0.7566737160086632,-0.6164521910250187,-0.818557855207473,-0.1930231424048543,0.6536976229399443,0.06032094219699502,0.6607045140117407,0.9096792885102332,-0.4601596570573747,-0.6242905613034964,0.19577117543667555,-0.12902206415310502,0.7095108139328659,-0.9195156702771783,-0.8225966426543891,-0.12448549084365368,-0.1614574259147048,0.5170371979475021,0.9572377502918243,-0.9462778428569436,-0.485079993493855,-0.7587493350729346,-0.3666745857335627,-0.6781161869876087,0.5834317826665938,-0.11387064261361957,-0.8281343556009233,0.3632019297219813,-0.6813078876584768,0.9471269086934626,0.8086999645456672,0.8850939716212451,0.1352731608785689,0.6315629240125418,-0.4769336492754519,0.914791482500732,-0.40978872030973434,-0.1852319915778935,0.38507079472765326,0.49516061739996076,0.08982831239700317,-0.3199651683680713,-0.9751684013754129,-0.6004275665618479,0.43319088919088244,0.3443275191821158,0.5829569827765226,-0.6272492711432278,-0.022707385942339897,-0.8555518118664622,0.682008202187717,-0.6651053321547806,0.9092313684523106,0.6902614734135568,0.7306851483881474,0.8199329455383122,0.14859693124890327,-0.05362832406535745,-0.2374728242866695,0.16737333545461297,-0.8859830647706985,-0.6065746378153563,0.5757281333208084,-0.07282820669934154,0.7822385090403259,0.2032356048002839,0.4050013520754874,-0.45977792888879776,0.45370747055858374,0.5492448559962213,0.40301633905619383,0.04672004049643874,-0.855198020581156,-0.06982283107936382,-0.2773516592569649,-0.2087768097408116,0.7065128139220178,0.5950328204780817,0.6790593853220344,-0.35839812783524394,-0.6384583208709955,0.16407457366585732,-0.9103389005176723,-0.3754349607042968,0.48976533161476254,-0.14539803005754948,0.24322388926520944,-0.7087066499516368,0.513714209664613,-0.8828823324292898,0.0826980285346508,-0.5847419947385788,-0.28707284294068813,-0.7070577689446509,0.39580670837312937,-0.590619427151978,-0.19376657949760556,0.38692469662055373,-0.5588715570047498,-0.8827478447929025,-0.3670681514777243,0.24829284474253654,-0.43373083090409636,-0.6829787292517722,0.37890943605452776,-0.8565660752356052,0.6986722177825868,-0.704917429946363,0.4295548154041171,-0.7169763529673219,-0.8788613099604845,0.0809268644079566,0.7060846802778542,-0.32327886391431093,0.6933395662344992,-0.1523709762841463,-0.8906010901555419,-0.1347883939743042,-0.042115114629268646,-0.5818617665208876,0.4267768911086023,-0.6471095341257751,-0.6887745261192322,-0.7374276076443493,0.13573557790368795,-0.0030255718156695366,-0.8143711662851274,0.022291250061243773,0.4734272938221693,0.34629908110946417,0.10573409218341112,0.6315092374570668,0.5865651732310653,-0.6597937033511698,-0.4105051071383059,-0.6018906175158918,0.6805687989108264,0.05652220733463764,-0.46075927559286356,-0.033740499056875706,0.4836072763428092,0.5602273913100362,-0.448594250716269,-0.48254389548674226,-0.15910565853118896,0.49258119240403175,-0.6766767133958638,-0.1958424667827785,0.9918562960810959,-0.2887284066528082,0.42483876924961805,-0.7808256475254893,0.5484657832421362,0.5237842248752713,0.6096418909728527,0.40286544524133205,0.6273148781619966,0.2837734897620976,0.853728202637285,-0.8983370680361986,0.7144842511042953,-0.1274491036310792,0.22955632070079446,-0.1674371068365872,0.2122922670096159,-0.62013272754848,-0.4496191581711173,-0.4355972153134644,-0.2894761636853218,-0.6436767419800162,-0.5890441881492734,0.732621809002012,0.3514593536965549,0.6037109531462193,0.7088025542907417,0.29473633132874966,0.2406769935041666,-0.494214897044003,0.5776887559331954,-0.5474684638902545,-0.7841133936308324,-0.49533842457458377,-0.6474820515140891,-0.3531109355390072,0.29557523503899574,-0.35212245723232627,-0.07619021739810705,0.8671282362192869,-0.49619565112516284,-0.028114369604736567,0.7597329821437597,-0.32416752865538,0.11037583835422993,0.9098617886193097,-0.13683537440374494,-0.7780616153031588,-0.8503776961006224,0.6496448689140379,-0.20405945973470807,0.8321311101317406,0.5055673043243587,0.9878844385966659,0.4517874279990792,-0.03398801293224096,0.04102728283032775,-0.3346507134847343,-0.7645167727023363,-0.8817583345808089,-0.38091282499954104,0.9861621460877359,0.9567049317993224,-0.6755475257523358,-0.8414500681683421,-0.18446700787171721,0.22879283362999558,0.3545078462921083,0.5283255781978369,-0.042990738060325384,0.4170644576661289,0.6153889326378703,0.011149633210152388,0.24252815498039126,0.73516636621207,-0.2685886803083122,0.8475320022553205,-0.7501873378641903,0.670612258836627,-0.4368121139705181,-0.8880929886363447,-0.9617230789735913,0.5284507051110268,-0.5530114974826574,0.800224207341671,0.9026171867735684,0.8535603731870651,0.869736397638917,0.26148246927186847,0.7323770634829998,0.0019782562740147114,-0.4416788932867348,0.3518903865478933,0.33644420746713877,-0.6474922630004585,-0.23351697670295835,0.49945786595344543,-0.4970633187331259,0.10918977158144116,-0.4783101137727499,0.7747825323604047,-0.09904921567067504,0.7347780778072774,0.19883653800934553,0.1955030094832182,0.9915001117624342,-0.8999781212769449,-0.5881727472878993,0.27410002518445253,-0.43917918112128973,-0.9497309792786837,0.8709394801408052,0.26885064225643873,0.7110578282736242,-0.5418056887574494,-0.6471427986398339,0.323810659814626,-0.04851922346279025,-0.4207816459238529,-0.8513368698768318,-0.29656353453174233,0.01036410965025425,-0.17437059665098786,-0.6648717760108411,-0.5935649634338915,-0.7283792300149798,-0.1846128753386438,-0.2534231743775308,0.5241577629931271,-0.34862075792625546,-0.2791255358606577,0.2714643897488713,0.05832054000347853,-0.323098958004266,-0.28868412086740136,0.009011322166770697,0.31494321720674634,0.9822816736996174,-0.5987084209918976,0.130964994430542,0.2113631130196154,0.5317608248442411,0.7164706294424832,0.03726248163729906,-0.4992832066491246,0.14310518186539412,0.35617856588214636,-0.8335563694126904,0.5499198702163994,-0.750844185706228,-0.7860967880114913,0.5884413421154022,-0.8300337987020612,-0.4153059208765626,-0.41851005470380187,0.4684527083300054,0.4283280489034951,-0.09371311357244849,-0.15313237579539418,0.31942351907491684,-0.6311875199899077,0.6108333095908165,0.8171264017000794,0.4266567244194448,0.9388506012037396,0.6130702747032046,-0.09488111548125744,0.23295717500150204,-0.5560550484806299,-0.40570125402882695,0.17290584882721305,-0.7624202333390713,-0.3789417762309313,0.2530670836567879,-0.4678732338361442,0.39321926003322005,0.6688165166415274,0.6861942741088569,-0.4083139793947339,-0.8512979224324226,-0.4516669297590852,-0.6739907748997211,0.5271565397270024,-0.198582976590842,0.17494563711807132,-0.9495960562489927,-0.8233340247534215,0.07054014410823584,0.35865170462056994,-0.8307226505130529,-0.36448199627920985,0.27262717857956886,-0.9296863074414432,-0.3127893591299653,-0.6577981915324926,0.19760364713147283,-0.09560840763151646,-0.4808380757458508,-0.07679406926035881,-0.6870902036316693,0.17703875061124563,0.5921436087228358,-0.12283980753272772,0.9124011755920947,0.9524613651446998,0.019290895201265812,-0.1595662203617394,0.1478750305250287,0.2623046594671905,0.6568834939971566,0.8094167411327362,-0.3875698451884091,-0.9009247059002519,0.63386234594509,0.24234134750440717,0.19387250626459718,0.5991259287111461,-0.9870900032110512,-0.9889840064570308,-0.9862459506839514,-0.5133588928729296,0.06640772148966789,0.19624784775078297,-0.6792924646288157,0.2522341385483742,0.10857482580468059,0.38123618718236685,0.21973773837089539,0.32320387242361903,-0.8434464009478688,0.3796769315376878,-0.3807424418628216,0.9837748613208532,-0.12692074803635478,0.0065328809432685375,-0.6282184799201787,0.537502414546907,-0.6386875547468662,0.40971133345738053,-0.2516138684004545,0.3747148420661688,0.02169244224205613,0.9803007133305073,0.5315885785967112,0.5266668228432536,0.33734370674937963,-0.05262710805982351,-0.38625915069133043,0.11273356759920716,-0.35669092647731304,-0.7882703244686127,-0.24023293191567063,-0.7873667231760919,0.1054423782043159,-0.07287200540304184,0.2861711960285902,-0.8083155490458012,-0.5800526249222457,-0.11570387054234743,0.07876893505454063,-0.1042028907686472,0.014874354470521212,-0.5035298317670822,-0.786055798176676,-0.015335224568843842,-0.2936162664555013,0.28272858867421746,-0.3530956953763962,0.8784727049060166,0.6133262598887086,0.9845550647005439,0.7151184207759798,-0.15367472870275378,0.7109115510247648,0.7818780238740146,-0.4127570469863713,-0.945265322457999,-0.13826907239854336,0.31439248751848936,-0.09036956867203116,-0.3567438595928252,-0.038764196913689375,-0.3438761495053768,-0.5521554895676672,-0.7623239238746464,-0.34276931546628475,0.7819953011348844,0.43937661312520504,-0.9551996476948261,0.9014039537869394,0.14376125857234,-0.4347442421130836,-0.6153000383637846,0.13898261822760105,0.15686895977705717,-0.23941686283797026,0.40707255946472287,-0.5425930018536747,-0.5662476676516235,-0.27127283439040184,-0.5366592211648822,0.2552913469262421,-0.06433750037103891,-0.6731149260886014,0.803651416208595,-0.11185489501804113,-0.6045846999622881,0.1866748882457614,0.03750617755576968,-0.24013751884922385,-0.8730523749254644,-0.219975674059242,-0.2019685385748744,-0.08145631058141589,0.06302592251449823,-0.10681125801056623,-0.46519172796979547,-0.9763400764204562,-0.4912334899418056,-0.6876548840664327,0.4231765973381698,0.8810425051487982,0.9328101277351379,-0.3247196339070797,0.6970049636438489,-0.29368767281994224,0.7742808423936367,0.5978482579812407,-0.019321275409311056,0.06251025618985295,-0.15989405941218138,-0.7947637271136045,0.20783909410238266,-0.33751621237024665,0.31267378851771355,0.4662127629853785,0.9085322027094662,-0.6751965926960111,-0.42887454899027944,0.20404888596385717,0.9741161153651774,0.3251114906743169,0.6332273245789111,0.8007084806449711,0.13779029669240117,-0.699704151134938,-0.9858357519842684,-0.1637563845142722,0.3750650333240628,-0.18399054324254394,0.3494518077932298,0.8242681822739542,0.03538358910009265,-0.9270724859088659,-0.3498758873902261,-0.5474323430098593,0.19132713926956058,-0.273419925943017,-0.824654923286289,0.48034499306231737,-0.9868188253603876,0.7111234413459897,0.5793763026595116,-0.4240761981345713,-0.04029509797692299,0.22530111344531178,0.13049591472372413,-0.33071432588621974,-0.14443277986720204,-0.3608770649880171,-0.9735337537713349,-0.6647160756401718,-0.6758571844547987,0.627218272536993,0.6858136067166924,-0.47509587928652763,-0.7402534154243767,0.47373540746048093,-0.001194301526993513,-0.5479209055192769,0.4714370989240706,-0.054038144182413816,-0.8041648105718195,-0.6291117751970887,0.4789487514644861,-0.1616589855402708,0.3343616942875087,-0.6844670488499105,-0.6014336673542857,-0.8210085136815906,0.3908863407559693,-0.5537888561375439,0.5768572073429823,0.6935503198765218,-0.6689132330939174,-0.8787595271132886,0.48743533808737993,-0.5230601029470563,0.6245464850217104,-0.5858799465931952,-0.5173949431627989,0.4700589212588966,0.019942838232964277,0.7504075434990227,-0.19329779129475355,-0.4421189143322408,0.9844315275549889,0.933175906073302,-0.648794224485755,-0.15497372299432755,-0.9906551535241306,0.696239008102566,-0.6750439442694187,0.3865683972835541,-0.19451898289844394,-0.020990953780710697,0.07219948945567012,-0.35017976304516196,-0.5469086500816047,-0.15853739250451326,0.7001495528966188,-0.2114497972652316,0.41493744868785143,0.9447046625427902,0.9917812957428396,-0.4343861569650471,-0.899327983148396,0.3265187577344477,0.06340903183445334,-0.5519522284157574,0.670980189461261,-0.3023603465408087,0.5701880031265318,-0.5322586861439049,-0.8409365131519735,0.8052606987766922,0.09837706061080098,-0.08199173584580421,-0.7623064867220819,-0.923684760928154,-0.23497499665245414,-0.9951149243861437,-0.04695410095155239,0.5414514699950814,0.4342867899686098,-0.12041920470073819,-0.4228420052677393,0.38510244293138385,-0.256779451854527,-0.4153214944526553,-0.1929042637348175,-0.061443827114999294,-0.5370213217101991,0.8105566157028079,0.8320062230341136,-0.47910250490531325,0.7843321464024484,-0.8251980352215469,0.21805532881990075,-0.07455216627568007,-0.2876471420750022,0.6934065711684525,0.10635421751067042,0.3643499445170164,0.10357002960518003,-0.5210324600338936,-0.08679758431389928,-0.958821632899344,-0.0899241897277534,0.43393360869958997,0.3458924605511129,0.8574257399886847,0.7171693108975887,-0.7986990390345454,0.28742750780656934,-0.7071836176328361,-0.9458873616531491,0.6460148077458143,-0.5832195417024195,-0.9017740092240274,0.5125494305975735,0.188330153003335,-0.9356980952434242,-0.2147901663556695,-0.4049584651365876,0.6591260847635567,-0.5775098074227571,-0.18889703834429383,0.6541659291833639,-0.33591381646692753,-0.015101880300790071,0.7560487873852253,-0.8448578766547143,0.051293181255459785,-0.08087130216881633,0.12127133831381798,0.9421323463320732,0.05857853917405009,-0.06353315897285938,0.7082901708781719,-0.41369386995211244,0.7245837463997304,0.8059256342239678,0.7790340348146856,-0.21806349186226726,0.46159574249759316,0.7866276074200869,0.0005279770120978355,-0.19868279248476028,0.7674365434795618,-0.3912431402131915,-0.06077997898682952,-0.13693207455798984,-0.24081791378557682,0.18034816021099687,-0.8795608528889716,-0.05270355334505439,-0.03213614132255316,0.8898036745376885,-0.8005722258239985,-0.8118078275583684,0.629083720035851,-0.14978321455419064,-0.3502085041254759,0.7369230925105512,0.4589535128325224,-0.5497843860648572,0.022558129392564297,0.09208672353997827,-0.20442619314417243,0.7659267941489816,0.7649969034828246,-0.7496672533452511,0.19522935105487704,-0.6356268795207143,0.5113592687994242,-0.3242233037017286,0.47996945679187775,-0.7230142587795854,-0.3426821958273649,0.43788744462653995,0.5247747469693422,-0.7969257961958647,-0.22992165107280016,-0.42468575946986675,-0.4170673373155296,0.9152211905457079,-0.9265935570001602,0.35138696851208806,0.7417837651446462,-0.1288278615102172,-0.24441116442903876,-0.5642051915638149,-0.4866915182210505,-0.04796805465593934,0.09264162834733725,-0.9135327483527362,0.817682116292417,0.46303387684747577,0.6224020775407553,0.4437408512458205,0.09888303093612194,0.8394489558413625,-0.9069795683026314,0.0029850881546735764,-0.41842268500477076,0.9008248457685113,-0.5230658198706806,-0.7875107298605144,-0.06791955046355724,-0.4838970429264009,0.1641092081554234,-0.34005106473341584,-0.9712722785770893,0.6244448758661747,0.5669209696352482,-0.799672678578645,0.0009143291972577572,0.5015841713175178,0.7654421869665384,-0.6355845029465854,-0.7908030273392797,-0.4122523716650903,0.3311760756187141,0.6107978960499167,0.8088646759279072,-0.30207864521071315,0.6623418005183339,-0.9201604570262134,-0.21574606793001294,0.511586632579565,0.44351080106571317,0.3948655668646097,-0.5659865038469434,0.5833237199112773,0.7364504039287567,-0.0575063144788146,-0.601191352121532,-0.3848013854585588,-0.09583184821531177,0.7444586865603924,0.7584241461008787,0.7307984824292362,-0.8632185566239059,0.662483069114387,-0.5198720670305192,0.4282109597697854,0.8396111819893122,-0.44882064452394843,-0.12698364723473787,-0.3461568602360785,-0.3734437823295593,-0.34933727979660034,0.2887396034784615,-0.35429433500394225,-0.6051608989946544,0.14632465783506632,0.2655508150346577,0.5246697571128607,0.7284298758022487,-0.9920160071924329,0.7827398683875799,-0.15211817529052496,0.8978959345258772,0.6214618356898427,-0.9266837886534631,0.5505204778164625,0.6825262354686856,0.8108188472688198,-0.47412039525806904,0.08933708444237709,-0.7022125734947622,0.5275543523021042,-0.9303903416730464,-0.9984266208484769,-0.5680265501141548,0.5101258712820709,0.8846402387134731,-0.9839374083094299,-0.34454368939623237,0.9470922448672354,0.7971973693929613,0.6054736468940973,0.35634177876636386,-0.9627817012369633,0.34247078374028206,-0.5026565701700747,0.4177442127838731,-0.2364281127229333,-0.3555757198482752,0.17211330123245716,0.5922525329515338,-0.9139204011298716,0.4969258331693709,-0.996685360558331,0.562756875064224,-0.607238445430994,0.7716632839292288,0.6492250659503043,0.341360071208328,0.504813093226403,0.7877144706435502,0.4906928101554513,0.9846864007413387,-0.2186295511201024,-0.985046009067446,-0.6468862807378173,0.5762873068451881,-0.28405996272340417,0.6929768756963313,0.7674598558805883,-0.35147341247648,0.6274437201209366,0.12708546919748187,0.09247493371367455,-0.02987065026536584,0.8224849887192249,-0.781727893743664,0.9521892685443163,-0.12221732502803206,-0.7617092919535935,-0.06018917914479971,-0.43905050540342927,-0.964000154286623,0.2541309501975775,0.4980519590899348,0.5048566265031695,0.2760031814686954,0.8325625141151249,0.18092005187645555,-0.5579699380323291,-0.8746034009382129,0.1726066879928112,0.6517149955034256,-0.9678159267641604,0.20900445943698287,0.8510870202444494,-0.7960116588510573,0.7205068105831742,0.4044919447042048,-0.2443256676197052,0.2805051668547094,0.7153920046985149,-0.5445018848404288,-0.09045009640976787,-0.07800337299704552,0.7956161890178919,-0.5394496461376548,-0.9509445587173104,0.08888086024671793,0.05457758577540517,-0.39029316790401936,-0.5754789719358087,0.3061682074330747,-0.22676058113574982,-0.2888617878779769,-0.04736164025962353,0.48719489574432373,-0.533026066608727,-0.9116303278133273,0.7270510676316917,0.39135909639298916,0.8246453138999641,0.8486919505521655,0.20426305755972862,0.7229646015912294,-0.32219434389844537,-0.10593527741730213,0.7196976579725742,0.7008206332102418,0.3257584059610963,-0.6147812032140791,0.4052204838953912,0.22536786971613765,-0.19243370927870274,0.829767488874495,0.5382871231995523,-0.8132878271862864,0.292286335490644,0.13892331020906568,-0.2364475284703076,-0.3602413716726005,0.15955347614362836,0.935935836751014,-0.9713225997984409,-0.02732171630486846,0.2077150959521532,0.0867580478079617,-0.2671766630373895,-0.5746044721454382,-0.5971008846536279,0.9319396140053868,0.7953869169577956,0.36836428567767143,-0.3182278531603515,-0.6238214303739369,0.835562604945153,0.7710801577195525,-0.26506365556269884,0.8767466084100306,-0.7488164831884205,0.11469357227906585,-0.18251928826794028,0.6485932716168463,0.6127301547676325,-0.6898533557541668,-0.34116613445803523,0.3799484856426716,0.4270520815625787,0.8859704812057316,-0.22263764031231403,0.21034378092736006,0.5975046157836914,-0.48616267880424857,0.217579600866884,-0.11739213718101382,0.3067509401589632,0.4654053943231702,0.8672678018920124,0.17784404335543513,-0.35275848815217614,-0.9206364070996642,-0.48793419636785984,0.2505662110634148,0.0783347045071423,0.8827174943871796,-0.8369036894291639,-0.16777839418500662,-0.10220871167257428,0.5414014714770019,0.5513778612948954,0.12113227089866996,-0.4386144680902362,-0.27754515688866377,0.08279909007251263,0.9499312471598387,-0.10347292618826032,-0.6792699145153165,-0.573425027076155,-0.22424519201740623,0.47480588173493743,-0.28615738870576024,0.33510375022888184,0.25573974708095193,0.7638563038781285,-0.9201409677043557,0.7775030201300979,-0.1132635222747922,-0.004767365753650665,-0.7629903620108962,0.4718388128094375,0.2696040845476091,0.40704095968976617,-0.01952226832509041,-0.43560203816741705,-0.8965620291419327,0.3408433133736253,0.9726075567305088,-0.5260516912676394,-0.7492002961225808,-0.6844409629702568,-0.06990571273490787,-0.09931635018438101,-0.22166271647438407,-0.8483597231097519,0.06751268310472369,-0.6795800477266312,0.40723114740103483,-0.05071662459522486,0.8362861196510494,-0.18303406005725265,-0.9367508464492857,-0.812350916210562,0.5537884375080466,0.6871359241195023,0.5191769185476005,-0.3969569285400212,-0.1365733309648931,-0.3067248174920678,-0.7374615026637912,0.2987385503947735,0.9261055337265134,0.8372888267040253,-0.05266607040539384,0.5748639754019678,-0.17039803368970752,0.19405511301010847,-0.2931572222150862,-0.3473176979459822,-0.5491457702592015,0.9203535071574152,-0.8952123606577516,0.3735908707603812,0.3196468516252935,-0.317076968960464,0.8402532180771232,-0.8930418486706913,0.2520493548363447,0.21437368961051106,0.16133311809971929,0.9826809386722744,0.7893919027410448,-0.3610785584896803,-0.10449392022565007,0.9407999152317643,-0.19261486688628793,0.333421987015754,0.5003533656708896,0.9861811846494675,-0.5670889103785157,0.05398742435500026,-0.9145211260765791,-0.9377302024513483,0.6919573838822544,0.43477643840014935,0.3866227646358311,0.010648404713720083,-0.08965633623301983,0.27641418389976025,0.5173643277958035,0.36491505708545446,-0.12617858638986945,0.4279844518750906,-0.4691843497566879,0.9844610099680722,-0.570502276532352,0.08056294359266758,0.7928017443045974,-0.41168197337538004,-0.9074305235408247,-0.4009873364120722,0.24063595430925488,0.39047141233459115,0.7216952540911734,0.7228394746780396,0.8673933106474578,0.7304133446887136,-0.1570366695523262,-0.18464605463668704,-0.30991425085812807,0.05384642072021961,-0.9757160083390772,-0.4612005562521517,0.9718190296553075,-0.9735578233376145,0.22172343730926514,-0.9873004225082695,0.4219779772683978,0.7401217091828585,0.22716694651171565,0.7659799358807504,0.543817927595228,-0.21877033729106188,-0.8008248885162175,0.02915927767753601,0.62057448271662,0.018669003155082464,0.6815869198180735,-0.581600752659142,-0.0803842549212277,0.047068703919649124,-0.048800379037857056,-0.349759912583977,0.23331853048875928,0.7089314549230039,0.7474202821031213,-0.2482916391454637,0.23366897320374846,0.6797107006423175,0.5431640772148967,-0.20049944380298257,0.21894289646297693,-0.3364008842036128,0.9728656676597893,-0.29314308939501643,0.8436713232658803,0.002904160413891077,0.21229485934600234,-0.5464600473642349,-0.5398188233375549,-0.13818193459883332,-0.0030855140648782253,0.5046600955538452,-0.8517685672268271,0.6851496254093945,-0.5667455452494323,-0.4316088636405766,0.29522588243708014,-0.454162432346493,0.24933673115447164,0.8109163395129144,-0.1927447379566729,-0.9375632405281067,-0.8473132369108498,0.11882000975310802,-0.05443331506103277,0.34247087268158793,0.3817336312495172,0.22549481503665447,-0.5442617340013385,-0.15269966050982475,0.4103966564871371,0.1290910728275776,-0.6326101552695036,-0.9164753942750394,-0.4272003695368767,0.23196179559454322,-0.7068540579639375,0.7553067095577717,-0.42230501445010304,0.24697855859994888,-0.9766065394505858,-0.2094308757223189,-0.923004231415689,-0.6019550543278456,-0.8683154582977295,0.5854334370233119,0.5991159523837268,0.8432008042000234,-0.15999116096645594,-0.34433023165911436,-0.60825279308483,0.34366062050685287,-0.6888601435348392,0.23542806366458535,0.4987480891868472,0.8310037232004106,-0.4042105907574296,-0.14787196507677436,-0.8812567302957177,0.15749467397108674,-0.23495663655921817,-0.5617985827848315,0.23309100698679686,-0.7512485841289163,-0.7846911372616887,0.946026005782187,0.15065336599946022,-0.7708446145989001,0.6275380221195519,0.18929297849535942,0.696409123018384,-0.49882318545132875,0.21089466381818056,-0.7948767407797277,0.7932702205143869,0.08098239684477448,0.6196249346248806,-0.7676531258039176,0.4664434208534658,-0.8001508703455329,0.0606705448590219,0.7911316743120551,0.10527630103752017,-0.15569611079990864,0.47809120966121554,0.7550252531655133,0.1092002484947443,-0.20441258465871215,0.7260095132514834,0.6329065812751651,0.0885159196332097,-0.40992021933197975,0.26402786560356617,0.7000863859429955,0.6687902887351811,-0.08390434412285686,0.7227801983244717,0.197205922100693,0.2880714316852391,0.5825803149491549,0.981841029599309,-0.5918814172036946,-0.755637242924422,-0.3139237193390727,-0.6943018515594304,0.9567078552208841,-0.09598950855433941,-0.40985027235001326,0.20120080560445786,0.09143257606774569,0.2228319146670401,-0.8939240295439959,-0.9456117055378854,-0.780308801215142,-0.4201189847663045,0.9768499252386391,0.8228178364224732,-0.5535808308050036,0.2846762454137206,0.009900647215545177,-0.148221829906106,0.2236893312074244,-0.9204899067990482,0.3649655352346599,0.8675348511897027,-0.27623496018350124,0.7232679887674749,-0.39724603248760104,0.23382828384637833,0.27116603311151266,-0.1158062550239265,0.4653557110577822,-0.55070068128407,-0.5585320042446256,0.501193888951093,-0.624972085468471,-0.27631797501817346,-0.5338245485909283,-0.07823099056258798,-0.007584497332572937,-0.3864082586951554,-0.38322110706940293,-0.15074323629960418,0.6817305013537407,-0.36361618619412184,-0.1943936701864004,-0.24082633759826422,-0.9791658911854029,-0.22933040326461196,-0.08981608832255006,-0.9015386300161481,-0.5745531558059156,-0.37595784291625023,0.8774019340053201,0.04471737891435623,-0.24122204771265388,-0.951761111151427,0.8814551513642073,0.9989165980368853,-0.38788781175389886,0.6111730984412134,-0.6393970120698214,-0.1977766454219818,0.6486658742651343,-0.7629579813219607,0.5837301928550005,0.7002414306625724,0.25612773140892386,-0.1559333917684853,0.6632249252870679,0.8943305262364447,-0.8964412789791822,0.8413117150776088,-0.4773299121297896,0.9655223204754293,-0.3558112536557019,-0.46963810874149203,-0.6257970747537911,-0.5918862582184374,0.8959551579318941,0.6315789110958576,-0.9445516793057323,-0.31659960886463523,-0.36602682201191783,0.3755242107436061,0.7325887219049037,-0.9678954603150487,-0.5827176482416689,-0.9767488692887127,0.8904161192476749,0.33362448681145906,0.21159978536888957,0.7783356048166752,0.01969727361574769,-0.3457603296265006,0.06451038829982281,0.2105648387223482,-0.3266124427318573,-0.5417085424996912,-0.6375940595753491,-0.684256779961288,0.8688705926761031,-0.5492214276455343,0.5862565184943378,0.12076453818008304,-0.21029516588896513,-0.6950671602971852,0.4380571390502155,0.7600076775997877,0.982536350376904,0.7097936985082924,-0.6064632246270776,0.27724785218015313,-0.1296585015952587,0.3822502261027694,0.8931914735585451,0.7868733685463667,-0.7574896314181387,-0.20749479439109564,0.7779384101741016,-0.20649677328765392,-0.6926717953756452,-0.9528940818272531,0.7155126305297017,0.006506552919745445,0.7385842748917639,0.012498857919126749,0.1662654890678823,-0.01694329595193267,0.8966533751226962,0.527187209110707,0.1343074208125472,0.052727420814335346,-0.630290410015732,0.8238189909607172,0.7768383077345788,-0.179560212418437,-0.6790534937754273,0.352764786221087,-0.02498043281957507,0.40525964414700866,-0.33443395560607314,-0.12161497119814157,-0.8018872640095651,0.4499221355654299,0.22938186302781105,-0.2771608801558614,0.7635115645825863,0.8568506273441017,-0.040632538963109255,-0.03961253585293889,-0.1159581090323627,0.357978421729058,-0.2744968901388347,0.15271467249840498,-0.7771981912665069,-0.16509393509477377,-0.13038813462480903,-0.7247768803499639,0.9615862625651062,-0.12176828412339091,-0.2508257394656539,-0.7716808556579053,0.04544099885970354,-0.23164496710523963,0.2247189120389521,-0.127581721637398,-0.1832158537581563,0.19822640996426344,0.8333014231175184,-0.4983368725515902,-0.9271077457815409,-0.0034770830534398556,0.7784829610027373,-0.19625484803691506,0.1476420476101339,0.9303760356269777,-0.3717523692175746,-0.3045554729178548,-0.052451240830123425,-0.3438872452825308,-0.8936523725278676,-0.2198634948581457,0.15376133285462856,-0.7938597076572478,0.48010612139478326,0.7532564261928201,-0.26645820029079914,-0.8911555791273713,-0.8414273508824408,0.6477508428506553,0.9845426669344306,0.2960175792686641,-0.6716770147904754,0.7092820750549436,0.3530297609977424,-0.7447459087707102,0.20683708414435387,-0.7927658203989267,0.2634438746608794,0.23647628771141171,-0.6854600771330297,-0.7963607558049262,-0.30665207747370005,0.2557774558663368,0.7655440839007497,-0.8919427837245166,-0.5492725106887519,-0.5792588167823851,-0.40941028390079737,-0.3285382743924856,0.06560392584651709,0.7890867763198912,-0.10623486060649157,-0.15403379779309034,0.43141731061041355,-0.6988514708355069,-0.7312309890985489,0.7872862503863871,-0.3874789974652231,-0.9699474382214248,0.14710590289905667,-0.3937652804888785,-0.5464276620186865,-0.8790480713360012,-0.4240223215892911,0.010426213964819908,0.5408175829797983,-0.168873175047338,-0.742742252536118,-0.0720648686401546,0.16793173784390092,-0.08595914207398891,0.6416561310179532,-0.6231948211789131,0.41425296012312174,-0.3682401068508625,-0.6258299555629492,-0.5549080590717494,-0.04608254414051771,0.8105340371839702,0.18281530030071735,-0.09822657378390431,0.34906392311677337,0.489889042917639,0.006381831131875515,-0.3781557693146169,0.9476998862810433,-0.3544282028451562,0.3593515423126519,-0.4454451580531895,0.5447523826733232,0.8553936216048896,0.7014039717614651,0.8061630981974304,-0.4914253940805793,0.22419042140245438,-0.9515456105582416,-0.8831616556271911,-0.5231281337328255,0.9472428858280182,-0.9084796397946775,-0.7154579837806523,-0.6519932011142373,0.9910864704288542,-0.8215983901172876,-0.6146133197471499,0.5389904426410794,-0.15116825560107827,0.45800428790971637,-0.39790264470502734,-0.8319279630668461,0.6706386297009885,0.10184109816327691,-0.3519393322058022,0.632124220021069,-0.5093424785882235,0.8968087448738515,-0.01519373944029212,-0.8566084220074117,0.22054513776674867,-0.13975263247266412,0.2911056042648852,0.5777596770785749,0.13162407791242003,-0.039602999575436115,0.43171737203374505,0.9778032000176609,-0.13686067098751664,-0.3074504598043859,-0.33435533847659826,-0.06692306185141206,0.7331588873639703,0.2313490598462522,0.25653211306780577,0.7877815486863256,-0.46146685304120183,0.34943437902256846,0.5325085357762873,-0.016151334159076214,0.17972779320552945,-0.3555914359167218,-0.7308945674449205,0.518600117880851,-0.7879790682345629,-0.4501452101394534,0.5122743090614676,-0.07074813544750214,0.7357050753198564,0.3870289660990238,-0.7812189320102334,-0.9180811224505305,-0.44243628485128284,0.25971636082977057,0.9377332259900868,-0.24387437291443348,-0.06798489484935999,-0.43183465814217925,-0.21855814009904861,-0.023204245138913393,0.17538820579648018,0.774904643651098,0.37976819137111306,0.06383334239944816,-0.8927055443637073,-0.5199547074735165,-0.41511667473241687,0.07235902175307274,0.4504857137799263,-0.8087375471368432,-0.008880978915840387,-0.9578005285002291,0.7566991536878049,0.17696593469008803,0.6704545114189386,-0.18943150993436575,0.8810398918576539,0.221742182970047,0.9087857697159052,0.9447802314534783,-0.5555294794030488,0.8834573309868574,-0.9138909657485783,-0.6589538413099945,0.6657015602104366,0.5764489844441414,-0.12863347865641117,-0.6428663330152631,-0.7599655515514314,-0.6306399186141789,-0.4199969135224819,-0.8947280691936612,-0.04925284441560507,-0.9970068112015724,0.9707793393172324,0.35420469427481294,0.7578471684828401,-0.3505706419236958,-0.12147184973582625,0.5687128049321473,0.5652906293980777,-0.030760116409510374,-0.6073310109786689,0.7579805213026702,0.9135922566056252,-0.1850027428008616,0.8395647616125643,-0.6653808513656259,-0.22119040740653872,-0.7415017527528107,0.24654366727918386,0.775300495326519,0.11513680079951882,0.09452484920620918,0.013919053133577108,0.1500638066790998,-0.7096817684359848,0.6137585914693773,0.3882878222502768,-0.5619647726416588,-0.5145234493538737,-0.534304462838918,-0.8554340559057891,0.481401345692575,0.7625745418481529,0.34290602337569,-0.17230347031727433,-0.7160136387683451,-0.5150796067900956,-0.6355541604571044,0.6086372192949057,0.5985021204687655,-0.5971363969147205,-0.921328182797879,0.25183821795508265,-0.757506838068366,-0.43588647758588195,-0.9245125185698271,0.32477263966575265,0.9702965030446649,-0.46889413380995393,-0.7242217664606869,0.8691519219428301,0.3737383005209267,0.5893501355312765,0.04373918380588293,-0.7145461793988943,0.15285250870510936,0.4264066070318222,0.8741059666499496,-0.6767362086102366,0.8553038360551,-0.4300134163349867,-0.26846327912062407,0.14230406749993563,0.0755937141366303,0.4938720427453518,-0.9313949691131711,0.2880830839276314,-0.4815478837117553,-0.5890476643107831,-0.8114099325612187,0.9382761614397168,0.2916545975022018,-0.1458959225565195,0.2280764072202146,-0.739500688854605,0.9491294864565134,-0.7541353073902428,-0.995087384711951,-0.32240737741813064,-0.6377942506223917,-0.3721337802708149,0.3295641476288438,-0.24883904960006475,0.7704751114360988,0.8572193840518594,0.5772889484651387,-0.4664825387299061,-0.6817296780645847,0.7095565237104893,-0.6118643009103835,0.5684049814008176,-0.6067690546624362,-0.6988824447616935,-0.10957398219034076,-0.1765734562650323,0.06573523441329598,0.7762125697918236,-0.049885904882103205,-0.35350772039964795,0.03290141047909856,0.8003551275469363,0.23636914510279894,-0.7611614591442049,0.275490028783679,-0.4480190076865256,0.8833766314201057,0.5284224194474518,-0.04794104257598519,-0.2692904369905591,0.39705177722498775,-0.052031733095645905,0.6679398776032031,0.21305952034890652,-0.34132906049489975,-0.05164020275697112,0.3207801547832787,0.8936901078559458,-0.6079141478985548,0.9250691835768521,0.3289682026952505,-0.4690154017880559,0.23098030546680093,-0.8413009759970009,0.023750490974634886,-0.7053345502354205,-0.23956031166017056,0.3322756555862725,0.9665197269059718,0.7916940711438656,-0.7350148321129382,0.07755114324390888,0.8975536548532546,0.7881879541091621,0.5965889226645231,-0.4075868879444897,0.21546162851154804,-0.4711385811679065,0.25534998159855604,-0.39448700984939933,-0.029154053423553705,0.32652912149205804,-0.9985207696445286,-0.8739359728060663,0.5534836971201003,0.49924442591145635,-0.5704492954537272,0.8604554496705532,0.36666394397616386,-0.4314226917922497,0.8465231214649975,0.08813700266182423,-0.6979880989529192,-0.07400741102173924,-0.5493550458922982,-0.5614419747143984,0.2632458438165486,0.08986357040703297,0.5289905234239995,0.43695194739848375,-0.17705540778115392,0.11004137294366956,0.10180574329569936,-0.10014537302777171,-0.29970448231324553,0.10284980200231075,-0.6053772293962538,-0.5439680586569011,0.7467354144901037,0.1833232375793159,0.9208429381251335,0.922945813741535,0.41004305239766836,0.28218822088092566,0.1393535453826189,0.8506457288749516,0.676931266207248,0.902302838396281,0.42895508045330644,-0.7732818787917495,0.40785688115283847,0.06919238157570362,-0.09867338510230184,-0.7969590392895043,0.1774090719409287,-0.5905803861096501,-0.03966196067631245,0.28339922428131104,-0.1074744425714016,-0.021916731726378202,0.016032349783927202,0.69160225847736,0.9211585000157356,0.6645199717022479,0.1653931732289493,0.7786260819993913,0.010557081084698439,0.9684644988738,0.807005949318409,-0.12184651242569089,-0.12433576071634889,-0.3362763482145965,0.32918513054028153,-0.49867459386587143,0.9454076564870775,0.1108210813254118,0.40688906889408827,0.6131002139300108,0.7883767578750849,-0.4258701456710696,-0.8850492089986801,-0.005730625241994858,0.7334285886026919,-0.6056870105676353,-0.41269354429095984,-0.4348310073837638,-0.38413835503160954,-0.39303689543157816,-0.36008032597601414,0.04619862465187907,0.454060479067266,0.32243634946644306,-0.23854866437613964,-0.9367541675455868,-0.5101467142812908,-0.15949811832979321,-0.9796384740620852,-0.21432871324941516,0.5104010826908052,0.1044560382142663,0.28381452476605773,-0.5606355872005224,0.6286844229325652,0.37681051064282656,-0.18651321344077587,-0.24901501694694161,0.8739838311448693,-0.43315652245655656,-0.17750304704532027,-0.22628812491893768,-0.09848844353109598,-0.7435850389301777,0.5351130799390376,-0.488782977219671,0.19262619083747268,0.6234101564623415,0.6041188118979335,0.9551816796883941,-0.8119359700940549,-0.05938930390402675,-0.08902925066649914,-0.07179819419980049,-0.8344007954001427,0.5528895840980113,0.6376321106217802,-0.6259563295170665,-0.6575005142949522,-0.004807175137102604,-0.47872135881334543,-0.9889242961071432,-0.2029300732538104,0.016260207165032625,-0.7765919463708997,-0.5956061845645308,0.5018738037906587,0.7834790316410363,0.9768953644670546,-0.5156352445483208,-0.6913692480884492,0.8516954523511231,0.3829882275313139,-0.2957297656685114,0.672210581600666,-0.011342545039951801,0.28172318590804935,0.6605331203900278,-0.5013077300973237,0.00822464283555746,-0.8270124047994614,0.44231433933600783,-0.16742256050929427,-0.10217978851869702,0.012898650486022234,-0.9789538900367916,-0.4179363017901778,0.6445903177373111,-0.08191060507670045,-0.29584966553375125,0.21615823730826378,0.10407968237996101,0.34376337146386504,0.07812822563573718,-0.29602539213374257,-0.09540136950090528,-0.4597890912555158,0.4604414817877114,-0.6377166113816202,-0.07722342060878873,-0.14629816729575396,-0.012779943645000458,-0.6403213604353368,-0.6655589756555855,0.3986188694834709,0.8765029576607049,-0.5723715755157173,0.4858316364698112,-0.6466700760647655,-0.2221854873932898,-0.7599953860044479,-0.7091317288577557,-0.6592984749004245,-0.8243201384320855,-0.8305605887435377,-0.6697035674005747,-0.05057972623035312,-0.00926687428727746,-0.28251637564972043,0.18046530848369002,-0.16044534975662827,0.9766875589266419,-0.8511648853309453,-0.8579760319553316,-0.7550233555957675,-0.46076514571905136,-0.7611294277012348,0.6099140495061874,-0.09201573021709919,0.7000046707689762,0.7195976139046252,0.07274369150400162,0.16748496145009995,0.8654452869668603,-0.9254033844918013,-0.14882673975080252,-0.7360856542363763,0.5691670412197709,0.5015731742605567,-0.3157550604082644,-0.8514689216390252,0.8839314025826752,-0.5206677778623998,0.5593751301057637,-0.370425580535084,-0.8541741231456399,-0.3793900813907385,0.8412336613982916,-0.0849441708996892,0.13640430755913258,0.6978006875142455,-0.6720163044519722,0.6346877696923912,0.8429822730831802,0.9562294976785779,0.06724853627383709,-0.12139102723449469,-0.7363603743724525,-0.16913108946755528,0.3036361210979521,-0.418239644728601,-0.5521206390112638,0.021309446077793837,0.7829345827922225,-0.8951368620619178,-0.39397106505930424,0.7643172754906118,0.4900190909393132,0.5473608546890318,0.40990085108205676,0.40688082855194807,-0.5276503846980631,-0.8201861432753503,-0.12340459693223238,0.7688572281040251,0.45590020809322596,-0.4013332570903003,-0.5316803338937461,0.08833939535543323,0.2651115390472114,-0.4330264669843018,0.5408303942531347,-0.28993752505630255,-0.0045081027783453465,0.6027889451943338,-0.9647233989089727,0.8489397522062063,-0.13196826400235295,-0.2104319091886282,-0.5750723029486835,-0.5283712847158313,0.8230973924510181,0.00893184868618846,-0.37509285705164075,0.4728178293444216,-0.7276418805122375,0.4775756658054888,-0.11128015723079443,-0.38328507263213396,-0.9387295204214752,0.8297410937957466,0.5386863453313708,0.4437961345538497,-0.06954587809741497,-0.7535081021487713,-0.2864725454710424,0.6924027213826776,-0.8642134326510131,-0.5883868057280779,-0.7608066815882921,0.6641001394018531,-0.7656846190802753,0.8259077598340809,0.9667825857177377,0.6799526615068316,0.7068344568833709,0.7836931636556983,-0.5949935871176422,0.05663600517436862,-0.7959639676846564,0.8923628786578774,-0.8405897147022188,-0.9749982170760632,0.2892922554165125,-0.014053413644433022,0.6922533647157252,0.6410565921105444,-0.0657730270177126,0.5479907253757119,0.3671254846267402,-0.9791501220315695,-0.0014925873838365078,-0.5453162677586079,0.28665224043652415,-0.41422397177666426,0.7330162259750068,-0.2855770103633404,-0.5072587565518916,-0.876960024703294,0.3116597174666822,0.30558314407244325,-0.809449153020978,0.18987810239195824,-0.02558857062831521,-0.2716179024428129,-0.4463887340389192,0.33113081054762006,-0.3217514669522643,-0.20345957297831774,0.5595383844338357,0.16480663558468223,-0.6101031741127372,0.7089129481464624,0.13613308360800147,-0.6740829055197537,0.9708986855112016,-0.07714256457984447,0.15537129156291485,-0.5834065517410636,0.17113649286329746,0.43646482937037945,0.5210746042430401,0.06215002108365297,0.31441294215619564,-0.7275558263063431,-0.9490581015124917,0.1599914594553411,0.5797592154704034,0.8068862715736032,0.7850682269781828,-0.25871569523587823,-0.18836655002087355,-0.6588876424357295,0.6623921571299434,0.3384796497412026,-0.5014141318388283,-0.3884220076724887,-0.25577375292778015,-0.4414497842080891,-0.8792537930421531,0.6504549067467451,0.2915862388908863,-0.9976778915151954,-0.16146347671747208,-0.8333187284879386,-0.45525060035288334,0.8747697696089745,-0.3080212390050292,0.7783919749781489,-0.9343456453643739,-0.800750870257616,-0.18000798858702183,0.12126666447147727,0.5397144556045532,0.0542549230158329,-0.027571572922170162,-0.49159462098032236,-0.9821999403648078,0.7154511329717934,-0.7693261038511992,-0.6576634328812361,0.6667152717709541,-0.09764580894261599,-0.043060020077973604,0.6167412074282765,0.5474021565169096,0.17727177403867245,-0.3535345154814422,-0.4320608824491501,0.1763095953501761,0.24637676076963544,-0.5122232544235885,0.48339724633842707,0.34765087626874447,0.6659862892702222,-0.62832644674927,-0.42278791032731533,-0.7292798738926649,-0.6502887844108045,-0.610459219198674,-0.7252636416815221,0.9892210308462381,0.45285134809091687,0.8747570379637182,0.8970612399280071,-0.16273883124813437,0.5537872510030866,0.22592646162956953,-0.7019740282557905,0.5447910572402179,0.9186051930300891,-0.9029187322594225,-0.21997198881581426,0.7755301119759679,-0.4070347575470805,-0.6739636207930744,0.188254551962018,-0.9730928498320282,0.7533995839767158,-0.15069263894110918,-0.8908676356077194,-0.2741573601961136,-0.7542621120810509,0.21086761495098472,-0.422528900206089,-0.5498959119431674,0.9985110615380108,-0.049269010312855244,0.7090140949003398,0.6223040265031159,0.2252782704308629,0.6058600600808859,-0.27264623064547777,0.029233621899038553,-0.1082204538397491,-0.07116730930283666,-0.4656297047622502,-0.9841225929558277,-0.37868155539035797,0.8901853132992983,-0.044455515686422586,0.630049042403698,0.21157067501917481,-0.633526545483619,0.11568171717226505,0.7889948589727283,-0.4967012284323573,0.5855168434791267,-0.28497560415416956,-0.8996796747669578,0.43535995157435536,0.030498120468109846,-0.7840907820500433,-0.5662516341544688,-0.5995505703613162,-0.596836173441261,0.40818514907732606,-0.4556340165436268,-0.7431274689733982,0.49065910978242755,0.410042239818722,-0.7585136014968157,0.30953197041526437,-0.441943746060133,0.7596439369954169,0.9962628837674856,0.07493493054062128,0.9326463281176984,0.4559837067499757,-0.012791125103831291,0.813246744684875,-0.18300899909809232,0.3651913022622466,-0.4494202728383243,0.8547112955711782,0.2737148837186396,0.5731073841452599,-0.9161650836467743,0.5161578403785825,0.9332025004550815,-0.12068931153044105,-0.7542684953659773,0.04459330579265952,-0.3909807321615517,0.7853101822547615,0.995690144598484,0.10231371549889445,0.5701273283921182,-0.025742927566170692,0.6635660296306014,-0.5124511611647904,0.2025309312157333,0.7443140652030706,0.8402363532222807,0.41491771629080176,-0.09993056207895279,0.6496675689704716,-0.9999596052803099,-0.24697339721024036,-0.648184176068753,0.031492565758526325,0.0354515272192657,-0.705467929597944,0.8083705152384937,-0.9074942586012185,-0.4321261113509536,0.5874164034612477,0.711065424606204,-0.3515322986058891,-0.06970429699867964,-0.6522321617230773,0.2717044781893492,-0.8130668727681041,0.2933863583020866,-0.5118425600230694,-0.6555829830467701,-0.24548516562208533,0.23698036605492234,-0.383012895938009,-0.6117420857772231,0.3061919305473566,0.4143419642932713,-0.44583733938634396,0.24205376952886581,-0.2585262996144593,0.15496662445366383,0.3487743982113898,0.45882733119651675,0.7111575780436397,0.8013910362496972,0.4235785398632288,-0.56099708750844,-0.5527340834960341,0.4827428185380995,0.9146963241510093,-0.9695413750596344,-0.9675393062643707,-0.7658934122882783,0.40717384219169617,-0.34233191004022956,-0.3899774104356766,-0.4962826487608254,0.6652270769700408,-0.7328126896172762,-0.5262332088313997,-0.287183856125921,-0.8886139411479235,-0.5342065994627774,0.05984055809676647,-0.5151127171702683,0.6567375273443758,0.7786077801138163,-0.47088584350422025,-0.5994822680950165,-0.5496967835351825,-0.9486457514576614,0.29845383344218135,-0.8735275408253074,-0.7823896259069443,0.5631225644610822,-0.9369140821509063,-0.5602271482348442,0.19000369496643543,-0.7025295640341938,0.31201423006132245,0.31147175934165716,0.8159205256961286,0.13591928221285343,0.27966563450172544,-0.06454124534502625,-0.3109863279387355,-0.4378726268187165,-0.8138618590310216,-0.6634130496531725,-0.20375107368454337,0.6085636336356401,-0.3357927203178406,0.7727840142324567,0.29671861277893186,0.7658861353993416,0.6047145598568022,0.5753423124551773,-0.14044010918587446,-0.6818007403053343,0.31877422658726573,-0.3213971294462681,-0.45750917633995414,0.4344815737567842,0.34228592785075307,0.12075844267383218,0.5509072355926037,0.3915716144256294,0.048315214458853006,0.8297509108670056,-0.39395411498844624,0.4614310096949339,0.918297462631017,0.2816412108950317,-0.9223442240618169,0.33116735983639956,-0.0752603760920465,-0.4797080932185054,0.48606181098148227,-0.2371937884017825,-0.7846531607210636,-0.15012395940721035,0.004626344423741102,0.620454266667366,0.4352360377088189,0.5394569989293814,0.03663682332262397,-0.9421822368167341,0.3512447588145733,-0.06850033113732934,-0.2136732297949493,-0.7298610918223858,-0.5039570555090904,-0.39768839348107576,-0.4350184528157115,-0.05666871462017298,0.02486590715125203,-0.02301406627520919,0.7833812129683793,0.6306220307014883,-0.7119814604520798,0.8189531075768173,-0.13659439282491803,-0.08980572083964944,0.07489721663296223,0.202149108517915,0.18936401512473822,-0.5774268968962133,0.3124482296407223,0.38252345379441977,0.5628783931024373,-0.10338740795850754,-0.03491661651059985,-0.0876949755474925,-0.3255095947533846,-0.184637148398906,-0.2608971865847707,0.8441322497092187,-0.7960919067263603,-0.1541321985423565,0.07847077632322907,-0.9913819157518446,0.13443120336160064,-0.6845651119947433,0.9606692953966558,0.3947709291242063,0.09846768761053681,0.0354101462289691,-0.575707133859396,-0.0108712837100029,0.1535402457229793,-0.14200205123052,-0.6331278691068292,-0.9447304736822844,0.8396218586713076,-0.6344105321913958,-0.38830138416960835,-0.1538816117681563,-0.5128663349896669,0.43345962604507804,-0.8233579997904599,0.02257478516548872,-0.22816148167476058,0.41272762045264244,0.18919199146330357,-0.8843699982389808,-0.4235934102907777,-0.45919824251905084,0.5493890321813524,0.5251273894682527,-0.8885410204529762,0.2580538596957922,-0.42265310883522034,0.27673891466110945,-0.11551461275666952,0.10103652626276016,0.6548023703508079,-0.8688684059306979,-0.9189272909425199,0.9964921064674854,-0.2857396579347551,-0.5763137605972588,0.527506785467267,0.8845068393275142,0.38268908113241196,0.6390181537717581,0.9666608148254454,0.7408045209012926,0.23567265225574374,0.4808485833927989,-0.0007364405319094658,-0.5746908378787339,-0.823013253044337,-0.5860826289281249,0.9956119111739099,-0.045853362418711185,0.9413346010260284,0.39369048550724983,0.1864113979972899,-0.529479515273124,-0.6177825015038252,0.5700149252079427,0.04362103156745434,-0.9152876832522452,0.8853847081772983,-0.6769585805013776,0.9041314166970551,0.003791940864175558,-0.8178799077868462,-0.7460966012440622,-0.24940892774611712,-0.9891478698700666,-0.7220468772575259,0.007458003703504801,0.5624407990835607,-0.23457822762429714,0.9365694113075733,0.21055693179368973,0.6766626355238259,0.41138381604105234,-0.3729506805539131,0.21612757304683328,-0.23800628120079637,-0.5224259896203876,0.12932214559987187,-0.023784672375768423,0.7244134047068655,0.1394502092152834,-0.6044921213760972,-0.03301816573366523,-0.5527541185729206,0.5504864417016506,-0.6712994440458715,-0.5921153067611158,-0.1446982310153544,-0.3707004738971591,-0.15354100754484534,0.19019012665376067,0.8436438040807843,0.1982201524078846,-0.11933151306584477,-0.35524351242929697,-0.49555796617642045,-0.46210928447544575,-0.4534750422462821,0.7822577492333949,0.40280627785250545,0.6948624160140753,-0.37036813888698816,-0.326501761097461,-0.4593615494668484,0.8925185105763376,-0.508246535435319,0.11337435431778431,0.14180099917575717,-0.36962870275601745,0.6916338419541717,0.9359725965186954,0.628066664095968,0.7059396584518254,0.15605849353596568,0.7233611433766782,-0.4092886266298592,0.4300743266940117,-0.4694706108421087,0.6098285284824669,0.8004231853410602,0.7500849827192724,0.19262972241267562,-0.4548819554038346,-0.3326798127964139,0.4676062152720988,-0.3401519451290369,0.7650368823669851,0.24388944916427135,-0.8247287534177303,0.7802911004982889,-0.564653561450541,0.24098507640883327,-0.5330700534395874,0.5166423209011555,-0.4073389586992562,-0.03761744033545256,0.47873186133801937,-0.5785549632273614,0.47055118856951594,-0.00847445335239172,-0.23768214788287878,-0.7301928992383182,-0.5193384578451514,0.8089598682709038,-0.6598675427958369,0.25138446129858494,-0.016569118946790695,-0.6725060357712209,0.4930770490318537,-0.9352856245823205,0.2633524155244231,0.3234149720519781,0.042440474499017,-0.11295322515070438,-0.7309728255495429,-0.5289207100868225,0.6476254006847739,0.8056807140819728,0.43099189130589366,-0.7264527138322592,0.5849378015846014,0.8032810776494443,0.9056411446072161,-0.7412107698619366,0.909926924854517,0.9619486755691469,0.8084125556051731,-0.8128703646361828,0.19116794131696224,-0.019544629845768213,0.9551457753404975,0.6190133937634528,-0.6393689517863095,0.5597601858898997,0.13839957071468234,0.2930202567949891,0.9953489820472896,-0.19124436983838677,0.40811494970694184,0.786725431215018,-0.490745494607836,0.7683878382667899,0.5194104281254113,-0.8584894798696041,0.8567900499328971,-0.4771107933484018,0.8901828043162823,0.38280787505209446,0.18928674003109336,-0.6396007221192122,-0.9884133492596447,0.5950659136287868,-0.880083070602268,0.6814314667135477,-0.9033855204470456,0.8300402211025357,0.08101819222792983,-0.09811135428026319,0.910921435803175,0.44319828879088163,0.33087436435744166,0.04376040119677782,0.22222132049500942,-0.632898801472038,-0.9729365827515721,-0.5500737712718546,-0.9861541837453842,0.5778313083574176,-0.32154528284445405,0.45103212585672736,-0.35154655016958714,-0.17264154693111777,0.2698381608352065,0.41369723714888096,0.25528579484671354,0.871014361269772,-0.608236329164356,-0.07623547781258821,0.3863233528099954,0.7418274823576212,-0.010211521293967962,0.23075177054852247,-0.04772294592112303,0.3460711566731334,0.8305779648944736,0.5803192909806967,-0.9558660732582211,-0.1017224844545126,0.1572162709198892,0.17234776727855206,0.19195859134197235,0.9714657515287399,-0.5704488484188914,0.5210586129687726,0.9293657173402607,0.35293697752058506,0.18484784895554185,-0.4314467585645616,-0.21818025223910809,0.6775482916273177,0.4254727866500616,0.08900176268070936,0.5469688177108765,0.5736787212081254,-0.1811134680174291,-0.8863967726938426,0.7297731502912939,-0.5103614283725619,0.44185887882485986,-0.7679445291869342,-0.27206816291436553,-0.16987607581540942,0.20272709662094712,-0.8017467991448939,0.4089598227292299,0.436075393576175,0.0583211425691843,0.5307422303594649,-0.5935372137464583,-0.283219447825104,-0.20278297504410148,0.5530102835036814,0.8065001214854419,-0.6603690562769771,-0.12069769343361259,0.9002416892908514,0.7615449861623347,-0.8969665970653296,0.06833983352407813,-0.7754690763540566,-0.6718517895787954,-0.3726920303888619,-0.5505593153648078,-0.5233030337840319,-0.43427076609805226,-0.23776086885482073,0.6118579022586346,0.7551665380597115,0.15698691317811608,0.9628227241337299,-0.07850695168599486,-0.6082981443032622,-0.7960417233407497,-0.6068767383694649,0.5303978901356459,0.6592467310838401,-0.08118927013128996,0.2647268888540566,0.9051456362940371,-0.3564896658062935,-0.2323877769522369,0.9450435661710799,-0.9316965308971703,0.41056152526289225,0.276923764962703,0.244693074375391,-0.0784321902319789,0.7017375389114022,0.09459826443344355,0.25471056438982487,-0.2363950563594699,0.5618426916189492,0.25145714124664664,0.36339570581912994,0.152800262439996,0.9638938354328275,0.3977844212204218,0.3428383143618703,-0.5883629787713289,-0.8785398215986788,-0.7787104598246515,-0.29574147099629045,0.6062963106669486,-0.3577573844231665,0.6085915206931531,0.8347337143495679,0.9658553712069988,0.7286673048511147,-0.909118867944926,-0.8560600229538977,-0.7156742713414133,-0.7057061912491918,-0.6313656195998192,0.8976363884285092,-0.7404666584916413,0.653120603878051,0.9441084396094084,-0.4940746771171689,-0.6482167020440102,0.8107825689949095,-0.7586839641444385,-0.9335505524650216,-0.441032562404871,-0.41071847174316645,-0.8111974624916911,0.02973934728652239,0.5718344822525978,0.7489337478764355,0.7520575639791787,0.8225991423241794,0.7547542643733323,-0.9684856701642275,0.7140122260898352,-0.38312916411086917,0.06363470200449228,0.16622760519385338,-0.22251383867114782,0.337910994887352,0.8699176856316626,0.061823868192732334,0.7476882254704833,-0.9288544487208128,-0.3847350822761655,0.9271264388225973,-0.4409769345074892,0.34741155663505197,0.027087507769465446,-0.8438301533460617,0.5626041768118739,0.2327728606760502,-0.2158951717428863,0.6686582923866808,0.748092501424253,0.7368390965275466,-0.175313928630203,-0.5381689891219139,0.4783751806244254,-0.4149604123085737,0.3157947100698948,0.12560654524713755,-0.5381105565465987,-0.7958586108870804,0.5029099835082889,0.8862604573369026,0.3704087194055319,0.5824672891758382,-0.330160528421402,-0.05308988876640797,-0.6198905701749027,0.22562398295849562,0.323951946105808,0.01801872532814741,0.5494480417110026,0.2925104978494346,-0.11319989897310734,-0.6601933022029698,0.5087822675704956,-0.30927655939012766,0.6186640290543437,0.14748295210301876,-0.5655676233582199,0.32145805191248655,-0.9671424208208919,-0.21276644989848137,0.229571552015841,0.5769365238957107,-0.6359743508510292,-0.9752292851917446,-0.4905294282361865,0.2699074842967093,-0.22856486309319735,0.884786706417799,-0.43533147871494293,-0.971831968985498,0.3985200934112072,0.2407329473644495,0.8066269806586206,-0.1999294119887054,0.6254183845594525,0.9931966927833855,-0.8060505604371428,-0.29573834920302033,-0.3871611235663295,-0.167237410787493,0.4632838098332286,-0.48606688948348165,0.9877805165015161,0.756469345651567,-0.5442870697006583,0.48279223358258605,-0.9052743809297681,-0.83105323696509,0.868893516715616,0.33088221540674567,-0.7034569862298667,0.7648732247762382,-0.18923627212643623,0.39310325449332595,0.25698987720534205,-0.5411287141032517,0.9686402026563883,0.9762263312004507,0.6532517820596695,0.21401939075440168,0.5393228358589113,-0.3990753754042089,-0.7891969080083072,-0.3407565481029451,0.08676786255091429,-0.6199785210192204,-0.6955203572288156,0.347435534466058,0.6464752773754299,-0.4653256949968636,-0.6829280694946647,-0.2272821213118732,-0.5912834317423403,-0.8736034510657191,-0.08362985868006945,0.03691445617005229,0.7496420689858496,-0.43874039221554995,0.2328555742278695,-0.4428433133289218,0.05351006193086505,0.90911944815889,0.6682206452824175,-0.14272224204614758,-0.4964901749044657,0.49881466710940003,-0.5148514425382018,-0.30095907859504223,-0.0208994853310287,0.2737318677827716,0.7369639398530126,0.6711747334338725,-0.28661435237154365,-0.4168016631156206,-0.27492968598380685,-0.5095236450433731,-0.10179603286087513,0.01640618545934558,-0.15360750118270516,0.5529378093779087,0.899584177415818,0.0727754021063447,-0.6476113768294454,-0.6906612743623555,0.8188542034476995,-0.3120911424048245,-0.8632235834375024,0.32666362216696143,0.7036850498989224,0.02671719342470169,0.6047642477788031,-0.1147206062451005,0.14088415447622538,-0.4953912394121289,-0.06962382653728127,0.12170402612537146,-0.04204156622290611,-0.9299458684399724,0.6596765303984284,0.8607580196112394,0.2368349451571703,-0.5177080673165619,0.0755076496861875,0.4343431917950511,-0.5602601012215018,0.3826042264699936,-0.7047183807007968,-0.6432302026078105,-0.24079621443524957,0.6207148223184049,0.6773383938707411,0.8868204173631966,-0.3669509068131447,-0.6748299663886428,-0.4995759674347937,-0.0570268239825964,-0.4191011800430715,-0.712424018420279,0.014401283115148544,-0.9277785690501332,0.8173267683014274,-0.4520506733097136,0.5214345250278711,0.43689375650137663,0.332159211859107,-0.08781841583549976,0.12380603980273008,0.4145680209621787,-0.12830991111695766,0.4327465924434364,-0.6343942210078239,-0.5770755941048265,-0.17233875393867493,-0.37722322857007384,-0.9390453374944627,-0.37306672846898437,0.2514271214604378,-0.25882050674408674,0.15679981233552098,-0.5536114010028541,0.4309196430258453,-0.7750139064155519,0.8229932710528374,0.5252923304215074,-0.7797882328741252,0.6855075964704156,-0.9221358937211335,0.8255211007781327,0.8937992313876748,-0.7450855704955757,0.20850486168637872,-0.8523372346535325,-0.5536632258445024,0.9752734713256359,0.34220003010705113,0.8071479173377156,-0.6929728081449866,-0.9965967442840338,-0.011593776755034924,-0.7720523662865162,-0.5840668911114335,0.5248133018612862,0.37038677325472236,-0.3782197795808315,-0.5226629399694502,0.28051542304456234,0.7890599733218551,-0.732979092746973,-0.5268268063664436,0.19249171251431108,0.26532152807340026,-0.9148002401925623,0.16085237031802535,0.47564018331468105,0.35163547843694687,0.02987179346382618,0.7928179851733148,-0.8583225454203784,0.6442422843538225,0.8028852264396846,-0.46562784165143967,-0.32406225288286805,-0.46758611453697085,-0.6299755410291255,0.7493903622962534,0.6227023024111986,-0.8127221683971584,-0.6856167102232575,0.6942003886215389,-0.32155830366536975,-0.14251739159226418,-0.14363237097859383,0.6182118221186101,0.49280404299497604,-0.8055755333043635,-0.8530272338539362,0.2894356450997293,0.6138574592769146,0.3643470425158739,-0.3549800906330347,0.0949581004679203,0.12844456126913428,-0.06756347510963678,-0.9953474602662027,0.17746001295745373,0.8077079812064767,-0.7151586646214128,0.6071936222724617,0.7466715634800494,-0.4136905409395695,-0.8418193911202252,-0.48464519064873457,-0.9522518096491694,-0.22553458902984858,-0.6012262338772416,0.0189361902885139,-0.690618013497442,-0.9165053986944258,-0.6229003854095936,0.28880108147859573,-0.692323362454772,0.5377070982940495,-0.5642357594333589,-0.6834751339629292,-0.15471027791500092,-0.7825803854502738,-0.2300741458311677,-0.6514619803056121,0.6923699816688895,0.03509810287505388,-0.23873534006997943,-0.0751684382557869,-0.4746537711471319,-0.22332065645605326,0.08901988854631782,-0.8829962653107941,0.6422398006543517,0.7812482975423336,-0.2124043656513095,0.22880897810682654,-0.41000089421868324,0.437783217523247,-0.361967149656266,-0.04532261844724417,0.4476195266470313,0.7840783684514463,0.1498804222792387,0.35464679589495063,0.27119409712031484,0.9026175583712757,0.37880638241767883,-0.527935367077589,-0.16887230891734362,0.1819679206237197,-0.20336160762235522,0.5551200695335865,-0.5976143651641905,-0.46164717664942145,0.4150912114419043,0.2279241345822811,0.9542182302102447,-0.21516544371843338,-0.5577528332360089,0.6963441506959498,-0.07606122782453895,-0.6444855290465057,0.49527018144726753,0.12676850240677595,-0.0601178128272295,0.9400078225880861,0.7869968181475997,0.41123653622344136,0.22039775643497705,-0.8828507871367037,-0.7442098641768098,-0.24493735563009977,0.7045982284471393,0.9870471563190222,0.12530277157202363,-0.2750220512971282,0.3245334983803332,0.05479558324441314,0.6098570921458304,0.9955109083093703,-0.363071842584759,0.04254847904667258,-0.733914430718869,-0.32153520034626126,0.9072976284660399,0.6000211080536246,-0.08186473976820707,0.502236517611891,0.36621971195563674,-0.2771410965360701,0.7390701468102634,-0.7360896682366729,0.69191779429093,-0.9970392533577979,-0.09897736413404346,0.6586303748190403,-0.3121763579547405,0.2523976326920092,-0.4251024411059916,0.6032149428501725,0.23392700590193272,-0.2214599410071969,-0.8954683775082231,0.6426327102817595,-0.4173311637714505,0.34538939548656344,0.7947187735699117,-0.5121974442154169,0.08060909528285265,0.9983267337083817,0.9248848496936262,0.6807321049273014,0.3078132844530046,-0.6290050214156508,-0.1587209557183087,0.33961488446220756,0.6487799785099924,0.14447110891342163,-0.49537242110818624,0.013119421433657408,-0.7454588143154979,0.6384787023998797,-0.3573205331340432,-0.7855709297582507,-0.3178700073622167,0.22951575089246035,-0.48087325133383274,-0.13191854441538453,-0.8490979839116335,-0.5620724842883646,-0.7421842431649566,-0.22646158700808883,0.901040080934763,-0.635574874933809,-0.5544482772238553,-0.4541249615140259,0.41512330481782556,-0.985930741764605,0.45027492521330714,0.7952630189247429,-0.8867765879258513,-0.6552340826019645,-0.29976413678377867,0.49275353411212564,0.5037639471702278,0.31422983203083277,-0.8226531334221363,-0.286353656090796,0.3539193207398057,-0.3482156516984105,-0.6608950281515718,-0.5479496186599135,-0.839741304051131,-0.9290066082030535,-0.6308238483034074,-0.37778475182130933,0.5478690643794835,0.004464324563741684,0.7917233938351274,-0.1212162640877068,-0.9800342721864581,0.28417487628757954,0.438094035256654,-0.3468894548714161,0.856604902073741,-0.40400880528613925,-0.6562914662063122,0.5708312103524804,0.9809452197514474,0.7545633669942617,-0.3132010013796389,0.13334086444228888,-0.61641875654459,-0.3995332787744701,0.6150543889962137,-0.10489165177568793,-0.6322190868668258,0.8319836999289691,0.6509948913007975,-0.3301215092651546,-0.5569616463035345,0.6363489306531847,-0.8709727060049772,0.3176599550060928,-0.6828463501296937,0.024938945192843676,-0.5075089503079653,0.7400572448968887,-0.28255311306566,-0.4506915267556906,0.01677653193473816,0.30416576471179724,0.48408430395647883,0.3767705359496176,0.9185963305644691,-0.9952322221361101,-0.21045770635828376,0.849806634709239,-0.8040367276407778,-0.15601300401613116,0.7997509720735252,-0.71235820511356,-0.4264166234061122,0.6641936884261668,-0.6994566801004112,-0.7585080498829484,-0.6193339647725224,-0.9364511547610164,0.20912212179973722,-0.1538868248462677,0.3081843014806509,-0.2684797802940011,-0.5396114606410265,0.8201390481553972,0.6305916700512171,-0.30461401119828224,0.8381893923506141,-0.9855347396805882,-0.45266274316236377,0.8565888204611838,-0.9227318451739848,0.7128906366415322,-0.6480709202587605,0.5393032860010862,0.5642278483137488,-0.8414350049570203,0.6678405995480716,0.5900372047908604,-0.5453199930489063,-0.7025183360092342,-0.7428754922002554,0.6300247055478394,-0.3511119345203042,-0.852274838835001,0.4503995170816779,0.7964102020487189,-0.7394949570298195,0.6909043909981847,-0.7209031963720918,0.7278513149358332,0.7782437307760119,-0.932979463133961,-0.6908037792891264,-0.45308713195845485,-0.9642702187411487,-0.4785031243227422,0.9714623591862619,-0.5751605313271284,-0.49662911519408226,-0.4518806282430887,-0.37806587014347315,0.789740601554513,0.13172133592888713,0.42538305278867483,-0.9020501370541751,0.20618440117686987,0.03541826596483588,-0.7223185729235411,0.6570492386817932,0.43223542580381036,-0.7117757853120565,-0.7069383510388434,0.9373581605032086,0.5786597775295377,0.648308826610446,-0.8202166897244751,-0.9086881326511502,-0.3532985746860504,-0.6944053126499057,-0.7616383833810687,0.7825489090755582,0.9155171168968081,0.04955822695046663,-0.821301163174212,0.023173246067017317,0.6186445229686797,0.3454715390689671,-0.35215212730690837,0.8840837432071567,-0.7363688638433814,-0.4130327212624252,0.6055801315233111,-0.4564582263119519,-0.048047350719571114,-0.02908750670030713,0.7296319846063852,0.3259245580993593,0.6542364461347461,-0.3160775499418378,0.08323562005534768,-0.10451177833601832,0.8124045142903924,-0.5193497156724334,0.6906137093901634,0.16713659139350057,-0.18050226336345077,-0.302567595615983,-0.008068324998021126,0.11874655354768038,0.9588777692988515,0.11006801156327128,-0.44585025822743773,0.49962714221328497,0.5523455338552594,-0.39471378875896335,0.15791781153529882,-0.22192206652835011,-0.13911294750869274,-0.5933093931525946,0.5725966296158731,-0.5508041796274483,-0.4048070074059069,0.5944102136418223,-0.6199799031019211,-0.3171191210858524,0.692304399330169,-0.17445470578968525,-0.9493445958942175,-0.9011425948701799,-0.5702025219798088,-0.8071796344593167,0.5120952390134335,-0.32237556762993336,-0.4723517973907292,0.01130801485851407,-0.7019009082578123,0.3683379916474223,-0.20460881805047393,0.5430286768823862,-0.4027208797633648,0.9998440537601709,-0.6059895996004343,-0.9793540961109102,-0.9960349136963487,-0.1459756293334067,0.17941679153591394,0.8221835074946284,-0.9969540843740106,-0.3888142551295459,0.8133077309466898,-0.6073734285309911,0.9862879407592118,-0.34154512733221054,0.46755143301561475,0.16807904466986656,0.7510011582635343,0.1824161889962852,-0.703197605907917,0.3842730578035116,-0.4648139555938542,-0.957509343046695,0.570552455727011,0.8878770689480007,0.7494251606985927,0.5781602584756911,-0.24758796021342278,-0.3891289150342345,0.10649396199733019,-0.5204675812274218,0.665698773227632,-0.29517995100468397,-0.48007223242893815,-0.8345496100373566,-0.90899344580248,0.7550249812193215,-0.6056840065866709,-0.8180088172666728,0.2954427790828049,-0.5854949434287846,-0.8157031983137131,0.5013606925494969,0.6036489815451205,-0.8670406392775476,-0.14521856186911464,-0.6236585732549429,0.7206837181001902,0.30641407798975706,-0.6176200578920543,0.23167179943993688,0.838656070176512,0.5684579336084425,0.74507593549788,0.8754802909679711,0.30427194526419044,0.3986858520656824,0.6680673463270068,-0.8581333518959582,-0.6827268027700484,-0.46659027552232146,0.5900521073490381,0.6888305023312569,-0.8160590101033449,-0.6221065958961844,0.9072022810578346,-0.06169917248189449,0.5758093539625406,0.5493166111409664,0.36815244937315583,0.1883965781889856,0.2223875792697072,0.9414155166596174,0.8309062784537673,-0.5250485027208924,0.8533739349804819,-0.38892732514068484,0.5954709039069712,0.7242747033014894,0.627855574246496,0.6853924272581935,-0.3213326530531049,-0.12372450670227408,0.5083099636249244,0.01119838934391737,0.5010343855246902,-0.05821957206353545,-0.31150352070108056,-0.3526729056611657,-0.5999007150530815,0.9044700819067657,-0.8719184068031609,-0.6130995536223054,-0.2688680742867291,0.006978329736739397,-0.8195212306454778,0.3367937356233597,0.09354344941675663,-0.20035961084067822,0.6855157590471208,0.8498032367788255,0.2780835432931781,0.45620677853003144,0.4911610162816942,-0.22965860413387418,-0.22136052418500185,0.09262891067191958,-0.31130193546414375,-0.41798317804932594,0.5109823350794613,-0.6392015079036355,-0.8469734964892268,-0.843071177136153,-0.12351817265152931,0.6232426562346518,-0.7199677708558738,-0.6319394907914102,0.4995680581778288,0.9001881126314402,-0.5314408983103931,-0.24310082290321589,0.9981692098081112,-0.35429716669023037,-0.4991007326170802,0.556350780185312,-0.3814834929071367,-0.5679398863576353,-0.8735456555150449,-0.2781732566654682,0.9528307374566793,0.9749900414608419,-0.44635924929752946,0.31291755149140954,-0.9972752658650279,0.8652990665286779,-0.3279900373890996,0.27647461276501417,0.7089331713505089,-0.9931547925807536,0.6596107641234994,0.6946833152323961,0.9650344294495881,0.5495418417267501,0.37781629245728254,-0.10528311738744378,-0.14036114187911153,0.8176846918649971,-0.5824611084535718,0.1839702818542719,-0.3921659318730235,0.005315604154020548,-0.3460021517239511,0.3765818541869521,-0.3522792006842792,0.7071422464214265,0.7683922844007611,-0.9699000460095704,0.2994813481345773,-0.229984478559345,0.9169736923649907,-0.433316842187196,0.6250161691568792,-0.7313099722377956,-0.028511209413409233,0.16071473946794868,0.9860887206159532,0.5834508705884218,0.5523660299368203,0.0696076275780797,0.693429933860898,0.5584905613213778,-0.2619902025908232,0.4359682211652398,0.682918475009501,-0.6395311607047915,0.6676086764782667,-0.7612692015245557,-0.9741059178486466,0.08072811365127563,-0.7975882436148822,0.6688327314332128,0.32109113270416856,-0.6447171135805547,0.5899471174925566,0.25176348304376006,0.1928643616847694,-0.807114343624562,-0.16074733389541507,-0.2733711414039135,0.9421032811515033,0.5423656203784049,0.665777231566608,-0.3376435204409063,0.375186781398952,-0.13886638963595033,0.8844246920198202,0.12210947275161743,0.3760924651287496,0.32147745648398995,0.1843071891926229,0.31127830734476447,-0.6886529591865838,-0.6054553054273129,-0.22251775860786438,-0.6827388219535351,0.5479147476144135,0.08455922268331051,-0.6567532042972744,-0.5360970525071025,-0.974613020196557,0.5472393045201898,-0.4565337738022208,0.6336299139074981,0.05213994160294533,0.35835715336725116,-0.04014636995270848,0.4548369459807873,0.09521821420639753,-0.8028552308678627,-0.48320764722302556,-0.2798845814540982,0.5942835449241102,0.4835731857456267,0.4923214460723102,0.4334030211903155,0.5374770741909742,0.7174330642446876,-0.2504528504796326,0.487523403018713,-0.32378824008628726,0.17481069127097726,0.35459340969100595,-0.5302841672673821,0.5269485171884298,0.8184072519652545,0.16946087311953306,-0.23440833948552608,0.4793556956574321,0.026517154648900032,0.21911252569407225,0.7710565659217536,-0.7550634806975722,0.49379371758550406,0.03643634170293808,0.9889958882704377,-0.5640092100948095,-0.09383100969716907,-0.10888336133211851,-0.15576982265338302,0.7827386427670717,0.08574967924505472,-0.2940779058262706,-0.3002440561540425,-0.8612828245386481,0.9380045458674431,0.018140392377972603,0.48010396072641015,0.13535982836037874,0.9780475292354822,0.3408606080338359,-0.5352478912100196,0.9753635195083916,0.4224331686273217,-0.43954693200066686,0.43754208786413074,0.05252560926601291,0.09673815034329891,-0.9389537931419909,-0.9775854316540062,0.7309440434910357,-0.06904780911281705,0.036786272656172514,0.08924811473116279,0.1603004140779376,0.9881848739460111,0.37014424381777644,-0.7790443804115057,0.12009110301733017,-0.1742949946783483,-0.18442219821736217,-0.9597268663346767,0.3528805300593376,0.44693527510389686,0.7612515315413475,0.5572109343484044,0.963663462549448,0.9830071032047272,-0.30765710212290287,0.5278738350607455,-0.11549536697566509,-0.21332961646839976,0.8766686795279384,0.6454974664375186,-0.6825372977182269,0.2791275200434029,-0.9432622827589512,0.7811249447986484,0.523384821601212,0.915357599966228,0.8967276713810861,-0.6963275610469282,-0.6132704601623118,-0.5026349127292633,-0.16802734415978193,0.36954053211957216,0.29768051719293,0.5174373420886695,0.20574464974924922,-0.38281110394746065,-0.05040963413193822,0.3289946559816599,-0.5133916465565562,0.8121891603805125,-0.9768489478155971,-0.9588780729100108,-0.4573887651786208,-0.30387130891904235,0.12868064269423485,0.3473002086393535,-0.18710774462670088,0.4204570623114705,0.43871802650392056,0.35237987618893385,-0.3130733403377235,-0.31412604497745633,-0.7322158301249146,-0.21308646583929658,0.21869846666231751,-0.9143531625159085,0.9152738335542381,0.058948295190930367,0.5645207199268043,0.9799443413503468,0.7269473616033792,0.4568116683512926,0.21013342635706067,0.8964051650837064,0.28996493062004447,-0.14508710708469152,0.6047411048784852,-0.2099076290614903,0.21264786552637815,-0.25145239336416125,0.13593481248244643,0.13734837574884295,-0.7822990315034986,-0.8852211739867926,-0.271076840814203,-0.2053976571187377,-0.28356938250362873,-0.5944023369811475,-0.7585109868086874,0.4269197154790163,-0.35727708460763097,-0.873397886287421,0.38016516948118806,0.1662987731397152,0.49779461277648807,-0.5025343741290271,-0.13206877931952477,0.986908848863095,0.310545037034899,0.4315532501786947,0.9730898537673056,0.7375251329503953,0.7324714181013405,0.43668023962527514,0.1141999876126647,0.042607339564710855,-0.22463627718389034,0.6948693166486919,0.6039365967735648,-0.008330161217600107,0.9916165005415678,0.8587905713357031,-0.740908466745168,-0.2237093085423112,0.9383823331445456,-0.9294536844827235,0.6300527360290289,0.9945641970261931,-0.8779690992087126,0.5473499572835863,-0.4015539796091616,0.11190284276381135,-0.47952174488455057,-0.41916432743892074,-0.5569007336162031,0.4662668122909963,0.2038451642729342,0.22549535101279616,-0.7785446872003376,0.4252530364319682,0.8338567614555359,-0.6789093371480703,-0.9484888762235641,0.8963169944472611,-0.28236139053478837,0.057489361613988876,0.049800040666013956,-0.569752708543092,-0.8936237883754075,-0.7879139478318393,0.11088813422247767,0.5321926479227841,0.10906004859134555,-0.020945218857377768,0.7939985804259777,0.4146718285046518,0.0717962752096355,0.7696182047948241,-0.29978279396891594,0.8172806967049837,-0.3831002595834434,0.10088294884189963,0.6179953962564468,0.2391040795482695,-0.10775635996833444,0.3342168517410755,0.8243119865655899,-0.5846298332326114,-0.3173733986914158,-0.7061475212685764,-0.6319780605845153,0.5890546487644315,-0.5716271800920367,0.3155623939819634,0.9398428993299603,-0.02552725514397025,-0.5761143355630338,-0.9978857520036399,0.20465692831203341,0.3798517966642976,-0.5746236848644912,0.7711335909552872,0.23672484792768955,-0.6368375150486827,-0.373085162602365,-0.6315557425841689,-0.5893692336976528,0.2821402461268008,-0.11548988940194249,-0.7616003858856857,-0.21640128502622247,-0.7497506621293724,0.772224030457437,0.837860703933984,-0.6022093873471022,-0.9962723236531019,-0.32722953241318464,0.6024465318769217,0.5427776598371565,-0.3288673749193549,0.29431171575561166,-0.014399450272321701,0.5853018802590668,0.9111215006560087,-0.9073879849165678,0.6665527950972319,0.5780679793097079,-0.5958577352575958,-0.5120938485488296,0.6873397063463926,-0.38850280083715916,0.5730227008461952,-0.4410234778188169,-0.11589890532195568,-0.3990001562051475,-0.725552387535572,0.6302322437986732,-0.24080344242975116,0.9940799032337964,-0.08140096953138709,-0.5979211875237525,-0.181612862739712,0.3844842812977731,0.25880476273596287,0.7432035375386477,-0.6542255324311554,0.13523413054645061,-0.8122161207720637,-0.23381835781037807,-0.9453985509462655,-0.8709537866525352,0.08049475261941552,0.16819883603602648,0.18134658504277468,0.49228310119360685,-0.09375206008553505,-0.5564213241450489,0.5790869104675949,-0.07274081138893962,-0.43483328307047486,-0.8593535455875099,0.9394855471327901,-0.6905649290420115,-0.7441317704506218,-0.7421138128265738,-0.9449017182923853,0.4003901476971805,-0.3502376703545451,0.04098072415217757,0.0789360455237329,0.9576439331285655,0.9745110385119915,-0.672983018681407,-0.23816889943554997,0.05749896261841059,0.9137511202134192,0.11185770900920033,0.023060126695781946,0.7097415924072266,-0.6913033481687307,-0.7993769058957696,-0.6479659234173596,0.8410083637572825,-0.20265835896134377,-0.8343629306182265,-0.6442521372810006,0.6882442440837622,-0.7361654583364725,-0.13226715102791786,0.4036587937735021,0.4196649217046797,-0.832851683255285,-0.3286528317257762,0.6913525862619281,0.09019180061295629,0.3586206058971584,-0.48644014121964574,-0.17266421159729362,0.2101694610901177,-0.4322044011205435,0.4498220859095454,0.1597485849633813,-0.16879336908459663,0.47194514982402325,-0.32047186279669404,0.5993605433031917,-0.6216961396858096,0.5732766315340996,0.8960260315798223,-0.08489756658673286,-0.8507581893354654,-0.0428063771687448,-0.8280718876048923,0.8073358377441764,-0.7447986803017557,-0.4923724103718996,-0.2960680276155472,0.7794964709319174,0.9011301514692605,0.23156663915142417,0.5781708066351712,-0.8332888628356159,0.17943335277959704,0.9518157429993153,0.03406239068135619,-0.02567959390580654,-0.7919179266318679,0.01753318915143609,0.7639247099868953,-0.7582220048643649,-0.9649827792309225,0.5195570304058492,0.7190796192735434,-0.745190566405654,-0.3585411962121725,0.5687789749354124,0.7841531583108008,0.8856316669844091,0.3063265890814364,-0.5070415106602013,-0.47111349273473024,0.49780296301469207,0.36516077909618616,-0.9761801511049271,-0.5804360834881663,-0.10060815699398518,0.9345709732733667,0.25723819620907307,-0.6207318641245365,0.2806174554862082,0.4290303895249963,-0.35282712057232857,0.5993638318032026,-0.5025046933442354,-0.04721379140391946,0.9264890365302563,0.858337608166039,-0.49434324633330107,0.2748475158587098,-0.3974292646162212,0.13023222191259265,-0.2844635723158717,0.3142441688105464,0.5650310614146292,0.30293686827644706,0.9775992226786911,0.16337834484875202,-0.7214840175583959,-0.8678668341599405,-0.7916130525991321,0.37226549070328474,0.34048462100327015,-0.44700588565319777,-0.722295559477061,0.432668118737638,0.9836630462668836,0.8863413026556373,0.9203444779850543,-0.4230076973326504,-0.7692757407203317,0.5450860322453082,-0.3986116098240018,-0.7568126413971186,0.07794604497030377,0.5669257072731853,0.9058349723927677,0.8860236923210323,0.27128461888059974,-0.001762343104928732,-0.03645879356190562,0.4884027661755681,-0.7793053211644292,-0.0037666684947907925,0.604843620210886,0.6502843643538654,-0.7677192771807313,0.6531490576453507,-0.3171170772984624,-0.3867748319171369,-0.013689297717064619,0.7900580340065062,0.605426806025207,0.5195163674652576,0.013689596205949783,0.2689571473747492,0.6900174324400723,0.2019031373783946,-0.48009674344211817,0.005432639736682177,-0.4282258218154311,0.07891727704554796,0.01946399873122573,-0.4966602292843163,-0.1445431332103908,-0.8823901084251702,0.8705113115720451,0.9453397137112916,0.28705166978761554,0.06516901450231671,-0.9488200428895652,-0.4864087328314781,0.8012687494046986,0.3728396715596318,-0.17169114388525486,-0.2361481674015522,0.4207087564282119,-0.7312870565801859,-0.10891241021454334,0.6095206625759602,0.7455252748914063,-0.5919668730348349,0.10069369524717331,0.7817221125587821,-0.4521810756996274,-0.3132283529266715,0.2129636760801077,-0.2586553995497525,0.10545970173552632,-0.9177048280835152,0.4251424730755389,0.479760117828846,0.8804933880455792,-0.7487910925410688,0.8557477914728224,-0.8694124664179981,0.20274385623633862,0.2275358303450048,0.6404823153279722,0.04227734915912151,-0.42938812728971243,-0.5427518356591463,0.926723298151046,-0.32344353664666414,0.34918032214045525,0.8285665377043188,0.9423730885609984,0.023786097764968872,0.1545166103169322,0.9540696782059968,-0.6366883874870837,-0.9204128449782729,0.18104115035384893,-0.13909762678667903,-0.7564380527473986,-0.5892195561900735,-0.7509851586073637,0.7290560947731137,-0.007087584584951401,0.8295489433221519,-0.7526618866249919,0.720152753405273,0.03469431074336171,0.8576742331497371,-0.9642381314188242,-0.9092666492797434,-0.8147697625681758,0.3104985114187002,0.08740635868161917,-0.8369382591918111,0.9316858262754977,-0.6788720791228116,-0.3028801647014916,-0.1534158969298005,0.6142206760123372,0.9769440032541752,0.4278173018246889,-0.9527198527939618,0.0514368056319654,-0.936804189812392,-0.6382287465967238,0.9624713505618274,0.04183780075982213,-0.5952842775732279,0.03020410891622305,-0.927675764542073,-0.332986774854362,0.5482524707913399,0.8978914180770516,-0.8087330809794366,0.17701986618340015,0.2734856763854623,-0.24624617025256157,0.44428672594949603,-0.6737444191239774,0.6843681554310024,-0.3737663417123258,0.028431213926523924,-0.21848629647865891,0.5825827880762517,0.6984858503565192,0.6151064485311508,-0.1099587818607688,0.002492551226168871,0.37241117330268025,-0.5335750724188983,-0.17775642918422818,0.722932044416666,0.9332907744683325,0.1808962686918676,0.3134467429481447,0.8400433054193854,0.20414972305297852,-0.018669066950678825,0.34369101421907544,-0.2838611747138202,0.4893119018524885,-0.7549915737472475,-0.2798521863296628,0.23359945509582758,0.09704190352931619,0.6198586309328675,-0.15610213205218315,-0.9374130424112082,0.7242152579128742,-0.7689448366872966,0.7685395991429687,0.2842717571184039,0.12129248911514878,-0.7282924274913967,0.10584522178396583,0.7848936324007809,-0.1671519624069333,0.5250618504360318,0.9210260659456253,0.3019627993926406,0.053653739392757416,-0.6472552735358477,0.5858638058416545,0.38364152982831,0.6070668734610081,-0.5196460951119661,0.10445743100717664,-0.12166036479175091,-0.5202067326754332,-0.8025228548794985,-0.7546361614950001,-0.12100970698520541,0.7097594612278044,-0.313070559874177,-0.22390287928283215,0.9165053470060229,0.5296548414044082,0.6113354661501944,0.09500348241999745,-0.7099139825440943,0.05537250265479088,-0.8774525318294764,-0.8934642723761499,-0.8767493451014161,-0.1617851173505187,0.4878775426186621,-0.4132828516885638,-0.7837875592522323,0.7458042548969388,-0.08860700717195868,-0.7482302417047322,-0.2665913011878729,0.8877791874110699,-0.5802075150422752,0.8057492175139487,-0.6637010262347758,0.22650591703131795,0.1060341321863234,-0.3873071246780455,0.8579913480207324,0.9885590528137982,0.06032668659463525,0.5638863346539438,0.7787386057898402,-0.5816430277191103,0.7806563088670373,0.8822627966292202,0.5052875988185406,0.04041477246209979,0.38929883809760213,-0.500652696006,0.3366925301961601,0.017235566396266222,-0.8429804621264338,0.8634577388875186,0.30736743891611695,0.5236592413857579,0.253656689543277,0.3274337761104107,-0.6998119610361755,0.8278082963079214,-0.36691550305113196,0.12515461258590221,0.05006458470597863,0.16264352994039655,0.5311180972494185,0.6477550016716123,0.6138498880900443,-0.04357953928411007,-0.3813744862563908,-0.8968507735989988,0.4546593902632594,0.2229063492268324,0.7407160890288651,-0.97880778927356,0.1792603642679751,-0.3042243872769177,0.06804730324074626,-0.05701798480004072,-0.5678582163527608,0.003816121257841587,-0.4253304614685476,-0.5983202718198299,-0.7880868380889297,0.06385889230296016,0.5672870818525553,-0.5566847724840045,0.1129329246468842,-0.5114621720276773,-0.633232094347477,0.988759271800518,0.24116414645686746,0.0809541349299252,0.41617017425596714,-0.6794449696317315,-0.726068233139813,0.25900573935359716,0.5863157310523093,-0.3445525970309973,-0.5763398031704128,-0.8089279332198203,0.6866723420098424,0.8413303322158754,0.883439410943538,-0.04140917910262942,-0.35417236387729645,0.7914704731665552,-0.407425694167614,-0.5315085691399872,0.7034223540686071,0.2027667541988194,0.15679748775437474,-0.9358102194964886,0.7078463127836585,0.34035534132272005,0.415686116553843,-0.2310437518171966,-0.08260531397536397,0.7916080779395998,-0.06885653082281351,0.4323121942579746,0.438037792686373,-0.14613196393474936,-0.8279283852316439,0.7635877784341574,-0.45812039263546467,0.6687592188827693,0.13238306855782866,-0.2334874663501978,-0.08699163841083646,0.2898773052729666,-0.3441537506878376,-0.49628605553880334,-0.3927417490631342,0.9425801150500774,0.9909108523279428,0.4550920492038131,0.5641406234353781,-0.12198572186753154,-0.3534602620638907,-0.8209230420179665,-0.37215112522244453,-0.35580871906131506,0.25806078128516674,0.4853602163493633,0.1178713608533144,-0.9615425197407603,-0.9900860427878797,-0.9434975911863148,0.5682165534235537,-0.31085136625915766,0.469556488096714,0.4161440064199269,-0.053318655118346214,0.5476935831829906,-0.017873129341751337,-0.9669370632618666,0.05882908683270216,-0.6438406519591808,-0.4705611178651452,-0.3350558481179178,0.9218773571774364,-0.34694079123437405,-0.5041624545119703,-0.7113949870690703,-0.4124851622618735,-0.7058428796008229,-0.8915977259166539,-0.2548575126565993,-0.5149014503695071,-0.5402700426056981,0.15877242665737867,-0.1714888527058065,-0.3818539921194315,-0.19487324729561806,0.8974135951139033,0.8552548931911588,-0.34618440782651305,-0.49700902961194515,-0.460927274543792,-0.4668135833926499,0.9840171011164784,0.2763222292996943,-0.6626532133668661,-0.48511076206341386,0.04097048984840512,0.7941327695734799,0.6803627754561603,0.009173765778541565,-0.6363008008338511,-0.4023051606491208,-0.7496721637435257,0.07357823429629207,-0.05924202874302864,0.11787295434623957,-0.5624181791208684,-0.4772294885478914,-0.00042967358604073524,0.4088407792150974,-0.31116597820073366,-0.020321951247751713,0.2804495571181178,0.08232745807617903,-0.41851521329954267,-0.721932977437973,0.6459486056119204,-0.3607638729736209,-0.39991512801498175,-0.3143397197127342,0.9660207172855735,0.7088032979518175,-0.6907207826152444,0.026783994399011135,0.7899508490227163,0.6545661487616599,0.7293464299291372,0.16261975234374404,-0.6883940869010985,-0.5305842543020844,0.728755540214479,0.22826358349993825,0.17424421152099967,0.3364614574238658,0.6453163786791265,-0.6304200985468924,-0.128001787699759,0.6076296949759126,0.7879280247725546,0.4907176378183067,-0.8544315467588603,-0.33395434031262994,-0.45479710306972265,-0.6053517116233706,-0.5950527251698077,0.9232335113920271,0.8575801579281688,0.6479364330880344,-0.8778923680074513,0.8540653907693923,0.6681663221679628,0.5706215109676123,-0.5087519120424986,0.8869916028343141,-0.594499621540308,0.41442640125751495,0.6684418879449368,-0.5704188416711986,-0.8937820517458022,-0.32545720878988504,-0.7789852586574852,0.40425726491957903,-0.840914732310921,0.2562754927203059,-0.6400858256965876,0.2349484101869166,-0.07602921547368169,0.5553442481905222,-0.48942640190944076,-0.6866605854593217,0.9450681246817112,0.29656294267624617,0.05705945985391736,0.322946903295815,0.026255295146256685,-0.009268261026591063,0.6530401348136365,-0.891057837754488,-0.8062285156920552,-0.7652702475897968,0.6542132352478802,0.9519796869717538,0.6482541845180094,0.7214264757931232,0.09668493131175637,-0.496634388808161,-0.44292101357132196,-0.8994015408679843,-0.20832801843062043,0.11492706649005413,-0.48926981957629323,0.1795579888857901,0.5949034374207258,0.5526288645341992,-0.09442504635080695,-0.7173391715623438,0.7340621161274612,-0.4066689624451101,0.8147588749416173,-0.5336937559768558,-0.2313708821311593,-0.6462808041833341,-0.7796589750796556,-0.13785157492384315,-0.5476481257937849,-0.8180254688486457,-0.6466278568841517,-0.8010570793412626,-0.7355435374192894,0.5960191092453897,0.3842229386791587,-0.23861358035355806,0.10000436613336205,-0.7213256447575986,0.6769250705838203,0.479202997405082,-0.12498467182740569,-0.8522505308501422,-0.03428726643323898,0.36953581497073174,0.26784527907148004,-0.8009060258045793,0.8097105622291565,-0.6430782731622458,-0.05227680038660765,0.43428991874679923,-0.23353739734739065,-0.12727346550673246,-0.8258140683174133,-0.14128552144393325,0.5886255232617259,-0.664151347707957,0.5646828319877386,0.5836501009762287,-0.6986145921982825,0.04038252914324403,0.7879468593746424,0.7175525352358818,-0.08283829083666205,-0.5478305690921843,-0.04545611795037985,-0.097201282158494,-0.41708205733448267,0.8312839013524354,-0.4175153854303062,-0.292070007417351,-0.6883392664603889,0.15785798896104097,0.49336675740778446,0.3294634069316089,-0.8496468174271286,-0.8280738769099116,0.4376347716897726,0.13158268108963966,-0.5211786236613989,-0.6083781425841153,0.4475496602244675,-0.4594754921272397,0.581396565772593,0.03270280547440052,-0.9689762988127768,-0.4900611396878958,0.9051805753260851,0.4313867981545627,0.9722271733917296,0.2416904796846211,0.5723267355933785,-0.019555767066776752,-0.6443765764124691,-0.2874507405795157,-0.2825225587002933,0.0019944109953939915,-0.6698217871598899,-0.6492123166099191,0.15849442454054952,-0.31503383256495,0.48739571031183004,-0.7536456556990743,-0.22863199654966593,-0.1706877714022994,-0.16443951800465584,-0.19195614801719785,0.14402592787519097,-0.6844368143938482,-0.06208642106503248,-0.04170394688844681,0.7898738267831504,0.03251069271937013,0.8006754158996046,-0.3887855913490057,0.12751620262861252,0.38812249060720205,0.5730968909338117,0.4270939100533724,-0.39283851301297545,0.4748972882516682,-0.11116253910586238,-0.23778901062905788,0.9894827282987535,0.650305634830147,0.6345825400203466,-0.6379560553468764,-0.4821413569152355,0.34447646467015147,0.5577650470659137,0.8857149695977569,-0.8121815710328519,-0.11867855954915285,0.9522564890794456,0.267616952303797,-0.4415260199457407,-0.01798464870080352,0.17937587900087237,0.32991039101034403,-0.39987767720595,-0.43569622887298465,0.46720040775835514,-0.16298399679362774,0.22998143499717116,0.08381854509934783,0.21873941738158464,0.6466818992048502,-0.43729422288015485,-0.8896163241006434,-0.17463477794080973,-0.5432389597408473,0.508138872217387,-0.5622023968026042,-0.6269600251689553,-0.5512854116968811,-0.1901387544348836,0.9297414971515536,0.13036097353324294,-0.19200231647118926,-0.14549250388517976,0.9736196552403271,-0.47003650898113847,0.5401122719049454,-0.32502754451707006,0.06263800198212266,-0.37415720662102103,-0.6745023680850863,-0.9176956592127681,-0.7678398028947413,-0.5319091831333935,0.2942229830659926,0.15582315530627966,0.6444637328386307,-0.8179174847900867,-0.45859038829803467,0.32196293165907264,0.47315771831199527,0.9815674903802574,-0.9717305330559611,0.829400694463402,-0.601463345810771,-0.7911998080089688,0.3592452513985336,-0.7614908255636692,0.18404711643233895,0.9766175653785467,-0.34017583914101124,0.18598290951922536,-0.7920985822565854,-0.16872118646278977,-0.5775746298022568,0.683221485465765,0.15711001306772232,-0.4581165760755539,0.5374478953890502,0.8190838233567774,0.2990189124830067,0.08889934793114662,-0.32946343906223774,-0.9358845297247171,0.3938861475326121,0.42496869526803493,0.2778221294283867,0.8618192677386105,-0.09426686400547624,-0.19958795327693224,-0.3920170688070357,-0.6268361881375313,-0.4005390414968133,0.6032640896737576,0.6652974281460047,0.8403646028600633,0.08177515026181936,-0.44758769450709224,-0.47744744550436735,0.0462964903563261,-0.1598199917934835,-0.4920019214041531,0.717503531370312,-0.8056979370303452,0.9970533796586096,0.1439673276618123,-0.1423697080463171,-0.08721933979541063,-0.3492102553136647,-0.47507855761796236,0.2738955346867442,-0.10414746776223183,0.4488296494819224,-0.5413390882313251,-0.0501926583237946,0.5768475141376257,0.7320474828593433,-0.7227961202152073,-0.4362095328979194,-0.531521437689662,0.48454741947352886,0.1399705158546567,-0.7107260264456272,0.42219179263338447,0.23510220646858215,-0.5400148523040116,-0.5535633508116007,-0.5053554330952466,0.9186459858901799,-0.12750000739470124,0.8730394295416772,-0.6866468912921846,-0.527654476929456,0.9682770981453359,0.01373283239081502,0.9319559433497488,0.061569711193442345,-0.2125743180513382,0.21498730732128024,0.9775402555242181,0.20142285525798798,0.4398757601156831,0.26374808326363564,-0.11089927703142166,-0.08174973959103227,-0.8404752789065242,-0.010197708383202553,-0.9316656719893217,0.9897340005263686,0.71986701246351,-0.2656330349855125,0.957620931789279,0.5840934831649065,-0.04249904444441199,0.9822718342766166,-0.7085859589278698,0.5578266023658216,0.08475850336253643,-0.7714433209039271,-0.7551570343784988,-0.14467288460582495,0.4617129866965115,0.3481243923306465,-0.9694308056496084,0.20194431208074093,0.21899187751114368,-0.13237218698486686,-0.4563372600823641,-0.5841995924711227,0.6792419194243848,0.3033182299695909,-0.38196139223873615,0.7751101278699934,-0.5651052705943584,0.6939155533909798,-0.5582724413834512,0.7098937323316932,0.5664470298215747,0.32824664236977696,0.691747507546097,-0.4997068401426077,0.24171598255634308,0.9920622599311173,0.07931702584028244,-0.43288197787478566,-0.8837999715469778,-0.26855286536738276,-0.54706712346524,0.05195438116788864,0.35587535705417395,0.6327484059147537,0.5266753369942307,0.4162410791032016,-0.9932820596732199,-0.9159762389026582,0.4633153169415891,-0.08958146255463362,-0.29946448514238,0.15702378517016768,0.5774188502691686,-0.6009362833574414,0.1582262241281569,0.4028770965524018,0.4503511511720717,-0.026181595399975777,0.8538397252559662,-0.7872995315119624,0.3200435056351125,-0.4731902424246073,0.4793267617933452,0.30639657378196716,-0.8890210632234812,0.641526551451534,0.7447222894988954,0.21229150099679828,-0.40223666513338685,0.7307802583090961,0.7369400281459093,0.561087938491255,0.9734000070020556,-0.2424538992345333,-0.03239532420411706,-0.9399720299988985,0.18198583461344242,-0.7716967165470123,0.664361878298223,0.9458321002312005,0.7893995861522853,0.06297413585707545,-0.5368111515417695,-0.4797336761839688,0.3084109970368445,0.1565201529301703,-0.5791256143711507,-0.9204693255014718,0.13344843313097954,-0.22701598424464464,0.18391643837094307,-0.29330946458503604,0.1796431327238679,-0.5825152592733502,0.23417624924331903,0.8130683721974492,-0.7812468414194882,-0.49752115411683917,0.8132510422728956,0.2795470398850739,-0.3943424769677222,0.061021238565444946,0.0018711076118052006,0.3397397827357054,0.5415187291800976,0.7014619521796703,0.46908054407685995,0.5812292993068695,-0.522511251270771,0.9023639229126275,0.8800456551834941,0.5948737519793212,-0.38797568203881383,-0.23496565083041787,-0.2784222951158881,0.05852779885753989,0.8696372420527041,-0.7642608862370253,-0.22841355996206403,-0.33994863415136933,0.669800735078752,-0.5102400844916701,-0.03022783389315009,-0.6965748299844563,0.02441413840278983,0.3877230533398688,-0.5491567887365818,-0.1763092838227749,-0.14724851259961724,-0.7176395044662058,-0.5183667410165071,0.8042928297072649,-0.7772384523414075,-0.5326417284086347,0.29556825291365385,-0.668760297819972,-0.7571648573502898,0.2671529930084944,-0.5073308036662638,0.4653604314662516,-0.8531382759101689,-0.9564440054818988,-0.9665027991868556,-0.6928000561892986,-0.04263686714693904,0.7288601794280112,-0.22359066316857934,-0.8276330577209592,0.6950960191898048,-0.05604358809068799,0.16959024593234062,-0.12572470353916287,0.016484860330820084,0.889765955042094,0.06688364362344146,0.005683740600943565,-0.787393294274807,-0.0016907923854887486,-0.5988109139725566,0.4205011045560241,-0.4989656154066324,0.6518464270047843,0.5305757517926395,0.25846377667039633,0.17659481381997466,-0.0820621782913804,0.032889244612306356,0.5210221745073795,-0.25307936081662774,-0.32261726586148143,-0.049914402421563864,-0.8148285122588277,0.7915577236562967,0.7226488855667412,-0.6308548161759973,0.8368847300298512,-0.22286659944802523,-0.12055458826944232,-0.208939203992486,0.0857793502509594,0.7285546259954572,0.8678738782182336,-0.9415906770154834,0.5653234533965588,0.428981845267117,-0.8244640328921378,0.5526536153629422,0.059106194879859686,0.5327324061654508,0.06109260208904743,0.5594425168819726,-0.14924198389053345,-0.5040355087257922,-0.08293977100402117,0.9252805416472256,0.5244417046196759,-0.3073549256660044,0.5157059440389276,-0.5913619282655418,0.9588956753723323,0.9662575689144433,-0.9097861503250897,-0.4390613208524883,-0.4805899690836668,-0.8600373403169215,-0.9204030190594494,-0.36794110806658864,0.19297781912609935,0.10458140168339014,0.41689780075103045,-0.4108422165736556,0.3884761552326381,-0.28102344926446676,-0.37717792158946395,0.649739992339164,0.7841982105746865,0.8969591883942485,-0.40209603030234575,0.20455875108018517,0.5271663465537131,0.17861457262188196,-0.6738207484595478,-0.4707675143145025,0.9993975418619812,-0.10358719900250435,-0.6821272508241236,-0.5661774920299649,-0.1942758965305984,0.2923956038430333,-0.1485790447331965,-0.8498768792487681,0.7076517292298377,-0.9281354951672256,-0.6228084424510598,0.19029972422868013,0.41619689343497157,0.23718787590041757,-0.20884619746357203,-0.28468250343576074,-0.9564928007312119,0.6042614537291229,0.8447973956353962,-0.4460431709885597,0.3869953081011772,0.6848944211378694,-0.529622751288116,0.1255451487377286,-0.2083102548494935,0.2950407392345369,0.6660005166195333,-0.04311303794384003,-0.8216237453743815,0.4173151240684092,0.3180850171484053,0.7140249107033014,0.14479396725073457,-0.8374406290240586,0.9386966601014137,0.7578347600065172,0.2779297763481736,0.7519765892066061,0.534591709729284,-0.34464616421610117,0.27551704877987504,0.8074755412526429,0.18779460806399584,0.6306306244805455,0.6650395602919161,0.7633054037578404,-0.615724922157824,-0.48688391875475645,0.7531608496792614,-0.7803218821063638,0.6313438988290727,-0.8625398916192353,0.5293905856087804,0.884751720353961,-0.09735969733446836,0.6155180283822119,0.10020203841850162,0.7969713499769568,-0.29019516706466675,0.5981613784097135,0.3156395712867379,-0.9822177598252892,0.07393279112875462,0.10022490890696645,-0.6517524141818285,-0.8473481577821076,-0.3986325687728822,-0.6245275503024459,0.8845240473747253,-0.9502173066139221,-0.6598751149140298,0.989869515877217,-0.5064134537242353,0.657905884552747,0.6425577760674059,-0.018792308401316404,-0.38925718469545245,0.20949446130543947,0.03660047799348831,0.8611465883441269,0.33056154334917665,-0.7248718817718327,0.8297880347818136,0.6168384328484535,-0.015482192393392324,-0.8241648096591234,-0.16816430445760489,0.0793280373327434,-0.4632137091830373,0.778662365861237,-0.18908687308430672,0.5986668379046023,0.11721874354407191,-0.17052641697227955,-0.4893310824409127,0.09496624628081918,-0.6037634583190084,0.5137504092417657,0.4625468193553388,-0.7827796321362257,-0.6898517995141447,-0.023545817472040653,0.9370345375500619,0.33182237250730395,-0.5672628316096961,-0.3393224119208753,0.2180516547523439,0.6783840032294393,0.24333221465349197,-0.08021253068000078,-0.05866422737017274,0.7835690816864371,0.4515261175110936,0.21895311260595918,-0.95108478423208,0.8079157117754221,0.5985125545412302,-0.6642388892360032,0.003985404036939144,0.8276703297160566,0.5302755767479539,-0.9328478812240064,-0.3447022452019155,-0.9223163542337716,0.8157987543381751,-0.7769086053594947,-0.8666176446713507,0.5033469409681857,0.007029867731034756,-0.8074449528940022,0.25061129312962294,-0.27691421052441,0.3022192162461579,0.717411991674453,-0.7771539972163737,0.8022296987473965,0.15826165908947587,-0.5908220545388758,0.6138566453009844,0.9688935186713934,0.5573361213319004,-0.36014000000432134,0.9586745696142316,-0.7608216595835984,-0.9167418163269758,-0.6802056753076613,-0.16733728954568505,-0.2384533998556435,0.16927595902234316,0.49676044983789325,-0.10985758015885949,0.5610935590229928,0.24774200515821576,0.0036508659832179546,-0.5661341990344226,0.9184309323318303,-0.47462925221771,-0.9084717594087124,-0.18018994200974703,-0.298643512185663,0.6938062831759453,-0.6222911840304732,-0.33161110104992986,-0.1172825712710619,-0.3107151659205556,-0.6045772940851748,0.39122019754722714,0.042902791406959295,-0.3232852481305599,-0.01111355610191822,0.9056436792016029,-0.5163482083007693,0.9077174169942737,0.8308886950835586,-0.6599676162004471,-0.02789417840540409,-0.036376620177179575,0.7852634564042091,0.5297724106349051,0.17622701497748494,-0.18211091496050358,0.5161385075189173,0.4533577971160412,-0.08945771213620901,-0.37340495688840747,0.6128034354187548,-0.6687485380098224,-0.5147567833773792,0.046400911174714565,0.7180090821348131,-0.8179767359979451,-0.2657258864492178,0.7686464260332286,0.9954183101654053,-0.4666561563499272,0.028742119669914246,0.7848106897436082,-0.0310822706669569,-0.09754110174253583,0.9831559178419411,0.3623714121058583,-0.5800832747481763,0.6618765364401042,-0.912301785312593,-0.5723491283133626,0.1435917979106307,0.03552787518128753,-0.3287791754119098,0.9722788743674755,-0.40810946049168706,-0.991728347260505,-0.4331767912954092,0.2082151765935123,-0.661913214251399,-0.29416403360664845,-0.845793608110398,-0.43610573932528496,-0.5937695866450667,0.03982248157262802,0.10532590234652162,-0.9228414846584201,0.6807398577220738,0.8955150549300015,0.5252478895708919,0.8467124197632074,0.6201716559007764,0.26910769613459706,-0.23115283250808716,0.3810017667710781,0.1282790587283671,0.6434355722740293,-0.00641975412145257,-0.25066431798040867,0.1256814654916525,-0.3330239485949278,-0.936967084184289,0.9130164342932403,0.3072096067480743,0.21359198819845915,0.42577694868668914,0.052128716837614775,0.25936692114919424,-0.9941227845847607,-0.6239952966570854,0.5948527986183763,0.20428789407014847,-0.6461637527681887,0.10671618534252048,0.8287928556092083,0.47149383882060647,0.6700726659037173,0.81199118681252,-0.4560232940129936,-0.5399585152044892,0.2251072688959539,-0.5691303550265729,0.5078247338533401,0.5680165220983326,-0.721037957817316,-0.4372260635718703,0.517608717083931,0.4877922269515693,0.9308902304619551,-0.653324787504971,0.15135039761662483,0.5773997083306313,-0.2418092885054648,0.40358281694352627,-0.28889661049470305,0.010070316027849913,0.36876888014376163,0.23079665936529636,-0.8724297918379307,0.492174219340086,0.620083699002862,0.7952620484866202,-0.13631603540852666,0.8921482325531542,-0.6608108668588102,0.9978895769454539,-0.2805922203697264,-0.7443343191407621,-0.5294463890604675,-0.011159374844282866,0.577801532112062,0.19178828038275242,0.4393378756940365,0.9834457756951451,-0.7764450022950768,-0.02685489086434245,0.2729857093654573,-0.3066336871124804,0.763772813603282,-0.014479191042482853,0.909806580748409,-0.2244068030267954,-0.19719664566218853,-0.602676366455853,0.3632732438854873,0.6811099513433874,0.8992511150427163,0.28799258125945926,0.7522424128837883,0.5220078104175627,-0.8038078034296632,0.33353989059105515,0.7758328076452017,0.41082195844501257,-0.761149822268635,-0.8547649071551859,-0.4280223334208131,-0.8801733846776187,-0.3242872920818627,-0.08625906798988581,-0.5372984600253403,-0.6881523546762764,-0.4953846549615264,0.4551960132084787,0.18841729732230306,-0.6130831348709762,0.6880913241766393,0.014046396594494581,-0.9944544034078717,-0.22328351996839046,0.4585424168035388,-0.8119719945825636,0.36158821964636445,-0.9152974206954241,0.1814800724387169,-0.8926266003400087,-0.4282860974781215,0.9982285178266466,0.2649672976695001,-0.04397240420803428,0.9403617195785046,0.5302711627446115,0.6996929594315588,-0.7462132941000164,0.7565614595077932,0.21980616124346852,-0.8916436489671469,-0.8360823942348361,-0.1663419371470809,0.28468836285173893,0.13478677393868566,0.179992716293782,0.396599474363029,-0.053823251742869616,0.9820162155665457,0.5747094796970487,0.9171350197866559,-0.9020330775529146,-0.020197545178234577,-0.6470343368127942,0.3996293288655579,-0.9403903135098517,0.11644076043739915,0.1333259753882885,-0.672578769735992,-0.6557408547960222,0.8505829409696162,-0.32742948923259974,0.6227666880004108,0.7997641707770526,-0.86676518432796,0.7015212583355606,-0.8603438972495496,-0.37411860283464193,-0.2335845003835857,-0.5248087416402996,0.903796692378819,-0.9791008625179529,-0.7548031490296125,0.7324837180785835,-0.4260364603251219,0.026571877766400576,-0.2988881296478212,-0.6162616298533976,-0.33272000262513757,0.5338138933293521,-0.9030177430249751,-0.9291752791032195,0.4640555107034743,-0.11879829317331314,0.7002856037579477,-0.8891416024416685,0.8724497016519308,0.5182334710843861,-0.9035578342154622,-0.6151675512082875,0.08020355785265565,0.44559221994131804,-0.900269296951592,-0.5246710372157395,-0.7696477198041975,0.17969580180943012,-0.8603347693569958,0.38389823446050286,0.3693609721958637,-0.7044635387137532,-0.641046145465225,0.7923386278562248,-0.2788282176479697,0.8387309345416725,0.3627621131017804,0.44511637557297945,-0.5580658479593694,0.12747408309951425,0.931516129989177,0.16085450863465667,0.42347341123968363,0.7324985289014876,0.028852465096861124,-0.15048854751512408,0.3998470907099545,-0.1101319370791316,0.8591959136538208,0.8432671497575939,0.19821945810690522,-0.763094434980303,-0.8161298017948866,0.5239018206484616,-0.07064492953941226,-0.16862784372642636,-0.5979319587349892,0.9129615938290954,-0.0020828209817409515,-0.6675969655625522,0.16481917770579457,-0.13875607401132584,0.4836374958977103,0.46044478937983513,0.7084081545472145,0.9794379682280123,0.505406366661191,0.13577055791392922,0.4306145408190787,-0.40322650969028473,0.8719735387712717,-0.14790908806025982,0.06894801696762443,0.40642900858074427,0.13010568032041192,0.23025166103616357,-0.9589164801873267,0.1395971467718482,0.2789596104994416,0.814376977737993,0.521368992049247,-0.9300523628480732,0.0654692780226469,0.1540638729929924,0.5548550812527537,-0.3788406332023442,-0.3034814242273569,0.036800161469727755,-0.6676958333700895,-0.8618992464616895,0.8706229445524514,0.4563159658573568,0.6054957401938736,0.22083036741241813,-0.4911034358665347,0.6884668981656432,0.5066408743150532,-0.2262547849677503,0.8490589503198862,0.5731251803226769,-0.07113176072016358,-0.7720054681412876,-0.9826133879832923,0.056466709822416306,-0.9001646544784307,0.36285169795155525,0.13429691968485713,0.45768103236332536,0.36891130404546857,-0.8114060610532761,0.39989724894985557,0.8281903597526252,0.7103800815530121,0.8932395335286856,0.7006668550893664,0.19554944150149822,0.22947448678314686,-0.14859608933329582,0.6278221025131643,0.11693062912672758,0.9530798988416791,-0.5919573102146387,0.897563642822206,0.5191874578595161,-0.47054445231333375,0.4391669714823365,0.07116147363558412,0.3065083734691143,0.967052364256233,-0.24916780972853303,0.6103675924241543,-0.1964899688027799,-0.9795015943236649,0.8654966237954795,-0.3627878027036786,0.44158495450392365,-0.284281515982002,0.1825329619459808,0.3965720715932548,-0.6655074120499194,-0.3348196903243661,0.35791571950539947,0.03795282356441021,0.954054219648242,0.16845939634367824,-0.6550948764197528,-0.05091554066166282,-0.17682333244010806,-0.2172732655890286,-0.7998649775981903,0.29080749908462167,-0.34695792524144053,-0.1906040501780808,-0.629106879234314,0.630323929246515,-0.7580603817477822,0.8216358465142548,-0.02616733079776168,0.3684004507958889,0.26896895933896303,0.3919251374900341,0.3987835580483079,-0.43815550161525607,-0.06251616543158889,0.2217903877608478,0.8540503811091185,0.805588096845895,0.6621696799993515,-0.19010801939293742,0.9062219560146332,0.859777853358537,-0.48987807845696807,0.44495057174935937,-0.44093722896650434,-0.43269101437181234,-0.15940674301236868,0.4833351341076195,-0.25734424963593483,-0.26338593661785126,-0.7720286147668958,-0.9029026245698333,-0.1765685142017901,0.7045935140922666,-0.5746589875780046,-0.3298508729785681,-0.9772982099093497,-0.0629159095697105,0.5983803798444569,0.7219514083117247,0.38735941145569086,-0.297264417167753,-0.4251351086422801,0.3721333579160273,0.3965020040050149,-0.7613677349872887,-0.9403742179274559,-0.4701601746492088,-0.02165296860039234,0.34614747716113925,-0.6184219801798463,-0.11353638768196106,-0.7012513941153884,-0.34232189366593957,-0.047012182883918285,-0.5209081266075373,-0.7270311084575951,-0.8668706780299544,-0.48266275878995657,-0.6528434134088457,0.9227495505474508,-0.877693007234484,-0.672008550260216,-0.4407485914416611,0.8172548217698932,0.23891071742400527,0.2075457712635398,0.43918945640325546,-0.8586269654333591,-0.6455909255892038,0.9587483424693346,0.8132949997670949,0.6038221321068704,-0.3480678112246096,0.8311481098644435,-0.7991892364807427,0.4538510190322995,-0.5330740315839648,0.7043767096474767,-0.03525710850954056,0.7882349300198257,-0.7349772769957781,-0.993304368108511,-0.43725299183279276,0.850860727019608,-0.6020665755495429,0.45965541899204254,-0.37976784678176045,-0.42000519670546055,0.9586354331113398,0.6212042341940105,-0.044656396843492985,0.8326940690167248,0.6653363727964461,0.9995540911331773,-0.42788645159453154,-0.826121250167489,0.6475164592266083,0.02306280517950654,-0.6392976948991418,-0.535954677965492,-0.20778776006773114,0.22299969010055065,-0.5251915608532727,0.36236127791926265,-0.1153981750831008,-0.9683836731128395,-0.278982434887439,-0.6852571899071336,0.5816406332887709,0.6202543890103698,0.04020707868039608,-0.3415950727649033,-0.4196023242548108,0.36563525907695293,0.9586496520787477,-0.7854627426713705,-0.4402003330178559,0.2960149785503745,-0.8135911328718066,0.3280239002779126,-0.7093741171993315,0.17148736212402582,0.9288042229600251,-0.08225351758301258,-0.4388698893599212,0.4007667610421777,-0.4283390371128917,-0.9778055418282747,-0.8773721526376903,-0.8309613764286041,0.5778527245856822,-0.5007444499060512,0.0898454231210053,0.8373401877470315,-0.7561626024544239,-0.22932358598336577,0.7633182210847735,-0.17079119523987174,-0.49299089005216956,-0.13651898549869657,-0.5430538030341268,-0.22944253170862794,-0.7806901475414634,-0.3638110891915858,-0.17202993668615818,0.7908103722147644,0.16618300322443247,0.9895547823980451,0.4767695674672723,0.2281055054627359,0.39636491145938635,0.30629550060257316,0.7345651611685753,0.6039326353929937,-0.8800008618272841,0.12503514485433698,-0.9280268787406385,-0.9410974308848381,0.029886136297136545,0.057214684784412384,-0.09302029060199857,-0.25682700145989656,-0.19802791019901633,-0.30998966190963984,0.6974030402489007,-0.8987425523810089,0.4220016277395189,0.4634140464477241,-0.8585971277207136,0.35792225832119584,-0.036286317743360996,-0.35868501756340265,0.3077907934784889,-0.2417947449721396,0.3415155611000955,-0.03706735698506236,-0.7186005832627416,-0.8160224086605012,-0.08466308610513806,0.9650011947378516,-0.49814576283097267,0.1395774674601853,0.10952877439558506,-0.09211273118853569,-0.2929572598077357,0.13760658167302608,-0.07565594557672739,-0.3525886358693242,0.11209654016420245,0.07331355242058635,0.23957409663125873,0.27814012579619884,0.007795538753271103,-0.5933562023565173,-0.706944256555289,-0.1972580859437585,-0.6927654123865068,-0.22888299822807312,-0.006053401157259941,0.9735297881998122,0.7404086943715811,-0.6461506341584027,0.9289528583176434,0.19002217566594481,-0.5191632364876568,0.4445494511164725,0.1764340763911605,0.7299925899133086,-0.5910521494224668,-0.803170564584434,0.4908518441952765,0.08941137231886387,0.2874889154918492,-0.2759699150919914,0.0464332876726985,0.6189416069537401,-0.11773930210620165,-0.7103865686804056,-0.8268390973098576,-0.49420818965882063,-0.6596796275116503,0.0351035101339221,-0.6959654134698212,0.6588349039666355,0.9191689458675683,-0.9601411470212042,0.5390450763516128,-0.2232819781638682,0.46983550768345594,0.36540675023570657,-0.7195845600217581,0.2946353442966938,0.7121594450436532,0.9089207113720477,-0.8301467946730554,-0.8538620946928859,0.09487276943400502,0.2579604019410908,0.5860655312426388,0.15013421047478914,0.783608187455684,-0.9892371790483594,0.8854314545169473,-0.3792915567755699,0.13946297811344266,-0.31906141014769673,-0.4552517714910209,-0.5946992794051766,0.5902877384796739,0.6192009057849646,0.5318946512416005,-0.34347954811528325,0.9665396134369075,0.5559051432646811,0.09904430899769068,-0.2789998073130846,0.8162163095548749,-0.9374647252261639,-0.07244132133200765,0.9381103217601776,0.8999101044610143,-0.8558027460239828,-0.5819000103510916,0.696153350174427,-0.15416714642196894,0.938318807631731,0.7596260383725166,-0.7742722649127245,0.45258668484166265,-0.34479312552139163,0.5942521677352488,-0.7040444640442729,-0.012728278059512377,-0.506448402069509,-0.49123342242091894,-0.13481139205396175,-0.6941390885040164,0.7420360893011093,0.307910168543458,-0.9537111264653504,-0.22573373094201088,0.6394415283575654,0.6405428312718868,0.15592594118788838,0.36505868565291166,-0.5997268930077553,0.3681256528943777,0.40411029709503055,-0.15550570702180266,0.855710162781179,0.2757030357606709,-0.8599162986502051,-0.1744940336793661,-0.7599543002434075,-0.7280667335726321,-0.7109097922220826,-0.9691527709364891,-0.2585098436102271,-0.18649014132097363,-0.9858257989399135,0.49254941288381815,-0.09085424477234483,0.9522127811796963,0.812753421254456,0.7470378763973713,-0.6511581931263208,0.8559839106164873,-0.31785665825009346,0.6099407132714987,-0.7941722786054015,0.5245728022418916,0.8930304637178779,0.2980816033668816,-0.7903286144137383,-0.7372349067591131,-0.18219344597309828,0.30408709682524204,0.423356466460973,-0.5233359723351896,0.10063157975673676,-0.8839560742489994,0.7208963595330715,0.5196511624380946,0.259623222053051,-0.2884596618823707,0.6024629040621221,-0.4673950611613691,0.9808824947103858,-0.50152882700786,-0.3755531436763704,0.8014678112231195,0.25099322805181146,0.4325958052650094,0.927434828132391,-0.9617013745009899,-0.9706779387779534,-0.4996657529845834,-0.8450563685037196,0.6312179886735976,0.8504294757731259,-0.24753185268491507,-0.5725341369397938,0.7668160288594663,0.4003775459714234,0.1433472684584558,-0.19123685359954834,-0.7129571516998112,0.42957342183217406,0.1496684388257563,-0.5451860092580318,-0.7457930282689631,-0.1635543406009674,0.9881091834977269,0.6378359394147992,-0.7406332865357399,0.640503206755966,0.17806567391380668,0.5659656850621104,-0.1369751230813563,-0.13361828215420246,0.0018879515118896961,-0.6004489385522902,0.43048236425966024,-0.913852077908814,-0.1366073046810925,-0.13471311889588833,0.34271347941830754,0.1358802397735417,-0.488734501414001,0.9401365634985268,0.1915426030755043,-0.6048537772148848,-0.8665872816927731,0.07852175459265709,0.3052542060613632,0.18555948557332158,-0.517980691511184,0.6901029767468572,-0.2979867151007056,-0.5278397514484823,0.4076439975760877,-0.5879103001207113,0.0658586174249649,-0.9337353152222931,0.6992222061380744,0.12301042443141341,0.4133329731412232,-0.99595119478181,0.6519945887848735,-0.908011244609952,0.472680218052119,0.5466705318540335,-0.4947882746346295,-0.6531734527088702,-0.8337733205407858,0.9684820771217346,0.3604985484853387,0.6635586749762297,-0.9871819908730686,-0.6306925262324512,0.6906367600895464,-0.25604350585490465,-0.3574107405729592,-0.9302443331107497,0.8595530549064279,-0.056498400401324034,0.5712567935697734,0.0003956761211156845,0.0013015856966376305,0.507969165686518,-0.5908454479649663,0.3766238237731159,0.527114499360323,-0.5167502178810537,0.587533179204911,-0.7753696222789586,0.4559648879803717,0.019306580536067486,0.5805145394988358,0.1434740861877799,-0.4269534582272172,0.16856391914188862,0.47566348128020763,0.36884438805282116,0.6825066064484417,0.8921331223100424,-0.3189433631487191,0.9414674965664744,0.0091094383969903,-0.028143303468823433,-0.619586463086307,0.7967560309916735,-0.6516668042168021,0.5104979006573558,0.04742426658049226,0.1818304918706417,0.11486990004777908,-0.3721242696046829,-0.8624734217301011,-0.12926823366433382,0.4542568800970912,0.873390581458807,0.5601618252694607,-0.807253094855696,0.15766521962359548,-0.07423708727583289,0.6698932922445238,-0.8132735094986856,0.7275217133574188,0.17098951525986195,-0.8746458976529539,0.8532205573283136,-0.7934817969799042,-0.32923509925603867,0.45124806370586157,-0.2049465854652226,-0.9947612718679011,-0.05730392364785075,0.736234141048044,0.1716681574471295,0.47302057407796383,0.9683004445396364,-0.020762866362929344,0.058586481492966413,-0.7293622884899378,0.008819471579045057,-0.08523428812623024,0.6446740967221558,0.14053703239187598,-0.26634657150134444,0.8284906665794551,-0.07038296945393085,-0.7277687517926097,-0.6971085341647267,-0.32537415670230985,0.9965066462755203,0.2723421975970268,0.19396987278014421,0.38427000772207975,-0.6684236098080873,0.18235504487529397,0.3821619185619056,0.5577490557916462,0.5957129811868072,0.2375941681675613,0.2702747439034283,0.6039650687016547,-0.6100370544008911,0.8811972551047802,0.7106638359837234,0.029517813585698605,0.40077385725453496,-0.48194757010787725,0.8511829026974738,-0.580489348154515,0.6310558682307601,0.4783261511474848,0.753495467826724,0.4151985174976289,0.5550085362046957,-0.9099742355756462,-0.9810994383879006,0.4387819026596844,-0.26420280477032065,-0.9336449643597007,0.6165269776247442,0.3726048106327653,-0.008752905298024416,0.34974627336487174,0.8876159219071269,-0.0085794641636312,-0.8119422979652882,-0.9839191539213061,0.18521377071738243,-0.1379814432002604,0.4014271288178861,0.646338228136301,-0.18917285790666938,-0.5845083007588983,0.822818526532501,-0.8079995801672339,0.9145484776236117,0.9212231091223657,-0.7140044397674501,-0.5786396944895387,-0.9068081374280155,-0.8043516334146261,-0.5124098495580256,-0.5984616242349148,-0.26803903421387076,0.8429451934061944,-0.9508650274947286,-0.996917003300041,-0.5599786601960659,-0.30369893182069063,0.561223722063005,-0.8197796265594661,-0.1160410544835031,-0.7401643865741789,0.8404201306402683,0.23773843050003052,0.552320325281471,0.8495179717428982,0.8606469882652164,0.329399639274925,0.4642248540185392,0.677930114325136,-0.1516026221215725,-0.004210542421787977,0.4991798549890518,0.5142346830107272,-0.12663367157801986,0.21772430231794715,-0.8153323628939688,0.8088813293725252,0.038645774591714144,0.6298095853999257,-0.6114306109957397,0.7182582491077483,-0.506741838529706,0.15894531598314643,-0.6958965985104442,-0.938334337901324,-0.4964404455386102,-0.8792209140956402,-0.15178661746904254,-0.8764598052948713,0.4889931259676814,-0.7230771579779685,0.482366134878248,0.01207360066473484,-0.44640455301851034,-0.4617299330420792,-0.3473878684453666,-0.5154299209825695,-0.7581811673007905,0.5866857063956559,0.8023196854628623,0.18741042166948318,-0.264903774484992,0.9062541350722313,0.5387650928460062,0.08538092998787761,0.5655452935025096,0.35052079847082496,-0.012340105138719082,-0.335408887360245,-0.8831868669949472,-0.9450046285055578,0.6056249705143273,0.2527703093364835,0.9135909634642303,-0.8366256742738187,0.9948436277918518,0.8005256014876068,-0.23995131067931652,0.7659372133202851,0.5195386204868555,0.9849662515334785,0.9033886562101543,0.4500439986586571,0.443485374096781,-0.5190850715152919,-0.7825372884981334,0.09016163973137736,-0.1935418751090765,0.14934965455904603,-0.13114279136061668,0.38423675391823053,-0.29983114544302225,0.2253371849656105,-0.7540206899866462,-0.34264291264116764,0.6718498854897916,0.5778452320955694,-0.27827723138034344,-0.01236569695174694,-0.2712968629784882,-0.4819352808408439,0.8757087830454111,0.2524620364420116,-0.4752611070871353,-0.738596810027957,0.6471581333316863,-0.619095291942358,-0.9805524670518935,0.23286019964143634,0.06278512300923467,0.681206829380244,-0.9329076469875872,0.9153431230224669,-0.33281496446579695,-0.07800641702488065,0.8084831219166517,0.10046960599720478,0.8568039489910007,-0.5958228041417897,-0.30844412138685584,-0.6388016319833696,0.796722297091037,-0.6245277253910899,-0.9284596717916429,0.001640454400330782,0.7233944647014141,-0.9638905194588006,-0.36338153621181846,-0.07371445512399077,-0.1266655190847814,0.5779347233474255,0.8482429925352335,0.7781777307391167,0.2806893661618233,-0.8472809507511556,-0.3084222637116909,0.8363558249548078,-0.19227720657363534,-0.8601120626553893,0.1716956403106451,0.11131384642794728,0.7905636322684586,-0.6542710829526186,0.8085774476639926,-0.417906800750643,-0.8848663154058158,0.6508805667981505,0.049569393042474985,0.43811251129955053,0.40523980325087905,0.9976401720196009,0.7412263075821102,0.43325298838317394,0.13883973704650998,-0.013828440569341183,0.3809040295891464,-0.839335875120014,-0.9913384355604649,0.7026720000430942,0.8086714870296419,-0.956046708393842,-0.1397891491651535,0.3016975182108581,-0.24334593815729022,-0.6823337464593351,-0.7813131497241557,-0.122752764262259,-0.7028873953968287,0.25903587182983756,0.3023385782726109,0.7517425590194762,0.7424525814130902,-0.6100333002395928,0.2346292855218053,0.8140731281600893,-0.6452329917810857,-0.21842388529330492,0.7675880063325167,-0.1340350415557623,-0.5541449752636254,-0.7530077337287366,0.620697143021971,0.9882537634111941,0.2813324397429824,-0.8939709970727563,-0.4622210534289479,-0.21481232438236475,-0.25013986276462674,0.2632981427013874,-0.5135685140267015,0.8636520220898092,-0.09106101049110293,0.5569088743068278,-0.5468988977372646,-0.19959160452708602,0.028648746199905872,0.05348251014947891,-0.03374610701575875,0.26680067321285605,0.48498113406822085,0.19451508251950145,-0.44355499651283026,0.5695281941443682,0.9378612488508224,0.5966695845127106,-0.8259473503567278,-0.013895111158490181,0.41768522234633565,0.3655960881151259,0.7142754304222763,-0.7808220791630447,0.3796896329149604,0.09967622952535748,-0.0655662901699543,0.6098861913196743,0.442389736417681,0.28643027739599347,0.5935014989227057,0.42282902216538787,0.8630289090797305,-0.8807286145165563,-0.04014428751543164,-0.3537826780229807,-0.6358671197667718,0.8126475689932704,0.9283762997947633,0.41455159103497863,-0.3121865396387875,0.014917860738933086,-0.7946488945744932,0.8306591096334159,-0.729493856895715,0.7721574478782713,-0.5843423209153116,0.5806234530173242,0.6627165377140045,-0.1232137125916779,0.4343753447756171,-0.2596243843436241,-0.9339242451824248,-0.2577466811053455,-0.28835404943674803,-0.7935473476536572,0.13365352200344205,0.2546095051802695,-0.3770099417306483,0.38776775961741805,0.7675925358198583,-0.003103350754827261,-0.011636314913630486,-0.4439761657267809,0.05193014908581972,0.9190830984152853,0.3518846770748496,0.20560126472264528,0.2745772497728467,0.6372574181295931,0.05575247388333082,-0.859177210368216,0.9316411763429642,-0.2578962338156998,0.2677203011699021,-0.34849075973033905,0.7591067757457495,-0.04314042814075947,-0.23624342866241932,-0.21419238205999136,0.8665860947221518,0.44512506760656834,-0.39357741409912705,0.31841916497796774,-0.5733933197334409,0.5983978156000376,-0.6662425831891596,-0.016518697142601013,-0.3511904990300536,0.6673678355291486,-0.3629134651273489,-0.19448805134743452,0.913412241730839,-0.9576707747764885,0.20969372196123004,-0.9891941333189607,0.6775687136687338,0.1298137386329472,0.06860326649621129,0.47279695235192776,0.22347988933324814,0.2100591673515737,-0.973474174272269,-0.005515511613339186,0.2991969068534672,-0.5636787880212069,0.08236532472074032,0.3885829420760274,-0.8130487743765116,0.15706339105963707,0.6292809625156224,-0.4193998691625893,0.20208103954792023,-0.7906289156526327,0.8329845136031508,0.2648516376502812,0.5368977314792573,-0.2932383599691093,0.48535418417304754,0.534307608846575,-0.2933487896807492,-0.5481494418345392,0.44479489093646407,0.21086806757375598,-0.7860825536772609,0.8280185568146408,-0.9907118268311024,0.05704112723469734,0.6042537875473499,-0.8521982869133353,0.7517333221621811,0.9756612530909479,0.46806899551302195,-0.6561698266305029,-0.7124420842155814,-0.43148284405469894,-0.8876023925840855,0.8426557937636971,0.06321630906313658,-0.6081602214835584,-0.644235897809267,0.8369344263337553,0.42886294843629,0.11487662978470325,-0.06203206581994891,0.461866588331759,-0.6065974743105471,0.03430531732738018,-0.49680227553471923,0.9115127609111369,0.13832071656361222,0.4010576228611171,0.7596318633295596,0.8494151346385479,-0.31221693474799395,0.4087123884819448,0.20810406748205423,0.6748866466805339,-0.8659652178175747,-0.3878420600667596,0.09550570230931044,0.8552408432587981,0.45151697052642703,-0.5147989019751549,-0.9249849710613489,0.38698896765708923,0.3465550378896296,0.39874387299641967,-0.9461479946039617,-0.5842229658737779,-0.4746007462963462,0.04185160854831338,0.13870269479230046,-0.5072132800705731,-0.6765372678637505,0.4709674254991114,0.26835524337366223,0.9095989596098661,-0.6052369037643075,-0.8365204203873873,0.11881636455655098,-0.2940354719758034,-0.904889078810811,0.6397900674492121,-0.013150304090231657,-0.39928868133574724,-0.013863941188901663,-0.7694136286154389,-0.818421624135226,0.7351311519742012,-0.4645114578306675,-0.8407620536163449,-0.987303517293185,0.3256634850986302,0.1646322370506823,0.4417064725421369,0.5373612395487726,0.8250814466737211,-0.5675597926601768,-0.3779960200190544,0.5661387066356838,-0.7252431781962514,0.25934890704229474,0.4470999208278954,-0.3128719739615917,0.7299326662905514,0.551843932364136,0.9079019739292562,0.2066842927597463,-0.3282508929260075,-0.024016965180635452,-0.25551060400903225,0.472583441529423,0.2817780957557261,-0.8756495313718915,-0.6091222502291203,-0.6050190958194435,0.03799249092116952,0.1129268491640687,0.6475578811950982,0.6770932492800057,0.8054685369133949,0.7323966231197119,0.866038546897471,0.373148400336504,0.8053379296325147,-0.45151900220662355,-0.4869005982764065,0.47272909386083484,0.36853296495974064,-0.5986745720729232,-0.8667479828000069,0.5850687166675925,-0.6093876198865473,-0.06404528673738241,0.780531395226717,0.9315482946112752,0.8177283476106822,-0.00031774770468473434,0.6251365053467453,0.0017215865664184093,-0.7529949513264,-0.9567798650823534,-0.07381873205304146,-0.8896607561036944,-0.14990853844210505,0.8956977096386254,0.6977083808742464,0.21228781389072537,0.21487496560439467,0.7562775807455182,0.03412657044827938,-0.5545687829144299,0.4538556947372854,0.1720019788481295,-0.14477177569642663,-0.8264249349012971,-0.2885154844261706,0.13855220237746835,0.23034444777294993,-0.07254587300121784,-0.03658886859193444,-0.17836466757580638,0.6719518573954701,0.8351335376501083,-0.07941660284996033,-0.9341378700919449,0.5176745024509728,0.8890647669322789,0.1745214220136404,0.7292016330175102,-0.7798883696086705,0.66045828955248,0.9762919298373163,-0.5125299273058772,-0.4041143492795527,0.008439002092927694,0.3213860890828073,-0.310077256988734,-0.9571256134659052,0.7059707785956562,-0.6572464564815164,-0.6843317891471088,0.5859248260967433,0.1274209194816649,-0.986395918764174,-0.7100044451653957,0.47694412944838405,0.8607829282991588,0.049663209822028875,0.37750163627788424,0.6311130523681641,0.9845942291431129,-0.07987997680902481,-0.4015877405181527,0.35385866137221456,0.16596425557509065,-0.4127545705996454,-0.7807738953270018,0.4160486711189151,-0.9435155652463436,0.34155194042250514,-0.6688113673590124,0.08927296521142125,0.8624229454435408,-0.5340843950398266,-0.6686714398674667,0.47741226432844996,0.8428210346028209,0.2611367632634938,-0.6911339457146823,0.61200668849051,-0.9087006011977792,-0.8417225568555295,0.08500664960592985,-0.999398136511445,0.80484534567222,0.7375297406688333,-0.7452525869011879,0.7868935698643327,-0.03900839202105999,0.470125419087708,-0.1312286201864481,-0.8925487576052547,0.8004199480637908,-0.9492576760239899,-0.3003765605390072,0.2540819775313139,0.20646735187619925,0.14440185390412807,-0.39566289680078626,0.17693277075886726,-0.08457733551040292,-0.2329250993207097,-0.5496528330259025,-0.37863864097744226,0.3781645609997213,-0.04652028111740947,0.47355767665430903,-0.20555922947824,-0.2145431232638657,0.6844312963075936,-0.5605799169279635,0.2658792622387409,0.08373598475009203,0.11554788891226053,0.36556356819346547,0.8882979010231793,0.9434665474109352,0.4504276183433831,0.08722626231610775,-0.6791540929116309,0.1569014904089272,-0.7253953837789595,-0.5641640480607748,0.4908637274056673,-0.4262615726329386,0.520994414575398,0.7907424992881715,0.8076527514494956,0.0013368027284741402,0.676846741233021,0.6867245263420045,-0.17806670162826777,0.36097854329273105,0.863753461278975,-0.6086911326274276,0.311427925247699,-0.5556512321345508,-0.12339481664821506,0.5982461189851165,-0.7318793754093349,-0.38984693214297295,0.28153552394360304,-0.9232780528254807,-0.46688423212617636,0.22893897304311395,-0.8246199497953057,-0.33416839549317956,0.03527371026575565,0.5253675957210362,-0.9859099821187556,-0.5201634303666651,-0.8867377489805222,-0.7812124188058078,-0.13840987207368016,-0.2929379539564252,-0.2838183301500976,0.4374240664765239,-0.9231999446637928,-0.8527761166915298,-0.05356912221759558,-0.0216765021905303,-0.3007318018935621,-0.04530444135889411,0.9080914948135614,0.06140803312882781,-0.1250059325248003,-0.1875249445438385,0.2858809772878885,0.6523519572801888,0.4727316126227379,0.23845750419422984,0.6032547424547374,0.49484943551942706,-0.7886221054941416,0.6814256552606821,0.1402952102944255,-0.3030816884711385,0.8670095568522811,0.45074994768947363,-0.7178027532063425,-0.988417177926749,0.809466615319252,0.493855067063123,0.4721740121021867,-0.20477954065427184,0.8623993494547904,-0.9356101755984128,-0.22282996401190758,0.07051063422113657,-0.7156783491373062,0.28007647721096873,-0.9079048759303987,-0.3354876097291708,0.003253830596804619,-0.20585467340424657,0.9923857375979424,0.775419654790312,-0.587973615154624,-0.04866544296965003,0.33029414899647236,-0.17728354269638658,-0.13359280349686742,0.23723481502383947,0.6943546179682016,-0.7664766442030668,-0.7099262829869986,0.8818058036267757,0.299048924818635,-0.8670420800335705,0.4553321790881455,-0.9564661383628845,0.6317617041058838,0.9011040534824133,-0.7014827751554549,0.8769164183177054,-0.5620716572739184,-0.08221611054614186,0.5738563244231045,0.5131064830347896,-0.719308344181627,-0.5034814467653632,-0.264388145878911,0.2559884120710194,-0.5752492803148925,-0.045762244146317244,0.5084256832487881,0.4483738294802606,-0.31323249731212854,-0.5250761690549552,-0.7275057351216674,0.9881755691021681,-0.08236444601789117,-0.27997932955622673,-0.05327944224700332,-0.7785491598770022,-0.46525144577026367,0.5208561173640192,-0.9438638454303145,-0.2855975078418851,0.3733119750395417,-0.21477180626243353,-0.1524975378997624,-0.531584108248353,-0.8166628372855484,-0.41098517924547195,-0.26170182367786765,-0.6463495097123086,0.23950866190716624,-0.5914824809879065,-0.32564169727265835,0.6034084181301296,0.7743728440254927,-0.5874979132786393,0.8463923586532474,0.16740266466513276,0.4273154526017606,0.36368757486343384,-0.35733227245509624,-0.896532247774303,0.7833184045739472,0.8236588938161731,0.5957814659923315,0.8984987149015069,0.13715877197682858,0.5984124150127172,-0.9243884887546301,0.9652904509566724,0.3439690521918237,0.8280173949897289,-0.3953503933735192,0.9524344964884222,-0.935537847224623,-0.4261717232875526,-0.8412517430260777,-0.5377339264377952,-0.8874276871792972,-0.10577740566805005,-0.1878487253561616,-0.5984177733771503,-0.6053789630532265,0.5922828647308052,0.7759491433389485,0.15509211085736752,0.674394250381738,0.6329283369705081,0.9047531704418361,0.935270270332694,0.39132837019860744,-0.9168920838274062,-0.23591588996350765,0.7927953498438001,-0.6113581173121929,0.5939046507701278,0.9249304416589439,-0.6717376192100346,0.11743466649204493,-0.8404174731113017,-0.3272005910985172,0.19871614687144756,-0.9564730417914689,-0.9939199285581708,0.14660516194999218,0.2553211934864521,0.8942024055868387,-0.01818068278953433,0.6922760754823685,0.6514345314353704,0.8613780033774674,-0.7432502945885062,0.07502256706357002,0.612594177480787,-0.4160938016138971,0.22865458391606808,0.45796266524121165,0.12401116732507944,-0.9182699858210981,0.05313699459657073,0.3381209606304765,0.7860945509746671,-0.3027352592907846,-0.5886002983897924,0.6093011368066072,-0.5113563872873783,-0.6014692005701363,0.5936656170524657,0.8122884631156921,0.8897330239415169,0.0514569440856576,0.6159150139428675,0.30275068525224924,-0.25204829033464193,-0.9004750670865178,-0.44684479385614395,0.32483532931655645,-0.7363388249650598,-0.8126164614222944,0.18202689290046692,-0.9150427263230085,0.3422720809467137,-0.07822003355249763,-0.01780066080391407,0.36482548899948597,-0.27329197339713573,-0.4399934886023402,-0.8559466325677931,-0.790300284512341,-0.3190489890985191,0.8825902957469225,0.9262805315665901,0.5661958283744752,-0.937778125051409,0.6765378825366497,-0.6670600492507219,-0.7588503859005868,-0.6104259248822927,-0.5058222161605954,0.4837016090750694,-0.678065282292664,0.6575537198223174,-0.3212269055657089,-0.3102475986815989,-0.13200912810862064,-0.5644404743798077,-0.9930376131087542,-0.5844858875498176,-0.6320019164122641,0.5663665411993861,-0.9966855067759752,0.7597223282791674,0.1558709954842925,0.09919804660603404,0.8982407818548381,0.9558023447170854,-0.7978852959349751,-0.20682644518092275,-0.8587145251221955,0.9933603839017451,-0.5095380186103284,0.5830638869665563,-0.5955688999965787,0.3390519944950938,-0.04482349939644337,0.4368583681061864,-0.839795583859086,-0.504940974060446,0.7481819982640445,0.2794085880741477,-0.5562907131388783,-0.6267344867810607,-0.4541421146132052,0.6521451584994793,0.8344432110898197,-0.7554697562009096,0.42471876461058855,0.058395867701619864,-0.6075932420790195,-0.3175111012533307,-0.6517508425749838,-0.00036442093551158905,-0.10699356207624078,0.02811745647341013,-0.5561345587484539,0.8183099059388041,0.27082574274390936,0.5242462242022157,0.8258113944903016,-0.1892553069628775,-0.44124864786863327,-0.05162416445091367,0.41913557378575206,-0.7847080565989017,0.5281730466522276,0.45137531077489257,0.10305746551603079,-0.9479618053883314,-0.7256398261524737,0.33474019821733236,0.8550781109370291,-0.48372160736471415,0.25840792804956436,-0.08365288749337196,-0.14276640955358744,0.9907616539858282,-0.3095717425458133,-0.7661516321823001,0.7832522145472467,0.5368928909301758,0.36248846631497145,0.10961806820705533,-0.7011982686817646,0.8345596781000495,0.9796378253959119,-0.963198818732053,0.48470874270424247,0.9495594394393265,-0.28195193549618125,0.8298428277485073,0.8603966441005468,0.4993447121232748,-0.6241378718987107,0.48726083151996136,-0.9134692819789052,-0.9724222901277244,0.062416712287813425,-0.8368040979839861,0.6426037419587374,-0.9424462509341538,0.893369753845036,0.7365072020329535,-0.6941856215707958,-0.940237304661423,0.13766288943588734,-0.8806070126593113,0.4520917823538184,-0.009054552763700485,-0.07332344260066748,0.8663728148676455,-0.9647682849317789,-0.9340621260926127,-0.8845238387584686,0.5959088085219264,0.4548374954611063,-0.9410606711171567,-0.029512067791074514,0.220544695854187,0.4906724700704217,0.8942862222902477,-0.3416617284528911,-0.9801820935681462,0.44713461212813854,-0.224504672922194,0.05512214498594403,0.3814545338973403,0.9710835488513112,0.2006913390941918,-0.5850660959258676,0.8984966287389398,0.11152588669210672,-0.4325731163844466,-0.01672488683834672,0.20647682016715407,0.6019417750649154,-0.14970981841906905,-0.4692771127447486,0.7144442056305707,-0.9178544883616269,-0.7136789462529123,-0.8107771617360413,0.6581362648867071,0.2663735132664442,0.05100713949650526,0.15047124074772,0.36197312641888857,0.23268727725371718,-0.9925661282613873,0.28314518788829446,0.15518001280725002,0.9740190571174026,-0.02516784705221653,0.8681812630966306,0.043365742079913616,-0.7602474954910576,0.4503401219844818,-0.4786105309613049,0.3507911739870906,-0.3277291185222566,0.9013022999279201,0.2734813420102,-0.1953392019495368,-0.47319850511848927,0.27456965995952487,0.4208979341201484,0.44144074618816376,-0.44304024055600166,-0.8167877341620624,0.682759671472013,0.6961901327595115,0.5571198645047843,0.6427868572063744,0.08717760909348726,-0.7904289453290403,0.9724539439193904,-0.480298625305295,-0.692826911341399,0.24719607550650835,0.6544532561674714,0.6118113896809518,-0.1208379315212369,-0.7806393168866634,-0.6554101388901472,0.7973429667763412,0.38838171074166894,-0.4337393594905734,-0.8811034169048071,0.3259989167563617,0.9187691425904632,0.7041554520837963,-0.1937425066716969,0.7999131209217012,-0.7158158295787871,-0.8238188861869276,0.040103156585246325,-0.3331009875983,-0.7604806195013225,0.2601841720752418,-0.5782029442489147,0.37747571943327785,0.08756172889843583,0.2017060643993318,0.10894621536135674,-0.23535105865448713,-0.9113235808908939,-0.6436377638019621,0.9944751802831888,-0.14805224211886525,0.6728293402120471,-0.7189692058600485,0.09008641773834825,-0.661857008934021,-0.9926488138735294,0.4629323882982135,-0.5269019054248929,0.6825959281995893,0.7249487843364477,-0.5136720561422408,0.5320893917232752,0.5972565384581685,0.494638757314533,-0.5504201697185636,0.5018007555045187,-0.7253670948557556,-0.9462336213327944,-0.31738366605713964,-0.4203371559269726,-0.48500234400853515,0.07703784573823214,-0.8899374958127737,-0.4511825358495116,-0.4795601796358824,0.9410517662763596,-0.3687542383559048,-0.859999090898782,0.7785228006541729,-0.9897438087500632,0.092812723480165,0.11682880809530616,-0.6992811127565801,-0.9729069685563445,0.6598215620033443,-0.47879368159919977,0.9976292750798166,-0.5533779109828174,-0.45514868246391416,-0.38450935296714306,-0.4454541262239218,-0.9881563135422766,-0.7528054337017238,0.3531230790540576,-0.3604168058373034,0.014179457910358906,0.9968574056401849,-0.23829327337443829,-0.5142559111118317,0.7371483016759157,0.0604242067784071,-0.1879186062142253,-0.9210566976107657,-0.9622791134752333,0.241477080155164,0.7697126558050513,-0.005175931379199028,0.6423784629441798,0.2142379144206643,0.5881722159683704,0.2643338325433433,-0.5247808326967061,0.7527201529592276,-0.7112837643362582,-0.48799189180135727,0.5460728066973388,-0.04151853080838919,0.670869390014559,-0.9825702235102654,0.5872242855839431,-0.933506709523499,-0.270792034920305,-0.8493816060945392,-0.5708180819638073,0.03487502317875624,0.6077568922191858,0.032116401474922895,-0.20289630629122257,0.3497595298103988,-0.2432159106247127,-0.5682610371150076,-0.9290136303752661,-0.09407738549634814,0.008736726827919483,0.4395553688518703,0.6231617596931756,-0.17618511524051428,-0.005978189874440432,0.010736631695181131,0.955336517188698,-0.3271163455210626,-0.3252987018786371,0.35087875043973327,-0.05410747369751334,-0.3823285084217787,0.02663590805605054,-0.8930084058083594,-0.19482304761186242,-0.24292591586709023,-0.4397954670712352,-0.9731286275200546,-0.39207658311352134,-0.6882502064108849,0.9654448139481246,0.36288472870364785,-0.20190614880993962,0.6914993450045586,0.36523460363969207,0.40776339126750827,0.896923006977886,0.4448407837189734,-0.6108075957745314,0.4334661578759551,0.9142451495863497,-0.5121438279747963,0.3594615417532623,0.6412465265020728,0.9098940319381654,0.09686036361381412,0.9576704096980393,0.2758524543605745,-0.15399488806724548,0.3451118990778923,0.2315151309594512,-0.13837905740365386,0.022297889925539494,-0.10522476630285382,-0.07444344321265817,-0.9876157697290182,-0.2500734021887183,-0.01686572516337037,-0.752230086363852,0.8871589237824082,0.27176135359331965,0.8990381006151438,-0.0019931322894990444,-0.7994866808876395,0.3867952870205045,-0.07127303583547473,0.32370115583762527,-0.5383529043756425,-0.9062475743703544,-0.7275114306248724,-0.3031102470122278,0.4191757454536855,0.05972959939390421,-0.27911940729245543,-0.18418969260528684,0.6587955788709223,0.9311111550778151,-0.6673664497211576,0.9690317171625793,-0.2058881176635623,-0.4508188352920115,0.824759955983609,0.33541875472292304,-0.8437220472842455,0.5015188558027148,0.620152547955513,0.9990310948342085,-0.4811279019340873,-0.29828567802906036,-0.32854249607771635,-0.41122153028845787,0.047087421640753746,0.8544450826011598,-0.010114096105098724,0.8827431700192392,-0.7305529871955514,0.44029424525797367,0.21018605353310704,0.6495786993764341,0.44958630995824933,0.6081078848801553,-0.4817720646969974,-0.23502073343843222,-0.648949836846441,-0.7489384501241148,-0.5704200342297554,-0.8525774255394936,-0.44844156643375754,0.4254168844781816,0.9119600714184344,-0.7833059304393828,0.32683157501742244,0.4860381935723126,-0.44100948655977845,-0.05075461696833372,-0.07165022939443588,-0.0018587205559015274,-0.7371317907236516,-0.17307009920477867,-0.06405100412666798,-0.832707853987813,-0.019013975281268358,0.25966988783329725,-0.16648558666929603,0.714833305682987,-0.0506190899759531,0.763402842450887,0.520748249720782,-0.42634170642122626,0.9983643526211381,0.8217109399847686,-0.0760062076151371,-0.6053856695070863,0.038132766261696815,-0.5253027630969882,0.5644796192646027,0.6929197567515075,0.2807763060554862,-0.6262891022488475,-0.7067665476351976,0.6414788505062461,-0.38126937625929713,0.4034311920404434,0.9631712227128446,-0.9838754683732986,-0.5034395884722471,-0.4851837349124253,0.926880104932934,0.4034681497141719,0.9860545606352389,-0.39252500236034393,-0.262442828156054,-0.46656550746411085,-0.17579480120912194,-0.1542217805981636,0.9682049439288676,0.20463370997458696,0.7587763229385018,-0.8006154936738312,0.02826325222849846,-0.34458949184045196,0.16075871838256717,0.4383675046265125,0.45651200832799077,0.8787897205911577,-0.7921086633577943,0.9529075575992465,-0.3232144685462117,0.928893790114671,0.600855297408998,0.1453610393218696,0.6855224599130452,0.8336120741441846,0.5684004742652178,-0.6118985074572265,0.8451616009697318,0.0381478788331151,0.2838144088163972,0.4285058341920376,-0.29422397166490555,-0.14741975162178278,-0.8338067093864083,0.08216086914762855,-0.46211004676297307,-0.994582996238023,0.5275522703304887,0.06338530965149403,-0.5622222390957177,-0.6132507105357945,0.25124316941946745,0.9063472994603217,-0.6704853717237711,-0.38499334594234824,0.5785070760175586,0.32203661324456334,0.5414486830122769,-0.7132127834483981,-0.25598681066185236,-0.1332013439387083,0.4283702503889799,0.8140002461150289,-0.0655442769639194,-0.20290766237303615,-0.5306138708256185,-0.5783114670775831,-0.5151838385500014,-0.6022200756706297,-0.28483613254502416,-0.4404592365026474,0.7928508115001023,-0.7291710437275469,-0.816776467487216,-0.1445346842519939,0.7281163176521659,-0.21049517672508955,-0.47106087440624833,-0.8980876603163779,-0.9119006996043026,0.6005920791067183,-0.9258567225188017,-0.26303439075127244,-0.4358495622873306,0.3978073480539024,0.839397200383246,-0.4327725893817842,-0.7753861104138196,0.8856080435216427,-0.3436769056133926,0.6176741262897849,0.2932762373238802,0.19827843457460403,-0.5517813875339925,0.12682739738374949,-0.42601403314620256,-0.38020960008725524,-0.19602037966251373,0.6024616677314043,0.4264946738258004,0.8988211192190647,0.19663438573479652,-0.6424758769571781,-0.1567471520975232,0.23311184672638774,0.8120942041277885,0.4155503246001899,0.7039649691432714,0.8723183665424585,-0.49538748199120164,0.6286086030304432,-0.6604799572378397,-0.9639957793988287,-0.9453570442274213,0.5023646983318031,-0.26656980719417334,0.7438990012742579,0.45583142526447773,-0.17456821724772453,-0.21161002526059747,-0.3030449296347797,0.5680219666101038,-0.6326179686002433,-0.43394360365346074,-0.8180454378016293,-0.009167817421257496,0.4360299459658563,0.15897936187684536,0.5256516267545521,0.8839653213508427,-0.2595573985017836,0.574305756483227,0.9940592595376074,0.40287785045802593,-0.3303900919854641,-0.3225961495190859,-0.7143251383677125,-0.044941135216504335,0.2855098550207913,-0.06619244161993265,-0.7665698323398829,-0.9261213708668947,-0.6204032748937607,0.5146748358383775,-0.39149204827845097,-0.5663573192432523,-0.6479395106434822,-0.11738371197134256,0.025547444820404053,0.10459863767027855,0.5308976653032005,0.9827585308812559,-0.047792780213057995,-0.16301395604386926,-0.5007062735967338,-0.5414160992950201,-0.09484568983316422,0.946687136311084,0.7950238268822432,-0.8061250075697899,-0.6424570656381547,-0.8393702185712755,-0.7223900067619979,0.41257224418222904,0.18014189135283232,0.5213913121260703,-0.7759446976706386,-0.6514753424562514,0.6838618414476514,0.4659686852246523,-0.6931437053717673,0.27611319394782186,-0.8710505664348602,0.5630606231279671,0.9234116724692285,-0.9628047486767173,-0.12147143995389342,0.31396058993414044,0.5233807768672705,-0.9226426165550947,-0.873116856906563,0.598229184281081,0.7831506039947271,0.011041986756026745,0.6303325621411204,0.31065976433455944,0.41522773914039135,0.8207439836114645,0.29289660695940256,0.6913750441744924,-0.3330266331322491,0.5541486758738756,-0.7186298076994717,-0.2427136949263513,0.10787997767329216,0.4595819618552923,0.6222179275937378,-0.6973037258721888,-0.5890812487341464,0.380258200224489,0.8977250317111611,0.08197330497205257,-0.050923862028867006,-0.0006529130041599274,0.6772517785429955,-0.08199086878448725,0.9173131389543414,-0.48902226658537984,0.9448989629745483,-0.5055749621242285,-0.6248441701754928,0.4734262963756919,-0.6725806184113026,0.1791518134996295,0.13550496334210038,0.9671770664863288,-0.8532375735230744,0.5391170643270016,-0.9188124062493443,-0.48910645209252834,0.24499659473076463,0.6496259057894349,0.24851923156529665,0.4224381921812892,-0.025477387942373753,0.48572060093283653,-0.574314568657428,0.17087260726839304,-0.07301838556304574,-0.8767565842717886,0.29146143747493625,-0.456128753721714,0.28259316459298134,0.26255933474749327,-0.7729025911539793,0.3044470027089119,0.08743725251406431,-0.14461719151586294,-0.28672205563634634,-0.946722992695868,-0.9895552289672196,0.5783668104559183,0.6379619156941772,-0.7381900115869939,-0.582961502019316,-0.7244646777398884,-0.5272646304219961,0.1814520745538175,-0.3556859651580453,0.0705311642959714,0.44228666881099343,0.9275429351255298,-0.8132740645669401,-0.8693284415639937,0.6879708394408226,0.8006132231093943,-0.6572749894112349,-0.619502937886864,0.3034417675808072,-0.3729395251721144,-0.7685266761109233,-0.1681724125519395,-0.08057866338640451,0.028035862371325493,-0.5091188680380583,0.5477073467336595,-0.25986539106816053,0.6378708025440574,0.34565893886610866,0.9521628152579069,0.7791380314156413,0.18149032164365053,0.5736290006898344,-0.10282876947894692,0.9410317717120051,-0.25718983076512814,-0.40964634437114,-0.5981844244524837,-0.9366728817112744,-0.6810247506946325,0.1866495874710381,-0.7774765212088823,0.39062927244231105,-0.010012022219598293,0.2640221449546516,-0.7107696398161352,0.7365624341182411,0.5073994002304971,-0.9303169283084571,-0.18553908122703433,0.7115644034929574,-0.7617207746952772,0.3848430197685957,-0.05561746330931783,0.7587183839641511,0.7436640821397305,-0.9169153654947877,0.7210571789182723,-0.46431265072897077,0.03575763292610645,-0.20574962859973311,0.028499788604676723,-0.5800300897099078,-0.9370228759944439,0.5206924872472882,-0.7734801038168371,0.37586045917123556,-0.41166863311082125,0.8578435690142214,-0.7362168258987367,0.8810464995913208,0.07063969550654292,-0.10403025802224874,0.9105237573385239,0.6187739009037614,-0.5710175787098706,0.8823828198947012,0.1549158333800733,0.5064005036838353,0.9635620680637658,-0.333873946685344,-0.5956393075175583,-0.8852763785980642,-0.5476389061659575,-0.6648062993772328,0.02459442662075162,-0.8656243509612978,0.8803909309208393,-0.3656139592640102,0.7335234782658517,0.4413770944811404,-0.6742838439531624,0.5638523208908737,-0.6752236937172711,-0.5233323876745999,-0.2060215868987143,-0.7981216940097511,-0.05840325774624944,0.7849169778637588,0.21075182780623436,-0.9814428631216288,0.7464243769645691,-0.668250348418951,0.7967971921898425,0.1445141639560461,0.20793189387768507,0.6536671174690127,-0.1773778386414051,-0.27939584758132696,-0.6650908114388585,-0.46141211222857237,-0.5690484470687807,0.9853037390857935,0.6608314602635801,-0.538958078250289,0.8433778011240065,-0.27774426341056824,0.4451548121869564,-0.6555841085501015,-0.3097514766268432,-0.7720904932357371,0.437994493637234,0.18477436993271112,0.86421276954934,0.3633133308030665,-0.4611347857862711,0.05982574727386236,0.5798300746828318,0.5856107831932604,-0.5896363724023104,0.5061511332169175,-0.5686314352788031,0.34807262755930424,0.918845655862242,0.40270608849823475,0.14058612613007426,0.4694792181253433,-0.7584967981092632,-0.5310691557824612,-0.009894577320665121,0.07337021455168724,-0.8621861087158322,-0.45633917348459363,0.46398070780560374,-0.6706130923703313,-0.037568322382867336,0.8198514357209206,-0.4368791561573744,0.3534824699163437,0.7218548506498337,0.7711675427854061,0.5970507366582751,-0.6293187928386033,-0.3195219817571342,0.9367645168676972,-0.192021899856627,-0.15838730055838823,0.0073754140175879,0.17769474862143397,-0.8168884799815714,-0.7914424310438335,-0.9571789368055761,0.7185554290190339,0.7836777283810079,-0.4180358680896461,0.7398439892567694,-0.36543971998617053,0.8952240692451596,0.3876376277767122,0.11109995795413852,-0.8925466653890908,-0.11211709724739194,0.2735897470265627,0.19376593036577106,-0.6463876939378679,-0.19129290105775,0.7953794547356665,0.4839220498688519,-0.7730407160706818,-0.24940978037193418,0.07247142633423209,0.9268533224239945,-0.5836184378713369,-0.4770245896652341,-0.696356204804033,-0.44631422590464354,-0.6770197488367558,0.6988018467091024,-0.1286151148378849,-0.5103715010918677,-0.19465266726911068,-0.02049111295491457,-0.14019820699468255,-0.4742874256335199,-0.9664442120119929,0.6240386571735144,-0.41193041391670704,-0.4679442117922008,0.22554090758785605,0.41084868973121047,0.32977910712361336,0.18457811325788498,0.6337052686139941,0.12337576877325773,-0.9353948310017586,0.2134738927707076,0.4377174014225602,-0.06658768281340599,0.9872294128872454,0.6234917887486517,0.7092086775228381,-0.8010973474010825,-0.04476005304604769,0.6634601932018995,0.01967580709606409,-0.3415705878287554,-0.8884744136594236,0.24582752585411072,-0.6954014687798917,-0.7957885819487274,0.4723467733711004,-0.862340435385704,-0.3977766837924719,-0.827936910558492,0.5717489207163453,-0.9999940753914416,-0.9168047425337136,-0.44196729687973857,-0.5330995982512832,-0.004519244655966759,-0.6150319464504719,-0.34920113161206245,-0.6340997908264399,0.3275225474499166,-0.9858045079745352,-0.7835495127364993,0.39279973320662975,0.9222188834100962,-0.9957282794639468,0.49548632046207786,-0.7777485316619277,-0.06594754755496979,0.5606915117241442,0.06203779857605696,-0.11526566697284579,-0.768756614997983,-0.13734082179144025,-0.05721848364919424,-0.49864412378519773,-0.9717996581457555,0.3745211800560355,0.23977628210559487,-0.6435685250908136,-0.5408807778730989,-0.9439428155310452,0.11933704046532512,-0.4129948168992996,-0.7268187762238085,-0.7630901141092181,-0.7633103164844215,-0.24868930550292134,-0.3391280323266983,-0.7657220270484686,-0.39985163416713476,-0.14586001494899392,0.11376825906336308,-0.9887362546287477,-0.4919493943452835,-0.1310161747969687,-0.21725822426378727,-0.5298183164559305,-0.9253400578163564,-0.2389942524023354,-0.7099283477291465,0.04815764492377639,-0.5261659035459161,0.44472159119322896,-0.07851596688851714,0.5668716942891479,0.7289207256399095,-0.48173248674720526,0.49465806875377893,-0.6881792140193284,-0.4103347798809409,-0.2654025782831013,-0.4814435699954629,-0.4024299718439579,0.2640845370478928,0.08378973556682467,-0.9933212283067405,0.6070377579890192,0.4420639439485967,0.454708079341799,-0.3507993118837476,-0.8846362153999507,0.31837897142395377,-0.8929402139037848,0.17941537499427795,-0.5469546616077423,-0.24381070584058762,-0.34363239677622914,-0.38524434296414256,0.03663879167288542,0.6206925930455327,0.100225571077317,-0.9408067776821554,-0.17047154996544123,-0.7299388884566724,-0.9138880069367588,-0.766193435061723,-0.49917527846992016,0.5970662287436426,0.6644118339754641,-0.7679799948818982,0.7165665617212653,0.5523907500319183,0.7162567060440779,0.37477613566443324,-0.17694766400381923,0.6507514831610024,0.35737403063103557,0.0350958239287138,0.15207935823127627,-0.08804063685238361,-0.8407337898388505,0.9262568494305015,0.773276200518012,-0.02129972819238901,-0.29052435839548707,0.9014507383108139,-0.8619471709243953,0.9271330563351512,-0.7138265334069729,-0.51459642034024,0.1606512269936502,0.32191279996186495,0.8250020518898964,-0.8742717304266989,0.38239662488922477,0.7560063642449677,-0.07544533582404256,0.44137900974601507,-0.025195967871695757,-0.0722397780045867,0.6795889204367995,-0.23450937494635582,-0.5068303816951811,0.46336723072454333,-0.9847522582858801,0.08963822480291128,-0.6167977284640074,0.776101291179657,-0.7416069526225328,0.0030839666724205017,0.965315924026072,-0.4858292327262461,0.47699525533244014,0.591559985652566,0.07258611265569925,-0.924642926082015,-0.4639024892821908,-0.6889710035175085,-0.3857713430188596,0.12957294145599008,-0.45958937611430883,0.33238475071266294,0.12581037264317274,-0.2655406938865781,0.6889391127042472,0.7737503717653453,0.640077724121511,-0.08374074893072248,0.71631272835657,-0.0636658207513392,0.005582855083048344,-0.6524321055039763,0.30629459070041776,0.5292001580819488,0.6054823976010084,0.2625755751505494,-0.1375107206404209,-0.42420214135199785,-0.6666780645027757,-0.42486473685130477,0.4871301199309528,-0.6059995912946761,-0.8519640467129648,0.9475169205106795,-0.8866440416313708,-0.5767816337756813,-0.029410951770842075,-0.581331031396985,-0.3250008188188076,0.3134557418525219,-0.8264882764779031,0.7502521271817386,-0.22251789877191186,-0.8021077658049762,-0.10306829260662198,0.28214187175035477,-0.2832602565176785,-0.5125389602035284,0.2618275908753276,0.4481870192103088,0.8540166304446757,0.06938388478010893,-0.7372457380406559,-0.9026863556355238,0.8353457758203149,0.8474598047323525,0.06018578540533781,0.772453086450696,0.9891379475593567,0.5109088043682277,0.6411415878683329,-0.9995476799085736,-0.29136943677440286,-0.34057819237932563,0.9126470470800996,-0.8419836801476777,0.38785406155511737,0.20728197507560253,-0.7802359545603395,0.7729327571578324,0.6535757249221206,0.8105534738861024,0.4502274338155985,-0.4176030782982707,0.7389190676622093,0.10897367540746927,0.15380172803997993,0.6247431202791631,-0.7428554794751108,0.49749505380168557,-0.3374606524594128,0.662825227715075,-0.20537715824320912,-0.18888711370527744,-0.47836847184225917,-0.120117312297225,0.94744164776057,0.0017817267216742039,0.783956419210881,0.9345708414912224,0.8196510476991534,0.019777913577854633,0.5106064360588789,-0.08288320200517774,0.23831365909427404,0.20561345759779215,-0.9624586729332805,-0.6979729291051626,-0.44118939619511366,0.11009330069646239,0.2102015195414424,0.5471479524858296,0.9293334879912436,-0.9805076336488128,0.1380061968229711,0.21124438056722283,-0.020208241418004036,-0.8441365994513035,0.24202095484361053,-0.6239166809245944,-0.6665846216492355,-0.7833451628684998,-0.8120578890666366,0.9934801966883242,-0.3422437570989132,-0.24685587640851736,0.9112995420582592,0.6107858261093497,-0.15431084390729666,-0.22979726362973452,0.8080330044031143,0.01351554924622178,-0.38364456640556455,-0.17987137287855148,-0.6998549816198647,0.4471508776769042,-0.7702124319039285,-0.922472863458097,0.4459026628173888,0.8615187327377498,-0.48977776942774653,-0.32904883194714785,0.6129079055972397,-0.28116805804893374,-0.7519453149288893,0.5657202103175223,0.6892281789332628,-0.23293058341369033,0.20066425064578652,-0.8326004850678146,0.5708685186691582,0.33967661298811436,-0.5724400114268064,0.135648000985384,0.7191986055113375,-0.4319448098540306,0.9914227784611285,0.6648524980992079,0.17563448613509536,0.10859172185882926,0.8444147570990026,-0.051687808241695166,-0.9912136532366276,0.7797259418293834,0.681380522903055,-0.17285170080140233,0.38936580484732985,0.4110308843664825,0.9633395061828196,0.666549330111593,0.7163026896305382,0.6503609297797084,0.2503598597832024,0.07390895299613476,0.5956822037696838,0.12381881708279252,-0.5880431979894638,0.19971702760085464,0.47034150641411543,0.08838182874023914,-0.585588414222002,0.7622182192280889,0.6702651106752455,-0.6745144934393466,0.028615653980523348,0.978295061737299,-0.9425229988992214,-0.6238118172623217,-0.030720894690603018,-0.6862748092971742,-0.09963854821398854,0.7318447879515588,-0.8665379206649959,0.12492160405963659,-0.10554256848990917,-0.03494557412341237,0.9170257053337991,0.27090354869142175,-0.36365160485729575,-0.7292131586000323,-0.19179350277408957,-0.15888627665117383,0.39021719293668866,0.8423928660340607,0.24814040819182992,-0.5421814527362585,-0.10930845886468887,0.7869836208410561,-0.14494447968900204,-0.024232252035290003,-0.4246371490880847,0.49544064374640584,0.9765125969424844,-0.7543939067982137,-0.8079930851235986,0.8361370307393372,-0.5043364558368921,0.024999074637889862,-0.667837378103286,-0.9915125356055796,-0.6424621315672994,0.344378343783319,0.59290138958022,-0.4431826863437891,-0.020398196764290333,-0.4650325723923743,-0.451276034116745,0.8037649970501661,-0.2294450718909502,0.5281293094158173,0.07153498707339168,0.13923732610419393,0.9933228772133589,-0.9765673219226301,-0.4307338511571288,0.8694501393474638,0.39713858673349023,-0.1670224955305457,-0.5729847447946668,-0.8404473913833499,0.9407186056487262,-0.014109581243246794,0.6314358036033809,0.6265821396373212,0.16795437689870596,-0.2364127724431455,-0.8842843272723258,-0.3772926973178983,0.11839515948668122,0.06475590448826551,0.10185622936114669,0.0657079815864563,-0.17384720640257,-0.9217381826601923,0.9224500833079219,-0.7802099795080721,-0.5427631540223956,-0.568880433216691,0.7161061358638108,0.8290198221802711,0.1939837671816349,-0.19397489354014397,0.5898584495298564,0.7605882943607867,0.8925869255326688,0.04960859986022115,0.08607333386316895,0.25191408675163984,0.6222406234592199,-0.8513288530521095,-0.2593517918139696,-0.9361832616850734,-0.22112542251124978,0.5033089113421738,-0.6128042195923626,-0.13391344668343663,-0.9485952607356012,0.06869534542784095,-0.292105405125767,0.29073853930458426,-0.35650582797825336,-0.08475883956998587,0.7278715507127345,0.40056014992296696,0.8878669012337923,-0.5771486996673048,-0.18741345545277,-0.8030688837170601,0.8312470251694322,-0.11830543214455247,-0.36052308045327663,0.9617996048182249,-0.05179773876443505,0.6734349173493683,0.5897085848264396,-0.15337606007233262,-0.5409802752546966,-0.9937632703222334,0.6969084506854415,-0.36342816101387143,0.2765885917469859,-0.23278367146849632,-0.8903877101838589,-0.5848248633556068,-0.5167308859527111,-0.5336332470178604,-0.1645075143314898,0.6376852975226939,-0.6892611468210816,0.0831882325001061,0.7083780383691192,0.8813252160325646,-0.4037300618365407,0.8702233773656189,0.4920519427396357,0.05792960338294506,0.44696756498888135,-0.18885802244767547,0.7872261488810182,-0.9103987896814942,0.7676818487234414,-0.030348895583301783,-0.47550570918247104,-0.8129336042329669,-0.8331468268297613,-0.8269669129513204,-0.7600919008255005,-0.954559831880033,-0.6114462404511869,0.9214833895675838,-0.6691471682861447,0.47659374168142676,-0.029887426178902388,-0.549421448726207,-0.4537504334002733,0.2114067981019616,-0.8974370774812996,0.7651519398204982,0.025491902139037848,-0.6880253874696791,0.24213273357599974,0.7276430954225361,-0.293856147211045,0.47190224286168814,-0.8813187046907842,-0.29868207639083266,0.09277463564649224,-0.48925038194283843,0.5629532299935818,0.936359133105725,-0.5236625811085105,-0.8721581380814314,0.760045780800283,0.15091461734846234,0.9248528075404465,0.5163306258618832,-0.7064308994449675,-0.46358835184946656,0.06545605696737766,0.045089215971529484,-0.4193867673166096,0.8416559123434126,0.7155954726040363,0.38920342829078436,0.18420091271400452,0.5250976881943643,0.3397884205915034,-0.7022696728818119,-0.6090711778961122,0.7054399866610765,0.42386174015700817,-0.3916588490828872,0.2329835663549602,0.18580215657129884,0.9800250087864697,-0.8119268640875816,-0.30803058249875903,0.3607486770488322,-0.9610810014419258,-0.6182043943554163,-0.31079014064744115,-0.27323382440954447,-0.7773736226372421,0.11539380857720971,0.8996647610329092,-0.2509599612094462,0.7789112576283514,-0.7860806621611118,0.46978540997952223,-0.8725768690928817,0.4578666714951396,-0.0485365423373878,0.7947795339860022,0.10144846141338348,-0.12679537711665034,-0.298140961676836,0.4983676057308912,-0.4452827083878219,-0.2818520409055054,-0.8373204790987074,0.36558371037244797,0.16983212297782302,-0.4253697395324707,-0.6854579597711563,0.6180900014005601,-0.4933271845802665,0.5906511191278696,-0.6853041360154748,-0.6433829609304667,-0.10411916393786669,0.10422348929569125,-0.9738612961955369,0.5617617405951023,-0.6931372750550508,-0.39032720075920224,0.02295812126249075,-0.6583245480433106,0.6038976488634944,-0.8378676408901811,0.7369623109698296,0.9679386941716075,0.16183814592659473,0.8470146795734763,0.0035573518835008144,-0.2941518509760499,0.16421092487871647,0.70696135237813,-0.40085946256294847,0.03236135095357895,0.8536202507093549,0.04262190265581012,-0.8778681680560112,-0.05085595604032278,0.30351945105940104,-0.30390170915052295,-0.2537751533091068,-0.17967120837420225,0.42053764034062624,-0.772851558867842,-0.7918973457999527,-0.3334445673972368,0.5738129569217563,-0.36457349080592394,-0.8738059317693114,0.6196134956553578,-0.6487543541006744,-0.5837620352394879,-0.1415055156685412,-0.2321276762522757,-0.514609208330512,-0.10784446727484465,-0.9572289008647203,-0.48936631297692657,0.025450464338064194,0.7960118856281042,-0.49489090545102954,-0.8331472659483552,-0.7705611474812031,-0.8403266845270991,0.9721101098693907,-0.6394057823345065,0.42208201065659523,-0.382184365298599,0.3646267391741276,-0.09057615278288722,-0.43849227111786604,-0.651564737316221,0.8686609053984284,-0.6081466749310493,-0.32887992821633816,0.8588695428334177,0.8282706160098314,0.8285534717142582,0.11916744289919734,-0.6141401813365519,-0.17715492192655802,0.31490915827453136,0.9039976885542274,-0.4125340608879924,0.5181620204821229,0.41186346486210823,0.9568374291993678,0.1292434581555426,0.48522893199697137,0.2959911343641579,-0.49765906343236566,0.7275700205937028,-0.5361677831970155,-0.44078913144767284,0.9625573568046093,0.019367272034287453,-0.8456591488793492,-0.0019886898808181286,0.4345074542798102,0.9691285500302911,-0.6603935589082539,-0.016602333169430494,-0.7873229123651981,0.24346994468942285,0.07265092059969902,0.14786728797480464,-0.140816786326468,-0.25787361059337854,-0.8857236607000232,-0.9396683676168323,-0.32254003966227174,0.5437159910798073,0.6383129716850817,-0.2934695156291127,0.5704276491887867,-0.1596248303540051,-0.19979686476290226,-0.0648239366710186,0.671891107223928,-0.8686821828596294,-0.6235680733807385,0.4897094131447375,-0.20913679338991642,-0.7826066887937486,-0.6691965865902603,0.24323569098487496,0.23500738106667995,-0.9299986199475825,0.47505680844187737,0.45171451568603516,-0.021066135726869106,-0.009909385349601507,0.5480354391038418,0.43996380595490336,0.7392504825256765,-0.8048137961886823,-0.3698281333781779,0.13094311067834496,-0.8783682165667415,-0.02401996124535799,0.6371138687245548,-0.5088670398108661,-0.9650847516022623,-0.45589047437533736,-0.040344355162233114,0.8049891102127731,0.5367203718051314,-0.6629001228138804,-0.5316825234331191,-0.16967930737882853,-0.5289157959632576,0.586211749818176,-0.1552797551266849,0.16832343488931656,-0.2026253673247993,-0.45813867449760437,-0.009716920554637909,0.5826085107401013,0.8042054227553308,0.5732541070319712,-0.29115908639505506,0.05041520483791828,-0.31886542262509465,0.7019657511264086,-0.36272715497761965,0.8940351437777281,0.5395552907139063,0.4649531119503081,0.3258299301378429,0.7745843068696558,0.8305564001202583,0.6704169157892466,0.6233475375920534,-0.08585704676806927,-0.058571838308125734,-0.3640037393197417,-0.5316858063451946,-0.5915543008595705,0.29624619614332914,-0.9469013242051005,-0.5316221998073161,-0.7341706529259682,-0.031244595535099506,-0.07207185542210937,-0.0761203970760107,0.35488154739141464,0.9260924523696303,0.8917521247640252,-0.07706710649654269,0.16422618087381124,-0.5172553290612996,-0.4911027238704264,0.7877887026406825,-0.327539452817291,-0.8001230708323419,0.5826210919767618,-0.3527991599403322,0.9180366774089634,0.15808713482692838,-0.8510193550027907,0.464409651234746,0.2836282067000866,-0.9618719671852887,-0.28491849498823285,-0.28700097743421793,0.8120700567960739,0.7276647263206542,0.8582965936511755,-0.35350569570437074,-0.8531053652986884,-0.3240930768661201,-0.15873511228710413,0.7421668232418597,0.9963333872146904,0.21697143418714404,-0.888509398791939,0.4321040026843548,0.516436368227005,-0.051127242390066385,0.9409960289485753,0.9186100889928639,0.017700472846627235,-0.8191563626751304,0.7509754509665072,0.14765121089294553,-0.6007338399067521,-0.0409448747523129,-0.24214270850643516,-0.2596038207411766,-0.7125904033891857,0.47158226976171136,-0.018985575065016747,-0.14342677174136043,0.6227159746922553,-0.2777400342747569,0.9333051848225296,-0.018010965082794428,-0.30929301027208567,-0.212831512093544,0.24594688042998314,-0.8211672813631594,0.6618862804025412,-0.10324156237766147,-0.5293662925250828,0.85625718254596,-0.005712426267564297,0.813088720664382,-0.537738835439086,0.8520488352514803,-0.004677904304116964,-0.5398359526880085,0.10394909186288714,0.6822506403550506,0.3446776997298002,-0.3968177936039865,0.17749355779960752,-0.4701523636467755,-0.9386864532716572,-0.8352494649589062,0.7905751625075936,0.5944660133682191,0.2677345396950841,0.19686476420611143,0.7466804669238627,0.5140952076762915,-0.5623523313552141,0.8126410446129739,-0.3048870940692723,-0.6868163864128292,0.5463285157456994,0.4535155170597136,0.09804211650043726,-0.5318534052930772,-0.6606711354106665,0.6795226093381643,-0.006060421001166105,0.4779444127343595,-0.10261691035702825,0.2596411523409188,-0.018771326169371605,0.4169021840207279,-0.6671239514835179,0.47290570894256234,0.6127285505644977,0.11015446484088898,-0.3227737876586616,0.5914466534741223,-0.9516836036927998,0.35163799161091447,-0.7621530066244304,0.7739903065375984,-0.16405919287353754,0.2916068760678172,-0.06204566126689315,0.4435482653789222,-0.31566322268918157,0.6737798205576837,-0.20684754895046353,-0.024178721010684967,-0.029289626516401768,0.776426229160279,0.543127300683409,-0.66098264278844,-0.6283374335616827,0.46110228914767504,-0.1332993912510574,-0.19758839393034577,-0.755106610711664,0.8153241113759577,-0.09692289959639311,-0.058455318212509155,-0.24750088062137365,-0.5102868219837546,-0.06391922943294048,-0.6154915811493993,0.7005492965690792,-0.8301770589314401,-0.6374149899929762,-0.8622778416611254,0.770819541066885,0.49642673786729574,0.01790884230285883,-0.9749213000759482,-0.11518379207700491,-0.9842906920239329,0.8020001430995762,-0.3827242385596037,0.8036573566496372,0.13652983866631985,-0.5288089332170784,0.059685428626835346,0.9995451015420258,-0.9898332976736128,-0.25584345683455467,-0.8986711511388421,0.04944693995639682,0.24290394689887762,-0.5946770464070141,-0.37567629711702466,-0.6257819426245987,0.9016849808394909,-0.08844485087320209,-0.03661893540993333,-0.7044312125071883,0.7017491227015853,-0.9891773764975369,0.7363772201351821,-0.2559088212437928,0.9121304666623473,-0.059104375541210175,-0.8034920692443848,0.1915957173332572,-0.5456741089001298,-0.6431467514485121,0.9167675133794546,0.33947176625952125,0.34273177618160844,-0.033651985228061676,0.8754780814051628,-0.7532884604297578,-0.10430308664217591,-0.3287445055320859,-0.17315192194655538,0.6857240712270141,0.39101846795529127,0.6758266319520772,0.7371712285093963,0.35048892395570874,-0.18848374485969543,-0.05377680342644453,-0.1052002920769155,-0.2658836795017123,0.40448900079354644,-0.2577184522524476,0.3402615850791335,0.11141474870964885,-0.9636480784974992,0.40750037832185626,-0.25556186866015196,-0.4579186271876097,-0.23997171875089407,0.2942199078388512,0.24991634488105774,0.6417327355593443,-0.9654455692507327,0.4628129000775516,0.31879965914413333,-0.28715351643040776,0.3740036962553859,-0.9599786512553692,-0.7313068397343159,-0.6428995742462575,0.6459340020082891,0.7937272237613797,0.525876137893647,0.31115743797272444,0.25074090668931603,0.20768690155819058,0.7373890215530992,0.5842358670197427,-0.5914955018088222,-0.6243096273392439,-0.5016032448038459,-0.43521629413589835,-0.47516262298449874,0.9499931405298412,0.4156917375512421,0.3722913535311818,-0.6854788023047149,0.6086240448057652,0.2909463979303837,0.09212739998474717,0.529720745049417,0.26482162019237876,-0.8547380981035531,-0.363306718878448,0.7554173516109586,-0.8784943232312799,-0.36972370371222496,0.5194852575659752,0.24154488183557987,0.1138967196457088,0.1510935602709651,-0.009505660273134708,0.4330024616792798,-0.6528063346631825,0.8680775840766728,0.5279299919493496,-0.4030689038336277,-0.8848311444744468,-0.17263697925955057,0.7251120554283261,0.7525050165131688,-0.5039170039817691,0.3301068604923785,0.7594379833899438,0.11206806171685457,-0.7305901567451656,0.018640095368027687,0.09658785769715905,-0.48088452965021133,0.06525016482919455,0.21552080381661654,0.5283578615635633,-0.38516390742734075,-0.9449512581340969,-0.04832907719537616,0.38399598840624094,0.664572027977556,-0.010255723726004362,-0.9345213775523007,0.5877769645303488,-0.5232709716074169,0.8835329385474324,0.3580727418884635,0.7578540639951825,0.334176376927644,-0.02025526389479637,-0.10958586307242513,0.47677382780238986,0.6801295769400895,0.9467501086182892,-0.021036257036030293,0.8231958351098001,0.22426076559349895,-0.8280164217576385,-0.2991524054668844,-0.5968536413274705,0.9866336737759411,0.6431212583556771,-0.7144681154750288,0.6618977151811123,0.2972446824423969,-0.2702584960497916,0.3211407042108476,-0.46257399255409837,-0.1757241734303534,0.9057015269063413,0.40163576044142246,0.4184956564567983,0.4424961442127824,-0.9224619525484741,-0.6883046869188547,-0.04584387503564358,-0.7561402036808431,-0.5536403642036021,0.9504220965318382,0.5240121353417635,0.8336427654139698,0.24137972109019756,0.6772652766667306,-0.4418132505379617,0.22325730323791504,-0.8541312529705465,-0.6196144018322229,0.311959745362401,0.4217741498723626,-0.6206867634318769,0.46817884780466557,-0.48256354266777635,-0.8785934448242188,-0.20028384635224938,-0.48967036372050643,-0.5139233293011785,0.21022676769644022,0.9941675798036158,0.5758615480735898,0.3415901828557253,-0.09605319052934647,-0.09843375347554684,-0.4835813897661865,0.6507769543677568,0.33596996031701565,0.38507511792704463,-0.4889702657237649,-0.8424665075726807,0.871733739040792,-0.6800721050240099,0.5615294268354774,-0.1872159717604518,0.9239077633246779,0.2040483532473445,-0.15103146573528647,-0.8503960724920034,-0.19321695948019624,0.38044485030695796,0.5295090074650943,-0.5294423415325582,-0.3860555444844067,-0.9035290093161166,0.2210415038280189,-0.8299461868591607,-0.9610079480335116,0.29383751144632697,0.8128827260807157,-0.8763854238204658,0.018062063492834568,0.7835917547345161,0.5185119155794382,0.2903291443362832,0.7990996604785323,0.9395624445751309,-0.1370267029851675,-0.5956880380399525,-0.023605825379490852,-0.5461938278749585,-0.43558723013848066,0.20655657118186355,0.5578336329199374,-0.5978291779756546,-0.8165348405018449,-0.32186402194201946,-0.28144751116633415,0.10690588923171163,-0.10981971304863691,-0.6466858512721956,0.054591904394328594,0.9736012266948819,0.5089874034747481,0.07387137738987803,-0.7585970894433558,0.043509960640221834,-0.8742288229987025,-0.9785199309699237,-0.6517137121409178,0.8310083951801062,-0.8447674782946706,-0.6726859076879919,-0.7141573494300246,-0.7510507861152291,0.44491555355489254,0.7168286140076816,0.7195625994354486,-0.5993503071367741,0.8946867929771543,0.8799962312914431,0.9536190698854625,0.3872475251555443,-0.6955845742486417,0.9383431626483798,0.14998677233234048,0.8665873710997403,0.6145009123720229,0.23819439625367522,-0.05185562325641513,-0.5085440529510379,0.808822394348681,0.9422708549536765,-0.9437493686564267,-0.6725062318146229,-0.9001315720379353,0.8571860315278172,0.4481023186817765,0.6896707536652684,0.05722724739462137,-0.5663208677433431,-0.396923896856606,0.2186337891034782,0.402075310703367,0.8679874246008694,0.23404413647949696,-0.5595278395339847,0.9799002166837454,-0.2973924856632948,-0.2742205918766558,-0.8002872285433114,0.2549096494913101,0.5735235922038555,0.5865806369110942,0.22829742869362235,0.42022772831842303,-0.18685197178274393,-0.7861402714625001,0.819625488948077,0.20830449042841792,-0.5348672713153064,-0.7050475906580687,-0.7891015675850213,-0.10028104018419981,0.6749193603172898,0.7623430695384741,-0.4406484658829868,-0.15281720831990242,-0.002368208486586809,0.29837399953976274,0.1196331144310534,-0.796768207103014,-0.65073246601969,-0.14275170862674713,-0.40984283993020654,-0.7322289366275072,0.6296824128367007,-0.06610831059515476,0.029389611445367336,-0.4029021691530943,0.7761120917275548,-0.6324717542156577,0.30148469656705856,-0.005543941631913185,0.3519386653788388,0.7296733516268432,-0.5649556638672948,0.981605073902756,0.6870537991635501,-0.06242680735886097,0.7898324369452894,-0.0022378675639629364,0.33462432445958257,-0.9483101703226566,0.6859536054544151,-0.39281619945541024,-0.20195421809330583,-0.9794480428099632,-0.7477509868331254,-0.012865038122981787,-0.585419156588614,-0.17701749550178647,-0.04007348231971264,0.6091741789132357,0.8221090491861105,-0.20799226127564907,-0.777066957205534,-0.04567718552425504,0.31483841920271516,0.7267052936367691,0.686103128362447,-0.9274533484131098,0.5254745883867145,-0.8519084486179054,-0.45942657347768545,-0.03655530698597431,-0.8981616953387856,-0.7165835197083652,-0.09490525117143989,-0.5952661233022809,-0.47729573771357536,-0.1615601503290236,-0.25128340581431985,-0.657382374163717,0.2669674973003566,-0.5452382690273225,-0.18950643483549356,-0.8760769735090435,-0.3067578482441604,-0.641736688092351,0.5892074150033295,0.3777796598151326,-0.5384926348924637,-0.7105634594336152,0.16342159500345588,0.0016306880861520767,0.4650758346542716,-0.5204562381841242,0.28868098417297006,-0.3509443327784538,0.6534127951599658,0.2115721949376166,0.44855750631541014,0.44176288042217493,-0.4299816591665149,0.11800734559074044,-0.11397254886105657,-0.2161812037229538,0.18071304634213448,-0.07413551909849048,0.9448923175223172,-0.5175293050706387,-0.6416064258664846,0.47778031742200255,-0.48049992322921753,-0.7935311761684716,0.2190235354937613,-0.7104752920567989,-0.6551052429713309,-0.36953764455392957,0.5469549014233053,0.32772463699802756,0.6635188981890678,0.2697635958902538,-0.9920770353637636,-0.2288644267246127,-0.24033291498199105,-0.06083821877837181,-0.8110539908520877,0.06713365716859698,0.8014649776741862,-0.3319181874394417,0.15072661731392145,0.8387433560565114,0.12793607311323285,0.10640076640993357,0.8216419625096023,-0.5951605844311416,0.6131892325356603,0.4097708179615438,0.2509572794660926,-0.17826455039903522,0.4368013278581202,-0.42182117654010653,-0.08442442398518324,-0.4394044177606702,0.5353159899823368,-0.5894337655045092,0.9559586341492832,-0.32863665046170354,-0.7829419085755944,0.5424663675948977,-0.6975433505140245,0.26169778779149055,0.17434669146314263,0.6229014629498124,0.9586832891218364,-0.13923368696123362,-0.7546994518488646,0.2367247799411416,-0.41800235072150826,0.2571570803411305,-0.16391501249745488,0.25602788710966706,-0.10689926939085126,0.03994303289800882,0.18132400000467896,0.04145048977807164,0.7991306376643479,-0.5429511899128556,0.08883224660530686,0.825731195975095,0.280549846123904,0.11357467249035835,-0.17450144421309233,0.2235499401576817,0.9804388983175159,-0.7035832339897752,0.8106076028198004,0.002632224466651678,0.3827812746167183,0.614384685177356,-0.29622256057336926,0.6608281563967466,-0.4786515119485557,0.6855870196595788,0.7981779570691288,-0.4521259665489197,0.4332759315147996,0.40322618233039975,-0.5177709222771227,0.13623369997367263,-0.35556022077798843,0.829090179875493,0.7529343729838729,-0.7046715756878257,-0.1038672998547554,0.9756551492027938,-0.5139862932264805,-0.19133008597418666,0.8446969641372561,-0.10876788944005966,0.6937278802506626,-0.8932381728664041,-0.6045522470958531,0.14192885672673583,-0.1971697728149593,0.3369485563598573,0.16830670880153775,0.8532084128819406,-0.031059000175446272,-0.9738180045969784,0.5264918836764991,0.43388829845935106,0.5013832286931574,0.9456244301982224,-0.8223915970884264,0.9528943723998964,-0.31080450722947717,0.5769819999113679,0.7471817075274885,-0.25221912655979395,0.3323871595785022,-0.7825798857957125,-0.3756172824651003,0.06468245666474104,-0.3639572048559785,0.6760530392639339,0.09506360720843077,0.8990253787487745,0.7325212988071144,-0.9445888129994273,0.06459307856857777,-0.07916943309828639,-0.758852172177285,0.4391258368268609,-0.4649218856357038,-0.8612223975360394,0.853645196184516,-0.9398911162279546,-0.028099956922233105,0.04945924784988165,0.21640101075172424,-0.9007938778959215,-0.664533712901175,0.24306070059537888,0.6253814254887402,-0.1512569054029882,-0.22742380248382688,0.6271895705722272,0.7855912824161351,-0.888558461330831,0.9907811428420246,-0.4686641371808946,0.09700761269778013,0.25686525693163276,0.01785710034891963,-0.7686865157447755,0.9109537275508046,-0.1433958914130926,-0.432933927513659,-0.7867687661200762,-0.3110830313526094,0.6567742433398962,0.48489794600754976,0.5004108557477593,0.7690925747156143,-0.6497189342044294,0.7138470960780978,-0.5848284969106317,-0.8719876375980675,0.6648951410315931,-0.8069107844494283,0.8466509929858148,0.2641642326489091,0.05853740917518735,0.7308823755010962,0.29208056489005685,0.345585557166487,-0.2968351012095809,-0.6525706592947245,0.14147664699703455,-0.9722609291784465,0.15643290802836418,0.9052958441898227,-0.5370650147087872,-0.010148999746888876,0.25344431959092617,-0.6917993878014386,-0.10661004390567541,0.1292754579335451,0.011666541453450918,-0.03049304010346532,-0.4261123747564852,0.12136359605938196,-0.04292301880195737,0.545798591338098,0.9346325444057584,-0.339844289701432,0.4761801278218627,0.8483025543391705,0.47004604153335094,0.8172671748325229,0.9562098891474307,-0.42361854016780853,-0.32365408120676875,0.13887549424543977,-0.6241332455538213,0.02287101373076439,-0.708096272777766,-0.1531003494746983,-0.3667796952649951,0.9581058635376394,-0.4668308310210705,0.2635880755260587,-0.3924790150485933,-0.03990810504183173,-0.45268000941723585,0.5621797009371221,0.7467741752043366,0.41569566214457154,0.027340350206941366,-0.5957529912702739,0.05734800826758146,0.10454026143997908,0.017239190638065338,-0.3305889102630317,-0.5210099648684263,-0.044690347742289305,0.856508756056428,-0.3796396804973483,0.9233204904012382,-0.9831547047942877,0.41729747457429767,0.2538723503239453,0.6389943743124604,-0.10693787271156907,0.0409027929417789,-0.3948656292632222,-0.8543952037580311,-0.3239921764470637,0.32286117505282164,-0.02216941397637129,0.22762024402618408,0.2997680609114468,0.2219335832633078,-0.045644947327673435,-0.17329896660521626,0.3959872960112989,0.1677509769797325,0.3275422374717891,-0.8847673949785531,-0.4100627559237182,0.7342309877276421,0.6711911968886852,-0.4877681457437575,0.2984603075310588,0.9312521922402084,0.22787475818768144,-0.4470349014736712,-0.21131030702963471,-0.02119035553187132,0.9948327727615833,0.21445254981517792,0.9377046022564173,-0.6206338289193809,-0.03214460937306285,0.2872134568169713,0.1268408033065498,0.6460491470061243,0.6166644999757409,0.7076770872808993,-0.35441603045910597,-0.21394431916996837,-0.5725253536365926,-0.7722746660001576,0.867166115436703,-0.22985449759289622,-0.37355485232546926,0.7709502489306033,0.8903047842904925,-0.8328340966254473,-0.30717169446870685,-0.3012190442532301,-0.7597572966478765,0.5133465998806059,0.23032550979405642,0.47928113117814064,-0.3546560504473746,0.2656951998360455,-0.8419138845056295,0.08775782259181142,-0.9935245173983276,0.3001689538359642,0.5539889242500067,0.2748598079197109,-0.8859889274463058,0.5686946306377649,0.7787658087909222,0.9240820030681789,-0.08857209468260407,-0.8290194477885962,-0.40889242570847273,-0.574207385070622,-0.6856305547989905,-0.33591027092188597,-0.2479518437758088,-0.0556126469746232,0.6643758499994874,0.9414806514978409,-0.3197541031986475,-0.9949400839395821,0.3220588914118707,-0.311308556701988,-0.4921537018381059,0.25150526827201247,-0.05965007934719324,-0.36999146128073335,0.1406760150566697,-0.5660209804773331,0.9369087931700051,0.7556280768476427,-0.44704075576737523,0.1526788822375238,-0.05928216362372041,-0.788938975892961,0.7278811768628657,0.11313061881810427,0.5967137422412634,0.6618020087480545,0.0671562128700316,0.793456572573632,0.5326085025444627,0.008020757231861353,-0.5857985247857869,-0.8996120896190405,-0.5482549830339849,0.24693157244473696,-0.7108503617346287,-0.4102911241352558,0.3206768073141575,0.22814428014680743,0.8354981658048928,-0.3870762111619115,0.19755461625754833,-0.13935852237045765,0.05356341227889061,-0.7846864243037999,0.39056783728301525,0.37037264881655574,0.18159525142982602,-0.08164084376767278,-0.3678311766125262,0.23603334231302142,-0.5561433034017682,-0.7836999134160578,-0.8773685591295362,-0.9014633088372648,-0.8882267717272043,0.4693185482174158,-0.8713530134409666,0.5972339459694922,0.4111977508291602,-0.06695553008466959,0.9143651514314115,-0.6824179692193866,0.8702309052459896,0.25669390708208084,-0.47147251199930906,-0.44073439203202724,0.5398735902272165,0.006828608922660351,-0.5990242147818208,0.30389400850981474,0.8294700877740979,-0.1982089546509087,-0.2248665662482381,-0.2907189568504691,-0.9770542420446873,0.8125138310715556,-0.47466002590954304,0.895607216283679,-0.56185655714944,-0.8852283270098269,-0.37441574642434716,-0.8243310190737247,0.11774943768978119,-0.7071827468462288,-0.6392822666093707,-0.9935082606971264,0.9046850819140673,0.6533137555234134,0.9226829763501883,-0.3083819020539522,-0.6687813024036586,-0.8969462867826223,0.9863153612241149,0.09267304418608546,0.784831253811717,-0.37113966839388013,0.6788014778867364,-0.9655046788975596,0.5807910566218197,0.5744878663681448,-0.5565670905634761,0.8922472135163844,-0.9698791732080281,-0.13736205222085118,0.11817019153386354,0.5850542243570089,-0.5043591931462288,-0.3036592290736735,0.9783422420732677,-0.6999627202749252,0.5198149960488081,-0.802874659653753,0.6635235664434731,-0.4684946648776531,0.14529706072062254,0.28541262121871114,-0.9816403496079147,0.08476805919781327,0.5617094994522631,0.36334578692913055,0.05449363961815834,0.5161196268163621,-0.6347639421001077,0.17997364746406674,0.9014227157458663,0.6055717281997204,-0.3812384153716266,-0.6306869424879551,-0.19200907880440354,0.3232678631320596,0.8097130423411727,-0.7460584533400834,-0.8476977171376348,-0.7776016057468951,0.4416225007735193,0.22543022315949202,0.9016745369881392,-0.24841375136747956,-0.8855384700000286,-0.016590509563684464,0.28660441003739834,0.3011129121296108,-0.3305007559247315,0.6374617191031575,-0.9585955454967916,-0.3266141936182976,-0.7097643655724823,-0.047315295320004225,-0.5599133893847466,-0.03161796601489186,-0.5967453708872199,0.22016532672569156,-0.31642916053533554,0.06989127956330776,0.3431934886611998,0.629227077588439,-0.8053856948390603,-0.24618720170110464,0.1361177251674235,-0.9667339622974396,0.1603798666037619,-0.6175107704475522,0.7290778062306345,-0.11626573326066136,0.6948240674100816,0.9594253175891936,0.12919403798878193,-0.08002091618254781,-0.7708886535838246,0.1782978642731905,0.5140955676324666,-0.6791098187677562,0.5341380909085274,-0.285414288751781,-0.21624607546254992,0.19754561595618725,-0.5736391777172685,0.3122031148523092,0.023385191801935434,-0.3010248616337776,0.5908308341167867,0.6047618635930121,-0.544804526027292,-0.3926219376735389,-0.30910458555445075,0.02788557019084692,0.5442002289928496,-0.4253403563052416,-0.6446968703530729,0.7975126835517585,0.6209139772690833,0.2741215592250228,-0.4418009598739445,-0.8526332122273743,0.2860612100921571,-0.4864571583457291,0.9243506928905845,0.6697008586488664,-0.6900228429585695,-0.6426814012229443,0.45943011390045285,0.2058544773608446,-0.9417204912751913,-0.5530162514187396,-0.8787084762006998,0.4311077739112079,0.9118758458644152,0.38803377375006676,0.50967081123963,-0.23153467057272792,0.9054799219593406,-0.7704162849113345,0.5278456695377827,0.7115274858660996,-0.6296079070307314,-0.05322715314105153,-0.46705380640923977,0.9159245542250574,-0.05795216001570225,-0.2744841552339494,0.35566016659140587,0.35926401801407337,-0.36103046964854,0.7008232208900154,-0.5924800094217062,0.5574856861494482,0.28538925014436245,0.707121932413429,-0.40969330072402954,0.128618108574301,-0.3249677922576666,0.8029513228684664,-0.8656785916537046,0.8366818213835359,0.6550911641679704,0.9296957110054791,0.053593323566019535,-0.023429919499903917,0.2955049923621118,0.3427348346449435,0.12610311806201935,0.8588230330497026,0.9370884704403579,-0.5018750317394733,-0.023409029934555292,0.926776722073555,-0.8379305209964514,0.2594500291161239,-0.4146283660084009,-0.021081492770463228,-0.4052632534876466,0.2410066076554358,-0.6512950430624187,-0.4271057187579572,-0.8776259012520313,-0.48439887817949057,0.8369391770102084,0.785044701769948,-0.95038753002882,-0.5264158486388624,-0.8845212920568883,0.09633575659245253,-0.9974125022999942,-0.4825646518729627,-0.04310193471610546,-0.674474055878818,-0.08976125111803412,0.06867606984451413,0.48071463173255324,0.8885284368880093,0.11191550688818097,0.9773803469724953,-0.6839388362132013,0.8262185552157462,-0.8175335726700723,-0.7869813931174576,-0.6099655120633543,0.2622538688592613,-0.6821552361361682,-0.8131304937414825,0.23944649659097195,-0.9540233290754259,0.19755573570728302,0.31204230384901166,-0.10344820795580745,-0.840177989564836,0.6119496137835085,-0.059349642135202885,0.027190405875444412,-0.41046001482754946,0.15033239545300603,0.22510200692340732,0.8180224262177944,0.906603547744453,0.9010631609708071,-0.19920712802559137,0.0026178970001637936,-0.27073708130046725,0.698288350366056,-0.15519385831430554,0.2568348851054907,-0.20464065298438072,-0.3259520079009235,-0.6149827637709677,-0.6963417739607394,0.5455939467065036,-0.6446796068921685,0.5315711693838239,0.26198984077200294,-0.11596685228869319,-0.23073404654860497,0.885784275829792,-0.46553147304803133,-0.0077384160831570625,-0.715767115354538,0.0038284314796328545,-0.6235119365155697,-0.9144844962283969,0.9435240696184337,-0.9676799583248794,-0.21168207004666328,-0.9041077042929828,0.5044976924546063,-0.8969798344187438,0.6344456351362169,0.04267202317714691,0.6873275684192777,0.2503905687481165,0.1714501897804439,-0.782814777456224,0.24443065375089645,-0.052579899318516254,-0.1489568753167987,-0.06288259848952293,-0.5178416268900037,0.26212635869160295,0.5986750642769039,0.7264420078136027,-0.27625127928331494,0.7274440200999379,-0.4376122332178056,0.7155029131099582,0.5638498733751476,0.3267370341345668,0.996650509070605,-0.45870189648121595,0.6320169568061829,-0.3514369400218129,-0.7914039436727762,-0.2968979477882385,-0.556648735422641,-0.663810271769762,0.2260709162801504,-0.24562302278354764,0.3363440618850291,0.9572198311798275,-0.41882909974083304,-0.49769921507686377,-0.5516916611231863,-0.6649611815810204,0.8672846416011453,0.061088832560926676,0.3054022081196308,0.7136303256265819,0.47307407669723034,-0.38861379912123084,-0.7148772943764925,0.4752035792917013,0.8451269934885204,-0.1634327513165772,-0.15632613189518452,-0.33386587258428335,0.29248300520703197,0.8776252660900354,-0.11756070656701922,0.38772061886265874,-0.8099355106242001,-0.16397631727159023,-0.981942948885262,0.7305941125378013,-0.7327959151007235,-0.8172562313266098,-0.17276158649474382,0.9545817780308425,-0.5478201080113649,0.05014449404552579,0.20711302058771253,-0.4054519711062312,0.2473239926621318,-0.7022528233937919,-0.7048680949956179,-0.14284882508218288,0.7468813061714172,0.2359907845966518,0.024491170421242714,0.9537742394022644,-0.9542416702024639,0.7934375545009971,0.4407774624414742,-0.2722840462811291,-0.6075273528695107,-0.03126142825931311,0.6772545096464455,-0.01980402832850814,0.8435159516520798,-0.08332968410104513,-0.3862783177755773,0.46089946245774627,0.11333769373595715,-0.7875410681590438,-0.10040891962125897,-0.3064196933992207,0.6728863860480487,0.46024817368015647,-0.40407670894637704,0.4879981162957847,-0.1264029899612069,0.29955770168453455,-0.9691875609569252,0.8851123028434813,0.6199353369884193,0.9023270336911082,-0.22556838300079107,0.6634988896548748,-0.7912619104608893,0.610465559642762,0.46063878713175654,-0.1192373507656157,-0.3191291824914515,-0.1600285517051816,0.014175823424011469,0.24318296322599053,0.5327692073769867,0.41036413656547666,0.3416161248460412,0.7939004227519035,0.8352095410227776,0.12037170631811023,-0.6461290619336069,0.3996585994027555,0.7935285228304565,-0.4096255539916456,-0.39465987868607044,-0.41513553773984313,-0.6801581955514848,-0.4716834011487663,-0.3339366866275668,-0.5646239966154099,-0.07541841315105557,0.3311446998268366,-0.9128450406715274,0.5991919618099928,0.8739181766286492,0.9178956714458764,0.21611707843840122,0.42310542054474354,-0.6097985063679516,-0.8622872289270163,0.7405833154916763,-0.03542093513533473,-0.8550972016528249,0.6102493326179683,-0.9351255814544857,0.6948408181779087,-0.9836711212992668,0.2682422734797001,-0.7316559469327331,0.33361171279102564,-0.9873720621690154,0.8240711060352623,-0.9514333792030811,-0.5635453001596034,-0.4228821014985442,-0.15554006211459637,0.532294936478138,0.9064149199984968,0.9711666950024664,-0.4574301918037236,0.04367727180942893,0.5578638548031449,0.8603855334222317,0.5923134381882846,-0.2702890932559967,-0.7282159929163754,-0.7054384513758123,-0.29331979248672724,0.14164122147485614,-0.641047858633101,0.6683216653764248,0.08681048033758998,-0.09082916425541043,0.23962482390925288,0.12777102086693048,-0.39190483558923006,-0.1777359084226191,0.5684829135425389,0.3443080219440162,-0.7263173158280551,0.4786289897747338,-0.7763114986009896,0.8125115181319416,0.9853563196957111,-0.6039136201143265,-0.02803054079413414,-0.4666225234977901,-0.031844635028392076,0.10155570041388273,-0.7215101425535977,-0.9803639254532754,0.17773332353681326,-0.4569302019663155,0.22256403788924217,-0.13931295881047845,-0.8145545860752463,0.5019956016913056,-0.9576259152963758,-0.19060660153627396,0.4876328958198428,-0.5901065967045724,0.9110029581934214,-0.31478584045544267,-0.19562013586983085,0.7052116044797003,0.45446984888985753,0.6459453222341835,-0.6958759007975459,0.33586212527006865,0.0997462416999042,-0.7959182527847588,0.9946016250178218,0.35104581993073225,-0.33421705989167094,-0.6934785977937281,0.17817192059010267,0.9949196265079081,-0.8946336759254336,-0.6555297691375017,-0.5179296233691275,-0.6764073404483497,-0.6090448638424277,0.8443823014385998,-0.16133265104144812,-0.9084448157809675,-0.5461985501460731,0.7212755791842937,0.5857122144661844,-0.22182749677449465,0.1868414687924087,0.7020370466634631,0.16851249057799578,-0.6424776194617152,0.5946386228315532,0.6911633592098951,-0.5446214121766388,0.6643135538324714,0.7310728062875569,0.014913898892700672,-0.9753414886072278,-0.47245534555986524,0.16461343178525567,-0.2260622181929648,-0.22268027206882834,-0.2638833150267601,-0.03944204468280077,-0.5263875788077712,-0.7667655982077122,-0.2958203856833279,-0.2637626128271222,-0.8246607831679285,-0.7766206846572459,0.8859259295277297,-0.3083565440028906,-0.33331508887931705,-0.5874668559990823,0.2729467963799834,0.3614841983653605,0.6603386770002544,0.8134977342560887,-0.9904683185741305,-0.318181955255568,0.6774985869415104,0.7124990685842931,-0.6073180162347853,-0.9798911004327238,-0.2858467404730618,-0.7559553137980402,-0.7037585377693176,-0.4641111674718559,-0.275129706133157,0.48927884502336383,-0.9066608315333724,0.13931074226275086,-0.9757168521173298,-0.0340423621237278,-0.29139342391863465,-0.09716279432177544,0.027340560220181942,-0.07846214016899467,-0.4155958346091211,-0.09532362036406994,0.16404622327536345,0.8603867143392563,0.7107071406207979,-0.3653856012970209,0.7216690797358751,-0.11905524088069797,0.09137750836089253,-0.8726742807775736,0.18916011368855834,-0.7491510133258998,-0.7448309678584337,0.9087897171266377,0.3621523315086961,-0.6228150529786944,-0.24744005920365453,0.05054503073915839,0.6900825342163444,0.2905819760635495,-0.8546665078029037,-0.5075376573950052,-0.8212623707950115,-0.07440062100067735,0.20956075843423605,0.44453823985531926,0.29407195653766394,0.953203163575381,-0.6909921797923744,-0.1908791707828641,-0.35189314372837543,0.4363256976939738,0.865314431488514,-0.41137432772666216,-0.06944180745631456,-0.8540397207252681,0.5660479352809489,0.618855956941843,0.45283885672688484,-0.5275720763020217,-0.970399297773838,0.012099398765712976,-0.07183966133743525,-0.9660442406311631,-0.0904612154699862,-0.552292279433459,-0.19213209534063935,-0.0861836913973093,-0.060579335782676935,-0.6407504417002201,-0.926937629468739,-0.9844382964074612,-0.8099326188676059,-0.5287506002932787,0.21397327445447445,0.8277611820958555,0.186864391900599,0.02273606089875102,-0.8532031448557973,0.0797014026902616,0.4976802784949541,-0.32108533615246415,-0.05229419143870473,0.765682308934629,0.8875734647735953,-0.41407618997618556,-0.3933632904663682,-0.13865926070138812,0.05148078314960003,-0.4970285636372864,0.9797248542308807,0.3328794492408633,0.5318131106905639,0.42655047215521336,0.6981375413015485,0.4606968439184129,-0.5882485592737794,0.2019916153512895,0.412962615955621,0.07206479599699378,-0.11025131400674582,0.37237189151346684,-0.9565426730550826,0.6232852418906987,0.9387580561451614,-0.9828615901060402,-0.4826822653412819,-0.01839569490402937,-0.4179617422632873,0.27749960450455546,0.35200748033821583,-0.8512121965177357,-0.285061985719949,0.8892829320393503,0.5448830216191709,0.8042504522018135,0.25176266115158796,-0.5236182441003621,-0.01717508491128683,-0.47087943786755204,0.24794528912752867,0.6087125306949019,-0.02960629714652896,-0.6552047720178962,-0.9034713166765869,0.7672310713678598,-0.91530278371647,-0.5080492906272411,0.6550085162743926,-0.8685190435498953,0.8040204476565123,-0.4682381469756365,0.3994766306132078,-0.5810225349850953,-0.3378205061890185,0.32101147761568427,0.9931093016639352,-0.06483390321955085,0.8535809447057545,-0.6849639713764191,-0.0969924833625555,0.0644686701707542,0.3833805676549673,0.14092228095978498,-0.7800617511384189,0.6450449796393514,-0.7951695681549609,-0.7014407990500331,0.9487593774683774,0.4155548708513379,0.003633033949881792,-0.2817267454229295,-0.7185252928175032,-0.6861587390303612,0.2950718835927546,-0.6265528933145106,0.015965877566486597,-0.6863006171770394,-0.15684647159650922,-0.4182010185904801,-0.9900947459973395,-0.5310652945190668,-0.3797114510089159,0.3902528127655387,-0.7217706330120564,0.7204916328191757,-0.6298741716891527,-0.11058156797662377,-0.47119250940158963,-0.7775493427179754,-0.46420599706470966,-0.6428780099377036,-0.6302343355491757,0.47705281525850296,-0.5835853489115834,0.5837355870753527,-0.21968167182058096,0.1192018473520875,0.9930014885030687,0.5844659400172532,-0.508452711161226,-0.2510978886857629,0.1595233464613557,0.860759801696986,0.6680133654735982,-0.3722895411774516,-0.23746848106384277,-0.944758168887347,-0.35999468993395567,0.9735001181252301,-0.5265239621512592,-0.44463220704346895,0.8766888240352273,0.9718254590407014,0.1811889512464404,0.35692300694063306,-0.3441893709823489,-0.5332602309063077,0.19667746545746922,0.5305244992487133,0.5641505783423781,0.009967737831175327,0.7910690600983799,-0.910537947434932,0.6311073498800397,-0.45534187322482467,-0.7323388564400375,-0.9113754704594612,0.988930900581181,0.19241932220757008,0.5694815595634282,-0.3612132128328085,0.1467731767334044,-0.44858834240585566,-0.6165254372172058,0.9024948738515377,-0.10933256009593606,-0.6489615626633167,-0.1317949197255075,-0.7390933432616293,-0.006171518936753273,-0.7230743332765996,-0.3332805074751377,-0.29199010226875544,-0.3134869555942714,0.9626886802725494,0.6051568556576967,-0.1289158589206636,0.8741414309479296,-0.9818312181159854,-0.2709227045997977,0.7183092273771763,0.8726358329877257,-0.26240740437060595,-0.750170816667378,-0.128030504565686,-0.34567560255527496,0.3597112805582583,-0.05831730039790273,0.1659145075827837,-0.028831638861447573,-0.3985994188115001,-0.8458632393740118,-0.7160462699830532,0.5464683156460524,0.9369646734558046,0.9714815779589117,0.45345207257196307,0.431737057864666,-0.36169918859377503,-0.34476846968755126,0.8610461708158255,0.1723464811220765,-0.045248073525726795,0.5826845820993185,-0.282240878790617,-0.8439181460998952,-0.881206538528204,0.6584386327303946,-0.3228287762030959,0.22976870741695166,0.2575170057825744,-0.8336758287623525,0.9477296941913664,0.13886365853250027,0.43990236008539796,0.291721916757524,-0.9953140038996935,-0.419358242303133,-0.953671766910702,-0.3571887705475092,-0.8554167975671589,-0.3148221387527883,-0.6365824714303017,-0.5082947183400393,-0.413888908457011,-0.8800175813958049,0.6644596089608967,-0.8393537029623985,0.18186604185029864,0.5660608392208815,-0.5649779704399407,-0.5936414441093802,0.5498554282821715,-0.38070992892608047,0.0008646813221275806,-0.3887756313197315,-0.049252152908593416,-0.5297261439263821,-0.42241714242845774,-0.7292896010912955,-0.8417557096108794,0.4525235812179744,0.32939158705994487,0.028284703847020864,0.5394459594972432,-0.4200755530036986,-0.5552660408429801,-0.41515989834442735,0.5263058063574135,0.8993436563760042,-0.23585129622370005,0.08687026426196098,0.2466341881081462,-0.5518955704756081,-0.8163218479603529,0.6034441962838173,-0.3677238505333662,0.35539198759943247,0.023330021649599075,-0.46756441006436944,-0.25997652346268296,-0.7487910878844559,-0.7963368888013065,0.9203492188826203,0.775672119576484,-0.7456450625322759,0.048029680736362934,0.3559429016895592,-0.05702843749895692,-0.840405507478863,0.10558685101568699,0.08968193735927343,-0.7626032964326441,0.39655393129214644,0.30602998239919543,0.11102233594283462,-0.3448856072500348,-0.5671933339908719,0.0019980785436928272,-0.743260137271136,0.6377923954278231,-0.35062458273023367,-0.9650857569649816,-0.7570832325145602,-0.5894160135649145,-0.47550245886668563,-0.5745239034295082,0.5475625758990645,-0.5535200778394938,-0.7555824788287282,0.41716174967586994,0.3410142990760505,0.9484451063908637,0.07143577747046947,0.6747150081209838,0.39031245186924934,0.8575352821499109,0.9136293027549982,0.368762350641191,0.9720674050040543,-0.0714514828287065,0.3204044089652598,-0.7401366764679551,0.6500553572550416,0.6490978542715311,0.7771292319521308,0.3445317195728421,0.23025841126218438,-0.3496357072144747,0.8253987785428762,-0.8503754194825888,0.3670800724066794,-0.49041462736204267,-0.5151527151465416,0.6396578447893262,0.8348642261698842,0.6350628733634949,-0.6467904327437282,-0.8848051079548895,0.2013195757754147,0.2622845391742885,-0.046901974361389875,-0.9950652658008039,0.7437585764564574,0.558377449400723,0.6405413961037993,-0.19172436697408557,-0.10055087553337216,-0.24968800973147154,-0.6300183972343802,0.6110002193599939,0.550011926330626,-0.2682783557102084,0.9385712742805481,0.46029199147596955,-0.7185312993824482,-0.2658501476980746,-0.9876278443261981,0.7970795203000307,0.6217936840839684,-0.5496164318174124,-0.19763363897800446,0.5381471482105553,0.5879829102195799,0.39365655509755015,-0.23187624337151647,0.16429742332547903,0.5868716952390969,-0.6086283917538822,0.1681759124621749,-0.04568179231137037,-0.14724421966820955,-0.7163555952720344,0.4811718473210931,-0.9064785954542458,-0.910476986784488,0.864174890331924,-0.595082972664386,0.8407873846590519,0.49632784351706505,-0.14868592377752066,0.2660916680470109,0.532705313526094,-0.5230508991517127,0.13513011764734983,0.19774577068164945,0.4960284335538745,0.3013807130046189,-0.543682889547199,0.6022414453327656,-0.9858592329546809,0.9588109850883484,0.7623265478760004,-0.20134747214615345,-0.7821403215639293,0.4533055704087019,-0.06928280834108591,0.32482998818159103,0.3147823605686426,-0.6443847399204969,-0.6466426849365234,0.30712068267166615,0.3152344315312803,-0.9375700298696756,-0.26458614226430655,0.5974402725696564,-0.8652745876461267,0.25529977725818753,0.09192963689565659,0.6101872506551445,0.8869070950895548,0.08559336978942156,0.6867255410179496,0.47196446266025305,-0.32046846905723214,-0.24488239688798785,0.18623714242130518,0.6451251055113971,-0.7558979378081858,0.43156663654372096,0.420989990234375,-0.2751816511154175,-0.6159870401024818,0.35031402111053467,-0.4658784307539463,0.8472635238431394,0.705786089412868,0.3515760242007673,0.920528634916991,-0.982704640366137,0.3630607267841697,0.4372376371175051,-0.8890798222273588,-0.15880011534318328,-0.0083360206335783,-0.60662258323282,-0.0739779737778008,0.6617977167479694,-0.7572446204721928,0.17074276693165302,-0.6577131291851401,-0.5822545378468931,-0.1955293631181121,-0.09067548485472798,0.7030078885145485,0.20593475736677647,0.7119402610696852,0.6695614769123495,-0.2805681196041405,0.7814789903350174,0.27843615785241127,0.15352563466876745,-0.7643479723483324,0.825692180544138,-0.60727334395051,-0.8612965107895434,-0.6570909800939262,0.6454436876811087,-0.32942101545631886,-0.9922536923550069,0.2716058762744069,0.6541317687369883,-0.4707208084873855,-0.18738220911473036,0.3729424439370632,-0.9743969826959074,-0.8917699339799583,0.2173280450515449,-0.7433348624035716,-0.21686179982498288,0.7954091932624578,-0.46516124112531543,0.5426406669430435,-0.6528357677161694,0.6309959441423416,0.8976110490038991,0.8824194092303514,0.5510059739463031,-0.14392552059143782,-0.18141281930729747,-0.9341609040275216,-0.8905120249837637,0.5251506799831986,0.204801254440099,0.5933595499955118,0.06251422641798854,0.3360118637792766,0.6123004611581564,0.32824384374544024,-0.2852089782245457,0.04371130606159568,0.8419302394613624,-0.5653794393874705,0.19070734921842813,0.9069213159382343,-0.9537136815488338,0.05026429705321789,-0.1355031249113381,-0.7419327306561172,0.05625640554353595,0.7992665492929518,0.7453051209449768,-0.39130133436992764,0.28388340631499887,0.36397964460775256,-0.8860757458023727,-0.953603598754853,0.34959144005551934,-0.8805654961615801,0.5815095552243292,-0.7212303872220218,0.594920473638922,-0.853015816770494,0.9181478465907276,-0.5071735181845725,0.26387062575668097,0.228244470898062,-0.2868868252262473,-0.21505400631576777,0.3512806943617761,-0.6166141638532281,0.6380940480157733,-0.7969075553119183,0.34892803663387895,0.19511815533041954,0.23937610862776637,0.0027484935708343983,-0.08663748670369387,-0.7656049034558237,0.49604634661227465,-0.17172101279720664,-0.16672653472051024,0.3108340473845601,-0.33031656313687563,-0.41162457037717104,-0.8003868293017149,0.08430812228471041,-0.0830276869237423,-0.8205975545570254,-0.49822463747113943,-0.2132910517975688,-0.608606549911201,-0.8666903451085091,-0.23179364390671253,0.7247237986885011,-0.7637302675284445,-0.6898219590075314,0.17960762418806553,0.09860625816509128,0.1943315351381898,-0.6016814010217786,-0.41796381678432226,-0.4617032571695745,-0.9262814470566809,0.2849483364261687,0.9425348504446447,-0.3424338027834892,-0.9999246848747134,-0.2930489885620773,0.32319311797618866,0.005150364246219397,-0.3105466212145984,-0.292281711474061,-0.18306536367163062,0.706580342259258,0.4087801561690867,-0.4273138325661421,-0.18192545231431723,-0.4548714170232415,-0.7674527713097632,0.2064101155847311,0.8162138843908906,0.4127900330349803,-0.16164088901132345,-0.02317610289901495,0.8976566479541361,-0.9089887803420424,0.04403648991137743,0.570024489890784,0.42261331528425217,0.7954096663743258,0.2376089822500944,-0.2598188198171556,-0.8401568755507469,0.5272646090015769,-0.5346484133042395,-0.6158897723071277,0.5811086427420378,0.051898861303925514,-0.03287888877093792,0.41946536349132657,0.039969134610146284,0.9442153414711356,0.8800094230100513,-0.8282613316550851,0.010355034843087196,-0.5401194388978183,-0.834954684600234,-0.6024629566818476,0.1704890476539731,0.15655258810147643,-0.09815334575250745,0.9376791208051145,0.18626301595941186,0.676585391163826,-0.02910151658579707,0.895521170925349,0.868389846291393,0.9304974717088044,-0.37881085462868214,-0.9495302005670965,0.28357437578961253,0.1886811894364655,0.6397185306996107,-0.8720421674661338,-0.014043853618204594,0.3577576708048582,0.1480504171922803,0.5501093086786568,-0.17588508734479547,-0.004707393702119589,0.06554548861458898,0.9113621730357409,-0.4964099149219692,0.31954077584668994,-0.680883742403239,0.83206573035568,0.8020094335079193,-0.5621920884586871,0.4869159245863557,0.33172459388151765,-0.38942605070769787,0.3530187136493623,0.6680268282070756,-0.17896733386442065,0.8878244468942285,0.05095338495448232,-0.47821136051788926,-0.8876173216849566,0.6503581702709198,0.09168604854494333,0.5117371999658644,0.9987277570180595,0.31196714704856277,-0.5261434395797551,0.5209008483216166,0.0628851461224258,0.4882692345418036,0.2980580423027277,-0.07030594162642956,-0.9427210842259228,0.3983517992310226,0.5652062683366239,0.614465216640383,0.2304519470781088,-0.7018623710609972,0.38053059997037053,0.7780885151587427,0.054433559998869896,-0.20667016552761197,0.3825694560073316,0.4522942532785237,-0.5127235716208816,0.8506153044290841,-0.655394394416362,0.3171287407167256,0.9089432111941278,-0.1813359190709889,0.22640924667939544,-0.679735747165978,-0.3424045913852751,-0.1432866952382028,-0.6129621495492756,0.2820248627103865,-0.12273733224719763,-0.17706290818750858,0.7446294100955129,0.2363352496176958,-0.807455413043499,-0.03252531960606575,-0.420036428142339,0.74021440371871,0.4429649715311825,0.09628783352673054,0.38155923457816243,-0.5892759999260306,-0.5796143664047122,-0.21127553237602115,0.37308127572759986,0.5415713731199503,-0.16377561399713159,-0.1696423147805035,0.6374756181612611,0.7516087265685201,0.5062588178552687,0.20089476136490703,0.1271731210872531,-0.7323877583257854,-0.5244905892759562,0.3749535046517849,-0.7466375753283501,0.9828606941737235,0.6359994630329311,-0.2906471719034016,-0.6589642609469593,-0.16257379669696093,0.13827469712123275,0.6681435480713844,-0.6211237828247249,-0.4154934366233647,0.7553788353689015,0.5141517212614417,0.5316091952845454,0.37117046350613236,0.19841806590557098,-0.06647530337795615,0.2641716366633773,0.9226468275301158,-0.720277835149318,-0.6433689100667834,0.11184039385989308,-0.17440539179369807,0.06995229236781597,-0.35612424882128835,0.22731795627623796,0.9582036891952157,-0.43289309926331043,0.9501037471927702,0.8083320502191782,-0.9413296710699797,-0.4879944957792759,0.8825441966764629,0.26052948366850615,-0.9686602386645973,0.7586677330546081,0.3768457071855664,0.9863942810334265,0.1360106081701815,-0.6648101368919015,-0.7352722748182714,0.13044920843094587,-0.38623161148279905,0.5291652851738036,0.379082006867975,-0.09275596681982279,0.312585792504251,-0.9175167619250715,-0.38529589027166367,-0.6575005557388067,-0.7199618490412831,0.09114696644246578,0.20136503735557199,0.21039115451276302,-0.9251911011524498,0.2345665735192597,0.8459096406586468,-0.6361539154313505,-0.8587728906422853,0.4842999931424856,-0.5494561921805143,-0.17423330899327993,-0.5825472939759493,0.4788390132598579,-0.590107289608568,-0.9544172151945531,-0.888019307050854,0.7036915640346706,-0.059506502002477646,-0.08921745652332902,0.8145673242397606,0.22998026758432388,0.7502270410768688,-0.9748289822600782,0.21327795973047614,-0.6597430636174977,-0.6616586819291115,0.42539701890200377,-0.37233811477199197,-0.40212203096598387,-0.29624994564801455,-0.13946578465402126,0.8294153399765491,0.6311122644692659,0.5872322656214237,-0.379236941691488,-0.8049114192835987,0.1287085353396833,0.03985157096758485,0.2556423260830343,0.6573544661514461,0.8389118104241788,0.4351445743814111,-0.9319964391179383,0.4089318481273949,0.7249037106521428,-0.09130324050784111,-0.5120170749723911,-0.8139166925102472,-0.22746038157492876,0.41897744638845325,-0.726944824680686,-0.7237520017661154,0.9344741110689938,-0.2555956360884011,-0.44227329548448324,0.4291276978328824,-0.6101258611306548,-0.981725406832993,0.600036839954555,-0.4501988887786865,-0.8215023041702807,-0.17857985757291317,-0.15758717758581042,-0.5673185526393354,0.3164155650883913,-0.2969356756657362,0.8386374502442777,-0.38768368773162365,0.44056324334815145,0.8588727796450257,0.4643535166978836,-0.9104935731738806,0.007095805369317532,-0.5304540903307498,0.2316158409230411,-0.7466429094783962,-0.1989338011480868,-0.1749377022497356,-0.42251072730869055,0.6314870226196945,0.45172260561957955,-0.9189943294040859,0.9479526504874229,-0.33041189750656486,-0.839878577273339,-0.19587622117251158,0.3287772727198899,-0.9091049218550324,0.023015870712697506,0.1813841499388218,0.08295246306806803,-0.7746262615546584,-0.7484897952526808,-0.8902999381534755,-0.7998425797559321,0.6155327162705362,0.9214405645616353,-0.255544513463974,-0.2804386313073337,-0.3368723439052701,0.766409719362855,-0.5137439290992916,-0.5136537435464561,0.330785752274096,-0.5330685176886618,-0.000755832064896822,0.9945433670654893,-0.037885481491684914,0.16933933459222317,0.010045258793979883,-0.2546668592840433,-0.7142884037457407,0.48806442599743605,-0.40560488356277347,0.9550178037025034,0.9665353214368224,-0.61826237058267,-0.7745623160153627,0.28491730662062764,0.939621944911778,0.10681527340784669,0.6742787468247116,-0.9796404805965722,0.9360178047791123,-0.8547762776724994,0.010836068540811539,0.9021577700041234,-0.6109427507035434,-0.040990996174514294,0.7308280365541577,0.853044182062149,-0.6855459283106029,0.8906231918372214,-0.597402473911643,0.44072903878986835,-0.6395562454126775,0.6679634423926473,-0.4021242088638246,0.5404928061179817,-0.7684040069580078,0.02921681897714734,0.12155048083513975,0.759163002949208,-0.36431284667924047,-0.7303911903873086,-0.04198831086978316,-0.030041662510484457,0.0021087503992021084,0.601831694599241,0.7737801987677813,-0.13756601978093386,0.3244518800638616,-0.4450994045473635,0.6979993972927332,-0.13961306679993868,0.7296089353039861,0.9133143043145537,0.4864286067895591,-0.19823966827243567,0.7830657963640988,-0.8581363093107939,0.19633575854822993,0.1457249755039811,-0.7278424901887774,-0.1305357520468533,0.0035008061677217484,-0.4046361902728677,0.034538939129561186,0.7912380117923021,-0.3837324366904795,0.6129857110790908,-0.8298746729269624,0.6479597864672542,-0.9089392083697021,-0.5376171870157123,-0.19213813822716475,0.012588176410645247,-0.8481993647292256,0.10316595248878002,-0.030589070171117783,-0.5594915156252682,-0.474596104118973,-0.796543060336262,0.015350744128227234,-0.8049247488379478,-0.01712795952335,-0.8577899499796331,0.6352666569873691,0.7935793451033533,0.106218540109694,0.5121777085587382,-0.19178448105230927,0.6982786315493286,-0.9723625765182078,-0.6396068609319627,-0.9127294761128724,-0.024918651208281517,0.9073056378401816,-0.01535383053123951,0.7740665613673627,-0.18584834830835462,-0.20675731915980577,-0.5209667794406414,-0.7914152280427516,0.6095801810733974,0.5763034671545029,0.28480961872264743,-0.8631875519640744,0.07207579258829355,0.75398143613711,0.3066052421927452,-0.01564785372465849,-0.7986622876487672,-0.6376632456667721,-0.3968913401477039,0.8285756381228566,0.14552075928077102,-0.5442098840139806,-0.41445004008710384,0.913587502669543,0.7674373122863472,0.36722477432340384,0.8072966793552041,-0.6902649872936308,-0.6450480921193957,-0.03961902530863881,0.36468461714684963,-0.16271671559661627,-0.7790501653216779,0.8116554343141615,0.3293792298063636,-0.9945916528813541,0.4834798597730696,0.8517222092486918,-0.49818393448367715,-0.5363014494068921,-0.4408912556245923,-0.8904461525380611,0.030135502573102713,-0.6756081311032176,0.35047648288309574,-0.5184270380996168,0.6009761178866029,-0.5993060446344316,0.5507085421122611,-0.4194634179584682,-0.3393855271860957,-0.18345391750335693,0.992320766672492,-0.2332332544028759,-0.19455477595329285,-0.7090805759653449,0.02080067666247487,0.6692434544675052,-0.2089357189834118,0.023019189480692148,0.7378139975480735,0.0877978540956974,0.9892840920947492,0.14707749942317605,0.22078323643654585,0.8958531706593931,-0.7838716828264296,0.33560597570613027,-0.7616464546881616,0.6742561222054064,0.7626862074248493,0.24139520153403282,-0.8043232280761003,0.69194689206779,-0.15977812092751265,-0.7125079152174294,-0.18674045521765947,0.36072743171826005,-0.4934456595219672,-0.9112684079445899,0.3478324245661497,0.16045205434784293,0.31394922360777855,-0.008777357172220945,-0.4073049067519605,0.6446127551607788,0.2413050909526646,-0.7226174068637192,0.0583014041185379,0.5336074098013341,0.8524232790805399,-0.6003170553594828,-0.7459790324792266,0.12920634681358933,-0.15815905993804336,0.3423620667308569,-0.9858118765987456,-0.34873728081583977,0.883790597319603,0.7410854725167155,-0.30164427356794477,-0.7718664663843811,-0.15352521371096373,0.7764935125596821,0.29816177394241095,0.8943988103419542,-0.870061760302633,-0.3916484545916319,-0.4463426545262337,0.8004284645430744,0.7243000040762126,0.3515866007655859,-0.11757553555071354,-0.21953546814620495,0.5113948090001941,0.7501921844668686,0.5345587148331106,-0.12530032638460398,0.39188604475930333,0.2598418886773288,-0.7430166522972286,0.8928286978043616,-0.2858746242709458,0.9525372083298862,0.5457765143364668,-0.7974915360100567,-0.9595000124536455,-0.7724537597969174,-0.6297218916006386,-0.5915942345745862,-0.22063605766743422,-0.2642456223256886,0.2681183712556958,-0.28363359021022916,-0.8919215421192348,-0.0619543413631618,0.23925887094810605,0.10588660463690758,0.12850645510479808,-0.022217207122594118,0.30023217760026455,-0.07578606205061078,0.5570701682008803,-0.6634345701895654,-0.8643542337231338,0.14279193617403507,-0.3966393219307065,0.8387926835566759,-0.2012416268698871,-0.4476546123623848,0.3056777697056532,0.6859749667346478,0.5946962842717767,-0.8486750246956944,0.6534630339592695,-0.7385524711571634,-0.4591368427500129,0.6944985645823181,-0.06555371591821313,-0.015650794841349125,-0.2225715289823711,-0.5637397649697959,-0.28144983015954494,0.6383286607451737,-0.6615811749361455,-0.4970433656126261,0.3879925259388983,-0.35695371543988585,0.04941508686169982,0.35263256076723337,0.7514479905366898,0.5365917845629156,0.7418659771792591,0.24276782711967826,-0.9694216712377965,-0.20273410715162754,-0.9401439283974469,-0.39348531560972333,0.9452508008107543,0.24260661145672202,0.9814439304172993,0.13176448550075293,-0.7246337276883423,-0.8549448670819402,0.5963119654916227,0.8120812731795013,0.6946600549854338,0.9012118820101023,0.837538621854037,0.09074667887762189,0.8414549776352942,-0.5695741521194577,-0.7283579995855689,0.2310849386267364,0.38111290941014886,-0.21442978736013174,-0.9091867096722126,-0.6469899686053395,-0.16907200403511524,0.6953522246330976,-0.5231299046427011,0.8828504015691578,0.8024582336656749,0.6374935554340482,-0.6389478775672615,-0.35111164627596736,-0.5813232609070837,-0.908841900061816,-0.3670421279966831,-0.826464721467346,-0.7691312050446868,-0.7641889685764909,-0.621804126072675,0.04158199671655893,0.1416167109273374,0.9069309663027525,0.1895852112211287,-0.7997383545152843,0.10235325805842876,0.7944422927685082,0.5861653420142829,-0.07568531343713403,0.1835130462422967,0.02818605862557888,0.0737242829054594,-0.91085121082142,0.2735725357197225,-0.12982712825760245,0.5804888075217605,-0.5763303395360708,-0.09625181229785085,-0.1836135503835976,0.8569148168899119,0.33405916299670935,-0.0007237275131046772,0.8411451349966228,0.3062872039154172,0.9763725362718105,-0.7051293519325554,-0.7034708950668573,-0.7516383077017963,0.751243750564754,0.3973513459786773,-0.10515720304101706,-0.751887496560812,-0.34791863057762384,-0.950651912484318,-0.8879039851017296,0.9839641097933054,-0.7711675418540835,-0.3366800029762089,0.7250620983541012,0.4660702305845916,0.8132885731756687,-0.5405356446281075,0.8353312616236508,-0.9881947454996407,-0.880055426619947,-0.49895804887637496,0.005758056882768869,-0.6224455325864255,0.8806640836410224,0.9982110532000661,-0.8136905659921467,0.09578060125932097,0.7650452246889472,0.23060230491682887,0.10764510650187731,-0.06112725520506501,0.8785186507739127,0.8691924153827131,0.45563885010778904,-0.17592625180259347,0.29199314676225185,-0.3443398606032133,0.7380724316462874,0.2557460186071694,0.7593477163463831,-0.7858641133643687,0.44756070617586374,-0.39309318270534277,-0.7880016472190619,0.800973626319319,0.8754780329763889,0.29966531740501523,-0.0007851519621908665,-0.023494536988437176,-0.568324547726661,0.7122438913211226,0.6559083661995828,0.10032392153516412,0.7307273452170193,-0.6322817341424525,-0.6241118609905243,-0.6451578983105719,-0.07019549608230591,0.8274626131169498,0.6648315242491663,0.7364920834079385,0.4017357206903398,-0.1616489766165614,0.015933038666844368,0.5514785666018724,-0.25281110033392906,-0.8461151625961065,-0.9739111801609397,0.7845998085103929,0.8485356303863227,-0.1506252521649003,-0.9107499085366726,-0.06979746231809258,0.5291704358533025,-0.557856940664351,0.8574091526679695,0.7017898177728057,-0.6161776734516025,0.14368182001635432,0.84848618414253,-0.4248421611264348,-0.7748118634335697,-0.5945458491332829,-0.8823061771690845,0.8763961121439934,-0.7793892435729504,0.6659106956794858,-0.46591430995613337,-0.5530418679118156,-0.2740313350223005,0.9654862582683563,0.6230911077000201,0.6877392809838057,-0.32465130742639303,0.6367467525415123,-0.17038250854238868,-0.3547798739746213,-0.9412748492322862,0.9641361120156944,0.14424835983663797,-0.6679005553014576,-0.0406555337831378,0.3507040818221867,-0.33683702535927296,0.5721952514722943,-0.5112894023768604,0.9703985936939716,-0.5245633842423558,0.3009603014215827,-0.7229900821112096,0.7049549529328942,0.5767735629342496,-0.15681526437401772,0.6293963198550045,0.10219252202659845,0.2715887427330017,0.14319180184975266,-0.813709061127156,0.8726940345950425,0.8854556628502905,0.91566760558635,-0.4719031690619886,0.157163021620363,-0.6458742092363536,0.630372004583478,0.503353079315275,-0.8779325769282877,0.5955933397635818,-0.7475878028199077,-0.9528408190235496,-0.7814769325777888,-0.27184557681903243,0.4512844276614487,-0.632823855150491,-0.7585219000466168,-0.25739256758242846,0.3820771984755993,-0.95248186821118,-0.8386485613882542,0.5707319583743811,0.34409031784161925,0.7219160450622439,-0.4123492590151727,-0.6860863426700234,0.7014652579091489,0.26481330627575517,0.8760952288284898,-0.34239122178405523,0.140909890178591,-0.6893383646383882,0.9739963803440332,0.09199444111436605,-0.38361757388338447,-0.45252818893641233,-0.8796500181779265,-0.7259077592752874,-0.545786710921675,0.03685729345306754,-0.35222181864082813,-0.8026814186014235,-0.007384812459349632,-0.44529120717197657,-0.3439681585878134,0.9534650412388146,-0.6828023414127529,-0.5012963674962521,0.0482385135255754,-0.06746097514405847,0.09087014105170965,0.38598753744736314,0.7439706828445196,0.23741425853222609,-0.8686554143205285,0.6460340395569801,0.8493781262077391,-0.2647086251527071,0.24182258499786258,-0.29203723138198256,-0.2543561914935708,-0.6628398592583835,0.2297772322781384,-0.3844078602269292,0.6521059079095721,0.5811756406910717,-0.8655898915603757,-0.5674306266009808,0.9836501609534025,0.7667181300930679,-0.46472929092124104,0.47824518801644444,-0.016479386016726494,-0.8420490818098187,-0.04676774609833956,0.9464341155253351,-0.43945154966786504,0.2801331956870854,0.4288929677568376,-0.006142555736005306,0.8413675869815052,-0.03681703517213464,-0.9126741634681821,0.5278022275306284,0.7746985708363354,-0.8350080903619528,0.30797554505988955,-0.2739090584218502,0.05011213198304176,-0.884772589430213,0.30522538628429174,-0.5465537761338055,-0.3494606693275273,-0.11188639560714364,-0.9856334012001753,0.5298368972726166,-0.42895335238426924,-0.4074359806254506,0.2549810875207186,-0.35165949957445264,-0.8961194078437984,-0.8801971017383039,-0.8994376854971051,-0.03199680149555206,-0.5861724489368498,-0.38616417348384857,0.8076121532358229,0.9328400227241218,-0.6913032499141991,0.6761669004336,0.3102220925502479,-0.7313248356804252,-0.1523586018010974,0.751065191347152,0.3680601813830435,0.22300261398777366,0.21147633343935013,0.1678747865371406,-0.8673382583074272,-0.9460379644297063,0.3125095646828413,-0.16004647640511394,0.1927343108691275,0.15817802026867867,-0.7496535019017756,0.3117877193726599,-0.428413325920701,-0.686038592364639,0.8739946009591222,0.23234147252514958,0.8197759590111673,0.562787058763206,0.9542716424912214,0.3740987526252866,0.769717919640243,0.9828975163400173,0.8436002181842923,0.25439208932220936,0.07244637748226523,0.5345055195502937,-0.2693726592697203,0.36012140521779656,0.15083969477564096,0.005280740559101105,0.17893275059759617,0.15099282143637538,-0.06986910989508033,-0.0379635407589376,-0.5023509468883276,-0.5446152845397592,0.7192817330360413,-0.2505610235966742,-0.11743672145530581,0.8214431661181152,0.3528022081591189,-0.8011862472631037,0.34432158153504133,0.6315082926303148,0.6105814087204635,0.9668787559494376,0.5400931527838111,0.30605193274095654,-0.15232277754694223,-0.29334362922236323,0.5101045146584511,0.5422832304611802,0.7744572372175753,0.19929343415424228,-0.6251347879879177,0.9523767330683768,-0.8623489108867943,0.7079335795715451,-0.14588506612926722,-0.3481946433894336,-0.0036302166990935802,-0.03556424006819725,0.6906329863704741,-0.8734531248919666,-0.4051620499230921,0.7105140825733542,-0.24210778158158064,-0.4813847243785858,0.014325466006994247,-0.8385904366150498,-0.9713425491936505,0.0372402248904109,-0.2768494007177651,-0.047506078612059355,-0.25069424184039235,-0.7482617385685444,0.4892881023697555,0.5299202473834157,-0.9991192268207669,0.7482426133938134,0.42689976934343576,0.4821234764531255,-0.3823475590907037,0.3926955028437078,-0.9913504729047418,0.1275253021158278,0.2911078599281609,0.33594852313399315,0.02140065561980009,0.05463288025930524,-0.7688675113022327,0.16597231198102236,0.40084339026361704,-0.21891193930059671,0.45052056200802326,-0.4550546216778457,0.20697968685999513,-0.7873266171664,-0.7460823394358158,-0.7199374530464411,0.5338940224610269,-0.7729456508532166,0.5524350572377443,0.12307769665494561,0.9819813421927392,-0.5408229427412152,-0.9441017839126289,-0.01350590493530035,-0.13184965355321765,0.7805625488981605,0.13802704121917486,-0.9946531415916979,0.679149076808244,-0.5335656483657658,0.06306692771613598,0.7973276181146502,0.1298744035884738,-0.36798697616904974,0.4546590852551162,-0.49655731301754713,-0.8160426542162895,-0.3727697441354394,-0.6103102522902191,-0.5333807254210114,0.881541189737618,0.3666429277509451,0.42290011793375015,-0.18381822435185313,0.4804990515112877,-0.7894017333164811,0.7267607906833291,-0.5488188336603343,0.9468323374167085,0.05032962840050459,-0.12114166561514139,-0.911158602219075,-0.8081936701200902,0.9520825110375881,-0.11118892626836896,-0.05207633227109909,-0.9915231843478978,-0.026173461228609085,0.9612907669506967,-0.4997481913305819,0.653833816293627,-0.713804392144084,0.6911461795680225,0.9388674735091627,0.13286280957981944,0.355226858984679,0.1425466826185584,-0.474163596983999,0.2998254024423659,0.5490020834840834,0.18202165933325887,-0.6097309105098248,0.5189523654989898,0.40540317399427295,0.843864822294563,-0.635303114540875,-0.3794247847981751,-0.4216671581380069,-0.898745805490762,-0.2546257465146482,0.8594582825899124,-0.05598635831847787,0.02461518906056881,0.9223604183644056,-0.7170080803334713,0.920706809964031,0.933628567494452,0.9531418150290847,0.7229089802131057,0.27786841010674834,0.1939600668847561,0.9210113831795752,-0.6233884170651436,-0.057746097445487976,-0.9526245854794979,-0.18506009178236127,0.6911898460239172,0.9279235131107271,0.19954029843211174,0.30449767457321286,-0.933683302719146,-0.3458218006417155,0.40134493773803115,0.786705132573843,0.7481272486038506,0.018723101820796728,0.9766061562113464,-0.9454575404524803,0.05053884955123067,0.6256668479181826,-0.7861572075635195,-0.22159375250339508,-0.5858894623816013,0.5308852009475231,-0.9997522318735719,0.24719427386298776,-0.5964658842422068,-0.422030383720994,-0.44802479539066553,-0.1646489081904292,0.4795805378817022,0.9315886250697076,-0.5129403062164783,0.6742706135846674,0.11564669711515307,0.6391521138139069,-0.9441822613589466,-0.08787626400589943,0.8744327872991562,0.3516725692898035,0.24978372128680348,0.7128291931003332,-0.8027320136316121,-0.3973192060366273,0.804523556958884,-0.10103861009702086,-0.9574522697366774,0.03550459165126085,0.547344945371151,-0.5889923796057701,0.2751789325848222,0.7960298783145845,0.4941738015040755,-0.05521321250125766,-0.8936323840171099,-0.9911776138469577,-0.7732542450539768,-0.1917444090358913,-0.4248601319268346,-0.16620674962177873,-0.542316728271544,-0.2969301943667233,-0.7875480866059661,-0.004226382356137037,-0.5665455418638885,-0.48527525970712304,0.19612673856317997,0.0105484533123672,-0.3701523281633854,-0.851337862201035,0.5545607013627887,-0.4956224854104221,0.999086401425302,0.7800668152049184,-0.2771603721193969,-0.7658260529860854,0.23673906829208136,0.39969208696857095,0.48655775701627135,-0.7194784213788807,0.27513965545222163,-0.525772518478334,0.32436780352145433,0.3079780978150666,0.8095083246007562,0.258464939892292,-0.6564145609736443,0.7871205266565084,-0.17927080299705267,-0.42449089977890253,-0.7121868468821049,0.9814349068328738,-0.6623946041800082,-0.5067342249676585,-0.8975429902784526,0.7845443524420261,0.47644245345145464,0.7361267162486911,0.5680997711606324,-0.4657134381122887,-0.07914429344236851,0.6495247557759285,0.550146418157965,-0.30858396273106337,-0.6356584094464779,0.21368350880220532,-0.7976728887297213,0.20572213921695948,0.41132722655311227,-0.42290264647454023,0.1942051756195724,0.3467377214692533,-0.6696223658509552,0.7905545942485332,0.13672980573028326,0.09034291515126824,0.406085466966033,0.73163259960711,-0.6789415469393134,0.5661916709505022,-0.6201334749348462,-0.108146867249161,0.8392037334851921,-0.14201252395287156,-0.10979099432006478,0.7288981573656201,-0.7461874280124903,0.4529696311801672,0.34413194470107555,0.9706307970918715,0.47186626913025975,-0.7535662418231368,0.40331559302285314,-0.3117779395543039,0.8610524348914623,-0.31043722620233893,-0.25328297074884176,-0.9016008237376809,-0.33509256737306714,-0.4991344637237489,-0.319880953989923,0.5877743242308497,0.8551166197285056,0.1094079683534801,0.47935219621285796,-0.9230295880697668,-0.6813918743282557,0.059371383395045996,-0.22420135233551264,0.7098859893158078,0.4156245836056769,0.8895892184227705,-0.9648960381746292,-0.7915259101428092,0.09441179456189275,0.5055212648585439,0.9149894011206925,-0.2995910751633346,-0.6557777319103479,0.00036984728649258614,-0.9445662018842995,-0.9323847838677466,-0.9250341411679983,0.7582375416532159,-0.9430768736638129,-0.7063865982927382,0.16788391955196857,-0.3175286315381527,0.8516807430423796,0.46180874900892377,0.39050969760864973,0.659691084176302,0.2482835380360484,-0.9569903844967484,0.7447978593409061,0.9217048557475209,0.3502453831024468,-0.7502005957067013,-0.765511482488364,-0.17019995162263513,-0.7902707955799997,0.02238120697438717,-0.4799603973515332,0.6535946452058852,0.8717669565230608,0.023024385329335928,0.952597517054528,-0.04322980251163244,-0.274787244386971,-0.6963228895328939,-0.7199583575129509],"y":[0.87084393016994,0.6694449931383133,0.5221693906933069,-0.9889505337923765,-0.874088448472321,0.5598803176544607,-0.06498386664316058,-0.620636033359915,0.4134862460196018,-0.711276737973094,-0.7242982713505626,0.052334136329591274,0.4477960313670337,-0.26008971966803074,-0.7366107236593962,-0.4395538945682347,0.40835443418473005,0.23424671916291118,0.8325509941205382,0.8392012133263052,0.8675564383156598,0.6460209717042744,-0.548263581469655,0.08519544545561075,0.6720580491237342,-0.11126117687672377,-0.4153292295522988,0.02393949357792735,0.4964296515099704,-0.214004872366786,0.5221237833611667,-0.9918801663443446,-0.6373135084286332,0.9239136469550431,-0.22315587662160397,-0.14177995966747403,0.9025574587285519,0.8209526818245649,0.347704007755965,-0.6148969558998942,-0.7486726930364966,0.7453646883368492,-0.4492638558149338,-0.4216627939604223,0.6593365208245814,0.9367412654682994,0.05503705982118845,-0.6845156461931765,0.49262503581121564,0.08438207535073161,-0.08320946572348475,0.2269317344762385,0.6663451986387372,-0.777277868706733,0.715259172488004,-0.4689861168153584,-0.3940651072189212,0.0012572212144732475,-0.5395163339562714,-0.6384468367323279,-0.3933826209977269,0.7197023392654955,0.37133878050372005,-0.33504272578284144,-0.6428030384704471,0.12467059725895524,0.6178406369872391,-0.6205671499483287,0.41786949103698134,0.8578376169316471,0.8404080951586366,-0.8105016956105828,-0.34664663579314947,-0.4004654143936932,0.6226553474552929,0.23059844132512808,-0.9458542438223958,-0.31352481059730053,-0.7475720099173486,0.5546206668950617,0.3869635737501085,0.9473980353213847,-0.9526883661746979,-0.29730889527127147,-0.6918236026540399,0.7842729995027184,-0.6240278678014874,0.04821639182046056,-0.01203395426273346,0.30917036999017,-0.9076314312405884,-0.5442941295914352,0.2876771464943886,0.4251596867106855,-0.5571484440006316,-0.33366158651188016,0.27123580127954483,-0.7140430295839906,-0.11831292975693941,-0.7230314337648451,0.05778824957087636,-0.24546239478513598,-0.5194405163638294,-0.08719426300376654,0.7511113351210952,-0.9084282866679132,-0.8594278432428837,-0.1730896756052971,-0.4297783439978957,-0.29188181832432747,0.6820025858469307,-0.9581375406123698,0.8993703462183475,-0.9300181209109724,0.9612324452027678,0.9721337496303022,0.7129798792302608,-0.6626033610664308,0.5703519131056964,0.3835335639305413,-0.20270524779334664,0.3208801718428731,-0.40762627217918634,-0.8536763428710401,-0.1558416336774826,-0.2565269465558231,-0.27807156881317496,-0.24581009754911065,0.31636497750878334,-0.5267833122052252,0.8870715242810547,-0.634101196192205,-0.8761212918907404,-0.3981238049454987,0.7455154121853411,-0.6479661338962615,-0.9881596635095775,-0.11522139422595501,0.678073956631124,-0.6861439500935376,0.7402650997973979,0.9068721504881978,0.06987352995201945,0.25527649093419313,-0.21298776986077428,0.6357985967770219,-0.4553677742369473,0.9415258383378386,0.5097495331428945,0.15423086052760482,0.1825427431613207,0.7135364054702222,0.5518604563549161,0.5503761414438486,-0.7231791927479208,-0.12723394017666578,-0.09026421839371324,0.40173195162788033,0.22466327715665102,0.1894169976003468,0.9639357523992658,0.4900815770961344,-0.4745712992735207,0.7009684033691883,0.2263958635739982,0.8671064558438957,-0.12552177114412189,0.15815880382433534,0.880764665082097,0.19741049595177174,0.626818070653826,0.4794867015443742,-0.9855960761196911,-0.901201827917248,0.3486006474122405,0.35116408951580524,-0.48254901822656393,0.8592964233830571,-0.007072898093611002,0.7769839712418616,-0.9462823169305921,-0.1682712147012353,0.7665051505900919,0.0047396449372172356,-0.7907900591380894,0.12946584541350603,-0.772312915418297,-0.9896059571765363,0.8716653664596379,0.8687774231657386,-0.908137415535748,0.12881002807989717,-0.4586792830377817,-0.22472227737307549,0.5373476115055382,-0.4940300895832479,0.348095063585788,-0.5682015037164092,-0.5107248011045158,-0.7982239574193954,0.21762029128149152,0.6767530655488372,0.3939735423773527,0.5376019151881337,0.1793758599087596,-0.6917724246159196,0.7443447709083557,-0.9140325421467423,-0.4641840481199324,-0.7818340728990734,0.06979029579088092,-0.5802815118804574,-0.9284188714809716,-0.14002517145127058,0.5923148924484849,-0.1905733672901988,-0.6242674635723233,-0.5278554987162352,0.9904228281229734,-0.9534427742473781,-0.9650778858922422,-0.38849071646109223,0.04367956891655922,-0.7420693119056523,0.8482678416185081,0.8337839622981846,0.021115385461598635,0.4530575000680983,0.5177024891600013,0.47864520316943526,0.6681158035062253,-0.369583826046437,-0.12078386219218373,-0.5137801845557988,-0.22971715359017253,0.4762061694636941,0.44123550597578287,-0.40741724567487836,-0.7160137784667313,0.3099795561283827,-0.671249614097178,0.36815252248197794,-0.9535121493972838,0.9150922619737685,-0.2716291486285627,0.4307187171652913,-0.36204368714243174,0.3801163677126169,0.27632551500573754,0.6143617881461978,0.5831915629096329,-0.8965927436947823,-0.9619369185529649,0.4117433805949986,0.3267791527323425,0.2804688047617674,0.810299277305603,-0.308313493616879,-0.042636970058083534,0.7570876656100154,-0.744333618786186,0.20588212693110108,-0.6843710211105645,-0.5826046206057072,-0.8733352301642299,-0.6884079822339118,-0.9352098726667464,-0.9475898211821914,-0.9233133178204298,-0.3342735441401601,0.8560570781119168,0.1670569428242743,0.7324528838507831,-0.9355780947953463,-0.5877223229035735,0.8063760711811483,0.852169081568718,-0.8221216131933033,-0.5110182058997452,-0.05417927820235491,-0.7171520693227649,-0.005261692218482494,-0.6115864929743111,-0.363290274515748,0.4034641799516976,0.7314812014810741,-0.9954397683031857,0.7737150155007839,-0.7678631455637515,-0.05403476860374212,0.38074146723374724,0.8820338905788958,0.7178932842798531,0.8860111744143069,0.3203626209869981,-0.01684716623276472,-0.1517665241844952,-0.8122433600947261,0.1500608129426837,-0.20194890536367893,0.291974229272455,-0.2622163272462785,0.8770185322500765,-0.5221838378347456,-0.2674742112867534,-0.21614731568843126,-0.7452374771237373,-0.10421500960364938,-0.4858613791875541,0.7626081686466932,0.7134141880087554,0.8467458179220557,-0.589013778604567,-0.4448629003018141,-0.7201891019940376,-0.316736813634634,-0.3364433045499027,0.5653845355845988,0.1312875929288566,-0.7655141539871693,0.674620998557657,-0.03984721191227436,0.1823875457048416,0.07401782972738147,-0.7947584446519613,0.824856624007225,0.4556023646146059,-0.6404731720685959,0.9781035166233778,-0.8576017413288355,-0.1387405376881361,0.674640248529613,-0.11150355124846101,-0.22719291551038623,0.16989947063848376,-0.06648569507524371,0.08318369649350643,-0.7856822167523205,0.3974285079166293,0.38045074697583914,0.06308693904429674,-0.20613559754565358,-0.0985545595176518,0.18527876352891326,-0.9281947738490999,0.9126079003326595,-0.11518173199146986,0.07374692056328058,0.47048040851950645,0.5821241242811084,-0.952770050149411,-0.6040107752196491,-0.19436964113265276,0.3506773835979402,-0.776148094329983,-0.43368444638326764,-0.44181945733726025,-0.7212132546119392,-0.5678496258333325,0.9873461369425058,0.30164165468886495,0.6217218446545303,-0.875388759188354,-0.33777211932465434,0.6847495092079043,-0.3776583932340145,0.6221618819981813,0.0543431113474071,0.15550240175798535,0.8410720187239349,-0.0570454359985888,0.2389733218587935,0.4318219069391489,-0.4227821393869817,-0.6884761112742126,-0.862969440408051,-0.24220129288733006,0.5191347179934382,0.00685887411236763,-0.4155988642014563,0.07935020653530955,-0.7537783272564411,0.9704690459184349,-0.49417316960170865,-0.19099550740793347,0.7703028758987784,-0.987517399713397,0.5881102569401264,0.2656534262932837,-0.2438983884640038,0.7401244048960507,-0.23330110823735595,0.5950710587203503,-0.7560431389138103,0.5964344721287489,-0.2028679265640676,0.784373574424535,0.7338783461600542,0.4407564392313361,-0.9622428412549198,0.8210586355999112,0.0614980049431324,0.6978491945192218,-0.7784324842505157,-0.6066900384612381,0.24460151931270957,-0.22962049953639507,0.5189400971867144,-0.06227918202057481,-0.713652175385505,0.8804341172799468,-0.5215649656020105,-0.5705704297870398,-0.1995361289009452,0.032129038125276566,0.8530189571902156,-0.4248928069137037,-0.38975915452465415,0.897165812086314,0.13360661081969738,-0.4968978385441005,-0.5233961041085422,0.5803446313366294,-0.5416064793244004,0.9520352529361844,-0.5214964034967124,0.7402969473041594,0.7814451474696398,-0.8348566289059818,0.7990079773589969,0.8043865654617548,0.13413466326892376,0.8576075313612819,-0.35176669899374247,-0.8970681363716722,0.21998666040599346,-0.5580958258360624,-0.43940505431964993,-0.427884750533849,0.36140919756144285,-0.9851958099752665,-0.7889986871741712,-0.4448520094156265,-0.048116711899638176,-0.3482576790265739,0.7050523366779089,0.026972342748194933,-0.9799712630920112,0.5683192731812596,-0.2596509209834039,0.7839568108320236,-0.28486364614218473,-0.8771819095127285,-0.437088361941278,-0.4258313882164657,-0.8870362415909767,0.047843475826084614,0.30414008535444736,0.5364129710942507,-0.7141317022033036,-0.5348340943455696,0.1858806679956615,0.0343759274110198,0.29567388305440545,0.4111454705707729,-0.31239580316469073,0.4749920191243291,0.33537990925833583,-0.058119745925068855,0.19500405760481954,-0.9341332037001848,-0.9254200775176287,0.8988714762963355,-0.661530225072056,0.3895829264074564,0.22396410768851638,-0.24152268283069134,0.7930011046119034,0.7259217156097293,-0.11845113383606076,-0.5759172448888421,0.6238126549869776,0.26017459435388446,0.18703929195180535,-0.624603699427098,-0.5209350865334272,0.3800217784009874,0.1382396942935884,-0.6960594882257283,-0.8799274498596787,0.54798478865996,-0.7795302784070373,0.554373431019485,-0.2493167412467301,0.3024673485197127,0.7036399831995368,0.22288471553474665,-0.5386865432374179,-0.45854960847646,-0.5128083038143814,-0.8719261768274009,-0.47248972672969103,-0.3091705236583948,0.9161995388567448,-0.5991018903441727,-0.8392383269965649,0.8739985558204353,-0.4464596305042505,0.9046884099952877,0.5180315524339676,-0.9987000175751746,-0.4078175388276577,0.09217398380860686,0.1997549026273191,-0.7731755319982767,-0.7803844716399908,0.055649511981755495,-0.7168819815851748,-0.3915725708939135,0.4436547080986202,0.7422032072208822,-0.35696214670315385,-0.7369278147816658,0.41840095398947597,-0.1330777145922184,-0.8929685605689883,-0.733596749138087,-0.6603863793425262,-0.8421718184836209,-0.49440246587619185,-0.8327482752501965,0.29377389466390014,-0.5053665530867875,-0.4985503274947405,-0.9939614082686603,0.5925458879210055,0.05809970339760184,-0.09244602359831333,0.8784012403339148,-0.9969718046486378,0.06668912246823311,-0.1096860864199698,0.28251560032367706,0.22362204734236002,-0.3488683239556849,0.5225872467271984,0.349348250310868,-0.33888559928163886,0.10032891249284148,0.0908645992167294,0.24690353078767657,0.9811737602576613,-0.10625063814222813,-0.6559329237788916,0.49727534875273705,-0.0034958156757056713,-0.13852862967178226,-0.0708155008032918,0.1858827960677445,-0.5660634320229292,0.9863711637444794,-0.6151904007419944,-0.03636119840666652,0.441813827957958,-0.027176429983228445,-0.7582302992232144,-0.939031049143523,0.15592522732913494,-0.3910493589937687,-0.6739592989906669,-0.8910386948846281,0.18514067586511374,0.3875828734599054,0.25380927603691816,0.38024819921702147,-0.24964872281998396,-0.12326661171391606,-0.2597040915861726,-0.14573460584506392,-0.22631075233221054,-0.2355920523405075,0.3847557925619185,0.24424323672428727,0.5573948710225523,0.36663105338811874,-0.27798636350780725,0.286972985137254,-0.9949662066064775,-0.8743187393993139,0.4233812312595546,0.08318579848855734,-0.03950447868555784,-0.817738514393568,-0.8833760404959321,-0.37608452001586556,-0.6384844235144556,0.4678149609826505,0.3310576193034649,-0.5270597054623067,-0.19065588293597102,-0.7165144602768123,0.06787483766674995,0.5335871810093522,0.15281904209405184,0.699281319975853,0.6288780523464084,0.6016810485161841,-0.4120827382430434,-0.34931342815980315,-0.29066568752750754,0.6523865349590778,0.47458826238289475,-0.3926058867946267,0.0659213587641716,0.18246275838464499,0.018851349130272865,0.13875793758779764,-0.9511880306527019,0.7104845880530775,0.07724798610433936,-0.011784870643168688,0.12717826245352626,0.9647892103530467,-0.8156833969987929,0.5508156013675034,-0.049478970002382994,-0.04013991774991155,-0.33854401344433427,0.8660829593427479,-0.5487971948459744,-0.8747188383713365,0.5790922157466412,0.6201282716356218,-0.8289640080183744,-0.17564672604203224,-0.9991504531353712,0.8052960145287216,-0.3879585354588926,0.9114261660724878,-0.04370229784399271,-0.12230753898620605,0.38039645412936807,0.2994864257052541,-0.3622748595662415,-0.7394656692631543,-0.06442904658615589,0.2116428161971271,-0.30764521146193147,0.7427814584225416,-0.6724058971740305,0.929350514896214,-0.7195948464795947,-0.35841415682807565,-0.9029909428209066,-0.8378245402127504,-0.4556325222365558,0.2302949046716094,0.6648558941669762,0.9924606746062636,0.21037541329860687,0.5200907588005066,0.49251164169982076,-0.22053896449506283,0.5188461863435805,-0.34634011052548885,0.4924796507693827,-0.9752512145787477,-0.9178708828985691,-0.8015967071987689,0.9400508226826787,0.39476948883384466,0.7497198851779103,0.5651333383284509,-0.16612094594165683,-0.7195519707165658,-0.9909566664136946,0.8476369543932378,-0.5672331894747913,0.8590470934286714,0.12627472076565027,0.12137343361973763,0.9421177478507161,0.3084099581465125,-0.31666167359799147,-0.7304197205230594,0.2997331665828824,-0.3853647434152663,-0.8084447742439806,0.6098721232265234,-0.8513892879709601,0.7862296947278082,0.577309281565249,0.016675670631229877,0.3515874049626291,0.04510815814137459,0.3705444922670722,0.4514788300730288,0.07751719886437058,-0.07741684606298804,-0.2696779789403081,0.03882480412721634,0.7566847275011241,0.7361840158700943,-0.30676641361787915,0.9845079220831394,-0.5949730966240168,-0.8755845045670867,-0.6079242224805057,0.7099863612093031,-0.12520134123042226,0.41025953413918614,-0.2639784892089665,-0.3868432994931936,-0.7371323341503739,0.3329478735104203,0.754735647700727,0.9317154036834836,0.4972646269015968,-0.9777746950276196,0.5572653375566006,0.9197680857032537,0.07484064856544137,0.7914998908527195,-0.14521194994449615,0.23435070225968957,-0.5471580503508449,-0.7300953632220626,-0.5655873506329954,0.020245511084794998,-0.74537945818156,-0.5167955388315022,-0.34312103828415275,0.18667801516130567,-0.5082408646121621,-0.2986985160969198,-0.6284225536510348,-0.3567282105796039,0.8910995530895889,-0.063885688316077,0.9101648055948317,0.22756988648325205,-0.33874136209487915,-0.19876892864704132,-0.26185625279322267,0.7637344188988209,-0.4627752751111984,0.4128904757089913,-0.7762001808732748,-0.4383204374462366,-0.6869562556967139,-0.7619831538759172,-0.23262352589517832,-0.7023230148479342,-0.5226667723618448,0.5487543665803969,0.9049242469482124,-0.2703808853402734,0.1730684358626604,-0.26423159008845687,-0.19841077458113432,-0.7864251835271716,0.664913494605571,-0.2645859816111624,-0.2233775700442493,0.7199954814277589,-0.7728766528889537,-0.29403981612995267,0.43989137560129166,-0.8437783415429294,-0.27044807840138674,-0.1605211948044598,-0.44619445130228996,0.703477649949491,0.9115417851135135,-0.542724996805191,-0.4400070356205106,-0.45982015831395984,0.5795754389837384,0.7899948144331574,-0.14037401182577014,-0.06531598279252648,0.19144990760833025,-0.31080398987978697,0.1416159919463098,-0.681393722537905,0.180034838616848,0.7244496969506145,-0.09311101026833057,-0.3904640693217516,0.054393804632127285,0.10731014609336853,0.5319631537422538,0.6993531757034361,-0.15264651598408818,0.3577727125957608,-0.14878143277019262,0.725033933762461,0.8293078145943582,0.7356688315048814,-0.9072492173872888,0.1649642032571137,0.47538777766749263,0.6301534753292799,0.7523382133804262,0.04767285380512476,-0.041035937145352364,-0.3359981537796557,0.16073308745399117,0.6662022536620498,0.4930255776271224,-0.5404469752684236,-0.5292163975536823,-0.37110462319105864,-0.7474514129571617,0.43962726183235645,0.0459951926022768,0.5011318642646074,0.657374388538301,-0.5539023014716804,0.7429428887553513,-0.50360536435619,0.7024381528608501,0.6224018400534987,-0.2652597385458648,-0.6911180866882205,-0.4746447973884642,0.5215673483908176,-0.991727102547884,-0.4242314053699374,0.2923087156377733,0.11800556490197778,0.09379538660869002,0.5508090094663203,-0.04491263721138239,-0.3676510751247406,-0.6814295020885766,-0.7807358196005225,-0.8217282551340759,-0.20042505813762546,0.6916437861509621,0.8924212525598705,0.1530317049473524,-0.19478946551680565,0.04497977998107672,0.5144291380420327,-0.5741238258779049,-0.19101969990879297,-0.11562624666839838,-0.9553065081126988,-0.4399943151511252,-0.1958521855995059,-0.5890149627812207,-0.6251818705350161,0.20580758480355144,0.005407740827649832,-0.7799273892305791,-0.9073841250501573,0.3598995371721685,0.5701228636316955,0.8735566465184093,0.4165785564109683,-0.4965508235618472,-0.2111585740931332,0.34262074902653694,-0.4863615701906383,-0.2836745255626738,-0.6020905650220811,-0.12335084425285459,0.6441955449990928,0.5811818349175155,0.31992152938619256,0.683574119117111,-0.7643842776305974,-0.3948930501937866,-0.3048897464759648,0.8000689251348376,0.15961866918951273,0.1844824580475688,0.7633517039939761,0.8373949681408703,-0.6295630568638444,0.7741777836345136,0.6956283454783261,-0.29655788047239184,-0.9252392593771219,-0.5019464478828013,0.1820674599148333,-0.34887163480743766,-0.5607577571645379,-0.7248667343519628,0.8287415830418468,0.1079310392960906,-0.106703937985003,-0.09680239809677005,-0.6181648359633982,0.9425361612811685,-0.22196805011481047,-0.44987745536491275,0.9117025421001017,-0.7553965984843671,0.4219682947732508,0.5685646459460258,-0.11466687731444836,-0.0921809640713036,-0.6472163833677769,-0.44763725623488426,-0.5999473133124411,-0.14445588691160083,-0.1869133785367012,0.38344405917450786,-0.606939681340009,-0.5331623586826026,0.24038766277953982,-0.1131654535420239,-0.2870328458957374,-0.2807075013406575,0.14430359518155456,0.3016493692994118,0.9092558203265071,-0.5215550386346877,0.7113438984379172,-0.9093368910253048,-0.7991349077783525,0.49747369484975934,-0.6566086509265006,-0.08112680353224277,0.2320620846003294,-0.5092683816328645,0.090615457855165,-0.8814393952488899,0.7213947772979736,-0.08095527486875653,0.7679819809272885,0.21697556832805276,-0.3552022073417902,0.526616572868079,0.0025927298702299595,0.5922422385774553,-0.5680218716152012,-0.44748609280213714,0.8931217952631414,-0.8072494328953326,0.16612299485132098,-0.46154637075960636,0.650816987734288,-0.7188834873959422,0.9504421204328537,-0.059715909883379936,0.24110523238778114,0.9043108001351357,0.9133003172464669,-0.7566855056211352,0.00701037747785449,-0.28221106715500355,0.8547632056288421,-0.838365740608424,-0.7117793010547757,0.9216652670875192,0.18265469558537006,-0.9544808831997216,0.8900257269851863,0.7111884667538106,0.8844098965637386,0.685671376530081,-0.806905054487288,0.8309016316197813,0.13864820497110486,-0.49923433968797326,0.16280997591093183,-0.8489545560441911,-0.32315080845728517,0.12452051788568497,-0.2107424894347787,-0.09011852135881782,0.788083175662905,0.9293112135492265,-0.9427698063664138,0.21694127144291997,0.9340150346979499,0.8318186667747796,-0.6861554691568017,0.08026105212047696,0.20652190782129765,-0.48965738574042916,0.15402773208916187,0.32368858344852924,0.9736645496450365,0.29127012146636844,0.7539748935960233,-0.41056586895138025,-0.006643280386924744,0.705674699973315,0.44953985791653395,0.833828556817025,-0.8136771568097174,-0.6356965396553278,-0.3351100329309702,-0.5200357893481851,-0.5349465124309063,0.10270681092515588,-0.34879323234781623,0.47709694039076567,-0.6306094094179571,-0.4108764096163213,0.6289551486261189,-0.4154906142503023,0.6507113655097783,-0.12018172070384026,0.9768372299149632,0.7093424894846976,0.4532203911803663,-0.105314995162189,-0.9962945687584579,-0.4810914690606296,0.9640309978276491,0.7260368098504841,-0.8730680528096855,-0.04032868007197976,0.7657650574110448,0.9845739300362766,0.024418702349066734,-0.8353929608128965,0.06907365610823035,0.603591300547123,-0.7947261864319444,-0.8029483966529369,-0.00580826448276639,-0.2257746197283268,0.888641313649714,-0.155636478215456,0.9853710047900677,-0.7626948142424226,0.24775454262271523,0.5025047138333321,-0.2414529388770461,-0.6560797672718763,0.47626680228859186,-0.4640855994075537,0.7981951232068241,-0.5807683588936925,-0.7965536471456289,0.3916242350824177,-0.263204806484282,-0.4707395085133612,0.5237902603112161,-0.8260583127848804,-0.8877888065762818,0.6024649352766573,0.553985736798495,0.745179446414113,0.33988803206011653,-0.806043578311801,0.2741604531183839,0.6935802605003119,0.5829774509184062,-0.44608680438250303,0.42567024147138,-0.2285539312288165,-0.833864797372371,-0.2541448837146163,-0.9557272549718618,0.5442938529886305,-0.5009426777251065,-0.8520111180841923,0.4036936815828085,0.6992294825613499,-0.9978036778047681,0.058704713359475136,0.5685704587958753,-0.25223418325185776,0.7082257233560085,0.8594311447814107,0.40182227548211813,-0.8788044252432883,0.9518343890085816,0.7735448218882084,-0.755251039750874,-0.953587134834379,0.8397708358243108,-0.4977304032072425,-0.651994020678103,-0.6358543131500483,-0.46852616779506207,-0.7328144777566195,0.9018505979329348,0.22339254477992654,-0.26513382559642196,0.20628733094781637,0.7931530768983066,-0.08438190864399076,0.9862218489870429,0.4482589694671333,-0.5313411839306355,-0.42047400027513504,-0.8106870744377375,-0.5401052217930555,-0.8709816834889352,-0.054684844333678484,-0.06424016272649169,0.7236425671726465,-0.11081807222217321,-0.9307994414120913,-0.9026364316232502,0.7268442632630467,0.4055550447665155,0.928708697669208,0.45745097752660513,-0.6000644695013762,0.9557600263506174,0.6752120326273143,0.6232193112373352,0.6134118339978158,0.459966653957963,0.08632787596434355,0.8102550315670669,0.6848010243847966,-0.31722903717309237,-0.44767675222828984,0.3253941601142287,-0.5265710158273578,0.08726065093651414,0.07699214667081833,0.7386766993440688,0.8868293133564293,-0.5859095486812294,-0.7221476146951318,-0.3270929497666657,-0.9488384015858173,0.3201836762018502,0.4902553539723158,-0.6412030193023384,0.50770035199821,0.9989850390702486,0.44224981451407075,0.3389307535253465,0.5349312638863921,0.48946288134902716,0.39859695360064507,0.5300265825353563,0.7055294709280133,0.6610635295510292,-0.008076960686594248,0.8630965282209218,-0.12061329325661063,0.8871801793575287,0.25696198595687747,0.25878910440951586,-0.4994654576294124,-0.3230341346934438,-0.6528808870352805,-0.7783833746798337,0.583906626328826,0.013074986170977354,-0.47871786868199706,-0.9961615949869156,0.07145002763718367,-0.9541636817157269,-0.608152377884835,0.4595139529556036,-0.26946797175332904,0.7158046984113753,-0.007198341190814972,0.08547080447897315,-0.39786879532039165,0.8578933733515441,-0.92461281362921,-0.7411420838907361,0.3966872803866863,-0.5821094973944128,-0.811478883959353,-0.8483224743977189,-0.43883545231074095,-0.29958220291882753,0.5502116796560585,0.7446801182813942,0.8781785480678082,-0.25847316766157746,0.020754365250468254,0.9014682811684906,-0.500900930725038,0.8757421346381307,0.6275681131519377,-0.8043251861818135,0.8832937739789486,0.9669923889450729,0.7388604772277176,-0.28558747936040163,-0.1494196793064475,-0.06381392944604158,-0.5360379116609693,0.9051370271481574,-0.26851767767220736,-0.040724728256464005,0.4410418374463916,0.049254131969064474,0.7206507828086615,0.3580386182293296,-0.2502878615632653,-0.8549525644630194,0.10695188073441386,-0.13818281423300505,0.7051738006994128,-0.327867787797004,0.9661588869057596,0.8329320452176034,-0.31016484601423144,0.32527023553848267,0.8537024785764515,-0.9265121081843972,0.03986189002171159,0.6875006090849638,-0.162273108959198,0.6493564057163894,0.7327623567543924,-0.8214971423149109,-0.28226559376344085,-0.8695593611337245,-0.49157744692638516,-0.987873344682157,-0.4702539136633277,-0.2441281583160162,-0.776473477948457,0.1038954914547503,0.4625022974796593,-0.14691109396517277,0.7222160710953176,0.08236424718052149,-0.9942432506941259,-0.09424369689077139,-0.9469612431712449,-0.5218283548019826,0.339259531814605,-0.7867203345522285,0.7606885558925569,-0.29030340490862727,0.6464933860115707,0.5405172286555171,0.43375406553968787,-0.5551561852917075,0.27492636255919933,0.5316193550825119,-0.8758475556969643,-0.938627761323005,0.9830049672164023,0.9291658867150545,-0.22452999744564295,-0.8955063275061548,0.427156463265419,-0.0885945800691843,-0.21801837487146258,0.7877062414772809,0.8749668952077627,0.1783430352807045,0.7933321204036474,0.5898506995290518,-0.8367722444236279,-0.2738246410153806,-0.3567591761238873,0.40518347593024373,0.6062022265978158,-0.4645526763051748,-0.6577201765030622,0.3026361744850874,-0.5044133961200714,-0.28325933311134577,0.044494431000202894,-0.7504547815769911,0.03513045236468315,-0.3022686978802085,-0.08012519683688879,0.8602593028917909,0.4276878610253334,-0.8498775586485863,-0.33709485828876495,0.2775562140159309,-0.8547883951105177,-0.4154160455800593,0.8700493331998587,0.6942816260270774,0.9146950365975499,0.11681988276541233,0.4687252985313535,0.7050586403347552,0.10296373069286346,-0.6048185657709837,0.20977642247453332,-0.26158545119687915,0.3671817285940051,-0.27733737509697676,-0.31303812749683857,-0.25151689490303397,0.08867370570078492,0.7637340794317424,-0.33887281734496355,0.7057871441356838,0.17529097851365805,-0.8565237680450082,-0.7909234645776451,-0.5187665736302733,-0.47762647457420826,-0.8314151559025049,-0.74925542389974,0.32264837715774775,-0.654913819860667,0.7456357711926103,-0.0687896478921175,-0.26387875666841865,-0.4110075649805367,0.8393173241056502,0.7820695303380489,0.30016344506293535,0.6631271596997976,-0.322189012542367,-0.49981651827692986,-0.3707726183347404,0.600878685247153,-0.5067147631198168,0.6723214294761419,-0.464733867906034,-0.858595993835479,-0.478613349609077,-0.8431402472779155,-0.6085974760353565,0.23581919306889176,0.6824976187199354,0.6044056238606572,0.7085439241491258,-0.14059875765815377,0.32908369321376085,0.7670832606963813,-0.6084372792392969,0.10652037197723985,-0.19725991738960147,0.3391627804376185,0.776558751706034,0.9959954414516687,-0.2891393471509218,-0.5158568914048374,0.5014639049768448,0.5036120261065662,-0.1709677204489708,0.030124393291771412,0.026271136477589607,-0.13947711186483502,-0.9837881340645254,-0.9845668501220644,-0.169517629314214,-0.19778138305991888,-0.7290636007674038,0.35783135518431664,-0.10725046833977103,-0.7173105701804161,-0.8347998866811395,-0.25731463450938463,0.032438750844448805,-0.9169778903014958,0.13744952017441392,-0.8547363793477416,-0.7252639764919877,-0.4234012868255377,0.9022084791213274,-0.2045510527677834,0.26838591042906046,-0.36155538400635123,-0.8768419562838972,0.8712186235934496,-0.3152494402602315,0.14704389171674848,0.23993243789300323,0.0527742225676775,-0.3748538517393172,-0.7912149480544031,0.9635735847987235,0.6161888865754008,0.7571488860994577,-0.3748778132721782,0.6024612030014396,-0.9622130091302097,0.8435563216917217,0.5126440986059606,0.34688644763082266,0.8196331728249788,-0.6246268386021256,0.24554021144285798,0.20051605347543955,-0.3614861788228154,0.581291033886373,-0.26511574629694223,-0.747455979231745,-0.1935629709623754,-0.06890158914029598,-0.08198597002774477,0.2620501699857414,0.9674223768524826,0.5461053410544991,-0.8276426079683006,0.7568505988456309,-0.2632907172665,0.3340547773987055,0.9813861888833344,0.18580920808017254,-0.3668873351998627,0.41529469517990947,-0.04450514726340771,-0.36464234068989754,0.7306604399345815,0.8727291789837182,0.12994158500805497,0.0009046341292560101,-0.5982104944996536,-0.9741201209835708,-0.6871843570843339,0.5395436570979655,-0.7331484854221344,0.3592262491583824,-0.4571757074445486,-0.3292164304293692,0.01143590733408928,0.6236145622096956,-0.47928686812520027,0.12346954550594091,-0.8095823586918414,0.6523065026849508,0.44421908585354686,0.3195607387460768,-0.9846262824721634,0.4320150287821889,-0.49410146102309227,0.15842013014480472,-0.8362676873803139,0.17122502997517586,-0.029097536578774452,0.1796741052530706,0.38507650000974536,-0.22271926095709205,0.619138712529093,-0.6510998248122633,-0.11236717877909541,0.6681085308082402,-0.9469582857564092,0.7466857908293605,-0.20769254118204117,0.2839149027131498,0.0030798367224633694,0.8218263909220695,-0.44702720968052745,0.9325211294926703,0.04666874324902892,0.23281721398234367,-0.5104933916591108,0.6404535388574004,-0.04103840934112668,-0.30948083894327283,-0.5154991350136697,0.4453638787381351,0.5943383327685297,-0.24120256723836064,-0.619751128833741,0.036136179231107235,0.3667375440709293,-0.5487819346599281,0.2897531548514962,0.9107246822677553,-0.05113771604374051,0.1710243192501366,0.6140487315133214,-0.04505985928699374,0.9502462553791702,0.8135075834579766,0.10710677364841104,-0.3829649523831904,0.6821665531024337,0.2686030576005578,0.15625620493665338,0.268491187132895,-0.29188927821815014,-0.5118889892473817,0.5881395041942596,0.8948224568739533,0.10990126710385084,0.896000022534281,0.36522582406178117,-0.7012138282880187,0.4207402775064111,0.8983965832740068,-0.006537694483995438,-0.3105059857480228,0.8170743607915938,0.8360830149613321,0.5172037957236171,-0.35980320582166314,-0.9067543409764767,0.7286793966777623,-0.8991254242137074,-0.03460739552974701,-0.019025307148694992,-0.5299257868900895,0.6646728650666773,-0.49351670779287815,0.15663520013913512,0.06933342013508081,0.9074882362037897,-0.8876199671067297,-0.865671668201685,0.12148265587165952,0.379518932197243,-0.8571918685920537,0.13864891277626157,-0.009507440030574799,-0.17310796305537224,-0.3982116300612688,-0.959819043520838,0.2252071052789688,0.6408955841325223,0.33588078804314137,-0.16097181849181652,-0.3093457445502281,-0.44614231726154685,-0.3754557785578072,0.06290917424485087,-0.9438538802787662,-0.04758855840191245,-0.6244975132867694,0.6630016532726586,-0.231726108584553,-0.298416989389807,0.3090569074265659,-0.7086886153556406,0.39056478859856725,-0.6719249752350152,-0.6968615441583097,-0.47808915795758367,0.4673142279498279,0.4858207548968494,-0.5026072170585394,-0.24846660997718573,-0.8730020793154836,-0.5034636338241398,0.37811264768242836,-0.05233182851225138,0.34653178369626403,-0.5179557562805712,0.44626340037211776,-0.33709845831617713,-0.6988996025174856,0.4813690558075905,0.5313345603644848,0.6428669751621783,-0.6091230264864862,0.5302100293338299,0.24116381304338574,0.3604596978984773,-0.1576275285333395,0.6675184676423669,-0.5800336860120296,0.4161468301899731,0.4845188604667783,-0.315291250590235,0.36329766269773245,-0.504483649507165,0.08534668013453484,0.9098816332407296,0.6928570661693811,-0.6287744091823697,0.31307100132107735,-0.11126659857109189,0.4894688380882144,-0.3718601414002478,0.8190144966356456,0.18664578069001436,-0.049446992110461,-0.23022338142618537,0.8188002603128552,0.719661757349968,0.8073867978528142,0.9095441182143986,-0.3073610747233033,0.7032375396229327,-0.5486634629778564,0.15896852780133486,0.3478173427283764,-0.7933092219755054,-0.8732652929611504,-0.6421593013219535,-0.6555350660346448,0.27994218561798334,0.8281159568578005,0.6451630219817162,-0.6851796465925872,0.7832915228791535,0.2970653334632516,0.29167270800098777,0.31294998712837696,-0.6470133359543979,-0.2884114417247474,0.03859050804749131,-0.3126809308305383,-0.8637909288518131,-0.5072350082919002,0.051149056293070316,-0.9281086376868188,-0.7286635683849454,0.3558051874861121,0.09066750900819898,0.05210224445909262,0.21635988308116794,-0.2642403095960617,0.44622229505330324,-0.3614678648300469,0.34096611104905605,0.01525865588337183,0.9225709643214941,0.30725961085408926,0.5707709453999996,0.1838727742433548,0.33563539013266563,0.6123544117435813,0.9544025235809386,-0.2905849330127239,-0.8149462249130011,0.1802820172160864,0.9490831587463617,-0.3323412975296378,-0.9207365429028869,0.6762390397489071,0.5361763047985733,-0.16292560007423162,0.5272859437391162,-0.5493795699439943,-0.5836565098725259,-0.4050675784237683,0.7154180966317654,0.5351152191869915,-0.17382581438869238,-0.9561717384494841,0.8833882911130786,0.504082674626261,0.9318480766378343,-0.4858645829372108,-0.5039338548667729,0.6759067075327039,0.05288800923153758,-0.12972199777141213,-0.33147744089365005,0.8559882780537009,-0.8477821941487491,-0.31473824428394437,0.9988004211336374,0.6684161014854908,0.6262300792150199,-0.8989888904616237,-0.18212316185235977,-0.27372176572680473,-0.8345103920437396,-0.3531571081839502,-0.8011101405136287,0.8568406226113439,0.7498283935710788,-0.5840359241701663,-0.13948019035160542,-0.9446508884429932,0.6845448068343103,0.9618859528563917,-0.9242900800891221,-0.5495336302556098,-0.6495286179706454,0.21216862136498094,-0.2025635070167482,0.6260262792930007,-0.9929149746894836,-0.19203917076811194,0.23247981630265713,-0.06443580938503146,-0.03284550691023469,0.07033672137185931,-0.8340671928599477,-0.5844915695488453,-0.16134643275290728,-0.4667817149311304,0.7936034998856485,-0.282908592838794,0.6622291416861117,-0.2774639315903187,-0.8560497374273837,-0.37250035256147385,-0.37119621224701405,-0.24019563617184758,0.8950766385532916,0.1862187096849084,-0.18060714937746525,0.1651782705448568,-0.5467869350686669,-0.44415384251624346,-0.7264828155748546,-0.2820760076865554,-0.9663786855526268,-0.7655398887582123,-0.26817287411540747,0.9472586736083031,0.26073493575677276,-0.1369666256941855,-0.4260732401162386,-0.8181113703176379,-0.7610155991278589,0.6082229958847165,-0.27981963800266385,0.7997388625517488,-0.3508140556514263,0.4631545632146299,0.7145731649361551,0.34221209352836013,0.9197551971301436,0.20954576833173633,0.7838739496655762,-0.1637826948426664,-0.4362813653424382,0.9399919840507209,0.13031940488144755,0.8081012479960918,0.8007118976674974,0.9022952276282012,-0.7324459101073444,0.17566059529781342,0.43529331823810935,0.23872894886881113,-0.8703366271220148,-0.6118909437209368,-0.8135732584632933,0.026671791449189186,-0.7234193063341081,-0.29607944935560226,-0.5396770010702312,-0.6262664538808167,-0.13993345946073532,-0.027628961019217968,-0.2585727972909808,-0.9058784665539861,0.921869708225131,-0.6539731174707413,0.8831871589645743,-0.09919729502871633,0.11462062411010265,-0.2318452880717814,-0.4977489896118641,0.8226360776461661,0.03526172274723649,0.729990269523114,-0.38179916609078646,-0.46687284391373396,0.7595287780277431,0.7852717833593488,-0.9260360607877374,-0.19144132360816002,0.4259595014154911,0.25625932309776545,-0.3167903171852231,0.0910033262334764,-0.2651516739279032,0.5436172378249466,0.26272103330120444,-0.1024457192979753,0.6210089167580009,-0.6874849922023714,-0.35037324018776417,0.7973342933692038,-0.47435990581288934,-0.9115036646835506,0.8269241722300649,-0.2723933248780668,0.7766227554529905,0.7416037619113922,-0.035450334660708904,0.41971873166039586,0.3158973064273596,-0.47738802805542946,0.36260477220639586,0.31920471601188183,0.5261247977614403,0.5958640947937965,0.09455708833411336,-0.5472799679264426,0.6501649371348321,0.6895303232595325,-0.12292435904964805,-0.18967043235898018,-0.6418750663287938,-0.14880202105268836,-0.28276665275916457,-0.8564443001523614,-0.6759609458968043,0.14855986600741744,-0.5635555004701018,0.19427738105878234,0.6908695539459586,-0.9160091220401227,0.4053045632317662,0.47901693638414145,0.6344730560667813,0.3990919920615852,-0.965878477320075,-0.69367556553334,0.23826858587563038,0.23890384612604976,0.8926709964871407,-0.48565579019486904,-0.28327628364786506,0.3849558592773974,-0.24236346641555429,-0.03747659595683217,0.2597961132414639,0.09567349636927247,-0.4224134520627558,-0.1394701600074768,-0.4761046855710447,0.16484795743599534,0.16524081956595182,-0.2076929365284741,-0.9018167620524764,0.039899549912661314,0.4042127192951739,-0.05108730308711529,-0.5491254441440105,0.3420844320207834,0.24396083829924464,-0.21417280845344067,-0.22825646633282304,0.0662775645032525,-0.14122661715373397,-0.770222925581038,-0.5622110804542899,0.17309554619714618,-0.6827034596353769,0.42270325450226665,-0.9772168933413923,-0.13295239582657814,-0.2498787152580917,0.8228760561905801,0.36881562089547515,-0.058505370281636715,0.07055794587358832,0.18176376167684793,0.16287117172032595,0.9648149674758315,0.16347884945571423,-0.13455514702945948,0.4834455754607916,0.44238043017685413,0.3851112388074398,0.27747073862701654,0.4396157627925277,-0.9428495871834457,-0.7786247418262064,0.4857865353114903,0.43883352307602763,-0.7562879309989512,-0.20743293594568968,-0.814360813703388,-0.8829700113274157,0.3217629538848996,0.24619600689038634,-0.5548226339742541,0.5942754670977592,0.9534609783440828,0.5437391521409154,-0.9149524345993996,-0.604787724558264,0.8001141287386417,0.809124797116965,0.8695632168091834,-0.6950512421317399,0.03118235245347023,-0.646236315369606,0.6002239701338112,-0.5751520791091025,-0.13258535973727703,0.43552430532872677,-0.20869139349088073,-0.7108323187567294,-0.35018370067700744,-0.344610049854964,-0.6526986449025571,-0.84676493704319,0.9367311359383166,0.8395929969847202,0.6051782141439617,0.9676611693575978,-0.6750457440502942,-0.05546126700937748,0.8448807708919048,-0.9675596919842064,-0.522781047038734,-0.004271344747394323,-0.7098555974662304,0.9824824435636401,0.67729935888201,0.5024419231340289,0.5471075298264623,0.7053150576539338,-0.11201051250100136,-0.47985051153227687,-0.9833568055182695,0.15013144770637155,-0.4892359063960612,0.777231078594923,-0.8299810248427093,0.17803251557052135,-0.7272132760845125,0.6678992309607565,0.3186203073710203,-0.5083410637453198,0.6011445517651737,0.6136707565747201,-0.01922669354826212,0.4069552104920149,-0.9374181567691267,0.908172438852489,-0.37185099767521024,0.4592076647095382,-0.11606317199766636,0.3007108853198588,-0.002100379206240177,0.7129671019501984,0.8425611178390682,-0.2034319629892707,0.23196089826524258,-0.582711414899677,0.16967756813392043,0.2934277574531734,0.7063053133897483,0.3291090331040323,-0.7414544764906168,-0.2818452026695013,-0.12309088092297316,-0.9252872732467949,0.8316095937043428,-0.26932907244190574,0.5430828281678259,-0.9079677602276206,-0.16298659890890121,-0.48558977572247386,0.3298239498399198,0.15527413738891482,0.4586246185936034,0.26692782156169415,0.7131321458145976,0.027492378372699022,-0.2418228043243289,0.8702272982336581,-0.9417188013903797,0.06737614050507545,0.5760307107120752,-0.5724446033127606,0.8849151162430644,-0.23769352585077286,0.22260375786572695,0.7670335383154452,0.7157412776723504,0.3250755202025175,0.023305813316255808,0.7093811761587858,0.14494256861507893,-0.08727625478059053,-0.2749942955560982,0.8655992797575891,-0.457455316092819,0.8416348756290972,-0.039145328104496,-0.23996544256806374,0.8713778490200639,0.4122367608360946,0.66220688726753,-0.547252373304218,0.9577795504592359,-0.3960169837810099,0.5090068862773478,0.6574987750500441,-0.17994427075609565,-0.6764949709177017,-0.8705984163098037,0.5054460167884827,0.6171963238157332,0.23623919999226928,-0.8922058986499906,0.9848542236723006,0.5593271600082517,-0.2779551474377513,-0.47282036347314715,-0.33413208136335015,-0.7614085953682661,-0.45844663167372346,0.26877729035913944,0.14565062010660768,-0.375589185860008,0.08749240823090076,-0.7502920925617218,-0.9827540521509945,-0.8897310458123684,0.3709365660324693,-0.4182834508828819,0.43317253794521093,-0.07342986902222037,0.25925112096592784,0.13247396890074015,0.5526762041263282,0.11444352101534605,0.7684022057801485,0.6548444321379066,-0.5850185262970626,-0.6913291700184345,0.13491515489295125,0.42338345805183053,-0.5165477213449776,0.9117515217512846,0.2198246824555099,-0.9138967827893794,0.9905828791670501,-0.25022566551342607,-0.5720706614665687,-0.3826315780170262,-0.9074023058637977,0.8822138686664402,0.26501641888171434,0.16444181511178613,0.9640756519511342,-0.13351502362638712,-0.23105947952717543,-0.6706520323641598,0.588546319399029,0.02070283144712448,0.5808653975836933,-0.577998457942158,0.5183630776591599,-0.6669506952166557,-0.9620052152313292,0.7955407900735736,-0.6811020178720355,-0.1135652787052095,0.49535425566136837,0.264201691839844,-0.8019175184890628,-0.037110975943505764,-0.2626532553695142,0.22131883865222335,-0.44487143494188786,0.1712897466495633,0.8347550011239946,-0.13600821560248733,-0.23674241080880165,-0.08227610308676958,0.0917456392198801,0.6446470972150564,-0.47895339131355286,0.5203738333657384,0.6631632307544351,-0.5011723614297807,0.8978287577629089,-0.14524741610512137,0.3105235598050058,-0.2105543245561421,-0.43158027715981007,-0.32356983376666903,0.8136783828958869,0.08248376986011863,-0.6401059692725539,-0.5588823729194701,0.6975228884257376,-0.9125954541377723,0.6113693825900555,-0.00679505942389369,-0.47996422415599227,-0.8575679031200707,0.4724110597744584,-0.9761437010020018,-0.6191264307126403,0.4040786805562675,0.4014464421197772,-0.8500787080265582,0.07321443734690547,-0.7096875025890768,-0.045286938082426786,-0.48070784425362945,0.1506715239956975,0.9445627117529511,-0.08580100815743208,-0.8486851118505001,0.5295995553024113,0.4652671362273395,0.901921808719635,-0.8911339761689305,0.8685754891484976,-0.47665461618453264,0.4308267324231565,-0.09133903821930289,0.4767937185242772,0.7517765038646758,0.008700530510395765,0.8979106652550399,0.502479032613337,0.9982013995759189,-0.7646882738918066,-0.23166007129475474,-0.1986640407703817,0.30620603216812015,-0.22492692153900862,-0.159040997736156,0.6844710279256105,-0.7341000745072961,0.9618425504304469,-0.07780378265306354,0.46379581233486533,0.321572314016521,0.3261740286834538,-0.3934103650972247,-0.6823665811680257,0.5632231459021568,-0.12743437616154552,0.5381141104735434,-0.4844338484108448,0.940269613172859,-0.301678404211998,0.8196295541711152,0.32312094792723656,0.3098160829395056,-0.2976791486144066,0.3812858136370778,-0.1561979134567082,0.28732564207166433,0.13469194574281573,-0.35363295394927263,0.45030365232378244,0.2898409301415086,-0.39853463089093566,0.8661453207023442,0.6467883079312742,0.7237561028450727,0.06363813206553459,0.4652712712995708,-0.8749147062189877,-0.5703878621570766,-0.9113771440461278,-0.8936189147643745,0.6291237361729145,-0.7494829213246703,0.45580131374299526,0.8297995091415942,-0.28241678699851036,0.4182658432982862,-0.5846473760902882,0.8075615516863763,0.7132740723900497,0.9752317555248737,0.508847770281136,0.6633568895049393,-0.7008916330523789,-0.589110295753926,0.6652543814852834,0.5633272235281765,-0.2041304032318294,-0.22614643583074212,0.5185874057933688,0.26796573866158724,0.0181464827619493,0.98542286362499,0.2630723691545427,-0.939203355461359,-0.6378589365631342,0.17213976103812456,-0.8113530925475061,0.7554802182130516,0.6218204610049725,-0.1414324538782239,-0.6511781234294176,0.6216334248892963,-0.16988595528528094,-0.24960132176056504,0.6543156388215721,-0.1524709234945476,-0.19946585036814213,-0.6280063265003264,-0.5951350154355168,-0.5195951671339571,0.9145070500671864,-0.2367775342427194,-0.8842867198400199,0.302278189919889,0.6072234371677041,-0.5710260467603803,0.42047843150794506,0.7674636323936284,0.5375712523236871,-0.03268059343099594,-0.10001854645088315,0.6267040176317096,-0.9840974430553615,0.02498907409608364,-0.9971054228954017,0.8862695726566017,-0.38856615824624896,-0.7162953838706017,-0.23781300708651543,0.42940436070784926,0.1503101158887148,-0.6494203265756369,-0.7320799538865685,-0.6813554423861206,-0.6913348925299942,-0.8584094624966383,-0.7825817908160388,-0.24897457426413894,-0.24538970738649368,0.2540835835970938,0.5216814195737243,-0.999449566937983,-0.9053653124719858,0.985829534009099,-0.8266772823408246,0.06382675003260374,0.48036870872601867,0.9411235083825886,0.7254449487663805,0.6177892778068781,-0.25547226751223207,-0.9141991813667119,0.11762369237840176,-0.0769366817548871,0.981161767616868,0.1367675601504743,0.7622866951860487,0.3653739532455802,0.44747571321204305,0.684519893489778,-0.34007348446175456,-0.10105686215683818,-0.7298100860789418,-0.7888674419373274,-0.043238280806690454,-0.7806604108773172,-0.3707658280618489,-0.8063778262585402,0.8567090700380504,-0.7683731284923851,0.0315582393668592,-0.858313636854291,0.9253246732987463,-0.0791835431009531,0.4997164602391422,0.15681373793631792,0.43586840899661183,0.33761967346072197,0.3058535996824503,0.9609836349263787,0.7641475293785334,0.4939610315486789,-0.260994138661772,0.03202283941209316,-0.23203390836715698,-0.1470365198329091,0.5351668288931251,0.6816510884091258,0.689876118209213,0.7791113960556686,-0.6054315655492246,-0.5039762938395143,0.5944698168896139,-0.06649385066702962,0.3405166119337082,0.6523668002337217,-0.7555273277685046,-0.673328026663512,0.4105237955227494,0.9759960793890059,0.5271599814295769,-0.18303124234080315,-0.4409318552352488,0.9042736357077956,0.5834912704303861,-0.4334454466588795,-0.653159340377897,-0.7130991984158754,-0.6176095604896545,0.6055990834720433,-0.05160840507596731,0.392232321202755,-0.3413148424588144,-0.01983426883816719,0.17394561506807804,0.9583343463018537,-0.7898671682924032,-0.6571555570699275,-0.5055712284520268,-0.6196432099677622,0.7269699401222169,-0.5794049906544387,-0.8839691318571568,-0.9924697955138981,0.9021304151974618,-0.07371877739205956,0.056178967002779245,0.2393675954081118,-0.020793230272829533,-0.6275251568295062,-0.6974065401591361,0.34162462456151843,0.27883445052430034,-0.213734682649374,-0.7046268978156149,-0.2474531284533441,-0.1816890835762024,-0.767712639644742,-0.6806639498099685,-0.9716087616980076,-0.5926235863007605,-0.0704125021584332,-0.18480303464457393,-0.5935874544084072,-0.028883472550660372,-0.124576804228127,-0.8695060778409243,0.9047572887502611,-0.9285003314726055,0.8126478125341237,-0.9083799067884684,0.0029333322308957577,-0.1889236723072827,-0.4370155078358948,-0.03967039007693529,-0.8889397685416043,0.8537874431349337,0.20254688756540418,-0.561694385483861,-0.7887836457230151,0.6324154189787805,0.3694865978322923,-0.06753572821617126,0.19882928719744086,0.9243935607373714,0.9778562360443175,0.7402133462019265,-0.27284398954361677,-0.03408618690446019,-0.4025528896600008,-0.9558554752729833,-0.7860171212814748,0.6012692730873823,0.12197696603834629,-0.9567153695970774,0.7085068617016077,-0.11339821573346853,-0.5763556868769228,0.027584105730056763,0.6211398504674435,0.2176270722411573,-0.4161036699078977,-0.023658741265535355,0.2574125546962023,-0.6206217352300882,-0.3723133993335068,-0.00397846195846796,-0.8120275437831879,0.7111665303818882,-0.3752224398776889,-0.7410044535063207,0.8155501545406878,0.4857406564988196,-0.5822537317872047,0.7529386794194579,-0.2154578836634755,-0.2695674425922334,0.018797495402395725,-0.04774008970707655,-0.6430014683865011,-0.5222406685352325,0.7253684131428599,-0.7493007625453174,0.49556291988119483,0.32245982391759753,-0.7774528628215194,-0.8011023052968085,0.42345615616068244,0.9744586083106697,-0.026747962925583124,-0.07045644847676158,-0.5452021551318467,0.170995625667274,-0.32962273992598057,-0.21638572495430708,-0.09751137159764767,0.12383556738495827,0.8284160662442446,0.25611577508971095,-0.287909101229161,0.9909863006323576,0.3043209151364863,-0.3317681774497032,-0.02894828235730529,-0.19972117757424712,0.509214861318469,0.759153657592833,0.21750651951879263,0.6784537043422461,0.633597522508353,-0.32622623443603516,0.9076132546178997,-0.07871073810383677,0.7284826328977942,-0.7140220487490296,0.7203211602754891,-0.4055145187303424,-0.11209316179156303,-0.3395544094964862,0.1158115672878921,-0.39379504695534706,-0.014000780880451202,-0.8242452568374574,0.765557277482003,0.684966878965497,-0.8549664067104459,0.0642068786546588,-0.8405661080032587,-0.691150120459497,-0.29349053418263793,-0.4355342951603234,-0.2927140574902296,0.961051479447633,-0.26939588971436024,-0.8069546571932733,0.23061070498079062,-0.14591095549985766,0.9990554880350828,0.30332268588244915,-0.65534258633852,0.2285823207348585,0.4665604173205793,-0.553857110440731,0.8207383933477104,0.09973875153809786,-0.7792169875465333,0.11195227783173323,-0.6212691888213158,-0.3748919158242643,0.18469803221523762,0.3372434885241091,-0.39424102008342743,-0.13949775649234653,0.39230168890208006,-0.44170015258714557,0.7674687807448208,0.8428152850829065,0.014368043281137943,0.040648247580975294,-0.07895937189459801,-0.049630653113126755,-0.8745841877534986,0.0857865228317678,0.30616392428055406,0.24326166091486812,-0.9714078074321151,0.6406679227948189,0.03915431955829263,0.39858441380783916,0.45556154707446694,-0.29008077131584287,-0.3913358920253813,0.8617416694760323,0.271455654874444,0.3750425521284342,-0.6870117853395641,-0.2865947778336704,0.3052905392833054,-0.08739778492599726,-0.7099922271445394,-0.8291739313863218,-0.5221307384781539,0.7849648892879486,0.3406989728100598,0.5556246759369969,-0.6285472707822919,0.2505408967845142,-0.12409527460113168,0.17394129652529955,-0.19490727223455906,0.9818705548532307,-0.2625823956914246,0.4402812672778964,0.5965404445305467,0.36727091763168573,0.21149288723245263,-0.36133391223847866,-0.05236259335651994,0.5254459343850613,0.6905092922970653,-0.049938461277633905,0.18976612389087677,-0.8527043056674302,-0.7257733247242868,0.05848694685846567,-0.2799758003093302,-0.3840381456539035,-0.9772522556595504,0.20296173868700862,-0.7823345893993974,0.055730887688696384,-0.6371465101838112,0.7508313003927469,-0.4267536993138492,0.38133453903719783,0.7826317134313285,0.7534421859309077,-0.9201403446495533,-0.7314872820861638,-0.7396586942486465,-0.5901697943918407,-0.9405371309258044,0.4092338099144399,0.7649244600906968,0.7869174745865166,0.9340233709663153,0.054644554387778044,-0.7729430194012821,-0.3120183823630214,0.20627170195803046,0.11613536765798926,-0.6950148716568947,-0.5352123146876693,-0.4105203761719167,0.4560021418146789,-0.5638997326605022,0.39578843396157026,0.544888018630445,-0.918778098654002,-0.8005278832279146,-0.6795403268188238,0.12018954195082188,-0.5723524643108249,-0.8977091223932803,0.5058854673989117,-0.1893640635535121,0.003613431006669998,0.9720387384295464,0.1332609965465963,0.1515874108299613,-0.7808870347216725,0.9928782102651894,0.2586580668576062,0.8343635946512222,-0.8866015924140811,0.2720458470284939,0.6328616640530527,0.9201958002522588,-0.44172198371961713,-0.22285508597269654,0.563117905985564,-0.33117877785116434,-0.5958149586804211,0.9455225900746882,0.9772128318436444,-0.19152975734323263,-0.5877311257645488,0.39868702087551355,-0.7422745069488883,-0.9445877261459827,0.4906086456030607,0.22028755582869053,-0.00657808780670166,-0.3539540655910969,0.24509543739259243,-0.8171105161309242,0.6274639079347253,-0.40229984372854233,0.7357002608478069,-0.9129685098305345,-0.8160242596641183,-0.17260679742321372,-0.999744875356555,0.606714294757694,0.5781282112002373,0.05132740177214146,0.2663411106914282,0.6986862109042704,0.24628334026783705,-0.8173740874044597,0.27472014212980866,-0.8976800478994846,-0.13662888435646892,0.6152817732654512,0.6862769587896764,0.2814604830928147,-0.46298327995464206,-0.8156473827548325,0.16676634969189763,-0.9397452245466411,0.7489128708839417,0.2766006817109883,0.19543332746252418,-0.6198560250923038,0.6311985403299332,0.9663344812579453,0.6672372445464134,0.8071916764602065,-0.9456238173879683,0.08680226467549801,-0.12224085675552487,-0.1902496055699885,0.5322485035285354,0.17958794767037034,-0.3821187550202012,-0.9453312330879271,-0.6674332339316607,0.994588662404567,0.19218824338167906,-0.5397116881795228,-0.3037268449552357,0.555677343159914,0.3187456866726279,0.5600128690712154,-0.7920164759270847,0.33365284698083997,-0.3681065868586302,-0.07417184812948108,-0.2974586011841893,-0.8557748342864215,-0.5287327938713133,-0.5702301762066782,0.9932445264421403,0.13324803533032537,-0.8476353683508933,0.9784541227854788,-0.9957248191349208,-0.9403349212370813,-0.06324249785393476,0.7173225479200482,-0.595236411318183,-0.13808351941406727,-0.11702856561169028,0.4205126343294978,0.7111694398336112,-0.03781661903485656,-0.03396679786965251,-0.6431587636470795,-0.018120207358151674,0.1487771370448172,0.7298039314337075,-0.42416643630713224,0.47417173720896244,-0.11953930277377367,-0.6997627401724458,-0.2864601672627032,-0.3158865924924612,0.15930050471797585,0.09978148294612765,-0.18951578810811043,0.46210583951324224,0.8870306080207229,0.46035248087719083,0.2553000207990408,0.6899209334515035,0.4616573522798717,-0.001142644789069891,-0.6771208452992141,0.16294107818976045,0.8223000923171639,0.9463688414543867,-0.8989121126942337,-0.7425257037393749,-0.8894833330996335,0.3646386875770986,0.8254092317074537,-0.2931506372988224,-0.5453614327125251,-0.8379037673585117,0.4723638538271189,-0.8240543962456286,-0.7210486959666014,-0.4259159453213215,-0.4708787417039275,-0.29641786031425,-0.12659771041944623,-0.17118635633960366,-0.39167419727891684,-0.13946697069332004,0.6612151325680315,-0.8846257184632123,0.559164933860302,-0.04383898386731744,0.07296252762898803,-0.12082172185182571,0.6189872450195253,-0.46421932987868786,-0.5969494176097214,0.9647424318827689,0.00545755960047245,-0.19695931347087026,-0.6041510491631925,-0.8725460269488394,-0.4209727677516639,-0.36382650723680854,-0.8369518779218197,0.17322221398353577,-0.8111851741559803,0.22293155267834663,-0.8344592340290546,-0.008838748559355736,-0.18938451213762164,0.796561551745981,-0.5846103318035603,0.8473035776987672,0.6391151524148881,-0.7342813583090901,0.8332558888942003,0.11676984373480082,0.7307819151319563,-0.9921298688277602,0.6548329438082874,0.21495664259418845,-0.4233874729834497,0.7717639468610287,0.3086932268925011,-0.2816145517863333,0.37787535646930337,0.072930664755404,0.2819923162460327,-0.9472809289582074,-0.05595424072816968,-0.4512450424954295,-0.9970941958017647,0.9861513134092093,-0.10840797144919634,-0.4585163895972073,-0.33027890184894204,0.13089370680972934,-0.44918563263490796,-0.7064619213342667,0.01850254274904728,0.8426639954559505,-0.2615075740031898,0.9542249836958945,0.5867785327136517,0.6129193184897304,0.15837023220956326,0.26573355169966817,-0.3771627750247717,0.5819352641701698,-0.42835917696356773,-0.06918945303186774,0.3410415514372289,-0.08133042277768254,0.1842747931368649,0.9931692914105952,0.16639269841834903,-0.5728835090994835,0.29013516707345843,-0.19318787939846516,0.38585343677550554,-0.8294223635457456,-0.03127859905362129,0.7094631744548678,0.8283489355817437,0.06959326704964042,0.03272388642653823,0.5279529150575399,0.7136377873830497,0.35942726861685514,-0.5646811430342495,-0.6553590651601553,-0.05804734583944082,0.9399208389222622,0.2602663799189031,0.7219359935261309,0.9081853367388248,0.810596012044698,0.2579769156873226,0.4607417108491063,-0.8986678845249116,0.6323249381966889,0.8628587145358324,0.3174405316822231,-0.13725031726062298,0.1381933782249689,0.30690043698996305,0.8952053897082806,-0.8934137430042028,0.2814413891173899,0.23335088370367885,0.7362348735332489,-0.7790721976198256,0.08592933602631092,0.5250886231660843,0.21782942116260529,-0.0928476513363421,0.07573665678501129,0.3727302346378565,0.005297880154103041,0.2161964480765164,-0.900330325588584,-0.27671095496043563,-0.11239452846348286,-0.3054099758155644,0.2570264213718474,0.3848559372127056,-0.2560618636198342,-0.6822250988334417,0.7140085510909557,0.11529109673574567,0.4354011327959597,-0.9641578258015215,0.1942980126477778,0.7793548256158829,-0.47380609763786197,0.3303735568188131,0.04775588121265173,0.7663353658281267,0.2874025055207312,0.15609380463138223,-0.3669463978148997,-0.3443555389530957,-0.504784177057445,-0.32685682689771056,0.7205357351340353,0.3478048942051828,-0.6953195976093411,0.8584485040046275,-0.31522565660998225,-0.7558790468610823,0.731233511120081,0.3441441128961742,-0.567432299721986,-0.8573860456235707,-0.12722887191921473,-0.4276753244921565,0.4252100782468915,0.8203763477504253,-0.9711779314093292,-0.9736194219440222,-0.7353104860521853,-0.06932696839794517,0.8868591878563166,0.4309656717814505,-0.8519319747574627,0.6691007097251713,-0.1479281480424106,0.5500433458946645,0.3113554776646197,-0.1874586045742035,0.8079384784214199,-0.23971605952829123,-0.18342591635882854,-0.6626985371112823,0.41464338172227144,-0.6643728357739747,-0.3281876426190138,0.6658672275952995,-0.6361904889345169,0.9723384152166545,0.19821144035086036,-0.974934283643961,-0.5012761983089149,0.07116484735161066,-0.9263196545653045,0.24878643732517958,-0.694325003772974,-0.9082390409894288,-0.7278721290640533,-0.3416534699499607,-0.5829066601581872,0.14822183037176728,-0.021148524712771177,0.6958378022536635,0.693045249208808,-0.015295115299522877,-0.6999338883906603,0.20804533828049898,-0.7884709713980556,-0.9198141521774232,0.6647906582802534,-0.7405066341161728,0.2794602457433939,0.03796094795688987,-0.4009484751150012,-0.22842738684266806,0.2583111682906747,0.5829717521555722,0.2984904069453478,-0.28046818682923913,0.5945794475264847,-0.45663968613371253,0.11159297451376915,-0.8629057467915118,-0.9151882599107921,-0.9882603953592479,-0.40956591721624136,0.32535770954564214,-0.6591785522177815,0.33690590457990766,0.9879722436890006,0.4399472502991557,0.5611145789735019,0.48975565982982516,-0.7178577333688736,-0.2667737859301269,-0.5691420026123524,-0.5451215831562877,0.3125788946636021,0.7679650415666401,0.2565566054545343,-0.9568785359151661,0.44621138414368033,0.33738559391349554,-0.3819228755310178,0.5802096016705036,0.25831762002781034,0.9104589116759598,-0.14287818549200892,0.49272169591858983,0.8384783822111785,-0.7816288224421442,0.5813197973184288,-0.08553539589047432,-0.7723114732652903,0.4165490991435945,-0.4445989215746522,0.744633627589792,-0.7591503653675318,-0.8014332107268274,-0.9049119893461466,0.34143486339598894,-0.216517249122262,0.7179488730616868,0.15976411383599043,0.9409493617713451,-0.3733654022216797,0.15615429868921638,-0.37638284312561154,-0.4270884273573756,0.19037358136847615,0.19696494145318866,-0.5941465431824327,-0.9970486820675433,0.22134552104398608,-0.44093878427520394,-0.5969758755527437,-0.7602991769090295,0.9253474911674857,0.9069954510778189,-0.37517203902825713,0.782619088422507,0.712019320577383,-0.5170804909430444,0.7854975410737097,0.3172453958541155,0.11594084231182933,-0.24832483381032944,-0.5251524853520095,-0.572811090387404,0.0016940571367740631,-0.23316238075494766,0.29955581668764353,-0.6390538332052529,0.12335319444537163,-0.24538995092734694,0.03397933719679713,-0.9537402805872262,0.6480960827320814,0.47000886546447873,0.32620337326079607,0.2722914880141616,0.9357530865818262,-0.3755469829775393,0.48450526501983404,0.12825859943404794,0.39169945009052753,-0.8186181616038084,0.04757143696770072,-0.7771813999861479,-0.928571845870465,-0.08921126695349813,-0.08655343158170581,0.8649745043367147,0.40734603675082326,0.18332302663475275,0.36882531456649303,0.403085436206311,0.033962429501116276,0.010045932605862617,-0.8482573097571731,-0.26383064268156886,0.652685965411365,0.9835565807297826,0.485245487652719,-0.5772086041979492,-0.5333141940645874,-0.23892117151990533,-0.8625399651937187,-0.4447389622218907,-0.8536442229524255,0.6457459172233939,-0.19016557512804866,-0.5690665794536471,0.9638851950876415,-0.44780574878677726,-0.7708836235105991,0.47829251643270254,0.5953327952884138,-0.21137668238952756,-0.8275806591846049,0.41177372075617313,-0.10069857910275459,-0.5751560591161251,0.4765585269778967,0.6239254660904408,0.27895244769752026,0.9752514073625207,-0.41133285826072097,0.8323841206729412,0.5336111318320036,-0.1368524362333119,0.53964539244771,0.2073878520168364,0.4232024750672281,-0.2064002389088273,0.9613491115160286,0.4300077697262168,-0.30837966268882155,-0.9029248035512865,0.30058230133727193,-0.6031940630637109,-0.5192758203484118,0.34476750157773495,0.56438302481547,-0.0517390719614923,0.256344897672534,0.9531444730237126,-0.7985106972046196,0.4105142052285373,-0.5162538047879934,0.9875478921458125,-0.8009267295710742,0.8311853623017669,-0.016053297091275454,-0.6761277969926596,0.6514195390045643,-0.7293438804335892,0.3642494264058769,-0.5827272534370422,0.18139588925987482,0.06387819955125451,-0.9654103526845574,0.40120798675343394,-0.3806137624196708,-0.8186927195638418,0.20626611169427633,-0.4689380289055407,-0.3865363704971969,0.47289388813078403,-0.3123806952498853,-0.8569877305999398,-0.698923974763602,0.09163366490975022,-0.7107953988015652,-0.2005304116755724,0.11793442443013191,0.2573532429523766,-0.4142944519408047,-0.08529410604387522,0.9790798285976052,-0.3812059899792075,-0.10131212184205651,-0.01714862510561943,0.34699059277772903,-0.274263680446893,0.8341049822047353,0.19557479117065668,-0.5430810647085309,0.4745847163721919,-0.1071939836256206,0.22465835884213448,0.7597215129062533,0.6338159455917776,0.7086163866333663,0.1465686927549541,-0.4251834019087255,-0.5272546326741576,-0.13638463709503412,-0.650407119654119,0.6832861606962979,0.9189261365681887,0.44353116815909743,-0.8627325473353267,-0.8692931029945612,0.13277599308639765,-0.40912732062861323,0.9848154759965837,-0.8124872343614697,0.6755350390449166,-0.4837815980426967,-0.8855502656660974,-0.2732643336057663,-0.4163255598396063,0.5798197318799794,0.7654262455180287,-0.19693060498684645,0.7038704454898834,0.39028128888458014,0.6825364795513451,-0.41724557941779494,-0.6984196631237864,-0.04564243135973811,0.7005628156475723,0.9481055322103202,0.7784422812983394,0.9513091207481921,0.7904281741939485,-0.6793594327755272,0.5642117648385465,0.8780976133421063,0.6148571190424263,-0.9815327189862728,0.2743412349373102,0.10643301578238606,-0.5945052308961749,-0.34496911708265543,-0.9010684518143535,-0.1677163732238114,-0.28527956269681454,0.40853138361126184,0.47737584076821804,-0.04048823844641447,0.46341857919469476,0.6252400171943009,-0.7614329545758665,-0.293715494684875,0.5160607215948403,0.5346815516240895,-0.44936535926535726,0.9861967442557216,0.25915664434432983,-0.8684419402852654,0.24381489912047982,-0.9838700946420431,0.6477519953623414,-0.4758190833963454,-0.9912968706339598,0.20504301087930799,-0.33167093014344573,0.4870024649426341,-0.25857363920658827,0.396375784650445,0.44031813368201256,-0.8862107158638537,0.44087911024689674,-0.7902358244173229,0.9821121413260698,-0.9903944144025445,-0.13413270423188806,0.6863833134993911,-0.4150615190155804,0.6581205129623413,0.9752640910446644,0.5653759748674929,-0.7433319017291069,-0.10450742207467556,0.7480745292268693,-0.10626021632924676,0.1713073793798685,0.5374962468631566,-0.6785104777663946,0.4813319705426693,0.878756697755307,-0.6541008660569787,-0.5710519952699542,-0.278607752174139,-0.26640783762559295,-0.04569251602515578,0.6016637464053929,-0.5607193410396576,-0.9538471852429211,-0.10460133338347077,0.8074058308266103,0.42267391132190824,0.01563069550320506,0.9973643063567579,-0.5667727952823043,0.7839513812214136,0.8545233733020723,-0.4197750720195472,-0.7840333757922053,0.740689979866147,-0.844116089399904,-0.7906144578009844,0.46836134558543563,-0.6869282978586853,0.3731636288575828,-0.43114246521145105,-0.3430624436587095,0.49892931152135134,0.24198884703218937,0.8786496380344033,0.7678668135777116,0.9302651202306151,-0.5245030815713108,0.33545798528939486,0.558756080456078,-0.5151975858025253,-0.5043348665349185,-0.43821650743484497,0.10773996403440833,0.7160830562934279,-0.5875057652592659,-0.7525585521943867,-0.8073711874894798,0.46457337215542793,-0.6152576678432524,0.7259844243526459,0.13749295379966497,0.8181597618386149,0.1674929242581129,0.8476909240707755,0.7805509688332677,0.8030433868989348,0.29207389894872904,-0.07588449772447348,0.3561404407955706,-0.24939179979264736,-0.08113359846174717,0.4200244261883199,-0.14373376220464706,-0.47653803741559386,-0.016907802317291498,0.5122513831593096,0.5281515908427536,0.8427227255888283,-0.22720052115619183,-0.2641429090872407,-0.4655554639175534,-0.5458975592628121,-0.6531031704507768,-0.8584940889850259,0.6608629673719406,0.08895210968330503,0.5077877002768219,0.4324681330472231,0.2536971108056605,0.9966131830587983,-0.26797162741422653,-0.8132658670656383,0.3239673520438373,-0.5868190224282444,-0.6252202652394772,-0.19182296702638268,0.4144970625638962,0.19151154765859246,0.00942972581833601,0.08392745209857821,-0.19395836861804128,-0.2426272165030241,-0.11713643092662096,-0.8753980034962296,-0.8001027959398925,0.4595870729535818,-0.9598527820780873,-0.8520543915219605,-0.3431640509516001,0.5286830547265708,-0.15048656752333045,0.22587190009653568,0.1530110975727439,0.7747710547409952,0.318194423802197,0.47814097814261913,0.20344708068296313,-0.11058771284297109,-0.17420325800776482,0.632338632363826,-0.9608333851210773,-0.37960264971479774,0.765630379319191,0.056132190860807896,0.7214407143183053,0.29942912608385086,-0.813458289951086,-0.04759664507582784,-0.7770519689656794,-0.6716634617187083,0.49477274576202035,-0.08386825956404209,0.5094633945263922,-0.7417301614768803,-0.6741215731017292,-0.7577657173387706,-0.36448271153494716,-0.23287529358640313,0.6336181829683483,0.46456746477633715,-0.9961520461365581,-0.35940625704824924,-0.30257580941542983,0.8534349701367319,0.7852225666865706,-0.028350320644676685,0.697491473518312,0.11644087778404355,-0.10049455799162388,-0.8599631981924176,-0.09974543191492558,0.6136442688293755,0.3240803559310734,-0.5435913014225662,-0.8042990141548216,0.39857889199629426,-0.6947687808424234,0.1459562643431127,0.4877943745814264,0.8025272572413087,-0.008057848550379276,0.6622728840447962,-0.2360408678650856,0.21534945582970977,0.8907692874781787,-0.1116585093550384,-0.47228260850533843,-0.1421458744443953,0.32122085941955447,0.267231113743037,0.3435947485268116,-0.13560699671506882,-0.5974973030388355,-0.16904850723221898,0.2524198410101235,0.6467603519558907,0.510515134781599,-0.5313392668031156,-0.2947989935055375,-0.8004279104061425,-0.4380884040147066,0.9331235392019153,0.1876643244177103,-0.5421748431399465,-0.29572405805811286,0.9875532672740519,-0.064759885892272,0.9840751616284251,-0.7735031074844301,-0.8076295992359519,-0.34918732242658734,0.6064653401263058,0.32900501787662506,0.07528650341555476,0.28286372730508447,0.17645480018109083,-0.3429362834431231,-0.5727965645492077,0.7352533084340394,-0.34632380912080407,0.32607398740947247,0.4155240445397794,0.044399553909897804,-0.1089117000810802,-0.4793589897453785,0.9617274813354015,0.6329712131991982,0.7833367055281997,0.8851532242260873,0.9635981847532094,0.7961383215151727,0.9255637805908918,0.4014128977432847,-0.09822217561304569,0.647119602188468,0.5652583818882704,0.5240596779622138,0.5733495582826436,-0.4801086699590087,0.8010296234861016,-0.3106473102234304,0.8083497420884669,0.8830218841321766,0.8156872787512839,0.2408612398430705,-0.9747848697006702,-0.1472026603296399,0.8724656631238759,0.6192365568131208,-0.17868037056177855,-0.47762533416971564,0.33035625517368317,0.43387287808582187,-0.21917328983545303,0.6371185411699116,0.7586506297811866,0.09004065906628966,-0.7092803223058581,-0.2786308410577476,0.3553372174501419,-0.5739055406302214,0.5126382880844176,-0.7549326177686453,-0.27007211931049824,0.7343383687548339,-0.016243239864706993,-0.8260448602959514,-0.3552771550603211,-0.30262515554204583,0.6580225052312016,-0.9249386824667454,0.792742672841996,-0.590787585824728,-0.0849858783185482,-0.14582398487254977,-0.5620404137298465,-0.4700204720720649,-0.6695097247138619,0.41206838097423315,0.5071247229352593,-0.7513992195017636,-0.282098937779665,0.5970310722477734,-0.35197710199281573,-0.4714461276307702,0.29125186428427696,0.6273050950840116,-0.684013759251684,0.2699742838740349,0.4012494124472141,-0.1351332631893456,0.18341327039524913,-0.594746635761112,-0.546745662111789,-0.5133505878038704,-0.7692592795938253,-0.2112684417515993,0.14204743364825845,0.7537278817035258,0.009652350097894669,-0.9192886794917285,-0.9651644518598914,-0.01691756723448634,0.06992584420368075,-0.6862269784323871,-0.4613004741258919,0.9363647126592696,-0.8004478504881263,-0.293981334194541,0.9170305291190743,-0.6782739446498454,0.798457735683769,0.048913365695625544,-0.776579933706671,0.07785461051389575,-0.24384699389338493,-0.0651273662224412,-0.7892340170219541,-0.6072902190499008,0.9302749903872609,-0.2493723053485155,0.9106855732388794,-0.14287949539721012,-0.9096604357473552,-0.21457296796143055,-0.274603218305856,0.5043371017090976,0.24503070302307606,-0.994893335737288,0.03926457976922393,-0.07602452300488949,-0.249394069891423,0.6228771703317761,-0.5725310482084751,-0.38749626697972417,0.25499059120193124,0.7113213613629341,-0.8402502867393196,0.8835911196656525,-0.22232198156416416,0.8761861906386912,-0.4019173397682607,0.5974019505083561,-0.395720808301121,-0.4511385434307158,-0.8774581574834883,-0.9276189794763923,0.19446234218776226,0.3990878267213702,0.5682873972691596,0.15549234906211495,0.5729914233088493,-0.8652298687957227,-0.24205472320318222,0.9929808685556054,0.5153377423994243,-0.3438467141240835,-0.6081758225336671,0.034239566419273615,-0.02811842644587159,-0.875562478788197,0.28111421689391136,-0.5816835216246545,0.3761201240122318,0.4370634127408266,-0.686837658751756,0.33103711996227503,-0.8419941221363842,-0.572840397246182,-0.22179444087669253,0.0546576208434999,-0.09962414531037211,0.8696160526014864,-0.6213503540493548,-0.5930462330579758,-0.15289921592921019,-0.019526903983205557,0.7528972672298551,-0.8434566515497863,-0.9055747091770172,-0.572294631972909,0.06272604782134295,0.576090079266578,0.09860555781051517,-0.39054278330877423,-0.5052253687754273,0.7436825693584979,0.6722176116891205,-0.8530344543978572,0.4077588999643922,0.4164735288359225,0.7734566861763597,0.21763693680986762,-0.05744553450495005,-0.09158591786399484,-0.26428788527846336,0.23325756611302495,0.451026463881135,-0.42618435667827725,0.6170927146449685,-0.22900882456451654,0.7946656192652881,-0.9521385272964835,-0.5480455397628248,-0.8736972264014184,-0.09729443024843931,-0.734899153932929,0.16755034727975726,-0.4812794029712677,0.7561323372647166,-0.3953733188100159,-0.33658943558111787,-0.24083236185833812,0.21748697198927402,-0.44311492471024394,0.3492425545118749,0.9774512117728591,0.3314002202823758,0.8550282600335777,0.007416304666548967,0.15254023112356663,-0.5099038956686854,-0.28713947907090187,-0.7990038227289915,0.2512270174920559,0.7739470256492496,0.451033306773752,0.9030344150960445,-0.97048454079777,0.681486401706934,-0.5012839613482356,0.4403308229520917,-0.9953880659304559,-0.5322872698307037,-0.4826044742949307,-0.8012598655186594,0.38926482619717717,0.30954631930217147,-0.935644275508821,-0.7556064710952342,-0.9665579171851277,0.6494724792428315,-0.36346438247710466,-0.5526302438229322,-0.3039423609152436,0.22044753190129995,-0.49560598842799664,-0.6603911351412535,0.934047048445791,0.12085877079516649,-0.6775274081155658,-0.491848599165678,0.17500934470444918,-0.17738493252545595,0.37979403091594577,0.8673012554645538,0.6107894550077617,0.8491944065317512,-0.39394927816465497,-0.3151091835461557,-0.6800789572298527,0.022718802094459534,-0.5181469316594303,-0.22643656702712178,0.08368156477808952,-0.8863276490010321,0.11226115468889475,-0.1977921281941235,0.8012315183877945,0.7543821367435157,-0.9740221351385117,0.013052163179963827,0.5682012410834432,0.6122569721192122,0.6449196492321789,-0.07875340757891536,-0.832396945450455,0.7452017487958074,-0.44701577769592404,-0.20797752728685737,0.44242739817127585,-0.5526071703061461,-0.6581550957635045,0.3136658570729196,-0.7001902163028717,-0.6644820780493319,-0.26197657361626625,-0.06163308583199978,0.8965297164395452,-0.5480167148634791,0.2641291278414428,0.5043128230609,-0.22300014132633805,-0.9451545462943614,0.9604064458981156,-0.4332207082770765,-0.02165288059040904,0.8589320280589163,-0.9825281370431185,-0.9553322261199355,-0.1255291854031384,0.14289145357906818,-0.0694948136806488,0.8037688666954637,0.07632443774491549,0.3976157968863845,0.671869691926986,-0.7384017496369779,-0.4463807032443583,-0.578234844841063,-0.9177013305015862,0.4899063091725111,0.41662537679076195,0.2822855622507632,-0.19851640239357948,-0.5865014046430588,-0.9070979435928166,0.8277306333184242,0.646426665596664,-0.8977185441181064,-0.7578283962793648,0.5976136308163404,-0.33334784768521786,-0.8638248490169644,0.39991104509681463,0.4251316674053669,0.4415497360751033,-0.36433523893356323,0.653971022926271,-0.9738125433214009,-0.6131395753473043,0.7863855198957026,0.6589199155569077,-0.7212289064191282,0.3249302455224097,0.3815902234055102,-0.7148954384028912,-0.1242231740616262,-0.16957557294517756,0.6042219791561365,0.23773399693891406,-0.8918602890335023,0.8964171851985157,-0.45471976045519114,-0.18220522860065103,0.2513584173284471,-0.28103892179206014,-0.5702361525036395,0.34608178213238716,0.44323466904461384,0.38120773155242205,0.4473514575511217,0.7417236734181643,-0.2490242193453014,-0.1668070750311017,0.16016245167702436,-0.3326014783233404,-0.8155482304282486,-0.18248058389872313,0.6032578032463789,0.41350574186071754,-0.15673944493755698,0.24225907307118177,-0.7657764866016805,0.5708709033206105,-0.8075578757561743,-0.028737236745655537,-0.5253248987719417,-0.0770588549785316,0.9828907162882388,0.7031055931001902,0.4624688890762627,-0.2101410566829145,0.9947502012364566,-0.7984787975437939,0.6535537517629564,0.6268143011257052,-0.17909807991236448,0.9400242692790926,0.7168572363443673,-0.16181035479530692,-0.9199465219862759,-0.5042232638224959,0.11632214486598969,0.7917930036783218,-0.8639381458051503,0.4870734205469489,0.911165488883853,-0.46557303238660097,-0.679428999312222,-0.2626183247193694,-0.6913605802692473,-0.013673267792910337,-0.04821063717827201,-0.9544978705234826,0.4511428363621235,0.9977001664228737,0.1768252053298056,-0.08409998193383217,-0.6738739693537354,0.7772831171751022,-0.22853845823556185,-0.04309102753177285,0.22933105006814003,-0.6757568148896098,0.08650214038789272,-0.5021274909377098,-0.8862665542401373,-0.12851040018722415,-0.7313746814616024,-0.5310403229668736,0.8392295627854764,-0.9072050363756716,0.7479112111032009,0.7640008213929832,-0.4556814660318196,0.31577323470264673,0.4639760600402951,-0.7314608027227223,-0.2836880567483604,-0.5457633039914072,0.012999067548662424,-0.1788224340416491,-0.06119387876242399,-0.5582869411446154,0.3304005032405257,0.3475303710438311,0.030857980251312256,0.40187501069158316,0.5205894294194877,0.4307789849117398,-0.49203636730089784,-0.7367797954939306,0.010599793400615454,-0.5787417385727167,0.5063575198873878,-0.2095193276181817,-0.0783232906833291,0.4083973695524037,0.5072897109203041,0.987558338791132,0.9584114481694996,0.49619682785123587,0.2345532299950719,0.6216590581461787,-0.3798700333572924,-0.7123192050494254,-0.5017113834619522,0.5045419596135616,-0.881774082314223,-0.8739084424450994,0.6788649372756481,0.848817789927125,-0.666787217836827,0.7365568815730512,-0.2844304982572794,0.7404841277748346,0.5881080953404307,0.8531780503690243,-0.5827411762438715,-0.36401446908712387,0.24285302497446537,0.9008438689634204,0.5168342287652194,-0.3251499719917774,0.05057508172467351,0.5512895919382572,-0.9484883234836161,0.18092927150428295,0.40577482152730227,-0.976796951610595,0.1440725359134376,0.28130679903551936,0.9642313504591584,-0.8878572206012905,-0.9495700155384839,-0.6659217714332044,-0.6814792123623192,0.4902752125635743,0.6044509620405734,-0.3081707116216421,-0.3289158712141216,-0.8739143242128193,0.06787040922790766,0.37294592382386327,-0.6479715360328555,0.6168642775155604,0.12594827031716704,0.8251232565380633,-0.23900926811620593,0.37604872696101665,0.8773346142843366,-0.3974356329999864,0.7538305060006678,-0.08298941981047392,0.9678053925745189,0.2943307412788272,-0.2824058965779841,0.4505138793028891,-0.05582670867443085,-0.8372420738451183,-0.01088485587388277,0.5339652197435498,-0.6456219549290836,-0.6004031435586512,-0.010171247646212578,-0.6774089457467198,-0.28153816889971495,0.009910255204886198,0.4903560848906636,-0.7174591305665672,0.5710912272334099,0.6927496050484478,-0.38291721465066075,0.6913272552192211,0.7500422368757427,0.24982677027583122,-0.24443992925807834,0.8733797050081193,0.893216323107481,0.719997133128345,0.6085503031499684,0.920111021026969,-0.7576601267792284,0.6285327109508216,0.21228828374296427,0.6477955589070916,-0.7986179278232157,0.8862511566840112,0.8606503088958561,0.19585346803069115,-0.4305022624321282,-0.3931065881624818,0.15476813400164247,-0.2464146544225514,-0.8645923999138176,0.9640943384729326,-0.9568289774470031,-0.8000340205617249,-0.23820376675575972,0.7504109889268875,0.9682122929953039,0.6279354654252529,-0.8763559213839471,0.5854943748563528,-0.6747476002201438,-0.3788651484064758,0.06532514095306396,-0.7415579301305115,-0.8608835209161043,-0.403858819976449,-0.19661743706092238,-0.015383226331323385,0.6595800877548754,-0.8069926933385432,-0.33558179438114166,-0.7512355949729681,-0.737549046985805,0.3698265072889626,0.8189441179856658,0.03625559573993087,0.5760014466941357,-0.8254548776894808,-0.6446591448038816,-0.9827094958163798,0.8845576476305723,0.39960487093776464,0.6876882980577648,-0.005282465368509293,0.7382808099500835,-0.13413514709100127,-0.024277579504996538,0.3622878221794963,-0.5309835327789187,0.4598708772100508,0.7173059182241559,0.8571760123595595,-0.27003920543938875,0.5559321194887161,0.9526724210008979,0.2095693051815033,0.36813177773728967,0.8234888981096447,-0.08399374084547162,0.7865540734492242,0.02511419402435422,-0.8611852582544088,-0.29120321525260806,-0.6329538309946656,0.877348305657506,-0.17266050959005952,0.6726688374765217,-0.48969687707722187,0.9012679997831583,-0.20935863815248013,0.4820245895534754,0.2579621085897088,0.059017343912273645,0.9059565598145127,0.21518858755007386,-0.8705500806681812,0.20295808231458068,-0.5240472140721977,0.8704916047863662,-0.04999086074531078,0.20958754420280457,-0.5494157490320504,-0.6108063831925392,0.8073334931395948,0.03934485837817192,-0.5455724708735943,-0.0502885477617383,-0.8171837027184665,-0.834271923173219,-0.41197846084833145,0.016994681674987078,0.04271369939669967,-0.792655318044126,-0.3003583117388189,-0.8290538676083088,-0.09320158045738935,0.71318026073277,-0.46977445716038346,-0.7511934223584831,0.038235897198319435,-0.5856345109641552,-0.7970762378536165,0.8867677864618599,0.7800182704813778,0.7995369951240718,-0.5989307584241033,0.16798013634979725,-0.3268261165358126,0.8208918496966362,0.985275233630091,0.8272434491664171,0.30208708066493273,-0.30465924413874745,0.21563960704952478,-0.007503704633563757,0.49680294562131166,-0.4417656292207539,0.8973343409597874,0.2697883737273514,0.25236002961173654,0.9276907611638308,-0.07572677405551076,0.39715231442824006,0.963892059866339,-0.34694589069113135,0.993530007544905,0.4256038246676326,-0.6470656776800752,-0.32447605626657605,-0.289485783316195,0.7542889402247965,0.013330057263374329,-0.4898070436902344,-0.616755198687315,0.263000859413296,0.6840397440828383,-0.9796045157127082,-0.46000889549031854,0.08602607622742653,0.16273290570825338,-0.5830540750175714,0.23711347486823797,0.8973167864605784,-0.5667699407786131,0.7580659189261496,-0.2649606051854789,0.4037983096204698,0.27670122822746634,0.2456990866921842,-0.818427711725235,0.7832632958889008,-0.9916570307686925,-0.6183235053904355,0.5930995107628405,-0.3132600928656757,0.5836666664108634,0.8190593938343227,-0.3521823575720191,0.07237517880275846,0.10459262831136584,0.11498299054801464,-0.2360374187119305,0.33518767124041915,0.25946470350027084,-0.4179813526570797,0.8507710872218013,-0.060449942015111446,0.9314506463706493,0.1871612761169672,-0.08671596413478255,0.4204092212021351,-0.6994127598591149,0.3259769445285201,0.6388709666207433,0.34170589968562126,-0.18115181801840663,0.17209395207464695,-0.633306429721415,0.3354023923166096,0.8691089549101889,0.27586378948763013,0.20517041254788637,-0.5139877800829709,0.9793953485786915,0.975222512613982,-0.7983720730990171,-0.9326169406995177,-0.7715622168034315,0.2662801290862262,0.38958472246304154,-0.5192954614758492,0.040352263022214174,0.8362446525134146,0.27575612580403686,-0.8270213366486132,0.055599484127014875,-0.4231090936809778,-0.4767439397983253,-0.8695243638940156,-0.8207753864116967,0.6560099190101027,0.6227011121809483,-0.5499523845501244,-0.4766704277135432,-0.4494772828184068,0.5267902575433254,0.060237038880586624,-0.4037227453663945,0.469112956430763,0.9160403562709689,0.5446738740429282,-0.0024828361347317696,0.4975291769951582,0.7610420235432684,-0.8759597232565284,-0.26407672837376595,0.601143938023597,0.8196701384149492,0.8429244975559413,-0.6118423431180418,0.41774479439482093,-0.9285543411970139,-0.7905934453010559,-0.10312340129166842,-0.7542636152356863,0.9444279270246625,-0.1902274526655674,-0.8383728568442166,0.8227452244609594,0.1520145796239376,0.06070470251142979,0.6272074421867728,-0.8315298766829073,0.5178465549834073,-0.9880619519390166,-0.3968088426627219,-0.14145628409460187,0.4565259707160294,-0.36246623285114765,-0.1848606546409428,-0.48656837921589613,0.7437895517796278,-0.6650953446514904,-0.13983507547527552,0.0047096931375563145,0.006902795750647783,0.6661255517974496,0.1470561223104596,0.5966273117810488,-0.29225077060982585,-0.9137111050076783,0.6236128034070134,0.7875342085026205,0.762131180614233,0.12154246913269162,0.03691190620884299,0.7067219791933894,0.40467415377497673,0.2968608126975596,-0.2956204917281866,-0.8769890288822353,-0.06365971872583032,-0.388469404540956,0.45541365537792444,-0.8254000111483037,-0.10821125656366348,0.8424919066019356,-0.029015139676630497,-0.01594702946022153,0.038252079393714666,0.2124614417552948,0.9775141347199678,-0.19203589344397187,-0.03210680698975921,0.15810831310227513,-0.621246762573719,0.810325148049742,0.6919917957857251,0.858648169785738,-0.9616373414173722,-0.36837891582399607,-0.7208385174162686,0.11919989809393883,0.5388601217418909,0.32974784821271896,0.26304697804152966,-0.7495995992794633,-0.9935407410375774,-0.40956615237519145,0.3231098265387118,-0.21383826155215502,-0.14585459884256124,-0.6481631300412118,0.7198733491823077,-0.9669417166151106,0.4821856627240777,-0.6465435507707298,-0.9096497478894889,0.59267837414518,0.7808689675293863,-0.653576529584825,-0.18056368688121438,-0.954211181961,0.19332749536260962,0.7492483104579151,-0.3517102375626564,0.5302499746903777,0.1671853824518621,0.3176323832012713,-0.19839027570560575,-0.2701700571924448,-0.5979594490490854,-0.9600536129437387,-0.06205471744760871,0.7745195077732205,-0.8841986367478967,0.37767099030315876,0.267846105620265,0.6123048425652087,0.33731554821133614,0.7952943546697497,-0.49838516768068075,-0.10704577434808016,-0.8782265381887555,-0.5404112138785422,-0.3288321355357766,-0.7011639261618257,-0.24822027562186122,0.44846355728805065,0.48237333819270134,0.05169086391106248,-0.26179458340629935,-0.8286824761889875,0.38443146692588925,0.6588540221564472,-0.8986041354946792,-0.11653324961662292,-0.080808793194592,0.6564064309932292,0.41809608368203044,-0.9306257762946188,-0.5991333308629692,0.9426715765148401,0.5461116130463779,-0.9412209438160062,0.6618723380379379,-0.08386443741619587,-0.29717766493558884,-0.12328613037243485,-0.48347925394773483,-0.5718048084527254,0.4545515668578446,-0.8249558368697762,-0.16409519128501415,0.6956019727513194,0.5852861455641687,-0.2990594683215022,0.17023504665121436,0.3107595914043486,0.16621051030233502,0.22544332593679428,0.5586727415211499,-0.6972241052426398,0.5934483506716788,-0.17044537048786879,0.18047436885535717,0.2467960868962109,-0.6482198620215058,0.3205340253189206,-0.288049450609833,-0.25433653872460127,0.7549365842714906,-0.3194673052057624,-0.734634343534708,-0.7415451668202877,-0.990828899666667,-0.9584143357351422,0.14739123545587063,-0.20890210010111332,0.6409130552783608,0.8506591767072678,0.9544246448203921,-0.02101157372817397,-0.9470920851454139,0.1460713786073029,0.6326957158744335,-0.9224245455116034,-0.6735117468051612,-0.7967512905597687,-0.21379970107227564,0.13516503758728504,-0.3372306479141116,0.11521271243691444,-0.8272855938412249,0.4286985918879509,-0.3890946698375046,0.137415184173733,0.8146771960891783,-0.562870875466615,0.8959676544182003,0.5979360667988658,0.9508740082383156,0.12390964897349477,0.7821166552603245,0.028010484762489796,-0.738764354493469,-0.6078596361912787,-0.7616053163073957,-0.22196431551128626,0.5121460328809917,0.2074366882443428,-0.4085044153034687,-0.8338880813680589,-0.17849125619977713,0.15132087748497725,0.7533358624204993,-0.18434400856494904,0.4294451526366174,-0.7920713638886809,0.32310980185866356,-0.33620851021260023,0.673410227522254,-0.32464003935456276,0.8129314766265452,0.5458353972062469,-0.7883946103975177,-0.02972543379291892,0.7973829684779048,0.41978885559365153,0.44991235295310616,0.3445024276152253,0.2330152136273682,-0.006362395826727152,0.4576649032533169,-0.4463664824143052,-0.04097123770043254,-0.5283197173848748,-0.5858081229962409,-0.4438262893818319,-0.1888124318793416,-0.7437322670593858,0.6445381748490036,-0.33324609603732824,0.3875587577931583,0.9003950273618102,-0.19351190607994795,0.32009619288146496,0.661055981181562,0.6801111456006765,-0.873182569630444,-0.5140900928527117,-0.3382734004408121,0.5107150934636593,0.25462748343124986,-0.32718995958566666,-0.5739093227311969,-0.39672936452552676,-0.544093556702137,-0.3108467156998813,0.09352806862443686,-0.15804991824552417,-0.349599648732692,-0.8013141374103725,0.05951319821178913,-0.49991461681202054,-0.9493520981632173,0.0020477096550166607,-0.3870777962729335,-0.7622791328467429,0.18828109139576554,0.9158678436651826,0.9467167682014406,0.542365690227598,0.3516294457949698,-0.3149414830841124,0.23482905887067318,-0.33511201618239284,0.9515858986414969,0.08474249253049493,-0.11191187053918839,-0.29253512294963,0.49826511600986123,0.3457809709943831,-0.7766275606118143,-0.011458452325314283,-0.7959897024556994,0.7314357934519649,0.09388263337314129,-0.25905897887423635,0.6887321658432484,-0.9069186332635581,0.48552359640598297,0.5733566745184362,-0.47447666991502047,0.47869675559923053,-0.3688816777430475,-0.1322111403569579,0.8217469858936965,-0.4233794170431793,0.07584428135305643,0.5296996016986668,-0.5888883168809116,-0.3283758033066988,0.5472378837876022,0.6836870820261538,-0.4702255679294467,-0.2006857618689537,0.3545447215437889,-0.8273146511055529,0.2610966651700437,-0.8828613446094096,0.9923798991367221,0.31703483359888196,-0.7745197471231222,-0.20356394490227103,0.9355469597503543,-0.3630550876259804,0.15278427209705114,-0.9518683413043618,0.520637892652303,-0.901800855062902,-0.6863319277763367,-0.5929652946069837,0.058070581406354904,-0.6023883493617177,0.3490905715152621,0.9110747207887471,-0.4671515738591552,0.7011404349468648,0.0833546151407063,0.8662205748260021,0.073769296053797,0.9833927233703434,0.304130791220814,-0.5354690160602331,-0.2735534552484751,-0.8396731107495725,0.6426468845456839,0.6616485128179193,0.1695998483337462,-0.9975676746107638,0.47848755633458495,-0.8748439596965909,-0.3749074013903737,-0.7815227643586695,0.29111620923504233,-0.5863012410700321,0.4738666508346796,0.03882186161354184,0.0005658078007400036,0.17314859898760915,0.5520044290460646,0.829446136020124,-0.5570850558578968,-0.061083084903657436,0.7235413501039147,0.41532051796093583,-0.016047556418925524,0.5688836839981377,0.554114397149533,0.3737140172161162,0.7476779771968722,0.9907667590305209,-0.21980312652885914,0.7815409060567617,0.21258778497576714,-0.5632479987107217,-0.9000288075767457,-0.7757507227361202,0.7900073011405766,-0.2582609481178224,0.23301013326272368,0.9343277979642153,0.527159433811903,-0.18704380001872778,-0.5955589259974658,-0.27184373047202826,-0.14208700647577643,0.3570619192905724,0.6712309457361698,0.07066290639340878,0.8997355736792088,0.024462035857141018,-0.21244241250678897,0.5328316506929696,0.7502670399844646,0.9795842431485653,0.871083096601069,0.5159794162027538,-0.5193785605952144,0.4078172156587243,-0.6410851110704243,0.72752166679129,-0.9732063906267285,0.5455941972322762,-0.12029733834788203,-0.7925416142679751,-0.13146934192627668,0.8314960589632392,-0.497651029843837,-0.7063304935581982,0.964208503253758,-0.7475517340935767,0.9493621615692973,0.5931162405759096,0.232718366663903,0.16545709408819675,0.9554082760587335,-0.49693492986261845,-0.8884672871790826,-0.8453166899271309,0.8326331754215062,0.030308314599096775,-0.8595674722455442,0.23659280175343156,-0.011070765554904938,0.5501756044104695,0.01347343297675252,-0.489983098115772,0.5936202467419207,0.5558964256197214,0.6315225511789322,-0.6553355632349849,-0.4656366161070764,-0.3627025312744081,0.32319370936602354,0.9183764578774571,-0.766006005462259,-0.7814073800109327,0.40471251495182514,0.7120467345230281,0.6728702047839761,0.7399489213712513,-0.43486856389790773,-0.4473347198218107,0.0009645656682550907,-0.5795093541964889,-0.8765834555961192,0.0013331440277397633,-0.12914969632402062,0.3693979810923338,0.5979537898674607,0.05410034116357565,-0.0018515032716095448,-0.4122685524635017,0.3249086062423885,0.5715605802834034,-0.24933509435504675,-0.8838201882317662,-0.5136042893864214,-0.6486960337497294,-0.8462829333730042,0.8196563492529094,0.2614050880074501,0.8874430186115205,0.7590935402549803,-0.0977126364596188,-0.8993344572372735,-0.5494448156096041,-0.10774614382535219,0.14717368315905333,-0.06767531763762236,-0.7459575487300754,0.1330359261482954,0.6532721985131502,-0.07691237702965736,-0.01998985232785344,0.6847195075824857,0.8128207921981812,-0.7018316737376153,-0.7282955287955701,-0.3717077155597508,-0.34362708078697324,0.43756034038960934,-0.7432741881348193,-0.08097564056515694,-0.4310652744024992,0.25326885702088475,-0.07697797194123268,-0.3980110897682607,-0.7295433161780238,-0.9376927698031068,-0.00014430144801735878,0.7354674213565886,0.34323280956596136,0.293689020909369,0.12296269228681922,0.9769367179833353,0.9153095260262489,0.6124844797886908,-0.8068407224491239,0.7133699613623321,0.6450943574309349,-0.4025835068896413,0.5836439994163811,-0.11433089664205909,0.5704636047594249,0.004802254494279623,-0.07894376525655389,0.8339646677486598,0.10598918097093701,-0.5740774222649634,0.350999454036355,0.9527225908823311,0.8790433541871607,-0.36248372960835695,-0.8717519245110452,-0.5585095002315938,-0.09028371190652251,-0.6212631375528872,0.47780005540698767,-0.09297721646726131,0.8204718451015651,0.7385589214973152,0.6918046157807112,-0.8182710357941687,0.047793143428862095,0.6790429949760437,-0.004997399635612965,0.8177541657350957,-0.18786436459049582,0.7089676111936569,0.27404785668477416,-0.04957049200311303,-0.14682061597704887,-0.41261548455804586,-0.4789950642734766,0.4749028473161161,0.714276225771755,0.6813246249221265,-0.22805428318679333,-0.8126966450363398,-0.9498299327678978,0.38839733181521297,-0.11355275474488735,-0.9955831756815314,-0.3784371349029243,0.27963690692558885,-0.2530218791216612,-0.5653452943079174,-0.9097398654557765,-0.3544627237133682,-0.5451917042955756,-0.5722189205698669,-0.28202540101483464,0.5501086786389351,0.9907970954664052,-0.050080801360309124,-0.28479385701939464,0.9340315284207463,0.9272094154730439,-0.5698639829643071,-0.18335457844659686,0.7689066412858665,-0.032531090546399355,0.7015508613549173,-0.26990514853969216,0.688631375785917,0.02914340840652585,0.831111270468682,0.0698993494734168,0.755795884411782,0.19304774375632405,-0.3235864075832069,0.45007930882275105,0.5155823617242277,-0.6037216894328594,-0.5046488256193697,-0.5719595556147397,0.2043778500519693,0.01562217203900218,0.4991096933372319,0.07310683000832796,0.2713915598578751,-0.49354692129418254,-0.3925862335599959,-0.20517230592668056,-0.684968763962388,0.4091667765751481,0.6382040088064969,-0.5978362401947379,0.045448785182088614,-0.9269148111343384,-0.6216390244662762,-0.30310366302728653,-0.24093968281522393,0.9660610165446997,-0.57444476056844,0.7478942978195846,-0.7066307039931417,0.8374840533360839,-0.830627853050828,-0.9781892118044198,0.33699979819357395,-0.17272943817079067,-0.13382315635681152,0.9862649831920862,0.34128132415935397,-0.6297807088121772,-0.8631737963296473,0.1843953737989068,-0.8065587570890784,-0.8371239290572703,-0.9020949499681592,0.35623462591320276,-0.8278203690424562,-0.3457719343714416,0.3201365312561393,-0.9551290799863636,-0.29058767622336745,-0.8892790018580854,0.9736311784945428,0.0812759567052126,0.542803437449038,-0.676322603598237,-0.27527214400470257,0.2662437567487359,0.5858032172545791,0.48346852185204625,0.3692630301229656,-0.8831659383140504,0.9227168117649853,0.7093367842026055,-0.026409050915390253,0.45646864641457796,-0.6532490849494934,-0.5459233880974352,-0.8267147494480014,-0.15007009729743004,-0.19993296265602112,-0.6044396557845175,-0.06096735969185829,-0.21006716834381223,0.7631669510155916,-0.23083499958738685,0.8227016441524029,0.17268879292532802,0.7236320897936821,-0.01696343533694744,0.34517362294718623,-0.30198818584904075,-0.010224460158497095,-0.33212320506572723,0.15860171802341938,0.6702392450533807,0.244330869987607,0.35596706392243505,0.6366821168921888,-0.9456373555585742,0.6475704205222428,0.18866303656250238,-0.5125766256824136,0.3337923907674849,0.4740544534288347,0.9064599703997374,0.593686405569315,0.9541016374714673,0.2357617300003767,0.2404068550094962,-0.7144499672576785,-0.9604048226028681,-0.4185607898980379,-0.5993241514079273,0.5246385745704174,0.029161744751036167,0.09878670331090689,0.5969292083755136,-0.24385013384744525,-0.6525977491401136,-0.7669371869415045,-0.1530470480211079,0.7431035940535367,-0.13187320670112967,0.8941845796070993,-0.8031380865722895,-0.241167894564569,0.05528415692970157,0.5130293588154018,0.6868434990756214,0.5254409690387547,-0.7221783888526261,0.22997497115284204,0.6106138778850436,0.366838192101568,0.5803401819430292,0.9489308609627187,-0.3605015450157225,0.9970199167728424,0.09880874399095774,0.8747098348103464,-0.6853321120142937,0.21925495564937592,0.974496693816036,-0.997121243737638,-0.5584379113279283,-0.2562233591452241,0.9073557574301958,-0.9723590207286179,-0.5688493861816823,0.5102090332657099,-0.8139588525518775,-0.8691291157156229,-0.3073525638319552,-0.3463908499106765,0.7182125421240926,-0.7318929280154407,0.5654581328853965,-0.18054671119898558,-0.7836308279074728,-0.986003830563277,0.746060989331454,-0.7421069084666669,0.6223638416267931,-0.21549340477213264,0.1932881260290742,-0.5031293956562877,-0.11199656082317233,0.6646078480407596,-0.7463599895127118,0.43713721027597785,0.512979100458324,0.7211924446746707,-0.9479150269180536,-0.6435221266001463,0.07615029346197844,0.4516802937723696,-0.7536544911563396,0.4400420938618481,-0.10412780521437526,0.038249661680310965,0.38136514369398355,-0.0006502838805317879,0.365861838683486,-0.5798299228772521,-0.8170628766529262,0.6126168170012534,0.19317073468118906,-0.0014114156365394592,0.2944459277205169,0.5279286070726812,0.13871045736595988,0.3573791841045022,-0.47962247766554356,0.5315391486510634,-0.3051658449694514,0.7221269700676203,0.014177517965435982,-0.4206781918182969,0.5672516603954136,-0.5922007472254336,-0.7758795488625765,0.32770556630566716,0.35675379261374474,0.8886641804128885,-0.2292203544639051,0.5483903456479311,-0.47917425027117133,-0.46157156815752387,-0.007279012817889452,0.42392665008082986,0.0035868966951966286,0.2017853893339634,-0.9577830671332777,0.6942933527752757,0.6182365408167243,-0.6694286931306124,-0.354088107123971,0.9007354853674769,0.9005126538686454,-0.6544770151376724,0.3026845189742744,-0.4631196688860655,0.7149593774229288,-0.7478798707015812,0.4266852359287441,0.4413793608546257,0.9194715027697384,-0.7665268345735967,-0.5214118272997439,-0.6000211290083826,-0.07964455150067806,0.8737997156567872,0.6335736601613462,-0.22333259647712111,0.35622338578104973,-0.6315896646119654,-0.32101065292954445,-0.36846389016136527,0.732790959533304,0.2670198669657111,-0.05616966588422656,0.021269201301038265,0.08342212159186602,-0.3167094709351659,-0.5199857032857835,-0.8138694348745048,0.30526947556063533,-0.3712230892851949,0.04284676443785429,0.8148655439727008,-0.38028980139642954,-0.7301192879676819,-0.5441092532128096,0.9270791113376617,0.6947845476679504,-0.4204155788756907,-0.6306749205105007,-0.5565363336354494,0.24001719150692225,-0.13878467120230198,0.9720005500130355,0.6362384990788996,0.3828302682377398,-0.5287643615156412,-0.6385844079777598,-0.17277461756020784,0.1338682845234871,-0.06862967554479837,-0.501715331338346,-0.9980191881768405,-0.6929921377450228,-0.22910822043195367,0.6932281069457531,-0.6360136177390814,-0.2910365383140743,0.7909700549207628,0.3045331286266446,0.43198087764903903,0.6317650629207492,-0.7378603587858379,-0.6396411284804344,-0.6378315179608762,-0.6594220050610602,0.06490301946178079,0.856846742797643,-0.7013254594057798,0.7165912608616054,-0.8562003052793443,0.5945850163698196,-0.5336898965761065,0.062196260783821344,0.10673300642520189,0.0762528395280242,-0.5059238392859697,0.42264783242717385,0.4664269289933145,-0.3321865969337523,0.6135978191159666,-0.5087562599219382,-0.28728915844112635,0.7024024520069361,0.4348964402452111,-0.5924674537964165,-0.7335415128618479,0.8802414457313716,0.4888565242290497,0.27206651121377945,-0.2897722143679857,-0.3295568428002298,0.9113043383695185,-0.9728260328993201,-0.42767345160245895,-0.7761408062651753,0.8275100104510784,-0.4628300527110696,0.8874711557291448,0.6534936092793941,0.8199606011621654,0.9838374005630612,-0.07348703080788255,0.935616479255259,-0.7729943888261914,-0.3864191365428269,-0.8720012013800442,-0.5551076531410217,-0.13647168315947056,0.9677663096226752,-0.08041578624397516,0.5809130701236427,-0.088466867338866,0.033320603892207146,0.7139479573816061,0.7940043858252466,-0.9517771643586457,-0.7690916387364268,-0.8225916055962443,-0.30391322961077094,-0.9181579961441457,0.3793431557714939,0.4166478659026325,0.14361756714060903,-0.5842315782792866,0.002349034883081913,0.3257366023026407,-0.25410154461860657,0.7686968599446118,0.35669831186532974,-0.7990778218954802,0.009961831849068403,0.33195328479632735,0.6978823128156364,0.4649242567829788,0.1802121945656836,0.721115191001445,-0.04671634966507554,-0.7341191763989627,-0.9771572556346655,-0.7531700767576694,0.40814181277528405,0.6980016357265413,-0.16918811528012156,0.017387928441166878,0.10622414108365774,-0.7721507432870567,-0.4609730369411409,0.7323694010265172,-0.8576667890883982,-0.030520705971866846,-0.20765794860199094,-0.00501091917976737,-0.7329911761917174,-0.9291986147873104,-0.028424006886780262,0.5596585781313479,-0.10339748347178102,0.5482900692149997,0.15680769039317966,0.11098219081759453,-0.03609181148931384,0.6833062968216836,-0.587191210128367,-0.44172826455906034,-0.5094422167167068,0.5090026604011655,0.008198739029467106,-0.21960492292419076,-0.685840789694339,-0.1541817979887128,-0.43484815675765276,-0.9218851597979665,0.7780732135288417,-0.8763198056258261,-0.9400436021387577,0.2160697877407074,-0.05064241634681821,-0.09988815896213055,-0.23044784925878048,-0.11453124461695552,-0.12338077090680599,0.4479288603179157,-0.509336743503809,0.7199175646528602,-0.521952741779387,0.3066378440707922,0.11641659680753946,-0.9680390334688127,-0.8877961663529277,-0.6939229876734316,0.30806732596829534,-0.0331302797421813,-0.12670122319832444,-0.46947475941851735,0.19820812297984958,0.3116490449756384,-0.2904128893278539,-0.17216521548107266,-0.40719075268134475,0.8073147898539901,-0.8721977635286748,0.27655833726748824,0.057968495413661,-0.9174801497720182,0.026631409768015146,-0.015990103594958782,0.3207747768610716,0.6904082312248647,-0.6712893177755177,-0.12257451144978404,0.07441559061408043,0.43278307747095823,-0.5251754242926836,0.7428009225986898,-0.12358532333746552,-0.3034950806759298,0.3381437584757805,-0.40330432122573256,-0.22884147381410003,-0.6735110711306334,0.3199981334619224,0.5187265556305647,0.5888145649805665,0.02228424372151494,0.268074500374496,0.23955220077186823,0.9336672839708626,-0.34081284422427416,0.442838033195585,-0.5543500045314431,0.5403170334175229,0.38629312673583627,0.578075559809804,0.43298942409455776,0.7656176276504993,-0.5079892468638718,0.6318723130971193,-0.2752999598160386,-0.15469040628522635,0.3529150178655982,0.7052425076253712,0.2592255873605609,0.8812512429431081,0.7101745172403753,0.8881761897355318,-0.688788827508688,-0.49898720206692815,-0.15404678555205464,0.28516586357727647,0.24908379931002855,-0.04306326713413,-0.6224507354199886,-0.3250455283559859,0.44399672001600266,0.38663854310289025,0.4296952234581113,0.15382954850792885,0.49703894229605794,-0.4426330984570086,0.2650458556599915,0.3575571603141725,-0.25102362828329206,0.9075097586028278,0.3856025659479201,0.2922053840011358,0.16600572131574154,0.8004883760586381,-0.1543826349079609,0.3415011642500758,-0.5056312079541385,-0.07912392728030682,0.21198646677657962,0.13248709309846163,0.6138814953155816,0.41974342754110694,0.4371177521534264,-0.9715314828790724,0.5713046686723828,-0.06101886788383126,0.5176890790462494,-0.11947404593229294,-0.308555044233799,0.32637158315628767,0.46505155926570296,0.7289087451063097,-0.8162134434096515,-0.7471854593604803,-0.2445623567327857,-0.825209095608443,-0.02300986321642995,-0.6555984895676374,0.37441503116860986,-0.9717360381036997,-0.7371866125613451,-0.3557604104280472,-0.0189630133099854,0.8609932279214263,-0.6485158344730735,0.8712574290111661,-0.4778609937056899,-0.685887566767633,-0.33638201653957367,0.563270578160882,-0.6722265789285302,-0.1916309166699648,-0.9159408933483064,0.9852923001162708,-0.6978984465822577,0.420231893658638,-0.6497795325703919,0.24308297084644437,-0.5738272597081959,-0.7256743400357664,-0.7890879279002547,0.3472358179278672,-0.7255958379246294,0.09814708726480603,-0.6010477114468813,-0.6178018073551357,-0.339505597949028,0.8154802401550114,0.4928548811003566,0.8428324535489082,0.9867459833621979,0.40459034172818065,-0.9089446300640702,0.7063638749532402,-0.16902970988303423,0.6014181883074343,0.23719201423227787,0.26928876200690866,-0.271965934894979,-0.6439669253304601,0.7975520952604711,-0.5358824348077178,0.9498240170069039,0.4894881737418473,0.3386288317851722,-0.014880773145705462,0.5020853062160313,0.8760851980186999,0.04025375470519066,0.10321184992790222,0.4877544795162976,-0.17001167684793472,-0.7860113298520446,-0.20975238550454378,0.10194172989577055,0.6058495156466961,-0.9003768088296056,0.9274839046411216,-0.1919768969528377,0.9659403818659484,0.9623725572600961,-0.8212015884928405,0.6337513877078891,0.9410594175569713,0.17268533632159233,0.9655197076499462,-0.4501076634041965,0.6555139985866845,0.5867286827415228,0.21652185544371605,0.8732901569455862,-0.004847586154937744,-0.6021556230261922,-0.4775506295263767,0.582858704496175,-0.40662007918581367,-0.7188978963531554,0.7014619368128479,-0.4668772965669632,-0.5653537651523948,-0.5309937191195786,-0.8686962071806192,-0.6982310093007982,-0.9009698336012661,0.10108931409195065,0.43633799394592643,0.20525505812838674,0.7843513102270663,-0.5902264094911516,0.08860893081873655,-0.059187368024140596,0.8575701210647821,-0.7870032237842679,-0.9826271152123809,0.3384369518607855,-0.6539358766749501,0.6011165408417583,-0.8000913509167731,-0.7064988780766726,-0.9603134514763951,-0.8640167564153671,-0.2060967404395342,-0.7628248669207096,-0.6190610150806606,-0.3072842019610107,0.3726334855891764,0.22451263153925538,0.27988364500924945,-0.9050662657245994,-0.5031079854816198,-0.9866704614832997,0.46929317945614457,-0.4392480212263763,-0.883055760525167,-0.1083923252299428,-0.5818645088002086,0.8078416092321277,-0.9352254387922585,0.12011048616841435,0.09761027805507183,0.5813340581953526,-0.6685026232153177,-0.3706687190569937,-0.317903705406934,-0.001717349048703909,-0.6932169888168573,-0.2121468181721866,-0.4731842246837914,-0.8149568224325776,0.6697618286125362,-0.6073723109439015,-0.5223003742285073,-0.578892036806792,-0.6922500156797469,-0.39084323681890965,-0.3875861740671098,-0.18288694927468896,0.782868430018425,0.9897916996851563,-0.9948764867149293,-0.9957456644624472,0.6439419719390571,0.14990901527926326,-0.28739296179264784,-0.3615680867806077,0.9817663207650185,0.22629764443263412,-0.9212798587977886,-0.8692069067619741,-0.713462682440877,0.5839157197624445,-0.348847861867398,0.39077185606583953,0.3243601559661329,-0.6252865460701287,-0.13679921999573708,0.05080152116715908,-0.6846846761181951,0.9317035763524473,0.06874535419046879,-0.685607966966927,-0.16560589708387852,-0.22102380776777864,0.16833105497062206,-0.9599491697736084,-0.18639119900763035,0.4539756001904607,-0.6312144608236849,-0.22275499859824777,0.7609483893029392,0.9659140161238611,-0.11898694606497884,-0.6958389203064144,-0.5066624246537685,-0.06101890606805682,0.17290587024763227,0.6413412014953792,-0.6084869923070073,0.44226887868717313,0.2170562855899334,0.7930372459813952,0.6227620644494891,-0.9789174692705274,0.8880914621986449,0.6276702205650508,-0.5720586581155658,-0.21999611286446452,-0.8961473079398274,-0.9375716354697943,0.06294585857540369,-0.5659799240529537,0.003288222011178732,0.8807036890648305,-0.21912920428439975,0.5150834531523287,-0.12794979428872466,-0.8690155143849552,-0.9239768483676016,0.7217229488305748,-0.9566385359503329,0.14052693964913487,0.7280751806683838,-0.9163031154312193,0.12039891257882118,0.37884934106841683,0.5134569862857461,0.039575918577611446,-0.889491687528789,-0.7652365742251277,-0.5993614033795893,0.5085254507139325,-0.21008818550035357,0.5636933511123061,0.42190201953053474,-0.26235962100327015,0.44057820551097393,-0.22665878804400563,0.4319568811915815,0.6727021536789834,-0.9453503838740289,-0.9922833847813308,-0.21405443735420704,0.30776686035096645,0.7507290421053767,-0.5961746871471405,-0.2024616301059723,0.10339027037844062,-0.5047896769829094,-0.16639259830117226,0.3843849515542388,0.5572369336150587,0.04859777074307203,-0.5062494035810232,-0.5912317209877074,-0.23490835214033723,-0.9504525498487055,0.32748165586963296,0.4810286979191005,0.2230322160758078,-0.3766268310137093,-0.8309691450558603,0.21692469995468855,0.9679799163714051,-0.8982459609396756,-0.8475159294903278,-0.6942550088278949,-0.6320158345624804,0.8093611393123865,-0.3529938654974103,-0.7933758394792676,0.7356441090814769,-0.4622381804510951,0.5380153306759894,-0.43393678264692426,-0.4340861076489091,0.6676902775652707,-0.396643721498549,0.033408308401703835,0.34330234536901116,0.04404585110023618,0.39248020807281137,-0.8515896676108241,0.9917090893723071,-0.005934304557740688,-0.21636496391147375,-0.23329670308157802,-0.6750319241546094,0.5152545343153179,0.1266547106206417,-0.6737452568486333,0.33632501401007175,0.21316012414172292,-0.6513547226786613,0.02208589483052492,0.15518410969525576,0.22554315021261573,-0.29497097060084343,-0.7773424270562828,-0.5503661436960101,0.1876069651916623,-0.6508194138295949,0.9119929010048509,-0.6094817598350346,0.05236720805987716,0.7962207295931876,0.7286901185289025,-0.1733311084099114,0.39210847625508904,-0.5438301181420684,-0.22720391722396016,-0.6035147700458765,-0.1213810401968658,0.47322862735018134,-0.8123265476897359,0.9381293011829257,-0.9415999045595527,-0.7052003345452249,0.6460979119874537,0.619447669479996,-0.5295211859047413,0.3015513145364821,-0.7860744730569422,-0.8228444680571556,0.8994079972617328,0.6525441287085414,0.3748449180275202,-0.5498133660294116,-0.7009660396724939,0.2441237960010767,0.7692332277074456,-0.7405451401136816,0.13439604314044118,-0.2867962680757046,-0.924885674379766,0.03067640122026205,0.8414934435859323,-0.27036791760474443,0.7064722538925707,0.31156892282888293,0.7502073929645121,-0.020796507596969604,-0.12486364645883441,0.4906639321707189,-0.4297585431486368,-0.013435210101306438,0.3946437411941588,-0.2557510659098625,0.4722128906287253,-0.5538817155174911,0.9267196217551827,-0.813995644915849,-0.003869511652737856,0.3170154010877013,-0.16533203050494194,-0.9322913405485451,-0.6422670502215624,0.8167640995234251,-0.3602461270056665,-0.1279441062361002,-0.49109751312062144,0.7332998053170741,-0.17507611913606524,0.34208501083776355,0.17522050952538848,0.2861665450036526,0.3975868811830878,0.9049879191443324,0.5968118035234511,0.014343010727316141,-0.5510646509937942,0.4880532235838473,0.38005824759602547,0.15012609027326107,0.6168895796872675,0.5100726904347539,-0.3438634881749749,0.15713134594261646,-0.8899857713840902,0.7276664273813367,-0.7512287618592381,0.8121597939170897,-0.9778314670547843,0.48368846252560616,0.7802342120558023,-0.09115924779325724,0.13023037882521749,0.0255061867646873,-0.2053094645962119,-0.6777104460634291,-0.5943956687115133,-0.8699973113834858,-0.05950797628611326,-0.05925655225291848,-0.3716482538729906,-0.1367423557676375,0.8302836078219116,0.9463803847320378,0.3498870129697025,0.7154778903350234,-0.04017978115007281,-0.8075792603194714,-0.9613199876621366,0.43856990430504084,-0.7928463788703084,0.3719629314728081,-0.22784721059724689,0.5759068825282156,0.3845319007523358,-0.052708704490214586,0.3180079725570977,-0.5557839521206915,0.6391824181191623,-0.520381789188832,0.9403252732008696,0.7598796328529716,0.12785853305831552,0.42326936963945627,0.6101882425136864,-0.10785226430743933,-0.9484730139374733,-0.3788854582235217,0.8337483191862702,0.5899241482838988,-0.8249530391767621,0.5146391941234469,0.17837347043678164,-0.10574984364211559,-0.06379685085266829,0.28648596350103617,-0.48915175162255764,0.4870361746288836,0.319899785798043,-0.17501299688592553,0.8852535635232925,0.7859539678320289,-0.9617354478687048,0.8253314602188766,-0.8182433117181063,0.15688225533813238,0.1211522314697504,-0.5889579663053155,-0.7117321295663714,-0.464327409863472,0.9975126557983458,-0.2892622100189328,0.1036513620056212,-0.008462079335004091,0.2144142291508615,0.21388454735279083,0.6754793818108737,-0.2714682500809431,0.3856527265161276,-0.832740225829184,0.16343852877616882,-0.3546052756719291,0.37038876535370946,-0.5244130115024745,0.2640077071264386,0.4513788288459182,-0.6439455067738891,0.6781585668213665,0.7399521726183593,-0.2740043574012816,-0.14641158562153578,-0.36584219336509705,-0.6809318060986698,-0.27770325308665633,0.1686501712538302,-0.8632848304696381,-0.02986605791375041,0.05734581686556339,-0.49683049228042364,-0.4010341544635594,0.2184103555046022,0.028439408633857965,0.27798623498529196,0.774257848970592,-0.09795127948746085,-0.46256588166579604,0.7137804883532226,-0.1870778831653297,0.10419568000361323,0.6287076198495924,-0.2043180917389691,0.8291403301991522,-0.6919235666282475,-0.7280660392716527,0.6114648743532598,0.04486925806850195,0.13926133513450623,0.22308596828952432,0.03483447711914778,-0.9857063353992999,0.24191095540300012,-0.465975399594754,0.7382569490000606,-0.24553351663053036,0.23949958197772503,0.9545228132046759,0.9906864422373474,0.9363368609920144,-0.6762511301785707,-0.5817686482332647,-0.6756100486963987,0.3645128011703491,0.200826202519238,0.40251669753342867,0.5588782611303031,0.6076468201354146,0.49138597026467323,-0.5933970841579139,0.7059191521257162,0.9312484171241522,-0.011123580392450094,0.7023011124692857,0.6649642465636134,0.9217101600952446,-0.15020100912079215,0.8421007320284843,-0.8269155262969434,-0.6686077699996531,-0.7831626618281007,0.6303772246465087,-0.0621247417293489,-0.5957929552532732,0.9485587705858052,-0.7022849163040519,-0.09690820379182696,-0.9768983786925673,0.0958239883184433,0.8639072068035603,-0.021756541915237904,0.08196968259289861,-0.4088757229037583,-0.42400415893644094,-0.4077546219341457,0.6727300309576094,0.11672743828967214,0.13132880395278335,-0.4079820732586086,-0.05247225193306804,-0.6426328397355974,-0.21550917951390147,-0.936796257738024,-0.5054961577989161,-0.5097268670797348,0.1633228068239987,-0.40846809558570385,0.6765162078663707,0.06455264845862985,-0.43196135526522994,0.35874006198719144,0.4419020381756127,-0.5662401197478175,-0.793228535912931,-0.9478100836277008,-0.17965978290885687,-0.5753994570113719,0.38280795281752944,-0.9295908338390291,0.34902082942426205,-0.047833850141614676,-0.16899970406666398,0.02184877311810851,0.6980922403745353,-0.4064760389737785,-0.026055287569761276,-0.6500535714440048,-0.44692586082965136,-0.39158399775624275,-0.5730459154583514,0.7159333266317844,0.2969046416692436,-0.8314830106683075,0.9330431972630322,0.43755514780059457,-0.10858684359118342,-0.2881061928346753,0.7136842757463455,0.5739307105541229,-0.08337532775476575,0.09984823642298579,-0.7297616144642234,0.8089243760332465,0.626226709689945,-0.4985124687664211,0.14673089515417814,-0.9353880430571735,0.08187259780243039,-0.25065834866836667,-0.14321753196418285,0.1061895010061562,-0.49005441926419735,-0.6493015983141959,0.6850306461565197,-0.3379429876804352,-0.7879947139881551,0.47531834430992603,0.049117380287498236,-0.49646210577338934,-0.36164863454177976,0.0996428201906383,0.8990730536170304,0.028897251933813095,-0.16339017311111093,0.3047166271135211,0.10200652852654457,-0.49754170468077064,-0.13542572688311338,-0.21660400275141,0.17194050922989845,0.49159847712144256,0.792903786059469,-0.027074790094047785,0.12079185573384166,-0.6726436726748943,0.28605804685503244,-0.3378457105718553,0.4889286230318248,0.9361282107420266,-0.25506979413330555,-0.046222136821597815,-0.7848257818259299,-0.7595347533933818,0.30324074206873775,0.43011814588680863,-0.14759566774591804,-0.34923472674563527,0.6771084778010845,-0.8485098108649254,0.9311841949820518,-0.7940440541133285,-0.5255515370517969,-0.6226737680844963,-0.9196401196531951,-0.27113720402121544,-0.7960224766284227,0.3110190089792013,0.1031690202653408,-0.8648521099239588,-0.43914618296548724,-0.15591478161513805,0.7858723602257669,-0.97207633825019,0.5958516662940383,-0.5142534617334604,-0.3385811485350132,-0.6988998167216778,-0.6466797739267349,-0.07901136297732592,0.9839885104447603,-0.49057719949632883,0.9158659931272268,0.3459135955199599,0.6590125365182757,0.02635252382606268,0.2927920366637409,0.3687590518966317,0.8191224779002368,0.6200903598219156,0.43052520556375384,0.5699848746880889,0.8945421297103167,0.750930764246732,0.5378203163854778,-0.060159970074892044,0.4114135215058923,-0.2631217581219971,-0.08863601554185152,0.046839444898068905,0.8153108563274145,0.6417892896570265,0.5657058469951153,-0.5967360264621675,0.18237558472901583,0.41861688951030374,-0.696246262639761,0.3167540500871837,0.916196012403816,0.21850343514233828,0.711881407070905,-0.5646616527810693,-0.6554726855829358,0.8293374180793762,0.050956531427800655,0.8589691896922886,0.3014639336615801,0.5019325981847942,0.38272556848824024,0.6535922242328525,-0.39743351796641946,0.0437501510605216,0.22555762622505426,0.3401019284501672,0.9600724298506975,-0.08227562857791781,0.9986700979061425,0.2795184622518718,-0.7795503996312618,-0.02260011713951826,-0.9496460105292499,-0.44264901662245393,0.6224661795422435,0.7470681010745466,0.9671548400074244,-0.1709519550204277,-0.04529667645692825,0.07314627710729837,-0.8811018234118819,-0.9617483695037663,0.5630346569232643,0.23226084792986512,0.9229473597370088,-0.7281866567209363,0.23782265884801745,0.5989798973314464,-0.6938838162459433,-0.7579874265938997,-0.15362816164270043,0.8560677096247673,0.16927150636911392,-0.4777839994058013,-0.4052303391508758,0.8717647162266076,-0.6777852117083967,-0.5241446220315993,0.10665180860087276,0.6503551159985363,-0.9883622457273304,-0.8110276237130165,-0.729824632871896,0.6096055135130882,-0.7479777876287699,0.46874298993498087,0.7197685134597123,-0.7940900768153369,0.8790987557731569,0.13326791673898697,0.6390116368420422,0.8706599767319858,0.9149021161720157,-0.7793743629008532,0.6046966603025794,-0.1300032725557685,-0.11659167613834143,0.8662679395638406,-0.5201728157699108,-0.588965117931366,0.664985598064959,-0.3496313295327127,0.8107592449523509,0.46820165403187275,0.8707369551993906,0.7368032094091177,-0.02509590657427907,0.5225041178055108,0.7351744510233402,0.49394392454996705,-0.600911317858845,-0.5883807358331978,0.41817404003813863,0.42735136253759265,-0.8764241426251829,0.3742567328736186,0.7110761194489896,-0.8033903976902366,-0.2509760637767613,-0.2936895457096398,-0.2519505759701133,0.18132124654948711,-0.24470849335193634,-0.19894260354340076,-0.7177049526944757,0.5253117121756077,0.7808176134712994,0.1861863201484084,-0.5570166241377592,-0.5133760077878833,-0.8957864493131638,-0.68784962547943,-0.45046660397201777,0.25406072894111276,0.23527631349861622,-0.58103186218068,-0.06913252547383308,0.20755555760115385,0.7888539955019951,0.06157584208995104,-0.16486558178439736,-0.4724154192954302,-0.5821838909760118,-0.15575444651767612,-0.5112679968588054,-0.7369955936446786,0.41821095859631896,0.6102601257152855,-0.8357197544537485,-0.8276051818393171,-0.05526227317750454,0.060232422314584255,-0.9991480316966772,-0.413717629853636,0.4826112221926451,-0.5402367566712201,-0.25677996315062046,-0.0981299770064652,0.5863900743424892,0.2948989230208099,0.6784665905870497,-0.4370062896050513,-0.040754207875579596,-0.5825847974047065,-0.6209944291040301,0.1690405490808189,0.5750890681520104,0.43910298962146044,-0.2813063729554415,0.04549395386129618,0.8956557414494455,-0.190952455624938,0.19116629846394062,0.46698725828900933,0.06446944922208786,0.11512626055628061,0.44542020512744784,-0.8096290989778936,0.6014949269592762,0.8510869755409658,-0.40281143924221396,-0.6922453143633902,0.7501122741959989,0.31366074550896883,-0.5319193517789245,-0.4735729149542749,0.2245264546945691,0.2962169642560184,0.9112294083461165,-0.8515186095610261,-0.13853299617767334,-0.9496111520566046,-0.4687538933940232,-0.7644775407388806,0.5241865939460695,-0.47090986743569374,-0.969427702948451,0.31186227314174175,0.11924780299887061,0.3554177791811526,-0.5116468635387719,-0.5639325431548059,0.6093199751339853,-0.36323661217465997,-0.6318322289735079,0.06365729449316859,-0.9003195227123797,-0.68848239723593,0.5090971193276346,-0.9340661461465061,-0.03920590039342642,0.11585983401164412,0.677845480851829,-0.20430349092930555,-0.46283447882160544,-0.23952716775238514,0.6748953559435904,0.47624481189996004,0.3090510661713779,-0.37085034186020494,0.1193872420117259,0.6105181593447924,-0.45022099930793047,-0.24343214044347405,-0.7504190504550934,0.8539485735818744,0.7331193531863391,-0.5308736739680171,-0.9783410932868719,0.26420542737469077,0.31548976711928844,-0.5520824389532208,0.8680544188246131,0.15447130100801587,-0.4110511043109,-0.3525469694286585,-0.3363895225338638,-0.8007290652021766,-0.7213848154060543,0.09776139305904508,-0.7795270392671227,0.35353536950424314,-0.40755326859652996,-0.3595556588843465,0.3780166609212756,0.4700632840394974,0.93120974348858,0.9208994517102838,0.13700225483626127,-0.6285336851142347,0.4779584058560431,-0.09168189717456698,0.6096318773925304,-0.6269942047074437,0.740903471596539,0.2357412870042026,-0.6740294611081481,-0.28249867586418986,-0.3851625183597207,0.4554234561510384,-0.600034894887358,0.07441204134374857,0.1671108673326671,0.4684932087548077,0.16147426469251513,0.9457567119970918,0.8229737454093993,0.5905058095231652,0.413951906375587,-0.3748764218762517,0.71269795531407,-0.06301983492448926,-0.9873671447858214,-0.47856299206614494,0.12846703175455332,0.8792364872060716,-0.1469076368957758,0.3253148216754198,0.7222405816428363,0.15720407292246819,0.03451150842010975,0.9632433080114424,-0.041612510569393635,0.6993259582668543,0.6012084069661796,0.5246932725422084,-0.017587134148925543,-0.22251334367319942,0.12255449965596199,-0.30408678762614727,-0.4952790318056941,-0.5880669578909874,0.21706200810149312,0.2494909786619246,0.7696843356825411,0.3111896659247577,0.9525944073684514,-0.4055644511245191,-0.5358505421318114,0.4528300631791353,0.5619057957082987,0.868036596570164,-0.8747367849573493,-0.6657960521988571,0.5184305412694812,-0.02456240402534604,0.05301837809383869,0.6678242818452418,0.09538509091362357,0.1494694990105927,-0.7331690518185496,-0.6881428300403059,0.13279280252754688,0.766877300105989,-0.4874449507333338,0.5485250987112522,-0.6528407414443791,-0.8012668960727751,-0.8708690349012613,0.9072693702764809,-0.6788053973577917,-0.9164993818849325,0.998517565894872,-0.7599649364128709,-0.48394994204863906,-0.6663681250065565,0.683065592776984,-0.5460020899772644,-0.504349319729954,0.32844997476786375,0.31634428119286895,0.24566688993945718,0.04675885848701,-0.7800600281916559,0.32563457638025284,0.946752930060029,-0.7587332907132804,-0.8839861522428691,-0.23998434050008655,-0.6623230916447937,0.43873821990564466,-0.2944849766790867,-0.683769101742655,-0.22801793459802866,-0.07773857843130827,-0.3292557457461953,0.037242180202156305,0.29434292623773217,-0.038874365389347076,0.8550770771689713,0.7683885702863336,-0.12566561345010996,-0.7820234023965895,-0.5233886549249291,-0.3277814728207886,0.7970673535019159,-0.9335384937003255,-0.11834188690409064,-0.7433381699956954,-0.2214894574135542,-0.6026113210245967,0.20781374722719193,-0.5343650239519775,0.9316175528801978,0.4197226567193866,-0.546581304166466,-0.630979388486594,0.22284255223348737,-0.028287573251873255,-0.9319512248039246,-0.11550794681534171,-0.8489776672795415,-0.8555071256123483,0.4537994950078428,0.3657997902482748,-0.5702942465431988,0.918441797606647,0.7629745057784021,-0.4831997463479638,0.6550861662253737,0.6890451260842383,0.8861030857078731,-0.9447784838266671,-0.9897306957282126,0.4188732751645148,-0.14501168113201857,-0.22671492164954543,0.48945620050653815,-0.7482442008331418,0.2354967608116567,-0.7501420062035322,0.4063310381025076,-0.6828997288830578,-0.6865271143615246,-0.8980447193607688,0.9330986146815121,0.9302881709299982,-0.9874599790200591,-0.6440063961781561,0.38304706709459424,0.1319010015577078,-0.8836933998391032,-0.03863746905699372,0.9881598451174796,0.12666403222829103,0.7072277213446796,-0.9617418656125665,0.6309954477474093,0.2677059043198824,0.7572752400301397,0.44984565721824765,0.20322973933070898,-0.5873270896263421,-0.49647586746141315,0.6555878054350615,-0.5781094473786652,-0.7917329841293395,-0.6301048053428531,-0.927958264015615,-0.7960483077913523,-0.8569793277420104,0.286871281452477,-0.5650868881493807,0.85234399093315,0.6182384272105992,-0.42929514683783054,0.20797413913533092,-0.07243112474679947,-0.08337784418836236,0.7906265631318092,-0.2764258347451687,-0.6097377277910709,0.028522584587335587,0.5810297913849354,-0.7975195897743106,-0.659855738747865,-0.7824110575020313,0.8721764348447323,0.4527094438672066,0.2944432510994375,0.9168407348915935,-0.8734079459682107,0.06909255450591445,0.9999485439620912,0.9729136768728495,-0.1372294700704515,0.5761537007056177,-0.2487680558115244,0.553462830837816,-0.4415942062623799,-0.41798541136085987,-0.241414126008749,0.9894943339750171,0.3353815390728414,-0.7620079685002565,0.8255404732190073,-0.551042343955487,-0.4446183084510267,0.32838087622076273,0.2584406607784331,-0.6851452752016485,0.6250923965126276,-0.2589563764631748,-0.8388949898071587,0.9482231019064784,-0.28504432551562786,-0.535568708088249,0.9851980372332036,-0.3438037149608135,0.09794813441112638,-0.04635087586939335,-0.8007014519535005,-0.28400490805506706,0.8572874926030636,0.16274440521374345,-0.8600458647124469,0.47966004349291325,-0.27240032283589244,0.15657625161111355,-0.7803503042086959,-0.7319282498210669,0.6163037400692701,-0.5937293996103108,-0.1484293700195849,0.48766429210081697,-0.5576198222115636,-0.84669976728037,-0.8091385257430375,-0.8802570709958673,-0.38553052255883813,-0.9919030996970832,-0.7972012124955654,-0.9535113126039505,-0.959215440787375,-0.9078322066925466,0.6311586368829012,-0.18927042372524738,0.37333785044029355,0.7868796614930034,0.5047770505771041,0.8791780634783208,0.24002256337553263,0.8728037616237998,-0.7437967830337584,-0.4305110718123615,-0.4333736468106508,0.5536517794243991,0.3259422858245671,-0.6519925054162741,-0.26400458067655563,-0.8072650916874409,-0.019001384265720844,-0.8707227427512407,0.2469014716334641,-0.07693046284839511,-0.9936385410837829,-0.41450779139995575,-0.9544784617610276,0.07124608429148793,-0.11587777873501182,-0.6113391490653157,-0.5258999336510897,0.7062132442370057,0.4388574422337115,-0.7551223593764007,-0.6950404015369713,-0.9689512453041971,0.24228988774120808,-0.3777015367522836,0.8697972153313458,-0.9268502886407077,0.5482690357603133,0.7375295055098832,0.15611258940771222,-0.8813280705362558,0.8662426648661494,-0.3743139491416514,0.31445226911455393,0.6200399966910481,-0.8069190792739391,0.6143074641004205,-0.9640683503821492,0.4595199190080166,-0.7733780345879495,-0.6078066951595247,0.706049480009824,-0.6982159726321697,-0.09267815109342337,0.3379659438505769,-0.9898749841377139,-0.1305073038674891,0.8123937831260264,0.16199882561340928,0.28985913190990686,-0.5890296050347388,-0.2993062366731465,0.6346004158258438,-0.19322980800643563,0.020642653573304415,0.8471176433376968,-0.10774194030091166,-0.2910165125504136,0.7898258273489773,0.5363383237272501,-0.8383307768963277,-0.44115500152111053,-0.1552279624156654,-0.23096165107563138,0.2766420724801719,-0.40586376702412963,0.4352153427898884,0.8318337248638272,-0.7594418940134346,-0.8577438034117222,-0.535911797080189,0.11129826167598367,-0.24158321181312203,0.7358432495966554,-0.2715454576537013,0.15798500180244446,-0.009756965097039938,-0.10491247987374663,0.6650710985995829,-0.2824799297377467,0.5251324968412519,0.09110410744324327,0.0360313905403018,-0.839385200291872,0.1743672569282353,-0.6273712730035186,-0.3965334892272949,0.6778195109218359,-0.7019698969088495,0.06194814573973417,0.6231976626440883,0.1466802223585546,-0.28859054716303945,0.5496899206191301,-0.9860553978942335,0.2119288593530655,-0.7233696850016713,-0.986224033869803,0.09875382063910365,-0.7418233212083578,-0.13588045071810484,-0.7238095328211784,-0.2407038272358477,-0.42950208857655525,0.9661245462484658,-0.2808254868723452,-0.6043323492631316,0.044664629735052586,0.3333119177259505,0.9020574009045959,0.27693861816078424,-0.5195429273881018,-0.24678583769127727,-0.5386297912336886,-0.982199888676405,0.009564230684190989,-0.19531082594767213,-0.6554168267175555,0.738383031450212,0.2148451078683138,0.47392206732183695,0.5740487580187619,-0.6402121540158987,0.8775714924558997,0.7932218401692808,0.3982888925820589,0.28519371896982193,-0.1651665405370295,0.09912557434290648,-0.6524429870769382,-0.9489842304028571,0.18164678290486336,-0.7086424138396978,-0.6584617514163256,-0.018511069007217884,0.6866557793691754,0.6088347979821265,-0.6376230684109032,-0.27794381231069565,-0.5173966437578201,0.5765933645889163,-0.2017039773054421,-0.748992005828768,0.6484662522561848,0.47570978570729494,-0.42788700060918927,0.45667496835812926,0.5106967552565038,-0.7810124317184091,-0.9017307483591139,0.13383815344423056,0.4208288718946278,-0.6453359578736126,0.8810954447835684,-0.2702361256815493,0.966014439240098,-0.575364685151726,0.37420149566605687,-0.03852094151079655,-0.9637202839367092,-0.25523694697767496,0.30602242378517985,0.333216218277812,-0.8216093531809747,0.03198264120146632,0.8075470812618732,-0.9871462588198483,-0.39692766312509775,-0.9035636223852634,-0.04128451272845268,-0.9453901634551585,-0.06324476841837168,0.9451686386018991,-0.5647241664119065,-0.0050408923998475075,0.2829321385361254,0.681506727822125,-0.8016523201949894,0.693129020743072,0.1507944124750793,0.706075340975076,-0.08003499358892441,-0.6123668877407908,0.8694877419620752,-0.9415026847273111,0.8232758198864758,0.637406989466399,-0.9846822684630752,-0.2986573432572186,0.6106947748921812,-0.24384588561952114,0.6090198941528797,0.8815434211865067,0.5357017451897264,-0.3865696140564978,0.2444579699076712,-0.5491638625971973,0.29855388356372714,0.1975170890800655,0.9989838232286274,-0.941013012547046,0.7568561779335141,0.405638403724879,-0.16097706323489547,0.9555226257070899,0.46443602815270424,-0.9987747874110937,-0.25493889255449176,0.8537277090363204,-0.6125024100765586,-0.1312111932784319,-0.6918317074887455,-0.5793117098510265,-0.2522688233293593,-0.4990864871069789,-0.6220437604933977,0.38299071975052357,0.16926034865900874,-0.07414985774084926,-0.6395453745499253,-0.9749518800526857,-0.3445219388231635,-0.5947652151808143,-0.8072170959785581,-0.16762132802978158,-0.09130092849954963,0.3514015623368323,-0.12144202180206776,-0.6684884927235544,-0.5161528051830828,-0.5188351445831358,-0.9100162233226001,0.9681951012462378,-0.3737391885370016,0.40556046459823847,-0.6556021682918072,-0.09733421308919787,0.4445610707625747,-0.20787508878856897,-0.77299869293347,0.307529388461262,0.5748087321408093,-0.5634278380312026,0.6915805502794683,0.6812486783601344,-0.8998660081997514,0.9174549062736332,-0.6119471518322825,0.6127575100399554,-0.344547790940851,-0.7019384321756661,-0.42616917146369815,0.7142418818548322,-0.6302025313489139,-0.4947144449688494,-0.11947840405628085,0.15056957211345434,0.6735109412111342,0.2637677760794759,-0.2147680982016027,0.9615989634767175,0.5546109853312373,0.6914010490290821,0.5554479998536408,-0.4423985010944307,-0.19254204351454973,-0.12155557842925191,-0.0015099979937076569,-0.4957775301299989,-0.013215765822678804,0.9841973138973117,0.72186313662678,0.7185816336423159,-0.49103938322514296,-0.7877613524906337,-0.4401925867423415,-0.211375935934484,-0.19045230373740196,0.1850938769057393,0.6637931833975017,-0.6673834985122085,-0.4322554445825517,-0.344666862860322,-0.5514242057688534,-0.9725458635948598,0.7981145866215229,0.6615002197213471,-0.43663956271484494,-0.146436236333102,-0.3201923896558583,0.3327487404458225,0.018855394329875708,0.03392905788496137,-0.3998262295499444,-0.018415544647723436,-0.7459721802733839,0.9666601647622883,0.8358238488435745,-0.7930728206411004,-0.7282096836715937,0.3089859252795577,0.8261630367487669,0.07799369748681784,-0.3059919737279415,-0.6455228505656123,0.5061167874373496,-0.5281468671746552,-0.7717188000679016,-0.20037789130583405,-0.9404024700634181,-0.5859828470274806,-0.4899989692494273,0.3846255298703909,-0.9361597248353064,0.49421886447817087,0.21429516421630979,-0.6153886807151139,0.1466940324753523,-0.8677280973643064,-0.03056655265390873,0.9116733800619841,0.8144106427207589,-0.6749107684008777,-0.7535209925845265,-0.0184922581538558,0.5360488099977374,-0.49868831504136324,-0.47789684496819973,0.816517511382699,-0.3731697457842529,-0.5144748082384467,-0.4184834617190063,-0.9500664849765599,0.29012167919427156,0.8074950571171939,0.9193359757773578,-0.3289472786709666,0.5378952203318477,-0.948810818605125,0.9814164056442678,-0.7066164519637823,0.8719986896030605,0.9003737680613995,0.07980517717078328,-0.10588488122448325,-0.1391178765334189,0.7751738554798067,0.25487027456983924,-0.06279124179854989,0.7604669141583145,0.8884312231093645,0.9912532162852585,-0.34336821222677827,0.8731499589048326,0.15635173628106713,-0.2733814367093146,-0.6952406032942235,0.6210190374404192,0.03727593272924423,0.8851916319690645,-0.6807979354634881,0.061576482374221087,0.9004546967335045,-0.3202078607864678,-0.8441283791325986,0.26815908728167415,-0.01558746863156557,0.6028464478440583,0.20783927803859115,0.3100740648806095,0.0684480732306838,0.34016428887844086,-0.07515142997726798,0.10518697509542108,0.9370168377645314,-0.20090783573687077,0.24223162978887558,0.552131618373096,0.08100259536877275,-0.7414633654989302,0.5545968562364578,0.020082961302250624,-0.17733769211918116,0.40610678074881434,-0.4152882546186447,0.6527560711838305,0.9052798771299422,-0.8387000025250018,0.8135701543651521,-0.6089618713594973,0.12252625823020935,0.3573885723017156,0.22299091005697846,0.46208312548696995,0.9633370786905289,-0.6691768057644367,-0.16965534444898367,-0.7326056845486164,-0.7231808374635875,0.8690136671066284,-0.9454170633107424,-0.2069454500451684,0.8036859929561615,-0.1695604040287435,-0.5898663960397243,-0.932136673014611,-0.8306717905215919,0.33955539111047983,-0.02124121692031622,0.7141891224309802,0.20855634659528732,0.1554840039461851,0.8177606537938118,0.03380307834595442,-0.5514682149514556,-0.09742214158177376,-0.01765392581000924,0.6690894612111151,-0.8697018404491246,-0.7480911077000201,0.08857840718701482,0.3984807161614299,0.35718859964981675,-0.7577347587794065,0.9131440608762205,0.8958022850565612,0.6331122792325914,-0.2162265102379024,0.5365478494204581,-0.3850312293507159,-0.09193246765062213,-0.5919598047621548,0.33463185420259833,-0.575287651270628,0.6664213528856635,-0.6273087859153748,-0.6562469769269228,0.20338014420121908,0.942438474856317,0.3320448216982186,-0.4352918863296509,-0.3921298384666443,-0.6282520042732358,0.7957439478486776,0.29702130518853664,-0.7701365356333554,-0.17420310527086258,-0.22683057747781277,0.29360472736880183,-0.5847077225334942,-0.9268323928117752,-0.038041563238948584,-0.995367290917784,-0.20329916151240468,0.7764858696609735,-0.19738494465127587,-0.7757270270958543,-0.8349526673555374,-0.8051677891053259,0.7339213127270341,0.19287996599450707,0.9580457471311092,0.7136740419082344,-0.08978638891130686,0.7317446749657393,0.26836211886256933,-0.3278846023604274,0.8919083890505135,-0.2127406531944871,-0.23608284583315253,-0.37950828205794096,0.27903596591204405,0.25922434497624636,0.7236235686577857,0.8695922698825598,-0.787824543658644,0.6153063629753888,0.8513639597222209,-0.20849661575630307,0.8500933283939958,-0.36568851582705975,-0.8122526477091014,-0.8504766449332237,-0.29027619445696473,-0.6028726841323078,-0.0996363633312285,-0.512123754248023,0.9345677215605974,-0.29476980911567807,0.38175221998244524,-0.8244600128382444,0.6544286706484854,0.002234209794551134,0.2355841677635908,-0.20320080546662211,-0.28732670843601227,-0.43931220239028335,-0.5671781124547124,0.9915686761960387,0.5578170130029321,0.9788262262009084,-0.4747865186072886,0.04651438817381859,-0.23145879106596112,0.04232731880620122,0.16030522203072906,-0.4864760753698647,-0.11869016056880355,-0.2890219702385366,0.5439291666261852,-0.4962307498790324,-0.6776303662918508,0.8507229732349515,0.4477336094714701,0.6593816359527409,0.4002774776890874,-0.8715868066065013,0.9548963224515319,-0.8795325271785259,0.40077096642926335,0.7732833554036915,0.7383606149815023,-0.3593948041088879,0.7838214612565935,0.9904263415373862,-0.49393732473254204,-0.33020420791581273,-0.9004040523432195,0.2548580542206764,-0.6732509145513177,0.10325398948043585,-0.11524209519848228,-0.14844565466046333,0.9550310866907239,0.7983633279800415,-0.38446812191978097,-0.2576155667193234,-0.3488043751567602,0.14227539440616965,0.5468902694992721,-0.2499324157834053,0.5138317504897714,0.6006563128903508,-0.5492630214430392,0.3727449085563421,-0.9107056614011526,0.5330903925932944,-0.4641058281995356,0.5447022928856313,-0.8790750000625849,0.8482566536404192,-0.4426431702449918,0.855292669031769,0.862147940788418,-0.460721543058753,0.5964416610077024,-0.28967840457335114,0.8428447768092155,0.8569281189702451,0.7572230044752359,-0.7536450605839491,-0.20834309561178088,-0.7766428915783763,0.661497678142041,0.3830035524442792,-0.8582762870937586,-0.6452807015739381,0.46091530565172434,-0.4025109726935625,-0.8312303931452334,-0.8003766806796193,-0.08058138052001595,0.5429143635556102,-0.3484793249517679,-0.678379328455776,0.4482559231109917,-0.02563263149932027,-0.6252371887676418,0.61645053839311,-0.09523854963481426,0.13137562898918986,-0.49033706029877067,-0.8256713752634823,0.3143760650418699,-0.3694686279632151,-0.9032998764887452,-0.6436153026297688,-0.05706254346296191,-0.18229217547923326,-0.7065662820823491,0.43341441731899977,-0.4502027537673712,0.1286092703230679,0.41209072107449174,0.20834352681413293,-0.9605165282264352,-0.8008122825995088,-0.8269112631678581,0.48051257571205497,0.9446006631478667,0.23586392868310213,-0.45453836070373654,-0.4360548132099211,0.46332379849627614,-0.023811789695173502,0.39508798625320196,-0.9066702015697956,0.8593059340491891,-0.6331065753474832,0.8083157702349126,-0.9086063401773572,-0.6540723666548729,-0.13850117987021804,0.48538864264264703,0.6629881327971816,0.017379450146108866,-0.18972751265391707,0.36754440935328603,0.8301999946124852,0.379458328243345,0.5409416756592691,-0.011224609334021807,0.12540472438558936,-0.736937687266618,-0.10765525745227933,0.9541194592602551,-0.953205166850239,-0.1574592567048967,0.5376256732270122,-0.15572073822841048,0.25960814766585827,-0.18045871192589402,-0.5409870543517172,-0.8781393421813846,-0.20061180740594864,0.5801002536900342,0.4725555027835071,0.9183363830670714,0.14776210533455014,-0.6550931576639414,0.2413763259537518,-0.25591202825307846,0.4846639148890972,-0.24793972400948405,0.19684556918218732,0.044730997644364834,-0.6364242066629231,-0.3477227916009724,0.05076623661443591,0.28198446286842227,-0.058044412173330784,0.05721893720328808,0.2629450839012861,-0.5487938355654478,0.19511812273412943,0.44423537561669946,0.8563762865960598,0.7030485705472529,-0.23444162821397185,0.25983026484027505,-0.9988814257085323,0.45245859399437904,0.11637054895982146,0.33913902193307877,0.023722101468592882,0.5805137851275504,-0.11428884323686361,0.00794063601642847,0.4823920545168221,-0.5070393807254732,-0.3752012988552451,-0.20018560532480478,0.1164262960664928,-0.8163423240184784,-0.1647203923203051,-0.1962255765683949,0.7463657110929489,-0.009137820918112993,-0.9490829142741859,-0.009843864012509584,-0.9175346218980849,0.6076418207958341,0.8716862946748734,-0.35171128436923027,-0.3338394616730511,0.9066326534375548,-0.2912192866206169,0.11771761626005173,0.9167386591434479,-0.2716890946030617,-0.4595299088396132,-0.47121542831882834,0.7956814379431307,0.21230968879535794,0.15036809025332332,0.23161134216934443,0.6024494091980159,0.4259607535786927,-0.2606381168588996,-0.08308192621916533,0.660010205116123,0.35996559355407953,-0.5969718936830759,-0.05590825621038675,0.42972989194095135,0.6629719715565443,0.6054446650668979,-0.7524925591424108,0.09513803292065859,0.4594433759339154,0.07720119599252939,-0.8834430566057563,-0.4702047477476299,0.6839320766739547,-0.8408599365502596,0.42662337655201554,-0.4393652114085853,0.5037986715324223,-0.8915389305911958,-0.9749611597508192,0.4710982656106353,0.053830357268452644,-0.6896916627883911,0.22404557839035988,-0.9385848161764443,0.43813984375447035,0.6076753539964557,0.345475553534925,-0.6114455373026431,-0.58664715802297,-0.030800452455878258,0.1406281474046409,0.10566348815336823,-0.7005320438183844,0.13926508277654648,-0.8469613967463374,0.47378476336598396,-0.5170822502113879,-0.3660591309890151,-0.51147191086784,-0.8561653117649257,-0.050582526717334986,-0.7312053800560534,-0.39951454754918814,0.2974092070944607,0.4256073418073356,-0.4054104322567582,-0.07387662539258599,-0.3735042936168611,0.5345724411308765,-0.8472588136792183,-0.5999608398415148,0.5340643245726824,-0.5704343798570335,-0.06750250468030572,-0.5237485286779702,0.531571735162288,0.7491160472854972,0.5091727911494672,-0.4928820258937776,0.7095002550631762,-0.21217378927394748,0.08541883574798703,-0.45180012471973896,0.36579293431714177,0.6135546062141657,0.6608239826746285,-0.9587722434662282,0.8043388370424509,0.07261178968474269,0.06668810825794935,0.6517460853792727,-0.5731215379200876,0.02581246942281723,0.9682239163666964,-0.6370878042653203,0.151791553478688,-0.9948850916698575,-0.3913512942381203,0.6721868328750134,0.6770211369730532,0.6757447090931237,0.8031276394613087,0.12976821791380644,-0.9410601761192083,-0.4803391909226775,0.2936239414848387,-0.3723566303960979,0.08328730380162597,-0.989141384139657,-0.5727159213274717,0.8732571490108967,-0.9976980402134359,0.09511815756559372,-0.662022499833256,0.3162336037494242,0.3524110862053931,0.8770969375036657,0.8052387586794794,0.016648306977003813,-0.7391215842217207,0.5892799897119403,0.9189289212226868,0.25425361655652523,-0.6427554148249328,0.580351865850389,-0.5137539715506136,-0.8318390781059861,-0.27611317578703165,0.634342456702143,-0.327390531077981,0.25267911283299327,-0.9163475031964481,0.7061542738229036,-0.03879915736615658,0.983807863201946,0.15378916217014194,0.8899544943124056,-0.7876535984687507,0.0939985765144229,-0.3469953630119562,0.1321958489716053,-0.37039513047784567,0.4996110685169697,0.6517303632572293,0.4609589148312807,0.3692968119867146,-0.9031640570610762,0.09534756001085043,0.17574090836569667,-0.2805695217102766,0.21500350069254637,0.18564606504514813,0.18154782988131046,0.2562472620047629,-0.603903038892895,-0.7596488175913692,-0.5167263434268534,0.9413834805600345,0.09206653060391545,0.7641443815082312,0.9036927898414433,-0.5179775282740593,0.2628332832828164,-0.13230745680630207,-0.4315874120220542,0.09379110718145967,0.3680329700000584,0.12697440618649125,-0.3217647266574204,-0.0766948638483882,0.29922627331689,-0.4240809762850404,-0.7161123021505773,-0.725477053783834,-0.7065939209423959,-0.11344873299822211,-0.33574457187205553,0.4670809363014996,-0.8126741382293403,-0.4203090309165418,0.20323649886995554,-0.736452373676002,0.9292381228879094,0.10151152312755585,-0.1872025760821998,0.07997361803427339,0.3729424485936761,0.17908778926357627,-0.7737551364116371,-0.6159218437969685,-0.6016255393624306,-0.7354132859036326,0.7414113045670092,-0.9870161474682391,0.024301625788211823,0.951999846380204,-0.8723921785131097,0.13372952351346612,-0.3061811616644263,0.5637868475168943,0.2548077185638249,-0.5986751178279519,0.48073506029322743,0.6612731595523655,0.8819554927758873,0.27897886419668794,-0.3956839330494404,0.30911606969311833,0.9635894624516368,0.9853165848180652,-0.3079683445394039,0.06323245586827397,0.8590162135660648,0.9469862068071961,-0.8994137551635504,-0.6754776583984494,0.9295489564538002,-0.5893126507289708,-0.8423854345455766,0.3809962566010654,-0.7975211646407843,-0.2169397841207683,-0.5769835864193738,-0.36709175584837794,0.6030132574960589,0.17412061290815473,0.11388708325102925,-0.8738073972053826,0.7099845381453633,-0.6596192214637995,-0.9504099423065782,0.06458603218197823,0.4198419931344688,-0.8303649937734008,0.007998914923518896,0.5091970646753907,-0.6448129815980792,-0.5983383841812611,-0.1516605792567134,-0.8897943366318941,0.6333250892348588,-0.5305940271355212,-0.45069014886394143,0.8910395810380578,0.7388864490203559,0.19929508352652192,-0.49960912857204676,0.849510196596384,-0.30201994208619,-0.6802276256494224,-0.8282604203559458,-0.13543332181870937,-0.940276294015348,-0.44090546667575836,-0.7115949774160981,0.9635587404482067,0.3103555478155613,-0.5796288824640214,0.7625574809499085,0.5782721117138863,0.6456852280534804,0.22627358324825764,0.09915011329576373,0.4837808907032013,0.8972230292856693,0.14026687992736697,-0.5123641975224018,-0.0408683093264699,-0.3382726232521236,-0.9476764281280339,0.9463083404116333,0.18406682508066297,-0.740974142216146,0.9660557359457016,0.6742002898827195,-0.4876660741865635,0.3411389817483723,0.24737871950492263,0.6474054343998432,-0.14501973940059543,-0.39522780710831285,-0.9223970775492489,-0.354097964707762,-0.5750151099637151,0.15703114587813616,0.44415925769135356,0.8414936168119311,-0.44810057524591684,-0.8128190878778696,0.5122248064726591,-0.9723110487684608,0.3615995151922107,-0.5191516056656837,-0.20805082190781832,-0.29002331988886,-0.04725220566615462,-0.413360467646271,0.03281853115186095,-0.9247469664551318,0.8803703333251178,0.004649340640753508,0.8115971623919904,-0.6284383437596262,0.16825493704527617,0.6584895048290491,0.04694238118827343,-0.9174524317495525,0.48852965934202075,-0.8896192200481892,0.9991361415013671,0.7546843481250107,-0.962208435870707,-0.9870123891159892,-0.7353848810307682,-0.18357782578095794,0.29092430556192994,-0.9543699640780687,-0.4131588670425117,-0.8124494571238756,-0.22148361383005977,0.3163676643744111,-0.33122944785282016,0.4725739946588874,0.246598731726408,-0.5468136412091553,0.5742197153158486,-0.13322751829400659,-0.3489024075679481,-0.050875645130872726,-0.7206517229788005,-0.29367183754220605,0.644154213834554,0.4848039336502552,-0.24986081756651402,0.043922165874391794,-0.49418420577421784,-0.08027505269274116,-0.831719993147999,-0.9777645440772176,0.7333717402070761,0.07962429616600275,0.7727773892693222,-0.46190628223121166,-0.7345058592036366,0.09477160358801484,-0.6304369638673961,-0.006774926092475653,0.26767539279535413,-0.4537875149399042,-0.7857041032984853,0.2431639339774847,-0.7835844717919827,-0.5270378421992064,0.8300855793058872,0.5203938796184957,0.5643271668814123,-0.3807165501639247,0.9210525285452604,-0.7388894613832235,-0.5232573444955051,0.36428372422233224,0.05632260860875249,0.12593243923038244,0.7329461588524282,0.9228312172926962,-0.6357615310698748,-0.971544103231281,-0.3013356956653297,0.24617748893797398,-0.4798426409251988,-0.09380570985376835,0.16145339515060186,-0.200750351883471,0.1621274040080607,-0.36219580471515656,0.48973454535007477,0.5149795189499855,0.399269662797451,0.9888091036118567,-0.49096291186288,0.1472593704238534,-0.5405046530067921,-0.21793745830655098,0.737618972081691,0.8963695978745818,-0.939517445396632,0.9797750813886523,0.5890935258939862,-0.5722095374949276,0.4988826485350728,0.46610390208661556,0.6797092375345528,0.6814914057031274,-0.4055731827393174,-0.41078845923766494,-0.09979581087827682,0.21207548072561622,-0.770766403991729,-0.5618365085683763,0.7521625529043376,0.7615945031866431,0.7082028915174305,-0.8499051611870527,0.4034570138901472,0.2997290790081024,0.5019224188290536,0.9287640978582203,-0.4806659324094653,0.03009403869509697,0.8110166578553617,0.9758973885327578,0.5925785270519555,-0.2343846159055829,-0.8751926021650434,0.805378423538059,-0.5473720040172338,-0.34653679095208645,0.18872428871691227,0.7208999739959836,0.8558274824172258,-0.07061223778873682,0.8835496194660664,-0.06303872261196375,0.7978357649408281,-0.3007864528335631,-0.9196223416365683,0.8462013103999197,-0.3228494031354785,0.8712095273658633,0.01554058725014329,0.5651871245354414,-0.7132345293648541,0.7123172264546156,-0.16695549292489886,0.2838342487812042,-0.6625558324158192,0.860984074883163,0.43974006082862616,-0.37899753358215094,0.5744231147691607,0.6401294362731278,0.45270604407414794,-0.47779655177146196,-0.3078161678276956,-0.1728461948223412,0.3217388060875237,0.9400037317536771,0.8286002394743264,-0.1770712547004223,-0.6339538465254009,-0.8839445463381708,-0.261209683958441,0.2335078939795494,0.6242415611632168,0.3047442273236811,-0.9257054510526359,0.8247240986675024,0.07834187150001526,-0.13471108162775636,-0.8419384509325027,0.00378311425447464,0.49520812230184674,-0.32995165325701237,-0.0804604864679277,-0.5618417537771165,0.6280348626896739,0.6800513276830316,-0.6502649723552167,-0.337611366994679,-0.7902697157114744,-0.6561936824582517,-0.44238757621496916,-0.043680991511791945,-0.9918900453485548,0.348694562446326,0.9677243418991566,0.48685697885230184,-0.663112839218229,-0.6344670187681913,-0.28717816108837724,-0.9356058947741985,0.2515651397407055,0.17388465767726302,0.8051115092821419,-0.01614159205928445,-0.11566533893346786,0.3083169995807111,0.41109087970107794,0.8424764149822295,-0.4885419234633446,0.5445986753329635,-0.37810471886768937,0.07946179620921612,-0.22486024536192417,0.09300852753221989,-0.7170742372982204,-0.05829442013055086,0.009032724425196648,-0.7236408377066255,0.7185280565172434,0.8876060261391103,-0.610141959041357,-0.6481136637739837,0.2622604132629931,0.8898901464417577,0.5795434033498168,0.7672092663124204,-0.050590057391673326,0.9302988750860095,-0.3589155310764909,0.4887110614217818,0.18802596488967538,0.763725979719311,0.7307971534319222,0.5201437226496637,-0.049499192740768194,-0.537653842009604,0.7553793909028172,0.9341469695791602,-0.3146140370517969,0.3181556360796094,0.5926490370184183,-0.06952830823138356,-0.14636410027742386,-0.9046559012494981,-0.9659981233999133,-0.49351927265524864,0.7147016813978553,0.9400744587182999,-0.908079338259995,0.6910203178413212,0.15639961464330554,-0.590076775290072,-0.8106067352928221,-0.7051876275800169,0.33677348541095853,-0.03563569998368621,0.5975903235375881,0.2475150697864592,0.39534630347043276,-0.3715806105174124,-0.5102795185521245,0.5057244743220508,0.2892598221078515,0.5574763952754438,-0.7148614875040948,0.5052772513590753,0.28256747126579285,-0.2938083466142416,-0.23753539845347404,-0.5478208670392632,-0.4475658438168466,0.5939261163584888,0.1917927749454975,-0.5707342363893986,0.10050839046016335,-0.08085731510072947,0.41588775254786015,-0.45302594965323806,-0.7973814522847533,-0.05231615016236901,0.5672029205597937,0.30550103168934584,-0.7297874595969915,0.7200167388655245,0.5538089228793979,0.014303728006780148,0.4410656290128827,0.5660648164339364,-0.8547637411393225,0.9710823935456574,0.4287565406411886,0.6122142630629241,0.31479677045717835,0.8785335589200258,-0.8486590571701527,-0.09579676249995828,0.9688877365551889,-0.4342255685478449,-0.23858421109616756,0.37574835354462266,0.548325162846595,0.8300363016314805,-0.26346853049471974,-0.7096352633088827,-0.3381543271243572,0.38011063635349274,0.14016920421272516,0.9056749250739813,-0.7918474590405822,0.7338022501207888,-0.19112876104190946,0.7053305637091398,-0.46210134867578745,0.06285231094807386,-0.6080704177729785,0.23681280622258782,0.16806750325486064,-0.4730913960374892,-0.8561377776786685,0.8664127709344029,0.9760219766758382,-0.6181967835873365,0.5201028594747186,-0.6187155018560588,0.5912769543938339,-0.7028036727569997,0.023600748740136623,-0.0017494438216090202,0.13892655028030276,0.35535998549312353,-0.5988475745543838,0.04115921072661877,0.6109468447975814,0.993063363712281,-0.3789758156053722,0.6107883383519948,0.1783572076819837,-0.9235861925408244,-0.20061152195557952,-0.9839910813607275,0.008029589429497719,0.21768598491325974,0.09085134649649262,-0.602309875190258,0.8586555486544967,0.9142299117520452,0.4769334616139531,-0.9762404230423272,0.3197348820976913,-0.31865828204900026,-0.5489177913405001,0.6315800971351564,-0.06376505363732576,-0.7399000441655517,-0.2902120132930577,0.9954598671756685,-0.48654956743121147,-0.7144584469497204,-0.9790700990706682,0.3578520589508116,0.9085438097827137,-0.7353071561083198,-0.30125022679567337,-0.5157866915687919,0.3429160639643669,0.2750462628901005,0.8572181118652225,-0.23985579330474138,0.3610890624113381,0.17015872662886977,0.924517682287842,-0.1897457237355411,-0.7154903216287494,0.9529213136993349,-0.21429597400128841,0.19159982120618224,-0.07281716540455818,-0.2476618681102991,-0.3202915210276842,-0.9771207771264017,-0.48591514863073826,-0.5952506954781711,-0.1755553842522204,0.08255153801292181,-0.02351112850010395,-0.5162430074997246,-0.6643583229742944,-0.35043911915272474,-0.6201947624795139,0.5727179516106844,-0.7452119900844991,-0.9157186867669225,0.3581425817683339,-0.12440380733460188,0.5489142606966197,-0.033815257251262665,-0.14384451834484935,0.4664114932529628,0.5089496904984117,-0.44217500695958734,-0.3607520922087133,0.5849791308864951,0.7346468600444496,0.7017067112028599,-0.7318617617711425,-0.16289556585252285,0.3839453775435686,-0.031007608398795128,0.12674281653016806,-0.8778724656440318,0.4523776210844517,-0.3790359408594668,-0.47931572468951344,0.5747469393536448,-0.7047621682286263,0.174317239318043,-0.9937606733292341,0.9701115442439914,-0.8975676670670509,0.823252004571259,-0.721511865966022,0.44091405253857374,-0.9519914053380489,0.22005027579143643,0.17606718838214874,0.02704835357144475,-0.6423936281353235,-0.8915991997346282,-0.6198734710924327,-0.06214062077924609,-0.8395848888903856,-0.959260921459645,0.3153785248287022,-0.5974799175746739,0.18665162986144423,0.27732511702924967,0.4675469659268856,0.10266006318852305,-0.9652642356231809,-0.3161331983283162,0.34588308818638325,0.48060469701886177,-0.30054840352386236,0.12252412643283606,0.6310848440043628,0.5358176906593144,0.31899650674313307,0.8768637767061591,-0.0461511448957026,0.4460633099079132,-0.04365752823650837,0.23465028870850801,-0.21908879466354847,-0.20701457560062408,-0.8337450097315013,0.15707230009138584,-0.47828945238143206,0.5763175925239921,0.1929364181123674,-0.8402654943056405,0.9507702053524554,0.9760830337181687,0.34629976470023394,-0.4784325701184571,-0.18474662862718105,-0.5450208769179881,0.6215845262631774,-0.2075529689900577,-0.5328777302056551,0.7167374179698527,-0.8172166962176561,-0.8728403500281274,0.5837451871484518,-0.35725549096241593,0.8773913001641631,-0.09363705944269896,0.3396719708107412,-0.1167347771115601,-0.552863831166178,-0.746006166562438,0.11524604866281152,-0.5374144231900573,0.3279268299229443,0.5765877147205174,-0.2696318463422358,-0.5742134768515825,-0.7360835541039705,0.6952461223118007,-0.4371711667627096,0.4002636200748384,0.28829172626137733,-0.5967632411047816,0.10759991267696023,0.4339473955333233,-0.20327733689919114,0.8468330092728138,-0.14951708912849426,-0.9315596716478467,-0.7443949789740145,-0.6457143616862595,-0.9012574474327266,-0.11438849475234747,0.5509402113966644,-0.4011992593295872,0.8137708827853203,0.1894522923976183,0.2235000729560852,0.9808131861500442,-0.4420550661161542,-0.6951503059826791,0.6977023342624307,-0.9632408265024424,0.14894741494208574,0.5730336662381887,0.6081853662617505,-0.2095319959335029,-0.010680096689611673,0.8426894368603826,0.756244252435863,-0.028873040340840816,-0.7175528751686215,-0.03359514707699418,-0.8796381815336645,-0.8231980847194791,0.46165046049281955,0.30396708752959967,0.23259788239374757,-0.6530157453380525,0.44549407716840506,0.6051409672945738,-0.7162149716168642,-0.9271374777890742,0.17499409336596727,0.36314257653430104,0.056842542719095945,-0.019619691651314497,-0.9755305978469551,0.9326030206866562,0.39403827022761106,-0.5284730149433017,-0.3143090750090778,0.5905118002556264,-0.2019139933399856,0.43117997562512755,-0.45763741061091423,-0.9934787987731397,-0.46573432069271803,0.5128712095320225,0.7497098376043141,0.7795854401774704,-0.39902178570628166,-0.10294092958793044,-0.9378406591713428,-0.07808045344427228,0.4048042646609247,-0.4962929436005652,-0.614653489086777,-0.3121725143864751,0.3887950526550412,0.7994027850218117,-0.782387079205364,-0.5599370552226901,-0.4972316292114556,0.7041483921930194,-0.006238867063075304,-0.6993323755450547,-0.9746661661192775,-0.446392176207155,-0.5431709196418524,-0.22928156470879912,0.5366790425032377,0.6567860990762711,-0.9014270948246121,-0.3265866283327341,-0.5658813626505435,0.9842591439373791,-0.09999887738376856,0.6631488418206573,0.8347962144762278,-0.5870575574226677,-0.42410645820200443,-0.8656300692819059,0.36728276358917356,-0.4912568870931864,-0.2599647231400013,0.5923005673103034,-0.4888496766798198,0.9357247701846063,-0.35916865337640047,0.7598949330858886,0.7938755671493709,-0.33910698164254427,0.6828507035970688,0.9528125589713454,0.9744054852053523,0.5956068588420749,-0.7242785701528192,-0.9545721681788564,-0.6502868672832847,-0.02026056172326207,0.4024748308584094,-0.7581332288682461,0.3171213064342737,-0.06183798797428608,-0.07412687409669161,0.6184935173951089,0.37008698284626007,-0.03171501029282808,0.1984793827868998,-0.07819872675463557,0.14638565853238106,-0.8602304137311876,-0.8011174947023392,0.6176325851120055,0.25558917224407196,-0.04588856780901551,0.9605028494261205,0.12195482011884451,0.43025493435561657,0.7685599871911108,0.04189356602728367,0.9490000987425447,-0.545979191083461,-0.7470222865231335,0.7594270519912243,0.7280995845794678,-0.42244135355576873,0.2274577235803008,-0.23977998737245798,0.5850884215906262,0.031333113089203835,-0.10177317727357149,0.9491395987570286,0.7107371627353132,-0.6523341266438365,0.8895040471106768,-0.5704505662433803,0.40811431547626853,-0.4300028239376843,0.15069260215386748,-0.8440982825122774,0.4960212758742273,0.6293744728900492,0.6841568481177092,0.08172839554026723,0.6916744490154088,0.7553466642275453,0.16679634992033243,0.7108647655695677,0.9625169313512743,-0.9440246634185314,-0.16281708329916,-0.29996655276045203,0.6367563642561436,0.8694257605820894,0.7546863229945302,0.39584237430244684,0.38641284545883536,0.3343477537855506,0.07237366307526827,-0.15238702250644565,-0.5437605637125671,-0.2695128391496837,0.7249988964758813,0.14135807706043124,0.228577368427068,0.10989974066615105,-0.769364457577467,0.6529321009293199,-0.622019206173718,-0.12381781497970223,-0.37114178435876966,-0.3723508305847645,-0.6387222660705447,-0.6072652088478208,0.0581174804829061,0.4958448829129338,0.8557932497933507,0.32645727740600705,0.25205251621082425,0.650453879032284,-0.5662666861899197,0.3102096766233444,-0.7126810238696635,0.7263952381908894,0.16625716257840395,-0.4728632001206279,0.9752512024715543,-0.724966830573976,-0.8310256083495915,0.11221282090991735,0.7806900846771896,0.6878907810896635,0.4742278424091637,0.4532233993522823,0.6929402663372457,-0.7611040049232543,-0.544576657935977,0.8302238881587982,0.2658801544457674,0.22331084683537483,-0.9395880363881588,-0.7122592879459262,0.8649281486868858,-0.28760995669290423,0.2712318478152156,0.31734619103372097,-0.0888379099778831,0.763024419080466,0.764124455396086,-0.9215471730567515,0.3942654621787369,0.35241270950064063,0.9413979020901024,0.010883562732487917,-0.5718208705075085,-0.8387969234026968,-0.3461060249246657,-0.4529416491277516,0.9070005714893341,0.9148653610609472,-0.4830260341987014,-0.658833253197372,0.8975253868848085,-0.3933667535893619,-0.06902177631855011,-0.44519395288079977,-0.7291843900457025,0.9340520384721458,0.8638944844715297,-0.7255785269662738,0.46567636355757713,0.61041400115937,0.2445458029396832,-0.359784968663007,-0.3818598445504904,-0.18623037030920386,0.557188771199435,-0.8497386020608246,-0.11870251270011067,-0.7688950928859413,-0.8111713770776987,0.41224781051278114,0.8998856269754469,-0.6660406915470958,-0.25267986999824643,-0.9916445855051279,-0.8460296392440796,-0.8386428439989686,-0.7393826027400792,0.1876926920376718,0.4651544471271336,-0.6741176620125771,0.21306019462645054,-0.9848055462352931,-0.8062587403692305,0.7393929772078991,-0.5999427773058414,0.6384727256372571,-0.04371962323784828,0.1414720332249999,-0.6818019021302462,-0.02706297254189849,0.979278240352869,-0.7133323973976076,-0.3010185011662543,-0.7719503198750317,0.5380160510540009,0.18914622347801924,0.03774109063670039,-0.7549511049874127,0.9110473063774407,0.921494391746819,0.9733251091092825,-0.3723162398673594,-0.3590521505102515,-0.668559274636209,-0.028155756182968616,-0.0009301118552684784,0.11282565258443356,0.24595774663612247,0.5918521103449166,-0.10291029186919332,-0.9702337854541838,0.534110798034817,-0.7362486249767244,0.04689763393253088,0.9827611069194973,0.19655604008585215,-0.7415864681825042,0.7710241163149476,0.5647488147951663,-0.7917517400346696,0.7568054650910199,-0.7872893763706088,0.5305255306884646,-0.08238585013896227,0.1813986236229539,-0.22147040581330657,0.08280888851732016,0.09784949477761984,-0.8218676391988993,0.7848082520067692,0.21703324280679226,0.9095234307460487,0.2821812229231,0.6565287304110825,-0.21898708352819085,-0.12860540067777038,0.18399316305294633,0.5724560911767185,0.5689528426155448,0.0202760836109519,-0.27507479628548026,-0.7561764325946569,-0.28982711490243673,-0.7451779381372035,-0.8083987324498594,-0.7971417843364179,-0.9789635264314711,-0.88355060108006,0.4997153766453266,0.04336172342300415,0.6260557426139712,0.8747022710740566,-0.48556259041652083,0.7627948680892587,-0.3081622910685837,0.9483774434775114,0.37652224441990256,0.9615657897666097,-0.6594729237258434,0.8720664922147989,-0.0822165384888649,0.49685317603871226,-0.8377672876231372,0.6434333208017051,0.3817410212941468,0.10533792106434703,0.764168031513691,0.4445547447539866,-0.6043901620432734,-0.17489399295300245,0.597520409617573,-0.4940022071823478,0.6753449756652117,0.8805071851238608,0.9862577058374882,-0.05529833817854524,0.7017112248577178,-0.7626385516487062,0.28439636901021004,-0.9970013797283173,0.4915043516084552,0.5780969397164881,-0.2672833651304245,-0.7712733750231564,-0.3863424942828715,0.23959147511050105,-0.7354828296229243,0.5949202589690685,0.30543922539800406,-0.11588529543951154,-0.15911758597940207,0.7395360600203276,-0.1813035598024726,0.217410568613559,-0.4237597626633942,0.19298647809773684,-0.7971663442440331,-0.8843434350565076,-0.9398306654766202,-0.8642723090015352,-0.9615406892262399,0.8150030495598912,-0.01681797718629241,-0.5696904612705112,0.7052663369104266,-0.30156641313806176,0.46916811913251877,-0.34955784771591425,-0.17966260900720954,0.381333508528769,0.32378941122442484,-0.6832642345689237,0.4849148956127465,-0.27687344746664166,0.12169365771114826,-0.393204590305686,0.8841589889489114,0.8363145738840103,0.970525202807039,0.28352642338722944,-0.13091890746727586,-0.9971181005239487,0.7099109496921301,0.2740572979673743,0.3728922726586461,0.615456314291805,-0.3118832418695092,-0.7645673742517829,0.306442956905812,0.29154854686930776,-0.2325133909471333,0.7271785531193018,-0.3687403337098658,0.550149351824075,0.5279259812086821,0.233225186355412,0.5344934770837426,0.9865870121866465,0.6398106184788048,0.12629361171275377,0.588426636531949,-0.17484421283006668,-0.8838053233921528,0.9404061730019748,0.1707667401060462,-0.38867755932733417,-0.9486258272081614,0.7844847398810089,-0.07787413103505969,0.035344685427844524,-0.6385397599078715,0.07085371157154441,-0.5195271661505103,-0.7771997004747391,0.5154006974771619,0.7467783885076642,-0.01394210522994399,0.7018463239073753,0.24658704735338688,-0.0375209990888834,0.5031211958266795,0.44800650840625167,0.31668428936973214,0.7514657168649137,-0.7829616027884185,0.060029489919543266,-0.6360125718638301,-0.42715347139164805,-0.583718896843493,0.4085327433422208,0.10266620479524136,-0.5243639554828405,0.7999663078226149,-0.20250124670565128,0.8672375795431435,-0.5552591551095247,0.254933069460094,0.8670000820420682,-0.17610562779009342,0.6405480280518532,0.700410027988255,-0.5678281052969396,-0.8427960192784667,-0.2473907135426998,0.8536207871511579,0.7140087764710188,0.8076636302284896,-0.8816222478635609,-0.9592089294455945,-0.871229168958962,-0.7265531476587057,0.5648176833055913,0.6029848279431462,0.31892976677045226,0.2875032965093851,0.9355639978311956,-0.6595724928192794,0.9885318740271032,-0.7620454183779657,-0.48682505637407303,-0.8392290421761572,-0.8857577499002218,0.6207553716376424,0.4121738965623081,-0.4082082281820476,-0.8454786823131144,-0.6054113791324198,-0.22479574661701918,0.5854549459181726,-0.9024113854393363,0.5458500320091844,0.07785976631566882,0.5036694682203233,-0.2222726959735155,-0.8498138808645308,-0.35068239318206906,-0.6950158318504691,-0.1016962225548923,-0.8689558617770672,-0.03969984734430909,-0.11056639021262527,-0.7299430114217103,0.15069638192653656,-0.9972001314163208,-0.5898597720079124,0.6797771668061614,0.14952321769669652,-0.6928225881420076,-0.6621543294750154,0.27580268308520317,0.4632333433255553,0.2470180271193385,-0.9356435597874224,-0.2344449614174664,-0.7301798351109028,0.20113250706344843,-0.22575884126126766,0.895476411562413,-0.032533470541238785,-0.5882669487036765,0.88077253382653,0.06387759884819388,0.42472183983772993,-0.16907791001722217,0.4236673880368471,0.2958958907984197,0.9548550811596215,-0.04903567722067237,0.9306422588415444,0.8960250206291676,-0.24716885574162006,-0.5210406645201147,0.7985501596704125,-0.04515868192538619,-0.617240087594837,-0.23469577776268125,-0.015582303516566753,0.1590323275886476,-0.8206588169559836,-0.9148037051782012,0.13334560627117753,-0.14721491048112512,0.9148780261166394,-0.7161138607189059,-0.23586538853123784,-0.843630462884903,-0.5197106557898223,-0.26252485532313585,0.1997111178934574,-0.2277992544695735,0.18279436556622386,-0.2777146166190505,0.5174247357062995,0.3463034234009683,0.1779574453830719,0.5864709718152881,-0.9852022845298052,-0.2779849669896066,0.29487713472917676,-0.5909354439936578,-0.12484497297555208,-0.33028292283415794,-0.20825589075684547,-0.3581913271918893,0.09589966014027596,0.10708814393728971,-0.9715422331355512,0.4473578594624996,-0.8253504042513669,0.06155546475201845,-0.5692411581985652,0.3664701762609184,0.08881801972165704,0.8916236544027925,-0.07213610177859664,0.36670571053400636,0.3663225891068578,-0.23903581127524376,-0.1096822484396398,-0.7483674604445696,0.36388645647093654,0.6555914445780218,0.8106352225877345,-0.3138265092857182,-0.10248927911743522,-0.1314087794162333,0.6060916190035641,0.6258541052229702,0.6109205754473805,-0.19356092670932412,0.01645003631711006,-0.031981383450329304,0.5766608826816082,-0.5204548672772944,0.9074060977436602,-0.25805512303486466,0.07379300007596612,0.0022147875279188156,-0.9205782464705408,0.4160750973969698,-0.3237264002673328,-0.012869373895227909,-0.9855831861495972,-0.27420353423804045,0.8638657554984093,0.6598548381589353,-0.8686064821667969,0.7949770134873688,0.7012983644381166,-0.016870213206857443,-0.13952357741072774,0.8533961111679673,0.5981863839551806,-0.6079455940052867,-0.515641859266907,0.28516821237280965,0.18363028531894088,-0.6924421968869865,0.009801387321203947,-0.40345249325037,0.6463076751679182,0.07709190715104342,0.26014515524730086,-0.3686705781146884,-0.412772414740175,-0.6264801914803684,-0.14602698246017098,-0.976912880782038,0.7746331444941461,-0.9194854754023254,0.37616206519305706,0.8663770826533437,-0.6633937172591686,0.06709464034065604,-0.3748908778652549,-0.5132440319284797,-0.2878390015102923,0.7141602989286184,0.7086563888005912,0.2335546757094562,0.37981386948376894,-0.39220227021723986,-0.840941499453038,0.2522824495099485,-0.34309809701517224,0.6078372406773269,0.7699868995696306,-0.0797794540412724,-0.7513634087517858,-0.27509163739159703,0.026160342153161764,0.6027929484844208,-0.5585556174628437,-0.8508394230157137,-0.6640031225979328,0.13272470934316516,0.22384295146912336,0.14900815906003118,0.6269034938886762,-0.8618400637060404,0.7068152106367052,-0.28569482220336795,-0.3672325760126114,-0.19435191992670298,-0.6241920627653599,0.7127682445570827,-0.5001692250370979,-0.6605180422775447,-0.2698814580217004,-0.4238267778418958,-0.8337419806048274,-0.5605761404149234,-0.7519592344760895,-0.44225714774802327,-0.5238621863536537,-0.8766245571896434,-0.1109234937466681,-0.8021170720458031,0.12640835577622056,-0.3250831221230328,-0.416248070076108,0.889299706555903,-0.4715032819658518,-0.8692459017038345,0.6794755994342268,-0.18195243179798126,-0.5607377984561026,0.08142576506361365,-0.4823919078335166,0.37847867514938116,-0.5539088933728635,0.24452464608475566,0.2207507169805467,-0.3434602846391499,0.9010254051536322,0.5378340347670019,-0.24069145461544394,0.8432179843075573,-0.8413496515713632,0.38059248868376017,0.8764050346799195,-0.8012126716785133,0.7815702985972166,-0.659496920183301,0.961058912333101,0.1982276882044971,-0.08911228645592928,-0.43576347129419446,0.17367417132481933,0.28561497665941715,0.10455285245552659,-0.3339996566064656,-0.535546641331166,-0.7141148597002029,-0.11030640918761492,-0.5336165339685977,-0.976278274320066,0.5679972744546831,-0.6985712926834822,-0.8723223782144487,-0.5045269341208041,-0.5710524753667414,-0.5354660172015429,0.41699470626190305,0.271166468039155,-0.5323475655168295,-0.8214642610400915,0.6190167092718184,-0.4616001290269196,-0.2153739952482283,-0.5564564657397568,-0.8646908942610025,-0.31298006512224674,0.6509287441149354,0.14539918722584844,0.13581597479060292,0.17694895202293992,0.6116610248573124,0.320912032853812,-0.6494357003830373,0.364152395632118,-0.5468319235369563,0.40697509748861194,0.957822275813669,-0.34814859041944146,-0.3488313867710531,0.44834424974396825,-0.9850558321923018,0.6298867906443775,-0.9984137238934636,0.035327430348843336,-0.3069832311011851,0.3029395639896393,0.9964588680304587,-0.09470572415739298,-0.43575961934402585,0.69911576109007,0.49150580167770386,-0.6284167380072176,-0.9799431278370321,0.7001694925129414,0.22061911644414067,-0.17930487357079983,-0.5328849609941244,0.1499248300679028,0.0747461928986013,0.9045671909116209,-0.04424126073718071,-0.8184748701751232,0.40271290810778737,-0.5408762497827411,0.687218145467341,-0.23113201698288321,-0.3610418778844178,0.08623227570205927,0.9859717804938555,-0.7121501010842621,-0.13125385250896215,0.47541136108338833,-0.5873389062471688,0.6819177339784801,-0.04275901895016432,-0.019563364330679178,0.3214085712097585,-0.9961246172897518,-0.7026804652996361,-0.8061624495312572,0.07725194375962019,-0.7783720036968589,0.6435708240605891,-0.00937218964099884,-0.5760739515535533,-0.4263421483337879,0.7993318242952228,-0.9928754977881908,0.6535252211615443,-0.40530836721882224,-0.8772416799329221,-0.7889353497885168,-0.6301500871777534,-0.35705343913286924,0.801669099368155,-0.013234633952379227,-0.6979412292130291,-0.6616782336495817,-0.7023519505746663,0.2183947148732841,0.3219911609776318,0.31161681190133095,0.2058351393789053,-0.967566835694015,-0.11265349900349975,0.9853461030870676,-0.6154255387373269,-0.1879601045511663,0.9559344011358917,0.6599430949427187,-0.9788073487579823,0.19098697183653712,-0.3915797839872539,-0.11140688322484493,0.8978868429549038,-0.43435722729191184,-0.010496554430574179,0.33131887251511216,-0.2865690323524177,-0.8679502224549651,0.167429031804204,-0.3604763806797564,-0.4059861497953534,-0.4100497658364475,0.20480467611923814,-0.22675109282135963,-0.0037666242569684982,-0.17081889463588595,0.8680901508778334,-0.23331710789352655,0.9570595948025584,0.49172035977244377,0.44831210328266025,-0.5346456207334995,-0.25633562449365854,-0.20250343903899193,0.08054399443790317,0.6010573166422546,-0.658188208937645,-0.5174558311700821,-0.32602678099647164,-0.3384489770978689,-0.8277920722030103,-0.2810725118033588,-0.45840407768264413,0.3972276793792844,0.9364299951121211,0.8477067053318024,0.9198881075717509,-0.4171047634445131,0.05364569276571274,0.6661108350381255,-0.9647455653175712,0.936989663168788,-0.7970029921270907,-0.5209819357842207,0.030585482250899076,0.3537531322799623,0.8541100826114416,-0.9725274140946567,-0.01577173452824354,0.9509660876356065,0.8610173473134637,0.21752506820484996,0.8269514041021466,0.5033221561461687,-0.728130139876157,-0.43982748966664076,-0.9188161515630782,0.3474690564908087,-0.6247015530243516,0.30868713464587927,0.01931882929056883,0.6919503370299935,-0.19430120941251516,-0.3788533918559551,-0.8428302309475839,-0.5300939953885972,0.1639466187916696,-0.6208618665114045,0.5868871575221419,-0.3050853442400694,0.3001213753595948,-0.48800669657066464,0.416072481777519,-0.022857029922306538,0.22900789929553866,0.5783796440809965,0.6393501367419958,-0.642559202387929,0.28444724390283227,-0.5538814780302346,0.821704831905663,-0.1057045953348279,-0.17032567970454693,0.04535337770357728,-0.04078021878376603,-0.5249543646350503,-0.6518897176720202,0.5485344398766756,-0.6261648409999907,-0.4470679550431669,-0.537370475474745,-0.5093334973789752,-0.02205711603164673,-0.45838106563314795,-0.523629886098206,-0.4640936367213726,-0.21223585586994886,0.8555572745390236,0.5575566203333437,-0.18080528499558568,-0.30079162027686834,-0.8550073690712452,-0.48257900727912784,0.7272059335373342,0.6968592857010663,-0.11649296199902892,0.3679305873811245,0.8538588965311646,0.3100675200112164,-0.0985831175930798,-0.47670611925423145,0.1165920696221292,-0.02241027867421508,0.39456342346966267,0.5538286799564958,-0.6226761429570615,0.22603512927889824,-0.44307170575484633,-0.779976240824908,0.6012649363838136,0.17775238770991564,-0.47373474622145295,0.8420549426227808,0.8745936150662601,-0.4700759733095765,0.31809023721143603,0.3748983386904001,-0.9695384628139436,-0.056632306426763535,-0.056643960531800985,0.19655644474551082,0.48144329199567437,0.8839184259995818,-0.4454229627735913,0.5181655609048903,-0.5327212559059262,0.21709471987560391,-0.4691192703321576,0.8745258334092796,-0.1535803941078484,-0.31411825539544225,0.3573844968341291,-0.7980910241603851,0.22272560698911548,0.12881678203120828,-0.02937162760645151,0.09745236672461033,0.4892233684659004,-0.008495247922837734,-0.20780823286622763,-0.6121043213643134,0.2428009221330285,0.36416528141126037,-0.060136410873383284,-0.35085140401497483,-0.7268706643953919,-0.7814146527089179,0.5950482925400138,-0.6899928813800216,0.22378793125972152,0.6638011354953051,-0.9329579323530197,-0.3125415234826505,0.598944234661758,-0.4859190979041159,-0.6362041030079126,0.7754212557338178,0.9071801058016717,-0.42623002268373966,-0.5156552288681269,-0.14057354629039764,-0.9452844085171819,-0.9385548969730735,-0.7143584843724966,0.9239870114251971,0.21405119402334094,-0.4149505360983312,0.9186548148281872,0.6922034206800163,0.9765512305311859,0.26469475915655494,-0.32465061359107494,0.4658634243533015,0.30557994171977043,0.31173880537971854,-0.4323167889378965,0.24652488995343447,0.6745131779462099,-0.7587789264507592,0.005151262506842613,-0.25121987564489245,0.885948742274195,0.8445297433063388,0.7508200434967875,-0.9251585709862411,-0.7984800892882049,0.4579860083758831,0.5593495038338006,0.46607712749391794,-0.554309940431267,-0.3192464089952409,-0.3221823824569583,0.0173489972949028,0.9782971274107695,-0.6536693377420306,0.28000365383923054,-0.3215598948299885,0.2826419984921813,0.2246998487971723,0.07107738312333822,-0.5542006776668131,0.21856735972687602,-0.0974492747336626,-0.4134936276823282,0.8533916878513992,-0.938767640851438,0.09763397183269262,0.22318013990297914,-0.5376354549080133,0.7448829016648233,0.8093971195630729,0.1609901199117303,0.9397626142017543,0.21685735695064068,-0.8998394515365362,-0.9772851197049022,0.6160434675402939,-0.39300195733085275,-0.8933213092386723,-0.9978592852130532,0.6477176905609667,0.5083700297400355,-0.973919355776161,0.8027489157393575,0.6173946969211102,0.5633944938890636,0.3086150009185076,0.6699933558702469,0.5122164348140359,0.7347051650285721,0.3023423203267157,0.26442647771909833,-0.9968053484335542,-0.03493939200416207,-0.15817688079550862,0.48622510116547346,-0.771567318122834,0.49003721540793777,0.3409608267247677,0.7032646965235472,0.7355166398920119,0.02086755819618702,-0.3114093439653516,0.13201378239318728,0.5924327112734318,-0.11983953742310405,0.2378935655578971,-0.08751573832705617,-0.386181621812284,0.7924426565878093,0.24399309372529387,0.13075033016502857,0.35707762697711587,-0.5363034382462502,-0.21958376094698906,0.5974608659744263,-0.5910505284555256,0.6725831716321409,0.8744855234399438,-0.34946906846016645,0.3820867002941668,0.011389157734811306,0.6428876770660281,-0.15087449131533504,0.8268146845512092,0.6627737949602306,0.007788051851093769,-0.8675243840552866,-0.16418572375550866,0.7932748389430344,-0.586017734836787,0.37138733407482505,0.04296115646138787,-0.9573824303224683,-0.44249699637293816,0.5396948275156319,-0.551111008040607,-0.056268331594765186,-0.7208649241365492,-0.3213588842190802,-0.21863719634711742,0.027936579193919897,-0.5002450179308653,-0.3932278589345515,0.37194390362128615,-0.9780128393322229,-0.7067395215854049,-0.7973143411800265,0.3477132930420339,-0.9904606654308736,0.8572521833702922,0.9746748544275761,0.04871196020394564,-0.9661855739541352,0.2333945045247674,0.5366557869128883,-0.12919618049636483,-0.8747276901267469,-0.6589212887920439,-0.6001371517777443,0.05396748334169388,0.2286739214323461,-0.5800525811500847,0.7130798841826618,0.10417952761054039,0.17171860858798027,0.0266199866309762,0.957123167347163,0.8962713177315891,0.7384840743616223,-0.8991483920253813,0.774828617926687,0.26791214430704713,-0.25653113098815084,0.9681165469810367,0.28853584872558713,-0.9431378785520792,-0.6074236542917788,-0.9236299265176058,-0.9270502040162683,0.33309988491237164,0.6425158893689513,0.6138507905416191,0.2913126633502543,0.4747651997022331,0.6370856249704957,0.6403833949007094,0.46279077185317874,-0.09250564174726605,-0.6962142093107104,0.19928452232852578,0.7575347549282014,-0.8006638367660344,-0.7492170161567628,0.07770532090216875,-0.8556362353265285,-0.153672160115093,0.7262933375313878,0.2785068638622761,-0.5971935228444636,-0.8855366362258792,0.36809079675003886,0.23819377645850182,0.5795105681754649,0.7761408663354814,0.18454320961609483,-0.7386062229052186,0.11682630330324173,-0.003038818947970867,0.7931376677006483,-0.10732490476220846,-0.22939427569508553,-0.04654949065297842,-0.28487747767940164,0.5880358233116567,-0.05686475010588765,0.38231148198246956,-0.00804739398881793,0.9900861168280244,0.7117194165475667,0.622918120585382,-0.7740874662995338,0.25918313302099705,0.4611585093662143,-0.5518476269207895,0.9567889631725848,-0.6134937768802047,-0.7791012255474925,-0.8715126728639007,-0.21378291165456176,-0.3917135433293879,0.190770807210356,0.29635561909526587,0.40537452371791005,0.4217656506225467,0.9433143842034042,0.2384243723936379,-0.7238702615723014,0.033962029963731766,-0.9439528826624155,0.7218941166065633,-0.18723190668970346,-0.8482559220865369,-0.8954730029217899,0.9865410127677023,0.9323092522099614,-0.7984107946977019,-0.7321706982329488,-0.1535389618948102,0.051430136896669865,0.12305077770724893,-0.1094277617521584,0.14825171325355768,-0.29211781499907374,0.22625391697511077,-0.5572560979053378,0.015414790250360966,-0.94191576493904,0.9461801340803504,0.6983768190257251,0.6748467315919697,0.28097079042345285,0.8990270653739572,-0.08696653554216027,0.9766153590753675,0.7143484214320779,0.8827724768780172,0.49950262112542987,-0.5001536435447633,0.205648731905967,0.8294725059531629,0.9976237267255783,0.1952170766890049,0.8287651753053069,-0.15687120473012328,0.7946564564481378,0.17323273234069347,0.9088429473340511,0.38156777154654264,0.8804051410406828,-0.7103173616342247,0.9915618197992444,0.2321518692187965,-0.40968763921409845,-0.09747934155166149,-0.032450086902827024,0.07148716785013676,-0.26918492652475834,0.8920398205518723,-0.08480682410299778,-0.9686263068579137,-0.3536082524806261,0.6231107581406832,0.22881318489089608,-0.21023902110755444,0.1071869432926178,-0.07756204111501575,-0.9033802887424827,-0.44765821611508727,0.5352595639415085,0.22290942026302218,-0.8824131251312792,-0.8810150260105729,0.9597676168195903,-0.075811549089849,0.5594874797388911,-0.7372309775091708,0.6895473822951317,0.5016569145955145,0.857539881952107,0.8868238641880453,0.38587820064276457,0.8387852576561272,-0.18968323338776827,-0.044230727944523096,0.9025686192326248,-0.8590510990470648,-0.7389818630181253,-0.5289677060209215,0.275625669863075,-0.4569885106757283,0.29590887064114213,-0.7424899064935744,0.6681502442806959,-0.625883168540895,-0.30183517280966043,0.6793235796503723,0.05873398622497916,-0.875152142252773,0.2759898332878947,0.8688671533018351,0.519160598050803,-0.2700274419039488,-0.5113131571561098,0.6082698586396873,-0.17405298491939902,-0.5986403515562415,-0.26472175726667047,0.17943068267777562,0.38437437964603305,0.06653042649850249,-0.9510978520847857,-0.511317081283778,0.40122385369613767,-0.17945844680070877,0.7305743768811226,-0.37166030658409,-0.6227338803000748,-0.022417764645069838,-0.7247643601149321,0.5263063064776361,0.07529683038592339,0.9114750414155424,0.5768978204578161,-0.2751046223565936,0.2467524311505258,0.011855978984385729,-0.3528290055692196,-0.637433378957212,0.163462208583951,-0.5589548177085817,0.8925323882140219,0.9465525136329234,-0.43209813814610243,0.34031596779823303,0.7458023391664028,0.1342400424182415,-0.11260224599391222,0.21472223103046417,-0.7468093070201576,-0.7553279092535377,-0.4945175223983824,-0.9780779290013015,-0.07588543510064483,0.27167133754119277,0.8440628526732326,0.8362400573678315,-0.41556254494935274,-0.3900274927727878,0.4757280279882252,-0.01738716010004282,0.5048313038423657,0.748785275965929,-0.7389102089218795,-0.39467739686369896,-0.5042134313844144,-0.3604663657024503,-0.9656409090384841,0.5704627172090113,-0.996780167799443,0.8340493403375149,-0.23306132713332772,-0.2631079666316509,0.9572803513146937,-0.8075351691804826,-0.03316944418475032,0.7556776967830956,0.6522397273220122,-0.41611655708402395,-0.1085970476269722,0.40946252970024943,0.14635690115392208,0.2871541315689683,0.6214134260080755,0.34055286925286055,0.5359298065304756,-0.9253121302463114,-0.6422104835510254,-0.8904224205762148,-0.7558492859825492,0.8052415186539292,-0.63209582073614,-0.7090725805610418,0.13398415921255946,0.47099515423178673,-0.02742730174213648,0.054631917737424374,-0.11646901397034526,0.2903528888709843,-0.4018315956927836,-0.6485356315970421,0.9109622561372817,0.4400987820699811,0.21398935234174132,0.31400890089571476,-0.7638357994146645,-0.07008594740182161,-0.008888710290193558,-0.4230613661929965,-0.2586867082864046,0.9421121864579618,-0.3370960736647248,-0.5903088939376175,-0.8096180218271911,-0.9051917060278356,-0.16192944208160043,0.6683564041741192,0.5040780445560813,0.7497914172708988,0.15666969446465373,0.9931624894961715,0.8066568966023624,0.18457414908334613,-0.9290766441263258,0.4118373184464872,0.9584450670517981,0.9912008093670011,-0.39665689412504435,-0.7308862362988293,-0.5616500065661967,-0.3289830139838159,-0.18252641428261995,-0.5750064221210778,-0.7717893556691706,-0.7185715110972524,-0.9599238988012075,-0.3986631315201521,-0.3965459382161498,-0.8701818739064038,-0.7450675810687244,-0.6175746815279126,-0.2845356948673725,0.4059783825650811,0.33056234242394567,-0.6463982672430575,0.9258915204554796,0.4970800122246146,-0.4457316240295768,0.7358867251314223,0.7290018890053034,0.6336079095490277,-0.7144161546602845,-0.7365342457778752,-0.6925548757426441,-0.018629254773259163,-0.5193894887343049,0.6535202153027058,0.16261985013261437,0.6312368102371693,-0.6232579611241817,0.5161478552035987,-0.9503353331238031,0.4594298070296645,-0.9889895967207849,-0.013963517267256975,0.2701851720921695,0.038505935575813055,-0.17530597979202867,-0.18753306893631816,0.5286496235057712,-0.3541223658248782,0.4945527953095734,-0.506853167898953,-0.08892111852765083,-0.5996850724332035,0.5450792568735778,0.19182321103289723,-0.8302491293288767,-0.7950329375453293,0.4070902056992054,-0.1308329114690423,0.03074286412447691,0.8444899003952742,0.9075662749819458,0.9280419610440731,-0.909642769023776,-0.7896553273312747,0.7389603476040065,-0.7154644574038684,0.8372126538306475,0.6380162490531802,-0.024960882496088743,0.08952954597771168,-0.2040518238209188,0.24918538285419345,-0.15432044211775064,-0.35311997029930353,-0.9781091930344701,-0.9261834374628961,0.05793364020064473,0.5637737875804305,0.939316347707063,0.16917927702888846,-0.25370194809511304,-0.871793276630342,0.3845962090417743,-0.698589954059571,-0.9644131227396429,0.010512270964682102,0.6572315972298384,0.7216867003589869,0.8987683220766485,-0.029649515636265278,0.5509713366627693,0.6645274520851672,0.4035764969885349,0.4111981401219964,-0.024104557931423187,-0.00015089474618434906,-0.2312713493593037,0.2534387093037367,0.6371653508394957,-0.21110954461619258,-0.5995954661630094,0.7059116149321198,-0.21088869450613856,-0.6618353151716292,-0.8368544727563858,-0.848204551730305,0.8160655838437378,0.6543172798119485,0.16546426946297288,0.5161936460062861,0.09167221747338772,-0.8802304114215076,-0.90901173138991,-0.1712742354720831,0.14121212344616652,-0.08620552998036146,-0.14190036710351706,0.6400284096598625,0.7104880213737488,0.19860478537157178,-0.7702992428094149,0.36088457563892007,-0.1529115946032107,0.45454784762114286,-0.13116971589624882,-0.329802009742707,-0.38433727342635393,-0.6095580188557506,0.16880112746730447,-0.014584474265575409,0.6820288994349539,-0.27111594984307885,-0.3224784443154931,-0.7067254316061735,-0.518572470638901,0.7059542359784245,-0.10109818819910288,0.1705197198316455,0.8281029895879328,-0.47267765598371625,0.21511627454310656,0.5626402446068823,0.8026263378560543,0.6839306345209479,0.5072348220273852,-0.3462638142518699,-0.5667546349577606,-0.6280412352643907,-0.41080305771902204,0.6504182335920632,0.335979123134166,-0.1342978128232062,0.2610881910659373,0.8553542508743703,-0.25151972379535437,-0.3838242180645466,0.23692761827260256,0.967052330262959,0.8537664618343115,-0.9991670968011022,0.5338519439101219,-0.24837746331468225,0.03984483238309622,-0.6556782014667988,-0.3266556584276259,0.6751022390089929,0.2490259357728064,-0.8107123468071222,-0.388155369553715,0.6733141499571502,0.10504481615498662,0.006479268427938223,-0.7455903799273074,-0.6793567789718509,0.15074373362585902,-0.5701127219945192,0.012810191605240107,-0.45054479967802763,0.9342650454491377,-0.1388509776443243,-0.9026409108191729,0.8222309462726116,-0.22086265264078975,0.6232861964963377,0.5430876901373267,-0.7880401229485869,-0.9034424582496285,0.5697681773453951,0.25800955947488546,-0.26762820361182094,0.6371520040556788,0.5936761149205267,0.6265525300987065,0.6902940175496042,0.21722064446657896,-0.14537812024354935,-0.5596702001057565,0.3170053674839437,-0.6167540443129838,0.9093403569422662,-0.6176756685599685,0.9064233801327646,-0.4326524562202394,0.40319383703172207,-0.5156792588531971,0.3124274704605341,-0.9631128758192062,0.34668198646977544,0.4750118386000395,0.3128924178890884,0.8646084740757942,-0.6343837999738753,0.23563774954527617,-0.9237525011412799,-0.4624869329854846,0.9000522620044649,-0.5841287826187909,0.09253773698583245,-0.03526008501648903,0.5380350477062166,0.45458521554246545,-0.5295173740014434,0.7113466495648026,-0.8750291219912469,0.7438738984055817,-0.5099253039807081,-0.4733871975913644,-0.7549169785343111,0.0015063639730215073,-0.4173085209913552,0.2651728936471045,-0.44750529155135155,0.2982769077643752,0.5666657304391265,0.19963165977969766,0.4876015307381749,0.3285464649088681,-0.6763319005258381,0.3425090843811631,-0.774920660071075,0.22522354405373335,-0.9681186894886196,0.6995243970304728,-0.02666963916271925,-0.12099299766123295,-0.6336283287964761,0.6109463134780526,-0.4181630155071616,-0.6747806444764137,-0.2204947043210268,0.6427661837078631,0.5354484706185758,0.8024114747531712,-0.5209734449163079,0.5926979170180857,-0.45659809885546565,-0.36433571111410856,-0.06009704852476716,-0.06645282730460167,0.6128689809702337,0.7656800989061594,-0.7424718658439815,0.4536243584007025,-0.6454662135802209,-0.6012224466539919,0.5110079743899405,-0.5804881914518774,-0.13705667946487665,0.5684672710485756,0.41861637914553285,-0.3004182116128504,-0.15909469546750188,0.6151163629256189,0.023451735731214285,-0.021386744920164347,0.5622186926193535,-0.6188925830647349,0.462414329405874,0.6472936742939055,-0.45635662926360965,0.7069816277362406,0.4791434798389673,-0.534046693239361,-0.856709660962224,0.848491929937154,-0.7328570336103439,0.07125110318884254,0.1785551500506699,-0.7744168429635465,-0.4775096043013036,0.3322932394221425,-0.2636136575601995,-0.5408714306540787,-0.4361572153866291,0.16296827979385853,-0.6424787705764174,0.5286140986718237,0.2625687406398356,-0.9751223651692271,0.549168047029525,-0.07646421855315566,-0.3462632140144706,-0.3786391979083419,-0.692160033620894,0.024551926646381617,0.7155120940878987,-0.9058360354974866,0.10788088757544756,-0.14471248909831047,-0.8925433959811926,-0.4006253401748836,0.4929570946842432,0.0060715265572071075,0.1656367052346468,-0.08370670769363642,-0.36392358830198646,0.019056829158216715,0.9093386260792613,0.8184536416083574,0.009310400579124689,-0.03548075631260872,0.6408646460622549,0.9089997946284711,-0.6698661255650222,0.01420168811455369,-0.8843366052024066,-0.6706271632574499,0.2570580733008683,-0.3058710405603051,-0.41420466592535377,0.028581958264112473,-0.7311819307506084,-0.1998616410419345,0.19423080747947097,0.40169399604201317,-0.5953064956702292,0.9947473537176847,0.5328710256144404,-0.48242955934256315,-0.2385844229720533,-0.08780495496466756,-0.6179110375232995,0.2665738072246313,0.6987710194662213,-0.010535918176174164,0.8922600084915757,0.5361517919227481,0.9617702993564308,-0.9580763555131853,0.8123971493914723,0.5195002662949264,0.7802098249085248,-0.6329356320202351,0.9094550097361207,-0.6107155648060143,0.2490061898715794,0.5089509412646294,-0.84327576123178,-0.8642123905010521,0.27246948005631566,0.6515422770753503,-0.14866325678303838,0.0026585268788039684,0.6225004331208766,-0.8639905205927789,-0.8177565350197256,0.9543208465911448,0.7011138228699565,0.3961184495128691,-0.8963230326771736,-0.13704271707683802,-0.20265807444229722,0.7453606962226331,-0.6213180767372251,-0.9651948008686304,-0.3835916193202138,-0.01451325649395585,-0.8131327475421131,-0.38208075566217303,0.9294901764951646,0.858973580878228,0.924491174519062,-0.966716536320746,-0.418952661100775,-0.2715143207460642,0.011504718568176031,-0.9042654945515096,-0.4610984972678125,0.8583096084184945,-0.22545340191572905,-0.7629021448083222,0.9184266123920679,0.12478437554091215,-0.026965781580656767,-0.9237868627533317,0.3113145474344492,0.07189421961084008,-0.03666760819032788,0.6404528832063079,0.9239033940248191,0.24153746431693435,0.6307793194428086,0.02405520249158144,-0.13454823289066553,0.39002923807129264,0.5981365712359548,0.6974291452206671,0.9931472041644156,-0.6487741591408849,0.6709499512799084,-0.9256325513124466,-0.3948157289996743,0.059959867503494024,0.017226617317646742,0.032616214361041784,-0.4137773774564266,0.2838780414313078,-0.15247696544975042,0.35391061333939433,0.3496488477103412,0.7247564331628382,0.15850367629900575,0.14646542770788074,-0.1370965358801186,-0.9874210692942142,-0.8501190403476357,0.5349680189974606,0.8758487612940371,0.2722324742935598,0.8895795457065105,0.19062089221552014,-0.44226598320528865,-0.7555434834212065,-0.4679662277922034,-0.1255373335443437,-0.42593338433653116,0.8125323872081935,-0.9246109346859157,-0.5335086327977479,-0.5844863951206207,0.3093250188976526,-0.9570411271415651,0.7438000403344631,0.9896930335089564,-0.3149758642539382,-0.8499401705339551,0.0032504023984074593,-0.43337484635412693,-0.015765852760523558,-0.18527396768331528,0.7220487827435136,0.1053578071296215,-0.10845355223864317,0.019679655320942402,-0.05691171856597066,0.7123939679004252,-0.37337180180475116,-0.10363742941990495,-0.057223549112677574,-0.1116697327233851,-0.7203364851884544,-0.999399583786726,-0.036264585331082344,-0.11313863843679428,0.1452770885080099,0.24645056296139956,-0.852129293140024,-0.28739650128409266,0.5246846554800868,-0.6743951146490872,0.8694056728854775,-0.2568411719985306,0.8823889764025807,0.24589506210759282,0.5322768124751747,-0.11660296376794577,-0.12220257241278887,0.7471286165527999,-0.16948301857337356,0.46854557609185576,-0.6427673613652587,-0.1464977073483169,-0.6660624011419713,-0.5152533543296158,0.6914424630813301,0.7284280089661479,0.7513106791302562,-0.381554760504514,0.125870568677783,0.06842872593551874,0.5584140857681632,0.6706318142823875,0.20326371863484383,-0.33383334055542946,-0.39894621865823865,0.36795623879879713,-0.6308379671536386,-0.261940392665565,0.933083375915885,0.14879762521013618,0.8277565068565309,0.4339478691108525,-0.08877257956191897,-0.9092226885259151,0.7039071465842426,0.5187417934648693,-0.2563603320159018,0.3247243473306298,-0.7112063835375011,-0.5060598123818636,-0.8662959262728691,-0.891271245200187,-0.8465273310430348,-0.9381756568327546,-0.1373808211646974,-0.02313270280137658,0.6917486493475735,0.08824982633814216,-0.9068025867454708,-0.594256401527673,0.737977800425142,0.6360121010802686,0.177075888030231,-0.3473249706439674,-0.3042209539562464,0.5599705153144896,0.8748677396215498,-0.9258944112807512,-0.7285950304940343,-0.33363095950335264,0.7295517073944211,-0.049305626191198826,-0.22462408151477575,-0.2594237676821649,0.20858337171375751,0.4909704397432506,-0.6044615968130529,0.6613537319935858,-0.8749486487358809,-0.012863032054156065,-0.8717222395353019,-0.06917259003967047,0.9524715710431337,0.4222369212657213,0.19927502004429698,-0.5736192991025746,-0.7670015129260719,-0.7047443548217416,0.8335088188759983,0.597156997770071,0.10470499470829964,0.573704740498215,-0.43282643519341946,0.6208634180948138,-0.47664079954847693,0.3330816118977964,-0.8123692027293146,0.8999224472790956,-0.7674324018880725,0.3405998065136373,-0.504612760618329,0.7432362772524357,-0.03274000296369195,-0.936344204004854,0.27325012208893895,0.2133426396176219,-0.47365903621539474,0.8126027341932058,0.30496006552129984,0.19748386787250638,-0.5908341538161039,0.08351943688467145,-0.5989639214240015,-0.22151960339397192,0.9886127226054668,0.12477739108726382,-0.4418999501504004,-0.6912756189703941,-0.3981759431771934,-0.009267597459256649,0.6754251848906279,-0.7141038510017097,-0.9516671607270837,0.524252456612885,0.6736543839797378,0.13693248014897108,-0.8597500906325877,-0.1592237246222794,-0.763346403837204,-0.10049512190744281,0.6899690073914826,0.04545019054785371,-0.8617531326599419,-0.9722727560438216,-0.9219445823691785,-0.08260600361973047,-0.7106519639492035,0.4828884187154472,0.47808633046224713,-0.45210724975913763,0.9008185951970518,-0.5599958980455995,-0.8321433970704675,-0.11432753223925829,0.4272994636557996,0.42957712011411786,-0.8964640824124217,0.27400329196825624,-0.5755771961994469,0.14015161525458097,-0.8500856487080455,-0.9433852252550423,-0.2544186757877469,0.6659495197236538,-0.6638180711306632,0.7857897360809147,-0.1577605614438653,0.23639038251712918,0.8102245642803609,-0.44198993733152747,-0.8613575235940516,0.9986543473787606,-0.08296061074361205,-0.4134264225140214,0.1648492394015193,0.1285965545102954,0.878094713203609,0.8773975279182196,0.11770191788673401,-0.9283361220732331,-0.10188972903415561,-0.7572908285073936,-0.5452403868548572,0.036214129999279976,0.39878530567511916,-0.5079746502451599,0.3718521618284285,0.9511837186291814,-0.7559491810388863,0.46658869506791234,-0.1845869617536664,0.5346454987302423,-0.6325447321869433,0.7353463498875499,0.6849476392380893,0.9957299176603556,-0.3443740722723305,0.0894336523488164,0.053891302552074194,0.6917725568637252,-0.9326101969927549,-0.14168556313961744,0.2550267465412617,-0.3167414325289428,-0.0022110394202172756,-0.2474724669009447,0.687451371923089,0.14733579894527793,0.18375600455328822,0.3698198851197958,-0.8501084800809622,0.5072463834658265,-0.847313251812011,-0.4820988131687045,-0.3617284609936178,0.761099046561867,0.8238826543092728,0.7573735322803259,0.6582085271365941,0.7048760452307761,0.5098074106499553,-0.13981611747294664,-0.769459567964077,0.649787048343569,0.7309869015589356,-0.8362726038321853,0.03229865850880742,0.35014854883775115,0.4502231399528682,0.3006147020496428,0.2715831622481346,0.29312598798424006,-0.8375278944149613,-0.437140179798007,-0.21351783303543925,-0.03784487908706069,0.2111210930161178,-0.6937122787348926,0.19665356213226914,-0.8492567432112992,0.29312111670151353,0.2825564341619611,0.6946606878191233,-0.5506209535524249,-0.45889039523899555,0.7159989168867469,0.22057238966226578,-0.6092567364685237,-0.29913810454308987,0.019597338512539864,0.6064720680005848,-0.6036011055111885,0.35548178432509303,0.8583129062317312,0.7016800311394036,0.32060094363987446,0.6767483251169324,0.056887959130108356,0.07957669580355287,-0.5679197506979108,-0.749718468170613,-0.1588810714893043,-0.503841714002192,0.12423778884112835,-0.06750571960583329,0.9283061120659113,0.5119240684434772,0.06147737801074982,-0.1393129830248654,-0.5100321155041456,-0.32199548464268446,-0.6620012111961842,0.4387816987000406,-0.5003002476878464,0.7555484287440777,-0.5202479832805693,0.5227339565753937,-0.5727404691278934,-0.5213071373291314,0.2606062311679125,0.7515492173843086,0.41950839338824153,0.10263357404619455,-0.48051723232492805,0.28172582434490323,-0.19118424830958247,-0.5527099212631583,-0.31233665766194463,-0.8870734828524292,-0.7287178039550781,-0.10236515803262591,0.674518667627126,0.2403191584162414,0.41338888416066766,0.9226267938502133,0.7808148162439466,-0.09592045843601227,0.6961957071907818,-0.11525456979870796,0.9484842284582555,-0.3356905593536794,0.9071104284375906,-0.17783465515822172,0.6116754831746221,0.7982963747344911,0.3825383330695331,0.028532044030725956,0.5539684193208814,-0.8562950096093118,0.8102260236628354,0.40995823172852397,0.5904940185137093,-0.19416330242529511,0.9488880578428507,0.5334855243563652,-0.045590927824378014,0.671903794631362,-0.9088247534818947,-0.9878465351648629,0.5106764556840062,0.46396719478070736,0.28855964727699757,-0.0031552892178297043,0.525310733821243,-0.1458277623169124,-0.8306849310174584,0.3672135421074927,0.8893382274545729,-0.7302885493263602,0.37119733169674873,0.36621669167652726,0.9151326683349907,0.23139188485220075,-0.512555121909827,-0.023237567394971848,-0.09986063558608294,0.735974368173629,0.5041970917955041,-0.08366991858929396,-0.7882499834522605,-0.9270309931598604,0.9756216686218977,-0.2802247293293476,-0.7654898939654231,0.9934545028954744,0.7175651402212679,0.3314883839339018,-0.6203217697329819,0.10643460834398866,0.03751820605248213,0.586547527462244,0.8967725862748921,-0.5071534812450409,0.8571237274445593,-0.9150286372750998,0.19338083639740944,-0.004668561276048422,0.24199944594874978,0.3406021217815578,0.11628023069351912,-0.10122059611603618,-0.2696834891103208,-0.7942239372059703,0.24966858234256506,-0.29173535108566284,-0.6346310414373875,-0.26620584120973945,0.7028425061143935,0.707847663667053,0.49091219808906317,0.19438187079504132,-0.27142861671745777,-0.18515040026977658,-0.12652476876974106,0.7055042637512088,0.1487936615012586,0.09907994559034705,-0.531872820109129,0.7304590451531112,-0.9381960104219615,0.2172698392532766,-0.5339651955291629,-0.6736673791892827,-0.10668320581316948,0.7657493948936462,0.8849601298570633,-0.8116588140837848,0.23464163625612855,0.10631094733253121,0.1727654612623155,0.6383482115343213,0.7618924067355692,-0.163888496812433,-0.3133260840550065,-0.10523435659706593,0.29388720402494073,0.5865140790119767,0.18904174026101828,0.23205115972086787,-0.4147115624509752,0.5328998193144798,-0.8674381151795387,-0.9042430380359292,-0.5995167517103255,0.8689895989373326,0.9798466521315277,-0.78769601136446,0.646214643958956,-0.6550278356298804,0.8890823205001652,0.7796681649051607,-0.7677428745664656,-0.12307137390598655,-0.38749092910438776,0.6423584003932774,-0.01579338824376464,-0.3888239413499832,0.18293567560613155,-0.5589373800903559,0.7829384645447135,-0.16663880739361048,0.20604086946696043,0.49403727566823363,0.31129263900220394,0.04949245881289244,0.96205980097875,0.12936193542554975,0.9194039292633533,0.8702884004451334,-0.0738543993793428,-0.25256337551400065,-0.0073998128063976765,-0.8263962590135634,-0.4256593221798539,-0.688113777898252,-0.4996716887690127,-0.6648793695494533,-0.45606777910143137,-0.21862935740500689,-0.6611946998164058,0.7070303754881024,-0.41743163065984845,-0.25421007024124265,-0.5681436681188643,0.5432891906239092,-0.526289357803762,0.8591529368422925,-0.6456019724719226,0.7444311338476837,-0.08171557588502765,-0.09511907259002328,0.7635341035202146,0.305784665979445,0.17718101106584072,-0.732586283236742,0.7799857673235238,0.9767023418098688,-0.2894185967743397,-0.5270753069780767,0.7681237733922899,-0.6148539199493825,0.04715397907420993,0.7784903007559478,0.5572633440606296,0.3354132818058133,0.6993016451597214,0.46781970746815205,-0.7907536895945668,0.9269100190140307,0.37064017867669463,0.7283672303892672,-0.27363348798826337,-0.4571428424678743,0.11972939176484942,0.7423839308321476,-0.1971733900718391,-0.05180056346580386,0.3646148513071239,0.5106807989068329,-0.4849142888560891,0.850721059832722,-0.6289334213361144,0.8430408225394785,-0.21838995115831494,-0.15164690278470516,0.9184608338400722,-0.7986676413565874,0.26556719932705164,-0.9211276695132256,-0.29292461974546313,-0.2405723398551345,0.13856400456279516,0.03859071061015129,-0.4648741567507386,-0.4002825291827321,-0.39420961309224367,-0.482957171741873,-0.06858278019353747,0.8139764494262636,0.512811706867069,-0.7405111761763692,0.9589228350669146,0.1898968075402081,0.3949643848463893,-0.3864862462505698,-0.327489557210356,-0.8616150519810617,-0.4861978297121823,0.604666749946773,-0.4336047931574285,0.5424099322408438,0.8578264722600579,0.3917539054527879,0.5656670867465436,-0.5399877522140741,0.9138103257864714,0.536986343562603,0.29561529867351055,0.7172352448105812,0.1786449938081205,0.916832824703306,0.8133544796146452,0.23332092352211475,0.08268183236941695,0.7990304273553193,-0.32629837654531,0.3415346029214561,-0.06738176569342613,0.46295310324057937,-0.2959800148382783,-0.07569855358451605,0.32386297173798084,0.16877508908510208,-0.5438059400767088,0.9078537584282458,0.9418721585534513,-0.9976053116843104,0.9883691342547536,0.6309988689608872,-0.5264955312013626,0.3849593596532941,0.21180904004722834,0.5688320407643914,-0.7088334392756224,0.9519860129803419,0.7911564353853464,-0.26495193550363183,-0.5613189055584371,-0.411119416821748,0.770946797914803,-0.7695329394191504,-0.2908859788440168,0.7121994742192328,-0.35725568188354373,-0.22896361770108342,-0.431192624848336,-0.5070232157595456,-0.0942977573722601,0.45657016104087234,-0.20422858139500022,-0.6653504278510809,-0.41833061445504427,-0.9654499031603336,0.6004731170833111,0.9825279274955392,0.45931270392611623,0.026577507611364126,-0.8821761277504265,0.8589381286874413,0.3897118102759123,0.016819367185235023,-0.695881035644561,0.8424333115108311,0.9639977295883,0.3088951176032424,-0.9114750502631068,0.07958777900785208,-0.9342409381642938,0.583513384219259,-0.07496256846934557,0.039053468964993954,-0.22222045762464404,-0.36824065912514925,-0.9085239181295037,-0.3934021005406976,0.9533583181910217,0.7533932952210307,-0.621579703874886,-0.07558349007740617,-0.8657233291305602,-0.7115138489753008,-0.1826262422837317,0.5857734302990139,0.36606425419449806,-0.15955008240416646,-0.33435057010501623,-0.8163687293417752,-0.6422807783819735,-0.22240045526996255,-0.8636892717331648,0.3553961836732924,-0.4340753904543817,-0.5063409483991563,0.9843599856831133,-0.3643584158271551,0.1881677908822894,0.7272849217988551,0.6035506222397089,0.8870190912857652,-0.03366875322535634,-0.6680375593714416,0.3268670178949833,-0.9438481437973678,0.7007970800623298,0.3030610620044172,0.485520021058619,-0.8874443857930601,0.7434230521321297,0.46776730101555586,0.08893583714962006,0.6221769442781806,-0.14255169732496142,-0.3219034867361188,0.750775997992605,0.5912865465506911,0.33948702551424503,0.24570038868114352,-0.49571968941017985,-0.06738955713808537,-0.07502545462921262,0.09658584510907531,-0.6073854216374457,0.5978445135988295,-0.9162814589217305,-0.6820589345879853,-0.36868596030399203,-0.1439098878763616,0.31919901818037033,0.28352401638403535,0.7906375443562865,-0.7769036297686398,0.20316827343776822,-0.8782498622313142,-0.34565888717770576,0.7889957139268517,0.5921374969184399,-0.2093052240088582,-0.4673479753546417,-0.22302977601066232,0.8098440538160503,-0.5563682364299893,-0.31986649660393596,-0.2959478870034218,-0.8384469132870436,0.7492829649709165,0.887371692340821,-0.03530014306306839,-0.061123804189264774,-0.808478940743953,-0.5404862095601857,0.5210677343420684,0.47369942301884294,0.19026246294379234,0.9255998870357871,0.3685824587009847,0.0286455019377172,-0.5190233932808042,0.12223028019070625,-0.6914333822205663,0.3069243957288563,-0.5020180786959827,0.5119289364665747,0.3448788495734334,0.7431247136555612,0.2804012265987694,0.859578532166779,0.5106238373555243,0.6196156917139888,0.9440994756296277,-0.04993347451090813,-0.540451486594975,0.8106298577040434,-0.3533701882697642,0.42626458359882236,-0.6416807612404227,0.6884301546961069,0.9751742812804878,0.34045226220041513,-0.1442288877442479,0.4192809835076332,-0.21531053306534886,-0.2072130017913878,0.5332904173992574,-0.8949272409081459,0.5414758222177625,-0.9750518822111189,-0.8925988264381886,-0.35435602627694607,-0.47370801493525505,-0.38360277051106095,-0.5672238608822227,-0.8189448458142579,0.680157832801342,-0.7196682528592646,0.6280460734851658,-0.5739250197075307,-0.5270498273894191,0.08571452787145972,0.6111619076691568,-0.567641019821167,-0.5018450650386512,0.5691359424963593,0.8425234188325703,-0.8186356737278402,0.7843137611635029,0.4172399751842022,-0.9621078721247613,-0.9344723885878921,0.6356152426451445,-0.5415086927823722,-0.07172074960544705,0.7717215162701905,-0.1342279613018036,-0.3667221451178193,0.3379501993767917,-0.6231530201621354,-0.027514048852026463,-0.9474874492734671,0.5251190774142742,-0.659890906419605,-0.3121079122647643,0.16396425291895866,-0.8094269321300089,0.19490433810278773,0.2870187205262482,-0.6436774018220603,0.9249123851768672,0.07893194910138845,-0.7328175762668252,0.5260593960992992,-0.06895868293941021,-0.9344598455354571,0.008882977534085512,0.002689897082746029,-0.8939352612942457,0.3171250121667981,-0.5706221424043179,-0.9654097151942551,0.6976592876017094,0.052803744561970234,-0.5468422011472285,0.8946690927259624,-0.8084566164761782,0.7014870010316372,0.9648068994283676,-0.36141230491921306,0.3698720666579902,0.6079693422652781,-0.2689556796103716,0.2494572550058365,-0.39523977413773537,-0.4945367155596614,-0.47146604768931866,-0.717427468392998,-0.6271015158854425,0.8292240602895617,0.469309797976166,0.006501787342131138,0.24090243969112635,0.06409078929573298,-0.64934948598966,-0.9055564543232322,-0.9707740875892341,0.3352368618361652,0.49246786581352353,-0.051545996218919754,0.7441532541997731,-0.1887197340838611,-0.3822245988994837,-0.2349603045731783,-0.2395314099267125,0.7499092784710228,0.3944330122321844,-0.5606517014093697,-0.1343589024618268,-0.29861659836024046,0.7900916580110788,0.37858491530641913,-0.6997842346318066,-0.32298314990475774,0.14441224094480276,-0.6147421440109611,0.5613622418604791,0.28671777667477727,-0.1529031926766038,0.021997587755322456,-0.7734874780289829,-0.8499099412001669,-0.7256326819770038,0.9379814462736249,-0.73252606485039,0.5316674867644906,0.020664928015321493,0.7964167734608054,0.4920589504763484,0.5227051782421768,-0.7335563683882356,0.7421933859586716,-0.17728180857375264,0.09967172658070922,-0.09313007304444909,0.4672396690584719,-0.4114794535562396,-0.7938629649579525,-0.3282109065912664,0.38398743281140924,0.9521117750555277,0.28208888322114944,0.7141141928732395,-0.5162878069095314,-0.14800563547760248,0.5999679989181459,-0.6731266248971224,-0.8187292343936861,-0.6197275267913938,-0.7156290453858674,0.7208618707954884,0.07299974607303739,0.8861163957044482,0.12241200637072325,-0.9123037592507899,-0.5965190031565726,0.19954385282471776,-0.7526890677399933,-0.03877680795267224,0.0017260410822927952,0.5783669180236757,-0.7341713351197541,0.4358201092109084,-0.4473673505708575,0.4859717986546457,-0.5837584710679948,0.6307656290009618,-0.9001371343620121,0.752453276887536,-0.21529310522601008,0.12780715711414814,-0.8817647974938154,-0.6215657205320895,-0.44685841165483,-0.33343401039019227,-0.2664323984645307,0.7446244526654482,-0.41248091543093324,0.6583971329964697,0.07214312488213181,0.5226559201255441,0.8074612747877836,-0.607955617364496,-0.6126584280282259,0.6540705468505621,0.5659436993300915,-0.06774296471849084,-0.803793023340404,-0.45123798167333007,0.4409345327876508,0.1440892112441361,0.42737436201423407,-0.35855445824563503,0.5352061581797898,-0.7057212442159653,0.9857225217856467,-0.6933593316935003,0.03806838905438781,-0.9305696012452245,0.4374956423416734,0.4826288861222565,-0.7545044757425785,0.8918921737931669,-0.197211601305753,0.04375509778037667,-0.21127434959635139,0.8921221233904362,0.31166059197857976,-0.04638099018484354,-0.044808140490204096,0.7031797706149518,0.3904716866090894,-0.09443004243075848,0.07937022671103477,-0.2962176348082721,0.12696654768660665,-0.7647674838081002,-0.2595133688300848,0.7382081700488925,-0.3736898279748857,-0.19663431216031313,-0.04769100155681372,0.05341092124581337,0.7209051288664341,0.6332700382918119,0.917957394849509,-0.061349085066467524,0.5945678064599633,0.40160144167020917,-0.8295935494825244,0.5830415319651365,-0.1622569258324802,-0.713837297167629,0.1868703393265605,0.17701130779460073,0.9568840870633721,0.6016596262343228,-0.8982957345433533,0.9462393862195313,-0.5648112036287785,0.1724831140600145,-0.21777784079313278,0.47077156649902463,0.02666400233283639,0.21696309512481093,0.5005254629068077,0.44934910675510764,-0.4073235006071627,-0.8791263219900429,0.12354752933606505,0.4183871359564364,0.15275822393596172,-0.8537065126001835,-0.19983095303177834,0.3875134759582579,-0.03176323650404811,0.3421552274376154,-0.8143004444427788,0.1438087597489357,0.1572530004195869,0.9618640951812267,-0.5443265591748059,0.6526701538823545,0.9134294632822275,0.34813231555745006,0.975434803403914,-0.5407528998330235,-0.33680649753659964,0.8135551661252975,-0.2621765951626003,-0.6365525964647532,0.5582015509717166,-0.36482861638069153,0.6874591037631035,0.6230433867312968,-0.545405893586576,0.12838641414418817,0.49613978527486324,0.28058224776759744,0.05167721817269921,-0.22775587206706405,0.5991581939160824,-0.5710525363683701,0.4795614373870194,0.8543741870671511,-0.588776895776391,-0.7428990751504898,-0.22388721024617553,0.7540309042669833,0.9311900967732072,0.8974493518471718,-0.32071815710514784,-0.9098447901196778,-0.9383985418826342,0.7732308930717409,-0.46106686256825924,0.32344198413193226,-0.1763998232781887,0.5423870231024921,0.7993861334398389,-0.49197008879855275,-0.22779227700084448,-0.27438914962112904,0.8459247946739197,-0.6524845347739756,-0.9566981848329306,0.6261026412248611,-0.602007478941232,0.39261580910533667,-0.09087078832089901,0.422796415630728,-0.863332936540246,0.13651234237477183,0.7491186517290771,0.6074764779768884,-0.9290284877642989,-0.5663588964380324,0.8191479588858783,-0.2125791274011135,0.8797578574158251,-0.04617238789796829,0.2894397955387831,0.0997827285900712,-0.5633713277056813,0.9943376258015633,0.22531868191435933,-0.7652731225825846,0.22849061945453286,-0.36762227676808834,0.3052456066943705,0.3497362956404686,0.43975526047870517,0.8834315217100084,-0.4884978989139199,-0.6958681559190154,0.116492900531739,0.6944586988538504,-0.6568603753112257,0.6132221706211567,-0.7507078875787556,0.7405724604614079,-0.5654811705462635,-0.6513569504022598,0.7156841149553657,0.2510043056681752,0.49718272499740124,0.48901923885568976,-0.46635192446410656,0.8639210197143257,-0.8726220629177988,0.5321295163594186,-0.5818386683240533,-0.8444443964399397,0.10171041265130043,0.983901425730437,-0.5345011437311769,-0.05366475926712155,0.2759388452395797,0.7608189303427935,0.5907675460912287,0.8175631347112358,0.18111329805105925,0.2362213940359652,0.9801192567683756,0.004178287461400032,-0.0743883321993053,-0.4190956326201558,-0.24300604686141014,0.24919236032292247,-0.105600256472826,-0.8751630214974284,0.643940890673548,0.9254107507877052,0.12577225267887115,-0.5477358587086201,-0.1567529123276472,0.5612604292109609,-0.6142091173678637,0.6651308401487768,0.9543334487825632,-0.7283791392110288,0.6599527830258012,-0.9939560131169856,-0.4822063157334924,-0.9293802841566503,0.01826401147991419,0.7301281406544149,-0.35084878792986274,-0.5285309515893459,-0.8728423197753727,-0.3392561604268849,-0.1428085290826857,0.9107556995004416,-0.2096755588427186,-0.06946600461378694,-0.794200352858752,0.33648400800302625,-0.4444157197140157,-0.8262553857639432,-0.2517176987603307,0.03763237735256553,-0.819465811830014,-0.7122792303562164,-0.8401062600314617,0.3680402240715921,-0.13066939311102033,-0.5669732363894582,0.13387389853596687,-0.18921717070043087,-0.24601515801623464,-0.5403695683926344,0.30893725948408246,0.2806104188784957,0.7342835869640112,0.13326032552868128,0.7548123267479241,-0.3473654156550765,0.5190119962207973,-0.8636627937667072,-0.3544819140806794,-0.8545527686364949,0.7375266728922725,0.9079083572141826,-0.46166099701076746,-0.24501247378066182,0.8054092838428915,-0.963364280294627,-0.1462683961726725,0.24515841528773308,0.6031404566019773,-0.5693548293784261,0.6006782222539186,-0.22157501196488738,-0.7949817893095315,0.1130330846644938,0.3672679248265922,-0.39249617885798216,-0.17415438499301672,0.9048042627982795,-0.5535280755721033,-0.8852346381172538,0.845927950926125,-0.0571065554395318,-0.2918003830127418,-0.06712989555671811,0.3952042842283845,0.0700431470759213,0.8876686622388661,-0.1038068369962275,0.3234246396459639,-0.42618602933362126,0.6274724188260734,-0.1402432625181973,0.804993306286633,-0.7328408728353679,-0.16531873540952802,0.8103338405489922,-0.6996390051208436,0.6114927027374506,-0.5682400818914175,-0.8282114020548761,-0.4850537786260247,0.93215471226722,0.7385372524149716,0.44786103116348386,0.7073357934132218,-0.6196997170336545,0.6033790139481425,-0.8957654130645096,0.15354253025725484,-0.5595306898467243,-0.39911736780777574,0.8894494855776429,0.9557002177461982,0.3323120973072946,0.8563866461627185,0.058773505967110395,-0.6479819430969656,-0.8842211258597672,0.5511179100722075,0.17233405075967312,0.08393400115892291,0.4337048572488129,0.40701815392822027,-0.3579059485346079,0.2577625517733395,0.8768256399780512,0.3742528222501278,0.3082497506402433,0.6930332845076919,0.02150248922407627,-0.3730317377485335,0.6696533169597387,0.9373321258462965,-0.6327057383023202,-0.34608333883807063,0.4303474114276469,0.006228914018720388,-0.5128583186306059,-0.3651575236581266,0.29063803562894464,0.8146750256419182,-0.7898537176661193,-0.3626686562784016,0.7946381983347237,0.19857799634337425,0.3488752180710435,-0.6702180411666632,0.2553481231443584,-0.20346610760316253,-0.9995042611844838,-0.03957107802852988,0.5330332363955677,0.6058385167270899,-0.06018954934552312,0.037174385506659746,0.05059485835954547,-0.13904576422646642,0.7530825715512037,-0.4688614057376981,-0.0680773425847292,0.7294686632230878,-0.10958863096311688,0.4630011059343815,-0.015325126238167286,-0.2550349268130958,0.6436180067248642,0.5064142560586333,0.22858285065740347,-0.10644565243273973,0.535536085255444,-0.6888160654343665,0.6339107407256961,-0.017603805754333735,0.40038528433069587,0.2733310009352863,-0.23939110105857253,-0.37700729770585895,0.11659432016313076,0.862541216891259,0.8946632309816778,0.8932958608493209,0.26562232058495283,-0.9606976038776338,0.47265867749229074,0.878981348592788,0.8270320198498666,0.35324584087356925,0.4173237271606922,0.9396755062043667,0.8885547635145485,-0.612211967818439,-0.02970742853358388,0.4246805184520781,-0.3457072698511183,-0.0018704305402934551,0.6173110282979906,0.7340101804584265,0.7062273677438498,0.02221759082749486,0.3454138576053083,-0.8902783137746155,-0.0037361374124884605,0.5407064431346953,-0.7085029692389071,0.7933320845477283,-0.3142101834528148,0.943516090977937,0.18015844328328967,0.4541139155626297,-0.06690209731459618,-0.07954203430563211,0.38480821205303073,-0.3858576724305749,0.9643644313327968,-0.1439416822977364,-0.9558735978789628,0.20995543850585818,0.6518366332165897,-0.5625514197163284,0.4349720920436084,-0.02232995443046093,-0.40654429234564304,-0.8632699865847826,0.2960611875168979,0.8920138669200242,-0.6921753911301494,0.263244841247797,0.8448794768191874,0.8520858297124505,-0.363499348051846,-0.7564220298081636,0.11518192570656538,-0.9925419948995113,-0.19374577701091766,0.6077022748067975,0.6006721830926836,0.3182854033075273,0.5283461608923972,0.53022928442806,-0.12249368708580732,0.21677521895617247,-0.421830250415951,-0.15011547598987818,-0.8770284615457058,0.03133369097486138,-0.3187943617813289,-0.7212065770290792,-0.9238215037621558,-0.5411161291413009,-0.3624504543840885,0.9842284792102873,-0.038555340841412544,0.3488416997715831,0.31286154920235276,0.7947405325248837,-0.3866813341155648,-0.2221726686693728,-0.5443914234638214,-0.49659896921366453,0.0157001125626266,0.9792993296869099,0.9769418244250119,-0.38989018741995096,-0.6118881432339549,0.6443750965408981,-0.392980691511184,-0.08610061835497618,0.08228196250274777,-0.6311475485563278,0.7179857878945768,0.6255624704062939,-0.9549597906880081,0.9195198728702962,-0.5255618346855044,0.10758473630994558,-0.581590099260211,0.023627412505447865,-0.66394172469154,0.4788266932591796,-0.4823034037835896,0.23922286555171013,0.7940640873275697,0.10231515998020768,-0.6064986502751708,0.43455794639885426,-0.7743889070115983,-0.9662589854560792,-0.3991425600834191,-0.6480217091739178,0.5999260083772242,0.9808228695765138,-0.033313175197690725,0.5246232603676617,-0.09901195392012596,0.733932257629931,-0.19538721907883883,-0.061384330969303846,-0.05231340602040291,-0.515729027800262,0.33753862464800477,-0.02049913816154003,-0.5031742481514812,0.5565088423900306,-0.826902533415705,-0.14334718976169825,0.8522771229036152,-0.8470485196448863,0.1764917140826583,-0.28748429054394364,-0.844941487070173,-0.7850690302439034,-0.629841938149184,0.39677535044029355,0.6069715451449156,0.44905477995052934,0.5638742754235864,-0.2517447010613978,0.06398177985101938,0.5423570116981864,-0.9665989335626364,0.012164339423179626,-0.6784695903770626,0.3435833565890789,-0.9804834849201143,0.6865269234403968,0.4924270613119006,0.27760696737095714,0.4777846639044583,0.1664869082160294,-0.7004113271832466,0.6029149550013244,-0.7524868124164641,-0.45960509637370706,0.4057011129334569,0.4003995112143457,-0.7292056283913553,0.20409351494163275,-0.3949985448271036,0.9562146877869964,0.21058308705687523,0.1656884104013443,0.4776851646602154,-0.36918285861611366,0.6676302803680301,0.4108861396089196,-0.3745513646863401,-0.19520768150687218,0.2999719767831266,0.1744672073982656,-0.36550004687160254,0.9301904579624534,-0.5826313947327435,-0.5628348323516548,0.2535143713466823,-0.877454221714288,-0.06360159208998084,0.19670754857361317,-0.205020722001791,-0.6598790665157139,-0.8246749541722238,-0.6430959217250347,-0.646568248514086,0.15128585835918784,-0.11045090341940522,-0.11579982284456491,-0.9521896070800722,-0.9059545127674937,-0.9479258288629353,-0.8759073307737708,0.05544034857302904,0.5494393743574619,0.13972692610695958,-0.6901817284524441,-0.5163039150647819,-0.2966320374980569,0.10984469950199127,-0.724180057644844,-0.15509975282475352,0.844346655998379,-0.24277757667005062,-0.14354531979188323,0.7980489693582058,0.05911950720474124,-0.7125481083057821,0.7700162013061345,0.34059352660551667,-0.2656836067326367,0.7727332878857851,0.6056340928189456,0.40854979073628783,0.6631756760179996,0.924681203905493,-0.5194573355838656,0.7496863198466599,0.5879310234449804,0.7578228581696749,0.6399067649617791,-0.23391212709248066,0.4533870997838676,0.5371704613789916,-0.7106642294675112,-0.040301923640072346,0.1220248588360846,0.0011108689941465855,0.4159058150835335,0.8971950681880116,-0.6279768920503557,-0.3016284145414829,0.33498491533100605,0.7528664665296674,-0.03958196612074971,-0.9079041788354516,0.47378246765583754,-0.46428763633593917,-0.5700388317927718,-0.007303300313651562,0.9922453970648348,0.7986259297467768,0.03227826440706849,0.5151775339618325,0.6315171704627573,0.678482832852751,-0.5349039030261338,-0.6898373779840767,-0.7519838865846395,-0.010412117000669241,0.5585336787626147,-0.6352419764734805,0.06662834761664271,-0.24652710603550076,-0.17417782871052623,-0.6561566353775561,-0.3900574711151421,0.7943201209418476,0.012752410490065813,0.6315588830038905,0.30714177107438445,-0.6235269927419722,-0.8047506492584944,-0.12049387069419026,-0.37435066094622016,-0.6772894402965903,0.5864050542004406,-0.02183549478650093,0.9835305893793702,-0.4092958653345704,0.181915745139122,-0.1714201415888965,0.8550813072361052,-0.6587957688607275,-0.5495912404730916,-0.6328830285929143,-0.22139883739873767,0.1257697162218392,-0.5017677866853774,0.699554346036166,0.4226357638835907,-0.01802167622372508,0.03681610198691487,-0.5330361262895167,0.12830231431871653,-0.9778025699779391,-0.7479333681985736,0.7012468394823372,-0.6487680017016828,-0.5214448790065944,-0.6607566671445966,-0.7834623898379505,0.5345473317429423,-0.6858333237469196,-0.05901369033381343,-0.05714438809081912,0.5049920124001801,-0.6431252686306834,0.0490087503567338,0.421081000007689,-0.7824245556257665,0.4888569125905633,0.21206745924428105,-0.5012874375097454,-0.06922842375934124,0.0847635455429554,0.44658372085541487,-0.8579274131916463,0.5661004511639476,0.7728948071599007,-0.6015922147780657,-0.7540261493995786,0.15072507690638304,-0.23892254894599319,-0.17569023231044412,-0.2190986918285489,-0.7956695752218366,-0.08227944606915116,0.4993950081989169,0.762914652004838,-0.3726220605894923,0.6484286747872829,0.6142328386195004,-0.2714468981139362,-0.6924863439053297,-0.19231720129027963,0.3979578036814928,-0.486144183203578,-0.11126066651195288,0.20473889401182532,0.9081734349019825,0.5599537589587271,-0.16808552108705044,-0.45702875731512904,0.13875518087297678,0.37941684760153294,-0.516295175999403,0.24674736894667149,0.10196342691779137,0.8980130120180547,0.6394851384684443,0.9290274870581925,-0.9798751384951174,0.6480646743439138,-0.059772064443677664,-0.22890159394592047,-0.45332425367087126,0.9354611216112971,-0.015312183182686567,0.6677539721131325,-0.3381856279447675,0.5656323917210102,0.901816715952009,0.37497233878821135,-0.7869494818150997,-0.17046405794098973,-0.3187197460792959,0.49915769323706627,0.6672935686074197,-0.0025637149810791016,-0.5170394643209875,-0.45293492218479514,0.8477878370322287,-0.384093105327338,-0.6899653249420226,-0.6298773218877614,-0.25693887704983354,0.41794377099722624,-0.4923677630722523,-0.5506247291341424,-0.2647838541306555,0.6515826685354114,0.333065006416291,-0.690253019798547,0.8582123750820756,-0.9461475103162229,-0.23208748223260045,-0.228364079259336,0.6683070827275515,0.7174924807623029,-0.02241897862404585,-0.023240146227180958,-0.42387618124485016,0.8634790200740099,-0.6785850860178471,0.2860770686529577,-0.6060917610302567,0.8488566940650344,0.47278613736853004,0.09015228971838951,-0.905571901705116,0.743832437787205,0.4764188565313816,0.3123497385531664,-0.9351422749459743,-0.40197378722950816,0.41266439761966467,-0.9166055740788579,-0.44836369855329394,-0.849682321306318,-0.33540154434740543,0.7720225257799029,-0.5075801094062626,-0.6037291949614882,-0.2695784601382911,-0.12452762667089701,0.4668949246406555,0.794498329050839,-0.6866272543556988,-0.39073151629418135,-0.8870209641754627,-0.17582742124795914,0.5995176373980939,0.6690047062002122,0.9258447932079434,0.8301470610313118,0.603582835290581,0.6982098710723221,0.8859129035845399,0.5063065174035728,0.3805754389613867,0.8273849138058722,0.25420686323195696,0.3221473623998463,0.07147441012784839,0.887969084084034,-0.8934506084769964,0.808167536277324,-0.5226891869679093,0.08009453443810344,0.6323008369654417,-0.018714718986302614,0.23255888372659683,0.5719142737798393,0.26114580407738686,-0.6142657087184489,0.9803583971224725,-0.8556489683687687,0.23340480728074908,-0.43990467861294746,-0.17258990881964564,0.08591715944930911,0.8344649872742593,-0.6454324619844556,0.8571711722761393,-0.9106269259937108,0.36355203203856945,-0.45530534256249666,-0.40355947986245155,-0.7224187208339572,0.6839755256660283,0.2717820340767503,0.8876006901264191,0.02287139929831028,0.546331403311342,-0.8043018495664,0.3752923118881881,-0.3263217178173363,0.3865109356120229,0.39361951081082225,-0.2943447921425104,-0.8616922437213361,0.37865358497947454,0.04494256433099508,0.7407668875530362,-0.21400685608386993,0.21201780438423157,-0.08091120980679989,0.7790571548976004,-0.9668012107722461,0.7572159171104431,-0.18362339725717902,0.5823498931713402,0.5078615085221827,-0.39192175632342696,0.17861388949677348,0.6338439229875803,0.9371817647479475,-0.02469445113092661,0.056082782335579395,-0.2307816119864583,-0.040575264021754265,0.4146980750374496,-0.7581228972412646,0.859184225089848,-0.11916871136054397,-0.17661722609773278,0.40855155792087317,0.26008992921561,-0.8033519363962114,0.9739161795005202,0.7113310978747904,0.46261516539379954,-0.387443452142179,0.20592040242627263,-0.656372562982142,0.02816850272938609,0.7750757369212806,-0.9952816977165639,0.7447008076123893,0.583073899615556,0.04590523149818182,-0.8835460566915572,-0.9724633651785553,0.4194635604508221,-0.08682413073256612,-0.2480621011927724,-0.8899586745537817,-0.6120312158018351,-0.6296615893952549,-0.8402864187955856,-0.2323754020035267,0.6227495926432312,-0.005680002737790346,-0.9740170883014798,-0.9242713977582753,-0.622602510266006,0.5603087125346065,-0.7825813395902514,0.9186657164245844,0.8638538783416152,-0.5661713145673275,-0.10419210651889443,0.9875051146373153,0.42141582863405347,0.6877172435633838,0.8602180848829448,-0.1516151102259755,0.9852737002074718,0.45460868533700705,0.948870190884918,0.25455888034775853,-0.22139094537124038,-0.42553529888391495,0.7426762036047876,-0.4690650627017021,0.8800301011651754,0.11992077063769102,0.0709069105796516,-0.6814875900745392,0.86598233692348,0.5296230115927756,0.7279247683472931,-0.22835757350549102,0.28643320593982935,-0.9955104338005185,0.7101104096509516,-0.7741211419925094,-0.6592600611038506,0.6325956163927913,-0.07847879640758038,-0.654318280518055,0.9403204312548041,0.17255219258368015,-0.7845202158205211,-0.6731576519086957,0.9713083887472749,-0.7803432089276612,0.45824044896289706,0.21873534936457872,-0.6417758855968714,-0.7499427981674671,0.17775028478354216,0.28834025701507926,0.8594231167808175,0.07170941168442369,0.022684383671730757,-0.6512692794203758,0.4816130707040429,-0.15795269329100847,0.11384860100224614,-0.19663202855736017,0.6297173071652651,-0.027164251543581486,-0.4307122458703816,-0.850405955221504,-0.3514373213984072,-0.5841608112677932,0.47846410190686584,-0.9305531745776534,-0.9535282077267766,0.4136784099973738,0.5489684548228979,0.4496937454678118,0.22707437770441175,0.8284457009285688,0.18009083671495318,-0.8975562914274633,-0.4229090828448534,-0.72483945870772,-0.9694777131080627,-0.4865345396101475,-0.22885944601148367,0.40064329700544477,-0.9566278024576604,0.9347489075735211,-0.3557173749431968,-0.5088259833864868,0.9319012369960546,-0.69714051252231,-0.6073586824350059,0.5207782201468945,-0.5233909576199949,0.7547249495983124,-0.8533367868512869,0.9364641197025776,-0.6243956387042999,0.7717179460451007,0.5915117827244103,0.9235710450448096,-0.4668075288645923,-0.11740550212562084,-0.05784866772592068,0.30145772686228156,0.04142860556021333,-0.4663346894085407,-0.8181003564968705,-0.4911037874408066,-0.753676291089505,-0.5084913419559598,0.20028073247522116,-0.42228540452197194,0.9592262576334178,-0.6272923802025616,0.8739110543392599,0.22333758417516947,0.17490605311468244,0.6146320998668671,0.6409319066442549,0.5555094508454204,0.48039368353784084,-0.0855858433060348,0.7876928034238517,-0.2650424810126424,-0.1131567140109837,-0.16891646711155772,0.8135937564074993,-0.454795035533607,-0.5757257486693561,0.3993567433208227,-0.02327861078083515,-0.7832194934599102,-0.5092773069627583,0.15848630759865046,-0.9142962447367609,0.21889491099864244,-0.05995404673740268,0.68081284314394,-0.17966193612664938,-0.15182434301823378,-0.020718230865895748,-0.8301988407038152,0.8952629407867789,-0.5387923708185554,0.07967563159763813,-0.09524962073192,-0.4466593023389578,-0.796983044128865,0.22755977837368846,-0.7730967937968671,0.5680623482912779,0.6445082589052618,-0.2856762623414397,-0.4533566953614354,0.4847202352248132,-0.5949854874052107,-0.6380877350457013,0.5485485312528908,0.8328960901126266,0.6287811044603586,0.2779014422558248,-0.6866911482065916,0.43726264825090766,-0.42496555438265204,0.984746455680579,-0.4256955995224416,-0.8228496084921062,0.9432690860703588,-0.8338409243151546,-0.754832411184907,0.3464414249174297,0.6024182662367821,0.8322733612731099,-0.9075496862642467,0.8378926059231162,0.5797634921036661,0.8677650885656476,0.8708524946123362,-0.56205537263304,-0.757809947244823,-0.18199917115271091,0.6277730539441109,0.4840895077213645,-0.731726136058569,0.29937535896897316,-0.9136907192878425,-0.20775989489629865,0.05333347152918577,0.8357611089013517,0.4046287117525935,0.15854855300858617,-0.3877825583331287,0.6794747151434422,-0.9888994605280459,-0.8944600261747837,0.31007805932313204,0.022555126808583736,-0.18568095145747066,-0.10989579372107983,-0.5095090717077255,0.7956711375154555,-0.6801777491346002,-0.7546546799130738,0.5478791180066764,-0.9347894042730331,0.7091985200531781,0.570714139379561,0.730077107436955,0.9019911335781217,0.8806225992739201,-0.5932312486693263,-0.8980431598611176,0.22946604574099183,0.28559536719694734,-0.7974645337089896,-0.14035647362470627,0.37638786481693387,-0.639213499147445,0.506794479675591,0.11236065160483122,0.8626625370234251,-0.6618892643600702,0.43999326741322875,0.03654043795540929,-0.8973989682272077,-0.1932368976995349,-0.0546043268404901,-0.6970655927434564,-0.7880879370495677,0.3937633289024234,0.2351656435057521,-0.1127188615500927,-0.7321609109640121,-0.4867748338729143,0.19132107589393854,0.6887618587352335,0.30908046942204237,0.5868758261203766,-0.5422151908278465,0.9941249396651983,-0.5410793488845229,-0.7955824676901102,-0.7008256129920483,-0.9778668121434748,-0.7225205423310399,0.37301991367712617,0.4552851766347885,-0.04769607074558735,-0.18314072070643306,0.43328826082870364,-0.40089827636256814,-0.6435982068069279,0.4134720638394356,0.7477878541685641,0.8879009368829429,-0.786118405405432,-0.6899125496856868,-0.525769682135433,0.41803538240492344,0.47119493363425136,-0.49427802255377173,0.47051970241591334,-0.47088566282764077,-0.02003823174163699,-0.6252471567131579,0.3220172869041562,0.4537729537114501,0.05676709394901991,-0.13001719629392028,-0.6796481730416417,0.265210697427392,-0.3818241413682699,-0.41946602519601583,-0.01683163968846202,0.4365995768457651,0.4378283196128905,-0.3526912173256278,0.7731063412502408,-0.23065217724069953,0.5982339871115983,-0.8370003453455865,0.7541053248569369,0.8953285608440638,-0.19198727887123823,-0.4360796343535185,0.33714594785124063,0.9363329275511205,-0.9360721474513412,-0.14643929852172732,0.6568176681175828,-0.22306257393211126,-0.6520192897878587,0.49267365084961057,-0.4641438014805317,-0.09807411767542362,-0.12907999148592353,-0.4509089319035411,-0.2707843240350485,0.7136036003939807,-0.2786152856424451,-0.8153660916723311,0.8753760256804526,-0.3960291254334152,-0.0915187206119299,0.4506472032517195,0.40329748298972845,-0.7820743578486145,0.6557725854218006,-0.5678274394012988,-0.6437749685719609,-0.9599071335978806,-0.7624320900067687,-0.1269639334641397,0.32558040879666805,-0.8794089895673096,0.40339164854958653,-0.32377979531884193,-0.6710817967541516,-0.3943396024405956,0.2976202596910298,-0.4243582426570356,0.8846539203077555,-0.7276589199900627,0.002906611654907465,0.3826307668350637,0.032544285990297794,-0.9026328469626606,0.04370667552575469,0.6889866492711008,0.28992001758888364,-0.6295924130827188,0.4304817677475512,0.1920696971938014,0.9049769891425967,-0.6794486632570624,-0.2626921874471009,-0.28637919994071126,-0.35156189976260066,0.5207089139148593,-0.9526966125704348,-0.44874264020472765,0.49032829562202096,-0.9544587386772037,-0.7229480850510299,-0.9260907294228673,-0.4365973584353924,-0.46715461602434516,-0.6593438447453082,-0.3163168099708855,-0.4276457936502993,0.13061939552426338,-0.5061300238594413,0.2858045385219157,0.8026584736071527,-0.17055056057870388,-0.10666825715452433,-0.3775633233599365,0.2838688031770289,-0.4168705199845135,-0.5578696178272367,0.4017669972963631,-0.5387349012307823,0.9821281507611275,0.37151947151869535,-0.4456178657710552,-0.4253109563142061,-0.5461740349419415,0.13718490255996585,0.45409270422533154,0.8705909666605294,0.5514763542450964,0.5367386364378035,0.050820890348404646,-0.23820447269827127,-0.5976651851087809,-0.7694284357130527,-0.13159291073679924,-0.5534376124851406,-0.9551976346410811,0.8471270790323615,-0.41778837935999036,-0.8033882705494761,0.15140164829790592,-0.5782815651036799,-0.32294852659106255,0.9269838724285364,0.049664124846458435,0.9190146955661476,0.2496326696127653,-0.9209281275980175,-0.8760792706161737,-0.6827413872815669,-0.8495611143298447,0.5719380606897175,0.8016358762979507,0.5120305325835943,-0.11722855223342776,0.8679897361434996,-0.2472887672483921,0.49769028509035707,-0.8045891560614109,0.20323891332373023,-0.11581337312236428,0.3899901262484491,-0.1392252231016755,0.055458346381783485,0.3295441623777151,0.14988508401438594,-0.37043300783261657,0.5387018662877381,0.28491156781092286,-0.6918786414898932,0.7023933087475598,0.5288942400366068,-0.8870841064490378,0.5678318249993026,-0.9181704842485487,0.5076148491352797,0.28511078376322985,-0.734285774640739,0.37031950848177075,0.36033156979829073,0.6436197212897241,0.43095844937488437,-0.44128923350945115,-0.25037634652107954,0.07909425999969244,-0.8540765843354166,0.4808374489657581,-0.6168523291125894,-0.6888426258228719,-0.9700312092900276,-0.8036863836459816,0.7877540928311646,0.6559068709611893,0.11341329803690314,0.10763369174674153,0.1902922079898417,0.04362444393336773,-0.4447804596275091,0.06849696021527052,-0.9038047753274441,-0.4689276609569788,0.24381913663819432,-0.4720744267106056,-0.4508285950869322,-0.47194091184064746,0.101465436629951,-0.8505505840294063,0.2549875942058861,-0.3821711610071361,0.6739921788685024,0.9037020285613835,-0.2642120085656643,-0.9909079228527844,-0.4620703072287142,-0.5492975106462836,0.34322618832811713,0.7991730473004282,-0.5740622566081583,-0.6542989891022444,0.5876243840903044,-0.5642215367406607,-0.8654188388027251,-0.49122851667925715,0.32497757533565164,-0.5214073075912893,0.9541447637602687,-0.39126339461654425,-0.30539321154356003,-0.8040612237527966,-0.9389636972919106,0.26374688278883696,-0.5077474382705986,0.28791169496253133,-0.009075973182916641,0.5627925670705736,-0.619325784035027,-0.11272534914314747,0.8678050986491144,0.40665611159056425,-0.034202996641397476,-0.04040909372270107,0.5619782889261842,-0.6860481132753193,0.06575290951877832,-0.12112995749339461,-0.6966342530213296,0.6945971907116473,0.6911742757074535,-0.6478801812045276,0.7687308844178915,-0.7737073586322367,-0.33703819336369634,-0.5670905173756182,0.4468298275023699,0.3665276332758367,0.08718135161325336,0.5373492203652859,0.9909079577773809,-0.9068110338412225,0.5575356343761086,0.059083348140120506,0.9042814988642931,-0.7671513766981661,0.5951683255843818,0.7447575232945383,-0.032253905199468136,-0.3827733169309795,-0.8794515393674374,-0.9751857765950263,0.5819342201575637,-0.3427848103456199,0.9802719936706126,-0.09151704562827945,0.11963206110522151,0.31449878867715597,-0.26557011948898435,-0.870812947396189,0.6485906285233796,-0.5889150584116578,-0.4580267411656678,-0.04285383224487305,0.23143302462995052,-0.23173348791897297,-0.9429845968261361,0.0334156658500433,-0.6942892437800765,0.6424181829206645,-0.7101971870288253,-0.49056554678827524,-0.7742044664919376,0.9532363312318921,-0.1271623820066452,-0.7996144047938287,0.688793902285397,-0.6433160295709968,0.5107732214964926,0.1154369916766882,-0.09567829314619303,0.7881231615319848,0.39764947397634387,0.32824623631313443,-0.07496176986023784,0.49755449313670397,-0.2906111408956349,0.05984502378851175,0.4918278940021992,-0.6517064902000129,0.6168171470053494,-0.9788649757392704,-0.5699994005262852,-0.4893750445917249,-0.6876905243843794,-0.8675842839293182,-0.8354087839834392,-0.34790183464065194,0.6712968745268881,0.7241649804636836,0.4267096081748605,0.33364574098959565,-0.9781967401504517,-0.38515133736655116,-0.32162791211158037,-0.485340032260865,0.2527759484946728,-0.6157304677180946,0.20067449053749442,-0.0036285785026848316,-0.00943694170564413,0.06066125677898526,0.32767371367663145,-0.6907990351319313,-0.6216841815039515,-0.046176201198250055,-0.3951876643113792,-0.12802176270633936,-0.4015448526479304,-0.7398412660695612,-0.8580903639085591,0.29943231772631407,0.5118895024061203,-0.17836558865383267,0.738362084608525,-0.8230006243102252,-0.15345938690006733,0.15168888540938497,-0.05511444387957454,-0.5778268305584788,-0.5422125766053796,-0.8473410662263632,0.730673483107239,-0.8387747844681144,0.31787108536809683,-0.8569326945580542,-0.41611145809292793,-0.06304186396300793,-0.28005021065473557,0.3921482083387673,0.6588685470633209,0.4807322439737618,0.18101047445088625,0.34192664362490177,-0.9290345227345824,0.5332985478453338,0.5693183806724846,-0.6866488484665751,0.8578922660090029,-0.2576974662952125,-0.560136885382235,-0.4782080971635878,-0.0632184837013483,-0.23546044202521443,-0.44580173399299383,-0.11726770317181945,-0.44633678440004587,-0.16347236558794975,-0.31429538130760193,-0.8655168614350259,-0.12819271255284548,-0.668110195081681,-0.7194737391546369,0.9330590786412358,-0.32652209466323256,-0.8954599760472775,-0.5502046239562333,0.05389344738796353,0.5924338712356985,0.7676347843371332,0.32171177165582776,0.21886846516281366,-0.018847318831831217,0.7319236677139997,0.9917900841683149,-0.9724488356150687,0.558960463386029,-0.4628210123628378,0.014505526516586542,0.6557877459563315,-0.37638836260885,0.40664585726335645,0.7206031861715019,-0.2533419709652662,0.9100902685895562,-0.1925298748537898,0.38142928574234247,0.18906513042747974,0.05998104717582464,0.7096935422159731,0.8386857691220939,0.9586815014481544,-0.22475750744342804,-0.521138509735465,-0.43014174280688167,-0.9652988575398922,0.2647714647464454,-0.4087974554859102,0.456824810244143,0.8412138484418392,-0.8010483765974641,-0.675765298306942,-0.16937670530751348,-0.4158955765888095,-0.46485101571306586,-0.4122393550351262,0.7199105117470026,-0.6637178803794086,-0.6457131383940578,0.4735363954678178,-0.11939033074304461,0.09604113223031163,-0.06443037744611502,-0.27515271259471774,-0.6533191222697496,0.1856649862602353,-0.6536476239562035,-0.8974652234464884,0.5829688962548971,-0.5651029497385025,-0.431748331990093,-0.4376556817442179,0.7065255767665803,-0.7993216095492244,-0.42233837908133864,0.17864011321216822,-0.6997977178543806,-0.6924447654746473,-0.38878365186974406,-0.13883376913145185,0.59908258728683,0.1102652009576559,0.7927576736547053,0.1232925783842802,0.7117893928661942,-0.30257146898657084,0.12031657947227359,0.6314947227947414,-0.20830036187544465,0.7716894638724625,0.5553654381074011,-0.30663315718993545,-0.9871299080550671,0.8601440815255046,0.6682036775164306,0.049459087662398815,0.1966725275851786,0.6512505277059972,0.0797604494728148,-0.2945299674756825,-0.8593671228736639,-0.9961242689751089,0.4449674803763628,-0.3326374161988497,-0.9497680184431374,0.11293569579720497,0.6634189006872475,0.2025804095901549,-0.9018301698379219,-0.703376870136708,0.6814744006842375,0.9808902819640934,0.8695328645408154,-0.10916910646483302,0.25111600710079074,-0.10727132624015212,0.23302261205390096,0.8758227908983827,-0.7670978545211256,-0.8853572593070567,-0.4206122476607561,0.5221676831133664,-0.12177677173167467,0.398334177210927,0.1634316286072135,0.6193497409112751,-0.03609217517077923,-0.5998417190276086,-0.3835802339017391,-0.2140252823010087,0.6644862559624016,0.2859817370772362,-0.41290215170010924,0.1660084710456431,0.06223173160105944,-0.3712584786117077,0.6492635942995548,0.5770257241092622,-0.9533642791211605,0.5556228593923151,-0.7838435377925634,-0.2586476127617061,-0.16231042938306928,-0.22902416018769145,-0.1634147153235972,0.9128497624769807,0.22810182394459844,0.9908305001445115,0.06389015633612871,-0.38592207059264183,-0.41688372381031513,-0.6163756372407079,-0.6901346147060394,0.9717619554139674,-0.2694747895002365,-0.22788791172206402,0.893911799415946,0.9324851832352579,-0.003565914463251829,0.25324205914512277,-0.89940354693681,0.5487065301276743,0.9503847686573863,0.9822465684264898,0.6084377523511648,0.9774825843051076,-0.17448195116594434,0.8083768198266625,-0.9436553888954222,0.9308863785117865,0.2926209894940257,-0.8336407355964184,0.008445455692708492,-0.28979357704520226,-0.026342816185206175,-0.44683876307681203,-0.6237577511928976,0.22740538418293,-0.14432762702926993,-0.1732067335397005,0.4004320721141994,-0.9365245858207345,0.13445674488320947,-0.8832827880978584,-0.7095158803276718,0.5895808162167668,-0.3400770043954253,0.06895175157114863,-0.19770225044339895,0.025845720898360014,-0.7874213480390608,0.21654881536960602,0.02903448324650526,-0.8996486444957554,-0.9027685225009918,0.9801981132477522,-0.46731227450072765,0.6433190661482513,-0.618730396963656,0.03550215158611536,0.029245447367429733,-0.5566625017672777,-0.7754099043086171,0.7529590246267617,-0.09978408785536885,0.26473675668239594,-0.25403763726353645,-0.23833119170740247,-0.8115315111353993,0.11961400648579001,0.28018804360181093,0.8254312239587307,0.8211349342018366,-0.13486941158771515,-0.2291513504460454,0.5215141857042909,0.7541794232092798,-0.29491692315787077,0.4003863399848342,-0.4880668758414686,0.15499021438881755,0.0290425936691463,0.8806489030830562,0.5152964419685304,-0.6276037669740617,0.450131902936846,0.1430107206106186,-0.8895008401013911,0.8855979009531438,-0.6140220533125103,-0.34170286636799574,-0.6793274977244437,-0.08911665622144938,-0.9401559256948531,0.5864628455601633,0.2020251378417015,0.9316909932531416,-0.7527473308146,0.4875984382815659,0.17136683827266097,0.273114581592381,0.20591489598155022,-0.39672455843538046,-0.8193660350516438,0.36283773463219404,-0.9178015226498246,-0.11888423189520836,-0.6131512951105833,0.38821133552119136,0.9461789741180837,0.2388313221745193,0.3503116676583886,0.44266234431415796,0.3310931148007512,-0.27571640023961663,0.812927883118391,-0.3303244011476636,-0.8708472992293537,-0.7021146658807993,-0.39001690223813057,-0.4078410663641989,-0.7330986666493118,0.07438804395496845,-0.3877224619500339,-0.9780652159824967,0.3949407460168004,0.9676385591737926,-0.052640366833657026,0.1150879361666739,-0.4527358552441001,0.9959212802350521,0.08967754663899541,-0.007665243931114674,0.15204806020483375,0.9868724276311696,0.7340740165673196,0.2324976739473641,0.16738996002823114,-0.7397646103054285,0.28096621250733733,-0.6633389946073294,0.30207205563783646,0.7404453991912305,-0.427040814422071,-0.8933022106066346,-0.5560927004553378,0.6153928958810866,0.24908305890858173,-0.001663621049374342,-0.6739581455476582,0.2553412918932736,-0.16378341894596815,0.9159796419553459,-0.6927611120045185,-0.7001009937375784,0.17856181971728802,0.9517892557196319,0.1998146385885775,0.11879378743469715,0.9959900882095098,0.4842901276424527,-0.6068864841945469,0.07569043803960085,0.39017120050266385,0.6061175749637187,0.713097199331969,-0.1335765472613275,-0.3208619626238942,0.34481071773916483,0.42699441593140364,0.38859667256474495,-0.28591116797178984,-0.4790238458663225,0.7247146652080119,-0.03844374418258667,0.7286320314742625,0.1533365761861205,0.38076438289135695,-0.4600520031526685,-0.589033018797636,-0.20268251979723573,0.5685815303586423,-0.3839950910769403,0.011106821242719889,0.12121330434456468,0.7566226087510586,-0.4354968653060496,0.37370041524991393,-0.6023899987339973,0.20691094920039177,-0.5520075797103345,-0.20261857751756907,-0.6200138004496694,-0.6000956166535616,-0.3162337439134717,0.8073628768324852,-0.36014751391485333,-0.07258870732039213,0.1490961634553969,0.29506564466282725,0.5152640757150948,-0.3570322897285223,-0.6310757822357118,0.28742025746032596,0.4062286843545735,0.9184421231038868,-0.11595724616199732,-0.34376978036016226,0.032774017192423344,0.670382731128484,-0.21196022257208824,0.3037031637504697,-0.5217294688336551,-0.26123917335644364,-0.47906287061050534,0.8527376456186175,0.3582945168018341,-0.29783876705914736,0.5025009983219206,-0.8533737827092409,-0.7590012978762388,0.7619313285686076,-0.3653938607312739,-0.9309032685123384,-0.7881435509771109,-0.8086683312430978,0.6396493716165423,0.8272358113899827,0.4362753201276064,-0.09699211828410625,-0.5858430918306112,0.8654732718132436,0.07463284395635128,-0.18227502750232816,-0.5971868536435068,0.24739488353952765,-0.17831869749352336,0.6719836937263608,0.6882880302146077,0.22160181403160095,-0.2177929040044546,0.4364509670995176,-0.14425244834274054,-0.34053271170705557,-0.5580121572129428,-0.291481863707304,0.03454902162775397,-0.776558933313936,-0.7273800079710782,0.7594221332110465,-0.2506270590238273,-0.6677714777179062,0.4877273296006024,0.5531449713744223,-0.9254147983156145,-0.9207947924733162,-0.16390114463865757,0.18841266399249434,0.23029367811977863,-0.42587878787890077,0.10246142093092203,0.10021040448918939,0.4527449021115899,0.21074403496459126,-0.8691505319438875,0.7691729879006743,0.6018404653295875,0.016993315424770117,0.2839806363917887,-0.012185103259980679,0.7290596580132842,-0.3027798729017377,0.30592973344027996,-0.7769962451420724,0.09613630454987288,0.9472238793969154,-0.02376200631260872,-0.006044995971024036,0.0898061627522111,0.3677473175339401,0.4138872758485377,-0.3920093299821019,-0.24609347991645336,-0.9832622022368014,0.8513182657770813,-0.0982987373135984,-0.10138892568647861,-0.13418454211205244,-0.692693904042244,0.16793869389221072,-0.46530541544780135,-0.49189478484913707,0.7111362684518099,0.22885631816461682,-0.8748227776959538,0.49640983436256647,0.08551159966737032,0.3670184318907559,0.007803160697221756,0.9564964673481882,0.730590985622257,-0.26821576384827495,0.14794883830472827,0.6197510412894189,-0.4148517930880189,-0.42811397835612297,-0.333889611531049,-0.5074937012977898,0.5491685038432479,0.4874326288700104,-0.012810156680643559,-0.9114172430709004,-0.1823878400027752,0.07987646944820881,-0.9798134225420654,0.8075713878497481,0.615275664255023,-0.23531820578500628,-0.8118245815858245,-0.2459255768917501,-0.30002044374123216,-0.4496811623685062,-0.3139263717457652,0.9622880890965462,0.751766778063029,-0.5928734778426588,0.8848006348125637,-0.10912523185834289,-0.10784024046733975,0.0014921240508556366,0.4832385233603418,-0.8342675720341504,0.10183253698050976,0.6972419214434922,0.616435790900141,0.2539483914151788,0.13138916064053774,-0.7252199221402407,-0.6012992630712688,0.6023772777989507,-0.5121274064294994,-0.4592954986728728,0.41839497117325664,-0.49031829461455345,-0.3326643374748528,-0.13725643884390593,0.27900165505707264,-0.457156278192997,0.47227806271985173,0.98243866302073,-0.18415056681260467,-0.9496900062076747,0.20115817664191127,0.7843590481206775,-0.9178118356503546,-0.4379857946187258,-0.6494675115682185,0.7153237536549568,0.33837175043299794,-0.2551393546164036,-0.09161441726610065,0.709723993204534,-0.3934395117685199,0.1659883796237409,0.44232002552598715,0.6775627182796597,0.7645610319450498,0.8685808293521404,-0.17179996939375997,0.07252497132867575,0.38085926230996847,-0.7093965969979763,-0.7536290413700044,-0.7878250349313021,-0.23101395228877664,0.2737517999485135,-0.442608293145895,-0.7667540176771581,-0.9465148928575218,-0.7229959703981876,-0.17475521797314286,0.07139126909896731,0.5318552399985492,-0.22160339215770364,-0.3835590919479728,-0.7992023779079318,-0.6403331886976957,-0.33447348000481725,-0.21421461598947644,0.3253580969758332,0.35684130247682333,-0.9845298929139972,0.3457762263715267,-0.015673642978072166,0.7175165051594377,-0.31030954886227846,-0.7278983672149479,0.8893427206203341,0.7745627360418439,-0.40484901051968336,0.0323325633071363,0.36005214788019657,-0.36168559500947595,0.07776619028300047,-0.9111181749030948,-0.03268080251291394,0.40824740612879395,-0.4393134918063879,0.8687432557344437,0.7499912148341537,-0.44420941546559334,-0.8992351242341101,0.1082654157653451,0.467044735327363,-0.04042177414521575,0.8226742809638381,-0.9059046572074294,-0.5962570384144783,-0.9275000230409205,0.947282328736037,-0.9512507817707956,0.017968249041587114,0.03694960381835699,0.7592480932362378,0.13542060554027557,-0.5549096814356744,-0.9804347208701074,0.48765193670988083,0.40534417936578393,0.385058609303087,0.2225210117176175,-0.42418670607730746,-0.24309301981702447,-0.4009646428748965,0.9228263087570667,-0.8230632916092873,-0.21992551255971193,-0.08251248532906175,-0.4349716529250145,-0.8081284943036735,0.3529166937805712,0.05862531391903758,0.08442946756258607,0.7790628061629832,-0.20556099014356732,0.8652614364400506,-0.0601449916139245,-0.9765861281193793,0.7523194514214993,0.7380053400993347,0.8840178628452122,-0.5375616019591689,0.8606616053730249,-0.5596926962025464,-0.22221564082428813,-0.44867375446483493,-0.4862131988629699,0.688646568916738,-0.8846477400511503,-0.78810531552881,-0.7751964125782251,0.10161773255094886,0.15989778004586697,0.08218071097508073,-0.6912978035397828,0.6554072699509561,-0.2678766739554703,0.6702955034561455,0.781141871586442,-0.07998942770063877,-0.47282391460612416,-0.19829386100172997,-0.6503169974312186,0.7172785778529942,0.7401422532275319,0.5061013242229819,0.4241414819844067,-0.3825926026329398,-0.3047131486237049,-0.955840993206948,0.6673310198821127,-0.5168365468271077,-0.2829062882810831,-0.5097118332050741,-0.15461444947868586,0.6538101225160062,-0.5488403774797916,-0.11240612249821424,0.28767413180321455,-0.8381341616623104,0.7089166357181966,0.22387225786224008,-0.005447940900921822,0.6621034629642963,0.5314081395044923,0.30596756050363183,-0.20044830674305558,-0.6644717715680599,0.8969529527239501,-0.9166357261128724,-0.8498252625577152,0.8448807410895824,0.30538223776966333,0.01121744979172945,-0.06330458400771022,-0.5944607174023986,-0.4831251874566078,-0.37222715886309743,0.8627532278187573,0.7744509358890355,-0.012566040735691786,0.13410709239542484,-0.5825888509862125,0.8016815674491227,-0.34566944744437933,-0.44849205343052745,0.13638823805376887,-0.18525179522112012,-0.6822419292293489,0.668733392842114,-0.25848170556128025,-0.3164256354793906,-0.6485424288548529,-0.6731693060137331,-0.9694172600284219,-0.2488816250115633,-0.31369284773245454,0.5440110936760902,0.7316849492490292,0.9715535352006555,0.38711820635944605,0.6508549232967198,-0.5359476306475699,0.004211978986859322,-0.3327350225299597,-0.600867731962353,-0.7977445963770151,-0.7568685575388372,-0.6555356387980282,0.11115063447505236,0.21536658704280853,-0.40904805436730385,0.7457832954823971,0.8188865664415061,0.7236918909475207,-0.9387062001042068,0.2852915218099952,0.12924461113288999,0.16915809223428369,0.09981690999120474,-0.3780114226974547,-0.9807183537632227,-0.718607316724956,-0.27207892620936036,0.9720216551795602,-0.3302772184833884,0.016770994290709496,0.6101332292892039,0.26630520820617676,-0.9621977219358087,-0.5328916432335973,-0.6658127987757325,-0.20177525002509356,-0.1397878215648234,0.8731516413390636,-0.33699663216248155,0.4837525743059814,0.4528256105259061,-0.4754750463180244,0.2477719229646027,-0.867722115945071,0.4555571679957211,-0.3649857402779162,-0.15588008984923363,0.763469691388309,0.30669032502919436,-0.2948118085041642,0.3353650742210448,-0.4774758839048445,0.5996743366122246,0.5908731180243194,-0.9744983711279929,-0.9752156878821552,-0.7263300437480211,0.3906431710347533,0.8821620554663241,-0.700249990914017,-0.24313560081645846,0.258162553422153,-0.7707634139806032,-0.8215276235714555,-0.857084037270397,-0.2771750255487859,-0.058336632791906595,0.2548913308419287,-0.6784422718919814,-0.26770983450114727,-0.3264427240937948,-0.8748901751823723,0.23123999871313572,0.08984916005283594,-0.7737511307932436,0.2662993031553924,-0.6079841745086014,-0.2134169009514153,0.5259161596186459,0.5637744381092489,-0.5063952449709177,-0.3501362707465887,-0.47860669577494264,-0.36892616655677557,-0.5603999993763864,-0.20863493159413338,-0.7925357702188194,0.4722888804972172,-0.16813561925664544,0.29314518300816417,0.4073831751011312,0.4849474118091166,-0.25574819277971983,-0.7563821715302765,-0.5303292577154934,0.5489350953139365,-0.26948228385299444,0.6743607702665031,-0.846205779351294,0.5129626803100109,0.6331299738958478,0.11142777092754841,-0.6267133778892457,0.5694383848458529,-0.2770437472499907,0.14286070130765438,0.3572577522136271,-0.10457972576841712,0.4653260661289096,-0.1091347779147327,-0.6328470804728568,0.5470099272206426,0.3680733232758939,-0.6588705750182271,-0.706959929317236,-0.7975224452093244,-0.9280898249708116,0.4043522998690605,-0.1087535242550075,-0.8281182958744466,-0.6668420229107141,-0.8369731320999563,-0.2630579345859587,0.8206518171355128,-0.8160354206338525,0.6590895927511156,-0.8738097487948835,-0.8937817323021591,0.5685256510041654,-0.27413436956703663,0.49587135296314955,0.2669996917247772,0.974179380107671,-0.26348405284807086,0.19321750849485397,0.6360986530780792,-0.3042927533388138,-0.5018272306770086,0.5000270563177764,0.33574339421465993,0.9430577466264367,-0.795751363504678,-0.790031227748841,0.9133104654029012,-0.9713288028724492,0.7421607812866569,0.7663512285798788,0.349696378223598,0.7328697005286813,0.9853733670897782,0.30873461114242673,0.040556483902037144,-0.7012736140750349,0.8542259088717401,-0.9172048862092197,-0.41101438645273447,-0.5174924368038774,0.07282698061317205,-0.8678876729682088,-0.2790537625551224,0.4377324073575437,0.4200239381752908,0.49613651540130377,0.06498108664527535,0.39459166629239917,0.6648770668543875,-0.06971357483416796,0.5041459905914962,0.17646924313157797,-0.07578248577192426,-0.9647279195487499,0.8680555550381541,0.45646747946739197,-0.5934801870025694,0.3291474343277514,0.19624009123072028,0.734750616364181,0.2735299444757402,0.9650927535258234,-0.2662891778163612,0.8955377070233226,-0.9169493867084384,-0.11419200152158737,-0.4188955030404031,0.2747280397452414,-0.8522475063800812,-0.4058853858150542,0.1360621959902346,-0.7371873357333243,0.06455953698605299,0.0838640402071178,0.6123569011688232,0.13708601100370288,-0.5174449915066361,-0.7804856882430613,-0.638299887534231,-0.8120295335538685,-0.4126498200930655,0.7070715487934649,-0.3426880701445043,-0.6848647091537714,-0.51733777532354,-0.5729759465903044,0.29098119447007775,0.6696118381805718,0.7562985131517053,-0.9284194302745163,0.47716613998636603,0.44016892462968826,0.5959962573833764,0.8523840541020036,-0.6043383907526731,0.04922658717259765,-0.2832506448030472,0.8413948169909418,0.46793222054839134,-0.31180215161293745,0.9176961812190711,-0.0942558366805315,-0.5380833465605974,0.7715490595437586,-0.3768504559993744,0.1853200662881136,-0.3112515164539218,0.09730161167681217,0.7147308918647468,0.17152157938107848,-0.387327176053077,-0.807142062112689,-0.09622933156788349,-0.5268860245123506,0.7231949320994318,-0.36442813463509083,0.7268428662791848,-0.5576259018853307,-0.2746945545077324,-0.20644934615120292,0.17063609370961785,0.021654829382896423,-0.5786439967341721,0.4833940682001412,0.3280504746362567,0.27107133995741606,-0.7577144922688603,0.07703999290242791,-0.7277335594408214,-0.666481776162982,-0.4172640200704336,-0.0093103745020926,-0.060840283054858446,0.950012655928731,-0.9387245918624103,0.25248755188658834,0.33656068006530404,0.8611967689357698,0.6521662110462785,0.009956622030586004,-0.5244577475823462,-0.9853969970718026,-0.6337191271595657,0.8000240372493863,-0.35283440398052335,-0.04531174385920167,0.7072051041759551,0.9895914462395012,-0.353848809376359,-0.7141376072540879,-0.5452521652914584,0.022759204730391502,-0.19907465763390064,0.7725171162746847,-0.7887820126488805,-0.49484387459233403,-0.6227725632488728,-0.7502822955138981,-0.2965124510228634,0.5282871308736503,-0.5438068327493966,-0.27368712006136775,-0.22907888190820813,-0.18888231460005045,0.9231638363562524,-0.9774629394523799,0.3200950841419399,0.8515695203095675,0.7448043436743319,0.31057077925652266,0.49847064912319183,-0.06017254386097193,-0.8761993977241218,-0.3289270056411624,0.5485020577907562,0.7335797008126974,-0.7029723129235208,0.3406069600023329,-0.6257206266745925,0.5003847689367831,-0.32296964805573225,0.21986870281398296,0.34925475204363465,0.1550662531517446,-0.043583916034549475,0.30132043873891234,-0.2122187535278499,0.8477891148068011,0.8378195650875568,-0.5735897119157016,-0.4383294293656945,-0.22337967855855823,-0.2879059184342623,-0.025642501190304756,0.9657504763454199,-0.6612867871299386,-0.38123498298227787,0.434531532227993,-0.20661035785451531,0.23819432593882084,0.8036109604872763,-0.13495557708665729,0.5385342962108552,-0.3007222064770758,-0.8537676562555134,-0.835063399747014,-0.00998592097312212,0.82790666539222,-0.06688667507842183,-0.5920889596454799,-0.23215368064120412,-0.9784334427677095,-0.2863807985559106,0.6249353131279349,-0.44288257509469986,0.08376788068562746,-0.3851079405285418,0.7915427880361676,-0.5603490024805069,0.2996105602942407,-0.41024129278957844,0.47781037259846926,-0.8674352779053152,-0.7693186197429895,0.7297844090498984,-0.5450990097597241,-0.9161204709671438,-0.19009784841910005,-0.06293757865205407,-0.3923862036317587,0.8817499908618629,-0.32981148501858115,0.6098885959945619,-0.4242233205586672,0.9925303915515542,-0.8652502009645104,0.7782149072736502,0.8295563356950879,-0.1301747728139162,0.7007609847933054,-0.9806777103804052,-0.6509953574277461,0.9658966101706028,-0.8270888146944344,0.9047372271306813,0.2717662756331265,-0.023767842445522547,0.99920668406412,0.5385645269416273,0.7886973721906543,0.4983828724361956,0.4722307901829481,-0.5257030902430415,0.423939305357635,-0.7983983950689435,-0.47858082549646497,-0.5407097917050123,-0.9096645610406995,-0.3328357390128076,-0.6278105326928198,0.37330370768904686,-0.18179457681253552,0.7998113231733441,-0.714114470873028,0.31969082821160555,0.6283875820226967,0.186046389862895,0.28414335241541266,-0.012420257087796926,0.24069802137091756,0.5694808838889003,0.7018709336407483,0.4595278208144009,0.3867178466171026,0.3015194949693978,0.16529973736032844,-0.8321871841326356,0.7206936893053353,-0.37789434427395463,0.43881634110584855,-0.8596045505255461,0.25610195519402623,-0.4855481730774045,-0.26940977154299617,-0.7413298259489238,-0.632535888813436,0.7306550093926489,-0.8945203390903771,0.9002594756893814,0.0931268553249538,-0.9065004377625883,-0.36585643189027905,0.16264505637809634,-0.06598401768133044,0.8044458008371294,-0.7366507165133953,0.3572231428697705,0.9668278759345412,-0.25337264174595475,-0.10545855388045311,-0.9959619767032564,-0.2608539629727602,-0.5217600795440376,-0.18510676687583327,0.37862726068124175,-0.444793164730072,0.6185325169935822,0.7611049520783126,-0.8706605318002403,0.8293872624635696,-0.7571935378946364,0.5388167300261557,0.19971838733181357,0.9982014982961118,0.9899499113671482,0.18966211145743728,0.7002644944004714,-0.5829908968880773,0.8674144106917083,0.5111867520026863,-0.09284242335706949,0.32934940746054053,-0.05006596818566322,0.9072950831614435,0.505411674734205,0.16237302031368017,-0.7564152302220464,-0.6884426921606064,-0.818877668119967,0.4724590154364705,-0.5252205254510045,-0.2416721531189978,-0.6555506829172373,0.26432002056390047,0.6863340060226619,-0.9968949523754418,-0.5653217155486345,-0.8043789877556264,0.3288833713158965,0.983725031837821,0.9933294225484133,0.9198675015941262,0.4106082050129771,0.31066851085051894,0.8798001152463257,0.18499097041785717,0.5289324941113591,-0.32096751034259796,-0.8691420829854906,-0.419554082211107,-0.44418733660131693,0.8252093396149576,0.4070403049699962,-0.608198753092438,-0.6733930101618171,-0.29205026710405946,0.6840866548009217,0.5962813571095467,-0.4321644860319793,0.029076996725052595,-0.48700489196926355,0.45972866378724575,-0.14603474969044328,-0.7137022516690195,-0.2796160741709173,-0.5270649795420468,0.5297514270059764,0.43219310510903597,-0.9436013041995466,-0.7681868295185268,0.8219724101945758,0.057391987182199955,0.9459146368317306,0.7566798632033169,-0.7920357757247984,-0.07957718847319484,-0.05884278053417802,0.31826085364446044,0.37200444331392646,-0.9856247883290052,0.7307263063266873,0.7417415650561452,-0.307045575696975,-0.8501732014119625,0.2467588926665485,-0.5585273830220103,-0.6762110581621528,-0.5601681051775813,-0.352579842787236,-0.6218367023393512,-0.19255927298218012,0.051830997690558434,0.546075894497335,-0.3920074771158397,-0.7656382704153657,0.2494937381707132,-0.8365926840342581,-0.5320655694231391,-0.6541354274377227,-0.22613338101655245,0.9011505790986121,-0.6121050408110023,-0.28352129040285945,0.5115125710144639,-0.9917485751211643,-0.9413806032389402,0.5632898253388703,-0.9206753098405898,0.14812492579221725,0.42608081502839923,-0.8344846148975194,0.05203556176275015,0.770647537894547,0.29127599857747555,0.7748185629025102,0.08246068470180035,-0.15659187594428658,-0.4739521467126906,0.5759249981492758,-0.3975365739315748,0.9503547288477421,0.058513437397778034,-0.4104736680164933,0.7535904310643673,-0.5006747334264219,-0.9162298003211617,0.44966175872832537,-0.5092593254521489,-0.08525664499029517,0.11562697542831302,0.08545107301324606,0.5775271630845964,0.8809417122974992,-0.40662733325734735,0.2959642303176224,-0.5232818997465074,-0.23944445373490453,0.8446725043468177,-0.2074881955049932,-0.5996756870299578,-0.46996951662003994,-0.9587496882304549,0.7003711671568453,0.585836585611105,0.6956791011616588,0.667501668445766,0.5352176078595221,-0.15891548385843635,-0.9252228527329862,-0.00015748431906104088,0.5513814040459692,-0.3838447956368327,-0.7359936656430364,-0.7642858470790088,-0.2802991424687207,-0.009391707368195057,0.424182194750756,-0.41955114575102925,0.36360743129625916,-0.35899003921076655,-0.7186558996327221,0.08870151918381453,0.8629172202199697,0.9242339134216309,0.030421901028603315,0.5614357832819223,0.15426084166392684,0.8649959424510598,0.12320418981835246,-0.855081741232425,0.45210644509643316,-0.10387998493388295,0.08499157056212425,-0.7208078359253705,-0.18474725680425763,0.501593355089426,0.5348637392744422,0.6161725847050548,-0.21450199512764812,0.9240877400152385,-0.7116166991181672,0.37623295560479164,-0.7610848941840231,-0.06166574452072382,-0.6591371479444206,0.9315014639869332,0.7241279445588589,-0.06022805720567703,0.024926703423261642,-0.9302881839685142,-0.5974165461957455,0.04285072209313512,0.7375444592908025,0.23954381188377738,0.08035002183169127,0.14614611491560936,-0.5357043487019837,-0.9303029333241284,0.5562908845022321,0.8994358037598431,0.08193875709548593,0.14892541617155075,0.1888843383640051,-0.4467032290995121,0.5273221195675433,0.859639591537416,-0.3405947587452829,0.990335114300251,0.28511025523766875,0.7639493783935905,-0.7131100702099502,-0.17985324934124947,0.6982427248731256,0.09646941907703876,0.6451703053899109,0.9385418226011097,-0.7674887496978045,0.8350486438721418,0.9487681314349174,0.8121047560125589,0.8563802787102759,0.7719267848879099,-0.4651028416119516,-0.8369910824112594,-0.3484915751032531,-0.013776239473372698,0.23650245973840356,0.9403733923099935,-0.022417589090764523,-0.7128526107408106,0.3298017391934991,-0.7841735165566206,-0.3032337916083634,-0.468232000246644,0.9319098610430956,0.5213983291760087,0.07259711110964417,0.22052057273685932,0.20930562494322658,-0.18146959319710732,0.16223930520936847,0.22788542741909623,-0.39850296219810843,-0.6516775586642325,0.5647769076749682,-0.9705104334279895,0.5573366261087358,-0.17249075789004564,-0.9071558280847967,0.8135290634818375,-0.6420169929042459,0.5357061829417944,-0.5843329885974526,0.677436089143157,-0.4906522021628916,-0.6376241538673639,-0.300614177249372,-0.40479574585333467,0.7772127147763968,0.809279948938638,0.9996690582484007,-0.4539962443523109,0.9348955051973462,-0.16083244187757373,-0.548851874191314,0.675711031537503,0.6687564291059971,-0.07669251831248403,0.6099998177960515,0.2836856902576983,-0.5344376191496849,0.9500104491598904,0.08977686148136854,0.6302427710033953,0.04938019486144185,-0.713450210634619,0.05052389297634363,-0.7625415935181081,-0.1784933190792799,0.9338616016320884,-0.40130555955693126,-0.9900631657801569,0.4867197289131582,-0.03701496310532093,0.6117289392277598,-0.9493660042062402,0.22543717408552766,0.8494420042261481,0.4270869605243206,0.3611065377481282,-0.7469742707908154,-0.69529435550794,0.5897411392070353,0.5896575008518994,-0.9092711415141821,0.5074550155550241,-0.837128350045532,-0.5399512215517461,-0.8617359306663275,0.6263742153532803,-0.515194658190012,-0.8536420715972781,-0.09049524925649166,0.8216347573325038,0.32228359719738364,0.7202629004605114,-0.6097543961368501,-0.968064530286938,-0.23388359509408474,0.6878902548924088,0.1469449531286955,-0.09717699931934476,0.25776134245097637,-0.6064642183482647,-0.2340918742120266,0.33628238178789616,-0.8030726169236004,-0.37266570096835494,-0.7315295413136482,-0.5524414111860096,-0.6849148855544627,0.8466056818142533,0.38524085469543934,0.850765083450824,-0.8376203351654112,0.2655197544954717,-0.8255913741886616,0.2615279695019126,0.4470059722661972,-0.6571616502478719,-0.2929693083278835,0.24105232022702694,-0.8371229590848088,-0.49244555039331317,0.5362534327432513,-0.8636887641623616,0.5796175180003047,-0.3214028659276664,0.33726894157007337,0.715457203797996,-0.8698232681490481,0.09266341431066394,-0.23822728637605906,0.13915599370375276,-0.7167846085503697,0.297258828766644,0.002829388715326786,-0.8000925038941205,-0.5201861164532602,-0.7434372990392148,-0.6417243625037372,-0.9954119147732854,0.3080241782590747,0.9072616337798536,0.6471156412735581,-0.9020528481341898,-0.7351492522284389,0.32412153109908104,0.11174243502318859,-0.6129489257000387,0.3461327822878957,-0.36315613752231,-0.10776465246453881,0.8376316307112575,0.5119629171676934,-0.12643718579784036,-0.7052751970477402,0.08816719567403197,0.7005002815276384,0.003111956175416708,0.8313839915208519,-0.07219616742804646,0.10521539999172091,-0.7390753724612296,-0.7652669143863022,0.5009675854817033,0.2404454117640853,0.8865751577541232,0.9534603557549417,0.7212093342095613,0.40947900526225567,-0.7969562411308289,0.766060097143054,-0.974897294305265,0.5093538770452142,0.8794417581520975,0.40919555304571986,0.3105959575623274,0.31324730021879077,-0.7556419936008751,0.45446627121418715,-0.5155737116001546,0.7610499793663621,-0.3751147664152086,-0.8318759757094085,0.041473221499472857,0.0066083334386348724,-0.15248855343088508,-0.2980834860354662,-0.7456836006604135,0.7539643300697207,-0.9990794453769922,-0.8743672338314354,0.09145016595721245,0.17522513633593917,0.31573108956217766,0.20174603629857302,-0.2601841972209513,-0.765989791136235,0.06793892197310925,-0.33398381853476167,0.21448886627331376,0.9394450220279396,-0.5348579427227378,-0.9499843716621399,0.7560856551863253,-0.41595389461144805,0.9630635315552354,0.09867105353623629,0.6476204805076122,-0.2856868728995323,-0.30886448826640844,-0.8604761841706932,-0.056173878721892834,0.48698465060442686,0.3900466854684055,0.98278279742226,0.3738485989160836,-0.05138856591656804,-0.8484838786534965,0.31015517795458436,0.36197499092668295,0.7082293862476945,0.6773554063402116,-0.005043125711381435,0.8300228039734066,-0.014329835772514343,-0.1771277291700244,0.3977524880319834,-0.09701274242252111,-0.10821075458079576,0.42969909543171525,0.9453182518482208,0.8938330854289234,0.5100680845789611,-0.0182656804099679,0.6105810590088367,-0.6917771594598889,0.2149971998296678,-0.6460319315083325,-0.6450515990145504,-0.24881606362760067,0.5032648267224431,-0.1150079807266593,0.10559266433119774,-0.405771744903177,0.6765135671012104,-0.5220536435954273,-0.34592880588024855,0.2660117666237056,0.905647985637188,0.08131449203938246,-0.8025982538238168,-0.10465208068490028,-0.830177437979728,0.9214976564981043,-0.8458133116364479,0.2063638144172728,0.17566956020891666,-0.1413863250054419,0.47489242907613516,-0.7585832988843322,-0.27383132046088576,0.32054223446175456,-0.34879635088145733,-0.1478627659380436,-0.9833750585094094,0.19186229538172483,-0.15648938110098243,-0.18168770195916295,0.9774885470978916,0.39363227179273963,-0.9484140882268548,-0.5599933047778904,-0.06612443225458264,0.5482720518484712,-0.5329920435324311,0.055075133219361305,0.18012713408097625,-0.2996250740252435,0.40539759770035744,0.22728148940950632,0.2441126313060522,-0.46534927375614643,-0.8998657241463661,-0.6499592592008412,-0.5991117344237864,0.13527051592245698,0.8550367541611195,-0.08620795467868447,0.24386201985180378,-0.5725613869726658,-0.8096566502936184,-0.8212326560169458,0.9114436083473265,0.6407050471752882,-0.5214638337492943,0.5097389896400273,-0.18909349385648966,-0.8604215704835951,-0.22641672985628247,-0.7918177000246942,-0.3146357173100114,0.8331041801720858,-0.7470360090956092,-0.33099083323031664,-0.5399451260454953,0.7928531798534095,0.5301215457729995,-0.3405254976823926,0.6765460488386452,0.9642459782771766,0.7032564873807132,0.576017027720809,-0.9829067601822317,0.7122483118437231,-0.7068907795473933,0.23457260243594646,-0.4162765680812299,-0.38819903461262584,0.11972906673327088,-0.9916289104148746,0.8232821500860155,-0.6742191119119525,-0.13315132446587086,0.4597190488129854,-0.15278278850018978,-0.9728132411837578,0.44659607438370585,0.8945022393018007,0.8266051691025496,0.2692267056554556,-0.5452324566431344,0.5814847713336349,-0.49202753929421306,-0.8936978694982827,-0.5009639919735491,0.2643384044058621,-0.8815735378302634,-0.7409587819129229,0.6146419374272227,0.5716432072222233,-0.22185096982866526,0.399069441948086,0.033449502661824226,-0.09627046529203653,0.3032754482701421,-0.9452821775339544,-0.5794287519529462,-0.728959544096142,0.5554079837165773,0.676124510820955,-0.7133212108165026,-0.8507991274818778,-0.733902623411268,0.6770618367008865,-0.5036274055019021,-0.9680511951446533,-0.3733801362104714,0.861155207734555,-0.8076537819579244,-0.7744978596456349,0.15517478855326772,0.23512819921597838,-0.9932936923578382,0.1859485493041575,-0.6401834851130843,0.22059939056634903,0.9252293067984283,0.8989740055985749,-0.15567042725160718,0.9346193950623274,-0.19845041492953897,0.022791218478232622,0.671039723791182,0.8048276701010764,-0.41562735056504607,0.4470599885098636,-0.6283127353526652,0.792387368157506,0.28706462401896715,-0.45241375220939517,0.07951158285140991,0.05042943125590682,-0.017578987404704094,-0.7823488223366439,-0.8971514906734228,0.9393063187599182,0.22885475307703018,0.2675168588757515,0.15105298440903425,-0.08347932947799563,-0.7452324512414634,0.5898463251069188,-0.04684080928564072,0.807579433079809,0.8003873038105667,0.4508210518397391,0.3807185962796211,0.8534130863845348,-0.22103584557771683,0.38453584304079413,-0.3787210681475699,0.6427403930574656,-0.0055673858150839806,0.7490282352082431,-0.7471070401370525,0.49509112210944295,0.3325706268660724,-0.9042126229032874,0.36041508987545967,-0.23203002475202084,-0.8699987926520407,0.5907113743014634,-0.00020971940830349922,0.6576413931325078,0.2278211722150445,0.17525741504505277,0.5097937858663499,-0.5283710663206875,-0.9607932926155627,0.5490066586062312,0.5604265430010855,-0.322815814986825,0.07403412880375981,-0.1814263630658388,0.40833998611196876,-0.821490865200758,-0.2873599329032004,-0.30305848363786936,0.6782504059374332,-0.4175163176842034,0.9652336980216205,0.8621039865538478,-0.30006881104782224,-0.7336834706366062,0.6764943818561733,0.5400975118391216,0.8948571849614382,0.9295933907851577,-0.45428974321112037,0.026866131462156773,-0.5558795193210244,-0.28657396975904703,0.5814288682304323,0.08112588757649064,-0.9417549641802907,-0.5953254937194288,-0.5626215101219714,-0.04855641582980752,0.24024472245946527,0.08021570788696408,0.810445690061897,-0.20426310412585735,0.2537131141871214,0.2948767030611634,-0.7172143161296844,-0.5445460667833686,0.18820269918069243,-0.012261690106242895,-0.08157974760979414,0.2014585849829018,0.325480661354959,-0.4581396062858403,0.9782340894453228,0.9840014060027897,0.16811696533113718,0.6780841932632029,0.4497845876030624,0.10733283590525389,-0.4871426494792104,0.9913057591766119,-0.44129093596711755,-0.119776192586869,0.6755670341663063,0.5136576746590436,0.3978926995769143,-0.9796237233094871,-0.772130114492029,0.18347276048734784,0.04668324859812856,-0.4023387124761939,0.13140704995021224,0.7382502336986363,0.5674198498018086,0.17637862917035818,-0.48022512812167406,-0.18354218546301126,-0.661554598249495,0.544182788580656,0.5943080713041127,0.15567895211279392,-0.5018635839223862,0.4482006444595754,0.8026464283466339,0.5505830734036863,0.4190239333547652,0.7155351382680237,0.35618785209953785,-0.03036689618602395,-0.28834734903648496,0.8852438069880009,-0.6609916905872524,0.6308796326629817,0.7096441499888897,-0.6974936933256686,0.39495639549568295,0.07116135163232684,0.006883586291223764,0.13474441412836313,-0.14121635258197784,-0.007010570261627436,0.661143237259239,0.8943741000257432,-0.9698388734832406,0.39489231910556555,0.4754248461686075,-0.1724849445745349,-0.0752633954398334,0.9262985829263926,0.4445761605165899,-0.3728042230941355,-0.4444282674230635,0.7372273723594844,-0.931076982524246,0.6082728793844581,-0.9046377278864384,-0.9218781418167055,0.9133214275352657,-0.5926476288586855,0.9744323920458555,0.0472411154769361,0.2750229323282838,0.8144331234507263,0.8472183221019804,-0.3710937616415322,-0.9859134368598461,0.5371713801287115,-0.900866970885545,0.4355865241959691,-0.8281190213747323,0.6414179648272693,-0.3467264981009066,0.0757004888728261,-0.6699463343247771,-0.37943606497719884,-0.20585109619423747,0.49615645967423916,0.8670376213267446,0.5023782406933606,0.05046175606548786,-0.5928421407006681,-0.1752464072778821,-0.0456237867474556,-0.9871592624112964,0.6083711683750153,-0.2575644631870091,0.6104890992864966,0.34620449459180236,-0.28544256556779146,-0.5298832859843969,-0.04261593008413911,-0.1721483119763434,0.20079674804583192,0.6353081995621324,0.20073819672688842,0.48863357678055763,-0.2637925576418638,-0.5381706585176289,0.14623159216716886,-0.26536174723878503,0.5955179245211184,0.22741845529526472,0.926169297657907,0.057103194296360016,0.6176816201768816,0.9132609656080604,-0.8467899616807699,-0.2978371623903513,-0.7206441089510918,0.8804393401369452,0.9873441527597606,0.4616378196515143,0.8415915914811194,0.053963910322636366,-0.34213631553575397,-0.4163544587790966,0.8774909116327763,-0.45910290302708745,-0.8135508857667446,-0.805571376811713,-0.39438641956076026,0.08853016328066587,-0.22321944870054722,-0.6436004526913166,-0.7318227449432015,-0.17158833099529147,0.3802210674621165,-0.3937453720718622,-0.480693690944463,0.9035464548505843,-0.13118422031402588,-0.42592442221939564,-0.7443103506229818,-0.6217822013422847,0.6531425435096025,-0.1752526704221964,-0.3632789463736117,-0.03523615188896656,0.1581048797816038,-0.06944055575877428,-0.3596281912177801,0.11198842199519277,0.7209895984269679,-0.5729889497160912,0.18714224733412266,-0.1320372656919062,0.68645712826401,-0.8856363468803465,-0.38829124439507723,0.08197344886139035,-0.05330975214019418,0.23959168186411262,0.24690273916348815,-0.9852517335675657,-0.07233476592227817,0.19866611016914248,-0.5591115960851312,0.31613023672252893,0.8914233478717506,0.2247421988286078,-0.9635228337720037,0.18074093433097005,-0.49403548426926136,0.97900924179703,0.015285917092114687,-0.16430930700153112,0.5858620060607791,0.5450141974724829,-0.6624288237653673,-0.025716074742376804,0.9714774806052446,0.6451524123549461,-0.9294108878821135,0.25689177541062236,0.7309049624018371,-0.9776873681694269,-0.6834008367732167,0.7658703760243952,-0.7794715939089656,0.4370459741912782,-0.35161706898361444,-0.7434951881878078,0.4371748184785247,0.3163281646557152,0.9574345606379211,-0.19524063589051366,-0.23766340967267752,0.22011143900454044,0.036151254549622536,-0.7004376486875117,0.4926176001317799,-0.9189348467625678,-0.4824373605661094,0.793212279677391,0.4963382054120302,0.4697578577324748,-0.47621703101322055,0.03427017666399479,-0.4419223442673683,0.6402225317433476,0.542399677913636,0.8860853123478591,-0.10203268984332681,-0.2945520104840398,0.832479344215244,0.38144507445394993,-0.6424736473709345,-0.26525553734973073,0.3190514952875674,-0.18452059710398316,-0.8119322778657079,0.7913955291733146,0.8348256964236498,-0.8575787446461618,-0.5602336367592216,0.6615128149278462,-0.30151078244671226,0.44522573985159397,-0.8874685489572585,0.38580219307914376,-0.610573539044708,0.053856884595006704,-0.4840669007971883,0.6017499286681414,0.4104245509952307,-0.6386259444989264,-0.7414731159806252,0.9278060556389391,-0.9739421056583524,0.5512468698434532,-0.1961505627259612,-0.584806963801384,-0.252788448240608,0.9959433977492154,0.18899418087676167,-0.9740267400629818,0.8691931678913534,0.10163428261876106,0.5585642796941102,0.7222577393986285,-0.932783589232713,0.6124157034792006,0.466491024941206,0.9973022132180631,0.6105959895066917,0.8198999804444611,-0.05516338301822543,-0.08225355437025428,0.5151429404504597,0.9749731090851128,-0.12824204936623573,0.0360813713632524,-0.09640775853767991,-0.3510560477152467,0.2646190905943513,-0.5816295333206654,-0.7456352417357266,0.5463228677399457,0.8910232959315181,-0.19835750246420503,-0.7320502582006156,-0.6590797370299697,-0.5916367559693754,0.6574420458637178,-0.6177979870699346,0.21562210377305746,0.3618142856284976,0.5329939238727093,0.8589687622152269,-0.06992720207199454,-0.7290301895700395,0.1642913008108735,-0.34255609568208456,-0.8480813093483448,-0.9215754298493266,-0.6618107678368688,0.8409466478042305,0.3092084336094558,-0.8370275814086199,0.8227653354406357,-0.3552345293574035,0.5007393541745842,-0.010966881178319454,0.0672161690890789,0.5999187231063843,-0.4043948664329946,0.370537631213665,-0.041247852612286806,0.31921734288334846,-0.4041416305117309,-0.94338104641065,-0.8248520391061902,-0.5664102346636355,0.585431962274015,0.9207571381703019,0.10863329004496336,-0.6503040459938347,0.42387278052046895,-0.37436768505722284,0.27836149791255593,0.7048108144663274,0.6474560764618218,0.949906696099788,0.6355293332599103,-0.3623144165612757,-0.22903697611764073,0.7160762455314398,0.6503254105336964,0.8786401213146746,-0.15999572351574898,-0.8822603807784617,0.20293660880997777,-0.7775842826813459,-0.3888991279527545,-0.21859905635938048,0.7749978192150593,-0.9605248258449137,0.8877236051484942,-0.251964726485312,-0.6609400743618608,-0.7401900570839643,-0.950142826884985,0.8185875080525875,-0.5122145405039191,-0.9773577121086419,0.6373418807052076,0.6081456830725074,-0.5279445424675941,0.10696399956941605,-0.9220354417338967,-0.0020500407554209232,0.5951492204330862,0.5667299586348236,-0.7647115751169622,0.43149794545024633,0.16677966294810176,0.59053201880306,0.4849801855161786,-0.41849799593910575,0.4077440104447305,0.12873321305960417,-0.3618802255950868,0.455697616096586,-0.9183632824569941,0.45347690070047975,-0.6413713712245226,0.7503926041536033,-0.08225624496117234,0.6128855058923364,0.25585147831588984,-0.21660418109968305,-0.7500999015755951,0.4391064941883087,0.755712743382901,-0.763000669889152,0.5501418593339622,-0.4846540139988065,-0.3962432169355452,0.08507877308875322,-0.12469718884676695,0.30529223661869764,-0.061347284354269505,-0.8243829063139856,0.3561393297277391,0.5888935653492808,0.8791723474860191,-0.8627620986662805,-0.6931361821480095,-0.3317232122644782,-0.6732799988240004,0.13021562434732914,-0.027223132085055113,-0.503453906159848,0.22415574779734015,0.3234721883200109,-0.17688947962597013,0.15892690978944302,0.7723904303275049,0.8425339157693088,0.9259397047571838,0.22253127116709948,-0.991008450742811,-0.2914985241368413,0.006054122932255268,0.23330091312527657,-0.5998707539401948,-0.660106657538563,0.10624972078949213,-0.0034746872261166573,0.16416331753134727,-0.4679586230777204,0.32978134509176016,-0.883190349675715,0.3187460438348353,-0.6275604576803744,-0.26008339459076524,0.2841151379980147,0.2196294623427093,-0.14407806703820825,-0.10925321793183684,-0.06391032133251429,-0.7427381086163223,0.45175417186692357,0.8949635759927332,-0.9764833361841738,0.8836925947107375,0.7909167045727372,-0.9146878044120967,0.051855976693332195,0.6906299022957683,-0.021374714095145464,0.7001109407283366,0.647331312764436,-0.9516720022074878,0.07294845767319202,0.8871516035869718,-0.237827455624938,-0.9643397103063762,0.1879923059605062,0.07072739256545901,0.029083429370075464,0.7070749262347817,-0.7471262817271054,0.28739726170897484,-0.3805942772887647,-0.3925993852317333,-0.7715131132863462,0.7194705312140286,-0.9442821755073965,0.09872621763497591,-0.0631811204366386,-0.5689332238398492,0.8031478277407587,-0.24751195078715682,0.9508347469381988,-0.8927106475457549,0.14883196586742997,0.5661807954311371,0.1929622725583613,-0.7790446230210364,0.6469536903314292,0.6957068033516407,-0.9017764874733984,0.2860512868501246,0.502328232396394,0.3990192371420562,-0.03467956278473139,0.6250824057497084,0.17010537115857005,-0.47846070351079106,-0.04955832799896598,-0.14157208427786827,0.05250960262492299,-0.7660489864647388,-0.14936236897483468,0.39504910400137305,-0.8045750013552606,-0.019836070481687784,0.21703186118975282,-0.7135431943461299,0.43644550908356905,-0.6932566058821976,0.8443428319878876,-0.4969265013933182,0.7038750345818698,0.6393184172920883,-0.6674026534892619,0.22456656070426106,-0.9899172629229724,-0.7613318213261664,-0.8829011460766196,-0.6098086065612733,-0.3541773562319577,-0.8682664697989821,-0.28342937119305134,0.3827787581831217,-0.4229597123339772,0.804855368565768,-0.6386727364733815,0.09547656122595072,-0.364500870462507,0.7990943612530828,-0.19166144262999296,-0.01644335500895977,0.49677601736038923,0.13483757665380836,-0.7623820984736085,-0.4014927423559129,-0.6316727460362017,0.9052973208017647,0.583005151245743,0.9926857128739357,-0.07575477194041014,-0.0482055195607245,-0.08515909872949123,-0.24278873298317194,0.5744650196284056,0.35461536375805736,0.3270832314155996,0.5237913890741765,-0.13560280669480562,0.7194940871559083,-0.5620842846110463,-0.5433180402033031,0.4927823767066002,-0.2973740086890757,-0.6507109776139259,-0.05570288794115186,0.054023947566747665,0.4936754168011248,0.20045317988842726,0.7154982970096171,0.4308549272827804,0.3607801762409508,-0.12353417463600636,0.3565440932288766,-0.2209880747832358,0.5938360253348947,0.618371756747365,-0.6505870968103409,0.4258501725271344,-0.7110825665295124,-0.14037886634469032,0.0890313652344048,0.8973112688399851,-0.1746040233410895,-0.6524551413021982,0.03838605899363756,0.8782682633027434,-0.7546447794884443,0.176712891086936,0.6286733108572662,0.5047999676316977,0.8438122160732746,0.07123795617371798,-0.7789223273284733,0.4202282903715968,-0.6973751969635487,0.18731738300994039,-0.6663895407691598,0.37534261820837855,-0.38755986420437694,0.15875795437023044,-0.7681051343679428,0.7936223391443491,0.7210932346060872,0.6697072773240507,0.9056999473832548,-0.4272907176055014,-0.7617476894520223,0.9131415947340429,0.8280990598723292,-0.2603027718141675,-0.3109265002422035,-0.8341173087246716,-0.8955583451315761,0.24067511316388845,0.5225000102072954,0.01956264255568385,-0.07950304914265871,0.9668370960280299,-0.7123279762454331,0.5657578562386334,0.09023373061791062,-0.13423724193125963,0.9490629970096052,-0.13694390375167131,-0.9373007901012897,0.33466550847515464,-0.39253170043230057,0.37059836462140083,0.3990089478902519,-0.6572823962196708,0.6957055968232453,0.45488686114549637,-0.1346752978861332,-0.9742525867186487,-0.209871097933501,-0.19849897315725684,0.08766210172325373,-0.7727719093672931,0.1605320810340345,0.035381526220589876,-0.4499670248478651,0.25115704629570246,0.012380640488117933,-0.9857792905531824,-0.4919539075344801,-0.2528146030381322,-0.37623216304928064,-0.9237999771721661,-0.6721349018625915,-0.3617381355725229,0.19854692555963993,-0.9781696540303528,-0.6879585282877088,0.2238358990289271,0.22433458967134356,-0.31268390314653516,0.21030333079397678,0.24709279369562864,0.2561744097620249,-0.2944575473666191,0.6834662728942931,0.7922603115439415,0.8113230359740555,-0.6650653053075075,-0.9905970967374742,0.6269503361545503,0.9197586947120726,-0.43433923041447997,-0.34379197750240564,-0.9903178913518786,-0.8434469811618328,-0.45134211145341396,-0.7966348826885223,-0.7405614615418017,0.7638834617100656,-0.8135685147717595,-0.27357646729797125,0.47905062325298786,0.8632670855149627,-0.9032225627452135,0.7842515525408089,-0.048308946657925844,-0.22469417052343488,-0.3927761595696211,-0.6023861118592322,-0.30905498331412673,0.9172519450075924,0.4749879674054682,-0.9279438070952892,-0.3556730290874839,0.09730256535112858,-0.4702579937875271,0.525957862380892,0.6707579335197806,-0.8571657668799162,-0.810269030276686,-0.46952385269105434,-0.06775815412402153,0.6402436359785497,0.25055202981457114,0.7278411919251084,-0.39271680917590857,0.285178333055228,-0.17225530138239264,0.16038471087813377,-0.30314905289560556,0.8470374504104257,-0.26630558259785175,0.38030387833714485,-0.7828177316114306,0.22631411021575332,0.7429568325169384,-0.33062948519364,0.23919732961803675,-0.29062457708641887,-0.7371540758758783,0.041986897587776184,-0.9722441863268614,-0.11844045389443636,0.8108304566703737,0.3350730910897255,0.768284366466105,0.7229044553823769,-0.8204872482456267,-0.7369245598092675,0.014432654716074467,-0.8761356412433088,-0.5672142286784947,0.22438288806006312,0.5069639650173485,-0.5739592663012445,-0.8025297918356955,0.8857361353002489,0.19821641827002168,0.8597904187627137,0.1468457612209022,0.176882510073483,0.4856068226508796,0.44137994665652514,0.14523067232221365,0.4935870422050357,-0.428253972902894,0.5193302514962852,0.6288030697032809,-0.08924344554543495,0.8249681438319385,-0.0327258100733161,0.4737761518917978,-0.12144514359533787,-0.4753618356771767,-0.013477970845997334,-0.9903662442229688,0.7825748277828097,-4.950491711497307e-05,-0.9235671036876738,0.21255780337378383,0.8917965083383024,-0.28115466237068176,0.9004467618651688,-0.7046352312900126,-0.20827726228162646,-0.6696440693922341,0.34664287930354476,0.9500269768759608,-0.9372467831708491,-0.8826097445562482,0.32570774341002107,0.17878167098388076,-0.8510852134786546,0.4575216327793896,-0.6620045360177755,0.20030094031244516,-0.5626419042237103,0.5755962808616459,-0.25492706010118127,-0.01051727682352066,0.1781090865842998,0.3285697419196367,0.39828492142260075,0.9765863004140556,-0.27157428627833724,-0.8434610390104353,-0.7546991468407214,-0.05281035276129842,-0.24727273266762495,0.8636938207782805,0.4419477670453489,-0.041733840480446815,0.1871473342180252,-0.1493376111611724,-0.7793836402706802,0.3095575007610023,0.7434689342044294,0.1177613171748817,0.6286286958493292,0.32947571156546474,0.5495016947388649,0.6559360236860812,0.9282911662012339,-0.3788200472481549,0.7192625510506332,-0.14803288877010345,-0.32823301246389747,-0.2148227277211845,-0.8729075747542083,0.020766183733940125,-0.7997855967842042,-0.12374304048717022,0.5732098403386772,-0.9037300893105567,-0.5700932065956295,-0.10869799321517348,-0.18868062691763043,-0.9550234088674188,-0.3363170917145908,-0.8565102792344987,-0.36295111989602447,0.9346315590664744,-0.5848287111148238,0.198394191917032,0.5786533211357892,0.5123768183402717,-0.3586225500330329,-0.8991941688582301,0.6173013015650213,-0.7658427115529776,-0.009329174179583788,-0.1207927200011909,-0.9329001740552485,-0.10093215899541974,-0.5338043966330588,0.6150840106420219,-0.22383855283260345,0.2576581835746765,-0.7318411064334214,0.08288890030235052,0.41385334450751543,-0.5550971087068319,0.39356809109449387,0.5422158162109554,0.21329022850841284,0.0804632124491036,0.38272984651848674,0.42120395693928003,0.07205913821235299,-0.3111674268729985,0.920545669272542,-0.5404723263345659,-0.920089518185705,-0.9177488810382783,0.37672044709324837,0.6907034227624536,-0.6552131683565676,0.39413671707734466,0.5133494604378939,0.8998691951856017,-0.9056209293194115,-0.6896516107954085,0.4110439899377525,0.4975191564299166,-0.08086543716490269,-0.8866593576967716,0.6362673905678093,-0.6193540152162313,0.3540800898335874,0.04896910395473242,0.37310444796457887,-0.9556691371835768,-0.0384564520791173,0.23434142768383026,0.6925825159996748,0.07370593212544918,-0.2530031013302505,0.2655236106365919,-0.5490014087408781,-0.5305846473202109,-0.10974636906757951,-0.11489156354218721,-0.16335758799687028,-0.14335490064695477,0.7498617190867662,-0.34253522707149386,-0.08169931452721357,0.8105778093449771,-0.9845097130164504,0.9130038735456765,-0.014704677741974592,0.1856187442317605,-0.7707499237731099,0.36353982938453555,-0.6320029590278864,-0.012303827796131372,-0.38375884387642145,-0.36219156300649047,0.837227990385145,-0.6673636962659657,-0.32698790123686194,-0.7548496732488275,0.047384852077811956,0.7274553291499615,0.6384545657783747,-0.4746674573980272,-0.47383121494203806,-0.6602658457122743,-0.703718529548496,0.21891460847109556,-0.7307309927418828,-0.01627600658684969,0.6834593703970313,0.5617588348686695,0.2909314716234803,-0.622148537542671,-0.543725605122745,-0.8787432014942169,-0.22814604127779603,0.5113697052001953,-0.36796573689207435,0.8737110164947808,0.6388532901182771,-0.2783754984848201,-0.36199261900037527,-0.4413808844983578,0.22977416962385178,-0.3637409065850079,0.17102464241907,-0.8567499974742532,0.2999905967153609,-0.2757780668325722,0.18868539622053504,-0.8354721828363836,-0.06908987881615758,-0.2961643752641976,-0.5588518921285868,-0.16915237670764327,0.21192386094480753,-0.42282401118427515,-0.36300079291686416,-0.9082661392167211,-0.14497080398723483,-0.4359258688054979,-0.9323762441053987,0.13403103919699788,-0.3628439921885729,-0.4168004132807255,-0.8961126706562936,-0.6826609834097326,0.3813722999766469,-0.8034513969905674,0.4768071658909321,-0.25018671713769436,-0.8839316768571734,-0.3844548277556896,-0.14747169241309166,0.7085858751088381,0.0411820188164711,-0.6008951789699495,-0.7350821304135025,-0.5188455837778747,0.8099197237752378,0.03151403833180666,-0.9833070347085595,0.3297526012174785,0.26485686050727963,-0.3056009616702795,0.13271771371364594,0.5719106961041689,-0.8955282941460609,-0.43310984782874584,-0.9675156637094915,0.08075004117563367,0.25834475783631206,-0.5461724977940321,-0.3411487923003733,0.41473761945962906,0.8148372825235128,-0.17720158537849784,-0.3431614129804075,0.6043572453781962,-0.5406507570296526,0.0813072151504457,0.9918601703830063,0.10003489395603538,-0.8659832165576518,0.02069740602746606,-0.47163572488352656,0.02990152733400464,0.12774486420676112,-0.5343465968035161,0.8103916738182306,0.6108189970254898,-0.5900619057938457,-0.28251476772129536,0.8162028789520264,-0.6859707469120622,0.3623306625522673,0.35797011014074087,-0.9095804011449218,-0.2616472258232534,-0.8599099670536816,-0.8113460838794708,0.8167926878668368,0.9259154191240668,-0.6649286826141179,-0.596330885309726,-0.21706612408161163,-0.4190519405528903,-0.978997178375721,-0.2795210243202746,0.7026186850853264,0.017070093657821417,-0.9725119997747242,-0.21316941129043698,-0.2434019260108471,0.1321014012210071,-0.06435975339263678,-0.15318400412797928,-0.13419045228511095,-0.1443762481212616,-0.43431576108559966,0.9384783343411982,0.6831469247117639,-0.6889373981393874,0.501709264703095,0.17825461411848664,-0.06799476314336061,0.39315111422911286,-0.9293067939579487,-0.2230268227867782,0.3110447255894542,0.24830980971455574,0.6162505899555981,0.4971342580392957,-0.22968265367671847,-0.7780910786241293,0.21897209296002984,-0.4108138522133231,0.18038993934169412,0.6317543527111411,-0.5804077731445432,0.5665249242447317,0.3344844323582947,-0.5806820280849934,0.5512405908666551,-0.9194864369928837,-0.7067394605837762,-0.14247586857527494,-0.43647734308615327,-0.7694921907968819,0.5752752120606601,0.30123509699478745,0.7164341351017356,-0.22768781473860145,0.909400274977088,0.6318178661167622,-0.8670501774176955,0.5161311174742877,0.136294259224087,0.8312096558511257,-0.3510709390975535,-0.6577326776459813,-0.41683161398395896,-0.6379399676807225,-0.29057903261855245,-0.21369670378044248,-0.32240127120167017,0.2870806218124926,0.8882767837494612,0.22929471032693982,-0.02896473230794072,-0.30129029229283333,-0.03157694265246391,-0.8142357585020363,-0.7557565220631659,0.20551275741308928,-0.19220604514703155,0.8484249580651522,0.6021838188171387,0.36862569488584995,-0.28163982508704066,-0.35927664488554,-0.2375745354220271,-0.4434683467261493,0.9984444351866841,-0.17375346552580595,-0.46164221316576004,-0.15560040809214115,0.524332475848496,-0.7568662599660456,-0.13568610791116953,0.7981779961846769,0.9441311047412455,-0.40797032229602337,-0.7346248929388821,-0.151753731071949,0.39203556161373854,0.015283497516065836,0.9285476878285408,-0.21252578916028142,0.45791319804266095,0.8914430923759937,0.6480781943537295,0.4002411514520645,-0.8633097722195089,0.8003466953523457,-0.5015130997635424,-0.16406820062547922,0.07689589029178023,0.6822532773949206,0.27679218212142587,-0.03165647713467479,0.19303444819524884,-0.8616675226949155,0.4725433010607958,-0.8796080867759883,0.7700655520893633,-0.4305134257301688,-0.24717776384204626,0.4748525540344417,-0.38151560816913843,-0.16932275984436274,-0.9651276106014848,-0.165889298543334,0.04086564062163234,-0.29175740480422974,-0.4208556227385998,0.6410505408421159,-0.7293829103000462,0.7868383410386741,-0.8537315232679248,-0.27798039838671684,-0.5527744726277888,-0.5125453397631645,0.29845202434808016,0.706669142935425,-0.29932313598692417,0.4030050183646381,0.610996778588742,-0.1509481305256486,-0.9745122264139354,-0.4311699694953859,0.736637610476464,-0.7579063703306019,-0.15994279412552714,-0.06639527576044202,0.5615771221928298,0.5677601471543312,0.8589264727197587,0.13714660797268152,0.7349037658423185,-0.8408797490410507,-0.5517276241444051,0.9493795935995877,-0.09209061460569501,-0.25485484302043915,-0.1937552005983889,-0.8041492588818073,-0.1335504907183349,-0.8274322622455657,-0.42674893885850906,0.17650257656350732,-0.02907412499189377,-0.9835948622785509,-0.24365560617297888,0.7082438478246331,0.6185368644073606,-0.5446410975418985,-0.8547205901704729,-0.5354836042970419,-0.1189045375213027,0.523985031992197,0.6617783084511757,-0.677787110209465,0.040635247714817524,0.4394603813998401,0.2899643862619996,-0.7304985774680972,-0.4907780000939965,-0.25283463997766376,0.6832136106677353,0.34926948230713606,-0.2053743558935821,-0.4633340728469193,0.5627063941210508,-0.5940221985802054,-0.7865360132418573,0.41266683815047145,0.828322465531528,-0.03723922558128834,0.8407556270249188,-0.7307252385653555,0.19114018650725484,-0.1708549875766039,-0.6804498685523868,0.2767205382697284,-0.663442098069936,-0.014413054566830397,0.9153406652621925,-0.7308992608450353,0.2639314732514322,0.4085998791269958,-0.2830430846661329,-0.5129308151081204,0.5203681318089366,-0.31996077252551913,-0.7850924911908805,-0.11103668017312884,0.3783599566668272,-0.15180572913959622,-0.4813786493614316,-0.5178715628571808,0.6564986472949386,-0.8470239383168519,-0.8414332349784672,-0.4241961492225528,0.8969726366922259,-0.6926702228374779,0.13065859163179994,0.3184351697564125,-0.9645993611775339,-0.26789317885413766,-0.6153538734652102,0.8438880611211061,-0.1636293143965304,0.8193785455077887,-0.11606951477006078,0.41388280503451824,-0.1337156556546688,-0.4340587789192796,0.19061116827651858,0.9154973509721458,0.5422677700407803,-0.33929165499284863,-0.06205475656315684,-0.3257431471720338,-0.7717011664062738,-0.24844833789393306,0.48289960250258446,-0.4644755464978516,0.4467233680188656,0.047647989355027676,-0.660193479154259,0.5717223696410656,-0.01564483856782317,0.4509321511723101,0.1848148531280458,-0.2987892562523484,0.3333767279982567,0.054383900947868824,0.9365183594636619,-0.39453340834006667,0.26781131187453866,0.4325255728326738,-0.7381256031803787,-0.3255603206343949,-0.2930541858077049,-0.5749069466255605,0.5727350558154285,0.5199273023754358,-0.9168155039660633,0.08172589726746082,-0.3028073408640921,0.6240733969025314,-0.3481945269741118,-0.8193717440590262,0.023854536470025778,-0.6687051388435066,0.34593450650572777,-0.3890163451433182,0.04962225817143917,0.011179292108863592,-0.5070277159102261,0.7464868198148906,0.06298388773575425,-0.5025627724826336,-0.056143917609006166,-0.45323598198592663,-0.7062755511142313,0.7838387726806104,-0.4010606952942908,0.5731226084753871,0.42750134505331516,0.7766653471626341,-0.798745758831501,-0.1656102598644793,0.9037396213971078,-0.47183006815612316,0.6745652495883405,0.7686304813250899,-0.6688834019005299,0.767375704832375,0.41716679371893406,0.7348273140378296,0.02844190690666437,0.27496466087177396,-0.9910545432940125,0.9688826883211732,-0.3448274480178952,-0.8569378587417305,-0.7945179035887122,0.3739062622189522,0.9380834358744323,0.4012824520468712,0.8304156507365406,-0.6860239896923304,-0.5656945509836078,-0.03410550905391574,-0.07817566534504294,-0.16852494282647967,-0.7161628808826208,0.21771396603435278,0.9140830258838832,-0.7259250762872398,-0.9214886180125177,-0.5754285803996027,0.894309900701046,0.14402833441272378,0.5377924935892224,-0.9216031800024211,-0.9400932369753718,-0.8476610672660172,-0.16687438590452075,-0.8160871146246791,0.17063859524205327,-0.6292915432713926,-0.8100950829684734,0.2925917818211019,0.4155702730640769,0.711680409964174,-0.5768043855205178,-0.5283735715784132,0.9557526968419552,-0.7662631240673363,-0.7442782712168992,-0.1491923350840807,-0.3173948391340673,-0.44905737740918994,-0.729938882868737,-0.10225302679464221,-0.2146355896256864,-0.13771140901371837,-0.2431181212887168,-0.2796710468828678,-0.56174350483343,-0.5978404190391302,0.5481697330251336,0.6894517671316862,0.6220103390514851,-0.28655545273795724,0.38551476038992405,0.9089398658834398,-0.6386801758781075,0.6281705242581666,-0.5400232789106667,0.4150569774210453,0.13552940590307117,-0.8880108329467475,0.18884260300546885,-0.24758187774568796,0.25328410416841507,0.009937174152582884,0.12759963562712073,-0.6429011435247958,0.5964470827020705,0.6977123469114304,0.9823999982327223,-0.7168306596577168,0.7872738144360483,0.8929609335027635,-0.0010856944136321545,0.9719686810858548,-0.43071674183011055,-0.9600467821583152,-0.7703342908062041,-0.4267040048725903,-0.36724830185994506,0.4250097363255918,0.7133021522313356,-0.23372627003118396,0.8794352835975587,0.7523141424171627,0.6592159071005881,0.43566880421712995,0.5423487178049982,0.825242371764034,-0.9092095820233226,0.564405501820147,-0.8057788666337729,0.4875457277521491,-0.007426353171467781,0.4032291299663484,0.5434964834712446,-0.5556641733273864,0.6405905992724001,-0.7400150466710329,0.17417602008208632,-0.26899835653603077,-0.5575305987149477,-0.619926935993135,-0.21707960311323404,-0.5389557653106749,0.544047343544662,-0.44701192202046514,-0.7322843950241804,0.18986755283549428,-0.6228399821557105,0.40493455436080694,-0.914302880410105,0.7791257658973336,-0.029336636420339346,0.6158538772724569,-0.7029183064587414,-0.7279427703469992,-0.8788144281134009,0.5987216341309249,0.4770363336429,-0.904090884141624,0.9591422700323164,-0.09215211123228073,-0.23840721743181348,-0.6248386311344802,0.8876383169554174,0.1879866891540587,0.37622255086898804,-0.2706074994057417,0.8968972596339881,0.36215940909460187,0.42469042586162686,0.25949669629335403,0.285965537186712,0.2474163225851953,-0.8110767425969243,-0.2191846901550889,-0.9440778424032032,0.26511580077931285,0.5642990488559008,-0.9948007059283555,0.8018480343744159,-0.16873186314478517,-0.018314404413104057,-0.7506335489451885,-0.4458675133064389,0.2835649740882218,0.47550460742786527,-0.5655328584834933,0.5782331768423319,0.5886578559875488,0.46952419448643923,0.550789759028703,0.6131347129121423,0.6505567175336182,0.35626194113865495,-0.2758565666154027,0.49396374728530645,0.4565010047517717,0.23634897312149405,0.8521580370143056,-0.5172019992023706,0.8922789259813726,0.23734382772818208,-0.6790432962588966,0.013051026500761509,-0.8264831206761301,-0.41556552005931735,0.42912025609984994,0.8036678251810372,-0.2440460892394185,0.8130190335214138,0.5976106026209891,0.024479164741933346,0.6991078169085085,-0.4539367016404867,-0.9459012583829463,-0.3534834077581763,0.04901134129613638,0.7254946525208652,0.5485596535727382,-0.8862670292146504,0.4814924169331789,-0.8877754765562713,0.5625019161961973,-0.8190733636729419,0.7994628422893584,0.32270351238548756,-0.288462582975626,0.7093153060413897,0.6128170052543283,-0.016243708319962025,0.33881848910823464,0.14096112037077546,0.07137749111279845,0.6268524681217968,0.4873568066395819,-0.7856442430056632,-0.8007933567278087,-0.2210162514820695,-0.1613577278330922,0.06869622087106109,0.11304515646770597,-0.599008715711534,-0.6213687192648649,0.22088498948141932,-0.616037268191576,-0.9513579537160695,-0.8282025326043367,0.5550405969843268,0.660702480468899,-0.5369012816809118,0.26426147343590856,0.17879734421148896,0.09509579371660948,-0.21887139417231083,0.036132228560745716,0.20996343065053225,-0.7052901703864336,-0.6142947245389223,-0.9112335774116218,-0.1615932215936482,-0.6806155233643949,0.244497527834028,0.06398840295150876,-0.6053270166739821,0.96963568078354,-0.4774368442595005,-0.4560582344420254,0.24932278180494905,0.681868217419833,-0.23486201465129852,-0.22209758823737502,0.45721687097102404,-0.6365144280716777,-0.4197066496126354,0.4777227733284235,0.5011165868490934,0.0895075905136764,-0.5312512023374438,-0.17035947879776359,0.0009237523190677166,-0.38359323237091303,0.45703261299058795,0.3119862899184227,0.5517111476510763,-0.13093378627672791,-0.5182030028663576,-0.635226187761873,0.23779847798869014,0.6259577358141541,0.4729918693192303,-0.9428224391303957,0.8382639507763088,-0.5711249313317239,0.05935244262218475,0.18581297527998686,-0.5003165798261762,0.32324385456740856,0.7335796044208109,-0.44341243570670485,-0.2157064094208181,0.5718581420369446,-0.7925711409188807,0.5294820857234299,-0.04859661590307951,-0.4235593588091433,0.1458948734216392,-0.5985935828648508,0.1450430820696056,0.9328875970095396,0.43583500338718295,-0.7275996156968176,0.15669591119512916,-0.9523878027684987,-0.5549480826593935,-0.8323013177141547,-0.03884214349091053,-0.27498037507757545,-0.2264341078698635,0.14477246347814798,0.23718648683279753,-0.09148438274860382,0.7208670703694224,-0.3374070590361953,-0.45653326623141766,-0.3344586188904941,0.5552149615250528,0.8585124146193266,0.21470121387392282,-0.31308380560949445,-0.5729582696221769,0.327915086876601,0.1919638253748417,-0.7562287612818182,-0.683774443808943,-0.33098841505125165,-0.27315514348447323,0.19342315010726452,0.9002036228775978,0.8684343793429434,0.7200887692160904,-0.10196352982893586,-0.8885936453007162,-0.7568857460282743,0.5222888509742916,-0.6601933371275663,0.11052404856309295,0.48834385722875595,0.15906677953898907,0.05889150407165289,-0.7959853364154696,-0.35058868350461125,-0.8818634012714028,-0.12464840151369572,-0.2665527234785259,0.9966888367198408,-0.07183967716991901,-0.45939634926617146,0.05625020433217287,-0.821508863940835,0.8963087685406208,-0.5902617513202131,0.756145631428808,0.030061790253967047,-0.6960122296586633,-0.13012019312009215,0.44245108822360635,-0.8045479911379516,0.712244363501668,0.4272806029766798,0.37212038366124034,-0.6256577237509191,0.9534136457368731,-0.24178212648257613,-0.5961018223315477,0.9329739762470126,0.6532827508635819,0.38630563486367464,-0.9701987942680717,0.3106617699377239,0.5281916367821395,-0.6858380637131631,-0.31946692476049066,-0.6942394715733826,-0.0666497964411974,-0.22511227568611503,0.6249266257509589,0.12299526995047927,-0.6061774762347341,0.39709608629345894,-0.8672845875844359,0.4367293403483927,0.7784004155546427,0.576748548541218,0.4823334142565727,0.8041146099567413,-0.42928243800997734,0.8635318521410227,0.832000388763845,-0.1936302473768592,0.009251442272216082,-0.819346783682704,-0.7127229920588434,0.6554983514361084,0.757680103648454,0.905279858969152,-0.9315037643536925,-0.2920727077871561,0.2669544257223606,-0.08485417300835252,0.27904948219656944,-0.36976233497262,-0.35512687591835856,0.23117465199902654,0.37323431111872196,0.30731547018513083,-0.07711343187838793,0.7124844142235816,-0.8745611221529543,0.674778972286731,-0.8382669361308217,0.13528591161593795,0.19685584446415305,0.2388343815691769,-0.2015927704051137,0.5192345581017435,0.8954896531067789,0.4446836765855551,-0.26636620983481407,0.9602830656804144,0.22889024717733264,0.22624123375862837,-0.6907287570647895,-0.2251964509487152,-0.4247648445889354,-0.30043701408430934,0.5913796951062977,0.4823776758275926,-0.4358217213302851,0.21927860099822283,-0.5778147461824119,0.027862018905580044,0.9675522125326097,-0.019209413789212704,0.7769192093983293,0.9110588608309627,0.49602988362312317,-0.2820682912133634,0.38954751286655664,-0.31491172034293413,0.7333401227369905,0.32003881642594934,0.5399074149318039,-0.698821016587317,-0.6063816389068961,-0.07880437094718218,0.8174566375091672,-0.06314064702019095,-0.541628479026258,0.11995702562853694,0.026815724093466997,-0.0843872525729239,-0.4901604149490595,0.6338672656565905,0.16015096148476005,-0.9387018936686218,0.9814774477854371,0.748544464353472,0.16798148676753044,-0.10428350092843175,0.8049516980536282,-0.5412320168688893,0.4337010318413377,0.6487882696092129,-0.3013879703357816,0.19173774356022477,-0.3021177351474762,0.13117295363917947,-0.5805850266478956,0.75201809220016,0.24204302951693535,0.26815954875200987,0.36910881474614143,0.23659207066521049,0.28568989410996437,0.9442334952764213,-0.21606088615953922,0.5260477256961167,0.6488099088892341,-0.28309572860598564,-0.8562065646983683,-0.5795578886754811,0.7531075617298484,-0.9028958869166672,-0.3543764343485236,0.2944133155979216,0.6926096826791763,-0.6939421989955008,-0.11060404172167182,-0.3179833563044667,0.8114721304737031,0.7563112545758486,0.9556987225078046,-0.8629272324033082,0.5220604664646089,-0.9278666190803051,-0.6319908639416099,-0.8836687956936657,0.5039159841835499,-0.32517620688304305,0.03315574582666159,-0.7662596306763589,0.03737966623157263,0.13451226195320487,-0.24440080532804132,0.09901606710627675,-0.23816340183839202,0.43804673198610544,-0.18135762307792902,0.7736813426017761,-0.27879101410508156,-0.2122498257085681,0.8958175093866885,0.8157004220411181,0.7327611525543034,0.2895145360380411,-0.16078896215185523,0.7997278501279652,0.8719356502406299,0.5343966246582568,-0.4230218823067844,0.3384946156293154,0.10694410838186741,0.2247598022222519,-0.7207686216570437,0.8690895298495889,0.6589623200707138,0.39042787067592144,-0.7650356818921864,-0.2202021931298077,0.9131748774088919,-0.3225612067617476,0.5049836551770568,0.3874109690077603,0.834041110239923,-0.38731572963297367,0.2599763278849423,-0.038393468130379915,0.9403716423548758,0.659883611369878,0.48727038968354464,0.7837551245465875,-0.7219435474835336,0.004009036812931299,-0.2582817696966231,-0.597825591918081,-0.07025448139756918,-0.7676842794753611,-0.33209002297371626,0.999007286503911,0.8352742507122457,-0.8757877643220127,0.30693607963621616,0.7631215970031917,0.6459271991625428,0.5512887435033917,-0.7189878984354436,0.5910166879184544,0.3292041337117553,-0.40161499101668596,-0.39974714908748865,-0.8593709859997034,0.09500137763097882,-0.03658173978328705,0.09223230183124542,-0.5089987455867231,0.8815115331672132,0.8371022045612335,0.8800878399051726,0.1375028840266168,-0.36148257087916136,-0.6508779167197645,-0.397861207369715,-0.2239141627214849,0.9312096629291773,0.45736042503267527,0.3531571654602885,-0.5140998256392777,-0.5094393505714834,-0.45739661110565066,-0.8228228883817792,0.8942898376844823,-0.8593538552522659,-0.16584783513098955,0.24507287656888366,0.8843776625581086,0.701085046865046,0.8271606448106468,0.7773782564327121,-0.6248410567641258,0.05424055131152272,-0.9242879669182003,-0.2714874939993024,-0.5175140942446887,0.5296951676718891,0.25323976017534733,-0.9365504626184702,-0.9469707515090704,0.8608006783761084,-0.5326989567838609,0.7397530414164066,-0.9498739242553711,-0.3192643946968019,-0.2842956827953458,-0.6046210345812142,-0.9707109876908362,0.9082866995595396,-0.40896102506667376,-0.7565758777782321,-0.6548481513746083,0.3063909630291164,-0.7746044620871544,0.17015417059883475,-0.504229286685586,-0.9369840570725501,0.9992424715310335,-0.9687425456941128,0.9706836752593517,0.34909148374572396,0.9162559867836535,-0.47266089962795377,-0.5543597629293799,-0.2105800719000399,-0.8560599284246564,0.31417886540293694,-0.24215771909803152,-0.20431017503142357,0.3032233817502856,-0.791437438223511,-0.5825583580881357,0.5109569388441741,0.49265858018770814,-0.7581887012347579,-0.3717886502854526,0.4474514932371676,-0.6819865242578089,-0.26990915229544044,0.43694522185251117,0.6495176800526679,-0.8654851843602955,-0.653414508793503,0.05479776859283447,0.2567712711170316,-0.5507172783836722,-0.04646488931030035,0.5183507148176432,0.6231386731378734,-0.3235468468628824,-0.32033192133530974,0.5403475137427449,0.5899055120535195,0.8074905253015459,0.16966331470757723,0.3797385636717081,0.9463989799842238,0.6287929294630885,0.5725226011127234,-0.6592316892929375,0.04171141982078552,-0.4108479768037796,0.3269914863631129,-0.3193101529031992,0.6533550275489688,0.40125203924253583,0.730972898658365,-0.9457246246747673,-0.7135884943418205,0.21835250686854124,-0.665501403156668,0.051596205215901136,-0.5778811736963689,0.1803025952540338,0.8746766890399158,0.5946836424991488,-0.6415953729301691,0.624508029781282,-0.7491326821036637,-0.3730862671509385,0.27884260239079595,0.5483348383568227,-0.9113526926375926,-0.7962257442995906,-0.07215094240382314,-0.4461454623378813,-0.9349850211292505,-0.02768498146906495,0.916962290648371,-0.23015434108674526,0.30124547705054283,0.3053451282903552,0.2591439262032509,-0.4545527948066592,0.12585778115317225,0.977393408305943,0.5706424857489765,-0.27429003501310945,-0.9649076713249087,0.4681912809610367,-0.6604115711525083,0.39539769012480974,-0.11418384499847889,0.018928634468466043,-0.1895208745263517,0.9803643729537725,0.5610305997543037,-0.3088261680677533,-0.4129779967479408,-0.03798035718500614,-0.1414774744771421,0.23812691401690245,-0.6135333911515772,0.46032398426905274,-0.45190573763102293,-0.6173145063221455,-0.4743190659210086,0.4494198076426983,-0.11686234595254064,-0.36191705148667097,-0.5701595586724579,0.3108881739899516,-0.4189920863136649,0.8770246487110853,0.43483415292575955,0.5558305252343416,-0.5461164014413953,0.8041254351846874,-0.9424959998577833,0.8170162071473897,0.04524503229185939,-0.6566554857417941,0.15909404819831252,0.9032992571592331,-0.49291493371129036,-0.2895205346867442,-0.6887745005078614,0.7339280205778778,0.7547921892255545,0.9974586237221956,0.44141772435978055,-0.1940173194743693,0.8726747552864254,-0.4957927134819329,0.9707958670333028,-0.8501300835050642,-0.8202271847985685,-0.3381888051517308,0.12480726977810264,0.7893850635737181,-0.29817914543673396,0.7034604675136507,0.1826070100069046,-0.5076790479943156,0.2381814499385655,-0.6536770835518837,0.8373984629288316,0.7987706009298563,-0.5419926065951586,-0.3530703312717378,0.021556309424340725,-0.5000791000202298,-0.9772653812542558,-0.35376441944390535,-0.2344735930673778,-0.629445246886462,0.4475929313339293,0.05033006938174367,-0.04403194412589073,-0.30832764878869057,-0.4052022723481059,-0.8657892346382141,0.7125359736382961,0.5770340678282082,-0.2614793577231467,0.35667513916268945,-0.3625742280855775,0.9493934446945786,-0.8359335996210575,-0.8645029785111547,-0.009322036989033222,-0.05518158571794629,-0.3085001613944769,-0.9763303194195032,0.8068774254061282,-0.09940606774762273,-0.035175800789147615,-0.019514949526637793,-0.6649938682094216,-0.8957444475963712,-0.7682161084376276,0.30208544293418527,0.9501429754309356,-0.42629065131768584,0.6387452953495085,0.32394161308184266,-0.3812779546715319,0.7516459035687149,0.22902244748547673,-0.10412376839667559,0.3566000470891595,0.3841095897369087,-0.6397018544375896,-0.9997602440416813,-0.039784311316907406,-0.026487091090530157,0.8809542842209339,-0.4321591183543205,0.7770329490303993,0.9574080090969801,-0.24659871077165008,-0.054921634029597044,-0.5723750470206141,0.031053143553435802,-0.07623584009706974,0.46614472661167383,0.2193282782100141,-0.42575699649751186,-0.8037863629870117,0.3115468774922192,-0.6755729084834456,0.9631153410300612,0.7277204506099224,-0.16540861455723643,-0.930767863523215,-0.5896975556388497,-0.32198886945843697,-0.3838591417297721,0.006008828058838844,-0.029787701554596424,-0.3243532171472907,0.9559269910678267,0.9224378075450659,-0.5043844464235008,-0.44969747914001346,0.4394433740526438,0.8344795666635036,0.5610821964219213,-0.9996399697847664,0.36057923547923565,0.18170131742954254,0.1307970443740487,0.027619036380201578,0.45468550035730004,-0.5331755098886788,0.08734111953526735,0.26304472563788295,0.4440167252905667,-0.7956741591915488,-0.8197825620882213,-0.46981456130743027,0.7495704768225551,0.08937823073938489,0.4537543663755059,-0.041134719271212816,0.42666376382112503,0.020284186583012342,0.6619439464993775,0.6843212069943547,0.310529216658324,-0.9653701423667371,0.892988448496908,0.48789046239107847,0.9366214256733656,-0.3315229010768235,0.3359219040721655,-0.9547772104851902,0.8844847972504795,-0.5678351656533778,0.9634991176426411,0.5871565244160593,-0.33396832225844264,-0.1778875282034278,0.8415615623816848,0.6783612999133766,0.9609964797273278,0.35536074452102184,-0.5482156658545136,-0.49356330651789904,0.13330175401642919,0.5799812106415629,-0.6737185902893543,0.9835872943513095,0.7941697388887405,-0.5466372449882329,-0.21218612929806113,-0.473489192314446,0.6382341696880758,-0.015050537418574095,0.6677892254665494,0.5806706990115345,-0.6982634346932173,-0.6719120489433408,0.41547069512307644,0.21544217970222235,0.7243605237454176,-0.3875728524290025,-0.5506307426840067,-0.9857557998038828,-0.772792846430093,-0.7629539119079709,0.04559308523312211,-0.8391032759100199,-0.38143985997885466,-0.8878008597530425,-0.011297065764665604,-0.42831406416371465,-0.9266359927132726,0.7849179618060589,-0.9657337483949959,0.24717231653630733,-0.7883330374024808,-0.9621289735659957,-0.9967161137610674,-0.9618206601589918,-0.888418226968497,0.6362638212740421,-0.29430521791800857,-0.821165525354445,0.8064154358580709,0.44453327637165785,0.9534408170729876,-0.37558925012126565,0.609331248793751,0.2564502009190619,-0.9393436536192894,0.1462618075311184,0.19058272801339626,-0.6716294502839446,0.3120236280374229,-0.2028498430736363,-0.26453658659011126,-0.6047605951316655,-0.8063948666676879,-0.8441912517882884,0.784140377305448,-0.8812812375836074,0.37006318662315607,-0.07622517924755812,-0.6048233108595014,0.39243539748713374,-0.4543398809619248,-0.44526892248541117,0.8811536645516753,-0.34409489249810576,0.04107326455414295,0.5109429224394262,-0.6005029855296016,0.8411139030940831,-0.43486340157687664,0.08982735686004162,-0.27766450168564916,-0.2907874290831387,0.9757408010773361,0.6770294457674026,0.11025844421237707,0.4308599140495062,0.819641977082938,-0.2686863229610026,0.8635075516067445,-0.6161762354895473,0.8430580412968993,-0.9548755520954728,0.5270128548145294,-0.4598480574786663,0.6611525742337108,0.994434081017971,0.5772190601564944,0.014377021696418524,-0.6736524715088308,0.03304481413215399,-0.7531238682568073,0.07247675210237503,0.39814407750964165,-0.4112615128979087,0.7681837556883693,-0.0546392104588449,0.39576810970902443,-0.2640760806389153,-0.23060705047100782,-0.3952499316073954,-0.6410231487825513,-0.2125326576642692,-0.07325936807319522,-0.621644745580852,0.9981669364497066,-0.7156485458835959,0.40632314793765545,0.5121426489204168,0.4340210831724107,0.23688832996413112,0.1949042333289981,0.37208714010193944,-0.4769944455474615,0.6613704706542194,0.9214774845167994,-0.4123620935715735,-0.2730100159533322,0.040507626719772816,0.37031919602304697,0.05851445673033595,-0.2201213394291699,-0.3082843543961644,-0.045744577422738075,-0.45754155423492193,0.13998629106208682,-0.04416546318680048,-0.3801344591192901,-0.3376704272814095,-0.30213885894045234,-0.06973030976951122,-0.40564547246322036,0.5125847905874252,-0.17039457894861698,0.8822812139987946,-0.21235783956944942,-0.9612491251900792,0.4833288094960153,0.7549407314509153,0.3374884519726038,0.31025058403611183,-0.9487411440350115,-0.7143948846496642,-0.5520976781845093,-0.333741488866508,0.5398147744126618,-0.17261244310066104,-0.17754575237631798,-0.2778537832200527,-0.906836177688092,-0.48166396049782634,-0.1274509858340025,-0.3801690354011953,-0.3579537756741047,-0.5810669241473079,-0.9499625721946359,-0.19936853693798184,0.26512783486396074,-0.4258510055951774,-0.7073149904608727,0.9053064817562699,0.9208978810347617,-0.08856150740757585,-0.3842687802389264,-0.38825719663873315,0.22014239942654967,0.5658453605137765,-0.9619212211109698,0.20763255842030048,0.7221174696460366,0.22867988515645266,0.7854196433909237,-0.09762101527303457,0.12629255279898643,-0.15792890451848507,-0.6839924063533545,-0.15656116185709834,-0.849238118622452,-0.10883445804938674,0.7246945248916745,-0.1616203235462308,-0.9359413157217205,0.316887017339468,-0.20409330632537603,0.816743778064847,-0.5472231335006654,0.965349760837853,-0.6819470315240324,0.5057098502293229,-0.8376568616367877,-0.01314199436455965,-0.2671183906495571,-0.07036749692633748,-0.9798701051622629,0.5401522344909608,0.45199865847826004,-0.9378789258189499,0.6941880588419735,-0.23639080813154578,0.7401386881247163,0.8176424484699965,0.31984901474788785,0.2702745459973812,0.4064079988747835,0.8447974449954927,0.9742616326548159,-0.48701022658497095,-0.8209571707993746,0.6925390544347465,-0.3414343651384115,0.5177708794362843,-0.2276363279670477,0.8366997367702425,-0.42155463667586446,0.793138368986547,0.9482403174042702,-0.2077864813618362,-0.8583500408567488,0.6892971587367356,-0.1576506826095283,-0.5478179757483304,0.20649135624989867,0.5690474361181259,0.3861674158833921,-0.7976945959962904,-0.539204397238791,0.552153377328068,0.4690512679517269,0.37577338609844446,-0.6876972615718842,0.45279065892100334,-0.7696109628304839,-0.09834797773510218,0.5341198006644845,-0.7208727397955954,0.5936561287380755,-0.22124486044049263,-0.09492859523743391,-0.614913294557482,0.8052554903551936,-0.4753650273196399,-0.18479616940021515,0.9013208956457675,-0.6300207125023007,0.8052191841416061,0.270388669334352,-0.23320341669023037,-0.10121513996273279,0.6453771316446364,0.0008874582126736641,0.836627580691129,-0.6105370256118476,0.2441288805566728,0.893616043496877,-0.6283286078833044,-0.1925842436030507,0.09923966228961945,0.7245264905504882,0.005754685495048761,-0.13446562178432941,-0.595684617292136,-0.15042747743427753,0.1623465227894485,0.8016207357868552,-0.2560868966393173,0.160233105532825,-0.18664080183953047,-0.2783607039600611,-0.024620505049824715,0.9619228169322014,-0.9512531012296677,-0.6936196177266538,-0.5775653133168817,-0.007830359041690826,0.6031509740278125,-0.36239953711628914,0.208723240531981,-0.39671210665255785,0.6701034978032112,-0.3640861692838371,-0.08894069073721766,-0.6024285666644573,0.21552504133433104,-0.2117245690897107,-0.7854230827651918,-0.045734211802482605,-0.8547459370456636,0.1956323073245585,0.3050421099178493,0.9188245427794755,-0.12561317021027207,0.2407181249000132,-0.016506019979715347,-0.18495311494916677,-0.8988218875601888,-0.3287659431807697,0.11864795908331871,0.2834329013712704,-0.39351853262633085,0.12703976314514875,0.7034259466454387,-0.7481422885321081,0.9445716668851674,0.2532423217780888,0.5423644338734448,0.69006985751912,-0.7503048903308809,0.7768362700007856,0.6081544971093535,0.9591963118873537,-0.03494654921814799,-0.08149273646995425,-0.7810594672337174,-0.8784961611963809,-0.767430298961699,0.0730515387840569,0.33890038868412375,-0.6577056781388819,0.9238270791247487,0.9739930690266192,-0.761428929399699,0.44835304375737906,-0.6107789603993297,0.8815233251079917,-0.8217892753891647,-0.03858352033421397,-0.7880718098022044,-0.1794007713906467,0.24042212450876832,-0.32873022789135575,-0.4047974436543882,-0.31150174932554364,0.0828528287820518,-0.3077560826204717,0.8572834371589124,-0.3956607738509774,0.4580925814807415,0.8311481522396207,0.18376418901607394,-0.3108159126713872,-0.4207821888849139,-0.9106864854693413,-0.39445119025185704,-0.050246319733560085,-0.40205893898382783,-0.06901981122791767,0.6075758561491966,-0.9000904383137822,0.18124106945469975,-0.12857592618092895,-0.4959309990517795,0.39748780615627766,0.443467456381768,-0.11265333602204919,-0.7331690201535821,-0.5462628277018666,-0.9899033363908529,-0.6324662026017904,0.8523054523393512,-0.3200225210748613,0.02984938072040677,0.21506012743338943,0.1847292287275195,-0.18901413585990667,-0.6914029815234244,-0.06060452060773969,-0.7387687191367149,-0.5935449851676822,0.03708683094009757,0.338099735789001,0.7439631791785359,-0.20563052501529455,0.907768739387393,-0.8787847347557545,0.942861441988498,-0.38397423969581723,0.5344379232265055,0.2680026046000421,-0.6222505648620427,0.2097427793778479,-0.9806410064920783,0.6519814794883132,0.0773683413863182,0.7860535592772067,0.22203038493171334,0.8220977797172964,-0.9234493602998555,-0.9770527705550194,-0.506487812846899,-0.10011284798383713,-0.7118002767674625,0.8789272867143154,-0.4721249178983271,0.47021880419924855,-0.2523101568222046,-0.13881316408514977,-0.2583054769784212,0.9412853764370084,-0.1425231802277267,-0.8586625927127898,-0.15707754530012608,-0.41560244048014283,-0.8660931466147304,0.3285312484949827,0.7658066092990339,0.1383742643520236,-0.7357141361571848,-0.8685940629802644,-0.2291428237222135,-0.19272429216653109,-0.6457918267697096,0.057430325075984,0.8040322456508875,0.5160545129328966,0.196714430116117,0.5665485081262887,0.20228954218328,0.08765703346580267,0.4871102594770491,0.9417106029577553,-0.41306635132059455,0.7154411706142128,0.3626840556971729,0.763791789766401,-0.567554488312453,0.07755141193047166,-0.8304234207607806,0.3497466933913529,0.9922032607719302,0.7335216570645571,-0.5923514594323933,-0.4373153680935502,0.25030456203967333,0.7300117230042815,0.9854298243299127,-0.29910934437066317,-0.8138844878412783,0.029289525467902422,-0.8983095497824252,0.6031584241427481,-0.5701276259496808,-0.46592829655855894,0.46164410561323166,0.990774801466614,0.6505153640173376,0.9304068367928267,0.5063978503458202,0.7767687952145934,-0.6279575484804809,0.5071993852034211,-0.31401558546349406,0.7976885139942169,-0.5299337268806994,0.41546268574893475,0.27830956503748894,-0.9924581116065383,0.16398692782968283,-0.6676098238676786,-0.4207837088033557,-0.04553493019193411,-0.7148907892405987,0.11403182055801153,0.0008058282546699047,0.03122164262458682,0.4234502180479467,0.8313624789007008,-0.31607110146433115,-0.4672478302381933,0.5696875993162394,-0.10812206752598286,0.4501976231113076,0.5197268915362656,-0.9172058315016329,0.09601121488958597,0.981853446457535,0.5093652992509305,-0.4678113432601094,0.7854061247780919,0.3969452269375324,0.5107709914445877,-0.9943764633499086,-0.5685781971551478,0.8584518623538315,0.2603864399716258,0.9573087049648166,-0.32542295614257455,0.5539631261490285,-0.5312445475719869,0.640899630729109,-0.24135704431682825,0.15133120538666844,-0.8924195398576558,-0.8355846181511879,-0.26957313623279333,-0.37717363610863686,0.33398311771452427,-0.19365789974108338,0.5013738046400249,-0.46876593912020326,-0.4888151818886399,-0.040517181158065796,-0.3809961345978081,-0.7251778235659003,0.5943516339175403,0.7704977365210652,0.44352774880826473,-0.6914118742570281,-0.4190162238664925,0.0034498898312449455,0.7741383356042206,-0.02468374604359269,0.6077676112763584,0.5158036197535694,0.098530531860888,-0.0002473164349794388,-0.9173254258930683,0.6766039184294641,-0.5816365862265229,-0.288330378010869,-0.8759188409894705,0.13524540653452277,-0.20948692271485925,0.1534188175573945,-0.5406929319724441,0.7439525802619755,-0.7004285673610866,0.5613140850327909,0.9182834904640913,0.07051664544269443,-0.027070702984929085,0.12522417772561312,-0.09809827897697687,0.3757830164395273,0.6273237797431648,-0.37882091430947185,0.836882047355175,0.1729270899668336,0.7004299121908844,-0.8393114753998816,0.1338395792990923,0.4392015761695802,-0.462657471653074,-0.5304712345823646,-0.1874575554393232,-0.946111842058599,-0.8538500852882862,-0.16627163859084249,-0.2470604027621448,-0.5815935088321567,0.3969893865287304,0.7329701380804181,0.09131300775334239,0.4111119550652802,0.13827144401147962,0.6544857672415674,-0.591121441219002,-0.2707514939829707,-0.9777217251248658,-0.3561197347007692,-0.07852367078885436,-0.41337624844163656,-0.8741383533924818,0.7369984593242407,-0.8638950120657682,0.417149443179369,0.8414303418248892,0.7484285300597548,0.05177024565637112,-0.48667271155864,0.7769836303777993,0.7567680515348911,-0.4492332045920193,-0.5945539311505854,-0.7642798279412091,0.624215065035969,0.09348948812112212,-0.2428106889128685,-0.17049650428816676,-0.33201096719130874,-0.4170791250653565,0.3344803713262081,-0.5725816143676639,0.284073393791914,0.10393997700884938,0.647887506056577,-0.986395560670644,0.9741484452970326,0.7407370060682297,0.6057244529947639,-0.16423187591135502,0.8575951685197651,-0.8682182831689715,0.9114529630169272,-0.8849642998538911,0.048756763339042664,0.9368470013141632,0.8387630973011255,0.8510919003747404,0.2661048788577318,-0.6445290609262884,-0.9808983453549445,-0.8391894795931876,-0.4400232625193894,-0.285201177932322,0.06491320673376322,0.581750534940511,0.220926561858505,-0.2249962710775435,0.8125537834130228,0.47141002770513296,-0.8318443959578872,0.1684082830324769,0.7065558317117393,0.18388608703389764,0.26240938249975443,-0.29319729609414935,0.8163050198927522,-0.7123892270028591,-0.7465701042674482,0.35818636883050203,0.9731237525120378,0.24844842217862606,-0.36336998734623194,-0.3154830252751708,-0.528282375074923,-0.8425156562589109,-0.3214626391418278,0.1420287387445569,0.8374846475198865,0.46947209164500237,-0.6415810738690197,-0.5304451142437756,0.15024455590173602,0.3948316494934261,-0.9321213369257748,0.7370933424681425,0.621990701649338,-0.47008551843464375,-0.3471652497537434,0.3651906047016382,-0.2627447792328894,-0.397398782428354,-0.4546885434538126,0.08514998853206635,-0.5158853665925562,0.09599169483408332,0.8637892841361463,0.8751684771850705,-0.4846826237626374,-0.9635350778698921,-0.4466007719747722,-0.7948283390142024,0.8633888876065612,-0.024750989396125078,0.12228884687647223,0.9471402070485055,0.0029633212834596634,0.24972601374611259,0.6481568333692849,0.8318323823623359,0.8990900688804686,-0.9180799061432481,-0.7782879751175642,0.07979235891252756,-0.3705007918179035,0.4484261511825025,-0.8546749949455261,-0.8908927598968148,0.5558455721475184,0.06239227205514908,0.7366474019363523,-0.9550695125944912,-0.8030320191755891,-0.19338757870718837,-0.4812381649389863,-0.06366456532850862,0.2588644162751734,0.7249082033522427,-0.9074135143309832,0.9228535695001483,-0.7090160665102303,0.7415497712790966,0.7733389744535089,-0.22543279826641083,-0.7703688028268516,-0.5844760909676552,-0.6885595321655273,0.5647046626545489,0.5625097504816949,0.046776659321039915,-0.243475750554353,-0.598610742483288,0.6904682568274438,0.31842251401394606,-0.21472496958449483,-0.47096839640289545,0.10566009860485792,0.505229601636529,-0.9623979311436415,-0.37027299124747515,-0.2588607547804713,-0.4463384058326483,-0.09670526534318924,0.24277974851429462,0.4666719022206962,0.9881465029902756,-0.23371911281719804,-0.1448181257583201,-0.10978132532909513,-0.9890363672748208,-0.08035527169704437,-0.28117665741592646,-0.9551325859501958,-0.4846045100130141,-0.3409740789793432,0.007146304473280907,-0.9355638232082129,-0.34218616783618927,-0.37917267717421055,0.8329463158734143,-0.5444357143715024,0.7822750960476696,0.07636695634573698,0.7671808777377009,-0.9354257206432521,0.9092341074720025,-0.5131327575072646,0.21842584665864706,-0.02994400542229414,0.5742968749254942,0.11100917030125856,-0.07875492656603456,-0.9685419974848628,-0.9457464944571257,0.1534830005839467,0.6126324166543782,0.5178334745578468,0.5324452063068748,-0.48846938740462065,0.05340339848771691,0.7540049045346677,-0.16855545667931437,0.9747191532514989,-0.859385076444596,-0.502986331935972,-0.8280231053940952,-0.7172949505038559,0.28764150757342577,0.27352288644760847,0.37949667079374194,-0.12593747954815626,-0.9856905383057892,0.975975095294416,0.8628130983561277,-0.4932606378570199,0.09447866585105658,-0.5324277635663748,-0.6374665996991098,0.07432400342077017,-0.6844265880063176,-0.6653964356519282,0.6117086126469076,-0.35766407242044806,0.18891327735036612,-0.4121423037722707,-0.610129312146455,0.300320653244853,0.8612212296575308,-0.9912388036027551,0.7232440961524844,-0.8485086797736585,0.22981133637949824,-0.580143834464252,-0.531942306086421,-0.14913856191560626,-0.7505783778615296,0.40418997406959534,-0.939655200112611,-0.915760116185993,0.7013629167340696,-0.4725211705081165,-0.005167742259800434,-0.7684712563641369,-0.6672149957157671,0.9547256459482014,0.1544268000870943,0.666761077940464,0.10222835093736649,-0.1316253817640245,-0.7366208541207016,-0.5298526119440794,0.1518794517032802,-0.24525337619706988,-0.6400778759270906,0.810519689694047,0.43594503542408347,0.1920840018428862,-0.1415086155757308,-0.5318202129565179,-0.899792826268822,-0.6825663419440389,-0.7551837554201484,0.5395493726246059,-0.6038823947310448,-0.9319016844965518,0.7430532365106046,0.9483469217084348,-0.7197488755919039,0.534751771017909,0.579992510844022,-0.03542746510356665,0.24434237414970994,0.5779359620064497,0.40191542310640216,-0.825578045565635,0.8740281770005822,0.9372758669778705,0.3191648982465267,0.994068281725049,-0.060304753948003054,-0.3880287855863571,-0.9105146150104702,0.23214991064742208,0.09879260696470737,-0.5340557377785444,-0.4269509883597493,-0.8888597907498479,0.6983516155742109,0.8448177063837647,0.7596580036915839,0.8350761658512056,-0.32137046894058585,0.3810543962754309,0.8018268933519721,0.24308833992108703,0.6686671357601881,0.07328624045476317,-0.9005098422057927,0.7604744997806847,-0.4349691579118371,-0.7689095586538315,0.6033301148563623,-0.6486423811875284,-0.08971057180315256,0.5402303175069392,0.24860267899930477,0.8321586172096431,-0.5343710444867611,-0.6227102144621313,-0.2642649319022894,-0.07719634240493178,-0.5051426668651402,-0.39191213296726346,-0.10053521115332842,0.1811799006536603,-0.6022448744624853,0.8266270235180855,0.8646232732571661,-0.2907787011936307,-0.513085959944874,0.3633695445023477,-0.11996014369651675,-0.5488622710108757,-0.28646142967045307,0.10182233760133386,-0.08276800578460097,0.031238339375704527,0.9645064547657967,-0.019718270748853683,-0.7085835798643529,-0.8705286770127714,0.9160311399027705,-0.8820407707244158,0.8299265024252236,0.32777810422703624,-0.9332525110803545,-0.4841705122962594,-0.2791288089938462,-0.9945067916996777,-0.3142366539686918,0.26186985429376364,0.20598454400897026,-0.6207046145573258,-0.5308416057378054,0.665318273473531,0.32687815790995955,-0.12626089248806238,-0.12886435305699706,-0.7610648591071367,-0.42896038526669145,0.2532268394716084,0.8297044979408383,-0.6605257610790431,-0.6948079145513475,-0.4291633083485067,-0.31240603839978576,-0.7767253909260035,-0.01681908406317234,-0.7460775813087821,-0.5469244634732604,0.05131065659224987,-0.1679906528443098,-0.856429876293987,0.9173267134465277,0.17931496538221836,-0.1298557138070464,0.3897573174908757,0.8993069026619196,0.27395904529839754,-0.6525806458666921,0.25349764758720994,0.7896417477168143,-0.15533042652532458,0.06043215095996857,-0.5782354483380914,0.08955086348578334,0.85887052398175,-0.8063537189736962,-0.5064645120874047,-0.666992143727839,-0.012006220873445272,0.3003269634209573,-0.35918291937559843,-0.9502875409089029,0.7149846139363945,0.4517414649017155,-0.18173127667978406,-0.883000404573977,0.40972699876874685,0.3239788506180048,0.5676809689030051,-0.3928787065669894,-0.9159967107698321,0.40956548508256674,-0.9666538424789906,-0.4261984480544925,-0.7671621749177575,0.383374510332942,-0.35995967825874686,-0.7049332824535668,-0.9594440492801368,0.3562736436724663,-0.48799316212534904,-0.35556286573410034,-0.9585563279688358,0.5519651765935123,-0.9092893358319998,-0.5972646465525031,0.25063412403687835,0.912959236651659,0.810613124165684,0.12441225629299879,0.7156597385182977,0.7821169286035001,0.22947041457518935,0.7192063704133034,0.21444380097091198,0.3401646907441318,0.8996896678581834,0.1839508763514459,-0.384570324793458,0.34765193006023765,0.5788274346850812,-0.5414260304532945,0.11473907390609384,-0.1422131024301052,-0.5883826520293951,-0.9654509793035686,-0.9377958904951811,-0.7539374376647174,-0.1175134084187448,0.3879059571772814,0.6243356084451079,-0.27265580371022224,0.6792577081359923,0.035288996528834105,-0.0951114590279758,-0.4724528584629297,-0.013946956023573875,-0.34417795902118087,-0.814306169282645,0.47265505604445934,-0.8980844267643988,-0.03104584664106369,-0.04313858784735203,0.3696705773472786,-0.36730051040649414,0.1349197095260024,0.8691966822370887,0.29532749205827713,-0.5659867553040385,-0.5750983199104667,-0.06854093400761485,0.15179157676175237,0.6444444786757231,-0.39301706198602915,-0.08135904930531979,-0.9165673381648958,0.869046660605818,0.2886803508736193,0.2627284242771566,0.028062216006219387,-0.2733374792151153,0.004134467802941799,-0.7830803566612303,-0.15736014675348997,-0.7993606859818101,0.44801780954003334,-0.8070844123139977,-0.3945091338828206,-0.2658455576747656,0.3353123445995152,-0.35149882547557354,-0.9911511270329356,-0.07864484749734402,0.8759671580046415,0.8495765044353902,0.9092502840794623,0.8774958592839539,-0.028747962787747383,0.5568823916837573,-0.44197111763060093,0.18046008748933673,-0.9478473551571369,0.5190447610802948,-0.8573809028603137,0.5209768833592534,0.5520748784765601,-0.766093188431114,-0.5880637792870402,0.10376421827822924,-0.5604291865602136,-0.7864995133131742,0.20097271539270878,0.5259187007322907,-0.47405051114037633,0.6611159290187061,0.5030260318890214,-0.1977948173880577,0.09841337194666266,-0.7133306711912155,0.8207493191584945,-0.7181326444260776,0.5276771327480674,-0.9332662308588624,-0.2366381217725575,0.9217433268204331,0.12298044376075268,-0.49883462535217404,-0.9560004575178027,0.9878859394229949,-0.5053151431493461,-0.5357579719275236,0.16881414270028472,0.7578069046139717,-0.48162093851715326,0.6861292812973261,-0.7811162350699306,0.9710835688747466,0.40032430505380034,-0.8159438953734934,-0.681153915822506,-0.0337344529107213,0.24154237704351544,-0.2521639494225383,-0.5502936439588666,0.2536219866015017,0.0773749160580337,0.9906853344291449,-0.3508272706530988,0.3677418055012822,0.5089832511730492,-0.2802916541695595,-0.7534533687867224,0.9699983363971114,-0.5644093374721706,0.8470938028767705,0.30981486197561026,-0.44242663169279695,0.6873705866746604,0.6856262176297605,-0.7130705160088837,0.40740273520350456,-0.17082425579428673,-0.7470342288725078,0.15478582121431828,-0.7087491047568619,0.41226476803421974,-0.6827628570608795,0.7098825555294752,-0.02756521850824356,0.7829127083532512,0.6037292829714715,0.5642536366358399,-0.022051836363971233,-0.2762681278400123,0.9624751326628029,0.3897550799883902,0.8697933130897582,-0.1270157010294497,0.5629061693325639,-0.7949017193168402,-0.5611597946844995,0.978384274058044,-0.951777771115303,0.9404948926530778,0.22794636571779847,-0.40178101416677237,-0.6525604906491935,0.6332315192557871,-0.45859715808182955,0.7142972159199417,-0.3923126570880413,-0.4872666550800204,0.6261337883770466,0.0404323055408895,-0.03242711676284671,-0.4571223156526685,0.5869984198361635,0.966753238812089,-0.5546514266170561,-0.1364788175560534,0.22472053486853838,-0.8671640022657812,-0.45311350049450994,-0.8006844464689493,-0.41100002313032746,-0.8133519175462425,-0.9479123656637967,-0.8285983530804515,0.4600669234059751,0.9116328097879887,0.17481774976477027,0.31374613009393215,-0.8606767719611526,-0.8044325336813927,-0.5527511574327946,-0.3342683664523065,0.3035564301535487,-0.14375192672014236,-0.9941284311935306,0.5721557517535985,0.6740673212334514,-0.7390244645066559,0.6106031658127904,0.25831074407324195,0.6070644371211529,-0.36988516710698605,-0.108288767747581,-0.6773577528074384,0.34533302299678326,-0.5769849848002195,0.1765377684496343,0.566552257630974,-0.23132580798119307,0.35856149485334754,-0.04289966681972146,-0.6984183392487466,0.9304135497659445,-0.5327231003902853,-0.627552445512265,0.35924130072817206,0.8531779418699443,-0.39978639455512166,-0.6915067774243653,-0.21117254858836532,0.09299563942477107,0.9605098525062203,-0.6937274490483105,-0.18515571719035506,-0.5774237844161689,0.6733365799300373,0.5322026996873319,-0.010718137957155704,0.6082582464441657,0.6398218497633934,-0.35272332606837153,-0.7863047560676932,-0.7794701303355396,0.16512175044044852,0.5174787966534495,0.10609532427042723,-0.16340309008955956,0.922536380123347,-0.46799622289836407,0.29999116947874427,0.11005044681951404,-0.6612568385899067,-0.9726621890440583,-0.221134836319834,-0.4693350987508893,-0.8431904404424131,0.16435505030676723,0.7091162796132267,0.04079276416450739,0.9925027154386044,0.4355202722363174,-0.5174812357872725,0.3184235645458102,0.6330281402915716,0.008932878263294697,0.0022059157490730286,-0.14055384835228324,0.4276545378379524,-0.4402265730313957,-0.14151979191228747,-0.7404375802725554,0.722376483026892,-0.09509686520323157,-0.42311375541612506,0.6147130466997623,0.4277971377596259,0.8088903967291117,0.9927963991649449,0.9405555496923625,-0.6230235109105706,-0.11217790050432086,-0.4687023558653891,-0.7072438560426235,-0.9030893193557858,-0.813121376093477,0.9178568003699183,0.1855112435296178,-0.7610332299955189,-0.8095852481201291,0.013779381290078163,-0.9773506289348006,0.4451757427304983,0.31777789629995823,-0.3164137373678386,0.29868938075378537,0.6786142368800938,-0.5182232074439526,0.963333286345005,-0.1118126860819757,0.1368875652551651,0.6103465473279357,0.2729479116387665,-0.15263643255457282,-0.10200637532398105,0.28863390162587166,-0.7211193297989666,0.8552771303802729,-0.6474855965934694,0.2429563906043768,0.01883582165464759,0.9423569738864899,-0.027981240767985582,0.9057814120315015,-0.1470524501055479,0.7379529001191258,-0.7374775023199618,0.6081650690175593,0.25841245939955115,0.9505833089351654,-0.8183696395717561,-0.6918344814330339,-0.8560910108499229,-0.4089894304051995,0.4112171344459057,-0.5062487283721566,-0.6440359335392714,0.9065910349600017,0.27877651574090123,-0.8332819081842899,0.6610597474500537,-0.6883316552266479,-0.2821014281362295,0.08147338405251503,-0.30730699514970183,0.7034625806845725,0.21782393706962466,0.9827534249052405,-0.6752429334446788,0.8031833027489483,-0.9427199047058821,0.6005014814436436,-0.10785714071244001,-0.8920953162014484,-0.775402651168406,0.018451089970767498,0.8733748109079897,-0.24634062545374036,0.348523011431098,0.328447921667248,0.4694436453282833,-0.9368415079079568,-0.09020576998591423,0.24612400215119123,0.6027179919183254,0.9757403191179037,0.9851170624606311,0.29993824241682887,0.497334698215127,0.47658329363912344,0.14254247257485986,0.1713126376271248,-0.8000206602737308,0.647412343416363,-0.9508099518716335,-0.8717436916194856,-0.394885191693902,-0.35801174584776163,-0.6565883387811482,-0.8057134901173413,0.3515183846466243,-0.5565974870696664,-0.9526687050238252,-0.43379331193864346,-0.05589814344421029,0.3298819465562701,0.5849001700989902,0.3694015354849398,0.46721725538372993,-0.9639891874976456,0.1444244673475623,-0.7779987058602273,0.5816416000016034,0.27820697985589504,-0.34151375852525234,-0.8746272074058652,-0.5484376382082701,-0.11635956447571516,-0.20140499016270041,-0.8958935891278088,-0.5431884485296905,-0.2619921788573265,-0.747901463881135,0.17537874169647694,0.33508372493088245,-0.6909789526835084,0.46814867621287704,0.6838503973558545,-0.4735590908676386,0.7975190514698625,0.5387153546325862,-0.5789627837948501,0.9763186094351113,-0.17806299543008208,0.9235154064372182,-0.5753818582743406,-0.08572955941781402,-0.7212032694369555,0.3293131529353559,0.7597401048988104,0.451685497071594,0.43409366020932794,0.14640907756984234,-0.7320279888808727,-0.9910117425024509,0.3270330340601504,0.5821259245276451,-0.07388528482988477,-0.3766071144491434,-0.4933957033790648,-0.7808685093186796,0.7271922081708908,0.4624241222627461,-0.7102103233337402,0.936809313017875,0.030918306671082973,-0.5462231035344303,0.6146820951253176,0.9755689380690455,0.5444913269020617,-0.9405548954382539,-0.5501922192052007,0.11949885031208396,0.38327617663890123,0.08174560777842999,0.041559549514204264,0.9195743226446211,0.34049859642982483,-0.9045520843937993,-0.8109347205609083,0.7024515671655536,-0.5954223033040762,-0.73925690818578,-0.26529937610030174,-0.4363215258345008,0.6575513179413974,-0.6489277710206807,-0.41949847992509604,-0.3677413575351238,0.6480844225734472,-0.054046382661908865,0.2350570443086326,-0.7639177781529725,-0.7387550133280456,0.45126599073410034,-0.05701379897072911,0.3556085270829499,-0.7905944511294365,-0.37945039896294475,-0.18361459346488118,0.530226384755224,-0.9138890374451876,-0.521815684158355,-0.34494930040091276,-0.6298572872765362,0.36436936538666487,0.5213888166472316,-0.18641664553433657,0.29463125113397837,-0.6216253964230418,-0.7839858150109649,-0.08382587227970362,-0.368267310783267,0.5703688734211028,0.098499218467623,-0.7419043350964785,0.40919887460768223,0.35398335522040725,-0.17003590893000364,-0.6053409837186337,0.26861555501818657,0.3169701425358653,-0.7484182952903211,0.5671090669929981,0.2872778372839093,-0.42053845059126616,-0.13268117001280189,0.34120774967595935,-0.412614316213876,-0.7310406919568777,-0.8326292899437249,0.824236769694835,-0.6411254447884858,0.1364507689140737,-0.040904044173657894,0.39268151484429836,-0.9181082537397742,0.47673715464770794,-0.8347052270546556,0.5629216409288347,0.9098558919504285,-0.21616173489019275,-0.6561658340506256,-0.45107509242370725,0.9754361398518085,-0.12915955297648907,-0.6083319722674787,0.24434645380824804,0.5310831707902253,0.6703671733848751,-0.18552438216283917,0.5137701295316219,-0.3325907182879746,-0.3804519483819604,-0.0285704811103642,-0.7759630410000682,-0.8028865889646113,-0.5843453179113567,-0.12544700875878334,0.5242207702249289,-0.2521174233406782,-0.3668965823017061,0.3859711764380336,0.1117869820445776,0.5332287680357695,0.3052475629374385,-0.3392478162422776,-0.37718686694279313,-0.04116479214280844,0.6648229821585119,0.2786780996248126,0.7650431371293962,-0.8916912153363228,-0.7955850418657064,0.4715669034048915,-0.9640984679572284,-0.40988526260480285,0.9184422418475151,-0.4679492083378136,-0.6895106406882405,-0.9922297047451138,0.7533664600923657,-0.8792087105102837,-0.25111656123772264,0.7101947055198252,0.0733429566025734,0.7741071758791804,-0.708407555706799,-0.3694297089241445,0.9814857291057706,0.5644282288849354,-0.5794169432483613,-0.5849988237023354,-0.7572303186170757,0.7179364706389606,-0.6362879392690957,-0.037046962417662144,0.8545777425169945,-0.14002594910562038,-0.3428485724143684,-0.9626866425387561,0.5468348530121148,-0.6749041150324047,0.6893945052288473,-0.6866401387378573,0.9342013285495341,-0.5114240045659244,0.9999441625550389,0.8764896201901138,-0.33535650186240673,-0.08023231150582433,0.43403742415830493,-0.8783866786397994,0.31589606450870633,0.3716205111704767,0.013318601995706558,0.4393091364763677,0.9126977943815291,-0.29255974665284157,0.08113529114052653,0.22384124668315053,-0.42754664132371545,-0.6723739071749151,0.10141877457499504,-0.7180424816906452,0.18754135398194194,0.9697489691898227,-0.8036373113282025,-0.11595907621085644,-0.1274071652442217,-0.6886688079684973,-0.2463060598820448,-0.3165281624533236,-0.6572843808680773,-0.47103674057871103,-0.891125631518662,0.8412103857845068,-0.38367860531434417,0.9155290792696178,0.5894641960039735,-0.12444743374362588,0.7408835338428617,-0.41940593998879194,0.19122458808124065,-0.8270945358090103,-0.14088745648041368,0.7691781823523343,0.807734795846045,-0.8865537499077618,0.6670243279077113,-0.7481083492748439,-0.8471967834047973,0.6946471692062914,0.9183085258118808,0.9096427424810827,-0.00015661679208278656,-0.4786335569806397,-0.5487973433919251,0.9483074089512229,-0.789390376303345,-0.5513751432299614,0.9005671166814864,0.9870957513339818,-0.9942744867876172,0.9426314998418093,0.12620881758630276,-0.8256363407708704,0.5194466323591769,-0.2122193304821849,0.3219458796083927,-0.2385725323110819,0.06596433697268367,-0.38572603929787874,-0.6690913299098611,0.1968070105649531,-0.8661086512729526,0.4465675032697618,-0.42428560787811875,0.14953678846359253,-0.2756144618615508,0.6315331179648638,-0.7139040725305676,-0.2940721237100661,0.02070437092334032,0.3243961757980287,-0.956337486859411,0.1361053427681327,0.5904615628533065,0.3963341205380857,-0.5431383945979178,0.8792531979270279,-0.8646591464057565,-0.011623767670243979,-0.944461558945477,0.11815181095153093,0.7493192460387945,-0.4319201991893351,-0.04899025149643421,-0.2811503931879997,-0.8565142299048603,-0.7090424089692533,0.7327392026782036,-0.5889608720317483,0.7049025753512979,0.732613573782146,0.4551298413425684,-0.3994404268451035,0.7522892504930496,0.9234252944588661,-0.6195136862806976,-0.23933591740205884,-0.24095189152285457,-0.13635117234662175,0.5641188151203096,0.6724287765100598,0.927872977219522,-0.8364360681734979,0.6461729444563389,-0.83586685359478,0.046088894829154015,0.4978087614290416,0.6059009027667344,0.9905569031834602,0.7060733414255083,0.3768756720237434,-0.5168844051659107,-0.4050429183989763,-0.4741095663048327,0.08202509209513664,0.6565754264593124,-0.987536930013448,-0.19151424197480083,-0.002312283031642437,0.04783942364156246,-0.6547369128093123,-0.6343072229065001,-0.07021285500377417,0.3572927541099489,0.8278880226425827,-0.09819057723507285,-0.7117726798169315,0.2351893587037921,-0.6866055806167424,-0.5603296491317451,-0.0013772649690508842,-0.11044291546568274,-0.20658649178221822,0.9487347765825689,-0.4965507173910737,-0.17559740087017417,0.1574745336547494,-0.5100637655705214,0.7779229953885078,0.916411115322262,0.6785094309598207,0.7757668569684029,-0.9445038586854935,0.34236238757148385,-0.649470285512507,-0.3155459794215858,0.1261746222153306,0.2737155370414257,-0.7366089448332787,0.04023481719195843,-0.4055568529292941,-0.9576736046001315,-0.8670950680971146,0.4964632480405271,0.46356638753786683,-0.9813077300786972,0.26921071438118815,0.811730224173516,0.8593552149832249,0.663055382668972,0.29221923230215907,-0.5423177015036345,0.9447503299452364,-0.20915406476706266,-0.6234389776363969,-0.05983127560466528,0.5208737524226308,-0.21169120911508799,-0.7598824151791632,0.10897224955260754,0.009358246810734272,-0.4504205835983157,0.17774867545813322,-0.3645823155529797,-0.2012326354160905,0.21868280554190278,-0.8040766972117126,0.2945908014662564,0.5530265271663666,0.39631952811032534,0.8141241688281298,-0.7993476614356041,0.8506892477162182,0.15431865211576223,0.6301034088246524,-0.0521034044213593,-0.590672817081213,0.9083372172899544,-0.5296638323925436,-0.7331819292157888,0.7027070866897702,0.5896018594503403,0.5778252417221665,0.8634323244914412,0.7837415039539337,0.4618811886757612,0.2490852875635028,0.6940256869420409,-0.3591812294907868,-0.0538859530352056,-0.9635904487222433,0.4775832761079073,0.7489746762439609,0.1242560800164938,-0.9731271872296929,0.6715209619142115,-0.4001417802646756,0.8950823899358511,-0.7221261756494641,0.7158361505717039,-0.32537352573126554,0.321588178165257,-0.006348217837512493,-0.36426369240507483,0.6993497661314905,0.4341084975749254,0.5041970489546657,-0.4891360937617719,-0.2363429586403072,0.10447672847658396,-0.36694816686213017,-0.32610567612573504,0.7594224163331091,-0.8318280228413641,-0.6609696513041854,0.26912845438346267,0.8902609962970018,0.1565019153058529,-0.01178168086335063,-0.8620738736353815,-0.5024659647606313,0.3260887498036027,0.6956727784126997,-0.10955793224275112,-0.6503850212320685,0.9578391462564468,-0.584066214505583,-0.5082113244570792,0.703382970765233,0.1160303894430399,0.6494110175408423,-0.9724306683056056,-0.7121256743557751,0.05579926120117307,0.6021468159742653,-0.1406641243956983,0.38205538503825665,-0.3166037844493985,0.2430266714654863,-0.35721341893076897,0.3150849989615381,0.0422098389826715,0.03829058026894927,-0.6730073415674269,0.559397199191153,0.0618572011590004,0.5124228722415864,0.5781710236333311,0.8212035414762795,0.84590914985165,0.020486495457589626,-0.08872128650546074,-0.488879990298301,0.8791337488219142,-0.05592287052422762,0.6032526846975088,-0.7298568566329777,0.9090754929929972,0.7549041849561036,-0.21398848574608564,-0.6791650499217212,0.6969798617064953,-0.25366172194480896,-0.12285625515505672,0.7341070813126862,0.9520469908602536,0.4889120259322226,-0.3417587745934725,0.22037348710000515,0.7355421409010887,0.4207049827091396,-0.3406779863871634,-0.5745198386721313,-0.6348032369278371,0.008457327727228403,-0.8717220011167228,-0.5775232105515897,0.1620729649439454,0.963482700753957,-0.554860376752913,0.4392624949105084,0.327152319252491,-0.23981334315612912,-0.4911099304445088,-0.7540967501699924,0.026875254698097706,-0.06522807292640209,-0.6525419834069908,-0.3897071210667491,0.9390145661309361,0.6684215981513262,0.4477697089314461,0.3496295604854822,0.49077059514820576,-0.937512953300029,-0.21166683407500386,0.5671333731152117,-0.46611593291163445,0.7867569355294108,0.9230170072987676,0.9795468146912754,0.6689872886054218,-0.7435174332931638,-0.07016009604558349,-0.6315612350590527,0.8273307448253036,0.9924975368194282,0.6460464214906096,-0.48355582216754556,-0.2752309492789209,-0.25356370862573385,0.6081478060223162,0.5836532609537244,0.28751660557463765,0.5364259043708444,-0.1397277326323092,0.0033636209554970264,-0.30737221287563443,0.40522489324212074,-0.2725438610650599,0.9782759598456323,-0.31132032442837954,0.7532452028244734,0.38738652830943465,0.5048998477868736,0.5683975564315915,-0.4318903973326087,-0.07948453677818179,0.660664570517838,0.1574264937080443,0.38226783834397793,0.7498483434319496,0.23669647052884102,-0.4701897497288883,-0.46762963104993105,0.8348454763181508,-0.5407058936543763,0.8471971796825528,-0.12252887338399887,0.8146859756670892,-0.9431191179901361,0.3310067057609558,-0.40821165032684803,-0.7971723088994622,-0.6935529131442308,0.15558964293450117,0.7331962860189378,-0.7976914783939719,-0.4975548004731536,-0.839904519263655,-0.35932039096951485,0.9014938846230507,-0.18860866269096732,-0.9348316001705825,-0.6167762745171785,-0.16215582937002182,0.8299475759267807,0.7861621263436973,-0.7333068414591253,0.4046788443811238,-0.9515729397535324,0.7974556228145957,-0.28570447908714414,0.6620974908582866,0.24810405960306525,-0.7589829759672284,0.7406757138669491,0.3657214930281043,0.7998436698690057,-0.33408945286646485,-0.2631783760152757,0.41505367448553443,0.0936999162659049,0.5784824737347662,0.8034943472594023,0.6305567994713783,-0.34046959457919,-0.368614898994565,-0.28501530876383185,-0.8606850686483085,0.7922058021649718,-0.8704878468997777,0.2511576861143112,-0.11724519077688456,-0.8301932979375124,-0.8967282376252115,-0.00394561979919672,0.01190947787836194,0.5242121298797429,-0.41640681168064475,0.6300059696659446,0.6476154383271933,0.5172206596471369,0.48358196718618274,-0.32669623801484704,0.7899907059036195,0.48811817727983,-0.9282018207013607,-0.5177806108258665,-0.6132663888856769,-0.2454619719646871,0.43058988358825445,-0.703652152325958,-0.4586340868845582,0.31497524306178093,0.7246310110203922,-0.0676978281699121,-0.6318991472944617,-0.21490756422281265,-0.7075559129007161,0.02122238278388977,-0.719393415376544,-0.634668798185885,0.07871962571516633,-0.42846975196152925,0.8554487661458552,0.14941402152180672,-0.1744610844179988,-0.5355671220459044,-0.23487149272114038,-0.5782749778591096,-0.10777126997709274,-0.10123581439256668,-0.174966087564826,0.07809692667797208,0.35910074738785625,0.8662959672510624,0.5655835648067296,0.7698247861117125,0.4858480729162693,0.7923826035112143,0.03328217472881079,0.8425504178740084,-0.717724503017962,-0.023213116452097893,-0.3136581014841795,-0.7889495277777314,-0.9415013045072556,-0.08008536603301764,0.5297085572965443,0.7925109402276576,-0.32089038006961346,-0.20353469625115395,0.34330300986766815,0.5062712565995753,0.6095856237225235,0.04082455998286605,-0.6468323366716504,-0.14166551968082786,-0.6682739784009755,0.2715052920393646,-0.5637373249046504,-0.646117530297488,0.7513593533076346,-0.6431199321523309,0.33855180721729994,0.10744469286873937,0.3945238417945802,0.2922132923267782,-0.6384838535450399,-0.1747082290239632,-0.5533662703819573,-0.5711485329084098,0.4025141461752355,-0.6254666671156883,-0.3797212904319167,0.9886272023431957,0.36991238268092275,-0.6144631444476545,0.4566646940074861,-0.5145311113446951,0.8381064953282475,-0.769324445631355,-0.8570758299902081,-0.38737799832597375,0.11027531186118722,-0.09676352981477976,0.4908776395022869,-0.4777129413560033,-0.9193086470477283,0.3129512583836913,-0.26435084268450737,0.730163726489991,0.20349884778261185,0.9825714752078056,-0.2105611339211464,-0.9056208413094282,0.8366117202676833,-0.5091236201114953,-0.4718808135949075,-0.4676921470090747,-0.5993261835537851,-0.04939954122528434,-0.5049570295959711,0.39443177776411176,-0.7305253120139241,0.9605907653458416,0.772292208392173,0.38983868015930057,0.23657524352893233,0.6428596503101289,0.45359240006655455,0.21739457454532385,-0.07218309491872787,0.4239360257051885,-0.9395706718787551,-0.393166848924011,0.5744905639439821,0.2562208939343691,-0.598419698420912,0.23022668063640594,-0.22542657563462853,0.5880533577874303,0.5440772334113717,0.24560574628412724,-0.7902867584489286,0.7383415661752224,-0.16651821928098798,-0.7890979582443833,0.9949462781660259,-0.820683762896806,-0.006960243918001652,0.056422834284603596,0.28556289803236723,0.8874804889783263,0.6501978174783289,0.4049559128470719,-0.05439875088632107,-0.40719718765467405,0.9365860181860626,-0.20485547138378024,-0.2105428846552968,-0.9320577108301222,0.3591508874669671,0.15153613174334168,-0.48992628837004304,0.9497641338966787,-0.3389642839320004,0.9450533972121775,-0.054329564329236746,-0.2498390949331224,-0.493054891936481,-0.5693705729208887,0.20382871525362134,0.46388740884140134,-0.8246560110710561,-0.18323312886059284,0.1606507394462824,-0.7478581345640123,-0.41846876265481114,-0.9505853899754584,0.540780380833894,-0.6260372176766396,0.6502743870951235,0.625669167842716,0.038910841569304466,0.6941025513224304,-0.4592657070606947,0.7089476678520441,0.25577295245602727,-0.6131462743505836,-0.20261742593720555,-0.023233873769640923,0.18128416035324335,-0.24787869583815336,0.005493735428899527,-0.4783047726377845,0.5814623320475221,0.4173381198197603,-0.48419684264808893,-0.8907786258496344,-0.27895774878561497,-0.6791707812808454,0.0007694638334214687,0.4731861590407789,0.9951492426916957,-0.37197275878861547,-0.46220962749794126,-0.1607640152797103,0.25072102108970284,-0.7165114996023476,-0.456188571639359,-0.8351753619499505,-0.797924661077559,-0.2384414616972208,-0.25020299945026636,0.17893977742642164,0.808990856166929,-0.596238125115633,0.8787629613652825,0.7224579271860421,-0.6423841239884496,0.5566065702587366,0.20531914988532662,-0.6316760126501322,0.37296240543946624,0.4113372736610472,-0.18029608065262437,0.4797408515587449,-0.3591977874748409,0.8243540963158011,-0.7991571528837085,-0.9900363544002175,-0.35997876012697816,0.2342347325757146,0.8399278074502945,-0.8555341088213027,-0.7505182987079024,-0.4857786730863154,-0.12198371440172195,0.9180644517764449,-0.2811001115478575,-0.3783555068075657,0.212956755887717,0.5489003239199519,-0.610896882135421,0.6293009580112994,0.12145968247205019,0.12312350142747164,-0.7572844545356929,0.8188114813528955,0.8215174092911184,0.762690391857177,0.9120907434262335,-0.5405475934967399,-0.5114666321314871,-0.979615998454392,-0.7769610765390098,0.25807574950158596,-0.14340204885229468,-0.2867683144286275,-0.6444853604771197,0.6784952692687511,-0.9938666438683867,-0.7283366140909493,-0.4334612241946161,-0.6030382947064936,0.6471480382606387,-0.5904471231624484,-0.46319437911733985,-0.4776571160182357,-0.11862210603430867,0.5303662903606892,-0.9677071641199291,0.22906961245462298,-0.07477612886577845,-0.54214146733284,-0.36815999867394567,0.2246063998900354,0.6769773317500949,-0.31594968819990754,0.621915893163532,-0.8138375207781792,0.1972690373659134,0.01666561933234334,-0.675526665057987,0.06718143820762634,-0.7682866849936545,0.7077575270086527,0.0951360771432519,-0.21869779843837023,-0.9111781087704003,0.7829351285472512,-0.21781037421897054,0.06403083493933082,0.34208057122305036,-0.06527546467259526,-0.24475541478022933,-0.857974985614419,0.504013639409095,-0.6565657882019877,0.30204997304826975,0.7823254144750535,-0.9252641359344125,-0.13055708399042487,-0.6201554574072361,0.22267214441671968,0.8698708019219339,-0.020512625109404325,0.9548226157203317,-0.978299358393997,-0.5233399360440671,0.5886521507054567,0.8249795977026224,0.507537720259279,-0.23815267346799374,-0.1565340175293386,-0.7952129994519055,0.06840193038806319,-0.17116521624848247,-0.14619074994698167,-0.12333589000627398,-0.8229274861514568,-0.11497709527611732,0.8141374592669308,0.6046110289171338,-0.8715983722358942,-0.06552832946181297,-0.22280320199206471,-0.7414495311677456,0.2881356072612107,0.8003541799262166,-0.18989712838083506,0.9393779970705509,-0.21044465946033597,0.8563204784877598,0.047474547289311886,0.926233156118542,0.15728275291621685,-0.3744158367626369,0.9393320055678487,-0.30454026302322745,0.9893653155304492,-0.9359332858584821,0.017553371842950583,0.015948734246194363,-0.058956119697541,-0.8995728753507137,-0.3044486506842077,0.7046398133970797,0.956004508305341,-0.4913612534292042,-0.8651550598442554,0.567097557708621,-0.009500590153038502,-0.05207562120631337,-0.7432855702936649,0.6102886255830526,-0.18244979064911604,0.11244438355788589,0.5558828762732446,0.8380264337174594,-0.8252731589600444,0.4997131801210344,-0.6141965254209936,-0.21789419511333108,-0.3725110422819853,0.13010122952982783,0.546928234398365,-0.23926113592460752,-0.5041834209114313,-0.29281416395679116,0.7187078464776278,0.9090468077920377,-0.828129667788744,-0.7996579590253532,0.9073663833551109,-0.7400086801499128,0.2680454240180552,-0.9475821200758219,0.839241333771497,0.1968703931197524,0.2114232457242906,0.25812082970514894,0.49272345192730427,0.5857330891303718,-0.3262254064902663,0.05543378833681345,0.33603343088179827,0.7203978248871863,0.23274709656834602,-0.127212836407125,0.6690410440787673,0.04087610449641943,-0.14302775543183088,0.8081358913332224,0.11679384531453252,0.12203722633421421,0.5110036390833557,0.39581176126375794,-0.4548518224619329,0.3774158745072782,0.09304150426760316,0.5719224861823022,-0.7497368254698813,-0.6155989174731076,0.1608010996133089,-0.4970915224403143,-0.6753081432543695,-0.5455786259844899,-0.8156325020827353,0.3965176702477038,0.4989776383154094,-0.41108499374240637,0.39476652536541224,0.39585852390155196,-0.4775737775489688,0.4652263931930065,-0.657576838042587,0.1081720176152885,0.24073925521224737,0.09764780523255467,0.35648736264556646,-0.37798606138676405,-0.26386635890230536,-0.4295560969039798,0.20346158044412732,-0.5396689660847187,-0.7010629270225763,-0.23257416300475597,-0.6048049684613943,0.8509115208871663,0.9313691696152091,0.4351645358838141,-0.3848779811523855,0.8630134495906532,0.7811386063694954,0.2985464381054044,0.6871744999662042,-0.38038436276838183,0.6617625481449068,-0.30506295524537563,-0.6591030252166092,0.29691077396273613,-0.20106328325346112,0.7132639400660992,0.5080502750352025,-0.8578606313094497,0.2284870776347816,0.38070655474439263,0.10503834532573819,-0.5594987887889147,-0.20632046274840832,-0.2250508712604642,0.46846238477155566,0.2555091679096222,0.6133295707404613,0.651723644696176,-0.11545725399628282,-0.032126428093761206,0.286862522829324,0.8006695597432554,-0.6363559635356069,-0.4521855995990336,-0.19080316089093685,-0.2581071387976408,0.7111181584186852,0.3043736219406128,-0.3449552543461323,-0.43745425157248974,-0.9997540833428502,-0.5909324456006289,0.3868896020576358,0.22779409540817142,0.8501024092547596,0.7422510534524918,0.19143006019294262,-0.9744799202308059,-0.5383728239685297,-0.36425732960924506,0.9556580008938909,-0.9655028376728296,0.5066340854391456,-0.5896875360049307,-0.5224125753156841,0.46119405096396804,0.08636152697727084,0.8278604238294065,-0.40585940470919013,-0.8983315820805728,0.5129032121039927,-0.7641635038889945,0.7066992539912462,0.9013657299801707,-0.03920715721324086,0.9897781386971474,0.40150764444842935,0.012434400152415037,0.4091237187385559,0.6701000039465725,0.9396948143839836,0.770313679240644,0.9596352498047054,0.019020655658096075,-0.8625331581570208,-0.17747847503051162,0.5656278524547815,-0.6988808675669134,0.4616293744184077,-0.08589822612702847,-0.3797618383541703,-0.41891824128106236,-0.616634352132678,-0.9008646076545119,-0.9888355284929276,0.2533872779458761,-0.4703876031562686,0.7602861938066781,0.1236916147172451,-0.8489847262389958,0.8232622654177248,0.5427906382828951,0.9091458357870579,-0.7527156141586602,0.9089574320241809,0.9545290544629097,-0.8309689885936677,-0.8200281239114702,0.1931204181164503,-0.7599686114117503,0.5843129679560661,0.5531763844192028,0.15662934398278594,-0.12426014291122556,0.6964683425612748,0.3272837642580271,-0.8432159763760865,0.5773112750612199,0.24881219677627087,0.03033832786604762,-0.9043807033449411,-0.958581767976284,0.686959883198142,0.14778490737080574,0.8069055220112205,-0.14183861669152975,0.05710584158077836,-0.5390775827690959,-0.8196361879818141,-0.18100915336981416,-0.3110232069157064,0.29417491191998124,-0.20300574833527207,-0.34842927986755967,0.48670385032892227,-0.07343812752515078,-0.6171056814491749,0.15393040655180812,0.39511485025286674,-0.2749242070131004,-0.10256240796297789,0.08296593884006143,0.6493688430637121,0.18891516095027328,0.4195818384177983,-0.23449915600940585,0.9850700669921935,0.7397852363064885,0.03498571179807186,-0.5017676018178463,-0.6753815915435553,0.17394383484497666,0.3248433670960367,0.6431676549836993,0.06225108169019222,0.807642534840852,-0.19890264282003045,-0.8484057327732444,-0.8506879014894366,0.5711754164658487,0.8242738507688046,0.6666810279712081,-0.7048352477140725,-0.38991641718894243,0.3767530880868435,0.11993593582883477,0.22677673306316137,-0.11497964896261692,0.40304305916652083,0.21755280066281557,0.3540302524343133,-0.292005006223917,-0.9833975317887962,-0.00955147109925747,0.9789634542539716,0.4396411208435893,-0.5975644700229168,-0.37761649210006,0.20953961135819554,0.21562503604218364,0.9309084131382406,-0.8176254355348647,0.570120535325259,-0.12263870565220714,-0.5942200254648924,-0.3364628255367279,0.49292097287252545,-0.7585474466904998,-0.5337062957696617,0.16801496082916856,0.4469107957556844,0.18920559668913484,0.5163645441643894,0.20202239230275154,0.3189781019464135,0.43766553280875087,0.04164063651114702,0.8095286246389151,-0.025293655693531036,0.15974603733047843,0.9347714595496655,-0.8277068422175944,0.8172615813091397,0.888233635108918,0.8820063131861389,-0.40226720832288265,-0.540761745069176,-0.621667084749788,0.37224668078124523,-0.8493984718807042,-0.06560884695500135,0.6410509222187102,0.809720859862864,0.19529354851692915,-0.32154586585238576,0.12473098188638687,0.42488190764561296,0.6132858344353735,-0.5372468889690936,-0.7393707395531237,0.5081969760358334,0.0239833053201437,0.08506421279162169,0.8527776915580034,0.9577415296807885,0.6215176675468683,0.7051271060481668,0.9335456807166338,-0.4124409379437566,-0.2368695205077529,0.6381001747213304,0.33352169347926974,0.24419127264991403,0.08355323737487197,0.3393051070161164,-0.40535137709230185,-0.08721177093684673,0.5577926239930093,-0.29666220350190997,-0.7047788803465664,-0.6019564503803849,-0.4716085735708475,0.07399561675265431,0.8091612923890352,0.018627939745783806,0.9852074133232236,-0.5145965674892068,0.5872658737935126,0.5839222357608378,0.8278203108347952,-0.04936085920780897,0.9993166755884886,0.5786770624108613,-0.9740425213240087,-0.07111519714817405,0.9274997585453093,0.9194407328031957,-0.07230244670063257,-0.4950614511035383,-0.9642003960907459,0.8175588361918926,0.8266164674423635,0.2994873533025384,0.4312061630189419,0.22975954925641418,0.6353466645814478,-0.9223371488042176,-0.05105498665943742,-0.7614484024234116,0.9186533861793578,-0.6198343350552022,0.8984936904162169,-0.5362029098905623,0.09015938267111778,0.44603430200368166,-0.429699944332242,-0.423057921230793,0.27142470236867666,-0.47163476096466184,0.6050164704211056,-0.8032876462675631,0.3986595366150141,0.7747010663151741,0.17006344953551888,-0.7524429899640381,0.6091188103891909,-0.38487363792955875,-0.5205850261263549,0.6920910212211311,-0.1327347056940198,0.6313746860250831,-0.597751971334219,-0.8044576230458915,0.6341854808852077,-0.5113216266036034,0.93314462993294,0.03012503543868661,-0.4972407128661871,-0.22507474478334188,0.015595787204802036,-0.14677294297143817,0.5332984537817538,0.09859225619584322,0.0548442411236465,-0.17490197531878948,0.9450264219194651,-0.9734068084508181,-0.846612720284611,0.15364653756842017,0.7841877220198512,-0.3181077274493873,0.2586426096968353,-0.2156145521439612,0.4913094164803624,-0.7158497381024063,-0.3335253056138754,0.03517526388168335,0.4099506950005889,-0.17267866618931293,0.8770933425985277,0.2515750313177705,-0.5601149192079902,0.27050091372802854,0.641305276658386,-0.9708922640420496,0.34182135993614793,-0.9739250056445599,0.3947471370920539,0.2765558073297143,0.8824426406063139,0.4065538290888071,-0.6472012884914875,-0.8430593539960682,0.11970812501385808,0.17254276992753148,0.7412825510837138,0.5418208208866417,-0.9726968370378017,-0.29716164246201515,0.09615181246772408,-0.9322719261981547,0.5631023035384715,-0.2914313948713243,-0.44300001859664917,0.08505753288045526,-0.40594568755477667,-0.4256271789781749,-0.4414744167588651,-0.054109846241772175,0.8665844271890819,0.557638231664896,-0.23346818517893553,-0.5520492279902101,-0.5243815677240491,0.17834127228707075,-0.3852128074504435,0.9792905068024993,-0.005365068558603525,0.6210391502827406,0.5351072531193495,0.054005737882107496,0.32737981574609876,0.5865623326972127,0.4960563317872584,-0.24782680440694094,-0.7320457017049193,-0.7117554359138012,-0.1663593901321292,0.9090194767341018,-0.3384882383979857,0.8587840935215354,0.10652778204530478,-0.8225184162147343,-0.12609506817534566,-0.9926092009991407,0.594805293250829,-0.9783961232751608,-0.5898079425096512,-0.22519283555448055,-0.7508359281346202,0.8526103375479579,-0.34279657853767276,0.7755341343581676,-0.38886421360075474,-0.4267790950834751,-0.42039036517962813,-0.24686010414734483,-0.9901175578124821,0.03666113968938589,0.6040431633591652,-0.695692291483283,0.7676777057349682,-0.12199659226462245,-0.3186153578571975,-0.29943349212408066,-0.6384638547897339,0.9787307265214622,-0.049223626498132944,-0.3385888827033341,0.7633438115008175,-0.9832637282088399,0.10379206761717796,-0.3386889323592186,0.3932008445262909,-0.7403545519337058,0.6394969169050455,0.8587462208233774,0.8060571243986487,0.32689904142171144,-0.49998906813561916,0.711642250418663,0.6456959620118141,-0.235038619954139,0.870327390730381,-0.6466712774708867,-0.23917974345386028,0.9661876396276057,0.05078037269413471,-0.4607988288626075,0.8433545627631247,0.3660491229966283,-0.37014728551730514,0.00133878318592906,0.8130717305466533,-0.02471102587878704,0.9920242875814438,0.4934738539159298,-0.19178653694689274,0.0012478535063564777,-0.8126957411877811,-0.989455517847091,-0.7255759807303548,0.9671839936636388,-0.321618695743382,-0.746629991568625,-0.9767188555561006,-0.8456091298721731,0.1835623560473323,0.7664042818360031,0.0705150319263339,0.5195789765566587,0.8862376469187438,0.8925437447614968,0.31019486766308546,-0.4964709123596549,0.06893709767609835,-0.8462389097549021,-0.8794840634800494,-0.9956886926665902,0.8120304993353784,0.7861977438442409,-0.004787953104823828,-0.6840489199385047,-0.31475517340004444,-0.35096276132389903,0.17734371218830347,-0.014596682973206043,0.2900591539219022,-0.1247267285361886,0.5444638435728848,-0.7428969074971974,0.5652351565659046,0.23040510388091207,-0.9224796867929399,-0.03509190399199724,0.7645758707076311,-0.8842717809602618,0.8641771748661995,0.7257796344347298,-0.18152412585914135,-0.42246672231703997,-0.37224240507930517,-0.9897026224061847,-0.6382561312057078,-0.017453649546951056,0.04538033530116081,-0.5229956074617803,0.47819894878193736,-0.025091002695262432,-0.9371562357991934,-0.6665125591680408,-0.637483072001487,-0.4975534249097109,0.8175692949444056,0.8767813397571445,0.4746893453411758,0.5460084578953683,-0.46464792685583234,0.251623060554266,-0.3935774592682719,-0.22083563869819045,0.5689747137948871,0.35016516922041774,0.121323071885854,0.32208359939977527,-0.9641356682404876,0.06749137165024877,-0.6185406697914004,0.2125807204283774,-0.09369315579533577,0.01113323774188757,0.12398140737786889,0.6012376556172967,-0.17166618630290031,-0.05943040596321225,-0.006499625742435455,-0.05637846468016505,-0.31858790712431073,-0.35816452000290155,0.544653189368546,-0.20241833897307515,-0.4064800892956555,0.8440673612058163,0.8647843096405268,-0.860108723398298,0.7985976152122021,0.09244043473154306,0.41283497773110867,-0.3342884141020477,0.21021363558247685,-0.35899853333830833,-0.9104055077768862,-0.6670951377600431,-0.1384828919544816,-0.6234923442825675,-0.13931845221668482,-0.7169785797595978,0.23668852634727955,-0.5016499813646078,0.6012262352742255,0.16200109338387847,0.09956522053107619,0.7323201182298362,-0.8191056591458619,0.3624548837542534,-0.8741631768643856,-0.7464703065343201,-0.5501278373412788,-0.3339154147543013,-0.8751659304834902,0.17882565828040242,0.5127568780444562,-0.41081782383844256,-0.3149368418380618,-0.051692473236471415,-0.020442380104213953,0.11400541197508574,0.414058328140527,0.8397026276215911,0.7353429067879915,0.4448657091706991,0.774263639934361,-0.5040230830200016,-0.05403304984793067,-0.46329542715102434,-0.18577592633664608,-0.9136957433074713,0.7424900555051863,0.7693875413388014,-0.978891268838197,-0.9001126792281866,-0.5706060854718089,0.7884113397449255,0.05007884465157986,-0.5209927218966186,0.599444278050214,-0.21514809411019087,-0.6366791394539177,-0.3970553516410291,0.9150519659742713,-0.16790677048265934,0.721431702375412,0.9214998027309775,-0.5092065911740065,-0.18375851586461067,-0.022426466457545757,0.72199447453022,0.5613592080771923,0.29547104658558965,0.4174116039648652,0.9719999246299267,-0.3882345138117671,0.600131331011653,0.03718425938859582,0.9877036702819169,0.9421635349281132,-0.806572143919766,-0.19712736317887902,-0.5775138810276985,-0.2695035934448242,0.8375623235478997,-0.5628890711814165,-0.3818392204120755,-0.8350992165505886,0.3829800458624959,0.2973857489414513,-0.9382147840224206,0.36731921089813113,0.6396561660803854,0.13682401459664106,-0.8546504210680723,0.9225487001240253,0.23730352241545916,-0.9062087233178318,-0.7017076974734664,-0.15393803315237164,0.4732001842930913,0.8596010957844555,0.833912055939436,-0.5232136971317232,0.15738334227353334,-0.703910845797509,-0.8955360744148493,0.839542469009757,0.7095702160149813,-0.3377529811114073,-0.32089341431856155,-0.6068652272224426,-0.3659086390398443,-0.09984632860869169,0.11783867469057441,0.7689983709715307,-0.10200937511399388,0.16074507217854261,0.8965393048711121,-0.006632984150201082,-0.1257217745296657,-0.6813618391752243,-0.6938690720126033,-0.29549750639125705,-0.8444171468727291,-0.041337188333272934,-0.3978737974539399,-0.7437241482548416,-0.05343603389337659,-0.5998859889805317,0.6066884319297969,-0.5541544542647898,-0.6344905840232968,0.9753785827197134,-0.5573388393968344,-0.14580397913232446,0.4327123323455453,0.6646157139912248,0.2688811095431447,-0.7350697657093406,-0.41657931031659245,0.5117253633216023,0.25553776463493705,-0.22583782114088535,0.008316450752317905,0.31321289762854576,-0.4942760397680104,0.5873652175068855,-0.9878957606852055,-0.7552788867615163,0.5217694705352187,-0.38574676727876067,-0.9434697167016566,0.35579572850838304,0.2879932248033583,0.565307451877743,-0.5079756658524275,0.6922811977565289,0.2943185134790838,-0.6937040123157203,0.791576249524951,-0.900609272532165,0.4039383763447404,0.36012819269672036,0.7211190308444202,0.6576987435109913,0.5820739674381912,-0.8626588466577232,0.06355794565752149,-0.6616656258702278,0.8825912810862064,-0.050664505921304226,0.555698805488646,0.143507928121835,0.6767339487560093,0.8571501481346786,0.18234975775703788,-0.012381035834550858,-0.710692513268441,0.40334776183590293,-0.45297960145398974,-0.5771576054394245,0.29160497104749084,0.7596386694349349,-0.7687264140695333,-0.6690879510715604,0.13018119474872947,0.21413381583988667,0.18201201083138585,-0.8762827171012759,-0.06208334444090724,0.2302916911430657,0.6995742996223271,-0.19860642217099667,-0.6554315267130733,-0.9978298242203891,0.27151960087940097,-0.026276193093508482,0.2269438784569502,0.39386396668851376,-0.6070063910447061,-0.594272670801729,0.8103667329996824,0.1457678433507681,0.046706140507012606,-0.6657304489053786,-0.2649964354932308,0.7596102524548769,-0.3879184233956039,-0.4707243498414755,-0.03093545837327838,-0.24819779954850674,-0.7911622291430831,-0.7756762295030057,0.16895401664078236,-0.6637728526256979,-0.5368967773392797,-0.44738253438845277,0.5594681398943067,-0.8982074270024896,0.02396082179620862,-0.9047041810117662,-0.5874485215172172,-0.03789139166474342,-0.8149413107894361,0.39882139349356294,0.1921067675575614,-0.7288306085392833,0.9540427699685097,-0.40495120361447334,0.7754199635237455,0.4980085575953126,-0.3500098451040685,-0.11310518346726894,-0.914752890355885,-0.23076217900961637,0.5796150881797075,0.6538185537792742,0.1410380369052291,0.574227805249393,-0.08762586303055286,-0.6816193819977343,-0.4680319563485682,-0.9146327334456146,0.41829086607322097,0.14066434185951948,0.22574296267703176,-0.8351119332946837,0.9289791719056666,-0.23189697600901127,0.9335017302073538,0.29980382695794106,0.049737891647964716,0.7340532704256475,-0.9943403787910938,-0.8338219290599227,-0.5225321869365871,-0.6235247449949384,0.022232203744351864,-0.271009836345911,0.04310389282181859,-0.11250345036387444,0.10368338227272034,0.4203006806783378,0.29886323818936944,0.17497433861717582,0.27996677719056606,0.5506209372542799,-0.5382512393407524,0.8413222162052989,-0.1894623995758593,0.3396858833730221,-0.000705184880644083,-0.4248607410117984,-0.1039453879930079,0.3452641870826483,0.42854494182392955,-0.34295846661552787,0.6592366280965507,0.7620218005031347,-0.6618808233179152,-0.04684125725179911,-0.8056307472288609,-0.33061605133116245,-0.18219626089558005,0.27348015597090125,0.6404556850902736,-0.18718218430876732,0.5164535818621516,0.08214103057980537,0.2468388769775629,-0.3906393554061651,-0.5290667591616511,0.9049095851369202,-0.3648356944322586,-0.705203631427139,-0.8959556175395846,0.10180725390091538,-0.12871437612921,-0.672312197741121,0.5181718594394624,0.2368395053781569,0.23529561795294285,-0.6295052994973958,0.6912654391489923,0.8746791370213032,-0.8034534589387476,-0.452312930021435,0.37876432621851563,0.9199710707180202,0.5110046886838973,-0.8366112890653312,-0.4132404625415802,-0.9718828359618783,-0.38258665380999446,-0.6294912653975189,0.9396383445709944,0.7188526769168675,0.6308132582344115,-0.21892330795526505,0.35975991003215313,0.6581167075783014,0.57720344979316,-0.37965417513623834,0.029680591076612473,-0.2021873788908124,0.2715099472552538,-0.7076105317100883,0.5127573772333562,0.5795350964181125,-0.32974301604554057,0.8579092426225543,0.47155180014669895,0.9646138926036656,-0.7680194959975779,-0.9708010242320597,0.7920815935358405,0.913135880138725,-0.04232749342918396,0.6203926466405392,-0.7068519652821124,0.7816290683113039,0.7151033105328679,-0.7109175696969032,0.458811161108315,0.14308454701676965,0.668802565895021,-0.3394661657512188,-0.31346554961055517,0.2901931474916637,0.701114549767226,0.6718913838267326,-0.7047992455773056,0.7494258126243949,0.5608582487329841,0.4436532133258879,0.5457451902329922,-0.3453588983975351,-0.252394562587142,0.8342655589804053,0.4008509926497936,0.6230932106263936,0.9802456493489444,-0.43409673077985644,-0.7097916277125478,0.8633645665831864,0.8123874794691801,-0.6829406102187932,-0.03590574208647013,0.12011658400297165,0.8844717866741121,0.7844700389541686,0.29577688593417406,0.9147475357167423,0.6716388217173517,-0.4583802381530404,-0.6485158354043961,0.6311836587265134,-0.7092404076829553,-0.10188945708796382,-0.3706643017940223,-0.17767083877697587,-0.6195624503307045,-0.17393135791644454,-0.23536739870905876,0.7208057991228998,-0.32886072946712375,0.2572482852265239,0.40519156819209456,-0.8375969617627561,0.8169102710671723,-0.4796575391665101,-0.21628212928771973,0.24349573021754622,-0.7793213548138738,-0.602192719001323,-0.46715402277186513,0.7569865370169282,-0.5452996846288443,-0.9163830201141536,0.7742866612970829,-0.8883202555589378,0.02160104224458337,-0.1383552299812436,-0.5401890142820776,0.634579170960933,0.37085675867274404,-0.1275819386355579,-0.1910621067509055,0.8454784178175032,0.03540134243667126,-0.534407798666507,0.05557534657418728,-0.8037959835492074,0.015705663710832596,-0.9497908866032958,-0.9177474780008197,0.7971811313182116,-0.5372464628890157,0.9958302113227546,0.29161780001595616,-0.9105107472278178,0.28345520328730345,-0.3584450366906822,-0.719668089877814,-0.9876726451329887,-0.5237827990204096,-0.5584184168837965,0.744510259013623,-0.37644873606041074,-0.38006782066076994,-0.9045880711637437,-0.4554772502742708,0.229316343087703,0.9173435978591442,-0.9745420585386455,-0.7403828841634095,-0.004688786342740059,-0.8632851745933294,0.26638508681207895,0.9988055946305394,0.14830390084534883,-0.015415044501423836,0.8375675468705595,-0.9814079473726451,0.3161352500319481,0.39704526122659445,-0.09337985701858997,0.8387610390782356,0.08539953641593456,0.990092322230339,0.33160793874412775,-0.25371715147048235,0.5819581844843924,-0.89551019994542,0.2539561716839671,-0.6882573226466775,0.6598171321675181,-0.6197975208051503,0.6810018392279744,-0.7019864534959197,-0.21473198104649782,-0.9792843032628298,0.46213922929018736,-0.4835024052299559,-0.1394713083282113,-0.26307771960273385,0.733981475699693,0.9057305008172989,-0.937846340239048,-0.5630754823796451,0.23531231470406055,0.02004806511104107,0.39080954948440194,0.25859346566721797,0.004543405491858721,-0.4158751368522644,-0.9416433069854975,-0.36694349627941847,-0.05628819577395916,0.09427375951781869,-0.5040540061891079,-0.6300341035239398,0.6824445407837629,-0.6116691292263567,-0.8667298313230276,-0.46182142198085785,-0.8835118296556175,0.1851485720835626,0.008190148044377565,-0.7691245558671653,-0.9369419733993709,0.7679367051459849,0.241260495968163,0.7303160727024078,0.18366202106699347,-0.0767143783159554,-0.4317946550436318,-0.2583848717622459,-0.9718150603584945,0.592338100541383,-0.8358373725786805,0.3823507819324732,0.6130495928227901,0.019200507551431656,-0.11570654949173331,0.6970004704780877,-0.6560339662246406,-0.7919014757499099,0.9935251474380493,-0.09770474908873439,-0.3562498539686203,0.8240408129058778,-0.827244836371392,-0.3035154789686203,-0.32396294130012393,0.17376343486830592,-0.7096984512172639,0.7283431114628911,0.9087967053055763,0.9750427822582424,0.4882521750405431,0.5345217995345592,0.16912962961941957,0.5440137959085405,-0.7026317962445319,-0.18023171834647655,-0.2377818739041686,-0.13958865636959672,0.08383164182305336,0.9163336395286024,-0.8573572621680796,-0.8976576486602426,0.2359326956793666,-0.5593322133645415,-0.2037033410742879,-0.720738482195884,-0.9968890673480928,-0.5420460095629096,-0.01506117545068264,-0.5102689345367253,0.8500334634445608,-0.8443664982914925,0.66337348241359,0.20658707665279508,0.16136913793161511,0.5983287235721946,0.2685068850405514,0.453313915990293,0.8151494446210563,-0.4530416578054428,0.6236256482079625,-0.9312454340979457,0.20876874681562185,-0.4270044402219355,-0.3197551080957055,0.04045699769631028,-0.8935097781941295,-0.6255299937911332,-0.051032436080276966,0.18029329180717468,0.3022673330269754,-0.560810110066086,-0.03786370810121298,0.4663464231416583,-0.2089618779718876,-0.705137291457504,0.6596997785381973,0.9588294415734708,-0.7416095500811934,-0.9914347445592284,-0.22441398538649082,-0.04897553147748113,-0.33257282013073564,0.4372292775660753,-0.7394968653097749,-0.7123847850598395,0.5180116398259997,0.2938604140654206,-0.2146900868974626,0.07713396660983562,-0.6519244993105531,0.4412394743412733,-0.8497279044240713,0.07310917600989342,0.32741803443059325,-0.21108081517741084,0.8289109230972826,0.4895631670951843,0.40458556497469544,0.5991194327361882,-0.19875805312767625,-0.9937722636386752,0.876263958401978,0.32716144109144807,-0.5757481511682272,0.7944990335963666,-0.914238762576133,-0.991516079287976,0.9705962603911757,-0.9047664562240243,0.44155935291200876,0.8378827152773738,-0.004075144417583942,0.5351401828229427,-0.24193580681458116,0.8765234481543303,-0.9236275488510728,0.8345471322536469,0.7443540254607797,0.6434199730865657,-0.13665542844682932,0.9016667427495122,-0.24501638067886233,0.12074295897036791,0.3952869204804301,-0.7635272648185492,-0.31069633085280657,-0.765355696901679,-0.6281902082264423,-0.36844505928456783,-0.9166432837955654,-0.09032015921548009,0.5689163319766521,-0.6091109155677259,-0.002171669155359268,0.24034431762993336,0.27055994933471084,0.2688069795258343,0.2771689658984542,0.7685720520094037,0.08125346805900335,0.4158295984379947,-0.2415531245060265,-0.6990142939612269,-0.7881701164878905,-0.2758120479993522,-0.8432177151553333,-0.23863594001159072,0.07052913680672646,0.9238279955461621,-0.3783182958140969,0.08121725963428617,-0.37539707589894533,-0.6290988647378981,-0.21460182033479214,-0.6133829192258418,-0.9621025826781988,-0.2986571383662522,-0.9766726163215935,-0.10146557679399848,0.11261765658855438,0.6882614572532475,0.5400415691547096,0.654401087667793,0.7916832277551293,-0.45086988201364875,0.11701277131214738,-0.2271677446551621,-0.6251859553158283,0.7520685996860266,0.6467606322839856,0.0621172059327364,-0.7224478051066399,-0.676205936819315,-0.7491146842949092,0.2226654263213277,-0.9738879129290581,0.8044837643392384,0.11585154570639133,-0.8148832288570702,-0.6893501975573599,0.26350230257958174,-0.08417389309033751,-0.9633402950130403,-0.5045156655833125,0.7549010408110917,0.12602935964241624,0.272237298078835,0.037501244340091944,-0.7213892377912998,0.5338280261494219,-0.4704691395163536,-0.5771530419588089,-0.8202257882803679,-0.5775146572850645,-0.2771718488074839,0.3361126761883497,-0.15106019377708435,-0.6853525233455002,0.32436362095177174,0.12053416110575199,-0.15575961722061038,-0.6933681662194431,-0.6942088883370161,-0.6262649390846491,0.7756036170758307,0.2333143656142056,-0.9468345893546939,-0.7175585110671818,-0.6410028589889407,0.18570325477048755,-0.700868483632803,0.3189525818452239,0.6017209105193615,-0.7855842262506485,0.3111711838282645,0.890533646568656,0.9102076482959092,0.5311539205722511,0.1484996830113232,-0.09793836949393153,0.9111674735322595,-0.2586856777779758,0.5979434298351407,0.8253810787573457,-0.20776947867125273,0.08842738019302487,0.7171830669976771,0.662813859526068,0.06656090449541807,-0.9734963751398027,0.7593422373756766,-0.19566848408430815,-0.7214548769406974,-0.5159915531985462,0.2979752351529896,-0.7004611790180206,0.4502874044701457,-0.8417962766252458,0.03578746970742941,-0.3412596434354782,0.531147541012615,-0.33166443929076195,-0.570228305645287,0.9506748816929758,0.5090072005987167,-0.6197410514578223,-0.510254078079015,0.2573555400595069,-0.0301826442591846,-0.08319808123633265,-0.03134046448394656,-0.3189890054054558,0.14883244736120105,0.8589481329545379,-0.7240583770908415,0.6613367991521955,0.06809786055237055,0.8210394605994225,0.2697612508200109,-0.9810909498482943,-0.1665076739154756,0.7156810462474823,-0.42536405147984624,0.3364984756335616,0.8914534719660878,-0.4034457546658814,0.19723916426301003,0.5431984411552548,-0.7696466632187366,-0.4094196013174951,0.43852347740903497,0.42898824578151107,0.004861903842538595,-0.8349082423374057,0.18040991062298417,0.7817466333508492,-0.390316906850785,0.6393260839395225,0.1892626299522817,-0.5132891112007201,-0.2839220557361841,-0.257752048317343,0.6234815451316535,-0.5462180832400918,-0.03899152157828212,0.6997598386369646,-0.09323775256052613,-0.5161023503169417,0.2649026829749346,-0.21943915309384465,0.7917057573795319,-0.09334741439670324,0.3297314280644059,0.5947561538778245,-0.5346112963743508,0.23259857250377536,0.09840317210182548,-0.30025362223386765,0.20502623403444886,-0.5723069761879742,0.18787696724757552,0.8786581181921065,-0.6700952891260386,0.903749571647495,0.44428999861702323,0.4308576672337949,0.05260385712608695,0.4339646524749696,-0.8722065039910376,0.1393789448775351,-0.27617476135492325,0.4633238073438406,0.36943222489207983,-0.8384503214620054,0.650502348318696,0.1726678074337542,0.05634363042190671,-0.9773984174244106,-0.26210073474794626,0.7958332770504057,-0.7463346403092146,-0.7651786315254867,-0.5160165675915778,-0.20677918009459972,0.9568690401501954,-0.6799715426750481,-0.4315523440018296,0.8168758819811046,-0.27692170022055507,0.11741398321464658,-0.12685946701094508,-0.36837835470214486,-0.16762910224497318,-0.2782903746701777,0.18899236572906375,0.35744409868493676,-0.08919009286910295,0.0010736901313066483,0.3089597034268081,0.3399717528373003,0.4014185443520546,0.8100356901995838,0.029807759914547205,0.12803926225751638,0.7847924772650003,-0.6650251080282032,-0.08707338478416204,-0.21506288973614573,-0.9843323267996311,-0.2481539067812264,-0.4497865098528564,-0.48378744488582015,-0.14987205620855093,-0.974342857953161,0.16062654741108418,-0.3159967162646353,-0.46984381694346666,0.74266426730901,0.3129976144991815,0.3069231426343322,0.2133177649229765,0.328303465154022,-0.01674557663500309,0.5536384345032275,-0.21287616668269038,-0.5147416056133807,0.7325965110212564,0.3977926089428365,-0.09247521637007594,0.9526702840812504,-0.9790113694034517,-0.11272906744852662,-0.044270474929362535,0.6467747474089265,0.020675910636782646,0.9976451187394559,0.9403681382536888,0.7934922804124653,0.8018002435564995,-0.002432003151625395,0.024303158279508352,-0.9831159138120711,0.4927033088169992,-0.5394597114063799,-0.19670746149495244,-0.24316249648109078,-0.5692191366106272,0.09738139947876334,-0.004427111707627773,-0.574579153675586,0.5173442997038364,-0.9222763013094664,-0.5863925502635539,0.5788736096583307,0.10212492337450385,-0.3555676178075373,-0.26220761332660913,-0.07540561817586422,0.4200996523723006,-0.5360885541886091,0.9569591931067407,-0.1550482353195548,0.5370485773310065,0.10539724864065647,0.21635977132245898,0.6573370792903006,0.2138932808302343,-0.9245356284081936,-0.079874771181494,-0.33454621816053987,0.3311226926743984,-0.8770662005990744,0.6898685451596975,0.13261174503713846,0.4954206249676645,0.6250286055728793,0.6149952081032097,-0.28552959533408284,0.8421233464032412,0.3369884449057281,0.7970941085368395,0.987487779930234,-0.7753717401064932,-0.2995934681966901,-0.5769100417383015,0.027357416693121195,-0.8527493313886225,0.2989611425437033,-0.1827028407715261,0.7938167327083647,-0.18892138544470072,0.18954078201204538,0.09981844713911414,0.5873199268244207,-0.5648878677748144,-0.3704436058178544,0.7530583194456995,-0.40176642360165715,0.32861586892977357,0.2989375777542591,0.2874071979895234,-0.7233772003091872,-0.6542131528258324,0.8254921939224005,0.9973866515792906,-0.9227157905697823,-0.10942962346598506,-0.3265100084245205,0.028584216255694628,-0.928917660843581,-0.3590350244194269,0.5961631601676345,0.15290492866188288,0.7747130985371768,0.1789671117439866,-0.07421468943357468,-0.22357041900977492,-0.36288718925789,-0.48541791550815105,0.2875022031366825,0.8303504139184952,0.5854905052110553,0.4332083906047046,0.12605959922075272,0.16662649624049664,0.850944307167083,0.7524480000138283,-0.8935981774702668,-0.6248529707081616,0.7650203104130924,-0.9706528568640351,0.5509169395081699,-0.791710555087775,-0.02295550098642707,0.522408755030483,0.20185830956324935,-0.7018627603538334,0.009831138886511326,-0.8215470025315881,-0.4059427068568766,-0.8967855316586792,0.8328784769400954,-0.49077345058321953,-0.11546278046444058,0.8887551636435091,0.5159782734699547,0.29207494715228677,-0.8980269343592227,0.57507548853755,-0.3579529793933034,0.5364028359763324,0.9673660243861377,-0.7276506633497775,-0.36383275501430035,-0.7755315667018294,-0.5205822885036469,0.05835051881149411,0.21627635415643454,-0.15272426744922996,0.5946818189695477,-0.4997066338546574,0.3454860467463732,0.1982441279105842,-0.5336216925643384,-0.7565129669383168,-0.2729224367067218,-0.8625111049041152,-0.5012647933326662,0.20117485662922263,0.4050106583163142,0.07800277601927519,0.2287230403162539,0.34870958235114813,0.06897579180076718,-0.4607477611862123,-0.9807601533830166,0.4113535927608609,0.09771161805838346,0.5111426231451333,-0.03178535494953394,0.9828476719558239,-0.948275888338685,0.9032853986136615,0.7188306036405265,0.1621101014316082,0.80630655400455,-0.08493568561971188,-0.2647733027115464,-0.5610555652529001,-0.5161013915203512,-0.5785244242288172,0.8582489746622741,-0.853281388990581,0.8454187610186636,-0.7115059420466423,0.18811431573703885,-0.031955333426594734,-0.6585505022667348,-0.7897529150359333,0.3316056849434972,-0.6972063747234643,0.46486397041007876,-0.06964824721217155,-0.8223060118034482,-0.7650638096965849,-0.4760231142863631,0.018268560525029898,0.9221584545448422,-0.8634940148331225,-0.32445200346410275,-0.3192313867621124,-0.0394054283387959,0.9906088961288333,0.25058781215921044,0.29865967901423573,-0.14675487903878093,-0.24828466586768627,0.8987130373716354,0.5546821309253573,-0.9868067475035787,0.16196030052378774,-0.7583650532178581,0.8993886201642454,0.15268946392461658,0.5263896826654673,0.3049874217249453,0.4579177866689861,0.34437390649691224,0.10757018812000751,0.9525261642411351,0.44363350747153163,-0.21389678353443742,0.402663916349411,0.18063065595924854,-0.9240587903186679,0.2264910601079464,0.5412703175097704,0.34791317442432046,0.25185396475717425,0.42486602906137705,0.40118522057309747,-0.7939926399849355,0.5401061354205012,-0.7164856200106442,-0.5842132992111146,0.7197048044763505,-0.46407914673909545,0.9324064226821065,0.6179021266289055,0.6434229812584817,0.5090973223559558,-0.10665021976456046,0.6497698375023901,-0.5046598869375885,0.38342528184875846,-0.7296083262190223,0.7635415140539408,0.4050372149795294,-0.9523115437477827,0.22228930005803704,-0.43021376617252827,-0.9466164410114288,0.6168791023083031,-0.006414683535695076,0.4533534306101501,0.7152963522821665,-0.33370169112458825,-0.2348184217698872,0.8755088029429317,0.17850299319252372,-0.16882157884538174,-0.9179991181008518,0.9417960527352989,-0.7561467112973332,-0.1268520695157349,0.8326513138599694,0.6654797666706145,-0.6070884629152715,0.8787982501089573,-0.8243023222312331,0.8642126475460827,-0.8515013479627669,-0.024356354027986526,-0.630342804826796,-0.969650961458683,-0.7684350204654038,0.851718433201313,0.13158149365335703,-0.9500137576833367,0.07138012815266848,-0.7718807384371758,-0.7459048954769969,-0.045963168144226074,0.44654024858027697,0.5787577917799354,-0.7372320052236319,-0.9266630336642265,-0.20886212633922696,-0.7526197507977486,-0.5087591400370002,0.20410406030714512,0.896051961928606,0.2942436649464071,0.7512528672814369,0.5381246693432331,0.5259321588091552,0.9235700587742031,-0.374121967703104,-0.09934784099459648,-0.6968974564224482,-0.9026907561346889,0.4351299200206995,-0.8360730679705739,-0.010356827639043331,0.9108223877847195,-0.6617079987190664,0.2891050926409662,0.517095347866416,-0.08942435588687658,0.21991682285442948,-0.6730424230918288,-0.28260709438472986,-0.07795328134670854,-0.11115779541432858,-0.6041477844119072,-0.011776603292673826,0.3736226372420788,-0.2778749414719641,-0.12435155967250466,0.9155340078286827,-0.30875203013420105,-0.7506200587376952,-0.8390342630445957,-0.09007949149236083,0.017675178591161966,0.9322140589356422,0.7289987895637751,-0.5044048111885786,-0.44817615021020174,-0.6654477478004992,-0.2950525931082666,0.6614723061211407,0.8387201768346131,-0.9416131405159831,-0.9451989578083158,-0.6763804196380079,-0.8454242111183703,-0.6247946084477007,0.1962866992689669,0.2667452865280211,-0.1219442025758326,0.12159203318879008,0.9535924047231674,0.43561322055757046,-0.7443693811073899,0.16851052129641175,-0.9989463230594993,-0.34948117518797517,0.690458859782666,0.8880151342600584,0.8189090946689248,0.7948696361854672,0.052817854564636946,-0.20453978469595313,-0.21997130336239934,0.39970464911311865,-0.7565248957835138,-0.5039976593106985,0.0455298419110477,-0.9288141666911542,0.362432561814785,0.10520253190770745,-0.7958341557532549,-0.7624184140004218,-0.9020438026636839,0.1866966700181365,-0.6131643452681601,0.5339900753460824,-0.5775246494449675,-0.5159452972002327,0.18613499170169234,-0.6168650249019265,-0.9871104639023542,0.29688077233731747,0.8915355429053307,0.8269989141263068,-0.3629821790382266,0.2336963894777,-0.41119177313521504,0.13662763824686408,-0.2605789601802826,-0.7611875729635358,-0.4330651704221964,-0.09419848583638668,-0.25197926443070173,-0.765988967847079,0.6377054136246443,-0.775842129252851,-0.46017241943627596,-0.9733281773515046,0.4605892254039645,-0.5599712016992271,-0.8457278041169047,0.08650582889094949,0.23059648321941495,-0.8522508214227855,-0.7777643431909382,0.5028234026394784,-0.5922515047714114,-0.773768961429596,-0.8976539582945406,-0.8465789845213294,-0.8654496353119612,0.6814240189269185,-0.6358907106332481,0.9552408247254789,-0.44431989220902324,-0.6041412535123527,-0.7903293799608946,0.33919590106233954,-0.39776868745684624,-0.8295299946330488,-0.8038200633600354,0.7870902605354786,-0.5739731076173484,0.2612352930009365,0.4406241150572896,0.21394267724826932,-0.8055657665245235,0.07211201172322035,-0.04548154305666685,0.6130709876306355,0.8443615208379924,0.4546758318319917,-0.10418266151100397,0.5338823241181672,0.08890405390411615,0.7962552919052541,0.06623913673684001,0.8591671381145716,0.5280189900659025,-0.8281142641790211,0.4180285334587097,-0.5615993677638471,-0.12066235207021236,0.8223891817033291,-0.3021444887854159,0.49565332708880305,-0.05458824150264263,-0.08395657455548644,0.3407564293593168,-0.18217858858406544,0.38723959401249886,-0.260218711104244,0.36184037383645773,-0.29123641597107053,0.7924155266955495,-0.7317472752183676,-0.7097005457617342,0.5974149121902883,-0.7385431942529976,0.6312324446626008,-0.7563332254067063,-0.8681542505510151,0.6314282570965588,0.551479340530932,-0.826576485298574,0.4583901287987828,0.47720259381458163,0.12101244181394577,0.3836503364145756,0.7992256139405072,-0.2311366554349661,0.022233549039810896,-0.759931459557265,0.8118424392305315,0.35086339339613914,-0.9904452073387802,0.14221336459740996,-0.9522731341421604,-0.2652816320769489,0.8427925957366824,-0.5314556695520878,0.7982004201039672,0.9343889951705933,0.3892571064643562,-0.9483133745379746,-0.7421882776543498,0.15236189076676965,-0.8350587692111731,-0.3706049853935838,-0.11114449892193079,0.6582817588932812,-0.5442919945344329,0.1797832241281867,0.0529512669891119,0.8489242088980973,0.6647428399883211,0.4059825139120221,-0.6472794581204653,-0.878735869191587,0.3724361849017441,-0.21235552988946438,0.4198840791359544,-0.6666619363240898,-0.26596494298428297,0.9707536776550114,0.20976361632347107,-0.050194880459457636,0.28507972275838256,0.4604819160886109,0.9764224272221327,-0.7421302674338222,-0.2880398561246693,0.6553161605261266,-0.6947743347845972,-0.8295966307632625,-0.5590663938783109,0.30342941964045167,0.3436271930113435,-0.6009632726199925,0.19593409076333046,0.8480119085870683,-0.7121008834801614,-0.13890512054786086,-0.7507634507492185,-0.5978621295653284,0.9480548603460193,-0.01850046031177044,-0.5334031959064305,0.7965146698988974,0.8242629417218268,0.5011339467018843,0.22986327344551682,-0.07637467049062252,-0.37200143514201045,0.15011498564854264,0.41665961034595966,-0.7736484506167471,0.9967312589287758,-0.714467326644808,-0.8254890372045338,0.7242721640504897,0.33659138111397624,0.38760805130004883,-0.18547103367745876,-0.17686969228088856,-0.8413750384934247,-0.512766748201102,0.25604434963315725,-0.6361682848073542,0.45716769387945533,-0.38954214472323656,-0.7647128822281957,-0.24917568173259497,0.6347589762881398,0.94072550162673,0.893597440328449,0.8713574446737766,-0.7186665781773627,0.9496193258091807,-0.8746849838644266,-0.2662244881503284,-0.5545005616731942,-0.12738118413835764,0.9852980491705239,-0.4270249051041901,0.011732392944395542,-0.5683464067988098,0.0888270428404212,-0.2308851107954979,-0.5365782352164388,-0.026498448103666306,0.4779837499372661,-0.5440580830909312,-0.5727083752863109,0.41722795739769936,-0.3468077373690903,0.9887699349783361,-0.588627805467695,0.5796259655617177,0.49065607273951173,-0.08603920415043831,0.2463696259073913,-0.4566940600052476,0.8210298931226134,-0.4303278885781765,0.2598117431625724,-0.2623295350931585,0.4807368782348931,0.5978970765136182,0.013659755699336529,-0.05989650636911392,0.45654793502762914,-0.5242918711155653,-0.1120986477471888,0.7267452059313655,-0.3150520999915898,0.28678047750145197,-0.39270721655339,0.5118420985527337,0.7177293305285275,0.02611899236217141,0.296722908038646,-0.21007106732577085,0.16405321191996336,0.1579373055137694,0.06478289049118757,-0.7162465127184987,0.23587630642578006,-0.7529574292711914,0.13491079583764076,-0.9571329010650516,0.007994424551725388,0.9277216638438404,-0.811327853705734,0.8616186855360866,-0.32473083352670074,0.8146698088385165,0.34295701747760177,0.08037214865908027,-0.9746276568621397,-0.6267062816768885,0.34910185914486647,0.7973828762769699,0.7305890051648021,0.4857871141284704,-0.24642317462712526,-0.8050927775911987,-0.3292700881138444,0.6124125057831407,-0.6604729904793203,-0.6485718069598079,-0.7594376425258815,0.6029687323607504,0.17476150300353765,-0.5326073397882283,0.7088765627704561,0.05280398344621062,0.8091049026697874,0.6696747415699065,-0.4544780976139009,0.6328819035552442,0.11892423965036869,0.6430037380196154,0.24263791739940643,0.24242268921807408,0.11139076109975576,-0.44267105171456933,-0.36527814622968435,0.23200503503903747,-0.7119332095608115,0.3178247273899615,0.11953014554455876,0.4332988685928285,-0.16109302267432213,-0.9321359726600349,-0.9078089911490679,0.2912841192446649,-0.3578313710168004,-0.37391347950324416,-0.8826168738305569,-0.18849307112395763,0.8572758412919939,0.937118383590132,-0.22455387795343995,-0.49079017294570804,0.029704944230616093,0.7588932812213898,0.6751414029859006,-0.39447951642796397,0.19009306002408266,0.20853525027632713,-0.672171728219837,-0.3040033117868006,0.6222493313252926,0.4865311183966696,-0.30569380847737193,-0.09069052850827575,0.4003360322676599,-0.3299406305886805,-0.4252682067453861,-0.29288984974846244,-0.3997006108984351,-0.13912600418552756,-0.2905756779946387,0.8991142893210053,-0.46942606288939714,0.35511728329584,-0.5988984848372638,-0.8466811492107809,0.36551066394895315,0.3689439380541444,-0.015449509024620056,0.04032329563051462,0.7052260590717196,-0.49055817164480686,-0.724262144882232,-0.08204287011176348,0.24587750667706132,0.03594494750723243,-0.656693662982434,-0.1849657418206334,0.5589695991948247,0.6363378441892564,0.5983740747906268,0.5968945864588022,0.34751987690106034,-0.18198412284255028,0.6251953095197678,-0.8582177860662341,0.5543406843207777,0.6879910691641271,0.7106577693484724,0.3842106815427542,-0.9166719722561538,-0.9007852706126869,-0.46129402378574014,-0.567912177182734,0.17681104550138116,0.16369407577440143,-0.7042085751891136,0.9696031976491213,-0.37940566428005695,0.4824655163101852,0.43185665225610137,-0.399940702598542,-0.16628670552745461,0.655514984857291,0.2946175108663738,-0.8409297070465982,-0.538696859497577,0.3128038668073714,-0.3785572634078562,-0.7416558768600225,0.058558342047035694,0.3852614411152899,0.1114922696724534,-0.18898565601557493,-0.8398868036456406,-0.6220332533121109,-0.672947455663234,0.7258619097992778,0.9658614140935242,0.022398226894438267,-0.7623007576912642,0.03725721500813961,-0.88978206878528,-0.3886378975585103,-0.8760336171835661,0.9415690274909139,0.8723436174914241,-0.10692761139944196,0.4691397757269442,-0.9641318442299962,-0.733521502930671,-0.21348422998562455,-0.3575862096622586,-0.5716072930954397,0.30435870215296745,0.36399888154119253,0.5293091582134366,0.31397135788574815,0.19952018233016133,0.586041605565697,0.19731966499239206,-0.12140991538763046,0.4429318066686392,-0.9723369609564543,-0.8419677265919745,0.12431622995063663,0.8909511268138885,-0.47115253284573555,0.16481636092066765,0.11784695368260145,0.5140717253088951,-0.10691608069464564,0.532441895455122,0.23638604441657662,0.8172374423593283,-0.3423497062176466,-0.056225715670734644,-0.2116167088970542,-0.08154602255672216,-0.731128812301904,0.217459199950099,0.7653480381704867,0.41752009419724345,-0.5706953168846667,0.09166046371683478,0.6789779192768037,0.6726948996074498,-0.003741084598004818,-0.8201340981759131,0.10705457953736186,0.32161415182054043,0.9836072204634547,0.8248898801393807,-0.4480924350209534,-0.2104040696285665,-0.6143837366253138,0.464344949927181,0.9601833275519311,-0.9104019007645547,-0.7763394480571151,-0.9665950294584036,0.5848241397179663,-0.3135500783100724,0.9238980924710631,-0.0733109163120389,-0.2712103519588709,-0.07794377533718944,-0.9523640461266041,0.8547805529087782,-0.15481448592618108,0.5017937710508704,0.12814169423654675,-0.7952756201848388,0.3469097362831235,-0.7736809570342302,0.19531328044831753,-0.09407550748437643,-0.2269689403474331,0.7142226900905371,0.9985600896179676,-0.3315294380299747,-0.8474062457680702,-0.1658324017189443,0.9090770282782614,-0.30704042175784707,-0.8079629894345999,0.2165825660340488,-0.7667754464782774,-0.015096619725227356,-0.6427622362971306,-0.5575560331344604,0.6455729804001749,0.7934287046082318,0.3799186134710908,-0.9815515861846507,-0.7515615178272128,0.4139619511552155,-0.7361614177934825,-0.5518037769943476,-0.49299676856026053,-0.23430905537679791,0.7022230345755816,-0.6559967687353492,-0.7354665920138359,-0.30695805326104164,-0.6215604152530432,0.9294489184394479,-0.9431273136287928,-0.7502755438908935,-0.6003045388497412,-0.13628585310652852,0.6925025819800794,-0.7176621579565108,-0.2631331132724881,-0.9236352890729904,-0.7051102314144373,0.5120877316221595,-0.34531467454507947,-0.3999743605963886,0.8279714547097683,-0.9313992327079177,0.45301019540056586,-0.4528135941363871,-0.6490503191016614,-0.06271892553195357,-0.5421708491630852,0.3671970316208899,-0.066731549333781,-0.2589169582352042,0.8961793635971844,0.5003611273132265,-0.39971961453557014,0.7611891897395253,-0.34434886183589697,-0.6991274375468493,0.995943043846637,-0.5553444679826498,-0.930806843098253,0.8156700194813311,0.4483776781708002,-0.1346362242475152,0.4971878710202873,-0.08103597862645984,0.35684212343767285,-0.005011892877519131,0.8679369804449379,0.29769124975427985,0.8392890277318656,-0.2336303568445146,0.17857446009293199,-0.8817272875458002,-0.9742439612746239,0.5164129924960434,-0.552199974656105,0.42088712612167,0.6666310303844512,0.5941805862821639,0.021473103668540716,0.1056238361634314,0.8371656076051295,-0.7247599666006863,-0.017269683070480824,0.7580319694243371,-0.12566009862348437,-0.4395191306248307,0.7696232553571463,0.48763685254380107,-0.7823617467656732,0.7227677344344556,0.9114481909200549,0.1226429040543735,0.5590140959247947,-0.7132479012943804,0.8952627051621675,0.6618453841656446,0.9546214854344726,0.17549359239637852,0.6214543506503105,0.7447409341111779,0.8291923785582185,0.3721601879224181,0.9688877514563501,-0.09626961452886462,0.17676656180992723,-0.9345102272927761,0.6500727361999452,-0.23287468357011676,0.40160280279815197,-0.47111308574676514,0.8459550007246435,0.13919795164838433,-0.05260749952867627,-0.057801029179245234,-0.8099704654887319,0.4966158187016845,-0.9491629111580551,0.7328568580560386,-0.1753360889852047,0.524086557328701,-0.3499876311980188,-0.6026748702861369,-0.9595651715062559,0.3572188033722341,-0.4104210399091244,0.8497352548874915,-0.48328094417229295,0.027903646230697632,-0.2188555896282196,-0.1744750328361988,0.3261888427659869,-0.495170630980283,-0.40614630933851004,0.7950310949236155,0.57688905345276,-0.32411994924768806,-0.06726502627134323,-0.8254650165326893,-0.23271077498793602,-0.032860283739864826,-0.7100986456498504,-0.2992881485261023,0.11678275838494301,0.6748526017181575,-0.9551348211243749,-0.9770070486702025,0.53045106632635,-0.1446024407632649,0.4817558517679572,0.8729388839565217,0.6908266390673816,-0.4719915892928839,0.1278699291869998,0.6949083814397454,0.08912030979990959,-0.7056538686156273,0.3468078849837184,-0.21569085028022528,-0.28135260893031955,0.3350246041081846,-0.3016638457775116,-0.565182470716536,-0.01142808236181736,0.8661858118139207,-0.6619805810041726,-0.8284187754616141,0.19332445273175836,-0.3721600789576769,-0.7104235435836017,-0.7610897687263787,0.5106632704846561,0.8262281836941838,-0.38916589319705963,0.8061146270483732,-0.9730496336705983,0.6781452149152756,-0.9141763453371823,-0.10328108677640557,-0.5203666528686881,-0.4566075741313398,0.936042423825711,0.7905792961828411,-0.9206875208765268,0.5365942758508027,0.8388410741463304,0.09190218802541494,0.20665464038029313,0.844536105170846,-0.43654866702854633,0.9003523532301188,0.35075419396162033,-0.5601162817329168,-0.25051700277253985,-0.6837575500831008,0.5044200238771737,-0.1437465907074511,-0.006555804517120123,-0.2022588332183659,-0.16757093742489815,0.7325579202733934,-0.6793433944694698,-0.7012832136824727,0.42636812571436167,-0.33073408203199506,0.7955257366411388,0.8712258255109191,0.3365255552344024,0.232403420843184,-0.6370718800462782,-0.8630773141048849,0.8586551290936768,0.4926305767148733,0.5293654450215399,-0.4155798745341599,0.2629073914140463,0.8666298687458038,0.35639818711206317,-0.1957946172915399,-0.05398864485323429,0.5491982926614583,-0.5007020407356322,0.5649018916301429,0.961438403930515,-0.9014111631549895,0.9723817184567451,0.22677715588361025,0.15158994542434812,-0.217053625266999,-0.30202528834342957,-0.7860725866630673,0.4971087328158319,-0.21402924228459597,0.6228895029053092,-0.8736392254941165,0.6575361033901572,0.033489429857581854,-0.39645009860396385,0.8722177972085774,0.062099398113787174,0.019624917302280664,-0.8863718225620687,0.831171004101634,-0.889302184805274,0.956476089078933,0.4974096161313355,-0.9129567807540298,0.72295849211514,0.9215654376894236,-0.2750049689784646,-0.3229528134688735,-0.23155572032555938,-0.11499528773128986,-0.4923091479577124,-0.12886710558086634,0.7892922698520124,-0.43620510259643197,0.4339802707545459,-0.42027336172759533,0.9205269990488887,0.3867797567509115,0.7284132111817598,-0.2483759792521596,0.7988089416176081,0.8543006489053369,-0.20349942753091455,0.7762046633288264,0.6061484888195992,-0.028654121793806553,-0.5916620660573244,0.5787668074481189,0.5002574203535914,0.4218570473603904,0.632365230936557,0.1217821971513331,0.42289273301139474,0.24031383963301778,-0.11313737276941538,-0.24586702836677432,-0.9947212371043861,-0.5003965250216424,-0.47411247668787837,0.7995275449939072,-0.507896444760263,0.14792539551854134,0.7563786851242185,-0.6921502212062478,0.05708251101896167,0.43836702639237046,-0.11874889302998781,-0.5650906227529049,-0.49948932928964496,0.6230203188024461,-0.9888222618028522,-0.37309625232592225,-0.20815803669393063,0.4868916063569486,0.27550075529143214,0.47826297394931316,-0.755044533405453,0.35114717250689864,-0.9530177372507751,0.9531297534704208,0.8949748305603862,0.06717545911669731,0.9432040941901505,0.6605516350828111,0.9624670236371458,-0.7939320732839406,0.9853080855682492,-0.8408121909014881,-0.06381555367261171,-0.9862193060107529,0.557189873419702,0.7045805375091732,0.547815112862736,-0.3269856423139572,0.8368591507896781,0.9550387379713356,0.6098083844408393,-0.29197152657434344,0.8648083559237421,0.46177785843610764,-0.839055442251265,-0.29571268940344453,0.7677049445919693,-0.6671239454299212,0.6202876903116703,0.416956243570894,-0.02171008102595806,-0.17743853479623795,0.737763901706785,0.7092376039363444,0.03510884754359722,-0.14046708401292562,-0.2925227847881615,-0.2410769620910287,0.5371590866707265,-0.5254179970361292,0.9255022988654673,-0.11465701321139932,-0.7975935083813965,0.6029153228737414,0.11300898808985949,0.45538033125922084,-0.2589732347987592,-0.38190656155347824,-0.5460204388946295,-0.49596590269356966,-0.2578445845283568,-0.7641652165912092,0.2293646577745676,0.28060462744906545,0.5327302468940616,-0.646893922239542,-0.5154994279146194,0.4027066119015217,0.4069139533676207,0.6023137597367167,-0.7210209923796356,-0.6324286968447268,-0.8553370041772723,-0.18724204134196043,0.2879756488837302,0.35982336523011327,-0.8939439281821251,0.8486256012693048,0.7439071382395923,0.09671262186020613,-0.21969250915572047,0.474865450989455,0.8389800773002207,-0.5738235912285745,-0.6809826297685504,0.27574920607730746,0.6288662105798721,0.21130332304164767,0.3624617294408381,0.8825037213973701,-0.6614096057601273,0.5891080917790532,-0.9734242726117373,-0.02638132404536009,-0.1902559157460928,-0.2503874613903463,-0.055341811850667,0.9087754711508751,-0.08317194506525993,0.823769279755652,0.6788264717906713,0.14976349100470543,-0.7634985214099288,-0.33426323998719454,-0.8491938840597868,0.473949380684644,0.6131690531037748,-0.6316876667551696,-0.6496600857935846,0.6016830513253808,0.7480969256721437,0.9320241846144199,-0.754581309389323,-0.7876426014117897,0.7447077166289091,0.4975411337800324,-0.11501712119206786,-0.12272923439741135,-0.5758443572558463,-0.5680372607894242,-0.26524305157363415,0.925213061273098,0.32980432733893394,-0.014266613405197859,0.26629455061629415,-0.01731024356558919,0.42193299531936646,-0.6371614225208759,-0.5403421660885215,0.5258542816154659,-0.36558584915474057,0.6127206361852586,-0.055384069215506315,0.12095426255837083,-0.9914662544615567,-0.47283934568986297,-0.37808201741427183,-0.028565627057105303,-0.6428729929029942,-0.7292245347052813,0.5283106602728367,-0.6130971894599497,0.9704635152593255,0.9039493729360402,0.6551935351453722,-0.18706429656594992,0.8436367670074105,-0.2042986429296434,0.6094635156914592,-0.6476009851321578,-0.7618059646338224,0.8129350137896836,-0.944413710385561,-0.08703692955896258,0.3135260846465826,0.8086767913773656,-0.824449282605201,0.745801986195147,0.491248004604131,0.630833731032908,0.6399292554706335,-0.6606022990308702,0.1594739775173366,-0.047131150495260954,0.09855587873607874,0.3783160410821438,0.1661923131905496,0.4742051106877625,0.5889859013259411,-0.8977700578980148,0.4590487079694867,0.13040666235610843,-0.876256019808352,0.8147029937244952,0.3536857129074633,-0.1174712828360498,0.15821545012295246,0.2816167687997222,0.39431438548490405,0.4568704692646861,0.9674659236334264,-0.2698370632715523,-0.5309548820368946,-0.5358678214251995,-0.19816189212724566,0.5903466115705669,0.6979160285554826,0.8892601048573852,0.8390503530390561,-0.12352483719587326,0.359898688737303,-0.08119598496705294,-0.7608710485510528,0.6968281432054937,-0.5741386753506958,0.18558782152831554,-0.8692186009138823,-0.02307378314435482,0.059316304977983236,-0.23056566482409835,-0.12634986825287342,0.47916552564129233,0.5982244829647243,0.650859855581075,0.529130126349628,-0.03857892658561468,-0.4960632845759392,0.47798767080530524,0.165826088283211,-0.8420718843117356,0.8499298375099897,-0.2909181504510343,-0.4802160491235554,-0.5809798436239362,-0.2649445543065667,0.898374745156616,-0.980484114959836,-0.8563724709674716,0.9213047917000949,-0.362482369877398,-0.527672050986439,0.4324421598576009,-0.25773088773712516,-0.9066632399335504,-0.9710509516298771,-0.7632744298316538,-0.1098377825692296,0.15146944858133793,-0.7828939231112599,0.31068375473842025,-0.16440528584644198,-0.43604968627914786,0.780761712230742,-0.7538819736801088,-0.09924631007015705,0.7308987276628613,0.12853460852056742,-0.8022624258883297,0.07537777908146381,-0.5788958696648479,0.13431948143988848,0.5015477389097214,-0.1278633545152843,0.06675312900915742,0.520877102855593,0.07639047037810087,-0.5929817133583128,-0.9978352030739188,0.8062904388643801,0.6300660823471844,0.3724263026379049,-0.08249707333743572,-0.9104594606906176,-0.5062184277921915,0.5241603483445942,-0.4551385026425123,0.9435438173823059,-0.5530595229938626,0.25302500277757645,-0.7637512204237282,0.22391167283058167,-0.5465497919358313,0.9515574690885842,-0.18726332252845168,-0.19847234152257442,-0.464864082634449,0.11106982175260782,-0.7021241481415927,0.6522119003348053,0.8042618627659976,0.6088365474715829,0.27979924343526363,0.33509735902771354,-0.15667383838444948,-0.17461145529523492,0.7024167152121663,0.3504349789582193,-0.6886523542925715,0.5746907908469439,0.8238466563634574,0.11712048156186938,0.8526521101593971,0.6010882146656513,-0.35567845264449716,-0.41847035055980086,0.7800350706093013,-0.9481606050394475,0.35511041432619095,0.800155215896666,-0.60103441728279,0.4061074168421328,0.6910934434272349,-0.5675322073511779,0.39583504758775234,-0.5272702993825078,-0.24179524183273315,-0.6859340104274452,-0.7505335519090295,0.46829556999728084,0.874535605777055,0.0074541871435940266,0.6885173092596233,0.8803234063088894,-0.4908694280311465,-0.4026686861179769,-0.8361774096265435,-0.7345864227972925,-0.5092524299398065,0.517568782903254,-0.19290937576442957,-0.9510041801258922,0.9260867992416024,-0.20784578239545226,-0.6528236921876669,-0.4286911222152412,-0.7793690771795809,0.1967480145394802,0.29929885920137167,-0.9831295809708536,-0.09479936957359314,0.07041298830881715,-0.5851475093513727,0.5641246107406914,-0.33531598886474967,0.20465662609785795,-0.8501970670185983,0.93029973981902,-0.1413600156083703,0.9749348452314734,-0.5448006554506719,-0.8608614881522954,0.12449759570881724,-0.8793792896904051,0.898286678828299,-0.5643764524720609,0.4686589236371219,0.8145395549945533,0.9651488591916859,-0.3859077338129282,0.03403952205553651,0.5074830236844718,-0.05502101080492139,-0.8631711849011481,0.3678199388086796,0.4760494390502572,0.5467583984136581,0.08361923461779952,0.9398784316144884,-0.3281755936332047,0.8241451503708959,0.5597643596120179,0.918099366594106,-0.7539916858077049,0.7445067521184683,0.24431358044967055,-0.6072004023008049,-0.3579105855897069,0.18704583402723074,0.2012533126398921,0.10836849687620997,-0.6132152127102017,0.7944502951577306,-0.23871999653056264,-0.3699032561853528,-0.8118883264251053,-0.8719740859232843,0.5232201889157295,-0.9387090927921236,-0.46445895032957196,0.7498493050225079,-0.30262021301314235,-0.1568725984543562,-0.40439567621797323,-0.9814997953362763,0.04345949925482273,-0.2962229480035603,-0.34190687630325556,0.8730724607594311,0.9448004844598472,-0.8435245081782341,0.6729797492735088,-0.8031903258524835,-0.8284617974422872,0.4329348695464432,-0.9207912338897586,0.039474017918109894,0.7326123090460896,0.3788278391584754,0.20793352229520679,0.1571690202690661,-0.09359436249360442,-0.45181028451770544,0.2412649537436664,0.6385235521011055,0.18681724043563008,0.6313053593039513,-0.5215975688770413,0.1427398705855012,0.6038499898277223,-0.9927830924279988,-0.9981550727970898,-0.6574170491658151,-0.4943231479264796,0.010510457679629326,0.9189683711156249,0.966553992126137,-0.5917981574311852,-0.5315012517385185,-0.9519680724479258,0.7536554052494466,-0.5919990693219006,-0.9236783511005342,0.37936305394396186,0.958068732637912,-0.8408520948141813,-0.23556450381875038,0.6893650256097317,-0.8626782931387424,0.0785984224639833,0.3324368982575834,-0.2708008112385869,-0.9302807990461588,-0.010529750026762486,0.08132244134321809,0.23499583406373858,-0.3339555040001869,0.4248071098700166,-0.4921829351224005,-0.1292128930799663,0.8742467635311186,0.8647742280736566,-0.7196317012421787,0.6182809481397271,-0.7406484745442867,-0.35926798172295094,0.07290069293230772,-0.7105038403533399,-0.5702934232540429,0.9087610715068877,-0.0949617843143642,0.7039664648473263,0.5457298471592367,0.8951819315552711,0.8112923400476575,0.8668555715121329,-0.9689207854680717,-0.4555579167790711,0.16278689680621028,-0.29172165086492896,0.7055714386515319,-0.42315898882225156,-0.13364836620166898,0.04398949723690748,0.7019493840634823,0.5130516639910638,-0.42250146018341184,-0.6722520724870265,-0.15759308775886893,-0.12805755203589797,0.9996032165363431,-0.3409655191935599,-0.032737888395786285,0.8399644093587995,0.8224982121028006,0.9554177434183657,-0.15905136056244373,-0.4801260083913803,0.08442328590899706,0.8270400846377015,-0.7531659808009863,-0.8735354961827397,-0.9239093069918454,-0.0686737010255456,0.5047412370331585,0.6855620266869664,-0.8616811237297952,-0.8803903199732304,0.41330199828371406,-0.596257837023586,-0.49335728166624904,-0.880746197886765,-0.683823574334383,-0.8498226213268936,-0.3549157618544996,0.8158915331587195,0.23082607937976718,0.8481009569950402,-0.5777751808054745,0.8925873734988272,0.34521711338311434,0.1623603468760848,-0.2917233044281602,0.38446818571537733,0.5023076250217855,-0.9133289116434753,0.4255836922675371,0.9080709288828075,-0.43559126975014806,0.6106452010571957,-0.8802191046997905,-0.15969399083405733,0.4734340659342706,-0.9963796813972294,-0.17441170802339911,0.1201973925344646,0.5388379408977926,0.2276137969456613,-0.5367828463204205,-0.49657390592619777,-0.5668999939225614,0.15551719069480896,-0.05537212360650301,0.06418011151254177,-0.31147003546357155,-0.9202961577102542,0.5256867236457765,0.15136361587792635,-0.36813734797760844,0.11602788558229804,0.1685406407341361,0.9715137295424938,0.35343438712880015,0.9554404369555414,0.7669247062876821,-0.9786206101998687,-0.009211612399667501,0.2939035245217383,-0.8174143256619573,-0.8051833175122738,-0.5860722851939499,0.9569057347252965,-0.33130478020757437,-0.6144322655163705,-0.2975695258937776,-0.6203276473097503,-0.49000625032931566,-0.8153238925151527,-0.6319177127443254,0.24061745638027787,-0.3472469625994563,-0.546135388314724,0.32124239671975374,0.41236916137859225,0.3622272410430014,-0.2338613197207451,-0.17775215953588486,-0.3224821025505662,-0.20870769303292036,0.4741908395662904,-0.0224724099971354,-0.0025393017567694187,0.8412962262518704,0.833202971611172,0.5151058644987643,-0.6851622788235545,-0.7137801628559828,-0.9549979106523097,0.04701806325465441,0.0038194330409169197,-0.14223506255075336,0.40145749831572175,0.6147548733279109,-0.400073048658669,-0.4003745634108782,0.8943511825054884,-0.8790283869020641,0.027359422761946917,-0.6679892502725124,-0.33233126252889633,-0.9004174820147455,0.5833892524242401,0.33270247746258974,0.17957889614626765,0.08743581781163812,0.9674578835256398,0.9263218599371612,0.7403861838392913,-0.519150270614773,-0.540442371275276,0.9939244678243995,-0.5970738944597542,0.009214572608470917,-0.9953352543525398,0.5055887214839458,-0.15934439888224006,-0.9788701673969626,0.3321149041876197,0.3600694537162781,0.9437835747376084,0.04671759018674493,-0.17175227031111717,0.09907518466934562,-0.49449869291856885,0.5312605034559965,-0.3432030761614442,0.012368085328489542,-0.027203513775020838,0.610768758226186,0.9403525143861771,-0.16088475193828344,0.8815454565919936,-0.6889528478495777,0.41688724560663104,-0.7783857556059957,0.7322169537656009,0.7342318217270076,-0.2891130647622049,-0.650793690700084,0.31528392620384693,-0.956443608738482,-0.297397811897099,0.5413890643976629,-0.22259761206805706,0.010338455904275179,0.4751222524791956,0.028126003220677376,0.498309341724962,-0.027658012229949236,-0.9463930861093104,-0.6834952542558312,-0.9186194962821901,-0.46563580678775907,-0.9117598705925047,0.7187767419964075,-0.47004046523943543,-0.5144832101650536,-0.08739744499325752,0.06867632968351245,0.2393469139933586,0.5125206857919693,-0.27819898910820484,-0.8929116879589856,-0.778120409231633,-0.3975837272591889,0.5640121018514037,0.45896887173876166,-0.46124129742383957,0.9261891832575202,-0.9926075851544738,0.27634999295696616,0.6783724776469171,0.1351364403963089,0.6334858820773661,-0.8735382724553347,0.8501572208479047,-0.9350064960308373,-0.5277837323956192,0.7609217693097889,-0.6782356314361095,-0.6919773858971894,-0.45063143875449896,0.28723622439429164,-0.5415952177718282,-0.5088307014666498,0.8684181161224842,-0.5032384255900979,-0.2219576737843454,0.032465793658047915,-0.9231136473827064,0.9817290441133082,-0.7759979655966163,-0.948499305639416,-0.04975972045212984,0.08423676434904337,-0.7516165659762919,-0.7020235992968082,0.9742417773231864,0.876291180960834,0.3223137087188661,-0.8915871595963836,-0.34623493533581495,0.738628551363945,-0.5025730598717928,0.47712158039212227,0.1944802487269044,-0.06779205705970526,0.8840802675113082,0.6881959983147681,-0.8959527825936675,0.5223453398793936,-0.9719654088839889,0.5389923751354218,-0.564704317599535,-0.9489871799014509,0.5391140482388437,-0.2902470943517983,-0.7676575346849859,-0.288563912268728,-0.8674783981405199,-0.25418157735839486,0.35459906281903386,-0.024770754855126143,-0.3500572331249714,0.9586495873518288,-0.9093765667639673,0.08261283114552498,0.606526168063283,0.7424268294125795,0.9913028134033084,-0.7906117048114538,-0.434858619235456,-0.8626199490390718,0.27084359899163246,-0.49360426841303706,-0.11540978169068694,-0.25469423923641443,-0.4258963377214968,0.7666484275832772,-0.12839758954942226,0.444576492998749,-0.9156535570509732,0.7868468253873289,0.5605391878634691,-0.5494368923828006,-0.21105147991329432,-0.9861984858289361,0.413415783084929,-0.7988532148301601,0.03640539525076747,-0.9385366439819336,-0.8490991871803999,-0.7987186326645315,-0.7495239917188883,0.19151250971481204,0.42323864344507456,0.33967077173292637,0.09680411173030734,0.4115334372036159,-0.16637978423386812,-0.3347904710099101,-0.18345873337239027,0.02091216715052724,0.8487852471880615,-0.22028149431571364,0.9778030635789037,0.29425080260261893,-0.03930571675300598,-0.689961972180754,-0.6992485015653074,-0.34105400228872895,0.20674158446490765,-0.044352594297379255,-0.9534645369276404,-0.8517250618897378,0.0241774320602417,-0.01775906328111887,-0.41625363333150744,-0.7882683137431741,-0.3814403088763356,-0.10918480949476361,0.25521239917725325,0.13811509171500802,0.2480340343900025,-0.07888346910476685,0.10725228022783995,0.15444045001640916,0.7074448317289352,-0.562069452367723,0.9614397897385061,0.8328506704419851,0.7431505606509745,-0.6447614263743162,0.11275952681899071,-0.1468971287831664,-0.32455177465453744,0.0762613327242434,0.23846951592713594,-0.004401952028274536,-0.9907442643307149,0.8927992414683104,-0.24246726790443063,0.5883733876980841,0.8896760009229183,0.7821609531529248,-0.896207972895354,0.8254188690334558,0.07279820973053575,0.8294686730951071,0.9165039653889835,-0.150326247792691,0.8535752645693719,0.9488496328704059,-0.34091367945075035,-0.1900492189452052,0.3645966723561287,0.6114956722594798,0.8871901431120932,-0.23257118184119463,0.15791128808632493,-0.6104952814057469,0.6578679797239602,-0.39361151633784175,0.08958247909322381,-0.9598608114756644,0.8933099298737943,-0.32035550102591515,-0.6256713103502989,-0.5475308448076248,-0.4465082320384681,0.44410481955856085,-0.9822275256738067,0.16382494801655412,0.6715117595158517,-0.1786064226180315,0.9896409660577774,0.24983525834977627,0.027045513037592173,-0.8705278118140996,-0.8694422720000148,0.24645553063601255,-0.0444681947119534,-0.1563266566954553,-0.07358125224709511,0.9932059561833739,0.6831376245245337,-0.4375715097412467,0.4428208819590509,0.9810336329974234,-0.8028239086270332,0.00928917620331049,-0.15340211149305105,0.36759917065501213,-0.5821593636646867,0.9374975231476128,-0.5473069632425904,-0.2867357172071934,-0.8535382747650146,0.732240985147655,0.6601486410945654,0.6817578417249024,-0.2779131894931197,0.1726979799568653,0.8688660701736808,0.5333269061520696,0.017803858034312725,0.5819886685349047,-0.004561483394354582,-0.6838427591137588,-0.8845250071026385,0.43257889011874795,0.4344953871332109,0.23876252304762602,0.21672133449465036,-0.5523969256319106,0.6871542208828032,0.6788208126090467,0.22454705275595188,0.8960381024517119,0.6742029199376702,-0.4148962013423443,0.21322174929082394,-0.016702280845493078,-0.48598963813856244,-0.5716229691170156,-0.49848682759329677,-0.2234889892861247,-0.8446384607814252,-0.03395564155653119,-0.7436956069432199,0.8929781359620392,-0.40641762176528573,0.36038279766216874,0.667227613274008,0.04324121167883277,-0.007122990675270557,0.4726534681394696,0.4034382631070912,-0.7929657599888742,0.6130519914440811,-0.9062229678966105,-0.09150997642427683,0.33773966506123543,-0.8561356887221336,-0.5779458614997566,-0.9104394852183759,0.8920049727894366,0.23085882235318422,0.8317921878769994,-0.6425485489889979,-0.3909033634699881,0.21566904662176967,0.8725805091671646,-0.3980008321814239,-0.7938967170193791,0.01047007879242301,-0.7940726354718208,-0.48131427308544517,0.314762856811285,0.023718293756246567,0.3067232193425298,0.35321726417168975,0.073948560282588,-0.16793023142963648,0.32487048860639334,-0.3952292148023844,0.5375933204777539,-0.8841577670536935,-0.4589042612351477,0.37854168144986033,0.7013152530416846,-0.504634115844965,0.9787685140036047,0.18317430838942528,-0.2590460814535618,-0.3773776888847351,-0.6999207781627774,0.0787880071438849,0.5431155352853239,-0.7383373505435884,-0.455579639878124,0.9901676313020289,-0.5563706206157804,0.35827972227707505,0.37047630781307817,-0.13655924377962947,-0.15727674216032028,0.38602842343971133,-0.5918369241990149,-0.24416072387248278,-0.6416167006827891,0.552419722545892,-0.500382955186069,-0.933824353851378,0.421389804687351,0.36736726900562644,0.4757720469497144,-0.7395815229974687,0.5527853732928634,-0.5529105141758919,-0.00416004192084074,0.14590338291600347,-0.1682935142889619,-0.34834272181615233,0.8129588081501424,-0.6123983664438128,-0.7949112108908594,0.5696185063570738,0.19489730522036552,0.16922806482762098,0.1030360828153789,0.3153014499694109,-0.31840668013319373,-0.9544116947799921,-0.5344111397862434,-0.43703992338851094,0.7034638379700482,-0.4775725253857672,0.024824137333780527,-0.9256020355969667,0.4973752717487514,-0.45195999229326844,0.8869813717901707,0.3411755287088454,0.8077642796561122,-0.6568832457996905,0.2619266505353153,0.7431741897016764,0.7721508662216365,-0.4767684922553599,0.5529025280848145,0.18073331471532583,-0.21932520205155015,0.8917418024502695,-0.30557515379041433,0.3101638974621892,-0.2313208649866283,0.5184391257353127,-0.9370223018340766,0.029379436280578375,-0.27235187124460936,0.6901222839951515,0.05315696028992534,-0.32834574533626437,-0.5296033308841288,0.99669054383412,0.10108295269310474,0.24651817930862308,-0.8715328127145767,0.031718083657324314,-0.5623952262103558,0.7895744531415403,-0.3729995656758547,0.4971544365398586,0.037493270356208086,-0.018838584888726473,-0.13345608534291387,-0.8947097701020539,-0.08601942425593734,0.19046715646982193,-0.3343858546577394,0.5129603897221386,-0.27425138745456934,-0.5842759166844189,0.12102180253714323,0.28505830373615026,0.7262635044753551,-0.17381288390606642,-0.9406140083447099,-0.44994791131466627,0.04780525714159012,0.05201032618060708,-0.15938843041658401,0.9969419706612825,-0.8744301456026733,-0.9956943797878921,0.5428962577134371,0.988229245878756,-0.7024407600983977,-0.5195741034112871,0.7500119628384709,0.7403017561882734,0.8923317794688046,-0.6038837325759232,-0.9422792047262192,0.9734766976907849,-0.915291812736541,0.2210323135368526,-0.2450501644052565,-0.7435308094136417,0.415788808837533,0.99028016673401,0.5920511526055634,-0.7542546493932605,0.16384979663416743,0.6029911264777184,0.3896781662479043,-0.8741027642972767,-0.4846674306318164,-0.3929329034872353,0.6411911128088832,-0.3360954103991389,0.18947448348626494,-0.07356444885954261,0.2905584149993956,-0.7397101293317974,-0.6790798609144986,-0.5788434445858002,0.18387272348627448,-0.26117956079542637,0.8571989699266851,-0.47500947769731283,-0.8447481417097151,0.7585016610100865,0.622443612664938,0.2389264521189034,-0.9875743081793189,-0.17106588324531913,-0.0836514225229621,-0.9370859167538583,-0.9480550326406956,-0.27403361070901155,-0.41252680541947484,0.596669614315033,0.21064366912469268,-0.29372795252129436,0.13931499002501369,0.540999302174896,0.7649215552955866,-0.4273315225727856,0.9100349019281566,-0.569673243444413,0.7307774149812758,0.9516095221042633,0.1301444200798869,-0.332883276976645,0.46822745399549603,0.921296875923872,-0.5839938512071967,0.6244423710741103,0.5713031007908285,0.8408872378058732,0.8661862029694021,-0.05113222124055028,-0.2219626591540873,0.7780376062728465,-0.401220110245049,0.259762080386281,0.4717447222210467,-0.48758726567029953,-0.5318410433828831,-0.6687130429781973,0.35237640840932727,0.9815168958157301,0.13762331614270806,0.4518295042216778,-0.3677458097226918,-0.09124414855614305,0.07160572847351432,0.16056174784898758,0.6834270246326923],"z":[0.10120559856295586,-0.685475040692836,-0.4432881446555257,0.9889026111923158,-0.7381996400654316,0.9287232742644846,-0.39105204306542873,-0.5332485483959317,-0.1363021293655038,-0.9437960926443338,0.8165760212577879,0.8570817383006215,-0.16609291546046734,0.046562559902668,-0.8204405680298805,-0.7702930076047778,-0.7280830275267363,0.9382822848856449,-0.8899194495752454,0.3757244376465678,-0.377911115065217,0.28930906811729074,-0.07275994401425123,0.4840286448597908,-0.29832387482747436,0.333180729765445,0.31452819984406233,-0.3930898644030094,0.5223416271619499,0.3753340574912727,0.5608174460940063,0.6681631621904671,0.8236952754668891,-0.767018178012222,-0.3913109744898975,-0.3154798960313201,-0.24233950208872557,0.7024053647182882,0.9094300675205886,0.01598196104168892,0.7271902267821133,-0.4836723958142102,-0.2897806582041085,0.08851406304165721,0.6948845363222063,-0.7039376469329,-0.9189525013789535,0.3136231964454055,0.0013322336599230766,0.25974496314302087,-0.9750091210007668,-0.24414620408788323,-0.4593684817664325,0.6425047074444592,-0.07779094018042088,-0.4608044372871518,-0.9879116537049413,-0.643768013920635,-0.8578938241116703,0.9121465859934688,0.9947812361642718,-0.7896200735121965,-0.37820236338302493,-0.33082634676247835,0.6087965066544712,-0.6053995830006897,0.8431982030160725,0.7369952201843262,-0.24526979867368937,0.8990464452654123,0.23946279613301158,-0.28268698044121265,0.4629911701194942,-0.5962101398035884,0.09756627026945353,-0.3701844494789839,-0.7494408385828137,0.5483395457267761,0.2338699223473668,-0.04505394119769335,-0.42856539925560355,0.7324167545884848,0.9016442382708192,0.9863340393640101,-0.5496670342981815,0.31113109458237886,0.3987653814256191,0.8269816357642412,-0.5015240237116814,0.5507819424383342,-0.45933541376143694,0.6267563519068062,0.8878238429315388,-0.238508609123528,-0.45001289108768106,0.0744613641873002,0.7109398236498237,0.5025722389109433,-0.07636219915002584,0.5493403198197484,0.14584290608763695,0.26685603335499763,-0.19235291192308068,0.8365194969810545,0.4638891159556806,0.053159468807280064,0.3781985496170819,-0.3781562033109367,0.23031928157433867,-0.012495226692408323,0.8174268435686827,-0.8959149182774127,0.3819199842400849,0.7085871445015073,0.11421457631513476,-0.5625026086345315,0.30030220467597246,0.28839511750265956,-0.2922107861377299,0.3072287319228053,0.04613229725509882,-0.19474828941747546,-0.014430094975978136,-0.11465229606255889,0.5237387595698237,0.5484049026854336,0.3263108739629388,0.07221421599388123,-0.6228944272734225,0.5056521943770349,-0.3240143861621618,0.658369058277458,-0.3916975506581366,0.4144341638311744,-0.4200902576558292,-0.500745081808418,-0.18306566961109638,0.2460214989259839,0.3667828254401684,0.90702194115147,-0.36610243329778314,0.9517928808927536,-0.1330289556644857,-0.17779244109988213,-0.5359181794337928,0.5597888585180044,0.5872261403128505,0.17912446148693562,-0.5012040687724948,-0.19357193680480123,0.46718994760885835,-0.987839016597718,0.004100581631064415,-0.10581541946157813,-0.22324481420218945,0.06642902037128806,-0.28337738243862987,-0.4464160040952265,-0.9053960563614964,0.038118460681289434,0.8708711951039732,-0.2422978957183659,0.01995448675006628,-0.7278008055873215,0.6884539844468236,0.5220440472476184,-0.409009980969131,-0.16916169179603457,-0.7905889512039721,0.10508443554863334,-0.5250306366942823,-0.3855074723251164,-0.7255632057785988,0.9031910188496113,0.745675636921078,-0.8392530782148242,0.16696709906682372,-0.12324623111635447,0.4038019455038011,0.9973204932175577,-0.15448213648051023,-0.14261130709201097,-0.10504629602655768,0.05536824883893132,0.616784845944494,-0.6810472141951323,-0.5690713725052774,0.3708565062843263,-0.7282176874577999,0.8556770561262965,-0.45944571029394865,-0.3639703835360706,0.005359731614589691,-0.6100081251934171,0.5900059887208045,-0.05489542335271835,0.027747435495257378,-0.1797041897661984,0.3050523828715086,-0.5878294184803963,0.4073075046762824,-0.47291818680241704,0.21900179889053106,-0.6357098794542253,-0.2619490078650415,-0.6466908985748887,0.7267959574237466,-0.9015683303587139,-0.1440946999937296,0.9414613144472241,0.5021287957206368,0.033637558575719595,0.5182354133576155,-0.43221642170101404,0.8296819925308228,-0.59321274375543,-0.0535470200702548,-0.9020240041427314,0.9321813341230154,-0.25351505214348435,0.7021803720854223,0.6611162875778973,-0.18855103570967913,0.6667762263678014,0.2034506923519075,-0.8997430712915957,0.5122177582234144,0.32358275540173054,0.25991904735565186,-0.26329982466995716,0.24240019731223583,-0.008060615044087172,0.5056864186190069,0.07668456388637424,-0.10160129936411977,0.44159593479707837,-0.091916567645967,-0.6037915903143585,0.6294859005138278,0.34728594310581684,0.6672882945276797,-0.24675654247403145,0.9216041583567858,-0.8737425040453672,0.14300228655338287,0.6679583601653576,0.2326606335118413,0.0899071590974927,-0.9943505874834955,-0.7934091193601489,0.2946846461854875,-0.9426303366199136,0.7925435653887689,0.9077246612869203,0.7490820521488786,0.23844734579324722,0.8735522888600826,-0.07260562898591161,-0.9952985090203583,0.8749693636782467,0.03585169930011034,0.8369645071215928,0.22215520730242133,-0.4831724800169468,-0.8671663771383464,-0.5094837648794055,0.35893479362130165,-0.36645710095763206,-0.6382057312875986,-0.8590132128447294,-0.30115511920303106,-0.962977594230324,0.0333634102717042,0.3444783980958164,-0.8322411715053022,-0.6414268449880183,-0.019162108656018972,-0.04255323763936758,0.47358538303524256,0.07446611952036619,-0.6223525954410434,-0.21957200020551682,-0.47108012763783336,-0.23318080976605415,-0.6192567581310868,-0.5341691244393587,0.6474645514972508,-0.5737734846770763,-0.33157198037952185,-0.26735265692695975,-0.5416207513771951,0.21398108592256904,0.25138508062809706,-0.3826441070996225,0.7543073850683868,-0.4669213881716132,0.5220145559869707,-0.9934908454306424,0.715442334767431,0.792873221449554,0.3131886492483318,0.24732870189473033,0.44779404904693365,-0.7815601583570242,-0.5445576896890998,0.6490536676719785,0.38455684343352914,0.32462884159758687,-0.9485338288359344,-0.5636006710119545,0.3550586556084454,0.9678033613599837,-0.08380848122760653,0.07442643586546183,0.44576614955440164,-0.4017472290433943,-0.06928542722016573,-0.559356966521591,-0.7655943348072469,0.5577169735915959,-0.4675657129846513,-0.19152616010978818,-0.44896049750968814,0.9861228442750871,-0.7209924696944654,-0.9788857996463776,0.888150183018297,-0.08153248578310013,-0.2784225423820317,0.9354286235757172,-0.06832637637853622,-0.8140542726032436,0.48009704425930977,-0.8632004223763943,-0.5630729435943067,-0.2816063337959349,-0.8729884526692331,0.6519427532330155,0.274419579654932,0.23280773777514696,0.7789409924298525,0.6487468583509326,0.9035629578866065,-0.868640223518014,0.3726930432021618,0.8551477724686265,-0.33783851144835353,-0.8572224145755172,-0.45846944861114025,0.5060168993659317,0.8459507534280419,0.5645499783568084,-0.5110635389573872,-0.1972709926776588,-0.8576625911518931,0.32899742666631937,0.3668027063831687,0.3488383637741208,0.12438989384099841,-0.10009168554097414,0.9686706555075943,0.05832124128937721,0.01401118515059352,0.47682234505191445,0.6654930063523352,0.08046668814495206,-0.9001116128638387,0.36506964126601815,-0.7225946919061244,0.5591002046130598,0.6447003576904535,0.3875807332806289,-0.686468374915421,0.3228625380434096,-0.3031556960195303,0.7284684143960476,-0.5518222218379378,0.347273584920913,-0.45463554468005896,-0.3627307969145477,0.8030351414345205,-0.9747905740514398,-0.7498090383596718,0.26084038661792874,-0.17917072121053934,-0.18991101486608386,0.289493506308645,-0.6562782539986074,-0.5512763997539878,0.3270819094032049,-0.4625679263845086,-0.07464214880019426,0.8426170321181417,-0.1253918781876564,0.08754019485786557,0.9734289962798357,-0.4402090855874121,0.24117527110502124,-0.7867131372913718,0.27672849083319306,0.5486126393079758,-0.07809549663215876,-0.709974676836282,-0.4071209938265383,-0.045870999339967966,-0.36151659628376365,-0.29941045260056853,-0.04805499082431197,-0.007093926426023245,0.6115926238708198,0.024712585378438234,0.9625085769221187,0.8188929762691259,-0.04241827176883817,0.567446431145072,-0.3422313826158643,0.9767753458581865,0.7528841854073107,-0.036341903265565634,0.9280393803492188,-0.4040361656807363,0.2106562564149499,0.06796850636601448,-0.4583345907740295,0.96824702154845,0.35298566427081823,-0.1201414237730205,0.2642388343811035,0.49016283079981804,0.7825121125206351,0.25765565084293485,0.23988727666437626,0.7671767100691795,0.024835854768753052,-0.8700249693356454,-0.301227081567049,-0.7516524870879948,0.22458248399198055,0.008800651878118515,-0.9860610831528902,0.7363654677756131,-0.9093689201399684,-0.5928020710125566,-0.8345209155231714,-0.6902533392421901,0.7872272962704301,0.7310081175528467,0.935822588391602,-0.3270308072678745,-0.9223952814936638,0.11977270105853677,-0.4904295331798494,-0.8351447475142777,-0.7201101197861135,0.3136197365820408,0.06637366954237223,0.9431110927835107,-0.1572525599040091,0.5790329021401703,0.5235936772078276,-0.17850029561668634,0.12362521281465888,-0.06311872694641352,-0.5987042081542313,-0.4114773627370596,0.9555066134780645,0.6594350468367338,-0.8279619966633618,0.26064880238845944,-0.14339820435270667,-0.8559815003536642,-0.09524274663999677,0.19728525262326002,-0.16856729704886675,-0.37245186883956194,-0.15383176924660802,0.08628640230745077,-0.39517016103491187,-0.3168641594238579,-0.05707147717475891,0.11152343638241291,-0.45620515616610646,-0.6808717441745102,-0.14600828662514687,0.6939759510569274,0.880038985516876,-0.6974462978541851,-0.5099476189352572,-0.39252573484554887,0.7416376257315278,-0.9582152529619634,0.6294754142872989,-0.27049887739121914,-0.32106261420994997,-0.6336739514954388,0.27076094783842564,0.9592281486839056,-0.5484897745773196,0.5555403209291399,0.28217923920601606,0.7887718533165753,-0.3645753003656864,0.04192589782178402,-0.5185794127173722,-0.4474266394972801,0.6968171214684844,0.19883989170193672,0.6252681035548449,0.969031929038465,-0.05842199781909585,0.978217217605561,-0.8757425858639181,0.6025006640702486,0.8643754422664642,0.4818766047246754,-0.3943072110414505,0.600027849432081,0.5105576626956463,-0.8534030602313578,-0.5646736226044595,-0.8597902916371822,0.042777265422046185,-0.7945403009653091,0.12724792677909136,-0.3906814786605537,0.6394591410644352,-0.9916510633192956,0.8946551633998752,-0.5361079899594188,0.6578286485746503,0.645153634250164,-0.6843978725373745,-0.31766166258603334,0.2681423327885568,0.24797093635424972,0.32219522120431066,-0.08087596949189901,-0.7971372436732054,-0.3516068970784545,-0.2814971972256899,-0.5246311924420297,-0.41396505385637283,-0.350767707452178,-0.14429767848923802,-0.07675589760765433,-0.6102534509263933,0.7779889008961618,-0.0890497756190598,-0.6221004663966596,0.2936396263539791,0.9828191106207669,-0.8808246916159987,0.7301345276646316,-0.33273734617978334,0.2203931505791843,-0.28577642794698477,-0.4428333006799221,0.1183349983766675,-0.7955209272913635,-0.7490436090156436,-0.519737699534744,-0.030778548680245876,0.7742218063212931,-0.8286530543118715,-0.5557707459665835,-0.18102780496701598,0.8214018205180764,0.314048542175442,0.06670360546559095,-0.6316467998549342,-0.13202291587367654,-0.7970038806088269,-0.9820135328918695,0.5610724459402263,0.4382128003053367,-0.8199572898447514,-0.7376334881410003,-0.034589987713843584,-0.457523331977427,-0.40816680435091257,0.7236943715251982,-0.9004349517636001,-0.3676037276163697,0.19532426539808512,0.017625680193305016,-0.6687269462272525,-0.9573654877021909,-0.14256846019998193,0.9579572114162147,-0.8626243029721081,0.9980400847271085,-0.44431493477895856,-0.9181107990443707,-0.5890971655026078,0.8457524734549224,0.7065973337739706,-0.5062140841037035,-0.5486370441503823,0.7069944948889315,-0.2728997995145619,0.4421416218392551,-0.5496310028247535,-0.37500511249527335,-0.6800819914788008,-0.05938746780157089,-0.9597552958875895,0.6257219812832773,0.8858998892828822,-0.6583632933907211,0.8215079754590988,-0.21202450804412365,-0.10725718783214688,0.19824423640966415,-0.018680770881474018,0.13747213315218687,0.22911854414269328,0.1337489471770823,-0.025119020137935877,0.2821880211122334,-0.2568885372020304,0.4178029512986541,0.16634048987179995,0.6604682095348835,0.2581336600705981,0.8011130597442389,-0.7928333762101829,-0.46420849533751607,0.9734407723881304,0.6059765759855509,-0.0321215926669538,-0.6358588179573417,-0.545289202593267,0.0007009878754615784,0.25384130235761404,-0.8238930040970445,-0.202267874032259,0.6066971207037568,-0.3297613700851798,-0.9530320251360536,-0.7298026271164417,0.9044850594364107,-0.9449401334859431,0.6389654385857284,-0.7753285062499344,0.5514037720859051,-0.13405562937259674,0.6633771830238402,0.8359668478369713,-0.3997185565531254,0.07326199067756534,0.8609825088642538,-0.7316862139850855,-0.6598468343727291,-0.7495985296554863,0.232485375367105,0.7065320662222803,-0.7097351183183491,-0.29169474355876446,0.8370480756275356,-0.38130904780700803,-0.20176926674321294,0.5345651307143271,-0.02588300360366702,-0.707433779258281,0.5046673370525241,0.5889421077445149,0.7689491282217205,0.8274991512298584,0.7884764266200364,-0.9919990715570748,-0.4883197736926377,0.6358746462501585,-0.5304665197618306,-0.6995681985281408,-0.9172894866205752,-0.6378644802607596,0.2813049489632249,0.9446071181446314,0.4449740923009813,0.8540266370400786,-0.3492512213997543,0.573127584066242,-0.8009376646950841,-0.3999538482166827,-0.16427774541079998,0.9217861574143171,-0.7697960780933499,0.37510049948468804,0.5363993793725967,0.1881469408981502,-0.29022775776684284,-0.6696954425424337,0.05145058361813426,-0.07539463741704822,0.05756616126745939,0.5392255303449929,-0.36779818031936884,-0.3279438763856888,0.3845544857904315,0.47146327048540115,-0.8795736841857433,-0.7493507601320744,-0.7965651387348771,0.42594970809295774,0.2526984768919647,0.2732118391431868,0.4371731411665678,-0.9840791160240769,-0.4823687239550054,0.023947506677359343,-0.14596350444480777,0.44798596343025565,-0.06460158061236143,0.13273259717971087,-0.9287089514546096,-0.6995237614028156,-0.7125801886431873,0.5481292442418635,0.32824852829799056,-0.2645302773453295,0.8193067777901888,0.6270742961205542,-0.6997030954807997,0.0969254239462316,-0.2896488728001714,0.4444851614534855,-0.192625533323735,-0.907256318256259,-0.7726649804972112,-0.9322229819372296,-0.10395184392109513,0.7688206760212779,-0.5981892431154847,0.5579168740659952,0.08386296592652798,0.6457856581546366,0.7769918502308428,-0.342685891315341,-0.7897232421673834,0.17321771895512938,0.6130835614167154,0.14876515604555607,0.5650990759022534,0.5398274688050151,0.495325970929116,0.49043291388079524,-0.8396383966319263,-0.5908254571259022,-0.5074398661963642,-0.79813909297809,-0.942121344152838,-0.1878510471433401,0.4509571045637131,-0.8359660361893475,0.7895590253174305,0.8525058254599571,-0.6276102988049388,-0.6921606129035354,-0.8567128283903003,0.9085280662402511,-0.6373014887794852,0.5249109291471541,0.26791555946692824,-0.7901949160732329,0.8581400285474956,-0.022399548906832933,-0.90247249789536,0.46461400482803583,-0.9536591893993318,-0.2714406903833151,-0.596605614759028,0.5068027540110052,-0.32494151033461094,-0.10422469954937696,-0.3884366718120873,-0.532437636051327,0.40262610418722034,0.7054716381244361,0.08424834161996841,-0.057155332993716,0.6529494593851268,0.927371684461832,0.40851754881441593,-0.0972521505318582,-0.3564620236866176,0.817840704228729,0.26845314912498,-0.9643521625548601,-0.9028931949287653,-0.8047039122320712,-0.9615914258174598,-0.5739430617541075,-0.4275880274362862,-0.3966348236426711,0.7498421748168766,-0.9230232462286949,0.14795451937243342,0.10231942683458328,0.31614430947229266,0.06282286765053868,-0.7869643764570355,-0.8273425195366144,0.018783216830343008,-0.5703714177943766,0.4168577119708061,-0.8601610246114433,-0.5507556670345366,-0.19981717178598046,-0.2954434100538492,-0.7673714272677898,-0.2372167012654245,-0.13109462335705757,0.16991412732750177,0.728831778280437,0.581766752526164,-0.043288533110171556,0.9044365007430315,0.44876625714823604,-0.12000797223299742,0.42300478648394346,0.09076822036877275,0.5741908685304224,-0.27677886513993144,0.8965359595604241,-0.12876782706007361,-0.415360854472965,0.8084749123081565,-0.06491942331194878,0.17600419139489532,0.6091302372515202,0.7995935482904315,-0.31058546947315335,0.5625110808759928,0.5423495480790734,-0.32237575948238373,-0.2688697371631861,0.4861513329669833,-0.07548094633966684,-0.8253781762905419,0.1174884308129549,-0.1932323812507093,-0.37202193075791,0.6996919764205813,-0.8718233653344214,0.22351451823487878,-0.5104246675036848,0.7515658936463296,0.7723109773360193,0.6680898433551192,-0.989185739774257,0.1094463737681508,-0.40283839078620076,-0.7824183623306453,0.9906344399787486,-0.7447422137483954,0.1314414432272315,0.5011468669399619,-0.2116178493015468,0.7863107728771865,-0.8574748490937054,0.8523234068416059,0.4618076696060598,0.06218800554051995,-0.05754376295953989,0.49729029135778546,0.5663299718871713,0.8893643142655492,-0.5272112945094705,-0.5360035211779177,0.9699497185647488,0.7509848112240434,-0.2325154566206038,0.03808426670730114,0.2609055722132325,-0.01266580168157816,0.5561547190882266,0.9672489571385086,-0.3102505714632571,0.6942142830230296,-0.7030000616796315,0.9197357012890279,0.4682178273797035,0.8881543441675603,0.8394674677401781,0.5310282669961452,0.9548961543478072,0.5874635907821357,0.40101457480341196,-0.07083003129810095,-0.25392064498737454,0.9407472242601216,0.6153835915029049,0.8700796253979206,0.1237863670103252,-0.3958301576785743,-0.39096597023308277,-0.8614349118433893,0.6298868963494897,0.892826784402132,-0.652532116509974,-0.4511779579333961,0.8862423212267458,0.23470297828316689,-0.6774207982234657,-0.6628827410750091,-0.5207332256250083,-0.2528364947065711,-0.17067948495969176,-0.252729541156441,0.1828509233891964,0.46260174782946706,-0.3837844883091748,0.6924685901030898,-0.026816959492862225,-0.9046010607853532,0.34934468986466527,-0.3543936046771705,0.7175975106656551,0.3551160357892513,0.22942789969965816,-0.09831134369596839,-0.12200601166114211,0.9507836918346584,-0.794110877905041,-0.9529312755912542,-0.7958554606884718,0.6978663993068039,0.8557957811281085,0.6706324829719961,0.632387435529381,0.08408255688846111,0.3179350392892957,0.946353507693857,0.7344427560456097,0.7470155199989676,-0.7124247713945806,0.23000410292297602,0.6772738159634173,0.6801454280503094,0.9997007776983082,0.24242402613162994,0.8004948906600475,-0.9028880819678307,-0.5602154876105487,0.8754828204400837,0.5891510583460331,0.9087156071327627,0.7625314267352223,-0.4404876488260925,-0.23508443357422948,0.3061559875495732,0.5569816292263567,0.42572383349761367,-0.21863564476370811,-0.7779878661967814,-0.2451762049458921,-0.8393319924362004,0.4932403676211834,0.7030222369357944,0.7239736765623093,-0.28449016343802214,-0.33907252363860607,-0.2280063759535551,0.051617313642054796,0.6294589205645025,-0.3091582958586514,-0.6153530585579574,0.9447578643448651,-0.32004171377047896,-0.047202314250171185,-0.12935292953625321,-0.12695005722343922,0.2691393862478435,0.25834605982527137,-0.28039250196889043,-0.13190406700596213,0.4455743250437081,-0.4189426456578076,-0.4951622714288533,0.17008340219035745,-0.7928540878929198,-0.49966226890683174,-0.0963389715179801,-0.24887344939634204,-0.920759997330606,-0.8673040396533906,0.3285775580443442,0.9756328770890832,-0.8087192131206393,0.991706617642194,-0.8569612698629498,0.24781364342197776,-0.8383509498089552,0.6517209652811289,0.5935890087857842,-0.609253809787333,-0.220330071169883,-0.5234549008309841,0.798587204888463,0.2758273249492049,0.47973626805469394,0.08093031961470842,-0.7039963020943105,0.09210693091154099,0.5887944139540195,0.18025186425074935,-0.5738799525424838,0.10876394063234329,-0.7508698403835297,0.6429892359301448,-0.7548252670094371,-0.2124097067862749,0.6768078012391925,-0.9402614757418633,0.4723285613581538,-0.8076327191665769,0.9726846595294774,-0.14854686008766294,0.8737775143235922,0.9451844803988934,0.8863434139639139,-0.2606190540827811,-0.9708846313878894,0.21081890119239688,0.4123938446864486,-0.39939412428066134,-0.5808720202185214,-0.17317017633467913,0.8174692173488438,-0.9373568594455719,-0.40913090109825134,-0.9111291109584272,0.45502875931560993,0.8038760712370276,-0.30753857968375087,-0.22723403293639421,-0.16223088465631008,0.35931758442893624,-0.6921439161524177,0.5199569347314537,0.21192961372435093,-0.6545745395123959,0.9495848575606942,0.46515882201492786,-0.47228397568687797,-0.8350216867402196,0.14645872171968222,-0.7507380307652056,-0.7130523519590497,-0.023062091786414385,0.8094867127947509,-0.16112011903896928,-0.5047805700451136,0.03428656654432416,0.8091690028086305,-0.07155812159180641,-0.4678447521291673,-0.10359775088727474,-0.5876472573727369,-0.8649645638652146,0.5470744497142732,-0.1156159695237875,0.39482057839632034,0.1805302002467215,0.006353119853883982,-0.014193391427397728,-0.0404405128210783,0.9287080084905028,-0.5486930664628744,0.6342621282674372,-0.7996518379077315,0.8596667107194662,-0.62836086563766,0.999718090519309,0.2108389870263636,-0.6150860507041216,0.16447153920307755,0.8924312521703541,-0.21712387911975384,-0.08644206868484616,0.6525653414428234,0.7919358583167195,-0.17865770170465112,0.6216798508539796,-0.679352615494281,-0.6537817623466253,0.19994025444611907,0.3142388421110809,0.7015116298571229,0.45219242200255394,0.5332455513998866,-0.23866388341411948,0.3705754103139043,-0.7147016082890332,-0.05593248922377825,-0.4203642108477652,-0.7812516028061509,-0.8204082883894444,-0.7012618980370462,0.3583585754968226,0.9830272039398551,-0.8498348332941532,-0.6247822460718453,0.6017641387879848,0.5399560933001339,0.9943197849206626,0.6986131076700985,0.8302722214721143,-0.9922361709177494,0.947440683376044,0.44053029734641314,0.1097412733361125,0.49122373200953007,-0.9068789696320891,-0.7586018168367445,-0.30104578053578734,-0.20507373148575425,0.24998731585219502,-0.867619211319834,0.8070699055679142,0.9569339123554528,-0.5100464830175042,-0.7311448957771063,-0.31594894267618656,0.7678224234841764,-0.949146730825305,0.37758639454841614,-0.7130944137461483,-0.5948229325003922,-0.6348173199221492,0.10431522130966187,-0.8969605835154653,0.766696191392839,-0.7162550683133304,0.8831942179240286,-0.7900820793583989,0.4128602775745094,0.7861772240139544,-0.49893579818308353,-0.3040020219050348,0.19269419834017754,-0.104699254501611,-0.27714906306937337,0.266116329934448,0.7153713284060359,0.1135344784706831,-0.14478617813438177,0.9260540851391852,-0.697064277715981,0.424565055873245,0.7901853313669562,-0.44129466032609344,0.28509625885635614,-0.6528878700919449,0.014223651494830847,-0.48499577585607767,-0.29294440196827054,0.23233601404353976,0.6031236569397151,0.9172758259810507,-0.6887689549475908,0.04106123652309179,0.15763900056481361,-0.4060290390625596,-0.602551908697933,-0.08665950503200293,-0.40005164686590433,-0.8970717950724065,-0.6968812965787947,-0.6362445414997637,0.24219010770320892,0.8860297063365579,-0.8206088989973068,0.42812109226360917,-0.2768877949565649,0.2453785389661789,-0.4242957108654082,-0.9425216447561979,0.8791352151893079,-0.1664412897080183,-0.44255661219358444,0.023496325127780437,-0.7008005171082914,-0.5362460212782025,0.9268990294076502,-0.49110929295420647,0.874954950530082,0.6975479014217854,0.5050830314867198,-0.583301620092243,0.2283553183078766,0.8851230060681701,-0.5539251347072423,0.7585351727902889,0.789109795819968,0.1998570035211742,-0.5363948820158839,0.6724306461401284,-0.5716231395490468,-0.24098726734519005,-0.2559589138254523,0.16718981927260756,-0.7560950499027967,0.15139398910105228,0.3167113489471376,0.2396849188953638,-0.8549926304258406,-0.43866941472515464,-0.7150119771249592,0.05343269417062402,-0.5866654682904482,-0.19764223089441657,-0.5303278602659702,0.3310832572169602,0.028079215437173843,0.07327594421803951,-0.3683636193163693,0.4307118244469166,0.5538222906179726,-0.40287040220573545,-0.06654280098155141,0.8961973637342453,0.7505381307564676,-0.47296129493042827,0.006353306584060192,0.10817703558132052,0.4279456390067935,-0.11359706707298756,-0.635133792180568,0.8771547661162913,0.6429382036440074,-0.23606594838202,-0.9129342413507402,0.2975600464269519,0.532815863378346,0.771634534932673,-0.542020314373076,0.0645057032816112,0.5516862981021404,0.5179777718149126,-0.5335326711647213,0.583396514877677,0.05359240900725126,0.6628789729438722,0.33293528482317924,-0.7267888677306473,-0.46490052342414856,-0.5936157037504017,-0.3717458862811327,-0.445823538582772,0.5920204259455204,0.9554899414069951,0.0034925476647913456,-0.6835217927582562,-0.7992643313482404,0.3787130331620574,-0.22671499010175467,0.8356098947115242,-0.6602235846221447,0.6665770928375423,-0.4319376568309963,-0.5384965161792934,0.8568653650581837,0.5939376340247691,0.9706402560696006,0.808366060256958,-0.9112914758734405,-0.5004381565377116,-0.13612860115244985,-0.36562021542340517,0.2454232843592763,0.902490368578583,0.7109370208345354,0.4249790906906128,-0.40240855561569333,-0.9879633937962353,0.9700637785717845,0.6248246836476028,0.9522058428265154,-0.8248546281829476,-0.5902559035457671,0.1989648607559502,0.10609206976369023,0.47746499767526984,-0.8292664494365454,-0.6982059557922184,-0.7098938128910959,-0.39883926417678595,-0.1262108781374991,-0.6663319179788232,0.6185229304246604,0.5963620794937015,0.3806610368192196,0.21737855160608888,-0.48712092312052846,0.8571982122957706,-0.7462259097956121,-0.8146961382590234,-0.9440501774661243,0.503037472255528,0.8492618999443948,0.4300551228225231,-0.16557240765541792,0.06415208987891674,0.3388490164652467,0.4605812430381775,0.05762754660099745,-0.5403906432911754,-0.7320169387385249,-0.9199142563156784,-0.4897298738360405,-0.40519459592178464,-0.8096205638721585,-0.8896777722984552,-0.6521617425605655,0.845354211051017,0.7858073939569294,-0.34424657514318824,0.17841773852705956,-0.7377155791036785,-0.43471571477130055,-0.4609196549281478,0.6186990402638912,-0.18085659015923738,-0.5588381281122565,-0.1574831367470324,0.7778471778146923,0.6083779046311975,0.11708159279078245,-0.06165591161698103,-0.9923249562270939,-0.05787512846291065,-0.6048784819431603,0.6824556081555784,-0.7311724554747343,0.2347506587393582,0.7445259047672153,-0.21430568303912878,-0.3918377682566643,0.16867542173713446,0.12171061523258686,0.9000717303715646,0.9723520553670824,0.16256533795967698,-0.8605949920602143,0.0993717573583126,-0.8191118808463216,-0.6400059405714273,-0.28226615861058235,0.42117088148370385,0.9924135976471007,-0.7674979544244707,-0.958712499588728,0.2781135281547904,0.9210763215087354,-0.4102979409508407,0.2584693254902959,-0.10410007601603866,0.4694193503819406,0.7468963759019971,-0.5929277860559523,0.18967091292142868,-0.2683317428454757,-0.5151080833747983,0.5792711698450148,0.841372205875814,0.9168486380949616,0.3925213194452226,-0.09393751248717308,0.39837859803810716,-0.8832011865451932,0.6658074432052672,-0.7686457121744752,0.5481640775687993,-0.2856611628085375,0.8870465867221355,0.3658535461872816,-0.9265801114961505,0.9421297213993967,-0.6260543563403189,-0.008997992146760225,0.3372201002202928,-0.8779990212060511,-0.3405542396940291,0.09021336026489735,-0.9589974633418024,-0.6852420610375702,-0.41726239677518606,-0.1820601229555905,0.9561107461340725,-0.618811456952244,-0.6398428562097251,0.7545051970519125,-0.9040117277763784,-0.9742017351090908,-0.5662104822695255,-0.20689140260219574,0.6109188729897141,-0.15944126900285482,-0.23514189198613167,-0.6612918707542121,-0.6778401825577021,-0.7746369880624115,-0.7252002679742873,-0.6539601641707122,0.3254541060887277,-0.3156933435238898,-0.8846883084625006,0.9672513594850898,0.6430454030632973,-0.17682868894189596,-0.6778382346965373,-0.8691920610144734,0.701239911839366,-0.586792214307934,0.9649005080573261,-0.9123895857483149,-0.30786972725763917,-0.4925044532865286,-0.9911586390808225,0.352464965544641,0.7768692285753787,-0.796922545414418,-0.2997894864529371,-0.42751953518018126,-0.9228274202905595,-0.5868464503437281,0.397864518687129,-0.261109231505543,0.021245532669126987,-0.14420175785198808,-0.8768782280385494,-0.45657126465812325,-0.11020383471623063,0.15765831340104342,-0.46770399529486895,-0.3886922290548682,0.5862063928507268,0.5305962385609746,-0.5971651962026954,-0.30158333014696836,-0.16629601828753948,0.06194394174963236,-0.4741942137479782,-0.8973186830990016,0.426263315603137,-0.3656960870139301,0.5171522260643542,0.2789761442691088,-0.48737271316349506,-0.06109096249565482,0.769483394920826,0.23187492694705725,-0.8565851841121912,0.011503921821713448,-0.7699743467383087,0.02652269322425127,0.09061510069295764,-0.6235305466689169,0.8823093604296446,0.05191711708903313,-0.6989529710263014,-0.3756599039770663,-0.630847467109561,0.6736533707007766,-0.6337033952586353,0.19239175552502275,-0.31749216467142105,-0.2571770059876144,-0.4247230915352702,0.48274229606613517,0.27643835404887795,-0.6894167605787516,-0.5919633726589382,-0.9469817853532732,-0.6640922715887427,0.7780788596719503,0.0020823245868086815,-0.18658937374129891,-0.9747386332601309,0.5531340641900897,-0.4148285980336368,-0.6419564844109118,0.09196522971615195,-0.4171774825081229,-0.987044170498848,-0.9243633318692446,0.9168591541238129,-0.8464704630896449,-0.2390477191656828,-0.9665636355057359,-0.4203763888217509,0.09045831440016627,0.18214554898440838,0.7576818047091365,0.32253250014036894,-0.08421435253694654,-0.4321021568030119,-0.6545187900774181,0.37369711650535464,0.6372150038369,-0.7586978604085743,0.002165920101106167,0.3649896210990846,0.7352921036072075,-0.3573383102193475,0.6710044932551682,0.5465723648667336,0.8273340221494436,0.9321000869385898,-0.147206153254956,-0.23640264570713043,0.6669584712944925,-0.8504220210015774,0.9618853623978794,-0.14301945362240076,-0.5984561704099178,0.5282034054398537,0.30724080512300134,-0.3807549411430955,0.6529884859919548,0.6736063589341938,-0.3210932267829776,-0.4125157673843205,0.9596218666993082,-0.7388759204186499,-0.8169950353913009,-0.8908116426318884,-0.16781704174354672,-0.7664233916439116,-0.5884664333425462,0.9742533336393535,0.9537900011055171,-0.911744233686477,0.6117427949793637,0.40203797770664096,0.8681952184997499,-0.14618822187185287,-0.07323616556823254,-0.514168880879879,0.4064412899315357,-0.9598495503887534,0.5835187020711601,0.22547854157164693,-0.7651937883347273,0.6452663391828537,-0.8582028956152499,-0.995224954560399,0.8791706678457558,-0.15505619952455163,-0.7017177352681756,-0.9033654327504337,0.22150785196572542,0.06480412371456623,-0.5064496188424528,-0.8475570767186582,-0.07184045575559139,-0.4126121266745031,-0.33308813348412514,-0.7191841220483184,0.3491040146909654,-0.20611637085676193,-0.6261699264869094,0.483090503141284,-0.4309361446648836,0.7562076514586806,-0.7427742681466043,0.2565921260975301,-0.59073774702847,-0.9954673703759909,-0.9441491859033704,-0.9531924049369991,-0.1737024518661201,0.9997386327013373,-0.3169100312516093,-0.6193563570268452,0.8258167509920895,0.36661791941151023,-0.8158188755623996,0.22344154864549637,0.3463490176945925,0.18319496233016253,-0.7570876786485314,-0.6558423838578165,0.715583723038435,0.04060340952128172,-0.29994393279775977,0.7793587851338089,0.33740317402407527,-0.9475771952420473,-0.7830965234898031,0.8415584177710116,-0.7676772167906165,0.8038076488301158,0.021078424993902445,0.5927540799602866,-0.8788896482437849,-0.4828507201746106,0.6326881903223693,-0.8934213505126536,0.6139305299147964,-0.7468427726998925,0.6852267701178789,-0.2854890092276037,0.07444447558373213,-0.020639050751924515,-0.4196715885773301,0.7597000407986343,-0.06208611559122801,0.5898868944495916,-0.08854671800509095,0.8434048853814602,-0.07117784908041358,-0.5497528919950128,0.663394583389163,-0.4253432364203036,-0.335421409457922,-0.3321092030964792,-0.9349942742846906,0.7658271053805947,0.24241015315055847,-0.8937321463599801,0.8584173726849258,-0.05917739914730191,0.5079317260533571,-0.5260879066772759,-0.011469690129160881,0.9981465265154839,-0.7382072638720274,-0.5853134226053953,0.16040278738364577,-0.744921026751399,0.17887658206745982,0.29141075955703855,-0.06965043768286705,-0.8545450265519321,-0.7688559428788722,0.22017923463135958,-0.46985469525679946,0.06757030170410872,-0.47117314115166664,-0.714176285546273,0.6569576165638864,-0.4904012307524681,0.9413418234325945,0.7628222550265491,-0.8592446348629892,-0.15397102618589997,-0.014306709636002779,0.26916513685137033,0.4655906269326806,0.39827308151870966,-0.9465498211793602,0.04555485164746642,0.8137832637876272,0.8453327845782042,-0.9341152631677687,-0.6254100236110389,-0.7972576543688774,0.200981043279171,-0.21052971435710788,0.7690745652653277,-0.03842734731733799,0.7296547563746572,0.5957704149186611,0.5414334898814559,-0.7519801212474704,0.49319130927324295,-0.3907619318924844,0.3406646279618144,-0.9519994300790131,-0.14169037016108632,0.9659912744536996,-0.2243158291094005,0.48534695990383625,0.45594291342422366,-0.34375506080687046,-0.7409916799515486,0.16653988137841225,-0.2201215997338295,-0.10605753073468804,0.595497886184603,-0.6615421660244465,0.9355715466663241,-0.03808171488344669,-0.2347840340808034,0.41806604620069265,0.5946005508303642,-0.24273194931447506,0.9174178671091795,-0.5198466815054417,-0.24497395940124989,0.41764225624501705,0.4929976537823677,0.4227569759823382,-0.29725815868005157,-0.12541982345283031,-0.37574502546340227,0.9717097221873701,0.42558842804282904,0.8243446284905076,-0.803239559289068,0.5446565723977983,-0.1220189156010747,-0.8930354178883135,0.7711962223984301,-0.8629484614357352,0.2559449174441397,0.3088349816389382,-0.5245227534323931,0.9520037402398884,0.4681029533967376,0.6519196261651814,-0.9303003358654678,0.7403576741926372,-0.8322524353861809,0.041487598326057196,0.12721159122884274,-0.5580634106881917,-0.18523573176935315,-0.4139370881021023,0.8036897634156048,0.4015538049861789,0.6753413248807192,-0.7605400239117444,0.9039719621650875,-0.4900472308509052,-0.3055182811804116,-0.3084407038986683,-0.19909781217575073,0.4818095713853836,0.4030427010729909,0.23333048122003675,0.39052560506388545,-0.6469196365214884,0.10081526497378945,-0.18163867061957717,0.94357955083251,0.3383951596915722,-0.5857426663860679,-0.10573919862508774,0.6209521503187716,0.7471469095908105,-0.5884296684525907,-0.7983064237050712,-0.6730622793547809,-0.3487346088513732,0.017571830190718174,0.5193411270156503,-0.33773528737947345,-0.6675876523368061,0.6224190047942102,0.4981215405277908,0.4419250492937863,-0.0753063065931201,-0.08053367491811514,-0.06478855293244123,0.35120708821341395,-0.6486824327148497,0.7964634532108903,0.3475796915590763,-0.34312368277460337,-0.3177624586969614,-0.24693926656618714,0.8508046288043261,-0.34571876656264067,0.19565192237496376,0.3630127743817866,-0.24044640082865953,-0.22736850380897522,-0.17467262968420982,-0.36382532492280006,0.8695136103779078,0.3866862109862268,0.6666836170479655,0.37122420500963926,-0.11556959105655551,-0.6666582706384361,-0.11410516034811735,0.10149516304954886,-0.9468286754563451,-0.7849048674106598,0.8854488055221736,-0.4332602545619011,-0.9818073171190917,-0.3771244357340038,-0.8443431193009019,0.2037231158465147,0.10122395865619183,-0.40339287323877215,-0.9818200408481061,-0.3455110499635339,0.6082146842963994,-0.8184046181850135,-0.19306671805679798,0.49815139221027493,0.8867208044975996,-0.42983180144801736,-0.1804226040840149,0.14922407176345587,-0.06358514819294214,-0.2546127107925713,0.005307118874043226,0.5232708714902401,0.5457946355454624,-0.3934306586161256,-0.18958759866654873,0.36292142421007156,-0.9336857553571463,-0.9811059040948749,-0.6976101067848504,-0.4223182597197592,-0.39038877142593265,-0.0022617317736148834,-0.2489029415883124,0.16999025968834758,-0.574846270494163,0.8930227658711374,-0.7815553331747651,0.24714854499325156,0.10792743368074298,-0.7577474480494857,0.8782669780775905,-0.5312236463651061,-0.7191076525487006,0.8988074851222336,-0.11504929233342409,0.9276941255666316,-0.7434389460831881,0.5194293516688049,0.549541677813977,-0.5455832569859922,0.87532775150612,0.551640622317791,-0.12505919439718127,0.5046298108063638,-0.3577067172154784,-0.32924101082608104,0.1464370358735323,0.46496560191735625,-0.5694630928337574,-0.8164987722411752,0.21114466059952974,-0.3699808223173022,-0.11394318332895637,-0.3946456890553236,0.664069396443665,0.6910817339085042,0.9462612103670835,0.8948892187327147,-0.34212759137153625,-0.30810526479035616,-0.2564573185518384,0.06418165564537048,0.14320417726412416,0.939635272603482,-0.5547785959206522,-0.24829179560765624,0.9656562805175781,0.5631162137724459,-0.6776846251450479,0.595590079203248,0.9886393183842301,-0.4835511581040919,-0.7733859056606889,0.7031087526120245,0.8937753280624747,-0.5085087511688471,-0.8827779171988368,-0.30076945293694735,0.12962611205875874,0.9528871211223304,-0.18889249814674258,0.596576867159456,0.6753183538094163,-0.39691236475482583,-0.722084101755172,-0.2468362939544022,0.392413099296391,-0.060493269469588995,-0.8323548673652112,-0.7082482953555882,0.025264573749154806,-0.18926257593557239,0.2655785633251071,-0.2505470048636198,-0.8109779572114348,-0.19225295865908265,-0.30302023561671376,-0.5839243070222437,0.13121337303891778,-0.29227519826963544,0.1606607218272984,-0.26885418593883514,-0.2936427416279912,-0.6510699666105211,-0.29325428139418364,-0.2888898691162467,-0.026486895512789488,-0.7469119229353964,-0.8571650818921626,-0.8141918433830142,-0.7279094648547471,-0.0882685286924243,0.7947148904204369,0.9307782091200352,0.20767479157075286,-0.8856074595823884,-0.495765233412385,0.9216539412736893,-0.8487794264219701,-0.9263853314332664,0.8152981926687062,-0.01825961610302329,-0.3362531326711178,0.7216825275681913,0.01660814555361867,0.25073189241811633,0.3421214488334954,-0.3348918352276087,-0.8149745436385274,-0.37292097555473447,0.12223934940993786,-0.6984962821006775,-0.5977862682193518,-0.9638876081444323,-0.1874187714420259,-0.7079022615216672,-0.4009944787248969,-0.6748960432596505,0.9180946182459593,-0.9540500249713659,-0.7267396827228367,0.43352486193180084,-0.19835442397743464,0.06146044842898846,-0.24367851298302412,-0.9217967162840068,-0.6531325494870543,-0.8707869867794216,0.48253623442724347,0.7687824498862028,-0.8272311477921903,0.874744619242847,0.844043580815196,-0.8467822405509651,0.4361003111116588,0.4488361901603639,-0.8136239880695939,-0.21596354572102427,0.4174109986051917,0.6969037782400846,0.46814064448699355,-0.525014522485435,0.32175254449248314,-0.44033290818333626,0.7996374247595668,0.10212345933541656,0.03577367402613163,-0.9442695598118007,0.9066241360269487,0.47903021331876516,-0.24406931409612298,0.008434295188635588,-0.7485908390954137,-0.3211466106586158,0.11291628051549196,-0.8667910853400826,-0.5094666224904358,-0.258189438842237,-0.8977283285930753,-0.9060318577103317,-0.8009515157900751,-0.808993898332119,0.7584090372547507,-0.35654415329918265,0.7158346176147461,-0.5442912243306637,0.0668364642187953,-0.33821291709318757,-0.04886608850210905,0.9683765168301761,-0.029971301089972258,-0.017815688159316778,0.2616555937565863,0.4047550358809531,0.5565129090100527,0.6711770021356642,0.7203122270293534,-0.239784880541265,0.26686801109462976,-0.7880189470015466,-0.8376247291453183,-0.5457143513485789,-0.9668742627836764,-0.37099127704277635,0.4503195476718247,0.2910474152304232,0.9812320633791387,0.16049001552164555,-0.6978957820683718,-0.31301925517618656,0.732851623557508,0.836257747374475,-0.5980199985206127,-0.35358855687081814,0.8202992058359087,0.7600693716667593,-0.5324010355398059,-0.6493328823707998,-0.4578886847011745,0.27031782548874617,-0.7523168926127255,-0.4776183580979705,-0.8834184338338673,0.814642833545804,0.16325439466163516,0.9509237403981388,-0.17470122827216983,-0.05948782246559858,-0.22176802344620228,0.8164594522677362,0.0916548683308065,0.09171372838318348,-0.1920360210351646,-0.3156371545046568,-0.2904207231476903,0.703779136762023,-0.18117617722600698,-0.4845802364870906,0.259395943954587,-0.5147907873615623,-0.24250498926267028,0.22598697571083903,0.516982585657388,0.11174214631319046,0.4619542141444981,0.6467341417446733,0.8507216186262667,0.2851081951521337,-0.5232801777310669,-0.44726145453751087,-0.7188972136937082,0.0077806212939321995,-0.38162908190861344,-0.4114871039055288,0.09373493725433946,0.6640378953889012,0.662097420077771,0.6627959227189422,0.578967169392854,-0.8566752588376403,-0.05565308919176459,-0.6271425420418382,-0.25532880751416087,-0.1173446187749505,0.6626551966182888,-0.9648431334644556,0.6735724131576717,0.4900278579443693,0.3684464292600751,0.36590542923659086,-0.4014824451878667,0.612284695263952,-0.18334322748705745,-0.15563747566193342,0.8040661467239261,0.9375339359976351,-0.7061066678725183,-0.7631771168671548,0.2473175646737218,-0.31302190897986293,-0.704072926659137,0.003913838881999254,0.2890188372693956,0.38197056390345097,-0.2124029346741736,-0.5137427132576704,0.6320308055728674,-0.6097998470067978,0.30453438172116876,0.6932065817527473,0.7728493944741786,-0.9837354440242052,0.754374080337584,0.8049489702098072,0.9346130671910942,-0.10564477555453777,0.11692964658141136,0.9551574159413576,0.632139484398067,0.22819845005869865,-0.5972831500694156,0.27701353235170245,0.4419617406092584,-0.6624130960553885,-0.9764995616860688,0.7247858294285834,-0.6390702347271144,0.9983579162508249,-0.9092890024185181,0.26113138161599636,-0.9409969612024724,0.37562628416344523,0.9630561154335737,-0.9913541646674275,-0.9075573044829071,0.6838563056662679,0.9270261442288756,0.07932695047929883,0.014159150887280703,-0.9340921477414668,-0.4335964904166758,0.3827184555120766,-0.8652928294613957,0.6417416660115123,0.012304473668336868,-0.7331030177883804,0.03813446732237935,-0.4050716715864837,-0.5781821305863559,-0.548986675683409,0.36686305375769734,-0.32323008542880416,-0.470844192430377,0.32607946963980794,0.3665206921286881,-0.5261944672092795,0.4029931756667793,-0.27118441881611943,0.5236053126864135,0.4073812775313854,-0.018085280898958445,-0.5730466982349753,-0.19674259796738625,-0.2798948655836284,0.7256813407875597,0.6908456915989518,0.033602551091462374,-0.9860898400656879,-0.9941574158146977,0.6995054534636438,-0.9902063007466495,-0.9836000795476139,0.28630074113607407,0.07138529513031244,-0.33911539940163493,-0.8043927205726504,0.5434962315484881,-0.8530771061778069,-0.7766005415469408,0.10075110476464033,-0.02337188133969903,-0.9760345094837248,0.3080320172011852,-0.7933602542616427,-0.6860688189044595,0.35932314675301313,-0.5320083219558001,-0.41975223319604993,-0.018393411301076412,0.35618084063753486,-0.2385016088373959,-0.6956841754727066,-0.5446131359785795,0.2390368953347206,-0.8437849776819348,0.9879177338443696,-0.4526454359292984,-0.013273702003061771,-0.5656700250692666,-0.8853601384907961,-0.5347639694809914,0.22670583752915263,0.39150703279301524,-0.8272676500491798,0.650562631431967,-0.8731766613200307,0.40422954596579075,0.20342682348564267,0.6404471690766513,-0.04682604782283306,-0.579777258913964,0.7126763337291777,0.09832571027800441,-0.08987426105886698,-0.5695353494957089,-0.977938907686621,0.4232598659582436,0.7937996773980558,0.3567674681544304,-0.5572164258919656,0.5032441793009639,-0.7580923088826239,-0.4628135357052088,0.40824510250240564,0.14580181427299976,-0.61880092183128,-0.8531236820854247,-0.07324337679892778,-0.1671309545636177,-0.18473710073158145,0.17369714844971895,-0.7266204860061407,0.19980663107708097,-0.9575405111536384,0.31927370047196746,0.17093365546315908,-0.16548945847898722,0.04419485665857792,0.7003380451351404,-0.03941013431176543,0.6803066083230078,-0.2602045931853354,-0.6968146674335003,0.11005742475390434,0.28126745438203216,0.66961485799402,0.41708047688007355,0.2277517612092197,-0.39728343673050404,-0.42945133801549673,-0.7048839363269508,-0.9664732911624014,-0.012655009515583515,-0.1318839224986732,-0.8046399746090174,0.6971648931503296,0.005043072160333395,0.8435029867105186,0.23562316643074155,0.7371234255842865,0.6012518820352852,-0.8833526568487287,0.5408793478272855,-0.7650158274918795,0.17429803777486086,0.7392244632355869,0.7201369404792786,-0.3152823857963085,-0.9992087320424616,0.7183549809269607,-0.983169368468225,0.7006902801804245,0.6740782698616385,-0.5245600091293454,0.2946083964779973,0.20321256946772337,0.5810580216348171,0.6379176629707217,-0.07721363380551338,0.4703290993347764,-0.283463214058429,-0.5535710728727281,0.2647859025746584,-0.3704382390715182,0.9590529557317495,0.39087347872555256,0.18399424199014902,0.23334617074579,0.6443091239780188,0.44725590012967587,0.4028435521759093,-0.452080266084522,-0.8619308760389686,0.5676305736415088,0.42325031151995063,-0.49855080153793097,0.6092476639896631,0.6966685988008976,0.3980311048217118,-0.8783864891156554,0.5029514040797949,-0.6823275089263916,0.6674394803121686,0.11339269997552037,-0.04048278648406267,-0.14978709677234292,0.4246606668457389,0.8681754688732326,-0.5784883676096797,-0.930732308421284,0.3672220534645021,0.9336011074483395,0.2599856313318014,-0.5872866045683622,0.24718765588477254,-0.9098004512488842,0.24316746182739735,0.023423394188284874,-0.13716003764420748,-0.0178143042139709,0.5657345005311072,0.2639270732179284,-0.25214411644265056,0.3696927181445062,0.38699258491396904,-0.8758086785674095,0.6760411285795271,-0.7278229757212102,-0.04511688929051161,-0.178195440210402,0.43919798731803894,-0.5674848956987262,0.36055072164162993,-0.8289229082874954,-0.35802208445966244,-0.5395802822895348,-0.5063258646987379,-0.15976178785786033,0.23354013450443745,0.48574106162413955,-0.8790019904263318,0.8785306648351252,0.23083220375701785,-0.8684613355435431,0.14108699141070247,0.7689853450283408,0.34466402139514685,-0.2742207581177354,0.3795328242704272,-0.10211986349895597,0.9971909746527672,-0.9422198385000229,0.3753322954289615,-0.4809165094047785,0.7066185912117362,0.24097400670871139,0.6234254147857428,0.5928471977822483,0.5598836350254714,-0.39610721124336123,-0.8726095003075898,-0.3328416640870273,-0.016645852010697126,-0.6024632249027491,-0.7530063320882618,0.13481450779363513,-0.7536960211582482,0.7368436912074685,0.06691396748647094,0.8878829926252365,0.9153529955074191,0.7156509472988546,0.8528351653367281,0.9706354290246964,-0.08464677818119526,-0.3222286328673363,0.6114307586103678,-0.6667413581162691,-0.9230469204485416,0.6100442386232316,0.11016101576387882,0.2778690424747765,0.7807007380761206,-0.3635986177250743,0.5710752783343196,0.10097507946193218,0.32007736526429653,0.9773081876337528,0.4425923521630466,-0.722013408318162,-0.6589066437445581,-0.41470128670334816,0.04668845050036907,-0.25621295161545277,0.7809926453046501,-0.3735194941982627,0.38207933818921447,-0.10103585384786129,-0.5020944918505847,-0.5501326606608927,-0.29868569364771247,-0.7347456249408424,0.8760643391869962,-0.7980100088752806,-0.9932467457838356,0.5615593795664608,0.5013657798990607,-0.3153998455964029,-0.2355197435244918,-0.9827749691903591,0.48166592605412006,-0.2450084905140102,0.9322148016653955,0.9204058763571084,-0.5367432096973062,-0.5511203859932721,-0.4146671867929399,-0.5320787732489407,0.6282535516656935,-0.6123215118423104,-0.5353767792694271,0.5037877573631704,-0.8772021979093552,-0.2389433505013585,-0.8234004373662174,-0.3666123286820948,-0.8088984717614949,-0.37237485963851213,0.5909089846536517,-0.4395375903695822,0.38610641192644835,-0.3521439451724291,0.620788985863328,0.7702226834371686,-0.5042488593608141,0.04540266748517752,-0.21775080962106586,0.8926728744991124,0.12034107930958271,-0.6093643587082624,0.8028836799785495,0.367622509598732,0.48472847882658243,0.3815664709545672,-0.04588704742491245,0.9159403103403747,-0.9538764469325542,-0.6569646527059376,-0.5019159950315952,-0.5641631647013128,-0.00697454996407032,0.5726170153357089,-0.009213292971253395,-0.8758611888624728,-0.8647203864529729,0.13399391807615757,0.6350962347351015,0.31980280950665474,-0.5358652784489095,-0.6555598699487746,-0.6784742753952742,0.4899670584127307,0.5376159469597042,-0.7703996505588293,-0.9375591175630689,0.8204144225455821,-0.3317557252012193,0.889991401694715,0.39683192875236273,-0.2853163732215762,0.9633303140290082,0.540640237275511,0.27459566993638873,0.1926209293305874,0.7643683445639908,-0.010240985546261072,-0.015315044205635786,0.007022732403129339,-0.6108164596371353,0.5027691167779267,0.7338314242660999,-0.66482072789222,0.22644477942958474,-0.3893789490684867,-0.725423130672425,0.25889064092189074,0.5577456085011363,-0.37648430885747075,-0.6602343264967203,-0.15016008028760552,-0.2005515000782907,-0.38480768259614706,-0.12984241405501962,-0.2960597821511328,0.32890792144462466,-0.8114184411242604,0.8950278884731233,-0.8470303099602461,-0.7843450363725424,-0.4114601560868323,0.3324898951686919,0.7969058584421873,-0.8402173700742424,0.43235729821026325,-0.897668098565191,-0.21223281091079116,0.6919958391226828,-0.24533304432407022,0.8255272884853184,-0.2321152458898723,-0.04402896808460355,-0.23931948887184262,-0.7319595040753484,-0.48363747633993626,-0.08089157706126571,0.7829827456735075,-0.7726444960571826,0.3706698026508093,0.5566038489341736,-0.3430583314038813,-0.2680105362087488,0.866683172993362,-0.6359730833210051,0.5204091896302998,0.7975416090339422,-0.32320359349250793,-0.7339652441442013,0.608920328784734,0.07967722555622458,0.07689546514302492,-0.438349689822644,0.056565085891634226,0.027839483693242073,-0.20643311506137252,-0.8020748565904796,0.654045732691884,0.7693220567889512,-0.6890623588114977,-0.9814660898409784,-0.09952655900269747,0.9687124504707754,-0.7915087137371302,0.5938578699715436,-0.6563274823129177,0.538979790173471,-0.2100111204199493,0.7404016265645623,-0.6254966580308974,-0.7081714821979403,-0.0033300737850368023,0.26754119899123907,0.8652259213849902,0.8183890860527754,-0.9909123457036912,0.39915065513923764,-0.9978642715141177,0.2811242821626365,0.23287351801991463,-0.14605706138536334,0.44171021739020944,0.42662284057587385,0.3156261360272765,-0.613263345323503,0.16482800338417292,-0.039523248095065355,-0.4152830117382109,-0.39094383316114545,0.5911963200196624,0.7085475567728281,-0.5321408594027162,-0.1149069364182651,-0.42458884231746197,-0.6544621824286878,-0.9007446202449501,0.45354809146374464,-0.7797836516983807,-0.1360363489948213,0.9925582576543093,0.11147337965667248,-0.4563617864623666,0.35949962958693504,-0.658173082396388,0.11978422105312347,-0.27923232642933726,0.23539224732667208,-0.6994344950653613,0.13804109254851937,0.4775807401165366,-0.553022098261863,-0.44506472581997514,0.07318028621375561,-0.006559173110872507,0.40596225671470165,0.46461186511442065,-0.08889997890219092,0.3670191466808319,-0.5542254317551851,-0.3741113687865436,0.21843034029006958,0.9257918410003185,0.8787176073528826,0.7072942131198943,-0.8132764613255858,-0.8727367613464594,0.4235950279980898,-0.5358538930304348,-0.6467344728298485,-0.5183699745684862,0.6369695491157472,-0.5550755830481648,-0.00919752474874258,-0.9176703565753996,-0.25486948899924755,0.53331508487463,-0.43341916846111417,0.6882821200415492,-0.4465305879712105,0.8465738026425242,0.13929697079584002,-0.5062471847049892,0.37088167341426015,-0.9925672425888479,0.2667899993248284,0.9308667383156717,0.783142710570246,0.3706949846819043,0.75261490046978,0.26480641681700945,0.08934551058337092,0.5797748272307217,-0.7735416302457452,-0.6685010571964085,-0.6392048643901944,0.3287650616839528,0.6054448545910418,0.7535818503238261,-0.7176132942549884,0.3337436467409134,-0.30005426378920674,-0.8810927369631827,-0.983449898660183,-0.509621549397707,-0.9628583951853216,0.3909588851965964,0.6083881775848567,0.004751197993755341,0.8400450944900513,-0.7865282404236495,0.8266055341809988,-0.4686592034995556,-0.48870124435052276,0.6348116914741695,0.2540047997608781,0.06150508904829621,0.3806168478913605,-0.5207839864306152,-0.47869736375287175,0.3514450332149863,-0.5281299273483455,0.39708575792610645,0.2685286309570074,-0.9948337064124644,-0.3733910256996751,-0.90790837071836,-0.8813552861101925,-0.8989759576506913,-0.8753558499738574,0.5396164315752685,-0.9792261049151421,-0.20959923043847084,0.9783479566685855,0.10875338083133101,-0.3589471890591085,-0.6955636739730835,-0.7791353524662554,-0.6899755629710853,0.572406186722219,0.10107438592240214,0.7764329263009131,0.748272804543376,0.9090558085590601,-0.7789955814369023,0.19466010387986898,0.8523886287584901,-0.6429069256410003,-0.8103101034648716,-0.0022526835091412067,-0.40676279831677675,-0.7884571994654834,0.9278005235828459,0.7441725144162774,0.3017220264300704,-0.3066028645262122,-0.12706064386293292,-0.1121412212960422,-0.2720975177362561,-0.549778126180172,-0.9235375691205263,-0.6267005479894578,-0.26542388880625367,-0.6782572856172919,0.7151865093037486,-0.9575109044089913,0.45209778705611825,0.04861634271219373,-0.9867433933541179,0.21085381042212248,0.3796106860972941,0.3104690322652459,-0.05451110005378723,-0.6867045108228922,0.04805888654664159,-0.3367209145799279,0.4510419829748571,0.3582273190841079,0.7912982013076544,-0.9974509943276644,-0.9836312080733478,0.7183363484218717,-0.3790345578454435,-0.348857790697366,-0.20779067929834127,0.9373950441367924,-0.9290317799896002,-0.3599906568415463,-0.18758807564154267,-0.009700769558548927,-0.977668312843889,0.956305586732924,0.6712627457454801,0.34300943557173014,0.49803493870422244,0.45226680813357234,0.16705023823305964,0.5677582104690373,-0.33487887028604746,0.2126812394708395,-0.520916442386806,-0.20279077580198646,-0.8160927845165133,-0.21367546496912837,0.5349534195847809,-0.7116579711437225,0.22481344500556588,-0.47296003019437194,-0.2559184730052948,-0.06573206884786487,-0.1561755440197885,-0.7500118436291814,-0.16119706258177757,-0.06552592990919948,-0.1648447820916772,0.21827962156385183,-0.07221039896830916,-0.4801871385425329,0.46330192824825644,-0.5982632567174733,0.11086726002395153,-0.14399465266615152,0.26135924458503723,0.8459913074038923,-0.7527849497273564,0.5411823126487434,-0.8745633140206337,0.8438142724335194,-0.7061528633348644,-0.008001811802387238,0.20158873964101076,-0.5823508780449629,0.15589221473783255,0.4574225125834346,-0.28300123475492,-0.8982415637001395,0.7565720095299184,0.011808049399405718,-0.15390809159725904,-0.36758078588172793,-0.92463816748932,-0.6643892279826105,0.010949874296784401,0.2431320147588849,0.754283593967557,-0.9568987255915999,-0.8828055937774479,-0.4013423416763544,-0.5390520179644227,-0.8602179689332843,-0.6231744349934161,-0.3574215117841959,0.615730447228998,-0.18341934541240335,-0.04233779339119792,-0.41627573128789663,-0.7612132923677564,-0.44093501940369606,0.9491771482862532,0.01968871569260955,-0.10394958779215813,-0.08306099474430084,-0.03217787994071841,-0.1127144480124116,-0.09723778162151575,0.9537738477811217,0.47155175311490893,0.24596056900918484,0.1370897088199854,0.5826117359101772,-0.3928022528998554,0.3258418249897659,-0.1613812535069883,-0.7759198406711221,-0.5157594834454358,0.9721377645619214,0.24490258703008294,-0.4869995922781527,-0.324041279964149,0.11184029374271631,0.7889155489392579,-0.02749170223250985,0.04069002624601126,-0.9671299858018756,0.48985144635662436,0.9068953571841121,0.5166583405807614,-0.2897153776139021,-0.4082648754119873,0.5300478748977184,-0.5357575896196067,-0.8232122343033552,-0.27265274431556463,-0.3090757275931537,-0.509912031237036,-0.5028584827668965,0.8940988713875413,-0.4556560697965324,-0.8013723511248827,0.6212939731776714,-0.44804110331460834,-0.3814332988113165,0.32918826024979353,0.35330568440258503,0.36826112400740385,-0.8629247746430337,0.5308669148944318,0.8669336722232401,-0.599176584277302,0.6684438409283757,0.9286664365790784,0.8545978292822838,0.8501851265318692,0.6541943931952119,-0.8856233642436564,0.11003903858363628,-0.3002569442614913,-0.25768598914146423,0.6399192265234888,0.7376367803663015,-0.43070872873067856,0.4521769410930574,-0.2579783648252487,-0.3388179517351091,0.2889866423793137,0.9090397828258574,0.5687353224493563,-0.7631958238780499,-0.9167036088183522,0.05359731940552592,-0.16979228798300028,-0.09468795079737902,-0.7369671268388629,-0.9586771773174405,0.33698645094409585,-0.9138391702435911,-0.2029068898409605,0.7081288527697325,0.7708915029652417,-0.9607473202049732,0.38729771971702576,0.6010106564499438,-0.5395641531795263,-0.10760070523247123,-0.4976467741653323,0.9821260408498347,0.6598168793134391,0.5581924319267273,-0.5430384292267263,0.9609973058104515,-0.31744894105941057,0.6894969535060227,-0.10415348876267672,-0.036066812463104725,0.7253030510619283,-0.4039565701968968,-0.5030336305499077,-0.18435386754572392,0.9082242385484278,0.750041026622057,-0.5344835859723389,0.1393071347847581,0.29731722129508853,-0.17783797858282924,-0.8992648883722723,-0.8856010162271559,-0.2406411375850439,-0.4725654530338943,0.5691031226888299,0.3651710543781519,0.09393264586105943,-0.6745054153725505,0.6618518065661192,-0.7822579573839903,-0.043975657783448696,-0.7276464984752238,-0.9442247934639454,0.559722953941673,-0.6124489954672754,-0.7761257993988693,-0.01917558303102851,0.538622715510428,-0.20698633324354887,-0.8032131236977875,0.8815695866942406,-0.9014113238081336,-0.20890855323523283,0.8813478918746114,-0.2727510859258473,0.13126844028010964,0.9627230637706816,0.25648067705333233,0.5787332258187234,-0.007158071268349886,0.29098253045231104,-0.015761049930006266,0.9622062854468822,-0.6778209256008267,0.6255759447813034,-0.821148524992168,-0.75696189282462,-0.12011515954509377,0.5754779875278473,0.2856749650090933,-0.8938856078311801,-0.8157818233594298,-0.22260911064222455,0.2347370651550591,0.4941835515201092,0.34081454249098897,-0.22873687278479338,-0.8693108898587525,0.4723411318846047,0.7386292032897472,0.5591931310482323,-0.36204706598073244,-0.5943130254745483,-0.23744791885837913,-0.42007781099528074,0.4455758328549564,0.9410113543272018,0.3510436094366014,-0.6728088483214378,-0.7853023316711187,0.8572143227793276,-0.4967287415638566,0.6832867008633912,0.9965328089892864,0.4672046359628439,-0.8937430321238935,0.5094902710989118,-0.5505918767303228,-0.4200253481976688,0.257053233217448,0.8701201416552067,-0.6685421038419008,0.5924795516766608,-0.24457354517653584,0.43040091497823596,0.552527379244566,0.7082680081948638,-0.7124023134820163,0.32971953926607966,-0.1535489591769874,0.17420234438031912,0.3957644389010966,-0.9195842011831701,0.1342778210528195,0.523444265127182,0.27555590914562345,-0.13307330571115017,-0.7580999820493162,0.1650016000494361,-0.6863708235323429,-0.6921311747282743,0.16040276503190398,0.36549909645691514,-0.3372079604305327,-0.8408199618570507,-0.7917673499323428,0.14094060193747282,0.13788029830902815,-0.07877671578899026,-0.5835236813873053,-0.878764096647501,-0.4502399507910013,-0.4321463885717094,0.07355213165283203,0.9107252205722034,-0.8078919104300439,-0.5275277551263571,-0.06768980529159307,0.2694095866754651,-0.9312346428632736,0.7691054814495146,-0.570794363040477,-0.19128698064014316,-0.7188361920416355,0.6632882691919804,0.24066908983513713,-0.29943849379196763,0.031124013476073742,-0.9752105227671564,-0.7821447206661105,0.8051322810351849,0.4852572591044009,-0.22869725385680795,-0.8853133409284055,0.9195921723730862,0.7305795075371861,-0.13949689455330372,-0.5421606516465545,-0.6524938843213022,0.8395964759401977,-0.28260771930217743,-0.6250650957226753,-0.041620748583227396,-0.9954692679457366,0.3557644900865853,-0.7660028785467148,-0.10433477396145463,0.7151094903238118,-0.2774647087790072,-0.37039265502244234,0.02059993799775839,-0.8949735639616847,-0.27385955303907394,0.22609507851302624,-0.006447912193834782,-0.19618884986266494,-0.73443369474262,0.5931760026142001,0.08383298572152853,-0.8682588315568864,0.5414715930819511,-0.47821312118321657,0.7342821578495204,0.28272305289283395,0.3078301828354597,-0.7364647197537124,-0.7747932728379965,-0.4004910453222692,0.11884930729866028,0.6031161295250058,-0.3012040015310049,0.05597230792045593,0.6946595064364374,0.5144886984489858,0.5275347377173603,-0.6871337066404521,0.5560598624870181,0.19819213123992085,-0.7294619334861636,-0.02201673248782754,0.23536874121055007,-0.6450879266485572,-0.1034442400559783,0.5535455062054098,-0.46426311135292053,-0.21107303258031607,-0.2518545421771705,0.09910780051723123,0.2505730898119509,0.6136992550455034,0.9164533345028758,-0.40618745191022754,0.007787659764289856,-0.3369885957799852,0.3657183423638344,-0.1790538290515542,-0.16170717449858785,-0.7829384114593267,0.8575879880227149,-0.773504436481744,0.04406940471380949,0.3181426618248224,-0.8583186729811132,-0.05556740704923868,0.01926462259143591,-0.9277739273384213,-0.4930431949906051,0.013843753840774298,-0.763568720780313,-0.33515726076439023,0.8764283265918493,0.5910990461707115,-0.3223917670547962,0.23425161466002464,0.9880517632700503,0.7906328840181231,-0.06528884079307318,0.7644166345708072,0.281958703417331,-0.0832816157490015,0.062391473446041346,0.4518259367905557,-0.09987778915092349,0.9696620390750468,0.7852272959426045,0.9161487179808319,-0.2519876854494214,0.7546237930655479,-0.8950634142383933,0.5682256873697042,0.6020207083784044,0.4150503212586045,-0.744571877643466,-0.3661934267729521,0.2785771298222244,-0.8604199630208313,0.429306679405272,-0.17766867112368345,0.45113740069791675,0.14477686304599047,0.7591599184088409,0.3003408289514482,0.8817186914384365,0.7796219973824918,0.06398461386561394,-0.05981824593618512,0.6211966807022691,0.35446694353595376,-0.6326999091543257,-0.5332022472284734,0.12673003505915403,-0.8357943324372172,-0.4665216775611043,0.0644579567015171,0.4466177560389042,-0.1746943020261824,-0.20893140509724617,-0.9111246978864074,0.9308163789100945,-0.4223338193260133,0.5982653484679759,-0.12614588998258114,-0.9240122102200985,0.5994097795337439,-0.7568780407309532,0.6019397238269448,0.5308727715164423,-0.0908657074905932,-0.3222858449444175,0.2407306325621903,0.7071632463485003,0.9674076391384006,-0.9715494196861982,-0.12435407191514969,0.8533008461818099,-0.5842827996239066,0.5754414452239871,-0.42983068339526653,-0.5751224127598107,-0.5449248915538192,-0.5571634084917605,0.9277263106778264,0.3439308316446841,-0.8901237845420837,0.5137477493844926,0.3608855460770428,0.37908138474449515,-0.955956943333149,-0.7237506764940917,0.3687323755584657,0.5378846880048513,0.9587749349884689,-0.01876659970730543,0.6790666491724551,-0.22119540721178055,0.4619251159019768,0.8795882952399552,-0.04302564123645425,-0.4378663576208055,-0.5881141433492303,0.6257414086721838,-0.33977728337049484,-0.04342336393892765,0.4938211119733751,-0.4343499760143459,-0.8396669453941286,-0.9460382927209139,-0.043389768805354834,-0.07431815285235643,0.9256401122547686,0.9700915766879916,-0.7428673966787755,0.599501661490649,-0.32739386009052396,0.32458771113306284,0.13440129766240716,-0.04362073494121432,-0.5824861982837319,-0.7483470919542015,-0.3791272467933595,-0.4250029460527003,-0.3036519391462207,0.5367369372397661,-0.6614178656600416,-0.9035198003984988,0.5561776338145137,-0.7718403311446309,-0.022739317268133163,0.24526643380522728,0.22896699514240026,0.6453522215597332,0.3143562930636108,0.6710846922360361,-0.14886343711987138,-0.043680915143340826,-0.7955374042503536,0.03652198472991586,0.5498738819733262,-0.9976012646220624,-0.9988865447230637,0.38613021466881037,0.7096794843673706,0.49576679011806846,0.651890114415437,0.2819967125542462,-0.5648800968192518,-0.0655930656939745,0.13115875935181975,0.6940865884535015,0.5906627373769879,0.1315594115294516,-0.6273072566837072,0.6670444291085005,0.7705932874232531,0.8172164801508188,0.5100279971957207,-0.06856281636282802,-0.8133504656143486,0.9667501826770604,-0.029650050681084394,0.02576826373115182,0.43776200246065855,0.3511356906965375,-0.2946269093081355,-0.3522245758213103,0.5372430756688118,0.5814593397080898,0.7878749631345272,0.7931760437786579,0.4416755139827728,0.71867063222453,0.08026150893419981,0.46061028027907014,0.09321309067308903,0.9923144159838557,-0.08000023197382689,0.9704891606234014,-0.9800024535506964,-0.4758118255995214,0.8911481951363385,0.8393654725514352,0.070784205570817,0.556103652343154,-0.20286742318421602,0.8077044161036611,0.7731048846617341,-0.9344602334313095,-0.9419864751398563,0.40303016221150756,-0.13162629352882504,-0.46959438966587186,-0.6460014800541103,0.11809567920863628,-0.05308427894487977,0.5850499081425369,-0.02374772308394313,0.4393340554088354,0.6740009556524456,0.34643569588661194,0.3770144563168287,-0.2144152638502419,-0.7076183590106666,0.44410070963203907,-0.6622392758727074,0.5072531620971859,0.4317904035560787,-0.27439516270533204,0.4920271122828126,0.20076366886496544,0.5778662608936429,0.597033376339823,-0.3742308965884149,-0.9899323764257133,-0.2215729164890945,-0.8209787313826382,-0.5619823504239321,0.7227280451916158,-0.29264964209869504,0.7584992949850857,-0.5738014215603471,0.23451718455180526,-0.4225352955982089,-0.04093607375398278,0.6180578311905265,0.020884073805063963,0.5279167261905968,0.8793257055804133,0.590630860067904,-0.7823205636814237,0.9069916903972626,-0.7569444202817976,0.4553551501594484,0.48471962101757526,0.040892395190894604,-0.2501781224273145,0.11401947261765599,-0.223862839397043,-0.7256610291078687,-0.2641110885888338,0.5731654027476907,-0.9718436780385673,0.6477744150906801,0.1109642256051302,0.07735373778268695,0.9016256211325526,-0.7440447346307337,0.008316274266690016,0.9491191236302257,-0.6801645318046212,0.6551707023754716,0.4588321135379374,-0.35325402626767755,0.5183642474003136,0.3999123889952898,-0.01587720261886716,0.1700412160716951,-0.06689694989472628,0.1472555212676525,0.2549842279404402,0.45430099545046687,0.8277109442278743,0.9627868956886232,-0.05513618793338537,-0.2672786801122129,-0.5784134110435843,-0.971026907209307,0.9921889663673937,0.598502594511956,-0.5591765814460814,-0.5032893982715905,0.5490627004764974,0.6207588692195714,-0.3121140943840146,0.050467082764953375,-0.8030350464396179,-0.4266209006309509,0.7614677702076733,-0.1050106966868043,-0.4064384652301669,0.8146120100282133,-0.03772595897316933,0.4561822973191738,0.5421384074725211,-0.2501392373815179,-0.015917709097266197,0.3247236576862633,-0.8580357409082353,-0.5349460681900382,0.1977654886431992,-0.35042317770421505,0.3732251953333616,-0.508332472294569,0.40380304167047143,-0.9073903453536332,-0.028477029409259558,0.6610193327069283,0.09288440318778157,-0.9880077103152871,-0.472972113173455,0.031072465237230062,-0.4658687715418637,-0.5832220618613064,0.8520812564529479,-0.02315821358934045,-0.5216360250487924,-0.4385683867149055,-0.9647441166453063,0.4080507140606642,-0.43178396625444293,-0.24132992699742317,-0.2093302235007286,0.6172651192173362,0.19361837161704898,-0.7979606408625841,-0.2651944342069328,-0.5160883567295969,0.24574781954288483,0.03767548454925418,-0.2828584942035377,-0.08734168903902173,-0.7843359778635204,-0.39317917125299573,-0.11079681804403663,0.7903159810230136,-0.142741272225976,0.9679398075677454,-0.03990116063505411,0.9755062418989837,-0.7300192872062325,0.9763176953420043,-0.9438249082304537,0.005674239248037338,0.7299089217558503,0.5376315722241998,0.5036782156676054,0.7436298546381295,0.360094896517694,0.9062054697424173,-0.4788697212934494,0.06441102595999837,-0.15123473526909947,-0.6565502537414432,0.5440485565923154,0.7530260076746345,-0.12210802966728806,0.984275184571743,-0.8686646702699363,-0.9461104851216078,-0.39814909268170595,-0.9553578514605761,0.292820829898119,0.2126216972246766,0.9700722522102296,-0.07724629668518901,0.5128787523135543,0.9068239103071392,0.5706664747558534,-0.8548476095311344,0.703202448785305,0.42689537582919,0.694507381413132,0.31540419766679406,-0.7316439701244235,-0.9541266183368862,-0.5584633480757475,-0.23288193019106984,0.9922896609641612,-0.21044983807951212,-0.8354482725262642,0.6613179119303823,-0.7214079424738884,-0.25116221187636256,0.08822556305676699,0.28099092468619347,0.24509463226422668,-0.8088648128323257,-0.3433903641998768,-0.39316322887316346,0.9590399120934308,-0.8591900537721813,0.04783776821568608,0.5998074342496693,0.0833244863897562,-0.8796004606410861,-0.28432547301054,0.16152146132662892,0.1558999065309763,-0.9239136842079461,-0.3446255880407989,-0.05127543909475207,0.30951243825256824,0.493635734077543,0.7702414677478373,-0.10265320539474487,0.2669302620925009,0.41123173385858536,0.636580056976527,-0.720295175909996,-0.8339397292584181,-0.6566705559380352,-0.4744036658667028,-0.4163864045403898,0.01454618712887168,0.39093800401315093,-0.06616822769865394,-0.550118868239224,-0.8117504753172398,0.06022771634161472,-0.8353995983488858,0.925750900991261,-0.5521842292509973,-0.3461738834157586,0.6601948533207178,-0.7092935745604336,-0.10675187548622489,-0.9602279444225132,0.7292870115488768,0.9369001877494156,0.4968487755395472,-0.47292397590354085,-0.9497924512252212,-0.8637714474461973,-0.6403245888650417,0.9104685042984784,-0.1411336804740131,-0.8699376285076141,-0.03593515744432807,0.2989628557115793,0.7351215188391507,-0.7110785031691194,0.8271418921649456,0.24211890483275056,-0.3071265211328864,0.7337232371792197,-0.4243247755803168,0.5284470142796636,0.38766611041501164,0.12153907027095556,0.30833563581109047,-0.7308609327301383,-0.43996036471799016,0.15048456424847245,0.20537884160876274,-0.6958611039444804,-0.5392660428769886,-0.3828762713819742,0.10467052133753896,0.6951299416832626,0.03916813340038061,0.9023638195358217,0.18964017694815993,-0.26427186792716384,0.8542010546661913,-0.6473198514431715,0.6618534461595118,-0.14241300243884325,0.2444542720913887,0.6221992126666009,-0.3670296152122319,-0.011896506883203983,-0.02880985988304019,0.12877464620396495,0.32868896052241325,-0.08977751899510622,-0.3694276283495128,-0.7462856154888868,0.07214345503598452,0.1740123201161623,0.007840667385607958,-0.05836614686995745,0.45295142475515604,0.7200672253966331,0.3216682858765125,-0.05510773044079542,0.7732267747633159,0.9754989864304662,0.9835428018122911,-0.2825588998384774,-0.9757347167469561,0.9892499940469861,0.7937546302564442,0.9086138615384698,0.02709273062646389,-0.6591350017115474,-0.705430505797267,-0.18713555671274662,-0.45126974442973733,0.5422162357717752,-0.8736626356840134,-0.09703668020665646,-0.10514811892062426,0.0596404685638845,-0.39422633964568377,-0.6041450891643763,-0.8105609240010381,-0.6809813347645104,-0.6248302944004536,0.6479181479662657,0.5959967337548733,0.8592027840204537,-0.06967071816325188,-0.7971078986302018,0.19934891071170568,-0.51173315057531,-0.3967131716199219,-0.5511403223499656,-0.8529372485354543,-0.9342208416201174,0.19234046060591936,0.6206535580568016,-0.6675888746976852,0.7140895114280283,0.3057841220870614,0.905698305927217,-0.3666161592118442,0.07303539104759693,0.8213647254742682,-0.33037381432950497,-0.40278422832489014,0.6895522903650999,0.6034221174195409,-0.9846937321126461,-0.513252608012408,0.34135126136243343,0.9428455419838428,-0.7888403609395027,0.910208928398788,-0.3630378311499953,-0.04555939929559827,-0.8851293548941612,-0.9559631906449795,0.8492634636349976,0.7444735057651997,0.5968944537453353,-0.315987478941679,-0.7149277636781335,-0.5029269075021148,0.11794786993414164,0.06943168863654137,0.15042888699099422,0.021105284802615643,0.24653001548722386,-0.5798494121991098,0.46082038804888725,0.1904581468552351,0.412110916338861,0.08047751849517226,0.5806491472758353,-0.6703526442870498,0.6010545208118856,0.9668757971376181,0.29066421650350094,-0.7024828451685607,-0.5140217328444123,-0.1293175076134503,-0.22861850867047906,0.1416080892086029,0.23246166529133916,0.4313545683398843,0.5927527733147144,0.6152820526622236,-0.021476897411048412,0.4943032432347536,0.4436886659823358,-0.7449682196602225,-0.6316370801068842,0.9902017000131309,-0.33073028456419706,0.3763024187646806,-0.5773256295360625,-0.4560845987871289,-0.9419956812635064,0.23509269766509533,0.9389030942693353,0.4042513156309724,-0.9763838863000274,-0.7083132639527321,-0.08588956715539098,0.4698562491685152,0.5624276441521943,0.34769337018951774,-0.11151434620842338,-0.5106220133602619,0.017739697359502316,-0.2523159012198448,0.004294390324503183,-0.14732415229082108,0.7753834165632725,0.9807417774572968,0.4900342505425215,0.94737663352862,-0.08879791665822268,-0.16264391131699085,-0.6176793151535094,-0.667037648614496,0.8218844095245004,-0.9675700720399618,0.8391168997623026,-0.8070327858440578,-0.6900888020172715,-0.8506241776049137,-0.26794726960361004,-0.6244868137873709,0.042871187906712294,0.1758340559899807,-0.046357295010238886,-0.19366305088624358,0.6196164963766932,-0.7880881684832275,0.6487694927491248,0.7476092404685915,-0.010693724732846022,0.4414426814764738,-0.6145958369597793,0.801722758449614,-0.3785486011765897,-0.02986973151564598,-0.6930842967703938,0.4024745491333306,-0.22716684732586145,0.8237947262823582,0.05478780437260866,0.5279115093871951,-0.9307691459544003,0.42942746449261904,0.8716859300620854,0.40020606433972716,-0.24591040425002575,0.6939457347616553,0.5906948680058122,0.1764924074523151,0.9505230537615716,-0.7703706659376621,-0.6492499727755785,-0.7804551650770009,-0.3132158680818975,0.5562945655547082,0.15889937337487936,-0.6930323797278106,0.41828222712501884,0.8835090780630708,0.31611044611781836,0.5711667486466467,0.8490269100293517,0.033617318607866764,0.9752026787027717,0.6414793487638235,-0.43067608354613185,0.9768067789264023,0.632983791641891,0.7864462174475193,-0.9279306209646165,-0.17141290940344334,0.02075251331552863,-0.6026307307183743,-0.9455676786601543,-0.5585598992183805,-0.8568334789015353,0.40843145037069917,0.8638340225443244,0.976594153791666,0.6216866346076131,0.6810981277376413,-0.9734058836475015,0.7232851306907833,-0.12088826252147555,-0.0754970507696271,0.3375485623255372,0.9741397150792181,0.22184722684323788,0.8211035565473139,0.7749588438309729,-0.11868323804810643,0.24966439744457603,-0.25889551267027855,0.005617281422019005,-0.4764035469852388,0.009355740156024694,-0.42394800996407866,0.23580276127904654,-0.4858036716468632,0.6021175035275519,0.9276335583999753,0.16528767673298717,0.885845388751477,-0.59369734255597,-0.27667065896093845,0.736844933591783,0.8975095557980239,-0.21977788303047419,-0.3134089200757444,0.0570500623434782,0.000841227825731039,-0.0420116544701159,0.5894454913213849,0.8633537502028048,0.36202958738431334,0.2602041191421449,-0.6268148645758629,-0.016396358609199524,-0.5481191482394934,0.3123998516239226,-0.5414066910743713,0.12457529036328197,0.990864256862551,-0.443483164999634,0.5955039602704346,-0.8887829831801355,-0.32251047901809216,0.9977022176608443,0.9637898453511298,-0.7784085413441062,0.9316768050193787,0.03420667489990592,-0.09278691932559013,0.5736203528940678,0.15401783399283886,-0.16622322285547853,-0.25823312578722835,-0.15367384906858206,0.5985371125862002,-0.5876947222277522,0.4738254933618009,0.9584845979698002,0.2611302803270519,0.8833193392492831,0.671617510728538,0.5011150212958455,-0.1968744327314198,-0.333304310683161,0.11902161547914147,-0.952698661480099,-0.13714228384196758,0.8619590997695923,-0.34584407042711973,0.775332794059068,0.38598179910331964,0.5036291028372943,-0.24322485318407416,-0.4348040735349059,-0.6996750067919493,-0.6031248909421265,0.569335525855422,-0.10233478294685483,-0.9182670167647302,-0.780935880728066,-0.6478040697984397,-0.8089869073592126,0.15510713821277022,0.6428956286981702,0.5700087198056281,-0.558512691874057,0.7426860532723367,-0.6610401212237775,0.5219874801114202,0.7526485784910619,-0.36246174247935414,0.34647156158462167,-0.5289637176319957,0.6552199865691364,-0.385334774851799,0.43501270236447453,0.7815840211696923,-0.6590966605581343,0.897983462549746,-0.9700674246996641,0.3174133733846247,-0.2087526605464518,0.4128433992154896,0.9523998470976949,0.2513938080519438,-0.7795723746530712,0.572666434571147,0.83990896679461,0.08712386572733521,-0.2596968822181225,0.846656964160502,0.4202293553389609,-0.34136698534712195,-0.24034277722239494,-0.09841514425352216,-0.8884760374203324,0.05373391602188349,0.5722171221859753,-0.5249895663000643,-0.030245705042034388,-0.39592545107007027,-0.24385577160865068,0.32074931683018804,-0.5889253192581236,-0.15425777342170477,-0.05449268780648708,-0.7898823148570955,0.42866332409903407,0.1361832688562572,0.7864291961304843,0.3490005377680063,0.7147503150627017,-0.08342809043824673,0.014171943999826908,0.47750742407515645,0.9743491252884269,0.36809656815603375,0.8031675489619374,0.2811555741354823,-0.685522697865963,0.7435038220137358,0.9719377076253295,-0.7955050212331116,-0.2505050338804722,0.6083497134968638,-0.9368730885908008,0.46646029641851783,-0.07898006774485111,0.35465089650824666,-0.8325204765424132,0.772107997443527,0.8591580120846629,-0.6033416651189327,-0.4996690242551267,0.01526607945561409,0.15483380435034633,-0.054714199621230364,0.5923159280791879,-0.4574298169463873,0.36944124940782785,0.25112153263762593,0.43976434925571084,0.6188847338780761,0.9608486532233655,0.6662967586889863,-0.04071526462212205,0.5467987614683807,0.5613167206756771,0.8428404568694532,0.36109738564118743,-0.3154444103129208,0.27575541473925114,0.1848921487107873,0.8619494028389454,-0.7520106271840632,0.2069894652813673,0.8533863271586597,0.3367189960554242,-0.08204456651583314,0.3430644841864705,0.14824093133211136,-0.4182485188357532,-0.5542429429478943,0.11171258240938187,-0.2722842888906598,-0.6849875133484602,-0.6761664063669741,-0.04686704557389021,0.27603759290650487,0.15001793392002583,0.20111005380749702,-0.012236740905791521,-0.23464253079146147,0.5040638376958668,0.5469146738760173,-0.6837954283691943,-0.8558406308293343,0.892248542048037,-0.9367467490956187,0.17763380706310272,0.5819308464415371,-0.04706333065405488,-0.14203188009560108,-0.6407302287407219,0.8658980801701546,0.8830857123248279,-0.8241820363327861,-0.4362908639013767,-0.6074278745800257,0.2229099408723414,0.003500981256365776,-0.9006670895032585,-0.16711830021813512,0.8100837734527886,-0.3924483940936625,-0.760685904417187,-0.90371139254421,0.42077949456870556,-0.9146088515408337,-0.20923979859799147,-0.9470686069689691,-0.7593012512661517,0.6269924617372453,0.39690960105508566,-0.8046990926377475,-0.8564540585502982,-0.8377632638439536,0.36880758916959167,-0.7986159427091479,-0.17676865868270397,-0.12162391189485788,-0.5641791950911283,-0.08639276074245572,-0.6486096414737403,0.9864797322079539,0.6147449784912169,0.9865604904480278,0.4839902385137975,0.38139208871871233,0.19009364815428853,0.002066530752927065,0.35505947610363364,0.5707450923509896,0.05149534856900573,-0.5377510082907975,-0.4999600872397423,0.4500982854515314,0.9747527535073459,0.11837595840916038,0.6531021557748318,-0.6856013182550669,0.08236734755337238,-0.9465590212494135,0.7086476399563253,-0.0585834551602602,0.45408351300284266,-0.470939701423049,0.9727699691429734,-0.28368065040558577,0.060938695911318064,0.7454218254424632,-0.6964054596610367,0.6673907726071775,-0.9789141439832747,-0.755452761426568,0.05784233985468745,-0.699171437881887,-0.6914508491754532,-0.21959849819540977,0.283328412566334,0.46773744793608785,0.4829814936965704,0.8920578043907881,0.5428069029003382,0.5375252389349043,-0.625472174026072,0.27018286753445864,0.5315207242965698,0.4013703051023185,-0.25950476387515664,-0.9801379232667387,0.7790519474074244,-0.6629521097056568,-0.021927978843450546,-0.6952569065615535,0.9633158831857145,-0.417306172195822,-0.8242089939303696,-0.9785730107687414,0.1735866367816925,0.8391355345956981,0.3260894091799855,0.5921747991815209,0.5678423335775733,-0.4248803472146392,-0.8136172904632986,0.06963478913530707,-0.7394761075265706,-0.3407792868092656,0.8581040888093412,-0.7209234680049121,0.23271767096593976,-0.8197378674522042,0.9759136792272329,0.3292397209443152,-0.3958002654835582,-0.6949436101131141,-0.614401473198086,0.5796183217316866,-0.5869584209285676,0.606768234167248,-0.8918091389350593,0.8685837788507342,0.3627858296968043,0.9886772008612752,0.05755705386400223,-0.3763167094439268,0.4689579107798636,-0.8101918315514922,0.3568651541136205,0.5836885706521571,-0.5741064827889204,-0.7194307334721088,0.6632513920776546,-0.7081202627159655,-0.7255703452974558,0.6670524720102549,-0.05429479666054249,-0.48418383998796344,-0.8265138776041567,-0.08886671252548695,0.8878083014860749,0.7908133841119707,0.8166598146781325,0.7598016443662345,0.15605956967920065,0.9127944065257907,0.46116973320022225,-0.7418019375763834,-0.8122908570803702,0.012351652141660452,-0.24888820992782712,0.5143380416557193,-0.3010465600527823,-0.7220970806665719,-0.5538435163907707,-0.9324716804549098,-0.012970121577382088,0.8393156114034355,-0.4382911338470876,0.5494222235865891,0.59890789212659,-0.8185855429619551,-0.6619403739459813,-0.625644720159471,-0.47375271702185273,0.2524756724014878,0.5857136342674494,0.5978197869844735,0.1176777258515358,-0.40111837768927217,0.9080709940753877,0.038023658096790314,0.4067245414480567,-0.013621641788631678,-0.29456096049398184,0.43963701697066426,-0.4097756948322058,0.30924829049035907,-0.24718707101419568,0.969942175783217,0.9846846587024629,0.8618395254015923,-0.21460950514301658,0.06601406587287784,-0.9121327018365264,-0.6383282570168376,0.013721960596740246,-0.5648142243735492,0.47641412867233157,0.049284812062978745,-0.6884668478742242,0.7829383332282305,0.894091036170721,0.3784703719429672,0.10823443252593279,-0.4816669118590653,-0.42789056431502104,0.011713221669197083,0.9649532800540328,0.1811134093441069,0.8270119102671742,0.573624377604574,0.6673692036420107,-0.3724740077741444,0.8866746402345598,-0.9909136635251343,0.5285553853027523,0.09026338858529925,0.6734207128174603,-0.28391575952991843,0.2719515347853303,0.939020439516753,0.5124383633956313,-0.7475669076666236,0.3730299277231097,0.057310528587549925,-0.06271017156541348,-0.8716194862499833,0.880706783849746,0.26673150109127164,-0.04668294033035636,0.05645982502028346,0.7447795919142663,0.43072373094037175,0.5849406030029058,0.21269161207601428,0.23547896603122354,-0.7111912830732763,-0.5894958502613008,-0.3248115763999522,0.6347487280145288,0.3548548063263297,-0.45054943300783634,0.337388567160815,-0.16712784953415394,0.9214784968644381,-0.6905775112099946,0.6843597921542823,0.5435848492197692,0.2980222962796688,-0.048852809239178896,-0.7694801660254598,0.7402473003603518,0.7298335214145482,0.5517728012055159,-0.23466300126165152,0.702366512734443,0.6363016427494586,0.30357651598751545,0.6508458508178592,0.29414856480434537,-0.6854485967196524,-0.4230999038554728,-0.7488906853832304,0.2910229838453233,-0.3019307772628963,0.24518486624583602,0.4805790060199797,-0.33338109543547034,0.6609946922399104,-0.8445731760002673,0.8333823648281395,0.9978298265486956,-0.6623813305050135,0.856477634049952,0.06038714712485671,0.35413626162335277,0.4731829301454127,-0.02323527541011572,0.9312205375172198,0.25138601614162326,0.2507681017741561,0.48064409382641315,-0.33981245243921876,0.4229665957391262,0.23877908708527684,-0.5818702415563166,-0.9943763078190386,-0.8675889535807073,-0.5307777849957347,-0.9819503263570368,-0.601812626235187,0.8695895909331739,0.49996896041557193,0.09517852775752544,0.29061903385445476,-0.1278366483747959,0.5033618374727666,-0.30961818853393197,0.2019498236477375,-0.5413538259454072,0.372390597127378,0.10957257822155952,-0.03291624831035733,0.16059332760050893,-0.8820732110179961,0.17067524138838053,-0.8622929691337049,0.1358813545666635,-0.4190615238621831,-0.8540940154343843,-0.9135412336327136,0.15763865737244487,-0.1322886124253273,0.029531766194850206,-0.4995607789605856,0.742770214099437,-0.9547815383411944,-0.000598663929849863,0.7764639472588897,-0.4970888430252671,0.18999827420338988,0.2255404070019722,0.11766582960262895,0.44595035770908,-0.5611404781229794,0.13082669535651803,-0.5757277999073267,-0.5135620608925819,0.12542532244697213,0.25068865483626723,0.5699007492512465,-0.47412331216037273,-0.7592792427167296,0.7348737642168999,-0.9707541721872985,-0.7347975294105709,-0.34257962461560965,-0.5358274881727993,-0.9326514042913914,-0.16871606558561325,-0.983255731407553,-0.21594407269731164,-0.80149095505476,-0.6388502735644579,-0.872129812836647,0.8528065267018974,-0.5856921738013625,-0.1333984830416739,-0.7908574333414435,0.32001702301204205,-0.19393805228173733,0.3887472157366574,-0.6291216532699764,-0.19469477189704776,0.11617087759077549,0.26131762797012925,0.7018223158083856,0.6339640538208187,-0.9965826938860118,0.7824809881858528,0.9133720966055989,0.6924711740575731,0.3236160157248378,-0.39401124650612473,-0.9195689372718334,-0.005317426286637783,0.3979130545631051,0.19620519783347845,0.14935671351850033,-0.36805148096755147,-0.7933930228464305,-0.8377991099841893,-0.9664568766020238,0.7067166063934565,-0.6885804566554725,-0.5720678186044097,0.8363037058152258,-0.22608293127268553,-0.8453440549783409,-0.07128622848540545,0.46776269376277924,0.8289219816215336,-0.11745304428040981,-0.43837646348401904,0.3651064042933285,-0.11321529094129801,-0.5927152475342155,0.136920768301934,-0.7305443482473493,0.042664510663598776,0.7656273730099201,-0.09928171942010522,0.3794421046040952,-0.926470092497766,0.2099021365866065,0.9285622574388981,-0.43945428961887956,-0.28859292482957244,-0.07507337164133787,0.5257328450679779,-0.4787511941976845,-0.8239835686981678,-0.876740200445056,-0.7473159460350871,0.48197392793372273,0.19285374227911234,-0.2318374002352357,-0.11716948542743921,-0.29454911360517144,0.648473734036088,-0.2714338363148272,-0.8390455776825547,0.3351048342883587,-0.9148829784244299,-0.17177350539714098,-0.39894164353609085,0.9960220456123352,-0.2855067132040858,0.36707983585074544,0.49629785772413015,-0.6544450796209276,0.13631316041573882,0.7746363994665444,0.9663660363294184,-0.7295769373886287,-0.11622017854824662,0.574670918751508,-0.06569733703508973,-0.30315194139257073,-0.153751359321177,-0.0036087390035390854,0.7556437635794282,0.3543096059001982,-0.3471329011954367,0.8400653791613877,0.7030359636992216,-0.36027237493544817,0.5012099137529731,0.8872934263199568,-0.6974481721408665,-0.45062603056430817,-0.389892834238708,0.6554013532586396,-0.10148366307839751,0.44788999669253826,0.8045684066601098,0.5545548913069069,0.20139696868136525,0.5483808419667184,0.7858059583231807,0.3789418777450919,-0.5941095496527851,0.29753371281549335,-0.5157183655537665,-0.8959543695673347,-0.6252630450762808,0.18730882368981838,0.7921618307009339,-0.564954599365592,0.6576264691539109,-0.5768280173651874,-0.8097518756985664,0.13930148538202047,-0.9465523543767631,-0.22522083995863795,-0.10609370842576027,0.9789475593715906,-0.21270262449979782,-0.9552705069072545,-0.0491228592582047,0.8966022660024464,0.7691826284863055,-0.5288102948106825,-0.8373140241019428,0.04266227921471,-0.4179864558391273,-0.9352996968664229,-0.7922424762509763,0.3904850766994059,0.17920975293964148,-0.04758122703060508,0.2205248260870576,-0.8544716606847942,0.43049684120342135,0.48559200996533036,0.12183557264506817,0.24250648729503155,0.485644010361284,-0.948066231328994,0.3027212359011173,-0.3428461020812392,0.07980852061882615,0.4210523650981486,-0.42555627040565014,-0.9573418288491666,0.4946741769090295,-0.6079681301489472,-0.8620884707197547,0.3403461663983762,-0.267464273609221,0.19346342980861664,0.84647037088871,0.43902477994561195,-0.6075765090063214,0.5651069702580571,0.2362458067946136,-0.00495536345988512,0.15782041987404227,-0.6837419201619923,0.002700828481465578,-0.31877955608069897,-0.10322142578661442,0.16379460506141186,0.09969328856095672,-0.7221957589499652,0.24999214429408312,0.3018748709000647,0.11751073459163308,-0.5480662384070456,0.20473239058628678,0.3688059914857149,-0.9835207830183208,-0.7387102111242712,0.46864833822473884,-0.5183944976888597,-0.8377779847942293,0.299637955147773,-0.4607019745744765,0.05224228138104081,-0.6011570859700441,0.9827814605087042,0.9755483856424689,0.5951276714913547,-0.6045757257379591,-0.4502782034687698,0.4939653552137315,0.3783542439341545,-0.4843212771229446,0.3813437959179282,-0.40265207877382636,-0.39385185251012444,-0.13997539458796382,-0.6076728529296815,-0.6477560708299279,0.11992033617570996,-0.9052086649462581,0.9868426593020558,0.5650089443661273,0.28681439626961946,0.20573215885087848,0.6239136918447912,0.21223677787929773,0.9582170736975968,0.26745329052209854,-0.8045342527329922,0.26873396523296833,-0.4801958343014121,-0.8203637460246682,-0.6761359837837517,0.7451920015737414,-0.5329034361056983,-0.8959861430339515,0.9534530844539404,0.07570405537262559,0.22220162069424987,0.191710548941046,-0.7636534064076841,0.22875011339783669,0.7121978495270014,-0.5548459817655385,-0.44417834049090743,-0.9072374547831714,-0.21442793356254697,-0.38862172327935696,-0.366044863127172,-0.36943045631051064,-0.7815453507937491,0.22008480317890644,-0.24645164050161839,0.5575843811966479,0.6498989118263125,0.13062786078080535,-0.7513179131783545,0.1301259696483612,-0.9468547808937728,-0.4131327881477773,-0.37931436533108354,-0.6062823319807649,-0.3232105700299144,0.571661660913378,-0.23964925343170762,-0.15816732542589307,-0.6353778569027781,-0.19720815727487206,0.12766580050811172,-0.21151160867884755,0.49797434639185667,0.3943522912450135,-0.10979205183684826,0.8100450867787004,-0.06512683583423495,0.2930462397634983,0.7406758298166096,-0.9936855756677687,0.5043002483434975,0.03394624404609203,0.016942518297582865,0.9790503308176994,-0.36916808458045125,0.23627674393355846,-0.4942812817171216,-0.6212168741039932,0.8231386072002351,0.9886013520881534,-0.6808074838481843,0.8979667471721768,-0.6834605834446847,-0.6662355442531407,-0.4679112867452204,0.8133870093151927,-0.0657139727845788,0.5854553980752826,-0.3830894692800939,-0.4187651015818119,0.13963633636012673,0.9200840778648853,0.19943075440824032,-0.8790421881712973,-0.6277737920172513,0.5133220017887652,-0.5968094891868532,0.7077037231065333,-0.29137684777379036,-0.769050077535212,0.8405861188657582,-0.10425050836056471,-0.6356485495343804,0.20994923450052738,0.5234352936968207,-0.6541620776988566,-0.5908465315587819,0.9551468729041517,-0.30382503382861614,-0.4125128770247102,0.23070716904476285,0.4214131897315383,0.9126783721148968,0.393596526235342,0.1602289555594325,0.0007230625487864017,0.89848652202636,-0.4742731344886124,-0.367010273039341,-0.48529521841555834,-0.8560713781043887,-0.6288002771325409,-0.8050021179951727,0.7845646720379591,-0.08857600018382072,-0.3895183806307614,0.6084824977442622,-0.611273545306176,0.4372352436184883,0.4503627843223512,-0.9836913524195552,0.22808804269880056,0.6030031940899789,0.2782881958410144,0.0809718114323914,0.6275572520680726,0.8909974242560565,0.5547604989260435,-0.05149418395012617,0.4846236505545676,-0.7016799235716462,-0.5713945338502526,-0.3964745048433542,-0.09172623557969928,-0.7426802129484713,0.3129745447076857,0.7234482443891466,-0.9919534111395478,0.2711429609917104,0.39976140623912215,0.8977122670039535,0.7246723538264632,-0.40870380168780684,-0.11770598823204637,0.727310081012547,-0.8333554998971522,-0.7155692004598677,0.8785769352689385,-0.31291200686246157,0.21396762458607554,0.9481643131002784,0.08040397800505161,0.6013227077201009,0.25712256226688623,-0.577061093878001,-0.0770605793222785,-0.3180728927254677,0.8032137486152351,-0.8630606145597994,0.5874345512129366,-0.39164444571360946,0.7678183289244771,0.1563663510605693,0.5937689705751836,0.711333176586777,0.3325701178982854,-0.4033438190817833,0.15692416671663523,0.544173036236316,-0.8027771413326263,0.6192380269058049,0.7371435076929629,-0.888288123998791,-0.6328705926425755,0.3666118402034044,-0.6255869488231838,0.34091180050745606,-0.5978475445881486,0.9467590390704572,-0.598061362747103,-0.5703922170214355,0.4372797552496195,0.08707484044134617,0.8895906545221806,-0.9189735511317849,-0.16689289500936866,0.23954821657389402,-0.7481395844370127,0.49416756071150303,0.3310169195756316,-0.6870851828716695,0.3008096683770418,-0.21426638681441545,0.9259751620702446,-0.16492276499047875,0.15228832373395562,0.8430056027136743,0.008246396668255329,-0.342793928924948,0.1328290430828929,-0.8239102601073682,-0.35502115124836564,-0.1422940450720489,0.3143953485414386,-0.429166313726455,0.20092984940856695,0.036062486469745636,0.261662382632494,-0.2586469054222107,-0.491163014434278,0.27811347926035523,0.31857357919216156,0.7593308049254119,-0.4014295283704996,0.4027459560893476,-0.8124447264708579,-0.3453241209499538,-0.4150086916051805,-0.6084747295826674,0.27037219936028123,0.4031987441703677,0.7761733173392713,-0.35374155873432755,0.08997268276289105,0.7353803683072329,0.2000727648846805,-0.42387305898591876,0.3061905917711556,0.9630221691913903,0.6298472052440047,-0.8976498143747449,-0.8311370476149023,-0.8729789792560041,-0.7184106153436005,0.4637854462489486,-0.9590761950239539,0.590177359059453,-0.6787421433255076,-0.17775627318769693,-0.6971818963065743,-0.995910445228219,0.8976412573829293,0.4020816283300519,0.8859171969816089,0.357055586297065,0.11999750230461359,0.9451597584411502,0.9631464565172791,-0.3273065881803632,-0.313679167535156,0.5757310329936445,0.6032408131286502,-0.0011987662874162197,0.30951090529561043,0.22272980166599154,0.16822457360103726,0.12100687809288502,0.7557623945176601,0.5866877036169171,-0.5669342703185976,-0.9428114453330636,-0.49992777593433857,-0.512024275958538,-0.5888547720387578,-0.6474953969009221,-0.4659393155016005,-0.6053842073306441,0.10592932300642133,0.651411353610456,0.07021377328783274,-0.7801004066132009,0.7714455821551383,0.6802668031305075,0.4290232718922198,0.2287925505079329,-0.24191692378371954,0.8321538385935128,0.07606586441397667,-0.7944480017758906,-0.14716301998123527,0.15499741351231933,0.5151013229042292,0.2510306495241821,0.7405592333525419,0.12756921956315637,0.40578309912234545,0.49442047672346234,-0.08722059708088636,-0.3748217411339283,-0.6851195045746863,0.02991358656436205,-0.8516429383307695,-0.26711893640458584,-0.16120699746534228,-0.5687159532681108,-0.48334034299477935,0.054797892924398184,0.6513704019598663,-0.8978455811738968,-0.7457245197147131,0.6971594044007361,-0.2969353129155934,-0.28817598009482026,-0.3230328909121454,-0.35024069203063846,-0.005410744808614254,0.36202451353892684,0.6602175296284258,-0.19783591432496905,0.5294491681270301,-0.5641712239012122,0.6152448211796582,0.5782566950656474,0.7865838436409831,-0.6595929656177759,-0.05829152464866638,0.9730040617287159,0.33670102106407285,0.9729725616052747,-0.6920891515910625,-0.9160926761105657,-0.1642031748779118,0.18981292331591249,0.6665823324583471,-0.1573274196125567,-0.7758505460806191,0.8017041091807187,0.9836056469939649,0.30196565203368664,-0.034392219968140125,-0.8807136979885399,0.888792097568512,0.7026581382378936,-0.6897631613537669,0.8068249658681452,-0.7691029999405146,-0.7776200664229691,-0.4907821360975504,-0.2631040788255632,0.38608408253639936,0.8448851434513927,-0.2994293891824782,0.7567342524416745,-0.9427715023048222,0.8569226614199579,-0.15421729488298297,-0.914237312041223,-0.3698577303439379,0.8069792320020497,0.7945697982795537,0.35170644428581,-0.2888148040510714,0.7388484315015376,0.34232102055102587,0.9604961066506803,0.9917058758437634,0.05586877930909395,0.47856161603704095,0.6508702379651368,-0.9972833497449756,-0.9287163950502872,0.43617848586291075,0.17624451592564583,0.40379836317151785,-0.8636134355328977,-0.4026710093021393,-0.7657299204729497,0.3133589904755354,-0.6404481753706932,-0.3392511592246592,0.20043943775817752,0.10423515643924475,-0.5843253121711314,-0.6599316010251641,-0.1908008805476129,-0.3927034717053175,0.6717628361657262,0.7742838384583592,-0.4930783682502806,-0.21950567746534944,0.021123402751982212,-0.07256459537893534,0.6236904859542847,0.9114627605304122,0.04138898430392146,-0.5055294227786362,-0.04849600838497281,0.37829193426296115,0.24927473487332463,0.8907517115585506,-0.9523468082770705,0.7425076509825885,-0.2499564508907497,-0.37867185147479177,0.6433605821803212,-0.33452387247234583,-0.6118892817758024,-0.16311676101759076,-0.03129739919677377,0.5728718601167202,0.07946745352819562,-0.4879015227779746,0.2746384986676276,-0.5075649139471352,-0.05287773162126541,-0.042441807221621275,0.8838090132921934,0.9142946237698197,0.5796804060228169,-0.6270063510164618,-0.2576152104884386,0.20619541313499212,0.6723480736836791,0.11302906880155206,-0.03714472334831953,0.40222270553931594,0.950557972304523,-0.4604037278331816,-0.8575883223675191,-0.6541744349524379,-0.34737387392669916,-0.22294739726930857,0.42335233418270946,-0.9152587624266744,0.785807779058814,-0.6801390727050602,0.47048812452703714,0.6334659331478179,-0.008979666978120804,-0.4677675520069897,-0.7730119000189006,0.0065627992153167725,-0.7959693153388798,0.2418847824446857,0.6732698762789369,-0.5646195751614869,0.5377557836472988,-0.3590162848122418,-0.29802105436101556,-0.37947066593915224,0.8074820195324719,-0.5316442423500121,0.06069874297827482,0.574738334864378,-0.5881694806739688,0.5569231873378158,0.06667601317167282,0.5235039452090859,0.4098539832048118,0.29485570592805743,0.11751056602224708,-0.5995896183885634,0.6506910906173289,0.1333034923300147,-0.16775037813931704,-0.3444278547540307,-0.857407275121659,0.8463236195966601,0.5266649425029755,0.15191230364143848,0.5373776643536985,-0.4890107177197933,0.19757033046334982,0.229837441816926,-0.716277755331248,0.45359915355220437,0.4231010586954653,-0.03749196091666818,-0.7556635923683643,0.32902189483866096,-0.5333827403374016,0.38276249123737216,-0.352775018196553,0.43728086771443486,-0.15764914732426405,-0.516904029995203,-0.7293677497655153,0.821811328176409,0.6745309140533209,-0.8363740253262222,-0.3452626815997064,0.6916060494259,-0.6173607939854264,-0.5003664395771921,-0.4818101702257991,0.4152116533368826,0.7603668882511556,-0.820116045884788,0.3152997945435345,0.7274243677966297,0.145163600333035,0.14409190695732832,0.349388494156301,0.24895438645035028,0.7338280831463635,-0.06391830462962389,-0.08408121578395367,-0.8653761483728886,-0.011281276121735573,0.7431077244691551,-0.3913523708470166,-0.12206027982756495,-0.7193066538311541,0.3259074897505343,0.12717350432649255,0.5857661641202867,0.30338781233876944,0.17569465143606067,-0.22745762299746275,-0.47915728902444243,0.37075255205854774,-0.5990040833130479,0.2796370042487979,0.5867259968072176,-0.3264700537547469,-0.9750484158284962,-0.5130916596390307,-0.5808608396910131,-0.2898481683805585,0.38509414438158274,0.8788652657531202,-0.8242226084694266,0.33703882014378905,0.8359414390288293,0.49603072786703706,-0.925461461301893,-0.6780143631622195,0.5983573752455413,0.39904321217909455,-0.06071911845356226,-0.7351938835345209,-0.14555569598451257,0.6403652993030846,-0.3268350763246417,0.4837628901004791,0.38296173326671124,-0.4986814595758915,-0.03961072117090225,-0.5611987449228764,-0.13423135923221707,0.10397129645571113,-0.5296791587024927,0.9210222573019564,0.3084140564315021,-0.28629881516098976,-0.7707842006348073,0.2161411177366972,0.43781926622614264,-0.9163621286861598,-0.4722953028976917,0.3930448838509619,0.21647040452808142,-0.8553166603669524,-0.6380015616305172,0.17751396540552378,0.42984170047566295,-0.30789792397990823,0.30983388563618064,0.7680059489794075,-0.12783664744347334,-0.8704446321353316,-0.977902851998806,0.7865965068340302,-0.646296058781445,-0.09027008572593331,0.7638086648657918,0.09694870980456471,0.22907444322481751,0.4173955926671624,-0.05444784928113222,-0.3421516721136868,0.6372457616962492,-0.8026975975371897,-0.06901341769844294,0.2638132404536009,-0.934816675260663,-0.6731455717235804,-0.4995546075515449,0.4842097098007798,-0.5942549514584243,0.46881448617205024,0.23119105864316225,-0.1579765547066927,-0.46527655981481075,0.47370087215676904,-0.23274318780750036,0.5671298112720251,0.09777210094034672,-0.25481050508096814,-0.2354672928340733,-0.04264971660450101,-0.626101141795516,-0.7153739971108735,0.6887841057032347,-0.4476867304183543,0.6551681272685528,-0.5007156813517213,-0.13757289433851838,0.3269414184615016,0.7619549175724387,0.5473099583759904,-0.9041231744922698,0.7473945515230298,-0.6388987433165312,-0.20256522810086608,0.5579858012497425,-0.8769200509414077,0.6646326426416636,0.45632827328518033,0.5223665749654174,-0.2792381923645735,0.10060748504474759,0.787580091971904,-0.7551408316940069,0.3228607717901468,-0.728811860550195,-0.01513939443975687,0.9318839120678604,-0.43746414687484503,0.6538109770044684,-0.9863793351687491,-0.16348602389916778,-0.8175892098806798,0.9693521545268595,-0.6460580765269697,-0.7382073998451233,0.9151107133366168,0.06955106882378459,-0.7689588200300932,0.2365493830293417,0.5097530917264521,0.2855575103312731,0.7659337422810495,-0.6174962194636464,0.8519639521837234,-0.38499338645488024,-0.4556347457692027,0.15013750037178397,0.7733736601658165,0.1451847292482853,0.7070213193073869,0.47237782133743167,0.1731746201403439,0.1521102418191731,0.539455165155232,0.5479176812805235,0.4149374319240451,-0.7261457680724561,0.8968437858857214,-0.7079194197431207,0.6992262327112257,0.12160639045760036,-0.1607190896756947,-0.7823407435789704,0.8556688916869462,0.9478094140067697,0.501400941517204,-0.6385734705254436,0.6826922944746912,0.5918321115896106,0.7252036323770881,0.011007596272975206,-0.8706091237254441,0.1650660103186965,0.3979372074827552,-0.8426162325777113,0.9595370288006961,-0.5096405292861164,0.801971685141325,-0.9409113363362849,0.9061202146112919,0.6891835080459714,0.2347726384177804,0.27167596761137247,0.9950786335393786,0.38668839121237397,0.5667418385855854,-0.33464433485642076,-0.87379578826949,0.9701292314566672,-0.7212039083242416,0.8097511236555874,0.2048640437424183,-0.15696773352101445,-0.16794598707929254,0.5806878223083913,0.53859877679497,0.9429554417729378,0.025866313371807337,-0.7046495866961777,0.5271768597885966,-0.7939256387762725,-0.05785497231408954,-0.6938310470432043,0.7279500402510166,0.7645067251287401,0.8595935418270528,-0.8734239931218326,-0.07435867609456182,0.6407504938542843,0.24291800428181887,0.6185761806555092,0.6913901031948626,0.9643292771652341,-0.9191290307790041,0.34073677053675056,-0.2469921731390059,0.8795887846499681,0.3001842126250267,-0.527981533203274,0.8274742718786001,-0.003135948907583952,0.864029856864363,0.6834807978011668,0.528671910520643,0.49147749971598387,0.9660967150703073,0.5117488545365632,0.9687850531190634,-0.7548458748497069,-0.40238907374441624,-0.4929021536372602,-0.47259141178801656,-0.6039257706142962,-0.08970958273857832,-0.05068514449521899,0.47929293289780617,-0.9126680926419795,0.23490087920799851,-0.8548670229502022,0.9576149694621563,-0.22893968550488353,-0.2810657089576125,0.4205833519808948,-0.5822962885722518,-0.1639287145808339,-0.3335621329024434,0.6792454314418137,-0.18119397247210145,-0.3468360658735037,-0.4743803502060473,0.9123543798923492,0.4876591651700437,-0.9779607011005282,0.9163880213163793,-0.3959406465291977,0.8668883722275496,0.2651179493404925,-0.4665165045298636,0.3105233609676361,0.30298236291855574,0.0040206764824688435,-0.8896989673376083,0.8528798571787775,-0.42686578817665577,-0.5491789118386805,-0.6353767057880759,-0.5196642843075097,0.42026484850794077,0.8929524421691895,0.17686087358742952,-0.0864387508481741,-0.6357191847637296,-0.9768215008080006,0.9926253124140203,-0.06600551167502999,0.9418899617157876,-0.34225041745230556,0.7901260824874043,0.2224107962101698,-0.7948229950852692,-0.377121115103364,0.37124137906357646,0.16904941061511636,0.6111312960274518,-0.5608216347172856,-0.8742511132732034,-0.1312607740983367,-0.9609509240835905,0.789021322503686,-0.23104487033560872,0.82946059666574,-0.5509008741937578,-0.9468084182590246,-0.23080780124291778,-0.5645405482500792,-0.9923722082749009,-0.6633135667070746,0.1510621551424265,-0.9648066116496921,-0.29721699841320515,-0.25561760319396853,-0.1091851512901485,-0.8868530103936791,0.4539862470701337,0.5141327725723386,0.2975845718756318,0.33335958793759346,-0.89479228714481,-0.8209362830966711,0.5560984727926552,-0.6624557296745479,-0.85334576619789,-0.7996794320642948,0.9942800523713231,-0.6075209267437458,-0.2695152717642486,0.9941059397533536,-0.2641232293099165,-0.512521740514785,0.7878551189787686,0.07344682281836867,0.07490250747650862,-0.9140706383623183,-0.9940545284189284,-0.3867436470463872,0.07348042633384466,-0.9810485998168588,-0.41490750247612596,0.3037624624557793,-0.9941200199536979,-0.9463052991777658,0.44343111105263233,0.7950414689257741,0.7632357086986303,0.1370744714513421,0.8561720834113657,-0.5769208259880543,-0.41104103485122323,0.9211841151118279,0.8234782740473747,0.17203578213229775,0.5986288664862514,-0.8797948327846825,0.3783635813742876,0.4873077739030123,0.8857378126122057,-0.2190406327135861,0.5604576184414327,-0.5834889053367078,0.5588771821931005,0.499454565346241,-0.29970865650102496,0.3091775602661073,-0.8379767197184265,-0.9314203858375549,-0.39896036637946963,-0.11599555844441056,-0.09653592528775334,-0.9255843334831297,0.2878267727792263,0.7708558300510049,0.39616701705381274,0.9467696608044207,0.3253068928606808,0.33737012604251504,-0.5555786583572626,-0.8684369921684265,0.3110161852091551,-0.45938747096806765,-0.8388544046320021,0.36025216430425644,-0.6074761925265193,0.6375229032710195,0.030618186574429274,0.31731250789016485,-0.34074856666848063,0.9224530523642898,-0.9339112266898155,-0.4910831176675856,-0.6689757388085127,-0.5327205033972859,-0.44259707164019346,-0.37219919078052044,0.32851760648190975,0.7713000220246613,-0.873054925352335,0.1526426007039845,-0.992855494376272,0.3647896237671375,-0.6308946972712874,0.30679095117375255,0.8143187593668699,-0.2094096802175045,-0.6700136293657124,0.7699773204512894,0.42661380721256137,-0.08304444467648864,0.17137076705694199,-0.17736983811482787,0.26914195297285914,-0.4000707329250872,0.619759023655206,0.04420183878391981,0.38764477986842394,-0.4732084800489247,-0.502839732915163,-0.9784683338366449,-0.23209663666784763,0.2687491476535797,0.02705158106982708,0.8796874429099262,-0.9133828552439809,-0.16544024553149939,0.9251610487699509,0.6728424103930593,-0.3396238889545202,-0.44518704945221543,-0.6243022521957755,0.6568533345125616,0.9785286239348352,-0.5539237074553967,-0.02242086734622717,0.463688095100224,-0.7494577583856881,0.8324230597354472,0.014106370508670807,-0.5395013056695461,-0.264176816213876,0.16882905084639788,-0.1314834370277822,-0.571832774206996,-0.0266096331179142,0.02355225570499897,-0.8422441552393138,-0.029109982308000326,0.6754958238452673,0.8637821981683373,0.11914971238002181,-0.70813751174137,0.1351977507583797,0.6682207603007555,0.7504291054792702,0.7022897046990693,-0.14549084519967437,-0.5843628812581301,-0.14463677862659097,-0.7806835570372641,-0.5477153812535107,0.16682882234454155,-0.19853252405300736,0.00956618133932352,-0.5288333748467267,-0.3473350969143212,-0.20529063325375319,0.848272627685219,0.7918262048624456,-0.07673771819099784,0.4824857013300061,-0.386365142185241,-0.732772720977664,0.2931322352960706,-0.5252418341115117,-0.20623856969177723,0.024710228201001883,-0.776792305521667,0.5564947864040732,0.17910121427848935,0.6250320882536471,0.5861654090695083,0.1789768310263753,-0.9082841873168945,-0.35866559157148004,-0.7924389359541237,0.16860332619398832,-0.035851639695465565,-0.25839028833433986,-0.8561757151037455,0.3596133510582149,0.5886154710315168,-0.10095659783110023,-0.96406330447644,-0.5251128319650888,-0.7547597694210708,0.18580720573663712,-0.23759758984670043,0.5834276243112981,0.3517049481160939,0.5147346826270223,0.6316340840421617,-0.7157733021304011,-0.7256137253716588,0.33005142165347934,0.590520606841892,0.18131638877093792,0.6618467140942812,0.6862566890195012,-0.20493408106267452,-0.5734874899499118,-0.5577453849837184,0.8202736228704453,0.4043174237012863,0.8344627618789673,0.24745252775028348,-0.670427939388901,-0.8596028597094119,-0.7690471783280373,-0.32430992601439357,0.23685783334076405,-0.26840762002393603,-0.10222643008455634,0.5808663298375905,-0.5220738663338125,-0.4050633334554732,0.331879960373044,-0.23092532344162464,0.3781323949806392,-0.6274402248673141,0.2125540366396308,0.0300722885876894,0.6484384397044778,-0.6031904271803796,-0.8633295269683003,0.6714641386643052,0.4779482465237379,0.34990338841453195,-0.05370449321344495,0.5329869911074638,-0.2432213774882257,0.7297668857499957,0.9947279114276171,-0.49903004709631205,-0.6248894617892802,-0.3118105959147215,-0.2660391260869801,0.9055210775695741,-0.3813520953990519,-0.11128844367340207,-0.436178483068943,-0.26886549312621355,-0.030205917544662952,-0.29620705265551805,0.20651612430810928,0.9699229188263416,0.4005773519165814,0.7637371579185128,-0.18648975109681487,-0.7452777717262506,-0.5514634200371802,0.6865189466625452,0.9715188415721059,0.580405805259943,0.4509047609753907,-0.7594799767248333,0.4296039757318795,-0.5287518231198192,0.6596285575069487,0.8460457134060562,-0.23199663124978542,-0.9401154625229537,-0.8420753949321806,0.2650772547349334,-0.20164824416860938,-0.8488266454078257,-0.518549335654825,0.5211851340718567,-0.8841240857727826,0.009574820753186941,-0.16545022279024124,-0.5822001495398581,0.0826386483386159,-0.19862160086631775,-0.7725035999901593,-0.48298170464113355,-0.3332395264878869,-0.6570351859554648,0.10676512029021978,0.16048490721732378,0.9913121592253447,0.8872851519845426,0.006327105686068535,-0.2190906908363104,0.43640345660969615,-0.7480731587857008,-0.8290106360800564,0.8558207787573338,0.8110585175454617,-0.9190949443727732,-0.4078744435682893,0.29492451483383775,0.8616933804005384,0.058134717866778374,-0.6074721673503518,-0.7188694649375975,-0.7557483846321702,-0.5670125312171876,0.20856356853619218,0.22592641972005367,0.37181649170815945,-0.38436523685231805,0.8504615901038051,0.8896630005910993,0.3210300854407251,-0.730615668464452,0.5436562672257423,0.12638218188658357,-0.3293180577456951,-0.469408534001559,-0.5459044510498643,-0.10183763084933162,0.5319477096199989,-0.6288391873240471,-0.7119030319154263,0.06638114061206579,0.28287314670160413,0.9093999671749771,-0.8700112155638635,-0.7165851928293705,0.004410747438669205,-0.3740213164128363,-0.8552059284411371,0.3587514995597303,0.45069946674630046,-0.5396356768906116,0.38872995181009173,0.6734223924577236,-0.22922405833378434,0.2700822134502232,-0.14562058448791504,0.21384516172111034,0.054899591486901045,-0.36808493500575423,0.15231221728026867,-0.3609476713463664,0.45308278035372496,-0.31987841660156846,-0.17265568068251014,0.12328055035322905,-0.45964676048606634,-0.3743854947388172,-0.6175540247932076,-0.65157979587093,-0.9625265612266958,-0.8434207495301962,0.33200474502518773,0.769329372793436,0.4965438339859247,0.7975749699398875,0.7814252530224621,0.07383992150425911,-0.924103191588074,-0.07433671923354268,0.541972788516432,-0.06095235235989094,0.5574938519857824,0.18451024685055017,0.2366903922520578,0.60862220171839,0.14822967257350683,0.04280852014198899,0.4348267209716141,-0.3493755296804011,0.8290921160951257,-0.7458445080555975,-0.04447345435619354,0.3350936360657215,0.9734879545867443,0.9295039093121886,-0.5941202291287482,0.6212532110512257,0.12572844186797738,0.49966676952317357,-0.9556355741806328,0.009498415514826775,0.613373486790806,-0.79201829014346,-0.1417425638064742,0.08080443739891052,0.7377407345920801,-0.642627268563956,0.6764138895086944,-0.14271539403125644,-0.0787789598107338,0.482565566431731,-0.22826706198975444,0.21421780856326222,-0.053103575482964516,-0.7168174381367862,0.5187123850919306,0.06558555131778121,0.9051418877206743,-0.1602574628777802,-0.7919556135311723,0.6511765727773309,0.05018967902287841,-0.08203639648854733,0.4214265192858875,0.3123267674818635,0.34323743963614106,0.6556472950614989,-0.43151848390698433,0.17860601283609867,0.9842791254632175,-0.05665242439135909,-0.5440232777036726,0.42549209063872695,-0.47287225211039186,0.08125416189432144,-0.02092133928090334,0.7405299474485219,0.4224153175018728,-0.21925076562911272,0.6976897525601089,-0.841147081926465,0.35118455486372113,-0.5804896554909647,0.7828187854029238,-0.2121290760114789,0.9503027540631592,-0.5102337896823883,0.7467092960141599,-0.8827802599407732,-0.4638902638107538,-0.4909699438139796,0.05490957014262676,0.14408180490136147,0.4643717319704592,0.2962272963486612,0.2342545692808926,0.4425288448110223,-0.34283165633678436,-0.6687005003914237,0.3962553311139345,0.5522762965410948,0.05113337701186538,0.5670983819290996,0.5219393242150545,-0.2772016036324203,0.6671188944019377,-0.2768662953749299,0.20298903109505773,-0.6057566893287003,-0.8697454486973584,-0.308134448248893,0.43362412275746465,0.49183525750413537,0.35074075870215893,-0.5335722947493196,0.9623627932742238,-0.7133513251319528,-0.46865265583619475,-0.7484381813555956,-0.6953731561079621,-0.884074789006263,0.37189166992902756,0.452322771307081,0.7350488216616213,-0.31710628513246775,0.7339330604299903,-0.2410109108313918,-0.7642367598600686,-0.4729798221960664,0.0486048674210906,0.11239676550030708,0.27777728298678994,-0.40982548892498016,-0.85112818563357,-0.14713746216148138,-0.3158643157221377,-0.39314883993938565,0.8695673490874469,-0.37535730469971895,-0.7694240938872099,0.5521735614165664,0.7018726831302047,0.3308631703257561,0.22979569947347045,-0.8992252335883677,0.30319032864645123,0.9505981598049402,0.7062560888007283,-0.025008932687342167,0.9585475726053119,-0.7534008235670626,0.524878288153559,-0.14322372199967504,-0.25338270841166377,0.7024110513739288,0.9826168138533831,-0.2021469515748322,-0.8336760983802378,-0.5558080594055355,-0.16179364267736673,0.30411834502592683,-0.5911434371955693,-0.7790043195709586,-0.946577260736376,0.6246740533970296,-0.5103699606843293,-0.5841727345250547,-0.44767251424491405,-0.9078787015751004,0.9603338493034244,-0.6886997018009424,-0.7562334318645298,0.5586892766878009,0.38539361068978906,0.8001039503142238,-0.42937214067205787,0.06071467325091362,-0.5184945310465991,0.9786722734570503,0.14887558994814754,0.14920760225504637,0.5966277872212231,-0.7110914625227451,-0.5799685828387737,0.3050809451378882,0.35456169163808227,0.0489182616584003,-0.009384033270180225,0.34992589708417654,-0.5294953524135053,-0.0712137334048748,0.8482686313800514,0.9440881861373782,0.40335682686418295,0.26571676321327686,0.34717596089467406,-0.21963087702170014,0.6453397287987173,-0.3642656961455941,0.3753617168404162,-0.16696698125451803,-0.6012310516089201,0.035139757208526134,0.5019061374478042,0.22825124207884073,0.38831322779878974,-0.3137003853917122,0.8810186465270817,0.9062125040218234,0.39214324206113815,0.19457628717646003,-0.23206468718126416,0.8102145213633776,0.9715860360302031,0.8905529649928212,-0.2707047201693058,0.11657336307689548,0.07838234025985003,-0.043676627334207296,-0.4116430748254061,0.5917238648980856,0.8752254019491374,-0.4335202183574438,0.7422316973097622,-0.268123441375792,0.7620039898902178,0.9589699734933674,0.8458911394700408,-0.9583278028294444,-0.4659874611534178,0.7366838287562132,0.7727868021465838,0.5479571763426065,-0.5197266777977347,-0.24772064061835408,0.0464530885219574,-0.5597762791439891,0.9203646504320204,0.36186572909355164,-0.7112524607218802,0.3318146914243698,0.9981246269308031,0.5861109173856676,0.6614146339707077,0.2069879863411188,0.6637122081592679,0.6624882672913373,-0.2681044922210276,-0.4781509768217802,-0.11277075298130512,0.8441737787798047,0.3118256814777851,-0.9144493802450597,0.5722701586782932,0.37463214341551065,-0.4050795608200133,-0.2413994581438601,-0.02586727123707533,0.8487445120699704,-0.7810518862679601,-0.17983538517728448,-0.8772867592051625,0.05502534285187721,-0.1642968957312405,0.517792425584048,0.8932722746394575,0.17796951485797763,0.2383833504281938,-0.03904524678364396,-0.9883294943720102,-0.15627456177026033,-0.899119789712131,-0.9228735351935029,0.7316553718410432,-0.789456068072468,0.8594546383246779,0.6839120630174875,0.7742872931994498,0.6227149642072618,0.044783581513911486,-0.5042329179123044,-0.16178872855380177,0.7059198427014053,0.5896849567070603,0.04289442207664251,-0.7739616050384939,0.48684697039425373,0.5191806517541409,0.41943988017737865,-0.9755190047435462,0.9808137151412666,-0.2035119514912367,-0.7783404849469662,0.6713614170439541,-0.97440863866359,-0.8482975973747671,-0.21774433320388198,0.8254700195975602,0.31224796222522855,-0.2792002810165286,0.3229814846999943,-0.8674297854304314,0.5964009165763855,-0.04649591026827693,-0.3094218694604933,-0.9155931617133319,0.31422091415151954,0.6183473356068134,-0.1485936278477311,0.6135612740181386,0.9706416972912848,-0.6882308353669941,-0.7356969825923443,0.1902647470124066,0.5923319840803742,-0.7318749148398638,0.2611132157035172,0.5355332503095269,-0.34731364203616977,-0.5547156073153019,-0.3635084955021739,0.0845644329674542,-0.18945267098024487,0.25726245576515794,0.4994310629554093,0.9923905511386693,-0.5505990339443088,0.880403297021985,-0.8450662828981876,-0.46208578534424305,-0.702121942769736,0.904638756532222,-0.4150732378475368,0.6515886364504695,-0.08079879032447934,0.5949450596235693,0.02655033441260457,0.05393868964165449,-0.655688785482198,-0.2871887185610831,-0.8650585506111383,-0.27748607471585274,-0.6649790536612272,-0.003510403446853161,0.1604282301850617,-0.9461257895454764,0.8070119954645634,-0.4892988381907344,0.5950750252231956,0.05552000040188432,-0.3442644039168954,0.7318720459006727,-0.35520134400576353,0.532781736459583,0.8481305516324937,0.919236779678613,0.1310816598124802,-0.5822683796286583,-0.336879251524806,-0.9214906934648752,-0.17367805819958448,-0.9716132185421884,0.8711827271617949,0.4836334763094783,-0.5391093818470836,-0.08572658663615584,0.7185916248708963,0.1729972013272345,0.6883611003868282,-0.8030642392113805,-0.036154456436634064,-0.7198513811454177,0.32750879414379597,0.6082260427065194,0.8765323609113693,-0.8829279844649136,-0.8383722677826881,-0.4625708316452801,-0.5105819697491825,-0.6265454180538654,-0.9498016266152263,-0.11151393782347441,0.9123691413551569,0.8355611399747431,0.5453537339344621,0.7776851397939026,-0.7344625773839653,-0.34843664709478617,0.8164562326855958,-0.3490886865183711,-0.8130092765204608,-0.960286573972553,-0.654528702609241,0.5257539334706962,-0.3313990505412221,-0.36463310569524765,-0.11654637334868312,-0.7258841181173921,-0.9512890079058707,-0.6158429393544793,-0.09822078188881278,0.3751730630174279,-0.32956537138670683,-0.15431609097868204,-0.38330723345279694,0.3675644304603338,0.6730275829322636,-0.9009857643395662,-0.545490425080061,-0.5665221768431365,0.667945483699441,-0.21952061215415597,0.27420681342482567,0.7701672809198499,-0.5878299125470221,-0.8250577682629228,0.5220713685266674,-0.25646077562123537,-0.14463284146040678,0.9766756733879447,-0.6910809488035738,-0.48045955412089825,-0.2880189334973693,0.060514353681355715,0.8933116351254284,0.19299148861318827,0.9798078583553433,0.49413240514695644,-0.4236497590318322,-0.6562614948488772,-0.3395167295821011,0.01465234812349081,0.688702363986522,0.9844563892111182,0.8977894042618573,0.3356971968896687,-0.8979003857821226,0.18405053252354264,0.27345285192131996,0.18307043425738811,-0.16376591613516212,-0.059089696034789085,-0.8083669212646782,-0.7380622187629342,-0.957629547920078,-0.6772649772465229,-0.9311844310723245,-0.8824955434538424,0.8866936680860817,-0.6055548926815391,-0.6545947156846523,0.1620386647991836,0.38858274230733514,-0.19284771848469973,0.28728821966797113,-0.9795157318003476,0.9934039153158665,-0.7624219986610115,-0.3319357046857476,0.42128749331459403,0.5822849250398576,-0.2320341281592846,-0.23977305414155126,0.9348204610869288,-0.268694163300097,0.15051710372790694,-0.8327133352868259,0.6144741578027606,-0.7726294109597802,-0.3774169716052711,0.4368358878418803,0.9000613959506154,0.30354350386187434,0.6132273096591234,0.7584757064469159,-0.10706359427422285,-0.5625412999652326,0.005236211698502302,0.7173221949487925,-0.026998478919267654,-0.04225174617022276,-0.15867531346157193,-0.5146250328980386,-0.044795343186706305,0.02585031744092703,0.5671915975399315,0.16719480510801077,0.013645246159285307,0.5478564542718232,-0.34129492845386267,-0.28308606520295143,0.545882957521826,-0.44355155108496547,0.5929384883493185,0.4780385345220566,0.15128542808815837,-0.19774479931220412,0.03354367148131132,-0.719692334998399,-0.9335941495373845,-0.04712614370509982,-0.3494817838072777,0.317915047518909,0.4138984000310302,0.6731606787070632,-0.664621892850846,0.24118206975981593,-0.3711232435889542,0.623703733086586,-0.3178822798654437,0.6947917984798551,0.23664190154522657,0.029323500115424395,0.9209163072519004,-0.13113504834473133,0.6475798510946333,0.46330466121435165,0.8487561941146851,0.0018072179518640041,-0.6606806213967502,0.40700608352199197,-0.8370826817117631,-0.4203229509294033,-0.10941923689097166,0.7153985053300858,0.32054465962573886,-0.5274515463970602,0.770147598348558,-0.25837141927331686,0.7088841525837779,0.9163121008314192,0.3419068153016269,0.3701631180010736,-0.9973694924265146,0.7166450549848378,-0.7091250121593475,0.20814710389822721,-0.39170657517388463,-0.41584981558844447,0.3322793347761035,-0.06235928647220135,-0.4648540155030787,0.8081021178513765,-0.9268751791678369,-0.10463544959202409,-0.32723855460062623,0.7592820306308568,0.5698738847859204,-0.19074504962190986,-0.36843362683430314,0.6856125583872199,0.41830102913081646,-0.14307384239509702,-0.8058899459429085,-0.6595459962263703,-0.22087408136576414,-0.18922704178839922,-0.7273543998599052,-0.30051126331090927,0.973061176482588,-0.6379475286230445,0.9766163914464414,0.8432403565384448,0.17687200289219618,-0.23025638377293944,0.0857236753217876,0.25199369294568896,0.9546810551546514,0.6401010984554887,0.05665665725246072,0.8699227292090654,-0.8146720384247601,0.8847561865113676,0.7464124667458236,0.7554363058879972,0.6460262923501432,0.5845854375511408,-0.49388994881883264,-0.2948900009505451,-0.1741119152866304,-0.4070786749944091,-0.9591064928099513,0.09368882142007351,-0.781541817355901,-0.2820853185839951,0.6553099104203284,-0.8441192316822708,0.5052424441091716,0.7356083891354501,-0.586309302598238,0.49738198751583695,0.2601516251452267,0.8567364010959864,0.8017189931124449,0.834699640981853,0.3640040708705783,-0.4848450608551502,-0.43720203591510653,-0.2347639799118042,-0.957389501389116,0.4409730238839984,-0.43678296729922295,-0.2389985523186624,-0.9695154521614313,-0.3676851624622941,-0.8617214597761631,0.37905447371304035,0.4136177320033312,0.4643998686224222,-0.4364007799886167,-0.9691793969832361,-0.26256081322208047,0.7082999432459474,0.911324571352452,-0.6901588113978505,-0.2556110038422048,-0.5628162138164043,0.4308735681697726,0.7921204250305891,0.5419160281307995,-0.8194619626738131,0.18594543635845184,-0.6746073672547936,0.9202712355181575,-0.24665247043594718,0.7147820154204965,-0.999688031617552,0.9497424135915935,-0.9007040704600513,-0.14388912543654442,-0.43711896939203143,0.7819079076871276,0.7588992826640606,0.24976303335279226,0.2265416500158608,-0.972291347105056,0.08271631738170981,-0.3997302367351949,0.7095729690045118,0.5416028737090528,-0.3633487676270306,0.7080573458224535,-0.7848661476746202,0.8966909945011139,-0.9604843109846115,0.8610233883373439,-0.636819388717413,0.4860639697872102,-0.6201127236708999,-0.5142311975359917,-0.015511346980929375,0.5003275275230408,0.0729814087972045,-0.3821201487444341,0.1488820742815733,0.4079962591640651,-0.4734944929368794,-0.6243299013003707,0.1559872687794268,0.8525188458152115,0.7107885405421257,0.7225625743158162,0.16488930117338896,0.29401685390621424,0.6391917490400374,0.05238972185179591,0.4539384073577821,0.2958696554414928,0.9614311731420457,0.4242092715576291,-0.014831916894763708,0.17592208413407207,0.4329103222116828,-0.21247732639312744,-0.3173231240361929,-0.44214743888005614,-0.19178177183493972,0.6557605238631368,0.14064361155033112,-0.5212048911489546,-0.5919157648459077,0.6960630733519793,-0.36276130517944694,0.38278302550315857,-0.470617996994406,0.8990767751820385,0.14328041393309832,-0.27748112101107836,-0.6075576161965728,0.06814871961250901,-0.7733860109001398,-0.994049325119704,-0.6237204074859619,-0.3964727893471718,0.8661893019452691,0.05518719041720033,0.26520641054958105,0.6394166713580489,-0.333148330450058,-0.013495301362127066,-0.8463209457695484,0.34316025115549564,-0.3871836131438613,0.8484203428961337,-0.7066769157536328,0.8406022172421217,-0.1239186991006136,-0.6878149094991386,-0.8481276794336736,-0.09276982210576534,0.822303690481931,0.2651111548766494,0.41533861868083477,0.7009481289424002,0.6861077980138361,-0.7967036408372223,-0.11234773229807615,-0.8008961006999016,-0.29006326850503683,0.4050218742340803,0.12828295677900314,-0.41916434094309807,-0.6303880158811808,0.9458681116811931,0.8253482012078166,-0.4921106253750622,0.2900091730989516,0.06403844198212028,-0.6941168215125799,0.16537020821124315,-0.06274037575349212,-0.8303349777124822,-0.17733283806592226,0.7632047613151371,0.41615890990942717,0.5991461551748216,0.3743539205752313,-0.5172736793756485,0.19779665349051356,0.7328982488252223,0.23533644899725914,0.7985867061652243,-0.8690170389600098,0.4496169239282608,0.40829612920060754,-0.7666325145401061,-0.9270444703288376,-0.620290148537606,0.940871321130544,0.1388862831518054,-0.7308657397516072,0.6453575952909887,-0.7162921042181551,-0.22598283411934972,0.2851908025331795,-0.5510500804521143,-0.37968454230576754,0.04090712917968631,-0.6927510965615511,-0.14599768351763487,0.15570818539708853,0.005669170990586281,0.7456868812441826,-0.7391282538883388,0.5189018878154457,0.4257216830737889,-0.932240470778197,0.4001337164081633,0.9887451585382223,0.6715228832326829,-0.6190920025110245,0.8336795368231833,0.6754690743982792,0.8744269046001136,-0.7831076253205538,-0.15817934786900878,0.9301284719258547,-0.6374728656373918,-0.28442962700501084,-0.8855409026145935,-0.6476482334546745,0.7644183831289411,-0.8701405473984778,0.9345951732248068,-0.8624952691607177,-0.3518957239575684,0.30481581622734666,0.5654805661179125,0.9561069724150002,0.178781071677804,-0.2909316960722208,-0.8871315694414079,-0.7140078213997185,0.7527995561249554,0.7413684846833348,0.9531223205849528,0.19816675875335932,-0.19489228120073676,-0.25763367069885135,-0.17548356764018536,-0.8716514520347118,-0.8435903331264853,-0.43952895142138004,0.9599831220693886,0.5096503738313913,-0.7185696032829583,0.4805454923771322,0.3740741368383169,-0.7528729657642543,0.26237096870318055,-0.7956071542575955,0.21723503293469548,-0.24579790700227022,0.6312401192262769,-0.37598830135539174,-0.8810331472195685,-0.9148315512575209,-0.81729147862643,-0.3651865632273257,0.902259977068752,-0.24195207236334682,0.25155272567644715,0.7184757716022432,0.5967600150033832,-0.8651380655355752,0.5846730261109769,-0.959990902338177,-0.1311638462357223,0.4698739484883845,-0.8257463346235454,0.3639326449483633,0.9290513484738767,0.6637735026888549,-0.7356059718877077,-0.28391274297609925,0.547724783886224,0.807078639511019,-0.6645689178258181,0.9670950868166983,-0.9678453346714377,0.6696874564513564,0.9523577429354191,0.2895806632004678,0.04055733047425747,0.164439442101866,0.7459134547971189,-0.1033417247235775,-0.09772761398926377,-0.7686736132018268,-0.3160115978680551,-0.708091689273715,-0.5044277822598815,-0.17953644087538123,-0.4681725036352873,0.8857009308412671,0.3030204586684704,0.7185940151102841,0.10111877089366317,-0.9062010981142521,-0.03252748493105173,-0.21732993982732296,0.8209490939043462,-0.12063795747235417,0.09212246723473072,-0.5670409463346004,-0.2563143172301352,-0.7435332578606904,-0.9266235772520304,-0.7353841559961438,-0.48094714991748333,0.5534084900282323,-0.2191672269254923,-0.24857503594830632,0.9477100688964128,0.8886844753287733,-0.3903632331639528,-0.13581900065764785,-0.47184027871116996,-0.892901474609971,-0.4215154703706503,-0.313422039616853,0.7868662304244936,0.3223881274461746,-0.28134656604379416,-0.6019839914515615,-0.256953707896173,0.955740062519908,-0.07576336897909641,-0.5182391270063818,0.03704817406833172,-0.41095150588080287,0.9135662312619388,-0.4957075687125325,0.10575429862365127,0.4315799283795059,-0.38718422362580895,-0.3716831626370549,-0.3093152535147965,0.9041617442853749,-0.5043373685330153,-0.9433482163585722,-0.6396458856761456,-0.9695827825926244,-0.44274313282221556,-0.7264810698106885,0.7830074429512024,0.9760205517522991,-0.9870649133808911,-0.7301203198730946,-0.3204110902734101,-0.7717657443135977,-0.23700143257156014,0.12179449060931802,-0.3866770421154797,0.6167317652143538,0.47332623647525907,0.766203670296818,-0.7380815111100674,0.3404663526453078,0.21817140514031053,-0.2935526445508003,-0.919256285764277,0.8557820566929877,-0.06591633660718799,0.5937016918323934,0.18066557170823216,-0.0023392243310809135,-4.081986844539642e-06,-0.16790657117962837,0.26570448325946927,-0.16418982902541757,0.34660425083711743,0.6547434721142054,-0.2723255390301347,0.6787619423121214,0.906924712471664,-0.4485100945457816,-0.5603342368267477,0.66958171967417,0.8148200041614473,-0.9722541277296841,0.8156830039806664,-0.8641321808099747,-0.6317471065558493,-0.13688323879614472,-0.23556731268763542,-0.8945042914710939,-0.47812355821952224,-0.5618108403868973,-0.1434678640216589,0.6275409376248717,0.8472298150882125,-0.1715509886853397,0.11150872753933072,0.051146963611245155,0.04981357790529728,0.05661299359053373,0.896265187766403,-0.19840291934087873,-0.5838564401492476,-0.9905874724499881,0.6999907908029854,0.09783346997573972,0.05945140728726983,0.5661352626048028,0.3240252281539142,0.3133769277483225,0.9233579742722213,-0.35782561358064413,0.7970998487435281,-0.38537423266097903,0.7210423233918846,0.5988858728669584,0.27749107079580426,-0.997101737651974,-0.12595015717670321,-0.7737976554781199,-0.8523417273536325,-0.46925114188343287,-0.005083729512989521,0.980152077972889,0.8514059660956264,0.22899649338796735,0.7511850758455694,-0.9378623701632023,-0.6965835732407868,-0.7295908289961517,-0.17968755029141903,-0.2912625540047884,-0.6256631431169808,0.9093249957077205,-0.377075323369354,-0.23820195021107793,-0.33401070442050695,0.7224783068522811,0.2878784518688917,-0.6731370175257325,0.5061661242507398,0.013483117334544659,0.3795229778625071,0.6167164943180978,-0.10012885928153992,-0.2220985139720142,-0.7912567020393908,0.96287238644436,-0.8498411322943866,0.2055933214724064,-0.20298685040324926,-0.805979838129133,-0.8374862666241825,0.9916449463926256,-0.27577918861061335,-0.7672640159726143,-0.017300559673458338,0.3822852158918977,-0.5103587713092566,-0.9684628574177623,-0.6978232059627771,0.005494176410138607,0.996811774559319,0.5224056523293257,0.8574027791619301,0.9038005974143744,0.33670284366235137,-0.5024411263875663,0.2951357834972441,0.4609477687627077,-0.3038553465157747,0.3019806086085737,-0.7889094655402005,-0.8110298709943891,-0.5845205062068999,-0.0311746746301651,0.016800590325146914,0.3669009804725647,-0.850571068469435,0.5859102900139987,-0.7227832023054361,0.3170434720814228,-0.5975699643604457,0.5419052192009985,0.9031999669969082,0.7547624325379729,-0.6072971126995981,-0.4113047984428704,-0.20436182478442788,0.6747123398818076,-0.20757721364498138,-0.4576349752023816,-0.3055944168008864,0.3672249624505639,-0.5640009194612503,0.4378079534508288,-0.5617718645371497,0.10918031819164753,0.24094109516590834,-0.14450013265013695,-0.04741104878485203,-0.6495696897618473,-0.9697730499319732,0.6627847114577889,0.5031558959744871,0.2309967796318233,0.8645280287601054,-0.8177110254764557,-0.3272579535841942,-0.28873086255043745,0.8135543311946094,0.8847183375619352,-0.6980726150795817,0.2450769292190671,-0.3705820399336517,-0.8794578965753317,0.7472178563475609,-0.4433975894935429,0.9720791126601398,0.9263457115739584,-0.501096308697015,0.1969861015677452,-0.793557093013078,-0.7312862519174814,0.4701257352717221,0.5732933524996042,-0.07207175903022289,-0.8696984248235822,-0.6678408035077155,0.41092566726729274,0.36440075701102614,0.47703626984730363,-0.8452994567342103,-0.7379275495186448,0.00809989357367158,0.27472388138994575,-0.048468874767422676,-0.1495122737251222,0.6559469420462847,-0.43337576603516936,0.870167488232255,-0.7378776581026614,0.7495764764025807,-0.02010529115796089,-0.9289626041427255,-0.15057099657133222,0.5635063699446619,0.5026209307834506,0.262274825014174,0.072547712828964,-0.7718941112980247,-0.464293688070029,-0.6905002486892045,0.16567047545686364,0.41449808329343796,0.822269813157618,0.40010703168809414,-0.8413240467198193,0.7007443546317518,-0.3819332756102085,-0.9632801818661392,0.22655927948653698,-0.35844463715329766,0.40479284059256315,0.06061692209914327,0.08059839252382517,-0.7774878032505512,-0.45536488527432084,-0.1403361726552248,-0.7445163265801966,-0.5260479315184057,-0.689189319498837,0.5146883451379836,0.5463461116887629,-0.19079864444211125,-0.05727073410525918,0.20007517142221332,-0.2766580036841333,0.7996668256819248,0.0065654246136546135,-0.7908340557478368,0.6955432146787643,-0.544298542663455,-0.18665235629305243,-0.35653767362236977,-0.2491641016677022,-0.4653156460262835,0.34433616138994694,0.12962082587182522,0.24979562871158123,-0.22494039591401815,-0.4493465661071241,-0.23856422072276473,0.5262805912643671,0.7997217033989727,0.9904876560904086,-0.7165774051100016,-0.4093664954416454,0.17787745594978333,-0.44010994443669915,-0.8722625141963363,0.5018293913453817,0.3464181865565479,-0.14525487320497632,-0.26446308149024844,-0.16384017933160067,0.6114073488861322,-0.027397959493100643,-0.7941433670930564,0.6842725831083953,0.05080393422394991,-0.32027467945590615,-0.6133533343672752,-0.08746572583913803,0.9903227374888957,0.6295551364310086,0.6606733230873942,0.4157642424106598,-0.35450840275734663,-0.19993503810837865,-0.9455448943190277,-0.8202341981232166,0.25264510279521346,-0.5033603198826313,0.9320817533880472,0.8514337381348014,-0.9194054161198437,-0.022176501341164112,0.009878483135253191,-0.3956321980804205,0.9789379676803946,0.01792793394997716,-0.8910762825980783,0.529854744207114,0.8350182315334678,0.5601837853901088,0.46961232693865895,0.009766306262463331,-0.9124404690228403,0.5403167800977826,0.6807931787334383,-0.8753804420121014,-0.3745438209734857,0.6004067561589181,0.07709124311804771,0.1826742491684854,-0.1741742710582912,-0.8524054852314293,-0.53982695331797,0.36103513883426785,-0.23059792909771204,0.63204002706334,-0.4152849027886987,0.6634384435601532,0.737712049856782,0.7797133298590779,0.8114299192093313,-0.7544707027263939,-0.20210459316149354,-0.6063444348983467,0.6738355020061135,0.2734771934337914,0.4163775136694312,0.6645713062025607,0.021142900455743074,0.35858262376859784,0.4271047515794635,0.13032149756327271,-0.36988045182079077,-0.394233213737607,0.8661010898649693,-0.9058686560019851,0.7628750894218683,0.7301317709498107,-0.2070627473294735,0.8745913975872099,-0.45163239957764745,0.5022532907314599,-0.5544002405367792,0.9979325504973531,-0.1733901291154325,-0.2423237613402307,-0.6283869133330882,0.49986825650557876,0.3397298939526081,0.4015150247141719,-0.6022672215476632,-0.8428205219097435,-0.14025317272171378,0.4770702226087451,-0.8015795289538801,0.8520864355377853,-0.8441423256881535,-0.6343954689800739,-0.8058172813616693,-0.37563987635076046,0.31556449132040143,-0.43496547918766737,0.13284579711034894,0.8134645824320614,-0.3188798073679209,0.3229002715088427,-0.24176454730331898,0.24387969775125384,-0.9980769720859826,-0.7937173256650567,0.9787209597416222,-0.2961595579981804,-0.3199786921031773,0.14301964733749628,0.0019342554733157158,0.6363001111894846,-0.11501236399635673,0.7749278373084962,-0.6066029169596732,-0.36277899146080017,0.5599899995140731,0.5199022004380822,-0.707136551849544,0.5670105433091521,-0.09314204566180706,0.10248741786926985,-0.379833756480366,0.04947101278230548,0.7958434806205332,-0.2203735150396824,-0.11406702036038041,0.01806892454624176,-0.24905601749196649,-0.012532518245279789,0.25708522787317634,-0.8800875977613032,-0.2610719189979136,-0.5285795265808702,0.21427519107237458,-0.015631000511348248,-0.8572561265900731,-0.7650719075463712,-0.8219962664879858,-0.018755776342004538,-0.4654863169416785,0.7131416844204068,0.25864370120689273,-0.5768634891137481,0.10043474612757564,0.1885678037069738,-0.4527962342835963,-0.9616006561554968,0.4823900614865124,0.898090769071132,-0.6530543062835932,-0.8483580038882792,0.4589970214292407,-0.7476522368378937,-0.2530378121882677,0.5014383606612682,-0.3297676737420261,-0.3043623426929116,-0.7856313171796501,-0.11687244335189462,-0.4280061349272728,0.15704932669177651,0.3181813848204911,0.3115913118235767,-0.014520503580570221,0.864935552701354,-0.8258824851363897,0.2796973227523267,-0.7803781451657414,-0.80004310188815,-0.7329325410537422,0.27675756672397256,-0.21053696516901255,0.011656120885163546,0.7043869690969586,-0.2004592944867909,0.28218163875862956,-0.5113820168189704,0.5835374863818288,-0.676916160620749,-0.8594079078175128,-0.3756264769472182,-0.771117813885212,0.3437927355989814,0.34949189703911543,-0.8240273157134652,0.8716232776641846,0.3540423586964607,0.34645063849166036,-0.15061800135299563,-0.7890279646962881,-0.4750177669338882,0.15644683223217726,-0.46455925330519676,0.6522720623761415,0.677489975001663,-0.841960621997714,0.5623723794706166,0.5977636035531759,-0.2988149165175855,0.7529024831019342,0.7048308518715203,-0.1275618993677199,0.1134312367066741,-0.11757851857692003,-0.6273656254634261,0.8362832036800683,0.36931693833321333,-0.647735190577805,0.3117500189691782,-0.11779196467250586,-0.574052816722542,0.12204731302335858,0.40872725239023566,0.18775777565315366,0.897852975409478,0.7948560146614909,-0.03295139968395233,-0.24399995291605592,0.5457434533163905,0.9442352610640228,-0.8462054128758609,-0.3788011991418898,0.28333561262115836,0.4051281316205859,-0.8169552185572684,0.40472188498824835,0.43189496267586946,0.7132689608260989,-0.33746529277414083,0.7743399236351252,-0.6298121884465218,0.7484649321995676,0.8429601574316621,0.8806470213457942,0.44315448217093945,-0.7776730139739811,0.9529475416056812,-0.6573389442637563,0.978613771032542,-0.2950305207632482,0.018057797569781542,-0.4935864256694913,-0.9197552525438368,0.6420776410959661,-0.20567328482866287,0.9916961379349232,0.08417040202766657,-0.5683922697789967,0.4926754320040345,-0.8891715439967811,-0.5539441471919417,-0.8323347456753254,0.0657183793373406,0.9598167189396918,-0.7751058163121343,-0.7097464418038726,0.11356259323656559,0.632040532771498,-0.7394757405854762,0.232322852127254,0.606365408282727,-0.8333952217362821,-0.9815796646289527,-0.07121584424749017,0.629564537666738,0.5141375754028559,-0.9067185721360147,0.010943516157567501,-0.6740531893447042,-0.6559031433425844,0.8575902730226517,-0.7960234549827874,-0.4979974846355617,0.8801480098627508,0.03970832237973809,0.7146874517202377,-0.3977154539898038,-0.4476891774684191,-0.12920455913990736,-0.5986732402816415,-0.5099405632354319,-0.22146606724709272,0.8337297472171485,-0.17223427491262555,0.19365307223051786,-0.008805420249700546,-0.416536811273545,-0.5410803286358714,-0.2527752621099353,0.25776077387854457,-0.23011679155752063,-0.2489908328279853,-0.1427267249673605,-0.522212038282305,-0.4242818527854979,0.25664860801771283,0.11888326657935977,-0.2786011043936014,0.3969743880443275,-0.5703841093927622,-0.7977537205442786,0.013691334053874016,0.5842508701607585,-0.29176174057647586,0.8617801764048636,-0.8295655054971576,-0.04839049279689789,0.07351395674049854,-0.6106478138826787,0.5236024078913033,0.7411545738577843,0.7128286906518042,0.3537915125489235,-0.7100870939902961,0.324294775724411,0.07775119366124272,-0.9257871517911553,0.37612860230728984,0.9960621031932533,0.6031172131188214,0.3913248800672591,0.41191904386505485,0.985698455478996,0.8313443823717535,-0.6611919905990362,0.9373796838335693,-0.6897159414365888,-0.39298547012731433,-0.9641038691624999,0.5121441599912941,-0.10276333335787058,0.45208898140117526,0.11573216132819653,-0.5073005468584597,0.022444242145866156,0.2549824374727905,0.48382533993571997,-0.5518272379413247,0.7010631780140102,0.338143820874393,0.7803942901082337,-0.4821497858501971,0.40658329194411635,0.6398411234840751,0.08281113253906369,-0.8583398433402181,-0.23532173922285438,0.29133711848407984,0.15350731648504734,-0.8452629861421883,0.29546583304181695,-0.9374914248473942,0.6707489197142422,-0.9246686343103647,-0.7189314002171159,-0.3460591905750334,0.8321820166893303,-0.9545324174687266,-0.3338624881580472,0.654494387563318,0.4110055076889694,0.6893100067973137,0.8060198230668902,0.6828372641466558,0.21653360314667225,-0.7856069458648562,-0.3494979296810925,-0.43272093404084444,-0.38102803099900484,0.9835966601967812,-0.3294642623513937,-0.8872468573972583,-0.5435847891494632,0.8593342145904899,0.7349294149316847,0.23388529941439629,-0.5025904104113579,-0.16774982400238514,0.8444410068914294,-0.2574045192450285,0.31563018169254065,-0.2079849042929709,-0.4283714732155204,-0.8677251846529543,0.013722770381718874,0.8088155924342573,0.7474546912126243,0.3837408656254411,-0.8526195930317044,0.5469218213111162,-0.6441052127629519,0.8338571074418724,0.2961064288392663,-0.3333765505813062,0.2971827108412981,0.7307439725846052,0.20184723800048232,-0.6668923948891461,0.09977851249277592,0.4108838210813701,-0.3607455347664654,-0.7251915847882628,-0.8265148042701185,0.17618037294596434,0.19221120281144977,0.20486424723640084,-0.2669198904186487,0.8075097776018083,-0.5400938708335161,0.5331160011701286,-0.8776179966516793,0.16067758528515697,0.8197212954983115,0.5485260207206011,-0.3793007074855268,0.24552748072892427,0.9135677274316549,0.7596511542797089,0.7052620812319219,0.44996466441079974,-0.09214678546413779,-0.3684489019215107,0.4350968417711556,0.21106332587078214,-0.4774529463611543,-0.03589511243626475,-0.8745150985196233,-0.4785922574810684,0.7097199191339314,-0.766102175693959,0.13901482336223125,-0.6736579574644566,-0.6246677744202316,0.0664275549352169,-0.6605399609543383,-0.28546525398269296,-0.5182969816960394,-0.8652336271479726,0.2954441551119089,-0.7742309095337987,0.0994076831266284,0.7253267667256296,0.5922418036498129,-0.4340694695711136,0.4612501566298306,0.5706503381952643,-0.6508253901265562,0.8315027398057282,0.044568045530468225,0.5132883586920798,-0.05247780214995146,0.13284509675577283,-0.5397839522920549,0.24368418380618095,0.8076723604463041,-0.17393961502239108,-0.8468517917208374,-0.2676726137287915,0.8810983966104686,0.016175865661352873,-0.2070355503819883,0.4970878502354026,-0.3679434177465737,-0.9784715487621725,-0.4497245326638222,-0.8083676039241254,-0.5911736451089382,-0.16274641826748848,-0.06269426131621003,-0.46315133292227983,-0.20252962224185467,-0.39998430479317904,0.7343670520931482,0.6018846360966563,0.24894037749618292,0.5326480716466904,0.0847387914545834,0.345431512221694,0.9777550287544727,0.9484918490052223,0.7441792646422982,0.7416551280766726,0.2750927107408643,-0.18364649219438434,0.5489129889756441,0.7827719813212752,-0.9424256971105933,-0.9150781650096178,-0.7072792882099748,0.7482848698273301,0.5970379933714867,0.7045894162729383,0.30128958309069276,0.9501833864487708,-0.18378050671890378,-0.680050864815712,-0.5055001699365675,-0.5013429243117571,0.4139851154759526,-0.5089826690964401,-0.911256792023778,0.8434918746352196,-0.771168417762965,0.3750626570545137,-0.037623715586960316,-0.06906498316675425,-0.18689952744171023,0.08691106690093875,-0.37506413320079446,0.6290322407148778,0.7843572706915438,-0.5678327553905547,0.5091887153685093,-0.6774521199986339,0.819564794190228,0.2670238818973303,-0.7025378490798175,0.002600543200969696,-0.6461213105358183,0.6277166856452823,0.7488342300057411,-0.6719762720167637,0.7251951554790139,-0.9134834376163781,-0.7055365210399032,-0.46423404524102807,0.6489522559568286,0.9740757164545357,-0.6001417553052306,0.7242013872601092,-0.27835778053849936,-0.44474277552217245,0.0513978311792016,0.7132680416107178,0.47111057257279754,0.3656129757873714,-0.9497797172516584,-0.04164705239236355,-0.7631922629661858,0.030561084393411875,-0.6307051195763052,-0.6873214226216078,0.745331238489598,-0.9484991794452071,0.6271176277659833,0.8634707676246762,-0.378123905044049,-0.06222045747563243,0.607771732378751,0.7391438786871731,0.631505121011287,-0.1422665291465819,-0.2344012693502009,0.41992529993876815,0.9971452718600631,0.4787344867363572,-0.43629133282229304,0.3163187406025827,-0.05519720073789358,0.4326700330711901,-0.178424465470016,0.02344679832458496,0.6658742441795766,-0.9163575512357056,0.38858864828944206,0.25886825006455183,0.9516868428327143,-0.6590512432157993,-0.980918753426522,-0.1931374492123723,-0.6273130811750889,-0.8711844752542675,-0.3740118984133005,0.5768585079349577,-0.7451883838512003,0.610525787808001,0.3754737200215459,-0.3762077931314707,0.4409085689112544,-0.2551767099648714,-0.21633412037044764,-0.600818651728332,-0.8065090510062873,-0.9371994766406715,-0.6890154997818172,-0.42894898261874914,0.2144564720802009,0.5180316087789834,0.736024378798902,0.11518911318853498,-0.04471571883186698,-0.9971064925193787,-0.40608545672148466,0.4048847407102585,-0.4877195116132498,-0.5474532288499177,-0.0012201867066323757,-0.47053895937278867,-0.7581655052490532,0.2845321916975081,0.9695069948211312,0.03093437012284994,0.5371894091367722,-0.5397118381224573,-0.607991284225136,-0.6733601968735456,0.6035249861888587,0.24545945087447762,0.042632467579096556,0.2361565912142396,-0.2654294245876372,0.2324855257757008,-0.45639061322435737,0.7668428607285023,-0.6197885302826762,0.8839864516630769,0.5931744356639683,-0.6251248414628208,0.46072091255337,-0.6714386926032603,0.031370557844638824,-0.40164845902472734,0.8529247022233903,-0.03033858397975564,-0.9374852860346437,0.7260107202455401,-0.4023263077251613,0.9515072121284902,-0.592273966409266,0.595754093490541,-0.78367402497679,0.80203602835536,-0.9895320753566921,0.505156525876373,0.9322054227814078,-0.3180586448870599,0.4545650160871446,0.7172821816056967,-0.524332782253623,-0.29897028720006347,-0.5988262039609253,-0.26627985294908285,0.682061092928052,-0.5296058375388384,-0.412524679210037,-0.619690703228116,-0.4993183887563646,-0.4614247395657003,0.6897629839368165,0.24755798326805234,0.14329898823052645,-0.700523239094764,0.3025978025980294,-0.8807745967060328,0.2448388352058828,0.19297214644029737,-0.10455034067854285,0.8532054889947176,-0.40824876679107547,-0.6653895010240376,-0.029839578084647655,0.7847373257391155,0.15213054977357388,0.2526920880191028,0.8243681788444519,-0.06613163836300373,-0.06132990354672074,0.1322183725424111,0.0995822106488049,-0.5267272149212658,0.749286450445652,0.5560368555597961,0.03967494843527675,-0.12351246178150177,0.3562945332378149,0.12762374244630337,-0.9971445654518902,0.2582074599340558,0.8105066022835672,0.847499642521143,-0.7095316085033119,-0.9905217476189137,-0.03304567560553551,0.10871406411752105,-0.9226209833286703,0.8718067929148674,0.7609067908488214,0.11267777066677809,0.9389386307448149,0.6952485051006079,0.19492585537955165,-0.381496898829937,-0.9642793494276702,-0.9767223121598363,0.6540925139561296,0.9436387587338686,0.9662390351295471,-0.9033960844390094,0.5399285582825541,0.5297293486073613,-0.38858641125261784,0.22234298195689917,-0.12097841035574675,-0.01809897506609559,-0.703906343318522,0.09385644923895597,0.8772833519615233,-0.28064714558422565,0.9740872657857835,-0.31500526797026396,0.5243462836369872,-0.6951630436815321,0.9330471628345549,-0.0011597280390560627,-0.7207304444164038,-0.12853466533124447,-0.8089884761720896,0.2990703438408673,0.5782998343929648,-0.05212898878380656,-0.6584245185367763,0.6733729615807533,0.42550816014409065,0.9786880523897707,0.8116763848811388,-0.47290418948978186,0.5440957946702838,-0.4581401306204498,0.49949608836323023,0.45610302966088057,0.3170942119322717,-0.5243991226889193,-0.8436776627786458,-0.9324203049764037,0.21095836954191327,-0.7193586006760597,0.4630603645928204,-0.4132358729839325,-0.716830384451896,-0.2748234258033335,0.9137145495042205,0.943942348472774,0.7550685787573457,0.6150671015493572,-0.6700204038061202,0.5592182246036828,0.21452078269794583,0.7147812126204371,0.0836632763966918,0.37248556036502123,0.21194082591682673,-0.4491780591197312,-0.27464771876111627,-0.9066659035161138,-0.6999199627898633,0.28363379975780845,0.47474979562684894,-0.17083948850631714,0.5814471384510398,0.8523625289089978,0.07649877481162548,0.9904687283560634,-0.21826049266383052,-0.2765054744668305,-0.3059187512844801,-0.893307969905436,0.38446197798475623,-0.48938818043097854,-0.37930291425436735,0.22256197268143296,0.0968162901699543,-0.243808108381927,0.7265527951531112,0.6150552057661116,-0.7945436746813357,0.30187953682616353,-0.20168638182803988,0.6608465663157403,0.5877355705015361,-0.4243920142762363,-0.6672523068264127,-0.4558314294554293,0.2395175453275442,0.11175748612731695,-0.2965627792291343,0.33788833441212773,0.6241961088962853,-0.8176227970980108,0.7462249412201345,-0.4694734695367515,0.4837652062997222,0.0231914259493351,0.6205073148012161,0.13794016651809216,0.6063002571463585,-0.14812868926674128,0.9327242719009519,0.5979767525568604,0.6090039727278054,0.5904637901112437,-0.5070322556421161,0.43619935121387243,-0.8585635628551245,-0.5065078190527856,-0.7616538908332586,-0.7169406362809241,0.8206952107138932,0.17492348281666636,-0.044607022777199745,-0.8338671717792749,-0.5549460230395198,0.6936374683864415,-0.3261073804460466,0.9087559315375984,0.3483480499126017,0.973859241232276,0.6734398086555302,0.7339630317874253,-0.6725023011676967,0.3536668526940048,0.7596703986637294,-0.41284090280532837,-0.7020508912391961,-0.015531711280345917,0.02713171672075987,-0.9089160929434001,-0.42041645804420114,-0.6919266795739532,-0.24111671932041645,0.693317411467433,0.25601619062945247,0.7994001400656998,0.4239751808345318,0.32918368792161345,-0.10658485116437078,-0.22257623448967934,0.015214554499834776,0.7998905978165567,-0.41973331291228533,0.45912853814661503,0.47400095453485847,0.4906589868478477,0.1755751990713179,0.5023004142567515,0.7109991335310042,-0.09711086237803102,-0.8806774471886456,0.5738552585244179,-0.5224121152423322,-0.9056431786157191,0.6253702053800225,-0.29842387745156884,-0.6081027225591242,-0.7786981901153922,-0.3266658540815115,0.23709615878760815,-0.6352736046537757,0.8078732807189226,-0.780433242674917,0.10411889292299747,-0.9896419630385935,-0.03769328771159053,-0.15983548993244767,0.8153832261450589,-0.041163989808410406,0.14128716057166457,0.9010634711012244,0.49448289908468723,0.2271082354709506,-0.1841790871694684,-0.5474281972274184,0.00038759224116802216,-0.8215854051522911,0.15136466175317764,0.20593987731263041,0.2646551076322794,0.13515185378491879,-0.7789267105981708,-0.7985517950728536,-0.3652747292071581,0.858794576022774,-0.07260479312390089,0.7532948441803455,-0.35178484255447984,0.6923127230256796,0.15865760995075107,0.6756565519608557,-0.6823435891419649,0.22634980687871575,0.6894183051772416,-0.3161625685170293,-0.29494789289310575,-0.5370688852854073,-0.308572618290782,-0.797869089525193,-0.17711310414597392,0.581450093537569,0.03806953597813845,0.36687718518078327,0.3429665891453624,-0.9542676899582148,-0.7540927468799055,0.6910823746584356,-0.5661038383841515,-0.944962237495929,-0.15628483844920993,-0.9651640490628779,0.4500576825812459,-0.3069520010612905,0.5661793565377593,-0.0840391586534679,0.7208197009749711,0.14553088834509254,0.3519004452973604,-0.431315706577152,-0.07169305346906185,0.9224334196187556,-0.98537861648947,0.7522803470492363,0.2744089141488075,0.7253603264689445,0.4418182438239455,0.9286372782662511,-0.07299120025709271,-0.7855020859278738,0.3812038851901889,0.2128423168323934,-0.1476365472190082,0.8716513938270509,-0.7907425658777356,-0.5333508062176406,0.6144343200139701,0.35847684228792787,-0.6546603059396148,-0.6553318002261221,-0.4205900505185127,-0.22795811342075467,-0.7128323465585709,0.9268084191717207,0.9455253393389285,0.6997378622181714,0.7931024339050055,0.23789779748767614,-0.09689412033185363,-0.2496993262320757,-0.4070377917960286,0.716733698733151,-0.1717971139587462,0.8200819259509444,-0.9890475189313293,-0.12512821145355701,0.7332679135724902,-0.9436818948015571,0.5422935453243554,0.7500847992487252,-0.042161892633885145,0.007073261309415102,-0.6357370396144688,-0.7827485944144428,0.5609100926667452,-0.14733237773180008,-0.014101351145654917,-0.9896309413015842,0.8187766619957983,0.7237535058520734,0.6078767557628453,-0.8385938699357212,-0.44831261597573757,-0.29065553937107325,-0.7028446812182665,0.8675679075531662,0.8538842885755002,-0.3665706543251872,0.09042814746499062,0.09086750168353319,-0.2530034212395549,-0.768328026868403,-0.007605245802551508,-0.2451688013970852,-0.47461483301594853,-0.17339875223115087,-0.5259526423178613,0.8288021641783416,0.5323995314538479,-0.9586226190440357,-0.4733916465193033,-0.05486415093764663,-0.960169019177556,0.03243087464943528,0.2345329881645739,0.11302483221516013,0.4416450881399214,-0.17895475821569562,0.2935071433894336,-0.27916470915079117,-0.10642583668231964,-0.03322225296869874,-0.8480122261680663,0.43548311945050955,-4.539592191576958e-05,-0.8183479090221226,-0.004502200521528721,-0.2679622280411422,0.6814086460508406,-0.4533264492638409,-0.2231624824926257,-0.7143440991640091,-0.7319684950634837,0.8325892663560808,-0.5267531257122755,0.9367939964868128,0.07028276938945055,0.7383072422817349,0.7168125938624144,-0.06047585792839527,0.2870183801278472,-0.6829896615818143,-0.44337555347010493,0.12088888743892312,-0.6553347767330706,0.997845231089741,-0.39230982679873705,-0.3513795966282487,-0.5985792903229594,0.15977955283597112,-0.3783040144480765,0.5141492951661348,0.3452648976817727,-0.7980299331247807,-0.7514516646042466,0.6528423321433365,-0.5938212564215064,0.30894453497603536,-0.7673241109587252,-0.6874603871256113,-0.2925919541157782,0.7090085502713919,0.775294341146946,-0.7228756775148213,-0.5275907875038683,0.6309598279185593,0.4141352865844965,0.15324808936566114,-0.5717476294375956,0.554229499772191,-0.5371957905590534,-0.882983900140971,0.8792990096844733,0.03814292931929231,-0.029942845925688744,0.5295902891084552,0.14880575938150287,-0.002429249230772257,0.5196593604050577,-0.5592705975286663,-0.5147367650642991,-0.07961782533675432,0.32379327388480306,0.10834994306787848,0.6958525730296969,0.2978152954019606,-0.8331477516330779,0.004539704415947199,-0.7047632061876357,0.18298287549987435,0.07671163557097316,-0.29552637692540884,-0.7627051244489849,-0.12083960045129061,0.8925501024350524,0.4169223112985492,0.8668591361492872,-0.2254891418851912,-0.24163870932534337,-0.325994526501745,-0.23047890793532133,0.5937787094153464,-0.6149530694819987,-0.5201179287396371,0.49600772745907307,-0.2851015185005963,0.16589712677523494,0.45964561915025115,-0.34212583024054766,-0.8359968024305999,0.16425195522606373,0.04544946504756808,-0.13545163720846176,-0.6735380366444588,0.019483708310872316,0.7623271504417062,-0.08407051907852292,0.6603744360618293,0.9624496423639357,0.36266478756442666,0.29660765174776316,0.6561261992901564,0.741329391952604,-0.022882618941366673,-0.46467290446162224,-0.18800641130656004,-0.3384151575155556,-0.38387634651735425,-0.601153552532196,0.9744815034791827,-0.7805175394751132,0.8993852506391704,-0.5254959333688021,-0.2456713654100895,0.4186543021351099,0.5623950008302927,0.1449204129166901,0.4167009242810309,0.12167979404330254,-0.935680728405714,-0.19010136974975467,-0.7183899963274598,-0.2404201216995716,-0.6175511847250164,-0.38722096383571625,0.54455725569278,0.9035397325642407,0.9563041962683201,0.8535077162086964,-0.10712607251480222,0.7209274163469672,0.6753225293941796,-0.16036951122805476,0.9178380980156362,-0.7736323913559318,0.3286170968785882,0.36062044464051723,-0.3198883095756173,-0.264629184268415,-0.3701106905937195,-0.20129636954516172,0.32039205031469464,-0.1934430254623294,0.7500286241993308,-0.7691993718035519,-0.6872411551885307,-0.10068275453522801,0.6425068094395101,0.2128143929876387,-0.27820303477346897,0.7867168704979122,0.16006333474069834,-0.4650901798158884,0.20208749640733004,-0.03997476818040013,0.6526944870129228,0.5709302481263876,-0.353170202113688,-0.03678684076294303,-0.6555297570303082,-0.2687485823407769,0.9808803470805287,-0.5901051508262753,-0.21590731386095285,-0.7044996153563261,-0.3711427375674248,0.27524024760350585,-0.1586131970398128,0.4069679584354162,0.26192442839965224,0.059366585686802864,-0.44976453436538577,-0.11361092748120427,0.39971487410366535,0.29120648512616754,0.8505336092785001,-0.217987684533,0.7143754977732897,-0.059735295828431845,-0.19708850467577577,-0.8062799195758998,0.12127846013754606,-0.0029528955928981304,0.768446437548846,-0.45393815729767084,0.03824502136558294,0.6120015266351402,0.99036869360134,0.6120092058554292,0.22537240711972117,0.32881130930036306,0.16336347442120314,0.4792183982208371,-0.2110212603583932,0.26750018633902073,0.4373565809801221,0.9566233120858669,-0.5460272394120693,0.17154205217957497,-0.29187563341110945,-0.020871303044259548,0.8589792912825942,-0.15113366581499577,0.6087720021605492,0.9248665347695351,-0.6222425983287394,0.9537423751316965,0.7852728185243905,0.21871582372114062,0.5841006976552308,-0.8714473941363394,0.01675857324153185,-0.34710391936823726,-0.5811226670630276,-0.298378799110651,-0.2857197695411742,-0.29033309035003185,-0.3879634547047317,-0.9567732024006546,-0.9787267413921654,-0.7279395586811006,0.40306616155430675,-0.13824892416596413,0.8942994750104845,0.010038453619927168,0.7501512244343758,-0.8403996983543038,0.2556104729883373,0.6802737880498171,-0.33176885824650526,-0.3777313488535583,0.522156564053148,0.7318526697345078,0.468070394359529,-0.4572127857245505,0.18319742335006595,0.2039997992105782,0.0782739776186645,-0.5605847034603357,-0.2671431456692517,0.8145720460452139,0.867397821508348,-0.02004700107499957,-0.7434567203745246,0.9083888055756688,0.6646487694233656,0.8436151347123086,0.18826812878251076,0.47982505103573203,-0.04306076467037201,0.004058256279677153,0.6319212568923831,0.3202322479337454,-0.6378661398775876,0.77231365442276,-0.9209818481467664,-0.9645761675201356,-0.8828354510478675,-0.6548519479110837,-0.4744730656966567,-0.7044737571850419,-0.8174727656878531,0.7429358847439289,0.9193381895311177,-0.12697709491476417,0.5431982325389981,-0.9928584741428494,0.3526606634259224,-0.16058608377352357,-0.5933407950215042,0.3722443077713251,0.25270406249910593,0.9813681286759675,0.06887728488072753,-0.03493543202057481,0.25279225734993815,0.4715493405237794,0.4780809278599918,-0.6723871412687004,-0.8141918941400945,0.38562667835503817,0.4192348485812545,-0.4739450472407043,-0.6025393465533853,-0.06852712156251073,-0.8053608806803823,-0.07356146723031998,-0.3388955877162516,0.8050746591761708,0.49508629832416773,-0.4316815589554608,-0.7162287156097591,-0.7421079995110631,0.3053565314039588,0.37669639056548476,0.1185972262173891,0.7997526857070625,-0.8367384593002498,0.5909854336641729,0.09168143756687641,-0.9040011381730437,0.07867848919704556,-0.7204388286918402,0.4594776639714837,-0.35098172817379236,0.04990790877491236,0.9055184437893331,0.4266295116394758,-0.4464746406301856,0.131495488807559,-0.031822338700294495,-0.37261366145685315,0.9142307373695076,-0.11099258018657565,-0.8156032930128276,-0.9137839386239648,0.7961424659006298,-0.2411970179527998,0.21154210809618235,-0.7880518138408661,-0.054728162474930286,0.18918746057897806,-0.13902415288612247,0.2853493723087013,0.6404262310825288,0.9346360540948808,-0.9277625889517367,0.0841116993688047,0.5428251042030752,-0.5887320032343268,0.3904562024399638,0.5320209125056863,-0.05148901278153062,0.18954131938517094,0.8056963374838233,0.17101830011233687,0.09345719264820218,0.7889352194033563,-0.4940254548564553,0.3513707113452256,0.65260054403916,0.9442495838738978,0.9560249182395637,0.6474676090292633,-0.4176206258125603,-0.48839307855814695,0.3035699068568647,0.7956269267015159,0.32591779017820954,0.9021530072204769,-0.4628434060141444,0.25507345516234636,0.42941017961129546,-0.8984527015127242,0.23730699717998505,0.2787597505375743,0.049412454944103956,0.942519897595048,0.7666049930267036,-0.7453413982875645,-0.42488263454288244,0.871074934490025,-0.4533015894703567,-0.5083895707502961,-0.2729875687509775,0.627449921797961,0.6414041500538588,-0.7766647972166538,0.3060093503445387,0.6754047516733408,-0.04286865144968033,0.8860548231750727,0.2934542866423726,-0.4874363662675023,0.7996751493774354,0.7830918179824948,-0.8243487440049648,-0.8316463837400079,-0.2179679125547409,0.021847743075340986,-0.69232984399423,-0.8564594448544085,-0.9695268524810672,-0.6998999430797994,-0.7375915222801268,-0.10553928837180138,-0.24524529930204153,-0.07060616929084063,-0.41878038085997105,0.14320482639595866,0.3557321815751493,-0.42209533601999283,-0.12069884920492768,-0.5807866351678967,0.15544546954333782,0.33553605526685715,0.3337229988537729,0.5786766447126865,-0.3385441219434142,-0.8898339802399278,-0.37912796158343554,0.7913265037350357,0.21493244031444192,0.9327713274396956,0.13013230869546533,0.3039097678847611,0.10374774364754558,0.742849662899971,-0.4094663909636438,-0.38337519532069564,-0.2601693938486278,-0.48153576208278537,0.29680547351017594,-0.1825468991883099,0.27690877951681614,-0.6905227890238166,-0.18109701899811625,0.463396486826241,0.13338814582675695,0.5792990429326892,0.19433268066495657,-0.028603512328118086,-0.9045362360775471,-0.5851515070535243,0.3088808795437217,0.8939433936029673,-0.9883600547909737,0.10648861061781645,0.3414988904260099,-0.7952533350326121,0.1926106410101056,-0.7625203710049391,-0.36142498161643744,0.1236157868988812,-0.12476189713925123,0.10027611814439297,0.5784121523611248,0.8587516602128744,-0.869417364243418,-0.12366783618927002,-0.8308024425059557,0.9746808758936822,-0.6435415791347623,-0.30048017855733633,-0.1453930581919849,-0.6193522694520652,0.2634779908694327,-0.5079779108054936,-0.05082658585160971,0.7331860675476491,-0.9957553646527231,-0.7817421490326524,0.5254143541678786,0.19818727718666196,0.031083361245691776,-0.8087966646999121,-0.09463792433962226,-0.23651315039023757,-0.9779712306335568,-0.21449788101017475,-0.6586692333221436,0.12940990133211017,-0.14924768498167396,0.01896422915160656,0.9109368114732206,0.8707139701582491,0.5451351306401193,-0.47986574470996857,0.3461442980915308,-0.7266085254959762,0.8494670679792762,-0.18145197723060846,0.9115905929356813,0.6925148130394518,0.8021930176764727,0.4932645605877042,0.3823604225181043,-0.03328894171863794,-0.5195641508325934,-0.6953362487256527,-0.5756458658725023,-0.3459758018143475,-0.6743788341991603,-0.6362007013522089,0.5802195249125361,-0.007506432477384806,0.41175380535423756,-0.11388930818066001,0.6493354220874608,0.45935603650286794,-0.0035308944061398506,0.893140368629247,0.9414731613360345,-0.5421139588579535,-0.5066295191645622,-0.07767297700047493,0.12362702144309878,0.5321432934142649,-0.5122174774296582,-0.4656404289416969,0.6347213918343186,0.11462451005354524,-0.051564343739300966,0.40328042209148407,-0.7520979787223041,0.3726175595074892,-0.09722339361906052,-0.30031103175133467,-0.7385786203667521,-0.30426985723897815,-0.7846330404281616,-0.8799672685563564,-0.9290224122814834,-0.4116395474411547,-0.34360744757577777,-0.0955105870962143,0.8617999656125903,-0.8457909803837538,-0.740021207369864,-0.6406896682456136,-0.2500306284055114,0.5520202196203172,0.15209673065692186,0.24295859038829803,0.17420514160767198,0.5338808754459023,0.45580054074525833,-0.28215654334053397,0.6315009640529752,-0.5833948417566717,-0.9043013146147132,0.3169604833237827,0.0005073146894574165,-0.4833967965096235,0.9459658898413181,0.911415261682123,-0.6910775559954345,0.5067694731988013,-0.09782066754996777,-0.4996268209069967,-0.32643707748502493,0.657031019218266,0.30912121618166566,0.05936032719910145,0.5314769283868372,0.5360980732366443,-0.9338271869346499,-0.4495712644420564,0.36693257046863437,-0.7310051363892853,0.30105107743293047,-0.8325319695286453,0.13995536463335156,-0.766378671862185,0.34052029019221663,0.5081469570286572,0.9450227911584079,0.6150036305189133,0.05611993372440338,-0.9308818778954446,0.5356197645887733,-0.980358743108809,0.5454537528567016,-0.6193771213293076,-0.26320905052125454,-0.802687814924866,0.6126418942585588,0.7213581423275173,0.6738545005209744,-0.3468269007280469,-0.41963769728317857,0.5076805879361928,-0.08649393450468779,0.8918180014006793,0.6272701127454638,0.8485054932534695,-0.6690300828777254,0.43141367100179195,-0.8212921400554478,0.9855785565450788,-0.6348776160739362,-0.6659933943301439,-0.34317188896238804,0.9725828389637172,-0.8479395573958755,0.26516731083393097,0.5415241904556751,0.7092334218323231,0.8321510232053697,0.272304174490273,-0.503954672254622,0.5854385276325047,-0.17728911014273763,-0.4702457208186388,-0.49646625109016895,0.23785878019407392,0.7345171286724508,-0.32380724651739,-0.21466251322999597,0.7586400751024485,0.46952736005187035,-0.4348212378099561,0.07367628300562501,-0.8236424992792308,0.3711051815189421,0.8819206785410643,-0.28958363458514214,-0.6846858649514616,-0.34325628681108356,0.626575542613864,-0.4369130185805261,-0.013025435619056225,-0.0007816213183104992,-0.06792276166379452,-0.07105232495814562,-0.6986323399469256,-0.503030089661479,0.1898050750605762,-0.8454451649449766,-0.7202603495679796,-0.2691465960815549,-0.6176564814522862,0.04524042131379247,-0.40659157698974013,0.7209065253846347,-0.11499443324282765,0.7638034988194704,0.8312281472608447,0.8832659367471933,-0.5450625815428793,-0.33641771599650383,0.36914477311074734,-0.730655562132597,0.6685891984961927,-0.36361351888626814,-0.8084178022108972,0.0864334050565958,-0.7788370992057025,-0.1343506001867354,-0.4918138771317899,0.6069187605753541,-0.46620484814047813,0.1587270232848823,0.2716334406286478,0.8609962342306972,0.7875414118170738,0.6962069068104029,-0.9168778117746115,-0.06316718459129333,0.12104924116283655,0.8086933004669845,0.12175042973831296,-0.2883292632177472,0.23767236527055502,0.24407552229240537,0.8732060813345015,0.8843104816041887,-0.4091375172138214,0.4302170998416841,-0.05763067910447717,-0.4318388644605875,0.22342685097828507,-0.14719608006998897,0.1369406683370471,-0.6937814732082188,0.057448651175946,0.46281242463737726,-0.6039563491940498,-0.9464374659582973,-0.020131013356149197,0.7086831582710147,-0.28369508078321815,-0.8110061567276716,-0.6722793891094625,0.7745163245126605,0.7462061177939177,-0.6252303752116859,-0.46983254002407193,0.5007275114767253,-0.22720916289836168,-0.8796737887896597,-0.6504935342818499,0.19474987406283617,0.5782686709426343,-0.0990598532371223,-0.4496675576083362,-0.42706397036090493,-0.07756478991359472,0.23501628916710615,0.9693317757919431,0.7835527407005429,0.5685389689169824,-0.9409232013858855,0.024364848155528307,0.19394601928070188,-0.8873407044447958,-0.03251649020239711,-0.40321556152775884,-0.4109346284531057,0.244557143189013,0.24488118011504412,0.39193332055583596,-0.16436155512928963,-0.3749483139254153,0.011526913847774267,0.9551677773706615,0.6064223456196487,-0.4349030116572976,0.9881801474839449,0.6873733722604811,0.49681510496884584,0.30124523397535086,0.6764472262002528,-0.18076627142727375,-0.1345956097356975,-0.1574475453235209,0.967990973033011,-0.8249516235664487,-0.7143606403842568,-0.19119316851720214,0.44354745373129845,-0.11321255518123507,-0.47736390633508563,-0.6403274228796363,0.5313779623247683,-0.6394297080114484,0.276498737744987,0.13550215866416693,-0.9099848768673837,0.3048059195280075,-0.2418451216071844,-0.8145031123422086,0.4517322489991784,-0.03960220282897353,0.4991209954023361,0.827023958787322,-0.9000557158142328,-0.03665961604565382,0.7938276776112616,-0.46452070912346244,-0.26062228437513113,0.5814334419555962,-0.2055152147077024,-0.4438950321637094,-0.1306287874467671,0.9368300284259021,0.7346178512088954,-0.2873743465170264,0.8501675566658378,0.12110218964517117,-0.2650726935826242,-0.8793571316637099,-0.5236877822317183,0.6646405183710158,0.9183718748390675,-0.9180414476431906,0.7366831516847014,0.26206136075779796,0.24528312869369984,0.9642948475666344,-0.12158747529610991,0.6377430940046906,0.1269410690292716,0.6935466481372714,0.9482707739807665,-0.16932818572968245,-0.4268527873791754,0.017408474814146757,-0.6554481438361108,-0.4272330147214234,-0.03388085961341858,0.684473960660398,0.5169969988055527,-0.07961732381954789,0.04145468259230256,0.9098773607984185,0.9584396248683333,0.591447688639164,-0.061231604777276516,-0.6414614035747945,0.2991781458258629,0.27009393833577633,0.949557937681675,0.19518342055380344,0.9717010790482163,-0.25586991803720593,-0.5648015988990664,0.24070256436243653,-0.7961739059537649,-0.020998266991227865,0.32175750797614455,-0.2132796524092555,0.15398957952857018,0.8516271342523396,-0.305881985463202,-0.44096265407279134,0.007419984322041273,0.11432782374322414,-0.6536108371801674,-0.018342691008001566,0.6556244101375341,-0.035317440051585436,-0.2148744547739625,0.6761317872442305,-0.4984233332797885,0.43484886223450303,-0.4987440169788897,-0.8452502139844,-0.17294370010495186,-0.7329208888113499,-0.6932643693871796,-0.059373215306550264,-0.8754790364764631,0.8806065144017339,-0.326581203378737,0.40418034233152866,-0.5139137781225145,-0.9871156625449657,-0.6044987821951509,0.14308954449370503,0.591032755561173,-0.3155508325435221,-0.6995175215415657,-0.6043258090503514,0.8880157079547644,-0.7458303701132536,-0.8020827854052186,0.36726989410817623,-0.6024165558628738,0.39291898207738996,0.3526116982102394,-0.8210603133775294,0.6087411376647651,0.1343820681795478,0.5104928999207914,0.21646650368347764,-0.3632037085480988,0.7372320387512445,-0.18732002517208457,-0.47266894998028874,0.7161877946928144,0.49609520891681314,-0.5936830244027078,0.2578150178305805,-0.30289430543780327,-0.6476273015141487,-0.4806308983825147,0.8051173202693462,-0.3973909867927432,0.33554132049903274,0.11040547164157033,0.8479172345250845,0.8561757020652294,0.11596220405772328,0.08896338939666748,-0.5870979032479227,0.06833030097186565,0.6326775453053415,0.021569679491221905,-0.6667533721774817,0.013299047015607357,-0.47784206736832857,0.18087139492854476,-0.4450586047023535,-0.5293615651316941,-0.14354876708239317,0.49135443940758705,-0.2506519458256662,-0.6726020737551153,0.8828863361850381,0.9360736291855574,-0.924307678360492,0.04371348908171058,0.2854850539006293,-0.5103054167702794,0.2912054262124002,0.4803964295424521,0.28267707815393806,-0.1623234236612916,0.39310643961653113,-0.38152961805462837,-0.8821599259972572,-0.3162134294398129,0.41272867284715176,0.9008668595924973,0.797874036245048,-0.40342946257442236,0.2679664334282279,0.37088997615501285,0.017463712953031063,0.003287525847554207,0.5767104593105614,-0.42147597717121243,-0.7395487995818257,-0.8936517350375652,-0.3160938424989581,-0.6062153927050531,-0.5016172230243683,-0.9143498106859624,0.02087811939418316,-0.49854411045089364,-0.5873048696666956,-0.40444581070914865,-0.5153721645474434,0.22772542061284184,-0.3890659920871258,-0.7054174565710127,0.4549636929295957,-0.25650648726150393,-0.8778833262622356,-0.5673514972440898,0.96538021042943,-0.6268038400448859,-0.7060315432026982,-0.574712788220495,0.20951085723936558,0.2619786588475108,-0.9254418225027621,-0.7617276227101684,-0.9319551102817059,-0.8469037362374365,-0.4568241611123085,0.16513428185135126,0.9946382916532457,0.8886398416943848,0.8807902564294636,0.22814850881695747,-0.4753414453007281,0.7155428840778768,0.7532877568155527,-0.1183137889020145,0.6851852033287287,0.4294223627075553,0.9627741193398833,-0.8305621067993343,-0.17797806486487389,-0.6632785387337208,0.5204511443153024,0.14597373036667705,-0.6655734810046852,-0.5888502732850611,-0.9961039554327726,-0.18237427109852433,-0.2893650643527508,-0.7606067103333771,0.833813595585525,0.5184251302853227,-0.3098215297795832,-0.9045305801555514,-0.09254092862829566,0.5038766013458371,0.6132706492207944,0.4332713894546032,0.4111925410106778,0.3997570308856666,0.7688508392311633,0.7360748890787363,0.19680666457861662,0.8781606769189239,-0.7236856655217707,-0.5887334048748016,0.5780180739238858,-0.21321564307436347,0.14348304783925414,-0.32331523997709155,0.21644360991194844,-0.6138560585677624,0.7189156897366047,-0.7428925936110318,-0.5267157987691462,-0.20042755734175444,-0.18524040654301643,-0.2879333137534559,-0.8575758589431643,0.7768141576088965,0.8035638118162751,0.3486110824160278,0.2769788126461208,-0.03742791339755058,0.8474231050349772,-0.470854549203068,-0.9998258375562727,-0.10367726534605026,0.8563937493599951,0.07329932600259781,0.1613653958775103,-0.36870747711509466,0.4704775237478316,0.7630484183318913,0.27835771907120943,-0.7797487825155258,-0.9673794927075505,-0.9817199097014964,0.4041636544279754,0.9449816117994487,0.3560165246017277,0.5030327350832522,-0.7651275051757693,0.42712643649429083,0.959260041359812,0.014574036467820406,-0.6364403357729316,0.5361547260545194,0.09945799922570586,-0.0445989896543324,-0.37911701621487737,-0.6849116869270802,-0.46593718277290463,0.7509084204211831,0.1537537071853876,0.25759623339399695,-0.5008084941655397,0.870755122974515,-0.99604561785236,-0.8564639058895409,-0.1306777000427246,-0.13066664384678006,0.4933511698618531,-0.7942369617521763,-0.8136675236746669,0.8802044321782887,-0.8056874549947679,-0.5711678904481232,0.5535337761975825,0.21064222510904074,-0.09769062139093876,0.8804364171810448,-0.5875756060704589,-0.6003403854556382,0.3295100894756615,-0.02201884938403964,-0.6706736399792135,0.4559775535017252,0.3536787489429116,-0.3752043368294835,-0.8501481465063989,-0.27173519413918257,-0.7370130717754364,-0.6753949681296945,-0.21888237027451396,0.284524692222476,0.9627881161868572,-0.6799406600184739,0.39473537914454937,-0.9279515147209167,0.8877215753309429,0.35704794665798545,0.2094188118353486,-0.6379816951230168,-0.31178735941648483,-0.7399455416016281,0.6922787907533348,0.3210738282650709,0.1805025958456099,0.6448148284107447,-0.5996757866814733,0.46704309806227684,0.11629157606512308,0.2386417519301176,0.05442381789907813,-0.9316999767906964,0.3835761141963303,0.9514575051143765,-0.9567371453158557,0.7010707147419453,-0.38174444111064076,-0.29520977288484573,0.9242363274097443,-0.4436988700181246,0.8273983281105757,-0.8106013182550669,-0.5902743781916797,-0.2695784755051136,0.5922762523405254,-0.5091933566145599,0.1431813109666109,0.558511579874903,-0.2706993483006954,0.6282170442864299,-0.5874650212936103,-0.26355169247835875,-0.9605448981747031,-0.42916721338406205,-0.6333707673475146,-0.8676983444020152,-0.1814382877200842,-0.1292491746135056,0.42342864628881216,0.08283069916069508,0.9389567729085684,0.4378817458637059,-0.9317313581705093,-0.5387711161747575,0.2768248268403113,0.5894732819870114,-0.5298129701986909,-0.6037050439044833,0.8276159246452153,-0.5392327019944787,0.7133407327346504,-0.8371937959454954,-0.6046900865621865,0.3409272008575499,-0.16770540084689856,0.707365551032126,0.9102426231838763,-0.7184799937531352,-0.4087169519625604,0.002619972452521324,-0.493750574067235,-0.7464359477162361,0.26671840623021126,0.7380600851029158,0.7244997466914356,0.9500035867094994,-0.2713549444451928,0.7748441561125219,-0.07210249826312065,0.19066059542819858,-0.9103572615422308,0.037113580852746964,-0.25215472280979156,-0.3054693159647286,0.780994167085737,0.4587565194815397,0.7262174352072179,-0.304303037468344,-0.6074337875470519,0.3225297681055963,0.6065693870186806,-0.2584835598245263,-0.58631552150473,0.6324606379494071,-0.3758702012710273,-0.46530094742774963,-0.20900693768635392,0.42639546655118465,-0.3198935310356319,0.0038392399437725544,-0.2304202327504754,-0.0071498192846775055,-0.7630829452537,-0.4305465705692768,-0.09911823086440563,-0.6631002542562783,-0.235403205268085,-0.06622390449047089,-0.07745863823220134,-0.13023465778678656,-0.3875609841197729,0.019542484544217587,0.00470364885404706,-0.6461059115827084,-0.18464523693546653,0.13826498109847307,0.20095398416742682,0.3564377995207906,0.21814047498628497,0.4749010931700468,-0.2950302786193788,-0.6292583476752043,-0.7140529779717326,0.32158903358504176,-0.031777250580489635,0.03513522958382964,0.6668785917572677,-0.6572228474542499,0.9154527583159506,-0.5058328127488494,0.44747197441756725,0.07678311178460717,0.06095592770725489,-0.15259818080812693,0.7049777717329562,0.7047207085415721,0.4935403149574995,-0.1912978906184435,0.7829872644506395,-0.7899041646160185,-0.13630684185773134,-0.6625969395972788,0.7057796311564744,-0.5464020045474172,0.6739008002914488,0.7882027225568891,0.4612554479390383,0.47920143930241466,-0.059786051511764526,-0.30040947860106826,-0.029425805900245905,-0.8703970178030431,0.2680794484913349,-0.8545561833307147,-0.5687423381023109,0.36101207323372364,0.33315411349758506,-0.6232188893482089,0.28701335145160556,-0.15675577567890286,0.8644020445644855,-0.10518359486013651,-0.793277648743242,0.2416644194163382,-0.8525888165459037,0.07826576987281442,0.45962464064359665,-0.35263303481042385,-0.14015966281294823,-0.8060956234112382,-0.8869031025096774,-0.39991598995402455,0.7200627834536135,-0.8343869000673294,-0.4036673055961728,-0.21915290178731084,-0.600039828568697,0.27709014900028706,-0.6144524193368852,0.09388417843729258,0.5777644547633827,0.37022444512695074,0.9640898224897683,0.4104328788816929,-0.1341430894099176,0.9335142793133855,-0.7943416470661759,0.46249392442405224,0.6291667027398944,0.5098296729847789,-0.29623225750401616,-0.8243033029139042,-0.22857851069420576,-0.1226739133708179,0.5369550068862736,-0.8799325684085488,-0.49883668310940266,-0.8168943454511464,0.31481953896582127,0.20676946453750134,-0.6302965264767408,-0.15413212543353438,0.8611787324771285,-0.8291215375065804,-0.5467563769780099,-0.043173675425350666,-0.6506149675697088,-0.5413911729119718,0.1904502180404961,-0.8033475312404335,0.6785149518400431,-0.034160647075623274,0.6891919523477554,0.3359359735623002,-0.39025782980024815,-0.016545480117201805,0.3737432402558625,0.28632352501153946,0.17986843548715115,0.021283496636897326,0.6271440498530865,-0.8753656595945358,0.31489488761872053,-0.5878780703060329,-0.05990827875211835,0.7006946168839931,0.16370686888694763,0.78467175969854,-0.8149953782558441,0.6090308493003249,0.9370345724746585,-0.18877978809177876,0.4466344271786511,-0.1975340568460524,-0.530728243291378,0.4598019067198038,0.9089401406235993,-0.9589284034445882,0.18208979768678546,0.42469631461426616,-0.8107832712121308,-0.9318320588208735,0.3123578606173396,-0.5175239071249962,0.9946062858216465,0.957001285161823,0.45241956738755107,-0.5963044175878167,0.30070598144084215,0.3840748383663595,-0.20787094486877322,0.1274461569264531,-0.6608429839834571,-0.4527217196300626,-0.08355719689279795,0.31023133639246225,-0.9678261675871909,-0.030018198769539595,0.2728757341392338,-0.5254091061651707,-0.24213163182139397,0.22227969439700246,0.6811985969543457,0.5772568504326046,-0.24145873496308923,-0.9639706732705235,0.5134056364186108,0.11750388983637094,0.8128272644244134,-0.0016257120296359062,0.5369265214540064,0.2699323049746454,0.60954081825912,0.21629004320129752,-0.38072477793321013,0.03134846827015281,-0.7424008217640221,0.8732992550358176,0.43998156813904643,0.072259153239429,0.4471440436318517,0.24545591417700052,0.37364482367411256,0.5973227112554014,-0.33012235444039106,-0.03774149063974619,-0.043838716577738523,0.637926010414958,0.38691150210797787,0.32793979067355394,0.5678528682328761,0.26310715870931745,0.8795309807173908,0.5104698608629405,0.19283621478825808,0.19357465533539653,0.6694053765386343,0.15702792769297957,-0.30225867545232177,0.23014493100345135,0.8686914001591504,-0.2945499373599887,-0.7214169572107494,0.05750271026045084,-0.3140146895311773,-0.37977886758744717,-0.3738516876474023,-0.7716432074084878,0.9226372237317264,0.04975446127355099,-0.4554619467817247,-0.3593330727890134,-0.8094806000590324,-0.5394639489240944,-0.08802350284531713,0.39490958442911506,0.6935708182863891,-0.0022608856670558453,0.5776364025659859,0.9857594934292138,-0.9029326485469937,-0.46731596952304244,-0.3567879996262491,-0.005141342990100384,0.40390281239524484,-0.11748714372515678,0.965636492241174,0.7547352998517454,-0.4709054734557867,-0.7175512961111963,-0.015883468557149172,-0.7603419926017523,-0.25123071670532227,0.6695450232364237,0.8712005116976798,0.81346490746364,-0.6947001502849162,-0.20188591303303838,-0.5604818859137595,-0.9132989109493792,0.0818220591172576,-0.5221524308435619,-0.24662135262042284,-0.7589159910567105,-0.4405920747667551,0.9026957922615111,0.5201012194156647,-0.5629020207561553,-0.8807008573785424,-0.8016452700830996,-0.15059405332431197,0.16404620604589581,-0.16310968482866883,0.948966620489955,-0.17087086522951722,-0.8768980274908245,0.2840684591792524,-0.19098243536427617,0.1678049499168992,0.3369791507720947,-0.031003566458821297,0.06592837208881974,-0.5279743513092399,-0.4830890903249383,-0.2156208623200655,-0.6223431061953306,-0.5145185654982924,-0.6278415452688932,-0.0699399821460247,0.7941681467927992,-0.8057105015031993,-0.5492883529514074,-0.6113257855176926,-0.16180263692513108,-0.07643325859680772,0.9550160858780146,0.358649845700711,0.8018783684819937,0.8134120395407081,0.05190007807686925,-0.028363078366965055,-0.8489078339189291,-0.3906144769862294,0.029961503110826015,-0.649015050381422,0.4126593223772943,-0.5571127100847661,-0.9229569952003658,-0.8832866069860756,0.7664201171137393,0.5588033804669976,0.6748735303990543,-0.445206546690315,-0.3495359057560563,-0.3512445976957679,0.3551716608926654,0.4667710857465863,0.674685440491885,-0.7529734317213297,0.045747676864266396,0.6046639396809042,-0.3369993045926094,-0.4653395116329193,-0.5375525024719536,0.4497894002124667,-0.12040530703961849,0.3256862065754831,0.35929844761267304,0.9172192388214171,-0.6812509405426681,-0.05561262043192983,-0.5657817325554788,0.9105480290018022,0.1790568777360022,0.4958786382339895,-0.9165496532805264,-0.8196895942091942,-0.4914416582323611,-0.4502043663524091,-0.5830341554246843,-0.9606332364492118,-0.3395939930342138,-0.2638826696202159,-0.31598653364926577,0.5430488246493042,0.022674873005598783,-0.7727041617035866,0.4961133822798729,0.8111109142191708,0.4235450327396393,0.589431393891573,0.3887849021703005,-0.0841804388910532,0.3484465042129159,-0.457094962708652,-0.012825315352529287,0.4068270684219897,-0.05106267565861344,0.05359859112650156,0.8230620403774083,0.041355041321367025,0.036585371010005474,0.4802865171805024,0.8074153866618872,-0.4577815239317715,0.9206891851499677,0.6728117428719997,0.504271402489394,-0.6763316439464688,-0.754949068184942,0.2464649835601449,0.055547598749399185,-0.575312215834856,0.7454581432975829,0.6266304752789438,-0.7731171487830579,-0.49681692384183407,-0.6281351302750409,-0.47629328025504947,-0.2904721861705184,0.8298814571462572,-0.1188706043176353,-0.09175652358680964,0.9777748407796025,0.44933617394417524,0.5664052260108292,0.28461946500465274,0.410375221632421,-0.34631938487291336,0.2676784722134471,0.07322729798033834,0.7015546420589089,-0.47542962012812495,-0.01327122701331973,0.02085859188809991,-0.2853896077722311,-0.5712577742524445,0.12122887885197997,-0.03957194834947586,0.5195079655386508,-0.12351214466616511,0.5113084889017045,-0.3182159522548318,-0.46521429531276226,0.28558600321412086,0.8201492861844599,-0.6667452151887119,0.1663013775832951,0.7113397452048957,-0.6484650345519185,0.8248309078626335,-0.18121775425970554,-0.6013949252665043,-0.6888868529349566,0.16489863023161888,0.950605845078826,0.33311752462759614,0.9252551756799221,-0.9070177935063839,-0.8571600220166147,-0.7570141823962331,-0.8857122343033552,0.7648751148954034,-0.5191520391963422,0.9718465907499194,-0.44148400193080306,0.6654522125609219,-0.23829755559563637,0.9739228435792029,0.7332281367853284,0.484225916210562,0.5136425420641899,-0.11816015839576721,0.47038657031953335,0.7025833809748292,-0.9212036957032979,0.6761213885620236,0.738976142834872,0.4021785780787468,0.8820280567742884,0.8106152154505253,-0.6575559005141258,-0.4617449538782239,0.9981063725426793,-0.3476388016715646,-0.5870795366354287,0.8287985073402524,0.7090640868991613,-0.7868491294793785,0.039181257132440805,0.671230741776526,-0.19425755366683006,-0.6779683805070817,-0.013585967943072319,0.34171805530786514,-0.935269869863987,0.2566233077086508,-0.262888606172055,-0.2694143708795309,-0.8082216489128768,0.8334180926904082,-0.3331110873259604,0.6389206950552762,-0.077406189404428,0.8007414843887091,-0.3382618264295161,-0.9379070573486388,-0.5084451590664685,-0.9848728193901479,-0.3809380470775068,0.34316599927842617,-0.30597675824537873,0.24263262748718262,0.0958316745236516,0.9480188279412687,0.06550921872258186,-0.9496071003377438,-0.09693310502916574,0.07745202910155058,0.18296396918594837,0.4557067374698818,0.009649207349866629,-0.8412344893440604,-0.028432435356080532,-0.4100966867990792,0.08880067616701126,0.38129248656332493,0.05575694143772125,0.3394126142375171,0.5296885427087545,-0.46158181969076395,0.9303243043832481,3.8749538362026215e-05,0.22216921159997582,0.024252756964415312,-0.0976216564886272,-0.9849944799207151,-0.8953501945361495,0.2588676605373621,-0.3374585513956845,0.7440710454247892,-0.4473227374255657,-0.7238007136620581,0.6275351336225867,0.5382680273614824,-0.6585455033928156,-0.20733776269480586,0.11304704193025827,0.9362463937141001,-0.5762662119232118,-0.5710905990563333,0.8416367154568434,0.974020438734442,-0.14022929267957807,-0.4621119201183319,0.5384568385779858,-0.033439924474805593,-0.6170516088604927,0.9653425686992705,0.4658770081587136,0.6990253091789782,0.2740765898488462,0.50533118378371,-0.8306954703293741,0.30022441130131483,-0.9277810109779239,0.6185778984799981,0.7649357598274946,-0.2903908444568515,0.6412068596109748,0.20890192361548543,-0.7242327556014061,0.7598455362021923,-0.8479575291275978,0.009807389695197344,0.21542026847600937,-0.30958874989300966,-0.917209330946207,0.07869870029389858,-0.5417453153058887,0.38792312797158957,0.7954238238744438,0.19614978786557913,0.20752522023394704,0.7430528360418975,-0.29229915235191584,-0.4102817256934941,-0.7809500014409423,-0.8396382075734437,-0.038555918261408806,0.33439645543694496,0.8403315129689872,0.8111212938092649,-0.7100380565971136,-0.9050462641753256,-0.3033172027207911,0.5056740865111351,0.670571081340313,-0.9541999609209597,0.6060018949210644,-0.3948017191141844,-0.6291125188581645,-0.579376379493624,-0.824894577730447,0.039516163524240255,0.90782441617921,0.4243623181246221,-0.19146972009912133,-0.40888070221990347,0.946875711902976,-0.6238161656074226,-0.9744672696106136,-0.5015660440549254,0.5718893082812428,-0.30810932628810406,0.9111745748668909,0.18231137096881866,0.9800273268483579,-0.34628815250471234,-0.27021235320717096,0.21339450823143125,-0.60309351189062,0.5207158881239593,0.7719256007112563,-0.40824259258806705,0.05494636995717883,0.5404286119155586,0.738793938420713,0.6669730730354786,-0.46476377500221133,0.4729460487142205,0.15894797025248408,-0.35051101399585605,0.8650733563117683,-0.015030881855636835,-0.914791511837393,0.40829468378797174,0.05870264954864979,-0.33055990003049374,-0.5994161204434931,-0.47566592460498214,-0.24198367772623897,0.2292239861562848,0.1945984996855259,-0.3297525942325592,-0.1790330745279789,0.6764471810311079,-0.9302620287053287,0.6781395436264575,0.361379093490541,-0.577084073331207,-0.8502301909029484,0.7972734645009041,0.39841611543670297,-0.8057103357277811,-0.22480297042056918,0.7441301583312452,-0.5974260591901839,0.7207204243168235,-0.18684084713459015,-0.47360103065147996,0.16449118871241808,0.46254738699644804,0.22251045983284712,0.7231275807134807,0.2088572750799358,0.8194692959077656,-0.6759272762574255,0.773638385348022,-0.36313852621242404,0.6208321829326451,-0.4590315795503557,0.8989406046457589,0.6183576532639563,0.9456122647970915,0.5344711346551776,-0.4355619582347572,0.13001237716525793,-0.13560292590409517,0.31034664483740926,-0.14168424298986793,-0.4201436713337898,0.32695416267961264,-0.8424067790620029,-0.31468774331733584,0.6123135597445071,-0.9164607278071344,0.4300416964106262,0.36212076526135206,0.38846257142722607,0.12082204036414623,0.06382909836247563,-0.19786059763282537,-0.48327891808003187,-0.4309420771896839,-0.9180365041829646,0.8729401612654328,-0.7830904261209071,0.8875650153495371,-0.3950501470826566,-0.6702309288084507,0.1936125922948122,0.7492293412797153,-0.6912749782204628,-0.4568181117065251,-0.5079962518066168,-0.16175538953393698,0.18433075724169612,0.40216950699687004,-0.5735124731436372,-0.468971102964133,0.9110851781442761,-0.20596765726804733,-0.536268591415137,0.4239014396443963,0.15635051997378469,0.23822100926190615,-0.3082369021140039,-0.46638699900358915,0.9425054327584803,-0.5600239410996437,-0.6623571906238794,-0.7974638170562685,-0.5053240400739014,0.9236198300495744,0.8794550183229148,-0.15464440546929836,0.6126209143549204,-0.15871170489117503,0.7043938511051238,-0.8653754000551999,-0.10100634815171361,0.5677913604304194,-0.3146615265868604,0.8915675608441234,-0.2811361812055111,-0.17188845202326775,0.9542522244155407,0.5663878400810063,0.20791588770225644,0.7624579826369882,0.7347166980616748,0.4615721539594233,-0.2004653513431549,-0.17195979366078973,-0.7693883026950061,-0.9357786066830158,0.35073033906519413,-0.4969562473706901,-0.772351810708642,0.3786371764726937,0.5068849250674248,0.6141827451065183,-0.07332411594688892,0.23020224599167705,0.019733971916139126,0.12415538541972637,-0.29624809976667166,0.059756945353001356,-0.20599015429615974,0.7858004658482969,-0.3106069122441113,0.01835355907678604,0.5685005378909409,0.24846520135179162,-0.7174416915513575,0.31603625090792775,-0.3854889031499624,-0.07547187013551593,0.6277939467690885,0.6363342627882957,0.9200210771523416,-0.5321734552271664,-0.9261565743945539,-0.8515022275969386,-0.4722789600491524,-0.4353494057431817,-0.1323246154934168,-0.5575779513455927,0.2277056062594056,-0.04965134151279926,-0.37081280956044793,0.7706835367716849,0.4863651627674699,-0.2645184895955026,-0.10166904330253601,-0.9341127187944949,-0.017302814405411482,-0.045172184240072966,0.9246714813634753,0.35663013672456145,0.42548366310074925,-0.8008250477723777,-0.5980121186003089,0.8094635200686753,0.47084456449374557,0.8255949802696705,0.49160595471039414,0.4705388336442411,-0.7443074490875006,0.9566913987509906,0.48768939124420285,0.7449950166046619,0.9180022277869284,-0.8318933639675379,-0.19853792199864984,0.3865154809318483,0.22271178662776947,0.48351753782480955,0.11649592639878392,-0.6279118163511157,0.28954510297626257,-0.9511905149556696,-0.6346845016814768,-0.1530340830795467,-0.12935221381485462,0.09419728070497513,0.5401065959595144,0.9191107512451708,-0.08051460888236761,-0.5961847575381398,0.46857097977772355,-0.9814074099995196,-0.6609738091938198,-0.8355730078183115,0.1539000947959721,0.09068825840950012,-0.39590514032170177,0.6564317154698074,-0.2437136024236679,-0.1564452238380909,0.7988010453991592,0.6757972701452672,0.4005952449515462,-0.23670509457588196,0.5184028777293861,0.9414094313979149,0.9943743138574064,0.6441192599013448,-0.8360324916429818,-0.10682893497869372,-0.029322249814867973,-0.8825261993333697,-0.6276324475184083,-0.6423780801706016,-0.36423142440617085,-0.06015807017683983,0.9004517807625234,-0.8693931461311877,-0.65925800986588,-0.8652472840622067,-0.926685250364244,-0.1712778164073825,-0.5642578206025064,-0.8501537018455565,0.365340338088572,0.9926169319078326,0.7260053711943328,-0.2144060325808823,0.8798169000074267,-0.5874154013581574,0.6233092271722853,0.29758927738294005,-0.16998699773103,-0.9098532348871231,0.3095452068373561,0.5554189765825868,-0.36836251616477966,0.029049639590084553,0.05294836172834039,0.7788720764219761,-0.13614818407222629,-0.22777965804561973,-0.15445419400930405,-0.04332073451951146,0.3046572064049542,-0.07112454250454903,0.5543824951164424,-0.4251727811060846,-0.12242839112877846,0.1358777149580419,-0.5808050213381648,0.472700675483793,-0.6074089403264225,0.4139222730882466,-0.6046906895935535,0.48054179456084967,-0.2624540734104812,-0.5450678137131035,0.313272999599576,0.32585644256323576,-0.9371007927693427,-0.2512079360894859,-0.05306026944890618,0.6482387683354318,0.9024870963767171,0.6772159980610013,0.4543907498009503,0.22976842941716313,-0.9643631968647242,0.35809032898396254,0.2886901502497494,-0.6522505101747811,0.5664598690345883,-0.8332583922892809,0.46374477026984096,-0.7188308257609606,0.8024248029105365,-0.029961121268570423,0.12462785840034485,-0.30124955996870995,-0.8459408916532993,-0.4841696438379586,0.6212497167289257,-0.038936914410442114,-0.7549039903096855,-0.74365572957322,0.12278452143073082,0.48009077552706003,-0.38827170757576823,0.4707537228241563,-0.11272226087749004,0.9890153589658439,0.09293257258832455,-0.8388105742633343,0.45249561313539743,-0.005700693000108004,0.3649946702644229,0.023910819087177515,0.9312634081579745,0.3806471023708582,0.3263421137817204,0.41646558605134487,0.44488052232190967,0.46827402990311384,0.864383049774915,0.7062796144746244,-0.005132527556270361,0.8109163767658174,-0.4081706553697586,-0.6125533846206963,0.9413936212658882,0.6794584328308702,-0.21680293837562203,-0.6485992264933884,-0.9062286871485412,0.1409746529534459,-0.41632552118971944,0.9511771672405303,0.0321132973767817,-0.8005651221610606,0.5463620279915631,0.02146002370864153,-0.3799999337643385,-0.24788006115704775,-0.7830980652943254,-0.025438169483095407,-0.7217310955747962,-0.4687937921844423,-0.8742525898851454,-0.2060421840287745,0.253606837708503,-0.4964760448783636,0.14468978345394135,-0.6256409813649952,0.45513945957645774,0.2990272492170334,0.023170707747340202,0.946011102758348,0.14453897019848228,0.3730453853495419,-0.06917324336245656,0.9222334371879697,0.03463651658967137,0.9673672681674361,0.6436435258947313,0.8230445762164891,-0.20328263053670526,-0.9628724679350853,0.34487641556188464,0.20641490770503879,0.605375686660409,0.5857480089180171,-0.4257730641402304,-0.5876063443720341,0.8463913975283504,-0.7382476311177015,-0.45104178693145514,-0.22917077550664544,-0.6339967125095427,-0.58562834514305,0.3021295419894159,-0.8134077535942197,-0.2928911214694381,0.340378628578037,0.14847413171082735,-0.7141007967293262,0.9893507808446884,0.98411861108616,0.22605213848873973,-0.856820547953248,-0.9878082950599492,0.8504404351115227,0.25969207007437944,0.44780665542930365,-0.2924042511731386,0.08170955115929246,0.9086397844366729,-0.3004453629255295,-0.24350615125149488,0.01641642302274704,0.6676184684038162,-0.040283327922225,0.17152751423418522,-0.15652664005756378,0.08649544604122639,0.142167414072901,0.07014890713617206,-0.4551019947975874,0.563642795663327,-0.8764589275233448,-0.5115638570860028,0.5079280654899776,-0.5452095214277506,0.32238498656079173,-0.3490734491497278,0.8308680150657892,0.007918137591332197,0.6505107339471579,-0.7901147166267037,-0.9489452759735286,-0.3638368044048548,-0.4493708834052086,0.6603888110257685,0.6062941974960268,-0.33064724830910563,-0.7052192389965057,-0.39991685561835766,-0.349638688378036,-0.1624298831447959,-0.22345707705244422,-0.8683316619135439,0.16465205093845725,0.17512314533814788,-0.8737411010079086,0.17841730173677206,-0.24368618242442608,0.9021960375830531,-0.17206306336447597,0.52834253013134,0.6460068100132048,-0.4532234901562333,0.15414648782461882,0.16078110365197062,0.5149841937236488,-0.17807011539116502,-0.9420843091793358,-0.0386795811355114,-0.7327193729579449,0.9262973936274648,-0.6685079149901867,0.5087817972525954,-0.6717167641036212,0.6089789466932416,0.45493100211024284,0.6859761876985431,-0.8731694584712386,0.46853296970948577,-0.759780902415514,-0.6915413266979158,0.14908313984051347,0.10476604988798499,0.17510146321728826,-0.12547871517017484,-0.9962492464110255,-0.18234289111569524,0.6374645489268005,-0.13983496790751815,0.10606207139790058,-0.7673111199401319,0.957178802229464,-0.03490621596574783,-0.9197744010016322,0.34501077560707927,0.6067618462257087,0.8224363443441689,0.9824402304366231,0.6888017929159105,0.7462890227325261,-0.14677326940000057,0.04260631464421749,0.19278703536838293,0.8407682506367564,0.7419620556756854,0.048620857298374176,-0.3760987976565957,0.7624454153701663,-0.5104848258197308,-0.7326474841684103,0.5319119431078434,0.8006246872246265,-0.4243617164902389,-0.3100700257346034,0.7978986985981464,-0.4231829820200801,-0.6070566782727838,0.16613200912252069,0.07626129547134042,0.6897559282369912,0.3234158423729241,0.9928124048747122,-0.1403611763380468,-0.5910709453746676,0.029755210038274527,-0.5057501900009811,-0.8377787643112242,0.790356838144362,-0.7117070304229856,-0.5332891787402332,0.9720735275186598,0.4824912981130183,0.03753277426585555,0.36612036311998963,0.5501081352122128,-0.3673544079065323,-0.7089640535414219,-0.4091716567054391,0.6999466870911419,-0.1669846740551293,-0.2706991843879223,-0.26165466802194715,0.19986609322950244,0.10221727145835757,0.3651607916690409,-0.47372416965663433,-0.35990943294018507,-0.5850398153997958,0.999240331351757,-0.17832677345722914,-0.7647687597200274,0.3582117762416601,-0.9398980662226677,-0.2539689769037068,0.7417739382945001,0.04645576002076268,-0.8858545171096921,-0.3836584365926683,-0.6383215696550906,0.4581050272099674,-0.35291919857263565,0.49658288806676865,-0.746242371853441,-0.0474209813401103,0.9928367575630546,0.6021804474294186,0.6285545965656638,-0.7854167129844427,-0.6161321406252682,-0.2143765790387988,-0.8753527561202645,0.6660566609352827,-0.4753122963011265,0.6865219883620739,-0.14328923169523478,-0.48302237829193473,0.07269701408222318,0.24641927145421505,-0.6859628171660006,-0.04078266816213727,0.006927719805389643,-0.8306996445171535,-0.3705701529979706,0.005295492708683014,0.616808945313096,-0.2587269558571279,-0.9687909577041864,0.1963053299114108,-0.7965702288784087,0.984140575863421,-0.3102895016781986,-0.9805557690560818,0.8327181679196656,-0.6149844294413924,0.35173860425129533,-0.15463626477867365,-0.3321220469661057,-0.9079743432812393,0.7170817754231393,-0.18955528363585472,0.7956651309505105,0.6670046267099679,-0.9197367574088275,0.5009698336943984,0.6619357923045754,-0.39471140410751104,0.9389487910084426,0.032443256583064795,-0.49287112383171916,-0.8771995566785336,0.8468009643256664,-0.2905149348080158,0.41079841926693916,-0.998088750988245,0.866629405412823,-0.3214023197069764,-0.8068358730524778,-0.8366496111266315,-0.46241350565105677,0.585908112116158,-0.4980716584250331,-0.048652305733412504,-0.9995839791372418,0.8393892692402005,0.98203882900998,0.889950699172914,-0.03162229945883155,0.909724862780422,-0.4412831678055227,0.9736889223568141,-0.07922611851245165,0.746311969589442,0.3092013788409531,0.8547073653899133,0.11914419801905751,0.012006590142846107,-0.7723559038713574,-0.06908133951947093,-0.7748813354410231,0.8353969054296613,-0.6981147024780512,0.3581188144162297,-0.7967336266301572,-0.597831392660737,0.38962523313239217,0.025622382760047913,0.18347440334036946,0.3223064774647355,0.03480997495353222,-0.6770297246985137,0.6854406711645424,0.6775745344348252,-0.47795999702066183,0.4857055461034179,0.7326496625319123,-0.8167245765216649,-0.24602253502234817,0.09099868778139353,-0.7776746461167932,0.8996792654506862,0.27274178666993976,-0.9194069071672857,0.4629549044184387,0.833203312009573,-0.7810061690397561,0.7893372839316726,-0.547374720685184,0.9984055310487747,0.9295048858039081,-0.04150000214576721,-0.0008707116357982159,-0.7487124116159976,-0.5952644310891628,-0.9734661891125143,0.9384940857999027,0.9422013824805617,0.35011060489341617,0.46795093128457665,-0.954939161427319,-0.24419097928330302,0.9475554805248976,-0.22192869475111365,0.1530635762028396,0.8200912266038358,0.9694622666575015,-0.09811437595635653,-0.9573234347626567,0.4915995243936777,-0.3627096018753946,0.8280618279241025,0.8734925012104213,-0.26342376694083214,0.6432759957388043,0.6646179631352425,0.6093930113129318,-0.8229955919086933,0.5431773262098432,0.6378441341221333,-0.8147475090809166,-0.6929548648186028,0.9527938514947891,-0.6488742586225271,-0.1630957145243883,0.3953607208095491,-0.826615497469902,-0.9403831046074629,-0.6094490299001336,0.8301015524193645,0.4727427833713591,-0.01294606551527977,0.9107353030703962,0.7813029629178345,0.7649739300832152,-0.8128854078240693,-0.5497048697434366,0.6901948829181492,0.06128536071628332,0.4130764934234321,-0.7331125163473189,0.6502243713475764,-0.840774989221245,-0.30253860261291265,0.6432136632502079,-0.6909805596806109,0.8267573798075318,0.18216468626633286,-0.1312353448010981,0.6587230758741498,0.8405081466771662,-0.18049661302939057,-0.3987584598362446,-0.8220407525077462,0.7491947351954877,0.5151791265234351,-0.024299565237015486,-0.28393404791131616,-0.018569648265838623,-0.2589059919118881,-0.9384925980120897,-0.30938311945647,0.9675528705120087,-0.032763184048235416,-0.4479397931136191,-0.8065245938487351,0.27323641488328576,-0.36519609251990914,0.9530722401104867,0.12717798771336675,0.44205427868291736,-0.8773229559883475,0.8530048541724682,-0.011307128705084324,0.5342913051135838,-0.12089280551299453,0.1404732447117567,-0.6934782434254885,0.9778280579484999,0.7954693371430039,-0.898668141104281,-0.23754279082641006,0.008489025756716728,0.6399613097310066,0.7095845500007272,-0.7468233318068087,-0.5644635050557554,0.1226432672701776,-0.9875015933066607,-0.023895518388599157,0.9646884710527956,0.6539619462564588,-0.25462852977216244,-0.6869443198665977,-0.3293592669069767,0.22068536095321178,-0.6260211900807917,-0.7889340692199767,-0.02962938603013754,-0.7639359580352902,0.2683989335782826,0.5786754186265171,0.9469373147003353,0.49547564750537276,-0.878311712294817,0.8051636535674334,-0.4067799346521497,0.7613533907569945,0.6391414785757661,0.26814266946166754,0.785770951770246,0.30176814971491694,0.21757728466764092,-0.19987085089087486,0.37285283114761114,-0.6636727093718946,0.3402870441786945,-0.03906726697459817,-0.10430342797189951,0.10411332873627543,-0.6916514039039612,0.9546711803413928,-0.01608968572691083,0.16857984475791454,0.055166075471788645,-0.18193767918273807,0.4855287289246917,-0.3463495746254921,-0.11828089505434036,0.33446735702455044,-0.17427929863333702,0.959874368738383,-0.41556922998279333,-0.1854144292883575,0.016050318256020546,-0.7496110792271793,-0.4158234978094697,-0.5560525222681463,-0.5664841746911407,-0.2917198450304568,0.5954794078134,-0.6557239121757448,-0.5508784013800323,0.37555232597514987,-0.7435417231172323,-0.08711752900853753,0.6144369333051145,0.8115344145335257,0.41219942877069116,0.36537437327206135,-0.7371335877105594,-0.28119571413844824,0.8883738536387682,0.6120014805346727,-0.33603767352178693,-0.5908503858372569,0.7515867846086621,-0.9456333168782294,-0.21876332024112344,0.7633091271854937,0.3269336395896971,-0.8943715267814696,-0.1650851215235889,0.7710255030542612,-0.6380945593118668,-0.21014671958982944,0.9248385080136359,0.8493688222952187,-0.7645827257074416,-0.7336719115264714,0.4470131080597639,-0.6604066956788301,-0.8865110543556511,-0.585519599262625,0.8018875736743212,-0.5226938533596694,-0.8113281489349902,-0.11761154280975461,0.36982835084199905,-0.46916428254917264,0.15747455647215247,0.580993639305234,0.6891251308843493,0.22875507175922394,-0.4928584541194141,-0.13504465017467737,-0.6744488095864654,-0.08764269296079874,-0.49833861319348216,-0.4892132715322077,-0.19926873687654734,0.06138414703309536,0.4749137554317713,-0.46102818939834833,-0.925889631267637,-0.659469875972718,-0.4866446531377733,0.1672117062844336,0.3998046382330358,0.6216886201873422,-0.9200158072635531,-0.4685220383107662,0.4486282425932586,-0.11206277413293719,0.5013162344694138,0.16894250316545367,-0.4127670135349035,-0.7645450443960726,-0.26712600607424974,0.8302451884374022,0.1901235245168209,0.732446787878871,0.8960682787001133,-0.7369449427351356,-0.8223338914103806,-0.4741118121892214,-0.8431375874206424,-0.8783922898583114,-0.10394816426560283,0.7990829679183662,0.4668439426459372,0.3495283485390246,-0.390080894343555,-0.46839401638135314,-0.016324646770954132,-0.8702881713397801,0.039270993787795305,-0.01231000805273652,-0.3090476025827229,0.49843359598889947,-0.6175546944141388,-0.1009215866215527,0.13625926664099097,0.44565189629793167,0.226056101731956,-0.12004996137693524,0.07074738014489412,-0.5692028300836682,0.1346638659015298,0.6789396698586643,0.21365397702902555,-0.4700164175592363,-0.5453109908849001,0.036801550071686506,-0.5853533102199435,0.6406802535057068,-0.844956352841109,0.05923315463587642,0.7848342657089233,-0.2123656803742051,-0.324694043956697,0.7566863540560007,-0.8136884109117091,-0.2548635113053024,-0.27383513236418366,-0.7762733553536236,0.3600696693174541,-0.41934850765392184,0.11702395230531693,-0.9965087617747486,-0.688007241114974,0.11719017382711172,-0.7671092953532934,-0.6572133540175855,0.7123149428516626,-0.3901883279904723,0.9823533231392503,0.2316494844853878,-0.9977425513789058,-0.051041551399976015,-0.2739517674781382,-0.9857859732583165,0.8966351472772658,0.6322449995204806,0.2858320539817214,-0.30030634300783277,-0.8421341022476554,-0.995279005728662,-0.4775268007069826,-0.34324674354866147,-0.5067546614445746,-0.8709598728455603,-0.2634152169339359,0.8916379320435226,0.48585896752774715,-0.8415643027983606,-0.35259164310991764,0.6961104371584952,0.7905775643885136,-0.9887759531848133,-0.3689746903255582,0.04547861125320196,0.17080792924389243,0.1664382484741509,-0.19887481490150094,-0.03169306507334113,-0.8416393012739718,-0.053057546727359295,-0.2256688908673823,-0.6287223985418677,0.9646955970674753,0.5337922205217183,0.2683752812445164,0.7919882191345096,-0.32137668831273913,0.8597282781265676,0.30239546252414584,0.9632342322729528,-0.2611692529171705,0.7684156000614166,-0.4064720207825303,-0.6850367947481573,0.8128775502555072,-0.3367088050581515,0.8991247094236314,0.6426868233829737,-0.30772296991199255,0.5888817012310028,-0.20585443265736103,0.5459512332454324,-0.20998219307512045,0.10112066194415092,0.1813352652825415,0.4385694609954953,0.3921809047460556,-0.47950327955186367,0.1232979646883905,0.32396620512008667,0.6217486658133566,-0.8615389186888933,-0.9956986233592033,-0.9128809357061982,0.7626833710819483,-0.5805412824265659,0.687868844717741,0.5934841576963663,0.15577671164646745,0.3786229258403182,-0.47721065673977137,-0.25608701817691326,0.9583264868706465,0.8029834097251296,0.1482419935055077,0.22647040523588657,0.2811406636610627,-0.8000995432958007,0.7092955997213721,0.9187020887620747,0.49079356668516994,-0.5147228948771954,0.6590092577971518,0.10266592865809798,0.29295497946441174,0.17595381289720535,-0.9913177825510502,-0.34661954548209906,0.4510901067405939,-0.4148500608280301,-0.8272491469979286,-0.5149206938222051,0.16453238716349006,0.8991485135629773,0.06834775814786553,-0.6230727680958807,0.05637025833129883,0.1621325435116887,-0.4398896167986095,0.1777221243828535,-0.6852287175133824,0.8192996010184288,-0.691737403627485,-0.2625794908963144,-0.8191015422344208,-0.9299360574223101,-0.47499358793720603,-0.6358984410762787,-0.5538643840700388,-0.23542975774034858,-0.5174296074546874,-0.14409157820045948,-0.5993848387151957,-0.07149930391460657,0.08486726880073547,-0.5736474231816828,-0.8623940292745829,0.40706495149061084,0.04740020493045449,0.7060195533558726,0.04903093399479985,-0.4449285510927439,0.9042052305303514,-0.3868048368021846,0.613523063249886,-0.3629164295271039,0.38549539260566235,-0.9218050115741789,-0.3103465004824102,-0.5004384713247418,0.14306348469108343,0.670146306976676,-0.7944787163287401,0.17584968684241176,-0.10039172740653157,0.4326490550301969,0.6287397448904812,-0.27683180989697576,-0.9789039436727762,0.40252405824139714,0.008787455502897501,-0.49466784996911883,0.9422501013614237,-0.6715258983895183,-0.6671430496498942,0.9136586976237595,-0.8761237855069339,-0.9718042709864676,0.0648340038023889,-0.628311185631901,-0.2917298157699406,-0.5885489098727703,-0.5511453384533525,-0.25597020937129855,0.7810026435181499,-0.6890738713555038,0.0006222710944712162,0.956416102591902,-0.425252893473953,-0.9534046840853989,0.3811458474956453,-0.12039156351238489,-0.6338704098016024,-0.12165641691535711,0.45571437664330006,-0.3770500645041466,0.6107067260891199,0.9323680521920323,-0.6823385818861425,0.7436873470433056,0.1072730808518827,0.6111876564100385,-0.6670404458418489,0.9717648085206747,-0.964911085087806,-0.0006420114077627659,-0.1141005321405828,0.24733642162755132,-0.041609921492636204,-0.5677925841882825,-0.7927598543465137,0.7924663117155433,-0.6838402762077749,0.3479470699094236,-0.6613107989542186,-0.665645815897733,0.8986663785763085,0.394271788187325,-0.8911357936449349,-0.2723425282165408,0.26470348332077265,-0.12507481826469302,0.918052508495748,0.5053156181238592,0.6399307893589139,-0.9155370541848242,-0.8335484121926129,0.9192340294830501,0.848022167570889,-0.47944533498957753,0.7815122622996569,0.9305988401174545,0.9843254163861275,0.737514547072351,0.9366623037494719,0.7963178446516395,0.4797992999665439,0.032271793112158775,-0.6140170935541391,0.5639494745992124,-0.008864004164934158,0.7966300104744732,0.6326631768606603,-0.4311784072779119,0.8251303816214204,-0.9183865580707788,-0.7836379371583462,-0.07072545401751995,0.11673855502158403,-0.26761789061129093,0.5689081107266247,-0.9762269691564143,0.6001066919416189,-0.8371272315271199,-0.11929105594754219,0.8886793311685324,-0.1605376903899014,-0.03572958195582032,-0.16715820645913482,-0.2416181336157024,-0.9527903641574085,-0.07519941357895732,-0.5424244101159275,-0.23242606921121478,-0.2369619281962514,0.7868908168748021,-0.637617199216038,-0.4571707947179675,0.5645087948068976,-0.6973164980299771,0.9276345847174525,0.8908057594671845,-0.41396240750327706,0.24185964884236455,0.9154227660037577,0.6723963203839958,0.5408437736332417,-0.8159184805117548,0.6394077832810581,0.5882159220054746,-0.42864656588062644,0.4949807822704315,0.9787267479114234,-0.041306409519165754,-0.21570413280278444,-0.8589180652052164,0.019031107891350985,0.5952953891828656,-0.7911747340112925,-0.29533754754811525,0.06179323699325323,0.45437722792848945,0.7906628157943487,-0.18300301302224398,-0.2427159915678203,0.8363235108554363,0.07788431691005826,0.8859400991350412,0.05301408376544714,0.2801238694228232,0.3463382562622428,0.2421892681159079,0.5998368463478982,0.6943750800564885,-0.579008458647877,0.2538678324781358,0.06188018014654517,-0.9590391190722585,-0.8158968640491366,-0.2051925235427916,0.8397023603320122,0.13032594369724393,0.011138747911900282,-0.7568324692547321,0.5659505194053054,0.004327035043388605,0.24041564855724573,0.49960038205608726,0.08063222886994481,-0.724301042035222,-0.9217610089108348,0.7711165263317525,-0.20539904106408358,0.8550175107084215,-0.612735039088875,0.47974078450351954,-0.08750583976507187,0.32369315903633833,-0.26704784063622355,-0.4381095631979406,-0.5421107723377645,0.4072982780635357,-0.12214969657361507,0.7254894198849797,0.29737195698544383,-0.09305881382897496,0.22974847815930843,0.24746149871498346,0.3810300943441689,0.7451860122382641,-0.9508974915370345,0.3225462422706187,-0.271120713558048,-0.8292488246224821,-0.0288157113827765,-0.6119705107994378,0.5875751436688006,0.3348477394320071,-0.5187144558876753,0.4717609123326838,0.5727633619681001,-0.6522942595183849,-0.0778551665134728,-0.4909345763735473,-0.8939546914771199,0.5901789385825396,0.6638055369257927,-0.7992414184845984,0.9346396927721798,0.7600252199918032,-0.12965292762964964,-0.024955852422863245,0.07055037096142769,-0.8127286061644554,0.11713282205164433,0.8588299797847867,-0.2467161174863577,-0.011730557773262262,-0.8388275057077408,-0.6373475245200098,-0.6726829698309302,0.40221160603687167,0.029680381529033184,-0.6031652516685426,0.5212678224779665,0.8893182966858149,0.3297352106310427,-0.7310284357517958,-0.02125783171504736,0.3139714882709086,0.671263032592833,-0.6147840144112706,-0.9649867317639291,0.1703694388270378,-0.3025917038321495,-0.9236954059451818,-0.9567419504746795,0.5753220235928893,0.15354919852688909,0.11223891330882907,-0.7397325350902975,0.50997229013592,0.9017775552347302,0.7674513892270625,0.30380839947611094,-0.11834467016160488,0.03810295229777694,0.15850948821753263,-0.7150469799526036,0.40761182457208633,0.14481372386217117,-0.7375662601552904,0.782820952590555,0.2288794773630798,-0.6662481124512851,0.5488280984573066,-0.3588784085586667,0.176588527392596,-0.8338315370492637,-0.9013445232994854,-0.7968649626709521,-0.5815475000999868,-0.677307709120214,0.6431155893951654,0.7175311506725848,-0.8419039635919034,0.6044337279163301,-0.7704740143381059,0.8907947526313365,-0.6985217430628836,0.9810285218991339,-0.7569657475687563,-0.9366568601690233,-0.30525017250329256,-0.2226698575541377,-0.8851207997649908,-0.04977795295417309,-0.4511141306720674,0.3762518255971372,-0.34815336484462023,-0.923280886374414,-0.9068811070173979,-0.2652381807565689,-0.0716316164471209,0.8472936563193798,-0.9196820794604719,-0.8976491861976683,-0.25603165617212653,-0.7298257239162922,-0.03394400188699365,-0.09032657090574503,0.6724533452652395,0.6752388044260442,-0.09474935196340084,0.4670330355875194,0.6023250450380147,0.5497166779823601,0.6250698007643223,-0.6429214319214225,-0.444732534699142,-0.21976848179474473,0.6239600065164268,-0.46447826316580176,0.5219699260778725,-0.7594363386742771,0.08146949531510472,-0.7057976624928415,-0.7412585155107081,-0.2698272690176964,0.3676738743670285,-0.947392025962472,-0.4306374080479145,0.5390596194192767,-0.1912764930166304,-0.8382205585949123,-0.2079150672070682,-0.11358480527997017,0.08142443327233195,0.7587232957594097,0.8675531949847937,-0.07045936491340399,-0.7217045361176133,-0.5159603478386998,-0.15849129809066653,-0.2025253544561565,-0.12038412364199758,0.774502667132765,-0.8167011016048491,-0.6098902178928256,-0.9819954899139702,0.29565074061974883,0.33434530394151807,-0.04377157287672162,0.5175341395661235,-0.22203783597797155,-0.25627095298841596,-0.7147864531725645,0.8036814155057073,-0.49649623734876513,0.9468670268543065,0.359328375197947,0.26271591568365693,0.299369378015399,0.03647284721955657,-0.10177734680473804,-0.9515668610110879,-0.08639050321653485,-0.29693920630961657,0.835917096119374,-0.011194948572665453,0.41543581150472164,-0.6556513817049563,0.4180379933677614,-0.01921053323894739,-0.4585756566375494,-0.3972723577171564,0.1762544447556138,0.7483005980029702,0.8018332635983825,0.4289172971621156,0.7824884839355946,0.10157346306368709,-0.10409556981176138,0.7389041925780475,0.8728342680260539,0.900804587174207,0.8369780746288598,-0.6260849051177502,-0.2889435915276408,-0.07724660215899348,-0.7969777001999319,0.025603446643799543,-0.5576573465950787,0.11287678312510252,-0.11338806292042136,-0.17961523309350014,0.2896276735700667,0.3422979232855141,-0.7053059162572026,0.7231602491810918,0.4132963898591697,0.5206139078363776,0.9816068196669221,0.5648549846373498,-0.4987584170885384,-0.5546556254848838,-0.28176665492355824,0.6535822506994009,-0.37074055848643184,-0.21746982587501407,0.8138073412701488,0.27380300499498844,-0.27382439468055964,-0.026015793904662132,0.9287549490109086,-0.6908821873366833,0.9984154575504363,-0.19886279152706265,-0.7706811707466841,0.9364558169618249,-0.1334562129341066,-0.41719492757692933,0.30633439077064395,0.33077135449275374,0.16598681034520268,0.8006702456623316,0.3009371035732329,-0.289217468816787,0.40584456361830235,-0.29049520287662745,-0.8727994891814888,-0.6132336091250181,0.6562225581146777,0.776410870719701,0.48614486074075103,0.25020743627101183,-0.47702845139428973,0.44943247782066464,-0.05266024963930249,-0.5501582962460816,-0.2983565009199083,-0.2754574753344059,0.28999796649441123,-0.9361649202182889,-0.010437475517392159,0.11457032803446054,0.025721827521920204,-0.7279733475297689,-0.1803045067936182,-0.008908606134355068,-0.8188407821580768,0.8525801147334278,-0.040343128610402346,-0.3884781966917217,-0.0938459662720561,0.19404492434114218,-0.45091802068054676,-0.25901827309280634,-0.8621533280238509,-0.05092837009578943,0.166806407738477,-0.21055373270064592,-0.6949839196167886,-0.710820778273046,-0.3853732459247112,0.1296114451251924,-0.3812181265093386,0.32145517645403743,0.21172332158312201,0.0041588954627513885,-0.6045980527997017,0.3450949811376631,0.8837580527178943,0.6670000604353845,-0.26655740570276976,-0.06487111561000347,-0.036147370003163815,0.5395440198481083,0.5565848173573613,-0.2030208082869649,0.7467896877788007,-0.7717284699901938,-0.6435833876021206,0.9349856725893915,0.7844401523470879,-0.0027689356356859207,0.48240330163389444,-0.24879907863214612,-0.4873463539406657,-0.9372581280767918,0.14078133879229426,-0.29610234312713146,-0.5881431656889617,0.5025766757316887,0.7911604847759008,-0.2813277943059802,0.8495325045660138,0.676977789029479,0.6823237035423517,0.011872108094394207,-0.3167897271923721,-0.2598827355541289,0.19040674390271306,-0.6095287436619401,-0.21339156851172447,-0.4801699863746762,-0.15080565819516778,0.28181888489052653,-0.919483077712357,-0.41176831303164363,-0.8080241438001394,-0.36640862561762333,0.883650554344058,-0.361723265144974,0.7663281355053186,-0.22293538879603148,0.8190526198595762,-0.13152583688497543,-0.6710990043357015,-0.9703924334608018,0.21256346395239234,-0.5453759408555925,-0.22305677086114883,0.5003331229090691,-0.6858137152157724,-0.9332903744652867,-0.619321403093636,0.9818818755447865,0.754155206028372,0.5860928534530103,0.053817345295101404,-0.35430105682462454,0.8559636943973601,0.3178035472519696,0.9151660851202905,-0.6972530954517424,0.6211487143300474,-0.3119879914447665,-0.1321669020690024,-0.9358918028883636,-0.29733764892444015,0.7412121202796698,-0.6870021880604327,0.18017572164535522,0.8965692659839988,-0.12103664455935359,0.7773144613020122,-0.39432952646166086,-0.14057080307975411,0.9817406898364425,-0.8363425955176353,0.938291713129729,0.25534763373434544,0.5971597777679563,0.7766655110754073,0.03604679647833109,0.5760717284865677,0.7454202026128769,0.337756825145334,0.370448368601501,-0.8485492756590247,0.7055747774429619,0.6755308206193149,-0.06007037917152047,-0.7108879550360143,0.9836444039829075,0.17226028023287654,-0.7711757821962237,-0.29138096794486046,-0.9659551079384983,0.3979758024215698,-0.575377756729722,0.5868559312075377,0.11012441758066416,0.4921127976849675,0.9766820915974677,0.8501077895052731,0.07965213805437088,0.6534718666225672,0.08089003572240472,0.5417976775206625,-0.31245238427072763,-0.410549646243453,-0.6213725013658404,0.8677485533989966,-0.21942763915285468,0.46316074300557375,-0.5147900944575667,0.610306195449084,0.478441602550447,0.12513825576752424,0.6789924562908709,-0.021018490195274353,-0.8613144806586206,0.5268342364579439,0.7639481029473245,-0.11026246892288327,0.8690559403039515,0.8607610980980098,0.16000210400670767,0.09654099447652698,0.8389392551034689,-0.05226712208241224,0.17831360781565309,0.3348326445557177,-0.4888630826026201,0.08255132334306836,-0.08857616828754544,-0.544833866879344,0.6221581837162375,-0.9701367202214897,-0.6271389131434262,-0.10323698027059436,0.6129536782391369,-0.8715953291393816,-0.6614051591604948,0.5628874702379107,0.6452041668817401,0.8071252857334912,0.2603550278581679,-0.4424758767709136,-0.45413944171741605,-0.12695838883519173,0.9302342953160405,-0.7592840874567628,-0.5716384314000607,-0.9933788948692381,0.9936923617497087,0.5614359425380826,0.893496016971767,-0.6546879541128874,0.8524021082557738,0.9985990482382476,0.8826110833324492,0.7040708824060857,0.7026500524953008,-0.4570096991956234,0.24193601496517658,0.2024652217514813,-0.6181572582572699,0.5480453539639711,0.9230952155776322,0.35290336702018976,-0.81433214712888,0.0021956549026072025,0.35120780719444156,-0.8098742845468223,0.406523781362921,-0.9241817309521139,0.6532706464640796,0.8955932348035276,0.38056488893926144,-0.7693310352042317,0.25708345603197813,-0.15242954343557358,-0.2529918635264039,0.5567019204609096,0.9907657960429788,0.6038446757011116,-0.556470244191587,0.9915395393036306,0.1220653890632093,0.9238905161619186,0.18945657927542925,-0.34834796423092484,-0.06386309210211039,0.9328005407005548,-0.5916311466135085,-0.33651158679276705,0.6566801695153117,-0.8708938481286168,-0.5848703482188284,0.5867198710329831,0.8552228384651244,-0.1511826254427433,0.6080443696118891,0.9528003381565213,0.9959991993382573,0.22436270909383893,-0.012774418108165264,-0.7128636357374489,0.47115667117759585,0.18199242930859327,-0.5584349078126252,-0.11425791494548321,0.38168321270495653,0.832520839292556,-0.5177185260690749,-0.06357872672379017,-0.34638467291370034,-0.25176373589783907,0.7513811928220093,0.13486812496557832,-0.83527563046664,-0.550423757173121,0.7936073429882526,-0.49792333086952567,-0.976784965954721,-0.10095018614083529,0.5866119633428752,-0.7459681709297001,-0.8389942827634513,-0.5973251624964178,-0.43866171035915613,0.21872043702751398,-0.15880110347643495,-0.5301816491410136,0.5383121967315674,0.3687298009172082,-0.5587235726416111,-0.3328873421996832,-0.2134695528075099,-0.3797254813835025,0.2811592612415552,-0.9758355813100934,-0.27455560537055135,0.11593856010586023,0.21006894065067172,0.7831532629206777,0.25367817748337984,-0.5708881639875472,-0.5354073909111321,0.8531254464760423,-0.1341321086511016,-0.02717613009735942,-0.9656244055368006,-0.9577333936467767,-0.930797478184104,-0.7786115040071309,-0.6144480919465423,-0.6819162969477475,-0.8909477153792977,-0.9146326440386474,0.5024361126124859,-0.1761483117006719,-0.7194068697281182,-0.25673193484544754,-0.498509225435555,0.9602322024293244,0.8815701482817531,-0.031764629762619734,0.8104787580668926,0.6199561641551554,0.1034853346645832,-0.441104247700423,-0.20762217557057738,-0.13745056418702006,0.665109041146934,-0.5161093021743,-0.7346373223699629,0.10547514585778117,0.5676657441072166,-0.30248907394707203,0.25193352485075593,-0.12354160007089376,-0.19490132853388786,-0.6846243906766176,0.2574185561388731,-0.753915086388588,-0.7664404110983014,0.026322513353079557,-0.05681629339233041,-0.9064638502895832,-0.5581952081993222,0.7002499094232917,0.5706283561885357,0.44249493489041924,-0.4911111765541136,-0.9078434850089252,-0.9090747172012925,-0.02205609902739525,-0.9485566029325128,-0.4365169443190098,0.8576890733093023,-0.5343354800716043,0.8009728202596307,-0.04688064381480217,-0.3724630936048925,-0.6129569271579385,0.9270691252313554,0.12741803470999002,0.724964433349669,0.9029007079079747,0.2897767466492951,0.24145357264205813,-0.9400817351415753,0.733278461266309,0.14676737925037742,0.2665131469257176,-0.22637733351439238,0.8176071466878057,-0.7631387021392584,-0.6737310434691608,-0.6441588941961527,-0.7057976028881967,-0.7861002967692912,0.4679187876172364,-0.9811283489689231,0.6106965285725892,0.6918343710713089,-0.9506300240755081,0.54694346152246,0.05864236457273364,-0.5553009863942862,0.5822494826279581,-0.6637865272350609,-0.9961596704088151,0.2759272609837353,-0.4057713970541954,-0.6775518958456814,-0.8814961700700223,0.8512765704654157,0.37613470340147614,-0.1255765026435256,-0.851071338634938,0.9707578625530005,-0.3389082793146372,0.9996294151060283,0.2403279598802328,-0.5157213248312473,-0.18967840122058988,0.02960835164412856,0.998020127415657,-0.26693520974367857,0.12123103253543377,-0.22564006224274635,-0.6527441809885204,-0.608313340228051,-0.30227297032251954,-0.29464269569143653,0.7970849988050759,-0.850926321465522,0.28752881987020373,-0.5199992717243731,-0.30301016569137573,0.4428858277387917,0.6035943850874901,-0.07518944516777992,-0.41814315551891923,0.4154638536274433,0.9149666107259691,0.769780314527452,-0.5632017175666988,0.5191288399510086,-0.8395374855026603,-0.6626226692460477,0.329492200165987,-0.6485834931954741,-0.526998583227396,-0.7790380311198533,-0.9901212584227324,0.8312107515521348,0.5346896909177303,-0.41352252615615726,0.38048094417899847,-0.9809232368133962,-0.6233420744538307,0.8841677838936448,-0.09546577045693994,-0.06899948045611382,0.045443347189575434,0.09163261717185378,0.23700681468471885,-0.4650747561827302,-0.2708281842060387,-0.7072406047955155,-0.6250108713284135,0.9944566641934216,-0.5795837859623134,-0.8454876122996211,-0.7215727684088051,-0.3130256193690002,-0.6749793011695147,-0.16353319166228175,-0.36840766901150346,0.7100573913194239,-0.49624657491222024,0.6973349279724061,0.27035791892558336,-0.8729688855819404,-0.5597465168684721,0.860783580224961,0.48691640980541706,0.683973875362426,0.14012142037972808,0.5478495839051902,-0.02050670702010393,-0.2590156365185976,0.13945000898092985,0.3499186197295785,-0.5991911352612078,-0.09805501764640212,0.6433318830095232,0.023863511625677347,0.5646853591315448,-0.03332376852631569,0.6667269594036043,0.17826321627944708,0.6601954768411815,-0.559646466281265,0.772659040056169,-0.27302476624026895,-0.39691859018057585,0.5767553802579641,0.008954216726124287,-0.8185818144120276,0.42723958287388086,-0.8227365151979029,-0.3146438100375235,0.40078138653188944,-0.7185048339888453,0.6534576648846269,0.11305421963334084,-0.6250342912971973,0.3396270489320159,0.5692245466634631,0.5705980556085706,-0.4923099181614816,-0.008219115436077118,0.7420958247967064,-0.6409990908578038,0.4880999648012221,-0.7507307780906558,-0.7754944292828441,0.4511373662389815,0.16836620587855577,0.12719866074621677,-0.9685439057648182,0.5393449915573001,0.05457641649991274,0.22320128977298737,-0.187458002474159,-0.4170112698338926,0.8201235998421907,-0.4900691560469568,0.07482093758881092,-0.2176366480998695,-0.22209417540580034,-0.7519366410560906,-0.5245170225389302,0.9878039830364287,0.9064821978099644,0.766109780408442,-0.27837805123999715,0.5261231302283704,-0.7026652777567506,0.13550584949553013,-0.48626184137538075,-0.03946158196777105,-0.425723051186651,-0.9206087803468108,0.2833997868001461,0.754884413909167,-0.25677776895463467,0.09124423936009407,-0.8447334319353104,0.7191493245773017,-0.7628552676178515,0.09462750563398004,-0.07828200981020927,-0.18676480697467923,-0.7636091401800513,0.9593648226000369,0.31238643173128366,0.42901742504909635,-0.95733622321859,-0.018102111294865608,-0.6134469495154917,-0.8532144804485142,-0.14764100732281804,-0.22067333152517676,-0.7978272205218673,-0.14933274500072002,-0.7316457428969443,-0.7483940897509456,0.45389575604349375,-0.4313963339664042,-0.08209386328235269,-0.716746078338474,0.3972942428663373,0.3471154049038887,0.5801926329731941,-0.944064692594111,-0.3027197113260627,0.699979804456234,-0.012452911119908094,0.6198928286321461,-0.46573894284665585,-0.4413998229429126,-0.9926607999950647,0.41311578545719385,-0.8791921939700842,-0.6806527143344283,0.9011933403089643,0.6566322725266218,-0.087532845325768,0.8011074378155172,0.33888031635433435,0.3718979707919061,-0.7066356930881739,0.8058617576025426,0.24302976438775659,-0.8349384465254843,0.8621349134482443,-0.7505987365730107,0.18550696223974228,-0.9056842024438083,0.6816682433709502,-0.6438672444783151,-0.7728719804435968,-0.07328216265887022,-0.9955117208883166,0.7455833037383854,0.20846954081207514,0.5840297685936093,-0.25190519634634256,-0.030529037583619356,-0.6128209019079804,-0.4554530903697014,0.4488470642827451,-0.0758531759493053,-0.8577563120052218,-0.8397520636208355,0.23427141923457384,-0.7319182688370347,0.8603633418679237,-0.8232134496793151,0.765657548326999,-0.8007926652207971,-0.8036662326194346,0.8387618698179722,-0.20222846791148186,-0.09396161930635571,0.9032302112318575,-0.6811322807334363,0.09466212103143334,-0.46330731688067317,0.8607637318782508,-0.4918238613754511,0.02277487749233842,-0.890695184469223,0.3655593954026699,0.8000295078381896,-0.23806208884343505,0.5087209735065699,0.41666626278311014,-0.8406866383738816,-0.48831900488585234,-0.563777974806726,0.3972590956836939,0.5031973863951862,0.6735975490882993,-0.43851349456235766,-0.8798464932478964,0.5908837681636214,0.7147951889783144,-0.5508763836696744,-0.5506582637317479,-0.3500508205033839,-0.9739081435836852,0.1599512598477304,0.6958378003910184,-0.00732213631272316,0.2739616818726063,0.9885076726786792,0.32994938315823674,0.0977095034904778,0.7297975462861359,0.5276301587000489,0.7483222410082817,-0.3571599670685828,0.6585293398238719,0.8248449601233006,-0.46857680892571807,0.9428840102627873,-0.5655156965367496,-0.24743444845080376,-0.02096030628308654,-0.8682546657510102,0.4209502814337611,0.35429086722433567,0.7820556266233325,-0.8678417797200382,0.16538350470364094,-0.49044259916990995,0.14209086308255792,-0.10102237481623888,0.9120533508248627,-0.9643563074059784,-0.44509934866800904,0.307864174246788,-0.047305125277489424,0.49556556111201644,0.8493548324331641,0.3607170255854726,-0.16109317308291793,0.29718686221167445,-0.1303526689298451,0.4166355156339705,-0.20098587218672037,0.01871886570006609,0.2621589554473758,0.7081105527468026,-0.12009445251896977,-0.2037481339648366,-0.9578685429878533,0.7934437235817313,0.8413257556967437,0.7155127841979265,-0.2582306731492281,0.6256480533629656,0.7123805596493185,0.5828457302413881,0.01468266686424613,0.894242643378675,-0.2607866427861154,-0.6418455177918077,-0.14827410457655787,0.5267910715192556,0.177933553699404,-0.7284697270952165,-0.6670289309695363,-0.7294008056633174,0.09951384924352169,0.10655520157888532,0.40099185332655907,-0.08079813932999969,0.2841166565194726,0.9427997744642198,0.08287190180271864,0.4218441625125706,0.19756060652434826,-0.9212925708852708,-0.758882352616638,-0.13759781466796994,-0.9943140377290547,0.3834010032005608,-0.6409470275975764,0.43732715863734484,-0.5879188859835267,-0.2915891669690609,0.7620084593072534,-0.8886678069829941,0.5555062685161829,0.4014015500433743,0.08662524865940213,0.6100380537100136,0.14654933148995042,0.5782293914817274,-0.21846965048462152,-0.5608808696269989,-0.09864196507260203,0.25592433847486973,-0.7280205050483346,-0.46641380432993174,0.40075052715837955,-0.8936219909228384,-0.3261886150576174,-0.5929659362882376,0.08104784786701202,0.3423762326128781,0.12998846266418695,0.6265365858562291,-0.8795798989012837,0.9477734062820673,0.35413311468437314,-0.827810206450522,0.8224911401048303,-0.6341999648138881,-0.12679539900273085,0.5320152435451746,-0.5072525860741735,-0.22312554344534874,-0.6339481519535184,0.9009453561156988,0.6032297117635608,0.5960118561051786,0.4395102937705815,-0.9652271415106952,0.40909363562241197,0.8067885539494455,-0.18824179796501994,0.5256864163093269,-0.29432053165510297,-0.23121941648423672,0.8236542036756873,-0.0600288356654346,-0.9132445948198438,0.839355303440243,-0.5940498793497682,-0.4313935209065676,0.539863346144557,-0.23720388067886233,0.37455497262999415,0.3075078292749822,-0.6140578985214233,0.013251387514173985,-0.03495765523985028,-0.3129254253581166,-0.5730229681357741,-0.7398585774935782,0.18280128110200167,-0.6569111822172999,0.9531395174562931,0.8847286612726748,-0.7959210532717407,-0.07988747535273433,-0.3325725398026407,-0.9541164189577103,-0.09318582667037845,-0.13759480696171522,-0.3110780520364642,0.9024042887613177,-0.9276343532837927,0.4583416888490319,0.07642507692798972,0.5449312878772616,-0.16110772406682372,0.37450184067711234,0.14473861968144774,0.3146506189368665,0.9278659191913903,0.6145759546197951,-0.541750599630177,-0.6996784210205078,-0.7868475406430662,0.6446179016493261,0.7461479394696653,-0.5864327023737133,-0.07915258361026645,0.39703771052882075,-0.27210378972813487,-0.6513453191146255,-0.5612256098538637,-0.10292970854789019,-0.028537560254335403,-0.3691938668489456,0.7353960308246315,-0.11011981684714556,-0.35332020977512,0.49204488238319755,0.7177084917202592,0.7331768069416285,0.8628486334346235,0.3012425936758518,0.35566169349476695,0.3498916574753821,-0.8200943465344608,0.5771919689141214,0.2110002594999969,0.4607682628557086,0.3367608333937824,0.8025546348653734,-0.18365549901500344,-0.11058902554214001,0.8687908598221838,0.6400438109412789,-0.3445904734544456,-0.057268944568932056,-0.0627699620090425,0.7254648795351386,-0.14146390557289124,-0.46764108445495367,0.286019632127136,-0.5906059625558555,-0.3415227965451777,-0.16638881573453546,0.00489182909950614,0.6601410442963243,-0.4631072971969843,0.0676511381752789,-0.8598549072630703,0.42688007466495037,-0.9062834898941219,0.31809019576758146,-0.9986292677931488,0.9693530662916601,-0.6718356152996421,-0.07319605117663741,-0.8867695876397192,-0.6075675147585571,-0.039634101558476686,-0.8750133216381073,-0.07489292602986097,0.5327204172499478,-0.680558992549777,0.34281741408631206,-0.2512217075563967,-0.5821990794502199,0.9076377539895475,-0.4122794629074633,0.2827287642285228,-0.8809382990002632,-0.06809070939198136,-0.10317827435210347,-0.00371787091717124,0.5531985624693334,-0.7732074535451829,-0.26197823882102966,-0.1337759061716497,0.7288782275281847,-0.13551866402849555,-0.6195781957358122,0.47768189338967204,-0.3433793233707547,0.7300309273414314,-0.21341306064277887,0.9557332466356456,-0.2104067699983716,0.08778343349695206,0.09701046673581004,-0.8908596416004002,-0.6761009232141078,0.7429110398516059,-0.752289499156177,-0.47674732794985175,0.4017175049521029,-0.27400537487119436,-0.4608212746679783,-0.6309302747249603,-0.583489740267396,-0.6557323755696416,0.15745849953964353,0.08248873613774776,0.5212191776372492,-0.2877824348397553,-0.19228193489834666,0.547041101846844,0.8917421353980899,0.7608367735520005,-0.12535411678254604,-0.5040468359366059,0.8970188838429749,0.25153021607548,-0.262944923248142,0.7209652415476739,0.793474308680743,-0.9281301056034863,0.435224000364542,-0.385413043666631,-0.6732860635966063,0.6578546026721597,-0.16828199056908488,0.3639220641925931,0.5714395940303802,-0.15615362720564008,-0.6592253022827208,-0.9604548537172377,0.7724534878507257,0.5527850049547851,0.7343700318597257,0.5630949675105512,-0.2834932035766542,0.756773142144084,-0.9200717378407717,0.2092878227122128,-0.7979063531383872,0.48576556984335184,-0.6266083233058453,0.049861792009323835,-0.5083771599456668,-0.1640012552961707,-0.15868125623092055,-0.07220608647912741,0.6642532628029585,0.6143623110838234,-0.5532389101572335,-0.5365743259899318,-0.7353210942819715,0.4249779852107167,0.8034558645449579,0.5500359563156962,0.6308160284534097,0.28391329385340214,0.7791666365228593,0.5269372165203094,-0.5886012907139957,-0.35697204479947686,-0.5821067988872528,0.4902129406109452,0.6075048558413982,0.8856168268248439,0.7262171651236713,0.1309481719508767,-0.011942850425839424,-0.35939424112439156,-0.08470461890101433,-0.8342336281202734,-0.16459614178165793,-0.2960808756761253,0.4187478059902787,0.17787749413400888,0.8085679677315056,-0.46415808890014887,0.9958977689966559,-0.258847251534462,0.023424070328474045,0.2983182338066399,-0.5392155419103801,0.16656782245263457,0.6382548282854259,0.6361068310216069,-0.956127944868058,-0.8837616201490164,0.4435787512920797,-0.4494156604632735,0.3273492883890867,0.004098681733012199,-0.1781664085574448,-0.88296630512923,0.6560798501595855,0.8612217642366886,0.7676221872679889,0.3040634389035404,-0.3652672157622874,-0.28470415249466896,0.8288466399535537,0.7400634177029133,0.40568493492901325,-0.7110151411034167,-0.9686802253127098,-0.6886138184927404,0.4646151582710445,-0.6149406703189015,-0.38769953278824687,0.19678409304469824,-0.4310854123905301,-0.06617513485252857,-0.26657904172316194,-0.07744958670809865,0.21382569381967187,-0.11593037191778421,-0.6237759976647794,0.819967916700989,0.27869996009394526,-0.6282096616923809,-0.40550904208794236,-0.027903667651116848,0.03664186270907521,0.6003061402589083,0.18856863025575876,-0.38102311035618186,-0.4342041886411607,0.6769065386615694,0.7055336013436317,0.428125599399209,0.06824654201045632,0.6515726349316537,0.8292799387127161,-0.7615393716841936,-0.43975461926311255,-0.9132240656763315,0.41862723371014,-0.6363743739202619,0.0956628555431962,-0.7843506662175059,-0.6542937620542943,-0.1176488446071744,-0.3174038855358958,0.07787143299356103,0.19578526634722948,0.6672928323969245,0.7937599420547485,-0.84925925033167,0.8082977551966906,0.0747858826071024,-0.9600047157146037,0.6918310848996043,0.5688136690296233,0.13068934017792344,-0.5947086503729224,-0.6020554043352604,0.32194489939138293,0.8113196063786745,-0.26724142162129283,0.6746229715645313,-0.21372932894155383,-0.30043269926682115,0.4092779695056379,0.337596679572016,-0.04167309356853366,0.6450045071542263,-0.28301727399230003,-0.5476124100387096,0.5744751743040979,-0.24998789373785257,-0.40360832726582885,-0.12494668224826455,0.601368366740644,-0.9245632644742727,0.03861286025494337,0.08361330768093467,0.04131477326154709,0.5505644516088068,0.8532408163882792,0.8828474693000317,0.6379824974574149,-0.670965108089149,0.9620677107013762,-0.45515497168526053,0.034713294357061386,0.2189424061216414,0.8393617933616042,0.42408045614138246,-0.4175081909634173,0.45431763818487525,-0.24645910179242492,-0.5794380935840309,-0.4253530204296112,0.6052842233330011,-0.8862846558913589,0.7285100822336972,-0.43228790583088994,0.35262722009792924,-0.7777455691248178,0.6518377317115664,-0.5450581163167953,0.7542195082642138,-0.6361465640366077,0.27128758281469345,-0.5012143016792834,-0.7429762189276516,0.9507105443626642,0.5392662831582129,-0.6329634045250714,-0.6683566188439727,-0.3067647232674062,0.8540766262449324,0.7633074563927948,0.397282041143626,-0.28647847892716527,0.3751715593971312,-0.330788467079401,-0.24826669925823808,-0.9604786080308259,0.05487997783347964,-0.04734816215932369,0.6780673852190375,0.5357308085076511,-0.7972966921515763,-0.6481907702982426,-0.4884346881881356,-0.8780724364332855,-0.8312484384514391,-0.291967561468482,-0.6643499527126551,-0.09858791576698422,-0.11287390813231468,-0.25274348445236683,0.5243180636316538,0.7597772749140859,-0.5037118587642908,0.48703318275511265,-0.7899974007159472,-0.7602473795413971,-0.39653815189376473,0.09538215305656195,-0.472397162579,0.11082676192745566,0.5281661939807236,0.7234231466427445,0.41123973671346903,0.3529650056734681,0.04083582945168018,-0.05224125739187002,0.9206755273044109,0.22413369314745069,-0.04605785943567753,0.8225172311067581,0.13702182797715068,0.1809310927055776,0.5661351191811264,0.0907333972863853,0.006945330649614334,-0.47376969177275896,-0.39918392803519964,-0.13199828332290053,0.5420835437253118,-0.9156785611994565,0.1789814531803131,0.6212401748634875,-0.5898444373160601,-0.2597401738166809,-0.6145515930838883,-0.9752182592637837,-0.4051041668280959,0.3186481618322432,-0.8154417551122606,0.8213102277368307,-0.301193181425333,0.18940455885604024,0.08056012215092778,0.07788818795233965,-0.12748570553958416,-0.10153792705386877,-0.5610360628925264,-0.5863601448945701,-0.33464445639401674,-0.9184293686412275,-0.08649672800675035,0.7873074277304113,0.8635097979567945,-0.025390970520675182,-0.4351012916304171,-0.5949038495309651,0.5615300233475864,0.2361390101723373,-0.9911623327061534,0.42872824240475893,-0.4341057436540723,-0.8147879606112838,0.13464396120980382,0.6866337973624468,-0.5143774426542222,-0.08247665734961629,-0.09671272896230221,0.34598681703209877,0.010073520243167877,0.5236935270950198,-0.03873983258381486,0.07168614817783237,-0.31436649849638343,0.40211892453953624,0.7489235233515501,0.5627204230986536,-0.5743329566903412,0.9175205421634018,0.08771640947088599,-0.8611185932531953,-0.03533889865502715,-0.7804687591269612,-0.9861669177189469,-0.4623406738974154,0.34929644921794534,0.3257531304843724,-0.25355632323771715,-0.9198306757025421,-0.7724387492053211,-0.09764370368793607,-0.7128356192260981,0.2305681062862277,0.33212701976299286,0.9996082652360201,-0.8035852569155395,0.5509011712856591,0.04511788208037615,0.004071786068379879,0.5051679438911378,0.8588944720104337,-0.8670154842548072,0.23258567927405238,0.8287943368777633,0.23725512018427253,0.5601466330699623,0.7820574850775301,-0.3842065939679742,0.6980904927477241,-0.9786940370686352,-0.19626608956605196,0.8829095126129687,0.5655239699408412,-0.17552577797323465,-0.9424028978683054,0.051624038722366095,-0.2893018936738372,0.9115583798848093,0.5001699673011899,0.781054865103215,0.8836753233335912,0.0036489181220531464,-0.3172236466780305,-0.21550294198095798,0.029584302101284266,-0.07313327584415674,0.3832163135521114,-0.1965652941726148,0.1070560454390943,0.3266761186532676,0.041657359804958105,-0.8617437444627285,0.5110483053140342,-0.02103907661512494,-0.690065014641732,0.8420569277368486,0.18369645765051246,0.6502792802639306,0.7975910543464124,-0.5692899948917329,-0.3062569899484515,-0.27339602215215564,0.9957438479177654,-0.358112764544785,-0.8368773977272213,-0.32195861311629415,0.5948357079178095,-0.024796137120574713,-0.8123345864005387,-0.6972538083791733,0.44153709849342704,-0.5413802773691714,-0.5211166180670261,-0.19032518565654755,-0.13434940902516246,0.5111618828959763,0.3223276217468083,-0.3215609770268202,0.22651270404458046,-0.12260858109220862,-0.5145411533303559,0.3215490449219942,-0.6029179785400629,-0.7880108174867928,-0.45297130243852735,-0.5794471674598753,0.516249842941761,-0.22189720859751105,-0.9293807689100504,-0.12418945040553808,0.5492930971086025,-0.5356601378880441,0.07288360130041838,0.09272571979090571,0.8128125802613795,-0.3143550925888121,-0.24489133246243,-0.5408912315033376,-0.2550459965132177,0.9090266413986683,0.00479879742488265,0.6063156584277749,-0.8916128426790237,-0.9999745292589068,-0.3573944289237261,0.8310751924291253,0.719947881065309,0.5408846866339445,-0.6744266734458506,0.5735709494911134,0.8489852789789438,0.10446305992081761,-0.7533211978152394,-0.3181290994398296,0.651611867826432,0.4873007792048156,0.3550797253847122,0.05755383521318436,0.9309007027186453,0.1926713027060032,-0.143402848392725,0.7888504178263247,0.14259358821436763,0.583466368727386,0.7082688985392451,-0.5343270446173847,0.8754441719502211,0.8834183868020773,0.5027634571306407,-0.3693298795260489,0.9937322395853698,-0.5916179451160133,0.7814464294351637,0.22743165167048573,0.571464226115495,-0.795979140792042,-0.21520037204027176,0.13002987299114466,0.3715190854854882,0.4996736366301775,0.6435088571161032,0.2840673462487757,-0.4596639182418585,-0.3992890645749867,0.11006533820182085,0.8565022726543248,-0.6149695860221982,0.04231793340295553,0.2904313295148313,0.9618303263559937,-0.7222556993365288,0.8688341747038066,0.6439839266240597,-0.14629593631252646,0.8260781448334455,0.7262083617970347,0.854457049164921,-0.43362236535176635,-0.03484086925163865,-0.8448494109325111,-0.6446664067916572,-0.5212345668114722,-0.814279502723366,0.2696913289837539,-0.7901476481929421,0.09156296076253057,-0.4803506098687649,-0.12649848591536283,-0.3447171738371253,0.606569089461118,0.6329009970650077,-0.5041386000812054,0.3141757515259087,-0.42515341052785516,-0.469750352203846,0.4082021610811353,0.42364276060834527,-0.348559248726815,0.42772767739370465,0.4201978384517133,0.17806508019566536,0.5271532777696848,-0.5819492167793214,0.8928063390776515,-0.528428006451577,-0.9194783833809197,-0.23277666047215462,-0.8991465792059898,0.5840154821053147,0.7003054665401578,0.9355862773954868,-0.7308941506780684,0.4695889544673264,0.7330096871592104,-0.3526376844383776,0.3279198273085058,0.7260785703547299,0.2560380157083273,0.707414279691875,-0.03285931469872594,0.43673489382490516,-0.7473172368481755,-0.042411376722157,0.47767267748713493,-0.9975966163910925,-0.0030287071131169796,-0.9849594752304256,-0.155255482532084,0.8753702193498611,-0.35069666896015406,-0.04480061400681734,-0.8278455366380513,0.6746507533825934,0.1214005840010941,0.40542303631082177,-0.6166849574074149,-0.47492417274042964,0.598176637198776,-0.24008842278271914,-0.2599128964357078,0.5684069795534015,0.7513009496033192,0.07508642226457596,0.2468695817515254,-0.7968893689103425,-0.22878359723836184,-0.3318064413033426,0.8025666209869087,0.058480041567236185,-0.17703523207455873,-0.8201583917252719,0.6397590124979615,0.12082020379602909,-0.21750580240041018,0.5274911597371101,-0.35003292094916105,-0.7613174035213888,-0.2766226069070399,0.32831526454538107,0.2084998614154756,-0.025766402948647738,-0.1839345134794712,-0.21986660175025463,-0.012395490892231464,0.43389407731592655,0.7929672971367836,-0.49525951594114304,0.7989454711787403,-0.40901346458122134,-0.5863170451484621,0.41036481782794,0.3669612924568355,-0.650129234418273,0.3766216547228396,-0.5968409981578588,-0.5038881823420525,-0.5281917485408485,-0.8062749365344644,0.6733563649468124,-0.43687919480726123,0.49866629391908646,0.22603489132598042,-0.09693590784445405,-0.09681551903486252,-0.8066339436918497,-0.9828132810071111,-0.9404410026036203,0.22084476053714752,-0.2969917277805507,-0.5890998211689293,-0.03514088550582528,-0.5574654289521277,-0.9871835322119296,-0.0923625840805471,-0.4325102539733052,0.12138649076223373,0.18055906938388944,-0.1304504876025021,0.952504875138402,-0.01603123126551509,0.170787138864398,0.30610481882467866,-0.4997838628478348,0.26711238734424114,0.48328430065885186,0.22388630406931043,-0.8424761542119086,-0.2968308008275926,-0.35379131278023124,0.7590980543754995,-0.09792424691841006,-0.9179906034842134,-0.7373383054509759,-0.7117406711913645,0.2728981077671051,-0.7410369524732232,-0.40122038731351495,-0.21874285023659468,-0.8682001736015081,-0.11784537648782134,0.6611354053020477,-0.6630508215166628,-0.8104479308240116,0.9150795233435929,0.1650910614989698,-0.11779437493532896,-0.9555631917901337,0.801612148527056,-0.9441859126091003,0.20644770748913288,-0.9048995962366462,-0.33549883123487234,0.17128253215923905,-0.7180494056083262,0.7022871039807796,-0.392105839215219,0.8693350018002093,0.8779998407699168,0.9529423601925373,-0.24126853561028838,0.9605881501920521,0.8093882412649691,-0.16437798459082842,0.6997943962924182,-0.4381248247809708,0.12965621333569288,0.760163439437747,-0.681534256786108,-0.3753879712894559,-0.15150294732302427,0.6634914637543261,-0.41736098378896713,-0.9821223178878427,0.6353004383854568,0.24798430083319545,-0.8427944709546864,-0.39017317397519946,-0.009771575685590506,-0.718787647318095,0.7393963895738125,0.8602443346753716,0.24937395239248872,0.7166379420086741,-0.7856999603100121,-0.4866020092740655,-0.617600959725678,0.08536803489550948,-0.2512030713260174,-0.9008822222240269,-0.11531353835016489,0.49479065416380763,0.11526244692504406,-0.38766262400895357,-0.11836660047993064,0.5676810727454722,-0.6153170433826745,-0.11083678063005209,0.5076598539017141,0.2946547591127455,0.3628297345712781,-0.37581391353160143,-0.11161617888137698,0.2026587794534862,0.17682949732989073,0.6640372332185507,0.5320079294033349,0.5112738264724612,0.1243314309976995,0.4130069757811725,0.026427425909787416,0.5874578966759145,-0.345368099398911,0.5531858941540122,0.6511559691280127,0.6814105724915862,0.9684030907228589,0.7667623260058463,0.7880937866866589,-0.9885146077722311,0.9080327749252319,0.8740111216902733,-0.38460139045491815,-0.6033833487890661,0.1716776080429554,0.1536175045184791,0.45977056259289384,0.6857364936731756,-0.2378375637345016,0.835628473199904,-0.6269282777793705,-0.40216831071302295,-0.7669030451215804,0.20509182009845972,0.9551908662542701,0.38972409861162305,0.5476928423158824,0.40791462641209364,-0.6241364711895585,0.9458371642976999,-0.5321538774296641,-0.5238716094754636,0.17574155936017632,-0.7283835061825812,-0.09102340461686254,0.14829867891967297,0.6223174482584,-0.2474859096109867,0.1497087306343019,-0.013115099631249905,0.27959046326577663,-0.7437588614411652,-0.7498519159853458,-0.2548502474091947,-0.4259456777945161,-0.038333242293447256,0.2588037792593241,0.7443255055695772,-0.5600795112550259,-0.7131726141087711,-0.8237239611335099,-0.17410086886957288,0.8861016645096242,0.1285382453352213,0.9451550836674869,0.013095374219119549,-0.5664662509225309,0.3400467918254435,-0.32973662763834,-0.6833172873593867,-0.9980630073696375,0.3986918143928051,0.9465776802971959,-0.8688816423527896,0.018614497501403093,-0.09176933066919446,-0.9967827629297972,-0.23644146276637912,0.13697305507957935,0.40830968227237463,-0.6247110944241285,0.01621853979304433,-0.7342083812691271,-0.4142487645149231,-0.27486732229590416,-0.29609308391809464,0.8940962860360742,-0.06723204255104065,0.8498991499654949,-0.5995397684164345,0.9153025201521814,0.8026757235638797,0.6835062196478248,0.35577972792088985,-0.9070291351526976,-0.7947882493026555,-0.7732104985043406,0.5407312815077603,0.4712892002426088,-0.00689493864774704,0.6532243262045085,-0.13382529560476542,0.8824129230342805,-0.9509255699813366,0.490267779212445,-0.39191338792443275,-0.07867338322103024,0.209463301114738,0.30775875225663185,-0.010820605792105198,0.22919385228306055,0.45432242192327976,-0.40490158600732684,-0.32300992775708437,-0.6450427356176078,0.4402342848479748,0.9740147409029305,-0.33744965167716146,0.9982377146370709,-0.8350159442052245,0.5893986038863659,-0.8672893862240016,-0.5288326391018927,-0.9026502477936447,0.9381071720272303,0.8537735370919108,0.9134928355924785,0.8518577450886369,0.43536682706326246,-0.5841758805327117,0.11967757809907198,0.28096583345904946,0.24354951735585928,0.591712434310466,-0.43971232743933797,-0.08206339366734028,-0.6486032716929913,0.09869368840008974,0.710999587085098,-0.015336652752012014,-0.037568523082882166,-0.34695708006620407,-0.014987703878432512,0.765934279654175,-0.7828720808029175,-0.48218180565163493,0.5954306004568934,-0.14469207264482975,-0.5852818200364709,0.9190955497324467,0.3633467103354633,0.9827907988801599,-0.19572109309956431,-0.7068169140256941,-0.39822353469207883,-0.4281019545160234,-0.6181341866031289,0.9642492514103651,-0.05823118984699249,0.3737592254765332,0.7071884418837726,0.1250098394230008,-0.006750078871846199,-0.8598037259653211,0.49326408887282014,0.2552707325667143,0.7943322220817208,-0.5144537654705346,0.4236401095986366,0.6710792146623135,0.414164986461401,-0.003453104756772518,0.8493385384790599,-0.5215618601068854,-0.8333798116073012,-0.04053802089765668,-0.63147939927876,0.7309640035964549,0.7029151320457458,-0.2169839101843536,0.15067573450505733,0.7944535044953227,-0.26993259135633707,0.24256679974496365,0.20092108193784952,-0.303442255128175,0.3565455246716738,-0.022667235229164362,0.7943653706461191,0.6390205286443233,-0.44860270665958524,-0.12312523880973458,0.6086292830295861,-0.32157299341633916,-0.48851054068654776,-0.5863822610117495,-0.23616661503911018,0.20213908795267344,0.8518871683627367,0.15638138027861714,0.7976628066971898,0.8088461724109948,0.02936394978314638,-0.4889931194484234,0.8587923804298043,-0.7561803762800992,0.2416048557497561,0.5435356139205396,-0.1038527237251401,-0.6452069925144315,0.41410098085179925,-0.23971548676490784,-0.7472367836162448,-0.39748616935685277,-0.9314244887791574,-0.06017292244359851,0.3099501789547503,0.008713358547538519,-0.14818414254114032,-0.8724127160385251,0.9920999524183571,-0.9723075143992901,0.4414769848808646,0.0801827316172421,-0.25825920421630144,0.6285588825121522,0.6707527739927173,0.4991647503338754,-0.7961266888305545,-0.06049875356256962,0.40939158853143454,-0.5594650818966329,-0.7367300442419946,0.8316644481383264,-0.5685277227312326,0.20994728384539485,-0.92495262529701,-0.9122560336254537,-0.10186053672805429,0.8365427921526134,0.7857657643035054,0.7068486330099404,-0.21434378996491432,0.4429195490665734,0.34095036378130317,-0.8372103883884847,0.20582224382087588,-0.3886032495647669,0.3077763868495822,-0.1582031585276127,0.8210854828357697,0.06850826879963279,-0.4890956487506628,-0.5650697024539113,0.5052227852866054,-0.4510366632603109,-0.22999609261751175,-0.3876653704792261,0.2494678939692676,0.4389173937961459,0.3075216715224087,-0.6316174599342048,0.9429822168312967,0.5743875587359071,-0.7651818688027561,-0.6557233417406678,0.10633799573406577,0.2569035701453686,0.7914103614166379,0.17124733049422503,-0.19215046428143978,-0.9315692032687366,-0.38665580097585917,-0.7452373444102705,0.3257548026740551,-0.30487645231187344,-0.9793925690464675,0.6904174913652241,0.16877440363168716,-0.48033212684094906,-0.878476629499346,-0.5218606716953218,0.36958031402900815,-0.2244018348865211,-0.8834890467114747,0.7358596809208393,0.2960032499395311,-0.4091225042939186,0.9613951160572469,-0.3924281937070191,0.3914950815960765,-0.9567168862558901,0.5173340174369514,0.3261888730339706,0.8542440216988325,-0.868944903369993,-0.9426914150826633,0.29480622382834554,0.8867981028743088,0.9164885426871479,0.3642173525877297,-0.7405535629950464,0.8486307188868523,-0.8628827347420156,0.07985373726114631,-0.01035880483686924,-0.6473818435333669,0.5717121469788253,-0.9767397628165781,-0.47800052678212523,-0.4251559958793223,0.4465598715469241,0.5911416462622583,-0.03526700008660555,-0.6933243409730494,-0.4589643352665007,-0.9769042623229325,-0.42868741462007165,0.7621531733311713,-0.5751489200629294,-0.9155534822493792,0.8235504659824073,-0.9187993337400258,-0.42166057089343667,-0.27214572159573436,-0.47147339349612594,-0.526609537191689,-0.6867693150416017,0.14892123360186815,-0.3581758728250861,0.8360455990768969,0.9352290285751224,-0.7828659927472472,-0.9749814285896719,0.22645894112065434,-0.56941510271281,0.6410567634738982,-0.7898217276670039,0.8522481210529804,-0.9290793398395181,0.5760513944551349,-0.5082550402730703,-0.15841973619535565,-0.40692020393908024,0.5104795251972973,-0.5859063700772822,0.7682740092277527,-0.618715887889266,-0.2711639944463968,-0.08361049555242062,0.0390584054403007,0.9208202445879579,0.9174500894732773,-0.775678071193397,-0.2908407151699066,0.4988667070865631,-0.1606020014733076,0.26610869448632,0.7664853679016232,-0.23234091140329838,0.06610357901081443,0.23075857385993004,0.4466657326556742,-0.8967258613556623,0.6494202185422182,-0.9824956930242479,-0.2975215623155236,0.08980857394635677,0.7896658112294972,0.9431173074990511,0.896151075605303,-0.6504135406576097,0.37380702793598175,-0.7760824365541339,-0.5279671470634639,-0.24214653950184584,0.7928179665468633,-0.9932275963947177,-0.4560172935016453,0.04119405010715127,0.8604889046400785,-0.42073075845837593,0.2224402967840433,0.21397671941667795,0.9981294595636427,0.456947329454124,-0.06739818956702948,-0.36539890663698316,-0.5676575992256403,0.9103767112828791,0.8884181524626911,-0.5776517554186285,0.6065135993994772,0.5946361431851983,0.07771294238045812,0.7262655827216804,-0.7060788669623435,-0.18299984792247415,0.14515137672424316,-0.32104686787351966,0.13694333471357822,0.993114355020225,-0.7543509304523468,-0.13819527439773083,0.13377140648663044,0.8711832105182111,-0.3698312323540449,-0.3081631171517074,-0.09126943117007613,0.0002499655820429325,0.8998653646558523,0.3182902215048671,0.08079317305237055,0.4122009640559554,-0.17252027476206422,-0.4967022077180445,0.24626121716573834,-0.6699702120386064,0.001110624521970749,-0.7507178443484008,0.35074655432254076,-0.11394117726013064,0.4292613728903234,-0.04306170390918851,0.21413307543843985,0.6579949581064284,-0.5180516983382404,0.7695593927055597,0.12195257470011711,-0.5696374187245965,0.2516125706024468,0.054723748937249184,0.5869659576565027,0.6708933636546135,-0.4296539193019271,0.13563699927181005,-0.24489565659314394,0.2469184515066445,0.9644596609286964,0.6757464618422091,-0.1324929464608431,0.958262222353369,0.48380755027756095,-0.08776769693940878,-0.31600408535450697,-0.15247949119657278,0.9278842001222074,0.9427892523817718,-0.6074645821936429,-0.18446802580729127,-0.8635799787007272,0.10533054172992706,-0.19783399580046535,-0.11064913216978312,-0.07907524006441236,0.6312363538891077,0.6199806951917708,-0.8702297462150455,-0.08172145625576377,0.07873379997909069,-0.4153342470526695,0.2846183143556118,-0.4716069302521646,-0.17812809348106384,-0.8041102960705757,-0.998949820175767,0.9334014602936804,0.8274024296551943,0.08294715732336044,-0.9728304813615978,-0.5361146125942469,-0.7213781648315489,-0.3754890742711723,-0.6095300880260766,-0.5074754566885531,-0.1426408551633358,0.08795323967933655,-0.8406476629897952,-0.8807884086854756,0.4265902084298432,0.3759595458395779,0.05055797193199396,0.7191962716169655,0.6343170087784529,-0.21013950509950519,-0.9584898855537176,-0.5760388476774096,-0.6860681986436248,-0.4526504063978791,-0.1302651409059763,0.31409128196537495,0.7408115146681666,0.4452884513884783,0.23981179669499397,0.5201160311698914,0.9500318500213325,0.8535608281381428,0.9405562672764063,0.5363576868548989,0.9100175006315112,0.5944655393250287,0.851041569840163,0.10890190862119198,-0.17661882983520627,0.032108445186167955,0.009302633814513683,0.5624996316619217,-0.6395464190281928,-0.5946649890393019,-0.16901506949216127,-0.8093360541388392,0.9761020066216588,-0.8345982669852674,-0.630378995090723,0.7631339645013213,0.15599598037078977,-0.9292168780229986,0.9052379978820682,-0.8174329097382724,0.7875151890330017,0.565664385445416,-0.10046618524938822,0.021407926455140114,-0.470341247972101,0.7254217020235956,0.8658953430131078,0.395994923543185,-0.23100340785458684,-0.4248608727939427,0.1719406070187688,0.4700082982890308,0.3307345490902662,-0.874939204659313,0.24888955429196358,-0.33001768589019775,-0.047692750580608845,0.08624468743801117,0.07611879147589207,0.2810972067527473,-0.022641544695943594,-0.4582141535356641,0.7808055300265551,-0.7260016365908086,0.36313937278464437,0.371436164714396,0.22059588553383946,0.29387691896408796,0.6498839207924902,0.42894652392715216,-0.5917560174129903,-0.03859269944950938,-0.19679733272641897,0.4284229464828968,0.6677961610257626,0.34181673638522625,0.8447768981568515,0.32690566359087825,0.7447283188812435,-0.06973076378926635,0.8019584622234106,-0.16914558690041304,0.3188372477889061,0.6235027341172099,-0.30850595189258456,0.9795396523550153,-0.6989374128170311,-0.13394296215847135,-0.9810512801632285,0.9593087253160775,-0.13613582402467728,-0.39945912221446633,-0.22288759658113122,0.7958833742886782,0.8737532193772495,0.3761726156808436,0.3140110354870558,-0.9058064143173397,0.8803920769132674,0.08750577131286263,-0.3105714409612119,-0.07186791766434908,0.6221532900817692,0.38946903962641954,-0.3004290503449738,-0.6990434993058443,-0.9992348738014698,-0.7070056344382465,-0.6225729747675359,-0.32628563791513443,-0.7074135346338153,-0.16608971171081066,0.9593882746994495,0.007570459507405758,0.6678972304798663,-0.7040796531364322,-0.9395592813380063,0.5861339392140508,-0.6153661771677434,0.7971733682788908,0.5269574248231947,0.20078382082283497,-0.5397884929552674,0.4625011691823602,-0.21930661937221885,-0.8442381909117103,-0.4771129973232746,-0.9282636949792504,0.7459563440643251,-0.4380902610719204,0.07058739475905895,0.14532202063128352,0.5902727451175451,-0.21677010226994753,0.5590580846183002,0.8467904576100409,-0.9872413543052971,0.671937121078372,-0.26554259937256575,-0.02766578271985054,-0.0194865632802248,-0.011055743787437677,-0.14774353569373488,-0.2628873526118696,-0.9203244340606034,0.23896660096943378,-0.9817684818990529,-0.4985700980760157,0.9413541140966117,0.6761408112943172,-0.7033142168074846,-0.9743684534914792,-0.3073469055816531,-0.049680840224027634,0.03901467891409993,0.23928773030638695,0.29530413588508964,-0.00032992614433169365,-0.615680614951998,0.9778933338820934,0.4094000388868153,0.19991095690056682,-0.07252486795186996,-0.3139124126173556,0.5211697658523917,-0.29172101942822337,0.3639374761842191,0.6931804376654327,0.1265181195922196,-0.5367343514226377,-0.6491471226327121,0.9938009288161993,-0.6509498092345893,-0.09517166344448924,0.8774960157461464,0.975194598082453,0.26442610193043947,-0.885883392766118,0.8337471913546324,0.06076837284490466,0.30645353626459837,-0.2852200288325548,-0.7426789314486086,0.39497279981151223,-0.7138963649049401,0.2666045157238841,-0.5421381136402488,-0.26442961767315865,0.8152756039053202,0.712541208602488,0.8195802210830152,-0.19545651460066438,-0.372669811360538,0.4304457535035908,0.8345270659774542,-0.3434192449785769,-0.5718173114582896,0.6734668123535812,0.6288057174533606,0.5254284129478037,0.6940172030590475,0.8473861822858453,-0.30769316339865327,0.05815209075808525,0.9239894077181816,0.8396365335211158,-0.2948642154224217,0.22686772886663675,-0.5306355082429945,-0.3389946944080293,0.46275009866803885,-0.3503099116496742,-0.07190743274986744,0.1592899588868022,-0.07110472209751606,-0.46118444250896573,-0.04730114061385393,0.9823681963607669,0.19308604951947927,0.701126113999635,0.6919165407307446,0.0939225316978991,0.4632777511142194,-0.41063087433576584,-0.2050677160732448,0.9610539297573268,0.9064766587689519,0.4988154275342822,0.9476546156220138,-0.8029023548588157,0.1188702997751534,0.895672329235822,0.31160104647278786,0.01944533782079816,-0.9793784841895103,0.9092704011127353,0.010366037953644991,0.449518206063658,0.6320345411077142,0.3179011163301766,-0.42097755474969745,-0.053992990870028734,0.4174242583103478,0.299524609465152,0.6308781835250556,0.2841524537652731,-0.8647824642248452,0.2014011493884027,0.6907195863313973,0.21543781785294414,0.8103299885988235,-0.7541321087628603,-0.10189299983903766,-0.7280146810226142,-0.9415430161170661,0.4385551167652011,0.9560735337436199,-0.9077676068991423,0.8558011455461383,-0.10695909475907683,0.29976522643119097,-0.2924985121935606,0.28638587100431323,0.4674221044406295,-0.9453821587376297,0.005965269636362791,-0.9065701952204108,-0.35415099328383803,0.5473105027340353,-0.7952361251227558,0.20493434742093086,-0.09344822261482477,0.10504453908652067,-0.6167820766568184,0.7545122411102057,0.9229030320420861,-0.4743060381151736,-0.4681700663641095,-0.6779027911834419,-0.7038180422969162,0.3890663916245103,-0.3720796201378107,0.8965929965488613,-0.1111863786354661,0.13266120199114084,-0.9049928672611713,0.2725869412533939,-0.5667863711714745,-0.09981735330075026,0.38383586145937443,0.7834848565980792,0.5027379365637898,0.5114530576393008,-0.4282210455276072,-0.39057296933606267,0.682907372713089,0.7849339745007455,-0.6014630715362728,0.015429710503667593,-0.9935213546268642,0.9849096839316189,0.9634768799878657,0.7360149403102696,-0.19372119987383485,0.24682460445910692,-0.5816026092506945,-0.8881491273641586,0.808326639700681,0.5458249179646373,-0.9354469082318246,-0.9438997148536146,0.43569856882095337,0.6244233828037977,-0.5675181467086077,0.37438782304525375,-0.44359520357102156,-0.5353009374812245,-0.8695638081990182,0.9708350962027907,-0.2700418564490974,-0.7201849557459354,0.34984104381874204,-0.36388131231069565,-0.3757315929979086,0.7347942274063826,0.36021282244473696,0.718656116630882,-0.02277604816481471,0.8683185367844999,-0.9646061267703772,-0.3363095405511558,0.20667624846100807,-0.1587371532805264,-0.7716981219127774,-0.19664262374863029,0.8430422781966627,0.827687609475106,-0.34946825075894594,0.38418510602787137,0.13379719061776996,-0.7687823646701872,0.05584374535828829,-0.43283116817474365,0.5591815318912268,0.01081653917208314,-0.502711548935622,-0.1208237991668284,0.3590149078518152,-0.6147583713755012,0.9295342513360083,0.9237083834595978,0.7783413282595575,-0.4384967624209821,0.5801120954565704,-0.793075988534838,-0.1769436253234744,-0.11338429152965546,0.30586256086826324,-0.18505018530413508,0.6972657898440957,-0.8228746554814279,-0.8817900801077485,0.7473488543182611,-0.6790215442888439,-0.6241524894721806,0.6191622535698116,-0.20017910562455654,0.14412023220211267,-0.3729558326303959,0.7277497346512973,0.7550265160389245,0.407966033089906,0.13669706042855978,-0.5876477686688304,0.08278862712904811,-0.5020126104354858,-0.4252618597820401,-0.4419104214757681,-0.902924198191613,0.5720131932757795,-0.052528984379023314,0.7065245336852968,0.5439293095842004,0.6649651662446558,-0.16596636176109314,0.02651176555082202,0.6580985630862415,-0.5228478009812534,0.13334468053653836,0.7468569995835423,0.35451658070087433,0.15711694536730647,-0.7165986080653965,0.2256524176336825,0.9235052233561873,0.6590060866437852,0.6374439289793372,-0.9719919245690107,-0.5099678328260779,0.16591009451076388,0.5847859303466976,0.5827954327687621,-0.4359405837021768,-0.10824185702949762,0.3776612086221576,-0.11917869374155998,-0.22084147110581398,0.6329748341813684,0.7831139303743839,-0.07669184356927872,-0.5508712381124496,-0.40915511082857847,-0.39438757160678506,-0.48543785884976387,-0.1557941441424191,0.40738122584298253,-0.5624481304548681,0.2036652029491961,0.8600121815688908,0.5501169646158814,-0.22131120087578893,-0.970582926645875,-0.9339495319873095,-0.39224764611572027,-0.6698529762215912,-0.03523143334314227,0.3050261954776943,-0.2708592223934829,-0.3893122742883861,-0.08070215536281466,-0.12524898163974285,-0.25614012917503715,-0.7238003988750279,0.7877135165035725,0.48063375847414136,0.49296791618689895,-0.22971562761813402,-0.7983384667895734,-0.10074946330860257,0.7165367002598941,-0.7920263013802469,-0.7231289092451334,-0.06663303915411234,-0.9345892067067325,0.7708867634646595,-0.4753489373251796,-0.7976595112122595,0.12361970590427518,0.6603635647334158,-0.718256379943341,0.3926485488191247,0.21271011512726545,-0.3542123278602958,-0.43399131717160344,-0.30680294428020716,0.12351969350129366,-0.6350160441361368,-0.23532716603949666,-0.7224836493842304,-0.06528223166242242,0.5106693799607456,0.7075060051865876,-0.19549284502863884,0.1489485651254654,0.8047392582520843,-0.34873581398278475,-0.51316441828385,-0.4581031259149313,-0.0725823906250298,-0.7730741128325462,-0.5011779302731156,0.851870437618345,0.9202847345732152,-0.3159145163372159,-0.02693807752802968,-0.7924204478040338,-0.08653725264593959,-0.6199660240672529,0.3688022019341588,0.7018829407170415,-0.8323606648482382,-0.5151512171141803,0.3538909121416509,-0.00915271695703268,-0.333410382270813,0.20594742987304926,-0.8393454207107425,-0.33364944253116846,-0.2292792685329914,-0.8783804262056947,-0.01796807162463665,-0.9241967503912747,-0.2082667788490653,0.19031449081376195,-0.9766201837919652,0.8806178355589509,0.7408595881424844,-0.12909328565001488,-0.5591351920738816,0.36014396138489246,-0.8163209562189877,0.7223205557093024,0.4807300381362438,0.021836136933416128,0.0843718838877976,0.28743309853598475,0.8906557760201395,0.7015330740250647,0.7514709834940732,0.8409014786593616,-0.32647624565288424,-0.7906724149361253,-0.26880159555003047,-0.9649057844653726,-0.9738646005280316,-0.6420426452532411,0.6296274643391371,0.7692827102728188,0.07704210001975298,-0.008046894799917936,0.9922054475173354,0.6422130847349763,-0.07297246577218175,0.19586726045235991,0.6115904813632369,-0.900372396223247,0.6690728855319321,-0.3117781775072217,-0.25430311914533377,-0.494793223682791,-0.0799160823225975,0.3206392419524491,-0.8877060846425593,-0.43865165300667286,-0.7158968816511333,-0.09351245034486055,-0.8269775146618485,0.44318531127646565,0.8977529387921095,-0.17545396741479635,0.015291209798306227,0.5300657306797802,-0.45232447888702154,-0.9486390696838498,-0.1315636932849884,-0.5885061356239021,-0.4550679298117757,0.45359121076762676,-0.4898623460903764,0.46439602691680193,-0.16415071859955788,0.03961810562759638,-0.44984966423362494,-0.3643415132537484,-0.38694648211821914,-0.4545527305454016,0.9694109344854951,-0.2672349284403026,0.2912274096161127,0.15586905227974057,-0.042813046369701624,-0.8205390605144203,0.46032503619790077,-0.9138824511319399,-0.9083062401041389,-0.13761698501184583,0.7530534234829247,0.8678773590363562,0.09914822783321142,0.9458870533853769,0.8018688973970711,-0.5296847685240209,-0.9647204745560884,0.06636573886498809,-0.34741379600018263,0.711863761767745,-0.6671700580045581,-0.12152568157762289,0.6011789976619184,0.13860053522512317,0.6722530825063586,0.5470851138234138,-0.9377454449422657,-0.8793533751741052,-0.16815525386482477,0.11700465809553862,0.28508128179237247,0.8303365651518106,-0.9815684496425092,-0.8295693853870034,0.5737582137808204,0.3800225970335305,0.01300833746790886,-0.1765296170488,-0.5578043726272881,0.7079377314075828,-0.2407084284350276,-0.9198737209662795,0.7755275820381939,-0.8188341525383294,0.03700603637844324,-0.5764643074944615,0.46953281108289957,-0.12975645530968904,-0.883217089343816,-0.7215322232805192,-0.3077691802754998,-0.9914819644764066,0.2569354809820652,0.21393549954518676,-0.06218119990080595,-0.659633201546967,0.7260157107375562,-0.7562863742932677,-0.3054150240495801,0.8698027054779232,0.5430697151459754,0.05479628825560212,0.9109186665154994,0.1850520269945264,-0.0689181056804955,0.6168165686540306,-0.7589743197895586,0.036432296968996525,-0.2195951184257865,-0.6522712120786309,-0.42943284567445517,-0.8380145598202944,-0.6813410371541977,-0.9525942443870008,-0.8913194295018911,0.3886726903729141,-0.3234171220101416,-0.5811221580952406,-0.9706144956871867,0.008827619720250368,0.419885003939271,-0.7967152199707925,-0.9084263909608126,0.04937120573595166,0.01589815877377987,0.8674390213564038,0.15840846858918667,0.8342202501371503,-0.5290811615996063,0.0648508183658123,-0.4440381759777665,0.5313356076367199,-0.6920163165777922,0.10970533965155482,0.588246479164809,0.0233274158090353,-0.16870636399835348,0.07281628111377358,0.2213318645954132,-0.2881996282376349,-0.6472725062631071,0.7847379660233855,-0.25289003923535347,0.9222285742871463,-0.10165747022256255,-0.9098212337121367,0.7711510951630771,0.45837871823459864,-0.43099311692640185,-0.03429124504327774,-0.14644129388034344,0.7193577121943235,0.1255096886307001,0.32303188974037766,-0.9580403710715473,0.1640213173814118,-0.39711255533620715,0.13120374083518982,-0.499461536295712,-0.07254656590521336,0.7736991778947413,-0.28813197929412127,-0.36876561027020216,0.9914473830722272,-0.7766223438084126,-0.41287571657449007,-0.9194240588694811,-0.6186883067712188,-0.9849731391295791,0.033516180235892534,-0.5920949103310704,0.17969069816172123,-0.6341119459830225,-0.018723017070442438,0.8303844672627747,0.4689375855959952,-0.6123763220384717,-0.06373804388567805,-0.6431902935728431,0.30770527431741357,-0.17775764595717192,-0.012693330179899931,0.5103143630549312,0.16679607285186648,0.8716362793929875,-0.6276165070012212,-0.7331708422861993,-0.0255603832192719,-0.9365930948406458,0.581664111930877,0.14240685245022178,0.9171986868605018,0.6454955670051277,-0.5082239634357393,-0.32648935122415423,-0.6062344363890588,-0.6891066832467914,-0.6594190280884504,-0.7581831431016326,0.7754054688848555,-0.22777962731197476,0.9412371004000306,0.9042349057272077,-0.2143628280609846,0.9043021476827562,-0.886124218814075,-0.916519982740283,0.4078285153955221,0.659061998128891,-0.4501317860558629,0.0005835965275764465,-0.7559924800880253,-0.6793533936142921,0.9701195941306651,-0.28477351227775216,-0.29987879283726215,0.8281112699769437,0.32339325407519937,0.7185965445823967,-0.06684560887515545,0.34982089325785637,0.7757192794233561,0.6953487833961844,-0.9387167613022029,0.8791075446642935,0.47532564448192716,0.05929186614230275,0.9610071838833392,0.7685350091196597,0.5257947072386742,0.40596751030534506,0.6046559577807784,-0.340601849835366,-0.14417939772829413,-0.550820508506149,0.5813702521845698,0.001668840181082487,0.9925628956407309,-0.2675328189507127,-0.9062367719598114,-0.9055894212797284,-0.2786598615348339,0.40053900331258774,0.05327522801235318,-0.3395346528850496,0.6914505618624389,-0.5629084492102265,-0.7648070231080055,0.30967206647619605,-0.2275410983711481,-0.6528675174340606,-0.41985916160047054,0.6732875485904515,0.5638362788595259,-0.3965070191770792,-0.36903977720066905,0.622014420107007,0.3158634239807725,-0.9176494195125997,0.08864698465913534,0.978580305352807,-0.06626445986330509,-0.4881150941364467,0.5921689900569618,0.36738610500469804,-0.2666332647204399,0.6515410859137774,-0.38113507255911827,0.37412209203466773,0.707131028175354,-0.7011280660517514,0.9923193091526628,0.9707741048187017,0.2802296760492027,-0.5682417610660195,-0.7551509765908122,0.14789082575589418,0.7850795178674161,0.024410008918493986,-0.34239775594323874,-0.573760807979852,0.29779707128182054,0.8757164203561842,-0.5444159060716629,-0.11199265904724598,0.3620343739166856,-0.24584037950262427,0.014723681844770908,-0.025052241515368223,0.9789065159857273,0.3189660171046853,-0.4177644783630967,-0.2891601575538516,-0.16033228999003768,0.7116620182059705,0.30589624401181936,0.2941545839421451,-0.5903576794080436,-0.26091611571609974,-0.1619029389694333,0.6501542371697724,-0.08390330895781517,-0.3436245038174093,0.7305688029155135,-0.6847559371963143,0.12657326320186257,0.7006477131508291,-0.438527419231832,0.2964721554890275,0.899012268986553,0.7496516173705459,0.47077674558386207,-0.31098852260038257,-0.2101552551612258,0.44265714613720775,0.9067699061706662,0.08833194384351373,-0.6652823556214571,-0.745056567247957,-0.010647719260305166,-0.2689288123510778,0.2236649440601468,-0.08540056040510535,0.37954198522493243,0.16663810145109892,0.15913380309939384,0.32344313198700547,-0.8275124584324658,-0.015624551102519035,0.7659283303655684,0.6035601175390184,-0.5637803766876459,-0.7793063153512776,0.5719488863833249,-0.42939219856634736,-0.5852607474662364,-0.34269850328564644,0.8480216502211988,-0.8863450158387423,0.4237683964893222,0.5309286513365805,0.9087005304172635,0.14439754653722048,0.38370902882888913,-0.779473421163857,0.11271427758038044,-0.17725913738831878,0.12652328377589583,-0.08278694609180093,-0.04609766602516174,0.3170200255699456,0.022562503814697266,-0.3633006573654711,0.7954331170767546,-0.845682879909873,0.8433459219522774,0.28844009013846517,0.685296063311398,0.9290285455062985,-0.3117766617797315,0.8273279936984181,-0.48284920351579785,-0.16523677576333284,0.01616127649322152,-0.03202863968908787,-0.10334628447890282,0.40291109029203653,-0.017791292164474726,-0.8079927596263587,-0.21857766015455127,0.9535208297893405,0.7792294435203075,0.86470502987504,-0.6042777649126947,0.0546638797968626,-0.7558775139041245,-0.40202823653817177,0.8196789310313761,0.8183312746696174,-0.07711526239290833,0.09576088190078735,-0.3958587599918246,-0.09468729561194777,0.709899690002203,-0.32633523968979716,0.2817144216969609,0.17347309552133083,0.08161878352984786,-0.11483487952500582,0.020865813829004765,0.3439650419168174,0.10884740296751261,-0.816554675810039,-0.1596657857298851,0.6399912666529417,-0.7900499440729618,-0.4989540446549654,-0.8543380154296756,-0.7156193563714623,-0.7147936732508242,-0.10999516723677516,-0.5375939384102821,0.24208526872098446,0.7577511896379292,0.07911581872031093,0.2813454526476562,0.6683413991704583,0.7652985937893391,0.08387698605656624,-0.4527625981718302,-0.6745875934138894,-0.4371978039853275,-0.5368688451126218,0.12755680177360773,-0.39362431317567825,-0.6997470916248858,-0.8684314880520105,0.597236551810056,-0.10673202155157924,0.8904271610081196,0.2203532261773944,0.9788836915977299,0.87052834732458,-0.1390965450555086,0.8723301342688501,0.24672889057546854,0.009017626289278269,0.496172864921391,0.7585497633554041,0.8659003591164947,0.6039959155023098,-0.2227889634668827,-0.5821817256510258,-0.6430980451405048,0.3395539615303278,-0.2295926152728498,-0.18081021262332797,-0.5872000488452613,-0.9979782309383154,0.6664753910154104,0.23530670022591949,-0.057572880294173956,0.9386896095238626,-0.563935010228306,0.17436599265784025,-0.25664423080161214,-0.321192835457623,0.21812586300075054,0.832792928442359,0.7618956710211933,0.01578246569260955,0.8969856672920287,0.8870848324149847,-0.6455404246225953,-0.4512090249918401,0.8215967672877014,0.38651513354852796,0.7405745219439268,-0.6665576850064099,-0.05800669966265559,-0.9484196370467544,0.02956939162686467,0.9270363296382129,-0.1327815898694098,0.8020560992881656,-0.6309834425337613,0.15338065987452865,-0.2961170584894717,-0.8392272628843784,0.9513073698617518,-0.9606848466210067,-0.5239427615888417,0.5801955414935946,-0.5350888534449041,0.036999672651290894,-0.10003669327124953,-0.017715356778353453,-0.7475315686315298,0.13313156086951494,0.6584421452134848,0.4431243762373924,0.29209911078214645,-0.91722242673859,-0.8876251042820513,-0.3612123327329755,0.912866567261517,0.9103342704474926,-0.6614728816784918,0.7659360924735665,0.3261176417581737,-0.8109723026864231,-0.921731062233448,-0.49689370580017567,0.3192645339295268,-0.23649362614378333,-0.4595661968924105,-0.17801462719216943,0.915671500377357,0.14538917876780033,-0.7970101539976895,0.06174716027453542,-0.8059725151397288,-0.2648753491230309,-0.4525753096677363,0.16246163146570325,-0.01816649315878749,-0.8270985400304198,0.0925538083538413,0.7069994350895286,0.890383368358016,0.8667712057940662,-0.639588532038033,0.5610841955058277,0.5571395168080926,0.9322010111063719,0.9930959548801184,-0.7147064632736146,0.4586232444271445,-0.08118650270625949,-0.1522250105626881,0.2554544978775084,-0.4251509811729193,0.9535774844698608,-0.9036449389532208,-0.1750812060199678,0.8117015664465725,-0.0992637942545116,-0.8210257249884307,-0.3049035854637623,-0.19206920731812716,0.9686639592982829,-0.5535532748326659,0.9000173676759005,-0.6121447831392288,0.15383768128231168,-0.041367230005562305,-0.34108917647972703,-0.811154177878052,0.8122996306046844,-0.05062518268823624,-0.2947707208804786,-0.44491276517510414,-0.5093870051205158,-0.2011304283514619,-0.8625858682207763,-0.723285311833024,0.47274103900417686,0.5559368119575083,0.6877269418910146,-0.7408272144384682,0.41709523973986506,-0.17535997880622745,-0.1781720514409244,0.03958094818517566,0.21298148576170206,0.7722152173519135,0.8390535335056484,-0.8513479116372764,-0.20182614214718342,-0.8764456300996244,0.4201914663426578,-0.14780238177627325,0.35308616887778044,0.08882611058652401,-0.7549199289642274,0.7332585388794541,0.9929532958194613,-0.3490282641723752,-0.43194880010560155,-0.25300585851073265,-0.9647883493453264,-0.8151212730444968,0.22761553199961782,-0.20733047183603048,-0.8999676899984479,-0.6107473354786634,0.5219715894199908,0.15652064001187682,-0.8179132235236466,0.5142126670107245,-0.8262790865264833,0.3024175870232284,0.6206744471564889,0.6319975219666958,0.13730059284716845,-0.047331849578768015,-0.29280314361676574,-0.5846496345475316,0.15999977197498083,-0.04633250646293163,0.9513281756080687,0.4380133468657732,0.008364601526409388,0.31218473613262177,0.43228450883179903,-0.9417189750820398,0.8617840753868222,0.8430063743144274,-0.9383380454964936,0.7016370450146496,0.8674896890297532,0.3448991561308503,0.08161618746817112,-0.03102121688425541,-0.0424635736271739,-0.4770356975495815,-0.4349014484323561,-0.3216167129576206,0.7706856750883162,0.9618131457827985,-0.9110920894891024,0.8331436207517982,-0.8611508132889867,-0.9757502051070333,0.9546491028741002,0.512597638182342,0.14489226788282394,-0.8677497301250696,0.43438152270391583,0.44952784292399883,0.5835279123857617,-0.4512406922876835,0.9322095941752195,0.46681635407730937,-0.31438961206004024,-0.7921904642134905,0.8565546767786145,-0.4678786378353834,-0.9552591433748603,-0.5227753575891256,0.5791446166113019,0.24803061038255692,0.48144806595519185,-0.9407788966782391,0.3142019174993038,0.3207675260491669,0.9948865165933967,0.8827769961208105,0.8512379582971334,-0.07080847537145019,-0.5312524228356779,0.2929591443389654,-0.5034484872594476,0.19448586646467447,0.2929697255603969,-0.4049406857229769,-0.7428270825184882,-0.38839325308799744,0.5612788372673094,0.5728980218991637,-0.23521413234993815,0.44849403109401464,-0.7599211074411869,0.3589709927327931,0.11935928324237466,0.21908440301194787,-0.6831297553144395,0.1126495935022831,0.4874594104476273,-0.04787383787333965,0.5429174611344934,-0.46305477852001786,-0.08198408130556345,-0.7473830468952656,-0.15551970293745399,0.9856403428129852,0.5756859849207103,-0.17028408870100975,-0.6711613112129271,0.6205573109909892,-0.019708573818206787,0.6460707620717585,0.37184651382267475,-0.6537139527499676,-0.5220982572063804,0.9196386132389307,-0.7968271905556321,-0.029968381859362125,0.7114873309619725,0.8977139117196202,0.3742987671867013,0.26696612732484937,-0.8431893731467426,-0.6143446508795023,0.9652547091245651,-0.4927860307507217,0.13313833018764853,0.17700742185115814,0.704961194191128,-0.616786730941385,-0.9925544718280435,-0.5030599483288825,-0.7498528277501464,0.10135076008737087,0.7485964954830706,0.2728814007714391,0.437452653888613,-0.9856860088184476,0.1749260793440044,-0.3530347109772265,0.14368754485622048,-0.6116112591698766,0.07514994777739048,-0.8844576617702842,0.17709848610684276,0.273288419470191,0.9040389717556536,-0.21824745228514075,0.23013371229171753,0.4914718787185848,-0.6365509042516351,0.849106770940125,0.24249365692958236,0.6287776567041874,0.9893691795878112,-0.5277391518466175,-0.20023705624043941,0.39226520201191306,0.02100287051871419,0.27267133817076683,-0.13042356399819255,0.5441813035868108,-0.8035267218947411,-0.4117354517802596,0.6015416490845382,0.934092394541949,-0.03544639144092798,0.022294125519692898,-0.37340488051995635,0.78537144837901,-0.6361269420012832,-0.24939970020204782,0.885983744636178,-0.6503203539177775,-0.7499482408165932,-0.025363272055983543,0.18270157417282462,-0.45725069427862763,0.03806759882718325,-0.03720922628417611,-0.16960557783022523,-0.03302333876490593,-0.39741286588832736,0.17953454051166773,0.33875976735726,-0.8648624857887626,-0.6835770062170923,0.7194770704954863,0.3084171931259334,-0.034073919989168644,0.5444550323300064,-0.69583590188995,-0.9019995830021799,-0.6815790007822216,-0.00676584942266345,0.13896513637155294,0.27762013766914606,0.5267306277528405,0.5653602099046111,-0.1423247684724629,0.6464043497107923,-0.5079925330355763,-0.5193032990209758,0.46929391752928495,-0.9377527786418796,-0.03015998098999262,-0.7097063502296805,0.6569435424171388,0.36924625281244516,-0.4599101855419576,-0.20208603562787175,0.08830772107467055,-0.03196241147816181,0.4914380321279168,0.9952380610629916,0.8632488562725484,0.9416766404174268,0.5382849429734051,-0.3505699783563614,-0.6680425019003451,0.7668463750742376,-0.885177408810705,-0.6044271197170019,0.5567127871327102,-0.6291267429478467,0.7366866208612919,-0.20554315485060215,0.1816467922180891,-0.9654721054248512,-0.17235688213258982,-0.5712059028446674,0.5456306510604918,-0.5292839030735195,0.08854381646960974,0.5203804494813085,0.536734904628247,-0.022424104157835245,0.11252305516973138,0.3771850969642401,0.8068284471519291,0.4360091625712812,-0.8011100864969194,0.3138309898786247,0.8849625904113054,0.649875913746655,0.1280529978685081,-0.8845311324112117,0.5811823904514313,-0.45940478844568133,-0.5154685094021261,-0.1320155649445951,-0.7689770562574267,-0.9884125329554081,-0.762440696824342,0.13806966925039887,-0.34188799327239394,0.42581641348078847,0.004337382968515158,0.9797469959594309,-0.34894529171288013,-0.9644040893763304,-0.5429309667088091,-0.4238608726300299,0.6277209683321416,-0.32766807172447443,0.96068897517398,0.022663927171379328,0.36223089089617133,0.6763253309763968,-0.9111279537901282,0.9973846822977066,0.6043396000750363,0.16061634896323085,-0.12352891266345978,0.18751986464485526,0.44320880249142647,0.7153017371892929,0.24154896661639214,-0.8598709623329341,0.1298668310046196,0.8195941634476185,0.5991856651380658,0.685508003924042,-0.289175134152174,0.5161703191697598,0.057356799487024546,0.3489774214103818,0.15941011859104037,-0.7791097331792116,0.49737511994317174,-0.7490159911103547,0.7333026109263301,0.11582638276740909,-0.919554565101862,0.8737170454114676,-0.6430653519928455,-0.17421863274648786,0.9990393882617354,-0.0065360115841031075,0.8351367190480232,0.3454804359935224,-0.5311010251753032,-0.6036992697045207,0.9640220878645778,-0.5129105476662517,-0.5349520375020802,-0.37059054616838694,-0.8442891542799771,0.5959553020074964,-0.5143315205350518,0.8133775228634477,0.6641832506284118,0.31286830455064774,0.6540295067243278,0.4076540404930711,0.4851896516047418,-0.6218946077860892,0.08990374021232128,-0.9300680765882134,-0.6630969359539449,-0.1522854440845549,0.09902049927040935,-0.49234888423234224,0.19767402578145266,-0.6333620869554579,-0.12193308211863041,0.1370551767759025,0.8347325655631721,0.4491040110588074,-0.9018773552961648,0.6939591965638101,-0.4990056911483407,-0.2560277278535068,0.37837871816009283,-0.5593676907010376,-0.45782739808782935,-0.163032628595829,-0.05206872383132577,-0.25516148284077644,-0.9790377332828939,-0.6541720125824213,-0.13712682761251926,0.27389906952157617,0.46043747616931796,-0.552218409255147,-0.5750152310356498,0.25189732387661934,-0.8533330000936985,0.8854947234503925,0.21966424072161317,-0.85005939938128,-0.9600319052115083,-0.27671403996646404,-0.015761729795485735,-0.2752706385217607,0.919847359880805,0.5740575981326401,-0.7811682261526585,0.5367628498934209,-0.10364321386441588,-0.6785497241653502,-0.15833539748564363,-0.5133609594777226,0.7477704272605479,-0.6271011624485254,0.13745771441608667,0.29216307355090976,0.9046221869066358,0.5483570704236627,0.24219011422246695,-0.9220905210822821,0.05666045378893614,-0.5504043465480208,0.30330807249993086,-0.6732208412140608,-0.32869059732183814,-0.2883588741533458,0.18418056052178144,0.3821941390633583,-0.17840380501002073,0.9014341556467116,-0.9535362059250474,-0.9982570284046233,0.1042261621914804,0.7934821811504662,-0.04307576781138778,0.28808538895100355,-0.16632649721577764,0.36110171489417553,0.31994183035567403,0.42502058297395706,0.20827064523473382,0.5293210349045694,0.6225313148461282,-0.9858397976495326,0.4621807602234185,-0.8393990914337337,-0.2721389797516167,-0.39986115135252476,0.2915742229670286,-0.014533531852066517,-0.22633569408208132,0.5794792203232646,0.3132439167238772,-0.4499562503769994,0.6247799843549728,0.009303892031311989,0.5245617288164794,0.7929970477707684,0.5233510979451239,-0.6891649700701237,0.6495798011310399,-0.5351471439935267,0.7774160583503544,-0.37634018901735544,-0.3707343377172947,-0.2425742163322866,0.7326156930066645,-0.4651633324101567,0.3566843527369201,0.24016314093023539,0.30059013376012444,0.2036862033419311,-0.8659328031353652,0.5596286337822676,-0.575868200045079,0.9543499913997948,-0.8030335130169988,-0.16652945149689913,-0.7375610982999206,0.5860245442017913,0.3139601042494178,-0.9136973256245255,0.9041821411810815,-0.4144769040867686,0.5338030098937452,0.8620414230972528,-0.09098898246884346,-0.8821586724370718,-0.9151076418347657,-0.920646543148905,0.8120241519063711,-0.8177551440894604,-0.15839241538196802,-0.13957844767719507,0.8495856961235404,0.9983603982254863,-0.7247141054831445,-0.46144281746819615,0.31478713173419237,-0.23013815935701132,-0.10825541568920016,0.7627972238697112,0.20577971590682864,0.21397365164011717,-0.7303620018064976,-0.9433466554619372,-0.3287052405066788,-0.9843204324133694,-0.5289655877277255,-0.5321706114336848,0.7154170018620789,-0.2253722371533513,-0.031599868554621935,-0.9263377324678004,-0.6448173867538571,0.9365804782137275,-0.7176910643465817,0.34382206527516246,-0.11852467665448785,0.6027880655601621,0.30107361543923616,-0.01703697955235839,0.902732293587178,-0.6338746240362525,0.38727232720702887,-0.6307765231467783,0.6493952474556863,0.8014120068401098,0.9707218948751688,0.12420278461650014,-0.07029130542650819,0.9843798032961786,0.4805524800904095,0.48049120092764497,0.9869119222275913,0.9827292780391872,0.6061058528721333,0.9897635881789029,-0.21804511966183782,0.37558014784008265,0.5400557583197951,0.8401326816529036,-0.5391584108583629,0.6698213331401348,0.09130361396819353,0.9968990879133344,-0.25608544796705246,0.3654019641689956,-0.599730999674648,0.20744455745443702,-0.48001673351973295,-0.6610415452159941,0.6557746673934162,-0.8038002620451152,-0.9303157441318035,0.42034169426187873,-0.7451614956371486,0.5010868897661567,-0.6349607836455107,0.7923094448633492,-0.5318404217250645,-0.6426626872271299,-0.49208891997113824,0.5351458261720836,-0.698222819250077,0.40165349328890443,0.4036694220267236,-0.06469367165118456,0.7119329809211195,0.6818963810801506,0.9757846775464714,-0.24161604279652238,0.7570419204421341,-0.1331100077368319,-0.20797019684687257,0.6831588824279606,-0.11702238908037543,-0.5463672196492553,0.7586796386167407,0.7031008512713015,-0.05533473705872893,0.7984225782565773,-0.48927053436636925,0.6231733299791813,-0.32628349773585796,0.3084267103113234,-0.9134593759663403,-0.2465447704307735,-0.6863784049637616,-0.7228606343269348,0.28862282866612077,-0.2667839266359806,0.02048748265951872,-0.387820762116462,0.875635102391243,0.8842728701420128,0.9882767582312226,0.9553120452910662,0.453000552020967,-0.4933807444758713,0.32983232475817204,0.6441601724363863,0.6844893079251051,0.38330115331336856,0.8172989459708333,-0.10627425415441394,-0.03956472082063556,-0.34427650505676866,0.7309551830403507,-0.9917572494596243,-0.781121457926929,-0.372413978446275,0.42080695973709226,0.7609494337812066,-0.6372039723210037,0.740878832526505,-0.0680318814702332,0.3193516409955919,0.9715761314146221,-0.9190864195115864,-0.2661599237471819,-0.9178321738727391,-0.47483978932723403,0.8577703833580017,-0.4230596940033138,-0.8116087378002703,0.8741815332323313,-0.7416588272899389,-0.36758290603756905,0.010474382434040308,-0.5323459766805172,-0.747567665297538,0.37006460642442107,-0.9495006683282554,0.29061531368643045,-0.1254482064396143,-0.6962005910463631,-0.8722207993268967,0.3477846225723624,0.2623709090985358,-0.7574474797584116,0.2503908909857273,0.4354322273284197,0.6079023601487279,-0.8245290732011199,0.487109140958637,-0.5890886089764535,0.3900972199626267,0.4869996914640069,-0.43340621097013354,-0.38425813848152757,0.5128448009490967,-0.5161243975162506,0.7744211908429861,-0.643543244805187,0.8322069807909429,-0.651484178379178,-0.5401053568348289,0.6282080821692944,-0.3453001477755606,0.28946820460259914,-0.4981713891029358,-0.4549952703528106,0.6087182564660907,0.0048172203823924065,-0.06952866120263934,-0.8401021207682788,-0.4947802103124559,0.9219441576860845,0.3243908593431115,-0.5705244401469827,0.8354064761660993,-0.722355361096561,-0.23368959315121174,0.03666938887909055,-0.7469140952453017,-0.5441413214430213,-0.8417858616448939,-0.23603075090795755,-0.8203115905635059,-0.4054365735501051,0.26740687247365713,0.33824689453467727,0.16428308933973312,-0.5536842928268015,0.9870545389130712,-0.7136062839999795,0.4925659382715821,-0.25747241638600826,-0.5721132988110185,0.9857712471857667,0.08169245533645153,0.5449477508664131,-0.8998034438118339,-0.20933993952348828,0.8373596300370991,0.8780494392849505,-0.242896337993443,-0.025910690426826477,0.8827808196656406,0.20464993361383677,-0.2494958434253931,-0.2528933142311871,-0.34034900879487395,-0.8520083269104362,-0.06349290627986193,-0.7758408794179559,-0.25854408647865057,0.8588496795855463,0.17652232572436333,0.3641130053438246,0.2823973330669105,-0.7002009646967053,-0.4363862411119044,-0.9271697830408812,0.07770517095923424,-0.9122984493151307,-0.9136414052918553,-0.2814454291947186,-0.7475667521357536,0.8926533395424485,-0.11572459107264876,-0.10478061949834228,-0.7263319077901542,0.40241875033825636,-0.3212536000646651,-0.04378022253513336,0.9074214659631252,-0.4596687378361821,-0.3573036892339587,0.48057401552796364,-0.2775994064286351,0.9545969679020345,0.30585145950317383,-0.45943343406543136,-0.9348442144691944,-0.13281585788354278,0.6883591371588409,0.7399205043911934,0.9373324275948107,-0.7033117841929197,-0.7856608470901847,0.09869574895128608,0.4707868383266032,0.7638241234235466,-0.25748708425089717,-0.7277835048735142,-0.34444944141432643,0.8869034182280302,0.4674680829048157,-0.3119409126229584,-0.4909403300844133,-0.7486255266703665,-0.7280595358461142,-0.5460020499303937,0.017630995251238346,-0.5839797020889819,0.735681633464992,-0.1650667330250144,0.812420922331512,0.31845527794212103,0.18869294924661517,-0.8315180190838873,-0.9317934233695269,0.8667524699121714,0.8850457994267344,-0.780170398298651,-0.2080402453429997,-0.9537645662203431,-0.1903247833251953,-0.48810068937018514,-0.16969215823337436,-0.7482852130196989,-0.8538345634005964,-0.39484373899176717,-0.0016234670765697956,-0.6802286757156253,-0.8508300455287099,0.19600560003891587,0.10617254162207246,0.1564522096887231,0.6353901657275856,0.7165552549995482,-0.8615276622585952,-0.4066026546061039,0.5591241158545017,0.04986747773364186,-0.5351682254113257,-0.7372983740642667,0.15925977332517505,0.5884701530449092,0.6105939373373985,-0.019759675953537226,0.6355293584056199,-0.6775302481837571,0.780975298024714,-0.5327067649923265,-0.7307873074896634,0.32549579814076424,0.09587157843634486,-0.23216025810688734,0.42922933492809534,0.682169284671545,-0.35345107642933726,-0.21673200791701674,-0.9375213924795389,-0.40398308960720897,-0.7627497166395187,-0.11593976151198149,0.22103017242625356,-0.7301380294375122,-0.7344159311614931,0.022679736837744713,-0.1450814101845026,0.695522447116673,0.3862382513470948,-0.5328696980141103,0.2901549767702818,0.6752673904411495,-0.042394560761749744,0.8116068290546536,0.7554709450341761,-0.8942816937342286,-0.3690121038816869,-0.8933151788078249,-0.945105233695358,0.1834548907354474,0.8836569590494037,-0.4865034013055265,-0.8523079720325768,-0.013084398582577705,-0.002064990811049938,0.9911679564975202,0.45956800784915686,-0.308382470626384,-0.7391955484636128,-0.49134150333702564,-0.03326338063925505,0.8948593526147306,-0.5768003417178988,0.05492115253582597,-0.17072330368682742,-0.5268635796383023,-0.24123246828094125,-0.22658483358100057,0.7138220393098891,0.5250672516413033,-0.785205997992307,-0.286900797393173,0.6939392480999231,0.5981881688348949,0.5027674427255988,-0.9059571670368314,0.15377294644713402,0.7138115842826664,0.40751174464821815,-0.22584846941754222,0.7031836737878621,-0.9384599458426237,-0.5404961807653308,-0.2568730995990336,0.6856396300718188,-0.8383557936176658,0.43189341481775045,-0.8182376408949494,-0.3547538509592414,-0.2561655845493078,0.29762329813092947,-0.10156627185642719,-0.41839256696403027,-0.1645826487801969,0.4925442971289158,0.5738105461932719,0.010336458683013916,0.9471881352365017,0.5158281410112977,0.8919488722458482,0.4893306763842702,-0.87157185934484,0.19425420323386788,0.2778599741868675,0.05598217761144042,-0.9491014997474849,0.8024848303757608,0.7739808005280793,-0.5516091804020107,-0.1599821075797081,-0.966596994549036,-0.33989208238199353,0.9247680651023984,0.11881602322682738,-0.09704744908958673,-0.12983197765424848,-0.6434221216477454,-0.7497152164578438,-0.5900747911073267,-0.7697096141055226,-0.15955063421279192,0.3574012415483594,0.3058183337561786,0.6564173107035458,0.4064625599421561,-0.4182212008163333,-0.07440667739138007,-0.06376167805865407,-0.15453532803803682,-0.8123507308773696,-0.6782364048995078,0.20206650765612721,-0.7951090577989817,-0.6809037891216576,-0.295540236402303,-0.7343082744628191,0.21840219339355826,0.4908735975623131,0.5599751602858305,-0.9564588060602546,-0.2058970294892788,-0.8839417560957372,-0.7208682834170759,0.9094932810403407,0.04223809763789177,0.11964982422068715,-0.9472001208923757,-0.41985830338671803,0.31834228429943323,-0.8353288592770696,0.9848553817719221,0.2359226173721254,-0.25436092307791114,0.6470471862703562,-0.8698040996678174,0.8029134906828403,-0.42617655871436,0.3962553162127733,0.08973615197464824,-0.5734195220284164,0.14607902895659208,0.5166038484312594,0.8210798827931285,-0.12420438230037689,0.9006552393548191,0.2551772086881101,0.3183578629978001,0.09429305326193571,-0.327749396674335,0.741333369165659,0.05740355467423797,-0.5835286462679505,-0.44630238972604275,-0.29836058523505926,-0.059697963297367096,-0.12069152016192675,0.1167414290830493,-0.8161809463053942,-0.23954069195315242,-0.815445305313915,-0.15233391895890236,-0.28402814641594887,0.41755971452221274,0.6380486614070833,0.7376139741390944,-0.32499429816380143,0.16712166834622622,-0.29568419605493546,-0.5413739630021155,-0.8408905756659806,-0.7263501835986972,-0.2591820312663913,0.16559087531641126,0.7463831603527069,-0.5035428330302238,0.939777874853462,0.6778942062519491,-0.46378973592072725,-0.182844128459692,-0.08369685336947441,-0.6277848384343088,-0.22340760519728065,0.37623481499031186,-0.5901527306996286,0.42955399584025145,-0.9704477111808956,-0.4976458474993706,0.819913340266794,-0.06943572172895074,0.719655420165509,-0.2333211312070489,0.24378533801063895,-0.9840707657858729,0.7669450617395341,-0.06287340819835663,-0.5204781237989664,0.5112066916190088,0.11072040535509586,-0.5292276949621737,0.653626861050725,-0.10330490069463849,-0.11553953867405653,-0.9466528026387095,-0.2142634685151279,-0.7770743705332279,-0.9700589408166707,0.08798138750717044,0.02209079172462225,-0.4587862645275891,0.8161780177615583,-0.17260747822001576,-0.3346097986213863,0.18036109628155828,-0.6990520064719021,-0.345428048633039,-0.8132611997425556,-0.628028882201761,-0.0247412770986557,0.05119309946894646,0.0032905712723731995,-0.9184312210418284,0.8151282267645001,-0.6229229094460607,-0.326853106264025,-0.8366442918777466,-0.6385770728811622,-0.7656732075847685,-0.8842544569633901,0.15839505149051547,0.2562609165906906,-0.6802000789903104,0.8123857202008367,-0.3840875728055835,0.910422335844487,0.5040336800739169,0.7905473280698061,0.19114325335249305,0.1546503771096468,-0.1472486462444067,0.8285698494873941,-0.6603155555203557,0.5733055509626865,-0.8556279046460986,0.8105870964936912,0.5881966929882765,0.18914913898333907,0.34776947973296046,-0.8874540268443525,0.8875940102152526,-0.32064360845834017,0.7800164800137281,0.057961100712418556,0.11572572216391563,0.8574353153817356,0.8200950385071337,0.7654470093548298,-0.9026204375550151,-0.6146333133801818,0.858171109110117,-0.11908713029697537,-0.15762506518512964,-0.9558578836731613,-0.0879122274927795,0.6522298767231405,0.7931055463850498,-0.1581526198424399,-0.046134090051054955,0.39443552820011973,0.018003568053245544,0.9534882591105998,0.35049449978396297,-0.3564333217218518,-0.5081050591543317,-0.7124202121049166,0.025176236405968666,-0.022950778249651194,0.2751691350713372,0.22446125652641058,-0.49424258107319474,-0.5607378277927637,-0.6876227715983987,-0.27533184504136443,0.2796214479021728,-0.028941919561475515,-0.9469390916638076,0.5632902267389,0.6290191728621721,-0.07790794502943754,-0.2452212912030518,0.8668026844970882,0.15161952609196305,-0.06662713922560215,-0.894173048902303,-0.564376812428236,-0.3316469402052462,-0.14827173808589578,-0.4948180937208235,-0.1898610251955688,-0.7825282379053533,-0.3912732186727226,0.13553526485338807,0.4786444236524403,-0.8659721841104329,-0.9411646304652095,-0.34376037353649735,-0.11677993554621935,-0.6879560253582895,-0.7873868155293167,-0.6379408803768456,-0.3710241881199181,0.078781149815768,0.46728638652712107,-0.9931222172454,0.18654225207865238,-0.7141961972229183,-0.9217870873399079,-0.37978369230404496,-0.6717424150556326,0.5528981285169721,0.8073151423595846,-0.7519527836702764,-0.6295299916528165,0.04508657893165946,0.862039634026587,0.2744183670729399,0.8634075773879886,-0.5135883749462664,0.07030672859400511,-0.6725101470947266,-0.5130392857827246,0.3527150470763445,-0.06112559046596289,-0.7948026251979172,-0.02351470524445176,0.642412188462913,-0.6046127290464938,0.5386294261552393,0.27695699501782656,-0.06323086423799396,-0.38937226217240095,0.19446106161922216,0.5810810541734099,0.3852905621752143,-0.01588403107598424,-0.42073752311989665,-0.2690015737898648,-0.9879986448213458,-0.23655959498137236,-0.5738889677450061,0.987413942348212,0.009149560239166021,-0.8171664574183524,-0.8889367813244462,0.45587753923609853,-0.5695340167731047,-0.9941063495352864,0.7290901439264417,0.09362322557717562,-0.13384453859180212,0.5244421432726085,0.5776153532788157,0.48254109267145395,-0.04183498537167907,0.7796435267664492,0.11937086330726743,0.153153904248029,-0.5535636669956148,-0.7034705886617303,-0.02809077315032482,0.9221673794090748,-0.6562262461520731,0.7158155436627567,0.936772801913321,0.06757682422176003,-0.9385862094350159,-0.49328348878771067,0.3291622423566878,-0.9385726386681199,0.5245007150806487,-0.18709066044539213,-0.890676629729569,-0.2525997431948781,-0.10572084411978722,0.10123688727617264,0.45292835030704737,0.3765794485807419,-0.20748383877798915,0.9084015642292798,0.3136215745471418,-0.10092886909842491,0.9164776629768312,0.270517623052001,-0.09815761493518949,-0.7829582109116018,-0.5687880693003535,0.7072842926718295,0.2723031733185053,-0.8835201943293214,0.030826838221400976,-0.5637002433650196,0.38238077564164996,0.7617799793370068,-0.7941479184664786,0.8192472406663001,0.23160240286961198,0.8629444255493581,0.979838059283793,0.5076023037545383,-0.6846134793013334,0.026318321004509926,-0.9807805623859167,-0.4777598511427641,0.7051948606967926,0.03674540249630809,0.7985097006894648,0.6976574272848666,-0.9060649923048913,-0.7417532661929727,-0.9613151089288294,0.21098817139863968,0.5983732747845352,0.27575751300901175,0.6243787133134902,0.351754532661289,-0.878832224290818,0.8022027197293937,0.8784127151593566,0.7511101556010544,0.3426087354309857,-0.335012624040246,-0.2247049161233008,0.05285915732383728,-0.11497442238032818,0.08050456270575523,0.6926484266296029,0.5904103424400091,-0.39743858808651567,0.1727763987146318,-0.8743067840114236,-0.4957785536535084,0.9568627043627203,0.5482830083929002,-0.49562625074759126,0.8005654462613165,-0.9214043230749667,-0.8259868174791336,0.6638265480287373,-0.032384734600782394,0.6791312485001981,-0.3312718700617552,-0.8817385141737759,0.9074285193346441,-0.8989406148903072,-0.2292001424357295,0.7070888024754822,-0.5933028738945723,-0.3617644631303847,0.4586838665418327,0.4283932177349925,0.10629711113870144,-0.5280249123461545,0.7076704641804099,0.059344109147787094,0.3404310951009393,-0.17261404218152165,-0.08805823512375355,0.3664139830507338,0.1699220770969987,-0.5153019074350595,-0.6150485132820904,-0.38595864921808243,0.0028212335892021656,-0.7212502299807966,-0.6842775498516858,0.28957785572856665,0.8351397393271327,-0.09306422341614962,-0.12131141312420368,0.3969507501460612,0.9659102135337889,0.104743214789778,-0.6503357198089361,-0.0005417894572019577,0.827227215282619,-0.711742171086371,-0.6710493951104581,-0.503012839704752,-0.39742115093395114,0.7062587165273726,0.747060798574239,-0.015208160039037466,0.8913965155370533,0.7056530499830842,0.7452541873790324,-0.005624181590974331,-0.4464812562800944,-0.3256917684338987,-0.08365679997950792,-0.27570697851479053,0.19675796944648027,0.7266435446217656,-0.43650694610551,0.9120248705148697,0.3156376779079437,-0.6924777668900788,0.6008159448392689,0.29869077261537313,0.40643377555534244,-0.059455111622810364,0.10456804279237986,-0.6473238435573876,0.640578452963382,-0.37429061299189925,0.10567917441949248,-0.06942749070003629,-0.020893008448183537,0.40144640672951937,0.046399949584156275,0.042041454929858446,0.7960104625672102,-0.9098935788497329,-0.6132550928741693,0.36762838065624237,0.2278401399962604,-0.14467937219887972,0.5611074664629996,-0.08966670325025916,-0.023528252262622118,-0.2364855082705617,-0.24386454839259386,-0.18979167472571135,-0.6917242780327797,0.9656305718235672,0.7741391700692475,-0.15736989304423332,-0.216816121712327,-0.3574914005585015,0.21760948887094855,-0.3881901237182319,-0.007487757597118616,0.6964091341942549,-0.10071727819740772,0.6421806802973151,-0.5869900025427341,-0.9432817134074867,-0.5734238815493882,-0.2102852137759328,-0.8423860720358789,-0.4720178693532944,-0.7961807153187692,-0.5009506102651358,-0.3995085493661463,0.41397849610075355,0.20303656766191125,0.0332978586666286,-0.23841359978541732,0.0353202223777771,-0.9076751219108701,-0.41244663018733263,-0.551747165620327,0.5667587020434439,-0.9446240086108446,0.6200378034263849,0.9374061063863337,0.8710361276753247,-0.3922425894998014,-0.016831568907946348,-0.3437789110466838,0.5400208276696503,-0.9152840063907206,-0.6982858334667981,0.4137103180401027,0.9731476856395602,-0.4415004029870033,-0.19587503047659993,-0.23688659071922302,-0.04642259702086449,-0.47590320417657495,0.17657785909250379,-0.8319995761848986,-0.1279616574756801,0.6730404831469059,-0.3652589409612119,0.7146961749531329,-0.7825761111453176,0.7274822392500937,-0.6699178563430905,0.3747333725914359,-0.0013459324836730957,0.4933759677223861,-0.18170154094696045,0.26678717555478215,-0.8860963634215295,0.21852327371016145,-0.31330198189243674,0.24159877095371485,0.706973206717521,0.7359546101652086,0.37366354186087847,0.9105925923213363,-0.023785056080669165,-0.07112039718776941,-0.9886300885118544,-0.32619474735111,0.6747102201916277,0.10569705814123154,-0.1785656763240695,-0.7588008809834719,-0.7048808988183737,-0.9609080068767071,-0.38376607233658433,-0.6252402225509286,0.7292766482569277,-0.2039037006907165,0.5708370800130069,0.6389792542904615,-0.6744532133452594,-0.34007804561406374,0.15429611084982753,0.3324868637137115,0.19614296313375235,-0.4791502305306494,-0.5194340562447906,-0.7828861866146326,-0.24490290135145187,0.3673235662281513,0.08155512902885675,-0.6622531027533114,-0.12086012493818998,-0.19744001934304833,-0.40587618248537183,0.14884114172309637,0.9100387007929385,-0.37739621475338936,0.4727675002068281,0.514582353644073,-0.7802844885736704,0.19623806001618505,0.07175144692882895,0.48434642143547535,0.26511667435988784,0.9178787325508893,0.5600427221506834,0.5017722882330418,-0.8459477424621582,0.6396288513205945,-0.9630463165231049,-0.6003773827105761,-0.41801466420292854,-0.6898308112286031,-0.03579783998429775,-0.1753162732347846,-0.7280708397738636,-0.14860701467841864,0.5803373879753053,0.6548340800218284,-0.9670675033703446,-0.6046239673160017,-0.9414142183959484,0.30960147455334663,0.6876568179577589,-0.4652999150566757,-0.5230137943290174,0.04442198621109128,-0.21597984991967678,0.6729652271606028,0.5510400645434856,0.06383340200409293,0.5748735363595188,-0.1523533216677606,0.4472122164443135,-0.7938425950706005,-0.7255271347239614,-0.9529204503633082,0.7339156125672162,-0.25961418682709336,-0.8251490262337029,0.8245292459614575,0.88548434805125,-0.40500859497115016,-0.7537466529756784,0.164294324349612,0.10007758717983961,-0.8078365214169025,-0.11425339384004474,-0.958807585760951,0.3059276477433741,0.31030638609081507,-0.894927489105612,0.49266377091407776,-0.9448398109525442,0.9711607284843922,0.3524861568585038,-0.5745668122544885,-0.9028554195538163,0.06125969206914306,0.20014283945783973,0.6584650403819978,0.13546517537906766,0.048841431736946106,-0.8416193905286491,-0.44526576111093163,0.7511732159182429,0.9225510405376554,0.42883972777053714,-0.6635746066458523,-0.19639733200892806,-0.5400177384726703,0.21150747779756784,-0.6857683579437435,-0.7805269034579396,-0.21914956346154213,-0.003560174722224474,-0.3262534746900201,0.37709514098241925,0.14228762732818723,0.09694621851667762,-0.8147694673389196,0.8475933806039393,-0.41696011228486896,-0.1728811631910503,0.3220177278853953,0.3859346085228026,0.3735436797142029,-0.22473936807364225,0.4508097441866994,-0.1308531896211207,0.5887523898854852,-0.7473818510770798,0.4191889027133584,0.5626995316706598,-0.6646908782422543,2.994667738676071e-06,0.5413803574629128,-0.5043064467608929,-0.45199623238295317,-0.7614487907849252,-0.5358369392342865,0.6508131674490869,0.3430707990191877,0.2716618627309799,0.9704921301454306,-0.4512068135663867,0.8648977275006473,0.42568126460537314,0.810557444114238,-0.22021658811718225,0.8437970299273729,-0.4732103063724935,-0.9175030770711601,0.6925513539463282,-0.14250010438263416,0.24595874035730958,-0.6579786036163568,-0.4278032537549734,0.2638494851998985,0.2308773580007255,0.7069125436246395,0.2955660494044423,0.8319652555510402,-0.26627525221556425,-0.08202873356640339,0.7036920674145222,-0.8139816639013588,0.5910332477651536,0.1975143365561962,-0.11082415468990803,0.3344833943992853,-0.6858084006235003,0.6694184145890176,-0.7249544146470726,-0.9985308353789151,-0.6749387038871646,-0.9148989408276975,-0.7017556452192366,-0.0780414785258472,-0.4902782649733126,0.066744489595294,-0.663189415819943,0.7797023635357618,0.4507058849558234,-0.18460690509527922,0.6019183564931154,-0.6602538437582552,0.27666580816730857,-0.20683596655726433,0.5811533103697002,-0.9209973025135696,-0.004233752842992544,-0.08945648511871696,-0.8879277808591723,-0.198856842238456,-0.09271026402711868,0.1459835502319038,-0.2982702343724668,0.2547559095546603,-0.42812948068603873,0.3206987362354994,0.848552965093404,-0.6494782301597297,-0.15935365995392203,0.718965329695493,-0.17398854345083237,0.8481584801338613,0.8713293485343456,0.9025883045978844,-0.741054889280349,0.32701032515615225,0.40533249359577894,0.7086403174325824,-0.05319275427609682,0.6710109049454331,-0.663502189796418,-0.7878881278447807,0.5835681557655334,-0.05396511824801564,-0.8508881996385753,-0.23405077029019594,-0.7773233149200678,0.9186906954273582,-0.5128947333432734,-0.9334740350022912,-0.31021617026999593,0.7074695802293718,-0.9546728325076401,-0.2412605327554047,0.040067323949187994,-0.7777812364511192,0.48626724863424897,-0.29159747902303934,0.5203402885235846,0.5541709968820214,-0.6409628293476999,0.06574066495522857,-0.7564529869705439,-0.046656261663883924,-0.23344050301238894,0.029373010154813528,0.8217297228984535,0.6962987668812275,-0.20083926245570183,-0.8354238732717931,0.09789827698841691,-0.679777910001576,-0.4266201057471335,-0.9689475242048502,0.6486099800094962,-0.7719627148471773,-0.12905529281124473,0.0223304838873446,-0.6765059465542436,0.7609847085550427,-0.37569607933983207,0.9050630102865398,0.9916857150383294,0.21357404021546245,-0.5677665239199996,-0.705435608047992,0.47807603096589446,-0.3635492115281522,0.346731545869261,0.35626100981608033,-0.9175575482659042,0.1463792324066162,-0.3286443194374442,0.8099824883975089,-0.9989095805212855,0.01885793823748827,0.26941151078790426,-0.2867705784738064,-0.5043118079192936,-0.6767208455130458,-0.1476570456288755,0.8708540755324066,-0.2293976340442896,-0.6178105650469661,0.014975321944803,-0.8032277910970151,-0.8496331302449107,-0.5925988513045013,0.623296785634011,-0.9448608919046819,-0.7997675337828696,-0.049286842346191406,-0.21956081595271826,0.660737787373364,-0.46950666746124625,0.7815533052198589,0.12470571557059884,0.5494148987345397,-0.712001133710146,0.2711955183185637,0.2210504417307675,-0.3123865220695734,0.47135695442557335,-0.3615215066820383,0.7425325200892985,-0.9814897431060672,0.4224702687934041,-0.062454366590827703,-0.979790726210922,-0.9501976566389203,-0.03804133553057909,0.07867924310266972,0.4706341680139303,0.9207776263356209,-0.37564745219424367,0.681265324819833,0.47766854567453265,-0.5604368173517287,-0.8135996996425092,-0.04283603560179472,-0.48444171715527773,-0.7637939085252583,-0.5927876327186823,0.7574250097386539,-0.18729822989553213,-0.6206451058387756,0.609949704259634,-0.8485286817885935,0.9831141270697117,0.9824158549308777,0.8574482328258455,0.6529136602766812,-0.8813178329728544,0.16586484806612134,-0.3860736256465316,-0.33197023440152407,0.7348674470558763,-0.5745751084759831,0.25883129611611366,-0.6275852811522782,0.2599108098074794,0.10354384500533342,-0.9436073936522007,-0.25082318438217044,0.7517219912260771,-0.7448346563614905,-0.5501498901285231,0.07052401546388865,0.12434884533286095,0.5612511676736176,-0.17912138160318136,0.8162360340356827,-0.4224869441241026,0.27972551668062806,-0.9071771833114326,-0.8229932119138539,0.4000633074901998,0.586046954151243,0.051817615050822496,0.054826884530484676,0.9099660231731832,-0.6542017622850835,0.17181466054171324,-0.4024913217872381,0.6021214635111392,-0.6331571056507528,0.44526683632284403,0.7923758304677904,-0.20326652936637402,0.8295820029452443,-0.5094745457172394,-0.7924832804128528,-0.27609638264402747,-0.47178788110613823,-0.9983318145386875,-0.24285384360700846,0.39997784374281764,0.8323845933191478,0.4260676298290491,-0.14390871673822403,-0.9459274774417281,-0.24902113433927298,0.9222167325206101,-0.299836368765682,0.7268416373990476,0.6306571550667286,0.59663519077003,-0.538168833591044,-0.7608661125414073,0.8849106011912227,-0.9506034650839865,0.258366818074137,-0.31265401281416416,0.9098037383519113,0.9914151676930487,-0.44638624927029014,-0.8797556459903717,-0.2060649641789496,0.9038274921476841,0.7901546726934612,0.767364798579365,0.7962580746971071,0.4956687423400581,-0.7742230291478336,0.9360569161362946,-0.046893693041056395,0.6573647637851536,0.3168980376794934,0.2593053407035768,0.5902019967325032,0.970503019168973,-0.24639014061540365,0.1284851194359362,0.6426726565696299,-0.743454054929316,0.4082941524684429,-0.5050108837895095,0.5194804384373128,0.18980022286996245,0.4252847642637789,-0.44104192731902003,-0.20149705139920115,0.22644314682111144,0.2581139449030161,-0.11459694057703018,-0.3394909845665097,-0.564983899705112,0.5826831576414406,-0.719689616933465,-0.4490383011288941,-0.5131546836346388,0.77550517488271,-0.47178178280591965,-0.4735974236391485,0.6387166678905487,-0.3015751070342958,-0.9710371349938214,-0.9623052664101124,-0.1848789108917117,-0.682638737373054,-0.8682224163785577,0.9849083204753697,0.5314262523315847,-0.2420273288153112,-0.7271994943730533,-0.6011512917466462,0.26022542687132955,-0.564589652698487,-0.9833740387111902,0.8151136650703847,-0.675943220499903,-0.8613886721432209,-0.4376575225032866,-0.3556726146489382,0.4987461809068918,0.839467910118401,-0.1117886258289218,-0.49301634216681123,0.2808870035223663,-0.1259468593634665,0.18403912615031004,-0.5394295672886074,0.08710941765457392,0.3213723595254123,0.6153836832381785,-0.5032232226803899,-0.010971687268465757,-0.8112661386840045,0.48150267358869314,0.6163822552189231,0.26891530118882656,-0.9139172141440213,-0.2677620518952608,-0.9168817112222314,-0.3926031915470958,-0.2654448486864567,-0.4572288580238819,0.6952441991306841,-0.6497353324666619,-0.32352523785084486,0.5322721749544144,0.8325455035082996,0.2891408037394285,0.9533382994122803,-0.43248801538720727,-0.3726972765289247,0.07786829210817814,0.31054383469745517,0.17810412868857384,0.9390901089645922,0.23060579970479012,0.7659938549622893,-0.1625454891473055,-0.18870475376024842,-0.2980345101095736,-0.4754329710267484,0.463517929892987,-0.8174585588276386,0.33533827122300863,-0.14304406940937042,0.5138905504718423,0.091677853371948,0.21512705320492387,0.8178162630647421,-0.6037535327486694,-0.7475636466406286,-0.21513011027127504,0.4272955092601478,-0.5301985228434205,0.03511405037716031,-0.004130691755563021,-0.88843605061993,-0.9691609721630812,0.13864165218546987,-0.2179786628112197,-0.2867825049906969,-0.5474111526273191,0.5424970677122474,-0.5917485081590712,0.8597066248767078,-0.31262202421203256,-0.7454295991919935,-0.38172970013692975,-0.9620936554856598,0.9756196555681527,0.4161263448186219,0.3194083319976926,-0.5030103814788163,-0.09344899747520685,0.2167548886500299,0.8394074318930507,0.5128957782872021,-0.9878961737267673,-0.8055682028643787,-0.9946967703290284,0.9938798760995269,0.5298593807965517,0.012688389513641596,-0.07527446001768112,0.805978826712817,0.32167000230401754,0.24089097371324897,0.9056329219602048,-0.9877865673042834,-0.11197278462350368,-0.9707080963999033,-0.33590947603806853,-0.03981745149940252,0.9238808797672391,-0.2813236527144909,0.7298206030391157,-0.44964312482625246,-0.9216407737694681,-0.91082420386374,0.21040154667571187,0.7580455210991204,0.21266657393425703,0.9275584286078811,0.33959471760317683,-0.4503639889881015,-0.4338549883104861,0.5609098533168435,0.6582501758821309,0.47500554425641894,0.7720083692111075,-0.7207571682520211,0.11844228254631162,0.48619184643030167,-0.7116781752556562,0.7471001097001135,-0.09767089085653424,0.5150093697011471,0.40658279322087765,0.07101090019568801,-0.9449858525767922,0.46149930311366916,0.15128954639658332,-0.48479469679296017,0.451606263872236,-0.05384180461987853,0.0314459060318768,0.8383593186736107,0.7395876902155578,0.664090481121093,0.7209901050664485,-0.4439316550269723,-0.35109673999249935,-0.07249230798333883,0.7748640733771026,0.2838527159765363,0.6206992701627314,-0.04239020636305213,-0.6612161477096379,-0.776513802818954,-0.48130197869613767,-0.3071303488686681,-0.9590813731774688,0.5840564309619367,-0.6136959688737988,-0.7348041161894798,-0.9283516146242619,0.21259470889344811,0.19576914561912417,0.30421905731782317,-0.951655566226691,0.35657595098018646,0.3576227589510381,-0.7505955537781119,-0.502961051184684,0.4538151198066771,-0.4771800637245178,-0.8462981153279543,0.6346044973470271,-0.7215905566699803,0.19379489962011576,-0.8603887008503079,-0.09318439895287156,-0.15098473289981484,0.45255067432299256,0.4989099516533315,-0.1922790459357202,0.022130470257252455,-0.11405458161607385,-0.7232591258361936,0.21819198271259665,-0.5602234108373523,0.12822143966332078,0.7801512284204364,0.025398080237209797,0.3025556434877217,-0.9430521205067635,0.1700686477124691,-0.38091198122128844,0.2783206175081432,-0.859473648481071,-0.303007029928267,-0.9375061290338635,-0.8768275906331837,-0.33043754380196333,-0.28945820359513164,0.32113606575876474,0.33513767179101706,-0.048482160083949566,0.4494502586312592,-0.3025906551629305,-0.823285027872771,0.6232927860692143,-0.40704907989129424,0.0009039142169058323,0.8613962945528328,0.07402046537026763,-0.9314309498295188,0.8232743786647916,-0.18960857763886452,-0.8789080204442143,0.0015838849358260632,0.8562255343422294,0.020780306309461594,-0.4149642107076943,0.31289388705044985,-0.6507609281688929,-0.6249442235566676,-0.34974184120073915,0.27001438895240426,0.42788788909092546,0.8805425921455026,-0.5868045976385474,0.9538463396020234,0.6878037760034204,-0.7462617955170572,0.777121136430651,-0.0322358887642622,-0.44229077780619264,0.7606254909187555,0.6193237300030887,0.4168008961714804,-0.3161572813987732,-0.22410315833985806,-0.9805433470755816,0.7341071204282343,-0.13680996466428041,0.5134390662424266,-0.014433070085942745,0.8481654264032841,0.6205361471511424,-0.5210330984555185,0.7052112808451056,-0.47561270417645574,-0.9101641154848039,-0.4310339377261698,-0.14564045378938317,-0.17263911897316575,-0.6842320645228028,0.4741554278880358,0.3084603906609118,0.5877437423914671,-0.02543990919366479,-0.4513858682475984,0.26108893752098083,0.5460344715975225,-0.3261298225261271,-0.2519247932359576,0.8904996584169567,0.3759812284260988,-0.8490592646412551,0.1939565259963274,0.3902618237771094,-0.5374992364086211,-0.9412940898910165,0.44198222178965807,0.956548236310482,-0.7453388422727585,0.14011919777840376,-0.17883179057389498,0.6580888968892395,0.4039647225290537,-0.07501604780554771,0.14294867729768157,-0.11574655724689364,0.5220343410037458,0.05088336206972599,-0.5140874055214226,0.8857788401655853,-0.2729294723831117,-0.31447680247947574,0.6581853972747922,0.23486368032172322,-0.6870415774174035,0.0607552002184093,-0.30550055019557476,0.7413037125952542,-0.5432965774089098,0.5287304050289094,-0.8250893456861377,-0.5010637259110808,0.45071758469566703,0.9346057022921741,-0.6053759753704071,-0.42305985698476434,-0.05444150185212493,0.10919371526688337,0.00950328167527914,0.35046930564567447,0.7693168711848557,0.17422536900267005,-0.004679263569414616,0.45005365600809455,0.6523462841287255,0.053537807427346706,0.7442867420613766,-0.8305979035794735,0.3255859552882612,0.7506649796850979,0.2678723530843854,-0.2292303778231144,-0.33822391787543893,0.652162924874574,0.5076351081952453,0.8452956303954124,0.6033232496120036,-0.8869442264549434,0.014971701893955469,0.5331081333570182,-0.23018361954018474,0.9316336871124804,-0.1590979816392064,0.8714482095092535,-0.18344626715406775,-0.6801057755947113,-0.9846286019310355,0.17220694897696376,-0.10860695969313383,0.5007544998079538,-0.12941642384976149,0.6214657253585756,0.010464381892234087,-0.38295202562585473,-0.4367453274317086,-0.7706749904900789,0.6039024940691888,0.9273209189996123,0.8535252334550023,-0.8611916499212384,-0.025701901875436306,-0.13472707383334637,0.7410184498876333,-0.7402147799730301,-0.4510840238071978,0.1654497580602765,-0.12371923075988889,0.546230451669544,-0.3365454049780965,0.575543622020632,0.6463435175828636,-0.05858659744262695,-0.42274667182937264,0.7033360600471497,-0.14980987319722772,-0.2613664767704904,-0.29611260956153274,-0.07990759704262018,0.5690716779790819,0.4130842969752848,-0.9330018642358482,-0.06568431295454502,0.09032523678615689,-0.06163440551608801,-0.6672807596623898,-0.16312269726768136,0.858767147641629,0.7359639159403741,0.09591848077252507,0.541906563565135,0.22762079862877727,0.8379768701270223,0.2614040980115533,0.2944411295466125,0.2630138034000993,-0.20690537942573428,0.9528115172870457,0.21665323851630092,-0.4845545026473701,0.20016122935339808,0.2939925785176456,0.04745999211445451,0.3838782492093742,0.0916983000934124,-0.7488397979177535,0.3377584828995168,0.7575840330682695,0.434294396545738,-0.5945494226180017,-0.2021399773657322,0.8799508446827531,0.6118156961165369,-0.5088001936674118,0.9769008057191968,0.4591916585341096,0.6323151215910912,0.7589189601130784,-0.347761120647192,-0.3498236145824194,-0.40201189555227757,0.9396847691386938,-0.8070546318776906,-0.7184647866524756,-0.2883727462030947,-0.09207917237654328,-0.7276557078585029,0.8520941641181707,-0.9701573364436626,0.6994289783760905,-0.8156367628835142,-0.6095849983394146,-0.40348905930295587,-0.2821766813285649,0.5962524395436049,0.4788852375932038,-0.8253499288111925,-0.8705072412267327,0.593701942358166,-0.704803017899394,-0.23167451191693544,-0.06652754731476307,0.48090266017243266,-0.3990825116634369,-0.6815522592514753,0.9496892862953246,0.26342707499861717,0.7514188326895237,-0.39312565326690674,0.2616988350637257,0.5224610301665962,-0.20606097299605608,0.33711606869474053,-0.0272017614915967,0.3107579587958753,-0.9761596950702369,0.6089750789105892,0.8420660919509828,-0.4342632628977299,0.8437484949827194,-0.8768812753260136,-0.3911077715456486,0.8210780574008822,0.6130675873719156,0.32124683959409595,0.9198232479393482,0.287939409725368,-0.7929075178690255,-0.6452030362561345,0.7807796681299806,0.31934304581955075,-0.7676069494336843,0.6892341007478535,-0.7732062782160938,0.9776111622340977,0.28725697100162506,0.2454638360068202,0.24629163648933172,0.6856269799172878,0.8925329227931798,0.866791452281177,-0.31208707159385085,0.282849766779691,0.5586337689310312,0.40833867946639657,0.886823523323983,-0.005017383955419064,0.8495616428554058,0.8493938930332661,-0.47855436662212014,0.3237851378507912,-0.46328045427799225,-0.5778955747373402,0.5504433391615748,0.4719497258774936,0.44673780957236886,0.6640538848005235,0.8300376459956169,-0.6535125384107232,-0.852405758574605,0.7973495214246213,-0.3553265198133886,-0.07807545084506273,-0.4326422684825957,-0.46803873497992754,0.035572065971791744,-0.4442753894254565,-0.8548119231127203,-0.5812978502362967,0.8918247343972325,-0.09474953543394804,0.4841248244047165,0.8330027665942907,0.423672272823751,0.09126995876431465,-0.343137898016721,0.9446408990770578,0.628388608340174,0.5658286120742559,0.16587605234235525,0.723056472837925,0.29590070340782404,0.3412880883552134,0.04939989000558853,-0.1277311509475112,-0.10834496794268489,-0.5130278174765408,-0.5544131491333246,-0.8094486217014492,-0.9935441222041845,-0.37272078450769186,0.1559224734082818,-0.6115517350845039,0.04755735071375966,0.5482716462574899,-0.5967583856545389,0.49066453659906983,0.551077458076179,-0.3574393452145159,0.8452288103289902,-0.20919825322926044,0.12901412416249514,0.9550315863452852,0.3373891697265208,-0.2193587007932365,0.3425838416442275,-0.6029688636772335,-0.536627241410315,0.26731466269120574,0.9954973892308772,0.5954213202930987,-0.6298507871106267,-0.1941396133042872,-0.47394334711134434,0.2074651545844972,0.36953532695770264,0.7124140658415854,-0.1964708431623876,0.6138031352311373,0.24536284990608692,0.166390560567379,0.9963304330594838,-0.650400563608855,0.5619958639144897,0.653473861515522,-0.5739699709229171,0.8852972807362676,-0.6564771537669003,0.43250971706584096,0.9737394624389708,-0.6296979943290353,-0.8116455101408064,0.49588812375441194,-0.9701284845359623,-0.7667848002165556,0.526316867209971,0.2037763074040413,0.8997579519636929,0.6014350685290992,0.5579124796204269,0.8511437466368079,-0.45027726190164685,-0.801889143884182,-0.9560894151218235,0.556956794578582,0.4331231149844825,0.8973476514220238,-0.409450592007488,0.6325051682069898,0.09802537644281983,-0.9919059947133064,0.4308242555707693,-0.7090284079313278,0.932659228798002,0.23501035757362843,-0.5857406565919518,-0.7362360605038702,-0.33782355254516006,0.9782523680478334,-0.3202157742343843,0.022555215284228325,-0.946460478939116,0.7632099888287485,-0.8472180929966271,-0.1326425625011325,0.7905773636884987,0.853049635887146,0.2632104428485036,0.9058898412622511,0.4157871571369469,0.30226007802411914,0.4807214718312025,0.7392208892852068,0.1664944444783032,0.1657962230965495,0.9792712740600109,0.18239268474280834,-0.8306493889540434,0.05564951617270708,0.9777572816237807,-0.007119521498680115,-0.6688780090771616,-0.2715359670110047,0.5883026691153646,-0.3451892463490367,0.9084693463519216,0.8378145266324282,-0.8095522150397301,-0.5307965204119682,-0.9257183209992945,-0.792918233666569,0.9396223109215498,0.17273407988250256,0.10314035043120384,-0.18323066318407655,0.6873361449688673,0.6506093996576965,0.41992008639499545,0.7131561995483935,0.6834016786888242,-0.23579716915264726,0.630259707570076,0.3047176213003695,-0.5437358040362597,0.7279011188074946,0.1820784085430205,-0.2505625099875033,0.25411738688126206,-0.7824244955554605,-0.22021212801337242,0.2635001069866121,0.8055201806128025,0.2712674681097269,-0.9482031799852848,0.37981948396191,-0.3412491278722882,0.5636850455775857,0.19130930118262768,0.3844371042214334,0.694174837321043,-0.3120572683401406,-0.17373459227383137,-0.7548553002998233,0.27295603044331074,-0.37227164721116424,-0.6919311517849565,0.15217661438509822,-0.1732546710409224,0.42505369195714593,-0.6526048863306642,0.748506675940007,0.7379370769485831,-0.6070248759351671,0.9922545398585498,0.1397303561680019,0.32741266628727317,0.7718970798887312,0.5245124790817499,-0.9313397910445929,-0.37207819148898125,0.885156711563468,0.5023836963810027,0.3904338735155761,-0.9047198672778904,-0.1122503555379808,0.7884117518551648,0.3700223080813885,-0.36631656577810645,0.20871977601200342,-0.8071302934549749,0.14626718405634165,-0.43206860637292266,-0.26195064885541797,0.632723655551672,0.3463639966212213,0.6110052629373968,-0.5756470449268818,0.9699660567566752,0.4415861405432224,0.024992988910526037,-0.39104615384712815,-0.9624354024417698,0.5703019569627941,-0.9331063632853329,-0.8354488033801317,-0.6410793769173324,0.16840910213068128,0.4728126795962453,-0.6396934734657407,-0.8494121846742928,-0.3849847037345171,0.3494114996865392,-0.7582068215124309,-0.9300354695878923,0.8895957856439054,-0.5217651263810694,0.1062868651933968,0.9273691545240581,0.0838193534873426,-0.2181521849706769,-0.7099580150097609,-0.49905726220458746,-0.5606503393501043,0.9869215302169323,0.23468081606552005,-0.6568760392256081,-0.5122939925640821,-0.6423076605424285,-0.7945236186496913,-0.382487834431231,-0.8334178710356355,-0.3725962806493044,-0.5741043407469988,0.1662935083732009,-0.1303203348070383,-0.08381638349965215,0.7020666305907071,-0.41086149821057916,-0.6889941915869713,0.08043552422896028,-0.3779340567998588,0.025016908068209887,-0.23998003732413054,0.9626830792985857,-0.06866404553875327,-0.11488831602036953,0.3559602526947856,0.19515731278806925,0.3059866772964597,-0.5841723349876702,0.5598335582762957,0.6377251194790006,-0.7268901504576206,0.44329800084233284,-0.31367408437654376,0.9519304041750729,0.4250156441703439,-0.11890101293101907,-0.7671010121703148,0.37085206527262926,-0.7664416707120836,-0.1775538227520883,-0.2098865476436913,0.9507426172494888,0.8991948384791613,-0.5246328208595514,0.5056939600035548,0.9869727180339396,0.892129436135292,0.5853420058265328,0.7550935889594257,0.4810581556521356,0.6103241653181612,0.8814470991492271,0.3252835697494447,-0.9141033045016229,0.056870699394494295,0.9602688630111516,0.7638116613961756,0.9360505142249167,-0.4631778448820114,-0.37805259320884943,0.12168046599254012,0.7043602992780507,-0.5928947241045535,0.2439218577928841,-0.7634044280275702,-0.5534827141091228,0.056848324835300446,-0.5964467339217663,0.4002240551635623,0.18852098006755114,-0.46135719725862145,-0.7223313394933939,0.28757041273638606,-0.4544778545387089,0.3838384198024869,-0.5365095739252865,-0.4567381273955107,0.27563124615699053,0.2272370345890522,-0.19753410061821342,0.9926839149557054,-0.2391266766935587,0.4300512089394033,0.3417877140454948,0.38875695737078786,0.4866164638660848,0.34994018403813243,-0.09045255137607455,0.16020384756848216,-0.4366103201173246,0.8973542642779648,-0.035945964977145195,-0.4362199525348842,0.6706622811034322,0.7541296151466668,0.20306319603696465,-0.9176881471648812,0.5640345113351941,-0.9044620147906244,-0.7617885852232575,0.9907848443835974,-0.6565380454994738,-0.17831086181104183,0.9457453489303589,-0.10223543131724,-0.5152764800004661,0.1746128909289837,-0.41807874478399754,-0.1364698694087565,0.20764150051400065,-0.7643192810937762,-0.02338372403755784,0.9372463482432067,0.11308887973427773,-0.8869885392487049,-0.03975689085200429,-0.8595968638546765,-0.8922793511301279,-0.03007774893194437,0.3726379042491317,0.6529295803047717,-0.4443450951948762,0.12384974677115679,0.5668611363507807,-0.7964629186317325,-0.4709704858250916,-0.45711168460547924,0.1130206985399127,0.6763279996812344,0.7368327863514423,-0.43379988986998796,0.8942342209629714,0.8020479958504438,0.7429489102214575,0.5344255962409079,0.2969589615240693,-0.4236390506848693,-0.2630441375076771,-0.90833844197914,0.31993281096220016,0.13608303433284163,0.7061665700748563,0.7675114255398512,-0.8325182343833148,0.8968043802306056,0.7433404037728906,-0.6566179753281176,0.2635830952785909,-0.7258367966860533,-0.1379342135041952,-0.01412956789135933,0.948209831956774,-0.397814498282969,-0.5293769468553364,-0.45832618745043874,-0.4354413878172636,0.3002459523268044,-0.49434963008388877,-0.5853728973306715,0.9889349252916873,-0.8156447592191398,-0.6952877291478217,-0.8439864912070334,-0.2307704770937562,0.522502088919282,-0.03225138923153281,0.08683830546215177,-0.27989363111555576,-0.26694601168856025,-0.5037828632630408,0.4321524603292346,-0.3885470926761627,0.47319999570026994,0.0742815500125289,-0.2254408122971654,0.06023199250921607,-0.8144324291497469,-0.5756465177983046,0.5928514744155109,0.9724582456983626,0.24048528540879488,-0.584374341648072,0.271459658164531,-0.031061884947121143,0.15385288232937455,-0.8615955063141882,-0.3970194007270038,0.3607573714107275,-0.38503829715773463,-0.6757954866625369,0.7550219325348735,-0.02957576885819435,0.73628024244681,0.9864880638197064,-0.8635982237756252,-0.34005110105499625,-0.5053435773588717,-0.8161978805437684,0.14239250402897596,0.859281896147877,-0.7598863909952343,0.76315025286749,-0.9744813428260386,0.5407931688241661,-0.33254687720909715,0.7435256182216108,-0.034417516086250544,-0.46596306608989835,0.570278522092849,-0.25678861467167735,-0.885889629367739,0.1390572553500533,0.9848023545928299,-0.425150110386312,0.1814884515479207,-0.29266665363684297,-0.008343071211129427,0.8564504035748541,-0.032133280765265226,0.4689372037537396,0.04013340221717954,0.48710556188598275,-0.4540119837038219,-0.9566925717517734,0.1739545650780201,-0.17632661713287234,0.10998683469370008,-0.4366277325898409,-0.7448070901446044,-0.3249435666948557,-0.007361769676208496,0.15676801791414618,-0.25585321988910437,-0.93345763720572,-0.24663347005844116,-0.17712641740217805,0.6613982324488461,-0.1529113524593413,0.1534936847165227,-0.11038414062932134,-0.10287491837516427,-0.1301588285714388,0.13600149005651474,-0.41564741637557745,0.8964678570628166,-0.8429870032705367,0.6749117090366781,-0.24129478773102164,0.7775479191914201,0.46270483918488026,-0.04903878550976515,0.829546065069735,-0.53572151158005,0.05220431601628661,0.3685616967268288,0.17500264570116997,0.6072615799494088,-0.34709403943270445,0.7852287907153368,0.6870311265811324,0.7611456732265651,0.06565849715843797,-0.1139455996453762,-0.24489467265084386,0.5237602056004107,0.31689874548465014,0.970056775957346,0.9196096058003604,0.807784344535321,-0.1510054268874228,0.19774049147963524,0.11732812644913793,0.474280696362257,0.49750212812796235,0.8379469658248127,0.7494004536420107,0.30622816598042846,-0.717831795103848,0.6441634767688811,-0.7201959108933806,-0.1656197956763208,0.4337339624762535,0.9492499744519591,0.17820444330573082,0.3772507030516863,0.9604552173987031,-0.8702597399242222,-0.057949470821768045,-0.7134499922394753,0.5992053360678256,0.6858220212161541,0.3447949285618961,0.34504793118685484,-0.8389462158083916,0.19458221644163132,0.3209413425065577,-0.4883493762463331,0.26539788767695427,0.9271257980726659,-0.7134647597558796,0.9844328919425607,0.3767107711173594,0.0924861622042954,0.43849082570523024,0.3144354526884854,-0.6854055412113667,0.8635483379475772,0.1469147060997784,0.3351836013607681,0.3044979255646467,0.17764511099085212,-0.180210055783391,-0.7957121874205768,-0.1304521095007658,-0.8851686790585518,-0.1593996686860919,0.605847577098757,0.43085946049541235,0.8417020444758236,-0.6786593217402697,0.03926344309002161,-0.49698014790192246,-0.038172406144440174,-0.4941174266859889,0.8179718442261219,-0.7457505161873996,-0.13756490126252174,-0.7139262389391661,0.01432905113324523,0.14720479538664222,0.006818449590355158,0.1437514778226614,0.00990933459252119,-0.45042725233361125,0.25835472624748945,-0.3301896760240197,0.23157538892701268,0.19045241177082062,0.1947862529195845,0.2560853809118271,-0.5718886624090374,0.974297892767936,-0.9454552456736565,0.6041802302934229,-0.18634918751195073,-0.00555126927793026,0.9890382285229862,0.34960994264110923,0.7461187215521932,-0.17448495607823133,-0.6221244242042303,0.2698351535946131,0.6753233294002712,-0.4027481693774462,-0.5906633087433875,-0.05038257222622633,-0.7393688019365072,0.07121759047731757,0.8805626952089369,-0.9673135620541871,-0.7981423963792622,0.9344734195619822,0.252313697244972,-0.8884870777837932,0.7171589550562203,0.9037769706919789,0.7454501143656671,-0.28847384452819824,-0.3574840584769845,0.606313097756356,-0.03570936759933829,0.07180534163489938,0.2382644945755601,-0.8392811710946262,0.8307337849400938,-0.22269806452095509,0.48024742491543293,0.6154167531058192,-0.3847234658896923,0.7885049162432551,-0.28448517667129636,0.3008467573672533,0.41937166452407837,0.47761177411302924,-0.7789825852960348,-0.928578816819936,0.6156559977680445,0.02917521120980382,-0.02574710873886943,-0.7739039259031415,-0.06873920746147633,-0.581284730695188,-0.11963674006983638,-0.6643033884465694,0.022569148801267147,-0.9520141971297562,-0.6816837275400758,0.5520741418004036,0.8919273214414716,0.5452910182066262,0.7199643398635089,0.22183522069826722,0.8936412404291332,0.7833495396189392,-0.8791333544068038,0.9956411477178335,0.5215436676517129,-0.9044292387552559,-0.9590660110116005,-0.22506715077906847,0.7255303291603923,-0.8596570873633027,0.5233292211778462,-0.799053602386266,-0.03578177420422435,-0.5732313646003604,0.4462415259331465,0.3865264146588743,0.6585964364930987,0.9401972042396665,0.5237513082101941,0.11521776160225272,-0.7616771464236081,0.07525519421324134,0.7012657644227147,-0.8716810471378267,-0.62394915567711,-0.9528059093281627,-0.4566774792037904,0.3823347254656255,0.46011654613539577,0.4562533632852137,0.28515155194327235,0.5980814527720213,-0.39135795645415783,-0.7225983273237944,-0.6108676185831428,0.8681463366374373,-0.2331509287469089,0.5269278837367892,-0.7844171524047852,-0.31080882670357823,0.7551946900784969,0.7633066200651228,-0.0921756993047893,-0.5778628173284233,-0.35247757425531745,-0.18590475525707006,0.5441565387882292,0.16498688142746687,0.7153571103699505,0.0378134036436677,-0.9505689372308552,0.5594207746908069,-0.1766436817124486,0.5583940087817609,0.674838368780911,-0.2047958029434085,0.7123021059669554,0.21380614396184683,0.49084848165512085,0.2754425616003573,0.44051202666014433,-0.8686316474340856,0.2879290021955967,0.4795267013832927,-0.8627745732665062,0.18476770678535104,-0.6571350223384798,0.5890729795210063,-0.47985849250108004,-0.28471475234255195,0.38979290379211307,0.12133408105000854,-0.4335302417166531,0.14986008126288652,0.23717137286439538,-0.46271423948928714,-0.23978629941120744,-0.8420279012061656,-0.3559142970480025,0.2536873845383525,0.3967099548317492,-0.2742466679774225,-0.23066583322361112,0.21176061499863863,-0.6544716721400619,0.6136158872395754,-0.23325866181403399,0.23216974642127752,-0.8481736895628273,-0.5282322214916348,0.08232104824855924,0.8061892176046968,0.35301648918539286,0.36482639890164137,0.4086107462644577,0.12172463303431869,0.8679982973262668,-0.11066395230591297,0.6549856504425406,-0.033247183077037334,0.9716731035150588,-0.7892079222947359,-0.19843660481274128,-0.8709003864787519,-0.6173473885282874,-0.5241040135733783,-0.5801670346409082,0.21170981647446752,0.2790867821313441,-0.04484783532097936,-0.3027493399567902,0.9254802544601262,-0.5657100025564432,0.6207171627320349,-0.6380948456935585,0.588488798122853,0.5658753542229533,0.9895070805214345,-0.051103366538882256,0.2557111093774438,0.7131727766245604,0.7405048725195229,0.582797390408814,0.3073386214673519,0.2129924795590341,-0.7146473019383848,-0.8956350153312087,0.30131216207519174,0.7557294764555991,0.7096365168690681,0.8979799277149141,0.12084926152601838,-0.2699909205548465,-0.9149248595349491,0.3243333385325968,0.5269017731770873,-0.2476811152882874,-0.6467029801569879,-0.6555201816372573,0.42073253355920315,0.2863187617622316,-0.5132036106660962,0.12964878091588616,0.2851132391951978,-0.4579671141691506,0.18515866715461016,-0.06543482048437,0.7586711258627474,-0.24487643269822001,-0.06799281761050224,0.20221984386444092,-0.43911783024668694,0.7598222382366657,-0.6940156873315573,-0.15300449123606086,0.021647310350090265,-0.16518871393054724,-0.5250166091136634,0.36584861669689417,0.7645604568533599,0.8014651229605079,0.7934478987008333,0.6385924532078207,0.9237054698169231,-0.2495634127408266,-0.7157153319567442,-0.3102768948301673,0.9140078816562891,0.424280172213912,-0.009319708216935396,-0.38662422308698297,-0.12702226405963302,-0.39607459399849176,0.7993450211361051,-0.9498299891129136,-0.04991997126489878,0.4463360025547445,-0.5069251679815352,-0.9079620349220932,0.8272955538704991,-0.5050251702778041,-0.1604616572149098,-0.516938001383096,0.6307757720351219,-0.37191703682765365,-0.7011495875194669,-0.6695554386824369,0.7719260375015438,0.9232084266841412,-0.44346497813239694,-0.5795049564912915,0.6286099147982895,-0.5801695110276341,-0.10598681261762977,-0.17003625072538853,0.4528284096159041,0.607801232021302,-0.6096478961408138,-0.8403236945159733,-0.2803747355937958,-0.6907878462225199,0.7218555738218129,-0.9778382843360305,0.12827379629015923,0.5299374791793525,0.5349953821860254,0.3430162868462503,0.9471941343508661,0.8497225437313318,0.325583775062114,0.7716592093929648,-0.14480184251442552,0.9073364161886275,0.26085284166038036,0.531827689614147,-0.7661101710982621,0.3864852557890117,0.01769461203366518,0.05114218406379223,0.7867969814687967,-0.9379216856323183,0.9273921246640384,0.53393515618518,-0.041321071330457926,0.24449113942682743,0.8513030633330345,-0.12442534975707531,0.28519670106470585,0.6756932772696018,-0.29218396032229066,0.1785662961192429,-0.22166868299245834,-0.14297155663371086,-0.6880243206396699,0.7033407245762646,-0.6596659896895289,0.5620307172648609,0.6888904059305787,0.8886176920495927,0.9489019052125514,-0.7123792599886656,-0.23539202800020576,0.5955887739546597,0.523248044308275,-0.42680770670995116,-0.6201425790786743,-0.4222651794552803,-0.7242032592184842,0.19198405323550105,-0.3004369386471808,0.27452432829886675,0.37868570489808917,-0.5256761154159904,-0.6608220497146249,0.6654860200360417,-0.09164374461397529,0.08142234990373254,0.5410642568022013,0.6933053028769791,-0.632736399769783,0.011257626116275787,0.32849747920408845,-0.9579378562048078,0.13250088738277555,-0.5618133982643485,-0.7123991032131016,-0.6828610892407596,-0.030981929507106543,-0.645527848508209,-0.6939866123721004,-0.6012312676757574,0.8762925276532769,0.7393846986815333,-0.045761929359287024,0.6686615706421435,-0.19899399997666478,-0.9706280105747283,-0.5195876974612474,-0.038250749465078115,-0.9662294592708349,-0.5620624097064137,0.0197182921692729,0.540079842787236,0.3075140998698771,0.5232206308282912,-0.4186800322495401,-0.9445656947791576,-0.3329604510217905,0.24548702174797654,0.32487624417990446,0.5405158097855747,-0.2958597708493471,-0.1980274342931807,-0.6977809080854058,-0.9572019763290882,-0.18706163857132196,-0.669776619412005,-0.39274888951331377,0.9735093316994607,-0.24945722613483667,0.7158001428470016,-0.9887925302609801,-0.0867715235799551,-0.713697777595371,-0.09079852886497974,0.795574814081192,-0.21753818774595857,0.15355505049228668,0.860146171413362,0.0766265457496047,0.9817990688607097,0.7700955797918141,-0.9925897810608149,-0.0825152788311243,-0.18738479865714908,-0.5869889711029828,0.7720935810357332,0.8909395840018988,0.536425456404686,-0.6977059794589877,0.8397532966919243,0.8405911950394511,0.9140144474804401,-0.10210891114547849,-0.5711259637027979,-0.6661073146387935,0.9402792053297162,-0.39729945501312613,0.5859941788949072,-0.5045373528264463,-0.4928004634566605,0.9998780977912247,0.9022269570268691,-0.3748676972463727,0.9952758005820215,-0.3627722696401179,-0.8194995047524571,0.34914246294647455,0.6728163603693247,-0.5456199548207223,-0.7460618796758354,0.8491192562505603,0.7331313407048583,0.7181402747519314,-0.36694811936467886,-0.534258218947798,0.19933784659951925,-0.05225004302337766,-0.6700188210234046,-0.022296844515949488,0.7137730112299323,0.49670304311439395,-0.7462866464629769,-0.12435882445424795,-0.20034097647294402,-0.07083633495494723,0.8960223766043782,0.9295886564068496,-0.22565790871158242,0.7197083225473762,0.11284242197871208,-0.6018814193084836,0.1270229178480804,0.20014726417139173,-0.7904377286322415,0.5969604919664562,0.8661901992745697,-0.5078506409190595,0.5113659934140742,-0.8791783591732383,-0.16633076407015324,-0.33282842207700014,0.6908389944583178,0.9611847936175764,0.012936878483742476,0.3338157329708338,-0.29541741125285625,-0.03902237908914685,-0.20312514249235392,0.24499029759317636,0.2739702113904059,0.3910950920544565,-0.9774251375347376,-0.01965201646089554,0.06662343768402934,0.365729876793921,-0.3422430525533855,-0.7815128285437822,-0.7878991863690317,-0.4622458405792713,-0.8575474889948964,0.5082876803353429,-0.7242533732205629,0.9799498450011015,0.44067788403481245,-0.5121976886875927,-0.8171549011021852,-0.6375651615671813,0.9527365216054022,-0.6575955389998853,-0.6789440610446036,0.10154926544055343,-0.8548054611310363,-0.969036185182631,0.17875113990157843,0.2624190216884017,0.5395167698152363,-0.39352790359407663,0.8760968190617859,0.6920389207080007,0.45928555680438876,-0.0855604256503284,-0.8503557806834579,-0.32054787734523416,0.6951903337612748,0.08076786203309894,-0.1282958248630166,-0.6466297535225749,0.8898453353904188,-0.5608186228200793,0.6002010563388467,0.8905788217671216,0.944143854547292,-0.13046962721273303,-0.8477201987989247,-0.32188868382945657,0.6447174488566816,0.09358348092064261,-0.6454604733735323,-0.6394147374667227,-0.882458446547389,0.5441971179097891,-0.6475072433240712,-0.0776060139760375,0.8737951475195587,0.7796691139228642,-0.0004297057166695595,0.6562346024438739,0.1269644652493298,0.07441870588809252,0.5674965567886829,-0.23392317397519946,0.45094927214086056,0.8034616075456142,-0.4208038588985801,0.05879134917631745,-0.21137030748650432,-0.6162994005717337,0.13227205397561193,-0.8174151224084198,0.6197754009626806,0.18387134419754148,-0.21023698849603534,-0.1085601570084691,-0.9903149981983006,-0.49575945315882564,-0.08271357975900173,0.9778059725649655,0.6056831935420632,0.03821728052571416,0.30856949649751186,0.1808567689731717,0.7219803659245372,0.44914564257487655,-0.16668720403686166,-0.1468552714213729,-0.372411928139627,-0.11808731593191624,-0.21947734244167805,0.6648235912434757,0.3453046092763543,-0.3544293073937297,0.2823813487775624,-0.02893636142835021,-0.723985904827714,0.8149743285030127,0.729808974545449,-0.6561126201413572,0.4560414496809244,0.9289750922471285,0.33409072645008564,-0.43034020299091935,-0.893878260627389,-0.7935354202054441,-0.39501738967373967,-0.6450597168877721,0.33947156043723226,0.8893140656873584,0.9279138962738216,-0.855037959292531,0.3251087786629796,-0.9032478146255016,0.8903223383240402,-0.314886090811342,0.05545551888644695,-0.9992252956144512,-0.16939563350751996,-0.7622873857617378,0.1499880333431065,-0.015697969123721123,-0.5281093204393983,-0.12240262236446142,0.4183340170420706,0.991237421054393,0.21615342190489173,-0.7472629491239786,-0.8113498063758016,0.46918568667024374,-0.006390669383108616,0.7364066201262176,0.42358390474691987,0.3793815318495035,-0.44723320519551635,0.6963507048785686,0.7615979039110243,-0.7755551668815315,-0.2170035750605166,0.07589831296354532,-0.2618360035121441,0.7993366313166916,0.9361495091579854,-0.12189753726124763,-0.402058114297688,-0.1965237190015614,0.196221845690161,0.812720709014684,0.5940462732687593,0.06421245960518718,0.0883801756426692,0.8796466733328998,0.4349791510030627,0.17979239486157894,-0.6703872736543417,0.012155617121607065,-0.2855785945430398,-0.9876523688435555,-0.018101589288562536,0.10151014383882284,-0.3333961274474859,0.9808362699113786,-0.11099065793678164,0.09830888360738754,-0.3338265335187316,-0.07418981101363897,0.9657826973125339,0.9866377012804151,-0.21432736655697227,0.5637666690163314,0.018113716039806604,-0.40137075958773494,-0.5246903239749372,0.40120820328593254,0.5333887967281044,-0.11886588064953685,-0.17750428104773164,-0.016758387442678213,-0.019254240673035383,-0.2982720476575196,-0.28764768363907933,0.27050244295969605,0.11513724690303206,-0.4519828846678138,0.05988421617075801,-0.17286166921257973,0.21352160349488258,-0.29654094437137246,-0.9672313272021711,-0.33656663121655583,-0.348642164375633,-0.3323588874191046,0.26054473500698805,-0.7290602019056678,-0.8786940108984709,-0.7115738857537508,0.010693984106183052,0.5170074147172272,0.4843786540441215,-0.22965090069919825,-0.9916928485035896,0.6467067459598184,0.4028356745839119,-0.008914193604141474,-0.7446286948397756,-0.005449480842798948,0.1838520341552794,0.5279391477815807,0.7297370135784149,0.27722318237647414,0.3998973830603063,0.16901201894506812,-0.7012304933741689,0.018269664607942104,0.27523709647357464,-0.1016052532941103,0.23451192444190383,0.8611582955345511,0.21948463842272758,-0.009505583439022303,0.08773996261879802,-0.6942387577146292,-0.942968063056469,-0.714267120230943,-0.172716427128762,-0.5552975162863731,0.9404449863359332,-0.12854334618896246,0.6234442894347012,0.30186658538877964,-0.5410085166804492,0.26337134558707476,0.8831638908013701,-0.5184689280577004,-0.9420856623910367,0.06940118176862597,0.9083886402659118,-0.7296145115979016,-0.4963775663636625,-0.9207888096570969,0.36729655880481005,0.11794667644426227,0.6762294517830014,0.5751133235171437,0.023402752820402384,-0.9351510722190142,-0.7715254737995565,0.7937702778726816,-0.8548051067627966,0.7913367948494852,-0.03741954546421766,0.03773675486445427,-0.9248547698371112,0.20985406264662743,-0.5794995920732617,0.44168644631281495,0.41868691984564066,-0.2667040964588523,-0.1145048476755619,-0.8079298883676529,-0.2654953235760331,0.24355234624817967,-0.08936573984101415,0.8561690300703049,-0.506223093252629,0.5435590050183237,0.8710451880469918,0.8543004170060158,-0.9024852430447936,-0.0681804665364325,-0.954813206102699,0.953227061778307,-0.30156495282426476,-0.15742640336975455,-0.8039249675348401,0.07318740291520953,0.015952808316797018,0.7848553266376257,0.42940378934144974,0.6652794666588306,0.8837245707400143,-0.5538781685754657,-0.48886947287246585,-0.7345102122053504,-0.8407566528767347,0.1560179628431797,0.4176154797896743,0.12738993344828486,0.9911374473012984,-0.9075758019462228,0.42708206037059426,-0.46514273528009653,0.9011599943041801,-0.06861544866114855,-0.6556242727674544,0.5119307548739016,-0.9258324219845235,-0.16868117451667786,-0.8477663598023355,0.923040880355984,0.970353024546057,-0.1940010441467166,-0.9418207630515099,0.856710416264832,0.6491050031036139,0.13073024665936828,0.793341320939362,-0.7787227188237011,0.6720372540876269,0.8299997514113784,0.5983736105263233,-0.23923166189342737,0.49383895844221115,-0.09147246880456805,0.29773117415606976,-0.1550760897807777,0.13785610487684608,-0.9279247825033963,-0.8922953275032341,-0.21672097640112042,0.45299931382760406,-0.2972002662718296,0.06783599499613047,-0.6028554104268551,-0.3617649646475911,-0.7874850272201002,0.5957861049100757,0.10884323716163635,0.39044250128790736,-0.7180454200133681,0.37790684681385756,0.6247014915570617,0.7676193178631365,0.8904511937871575,0.4985495009459555,0.4507683957926929,0.2047678828239441,-0.32992321252822876,0.03912171768024564,-0.7344963327050209,-0.13819841342046857,0.12279191426932812,-0.6978358556516469,0.3763185739517212,0.8729910058900714,-0.12906510243192315,-0.6607991578057408,-0.7968760095536709,-0.3629589998163283,-0.830942299682647,-0.12874148786067963,0.6593662844970822,-0.517872138414532,0.023976814467459917,0.05350728612393141,0.19652223912999034,0.7736135674640536,0.6733967415057123,-0.14851256273686886,0.5443391008302569,-0.18933063512668014,-0.011106043122708797,0.5434852801263332,-0.06198914535343647,-0.5510568800382316,0.9626326686702669,-0.4331757966428995,0.845707826782018,-0.6048986003734171,-0.08273816108703613,0.09467784455046058,-0.03917827969416976,-0.18882289715111256,0.9203327987343073,0.3760639289394021,-0.15981544880196452,-0.8537440723739564,-0.8981323796324432,-0.6066260379739106,-0.993464277125895,-0.11707289377227426,-0.8931574053131044,0.8077105735428631,-0.31872345693409443,0.28088742354884744,-0.356195414904505,0.1445657997392118,0.7572193122468889,0.16858092555776238,0.4961387892253697,-0.8091158918105066,0.13388131093233824,-0.0703348433598876,0.32801622385159135,0.0048047988675534725,0.4155207737348974,0.9309880216605961,-0.8335799099877477,-0.6567724538035691,0.0037573548033833504,0.9029133589938283,0.9229651722125709,-0.644822662230581,-0.5852016904391348,-0.09330292930826545,0.6578787318430841,-0.061008050572127104,-0.05142543604597449,0.667462260928005,-0.2777435118332505,-0.26323302322998643,0.01881833514198661,-0.31680446257814765,0.731176745146513,-0.8703018203377724,-0.3095819833688438,0.5721149812452495,-0.5393552724272013,0.9119717990979552,0.7503846809267998,-0.8659624010324478,-0.5260327635332942,0.5814856281504035,-0.02191017149016261,-0.6694435523822904,-0.14012134354561567,0.5672243684530258,-0.9153141127899289,-0.9235462602227926,-0.39461518125608563,-0.5157780721783638,-0.8548990744166076,-0.49606336699798703,-0.33429759088903666,-0.2792574279010296,-0.5731142316944897,-0.861682637128979,0.24597736913710833,0.8798276036977768,0.024110304657369852,0.40599694289267063,-0.8130804249085486,0.3334633940830827,0.6606743657030165,-0.7279092790558934,-0.12488280376419425,-0.4278498091734946,0.22212256444618106,0.8599068881012499,0.8381450679153204,-0.27161117224022746,-0.08545039035379887,0.8477239455096424,-0.9638859443366528,-0.5028889100067317,-0.13398335687816143,0.3604796160943806,-0.5718870148994029,-0.8288710499182343,0.30287480959668756,-0.6030821870081127,-0.1393756177276373,-0.24630224471911788,0.9617060362361372,0.8724731928668916,0.2298066532239318,0.07105604698881507,0.08471439313143492,-0.011681395582854748,-0.2600320465862751,0.8538255323655903,0.2956441738642752,-0.559698695782572,-0.45586910378187895,-0.23345011472702026,-0.13092089537531137,0.9760474106296897,-0.8673122390173376,0.5097685977816582,-0.8491537952795625,-0.5977474465034902,0.43108286475762725,0.7643698435276747,0.24488015053793788,-0.5731861824169755,-0.21919575612992048,-0.8669320675544441,-0.070999167393893,-0.3225080263800919,0.09697027271613479,0.26763565838336945,-0.8794357967562973,-0.6817810675129294,0.3491047276183963,0.6556376409716904,0.9982974673621356,-0.345461449585855,0.20270053995773196,0.948121405672282,-0.33380189538002014,0.5565738785080612,-0.7238581478595734,0.4415641538798809,-0.17830402310937643,-0.8810662017203867,-0.3034817655570805,-0.6831902521662414,0.5779673797078431,0.2959442865103483,0.2818129821680486,0.3504366176202893,-0.6865868605673313,-0.08418797934427857,0.3143008011393249,0.12349851615726948,0.9058067123405635,0.020391848403960466,-0.9485092652030289,-0.6963297887705266,0.9773357044905424,0.1691619362682104,-0.8105490552261472,-0.9824810866266489,0.833448026329279,0.5271033267490566,-0.5084544108249247,0.49915839405730367,0.04477704595774412,0.26094807125627995,-0.38469849340617657,-0.5398708977736533,0.15449677500873804,0.5251126089133322,0.8189638359472156,-0.075771554838866,-0.33344757417216897,-0.39211649307981133,0.12519489880651236,-0.8057377701625228,-0.8493166398257017,-0.6529365675523877,-0.21867986815050244,-0.42261943966150284,-0.023484627716243267,-0.38532918877899647,-0.6773734493181109,0.6515154857188463,-0.7226315070874989,0.50627351552248,-0.04746983526274562,-0.42878333758562803,0.4524279432371259,-0.7641096147708595,0.5589597560465336,0.5694718454033136,0.08944043377414346,-0.4460278833284974,0.5814444134011865,0.6609013765119016,-0.2562098237685859,0.573420780710876,-0.7988590272143483,0.013390301261097193,-0.9932435126975179,0.015743402764201164,-0.8022725777700543,-0.5195070430636406,-0.08569791866466403,-0.8223292897455394,0.1638381532393396,0.47553596133366227,0.6974724079482257,-0.03204483026638627,0.8123285993933678,0.5376412700861692,0.3190246755257249,0.3373564830981195,-0.2592437365092337,0.5458466070704162,-0.7634376231580973,0.7198701044544578,0.6300499164499342,0.19982501585036516,0.9746956010349095,0.5045003234408796,0.05929717095568776,0.35792337357997894,-0.39002487203106284,0.6330770254135132,0.018912041559815407,-0.1527246329933405,0.044331532437354326,0.6555694038979709,-0.2831360106356442,-0.2650506207719445,0.1535505331121385,-0.2801549509167671,0.14020646596327424,-0.20797211723402143,-0.8519051494076848,0.4469262920320034,-0.44925613095983863,0.915371326263994,-0.6174456859007478,0.7897052499465644,-0.708581333514303,-0.33437753142789006,0.6503967363387346,-0.6241694898344576,0.5545270503498614,0.8411887595430017,-0.40925510646775365,0.24202164402231574,-0.800967019982636,0.2894363487139344,0.7444982044398785,-0.40414477325975895,-0.8718580938875675,0.41002696566283703,-0.6000078083015978,-0.5527637414634228,0.7883119415491819,0.27858922677114606,0.4264132510870695,0.09922444866970181,0.312989245634526,0.5228157001547515,0.11090728873386979,-0.9465357684530318,-0.6331051527522504,-0.14215447660535574,-0.1568818623200059,0.38694406067952514,-0.2917125504463911,0.40556260058656335,0.9220973993651569,0.5336959664709866,-0.39879278978332877,0.005343984346836805,-0.16101705795153975,0.5572046567685902,0.5544166164472699,0.07861291896551847,0.9871008400805295,-0.49715564027428627,0.9266579994000494,0.32125193905085325,-0.36691966699436307,-0.4422105378471315,0.6962353703565896,0.8954452313482761,0.31887433771044016,-0.37342056818306446,-0.8150491486303508,0.9505758183076978,0.1980540445074439,0.7885308242402971,-0.9633048148825765,0.9560858299955726,-0.7691909479908645,-0.4012722885236144,0.4228139854967594,-0.5829408629797399,0.7911331057548523,-0.2621422973461449,0.3462287303991616,0.203164201695472,-0.47703525610268116,0.480266394559294,-0.536616182886064,-0.1122644660063088,0.15194609994068742,-0.8309745020233095,0.27667313255369663,-0.3217048547230661,0.005960519891232252,0.10225356509909034,0.5672380859032273,-0.32852299977093935,0.5566606898792088,-0.943305061198771,-0.50181699777022,0.6600004225037992,0.08525363449007273,0.2688668924383819,-0.004679157864302397,0.3861278803087771,0.9580761156976223,0.43590940115973353,0.6854732153005898,-0.11919841775670648,-0.9157308228313923,0.2774342498742044,0.691800166387111,0.6821460565552115,-0.148804712574929,-0.786047660280019,-0.8882445688359439,0.48998344177380204,-0.33901353692635894,-0.6600993308238685,0.2213624301366508,-0.11707414360716939,0.303531548473984,-0.5211666198447347,0.8335815649479628,0.6245291722007096,0.28873144229874015,0.7087886449880898,-0.7798343086615205,0.2208566777408123,-0.39460975863039494,-0.03754562605172396,-0.9360871510580182,-0.664412927813828,0.9622044879943132,0.5413542944006622,-0.3439844730310142,-0.49206990376114845,-0.6787593890912831,-0.9869690155610442,-0.02099410817027092,-0.9360448340885341,-0.9410350476391613,-0.04471141751855612,-0.28038774989545345,-0.8335216003470123,-0.4377451972104609,0.2643159404397011,-0.2802722295746207,0.2725019105710089,-0.5754227745346725,0.8538605854846537,-0.300704772118479,-0.6819436769001186,-0.8944802926853299,-0.16740235360339284,0.9851475702598691,-0.44973865430802107,0.9402248077094555,-0.7203120179474354,-0.19695047615095973,0.6549084456637502,0.8421649648807943,-0.9943309016525745,-0.8838937007822096,-0.06334303878247738,0.30656345188617706,0.6376874782145023,-0.655327043030411,0.9193813372403383,0.02143934043124318,-0.6779658794403076,-0.8822389869019389,-0.4010193692520261,-0.8477678867056966,0.8166381143964827,0.4695048462599516,0.052992227487266064,-0.06114694941788912,-0.9227143982425332,0.3915584902279079,-0.8766663167625666,-0.6141503821127117,-0.8527830555103719,0.7856803522445261,-0.672031675465405,0.5256187478080392,0.8608557814732194,-0.7366868001408875,-0.1518439333885908,-0.36609141109511256,-0.8467435389757156,0.859057498164475,0.14804908307269216,-0.5246983612887561,-0.9919047360308468,0.05388652952387929,0.5704280636273324,-0.6101439818739891,-0.9531306875869632,0.9721885053440928,-0.7816969444975257,0.16638264572247863,-0.07738923840224743,-0.967249202542007,-0.05821533594280481,0.05594350537285209,0.6659024176187813,-0.5882671880535781,-0.8802599501796067,0.5396418138407171,0.9032965674996376,-0.47686368552967906,-0.4847187898121774,0.6787362545728683,-0.049169551115483046,0.7833700999617577,-0.3461541486904025,0.1813273848965764,-0.26040382497012615,0.5321724247187376,0.08625430660322309,0.2977051194757223,0.5500431093387306,-0.5892615015618503,0.691682290751487,0.8991476153023541,-0.20335461804643273,-0.7512824637815356,0.12085487507283688,0.06630551489070058,-0.7439623940736055,0.21693548560142517,-0.40132873272523284,0.5126822339370847,-0.3671784973703325,0.08889971347525716,-0.8728826916776597,-0.1820219880901277,0.9313141978345811,-0.24984573619440198,0.5384258585982025,-0.9250151976011693,-0.6734915981069207,-0.47125148260965943,-0.06988183641806245,-0.9622946074232459,-0.5343021280132234,-0.901672572363168,0.7334467014297843,-0.5277430680580437,-0.28423264948651195,0.6441730405203998,0.3910733019001782,0.3414821792393923,-0.5200590072199702,0.5686899838037789,0.5691370135173202,0.7347170668654144,0.2526860754005611,-0.9904571422375739,-0.1239147330634296,0.13750650361180305,0.15183270489796996,0.9954513064585626,0.4770153877325356,0.11454601166769862,0.13604389829561114,0.7107694651931524,0.2753247166983783,0.009050554130226374,0.8644195217639208,0.2531132400035858,0.3521293131634593,-0.7597996541298926,0.7063281005248427,-0.38564548548310995,-0.5310700288973749,0.11789309419691563,0.49705362832173705,0.38129611779004335,0.5032567759044468,-0.17834583949297667,0.7571117719635367,-0.8139106342568994,0.1276219105347991,0.708209459669888,0.0806357809342444,0.3539856253191829,-0.11527151986956596,0.4938885043375194,-0.3964713467285037,0.5255350088700652,-0.4053043914027512,0.9501677048392594,0.11242290399968624,0.35745338164269924,-0.43413384445011616,0.21005189139395952,-0.6087349294684827,-0.4752143048681319,-0.6725473515689373,-0.6993362507782876,0.43204367300495505,0.7885864921845496,-0.7424814696423709,0.2551425159908831,-0.06129333795979619,0.10513982689008117,0.611507338937372,0.5789494439959526,-0.4228230160661042,0.8817796255461872,0.7112316088750958,-0.3328906884416938,-0.8113021920435131,-0.24246138986200094,-0.9742830796167254,-0.7003740831278265,-0.7598072015680373,-0.6387124103493989,-0.8290697108022869,-0.6868996825069189,0.08205335959792137,-0.9562207325361669,0.7653849148191512,-0.9376112092286348,0.4720867509022355,-0.81259551551193,0.6043769330717623,0.8398177791386843,0.012938762549310923,0.9339119014330208,0.16969884559512138,-0.00990247679874301,0.01675211638212204,-0.1420294470153749,-0.7313496125862002,0.5756429536268115,0.4594534891657531,-0.728303472045809,-0.14378200378268957,0.07972547924146056,-0.5288928486406803,-0.4506845963187516,0.7920184670947492,-0.9588684663176537,-0.4346348042599857,-0.30024321330711246,-0.4181490526534617,0.20217197854071856,-0.9047303656116128,0.03092230297625065,0.02061697794124484,0.04525034921243787,0.5229950961656868,-0.37815531622618437,-0.539808111730963,0.9082227284088731,0.5161688658408821,-0.23957608314231038,0.9000745471566916,0.4967771857045591,-0.33282224321737885,0.44366172328591347,-0.5586102213710546,0.02457105042412877,-0.4282488403841853,-0.4787842836230993,-0.14151060348376632,-0.2903834618628025,-0.17078104289248586,0.22431721212342381,-0.8520208313129842,0.36109484545886517,-0.23089848086237907,-0.5529365581460297,-0.03680075518786907,0.2843428812921047,0.9174711145460606,-0.5811120658181608,-0.3057742998935282,0.32993600936606526,0.6582378069870174,-0.9719443102367222,-0.12466831551864743,-0.7452382259070873,-0.6894642231054604,0.4135614102706313,0.2544813179410994,-0.47084730537608266,-0.11086802883073688,0.4445654577575624,-0.4146596482023597,-0.6665215911343694,-0.6567801157943904,-0.6233887649141252,0.5884674107655883,0.5371794267557561,-0.7265611412003636,-0.5474909944459796,0.8646168448030949,0.16793809598311782,-0.5445505487732589,-0.5038526714779437,-0.9114006920717657,0.2662133667618036,-0.3897440452128649,0.5931883431039751,-0.1572235245257616,-0.8770745741203427,0.27718190802261233,0.8389300727285445,-0.4926735763438046,-0.2636805819347501,0.2806359934620559,0.36747847963124514,-0.5144468559883535,-0.2651583696715534,0.48446477903053164,0.21709314500913024,0.4355522785335779,-0.6957202581688762,0.19549142848700285,0.07832017308101058,-0.26062147645279765,-0.7654643724672496,-0.43465316388756037,-0.9873534869402647,0.8742847396060824,0.24306226801127195,-0.6360465190373361,0.8057666956447065,0.7094751223921776,-0.6647334699518979,0.771847243886441,0.19812250742688775,-0.906976941972971,-0.9202359709888697,0.05444985395297408,-0.09624647675082088,0.6416400764137506,0.538371960632503,0.1069861832074821,-0.7078698868863285,-0.028863946441560984,-0.9974619434215128,0.5593161364085972,0.15638766204938293,-0.20659483317285776,0.667027551215142,-0.5957054924219847,-0.2884838758036494,-0.18661476578563452,0.5980116142891347,-0.7433572309091687,0.6817590706050396,0.10229808278381824,0.7773781740106642,-0.6395641658455133,0.8512757103890181,0.9806231749244034,-0.4424364953301847,-0.4313483163714409,0.37955430475994945,-0.029477978125214577,-0.6596750626340508,0.5994962644763291,0.15956827579066157,0.32403483614325523,0.44546379428356886,0.9489912395365536,0.9766259486787021,0.5609175767749548,-0.6123887626454234,0.1752115418203175,0.028664718847721815,0.4299846552312374,-0.4327699663117528,-0.5962757533416152,0.5993961622007191,0.5607168860733509,0.5466823372989893,0.7128470810130239,-0.25747739244252443,-0.4953777063637972,-0.317177452147007,-0.45424052607268095,0.04759970586746931,0.8985107117332518,-0.4729992891661823,0.5274024200625718,-0.14450640324503183,-0.4668474686332047,-0.8941144603304565,-0.2780603589490056,0.18272251915186644,0.8033818486146629,-0.5646728677675128,0.10423974459990859,-0.7730011590756476,-0.15471473475918174,-0.7876259563490748,0.9341302090324461,0.4240592196583748,0.10265316674485803,-0.03334425203502178,0.343246809206903,-0.8328180494718254,0.045483204536139965,-0.9820447033271194,-0.023967485409229994,-0.42156350146979094,0.8544370699673891,0.06598566565662622,0.543697168584913,0.3820307310670614,-0.33268051315099,-0.00769154354929924,-0.3173983609303832,0.3561090645380318,-0.3037207624875009,0.3232499621808529,0.68733438430354,0.8296910393983126,-0.4320973875001073,-0.24316276516765356,-0.6095306943170726,-0.6101511395536363,0.6208643564023077,-0.5227971253916621,-0.36201980290934443,-0.2197643918916583,-0.4952125889249146,-0.5173346847295761,-0.12060323683544993,-0.9628504356369376,-0.728555160574615,0.342966016381979,0.9163985340856016,-0.06662771943956614,0.9889205936342478,0.011853844858705997,0.7600898696109653,0.7124835941940546,0.3384405840188265,0.9410020341165364,-0.1399830267764628,-0.739994649309665,0.5961046316660941,0.13696260750293732,0.61200892040506,0.7210165853612125,0.5613400964066386,-0.10381696280092001,-0.1362729324027896,0.6994859948754311,-0.910635347943753,0.4178164517506957,0.898259895388037,0.9840133967809379,0.17444918537512422,-0.6323353503830731,-0.8631211747415364,-0.39927756786346436,0.9763482278212905,0.43479050137102604,-0.7495459136553109,-0.6510687279514968,0.4392847209237516,0.8867021268233657,-0.7060452112928033,0.5529662556946278,-0.04074107063934207,-0.7666696994565427,0.020353146828711033,-0.16293028555810452,-0.3066890952177346,0.30805468605831265,-0.06599220726639032,-0.009402758907526731,0.13487436063587666,-0.6194864567369223,0.017212179955095053,-0.5622494826093316,0.6629561535082757,0.9758318830281496,0.33228875743225217,0.6276168464682996,-0.062102288007736206,0.27882302459329367,0.9146628645248711,0.3467399086803198,0.18796010501682758,-0.07469786563888192,-0.8995116031728685,0.20992174418643117,0.9264751323498785,-0.06577132130041718,0.9336733086965978,-0.8352778223343194,-0.1684328750707209,-0.23999701300635934,0.9942041076719761,0.6578715736977756,-0.6930081802420318,0.15424300730228424,0.7118075275793672,-0.47185339080169797,0.6582989967428148,0.30415983870625496,0.9743705112487078,0.2712233019992709,-0.6825128439813852,0.4479998699389398,0.7298393175005913,-0.7596141151152551,0.5555210462771356,-0.9730526246130466,0.3549505127593875,-0.6588794821873307,0.6624755412340164,0.673514112830162,-0.789238877594471,-0.7205386711284518,-0.6697372510097921,-0.1797845745459199,0.4767196080647409,-0.8706940300762653,0.28965357365086675,-0.24370666313916445,-0.5491416868753731,0.449796948581934,-0.2784417048096657,-0.8696909747086465,0.4254658194258809,-0.3868571207858622,-0.053578042425215244,0.009385489858686924,-0.43474231474101543,0.2296745632775128,0.6378696532920003,0.22353148134425282,-0.736368031706661,-0.5994127173908055,0.7116219503805041,-0.5532529172487557,-0.6101270788349211,0.9630069583654404,-0.5387319489382207,-0.08496732311323285,-0.24582364549860358,0.6358042806386948,-0.6701924782246351,-0.5644443025812507,-0.2287969863973558,0.17000738019123673,0.31277782609686255,-0.6861001648940146,-0.3736320114694536,0.9953286196105182,0.8881365605629981,0.5375662725418806,0.6801286218687892,0.9087126725353301,-0.6834170920774341,0.1776625905185938,-0.8398282937705517,0.34483444318175316,0.5219591832719743,-0.3541583074256778,-0.1527786422520876,-0.14663190208375454,-0.6675613196566701,0.9404596467502415,0.5341627825982869,0.47944245720282197,0.6152230938896537,-0.5703186127357185,0.31350746657699347,-0.5011571049690247,-0.12360088573768735,0.1188337979838252,-0.5248699742369354,-0.2533626863732934,0.34318778198212385,-0.2502862517721951,0.7105565462261438,-0.1484978273510933,0.15356834279373288,0.7382353069260716,-0.2775135603733361,0.8359282366000116,-0.9137927615083754,0.1274918052367866,-0.49062697449699044,0.8584868358448148,-0.07490259502083063,0.4720591292716563,-0.10082896426320076,0.4771626126021147,-0.8900251761078835,-0.7482821997255087,-0.6975410799495876,-0.40068845450878143,-0.32865821570158005,-0.13210180681198835,0.9505717940628529,-0.3830022346228361,0.3750581815838814,-0.5991121507249773,0.6807098109275103,0.19834640668705106,-0.4365413160994649,-0.28412896534428,-0.12286238931119442,0.6533829462714493,0.4455138905905187,-0.7626336044631898,-0.32574674813076854,-0.8755248901434243,-0.3289570165798068,-0.5362395802512765,-0.539845397695899,0.07373730791732669,0.9232066660188138,-0.4034350742585957,-0.7766998633742332,0.4794599446468055,-0.34105754690244794,-0.06328510493040085,0.5846365783363581,0.6450345693156123,-0.5353628383018076,0.11580756073817611,0.6792379356920719,-0.1293610162101686,0.10921847959980369,0.17617719061672688,0.30945619149133563,-0.8972450504079461,0.011931954883038998,-0.7974804886616766,-0.47530184173956513,-0.12812536861747503,0.3056103140115738,0.09421493811532855,0.18427066085860133,0.1817786511965096,-0.9070173529908061,0.640245673712343,-0.8648641430772841,0.6183320390991867,0.7470982493832707,0.5652912338264287,0.39699415070936084,0.3694492564536631,-0.3046752451919019,0.20448075514286757,-0.41634119767695665,0.03267410630360246,0.7617221218533814,0.543423627037555,0.3746979567222297,0.3668164894916117,-0.48631400614976883,-0.4255719296634197,-0.6697408217005432,0.5004880866035819,0.0742031391710043,-0.6673426176421344,0.40725255385041237,-0.39988570054993033,0.2166541563346982,-0.8212437089532614,-0.7407232080586255,0.3434435115195811,-0.6282218145206571,-0.5793550927191973,-0.5266239559277892,0.7080018860287964,-0.49316697660833597,-0.9582266975194216,0.521835739724338,-0.01685673650354147,0.7688011433929205,0.7066138796508312,-0.03188856691122055,-0.40429549803957343,-0.18932739039883018,0.5680284784175456,-0.6277198721654713,-0.23390365112572908,-0.9998444435186684,-0.599262464325875,0.7137411502189934,-0.1296292683109641,0.8919973219744861,0.9305331544019282,-0.5175092397257686,0.18308689258992672,0.33044078294187784,0.7334578554145992,0.9185614008456469,0.6555263646878302,-0.33353184163570404,0.5480663976632059,0.16016565402969718,0.9592961515299976,-0.32434892328456044,0.32693640841171145,0.45467639109119773,0.19376185210421681,0.6491826730780303,-0.1685916162095964,-0.5206524920649827,-0.6676179296337068,-0.34147461922839284,-0.7639797129668295,-0.2181097622960806,-0.6884511313401163,0.161583642475307,-0.9568986385129392,-0.25295514333993196,-0.6999065037816763,-0.7861244627274573,0.6837192717939615,0.11624469514936209,-0.8035018630325794,-0.9880995298735797,0.862446328625083,0.2212451072409749,0.9188868999481201,0.6070077833719552,-0.10717486450448632,0.019559058360755444,0.8402918963693082,0.738802355248481,0.7204170869663358,0.14266768004745245,-0.06835456192493439,-0.8822277067229152,0.6075808443129063,0.3864036197774112,0.09080362366512418,0.6768667506985366,-0.7372703705914319,0.2503051143139601,0.4329163087531924,0.45125117152929306,0.3052079030312598,0.9208987923339009,-0.6360372444614768,-0.5638276990503073,0.4200752745382488,-0.9313481128774583,-0.3520654602907598,0.7387393014505506,-0.16429402399808168,-0.13360458612442017,-0.019524012692272663,0.3022042205557227,-0.7381727742031217,0.2854053396731615,0.043682835064828396,0.1119526894763112,-0.22588393511250615,-0.8829490300267935,-0.9086798490025103,-0.5051573626697063,-0.35456327674910426,0.4784642457962036,0.9806306543760002,-0.6600919063203037,-0.49932309752330184,-0.5263416175730526,-0.8864260003902018,-0.6467892276123166,0.830645652487874,-0.4178100856952369,0.1455794428475201,0.6286624879576266,-0.4464388876222074,0.36024396447464824,0.2191779986023903,-0.1377882598899305,-0.42546548787504435,0.18691952526569366,-0.0923723173327744,0.6148738777264953,-0.5412973668426275,-0.5599375735037029,-0.9236193671822548,-0.6639752071350813,-0.391919516492635,0.3119044275954366,-0.3373303678818047,0.5129093616269529,-0.6799955610185862,0.8707955819554627,-0.49524119310081005,-0.2032294520176947,0.3725224593654275,-0.620856009889394,0.4716095086187124,0.18781403684988618,0.17662124056369066,0.9996197028085589,-0.3718605232425034,-0.5804180838167667,-0.3686638390645385,-0.025730842724442482,-0.3997755330055952,-0.6902751075103879,-0.6963232890702784,-0.5088097061961889,-0.010221802163869143,-0.6350189447402954,0.9456585720181465,0.39689979795366526,-0.8835091507062316,0.2778494581580162,-0.6662518139928579,-0.2784901554696262,-0.7003778088837862,-0.06695135263726115,0.36607661517336965,0.09054076997563243,0.4453585958108306,-0.042824212927371264,-0.7078795437701046,0.7577439774759114,-0.08229310484603047,-0.6436123931780457,0.14181804796680808,0.5140565889887512,-0.20294169522821903,-0.4775317399762571,0.7793761999346316,0.04856703616678715,-0.4592379308305681,0.8118303688243032,0.08711186097934842,0.658547034021467,0.9773462372832,0.7069427454844117,-0.7886993521824479,-0.5221721427515149,-0.7429320844821632,-0.13608200289309025,0.15159405814483762,0.7027628519572318,0.4482023040764034,0.9752028384245932,0.21241622976958752,0.9805623567663133,-0.27987348567694426,0.25896450970321894,-0.16539953276515007,-0.6383375045843422,-0.5304813608527184,0.2829619813710451,0.37832760298624635,-0.3038443406112492,-0.8980988976545632,0.0885529643855989,0.3819146603345871,0.9353075022809207,-0.06493932288140059,0.6789821479469538,0.62748215906322,-0.7829655916430056,-0.9846875355578959,-0.21851701149716973,0.14988748263567686,0.7617126144468784,0.2229139539413154,0.3852314301766455,0.7141968905925751,-0.7689363569952548,0.5092312330380082,0.48853302374482155,-0.276594378054142,-0.08968472201377153,0.6520699597895145,0.11093685030937195,0.6821892466396093,-0.46433286322280765,0.2403658707626164,0.5312574650160968,0.281187831889838,0.9573246371001005,0.16556135285645723,0.3488855380564928,0.8380159949883819,-0.14223988400772214,0.18653514422476292,0.13975029159337282,-0.8701237007044256,-0.3123236349783838,-0.9034860264509916,-0.5991250472143292,-0.13399015506729484,0.6052140947431326,-0.6811158522032201,0.6112285419367254,0.3108703177422285,-0.38140412606298923,-0.9786662040278316,-0.6696829693391919,-0.7302022534422576,0.4233148149214685,-0.9585241256281734,-0.37583802780136466,-0.540546047501266,-0.7777188555337489,0.5345275131985545,-0.23986157914623618,-0.8484404943883419,0.056658617220818996,0.6364881745539606,-0.7907668831758201,0.3319529742002487,0.0845667184330523,0.05021396046504378,0.8816789803095162,0.2634333218447864,0.9403167054988444,-0.7869068407453597,0.6400157655589283,-0.8198569677770138,0.6365133337676525,-0.8499271855689585,-0.89228421356529,-0.5118117579258978,-0.6719047059305012,-0.5387530471198261,-0.3544489908963442,-0.7101219338364899,0.4651393014937639,-0.8992288052104414,-0.976964604575187,-0.9393519717268646,-0.4762136461213231,-0.08727616257965565,-0.7936826264485717,0.6719786706380546,0.7010368602350354,0.056084015406668186,-0.02131874207407236,0.22904383670538664,0.8493150845170021,0.17084133811295033,-0.4992094854824245,0.8898463435471058,-0.8253776403144002,-0.7411329317837954,-0.6942823133431375,0.8884111535735428,0.909536728169769,0.41341259237378836,-0.8960847114212811,0.4421977289021015,-0.6311673689633608,0.1432029535062611,-0.15826952876523137,0.5722306030802429,-0.25786401191726327,-0.7795191681943834,0.0464787594974041,-0.9661108115687966,-0.2668895171955228,-0.8030944764614105,-0.5367928543128073,0.5546059748157859,-0.1062259147875011,0.8755207876674831,-0.47892106883227825,0.5390340704470873,-0.6191427689045668,0.1974896239116788,0.9275689437054098,-0.8051437600515783,-0.5943337311036885,0.3527120351791382,0.5316391936503351,0.6412723078392446,-0.6595876831561327,-0.6938825948163867,-0.33063677698373795,0.5609389627352357,-0.8890013829804957,0.8853098275139928,-0.9202279830351472,-0.600276936776936,-0.5047800494357944,-0.36076518008485436,0.9618592499755323,-0.8690337361767888,-0.5851428657770157,-0.40492560248821974,-0.20304813887923956,0.42847172915935516,0.613579171244055,0.4794942419975996,-0.5073538082651794,-0.3731161723844707,0.7813526983372867,-0.02545192837715149,0.5553935710340738,0.4607096118852496,-0.9466314022429287,0.7710207947529852,-0.8731269938871264,0.2856078715994954,-0.28753947420045733,0.2709051137790084,-0.5704019982367754,-0.7619391535408795,0.22017543297261,-0.8331363722681999,0.06533548887819052,-0.21456696465611458,0.00016056792810559273,-0.039172347635030746,-0.9056448088958859,0.40443954383954406,-0.3767625978216529,0.8391799996607006,-0.3593234815634787,0.309535707347095,0.6342573673464358,-0.38735270919278264,0.10954244248569012,-0.2645248896442354,-0.23896189592778683,-0.1972469729371369,0.752291432581842,0.963675104547292,-0.7645679782144725,-0.08419996220618486,-0.3493562997318804,-0.21043810760602355,0.6192674799822271,-0.9364309939555824,0.7833120669238269,0.05555481510236859,0.19509312277659774,-0.9961230847984552,-0.17256650840863585,0.361828223336488,0.4002162651158869,0.3929582182317972,-0.7448646407574415,-0.5902611962519586,0.8178402571938932,0.5672703525051475,-0.991634470410645,0.338440814986825,0.5881119752302766,-0.9660116797313094,0.49624017626047134,-0.2829485172405839,-0.3850305089727044,0.23219538060948253,0.4019493362866342,0.9047565143555403,0.32938889786601067,-0.45600418699905276,-0.8103730571456254,-0.7250117734074593,-0.9778303783386946,0.4536034041084349,-0.09058105759322643,0.17930995533242822,-0.719212613068521,0.9846766144037247,0.27902816608548164,0.3913812725804746,-0.6605368312448263,0.6172767085954547,-0.10814898926764727,0.8736949139274657,0.8604018711484969,0.6876253178343177,-0.42074779886752367,0.689122895244509,0.9883401086553931,0.11959754349663854,-0.6677325847558677,-0.47373967058956623,-0.954439977183938,0.5905960286036134,-0.8550455644726753,-0.6436050836928189,0.6482797716744244,0.446174256503582,-0.37978414446115494,0.07870659325271845,0.9412573599256575,-0.35797501681372523,-0.7299101618118584,-0.3359040077775717,0.4953279737383127,0.5102817029692233,-0.36046202946454287,0.6458335719071329,-0.03413282195106149,0.60996920382604,0.21524446085095406,0.8548207678832114,-0.516489727422595,-0.6556162536144257,0.47608107002452016,-0.4141467656008899,-0.01178946066647768,-0.28725474048405886,-0.44433496333658695,0.7397243082523346,-0.9906838214956224,-0.49671901669353247,-0.725149305537343,-0.14849605271592736,0.1469195536337793,0.6255265497602522,0.017204700969159603,-0.44487744802609086,-0.7816386241465807,-0.7847257680259645,0.9718781202100217,-0.7632742105051875,0.07652365183457732,0.2864289190620184,-0.2811414715833962,0.24276596494019032,-0.7065186225809157,-0.7652770667336881,-0.3568970775231719,0.9770833286456764,-0.6462328648194671,0.5254071480594575,0.5409510168246925,-0.14621366932988167,-0.4543363079428673,0.09738028421998024,-0.351730412337929,-0.1783985449001193,-0.498005008790642,-0.7945741754956543,0.17921027773991227,-0.2034997958689928,0.14539848500862718,0.9414295479655266,-0.9093224774114788,-0.8349243137054145,-0.37160466564819217,-0.6333183390088379,0.7577242986299098,-0.6160298204049468,0.05550985271111131,-0.6913026887923479,0.08020624564960599,0.5633537415415049,-0.7334242300130427,-0.27796364575624466,0.7082944312132895,-0.6311476705595851,-0.7451616134494543,0.9536096109077334,-0.317648789845407,-0.44395339163020253,-0.9511737432330847,-0.026716962922364473,0.06621993286535144,-0.47733667958527803,-0.9685965739190578,-0.9708514078520238,-0.18637181539088488,-0.2794665778055787,-0.0874660606496036,-0.6679666461423039,0.5717568364925683,0.5767610198818147,-0.38705830555409193,-0.6388273905031383,-0.5021827211603522,0.41763881361112,-0.762704445514828,-0.0520595102570951,-0.33226599311456084,0.4296644404530525,0.8829191108234227,0.4426099085249007,0.6996025396510959,-0.376098417211324,0.5981344440951943,-0.09988298965618014,0.2814325112849474,-0.42368800612166524,0.694267665501684,0.5823492612689734,-0.2195822293870151,-0.5600717193447053,-0.013722716365009546,-0.9046148057095706,0.897507852409035,-0.5205209795385599,-0.7295046234503388,-0.16354440432041883,-0.35033295629546046,-0.1529147787950933,-0.31865003844723105,-0.8150203474797308,-0.4027220378629863,0.9901883751153946,-0.4384900047443807,0.9047914613038301,0.7520648343488574,-0.8251204178668559,0.5875552133657038,-0.7014370211400092,0.35852426290512085,0.4725571754388511,-0.2594856349751353,0.27740142261609435,0.3720004609785974,-0.9402942676097155,-0.6228548162616789,0.6472564991563559,-0.3358878055587411,-0.9186045485548675,0.9248951789923012,-0.36033381382003427,-0.9229290019720793,0.09515628172084689,0.37657331163063645,0.3720057839527726,-0.21429499704390764,0.7163531435653567,0.36572857154533267,-0.6305579915642738,0.02431464660912752,-0.28265393525362015,0.07742331875488162,0.6691453414969146,-0.9195746146142483,0.14299118239432573,-0.9855721173807979,0.7364583755843341,-0.49303713301196694,-0.8130649700760841,-0.7363186487928033,0.00588358985260129,0.8276668847538531,-0.11906475108116865,-0.4149491800926626,0.637767830863595,0.8039620444178581,0.3034072299487889,-0.05518201971426606,-0.3318238975480199,0.07999480469152331,-0.048411774914711714,-0.33880738262087107,0.42224177718162537,0.9799099611118436,0.9707632912322879,-0.6108470032922924,0.19551168335601687,-0.36995846265926957,0.14911669911816716,0.8135858438909054,-0.8769522942602634,-0.8579905247315764,0.22008952777832747,-0.3512516566552222,0.5189410811290145,-0.36372749600559473,-0.07679746951907873,-0.08385086618363857,-0.6636957307346165,0.2129563046619296,0.013858309015631676,0.9451261050999165,0.9023392996750772,-0.5162372016347945,0.6132190660573542,0.5599384102970362,0.990003605838865,-0.922760147601366,-0.05173068959265947,0.7114809900522232,0.1227227239869535,-0.7678340543061495,0.43534036725759506,0.8397671096026897,0.13071527937427163,0.9586005052551627,-0.6299761957488954,-0.5592655902728438,-0.3111227978952229,0.6562741305679083,-0.6238005026243627,0.8342485860921443,0.3335604048334062,-0.7239148332737386,-0.3712775781750679,0.8815541374497116,0.06123637221753597,-0.5463267997838557,0.03683896828442812,-0.41930582700297236,-0.8897656830959022,-0.7931139711290598,-0.9486500634811819,-0.31281598936766386,0.363584415987134,0.9596383930183947,-0.3241805345751345,-0.3989330683834851,0.7290210053324699,-0.34005559468641877,0.7411467698402703,-0.6344396057538688,-0.8317031147889793,0.0054480452090501785,-0.0002583283931016922,-0.4366541625931859,0.4924147860147059,-0.6412601838819683,0.7413036250509322,0.21581231011077762,0.5494745699688792,-0.16666731936857104,-0.09819911792874336,0.29360343189910054,0.03934173798188567,-0.11774448677897453,-0.35584978107362986,0.5390499946661294,-0.9440206456929445,-0.2883124644868076,0.19834395498037338,0.46551488945260644,-0.24592659389600158,-0.22025237092748284,-0.08797438256442547,0.4949864842928946,0.5612758593633771,0.8780685304664075,0.8100574295967817,0.90636330191046,0.17940676864236593,0.8645410039462149,-0.7439101804047823,0.3513456657528877,0.6241786172613502,0.17507502622902393,0.5572879118844867,0.6189017947763205,-0.3604769790545106,-0.799752012360841,0.8606882458552718,-0.9344821739941835,-0.3546494273468852,0.5494132484309375,-0.6078444258309901,-0.777720388956368,0.8190543791279197,-0.875732415355742,0.5422563967294991,0.5297880708239973,0.5605229064822197,0.5937798884697258,0.18326441291719675,0.8130972576327622,0.048142049461603165,-0.27142146322876215,0.07479498721659184,0.7255170242860913,-0.8769275834783912,0.27680592192336917,0.8881723205558956,0.0907696159556508,-0.4247066234238446,-0.48731704894453287,-0.08496726583689451,-0.4156795712187886,0.8357365941628814,0.5588840446434915,-0.3027963237836957,0.29203375056385994,-0.7561915693804622,0.7312497533857822,0.961435497738421,0.07612228346988559,0.6976108900271356,-0.3514606412500143,-0.5305871977470815,-0.14230580488219857,-0.14109775749966502,0.47869703033939004,0.3860553475096822,0.11423172615468502,-0.3320156899280846,-0.5571885188110173,-0.007273989729583263,0.3382312348112464,-0.40358836855739355,0.20452864607796073,0.8602278288453817,-0.11117790313437581,-0.5386255523189902,0.5900798849761486,-0.5448387609794736,-0.22730836924165487,-0.25039557833224535,0.32334586698561907,-0.4892423087731004,-0.013315617572516203,0.854445232078433,-0.2938903644680977,0.7660957602784038,0.3216679161414504,0.589609865564853,-0.5604877080768347,-0.5051148012280464,-0.7365060308948159,-0.5316063202917576,-0.008039921056479216,-0.995525034610182,0.062217249535024166,0.2681874316185713,0.47419799864292145,-0.6525231157429516,0.8400921751745045,-0.7519942722283304,0.7222151863388717,0.9305497733876109,0.6189134605228901,0.35811126697808504,0.003700511995702982,0.46402802085503936,-0.7501402264460921,-0.7934353235177696,0.08668957417830825,0.9661913830786943,-0.050874246284365654,-0.8237419133074582,-0.16841959580779076,-0.42192788189277053,0.6240333779715002,0.4190595792606473,-0.461723115760833,0.23314594710245728,-0.0053719934076070786,0.0006196056492626667,0.07697989325970411,0.8144516050815582,-0.48686130018904805,-0.5646769711747766,-0.9111286210827529,-0.02223799517378211,0.24023264599964023,-0.07368945563212037,-0.6898303139023483,0.9335029232315719,0.9831561204046011,-0.6834659618325531,-0.10725509934127331,-0.3670199532061815,0.07927308138459921,0.13095037220045924,0.28734887577593327,-0.05093201622366905,0.28769389167428017,-0.9229368926025927,-0.6574531318619847,0.9687205106019974,-0.6013489067554474,-0.5218759635463357,0.766629378311336,-0.04347865842282772,0.7598562529310584,-0.7091019405052066,0.6235211379826069,-0.9887926806695759,-0.2920072879642248,0.914818084333092,0.39290473982691765,-0.9550778949633241,-0.7229864504188299,0.06258637737482786,0.6138435071334243,0.34471576381474733,-0.8518836200237274,0.08139943704009056,-0.616689289920032,-0.70877930149436,0.4571288749575615,0.6834452683106065,0.19598152907565236,0.04705047979950905,0.3757098107598722,-0.5330932145006955,-0.6275442345067859,0.8734524571336806,-0.09622778370976448,0.19263406842947006,0.3873251867480576,-0.9409849685616791,-0.799875411670655,-0.7918809526599944,0.618706482462585,-0.8489482495933771,0.020288746803998947,0.994715504348278,0.25981823867186904,0.7432751185260713,0.16851602494716644,-0.6348836468532681,0.4015400009229779,-0.5480340518988669,0.1891769878566265,-0.2700037215836346,0.4713703254237771,0.6958920578472316,0.16230950132012367,-0.6752793113701046,0.9147126525640488,0.060389827471226454,0.033738818019628525,0.122238933108747,-0.01822675485163927,-0.5637164236977696,-0.8709119479171932,0.28756974218413234,-0.10743088461458683,0.6971523091197014,0.7621394162997603,0.8346722302958369,0.7616265341639519,-0.6492141196504235,0.5187795972451568,-0.4190475083887577,-0.23492555785924196,0.6390542825683951,-0.5231946161948144,0.6918918169103563,-0.4066840671002865,0.5070244427770376,-0.2904469142667949,-0.07652609143406153,0.9995050225406885,0.14851330081000924,-0.21694965427741408,0.8715119082480669,-0.7802219712175429,-0.2885018717497587,0.6731739575043321,0.7578698294237256,-0.24612060468643904,0.221059235278517,0.8969100904650986,-0.8255026531405747,-0.4151302701793611,0.024286847561597824,0.8222358012571931,0.45343931997194886,-0.6757780048064888,-0.8703015693463385,0.9506831364706159,0.9749606484547257,-0.5455506984144449,-0.8063541371375322,-0.6306092692539096,-0.42200565757229924,0.02183712413534522,-0.5717888637445867,-0.3003441486507654,0.6639469969086349,-0.17699034372344613,0.35853169579058886,0.20871757343411446,0.08565827086567879,-0.00863785995170474,0.5758453193120658,0.4772049733437598,0.92675347533077,0.43632675521075726,-0.25461012683808804,-0.2933993465267122,-0.19941425416618586,0.10222594067454338,0.8254249729216099,0.800020064227283,-0.16421311162412167,-0.8711296627297997,0.4301907094195485,0.16744720842689276,0.8105037715286016,-0.8396193780936301,0.43902223417535424,0.031122597865760326,-0.4380595781840384,0.32925165072083473,0.49908520467579365,0.14795951917767525,-0.9315663296729326,0.9453526553697884,0.18366003083065152,0.8003574195317924,0.4258993831463158,-0.6890299255028367,0.7164687248878181,-0.7064539296552539,-0.6975888116285205,0.062298680655658245,0.8182189981453121,0.004826607648283243,-0.4212752617895603,-0.6128437947481871,0.7761047850362957,-0.12501744367182255,-0.5498559358529747,-0.7865462871268392,-0.9772440893575549,0.17925136536359787,0.9884561295621097,0.22040908969938755,-0.05656073335558176,0.8609943026676774,-0.061135486233979464,-0.12233738973736763,-0.07457772502675653,-0.2183256600983441,-0.2028584023937583,0.9071181886829436,0.7280930955894291,-0.4223771430552006,-0.46898928144946694,-0.7514977194368839,-0.1657196213491261,0.12845878629013896,0.6276830867864192,-0.3793275570496917,-0.2605549478903413,0.43799496348947287,-0.31878382014110684,-0.12742834305390716,-0.17048968421295285,0.6040242575109005,0.44066761899739504,-0.3907104702666402,-0.2711346368305385,-0.018247932195663452,0.5225716535933316,-0.9652850008569658,-0.18589591747149825,-0.4999176114797592,-0.843547681812197,0.21056795306503773,0.7717136116698384,0.7308043008670211,0.07754523865878582,-0.6016632290557027,0.18208418227732182,-0.1691605462692678,-0.11500683566555381,-0.49298321921378374,0.25842980155721307,0.9691152637824416,0.5670833834446967,-0.9935894249938428,0.5377926039509475,-0.6392090641893446,-0.1711950576864183,-0.8692484386265278,-0.6704265349544585,-0.48426344990730286,-0.5567196547053754,0.5272114900872111,0.8955473890528083,0.7622834341600537,0.8258156385272741,0.7533856285735965,-0.12404072098433971,-0.12407882418483496,-0.44581359159201384,-0.16252161376178265,0.13601835584267974,-0.5327429468743503,-0.9229448982514441,-0.9138033548370004,-0.7184275491163135,-0.5194176868535578,-0.8529411689378321,0.015390539076179266,-0.29069624142721295,0.16895332979038358,0.4954364369623363,0.0496930330991745,-0.04680864978581667,-0.6600708137266338,0.12592167779803276,0.6741311345249414,-0.9383891350589693,-0.887984829954803,0.12977569457143545,0.044711167458444834,0.7729289727285504,-0.8987773233093321,0.6951090167276561,0.6953678987920284,0.7236464763991535,-0.2368497303687036,0.5384600791148841,-0.36597685934975743,-0.5869946884922683,-0.5661380854435265,-0.4356744275428355,0.6763795232400298,0.4553332584910095,0.5444659041240811,-0.9246203238144517,0.5194659326225519,0.8501785066910088,-0.8541743061505258,0.6522381948307157,-0.12791472114622593,-0.8081833496689796,-0.4376838128082454,0.15278460644185543,-0.16004363214597106,0.6860669115558267,0.8957047699950635,0.14530118834227324,-0.9973701471462846,0.11200833134353161,-0.3173611662350595,-0.1908220173791051,-0.09377195732668042,-0.8665176318027079,0.8081475840881467,0.19307367457076907,-0.1520042452029884,-0.9677211144007742,0.5421714959666133,-0.03353117126971483,0.05473888712003827,0.8844093889929354,0.15057340124621987,0.9220596253871918,-0.4213057430461049,0.5742921838536859,-0.8219261458143592,-0.16257897717878222,0.25163662945851684,-0.6484147706069052,-0.059568772092461586,0.0036067632026970387,-0.3668020567856729,0.9405428627505898,-0.6742654456757009,0.1034955675713718,0.7850437727756798,0.4097201870754361,0.9939782358705997,-0.5761428936384618,-0.5262222662568092,-0.14516623551025987,-0.5008449289016426,-0.27931427070870996,0.7353086634539068,0.69524483429268,0.7461455599404871,-0.4745535822585225,-0.19781015953049064,-0.3552629156038165,-0.6505276970565319,-0.5601744586601853,-0.16480101319029927,-0.7116057509556413,0.6500820019282401,-0.8918694676831365,0.7464141827076674,0.7273160829208791,-0.5049299439415336,-0.9899347508326173,0.6628599409013987,-0.759729121811688,0.4104064730927348,-0.2694202517159283,0.8899116194806993,-0.059500583447515965,0.27217673789709806,-0.21340305032208562,-0.23326381342485547,-0.664062153082341,0.2979611908085644,-0.29565881472080946,-0.14954421762377024,0.8175025186501443,-0.9961053575389087,0.8166570472531021,-0.3519526934251189,0.37535113422200084,0.8830635510385036,-0.2111867219209671,0.26522166980430484,0.9181044842116535,-0.9881545379757881,0.6044346168637276,-0.8638966004364192,-0.9348146137781441,-0.25814107432961464,0.598953100387007,-0.18549340637400746,0.9252533302642405,0.9926610575057566,-0.3715971661731601,-0.21482157707214355,0.8950281622819602,-0.004933008458465338,-0.2022367180325091,0.5193400280550122,-0.4028741526417434,-0.30381619092077017,-0.29929016064852476,0.7610891321673989,-0.01014883117750287,-0.31820511957630515,0.4416546653956175,0.19618374947458506,-0.04840320674702525,0.8077160837128758,-0.9964083442464471,-0.6049155034124851,-0.7206533304415643,0.007777702528983355,0.2836722736246884,-0.4872241886332631,0.6533820033073425,-0.9216163591481745,-0.21539523592218757,0.5046954797580838,0.4766639042645693,-0.17907042941078544,0.13943130895495415,0.7289926586672664,0.3445157231763005,0.3479596823453903,-0.0006240764632821083,-0.6917358441278338,0.9196592457592487,-0.7501821159385145,-0.7780811949633062,0.33818772016093135,-0.39954349491745234,0.9610214335843921,-0.13877385947853327,-0.17474937392398715,-0.04235072387382388,0.8080864562653005,0.47457799268886447,-0.9233383485116065,0.06506987242028117,0.8909670654684305,0.4343510172329843,0.37278713285923004,0.5780054139904678,-0.7388567668385804,-0.928532478865236,-0.8222110494971275,-0.16982909943908453,-0.5375669980421662,0.03939518239349127,0.7669093436561525,-0.3545571439899504,0.9365250589326024,-0.9466489646583796,0.27650450402870774,0.7727523148059845,0.017521264031529427,-0.7987133576534688,-0.870659270323813,-0.16814819211140275,-0.7888081124983728,0.6419428950175643,-0.053830843418836594,-0.6861196160316467,0.8046170244924724,0.42173103522509336,-0.5815076194703579,0.8585958504118025,-0.2774757887236774,0.8716313811019063,0.3758632722310722,-0.6416602316312492,-0.08092683088034391,0.42757491767406464,0.45162160880863667,0.5615438977256417,0.6636383403092623,0.34287574142217636,0.606564050540328,-0.3871597768738866,-0.7489782003685832,-0.13522721035405993,0.13176338095217943,0.7804441656917334,0.5259415921755135,-0.13459392497316003,0.6531983730383217,0.9820282640866935,0.6855584061704576,-0.6235385010950267,-0.1600261777639389,-0.7461518128402531,-0.06172506185248494,0.06901010265573859,-0.1659816326573491,-0.28029758017510176,-0.18721927469596267,-0.7627905188128352,0.859398549888283,0.08426950313150883,0.3348014452494681,0.5226035304367542,-0.7276484337635338,0.11007825378328562,0.7740042782388628,0.5652465792372823,-0.6773167257197201,-0.6028816853649914,-0.09356490289792418,0.8771558492444456,-0.12119025690481067,-0.47347107995301485,-0.8020120686851442,0.5878358860500157,0.29194056428968906,0.3434760421514511,0.18076146813109517,0.8318056310527027,-0.8974028644151986,0.6834483598358929,-0.6582489991560578,-0.5207697306759655,-0.7024571923539042,0.6646284377202392,0.16030153539031744,-0.9314847169443965,0.31176562421023846,-0.021241854410618544,0.3547501480206847,-0.0549650564789772,0.24710284732282162,-0.4946189410984516,0.40699212113395333,0.7054740032181144,0.34859596053138375,-0.03349543455988169,-0.9339257581159472,0.6954452930949628,-0.8630455546081066,-0.8532943371683359,-0.49981496622785926,0.6218183562159538,0.8347353637218475,-0.1450795498676598,0.5415327693335712,0.18965693516656756,-0.1528102862648666,0.811344541143626,-0.5101141901686788,-0.9863675991073251,-0.8753550588153303,-0.9058749838732183,-0.4102720315568149,-0.6248885621316731,0.2814901266247034,-0.3269541282206774,-0.825725058093667,0.557504998985678,0.28436162462458014,-0.17416083673015237,0.7681245813146234,0.8646890809759498,-0.2662350982427597,-0.2997117559425533,-0.6622812603600323,0.4410777445882559,-0.6800154894590378,0.876660437323153,0.079262541141361,0.39870030619204044,0.7824723511002958,-0.49312381725758314,0.1702681528404355,-0.2702984930947423,-0.1129700574092567,0.313235133420676,0.31998690543696284,0.5542058665305376,-0.7411565422080457,0.6963409320451319,-0.09138390049338341,0.1590056959539652,-0.2525909887626767,-0.6830332879908383,-0.3424499756656587,0.5459326547570527,-0.20239337673410773,0.2005446469411254,0.48020184924826026,-0.013281780760735273,-0.6252371319569647,0.5406023585237563,0.056957855354994535,-0.04296131944283843,-0.9021273502148688,-0.7212384310550988,-0.5020954865030944,0.429999269079417,-0.12902020709589124,0.9181388784199953,0.6456868364475667,-0.1809980166144669,0.017071641981601715,-0.44243854051455855,-0.3397199069149792,-0.8571039452217519,0.30638487497344613,0.48828584887087345,0.8198778186924756,0.596717860084027,-0.5255984393879771,0.22315805684775114,0.30103011382743716,0.528224834240973,-0.5910839475691319,0.9638930619694293,0.1714317137375474,0.012202562764286995,-0.15916400216519833,-0.879584027454257,0.9669060236774385,0.9655556525103748,0.5684021818451583,0.16676604421809316,0.33045973535627127,-0.9426202001050115,0.7956655300222337,0.23017015773802996,-0.009632561355829239,-0.10614595841616392,-0.5783681808970869,-0.18430869467556477,0.8410173743031919,-0.5780553044751287,-0.1477909917011857,0.5779497548937798,-0.5383731005713344,-0.6233462863601744,0.5289460769854486,0.3326381267979741,0.8198478743433952,-0.08489226317033172,-0.45809672959148884,0.38587704952806234,0.18120722007006407,-0.5253171161748469,0.7585121435113251,-0.6724669574759901,-0.39159383485093713,-0.34152352483943105,0.6513167140074074,0.48959246277809143,0.8614993076771498,0.14826280437409878,-0.8250528639182448,-0.9910889463499188,-0.44263937463983893,0.6581504722125828,0.5999200525693595,0.5756122558377683,0.23997862543910742,0.47544512944296,-0.7514523505233228,-0.34948295215144753,-0.4188094041310251,0.7801435799337924,-0.6457599522545934,-0.19744015811011195,0.44269175408408046,0.3081261208280921,0.2722107362933457,-0.1316797574982047,-0.6566824945621192,-0.9521873900666833,0.26813771156594157,0.9077271581627429,0.6625998639501631,0.5785333169624209,0.22309612622484565,0.4029585705138743,0.39829437201842666,-0.8595497030764818,-0.9758248892612755,-0.27579831378534436,-0.20067680440843105,0.7887748703360558,-0.8977318634279072,0.37773174280300736,0.8066998217254877,-0.45868917321786284,0.14670296106487513,0.8257476128637791,-0.8936142916791141,0.7413571532815695,0.9416225817985833,0.16026396863162518,-0.30756471026688814,0.3897782382555306,-0.39421061472967267,0.5306753301993012,-0.42625480564311147,-0.6657096045091748,-0.8725606058724225,0.8812516909092665,-0.9292743015103042,-0.586026688106358,-0.7317756959237158,0.9028998068533838,0.5955546204932034,0.4267167607322335,-0.6626959322020411,-0.7484064092859626,-0.20985552994534373,-0.6344392411410809,0.6081835268996656,-0.29587636003270745,-0.30564698250964284,0.9220928526483476,0.17107311729341745,0.4630502164363861,-0.8026477401144803,0.935506718698889,0.4722093930467963,0.9166779080405831,0.8829831858165562,-0.4031835156492889,-0.0996240871027112,-0.25567351188510656,-0.46562032867223024,-0.7793923993594944,0.13700430374592543,-0.7208838472142816,-0.5775487963110209,-0.47227221028879285,0.9705153573304415,0.972334529273212,-0.9663997390307486,-0.18890755716711283,-0.8194985487498343,-0.3642921852879226,-0.6117058005183935,0.30536074843257666,-0.41557242907583714,-0.2660746928304434,-0.17221184261143208,-0.589604489505291,-0.06959626730531454,0.6083801970817149,0.05158840445801616,-0.5287475474178791,-0.4462626874446869,0.07317550107836723,-0.5837096725590527,0.28240193193778396,-0.5639501241967082,-0.8523303968831897,0.0830623903311789,0.3221249380148947,-0.20311461947858334,-0.34259914932772517,-0.113266889937222,-0.5137912449426949,-0.2946466449648142,0.7155366344377398,0.07787998206913471,-0.4931260417215526,0.48058787174522877,-0.03400312690064311,-0.232606187928468,0.7733686282299459,-0.17075225245207548,-0.06502541014924645,0.5551082263700664,0.17475817957893014,0.837319016456604,-0.3741343100555241,-0.7754117022268474,0.5617988985031843,0.1626445152796805,0.8124048341996968,0.2742065549828112,-0.2766346991993487,-0.47244042344391346,0.060922408010810614,0.8764659077860415,-0.07483604503795505,-0.18855818174779415,0.4408986563794315,-0.09588776901364326,-0.7821088875643909,-0.5804111221805215,0.8076614206656814,-0.07252825330942869,0.22562198340892792,-0.10529178939759731,-0.5935745337046683,0.336013822350651,0.6994132096879184,-0.898097459692508,-0.652866895776242,0.3079041661694646,-0.8806964019313455,-0.8483299990184605,0.07661256287246943,-0.21020670514553785,0.33029061648994684,0.1403226084075868,-0.8577817203477025,0.7069128099828959,0.8704231679439545,-0.01716137072071433,-0.5760026234202087,-0.7237814031541348,-0.2571561597287655,0.5233051576651633,0.4986241925507784,-0.7921049511060119,-0.8846015338785946,-0.8802765957079828,-0.6647196467965841,0.10111451474949718,-0.8282309314236045,-0.14270180836319923,-0.9834135989658535,0.40596118522807956,0.7920601759105921,0.0009635137394070625,0.38040989823639393,0.43832711037248373,0.3850552821531892,-0.8522008778527379,-0.6197736370377243,-0.5680366368032992,-0.47553533036261797,-0.4028270849958062,-0.1340995072387159,-0.7951609324663877,0.14316453179344535,0.301169547252357,-0.626697912812233,0.5035521346144378,-0.6011876221746206,-0.09910192852839828,-0.45967785734683275,-0.2669868115335703,-0.934498218819499,0.3396106129512191,-0.7616079682484269,-0.4746752022765577,0.41333498200401664,-0.6241192636080086,0.10273873712867498,0.15840539196506143,-0.11234977701678872,-0.5903943302109838,0.8351988974027336,-0.7192833279259503,-0.6050009410828352,-0.8757069311104715,0.25355896865949035,-0.7091037118807435,0.001358377281576395,0.5054124342277646,0.20455574290826917,-0.01261144783347845,0.3391044377349317,0.42090386990457773,-0.5823732516728342,-0.3792225574143231,-0.354264531750232,0.2402808195911348,0.43869713181629777,0.8091202406212687,0.8000412629917264,0.7324885106645525,0.09435184393078089,-0.5345712406560779,0.9968409896828234,-0.4752655569463968,0.5918782548978925,0.2750315060839057,0.5956161594949663,0.35916005074977875,-0.176901173312217,0.5873569399118423,0.11334834713488817,0.0745814647525549,0.39520810823887587,-0.06656602676957846,0.11259057885035872,0.7291509378701448,-0.9189177383668721,0.7941692029125988,-0.3559304988011718,0.03632103791460395,-0.21734465239569545,-0.6378162270411849,0.20441786386072636,-0.3409106801263988,-0.13178942119702697,-0.26371596194803715,-0.09506080765277147,0.1868087281472981,-0.934312351513654,-0.2026879172772169,0.9697093027643859,0.7478620940819383,-0.11815181793645024,-0.08894144976511598,-0.5777358096092939,-0.590960156172514,-0.8628349364735186,-0.2324137738905847,-0.2960242321714759,-0.004654290620237589,0.13597969058901072,0.8142278627492487,-0.8603579471819103,-0.05355094885453582,0.09823060780763626,-0.7862197649665177,-0.40680923964828253,-0.43696572398766875,-0.6384513275697827,0.06425966462120414,0.7821459635160863,-0.1965179443359375,-0.6124411597847939,0.08803560119122267,-0.7179027977399528,-0.4633806315250695,0.9220014540478587,0.24196213437244296,-0.5165335200726986,-0.14528509229421616,-0.5944555490277708,0.7223566053435206,0.4377358974888921,0.4801290431059897,-0.019141066819429398,-0.36312405578792095,-0.7006557155400515,0.4920282894745469,-0.3048404324799776,0.303596097510308,0.4059775867499411,0.6384637369774282,-0.4856953751295805,0.05723135406151414,-0.7353277718648314,-0.6810875670053065,-0.8295423341915011,0.8662194665521383,0.95534602785483,0.20016295090317726,-0.921723032835871,-0.3010449009016156,-0.5501465941779315,0.7636796492151916,-0.6502698878757656,-0.8363905707374215,-0.07268969155848026,-0.18919960223138332,-0.3646230301819742,-0.05423695547506213,0.3504068525508046,-0.37812366196885705,0.2527175727300346,-0.43384887045249343,0.06580613041296601,0.6778855537995696,0.787085525225848,-0.5318785756826401,-0.7902030604891479,-0.9631495219655335,0.11337143974378705,-0.548813009634614,-0.36020398093387485,-0.7534618088975549,-0.9758280599489808,-0.36893909610807896,-0.6044690767303109,0.7091991356573999,0.3810162050649524,0.09900159109383821,-0.14003002643585205,-0.2710065054707229,0.16402798471972346,0.3448774288408458,0.05408243229612708,0.6388721619732678,-0.573253246024251,-0.39540317514911294,0.5551230302080512,-0.3973085219040513,-0.32701175939291716,-0.627489305101335,-0.5003256648778915,-0.0955951763316989,0.8800095519982278,0.9130757870152593,-0.437599859200418,0.07402483653277159,0.01010786322876811,-0.06827871361747384,-0.0007347576320171356,-0.22564811073243618,0.41333435755223036,0.5852719466201961,-0.9742745258845389,0.22402193769812584,-0.41935361735522747,-0.24070251686498523,0.2988746948540211,0.07567904656752944,-0.7584947650320828,-0.8166899220086634,0.38607675256207585,-0.954817246645689,0.7504861108027399,0.6632247176021338,-0.6033737594261765,0.4716033274307847,0.4826078601181507,0.4179864972829819,0.1385338301770389,-0.6539118955843151,0.6035960637964308,-0.4423967497423291,-0.6981443804688752,0.05155349476262927,-0.43181623006239533,0.4434003373607993,0.6448622038587928,-0.35086741019040346,0.5968788750469685,0.20399901922792196,-0.09745314996689558,-0.2576026846654713,0.9012166792526841,0.17711799824610353,0.46489911153912544,-0.14580416167154908,-0.2160075199790299,0.4863954880274832,-0.035250455141067505,0.8090671533718705,-0.98886827705428,0.009634911548346281,-0.22816679207608104,-0.8558995933271945,0.2580073494464159,0.44591002026572824,-0.8478646711446345,-0.577598846051842,-0.03022776637226343,0.12715933797881007,0.5693394807167351,0.10479471832513809,0.40639482624828815,0.8008563593029976,0.2116568754427135,-0.12466794298961759,0.5560785736888647,0.06978069338947535,-0.3275917870923877,0.32349453400820494,0.20066275307908654,0.686003144364804,-0.4835852072574198,-0.018942701630294323,-0.7466500434093177,0.5236101881600916,-0.4083850816823542,0.24323286768049002,-0.8983797910623252,0.3268201518803835,0.03268521651625633,0.4250822924077511,-0.44515215419232845,-0.09847301756963134,0.3951523401774466,-0.5766147878021002,-0.0027763275429606438,0.9183242828585207,-0.08487263461574912,-0.5320479036308825,0.554181843996048,-0.8757319930009544,0.19092984357848763,0.10026580141857266,-0.08896838780492544,0.7805382004007697,-0.040536229964345694,-0.18022853741422296,-0.8791751409880817,-0.9802177702076733,-0.2030368596315384,-0.17987630516290665,0.5297770239412785,-0.9389257235452533,0.49970779148861766,-0.10598456673324108,-0.9267374170012772,0.03777674352750182,-0.3130953535437584,-0.310563531704247,0.9573404369875789,0.22142424527555704,-0.402292484883219,-0.15677825594320893,0.4070305763743818,-0.796651934273541,-0.8862980497069657,0.9521459587849677,0.9060837351717055,0.22820959286764264,0.5650864322669804,0.5818599346093833,-0.498798368498683,-0.43904714100062847,-0.0934461741708219,0.20829194504767656,-0.1554386899806559,0.9929359289817512,0.1499283709563315,-0.847336167935282,-0.833416173234582,-0.7326974757015705,0.5533563387580216,0.49263391830027103,-0.4109033993445337,-0.5967903439886868,-0.49239458702504635,0.8994853277690709,-0.16842519119381905,0.9189090845175087,0.00794639578089118,-0.5417005061171949,0.45968697406351566,0.37745425989851356,0.3487279359251261,0.7705190367996693,-0.5875739678740501,-0.2288436619564891,0.7409362904727459,-0.3837313228286803,-0.1488578887656331,-0.8062659804709256,-0.24108580639585853,0.45694774109870195,0.7760028121992946,0.3634898941963911,0.6427645515650511,0.8792502926662564,0.9567338177002966,-0.7326199067756534,0.4026038474403322,0.9398846756666899,-0.08108239946886897,0.08354637026786804,-0.8331739148125052,0.8895019418559968,0.7265610252507031,-0.1472529680468142,0.25782870640978217,-0.821650764439255,0.19862306211143732,-0.5982776074670255,0.583332949783653,-0.13792119873687625,0.362255375366658,0.7712285555899143,-0.5524809458293021,-0.46555759152397513,-0.41870385594666004,-0.43229117384180427,-0.4083155272528529,-0.8438526676036417,-0.8073742277920246,-0.4842165387235582,0.3868303713388741,0.3027124176733196,0.9860327388159931,-0.6081460006535053,0.9721018741838634,-0.3826872333884239,-0.9988520429469645,0.13948019593954086,-0.3098744102753699,-0.42379030026495457,0.5438495161943138,0.41555592557415366,0.18192780809476972,-0.23306270875036716,0.9133060560561717,-0.4595224354416132,-0.2690680045634508,-0.00801982032135129,0.04739909106865525,-0.0612964085303247,-0.8577089258469641,-0.7513737939298153,0.8970408472232521,0.16051502991467714,-0.24040778866037726,0.29538318049162626,0.9727254966273904,0.7533638617023826,0.7396499272435904,-0.4236528677865863,-0.20464280480518937,-0.8695344561710954,-0.841976277064532,0.5267502325586975,-0.5147468973882496,-0.9480142444372177,-0.4342804094776511,-0.5543468897230923,0.7660292400978506,-0.7344635566696525,0.06875694962218404,0.7093239263631403,0.27922958321869373,-0.21952590998262167,-0.7823933316394687,0.9564907071180642,-0.5769413472153246,-0.7541382648050785,0.8267114465124905,-0.99213393824175,-0.7956132632680237,0.5790336113423109,-0.4886671700514853,0.6475308747030795,0.23041385365650058,0.7662826729938388,0.2786263143643737,0.40893983095884323,0.2616445808671415,-0.8055633646436036,-0.4535705535672605,0.6998345488682389,-0.9430970139801502,0.4763834895566106,0.40501499036327004,-0.09008055599406362,0.678912416100502,0.06995555758476257,-0.603885187767446,0.015318086836487055,-0.41930180275812745,-0.09590041870251298,-0.13483689166605473,-0.16500027477741241,-0.9159856052137911,-0.1986693451181054,0.8086640150286257,-0.398770856205374,-0.600302186794579,-0.9754289700649679,0.1773727908730507,-0.456641489174217,0.5663821608759463,-0.8541806838475168,0.1005515824072063,0.7602065727114677,0.523878326639533,0.7393521252088249,-0.8569549284875393,0.8128836010582745,-0.06966122006997466,-0.48070645332336426,-0.2927152132615447,-0.31690132059156895,-0.16627094522118568,-0.08178457291796803,0.512809194624424,0.17241968819871545,-0.11028929287567735,-0.07544851861894131,-0.6142071038484573,-0.09660459216684103,0.46655900683254004,0.6282064798288047,-0.8003275450319052,-0.08201477257534862,0.9186726128682494,0.7284352229908109,-0.6559919938445091,-0.3946192762814462,-0.6862496105022728,-0.0932721714489162,0.09598126774653792,-0.752294538076967,0.48384043760597706,-0.606964448466897,-0.47573509672656655,0.36739355186000466,0.3574711964465678,0.02480679377913475,0.4746497757732868,-0.6125597218051553,-0.4100226159207523,-0.6697666700929403,0.7310211919248104,0.5222369092516601,0.6692854198627174,0.7299426286481321,0.12545573757961392,-0.6679532588459551,-0.4611515109427273,0.07291289744898677,0.6015244596637785,0.5288504529744387,0.3067737119272351,-0.4433142375200987,-0.5783129394985735,-0.2803951008245349,-0.25858244532719254,0.1903679291717708,0.09099454479292035,0.6864919066429138,0.9160215533338487,-0.6422821958549321,-0.3066742750816047,-0.20106164831668139,0.46894367784261703,0.7024506530724466,0.400622152723372,-0.10312098264694214,0.6961643709801137,-0.9341078791767359,-0.4888936118222773,0.8951646951027215,-0.44433862064033747,-0.0023138150572776794,-0.5298847882077098,0.6796161495149136,-0.45518599823117256,0.524886179715395,-0.48169714491814375,-0.01283580670133233,0.2901341775432229,0.9125853339210153,-0.45842948695644736,0.7084396630525589,-0.3093151221983135,-0.7015339899808168,-0.8841307261027396,0.5020731664262712,0.39848392782732844,0.5449546077288687,0.41558176139369607,-0.45432330295443535,-0.12075371807441115,0.5270573701709509,-0.631421675439924,0.8915671482682228,-0.03184104757383466,-0.7299419576302171,0.7343599875457585,0.013621468096971512,-0.17583733424544334,-0.07603137847036123,-0.5406308914534748,-0.47070104675367475,0.8931751111522317,0.561129741370678,0.8669209820218384,-0.7134976373054087,-0.2709689708426595,-0.4021284910850227,0.4872297919355333,-0.6457100445404649,-0.5858915713615716,-0.5267169629223645,0.16882250783964992,-0.9573243735358119,0.08970503089949489,-0.14136750530451536,-0.24530333746224642,0.6981445383280516,-0.9277159380726516,0.3754941103979945,-0.47102543199434876,-0.513862734194845,-0.24089918145909905,0.8291308227926493,0.503363901283592,0.35294110979884863,0.9342441889457405,-0.03432868421077728,0.8129040123894811,-0.9051136453635991,0.05549272894859314,-0.19359546108171344,-0.770086286123842,-0.03174628084525466,-0.14453296922147274,-0.754088326357305,-0.6248111384920776,0.1603011474944651,0.29167215758934617,0.5810705227777362,-0.013812754768878222,0.9059862699359655,0.3115930533967912,-0.42689921520650387,0.5363919325172901,0.3445023549720645,-0.8648878368549049,-0.8259328850544989,0.5699413949623704,0.015741526149213314,-0.08699890738353133,-0.4695718879811466,-0.30244262982159853,0.6875681118108332,-0.028009166475385427,0.15623467462137341,-0.400669623631984,0.8255837731994689,0.7126412224024534,0.8382759895175695,-0.9084980739280581,-0.2761018620803952,0.35472595365718007,-0.22507123462855816,0.2718532681465149,-0.0886066285893321,0.1942393952049315,-0.7506539393216372,-0.5065003335475922,0.3389797108247876,0.08420252008363605,-0.41338314581662416,-0.6383804613724351,-0.7074899603612721,-0.5898459916934371,-0.194123316090554,0.681703488342464,-0.704300747718662,-0.43245067819952965,-0.8743698662146926,-0.8725537089630961,0.6143326670862734,0.029679556377232075,0.24413834605365992,-0.7344999969936907,0.41025073593482375,-0.5478308694437146,-0.8916829358786345,-0.04134529735893011,-0.8369499342516065,0.29043932305648923,-0.1566622843965888,-0.6036102105863392,0.9625953226350248,0.6278614006005228,0.8054095609113574,0.7890881942585111,-0.2549257702194154,0.46923957485705614,0.9093738202936947,0.8318316428922117,-0.3962187934666872,0.06260835146531463,-0.8264817493036389,-0.5550207756459713,-0.007446419447660446,0.465693773701787,0.9472533166408539,-0.41057424061000347,-0.17361320881173015,-0.9289084332995117,0.15734084928408265,0.22034201305359602,-0.05519093060865998,0.15883680526167154,-0.3665118641220033,0.6555789397098124,-0.5209757750853896,0.3073995648883283,0.14062671968713403,0.6565965265035629,-0.25033987453207374,-0.8843693309463561,-0.7931681326590478,-0.6424446967430413,-0.4365380359813571,0.19022868713364005,0.37653408106416464,0.37431372655555606,0.48371615121141076,-0.10165877360850573,0.7954191970638931,-0.7871865695342422,0.3803626298904419,0.20914892060682178,-0.10096958931535482,-0.6782841919921339,0.674139965325594,-0.7535229017958045,-0.7138027641922235,-0.31367769092321396,0.9558403226546943,-0.45708201779052615,0.13382886070758104,-0.3115816111676395,0.6851229537278414,-0.6034497506916523,0.35049229487776756,0.3489620233885944,-0.2862641899846494,-0.5865123900584877,0.38934655347839,0.9407164296135306,-0.43765548150986433,-0.5626685139723122,0.9141633938997984,-0.2815361116081476,-0.11014211969450116,-0.67401990480721,0.2279138220474124,-0.08373516611754894,-0.7415788010694087,-0.9035975490696728,0.5425403704866767,-0.8190132826566696,-0.9442459130659699,0.1562209092080593,0.7140118679963052,-0.6308697876520455,-0.9186194157227874,-0.7078366484493017,0.4789269878529012,0.5349167198874056,-0.48801369359716773,-0.9515455425716937,-0.4099100041203201,-0.9363241856917739,0.19159180158749223,-0.7914816439151764,-0.7685027751140296,-0.6379690188914537,0.6703369249589741,0.5076961764134467,-0.9832467315718532,0.08101614471524954,-0.05190446740016341,0.5156875504180789,0.13055720087140799,0.04841222846880555,0.07021746225655079,-0.8071853597648442,0.33891964331269264,-0.04421595064923167,0.3794765737839043,-0.8719114107079804,-0.2037464645691216,-0.21608198015019298,-0.5251888106577098,0.06218299316242337,0.5854073520749807,0.0028870604000985622,0.20210886606946588,-0.6438185120932758,-0.18281956855207682,-0.20382671291008592,0.48460695380344987,-0.8479524455033243,-0.02239531045779586,-0.27996763633564115,-0.1095204851590097,0.10791904013603926,0.7264985349029303,0.9401069162413478,-0.9964711242355406,0.7169943447224796,-0.3180538355372846,-0.3753639757633209,0.04227066645398736,0.9875029758550227,0.6660619741305709,-0.8895062552765012,0.832513130735606,0.39057093346491456,-0.8945199972949922,0.5368972765281796,0.7291929088532925,0.28000351786613464,0.8526835055090487,-0.4432883206754923,-0.8706833212636411,-0.12984498823061585,-0.7559204888530076,-0.5310963606461883,-0.8836545874364674,-0.13585416041314602,-0.9496824746020138,0.6636730669997633,-0.3386248517781496,-0.6830311878584325,0.9692759104073048,-0.4680070402100682,0.8225910919718444,-0.22662603901699185,-0.22799135046079755,-0.6784522826783359,-0.3352388655766845,-0.7164680184796453,-0.7785356626845896,-0.3976062764413655,-0.34206720208749175,0.5373688172549009,0.6624458776786923,0.6607613572850823,-0.49230208015069366,-0.4364608325995505,0.6223486554808915,-0.07853079587221146,-0.9523473014123738,0.3224092749878764,0.9650653274729848,0.8489144989289343,-0.9232706525363028,-0.5445590051822364,0.3512502950616181,-0.1971906921826303,-0.49276364175602794,-0.028969114646315575,0.8720134077593684,-0.2067992272786796,-0.13541238894686103,0.4074945170432329,-0.06657840637490153,-0.8883829182013869,-0.06050426000729203,0.6168985846452415,-0.2133259130641818,0.36430282797664404,-0.399776273407042,-0.08082510624080896,-0.126757622230798,0.33923334116116166,-0.9630960249342024,0.006557613145560026,0.40704434690997005,0.2928655822761357,-0.22127367602661252,-0.5816587670706213,0.829709745477885,0.26240014797076583,0.9266692125238478,-0.6784782405011356,-0.4948930707760155,0.24572213040664792,0.8412361359223723,-0.699265374802053,0.9722326113842428,-0.5626470018178225,0.8907105340622365,-0.10496008582413197,-0.2882577530108392,0.5972028560936451,0.8848586333915591,0.1421365002170205,0.9934657057747245,0.17297898745164275,0.1827876497991383,0.21153257740661502,-0.48264118609949946,0.35606565326452255,0.507592854090035,-0.10623005963861942,-0.5560820465907454,0.8120635924860835,-0.22475492348894477,0.2948591886088252,0.2811625781469047,-0.5270958854816854,0.43945267843082547,-0.7291148439981043,0.44734496204182506,0.789743578992784,0.029825804755091667,-0.6927553350105882,-0.5720813986845315,-0.7056244942359626,-0.46821042615920305,0.35011761263012886,0.6658638194203377,-0.548427130561322,0.7192894024774432,0.08479256322607398,0.1956044132821262,-0.3215416045859456,-0.24460310954600573,0.6687661483883858,0.9365204116329551,-0.5350516741164029,-0.4412766434252262,-0.6666065831668675,0.7869231412187219,-0.004167297389358282,-0.17924556462094188,-0.8843970256857574,0.6823356091044843,-0.4117650268599391,0.48740469198673964,-0.00901111913844943,0.8218698911368847,-0.06641149893403053,0.9523810134269297,0.002226436510682106,0.08733847783878446,0.23972321394830942,0.28856796445325017,-0.5369629189372063,0.6713417391292751,0.22565309749916196,-0.2651710147038102,0.3682923153974116,-0.3139927452430129,0.12473961152136326,0.5438559353351593,-0.1301347785629332,0.042749456595629454,-0.23567049345001578,0.3722223383374512,-0.2903074841015041,0.17639247607439756,0.27134099090471864,0.5883960337378085,-0.08599025337025523,0.6849541421979666,0.872107045724988,0.45050070714205503,0.1102638985030353,0.3113089054822922,0.5094884359277785,0.8973645423538983,0.24935221765190363,0.7370874104090035,0.6184766963124275,-0.3559519718401134,-0.05995838949456811,0.6637645028531551,-0.9932415685616434,0.3356802915222943,0.6003632051870227,-0.7738830312155187,-0.4766728477552533,-0.8204531092196703,-0.4957044906914234,-0.4911649161949754,-0.9154959404841065,-0.23073744447901845,0.22703656181693077,0.7827613488771021,-0.03686829609796405,0.42199141485616565,0.5555076645687222,0.7197786006145179,0.8284390135668218,-0.5739838294684887,-0.5286458083428442,0.06188830966129899,0.29328308859840035,-0.8478021202608943,0.5231476831249893,0.4714256306178868,-0.6317049195058644,0.8844410562887788,-0.4523690943606198,0.9420781647786498,-0.9522459739819169,0.7366485088132322,0.08222231362015009,-0.5668687862344086,-0.948362628929317,-0.7576587409712374,0.05531228054314852,0.537022091448307,0.3512814179994166,0.1283799889497459,-0.3293892526999116,0.8349486603401601,-0.5568575202487409,0.566896446980536,0.8687986051663756,0.6012227828614414,-0.8641189131885767,0.9545893594622612,0.8192260265350342,0.2138515254482627,0.3347975155338645,0.8230169047601521,0.17352312430739403,0.9564625862985849,0.5982368267141283,-0.7697498435154557,-0.9962763069197536,0.723103120457381,-0.418909827247262,-0.05233053956180811,0.8357140594162047,0.17917565116658807,-0.08895320910960436,-0.8860325203277171,-0.8534099119715393,0.7474070494063199,-0.6677284236066043,-0.5689454241655767,0.31155948154628277,0.3305683610960841,0.28684141859412193,0.37628393480554223,0.35351266665384173,-0.22542624128982425,-0.23912675166502595,0.8935006791725755,0.5054440754465759,0.35803672252222896,0.6091975066810846,-0.4857876184396446,-0.047408529091626406,0.5337274861522019,0.2363161500543356,0.462207502219826,0.6020891880616546,-0.9868221166543663,-0.7264989214017987,0.45474458020180464,0.45591461285948753,0.15294277761131525,0.7113354196771979,0.3203139388933778,-0.497159187681973,0.1454447265714407,0.999544417951256,0.4092138116247952,0.7460221336223185,0.8751481310464442,0.8295178404077888,0.14616568805649877,0.39508148841559887,0.521705524995923,0.7713653589598835,-0.6752022546716034,-0.4009745721705258,0.9920390024781227,-0.02063982142135501,-0.7858880693092942,-0.8564003123901784,-0.37999109737575054,0.4713131943717599,-0.7567446585744619,-0.7240843065083027,0.4151065908372402,0.7813523351214826,0.7508034724742174,0.4709981009364128,0.9455046141520143,0.1346612642519176,0.79075060877949,-0.8454473474994302,-0.8810727302916348,-0.4295848812907934,-0.5848588440567255,-0.14641217654570937,-0.2106780493631959,0.9196811094880104,0.31606972543522716,0.5226444015279412,-0.6265707020647824,-0.15424024360254407,0.5920631331391633,0.7876566066406667,0.9686146518215537,0.8225049809552729,0.06789463059976697,0.8825697083957493,-0.5781990312971175,0.6105023133568466,-0.4972650036215782,-0.07144168578088284,0.26206939155235887,-0.35838823998346925,-0.1465471377596259,-0.49648028519004583,0.8605681946501136,-0.9339021062478423,0.6468953094445169,-0.7451775362715125,-0.5414118398912251,0.6246817600913346,0.997434304561466,-0.5626005087979138,0.30142633989453316,0.6877381782978773,-0.07864693133160472,-0.9940329431556165,-0.9432370392605662,0.46796582406386733,0.20980775263160467,-0.13470510067418218,-0.8884293488226831,0.2628562110476196,0.3806750662624836,0.5249972115270793,-0.3799793994985521,0.49302480509504676,0.35953196370974183,-0.7152829733677208,-0.032588145695626736,0.3493464235216379,-0.5446942080743611,0.41907839057967067,-0.8706743125803769,-0.17708466667681932,-0.9038681690581143,-0.4433442857116461,-0.6259757843799889,0.6388279125094414,0.9046535915695131,-0.9214367251843214,0.13123180950060487,0.1957550821825862,0.4058288340456784,0.9380652494728565,-0.14910850254818797,-0.054013659711927176,-0.47673585591837764,0.4873045482672751,0.5090144691057503,-0.27680383902043104,-0.03731514932587743,0.053895290940999985,0.9421123471111059,-0.2582633774727583,-0.3757524653337896,0.8011978045105934,-0.9013245473615825,-0.9393068142235279,0.07597004668787122,-0.4450977426022291,-0.35214727791026235,-0.46713735070079565,-0.6730356775224209,-0.18039527535438538,-0.35374264139682055,-0.6315014669671655,0.030358241870999336,0.738488373812288,0.24249883415177464,0.01787068322300911,0.5785720776766539,-0.26394631853327155,-0.8625039947219193,-0.09448182722553611,-0.38600353011861444,0.1547109317034483,0.1127933687530458,0.5822253664955497,0.32071612123399973,0.7389374426566064,0.1342061311006546,-0.2708825278095901,0.08635417930781841,0.6470840312540531,0.2169938893057406,-0.5291642458178103,-0.014109338633716106,-0.580422027502209,0.9765120930969715,0.24737032735720277,-0.5470718555152416,0.132226072717458,0.056975748389959335,-0.9841582644730806,0.14752967935055494,0.9728433713316917,-0.8269633604213595,-0.849885449744761,0.3644519420340657,0.8931178725324571,-0.49665246764197946,-0.041517379228025675,0.5107764126732945,-0.24965129373595119,-0.6875037495046854,-0.8735138014890254,-0.9608486359938979,0.477378242649138,0.885925343260169,-0.6114739426411688,-0.49259473383426666,0.9171184129081666,-0.6389276906847954,0.2760085528716445,0.7960121231153607,0.8820721684023738,0.3523300215601921,-0.426166033372283,-0.5114745874889195,-0.62922617001459,0.44205227959901094,-0.14110253658145666,-0.3369144224561751,0.997225733473897,-0.7495002262294292,-0.986711117438972,0.401833307929337,-0.6087351031601429,-0.09313743468374014,0.2689375155605376,-0.6925298306159675,0.4099729652516544,0.46161609748378396,-0.6369883087463677,0.1540173846296966,-0.2604829268530011,0.8178126062266529,-0.05704715568572283,0.030967694707214832,-0.19734690384939313,-0.36022076522931457,0.9578011920675635,0.605725531000644,-0.069511485286057,-0.6585930632427335,-0.16478600166738033,0.6288327183574438,0.49810757068917155,0.04244292760267854,0.8889111750759184,-0.7804153552278876,0.8086938997730613,-0.9560555852949619,0.7392727974802256,0.2765002716332674,-0.5796433049254119,-0.40658149402588606,-0.4806357421912253,-0.7561144400388002,-0.8140574465505779,-0.3553444086574018,0.7006919216364622,0.23685124749317765,-0.32146538607776165,-0.4331981339491904,0.05658512795343995,0.3811789355240762,-0.8714791079983115,0.18088946072384715,-0.18077577464282513,-0.050324609503149986,-0.6536461799405515,0.3352915165014565,-0.709272503387183,-0.21629888424649835,-0.31760319601744413,0.9776477217674255,-0.5133098331280053,0.6092568482272327,-0.24638613872230053,-0.4128671856597066,-0.5969937248155475,-0.9731029784306884,0.44855588488280773,0.8326891930773854,-0.016690118238329887,0.08955293986946344,-0.7909916695207357,0.29585028206929564,0.2930018990300596,-0.5640900009311736,-0.7884832755662501,0.5928351483307779,-0.7706622225232422,-0.8083014818839729,-0.012109252624213696,0.5311158667318523,0.07161886617541313,-0.8440707228146493,-0.3818098595365882,-0.2581452685408294,0.34913872508332133,-0.8125504800118506,0.27361365407705307,-0.08487813547253609,0.3590479069389403,0.4667108845897019,0.2853246093727648,-0.1606800276786089,0.9279283196665347,0.06815810082480311,-0.7317819874733686,-0.48168263817206025,0.8005190589465201,-0.47248569410294294,0.03342662984505296,-0.26770133851096034,-0.298798612318933,0.3616635869257152,-0.2827006336301565,0.46224117558449507,0.8018993395380676,0.9061968163587153,-0.11098234774544835,0.13748305942863226,0.6738391267135739,0.26617882400751114,-0.8867338425479829,0.7805204200558364,0.17006553476676345,0.18711551884189248,0.482127548661083,0.675545702688396,0.14367572404444218,-0.41696910839527845,0.07305248966440558,-0.37049332493916154,0.2743102228268981,-0.968738510273397,-0.684771356638521,-0.4825720922090113,0.031793746165931225,0.7184540731832385,-0.9797781859524548,-0.2581349899992347,-0.8586307736113667,-0.915291010402143,-0.030936818569898605,0.5132811502553523,-0.8278836365789175,0.6127769709564745,0.7742216093465686,0.5679399813525379,0.33623384358361363,0.738048798404634,-0.6417592191137373,-0.22554044285789132,-0.4004184640944004,-0.7494754702784121,0.7312460853718221,0.23352715466171503,0.8231336148455739,0.10109505336731672,0.715276749804616,0.6454746313393116,-0.6629597567953169,0.36536012357100844,0.6717908326536417,0.14500061282888055,-0.8584790718741715,-0.5675688735209405,-0.6059658993035555,-0.7963242218829691,-0.7086820141412318,-0.9990486120805144,-0.5843855272978544,0.6911152047105134,-0.40268942154943943,0.6454347623512149,0.9385872343555093,-0.5040571698918939,-0.9051691982895136,-0.6834249226376414,0.3548393272794783,-0.3811114882119,0.909411184489727,0.24278967082500458,-0.08076015021651983,-0.23777785897254944,0.7428433047607541,0.3305641897022724,-0.7853384083136916,0.8349888436496258,0.5823971559293568,0.2748379670083523,-0.7611649013124406,0.3417592914775014,0.448578676674515,-0.4407910271547735,-0.19655266078189015,-0.0710196876898408,0.25017295172438025,-0.8060301197692752,0.9086204990744591,-0.5796116646379232,-0.4023670833557844,0.026628014631569386,0.530710760038346,-0.5011051204055548,0.2177278148010373,0.4611999993212521,0.3370276056230068,-0.7409327197819948,-0.16010168241336942,0.16826394759118557,0.09528892813250422,0.6645124857313931,0.3729554326273501,-0.5908268727362156,-0.3718936168588698,-0.4960066485218704,-0.2907869778573513,0.10994248278439045,0.3043901976197958,0.28022098913788795,-0.10169349471107125,-0.17580013163387775,0.3779007149860263,-0.6835556887090206,-0.5643645660020411,-0.1171892317943275,0.2915577939711511,0.8514231280423701,0.04702833201736212,0.38411778677254915,0.030346454586833715,-0.06495726946741343,0.7030597068369389,0.7217842368409038,-0.5917741232551634,0.37461561616510153,0.13460581144317985,-0.38700263295322657,-0.2959141996689141,-0.9069643523544073,-0.9117220886982977,-0.39542008843272924,-0.2843022644519806,0.2149880495853722,-0.6173705630935729,0.926467218901962,0.023678757715970278,-0.6739595271646976],"type":"scatter3d"},{"customdata":[["2024-07-24T23:35:06.010000"],["2024-07-24T23:35:07.010000"],["2024-07-24T23:35:08.010000"],["2024-07-24T23:35:09.010000"],["2024-07-24T23:35:10.010000"],["2024-07-24T23:35:11.010000"],["2024-07-24T23:35:12.010000"],["2024-07-24T23:35:13.010000"],["2024-07-24T23:35:14.010000"],["2024-07-24T23:35:15.010000"],["2024-07-24T23:35:16.010000"],["2024-07-24T23:35:17.010000"],["2024-07-24T23:35:18.010000"],["2024-07-24T23:35:19.010000"],["2024-07-24T23:35:20.010000"],["2024-07-24T23:35:21.010000"],["2024-07-24T23:35:22.010000"],["2024-07-24T23:35:23.010000"],["2024-07-24T23:35:24.010000"],["2024-07-24T23:35:25.010000"],["2024-07-24T23:35:26.010000"],["2024-07-24T23:35:27.010000"],["2024-07-24T23:35:28.010000"],["2024-07-24T23:35:29.010000"],["2024-07-24T23:35:30.010000"],["2024-07-24T23:35:31.010000"],["2024-07-24T23:35:32.010000"],["2024-07-24T23:35:33.010000"],["2024-07-24T23:35:34.010000"],["2024-07-24T23:35:35.010000"],["2024-07-24T23:35:36.010000"],["2024-07-24T23:35:37.010000"],["2024-07-24T23:35:38.010000"],["2024-07-24T23:35:39.010000"],["2024-07-24T23:35:40.010000"],["2024-07-24T23:35:41.010000"],["2024-07-24T23:35:42.010000"],["2024-07-24T23:35:43.010000"],["2024-07-24T23:35:44.010000"],["2024-07-24T23:35:45.010000"],["2024-07-24T23:35:46.010000"],["2024-07-24T23:35:47.010000"],["2024-07-24T23:35:48.010000"],["2024-07-24T23:35:49.010000"],["2024-07-24T23:35:50.010000"],["2024-07-24T23:35:51.010000"],["2024-07-24T23:35:52.010000"],["2024-07-24T23:35:53.010000"],["2024-07-24T23:35:54.010000"],["2024-07-24T23:35:55.010000"],["2024-07-24T23:35:56.010000"],["2024-07-24T23:35:57.010000"],["2024-07-24T23:35:58.010000"],["2024-07-24T23:35:59.010000"],["2024-07-24T23:36:00.010000"],["2024-07-24T23:36:01.010000"],["2024-07-24T23:36:02.010000"],["2024-07-24T23:36:03.010000"],["2024-07-24T23:36:04.010000"],["2024-07-24T23:36:05.010000"],["2024-07-24T23:36:06.010000"],["2024-07-24T23:36:07.010000"],["2024-07-24T23:36:08.010000"],["2024-07-24T23:36:09.010000"],["2024-07-24T23:36:10.010000"],["2024-07-24T23:36:11.010000"],["2024-07-24T23:36:12.010000"],["2024-07-24T23:36:13.010000"],["2024-07-24T23:36:14.010000"],["2024-07-24T23:36:15.010000"],["2024-07-24T23:36:16.010000"],["2024-07-24T23:36:17.010000"],["2024-07-24T23:36:18.010000"],["2024-07-24T23:36:19.010000"],["2024-07-24T23:36:20.010000"],["2024-07-24T23:36:21.010000"],["2024-07-24T23:36:22.010000"],["2024-07-24T23:36:23.010000"],["2024-07-24T23:36:24.010000"],["2024-07-24T23:36:25.010000"],["2024-07-24T23:36:26.010000"],["2024-07-24T23:36:27.010000"],["2024-07-24T23:36:28.010000"],["2024-07-24T23:36:29.010000"],["2024-07-24T23:36:30.010000"],["2024-07-24T23:36:31.010000"],["2024-07-24T23:36:32.010000"],["2024-07-24T23:36:33.010000"],["2024-07-24T23:36:34.010000"],["2024-07-24T23:36:35.010000"],["2024-07-24T23:36:36.010000"],["2024-07-24T23:36:37.010000"],["2024-07-24T23:36:38.010000"],["2024-07-24T23:36:39.010000"],["2024-07-24T23:36:40.010000"],["2024-07-24T23:36:41.010000"],["2024-07-24T23:36:42.010000"],["2024-07-24T23:36:43.010000"],["2024-07-24T23:36:44.010000"],["2024-07-24T23:36:45.010000"],["2024-07-24T23:36:46.010000"],["2024-07-24T23:36:47.010000"],["2024-07-24T23:36:48.010000"],["2024-07-24T23:36:49.010000"],["2024-07-24T23:36:50.010000"],["2024-07-24T23:36:51.010000"],["2024-07-24T23:36:52.010000"],["2024-07-24T23:36:53.010000"],["2024-07-24T23:36:54.010000"],["2024-07-24T23:36:55.010000"],["2024-07-24T23:36:56.010000"],["2024-07-24T23:36:57.010000"],["2024-07-24T23:36:58.010000"],["2024-07-24T23:36:59.010000"],["2024-07-24T23:37:00.010000"],["2024-07-24T23:37:01.010000"],["2024-07-24T23:37:02.010000"],["2024-07-24T23:37:03.010000"],["2024-07-24T23:37:04.010000"],["2024-07-24T23:37:05.010000"],["2024-07-24T23:37:06.010000"],["2024-07-24T23:37:07.010000"],["2024-07-24T23:37:08.010000"],["2024-07-24T23:37:09.010000"],["2024-07-24T23:37:10.010000"],["2024-07-24T23:37:11.010000"],["2024-07-24T23:37:12.010000"],["2024-07-24T23:37:13.010000"],["2024-07-24T23:37:14.010000"],["2024-07-24T23:37:15.010000"],["2024-07-24T23:37:16.010000"],["2024-07-24T23:37:17.010000"],["2024-07-24T23:37:18.010000"],["2024-07-24T23:37:19.010000"],["2024-07-24T23:37:20.010000"],["2024-07-24T23:37:21.010000"],["2024-07-24T23:37:22.010000"],["2024-07-24T23:37:23.010000"],["2024-07-24T23:37:24.010000"],["2024-07-24T23:37:25.010000"],["2024-07-24T23:37:26.010000"],["2024-07-24T23:37:27.010000"],["2024-07-24T23:37:28.010000"],["2024-07-24T23:37:29.010000"],["2024-07-24T23:37:30.010000"],["2024-07-24T23:37:31.010000"],["2024-07-24T23:37:32.010000"],["2024-07-24T23:37:33.010000"],["2024-07-24T23:37:34.010000"],["2024-07-24T23:37:35.010000"],["2024-07-24T23:37:36.010000"],["2024-07-24T23:37:37.010000"],["2024-07-24T23:37:38.010000"],["2024-07-24T23:37:39.010000"],["2024-07-24T23:37:40.010000"],["2024-07-24T23:37:41.010000"],["2024-07-24T23:37:42.010000"],["2024-07-24T23:37:43.010000"],["2024-07-24T23:37:44.010000"],["2024-07-24T23:37:45.010000"],["2024-07-24T23:37:46.010000"],["2024-07-24T23:37:47.010000"],["2024-07-24T23:37:48.010000"],["2024-07-24T23:37:49.010000"],["2024-07-24T23:37:50.010000"],["2024-07-24T23:37:51.010000"],["2024-07-24T23:37:52.010000"],["2024-07-24T23:37:53.010000"],["2024-07-24T23:37:54.010000"],["2024-07-24T23:37:55.010000"],["2024-07-24T23:37:56.010000"],["2024-07-24T23:37:57.010000"],["2024-07-24T23:37:58.010000"],["2024-07-24T23:37:59.010000"],["2024-07-24T23:38:00.010000"],["2024-07-24T23:38:01.010000"],["2024-07-24T23:38:02.010000"],["2024-07-24T23:38:03.010000"],["2024-07-24T23:38:04.010000"],["2024-07-24T23:38:05.010000"],["2024-07-24T23:38:06.010000"],["2024-07-24T23:38:07.010000"],["2024-07-24T23:38:08.010000"],["2024-07-24T23:38:09.010000"],["2024-07-24T23:38:10.010000"],["2024-07-24T23:38:11.010000"],["2024-07-24T23:38:12.010000"],["2024-07-24T23:38:13.010000"],["2024-07-24T23:38:14.010000"],["2024-07-24T23:38:15.010000"],["2024-07-24T23:38:16.010000"],["2024-07-24T23:38:17.010000"],["2024-07-24T23:38:18.010000"],["2024-07-24T23:38:19.010000"],["2024-07-24T23:38:20.010000"],["2024-07-24T23:38:21.010000"],["2024-07-24T23:38:22.010000"],["2024-07-24T23:38:23.010000"],["2024-07-24T23:38:24.010000"],["2024-07-24T23:38:25.010000"],["2024-07-24T23:38:26.010000"],["2024-07-24T23:38:27.010000"],["2024-07-24T23:38:28.010000"],["2024-07-24T23:38:29.010000"],["2024-07-24T23:38:30.010000"],["2024-07-24T23:38:31.010000"],["2024-07-24T23:38:32.010000"],["2024-07-24T23:38:33.010000"],["2024-07-24T23:38:34.010000"],["2024-07-24T23:38:35.010000"],["2024-07-24T23:38:36.010000"],["2024-07-24T23:38:37.010000"],["2024-07-24T23:38:38.010000"],["2024-07-24T23:38:39.010000"],["2024-07-24T23:38:40.010000"],["2024-07-24T23:38:41.010000"],["2024-07-24T23:38:42.010000"],["2024-07-24T23:38:43.010000"],["2024-07-24T23:38:44.010000"],["2024-07-24T23:38:45.010000"],["2024-07-24T23:38:46.010000"],["2024-07-24T23:38:47.010000"],["2024-07-24T23:38:48.010000"],["2024-07-24T23:38:49.010000"],["2024-07-24T23:38:50.010000"],["2024-07-24T23:38:51.010000"],["2024-07-24T23:38:52.010000"],["2024-07-24T23:38:53.010000"],["2024-07-24T23:38:54.010000"],["2024-07-24T23:38:55.010000"],["2024-07-24T23:38:56.010000"],["2024-07-24T23:38:57.010000"],["2024-07-24T23:38:58.010000"],["2024-07-24T23:38:59.010000"],["2024-07-24T23:39:00.010000"],["2024-07-24T23:39:01.010000"],["2024-07-24T23:39:02.010000"],["2024-07-24T23:39:03.010000"],["2024-07-24T23:39:04.010000"],["2024-07-24T23:39:05.010000"],["2024-07-24T23:39:06.010000"],["2024-07-24T23:39:07.010000"],["2024-07-24T23:39:08.010000"],["2024-07-24T23:39:09.010000"],["2024-07-24T23:39:10.010000"],["2024-07-24T23:39:11.010000"],["2024-07-24T23:39:12.010000"],["2024-07-24T23:39:13.010000"],["2024-07-24T23:39:14.010000"],["2024-07-24T23:39:15.010000"],["2024-07-24T23:39:16.010000"],["2024-07-24T23:39:17.010000"],["2024-07-24T23:39:18.010000"],["2024-07-24T23:39:19.010000"],["2024-07-24T23:39:20.010000"],["2024-07-24T23:39:21.010000"],["2024-07-24T23:39:22.010000"],["2024-07-24T23:39:23.010000"],["2024-07-24T23:39:24.010000"],["2024-07-24T23:39:25.010000"],["2024-07-24T23:39:26.010000"],["2024-07-24T23:39:27.010000"],["2024-07-24T23:39:28.010000"],["2024-07-24T23:39:29.010000"],["2024-07-24T23:39:30.010000"],["2024-07-24T23:39:31.010000"],["2024-07-24T23:39:32.010000"],["2024-07-24T23:39:33.010000"],["2024-07-24T23:39:34.010000"],["2024-07-24T23:39:35.010000"],["2024-07-24T23:39:36.010000"],["2024-07-24T23:39:37.010000"],["2024-07-24T23:39:38.010000"],["2024-07-24T23:39:39.010000"],["2024-07-24T23:39:40.010000"],["2024-07-24T23:39:41.010000"],["2024-07-24T23:39:42.010000"],["2024-07-24T23:39:43.010000"],["2024-07-24T23:39:44.010000"],["2024-07-24T23:39:45.010000"],["2024-07-24T23:39:46.010000"],["2024-07-24T23:39:47.010000"],["2024-07-24T23:39:48.010000"],["2024-07-24T23:39:49.010000"],["2024-07-24T23:39:50.010000"],["2024-07-24T23:39:51.010000"],["2024-07-24T23:39:52.010000"],["2024-07-24T23:39:53.010000"],["2024-07-24T23:39:54.010000"],["2024-07-24T23:39:55.010000"],["2024-07-24T23:39:56.010000"],["2024-07-24T23:39:57.010000"],["2024-07-24T23:39:58.010000"],["2024-07-24T23:39:59.010000"],["2024-07-24T23:40:00.010000"],["2024-07-24T23:40:01.010000"],["2024-07-24T23:40:02.010000"],["2024-07-24T23:40:03.010000"],["2024-07-24T23:40:04.010000"],["2024-07-24T23:40:05.010000"],["2024-07-24T23:40:06.010000"],["2024-07-24T23:40:07.010000"],["2024-07-24T23:40:08.010000"],["2024-07-24T23:40:09.010000"],["2024-07-24T23:40:10.010000"],["2024-07-24T23:40:11.010000"],["2024-07-24T23:40:12.010000"],["2024-07-24T23:40:13.010000"],["2024-07-24T23:40:14.010000"],["2024-07-24T23:40:15.010000"],["2024-07-24T23:40:16.010000"],["2024-07-24T23:40:17.010000"],["2024-07-24T23:40:18.010000"],["2024-07-24T23:40:19.010000"],["2024-07-24T23:40:20.010000"],["2024-07-24T23:40:21.010000"],["2024-07-24T23:40:22.010000"],["2024-07-24T23:40:23.010000"],["2024-07-24T23:40:24.010000"],["2024-07-24T23:40:25.010000"],["2024-07-24T23:40:26.010000"],["2024-07-24T23:40:27.010000"],["2024-07-24T23:40:28.010000"],["2024-07-24T23:40:29.010000"],["2024-07-24T23:40:30.010000"],["2024-07-24T23:40:31.010000"],["2024-07-24T23:40:32.010000"],["2024-07-24T23:40:33.010000"],["2024-07-24T23:40:34.010000"],["2024-07-24T23:40:35.010000"],["2024-07-24T23:40:36.010000"],["2024-07-24T23:40:37.010000"],["2024-07-24T23:40:38.010000"],["2024-07-24T23:40:39.010000"],["2024-07-24T23:40:40.010000"],["2024-07-24T23:40:41.010000"],["2024-07-24T23:40:42.010000"],["2024-07-24T23:40:43.010000"],["2024-07-24T23:40:44.010000"],["2024-07-24T23:40:45.010000"],["2024-07-24T23:40:46.010000"],["2024-07-24T23:40:47.010000"],["2024-07-24T23:40:48.010000"],["2024-07-24T23:40:49.010000"],["2024-07-24T23:40:50.010000"],["2024-07-24T23:40:51.010000"],["2024-07-24T23:40:52.010000"],["2024-07-24T23:40:53.010000"],["2024-07-24T23:40:54.010000"],["2024-07-24T23:40:55.010000"],["2024-07-24T23:40:56.010000"],["2024-07-24T23:40:57.010000"],["2024-07-24T23:40:58.010000"],["2024-07-24T23:40:59.010000"],["2024-07-24T23:41:00.010000"],["2024-07-24T23:41:01.010000"],["2024-07-24T23:41:02.010000"],["2024-07-24T23:41:03.010000"],["2024-07-24T23:41:04.010000"],["2024-07-24T23:41:05.010000"],["2024-07-24T23:41:06.010000"],["2024-07-24T23:41:07.010000"],["2024-07-24T23:41:08.010000"],["2024-07-24T23:41:09.010000"],["2024-07-24T23:41:10.010000"],["2024-07-24T23:41:11.010000"],["2024-07-24T23:41:12.010000"],["2024-07-24T23:41:13.010000"],["2024-07-24T23:41:14.010000"],["2024-07-24T23:41:15.010000"],["2024-07-24T23:41:16.010000"],["2024-07-24T23:41:17.010000"],["2024-07-24T23:41:18.010000"],["2024-07-24T23:41:19.010000"],["2024-07-24T23:41:20.010000"],["2024-07-24T23:41:21.010000"],["2024-07-24T23:41:22.010000"],["2024-07-24T23:41:23.010000"],["2024-07-24T23:41:24.010000"],["2024-07-24T23:41:25.010000"],["2024-07-24T23:41:26.010000"],["2024-07-24T23:41:27.010000"],["2024-07-24T23:41:28.010000"],["2024-07-24T23:41:29.010000"],["2024-07-24T23:41:30.010000"],["2024-07-24T23:41:31.010000"],["2024-07-24T23:41:32.010000"],["2024-07-24T23:41:33.010000"],["2024-07-24T23:41:34.010000"],["2024-07-24T23:41:35.010000"],["2024-07-24T23:41:36.010000"],["2024-07-24T23:41:37.010000"],["2024-07-24T23:41:38.010000"],["2024-07-24T23:41:39.010000"],["2024-07-24T23:41:40.010000"],["2024-07-24T23:41:41.010000"],["2024-07-24T23:41:42.010000"],["2024-07-24T23:41:43.010000"],["2024-07-24T23:41:44.010000"],["2024-07-24T23:41:45.010000"],["2024-07-24T23:41:46.010000"],["2024-07-24T23:41:47.010000"],["2024-07-24T23:41:48.010000"],["2024-07-24T23:41:49.010000"],["2024-07-24T23:41:50.010000"],["2024-07-24T23:41:51.010000"],["2024-07-24T23:41:52.010000"],["2024-07-24T23:41:53.010000"],["2024-07-24T23:41:54.010000"],["2024-07-24T23:41:55.010000"],["2024-07-24T23:41:56.010000"],["2024-07-24T23:41:57.010000"],["2024-07-24T23:41:58.010000"],["2024-07-24T23:41:59.010000"],["2024-07-24T23:42:00.010000"],["2024-07-24T23:42:01.010000"],["2024-07-24T23:42:02.010000"],["2024-07-24T23:42:03.010000"],["2024-07-24T23:42:04.010000"],["2024-07-24T23:42:05.010000"],["2024-07-24T23:42:06.010000"],["2024-07-24T23:42:07.010000"],["2024-07-24T23:42:08.010000"],["2024-07-24T23:42:09.010000"],["2024-07-24T23:42:10.010000"],["2024-07-24T23:42:11.010000"],["2024-07-24T23:42:12.010000"],["2024-07-24T23:42:13.010000"],["2024-07-24T23:42:14.010000"],["2024-07-24T23:42:15.010000"],["2024-07-24T23:42:16.010000"],["2024-07-24T23:42:17.010000"],["2024-07-24T23:42:18.010000"],["2024-07-24T23:42:19.010000"],["2024-07-24T23:42:20.010000"],["2024-07-24T23:42:21.010000"],["2024-07-24T23:42:22.010000"],["2024-07-24T23:42:23.010000"],["2024-07-24T23:42:24.010000"],["2024-07-24T23:42:25.010000"],["2024-07-24T23:42:26.010000"],["2024-07-24T23:42:27.010000"],["2024-07-24T23:42:28.010000"],["2024-07-24T23:42:29.010000"],["2024-07-24T23:42:30.010000"],["2024-07-24T23:42:31.010000"],["2024-07-24T23:42:32.010000"],["2024-07-24T23:42:33.010000"],["2024-07-24T23:42:34.010000"],["2024-07-24T23:42:35.010000"],["2024-07-24T23:42:36.010000"],["2024-07-24T23:42:37.010000"],["2024-07-24T23:42:38.010000"],["2024-07-24T23:42:39.010000"],["2024-07-24T23:42:40.010000"],["2024-07-24T23:42:41.010000"],["2024-07-24T23:42:42.010000"],["2024-07-24T23:42:43.010000"],["2024-07-24T23:42:44.010000"],["2024-07-24T23:42:45.010000"],["2024-07-24T23:42:46.010000"],["2024-07-24T23:42:47.010000"],["2024-07-24T23:42:48.010000"],["2024-07-24T23:42:49.010000"],["2024-07-24T23:42:50.010000"],["2024-07-24T23:42:51.010000"],["2024-07-24T23:42:52.010000"],["2024-07-24T23:42:53.010000"],["2024-07-24T23:42:54.010000"],["2024-07-24T23:42:55.010000"],["2024-07-24T23:42:56.010000"],["2024-07-24T23:42:57.010000"],["2024-07-24T23:42:58.010000"],["2024-07-24T23:42:59.010000"],["2024-07-24T23:43:00.010000"],["2024-07-24T23:43:01.010000"],["2024-07-24T23:43:02.010000"],["2024-07-24T23:43:03.010000"],["2024-07-24T23:43:04.010000"],["2024-07-24T23:43:05.010000"],["2024-07-24T23:43:06.010000"],["2024-07-24T23:43:07.010000"],["2024-07-24T23:43:08.010000"],["2024-07-24T23:43:09.010000"],["2024-07-24T23:43:10.010000"],["2024-07-24T23:43:11.010000"],["2024-07-24T23:43:12.010000"],["2024-07-24T23:43:13.010000"],["2024-07-24T23:43:14.010000"],["2024-07-24T23:43:15.010000"],["2024-07-24T23:43:16.010000"],["2024-07-24T23:43:17.010000"],["2024-07-24T23:43:18.010000"],["2024-07-24T23:43:19.010000"],["2024-07-24T23:43:20.010000"],["2024-07-24T23:43:21.010000"],["2024-07-24T23:43:22.010000"],["2024-07-24T23:43:23.010000"],["2024-07-24T23:43:24.010000"],["2024-07-24T23:43:25.010000"],["2024-07-24T23:43:26.010000"],["2024-07-24T23:43:27.010000"],["2024-07-24T23:43:28.010000"],["2024-07-24T23:43:29.010000"],["2024-07-24T23:43:30.010000"],["2024-07-24T23:43:31.010000"],["2024-07-24T23:43:32.010000"],["2024-07-24T23:43:33.010000"],["2024-07-24T23:43:34.010000"],["2024-07-24T23:43:35.010000"],["2024-07-24T23:43:36.010000"],["2024-07-24T23:43:37.010000"],["2024-07-24T23:43:38.010000"],["2024-07-24T23:43:39.010000"],["2024-07-24T23:43:40.010000"],["2024-07-24T23:43:41.010000"],["2024-07-24T23:43:42.010000"],["2024-07-24T23:43:43.010000"],["2024-07-24T23:43:44.010000"],["2024-07-24T23:43:45.010000"],["2024-07-24T23:43:46.010000"],["2024-07-24T23:43:47.010000"],["2024-07-24T23:43:48.010000"],["2024-07-24T23:43:49.010000"],["2024-07-24T23:43:50.010000"],["2024-07-24T23:43:51.010000"],["2024-07-24T23:43:52.010000"],["2024-07-24T23:43:53.010000"],["2024-07-24T23:43:54.010000"],["2024-07-24T23:43:55.010000"],["2024-07-24T23:43:56.010000"],["2024-07-24T23:43:57.010000"],["2024-07-24T23:43:58.010000"],["2024-07-24T23:43:59.010000"],["2024-07-24T23:44:00.010000"],["2024-07-24T23:44:01.010000"],["2024-07-24T23:44:02.010000"],["2024-07-24T23:44:03.010000"],["2024-07-24T23:44:04.010000"],["2024-07-24T23:44:05.010000"],["2024-07-24T23:44:06.010000"],["2024-07-24T23:44:07.010000"],["2024-07-24T23:44:08.010000"],["2024-07-24T23:44:09.010000"],["2024-07-24T23:44:10.010000"],["2024-07-24T23:44:11.010000"],["2024-07-24T23:44:12.010000"],["2024-07-24T23:44:13.010000"],["2024-07-24T23:44:14.010000"],["2024-07-24T23:44:15.010000"],["2024-07-24T23:44:16.010000"],["2024-07-24T23:44:17.010000"],["2024-07-24T23:44:18.010000"],["2024-07-24T23:44:19.010000"],["2024-07-24T23:44:20.010000"],["2024-07-24T23:44:21.010000"],["2024-07-24T23:44:22.010000"],["2024-07-24T23:44:23.010000"],["2024-07-24T23:44:24.010000"],["2024-07-24T23:44:25.010000"],["2024-07-24T23:44:26.010000"],["2024-07-24T23:44:27.010000"],["2024-07-24T23:44:28.010000"],["2024-07-24T23:44:29.010000"],["2024-07-24T23:44:30.010000"],["2024-07-24T23:44:31.010000"],["2024-07-24T23:44:32.010000"],["2024-07-24T23:44:33.010000"],["2024-07-24T23:44:34.010000"],["2024-07-24T23:44:35.010000"],["2024-07-24T23:44:36.010000"],["2024-07-24T23:44:37.010000"],["2024-07-24T23:44:38.010000"],["2024-07-24T23:44:39.010000"],["2024-07-24T23:44:40.010000"],["2024-07-24T23:44:41.010000"],["2024-07-24T23:44:42.010000"],["2024-07-24T23:44:43.010000"],["2024-07-24T23:44:44.010000"],["2024-07-24T23:44:45.010000"],["2024-07-24T23:44:46.010000"],["2024-07-24T23:44:47.010000"],["2024-07-24T23:44:48.010000"],["2024-07-24T23:44:49.010000"],["2024-07-24T23:44:50.010000"],["2024-07-24T23:44:51.010000"],["2024-07-24T23:44:52.010000"],["2024-07-24T23:44:53.010000"],["2024-07-24T23:44:54.010000"],["2024-07-24T23:44:55.010000"],["2024-07-24T23:44:56.010000"],["2024-07-24T23:44:57.010000"],["2024-07-24T23:44:58.010000"],["2024-07-24T23:44:59.010000"],["2024-07-24T23:45:00.010000"],["2024-07-24T23:45:01.010000"],["2024-07-24T23:45:02.010000"],["2024-07-24T23:45:03.010000"],["2024-07-24T23:45:04.010000"],["2024-07-24T23:45:05.010000"],["2024-07-24T23:45:06.010000"],["2024-07-24T23:45:07.010000"],["2024-07-24T23:45:08.010000"],["2024-07-24T23:45:09.010000"],["2024-07-24T23:45:10.010000"],["2024-07-24T23:45:11.010000"],["2024-07-24T23:45:12.010000"],["2024-07-24T23:45:13.010000"],["2024-07-24T23:45:14.010000"],["2024-07-24T23:45:15.010000"],["2024-07-24T23:45:16.010000"],["2024-07-24T23:45:17.010000"],["2024-07-24T23:45:18.010000"],["2024-07-24T23:45:19.010000"],["2024-07-24T23:45:20.010000"],["2024-07-24T23:45:21.010000"],["2024-07-24T23:45:22.010000"],["2024-07-24T23:45:23.010000"],["2024-07-24T23:45:24.010000"],["2024-07-24T23:45:25.010000"],["2024-07-24T23:45:26.010000"],["2024-07-24T23:45:27.010000"],["2024-07-24T23:45:28.010000"],["2024-07-24T23:45:29.010000"],["2024-07-24T23:45:30.010000"],["2024-07-24T23:45:31.010000"],["2024-07-24T23:45:32.010000"],["2024-07-24T23:45:33.010000"],["2024-07-24T23:45:34.010000"],["2024-07-24T23:45:35.010000"],["2024-07-24T23:45:36.010000"],["2024-07-24T23:45:37.010000"],["2024-07-24T23:45:38.010000"],["2024-07-24T23:45:39.010000"],["2024-07-24T23:45:40.010000"],["2024-07-24T23:45:41.010000"],["2024-07-24T23:45:42.010000"],["2024-07-24T23:45:43.010000"],["2024-07-24T23:45:44.010000"],["2024-07-24T23:45:45.010000"],["2024-07-24T23:45:46.010000"],["2024-07-24T23:45:47.010000"],["2024-07-24T23:45:48.010000"],["2024-07-24T23:45:49.010000"],["2024-07-24T23:45:50.010000"],["2024-07-24T23:45:51.010000"],["2024-07-24T23:45:52.010000"],["2024-07-24T23:45:53.010000"],["2024-07-24T23:45:54.010000"],["2024-07-24T23:45:55.010000"],["2024-07-24T23:45:56.010000"],["2024-07-24T23:45:57.010000"],["2024-07-24T23:45:58.010000"],["2024-07-24T23:45:59.010000"],["2024-07-24T23:46:00.010000"],["2024-07-24T23:46:01.010000"],["2024-07-24T23:46:02.010000"],["2024-07-24T23:46:03.010000"],["2024-07-24T23:46:04.010000"],["2024-07-24T23:46:05.010000"],["2024-07-24T23:46:06.010000"],["2024-07-24T23:46:07.010000"],["2024-07-24T23:46:08.010000"],["2024-07-24T23:46:09.010000"],["2024-07-24T23:46:10.010000"],["2024-07-24T23:46:11.010000"],["2024-07-24T23:46:12.010000"],["2024-07-24T23:46:13.010000"],["2024-07-24T23:46:14.010000"],["2024-07-24T23:46:15.010000"],["2024-07-24T23:46:16.010000"],["2024-07-24T23:46:17.010000"],["2024-07-24T23:46:18.010000"],["2024-07-24T23:46:19.010000"],["2024-07-24T23:46:20.010000"],["2024-07-24T23:46:21.010000"],["2024-07-24T23:46:22.010000"],["2024-07-24T23:46:23.010000"],["2024-07-24T23:46:24.010000"],["2024-07-24T23:46:25.010000"],["2024-07-24T23:46:26.010000"],["2024-07-24T23:46:27.010000"],["2024-07-24T23:46:28.010000"],["2024-07-24T23:46:29.010000"],["2024-07-24T23:46:30.010000"],["2024-07-24T23:46:31.010000"],["2024-07-24T23:46:32.010000"],["2024-07-24T23:46:33.010000"],["2024-07-24T23:46:34.010000"],["2024-07-24T23:46:35.010000"],["2024-07-24T23:46:36.010000"],["2024-07-24T23:46:37.010000"],["2024-07-24T23:46:38.010000"],["2024-07-24T23:46:39.010000"],["2024-07-24T23:46:40.010000"],["2024-07-24T23:46:41.010000"],["2024-07-24T23:46:42.010000"],["2024-07-24T23:46:43.010000"],["2024-07-24T23:46:44.010000"],["2024-07-24T23:46:45.010000"],["2024-07-24T23:46:46.010000"],["2024-07-24T23:46:47.010000"],["2024-07-24T23:46:48.010000"],["2024-07-24T23:46:49.010000"],["2024-07-24T23:46:50.010000"],["2024-07-24T23:46:51.010000"],["2024-07-24T23:46:52.010000"],["2024-07-24T23:46:53.010000"],["2024-07-24T23:46:54.010000"],["2024-07-24T23:46:55.010000"],["2024-07-24T23:46:56.010000"],["2024-07-24T23:46:57.010000"],["2024-07-24T23:46:58.010000"],["2024-07-24T23:46:59.010000"],["2024-07-24T23:47:00.010000"],["2024-07-24T23:47:01.010000"],["2024-07-24T23:47:02.010000"],["2024-07-24T23:47:03.010000"],["2024-07-24T23:47:04.010000"],["2024-07-24T23:47:05.010000"],["2024-07-24T23:47:06.010000"],["2024-07-24T23:47:07.010000"],["2024-07-24T23:47:08.010000"],["2024-07-24T23:47:09.010000"],["2024-07-24T23:47:10.010000"],["2024-07-24T23:47:11.010000"],["2024-07-24T23:47:12.010000"],["2024-07-24T23:47:13.010000"],["2024-07-24T23:47:14.010000"],["2024-07-24T23:47:15.010000"],["2024-07-24T23:47:16.010000"],["2024-07-24T23:47:17.010000"],["2024-07-24T23:47:18.010000"],["2024-07-24T23:47:19.010000"],["2024-07-24T23:47:20.010000"],["2024-07-24T23:47:21.010000"],["2024-07-24T23:47:22.010000"],["2024-07-24T23:47:23.010000"],["2024-07-24T23:47:24.010000"],["2024-07-24T23:47:25.010000"],["2024-07-24T23:47:26.010000"],["2024-07-24T23:47:27.010000"],["2024-07-24T23:47:28.010000"],["2024-07-24T23:47:29.010000"],["2024-07-24T23:47:30.010000"],["2024-07-24T23:47:31.010000"],["2024-07-24T23:47:32.010000"],["2024-07-24T23:47:33.010000"],["2024-07-24T23:47:34.010000"],["2024-07-24T23:47:35.010000"],["2024-07-24T23:47:36.010000"],["2024-07-24T23:47:37.010000"],["2024-07-24T23:47:38.010000"],["2024-07-24T23:47:39.010000"],["2024-07-24T23:47:40.010000"],["2024-07-24T23:47:41.010000"],["2024-07-24T23:47:42.010000"],["2024-07-24T23:47:43.010000"],["2024-07-24T23:47:44.010000"],["2024-07-24T23:47:45.010000"],["2024-07-24T23:47:46.010000"],["2024-07-24T23:47:47.010000"],["2024-07-24T23:47:48.010000"],["2024-07-24T23:47:49.010000"],["2024-07-24T23:47:50.010000"],["2024-07-24T23:47:51.010000"],["2024-07-24T23:47:52.010000"],["2024-07-24T23:47:53.010000"],["2024-07-24T23:47:54.010000"],["2024-07-24T23:47:55.010000"],["2024-07-24T23:47:56.010000"],["2024-07-24T23:47:57.010000"],["2024-07-24T23:47:58.010000"],["2024-07-24T23:47:59.010000"],["2024-07-24T23:48:00.010000"],["2024-07-24T23:48:01.010000"],["2024-07-24T23:48:02.010000"],["2024-07-24T23:48:03.010000"],["2024-07-24T23:48:04.010000"],["2024-07-24T23:48:05.010000"],["2024-07-24T23:48:06.010000"],["2024-07-24T23:48:07.010000"],["2024-07-24T23:48:08.010000"],["2024-07-24T23:48:09.010000"],["2024-07-24T23:48:10.010000"],["2024-07-24T23:48:11.010000"],["2024-07-24T23:48:12.010000"],["2024-07-24T23:48:13.010000"],["2024-07-24T23:48:14.010000"],["2024-07-24T23:48:15.010000"],["2024-07-24T23:48:16.010000"],["2024-07-24T23:48:17.010000"],["2024-07-24T23:48:18.010000"],["2024-07-24T23:48:19.010000"],["2024-07-24T23:48:20.010000"],["2024-07-24T23:48:21.010000"],["2024-07-24T23:48:22.010000"],["2024-07-24T23:48:23.010000"],["2024-07-24T23:48:24.010000"],["2024-07-24T23:48:25.010000"],["2024-07-24T23:48:26.010000"],["2024-07-24T23:48:27.010000"],["2024-07-24T23:48:28.010000"],["2024-07-24T23:48:29.010000"],["2024-07-24T23:48:30.010000"],["2024-07-24T23:48:31.010000"],["2024-07-24T23:48:32.010000"],["2024-07-24T23:48:33.010000"],["2024-07-24T23:48:34.010000"],["2024-07-24T23:48:35.010000"],["2024-07-24T23:48:36.010000"],["2024-07-24T23:48:37.010000"],["2024-07-24T23:48:38.010000"],["2024-07-24T23:48:39.010000"],["2024-07-24T23:48:40.010000"],["2024-07-24T23:48:41.010000"],["2024-07-24T23:48:42.010000"],["2024-07-24T23:48:43.010000"],["2024-07-24T23:48:44.010000"],["2024-07-24T23:48:45.010000"],["2024-07-24T23:48:46.010000"],["2024-07-24T23:48:47.010000"],["2024-07-24T23:48:48.010000"],["2024-07-24T23:48:49.010000"],["2024-07-24T23:48:50.010000"],["2024-07-24T23:48:51.010000"],["2024-07-24T23:48:52.010000"],["2024-07-24T23:48:53.010000"],["2024-07-24T23:48:54.010000"],["2024-07-24T23:48:55.010000"],["2024-07-24T23:48:56.010000"],["2024-07-24T23:48:57.010000"],["2024-07-24T23:48:58.010000"],["2024-07-24T23:48:59.010000"],["2024-07-24T23:49:00.010000"],["2024-07-24T23:49:01.010000"],["2024-07-24T23:49:02.010000"],["2024-07-24T23:49:03.010000"],["2024-07-24T23:49:04.010000"],["2024-07-24T23:49:05.010000"],["2024-07-24T23:49:06.010000"],["2024-07-24T23:49:07.010000"],["2024-07-24T23:49:08.010000"],["2024-07-24T23:49:09.010000"],["2024-07-24T23:49:10.010000"],["2024-07-24T23:49:11.010000"],["2024-07-24T23:49:12.010000"],["2024-07-24T23:49:13.010000"],["2024-07-24T23:49:14.010000"],["2024-07-24T23:49:15.010000"],["2024-07-24T23:49:16.010000"],["2024-07-24T23:49:17.010000"],["2024-07-24T23:49:18.010000"],["2024-07-24T23:49:19.010000"],["2024-07-24T23:49:20.010000"],["2024-07-24T23:49:21.010000"],["2024-07-24T23:49:22.010000"],["2024-07-24T23:49:23.010000"],["2024-07-24T23:49:24.010000"],["2024-07-24T23:49:25.010000"],["2024-07-24T23:49:26.010000"],["2024-07-24T23:49:27.010000"],["2024-07-24T23:49:28.010000"],["2024-07-24T23:49:29.010000"],["2024-07-24T23:49:30.010000"],["2024-07-24T23:49:31.010000"],["2024-07-24T23:49:32.010000"],["2024-07-24T23:49:33.010000"],["2024-07-24T23:49:34.010000"],["2024-07-24T23:49:35.010000"],["2024-07-24T23:49:36.010000"],["2024-07-24T23:49:37.010000"],["2024-07-24T23:49:38.010000"],["2024-07-24T23:49:39.010000"],["2024-07-24T23:49:40.010000"],["2024-07-24T23:49:41.010000"],["2024-07-24T23:49:42.010000"],["2024-07-24T23:49:43.010000"],["2024-07-24T23:49:44.010000"],["2024-07-24T23:49:45.010000"],["2024-07-24T23:49:46.010000"],["2024-07-24T23:49:47.010000"],["2024-07-24T23:49:48.010000"],["2024-07-24T23:49:49.010000"],["2024-07-24T23:49:50.010000"],["2024-07-24T23:49:51.010000"],["2024-07-24T23:49:52.010000"],["2024-07-24T23:49:53.010000"],["2024-07-24T23:49:54.010000"],["2024-07-24T23:49:55.010000"],["2024-07-24T23:49:56.010000"],["2024-07-24T23:49:57.010000"],["2024-07-24T23:49:58.010000"],["2024-07-24T23:49:59.010000"],["2024-07-24T23:50:00.010000"],["2024-07-24T23:50:01.010000"],["2024-07-24T23:50:02.010000"],["2024-07-24T23:50:03.010000"],["2024-07-24T23:50:04.010000"],["2024-07-24T23:50:05.010000"],["2024-07-24T23:50:06.010000"],["2024-07-24T23:50:07.010000"],["2024-07-24T23:50:08.010000"],["2024-07-24T23:50:09.010000"],["2024-07-24T23:50:10.010000"],["2024-07-24T23:50:11.010000"],["2024-07-24T23:50:12.010000"],["2024-07-24T23:50:13.010000"],["2024-07-24T23:50:14.010000"],["2024-07-24T23:50:15.010000"],["2024-07-24T23:50:16.010000"],["2024-07-24T23:50:17.010000"],["2024-07-24T23:50:18.010000"],["2024-07-24T23:50:19.010000"],["2024-07-24T23:50:20.010000"],["2024-07-24T23:50:21.010000"],["2024-07-24T23:50:22.010000"],["2024-07-24T23:50:23.010000"],["2024-07-24T23:50:24.010000"],["2024-07-24T23:50:25.010000"],["2024-07-24T23:50:26.010000"],["2024-07-24T23:50:27.010000"],["2024-07-24T23:50:28.010000"],["2024-07-24T23:50:29.010000"],["2024-07-24T23:50:30.010000"],["2024-07-24T23:50:31.010000"],["2024-07-24T23:50:32.010000"],["2024-07-24T23:50:33.010000"],["2024-07-24T23:50:34.010000"],["2024-07-24T23:50:35.010000"],["2024-07-24T23:50:36.010000"],["2024-07-24T23:50:37.010000"],["2024-07-24T23:50:38.010000"],["2024-07-24T23:50:39.010000"],["2024-07-24T23:50:40.010000"],["2024-07-24T23:50:41.010000"],["2024-07-24T23:50:42.010000"],["2024-07-24T23:50:43.010000"],["2024-07-24T23:50:44.010000"],["2024-07-24T23:50:45.010000"],["2024-07-24T23:50:46.010000"],["2024-07-24T23:50:47.010000"],["2024-07-24T23:50:48.010000"],["2024-07-24T23:50:49.010000"],["2024-07-24T23:50:50.010000"],["2024-07-24T23:50:51.010000"],["2024-07-24T23:50:52.010000"],["2024-07-24T23:50:53.010000"],["2024-07-24T23:50:54.010000"],["2024-07-24T23:50:55.010000"],["2024-07-24T23:50:56.010000"],["2024-07-24T23:50:57.010000"],["2024-07-24T23:50:58.010000"],["2024-07-24T23:50:59.010000"],["2024-07-24T23:51:00.010000"],["2024-07-24T23:51:01.010000"],["2024-07-24T23:51:02.010000"],["2024-07-24T23:51:03.010000"],["2024-07-24T23:51:04.010000"],["2024-07-24T23:51:05.010000"],["2024-07-24T23:51:06.010000"],["2024-07-24T23:51:07.010000"],["2024-07-24T23:51:08.010000"],["2024-07-24T23:51:09.010000"],["2024-07-24T23:51:10.010000"],["2024-07-24T23:51:11.010000"],["2024-07-24T23:51:12.010000"],["2024-07-24T23:51:13.010000"],["2024-07-24T23:51:14.010000"],["2024-07-24T23:51:15.010000"],["2024-07-24T23:51:16.010000"],["2024-07-24T23:51:17.010000"],["2024-07-24T23:51:18.010000"],["2024-07-24T23:51:19.010000"],["2024-07-24T23:51:20.010000"],["2024-07-24T23:51:21.010000"],["2024-07-24T23:51:22.010000"],["2024-07-24T23:51:23.010000"],["2024-07-24T23:51:24.010000"],["2024-07-24T23:51:25.010000"],["2024-07-24T23:51:26.010000"],["2024-07-24T23:51:27.010000"],["2024-07-24T23:51:28.010000"],["2024-07-24T23:51:29.010000"],["2024-07-24T23:51:30.010000"],["2024-07-24T23:51:31.010000"],["2024-07-24T23:51:32.010000"],["2024-07-24T23:51:33.010000"],["2024-07-24T23:51:34.010000"],["2024-07-24T23:51:35.010000"],["2024-07-24T23:51:36.010000"],["2024-07-24T23:51:37.010000"],["2024-07-24T23:51:38.010000"],["2024-07-24T23:51:39.010000"],["2024-07-24T23:51:40.010000"],["2024-07-24T23:51:41.010000"],["2024-07-24T23:51:42.010000"],["2024-07-24T23:51:43.010000"],["2024-07-24T23:51:44.010000"],["2024-07-24T23:51:45.010000"],["2024-07-24T23:51:46.010000"],["2024-07-24T23:51:47.010000"],["2024-07-24T23:51:48.010000"],["2024-07-24T23:51:49.010000"],["2024-07-24T23:51:50.010000"],["2024-07-24T23:51:51.010000"],["2024-07-24T23:51:52.010000"],["2024-07-24T23:51:53.010000"],["2024-07-24T23:51:54.010000"],["2024-07-24T23:51:55.010000"],["2024-07-24T23:51:56.010000"],["2024-07-24T23:51:57.010000"],["2024-07-24T23:51:58.010000"],["2024-07-24T23:51:59.010000"],["2024-07-24T23:52:00.010000"],["2024-07-24T23:52:01.010000"],["2024-07-24T23:52:02.010000"],["2024-07-24T23:52:03.010000"],["2024-07-24T23:52:04.010000"],["2024-07-24T23:52:05.010000"],["2024-07-24T23:52:06.010000"],["2024-07-24T23:52:07.010000"],["2024-07-24T23:52:08.010000"],["2024-07-24T23:52:09.010000"],["2024-07-24T23:52:10.010000"],["2024-07-24T23:52:11.010000"],["2024-07-24T23:52:12.010000"],["2024-07-24T23:52:13.010000"],["2024-07-24T23:52:14.010000"],["2024-07-24T23:52:15.010000"],["2024-07-24T23:52:16.010000"],["2024-07-24T23:52:17.010000"],["2024-07-24T23:52:18.010000"],["2024-07-24T23:52:19.010000"],["2024-07-24T23:52:20.010000"],["2024-07-24T23:52:21.010000"],["2024-07-24T23:52:22.010000"],["2024-07-24T23:52:23.010000"],["2024-07-24T23:52:24.010000"],["2024-07-24T23:52:25.010000"],["2024-07-24T23:52:26.010000"],["2024-07-24T23:52:27.010000"],["2024-07-24T23:52:28.010000"],["2024-07-24T23:52:29.010000"],["2024-07-24T23:52:30.010000"],["2024-07-24T23:52:31.010000"],["2024-07-24T23:52:32.010000"],["2024-07-24T23:52:33.010000"],["2024-07-24T23:52:34.010000"],["2024-07-24T23:52:35.010000"],["2024-07-24T23:52:36.010000"],["2024-07-24T23:52:37.010000"],["2024-07-24T23:52:38.010000"],["2024-07-24T23:52:39.010000"],["2024-07-24T23:52:40.010000"],["2024-07-24T23:52:41.010000"],["2024-07-24T23:52:42.010000"],["2024-07-24T23:52:43.010000"],["2024-07-24T23:52:44.010000"],["2024-07-24T23:52:45.010000"],["2024-07-24T23:52:46.010000"],["2024-07-24T23:52:47.010000"],["2024-07-24T23:52:48.010000"],["2024-07-24T23:52:49.010000"],["2024-07-24T23:52:50.010000"],["2024-07-24T23:52:51.010000"],["2024-07-24T23:52:52.010000"],["2024-07-24T23:52:53.010000"],["2024-07-24T23:52:54.010000"],["2024-07-24T23:52:55.010000"],["2024-07-24T23:52:56.010000"],["2024-07-24T23:52:57.010000"],["2024-07-24T23:52:58.010000"],["2024-07-24T23:52:59.010000"],["2024-07-24T23:53:00.010000"],["2024-07-24T23:53:01.010000"],["2024-07-24T23:53:02.010000"],["2024-07-24T23:53:03.010000"],["2024-07-24T23:53:04.010000"],["2024-07-24T23:53:05.010000"],["2024-07-24T23:53:06.010000"],["2024-07-24T23:53:07.010000"],["2024-07-24T23:53:08.010000"],["2024-07-24T23:53:09.010000"],["2024-07-24T23:53:10.010000"],["2024-07-24T23:53:11.010000"],["2024-07-24T23:53:12.010000"],["2024-07-24T23:53:13.010000"],["2024-07-24T23:53:14.010000"],["2024-07-24T23:53:15.010000"],["2024-07-24T23:53:16.010000"],["2024-07-24T23:53:17.010000"],["2024-07-24T23:53:18.010000"],["2024-07-24T23:53:19.010000"],["2024-07-24T23:53:20.010000"],["2024-07-24T23:53:21.010000"],["2024-07-24T23:53:22.010000"],["2024-07-24T23:53:23.010000"],["2024-07-24T23:53:24.010000"],["2024-07-24T23:53:25.010000"],["2024-07-24T23:53:26.010000"],["2024-07-24T23:53:27.010000"],["2024-07-24T23:53:28.010000"],["2024-07-24T23:53:29.010000"],["2024-07-24T23:53:30.010000"],["2024-07-24T23:53:31.010000"],["2024-07-24T23:53:32.010000"],["2024-07-24T23:53:33.010000"],["2024-07-24T23:53:34.010000"],["2024-07-24T23:53:35.010000"],["2024-07-24T23:53:36.010000"],["2024-07-24T23:53:37.010000"],["2024-07-24T23:53:38.010000"],["2024-07-24T23:53:39.010000"],["2024-07-24T23:53:40.010000"],["2024-07-24T23:53:41.010000"],["2024-07-24T23:53:42.010000"],["2024-07-24T23:53:43.010000"],["2024-07-24T23:53:44.010000"],["2024-07-24T23:53:45.010000"],["2024-07-24T23:53:46.010000"],["2024-07-24T23:53:47.010000"],["2024-07-24T23:53:48.010000"],["2024-07-24T23:53:49.010000"],["2024-07-24T23:53:50.010000"],["2024-07-24T23:53:51.010000"],["2024-07-24T23:53:52.010000"],["2024-07-24T23:53:53.010000"],["2024-07-24T23:53:54.010000"],["2024-07-24T23:53:55.010000"],["2024-07-24T23:53:56.010000"],["2024-07-24T23:53:57.010000"],["2024-07-24T23:53:58.010000"],["2024-07-24T23:53:59.010000"],["2024-07-24T23:54:00.010000"],["2024-07-24T23:54:01.010000"],["2024-07-24T23:54:02.010000"],["2024-07-24T23:54:03.010000"],["2024-07-24T23:54:04.010000"],["2024-07-24T23:54:05.010000"],["2024-07-24T23:54:06.010000"],["2024-07-24T23:54:07.010000"],["2024-07-24T23:54:08.010000"],["2024-07-24T23:54:09.010000"],["2024-07-24T23:54:10.010000"],["2024-07-24T23:54:11.010000"],["2024-07-24T23:54:12.010000"],["2024-07-24T23:54:13.010000"],["2024-07-24T23:54:14.010000"],["2024-07-24T23:54:15.010000"],["2024-07-24T23:54:16.010000"],["2024-07-24T23:54:17.010000"],["2024-07-24T23:54:18.010000"],["2024-07-24T23:54:19.010000"],["2024-07-24T23:54:20.010000"],["2024-07-24T23:54:21.010000"],["2024-07-24T23:54:22.010000"],["2024-07-24T23:54:23.010000"],["2024-07-24T23:54:24.010000"],["2024-07-24T23:54:25.010000"],["2024-07-24T23:54:26.010000"],["2024-07-24T23:54:27.010000"],["2024-07-24T23:54:28.010000"],["2024-07-24T23:54:29.010000"],["2024-07-24T23:54:30.010000"],["2024-07-24T23:54:31.010000"],["2024-07-24T23:54:32.010000"],["2024-07-24T23:54:33.010000"],["2024-07-24T23:54:34.010000"],["2024-07-24T23:54:35.010000"],["2024-07-24T23:54:36.010000"],["2024-07-24T23:54:37.010000"],["2024-07-24T23:54:38.010000"],["2024-07-24T23:54:39.010000"],["2024-07-24T23:54:40.010000"],["2024-07-24T23:54:41.010000"],["2024-07-24T23:54:42.010000"],["2024-07-24T23:54:43.010000"],["2024-07-24T23:54:44.010000"],["2024-07-24T23:54:45.010000"],["2024-07-24T23:54:46.010000"],["2024-07-24T23:54:47.010000"],["2024-07-24T23:54:48.010000"],["2024-07-24T23:54:49.010000"],["2024-07-24T23:54:50.010000"],["2024-07-24T23:54:51.010000"],["2024-07-24T23:54:52.010000"],["2024-07-24T23:54:53.010000"],["2024-07-24T23:54:54.010000"],["2024-07-24T23:54:55.010000"],["2024-07-24T23:54:56.010000"],["2024-07-24T23:54:57.010000"],["2024-07-24T23:54:58.010000"],["2024-07-24T23:54:59.010000"],["2024-07-24T23:55:00.010000"],["2024-07-24T23:55:01.010000"],["2024-07-24T23:55:02.010000"],["2024-07-24T23:55:03.010000"],["2024-07-24T23:55:04.010000"],["2024-07-24T23:55:05.010000"],["2024-07-24T23:55:06.010000"],["2024-07-24T23:55:07.010000"],["2024-07-24T23:55:08.010000"],["2024-07-24T23:55:09.010000"],["2024-07-24T23:55:10.010000"],["2024-07-24T23:55:11.010000"],["2024-07-24T23:55:12.010000"],["2024-07-24T23:55:13.010000"],["2024-07-24T23:55:14.010000"],["2024-07-24T23:55:15.010000"],["2024-07-24T23:55:16.010000"],["2024-07-24T23:55:17.010000"],["2024-07-24T23:55:18.010000"],["2024-07-24T23:55:19.010000"],["2024-07-24T23:55:20.010000"],["2024-07-24T23:55:21.010000"],["2024-07-24T23:55:22.010000"],["2024-07-24T23:55:23.010000"],["2024-07-24T23:55:24.010000"],["2024-07-24T23:55:25.010000"],["2024-07-24T23:55:26.010000"],["2024-07-24T23:55:27.010000"],["2024-07-24T23:55:28.010000"],["2024-07-24T23:55:29.010000"],["2024-07-24T23:55:30.010000"],["2024-07-24T23:55:31.010000"],["2024-07-24T23:55:32.010000"],["2024-07-24T23:55:33.010000"],["2024-07-24T23:55:34.010000"],["2024-07-24T23:55:35.010000"],["2024-07-24T23:55:36.010000"],["2024-07-24T23:55:37.010000"],["2024-07-24T23:55:38.010000"],["2024-07-24T23:55:39.010000"],["2024-07-24T23:55:40.010000"],["2024-07-24T23:55:41.010000"],["2024-07-24T23:55:42.010000"],["2024-07-24T23:55:43.010000"],["2024-07-24T23:55:44.010000"],["2024-07-24T23:55:45.010000"],["2024-07-24T23:55:46.010000"],["2024-07-24T23:55:47.010000"],["2024-07-24T23:55:48.010000"],["2024-07-24T23:55:49.010000"],["2024-07-24T23:55:50.010000"],["2024-07-24T23:55:51.010000"],["2024-07-24T23:55:52.010000"],["2024-07-24T23:55:53.010000"],["2024-07-24T23:55:54.010000"],["2024-07-24T23:55:55.010000"],["2024-07-24T23:55:56.010000"],["2024-07-24T23:55:57.010000"],["2024-07-24T23:55:58.010000"],["2024-07-24T23:55:59.010000"],["2024-07-24T23:56:00.010000"],["2024-07-24T23:56:01.010000"],["2024-07-24T23:56:02.010000"],["2024-07-24T23:56:03.010000"],["2024-07-24T23:56:04.010000"],["2024-07-24T23:56:05.010000"],["2024-07-24T23:56:06.010000"],["2024-07-24T23:56:07.010000"],["2024-07-24T23:56:08.010000"],["2024-07-24T23:56:09.010000"],["2024-07-24T23:56:10.010000"],["2024-07-24T23:56:11.010000"],["2024-07-24T23:56:12.010000"],["2024-07-24T23:56:13.010000"],["2024-07-24T23:56:14.010000"],["2024-07-24T23:56:15.010000"],["2024-07-24T23:56:16.010000"],["2024-07-24T23:56:17.010000"],["2024-07-24T23:56:18.010000"],["2024-07-24T23:56:19.010000"],["2024-07-24T23:56:20.010000"],["2024-07-24T23:56:21.010000"],["2024-07-24T23:56:22.010000"],["2024-07-24T23:56:23.010000"],["2024-07-24T23:56:24.010000"],["2024-07-24T23:56:25.010000"],["2024-07-24T23:56:26.010000"],["2024-07-24T23:56:27.010000"],["2024-07-24T23:56:28.010000"],["2024-07-24T23:56:29.010000"],["2024-07-24T23:56:30.010000"],["2024-07-24T23:56:31.010000"],["2024-07-24T23:56:32.010000"],["2024-07-24T23:56:33.010000"],["2024-07-24T23:56:34.010000"],["2024-07-24T23:56:35.010000"],["2024-07-24T23:56:36.010000"],["2024-07-24T23:56:37.010000"],["2024-07-24T23:56:38.010000"],["2024-07-24T23:56:39.010000"],["2024-07-24T23:56:40.010000"],["2024-07-24T23:56:41.010000"],["2024-07-24T23:56:42.010000"],["2024-07-24T23:56:43.010000"],["2024-07-24T23:56:44.010000"],["2024-07-24T23:56:45.010000"],["2024-07-24T23:56:46.010000"],["2024-07-24T23:56:47.010000"],["2024-07-24T23:56:48.010000"],["2024-07-24T23:56:49.010000"],["2024-07-24T23:56:50.010000"],["2024-07-24T23:56:51.010000"],["2024-07-24T23:56:52.010000"],["2024-07-24T23:56:53.010000"],["2024-07-24T23:56:54.010000"],["2024-07-24T23:56:55.010000"],["2024-07-24T23:56:56.010000"],["2024-07-24T23:56:57.010000"],["2024-07-24T23:56:58.010000"],["2024-07-24T23:56:59.010000"],["2024-07-24T23:57:00.010000"],["2024-07-24T23:57:01.010000"],["2024-07-24T23:57:02.010000"],["2024-07-24T23:57:03.010000"],["2024-07-24T23:57:04.010000"],["2024-07-24T23:57:05.010000"],["2024-07-24T23:57:06.010000"],["2024-07-24T23:57:07.010000"],["2024-07-24T23:57:08.010000"],["2024-07-24T23:57:09.010000"],["2024-07-24T23:57:10.010000"],["2024-07-24T23:57:11.010000"],["2024-07-24T23:57:12.010000"],["2024-07-24T23:57:13.010000"],["2024-07-24T23:57:14.010000"],["2024-07-24T23:57:15.010000"],["2024-07-24T23:57:16.010000"],["2024-07-24T23:57:17.010000"],["2024-07-24T23:57:18.010000"],["2024-07-24T23:57:19.010000"],["2024-07-24T23:57:20.010000"],["2024-07-24T23:57:21.010000"],["2024-07-24T23:57:22.010000"],["2024-07-24T23:57:23.010000"],["2024-07-24T23:57:24.010000"],["2024-07-24T23:57:25.010000"],["2024-07-24T23:57:26.010000"],["2024-07-24T23:57:27.010000"],["2024-07-24T23:57:28.010000"],["2024-07-24T23:57:29.010000"],["2024-07-24T23:57:30.010000"],["2024-07-24T23:57:31.010000"],["2024-07-24T23:57:32.010000"],["2024-07-24T23:57:33.010000"],["2024-07-24T23:57:34.010000"],["2024-07-24T23:57:35.010000"],["2024-07-24T23:57:36.010000"],["2024-07-24T23:57:37.010000"],["2024-07-24T23:57:38.010000"],["2024-07-24T23:57:39.010000"],["2024-07-24T23:57:40.010000"],["2024-07-24T23:57:41.010000"],["2024-07-24T23:57:42.010000"],["2024-07-24T23:57:43.010000"],["2024-07-24T23:57:44.010000"],["2024-07-24T23:57:45.010000"],["2024-07-24T23:57:46.010000"],["2024-07-24T23:57:47.010000"],["2024-07-24T23:57:48.010000"],["2024-07-24T23:57:49.010000"],["2024-07-24T23:57:50.010000"],["2024-07-24T23:57:51.010000"],["2024-07-24T23:57:52.010000"],["2024-07-24T23:57:53.010000"],["2024-07-24T23:57:54.010000"],["2024-07-24T23:57:55.010000"],["2024-07-24T23:57:56.010000"],["2024-07-24T23:57:57.010000"],["2024-07-24T23:57:58.010000"],["2024-07-24T23:57:59.010000"],["2024-07-24T23:58:00.010000"],["2024-07-24T23:58:01.010000"],["2024-07-24T23:58:02.010000"],["2024-07-24T23:58:03.010000"],["2024-07-24T23:58:04.010000"],["2024-07-24T23:58:05.010000"],["2024-07-24T23:58:06.010000"],["2024-07-24T23:58:07.010000"],["2024-07-24T23:58:08.010000"],["2024-07-24T23:58:09.010000"],["2024-07-24T23:58:10.010000"],["2024-07-24T23:58:11.010000"],["2024-07-24T23:58:12.010000"],["2024-07-24T23:58:13.010000"],["2024-07-24T23:58:14.010000"],["2024-07-24T23:58:15.010000"],["2024-07-24T23:58:16.010000"],["2024-07-24T23:58:17.010000"],["2024-07-24T23:58:18.010000"],["2024-07-24T23:58:19.010000"],["2024-07-24T23:58:20.010000"],["2024-07-24T23:58:21.010000"],["2024-07-24T23:58:22.010000"],["2024-07-24T23:58:23.010000"],["2024-07-24T23:58:24.010000"],["2024-07-24T23:58:25.010000"],["2024-07-24T23:58:26.010000"],["2024-07-24T23:58:27.010000"],["2024-07-24T23:58:28.010000"],["2024-07-24T23:58:29.010000"],["2024-07-24T23:58:30.010000"],["2024-07-24T23:58:31.010000"],["2024-07-24T23:58:32.010000"],["2024-07-24T23:58:33.010000"],["2024-07-24T23:58:34.010000"],["2024-07-24T23:58:35.010000"],["2024-07-24T23:58:36.010000"],["2024-07-24T23:58:37.010000"],["2024-07-24T23:58:38.010000"],["2024-07-24T23:58:39.010000"],["2024-07-24T23:58:40.010000"],["2024-07-24T23:58:41.010000"],["2024-07-24T23:58:42.010000"],["2024-07-24T23:58:43.010000"],["2024-07-24T23:58:44.010000"],["2024-07-24T23:58:45.010000"],["2024-07-24T23:58:46.010000"],["2024-07-24T23:58:47.010000"],["2024-07-24T23:58:48.010000"],["2024-07-24T23:58:49.010000"],["2024-07-24T23:58:50.010000"],["2024-07-24T23:58:51.010000"],["2024-07-24T23:58:52.010000"],["2024-07-24T23:58:53.010000"],["2024-07-24T23:58:54.010000"],["2024-07-24T23:58:55.010000"],["2024-07-24T23:58:56.010000"],["2024-07-24T23:58:57.010000"],["2024-07-24T23:58:58.010000"],["2024-07-24T23:58:59.010000"],["2024-07-24T23:59:00.010000"],["2024-07-24T23:59:01.010000"],["2024-07-24T23:59:02.010000"],["2024-07-24T23:59:03.010000"],["2024-07-24T23:59:04.010000"],["2024-07-24T23:59:05.010000"],["2024-07-24T23:59:06.010000"],["2024-07-24T23:59:07.010000"],["2024-07-24T23:59:08.010000"],["2024-07-24T23:59:09.010000"],["2024-07-24T23:59:10.010000"],["2024-07-24T23:59:11.010000"],["2024-07-24T23:59:12.010000"],["2024-07-24T23:59:13.010000"],["2024-07-24T23:59:14.010000"],["2024-07-24T23:59:15.010000"],["2024-07-24T23:59:16.010000"],["2024-07-24T23:59:17.010000"],["2024-07-24T23:59:18.010000"],["2024-07-24T23:59:19.010000"],["2024-07-24T23:59:20.010000"],["2024-07-24T23:59:21.010000"],["2024-07-24T23:59:22.010000"],["2024-07-24T23:59:23.010000"],["2024-07-24T23:59:24.010000"],["2024-07-24T23:59:25.010000"],["2024-07-24T23:59:26.010000"],["2024-07-24T23:59:27.010000"],["2024-07-24T23:59:28.010000"],["2024-07-24T23:59:29.010000"],["2024-07-24T23:59:30.010000"],["2024-07-24T23:59:31.010000"],["2024-07-24T23:59:32.010000"],["2024-07-24T23:59:33.010000"],["2024-07-24T23:59:34.010000"],["2024-07-24T23:59:35.010000"],["2024-07-24T23:59:36.010000"],["2024-07-24T23:59:37.010000"],["2024-07-24T23:59:38.010000"],["2024-07-24T23:59:39.010000"],["2024-07-24T23:59:40.010000"],["2024-07-24T23:59:41.010000"],["2024-07-24T23:59:42.010000"],["2024-07-24T23:59:43.010000"],["2024-07-24T23:59:44.010000"],["2024-07-24T23:59:45.010000"],["2024-07-24T23:59:46.010000"],["2024-07-24T23:59:47.010000"],["2024-07-24T23:59:48.010000"],["2024-07-24T23:59:49.010000"],["2024-07-24T23:59:50.010000"],["2024-07-24T23:59:51.010000"],["2024-07-24T23:59:52.010000"],["2024-07-24T23:59:53.010000"],["2024-07-24T23:59:54.010000"],["2024-07-24T23:59:55.010000"],["2024-07-24T23:59:56.010000"],["2024-07-24T23:59:57.010000"],["2024-07-24T23:59:58.010000"],["2024-07-24T23:59:59.010000"],["2024-07-25T00:00:00.010000"],["2024-07-25T00:00:01.010000"],["2024-07-25T00:00:02.010000"],["2024-07-25T00:00:03.010000"],["2024-07-25T00:00:04.010000"],["2024-07-25T00:00:05.010000"],["2024-07-25T00:00:06.010000"],["2024-07-25T00:00:07.010000"],["2024-07-25T00:00:08.010000"],["2024-07-25T00:00:09.010000"],["2024-07-25T00:00:10.010000"],["2024-07-25T00:00:11.010000"],["2024-07-25T00:00:12.010000"],["2024-07-25T00:00:13.010000"],["2024-07-25T00:00:14.010000"],["2024-07-25T00:00:15.010000"],["2024-07-25T00:00:16.010000"],["2024-07-25T00:00:17.010000"],["2024-07-25T00:00:18.010000"],["2024-07-25T00:00:19.010000"],["2024-07-25T00:00:20.010000"],["2024-07-25T00:00:21.010000"],["2024-07-25T00:00:22.010000"],["2024-07-25T00:00:23.010000"],["2024-07-25T00:00:24.010000"],["2024-07-25T00:00:25.010000"],["2024-07-25T00:00:26.010000"],["2024-07-25T00:00:27.010000"],["2024-07-25T00:00:28.010000"],["2024-07-25T00:00:29.010000"],["2024-07-25T00:00:30.010000"],["2024-07-25T00:00:31.010000"],["2024-07-25T00:00:32.010000"],["2024-07-25T00:00:33.010000"],["2024-07-25T00:00:34.010000"],["2024-07-25T00:00:35.010000"],["2024-07-25T00:00:36.010000"],["2024-07-25T00:00:37.010000"],["2024-07-25T00:00:38.010000"],["2024-07-25T00:00:39.010000"],["2024-07-25T00:00:40.010000"],["2024-07-25T00:00:41.010000"],["2024-07-25T00:00:42.010000"],["2024-07-25T00:00:43.010000"],["2024-07-25T00:00:44.010000"],["2024-07-25T00:00:45.010000"],["2024-07-25T00:00:46.010000"],["2024-07-25T00:00:47.010000"],["2024-07-25T00:00:48.010000"],["2024-07-25T00:00:49.010000"],["2024-07-25T00:00:50.010000"],["2024-07-25T00:00:51.010000"],["2024-07-25T00:00:52.010000"],["2024-07-25T00:00:53.010000"],["2024-07-25T00:00:54.010000"],["2024-07-25T00:00:55.010000"],["2024-07-25T00:00:56.010000"],["2024-07-25T00:00:57.010000"],["2024-07-25T00:00:58.010000"],["2024-07-25T00:00:59.010000"],["2024-07-25T00:01:00.010000"],["2024-07-25T00:01:01.010000"],["2024-07-25T00:01:02.010000"],["2024-07-25T00:01:03.010000"],["2024-07-25T00:01:04.010000"],["2024-07-25T00:01:05.010000"],["2024-07-25T00:01:06.010000"],["2024-07-25T00:01:07.010000"],["2024-07-25T00:01:08.010000"],["2024-07-25T00:01:09.010000"],["2024-07-25T00:01:10.010000"],["2024-07-25T00:01:11.010000"],["2024-07-25T00:01:12.010000"],["2024-07-25T00:01:13.010000"],["2024-07-25T00:01:14.010000"],["2024-07-25T00:01:15.010000"],["2024-07-25T00:01:16.010000"],["2024-07-25T00:01:17.010000"],["2024-07-25T00:01:18.010000"],["2024-07-25T00:01:19.010000"],["2024-07-25T00:01:20.010000"],["2024-07-25T00:01:21.010000"],["2024-07-25T00:01:22.010000"],["2024-07-25T00:01:23.010000"],["2024-07-25T00:01:24.010000"],["2024-07-25T00:01:25.010000"],["2024-07-25T00:01:26.010000"],["2024-07-25T00:01:27.010000"],["2024-07-25T00:01:28.010000"],["2024-07-25T00:01:29.010000"],["2024-07-25T00:01:30.010000"],["2024-07-25T00:01:31.010000"],["2024-07-25T00:01:32.010000"],["2024-07-25T00:01:33.010000"],["2024-07-25T00:01:34.010000"],["2024-07-25T00:01:35.010000"],["2024-07-25T00:01:36.010000"],["2024-07-25T00:01:37.010000"],["2024-07-25T00:01:38.010000"],["2024-07-25T00:01:39.010000"],["2024-07-25T00:01:40.010000"],["2024-07-25T00:01:41.010000"],["2024-07-25T00:01:42.010000"],["2024-07-25T00:01:43.010000"],["2024-07-25T00:01:44.010000"],["2024-07-25T00:01:45.010000"],["2024-07-25T00:01:46.010000"],["2024-07-25T00:01:47.010000"],["2024-07-25T00:01:48.010000"],["2024-07-25T00:01:49.010000"],["2024-07-25T00:01:50.010000"],["2024-07-25T00:01:51.010000"],["2024-07-25T00:01:52.010000"],["2024-07-25T00:01:53.010000"],["2024-07-25T00:01:54.010000"],["2024-07-25T00:01:55.010000"],["2024-07-25T00:01:56.010000"],["2024-07-25T00:01:57.010000"],["2024-07-25T00:01:58.010000"],["2024-07-25T00:01:59.010000"],["2024-07-25T00:02:00.010000"],["2024-07-25T00:02:01.010000"],["2024-07-25T00:02:02.010000"],["2024-07-25T00:02:03.010000"],["2024-07-25T00:02:04.010000"],["2024-07-25T00:02:05.010000"],["2024-07-25T00:02:06.010000"],["2024-07-25T00:02:07.010000"],["2024-07-25T00:02:08.010000"],["2024-07-25T00:02:09.010000"],["2024-07-25T00:02:10.010000"],["2024-07-25T00:02:11.010000"],["2024-07-25T00:02:12.010000"],["2024-07-25T00:02:13.010000"],["2024-07-25T00:02:14.010000"],["2024-07-25T00:02:15.010000"],["2024-07-25T00:02:16.010000"],["2024-07-25T00:02:17.010000"],["2024-07-25T00:02:18.010000"],["2024-07-25T00:02:19.010000"],["2024-07-25T00:02:20.010000"],["2024-07-25T00:02:21.010000"],["2024-07-25T00:02:22.010000"],["2024-07-25T00:02:23.010000"],["2024-07-25T00:02:24.010000"],["2024-07-25T00:02:25.010000"],["2024-07-25T00:02:26.010000"],["2024-07-25T00:02:27.010000"],["2024-07-25T00:02:28.010000"],["2024-07-25T00:02:29.010000"],["2024-07-25T00:02:30.010000"],["2024-07-25T00:02:31.010000"],["2024-07-25T00:02:32.010000"],["2024-07-25T00:02:33.010000"],["2024-07-25T00:02:34.010000"],["2024-07-25T00:02:35.010000"],["2024-07-25T00:02:36.010000"],["2024-07-25T00:02:37.010000"],["2024-07-25T00:02:38.010000"],["2024-07-25T00:02:39.010000"],["2024-07-25T00:02:40.010000"],["2024-07-25T00:02:41.010000"],["2024-07-25T00:02:42.010000"],["2024-07-25T00:02:43.010000"],["2024-07-25T00:02:44.010000"],["2024-07-25T00:02:45.010000"],["2024-07-25T00:02:46.010000"],["2024-07-25T00:02:47.010000"],["2024-07-25T00:02:48.010000"],["2024-07-25T00:02:49.010000"],["2024-07-25T00:02:50.010000"],["2024-07-25T00:02:51.010000"],["2024-07-25T00:02:52.010000"],["2024-07-25T00:02:53.010000"],["2024-07-25T00:02:54.010000"],["2024-07-25T00:02:55.010000"],["2024-07-25T00:02:56.010000"],["2024-07-25T00:02:57.010000"],["2024-07-25T00:02:58.010000"],["2024-07-25T00:02:59.010000"],["2024-07-25T00:03:00.010000"],["2024-07-25T00:03:01.010000"],["2024-07-25T00:03:02.010000"],["2024-07-25T00:03:03.010000"],["2024-07-25T00:03:04.010000"],["2024-07-25T00:03:05.010000"],["2024-07-25T00:03:06.010000"],["2024-07-25T00:03:07.010000"],["2024-07-25T00:03:08.010000"],["2024-07-25T00:03:09.010000"],["2024-07-25T00:03:10.010000"],["2024-07-25T00:03:11.010000"],["2024-07-25T00:03:12.010000"],["2024-07-25T00:03:13.010000"],["2024-07-25T00:03:14.010000"],["2024-07-25T00:03:15.010000"],["2024-07-25T00:03:16.010000"],["2024-07-25T00:03:17.010000"],["2024-07-25T00:03:18.010000"],["2024-07-25T00:03:19.010000"],["2024-07-25T00:03:20.010000"],["2024-07-25T00:03:21.010000"],["2024-07-25T00:03:22.010000"],["2024-07-25T00:03:23.010000"],["2024-07-25T00:03:24.010000"],["2024-07-25T00:03:25.010000"],["2024-07-25T00:03:26.010000"],["2024-07-25T00:03:27.010000"],["2024-07-25T00:03:28.010000"],["2024-07-25T00:03:29.010000"],["2024-07-25T00:03:30.010000"],["2024-07-25T00:03:31.010000"],["2024-07-25T00:03:32.010000"],["2024-07-25T00:03:33.010000"],["2024-07-25T00:03:34.010000"],["2024-07-25T00:03:35.010000"],["2024-07-25T00:03:36.010000"],["2024-07-25T00:03:37.010000"],["2024-07-25T00:03:38.010000"],["2024-07-25T00:03:39.010000"],["2024-07-25T00:03:40.010000"],["2024-07-25T00:03:41.010000"],["2024-07-25T00:03:42.010000"],["2024-07-25T00:03:43.010000"],["2024-07-25T00:03:44.010000"],["2024-07-25T00:03:45.010000"],["2024-07-25T00:03:46.010000"],["2024-07-25T00:03:47.010000"],["2024-07-25T00:03:48.010000"],["2024-07-25T00:03:49.010000"],["2024-07-25T00:03:50.010000"],["2024-07-25T00:03:51.010000"],["2024-07-25T00:03:52.010000"],["2024-07-25T00:03:53.010000"],["2024-07-25T00:03:54.010000"],["2024-07-25T00:03:55.010000"],["2024-07-25T00:03:56.010000"],["2024-07-25T00:03:57.010000"],["2024-07-25T00:03:58.010000"],["2024-07-25T00:03:59.010000"],["2024-07-25T00:04:00.010000"],["2024-07-25T00:04:01.010000"],["2024-07-25T00:04:02.010000"],["2024-07-25T00:04:03.010000"],["2024-07-25T00:04:04.010000"],["2024-07-25T00:04:05.010000"],["2024-07-25T00:04:06.010000"],["2024-07-25T00:04:07.010000"],["2024-07-25T00:04:08.010000"],["2024-07-25T00:04:09.010000"],["2024-07-25T00:04:10.010000"],["2024-07-25T00:04:11.010000"],["2024-07-25T00:04:12.010000"],["2024-07-25T00:04:13.010000"],["2024-07-25T00:04:14.010000"],["2024-07-25T00:04:15.010000"],["2024-07-25T00:04:16.010000"],["2024-07-25T00:04:17.010000"],["2024-07-25T00:04:18.010000"],["2024-07-25T00:04:19.010000"],["2024-07-25T00:04:20.010000"],["2024-07-25T00:04:21.010000"],["2024-07-25T00:04:22.010000"],["2024-07-25T00:04:23.010000"],["2024-07-25T00:04:24.010000"],["2024-07-25T00:04:25.010000"],["2024-07-25T00:04:26.010000"],["2024-07-25T00:04:27.010000"],["2024-07-25T00:04:28.010000"],["2024-07-25T00:04:29.010000"],["2024-07-25T00:04:30.010000"],["2024-07-25T00:04:31.010000"],["2024-07-25T00:04:32.010000"],["2024-07-25T00:04:33.010000"],["2024-07-25T00:04:34.010000"],["2024-07-25T00:04:35.010000"],["2024-07-25T00:04:36.010000"],["2024-07-25T00:04:37.010000"],["2024-07-25T00:04:38.010000"],["2024-07-25T00:04:39.010000"],["2024-07-25T00:04:40.010000"],["2024-07-25T00:04:41.010000"],["2024-07-25T00:04:42.010000"],["2024-07-25T00:04:43.010000"],["2024-07-25T00:04:44.010000"],["2024-07-25T00:04:45.010000"],["2024-07-25T00:04:46.010000"],["2024-07-25T00:04:47.010000"],["2024-07-25T00:04:48.010000"],["2024-07-25T00:04:49.010000"],["2024-07-25T00:04:50.010000"],["2024-07-25T00:04:51.010000"],["2024-07-25T00:04:52.010000"],["2024-07-25T00:04:53.010000"],["2024-07-25T00:04:54.010000"],["2024-07-25T00:04:55.010000"],["2024-07-25T00:04:56.010000"],["2024-07-25T00:04:57.010000"],["2024-07-25T00:04:58.010000"],["2024-07-25T00:04:59.010000"],["2024-07-25T00:05:00.010000"],["2024-07-25T00:05:01.010000"],["2024-07-25T00:05:02.010000"],["2024-07-25T00:05:03.010000"],["2024-07-25T00:05:04.010000"],["2024-07-25T00:05:05.010000"],["2024-07-25T00:05:06.010000"],["2024-07-25T00:05:07.010000"],["2024-07-25T00:05:08.010000"],["2024-07-25T00:05:09.010000"],["2024-07-25T00:05:10.010000"],["2024-07-25T00:05:11.010000"],["2024-07-25T00:05:12.010000"],["2024-07-25T00:05:13.010000"],["2024-07-25T00:05:14.010000"],["2024-07-25T00:05:15.010000"],["2024-07-25T00:05:16.010000"],["2024-07-25T00:05:17.010000"],["2024-07-25T00:05:18.010000"],["2024-07-25T00:05:19.010000"],["2024-07-25T00:05:20.010000"],["2024-07-25T00:05:21.010000"],["2024-07-25T00:05:22.010000"],["2024-07-25T00:05:23.010000"],["2024-07-25T00:05:24.010000"],["2024-07-25T00:05:25.010000"],["2024-07-25T00:05:26.010000"],["2024-07-25T00:05:27.010000"],["2024-07-25T00:05:28.010000"],["2024-07-25T00:05:29.010000"],["2024-07-25T00:05:30.010000"],["2024-07-25T00:05:31.010000"],["2024-07-25T00:05:32.010000"],["2024-07-25T00:05:33.010000"],["2024-07-25T00:05:34.010000"],["2024-07-25T00:05:35.010000"],["2024-07-25T00:05:36.010000"],["2024-07-25T00:05:37.010000"],["2024-07-25T00:05:38.010000"],["2024-07-25T00:05:39.010000"],["2024-07-25T00:05:40.010000"],["2024-07-25T00:05:41.010000"],["2024-07-25T00:05:42.010000"],["2024-07-25T00:05:43.010000"],["2024-07-25T00:05:44.010000"],["2024-07-25T00:05:45.010000"],["2024-07-25T00:05:46.010000"],["2024-07-25T00:05:47.010000"],["2024-07-25T00:05:48.010000"],["2024-07-25T00:05:49.010000"],["2024-07-25T00:05:50.010000"],["2024-07-25T00:05:51.010000"],["2024-07-25T00:05:52.010000"],["2024-07-25T00:05:53.010000"],["2024-07-25T00:05:54.010000"],["2024-07-25T00:05:55.010000"],["2024-07-25T00:05:56.010000"],["2024-07-25T00:05:57.010000"],["2024-07-25T00:05:58.010000"],["2024-07-25T00:05:59.010000"],["2024-07-25T00:06:00.010000"],["2024-07-25T00:06:01.010000"],["2024-07-25T00:06:02.010000"],["2024-07-25T00:06:03.010000"],["2024-07-25T00:06:04.010000"],["2024-07-25T00:06:05.010000"],["2024-07-25T00:06:06.010000"],["2024-07-25T00:06:07.010000"],["2024-07-25T00:06:08.010000"],["2024-07-25T00:06:09.010000"],["2024-07-25T00:06:10.010000"],["2024-07-25T00:06:11.010000"],["2024-07-25T00:06:12.010000"],["2024-07-25T00:06:13.010000"],["2024-07-25T00:06:14.010000"],["2024-07-25T00:06:15.010000"],["2024-07-25T00:06:16.010000"],["2024-07-25T00:06:17.010000"],["2024-07-25T00:06:18.010000"],["2024-07-25T00:06:19.010000"],["2024-07-25T00:06:20.010000"],["2024-07-25T00:06:21.010000"],["2024-07-25T00:06:22.010000"],["2024-07-25T00:06:23.010000"],["2024-07-25T00:06:24.010000"],["2024-07-25T00:06:25.010000"],["2024-07-25T00:06:26.010000"],["2024-07-25T00:06:27.010000"],["2024-07-25T00:06:28.010000"],["2024-07-25T00:06:29.010000"],["2024-07-25T00:06:30.010000"],["2024-07-25T00:06:31.010000"],["2024-07-25T00:06:32.010000"],["2024-07-25T00:06:33.010000"],["2024-07-25T00:06:34.010000"],["2024-07-25T00:06:35.010000"],["2024-07-25T00:06:36.010000"],["2024-07-25T00:06:37.010000"],["2024-07-25T00:06:38.010000"],["2024-07-25T00:06:39.010000"],["2024-07-25T00:06:40.010000"],["2024-07-25T00:06:41.010000"],["2024-07-25T00:06:42.010000"],["2024-07-25T00:06:43.010000"],["2024-07-25T00:06:44.010000"],["2024-07-25T00:06:45.010000"],["2024-07-25T00:06:46.010000"],["2024-07-25T00:06:47.010000"],["2024-07-25T00:06:48.010000"],["2024-07-25T00:06:49.010000"],["2024-07-25T00:06:50.010000"],["2024-07-25T00:06:51.010000"],["2024-07-25T00:06:52.010000"],["2024-07-25T00:06:53.010000"],["2024-07-25T00:06:54.010000"],["2024-07-25T00:06:55.010000"],["2024-07-25T00:06:56.010000"],["2024-07-25T00:06:57.010000"],["2024-07-25T00:06:58.010000"],["2024-07-25T00:06:59.010000"],["2024-07-25T00:07:00.010000"],["2024-07-25T00:07:01.010000"],["2024-07-25T00:07:02.010000"],["2024-07-25T00:07:03.010000"],["2024-07-25T00:07:04.010000"],["2024-07-25T00:07:05.010000"],["2024-07-25T00:07:06.010000"],["2024-07-25T00:07:07.010000"],["2024-07-25T00:07:08.010000"],["2024-07-25T00:07:09.010000"],["2024-07-25T00:07:10.010000"],["2024-07-25T00:07:11.010000"],["2024-07-25T00:07:12.010000"],["2024-07-25T00:07:13.010000"],["2024-07-25T00:07:14.010000"],["2024-07-25T00:07:15.010000"],["2024-07-25T00:07:16.010000"],["2024-07-25T00:07:17.010000"],["2024-07-25T00:07:18.010000"],["2024-07-25T00:07:19.010000"],["2024-07-25T00:07:20.010000"],["2024-07-25T00:07:21.010000"],["2024-07-25T00:07:22.010000"],["2024-07-25T00:07:23.010000"],["2024-07-25T00:07:24.010000"],["2024-07-25T00:07:25.010000"],["2024-07-25T00:07:26.010000"],["2024-07-25T00:07:27.010000"],["2024-07-25T00:07:28.010000"],["2024-07-25T00:07:29.010000"],["2024-07-25T00:07:30.010000"],["2024-07-25T00:07:31.010000"],["2024-07-25T00:07:32.010000"],["2024-07-25T00:07:33.010000"],["2024-07-25T00:07:34.010000"],["2024-07-25T00:07:35.010000"],["2024-07-25T00:07:36.010000"],["2024-07-25T00:07:37.010000"],["2024-07-25T00:07:38.010000"],["2024-07-25T00:07:39.010000"],["2024-07-25T00:07:40.010000"],["2024-07-25T00:07:41.010000"],["2024-07-25T00:07:42.010000"],["2024-07-25T00:07:43.010000"],["2024-07-25T00:07:44.010000"],["2024-07-25T00:07:45.010000"],["2024-07-25T00:07:46.010000"],["2024-07-25T00:07:47.010000"],["2024-07-25T00:07:48.010000"],["2024-07-25T00:07:49.010000"],["2024-07-25T00:07:50.010000"],["2024-07-25T00:07:51.010000"],["2024-07-25T00:07:52.010000"],["2024-07-25T00:07:53.010000"],["2024-07-25T00:07:54.010000"],["2024-07-25T00:07:55.010000"],["2024-07-25T00:07:56.010000"],["2024-07-25T00:07:57.010000"],["2024-07-25T00:07:58.010000"],["2024-07-25T00:07:59.010000"],["2024-07-25T00:08:00.010000"],["2024-07-25T00:08:01.010000"],["2024-07-25T00:08:02.010000"],["2024-07-25T00:08:03.010000"],["2024-07-25T00:08:04.010000"],["2024-07-25T00:08:05.010000"],["2024-07-25T00:08:06.010000"],["2024-07-25T00:08:07.010000"],["2024-07-25T00:08:08.010000"],["2024-07-25T00:08:09.010000"],["2024-07-25T00:08:10.010000"],["2024-07-25T00:08:11.010000"],["2024-07-25T00:08:12.010000"],["2024-07-25T00:08:13.010000"],["2024-07-25T00:08:14.010000"],["2024-07-25T00:08:15.010000"],["2024-07-25T00:08:16.010000"],["2024-07-25T00:08:17.010000"],["2024-07-25T00:08:18.010000"],["2024-07-25T00:08:19.010000"],["2024-07-25T00:08:20.010000"],["2024-07-25T00:08:21.010000"],["2024-07-25T00:08:22.010000"],["2024-07-25T00:08:23.010000"],["2024-07-25T00:08:24.010000"],["2024-07-25T00:08:25.010000"],["2024-07-25T00:08:26.010000"],["2024-07-25T00:08:27.010000"],["2024-07-25T00:08:28.010000"],["2024-07-25T00:08:29.010000"],["2024-07-25T00:08:30.010000"],["2024-07-25T00:08:31.010000"],["2024-07-25T00:08:32.010000"],["2024-07-25T00:08:33.010000"],["2024-07-25T00:08:34.010000"],["2024-07-25T00:08:35.010000"],["2024-07-25T00:08:36.010000"],["2024-07-25T00:08:37.010000"],["2024-07-25T00:08:38.010000"],["2024-07-25T00:08:39.010000"],["2024-07-25T00:08:40.010000"],["2024-07-25T00:08:41.010000"],["2024-07-25T00:08:42.010000"],["2024-07-25T00:08:43.010000"],["2024-07-25T00:08:44.010000"],["2024-07-25T00:08:45.010000"],["2024-07-25T00:08:46.010000"],["2024-07-25T00:08:47.010000"],["2024-07-25T00:08:48.010000"],["2024-07-25T00:08:49.010000"],["2024-07-25T00:08:50.010000"],["2024-07-25T00:08:51.010000"],["2024-07-25T00:08:52.010000"],["2024-07-25T00:08:53.010000"],["2024-07-25T00:08:54.010000"],["2024-07-25T00:08:55.010000"],["2024-07-25T00:08:56.010000"],["2024-07-25T00:08:57.010000"],["2024-07-25T00:08:58.010000"],["2024-07-25T00:08:59.010000"],["2024-07-25T00:09:00.010000"],["2024-07-25T00:09:01.010000"],["2024-07-25T00:09:02.010000"],["2024-07-25T00:09:03.010000"],["2024-07-25T00:09:04.010000"],["2024-07-25T00:09:05.010000"],["2024-07-25T00:09:06.010000"],["2024-07-25T00:09:07.010000"],["2024-07-25T00:09:08.010000"],["2024-07-25T00:09:09.010000"],["2024-07-25T00:09:10.010000"],["2024-07-25T00:09:11.010000"],["2024-07-25T00:09:12.010000"],["2024-07-25T00:09:13.010000"],["2024-07-25T00:09:14.010000"],["2024-07-25T00:09:15.010000"],["2024-07-25T00:09:16.010000"],["2024-07-25T00:09:17.010000"],["2024-07-25T00:09:18.010000"],["2024-07-25T00:09:19.010000"],["2024-07-25T00:09:20.010000"],["2024-07-25T00:09:21.010000"],["2024-07-25T00:09:22.010000"],["2024-07-25T00:09:23.010000"],["2024-07-25T00:09:24.010000"],["2024-07-25T00:09:25.010000"],["2024-07-25T00:09:26.010000"],["2024-07-25T00:09:27.010000"],["2024-07-25T00:09:28.010000"],["2024-07-25T00:09:29.010000"],["2024-07-25T00:09:30.010000"],["2024-07-25T00:09:31.010000"],["2024-07-25T00:09:32.010000"],["2024-07-25T00:09:33.010000"],["2024-07-25T00:09:34.010000"],["2024-07-25T00:09:35.010000"],["2024-07-25T00:09:36.010000"],["2024-07-25T00:09:37.010000"],["2024-07-25T00:09:38.010000"],["2024-07-25T00:09:39.010000"],["2024-07-25T00:09:40.010000"],["2024-07-25T00:09:41.010000"],["2024-07-25T00:09:42.010000"],["2024-07-25T00:09:43.010000"],["2024-07-25T00:09:44.010000"],["2024-07-25T00:09:45.010000"],["2024-07-25T00:09:46.010000"],["2024-07-25T00:09:47.010000"],["2024-07-25T00:09:48.010000"],["2024-07-25T00:09:49.010000"],["2024-07-25T00:09:50.010000"],["2024-07-25T00:09:51.010000"],["2024-07-25T00:09:52.010000"],["2024-07-25T00:09:53.010000"],["2024-07-25T00:09:54.010000"],["2024-07-25T00:09:55.010000"],["2024-07-25T00:09:56.010000"],["2024-07-25T00:09:57.010000"],["2024-07-25T00:09:58.010000"],["2024-07-25T00:09:59.010000"],["2024-07-25T00:10:00.010000"],["2024-07-25T00:10:01.010000"],["2024-07-25T00:10:02.010000"],["2024-07-25T00:10:03.010000"],["2024-07-25T00:10:04.010000"],["2024-07-25T00:10:05.010000"],["2024-07-25T00:10:06.010000"],["2024-07-25T00:10:07.010000"],["2024-07-25T00:10:08.010000"],["2024-07-25T00:10:09.010000"],["2024-07-25T00:10:10.010000"],["2024-07-25T00:10:11.010000"],["2024-07-25T00:10:12.010000"],["2024-07-25T00:10:13.010000"],["2024-07-25T00:10:14.010000"],["2024-07-25T00:10:15.010000"],["2024-07-25T00:10:16.010000"],["2024-07-25T00:10:17.010000"],["2024-07-25T00:10:18.010000"],["2024-07-25T00:10:19.010000"],["2024-07-25T00:10:20.010000"],["2024-07-25T00:10:21.010000"],["2024-07-25T00:10:22.010000"],["2024-07-25T00:10:23.010000"],["2024-07-25T00:10:24.010000"],["2024-07-25T00:10:25.010000"],["2024-07-25T00:10:26.010000"],["2024-07-25T00:10:27.010000"],["2024-07-25T00:10:28.010000"],["2024-07-25T00:10:29.010000"],["2024-07-25T00:10:30.010000"],["2024-07-25T00:10:31.010000"],["2024-07-25T00:10:32.010000"],["2024-07-25T00:10:33.010000"],["2024-07-25T00:10:34.010000"],["2024-07-25T00:10:35.010000"],["2024-07-25T00:10:36.010000"],["2024-07-25T00:10:37.010000"],["2024-07-25T00:10:38.010000"],["2024-07-25T00:10:39.010000"],["2024-07-25T00:10:40.010000"],["2024-07-25T00:10:41.010000"],["2024-07-25T00:10:42.010000"],["2024-07-25T00:10:43.010000"],["2024-07-25T00:10:44.010000"],["2024-07-25T00:10:45.010000"],["2024-07-25T00:10:46.010000"],["2024-07-25T00:10:47.010000"],["2024-07-25T00:10:48.010000"],["2024-07-25T00:10:49.010000"],["2024-07-25T00:10:50.010000"],["2024-07-25T00:10:51.010000"],["2024-07-25T00:10:52.010000"],["2024-07-25T00:10:53.010000"],["2024-07-25T00:10:54.010000"],["2024-07-25T00:10:55.010000"],["2024-07-25T00:10:56.010000"],["2024-07-25T00:10:57.010000"],["2024-07-25T00:10:58.010000"],["2024-07-25T00:10:59.010000"],["2024-07-25T00:11:00.010000"],["2024-07-25T00:11:01.010000"],["2024-07-25T00:11:02.010000"],["2024-07-25T00:11:03.010000"],["2024-07-25T00:11:04.010000"],["2024-07-25T00:11:05.010000"],["2024-07-25T00:11:06.010000"],["2024-07-25T00:11:07.010000"],["2024-07-25T00:11:08.010000"],["2024-07-25T00:11:09.010000"],["2024-07-25T00:11:10.010000"],["2024-07-25T00:11:11.010000"],["2024-07-25T00:11:12.010000"],["2024-07-25T00:11:13.010000"],["2024-07-25T00:11:14.010000"],["2024-07-25T00:11:15.010000"],["2024-07-25T00:11:16.010000"],["2024-07-25T00:11:17.010000"],["2024-07-25T00:11:18.010000"],["2024-07-25T00:11:19.010000"],["2024-07-25T00:11:20.010000"],["2024-07-25T00:11:21.010000"],["2024-07-25T00:11:22.010000"],["2024-07-25T00:11:23.010000"],["2024-07-25T00:11:24.010000"],["2024-07-25T00:11:25.010000"],["2024-07-25T00:11:26.010000"],["2024-07-25T00:11:27.010000"],["2024-07-25T00:11:28.010000"],["2024-07-25T00:11:29.010000"],["2024-07-25T00:11:30.010000"],["2024-07-25T00:11:31.010000"],["2024-07-25T00:11:32.010000"],["2024-07-25T00:11:33.010000"],["2024-07-25T00:11:34.010000"],["2024-07-25T00:11:35.010000"],["2024-07-25T00:11:36.010000"],["2024-07-25T00:11:37.010000"],["2024-07-25T00:11:38.010000"],["2024-07-25T00:11:39.010000"],["2024-07-25T00:11:40.010000"],["2024-07-25T00:11:41.010000"],["2024-07-25T00:11:42.010000"],["2024-07-25T00:11:43.010000"],["2024-07-25T00:11:44.010000"],["2024-07-25T00:11:45.010000"],["2024-07-25T00:11:46.010000"],["2024-07-25T00:11:47.010000"],["2024-07-25T00:11:48.010000"],["2024-07-25T00:11:49.010000"],["2024-07-25T00:11:50.010000"],["2024-07-25T00:11:51.010000"],["2024-07-25T00:11:52.010000"],["2024-07-25T00:11:53.010000"],["2024-07-25T00:11:54.010000"],["2024-07-25T00:11:55.010000"],["2024-07-25T00:11:56.010000"],["2024-07-25T00:11:57.010000"],["2024-07-25T00:11:58.010000"],["2024-07-25T00:11:59.010000"],["2024-07-25T00:12:00.010000"],["2024-07-25T00:12:01.010000"],["2024-07-25T00:12:02.010000"],["2024-07-25T00:12:03.010000"],["2024-07-25T00:12:04.010000"],["2024-07-25T00:12:05.010000"],["2024-07-25T00:12:06.010000"],["2024-07-25T00:12:07.010000"],["2024-07-25T00:12:08.010000"],["2024-07-25T00:12:09.010000"],["2024-07-25T00:12:10.010000"],["2024-07-25T00:12:11.010000"],["2024-07-25T00:12:12.010000"],["2024-07-25T00:12:13.010000"],["2024-07-25T00:12:14.010000"],["2024-07-25T00:12:15.010000"],["2024-07-25T00:12:16.010000"],["2024-07-25T00:12:17.010000"],["2024-07-25T00:12:18.010000"],["2024-07-25T00:12:19.010000"],["2024-07-25T00:12:20.010000"],["2024-07-25T00:12:21.010000"],["2024-07-25T00:12:22.010000"],["2024-07-25T00:12:23.010000"],["2024-07-25T00:12:24.010000"],["2024-07-25T00:12:25.010000"],["2024-07-25T00:12:26.010000"],["2024-07-25T00:12:27.010000"],["2024-07-25T00:12:28.010000"],["2024-07-25T00:12:29.010000"],["2024-07-25T00:12:30.010000"],["2024-07-25T00:12:31.010000"],["2024-07-25T00:12:32.010000"],["2024-07-25T00:12:33.010000"],["2024-07-25T00:12:34.010000"],["2024-07-25T00:12:35.010000"],["2024-07-25T00:12:36.010000"],["2024-07-25T00:12:37.010000"],["2024-07-25T00:12:38.010000"],["2024-07-25T00:12:39.010000"],["2024-07-25T00:12:40.010000"],["2024-07-25T00:12:41.010000"],["2024-07-25T00:12:42.010000"],["2024-07-25T00:12:43.010000"],["2024-07-25T00:12:44.010000"],["2024-07-25T00:12:45.010000"],["2024-07-25T00:12:46.010000"],["2024-07-25T00:12:47.010000"],["2024-07-25T00:12:48.010000"],["2024-07-25T00:12:49.010000"],["2024-07-25T00:12:50.010000"],["2024-07-25T00:12:51.010000"],["2024-07-25T00:12:52.010000"],["2024-07-25T00:12:53.010000"],["2024-07-25T00:12:54.010000"],["2024-07-25T00:12:55.010000"],["2024-07-25T00:12:56.010000"],["2024-07-25T00:12:57.010000"],["2024-07-25T00:12:58.010000"],["2024-07-25T00:12:59.010000"],["2024-07-25T00:13:00.010000"],["2024-07-25T00:13:01.010000"],["2024-07-25T00:13:02.010000"],["2024-07-25T00:13:03.010000"],["2024-07-25T00:13:04.010000"],["2024-07-25T00:13:05.010000"],["2024-07-25T00:13:06.010000"],["2024-07-25T00:13:07.010000"],["2024-07-25T00:13:08.010000"],["2024-07-25T00:13:09.010000"],["2024-07-25T00:13:10.010000"],["2024-07-25T00:13:11.010000"],["2024-07-25T00:13:12.010000"],["2024-07-25T00:13:13.010000"],["2024-07-25T00:13:14.010000"],["2024-07-25T00:13:15.010000"],["2024-07-25T00:13:16.010000"],["2024-07-25T00:13:17.010000"],["2024-07-25T00:13:18.010000"],["2024-07-25T00:13:19.010000"],["2024-07-25T00:13:20.010000"],["2024-07-25T00:13:21.010000"],["2024-07-25T00:13:22.010000"],["2024-07-25T00:13:23.010000"],["2024-07-25T00:13:24.010000"],["2024-07-25T00:13:25.010000"],["2024-07-25T00:13:26.010000"],["2024-07-25T00:13:27.010000"],["2024-07-25T00:13:28.010000"],["2024-07-25T00:13:29.010000"],["2024-07-25T00:13:30.010000"],["2024-07-25T00:13:31.010000"],["2024-07-25T00:13:32.010000"],["2024-07-25T00:13:33.010000"],["2024-07-25T00:13:34.010000"],["2024-07-25T00:13:35.010000"],["2024-07-25T00:13:36.010000"],["2024-07-25T00:13:37.010000"],["2024-07-25T00:13:38.010000"],["2024-07-25T00:13:39.010000"],["2024-07-25T00:13:40.010000"],["2024-07-25T00:13:41.010000"],["2024-07-25T00:13:42.010000"],["2024-07-25T00:13:43.010000"],["2024-07-25T00:13:44.010000"],["2024-07-25T00:13:45.010000"],["2024-07-25T00:13:46.010000"],["2024-07-25T00:13:47.010000"],["2024-07-25T00:13:48.010000"],["2024-07-25T00:13:49.010000"],["2024-07-25T00:13:50.010000"],["2024-07-25T00:13:51.010000"],["2024-07-25T00:13:52.010000"],["2024-07-25T00:13:53.010000"],["2024-07-25T00:13:54.010000"],["2024-07-25T00:13:55.010000"],["2024-07-25T00:13:56.010000"],["2024-07-25T00:13:57.010000"],["2024-07-25T00:13:58.010000"],["2024-07-25T00:13:59.010000"],["2024-07-25T00:14:00.010000"],["2024-07-25T00:14:01.010000"],["2024-07-25T00:14:02.010000"],["2024-07-25T00:14:03.010000"],["2024-07-25T00:14:04.010000"],["2024-07-25T00:14:05.010000"],["2024-07-25T00:14:06.010000"],["2024-07-25T00:14:07.010000"],["2024-07-25T00:14:08.010000"],["2024-07-25T00:14:09.010000"],["2024-07-25T00:14:10.010000"],["2024-07-25T00:14:11.010000"],["2024-07-25T00:14:12.010000"],["2024-07-25T00:14:13.010000"],["2024-07-25T00:14:14.010000"],["2024-07-25T00:14:15.010000"],["2024-07-25T00:14:16.010000"],["2024-07-25T00:14:17.010000"],["2024-07-25T00:14:18.010000"],["2024-07-25T00:14:19.010000"],["2024-07-25T00:14:20.010000"],["2024-07-25T00:14:21.010000"],["2024-07-25T00:14:22.010000"],["2024-07-25T00:14:23.010000"],["2024-07-25T00:14:24.010000"],["2024-07-25T00:14:25.010000"],["2024-07-25T00:14:26.010000"],["2024-07-25T00:14:27.010000"],["2024-07-25T00:14:28.010000"],["2024-07-25T00:14:29.010000"],["2024-07-25T00:14:30.010000"],["2024-07-25T00:14:31.010000"],["2024-07-25T00:14:32.010000"],["2024-07-25T00:14:33.010000"],["2024-07-25T00:14:34.010000"],["2024-07-25T00:14:35.010000"],["2024-07-25T00:14:36.010000"],["2024-07-25T00:14:37.010000"],["2024-07-25T00:14:38.010000"],["2024-07-25T00:14:39.010000"],["2024-07-25T00:14:40.010000"],["2024-07-25T00:14:41.010000"],["2024-07-25T00:14:42.010000"],["2024-07-25T00:14:43.010000"],["2024-07-25T00:14:44.010000"],["2024-07-25T00:14:45.010000"],["2024-07-25T00:14:46.010000"],["2024-07-25T00:14:47.010000"],["2024-07-25T00:14:48.010000"],["2024-07-25T00:14:49.010000"],["2024-07-25T00:14:50.010000"],["2024-07-25T00:14:51.010000"],["2024-07-25T00:14:52.010000"],["2024-07-25T00:14:53.010000"],["2024-07-25T00:14:54.010000"],["2024-07-25T00:14:55.010000"],["2024-07-25T00:14:56.010000"],["2024-07-25T00:14:57.010000"],["2024-07-25T00:14:58.010000"],["2024-07-25T00:14:59.010000"],["2024-07-25T00:15:00.010000"],["2024-07-25T00:15:01.010000"],["2024-07-25T00:15:02.010000"],["2024-07-25T00:15:03.010000"],["2024-07-25T00:15:04.010000"],["2024-07-25T00:15:05.010000"],["2024-07-25T00:15:06.010000"],["2024-07-25T00:15:07.010000"],["2024-07-25T00:15:08.010000"],["2024-07-25T00:15:09.010000"],["2024-07-25T00:15:10.010000"],["2024-07-25T00:15:11.010000"],["2024-07-25T00:15:12.010000"],["2024-07-25T00:15:13.010000"],["2024-07-25T00:15:14.010000"],["2024-07-25T00:15:15.010000"],["2024-07-25T00:15:16.010000"],["2024-07-25T00:15:17.010000"],["2024-07-25T00:15:18.010000"],["2024-07-25T00:15:19.010000"],["2024-07-25T00:15:20.010000"],["2024-07-25T00:15:21.010000"],["2024-07-25T00:15:22.010000"],["2024-07-25T00:15:23.010000"],["2024-07-25T00:15:24.010000"],["2024-07-25T00:15:25.010000"],["2024-07-25T00:15:26.010000"],["2024-07-25T00:15:27.010000"],["2024-07-25T00:15:28.010000"],["2024-07-25T00:15:29.010000"],["2024-07-25T00:15:30.010000"],["2024-07-25T00:15:31.010000"],["2024-07-25T00:15:32.010000"],["2024-07-25T00:15:33.010000"],["2024-07-25T00:15:34.010000"],["2024-07-25T00:15:35.010000"],["2024-07-25T00:15:36.010000"],["2024-07-25T00:15:37.010000"],["2024-07-25T00:15:38.010000"],["2024-07-25T00:15:39.010000"],["2024-07-25T00:15:40.010000"],["2024-07-25T00:15:41.010000"],["2024-07-25T00:15:42.010000"],["2024-07-25T00:15:43.010000"],["2024-07-25T00:15:44.010000"],["2024-07-25T00:15:45.010000"],["2024-07-25T00:15:46.010000"],["2024-07-25T00:15:47.010000"],["2024-07-25T00:15:48.010000"],["2024-07-25T00:15:49.010000"],["2024-07-25T00:15:50.010000"],["2024-07-25T00:15:51.010000"],["2024-07-25T00:15:52.010000"],["2024-07-25T00:15:53.010000"],["2024-07-25T00:15:54.010000"],["2024-07-25T00:15:55.010000"],["2024-07-25T00:15:56.010000"],["2024-07-25T00:15:57.010000"],["2024-07-25T00:15:58.010000"],["2024-07-25T00:15:59.010000"],["2024-07-25T00:16:00.010000"],["2024-07-25T00:16:01.010000"],["2024-07-25T00:16:02.010000"],["2024-07-25T00:16:03.010000"],["2024-07-25T00:16:04.010000"],["2024-07-25T00:16:05.010000"],["2024-07-25T00:16:06.010000"],["2024-07-25T00:16:07.010000"],["2024-07-25T00:16:08.010000"],["2024-07-25T00:16:09.010000"],["2024-07-25T00:16:10.010000"],["2024-07-25T00:16:11.010000"],["2024-07-25T00:16:12.010000"],["2024-07-25T00:16:13.010000"],["2024-07-25T00:16:14.010000"],["2024-07-25T00:16:15.010000"],["2024-07-25T00:16:16.010000"],["2024-07-25T00:16:17.010000"],["2024-07-25T00:16:18.010000"],["2024-07-25T00:16:19.010000"],["2024-07-25T00:16:20.010000"],["2024-07-25T00:16:21.010000"],["2024-07-25T00:16:22.010000"],["2024-07-25T00:16:23.010000"],["2024-07-25T00:16:24.010000"],["2024-07-25T00:16:25.010000"],["2024-07-25T00:16:26.010000"],["2024-07-25T00:16:27.010000"],["2024-07-25T00:16:28.010000"],["2024-07-25T00:16:29.010000"],["2024-07-25T00:16:30.010000"],["2024-07-25T00:16:31.010000"],["2024-07-25T00:16:32.010000"],["2024-07-25T00:16:33.010000"],["2024-07-25T00:16:34.010000"],["2024-07-25T00:16:35.010000"],["2024-07-25T00:16:36.010000"],["2024-07-25T00:16:37.010000"],["2024-07-25T00:16:38.010000"],["2024-07-25T00:16:39.010000"],["2024-07-25T00:16:40.010000"],["2024-07-25T00:16:41.010000"],["2024-07-25T00:16:42.010000"],["2024-07-25T00:16:43.010000"],["2024-07-25T00:16:44.010000"],["2024-07-25T00:16:45.010000"],["2024-07-25T00:16:46.010000"],["2024-07-25T00:16:47.010000"],["2024-07-25T00:16:48.010000"],["2024-07-25T00:16:49.010000"],["2024-07-25T00:16:50.010000"],["2024-07-25T00:16:51.010000"],["2024-07-25T00:16:52.010000"],["2024-07-25T00:16:53.010000"],["2024-07-25T00:16:54.010000"],["2024-07-25T00:16:55.010000"],["2024-07-25T00:16:56.010000"],["2024-07-25T00:16:57.010000"],["2024-07-25T00:16:58.010000"],["2024-07-25T00:16:59.010000"],["2024-07-25T00:17:00.010000"],["2024-07-25T00:17:01.010000"],["2024-07-25T00:17:02.010000"],["2024-07-25T00:17:03.010000"],["2024-07-25T00:17:04.010000"],["2024-07-25T00:17:05.010000"],["2024-07-25T00:17:06.010000"],["2024-07-25T00:17:07.010000"],["2024-07-25T00:17:08.010000"],["2024-07-25T00:17:09.010000"],["2024-07-25T00:17:10.010000"],["2024-07-25T00:17:11.010000"],["2024-07-25T00:17:12.010000"],["2024-07-25T00:17:13.010000"],["2024-07-25T00:17:14.010000"],["2024-07-25T00:17:15.010000"],["2024-07-25T00:17:16.010000"],["2024-07-25T00:17:17.010000"],["2024-07-25T00:17:18.010000"],["2024-07-25T00:17:19.010000"],["2024-07-25T00:17:20.010000"],["2024-07-25T00:17:21.010000"],["2024-07-25T00:17:22.010000"],["2024-07-25T00:17:23.010000"],["2024-07-25T00:17:24.010000"],["2024-07-25T00:17:25.010000"],["2024-07-25T00:17:26.010000"],["2024-07-25T00:17:27.010000"],["2024-07-25T00:17:28.010000"],["2024-07-25T00:17:29.010000"],["2024-07-25T00:17:30.010000"],["2024-07-25T00:17:31.010000"],["2024-07-25T00:17:32.010000"],["2024-07-25T00:17:33.010000"],["2024-07-25T00:17:34.010000"],["2024-07-25T00:17:35.010000"],["2024-07-25T00:17:36.010000"],["2024-07-25T00:17:37.010000"],["2024-07-25T00:17:38.010000"],["2024-07-25T00:17:39.010000"],["2024-07-25T00:17:40.010000"],["2024-07-25T00:17:41.010000"],["2024-07-25T00:17:42.010000"],["2024-07-25T00:17:43.010000"],["2024-07-25T00:17:44.010000"],["2024-07-25T00:17:45.010000"],["2024-07-25T00:17:46.010000"],["2024-07-25T00:17:47.010000"],["2024-07-25T00:17:48.010000"],["2024-07-25T00:17:49.010000"],["2024-07-25T00:17:50.010000"],["2024-07-25T00:17:51.010000"],["2024-07-25T00:17:52.010000"],["2024-07-25T00:17:53.010000"],["2024-07-25T00:17:54.010000"],["2024-07-25T00:17:55.010000"],["2024-07-25T00:17:56.010000"],["2024-07-25T00:17:57.010000"],["2024-07-25T00:17:58.010000"],["2024-07-25T00:17:59.010000"],["2024-07-25T00:18:00.010000"],["2024-07-25T00:18:01.010000"],["2024-07-25T00:18:02.010000"],["2024-07-25T00:18:03.010000"],["2024-07-25T00:18:04.010000"],["2024-07-25T00:18:05.010000"],["2024-07-25T00:18:06.010000"],["2024-07-25T00:18:07.010000"],["2024-07-25T00:18:08.010000"],["2024-07-25T00:18:09.010000"],["2024-07-25T00:18:10.010000"],["2024-07-25T00:18:11.010000"],["2024-07-25T00:18:12.010000"],["2024-07-25T00:18:13.010000"],["2024-07-25T00:18:14.010000"],["2024-07-25T00:18:15.010000"],["2024-07-25T00:18:16.010000"],["2024-07-25T00:18:17.010000"],["2024-07-25T00:18:18.010000"],["2024-07-25T00:18:19.010000"],["2024-07-25T00:18:20.010000"],["2024-07-25T00:18:21.010000"],["2024-07-25T00:18:22.010000"],["2024-07-25T00:18:23.010000"],["2024-07-25T00:18:24.010000"],["2024-07-25T00:18:25.010000"],["2024-07-25T00:18:26.010000"],["2024-07-25T00:18:27.010000"],["2024-07-25T00:18:28.010000"],["2024-07-25T00:18:29.010000"],["2024-07-25T00:18:30.010000"],["2024-07-25T00:18:31.010000"],["2024-07-25T00:18:32.010000"],["2024-07-25T00:18:33.010000"],["2024-07-25T00:18:34.010000"],["2024-07-25T00:18:35.010000"],["2024-07-25T00:18:36.010000"],["2024-07-25T00:18:37.010000"],["2024-07-25T00:18:38.010000"],["2024-07-25T00:18:39.010000"],["2024-07-25T00:18:40.010000"],["2024-07-25T00:18:41.010000"],["2024-07-25T00:18:42.010000"],["2024-07-25T00:18:43.010000"],["2024-07-25T00:18:44.010000"],["2024-07-25T00:18:45.010000"],["2024-07-25T00:18:46.010000"],["2024-07-25T00:18:47.010000"],["2024-07-25T00:18:48.010000"],["2024-07-25T00:18:49.010000"],["2024-07-25T00:18:50.010000"],["2024-07-25T00:18:51.010000"],["2024-07-25T00:18:52.010000"],["2024-07-25T00:18:53.010000"],["2024-07-25T00:18:54.010000"],["2024-07-25T00:18:55.010000"],["2024-07-25T00:18:56.010000"],["2024-07-25T00:18:57.010000"],["2024-07-25T00:18:58.010000"],["2024-07-25T00:18:59.010000"],["2024-07-25T00:19:00.010000"],["2024-07-25T00:19:01.010000"],["2024-07-25T00:19:02.010000"],["2024-07-25T00:19:03.010000"],["2024-07-25T00:19:04.010000"],["2024-07-25T00:19:05.010000"],["2024-07-25T00:19:06.010000"],["2024-07-25T00:19:07.010000"],["2024-07-25T00:19:08.010000"],["2024-07-25T00:19:09.010000"],["2024-07-25T00:19:10.010000"],["2024-07-25T00:19:11.010000"],["2024-07-25T00:19:12.010000"],["2024-07-25T00:19:13.010000"],["2024-07-25T00:19:14.010000"],["2024-07-25T00:19:15.010000"],["2024-07-25T00:19:16.010000"],["2024-07-25T00:19:17.010000"],["2024-07-25T00:19:18.010000"],["2024-07-25T00:19:19.010000"],["2024-07-25T00:19:20.010000"],["2024-07-25T00:19:21.010000"],["2024-07-25T00:19:22.010000"],["2024-07-25T00:19:23.010000"],["2024-07-25T00:19:24.010000"],["2024-07-25T00:19:25.010000"],["2024-07-25T00:19:26.010000"],["2024-07-25T00:19:27.010000"],["2024-07-25T00:19:28.010000"],["2024-07-25T00:19:29.010000"],["2024-07-25T00:19:30.010000"],["2024-07-25T00:19:31.010000"],["2024-07-25T00:19:32.010000"],["2024-07-25T00:19:33.010000"],["2024-07-25T00:19:34.010000"],["2024-07-25T00:19:35.010000"],["2024-07-25T00:19:36.010000"],["2024-07-25T00:19:37.010000"],["2024-07-25T00:19:38.010000"],["2024-07-25T00:19:39.010000"],["2024-07-25T00:19:40.010000"],["2024-07-25T00:19:41.010000"],["2024-07-25T00:19:42.010000"],["2024-07-25T00:19:43.010000"],["2024-07-25T00:19:44.010000"],["2024-07-25T00:19:45.010000"],["2024-07-25T00:19:46.010000"],["2024-07-25T00:19:47.010000"],["2024-07-25T00:19:48.010000"],["2024-07-25T00:19:49.010000"],["2024-07-25T00:19:50.010000"],["2024-07-25T00:19:51.010000"],["2024-07-25T00:19:52.010000"],["2024-07-25T00:19:53.010000"],["2024-07-25T00:19:54.010000"],["2024-07-25T00:19:55.010000"],["2024-07-25T00:19:56.010000"],["2024-07-25T00:19:57.010000"],["2024-07-25T00:19:58.010000"],["2024-07-25T00:19:59.010000"],["2024-07-25T00:20:00.010000"],["2024-07-25T00:20:01.010000"],["2024-07-25T00:20:02.010000"],["2024-07-25T00:20:03.010000"],["2024-07-25T00:20:04.010000"],["2024-07-25T00:20:05.010000"],["2024-07-25T00:20:06.010000"],["2024-07-25T00:20:07.010000"],["2024-07-25T00:20:08.010000"],["2024-07-25T00:20:09.010000"],["2024-07-25T00:20:10.010000"],["2024-07-25T00:20:11.010000"],["2024-07-25T00:20:12.010000"],["2024-07-25T00:20:13.010000"],["2024-07-25T00:20:14.010000"],["2024-07-25T00:20:15.010000"],["2024-07-25T00:20:16.010000"],["2024-07-25T00:20:17.010000"],["2024-07-25T00:20:18.010000"],["2024-07-25T00:20:19.010000"],["2024-07-25T00:20:20.010000"],["2024-07-25T00:20:21.010000"],["2024-07-25T00:20:22.010000"],["2024-07-25T00:20:23.010000"],["2024-07-25T00:20:24.010000"],["2024-07-25T00:20:25.010000"],["2024-07-25T00:20:26.010000"],["2024-07-25T00:20:27.010000"],["2024-07-25T00:20:28.010000"],["2024-07-25T00:20:29.010000"],["2024-07-25T00:20:30.010000"],["2024-07-25T00:20:31.010000"],["2024-07-25T00:20:32.010000"],["2024-07-25T00:20:33.010000"],["2024-07-25T00:20:34.010000"],["2024-07-25T00:20:35.010000"],["2024-07-25T00:20:36.010000"],["2024-07-25T00:20:37.010000"],["2024-07-25T00:20:38.010000"],["2024-07-25T00:20:39.010000"],["2024-07-25T00:20:40.010000"],["2024-07-25T00:20:41.010000"],["2024-07-25T00:20:42.010000"],["2024-07-25T00:20:43.010000"],["2024-07-25T00:20:44.010000"],["2024-07-25T00:20:45.010000"],["2024-07-25T00:20:46.010000"],["2024-07-25T00:20:47.010000"],["2024-07-25T00:20:48.010000"],["2024-07-25T00:20:49.010000"],["2024-07-25T00:20:50.010000"],["2024-07-25T00:20:51.010000"],["2024-07-25T00:20:52.010000"],["2024-07-25T00:20:53.010000"],["2024-07-25T00:20:54.010000"],["2024-07-25T00:20:55.010000"],["2024-07-25T00:20:56.010000"],["2024-07-25T00:20:57.010000"],["2024-07-25T00:20:58.010000"],["2024-07-25T00:20:59.010000"],["2024-07-25T00:21:00.010000"],["2024-07-25T00:21:01.010000"],["2024-07-25T00:21:02.010000"],["2024-07-25T00:21:03.010000"],["2024-07-25T00:21:04.010000"],["2024-07-25T00:21:05.010000"],["2024-07-25T00:21:06.010000"],["2024-07-25T00:21:07.010000"],["2024-07-25T00:21:08.010000"],["2024-07-25T00:21:09.010000"],["2024-07-25T00:21:10.010000"],["2024-07-25T00:21:11.010000"],["2024-07-25T00:21:12.010000"],["2024-07-25T00:21:13.010000"],["2024-07-25T00:21:14.010000"],["2024-07-25T00:21:15.010000"],["2024-07-25T00:21:16.010000"],["2024-07-25T00:21:17.010000"],["2024-07-25T00:21:18.010000"],["2024-07-25T00:21:19.010000"],["2024-07-25T00:21:20.010000"],["2024-07-25T00:21:21.010000"],["2024-07-25T00:21:22.010000"],["2024-07-25T00:21:23.010000"],["2024-07-25T00:21:24.010000"],["2024-07-25T00:21:25.010000"],["2024-07-25T00:21:26.010000"],["2024-07-25T00:21:27.010000"],["2024-07-25T00:21:28.010000"],["2024-07-25T00:21:29.010000"],["2024-07-25T00:21:30.010000"],["2024-07-25T00:21:31.010000"],["2024-07-25T00:21:32.010000"],["2024-07-25T00:21:33.010000"],["2024-07-25T00:21:34.010000"],["2024-07-25T00:21:35.010000"],["2024-07-25T00:21:36.010000"],["2024-07-25T00:21:37.010000"],["2024-07-25T00:21:38.010000"],["2024-07-25T00:21:39.010000"],["2024-07-25T00:21:40.010000"],["2024-07-25T00:21:41.010000"],["2024-07-25T00:21:42.010000"],["2024-07-25T00:21:43.010000"],["2024-07-25T00:21:44.010000"],["2024-07-25T00:21:45.010000"],["2024-07-25T00:21:46.010000"],["2024-07-25T00:21:47.010000"],["2024-07-25T00:21:48.010000"],["2024-07-25T00:21:49.010000"],["2024-07-25T00:21:50.010000"],["2024-07-25T00:21:51.010000"],["2024-07-25T00:21:52.010000"],["2024-07-25T00:21:53.010000"],["2024-07-25T00:21:54.010000"],["2024-07-25T00:21:55.010000"],["2024-07-25T00:21:56.010000"],["2024-07-25T00:21:57.010000"],["2024-07-25T00:21:58.010000"],["2024-07-25T00:21:59.010000"],["2024-07-25T00:22:00.010000"],["2024-07-25T00:22:01.010000"],["2024-07-25T00:22:02.010000"],["2024-07-25T00:22:03.010000"],["2024-07-25T00:22:04.010000"],["2024-07-25T00:22:05.010000"],["2024-07-25T00:22:06.010000"],["2024-07-25T00:22:07.010000"],["2024-07-25T00:22:08.010000"],["2024-07-25T00:22:09.010000"],["2024-07-25T00:22:10.010000"],["2024-07-25T00:22:11.010000"],["2024-07-25T00:22:12.010000"],["2024-07-25T00:22:13.010000"],["2024-07-25T00:22:14.010000"],["2024-07-25T00:22:15.010000"],["2024-07-25T00:22:16.010000"],["2024-07-25T00:22:17.010000"],["2024-07-25T00:22:18.010000"],["2024-07-25T00:22:19.010000"],["2024-07-25T00:22:20.010000"],["2024-07-25T00:22:21.010000"],["2024-07-25T00:22:22.010000"],["2024-07-25T00:22:23.010000"],["2024-07-25T00:22:24.010000"],["2024-07-25T00:22:25.010000"],["2024-07-25T00:22:26.010000"],["2024-07-25T00:22:27.010000"],["2024-07-25T00:22:28.010000"],["2024-07-25T00:22:29.010000"],["2024-07-25T00:22:30.010000"],["2024-07-25T00:22:31.010000"],["2024-07-25T00:22:32.010000"],["2024-07-25T00:22:33.010000"],["2024-07-25T00:22:34.010000"],["2024-07-25T00:22:35.010000"],["2024-07-25T00:22:36.010000"],["2024-07-25T00:22:37.010000"],["2024-07-25T00:22:38.010000"],["2024-07-25T00:22:39.010000"],["2024-07-25T00:22:40.010000"],["2024-07-25T00:22:41.010000"],["2024-07-25T00:22:42.010000"],["2024-07-25T00:22:43.010000"],["2024-07-25T00:22:44.010000"],["2024-07-25T00:22:45.010000"],["2024-07-25T00:22:46.010000"],["2024-07-25T00:22:47.010000"],["2024-07-25T00:22:48.010000"],["2024-07-25T00:22:49.010000"],["2024-07-25T00:22:50.010000"],["2024-07-25T00:22:51.010000"],["2024-07-25T00:22:52.010000"],["2024-07-25T00:22:53.010000"],["2024-07-25T00:22:54.010000"],["2024-07-25T00:22:55.010000"],["2024-07-25T00:22:56.010000"],["2024-07-25T00:22:57.010000"],["2024-07-25T00:22:58.010000"],["2024-07-25T00:22:59.010000"],["2024-07-25T00:23:00.010000"],["2024-07-25T00:23:01.010000"],["2024-07-25T00:23:02.010000"],["2024-07-25T00:23:03.010000"],["2024-07-25T00:23:04.010000"],["2024-07-25T00:23:05.010000"],["2024-07-25T00:23:06.010000"],["2024-07-25T00:23:07.010000"],["2024-07-25T00:23:08.010000"],["2024-07-25T00:23:09.010000"],["2024-07-25T00:23:10.010000"],["2024-07-25T00:23:11.010000"],["2024-07-25T00:23:12.010000"],["2024-07-25T00:23:13.010000"],["2024-07-25T00:23:14.010000"],["2024-07-25T00:23:15.010000"],["2024-07-25T00:23:16.010000"],["2024-07-25T00:23:17.010000"],["2024-07-25T00:23:18.010000"],["2024-07-25T00:23:19.010000"],["2024-07-25T00:23:20.010000"],["2024-07-25T00:23:21.010000"],["2024-07-25T00:23:22.010000"],["2024-07-25T00:23:23.010000"],["2024-07-25T00:23:24.010000"],["2024-07-25T00:23:25.010000"],["2024-07-25T00:23:26.010000"],["2024-07-25T00:23:27.010000"],["2024-07-25T00:23:28.010000"],["2024-07-25T00:23:29.010000"],["2024-07-25T00:23:30.010000"],["2024-07-25T00:23:31.010000"],["2024-07-25T00:23:32.010000"],["2024-07-25T00:23:33.010000"],["2024-07-25T00:23:34.010000"],["2024-07-25T00:23:35.010000"],["2024-07-25T00:23:36.010000"],["2024-07-25T00:23:37.010000"],["2024-07-25T00:23:38.010000"],["2024-07-25T00:23:39.010000"],["2024-07-25T00:23:40.010000"],["2024-07-25T00:23:41.010000"],["2024-07-25T00:23:42.010000"],["2024-07-25T00:23:43.010000"],["2024-07-25T00:23:44.010000"],["2024-07-25T00:23:45.010000"],["2024-07-25T00:23:46.010000"],["2024-07-25T00:23:47.010000"],["2024-07-25T00:23:48.010000"],["2024-07-25T00:23:49.010000"],["2024-07-25T00:23:50.010000"],["2024-07-25T00:23:51.010000"],["2024-07-25T00:23:52.010000"],["2024-07-25T00:23:53.010000"],["2024-07-25T00:23:54.010000"],["2024-07-25T00:23:55.010000"],["2024-07-25T00:23:56.010000"],["2024-07-25T00:23:57.010000"],["2024-07-25T00:23:58.010000"],["2024-07-25T00:23:59.010000"],["2024-07-25T00:24:00.010000"],["2024-07-25T00:24:01.010000"],["2024-07-25T00:24:02.010000"],["2024-07-25T00:24:03.010000"],["2024-07-25T00:24:04.010000"],["2024-07-25T00:24:05.010000"],["2024-07-25T00:24:06.010000"],["2024-07-25T00:24:07.010000"],["2024-07-25T00:24:08.010000"],["2024-07-25T00:24:09.010000"],["2024-07-25T00:24:10.010000"],["2024-07-25T00:24:11.010000"],["2024-07-25T00:24:12.010000"],["2024-07-25T00:24:13.010000"],["2024-07-25T00:24:14.010000"],["2024-07-25T00:24:15.010000"],["2024-07-25T00:24:16.010000"],["2024-07-25T00:24:17.010000"],["2024-07-25T00:24:18.010000"],["2024-07-25T00:24:19.010000"],["2024-07-25T00:24:20.010000"],["2024-07-25T00:24:21.010000"],["2024-07-25T00:24:22.010000"],["2024-07-25T00:24:23.010000"],["2024-07-25T00:24:24.010000"],["2024-07-25T00:24:25.010000"],["2024-07-25T00:24:26.010000"],["2024-07-25T00:24:27.010000"],["2024-07-25T00:24:28.010000"],["2024-07-25T00:24:29.010000"],["2024-07-25T00:24:30.010000"],["2024-07-25T00:24:31.010000"],["2024-07-25T00:24:32.010000"],["2024-07-25T00:24:33.010000"],["2024-07-25T00:24:34.010000"],["2024-07-25T00:24:35.010000"],["2024-07-25T00:24:36.010000"],["2024-07-25T00:24:37.010000"],["2024-07-25T00:24:38.010000"],["2024-07-25T00:24:39.010000"],["2024-07-25T00:24:40.010000"],["2024-07-25T00:24:41.010000"],["2024-07-25T00:24:42.010000"],["2024-07-25T00:24:43.010000"],["2024-07-25T00:24:44.010000"],["2024-07-25T00:24:45.010000"],["2024-07-25T00:24:46.010000"],["2024-07-25T00:24:47.010000"],["2024-07-25T00:24:48.010000"],["2024-07-25T00:24:49.010000"],["2024-07-25T00:24:50.010000"],["2024-07-25T00:24:51.010000"],["2024-07-25T00:24:52.010000"],["2024-07-25T00:24:53.010000"],["2024-07-25T00:24:54.010000"],["2024-07-25T00:24:55.010000"],["2024-07-25T00:24:56.010000"],["2024-07-25T00:24:57.010000"],["2024-07-25T00:24:58.010000"],["2024-07-25T00:24:59.010000"],["2024-07-25T00:25:00.010000"],["2024-07-25T00:25:01.010000"],["2024-07-25T00:25:02.010000"],["2024-07-25T00:25:03.010000"],["2024-07-25T00:25:04.010000"],["2024-07-25T00:25:05.010000"],["2024-07-25T00:25:06.010000"],["2024-07-25T00:25:07.010000"],["2024-07-25T00:25:08.010000"],["2024-07-25T00:25:09.010000"],["2024-07-25T00:25:10.010000"],["2024-07-25T00:25:11.010000"],["2024-07-25T00:25:12.010000"],["2024-07-25T00:25:13.010000"],["2024-07-25T00:25:14.010000"],["2024-07-25T00:25:15.010000"],["2024-07-25T00:25:16.010000"],["2024-07-25T00:25:17.010000"],["2024-07-25T00:25:18.010000"],["2024-07-25T00:25:19.010000"],["2024-07-25T00:25:20.010000"],["2024-07-25T00:25:21.010000"],["2024-07-25T00:25:22.010000"],["2024-07-25T00:25:23.010000"],["2024-07-25T00:25:24.010000"],["2024-07-25T00:25:25.010000"],["2024-07-25T00:25:26.010000"],["2024-07-25T00:25:27.010000"],["2024-07-25T00:25:28.010000"],["2024-07-25T00:25:29.010000"],["2024-07-25T00:25:30.010000"],["2024-07-25T00:25:31.010000"],["2024-07-25T00:25:32.010000"],["2024-07-25T00:25:33.010000"],["2024-07-25T00:25:34.010000"],["2024-07-25T00:25:35.010000"],["2024-07-25T00:25:36.010000"],["2024-07-25T00:25:37.010000"],["2024-07-25T00:25:38.010000"],["2024-07-25T00:25:39.010000"],["2024-07-25T00:25:40.010000"],["2024-07-25T00:25:41.010000"],["2024-07-25T00:25:42.010000"],["2024-07-25T00:25:43.010000"],["2024-07-25T00:25:44.010000"],["2024-07-25T00:25:45.010000"],["2024-07-25T00:25:46.010000"],["2024-07-25T00:25:47.010000"],["2024-07-25T00:25:48.010000"],["2024-07-25T00:25:49.010000"],["2024-07-25T00:25:50.010000"],["2024-07-25T00:25:51.010000"],["2024-07-25T00:25:52.010000"],["2024-07-25T00:25:53.010000"],["2024-07-25T00:25:54.010000"],["2024-07-25T00:25:55.010000"],["2024-07-25T00:25:56.010000"],["2024-07-25T00:25:57.010000"],["2024-07-25T00:25:58.010000"],["2024-07-25T00:25:59.010000"],["2024-07-25T00:26:00.010000"],["2024-07-25T00:26:01.010000"],["2024-07-25T00:26:02.010000"],["2024-07-25T00:26:03.010000"],["2024-07-25T00:26:04.010000"],["2024-07-25T00:26:05.010000"],["2024-07-25T00:26:06.010000"],["2024-07-25T00:26:07.010000"],["2024-07-25T00:26:08.010000"],["2024-07-25T00:26:09.010000"],["2024-07-25T00:26:10.010000"],["2024-07-25T00:26:11.010000"],["2024-07-25T00:26:12.010000"],["2024-07-25T00:26:13.010000"],["2024-07-25T00:26:14.010000"],["2024-07-25T00:26:15.010000"],["2024-07-25T00:26:16.010000"],["2024-07-25T00:26:17.010000"],["2024-07-25T00:26:18.010000"],["2024-07-25T00:26:19.010000"],["2024-07-25T00:26:20.010000"],["2024-07-25T00:26:21.010000"],["2024-07-25T00:26:22.010000"],["2024-07-25T00:26:23.010000"],["2024-07-25T00:26:24.010000"],["2024-07-25T00:26:25.010000"],["2024-07-25T00:26:26.010000"],["2024-07-25T00:26:27.010000"],["2024-07-25T00:26:28.010000"],["2024-07-25T00:26:29.010000"],["2024-07-25T00:26:30.010000"],["2024-07-25T00:26:31.010000"],["2024-07-25T00:26:32.010000"],["2024-07-25T00:26:33.010000"],["2024-07-25T00:26:34.010000"],["2024-07-25T00:26:35.010000"],["2024-07-25T00:26:36.010000"],["2024-07-25T00:26:37.010000"],["2024-07-25T00:26:38.010000"],["2024-07-25T00:26:39.010000"],["2024-07-25T00:26:40.010000"],["2024-07-25T00:26:41.010000"],["2024-07-25T00:26:42.010000"],["2024-07-25T00:26:43.010000"],["2024-07-25T00:26:44.010000"],["2024-07-25T00:26:45.010000"],["2024-07-25T00:26:46.010000"],["2024-07-25T00:26:47.010000"],["2024-07-25T00:26:48.010000"],["2024-07-25T00:26:49.010000"],["2024-07-25T00:26:50.010000"],["2024-07-25T00:26:51.010000"],["2024-07-25T00:26:52.010000"],["2024-07-25T00:26:53.010000"],["2024-07-25T00:26:54.010000"],["2024-07-25T00:26:55.010000"],["2024-07-25T00:26:56.010000"],["2024-07-25T00:26:57.010000"],["2024-07-25T00:26:58.010000"],["2024-07-25T00:26:59.010000"],["2024-07-25T00:27:00.010000"],["2024-07-25T00:27:01.010000"],["2024-07-25T00:27:02.010000"],["2024-07-25T00:27:03.010000"],["2024-07-25T00:27:04.010000"],["2024-07-25T00:27:05.010000"],["2024-07-25T00:27:06.010000"],["2024-07-25T00:27:07.010000"],["2024-07-25T00:27:08.010000"],["2024-07-25T00:27:09.010000"],["2024-07-25T00:27:10.010000"],["2024-07-25T00:27:11.010000"],["2024-07-25T00:27:12.010000"],["2024-07-25T00:27:13.010000"],["2024-07-25T00:27:14.010000"],["2024-07-25T00:27:15.010000"],["2024-07-25T00:27:16.010000"],["2024-07-25T00:27:17.010000"],["2024-07-25T00:27:18.010000"],["2024-07-25T00:27:19.010000"],["2024-07-25T00:27:20.010000"],["2024-07-25T00:27:21.010000"],["2024-07-25T00:27:22.010000"],["2024-07-25T00:27:23.010000"],["2024-07-25T00:27:24.010000"],["2024-07-25T00:27:25.010000"],["2024-07-25T00:27:26.010000"],["2024-07-25T00:27:27.010000"],["2024-07-25T00:27:28.010000"],["2024-07-25T00:27:29.010000"],["2024-07-25T00:27:30.010000"],["2024-07-25T00:27:31.010000"],["2024-07-25T00:27:32.010000"],["2024-07-25T00:27:33.010000"],["2024-07-25T00:27:34.010000"],["2024-07-25T00:27:35.010000"],["2024-07-25T00:27:36.010000"],["2024-07-25T00:27:37.010000"],["2024-07-25T00:27:38.010000"],["2024-07-25T00:27:39.010000"],["2024-07-25T00:27:40.010000"],["2024-07-25T00:27:41.010000"],["2024-07-25T00:27:42.010000"],["2024-07-25T00:27:43.010000"],["2024-07-25T00:27:44.010000"],["2024-07-25T00:27:45.010000"],["2024-07-25T00:27:46.010000"],["2024-07-25T00:27:47.010000"],["2024-07-25T00:27:48.010000"],["2024-07-25T00:27:49.010000"],["2024-07-25T00:27:50.010000"],["2024-07-25T00:27:51.010000"],["2024-07-25T00:27:52.010000"],["2024-07-25T00:27:53.010000"],["2024-07-25T00:27:54.010000"],["2024-07-25T00:27:55.010000"],["2024-07-25T00:27:56.010000"],["2024-07-25T00:27:57.010000"],["2024-07-25T00:27:58.010000"],["2024-07-25T00:27:59.010000"],["2024-07-25T00:28:00.010000"],["2024-07-25T00:28:01.010000"],["2024-07-25T00:28:02.010000"],["2024-07-25T00:28:03.010000"],["2024-07-25T00:28:04.010000"],["2024-07-25T00:28:05.010000"],["2024-07-25T00:28:06.010000"],["2024-07-25T00:28:07.010000"],["2024-07-25T00:28:08.010000"],["2024-07-25T00:28:09.010000"],["2024-07-25T00:28:10.010000"],["2024-07-25T00:28:11.010000"],["2024-07-25T00:28:12.010000"],["2024-07-25T00:28:13.010000"],["2024-07-25T00:28:14.010000"],["2024-07-25T00:28:15.010000"],["2024-07-25T00:28:16.010000"],["2024-07-25T00:28:17.010000"],["2024-07-25T00:28:18.010000"],["2024-07-25T00:28:19.010000"],["2024-07-25T00:28:20.010000"],["2024-07-25T00:28:21.010000"],["2024-07-25T00:28:22.010000"],["2024-07-25T00:28:23.010000"],["2024-07-25T00:28:24.010000"],["2024-07-25T00:28:25.010000"],["2024-07-25T00:28:26.010000"],["2024-07-25T00:28:27.010000"],["2024-07-25T00:28:28.010000"],["2024-07-25T00:28:29.010000"],["2024-07-25T00:28:30.010000"],["2024-07-25T00:28:31.010000"],["2024-07-25T00:28:32.010000"],["2024-07-25T00:28:33.010000"],["2024-07-25T00:28:34.010000"],["2024-07-25T00:28:35.010000"],["2024-07-25T00:28:36.010000"],["2024-07-25T00:28:37.010000"],["2024-07-25T00:28:38.010000"],["2024-07-25T00:28:39.010000"],["2024-07-25T00:28:40.010000"],["2024-07-25T00:28:41.010000"],["2024-07-25T00:28:42.010000"],["2024-07-25T00:28:43.010000"],["2024-07-25T00:28:44.010000"],["2024-07-25T00:28:45.010000"],["2024-07-25T00:28:46.010000"],["2024-07-25T00:28:47.010000"],["2024-07-25T00:28:48.010000"],["2024-07-25T00:28:49.010000"],["2024-07-25T00:28:50.010000"],["2024-07-25T00:28:51.010000"],["2024-07-25T00:28:52.010000"],["2024-07-25T00:28:53.010000"],["2024-07-25T00:28:54.010000"],["2024-07-25T00:28:55.010000"],["2024-07-25T00:28:56.010000"],["2024-07-25T00:28:57.010000"],["2024-07-25T00:28:58.010000"],["2024-07-25T00:28:59.010000"],["2024-07-25T00:29:00.010000"],["2024-07-25T00:29:01.010000"],["2024-07-25T00:29:02.010000"],["2024-07-25T00:29:03.010000"],["2024-07-25T00:29:04.010000"],["2024-07-25T00:29:05.010000"],["2024-07-25T00:29:06.010000"],["2024-07-25T00:29:07.010000"],["2024-07-25T00:29:08.010000"],["2024-07-25T00:29:09.010000"],["2024-07-25T00:29:10.010000"],["2024-07-25T00:29:11.010000"],["2024-07-25T00:29:12.010000"],["2024-07-25T00:29:13.010000"],["2024-07-25T00:29:14.010000"],["2024-07-25T00:29:15.010000"],["2024-07-25T00:29:16.010000"],["2024-07-25T00:29:17.010000"],["2024-07-25T00:29:18.010000"],["2024-07-25T00:29:19.010000"],["2024-07-25T00:29:20.010000"],["2024-07-25T00:29:21.010000"],["2024-07-25T00:29:22.010000"],["2024-07-25T00:29:23.010000"],["2024-07-25T00:29:24.010000"],["2024-07-25T00:29:25.010000"],["2024-07-25T00:29:26.010000"],["2024-07-25T00:29:27.010000"],["2024-07-25T00:29:28.010000"],["2024-07-25T00:29:29.010000"],["2024-07-25T00:29:30.010000"],["2024-07-25T00:29:31.010000"],["2024-07-25T00:29:32.010000"],["2024-07-25T00:29:33.010000"],["2024-07-25T00:29:34.010000"],["2024-07-25T00:29:35.010000"],["2024-07-25T00:29:36.010000"],["2024-07-25T00:29:37.010000"],["2024-07-25T00:29:38.010000"],["2024-07-25T00:29:39.010000"],["2024-07-25T00:29:40.010000"],["2024-07-25T00:29:41.010000"],["2024-07-25T00:29:42.010000"],["2024-07-25T00:29:43.010000"],["2024-07-25T00:29:44.010000"],["2024-07-25T00:29:45.010000"],["2024-07-25T00:29:46.010000"],["2024-07-25T00:29:47.010000"],["2024-07-25T00:29:48.010000"],["2024-07-25T00:29:49.010000"],["2024-07-25T00:29:50.010000"],["2024-07-25T00:29:51.010000"],["2024-07-25T00:29:52.010000"],["2024-07-25T00:29:53.010000"],["2024-07-25T00:29:54.010000"],["2024-07-25T00:29:55.010000"],["2024-07-25T00:29:56.010000"],["2024-07-25T00:29:57.010000"],["2024-07-25T00:29:58.010000"],["2024-07-25T00:29:59.010000"],["2024-07-25T00:30:00.010000"],["2024-07-25T00:30:01.010000"],["2024-07-25T00:30:02.010000"],["2024-07-25T00:30:03.010000"],["2024-07-25T00:30:04.010000"],["2024-07-25T00:30:05.010000"],["2024-07-25T00:30:06.010000"],["2024-07-25T00:30:07.010000"],["2024-07-25T00:30:08.010000"],["2024-07-25T00:30:09.010000"],["2024-07-25T00:30:10.010000"],["2024-07-25T00:30:11.010000"],["2024-07-25T00:30:12.010000"],["2024-07-25T00:30:13.010000"],["2024-07-25T00:30:14.010000"],["2024-07-25T00:30:15.010000"],["2024-07-25T00:30:16.010000"],["2024-07-25T00:30:17.010000"],["2024-07-25T00:30:18.010000"],["2024-07-25T00:30:19.010000"],["2024-07-25T00:30:20.010000"],["2024-07-25T00:30:21.010000"],["2024-07-25T00:30:22.010000"],["2024-07-25T00:30:23.010000"],["2024-07-25T00:30:24.010000"],["2024-07-25T00:30:25.010000"],["2024-07-25T00:30:26.010000"],["2024-07-25T00:30:27.010000"],["2024-07-25T00:30:28.010000"],["2024-07-25T00:30:29.010000"],["2024-07-25T00:30:30.010000"],["2024-07-25T00:30:31.010000"],["2024-07-25T00:30:32.010000"],["2024-07-25T00:30:33.010000"],["2024-07-25T00:30:34.010000"],["2024-07-25T00:30:35.010000"],["2024-07-25T00:30:36.010000"],["2024-07-25T00:30:37.010000"],["2024-07-25T00:30:38.010000"],["2024-07-25T00:30:39.010000"],["2024-07-25T00:30:40.010000"],["2024-07-25T00:30:41.010000"],["2024-07-25T00:30:42.010000"],["2024-07-25T00:30:43.010000"],["2024-07-25T00:30:44.010000"],["2024-07-25T00:30:45.010000"],["2024-07-25T00:30:46.010000"],["2024-07-25T00:30:47.010000"],["2024-07-25T00:30:48.010000"],["2024-07-25T00:30:49.010000"],["2024-07-25T00:30:50.010000"],["2024-07-25T00:30:51.010000"],["2024-07-25T00:30:52.010000"],["2024-07-25T00:30:53.010000"],["2024-07-25T00:30:54.010000"],["2024-07-25T00:30:55.010000"],["2024-07-25T00:30:56.010000"],["2024-07-25T00:30:57.010000"],["2024-07-25T00:30:58.010000"],["2024-07-25T00:30:59.010000"],["2024-07-25T00:31:00.010000"],["2024-07-25T00:31:01.010000"],["2024-07-25T00:31:02.010000"],["2024-07-25T00:31:03.010000"],["2024-07-25T00:31:04.010000"],["2024-07-25T00:31:05.010000"],["2024-07-25T00:31:06.010000"],["2024-07-25T00:31:07.010000"],["2024-07-25T00:31:08.010000"],["2024-07-25T00:31:09.010000"],["2024-07-25T00:31:10.010000"],["2024-07-25T00:31:11.010000"],["2024-07-25T00:31:12.010000"],["2024-07-25T00:31:13.010000"],["2024-07-25T00:31:14.010000"],["2024-07-25T00:31:15.010000"],["2024-07-25T00:31:16.010000"],["2024-07-25T00:31:17.010000"],["2024-07-25T00:31:18.010000"],["2024-07-25T00:31:19.010000"],["2024-07-25T00:31:20.010000"],["2024-07-25T00:31:21.010000"],["2024-07-25T00:31:22.010000"],["2024-07-25T00:31:23.010000"],["2024-07-25T00:31:24.010000"],["2024-07-25T00:31:25.010000"],["2024-07-25T00:31:26.010000"],["2024-07-25T00:31:27.010000"],["2024-07-25T00:31:28.010000"],["2024-07-25T00:31:29.010000"],["2024-07-25T00:31:30.010000"],["2024-07-25T00:31:31.010000"],["2024-07-25T00:31:32.010000"],["2024-07-25T00:31:33.010000"],["2024-07-25T00:31:34.010000"],["2024-07-25T00:31:35.010000"],["2024-07-25T00:31:36.010000"],["2024-07-25T00:31:37.010000"],["2024-07-25T00:31:38.010000"],["2024-07-25T00:31:39.010000"],["2024-07-25T00:31:40.010000"],["2024-07-25T00:31:41.010000"],["2024-07-25T00:31:42.010000"],["2024-07-25T00:31:43.010000"],["2024-07-25T00:31:44.010000"],["2024-07-25T00:31:45.010000"],["2024-07-25T00:31:46.010000"],["2024-07-25T00:31:47.010000"],["2024-07-25T00:31:48.010000"],["2024-07-25T00:31:49.010000"],["2024-07-25T00:31:50.010000"],["2024-07-25T00:31:51.010000"],["2024-07-25T00:31:52.010000"],["2024-07-25T00:31:53.010000"],["2024-07-25T00:31:54.010000"],["2024-07-25T00:31:55.010000"],["2024-07-25T00:31:56.010000"],["2024-07-25T00:31:57.010000"],["2024-07-25T00:31:58.010000"],["2024-07-25T00:31:59.010000"],["2024-07-25T00:32:00.010000"],["2024-07-25T00:32:01.010000"],["2024-07-25T00:32:02.010000"],["2024-07-25T00:32:03.010000"],["2024-07-25T00:32:04.010000"],["2024-07-25T00:32:05.010000"],["2024-07-25T00:32:06.010000"],["2024-07-25T00:32:07.010000"],["2024-07-25T00:32:08.010000"],["2024-07-25T00:32:09.010000"],["2024-07-25T00:32:10.010000"],["2024-07-25T00:32:11.010000"],["2024-07-25T00:32:12.010000"],["2024-07-25T00:32:13.010000"],["2024-07-25T00:32:14.010000"],["2024-07-25T00:32:15.010000"],["2024-07-25T00:32:16.010000"],["2024-07-25T00:32:17.010000"],["2024-07-25T00:32:18.010000"],["2024-07-25T00:32:19.010000"],["2024-07-25T00:32:20.010000"],["2024-07-25T00:32:21.010000"],["2024-07-25T00:32:22.010000"],["2024-07-25T00:32:23.010000"],["2024-07-25T00:32:24.010000"],["2024-07-25T00:32:25.010000"],["2024-07-25T00:32:26.010000"],["2024-07-25T00:32:27.010000"],["2024-07-25T00:32:28.010000"],["2024-07-25T00:32:29.010000"],["2024-07-25T00:32:30.010000"],["2024-07-25T00:32:31.010000"],["2024-07-25T00:32:32.010000"],["2024-07-25T00:32:33.010000"],["2024-07-25T00:32:34.010000"],["2024-07-25T00:32:35.010000"],["2024-07-25T00:32:36.010000"],["2024-07-25T00:32:37.010000"],["2024-07-25T00:32:38.010000"],["2024-07-25T00:32:39.010000"],["2024-07-25T00:32:40.010000"],["2024-07-25T00:32:41.010000"],["2024-07-25T00:32:42.010000"],["2024-07-25T00:32:43.010000"],["2024-07-25T00:32:44.010000"],["2024-07-25T00:32:45.010000"],["2024-07-25T00:32:46.010000"],["2024-07-25T00:32:47.010000"],["2024-07-25T00:32:48.010000"],["2024-07-25T00:32:49.010000"],["2024-07-25T00:32:50.010000"],["2024-07-25T00:32:51.010000"],["2024-07-25T00:32:52.010000"],["2024-07-25T00:32:53.010000"],["2024-07-25T00:32:54.010000"],["2024-07-25T00:32:55.010000"],["2024-07-25T00:32:56.010000"],["2024-07-25T00:32:57.010000"],["2024-07-25T00:32:58.010000"],["2024-07-25T00:32:59.010000"],["2024-07-25T00:33:00.010000"],["2024-07-25T00:33:01.010000"],["2024-07-25T00:33:02.010000"],["2024-07-25T00:33:03.010000"],["2024-07-25T00:33:04.010000"],["2024-07-25T00:33:05.010000"],["2024-07-25T00:33:06.010000"],["2024-07-25T00:33:07.010000"],["2024-07-25T00:33:08.010000"],["2024-07-25T00:33:09.010000"],["2024-07-25T00:33:10.010000"],["2024-07-25T00:33:11.010000"],["2024-07-25T00:33:12.010000"],["2024-07-25T00:33:13.010000"],["2024-07-25T00:33:14.010000"],["2024-07-25T00:33:15.010000"],["2024-07-25T00:33:16.010000"],["2024-07-25T00:33:17.010000"],["2024-07-25T00:33:18.010000"],["2024-07-25T00:33:19.010000"],["2024-07-25T00:33:20.010000"],["2024-07-25T00:33:21.010000"],["2024-07-25T00:33:22.010000"],["2024-07-25T00:33:23.010000"],["2024-07-25T00:33:24.010000"],["2024-07-25T00:33:25.010000"],["2024-07-25T00:33:26.010000"],["2024-07-25T00:33:27.010000"],["2024-07-25T00:33:28.010000"],["2024-07-25T00:33:29.010000"],["2024-07-25T00:33:30.010000"],["2024-07-25T00:33:31.010000"],["2024-07-25T00:33:32.010000"],["2024-07-25T00:33:33.010000"],["2024-07-25T00:33:34.010000"],["2024-07-25T00:33:35.010000"],["2024-07-25T00:33:36.010000"],["2024-07-25T00:33:37.010000"],["2024-07-25T00:33:38.010000"],["2024-07-25T00:33:39.010000"],["2024-07-25T00:33:40.010000"],["2024-07-25T00:33:41.010000"],["2024-07-25T00:33:42.010000"],["2024-07-25T00:33:43.010000"],["2024-07-25T00:33:44.010000"],["2024-07-25T00:33:45.010000"],["2024-07-25T00:33:46.010000"],["2024-07-25T00:33:47.010000"],["2024-07-25T00:33:48.010000"],["2024-07-25T00:33:49.010000"],["2024-07-25T00:33:50.010000"],["2024-07-25T00:33:51.010000"],["2024-07-25T00:33:52.010000"],["2024-07-25T00:33:53.010000"],["2024-07-25T00:33:54.010000"],["2024-07-25T00:33:55.010000"],["2024-07-25T00:33:56.010000"],["2024-07-25T00:33:57.010000"],["2024-07-25T00:33:58.010000"],["2024-07-25T00:33:59.010000"],["2024-07-25T00:34:00.010000"],["2024-07-25T00:34:01.010000"],["2024-07-25T00:34:02.010000"],["2024-07-25T00:34:03.010000"],["2024-07-25T00:34:04.010000"],["2024-07-25T00:34:05.010000"],["2024-07-25T00:34:06.010000"],["2024-07-25T00:34:07.010000"],["2024-07-25T00:34:08.010000"],["2024-07-25T00:34:09.010000"],["2024-07-25T00:34:10.010000"],["2024-07-25T00:34:11.010000"],["2024-07-25T00:34:12.010000"],["2024-07-25T00:34:13.010000"],["2024-07-25T00:34:14.010000"],["2024-07-25T00:34:15.010000"],["2024-07-25T00:34:16.010000"],["2024-07-25T00:34:17.010000"],["2024-07-25T00:34:18.010000"],["2024-07-25T00:34:19.010000"],["2024-07-25T00:34:20.010000"],["2024-07-25T00:34:21.010000"],["2024-07-25T00:34:22.010000"],["2024-07-25T00:34:23.010000"],["2024-07-25T00:34:24.010000"],["2024-07-25T00:34:25.010000"],["2024-07-25T00:34:26.010000"],["2024-07-25T00:34:27.010000"],["2024-07-25T00:34:28.010000"],["2024-07-25T00:34:29.010000"],["2024-07-25T00:34:30.010000"],["2024-07-25T00:34:31.010000"],["2024-07-25T00:34:32.010000"],["2024-07-25T00:34:33.010000"],["2024-07-25T00:34:34.010000"],["2024-07-25T00:34:35.010000"],["2024-07-25T00:34:36.010000"],["2024-07-25T00:34:37.010000"],["2024-07-25T00:34:38.010000"],["2024-07-25T00:34:39.010000"],["2024-07-25T00:34:40.010000"],["2024-07-25T00:34:41.010000"],["2024-07-25T00:34:42.010000"],["2024-07-25T00:34:43.010000"],["2024-07-25T00:34:44.010000"],["2024-07-25T00:34:45.010000"],["2024-07-25T00:34:46.010000"],["2024-07-25T00:34:47.010000"],["2024-07-25T00:34:48.010000"],["2024-07-25T00:34:49.010000"],["2024-07-25T00:34:50.010000"],["2024-07-25T00:34:51.010000"],["2024-07-25T00:34:52.010000"],["2024-07-25T00:34:53.010000"],["2024-07-25T00:34:54.010000"],["2024-07-25T00:34:55.010000"],["2024-07-25T00:34:56.010000"],["2024-07-25T00:34:57.010000"],["2024-07-25T00:34:58.010000"],["2024-07-25T00:34:59.010000"],["2024-07-25T00:35:00.010000"],["2024-07-25T00:35:01.010000"],["2024-07-25T00:35:02.010000"],["2024-07-25T00:35:03.010000"],["2024-07-25T00:35:04.010000"],["2024-07-25T00:35:05.010000"],["2024-07-25T00:35:06.010000"],["2024-07-25T00:35:07.010000"],["2024-07-25T00:35:08.010000"],["2024-07-25T00:35:09.010000"],["2024-07-25T00:35:10.010000"],["2024-07-25T00:35:11.010000"],["2024-07-25T00:35:12.010000"],["2024-07-25T00:35:13.010000"],["2024-07-25T00:35:14.010000"],["2024-07-25T00:35:15.010000"],["2024-07-25T00:35:16.010000"],["2024-07-25T00:35:17.010000"],["2024-07-25T00:35:18.010000"],["2024-07-25T00:35:19.010000"],["2024-07-25T00:35:20.010000"],["2024-07-25T00:35:21.010000"],["2024-07-25T00:35:22.010000"],["2024-07-25T00:35:23.010000"],["2024-07-25T00:35:24.010000"],["2024-07-25T00:35:25.010000"],["2024-07-25T00:35:26.010000"],["2024-07-25T00:35:27.010000"],["2024-07-25T00:35:28.010000"],["2024-07-25T00:35:29.010000"],["2024-07-25T00:35:30.010000"],["2024-07-25T00:35:31.010000"],["2024-07-25T00:35:32.010000"],["2024-07-25T00:35:33.010000"],["2024-07-25T00:35:34.010000"],["2024-07-25T00:35:35.010000"],["2024-07-25T00:35:36.010000"],["2024-07-25T00:35:37.010000"],["2024-07-25T00:35:38.010000"],["2024-07-25T00:35:39.010000"],["2024-07-25T00:35:40.010000"],["2024-07-25T00:35:41.010000"],["2024-07-25T00:35:42.010000"],["2024-07-25T00:35:43.010000"],["2024-07-25T00:35:44.010000"],["2024-07-25T00:35:45.010000"],["2024-07-25T00:35:46.010000"],["2024-07-25T00:35:47.010000"],["2024-07-25T00:35:48.010000"],["2024-07-25T00:35:49.010000"],["2024-07-25T00:35:50.010000"],["2024-07-25T00:35:51.010000"],["2024-07-25T00:35:52.010000"],["2024-07-25T00:35:53.010000"],["2024-07-25T00:35:54.010000"],["2024-07-25T00:35:55.010000"],["2024-07-25T00:35:56.010000"],["2024-07-25T00:35:57.010000"],["2024-07-25T00:35:58.010000"],["2024-07-25T00:35:59.010000"],["2024-07-25T00:36:00.010000"],["2024-07-25T00:36:01.010000"],["2024-07-25T00:36:02.010000"],["2024-07-25T00:36:03.010000"],["2024-07-25T00:36:04.010000"],["2024-07-25T00:36:05.010000"],["2024-07-25T00:36:06.010000"],["2024-07-25T00:36:07.010000"],["2024-07-25T00:36:08.010000"],["2024-07-25T00:36:09.010000"],["2024-07-25T00:36:10.010000"],["2024-07-25T00:36:11.010000"],["2024-07-25T00:36:12.010000"],["2024-07-25T00:36:13.010000"],["2024-07-25T00:36:14.010000"],["2024-07-25T00:36:15.010000"],["2024-07-25T00:36:16.010000"],["2024-07-25T00:36:17.010000"],["2024-07-25T00:36:18.010000"],["2024-07-25T00:36:19.010000"],["2024-07-25T00:36:20.010000"],["2024-07-25T00:36:21.010000"],["2024-07-25T00:36:22.010000"],["2024-07-25T00:36:23.010000"],["2024-07-25T00:36:24.010000"],["2024-07-25T00:36:25.010000"],["2024-07-25T00:36:26.010000"],["2024-07-25T00:36:27.010000"],["2024-07-25T00:36:28.010000"],["2024-07-25T00:36:29.010000"],["2024-07-25T00:36:30.010000"],["2024-07-25T00:36:31.010000"],["2024-07-25T00:36:32.010000"],["2024-07-25T00:36:33.010000"],["2024-07-25T00:36:34.010000"],["2024-07-25T00:36:35.010000"],["2024-07-25T00:36:36.010000"],["2024-07-25T00:36:37.010000"],["2024-07-25T00:36:38.010000"],["2024-07-25T00:36:39.010000"],["2024-07-25T00:36:40.010000"],["2024-07-25T00:36:41.010000"],["2024-07-25T00:36:42.010000"],["2024-07-25T00:36:43.010000"],["2024-07-25T00:36:44.010000"],["2024-07-25T00:36:45.010000"],["2024-07-25T00:36:46.010000"],["2024-07-25T00:36:47.010000"],["2024-07-25T00:36:48.010000"],["2024-07-25T00:36:49.010000"],["2024-07-25T00:36:50.010000"],["2024-07-25T00:36:51.010000"],["2024-07-25T00:36:52.010000"],["2024-07-25T00:36:53.010000"],["2024-07-25T00:36:54.010000"],["2024-07-25T00:36:55.010000"],["2024-07-25T00:36:56.010000"],["2024-07-25T00:36:57.010000"],["2024-07-25T00:36:58.010000"],["2024-07-25T00:36:59.010000"],["2024-07-25T00:37:00.010000"],["2024-07-25T00:37:01.010000"],["2024-07-25T00:37:02.010000"],["2024-07-25T00:37:03.010000"],["2024-07-25T00:37:04.010000"],["2024-07-25T00:37:05.010000"],["2024-07-25T00:37:06.010000"],["2024-07-25T00:37:07.010000"],["2024-07-25T00:37:08.010000"],["2024-07-25T00:37:09.010000"],["2024-07-25T00:37:10.010000"],["2024-07-25T00:37:11.010000"],["2024-07-25T00:37:12.010000"],["2024-07-25T00:37:13.010000"],["2024-07-25T00:37:14.010000"],["2024-07-25T00:37:15.010000"],["2024-07-25T00:37:16.010000"],["2024-07-25T00:37:17.010000"],["2024-07-25T00:37:18.010000"],["2024-07-25T00:37:19.010000"],["2024-07-25T00:37:20.010000"],["2024-07-25T00:37:21.010000"],["2024-07-25T00:37:22.010000"],["2024-07-25T00:37:23.010000"],["2024-07-25T00:37:24.010000"],["2024-07-25T00:37:25.010000"],["2024-07-25T00:37:26.010000"],["2024-07-25T00:37:27.010000"],["2024-07-25T00:37:28.010000"],["2024-07-25T00:37:29.010000"],["2024-07-25T00:37:30.010000"],["2024-07-25T00:37:31.010000"],["2024-07-25T00:37:32.010000"],["2024-07-25T00:37:33.010000"],["2024-07-25T00:37:34.010000"],["2024-07-25T00:37:35.010000"],["2024-07-25T00:37:36.010000"],["2024-07-25T00:37:37.010000"],["2024-07-25T00:37:38.010000"],["2024-07-25T00:37:39.010000"],["2024-07-25T00:37:40.010000"],["2024-07-25T00:37:41.010000"],["2024-07-25T00:37:42.010000"],["2024-07-25T00:37:43.010000"],["2024-07-25T00:37:44.010000"],["2024-07-25T00:37:45.010000"],["2024-07-25T00:37:46.010000"],["2024-07-25T00:37:47.010000"],["2024-07-25T00:37:48.010000"],["2024-07-25T00:37:49.010000"],["2024-07-25T00:37:50.010000"],["2024-07-25T00:37:51.010000"],["2024-07-25T00:37:52.010000"],["2024-07-25T00:37:53.010000"],["2024-07-25T00:37:54.010000"],["2024-07-25T00:37:55.010000"],["2024-07-25T00:37:56.010000"],["2024-07-25T00:37:57.010000"],["2024-07-25T00:37:58.010000"],["2024-07-25T00:37:59.010000"],["2024-07-25T00:38:00.010000"],["2024-07-25T00:38:01.010000"],["2024-07-25T00:38:02.010000"],["2024-07-25T00:38:03.010000"],["2024-07-25T00:38:04.010000"],["2024-07-25T00:38:05.010000"],["2024-07-25T00:38:06.010000"],["2024-07-25T00:38:07.010000"],["2024-07-25T00:38:08.010000"],["2024-07-25T00:38:09.010000"],["2024-07-25T00:38:10.010000"],["2024-07-25T00:38:11.010000"],["2024-07-25T00:38:12.010000"],["2024-07-25T00:38:13.010000"],["2024-07-25T00:38:14.010000"],["2024-07-25T00:38:15.010000"],["2024-07-25T00:38:16.010000"],["2024-07-25T00:38:17.010000"],["2024-07-25T00:38:18.010000"],["2024-07-25T00:38:19.010000"],["2024-07-25T00:38:20.010000"],["2024-07-25T00:38:21.010000"],["2024-07-25T00:38:22.010000"],["2024-07-25T00:38:23.010000"],["2024-07-25T00:38:24.010000"],["2024-07-25T00:38:25.010000"],["2024-07-25T00:38:26.010000"],["2024-07-25T00:38:27.010000"],["2024-07-25T00:38:28.010000"],["2024-07-25T00:38:29.010000"],["2024-07-25T00:38:30.010000"],["2024-07-25T00:38:31.010000"],["2024-07-25T00:38:32.010000"],["2024-07-25T00:38:33.010000"],["2024-07-25T00:38:34.010000"],["2024-07-25T00:38:35.010000"],["2024-07-25T00:38:36.010000"],["2024-07-25T00:38:37.010000"],["2024-07-25T00:38:38.010000"],["2024-07-25T00:38:39.010000"],["2024-07-25T00:38:40.010000"],["2024-07-25T00:38:41.010000"],["2024-07-25T00:38:42.010000"],["2024-07-25T00:38:43.010000"],["2024-07-25T00:38:44.010000"],["2024-07-25T00:38:45.010000"],["2024-07-25T00:38:46.010000"],["2024-07-25T00:38:47.010000"],["2024-07-25T00:38:48.010000"],["2024-07-25T00:38:49.010000"],["2024-07-25T00:38:50.010000"],["2024-07-25T00:38:51.010000"],["2024-07-25T00:38:52.010000"],["2024-07-25T00:38:53.010000"],["2024-07-25T00:38:54.010000"],["2024-07-25T00:38:55.010000"],["2024-07-25T00:38:56.010000"],["2024-07-25T00:38:57.010000"],["2024-07-25T00:38:58.010000"],["2024-07-25T00:38:59.010000"],["2024-07-25T00:39:00.010000"],["2024-07-25T00:39:01.010000"],["2024-07-25T00:39:02.010000"],["2024-07-25T00:39:03.010000"],["2024-07-25T00:39:04.010000"],["2024-07-25T00:39:05.010000"],["2024-07-25T00:39:06.010000"],["2024-07-25T00:39:07.010000"],["2024-07-25T00:39:08.010000"],["2024-07-25T00:39:09.010000"],["2024-07-25T00:39:10.010000"],["2024-07-25T00:39:11.010000"],["2024-07-25T00:39:12.010000"],["2024-07-25T00:39:13.010000"],["2024-07-25T00:39:14.010000"],["2024-07-25T00:39:15.010000"],["2024-07-25T00:39:16.010000"],["2024-07-25T00:39:17.010000"],["2024-07-25T00:39:18.010000"],["2024-07-25T00:39:19.010000"],["2024-07-25T00:39:20.010000"],["2024-07-25T00:39:21.010000"],["2024-07-25T00:39:22.010000"],["2024-07-25T00:39:23.010000"],["2024-07-25T00:39:24.010000"],["2024-07-25T00:39:25.010000"],["2024-07-25T00:39:26.010000"],["2024-07-25T00:39:27.010000"],["2024-07-25T00:39:28.010000"],["2024-07-25T00:39:29.010000"],["2024-07-25T00:39:30.010000"],["2024-07-25T00:39:31.010000"],["2024-07-25T00:39:32.010000"],["2024-07-25T00:39:33.010000"],["2024-07-25T00:39:34.010000"],["2024-07-25T00:39:35.010000"],["2024-07-25T00:39:36.010000"],["2024-07-25T00:39:37.010000"],["2024-07-25T00:39:38.010000"],["2024-07-25T00:39:39.010000"],["2024-07-25T00:39:40.010000"],["2024-07-25T00:39:41.010000"],["2024-07-25T00:39:42.010000"],["2024-07-25T00:39:43.010000"],["2024-07-25T00:39:44.010000"],["2024-07-25T00:39:45.010000"],["2024-07-25T00:39:46.010000"],["2024-07-25T00:39:47.010000"],["2024-07-25T00:39:48.010000"],["2024-07-25T00:39:49.010000"],["2024-07-25T00:39:50.010000"],["2024-07-25T00:39:51.010000"],["2024-07-25T00:39:52.010000"],["2024-07-25T00:39:53.010000"],["2024-07-25T00:39:54.010000"],["2024-07-25T00:39:55.010000"],["2024-07-25T00:39:56.010000"],["2024-07-25T00:39:57.010000"],["2024-07-25T00:39:58.010000"],["2024-07-25T00:39:59.010000"],["2024-07-25T00:40:00.010000"],["2024-07-25T00:40:01.010000"],["2024-07-25T00:40:02.010000"],["2024-07-25T00:40:03.010000"],["2024-07-25T00:40:04.010000"],["2024-07-25T00:40:05.010000"],["2024-07-25T00:40:06.010000"],["2024-07-25T00:40:07.010000"],["2024-07-25T00:40:08.010000"],["2024-07-25T00:40:09.010000"],["2024-07-25T00:40:10.010000"],["2024-07-25T00:40:11.010000"],["2024-07-25T00:40:12.010000"],["2024-07-25T00:40:13.010000"],["2024-07-25T00:40:14.010000"],["2024-07-25T00:40:15.010000"],["2024-07-25T00:40:16.010000"],["2024-07-25T00:40:17.010000"],["2024-07-25T00:40:18.010000"],["2024-07-25T00:40:19.010000"],["2024-07-25T00:40:20.010000"],["2024-07-25T00:40:21.010000"],["2024-07-25T00:40:22.010000"],["2024-07-25T00:40:23.010000"],["2024-07-25T00:40:24.010000"],["2024-07-25T00:40:25.010000"],["2024-07-25T00:40:26.010000"],["2024-07-25T00:40:27.010000"],["2024-07-25T00:40:28.010000"],["2024-07-25T00:40:29.010000"],["2024-07-25T00:40:30.010000"],["2024-07-25T00:40:31.010000"],["2024-07-25T00:40:32.010000"],["2024-07-25T00:40:33.010000"],["2024-07-25T00:40:34.010000"],["2024-07-25T00:40:35.010000"],["2024-07-25T00:40:36.010000"],["2024-07-25T00:40:37.010000"],["2024-07-25T00:40:38.010000"],["2024-07-25T00:40:39.010000"],["2024-07-25T00:40:40.010000"],["2024-07-25T00:40:41.010000"],["2024-07-25T00:40:42.010000"],["2024-07-25T00:40:43.010000"],["2024-07-25T00:40:44.010000"],["2024-07-25T00:40:45.010000"],["2024-07-25T00:40:46.010000"],["2024-07-25T00:40:47.010000"],["2024-07-25T00:40:48.010000"],["2024-07-25T00:40:49.010000"],["2024-07-25T00:40:50.010000"],["2024-07-25T00:40:51.010000"],["2024-07-25T00:40:52.010000"],["2024-07-25T00:40:53.010000"],["2024-07-25T00:40:54.010000"],["2024-07-25T00:40:55.010000"],["2024-07-25T00:40:56.010000"],["2024-07-25T00:40:57.010000"],["2024-07-25T00:40:58.010000"],["2024-07-25T00:40:59.010000"],["2024-07-25T00:41:00.010000"],["2024-07-25T00:41:01.010000"],["2024-07-25T00:41:02.010000"],["2024-07-25T00:41:03.010000"],["2024-07-25T00:41:04.010000"],["2024-07-25T00:41:05.010000"],["2024-07-25T00:41:06.010000"],["2024-07-25T00:41:07.010000"],["2024-07-25T00:41:08.010000"],["2024-07-25T00:41:09.010000"],["2024-07-25T00:41:10.010000"],["2024-07-25T00:41:11.010000"],["2024-07-25T00:41:12.010000"],["2024-07-25T00:41:13.010000"],["2024-07-25T00:41:14.010000"],["2024-07-25T00:41:15.010000"],["2024-07-25T00:41:16.010000"],["2024-07-25T00:41:17.010000"],["2024-07-25T00:41:18.010000"],["2024-07-25T00:41:19.010000"],["2024-07-25T00:41:20.010000"],["2024-07-25T00:41:21.010000"],["2024-07-25T00:41:22.010000"],["2024-07-25T00:41:23.010000"],["2024-07-25T00:41:24.010000"],["2024-07-25T00:41:25.010000"],["2024-07-25T00:41:26.010000"],["2024-07-25T00:41:27.010000"],["2024-07-25T00:41:28.010000"],["2024-07-25T00:41:29.010000"],["2024-07-25T00:41:30.010000"],["2024-07-25T00:41:31.010000"],["2024-07-25T00:41:32.010000"],["2024-07-25T00:41:33.010000"],["2024-07-25T00:41:34.010000"],["2024-07-25T00:41:35.010000"],["2024-07-25T00:41:36.010000"],["2024-07-25T00:41:37.010000"],["2024-07-25T00:41:38.010000"],["2024-07-25T00:41:39.010000"],["2024-07-25T00:41:40.010000"],["2024-07-25T00:41:41.010000"],["2024-07-25T00:41:42.010000"],["2024-07-25T00:41:43.010000"],["2024-07-25T00:41:44.010000"],["2024-07-25T00:41:45.010000"],["2024-07-25T00:41:46.010000"],["2024-07-25T00:41:47.010000"],["2024-07-25T00:41:48.010000"],["2024-07-25T00:41:49.010000"],["2024-07-25T00:41:50.010000"],["2024-07-25T00:41:51.010000"],["2024-07-25T00:41:52.010000"],["2024-07-25T00:41:53.010000"],["2024-07-25T00:41:54.010000"],["2024-07-25T00:41:55.010000"],["2024-07-25T00:41:56.010000"],["2024-07-25T00:41:57.010000"],["2024-07-25T00:41:58.010000"],["2024-07-25T00:41:59.010000"],["2024-07-25T00:42:00.010000"],["2024-07-25T00:42:01.010000"],["2024-07-25T00:42:02.010000"],["2024-07-25T00:42:03.010000"],["2024-07-25T00:42:04.010000"],["2024-07-25T00:42:05.010000"],["2024-07-25T00:42:06.010000"],["2024-07-25T00:42:07.010000"],["2024-07-25T00:42:08.010000"],["2024-07-25T00:42:09.010000"],["2024-07-25T00:42:10.010000"],["2024-07-25T00:42:11.010000"],["2024-07-25T00:42:12.010000"],["2024-07-25T00:42:13.010000"],["2024-07-25T00:42:14.010000"],["2024-07-25T00:42:15.010000"],["2024-07-25T00:42:16.010000"],["2024-07-25T00:42:17.010000"],["2024-07-25T00:42:18.010000"],["2024-07-25T00:42:19.010000"],["2024-07-25T00:42:20.010000"],["2024-07-25T00:42:21.010000"],["2024-07-25T00:42:22.010000"],["2024-07-25T00:42:23.010000"],["2024-07-25T00:42:24.010000"],["2024-07-25T00:42:25.010000"],["2024-07-25T00:42:26.010000"],["2024-07-25T00:42:27.010000"],["2024-07-25T00:42:28.010000"],["2024-07-25T00:42:29.010000"],["2024-07-25T00:42:30.010000"],["2024-07-25T00:42:31.010000"],["2024-07-25T00:42:32.010000"],["2024-07-25T00:42:33.010000"],["2024-07-25T00:42:34.010000"],["2024-07-25T00:42:35.010000"],["2024-07-25T00:42:36.010000"],["2024-07-25T00:42:37.010000"],["2024-07-25T00:42:38.010000"],["2024-07-25T00:42:39.010000"],["2024-07-25T00:42:40.010000"],["2024-07-25T00:42:41.010000"],["2024-07-25T00:42:42.010000"],["2024-07-25T00:42:43.010000"],["2024-07-25T00:42:44.010000"],["2024-07-25T00:42:45.010000"],["2024-07-25T00:42:46.010000"],["2024-07-25T00:42:47.010000"],["2024-07-25T00:42:48.010000"],["2024-07-25T00:42:49.010000"],["2024-07-25T00:42:50.010000"],["2024-07-25T00:42:51.010000"],["2024-07-25T00:42:52.010000"],["2024-07-25T00:42:53.010000"],["2024-07-25T00:42:54.010000"],["2024-07-25T00:42:55.010000"],["2024-07-25T00:42:56.010000"],["2024-07-25T00:42:57.010000"],["2024-07-25T00:42:58.010000"],["2024-07-25T00:42:59.010000"],["2024-07-25T00:43:00.010000"],["2024-07-25T00:43:01.010000"],["2024-07-25T00:43:02.010000"],["2024-07-25T00:43:03.010000"],["2024-07-25T00:43:04.010000"],["2024-07-25T00:43:05.010000"],["2024-07-25T00:43:06.010000"],["2024-07-25T00:43:07.010000"],["2024-07-25T00:43:08.010000"],["2024-07-25T00:43:09.010000"],["2024-07-25T00:43:10.010000"],["2024-07-25T00:43:11.010000"],["2024-07-25T00:43:12.010000"],["2024-07-25T00:43:13.010000"],["2024-07-25T00:43:14.010000"],["2024-07-25T00:43:15.010000"],["2024-07-25T00:43:16.010000"],["2024-07-25T00:43:17.010000"],["2024-07-25T00:43:18.010000"],["2024-07-25T00:43:19.010000"],["2024-07-25T00:43:20.010000"],["2024-07-25T00:43:21.010000"],["2024-07-25T00:43:22.010000"],["2024-07-25T00:43:23.010000"],["2024-07-25T00:43:24.010000"],["2024-07-25T00:43:25.010000"],["2024-07-25T00:43:26.010000"],["2024-07-25T00:43:27.010000"],["2024-07-25T00:43:28.010000"],["2024-07-25T00:43:29.010000"],["2024-07-25T00:43:30.010000"],["2024-07-25T00:43:31.010000"],["2024-07-25T00:43:32.010000"],["2024-07-25T00:43:33.010000"],["2024-07-25T00:43:34.010000"],["2024-07-25T00:43:35.010000"],["2024-07-25T00:43:36.010000"],["2024-07-25T00:43:37.010000"],["2024-07-25T00:43:38.010000"],["2024-07-25T00:43:39.010000"],["2024-07-25T00:43:40.010000"],["2024-07-25T00:43:41.010000"],["2024-07-25T00:43:42.010000"],["2024-07-25T00:43:43.010000"],["2024-07-25T00:43:44.010000"],["2024-07-25T00:43:45.010000"],["2024-07-25T00:43:46.010000"],["2024-07-25T00:43:47.010000"],["2024-07-25T00:43:48.010000"],["2024-07-25T00:43:49.010000"],["2024-07-25T00:43:50.010000"],["2024-07-25T00:43:51.010000"],["2024-07-25T00:43:52.010000"],["2024-07-25T00:43:53.010000"],["2024-07-25T00:43:54.010000"],["2024-07-25T00:43:55.010000"],["2024-07-25T00:43:56.010000"],["2024-07-25T00:43:57.010000"],["2024-07-25T00:43:58.010000"],["2024-07-25T00:43:59.010000"],["2024-07-25T00:44:00.010000"],["2024-07-25T00:44:01.010000"],["2024-07-25T00:44:02.010000"],["2024-07-25T00:44:03.010000"],["2024-07-25T00:44:04.010000"],["2024-07-25T00:44:05.010000"],["2024-07-25T00:44:06.010000"],["2024-07-25T00:44:07.010000"],["2024-07-25T00:44:08.010000"],["2024-07-25T00:44:09.010000"],["2024-07-25T00:44:10.010000"],["2024-07-25T00:44:11.010000"],["2024-07-25T00:44:12.010000"],["2024-07-25T00:44:13.010000"],["2024-07-25T00:44:14.010000"],["2024-07-25T00:44:15.010000"],["2024-07-25T00:44:16.010000"],["2024-07-25T00:44:17.010000"],["2024-07-25T00:44:18.010000"],["2024-07-25T00:44:19.010000"],["2024-07-25T00:44:20.010000"],["2024-07-25T00:44:21.010000"],["2024-07-25T00:44:22.010000"],["2024-07-25T00:44:23.010000"],["2024-07-25T00:44:24.010000"],["2024-07-25T00:44:25.010000"],["2024-07-25T00:44:26.010000"],["2024-07-25T00:44:27.010000"],["2024-07-25T00:44:28.010000"],["2024-07-25T00:44:29.010000"],["2024-07-25T00:44:30.010000"],["2024-07-25T00:44:31.010000"],["2024-07-25T00:44:32.010000"],["2024-07-25T00:44:33.010000"],["2024-07-25T00:44:34.010000"],["2024-07-25T00:44:35.010000"],["2024-07-25T00:44:36.010000"],["2024-07-25T00:44:37.010000"],["2024-07-25T00:44:38.010000"],["2024-07-25T00:44:39.010000"],["2024-07-25T00:44:40.010000"],["2024-07-25T00:44:41.010000"],["2024-07-25T00:44:42.010000"],["2024-07-25T00:44:43.010000"],["2024-07-25T00:44:44.010000"],["2024-07-25T00:44:45.010000"],["2024-07-25T00:44:46.010000"],["2024-07-25T00:44:47.010000"],["2024-07-25T00:44:48.010000"],["2024-07-25T00:44:49.010000"],["2024-07-25T00:44:50.010000"],["2024-07-25T00:44:51.010000"],["2024-07-25T00:44:52.010000"],["2024-07-25T00:44:53.010000"],["2024-07-25T00:44:54.010000"],["2024-07-25T00:44:55.010000"],["2024-07-25T00:44:56.010000"],["2024-07-25T00:44:57.010000"],["2024-07-25T00:44:58.010000"],["2024-07-25T00:44:59.010000"],["2024-07-25T00:45:00.010000"],["2024-07-25T00:45:01.010000"],["2024-07-25T00:45:02.010000"],["2024-07-25T00:45:03.010000"],["2024-07-25T00:45:04.010000"],["2024-07-25T00:45:05.010000"],["2024-07-25T00:45:06.010000"],["2024-07-25T00:45:07.010000"],["2024-07-25T00:45:08.010000"],["2024-07-25T00:45:09.010000"],["2024-07-25T00:45:10.010000"],["2024-07-25T00:45:11.010000"],["2024-07-25T00:45:12.010000"],["2024-07-25T00:45:13.010000"],["2024-07-25T00:45:14.010000"],["2024-07-25T00:45:15.010000"],["2024-07-25T00:45:16.010000"],["2024-07-25T00:45:17.010000"],["2024-07-25T00:45:18.010000"],["2024-07-25T00:45:19.010000"],["2024-07-25T00:45:20.010000"],["2024-07-25T00:45:21.010000"],["2024-07-25T00:45:22.010000"],["2024-07-25T00:45:23.010000"],["2024-07-25T00:45:24.010000"],["2024-07-25T00:45:25.010000"],["2024-07-25T00:45:26.010000"],["2024-07-25T00:45:27.010000"],["2024-07-25T00:45:28.010000"],["2024-07-25T00:45:29.010000"],["2024-07-25T00:45:30.010000"],["2024-07-25T00:45:31.010000"],["2024-07-25T00:45:32.010000"],["2024-07-25T00:45:33.010000"],["2024-07-25T00:45:34.010000"],["2024-07-25T00:45:35.010000"],["2024-07-25T00:45:36.010000"],["2024-07-25T00:45:37.010000"],["2024-07-25T00:45:38.010000"],["2024-07-25T00:45:39.010000"],["2024-07-25T00:45:40.010000"],["2024-07-25T00:45:41.010000"],["2024-07-25T00:45:42.010000"],["2024-07-25T00:45:43.010000"],["2024-07-25T00:45:44.010000"],["2024-07-25T00:45:45.010000"],["2024-07-25T00:45:46.010000"],["2024-07-25T00:45:47.010000"],["2024-07-25T00:45:48.010000"],["2024-07-25T00:45:49.010000"],["2024-07-25T00:45:50.010000"],["2024-07-25T00:45:51.010000"],["2024-07-25T00:45:52.010000"],["2024-07-25T00:45:53.010000"],["2024-07-25T00:45:54.010000"],["2024-07-25T00:45:55.010000"],["2024-07-25T00:45:56.010000"],["2024-07-25T00:45:57.010000"],["2024-07-25T00:45:58.010000"],["2024-07-25T00:45:59.010000"],["2024-07-25T00:46:00.010000"],["2024-07-25T00:46:01.010000"],["2024-07-25T00:46:02.010000"],["2024-07-25T00:46:03.010000"],["2024-07-25T00:46:04.010000"],["2024-07-25T00:46:05.010000"],["2024-07-25T00:46:06.010000"],["2024-07-25T00:46:07.010000"],["2024-07-25T00:46:08.010000"],["2024-07-25T00:46:09.010000"],["2024-07-25T00:46:10.010000"],["2024-07-25T00:46:11.010000"],["2024-07-25T00:46:12.010000"],["2024-07-25T00:46:13.010000"],["2024-07-25T00:46:14.010000"],["2024-07-25T00:46:15.010000"],["2024-07-25T00:46:16.010000"],["2024-07-25T00:46:17.010000"],["2024-07-25T00:46:18.010000"],["2024-07-25T00:46:19.010000"],["2024-07-25T00:46:20.010000"],["2024-07-25T00:46:21.010000"],["2024-07-25T00:46:22.010000"],["2024-07-25T00:46:23.010000"],["2024-07-25T00:46:24.010000"],["2024-07-25T00:46:25.010000"],["2024-07-25T00:46:26.010000"],["2024-07-25T00:46:27.010000"],["2024-07-25T00:46:28.010000"],["2024-07-25T00:46:29.010000"],["2024-07-25T00:46:30.010000"],["2024-07-25T00:46:31.010000"],["2024-07-25T00:46:32.010000"],["2024-07-25T00:46:33.010000"],["2024-07-25T00:46:34.010000"],["2024-07-25T00:46:35.010000"],["2024-07-25T00:46:36.010000"],["2024-07-25T00:46:37.010000"],["2024-07-25T00:46:38.010000"],["2024-07-25T00:46:39.010000"],["2024-07-25T00:46:40.010000"],["2024-07-25T00:46:41.010000"],["2024-07-25T00:46:42.010000"],["2024-07-25T00:46:43.010000"],["2024-07-25T00:46:44.010000"],["2024-07-25T00:46:45.010000"],["2024-07-25T00:46:46.010000"],["2024-07-25T00:46:47.010000"],["2024-07-25T00:46:48.010000"],["2024-07-25T00:46:49.010000"],["2024-07-25T00:46:50.010000"],["2024-07-25T00:46:51.010000"],["2024-07-25T00:46:52.010000"],["2024-07-25T00:46:53.010000"],["2024-07-25T00:46:54.010000"],["2024-07-25T00:46:55.010000"],["2024-07-25T00:46:56.010000"],["2024-07-25T00:46:57.010000"],["2024-07-25T00:46:58.010000"],["2024-07-25T00:46:59.010000"],["2024-07-25T00:47:00.010000"],["2024-07-25T00:47:01.010000"],["2024-07-25T00:47:02.010000"],["2024-07-25T00:47:03.010000"],["2024-07-25T00:47:04.010000"],["2024-07-25T00:47:05.010000"],["2024-07-25T00:47:06.010000"],["2024-07-25T00:47:07.010000"],["2024-07-25T00:47:08.010000"],["2024-07-25T00:47:09.010000"],["2024-07-25T00:47:10.010000"],["2024-07-25T00:47:11.010000"],["2024-07-25T00:47:12.010000"],["2024-07-25T00:47:13.010000"],["2024-07-25T00:47:14.010000"],["2024-07-25T00:47:15.010000"],["2024-07-25T00:47:16.010000"],["2024-07-25T00:47:17.010000"],["2024-07-25T00:47:18.010000"],["2024-07-25T00:47:19.010000"],["2024-07-25T00:47:20.010000"],["2024-07-25T00:47:21.010000"],["2024-07-25T00:47:22.010000"],["2024-07-25T00:47:23.010000"],["2024-07-25T00:47:24.010000"],["2024-07-25T00:47:25.010000"],["2024-07-25T00:47:26.010000"],["2024-07-25T00:47:27.010000"],["2024-07-25T00:47:28.010000"],["2024-07-25T00:47:29.010000"],["2024-07-25T00:47:30.010000"],["2024-07-25T00:47:31.010000"],["2024-07-25T00:47:32.010000"],["2024-07-25T00:47:33.010000"],["2024-07-25T00:47:34.010000"],["2024-07-25T00:47:35.010000"],["2024-07-25T00:47:36.010000"],["2024-07-25T00:47:37.010000"],["2024-07-25T00:47:38.010000"],["2024-07-25T00:47:39.010000"],["2024-07-25T00:47:40.010000"],["2024-07-25T00:47:41.010000"],["2024-07-25T00:47:42.010000"],["2024-07-25T00:47:43.010000"],["2024-07-25T00:47:44.010000"],["2024-07-25T00:47:45.010000"],["2024-07-25T00:47:46.010000"],["2024-07-25T00:47:47.010000"],["2024-07-25T00:47:48.010000"],["2024-07-25T00:47:49.010000"],["2024-07-25T00:47:50.010000"],["2024-07-25T00:47:51.010000"],["2024-07-25T00:47:52.010000"],["2024-07-25T00:47:53.010000"],["2024-07-25T00:47:54.010000"],["2024-07-25T00:47:55.010000"],["2024-07-25T00:47:56.010000"],["2024-07-25T00:47:57.010000"],["2024-07-25T00:47:58.010000"],["2024-07-25T00:47:59.010000"],["2024-07-25T00:48:00.010000"],["2024-07-25T00:48:01.010000"],["2024-07-25T00:48:02.010000"],["2024-07-25T00:48:03.010000"],["2024-07-25T00:48:04.010000"],["2024-07-25T00:48:05.010000"],["2024-07-25T00:48:06.010000"],["2024-07-25T00:48:07.010000"],["2024-07-25T00:48:08.010000"],["2024-07-25T00:48:09.010000"],["2024-07-25T00:48:10.010000"],["2024-07-25T00:48:11.010000"],["2024-07-25T00:48:12.010000"],["2024-07-25T00:48:13.010000"],["2024-07-25T00:48:14.010000"],["2024-07-25T00:48:15.010000"],["2024-07-25T00:48:16.010000"],["2024-07-25T00:48:17.010000"],["2024-07-25T00:48:18.010000"],["2024-07-25T00:48:19.010000"],["2024-07-25T00:48:20.010000"],["2024-07-25T00:48:21.010000"],["2024-07-25T00:48:22.010000"],["2024-07-25T00:48:23.010000"],["2024-07-25T00:48:24.010000"],["2024-07-25T00:48:25.010000"],["2024-07-25T00:48:26.010000"],["2024-07-25T00:48:27.010000"],["2024-07-25T00:48:28.010000"],["2024-07-25T00:48:29.010000"],["2024-07-25T00:48:30.010000"],["2024-07-25T00:48:31.010000"],["2024-07-25T00:48:32.010000"],["2024-07-25T00:48:33.010000"],["2024-07-25T00:48:34.010000"],["2024-07-25T00:48:35.010000"],["2024-07-25T00:48:36.010000"],["2024-07-25T00:48:37.010000"],["2024-07-25T00:48:38.010000"],["2024-07-25T00:48:39.010000"],["2024-07-25T00:48:40.010000"],["2024-07-25T00:48:41.010000"],["2024-07-25T00:48:42.010000"],["2024-07-25T00:48:43.010000"],["2024-07-25T00:48:44.010000"],["2024-07-25T00:48:45.010000"],["2024-07-25T00:48:46.010000"],["2024-07-25T00:48:47.010000"],["2024-07-25T00:48:48.010000"],["2024-07-25T00:48:49.010000"],["2024-07-25T00:48:50.010000"],["2024-07-25T00:48:51.010000"],["2024-07-25T00:48:52.010000"],["2024-07-25T00:48:53.010000"],["2024-07-25T00:48:54.010000"],["2024-07-25T00:48:55.010000"],["2024-07-25T00:48:56.010000"],["2024-07-25T00:48:57.010000"],["2024-07-25T00:48:58.010000"],["2024-07-25T00:48:59.010000"],["2024-07-25T00:49:00.010000"],["2024-07-25T00:49:01.010000"],["2024-07-25T00:49:02.010000"],["2024-07-25T00:49:03.010000"],["2024-07-25T00:49:04.010000"],["2024-07-25T00:49:05.010000"],["2024-07-25T00:49:06.010000"],["2024-07-25T00:49:07.010000"],["2024-07-25T00:49:08.010000"],["2024-07-25T00:49:09.010000"],["2024-07-25T00:49:10.010000"],["2024-07-25T00:49:11.010000"],["2024-07-25T00:49:12.010000"],["2024-07-25T00:49:13.010000"],["2024-07-25T00:49:14.010000"],["2024-07-25T00:49:15.010000"],["2024-07-25T00:49:16.010000"],["2024-07-25T00:49:17.010000"],["2024-07-25T00:49:18.010000"],["2024-07-25T00:49:19.010000"],["2024-07-25T00:49:20.010000"],["2024-07-25T00:49:21.010000"],["2024-07-25T00:49:22.010000"],["2024-07-25T00:49:23.010000"],["2024-07-25T00:49:24.010000"],["2024-07-25T00:49:25.010000"],["2024-07-25T00:49:26.010000"],["2024-07-25T00:49:27.010000"],["2024-07-25T00:49:28.010000"],["2024-07-25T00:49:29.010000"],["2024-07-25T00:49:30.010000"],["2024-07-25T00:49:31.010000"],["2024-07-25T00:49:32.010000"],["2024-07-25T00:49:33.010000"],["2024-07-25T00:49:34.010000"],["2024-07-25T00:49:35.010000"],["2024-07-25T00:49:36.010000"],["2024-07-25T00:49:37.010000"],["2024-07-25T00:49:38.010000"],["2024-07-25T00:49:39.010000"],["2024-07-25T00:49:40.010000"],["2024-07-25T00:49:41.010000"],["2024-07-25T00:49:42.010000"],["2024-07-25T00:49:43.010000"],["2024-07-25T00:49:44.010000"],["2024-07-25T00:49:45.010000"],["2024-07-25T00:49:46.010000"],["2024-07-25T00:49:47.010000"],["2024-07-25T00:49:48.010000"],["2024-07-25T00:49:49.010000"],["2024-07-25T00:49:50.010000"],["2024-07-25T00:49:51.010000"],["2024-07-25T00:49:52.010000"],["2024-07-25T00:49:53.010000"],["2024-07-25T00:49:54.010000"],["2024-07-25T00:49:55.010000"],["2024-07-25T00:49:56.010000"],["2024-07-25T00:49:57.010000"],["2024-07-25T00:49:58.010000"],["2024-07-25T00:49:59.010000"],["2024-07-25T00:50:00.010000"],["2024-07-25T00:50:01.010000"],["2024-07-25T00:50:02.010000"],["2024-07-25T00:50:03.010000"],["2024-07-25T00:50:04.010000"],["2024-07-25T00:50:05.010000"],["2024-07-25T00:50:06.010000"],["2024-07-25T00:50:07.010000"],["2024-07-25T00:50:08.010000"],["2024-07-25T00:50:09.010000"],["2024-07-25T00:50:10.010000"],["2024-07-25T00:50:11.010000"],["2024-07-25T00:50:12.010000"],["2024-07-25T00:50:13.010000"],["2024-07-25T00:50:14.010000"],["2024-07-25T00:50:15.010000"],["2024-07-25T00:50:16.010000"],["2024-07-25T00:50:17.010000"],["2024-07-25T00:50:18.010000"],["2024-07-25T00:50:19.010000"],["2024-07-25T00:50:20.010000"],["2024-07-25T00:50:21.010000"],["2024-07-25T00:50:22.010000"],["2024-07-25T00:50:23.010000"],["2024-07-25T00:50:24.010000"],["2024-07-25T00:50:25.010000"],["2024-07-25T00:50:26.010000"],["2024-07-25T00:50:27.010000"],["2024-07-25T00:50:28.010000"],["2024-07-25T00:50:29.010000"],["2024-07-25T00:50:30.010000"],["2024-07-25T00:50:31.010000"],["2024-07-25T00:50:32.010000"],["2024-07-25T00:50:33.010000"],["2024-07-25T00:50:34.010000"],["2024-07-25T00:50:35.010000"],["2024-07-25T00:50:36.010000"],["2024-07-25T00:50:37.010000"],["2024-07-25T00:50:38.010000"],["2024-07-25T00:50:39.010000"],["2024-07-25T00:50:40.010000"],["2024-07-25T00:50:41.010000"],["2024-07-25T00:50:42.010000"],["2024-07-25T00:50:43.010000"],["2024-07-25T00:50:44.010000"],["2024-07-25T00:50:45.010000"],["2024-07-25T00:50:46.010000"],["2024-07-25T00:50:47.010000"],["2024-07-25T00:50:48.010000"],["2024-07-25T00:50:49.010000"],["2024-07-25T00:50:50.010000"],["2024-07-25T00:50:51.010000"],["2024-07-25T00:50:52.010000"],["2024-07-25T00:50:53.010000"],["2024-07-25T00:50:54.010000"],["2024-07-25T00:50:55.010000"],["2024-07-25T00:50:56.010000"],["2024-07-25T00:50:57.010000"],["2024-07-25T00:50:58.010000"],["2024-07-25T00:50:59.010000"],["2024-07-25T00:51:00.010000"],["2024-07-25T00:51:01.010000"],["2024-07-25T00:51:02.010000"],["2024-07-25T00:51:03.010000"],["2024-07-25T00:51:04.010000"],["2024-07-25T00:51:05.010000"],["2024-07-25T00:51:06.010000"],["2024-07-25T00:51:07.010000"],["2024-07-25T00:51:08.010000"],["2024-07-25T00:51:09.010000"],["2024-07-25T00:51:10.010000"],["2024-07-25T00:51:11.010000"],["2024-07-25T00:51:12.010000"],["2024-07-25T00:51:13.010000"],["2024-07-25T00:51:14.010000"],["2024-07-25T00:51:15.010000"],["2024-07-25T00:51:16.010000"],["2024-07-25T00:51:17.010000"],["2024-07-25T00:51:18.010000"],["2024-07-25T00:51:19.010000"],["2024-07-25T00:51:20.010000"],["2024-07-25T00:51:21.010000"],["2024-07-25T00:51:22.010000"],["2024-07-25T00:51:23.010000"],["2024-07-25T00:51:24.010000"],["2024-07-25T00:51:25.010000"],["2024-07-25T00:51:26.010000"],["2024-07-25T00:51:27.010000"],["2024-07-25T00:51:28.010000"],["2024-07-25T00:51:29.010000"],["2024-07-25T00:51:30.010000"],["2024-07-25T00:51:31.010000"],["2024-07-25T00:51:32.010000"],["2024-07-25T00:51:33.010000"],["2024-07-25T00:51:34.010000"],["2024-07-25T00:51:35.010000"],["2024-07-25T00:51:36.010000"],["2024-07-25T00:51:37.010000"],["2024-07-25T00:51:38.010000"],["2024-07-25T00:51:39.010000"],["2024-07-25T00:51:40.010000"],["2024-07-25T00:51:41.010000"],["2024-07-25T00:51:42.010000"],["2024-07-25T00:51:43.010000"],["2024-07-25T00:51:44.010000"],["2024-07-25T00:51:45.010000"],["2024-07-25T00:51:46.010000"],["2024-07-25T00:51:47.010000"],["2024-07-25T00:51:48.010000"],["2024-07-25T00:51:49.010000"],["2024-07-25T00:51:50.010000"],["2024-07-25T00:51:51.010000"],["2024-07-25T00:51:52.010000"],["2024-07-25T00:51:53.010000"],["2024-07-25T00:51:54.010000"],["2024-07-25T00:51:55.010000"],["2024-07-25T00:51:56.010000"],["2024-07-25T00:51:57.010000"],["2024-07-25T00:51:58.010000"],["2024-07-25T00:51:59.010000"],["2024-07-25T00:52:00.010000"],["2024-07-25T00:52:01.010000"],["2024-07-25T00:52:02.010000"],["2024-07-25T00:52:03.010000"],["2024-07-25T00:52:04.010000"],["2024-07-25T00:52:05.010000"],["2024-07-25T00:52:06.010000"],["2024-07-25T00:52:07.010000"],["2024-07-25T00:52:08.010000"],["2024-07-25T00:52:09.010000"],["2024-07-25T00:52:10.010000"],["2024-07-25T00:52:11.010000"],["2024-07-25T00:52:12.010000"],["2024-07-25T00:52:13.010000"],["2024-07-25T00:52:14.010000"],["2024-07-25T00:52:15.010000"],["2024-07-25T00:52:16.010000"],["2024-07-25T00:52:17.010000"],["2024-07-25T00:52:18.010000"],["2024-07-25T00:52:19.010000"],["2024-07-25T00:52:20.010000"],["2024-07-25T00:52:21.010000"],["2024-07-25T00:52:22.010000"],["2024-07-25T00:52:23.010000"],["2024-07-25T00:52:24.010000"],["2024-07-25T00:52:25.010000"],["2024-07-25T00:52:26.010000"],["2024-07-25T00:52:27.010000"],["2024-07-25T00:52:28.010000"],["2024-07-25T00:52:29.010000"],["2024-07-25T00:52:30.010000"],["2024-07-25T00:52:31.010000"],["2024-07-25T00:52:32.010000"],["2024-07-25T00:52:33.010000"],["2024-07-25T00:52:34.010000"],["2024-07-25T00:52:35.010000"],["2024-07-25T00:52:36.010000"],["2024-07-25T00:52:37.010000"],["2024-07-25T00:52:38.010000"],["2024-07-25T00:52:39.010000"],["2024-07-25T00:52:40.010000"],["2024-07-25T00:52:41.010000"],["2024-07-25T00:52:42.010000"],["2024-07-25T00:52:43.010000"],["2024-07-25T00:52:44.010000"],["2024-07-25T00:52:45.010000"],["2024-07-25T00:52:46.010000"],["2024-07-25T00:52:47.010000"],["2024-07-25T00:52:48.010000"],["2024-07-25T00:52:49.010000"],["2024-07-25T00:52:50.010000"],["2024-07-25T00:52:51.010000"],["2024-07-25T00:52:52.010000"],["2024-07-25T00:52:53.010000"],["2024-07-25T00:52:54.010000"],["2024-07-25T00:52:55.010000"],["2024-07-25T00:52:56.010000"],["2024-07-25T00:52:57.010000"],["2024-07-25T00:52:58.010000"],["2024-07-25T00:52:59.010000"],["2024-07-25T00:53:00.010000"],["2024-07-25T00:53:01.010000"],["2024-07-25T00:53:02.010000"],["2024-07-25T00:53:03.010000"],["2024-07-25T00:53:04.010000"],["2024-07-25T00:53:05.010000"],["2024-07-25T00:53:06.010000"],["2024-07-25T00:53:07.010000"],["2024-07-25T00:53:08.010000"],["2024-07-25T00:53:09.010000"],["2024-07-25T00:53:10.010000"],["2024-07-25T00:53:11.010000"],["2024-07-25T00:53:12.010000"],["2024-07-25T00:53:13.010000"],["2024-07-25T00:53:14.010000"],["2024-07-25T00:53:15.010000"],["2024-07-25T00:53:16.010000"],["2024-07-25T00:53:17.010000"],["2024-07-25T00:53:18.010000"],["2024-07-25T00:53:19.010000"],["2024-07-25T00:53:20.010000"],["2024-07-25T00:53:21.010000"],["2024-07-25T00:53:22.010000"],["2024-07-25T00:53:23.010000"],["2024-07-25T00:53:24.010000"],["2024-07-25T00:53:25.010000"],["2024-07-25T00:53:26.010000"],["2024-07-25T00:53:27.010000"],["2024-07-25T00:53:28.010000"],["2024-07-25T00:53:29.010000"],["2024-07-25T00:53:30.010000"],["2024-07-25T00:53:31.010000"],["2024-07-25T00:53:32.010000"],["2024-07-25T00:53:33.010000"],["2024-07-25T00:53:34.010000"],["2024-07-25T00:53:35.010000"],["2024-07-25T00:53:36.010000"],["2024-07-25T00:53:37.010000"],["2024-07-25T00:53:38.010000"],["2024-07-25T00:53:39.010000"],["2024-07-25T00:53:40.010000"],["2024-07-25T00:53:41.010000"],["2024-07-25T00:53:42.010000"],["2024-07-25T00:53:43.010000"],["2024-07-25T00:53:44.010000"],["2024-07-25T00:53:45.010000"],["2024-07-25T00:53:46.010000"],["2024-07-25T00:53:47.010000"],["2024-07-25T00:53:48.010000"],["2024-07-25T00:53:49.010000"],["2024-07-25T00:53:50.010000"],["2024-07-25T00:53:51.010000"],["2024-07-25T00:53:52.010000"],["2024-07-25T00:53:53.010000"],["2024-07-25T00:53:54.010000"],["2024-07-25T00:53:55.010000"],["2024-07-25T00:53:56.010000"],["2024-07-25T00:53:57.010000"],["2024-07-25T00:53:58.010000"],["2024-07-25T00:53:59.010000"],["2024-07-25T00:54:00.010000"],["2024-07-25T00:54:01.010000"],["2024-07-25T00:54:02.010000"],["2024-07-25T00:54:03.010000"],["2024-07-25T00:54:04.010000"],["2024-07-25T00:54:05.010000"],["2024-07-25T00:54:06.010000"],["2024-07-25T00:54:07.010000"],["2024-07-25T00:54:08.010000"],["2024-07-25T00:54:09.010000"],["2024-07-25T00:54:10.010000"],["2024-07-25T00:54:11.010000"],["2024-07-25T00:54:12.010000"],["2024-07-25T00:54:13.010000"],["2024-07-25T00:54:14.010000"],["2024-07-25T00:54:15.010000"],["2024-07-25T00:54:16.010000"],["2024-07-25T00:54:17.010000"],["2024-07-25T00:54:18.010000"],["2024-07-25T00:54:19.010000"],["2024-07-25T00:54:20.010000"],["2024-07-25T00:54:21.010000"],["2024-07-25T00:54:22.010000"],["2024-07-25T00:54:23.010000"],["2024-07-25T00:54:24.010000"],["2024-07-25T00:54:25.010000"],["2024-07-25T00:54:26.010000"],["2024-07-25T00:54:27.010000"],["2024-07-25T00:54:28.010000"],["2024-07-25T00:54:29.010000"],["2024-07-25T00:54:30.010000"],["2024-07-25T00:54:31.010000"],["2024-07-25T00:54:32.010000"],["2024-07-25T00:54:33.010000"],["2024-07-25T00:54:34.010000"],["2024-07-25T00:54:35.010000"],["2024-07-25T00:54:36.010000"],["2024-07-25T00:54:37.010000"],["2024-07-25T00:54:38.010000"],["2024-07-25T00:54:39.010000"],["2024-07-25T00:54:40.010000"],["2024-07-25T00:54:41.010000"],["2024-07-25T00:54:42.010000"],["2024-07-25T00:54:43.010000"],["2024-07-25T00:54:44.010000"],["2024-07-25T00:54:45.010000"],["2024-07-25T00:54:46.010000"],["2024-07-25T00:54:47.010000"],["2024-07-25T00:54:48.010000"],["2024-07-25T00:54:49.010000"],["2024-07-25T00:54:50.010000"],["2024-07-25T00:54:51.010000"],["2024-07-25T00:54:52.010000"],["2024-07-25T00:54:53.010000"],["2024-07-25T00:54:54.010000"],["2024-07-25T00:54:55.010000"],["2024-07-25T00:54:56.010000"],["2024-07-25T00:54:57.010000"],["2024-07-25T00:54:58.010000"],["2024-07-25T00:54:59.010000"],["2024-07-25T00:55:00.010000"],["2024-07-25T00:55:01.010000"],["2024-07-25T00:55:02.010000"],["2024-07-25T00:55:03.010000"],["2024-07-25T00:55:04.010000"],["2024-07-25T00:55:05.010000"],["2024-07-25T00:55:06.010000"],["2024-07-25T00:55:07.010000"],["2024-07-25T00:55:08.010000"],["2024-07-25T00:55:09.010000"],["2024-07-25T00:55:10.010000"],["2024-07-25T00:55:11.010000"],["2024-07-25T00:55:12.010000"],["2024-07-25T00:55:13.010000"],["2024-07-25T00:55:14.010000"],["2024-07-25T00:55:15.010000"],["2024-07-25T00:55:16.010000"],["2024-07-25T00:55:17.010000"],["2024-07-25T00:55:18.010000"],["2024-07-25T00:55:19.010000"],["2024-07-25T00:55:20.010000"],["2024-07-25T00:55:21.010000"],["2024-07-25T00:55:22.010000"],["2024-07-25T00:55:23.010000"],["2024-07-25T00:55:24.010000"],["2024-07-25T00:55:25.010000"],["2024-07-25T00:55:26.010000"],["2024-07-25T00:55:27.010000"],["2024-07-25T00:55:28.010000"],["2024-07-25T00:55:29.010000"],["2024-07-25T00:55:30.010000"],["2024-07-25T00:55:31.010000"],["2024-07-25T00:55:32.010000"],["2024-07-25T00:55:33.010000"],["2024-07-25T00:55:34.010000"],["2024-07-25T00:55:35.010000"],["2024-07-25T00:55:36.010000"],["2024-07-25T00:55:37.010000"],["2024-07-25T00:55:38.010000"],["2024-07-25T00:55:39.010000"],["2024-07-25T00:55:40.010000"],["2024-07-25T00:55:41.010000"],["2024-07-25T00:55:42.010000"],["2024-07-25T00:55:43.010000"],["2024-07-25T00:55:44.010000"],["2024-07-25T00:55:45.010000"],["2024-07-25T00:55:46.010000"],["2024-07-25T00:55:47.010000"],["2024-07-25T00:55:48.010000"],["2024-07-25T00:55:49.010000"],["2024-07-25T00:55:50.010000"],["2024-07-25T00:55:51.010000"],["2024-07-25T00:55:52.010000"],["2024-07-25T00:55:53.010000"],["2024-07-25T00:55:54.010000"],["2024-07-25T00:55:55.010000"],["2024-07-25T00:55:56.010000"],["2024-07-25T00:55:57.010000"],["2024-07-25T00:55:58.010000"],["2024-07-25T00:55:59.010000"],["2024-07-25T00:56:00.010000"],["2024-07-25T00:56:01.010000"],["2024-07-25T00:56:02.010000"],["2024-07-25T00:56:03.010000"],["2024-07-25T00:56:04.010000"],["2024-07-25T00:56:05.010000"],["2024-07-25T00:56:06.010000"],["2024-07-25T00:56:07.010000"],["2024-07-25T00:56:08.010000"],["2024-07-25T00:56:09.010000"],["2024-07-25T00:56:10.010000"],["2024-07-25T00:56:11.010000"],["2024-07-25T00:56:12.010000"],["2024-07-25T00:56:13.010000"],["2024-07-25T00:56:14.010000"],["2024-07-25T00:56:15.010000"],["2024-07-25T00:56:16.010000"],["2024-07-25T00:56:17.010000"],["2024-07-25T00:56:18.010000"],["2024-07-25T00:56:19.010000"],["2024-07-25T00:56:20.010000"],["2024-07-25T00:56:21.010000"],["2024-07-25T00:56:22.010000"],["2024-07-25T00:56:23.010000"],["2024-07-25T00:56:24.010000"],["2024-07-25T00:56:25.010000"],["2024-07-25T00:56:26.010000"],["2024-07-25T00:56:27.010000"],["2024-07-25T00:56:28.010000"],["2024-07-25T00:56:29.010000"],["2024-07-25T00:56:30.010000"],["2024-07-25T00:56:31.010000"],["2024-07-25T00:56:32.010000"],["2024-07-25T00:56:33.010000"],["2024-07-25T00:56:34.010000"],["2024-07-25T00:56:35.010000"],["2024-07-25T00:56:36.010000"],["2024-07-25T00:56:37.010000"],["2024-07-25T00:56:38.010000"],["2024-07-25T00:56:39.010000"],["2024-07-25T00:56:40.010000"],["2024-07-25T00:56:41.010000"],["2024-07-25T00:56:42.010000"],["2024-07-25T00:56:43.010000"],["2024-07-25T00:56:44.010000"],["2024-07-25T00:56:45.010000"],["2024-07-25T00:56:46.010000"],["2024-07-25T00:56:47.010000"],["2024-07-25T00:56:48.010000"],["2024-07-25T00:56:49.010000"],["2024-07-25T00:56:50.010000"],["2024-07-25T00:56:51.010000"],["2024-07-25T00:56:52.010000"],["2024-07-25T00:56:53.010000"],["2024-07-25T00:56:54.010000"],["2024-07-25T00:56:55.010000"],["2024-07-25T00:56:56.010000"],["2024-07-25T00:56:57.010000"],["2024-07-25T00:56:58.010000"],["2024-07-25T00:56:59.010000"],["2024-07-25T00:57:00.010000"],["2024-07-25T00:57:01.010000"],["2024-07-25T00:57:02.010000"],["2024-07-25T00:57:03.010000"],["2024-07-25T00:57:04.010000"],["2024-07-25T00:57:05.010000"],["2024-07-25T00:57:06.010000"],["2024-07-25T00:57:07.010000"],["2024-07-25T00:57:08.010000"],["2024-07-25T00:57:09.010000"],["2024-07-25T00:57:10.010000"],["2024-07-25T00:57:11.010000"],["2024-07-25T00:57:12.010000"],["2024-07-25T00:57:13.010000"],["2024-07-25T00:57:14.010000"],["2024-07-25T00:57:15.010000"],["2024-07-25T00:57:16.010000"],["2024-07-25T00:57:17.010000"],["2024-07-25T00:57:18.010000"],["2024-07-25T00:57:19.010000"],["2024-07-25T00:57:20.010000"],["2024-07-25T00:57:21.010000"],["2024-07-25T00:57:22.010000"],["2024-07-25T00:57:23.010000"],["2024-07-25T00:57:24.010000"],["2024-07-25T00:57:25.010000"],["2024-07-25T00:57:26.010000"],["2024-07-25T00:57:27.010000"],["2024-07-25T00:57:28.010000"],["2024-07-25T00:57:29.010000"],["2024-07-25T00:57:30.010000"],["2024-07-25T00:57:31.010000"],["2024-07-25T00:57:32.010000"],["2024-07-25T00:57:33.010000"],["2024-07-25T00:57:34.010000"],["2024-07-25T00:57:35.010000"],["2024-07-25T00:57:36.010000"],["2024-07-25T00:57:37.010000"],["2024-07-25T00:57:38.010000"],["2024-07-25T00:57:39.010000"],["2024-07-25T00:57:40.010000"],["2024-07-25T00:57:41.010000"],["2024-07-25T00:57:42.010000"],["2024-07-25T00:57:43.010000"],["2024-07-25T00:57:44.010000"],["2024-07-25T00:57:45.010000"],["2024-07-25T00:57:46.010000"],["2024-07-25T00:57:47.010000"],["2024-07-25T00:57:48.010000"],["2024-07-25T00:57:49.010000"],["2024-07-25T00:57:50.010000"],["2024-07-25T00:57:51.010000"],["2024-07-25T00:57:52.010000"],["2024-07-25T00:57:53.010000"],["2024-07-25T00:57:54.010000"],["2024-07-25T00:57:55.010000"],["2024-07-25T00:57:56.010000"],["2024-07-25T00:57:57.010000"],["2024-07-25T00:57:58.010000"],["2024-07-25T00:57:59.010000"],["2024-07-25T00:58:00.010000"],["2024-07-25T00:58:01.010000"],["2024-07-25T00:58:02.010000"],["2024-07-25T00:58:03.010000"],["2024-07-25T00:58:04.010000"],["2024-07-25T00:58:05.010000"],["2024-07-25T00:58:06.010000"],["2024-07-25T00:58:07.010000"],["2024-07-25T00:58:08.010000"],["2024-07-25T00:58:09.010000"],["2024-07-25T00:58:10.010000"],["2024-07-25T00:58:11.010000"],["2024-07-25T00:58:12.010000"],["2024-07-25T00:58:13.010000"],["2024-07-25T00:58:14.010000"],["2024-07-25T00:58:15.010000"],["2024-07-25T00:58:16.010000"],["2024-07-25T00:58:17.010000"],["2024-07-25T00:58:18.010000"],["2024-07-25T00:58:19.010000"],["2024-07-25T00:58:20.010000"],["2024-07-25T00:58:21.010000"],["2024-07-25T00:58:22.010000"],["2024-07-25T00:58:23.010000"],["2024-07-25T00:58:24.010000"],["2024-07-25T00:58:25.010000"],["2024-07-25T00:58:26.010000"],["2024-07-25T00:58:27.010000"],["2024-07-25T00:58:28.010000"],["2024-07-25T00:58:29.010000"],["2024-07-25T00:58:30.010000"],["2024-07-25T00:58:31.010000"],["2024-07-25T00:58:32.010000"],["2024-07-25T00:58:33.010000"],["2024-07-25T00:58:34.010000"],["2024-07-25T00:58:35.010000"],["2024-07-25T00:58:36.010000"],["2024-07-25T00:58:37.010000"],["2024-07-25T00:58:38.010000"],["2024-07-25T00:58:39.010000"],["2024-07-25T00:58:40.010000"],["2024-07-25T00:58:41.010000"],["2024-07-25T00:58:42.010000"],["2024-07-25T00:58:43.010000"],["2024-07-25T00:58:44.010000"],["2024-07-25T00:58:45.010000"],["2024-07-25T00:58:46.010000"],["2024-07-25T00:58:47.010000"],["2024-07-25T00:58:48.010000"],["2024-07-25T00:58:49.010000"],["2024-07-25T00:58:50.010000"],["2024-07-25T00:58:51.010000"],["2024-07-25T00:58:52.010000"],["2024-07-25T00:58:53.010000"],["2024-07-25T00:58:54.010000"],["2024-07-25T00:58:55.010000"],["2024-07-25T00:58:56.010000"],["2024-07-25T00:58:57.010000"],["2024-07-25T00:58:58.010000"],["2024-07-25T00:58:59.010000"],["2024-07-25T00:59:00.010000"],["2024-07-25T00:59:01.010000"],["2024-07-25T00:59:02.010000"],["2024-07-25T00:59:03.010000"],["2024-07-25T00:59:04.010000"],["2024-07-25T00:59:05.010000"],["2024-07-25T00:59:06.010000"],["2024-07-25T00:59:07.010000"],["2024-07-25T00:59:08.010000"],["2024-07-25T00:59:09.010000"],["2024-07-25T00:59:10.010000"],["2024-07-25T00:59:11.010000"],["2024-07-25T00:59:12.010000"],["2024-07-25T00:59:13.010000"],["2024-07-25T00:59:14.010000"],["2024-07-25T00:59:15.010000"],["2024-07-25T00:59:16.010000"],["2024-07-25T00:59:17.010000"],["2024-07-25T00:59:18.010000"],["2024-07-25T00:59:19.010000"],["2024-07-25T00:59:20.010000"],["2024-07-25T00:59:21.010000"],["2024-07-25T00:59:22.010000"],["2024-07-25T00:59:23.010000"],["2024-07-25T00:59:24.010000"],["2024-07-25T00:59:25.010000"],["2024-07-25T00:59:26.010000"],["2024-07-25T00:59:27.010000"],["2024-07-25T00:59:28.010000"],["2024-07-25T00:59:29.010000"],["2024-07-25T00:59:30.010000"],["2024-07-25T00:59:31.010000"],["2024-07-25T00:59:32.010000"],["2024-07-25T00:59:33.010000"],["2024-07-25T00:59:34.010000"],["2024-07-25T00:59:35.010000"],["2024-07-25T00:59:36.010000"],["2024-07-25T00:59:37.010000"],["2024-07-25T00:59:38.010000"],["2024-07-25T00:59:39.010000"],["2024-07-25T00:59:40.010000"],["2024-07-25T00:59:41.010000"],["2024-07-25T00:59:42.010000"],["2024-07-25T00:59:43.010000"],["2024-07-25T00:59:44.010000"],["2024-07-25T00:59:45.010000"],["2024-07-25T00:59:46.010000"],["2024-07-25T00:59:47.010000"],["2024-07-25T00:59:48.010000"],["2024-07-25T00:59:49.010000"],["2024-07-25T00:59:50.010000"],["2024-07-25T00:59:51.010000"],["2024-07-25T00:59:52.010000"],["2024-07-25T00:59:53.010000"],["2024-07-25T00:59:54.010000"],["2024-07-25T00:59:55.010000"],["2024-07-25T00:59:56.010000"],["2024-07-25T00:59:57.010000"],["2024-07-25T00:59:58.010000"],["2024-07-25T00:59:59.010000"],["2024-07-25T01:00:00.010000"],["2024-07-25T01:00:01.010000"],["2024-07-25T01:00:02.010000"],["2024-07-25T01:00:03.010000"],["2024-07-25T01:00:04.010000"],["2024-07-25T01:00:05.010000"],["2024-07-25T01:00:06.010000"],["2024-07-25T01:00:07.010000"],["2024-07-25T01:00:08.010000"],["2024-07-25T01:00:09.010000"],["2024-07-25T01:00:10.010000"],["2024-07-25T01:00:11.010000"],["2024-07-25T01:00:12.010000"],["2024-07-25T01:00:13.010000"],["2024-07-25T01:00:14.010000"],["2024-07-25T01:00:15.010000"],["2024-07-25T01:00:16.010000"],["2024-07-25T01:00:17.010000"],["2024-07-25T01:00:18.010000"],["2024-07-25T01:00:19.010000"],["2024-07-25T01:00:20.010000"],["2024-07-25T01:00:21.010000"],["2024-07-25T01:00:22.010000"],["2024-07-25T01:00:23.010000"],["2024-07-25T01:00:24.010000"],["2024-07-25T01:00:25.010000"],["2024-07-25T01:00:26.010000"],["2024-07-25T01:00:27.010000"],["2024-07-25T01:00:28.010000"],["2024-07-25T01:00:29.010000"],["2024-07-25T01:00:30.010000"],["2024-07-25T01:00:31.010000"],["2024-07-25T01:00:32.010000"],["2024-07-25T01:00:33.010000"],["2024-07-25T01:00:34.010000"],["2024-07-25T01:00:35.010000"],["2024-07-25T01:00:36.010000"],["2024-07-25T01:00:37.010000"],["2024-07-25T01:00:38.010000"],["2024-07-25T01:00:39.010000"],["2024-07-25T01:00:40.010000"],["2024-07-25T01:00:41.010000"],["2024-07-25T01:00:42.010000"],["2024-07-25T01:00:43.010000"],["2024-07-25T01:00:44.010000"],["2024-07-25T01:00:45.010000"],["2024-07-25T01:00:46.010000"],["2024-07-25T01:00:47.010000"],["2024-07-25T01:00:48.010000"],["2024-07-25T01:00:49.010000"],["2024-07-25T01:00:50.010000"],["2024-07-25T01:00:51.010000"],["2024-07-25T01:00:52.010000"],["2024-07-25T01:00:53.010000"],["2024-07-25T01:00:54.010000"],["2024-07-25T01:00:55.010000"],["2024-07-25T01:00:56.010000"],["2024-07-25T01:00:57.010000"],["2024-07-25T01:00:58.010000"],["2024-07-25T01:00:59.010000"],["2024-07-25T01:01:00.010000"],["2024-07-25T01:01:01.010000"],["2024-07-25T01:01:02.010000"],["2024-07-25T01:01:03.010000"],["2024-07-25T01:01:04.010000"],["2024-07-25T01:01:05.010000"],["2024-07-25T01:01:06.010000"],["2024-07-25T01:01:07.010000"],["2024-07-25T01:01:08.010000"],["2024-07-25T01:01:09.010000"],["2024-07-25T01:01:10.010000"],["2024-07-25T01:01:11.010000"],["2024-07-25T01:01:12.010000"],["2024-07-25T01:01:13.010000"],["2024-07-25T01:01:14.010000"],["2024-07-25T01:01:15.010000"],["2024-07-25T01:01:16.010000"],["2024-07-25T01:01:17.010000"],["2024-07-25T01:01:18.010000"],["2024-07-25T01:01:19.010000"],["2024-07-25T01:01:20.010000"],["2024-07-25T01:01:21.010000"],["2024-07-25T01:01:22.010000"],["2024-07-25T01:01:23.010000"],["2024-07-25T01:01:24.010000"],["2024-07-25T01:01:25.010000"],["2024-07-25T01:01:26.010000"],["2024-07-25T01:01:27.010000"],["2024-07-25T01:01:28.010000"],["2024-07-25T01:01:29.010000"],["2024-07-25T01:01:30.010000"],["2024-07-25T01:01:31.010000"],["2024-07-25T01:01:32.010000"],["2024-07-25T01:01:33.010000"],["2024-07-25T01:01:34.010000"],["2024-07-25T01:01:35.010000"],["2024-07-25T01:01:36.010000"],["2024-07-25T01:01:37.010000"],["2024-07-25T01:01:38.010000"],["2024-07-25T01:01:39.010000"],["2024-07-25T01:01:40.010000"],["2024-07-25T01:01:41.010000"],["2024-07-25T01:01:42.010000"],["2024-07-25T01:01:43.010000"],["2024-07-25T01:01:44.010000"],["2024-07-25T01:01:45.010000"],["2024-07-25T01:01:46.010000"],["2024-07-25T01:01:47.010000"],["2024-07-25T01:01:48.010000"],["2024-07-25T01:01:49.010000"],["2024-07-25T01:01:50.010000"],["2024-07-25T01:01:51.010000"],["2024-07-25T01:01:52.010000"],["2024-07-25T01:01:53.010000"],["2024-07-25T01:01:54.010000"],["2024-07-25T01:01:55.010000"],["2024-07-25T01:01:56.010000"],["2024-07-25T01:01:57.010000"],["2024-07-25T01:01:58.010000"],["2024-07-25T01:01:59.010000"],["2024-07-25T01:02:00.010000"],["2024-07-25T01:02:01.010000"],["2024-07-25T01:02:02.010000"],["2024-07-25T01:02:03.010000"],["2024-07-25T01:02:04.010000"],["2024-07-25T01:02:05.010000"],["2024-07-25T01:02:06.010000"],["2024-07-25T01:02:07.010000"],["2024-07-25T01:02:08.010000"],["2024-07-25T01:02:09.010000"],["2024-07-25T01:02:10.010000"],["2024-07-25T01:02:11.010000"],["2024-07-25T01:02:12.010000"],["2024-07-25T01:02:13.010000"],["2024-07-25T01:02:14.010000"],["2024-07-25T01:02:15.010000"],["2024-07-25T01:02:16.010000"],["2024-07-25T01:02:17.010000"],["2024-07-25T01:02:18.010000"],["2024-07-25T01:02:19.010000"],["2024-07-25T01:02:20.010000"],["2024-07-25T01:02:21.010000"],["2024-07-25T01:02:22.010000"],["2024-07-25T01:02:23.010000"],["2024-07-25T01:02:24.010000"],["2024-07-25T01:02:25.010000"],["2024-07-25T01:02:26.010000"],["2024-07-25T01:02:27.010000"],["2024-07-25T01:02:28.010000"],["2024-07-25T01:02:29.010000"],["2024-07-25T01:02:30.010000"],["2024-07-25T01:02:31.010000"],["2024-07-25T01:02:32.010000"],["2024-07-25T01:02:33.010000"],["2024-07-25T01:02:34.010000"],["2024-07-25T01:02:35.010000"],["2024-07-25T01:02:36.010000"],["2024-07-25T01:02:37.010000"],["2024-07-25T01:02:38.010000"],["2024-07-25T01:02:39.010000"],["2024-07-25T01:02:40.010000"],["2024-07-25T01:02:41.010000"],["2024-07-25T01:02:42.010000"],["2024-07-25T01:02:43.010000"],["2024-07-25T01:02:44.010000"],["2024-07-25T01:02:45.010000"],["2024-07-25T01:02:46.010000"],["2024-07-25T01:02:47.010000"],["2024-07-25T01:02:48.010000"],["2024-07-25T01:02:49.010000"],["2024-07-25T01:02:50.010000"],["2024-07-25T01:02:51.010000"],["2024-07-25T01:02:52.010000"],["2024-07-25T01:02:53.010000"],["2024-07-25T01:02:54.010000"],["2024-07-25T01:02:55.010000"],["2024-07-25T01:02:56.010000"],["2024-07-25T01:02:57.010000"],["2024-07-25T01:02:58.010000"],["2024-07-25T01:02:59.010000"],["2024-07-25T01:03:00.010000"],["2024-07-25T01:03:01.010000"],["2024-07-25T01:03:02.010000"],["2024-07-25T01:03:03.010000"],["2024-07-25T01:03:04.010000"],["2024-07-25T01:03:05.010000"],["2024-07-25T01:03:06.010000"],["2024-07-25T01:03:07.010000"],["2024-07-25T01:03:08.010000"],["2024-07-25T01:03:09.010000"],["2024-07-25T01:03:10.010000"],["2024-07-25T01:03:11.010000"],["2024-07-25T01:03:12.010000"],["2024-07-25T01:03:13.010000"],["2024-07-25T01:03:14.010000"],["2024-07-25T01:03:15.010000"],["2024-07-25T01:03:16.010000"],["2024-07-25T01:03:17.010000"],["2024-07-25T01:03:18.010000"],["2024-07-25T01:03:19.010000"],["2024-07-25T01:03:20.010000"],["2024-07-25T01:03:21.010000"],["2024-07-25T01:03:22.010000"],["2024-07-25T01:03:23.010000"],["2024-07-25T01:03:24.010000"],["2024-07-25T01:03:25.010000"],["2024-07-25T01:03:26.010000"],["2024-07-25T01:03:27.010000"],["2024-07-25T01:03:28.010000"],["2024-07-25T01:03:29.010000"],["2024-07-25T01:03:30.010000"],["2024-07-25T01:03:31.010000"],["2024-07-25T01:03:32.010000"],["2024-07-25T01:03:33.010000"],["2024-07-25T01:03:34.010000"],["2024-07-25T01:03:35.010000"],["2024-07-25T01:03:36.010000"],["2024-07-25T01:03:37.010000"],["2024-07-25T01:03:38.010000"],["2024-07-25T01:03:39.010000"],["2024-07-25T01:03:40.010000"],["2024-07-25T01:03:41.010000"],["2024-07-25T01:03:42.010000"],["2024-07-25T01:03:43.010000"],["2024-07-25T01:03:44.010000"],["2024-07-25T01:03:45.010000"],["2024-07-25T01:03:46.010000"],["2024-07-25T01:03:47.010000"],["2024-07-25T01:03:48.010000"],["2024-07-25T01:03:49.010000"],["2024-07-25T01:03:50.010000"],["2024-07-25T01:03:51.010000"],["2024-07-25T01:03:52.010000"],["2024-07-25T01:03:53.010000"],["2024-07-25T01:03:54.010000"],["2024-07-25T01:03:55.010000"],["2024-07-25T01:03:56.010000"],["2024-07-25T01:03:57.010000"],["2024-07-25T01:03:58.010000"],["2024-07-25T01:03:59.010000"],["2024-07-25T01:04:00.010000"],["2024-07-25T01:04:01.010000"],["2024-07-25T01:04:02.010000"],["2024-07-25T01:04:03.010000"],["2024-07-25T01:04:04.010000"],["2024-07-25T01:04:05.010000"],["2024-07-25T01:04:06.010000"],["2024-07-25T01:04:07.010000"],["2024-07-25T01:04:08.010000"],["2024-07-25T01:04:09.010000"],["2024-07-25T01:04:10.010000"],["2024-07-25T01:04:11.010000"],["2024-07-25T01:04:12.010000"],["2024-07-25T01:04:13.010000"],["2024-07-25T01:04:14.010000"],["2024-07-25T01:04:15.010000"],["2024-07-25T01:04:16.010000"],["2024-07-25T01:04:17.010000"],["2024-07-25T01:04:18.010000"],["2024-07-25T01:04:19.010000"],["2024-07-25T01:04:20.010000"],["2024-07-25T01:04:21.010000"],["2024-07-25T01:04:22.010000"],["2024-07-25T01:04:23.010000"],["2024-07-25T01:04:24.010000"],["2024-07-25T01:04:25.010000"],["2024-07-25T01:04:26.010000"],["2024-07-25T01:04:27.010000"],["2024-07-25T01:04:28.010000"],["2024-07-25T01:04:29.010000"],["2024-07-25T01:04:30.010000"],["2024-07-25T01:04:31.010000"],["2024-07-25T01:04:32.010000"],["2024-07-25T01:04:33.010000"],["2024-07-25T01:04:34.010000"],["2024-07-25T01:04:35.010000"],["2024-07-25T01:04:36.010000"],["2024-07-25T01:04:37.010000"],["2024-07-25T01:04:38.010000"],["2024-07-25T01:04:39.010000"],["2024-07-25T01:04:40.010000"],["2024-07-25T01:04:41.010000"],["2024-07-25T01:04:42.010000"],["2024-07-25T01:04:43.010000"],["2024-07-25T01:04:44.010000"],["2024-07-25T01:04:45.010000"],["2024-07-25T01:04:46.010000"],["2024-07-25T01:04:47.010000"],["2024-07-25T01:04:48.010000"],["2024-07-25T01:04:49.010000"],["2024-07-25T01:04:50.010000"],["2024-07-25T01:04:51.010000"],["2024-07-25T01:04:52.010000"],["2024-07-25T01:04:53.010000"],["2024-07-25T01:04:54.010000"],["2024-07-25T01:04:55.010000"],["2024-07-25T01:04:56.010000"],["2024-07-25T01:04:57.010000"],["2024-07-25T01:04:58.010000"],["2024-07-25T01:04:59.010000"],["2024-07-25T01:05:00.010000"],["2024-07-25T01:05:01.010000"],["2024-07-25T01:05:02.010000"],["2024-07-25T01:05:03.010000"],["2024-07-25T01:05:04.010000"],["2024-07-25T01:05:05.010000"],["2024-07-25T01:05:06.010000"],["2024-07-25T01:05:07.010000"],["2024-07-25T01:05:08.010000"],["2024-07-25T01:05:09.010000"],["2024-07-25T01:05:10.010000"],["2024-07-25T01:05:11.010000"],["2024-07-25T01:05:12.010000"],["2024-07-25T01:05:13.010000"],["2024-07-25T01:05:14.010000"],["2024-07-25T01:05:15.010000"],["2024-07-25T01:05:16.010000"],["2024-07-25T01:05:17.010000"],["2024-07-25T01:05:18.010000"],["2024-07-25T01:05:19.010000"],["2024-07-25T01:05:20.010000"],["2024-07-25T01:05:21.010000"],["2024-07-25T01:05:22.010000"],["2024-07-25T01:05:23.010000"],["2024-07-25T01:05:24.010000"],["2024-07-25T01:05:25.010000"],["2024-07-25T01:05:26.010000"],["2024-07-25T01:05:27.010000"],["2024-07-25T01:05:28.010000"],["2024-07-25T01:05:29.010000"],["2024-07-25T01:05:30.010000"],["2024-07-25T01:05:31.010000"],["2024-07-25T01:05:32.010000"],["2024-07-25T01:05:33.010000"],["2024-07-25T01:05:34.010000"],["2024-07-25T01:05:35.010000"],["2024-07-25T01:05:36.010000"],["2024-07-25T01:05:37.010000"],["2024-07-25T01:05:38.010000"],["2024-07-25T01:05:39.010000"],["2024-07-25T01:05:40.010000"],["2024-07-25T01:05:41.010000"],["2024-07-25T01:05:42.010000"],["2024-07-25T01:05:43.010000"],["2024-07-25T01:05:44.010000"],["2024-07-25T01:05:45.010000"],["2024-07-25T01:05:46.010000"],["2024-07-25T01:05:47.010000"],["2024-07-25T01:05:48.010000"],["2024-07-25T01:05:49.010000"],["2024-07-25T01:05:50.010000"],["2024-07-25T01:05:51.010000"],["2024-07-25T01:05:52.010000"],["2024-07-25T01:05:53.010000"],["2024-07-25T01:05:54.010000"],["2024-07-25T01:05:55.010000"],["2024-07-25T01:05:56.010000"],["2024-07-25T01:05:57.010000"],["2024-07-25T01:05:58.010000"],["2024-07-25T01:05:59.010000"],["2024-07-25T01:06:00.010000"],["2024-07-25T01:06:01.010000"],["2024-07-25T01:06:02.010000"],["2024-07-25T01:06:03.010000"],["2024-07-25T01:06:04.010000"],["2024-07-25T01:06:05.010000"],["2024-07-25T01:06:06.010000"],["2024-07-25T01:06:07.010000"],["2024-07-25T01:06:08.010000"],["2024-07-25T01:06:09.010000"],["2024-07-25T01:06:10.010000"],["2024-07-25T01:06:11.010000"],["2024-07-25T01:06:12.010000"],["2024-07-25T01:06:13.010000"],["2024-07-25T01:06:14.010000"],["2024-07-25T01:06:15.010000"],["2024-07-25T01:06:16.010000"],["2024-07-25T01:06:17.010000"],["2024-07-25T01:06:18.010000"],["2024-07-25T01:06:19.010000"],["2024-07-25T01:06:20.010000"],["2024-07-25T01:06:21.010000"],["2024-07-25T01:06:22.010000"],["2024-07-25T01:06:23.010000"],["2024-07-25T01:06:24.010000"],["2024-07-25T01:06:25.010000"],["2024-07-25T01:06:26.010000"],["2024-07-25T01:06:27.010000"],["2024-07-25T01:06:28.010000"],["2024-07-25T01:06:29.010000"],["2024-07-25T01:06:30.010000"],["2024-07-25T01:06:31.010000"],["2024-07-25T01:06:32.010000"],["2024-07-25T01:06:33.010000"],["2024-07-25T01:06:34.010000"],["2024-07-25T01:06:35.010000"],["2024-07-25T01:06:36.010000"],["2024-07-25T01:06:37.010000"],["2024-07-25T01:06:38.010000"],["2024-07-25T01:06:39.010000"],["2024-07-25T01:06:40.010000"],["2024-07-25T01:06:41.010000"],["2024-07-25T01:06:42.010000"],["2024-07-25T01:06:43.010000"],["2024-07-25T01:06:44.010000"],["2024-07-25T01:06:45.010000"],["2024-07-25T01:06:46.010000"],["2024-07-25T01:06:47.010000"],["2024-07-25T01:06:48.010000"],["2024-07-25T01:06:49.010000"],["2024-07-25T01:06:50.010000"],["2024-07-25T01:06:51.010000"],["2024-07-25T01:06:52.010000"],["2024-07-25T01:06:53.010000"],["2024-07-25T01:06:54.010000"],["2024-07-25T01:06:55.010000"],["2024-07-25T01:06:56.010000"],["2024-07-25T01:06:57.010000"],["2024-07-25T01:06:58.010000"],["2024-07-25T01:06:59.010000"],["2024-07-25T01:07:00.010000"],["2024-07-25T01:07:01.010000"],["2024-07-25T01:07:02.010000"],["2024-07-25T01:07:03.010000"],["2024-07-25T01:07:04.010000"],["2024-07-25T01:07:05.010000"],["2024-07-25T01:07:06.010000"],["2024-07-25T01:07:07.010000"],["2024-07-25T01:07:08.010000"],["2024-07-25T01:07:09.010000"],["2024-07-25T01:07:10.010000"],["2024-07-25T01:07:11.010000"],["2024-07-25T01:07:12.010000"],["2024-07-25T01:07:13.010000"],["2024-07-25T01:07:14.010000"],["2024-07-25T01:07:15.010000"],["2024-07-25T01:07:16.010000"],["2024-07-25T01:07:17.010000"],["2024-07-25T01:07:18.010000"],["2024-07-25T01:07:19.010000"],["2024-07-25T01:07:20.010000"],["2024-07-25T01:07:21.010000"],["2024-07-25T01:07:22.010000"],["2024-07-25T01:07:23.010000"],["2024-07-25T01:07:24.010000"],["2024-07-25T01:07:25.010000"],["2024-07-25T01:07:26.010000"],["2024-07-25T01:07:27.010000"],["2024-07-25T01:07:28.010000"],["2024-07-25T01:07:29.010000"],["2024-07-25T01:07:30.010000"],["2024-07-25T01:07:31.010000"],["2024-07-25T01:07:32.010000"],["2024-07-25T01:07:33.010000"],["2024-07-25T01:07:34.010000"],["2024-07-25T01:07:35.010000"],["2024-07-25T01:07:36.010000"],["2024-07-25T01:07:37.010000"],["2024-07-25T01:07:38.010000"],["2024-07-25T01:07:39.010000"],["2024-07-25T01:07:40.010000"],["2024-07-25T01:07:41.010000"],["2024-07-25T01:07:42.010000"],["2024-07-25T01:07:43.010000"],["2024-07-25T01:07:44.010000"],["2024-07-25T01:07:45.010000"],["2024-07-25T01:07:46.010000"],["2024-07-25T01:07:47.010000"],["2024-07-25T01:07:48.010000"],["2024-07-25T01:07:49.010000"],["2024-07-25T01:07:50.010000"],["2024-07-25T01:07:51.010000"],["2024-07-25T01:07:52.010000"],["2024-07-25T01:07:53.010000"],["2024-07-25T01:07:54.010000"],["2024-07-25T01:07:55.010000"],["2024-07-25T01:07:56.010000"],["2024-07-25T01:07:57.010000"],["2024-07-25T01:07:58.010000"],["2024-07-25T01:07:59.010000"],["2024-07-25T01:08:00.010000"],["2024-07-25T01:08:01.010000"],["2024-07-25T01:08:02.010000"],["2024-07-25T01:08:03.010000"],["2024-07-25T01:08:04.010000"],["2024-07-25T01:08:05.010000"],["2024-07-25T01:08:06.010000"],["2024-07-25T01:08:07.010000"],["2024-07-25T01:08:08.010000"],["2024-07-25T01:08:09.010000"],["2024-07-25T01:08:10.010000"],["2024-07-25T01:08:11.010000"],["2024-07-25T01:08:12.010000"],["2024-07-25T01:08:13.010000"],["2024-07-25T01:08:14.010000"],["2024-07-25T01:08:15.010000"],["2024-07-25T01:08:16.010000"],["2024-07-25T01:08:17.010000"],["2024-07-25T01:08:18.010000"],["2024-07-25T01:08:19.010000"],["2024-07-25T01:08:20.010000"],["2024-07-25T01:08:21.010000"],["2024-07-25T01:08:22.010000"],["2024-07-25T01:08:23.010000"],["2024-07-25T01:08:24.010000"],["2024-07-25T01:08:25.010000"],["2024-07-25T01:08:26.010000"],["2024-07-25T01:08:27.010000"],["2024-07-25T01:08:28.010000"],["2024-07-25T01:08:29.010000"],["2024-07-25T01:08:30.010000"],["2024-07-25T01:08:31.010000"],["2024-07-25T01:08:32.010000"],["2024-07-25T01:08:33.010000"],["2024-07-25T01:08:34.010000"],["2024-07-25T01:08:35.010000"],["2024-07-25T01:08:36.010000"],["2024-07-25T01:08:37.010000"],["2024-07-25T01:08:38.010000"],["2024-07-25T01:08:39.010000"],["2024-07-25T01:08:40.010000"],["2024-07-25T01:08:41.010000"],["2024-07-25T01:08:42.010000"],["2024-07-25T01:08:43.010000"],["2024-07-25T01:08:44.010000"],["2024-07-25T01:08:45.010000"],["2024-07-25T01:08:46.010000"],["2024-07-25T01:08:47.010000"],["2024-07-25T01:08:48.010000"],["2024-07-25T01:08:49.010000"],["2024-07-25T01:08:50.010000"],["2024-07-25T01:08:51.010000"],["2024-07-25T01:08:52.010000"],["2024-07-25T01:08:53.010000"],["2024-07-25T01:08:54.010000"],["2024-07-25T01:08:55.010000"],["2024-07-25T01:08:56.010000"],["2024-07-25T01:08:57.010000"],["2024-07-25T01:08:58.010000"],["2024-07-25T01:08:59.010000"],["2024-07-25T01:09:00.010000"],["2024-07-25T01:09:01.010000"],["2024-07-25T01:09:02.010000"],["2024-07-25T01:09:03.010000"],["2024-07-25T01:09:04.010000"],["2024-07-25T01:09:05.010000"],["2024-07-25T01:09:06.010000"],["2024-07-25T01:09:07.010000"],["2024-07-25T01:09:08.010000"],["2024-07-25T01:09:09.010000"],["2024-07-25T01:09:10.010000"],["2024-07-25T01:09:11.010000"],["2024-07-25T01:09:12.010000"],["2024-07-25T01:09:13.010000"],["2024-07-25T01:09:14.010000"],["2024-07-25T01:09:15.010000"],["2024-07-25T01:09:16.010000"],["2024-07-25T01:09:17.010000"],["2024-07-25T01:09:18.010000"],["2024-07-25T01:09:19.010000"],["2024-07-25T01:09:20.010000"],["2024-07-25T01:09:21.010000"],["2024-07-25T01:09:22.010000"],["2024-07-25T01:09:23.010000"],["2024-07-25T01:09:24.010000"],["2024-07-25T01:09:25.010000"],["2024-07-25T01:09:26.010000"],["2024-07-25T01:09:27.010000"],["2024-07-25T01:09:28.010000"],["2024-07-25T01:09:29.010000"],["2024-07-25T01:09:30.010000"],["2024-07-25T01:09:31.010000"],["2024-07-25T01:09:32.010000"],["2024-07-25T01:09:33.010000"],["2024-07-25T01:09:34.010000"],["2024-07-25T01:09:35.010000"],["2024-07-25T01:09:36.010000"],["2024-07-25T01:09:37.010000"],["2024-07-25T01:09:38.010000"],["2024-07-25T01:09:39.010000"],["2024-07-25T01:09:40.010000"],["2024-07-25T01:09:41.010000"],["2024-07-25T01:09:42.010000"],["2024-07-25T01:09:43.010000"],["2024-07-25T01:09:44.010000"],["2024-07-25T01:09:45.010000"],["2024-07-25T01:09:46.010000"],["2024-07-25T01:09:47.010000"],["2024-07-25T01:09:48.010000"],["2024-07-25T01:09:49.010000"],["2024-07-25T01:09:50.010000"],["2024-07-25T01:09:51.010000"],["2024-07-25T01:09:52.010000"],["2024-07-25T01:09:53.010000"],["2024-07-25T01:09:54.010000"],["2024-07-25T01:09:55.010000"],["2024-07-25T01:09:56.010000"],["2024-07-25T01:09:57.010000"],["2024-07-25T01:09:58.010000"],["2024-07-25T01:09:59.010000"],["2024-07-25T01:10:00.010000"],["2024-07-25T01:10:01.010000"],["2024-07-25T01:10:02.010000"],["2024-07-25T01:10:03.010000"],["2024-07-25T01:10:04.010000"],["2024-07-25T01:10:05.010000"],["2024-07-25T01:10:06.010000"],["2024-07-25T01:10:07.010000"],["2024-07-25T01:10:08.010000"],["2024-07-25T01:10:09.010000"],["2024-07-25T01:10:10.010000"],["2024-07-25T01:10:11.010000"],["2024-07-25T01:10:12.010000"],["2024-07-25T01:10:13.010000"],["2024-07-25T01:10:14.010000"],["2024-07-25T01:10:15.010000"],["2024-07-25T01:10:16.010000"],["2024-07-25T01:10:17.010000"],["2024-07-25T01:10:18.010000"],["2024-07-25T01:10:19.010000"],["2024-07-25T01:10:20.010000"],["2024-07-25T01:10:21.010000"],["2024-07-25T01:10:22.010000"],["2024-07-25T01:10:23.010000"],["2024-07-25T01:10:24.010000"],["2024-07-25T01:10:25.010000"],["2024-07-25T01:10:26.010000"],["2024-07-25T01:10:27.010000"],["2024-07-25T01:10:28.010000"],["2024-07-25T01:10:29.010000"],["2024-07-25T01:10:30.010000"],["2024-07-25T01:10:31.010000"],["2024-07-25T01:10:32.010000"],["2024-07-25T01:10:33.010000"],["2024-07-25T01:10:34.010000"],["2024-07-25T01:10:35.010000"],["2024-07-25T01:10:36.010000"],["2024-07-25T01:10:37.010000"],["2024-07-25T01:10:38.010000"],["2024-07-25T01:10:39.010000"],["2024-07-25T01:10:40.010000"],["2024-07-25T01:10:41.010000"],["2024-07-25T01:10:42.010000"],["2024-07-25T01:10:43.010000"],["2024-07-25T01:10:44.010000"],["2024-07-25T01:10:45.010000"],["2024-07-25T01:10:46.010000"],["2024-07-25T01:10:47.010000"],["2024-07-25T01:10:48.010000"],["2024-07-25T01:10:49.010000"],["2024-07-25T01:10:50.010000"],["2024-07-25T01:10:51.010000"],["2024-07-25T01:10:52.010000"],["2024-07-25T01:10:53.010000"],["2024-07-25T01:10:54.010000"],["2024-07-25T01:10:55.010000"],["2024-07-25T01:10:56.010000"],["2024-07-25T01:10:57.010000"],["2024-07-25T01:10:58.010000"],["2024-07-25T01:10:59.010000"],["2024-07-25T01:11:00.010000"],["2024-07-25T01:11:01.010000"],["2024-07-25T01:11:02.010000"],["2024-07-25T01:11:03.010000"],["2024-07-25T01:11:04.010000"],["2024-07-25T01:11:05.010000"],["2024-07-25T01:11:06.010000"],["2024-07-25T01:11:07.010000"],["2024-07-25T01:11:08.010000"],["2024-07-25T01:11:09.010000"],["2024-07-25T01:11:10.010000"],["2024-07-25T01:11:11.010000"],["2024-07-25T01:11:12.010000"],["2024-07-25T01:11:13.010000"],["2024-07-25T01:11:14.010000"],["2024-07-25T01:11:15.010000"],["2024-07-25T01:11:16.010000"],["2024-07-25T01:11:17.010000"],["2024-07-25T01:11:18.010000"],["2024-07-25T01:11:19.010000"],["2024-07-25T01:11:20.010000"],["2024-07-25T01:11:21.010000"],["2024-07-25T01:11:22.010000"],["2024-07-25T01:11:23.010000"],["2024-07-25T01:11:24.010000"],["2024-07-25T01:11:25.010000"],["2024-07-25T01:11:26.010000"],["2024-07-25T01:11:27.010000"],["2024-07-25T01:11:28.010000"],["2024-07-25T01:11:29.010000"],["2024-07-25T01:11:30.010000"],["2024-07-25T01:11:31.010000"],["2024-07-25T01:11:32.010000"],["2024-07-25T01:11:33.010000"],["2024-07-25T01:11:34.010000"],["2024-07-25T01:11:35.010000"],["2024-07-25T01:11:36.010000"],["2024-07-25T01:11:37.010000"],["2024-07-25T01:11:38.010000"],["2024-07-25T01:11:39.010000"],["2024-07-25T01:11:40.010000"],["2024-07-25T01:11:41.010000"],["2024-07-25T01:11:42.010000"],["2024-07-25T01:11:43.010000"],["2024-07-25T01:11:44.010000"],["2024-07-25T01:11:45.010000"],["2024-07-25T01:11:46.010000"],["2024-07-25T01:11:47.010000"],["2024-07-25T01:11:48.010000"],["2024-07-25T01:11:49.010000"],["2024-07-25T01:11:50.010000"],["2024-07-25T01:11:51.010000"],["2024-07-25T01:11:52.010000"],["2024-07-25T01:11:53.010000"],["2024-07-25T01:11:54.010000"],["2024-07-25T01:11:55.010000"],["2024-07-25T01:11:56.010000"],["2024-07-25T01:11:57.010000"],["2024-07-25T01:11:58.010000"],["2024-07-25T01:11:59.010000"],["2024-07-25T01:12:00.010000"],["2024-07-25T01:12:01.010000"],["2024-07-25T01:12:02.010000"],["2024-07-25T01:12:03.010000"],["2024-07-25T01:12:04.010000"],["2024-07-25T01:12:05.010000"],["2024-07-25T01:12:06.010000"],["2024-07-25T01:12:07.010000"],["2024-07-25T01:12:08.010000"],["2024-07-25T01:12:09.010000"],["2024-07-25T01:12:10.010000"],["2024-07-25T01:12:11.010000"],["2024-07-25T01:12:12.010000"],["2024-07-25T01:12:13.010000"],["2024-07-25T01:12:14.010000"],["2024-07-25T01:12:15.010000"],["2024-07-25T01:12:16.010000"],["2024-07-25T01:12:17.010000"],["2024-07-25T01:12:18.010000"],["2024-07-25T01:12:19.010000"],["2024-07-25T01:12:20.010000"],["2024-07-25T01:12:21.010000"],["2024-07-25T01:12:22.010000"],["2024-07-25T01:12:23.010000"],["2024-07-25T01:12:24.010000"],["2024-07-25T01:12:25.010000"],["2024-07-25T01:12:26.010000"],["2024-07-25T01:12:27.010000"],["2024-07-25T01:12:28.010000"],["2024-07-25T01:12:29.010000"],["2024-07-25T01:12:30.010000"],["2024-07-25T01:12:31.010000"],["2024-07-25T01:12:32.010000"],["2024-07-25T01:12:33.010000"],["2024-07-25T01:12:34.010000"],["2024-07-25T01:12:35.010000"],["2024-07-25T01:12:36.010000"],["2024-07-25T01:12:37.010000"],["2024-07-25T01:12:38.010000"],["2024-07-25T01:12:39.010000"],["2024-07-25T01:12:40.010000"],["2024-07-25T01:12:41.010000"],["2024-07-25T01:12:42.010000"],["2024-07-25T01:12:43.010000"],["2024-07-25T01:12:44.010000"],["2024-07-25T01:12:45.010000"],["2024-07-25T01:12:46.010000"],["2024-07-25T01:12:47.010000"],["2024-07-25T01:12:48.010000"],["2024-07-25T01:12:49.010000"],["2024-07-25T01:12:50.010000"],["2024-07-25T01:12:51.010000"],["2024-07-25T01:12:52.010000"],["2024-07-25T01:12:53.010000"],["2024-07-25T01:12:54.010000"],["2024-07-25T01:12:55.010000"],["2024-07-25T01:12:56.010000"],["2024-07-25T01:12:57.010000"],["2024-07-25T01:12:58.010000"],["2024-07-25T01:12:59.010000"],["2024-07-25T01:13:00.010000"],["2024-07-25T01:13:01.010000"],["2024-07-25T01:13:02.010000"],["2024-07-25T01:13:03.010000"],["2024-07-25T01:13:04.010000"],["2024-07-25T01:13:05.010000"],["2024-07-25T01:13:06.010000"],["2024-07-25T01:13:07.010000"],["2024-07-25T01:13:08.010000"],["2024-07-25T01:13:09.010000"],["2024-07-25T01:13:10.010000"],["2024-07-25T01:13:11.010000"],["2024-07-25T01:13:12.010000"],["2024-07-25T01:13:13.010000"],["2024-07-25T01:13:14.010000"],["2024-07-25T01:13:15.010000"],["2024-07-25T01:13:16.010000"],["2024-07-25T01:13:17.010000"],["2024-07-25T01:13:18.010000"],["2024-07-25T01:13:19.010000"],["2024-07-25T01:13:20.010000"],["2024-07-25T01:13:21.010000"],["2024-07-25T01:13:22.010000"],["2024-07-25T01:13:23.010000"],["2024-07-25T01:13:24.010000"],["2024-07-25T01:13:25.010000"],["2024-07-25T01:13:26.010000"],["2024-07-25T01:13:27.010000"],["2024-07-25T01:13:28.010000"],["2024-07-25T01:13:29.010000"],["2024-07-25T01:13:30.010000"],["2024-07-25T01:13:31.010000"],["2024-07-25T01:13:32.010000"],["2024-07-25T01:13:33.010000"],["2024-07-25T01:13:34.010000"],["2024-07-25T01:13:35.010000"],["2024-07-25T01:13:36.010000"],["2024-07-25T01:13:37.010000"],["2024-07-25T01:13:38.010000"],["2024-07-25T01:13:39.010000"],["2024-07-25T01:13:40.010000"],["2024-07-25T01:13:41.010000"],["2024-07-25T01:13:42.010000"],["2024-07-25T01:13:43.010000"],["2024-07-25T01:13:44.010000"],["2024-07-25T01:13:45.010000"],["2024-07-25T01:13:46.010000"],["2024-07-25T01:13:47.010000"],["2024-07-25T01:13:48.010000"],["2024-07-25T01:13:49.010000"],["2024-07-25T01:13:50.010000"],["2024-07-25T01:13:51.010000"],["2024-07-25T01:13:52.010000"],["2024-07-25T01:13:53.010000"],["2024-07-25T01:13:54.010000"],["2024-07-25T01:13:55.010000"],["2024-07-25T01:13:56.010000"],["2024-07-25T01:13:57.010000"],["2024-07-25T01:13:58.010000"],["2024-07-25T01:13:59.010000"],["2024-07-25T01:14:00.010000"],["2024-07-25T01:14:01.010000"],["2024-07-25T01:14:02.010000"],["2024-07-25T01:14:03.010000"],["2024-07-25T01:14:04.010000"],["2024-07-25T01:14:05.010000"],["2024-07-25T01:14:06.010000"],["2024-07-25T01:14:07.010000"],["2024-07-25T01:14:08.010000"],["2024-07-25T01:14:09.010000"],["2024-07-25T01:14:10.010000"],["2024-07-25T01:14:11.010000"],["2024-07-25T01:14:12.010000"],["2024-07-25T01:14:13.010000"],["2024-07-25T01:14:14.010000"],["2024-07-25T01:14:15.010000"],["2024-07-25T01:14:16.010000"],["2024-07-25T01:14:17.010000"],["2024-07-25T01:14:18.010000"],["2024-07-25T01:14:19.010000"],["2024-07-25T01:14:20.010000"],["2024-07-25T01:14:21.010000"],["2024-07-25T01:14:22.010000"],["2024-07-25T01:14:23.010000"],["2024-07-25T01:14:24.010000"],["2024-07-25T01:14:25.010000"],["2024-07-25T01:14:26.010000"],["2024-07-25T01:14:27.010000"],["2024-07-25T01:14:28.010000"],["2024-07-25T01:14:29.010000"],["2024-07-25T01:14:30.010000"],["2024-07-25T01:14:31.010000"],["2024-07-25T01:14:32.010000"],["2024-07-25T01:14:33.010000"],["2024-07-25T01:14:34.010000"],["2024-07-25T01:14:35.010000"],["2024-07-25T01:14:36.010000"],["2024-07-25T01:14:37.010000"],["2024-07-25T01:14:38.010000"],["2024-07-25T01:14:39.010000"],["2024-07-25T01:14:40.010000"],["2024-07-25T01:14:41.010000"],["2024-07-25T01:14:42.010000"],["2024-07-25T01:14:43.010000"],["2024-07-25T01:14:44.010000"],["2024-07-25T01:14:45.010000"],["2024-07-25T01:14:46.010000"],["2024-07-25T01:14:47.010000"],["2024-07-25T01:14:48.010000"],["2024-07-25T01:14:49.010000"],["2024-07-25T01:14:50.010000"],["2024-07-25T01:14:51.010000"],["2024-07-25T01:14:52.010000"],["2024-07-25T01:14:53.010000"],["2024-07-25T01:14:54.010000"],["2024-07-25T01:14:55.010000"],["2024-07-25T01:14:56.010000"],["2024-07-25T01:14:57.010000"],["2024-07-25T01:14:58.010000"],["2024-07-25T01:14:59.010000"],["2024-07-25T01:15:00.010000"],["2024-07-25T01:15:01.010000"],["2024-07-25T01:15:02.010000"],["2024-07-25T01:15:03.010000"],["2024-07-25T01:15:04.010000"],["2024-07-25T01:15:05.010000"],["2024-07-25T01:15:06.010000"],["2024-07-25T01:15:07.010000"],["2024-07-25T01:15:08.010000"],["2024-07-25T01:15:09.010000"],["2024-07-25T01:15:10.010000"],["2024-07-25T01:15:11.010000"],["2024-07-25T01:15:12.010000"],["2024-07-25T01:15:13.010000"],["2024-07-25T01:15:14.010000"],["2024-07-25T01:15:15.010000"],["2024-07-25T01:15:16.010000"],["2024-07-25T01:15:17.010000"],["2024-07-25T01:15:18.010000"],["2024-07-25T01:15:19.010000"],["2024-07-25T01:15:20.010000"],["2024-07-25T01:15:21.010000"],["2024-07-25T01:15:22.010000"],["2024-07-25T01:15:23.010000"],["2024-07-25T01:15:24.010000"],["2024-07-25T01:15:25.010000"],["2024-07-25T01:15:26.010000"],["2024-07-25T01:15:27.010000"],["2024-07-25T01:15:28.010000"],["2024-07-25T01:15:29.010000"],["2024-07-25T01:15:30.010000"],["2024-07-25T01:15:31.010000"],["2024-07-25T01:15:32.010000"],["2024-07-25T01:15:33.010000"],["2024-07-25T01:15:34.010000"],["2024-07-25T01:15:35.010000"],["2024-07-25T01:15:36.010000"],["2024-07-25T01:15:37.010000"],["2024-07-25T01:15:38.010000"],["2024-07-25T01:15:39.010000"],["2024-07-25T01:15:40.010000"],["2024-07-25T01:15:41.010000"],["2024-07-25T01:15:42.010000"],["2024-07-25T01:15:43.010000"],["2024-07-25T01:15:44.010000"],["2024-07-25T01:15:45.010000"],["2024-07-25T01:15:46.010000"],["2024-07-25T01:15:47.010000"],["2024-07-25T01:15:48.010000"],["2024-07-25T01:15:49.010000"],["2024-07-25T01:15:50.010000"],["2024-07-25T01:15:51.010000"],["2024-07-25T01:15:52.010000"],["2024-07-25T01:15:53.010000"],["2024-07-25T01:15:54.010000"],["2024-07-25T01:15:55.010000"],["2024-07-25T01:15:56.010000"],["2024-07-25T01:15:57.010000"],["2024-07-25T01:15:58.010000"],["2024-07-25T01:15:59.010000"],["2024-07-25T01:16:00.010000"],["2024-07-25T01:16:01.010000"],["2024-07-25T01:16:02.010000"],["2024-07-25T01:16:03.010000"],["2024-07-25T01:16:04.010000"],["2024-07-25T01:16:05.010000"],["2024-07-25T01:16:06.010000"],["2024-07-25T01:16:07.010000"],["2024-07-25T01:16:08.010000"],["2024-07-25T01:16:09.010000"],["2024-07-25T01:16:10.010000"],["2024-07-25T01:16:11.010000"],["2024-07-25T01:16:12.010000"],["2024-07-25T01:16:13.010000"],["2024-07-25T01:16:14.010000"],["2024-07-25T01:16:15.010000"],["2024-07-25T01:16:16.010000"],["2024-07-25T01:16:17.010000"],["2024-07-25T01:16:18.010000"],["2024-07-25T01:16:19.010000"],["2024-07-25T01:16:20.010000"],["2024-07-25T01:16:21.010000"],["2024-07-25T01:16:22.010000"],["2024-07-25T01:16:23.010000"],["2024-07-25T01:16:24.010000"],["2024-07-25T01:16:25.010000"],["2024-07-25T01:16:26.010000"],["2024-07-25T01:16:27.010000"],["2024-07-25T01:16:28.010000"],["2024-07-25T01:16:29.010000"],["2024-07-25T01:16:30.010000"],["2024-07-25T01:16:31.010000"],["2024-07-25T01:16:32.010000"],["2024-07-25T01:16:33.010000"],["2024-07-25T01:16:34.010000"],["2024-07-25T01:16:35.010000"],["2024-07-25T01:16:36.010000"],["2024-07-25T01:16:37.010000"],["2024-07-25T01:16:38.010000"],["2024-07-25T01:16:39.010000"],["2024-07-25T01:16:40.010000"],["2024-07-25T01:16:41.010000"],["2024-07-25T01:16:42.010000"],["2024-07-25T01:16:43.010000"],["2024-07-25T01:16:44.010000"],["2024-07-25T01:16:45.010000"],["2024-07-25T01:16:46.010000"],["2024-07-25T01:16:47.010000"],["2024-07-25T01:16:48.010000"],["2024-07-25T01:16:49.010000"],["2024-07-25T01:16:50.010000"],["2024-07-25T01:16:51.010000"],["2024-07-25T01:16:52.010000"],["2024-07-25T01:16:53.010000"],["2024-07-25T01:16:54.010000"],["2024-07-25T01:16:55.010000"],["2024-07-25T01:16:56.010000"],["2024-07-25T01:16:57.010000"],["2024-07-25T01:16:58.010000"],["2024-07-25T01:16:59.010000"],["2024-07-25T01:17:00.010000"],["2024-07-25T01:17:01.010000"],["2024-07-25T01:17:02.010000"],["2024-07-25T01:17:03.010000"],["2024-07-25T01:17:04.010000"],["2024-07-25T01:17:05.010000"],["2024-07-25T01:17:06.010000"],["2024-07-25T01:17:07.010000"],["2024-07-25T01:17:08.010000"],["2024-07-25T01:17:09.010000"],["2024-07-25T01:17:10.010000"],["2024-07-25T01:17:11.010000"],["2024-07-25T01:17:12.010000"],["2024-07-25T01:17:13.010000"],["2024-07-25T01:17:14.010000"],["2024-07-25T01:17:15.010000"],["2024-07-25T01:17:16.010000"],["2024-07-25T01:17:17.010000"],["2024-07-25T01:17:18.010000"],["2024-07-25T01:17:19.010000"],["2024-07-25T01:17:20.010000"],["2024-07-25T01:17:21.010000"],["2024-07-25T01:17:22.010000"],["2024-07-25T01:17:23.010000"],["2024-07-25T01:17:24.010000"],["2024-07-25T01:17:25.010000"],["2024-07-25T01:17:26.010000"],["2024-07-25T01:17:27.010000"],["2024-07-25T01:17:28.010000"],["2024-07-25T01:17:29.010000"],["2024-07-25T01:17:30.010000"],["2024-07-25T01:17:31.010000"],["2024-07-25T01:17:32.010000"],["2024-07-25T01:17:33.010000"],["2024-07-25T01:17:34.010000"],["2024-07-25T01:17:35.010000"],["2024-07-25T01:17:36.010000"],["2024-07-25T01:17:37.010000"],["2024-07-25T01:17:38.010000"],["2024-07-25T01:17:39.010000"],["2024-07-25T01:17:40.010000"],["2024-07-25T01:17:41.010000"],["2024-07-25T01:17:42.010000"],["2024-07-25T01:17:43.010000"],["2024-07-25T01:17:44.010000"],["2024-07-25T01:17:45.010000"],["2024-07-25T01:17:46.010000"],["2024-07-25T01:17:47.010000"],["2024-07-25T01:17:48.010000"],["2024-07-25T01:17:49.010000"],["2024-07-25T01:17:50.010000"],["2024-07-25T01:17:51.010000"],["2024-07-25T01:17:52.010000"],["2024-07-25T01:17:53.010000"],["2024-07-25T01:17:54.010000"],["2024-07-25T01:17:55.010000"],["2024-07-25T01:17:56.010000"],["2024-07-25T01:17:57.010000"],["2024-07-25T01:17:58.010000"],["2024-07-25T01:17:59.010000"],["2024-07-25T01:18:00.010000"],["2024-07-25T01:18:01.010000"],["2024-07-25T01:18:02.010000"],["2024-07-25T01:18:03.010000"],["2024-07-25T01:18:04.010000"],["2024-07-25T01:18:05.010000"],["2024-07-25T01:18:06.010000"],["2024-07-25T01:18:07.010000"],["2024-07-25T01:18:08.010000"],["2024-07-25T01:18:09.010000"],["2024-07-25T01:18:10.010000"],["2024-07-25T01:18:11.010000"],["2024-07-25T01:18:12.010000"],["2024-07-25T01:18:13.010000"],["2024-07-25T01:18:14.010000"],["2024-07-25T01:18:15.010000"],["2024-07-25T01:18:16.010000"],["2024-07-25T01:18:17.010000"],["2024-07-25T01:18:18.010000"],["2024-07-25T01:18:19.010000"],["2024-07-25T01:18:20.010000"],["2024-07-25T01:18:21.010000"],["2024-07-25T01:18:22.010000"],["2024-07-25T01:18:23.010000"],["2024-07-25T01:18:24.010000"],["2024-07-25T01:18:25.010000"],["2024-07-25T01:18:26.010000"],["2024-07-25T01:18:27.010000"],["2024-07-25T01:18:28.010000"],["2024-07-25T01:18:29.010000"],["2024-07-25T01:18:30.010000"],["2024-07-25T01:18:31.010000"],["2024-07-25T01:18:32.010000"],["2024-07-25T01:18:33.010000"],["2024-07-25T01:18:34.010000"],["2024-07-25T01:18:35.010000"],["2024-07-25T01:18:36.010000"],["2024-07-25T01:18:37.010000"],["2024-07-25T01:18:38.010000"],["2024-07-25T01:18:39.010000"],["2024-07-25T01:18:40.010000"],["2024-07-25T01:18:41.010000"],["2024-07-25T01:18:42.010000"],["2024-07-25T01:18:43.010000"],["2024-07-25T01:18:44.010000"],["2024-07-25T01:18:45.010000"],["2024-07-25T01:18:46.010000"],["2024-07-25T01:18:47.010000"],["2024-07-25T01:18:48.010000"],["2024-07-25T01:18:49.010000"],["2024-07-25T01:18:50.010000"],["2024-07-25T01:18:51.010000"],["2024-07-25T01:18:52.010000"],["2024-07-25T01:18:53.010000"],["2024-07-25T01:18:54.010000"],["2024-07-25T01:18:55.010000"],["2024-07-25T01:18:56.010000"],["2024-07-25T01:18:57.010000"],["2024-07-25T01:18:58.010000"],["2024-07-25T01:18:59.010000"],["2024-07-25T01:19:00.010000"],["2024-07-25T01:19:01.010000"],["2024-07-25T01:19:02.010000"],["2024-07-25T01:19:03.010000"],["2024-07-25T01:19:04.010000"],["2024-07-25T01:19:05.010000"],["2024-07-25T01:19:06.010000"],["2024-07-25T01:19:07.010000"],["2024-07-25T01:19:08.010000"],["2024-07-25T01:19:09.010000"],["2024-07-25T01:19:10.010000"],["2024-07-25T01:19:11.010000"],["2024-07-25T01:19:12.010000"],["2024-07-25T01:19:13.010000"],["2024-07-25T01:19:14.010000"],["2024-07-25T01:19:15.010000"],["2024-07-25T01:19:16.010000"],["2024-07-25T01:19:17.010000"],["2024-07-25T01:19:18.010000"],["2024-07-25T01:19:19.010000"],["2024-07-25T01:19:20.010000"],["2024-07-25T01:19:21.010000"],["2024-07-25T01:19:22.010000"],["2024-07-25T01:19:23.010000"],["2024-07-25T01:19:24.010000"],["2024-07-25T01:19:25.010000"],["2024-07-25T01:19:26.010000"],["2024-07-25T01:19:27.010000"],["2024-07-25T01:19:28.010000"],["2024-07-25T01:19:29.010000"],["2024-07-25T01:19:30.010000"],["2024-07-25T01:19:31.010000"],["2024-07-25T01:19:32.010000"],["2024-07-25T01:19:33.010000"],["2024-07-25T01:19:34.010000"],["2024-07-25T01:19:35.010000"],["2024-07-25T01:19:36.010000"],["2024-07-25T01:19:37.010000"],["2024-07-25T01:19:38.010000"],["2024-07-25T01:19:39.010000"],["2024-07-25T01:19:40.010000"],["2024-07-25T01:19:41.010000"],["2024-07-25T01:19:42.010000"],["2024-07-25T01:19:43.010000"],["2024-07-25T01:19:44.010000"],["2024-07-25T01:19:45.010000"],["2024-07-25T01:19:46.010000"],["2024-07-25T01:19:47.010000"],["2024-07-25T01:19:48.010000"],["2024-07-25T01:19:49.010000"],["2024-07-25T01:19:50.010000"],["2024-07-25T01:19:51.010000"],["2024-07-25T01:19:52.010000"],["2024-07-25T01:19:53.010000"],["2024-07-25T01:19:54.010000"],["2024-07-25T01:19:55.010000"],["2024-07-25T01:19:56.010000"],["2024-07-25T01:19:57.010000"],["2024-07-25T01:19:58.010000"],["2024-07-25T01:19:59.010000"],["2024-07-25T01:20:00.010000"],["2024-07-25T01:20:01.010000"],["2024-07-25T01:20:02.010000"],["2024-07-25T01:20:03.010000"],["2024-07-25T01:20:04.010000"],["2024-07-25T01:20:05.010000"],["2024-07-25T01:20:06.010000"],["2024-07-25T01:20:07.010000"],["2024-07-25T01:20:08.010000"],["2024-07-25T01:20:09.010000"],["2024-07-25T01:20:10.010000"],["2024-07-25T01:20:11.010000"],["2024-07-25T01:20:12.010000"],["2024-07-25T01:20:13.010000"],["2024-07-25T01:20:14.010000"],["2024-07-25T01:20:15.010000"],["2024-07-25T01:20:16.010000"],["2024-07-25T01:20:17.010000"],["2024-07-25T01:20:18.010000"],["2024-07-25T01:20:19.010000"],["2024-07-25T01:20:20.010000"],["2024-07-25T01:20:21.010000"],["2024-07-25T01:20:22.010000"],["2024-07-25T01:20:23.010000"],["2024-07-25T01:20:24.010000"],["2024-07-25T01:20:25.010000"],["2024-07-25T01:20:26.010000"],["2024-07-25T01:20:27.010000"],["2024-07-25T01:20:28.010000"],["2024-07-25T01:20:29.010000"],["2024-07-25T01:20:30.010000"],["2024-07-25T01:20:31.010000"],["2024-07-25T01:20:32.010000"],["2024-07-25T01:20:33.010000"],["2024-07-25T01:20:34.010000"],["2024-07-25T01:20:35.010000"],["2024-07-25T01:20:36.010000"],["2024-07-25T01:20:37.010000"],["2024-07-25T01:20:38.010000"],["2024-07-25T01:20:39.010000"],["2024-07-25T01:20:40.010000"],["2024-07-25T01:20:41.010000"],["2024-07-25T01:20:42.010000"],["2024-07-25T01:20:43.010000"],["2024-07-25T01:20:44.010000"],["2024-07-25T01:20:45.010000"],["2024-07-25T01:20:46.010000"],["2024-07-25T01:20:47.010000"],["2024-07-25T01:20:48.010000"],["2024-07-25T01:20:49.010000"],["2024-07-25T01:20:50.010000"],["2024-07-25T01:20:51.010000"],["2024-07-25T01:20:52.010000"],["2024-07-25T01:20:53.010000"],["2024-07-25T01:20:54.010000"],["2024-07-25T01:20:55.010000"],["2024-07-25T01:20:56.010000"],["2024-07-25T01:20:57.010000"],["2024-07-25T01:20:58.010000"],["2024-07-25T01:20:59.010000"],["2024-07-25T01:21:00.010000"],["2024-07-25T01:21:01.010000"],["2024-07-25T01:21:02.010000"],["2024-07-25T01:21:03.010000"],["2024-07-25T01:21:04.010000"],["2024-07-25T01:21:05.010000"],["2024-07-25T01:21:06.010000"],["2024-07-25T01:21:07.010000"],["2024-07-25T01:21:08.010000"],["2024-07-25T01:21:09.010000"],["2024-07-25T01:21:10.010000"],["2024-07-25T01:21:11.010000"],["2024-07-25T01:21:12.010000"],["2024-07-25T01:21:13.010000"],["2024-07-25T01:21:14.010000"],["2024-07-25T01:21:15.010000"],["2024-07-25T01:21:16.010000"],["2024-07-25T01:21:17.010000"],["2024-07-25T01:21:18.010000"],["2024-07-25T01:21:19.010000"],["2024-07-25T01:21:20.010000"],["2024-07-25T01:21:21.010000"],["2024-07-25T01:21:22.010000"],["2024-07-25T01:21:23.010000"],["2024-07-25T01:21:24.010000"],["2024-07-25T01:21:25.010000"],["2024-07-25T01:21:26.010000"],["2024-07-25T01:21:27.010000"],["2024-07-25T01:21:28.010000"],["2024-07-25T01:21:29.010000"],["2024-07-25T01:21:30.010000"],["2024-07-25T01:21:31.010000"],["2024-07-25T01:21:32.010000"],["2024-07-25T01:21:33.010000"],["2024-07-25T01:21:34.010000"],["2024-07-25T01:21:35.010000"],["2024-07-25T01:21:36.010000"],["2024-07-25T01:21:37.010000"],["2024-07-25T01:21:38.010000"],["2024-07-25T01:21:39.010000"],["2024-07-25T01:21:40.010000"],["2024-07-25T01:21:41.010000"],["2024-07-25T01:21:42.010000"],["2024-07-25T01:21:43.010000"],["2024-07-25T01:21:44.010000"],["2024-07-25T01:21:45.010000"],["2024-07-25T01:21:46.010000"],["2024-07-25T01:21:47.010000"],["2024-07-25T01:21:48.010000"],["2024-07-25T01:21:49.010000"],["2024-07-25T01:21:50.010000"],["2024-07-25T01:21:51.010000"],["2024-07-25T01:21:52.010000"],["2024-07-25T01:21:53.010000"],["2024-07-25T01:21:54.010000"],["2024-07-25T01:21:55.010000"],["2024-07-25T01:21:56.010000"],["2024-07-25T01:21:57.010000"],["2024-07-25T01:21:58.010000"],["2024-07-25T01:21:59.010000"],["2024-07-25T01:22:00.010000"],["2024-07-25T01:22:01.010000"],["2024-07-25T01:22:02.010000"],["2024-07-25T01:22:03.010000"],["2024-07-25T01:22:04.010000"],["2024-07-25T01:22:05.010000"],["2024-07-25T01:22:06.010000"],["2024-07-25T01:22:07.010000"],["2024-07-25T01:22:08.010000"],["2024-07-25T01:22:09.010000"],["2024-07-25T01:22:10.010000"],["2024-07-25T01:22:11.010000"],["2024-07-25T01:22:12.010000"],["2024-07-25T01:22:13.010000"],["2024-07-25T01:22:14.010000"],["2024-07-25T01:22:15.010000"],["2024-07-25T01:22:16.010000"],["2024-07-25T01:22:17.010000"],["2024-07-25T01:22:18.010000"],["2024-07-25T01:22:19.010000"],["2024-07-25T01:22:20.010000"],["2024-07-25T01:22:21.010000"],["2024-07-25T01:22:22.010000"],["2024-07-25T01:22:23.010000"],["2024-07-25T01:22:24.010000"],["2024-07-25T01:22:25.010000"],["2024-07-25T01:22:26.010000"],["2024-07-25T01:22:27.010000"],["2024-07-25T01:22:28.010000"],["2024-07-25T01:22:29.010000"],["2024-07-25T01:22:30.010000"],["2024-07-25T01:22:31.010000"],["2024-07-25T01:22:32.010000"],["2024-07-25T01:22:33.010000"],["2024-07-25T01:22:34.010000"],["2024-07-25T01:22:35.010000"],["2024-07-25T01:22:36.010000"],["2024-07-25T01:22:37.010000"],["2024-07-25T01:22:38.010000"],["2024-07-25T01:22:39.010000"],["2024-07-25T01:22:40.010000"],["2024-07-25T01:22:41.010000"],["2024-07-25T01:22:42.010000"],["2024-07-25T01:22:43.010000"],["2024-07-25T01:22:44.010000"],["2024-07-25T01:22:45.010000"],["2024-07-25T01:22:46.010000"],["2024-07-25T01:22:47.010000"],["2024-07-25T01:22:48.010000"],["2024-07-25T01:22:49.010000"],["2024-07-25T01:22:50.010000"],["2024-07-25T01:22:51.010000"],["2024-07-25T01:22:52.010000"],["2024-07-25T01:22:53.010000"],["2024-07-25T01:22:54.010000"],["2024-07-25T01:22:55.010000"],["2024-07-25T01:22:56.010000"],["2024-07-25T01:22:57.010000"],["2024-07-25T01:22:58.010000"],["2024-07-25T01:22:59.010000"],["2024-07-25T01:23:00.010000"],["2024-07-25T01:23:01.010000"],["2024-07-25T01:23:02.010000"],["2024-07-25T01:23:03.010000"],["2024-07-25T01:23:04.010000"],["2024-07-25T01:23:05.010000"],["2024-07-25T01:23:06.010000"],["2024-07-25T01:23:07.010000"],["2024-07-25T01:23:08.010000"],["2024-07-25T01:23:09.010000"],["2024-07-25T01:23:10.010000"],["2024-07-25T01:23:11.010000"],["2024-07-25T01:23:12.010000"],["2024-07-25T01:23:13.010000"],["2024-07-25T01:23:14.010000"],["2024-07-25T01:23:15.010000"],["2024-07-25T01:23:16.010000"],["2024-07-25T01:23:17.010000"],["2024-07-25T01:23:18.010000"],["2024-07-25T01:23:19.010000"],["2024-07-25T01:23:20.010000"],["2024-07-25T01:23:21.010000"],["2024-07-25T01:23:22.010000"],["2024-07-25T01:23:23.010000"],["2024-07-25T01:23:24.010000"],["2024-07-25T01:23:25.010000"],["2024-07-25T01:23:26.010000"],["2024-07-25T01:23:27.010000"],["2024-07-25T01:23:28.010000"],["2024-07-25T01:23:29.010000"],["2024-07-25T01:23:30.010000"],["2024-07-25T01:23:31.010000"],["2024-07-25T01:23:32.010000"],["2024-07-25T01:23:33.010000"],["2024-07-25T01:23:34.010000"],["2024-07-25T01:23:35.010000"],["2024-07-25T01:23:36.010000"],["2024-07-25T01:23:37.010000"],["2024-07-25T01:23:38.010000"],["2024-07-25T01:23:39.010000"],["2024-07-25T01:23:40.010000"],["2024-07-25T01:23:41.010000"],["2024-07-25T01:23:42.010000"],["2024-07-25T01:23:43.010000"],["2024-07-25T01:23:44.010000"],["2024-07-25T01:23:45.010000"],["2024-07-25T01:23:46.010000"],["2024-07-25T01:23:47.010000"],["2024-07-25T01:23:48.010000"],["2024-07-25T01:23:49.010000"],["2024-07-25T01:23:50.010000"],["2024-07-25T01:23:51.010000"],["2024-07-25T01:23:52.010000"],["2024-07-25T01:23:53.010000"],["2024-07-25T01:23:54.010000"],["2024-07-25T01:23:55.010000"],["2024-07-25T01:23:56.010000"],["2024-07-25T01:23:57.010000"],["2024-07-25T01:23:58.010000"],["2024-07-25T01:23:59.010000"],["2024-07-25T01:24:00.010000"],["2024-07-25T01:24:01.010000"],["2024-07-25T01:24:02.010000"],["2024-07-25T01:24:03.010000"],["2024-07-25T01:24:04.010000"],["2024-07-25T01:24:05.010000"],["2024-07-25T01:24:06.010000"],["2024-07-25T01:24:07.010000"],["2024-07-25T01:24:08.010000"],["2024-07-25T01:24:09.010000"],["2024-07-25T01:24:10.010000"],["2024-07-25T01:24:11.010000"],["2024-07-25T01:24:12.010000"],["2024-07-25T01:24:13.010000"],["2024-07-25T01:24:14.010000"],["2024-07-25T01:24:15.010000"],["2024-07-25T01:24:16.010000"],["2024-07-25T01:24:17.010000"],["2024-07-25T01:24:18.010000"],["2024-07-25T01:24:19.010000"],["2024-07-25T01:24:20.010000"],["2024-07-25T01:24:21.010000"],["2024-07-25T01:24:22.010000"],["2024-07-25T01:24:23.010000"],["2024-07-25T01:24:24.010000"],["2024-07-25T01:24:25.010000"],["2024-07-25T01:24:26.010000"],["2024-07-25T01:24:27.010000"],["2024-07-25T01:24:28.010000"],["2024-07-25T01:24:29.010000"],["2024-07-25T01:24:30.010000"],["2024-07-25T01:24:31.010000"],["2024-07-25T01:24:32.010000"],["2024-07-25T01:24:33.010000"],["2024-07-25T01:24:34.010000"],["2024-07-25T01:24:35.010000"],["2024-07-25T01:24:36.010000"],["2024-07-25T01:24:37.010000"],["2024-07-25T01:24:38.010000"],["2024-07-25T01:24:39.010000"],["2024-07-25T01:24:40.010000"],["2024-07-25T01:24:41.010000"],["2024-07-25T01:24:42.010000"],["2024-07-25T01:24:43.010000"],["2024-07-25T01:24:44.010000"],["2024-07-25T01:24:45.010000"],["2024-07-25T01:24:46.010000"],["2024-07-25T01:24:47.010000"],["2024-07-25T01:24:48.010000"],["2024-07-25T01:24:49.010000"],["2024-07-25T01:24:50.010000"],["2024-07-25T01:24:51.010000"],["2024-07-25T01:24:52.010000"],["2024-07-25T01:24:53.010000"],["2024-07-25T01:24:54.010000"],["2024-07-25T01:24:55.010000"],["2024-07-25T01:24:56.010000"],["2024-07-25T01:24:57.010000"],["2024-07-25T01:24:58.010000"],["2024-07-25T01:24:59.010000"],["2024-07-25T01:25:00.010000"],["2024-07-25T01:25:01.010000"],["2024-07-25T01:25:02.010000"],["2024-07-25T01:25:03.010000"],["2024-07-25T01:25:04.010000"],["2024-07-25T01:25:05.010000"],["2024-07-25T01:25:06.010000"],["2024-07-25T01:25:07.010000"],["2024-07-25T01:25:08.010000"],["2024-07-25T01:25:09.010000"],["2024-07-25T01:25:10.010000"],["2024-07-25T01:25:11.010000"],["2024-07-25T01:25:12.010000"],["2024-07-25T01:25:13.010000"],["2024-07-25T01:25:14.010000"],["2024-07-25T01:25:15.010000"],["2024-07-25T01:25:16.010000"],["2024-07-25T01:25:17.010000"],["2024-07-25T01:25:18.010000"],["2024-07-25T01:25:19.010000"],["2024-07-25T01:25:20.010000"],["2024-07-25T01:25:21.010000"],["2024-07-25T01:25:22.010000"],["2024-07-25T01:25:23.010000"],["2024-07-25T01:25:24.010000"],["2024-07-25T01:25:25.010000"],["2024-07-25T01:25:26.010000"],["2024-07-25T01:25:27.010000"],["2024-07-25T01:25:28.010000"],["2024-07-25T01:25:29.010000"],["2024-07-25T01:25:30.010000"],["2024-07-25T01:25:31.010000"],["2024-07-25T01:25:32.010000"],["2024-07-25T01:25:33.010000"],["2024-07-25T01:25:34.010000"],["2024-07-25T01:25:35.010000"],["2024-07-25T01:25:36.010000"],["2024-07-25T01:25:37.010000"],["2024-07-25T01:25:38.010000"],["2024-07-25T01:25:39.010000"],["2024-07-25T01:25:40.010000"],["2024-07-25T01:25:41.010000"],["2024-07-25T01:25:42.010000"],["2024-07-25T01:25:43.010000"],["2024-07-25T01:25:44.010000"],["2024-07-25T01:25:45.010000"],["2024-07-25T01:25:46.010000"],["2024-07-25T01:25:47.010000"],["2024-07-25T01:25:48.010000"],["2024-07-25T01:25:49.010000"],["2024-07-25T01:25:50.010000"],["2024-07-25T01:25:51.010000"],["2024-07-25T01:25:52.010000"],["2024-07-25T01:25:53.010000"],["2024-07-25T01:25:54.010000"],["2024-07-25T01:25:55.010000"],["2024-07-25T01:25:56.010000"],["2024-07-25T01:25:57.010000"],["2024-07-25T01:25:58.010000"],["2024-07-25T01:25:59.010000"],["2024-07-25T01:26:00.010000"],["2024-07-25T01:26:01.010000"],["2024-07-25T01:26:02.010000"],["2024-07-25T01:26:03.010000"],["2024-07-25T01:26:04.010000"],["2024-07-25T01:26:05.010000"],["2024-07-25T01:26:06.010000"],["2024-07-25T01:26:07.010000"],["2024-07-25T01:26:08.010000"],["2024-07-25T01:26:09.010000"],["2024-07-25T01:26:10.010000"],["2024-07-25T01:26:11.010000"],["2024-07-25T01:26:12.010000"],["2024-07-25T01:26:13.010000"],["2024-07-25T01:26:14.010000"],["2024-07-25T01:26:15.010000"],["2024-07-25T01:26:16.010000"],["2024-07-25T01:26:17.010000"],["2024-07-25T01:26:18.010000"],["2024-07-25T01:26:19.010000"],["2024-07-25T01:26:20.010000"],["2024-07-25T01:26:21.010000"],["2024-07-25T01:26:22.010000"],["2024-07-25T01:26:23.010000"],["2024-07-25T01:26:24.010000"],["2024-07-25T01:26:25.010000"],["2024-07-25T01:26:26.010000"],["2024-07-25T01:26:27.010000"],["2024-07-25T01:26:28.010000"],["2024-07-25T01:26:29.010000"],["2024-07-25T01:26:30.010000"],["2024-07-25T01:26:31.010000"],["2024-07-25T01:26:32.010000"],["2024-07-25T01:26:33.010000"],["2024-07-25T01:26:34.010000"],["2024-07-25T01:26:35.010000"],["2024-07-25T01:26:36.010000"],["2024-07-25T01:26:37.010000"],["2024-07-25T01:26:38.010000"],["2024-07-25T01:26:39.010000"],["2024-07-25T01:26:40.010000"],["2024-07-25T01:26:41.010000"],["2024-07-25T01:26:42.010000"],["2024-07-25T01:26:43.010000"],["2024-07-25T01:26:44.010000"],["2024-07-25T01:26:45.010000"],["2024-07-25T01:26:46.010000"],["2024-07-25T01:26:47.010000"],["2024-07-25T01:26:48.010000"],["2024-07-25T01:26:49.010000"],["2024-07-25T01:26:50.010000"],["2024-07-25T01:26:51.010000"],["2024-07-25T01:26:52.010000"],["2024-07-25T01:26:53.010000"],["2024-07-25T01:26:54.010000"],["2024-07-25T01:26:55.010000"],["2024-07-25T01:26:56.010000"],["2024-07-25T01:26:57.010000"],["2024-07-25T01:26:58.010000"],["2024-07-25T01:26:59.010000"],["2024-07-25T01:27:00.010000"],["2024-07-25T01:27:01.010000"],["2024-07-25T01:27:02.010000"],["2024-07-25T01:27:03.010000"],["2024-07-25T01:27:04.010000"],["2024-07-25T01:27:05.010000"],["2024-07-25T01:27:06.010000"],["2024-07-25T01:27:07.010000"],["2024-07-25T01:27:08.010000"],["2024-07-25T01:27:09.010000"],["2024-07-25T01:27:10.010000"],["2024-07-25T01:27:11.010000"],["2024-07-25T01:27:12.010000"],["2024-07-25T01:27:13.010000"],["2024-07-25T01:27:14.010000"],["2024-07-25T01:27:15.010000"],["2024-07-25T01:27:16.010000"],["2024-07-25T01:27:17.010000"],["2024-07-25T01:27:18.010000"],["2024-07-25T01:27:19.010000"],["2024-07-25T01:27:20.010000"],["2024-07-25T01:27:21.010000"],["2024-07-25T01:27:22.010000"],["2024-07-25T01:27:23.010000"],["2024-07-25T01:27:24.010000"],["2024-07-25T01:27:25.010000"],["2024-07-25T01:27:26.010000"],["2024-07-25T01:27:27.010000"],["2024-07-25T01:27:28.010000"],["2024-07-25T01:27:29.010000"],["2024-07-25T01:27:30.010000"],["2024-07-25T01:27:31.010000"],["2024-07-25T01:27:32.010000"],["2024-07-25T01:27:33.010000"],["2024-07-25T01:27:34.010000"],["2024-07-25T01:27:35.010000"],["2024-07-25T01:27:36.010000"],["2024-07-25T01:27:37.010000"],["2024-07-25T01:27:38.010000"],["2024-07-25T01:27:39.010000"],["2024-07-25T01:27:40.010000"],["2024-07-25T01:27:41.010000"],["2024-07-25T01:27:42.010000"],["2024-07-25T01:27:43.010000"],["2024-07-25T01:27:44.010000"],["2024-07-25T01:27:45.010000"],["2024-07-25T01:27:46.010000"],["2024-07-25T01:27:47.010000"],["2024-07-25T01:27:48.010000"],["2024-07-25T01:27:49.010000"],["2024-07-25T01:27:50.010000"],["2024-07-25T01:27:51.010000"],["2024-07-25T01:27:52.010000"],["2024-07-25T01:27:53.010000"],["2024-07-25T01:27:54.010000"],["2024-07-25T01:27:55.010000"],["2024-07-25T01:27:56.010000"],["2024-07-25T01:27:57.010000"],["2024-07-25T01:27:58.010000"],["2024-07-25T01:27:59.010000"],["2024-07-25T01:28:00.010000"],["2024-07-25T01:28:01.010000"],["2024-07-25T01:28:02.010000"],["2024-07-25T01:28:03.010000"],["2024-07-25T01:28:04.010000"],["2024-07-25T01:28:05.010000"],["2024-07-25T01:28:06.010000"],["2024-07-25T01:28:07.010000"],["2024-07-25T01:28:08.010000"],["2024-07-25T01:28:09.010000"],["2024-07-25T01:28:10.010000"],["2024-07-25T01:28:11.010000"],["2024-07-25T01:28:12.010000"],["2024-07-25T01:28:13.010000"],["2024-07-25T01:28:14.010000"],["2024-07-25T01:28:15.010000"],["2024-07-25T01:28:16.010000"],["2024-07-25T01:28:17.010000"],["2024-07-25T01:28:18.010000"],["2024-07-25T01:28:19.010000"],["2024-07-25T01:28:20.010000"],["2024-07-25T01:28:21.010000"],["2024-07-25T01:28:22.010000"],["2024-07-25T01:28:23.010000"],["2024-07-25T01:28:24.010000"],["2024-07-25T01:28:25.010000"],["2024-07-25T01:28:26.010000"],["2024-07-25T01:28:27.010000"],["2024-07-25T01:28:28.010000"],["2024-07-25T01:28:29.010000"],["2024-07-25T01:28:30.010000"],["2024-07-25T01:28:31.010000"],["2024-07-25T01:28:32.010000"],["2024-07-25T01:28:33.010000"],["2024-07-25T01:28:34.010000"],["2024-07-25T01:28:35.010000"],["2024-07-25T01:28:36.010000"],["2024-07-25T01:28:37.010000"],["2024-07-25T01:28:38.010000"],["2024-07-25T01:28:39.010000"],["2024-07-25T01:28:40.010000"],["2024-07-25T01:28:41.010000"],["2024-07-25T01:28:42.010000"],["2024-07-25T01:28:43.010000"],["2024-07-25T01:28:44.010000"],["2024-07-25T01:28:45.010000"],["2024-07-25T01:28:46.010000"],["2024-07-25T01:28:47.010000"],["2024-07-25T01:28:48.010000"],["2024-07-25T01:28:49.010000"],["2024-07-25T01:28:50.010000"],["2024-07-25T01:28:51.010000"],["2024-07-25T01:28:52.010000"],["2024-07-25T01:28:53.010000"],["2024-07-25T01:28:54.010000"],["2024-07-25T01:28:55.010000"],["2024-07-25T01:28:56.010000"],["2024-07-25T01:28:57.010000"],["2024-07-25T01:28:58.010000"],["2024-07-25T01:28:59.010000"],["2024-07-25T01:29:00.010000"],["2024-07-25T01:29:01.010000"],["2024-07-25T01:29:02.010000"],["2024-07-25T01:29:03.010000"],["2024-07-25T01:29:04.010000"],["2024-07-25T01:29:05.010000"],["2024-07-25T01:29:06.010000"],["2024-07-25T01:29:07.010000"],["2024-07-25T01:29:08.010000"],["2024-07-25T01:29:09.010000"],["2024-07-25T01:29:10.010000"],["2024-07-25T01:29:11.010000"],["2024-07-25T01:29:12.010000"],["2024-07-25T01:29:13.010000"],["2024-07-25T01:29:14.010000"],["2024-07-25T01:29:15.010000"],["2024-07-25T01:29:16.010000"],["2024-07-25T01:29:17.010000"],["2024-07-25T01:29:18.010000"],["2024-07-25T01:29:19.010000"],["2024-07-25T01:29:20.010000"],["2024-07-25T01:29:21.010000"],["2024-07-25T01:29:22.010000"],["2024-07-25T01:29:23.010000"],["2024-07-25T01:29:24.010000"],["2024-07-25T01:29:25.010000"],["2024-07-25T01:29:26.010000"],["2024-07-25T01:29:27.010000"],["2024-07-25T01:29:28.010000"],["2024-07-25T01:29:29.010000"],["2024-07-25T01:29:30.010000"],["2024-07-25T01:29:31.010000"],["2024-07-25T01:29:32.010000"],["2024-07-25T01:29:33.010000"],["2024-07-25T01:29:34.010000"],["2024-07-25T01:29:35.010000"],["2024-07-25T01:29:36.010000"],["2024-07-25T01:29:37.010000"],["2024-07-25T01:29:38.010000"],["2024-07-25T01:29:39.010000"],["2024-07-25T01:29:40.010000"],["2024-07-25T01:29:41.010000"],["2024-07-25T01:29:42.010000"],["2024-07-25T01:29:43.010000"],["2024-07-25T01:29:44.010000"],["2024-07-25T01:29:45.010000"],["2024-07-25T01:29:46.010000"],["2024-07-25T01:29:47.010000"],["2024-07-25T01:29:48.010000"],["2024-07-25T01:29:49.010000"],["2024-07-25T01:29:50.010000"],["2024-07-25T01:29:51.010000"],["2024-07-25T01:29:52.010000"],["2024-07-25T01:29:53.010000"],["2024-07-25T01:29:54.010000"],["2024-07-25T01:29:55.010000"],["2024-07-25T01:29:56.010000"],["2024-07-25T01:29:57.010000"],["2024-07-25T01:29:58.010000"],["2024-07-25T01:29:59.010000"],["2024-07-25T01:30:00.010000"],["2024-07-25T01:30:01.010000"],["2024-07-25T01:30:02.010000"],["2024-07-25T01:30:03.010000"],["2024-07-25T01:30:04.010000"],["2024-07-25T01:30:05.010000"],["2024-07-25T01:30:06.010000"],["2024-07-25T01:30:07.010000"],["2024-07-25T01:30:08.010000"],["2024-07-25T01:30:09.010000"],["2024-07-25T01:30:10.010000"],["2024-07-25T01:30:11.010000"],["2024-07-25T01:30:12.010000"],["2024-07-25T01:30:13.010000"],["2024-07-25T01:30:14.010000"],["2024-07-25T01:30:15.010000"],["2024-07-25T01:30:16.010000"],["2024-07-25T01:30:17.010000"],["2024-07-25T01:30:18.010000"],["2024-07-25T01:30:19.010000"],["2024-07-25T01:30:20.010000"],["2024-07-25T01:30:21.010000"],["2024-07-25T01:30:22.010000"],["2024-07-25T01:30:23.010000"],["2024-07-25T01:30:24.010000"],["2024-07-25T01:30:25.010000"],["2024-07-25T01:30:26.010000"],["2024-07-25T01:30:27.010000"],["2024-07-25T01:30:28.010000"],["2024-07-25T01:30:29.010000"],["2024-07-25T01:30:30.010000"],["2024-07-25T01:30:31.010000"],["2024-07-25T01:30:32.010000"],["2024-07-25T01:30:33.010000"],["2024-07-25T01:30:34.010000"],["2024-07-25T01:30:35.010000"],["2024-07-25T01:30:36.010000"],["2024-07-25T01:30:37.010000"],["2024-07-25T01:30:38.010000"],["2024-07-25T01:30:39.010000"],["2024-07-25T01:30:40.010000"],["2024-07-25T01:30:41.010000"],["2024-07-25T01:30:42.010000"],["2024-07-25T01:30:43.010000"],["2024-07-25T01:30:44.010000"],["2024-07-25T01:30:45.010000"],["2024-07-25T01:30:46.010000"],["2024-07-25T01:30:47.010000"],["2024-07-25T01:30:48.010000"],["2024-07-25T01:30:49.010000"],["2024-07-25T01:30:50.010000"],["2024-07-25T01:30:51.010000"],["2024-07-25T01:30:52.010000"],["2024-07-25T01:30:53.010000"],["2024-07-25T01:30:54.010000"],["2024-07-25T01:30:55.010000"],["2024-07-25T01:30:56.010000"],["2024-07-25T01:30:57.010000"],["2024-07-25T01:30:58.010000"],["2024-07-25T01:30:59.010000"],["2024-07-25T01:31:00.010000"],["2024-07-25T01:31:01.010000"],["2024-07-25T01:31:02.010000"],["2024-07-25T01:31:03.010000"],["2024-07-25T01:31:04.010000"],["2024-07-25T01:31:05.010000"],["2024-07-25T01:31:06.010000"],["2024-07-25T01:31:07.010000"],["2024-07-25T01:31:08.010000"],["2024-07-25T01:31:09.010000"],["2024-07-25T01:31:10.010000"],["2024-07-25T01:31:11.010000"],["2024-07-25T01:31:12.010000"],["2024-07-25T01:31:13.010000"],["2024-07-25T01:31:14.010000"],["2024-07-25T01:31:15.010000"],["2024-07-25T01:31:16.010000"],["2024-07-25T01:31:17.010000"],["2024-07-25T01:31:18.010000"],["2024-07-25T01:31:19.010000"],["2024-07-25T01:31:20.010000"],["2024-07-25T01:31:21.010000"],["2024-07-25T01:31:22.010000"],["2024-07-25T01:31:23.010000"],["2024-07-25T01:31:24.010000"],["2024-07-25T01:31:25.010000"],["2024-07-25T01:31:26.010000"],["2024-07-25T01:31:27.010000"],["2024-07-25T01:31:28.010000"],["2024-07-25T01:31:29.010000"],["2024-07-25T01:31:30.010000"],["2024-07-25T01:31:31.010000"],["2024-07-25T01:31:32.010000"],["2024-07-25T01:31:33.010000"],["2024-07-25T01:31:34.010000"],["2024-07-25T01:31:35.010000"],["2024-07-25T01:31:36.010000"],["2024-07-25T01:31:37.010000"],["2024-07-25T01:31:38.010000"],["2024-07-25T01:31:39.010000"],["2024-07-25T01:31:40.010000"],["2024-07-25T01:31:41.010000"],["2024-07-25T01:31:42.010000"],["2024-07-25T01:31:43.010000"],["2024-07-25T01:31:44.010000"],["2024-07-25T01:31:45.010000"],["2024-07-25T01:31:46.010000"],["2024-07-25T01:31:47.010000"],["2024-07-25T01:31:48.010000"],["2024-07-25T01:31:49.010000"],["2024-07-25T01:31:50.010000"],["2024-07-25T01:31:51.010000"],["2024-07-25T01:31:52.010000"],["2024-07-25T01:31:53.010000"],["2024-07-25T01:31:54.010000"],["2024-07-25T01:31:55.010000"],["2024-07-25T01:31:56.010000"],["2024-07-25T01:31:57.010000"],["2024-07-25T01:31:58.010000"],["2024-07-25T01:31:59.010000"],["2024-07-25T01:32:00.010000"],["2024-07-25T01:32:01.010000"],["2024-07-25T01:32:02.010000"],["2024-07-25T01:32:03.010000"],["2024-07-25T01:32:04.010000"],["2024-07-25T01:32:05.010000"],["2024-07-25T01:32:06.010000"],["2024-07-25T01:32:07.010000"],["2024-07-25T01:32:08.010000"],["2024-07-25T01:32:09.010000"],["2024-07-25T01:32:10.010000"],["2024-07-25T01:32:11.010000"],["2024-07-25T01:32:12.010000"],["2024-07-25T01:32:13.010000"],["2024-07-25T01:32:14.010000"],["2024-07-25T01:32:15.010000"],["2024-07-25T01:32:16.010000"],["2024-07-25T01:32:17.010000"],["2024-07-25T01:32:18.010000"],["2024-07-25T01:32:19.010000"],["2024-07-25T01:32:20.010000"],["2024-07-25T01:32:21.010000"],["2024-07-25T01:32:22.010000"],["2024-07-25T01:32:23.010000"],["2024-07-25T01:32:24.010000"],["2024-07-25T01:32:25.010000"],["2024-07-25T01:32:26.010000"],["2024-07-25T01:32:27.010000"],["2024-07-25T01:32:28.010000"],["2024-07-25T01:32:29.010000"],["2024-07-25T01:32:30.010000"],["2024-07-25T01:32:31.010000"],["2024-07-25T01:32:32.010000"],["2024-07-25T01:32:33.010000"],["2024-07-25T01:32:34.010000"],["2024-07-25T01:32:35.010000"],["2024-07-25T01:32:36.010000"],["2024-07-25T01:32:37.010000"],["2024-07-25T01:32:38.010000"],["2024-07-25T01:32:39.010000"],["2024-07-25T01:32:40.010000"],["2024-07-25T01:32:41.010000"],["2024-07-25T01:32:42.010000"],["2024-07-25T01:32:43.010000"],["2024-07-25T01:32:44.010000"],["2024-07-25T01:32:45.010000"],["2024-07-25T01:32:46.010000"],["2024-07-25T01:32:47.010000"],["2024-07-25T01:32:48.010000"],["2024-07-25T01:32:49.010000"],["2024-07-25T01:32:50.010000"],["2024-07-25T01:32:51.010000"],["2024-07-25T01:32:52.010000"],["2024-07-25T01:32:53.010000"],["2024-07-25T01:32:54.010000"],["2024-07-25T01:32:55.010000"],["2024-07-25T01:32:56.010000"],["2024-07-25T01:32:57.010000"],["2024-07-25T01:32:58.010000"],["2024-07-25T01:32:59.010000"],["2024-07-25T01:33:00.010000"],["2024-07-25T01:33:01.010000"],["2024-07-25T01:33:02.010000"],["2024-07-25T01:33:03.010000"],["2024-07-25T01:33:04.010000"],["2024-07-25T01:33:05.010000"],["2024-07-25T01:33:06.010000"],["2024-07-25T01:33:07.010000"],["2024-07-25T01:33:08.010000"],["2024-07-25T01:33:09.010000"],["2024-07-25T01:33:10.010000"],["2024-07-25T01:33:11.010000"],["2024-07-25T01:33:12.010000"],["2024-07-25T01:33:13.010000"],["2024-07-25T01:33:14.010000"],["2024-07-25T01:33:15.010000"],["2024-07-25T01:33:16.010000"],["2024-07-25T01:33:17.010000"],["2024-07-25T01:33:18.010000"],["2024-07-25T01:33:19.010000"],["2024-07-25T01:33:20.010000"],["2024-07-25T01:33:21.010000"],["2024-07-25T01:33:22.010000"],["2024-07-25T01:33:23.010000"],["2024-07-25T01:33:24.010000"],["2024-07-25T01:33:25.010000"],["2024-07-25T01:33:26.010000"],["2024-07-25T01:33:27.010000"],["2024-07-25T01:33:28.010000"],["2024-07-25T01:33:29.010000"],["2024-07-25T01:33:30.010000"],["2024-07-25T01:33:31.010000"],["2024-07-25T01:33:32.010000"],["2024-07-25T01:33:33.010000"],["2024-07-25T01:33:34.010000"],["2024-07-25T01:33:35.010000"],["2024-07-25T01:33:36.010000"],["2024-07-25T01:33:37.010000"],["2024-07-25T01:33:38.010000"],["2024-07-25T01:33:39.010000"],["2024-07-25T01:33:40.010000"],["2024-07-25T01:33:41.010000"],["2024-07-25T01:33:42.010000"],["2024-07-25T01:33:43.010000"],["2024-07-25T01:33:44.010000"],["2024-07-25T01:33:45.010000"],["2024-07-25T01:33:46.010000"],["2024-07-25T01:33:47.010000"],["2024-07-25T01:33:48.010000"],["2024-07-25T01:33:49.010000"],["2024-07-25T01:33:50.010000"],["2024-07-25T01:33:51.010000"],["2024-07-25T01:33:52.010000"],["2024-07-25T01:33:53.010000"],["2024-07-25T01:33:54.010000"],["2024-07-25T01:33:55.010000"],["2024-07-25T01:33:56.010000"],["2024-07-25T01:33:57.010000"],["2024-07-25T01:33:58.010000"],["2024-07-25T01:33:59.010000"],["2024-07-25T01:34:00.010000"],["2024-07-25T01:34:01.010000"],["2024-07-25T01:34:02.010000"],["2024-07-25T01:34:03.010000"],["2024-07-25T01:34:04.010000"],["2024-07-25T01:34:05.010000"],["2024-07-25T01:34:06.010000"],["2024-07-25T01:34:07.010000"],["2024-07-25T01:34:08.010000"],["2024-07-25T01:34:09.010000"],["2024-07-25T01:34:10.010000"],["2024-07-25T01:34:11.010000"],["2024-07-25T01:34:12.010000"],["2024-07-25T01:34:13.010000"],["2024-07-25T01:34:14.010000"],["2024-07-25T01:34:15.010000"],["2024-07-25T01:34:16.010000"],["2024-07-25T01:34:17.010000"],["2024-07-25T01:34:18.010000"],["2024-07-25T01:34:19.010000"],["2024-07-25T01:34:20.010000"],["2024-07-25T01:34:21.010000"],["2024-07-25T01:34:22.010000"],["2024-07-25T01:34:23.010000"],["2024-07-25T01:34:24.010000"],["2024-07-25T01:34:25.010000"],["2024-07-25T01:34:26.010000"],["2024-07-25T01:34:27.010000"],["2024-07-25T01:34:28.010000"],["2024-07-25T01:34:29.010000"],["2024-07-25T01:34:30.010000"],["2024-07-25T01:34:31.010000"],["2024-07-25T01:34:32.010000"],["2024-07-25T01:34:33.010000"],["2024-07-25T01:34:34.010000"],["2024-07-25T01:34:35.010000"],["2024-07-25T01:34:36.010000"],["2024-07-25T01:34:37.010000"],["2024-07-25T01:34:38.010000"],["2024-07-25T01:34:39.010000"],["2024-07-25T01:34:40.010000"],["2024-07-25T01:34:41.010000"],["2024-07-25T01:34:42.010000"],["2024-07-25T01:34:43.010000"],["2024-07-25T01:34:44.010000"],["2024-07-25T01:34:45.010000"],["2024-07-25T01:34:46.010000"],["2024-07-25T01:34:47.010000"],["2024-07-25T01:34:48.010000"],["2024-07-25T01:34:49.010000"],["2024-07-25T01:34:50.010000"],["2024-07-25T01:34:51.010000"],["2024-07-25T01:34:52.010000"],["2024-07-25T01:34:53.010000"],["2024-07-25T01:34:54.010000"],["2024-07-25T01:34:55.010000"],["2024-07-25T01:34:56.010000"],["2024-07-25T01:34:57.010000"],["2024-07-25T01:34:58.010000"],["2024-07-25T01:34:59.010000"],["2024-07-25T01:35:00.010000"],["2024-07-25T01:35:01.010000"],["2024-07-25T01:35:02.010000"],["2024-07-25T01:35:03.010000"],["2024-07-25T01:35:04.010000"],["2024-07-25T01:35:05.010000"],["2024-07-25T01:35:06.010000"],["2024-07-25T01:35:07.010000"],["2024-07-25T01:35:08.010000"],["2024-07-25T01:35:09.010000"],["2024-07-25T01:35:10.010000"],["2024-07-25T01:35:11.010000"],["2024-07-25T01:35:12.010000"],["2024-07-25T01:35:13.010000"],["2024-07-25T01:35:14.010000"],["2024-07-25T01:35:15.010000"],["2024-07-25T01:35:16.010000"],["2024-07-25T01:35:17.010000"],["2024-07-25T01:35:18.010000"],["2024-07-25T01:35:19.010000"],["2024-07-25T01:35:20.010000"],["2024-07-25T01:35:21.010000"],["2024-07-25T01:35:22.010000"],["2024-07-25T01:35:23.010000"],["2024-07-25T01:35:24.010000"],["2024-07-25T01:35:25.010000"],["2024-07-25T01:35:26.010000"],["2024-07-25T01:35:27.010000"],["2024-07-25T01:35:28.010000"],["2024-07-25T01:35:29.010000"],["2024-07-25T01:35:30.010000"],["2024-07-25T01:35:31.010000"],["2024-07-25T01:35:32.010000"],["2024-07-25T01:35:33.010000"],["2024-07-25T01:35:34.010000"],["2024-07-25T01:35:35.010000"],["2024-07-25T01:35:36.010000"],["2024-07-25T01:35:37.010000"],["2024-07-25T01:35:38.010000"],["2024-07-25T01:35:39.010000"],["2024-07-25T01:35:40.010000"],["2024-07-25T01:35:41.010000"],["2024-07-25T01:35:42.010000"],["2024-07-25T01:35:43.010000"],["2024-07-25T01:35:44.010000"],["2024-07-25T01:35:45.010000"],["2024-07-25T01:35:46.010000"],["2024-07-25T01:35:47.010000"],["2024-07-25T01:35:48.010000"],["2024-07-25T01:35:49.010000"],["2024-07-25T01:35:50.010000"],["2024-07-25T01:35:51.010000"],["2024-07-25T01:35:52.010000"],["2024-07-25T01:35:53.010000"],["2024-07-25T01:35:54.010000"],["2024-07-25T01:35:55.010000"],["2024-07-25T01:35:56.010000"],["2024-07-25T01:35:57.010000"],["2024-07-25T01:35:58.010000"],["2024-07-25T01:35:59.010000"],["2024-07-25T01:36:00.010000"],["2024-07-25T01:36:01.010000"],["2024-07-25T01:36:02.010000"],["2024-07-25T01:36:03.010000"],["2024-07-25T01:36:04.010000"],["2024-07-25T01:36:05.010000"],["2024-07-25T01:36:06.010000"],["2024-07-25T01:36:07.010000"],["2024-07-25T01:36:08.010000"],["2024-07-25T01:36:09.010000"],["2024-07-25T01:36:10.010000"],["2024-07-25T01:36:11.010000"],["2024-07-25T01:36:12.010000"],["2024-07-25T01:36:13.010000"],["2024-07-25T01:36:14.010000"],["2024-07-25T01:36:15.010000"],["2024-07-25T01:36:16.010000"],["2024-07-25T01:36:17.010000"],["2024-07-25T01:36:18.010000"],["2024-07-25T01:36:19.010000"],["2024-07-25T01:36:20.010000"],["2024-07-25T01:36:21.010000"],["2024-07-25T01:36:22.010000"],["2024-07-25T01:36:23.010000"],["2024-07-25T01:36:24.010000"],["2024-07-25T01:36:25.010000"],["2024-07-25T01:36:26.010000"],["2024-07-25T01:36:27.010000"],["2024-07-25T01:36:28.010000"],["2024-07-25T01:36:29.010000"],["2024-07-25T01:36:30.010000"],["2024-07-25T01:36:31.010000"],["2024-07-25T01:36:32.010000"],["2024-07-25T01:36:33.010000"],["2024-07-25T01:36:34.010000"],["2024-07-25T01:36:35.010000"],["2024-07-25T01:36:36.010000"],["2024-07-25T01:36:37.010000"],["2024-07-25T01:36:38.010000"],["2024-07-25T01:36:39.010000"],["2024-07-25T01:36:40.010000"],["2024-07-25T01:36:41.010000"],["2024-07-25T01:36:42.010000"],["2024-07-25T01:36:43.010000"],["2024-07-25T01:36:44.010000"],["2024-07-25T01:36:45.010000"],["2024-07-25T01:36:46.010000"],["2024-07-25T01:36:47.010000"],["2024-07-25T01:36:48.010000"],["2024-07-25T01:36:49.010000"],["2024-07-25T01:36:50.010000"],["2024-07-25T01:36:51.010000"],["2024-07-25T01:36:52.010000"],["2024-07-25T01:36:53.010000"],["2024-07-25T01:36:54.010000"],["2024-07-25T01:36:55.010000"],["2024-07-25T01:36:56.010000"],["2024-07-25T01:36:57.010000"],["2024-07-25T01:36:58.010000"],["2024-07-25T01:36:59.010000"],["2024-07-25T01:37:00.010000"],["2024-07-25T01:37:01.010000"],["2024-07-25T01:37:02.010000"],["2024-07-25T01:37:03.010000"],["2024-07-25T01:37:04.010000"],["2024-07-25T01:37:05.010000"],["2024-07-25T01:37:06.010000"],["2024-07-25T01:37:07.010000"],["2024-07-25T01:37:08.010000"],["2024-07-25T01:37:09.010000"],["2024-07-25T01:37:10.010000"],["2024-07-25T01:37:11.010000"],["2024-07-25T01:37:12.010000"],["2024-07-25T01:37:13.010000"],["2024-07-25T01:37:14.010000"],["2024-07-25T01:37:15.010000"],["2024-07-25T01:37:16.010000"],["2024-07-25T01:37:17.010000"],["2024-07-25T01:37:18.010000"],["2024-07-25T01:37:19.010000"],["2024-07-25T01:37:20.010000"],["2024-07-25T01:37:21.010000"],["2024-07-25T01:37:22.010000"],["2024-07-25T01:37:23.010000"],["2024-07-25T01:37:24.010000"],["2024-07-25T01:37:25.010000"],["2024-07-25T01:37:26.010000"],["2024-07-25T01:37:27.010000"],["2024-07-25T01:37:28.010000"],["2024-07-25T01:37:29.010000"],["2024-07-25T01:37:30.010000"],["2024-07-25T01:37:31.010000"],["2024-07-25T01:37:32.010000"],["2024-07-25T01:37:33.010000"],["2024-07-25T01:37:34.010000"],["2024-07-25T01:37:35.010000"],["2024-07-25T01:37:36.010000"],["2024-07-25T01:37:37.010000"],["2024-07-25T01:37:38.010000"],["2024-07-25T01:37:39.010000"],["2024-07-25T01:37:40.010000"],["2024-07-25T01:37:41.010000"],["2024-07-25T01:37:42.010000"],["2024-07-25T01:37:43.010000"],["2024-07-25T01:37:44.010000"],["2024-07-25T01:37:45.010000"],["2024-07-25T01:37:46.010000"],["2024-07-25T01:37:47.010000"],["2024-07-25T01:37:48.010000"],["2024-07-25T01:37:49.010000"],["2024-07-25T01:37:50.010000"],["2024-07-25T01:37:51.010000"],["2024-07-25T01:37:52.010000"],["2024-07-25T01:37:53.010000"],["2024-07-25T01:37:54.010000"],["2024-07-25T01:37:55.010000"],["2024-07-25T01:37:56.010000"],["2024-07-25T01:37:57.010000"],["2024-07-25T01:37:58.010000"],["2024-07-25T01:37:59.010000"],["2024-07-25T01:38:00.010000"],["2024-07-25T01:38:01.010000"],["2024-07-25T01:38:02.010000"],["2024-07-25T01:38:03.010000"],["2024-07-25T01:38:04.010000"],["2024-07-25T01:38:05.010000"],["2024-07-25T01:38:06.010000"],["2024-07-25T01:38:07.010000"],["2024-07-25T01:38:08.010000"],["2024-07-25T01:38:09.010000"],["2024-07-25T01:38:10.010000"],["2024-07-25T01:38:11.010000"],["2024-07-25T01:38:12.010000"],["2024-07-25T01:38:13.010000"],["2024-07-25T01:38:14.010000"],["2024-07-25T01:38:15.010000"],["2024-07-25T01:38:16.010000"],["2024-07-25T01:38:17.010000"],["2024-07-25T01:38:18.010000"],["2024-07-25T01:38:19.010000"],["2024-07-25T01:38:20.010000"],["2024-07-25T01:38:21.010000"],["2024-07-25T01:38:22.010000"],["2024-07-25T01:38:23.010000"],["2024-07-25T01:38:24.010000"],["2024-07-25T01:38:25.010000"],["2024-07-25T01:38:26.010000"],["2024-07-25T01:38:27.010000"],["2024-07-25T01:38:28.010000"],["2024-07-25T01:38:29.010000"],["2024-07-25T01:38:30.010000"],["2024-07-25T01:38:31.010000"],["2024-07-25T01:38:32.010000"],["2024-07-25T01:38:33.010000"],["2024-07-25T01:38:34.010000"],["2024-07-25T01:38:35.010000"],["2024-07-25T01:38:36.010000"],["2024-07-25T01:38:37.010000"],["2024-07-25T01:38:38.010000"],["2024-07-25T01:38:39.010000"],["2024-07-25T01:38:40.010000"],["2024-07-25T01:38:41.010000"],["2024-07-25T01:38:42.010000"],["2024-07-25T01:38:43.010000"],["2024-07-25T01:38:44.010000"],["2024-07-25T01:38:45.010000"],["2024-07-25T01:38:46.010000"],["2024-07-25T01:38:47.010000"],["2024-07-25T01:38:48.010000"],["2024-07-25T01:38:49.010000"],["2024-07-25T01:38:50.010000"],["2024-07-25T01:38:51.010000"],["2024-07-25T01:38:52.010000"],["2024-07-25T01:38:53.010000"],["2024-07-25T01:38:54.010000"],["2024-07-25T01:38:55.010000"],["2024-07-25T01:38:56.010000"],["2024-07-25T01:38:57.010000"],["2024-07-25T01:38:58.010000"],["2024-07-25T01:38:59.010000"],["2024-07-25T01:39:00.010000"],["2024-07-25T01:39:01.010000"],["2024-07-25T01:39:02.010000"],["2024-07-25T01:39:03.010000"],["2024-07-25T01:39:04.010000"],["2024-07-25T01:39:05.010000"],["2024-07-25T01:39:06.010000"],["2024-07-25T01:39:07.010000"],["2024-07-25T01:39:08.010000"],["2024-07-25T01:39:09.010000"],["2024-07-25T01:39:10.010000"],["2024-07-25T01:39:11.010000"],["2024-07-25T01:39:12.010000"],["2024-07-25T01:39:13.010000"],["2024-07-25T01:39:14.010000"],["2024-07-25T01:39:15.010000"],["2024-07-25T01:39:16.010000"],["2024-07-25T01:39:17.010000"],["2024-07-25T01:39:18.010000"],["2024-07-25T01:39:19.010000"],["2024-07-25T01:39:20.010000"],["2024-07-25T01:39:21.010000"],["2024-07-25T01:39:22.010000"],["2024-07-25T01:39:23.010000"],["2024-07-25T01:39:24.010000"],["2024-07-25T01:39:25.010000"],["2024-07-25T01:39:26.010000"],["2024-07-25T01:39:27.010000"],["2024-07-25T01:39:28.010000"],["2024-07-25T01:39:29.010000"],["2024-07-25T01:39:30.010000"],["2024-07-25T01:39:31.010000"],["2024-07-25T01:39:32.010000"],["2024-07-25T01:39:33.010000"],["2024-07-25T01:39:34.010000"],["2024-07-25T01:39:35.010000"],["2024-07-25T01:39:36.010000"],["2024-07-25T01:39:37.010000"],["2024-07-25T01:39:38.010000"],["2024-07-25T01:39:39.010000"],["2024-07-25T01:39:40.010000"],["2024-07-25T01:39:41.010000"],["2024-07-25T01:39:42.010000"],["2024-07-25T01:39:43.010000"],["2024-07-25T01:39:44.010000"],["2024-07-25T01:39:45.010000"],["2024-07-25T01:39:46.010000"],["2024-07-25T01:39:47.010000"],["2024-07-25T01:39:48.010000"],["2024-07-25T01:39:49.010000"],["2024-07-25T01:39:50.010000"],["2024-07-25T01:39:51.010000"],["2024-07-25T01:39:52.010000"],["2024-07-25T01:39:53.010000"],["2024-07-25T01:39:54.010000"],["2024-07-25T01:39:55.010000"],["2024-07-25T01:39:56.010000"],["2024-07-25T01:39:57.010000"],["2024-07-25T01:39:58.010000"],["2024-07-25T01:39:59.010000"],["2024-07-25T01:40:00.010000"],["2024-07-25T01:40:01.010000"],["2024-07-25T01:40:02.010000"],["2024-07-25T01:40:03.010000"],["2024-07-25T01:40:04.010000"],["2024-07-25T01:40:05.010000"],["2024-07-25T01:40:06.010000"],["2024-07-25T01:40:07.010000"],["2024-07-25T01:40:08.010000"],["2024-07-25T01:40:09.010000"],["2024-07-25T01:40:10.010000"],["2024-07-25T01:40:11.010000"],["2024-07-25T01:40:12.010000"],["2024-07-25T01:40:13.010000"],["2024-07-25T01:40:14.010000"],["2024-07-25T01:40:15.010000"],["2024-07-25T01:40:16.010000"],["2024-07-25T01:40:17.010000"],["2024-07-25T01:40:18.010000"],["2024-07-25T01:40:19.010000"],["2024-07-25T01:40:20.010000"],["2024-07-25T01:40:21.010000"],["2024-07-25T01:40:22.010000"],["2024-07-25T01:40:23.010000"],["2024-07-25T01:40:24.010000"],["2024-07-25T01:40:25.010000"],["2024-07-25T01:40:26.010000"],["2024-07-25T01:40:27.010000"],["2024-07-25T01:40:28.010000"],["2024-07-25T01:40:29.010000"],["2024-07-25T01:40:30.010000"],["2024-07-25T01:40:31.010000"],["2024-07-25T01:40:32.010000"],["2024-07-25T01:40:33.010000"],["2024-07-25T01:40:34.010000"],["2024-07-25T01:40:35.010000"],["2024-07-25T01:40:36.010000"],["2024-07-25T01:40:37.010000"],["2024-07-25T01:40:38.010000"],["2024-07-25T01:40:39.010000"],["2024-07-25T01:40:40.010000"],["2024-07-25T01:40:41.010000"],["2024-07-25T01:40:42.010000"],["2024-07-25T01:40:43.010000"],["2024-07-25T01:40:44.010000"],["2024-07-25T01:40:45.010000"],["2024-07-25T01:40:46.010000"],["2024-07-25T01:40:47.010000"],["2024-07-25T01:40:48.010000"],["2024-07-25T01:40:49.010000"],["2024-07-25T01:40:50.010000"],["2024-07-25T01:40:51.010000"],["2024-07-25T01:40:52.010000"],["2024-07-25T01:40:53.010000"],["2024-07-25T01:40:54.010000"],["2024-07-25T01:40:55.010000"],["2024-07-25T01:40:56.010000"],["2024-07-25T01:40:57.010000"],["2024-07-25T01:40:58.010000"],["2024-07-25T01:40:59.010000"],["2024-07-25T01:41:00.010000"],["2024-07-25T01:41:01.010000"],["2024-07-25T01:41:02.010000"],["2024-07-25T01:41:03.010000"],["2024-07-25T01:41:04.010000"],["2024-07-25T01:41:05.010000"],["2024-07-25T01:41:06.010000"],["2024-07-25T01:41:07.010000"],["2024-07-25T01:41:08.010000"],["2024-07-25T01:41:09.010000"],["2024-07-25T01:41:10.010000"],["2024-07-25T01:41:11.010000"],["2024-07-25T01:41:12.010000"],["2024-07-25T01:41:13.010000"],["2024-07-25T01:41:14.010000"],["2024-07-25T01:41:15.010000"],["2024-07-25T01:41:16.010000"],["2024-07-25T01:41:17.010000"],["2024-07-25T01:41:18.010000"],["2024-07-25T01:41:19.010000"],["2024-07-25T01:41:20.010000"],["2024-07-25T01:41:21.010000"],["2024-07-25T01:41:22.010000"],["2024-07-25T01:41:23.010000"],["2024-07-25T01:41:24.010000"],["2024-07-25T01:41:25.010000"],["2024-07-25T01:41:26.010000"],["2024-07-25T01:41:27.010000"],["2024-07-25T01:41:28.010000"],["2024-07-25T01:41:29.010000"],["2024-07-25T01:41:30.010000"],["2024-07-25T01:41:31.010000"],["2024-07-25T01:41:32.010000"],["2024-07-25T01:41:33.010000"],["2024-07-25T01:41:34.010000"],["2024-07-25T01:41:35.010000"],["2024-07-25T01:41:36.010000"],["2024-07-25T01:41:37.010000"],["2024-07-25T01:41:38.010000"],["2024-07-25T01:41:39.010000"],["2024-07-25T01:41:40.010000"],["2024-07-25T01:41:41.010000"],["2024-07-25T01:41:42.010000"],["2024-07-25T01:41:43.010000"],["2024-07-25T01:41:44.010000"],["2024-07-25T01:41:45.010000"],["2024-07-25T01:41:46.010000"],["2024-07-25T01:41:47.010000"],["2024-07-25T01:41:48.010000"],["2024-07-25T01:41:49.010000"],["2024-07-25T01:41:50.010000"],["2024-07-25T01:41:51.010000"],["2024-07-25T01:41:52.010000"],["2024-07-25T01:41:53.010000"],["2024-07-25T01:41:54.010000"],["2024-07-25T01:41:55.010000"],["2024-07-25T01:41:56.010000"],["2024-07-25T01:41:57.010000"],["2024-07-25T01:41:58.010000"],["2024-07-25T01:41:59.010000"],["2024-07-25T01:42:00.010000"],["2024-07-25T01:42:01.010000"],["2024-07-25T01:42:02.010000"],["2024-07-25T01:42:03.010000"],["2024-07-25T01:42:04.010000"],["2024-07-25T01:42:05.010000"],["2024-07-25T01:42:06.010000"],["2024-07-25T01:42:07.010000"],["2024-07-25T01:42:08.010000"],["2024-07-25T01:42:09.010000"],["2024-07-25T01:42:10.010000"],["2024-07-25T01:42:11.010000"],["2024-07-25T01:42:12.010000"],["2024-07-25T01:42:13.010000"],["2024-07-25T01:42:14.010000"],["2024-07-25T01:42:15.010000"],["2024-07-25T01:42:16.010000"],["2024-07-25T01:42:17.010000"],["2024-07-25T01:42:18.010000"],["2024-07-25T01:42:19.010000"],["2024-07-25T01:42:20.010000"],["2024-07-25T01:42:21.010000"],["2024-07-25T01:42:22.010000"],["2024-07-25T01:42:23.010000"],["2024-07-25T01:42:24.010000"],["2024-07-25T01:42:25.010000"],["2024-07-25T01:42:26.010000"],["2024-07-25T01:42:27.010000"],["2024-07-25T01:42:28.010000"],["2024-07-25T01:42:29.010000"],["2024-07-25T01:42:30.010000"],["2024-07-25T01:42:31.010000"],["2024-07-25T01:42:32.010000"],["2024-07-25T01:42:33.010000"],["2024-07-25T01:42:34.010000"],["2024-07-25T01:42:35.010000"],["2024-07-25T01:42:36.010000"],["2024-07-25T01:42:37.010000"],["2024-07-25T01:42:38.010000"],["2024-07-25T01:42:39.010000"],["2024-07-25T01:42:40.010000"],["2024-07-25T01:42:41.010000"],["2024-07-25T01:42:42.010000"],["2024-07-25T01:42:43.010000"],["2024-07-25T01:42:44.010000"],["2024-07-25T01:42:45.010000"],["2024-07-25T01:42:46.010000"],["2024-07-25T01:42:47.010000"],["2024-07-25T01:42:48.010000"],["2024-07-25T01:42:49.010000"],["2024-07-25T01:42:50.010000"],["2024-07-25T01:42:51.010000"],["2024-07-25T01:42:52.010000"],["2024-07-25T01:42:53.010000"],["2024-07-25T01:42:54.010000"],["2024-07-25T01:42:55.010000"],["2024-07-25T01:42:56.010000"],["2024-07-25T01:42:57.010000"],["2024-07-25T01:42:58.010000"],["2024-07-25T01:42:59.010000"],["2024-07-25T01:43:00.010000"],["2024-07-25T01:43:01.010000"],["2024-07-25T01:43:02.010000"],["2024-07-25T01:43:03.010000"],["2024-07-25T01:43:04.010000"],["2024-07-25T01:43:05.010000"],["2024-07-25T01:43:06.010000"],["2024-07-25T01:43:07.010000"],["2024-07-25T01:43:08.010000"],["2024-07-25T01:43:09.010000"],["2024-07-25T01:43:10.010000"],["2024-07-25T01:43:11.010000"],["2024-07-25T01:43:12.010000"],["2024-07-25T01:43:13.010000"],["2024-07-25T01:43:14.010000"],["2024-07-25T01:43:15.010000"],["2024-07-25T01:43:16.010000"],["2024-07-25T01:43:17.010000"],["2024-07-25T01:43:18.010000"],["2024-07-25T01:43:19.010000"],["2024-07-25T01:43:20.010000"],["2024-07-25T01:43:21.010000"],["2024-07-25T01:43:22.010000"],["2024-07-25T01:43:23.010000"],["2024-07-25T01:43:24.010000"],["2024-07-25T01:43:25.010000"],["2024-07-25T01:43:26.010000"],["2024-07-25T01:43:27.010000"],["2024-07-25T01:43:28.010000"],["2024-07-25T01:43:29.010000"],["2024-07-25T01:43:30.010000"],["2024-07-25T01:43:31.010000"],["2024-07-25T01:43:32.010000"],["2024-07-25T01:43:33.010000"],["2024-07-25T01:43:34.010000"],["2024-07-25T01:43:35.010000"],["2024-07-25T01:43:36.010000"],["2024-07-25T01:43:37.010000"],["2024-07-25T01:43:38.010000"],["2024-07-25T01:43:39.010000"],["2024-07-25T01:43:40.010000"],["2024-07-25T01:43:41.010000"],["2024-07-25T01:43:42.010000"],["2024-07-25T01:43:43.010000"],["2024-07-25T01:43:44.010000"],["2024-07-25T01:43:45.010000"],["2024-07-25T01:43:46.010000"],["2024-07-25T01:43:47.010000"],["2024-07-25T01:43:48.010000"],["2024-07-25T01:43:49.010000"],["2024-07-25T01:43:50.010000"],["2024-07-25T01:43:51.010000"],["2024-07-25T01:43:52.010000"],["2024-07-25T01:43:53.010000"],["2024-07-25T01:43:54.010000"],["2024-07-25T01:43:55.010000"],["2024-07-25T01:43:56.010000"],["2024-07-25T01:43:57.010000"],["2024-07-25T01:43:58.010000"],["2024-07-25T01:43:59.010000"],["2024-07-25T01:44:00.010000"],["2024-07-25T01:44:01.010000"],["2024-07-25T01:44:02.010000"],["2024-07-25T01:44:03.010000"],["2024-07-25T01:44:04.010000"],["2024-07-25T01:44:05.010000"],["2024-07-25T01:44:06.010000"],["2024-07-25T01:44:07.010000"],["2024-07-25T01:44:08.010000"],["2024-07-25T01:44:09.010000"],["2024-07-25T01:44:10.010000"],["2024-07-25T01:44:11.010000"],["2024-07-25T01:44:12.010000"],["2024-07-25T01:44:13.010000"],["2024-07-25T01:44:14.010000"],["2024-07-25T01:44:15.010000"],["2024-07-25T01:44:16.010000"],["2024-07-25T01:44:17.010000"],["2024-07-25T01:44:18.010000"],["2024-07-25T01:44:19.010000"],["2024-07-25T01:44:20.010000"],["2024-07-25T01:44:21.010000"],["2024-07-25T01:44:22.010000"],["2024-07-25T01:44:23.010000"],["2024-07-25T01:44:24.010000"],["2024-07-25T01:44:25.010000"],["2024-07-25T01:44:26.010000"],["2024-07-25T01:44:27.010000"],["2024-07-25T01:44:28.010000"],["2024-07-25T01:44:29.010000"],["2024-07-25T01:44:30.010000"],["2024-07-25T01:44:31.010000"],["2024-07-25T01:44:32.010000"],["2024-07-25T01:44:33.010000"],["2024-07-25T01:44:34.010000"],["2024-07-25T01:44:35.010000"],["2024-07-25T01:44:36.010000"],["2024-07-25T01:44:37.010000"],["2024-07-25T01:44:38.010000"],["2024-07-25T01:44:39.010000"],["2024-07-25T01:44:40.010000"],["2024-07-25T01:44:41.010000"],["2024-07-25T01:44:42.010000"],["2024-07-25T01:44:43.010000"],["2024-07-25T01:44:44.010000"],["2024-07-25T01:44:45.010000"],["2024-07-25T01:44:46.010000"],["2024-07-25T01:44:47.010000"],["2024-07-25T01:44:48.010000"],["2024-07-25T01:44:49.010000"],["2024-07-25T01:44:50.010000"],["2024-07-25T01:44:51.010000"],["2024-07-25T01:44:52.010000"],["2024-07-25T01:44:53.010000"],["2024-07-25T01:44:54.010000"],["2024-07-25T01:44:55.010000"],["2024-07-25T01:44:56.010000"],["2024-07-25T01:44:57.010000"],["2024-07-25T01:44:58.010000"],["2024-07-25T01:44:59.010000"],["2024-07-25T01:45:00.010000"],["2024-07-25T01:45:01.010000"],["2024-07-25T01:45:02.010000"],["2024-07-25T01:45:03.010000"],["2024-07-25T01:45:04.010000"],["2024-07-25T01:45:05.010000"],["2024-07-25T01:45:06.010000"],["2024-07-25T01:45:07.010000"],["2024-07-25T01:45:08.010000"],["2024-07-25T01:45:09.010000"],["2024-07-25T01:45:10.010000"],["2024-07-25T01:45:11.010000"],["2024-07-25T01:45:12.010000"],["2024-07-25T01:45:13.010000"],["2024-07-25T01:45:14.010000"],["2024-07-25T01:45:15.010000"],["2024-07-25T01:45:16.010000"],["2024-07-25T01:45:17.010000"],["2024-07-25T01:45:18.010000"],["2024-07-25T01:45:19.010000"],["2024-07-25T01:45:20.010000"],["2024-07-25T01:45:21.010000"],["2024-07-25T01:45:22.010000"],["2024-07-25T01:45:23.010000"],["2024-07-25T01:45:24.010000"],["2024-07-25T01:45:25.010000"],["2024-07-25T01:45:26.010000"],["2024-07-25T01:45:27.010000"],["2024-07-25T01:45:28.010000"],["2024-07-25T01:45:29.010000"],["2024-07-25T01:45:30.010000"],["2024-07-25T01:45:31.010000"],["2024-07-25T01:45:32.010000"],["2024-07-25T01:45:33.010000"],["2024-07-25T01:45:34.010000"],["2024-07-25T01:45:35.010000"],["2024-07-25T01:45:36.010000"],["2024-07-25T01:45:37.010000"],["2024-07-25T01:45:38.010000"],["2024-07-25T01:45:39.010000"],["2024-07-25T01:45:40.010000"],["2024-07-25T01:45:41.010000"],["2024-07-25T01:45:42.010000"],["2024-07-25T01:45:43.010000"],["2024-07-25T01:45:44.010000"],["2024-07-25T01:45:45.010000"],["2024-07-25T01:45:46.010000"],["2024-07-25T01:45:47.010000"],["2024-07-25T01:45:48.010000"],["2024-07-25T01:45:49.010000"],["2024-07-25T01:45:50.010000"],["2024-07-25T01:45:51.010000"],["2024-07-25T01:45:52.010000"],["2024-07-25T01:45:53.010000"],["2024-07-25T01:45:54.010000"],["2024-07-25T01:45:55.010000"],["2024-07-25T01:45:56.010000"],["2024-07-25T01:45:57.010000"],["2024-07-25T01:45:58.010000"],["2024-07-25T01:45:59.010000"],["2024-07-25T01:46:00.010000"],["2024-07-25T01:46:01.010000"],["2024-07-25T01:46:02.010000"],["2024-07-25T01:46:03.010000"],["2024-07-25T01:46:04.010000"],["2024-07-25T01:46:05.010000"],["2024-07-25T01:46:06.010000"],["2024-07-25T01:46:07.010000"],["2024-07-25T01:46:08.010000"],["2024-07-25T01:46:09.010000"],["2024-07-25T01:46:10.010000"],["2024-07-25T01:46:11.010000"],["2024-07-25T01:46:12.010000"],["2024-07-25T01:46:13.010000"],["2024-07-25T01:46:14.010000"],["2024-07-25T01:46:15.010000"],["2024-07-25T01:46:16.010000"],["2024-07-25T01:46:17.010000"],["2024-07-25T01:46:18.010000"],["2024-07-25T01:46:19.010000"],["2024-07-25T01:46:20.010000"],["2024-07-25T01:46:21.010000"],["2024-07-25T01:46:22.010000"],["2024-07-25T01:46:23.010000"],["2024-07-25T01:46:24.010000"],["2024-07-25T01:46:25.010000"],["2024-07-25T01:46:26.010000"],["2024-07-25T01:46:27.010000"],["2024-07-25T01:46:28.010000"],["2024-07-25T01:46:29.010000"],["2024-07-25T01:46:30.010000"],["2024-07-25T01:46:31.010000"],["2024-07-25T01:46:32.010000"],["2024-07-25T01:46:33.010000"],["2024-07-25T01:46:34.010000"],["2024-07-25T01:46:35.010000"],["2024-07-25T01:46:36.010000"],["2024-07-25T01:46:37.010000"],["2024-07-25T01:46:38.010000"],["2024-07-25T01:46:39.010000"],["2024-07-25T01:46:40.010000"],["2024-07-25T01:46:41.010000"],["2024-07-25T01:46:42.010000"],["2024-07-25T01:46:43.010000"],["2024-07-25T01:46:44.010000"],["2024-07-25T01:46:45.010000"],["2024-07-25T01:46:46.010000"],["2024-07-25T01:46:47.010000"],["2024-07-25T01:46:48.010000"],["2024-07-25T01:46:49.010000"],["2024-07-25T01:46:50.010000"],["2024-07-25T01:46:51.010000"],["2024-07-25T01:46:52.010000"],["2024-07-25T01:46:53.010000"],["2024-07-25T01:46:54.010000"],["2024-07-25T01:46:55.010000"],["2024-07-25T01:46:56.010000"],["2024-07-25T01:46:57.010000"],["2024-07-25T01:46:58.010000"],["2024-07-25T01:46:59.010000"],["2024-07-25T01:47:00.010000"],["2024-07-25T01:47:01.010000"],["2024-07-25T01:47:02.010000"],["2024-07-25T01:47:03.010000"],["2024-07-25T01:47:04.010000"],["2024-07-25T01:47:05.010000"],["2024-07-25T01:47:06.010000"],["2024-07-25T01:47:07.010000"],["2024-07-25T01:47:08.010000"],["2024-07-25T01:47:09.010000"],["2024-07-25T01:47:10.010000"],["2024-07-25T01:47:11.010000"],["2024-07-25T01:47:12.010000"],["2024-07-25T01:47:13.010000"],["2024-07-25T01:47:14.010000"],["2024-07-25T01:47:15.010000"],["2024-07-25T01:47:16.010000"],["2024-07-25T01:47:17.010000"],["2024-07-25T01:47:18.010000"],["2024-07-25T01:47:19.010000"],["2024-07-25T01:47:20.010000"],["2024-07-25T01:47:21.010000"],["2024-07-25T01:47:22.010000"],["2024-07-25T01:47:23.010000"],["2024-07-25T01:47:24.010000"],["2024-07-25T01:47:25.010000"],["2024-07-25T01:47:26.010000"],["2024-07-25T01:47:27.010000"],["2024-07-25T01:47:28.010000"],["2024-07-25T01:47:29.010000"],["2024-07-25T01:47:30.010000"],["2024-07-25T01:47:31.010000"],["2024-07-25T01:47:32.010000"],["2024-07-25T01:47:33.010000"],["2024-07-25T01:47:34.010000"],["2024-07-25T01:47:35.010000"],["2024-07-25T01:47:36.010000"],["2024-07-25T01:47:37.010000"],["2024-07-25T01:47:38.010000"],["2024-07-25T01:47:39.010000"],["2024-07-25T01:47:40.010000"],["2024-07-25T01:47:41.010000"],["2024-07-25T01:47:42.010000"],["2024-07-25T01:47:43.010000"],["2024-07-25T01:47:44.010000"],["2024-07-25T01:47:45.010000"],["2024-07-25T01:47:46.010000"],["2024-07-25T01:47:47.010000"],["2024-07-25T01:47:48.010000"],["2024-07-25T01:47:49.010000"],["2024-07-25T01:47:50.010000"],["2024-07-25T01:47:51.010000"],["2024-07-25T01:47:52.010000"],["2024-07-25T01:47:53.010000"],["2024-07-25T01:47:54.010000"],["2024-07-25T01:47:55.010000"],["2024-07-25T01:47:56.010000"],["2024-07-25T01:47:57.010000"],["2024-07-25T01:47:58.010000"],["2024-07-25T01:47:59.010000"],["2024-07-25T01:48:00.010000"],["2024-07-25T01:48:01.010000"],["2024-07-25T01:48:02.010000"],["2024-07-25T01:48:03.010000"],["2024-07-25T01:48:04.010000"],["2024-07-25T01:48:05.010000"],["2024-07-25T01:48:06.010000"],["2024-07-25T01:48:07.010000"],["2024-07-25T01:48:08.010000"],["2024-07-25T01:48:09.010000"],["2024-07-25T01:48:10.010000"],["2024-07-25T01:48:11.010000"],["2024-07-25T01:48:12.010000"],["2024-07-25T01:48:13.010000"],["2024-07-25T01:48:14.010000"],["2024-07-25T01:48:15.010000"],["2024-07-25T01:48:16.010000"],["2024-07-25T01:48:17.010000"],["2024-07-25T01:48:18.010000"],["2024-07-25T01:48:19.010000"],["2024-07-25T01:48:20.010000"],["2024-07-25T01:48:21.010000"],["2024-07-25T01:48:22.010000"],["2024-07-25T01:48:23.010000"],["2024-07-25T01:48:24.010000"],["2024-07-25T01:48:25.010000"],["2024-07-25T01:48:26.010000"],["2024-07-25T01:48:27.010000"],["2024-07-25T01:48:28.010000"],["2024-07-25T01:48:29.010000"],["2024-07-25T01:48:30.010000"],["2024-07-25T01:48:31.010000"],["2024-07-25T01:48:32.010000"],["2024-07-25T01:48:33.010000"],["2024-07-25T01:48:34.010000"],["2024-07-25T01:48:35.010000"],["2024-07-25T01:48:36.010000"],["2024-07-25T01:48:37.010000"],["2024-07-25T01:48:38.010000"],["2024-07-25T01:48:39.010000"],["2024-07-25T01:48:40.010000"],["2024-07-25T01:48:41.010000"],["2024-07-25T01:48:42.010000"],["2024-07-25T01:48:43.010000"],["2024-07-25T01:48:44.010000"],["2024-07-25T01:48:45.010000"],["2024-07-25T01:48:46.010000"],["2024-07-25T01:48:47.010000"],["2024-07-25T01:48:48.010000"],["2024-07-25T01:48:49.010000"],["2024-07-25T01:48:50.010000"],["2024-07-25T01:48:51.010000"],["2024-07-25T01:48:52.010000"],["2024-07-25T01:48:53.010000"],["2024-07-25T01:48:54.010000"],["2024-07-25T01:48:55.010000"],["2024-07-25T01:48:56.010000"],["2024-07-25T01:48:57.010000"],["2024-07-25T01:48:58.010000"],["2024-07-25T01:48:59.010000"],["2024-07-25T01:49:00.010000"],["2024-07-25T01:49:01.010000"],["2024-07-25T01:49:02.010000"],["2024-07-25T01:49:03.010000"],["2024-07-25T01:49:04.010000"],["2024-07-25T01:49:05.010000"],["2024-07-25T01:49:06.010000"],["2024-07-25T01:49:07.010000"],["2024-07-25T01:49:08.010000"],["2024-07-25T01:49:09.010000"],["2024-07-25T01:49:10.010000"],["2024-07-25T01:49:11.010000"],["2024-07-25T01:49:12.010000"],["2024-07-25T01:49:13.010000"],["2024-07-25T01:49:14.010000"],["2024-07-25T01:49:15.010000"],["2024-07-25T01:49:16.010000"],["2024-07-25T01:49:17.010000"],["2024-07-25T01:49:18.010000"],["2024-07-25T01:49:19.010000"],["2024-07-25T01:49:20.010000"],["2024-07-25T01:49:21.010000"],["2024-07-25T01:49:22.010000"],["2024-07-25T01:49:23.010000"],["2024-07-25T01:49:24.010000"],["2024-07-25T01:49:25.010000"],["2024-07-25T01:49:26.010000"],["2024-07-25T01:49:27.010000"],["2024-07-25T01:49:28.010000"],["2024-07-25T01:49:29.010000"],["2024-07-25T01:49:30.010000"],["2024-07-25T01:49:31.010000"],["2024-07-25T01:49:32.010000"],["2024-07-25T01:49:33.010000"],["2024-07-25T01:49:34.010000"],["2024-07-25T01:49:35.010000"],["2024-07-25T01:49:36.010000"],["2024-07-25T01:49:37.010000"],["2024-07-25T01:49:38.010000"],["2024-07-25T01:49:39.010000"],["2024-07-25T01:49:40.010000"],["2024-07-25T01:49:41.010000"],["2024-07-25T01:49:42.010000"],["2024-07-25T01:49:43.010000"],["2024-07-25T01:49:44.010000"],["2024-07-25T01:49:45.010000"],["2024-07-25T01:49:46.010000"],["2024-07-25T01:49:47.010000"],["2024-07-25T01:49:48.010000"],["2024-07-25T01:49:49.010000"],["2024-07-25T01:49:50.010000"],["2024-07-25T01:49:51.010000"],["2024-07-25T01:49:52.010000"],["2024-07-25T01:49:53.010000"],["2024-07-25T01:49:54.010000"],["2024-07-25T01:49:55.010000"],["2024-07-25T01:49:56.010000"],["2024-07-25T01:49:57.010000"],["2024-07-25T01:49:58.010000"],["2024-07-25T01:49:59.010000"],["2024-07-25T01:50:00.010000"],["2024-07-25T01:50:01.010000"],["2024-07-25T01:50:02.010000"],["2024-07-25T01:50:03.010000"],["2024-07-25T01:50:04.010000"],["2024-07-25T01:50:05.010000"],["2024-07-25T01:50:06.010000"],["2024-07-25T01:50:07.010000"],["2024-07-25T01:50:08.010000"],["2024-07-25T01:50:09.010000"],["2024-07-25T01:50:10.010000"],["2024-07-25T01:50:11.010000"],["2024-07-25T01:50:12.010000"],["2024-07-25T01:50:13.010000"],["2024-07-25T01:50:14.010000"],["2024-07-25T01:50:15.010000"],["2024-07-25T01:50:16.010000"],["2024-07-25T01:50:17.010000"],["2024-07-25T01:50:18.010000"],["2024-07-25T01:50:19.010000"],["2024-07-25T01:50:20.010000"],["2024-07-25T01:50:21.010000"],["2024-07-25T01:50:22.010000"],["2024-07-25T01:50:23.010000"],["2024-07-25T01:50:24.010000"],["2024-07-25T01:50:25.010000"],["2024-07-25T01:50:26.010000"],["2024-07-25T01:50:27.010000"],["2024-07-25T01:50:28.010000"],["2024-07-25T01:50:29.010000"],["2024-07-25T01:50:30.010000"],["2024-07-25T01:50:31.010000"],["2024-07-25T01:50:32.010000"],["2024-07-25T01:50:33.010000"],["2024-07-25T01:50:34.010000"],["2024-07-25T01:50:35.010000"],["2024-07-25T01:50:36.010000"],["2024-07-25T01:50:37.010000"],["2024-07-25T01:50:38.010000"],["2024-07-25T01:50:39.010000"],["2024-07-25T01:50:40.010000"],["2024-07-25T01:50:41.010000"],["2024-07-25T01:50:42.010000"],["2024-07-25T01:50:43.010000"],["2024-07-25T01:50:44.010000"],["2024-07-25T01:50:45.010000"],["2024-07-25T01:50:46.010000"],["2024-07-25T01:50:47.010000"],["2024-07-25T01:50:48.010000"],["2024-07-25T01:50:49.010000"],["2024-07-25T01:50:50.010000"],["2024-07-25T01:50:51.010000"],["2024-07-25T01:50:52.010000"],["2024-07-25T01:50:53.010000"],["2024-07-25T01:50:54.010000"],["2024-07-25T01:50:55.010000"],["2024-07-25T01:50:56.010000"],["2024-07-25T01:50:57.010000"],["2024-07-25T01:50:58.010000"],["2024-07-25T01:50:59.010000"],["2024-07-25T01:51:00.010000"],["2024-07-25T01:51:01.010000"],["2024-07-25T01:51:02.010000"],["2024-07-25T01:51:03.010000"],["2024-07-25T01:51:04.010000"],["2024-07-25T01:51:05.010000"],["2024-07-25T01:51:06.010000"],["2024-07-25T01:51:07.010000"],["2024-07-25T01:51:08.010000"],["2024-07-25T01:51:09.010000"],["2024-07-25T01:51:10.010000"],["2024-07-25T01:51:11.010000"],["2024-07-25T01:51:12.010000"],["2024-07-25T01:51:13.010000"],["2024-07-25T01:51:14.010000"],["2024-07-25T01:51:15.010000"],["2024-07-25T01:51:16.010000"],["2024-07-25T01:51:17.010000"],["2024-07-25T01:51:18.010000"],["2024-07-25T01:51:19.010000"],["2024-07-25T01:51:20.010000"],["2024-07-25T01:51:21.010000"],["2024-07-25T01:51:22.010000"],["2024-07-25T01:51:23.010000"],["2024-07-25T01:51:24.010000"],["2024-07-25T01:51:25.010000"],["2024-07-25T01:51:26.010000"],["2024-07-25T01:51:27.010000"],["2024-07-25T01:51:28.010000"],["2024-07-25T01:51:29.010000"],["2024-07-25T01:51:30.010000"],["2024-07-25T01:51:31.010000"],["2024-07-25T01:51:32.010000"],["2024-07-25T01:51:33.010000"],["2024-07-25T01:51:34.010000"],["2024-07-25T01:51:35.010000"],["2024-07-25T01:51:36.010000"],["2024-07-25T01:51:37.010000"],["2024-07-25T01:51:38.010000"],["2024-07-25T01:51:39.010000"],["2024-07-25T01:51:40.010000"],["2024-07-25T01:51:41.010000"],["2024-07-25T01:51:42.010000"],["2024-07-25T01:51:43.010000"],["2024-07-25T01:51:44.010000"],["2024-07-25T01:51:45.010000"],["2024-07-25T01:51:46.010000"],["2024-07-25T01:51:47.010000"],["2024-07-25T01:51:48.010000"],["2024-07-25T01:51:49.010000"],["2024-07-25T01:51:50.010000"],["2024-07-25T01:51:51.010000"],["2024-07-25T01:51:52.010000"],["2024-07-25T01:51:53.010000"],["2024-07-25T01:51:54.010000"],["2024-07-25T01:51:55.010000"],["2024-07-25T01:51:56.010000"],["2024-07-25T01:51:57.010000"],["2024-07-25T01:51:58.010000"],["2024-07-25T01:51:59.010000"],["2024-07-25T01:52:00.010000"],["2024-07-25T01:52:01.010000"],["2024-07-25T01:52:02.010000"],["2024-07-25T01:52:03.010000"],["2024-07-25T01:52:04.010000"],["2024-07-25T01:52:05.010000"],["2024-07-25T01:52:06.010000"],["2024-07-25T01:52:07.010000"],["2024-07-25T01:52:08.010000"],["2024-07-25T01:52:09.010000"],["2024-07-25T01:52:10.010000"],["2024-07-25T01:52:11.010000"],["2024-07-25T01:52:12.010000"],["2024-07-25T01:52:13.010000"],["2024-07-25T01:52:14.010000"],["2024-07-25T01:52:15.010000"],["2024-07-25T01:52:16.010000"],["2024-07-25T01:52:17.010000"],["2024-07-25T01:52:18.010000"],["2024-07-25T01:52:19.010000"],["2024-07-25T01:52:20.010000"],["2024-07-25T01:52:21.010000"],["2024-07-25T01:52:22.010000"],["2024-07-25T01:52:23.010000"],["2024-07-25T01:52:24.010000"],["2024-07-25T01:52:25.010000"],["2024-07-25T01:52:26.010000"],["2024-07-25T01:52:27.010000"],["2024-07-25T01:52:28.010000"],["2024-07-25T01:52:29.010000"],["2024-07-25T01:52:30.010000"],["2024-07-25T01:52:31.010000"],["2024-07-25T01:52:32.010000"],["2024-07-25T01:52:33.010000"],["2024-07-25T01:52:34.010000"],["2024-07-25T01:52:35.010000"],["2024-07-25T01:52:36.010000"],["2024-07-25T01:52:37.010000"],["2024-07-25T01:52:38.010000"],["2024-07-25T01:52:39.010000"],["2024-07-25T01:52:40.010000"],["2024-07-25T01:52:41.010000"],["2024-07-25T01:52:42.010000"],["2024-07-25T01:52:43.010000"],["2024-07-25T01:52:44.010000"],["2024-07-25T01:52:45.010000"],["2024-07-25T01:52:46.010000"],["2024-07-25T01:52:47.010000"],["2024-07-25T01:52:48.010000"],["2024-07-25T01:52:49.010000"],["2024-07-25T01:52:50.010000"],["2024-07-25T01:52:51.010000"],["2024-07-25T01:52:52.010000"],["2024-07-25T01:52:53.010000"],["2024-07-25T01:52:54.010000"],["2024-07-25T01:52:55.010000"],["2024-07-25T01:52:56.010000"],["2024-07-25T01:52:57.010000"],["2024-07-25T01:52:58.010000"],["2024-07-25T01:52:59.010000"],["2024-07-25T01:53:00.010000"],["2024-07-25T01:53:01.010000"],["2024-07-25T01:53:02.010000"],["2024-07-25T01:53:03.010000"],["2024-07-25T01:53:04.010000"],["2024-07-25T01:53:05.010000"],["2024-07-25T01:53:06.010000"],["2024-07-25T01:53:07.010000"],["2024-07-25T01:53:08.010000"],["2024-07-25T01:53:09.010000"],["2024-07-25T01:53:10.010000"],["2024-07-25T01:53:11.010000"],["2024-07-25T01:53:12.010000"],["2024-07-25T01:53:13.010000"],["2024-07-25T01:53:14.010000"],["2024-07-25T01:53:15.010000"],["2024-07-25T01:53:16.010000"],["2024-07-25T01:53:17.010000"],["2024-07-25T01:53:18.010000"],["2024-07-25T01:53:19.010000"],["2024-07-25T01:53:20.010000"],["2024-07-25T01:53:21.010000"],["2024-07-25T01:53:22.010000"],["2024-07-25T01:53:23.010000"],["2024-07-25T01:53:24.010000"],["2024-07-25T01:53:25.010000"],["2024-07-25T01:53:26.010000"],["2024-07-25T01:53:27.010000"],["2024-07-25T01:53:28.010000"],["2024-07-25T01:53:29.010000"],["2024-07-25T01:53:30.010000"],["2024-07-25T01:53:31.010000"],["2024-07-25T01:53:32.010000"],["2024-07-25T01:53:33.010000"],["2024-07-25T01:53:34.010000"],["2024-07-25T01:53:35.010000"],["2024-07-25T01:53:36.010000"],["2024-07-25T01:53:37.010000"],["2024-07-25T01:53:38.010000"],["2024-07-25T01:53:39.010000"],["2024-07-25T01:53:40.010000"],["2024-07-25T01:53:41.010000"],["2024-07-25T01:53:42.010000"],["2024-07-25T01:53:43.010000"],["2024-07-25T01:53:44.010000"],["2024-07-25T01:53:45.010000"],["2024-07-25T01:53:46.010000"],["2024-07-25T01:53:47.010000"],["2024-07-25T01:53:48.010000"],["2024-07-25T01:53:49.010000"],["2024-07-25T01:53:50.010000"],["2024-07-25T01:53:51.010000"],["2024-07-25T01:53:52.010000"],["2024-07-25T01:53:53.010000"],["2024-07-25T01:53:54.010000"],["2024-07-25T01:53:55.010000"],["2024-07-25T01:53:56.010000"],["2024-07-25T01:53:57.010000"],["2024-07-25T01:53:58.010000"],["2024-07-25T01:53:59.010000"],["2024-07-25T01:54:00.010000"],["2024-07-25T01:54:01.010000"],["2024-07-25T01:54:02.010000"],["2024-07-25T01:54:03.010000"],["2024-07-25T01:54:04.010000"],["2024-07-25T01:54:05.010000"],["2024-07-25T01:54:06.010000"],["2024-07-25T01:54:07.010000"],["2024-07-25T01:54:08.010000"],["2024-07-25T01:54:09.010000"],["2024-07-25T01:54:10.010000"],["2024-07-25T01:54:11.010000"],["2024-07-25T01:54:12.010000"],["2024-07-25T01:54:13.010000"],["2024-07-25T01:54:14.010000"],["2024-07-25T01:54:15.010000"],["2024-07-25T01:54:16.010000"],["2024-07-25T01:54:17.010000"],["2024-07-25T01:54:18.010000"],["2024-07-25T01:54:19.010000"],["2024-07-25T01:54:20.010000"],["2024-07-25T01:54:21.010000"],["2024-07-25T01:54:22.010000"],["2024-07-25T01:54:23.010000"],["2024-07-25T01:54:24.010000"],["2024-07-25T01:54:25.010000"],["2024-07-25T01:54:26.010000"],["2024-07-25T01:54:27.010000"],["2024-07-25T01:54:28.010000"],["2024-07-25T01:54:29.010000"],["2024-07-25T01:54:30.010000"],["2024-07-25T01:54:31.010000"],["2024-07-25T01:54:32.010000"],["2024-07-25T01:54:33.010000"],["2024-07-25T01:54:34.010000"],["2024-07-25T01:54:35.010000"],["2024-07-25T01:54:36.010000"],["2024-07-25T01:54:37.010000"],["2024-07-25T01:54:38.010000"],["2024-07-25T01:54:39.010000"],["2024-07-25T01:54:40.010000"],["2024-07-25T01:54:41.010000"],["2024-07-25T01:54:42.010000"],["2024-07-25T01:54:43.010000"],["2024-07-25T01:54:44.010000"],["2024-07-25T01:54:45.010000"],["2024-07-25T01:54:46.010000"],["2024-07-25T01:54:47.010000"],["2024-07-25T01:54:48.010000"],["2024-07-25T01:54:49.010000"],["2024-07-25T01:54:50.010000"],["2024-07-25T01:54:51.010000"],["2024-07-25T01:54:52.010000"],["2024-07-25T01:54:53.010000"],["2024-07-25T01:54:54.010000"],["2024-07-25T01:54:55.010000"],["2024-07-25T01:54:56.010000"],["2024-07-25T01:54:57.010000"],["2024-07-25T01:54:58.010000"],["2024-07-25T01:54:59.010000"],["2024-07-25T01:55:00.010000"],["2024-07-25T01:55:01.010000"],["2024-07-25T01:55:02.010000"],["2024-07-25T01:55:03.010000"],["2024-07-25T01:55:04.010000"],["2024-07-25T01:55:05.010000"],["2024-07-25T01:55:06.010000"],["2024-07-25T01:55:07.010000"],["2024-07-25T01:55:08.010000"],["2024-07-25T01:55:09.010000"],["2024-07-25T01:55:10.010000"],["2024-07-25T01:55:11.010000"],["2024-07-25T01:55:12.010000"],["2024-07-25T01:55:13.010000"],["2024-07-25T01:55:14.010000"],["2024-07-25T01:55:15.010000"],["2024-07-25T01:55:16.010000"],["2024-07-25T01:55:17.010000"],["2024-07-25T01:55:18.010000"],["2024-07-25T01:55:19.010000"],["2024-07-25T01:55:20.010000"],["2024-07-25T01:55:21.010000"],["2024-07-25T01:55:22.010000"],["2024-07-25T01:55:23.010000"],["2024-07-25T01:55:24.010000"],["2024-07-25T01:55:25.010000"],["2024-07-25T01:55:26.010000"],["2024-07-25T01:55:27.010000"],["2024-07-25T01:55:28.010000"],["2024-07-25T01:55:29.010000"],["2024-07-25T01:55:30.010000"],["2024-07-25T01:55:31.010000"],["2024-07-25T01:55:32.010000"],["2024-07-25T01:55:33.010000"],["2024-07-25T01:55:34.010000"],["2024-07-25T01:55:35.010000"],["2024-07-25T01:55:36.010000"],["2024-07-25T01:55:37.010000"],["2024-07-25T01:55:38.010000"],["2024-07-25T01:55:39.010000"],["2024-07-25T01:55:40.010000"],["2024-07-25T01:55:41.010000"],["2024-07-25T01:55:42.010000"],["2024-07-25T01:55:43.010000"],["2024-07-25T01:55:44.010000"],["2024-07-25T01:55:45.010000"],["2024-07-25T01:55:46.010000"],["2024-07-25T01:55:47.010000"],["2024-07-25T01:55:48.010000"],["2024-07-25T01:55:49.010000"],["2024-07-25T01:55:50.010000"],["2024-07-25T01:55:51.010000"],["2024-07-25T01:55:52.010000"],["2024-07-25T01:55:53.010000"],["2024-07-25T01:55:54.010000"],["2024-07-25T01:55:55.010000"],["2024-07-25T01:55:56.010000"],["2024-07-25T01:55:57.010000"],["2024-07-25T01:55:58.010000"],["2024-07-25T01:55:59.010000"],["2024-07-25T01:56:00.010000"],["2024-07-25T01:56:01.010000"],["2024-07-25T01:56:02.010000"],["2024-07-25T01:56:03.010000"],["2024-07-25T01:56:04.010000"],["2024-07-25T01:56:05.010000"],["2024-07-25T01:56:06.010000"],["2024-07-25T01:56:07.010000"],["2024-07-25T01:56:08.010000"],["2024-07-25T01:56:09.010000"],["2024-07-25T01:56:10.010000"],["2024-07-25T01:56:11.010000"],["2024-07-25T01:56:12.010000"],["2024-07-25T01:56:13.010000"],["2024-07-25T01:56:14.010000"],["2024-07-25T01:56:15.010000"],["2024-07-25T01:56:16.010000"],["2024-07-25T01:56:17.010000"],["2024-07-25T01:56:18.010000"],["2024-07-25T01:56:19.010000"],["2024-07-25T01:56:20.010000"],["2024-07-25T01:56:21.010000"],["2024-07-25T01:56:22.010000"],["2024-07-25T01:56:23.010000"],["2024-07-25T01:56:24.010000"],["2024-07-25T01:56:25.010000"],["2024-07-25T01:56:26.010000"],["2024-07-25T01:56:27.010000"],["2024-07-25T01:56:28.010000"],["2024-07-25T01:56:29.010000"],["2024-07-25T01:56:30.010000"],["2024-07-25T01:56:31.010000"],["2024-07-25T01:56:32.010000"],["2024-07-25T01:56:33.010000"],["2024-07-25T01:56:34.010000"],["2024-07-25T01:56:35.010000"],["2024-07-25T01:56:36.010000"],["2024-07-25T01:56:37.010000"],["2024-07-25T01:56:38.010000"],["2024-07-25T01:56:39.010000"],["2024-07-25T01:56:40.010000"],["2024-07-25T01:56:41.010000"],["2024-07-25T01:56:42.010000"],["2024-07-25T01:56:43.010000"],["2024-07-25T01:56:44.010000"],["2024-07-25T01:56:45.010000"],["2024-07-25T01:56:46.010000"],["2024-07-25T01:56:47.010000"],["2024-07-25T01:56:48.010000"],["2024-07-25T01:56:49.010000"],["2024-07-25T01:56:50.010000"],["2024-07-25T01:56:51.010000"],["2024-07-25T01:56:52.010000"],["2024-07-25T01:56:53.010000"],["2024-07-25T01:56:54.010000"],["2024-07-25T01:56:55.010000"],["2024-07-25T01:56:56.010000"],["2024-07-25T01:56:57.010000"],["2024-07-25T01:56:58.010000"],["2024-07-25T01:56:59.010000"],["2024-07-25T01:57:00.010000"],["2024-07-25T01:57:01.010000"],["2024-07-25T01:57:02.010000"],["2024-07-25T01:57:03.010000"],["2024-07-25T01:57:04.010000"],["2024-07-25T01:57:05.010000"],["2024-07-25T01:57:06.010000"],["2024-07-25T01:57:07.010000"],["2024-07-25T01:57:08.010000"],["2024-07-25T01:57:09.010000"],["2024-07-25T01:57:10.010000"],["2024-07-25T01:57:11.010000"],["2024-07-25T01:57:12.010000"],["2024-07-25T01:57:13.010000"],["2024-07-25T01:57:14.010000"],["2024-07-25T01:57:15.010000"],["2024-07-25T01:57:16.010000"],["2024-07-25T01:57:17.010000"],["2024-07-25T01:57:18.010000"],["2024-07-25T01:57:19.010000"],["2024-07-25T01:57:20.010000"],["2024-07-25T01:57:21.010000"],["2024-07-25T01:57:22.010000"],["2024-07-25T01:57:23.010000"],["2024-07-25T01:57:24.010000"],["2024-07-25T01:57:25.010000"],["2024-07-25T01:57:26.010000"],["2024-07-25T01:57:27.010000"],["2024-07-25T01:57:28.010000"],["2024-07-25T01:57:29.010000"],["2024-07-25T01:57:30.010000"],["2024-07-25T01:57:31.010000"],["2024-07-25T01:57:32.010000"],["2024-07-25T01:57:33.010000"],["2024-07-25T01:57:34.010000"],["2024-07-25T01:57:35.010000"],["2024-07-25T01:57:36.010000"],["2024-07-25T01:57:37.010000"],["2024-07-25T01:57:38.010000"],["2024-07-25T01:57:39.010000"],["2024-07-25T01:57:40.010000"],["2024-07-25T01:57:41.010000"],["2024-07-25T01:57:42.010000"],["2024-07-25T01:57:43.010000"],["2024-07-25T01:57:44.010000"],["2024-07-25T01:57:45.010000"],["2024-07-25T01:57:46.010000"],["2024-07-25T01:57:47.010000"],["2024-07-25T01:57:48.010000"],["2024-07-25T01:57:49.010000"],["2024-07-25T01:57:50.010000"],["2024-07-25T01:57:51.010000"],["2024-07-25T01:57:52.010000"],["2024-07-25T01:57:53.010000"],["2024-07-25T01:57:54.010000"],["2024-07-25T01:57:55.010000"],["2024-07-25T01:57:56.010000"],["2024-07-25T01:57:57.010000"],["2024-07-25T01:57:58.010000"],["2024-07-25T01:57:59.010000"],["2024-07-25T01:58:00.010000"],["2024-07-25T01:58:01.010000"],["2024-07-25T01:58:02.010000"],["2024-07-25T01:58:03.010000"],["2024-07-25T01:58:04.010000"],["2024-07-25T01:58:05.010000"],["2024-07-25T01:58:06.010000"],["2024-07-25T01:58:07.010000"],["2024-07-25T01:58:08.010000"],["2024-07-25T01:58:09.010000"],["2024-07-25T01:58:10.010000"],["2024-07-25T01:58:11.010000"],["2024-07-25T01:58:12.010000"],["2024-07-25T01:58:13.010000"],["2024-07-25T01:58:14.010000"],["2024-07-25T01:58:15.010000"],["2024-07-25T01:58:16.010000"],["2024-07-25T01:58:17.010000"],["2024-07-25T01:58:18.010000"],["2024-07-25T01:58:19.010000"],["2024-07-25T01:58:20.010000"],["2024-07-25T01:58:21.010000"],["2024-07-25T01:58:22.010000"],["2024-07-25T01:58:23.010000"],["2024-07-25T01:58:24.010000"],["2024-07-25T01:58:25.010000"],["2024-07-25T01:58:26.010000"],["2024-07-25T01:58:27.010000"],["2024-07-25T01:58:28.010000"],["2024-07-25T01:58:29.010000"],["2024-07-25T01:58:30.010000"],["2024-07-25T01:58:31.010000"],["2024-07-25T01:58:32.010000"],["2024-07-25T01:58:33.010000"],["2024-07-25T01:58:34.010000"],["2024-07-25T01:58:35.010000"],["2024-07-25T01:58:36.010000"],["2024-07-25T01:58:37.010000"],["2024-07-25T01:58:38.010000"],["2024-07-25T01:58:39.010000"],["2024-07-25T01:58:40.010000"],["2024-07-25T01:58:41.010000"],["2024-07-25T01:58:42.010000"],["2024-07-25T01:58:43.010000"],["2024-07-25T01:58:44.010000"],["2024-07-25T01:58:45.010000"],["2024-07-25T01:58:46.010000"],["2024-07-25T01:58:47.010000"],["2024-07-25T01:58:48.010000"],["2024-07-25T01:58:49.010000"],["2024-07-25T01:58:50.010000"],["2024-07-25T01:58:51.010000"],["2024-07-25T01:58:52.010000"],["2024-07-25T01:58:53.010000"],["2024-07-25T01:58:54.010000"],["2024-07-25T01:58:55.010000"],["2024-07-25T01:58:56.010000"],["2024-07-25T01:58:57.010000"],["2024-07-25T01:58:58.010000"],["2024-07-25T01:58:59.010000"],["2024-07-25T01:59:00.010000"],["2024-07-25T01:59:01.010000"],["2024-07-25T01:59:02.010000"],["2024-07-25T01:59:03.010000"],["2024-07-25T01:59:04.010000"],["2024-07-25T01:59:05.010000"],["2024-07-25T01:59:06.010000"],["2024-07-25T01:59:07.010000"],["2024-07-25T01:59:08.010000"],["2024-07-25T01:59:09.010000"],["2024-07-25T01:59:10.010000"],["2024-07-25T01:59:11.010000"],["2024-07-25T01:59:12.010000"],["2024-07-25T01:59:13.010000"],["2024-07-25T01:59:14.010000"],["2024-07-25T01:59:15.010000"],["2024-07-25T01:59:16.010000"],["2024-07-25T01:59:17.010000"],["2024-07-25T01:59:18.010000"],["2024-07-25T01:59:19.010000"],["2024-07-25T01:59:20.010000"],["2024-07-25T01:59:21.010000"],["2024-07-25T01:59:22.010000"],["2024-07-25T01:59:23.010000"],["2024-07-25T01:59:24.010000"],["2024-07-25T01:59:25.010000"],["2024-07-25T01:59:26.010000"],["2024-07-25T01:59:27.010000"],["2024-07-25T01:59:28.010000"],["2024-07-25T01:59:29.010000"],["2024-07-25T01:59:30.010000"],["2024-07-25T01:59:31.010000"],["2024-07-25T01:59:32.010000"],["2024-07-25T01:59:33.010000"],["2024-07-25T01:59:34.010000"],["2024-07-25T01:59:35.010000"],["2024-07-25T01:59:36.010000"],["2024-07-25T01:59:37.010000"],["2024-07-25T01:59:38.010000"],["2024-07-25T01:59:39.010000"],["2024-07-25T01:59:40.010000"],["2024-07-25T01:59:41.010000"],["2024-07-25T01:59:42.010000"],["2024-07-25T01:59:43.010000"],["2024-07-25T01:59:44.010000"],["2024-07-25T01:59:45.010000"],["2024-07-25T01:59:46.010000"],["2024-07-25T01:59:47.010000"],["2024-07-25T01:59:48.010000"],["2024-07-25T01:59:49.010000"],["2024-07-25T01:59:50.010000"],["2024-07-25T01:59:51.010000"],["2024-07-25T01:59:52.010000"],["2024-07-25T01:59:53.010000"],["2024-07-25T01:59:54.010000"],["2024-07-25T01:59:55.010000"],["2024-07-25T01:59:56.010000"],["2024-07-25T01:59:57.010000"],["2024-07-25T01:59:58.010000"],["2024-07-25T01:59:59.010000"],["2024-07-25T02:00:00.010000"],["2024-07-25T02:00:01.010000"],["2024-07-25T02:00:02.010000"],["2024-07-25T02:00:03.010000"],["2024-07-25T02:00:04.010000"],["2024-07-25T02:00:05.010000"],["2024-07-25T02:00:06.010000"],["2024-07-25T02:00:07.010000"],["2024-07-25T02:00:08.010000"],["2024-07-25T02:00:09.010000"],["2024-07-25T02:00:10.010000"],["2024-07-25T02:00:11.010000"],["2024-07-25T02:00:12.010000"],["2024-07-25T02:00:13.010000"],["2024-07-25T02:00:14.010000"],["2024-07-25T02:00:15.010000"],["2024-07-25T02:00:16.010000"],["2024-07-25T02:00:17.010000"],["2024-07-25T02:00:18.010000"],["2024-07-25T02:00:19.010000"],["2024-07-25T02:00:20.010000"],["2024-07-25T02:00:21.010000"],["2024-07-25T02:00:22.010000"],["2024-07-25T02:00:23.010000"],["2024-07-25T02:00:24.010000"],["2024-07-25T02:00:25.010000"],["2024-07-25T02:00:26.010000"],["2024-07-25T02:00:27.010000"],["2024-07-25T02:00:28.010000"],["2024-07-25T02:00:29.010000"],["2024-07-25T02:00:30.010000"],["2024-07-25T02:00:31.010000"],["2024-07-25T02:00:32.010000"],["2024-07-25T02:00:33.010000"],["2024-07-25T02:00:34.010000"],["2024-07-25T02:00:35.010000"],["2024-07-25T02:00:36.010000"],["2024-07-25T02:00:37.010000"],["2024-07-25T02:00:38.010000"],["2024-07-25T02:00:39.010000"],["2024-07-25T02:00:40.010000"],["2024-07-25T02:00:41.010000"],["2024-07-25T02:00:42.010000"],["2024-07-25T02:00:43.010000"],["2024-07-25T02:00:44.010000"],["2024-07-25T02:00:45.010000"],["2024-07-25T02:00:46.010000"],["2024-07-25T02:00:47.010000"],["2024-07-25T02:00:48.010000"],["2024-07-25T02:00:49.010000"],["2024-07-25T02:00:50.010000"],["2024-07-25T02:00:51.010000"],["2024-07-25T02:00:52.010000"],["2024-07-25T02:00:53.010000"],["2024-07-25T02:00:54.010000"],["2024-07-25T02:00:55.010000"],["2024-07-25T02:00:56.010000"],["2024-07-25T02:00:57.010000"],["2024-07-25T02:00:58.010000"],["2024-07-25T02:00:59.010000"],["2024-07-25T02:01:00.010000"],["2024-07-25T02:01:01.010000"],["2024-07-25T02:01:02.010000"],["2024-07-25T02:01:03.010000"],["2024-07-25T02:01:04.010000"],["2024-07-25T02:01:05.010000"],["2024-07-25T02:01:06.010000"],["2024-07-25T02:01:07.010000"],["2024-07-25T02:01:08.010000"],["2024-07-25T02:01:09.010000"],["2024-07-25T02:01:10.010000"],["2024-07-25T02:01:11.010000"],["2024-07-25T02:01:12.010000"],["2024-07-25T02:01:13.010000"],["2024-07-25T02:01:14.010000"],["2024-07-25T02:01:15.010000"],["2024-07-25T02:01:16.010000"],["2024-07-25T02:01:17.010000"],["2024-07-25T02:01:18.010000"],["2024-07-25T02:01:19.010000"],["2024-07-25T02:01:20.010000"],["2024-07-25T02:01:21.010000"],["2024-07-25T02:01:22.010000"],["2024-07-25T02:01:23.010000"],["2024-07-25T02:01:24.010000"],["2024-07-25T02:01:25.010000"],["2024-07-25T02:01:26.010000"],["2024-07-25T02:01:27.010000"],["2024-07-25T02:01:28.010000"],["2024-07-25T02:01:29.010000"],["2024-07-25T02:01:30.010000"],["2024-07-25T02:01:31.010000"],["2024-07-25T02:01:32.010000"],["2024-07-25T02:01:33.010000"],["2024-07-25T02:01:34.010000"],["2024-07-25T02:01:35.010000"],["2024-07-25T02:01:36.010000"],["2024-07-25T02:01:37.010000"],["2024-07-25T02:01:38.010000"],["2024-07-25T02:01:39.010000"],["2024-07-25T02:01:40.010000"],["2024-07-25T02:01:41.010000"],["2024-07-25T02:01:42.010000"],["2024-07-25T02:01:43.010000"],["2024-07-25T02:01:44.010000"],["2024-07-25T02:01:45.010000"],["2024-07-25T02:01:46.010000"],["2024-07-25T02:01:47.010000"],["2024-07-25T02:01:48.010000"],["2024-07-25T02:01:49.010000"],["2024-07-25T02:01:50.010000"],["2024-07-25T02:01:51.010000"],["2024-07-25T02:01:52.010000"],["2024-07-25T02:01:53.010000"],["2024-07-25T02:01:54.010000"],["2024-07-25T02:01:55.010000"],["2024-07-25T02:01:56.010000"],["2024-07-25T02:01:57.010000"],["2024-07-25T02:01:58.010000"],["2024-07-25T02:01:59.010000"],["2024-07-25T02:02:00.010000"],["2024-07-25T02:02:01.010000"],["2024-07-25T02:02:02.010000"],["2024-07-25T02:02:03.010000"],["2024-07-25T02:02:04.010000"],["2024-07-25T02:02:05.010000"],["2024-07-25T02:02:06.010000"],["2024-07-25T02:02:07.010000"],["2024-07-25T02:02:08.010000"],["2024-07-25T02:02:09.010000"],["2024-07-25T02:02:10.010000"],["2024-07-25T02:02:11.010000"],["2024-07-25T02:02:12.010000"],["2024-07-25T02:02:13.010000"],["2024-07-25T02:02:14.010000"],["2024-07-25T02:02:15.010000"],["2024-07-25T02:02:16.010000"],["2024-07-25T02:02:17.010000"],["2024-07-25T02:02:18.010000"],["2024-07-25T02:02:19.010000"],["2024-07-25T02:02:20.010000"],["2024-07-25T02:02:21.010000"],["2024-07-25T02:02:22.010000"],["2024-07-25T02:02:23.010000"],["2024-07-25T02:02:24.010000"],["2024-07-25T02:02:25.010000"],["2024-07-25T02:02:26.010000"],["2024-07-25T02:02:27.010000"],["2024-07-25T02:02:28.010000"],["2024-07-25T02:02:29.010000"],["2024-07-25T02:02:30.010000"],["2024-07-25T02:02:31.010000"],["2024-07-25T02:02:32.010000"],["2024-07-25T02:02:33.010000"],["2024-07-25T02:02:34.010000"],["2024-07-25T02:02:35.010000"],["2024-07-25T02:02:36.010000"],["2024-07-25T02:02:37.010000"],["2024-07-25T02:02:38.010000"],["2024-07-25T02:02:39.010000"],["2024-07-25T02:02:40.010000"],["2024-07-25T02:02:41.010000"],["2024-07-25T02:02:42.010000"],["2024-07-25T02:02:43.010000"],["2024-07-25T02:02:44.010000"],["2024-07-25T02:02:45.010000"],["2024-07-25T02:02:46.010000"],["2024-07-25T02:02:47.010000"],["2024-07-25T02:02:48.010000"],["2024-07-25T02:02:49.010000"],["2024-07-25T02:02:50.010000"],["2024-07-25T02:02:51.010000"],["2024-07-25T02:02:52.010000"],["2024-07-25T02:02:53.010000"],["2024-07-25T02:02:54.010000"],["2024-07-25T02:02:55.010000"],["2024-07-25T02:02:56.010000"],["2024-07-25T02:02:57.010000"],["2024-07-25T02:02:58.010000"],["2024-07-25T02:02:59.010000"],["2024-07-25T02:03:00.010000"],["2024-07-25T02:03:01.010000"],["2024-07-25T02:03:02.010000"],["2024-07-25T02:03:03.010000"],["2024-07-25T02:03:04.010000"],["2024-07-25T02:03:05.010000"],["2024-07-25T02:03:06.010000"],["2024-07-25T02:03:07.010000"],["2024-07-25T02:03:08.010000"],["2024-07-25T02:03:09.010000"],["2024-07-25T02:03:10.010000"],["2024-07-25T02:03:11.010000"],["2024-07-25T02:03:12.010000"],["2024-07-25T02:03:13.010000"],["2024-07-25T02:03:14.010000"],["2024-07-25T02:03:15.010000"],["2024-07-25T02:03:16.010000"],["2024-07-25T02:03:17.010000"],["2024-07-25T02:03:18.010000"],["2024-07-25T02:03:19.010000"],["2024-07-25T02:03:20.010000"],["2024-07-25T02:03:21.010000"],["2024-07-25T02:03:22.010000"],["2024-07-25T02:03:23.010000"],["2024-07-25T02:03:24.010000"],["2024-07-25T02:03:25.010000"],["2024-07-25T02:03:26.010000"],["2024-07-25T02:03:27.010000"],["2024-07-25T02:03:28.010000"],["2024-07-25T02:03:29.010000"],["2024-07-25T02:03:30.010000"],["2024-07-25T02:03:31.010000"],["2024-07-25T02:03:32.010000"],["2024-07-25T02:03:33.010000"],["2024-07-25T02:03:34.010000"],["2024-07-25T02:03:35.010000"],["2024-07-25T02:03:36.010000"],["2024-07-25T02:03:37.010000"],["2024-07-25T02:03:38.010000"],["2024-07-25T02:03:39.010000"],["2024-07-25T02:03:40.010000"],["2024-07-25T02:03:41.010000"],["2024-07-25T02:03:42.010000"],["2024-07-25T02:03:43.010000"],["2024-07-25T02:03:44.010000"],["2024-07-25T02:03:45.010000"],["2024-07-25T02:03:46.010000"],["2024-07-25T02:03:47.010000"],["2024-07-25T02:03:48.010000"],["2024-07-25T02:03:49.010000"],["2024-07-25T02:03:50.010000"],["2024-07-25T02:03:51.010000"],["2024-07-25T02:03:52.010000"],["2024-07-25T02:03:53.010000"],["2024-07-25T02:03:54.010000"],["2024-07-25T02:03:55.010000"],["2024-07-25T02:03:56.010000"],["2024-07-25T02:03:57.010000"],["2024-07-25T02:03:58.010000"],["2024-07-25T02:03:59.010000"],["2024-07-25T02:04:00.010000"],["2024-07-25T02:04:01.010000"],["2024-07-25T02:04:02.010000"],["2024-07-25T02:04:03.010000"],["2024-07-25T02:04:04.010000"],["2024-07-25T02:04:05.010000"],["2024-07-25T02:04:06.010000"],["2024-07-25T02:04:07.010000"],["2024-07-25T02:04:08.010000"],["2024-07-25T02:04:09.010000"],["2024-07-25T02:04:10.010000"],["2024-07-25T02:04:11.010000"],["2024-07-25T02:04:12.010000"],["2024-07-25T02:04:13.010000"],["2024-07-25T02:04:14.010000"],["2024-07-25T02:04:15.010000"],["2024-07-25T02:04:16.010000"],["2024-07-25T02:04:17.010000"],["2024-07-25T02:04:18.010000"],["2024-07-25T02:04:19.010000"],["2024-07-25T02:04:20.010000"],["2024-07-25T02:04:21.010000"],["2024-07-25T02:04:22.010000"],["2024-07-25T02:04:23.010000"],["2024-07-25T02:04:24.010000"],["2024-07-25T02:04:25.010000"],["2024-07-25T02:04:26.010000"],["2024-07-25T02:04:27.010000"],["2024-07-25T02:04:28.010000"],["2024-07-25T02:04:29.010000"],["2024-07-25T02:04:30.010000"],["2024-07-25T02:04:31.010000"],["2024-07-25T02:04:32.010000"],["2024-07-25T02:04:33.010000"],["2024-07-25T02:04:34.010000"],["2024-07-25T02:04:35.010000"],["2024-07-25T02:04:36.010000"],["2024-07-25T02:04:37.010000"],["2024-07-25T02:04:38.010000"],["2024-07-25T02:04:39.010000"],["2024-07-25T02:04:40.010000"],["2024-07-25T02:04:41.010000"],["2024-07-25T02:04:42.010000"],["2024-07-25T02:04:43.010000"],["2024-07-25T02:04:44.010000"],["2024-07-25T02:04:45.010000"],["2024-07-25T02:04:46.010000"],["2024-07-25T02:04:47.010000"],["2024-07-25T02:04:48.010000"],["2024-07-25T02:04:49.010000"],["2024-07-25T02:04:50.010000"],["2024-07-25T02:04:51.010000"],["2024-07-25T02:04:52.010000"],["2024-07-25T02:04:53.010000"],["2024-07-25T02:04:54.010000"],["2024-07-25T02:04:55.010000"],["2024-07-25T02:04:56.010000"],["2024-07-25T02:04:57.010000"],["2024-07-25T02:04:58.010000"],["2024-07-25T02:04:59.010000"],["2024-07-25T02:05:00.010000"],["2024-07-25T02:05:01.010000"],["2024-07-25T02:05:02.010000"],["2024-07-25T02:05:03.010000"],["2024-07-25T02:05:04.010000"],["2024-07-25T02:05:05.010000"],["2024-07-25T02:05:06.010000"],["2024-07-25T02:05:07.010000"],["2024-07-25T02:05:08.010000"],["2024-07-25T02:05:09.010000"],["2024-07-25T02:05:10.010000"],["2024-07-25T02:05:11.010000"],["2024-07-25T02:05:12.010000"],["2024-07-25T02:05:13.010000"],["2024-07-25T02:05:14.010000"],["2024-07-25T02:05:15.010000"],["2024-07-25T02:05:16.010000"],["2024-07-25T02:05:17.010000"],["2024-07-25T02:05:18.010000"],["2024-07-25T02:05:19.010000"],["2024-07-25T02:05:20.010000"],["2024-07-25T02:05:21.010000"],["2024-07-25T02:05:22.010000"],["2024-07-25T02:05:23.010000"],["2024-07-25T02:05:24.010000"],["2024-07-25T02:05:25.010000"],["2024-07-25T02:05:26.010000"],["2024-07-25T02:05:27.010000"],["2024-07-25T02:05:28.010000"],["2024-07-25T02:05:29.010000"],["2024-07-25T02:05:30.010000"],["2024-07-25T02:05:31.010000"],["2024-07-25T02:05:32.010000"],["2024-07-25T02:05:33.010000"],["2024-07-25T02:05:34.010000"],["2024-07-25T02:05:35.010000"],["2024-07-25T02:05:36.010000"],["2024-07-25T02:05:37.010000"],["2024-07-25T02:05:38.010000"],["2024-07-25T02:05:39.010000"],["2024-07-25T02:05:40.010000"],["2024-07-25T02:05:41.010000"],["2024-07-25T02:05:42.010000"],["2024-07-25T02:05:43.010000"],["2024-07-25T02:05:44.010000"],["2024-07-25T02:05:45.010000"],["2024-07-25T02:05:46.010000"],["2024-07-25T02:05:47.010000"],["2024-07-25T02:05:48.010000"],["2024-07-25T02:05:49.010000"],["2024-07-25T02:05:50.010000"],["2024-07-25T02:05:51.010000"],["2024-07-25T02:05:52.010000"],["2024-07-25T02:05:53.010000"],["2024-07-25T02:05:54.010000"],["2024-07-25T02:05:55.010000"],["2024-07-25T02:05:56.010000"],["2024-07-25T02:05:57.010000"],["2024-07-25T02:05:58.010000"],["2024-07-25T02:05:59.010000"],["2024-07-25T02:06:00.010000"],["2024-07-25T02:06:01.010000"],["2024-07-25T02:06:02.010000"],["2024-07-25T02:06:03.010000"],["2024-07-25T02:06:04.010000"],["2024-07-25T02:06:05.010000"],["2024-07-25T02:06:06.010000"],["2024-07-25T02:06:07.010000"],["2024-07-25T02:06:08.010000"],["2024-07-25T02:06:09.010000"],["2024-07-25T02:06:10.010000"],["2024-07-25T02:06:11.010000"],["2024-07-25T02:06:12.010000"],["2024-07-25T02:06:13.010000"],["2024-07-25T02:06:14.010000"],["2024-07-25T02:06:15.010000"],["2024-07-25T02:06:16.010000"],["2024-07-25T02:06:17.010000"],["2024-07-25T02:06:18.010000"],["2024-07-25T02:06:19.010000"],["2024-07-25T02:06:20.010000"],["2024-07-25T02:06:21.010000"],["2024-07-25T02:06:22.010000"],["2024-07-25T02:06:23.010000"],["2024-07-25T02:06:24.010000"],["2024-07-25T02:06:25.010000"],["2024-07-25T02:06:26.010000"],["2024-07-25T02:06:27.010000"],["2024-07-25T02:06:28.010000"],["2024-07-25T02:06:29.010000"],["2024-07-25T02:06:30.010000"],["2024-07-25T02:06:31.010000"],["2024-07-25T02:06:32.010000"],["2024-07-25T02:06:33.010000"],["2024-07-25T02:06:34.010000"],["2024-07-25T02:06:35.010000"],["2024-07-25T02:06:36.010000"],["2024-07-25T02:06:37.010000"],["2024-07-25T02:06:38.010000"],["2024-07-25T02:06:39.010000"],["2024-07-25T02:06:40.010000"],["2024-07-25T02:06:41.010000"],["2024-07-25T02:06:42.010000"],["2024-07-25T02:06:43.010000"],["2024-07-25T02:06:44.010000"],["2024-07-25T02:06:45.010000"],["2024-07-25T02:06:46.010000"],["2024-07-25T02:06:47.010000"],["2024-07-25T02:06:48.010000"],["2024-07-25T02:06:49.010000"],["2024-07-25T02:06:50.010000"],["2024-07-25T02:06:51.010000"],["2024-07-25T02:06:52.010000"],["2024-07-25T02:06:53.010000"],["2024-07-25T02:06:54.010000"],["2024-07-25T02:06:55.010000"],["2024-07-25T02:06:56.010000"],["2024-07-25T02:06:57.010000"],["2024-07-25T02:06:58.010000"],["2024-07-25T02:06:59.010000"],["2024-07-25T02:07:00.010000"],["2024-07-25T02:07:01.010000"],["2024-07-25T02:07:02.010000"],["2024-07-25T02:07:03.010000"],["2024-07-25T02:07:04.010000"],["2024-07-25T02:07:05.010000"],["2024-07-25T02:07:06.010000"],["2024-07-25T02:07:07.010000"],["2024-07-25T02:07:08.010000"],["2024-07-25T02:07:09.010000"],["2024-07-25T02:07:10.010000"],["2024-07-25T02:07:11.010000"],["2024-07-25T02:07:12.010000"],["2024-07-25T02:07:13.010000"],["2024-07-25T02:07:14.010000"],["2024-07-25T02:07:15.010000"],["2024-07-25T02:07:16.010000"],["2024-07-25T02:07:17.010000"],["2024-07-25T02:07:18.010000"],["2024-07-25T02:07:19.010000"],["2024-07-25T02:07:20.010000"],["2024-07-25T02:07:21.010000"],["2024-07-25T02:07:22.010000"],["2024-07-25T02:07:23.010000"],["2024-07-25T02:07:24.010000"],["2024-07-25T02:07:25.010000"],["2024-07-25T02:07:26.010000"],["2024-07-25T02:07:27.010000"],["2024-07-25T02:07:28.010000"],["2024-07-25T02:07:29.010000"],["2024-07-25T02:07:30.010000"],["2024-07-25T02:07:31.010000"],["2024-07-25T02:07:32.010000"],["2024-07-25T02:07:33.010000"],["2024-07-25T02:07:34.010000"],["2024-07-25T02:07:35.010000"],["2024-07-25T02:07:36.010000"],["2024-07-25T02:07:37.010000"],["2024-07-25T02:07:38.010000"],["2024-07-25T02:07:39.010000"],["2024-07-25T02:07:40.010000"],["2024-07-25T02:07:41.010000"],["2024-07-25T02:07:42.010000"],["2024-07-25T02:07:43.010000"],["2024-07-25T02:07:44.010000"],["2024-07-25T02:07:45.010000"],["2024-07-25T02:07:46.010000"],["2024-07-25T02:07:47.010000"],["2024-07-25T02:07:48.010000"],["2024-07-25T02:07:49.010000"],["2024-07-25T02:07:50.010000"],["2024-07-25T02:07:51.010000"],["2024-07-25T02:07:52.010000"],["2024-07-25T02:07:53.010000"],["2024-07-25T02:07:54.010000"],["2024-07-25T02:07:55.010000"],["2024-07-25T02:07:56.010000"],["2024-07-25T02:07:57.010000"],["2024-07-25T02:07:58.010000"],["2024-07-25T02:07:59.010000"],["2024-07-25T02:08:00.010000"],["2024-07-25T02:08:01.010000"],["2024-07-25T02:08:02.010000"],["2024-07-25T02:08:03.010000"],["2024-07-25T02:08:04.010000"],["2024-07-25T02:08:05.010000"],["2024-07-25T02:08:06.010000"],["2024-07-25T02:08:07.010000"],["2024-07-25T02:08:08.010000"],["2024-07-25T02:08:09.010000"],["2024-07-25T02:08:10.010000"],["2024-07-25T02:08:11.010000"],["2024-07-25T02:08:12.010000"],["2024-07-25T02:08:13.010000"],["2024-07-25T02:08:14.010000"],["2024-07-25T02:08:15.010000"],["2024-07-25T02:08:16.010000"],["2024-07-25T02:08:17.010000"],["2024-07-25T02:08:18.010000"],["2024-07-25T02:08:19.010000"],["2024-07-25T02:08:20.010000"],["2024-07-25T02:08:21.010000"],["2024-07-25T02:08:22.010000"],["2024-07-25T02:08:23.010000"],["2024-07-25T02:08:24.010000"],["2024-07-25T02:08:25.010000"],["2024-07-25T02:08:26.010000"],["2024-07-25T02:08:27.010000"],["2024-07-25T02:08:28.010000"],["2024-07-25T02:08:29.010000"],["2024-07-25T02:08:30.010000"],["2024-07-25T02:08:31.010000"],["2024-07-25T02:08:32.010000"],["2024-07-25T02:08:33.010000"],["2024-07-25T02:08:34.010000"],["2024-07-25T02:08:35.010000"],["2024-07-25T02:08:36.010000"],["2024-07-25T02:08:37.010000"],["2024-07-25T02:08:38.010000"],["2024-07-25T02:08:39.010000"],["2024-07-25T02:08:40.010000"],["2024-07-25T02:08:41.010000"],["2024-07-25T02:08:42.010000"],["2024-07-25T02:08:43.010000"],["2024-07-25T02:08:44.010000"],["2024-07-25T02:08:45.010000"],["2024-07-25T02:08:46.010000"],["2024-07-25T02:08:47.010000"],["2024-07-25T02:08:48.010000"],["2024-07-25T02:08:49.010000"],["2024-07-25T02:08:50.010000"],["2024-07-25T02:08:51.010000"],["2024-07-25T02:08:52.010000"],["2024-07-25T02:08:53.010000"],["2024-07-25T02:08:54.010000"],["2024-07-25T02:08:55.010000"],["2024-07-25T02:08:56.010000"],["2024-07-25T02:08:57.010000"],["2024-07-25T02:08:58.010000"],["2024-07-25T02:08:59.010000"],["2024-07-25T02:09:00.010000"],["2024-07-25T02:09:01.010000"],["2024-07-25T02:09:02.010000"],["2024-07-25T02:09:03.010000"],["2024-07-25T02:09:04.010000"],["2024-07-25T02:09:05.010000"],["2024-07-25T02:09:06.010000"],["2024-07-25T02:09:07.010000"],["2024-07-25T02:09:08.010000"],["2024-07-25T02:09:09.010000"],["2024-07-25T02:09:10.010000"],["2024-07-25T02:09:11.010000"],["2024-07-25T02:09:12.010000"],["2024-07-25T02:09:13.010000"],["2024-07-25T02:09:14.010000"],["2024-07-25T02:09:15.010000"],["2024-07-25T02:09:16.010000"],["2024-07-25T02:09:17.010000"],["2024-07-25T02:09:18.010000"],["2024-07-25T02:09:19.010000"],["2024-07-25T02:09:20.010000"],["2024-07-25T02:09:21.010000"],["2024-07-25T02:09:22.010000"],["2024-07-25T02:09:23.010000"],["2024-07-25T02:09:24.010000"],["2024-07-25T02:09:25.010000"],["2024-07-25T02:09:26.010000"],["2024-07-25T02:09:27.010000"],["2024-07-25T02:09:28.010000"],["2024-07-25T02:09:29.010000"],["2024-07-25T02:09:30.010000"],["2024-07-25T02:09:31.010000"],["2024-07-25T02:09:32.010000"],["2024-07-25T02:09:33.010000"],["2024-07-25T02:09:34.010000"],["2024-07-25T02:09:35.010000"],["2024-07-25T02:09:36.010000"],["2024-07-25T02:09:37.010000"],["2024-07-25T02:09:38.010000"],["2024-07-25T02:09:39.010000"],["2024-07-25T02:09:40.010000"],["2024-07-25T02:09:41.010000"],["2024-07-25T02:09:42.010000"],["2024-07-25T02:09:43.010000"],["2024-07-25T02:09:44.010000"],["2024-07-25T02:09:45.010000"],["2024-07-25T02:09:46.010000"],["2024-07-25T02:09:47.010000"],["2024-07-25T02:09:48.010000"],["2024-07-25T02:09:49.010000"],["2024-07-25T02:09:50.010000"],["2024-07-25T02:09:51.010000"],["2024-07-25T02:09:52.010000"],["2024-07-25T02:09:53.010000"],["2024-07-25T02:09:54.010000"],["2024-07-25T02:09:55.010000"],["2024-07-25T02:09:56.010000"],["2024-07-25T02:09:57.010000"],["2024-07-25T02:09:58.010000"],["2024-07-25T02:09:59.010000"],["2024-07-25T02:10:00.010000"],["2024-07-25T02:10:01.010000"],["2024-07-25T02:10:02.010000"],["2024-07-25T02:10:03.010000"],["2024-07-25T02:10:04.010000"],["2024-07-25T02:10:05.010000"],["2024-07-25T02:10:06.010000"],["2024-07-25T02:10:07.010000"],["2024-07-25T02:10:08.010000"],["2024-07-25T02:10:09.010000"],["2024-07-25T02:10:10.010000"],["2024-07-25T02:10:11.010000"],["2024-07-25T02:10:12.010000"],["2024-07-25T02:10:13.010000"],["2024-07-25T02:10:14.010000"],["2024-07-25T02:10:15.010000"],["2024-07-25T02:10:16.010000"],["2024-07-25T02:10:17.010000"],["2024-07-25T02:10:18.010000"],["2024-07-25T02:10:19.010000"],["2024-07-25T02:10:20.010000"],["2024-07-25T02:10:21.010000"],["2024-07-25T02:10:22.010000"],["2024-07-25T02:10:23.010000"],["2024-07-25T02:10:24.010000"],["2024-07-25T02:10:25.010000"],["2024-07-25T02:10:26.010000"],["2024-07-25T02:10:27.010000"],["2024-07-25T02:10:28.010000"],["2024-07-25T02:10:29.010000"],["2024-07-25T02:10:30.010000"],["2024-07-25T02:10:31.010000"],["2024-07-25T02:10:32.010000"],["2024-07-25T02:10:33.010000"],["2024-07-25T02:10:34.010000"],["2024-07-25T02:10:35.010000"],["2024-07-25T02:10:36.010000"],["2024-07-25T02:10:37.010000"],["2024-07-25T02:10:38.010000"],["2024-07-25T02:10:39.010000"],["2024-07-25T02:10:40.010000"],["2024-07-25T02:10:41.010000"],["2024-07-25T02:10:42.010000"],["2024-07-25T02:10:43.010000"],["2024-07-25T02:10:44.010000"],["2024-07-25T02:10:45.010000"],["2024-07-25T02:10:46.010000"],["2024-07-25T02:10:47.010000"],["2024-07-25T02:10:48.010000"],["2024-07-25T02:10:49.010000"],["2024-07-25T02:10:50.010000"],["2024-07-25T02:10:51.010000"],["2024-07-25T02:10:52.010000"],["2024-07-25T02:10:53.010000"],["2024-07-25T02:10:54.010000"],["2024-07-25T02:10:55.010000"],["2024-07-25T02:10:56.010000"],["2024-07-25T02:10:57.010000"],["2024-07-25T02:10:58.010000"],["2024-07-25T02:10:59.010000"],["2024-07-25T02:11:00.010000"],["2024-07-25T02:11:01.010000"],["2024-07-25T02:11:02.010000"],["2024-07-25T02:11:03.010000"],["2024-07-25T02:11:04.010000"],["2024-07-25T02:11:05.010000"],["2024-07-25T02:11:06.010000"],["2024-07-25T02:11:07.010000"],["2024-07-25T02:11:08.010000"],["2024-07-25T02:11:09.010000"],["2024-07-25T02:11:10.010000"],["2024-07-25T02:11:11.010000"],["2024-07-25T02:11:12.010000"],["2024-07-25T02:11:13.010000"],["2024-07-25T02:11:14.010000"],["2024-07-25T02:11:15.010000"],["2024-07-25T02:11:16.010000"],["2024-07-25T02:11:17.010000"],["2024-07-25T02:11:18.010000"],["2024-07-25T02:11:19.010000"],["2024-07-25T02:11:20.010000"],["2024-07-25T02:11:21.010000"],["2024-07-25T02:11:22.010000"],["2024-07-25T02:11:23.010000"],["2024-07-25T02:11:24.010000"],["2024-07-25T02:11:25.010000"],["2024-07-25T02:11:26.010000"],["2024-07-25T02:11:27.010000"],["2024-07-25T02:11:28.010000"],["2024-07-25T02:11:29.010000"],["2024-07-25T02:11:30.010000"],["2024-07-25T02:11:31.010000"],["2024-07-25T02:11:32.010000"],["2024-07-25T02:11:33.010000"],["2024-07-25T02:11:34.010000"],["2024-07-25T02:11:35.010000"],["2024-07-25T02:11:36.010000"],["2024-07-25T02:11:37.010000"],["2024-07-25T02:11:38.010000"],["2024-07-25T02:11:39.010000"],["2024-07-25T02:11:40.010000"],["2024-07-25T02:11:41.010000"],["2024-07-25T02:11:42.010000"],["2024-07-25T02:11:43.010000"],["2024-07-25T02:11:44.010000"],["2024-07-25T02:11:45.010000"],["2024-07-25T02:11:46.010000"],["2024-07-25T02:11:47.010000"],["2024-07-25T02:11:48.010000"],["2024-07-25T02:11:49.010000"],["2024-07-25T02:11:50.010000"],["2024-07-25T02:11:51.010000"],["2024-07-25T02:11:52.010000"],["2024-07-25T02:11:53.010000"],["2024-07-25T02:11:54.010000"],["2024-07-25T02:11:55.010000"],["2024-07-25T02:11:56.010000"],["2024-07-25T02:11:57.010000"],["2024-07-25T02:11:58.010000"],["2024-07-25T02:11:59.010000"],["2024-07-25T02:12:00.010000"],["2024-07-25T02:12:01.010000"],["2024-07-25T02:12:02.010000"],["2024-07-25T02:12:03.010000"],["2024-07-25T02:12:04.010000"],["2024-07-25T02:12:05.010000"],["2024-07-25T02:12:06.010000"],["2024-07-25T02:12:07.010000"],["2024-07-25T02:12:08.010000"],["2024-07-25T02:12:09.010000"],["2024-07-25T02:12:10.010000"],["2024-07-25T02:12:11.010000"],["2024-07-25T02:12:12.010000"],["2024-07-25T02:12:13.010000"],["2024-07-25T02:12:14.010000"],["2024-07-25T02:12:15.010000"],["2024-07-25T02:12:16.010000"],["2024-07-25T02:12:17.010000"],["2024-07-25T02:12:18.010000"],["2024-07-25T02:12:19.010000"],["2024-07-25T02:12:20.010000"],["2024-07-25T02:12:21.010000"],["2024-07-25T02:12:22.010000"],["2024-07-25T02:12:23.010000"],["2024-07-25T02:12:24.010000"],["2024-07-25T02:12:25.010000"],["2024-07-25T02:12:26.010000"],["2024-07-25T02:12:27.010000"],["2024-07-25T02:12:28.010000"],["2024-07-25T02:12:29.010000"],["2024-07-25T02:12:30.010000"],["2024-07-25T02:12:31.010000"],["2024-07-25T02:12:32.010000"],["2024-07-25T02:12:33.010000"],["2024-07-25T02:12:34.010000"],["2024-07-25T02:12:35.010000"],["2024-07-25T02:12:36.010000"],["2024-07-25T02:12:37.010000"],["2024-07-25T02:12:38.010000"],["2024-07-25T02:12:39.010000"],["2024-07-25T02:12:40.010000"],["2024-07-25T02:12:41.010000"],["2024-07-25T02:12:42.010000"],["2024-07-25T02:12:43.010000"],["2024-07-25T02:12:44.010000"],["2024-07-25T02:12:45.010000"],["2024-07-25T02:12:46.010000"],["2024-07-25T02:12:47.010000"],["2024-07-25T02:12:48.010000"],["2024-07-25T02:12:49.010000"],["2024-07-25T02:12:50.010000"],["2024-07-25T02:12:51.010000"],["2024-07-25T02:12:52.010000"],["2024-07-25T02:12:53.010000"],["2024-07-25T02:12:54.010000"],["2024-07-25T02:12:55.010000"],["2024-07-25T02:12:56.010000"],["2024-07-25T02:12:57.010000"],["2024-07-25T02:12:58.010000"],["2024-07-25T02:12:59.010000"],["2024-07-25T02:13:00.010000"],["2024-07-25T02:13:01.010000"],["2024-07-25T02:13:02.010000"],["2024-07-25T02:13:03.010000"],["2024-07-25T02:13:04.010000"],["2024-07-25T02:13:05.010000"],["2024-07-25T02:13:06.010000"],["2024-07-25T02:13:07.010000"],["2024-07-25T02:13:08.010000"],["2024-07-25T02:13:09.010000"],["2024-07-25T02:13:10.010000"],["2024-07-25T02:13:11.010000"],["2024-07-25T02:13:12.010000"],["2024-07-25T02:13:13.010000"],["2024-07-25T02:13:14.010000"],["2024-07-25T02:13:15.010000"],["2024-07-25T02:13:16.010000"],["2024-07-25T02:13:17.010000"],["2024-07-25T02:13:18.010000"],["2024-07-25T02:13:19.010000"],["2024-07-25T02:13:20.010000"],["2024-07-25T02:13:21.010000"],["2024-07-25T02:13:22.010000"],["2024-07-25T02:13:23.010000"],["2024-07-25T02:13:24.010000"],["2024-07-25T02:13:25.010000"],["2024-07-25T02:13:26.010000"],["2024-07-25T02:13:27.010000"],["2024-07-25T02:13:28.010000"],["2024-07-25T02:13:29.010000"],["2024-07-25T02:13:30.010000"],["2024-07-25T02:13:31.010000"],["2024-07-25T02:13:32.010000"],["2024-07-25T02:13:33.010000"],["2024-07-25T02:13:34.010000"],["2024-07-25T02:13:35.010000"],["2024-07-25T02:13:36.010000"],["2024-07-25T02:13:37.010000"],["2024-07-25T02:13:38.010000"],["2024-07-25T02:13:39.010000"],["2024-07-25T02:13:40.010000"],["2024-07-25T02:13:41.010000"],["2024-07-25T02:13:42.010000"],["2024-07-25T02:13:43.010000"],["2024-07-25T02:13:44.010000"],["2024-07-25T02:13:45.010000"],["2024-07-25T02:13:46.010000"],["2024-07-25T02:13:47.010000"],["2024-07-25T02:13:48.010000"],["2024-07-25T02:13:49.010000"],["2024-07-25T02:13:50.010000"],["2024-07-25T02:13:51.010000"],["2024-07-25T02:13:52.010000"],["2024-07-25T02:13:53.010000"],["2024-07-25T02:13:54.010000"],["2024-07-25T02:13:55.010000"],["2024-07-25T02:13:56.010000"],["2024-07-25T02:13:57.010000"],["2024-07-25T02:13:58.010000"],["2024-07-25T02:13:59.010000"],["2024-07-25T02:14:00.010000"],["2024-07-25T02:14:01.010000"],["2024-07-25T02:14:02.010000"],["2024-07-25T02:14:03.010000"],["2024-07-25T02:14:04.010000"],["2024-07-25T02:14:05.010000"],["2024-07-25T02:14:06.010000"],["2024-07-25T02:14:07.010000"],["2024-07-25T02:14:08.010000"],["2024-07-25T02:14:09.010000"],["2024-07-25T02:14:10.010000"],["2024-07-25T02:14:11.010000"],["2024-07-25T02:14:12.010000"],["2024-07-25T02:14:13.010000"],["2024-07-25T02:14:14.010000"],["2024-07-25T02:14:15.010000"],["2024-07-25T02:14:16.010000"],["2024-07-25T02:14:17.010000"],["2024-07-25T02:14:18.010000"],["2024-07-25T02:14:19.010000"],["2024-07-25T02:14:20.010000"],["2024-07-25T02:14:21.010000"],["2024-07-25T02:14:22.010000"],["2024-07-25T02:14:23.010000"],["2024-07-25T02:14:24.010000"],["2024-07-25T02:14:25.010000"],["2024-07-25T02:14:26.010000"],["2024-07-25T02:14:27.010000"],["2024-07-25T02:14:28.010000"],["2024-07-25T02:14:29.010000"],["2024-07-25T02:14:30.010000"],["2024-07-25T02:14:31.010000"],["2024-07-25T02:14:32.010000"],["2024-07-25T02:14:33.010000"],["2024-07-25T02:14:34.010000"],["2024-07-25T02:14:35.010000"],["2024-07-25T02:14:36.010000"],["2024-07-25T02:14:37.010000"],["2024-07-25T02:14:38.010000"],["2024-07-25T02:14:39.010000"],["2024-07-25T02:14:40.010000"],["2024-07-25T02:14:41.010000"],["2024-07-25T02:14:42.010000"],["2024-07-25T02:14:43.010000"],["2024-07-25T02:14:44.010000"],["2024-07-25T02:14:45.010000"],["2024-07-25T02:14:46.010000"],["2024-07-25T02:14:47.010000"],["2024-07-25T02:14:48.010000"],["2024-07-25T02:14:49.010000"],["2024-07-25T02:14:50.010000"],["2024-07-25T02:14:51.010000"],["2024-07-25T02:14:52.010000"],["2024-07-25T02:14:53.010000"],["2024-07-25T02:14:54.010000"],["2024-07-25T02:14:55.010000"],["2024-07-25T02:14:56.010000"],["2024-07-25T02:14:57.010000"],["2024-07-25T02:14:58.010000"],["2024-07-25T02:14:59.010000"],["2024-07-25T02:15:00.010000"],["2024-07-25T02:15:01.010000"],["2024-07-25T02:15:02.010000"],["2024-07-25T02:15:03.010000"],["2024-07-25T02:15:04.010000"],["2024-07-25T02:15:05.010000"],["2024-07-25T02:15:06.010000"],["2024-07-25T02:15:07.010000"],["2024-07-25T02:15:08.010000"],["2024-07-25T02:15:09.010000"],["2024-07-25T02:15:10.010000"],["2024-07-25T02:15:11.010000"],["2024-07-25T02:15:12.010000"],["2024-07-25T02:15:13.010000"],["2024-07-25T02:15:14.010000"],["2024-07-25T02:15:15.010000"],["2024-07-25T02:15:16.010000"],["2024-07-25T02:15:17.010000"],["2024-07-25T02:15:18.010000"],["2024-07-25T02:15:19.010000"],["2024-07-25T02:15:20.010000"],["2024-07-25T02:15:21.010000"],["2024-07-25T02:15:22.010000"],["2024-07-25T02:15:23.010000"],["2024-07-25T02:15:24.010000"],["2024-07-25T02:15:25.010000"],["2024-07-25T02:15:26.010000"],["2024-07-25T02:15:27.010000"],["2024-07-25T02:15:28.010000"],["2024-07-25T02:15:29.010000"],["2024-07-25T02:15:30.010000"],["2024-07-25T02:15:31.010000"],["2024-07-25T02:15:32.010000"],["2024-07-25T02:15:33.010000"],["2024-07-25T02:15:34.010000"],["2024-07-25T02:15:35.010000"],["2024-07-25T02:15:36.010000"],["2024-07-25T02:15:37.010000"],["2024-07-25T02:15:38.010000"],["2024-07-25T02:15:39.010000"],["2024-07-25T02:15:40.010000"],["2024-07-25T02:15:41.010000"],["2024-07-25T02:15:42.010000"],["2024-07-25T02:15:43.010000"],["2024-07-25T02:15:44.010000"],["2024-07-25T02:15:45.010000"],["2024-07-25T02:15:46.010000"],["2024-07-25T02:15:47.010000"],["2024-07-25T02:15:48.010000"],["2024-07-25T02:15:49.010000"],["2024-07-25T02:15:50.010000"],["2024-07-25T02:15:51.010000"],["2024-07-25T02:15:52.010000"],["2024-07-25T02:15:53.010000"],["2024-07-25T02:15:54.010000"],["2024-07-25T02:15:55.010000"],["2024-07-25T02:15:56.010000"],["2024-07-25T02:15:57.010000"],["2024-07-25T02:15:58.010000"],["2024-07-25T02:15:59.010000"],["2024-07-25T02:16:00.010000"],["2024-07-25T02:16:01.010000"],["2024-07-25T02:16:02.010000"],["2024-07-25T02:16:03.010000"],["2024-07-25T02:16:04.010000"],["2024-07-25T02:16:05.010000"],["2024-07-25T02:16:06.010000"],["2024-07-25T02:16:07.010000"],["2024-07-25T02:16:08.010000"],["2024-07-25T02:16:09.010000"],["2024-07-25T02:16:10.010000"],["2024-07-25T02:16:11.010000"],["2024-07-25T02:16:12.010000"],["2024-07-25T02:16:13.010000"],["2024-07-25T02:16:14.010000"],["2024-07-25T02:16:15.010000"],["2024-07-25T02:16:16.010000"],["2024-07-25T02:16:17.010000"],["2024-07-25T02:16:18.010000"],["2024-07-25T02:16:19.010000"],["2024-07-25T02:16:20.010000"],["2024-07-25T02:16:21.010000"],["2024-07-25T02:16:22.010000"],["2024-07-25T02:16:23.010000"],["2024-07-25T02:16:24.010000"],["2024-07-25T02:16:25.010000"],["2024-07-25T02:16:26.010000"],["2024-07-25T02:16:27.010000"],["2024-07-25T02:16:28.010000"],["2024-07-25T02:16:29.010000"],["2024-07-25T02:16:30.010000"],["2024-07-25T02:16:31.010000"],["2024-07-25T02:16:32.010000"],["2024-07-25T02:16:33.010000"],["2024-07-25T02:16:34.010000"],["2024-07-25T02:16:35.010000"],["2024-07-25T02:16:36.010000"],["2024-07-25T02:16:37.010000"],["2024-07-25T02:16:38.010000"],["2024-07-25T02:16:39.010000"],["2024-07-25T02:16:40.010000"],["2024-07-25T02:16:41.010000"],["2024-07-25T02:16:42.010000"],["2024-07-25T02:16:43.010000"],["2024-07-25T02:16:44.010000"],["2024-07-25T02:16:45.010000"],["2024-07-25T02:16:46.010000"],["2024-07-25T02:16:47.010000"],["2024-07-25T02:16:48.010000"],["2024-07-25T02:16:49.010000"],["2024-07-25T02:16:50.010000"],["2024-07-25T02:16:51.010000"],["2024-07-25T02:16:52.010000"],["2024-07-25T02:16:53.010000"],["2024-07-25T02:16:54.010000"],["2024-07-25T02:16:55.010000"],["2024-07-25T02:16:56.010000"],["2024-07-25T02:16:57.010000"],["2024-07-25T02:16:58.010000"],["2024-07-25T02:16:59.010000"],["2024-07-25T02:17:00.010000"],["2024-07-25T02:17:01.010000"],["2024-07-25T02:17:02.010000"],["2024-07-25T02:17:03.010000"],["2024-07-25T02:17:04.010000"],["2024-07-25T02:17:05.010000"],["2024-07-25T02:17:06.010000"],["2024-07-25T02:17:07.010000"],["2024-07-25T02:17:08.010000"],["2024-07-25T02:17:09.010000"],["2024-07-25T02:17:10.010000"],["2024-07-25T02:17:11.010000"],["2024-07-25T02:17:12.010000"],["2024-07-25T02:17:13.010000"],["2024-07-25T02:17:14.010000"],["2024-07-25T02:17:15.010000"],["2024-07-25T02:17:16.010000"],["2024-07-25T02:17:17.010000"],["2024-07-25T02:17:18.010000"],["2024-07-25T02:17:19.010000"],["2024-07-25T02:17:20.010000"],["2024-07-25T02:17:21.010000"],["2024-07-25T02:17:22.010000"],["2024-07-25T02:17:23.010000"],["2024-07-25T02:17:24.010000"],["2024-07-25T02:17:25.010000"],["2024-07-25T02:17:26.010000"],["2024-07-25T02:17:27.010000"],["2024-07-25T02:17:28.010000"],["2024-07-25T02:17:29.010000"],["2024-07-25T02:17:30.010000"],["2024-07-25T02:17:31.010000"],["2024-07-25T02:17:32.010000"],["2024-07-25T02:17:33.010000"],["2024-07-25T02:17:34.010000"],["2024-07-25T02:17:35.010000"],["2024-07-25T02:17:36.010000"],["2024-07-25T02:17:37.010000"],["2024-07-25T02:17:38.010000"],["2024-07-25T02:17:39.010000"],["2024-07-25T02:17:40.010000"],["2024-07-25T02:17:41.010000"],["2024-07-25T02:17:42.010000"],["2024-07-25T02:17:43.010000"],["2024-07-25T02:17:44.010000"],["2024-07-25T02:17:45.010000"],["2024-07-25T02:17:46.010000"],["2024-07-25T02:17:47.010000"],["2024-07-25T02:17:48.010000"],["2024-07-25T02:17:49.010000"],["2024-07-25T02:17:50.010000"],["2024-07-25T02:17:51.010000"],["2024-07-25T02:17:52.010000"],["2024-07-25T02:17:53.010000"],["2024-07-25T02:17:54.010000"],["2024-07-25T02:17:55.010000"],["2024-07-25T02:17:56.010000"],["2024-07-25T02:17:57.010000"],["2024-07-25T02:17:58.010000"],["2024-07-25T02:17:59.010000"],["2024-07-25T02:18:00.010000"],["2024-07-25T02:18:01.010000"],["2024-07-25T02:18:02.010000"],["2024-07-25T02:18:03.010000"],["2024-07-25T02:18:04.010000"],["2024-07-25T02:18:05.010000"],["2024-07-25T02:18:06.010000"],["2024-07-25T02:18:07.010000"],["2024-07-25T02:18:08.010000"],["2024-07-25T02:18:09.010000"],["2024-07-25T02:18:10.010000"],["2024-07-25T02:18:11.010000"],["2024-07-25T02:18:12.010000"],["2024-07-25T02:18:13.010000"],["2024-07-25T02:18:14.010000"],["2024-07-25T02:18:15.010000"],["2024-07-25T02:18:16.010000"],["2024-07-25T02:18:17.010000"],["2024-07-25T02:18:18.010000"],["2024-07-25T02:18:19.010000"],["2024-07-25T02:18:20.010000"],["2024-07-25T02:18:21.010000"],["2024-07-25T02:18:22.010000"],["2024-07-25T02:18:23.010000"],["2024-07-25T02:18:24.010000"],["2024-07-25T02:18:25.010000"],["2024-07-25T02:18:26.010000"],["2024-07-25T02:18:27.010000"],["2024-07-25T02:18:28.010000"],["2024-07-25T02:18:29.010000"],["2024-07-25T02:18:30.010000"],["2024-07-25T02:18:31.010000"],["2024-07-25T02:18:32.010000"],["2024-07-25T02:18:33.010000"],["2024-07-25T02:18:34.010000"],["2024-07-25T02:18:35.010000"],["2024-07-25T02:18:36.010000"],["2024-07-25T02:18:37.010000"],["2024-07-25T02:18:38.010000"],["2024-07-25T02:18:39.010000"],["2024-07-25T02:18:40.010000"],["2024-07-25T02:18:41.010000"],["2024-07-25T02:18:42.010000"],["2024-07-25T02:18:43.010000"],["2024-07-25T02:18:44.010000"],["2024-07-25T02:18:45.010000"],["2024-07-25T02:18:46.010000"],["2024-07-25T02:18:47.010000"],["2024-07-25T02:18:48.010000"],["2024-07-25T02:18:49.010000"],["2024-07-25T02:18:50.010000"],["2024-07-25T02:18:51.010000"],["2024-07-25T02:18:52.010000"],["2024-07-25T02:18:53.010000"],["2024-07-25T02:18:54.010000"],["2024-07-25T02:18:55.010000"],["2024-07-25T02:18:56.010000"],["2024-07-25T02:18:57.010000"],["2024-07-25T02:18:58.010000"],["2024-07-25T02:18:59.010000"],["2024-07-25T02:19:00.010000"],["2024-07-25T02:19:01.010000"],["2024-07-25T02:19:02.010000"],["2024-07-25T02:19:03.010000"],["2024-07-25T02:19:04.010000"],["2024-07-25T02:19:05.010000"],["2024-07-25T02:19:06.010000"],["2024-07-25T02:19:07.010000"],["2024-07-25T02:19:08.010000"],["2024-07-25T02:19:09.010000"],["2024-07-25T02:19:10.010000"],["2024-07-25T02:19:11.010000"],["2024-07-25T02:19:12.010000"],["2024-07-25T02:19:13.010000"],["2024-07-25T02:19:14.010000"],["2024-07-25T02:19:15.010000"],["2024-07-25T02:19:16.010000"],["2024-07-25T02:19:17.010000"],["2024-07-25T02:19:18.010000"],["2024-07-25T02:19:19.010000"],["2024-07-25T02:19:20.010000"],["2024-07-25T02:19:21.010000"],["2024-07-25T02:19:22.010000"],["2024-07-25T02:19:23.010000"],["2024-07-25T02:19:24.010000"],["2024-07-25T02:19:25.010000"],["2024-07-25T02:19:26.010000"],["2024-07-25T02:19:27.010000"],["2024-07-25T02:19:28.010000"],["2024-07-25T02:19:29.010000"],["2024-07-25T02:19:30.010000"],["2024-07-25T02:19:31.010000"],["2024-07-25T02:19:32.010000"],["2024-07-25T02:19:33.010000"],["2024-07-25T02:19:34.010000"],["2024-07-25T02:19:35.010000"],["2024-07-25T02:19:36.010000"],["2024-07-25T02:19:37.010000"],["2024-07-25T02:19:38.010000"],["2024-07-25T02:19:39.010000"],["2024-07-25T02:19:40.010000"],["2024-07-25T02:19:41.010000"],["2024-07-25T02:19:42.010000"],["2024-07-25T02:19:43.010000"],["2024-07-25T02:19:44.010000"],["2024-07-25T02:19:45.010000"],["2024-07-25T02:19:46.010000"],["2024-07-25T02:19:47.010000"],["2024-07-25T02:19:48.010000"],["2024-07-25T02:19:49.010000"],["2024-07-25T02:19:50.010000"],["2024-07-25T02:19:51.010000"],["2024-07-25T02:19:52.010000"],["2024-07-25T02:19:53.010000"],["2024-07-25T02:19:54.010000"],["2024-07-25T02:19:55.010000"],["2024-07-25T02:19:56.010000"],["2024-07-25T02:19:57.010000"],["2024-07-25T02:19:58.010000"],["2024-07-25T02:19:59.010000"],["2024-07-25T02:20:00.010000"],["2024-07-25T02:20:01.010000"],["2024-07-25T02:20:02.010000"],["2024-07-25T02:20:03.010000"],["2024-07-25T02:20:04.010000"],["2024-07-25T02:20:05.010000"],["2024-07-25T02:20:06.010000"],["2024-07-25T02:20:07.010000"],["2024-07-25T02:20:08.010000"],["2024-07-25T02:20:09.010000"],["2024-07-25T02:20:10.010000"],["2024-07-25T02:20:11.010000"],["2024-07-25T02:20:12.010000"],["2024-07-25T02:20:13.010000"],["2024-07-25T02:20:14.010000"],["2024-07-25T02:20:15.010000"],["2024-07-25T02:20:16.010000"],["2024-07-25T02:20:17.010000"],["2024-07-25T02:20:18.010000"],["2024-07-25T02:20:19.010000"],["2024-07-25T02:20:20.010000"],["2024-07-25T02:20:21.010000"],["2024-07-25T02:20:22.010000"],["2024-07-25T02:20:23.010000"],["2024-07-25T02:20:24.010000"],["2024-07-25T02:20:25.010000"],["2024-07-25T02:20:26.010000"],["2024-07-25T02:20:27.010000"],["2024-07-25T02:20:28.010000"],["2024-07-25T02:20:29.010000"],["2024-07-25T02:20:30.010000"],["2024-07-25T02:20:31.010000"],["2024-07-25T02:20:32.010000"],["2024-07-25T02:20:33.010000"],["2024-07-25T02:20:34.010000"],["2024-07-25T02:20:35.010000"],["2024-07-25T02:20:36.010000"],["2024-07-25T02:20:37.010000"],["2024-07-25T02:20:38.010000"],["2024-07-25T02:20:39.010000"],["2024-07-25T02:20:40.010000"],["2024-07-25T02:20:41.010000"],["2024-07-25T02:20:42.010000"],["2024-07-25T02:20:43.010000"],["2024-07-25T02:20:44.010000"],["2024-07-25T02:20:45.010000"],["2024-07-25T02:20:46.010000"],["2024-07-25T02:20:47.010000"],["2024-07-25T02:20:48.010000"],["2024-07-25T02:20:49.010000"],["2024-07-25T02:20:50.010000"],["2024-07-25T02:20:51.010000"],["2024-07-25T02:20:52.010000"],["2024-07-25T02:20:53.010000"],["2024-07-25T02:20:54.010000"],["2024-07-25T02:20:55.010000"],["2024-07-25T02:20:56.010000"],["2024-07-25T02:20:57.010000"],["2024-07-25T02:20:58.010000"],["2024-07-25T02:20:59.010000"],["2024-07-25T02:21:00.010000"],["2024-07-25T02:21:01.010000"],["2024-07-25T02:21:02.010000"],["2024-07-25T02:21:03.010000"],["2024-07-25T02:21:04.010000"],["2024-07-25T02:21:05.010000"],["2024-07-25T02:21:06.010000"],["2024-07-25T02:21:07.010000"],["2024-07-25T02:21:08.010000"],["2024-07-25T02:21:09.010000"],["2024-07-25T02:21:10.010000"],["2024-07-25T02:21:11.010000"],["2024-07-25T02:21:12.010000"],["2024-07-25T02:21:13.010000"],["2024-07-25T02:21:14.010000"],["2024-07-25T02:21:15.010000"],["2024-07-25T02:21:16.010000"],["2024-07-25T02:21:17.010000"],["2024-07-25T02:21:18.010000"],["2024-07-25T02:21:19.010000"],["2024-07-25T02:21:20.010000"],["2024-07-25T02:21:21.010000"],["2024-07-25T02:21:22.010000"],["2024-07-25T02:21:23.010000"],["2024-07-25T02:21:24.010000"],["2024-07-25T02:21:25.010000"],["2024-07-25T02:21:26.010000"],["2024-07-25T02:21:27.010000"],["2024-07-25T02:21:28.010000"],["2024-07-25T02:21:29.010000"],["2024-07-25T02:21:30.010000"],["2024-07-25T02:21:31.010000"],["2024-07-25T02:21:32.010000"],["2024-07-25T02:21:33.010000"],["2024-07-25T02:21:34.010000"],["2024-07-25T02:21:35.010000"],["2024-07-25T02:21:36.010000"],["2024-07-25T02:21:37.010000"],["2024-07-25T02:21:38.010000"],["2024-07-25T02:21:39.010000"],["2024-07-25T02:21:40.010000"],["2024-07-25T02:21:41.010000"],["2024-07-25T02:21:42.010000"],["2024-07-25T02:21:43.010000"],["2024-07-25T02:21:44.010000"],["2024-07-25T02:21:45.010000"],["2024-07-25T02:21:46.010000"],["2024-07-25T02:21:47.010000"],["2024-07-25T02:21:48.010000"],["2024-07-25T02:21:49.010000"],["2024-07-25T02:21:50.010000"],["2024-07-25T02:21:51.010000"],["2024-07-25T02:21:52.010000"],["2024-07-25T02:21:53.010000"],["2024-07-25T02:21:54.010000"],["2024-07-25T02:21:55.010000"],["2024-07-25T02:21:56.010000"],["2024-07-25T02:21:57.010000"],["2024-07-25T02:21:58.010000"],["2024-07-25T02:21:59.010000"],["2024-07-25T02:22:00.010000"],["2024-07-25T02:22:01.010000"],["2024-07-25T02:22:02.010000"],["2024-07-25T02:22:03.010000"],["2024-07-25T02:22:04.010000"],["2024-07-25T02:22:05.010000"],["2024-07-25T02:22:06.010000"],["2024-07-25T02:22:07.010000"],["2024-07-25T02:22:08.010000"],["2024-07-25T02:22:09.010000"],["2024-07-25T02:22:10.010000"],["2024-07-25T02:22:11.010000"],["2024-07-25T02:22:12.010000"],["2024-07-25T02:22:13.010000"],["2024-07-25T02:22:14.010000"],["2024-07-25T02:22:15.010000"],["2024-07-25T02:22:16.010000"],["2024-07-25T02:22:17.010000"],["2024-07-25T02:22:18.010000"],["2024-07-25T02:22:19.010000"],["2024-07-25T02:22:20.010000"],["2024-07-25T02:22:21.010000"],["2024-07-25T02:22:22.010000"],["2024-07-25T02:22:23.010000"],["2024-07-25T02:22:24.010000"],["2024-07-25T02:22:25.010000"],["2024-07-25T02:22:26.010000"],["2024-07-25T02:22:27.010000"],["2024-07-25T02:22:28.010000"],["2024-07-25T02:22:29.010000"],["2024-07-25T02:22:30.010000"],["2024-07-25T02:22:31.010000"],["2024-07-25T02:22:32.010000"],["2024-07-25T02:22:33.010000"],["2024-07-25T02:22:34.010000"],["2024-07-25T02:22:35.010000"],["2024-07-25T02:22:36.010000"],["2024-07-25T02:22:37.010000"],["2024-07-25T02:22:38.010000"],["2024-07-25T02:22:39.010000"],["2024-07-25T02:22:40.010000"],["2024-07-25T02:22:41.010000"],["2024-07-25T02:22:42.010000"],["2024-07-25T02:22:43.010000"],["2024-07-25T02:22:44.010000"],["2024-07-25T02:22:45.010000"],["2024-07-25T02:22:46.010000"],["2024-07-25T02:22:47.010000"],["2024-07-25T02:22:48.010000"],["2024-07-25T02:22:49.010000"],["2024-07-25T02:22:50.010000"],["2024-07-25T02:22:51.010000"],["2024-07-25T02:22:52.010000"],["2024-07-25T02:22:53.010000"],["2024-07-25T02:22:54.010000"],["2024-07-25T02:22:55.010000"],["2024-07-25T02:22:56.010000"],["2024-07-25T02:22:57.010000"],["2024-07-25T02:22:58.010000"],["2024-07-25T02:22:59.010000"],["2024-07-25T02:23:00.010000"],["2024-07-25T02:23:01.010000"],["2024-07-25T02:23:02.010000"],["2024-07-25T02:23:03.010000"],["2024-07-25T02:23:04.010000"],["2024-07-25T02:23:05.010000"],["2024-07-25T02:23:06.010000"],["2024-07-25T02:23:07.010000"],["2024-07-25T02:23:08.010000"],["2024-07-25T02:23:09.010000"],["2024-07-25T02:23:10.010000"],["2024-07-25T02:23:11.010000"],["2024-07-25T02:23:12.010000"],["2024-07-25T02:23:13.010000"],["2024-07-25T02:23:14.010000"],["2024-07-25T02:23:15.010000"],["2024-07-25T02:23:16.010000"],["2024-07-25T02:23:17.010000"],["2024-07-25T02:23:18.010000"],["2024-07-25T02:23:19.010000"],["2024-07-25T02:23:20.010000"],["2024-07-25T02:23:21.010000"],["2024-07-25T02:23:22.010000"],["2024-07-25T02:23:23.010000"],["2024-07-25T02:23:24.010000"],["2024-07-25T02:23:25.010000"],["2024-07-25T02:23:26.010000"],["2024-07-25T02:23:27.010000"],["2024-07-25T02:23:28.010000"],["2024-07-25T02:23:29.010000"],["2024-07-25T02:23:30.010000"],["2024-07-25T02:23:31.010000"],["2024-07-25T02:23:32.010000"],["2024-07-25T02:23:33.010000"],["2024-07-25T02:23:34.010000"],["2024-07-25T02:23:35.010000"],["2024-07-25T02:23:36.010000"],["2024-07-25T02:23:37.010000"],["2024-07-25T02:23:38.010000"],["2024-07-25T02:23:39.010000"],["2024-07-25T02:23:40.010000"],["2024-07-25T02:23:41.010000"],["2024-07-25T02:23:42.010000"],["2024-07-25T02:23:43.010000"],["2024-07-25T02:23:44.010000"],["2024-07-25T02:23:45.010000"],["2024-07-25T02:23:46.010000"],["2024-07-25T02:23:47.010000"],["2024-07-25T02:23:48.010000"],["2024-07-25T02:23:49.010000"],["2024-07-25T02:23:50.010000"],["2024-07-25T02:23:51.010000"],["2024-07-25T02:23:52.010000"],["2024-07-25T02:23:53.010000"],["2024-07-25T02:23:54.010000"],["2024-07-25T02:23:55.010000"],["2024-07-25T02:23:56.010000"],["2024-07-25T02:23:57.010000"],["2024-07-25T02:23:58.010000"],["2024-07-25T02:23:59.010000"],["2024-07-25T02:24:00.010000"],["2024-07-25T02:24:01.010000"],["2024-07-25T02:24:02.010000"],["2024-07-25T02:24:03.010000"],["2024-07-25T02:24:04.010000"],["2024-07-25T02:24:05.010000"],["2024-07-25T02:24:06.010000"],["2024-07-25T02:24:07.010000"],["2024-07-25T02:24:08.010000"],["2024-07-25T02:24:09.010000"],["2024-07-25T02:24:10.010000"],["2024-07-25T02:24:11.010000"],["2024-07-25T02:24:12.010000"],["2024-07-25T02:24:13.010000"],["2024-07-25T02:24:14.010000"],["2024-07-25T02:24:15.010000"],["2024-07-25T02:24:16.010000"],["2024-07-25T02:24:17.010000"],["2024-07-25T02:24:18.010000"],["2024-07-25T02:24:19.010000"],["2024-07-25T02:24:20.010000"],["2024-07-25T02:24:21.010000"],["2024-07-25T02:24:22.010000"],["2024-07-25T02:24:23.010000"],["2024-07-25T02:24:24.010000"],["2024-07-25T02:24:25.010000"],["2024-07-25T02:24:26.010000"],["2024-07-25T02:24:27.010000"],["2024-07-25T02:24:28.010000"],["2024-07-25T02:24:29.010000"],["2024-07-25T02:24:30.010000"],["2024-07-25T02:24:31.010000"],["2024-07-25T02:24:32.010000"],["2024-07-25T02:24:33.010000"],["2024-07-25T02:24:34.010000"],["2024-07-25T02:24:35.010000"],["2024-07-25T02:24:36.010000"],["2024-07-25T02:24:37.010000"],["2024-07-25T02:24:38.010000"],["2024-07-25T02:24:39.010000"],["2024-07-25T02:24:40.010000"],["2024-07-25T02:24:41.010000"],["2024-07-25T02:24:42.010000"],["2024-07-25T02:24:43.010000"],["2024-07-25T02:24:44.010000"],["2024-07-25T02:24:45.010000"],["2024-07-25T02:24:46.010000"],["2024-07-25T02:24:47.010000"],["2024-07-25T02:24:48.010000"],["2024-07-25T02:24:49.010000"],["2024-07-25T02:24:50.010000"],["2024-07-25T02:24:51.010000"],["2024-07-25T02:24:52.010000"],["2024-07-25T02:24:53.010000"],["2024-07-25T02:24:54.010000"],["2024-07-25T02:24:55.010000"],["2024-07-25T02:24:56.010000"],["2024-07-25T02:24:57.010000"],["2024-07-25T02:24:58.010000"],["2024-07-25T02:24:59.010000"],["2024-07-25T02:25:00.010000"],["2024-07-25T02:25:01.010000"],["2024-07-25T02:25:02.010000"],["2024-07-25T02:25:03.010000"],["2024-07-25T02:25:04.010000"],["2024-07-25T02:25:05.010000"],["2024-07-25T02:25:06.010000"],["2024-07-25T02:25:07.010000"],["2024-07-25T02:25:08.010000"],["2024-07-25T02:25:09.010000"],["2024-07-25T02:25:10.010000"],["2024-07-25T02:25:11.010000"],["2024-07-25T02:25:12.010000"],["2024-07-25T02:25:13.010000"],["2024-07-25T02:25:14.010000"],["2024-07-25T02:25:15.010000"],["2024-07-25T02:25:16.010000"],["2024-07-25T02:25:17.010000"],["2024-07-25T02:25:18.010000"],["2024-07-25T02:25:19.010000"],["2024-07-25T02:25:20.010000"],["2024-07-25T02:25:21.010000"],["2024-07-25T02:25:22.010000"],["2024-07-25T02:25:23.010000"],["2024-07-25T02:25:24.010000"],["2024-07-25T02:25:25.010000"],["2024-07-25T02:25:26.010000"],["2024-07-25T02:25:27.010000"],["2024-07-25T02:25:28.010000"],["2024-07-25T02:25:29.010000"],["2024-07-25T02:25:30.010000"],["2024-07-25T02:25:31.010000"],["2024-07-25T02:25:32.010000"],["2024-07-25T02:25:33.010000"],["2024-07-25T02:25:34.010000"],["2024-07-25T02:25:35.010000"],["2024-07-25T02:25:36.010000"],["2024-07-25T02:25:37.010000"],["2024-07-25T02:25:38.010000"],["2024-07-25T02:25:39.010000"],["2024-07-25T02:25:40.010000"],["2024-07-25T02:25:41.010000"],["2024-07-25T02:25:42.010000"],["2024-07-25T02:25:43.010000"],["2024-07-25T02:25:44.010000"],["2024-07-25T02:25:45.010000"],["2024-07-25T02:25:46.010000"],["2024-07-25T02:25:47.010000"],["2024-07-25T02:25:48.010000"],["2024-07-25T02:25:49.010000"],["2024-07-25T02:25:50.010000"],["2024-07-25T02:25:51.010000"],["2024-07-25T02:25:52.010000"],["2024-07-25T02:25:53.010000"],["2024-07-25T02:25:54.010000"],["2024-07-25T02:25:55.010000"],["2024-07-25T02:25:56.010000"],["2024-07-25T02:25:57.010000"],["2024-07-25T02:25:58.010000"],["2024-07-25T02:25:59.010000"],["2024-07-25T02:26:00.010000"],["2024-07-25T02:26:01.010000"],["2024-07-25T02:26:02.010000"],["2024-07-25T02:26:03.010000"],["2024-07-25T02:26:04.010000"],["2024-07-25T02:26:05.010000"],["2024-07-25T02:26:06.010000"],["2024-07-25T02:26:07.010000"],["2024-07-25T02:26:08.010000"],["2024-07-25T02:26:09.010000"],["2024-07-25T02:26:10.010000"],["2024-07-25T02:26:11.010000"],["2024-07-25T02:26:12.010000"],["2024-07-25T02:26:13.010000"],["2024-07-25T02:26:14.010000"],["2024-07-25T02:26:15.010000"],["2024-07-25T02:26:16.010000"],["2024-07-25T02:26:17.010000"],["2024-07-25T02:26:18.010000"],["2024-07-25T02:26:19.010000"],["2024-07-25T02:26:20.010000"],["2024-07-25T02:26:21.010000"],["2024-07-25T02:26:22.010000"],["2024-07-25T02:26:23.010000"],["2024-07-25T02:26:24.010000"],["2024-07-25T02:26:25.010000"],["2024-07-25T02:26:26.010000"],["2024-07-25T02:26:27.010000"],["2024-07-25T02:26:28.010000"],["2024-07-25T02:26:29.010000"],["2024-07-25T02:26:30.010000"],["2024-07-25T02:26:31.010000"],["2024-07-25T02:26:32.010000"],["2024-07-25T02:26:33.010000"],["2024-07-25T02:26:34.010000"],["2024-07-25T02:26:35.010000"],["2024-07-25T02:26:36.010000"],["2024-07-25T02:26:37.010000"],["2024-07-25T02:26:38.010000"],["2024-07-25T02:26:39.010000"],["2024-07-25T02:26:40.010000"],["2024-07-25T02:26:41.010000"],["2024-07-25T02:26:42.010000"],["2024-07-25T02:26:43.010000"],["2024-07-25T02:26:44.010000"],["2024-07-25T02:26:45.010000"],["2024-07-25T02:26:46.010000"],["2024-07-25T02:26:47.010000"],["2024-07-25T02:26:48.010000"],["2024-07-25T02:26:49.010000"],["2024-07-25T02:26:50.010000"],["2024-07-25T02:26:51.010000"],["2024-07-25T02:26:52.010000"],["2024-07-25T02:26:53.010000"],["2024-07-25T02:26:54.010000"],["2024-07-25T02:26:55.010000"],["2024-07-25T02:26:56.010000"],["2024-07-25T02:26:57.010000"],["2024-07-25T02:26:58.010000"],["2024-07-25T02:26:59.010000"],["2024-07-25T02:27:00.010000"],["2024-07-25T02:27:01.010000"],["2024-07-25T02:27:02.010000"],["2024-07-25T02:27:03.010000"],["2024-07-25T02:27:04.010000"],["2024-07-25T02:27:05.010000"],["2024-07-25T02:27:06.010000"],["2024-07-25T02:27:07.010000"],["2024-07-25T02:27:08.010000"],["2024-07-25T02:27:09.010000"],["2024-07-25T02:27:10.010000"],["2024-07-25T02:27:11.010000"],["2024-07-25T02:27:12.010000"],["2024-07-25T02:27:13.010000"],["2024-07-25T02:27:14.010000"],["2024-07-25T02:27:15.010000"],["2024-07-25T02:27:16.010000"],["2024-07-25T02:27:17.010000"],["2024-07-25T02:27:18.010000"],["2024-07-25T02:27:19.010000"],["2024-07-25T02:27:20.010000"],["2024-07-25T02:27:21.010000"],["2024-07-25T02:27:22.010000"],["2024-07-25T02:27:23.010000"],["2024-07-25T02:27:24.010000"],["2024-07-25T02:27:25.010000"],["2024-07-25T02:27:26.010000"],["2024-07-25T02:27:27.010000"],["2024-07-25T02:27:28.010000"],["2024-07-25T02:27:29.010000"],["2024-07-25T02:27:30.010000"],["2024-07-25T02:27:31.010000"],["2024-07-25T02:27:32.010000"],["2024-07-25T02:27:33.010000"],["2024-07-25T02:27:34.010000"],["2024-07-25T02:27:35.010000"],["2024-07-25T02:27:36.010000"],["2024-07-25T02:27:37.010000"],["2024-07-25T02:27:38.010000"],["2024-07-25T02:27:39.010000"],["2024-07-25T02:27:40.010000"],["2024-07-25T02:27:41.010000"],["2024-07-25T02:27:42.010000"],["2024-07-25T02:27:43.010000"],["2024-07-25T02:27:44.010000"],["2024-07-25T02:27:45.010000"],["2024-07-25T02:27:46.010000"],["2024-07-25T02:27:47.010000"],["2024-07-25T02:27:48.010000"],["2024-07-25T02:27:49.010000"],["2024-07-25T02:27:50.010000"],["2024-07-25T02:27:51.010000"],["2024-07-25T02:27:52.010000"],["2024-07-25T02:27:53.010000"],["2024-07-25T02:27:54.010000"],["2024-07-25T02:27:55.010000"],["2024-07-25T02:27:56.010000"],["2024-07-25T02:27:57.010000"],["2024-07-25T02:27:58.010000"],["2024-07-25T02:27:59.010000"],["2024-07-25T02:28:00.010000"],["2024-07-25T02:28:01.010000"],["2024-07-25T02:28:02.010000"],["2024-07-25T02:28:03.010000"],["2024-07-25T02:28:04.010000"],["2024-07-25T02:28:05.010000"],["2024-07-25T02:28:06.010000"],["2024-07-25T02:28:07.010000"],["2024-07-25T02:28:08.010000"],["2024-07-25T02:28:09.010000"],["2024-07-25T02:28:10.010000"],["2024-07-25T02:28:11.010000"],["2024-07-25T02:28:12.010000"],["2024-07-25T02:28:13.010000"],["2024-07-25T02:28:14.010000"],["2024-07-25T02:28:15.010000"],["2024-07-25T02:28:16.010000"],["2024-07-25T02:28:17.010000"],["2024-07-25T02:28:18.010000"],["2024-07-25T02:28:19.010000"],["2024-07-25T02:28:20.010000"],["2024-07-25T02:28:21.010000"],["2024-07-25T02:28:22.010000"],["2024-07-25T02:28:23.010000"],["2024-07-25T02:28:24.010000"],["2024-07-25T02:28:25.010000"],["2024-07-25T02:28:26.010000"],["2024-07-25T02:28:27.010000"],["2024-07-25T02:28:28.010000"],["2024-07-25T02:28:29.010000"],["2024-07-25T02:28:30.010000"],["2024-07-25T02:28:31.010000"],["2024-07-25T02:28:32.010000"],["2024-07-25T02:28:33.010000"],["2024-07-25T02:28:34.010000"],["2024-07-25T02:28:35.010000"],["2024-07-25T02:28:36.010000"],["2024-07-25T02:28:37.010000"],["2024-07-25T02:28:38.010000"],["2024-07-25T02:28:39.010000"],["2024-07-25T02:28:40.010000"],["2024-07-25T02:28:41.010000"],["2024-07-25T02:28:42.010000"],["2024-07-25T02:28:43.010000"],["2024-07-25T02:28:44.010000"],["2024-07-25T02:28:45.010000"],["2024-07-25T02:28:46.010000"],["2024-07-25T02:28:47.010000"],["2024-07-25T02:28:48.010000"],["2024-07-25T02:28:49.010000"],["2024-07-25T02:28:50.010000"],["2024-07-25T02:28:51.010000"],["2024-07-25T02:28:52.010000"],["2024-07-25T02:28:53.010000"],["2024-07-25T02:28:54.010000"],["2024-07-25T02:28:55.010000"],["2024-07-25T02:28:56.010000"],["2024-07-25T02:28:57.010000"],["2024-07-25T02:28:58.010000"],["2024-07-25T02:28:59.010000"],["2024-07-25T02:29:00.010000"],["2024-07-25T02:29:01.010000"],["2024-07-25T02:29:02.010000"],["2024-07-25T02:29:03.010000"],["2024-07-25T02:29:04.010000"],["2024-07-25T02:29:05.010000"],["2024-07-25T02:29:06.010000"],["2024-07-25T02:29:07.010000"],["2024-07-25T02:29:08.010000"],["2024-07-25T02:29:09.010000"],["2024-07-25T02:29:10.010000"],["2024-07-25T02:29:11.010000"],["2024-07-25T02:29:12.010000"],["2024-07-25T02:29:13.010000"],["2024-07-25T02:29:14.010000"],["2024-07-25T02:29:15.010000"],["2024-07-25T02:29:16.010000"],["2024-07-25T02:29:17.010000"],["2024-07-25T02:29:18.010000"],["2024-07-25T02:29:19.010000"],["2024-07-25T02:29:20.010000"],["2024-07-25T02:29:21.010000"],["2024-07-25T02:29:22.010000"],["2024-07-25T02:29:23.010000"],["2024-07-25T02:29:24.010000"],["2024-07-25T02:29:25.010000"],["2024-07-25T02:29:26.010000"],["2024-07-25T02:29:27.010000"],["2024-07-25T02:29:28.010000"],["2024-07-25T02:29:29.010000"],["2024-07-25T02:29:30.010000"],["2024-07-25T02:29:31.010000"],["2024-07-25T02:29:32.010000"],["2024-07-25T02:29:33.010000"],["2024-07-25T02:29:34.010000"],["2024-07-25T02:29:35.010000"],["2024-07-25T02:29:36.010000"],["2024-07-25T02:29:37.010000"],["2024-07-25T02:29:38.010000"],["2024-07-25T02:29:39.010000"],["2024-07-25T02:29:40.010000"],["2024-07-25T02:29:41.010000"],["2024-07-25T02:29:42.010000"],["2024-07-25T02:29:43.010000"],["2024-07-25T02:29:44.010000"],["2024-07-25T02:29:45.010000"],["2024-07-25T02:29:46.010000"],["2024-07-25T02:29:47.010000"],["2024-07-25T02:29:48.010000"],["2024-07-25T02:29:49.010000"],["2024-07-25T02:29:50.010000"],["2024-07-25T02:29:51.010000"],["2024-07-25T02:29:52.010000"],["2024-07-25T02:29:53.010000"],["2024-07-25T02:29:54.010000"],["2024-07-25T02:29:55.010000"],["2024-07-25T02:29:56.010000"],["2024-07-25T02:29:57.010000"],["2024-07-25T02:29:58.010000"],["2024-07-25T02:29:59.010000"],["2024-07-25T02:30:00.010000"],["2024-07-25T02:30:01.010000"],["2024-07-25T02:30:02.010000"],["2024-07-25T02:30:03.010000"],["2024-07-25T02:30:04.010000"],["2024-07-25T02:30:05.010000"],["2024-07-25T02:30:06.010000"],["2024-07-25T02:30:07.010000"],["2024-07-25T02:30:08.010000"],["2024-07-25T02:30:09.010000"],["2024-07-25T02:30:10.010000"],["2024-07-25T02:30:11.010000"],["2024-07-25T02:30:12.010000"],["2024-07-25T02:30:13.010000"],["2024-07-25T02:30:14.010000"],["2024-07-25T02:30:15.010000"],["2024-07-25T02:30:16.010000"],["2024-07-25T02:30:17.010000"],["2024-07-25T02:30:18.010000"],["2024-07-25T02:30:19.010000"],["2024-07-25T02:30:20.010000"],["2024-07-25T02:30:21.010000"],["2024-07-25T02:30:22.010000"],["2024-07-25T02:30:23.010000"],["2024-07-25T02:30:24.010000"],["2024-07-25T02:30:25.010000"],["2024-07-25T02:30:26.010000"],["2024-07-25T02:30:27.010000"],["2024-07-25T02:30:28.010000"],["2024-07-25T02:30:29.010000"],["2024-07-25T02:30:30.010000"],["2024-07-25T02:30:31.010000"],["2024-07-25T02:30:32.010000"],["2024-07-25T02:30:33.010000"],["2024-07-25T02:30:34.010000"],["2024-07-25T02:30:35.010000"],["2024-07-25T02:30:36.010000"],["2024-07-25T02:30:37.010000"],["2024-07-25T02:30:38.010000"],["2024-07-25T02:30:39.010000"],["2024-07-25T02:30:40.010000"],["2024-07-25T02:30:41.010000"],["2024-07-25T02:30:42.010000"],["2024-07-25T02:30:43.010000"],["2024-07-25T02:30:44.010000"],["2024-07-25T02:30:45.010000"],["2024-07-25T02:30:46.010000"],["2024-07-25T02:30:47.010000"],["2024-07-25T02:30:48.010000"],["2024-07-25T02:30:49.010000"],["2024-07-25T02:30:50.010000"],["2024-07-25T02:30:51.010000"],["2024-07-25T02:30:52.010000"],["2024-07-25T02:30:53.010000"],["2024-07-25T02:30:54.010000"],["2024-07-25T02:30:55.010000"],["2024-07-25T02:30:56.010000"],["2024-07-25T02:30:57.010000"],["2024-07-25T02:30:58.010000"],["2024-07-25T02:30:59.010000"],["2024-07-25T02:31:00.010000"],["2024-07-25T02:31:01.010000"],["2024-07-25T02:31:02.010000"],["2024-07-25T02:31:03.010000"],["2024-07-25T02:31:04.010000"],["2024-07-25T02:31:05.010000"],["2024-07-25T02:31:06.010000"],["2024-07-25T02:31:07.010000"],["2024-07-25T02:31:08.010000"],["2024-07-25T02:31:09.010000"],["2024-07-25T02:31:10.010000"],["2024-07-25T02:31:11.010000"],["2024-07-25T02:31:12.010000"],["2024-07-25T02:31:13.010000"],["2024-07-25T02:31:14.010000"],["2024-07-25T02:31:15.010000"],["2024-07-25T02:31:16.010000"],["2024-07-25T02:31:17.010000"],["2024-07-25T02:31:18.010000"],["2024-07-25T02:31:19.010000"],["2024-07-25T02:31:20.010000"],["2024-07-25T02:31:21.010000"],["2024-07-25T02:31:22.010000"],["2024-07-25T02:31:23.010000"],["2024-07-25T02:31:24.010000"],["2024-07-25T02:31:25.010000"],["2024-07-25T02:31:26.010000"],["2024-07-25T02:31:27.010000"],["2024-07-25T02:31:28.010000"],["2024-07-25T02:31:29.010000"],["2024-07-25T02:31:30.010000"],["2024-07-25T02:31:31.010000"],["2024-07-25T02:31:32.010000"],["2024-07-25T02:31:33.010000"],["2024-07-25T02:31:34.010000"],["2024-07-25T02:31:35.010000"],["2024-07-25T02:31:36.010000"],["2024-07-25T02:31:37.010000"],["2024-07-25T02:31:38.010000"],["2024-07-25T02:31:39.010000"],["2024-07-25T02:31:40.010000"],["2024-07-25T02:31:41.010000"],["2024-07-25T02:31:42.010000"],["2024-07-25T02:31:43.010000"],["2024-07-25T02:31:44.010000"],["2024-07-25T02:31:45.010000"],["2024-07-25T02:31:46.010000"],["2024-07-25T02:31:47.010000"],["2024-07-25T02:31:48.010000"],["2024-07-25T02:31:49.010000"],["2024-07-25T02:31:50.010000"],["2024-07-25T02:31:51.010000"],["2024-07-25T02:31:52.010000"],["2024-07-25T02:31:53.010000"],["2024-07-25T02:31:54.010000"],["2024-07-25T02:31:55.010000"],["2024-07-25T02:31:56.010000"],["2024-07-25T02:31:57.010000"],["2024-07-25T02:31:58.010000"],["2024-07-25T02:31:59.010000"],["2024-07-25T02:32:00.010000"],["2024-07-25T02:32:01.010000"],["2024-07-25T02:32:02.010000"],["2024-07-25T02:32:03.010000"],["2024-07-25T02:32:04.010000"],["2024-07-25T02:32:05.010000"],["2024-07-25T02:32:06.010000"],["2024-07-25T02:32:07.010000"],["2024-07-25T02:32:08.010000"],["2024-07-25T02:32:09.010000"],["2024-07-25T02:32:10.010000"],["2024-07-25T02:32:11.010000"],["2024-07-25T02:32:12.010000"],["2024-07-25T02:32:13.010000"],["2024-07-25T02:32:14.010000"],["2024-07-25T02:32:15.010000"],["2024-07-25T02:32:16.010000"],["2024-07-25T02:32:17.010000"],["2024-07-25T02:32:18.010000"],["2024-07-25T02:32:19.010000"],["2024-07-25T02:32:20.010000"],["2024-07-25T02:32:21.010000"],["2024-07-25T02:32:22.010000"],["2024-07-25T02:32:23.010000"],["2024-07-25T02:32:24.010000"],["2024-07-25T02:32:25.010000"],["2024-07-25T02:32:26.010000"],["2024-07-25T02:32:27.010000"],["2024-07-25T02:32:28.010000"],["2024-07-25T02:32:29.010000"],["2024-07-25T02:32:30.010000"],["2024-07-25T02:32:31.010000"],["2024-07-25T02:32:32.010000"],["2024-07-25T02:32:33.010000"],["2024-07-25T02:32:34.010000"],["2024-07-25T02:32:35.010000"],["2024-07-25T02:32:36.010000"],["2024-07-25T02:32:37.010000"],["2024-07-25T02:32:38.010000"],["2024-07-25T02:32:39.010000"],["2024-07-25T02:32:40.010000"],["2024-07-25T02:32:41.010000"],["2024-07-25T02:32:42.010000"],["2024-07-25T02:32:43.010000"],["2024-07-25T02:32:44.010000"],["2024-07-25T02:32:45.010000"],["2024-07-25T02:32:46.010000"],["2024-07-25T02:32:47.010000"],["2024-07-25T02:32:48.010000"],["2024-07-25T02:32:49.010000"],["2024-07-25T02:32:50.010000"],["2024-07-25T02:32:51.010000"],["2024-07-25T02:32:52.010000"],["2024-07-25T02:32:53.010000"],["2024-07-25T02:32:54.010000"],["2024-07-25T02:32:55.010000"],["2024-07-25T02:32:56.010000"],["2024-07-25T02:32:57.010000"],["2024-07-25T02:32:58.010000"],["2024-07-25T02:32:59.010000"],["2024-07-25T02:33:00.010000"],["2024-07-25T02:33:01.010000"],["2024-07-25T02:33:02.010000"],["2024-07-25T02:33:03.010000"],["2024-07-25T02:33:04.010000"],["2024-07-25T02:33:05.010000"],["2024-07-25T02:33:06.010000"],["2024-07-25T02:33:07.010000"],["2024-07-25T02:33:08.010000"],["2024-07-25T02:33:09.010000"],["2024-07-25T02:33:10.010000"],["2024-07-25T02:33:11.010000"],["2024-07-25T02:33:12.010000"],["2024-07-25T02:33:13.010000"],["2024-07-25T02:33:14.010000"],["2024-07-25T02:33:15.010000"],["2024-07-25T02:33:16.010000"],["2024-07-25T02:33:17.010000"],["2024-07-25T02:33:18.010000"],["2024-07-25T02:33:19.010000"],["2024-07-25T02:33:20.010000"],["2024-07-25T02:33:21.010000"],["2024-07-25T02:33:22.010000"],["2024-07-25T02:33:23.010000"],["2024-07-25T02:33:24.010000"],["2024-07-25T02:33:25.010000"],["2024-07-25T02:33:26.010000"],["2024-07-25T02:33:27.010000"],["2024-07-25T02:33:28.010000"],["2024-07-25T02:33:29.010000"],["2024-07-25T02:33:30.010000"],["2024-07-25T02:33:31.010000"],["2024-07-25T02:33:32.010000"],["2024-07-25T02:33:33.010000"],["2024-07-25T02:33:34.010000"],["2024-07-25T02:33:35.010000"],["2024-07-25T02:33:36.010000"],["2024-07-25T02:33:37.010000"],["2024-07-25T02:33:38.010000"],["2024-07-25T02:33:39.010000"],["2024-07-25T02:33:40.010000"],["2024-07-25T02:33:41.010000"],["2024-07-25T02:33:42.010000"],["2024-07-25T02:33:43.010000"],["2024-07-25T02:33:44.010000"],["2024-07-25T02:33:45.010000"],["2024-07-25T02:33:46.010000"],["2024-07-25T02:33:47.010000"],["2024-07-25T02:33:48.010000"],["2024-07-25T02:33:49.010000"],["2024-07-25T02:33:50.010000"],["2024-07-25T02:33:51.010000"],["2024-07-25T02:33:52.010000"],["2024-07-25T02:33:53.010000"],["2024-07-25T02:33:54.010000"],["2024-07-25T02:33:55.010000"],["2024-07-25T02:33:56.010000"],["2024-07-25T02:33:57.010000"],["2024-07-25T02:33:58.010000"],["2024-07-25T02:33:59.010000"],["2024-07-25T02:34:00.010000"],["2024-07-25T02:34:01.010000"],["2024-07-25T02:34:02.010000"],["2024-07-25T02:34:03.010000"],["2024-07-25T02:34:04.010000"],["2024-07-25T02:34:05.010000"],["2024-07-25T02:34:06.010000"],["2024-07-25T02:34:07.010000"],["2024-07-25T02:34:08.010000"],["2024-07-25T02:34:09.010000"],["2024-07-25T02:34:10.010000"],["2024-07-25T02:34:11.010000"],["2024-07-25T02:34:12.010000"],["2024-07-25T02:34:13.010000"],["2024-07-25T02:34:14.010000"],["2024-07-25T02:34:15.010000"],["2024-07-25T02:34:16.010000"],["2024-07-25T02:34:17.010000"],["2024-07-25T02:34:18.010000"],["2024-07-25T02:34:19.010000"],["2024-07-25T02:34:20.010000"],["2024-07-25T02:34:21.010000"],["2024-07-25T02:34:22.010000"],["2024-07-25T02:34:23.010000"],["2024-07-25T02:34:24.010000"],["2024-07-25T02:34:25.010000"],["2024-07-25T02:34:26.010000"],["2024-07-25T02:34:27.010000"],["2024-07-25T02:34:28.010000"],["2024-07-25T02:34:29.010000"],["2024-07-25T02:34:30.010000"],["2024-07-25T02:34:31.010000"],["2024-07-25T02:34:32.010000"],["2024-07-25T02:34:33.010000"],["2024-07-25T02:34:34.010000"],["2024-07-25T02:34:35.010000"],["2024-07-25T02:34:36.010000"],["2024-07-25T02:34:37.010000"],["2024-07-25T02:34:38.010000"],["2024-07-25T02:34:39.010000"],["2024-07-25T02:34:40.010000"],["2024-07-25T02:34:41.010000"],["2024-07-25T02:34:42.010000"],["2024-07-25T02:34:43.010000"],["2024-07-25T02:34:44.010000"],["2024-07-25T02:34:45.010000"],["2024-07-25T02:34:46.010000"],["2024-07-25T02:34:47.010000"],["2024-07-25T02:34:48.010000"],["2024-07-25T02:34:49.010000"],["2024-07-25T02:34:50.010000"],["2024-07-25T02:34:51.010000"],["2024-07-25T02:34:52.010000"],["2024-07-25T02:34:53.010000"],["2024-07-25T02:34:54.010000"],["2024-07-25T02:34:55.010000"],["2024-07-25T02:34:56.010000"],["2024-07-25T02:34:57.010000"],["2024-07-25T02:34:58.010000"],["2024-07-25T02:34:59.010000"],["2024-07-25T02:35:00.010000"],["2024-07-25T02:35:01.010000"],["2024-07-25T02:35:02.010000"],["2024-07-25T02:35:03.010000"],["2024-07-25T02:35:04.010000"],["2024-07-25T02:35:05.010000"],["2024-07-25T02:35:06.010000"],["2024-07-25T02:35:07.010000"],["2024-07-25T02:35:08.010000"],["2024-07-25T02:35:09.010000"],["2024-07-25T02:35:10.010000"],["2024-07-25T02:35:11.010000"],["2024-07-25T02:35:12.010000"],["2024-07-25T02:35:13.010000"],["2024-07-25T02:35:14.010000"],["2024-07-25T02:35:15.010000"],["2024-07-25T02:35:16.010000"],["2024-07-25T02:35:17.010000"],["2024-07-25T02:35:18.010000"],["2024-07-25T02:35:19.010000"],["2024-07-25T02:35:20.010000"],["2024-07-25T02:35:21.010000"],["2024-07-25T02:35:22.010000"],["2024-07-25T02:35:23.010000"],["2024-07-25T02:35:24.010000"],["2024-07-25T02:35:25.010000"],["2024-07-25T02:35:26.010000"],["2024-07-25T02:35:27.010000"],["2024-07-25T02:35:28.010000"],["2024-07-25T02:35:29.010000"],["2024-07-25T02:35:30.010000"],["2024-07-25T02:35:31.010000"],["2024-07-25T02:35:32.010000"],["2024-07-25T02:35:33.010000"],["2024-07-25T02:35:34.010000"],["2024-07-25T02:35:35.010000"],["2024-07-25T02:35:36.010000"],["2024-07-25T02:35:37.010000"],["2024-07-25T02:35:38.010000"],["2024-07-25T02:35:39.010000"],["2024-07-25T02:35:40.010000"],["2024-07-25T02:35:41.010000"],["2024-07-25T02:35:42.010000"],["2024-07-25T02:35:43.010000"],["2024-07-25T02:35:44.010000"],["2024-07-25T02:35:45.010000"],["2024-07-25T02:35:46.010000"],["2024-07-25T02:35:47.010000"],["2024-07-25T02:35:48.010000"],["2024-07-25T02:35:49.010000"],["2024-07-25T02:35:50.010000"],["2024-07-25T02:35:51.010000"],["2024-07-25T02:35:52.010000"],["2024-07-25T02:35:53.010000"],["2024-07-25T02:35:54.010000"],["2024-07-25T02:35:55.010000"],["2024-07-25T02:35:56.010000"],["2024-07-25T02:35:57.010000"],["2024-07-25T02:35:58.010000"],["2024-07-25T02:35:59.010000"],["2024-07-25T02:36:00.010000"],["2024-07-25T02:36:01.010000"],["2024-07-25T02:36:02.010000"],["2024-07-25T02:36:03.010000"],["2024-07-25T02:36:04.010000"],["2024-07-25T02:36:05.010000"],["2024-07-25T02:36:06.010000"],["2024-07-25T02:36:07.010000"],["2024-07-25T02:36:08.010000"],["2024-07-25T02:36:09.010000"],["2024-07-25T02:36:10.010000"],["2024-07-25T02:36:11.010000"],["2024-07-25T02:36:12.010000"],["2024-07-25T02:36:13.010000"],["2024-07-25T02:36:14.010000"],["2024-07-25T02:36:15.010000"],["2024-07-25T02:36:16.010000"],["2024-07-25T02:36:17.010000"],["2024-07-25T02:36:18.010000"],["2024-07-25T02:36:19.010000"],["2024-07-25T02:36:20.010000"],["2024-07-25T02:36:21.010000"],["2024-07-25T02:36:22.010000"],["2024-07-25T02:36:23.010000"],["2024-07-25T02:36:24.010000"],["2024-07-25T02:36:25.010000"],["2024-07-25T02:36:26.010000"],["2024-07-25T02:36:27.010000"],["2024-07-25T02:36:28.010000"],["2024-07-25T02:36:29.010000"],["2024-07-25T02:36:30.010000"],["2024-07-25T02:36:31.010000"],["2024-07-25T02:36:32.010000"],["2024-07-25T02:36:33.010000"],["2024-07-25T02:36:34.010000"],["2024-07-25T02:36:35.010000"],["2024-07-25T02:36:36.010000"],["2024-07-25T02:36:37.010000"],["2024-07-25T02:36:38.010000"],["2024-07-25T02:36:39.010000"],["2024-07-25T02:36:40.010000"],["2024-07-25T02:36:41.010000"],["2024-07-25T02:36:42.010000"],["2024-07-25T02:36:43.010000"],["2024-07-25T02:36:44.010000"],["2024-07-25T02:36:45.010000"],["2024-07-25T02:36:46.010000"],["2024-07-25T02:36:47.010000"],["2024-07-25T02:36:48.010000"],["2024-07-25T02:36:49.010000"],["2024-07-25T02:36:50.010000"],["2024-07-25T02:36:51.010000"],["2024-07-25T02:36:52.010000"],["2024-07-25T02:36:53.010000"],["2024-07-25T02:36:54.010000"],["2024-07-25T02:36:55.010000"],["2024-07-25T02:36:56.010000"],["2024-07-25T02:36:57.010000"],["2024-07-25T02:36:58.010000"],["2024-07-25T02:36:59.010000"],["2024-07-25T02:37:00.010000"],["2024-07-25T02:37:01.010000"],["2024-07-25T02:37:02.010000"],["2024-07-25T02:37:03.010000"],["2024-07-25T02:37:04.010000"],["2024-07-25T02:37:05.010000"],["2024-07-25T02:37:06.010000"],["2024-07-25T02:37:07.010000"],["2024-07-25T02:37:08.010000"],["2024-07-25T02:37:09.010000"],["2024-07-25T02:37:10.010000"],["2024-07-25T02:37:11.010000"],["2024-07-25T02:37:12.010000"],["2024-07-25T02:37:13.010000"],["2024-07-25T02:37:14.010000"],["2024-07-25T02:37:15.010000"],["2024-07-25T02:37:16.010000"],["2024-07-25T02:37:17.010000"],["2024-07-25T02:37:18.010000"],["2024-07-25T02:37:19.010000"],["2024-07-25T02:37:20.010000"],["2024-07-25T02:37:21.010000"],["2024-07-25T02:37:22.010000"],["2024-07-25T02:37:23.010000"],["2024-07-25T02:37:24.010000"],["2024-07-25T02:37:25.010000"],["2024-07-25T02:37:26.010000"],["2024-07-25T02:37:27.010000"],["2024-07-25T02:37:28.010000"],["2024-07-25T02:37:29.010000"],["2024-07-25T02:37:30.010000"],["2024-07-25T02:37:31.010000"],["2024-07-25T02:37:32.010000"],["2024-07-25T02:37:33.010000"],["2024-07-25T02:37:34.010000"],["2024-07-25T02:37:35.010000"],["2024-07-25T02:37:36.010000"],["2024-07-25T02:37:37.010000"],["2024-07-25T02:37:38.010000"],["2024-07-25T02:37:39.010000"],["2024-07-25T02:37:40.010000"],["2024-07-25T02:37:41.010000"],["2024-07-25T02:37:42.010000"],["2024-07-25T02:37:43.010000"],["2024-07-25T02:37:44.010000"],["2024-07-25T02:37:45.010000"],["2024-07-25T02:37:46.010000"],["2024-07-25T02:37:47.010000"],["2024-07-25T02:37:48.010000"],["2024-07-25T02:37:49.010000"],["2024-07-25T02:37:50.010000"],["2024-07-25T02:37:51.010000"],["2024-07-25T02:37:52.010000"],["2024-07-25T02:37:53.010000"],["2024-07-25T02:37:54.010000"],["2024-07-25T02:37:55.010000"],["2024-07-25T02:37:56.010000"],["2024-07-25T02:37:57.010000"],["2024-07-25T02:37:58.010000"],["2024-07-25T02:37:59.010000"],["2024-07-25T02:38:00.010000"],["2024-07-25T02:38:01.010000"],["2024-07-25T02:38:02.010000"],["2024-07-25T02:38:03.010000"],["2024-07-25T02:38:04.010000"],["2024-07-25T02:38:05.010000"],["2024-07-25T02:38:06.010000"],["2024-07-25T02:38:07.010000"],["2024-07-25T02:38:08.010000"],["2024-07-25T02:38:09.010000"],["2024-07-25T02:38:10.010000"],["2024-07-25T02:38:11.010000"],["2024-07-25T02:38:12.010000"],["2024-07-25T02:38:13.010000"],["2024-07-25T02:38:14.010000"],["2024-07-25T02:38:15.010000"],["2024-07-25T02:38:16.010000"],["2024-07-25T02:38:17.010000"],["2024-07-25T02:38:18.010000"],["2024-07-25T02:38:19.010000"],["2024-07-25T02:38:20.010000"],["2024-07-25T02:38:21.010000"],["2024-07-25T02:38:22.010000"],["2024-07-25T02:38:23.010000"],["2024-07-25T02:38:24.010000"],["2024-07-25T02:38:25.010000"],["2024-07-25T02:38:26.010000"],["2024-07-25T02:38:27.010000"],["2024-07-25T02:38:28.010000"],["2024-07-25T02:38:29.010000"],["2024-07-25T02:38:30.010000"],["2024-07-25T02:38:31.010000"],["2024-07-25T02:38:32.010000"],["2024-07-25T02:38:33.010000"],["2024-07-25T02:38:34.010000"],["2024-07-25T02:38:35.010000"],["2024-07-25T02:38:36.010000"],["2024-07-25T02:38:37.010000"],["2024-07-25T02:38:38.010000"],["2024-07-25T02:38:39.010000"],["2024-07-25T02:38:40.010000"],["2024-07-25T02:38:41.010000"],["2024-07-25T02:38:42.010000"],["2024-07-25T02:38:43.010000"],["2024-07-25T02:38:44.010000"],["2024-07-25T02:38:45.010000"],["2024-07-25T02:38:46.010000"],["2024-07-25T02:38:47.010000"],["2024-07-25T02:38:48.010000"],["2024-07-25T02:38:49.010000"],["2024-07-25T02:38:50.010000"],["2024-07-25T02:38:51.010000"],["2024-07-25T02:38:52.010000"],["2024-07-25T02:38:53.010000"],["2024-07-25T02:38:54.010000"],["2024-07-25T02:38:55.010000"],["2024-07-25T02:38:56.010000"],["2024-07-25T02:38:57.010000"],["2024-07-25T02:38:58.010000"],["2024-07-25T02:38:59.010000"],["2024-07-25T02:39:00.010000"],["2024-07-25T02:39:01.010000"],["2024-07-25T02:39:02.010000"],["2024-07-25T02:39:03.010000"],["2024-07-25T02:39:04.010000"],["2024-07-25T02:39:05.010000"],["2024-07-25T02:39:06.010000"],["2024-07-25T02:39:07.010000"],["2024-07-25T02:39:08.010000"],["2024-07-25T02:39:09.010000"],["2024-07-25T02:39:10.010000"],["2024-07-25T02:39:11.010000"],["2024-07-25T02:39:12.010000"],["2024-07-25T02:39:13.010000"],["2024-07-25T02:39:14.010000"],["2024-07-25T02:39:15.010000"],["2024-07-25T02:39:16.010000"],["2024-07-25T02:39:17.010000"],["2024-07-25T02:39:18.010000"],["2024-07-25T02:39:19.010000"],["2024-07-25T02:39:20.010000"],["2024-07-25T02:39:21.010000"],["2024-07-25T02:39:22.010000"],["2024-07-25T02:39:23.010000"],["2024-07-25T02:39:24.010000"],["2024-07-25T02:39:25.010000"],["2024-07-25T02:39:26.010000"],["2024-07-25T02:39:27.010000"],["2024-07-25T02:39:28.010000"],["2024-07-25T02:39:29.010000"],["2024-07-25T02:39:30.010000"],["2024-07-25T02:39:31.010000"],["2024-07-25T02:39:32.010000"],["2024-07-25T02:39:33.010000"],["2024-07-25T02:39:34.010000"],["2024-07-25T02:39:35.010000"],["2024-07-25T02:39:36.010000"],["2024-07-25T02:39:37.010000"],["2024-07-25T02:39:38.010000"],["2024-07-25T02:39:39.010000"],["2024-07-25T02:39:40.010000"],["2024-07-25T02:39:41.010000"],["2024-07-25T02:39:42.010000"],["2024-07-25T02:39:43.010000"],["2024-07-25T02:39:44.010000"],["2024-07-25T02:39:45.010000"],["2024-07-25T02:39:46.010000"],["2024-07-25T02:39:47.010000"],["2024-07-25T02:39:48.010000"],["2024-07-25T02:39:49.010000"],["2024-07-25T02:39:50.010000"],["2024-07-25T02:39:51.010000"],["2024-07-25T02:39:52.010000"],["2024-07-25T02:39:53.010000"],["2024-07-25T02:39:54.010000"],["2024-07-25T02:39:55.010000"],["2024-07-25T02:39:56.010000"],["2024-07-25T02:39:57.010000"],["2024-07-25T02:39:58.010000"],["2024-07-25T02:39:59.010000"],["2024-07-25T02:40:00.010000"],["2024-07-25T02:40:01.010000"],["2024-07-25T02:40:02.010000"],["2024-07-25T02:40:03.010000"],["2024-07-25T02:40:04.010000"],["2024-07-25T02:40:05.010000"],["2024-07-25T02:40:06.010000"],["2024-07-25T02:40:07.010000"],["2024-07-25T02:40:08.010000"],["2024-07-25T02:40:09.010000"],["2024-07-25T02:40:10.010000"],["2024-07-25T02:40:11.010000"],["2024-07-25T02:40:12.010000"],["2024-07-25T02:40:13.010000"],["2024-07-25T02:40:14.010000"],["2024-07-25T02:40:15.010000"],["2024-07-25T02:40:16.010000"],["2024-07-25T02:40:17.010000"],["2024-07-25T02:40:18.010000"],["2024-07-25T02:40:19.010000"],["2024-07-25T02:40:20.010000"],["2024-07-25T02:40:21.010000"],["2024-07-25T02:40:22.010000"],["2024-07-25T02:40:23.010000"],["2024-07-25T02:40:24.010000"],["2024-07-25T02:40:25.010000"],["2024-07-25T02:40:26.010000"],["2024-07-25T02:40:27.010000"],["2024-07-25T02:40:28.010000"],["2024-07-25T02:40:29.010000"],["2024-07-25T02:40:30.010000"],["2024-07-25T02:40:31.010000"],["2024-07-25T02:40:32.010000"],["2024-07-25T02:40:33.010000"],["2024-07-25T02:40:34.010000"],["2024-07-25T02:40:35.010000"],["2024-07-25T02:40:36.010000"],["2024-07-25T02:40:37.010000"],["2024-07-25T02:40:38.010000"],["2024-07-25T02:40:39.010000"],["2024-07-25T02:40:40.010000"],["2024-07-25T02:40:41.010000"],["2024-07-25T02:40:42.010000"],["2024-07-25T02:40:43.010000"],["2024-07-25T02:40:44.010000"],["2024-07-25T02:40:45.010000"],["2024-07-25T02:40:46.010000"],["2024-07-25T02:40:47.010000"],["2024-07-25T02:40:48.010000"],["2024-07-25T02:40:49.010000"],["2024-07-25T02:40:50.010000"],["2024-07-25T02:40:51.010000"],["2024-07-25T02:40:52.010000"],["2024-07-25T02:40:53.010000"],["2024-07-25T02:40:54.010000"],["2024-07-25T02:40:55.010000"],["2024-07-25T02:40:56.010000"],["2024-07-25T02:40:57.010000"],["2024-07-25T02:40:58.010000"],["2024-07-25T02:40:59.010000"],["2024-07-25T02:41:00.010000"],["2024-07-25T02:41:01.010000"],["2024-07-25T02:41:02.010000"],["2024-07-25T02:41:03.010000"],["2024-07-25T02:41:04.010000"],["2024-07-25T02:41:05.010000"],["2024-07-25T02:41:06.010000"],["2024-07-25T02:41:07.010000"],["2024-07-25T02:41:08.010000"],["2024-07-25T02:41:09.010000"],["2024-07-25T02:41:10.010000"],["2024-07-25T02:41:11.010000"],["2024-07-25T02:41:12.010000"],["2024-07-25T02:41:13.010000"],["2024-07-25T02:41:14.010000"],["2024-07-25T02:41:15.010000"],["2024-07-25T02:41:16.010000"],["2024-07-25T02:41:17.010000"],["2024-07-25T02:41:18.010000"],["2024-07-25T02:41:19.010000"],["2024-07-25T02:41:20.010000"],["2024-07-25T02:41:21.010000"],["2024-07-25T02:41:22.010000"],["2024-07-25T02:41:23.010000"],["2024-07-25T02:41:24.010000"],["2024-07-25T02:41:25.010000"],["2024-07-25T02:41:26.010000"],["2024-07-25T02:41:27.010000"],["2024-07-25T02:41:28.010000"],["2024-07-25T02:41:29.010000"],["2024-07-25T02:41:30.010000"],["2024-07-25T02:41:31.010000"],["2024-07-25T02:41:32.010000"],["2024-07-25T02:41:33.010000"],["2024-07-25T02:41:34.010000"],["2024-07-25T02:41:35.010000"],["2024-07-25T02:41:36.010000"],["2024-07-25T02:41:37.010000"],["2024-07-25T02:41:38.010000"],["2024-07-25T02:41:39.010000"],["2024-07-25T02:41:40.010000"],["2024-07-25T02:41:41.010000"],["2024-07-25T02:41:42.010000"],["2024-07-25T02:41:43.010000"],["2024-07-25T02:41:44.010000"],["2024-07-25T02:41:45.010000"],["2024-07-25T02:41:46.010000"],["2024-07-25T02:41:47.010000"],["2024-07-25T02:41:48.010000"],["2024-07-25T02:41:49.010000"],["2024-07-25T02:41:50.010000"],["2024-07-25T02:41:51.010000"],["2024-07-25T02:41:52.010000"],["2024-07-25T02:41:53.010000"],["2024-07-25T02:41:54.010000"],["2024-07-25T02:41:55.010000"],["2024-07-25T02:41:56.010000"],["2024-07-25T02:41:57.010000"],["2024-07-25T02:41:58.010000"],["2024-07-25T02:41:59.010000"],["2024-07-25T02:42:00.010000"],["2024-07-25T02:42:01.010000"],["2024-07-25T02:42:02.010000"],["2024-07-25T02:42:03.010000"],["2024-07-25T02:42:04.010000"],["2024-07-25T02:42:05.010000"],["2024-07-25T02:42:06.010000"],["2024-07-25T02:42:07.010000"],["2024-07-25T02:42:08.010000"],["2024-07-25T02:42:09.010000"],["2024-07-25T02:42:10.010000"],["2024-07-25T02:42:11.010000"],["2024-07-25T02:42:12.010000"],["2024-07-25T02:42:13.010000"],["2024-07-25T02:42:14.010000"],["2024-07-25T02:42:15.010000"],["2024-07-25T02:42:16.010000"],["2024-07-25T02:42:17.010000"],["2024-07-25T02:42:18.010000"],["2024-07-25T02:42:19.010000"],["2024-07-25T02:42:20.010000"],["2024-07-25T02:42:21.010000"],["2024-07-25T02:42:22.010000"],["2024-07-25T02:42:23.010000"],["2024-07-25T02:42:24.010000"],["2024-07-25T02:42:25.010000"],["2024-07-25T02:42:26.010000"],["2024-07-25T02:42:27.010000"],["2024-07-25T02:42:28.010000"],["2024-07-25T02:42:29.010000"],["2024-07-25T02:42:30.010000"],["2024-07-25T02:42:31.010000"],["2024-07-25T02:42:32.010000"],["2024-07-25T02:42:33.010000"],["2024-07-25T02:42:34.010000"],["2024-07-25T02:42:35.010000"],["2024-07-25T02:42:36.010000"],["2024-07-25T02:42:37.010000"],["2024-07-25T02:42:38.010000"],["2024-07-25T02:42:39.010000"],["2024-07-25T02:42:40.010000"],["2024-07-25T02:42:41.010000"],["2024-07-25T02:42:42.010000"],["2024-07-25T02:42:43.010000"],["2024-07-25T02:42:44.010000"],["2024-07-25T02:42:45.010000"],["2024-07-25T02:42:46.010000"],["2024-07-25T02:42:47.010000"],["2024-07-25T02:42:48.010000"],["2024-07-25T02:42:49.010000"],["2024-07-25T02:42:50.010000"],["2024-07-25T02:42:51.010000"],["2024-07-25T02:42:52.010000"],["2024-07-25T02:42:53.010000"],["2024-07-25T02:42:54.010000"],["2024-07-25T02:42:55.010000"],["2024-07-25T02:42:56.010000"],["2024-07-25T02:42:57.010000"],["2024-07-25T02:42:58.010000"],["2024-07-25T02:42:59.010000"],["2024-07-25T02:43:00.010000"],["2024-07-25T02:43:01.010000"],["2024-07-25T02:43:02.010000"],["2024-07-25T02:43:03.010000"],["2024-07-25T02:43:04.010000"],["2024-07-25T02:43:05.010000"],["2024-07-25T02:43:06.010000"],["2024-07-25T02:43:07.010000"],["2024-07-25T02:43:08.010000"],["2024-07-25T02:43:09.010000"],["2024-07-25T02:43:10.010000"],["2024-07-25T02:43:11.010000"],["2024-07-25T02:43:12.010000"],["2024-07-25T02:43:13.010000"],["2024-07-25T02:43:14.010000"],["2024-07-25T02:43:15.010000"],["2024-07-25T02:43:16.010000"],["2024-07-25T02:43:17.010000"],["2024-07-25T02:43:18.010000"],["2024-07-25T02:43:19.010000"],["2024-07-25T02:43:20.010000"],["2024-07-25T02:43:21.010000"],["2024-07-25T02:43:22.010000"],["2024-07-25T02:43:23.010000"],["2024-07-25T02:43:24.010000"],["2024-07-25T02:43:25.010000"],["2024-07-25T02:43:26.010000"],["2024-07-25T02:43:27.010000"],["2024-07-25T02:43:28.010000"],["2024-07-25T02:43:29.010000"],["2024-07-25T02:43:30.010000"],["2024-07-25T02:43:31.010000"],["2024-07-25T02:43:32.010000"],["2024-07-25T02:43:33.010000"],["2024-07-25T02:43:34.010000"],["2024-07-25T02:43:35.010000"],["2024-07-25T02:43:36.010000"],["2024-07-25T02:43:37.010000"],["2024-07-25T02:43:38.010000"],["2024-07-25T02:43:39.010000"],["2024-07-25T02:43:40.010000"],["2024-07-25T02:43:41.010000"],["2024-07-25T02:43:42.010000"],["2024-07-25T02:43:43.010000"],["2024-07-25T02:43:44.010000"],["2024-07-25T02:43:45.010000"],["2024-07-25T02:43:46.010000"],["2024-07-25T02:43:47.010000"],["2024-07-25T02:43:48.010000"],["2024-07-25T02:43:49.010000"],["2024-07-25T02:43:50.010000"],["2024-07-25T02:43:51.010000"],["2024-07-25T02:43:52.010000"],["2024-07-25T02:43:53.010000"],["2024-07-25T02:43:54.010000"],["2024-07-25T02:43:55.010000"],["2024-07-25T02:43:56.010000"],["2024-07-25T02:43:57.010000"],["2024-07-25T02:43:58.010000"],["2024-07-25T02:43:59.010000"],["2024-07-25T02:44:00.010000"],["2024-07-25T02:44:01.010000"],["2024-07-25T02:44:02.010000"],["2024-07-25T02:44:03.010000"],["2024-07-25T02:44:04.010000"],["2024-07-25T02:44:05.010000"],["2024-07-25T02:44:06.010000"],["2024-07-25T02:44:07.010000"],["2024-07-25T02:44:08.010000"],["2024-07-25T02:44:09.010000"],["2024-07-25T02:44:10.010000"],["2024-07-25T02:44:11.010000"],["2024-07-25T02:44:12.010000"],["2024-07-25T02:44:13.010000"],["2024-07-25T02:44:14.010000"],["2024-07-25T02:44:15.010000"],["2024-07-25T02:44:16.010000"],["2024-07-25T02:44:17.010000"],["2024-07-25T02:44:18.010000"],["2024-07-25T02:44:19.010000"],["2024-07-25T02:44:20.010000"],["2024-07-25T02:44:21.010000"],["2024-07-25T02:44:22.010000"],["2024-07-25T02:44:23.010000"],["2024-07-25T02:44:24.010000"],["2024-07-25T02:44:25.010000"],["2024-07-25T02:44:26.010000"],["2024-07-25T02:44:27.010000"],["2024-07-25T02:44:28.010000"],["2024-07-25T02:44:29.010000"],["2024-07-25T02:44:30.010000"],["2024-07-25T02:44:31.010000"],["2024-07-25T02:44:32.010000"],["2024-07-25T02:44:33.010000"],["2024-07-25T02:44:34.010000"],["2024-07-25T02:44:35.010000"],["2024-07-25T02:44:36.010000"],["2024-07-25T02:44:37.010000"],["2024-07-25T02:44:38.010000"],["2024-07-25T02:44:39.010000"],["2024-07-25T02:44:40.010000"],["2024-07-25T02:44:41.010000"],["2024-07-25T02:44:42.010000"],["2024-07-25T02:44:43.010000"],["2024-07-25T02:44:44.010000"],["2024-07-25T02:44:45.010000"],["2024-07-25T02:44:46.010000"],["2024-07-25T02:44:47.010000"],["2024-07-25T02:44:48.010000"],["2024-07-25T02:44:49.010000"],["2024-07-25T02:44:50.010000"],["2024-07-25T02:44:51.010000"],["2024-07-25T02:44:52.010000"],["2024-07-25T02:44:53.010000"],["2024-07-25T02:44:54.010000"],["2024-07-25T02:44:55.010000"],["2024-07-25T02:44:56.010000"],["2024-07-25T02:44:57.010000"],["2024-07-25T02:44:58.010000"],["2024-07-25T02:44:59.010000"],["2024-07-25T02:45:00.010000"],["2024-07-25T02:45:01.010000"],["2024-07-25T02:45:02.010000"],["2024-07-25T02:45:03.010000"],["2024-07-25T02:45:04.010000"],["2024-07-25T02:45:05.010000"],["2024-07-25T02:45:06.010000"],["2024-07-25T02:45:07.010000"],["2024-07-25T02:45:08.010000"],["2024-07-25T02:45:09.010000"],["2024-07-25T02:45:10.010000"],["2024-07-25T02:45:11.010000"],["2024-07-25T02:45:12.010000"],["2024-07-25T02:45:13.010000"],["2024-07-25T02:45:14.010000"],["2024-07-25T02:45:15.010000"],["2024-07-25T02:45:16.010000"],["2024-07-25T02:45:17.010000"],["2024-07-25T02:45:18.010000"],["2024-07-25T02:45:19.010000"],["2024-07-25T02:45:20.010000"],["2024-07-25T02:45:21.010000"],["2024-07-25T02:45:22.010000"],["2024-07-25T02:45:23.010000"],["2024-07-25T02:45:24.010000"],["2024-07-25T02:45:25.010000"],["2024-07-25T02:45:26.010000"],["2024-07-25T02:45:27.010000"],["2024-07-25T02:45:28.010000"],["2024-07-25T02:45:29.010000"],["2024-07-25T02:45:30.010000"],["2024-07-25T02:45:31.010000"],["2024-07-25T02:45:32.010000"],["2024-07-25T02:45:33.010000"],["2024-07-25T02:45:34.010000"],["2024-07-25T02:45:35.010000"],["2024-07-25T02:45:36.010000"],["2024-07-25T02:45:37.010000"],["2024-07-25T02:45:38.010000"],["2024-07-25T02:45:39.010000"],["2024-07-25T02:45:40.010000"],["2024-07-25T02:45:41.010000"],["2024-07-25T02:45:42.010000"],["2024-07-25T02:45:43.010000"],["2024-07-25T02:45:44.010000"],["2024-07-25T02:45:45.010000"],["2024-07-25T02:45:46.010000"],["2024-07-25T02:45:47.010000"],["2024-07-25T02:45:48.010000"],["2024-07-25T02:45:49.010000"],["2024-07-25T02:45:50.010000"],["2024-07-25T02:45:51.010000"],["2024-07-25T02:45:52.010000"],["2024-07-25T02:45:53.010000"],["2024-07-25T02:45:54.010000"],["2024-07-25T02:45:55.010000"],["2024-07-25T02:45:56.010000"],["2024-07-25T02:45:57.010000"],["2024-07-25T02:45:58.010000"],["2024-07-25T02:45:59.010000"],["2024-07-25T02:46:00.010000"],["2024-07-25T02:46:01.010000"],["2024-07-25T02:46:02.010000"],["2024-07-25T02:46:03.010000"],["2024-07-25T02:46:04.010000"],["2024-07-25T02:46:05.010000"],["2024-07-25T02:46:06.010000"],["2024-07-25T02:46:07.010000"],["2024-07-25T02:46:08.010000"],["2024-07-25T02:46:09.010000"],["2024-07-25T02:46:10.010000"],["2024-07-25T02:46:11.010000"],["2024-07-25T02:46:12.010000"],["2024-07-25T02:46:13.010000"],["2024-07-25T02:46:14.010000"],["2024-07-25T02:46:15.010000"],["2024-07-25T02:46:16.010000"],["2024-07-25T02:46:17.010000"],["2024-07-25T02:46:18.010000"],["2024-07-25T02:46:19.010000"],["2024-07-25T02:46:20.010000"],["2024-07-25T02:46:21.010000"],["2024-07-25T02:46:22.010000"],["2024-07-25T02:46:23.010000"],["2024-07-25T02:46:24.010000"],["2024-07-25T02:46:25.010000"],["2024-07-25T02:46:26.010000"],["2024-07-25T02:46:27.010000"],["2024-07-25T02:46:28.010000"],["2024-07-25T02:46:29.010000"],["2024-07-25T02:46:30.010000"],["2024-07-25T02:46:31.010000"],["2024-07-25T02:46:32.010000"],["2024-07-25T02:46:33.010000"],["2024-07-25T02:46:34.010000"],["2024-07-25T02:46:35.010000"],["2024-07-25T02:46:36.010000"],["2024-07-25T02:46:37.010000"],["2024-07-25T02:46:38.010000"],["2024-07-25T02:46:39.010000"],["2024-07-25T02:46:40.010000"],["2024-07-25T02:46:41.010000"],["2024-07-25T02:46:42.010000"],["2024-07-25T02:46:43.010000"],["2024-07-25T02:46:44.010000"],["2024-07-25T02:46:45.010000"],["2024-07-25T02:46:46.010000"],["2024-07-25T02:46:47.010000"],["2024-07-25T02:46:48.010000"],["2024-07-25T02:46:49.010000"],["2024-07-25T02:46:50.010000"],["2024-07-25T02:46:51.010000"],["2024-07-25T02:46:52.010000"],["2024-07-25T02:46:53.010000"],["2024-07-25T02:46:54.010000"],["2024-07-25T02:46:55.010000"],["2024-07-25T02:46:56.010000"],["2024-07-25T02:46:57.010000"],["2024-07-25T02:46:58.010000"],["2024-07-25T02:46:59.010000"],["2024-07-25T02:47:00.010000"],["2024-07-25T02:47:01.010000"],["2024-07-25T02:47:02.010000"],["2024-07-25T02:47:03.010000"],["2024-07-25T02:47:04.010000"],["2024-07-25T02:47:05.010000"],["2024-07-25T02:47:06.010000"],["2024-07-25T02:47:07.010000"],["2024-07-25T02:47:08.010000"],["2024-07-25T02:47:09.010000"],["2024-07-25T02:47:10.010000"],["2024-07-25T02:47:11.010000"],["2024-07-25T02:47:12.010000"],["2024-07-25T02:47:13.010000"],["2024-07-25T02:47:14.010000"],["2024-07-25T02:47:15.010000"],["2024-07-25T02:47:16.010000"],["2024-07-25T02:47:17.010000"],["2024-07-25T02:47:18.010000"],["2024-07-25T02:47:19.010000"],["2024-07-25T02:47:20.010000"],["2024-07-25T02:47:21.010000"],["2024-07-25T02:47:22.010000"],["2024-07-25T02:47:23.010000"],["2024-07-25T02:47:24.010000"],["2024-07-25T02:47:25.010000"],["2024-07-25T02:47:26.010000"],["2024-07-25T02:47:27.010000"],["2024-07-25T02:47:28.010000"],["2024-07-25T02:47:29.010000"],["2024-07-25T02:47:30.010000"],["2024-07-25T02:47:31.010000"],["2024-07-25T02:47:32.010000"],["2024-07-25T02:47:33.010000"],["2024-07-25T02:47:34.010000"],["2024-07-25T02:47:35.010000"],["2024-07-25T02:47:36.010000"],["2024-07-25T02:47:37.010000"],["2024-07-25T02:47:38.010000"],["2024-07-25T02:47:39.010000"],["2024-07-25T02:47:40.010000"],["2024-07-25T02:47:41.010000"],["2024-07-25T02:47:42.010000"],["2024-07-25T02:47:43.010000"],["2024-07-25T02:47:44.010000"],["2024-07-25T02:47:45.010000"],["2024-07-25T02:47:46.010000"],["2024-07-25T02:47:47.010000"],["2024-07-25T02:47:48.010000"],["2024-07-25T02:47:49.010000"],["2024-07-25T02:47:50.010000"],["2024-07-25T02:47:51.010000"],["2024-07-25T02:47:52.010000"],["2024-07-25T02:47:53.010000"],["2024-07-25T02:47:54.010000"],["2024-07-25T02:47:55.010000"],["2024-07-25T02:47:56.010000"],["2024-07-25T02:47:57.010000"],["2024-07-25T02:47:58.010000"],["2024-07-25T02:47:59.010000"],["2024-07-25T02:48:00.010000"],["2024-07-25T02:48:01.010000"],["2024-07-25T02:48:02.010000"],["2024-07-25T02:48:03.010000"],["2024-07-25T02:48:04.010000"],["2024-07-25T02:48:05.010000"],["2024-07-25T02:48:06.010000"],["2024-07-25T02:48:07.010000"],["2024-07-25T02:48:08.010000"],["2024-07-25T02:48:09.010000"],["2024-07-25T02:48:10.010000"],["2024-07-25T02:48:11.010000"],["2024-07-25T02:48:12.010000"],["2024-07-25T02:48:13.010000"],["2024-07-25T02:48:14.010000"],["2024-07-25T02:48:15.010000"],["2024-07-25T02:48:16.010000"],["2024-07-25T02:48:17.010000"],["2024-07-25T02:48:18.010000"],["2024-07-25T02:48:19.010000"],["2024-07-25T02:48:20.010000"],["2024-07-25T02:48:21.010000"],["2024-07-25T02:48:22.010000"],["2024-07-25T02:48:23.010000"],["2024-07-25T02:48:24.010000"],["2024-07-25T02:48:25.010000"],["2024-07-25T02:48:26.010000"],["2024-07-25T02:48:27.010000"],["2024-07-25T02:48:28.010000"],["2024-07-25T02:48:29.010000"],["2024-07-25T02:48:30.010000"],["2024-07-25T02:48:31.010000"],["2024-07-25T02:48:32.010000"],["2024-07-25T02:48:33.010000"],["2024-07-25T02:48:34.010000"],["2024-07-25T02:48:35.010000"],["2024-07-25T02:48:36.010000"],["2024-07-25T02:48:37.010000"],["2024-07-25T02:48:38.010000"],["2024-07-25T02:48:39.010000"],["2024-07-25T02:48:40.010000"],["2024-07-25T02:48:41.010000"],["2024-07-25T02:48:42.010000"],["2024-07-25T02:48:43.010000"],["2024-07-25T02:48:44.010000"],["2024-07-25T02:48:45.010000"],["2024-07-25T02:48:46.010000"],["2024-07-25T02:48:47.010000"],["2024-07-25T02:48:48.010000"],["2024-07-25T02:48:49.010000"],["2024-07-25T02:48:50.010000"],["2024-07-25T02:48:51.010000"],["2024-07-25T02:48:52.010000"],["2024-07-25T02:48:53.010000"],["2024-07-25T02:48:54.010000"],["2024-07-25T02:48:55.010000"],["2024-07-25T02:48:56.010000"],["2024-07-25T02:48:57.010000"],["2024-07-25T02:48:58.010000"],["2024-07-25T02:48:59.010000"],["2024-07-25T02:49:00.010000"],["2024-07-25T02:49:01.010000"],["2024-07-25T02:49:02.010000"],["2024-07-25T02:49:03.010000"],["2024-07-25T02:49:04.010000"],["2024-07-25T02:49:05.010000"],["2024-07-25T02:49:06.010000"],["2024-07-25T02:49:07.010000"],["2024-07-25T02:49:08.010000"],["2024-07-25T02:49:09.010000"],["2024-07-25T02:49:10.010000"],["2024-07-25T02:49:11.010000"],["2024-07-25T02:49:12.010000"],["2024-07-25T02:49:13.010000"],["2024-07-25T02:49:14.010000"],["2024-07-25T02:49:15.010000"],["2024-07-25T02:49:16.010000"],["2024-07-25T02:49:17.010000"],["2024-07-25T02:49:18.010000"],["2024-07-25T02:49:19.010000"],["2024-07-25T02:49:20.010000"],["2024-07-25T02:49:21.010000"],["2024-07-25T02:49:22.010000"],["2024-07-25T02:49:23.010000"],["2024-07-25T02:49:24.010000"],["2024-07-25T02:49:25.010000"],["2024-07-25T02:49:26.010000"],["2024-07-25T02:49:27.010000"],["2024-07-25T02:49:28.010000"],["2024-07-25T02:49:29.010000"],["2024-07-25T02:49:30.010000"],["2024-07-25T02:49:31.010000"],["2024-07-25T02:49:32.010000"],["2024-07-25T02:49:33.010000"],["2024-07-25T02:49:34.010000"],["2024-07-25T02:49:35.010000"],["2024-07-25T02:49:36.010000"],["2024-07-25T02:49:37.010000"],["2024-07-25T02:49:38.010000"],["2024-07-25T02:49:39.010000"],["2024-07-25T02:49:40.010000"],["2024-07-25T02:49:41.010000"],["2024-07-25T02:49:42.010000"],["2024-07-25T02:49:43.010000"],["2024-07-25T02:49:44.010000"],["2024-07-25T02:49:45.010000"],["2024-07-25T02:49:46.010000"],["2024-07-25T02:49:47.010000"],["2024-07-25T02:49:48.010000"],["2024-07-25T02:49:49.010000"],["2024-07-25T02:49:50.010000"],["2024-07-25T02:49:51.010000"],["2024-07-25T02:49:52.010000"],["2024-07-25T02:49:53.010000"],["2024-07-25T02:49:54.010000"],["2024-07-25T02:49:55.010000"],["2024-07-25T02:49:56.010000"],["2024-07-25T02:49:57.010000"],["2024-07-25T02:49:58.010000"],["2024-07-25T02:49:59.010000"],["2024-07-25T02:50:00.010000"],["2024-07-25T02:50:01.010000"],["2024-07-25T02:50:02.010000"],["2024-07-25T02:50:03.010000"],["2024-07-25T02:50:04.010000"],["2024-07-25T02:50:05.010000"],["2024-07-25T02:50:06.010000"],["2024-07-25T02:50:07.010000"],["2024-07-25T02:50:08.010000"],["2024-07-25T02:50:09.010000"],["2024-07-25T02:50:10.010000"],["2024-07-25T02:50:11.010000"],["2024-07-25T02:50:12.010000"],["2024-07-25T02:50:13.010000"],["2024-07-25T02:50:14.010000"],["2024-07-25T02:50:15.010000"],["2024-07-25T02:50:16.010000"],["2024-07-25T02:50:17.010000"],["2024-07-25T02:50:18.010000"],["2024-07-25T02:50:19.010000"],["2024-07-25T02:50:20.010000"],["2024-07-25T02:50:21.010000"],["2024-07-25T02:50:22.010000"],["2024-07-25T02:50:23.010000"],["2024-07-25T02:50:24.010000"],["2024-07-25T02:50:25.010000"],["2024-07-25T02:50:26.010000"],["2024-07-25T02:50:27.010000"],["2024-07-25T02:50:28.010000"],["2024-07-25T02:50:29.010000"],["2024-07-25T02:50:30.010000"],["2024-07-25T02:50:31.010000"],["2024-07-25T02:50:32.010000"],["2024-07-25T02:50:33.010000"],["2024-07-25T02:50:34.010000"],["2024-07-25T02:50:35.010000"],["2024-07-25T02:50:36.010000"],["2024-07-25T02:50:37.010000"],["2024-07-25T02:50:38.010000"],["2024-07-25T02:50:39.010000"],["2024-07-25T02:50:40.010000"],["2024-07-25T02:50:41.010000"],["2024-07-25T02:50:42.010000"],["2024-07-25T02:50:43.010000"],["2024-07-25T02:50:44.010000"],["2024-07-25T02:50:45.010000"],["2024-07-25T02:50:46.010000"],["2024-07-25T02:50:47.010000"],["2024-07-25T02:50:48.010000"],["2024-07-25T02:50:49.010000"],["2024-07-25T02:50:50.010000"],["2024-07-25T02:50:51.010000"],["2024-07-25T02:50:52.010000"],["2024-07-25T02:50:53.010000"],["2024-07-25T02:50:54.010000"],["2024-07-25T02:50:55.010000"],["2024-07-25T02:50:56.010000"],["2024-07-25T02:50:57.010000"],["2024-07-25T02:50:58.010000"],["2024-07-25T02:50:59.010000"],["2024-07-25T02:51:00.010000"],["2024-07-25T02:51:01.010000"],["2024-07-25T02:51:02.010000"],["2024-07-25T02:51:03.010000"],["2024-07-25T02:51:04.010000"],["2024-07-25T02:51:05.010000"],["2024-07-25T02:51:06.010000"],["2024-07-25T02:51:07.010000"],["2024-07-25T02:51:08.010000"],["2024-07-25T02:51:09.010000"],["2024-07-25T02:51:10.010000"],["2024-07-25T02:51:11.010000"],["2024-07-25T02:51:12.010000"],["2024-07-25T02:51:13.010000"],["2024-07-25T02:51:14.010000"],["2024-07-25T02:51:15.010000"],["2024-07-25T02:51:16.010000"],["2024-07-25T02:51:17.010000"],["2024-07-25T02:51:18.010000"],["2024-07-25T02:51:19.010000"],["2024-07-25T02:51:20.010000"],["2024-07-25T02:51:21.010000"],["2024-07-25T02:51:22.010000"],["2024-07-25T02:51:23.010000"],["2024-07-25T02:51:24.010000"],["2024-07-25T02:51:25.010000"],["2024-07-25T02:51:26.010000"],["2024-07-25T02:51:27.010000"],["2024-07-25T02:51:28.010000"],["2024-07-25T02:51:29.010000"],["2024-07-25T02:51:30.010000"],["2024-07-25T02:51:31.010000"],["2024-07-25T02:51:32.010000"],["2024-07-25T02:51:33.010000"],["2024-07-25T02:51:34.010000"],["2024-07-25T02:51:35.010000"],["2024-07-25T02:51:36.010000"],["2024-07-25T02:51:37.010000"],["2024-07-25T02:51:38.010000"],["2024-07-25T02:51:39.010000"],["2024-07-25T02:51:40.010000"],["2024-07-25T02:51:41.010000"],["2024-07-25T02:51:42.010000"],["2024-07-25T02:51:43.010000"],["2024-07-25T02:51:44.010000"],["2024-07-25T02:51:45.010000"],["2024-07-25T02:51:46.010000"],["2024-07-25T02:51:47.010000"],["2024-07-25T02:51:48.010000"],["2024-07-25T02:51:49.010000"],["2024-07-25T02:51:50.010000"],["2024-07-25T02:51:51.010000"],["2024-07-25T02:51:52.010000"],["2024-07-25T02:51:53.010000"],["2024-07-25T02:51:54.010000"],["2024-07-25T02:51:55.010000"],["2024-07-25T02:51:56.010000"],["2024-07-25T02:51:57.010000"],["2024-07-25T02:51:58.010000"],["2024-07-25T02:51:59.010000"],["2024-07-25T02:52:00.010000"],["2024-07-25T02:52:01.010000"],["2024-07-25T02:52:02.010000"],["2024-07-25T02:52:03.010000"],["2024-07-25T02:52:04.010000"],["2024-07-25T02:52:05.010000"],["2024-07-25T02:52:06.010000"],["2024-07-25T02:52:07.010000"],["2024-07-25T02:52:08.010000"],["2024-07-25T02:52:09.010000"],["2024-07-25T02:52:10.010000"],["2024-07-25T02:52:11.010000"],["2024-07-25T02:52:12.010000"],["2024-07-25T02:52:13.010000"],["2024-07-25T02:52:14.010000"],["2024-07-25T02:52:15.010000"],["2024-07-25T02:52:16.010000"],["2024-07-25T02:52:17.010000"],["2024-07-25T02:52:18.010000"],["2024-07-25T02:52:19.010000"],["2024-07-25T02:52:20.010000"],["2024-07-25T02:52:21.010000"],["2024-07-25T02:52:22.010000"],["2024-07-25T02:52:23.010000"],["2024-07-25T02:52:24.010000"],["2024-07-25T02:52:25.010000"],["2024-07-25T02:52:26.010000"],["2024-07-25T02:52:27.010000"],["2024-07-25T02:52:28.010000"],["2024-07-25T02:52:29.010000"],["2024-07-25T02:52:30.010000"],["2024-07-25T02:52:31.010000"],["2024-07-25T02:52:32.010000"],["2024-07-25T02:52:33.010000"],["2024-07-25T02:52:34.010000"],["2024-07-25T02:52:35.010000"],["2024-07-25T02:52:36.010000"],["2024-07-25T02:52:37.010000"],["2024-07-25T02:52:38.010000"],["2024-07-25T02:52:39.010000"],["2024-07-25T02:52:40.010000"],["2024-07-25T02:52:41.010000"],["2024-07-25T02:52:42.010000"],["2024-07-25T02:52:43.010000"],["2024-07-25T02:52:44.010000"],["2024-07-25T02:52:45.010000"],["2024-07-25T02:52:46.010000"],["2024-07-25T02:52:47.010000"],["2024-07-25T02:52:48.010000"],["2024-07-25T02:52:49.010000"],["2024-07-25T02:52:50.010000"],["2024-07-25T02:52:51.010000"],["2024-07-25T02:52:52.010000"],["2024-07-25T02:52:53.010000"],["2024-07-25T02:52:54.010000"],["2024-07-25T02:52:55.010000"],["2024-07-25T02:52:56.010000"],["2024-07-25T02:52:57.010000"],["2024-07-25T02:52:58.010000"],["2024-07-25T02:52:59.010000"],["2024-07-25T02:53:00.010000"],["2024-07-25T02:53:01.010000"],["2024-07-25T02:53:02.010000"],["2024-07-25T02:53:03.010000"],["2024-07-25T02:53:04.010000"],["2024-07-25T02:53:05.010000"],["2024-07-25T02:53:06.010000"],["2024-07-25T02:53:07.010000"],["2024-07-25T02:53:08.010000"],["2024-07-25T02:53:09.010000"],["2024-07-25T02:53:10.010000"],["2024-07-25T02:53:11.010000"],["2024-07-25T02:53:12.010000"],["2024-07-25T02:53:13.010000"],["2024-07-25T02:53:14.010000"],["2024-07-25T02:53:15.010000"],["2024-07-25T02:53:16.010000"],["2024-07-25T02:53:17.010000"],["2024-07-25T02:53:18.010000"],["2024-07-25T02:53:19.010000"],["2024-07-25T02:53:20.010000"],["2024-07-25T02:53:21.010000"],["2024-07-25T02:53:22.010000"],["2024-07-25T02:53:23.010000"],["2024-07-25T02:53:24.010000"],["2024-07-25T02:53:25.010000"],["2024-07-25T02:53:26.010000"],["2024-07-25T02:53:27.010000"],["2024-07-25T02:53:28.010000"],["2024-07-25T02:53:29.010000"],["2024-07-25T02:53:30.010000"],["2024-07-25T02:53:31.010000"],["2024-07-25T02:53:32.010000"],["2024-07-25T02:53:33.010000"],["2024-07-25T02:53:34.010000"],["2024-07-25T02:53:35.010000"],["2024-07-25T02:53:36.010000"],["2024-07-25T02:53:37.010000"],["2024-07-25T02:53:38.010000"],["2024-07-25T02:53:39.010000"],["2024-07-25T02:53:40.010000"],["2024-07-25T02:53:41.010000"],["2024-07-25T02:53:42.010000"],["2024-07-25T02:53:43.010000"],["2024-07-25T02:53:44.010000"],["2024-07-25T02:53:45.010000"],["2024-07-25T02:53:46.010000"],["2024-07-25T02:53:47.010000"],["2024-07-25T02:53:48.010000"],["2024-07-25T02:53:49.010000"],["2024-07-25T02:53:50.010000"],["2024-07-25T02:53:51.010000"],["2024-07-25T02:53:52.010000"],["2024-07-25T02:53:53.010000"],["2024-07-25T02:53:54.010000"],["2024-07-25T02:53:55.010000"],["2024-07-25T02:53:56.010000"],["2024-07-25T02:53:57.010000"],["2024-07-25T02:53:58.010000"],["2024-07-25T02:53:59.010000"],["2024-07-25T02:54:00.010000"],["2024-07-25T02:54:01.010000"],["2024-07-25T02:54:02.010000"],["2024-07-25T02:54:03.010000"],["2024-07-25T02:54:04.010000"],["2024-07-25T02:54:05.010000"],["2024-07-25T02:54:06.010000"],["2024-07-25T02:54:07.010000"],["2024-07-25T02:54:08.010000"],["2024-07-25T02:54:09.010000"],["2024-07-25T02:54:10.010000"],["2024-07-25T02:54:11.010000"],["2024-07-25T02:54:12.010000"],["2024-07-25T02:54:13.010000"],["2024-07-25T02:54:14.010000"],["2024-07-25T02:54:15.010000"],["2024-07-25T02:54:16.010000"],["2024-07-25T02:54:17.010000"],["2024-07-25T02:54:18.010000"],["2024-07-25T02:54:19.010000"],["2024-07-25T02:54:20.010000"],["2024-07-25T02:54:21.010000"],["2024-07-25T02:54:22.010000"],["2024-07-25T02:54:23.010000"],["2024-07-25T02:54:24.010000"],["2024-07-25T02:54:25.010000"],["2024-07-25T02:54:26.010000"],["2024-07-25T02:54:27.010000"],["2024-07-25T02:54:28.010000"],["2024-07-25T02:54:29.010000"],["2024-07-25T02:54:30.010000"],["2024-07-25T02:54:31.010000"],["2024-07-25T02:54:32.010000"],["2024-07-25T02:54:33.010000"],["2024-07-25T02:54:34.010000"],["2024-07-25T02:54:35.010000"],["2024-07-25T02:54:36.010000"],["2024-07-25T02:54:37.010000"],["2024-07-25T02:54:38.010000"],["2024-07-25T02:54:39.010000"],["2024-07-25T02:54:40.010000"],["2024-07-25T02:54:41.010000"],["2024-07-25T02:54:42.010000"],["2024-07-25T02:54:43.010000"],["2024-07-25T02:54:44.010000"],["2024-07-25T02:54:45.010000"],["2024-07-25T02:54:46.010000"],["2024-07-25T02:54:47.010000"],["2024-07-25T02:54:48.010000"],["2024-07-25T02:54:49.010000"],["2024-07-25T02:54:50.010000"],["2024-07-25T02:54:51.010000"],["2024-07-25T02:54:52.010000"],["2024-07-25T02:54:53.010000"],["2024-07-25T02:54:54.010000"],["2024-07-25T02:54:55.010000"],["2024-07-25T02:54:56.010000"],["2024-07-25T02:54:57.010000"],["2024-07-25T02:54:58.010000"],["2024-07-25T02:54:59.010000"],["2024-07-25T02:55:00.010000"],["2024-07-25T02:55:01.010000"],["2024-07-25T02:55:02.010000"],["2024-07-25T02:55:03.010000"],["2024-07-25T02:55:04.010000"],["2024-07-25T02:55:05.010000"],["2024-07-25T02:55:06.010000"],["2024-07-25T02:55:07.010000"],["2024-07-25T02:55:08.010000"],["2024-07-25T02:55:09.010000"],["2024-07-25T02:55:10.010000"],["2024-07-25T02:55:11.010000"],["2024-07-25T02:55:12.010000"],["2024-07-25T02:55:13.010000"],["2024-07-25T02:55:14.010000"],["2024-07-25T02:55:15.010000"],["2024-07-25T02:55:16.010000"],["2024-07-25T02:55:17.010000"],["2024-07-25T02:55:18.010000"],["2024-07-25T02:55:19.010000"],["2024-07-25T02:55:20.010000"],["2024-07-25T02:55:21.010000"],["2024-07-25T02:55:22.010000"],["2024-07-25T02:55:23.010000"],["2024-07-25T02:55:24.010000"],["2024-07-25T02:55:25.010000"],["2024-07-25T02:55:26.010000"],["2024-07-25T02:55:27.010000"],["2024-07-25T02:55:28.010000"],["2024-07-25T02:55:29.010000"],["2024-07-25T02:55:30.010000"],["2024-07-25T02:55:31.010000"],["2024-07-25T02:55:32.010000"],["2024-07-25T02:55:33.010000"],["2024-07-25T02:55:34.010000"],["2024-07-25T02:55:35.010000"],["2024-07-25T02:55:36.010000"],["2024-07-25T02:55:37.010000"],["2024-07-25T02:55:38.010000"],["2024-07-25T02:55:39.010000"],["2024-07-25T02:55:40.010000"],["2024-07-25T02:55:41.010000"],["2024-07-25T02:55:42.010000"],["2024-07-25T02:55:43.010000"],["2024-07-25T02:55:44.010000"],["2024-07-25T02:55:45.010000"],["2024-07-25T02:55:46.010000"],["2024-07-25T02:55:47.010000"],["2024-07-25T02:55:48.010000"],["2024-07-25T02:55:49.010000"],["2024-07-25T02:55:50.010000"],["2024-07-25T02:55:51.010000"],["2024-07-25T02:55:52.010000"],["2024-07-25T02:55:53.010000"],["2024-07-25T02:55:54.010000"],["2024-07-25T02:55:55.010000"],["2024-07-25T02:55:56.010000"],["2024-07-25T02:55:57.010000"],["2024-07-25T02:55:58.010000"],["2024-07-25T02:55:59.010000"],["2024-07-25T02:56:00.010000"],["2024-07-25T02:56:01.010000"],["2024-07-25T02:56:02.010000"],["2024-07-25T02:56:03.010000"],["2024-07-25T02:56:04.010000"],["2024-07-25T02:56:05.010000"],["2024-07-25T02:56:06.010000"],["2024-07-25T02:56:07.010000"],["2024-07-25T02:56:08.010000"],["2024-07-25T02:56:09.010000"],["2024-07-25T02:56:10.010000"],["2024-07-25T02:56:11.010000"],["2024-07-25T02:56:12.010000"],["2024-07-25T02:56:13.010000"],["2024-07-25T02:56:14.010000"],["2024-07-25T02:56:15.010000"],["2024-07-25T02:56:16.010000"],["2024-07-25T02:56:17.010000"],["2024-07-25T02:56:18.010000"],["2024-07-25T02:56:19.010000"],["2024-07-25T02:56:20.010000"],["2024-07-25T02:56:21.010000"],["2024-07-25T02:56:22.010000"],["2024-07-25T02:56:23.010000"],["2024-07-25T02:56:24.010000"],["2024-07-25T02:56:25.010000"],["2024-07-25T02:56:26.010000"],["2024-07-25T02:56:27.010000"],["2024-07-25T02:56:28.010000"],["2024-07-25T02:56:29.010000"],["2024-07-25T02:56:30.010000"],["2024-07-25T02:56:31.010000"],["2024-07-25T02:56:32.010000"],["2024-07-25T02:56:33.010000"],["2024-07-25T02:56:34.010000"],["2024-07-25T02:56:35.010000"],["2024-07-25T02:56:36.010000"],["2024-07-25T02:56:37.010000"],["2024-07-25T02:56:38.010000"],["2024-07-25T02:56:39.010000"],["2024-07-25T02:56:40.010000"],["2024-07-25T02:56:41.010000"],["2024-07-25T02:56:42.010000"],["2024-07-25T02:56:43.010000"],["2024-07-25T02:56:44.010000"],["2024-07-25T02:56:45.010000"],["2024-07-25T02:56:46.010000"],["2024-07-25T02:56:47.010000"],["2024-07-25T02:56:48.010000"],["2024-07-25T02:56:49.010000"],["2024-07-25T02:56:50.010000"],["2024-07-25T02:56:51.010000"],["2024-07-25T02:56:52.010000"],["2024-07-25T02:56:53.010000"],["2024-07-25T02:56:54.010000"],["2024-07-25T02:56:55.010000"],["2024-07-25T02:56:56.010000"],["2024-07-25T02:56:57.010000"],["2024-07-25T02:56:58.010000"],["2024-07-25T02:56:59.010000"],["2024-07-25T02:57:00.010000"],["2024-07-25T02:57:01.010000"],["2024-07-25T02:57:02.010000"],["2024-07-25T02:57:03.010000"],["2024-07-25T02:57:04.010000"],["2024-07-25T02:57:05.010000"],["2024-07-25T02:57:06.010000"],["2024-07-25T02:57:07.010000"],["2024-07-25T02:57:08.010000"],["2024-07-25T02:57:09.010000"],["2024-07-25T02:57:10.010000"],["2024-07-25T02:57:11.010000"],["2024-07-25T02:57:12.010000"],["2024-07-25T02:57:13.010000"],["2024-07-25T02:57:14.010000"],["2024-07-25T02:57:15.010000"],["2024-07-25T02:57:16.010000"],["2024-07-25T02:57:17.010000"],["2024-07-25T02:57:18.010000"],["2024-07-25T02:57:19.010000"],["2024-07-25T02:57:20.010000"],["2024-07-25T02:57:21.010000"],["2024-07-25T02:57:22.010000"],["2024-07-25T02:57:23.010000"],["2024-07-25T02:57:24.010000"],["2024-07-25T02:57:25.010000"],["2024-07-25T02:57:26.010000"],["2024-07-25T02:57:27.010000"],["2024-07-25T02:57:28.010000"],["2024-07-25T02:57:29.010000"],["2024-07-25T02:57:30.010000"],["2024-07-25T02:57:31.010000"],["2024-07-25T02:57:32.010000"],["2024-07-25T02:57:33.010000"],["2024-07-25T02:57:34.010000"],["2024-07-25T02:57:35.010000"],["2024-07-25T02:57:36.010000"],["2024-07-25T02:57:37.010000"],["2024-07-25T02:57:38.010000"],["2024-07-25T02:57:39.010000"],["2024-07-25T02:57:40.010000"],["2024-07-25T02:57:41.010000"],["2024-07-25T02:57:42.010000"],["2024-07-25T02:57:43.010000"],["2024-07-25T02:57:44.010000"],["2024-07-25T02:57:45.010000"],["2024-07-25T02:57:46.010000"],["2024-07-25T02:57:47.010000"],["2024-07-25T02:57:48.010000"],["2024-07-25T02:57:49.010000"],["2024-07-25T02:57:50.010000"],["2024-07-25T02:57:51.010000"],["2024-07-25T02:57:52.010000"],["2024-07-25T02:57:53.010000"],["2024-07-25T02:57:54.010000"],["2024-07-25T02:57:55.010000"],["2024-07-25T02:57:56.010000"],["2024-07-25T02:57:57.010000"],["2024-07-25T02:57:58.010000"],["2024-07-25T02:57:59.010000"],["2024-07-25T02:58:00.010000"],["2024-07-25T02:58:01.010000"],["2024-07-25T02:58:02.010000"],["2024-07-25T02:58:03.010000"],["2024-07-25T02:58:04.010000"],["2024-07-25T02:58:05.010000"],["2024-07-25T02:58:06.010000"],["2024-07-25T02:58:07.010000"],["2024-07-25T02:58:08.010000"],["2024-07-25T02:58:09.010000"],["2024-07-25T02:58:10.010000"],["2024-07-25T02:58:11.010000"],["2024-07-25T02:58:12.010000"],["2024-07-25T02:58:13.010000"],["2024-07-25T02:58:14.010000"],["2024-07-25T02:58:15.010000"],["2024-07-25T02:58:16.010000"],["2024-07-25T02:58:17.010000"],["2024-07-25T02:58:18.010000"],["2024-07-25T02:58:19.010000"],["2024-07-25T02:58:20.010000"],["2024-07-25T02:58:21.010000"],["2024-07-25T02:58:22.010000"],["2024-07-25T02:58:23.010000"],["2024-07-25T02:58:24.010000"],["2024-07-25T02:58:25.010000"],["2024-07-25T02:58:26.010000"],["2024-07-25T02:58:27.010000"],["2024-07-25T02:58:28.010000"],["2024-07-25T02:58:29.010000"],["2024-07-25T02:58:30.010000"],["2024-07-25T02:58:31.010000"],["2024-07-25T02:58:32.010000"],["2024-07-25T02:58:33.010000"],["2024-07-25T02:58:34.010000"],["2024-07-25T02:58:35.010000"],["2024-07-25T02:58:36.010000"],["2024-07-25T02:58:37.010000"],["2024-07-25T02:58:38.010000"],["2024-07-25T02:58:39.010000"],["2024-07-25T02:58:40.010000"],["2024-07-25T02:58:41.010000"],["2024-07-25T02:58:42.010000"],["2024-07-25T02:58:43.010000"],["2024-07-25T02:58:44.010000"],["2024-07-25T02:58:45.010000"],["2024-07-25T02:58:46.010000"],["2024-07-25T02:58:47.010000"],["2024-07-25T02:58:48.010000"],["2024-07-25T02:58:49.010000"],["2024-07-25T02:58:50.010000"],["2024-07-25T02:58:51.010000"],["2024-07-25T02:58:52.010000"],["2024-07-25T02:58:53.010000"],["2024-07-25T02:58:54.010000"],["2024-07-25T02:58:55.010000"],["2024-07-25T02:58:56.010000"],["2024-07-25T02:58:57.010000"],["2024-07-25T02:58:58.010000"],["2024-07-25T02:58:59.010000"],["2024-07-25T02:59:00.010000"],["2024-07-25T02:59:01.010000"],["2024-07-25T02:59:02.010000"],["2024-07-25T02:59:03.010000"],["2024-07-25T02:59:04.010000"],["2024-07-25T02:59:05.010000"],["2024-07-25T02:59:06.010000"],["2024-07-25T02:59:07.010000"],["2024-07-25T02:59:08.010000"],["2024-07-25T02:59:09.010000"],["2024-07-25T02:59:10.010000"],["2024-07-25T02:59:11.010000"],["2024-07-25T02:59:12.010000"],["2024-07-25T02:59:13.010000"],["2024-07-25T02:59:14.010000"],["2024-07-25T02:59:15.010000"],["2024-07-25T02:59:16.010000"],["2024-07-25T02:59:17.010000"],["2024-07-25T02:59:18.010000"],["2024-07-25T02:59:19.010000"],["2024-07-25T02:59:20.010000"],["2024-07-25T02:59:21.010000"],["2024-07-25T02:59:22.010000"],["2024-07-25T02:59:23.010000"],["2024-07-25T02:59:24.010000"],["2024-07-25T02:59:25.010000"],["2024-07-25T02:59:26.010000"],["2024-07-25T02:59:27.010000"],["2024-07-25T02:59:28.010000"],["2024-07-25T02:59:29.010000"],["2024-07-25T02:59:30.010000"],["2024-07-25T02:59:31.010000"],["2024-07-25T02:59:32.010000"],["2024-07-25T02:59:33.010000"],["2024-07-25T02:59:34.010000"],["2024-07-25T02:59:35.010000"],["2024-07-25T02:59:36.010000"],["2024-07-25T02:59:37.010000"],["2024-07-25T02:59:38.010000"],["2024-07-25T02:59:39.010000"],["2024-07-25T02:59:40.010000"],["2024-07-25T02:59:41.010000"],["2024-07-25T02:59:42.010000"],["2024-07-25T02:59:43.010000"],["2024-07-25T02:59:44.010000"],["2024-07-25T02:59:45.010000"],["2024-07-25T02:59:46.010000"],["2024-07-25T02:59:47.010000"],["2024-07-25T02:59:48.010000"],["2024-07-25T02:59:49.010000"],["2024-07-25T02:59:50.010000"],["2024-07-25T02:59:51.010000"],["2024-07-25T02:59:52.010000"],["2024-07-25T02:59:53.010000"],["2024-07-25T02:59:54.010000"],["2024-07-25T02:59:55.010000"],["2024-07-25T02:59:56.010000"],["2024-07-25T02:59:57.010000"],["2024-07-25T02:59:58.010000"],["2024-07-25T02:59:59.010000"],["2024-07-25T03:00:00.010000"],["2024-07-25T03:00:01.010000"],["2024-07-25T03:00:02.010000"],["2024-07-25T03:00:03.010000"],["2024-07-25T03:00:04.010000"],["2024-07-25T03:00:05.010000"],["2024-07-25T03:00:06.010000"],["2024-07-25T03:00:07.010000"],["2024-07-25T03:00:08.010000"],["2024-07-25T03:00:09.010000"],["2024-07-25T03:00:10.010000"],["2024-07-25T03:00:11.010000"],["2024-07-25T03:00:12.010000"],["2024-07-25T03:00:13.010000"],["2024-07-25T03:00:14.010000"],["2024-07-25T03:00:15.010000"],["2024-07-25T03:00:16.010000"],["2024-07-25T03:00:17.010000"],["2024-07-25T03:00:18.010000"],["2024-07-25T03:00:19.010000"],["2024-07-25T03:00:20.010000"],["2024-07-25T03:00:21.010000"],["2024-07-25T03:00:22.010000"],["2024-07-25T03:00:23.010000"],["2024-07-25T03:00:24.010000"],["2024-07-25T03:00:25.010000"],["2024-07-25T03:00:26.010000"],["2024-07-25T03:00:27.010000"],["2024-07-25T03:00:28.010000"],["2024-07-25T03:00:29.010000"],["2024-07-25T03:00:30.010000"],["2024-07-25T03:00:31.010000"],["2024-07-25T03:00:32.010000"],["2024-07-25T03:00:33.010000"],["2024-07-25T03:00:34.010000"],["2024-07-25T03:00:35.010000"],["2024-07-25T03:00:36.010000"],["2024-07-25T03:00:37.010000"],["2024-07-25T03:00:38.010000"],["2024-07-25T03:00:39.010000"],["2024-07-25T03:00:40.010000"],["2024-07-25T03:00:41.010000"],["2024-07-25T03:00:42.010000"],["2024-07-25T03:00:43.010000"],["2024-07-25T03:00:44.010000"],["2024-07-25T03:00:45.010000"],["2024-07-25T03:00:46.010000"],["2024-07-25T03:00:47.010000"],["2024-07-25T03:00:48.010000"],["2024-07-25T03:00:49.010000"],["2024-07-25T03:00:50.010000"],["2024-07-25T03:00:51.010000"],["2024-07-25T03:00:52.010000"],["2024-07-25T03:00:53.010000"],["2024-07-25T03:00:54.010000"],["2024-07-25T03:00:55.010000"],["2024-07-25T03:00:56.010000"],["2024-07-25T03:00:57.010000"],["2024-07-25T03:00:58.010000"],["2024-07-25T03:00:59.010000"],["2024-07-25T03:01:00.010000"],["2024-07-25T03:01:01.010000"],["2024-07-25T03:01:02.010000"],["2024-07-25T03:01:03.010000"],["2024-07-25T03:01:04.010000"],["2024-07-25T03:01:05.010000"],["2024-07-25T03:01:06.010000"],["2024-07-25T03:01:07.010000"],["2024-07-25T03:01:08.010000"],["2024-07-25T03:01:09.010000"],["2024-07-25T03:01:10.010000"],["2024-07-25T03:01:11.010000"],["2024-07-25T03:01:12.010000"],["2024-07-25T03:01:13.010000"],["2024-07-25T03:01:14.010000"],["2024-07-25T03:01:15.010000"],["2024-07-25T03:01:16.010000"],["2024-07-25T03:01:17.010000"],["2024-07-25T03:01:18.010000"],["2024-07-25T03:01:19.010000"],["2024-07-25T03:01:20.010000"],["2024-07-25T03:01:21.010000"],["2024-07-25T03:01:22.010000"],["2024-07-25T03:01:23.010000"],["2024-07-25T03:01:24.010000"],["2024-07-25T03:01:25.010000"],["2024-07-25T03:01:26.010000"],["2024-07-25T03:01:27.010000"],["2024-07-25T03:01:28.010000"],["2024-07-25T03:01:29.010000"],["2024-07-25T03:01:30.010000"],["2024-07-25T03:01:31.010000"],["2024-07-25T03:01:32.010000"],["2024-07-25T03:01:33.010000"],["2024-07-25T03:01:34.010000"],["2024-07-25T03:01:35.010000"],["2024-07-25T03:01:36.010000"],["2024-07-25T03:01:37.010000"],["2024-07-25T03:01:38.010000"],["2024-07-25T03:01:39.010000"],["2024-07-25T03:01:40.010000"],["2024-07-25T03:01:41.010000"],["2024-07-25T03:01:42.010000"],["2024-07-25T03:01:43.010000"],["2024-07-25T03:01:44.010000"],["2024-07-25T03:01:45.010000"],["2024-07-25T03:01:46.010000"],["2024-07-25T03:01:47.010000"],["2024-07-25T03:01:48.010000"],["2024-07-25T03:01:49.010000"],["2024-07-25T03:01:50.010000"],["2024-07-25T03:01:51.010000"],["2024-07-25T03:01:52.010000"],["2024-07-25T03:01:53.010000"],["2024-07-25T03:01:54.010000"],["2024-07-25T03:01:55.010000"],["2024-07-25T03:01:56.010000"],["2024-07-25T03:01:57.010000"],["2024-07-25T03:01:58.010000"],["2024-07-25T03:01:59.010000"],["2024-07-25T03:02:00.010000"],["2024-07-25T03:02:01.010000"],["2024-07-25T03:02:02.010000"],["2024-07-25T03:02:03.010000"],["2024-07-25T03:02:04.010000"],["2024-07-25T03:02:05.010000"],["2024-07-25T03:02:06.010000"],["2024-07-25T03:02:07.010000"],["2024-07-25T03:02:08.010000"],["2024-07-25T03:02:09.010000"],["2024-07-25T03:02:10.010000"],["2024-07-25T03:02:11.010000"],["2024-07-25T03:02:12.010000"],["2024-07-25T03:02:13.010000"],["2024-07-25T03:02:14.010000"],["2024-07-25T03:02:15.010000"],["2024-07-25T03:02:16.010000"],["2024-07-25T03:02:17.010000"],["2024-07-25T03:02:18.010000"],["2024-07-25T03:02:19.010000"],["2024-07-25T03:02:20.010000"],["2024-07-25T03:02:21.010000"],["2024-07-25T03:02:22.010000"],["2024-07-25T03:02:23.010000"],["2024-07-25T03:02:24.010000"],["2024-07-25T03:02:25.010000"],["2024-07-25T03:02:26.010000"],["2024-07-25T03:02:27.010000"],["2024-07-25T03:02:28.010000"],["2024-07-25T03:02:29.010000"],["2024-07-25T03:02:30.010000"],["2024-07-25T03:02:31.010000"],["2024-07-25T03:02:32.010000"],["2024-07-25T03:02:33.010000"],["2024-07-25T03:02:34.010000"],["2024-07-25T03:02:35.010000"],["2024-07-25T03:02:36.010000"],["2024-07-25T03:02:37.010000"],["2024-07-25T03:02:38.010000"],["2024-07-25T03:02:39.010000"],["2024-07-25T03:02:40.010000"],["2024-07-25T03:02:41.010000"],["2024-07-25T03:02:42.010000"],["2024-07-25T03:02:43.010000"],["2024-07-25T03:02:44.010000"],["2024-07-25T03:02:45.010000"],["2024-07-25T03:02:46.010000"],["2024-07-25T03:02:47.010000"],["2024-07-25T03:02:48.010000"],["2024-07-25T03:02:49.010000"],["2024-07-25T03:02:50.010000"],["2024-07-25T03:02:51.010000"],["2024-07-25T03:02:52.010000"],["2024-07-25T03:02:53.010000"],["2024-07-25T03:02:54.010000"],["2024-07-25T03:02:55.010000"],["2024-07-25T03:02:56.010000"],["2024-07-25T03:02:57.010000"],["2024-07-25T03:02:58.010000"],["2024-07-25T03:02:59.010000"],["2024-07-25T03:03:00.010000"],["2024-07-25T03:03:01.010000"],["2024-07-25T03:03:02.010000"],["2024-07-25T03:03:03.010000"],["2024-07-25T03:03:04.010000"],["2024-07-25T03:03:05.010000"],["2024-07-25T03:03:06.010000"],["2024-07-25T03:03:07.010000"],["2024-07-25T03:03:08.010000"],["2024-07-25T03:03:09.010000"],["2024-07-25T03:03:10.010000"],["2024-07-25T03:03:11.010000"],["2024-07-25T03:03:12.010000"],["2024-07-25T03:03:13.010000"],["2024-07-25T03:03:14.010000"],["2024-07-25T03:03:15.010000"],["2024-07-25T03:03:16.010000"],["2024-07-25T03:03:17.010000"],["2024-07-25T03:03:18.010000"],["2024-07-25T03:03:19.010000"],["2024-07-25T03:03:20.010000"],["2024-07-25T03:03:21.010000"],["2024-07-25T03:03:22.010000"],["2024-07-25T03:03:23.010000"],["2024-07-25T03:03:24.010000"],["2024-07-25T03:03:25.010000"],["2024-07-25T03:03:26.010000"],["2024-07-25T03:03:27.010000"],["2024-07-25T03:03:28.010000"],["2024-07-25T03:03:29.010000"],["2024-07-25T03:03:30.010000"],["2024-07-25T03:03:31.010000"],["2024-07-25T03:03:32.010000"],["2024-07-25T03:03:33.010000"],["2024-07-25T03:03:34.010000"],["2024-07-25T03:03:35.010000"],["2024-07-25T03:03:36.010000"],["2024-07-25T03:03:37.010000"],["2024-07-25T03:03:38.010000"],["2024-07-25T03:03:39.010000"],["2024-07-25T03:03:40.010000"],["2024-07-25T03:03:41.010000"],["2024-07-25T03:03:42.010000"],["2024-07-25T03:03:43.010000"],["2024-07-25T03:03:44.010000"],["2024-07-25T03:03:45.010000"],["2024-07-25T03:03:46.010000"],["2024-07-25T03:03:47.010000"],["2024-07-25T03:03:48.010000"],["2024-07-25T03:03:49.010000"],["2024-07-25T03:03:50.010000"],["2024-07-25T03:03:51.010000"],["2024-07-25T03:03:52.010000"],["2024-07-25T03:03:53.010000"],["2024-07-25T03:03:54.010000"],["2024-07-25T03:03:55.010000"],["2024-07-25T03:03:56.010000"],["2024-07-25T03:03:57.010000"],["2024-07-25T03:03:58.010000"],["2024-07-25T03:03:59.010000"],["2024-07-25T03:04:00.010000"],["2024-07-25T03:04:01.010000"],["2024-07-25T03:04:02.010000"],["2024-07-25T03:04:03.010000"],["2024-07-25T03:04:04.010000"],["2024-07-25T03:04:05.010000"],["2024-07-25T03:04:06.010000"],["2024-07-25T03:04:07.010000"],["2024-07-25T03:04:08.010000"],["2024-07-25T03:04:09.010000"],["2024-07-25T03:04:10.010000"],["2024-07-25T03:04:11.010000"],["2024-07-25T03:04:12.010000"],["2024-07-25T03:04:13.010000"],["2024-07-25T03:04:14.010000"],["2024-07-25T03:04:15.010000"],["2024-07-25T03:04:16.010000"],["2024-07-25T03:04:17.010000"],["2024-07-25T03:04:18.010000"],["2024-07-25T03:04:19.010000"],["2024-07-25T03:04:20.010000"],["2024-07-25T03:04:21.010000"],["2024-07-25T03:04:22.010000"],["2024-07-25T03:04:23.010000"],["2024-07-25T03:04:24.010000"],["2024-07-25T03:04:25.010000"],["2024-07-25T03:04:26.010000"],["2024-07-25T03:04:27.010000"],["2024-07-25T03:04:28.010000"],["2024-07-25T03:04:29.010000"],["2024-07-25T03:04:30.010000"],["2024-07-25T03:04:31.010000"],["2024-07-25T03:04:32.010000"],["2024-07-25T03:04:33.010000"],["2024-07-25T03:04:34.010000"],["2024-07-25T03:04:35.010000"],["2024-07-25T03:04:36.010000"],["2024-07-25T03:04:37.010000"],["2024-07-25T03:04:38.010000"],["2024-07-25T03:04:39.010000"],["2024-07-25T03:04:40.010000"],["2024-07-25T03:04:41.010000"],["2024-07-25T03:04:42.010000"],["2024-07-25T03:04:43.010000"],["2024-07-25T03:04:44.010000"],["2024-07-25T03:04:45.010000"],["2024-07-25T03:04:46.010000"],["2024-07-25T03:04:47.010000"],["2024-07-25T03:04:48.010000"],["2024-07-25T03:04:49.010000"],["2024-07-25T03:04:50.010000"],["2024-07-25T03:04:51.010000"],["2024-07-25T03:04:52.010000"],["2024-07-25T03:04:53.010000"],["2024-07-25T03:04:54.010000"],["2024-07-25T03:04:55.010000"],["2024-07-25T03:04:56.010000"],["2024-07-25T03:04:57.010000"],["2024-07-25T03:04:58.010000"],["2024-07-25T03:04:59.010000"],["2024-07-25T03:05:00.010000"],["2024-07-25T03:05:01.010000"],["2024-07-25T03:05:02.010000"],["2024-07-25T03:05:03.010000"],["2024-07-25T03:05:04.010000"],["2024-07-25T03:05:05.010000"],["2024-07-25T03:05:06.010000"],["2024-07-25T03:05:07.010000"],["2024-07-25T03:05:08.010000"],["2024-07-25T03:05:09.010000"],["2024-07-25T03:05:10.010000"],["2024-07-25T03:05:11.010000"],["2024-07-25T03:05:12.010000"],["2024-07-25T03:05:13.010000"],["2024-07-25T03:05:14.010000"],["2024-07-25T03:05:15.010000"],["2024-07-25T03:05:16.010000"],["2024-07-25T03:05:17.010000"],["2024-07-25T03:05:18.010000"],["2024-07-25T03:05:19.010000"],["2024-07-25T03:05:20.010000"],["2024-07-25T03:05:21.010000"],["2024-07-25T03:05:22.010000"],["2024-07-25T03:05:23.010000"],["2024-07-25T03:05:24.010000"],["2024-07-25T03:05:25.010000"],["2024-07-25T03:05:26.010000"],["2024-07-25T03:05:27.010000"],["2024-07-25T03:05:28.010000"],["2024-07-25T03:05:29.010000"],["2024-07-25T03:05:30.010000"],["2024-07-25T03:05:31.010000"],["2024-07-25T03:05:32.010000"],["2024-07-25T03:05:33.010000"],["2024-07-25T03:05:34.010000"],["2024-07-25T03:05:35.010000"],["2024-07-25T03:05:36.010000"],["2024-07-25T03:05:37.010000"],["2024-07-25T03:05:38.010000"],["2024-07-25T03:05:39.010000"],["2024-07-25T03:05:40.010000"],["2024-07-25T03:05:41.010000"],["2024-07-25T03:05:42.010000"],["2024-07-25T03:05:43.010000"],["2024-07-25T03:05:44.010000"],["2024-07-25T03:05:45.010000"],["2024-07-25T03:05:46.010000"],["2024-07-25T03:05:47.010000"],["2024-07-25T03:05:48.010000"],["2024-07-25T03:05:49.010000"],["2024-07-25T03:05:50.010000"],["2024-07-25T03:05:51.010000"],["2024-07-25T03:05:52.010000"],["2024-07-25T03:05:53.010000"],["2024-07-25T03:05:54.010000"],["2024-07-25T03:05:55.010000"],["2024-07-25T03:05:56.010000"],["2024-07-25T03:05:57.010000"],["2024-07-25T03:05:58.010000"],["2024-07-25T03:05:59.010000"],["2024-07-25T03:06:00.010000"],["2024-07-25T03:06:01.010000"],["2024-07-25T03:06:02.010000"],["2024-07-25T03:06:03.010000"],["2024-07-25T03:06:04.010000"],["2024-07-25T03:06:05.010000"],["2024-07-25T03:06:06.010000"],["2024-07-25T03:06:07.010000"],["2024-07-25T03:06:08.010000"],["2024-07-25T03:06:09.010000"],["2024-07-25T03:06:10.010000"],["2024-07-25T03:06:11.010000"],["2024-07-25T03:06:12.010000"],["2024-07-25T03:06:13.010000"],["2024-07-25T03:06:14.010000"],["2024-07-25T03:06:15.010000"],["2024-07-25T03:06:16.010000"],["2024-07-25T03:06:17.010000"],["2024-07-25T03:06:18.010000"],["2024-07-25T03:06:19.010000"],["2024-07-25T03:06:20.010000"],["2024-07-25T03:06:21.010000"],["2024-07-25T03:06:22.010000"],["2024-07-25T03:06:23.010000"],["2024-07-25T03:06:24.010000"],["2024-07-25T03:06:25.010000"],["2024-07-25T03:06:26.010000"],["2024-07-25T03:06:27.010000"],["2024-07-25T03:06:28.010000"],["2024-07-25T03:06:29.010000"],["2024-07-25T03:06:30.010000"],["2024-07-25T03:06:31.010000"],["2024-07-25T03:06:32.010000"],["2024-07-25T03:06:33.010000"],["2024-07-25T03:06:34.010000"],["2024-07-25T03:06:35.010000"],["2024-07-25T03:06:36.010000"],["2024-07-25T03:06:37.010000"],["2024-07-25T03:06:38.010000"],["2024-07-25T03:06:39.010000"],["2024-07-25T03:06:40.010000"],["2024-07-25T03:06:41.010000"],["2024-07-25T03:06:42.010000"],["2024-07-25T03:06:43.010000"],["2024-07-25T03:06:44.010000"],["2024-07-25T03:06:45.010000"],["2024-07-25T03:06:46.010000"],["2024-07-25T03:06:47.010000"],["2024-07-25T03:06:48.010000"],["2024-07-25T03:06:49.010000"],["2024-07-25T03:06:50.010000"],["2024-07-25T03:06:51.010000"],["2024-07-25T03:06:52.010000"],["2024-07-25T03:06:53.010000"],["2024-07-25T03:06:54.010000"],["2024-07-25T03:06:55.010000"],["2024-07-25T03:06:56.010000"],["2024-07-25T03:06:57.010000"],["2024-07-25T03:06:58.010000"],["2024-07-25T03:06:59.010000"],["2024-07-25T03:07:00.010000"],["2024-07-25T03:07:01.010000"],["2024-07-25T03:07:02.010000"],["2024-07-25T03:07:03.010000"],["2024-07-25T03:07:04.010000"],["2024-07-25T03:07:05.010000"],["2024-07-25T03:07:06.010000"],["2024-07-25T03:07:07.010000"],["2024-07-25T03:07:08.010000"],["2024-07-25T03:07:09.010000"],["2024-07-25T03:07:10.010000"],["2024-07-25T03:07:11.010000"],["2024-07-25T03:07:12.010000"],["2024-07-25T03:07:13.010000"],["2024-07-25T03:07:14.010000"],["2024-07-25T03:07:15.010000"],["2024-07-25T03:07:16.010000"],["2024-07-25T03:07:17.010000"],["2024-07-25T03:07:18.010000"],["2024-07-25T03:07:19.010000"],["2024-07-25T03:07:20.010000"],["2024-07-25T03:07:21.010000"],["2024-07-25T03:07:22.010000"],["2024-07-25T03:07:23.010000"],["2024-07-25T03:07:24.010000"],["2024-07-25T03:07:25.010000"],["2024-07-25T03:07:26.010000"],["2024-07-25T03:07:27.010000"],["2024-07-25T03:07:28.010000"],["2024-07-25T03:07:29.010000"],["2024-07-25T03:07:30.010000"],["2024-07-25T03:07:31.010000"],["2024-07-25T03:07:32.010000"],["2024-07-25T03:07:33.010000"],["2024-07-25T03:07:34.010000"],["2024-07-25T03:07:35.010000"],["2024-07-25T03:07:36.010000"],["2024-07-25T03:07:37.010000"],["2024-07-25T03:07:38.010000"],["2024-07-25T03:07:39.010000"],["2024-07-25T03:07:40.010000"],["2024-07-25T03:07:41.010000"],["2024-07-25T03:07:42.010000"],["2024-07-25T03:07:43.010000"],["2024-07-25T03:07:44.010000"],["2024-07-25T03:07:45.010000"],["2024-07-25T03:07:46.010000"],["2024-07-25T03:07:47.010000"],["2024-07-25T03:07:48.010000"],["2024-07-25T03:07:49.010000"],["2024-07-25T03:07:50.010000"],["2024-07-25T03:07:51.010000"],["2024-07-25T03:07:52.010000"],["2024-07-25T03:07:53.010000"],["2024-07-25T03:07:54.010000"],["2024-07-25T03:07:55.010000"],["2024-07-25T03:07:56.010000"],["2024-07-25T03:07:57.010000"],["2024-07-25T03:07:58.010000"],["2024-07-25T03:07:59.010000"],["2024-07-25T03:08:00.010000"],["2024-07-25T03:08:01.010000"],["2024-07-25T03:08:02.010000"],["2024-07-25T03:08:03.010000"],["2024-07-25T03:08:04.010000"],["2024-07-25T03:08:05.010000"],["2024-07-25T03:08:06.010000"],["2024-07-25T03:08:07.010000"],["2024-07-25T03:08:08.010000"],["2024-07-25T03:08:09.010000"],["2024-07-25T03:08:10.010000"],["2024-07-25T03:08:11.010000"],["2024-07-25T03:08:12.010000"],["2024-07-25T03:08:13.010000"],["2024-07-25T03:08:14.010000"],["2024-07-25T03:08:15.010000"],["2024-07-25T03:08:16.010000"],["2024-07-25T03:08:17.010000"],["2024-07-25T03:08:18.010000"],["2024-07-25T03:08:19.010000"],["2024-07-25T03:08:20.010000"],["2024-07-25T03:08:21.010000"],["2024-07-25T03:08:22.010000"],["2024-07-25T03:08:23.010000"],["2024-07-25T03:08:24.010000"],["2024-07-25T03:08:25.010000"],["2024-07-25T03:08:26.010000"],["2024-07-25T03:08:27.010000"],["2024-07-25T03:08:28.010000"],["2024-07-25T03:08:29.010000"],["2024-07-25T03:08:30.010000"],["2024-07-25T03:08:31.010000"],["2024-07-25T03:08:32.010000"],["2024-07-25T03:08:33.010000"],["2024-07-25T03:08:34.010000"],["2024-07-25T03:08:35.010000"],["2024-07-25T03:08:36.010000"],["2024-07-25T03:08:37.010000"],["2024-07-25T03:08:38.010000"],["2024-07-25T03:08:39.010000"],["2024-07-25T03:08:40.010000"],["2024-07-25T03:08:41.010000"],["2024-07-25T03:08:42.010000"],["2024-07-25T03:08:43.010000"],["2024-07-25T03:08:44.010000"],["2024-07-25T03:08:45.010000"],["2024-07-25T03:08:46.010000"],["2024-07-25T03:08:47.010000"],["2024-07-25T03:08:48.010000"],["2024-07-25T03:08:49.010000"],["2024-07-25T03:08:50.010000"],["2024-07-25T03:08:51.010000"],["2024-07-25T03:08:52.010000"],["2024-07-25T03:08:53.010000"],["2024-07-25T03:08:54.010000"],["2024-07-25T03:08:55.010000"],["2024-07-25T03:08:56.010000"],["2024-07-25T03:08:57.010000"],["2024-07-25T03:08:58.010000"],["2024-07-25T03:08:59.010000"],["2024-07-25T03:09:00.010000"],["2024-07-25T03:09:01.010000"],["2024-07-25T03:09:02.010000"],["2024-07-25T03:09:03.010000"],["2024-07-25T03:09:04.010000"],["2024-07-25T03:09:05.010000"],["2024-07-25T03:09:06.010000"],["2024-07-25T03:09:07.010000"],["2024-07-25T03:09:08.010000"],["2024-07-25T03:09:09.010000"],["2024-07-25T03:09:10.010000"],["2024-07-25T03:09:11.010000"],["2024-07-25T03:09:12.010000"],["2024-07-25T03:09:13.010000"],["2024-07-25T03:09:14.010000"],["2024-07-25T03:09:15.010000"],["2024-07-25T03:09:16.010000"],["2024-07-25T03:09:17.010000"],["2024-07-25T03:09:18.010000"],["2024-07-25T03:09:19.010000"],["2024-07-25T03:09:20.010000"],["2024-07-25T03:09:21.010000"],["2024-07-25T03:09:22.010000"],["2024-07-25T03:09:23.010000"],["2024-07-25T03:09:24.010000"],["2024-07-25T03:09:25.010000"],["2024-07-25T03:09:26.010000"],["2024-07-25T03:09:27.010000"],["2024-07-25T03:09:28.010000"],["2024-07-25T03:09:29.010000"],["2024-07-25T03:09:30.010000"],["2024-07-25T03:09:31.010000"],["2024-07-25T03:09:32.010000"],["2024-07-25T03:09:33.010000"],["2024-07-25T03:09:34.010000"],["2024-07-25T03:09:35.010000"],["2024-07-25T03:09:36.010000"],["2024-07-25T03:09:37.010000"],["2024-07-25T03:09:38.010000"],["2024-07-25T03:09:39.010000"],["2024-07-25T03:09:40.010000"],["2024-07-25T03:09:41.010000"],["2024-07-25T03:09:42.010000"],["2024-07-25T03:09:43.010000"],["2024-07-25T03:09:44.010000"],["2024-07-25T03:09:45.010000"],["2024-07-25T03:09:46.010000"],["2024-07-25T03:09:47.010000"],["2024-07-25T03:09:48.010000"],["2024-07-25T03:09:49.010000"],["2024-07-25T03:09:50.010000"],["2024-07-25T03:09:51.010000"],["2024-07-25T03:09:52.010000"],["2024-07-25T03:09:53.010000"],["2024-07-25T03:09:54.010000"],["2024-07-25T03:09:55.010000"],["2024-07-25T03:09:56.010000"],["2024-07-25T03:09:57.010000"],["2024-07-25T03:09:58.010000"],["2024-07-25T03:09:59.010000"],["2024-07-25T03:10:00.010000"],["2024-07-25T03:10:01.010000"],["2024-07-25T03:10:02.010000"],["2024-07-25T03:10:03.010000"],["2024-07-25T03:10:04.010000"],["2024-07-25T03:10:05.010000"],["2024-07-25T03:10:06.010000"],["2024-07-25T03:10:07.010000"],["2024-07-25T03:10:08.010000"],["2024-07-25T03:10:09.010000"],["2024-07-25T03:10:10.010000"],["2024-07-25T03:10:11.010000"],["2024-07-25T03:10:12.010000"],["2024-07-25T03:10:13.010000"],["2024-07-25T03:10:14.010000"],["2024-07-25T03:10:15.010000"],["2024-07-25T03:10:16.010000"],["2024-07-25T03:10:17.010000"],["2024-07-25T03:10:18.010000"],["2024-07-25T03:10:19.010000"],["2024-07-25T03:10:20.010000"],["2024-07-25T03:10:21.010000"],["2024-07-25T03:10:22.010000"],["2024-07-25T03:10:23.010000"],["2024-07-25T03:10:24.010000"],["2024-07-25T03:10:25.010000"],["2024-07-25T03:10:26.010000"],["2024-07-25T03:10:27.010000"],["2024-07-25T03:10:28.010000"],["2024-07-25T03:10:29.010000"],["2024-07-25T03:10:30.010000"],["2024-07-25T03:10:31.010000"],["2024-07-25T03:10:32.010000"],["2024-07-25T03:10:33.010000"],["2024-07-25T03:10:34.010000"],["2024-07-25T03:10:35.010000"],["2024-07-25T03:10:36.010000"],["2024-07-25T03:10:37.010000"],["2024-07-25T03:10:38.010000"],["2024-07-25T03:10:39.010000"],["2024-07-25T03:10:40.010000"],["2024-07-25T03:10:41.010000"],["2024-07-25T03:10:42.010000"],["2024-07-25T03:10:43.010000"],["2024-07-25T03:10:44.010000"],["2024-07-25T03:10:45.010000"],["2024-07-25T03:10:46.010000"],["2024-07-25T03:10:47.010000"],["2024-07-25T03:10:48.010000"],["2024-07-25T03:10:49.010000"],["2024-07-25T03:10:50.010000"],["2024-07-25T03:10:51.010000"],["2024-07-25T03:10:52.010000"],["2024-07-25T03:10:53.010000"],["2024-07-25T03:10:54.010000"],["2024-07-25T03:10:55.010000"],["2024-07-25T03:10:56.010000"],["2024-07-25T03:10:57.010000"],["2024-07-25T03:10:58.010000"],["2024-07-25T03:10:59.010000"],["2024-07-25T03:11:00.010000"],["2024-07-25T03:11:01.010000"],["2024-07-25T03:11:02.010000"],["2024-07-25T03:11:03.010000"],["2024-07-25T03:11:04.010000"],["2024-07-25T03:11:05.010000"],["2024-07-25T03:11:06.010000"],["2024-07-25T03:11:07.010000"],["2024-07-25T03:11:08.010000"],["2024-07-25T03:11:09.010000"],["2024-07-25T03:11:10.010000"],["2024-07-25T03:11:11.010000"],["2024-07-25T03:11:12.010000"],["2024-07-25T03:11:13.010000"],["2024-07-25T03:11:14.010000"],["2024-07-25T03:11:15.010000"],["2024-07-25T03:11:16.010000"],["2024-07-25T03:11:17.010000"],["2024-07-25T03:11:18.010000"],["2024-07-25T03:11:19.010000"],["2024-07-25T03:11:20.010000"],["2024-07-25T03:11:21.010000"],["2024-07-25T03:11:22.010000"],["2024-07-25T03:11:23.010000"],["2024-07-25T03:11:24.010000"],["2024-07-25T03:11:25.010000"],["2024-07-25T03:11:26.010000"],["2024-07-25T03:11:27.010000"],["2024-07-25T03:11:28.010000"],["2024-07-25T03:11:29.010000"],["2024-07-25T03:11:30.010000"],["2024-07-25T03:11:31.010000"],["2024-07-25T03:11:32.010000"],["2024-07-25T03:11:33.010000"],["2024-07-25T03:11:34.010000"],["2024-07-25T03:11:35.010000"],["2024-07-25T03:11:36.010000"],["2024-07-25T03:11:37.010000"],["2024-07-25T03:11:38.010000"],["2024-07-25T03:11:39.010000"],["2024-07-25T03:11:40.010000"],["2024-07-25T03:11:41.010000"],["2024-07-25T03:11:42.010000"],["2024-07-25T03:11:43.010000"],["2024-07-25T03:11:44.010000"],["2024-07-25T03:11:45.010000"],["2024-07-25T03:11:46.010000"],["2024-07-25T03:11:47.010000"],["2024-07-25T03:11:48.010000"],["2024-07-25T03:11:49.010000"],["2024-07-25T03:11:50.010000"],["2024-07-25T03:11:51.010000"],["2024-07-25T03:11:52.010000"],["2024-07-25T03:11:53.010000"],["2024-07-25T03:11:54.010000"],["2024-07-25T03:11:55.010000"],["2024-07-25T03:11:56.010000"],["2024-07-25T03:11:57.010000"],["2024-07-25T03:11:58.010000"],["2024-07-25T03:11:59.010000"],["2024-07-25T03:12:00.010000"],["2024-07-25T03:12:01.010000"],["2024-07-25T03:12:02.010000"],["2024-07-25T03:12:03.010000"],["2024-07-25T03:12:04.010000"],["2024-07-25T03:12:05.010000"],["2024-07-25T03:12:06.010000"],["2024-07-25T03:12:07.010000"],["2024-07-25T03:12:08.010000"],["2024-07-25T03:12:09.010000"],["2024-07-25T03:12:10.010000"],["2024-07-25T03:12:11.010000"],["2024-07-25T03:12:12.010000"],["2024-07-25T03:12:13.010000"],["2024-07-25T03:12:14.010000"],["2024-07-25T03:12:15.010000"],["2024-07-25T03:12:16.010000"],["2024-07-25T03:12:17.010000"],["2024-07-25T03:12:18.010000"],["2024-07-25T03:12:19.010000"],["2024-07-25T03:12:20.010000"],["2024-07-25T03:12:21.010000"],["2024-07-25T03:12:22.010000"],["2024-07-25T03:12:23.010000"],["2024-07-25T03:12:24.010000"],["2024-07-25T03:12:25.010000"],["2024-07-25T03:12:26.010000"],["2024-07-25T03:12:27.010000"],["2024-07-25T03:12:28.010000"],["2024-07-25T03:12:29.010000"],["2024-07-25T03:12:30.010000"],["2024-07-25T03:12:31.010000"],["2024-07-25T03:12:32.010000"],["2024-07-25T03:12:33.010000"],["2024-07-25T03:12:34.010000"],["2024-07-25T03:12:35.010000"],["2024-07-25T03:12:36.010000"],["2024-07-25T03:12:37.010000"],["2024-07-25T03:12:38.010000"],["2024-07-25T03:12:39.010000"],["2024-07-25T03:12:40.010000"],["2024-07-25T03:12:41.010000"],["2024-07-25T03:12:42.010000"],["2024-07-25T03:12:43.010000"],["2024-07-25T03:12:44.010000"],["2024-07-25T03:12:45.010000"],["2024-07-25T03:12:46.010000"],["2024-07-25T03:12:47.010000"],["2024-07-25T03:12:48.010000"],["2024-07-25T03:12:49.010000"],["2024-07-25T03:12:50.010000"],["2024-07-25T03:12:51.010000"],["2024-07-25T03:12:52.010000"],["2024-07-25T03:12:53.010000"],["2024-07-25T03:12:54.010000"],["2024-07-25T03:12:55.010000"],["2024-07-25T03:12:56.010000"],["2024-07-25T03:12:57.010000"],["2024-07-25T03:12:58.010000"],["2024-07-25T03:12:59.010000"],["2024-07-25T03:13:00.010000"],["2024-07-25T03:13:01.010000"],["2024-07-25T03:13:02.010000"],["2024-07-25T03:13:03.010000"],["2024-07-25T03:13:04.010000"],["2024-07-25T03:13:05.010000"],["2024-07-25T03:13:06.010000"],["2024-07-25T03:13:07.010000"],["2024-07-25T03:13:08.010000"],["2024-07-25T03:13:09.010000"],["2024-07-25T03:13:10.010000"],["2024-07-25T03:13:11.010000"],["2024-07-25T03:13:12.010000"],["2024-07-25T03:13:13.010000"],["2024-07-25T03:13:14.010000"],["2024-07-25T03:13:15.010000"],["2024-07-25T03:13:16.010000"],["2024-07-25T03:13:17.010000"],["2024-07-25T03:13:18.010000"],["2024-07-25T03:13:19.010000"],["2024-07-25T03:13:20.010000"],["2024-07-25T03:13:21.010000"],["2024-07-25T03:13:22.010000"],["2024-07-25T03:13:23.010000"],["2024-07-25T03:13:24.010000"],["2024-07-25T03:13:25.010000"],["2024-07-25T03:13:26.010000"],["2024-07-25T03:13:27.010000"],["2024-07-25T03:13:28.010000"],["2024-07-25T03:13:29.010000"],["2024-07-25T03:13:30.010000"],["2024-07-25T03:13:31.010000"],["2024-07-25T03:13:32.010000"],["2024-07-25T03:13:33.010000"],["2024-07-25T03:13:34.010000"],["2024-07-25T03:13:35.010000"],["2024-07-25T03:13:36.010000"],["2024-07-25T03:13:37.010000"],["2024-07-25T03:13:38.010000"],["2024-07-25T03:13:39.010000"],["2024-07-25T03:13:40.010000"],["2024-07-25T03:13:41.010000"],["2024-07-25T03:13:42.010000"],["2024-07-25T03:13:43.010000"],["2024-07-25T03:13:44.010000"],["2024-07-25T03:13:45.010000"],["2024-07-25T03:13:46.010000"],["2024-07-25T03:13:47.010000"],["2024-07-25T03:13:48.010000"],["2024-07-25T03:13:49.010000"],["2024-07-25T03:13:50.010000"],["2024-07-25T03:13:51.010000"],["2024-07-25T03:13:52.010000"],["2024-07-25T03:13:53.010000"],["2024-07-25T03:13:54.010000"],["2024-07-25T03:13:55.010000"],["2024-07-25T03:13:56.010000"],["2024-07-25T03:13:57.010000"],["2024-07-25T03:13:58.010000"],["2024-07-25T03:13:59.010000"],["2024-07-25T03:14:00.010000"],["2024-07-25T03:14:01.010000"],["2024-07-25T03:14:02.010000"],["2024-07-25T03:14:03.010000"],["2024-07-25T03:14:04.010000"],["2024-07-25T03:14:05.010000"],["2024-07-25T03:14:06.010000"],["2024-07-25T03:14:07.010000"],["2024-07-25T03:14:08.010000"],["2024-07-25T03:14:09.010000"],["2024-07-25T03:14:10.010000"],["2024-07-25T03:14:11.010000"],["2024-07-25T03:14:12.010000"],["2024-07-25T03:14:13.010000"],["2024-07-25T03:14:14.010000"],["2024-07-25T03:14:15.010000"],["2024-07-25T03:14:16.010000"],["2024-07-25T03:14:17.010000"],["2024-07-25T03:14:18.010000"],["2024-07-25T03:14:19.010000"],["2024-07-25T03:14:20.010000"],["2024-07-25T03:14:21.010000"],["2024-07-25T03:14:22.010000"],["2024-07-25T03:14:23.010000"],["2024-07-25T03:14:24.010000"],["2024-07-25T03:14:25.010000"],["2024-07-25T03:14:26.010000"],["2024-07-25T03:14:27.010000"],["2024-07-25T03:14:28.010000"],["2024-07-25T03:14:29.010000"],["2024-07-25T03:14:30.010000"],["2024-07-25T03:14:31.010000"],["2024-07-25T03:14:32.010000"],["2024-07-25T03:14:33.010000"],["2024-07-25T03:14:34.010000"],["2024-07-25T03:14:35.010000"],["2024-07-25T03:14:36.010000"],["2024-07-25T03:14:37.010000"],["2024-07-25T03:14:38.010000"],["2024-07-25T03:14:39.010000"],["2024-07-25T03:14:40.010000"],["2024-07-25T03:14:41.010000"],["2024-07-25T03:14:42.010000"],["2024-07-25T03:14:43.010000"],["2024-07-25T03:14:44.010000"],["2024-07-25T03:14:45.010000"],["2024-07-25T03:14:46.010000"],["2024-07-25T03:14:47.010000"],["2024-07-25T03:14:48.010000"],["2024-07-25T03:14:49.010000"],["2024-07-25T03:14:50.010000"],["2024-07-25T03:14:51.010000"],["2024-07-25T03:14:52.010000"],["2024-07-25T03:14:53.010000"],["2024-07-25T03:14:54.010000"],["2024-07-25T03:14:55.010000"],["2024-07-25T03:14:56.010000"],["2024-07-25T03:14:57.010000"],["2024-07-25T03:14:58.010000"],["2024-07-25T03:14:59.010000"],["2024-07-25T03:15:00.010000"],["2024-07-25T03:15:01.010000"],["2024-07-25T03:15:02.010000"],["2024-07-25T03:15:03.010000"],["2024-07-25T03:15:04.010000"],["2024-07-25T03:15:05.010000"],["2024-07-25T03:15:06.010000"],["2024-07-25T03:15:07.010000"],["2024-07-25T03:15:08.010000"],["2024-07-25T03:15:09.010000"],["2024-07-25T03:15:10.010000"],["2024-07-25T03:15:11.010000"],["2024-07-25T03:15:12.010000"],["2024-07-25T03:15:13.010000"],["2024-07-25T03:15:14.010000"],["2024-07-25T03:15:15.010000"],["2024-07-25T03:15:16.010000"],["2024-07-25T03:15:17.010000"],["2024-07-25T03:15:18.010000"],["2024-07-25T03:15:19.010000"],["2024-07-25T03:15:20.010000"],["2024-07-25T03:15:21.010000"],["2024-07-25T03:15:22.010000"],["2024-07-25T03:15:23.010000"],["2024-07-25T03:15:24.010000"],["2024-07-25T03:15:25.010000"],["2024-07-25T03:15:26.010000"],["2024-07-25T03:15:27.010000"],["2024-07-25T03:15:28.010000"],["2024-07-25T03:15:29.010000"],["2024-07-25T03:15:30.010000"],["2024-07-25T03:15:31.010000"],["2024-07-25T03:15:32.010000"],["2024-07-25T03:15:33.010000"],["2024-07-25T03:15:34.010000"],["2024-07-25T03:15:35.010000"],["2024-07-25T03:15:36.010000"],["2024-07-25T03:15:37.010000"],["2024-07-25T03:15:38.010000"],["2024-07-25T03:15:39.010000"],["2024-07-25T03:15:40.010000"],["2024-07-25T03:15:41.010000"],["2024-07-25T03:15:42.010000"],["2024-07-25T03:15:43.010000"],["2024-07-25T03:15:44.010000"],["2024-07-25T03:15:45.010000"],["2024-07-25T03:15:46.010000"],["2024-07-25T03:15:47.010000"],["2024-07-25T03:15:48.010000"],["2024-07-25T03:15:49.010000"],["2024-07-25T03:15:50.010000"],["2024-07-25T03:15:51.010000"],["2024-07-25T03:15:52.010000"],["2024-07-25T03:15:53.010000"],["2024-07-25T03:15:54.010000"],["2024-07-25T03:15:55.010000"],["2024-07-25T03:15:56.010000"],["2024-07-25T03:15:57.010000"],["2024-07-25T03:15:58.010000"],["2024-07-25T03:15:59.010000"],["2024-07-25T03:16:00.010000"],["2024-07-25T03:16:01.010000"],["2024-07-25T03:16:02.010000"],["2024-07-25T03:16:03.010000"],["2024-07-25T03:16:04.010000"],["2024-07-25T03:16:05.010000"],["2024-07-25T03:16:06.010000"],["2024-07-25T03:16:07.010000"],["2024-07-25T03:16:08.010000"],["2024-07-25T03:16:09.010000"],["2024-07-25T03:16:10.010000"],["2024-07-25T03:16:11.010000"],["2024-07-25T03:16:12.010000"],["2024-07-25T03:16:13.010000"],["2024-07-25T03:16:14.010000"],["2024-07-25T03:16:15.010000"],["2024-07-25T03:16:16.010000"],["2024-07-25T03:16:17.010000"],["2024-07-25T03:16:18.010000"],["2024-07-25T03:16:19.010000"],["2024-07-25T03:16:20.010000"],["2024-07-25T03:16:21.010000"],["2024-07-25T03:16:22.010000"],["2024-07-25T03:16:23.010000"],["2024-07-25T03:16:24.010000"],["2024-07-25T03:16:25.010000"],["2024-07-25T03:16:26.010000"],["2024-07-25T03:16:27.010000"],["2024-07-25T03:16:28.010000"],["2024-07-25T03:16:29.010000"],["2024-07-25T03:16:30.010000"],["2024-07-25T03:16:31.010000"],["2024-07-25T03:16:32.010000"],["2024-07-25T03:16:33.010000"],["2024-07-25T03:16:34.010000"],["2024-07-25T03:16:35.010000"],["2024-07-25T03:16:36.010000"],["2024-07-25T03:16:37.010000"],["2024-07-25T03:16:38.010000"],["2024-07-25T03:16:39.010000"],["2024-07-25T03:16:40.010000"],["2024-07-25T03:16:41.010000"],["2024-07-25T03:16:42.010000"],["2024-07-25T03:16:43.010000"],["2024-07-25T03:16:44.010000"],["2024-07-25T03:16:45.010000"],["2024-07-25T03:16:46.010000"],["2024-07-25T03:16:47.010000"],["2024-07-25T03:16:48.010000"],["2024-07-25T03:16:49.010000"],["2024-07-25T03:16:50.010000"],["2024-07-25T03:16:51.010000"],["2024-07-25T03:16:52.010000"],["2024-07-25T03:16:53.010000"],["2024-07-25T03:16:54.010000"],["2024-07-25T03:16:55.010000"],["2024-07-25T03:16:56.010000"],["2024-07-25T03:16:57.010000"],["2024-07-25T03:16:58.010000"],["2024-07-25T03:16:59.010000"],["2024-07-25T03:17:00.010000"],["2024-07-25T03:17:01.010000"],["2024-07-25T03:17:02.010000"],["2024-07-25T03:17:03.010000"],["2024-07-25T03:17:04.010000"],["2024-07-25T03:17:05.010000"],["2024-07-25T03:17:06.010000"],["2024-07-25T03:17:07.010000"],["2024-07-25T03:17:08.010000"],["2024-07-25T03:17:09.010000"],["2024-07-25T03:17:10.010000"],["2024-07-25T03:17:11.010000"],["2024-07-25T03:17:12.010000"],["2024-07-25T03:17:13.010000"],["2024-07-25T03:17:14.010000"],["2024-07-25T03:17:15.010000"],["2024-07-25T03:17:16.010000"],["2024-07-25T03:17:17.010000"],["2024-07-25T03:17:18.010000"],["2024-07-25T03:17:19.010000"],["2024-07-25T03:17:20.010000"],["2024-07-25T03:17:21.010000"],["2024-07-25T03:17:22.010000"],["2024-07-25T03:17:23.010000"],["2024-07-25T03:17:24.010000"],["2024-07-25T03:17:25.010000"],["2024-07-25T03:17:26.010000"],["2024-07-25T03:17:27.010000"],["2024-07-25T03:17:28.010000"],["2024-07-25T03:17:29.010000"],["2024-07-25T03:17:30.010000"],["2024-07-25T03:17:31.010000"],["2024-07-25T03:17:32.010000"],["2024-07-25T03:17:33.010000"],["2024-07-25T03:17:34.010000"],["2024-07-25T03:17:35.010000"],["2024-07-25T03:17:36.010000"],["2024-07-25T03:17:37.010000"],["2024-07-25T03:17:38.010000"],["2024-07-25T03:17:39.010000"],["2024-07-25T03:17:40.010000"],["2024-07-25T03:17:41.010000"],["2024-07-25T03:17:42.010000"],["2024-07-25T03:17:43.010000"],["2024-07-25T03:17:44.010000"],["2024-07-25T03:17:45.010000"],["2024-07-25T03:17:46.010000"],["2024-07-25T03:17:47.010000"],["2024-07-25T03:17:48.010000"],["2024-07-25T03:17:49.010000"],["2024-07-25T03:17:50.010000"],["2024-07-25T03:17:51.010000"],["2024-07-25T03:17:52.010000"],["2024-07-25T03:17:53.010000"],["2024-07-25T03:17:54.010000"],["2024-07-25T03:17:55.010000"],["2024-07-25T03:17:56.010000"],["2024-07-25T03:17:57.010000"],["2024-07-25T03:17:58.010000"],["2024-07-25T03:17:59.010000"],["2024-07-25T03:18:00.010000"],["2024-07-25T03:18:01.010000"],["2024-07-25T03:18:02.010000"],["2024-07-25T03:18:03.010000"],["2024-07-25T03:18:04.010000"],["2024-07-25T03:18:05.010000"],["2024-07-25T03:18:06.010000"],["2024-07-25T03:18:07.010000"],["2024-07-25T03:18:08.010000"],["2024-07-25T03:18:09.010000"],["2024-07-25T03:18:10.010000"],["2024-07-25T03:18:11.010000"],["2024-07-25T03:18:12.010000"],["2024-07-25T03:18:13.010000"],["2024-07-25T03:18:14.010000"],["2024-07-25T03:18:15.010000"],["2024-07-25T03:18:16.010000"],["2024-07-25T03:18:17.010000"],["2024-07-25T03:18:18.010000"],["2024-07-25T03:18:19.010000"],["2024-07-25T03:18:20.010000"],["2024-07-25T03:18:21.010000"],["2024-07-25T03:18:22.010000"],["2024-07-25T03:18:23.010000"],["2024-07-25T03:18:24.010000"],["2024-07-25T03:18:25.010000"],["2024-07-25T03:18:26.010000"],["2024-07-25T03:18:27.010000"],["2024-07-25T03:18:28.010000"],["2024-07-25T03:18:29.010000"],["2024-07-25T03:18:30.010000"],["2024-07-25T03:18:31.010000"],["2024-07-25T03:18:32.010000"],["2024-07-25T03:18:33.010000"],["2024-07-25T03:18:34.010000"],["2024-07-25T03:18:35.010000"],["2024-07-25T03:18:36.010000"],["2024-07-25T03:18:37.010000"],["2024-07-25T03:18:38.010000"],["2024-07-25T03:18:39.010000"],["2024-07-25T03:18:40.010000"],["2024-07-25T03:18:41.010000"],["2024-07-25T03:18:42.010000"],["2024-07-25T03:18:43.010000"],["2024-07-25T03:18:44.010000"],["2024-07-25T03:18:45.010000"],["2024-07-25T03:18:46.010000"],["2024-07-25T03:18:47.010000"],["2024-07-25T03:18:48.010000"],["2024-07-25T03:18:49.010000"],["2024-07-25T03:18:50.010000"],["2024-07-25T03:18:51.010000"],["2024-07-25T03:18:52.010000"],["2024-07-25T03:18:53.010000"],["2024-07-25T03:18:54.010000"],["2024-07-25T03:18:55.010000"],["2024-07-25T03:18:56.010000"],["2024-07-25T03:18:57.010000"],["2024-07-25T03:18:58.010000"],["2024-07-25T03:18:59.010000"],["2024-07-25T03:19:00.010000"],["2024-07-25T03:19:01.010000"],["2024-07-25T03:19:02.010000"],["2024-07-25T03:19:03.010000"],["2024-07-25T03:19:04.010000"],["2024-07-25T03:19:05.010000"],["2024-07-25T03:19:06.010000"],["2024-07-25T03:19:07.010000"],["2024-07-25T03:19:08.010000"],["2024-07-25T03:19:09.010000"],["2024-07-25T03:19:10.010000"],["2024-07-25T03:19:11.010000"],["2024-07-25T03:19:12.010000"],["2024-07-25T03:19:13.010000"],["2024-07-25T03:19:14.010000"],["2024-07-25T03:19:15.010000"],["2024-07-25T03:19:16.010000"],["2024-07-25T03:19:17.010000"],["2024-07-25T03:19:18.010000"],["2024-07-25T03:19:19.010000"],["2024-07-25T03:19:20.010000"],["2024-07-25T03:19:21.010000"],["2024-07-25T03:19:22.010000"],["2024-07-25T03:19:23.010000"],["2024-07-25T03:19:24.010000"],["2024-07-25T03:19:25.010000"],["2024-07-25T03:19:26.010000"],["2024-07-25T03:19:27.010000"],["2024-07-25T03:19:28.010000"],["2024-07-25T03:19:29.010000"],["2024-07-25T03:19:30.010000"],["2024-07-25T03:19:31.010000"],["2024-07-25T03:19:32.010000"],["2024-07-25T03:19:33.010000"],["2024-07-25T03:19:34.010000"],["2024-07-25T03:19:35.010000"],["2024-07-25T03:19:36.010000"],["2024-07-25T03:19:37.010000"],["2024-07-25T03:19:38.010000"],["2024-07-25T03:19:39.010000"],["2024-07-25T03:19:40.010000"],["2024-07-25T03:19:41.010000"],["2024-07-25T03:19:42.010000"],["2024-07-25T03:19:43.010000"],["2024-07-25T03:19:44.010000"],["2024-07-25T03:19:45.010000"],["2024-07-25T03:19:46.010000"],["2024-07-25T03:19:47.010000"],["2024-07-25T03:19:48.010000"],["2024-07-25T03:19:49.010000"],["2024-07-25T03:19:50.010000"],["2024-07-25T03:19:51.010000"],["2024-07-25T03:19:52.010000"],["2024-07-25T03:19:53.010000"],["2024-07-25T03:19:54.010000"],["2024-07-25T03:19:55.010000"],["2024-07-25T03:19:56.010000"],["2024-07-25T03:19:57.010000"],["2024-07-25T03:19:58.010000"],["2024-07-25T03:19:59.010000"],["2024-07-25T03:20:00.010000"],["2024-07-25T03:20:01.010000"],["2024-07-25T03:20:02.010000"],["2024-07-25T03:20:03.010000"],["2024-07-25T03:20:04.010000"],["2024-07-25T03:20:05.010000"],["2024-07-25T03:20:06.010000"],["2024-07-25T03:20:07.010000"],["2024-07-25T03:20:08.010000"],["2024-07-25T03:20:09.010000"],["2024-07-25T03:20:10.010000"],["2024-07-25T03:20:11.010000"],["2024-07-25T03:20:12.010000"],["2024-07-25T03:20:13.010000"],["2024-07-25T03:20:14.010000"],["2024-07-25T03:20:15.010000"],["2024-07-25T03:20:16.010000"],["2024-07-25T03:20:17.010000"],["2024-07-25T03:20:18.010000"],["2024-07-25T03:20:19.010000"],["2024-07-25T03:20:20.010000"],["2024-07-25T03:20:21.010000"],["2024-07-25T03:20:22.010000"],["2024-07-25T03:20:23.010000"],["2024-07-25T03:20:24.010000"],["2024-07-25T03:20:25.010000"],["2024-07-25T03:20:26.010000"],["2024-07-25T03:20:27.010000"],["2024-07-25T03:20:28.010000"],["2024-07-25T03:20:29.010000"],["2024-07-25T03:20:30.010000"],["2024-07-25T03:20:31.010000"],["2024-07-25T03:20:32.010000"],["2024-07-25T03:20:33.010000"],["2024-07-25T03:20:34.010000"],["2024-07-25T03:20:35.010000"],["2024-07-25T03:20:36.010000"],["2024-07-25T03:20:37.010000"],["2024-07-25T03:20:38.010000"],["2024-07-25T03:20:39.010000"],["2024-07-25T03:20:40.010000"],["2024-07-25T03:20:41.010000"],["2024-07-25T03:20:42.010000"],["2024-07-25T03:20:43.010000"],["2024-07-25T03:20:44.010000"],["2024-07-25T03:20:45.010000"],["2024-07-25T03:20:46.010000"],["2024-07-25T03:20:47.010000"],["2024-07-25T03:20:48.010000"],["2024-07-25T03:20:49.010000"],["2024-07-25T03:20:50.010000"],["2024-07-25T03:20:51.010000"],["2024-07-25T03:20:52.010000"],["2024-07-25T03:20:53.010000"],["2024-07-25T03:20:54.010000"],["2024-07-25T03:20:55.010000"],["2024-07-25T03:20:56.010000"],["2024-07-25T03:20:57.010000"],["2024-07-25T03:20:58.010000"],["2024-07-25T03:20:59.010000"],["2024-07-25T03:21:00.010000"],["2024-07-25T03:21:01.010000"],["2024-07-25T03:21:02.010000"],["2024-07-25T03:21:03.010000"],["2024-07-25T03:21:04.010000"],["2024-07-25T03:21:05.010000"],["2024-07-25T03:21:06.010000"],["2024-07-25T03:21:07.010000"],["2024-07-25T03:21:08.010000"],["2024-07-25T03:21:09.010000"],["2024-07-25T03:21:10.010000"],["2024-07-25T03:21:11.010000"],["2024-07-25T03:21:12.010000"],["2024-07-25T03:21:13.010000"],["2024-07-25T03:21:14.010000"],["2024-07-25T03:21:15.010000"],["2024-07-25T03:21:16.010000"],["2024-07-25T03:21:17.010000"],["2024-07-25T03:21:18.010000"],["2024-07-25T03:21:19.010000"],["2024-07-25T03:21:20.010000"],["2024-07-25T03:21:21.010000"],["2024-07-25T03:21:22.010000"],["2024-07-25T03:21:23.010000"],["2024-07-25T03:21:24.010000"],["2024-07-25T03:21:25.010000"],["2024-07-25T03:21:26.010000"],["2024-07-25T03:21:27.010000"],["2024-07-25T03:21:28.010000"],["2024-07-25T03:21:29.010000"],["2024-07-25T03:21:30.010000"],["2024-07-25T03:21:31.010000"],["2024-07-25T03:21:32.010000"],["2024-07-25T03:21:33.010000"],["2024-07-25T03:21:34.010000"],["2024-07-25T03:21:35.010000"],["2024-07-25T03:21:36.010000"],["2024-07-25T03:21:37.010000"],["2024-07-25T03:21:38.010000"],["2024-07-25T03:21:39.010000"],["2024-07-25T03:21:40.010000"],["2024-07-25T03:21:41.010000"],["2024-07-25T03:21:42.010000"],["2024-07-25T03:21:43.010000"],["2024-07-25T03:21:44.010000"],["2024-07-25T03:21:45.010000"],["2024-07-25T03:21:46.010000"],["2024-07-25T03:21:47.010000"],["2024-07-25T03:21:48.010000"],["2024-07-25T03:21:49.010000"],["2024-07-25T03:21:50.010000"],["2024-07-25T03:21:51.010000"],["2024-07-25T03:21:52.010000"],["2024-07-25T03:21:53.010000"],["2024-07-25T03:21:54.010000"],["2024-07-25T03:21:55.010000"],["2024-07-25T03:21:56.010000"],["2024-07-25T03:21:57.010000"],["2024-07-25T03:21:58.010000"],["2024-07-25T03:21:59.010000"],["2024-07-25T03:22:00.010000"],["2024-07-25T03:22:01.010000"],["2024-07-25T03:22:02.010000"],["2024-07-25T03:22:03.010000"],["2024-07-25T03:22:04.010000"],["2024-07-25T03:22:05.010000"],["2024-07-25T03:22:06.010000"],["2024-07-25T03:22:07.010000"],["2024-07-25T03:22:08.010000"],["2024-07-25T03:22:09.010000"],["2024-07-25T03:22:10.010000"],["2024-07-25T03:22:11.010000"],["2024-07-25T03:22:12.010000"],["2024-07-25T03:22:13.010000"],["2024-07-25T03:22:14.010000"],["2024-07-25T03:22:15.010000"],["2024-07-25T03:22:16.010000"],["2024-07-25T03:22:17.010000"],["2024-07-25T03:22:18.010000"],["2024-07-25T03:22:19.010000"],["2024-07-25T03:22:20.010000"],["2024-07-25T03:22:21.010000"],["2024-07-25T03:22:22.010000"],["2024-07-25T03:22:23.010000"],["2024-07-25T03:22:24.010000"],["2024-07-25T03:22:25.010000"],["2024-07-25T03:22:26.010000"],["2024-07-25T03:22:27.010000"],["2024-07-25T03:22:28.010000"],["2024-07-25T03:22:29.010000"],["2024-07-25T03:22:30.010000"],["2024-07-25T03:22:31.010000"],["2024-07-25T03:22:32.010000"],["2024-07-25T03:22:33.010000"],["2024-07-25T03:22:34.010000"],["2024-07-25T03:22:35.010000"],["2024-07-25T03:22:36.010000"],["2024-07-25T03:22:37.010000"],["2024-07-25T03:22:38.010000"],["2024-07-25T03:22:39.010000"],["2024-07-25T03:22:40.010000"],["2024-07-25T03:22:41.010000"],["2024-07-25T03:22:42.010000"],["2024-07-25T03:22:43.010000"],["2024-07-25T03:22:44.010000"],["2024-07-25T03:22:45.010000"],["2024-07-25T03:22:46.010000"],["2024-07-25T03:22:47.010000"],["2024-07-25T03:22:48.010000"],["2024-07-25T03:22:49.010000"],["2024-07-25T03:22:50.010000"],["2024-07-25T03:22:51.010000"],["2024-07-25T03:22:52.010000"],["2024-07-25T03:22:53.010000"],["2024-07-25T03:22:54.010000"],["2024-07-25T03:22:55.010000"],["2024-07-25T03:22:56.010000"],["2024-07-25T03:22:57.010000"],["2024-07-25T03:22:58.010000"],["2024-07-25T03:22:59.010000"],["2024-07-25T03:23:00.010000"],["2024-07-25T03:23:01.010000"],["2024-07-25T03:23:02.010000"],["2024-07-25T03:23:03.010000"],["2024-07-25T03:23:04.010000"],["2024-07-25T03:23:05.010000"],["2024-07-25T03:23:06.010000"],["2024-07-25T03:23:07.010000"],["2024-07-25T03:23:08.010000"],["2024-07-25T03:23:09.010000"],["2024-07-25T03:23:10.010000"],["2024-07-25T03:23:11.010000"],["2024-07-25T03:23:12.010000"],["2024-07-25T03:23:13.010000"],["2024-07-25T03:23:14.010000"],["2024-07-25T03:23:15.010000"],["2024-07-25T03:23:16.010000"],["2024-07-25T03:23:17.010000"],["2024-07-25T03:23:18.010000"],["2024-07-25T03:23:19.010000"],["2024-07-25T03:23:20.010000"],["2024-07-25T03:23:21.010000"],["2024-07-25T03:23:22.010000"],["2024-07-25T03:23:23.010000"],["2024-07-25T03:23:24.010000"],["2024-07-25T03:23:25.010000"],["2024-07-25T03:23:26.010000"],["2024-07-25T03:23:27.010000"],["2024-07-25T03:23:28.010000"],["2024-07-25T03:23:29.010000"],["2024-07-25T03:23:30.010000"],["2024-07-25T03:23:31.010000"],["2024-07-25T03:23:32.010000"],["2024-07-25T03:23:33.010000"],["2024-07-25T03:23:34.010000"],["2024-07-25T03:23:35.010000"],["2024-07-25T03:23:36.010000"],["2024-07-25T03:23:37.010000"],["2024-07-25T03:23:38.010000"],["2024-07-25T03:23:39.010000"],["2024-07-25T03:23:40.010000"],["2024-07-25T03:23:41.010000"],["2024-07-25T03:23:42.010000"],["2024-07-25T03:23:43.010000"],["2024-07-25T03:23:44.010000"],["2024-07-25T03:23:45.010000"],["2024-07-25T03:23:46.010000"],["2024-07-25T03:23:47.010000"],["2024-07-25T03:23:48.010000"],["2024-07-25T03:23:49.010000"],["2024-07-25T03:23:50.010000"],["2024-07-25T03:23:51.010000"],["2024-07-25T03:23:52.010000"],["2024-07-25T03:23:53.010000"],["2024-07-25T03:23:54.010000"],["2024-07-25T03:23:55.010000"],["2024-07-25T03:23:56.010000"],["2024-07-25T03:23:57.010000"],["2024-07-25T03:23:58.010000"],["2024-07-25T03:23:59.010000"],["2024-07-25T03:24:00.010000"],["2024-07-25T03:24:01.010000"],["2024-07-25T03:24:02.010000"],["2024-07-25T03:24:03.010000"],["2024-07-25T03:24:04.010000"],["2024-07-25T03:24:05.010000"],["2024-07-25T03:24:06.010000"],["2024-07-25T03:24:07.010000"],["2024-07-25T03:24:08.010000"],["2024-07-25T03:24:09.010000"],["2024-07-25T03:24:10.010000"],["2024-07-25T03:24:11.010000"],["2024-07-25T03:24:12.010000"],["2024-07-25T03:24:13.010000"],["2024-07-25T03:24:14.010000"],["2024-07-25T03:24:15.010000"],["2024-07-25T03:24:16.010000"],["2024-07-25T03:24:17.010000"],["2024-07-25T03:24:18.010000"],["2024-07-25T03:24:19.010000"],["2024-07-25T03:24:20.010000"],["2024-07-25T03:24:21.010000"],["2024-07-25T03:24:22.010000"],["2024-07-25T03:24:23.010000"],["2024-07-25T03:24:24.010000"],["2024-07-25T03:24:25.010000"],["2024-07-25T03:24:26.010000"],["2024-07-25T03:24:27.010000"],["2024-07-25T03:24:28.010000"],["2024-07-25T03:24:29.010000"],["2024-07-25T03:24:30.010000"],["2024-07-25T03:24:31.010000"],["2024-07-25T03:24:32.010000"],["2024-07-25T03:24:33.010000"],["2024-07-25T03:24:34.010000"],["2024-07-25T03:24:35.010000"],["2024-07-25T03:24:36.010000"],["2024-07-25T03:24:37.010000"],["2024-07-25T03:24:38.010000"],["2024-07-25T03:24:39.010000"],["2024-07-25T03:24:40.010000"],["2024-07-25T03:24:41.010000"],["2024-07-25T03:24:42.010000"],["2024-07-25T03:24:43.010000"],["2024-07-25T03:24:44.010000"],["2024-07-25T03:24:45.010000"],["2024-07-25T03:24:46.010000"],["2024-07-25T03:24:47.010000"],["2024-07-25T03:24:48.010000"],["2024-07-25T03:24:49.010000"],["2024-07-25T03:24:50.010000"],["2024-07-25T03:24:51.010000"],["2024-07-25T03:24:52.010000"],["2024-07-25T03:24:53.010000"],["2024-07-25T03:24:54.010000"],["2024-07-25T03:24:55.010000"],["2024-07-25T03:24:56.010000"],["2024-07-25T03:24:57.010000"],["2024-07-25T03:24:58.010000"],["2024-07-25T03:24:59.010000"],["2024-07-25T03:25:00.010000"],["2024-07-25T03:25:01.010000"],["2024-07-25T03:25:02.010000"],["2024-07-25T03:25:03.010000"],["2024-07-25T03:25:04.010000"],["2024-07-25T03:25:05.010000"],["2024-07-25T03:25:06.010000"],["2024-07-25T03:25:07.010000"],["2024-07-25T03:25:08.010000"],["2024-07-25T03:25:09.010000"],["2024-07-25T03:25:10.010000"],["2024-07-25T03:25:11.010000"],["2024-07-25T03:25:12.010000"],["2024-07-25T03:25:13.010000"],["2024-07-25T03:25:14.010000"],["2024-07-25T03:25:15.010000"],["2024-07-25T03:25:16.010000"],["2024-07-25T03:25:17.010000"],["2024-07-25T03:25:18.010000"],["2024-07-25T03:25:19.010000"],["2024-07-25T03:25:20.010000"],["2024-07-25T03:25:21.010000"],["2024-07-25T03:25:22.010000"],["2024-07-25T03:25:23.010000"],["2024-07-25T03:25:24.010000"],["2024-07-25T03:25:25.010000"],["2024-07-25T03:25:26.010000"],["2024-07-25T03:25:27.010000"],["2024-07-25T03:25:28.010000"],["2024-07-25T03:25:29.010000"],["2024-07-25T03:25:30.010000"],["2024-07-25T03:25:31.010000"],["2024-07-25T03:25:32.010000"],["2024-07-25T03:25:33.010000"],["2024-07-25T03:25:34.010000"],["2024-07-25T03:25:35.010000"],["2024-07-25T03:25:36.010000"],["2024-07-25T03:25:37.010000"],["2024-07-25T03:25:38.010000"],["2024-07-25T03:25:39.010000"],["2024-07-25T03:25:40.010000"],["2024-07-25T03:25:41.010000"],["2024-07-25T03:25:42.010000"],["2024-07-25T03:25:43.010000"],["2024-07-25T03:25:44.010000"],["2024-07-25T03:25:45.010000"],["2024-07-25T03:25:46.010000"],["2024-07-25T03:25:47.010000"],["2024-07-25T03:25:48.010000"],["2024-07-25T03:25:49.010000"],["2024-07-25T03:25:50.010000"],["2024-07-25T03:25:51.010000"],["2024-07-25T03:25:52.010000"],["2024-07-25T03:25:53.010000"],["2024-07-25T03:25:54.010000"],["2024-07-25T03:25:55.010000"],["2024-07-25T03:25:56.010000"],["2024-07-25T03:25:57.010000"],["2024-07-25T03:25:58.010000"],["2024-07-25T03:25:59.010000"],["2024-07-25T03:26:00.010000"],["2024-07-25T03:26:01.010000"],["2024-07-25T03:26:02.010000"],["2024-07-25T03:26:03.010000"],["2024-07-25T03:26:04.010000"],["2024-07-25T03:26:05.010000"],["2024-07-25T03:26:06.010000"],["2024-07-25T03:26:07.010000"],["2024-07-25T03:26:08.010000"],["2024-07-25T03:26:09.010000"],["2024-07-25T03:26:10.010000"],["2024-07-25T03:26:11.010000"],["2024-07-25T03:26:12.010000"],["2024-07-25T03:26:13.010000"],["2024-07-25T03:26:14.010000"],["2024-07-25T03:26:15.010000"],["2024-07-25T03:26:16.010000"],["2024-07-25T03:26:17.010000"],["2024-07-25T03:26:18.010000"],["2024-07-25T03:26:19.010000"],["2024-07-25T03:26:20.010000"],["2024-07-25T03:26:21.010000"],["2024-07-25T03:26:22.010000"],["2024-07-25T03:26:23.010000"],["2024-07-25T03:26:24.010000"],["2024-07-25T03:26:25.010000"],["2024-07-25T03:26:26.010000"],["2024-07-25T03:26:27.010000"],["2024-07-25T03:26:28.010000"],["2024-07-25T03:26:29.010000"],["2024-07-25T03:26:30.010000"],["2024-07-25T03:26:31.010000"],["2024-07-25T03:26:32.010000"],["2024-07-25T03:26:33.010000"],["2024-07-25T03:26:34.010000"],["2024-07-25T03:26:35.010000"],["2024-07-25T03:26:36.010000"],["2024-07-25T03:26:37.010000"],["2024-07-25T03:26:38.010000"],["2024-07-25T03:26:39.010000"],["2024-07-25T03:26:40.010000"],["2024-07-25T03:26:41.010000"],["2024-07-25T03:26:42.010000"],["2024-07-25T03:26:43.010000"],["2024-07-25T03:26:44.010000"],["2024-07-25T03:26:45.010000"],["2024-07-25T03:26:46.010000"],["2024-07-25T03:26:47.010000"],["2024-07-25T03:26:48.010000"],["2024-07-25T03:26:49.010000"],["2024-07-25T03:26:50.010000"],["2024-07-25T03:26:51.010000"],["2024-07-25T03:26:52.010000"],["2024-07-25T03:26:53.010000"],["2024-07-25T03:26:54.010000"],["2024-07-25T03:26:55.010000"],["2024-07-25T03:26:56.010000"],["2024-07-25T03:26:57.010000"],["2024-07-25T03:26:58.010000"],["2024-07-25T03:26:59.010000"],["2024-07-25T03:27:00.010000"],["2024-07-25T03:27:01.010000"],["2024-07-25T03:27:02.010000"],["2024-07-25T03:27:03.010000"],["2024-07-25T03:27:04.010000"],["2024-07-25T03:27:05.010000"],["2024-07-25T03:27:06.010000"],["2024-07-25T03:27:07.010000"],["2024-07-25T03:27:08.010000"],["2024-07-25T03:27:09.010000"],["2024-07-25T03:27:10.010000"],["2024-07-25T03:27:11.010000"],["2024-07-25T03:27:12.010000"],["2024-07-25T03:27:13.010000"],["2024-07-25T03:27:14.010000"],["2024-07-25T03:27:15.010000"],["2024-07-25T03:27:16.010000"],["2024-07-25T03:27:17.010000"],["2024-07-25T03:27:18.010000"],["2024-07-25T03:27:19.010000"],["2024-07-25T03:27:20.010000"],["2024-07-25T03:27:21.010000"],["2024-07-25T03:27:22.010000"],["2024-07-25T03:27:23.010000"],["2024-07-25T03:27:24.010000"],["2024-07-25T03:27:25.010000"],["2024-07-25T03:27:26.010000"],["2024-07-25T03:27:27.010000"],["2024-07-25T03:27:28.010000"],["2024-07-25T03:27:29.010000"],["2024-07-25T03:27:30.010000"],["2024-07-25T03:27:31.010000"],["2024-07-25T03:27:32.010000"],["2024-07-25T03:27:33.010000"],["2024-07-25T03:27:34.010000"],["2024-07-25T03:27:35.010000"],["2024-07-25T03:27:36.010000"],["2024-07-25T03:27:37.010000"],["2024-07-25T03:27:38.010000"],["2024-07-25T03:27:39.010000"],["2024-07-25T03:27:40.010000"],["2024-07-25T03:27:41.010000"],["2024-07-25T03:27:42.010000"],["2024-07-25T03:27:43.010000"],["2024-07-25T03:27:44.010000"],["2024-07-25T03:27:45.010000"],["2024-07-25T03:27:46.010000"],["2024-07-25T03:27:47.010000"],["2024-07-25T03:27:48.010000"],["2024-07-25T03:27:49.010000"],["2024-07-25T03:27:50.010000"],["2024-07-25T03:27:51.010000"],["2024-07-25T03:27:52.010000"],["2024-07-25T03:27:53.010000"],["2024-07-25T03:27:54.010000"],["2024-07-25T03:27:55.010000"],["2024-07-25T03:27:56.010000"],["2024-07-25T03:27:57.010000"],["2024-07-25T03:27:58.010000"],["2024-07-25T03:27:59.010000"],["2024-07-25T03:28:00.010000"],["2024-07-25T03:28:01.010000"],["2024-07-25T03:28:02.010000"],["2024-07-25T03:28:03.010000"],["2024-07-25T03:28:04.010000"],["2024-07-25T03:28:05.010000"],["2024-07-25T03:28:06.010000"],["2024-07-25T03:28:07.010000"],["2024-07-25T03:28:08.010000"],["2024-07-25T03:28:09.010000"],["2024-07-25T03:28:10.010000"],["2024-07-25T03:28:11.010000"],["2024-07-25T03:28:12.010000"],["2024-07-25T03:28:13.010000"],["2024-07-25T03:28:14.010000"],["2024-07-25T03:28:15.010000"],["2024-07-25T03:28:16.010000"],["2024-07-25T03:28:17.010000"],["2024-07-25T03:28:18.010000"],["2024-07-25T03:28:19.010000"],["2024-07-25T03:28:20.010000"],["2024-07-25T03:28:21.010000"],["2024-07-25T03:28:22.010000"],["2024-07-25T03:28:23.010000"],["2024-07-25T03:28:24.010000"],["2024-07-25T03:28:25.010000"],["2024-07-25T03:28:26.010000"],["2024-07-25T03:28:27.010000"],["2024-07-25T03:28:28.010000"],["2024-07-25T03:28:29.010000"],["2024-07-25T03:28:30.010000"],["2024-07-25T03:28:31.010000"],["2024-07-25T03:28:32.010000"],["2024-07-25T03:28:33.010000"],["2024-07-25T03:28:34.010000"],["2024-07-25T03:28:35.010000"],["2024-07-25T03:28:36.010000"],["2024-07-25T03:28:37.010000"],["2024-07-25T03:28:38.010000"],["2024-07-25T03:28:39.010000"],["2024-07-25T03:28:40.010000"],["2024-07-25T03:28:41.010000"],["2024-07-25T03:28:42.010000"],["2024-07-25T03:28:43.010000"],["2024-07-25T03:28:44.010000"],["2024-07-25T03:28:45.010000"],["2024-07-25T03:28:46.010000"],["2024-07-25T03:28:47.010000"],["2024-07-25T03:28:48.010000"],["2024-07-25T03:28:49.010000"],["2024-07-25T03:28:50.010000"],["2024-07-25T03:28:51.010000"],["2024-07-25T03:28:52.010000"],["2024-07-25T03:28:53.010000"],["2024-07-25T03:28:54.010000"],["2024-07-25T03:28:55.010000"],["2024-07-25T03:28:56.010000"],["2024-07-25T03:28:57.010000"],["2024-07-25T03:28:58.010000"],["2024-07-25T03:28:59.010000"],["2024-07-25T03:29:00.010000"],["2024-07-25T03:29:01.010000"],["2024-07-25T03:29:02.010000"],["2024-07-25T03:29:03.010000"],["2024-07-25T03:29:04.010000"],["2024-07-25T03:29:05.010000"],["2024-07-25T03:29:06.010000"],["2024-07-25T03:29:07.010000"],["2024-07-25T03:29:08.010000"],["2024-07-25T03:29:09.010000"],["2024-07-25T03:29:10.010000"],["2024-07-25T03:29:11.010000"],["2024-07-25T03:29:12.010000"],["2024-07-25T03:29:13.010000"],["2024-07-25T03:29:14.010000"],["2024-07-25T03:29:15.010000"],["2024-07-25T03:29:16.010000"],["2024-07-25T03:29:17.010000"],["2024-07-25T03:29:18.010000"],["2024-07-25T03:29:19.010000"],["2024-07-25T03:29:20.010000"],["2024-07-25T03:29:21.010000"],["2024-07-25T03:29:22.010000"],["2024-07-25T03:29:23.010000"],["2024-07-25T03:29:24.010000"],["2024-07-25T03:29:25.010000"],["2024-07-25T03:29:26.010000"],["2024-07-25T03:29:27.010000"],["2024-07-25T03:29:28.010000"],["2024-07-25T03:29:29.010000"],["2024-07-25T03:29:30.010000"],["2024-07-25T03:29:31.010000"],["2024-07-25T03:29:32.010000"],["2024-07-25T03:29:33.010000"],["2024-07-25T03:29:34.010000"],["2024-07-25T03:29:35.010000"],["2024-07-25T03:29:36.010000"],["2024-07-25T03:29:37.010000"],["2024-07-25T03:29:38.010000"],["2024-07-25T03:29:39.010000"],["2024-07-25T03:29:40.010000"],["2024-07-25T03:29:41.010000"],["2024-07-25T03:29:42.010000"],["2024-07-25T03:29:43.010000"],["2024-07-25T03:29:44.010000"],["2024-07-25T03:29:45.010000"],["2024-07-25T03:29:46.010000"],["2024-07-25T03:29:47.010000"],["2024-07-25T03:29:48.010000"],["2024-07-25T03:29:49.010000"],["2024-07-25T03:29:50.010000"],["2024-07-25T03:29:51.010000"],["2024-07-25T03:29:52.010000"],["2024-07-25T03:29:53.010000"],["2024-07-25T03:29:54.010000"],["2024-07-25T03:29:55.010000"],["2024-07-25T03:29:56.010000"],["2024-07-25T03:29:57.010000"],["2024-07-25T03:29:58.010000"],["2024-07-25T03:29:59.010000"],["2024-07-25T03:30:00.010000"],["2024-07-25T03:30:01.010000"],["2024-07-25T03:30:02.010000"],["2024-07-25T03:30:03.010000"],["2024-07-25T03:30:04.010000"],["2024-07-25T03:30:05.010000"],["2024-07-25T03:30:06.010000"],["2024-07-25T03:30:07.010000"],["2024-07-25T03:30:08.010000"],["2024-07-25T03:30:09.010000"],["2024-07-25T03:30:10.010000"],["2024-07-25T03:30:11.010000"],["2024-07-25T03:30:12.010000"],["2024-07-25T03:30:13.010000"],["2024-07-25T03:30:14.010000"],["2024-07-25T03:30:15.010000"],["2024-07-25T03:30:16.010000"],["2024-07-25T03:30:17.010000"],["2024-07-25T03:30:18.010000"],["2024-07-25T03:30:19.010000"],["2024-07-25T03:30:20.010000"],["2024-07-25T03:30:21.010000"],["2024-07-25T03:30:22.010000"],["2024-07-25T03:30:23.010000"],["2024-07-25T03:30:24.010000"],["2024-07-25T03:30:25.010000"],["2024-07-25T03:30:26.010000"],["2024-07-25T03:30:27.010000"],["2024-07-25T03:30:28.010000"],["2024-07-25T03:30:29.010000"],["2024-07-25T03:30:30.010000"],["2024-07-25T03:30:31.010000"],["2024-07-25T03:30:32.010000"],["2024-07-25T03:30:33.010000"],["2024-07-25T03:30:34.010000"],["2024-07-25T03:30:35.010000"],["2024-07-25T03:30:36.010000"],["2024-07-25T03:30:37.010000"],["2024-07-25T03:30:38.010000"],["2024-07-25T03:30:39.010000"],["2024-07-25T03:30:40.010000"],["2024-07-25T03:30:41.010000"],["2024-07-25T03:30:42.010000"],["2024-07-25T03:30:43.010000"],["2024-07-25T03:30:44.010000"],["2024-07-25T03:30:45.010000"],["2024-07-25T03:30:46.010000"],["2024-07-25T03:30:47.010000"],["2024-07-25T03:30:48.010000"],["2024-07-25T03:30:49.010000"],["2024-07-25T03:30:50.010000"],["2024-07-25T03:30:51.010000"],["2024-07-25T03:30:52.010000"],["2024-07-25T03:30:53.010000"],["2024-07-25T03:30:54.010000"],["2024-07-25T03:30:55.010000"],["2024-07-25T03:30:56.010000"],["2024-07-25T03:30:57.010000"],["2024-07-25T03:30:58.010000"],["2024-07-25T03:30:59.010000"],["2024-07-25T03:31:00.010000"],["2024-07-25T03:31:01.010000"],["2024-07-25T03:31:02.010000"],["2024-07-25T03:31:03.010000"],["2024-07-25T03:31:04.010000"],["2024-07-25T03:31:05.010000"],["2024-07-25T03:31:06.010000"],["2024-07-25T03:31:07.010000"],["2024-07-25T03:31:08.010000"],["2024-07-25T03:31:09.010000"],["2024-07-25T03:31:10.010000"],["2024-07-25T03:31:11.010000"],["2024-07-25T03:31:12.010000"],["2024-07-25T03:31:13.010000"],["2024-07-25T03:31:14.010000"],["2024-07-25T03:31:15.010000"],["2024-07-25T03:31:16.010000"],["2024-07-25T03:31:17.010000"],["2024-07-25T03:31:18.010000"],["2024-07-25T03:31:19.010000"],["2024-07-25T03:31:20.010000"],["2024-07-25T03:31:21.010000"],["2024-07-25T03:31:22.010000"],["2024-07-25T03:31:23.010000"],["2024-07-25T03:31:24.010000"],["2024-07-25T03:31:25.010000"],["2024-07-25T03:31:26.010000"],["2024-07-25T03:31:27.010000"],["2024-07-25T03:31:28.010000"],["2024-07-25T03:31:29.010000"],["2024-07-25T03:31:30.010000"],["2024-07-25T03:31:31.010000"],["2024-07-25T03:31:32.010000"],["2024-07-25T03:31:33.010000"],["2024-07-25T03:31:34.010000"],["2024-07-25T03:31:35.010000"],["2024-07-25T03:31:36.010000"],["2024-07-25T03:31:37.010000"],["2024-07-25T03:31:38.010000"],["2024-07-25T03:31:39.010000"],["2024-07-25T03:31:40.010000"],["2024-07-25T03:31:41.010000"],["2024-07-25T03:31:42.010000"],["2024-07-25T03:31:43.010000"],["2024-07-25T03:31:44.010000"],["2024-07-25T03:31:45.010000"],["2024-07-25T03:31:46.010000"],["2024-07-25T03:31:47.010000"],["2024-07-25T03:31:48.010000"],["2024-07-25T03:31:49.010000"],["2024-07-25T03:31:50.010000"],["2024-07-25T03:31:51.010000"],["2024-07-25T03:31:52.010000"],["2024-07-25T03:31:53.010000"],["2024-07-25T03:31:54.010000"],["2024-07-25T03:31:55.010000"],["2024-07-25T03:31:56.010000"],["2024-07-25T03:31:57.010000"],["2024-07-25T03:31:58.010000"],["2024-07-25T03:31:59.010000"],["2024-07-25T03:32:00.010000"],["2024-07-25T03:32:01.010000"],["2024-07-25T03:32:02.010000"],["2024-07-25T03:32:03.010000"],["2024-07-25T03:32:04.010000"],["2024-07-25T03:32:05.010000"],["2024-07-25T03:32:06.010000"],["2024-07-25T03:32:07.010000"],["2024-07-25T03:32:08.010000"],["2024-07-25T03:32:09.010000"],["2024-07-25T03:32:10.010000"],["2024-07-25T03:32:11.010000"],["2024-07-25T03:32:12.010000"],["2024-07-25T03:32:13.010000"],["2024-07-25T03:32:14.010000"],["2024-07-25T03:32:15.010000"],["2024-07-25T03:32:16.010000"],["2024-07-25T03:32:17.010000"],["2024-07-25T03:32:18.010000"],["2024-07-25T03:32:19.010000"],["2024-07-25T03:32:20.010000"],["2024-07-25T03:32:21.010000"],["2024-07-25T03:32:22.010000"],["2024-07-25T03:32:23.010000"],["2024-07-25T03:32:24.010000"],["2024-07-25T03:32:25.010000"],["2024-07-25T03:32:26.010000"],["2024-07-25T03:32:27.010000"],["2024-07-25T03:32:28.010000"],["2024-07-25T03:32:29.010000"],["2024-07-25T03:32:30.010000"],["2024-07-25T03:32:31.010000"],["2024-07-25T03:32:32.010000"],["2024-07-25T03:32:33.010000"],["2024-07-25T03:32:34.010000"],["2024-07-25T03:32:35.010000"],["2024-07-25T03:32:36.010000"],["2024-07-25T03:32:37.010000"],["2024-07-25T03:32:38.010000"],["2024-07-25T03:32:39.010000"],["2024-07-25T03:32:40.010000"],["2024-07-25T03:32:41.010000"],["2024-07-25T03:32:42.010000"],["2024-07-25T03:32:43.010000"],["2024-07-25T03:32:44.010000"],["2024-07-25T03:32:45.010000"],["2024-07-25T03:32:46.010000"],["2024-07-25T03:32:47.010000"],["2024-07-25T03:32:48.010000"],["2024-07-25T03:32:49.010000"],["2024-07-25T03:32:50.010000"],["2024-07-25T03:32:51.010000"],["2024-07-25T03:32:52.010000"],["2024-07-25T03:32:53.010000"],["2024-07-25T03:32:54.010000"],["2024-07-25T03:32:55.010000"],["2024-07-25T03:32:56.010000"],["2024-07-25T03:32:57.010000"],["2024-07-25T03:32:58.010000"],["2024-07-25T03:32:59.010000"],["2024-07-25T03:33:00.010000"],["2024-07-25T03:33:01.010000"],["2024-07-25T03:33:02.010000"],["2024-07-25T03:33:03.010000"],["2024-07-25T03:33:04.010000"],["2024-07-25T03:33:05.010000"],["2024-07-25T03:33:06.010000"],["2024-07-25T03:33:07.010000"],["2024-07-25T03:33:08.010000"],["2024-07-25T03:33:09.010000"],["2024-07-25T03:33:10.010000"],["2024-07-25T03:33:11.010000"],["2024-07-25T03:33:12.010000"],["2024-07-25T03:33:13.010000"],["2024-07-25T03:33:14.010000"],["2024-07-25T03:33:15.010000"],["2024-07-25T03:33:16.010000"],["2024-07-25T03:33:17.010000"],["2024-07-25T03:33:18.010000"],["2024-07-25T03:33:19.010000"],["2024-07-25T03:33:20.010000"],["2024-07-25T03:33:21.010000"],["2024-07-25T03:33:22.010000"],["2024-07-25T03:33:23.010000"],["2024-07-25T03:33:24.010000"],["2024-07-25T03:33:25.010000"],["2024-07-25T03:33:26.010000"],["2024-07-25T03:33:27.010000"],["2024-07-25T03:33:28.010000"],["2024-07-25T03:33:29.010000"],["2024-07-25T03:33:30.010000"],["2024-07-25T03:33:31.010000"],["2024-07-25T03:33:32.010000"],["2024-07-25T03:33:33.010000"],["2024-07-25T03:33:34.010000"],["2024-07-25T03:33:35.010000"],["2024-07-25T03:33:36.010000"],["2024-07-25T03:33:37.010000"],["2024-07-25T03:33:38.010000"],["2024-07-25T03:33:39.010000"],["2024-07-25T03:33:40.010000"],["2024-07-25T03:33:41.010000"],["2024-07-25T03:33:42.010000"],["2024-07-25T03:33:43.010000"],["2024-07-25T03:33:44.010000"],["2024-07-25T03:33:45.010000"],["2024-07-25T03:33:46.010000"],["2024-07-25T03:33:47.010000"],["2024-07-25T03:33:48.010000"],["2024-07-25T03:33:49.010000"],["2024-07-25T03:33:50.010000"],["2024-07-25T03:33:51.010000"],["2024-07-25T03:33:52.010000"],["2024-07-25T03:33:53.010000"],["2024-07-25T03:33:54.010000"],["2024-07-25T03:33:55.010000"],["2024-07-25T03:33:56.010000"],["2024-07-25T03:33:57.010000"],["2024-07-25T03:33:58.010000"],["2024-07-25T03:33:59.010000"],["2024-07-25T03:34:00.010000"],["2024-07-25T03:34:01.010000"],["2024-07-25T03:34:02.010000"],["2024-07-25T03:34:03.010000"],["2024-07-25T03:34:04.010000"],["2024-07-25T03:34:05.010000"],["2024-07-25T03:34:06.010000"],["2024-07-25T03:34:07.010000"],["2024-07-25T03:34:08.010000"],["2024-07-25T03:34:09.010000"],["2024-07-25T03:34:10.010000"],["2024-07-25T03:34:11.010000"],["2024-07-25T03:34:12.010000"],["2024-07-25T03:34:13.010000"],["2024-07-25T03:34:14.010000"],["2024-07-25T03:34:15.010000"],["2024-07-25T03:34:16.010000"],["2024-07-25T03:34:17.010000"],["2024-07-25T03:34:18.010000"],["2024-07-25T03:34:19.010000"],["2024-07-25T03:34:20.010000"],["2024-07-25T03:34:21.010000"],["2024-07-25T03:34:22.010000"],["2024-07-25T03:34:23.010000"],["2024-07-25T03:34:24.010000"],["2024-07-25T03:34:25.010000"],["2024-07-25T03:34:26.010000"],["2024-07-25T03:34:27.010000"],["2024-07-25T03:34:28.010000"],["2024-07-25T03:34:29.010000"],["2024-07-25T03:34:30.010000"],["2024-07-25T03:34:31.010000"],["2024-07-25T03:34:32.010000"],["2024-07-25T03:34:33.010000"],["2024-07-25T03:34:34.010000"],["2024-07-25T03:34:35.010000"],["2024-07-25T03:34:36.010000"],["2024-07-25T03:34:37.010000"],["2024-07-25T03:34:38.010000"],["2024-07-25T03:34:39.010000"],["2024-07-25T03:34:40.010000"],["2024-07-25T03:34:41.010000"],["2024-07-25T03:34:42.010000"],["2024-07-25T03:34:43.010000"],["2024-07-25T03:34:44.010000"],["2024-07-25T03:34:45.010000"],["2024-07-25T03:34:46.010000"],["2024-07-25T03:34:47.010000"],["2024-07-25T03:34:48.010000"],["2024-07-25T03:34:49.010000"],["2024-07-25T03:34:50.010000"],["2024-07-25T03:34:51.010000"],["2024-07-25T03:34:52.010000"],["2024-07-25T03:34:53.010000"],["2024-07-25T03:34:54.010000"],["2024-07-25T03:34:55.010000"],["2024-07-25T03:34:56.010000"],["2024-07-25T03:34:57.010000"],["2024-07-25T03:34:58.010000"],["2024-07-25T03:34:59.010000"],["2024-07-25T03:35:00.010000"],["2024-07-25T03:35:01.010000"],["2024-07-25T03:35:02.010000"],["2024-07-25T03:35:03.010000"],["2024-07-25T03:35:04.010000"],["2024-07-25T03:35:05.010000"],["2024-07-25T03:35:06.010000"],["2024-07-25T03:35:07.010000"],["2024-07-25T03:35:08.010000"],["2024-07-25T03:35:09.010000"],["2024-07-25T03:35:10.010000"],["2024-07-25T03:35:11.010000"],["2024-07-25T03:35:12.010000"],["2024-07-25T03:35:13.010000"],["2024-07-25T03:35:14.010000"],["2024-07-25T03:35:15.010000"],["2024-07-25T03:35:16.010000"],["2024-07-25T03:35:17.010000"],["2024-07-25T03:35:18.010000"],["2024-07-25T03:35:19.010000"],["2024-07-25T03:35:20.010000"],["2024-07-25T03:35:21.010000"],["2024-07-25T03:35:22.010000"],["2024-07-25T03:35:23.010000"],["2024-07-25T03:35:24.010000"],["2024-07-25T03:35:25.010000"],["2024-07-25T03:35:26.010000"],["2024-07-25T03:35:27.010000"],["2024-07-25T03:35:28.010000"],["2024-07-25T03:35:29.010000"],["2024-07-25T03:35:30.010000"],["2024-07-25T03:35:31.010000"],["2024-07-25T03:35:32.010000"],["2024-07-25T03:35:33.010000"],["2024-07-25T03:35:34.010000"],["2024-07-25T03:35:35.010000"],["2024-07-25T03:35:36.010000"],["2024-07-25T03:35:37.010000"],["2024-07-25T03:35:38.010000"],["2024-07-25T03:35:39.010000"],["2024-07-25T03:35:40.010000"],["2024-07-25T03:35:41.010000"],["2024-07-25T03:35:42.010000"],["2024-07-25T03:35:43.010000"],["2024-07-25T03:35:44.010000"],["2024-07-25T03:35:45.010000"],["2024-07-25T03:35:46.010000"],["2024-07-25T03:35:47.010000"],["2024-07-25T03:35:48.010000"],["2024-07-25T03:35:49.010000"],["2024-07-25T03:35:50.010000"],["2024-07-25T03:35:51.010000"],["2024-07-25T03:35:52.010000"],["2024-07-25T03:35:53.010000"],["2024-07-25T03:35:54.010000"],["2024-07-25T03:35:55.010000"],["2024-07-25T03:35:56.010000"],["2024-07-25T03:35:57.010000"],["2024-07-25T03:35:58.010000"],["2024-07-25T03:35:59.010000"],["2024-07-25T03:36:00.010000"],["2024-07-25T03:36:01.010000"],["2024-07-25T03:36:02.010000"],["2024-07-25T03:36:03.010000"],["2024-07-25T03:36:04.010000"],["2024-07-25T03:36:05.010000"],["2024-07-25T03:36:06.010000"],["2024-07-25T03:36:07.010000"],["2024-07-25T03:36:08.010000"],["2024-07-25T03:36:09.010000"],["2024-07-25T03:36:10.010000"],["2024-07-25T03:36:11.010000"],["2024-07-25T03:36:12.010000"],["2024-07-25T03:36:13.010000"],["2024-07-25T03:36:14.010000"],["2024-07-25T03:36:15.010000"],["2024-07-25T03:36:16.010000"],["2024-07-25T03:36:17.010000"],["2024-07-25T03:36:18.010000"],["2024-07-25T03:36:19.010000"],["2024-07-25T03:36:20.010000"],["2024-07-25T03:36:21.010000"],["2024-07-25T03:36:22.010000"],["2024-07-25T03:36:23.010000"],["2024-07-25T03:36:24.010000"],["2024-07-25T03:36:25.010000"],["2024-07-25T03:36:26.010000"],["2024-07-25T03:36:27.010000"],["2024-07-25T03:36:28.010000"],["2024-07-25T03:36:29.010000"],["2024-07-25T03:36:30.010000"],["2024-07-25T03:36:31.010000"],["2024-07-25T03:36:32.010000"],["2024-07-25T03:36:33.010000"],["2024-07-25T03:36:34.010000"],["2024-07-25T03:36:35.010000"],["2024-07-25T03:36:36.010000"],["2024-07-25T03:36:37.010000"],["2024-07-25T03:36:38.010000"],["2024-07-25T03:36:39.010000"],["2024-07-25T03:36:40.010000"],["2024-07-25T03:36:41.010000"],["2024-07-25T03:36:42.010000"],["2024-07-25T03:36:43.010000"],["2024-07-25T03:36:44.010000"],["2024-07-25T03:36:45.010000"],["2024-07-25T03:36:46.010000"],["2024-07-25T03:36:47.010000"],["2024-07-25T03:36:48.010000"],["2024-07-25T03:36:49.010000"],["2024-07-25T03:36:50.010000"],["2024-07-25T03:36:51.010000"],["2024-07-25T03:36:52.010000"],["2024-07-25T03:36:53.010000"],["2024-07-25T03:36:54.010000"],["2024-07-25T03:36:55.010000"],["2024-07-25T03:36:56.010000"],["2024-07-25T03:36:57.010000"],["2024-07-25T03:36:58.010000"],["2024-07-25T03:36:59.010000"],["2024-07-25T03:37:00.010000"],["2024-07-25T03:37:01.010000"],["2024-07-25T03:37:02.010000"],["2024-07-25T03:37:03.010000"],["2024-07-25T03:37:04.010000"],["2024-07-25T03:37:05.010000"],["2024-07-25T03:37:06.010000"],["2024-07-25T03:37:07.010000"],["2024-07-25T03:37:08.010000"],["2024-07-25T03:37:09.010000"],["2024-07-25T03:37:10.010000"],["2024-07-25T03:37:11.010000"],["2024-07-25T03:37:12.010000"],["2024-07-25T03:37:13.010000"],["2024-07-25T03:37:14.010000"],["2024-07-25T03:37:15.010000"],["2024-07-25T03:37:16.010000"],["2024-07-25T03:37:17.010000"],["2024-07-25T03:37:18.010000"],["2024-07-25T03:37:19.010000"],["2024-07-25T03:37:20.010000"],["2024-07-25T03:37:21.010000"],["2024-07-25T03:37:22.010000"],["2024-07-25T03:37:23.010000"],["2024-07-25T03:37:24.010000"],["2024-07-25T03:37:25.010000"],["2024-07-25T03:37:26.010000"],["2024-07-25T03:37:27.010000"],["2024-07-25T03:37:28.010000"],["2024-07-25T03:37:29.010000"],["2024-07-25T03:37:30.010000"],["2024-07-25T03:37:31.010000"],["2024-07-25T03:37:32.010000"],["2024-07-25T03:37:33.010000"],["2024-07-25T03:37:34.010000"],["2024-07-25T03:37:35.010000"],["2024-07-25T03:37:36.010000"],["2024-07-25T03:37:37.010000"],["2024-07-25T03:37:38.010000"],["2024-07-25T03:37:39.010000"],["2024-07-25T03:37:40.010000"],["2024-07-25T03:37:41.010000"],["2024-07-25T03:37:42.010000"],["2024-07-25T03:37:43.010000"],["2024-07-25T03:37:44.010000"],["2024-07-25T03:37:45.010000"],["2024-07-25T03:37:46.010000"],["2024-07-25T03:37:47.010000"],["2024-07-25T03:37:48.010000"],["2024-07-25T03:37:49.010000"],["2024-07-25T03:37:50.010000"],["2024-07-25T03:37:51.010000"],["2024-07-25T03:37:52.010000"],["2024-07-25T03:37:53.010000"],["2024-07-25T03:37:54.010000"],["2024-07-25T03:37:55.010000"],["2024-07-25T03:37:56.010000"],["2024-07-25T03:37:57.010000"],["2024-07-25T03:37:58.010000"],["2024-07-25T03:37:59.010000"],["2024-07-25T03:38:00.010000"],["2024-07-25T03:38:01.010000"],["2024-07-25T03:38:02.010000"],["2024-07-25T03:38:03.010000"],["2024-07-25T03:38:04.010000"],["2024-07-25T03:38:05.010000"],["2024-07-25T03:38:06.010000"],["2024-07-25T03:38:07.010000"],["2024-07-25T03:38:08.010000"],["2024-07-25T03:38:09.010000"],["2024-07-25T03:38:10.010000"],["2024-07-25T03:38:11.010000"],["2024-07-25T03:38:12.010000"],["2024-07-25T03:38:13.010000"],["2024-07-25T03:38:14.010000"],["2024-07-25T03:38:15.010000"],["2024-07-25T03:38:16.010000"],["2024-07-25T03:38:17.010000"],["2024-07-25T03:38:18.010000"],["2024-07-25T03:38:19.010000"],["2024-07-25T03:38:20.010000"],["2024-07-25T03:38:21.010000"],["2024-07-25T03:38:22.010000"],["2024-07-25T03:38:23.010000"],["2024-07-25T03:38:24.010000"],["2024-07-25T03:38:25.010000"],["2024-07-25T03:38:26.010000"],["2024-07-25T03:38:27.010000"],["2024-07-25T03:38:28.010000"],["2024-07-25T03:38:29.010000"],["2024-07-25T03:38:30.010000"],["2024-07-25T03:38:31.010000"],["2024-07-25T03:38:32.010000"],["2024-07-25T03:38:33.010000"],["2024-07-25T03:38:34.010000"],["2024-07-25T03:38:35.010000"],["2024-07-25T03:38:36.010000"],["2024-07-25T03:38:37.010000"],["2024-07-25T03:38:38.010000"],["2024-07-25T03:38:39.010000"],["2024-07-25T03:38:40.010000"],["2024-07-25T03:38:41.010000"],["2024-07-25T03:38:42.010000"],["2024-07-25T03:38:43.010000"],["2024-07-25T03:38:44.010000"],["2024-07-25T03:38:45.010000"],["2024-07-25T03:38:46.010000"],["2024-07-25T03:38:47.010000"],["2024-07-25T03:38:48.010000"],["2024-07-25T03:38:49.010000"],["2024-07-25T03:38:50.010000"],["2024-07-25T03:38:51.010000"],["2024-07-25T03:38:52.010000"],["2024-07-25T03:38:53.010000"],["2024-07-25T03:38:54.010000"],["2024-07-25T03:38:55.010000"],["2024-07-25T03:38:56.010000"],["2024-07-25T03:38:57.010000"],["2024-07-25T03:38:58.010000"],["2024-07-25T03:38:59.010000"],["2024-07-25T03:39:00.010000"],["2024-07-25T03:39:01.010000"],["2024-07-25T03:39:02.010000"],["2024-07-25T03:39:03.010000"],["2024-07-25T03:39:04.010000"],["2024-07-25T03:39:05.010000"],["2024-07-25T03:39:06.010000"],["2024-07-25T03:39:07.010000"],["2024-07-25T03:39:08.010000"],["2024-07-25T03:39:09.010000"],["2024-07-25T03:39:10.010000"],["2024-07-25T03:39:11.010000"],["2024-07-25T03:39:12.010000"],["2024-07-25T03:39:13.010000"],["2024-07-25T03:39:14.010000"],["2024-07-25T03:39:15.010000"],["2024-07-25T03:39:16.010000"],["2024-07-25T03:39:17.010000"],["2024-07-25T03:39:18.010000"],["2024-07-25T03:39:19.010000"],["2024-07-25T03:39:20.010000"],["2024-07-25T03:39:21.010000"],["2024-07-25T03:39:22.010000"],["2024-07-25T03:39:23.010000"],["2024-07-25T03:39:24.010000"],["2024-07-25T03:39:25.010000"],["2024-07-25T03:39:26.010000"],["2024-07-25T03:39:27.010000"],["2024-07-25T03:39:28.010000"],["2024-07-25T03:39:29.010000"],["2024-07-25T03:39:30.010000"],["2024-07-25T03:39:31.010000"],["2024-07-25T03:39:32.010000"],["2024-07-25T03:39:33.010000"],["2024-07-25T03:39:34.010000"],["2024-07-25T03:39:35.010000"],["2024-07-25T03:39:36.010000"],["2024-07-25T03:39:37.010000"],["2024-07-25T03:39:38.010000"],["2024-07-25T03:39:39.010000"],["2024-07-25T03:39:40.010000"],["2024-07-25T03:39:41.010000"],["2024-07-25T03:39:42.010000"],["2024-07-25T03:39:43.010000"],["2024-07-25T03:39:44.010000"],["2024-07-25T03:39:45.010000"],["2024-07-25T03:39:46.010000"],["2024-07-25T03:39:47.010000"],["2024-07-25T03:39:48.010000"],["2024-07-25T03:39:49.010000"],["2024-07-25T03:39:50.010000"],["2024-07-25T03:39:51.010000"],["2024-07-25T03:39:52.010000"],["2024-07-25T03:39:53.010000"],["2024-07-25T03:39:54.010000"],["2024-07-25T03:39:55.010000"],["2024-07-25T03:39:56.010000"],["2024-07-25T03:39:57.010000"],["2024-07-25T03:39:58.010000"],["2024-07-25T03:39:59.010000"],["2024-07-25T03:40:00.010000"],["2024-07-25T03:40:01.010000"],["2024-07-25T03:40:02.010000"],["2024-07-25T03:40:03.010000"],["2024-07-25T03:40:04.010000"],["2024-07-25T03:40:05.010000"],["2024-07-25T03:40:06.010000"],["2024-07-25T03:40:07.010000"],["2024-07-25T03:40:08.010000"],["2024-07-25T03:40:09.010000"],["2024-07-25T03:40:10.010000"],["2024-07-25T03:40:11.010000"],["2024-07-25T03:40:12.010000"],["2024-07-25T03:40:13.010000"],["2024-07-25T03:40:14.010000"],["2024-07-25T03:40:15.010000"],["2024-07-25T03:40:16.010000"],["2024-07-25T03:40:17.010000"],["2024-07-25T03:40:18.010000"],["2024-07-25T03:40:19.010000"],["2024-07-25T03:40:20.010000"],["2024-07-25T03:40:21.010000"],["2024-07-25T03:40:22.010000"],["2024-07-25T03:40:23.010000"],["2024-07-25T03:40:24.010000"],["2024-07-25T03:40:25.010000"],["2024-07-25T03:40:26.010000"],["2024-07-25T03:40:27.010000"],["2024-07-25T03:40:28.010000"],["2024-07-25T03:40:29.010000"],["2024-07-25T03:40:30.010000"],["2024-07-25T03:40:31.010000"],["2024-07-25T03:40:32.010000"],["2024-07-25T03:40:33.010000"],["2024-07-25T03:40:34.010000"],["2024-07-25T03:40:35.010000"],["2024-07-25T03:40:36.010000"],["2024-07-25T03:40:37.010000"],["2024-07-25T03:40:38.010000"],["2024-07-25T03:40:39.010000"],["2024-07-25T03:40:40.010000"],["2024-07-25T03:40:41.010000"],["2024-07-25T03:40:42.010000"],["2024-07-25T03:40:43.010000"],["2024-07-25T03:40:44.010000"],["2024-07-25T03:40:45.010000"],["2024-07-25T03:40:46.010000"],["2024-07-25T03:40:47.010000"],["2024-07-25T03:40:48.010000"],["2024-07-25T03:40:49.010000"],["2024-07-25T03:40:50.010000"],["2024-07-25T03:40:51.010000"],["2024-07-25T03:40:52.010000"],["2024-07-25T03:40:53.010000"],["2024-07-25T03:40:54.010000"],["2024-07-25T03:40:55.010000"],["2024-07-25T03:40:56.010000"],["2024-07-25T03:40:57.010000"],["2024-07-25T03:40:58.010000"],["2024-07-25T03:40:59.010000"],["2024-07-25T03:41:00.010000"],["2024-07-25T03:41:01.010000"],["2024-07-25T03:41:02.010000"],["2024-07-25T03:41:03.010000"],["2024-07-25T03:41:04.010000"],["2024-07-25T03:41:05.010000"],["2024-07-25T03:41:06.010000"],["2024-07-25T03:41:07.010000"],["2024-07-25T03:41:08.010000"],["2024-07-25T03:41:09.010000"],["2024-07-25T03:41:10.010000"],["2024-07-25T03:41:11.010000"],["2024-07-25T03:41:12.010000"],["2024-07-25T03:41:13.010000"],["2024-07-25T03:41:14.010000"],["2024-07-25T03:41:15.010000"],["2024-07-25T03:41:16.010000"],["2024-07-25T03:41:17.010000"],["2024-07-25T03:41:18.010000"],["2024-07-25T03:41:19.010000"],["2024-07-25T03:41:20.010000"],["2024-07-25T03:41:21.010000"],["2024-07-25T03:41:22.010000"],["2024-07-25T03:41:23.010000"],["2024-07-25T03:41:24.010000"],["2024-07-25T03:41:25.010000"],["2024-07-25T03:41:26.010000"],["2024-07-25T03:41:27.010000"],["2024-07-25T03:41:28.010000"],["2024-07-25T03:41:29.010000"],["2024-07-25T03:41:30.010000"],["2024-07-25T03:41:31.010000"],["2024-07-25T03:41:32.010000"],["2024-07-25T03:41:33.010000"],["2024-07-25T03:41:34.010000"],["2024-07-25T03:41:35.010000"],["2024-07-25T03:41:36.010000"],["2024-07-25T03:41:37.010000"],["2024-07-25T03:41:38.010000"],["2024-07-25T03:41:39.010000"],["2024-07-25T03:41:40.010000"],["2024-07-25T03:41:41.010000"],["2024-07-25T03:41:42.010000"],["2024-07-25T03:41:43.010000"],["2024-07-25T03:41:44.010000"],["2024-07-25T03:41:45.010000"],["2024-07-25T03:41:46.010000"],["2024-07-25T03:41:47.010000"],["2024-07-25T03:41:48.010000"],["2024-07-25T03:41:49.010000"],["2024-07-25T03:41:50.010000"],["2024-07-25T03:41:51.010000"],["2024-07-25T03:41:52.010000"],["2024-07-25T03:41:53.010000"],["2024-07-25T03:41:54.010000"],["2024-07-25T03:41:55.010000"],["2024-07-25T03:41:56.010000"],["2024-07-25T03:41:57.010000"],["2024-07-25T03:41:58.010000"],["2024-07-25T03:41:59.010000"],["2024-07-25T03:42:00.010000"],["2024-07-25T03:42:01.010000"],["2024-07-25T03:42:02.010000"],["2024-07-25T03:42:03.010000"],["2024-07-25T03:42:04.010000"],["2024-07-25T03:42:05.010000"],["2024-07-25T03:42:06.010000"],["2024-07-25T03:42:07.010000"],["2024-07-25T03:42:08.010000"],["2024-07-25T03:42:09.010000"],["2024-07-25T03:42:10.010000"],["2024-07-25T03:42:11.010000"],["2024-07-25T03:42:12.010000"],["2024-07-25T03:42:13.010000"],["2024-07-25T03:42:14.010000"],["2024-07-25T03:42:15.010000"],["2024-07-25T03:42:16.010000"],["2024-07-25T03:42:17.010000"],["2024-07-25T03:42:18.010000"],["2024-07-25T03:42:19.010000"],["2024-07-25T03:42:20.010000"],["2024-07-25T03:42:21.010000"],["2024-07-25T03:42:22.010000"],["2024-07-25T03:42:23.010000"],["2024-07-25T03:42:24.010000"],["2024-07-25T03:42:25.010000"],["2024-07-25T03:42:26.010000"],["2024-07-25T03:42:27.010000"],["2024-07-25T03:42:28.010000"],["2024-07-25T03:42:29.010000"],["2024-07-25T03:42:30.010000"],["2024-07-25T03:42:31.010000"],["2024-07-25T03:42:32.010000"],["2024-07-25T03:42:33.010000"],["2024-07-25T03:42:34.010000"],["2024-07-25T03:42:35.010000"],["2024-07-25T03:42:36.010000"],["2024-07-25T03:42:37.010000"],["2024-07-25T03:42:38.010000"],["2024-07-25T03:42:39.010000"],["2024-07-25T03:42:40.010000"],["2024-07-25T03:42:41.010000"],["2024-07-25T03:42:42.010000"],["2024-07-25T03:42:43.010000"],["2024-07-25T03:42:44.010000"],["2024-07-25T03:42:45.010000"],["2024-07-25T03:42:46.010000"],["2024-07-25T03:42:47.010000"],["2024-07-25T03:42:48.010000"],["2024-07-25T03:42:49.010000"],["2024-07-25T03:42:50.010000"],["2024-07-25T03:42:51.010000"],["2024-07-25T03:42:52.010000"],["2024-07-25T03:42:53.010000"],["2024-07-25T03:42:54.010000"],["2024-07-25T03:42:55.010000"],["2024-07-25T03:42:56.010000"],["2024-07-25T03:42:57.010000"],["2024-07-25T03:42:58.010000"],["2024-07-25T03:42:59.010000"],["2024-07-25T03:43:00.010000"],["2024-07-25T03:43:01.010000"],["2024-07-25T03:43:02.010000"],["2024-07-25T03:43:03.010000"],["2024-07-25T03:43:04.010000"],["2024-07-25T03:43:05.010000"],["2024-07-25T03:43:06.010000"],["2024-07-25T03:43:07.010000"],["2024-07-25T03:43:08.010000"],["2024-07-25T03:43:09.010000"],["2024-07-25T03:43:10.010000"],["2024-07-25T03:43:11.010000"],["2024-07-25T03:43:12.010000"],["2024-07-25T03:43:13.010000"],["2024-07-25T03:43:14.010000"],["2024-07-25T03:43:15.010000"],["2024-07-25T03:43:16.010000"],["2024-07-25T03:43:17.010000"],["2024-07-25T03:43:18.010000"],["2024-07-25T03:43:19.010000"],["2024-07-25T03:43:20.010000"],["2024-07-25T03:43:21.010000"],["2024-07-25T03:43:22.010000"],["2024-07-25T03:43:23.010000"],["2024-07-25T03:43:24.010000"],["2024-07-25T03:43:25.010000"],["2024-07-25T03:43:26.010000"],["2024-07-25T03:43:27.010000"],["2024-07-25T03:43:28.010000"],["2024-07-25T03:43:29.010000"],["2024-07-25T03:43:30.010000"],["2024-07-25T03:43:31.010000"],["2024-07-25T03:43:32.010000"],["2024-07-25T03:43:33.010000"],["2024-07-25T03:43:34.010000"],["2024-07-25T03:43:35.010000"],["2024-07-25T03:43:36.010000"],["2024-07-25T03:43:37.010000"],["2024-07-25T03:43:38.010000"],["2024-07-25T03:43:39.010000"],["2024-07-25T03:43:40.010000"],["2024-07-25T03:43:41.010000"],["2024-07-25T03:43:42.010000"],["2024-07-25T03:43:43.010000"],["2024-07-25T03:43:44.010000"],["2024-07-25T03:43:45.010000"],["2024-07-25T03:43:46.010000"],["2024-07-25T03:43:47.010000"],["2024-07-25T03:43:48.010000"],["2024-07-25T03:43:49.010000"],["2024-07-25T03:43:50.010000"],["2024-07-25T03:43:51.010000"],["2024-07-25T03:43:52.010000"],["2024-07-25T03:43:53.010000"],["2024-07-25T03:43:54.010000"],["2024-07-25T03:43:55.010000"],["2024-07-25T03:43:56.010000"],["2024-07-25T03:43:57.010000"],["2024-07-25T03:43:58.010000"],["2024-07-25T03:43:59.010000"],["2024-07-25T03:44:00.010000"],["2024-07-25T03:44:01.010000"],["2024-07-25T03:44:02.010000"],["2024-07-25T03:44:03.010000"],["2024-07-25T03:44:04.010000"],["2024-07-25T03:44:05.010000"],["2024-07-25T03:44:06.010000"],["2024-07-25T03:44:07.010000"],["2024-07-25T03:44:08.010000"],["2024-07-25T03:44:09.010000"],["2024-07-25T03:44:10.010000"],["2024-07-25T03:44:11.010000"],["2024-07-25T03:44:12.010000"],["2024-07-25T03:44:13.010000"],["2024-07-25T03:44:14.010000"],["2024-07-25T03:44:15.010000"],["2024-07-25T03:44:16.010000"],["2024-07-25T03:44:17.010000"],["2024-07-25T03:44:18.010000"],["2024-07-25T03:44:19.010000"],["2024-07-25T03:44:20.010000"],["2024-07-25T03:44:21.010000"],["2024-07-25T03:44:22.010000"],["2024-07-25T03:44:23.010000"],["2024-07-25T03:44:24.010000"],["2024-07-25T03:44:25.010000"],["2024-07-25T03:44:26.010000"],["2024-07-25T03:44:27.010000"],["2024-07-25T03:44:28.010000"],["2024-07-25T03:44:29.010000"],["2024-07-25T03:44:30.010000"],["2024-07-25T03:44:31.010000"],["2024-07-25T03:44:32.010000"],["2024-07-25T03:44:33.010000"],["2024-07-25T03:44:34.010000"],["2024-07-25T03:44:35.010000"],["2024-07-25T03:44:36.010000"],["2024-07-25T03:44:37.010000"],["2024-07-25T03:44:38.010000"],["2024-07-25T03:44:39.010000"],["2024-07-25T03:44:40.010000"],["2024-07-25T03:44:41.010000"],["2024-07-25T03:44:42.010000"],["2024-07-25T03:44:43.010000"],["2024-07-25T03:44:44.010000"],["2024-07-25T03:44:45.010000"],["2024-07-25T03:44:46.010000"],["2024-07-25T03:44:47.010000"],["2024-07-25T03:44:48.010000"],["2024-07-25T03:44:49.010000"],["2024-07-25T03:44:50.010000"],["2024-07-25T03:44:51.010000"],["2024-07-25T03:44:52.010000"],["2024-07-25T03:44:53.010000"],["2024-07-25T03:44:54.010000"],["2024-07-25T03:44:55.010000"],["2024-07-25T03:44:56.010000"],["2024-07-25T03:44:57.010000"],["2024-07-25T03:44:58.010000"],["2024-07-25T03:44:59.010000"],["2024-07-25T03:45:00.010000"],["2024-07-25T03:45:01.010000"],["2024-07-25T03:45:02.010000"],["2024-07-25T03:45:03.010000"],["2024-07-25T03:45:04.010000"],["2024-07-25T03:45:05.010000"],["2024-07-25T03:45:06.010000"],["2024-07-25T03:45:07.010000"],["2024-07-25T03:45:08.010000"],["2024-07-25T03:45:09.010000"],["2024-07-25T03:45:10.010000"],["2024-07-25T03:45:11.010000"],["2024-07-25T03:45:12.010000"],["2024-07-25T03:45:13.010000"],["2024-07-25T03:45:14.010000"],["2024-07-25T03:45:15.010000"],["2024-07-25T03:45:16.010000"],["2024-07-25T03:45:17.010000"],["2024-07-25T03:45:18.010000"],["2024-07-25T03:45:19.010000"],["2024-07-25T03:45:20.010000"],["2024-07-25T03:45:21.010000"],["2024-07-25T03:45:22.010000"],["2024-07-25T03:45:23.010000"],["2024-07-25T03:45:24.010000"],["2024-07-25T03:45:25.010000"],["2024-07-25T03:45:26.010000"],["2024-07-25T03:45:27.010000"],["2024-07-25T03:45:28.010000"],["2024-07-25T03:45:29.010000"],["2024-07-25T03:45:30.010000"],["2024-07-25T03:45:31.010000"],["2024-07-25T03:45:32.010000"],["2024-07-25T03:45:33.010000"],["2024-07-25T03:45:34.010000"],["2024-07-25T03:45:35.010000"],["2024-07-25T03:45:36.010000"],["2024-07-25T03:45:37.010000"],["2024-07-25T03:45:38.010000"],["2024-07-25T03:45:39.010000"],["2024-07-25T03:45:40.010000"],["2024-07-25T03:45:41.010000"],["2024-07-25T03:45:42.010000"],["2024-07-25T03:45:43.010000"],["2024-07-25T03:45:44.010000"],["2024-07-25T03:45:45.010000"],["2024-07-25T03:45:46.010000"],["2024-07-25T03:45:47.010000"],["2024-07-25T03:45:48.010000"],["2024-07-25T03:45:49.010000"],["2024-07-25T03:45:50.010000"],["2024-07-25T03:45:51.010000"],["2024-07-25T03:45:52.010000"],["2024-07-25T03:45:53.010000"],["2024-07-25T03:45:54.010000"],["2024-07-25T03:45:55.010000"],["2024-07-25T03:45:56.010000"],["2024-07-25T03:45:57.010000"],["2024-07-25T03:45:58.010000"],["2024-07-25T03:45:59.010000"],["2024-07-25T03:46:00.010000"],["2024-07-25T03:46:01.010000"],["2024-07-25T03:46:02.010000"],["2024-07-25T03:46:03.010000"],["2024-07-25T03:46:04.010000"],["2024-07-25T03:46:05.010000"],["2024-07-25T03:46:06.010000"],["2024-07-25T03:46:07.010000"],["2024-07-25T03:46:08.010000"],["2024-07-25T03:46:09.010000"],["2024-07-25T03:46:10.010000"],["2024-07-25T03:46:11.010000"],["2024-07-25T03:46:12.010000"],["2024-07-25T03:46:13.010000"],["2024-07-25T03:46:14.010000"],["2024-07-25T03:46:15.010000"],["2024-07-25T03:46:16.010000"],["2024-07-25T03:46:17.010000"],["2024-07-25T03:46:18.010000"],["2024-07-25T03:46:19.010000"],["2024-07-25T03:46:20.010000"],["2024-07-25T03:46:21.010000"],["2024-07-25T03:46:22.010000"],["2024-07-25T03:46:23.010000"],["2024-07-25T03:46:24.010000"],["2024-07-25T03:46:25.010000"],["2024-07-25T03:46:26.010000"],["2024-07-25T03:46:27.010000"],["2024-07-25T03:46:28.010000"],["2024-07-25T03:46:29.010000"],["2024-07-25T03:46:30.010000"],["2024-07-25T03:46:31.010000"],["2024-07-25T03:46:32.010000"],["2024-07-25T03:46:33.010000"],["2024-07-25T03:46:34.010000"],["2024-07-25T03:46:35.010000"],["2024-07-25T03:46:36.010000"],["2024-07-25T03:46:37.010000"],["2024-07-25T03:46:38.010000"],["2024-07-25T03:46:39.010000"],["2024-07-25T03:46:40.010000"],["2024-07-25T03:46:41.010000"],["2024-07-25T03:46:42.010000"],["2024-07-25T03:46:43.010000"],["2024-07-25T03:46:44.010000"],["2024-07-25T03:46:45.010000"],["2024-07-25T03:46:46.010000"],["2024-07-25T03:46:47.010000"],["2024-07-25T03:46:48.010000"],["2024-07-25T03:46:49.010000"],["2024-07-25T03:46:50.010000"],["2024-07-25T03:46:51.010000"],["2024-07-25T03:46:52.010000"],["2024-07-25T03:46:53.010000"],["2024-07-25T03:46:54.010000"],["2024-07-25T03:46:55.010000"],["2024-07-25T03:46:56.010000"],["2024-07-25T03:46:57.010000"],["2024-07-25T03:46:58.010000"],["2024-07-25T03:46:59.010000"],["2024-07-25T03:47:00.010000"],["2024-07-25T03:47:01.010000"],["2024-07-25T03:47:02.010000"],["2024-07-25T03:47:03.010000"],["2024-07-25T03:47:04.010000"],["2024-07-25T03:47:05.010000"],["2024-07-25T03:47:06.010000"],["2024-07-25T03:47:07.010000"],["2024-07-25T03:47:08.010000"],["2024-07-25T03:47:09.010000"],["2024-07-25T03:47:10.010000"],["2024-07-25T03:47:11.010000"],["2024-07-25T03:47:12.010000"],["2024-07-25T03:47:13.010000"],["2024-07-25T03:47:14.010000"],["2024-07-25T03:47:15.010000"],["2024-07-25T03:47:16.010000"],["2024-07-25T03:47:17.010000"],["2024-07-25T03:47:18.010000"],["2024-07-25T03:47:19.010000"],["2024-07-25T03:47:20.010000"],["2024-07-25T03:47:21.010000"],["2024-07-25T03:47:22.010000"],["2024-07-25T03:47:23.010000"],["2024-07-25T03:47:24.010000"],["2024-07-25T03:47:25.010000"],["2024-07-25T03:47:26.010000"],["2024-07-25T03:47:27.010000"],["2024-07-25T03:47:28.010000"],["2024-07-25T03:47:29.010000"],["2024-07-25T03:47:30.010000"],["2024-07-25T03:47:31.010000"],["2024-07-25T03:47:32.010000"],["2024-07-25T03:47:33.010000"],["2024-07-25T03:47:34.010000"],["2024-07-25T03:47:35.010000"],["2024-07-25T03:47:36.010000"],["2024-07-25T03:47:37.010000"],["2024-07-25T03:47:38.010000"],["2024-07-25T03:47:39.010000"],["2024-07-25T03:47:40.010000"],["2024-07-25T03:47:41.010000"],["2024-07-25T03:47:42.010000"],["2024-07-25T03:47:43.010000"],["2024-07-25T03:47:44.010000"],["2024-07-25T03:47:45.010000"],["2024-07-25T03:47:46.010000"],["2024-07-25T03:47:47.010000"],["2024-07-25T03:47:48.010000"],["2024-07-25T03:47:49.010000"],["2024-07-25T03:47:50.010000"],["2024-07-25T03:47:51.010000"],["2024-07-25T03:47:52.010000"],["2024-07-25T03:47:53.010000"],["2024-07-25T03:47:54.010000"],["2024-07-25T03:47:55.010000"],["2024-07-25T03:47:56.010000"],["2024-07-25T03:47:57.010000"],["2024-07-25T03:47:58.010000"],["2024-07-25T03:47:59.010000"],["2024-07-25T03:48:00.010000"],["2024-07-25T03:48:01.010000"],["2024-07-25T03:48:02.010000"],["2024-07-25T03:48:03.010000"],["2024-07-25T03:48:04.010000"],["2024-07-25T03:48:05.010000"],["2024-07-25T03:48:06.010000"],["2024-07-25T03:48:07.010000"],["2024-07-25T03:48:08.010000"],["2024-07-25T03:48:09.010000"],["2024-07-25T03:48:10.010000"],["2024-07-25T03:48:11.010000"],["2024-07-25T03:48:12.010000"],["2024-07-25T03:48:13.010000"],["2024-07-25T03:48:14.010000"],["2024-07-25T03:48:15.010000"],["2024-07-25T03:48:16.010000"],["2024-07-25T03:48:17.010000"],["2024-07-25T03:48:18.010000"],["2024-07-25T03:48:19.010000"],["2024-07-25T03:48:20.010000"],["2024-07-25T03:48:21.010000"],["2024-07-25T03:48:22.010000"],["2024-07-25T03:48:23.010000"],["2024-07-25T03:48:24.010000"],["2024-07-25T03:48:25.010000"],["2024-07-25T03:48:26.010000"],["2024-07-25T03:48:27.010000"],["2024-07-25T03:48:28.010000"],["2024-07-25T03:48:29.010000"],["2024-07-25T03:48:30.010000"],["2024-07-25T03:48:31.010000"],["2024-07-25T03:48:32.010000"],["2024-07-25T03:48:33.010000"],["2024-07-25T03:48:34.010000"],["2024-07-25T03:48:35.010000"],["2024-07-25T03:48:36.010000"],["2024-07-25T03:48:37.010000"],["2024-07-25T03:48:38.010000"],["2024-07-25T03:48:39.010000"],["2024-07-25T03:48:40.010000"],["2024-07-25T03:48:41.010000"],["2024-07-25T03:48:42.010000"],["2024-07-25T03:48:43.010000"],["2024-07-25T03:48:44.010000"],["2024-07-25T03:48:45.010000"],["2024-07-25T03:48:46.010000"],["2024-07-25T03:48:47.010000"],["2024-07-25T03:48:48.010000"],["2024-07-25T03:48:49.010000"],["2024-07-25T03:48:50.010000"],["2024-07-25T03:48:51.010000"],["2024-07-25T03:48:52.010000"],["2024-07-25T03:48:53.010000"],["2024-07-25T03:48:54.010000"],["2024-07-25T03:48:55.010000"],["2024-07-25T03:48:56.010000"],["2024-07-25T03:48:57.010000"],["2024-07-25T03:48:58.010000"],["2024-07-25T03:48:59.010000"],["2024-07-25T03:49:00.010000"],["2024-07-25T03:49:01.010000"],["2024-07-25T03:49:02.010000"],["2024-07-25T03:49:03.010000"],["2024-07-25T03:49:04.010000"],["2024-07-25T03:49:05.010000"],["2024-07-25T03:49:06.010000"],["2024-07-25T03:49:07.010000"],["2024-07-25T03:49:08.010000"],["2024-07-25T03:49:09.010000"],["2024-07-25T03:49:10.010000"],["2024-07-25T03:49:11.010000"],["2024-07-25T03:49:12.010000"],["2024-07-25T03:49:13.010000"],["2024-07-25T03:49:14.010000"],["2024-07-25T03:49:15.010000"],["2024-07-25T03:49:16.010000"],["2024-07-25T03:49:17.010000"],["2024-07-25T03:49:18.010000"],["2024-07-25T03:49:19.010000"],["2024-07-25T03:49:20.010000"],["2024-07-25T03:49:21.010000"],["2024-07-25T03:49:22.010000"],["2024-07-25T03:49:23.010000"],["2024-07-25T03:49:24.010000"],["2024-07-25T03:49:25.010000"],["2024-07-25T03:49:26.010000"],["2024-07-25T03:49:27.010000"],["2024-07-25T03:49:28.010000"],["2024-07-25T03:49:29.010000"],["2024-07-25T03:49:30.010000"],["2024-07-25T03:49:31.010000"],["2024-07-25T03:49:32.010000"],["2024-07-25T03:49:33.010000"],["2024-07-25T03:49:34.010000"],["2024-07-25T03:49:35.010000"],["2024-07-25T03:49:36.010000"],["2024-07-25T03:49:37.010000"],["2024-07-25T03:49:38.010000"],["2024-07-25T03:49:39.010000"],["2024-07-25T03:49:40.010000"],["2024-07-25T03:49:41.010000"],["2024-07-25T03:49:42.010000"],["2024-07-25T03:49:43.010000"],["2024-07-25T03:49:44.010000"],["2024-07-25T03:49:45.010000"],["2024-07-25T03:49:46.010000"],["2024-07-25T03:49:47.010000"],["2024-07-25T03:49:48.010000"],["2024-07-25T03:49:49.010000"],["2024-07-25T03:49:50.010000"],["2024-07-25T03:49:51.010000"],["2024-07-25T03:49:52.010000"],["2024-07-25T03:49:53.010000"],["2024-07-25T03:49:54.010000"],["2024-07-25T03:49:55.010000"],["2024-07-25T03:49:56.010000"],["2024-07-25T03:49:57.010000"],["2024-07-25T03:49:58.010000"],["2024-07-25T03:49:59.010000"],["2024-07-25T03:50:00.010000"],["2024-07-25T03:50:01.010000"],["2024-07-25T03:50:02.010000"],["2024-07-25T03:50:03.010000"],["2024-07-25T03:50:04.010000"],["2024-07-25T03:50:05.010000"],["2024-07-25T03:50:06.010000"],["2024-07-25T03:50:07.010000"],["2024-07-25T03:50:08.010000"],["2024-07-25T03:50:09.010000"],["2024-07-25T03:50:10.010000"],["2024-07-25T03:50:11.010000"],["2024-07-25T03:50:12.010000"],["2024-07-25T03:50:13.010000"],["2024-07-25T03:50:14.010000"],["2024-07-25T03:50:15.010000"],["2024-07-25T03:50:16.010000"],["2024-07-25T03:50:17.010000"],["2024-07-25T03:50:18.010000"],["2024-07-25T03:50:19.010000"],["2024-07-25T03:50:20.010000"],["2024-07-25T03:50:21.010000"],["2024-07-25T03:50:22.010000"],["2024-07-25T03:50:23.010000"],["2024-07-25T03:50:24.010000"],["2024-07-25T03:50:25.010000"],["2024-07-25T03:50:26.010000"],["2024-07-25T03:50:27.010000"],["2024-07-25T03:50:28.010000"],["2024-07-25T03:50:29.010000"],["2024-07-25T03:50:30.010000"],["2024-07-25T03:50:31.010000"],["2024-07-25T03:50:32.010000"],["2024-07-25T03:50:33.010000"],["2024-07-25T03:50:34.010000"],["2024-07-25T03:50:35.010000"],["2024-07-25T03:50:36.010000"],["2024-07-25T03:50:37.010000"],["2024-07-25T03:50:38.010000"],["2024-07-25T03:50:39.010000"],["2024-07-25T03:50:40.010000"],["2024-07-25T03:50:41.010000"],["2024-07-25T03:50:42.010000"],["2024-07-25T03:50:43.010000"],["2024-07-25T03:50:44.010000"],["2024-07-25T03:50:45.010000"],["2024-07-25T03:50:46.010000"],["2024-07-25T03:50:47.010000"],["2024-07-25T03:50:48.010000"],["2024-07-25T03:50:49.010000"],["2024-07-25T03:50:50.010000"],["2024-07-25T03:50:51.010000"],["2024-07-25T03:50:52.010000"],["2024-07-25T03:50:53.010000"],["2024-07-25T03:50:54.010000"],["2024-07-25T03:50:55.010000"],["2024-07-25T03:50:56.010000"],["2024-07-25T03:50:57.010000"],["2024-07-25T03:50:58.010000"],["2024-07-25T03:50:59.010000"],["2024-07-25T03:51:00.010000"],["2024-07-25T03:51:01.010000"],["2024-07-25T03:51:02.010000"],["2024-07-25T03:51:03.010000"],["2024-07-25T03:51:04.010000"],["2024-07-25T03:51:05.010000"],["2024-07-25T03:51:06.010000"],["2024-07-25T03:51:07.010000"],["2024-07-25T03:51:08.010000"],["2024-07-25T03:51:09.010000"],["2024-07-25T03:51:10.010000"],["2024-07-25T03:51:11.010000"],["2024-07-25T03:51:12.010000"],["2024-07-25T03:51:13.010000"],["2024-07-25T03:51:14.010000"],["2024-07-25T03:51:15.010000"],["2024-07-25T03:51:16.010000"],["2024-07-25T03:51:17.010000"],["2024-07-25T03:51:18.010000"],["2024-07-25T03:51:19.010000"],["2024-07-25T03:51:20.010000"],["2024-07-25T03:51:21.010000"],["2024-07-25T03:51:22.010000"],["2024-07-25T03:51:23.010000"],["2024-07-25T03:51:24.010000"],["2024-07-25T03:51:25.010000"],["2024-07-25T03:51:26.010000"],["2024-07-25T03:51:27.010000"],["2024-07-25T03:51:28.010000"],["2024-07-25T03:51:29.010000"],["2024-07-25T03:51:30.010000"],["2024-07-25T03:51:31.010000"],["2024-07-25T03:51:32.010000"],["2024-07-25T03:51:33.010000"],["2024-07-25T03:51:34.010000"],["2024-07-25T03:51:35.010000"],["2024-07-25T03:51:36.010000"],["2024-07-25T03:51:37.010000"],["2024-07-25T03:51:38.010000"],["2024-07-25T03:51:39.010000"],["2024-07-25T03:51:40.010000"],["2024-07-25T03:51:41.010000"],["2024-07-25T03:51:42.010000"],["2024-07-25T03:51:43.010000"],["2024-07-25T03:51:44.010000"],["2024-07-25T03:51:45.010000"],["2024-07-25T03:51:46.010000"],["2024-07-25T03:51:47.010000"],["2024-07-25T03:51:48.010000"],["2024-07-25T03:51:49.010000"],["2024-07-25T03:51:50.010000"],["2024-07-25T03:51:51.010000"],["2024-07-25T03:51:52.010000"],["2024-07-25T03:51:53.010000"],["2024-07-25T03:51:54.010000"],["2024-07-25T03:51:55.010000"],["2024-07-25T03:51:56.010000"],["2024-07-25T03:51:57.010000"],["2024-07-25T03:51:58.010000"],["2024-07-25T03:51:59.010000"],["2024-07-25T03:52:00.010000"],["2024-07-25T03:52:01.010000"],["2024-07-25T03:52:02.010000"],["2024-07-25T03:52:03.010000"],["2024-07-25T03:52:04.010000"],["2024-07-25T03:52:05.010000"],["2024-07-25T03:52:06.010000"],["2024-07-25T03:52:07.010000"],["2024-07-25T03:52:08.010000"],["2024-07-25T03:52:09.010000"],["2024-07-25T03:52:10.010000"],["2024-07-25T03:52:11.010000"],["2024-07-25T03:52:12.010000"],["2024-07-25T03:52:13.010000"],["2024-07-25T03:52:14.010000"],["2024-07-25T03:52:15.010000"],["2024-07-25T03:52:16.010000"],["2024-07-25T03:52:17.010000"],["2024-07-25T03:52:18.010000"],["2024-07-25T03:52:19.010000"],["2024-07-25T03:52:20.010000"],["2024-07-25T03:52:21.010000"],["2024-07-25T03:52:22.010000"],["2024-07-25T03:52:23.010000"],["2024-07-25T03:52:24.010000"],["2024-07-25T03:52:25.010000"],["2024-07-25T03:52:26.010000"],["2024-07-25T03:52:27.010000"],["2024-07-25T03:52:28.010000"],["2024-07-25T03:52:29.010000"],["2024-07-25T03:52:30.010000"],["2024-07-25T03:52:31.010000"],["2024-07-25T03:52:32.010000"],["2024-07-25T03:52:33.010000"],["2024-07-25T03:52:34.010000"],["2024-07-25T03:52:35.010000"],["2024-07-25T03:52:36.010000"],["2024-07-25T03:52:37.010000"],["2024-07-25T03:52:38.010000"],["2024-07-25T03:52:39.010000"],["2024-07-25T03:52:40.010000"],["2024-07-25T03:52:41.010000"],["2024-07-25T03:52:42.010000"],["2024-07-25T03:52:43.010000"],["2024-07-25T03:52:44.010000"],["2024-07-25T03:52:45.010000"],["2024-07-25T03:52:46.010000"],["2024-07-25T03:52:47.010000"],["2024-07-25T03:52:48.010000"],["2024-07-25T03:52:49.010000"],["2024-07-25T03:52:50.010000"],["2024-07-25T03:52:51.010000"],["2024-07-25T03:52:52.010000"],["2024-07-25T03:52:53.010000"],["2024-07-25T03:52:54.010000"],["2024-07-25T03:52:55.010000"],["2024-07-25T03:52:56.010000"],["2024-07-25T03:52:57.010000"],["2024-07-25T03:52:58.010000"],["2024-07-25T03:52:59.010000"],["2024-07-25T03:53:00.010000"],["2024-07-25T03:53:01.010000"],["2024-07-25T03:53:02.010000"],["2024-07-25T03:53:03.010000"],["2024-07-25T03:53:04.010000"],["2024-07-25T03:53:05.010000"],["2024-07-25T03:53:06.010000"],["2024-07-25T03:53:07.010000"],["2024-07-25T03:53:08.010000"],["2024-07-25T03:53:09.010000"],["2024-07-25T03:53:10.010000"],["2024-07-25T03:53:11.010000"],["2024-07-25T03:53:12.010000"],["2024-07-25T03:53:13.010000"],["2024-07-25T03:53:14.010000"],["2024-07-25T03:53:15.010000"],["2024-07-25T03:53:16.010000"],["2024-07-25T03:53:17.010000"],["2024-07-25T03:53:18.010000"],["2024-07-25T03:53:19.010000"],["2024-07-25T03:53:20.010000"],["2024-07-25T03:53:21.010000"],["2024-07-25T03:53:22.010000"],["2024-07-25T03:53:23.010000"],["2024-07-25T03:53:24.010000"],["2024-07-25T03:53:25.010000"],["2024-07-25T03:53:26.010000"],["2024-07-25T03:53:27.010000"],["2024-07-25T03:53:28.010000"],["2024-07-25T03:53:29.010000"],["2024-07-25T03:53:30.010000"],["2024-07-25T03:53:31.010000"],["2024-07-25T03:53:32.010000"],["2024-07-25T03:53:33.010000"],["2024-07-25T03:53:34.010000"],["2024-07-25T03:53:35.010000"],["2024-07-25T03:53:36.010000"],["2024-07-25T03:53:37.010000"],["2024-07-25T03:53:38.010000"],["2024-07-25T03:53:39.010000"],["2024-07-25T03:53:40.010000"],["2024-07-25T03:53:41.010000"],["2024-07-25T03:53:42.010000"],["2024-07-25T03:53:43.010000"],["2024-07-25T03:53:44.010000"],["2024-07-25T03:53:45.010000"],["2024-07-25T03:53:46.010000"],["2024-07-25T03:53:47.010000"],["2024-07-25T03:53:48.010000"],["2024-07-25T03:53:49.010000"],["2024-07-25T03:53:50.010000"],["2024-07-25T03:53:51.010000"],["2024-07-25T03:53:52.010000"],["2024-07-25T03:53:53.010000"],["2024-07-25T03:53:54.010000"],["2024-07-25T03:53:55.010000"],["2024-07-25T03:53:56.010000"],["2024-07-25T03:53:57.010000"],["2024-07-25T03:53:58.010000"],["2024-07-25T03:53:59.010000"],["2024-07-25T03:54:00.010000"],["2024-07-25T03:54:01.010000"],["2024-07-25T03:54:02.010000"],["2024-07-25T03:54:03.010000"],["2024-07-25T03:54:04.010000"],["2024-07-25T03:54:05.010000"],["2024-07-25T03:54:06.010000"],["2024-07-25T03:54:07.010000"],["2024-07-25T03:54:08.010000"],["2024-07-25T03:54:09.010000"],["2024-07-25T03:54:10.010000"],["2024-07-25T03:54:11.010000"],["2024-07-25T03:54:12.010000"],["2024-07-25T03:54:13.010000"],["2024-07-25T03:54:14.010000"],["2024-07-25T03:54:15.010000"],["2024-07-25T03:54:16.010000"],["2024-07-25T03:54:17.010000"],["2024-07-25T03:54:18.010000"],["2024-07-25T03:54:19.010000"],["2024-07-25T03:54:20.010000"],["2024-07-25T03:54:21.010000"],["2024-07-25T03:54:22.010000"],["2024-07-25T03:54:23.010000"],["2024-07-25T03:54:24.010000"],["2024-07-25T03:54:25.010000"],["2024-07-25T03:54:26.010000"],["2024-07-25T03:54:27.010000"],["2024-07-25T03:54:28.010000"],["2024-07-25T03:54:29.010000"],["2024-07-25T03:54:30.010000"],["2024-07-25T03:54:31.010000"],["2024-07-25T03:54:32.010000"],["2024-07-25T03:54:33.010000"],["2024-07-25T03:54:34.010000"],["2024-07-25T03:54:35.010000"],["2024-07-25T03:54:36.010000"],["2024-07-25T03:54:37.010000"],["2024-07-25T03:54:38.010000"],["2024-07-25T03:54:39.010000"],["2024-07-25T03:54:40.010000"],["2024-07-25T03:54:41.010000"],["2024-07-25T03:54:42.010000"],["2024-07-25T03:54:43.010000"],["2024-07-25T03:54:44.010000"],["2024-07-25T03:54:45.010000"],["2024-07-25T03:54:46.010000"],["2024-07-25T03:54:47.010000"],["2024-07-25T03:54:48.010000"],["2024-07-25T03:54:49.010000"],["2024-07-25T03:54:50.010000"],["2024-07-25T03:54:51.010000"],["2024-07-25T03:54:52.010000"],["2024-07-25T03:54:53.010000"],["2024-07-25T03:54:54.010000"],["2024-07-25T03:54:55.010000"],["2024-07-25T03:54:56.010000"],["2024-07-25T03:54:57.010000"],["2024-07-25T03:54:58.010000"],["2024-07-25T03:54:59.010000"],["2024-07-25T03:55:00.010000"],["2024-07-25T03:55:01.010000"],["2024-07-25T03:55:02.010000"],["2024-07-25T03:55:03.010000"],["2024-07-25T03:55:04.010000"],["2024-07-25T03:55:05.010000"],["2024-07-25T03:55:06.010000"],["2024-07-25T03:55:07.010000"],["2024-07-25T03:55:08.010000"],["2024-07-25T03:55:09.010000"],["2024-07-25T03:55:10.010000"],["2024-07-25T03:55:11.010000"],["2024-07-25T03:55:12.010000"],["2024-07-25T03:55:13.010000"],["2024-07-25T03:55:14.010000"],["2024-07-25T03:55:15.010000"],["2024-07-25T03:55:16.010000"],["2024-07-25T03:55:17.010000"],["2024-07-25T03:55:18.010000"],["2024-07-25T03:55:19.010000"],["2024-07-25T03:55:20.010000"],["2024-07-25T03:55:21.010000"],["2024-07-25T03:55:22.010000"],["2024-07-25T03:55:23.010000"],["2024-07-25T03:55:24.010000"],["2024-07-25T03:55:25.010000"],["2024-07-25T03:55:26.010000"],["2024-07-25T03:55:27.010000"],["2024-07-25T03:55:28.010000"],["2024-07-25T03:55:29.010000"],["2024-07-25T03:55:30.010000"],["2024-07-25T03:55:31.010000"],["2024-07-25T03:55:32.010000"],["2024-07-25T03:55:33.010000"],["2024-07-25T03:55:34.010000"],["2024-07-25T03:55:35.010000"],["2024-07-25T03:55:36.010000"],["2024-07-25T03:55:37.010000"],["2024-07-25T03:55:38.010000"],["2024-07-25T03:55:39.010000"],["2024-07-25T03:55:40.010000"],["2024-07-25T03:55:41.010000"],["2024-07-25T03:55:42.010000"],["2024-07-25T03:55:43.010000"],["2024-07-25T03:55:44.010000"],["2024-07-25T03:55:45.010000"],["2024-07-25T03:55:46.010000"],["2024-07-25T03:55:47.010000"],["2024-07-25T03:55:48.010000"],["2024-07-25T03:55:49.010000"],["2024-07-25T03:55:50.010000"],["2024-07-25T03:55:51.010000"],["2024-07-25T03:55:52.010000"],["2024-07-25T03:55:53.010000"],["2024-07-25T03:55:54.010000"],["2024-07-25T03:55:55.010000"],["2024-07-25T03:55:56.010000"],["2024-07-25T03:55:57.010000"],["2024-07-25T03:55:58.010000"],["2024-07-25T03:55:59.010000"],["2024-07-25T03:56:00.010000"],["2024-07-25T03:56:01.010000"],["2024-07-25T03:56:02.010000"],["2024-07-25T03:56:03.010000"],["2024-07-25T03:56:04.010000"],["2024-07-25T03:56:05.010000"],["2024-07-25T03:56:06.010000"],["2024-07-25T03:56:07.010000"],["2024-07-25T03:56:08.010000"],["2024-07-25T03:56:09.010000"],["2024-07-25T03:56:10.010000"],["2024-07-25T03:56:11.010000"],["2024-07-25T03:56:12.010000"],["2024-07-25T03:56:13.010000"],["2024-07-25T03:56:14.010000"],["2024-07-25T03:56:15.010000"],["2024-07-25T03:56:16.010000"],["2024-07-25T03:56:17.010000"],["2024-07-25T03:56:18.010000"],["2024-07-25T03:56:19.010000"],["2024-07-25T03:56:20.010000"],["2024-07-25T03:56:21.010000"],["2024-07-25T03:56:22.010000"],["2024-07-25T03:56:23.010000"],["2024-07-25T03:56:24.010000"],["2024-07-25T03:56:25.010000"],["2024-07-25T03:56:26.010000"],["2024-07-25T03:56:27.010000"],["2024-07-25T03:56:28.010000"],["2024-07-25T03:56:29.010000"],["2024-07-25T03:56:30.010000"],["2024-07-25T03:56:31.010000"],["2024-07-25T03:56:32.010000"],["2024-07-25T03:56:33.010000"],["2024-07-25T03:56:34.010000"],["2024-07-25T03:56:35.010000"],["2024-07-25T03:56:36.010000"],["2024-07-25T03:56:37.010000"],["2024-07-25T03:56:38.010000"],["2024-07-25T03:56:39.010000"],["2024-07-25T03:56:40.010000"],["2024-07-25T03:56:41.010000"],["2024-07-25T03:56:42.010000"],["2024-07-25T03:56:43.010000"],["2024-07-25T03:56:44.010000"],["2024-07-25T03:56:45.010000"],["2024-07-25T03:56:46.010000"],["2024-07-25T03:56:47.010000"],["2024-07-25T03:56:48.010000"],["2024-07-25T03:56:49.010000"],["2024-07-25T03:56:50.010000"],["2024-07-25T03:56:51.010000"],["2024-07-25T03:56:52.010000"],["2024-07-25T03:56:53.010000"],["2024-07-25T03:56:54.010000"],["2024-07-25T03:56:55.010000"],["2024-07-25T03:56:56.010000"],["2024-07-25T03:56:57.010000"],["2024-07-25T03:56:58.010000"],["2024-07-25T03:56:59.010000"],["2024-07-25T03:57:00.010000"],["2024-07-25T03:57:01.010000"],["2024-07-25T03:57:02.010000"],["2024-07-25T03:57:03.010000"],["2024-07-25T03:57:04.010000"],["2024-07-25T03:57:05.010000"],["2024-07-25T03:57:06.010000"],["2024-07-25T03:57:07.010000"],["2024-07-25T03:57:08.010000"],["2024-07-25T03:57:09.010000"],["2024-07-25T03:57:10.010000"],["2024-07-25T03:57:11.010000"],["2024-07-25T03:57:12.010000"],["2024-07-25T03:57:13.010000"],["2024-07-25T03:57:14.010000"],["2024-07-25T03:57:15.010000"],["2024-07-25T03:57:16.010000"],["2024-07-25T03:57:17.010000"],["2024-07-25T03:57:18.010000"],["2024-07-25T03:57:19.010000"],["2024-07-25T03:57:20.010000"],["2024-07-25T03:57:21.010000"],["2024-07-25T03:57:22.010000"],["2024-07-25T03:57:23.010000"],["2024-07-25T03:57:24.010000"],["2024-07-25T03:57:25.010000"],["2024-07-25T03:57:26.010000"],["2024-07-25T03:57:27.010000"],["2024-07-25T03:57:28.010000"],["2024-07-25T03:57:29.010000"],["2024-07-25T03:57:30.010000"],["2024-07-25T03:57:31.010000"],["2024-07-25T03:57:32.010000"],["2024-07-25T03:57:33.010000"],["2024-07-25T03:57:34.010000"],["2024-07-25T03:57:35.010000"],["2024-07-25T03:57:36.010000"],["2024-07-25T03:57:37.010000"],["2024-07-25T03:57:38.010000"],["2024-07-25T03:57:39.010000"],["2024-07-25T03:57:40.010000"],["2024-07-25T03:57:41.010000"],["2024-07-25T03:57:42.010000"],["2024-07-25T03:57:43.010000"],["2024-07-25T03:57:44.010000"],["2024-07-25T03:57:45.010000"],["2024-07-25T03:57:46.010000"],["2024-07-25T03:57:47.010000"],["2024-07-25T03:57:48.010000"],["2024-07-25T03:57:49.010000"],["2024-07-25T03:57:50.010000"],["2024-07-25T03:57:51.010000"],["2024-07-25T03:57:52.010000"],["2024-07-25T03:57:53.010000"],["2024-07-25T03:57:54.010000"],["2024-07-25T03:57:55.010000"],["2024-07-25T03:57:56.010000"],["2024-07-25T03:57:57.010000"],["2024-07-25T03:57:58.010000"],["2024-07-25T03:57:59.010000"],["2024-07-25T03:58:00.010000"],["2024-07-25T03:58:01.010000"],["2024-07-25T03:58:02.010000"],["2024-07-25T03:58:03.010000"],["2024-07-25T03:58:04.010000"],["2024-07-25T03:58:05.010000"],["2024-07-25T03:58:06.010000"],["2024-07-25T03:58:07.010000"],["2024-07-25T03:58:08.010000"],["2024-07-25T03:58:09.010000"],["2024-07-25T03:58:10.010000"],["2024-07-25T03:58:11.010000"],["2024-07-25T03:58:12.010000"],["2024-07-25T03:58:13.010000"],["2024-07-25T03:58:14.010000"],["2024-07-25T03:58:15.010000"],["2024-07-25T03:58:16.010000"],["2024-07-25T03:58:17.010000"],["2024-07-25T03:58:18.010000"],["2024-07-25T03:58:19.010000"],["2024-07-25T03:58:20.010000"],["2024-07-25T03:58:21.010000"],["2024-07-25T03:58:22.010000"],["2024-07-25T03:58:23.010000"],["2024-07-25T03:58:24.010000"],["2024-07-25T03:58:25.010000"],["2024-07-25T03:58:26.010000"],["2024-07-25T03:58:27.010000"],["2024-07-25T03:58:28.010000"],["2024-07-25T03:58:29.010000"],["2024-07-25T03:58:30.010000"],["2024-07-25T03:58:31.010000"],["2024-07-25T03:58:32.010000"],["2024-07-25T03:58:33.010000"],["2024-07-25T03:58:34.010000"],["2024-07-25T03:58:35.010000"],["2024-07-25T03:58:36.010000"],["2024-07-25T03:58:37.010000"],["2024-07-25T03:58:38.010000"],["2024-07-25T03:58:39.010000"],["2024-07-25T03:58:40.010000"],["2024-07-25T03:58:41.010000"],["2024-07-25T03:58:42.010000"],["2024-07-25T03:58:43.010000"],["2024-07-25T03:58:44.010000"],["2024-07-25T03:58:45.010000"],["2024-07-25T03:58:46.010000"],["2024-07-25T03:58:47.010000"],["2024-07-25T03:58:48.010000"],["2024-07-25T03:58:49.010000"],["2024-07-25T03:58:50.010000"],["2024-07-25T03:58:51.010000"],["2024-07-25T03:58:52.010000"],["2024-07-25T03:58:53.010000"],["2024-07-25T03:58:54.010000"],["2024-07-25T03:58:55.010000"],["2024-07-25T03:58:56.010000"],["2024-07-25T03:58:57.010000"],["2024-07-25T03:58:58.010000"],["2024-07-25T03:58:59.010000"],["2024-07-25T03:59:00.010000"],["2024-07-25T03:59:01.010000"],["2024-07-25T03:59:02.010000"],["2024-07-25T03:59:03.010000"],["2024-07-25T03:59:04.010000"],["2024-07-25T03:59:05.010000"],["2024-07-25T03:59:06.010000"],["2024-07-25T03:59:07.010000"],["2024-07-25T03:59:08.010000"],["2024-07-25T03:59:09.010000"],["2024-07-25T03:59:10.010000"],["2024-07-25T03:59:11.010000"],["2024-07-25T03:59:12.010000"],["2024-07-25T03:59:13.010000"],["2024-07-25T03:59:14.010000"],["2024-07-25T03:59:15.010000"],["2024-07-25T03:59:16.010000"],["2024-07-25T03:59:17.010000"],["2024-07-25T03:59:18.010000"],["2024-07-25T03:59:19.010000"],["2024-07-25T03:59:20.010000"],["2024-07-25T03:59:21.010000"],["2024-07-25T03:59:22.010000"],["2024-07-25T03:59:23.010000"],["2024-07-25T03:59:24.010000"],["2024-07-25T03:59:25.010000"],["2024-07-25T03:59:26.010000"],["2024-07-25T03:59:27.010000"],["2024-07-25T03:59:28.010000"],["2024-07-25T03:59:29.010000"],["2024-07-25T03:59:30.010000"],["2024-07-25T03:59:31.010000"],["2024-07-25T03:59:32.010000"],["2024-07-25T03:59:33.010000"],["2024-07-25T03:59:34.010000"],["2024-07-25T03:59:35.010000"],["2024-07-25T03:59:36.010000"],["2024-07-25T03:59:37.010000"],["2024-07-25T03:59:38.010000"],["2024-07-25T03:59:39.010000"],["2024-07-25T03:59:40.010000"],["2024-07-25T03:59:41.010000"],["2024-07-25T03:59:42.010000"],["2024-07-25T03:59:43.010000"],["2024-07-25T03:59:44.010000"],["2024-07-25T03:59:45.010000"],["2024-07-25T03:59:46.010000"],["2024-07-25T03:59:47.010000"],["2024-07-25T03:59:48.010000"],["2024-07-25T03:59:49.010000"],["2024-07-25T03:59:50.010000"],["2024-07-25T03:59:51.010000"],["2024-07-25T03:59:52.010000"],["2024-07-25T03:59:53.010000"],["2024-07-25T03:59:54.010000"],["2024-07-25T03:59:55.010000"],["2024-07-25T03:59:56.010000"],["2024-07-25T03:59:57.010000"],["2024-07-25T03:59:58.010000"],["2024-07-25T03:59:59.010000"],["2024-07-25T04:00:00.010000"],["2024-07-25T04:00:01.010000"],["2024-07-25T04:00:02.010000"],["2024-07-25T04:00:03.010000"],["2024-07-25T04:00:04.010000"],["2024-07-25T04:00:05.010000"],["2024-07-25T04:00:06.010000"],["2024-07-25T04:00:07.010000"],["2024-07-25T04:00:08.010000"],["2024-07-25T04:00:09.010000"],["2024-07-25T04:00:10.010000"],["2024-07-25T04:00:11.010000"],["2024-07-25T04:00:12.010000"],["2024-07-25T04:00:13.010000"],["2024-07-25T04:00:14.010000"],["2024-07-25T04:00:15.010000"],["2024-07-25T04:00:16.010000"],["2024-07-25T04:00:17.010000"],["2024-07-25T04:00:18.010000"],["2024-07-25T04:00:19.010000"],["2024-07-25T04:00:20.010000"],["2024-07-25T04:00:21.010000"],["2024-07-25T04:00:22.010000"],["2024-07-25T04:00:23.010000"],["2024-07-25T04:00:24.010000"],["2024-07-25T04:00:25.010000"],["2024-07-25T04:00:26.010000"],["2024-07-25T04:00:27.010000"],["2024-07-25T04:00:28.010000"],["2024-07-25T04:00:29.010000"],["2024-07-25T04:00:30.010000"],["2024-07-25T04:00:31.010000"],["2024-07-25T04:00:32.010000"],["2024-07-25T04:00:33.010000"],["2024-07-25T04:00:34.010000"],["2024-07-25T04:00:35.010000"],["2024-07-25T04:00:36.010000"],["2024-07-25T04:00:37.010000"],["2024-07-25T04:00:38.010000"],["2024-07-25T04:00:39.010000"],["2024-07-25T04:00:40.010000"],["2024-07-25T04:00:41.010000"],["2024-07-25T04:00:42.010000"],["2024-07-25T04:00:43.010000"],["2024-07-25T04:00:44.010000"],["2024-07-25T04:00:45.010000"],["2024-07-25T04:00:46.010000"],["2024-07-25T04:00:47.010000"],["2024-07-25T04:00:48.010000"],["2024-07-25T04:00:49.010000"],["2024-07-25T04:00:50.010000"],["2024-07-25T04:00:51.010000"],["2024-07-25T04:00:52.010000"],["2024-07-25T04:00:53.010000"],["2024-07-25T04:00:54.010000"],["2024-07-25T04:00:55.010000"],["2024-07-25T04:00:56.010000"],["2024-07-25T04:00:57.010000"],["2024-07-25T04:00:58.010000"],["2024-07-25T04:00:59.010000"],["2024-07-25T04:01:00.010000"],["2024-07-25T04:01:01.010000"],["2024-07-25T04:01:02.010000"],["2024-07-25T04:01:03.010000"],["2024-07-25T04:01:04.010000"],["2024-07-25T04:01:05.010000"],["2024-07-25T04:01:06.010000"],["2024-07-25T04:01:07.010000"],["2024-07-25T04:01:08.010000"],["2024-07-25T04:01:09.010000"],["2024-07-25T04:01:10.010000"],["2024-07-25T04:01:11.010000"],["2024-07-25T04:01:12.010000"],["2024-07-25T04:01:13.010000"],["2024-07-25T04:01:14.010000"],["2024-07-25T04:01:15.010000"],["2024-07-25T04:01:16.010000"],["2024-07-25T04:01:17.010000"],["2024-07-25T04:01:18.010000"],["2024-07-25T04:01:19.010000"],["2024-07-25T04:01:20.010000"],["2024-07-25T04:01:21.010000"],["2024-07-25T04:01:22.010000"],["2024-07-25T04:01:23.010000"],["2024-07-25T04:01:24.010000"],["2024-07-25T04:01:25.010000"],["2024-07-25T04:01:26.010000"],["2024-07-25T04:01:27.010000"],["2024-07-25T04:01:28.010000"],["2024-07-25T04:01:29.010000"],["2024-07-25T04:01:30.010000"],["2024-07-25T04:01:31.010000"],["2024-07-25T04:01:32.010000"],["2024-07-25T04:01:33.010000"],["2024-07-25T04:01:34.010000"],["2024-07-25T04:01:35.010000"],["2024-07-25T04:01:36.010000"],["2024-07-25T04:01:37.010000"],["2024-07-25T04:01:38.010000"],["2024-07-25T04:01:39.010000"],["2024-07-25T04:01:40.010000"],["2024-07-25T04:01:41.010000"],["2024-07-25T04:01:42.010000"],["2024-07-25T04:01:43.010000"],["2024-07-25T04:01:44.010000"],["2024-07-25T04:01:45.010000"],["2024-07-25T04:01:46.010000"],["2024-07-25T04:01:47.010000"],["2024-07-25T04:01:48.010000"],["2024-07-25T04:01:49.010000"],["2024-07-25T04:01:50.010000"],["2024-07-25T04:01:51.010000"],["2024-07-25T04:01:52.010000"],["2024-07-25T04:01:53.010000"],["2024-07-25T04:01:54.010000"],["2024-07-25T04:01:55.010000"],["2024-07-25T04:01:56.010000"],["2024-07-25T04:01:57.010000"],["2024-07-25T04:01:58.010000"],["2024-07-25T04:01:59.010000"],["2024-07-25T04:02:00.010000"],["2024-07-25T04:02:01.010000"],["2024-07-25T04:02:02.010000"],["2024-07-25T04:02:03.010000"],["2024-07-25T04:02:04.010000"],["2024-07-25T04:02:05.010000"],["2024-07-25T04:02:06.010000"],["2024-07-25T04:02:07.010000"],["2024-07-25T04:02:08.010000"],["2024-07-25T04:02:09.010000"],["2024-07-25T04:02:10.010000"],["2024-07-25T04:02:11.010000"],["2024-07-25T04:02:12.010000"],["2024-07-25T04:02:13.010000"],["2024-07-25T04:02:14.010000"],["2024-07-25T04:02:15.010000"],["2024-07-25T04:02:16.010000"],["2024-07-25T04:02:17.010000"],["2024-07-25T04:02:18.010000"],["2024-07-25T04:02:19.010000"],["2024-07-25T04:02:20.010000"],["2024-07-25T04:02:21.010000"],["2024-07-25T04:02:22.010000"],["2024-07-25T04:02:23.010000"],["2024-07-25T04:02:24.010000"],["2024-07-25T04:02:25.010000"],["2024-07-25T04:02:26.010000"],["2024-07-25T04:02:27.010000"],["2024-07-25T04:02:28.010000"],["2024-07-25T04:02:29.010000"],["2024-07-25T04:02:30.010000"],["2024-07-25T04:02:31.010000"],["2024-07-25T04:02:32.010000"],["2024-07-25T04:02:33.010000"],["2024-07-25T04:02:34.010000"],["2024-07-25T04:02:35.010000"],["2024-07-25T04:02:36.010000"],["2024-07-25T04:02:37.010000"],["2024-07-25T04:02:38.010000"],["2024-07-25T04:02:39.010000"],["2024-07-25T04:02:40.010000"],["2024-07-25T04:02:41.010000"],["2024-07-25T04:02:42.010000"],["2024-07-25T04:02:43.010000"],["2024-07-25T04:02:44.010000"],["2024-07-25T04:02:45.010000"],["2024-07-25T04:02:46.010000"],["2024-07-25T04:02:47.010000"],["2024-07-25T04:02:48.010000"],["2024-07-25T04:02:49.010000"],["2024-07-25T04:02:50.010000"],["2024-07-25T04:02:51.010000"],["2024-07-25T04:02:52.010000"],["2024-07-25T04:02:53.010000"],["2024-07-25T04:02:54.010000"],["2024-07-25T04:02:55.010000"],["2024-07-25T04:02:56.010000"],["2024-07-25T04:02:57.010000"],["2024-07-25T04:02:58.010000"],["2024-07-25T04:02:59.010000"],["2024-07-25T04:03:00.010000"],["2024-07-25T04:03:01.010000"],["2024-07-25T04:03:02.010000"],["2024-07-25T04:03:03.010000"],["2024-07-25T04:03:04.010000"],["2024-07-25T04:03:05.010000"],["2024-07-25T04:03:06.010000"],["2024-07-25T04:03:07.010000"],["2024-07-25T04:03:08.010000"],["2024-07-25T04:03:09.010000"],["2024-07-25T04:03:10.010000"],["2024-07-25T04:03:11.010000"],["2024-07-25T04:03:12.010000"],["2024-07-25T04:03:13.010000"],["2024-07-25T04:03:14.010000"],["2024-07-25T04:03:15.010000"],["2024-07-25T04:03:16.010000"],["2024-07-25T04:03:17.010000"],["2024-07-25T04:03:18.010000"],["2024-07-25T04:03:19.010000"],["2024-07-25T04:03:20.010000"],["2024-07-25T04:03:21.010000"],["2024-07-25T04:03:22.010000"],["2024-07-25T04:03:23.010000"],["2024-07-25T04:03:24.010000"],["2024-07-25T04:03:25.010000"],["2024-07-25T04:03:26.010000"],["2024-07-25T04:03:27.010000"],["2024-07-25T04:03:28.010000"],["2024-07-25T04:03:29.010000"],["2024-07-25T04:03:30.010000"],["2024-07-25T04:03:31.010000"],["2024-07-25T04:03:32.010000"],["2024-07-25T04:03:33.010000"],["2024-07-25T04:03:34.010000"],["2024-07-25T04:03:35.010000"],["2024-07-25T04:03:36.010000"],["2024-07-25T04:03:37.010000"],["2024-07-25T04:03:38.010000"],["2024-07-25T04:03:39.010000"],["2024-07-25T04:03:40.010000"],["2024-07-25T04:03:41.010000"],["2024-07-25T04:03:42.010000"],["2024-07-25T04:03:43.010000"],["2024-07-25T04:03:44.010000"],["2024-07-25T04:03:45.010000"],["2024-07-25T04:03:46.010000"],["2024-07-25T04:03:47.010000"],["2024-07-25T04:03:48.010000"],["2024-07-25T04:03:49.010000"],["2024-07-25T04:03:50.010000"],["2024-07-25T04:03:51.010000"],["2024-07-25T04:03:52.010000"],["2024-07-25T04:03:53.010000"],["2024-07-25T04:03:54.010000"],["2024-07-25T04:03:55.010000"],["2024-07-25T04:03:56.010000"],["2024-07-25T04:03:57.010000"],["2024-07-25T04:03:58.010000"],["2024-07-25T04:03:59.010000"],["2024-07-25T04:04:00.010000"],["2024-07-25T04:04:01.010000"],["2024-07-25T04:04:02.010000"],["2024-07-25T04:04:03.010000"],["2024-07-25T04:04:04.010000"],["2024-07-25T04:04:05.010000"],["2024-07-25T04:04:06.010000"],["2024-07-25T04:04:07.010000"],["2024-07-25T04:04:08.010000"],["2024-07-25T04:04:09.010000"],["2024-07-25T04:04:10.010000"],["2024-07-25T04:04:11.010000"],["2024-07-25T04:04:12.010000"],["2024-07-25T04:04:13.010000"],["2024-07-25T04:04:14.010000"],["2024-07-25T04:04:15.010000"],["2024-07-25T04:04:16.010000"],["2024-07-25T04:04:17.010000"],["2024-07-25T04:04:18.010000"],["2024-07-25T04:04:19.010000"],["2024-07-25T04:04:20.010000"],["2024-07-25T04:04:21.010000"],["2024-07-25T04:04:22.010000"],["2024-07-25T04:04:23.010000"],["2024-07-25T04:04:24.010000"],["2024-07-25T04:04:25.010000"],["2024-07-25T04:04:26.010000"],["2024-07-25T04:04:27.010000"],["2024-07-25T04:04:28.010000"],["2024-07-25T04:04:29.010000"],["2024-07-25T04:04:30.010000"],["2024-07-25T04:04:31.010000"],["2024-07-25T04:04:32.010000"],["2024-07-25T04:04:33.010000"],["2024-07-25T04:04:34.010000"],["2024-07-25T04:04:35.010000"],["2024-07-25T04:04:36.010000"],["2024-07-25T04:04:37.010000"],["2024-07-25T04:04:38.010000"],["2024-07-25T04:04:39.010000"],["2024-07-25T04:04:40.010000"],["2024-07-25T04:04:41.010000"],["2024-07-25T04:04:42.010000"],["2024-07-25T04:04:43.010000"],["2024-07-25T04:04:44.010000"],["2024-07-25T04:04:45.010000"],["2024-07-25T04:04:46.010000"],["2024-07-25T04:04:47.010000"],["2024-07-25T04:04:48.010000"],["2024-07-25T04:04:49.010000"],["2024-07-25T04:04:50.010000"],["2024-07-25T04:04:51.010000"],["2024-07-25T04:04:52.010000"],["2024-07-25T04:04:53.010000"],["2024-07-25T04:04:54.010000"],["2024-07-25T04:04:55.010000"],["2024-07-25T04:04:56.010000"],["2024-07-25T04:04:57.010000"],["2024-07-25T04:04:58.010000"],["2024-07-25T04:04:59.010000"],["2024-07-25T04:05:00.010000"],["2024-07-25T04:05:01.010000"],["2024-07-25T04:05:02.010000"],["2024-07-25T04:05:03.010000"],["2024-07-25T04:05:04.010000"],["2024-07-25T04:05:05.010000"],["2024-07-25T04:05:06.010000"],["2024-07-25T04:05:07.010000"],["2024-07-25T04:05:08.010000"],["2024-07-25T04:05:09.010000"],["2024-07-25T04:05:10.010000"],["2024-07-25T04:05:11.010000"],["2024-07-25T04:05:12.010000"],["2024-07-25T04:05:13.010000"],["2024-07-25T04:05:14.010000"],["2024-07-25T04:05:15.010000"],["2024-07-25T04:05:16.010000"],["2024-07-25T04:05:17.010000"],["2024-07-25T04:05:18.010000"],["2024-07-25T04:05:19.010000"],["2024-07-25T04:05:20.010000"],["2024-07-25T04:05:21.010000"],["2024-07-25T04:05:22.010000"],["2024-07-25T04:05:23.010000"],["2024-07-25T04:05:24.010000"],["2024-07-25T04:05:25.010000"],["2024-07-25T04:05:26.010000"],["2024-07-25T04:05:27.010000"],["2024-07-25T04:05:28.010000"],["2024-07-25T04:05:29.010000"],["2024-07-25T04:05:30.010000"],["2024-07-25T04:05:31.010000"],["2024-07-25T04:05:32.010000"],["2024-07-25T04:05:33.010000"],["2024-07-25T04:05:34.010000"],["2024-07-25T04:05:35.010000"],["2024-07-25T04:05:36.010000"],["2024-07-25T04:05:37.010000"],["2024-07-25T04:05:38.010000"],["2024-07-25T04:05:39.010000"],["2024-07-25T04:05:40.010000"],["2024-07-25T04:05:41.010000"],["2024-07-25T04:05:42.010000"],["2024-07-25T04:05:43.010000"],["2024-07-25T04:05:44.010000"],["2024-07-25T04:05:45.010000"],["2024-07-25T04:05:46.010000"],["2024-07-25T04:05:47.010000"],["2024-07-25T04:05:48.010000"],["2024-07-25T04:05:49.010000"],["2024-07-25T04:05:50.010000"],["2024-07-25T04:05:51.010000"],["2024-07-25T04:05:52.010000"],["2024-07-25T04:05:53.010000"],["2024-07-25T04:05:54.010000"],["2024-07-25T04:05:55.010000"],["2024-07-25T04:05:56.010000"],["2024-07-25T04:05:57.010000"],["2024-07-25T04:05:58.010000"],["2024-07-25T04:05:59.010000"],["2024-07-25T04:06:00.010000"],["2024-07-25T04:06:01.010000"],["2024-07-25T04:06:02.010000"],["2024-07-25T04:06:03.010000"],["2024-07-25T04:06:04.010000"],["2024-07-25T04:06:05.010000"],["2024-07-25T04:06:06.010000"],["2024-07-25T04:06:07.010000"],["2024-07-25T04:06:08.010000"],["2024-07-25T04:06:09.010000"],["2024-07-25T04:06:10.010000"],["2024-07-25T04:06:11.010000"],["2024-07-25T04:06:12.010000"],["2024-07-25T04:06:13.010000"],["2024-07-25T04:06:14.010000"],["2024-07-25T04:06:15.010000"],["2024-07-25T04:06:16.010000"],["2024-07-25T04:06:17.010000"],["2024-07-25T04:06:18.010000"],["2024-07-25T04:06:19.010000"],["2024-07-25T04:06:20.010000"],["2024-07-25T04:06:21.010000"],["2024-07-25T04:06:22.010000"],["2024-07-25T04:06:23.010000"],["2024-07-25T04:06:24.010000"],["2024-07-25T04:06:25.010000"],["2024-07-25T04:06:26.010000"],["2024-07-25T04:06:27.010000"],["2024-07-25T04:06:28.010000"],["2024-07-25T04:06:29.010000"],["2024-07-25T04:06:30.010000"],["2024-07-25T04:06:31.010000"],["2024-07-25T04:06:32.010000"],["2024-07-25T04:06:33.010000"],["2024-07-25T04:06:34.010000"],["2024-07-25T04:06:35.010000"],["2024-07-25T04:06:36.010000"],["2024-07-25T04:06:37.010000"],["2024-07-25T04:06:38.010000"],["2024-07-25T04:06:39.010000"],["2024-07-25T04:06:40.010000"],["2024-07-25T04:06:41.010000"],["2024-07-25T04:06:42.010000"],["2024-07-25T04:06:43.010000"],["2024-07-25T04:06:44.010000"],["2024-07-25T04:06:45.010000"],["2024-07-25T04:06:46.010000"],["2024-07-25T04:06:47.010000"],["2024-07-25T04:06:48.010000"],["2024-07-25T04:06:49.010000"],["2024-07-25T04:06:50.010000"],["2024-07-25T04:06:51.010000"],["2024-07-25T04:06:52.010000"],["2024-07-25T04:06:53.010000"],["2024-07-25T04:06:54.010000"],["2024-07-25T04:06:55.010000"],["2024-07-25T04:06:56.010000"],["2024-07-25T04:06:57.010000"],["2024-07-25T04:06:58.010000"],["2024-07-25T04:06:59.010000"],["2024-07-25T04:07:00.010000"],["2024-07-25T04:07:01.010000"],["2024-07-25T04:07:02.010000"],["2024-07-25T04:07:03.010000"],["2024-07-25T04:07:04.010000"],["2024-07-25T04:07:05.010000"],["2024-07-25T04:07:06.010000"],["2024-07-25T04:07:07.010000"],["2024-07-25T04:07:08.010000"],["2024-07-25T04:07:09.010000"],["2024-07-25T04:07:10.010000"],["2024-07-25T04:07:11.010000"],["2024-07-25T04:07:12.010000"],["2024-07-25T04:07:13.010000"],["2024-07-25T04:07:14.010000"],["2024-07-25T04:07:15.010000"],["2024-07-25T04:07:16.010000"],["2024-07-25T04:07:17.010000"],["2024-07-25T04:07:18.010000"],["2024-07-25T04:07:19.010000"],["2024-07-25T04:07:20.010000"],["2024-07-25T04:07:21.010000"],["2024-07-25T04:07:22.010000"],["2024-07-25T04:07:23.010000"],["2024-07-25T04:07:24.010000"],["2024-07-25T04:07:25.010000"],["2024-07-25T04:07:26.010000"],["2024-07-25T04:07:27.010000"],["2024-07-25T04:07:28.010000"],["2024-07-25T04:07:29.010000"],["2024-07-25T04:07:30.010000"],["2024-07-25T04:07:31.010000"],["2024-07-25T04:07:32.010000"],["2024-07-25T04:07:33.010000"],["2024-07-25T04:07:34.010000"],["2024-07-25T04:07:35.010000"],["2024-07-25T04:07:36.010000"],["2024-07-25T04:07:37.010000"],["2024-07-25T04:07:38.010000"],["2024-07-25T04:07:39.010000"],["2024-07-25T04:07:40.010000"],["2024-07-25T04:07:41.010000"],["2024-07-25T04:07:42.010000"],["2024-07-25T04:07:43.010000"],["2024-07-25T04:07:44.010000"],["2024-07-25T04:07:45.010000"],["2024-07-25T04:07:46.010000"],["2024-07-25T04:07:47.010000"],["2024-07-25T04:07:48.010000"],["2024-07-25T04:07:49.010000"],["2024-07-25T04:07:50.010000"],["2024-07-25T04:07:51.010000"],["2024-07-25T04:07:52.010000"],["2024-07-25T04:07:53.010000"],["2024-07-25T04:07:54.010000"],["2024-07-25T04:07:55.010000"],["2024-07-25T04:07:56.010000"],["2024-07-25T04:07:57.010000"],["2024-07-25T04:07:58.010000"],["2024-07-25T04:07:59.010000"],["2024-07-25T04:08:00.010000"],["2024-07-25T04:08:01.010000"],["2024-07-25T04:08:02.010000"],["2024-07-25T04:08:03.010000"],["2024-07-25T04:08:04.010000"],["2024-07-25T04:08:05.010000"],["2024-07-25T04:08:06.010000"],["2024-07-25T04:08:07.010000"],["2024-07-25T04:08:08.010000"],["2024-07-25T04:08:09.010000"],["2024-07-25T04:08:10.010000"],["2024-07-25T04:08:11.010000"],["2024-07-25T04:08:12.010000"],["2024-07-25T04:08:13.010000"],["2024-07-25T04:08:14.010000"],["2024-07-25T04:08:15.010000"],["2024-07-25T04:08:16.010000"],["2024-07-25T04:08:17.010000"],["2024-07-25T04:08:18.010000"],["2024-07-25T04:08:19.010000"],["2024-07-25T04:08:20.010000"],["2024-07-25T04:08:21.010000"],["2024-07-25T04:08:22.010000"],["2024-07-25T04:08:23.010000"],["2024-07-25T04:08:24.010000"],["2024-07-25T04:08:25.010000"],["2024-07-25T04:08:26.010000"],["2024-07-25T04:08:27.010000"],["2024-07-25T04:08:28.010000"],["2024-07-25T04:08:29.010000"],["2024-07-25T04:08:30.010000"],["2024-07-25T04:08:31.010000"],["2024-07-25T04:08:32.010000"],["2024-07-25T04:08:33.010000"],["2024-07-25T04:08:34.010000"],["2024-07-25T04:08:35.010000"],["2024-07-25T04:08:36.010000"],["2024-07-25T04:08:37.010000"],["2024-07-25T04:08:38.010000"],["2024-07-25T04:08:39.010000"],["2024-07-25T04:08:40.010000"],["2024-07-25T04:08:41.010000"],["2024-07-25T04:08:42.010000"],["2024-07-25T04:08:43.010000"],["2024-07-25T04:08:44.010000"],["2024-07-25T04:08:45.010000"],["2024-07-25T04:08:46.010000"],["2024-07-25T04:08:47.010000"],["2024-07-25T04:08:48.010000"],["2024-07-25T04:08:49.010000"],["2024-07-25T04:08:50.010000"],["2024-07-25T04:08:51.010000"],["2024-07-25T04:08:52.010000"],["2024-07-25T04:08:53.010000"],["2024-07-25T04:08:54.010000"],["2024-07-25T04:08:55.010000"],["2024-07-25T04:08:56.010000"],["2024-07-25T04:08:57.010000"],["2024-07-25T04:08:58.010000"],["2024-07-25T04:08:59.010000"],["2024-07-25T04:09:00.010000"],["2024-07-25T04:09:01.010000"],["2024-07-25T04:09:02.010000"],["2024-07-25T04:09:03.010000"],["2024-07-25T04:09:04.010000"],["2024-07-25T04:09:05.010000"],["2024-07-25T04:09:06.010000"],["2024-07-25T04:09:07.010000"],["2024-07-25T04:09:08.010000"],["2024-07-25T04:09:09.010000"],["2024-07-25T04:09:10.010000"],["2024-07-25T04:09:11.010000"],["2024-07-25T04:09:12.010000"],["2024-07-25T04:09:13.010000"],["2024-07-25T04:09:14.010000"],["2024-07-25T04:09:15.010000"],["2024-07-25T04:09:16.010000"],["2024-07-25T04:09:17.010000"],["2024-07-25T04:09:18.010000"],["2024-07-25T04:09:19.010000"],["2024-07-25T04:09:20.010000"],["2024-07-25T04:09:21.010000"],["2024-07-25T04:09:22.010000"],["2024-07-25T04:09:23.010000"],["2024-07-25T04:09:24.010000"],["2024-07-25T04:09:25.010000"],["2024-07-25T04:09:26.010000"],["2024-07-25T04:09:27.010000"],["2024-07-25T04:09:28.010000"],["2024-07-25T04:09:29.010000"],["2024-07-25T04:09:30.010000"],["2024-07-25T04:09:31.010000"],["2024-07-25T04:09:32.010000"],["2024-07-25T04:09:33.010000"],["2024-07-25T04:09:34.010000"],["2024-07-25T04:09:35.010000"],["2024-07-25T04:09:36.010000"],["2024-07-25T04:09:37.010000"],["2024-07-25T04:09:38.010000"],["2024-07-25T04:09:39.010000"],["2024-07-25T04:09:40.010000"],["2024-07-25T04:09:41.010000"],["2024-07-25T04:09:42.010000"],["2024-07-25T04:09:43.010000"],["2024-07-25T04:09:44.010000"],["2024-07-25T04:09:45.010000"],["2024-07-25T04:09:46.010000"],["2024-07-25T04:09:47.010000"],["2024-07-25T04:09:48.010000"],["2024-07-25T04:09:49.010000"],["2024-07-25T04:09:50.010000"],["2024-07-25T04:09:51.010000"],["2024-07-25T04:09:52.010000"],["2024-07-25T04:09:53.010000"],["2024-07-25T04:09:54.010000"],["2024-07-25T04:09:55.010000"],["2024-07-25T04:09:56.010000"],["2024-07-25T04:09:57.010000"],["2024-07-25T04:09:58.010000"],["2024-07-25T04:09:59.010000"],["2024-07-25T04:10:00.010000"],["2024-07-25T04:10:01.010000"],["2024-07-25T04:10:02.010000"],["2024-07-25T04:10:03.010000"],["2024-07-25T04:10:04.010000"],["2024-07-25T04:10:05.010000"],["2024-07-25T04:10:06.010000"],["2024-07-25T04:10:07.010000"],["2024-07-25T04:10:08.010000"],["2024-07-25T04:10:09.010000"],["2024-07-25T04:10:10.010000"],["2024-07-25T04:10:11.010000"],["2024-07-25T04:10:12.010000"],["2024-07-25T04:10:13.010000"],["2024-07-25T04:10:14.010000"],["2024-07-25T04:10:15.010000"],["2024-07-25T04:10:16.010000"],["2024-07-25T04:10:17.010000"],["2024-07-25T04:10:18.010000"],["2024-07-25T04:10:19.010000"],["2024-07-25T04:10:20.010000"],["2024-07-25T04:10:21.010000"],["2024-07-25T04:10:22.010000"],["2024-07-25T04:10:23.010000"],["2024-07-25T04:10:24.010000"],["2024-07-25T04:10:25.010000"],["2024-07-25T04:10:26.010000"],["2024-07-25T04:10:27.010000"],["2024-07-25T04:10:28.010000"],["2024-07-25T04:10:29.010000"],["2024-07-25T04:10:30.010000"],["2024-07-25T04:10:31.010000"],["2024-07-25T04:10:32.010000"],["2024-07-25T04:10:33.010000"],["2024-07-25T04:10:34.010000"],["2024-07-25T04:10:35.010000"],["2024-07-25T04:10:36.010000"],["2024-07-25T04:10:37.010000"],["2024-07-25T04:10:38.010000"],["2024-07-25T04:10:39.010000"],["2024-07-25T04:10:40.010000"],["2024-07-25T04:10:41.010000"],["2024-07-25T04:10:42.010000"],["2024-07-25T04:10:43.010000"],["2024-07-25T04:10:44.010000"],["2024-07-25T04:10:45.010000"],["2024-07-25T04:10:46.010000"],["2024-07-25T04:10:47.010000"],["2024-07-25T04:10:48.010000"],["2024-07-25T04:10:49.010000"],["2024-07-25T04:10:50.010000"],["2024-07-25T04:10:51.010000"],["2024-07-25T04:10:52.010000"],["2024-07-25T04:10:53.010000"],["2024-07-25T04:10:54.010000"],["2024-07-25T04:10:55.010000"],["2024-07-25T04:10:56.010000"],["2024-07-25T04:10:57.010000"],["2024-07-25T04:10:58.010000"],["2024-07-25T04:10:59.010000"],["2024-07-25T04:11:00.010000"],["2024-07-25T04:11:01.010000"],["2024-07-25T04:11:02.010000"],["2024-07-25T04:11:03.010000"],["2024-07-25T04:11:04.010000"],["2024-07-25T04:11:05.010000"],["2024-07-25T04:11:06.010000"],["2024-07-25T04:11:07.010000"],["2024-07-25T04:11:08.010000"],["2024-07-25T04:11:09.010000"],["2024-07-25T04:11:10.010000"],["2024-07-25T04:11:11.010000"],["2024-07-25T04:11:12.010000"],["2024-07-25T04:11:13.010000"],["2024-07-25T04:11:14.010000"],["2024-07-25T04:11:15.010000"],["2024-07-25T04:11:16.010000"],["2024-07-25T04:11:17.010000"],["2024-07-25T04:11:18.010000"],["2024-07-25T04:11:19.010000"],["2024-07-25T04:11:20.010000"],["2024-07-25T04:11:21.010000"],["2024-07-25T04:11:22.010000"],["2024-07-25T04:11:23.010000"],["2024-07-25T04:11:24.010000"],["2024-07-25T04:11:25.010000"],["2024-07-25T04:11:26.010000"],["2024-07-25T04:11:27.010000"],["2024-07-25T04:11:28.010000"],["2024-07-25T04:11:29.010000"],["2024-07-25T04:11:30.010000"],["2024-07-25T04:11:31.010000"],["2024-07-25T04:11:32.010000"],["2024-07-25T04:11:33.010000"],["2024-07-25T04:11:34.010000"],["2024-07-25T04:11:35.010000"],["2024-07-25T04:11:36.010000"],["2024-07-25T04:11:37.010000"],["2024-07-25T04:11:38.010000"],["2024-07-25T04:11:39.010000"],["2024-07-25T04:11:40.010000"],["2024-07-25T04:11:41.010000"],["2024-07-25T04:11:42.010000"],["2024-07-25T04:11:43.010000"],["2024-07-25T04:11:44.010000"],["2024-07-25T04:11:45.010000"],["2024-07-25T04:11:46.010000"],["2024-07-25T04:11:47.010000"],["2024-07-25T04:11:48.010000"],["2024-07-25T04:11:49.010000"],["2024-07-25T04:11:50.010000"],["2024-07-25T04:11:51.010000"],["2024-07-25T04:11:52.010000"],["2024-07-25T04:11:53.010000"],["2024-07-25T04:11:54.010000"],["2024-07-25T04:11:55.010000"],["2024-07-25T04:11:56.010000"],["2024-07-25T04:11:57.010000"],["2024-07-25T04:11:58.010000"],["2024-07-25T04:11:59.010000"],["2024-07-25T04:12:00.010000"],["2024-07-25T04:12:01.010000"],["2024-07-25T04:12:02.010000"],["2024-07-25T04:12:03.010000"],["2024-07-25T04:12:04.010000"],["2024-07-25T04:12:05.010000"],["2024-07-25T04:12:06.010000"],["2024-07-25T04:12:07.010000"],["2024-07-25T04:12:08.010000"],["2024-07-25T04:12:09.010000"],["2024-07-25T04:12:10.010000"],["2024-07-25T04:12:11.010000"],["2024-07-25T04:12:12.010000"],["2024-07-25T04:12:13.010000"],["2024-07-25T04:12:14.010000"],["2024-07-25T04:12:15.010000"],["2024-07-25T04:12:16.010000"],["2024-07-25T04:12:17.010000"],["2024-07-25T04:12:18.010000"],["2024-07-25T04:12:19.010000"],["2024-07-25T04:12:20.010000"],["2024-07-25T04:12:21.010000"],["2024-07-25T04:12:22.010000"],["2024-07-25T04:12:23.010000"],["2024-07-25T04:12:24.010000"],["2024-07-25T04:12:25.010000"],["2024-07-25T04:12:26.010000"],["2024-07-25T04:12:27.010000"],["2024-07-25T04:12:28.010000"],["2024-07-25T04:12:29.010000"],["2024-07-25T04:12:30.010000"],["2024-07-25T04:12:31.010000"],["2024-07-25T04:12:32.010000"],["2024-07-25T04:12:33.010000"],["2024-07-25T04:12:34.010000"],["2024-07-25T04:12:35.010000"],["2024-07-25T04:12:36.010000"],["2024-07-25T04:12:37.010000"],["2024-07-25T04:12:38.010000"],["2024-07-25T04:12:39.010000"],["2024-07-25T04:12:40.010000"],["2024-07-25T04:12:41.010000"],["2024-07-25T04:12:42.010000"],["2024-07-25T04:12:43.010000"],["2024-07-25T04:12:44.010000"],["2024-07-25T04:12:45.010000"],["2024-07-25T04:12:46.010000"],["2024-07-25T04:12:47.010000"],["2024-07-25T04:12:48.010000"],["2024-07-25T04:12:49.010000"],["2024-07-25T04:12:50.010000"],["2024-07-25T04:12:51.010000"],["2024-07-25T04:12:52.010000"],["2024-07-25T04:12:53.010000"],["2024-07-25T04:12:54.010000"],["2024-07-25T04:12:55.010000"],["2024-07-25T04:12:56.010000"],["2024-07-25T04:12:57.010000"],["2024-07-25T04:12:58.010000"],["2024-07-25T04:12:59.010000"],["2024-07-25T04:13:00.010000"],["2024-07-25T04:13:01.010000"],["2024-07-25T04:13:02.010000"],["2024-07-25T04:13:03.010000"],["2024-07-25T04:13:04.010000"],["2024-07-25T04:13:05.010000"],["2024-07-25T04:13:06.010000"],["2024-07-25T04:13:07.010000"],["2024-07-25T04:13:08.010000"],["2024-07-25T04:13:09.010000"],["2024-07-25T04:13:10.010000"],["2024-07-25T04:13:11.010000"],["2024-07-25T04:13:12.010000"],["2024-07-25T04:13:13.010000"],["2024-07-25T04:13:14.010000"],["2024-07-25T04:13:15.010000"],["2024-07-25T04:13:16.010000"],["2024-07-25T04:13:17.010000"],["2024-07-25T04:13:18.010000"],["2024-07-25T04:13:19.010000"],["2024-07-25T04:13:20.010000"],["2024-07-25T04:13:21.010000"],["2024-07-25T04:13:22.010000"],["2024-07-25T04:13:23.010000"],["2024-07-25T04:13:24.010000"],["2024-07-25T04:13:25.010000"],["2024-07-25T04:13:26.010000"],["2024-07-25T04:13:27.010000"],["2024-07-25T04:13:28.010000"],["2024-07-25T04:13:29.010000"],["2024-07-25T04:13:30.010000"],["2024-07-25T04:13:31.010000"],["2024-07-25T04:13:32.010000"],["2024-07-25T04:13:33.010000"],["2024-07-25T04:13:34.010000"],["2024-07-25T04:13:35.010000"],["2024-07-25T04:13:36.010000"],["2024-07-25T04:13:37.010000"],["2024-07-25T04:13:38.010000"],["2024-07-25T04:13:39.010000"],["2024-07-25T04:13:40.010000"],["2024-07-25T04:13:41.010000"],["2024-07-25T04:13:42.010000"],["2024-07-25T04:13:43.010000"],["2024-07-25T04:13:44.010000"],["2024-07-25T04:13:45.010000"],["2024-07-25T04:13:46.010000"],["2024-07-25T04:13:47.010000"],["2024-07-25T04:13:48.010000"],["2024-07-25T04:13:49.010000"],["2024-07-25T04:13:50.010000"],["2024-07-25T04:13:51.010000"],["2024-07-25T04:13:52.010000"],["2024-07-25T04:13:53.010000"],["2024-07-25T04:13:54.010000"],["2024-07-25T04:13:55.010000"],["2024-07-25T04:13:56.010000"],["2024-07-25T04:13:57.010000"],["2024-07-25T04:13:58.010000"],["2024-07-25T04:13:59.010000"],["2024-07-25T04:14:00.010000"],["2024-07-25T04:14:01.010000"],["2024-07-25T04:14:02.010000"],["2024-07-25T04:14:03.010000"],["2024-07-25T04:14:04.010000"],["2024-07-25T04:14:05.010000"],["2024-07-25T04:14:06.010000"],["2024-07-25T04:14:07.010000"],["2024-07-25T04:14:08.010000"],["2024-07-25T04:14:09.010000"],["2024-07-25T04:14:10.010000"],["2024-07-25T04:14:11.010000"],["2024-07-25T04:14:12.010000"],["2024-07-25T04:14:13.010000"],["2024-07-25T04:14:14.010000"],["2024-07-25T04:14:15.010000"],["2024-07-25T04:14:16.010000"],["2024-07-25T04:14:17.010000"],["2024-07-25T04:14:18.010000"],["2024-07-25T04:14:19.010000"],["2024-07-25T04:14:20.010000"],["2024-07-25T04:14:21.010000"],["2024-07-25T04:14:22.010000"],["2024-07-25T04:14:23.010000"],["2024-07-25T04:14:24.010000"],["2024-07-25T04:14:25.010000"],["2024-07-25T04:14:26.010000"],["2024-07-25T04:14:27.010000"],["2024-07-25T04:14:28.010000"],["2024-07-25T04:14:29.010000"],["2024-07-25T04:14:30.010000"],["2024-07-25T04:14:31.010000"],["2024-07-25T04:14:32.010000"],["2024-07-25T04:14:33.010000"],["2024-07-25T04:14:34.010000"],["2024-07-25T04:14:35.010000"],["2024-07-25T04:14:36.010000"],["2024-07-25T04:14:37.010000"],["2024-07-25T04:14:38.010000"],["2024-07-25T04:14:39.010000"],["2024-07-25T04:14:40.010000"],["2024-07-25T04:14:41.010000"],["2024-07-25T04:14:42.010000"],["2024-07-25T04:14:43.010000"],["2024-07-25T04:14:44.010000"],["2024-07-25T04:14:45.010000"],["2024-07-25T04:14:46.010000"],["2024-07-25T04:14:47.010000"],["2024-07-25T04:14:48.010000"],["2024-07-25T04:14:49.010000"],["2024-07-25T04:14:50.010000"],["2024-07-25T04:14:51.010000"],["2024-07-25T04:14:52.010000"],["2024-07-25T04:14:53.010000"],["2024-07-25T04:14:54.010000"],["2024-07-25T04:14:55.010000"],["2024-07-25T04:14:56.010000"],["2024-07-25T04:14:57.010000"],["2024-07-25T04:14:58.010000"],["2024-07-25T04:14:59.010000"],["2024-07-25T04:15:00.010000"],["2024-07-25T04:15:01.010000"],["2024-07-25T04:15:02.010000"],["2024-07-25T04:15:03.010000"],["2024-07-25T04:15:04.010000"],["2024-07-25T04:15:05.010000"],["2024-07-25T04:15:06.010000"],["2024-07-25T04:15:07.010000"],["2024-07-25T04:15:08.010000"],["2024-07-25T04:15:09.010000"],["2024-07-25T04:15:10.010000"],["2024-07-25T04:15:11.010000"],["2024-07-25T04:15:12.010000"],["2024-07-25T04:15:13.010000"],["2024-07-25T04:15:14.010000"],["2024-07-25T04:15:15.010000"],["2024-07-25T04:15:16.010000"],["2024-07-25T04:15:17.010000"],["2024-07-25T04:15:18.010000"],["2024-07-25T04:15:19.010000"],["2024-07-25T04:15:20.010000"],["2024-07-25T04:15:21.010000"],["2024-07-25T04:15:22.010000"],["2024-07-25T04:15:23.010000"],["2024-07-25T04:15:24.010000"],["2024-07-25T04:15:25.010000"],["2024-07-25T04:15:26.010000"],["2024-07-25T04:15:27.010000"],["2024-07-25T04:15:28.010000"],["2024-07-25T04:15:29.010000"],["2024-07-25T04:15:30.010000"],["2024-07-25T04:15:31.010000"],["2024-07-25T04:15:32.010000"],["2024-07-25T04:15:33.010000"],["2024-07-25T04:15:34.010000"],["2024-07-25T04:15:35.010000"],["2024-07-25T04:15:36.010000"],["2024-07-25T04:15:37.010000"],["2024-07-25T04:15:38.010000"],["2024-07-25T04:15:39.010000"],["2024-07-25T04:15:40.010000"],["2024-07-25T04:15:41.010000"],["2024-07-25T04:15:42.010000"],["2024-07-25T04:15:43.010000"],["2024-07-25T04:15:44.010000"],["2024-07-25T04:15:45.010000"],["2024-07-25T04:15:46.010000"],["2024-07-25T04:15:47.010000"],["2024-07-25T04:15:48.010000"],["2024-07-25T04:15:49.010000"],["2024-07-25T04:15:50.010000"],["2024-07-25T04:15:51.010000"],["2024-07-25T04:15:52.010000"],["2024-07-25T04:15:53.010000"],["2024-07-25T04:15:54.010000"],["2024-07-25T04:15:55.010000"],["2024-07-25T04:15:56.010000"],["2024-07-25T04:15:57.010000"],["2024-07-25T04:15:58.010000"],["2024-07-25T04:15:59.010000"],["2024-07-25T04:16:00.010000"],["2024-07-25T04:16:01.010000"],["2024-07-25T04:16:02.010000"],["2024-07-25T04:16:03.010000"],["2024-07-25T04:16:04.010000"],["2024-07-25T04:16:05.010000"],["2024-07-25T04:16:06.010000"],["2024-07-25T04:16:07.010000"],["2024-07-25T04:16:08.010000"],["2024-07-25T04:16:09.010000"],["2024-07-25T04:16:10.010000"],["2024-07-25T04:16:11.010000"],["2024-07-25T04:16:12.010000"],["2024-07-25T04:16:13.010000"],["2024-07-25T04:16:14.010000"],["2024-07-25T04:16:15.010000"],["2024-07-25T04:16:16.010000"],["2024-07-25T04:16:17.010000"],["2024-07-25T04:16:18.010000"],["2024-07-25T04:16:19.010000"],["2024-07-25T04:16:20.010000"],["2024-07-25T04:16:21.010000"],["2024-07-25T04:16:22.010000"],["2024-07-25T04:16:23.010000"],["2024-07-25T04:16:24.010000"],["2024-07-25T04:16:25.010000"],["2024-07-25T04:16:26.010000"],["2024-07-25T04:16:27.010000"],["2024-07-25T04:16:28.010000"],["2024-07-25T04:16:29.010000"],["2024-07-25T04:16:30.010000"],["2024-07-25T04:16:31.010000"],["2024-07-25T04:16:32.010000"],["2024-07-25T04:16:33.010000"],["2024-07-25T04:16:34.010000"],["2024-07-25T04:16:35.010000"],["2024-07-25T04:16:36.010000"],["2024-07-25T04:16:37.010000"],["2024-07-25T04:16:38.010000"],["2024-07-25T04:16:39.010000"],["2024-07-25T04:16:40.010000"],["2024-07-25T04:16:41.010000"],["2024-07-25T04:16:42.010000"],["2024-07-25T04:16:43.010000"],["2024-07-25T04:16:44.010000"],["2024-07-25T04:16:45.010000"],["2024-07-25T04:16:46.010000"],["2024-07-25T04:16:47.010000"],["2024-07-25T04:16:48.010000"],["2024-07-25T04:16:49.010000"],["2024-07-25T04:16:50.010000"],["2024-07-25T04:16:51.010000"],["2024-07-25T04:16:52.010000"],["2024-07-25T04:16:53.010000"],["2024-07-25T04:16:54.010000"],["2024-07-25T04:16:55.010000"],["2024-07-25T04:16:56.010000"],["2024-07-25T04:16:57.010000"],["2024-07-25T04:16:58.010000"],["2024-07-25T04:16:59.010000"],["2024-07-25T04:17:00.010000"],["2024-07-25T04:17:01.010000"],["2024-07-25T04:17:02.010000"],["2024-07-25T04:17:03.010000"],["2024-07-25T04:17:04.010000"],["2024-07-25T04:17:05.010000"],["2024-07-25T04:17:06.010000"],["2024-07-25T04:17:07.010000"],["2024-07-25T04:17:08.010000"],["2024-07-25T04:17:09.010000"],["2024-07-25T04:17:10.010000"],["2024-07-25T04:17:11.010000"],["2024-07-25T04:17:12.010000"],["2024-07-25T04:17:13.010000"],["2024-07-25T04:17:14.010000"],["2024-07-25T04:17:15.010000"],["2024-07-25T04:17:16.010000"],["2024-07-25T04:17:17.010000"],["2024-07-25T04:17:18.010000"],["2024-07-25T04:17:19.010000"],["2024-07-25T04:17:20.010000"],["2024-07-25T04:17:21.010000"],["2024-07-25T04:17:22.010000"],["2024-07-25T04:17:23.010000"],["2024-07-25T04:17:24.010000"],["2024-07-25T04:17:25.010000"],["2024-07-25T04:17:26.010000"],["2024-07-25T04:17:27.010000"],["2024-07-25T04:17:28.010000"],["2024-07-25T04:17:29.010000"],["2024-07-25T04:17:30.010000"],["2024-07-25T04:17:31.010000"],["2024-07-25T04:17:32.010000"],["2024-07-25T04:17:33.010000"],["2024-07-25T04:17:34.010000"],["2024-07-25T04:17:35.010000"],["2024-07-25T04:17:36.010000"],["2024-07-25T04:17:37.010000"],["2024-07-25T04:17:38.010000"],["2024-07-25T04:17:39.010000"],["2024-07-25T04:17:40.010000"],["2024-07-25T04:17:41.010000"],["2024-07-25T04:17:42.010000"],["2024-07-25T04:17:43.010000"],["2024-07-25T04:17:44.010000"],["2024-07-25T04:17:45.010000"],["2024-07-25T04:17:46.010000"],["2024-07-25T04:17:47.010000"],["2024-07-25T04:17:48.010000"],["2024-07-25T04:17:49.010000"],["2024-07-25T04:17:50.010000"],["2024-07-25T04:17:51.010000"],["2024-07-25T04:17:52.010000"],["2024-07-25T04:17:53.010000"],["2024-07-25T04:17:54.010000"],["2024-07-25T04:17:55.010000"],["2024-07-25T04:17:56.010000"],["2024-07-25T04:17:57.010000"],["2024-07-25T04:17:58.010000"],["2024-07-25T04:17:59.010000"],["2024-07-25T04:18:00.010000"],["2024-07-25T04:18:01.010000"],["2024-07-25T04:18:02.010000"],["2024-07-25T04:18:03.010000"],["2024-07-25T04:18:04.010000"],["2024-07-25T04:18:05.010000"],["2024-07-25T04:18:06.010000"],["2024-07-25T04:18:07.010000"],["2024-07-25T04:18:08.010000"],["2024-07-25T04:18:09.010000"],["2024-07-25T04:18:10.010000"],["2024-07-25T04:18:11.010000"],["2024-07-25T04:18:12.010000"],["2024-07-25T04:18:13.010000"],["2024-07-25T04:18:14.010000"],["2024-07-25T04:18:15.010000"],["2024-07-25T04:18:16.010000"],["2024-07-25T04:18:17.010000"],["2024-07-25T04:18:18.010000"],["2024-07-25T04:18:19.010000"],["2024-07-25T04:18:20.010000"],["2024-07-25T04:18:21.010000"],["2024-07-25T04:18:22.010000"],["2024-07-25T04:18:23.010000"],["2024-07-25T04:18:24.010000"],["2024-07-25T04:18:25.010000"],["2024-07-25T04:18:26.010000"],["2024-07-25T04:18:27.010000"],["2024-07-25T04:18:28.010000"],["2024-07-25T04:18:29.010000"],["2024-07-25T04:18:30.010000"],["2024-07-25T04:18:31.010000"],["2024-07-25T04:18:32.010000"],["2024-07-25T04:18:33.010000"],["2024-07-25T04:18:34.010000"],["2024-07-25T04:18:35.010000"],["2024-07-25T04:18:36.010000"],["2024-07-25T04:18:37.010000"],["2024-07-25T04:18:38.010000"],["2024-07-25T04:18:39.010000"],["2024-07-25T04:18:40.010000"],["2024-07-25T04:18:41.010000"],["2024-07-25T04:18:42.010000"],["2024-07-25T04:18:43.010000"],["2024-07-25T04:18:44.010000"],["2024-07-25T04:18:45.010000"],["2024-07-25T04:18:46.010000"],["2024-07-25T04:18:47.010000"],["2024-07-25T04:18:48.010000"],["2024-07-25T04:18:49.010000"],["2024-07-25T04:18:50.010000"],["2024-07-25T04:18:51.010000"],["2024-07-25T04:18:52.010000"],["2024-07-25T04:18:53.010000"],["2024-07-25T04:18:54.010000"],["2024-07-25T04:18:55.010000"],["2024-07-25T04:18:56.010000"],["2024-07-25T04:18:57.010000"],["2024-07-25T04:18:58.010000"],["2024-07-25T04:18:59.010000"],["2024-07-25T04:19:00.010000"],["2024-07-25T04:19:01.010000"],["2024-07-25T04:19:02.010000"],["2024-07-25T04:19:03.010000"],["2024-07-25T04:19:04.010000"],["2024-07-25T04:19:05.010000"],["2024-07-25T04:19:06.010000"],["2024-07-25T04:19:07.010000"],["2024-07-25T04:19:08.010000"],["2024-07-25T04:19:09.010000"],["2024-07-25T04:19:10.010000"],["2024-07-25T04:19:11.010000"],["2024-07-25T04:19:12.010000"],["2024-07-25T04:19:13.010000"],["2024-07-25T04:19:14.010000"],["2024-07-25T04:19:15.010000"],["2024-07-25T04:19:16.010000"],["2024-07-25T04:19:17.010000"],["2024-07-25T04:19:18.010000"],["2024-07-25T04:19:19.010000"],["2024-07-25T04:19:20.010000"],["2024-07-25T04:19:21.010000"],["2024-07-25T04:19:22.010000"],["2024-07-25T04:19:23.010000"],["2024-07-25T04:19:24.010000"],["2024-07-25T04:19:25.010000"],["2024-07-25T04:19:26.010000"],["2024-07-25T04:19:27.010000"],["2024-07-25T04:19:28.010000"],["2024-07-25T04:19:29.010000"],["2024-07-25T04:19:30.010000"],["2024-07-25T04:19:31.010000"],["2024-07-25T04:19:32.010000"],["2024-07-25T04:19:33.010000"],["2024-07-25T04:19:34.010000"],["2024-07-25T04:19:35.010000"],["2024-07-25T04:19:36.010000"],["2024-07-25T04:19:37.010000"],["2024-07-25T04:19:38.010000"],["2024-07-25T04:19:39.010000"],["2024-07-25T04:19:40.010000"],["2024-07-25T04:19:41.010000"],["2024-07-25T04:19:42.010000"],["2024-07-25T04:19:43.010000"],["2024-07-25T04:19:44.010000"],["2024-07-25T04:19:45.010000"],["2024-07-25T04:19:46.010000"],["2024-07-25T04:19:47.010000"],["2024-07-25T04:19:48.010000"],["2024-07-25T04:19:49.010000"],["2024-07-25T04:19:50.010000"],["2024-07-25T04:19:51.010000"],["2024-07-25T04:19:52.010000"],["2024-07-25T04:19:53.010000"],["2024-07-25T04:19:54.010000"],["2024-07-25T04:19:55.010000"],["2024-07-25T04:19:56.010000"],["2024-07-25T04:19:57.010000"],["2024-07-25T04:19:58.010000"],["2024-07-25T04:19:59.010000"],["2024-07-25T04:20:00.010000"],["2024-07-25T04:20:01.010000"],["2024-07-25T04:20:02.010000"],["2024-07-25T04:20:03.010000"],["2024-07-25T04:20:04.010000"],["2024-07-25T04:20:05.010000"],["2024-07-25T04:20:06.010000"],["2024-07-25T04:20:07.010000"],["2024-07-25T04:20:08.010000"],["2024-07-25T04:20:09.010000"],["2024-07-25T04:20:10.010000"],["2024-07-25T04:20:11.010000"],["2024-07-25T04:20:12.010000"],["2024-07-25T04:20:13.010000"],["2024-07-25T04:20:14.010000"],["2024-07-25T04:20:15.010000"],["2024-07-25T04:20:16.010000"],["2024-07-25T04:20:17.010000"],["2024-07-25T04:20:18.010000"],["2024-07-25T04:20:19.010000"],["2024-07-25T04:20:20.010000"],["2024-07-25T04:20:21.010000"],["2024-07-25T04:20:22.010000"],["2024-07-25T04:20:23.010000"],["2024-07-25T04:20:24.010000"],["2024-07-25T04:20:25.010000"],["2024-07-25T04:20:26.010000"],["2024-07-25T04:20:27.010000"],["2024-07-25T04:20:28.010000"],["2024-07-25T04:20:29.010000"],["2024-07-25T04:20:30.010000"],["2024-07-25T04:20:31.010000"],["2024-07-25T04:20:32.010000"],["2024-07-25T04:20:33.010000"],["2024-07-25T04:20:34.010000"],["2024-07-25T04:20:35.010000"],["2024-07-25T04:20:36.010000"],["2024-07-25T04:20:37.010000"],["2024-07-25T04:20:38.010000"],["2024-07-25T04:20:39.010000"],["2024-07-25T04:20:40.010000"],["2024-07-25T04:20:41.010000"],["2024-07-25T04:20:42.010000"],["2024-07-25T04:20:43.010000"],["2024-07-25T04:20:44.010000"],["2024-07-25T04:20:45.010000"],["2024-07-25T04:20:46.010000"],["2024-07-25T04:20:47.010000"],["2024-07-25T04:20:48.010000"],["2024-07-25T04:20:49.010000"],["2024-07-25T04:20:50.010000"],["2024-07-25T04:20:51.010000"],["2024-07-25T04:20:52.010000"],["2024-07-25T04:20:53.010000"],["2024-07-25T04:20:54.010000"],["2024-07-25T04:20:55.010000"],["2024-07-25T04:20:56.010000"],["2024-07-25T04:20:57.010000"],["2024-07-25T04:20:58.010000"],["2024-07-25T04:20:59.010000"],["2024-07-25T04:21:00.010000"],["2024-07-25T04:21:01.010000"],["2024-07-25T04:21:02.010000"],["2024-07-25T04:21:03.010000"],["2024-07-25T04:21:04.010000"],["2024-07-25T04:21:05.010000"],["2024-07-25T04:21:06.010000"],["2024-07-25T04:21:07.010000"],["2024-07-25T04:21:08.010000"],["2024-07-25T04:21:09.010000"],["2024-07-25T04:21:10.010000"],["2024-07-25T04:21:11.010000"],["2024-07-25T04:21:12.010000"],["2024-07-25T04:21:13.010000"],["2024-07-25T04:21:14.010000"],["2024-07-25T04:21:15.010000"],["2024-07-25T04:21:16.010000"],["2024-07-25T04:21:17.010000"],["2024-07-25T04:21:18.010000"],["2024-07-25T04:21:19.010000"],["2024-07-25T04:21:20.010000"],["2024-07-25T04:21:21.010000"],["2024-07-25T04:21:22.010000"],["2024-07-25T04:21:23.010000"],["2024-07-25T04:21:24.010000"],["2024-07-25T04:21:25.010000"],["2024-07-25T04:21:26.010000"],["2024-07-25T04:21:27.010000"],["2024-07-25T04:21:28.010000"],["2024-07-25T04:21:29.010000"],["2024-07-25T04:21:30.010000"],["2024-07-25T04:21:31.010000"],["2024-07-25T04:21:32.010000"],["2024-07-25T04:21:33.010000"],["2024-07-25T04:21:34.010000"],["2024-07-25T04:21:35.010000"],["2024-07-25T04:21:36.010000"],["2024-07-25T04:21:37.010000"],["2024-07-25T04:21:38.010000"],["2024-07-25T04:21:39.010000"],["2024-07-25T04:21:40.010000"],["2024-07-25T04:21:41.010000"],["2024-07-25T04:21:42.010000"],["2024-07-25T04:21:43.010000"],["2024-07-25T04:21:44.010000"],["2024-07-25T04:21:45.010000"],["2024-07-25T04:21:46.010000"],["2024-07-25T04:21:47.010000"],["2024-07-25T04:21:48.010000"],["2024-07-25T04:21:49.010000"],["2024-07-25T04:21:50.010000"],["2024-07-25T04:21:51.010000"],["2024-07-25T04:21:52.010000"],["2024-07-25T04:21:53.010000"],["2024-07-25T04:21:54.010000"],["2024-07-25T04:21:55.010000"],["2024-07-25T04:21:56.010000"],["2024-07-25T04:21:57.010000"],["2024-07-25T04:21:58.010000"],["2024-07-25T04:21:59.010000"],["2024-07-25T04:22:00.010000"],["2024-07-25T04:22:01.010000"],["2024-07-25T04:22:02.010000"],["2024-07-25T04:22:03.010000"],["2024-07-25T04:22:04.010000"],["2024-07-25T04:22:05.010000"],["2024-07-25T04:22:06.010000"],["2024-07-25T04:22:07.010000"],["2024-07-25T04:22:08.010000"],["2024-07-25T04:22:09.010000"],["2024-07-25T04:22:10.010000"],["2024-07-25T04:22:11.010000"],["2024-07-25T04:22:12.010000"],["2024-07-25T04:22:13.010000"],["2024-07-25T04:22:14.010000"],["2024-07-25T04:22:15.010000"],["2024-07-25T04:22:16.010000"],["2024-07-25T04:22:17.010000"],["2024-07-25T04:22:18.010000"],["2024-07-25T04:22:19.010000"],["2024-07-25T04:22:20.010000"],["2024-07-25T04:22:21.010000"],["2024-07-25T04:22:22.010000"],["2024-07-25T04:22:23.010000"],["2024-07-25T04:22:24.010000"],["2024-07-25T04:22:25.010000"],["2024-07-25T04:22:26.010000"],["2024-07-25T04:22:27.010000"],["2024-07-25T04:22:28.010000"],["2024-07-25T04:22:29.010000"],["2024-07-25T04:22:30.010000"],["2024-07-25T04:22:31.010000"],["2024-07-25T04:22:32.010000"],["2024-07-25T04:22:33.010000"],["2024-07-25T04:22:34.010000"],["2024-07-25T04:22:35.010000"],["2024-07-25T04:22:36.010000"],["2024-07-25T04:22:37.010000"],["2024-07-25T04:22:38.010000"],["2024-07-25T04:22:39.010000"],["2024-07-25T04:22:40.010000"],["2024-07-25T04:22:41.010000"],["2024-07-25T04:22:42.010000"],["2024-07-25T04:22:43.010000"],["2024-07-25T04:22:44.010000"],["2024-07-25T04:22:45.010000"],["2024-07-25T04:22:46.010000"],["2024-07-25T04:22:47.010000"],["2024-07-25T04:22:48.010000"],["2024-07-25T04:22:49.010000"],["2024-07-25T04:22:50.010000"],["2024-07-25T04:22:51.010000"],["2024-07-25T04:22:52.010000"],["2024-07-25T04:22:53.010000"],["2024-07-25T04:22:54.010000"],["2024-07-25T04:22:55.010000"],["2024-07-25T04:22:56.010000"],["2024-07-25T04:22:57.010000"],["2024-07-25T04:22:58.010000"],["2024-07-25T04:22:59.010000"],["2024-07-25T04:23:00.010000"],["2024-07-25T04:23:01.010000"],["2024-07-25T04:23:02.010000"],["2024-07-25T04:23:03.010000"],["2024-07-25T04:23:04.010000"],["2024-07-25T04:23:05.010000"],["2024-07-25T04:23:06.010000"],["2024-07-25T04:23:07.010000"],["2024-07-25T04:23:08.010000"],["2024-07-25T04:23:09.010000"],["2024-07-25T04:23:10.010000"],["2024-07-25T04:23:11.010000"],["2024-07-25T04:23:12.010000"],["2024-07-25T04:23:13.010000"],["2024-07-25T04:23:14.010000"],["2024-07-25T04:23:15.010000"],["2024-07-25T04:23:16.010000"],["2024-07-25T04:23:17.010000"],["2024-07-25T04:23:18.010000"],["2024-07-25T04:23:19.010000"],["2024-07-25T04:23:20.010000"],["2024-07-25T04:23:21.010000"],["2024-07-25T04:23:22.010000"],["2024-07-25T04:23:23.010000"],["2024-07-25T04:23:24.010000"],["2024-07-25T04:23:25.010000"],["2024-07-25T04:23:26.010000"],["2024-07-25T04:23:27.010000"],["2024-07-25T04:23:28.010000"],["2024-07-25T04:23:29.010000"],["2024-07-25T04:23:30.010000"],["2024-07-25T04:23:31.010000"],["2024-07-25T04:23:32.010000"],["2024-07-25T04:23:33.010000"],["2024-07-25T04:23:34.010000"],["2024-07-25T04:23:35.010000"],["2024-07-25T04:23:36.010000"],["2024-07-25T04:23:37.010000"],["2024-07-25T04:23:38.010000"],["2024-07-25T04:23:39.010000"],["2024-07-25T04:23:40.010000"],["2024-07-25T04:23:41.010000"],["2024-07-25T04:23:42.010000"],["2024-07-25T04:23:43.010000"],["2024-07-25T04:23:44.010000"],["2024-07-25T04:23:45.010000"],["2024-07-25T04:23:46.010000"],["2024-07-25T04:23:47.010000"],["2024-07-25T04:23:48.010000"],["2024-07-25T04:23:49.010000"],["2024-07-25T04:23:50.010000"],["2024-07-25T04:23:51.010000"],["2024-07-25T04:23:52.010000"],["2024-07-25T04:23:53.010000"],["2024-07-25T04:23:54.010000"],["2024-07-25T04:23:55.010000"],["2024-07-25T04:23:56.010000"],["2024-07-25T04:23:57.010000"],["2024-07-25T04:23:58.010000"],["2024-07-25T04:23:59.010000"],["2024-07-25T04:24:00.010000"],["2024-07-25T04:24:01.010000"],["2024-07-25T04:24:02.010000"],["2024-07-25T04:24:03.010000"],["2024-07-25T04:24:04.010000"],["2024-07-25T04:24:05.010000"],["2024-07-25T04:24:06.010000"],["2024-07-25T04:24:07.010000"],["2024-07-25T04:24:08.010000"],["2024-07-25T04:24:09.010000"],["2024-07-25T04:24:10.010000"],["2024-07-25T04:24:11.010000"],["2024-07-25T04:24:12.010000"],["2024-07-25T04:24:13.010000"],["2024-07-25T04:24:14.010000"],["2024-07-25T04:24:15.010000"],["2024-07-25T04:24:16.010000"],["2024-07-25T04:24:17.010000"],["2024-07-25T04:24:18.010000"],["2024-07-25T04:24:19.010000"],["2024-07-25T04:24:20.010000"],["2024-07-25T04:24:21.010000"],["2024-07-25T04:24:22.010000"],["2024-07-25T04:24:23.010000"],["2024-07-25T04:24:24.010000"],["2024-07-25T04:24:25.010000"],["2024-07-25T04:24:26.010000"],["2024-07-25T04:24:27.010000"],["2024-07-25T04:24:28.010000"],["2024-07-25T04:24:29.010000"],["2024-07-25T04:24:30.010000"],["2024-07-25T04:24:31.010000"],["2024-07-25T04:24:32.010000"],["2024-07-25T04:24:33.010000"],["2024-07-25T04:24:34.010000"],["2024-07-25T04:24:35.010000"],["2024-07-25T04:24:36.010000"],["2024-07-25T04:24:37.010000"],["2024-07-25T04:24:38.010000"],["2024-07-25T04:24:39.010000"],["2024-07-25T04:24:40.010000"],["2024-07-25T04:24:41.010000"],["2024-07-25T04:24:42.010000"],["2024-07-25T04:24:43.010000"],["2024-07-25T04:24:44.010000"],["2024-07-25T04:24:45.010000"],["2024-07-25T04:24:46.010000"],["2024-07-25T04:24:47.010000"],["2024-07-25T04:24:48.010000"],["2024-07-25T04:24:49.010000"],["2024-07-25T04:24:50.010000"],["2024-07-25T04:24:51.010000"],["2024-07-25T04:24:52.010000"],["2024-07-25T04:24:53.010000"],["2024-07-25T04:24:54.010000"],["2024-07-25T04:24:55.010000"],["2024-07-25T04:24:56.010000"],["2024-07-25T04:24:57.010000"],["2024-07-25T04:24:58.010000"],["2024-07-25T04:24:59.010000"],["2024-07-25T04:25:00.010000"],["2024-07-25T04:25:01.010000"],["2024-07-25T04:25:02.010000"],["2024-07-25T04:25:03.010000"],["2024-07-25T04:25:04.010000"],["2024-07-25T04:25:05.010000"],["2024-07-25T04:25:06.010000"],["2024-07-25T04:25:07.010000"],["2024-07-25T04:25:08.010000"],["2024-07-25T04:25:09.010000"],["2024-07-25T04:25:10.010000"],["2024-07-25T04:25:11.010000"],["2024-07-25T04:25:12.010000"],["2024-07-25T04:25:13.010000"],["2024-07-25T04:25:14.010000"],["2024-07-25T04:25:15.010000"],["2024-07-25T04:25:16.010000"],["2024-07-25T04:25:17.010000"],["2024-07-25T04:25:18.010000"],["2024-07-25T04:25:19.010000"],["2024-07-25T04:25:20.010000"],["2024-07-25T04:25:21.010000"],["2024-07-25T04:25:22.010000"],["2024-07-25T04:25:23.010000"],["2024-07-25T04:25:24.010000"],["2024-07-25T04:25:25.010000"],["2024-07-25T04:25:26.010000"],["2024-07-25T04:25:27.010000"],["2024-07-25T04:25:28.010000"],["2024-07-25T04:25:29.010000"],["2024-07-25T04:25:30.010000"],["2024-07-25T04:25:31.010000"],["2024-07-25T04:25:32.010000"],["2024-07-25T04:25:33.010000"],["2024-07-25T04:25:34.010000"],["2024-07-25T04:25:35.010000"],["2024-07-25T04:25:36.010000"],["2024-07-25T04:25:37.010000"],["2024-07-25T04:25:38.010000"],["2024-07-25T04:25:39.010000"],["2024-07-25T04:25:40.010000"],["2024-07-25T04:25:41.010000"],["2024-07-25T04:25:42.010000"],["2024-07-25T04:25:43.010000"],["2024-07-25T04:25:44.010000"],["2024-07-25T04:25:45.010000"],["2024-07-25T04:25:46.010000"],["2024-07-25T04:25:47.010000"],["2024-07-25T04:25:48.010000"],["2024-07-25T04:25:49.010000"],["2024-07-25T04:25:50.010000"],["2024-07-25T04:25:51.010000"],["2024-07-25T04:25:52.010000"],["2024-07-25T04:25:53.010000"],["2024-07-25T04:25:54.010000"],["2024-07-25T04:25:55.010000"],["2024-07-25T04:25:56.010000"],["2024-07-25T04:25:57.010000"],["2024-07-25T04:25:58.010000"],["2024-07-25T04:25:59.010000"],["2024-07-25T04:26:00.010000"],["2024-07-25T04:26:01.010000"],["2024-07-25T04:26:02.010000"],["2024-07-25T04:26:03.010000"],["2024-07-25T04:26:04.010000"],["2024-07-25T04:26:05.010000"],["2024-07-25T04:26:06.010000"],["2024-07-25T04:26:07.010000"],["2024-07-25T04:26:08.010000"],["2024-07-25T04:26:09.010000"],["2024-07-25T04:26:10.010000"],["2024-07-25T04:26:11.010000"],["2024-07-25T04:26:12.010000"],["2024-07-25T04:26:13.010000"],["2024-07-25T04:26:14.010000"],["2024-07-25T04:26:15.010000"],["2024-07-25T04:26:16.010000"],["2024-07-25T04:26:17.010000"],["2024-07-25T04:26:18.010000"],["2024-07-25T04:26:19.010000"],["2024-07-25T04:26:20.010000"],["2024-07-25T04:26:21.010000"],["2024-07-25T04:26:22.010000"],["2024-07-25T04:26:23.010000"],["2024-07-25T04:26:24.010000"],["2024-07-25T04:26:25.010000"],["2024-07-25T04:26:26.010000"],["2024-07-25T04:26:27.010000"],["2024-07-25T04:26:28.010000"],["2024-07-25T04:26:29.010000"],["2024-07-25T04:26:30.010000"],["2024-07-25T04:26:31.010000"],["2024-07-25T04:26:32.010000"],["2024-07-25T04:26:33.010000"],["2024-07-25T04:26:34.010000"],["2024-07-25T04:26:35.010000"],["2024-07-25T04:26:36.010000"],["2024-07-25T04:26:37.010000"],["2024-07-25T04:26:38.010000"],["2024-07-25T04:26:39.010000"],["2024-07-25T04:26:40.010000"],["2024-07-25T04:26:41.010000"],["2024-07-25T04:26:42.010000"],["2024-07-25T04:26:43.010000"],["2024-07-25T04:26:44.010000"],["2024-07-25T04:26:45.010000"],["2024-07-25T04:26:46.010000"],["2024-07-25T04:26:47.010000"],["2024-07-25T04:26:48.010000"],["2024-07-25T04:26:49.010000"],["2024-07-25T04:26:50.010000"],["2024-07-25T04:26:51.010000"],["2024-07-25T04:26:52.010000"],["2024-07-25T04:26:53.010000"],["2024-07-25T04:26:54.010000"],["2024-07-25T04:26:55.010000"],["2024-07-25T04:26:56.010000"],["2024-07-25T04:26:57.010000"],["2024-07-25T04:26:58.010000"],["2024-07-25T04:26:59.010000"],["2024-07-25T04:27:00.010000"],["2024-07-25T04:27:01.010000"],["2024-07-25T04:27:02.010000"],["2024-07-25T04:27:03.010000"],["2024-07-25T04:27:04.010000"],["2024-07-25T04:27:05.010000"],["2024-07-25T04:27:06.010000"],["2024-07-25T04:27:07.010000"],["2024-07-25T04:27:08.010000"],["2024-07-25T04:27:09.010000"],["2024-07-25T04:27:10.010000"],["2024-07-25T04:27:11.010000"],["2024-07-25T04:27:12.010000"],["2024-07-25T04:27:13.010000"],["2024-07-25T04:27:14.010000"],["2024-07-25T04:27:15.010000"],["2024-07-25T04:27:16.010000"],["2024-07-25T04:27:17.010000"],["2024-07-25T04:27:18.010000"],["2024-07-25T04:27:19.010000"],["2024-07-25T04:27:20.010000"],["2024-07-25T04:27:21.010000"],["2024-07-25T04:27:22.010000"],["2024-07-25T04:27:23.010000"],["2024-07-25T04:27:24.010000"],["2024-07-25T04:27:25.010000"],["2024-07-25T04:27:26.010000"],["2024-07-25T04:27:27.010000"],["2024-07-25T04:27:28.010000"],["2024-07-25T04:27:29.010000"],["2024-07-25T04:27:30.010000"],["2024-07-25T04:27:31.010000"],["2024-07-25T04:27:32.010000"],["2024-07-25T04:27:33.010000"],["2024-07-25T04:27:34.010000"],["2024-07-25T04:27:35.010000"],["2024-07-25T04:27:36.010000"],["2024-07-25T04:27:37.010000"],["2024-07-25T04:27:38.010000"],["2024-07-25T04:27:39.010000"],["2024-07-25T04:27:40.010000"],["2024-07-25T04:27:41.010000"],["2024-07-25T04:27:42.010000"],["2024-07-25T04:27:43.010000"],["2024-07-25T04:27:44.010000"],["2024-07-25T04:27:45.010000"],["2024-07-25T04:27:46.010000"],["2024-07-25T04:27:47.010000"],["2024-07-25T04:27:48.010000"],["2024-07-25T04:27:49.010000"],["2024-07-25T04:27:50.010000"],["2024-07-25T04:27:51.010000"],["2024-07-25T04:27:52.010000"],["2024-07-25T04:27:53.010000"],["2024-07-25T04:27:54.010000"],["2024-07-25T04:27:55.010000"],["2024-07-25T04:27:56.010000"],["2024-07-25T04:27:57.010000"],["2024-07-25T04:27:58.010000"],["2024-07-25T04:27:59.010000"],["2024-07-25T04:28:00.010000"],["2024-07-25T04:28:01.010000"],["2024-07-25T04:28:02.010000"],["2024-07-25T04:28:03.010000"],["2024-07-25T04:28:04.010000"],["2024-07-25T04:28:05.010000"],["2024-07-25T04:28:06.010000"],["2024-07-25T04:28:07.010000"],["2024-07-25T04:28:08.010000"],["2024-07-25T04:28:09.010000"],["2024-07-25T04:28:10.010000"],["2024-07-25T04:28:11.010000"],["2024-07-25T04:28:12.010000"],["2024-07-25T04:28:13.010000"],["2024-07-25T04:28:14.010000"],["2024-07-25T04:28:15.010000"],["2024-07-25T04:28:16.010000"],["2024-07-25T04:28:17.010000"],["2024-07-25T04:28:18.010000"],["2024-07-25T04:28:19.010000"],["2024-07-25T04:28:20.010000"],["2024-07-25T04:28:21.010000"],["2024-07-25T04:28:22.010000"],["2024-07-25T04:28:23.010000"],["2024-07-25T04:28:24.010000"],["2024-07-25T04:28:25.010000"],["2024-07-25T04:28:26.010000"],["2024-07-25T04:28:27.010000"],["2024-07-25T04:28:28.010000"],["2024-07-25T04:28:29.010000"],["2024-07-25T04:28:30.010000"],["2024-07-25T04:28:31.010000"],["2024-07-25T04:28:32.010000"],["2024-07-25T04:28:33.010000"],["2024-07-25T04:28:34.010000"],["2024-07-25T04:28:35.010000"],["2024-07-25T04:28:36.010000"],["2024-07-25T04:28:37.010000"],["2024-07-25T04:28:38.010000"],["2024-07-25T04:28:39.010000"],["2024-07-25T04:28:40.010000"],["2024-07-25T04:28:41.010000"],["2024-07-25T04:28:42.010000"],["2024-07-25T04:28:43.010000"],["2024-07-25T04:28:44.010000"],["2024-07-25T04:28:45.010000"],["2024-07-25T04:28:46.010000"],["2024-07-25T04:28:47.010000"],["2024-07-25T04:28:48.010000"],["2024-07-25T04:28:49.010000"],["2024-07-25T04:28:50.010000"],["2024-07-25T04:28:51.010000"],["2024-07-25T04:28:52.010000"],["2024-07-25T04:28:53.010000"],["2024-07-25T04:28:54.010000"],["2024-07-25T04:28:55.010000"],["2024-07-25T04:28:56.010000"],["2024-07-25T04:28:57.010000"],["2024-07-25T04:28:58.010000"],["2024-07-25T04:28:59.010000"],["2024-07-25T04:29:00.010000"],["2024-07-25T04:29:01.010000"],["2024-07-25T04:29:02.010000"],["2024-07-25T04:29:03.010000"],["2024-07-25T04:29:04.010000"],["2024-07-25T04:29:05.010000"],["2024-07-25T04:29:06.010000"],["2024-07-25T04:29:07.010000"],["2024-07-25T04:29:08.010000"],["2024-07-25T04:29:09.010000"],["2024-07-25T04:29:10.010000"],["2024-07-25T04:29:11.010000"],["2024-07-25T04:29:12.010000"],["2024-07-25T04:29:13.010000"],["2024-07-25T04:29:14.010000"],["2024-07-25T04:29:15.010000"],["2024-07-25T04:29:16.010000"],["2024-07-25T04:29:17.010000"],["2024-07-25T04:29:18.010000"],["2024-07-25T04:29:19.010000"],["2024-07-25T04:29:20.010000"],["2024-07-25T04:29:21.010000"],["2024-07-25T04:29:22.010000"],["2024-07-25T04:29:23.010000"],["2024-07-25T04:29:24.010000"],["2024-07-25T04:29:25.010000"],["2024-07-25T04:29:26.010000"],["2024-07-25T04:29:27.010000"],["2024-07-25T04:29:28.010000"],["2024-07-25T04:29:29.010000"],["2024-07-25T04:29:30.010000"],["2024-07-25T04:29:31.010000"],["2024-07-25T04:29:32.010000"],["2024-07-25T04:29:33.010000"],["2024-07-25T04:29:34.010000"],["2024-07-25T04:29:35.010000"],["2024-07-25T04:29:36.010000"],["2024-07-25T04:29:37.010000"],["2024-07-25T04:29:38.010000"],["2024-07-25T04:29:39.010000"],["2024-07-25T04:29:40.010000"],["2024-07-25T04:29:41.010000"],["2024-07-25T04:29:42.010000"],["2024-07-25T04:29:43.010000"],["2024-07-25T04:29:44.010000"],["2024-07-25T04:29:45.010000"],["2024-07-25T04:29:46.010000"],["2024-07-25T04:29:47.010000"],["2024-07-25T04:29:48.010000"],["2024-07-25T04:29:49.010000"],["2024-07-25T04:29:50.010000"],["2024-07-25T04:29:51.010000"],["2024-07-25T04:29:52.010000"],["2024-07-25T04:29:53.010000"],["2024-07-25T04:29:54.010000"],["2024-07-25T04:29:55.010000"],["2024-07-25T04:29:56.010000"],["2024-07-25T04:29:57.010000"],["2024-07-25T04:29:58.010000"],["2024-07-25T04:29:59.010000"],["2024-07-25T04:30:00.010000"],["2024-07-25T04:30:01.010000"],["2024-07-25T04:30:02.010000"],["2024-07-25T04:30:03.010000"],["2024-07-25T04:30:04.010000"],["2024-07-25T04:30:05.010000"],["2024-07-25T04:30:06.010000"],["2024-07-25T04:30:07.010000"],["2024-07-25T04:30:08.010000"],["2024-07-25T04:30:09.010000"],["2024-07-25T04:30:10.010000"],["2024-07-25T04:30:11.010000"],["2024-07-25T04:30:12.010000"],["2024-07-25T04:30:13.010000"],["2024-07-25T04:30:14.010000"],["2024-07-25T04:30:15.010000"],["2024-07-25T04:30:16.010000"],["2024-07-25T04:30:17.010000"],["2024-07-25T04:30:18.010000"],["2024-07-25T04:30:19.010000"],["2024-07-25T04:30:20.010000"],["2024-07-25T04:30:21.010000"],["2024-07-25T04:30:22.010000"],["2024-07-25T04:30:23.010000"],["2024-07-25T04:30:24.010000"],["2024-07-25T04:30:25.010000"],["2024-07-25T04:30:26.010000"],["2024-07-25T04:30:27.010000"],["2024-07-25T04:30:28.010000"],["2024-07-25T04:30:29.010000"],["2024-07-25T04:30:30.010000"],["2024-07-25T04:30:31.010000"],["2024-07-25T04:30:32.010000"],["2024-07-25T04:30:33.010000"],["2024-07-25T04:30:34.010000"],["2024-07-25T04:30:35.010000"],["2024-07-25T04:30:36.010000"],["2024-07-25T04:30:37.010000"],["2024-07-25T04:30:38.010000"],["2024-07-25T04:30:39.010000"],["2024-07-25T04:30:40.010000"],["2024-07-25T04:30:41.010000"],["2024-07-25T04:30:42.010000"],["2024-07-25T04:30:43.010000"],["2024-07-25T04:30:44.010000"],["2024-07-25T04:30:45.010000"],["2024-07-25T04:30:46.010000"],["2024-07-25T04:30:47.010000"],["2024-07-25T04:30:48.010000"],["2024-07-25T04:30:49.010000"],["2024-07-25T04:30:50.010000"],["2024-07-25T04:30:51.010000"],["2024-07-25T04:30:52.010000"],["2024-07-25T04:30:53.010000"],["2024-07-25T04:30:54.010000"],["2024-07-25T04:30:55.010000"],["2024-07-25T04:30:56.010000"],["2024-07-25T04:30:57.010000"],["2024-07-25T04:30:58.010000"],["2024-07-25T04:30:59.010000"],["2024-07-25T04:31:00.010000"],["2024-07-25T04:31:01.010000"],["2024-07-25T04:31:02.010000"],["2024-07-25T04:31:03.010000"],["2024-07-25T04:31:04.010000"],["2024-07-25T04:31:05.010000"],["2024-07-25T04:31:06.010000"],["2024-07-25T04:31:07.010000"],["2024-07-25T04:31:08.010000"],["2024-07-25T04:31:09.010000"],["2024-07-25T04:31:10.010000"],["2024-07-25T04:31:11.010000"],["2024-07-25T04:31:12.010000"],["2024-07-25T04:31:13.010000"],["2024-07-25T04:31:14.010000"],["2024-07-25T04:31:15.010000"],["2024-07-25T04:31:16.010000"],["2024-07-25T04:31:17.010000"],["2024-07-25T04:31:18.010000"],["2024-07-25T04:31:19.010000"],["2024-07-25T04:31:20.010000"],["2024-07-25T04:31:21.010000"],["2024-07-25T04:31:22.010000"],["2024-07-25T04:31:23.010000"],["2024-07-25T04:31:24.010000"],["2024-07-25T04:31:25.010000"],["2024-07-25T04:31:26.010000"],["2024-07-25T04:31:27.010000"],["2024-07-25T04:31:28.010000"],["2024-07-25T04:31:29.010000"],["2024-07-25T04:31:30.010000"],["2024-07-25T04:31:31.010000"],["2024-07-25T04:31:32.010000"],["2024-07-25T04:31:33.010000"],["2024-07-25T04:31:34.010000"],["2024-07-25T04:31:35.010000"],["2024-07-25T04:31:36.010000"],["2024-07-25T04:31:37.010000"],["2024-07-25T04:31:38.010000"],["2024-07-25T04:31:39.010000"],["2024-07-25T04:31:40.010000"],["2024-07-25T04:31:41.010000"],["2024-07-25T04:31:42.010000"],["2024-07-25T04:31:43.010000"],["2024-07-25T04:31:44.010000"],["2024-07-25T04:31:45.010000"],["2024-07-25T04:31:46.010000"],["2024-07-25T04:31:47.010000"],["2024-07-25T04:31:48.010000"],["2024-07-25T04:31:49.010000"],["2024-07-25T04:31:50.010000"],["2024-07-25T04:31:51.010000"],["2024-07-25T04:31:52.010000"],["2024-07-25T04:31:53.010000"],["2024-07-25T04:31:54.010000"],["2024-07-25T04:31:55.010000"],["2024-07-25T04:31:56.010000"],["2024-07-25T04:31:57.010000"],["2024-07-25T04:31:58.010000"],["2024-07-25T04:31:59.010000"],["2024-07-25T04:32:00.010000"],["2024-07-25T04:32:01.010000"],["2024-07-25T04:32:02.010000"],["2024-07-25T04:32:03.010000"],["2024-07-25T04:32:04.010000"],["2024-07-25T04:32:05.010000"],["2024-07-25T04:32:06.010000"],["2024-07-25T04:32:07.010000"],["2024-07-25T04:32:08.010000"],["2024-07-25T04:32:09.010000"],["2024-07-25T04:32:10.010000"],["2024-07-25T04:32:11.010000"],["2024-07-25T04:32:12.010000"],["2024-07-25T04:32:13.010000"],["2024-07-25T04:32:14.010000"],["2024-07-25T04:32:15.010000"],["2024-07-25T04:32:16.010000"],["2024-07-25T04:32:17.010000"],["2024-07-25T04:32:18.010000"],["2024-07-25T04:32:19.010000"],["2024-07-25T04:32:20.010000"],["2024-07-25T04:32:21.010000"],["2024-07-25T04:32:22.010000"],["2024-07-25T04:32:23.010000"],["2024-07-25T04:32:24.010000"],["2024-07-25T04:32:25.010000"],["2024-07-25T04:32:26.010000"],["2024-07-25T04:32:27.010000"],["2024-07-25T04:32:28.010000"],["2024-07-25T04:32:29.010000"],["2024-07-25T04:32:30.010000"],["2024-07-25T04:32:31.010000"],["2024-07-25T04:32:32.010000"],["2024-07-25T04:32:33.010000"],["2024-07-25T04:32:34.010000"],["2024-07-25T04:32:35.010000"],["2024-07-25T04:32:36.010000"],["2024-07-25T04:32:37.010000"],["2024-07-25T04:32:38.010000"],["2024-07-25T04:32:39.010000"],["2024-07-25T04:32:40.010000"],["2024-07-25T04:32:41.010000"],["2024-07-25T04:32:42.010000"],["2024-07-25T04:32:43.010000"],["2024-07-25T04:32:44.010000"],["2024-07-25T04:32:45.010000"],["2024-07-25T04:32:46.010000"],["2024-07-25T04:32:47.010000"],["2024-07-25T04:32:48.010000"],["2024-07-25T04:32:49.010000"],["2024-07-25T04:32:50.010000"],["2024-07-25T04:32:51.010000"],["2024-07-25T04:32:52.010000"],["2024-07-25T04:32:53.010000"],["2024-07-25T04:32:54.010000"],["2024-07-25T04:32:55.010000"],["2024-07-25T04:32:56.010000"],["2024-07-25T04:32:57.010000"],["2024-07-25T04:32:58.010000"],["2024-07-25T04:32:59.010000"],["2024-07-25T04:33:00.010000"],["2024-07-25T04:33:01.010000"],["2024-07-25T04:33:02.010000"],["2024-07-25T04:33:03.010000"],["2024-07-25T04:33:04.010000"],["2024-07-25T04:33:05.010000"],["2024-07-25T04:33:06.010000"],["2024-07-25T04:33:07.010000"],["2024-07-25T04:33:08.010000"],["2024-07-25T04:33:09.010000"],["2024-07-25T04:33:10.010000"],["2024-07-25T04:33:11.010000"],["2024-07-25T04:33:12.010000"],["2024-07-25T04:33:13.010000"],["2024-07-25T04:33:14.010000"],["2024-07-25T04:33:15.010000"],["2024-07-25T04:33:16.010000"],["2024-07-25T04:33:17.010000"],["2024-07-25T04:33:18.010000"],["2024-07-25T04:33:19.010000"],["2024-07-25T04:33:20.010000"],["2024-07-25T04:33:21.010000"],["2024-07-25T04:33:22.010000"],["2024-07-25T04:33:23.010000"],["2024-07-25T04:33:24.010000"],["2024-07-25T04:33:25.010000"],["2024-07-25T04:33:26.010000"],["2024-07-25T04:33:27.010000"],["2024-07-25T04:33:28.010000"],["2024-07-25T04:33:29.010000"],["2024-07-25T04:33:30.010000"],["2024-07-25T04:33:31.010000"],["2024-07-25T04:33:32.010000"],["2024-07-25T04:33:33.010000"],["2024-07-25T04:33:34.010000"],["2024-07-25T04:33:35.010000"],["2024-07-25T04:33:36.010000"],["2024-07-25T04:33:37.010000"],["2024-07-25T04:33:38.010000"],["2024-07-25T04:33:39.010000"],["2024-07-25T04:33:40.010000"],["2024-07-25T04:33:41.010000"],["2024-07-25T04:33:42.010000"],["2024-07-25T04:33:43.010000"],["2024-07-25T04:33:44.010000"],["2024-07-25T04:33:45.010000"],["2024-07-25T04:33:46.010000"],["2024-07-25T04:33:47.010000"],["2024-07-25T04:33:48.010000"],["2024-07-25T04:33:49.010000"],["2024-07-25T04:33:50.010000"],["2024-07-25T04:33:51.010000"],["2024-07-25T04:33:52.010000"],["2024-07-25T04:33:53.010000"],["2024-07-25T04:33:54.010000"],["2024-07-25T04:33:55.010000"],["2024-07-25T04:33:56.010000"],["2024-07-25T04:33:57.010000"],["2024-07-25T04:33:58.010000"],["2024-07-25T04:33:59.010000"],["2024-07-25T04:34:00.010000"],["2024-07-25T04:34:01.010000"],["2024-07-25T04:34:02.010000"],["2024-07-25T04:34:03.010000"],["2024-07-25T04:34:04.010000"],["2024-07-25T04:34:05.010000"],["2024-07-25T04:34:06.010000"],["2024-07-25T04:34:07.010000"],["2024-07-25T04:34:08.010000"],["2024-07-25T04:34:09.010000"],["2024-07-25T04:34:10.010000"],["2024-07-25T04:34:11.010000"],["2024-07-25T04:34:12.010000"],["2024-07-25T04:34:13.010000"],["2024-07-25T04:34:14.010000"],["2024-07-25T04:34:15.010000"],["2024-07-25T04:34:16.010000"],["2024-07-25T04:34:17.010000"],["2024-07-25T04:34:18.010000"],["2024-07-25T04:34:19.010000"],["2024-07-25T04:34:20.010000"],["2024-07-25T04:34:21.010000"],["2024-07-25T04:34:22.010000"],["2024-07-25T04:34:23.010000"],["2024-07-25T04:34:24.010000"],["2024-07-25T04:34:25.010000"],["2024-07-25T04:34:26.010000"],["2024-07-25T04:34:27.010000"],["2024-07-25T04:34:28.010000"],["2024-07-25T04:34:29.010000"],["2024-07-25T04:34:30.010000"],["2024-07-25T04:34:31.010000"],["2024-07-25T04:34:32.010000"],["2024-07-25T04:34:33.010000"],["2024-07-25T04:34:34.010000"],["2024-07-25T04:34:35.010000"],["2024-07-25T04:34:36.010000"],["2024-07-25T04:34:37.010000"],["2024-07-25T04:34:38.010000"],["2024-07-25T04:34:39.010000"],["2024-07-25T04:34:40.010000"],["2024-07-25T04:34:41.010000"],["2024-07-25T04:34:42.010000"],["2024-07-25T04:34:43.010000"],["2024-07-25T04:34:44.010000"],["2024-07-25T04:34:45.010000"],["2024-07-25T04:34:46.010000"],["2024-07-25T04:34:47.010000"],["2024-07-25T04:34:48.010000"],["2024-07-25T04:34:49.010000"],["2024-07-25T04:34:50.010000"],["2024-07-25T04:34:51.010000"],["2024-07-25T04:34:52.010000"],["2024-07-25T04:34:53.010000"],["2024-07-25T04:34:54.010000"],["2024-07-25T04:34:55.010000"],["2024-07-25T04:34:56.010000"],["2024-07-25T04:34:57.010000"],["2024-07-25T04:34:58.010000"],["2024-07-25T04:34:59.010000"],["2024-07-25T04:35:00.010000"],["2024-07-25T04:35:01.010000"],["2024-07-25T04:35:02.010000"],["2024-07-25T04:35:03.010000"],["2024-07-25T04:35:04.010000"],["2024-07-25T04:35:05.010000"],["2024-07-25T04:35:06.010000"],["2024-07-25T04:35:07.010000"],["2024-07-25T04:35:08.010000"],["2024-07-25T04:35:09.010000"],["2024-07-25T04:35:10.010000"],["2024-07-25T04:35:11.010000"],["2024-07-25T04:35:12.010000"],["2024-07-25T04:35:13.010000"],["2024-07-25T04:35:14.010000"],["2024-07-25T04:35:15.010000"],["2024-07-25T04:35:16.010000"],["2024-07-25T04:35:17.010000"],["2024-07-25T04:35:18.010000"],["2024-07-25T04:35:19.010000"],["2024-07-25T04:35:20.010000"],["2024-07-25T04:35:21.010000"],["2024-07-25T04:35:22.010000"],["2024-07-25T04:35:23.010000"],["2024-07-25T04:35:24.010000"],["2024-07-25T04:35:25.010000"],["2024-07-25T04:35:26.010000"],["2024-07-25T04:35:27.010000"],["2024-07-25T04:35:28.010000"],["2024-07-25T04:35:29.010000"],["2024-07-25T04:35:30.010000"],["2024-07-25T04:35:31.010000"],["2024-07-25T04:35:32.010000"],["2024-07-25T04:35:33.010000"],["2024-07-25T04:35:34.010000"],["2024-07-25T04:35:35.010000"],["2024-07-25T04:35:36.010000"],["2024-07-25T04:35:37.010000"],["2024-07-25T04:35:38.010000"],["2024-07-25T04:35:39.010000"],["2024-07-25T04:35:40.010000"],["2024-07-25T04:35:41.010000"],["2024-07-25T04:35:42.010000"],["2024-07-25T04:35:43.010000"],["2024-07-25T04:35:44.010000"],["2024-07-25T04:35:45.010000"],["2024-07-25T04:35:46.010000"],["2024-07-25T04:35:47.010000"],["2024-07-25T04:35:48.010000"],["2024-07-25T04:35:49.010000"],["2024-07-25T04:35:50.010000"],["2024-07-25T04:35:51.010000"],["2024-07-25T04:35:52.010000"],["2024-07-25T04:35:53.010000"],["2024-07-25T04:35:54.010000"],["2024-07-25T04:35:55.010000"],["2024-07-25T04:35:56.010000"],["2024-07-25T04:35:57.010000"],["2024-07-25T04:35:58.010000"],["2024-07-25T04:35:59.010000"],["2024-07-25T04:36:00.010000"],["2024-07-25T04:36:01.010000"],["2024-07-25T04:36:02.010000"],["2024-07-25T04:36:03.010000"],["2024-07-25T04:36:04.010000"],["2024-07-25T04:36:05.010000"],["2024-07-25T04:36:06.010000"],["2024-07-25T04:36:07.010000"],["2024-07-25T04:36:08.010000"],["2024-07-25T04:36:09.010000"],["2024-07-25T04:36:10.010000"],["2024-07-25T04:36:11.010000"],["2024-07-25T04:36:12.010000"],["2024-07-25T04:36:13.010000"],["2024-07-25T04:36:14.010000"],["2024-07-25T04:36:15.010000"],["2024-07-25T04:36:16.010000"],["2024-07-25T04:36:17.010000"],["2024-07-25T04:36:18.010000"],["2024-07-25T04:36:19.010000"],["2024-07-25T04:36:20.010000"],["2024-07-25T04:36:21.010000"],["2024-07-25T04:36:22.010000"],["2024-07-25T04:36:23.010000"],["2024-07-25T04:36:24.010000"],["2024-07-25T04:36:25.010000"],["2024-07-25T04:36:26.010000"],["2024-07-25T04:36:27.010000"],["2024-07-25T04:36:28.010000"],["2024-07-25T04:36:29.010000"],["2024-07-25T04:36:30.010000"],["2024-07-25T04:36:31.010000"],["2024-07-25T04:36:32.010000"],["2024-07-25T04:36:33.010000"],["2024-07-25T04:36:34.010000"],["2024-07-25T04:36:35.010000"],["2024-07-25T04:36:36.010000"],["2024-07-25T04:36:37.010000"],["2024-07-25T04:36:38.010000"],["2024-07-25T04:36:39.010000"],["2024-07-25T04:36:40.010000"],["2024-07-25T04:36:41.010000"],["2024-07-25T04:36:42.010000"],["2024-07-25T04:36:43.010000"],["2024-07-25T04:36:44.010000"],["2024-07-25T04:36:45.010000"],["2024-07-25T04:36:46.010000"],["2024-07-25T04:36:47.010000"],["2024-07-25T04:36:48.010000"],["2024-07-25T04:36:49.010000"],["2024-07-25T04:36:50.010000"],["2024-07-25T04:36:51.010000"],["2024-07-25T04:36:52.010000"],["2024-07-25T04:36:53.010000"],["2024-07-25T04:36:54.010000"],["2024-07-25T04:36:55.010000"],["2024-07-25T04:36:56.010000"],["2024-07-25T04:36:57.010000"],["2024-07-25T04:36:58.010000"],["2024-07-25T04:36:59.010000"],["2024-07-25T04:37:00.010000"],["2024-07-25T04:37:01.010000"],["2024-07-25T04:37:02.010000"],["2024-07-25T04:37:03.010000"],["2024-07-25T04:37:04.010000"],["2024-07-25T04:37:05.010000"],["2024-07-25T04:37:06.010000"],["2024-07-25T04:37:07.010000"],["2024-07-25T04:37:08.010000"],["2024-07-25T04:37:09.010000"],["2024-07-25T04:37:10.010000"],["2024-07-25T04:37:11.010000"],["2024-07-25T04:37:12.010000"],["2024-07-25T04:37:13.010000"],["2024-07-25T04:37:14.010000"],["2024-07-25T04:37:15.010000"],["2024-07-25T04:37:16.010000"],["2024-07-25T04:37:17.010000"],["2024-07-25T04:37:18.010000"],["2024-07-25T04:37:19.010000"],["2024-07-25T04:37:20.010000"],["2024-07-25T04:37:21.010000"],["2024-07-25T04:37:22.010000"],["2024-07-25T04:37:23.010000"],["2024-07-25T04:37:24.010000"],["2024-07-25T04:37:25.010000"],["2024-07-25T04:37:26.010000"],["2024-07-25T04:37:27.010000"],["2024-07-25T04:37:28.010000"],["2024-07-25T04:37:29.010000"],["2024-07-25T04:37:30.010000"],["2024-07-25T04:37:31.010000"],["2024-07-25T04:37:32.010000"],["2024-07-25T04:37:33.010000"],["2024-07-25T04:37:34.010000"],["2024-07-25T04:37:35.010000"],["2024-07-25T04:37:36.010000"],["2024-07-25T04:37:37.010000"],["2024-07-25T04:37:38.010000"],["2024-07-25T04:37:39.010000"],["2024-07-25T04:37:40.010000"],["2024-07-25T04:37:41.010000"],["2024-07-25T04:37:42.010000"],["2024-07-25T04:37:43.010000"],["2024-07-25T04:37:44.010000"],["2024-07-25T04:37:45.010000"],["2024-07-25T04:37:46.010000"],["2024-07-25T04:37:47.010000"],["2024-07-25T04:37:48.010000"],["2024-07-25T04:37:49.010000"],["2024-07-25T04:37:50.010000"],["2024-07-25T04:37:51.010000"],["2024-07-25T04:37:52.010000"],["2024-07-25T04:37:53.010000"],["2024-07-25T04:37:54.010000"],["2024-07-25T04:37:55.010000"],["2024-07-25T04:37:56.010000"],["2024-07-25T04:37:57.010000"],["2024-07-25T04:37:58.010000"],["2024-07-25T04:37:59.010000"],["2024-07-25T04:38:00.010000"],["2024-07-25T04:38:01.010000"],["2024-07-25T04:38:02.010000"],["2024-07-25T04:38:03.010000"],["2024-07-25T04:38:04.010000"],["2024-07-25T04:38:05.010000"],["2024-07-25T04:38:06.010000"],["2024-07-25T04:38:07.010000"],["2024-07-25T04:38:08.010000"],["2024-07-25T04:38:09.010000"],["2024-07-25T04:38:10.010000"],["2024-07-25T04:38:11.010000"],["2024-07-25T04:38:12.010000"],["2024-07-25T04:38:13.010000"],["2024-07-25T04:38:14.010000"],["2024-07-25T04:38:15.010000"],["2024-07-25T04:38:16.010000"],["2024-07-25T04:38:17.010000"],["2024-07-25T04:38:18.010000"],["2024-07-25T04:38:19.010000"],["2024-07-25T04:38:20.010000"],["2024-07-25T04:38:21.010000"],["2024-07-25T04:38:22.010000"],["2024-07-25T04:38:23.010000"],["2024-07-25T04:38:24.010000"],["2024-07-25T04:38:25.010000"],["2024-07-25T04:38:26.010000"],["2024-07-25T04:38:27.010000"],["2024-07-25T04:38:28.010000"],["2024-07-25T04:38:29.010000"],["2024-07-25T04:38:30.010000"],["2024-07-25T04:38:31.010000"],["2024-07-25T04:38:32.010000"],["2024-07-25T04:38:33.010000"],["2024-07-25T04:38:34.010000"],["2024-07-25T04:38:35.010000"],["2024-07-25T04:38:36.010000"],["2024-07-25T04:38:37.010000"],["2024-07-25T04:38:38.010000"],["2024-07-25T04:38:39.010000"],["2024-07-25T04:38:40.010000"],["2024-07-25T04:38:41.010000"],["2024-07-25T04:38:42.010000"],["2024-07-25T04:38:43.010000"],["2024-07-25T04:38:44.010000"],["2024-07-25T04:38:45.010000"],["2024-07-25T04:38:46.010000"],["2024-07-25T04:38:47.010000"],["2024-07-25T04:38:48.010000"],["2024-07-25T04:38:49.010000"],["2024-07-25T04:38:50.010000"],["2024-07-25T04:38:51.010000"],["2024-07-25T04:38:52.010000"],["2024-07-25T04:38:53.010000"],["2024-07-25T04:38:54.010000"],["2024-07-25T04:38:55.010000"],["2024-07-25T04:38:56.010000"],["2024-07-25T04:38:57.010000"],["2024-07-25T04:38:58.010000"],["2024-07-25T04:38:59.010000"],["2024-07-25T04:39:00.010000"],["2024-07-25T04:39:01.010000"],["2024-07-25T04:39:02.010000"],["2024-07-25T04:39:03.010000"],["2024-07-25T04:39:04.010000"],["2024-07-25T04:39:05.010000"],["2024-07-25T04:39:06.010000"],["2024-07-25T04:39:07.010000"],["2024-07-25T04:39:08.010000"],["2024-07-25T04:39:09.010000"],["2024-07-25T04:39:10.010000"],["2024-07-25T04:39:11.010000"],["2024-07-25T04:39:12.010000"],["2024-07-25T04:39:13.010000"],["2024-07-25T04:39:14.010000"],["2024-07-25T04:39:15.010000"],["2024-07-25T04:39:16.010000"],["2024-07-25T04:39:17.010000"],["2024-07-25T04:39:18.010000"],["2024-07-25T04:39:19.010000"],["2024-07-25T04:39:20.010000"],["2024-07-25T04:39:21.010000"],["2024-07-25T04:39:22.010000"],["2024-07-25T04:39:23.010000"],["2024-07-25T04:39:24.010000"],["2024-07-25T04:39:25.010000"],["2024-07-25T04:39:26.010000"],["2024-07-25T04:39:27.010000"],["2024-07-25T04:39:28.010000"],["2024-07-25T04:39:29.010000"],["2024-07-25T04:39:30.010000"],["2024-07-25T04:39:31.010000"],["2024-07-25T04:39:32.010000"],["2024-07-25T04:39:33.010000"],["2024-07-25T04:39:34.010000"],["2024-07-25T04:39:35.010000"],["2024-07-25T04:39:36.010000"],["2024-07-25T04:39:37.010000"],["2024-07-25T04:39:38.010000"],["2024-07-25T04:39:39.010000"],["2024-07-25T04:39:40.010000"],["2024-07-25T04:39:41.010000"],["2024-07-25T04:39:42.010000"],["2024-07-25T04:39:43.010000"],["2024-07-25T04:39:44.010000"],["2024-07-25T04:39:45.010000"],["2024-07-25T04:39:46.010000"],["2024-07-25T04:39:47.010000"],["2024-07-25T04:39:48.010000"],["2024-07-25T04:39:49.010000"],["2024-07-25T04:39:50.010000"],["2024-07-25T04:39:51.010000"],["2024-07-25T04:39:52.010000"],["2024-07-25T04:39:53.010000"],["2024-07-25T04:39:54.010000"],["2024-07-25T04:39:55.010000"],["2024-07-25T04:39:56.010000"],["2024-07-25T04:39:57.010000"],["2024-07-25T04:39:58.010000"],["2024-07-25T04:39:59.010000"],["2024-07-25T04:40:00.010000"],["2024-07-25T04:40:01.010000"],["2024-07-25T04:40:02.010000"],["2024-07-25T04:40:03.010000"],["2024-07-25T04:40:04.010000"],["2024-07-25T04:40:05.010000"],["2024-07-25T04:40:06.010000"],["2024-07-25T04:40:07.010000"],["2024-07-25T04:40:08.010000"],["2024-07-25T04:40:09.010000"],["2024-07-25T04:40:10.010000"],["2024-07-25T04:40:11.010000"],["2024-07-25T04:40:12.010000"],["2024-07-25T04:40:13.010000"],["2024-07-25T04:40:14.010000"],["2024-07-25T04:40:15.010000"],["2024-07-25T04:40:16.010000"],["2024-07-25T04:40:17.010000"],["2024-07-25T04:40:18.010000"],["2024-07-25T04:40:19.010000"],["2024-07-25T04:40:20.010000"],["2024-07-25T04:40:21.010000"],["2024-07-25T04:40:22.010000"],["2024-07-25T04:40:23.010000"],["2024-07-25T04:40:24.010000"],["2024-07-25T04:40:25.010000"],["2024-07-25T04:40:26.010000"],["2024-07-25T04:40:27.010000"],["2024-07-25T04:40:28.010000"],["2024-07-25T04:40:29.010000"],["2024-07-25T04:40:30.010000"],["2024-07-25T04:40:31.010000"],["2024-07-25T04:40:32.010000"],["2024-07-25T04:40:33.010000"],["2024-07-25T04:40:34.010000"],["2024-07-25T04:40:35.010000"],["2024-07-25T04:40:36.010000"],["2024-07-25T04:40:37.010000"],["2024-07-25T04:40:38.010000"],["2024-07-25T04:40:39.010000"],["2024-07-25T04:40:40.010000"],["2024-07-25T04:40:41.010000"],["2024-07-25T04:40:42.010000"],["2024-07-25T04:40:43.010000"],["2024-07-25T04:40:44.010000"],["2024-07-25T04:40:45.010000"],["2024-07-25T04:40:46.010000"],["2024-07-25T04:40:47.010000"],["2024-07-25T04:40:48.010000"],["2024-07-25T04:40:49.010000"],["2024-07-25T04:40:50.010000"],["2024-07-25T04:40:51.010000"],["2024-07-25T04:40:52.010000"],["2024-07-25T04:40:53.010000"],["2024-07-25T04:40:54.010000"],["2024-07-25T04:40:55.010000"],["2024-07-25T04:40:56.010000"],["2024-07-25T04:40:57.010000"],["2024-07-25T04:40:58.010000"],["2024-07-25T04:40:59.010000"],["2024-07-25T04:41:00.010000"],["2024-07-25T04:41:01.010000"],["2024-07-25T04:41:02.010000"],["2024-07-25T04:41:03.010000"],["2024-07-25T04:41:04.010000"],["2024-07-25T04:41:05.010000"],["2024-07-25T04:41:06.010000"],["2024-07-25T04:41:07.010000"],["2024-07-25T04:41:08.010000"],["2024-07-25T04:41:09.010000"],["2024-07-25T04:41:10.010000"],["2024-07-25T04:41:11.010000"],["2024-07-25T04:41:12.010000"],["2024-07-25T04:41:13.010000"],["2024-07-25T04:41:14.010000"],["2024-07-25T04:41:15.010000"],["2024-07-25T04:41:16.010000"],["2024-07-25T04:41:17.010000"],["2024-07-25T04:41:18.010000"],["2024-07-25T04:41:19.010000"],["2024-07-25T04:41:20.010000"],["2024-07-25T04:41:21.010000"],["2024-07-25T04:41:22.010000"],["2024-07-25T04:41:23.010000"],["2024-07-25T04:41:24.010000"],["2024-07-25T04:41:25.010000"],["2024-07-25T04:41:26.010000"],["2024-07-25T04:41:27.010000"],["2024-07-25T04:41:28.010000"],["2024-07-25T04:41:29.010000"],["2024-07-25T04:41:30.010000"],["2024-07-25T04:41:31.010000"],["2024-07-25T04:41:32.010000"],["2024-07-25T04:41:33.010000"],["2024-07-25T04:41:34.010000"],["2024-07-25T04:41:35.010000"],["2024-07-25T04:41:36.010000"],["2024-07-25T04:41:37.010000"],["2024-07-25T04:41:38.010000"],["2024-07-25T04:41:39.010000"],["2024-07-25T04:41:40.010000"],["2024-07-25T04:41:41.010000"],["2024-07-25T04:41:42.010000"],["2024-07-25T04:41:43.010000"],["2024-07-25T04:41:44.010000"],["2024-07-25T04:41:45.010000"],["2024-07-25T04:41:46.010000"],["2024-07-25T04:41:47.010000"],["2024-07-25T04:41:48.010000"],["2024-07-25T04:41:49.010000"],["2024-07-25T04:41:50.010000"],["2024-07-25T04:41:51.010000"],["2024-07-25T04:41:52.010000"],["2024-07-25T04:41:53.010000"],["2024-07-25T04:41:54.010000"],["2024-07-25T04:41:55.010000"],["2024-07-25T04:41:56.010000"],["2024-07-25T04:41:57.010000"],["2024-07-25T04:41:58.010000"],["2024-07-25T04:41:59.010000"],["2024-07-25T04:42:00.010000"],["2024-07-25T04:42:01.010000"],["2024-07-25T04:42:02.010000"],["2024-07-25T04:42:03.010000"],["2024-07-25T04:42:04.010000"],["2024-07-25T04:42:05.010000"],["2024-07-25T04:42:06.010000"],["2024-07-25T04:42:07.010000"],["2024-07-25T04:42:08.010000"],["2024-07-25T04:42:09.010000"],["2024-07-25T04:42:10.010000"],["2024-07-25T04:42:11.010000"],["2024-07-25T04:42:12.010000"],["2024-07-25T04:42:13.010000"],["2024-07-25T04:42:14.010000"],["2024-07-25T04:42:15.010000"],["2024-07-25T04:42:16.010000"],["2024-07-25T04:42:17.010000"],["2024-07-25T04:42:18.010000"],["2024-07-25T04:42:19.010000"],["2024-07-25T04:42:20.010000"],["2024-07-25T04:42:21.010000"],["2024-07-25T04:42:22.010000"],["2024-07-25T04:42:23.010000"],["2024-07-25T04:42:24.010000"],["2024-07-25T04:42:25.010000"],["2024-07-25T04:42:26.010000"],["2024-07-25T04:42:27.010000"],["2024-07-25T04:42:28.010000"],["2024-07-25T04:42:29.010000"],["2024-07-25T04:42:30.010000"],["2024-07-25T04:42:31.010000"],["2024-07-25T04:42:32.010000"],["2024-07-25T04:42:33.010000"],["2024-07-25T04:42:34.010000"],["2024-07-25T04:42:35.010000"],["2024-07-25T04:42:36.010000"],["2024-07-25T04:42:37.010000"],["2024-07-25T04:42:38.010000"],["2024-07-25T04:42:39.010000"],["2024-07-25T04:42:40.010000"],["2024-07-25T04:42:41.010000"],["2024-07-25T04:42:42.010000"],["2024-07-25T04:42:43.010000"],["2024-07-25T04:42:44.010000"],["2024-07-25T04:42:45.010000"],["2024-07-25T04:42:46.010000"],["2024-07-25T04:42:47.010000"],["2024-07-25T04:42:48.010000"],["2024-07-25T04:42:49.010000"],["2024-07-25T04:42:50.010000"],["2024-07-25T04:42:51.010000"],["2024-07-25T04:42:52.010000"],["2024-07-25T04:42:53.010000"],["2024-07-25T04:42:54.010000"],["2024-07-25T04:42:55.010000"],["2024-07-25T04:42:56.010000"],["2024-07-25T04:42:57.010000"],["2024-07-25T04:42:58.010000"],["2024-07-25T04:42:59.010000"],["2024-07-25T04:43:00.010000"],["2024-07-25T04:43:01.010000"],["2024-07-25T04:43:02.010000"],["2024-07-25T04:43:03.010000"],["2024-07-25T04:43:04.010000"],["2024-07-25T04:43:05.010000"],["2024-07-25T04:43:06.010000"],["2024-07-25T04:43:07.010000"],["2024-07-25T04:43:08.010000"],["2024-07-25T04:43:09.010000"],["2024-07-25T04:43:10.010000"],["2024-07-25T04:43:11.010000"],["2024-07-25T04:43:12.010000"],["2024-07-25T04:43:13.010000"],["2024-07-25T04:43:14.010000"],["2024-07-25T04:43:15.010000"],["2024-07-25T04:43:16.010000"],["2024-07-25T04:43:17.010000"],["2024-07-25T04:43:18.010000"],["2024-07-25T04:43:19.010000"],["2024-07-25T04:43:20.010000"],["2024-07-25T04:43:21.010000"],["2024-07-25T04:43:22.010000"],["2024-07-25T04:43:23.010000"],["2024-07-25T04:43:24.010000"],["2024-07-25T04:43:25.010000"],["2024-07-25T04:43:26.010000"],["2024-07-25T04:43:27.010000"],["2024-07-25T04:43:28.010000"],["2024-07-25T04:43:29.010000"],["2024-07-25T04:43:30.010000"],["2024-07-25T04:43:31.010000"],["2024-07-25T04:43:32.010000"],["2024-07-25T04:43:33.010000"],["2024-07-25T04:43:34.010000"],["2024-07-25T04:43:35.010000"],["2024-07-25T04:43:36.010000"],["2024-07-25T04:43:37.010000"],["2024-07-25T04:43:38.010000"],["2024-07-25T04:43:39.010000"],["2024-07-25T04:43:40.010000"],["2024-07-25T04:43:41.010000"],["2024-07-25T04:43:42.010000"],["2024-07-25T04:43:43.010000"],["2024-07-25T04:43:44.010000"],["2024-07-25T04:43:45.010000"],["2024-07-25T04:43:46.010000"],["2024-07-25T04:43:47.010000"],["2024-07-25T04:43:48.010000"],["2024-07-25T04:43:49.010000"],["2024-07-25T04:43:50.010000"],["2024-07-25T04:43:51.010000"],["2024-07-25T04:43:52.010000"],["2024-07-25T04:43:53.010000"],["2024-07-25T04:43:54.010000"],["2024-07-25T04:43:55.010000"],["2024-07-25T04:43:56.010000"],["2024-07-25T04:43:57.010000"],["2024-07-25T04:43:58.010000"],["2024-07-25T04:43:59.010000"],["2024-07-25T04:44:00.010000"],["2024-07-25T04:44:01.010000"],["2024-07-25T04:44:02.010000"],["2024-07-25T04:44:03.010000"],["2024-07-25T04:44:04.010000"],["2024-07-25T04:44:05.010000"],["2024-07-25T04:44:06.010000"],["2024-07-25T04:44:07.010000"],["2024-07-25T04:44:08.010000"],["2024-07-25T04:44:09.010000"],["2024-07-25T04:44:10.010000"],["2024-07-25T04:44:11.010000"],["2024-07-25T04:44:12.010000"],["2024-07-25T04:44:13.010000"],["2024-07-25T04:44:14.010000"],["2024-07-25T04:44:15.010000"],["2024-07-25T04:44:16.010000"],["2024-07-25T04:44:17.010000"],["2024-07-25T04:44:18.010000"],["2024-07-25T04:44:19.010000"],["2024-07-25T04:44:20.010000"],["2024-07-25T04:44:21.010000"],["2024-07-25T04:44:22.010000"],["2024-07-25T04:44:23.010000"],["2024-07-25T04:44:24.010000"],["2024-07-25T04:44:25.010000"],["2024-07-25T04:44:26.010000"],["2024-07-25T04:44:27.010000"],["2024-07-25T04:44:28.010000"],["2024-07-25T04:44:29.010000"],["2024-07-25T04:44:30.010000"],["2024-07-25T04:44:31.010000"],["2024-07-25T04:44:32.010000"],["2024-07-25T04:44:33.010000"],["2024-07-25T04:44:34.010000"],["2024-07-25T04:44:35.010000"],["2024-07-25T04:44:36.010000"],["2024-07-25T04:44:37.010000"],["2024-07-25T04:44:38.010000"],["2024-07-25T04:44:39.010000"],["2024-07-25T04:44:40.010000"],["2024-07-25T04:44:41.010000"],["2024-07-25T04:44:42.010000"],["2024-07-25T04:44:43.010000"],["2024-07-25T04:44:44.010000"],["2024-07-25T04:44:45.010000"],["2024-07-25T04:44:46.010000"],["2024-07-25T04:44:47.010000"],["2024-07-25T04:44:48.010000"],["2024-07-25T04:44:49.010000"],["2024-07-25T04:44:50.010000"],["2024-07-25T04:44:51.010000"],["2024-07-25T04:44:52.010000"],["2024-07-25T04:44:53.010000"],["2024-07-25T04:44:54.010000"],["2024-07-25T04:44:55.010000"],["2024-07-25T04:44:56.010000"],["2024-07-25T04:44:57.010000"],["2024-07-25T04:44:58.010000"],["2024-07-25T04:44:59.010000"],["2024-07-25T04:45:00.010000"],["2024-07-25T04:45:01.010000"],["2024-07-25T04:45:02.010000"],["2024-07-25T04:45:03.010000"],["2024-07-25T04:45:04.010000"],["2024-07-25T04:45:05.010000"],["2024-07-25T04:45:06.010000"],["2024-07-25T04:45:07.010000"],["2024-07-25T04:45:08.010000"],["2024-07-25T04:45:09.010000"],["2024-07-25T04:45:10.010000"],["2024-07-25T04:45:11.010000"],["2024-07-25T04:45:12.010000"],["2024-07-25T04:45:13.010000"],["2024-07-25T04:45:14.010000"],["2024-07-25T04:45:15.010000"],["2024-07-25T04:45:16.010000"],["2024-07-25T04:45:17.010000"],["2024-07-25T04:45:18.010000"],["2024-07-25T04:45:19.010000"],["2024-07-25T04:45:20.010000"],["2024-07-25T04:45:21.010000"],["2024-07-25T04:45:22.010000"],["2024-07-25T04:45:23.010000"],["2024-07-25T04:45:24.010000"],["2024-07-25T04:45:25.010000"],["2024-07-25T04:45:26.010000"],["2024-07-25T04:45:27.010000"],["2024-07-25T04:45:28.010000"],["2024-07-25T04:45:29.010000"],["2024-07-25T04:45:30.010000"],["2024-07-25T04:45:31.010000"],["2024-07-25T04:45:32.010000"],["2024-07-25T04:45:33.010000"],["2024-07-25T04:45:34.010000"],["2024-07-25T04:45:35.010000"],["2024-07-25T04:45:36.010000"],["2024-07-25T04:45:37.010000"],["2024-07-25T04:45:38.010000"],["2024-07-25T04:45:39.010000"],["2024-07-25T04:45:40.010000"],["2024-07-25T04:45:41.010000"],["2024-07-25T04:45:42.010000"],["2024-07-25T04:45:43.010000"],["2024-07-25T04:45:44.010000"],["2024-07-25T04:45:45.010000"],["2024-07-25T04:45:46.010000"],["2024-07-25T04:45:47.010000"],["2024-07-25T04:45:48.010000"],["2024-07-25T04:45:49.010000"],["2024-07-25T04:45:50.010000"],["2024-07-25T04:45:51.010000"],["2024-07-25T04:45:52.010000"],["2024-07-25T04:45:53.010000"],["2024-07-25T04:45:54.010000"],["2024-07-25T04:45:55.010000"],["2024-07-25T04:45:56.010000"],["2024-07-25T04:45:57.010000"],["2024-07-25T04:45:58.010000"],["2024-07-25T04:45:59.010000"],["2024-07-25T04:46:00.010000"],["2024-07-25T04:46:01.010000"],["2024-07-25T04:46:02.010000"],["2024-07-25T04:46:03.010000"],["2024-07-25T04:46:04.010000"],["2024-07-25T04:46:05.010000"],["2024-07-25T04:46:06.010000"],["2024-07-25T04:46:07.010000"],["2024-07-25T04:46:08.010000"],["2024-07-25T04:46:09.010000"],["2024-07-25T04:46:10.010000"],["2024-07-25T04:46:11.010000"],["2024-07-25T04:46:12.010000"],["2024-07-25T04:46:13.010000"],["2024-07-25T04:46:14.010000"],["2024-07-25T04:46:15.010000"],["2024-07-25T04:46:16.010000"],["2024-07-25T04:46:17.010000"],["2024-07-25T04:46:18.010000"],["2024-07-25T04:46:19.010000"],["2024-07-25T04:46:20.010000"],["2024-07-25T04:46:21.010000"],["2024-07-25T04:46:22.010000"],["2024-07-25T04:46:23.010000"],["2024-07-25T04:46:24.010000"],["2024-07-25T04:46:25.010000"],["2024-07-25T04:46:26.010000"],["2024-07-25T04:46:27.010000"],["2024-07-25T04:46:28.010000"],["2024-07-25T04:46:29.010000"],["2024-07-25T04:46:30.010000"],["2024-07-25T04:46:31.010000"],["2024-07-25T04:46:32.010000"],["2024-07-25T04:46:33.010000"],["2024-07-25T04:46:34.010000"],["2024-07-25T04:46:35.010000"],["2024-07-25T04:46:36.010000"],["2024-07-25T04:46:37.010000"],["2024-07-25T04:46:38.010000"],["2024-07-25T04:46:39.010000"],["2024-07-25T04:46:40.010000"],["2024-07-25T04:46:41.010000"],["2024-07-25T04:46:42.010000"],["2024-07-25T04:46:43.010000"],["2024-07-25T04:46:44.010000"],["2024-07-25T04:46:45.010000"],["2024-07-25T04:46:46.010000"],["2024-07-25T04:46:47.010000"],["2024-07-25T04:46:48.010000"],["2024-07-25T04:46:49.010000"],["2024-07-25T04:46:50.010000"],["2024-07-25T04:46:51.010000"],["2024-07-25T04:46:52.010000"],["2024-07-25T04:46:53.010000"],["2024-07-25T04:46:54.010000"],["2024-07-25T04:46:55.010000"],["2024-07-25T04:46:56.010000"],["2024-07-25T04:46:57.010000"],["2024-07-25T04:46:58.010000"],["2024-07-25T04:46:59.010000"],["2024-07-25T04:47:00.010000"],["2024-07-25T04:47:01.010000"],["2024-07-25T04:47:02.010000"],["2024-07-25T04:47:03.010000"],["2024-07-25T04:47:04.010000"],["2024-07-25T04:47:05.010000"],["2024-07-25T04:47:06.010000"],["2024-07-25T04:47:07.010000"],["2024-07-25T04:47:08.010000"],["2024-07-25T04:47:09.010000"],["2024-07-25T04:47:10.010000"],["2024-07-25T04:47:11.010000"],["2024-07-25T04:47:12.010000"],["2024-07-25T04:47:13.010000"],["2024-07-25T04:47:14.010000"],["2024-07-25T04:47:15.010000"],["2024-07-25T04:47:16.010000"],["2024-07-25T04:47:17.010000"],["2024-07-25T04:47:18.010000"],["2024-07-25T04:47:19.010000"],["2024-07-25T04:47:20.010000"],["2024-07-25T04:47:21.010000"],["2024-07-25T04:47:22.010000"],["2024-07-25T04:47:23.010000"],["2024-07-25T04:47:24.010000"],["2024-07-25T04:47:25.010000"],["2024-07-25T04:47:26.010000"],["2024-07-25T04:47:27.010000"],["2024-07-25T04:47:28.010000"],["2024-07-25T04:47:29.010000"],["2024-07-25T04:47:30.010000"],["2024-07-25T04:47:31.010000"],["2024-07-25T04:47:32.010000"],["2024-07-25T04:47:33.010000"],["2024-07-25T04:47:34.010000"],["2024-07-25T04:47:35.010000"],["2024-07-25T04:47:36.010000"],["2024-07-25T04:47:37.010000"],["2024-07-25T04:47:38.010000"],["2024-07-25T04:47:39.010000"],["2024-07-25T04:47:40.010000"],["2024-07-25T04:47:41.010000"],["2024-07-25T04:47:42.010000"],["2024-07-25T04:47:43.010000"],["2024-07-25T04:47:44.010000"],["2024-07-25T04:47:45.010000"],["2024-07-25T04:47:46.010000"],["2024-07-25T04:47:47.010000"],["2024-07-25T04:47:48.010000"],["2024-07-25T04:47:49.010000"],["2024-07-25T04:47:50.010000"],["2024-07-25T04:47:51.010000"],["2024-07-25T04:47:52.010000"],["2024-07-25T04:47:53.010000"],["2024-07-25T04:47:54.010000"],["2024-07-25T04:47:55.010000"],["2024-07-25T04:47:56.010000"],["2024-07-25T04:47:57.010000"],["2024-07-25T04:47:58.010000"],["2024-07-25T04:47:59.010000"],["2024-07-25T04:48:00.010000"],["2024-07-25T04:48:01.010000"],["2024-07-25T04:48:02.010000"],["2024-07-25T04:48:03.010000"],["2024-07-25T04:48:04.010000"],["2024-07-25T04:48:05.010000"],["2024-07-25T04:48:06.010000"],["2024-07-25T04:48:07.010000"],["2024-07-25T04:48:08.010000"],["2024-07-25T04:48:09.010000"],["2024-07-25T04:48:10.010000"],["2024-07-25T04:48:11.010000"],["2024-07-25T04:48:12.010000"],["2024-07-25T04:48:13.010000"],["2024-07-25T04:48:14.010000"],["2024-07-25T04:48:15.010000"],["2024-07-25T04:48:16.010000"],["2024-07-25T04:48:17.010000"],["2024-07-25T04:48:18.010000"],["2024-07-25T04:48:19.010000"],["2024-07-25T04:48:20.010000"],["2024-07-25T04:48:21.010000"],["2024-07-25T04:48:22.010000"],["2024-07-25T04:48:23.010000"],["2024-07-25T04:48:24.010000"],["2024-07-25T04:48:25.010000"],["2024-07-25T04:48:26.010000"],["2024-07-25T04:48:27.010000"],["2024-07-25T04:48:28.010000"],["2024-07-25T04:48:29.010000"],["2024-07-25T04:48:30.010000"],["2024-07-25T04:48:31.010000"],["2024-07-25T04:48:32.010000"],["2024-07-25T04:48:33.010000"],["2024-07-25T04:48:34.010000"],["2024-07-25T04:48:35.010000"],["2024-07-25T04:48:36.010000"],["2024-07-25T04:48:37.010000"],["2024-07-25T04:48:38.010000"],["2024-07-25T04:48:39.010000"],["2024-07-25T04:48:40.010000"],["2024-07-25T04:48:41.010000"],["2024-07-25T04:48:42.010000"],["2024-07-25T04:48:43.010000"],["2024-07-25T04:48:44.010000"],["2024-07-25T04:48:45.010000"],["2024-07-25T04:48:46.010000"],["2024-07-25T04:48:47.010000"],["2024-07-25T04:48:48.010000"],["2024-07-25T04:48:49.010000"],["2024-07-25T04:48:50.010000"],["2024-07-25T04:48:51.010000"],["2024-07-25T04:48:52.010000"],["2024-07-25T04:48:53.010000"],["2024-07-25T04:48:54.010000"],["2024-07-25T04:48:55.010000"],["2024-07-25T04:48:56.010000"],["2024-07-25T04:48:57.010000"],["2024-07-25T04:48:58.010000"],["2024-07-25T04:48:59.010000"],["2024-07-25T04:49:00.010000"],["2024-07-25T04:49:01.010000"],["2024-07-25T04:49:02.010000"],["2024-07-25T04:49:03.010000"],["2024-07-25T04:49:04.010000"],["2024-07-25T04:49:05.010000"],["2024-07-25T04:49:06.010000"],["2024-07-25T04:49:07.010000"],["2024-07-25T04:49:08.010000"],["2024-07-25T04:49:09.010000"],["2024-07-25T04:49:10.010000"],["2024-07-25T04:49:11.010000"],["2024-07-25T04:49:12.010000"],["2024-07-25T04:49:13.010000"],["2024-07-25T04:49:14.010000"],["2024-07-25T04:49:15.010000"],["2024-07-25T04:49:16.010000"],["2024-07-25T04:49:17.010000"],["2024-07-25T04:49:18.010000"],["2024-07-25T04:49:19.010000"],["2024-07-25T04:49:20.010000"],["2024-07-25T04:49:21.010000"],["2024-07-25T04:49:22.010000"],["2024-07-25T04:49:23.010000"],["2024-07-25T04:49:24.010000"],["2024-07-25T04:49:25.010000"],["2024-07-25T04:49:26.010000"],["2024-07-25T04:49:27.010000"],["2024-07-25T04:49:28.010000"],["2024-07-25T04:49:29.010000"],["2024-07-25T04:49:30.010000"],["2024-07-25T04:49:31.010000"],["2024-07-25T04:49:32.010000"],["2024-07-25T04:49:33.010000"],["2024-07-25T04:49:34.010000"],["2024-07-25T04:49:35.010000"],["2024-07-25T04:49:36.010000"],["2024-07-25T04:49:37.010000"],["2024-07-25T04:49:38.010000"],["2024-07-25T04:49:39.010000"],["2024-07-25T04:49:40.010000"],["2024-07-25T04:49:41.010000"],["2024-07-25T04:49:42.010000"],["2024-07-25T04:49:43.010000"],["2024-07-25T04:49:44.010000"],["2024-07-25T04:49:45.010000"],["2024-07-25T04:49:46.010000"],["2024-07-25T04:49:47.010000"],["2024-07-25T04:49:48.010000"],["2024-07-25T04:49:49.010000"],["2024-07-25T04:49:50.010000"],["2024-07-25T04:49:51.010000"],["2024-07-25T04:49:52.010000"],["2024-07-25T04:49:53.010000"],["2024-07-25T04:49:54.010000"],["2024-07-25T04:49:55.010000"],["2024-07-25T04:49:56.010000"],["2024-07-25T04:49:57.010000"],["2024-07-25T04:49:58.010000"],["2024-07-25T04:49:59.010000"],["2024-07-25T04:50:00.010000"],["2024-07-25T04:50:01.010000"],["2024-07-25T04:50:02.010000"],["2024-07-25T04:50:03.010000"],["2024-07-25T04:50:04.010000"],["2024-07-25T04:50:05.010000"],["2024-07-25T04:50:06.010000"],["2024-07-25T04:50:07.010000"],["2024-07-25T04:50:08.010000"],["2024-07-25T04:50:09.010000"],["2024-07-25T04:50:10.010000"],["2024-07-25T04:50:11.010000"],["2024-07-25T04:50:12.010000"],["2024-07-25T04:50:13.010000"],["2024-07-25T04:50:14.010000"],["2024-07-25T04:50:15.010000"],["2024-07-25T04:50:16.010000"],["2024-07-25T04:50:17.010000"],["2024-07-25T04:50:18.010000"],["2024-07-25T04:50:19.010000"],["2024-07-25T04:50:20.010000"],["2024-07-25T04:50:21.010000"],["2024-07-25T04:50:22.010000"],["2024-07-25T04:50:23.010000"],["2024-07-25T04:50:24.010000"],["2024-07-25T04:50:25.010000"],["2024-07-25T04:50:26.010000"],["2024-07-25T04:50:27.010000"],["2024-07-25T04:50:28.010000"],["2024-07-25T04:50:29.010000"],["2024-07-25T04:50:30.010000"],["2024-07-25T04:50:31.010000"],["2024-07-25T04:50:32.010000"],["2024-07-25T04:50:33.010000"],["2024-07-25T04:50:34.010000"],["2024-07-25T04:50:35.010000"],["2024-07-25T04:50:36.010000"],["2024-07-25T04:50:37.010000"],["2024-07-25T04:50:38.010000"],["2024-07-25T04:50:39.010000"],["2024-07-25T04:50:40.010000"],["2024-07-25T04:50:41.010000"],["2024-07-25T04:50:42.010000"],["2024-07-25T04:50:43.010000"],["2024-07-25T04:50:44.010000"],["2024-07-25T04:50:45.010000"],["2024-07-25T04:50:46.010000"],["2024-07-25T04:50:47.010000"],["2024-07-25T04:50:48.010000"],["2024-07-25T04:50:49.010000"],["2024-07-25T04:50:50.010000"],["2024-07-25T04:50:51.010000"],["2024-07-25T04:50:52.010000"],["2024-07-25T04:50:53.010000"],["2024-07-25T04:50:54.010000"],["2024-07-25T04:50:55.010000"],["2024-07-25T04:50:56.010000"],["2024-07-25T04:50:57.010000"],["2024-07-25T04:50:58.010000"],["2024-07-25T04:50:59.010000"],["2024-07-25T04:51:00.010000"],["2024-07-25T04:51:01.010000"],["2024-07-25T04:51:02.010000"],["2024-07-25T04:51:03.010000"],["2024-07-25T04:51:04.010000"],["2024-07-25T04:51:05.010000"],["2024-07-25T04:51:06.010000"],["2024-07-25T04:51:07.010000"],["2024-07-25T04:51:08.010000"],["2024-07-25T04:51:09.010000"],["2024-07-25T04:51:10.010000"],["2024-07-25T04:51:11.010000"],["2024-07-25T04:51:12.010000"],["2024-07-25T04:51:13.010000"],["2024-07-25T04:51:14.010000"],["2024-07-25T04:51:15.010000"],["2024-07-25T04:51:16.010000"],["2024-07-25T04:51:17.010000"],["2024-07-25T04:51:18.010000"],["2024-07-25T04:51:19.010000"],["2024-07-25T04:51:20.010000"],["2024-07-25T04:51:21.010000"],["2024-07-25T04:51:22.010000"],["2024-07-25T04:51:23.010000"],["2024-07-25T04:51:24.010000"],["2024-07-25T04:51:25.010000"],["2024-07-25T04:51:26.010000"],["2024-07-25T04:51:27.010000"],["2024-07-25T04:51:28.010000"],["2024-07-25T04:51:29.010000"],["2024-07-25T04:51:30.010000"],["2024-07-25T04:51:31.010000"],["2024-07-25T04:51:32.010000"],["2024-07-25T04:51:33.010000"],["2024-07-25T04:51:34.010000"],["2024-07-25T04:51:35.010000"],["2024-07-25T04:51:36.010000"],["2024-07-25T04:51:37.010000"],["2024-07-25T04:51:38.010000"],["2024-07-25T04:51:39.010000"],["2024-07-25T04:51:40.010000"],["2024-07-25T04:51:41.010000"],["2024-07-25T04:51:42.010000"],["2024-07-25T04:51:43.010000"],["2024-07-25T04:51:44.010000"],["2024-07-25T04:51:45.010000"],["2024-07-25T04:51:46.010000"],["2024-07-25T04:51:47.010000"],["2024-07-25T04:51:48.010000"],["2024-07-25T04:51:49.010000"],["2024-07-25T04:51:50.010000"],["2024-07-25T04:51:51.010000"],["2024-07-25T04:51:52.010000"],["2024-07-25T04:51:53.010000"],["2024-07-25T04:51:54.010000"],["2024-07-25T04:51:55.010000"],["2024-07-25T04:51:56.010000"],["2024-07-25T04:51:57.010000"],["2024-07-25T04:51:58.010000"],["2024-07-25T04:51:59.010000"],["2024-07-25T04:52:00.010000"],["2024-07-25T04:52:01.010000"],["2024-07-25T04:52:02.010000"],["2024-07-25T04:52:03.010000"],["2024-07-25T04:52:04.010000"],["2024-07-25T04:52:05.010000"],["2024-07-25T04:52:06.010000"],["2024-07-25T04:52:07.010000"],["2024-07-25T04:52:08.010000"],["2024-07-25T04:52:09.010000"],["2024-07-25T04:52:10.010000"],["2024-07-25T04:52:11.010000"],["2024-07-25T04:52:12.010000"],["2024-07-25T04:52:13.010000"],["2024-07-25T04:52:14.010000"],["2024-07-25T04:52:15.010000"],["2024-07-25T04:52:16.010000"],["2024-07-25T04:52:17.010000"],["2024-07-25T04:52:18.010000"],["2024-07-25T04:52:19.010000"],["2024-07-25T04:52:20.010000"],["2024-07-25T04:52:21.010000"],["2024-07-25T04:52:22.010000"],["2024-07-25T04:52:23.010000"],["2024-07-25T04:52:24.010000"],["2024-07-25T04:52:25.010000"],["2024-07-25T04:52:26.010000"],["2024-07-25T04:52:27.010000"],["2024-07-25T04:52:28.010000"],["2024-07-25T04:52:29.010000"],["2024-07-25T04:52:30.010000"],["2024-07-25T04:52:31.010000"],["2024-07-25T04:52:32.010000"],["2024-07-25T04:52:33.010000"],["2024-07-25T04:52:34.010000"],["2024-07-25T04:52:35.010000"],["2024-07-25T04:52:36.010000"],["2024-07-25T04:52:37.010000"],["2024-07-25T04:52:38.010000"],["2024-07-25T04:52:39.010000"],["2024-07-25T04:52:40.010000"],["2024-07-25T04:52:41.010000"],["2024-07-25T04:52:42.010000"],["2024-07-25T04:52:43.010000"],["2024-07-25T04:52:44.010000"],["2024-07-25T04:52:45.010000"],["2024-07-25T04:52:46.010000"],["2024-07-25T04:52:47.010000"],["2024-07-25T04:52:48.010000"],["2024-07-25T04:52:49.010000"],["2024-07-25T04:52:50.010000"],["2024-07-25T04:52:51.010000"],["2024-07-25T04:52:52.010000"],["2024-07-25T04:52:53.010000"],["2024-07-25T04:52:54.010000"],["2024-07-25T04:52:55.010000"],["2024-07-25T04:52:56.010000"],["2024-07-25T04:52:57.010000"],["2024-07-25T04:52:58.010000"],["2024-07-25T04:52:59.010000"],["2024-07-25T04:53:00.010000"],["2024-07-25T04:53:01.010000"],["2024-07-25T04:53:02.010000"],["2024-07-25T04:53:03.010000"],["2024-07-25T04:53:04.010000"],["2024-07-25T04:53:05.010000"],["2024-07-25T04:53:06.010000"],["2024-07-25T04:53:07.010000"],["2024-07-25T04:53:08.010000"],["2024-07-25T04:53:09.010000"],["2024-07-25T04:53:10.010000"],["2024-07-25T04:53:11.010000"],["2024-07-25T04:53:12.010000"],["2024-07-25T04:53:13.010000"],["2024-07-25T04:53:14.010000"],["2024-07-25T04:53:15.010000"],["2024-07-25T04:53:16.010000"],["2024-07-25T04:53:17.010000"],["2024-07-25T04:53:18.010000"],["2024-07-25T04:53:19.010000"],["2024-07-25T04:53:20.010000"],["2024-07-25T04:53:21.010000"],["2024-07-25T04:53:22.010000"],["2024-07-25T04:53:23.010000"],["2024-07-25T04:53:24.010000"],["2024-07-25T04:53:25.010000"],["2024-07-25T04:53:26.010000"],["2024-07-25T04:53:27.010000"],["2024-07-25T04:53:28.010000"],["2024-07-25T04:53:29.010000"],["2024-07-25T04:53:30.010000"],["2024-07-25T04:53:31.010000"],["2024-07-25T04:53:32.010000"],["2024-07-25T04:53:33.010000"],["2024-07-25T04:53:34.010000"],["2024-07-25T04:53:35.010000"],["2024-07-25T04:53:36.010000"],["2024-07-25T04:53:37.010000"],["2024-07-25T04:53:38.010000"],["2024-07-25T04:53:39.010000"],["2024-07-25T04:53:40.010000"],["2024-07-25T04:53:41.010000"],["2024-07-25T04:53:42.010000"],["2024-07-25T04:53:43.010000"],["2024-07-25T04:53:44.010000"],["2024-07-25T04:53:45.010000"],["2024-07-25T04:53:46.010000"],["2024-07-25T04:53:47.010000"],["2024-07-25T04:53:48.010000"],["2024-07-25T04:53:49.010000"],["2024-07-25T04:53:50.010000"],["2024-07-25T04:53:51.010000"],["2024-07-25T04:53:52.010000"],["2024-07-25T04:53:53.010000"],["2024-07-25T04:53:54.010000"],["2024-07-25T04:53:55.010000"],["2024-07-25T04:53:56.010000"],["2024-07-25T04:53:57.010000"],["2024-07-25T04:53:58.010000"],["2024-07-25T04:53:59.010000"],["2024-07-25T04:54:00.010000"],["2024-07-25T04:54:01.010000"],["2024-07-25T04:54:02.010000"],["2024-07-25T04:54:03.010000"],["2024-07-25T04:54:04.010000"],["2024-07-25T04:54:05.010000"],["2024-07-25T04:54:06.010000"],["2024-07-25T04:54:07.010000"],["2024-07-25T04:54:08.010000"],["2024-07-25T04:54:09.010000"],["2024-07-25T04:54:10.010000"],["2024-07-25T04:54:11.010000"],["2024-07-25T04:54:12.010000"],["2024-07-25T04:54:13.010000"],["2024-07-25T04:54:14.010000"],["2024-07-25T04:54:15.010000"],["2024-07-25T04:54:16.010000"],["2024-07-25T04:54:17.010000"],["2024-07-25T04:54:18.010000"],["2024-07-25T04:54:19.010000"],["2024-07-25T04:54:20.010000"],["2024-07-25T04:54:21.010000"],["2024-07-25T04:54:22.010000"],["2024-07-25T04:54:23.010000"],["2024-07-25T04:54:24.010000"],["2024-07-25T04:54:25.010000"],["2024-07-25T04:54:26.010000"],["2024-07-25T04:54:27.010000"],["2024-07-25T04:54:28.010000"],["2024-07-25T04:54:29.010000"],["2024-07-25T04:54:30.010000"],["2024-07-25T04:54:31.010000"],["2024-07-25T04:54:32.010000"],["2024-07-25T04:54:33.010000"],["2024-07-25T04:54:34.010000"],["2024-07-25T04:54:35.010000"],["2024-07-25T04:54:36.010000"],["2024-07-25T04:54:37.010000"],["2024-07-25T04:54:38.010000"],["2024-07-25T04:54:39.010000"],["2024-07-25T04:54:40.010000"],["2024-07-25T04:54:41.010000"],["2024-07-25T04:54:42.010000"],["2024-07-25T04:54:43.010000"],["2024-07-25T04:54:44.010000"],["2024-07-25T04:54:45.010000"],["2024-07-25T04:54:46.010000"],["2024-07-25T04:54:47.010000"],["2024-07-25T04:54:48.010000"],["2024-07-25T04:54:49.010000"],["2024-07-25T04:54:50.010000"],["2024-07-25T04:54:51.010000"],["2024-07-25T04:54:52.010000"],["2024-07-25T04:54:53.010000"],["2024-07-25T04:54:54.010000"],["2024-07-25T04:54:55.010000"],["2024-07-25T04:54:56.010000"],["2024-07-25T04:54:57.010000"],["2024-07-25T04:54:58.010000"],["2024-07-25T04:54:59.010000"],["2024-07-25T04:55:00.010000"],["2024-07-25T04:55:01.010000"],["2024-07-25T04:55:02.010000"],["2024-07-25T04:55:03.010000"],["2024-07-25T04:55:04.010000"],["2024-07-25T04:55:05.010000"],["2024-07-25T04:55:06.010000"],["2024-07-25T04:55:07.010000"],["2024-07-25T04:55:08.010000"],["2024-07-25T04:55:09.010000"],["2024-07-25T04:55:10.010000"],["2024-07-25T04:55:11.010000"],["2024-07-25T04:55:12.010000"],["2024-07-25T04:55:13.010000"],["2024-07-25T04:55:14.010000"],["2024-07-25T04:55:15.010000"],["2024-07-25T04:55:16.010000"],["2024-07-25T04:55:17.010000"],["2024-07-25T04:55:18.010000"],["2024-07-25T04:55:19.010000"],["2024-07-25T04:55:20.010000"],["2024-07-25T04:55:21.010000"],["2024-07-25T04:55:22.010000"],["2024-07-25T04:55:23.010000"],["2024-07-25T04:55:24.010000"],["2024-07-25T04:55:25.010000"],["2024-07-25T04:55:26.010000"],["2024-07-25T04:55:27.010000"],["2024-07-25T04:55:28.010000"],["2024-07-25T04:55:29.010000"],["2024-07-25T04:55:30.010000"],["2024-07-25T04:55:31.010000"],["2024-07-25T04:55:32.010000"],["2024-07-25T04:55:33.010000"],["2024-07-25T04:55:34.010000"],["2024-07-25T04:55:35.010000"],["2024-07-25T04:55:36.010000"],["2024-07-25T04:55:37.010000"],["2024-07-25T04:55:38.010000"],["2024-07-25T04:55:39.010000"],["2024-07-25T04:55:40.010000"],["2024-07-25T04:55:41.010000"],["2024-07-25T04:55:42.010000"],["2024-07-25T04:55:43.010000"],["2024-07-25T04:55:44.010000"],["2024-07-25T04:55:45.010000"],["2024-07-25T04:55:46.010000"],["2024-07-25T04:55:47.010000"],["2024-07-25T04:55:48.010000"],["2024-07-25T04:55:49.010000"],["2024-07-25T04:55:50.010000"],["2024-07-25T04:55:51.010000"],["2024-07-25T04:55:52.010000"],["2024-07-25T04:55:53.010000"],["2024-07-25T04:55:54.010000"],["2024-07-25T04:55:55.010000"],["2024-07-25T04:55:56.010000"],["2024-07-25T04:55:57.010000"],["2024-07-25T04:55:58.010000"],["2024-07-25T04:55:59.010000"],["2024-07-25T04:56:00.010000"],["2024-07-25T04:56:01.010000"],["2024-07-25T04:56:02.010000"],["2024-07-25T04:56:03.010000"],["2024-07-25T04:56:04.010000"],["2024-07-25T04:56:05.010000"],["2024-07-25T04:56:06.010000"],["2024-07-25T04:56:07.010000"],["2024-07-25T04:56:08.010000"],["2024-07-25T04:56:09.010000"],["2024-07-25T04:56:10.010000"],["2024-07-25T04:56:11.010000"],["2024-07-25T04:56:12.010000"],["2024-07-25T04:56:13.010000"],["2024-07-25T04:56:14.010000"],["2024-07-25T04:56:15.010000"],["2024-07-25T04:56:16.010000"],["2024-07-25T04:56:17.010000"],["2024-07-25T04:56:18.010000"],["2024-07-25T04:56:19.010000"],["2024-07-25T04:56:20.010000"],["2024-07-25T04:56:21.010000"],["2024-07-25T04:56:22.010000"],["2024-07-25T04:56:23.010000"],["2024-07-25T04:56:24.010000"],["2024-07-25T04:56:25.010000"],["2024-07-25T04:56:26.010000"],["2024-07-25T04:56:27.010000"],["2024-07-25T04:56:28.010000"],["2024-07-25T04:56:29.010000"],["2024-07-25T04:56:30.010000"],["2024-07-25T04:56:31.010000"],["2024-07-25T04:56:32.010000"],["2024-07-25T04:56:33.010000"],["2024-07-25T04:56:34.010000"],["2024-07-25T04:56:35.010000"],["2024-07-25T04:56:36.010000"],["2024-07-25T04:56:37.010000"],["2024-07-25T04:56:38.010000"],["2024-07-25T04:56:39.010000"],["2024-07-25T04:56:40.010000"],["2024-07-25T04:56:41.010000"],["2024-07-25T04:56:42.010000"],["2024-07-25T04:56:43.010000"],["2024-07-25T04:56:44.010000"],["2024-07-25T04:56:45.010000"],["2024-07-25T04:56:46.010000"],["2024-07-25T04:56:47.010000"],["2024-07-25T04:56:48.010000"],["2024-07-25T04:56:49.010000"],["2024-07-25T04:56:50.010000"],["2024-07-25T04:56:51.010000"],["2024-07-25T04:56:52.010000"],["2024-07-25T04:56:53.010000"],["2024-07-25T04:56:54.010000"],["2024-07-25T04:56:55.010000"],["2024-07-25T04:56:56.010000"],["2024-07-25T04:56:57.010000"],["2024-07-25T04:56:58.010000"],["2024-07-25T04:56:59.010000"],["2024-07-25T04:57:00.010000"],["2024-07-25T04:57:01.010000"],["2024-07-25T04:57:02.010000"],["2024-07-25T04:57:03.010000"],["2024-07-25T04:57:04.010000"],["2024-07-25T04:57:05.010000"],["2024-07-25T04:57:06.010000"],["2024-07-25T04:57:07.010000"],["2024-07-25T04:57:08.010000"],["2024-07-25T04:57:09.010000"],["2024-07-25T04:57:10.010000"],["2024-07-25T04:57:11.010000"],["2024-07-25T04:57:12.010000"],["2024-07-25T04:57:13.010000"],["2024-07-25T04:57:14.010000"],["2024-07-25T04:57:15.010000"],["2024-07-25T04:57:16.010000"],["2024-07-25T04:57:17.010000"],["2024-07-25T04:57:18.010000"],["2024-07-25T04:57:19.010000"],["2024-07-25T04:57:20.010000"],["2024-07-25T04:57:21.010000"],["2024-07-25T04:57:22.010000"],["2024-07-25T04:57:23.010000"],["2024-07-25T04:57:24.010000"],["2024-07-25T04:57:25.010000"],["2024-07-25T04:57:26.010000"],["2024-07-25T04:57:27.010000"],["2024-07-25T04:57:28.010000"],["2024-07-25T04:57:29.010000"],["2024-07-25T04:57:30.010000"],["2024-07-25T04:57:31.010000"],["2024-07-25T04:57:32.010000"],["2024-07-25T04:57:33.010000"],["2024-07-25T04:57:34.010000"],["2024-07-25T04:57:35.010000"],["2024-07-25T04:57:36.010000"],["2024-07-25T04:57:37.010000"],["2024-07-25T04:57:38.010000"],["2024-07-25T04:57:39.010000"],["2024-07-25T04:57:40.010000"],["2024-07-25T04:57:41.010000"],["2024-07-25T04:57:42.010000"],["2024-07-25T04:57:43.010000"],["2024-07-25T04:57:44.010000"],["2024-07-25T04:57:45.010000"],["2024-07-25T04:57:46.010000"],["2024-07-25T04:57:47.010000"],["2024-07-25T04:57:48.010000"],["2024-07-25T04:57:49.010000"],["2024-07-25T04:57:50.010000"],["2024-07-25T04:57:51.010000"],["2024-07-25T04:57:52.010000"],["2024-07-25T04:57:53.010000"],["2024-07-25T04:57:54.010000"],["2024-07-25T04:57:55.010000"],["2024-07-25T04:57:56.010000"],["2024-07-25T04:57:57.010000"],["2024-07-25T04:57:58.010000"],["2024-07-25T04:57:59.010000"],["2024-07-25T04:58:00.010000"],["2024-07-25T04:58:01.010000"],["2024-07-25T04:58:02.010000"],["2024-07-25T04:58:03.010000"],["2024-07-25T04:58:04.010000"],["2024-07-25T04:58:05.010000"],["2024-07-25T04:58:06.010000"],["2024-07-25T04:58:07.010000"],["2024-07-25T04:58:08.010000"],["2024-07-25T04:58:09.010000"],["2024-07-25T04:58:10.010000"],["2024-07-25T04:58:11.010000"],["2024-07-25T04:58:12.010000"],["2024-07-25T04:58:13.010000"],["2024-07-25T04:58:14.010000"],["2024-07-25T04:58:15.010000"],["2024-07-25T04:58:16.010000"],["2024-07-25T04:58:17.010000"],["2024-07-25T04:58:18.010000"],["2024-07-25T04:58:19.010000"],["2024-07-25T04:58:20.010000"],["2024-07-25T04:58:21.010000"],["2024-07-25T04:58:22.010000"],["2024-07-25T04:58:23.010000"],["2024-07-25T04:58:24.010000"],["2024-07-25T04:58:25.010000"],["2024-07-25T04:58:26.010000"],["2024-07-25T04:58:27.010000"],["2024-07-25T04:58:28.010000"],["2024-07-25T04:58:29.010000"],["2024-07-25T04:58:30.010000"],["2024-07-25T04:58:31.010000"],["2024-07-25T04:58:32.010000"],["2024-07-25T04:58:33.010000"],["2024-07-25T04:58:34.010000"],["2024-07-25T04:58:35.010000"],["2024-07-25T04:58:36.010000"],["2024-07-25T04:58:37.010000"],["2024-07-25T04:58:38.010000"],["2024-07-25T04:58:39.010000"],["2024-07-25T04:58:40.010000"],["2024-07-25T04:58:41.010000"],["2024-07-25T04:58:42.010000"],["2024-07-25T04:58:43.010000"],["2024-07-25T04:58:44.010000"],["2024-07-25T04:58:45.010000"],["2024-07-25T04:58:46.010000"],["2024-07-25T04:58:47.010000"],["2024-07-25T04:58:48.010000"],["2024-07-25T04:58:49.010000"],["2024-07-25T04:58:50.010000"],["2024-07-25T04:58:51.010000"],["2024-07-25T04:58:52.010000"],["2024-07-25T04:58:53.010000"],["2024-07-25T04:58:54.010000"],["2024-07-25T04:58:55.010000"],["2024-07-25T04:58:56.010000"],["2024-07-25T04:58:57.010000"],["2024-07-25T04:58:58.010000"],["2024-07-25T04:58:59.010000"],["2024-07-25T04:59:00.010000"],["2024-07-25T04:59:01.010000"],["2024-07-25T04:59:02.010000"],["2024-07-25T04:59:03.010000"],["2024-07-25T04:59:04.010000"],["2024-07-25T04:59:05.010000"],["2024-07-25T04:59:06.010000"],["2024-07-25T04:59:07.010000"],["2024-07-25T04:59:08.010000"],["2024-07-25T04:59:09.010000"],["2024-07-25T04:59:10.010000"],["2024-07-25T04:59:11.010000"],["2024-07-25T04:59:12.010000"],["2024-07-25T04:59:13.010000"],["2024-07-25T04:59:14.010000"],["2024-07-25T04:59:15.010000"],["2024-07-25T04:59:16.010000"],["2024-07-25T04:59:17.010000"],["2024-07-25T04:59:18.010000"],["2024-07-25T04:59:19.010000"],["2024-07-25T04:59:20.010000"],["2024-07-25T04:59:21.010000"],["2024-07-25T04:59:22.010000"],["2024-07-25T04:59:23.010000"],["2024-07-25T04:59:24.010000"],["2024-07-25T04:59:25.010000"],["2024-07-25T04:59:26.010000"],["2024-07-25T04:59:27.010000"],["2024-07-25T04:59:28.010000"],["2024-07-25T04:59:29.010000"],["2024-07-25T04:59:30.010000"],["2024-07-25T04:59:31.010000"],["2024-07-25T04:59:32.010000"],["2024-07-25T04:59:33.010000"],["2024-07-25T04:59:34.010000"],["2024-07-25T04:59:35.010000"],["2024-07-25T04:59:36.010000"],["2024-07-25T04:59:37.010000"],["2024-07-25T04:59:38.010000"],["2024-07-25T04:59:39.010000"],["2024-07-25T04:59:40.010000"],["2024-07-25T04:59:41.010000"],["2024-07-25T04:59:42.010000"],["2024-07-25T04:59:43.010000"],["2024-07-25T04:59:44.010000"],["2024-07-25T04:59:45.010000"],["2024-07-25T04:59:46.010000"],["2024-07-25T04:59:47.010000"],["2024-07-25T04:59:48.010000"],["2024-07-25T04:59:49.010000"],["2024-07-25T04:59:50.010000"],["2024-07-25T04:59:51.010000"],["2024-07-25T04:59:52.010000"],["2024-07-25T04:59:53.010000"],["2024-07-25T04:59:54.010000"],["2024-07-25T04:59:55.010000"],["2024-07-25T04:59:56.010000"],["2024-07-25T04:59:57.010000"],["2024-07-25T04:59:58.010000"],["2024-07-25T04:59:59.010000"],["2024-07-25T05:00:00.010000"],["2024-07-25T05:00:01.010000"],["2024-07-25T05:00:02.010000"],["2024-07-25T05:00:03.010000"],["2024-07-25T05:00:04.010000"],["2024-07-25T05:00:05.010000"],["2024-07-25T05:00:06.010000"],["2024-07-25T05:00:07.010000"],["2024-07-25T05:00:08.010000"],["2024-07-25T05:00:09.010000"],["2024-07-25T05:00:10.010000"],["2024-07-25T05:00:11.010000"],["2024-07-25T05:00:12.010000"],["2024-07-25T05:00:13.010000"],["2024-07-25T05:00:14.010000"],["2024-07-25T05:00:15.010000"],["2024-07-25T05:00:16.010000"],["2024-07-25T05:00:17.010000"],["2024-07-25T05:00:18.010000"],["2024-07-25T05:00:19.010000"],["2024-07-25T05:00:20.010000"],["2024-07-25T05:00:21.010000"],["2024-07-25T05:00:22.010000"],["2024-07-25T05:00:23.010000"],["2024-07-25T05:00:24.010000"],["2024-07-25T05:00:25.010000"],["2024-07-25T05:00:26.010000"],["2024-07-25T05:00:27.010000"],["2024-07-25T05:00:28.010000"],["2024-07-25T05:00:29.010000"],["2024-07-25T05:00:30.010000"],["2024-07-25T05:00:31.010000"],["2024-07-25T05:00:32.010000"],["2024-07-25T05:00:33.010000"],["2024-07-25T05:00:34.010000"],["2024-07-25T05:00:35.010000"],["2024-07-25T05:00:36.010000"],["2024-07-25T05:00:37.010000"],["2024-07-25T05:00:38.010000"],["2024-07-25T05:00:39.010000"],["2024-07-25T05:00:40.010000"],["2024-07-25T05:00:41.010000"],["2024-07-25T05:00:42.010000"],["2024-07-25T05:00:43.010000"],["2024-07-25T05:00:44.010000"],["2024-07-25T05:00:45.010000"],["2024-07-25T05:00:46.010000"],["2024-07-25T05:00:47.010000"],["2024-07-25T05:00:48.010000"],["2024-07-25T05:00:49.010000"],["2024-07-25T05:00:50.010000"],["2024-07-25T05:00:51.010000"],["2024-07-25T05:00:52.010000"],["2024-07-25T05:00:53.010000"],["2024-07-25T05:00:54.010000"],["2024-07-25T05:00:55.010000"],["2024-07-25T05:00:56.010000"],["2024-07-25T05:00:57.010000"],["2024-07-25T05:00:58.010000"],["2024-07-25T05:00:59.010000"],["2024-07-25T05:01:00.010000"],["2024-07-25T05:01:01.010000"],["2024-07-25T05:01:02.010000"],["2024-07-25T05:01:03.010000"],["2024-07-25T05:01:04.010000"],["2024-07-25T05:01:05.010000"],["2024-07-25T05:01:06.010000"],["2024-07-25T05:01:07.010000"],["2024-07-25T05:01:08.010000"],["2024-07-25T05:01:09.010000"],["2024-07-25T05:01:10.010000"],["2024-07-25T05:01:11.010000"],["2024-07-25T05:01:12.010000"],["2024-07-25T05:01:13.010000"],["2024-07-25T05:01:14.010000"],["2024-07-25T05:01:15.010000"],["2024-07-25T05:01:16.010000"],["2024-07-25T05:01:17.010000"],["2024-07-25T05:01:18.010000"],["2024-07-25T05:01:19.010000"],["2024-07-25T05:01:20.010000"],["2024-07-25T05:01:21.010000"],["2024-07-25T05:01:22.010000"],["2024-07-25T05:01:23.010000"],["2024-07-25T05:01:24.010000"],["2024-07-25T05:01:25.010000"],["2024-07-25T05:01:26.010000"],["2024-07-25T05:01:27.010000"],["2024-07-25T05:01:28.010000"],["2024-07-25T05:01:29.010000"],["2024-07-25T05:01:30.010000"],["2024-07-25T05:01:31.010000"],["2024-07-25T05:01:32.010000"],["2024-07-25T05:01:33.010000"],["2024-07-25T05:01:34.010000"],["2024-07-25T05:01:35.010000"],["2024-07-25T05:01:36.010000"],["2024-07-25T05:01:37.010000"],["2024-07-25T05:01:38.010000"],["2024-07-25T05:01:39.010000"],["2024-07-25T05:01:40.010000"],["2024-07-25T05:01:41.010000"],["2024-07-25T05:01:42.010000"],["2024-07-25T05:01:43.010000"],["2024-07-25T05:01:44.010000"],["2024-07-25T05:01:45.010000"],["2024-07-25T05:01:46.010000"],["2024-07-25T05:01:47.010000"],["2024-07-25T05:01:48.010000"],["2024-07-25T05:01:49.010000"],["2024-07-25T05:01:50.010000"],["2024-07-25T05:01:51.010000"],["2024-07-25T05:01:52.010000"],["2024-07-25T05:01:53.010000"],["2024-07-25T05:01:54.010000"],["2024-07-25T05:01:55.010000"],["2024-07-25T05:01:56.010000"],["2024-07-25T05:01:57.010000"],["2024-07-25T05:01:58.010000"],["2024-07-25T05:01:59.010000"],["2024-07-25T05:02:00.010000"],["2024-07-25T05:02:01.010000"],["2024-07-25T05:02:02.010000"],["2024-07-25T05:02:03.010000"],["2024-07-25T05:02:04.010000"],["2024-07-25T05:02:05.010000"],["2024-07-25T05:02:06.010000"],["2024-07-25T05:02:07.010000"],["2024-07-25T05:02:08.010000"],["2024-07-25T05:02:09.010000"],["2024-07-25T05:02:10.010000"],["2024-07-25T05:02:11.010000"],["2024-07-25T05:02:12.010000"],["2024-07-25T05:02:13.010000"],["2024-07-25T05:02:14.010000"],["2024-07-25T05:02:15.010000"],["2024-07-25T05:02:16.010000"],["2024-07-25T05:02:17.010000"],["2024-07-25T05:02:18.010000"],["2024-07-25T05:02:19.010000"],["2024-07-25T05:02:20.010000"],["2024-07-25T05:02:21.010000"],["2024-07-25T05:02:22.010000"],["2024-07-25T05:02:23.010000"],["2024-07-25T05:02:24.010000"],["2024-07-25T05:02:25.010000"],["2024-07-25T05:02:26.010000"],["2024-07-25T05:02:27.010000"],["2024-07-25T05:02:28.010000"],["2024-07-25T05:02:29.010000"],["2024-07-25T05:02:30.010000"],["2024-07-25T05:02:31.010000"],["2024-07-25T05:02:32.010000"],["2024-07-25T05:02:33.010000"],["2024-07-25T05:02:34.010000"],["2024-07-25T05:02:35.010000"],["2024-07-25T05:02:36.010000"],["2024-07-25T05:02:37.010000"],["2024-07-25T05:02:38.010000"],["2024-07-25T05:02:39.010000"],["2024-07-25T05:02:40.010000"],["2024-07-25T05:02:41.010000"],["2024-07-25T05:02:42.010000"],["2024-07-25T05:02:43.010000"],["2024-07-25T05:02:44.010000"],["2024-07-25T05:02:45.010000"],["2024-07-25T05:02:46.010000"],["2024-07-25T05:02:47.010000"],["2024-07-25T05:02:48.010000"],["2024-07-25T05:02:49.010000"],["2024-07-25T05:02:50.010000"],["2024-07-25T05:02:51.010000"],["2024-07-25T05:02:52.010000"],["2024-07-25T05:02:53.010000"],["2024-07-25T05:02:54.010000"],["2024-07-25T05:02:55.010000"],["2024-07-25T05:02:56.010000"],["2024-07-25T05:02:57.010000"],["2024-07-25T05:02:58.010000"],["2024-07-25T05:02:59.010000"],["2024-07-25T05:03:00.010000"],["2024-07-25T05:03:01.010000"],["2024-07-25T05:03:02.010000"],["2024-07-25T05:03:03.010000"],["2024-07-25T05:03:04.010000"],["2024-07-25T05:03:05.010000"],["2024-07-25T05:03:06.010000"],["2024-07-25T05:03:07.010000"],["2024-07-25T05:03:08.010000"],["2024-07-25T05:03:09.010000"],["2024-07-25T05:03:10.010000"],["2024-07-25T05:03:11.010000"],["2024-07-25T05:03:12.010000"],["2024-07-25T05:03:13.010000"],["2024-07-25T05:03:14.010000"],["2024-07-25T05:03:15.010000"],["2024-07-25T05:03:16.010000"],["2024-07-25T05:03:17.010000"],["2024-07-25T05:03:18.010000"],["2024-07-25T05:03:19.010000"],["2024-07-25T05:03:20.010000"],["2024-07-25T05:03:21.010000"],["2024-07-25T05:03:22.010000"],["2024-07-25T05:03:23.010000"],["2024-07-25T05:03:24.010000"],["2024-07-25T05:03:25.010000"],["2024-07-25T05:03:26.010000"],["2024-07-25T05:03:27.010000"],["2024-07-25T05:03:28.010000"],["2024-07-25T05:03:29.010000"],["2024-07-25T05:03:30.010000"],["2024-07-25T05:03:31.010000"],["2024-07-25T05:03:32.010000"],["2024-07-25T05:03:33.010000"],["2024-07-25T05:03:34.010000"],["2024-07-25T05:03:35.010000"],["2024-07-25T05:03:36.010000"],["2024-07-25T05:03:37.010000"],["2024-07-25T05:03:38.010000"],["2024-07-25T05:03:39.010000"],["2024-07-25T05:03:40.010000"],["2024-07-25T05:03:41.010000"],["2024-07-25T05:03:42.010000"],["2024-07-25T05:03:43.010000"],["2024-07-25T05:03:44.010000"],["2024-07-25T05:03:45.010000"],["2024-07-25T05:03:46.010000"],["2024-07-25T05:03:47.010000"],["2024-07-25T05:03:48.010000"],["2024-07-25T05:03:49.010000"],["2024-07-25T05:03:50.010000"],["2024-07-25T05:03:51.010000"],["2024-07-25T05:03:52.010000"],["2024-07-25T05:03:53.010000"],["2024-07-25T05:03:54.010000"],["2024-07-25T05:03:55.010000"],["2024-07-25T05:03:56.010000"],["2024-07-25T05:03:57.010000"],["2024-07-25T05:03:58.010000"],["2024-07-25T05:03:59.010000"],["2024-07-25T05:04:00.010000"],["2024-07-25T05:04:01.010000"],["2024-07-25T05:04:02.010000"],["2024-07-25T05:04:03.010000"],["2024-07-25T05:04:04.010000"],["2024-07-25T05:04:05.010000"],["2024-07-25T05:04:06.010000"],["2024-07-25T05:04:07.010000"],["2024-07-25T05:04:08.010000"],["2024-07-25T05:04:09.010000"],["2024-07-25T05:04:10.010000"],["2024-07-25T05:04:11.010000"],["2024-07-25T05:04:12.010000"],["2024-07-25T05:04:13.010000"],["2024-07-25T05:04:14.010000"],["2024-07-25T05:04:15.010000"],["2024-07-25T05:04:16.010000"],["2024-07-25T05:04:17.010000"],["2024-07-25T05:04:18.010000"],["2024-07-25T05:04:19.010000"],["2024-07-25T05:04:20.010000"],["2024-07-25T05:04:21.010000"],["2024-07-25T05:04:22.010000"],["2024-07-25T05:04:23.010000"],["2024-07-25T05:04:24.010000"],["2024-07-25T05:04:25.010000"],["2024-07-25T05:04:26.010000"],["2024-07-25T05:04:27.010000"],["2024-07-25T05:04:28.010000"],["2024-07-25T05:04:29.010000"],["2024-07-25T05:04:30.010000"],["2024-07-25T05:04:31.010000"],["2024-07-25T05:04:32.010000"],["2024-07-25T05:04:33.010000"],["2024-07-25T05:04:34.010000"],["2024-07-25T05:04:35.010000"],["2024-07-25T05:04:36.010000"],["2024-07-25T05:04:37.010000"],["2024-07-25T05:04:38.010000"],["2024-07-25T05:04:39.010000"],["2024-07-25T05:04:40.010000"],["2024-07-25T05:04:41.010000"],["2024-07-25T05:04:42.010000"],["2024-07-25T05:04:43.010000"],["2024-07-25T05:04:44.010000"],["2024-07-25T05:04:45.010000"],["2024-07-25T05:04:46.010000"],["2024-07-25T05:04:47.010000"],["2024-07-25T05:04:48.010000"],["2024-07-25T05:04:49.010000"],["2024-07-25T05:04:50.010000"],["2024-07-25T05:04:51.010000"],["2024-07-25T05:04:52.010000"],["2024-07-25T05:04:53.010000"],["2024-07-25T05:04:54.010000"],["2024-07-25T05:04:55.010000"],["2024-07-25T05:04:56.010000"],["2024-07-25T05:04:57.010000"],["2024-07-25T05:04:58.010000"],["2024-07-25T05:04:59.010000"],["2024-07-25T05:05:00.010000"],["2024-07-25T05:05:01.010000"],["2024-07-25T05:05:02.010000"],["2024-07-25T05:05:03.010000"],["2024-07-25T05:05:04.010000"],["2024-07-25T05:05:05.010000"],["2024-07-25T05:05:06.010000"],["2024-07-25T05:05:07.010000"],["2024-07-25T05:05:08.010000"],["2024-07-25T05:05:09.010000"],["2024-07-25T05:05:10.010000"],["2024-07-25T05:05:11.010000"],["2024-07-25T05:05:12.010000"],["2024-07-25T05:05:13.010000"],["2024-07-25T05:05:14.010000"],["2024-07-25T05:05:15.010000"],["2024-07-25T05:05:16.010000"],["2024-07-25T05:05:17.010000"],["2024-07-25T05:05:18.010000"],["2024-07-25T05:05:19.010000"],["2024-07-25T05:05:20.010000"],["2024-07-25T05:05:21.010000"],["2024-07-25T05:05:22.010000"],["2024-07-25T05:05:23.010000"],["2024-07-25T05:05:24.010000"],["2024-07-25T05:05:25.010000"],["2024-07-25T05:05:26.010000"],["2024-07-25T05:05:27.010000"],["2024-07-25T05:05:28.010000"],["2024-07-25T05:05:29.010000"],["2024-07-25T05:05:30.010000"],["2024-07-25T05:05:31.010000"],["2024-07-25T05:05:32.010000"],["2024-07-25T05:05:33.010000"],["2024-07-25T05:05:34.010000"],["2024-07-25T05:05:35.010000"],["2024-07-25T05:05:36.010000"],["2024-07-25T05:05:37.010000"],["2024-07-25T05:05:38.010000"],["2024-07-25T05:05:39.010000"],["2024-07-25T05:05:40.010000"],["2024-07-25T05:05:41.010000"],["2024-07-25T05:05:42.010000"],["2024-07-25T05:05:43.010000"],["2024-07-25T05:05:44.010000"],["2024-07-25T05:05:45.010000"],["2024-07-25T05:05:46.010000"],["2024-07-25T05:05:47.010000"],["2024-07-25T05:05:48.010000"],["2024-07-25T05:05:49.010000"],["2024-07-25T05:05:50.010000"],["2024-07-25T05:05:51.010000"],["2024-07-25T05:05:52.010000"],["2024-07-25T05:05:53.010000"],["2024-07-25T05:05:54.010000"],["2024-07-25T05:05:55.010000"],["2024-07-25T05:05:56.010000"],["2024-07-25T05:05:57.010000"],["2024-07-25T05:05:58.010000"],["2024-07-25T05:05:59.010000"],["2024-07-25T05:06:00.010000"],["2024-07-25T05:06:01.010000"],["2024-07-25T05:06:02.010000"],["2024-07-25T05:06:03.010000"],["2024-07-25T05:06:04.010000"],["2024-07-25T05:06:05.010000"],["2024-07-25T05:06:06.010000"],["2024-07-25T05:06:07.010000"],["2024-07-25T05:06:08.010000"],["2024-07-25T05:06:09.010000"],["2024-07-25T05:06:10.010000"],["2024-07-25T05:06:11.010000"],["2024-07-25T05:06:12.010000"],["2024-07-25T05:06:13.010000"],["2024-07-25T05:06:14.010000"],["2024-07-25T05:06:15.010000"],["2024-07-25T05:06:16.010000"],["2024-07-25T05:06:17.010000"],["2024-07-25T05:06:18.010000"],["2024-07-25T05:06:19.010000"],["2024-07-25T05:06:20.010000"],["2024-07-25T05:06:21.010000"],["2024-07-25T05:06:22.010000"],["2024-07-25T05:06:23.010000"],["2024-07-25T05:06:24.010000"],["2024-07-25T05:06:25.010000"],["2024-07-25T05:06:26.010000"],["2024-07-25T05:06:27.010000"],["2024-07-25T05:06:28.010000"],["2024-07-25T05:06:29.010000"],["2024-07-25T05:06:30.010000"],["2024-07-25T05:06:31.010000"],["2024-07-25T05:06:32.010000"],["2024-07-25T05:06:33.010000"],["2024-07-25T05:06:34.010000"],["2024-07-25T05:06:35.010000"],["2024-07-25T05:06:36.010000"],["2024-07-25T05:06:37.010000"],["2024-07-25T05:06:38.010000"],["2024-07-25T05:06:39.010000"],["2024-07-25T05:06:40.010000"],["2024-07-25T05:06:41.010000"],["2024-07-25T05:06:42.010000"],["2024-07-25T05:06:43.010000"],["2024-07-25T05:06:44.010000"],["2024-07-25T05:06:45.010000"],["2024-07-25T05:06:46.010000"],["2024-07-25T05:06:47.010000"],["2024-07-25T05:06:48.010000"],["2024-07-25T05:06:49.010000"],["2024-07-25T05:06:50.010000"],["2024-07-25T05:06:51.010000"],["2024-07-25T05:06:52.010000"],["2024-07-25T05:06:53.010000"],["2024-07-25T05:06:54.010000"],["2024-07-25T05:06:55.010000"],["2024-07-25T05:06:56.010000"],["2024-07-25T05:06:57.010000"],["2024-07-25T05:06:58.010000"],["2024-07-25T05:06:59.010000"],["2024-07-25T05:07:00.010000"],["2024-07-25T05:07:01.010000"],["2024-07-25T05:07:02.010000"],["2024-07-25T05:07:03.010000"],["2024-07-25T05:07:04.010000"],["2024-07-25T05:07:05.010000"],["2024-07-25T05:07:06.010000"],["2024-07-25T05:07:07.010000"],["2024-07-25T05:07:08.010000"],["2024-07-25T05:07:09.010000"],["2024-07-25T05:07:10.010000"],["2024-07-25T05:07:11.010000"],["2024-07-25T05:07:12.010000"],["2024-07-25T05:07:13.010000"],["2024-07-25T05:07:14.010000"],["2024-07-25T05:07:15.010000"],["2024-07-25T05:07:16.010000"],["2024-07-25T05:07:17.010000"],["2024-07-25T05:07:18.010000"],["2024-07-25T05:07:19.010000"],["2024-07-25T05:07:20.010000"],["2024-07-25T05:07:21.010000"],["2024-07-25T05:07:22.010000"],["2024-07-25T05:07:23.010000"],["2024-07-25T05:07:24.010000"],["2024-07-25T05:07:25.010000"],["2024-07-25T05:07:26.010000"],["2024-07-25T05:07:27.010000"],["2024-07-25T05:07:28.010000"],["2024-07-25T05:07:29.010000"],["2024-07-25T05:07:30.010000"],["2024-07-25T05:07:31.010000"],["2024-07-25T05:07:32.010000"],["2024-07-25T05:07:33.010000"],["2024-07-25T05:07:34.010000"],["2024-07-25T05:07:35.010000"],["2024-07-25T05:07:36.010000"],["2024-07-25T05:07:37.010000"],["2024-07-25T05:07:38.010000"],["2024-07-25T05:07:39.010000"],["2024-07-25T05:07:40.010000"],["2024-07-25T05:07:41.010000"],["2024-07-25T05:07:42.010000"],["2024-07-25T05:07:43.010000"],["2024-07-25T05:07:44.010000"],["2024-07-25T05:07:45.010000"],["2024-07-25T05:07:46.010000"],["2024-07-25T05:07:47.010000"],["2024-07-25T05:07:48.010000"],["2024-07-25T05:07:49.010000"],["2024-07-25T05:07:50.010000"],["2024-07-25T05:07:51.010000"],["2024-07-25T05:07:52.010000"],["2024-07-25T05:07:53.010000"],["2024-07-25T05:07:54.010000"],["2024-07-25T05:07:55.010000"],["2024-07-25T05:07:56.010000"],["2024-07-25T05:07:57.010000"],["2024-07-25T05:07:58.010000"],["2024-07-25T05:07:59.010000"],["2024-07-25T05:08:00.010000"],["2024-07-25T05:08:01.010000"],["2024-07-25T05:08:02.010000"],["2024-07-25T05:08:03.010000"],["2024-07-25T05:08:04.010000"],["2024-07-25T05:08:05.010000"],["2024-07-25T05:08:06.010000"],["2024-07-25T05:08:07.010000"],["2024-07-25T05:08:08.010000"],["2024-07-25T05:08:09.010000"],["2024-07-25T05:08:10.010000"],["2024-07-25T05:08:11.010000"],["2024-07-25T05:08:12.010000"],["2024-07-25T05:08:13.010000"],["2024-07-25T05:08:14.010000"],["2024-07-25T05:08:15.010000"],["2024-07-25T05:08:16.010000"],["2024-07-25T05:08:17.010000"],["2024-07-25T05:08:18.010000"],["2024-07-25T05:08:19.010000"],["2024-07-25T05:08:20.010000"],["2024-07-25T05:08:21.010000"],["2024-07-25T05:08:22.010000"],["2024-07-25T05:08:23.010000"],["2024-07-25T05:08:24.010000"],["2024-07-25T05:08:25.010000"],["2024-07-25T05:08:26.010000"],["2024-07-25T05:08:27.010000"],["2024-07-25T05:08:28.010000"],["2024-07-25T05:08:29.010000"],["2024-07-25T05:08:30.010000"],["2024-07-25T05:08:31.010000"],["2024-07-25T05:08:32.010000"],["2024-07-25T05:08:33.010000"],["2024-07-25T05:08:34.010000"],["2024-07-25T05:08:35.010000"],["2024-07-25T05:08:36.010000"],["2024-07-25T05:08:37.010000"],["2024-07-25T05:08:38.010000"],["2024-07-25T05:08:39.010000"],["2024-07-25T05:08:40.010000"],["2024-07-25T05:08:41.010000"],["2024-07-25T05:08:42.010000"],["2024-07-25T05:08:43.010000"],["2024-07-25T05:08:44.010000"],["2024-07-25T05:08:45.010000"],["2024-07-25T05:08:46.010000"],["2024-07-25T05:08:47.010000"],["2024-07-25T05:08:48.010000"],["2024-07-25T05:08:49.010000"],["2024-07-25T05:08:50.010000"],["2024-07-25T05:08:51.010000"],["2024-07-25T05:08:52.010000"],["2024-07-25T05:08:53.010000"],["2024-07-25T05:08:54.010000"],["2024-07-25T05:08:55.010000"],["2024-07-25T05:08:56.010000"],["2024-07-25T05:08:57.010000"],["2024-07-25T05:08:58.010000"],["2024-07-25T05:08:59.010000"],["2024-07-25T05:09:00.010000"],["2024-07-25T05:09:01.010000"],["2024-07-25T05:09:02.010000"],["2024-07-25T05:09:03.010000"],["2024-07-25T05:09:04.010000"],["2024-07-25T05:09:05.010000"],["2024-07-25T05:09:06.010000"],["2024-07-25T05:09:07.010000"],["2024-07-25T05:09:08.010000"],["2024-07-25T05:09:09.010000"],["2024-07-25T05:09:10.010000"],["2024-07-25T05:09:11.010000"],["2024-07-25T05:09:12.010000"],["2024-07-25T05:09:13.010000"],["2024-07-25T05:09:14.010000"],["2024-07-25T05:09:15.010000"],["2024-07-25T05:09:16.010000"],["2024-07-25T05:09:17.010000"],["2024-07-25T05:09:18.010000"],["2024-07-25T05:09:19.010000"],["2024-07-25T05:09:20.010000"],["2024-07-25T05:09:21.010000"],["2024-07-25T05:09:22.010000"],["2024-07-25T05:09:23.010000"],["2024-07-25T05:09:24.010000"],["2024-07-25T05:09:25.010000"],["2024-07-25T05:09:26.010000"],["2024-07-25T05:09:27.010000"],["2024-07-25T05:09:28.010000"],["2024-07-25T05:09:29.010000"],["2024-07-25T05:09:30.010000"],["2024-07-25T05:09:31.010000"],["2024-07-25T05:09:32.010000"],["2024-07-25T05:09:33.010000"],["2024-07-25T05:09:34.010000"],["2024-07-25T05:09:35.010000"],["2024-07-25T05:09:36.010000"],["2024-07-25T05:09:37.010000"],["2024-07-25T05:09:38.010000"],["2024-07-25T05:09:39.010000"],["2024-07-25T05:09:40.010000"],["2024-07-25T05:09:41.010000"],["2024-07-25T05:09:42.010000"],["2024-07-25T05:09:43.010000"],["2024-07-25T05:09:44.010000"],["2024-07-25T05:09:45.010000"],["2024-07-25T05:09:46.010000"],["2024-07-25T05:09:47.010000"],["2024-07-25T05:09:48.010000"],["2024-07-25T05:09:49.010000"],["2024-07-25T05:09:50.010000"],["2024-07-25T05:09:51.010000"],["2024-07-25T05:09:52.010000"],["2024-07-25T05:09:53.010000"],["2024-07-25T05:09:54.010000"],["2024-07-25T05:09:55.010000"],["2024-07-25T05:09:56.010000"],["2024-07-25T05:09:57.010000"],["2024-07-25T05:09:58.010000"],["2024-07-25T05:09:59.010000"],["2024-07-25T05:10:00.010000"],["2024-07-25T05:10:01.010000"],["2024-07-25T05:10:02.010000"],["2024-07-25T05:10:03.010000"],["2024-07-25T05:10:04.010000"],["2024-07-25T05:10:05.010000"],["2024-07-25T05:10:06.010000"],["2024-07-25T05:10:07.010000"],["2024-07-25T05:10:08.010000"],["2024-07-25T05:10:09.010000"],["2024-07-25T05:10:10.010000"],["2024-07-25T05:10:11.010000"],["2024-07-25T05:10:12.010000"],["2024-07-25T05:10:13.010000"],["2024-07-25T05:10:14.010000"],["2024-07-25T05:10:15.010000"],["2024-07-25T05:10:16.010000"],["2024-07-25T05:10:17.010000"],["2024-07-25T05:10:18.010000"],["2024-07-25T05:10:19.010000"],["2024-07-25T05:10:20.010000"],["2024-07-25T05:10:21.010000"],["2024-07-25T05:10:22.010000"],["2024-07-25T05:10:23.010000"],["2024-07-25T05:10:24.010000"],["2024-07-25T05:10:25.010000"],["2024-07-25T05:10:26.010000"],["2024-07-25T05:10:27.010000"],["2024-07-25T05:10:28.010000"],["2024-07-25T05:10:29.010000"],["2024-07-25T05:10:30.010000"],["2024-07-25T05:10:31.010000"],["2024-07-25T05:10:32.010000"],["2024-07-25T05:10:33.010000"],["2024-07-25T05:10:34.010000"],["2024-07-25T05:10:35.010000"],["2024-07-25T05:10:36.010000"],["2024-07-25T05:10:37.010000"],["2024-07-25T05:10:38.010000"],["2024-07-25T05:10:39.010000"],["2024-07-25T05:10:40.010000"],["2024-07-25T05:10:41.010000"],["2024-07-25T05:10:42.010000"],["2024-07-25T05:10:43.010000"],["2024-07-25T05:10:44.010000"],["2024-07-25T05:10:45.010000"],["2024-07-25T05:10:46.010000"],["2024-07-25T05:10:47.010000"],["2024-07-25T05:10:48.010000"],["2024-07-25T05:10:49.010000"],["2024-07-25T05:10:50.010000"],["2024-07-25T05:10:51.010000"],["2024-07-25T05:10:52.010000"],["2024-07-25T05:10:53.010000"],["2024-07-25T05:10:54.010000"],["2024-07-25T05:10:55.010000"],["2024-07-25T05:10:56.010000"],["2024-07-25T05:10:57.010000"],["2024-07-25T05:10:58.010000"],["2024-07-25T05:10:59.010000"],["2024-07-25T05:11:00.010000"],["2024-07-25T05:11:01.010000"],["2024-07-25T05:11:02.010000"],["2024-07-25T05:11:03.010000"],["2024-07-25T05:11:04.010000"],["2024-07-25T05:11:05.010000"],["2024-07-25T05:11:06.010000"],["2024-07-25T05:11:07.010000"],["2024-07-25T05:11:08.010000"],["2024-07-25T05:11:09.010000"],["2024-07-25T05:11:10.010000"],["2024-07-25T05:11:11.010000"],["2024-07-25T05:11:12.010000"],["2024-07-25T05:11:13.010000"],["2024-07-25T05:11:14.010000"],["2024-07-25T05:11:15.010000"],["2024-07-25T05:11:16.010000"],["2024-07-25T05:11:17.010000"],["2024-07-25T05:11:18.010000"],["2024-07-25T05:11:19.010000"],["2024-07-25T05:11:20.010000"],["2024-07-25T05:11:21.010000"],["2024-07-25T05:11:22.010000"],["2024-07-25T05:11:23.010000"],["2024-07-25T05:11:24.010000"],["2024-07-25T05:11:25.010000"],["2024-07-25T05:11:26.010000"],["2024-07-25T05:11:27.010000"],["2024-07-25T05:11:28.010000"],["2024-07-25T05:11:29.010000"],["2024-07-25T05:11:30.010000"],["2024-07-25T05:11:31.010000"],["2024-07-25T05:11:32.010000"],["2024-07-25T05:11:33.010000"],["2024-07-25T05:11:34.010000"],["2024-07-25T05:11:35.010000"],["2024-07-25T05:11:36.010000"],["2024-07-25T05:11:37.010000"],["2024-07-25T05:11:38.010000"],["2024-07-25T05:11:39.010000"],["2024-07-25T05:11:40.010000"],["2024-07-25T05:11:41.010000"],["2024-07-25T05:11:42.010000"],["2024-07-25T05:11:43.010000"],["2024-07-25T05:11:44.010000"],["2024-07-25T05:11:45.010000"],["2024-07-25T05:11:46.010000"],["2024-07-25T05:11:47.010000"],["2024-07-25T05:11:48.010000"],["2024-07-25T05:11:49.010000"],["2024-07-25T05:11:50.010000"],["2024-07-25T05:11:51.010000"],["2024-07-25T05:11:52.010000"],["2024-07-25T05:11:53.010000"],["2024-07-25T05:11:54.010000"],["2024-07-25T05:11:55.010000"],["2024-07-25T05:11:56.010000"],["2024-07-25T05:11:57.010000"],["2024-07-25T05:11:58.010000"],["2024-07-25T05:11:59.010000"],["2024-07-25T05:12:00.010000"],["2024-07-25T05:12:01.010000"],["2024-07-25T05:12:02.010000"],["2024-07-25T05:12:03.010000"],["2024-07-25T05:12:04.010000"],["2024-07-25T05:12:05.010000"],["2024-07-25T05:12:06.010000"],["2024-07-25T05:12:07.010000"],["2024-07-25T05:12:08.010000"],["2024-07-25T05:12:09.010000"],["2024-07-25T05:12:10.010000"],["2024-07-25T05:12:11.010000"],["2024-07-25T05:12:12.010000"],["2024-07-25T05:12:13.010000"],["2024-07-25T05:12:14.010000"],["2024-07-25T05:12:15.010000"],["2024-07-25T05:12:16.010000"],["2024-07-25T05:12:17.010000"],["2024-07-25T05:12:18.010000"],["2024-07-25T05:12:19.010000"],["2024-07-25T05:12:20.010000"],["2024-07-25T05:12:21.010000"],["2024-07-25T05:12:22.010000"],["2024-07-25T05:12:23.010000"],["2024-07-25T05:12:24.010000"],["2024-07-25T05:12:25.010000"],["2024-07-25T05:12:26.010000"],["2024-07-25T05:12:27.010000"],["2024-07-25T05:12:28.010000"],["2024-07-25T05:12:29.010000"],["2024-07-25T05:12:30.010000"],["2024-07-25T05:12:31.010000"],["2024-07-25T05:12:32.010000"],["2024-07-25T05:12:33.010000"],["2024-07-25T05:12:34.010000"],["2024-07-25T05:12:35.010000"],["2024-07-25T05:12:36.010000"],["2024-07-25T05:12:37.010000"],["2024-07-25T05:12:38.010000"],["2024-07-25T05:12:39.010000"],["2024-07-25T05:12:40.010000"],["2024-07-25T05:12:41.010000"],["2024-07-25T05:12:42.010000"],["2024-07-25T05:12:43.010000"],["2024-07-25T05:12:44.010000"],["2024-07-25T05:12:45.010000"],["2024-07-25T05:12:46.010000"],["2024-07-25T05:12:47.010000"],["2024-07-25T05:12:48.010000"],["2024-07-25T05:12:49.010000"],["2024-07-25T05:12:50.010000"],["2024-07-25T05:12:51.010000"],["2024-07-25T05:12:52.010000"],["2024-07-25T05:12:53.010000"],["2024-07-25T05:12:54.010000"],["2024-07-25T05:12:55.010000"],["2024-07-25T05:12:56.010000"],["2024-07-25T05:12:57.010000"],["2024-07-25T05:12:58.010000"],["2024-07-25T05:12:59.010000"],["2024-07-25T05:13:00.010000"],["2024-07-25T05:13:01.010000"],["2024-07-25T05:13:02.010000"],["2024-07-25T05:13:03.010000"],["2024-07-25T05:13:04.010000"],["2024-07-25T05:13:05.010000"],["2024-07-25T05:13:06.010000"],["2024-07-25T05:13:07.010000"],["2024-07-25T05:13:08.010000"],["2024-07-25T05:13:09.010000"],["2024-07-25T05:13:10.010000"],["2024-07-25T05:13:11.010000"],["2024-07-25T05:13:12.010000"],["2024-07-25T05:13:13.010000"],["2024-07-25T05:13:14.010000"],["2024-07-25T05:13:15.010000"],["2024-07-25T05:13:16.010000"],["2024-07-25T05:13:17.010000"],["2024-07-25T05:13:18.010000"],["2024-07-25T05:13:19.010000"],["2024-07-25T05:13:20.010000"],["2024-07-25T05:13:21.010000"],["2024-07-25T05:13:22.010000"],["2024-07-25T05:13:23.010000"],["2024-07-25T05:13:24.010000"],["2024-07-25T05:13:25.010000"],["2024-07-25T05:13:26.010000"],["2024-07-25T05:13:27.010000"],["2024-07-25T05:13:28.010000"],["2024-07-25T05:13:29.010000"],["2024-07-25T05:13:30.010000"],["2024-07-25T05:13:31.010000"],["2024-07-25T05:13:32.010000"],["2024-07-25T05:13:33.010000"],["2024-07-25T05:13:34.010000"],["2024-07-25T05:13:35.010000"],["2024-07-25T05:13:36.010000"],["2024-07-25T05:13:37.010000"],["2024-07-25T05:13:38.010000"],["2024-07-25T05:13:39.010000"],["2024-07-25T05:13:40.010000"],["2024-07-25T05:13:41.010000"],["2024-07-25T05:13:42.010000"],["2024-07-25T05:13:43.010000"],["2024-07-25T05:13:44.010000"],["2024-07-25T05:13:45.010000"],["2024-07-25T05:13:46.010000"],["2024-07-25T05:13:47.010000"],["2024-07-25T05:13:48.010000"],["2024-07-25T05:13:49.010000"],["2024-07-25T05:13:50.010000"],["2024-07-25T05:13:51.010000"],["2024-07-25T05:13:52.010000"],["2024-07-25T05:13:53.010000"],["2024-07-25T05:13:54.010000"],["2024-07-25T05:13:55.010000"],["2024-07-25T05:13:56.010000"],["2024-07-25T05:13:57.010000"],["2024-07-25T05:13:58.010000"],["2024-07-25T05:13:59.010000"],["2024-07-25T05:14:00.010000"],["2024-07-25T05:14:01.010000"],["2024-07-25T05:14:02.010000"],["2024-07-25T05:14:03.010000"],["2024-07-25T05:14:04.010000"],["2024-07-25T05:14:05.010000"],["2024-07-25T05:14:06.010000"],["2024-07-25T05:14:07.010000"],["2024-07-25T05:14:08.010000"],["2024-07-25T05:14:09.010000"],["2024-07-25T05:14:10.010000"],["2024-07-25T05:14:11.010000"],["2024-07-25T05:14:12.010000"],["2024-07-25T05:14:13.010000"],["2024-07-25T05:14:14.010000"],["2024-07-25T05:14:15.010000"],["2024-07-25T05:14:16.010000"],["2024-07-25T05:14:17.010000"],["2024-07-25T05:14:18.010000"],["2024-07-25T05:14:19.010000"],["2024-07-25T05:14:20.010000"],["2024-07-25T05:14:21.010000"],["2024-07-25T05:14:22.010000"],["2024-07-25T05:14:23.010000"],["2024-07-25T05:14:24.010000"],["2024-07-25T05:14:25.010000"],["2024-07-25T05:14:26.010000"],["2024-07-25T05:14:27.010000"],["2024-07-25T05:14:28.010000"],["2024-07-25T05:14:29.010000"],["2024-07-25T05:14:30.010000"],["2024-07-25T05:14:31.010000"],["2024-07-25T05:14:32.010000"],["2024-07-25T05:14:33.010000"],["2024-07-25T05:14:34.010000"],["2024-07-25T05:14:35.010000"],["2024-07-25T05:14:36.010000"],["2024-07-25T05:14:37.010000"],["2024-07-25T05:14:38.010000"],["2024-07-25T05:14:39.010000"],["2024-07-25T05:14:40.010000"],["2024-07-25T05:14:41.010000"],["2024-07-25T05:14:42.010000"],["2024-07-25T05:14:43.010000"],["2024-07-25T05:14:44.010000"],["2024-07-25T05:14:45.010000"],["2024-07-25T05:14:46.010000"],["2024-07-25T05:14:47.010000"],["2024-07-25T05:14:48.010000"],["2024-07-25T05:14:49.010000"],["2024-07-25T05:14:50.010000"],["2024-07-25T05:14:51.010000"],["2024-07-25T05:14:52.010000"],["2024-07-25T05:14:53.010000"],["2024-07-25T05:14:54.010000"],["2024-07-25T05:14:55.010000"],["2024-07-25T05:14:56.010000"],["2024-07-25T05:14:57.010000"],["2024-07-25T05:14:58.010000"],["2024-07-25T05:14:59.010000"],["2024-07-25T05:15:00.010000"],["2024-07-25T05:15:01.010000"],["2024-07-25T05:15:02.010000"],["2024-07-25T05:15:03.010000"],["2024-07-25T05:15:04.010000"],["2024-07-25T05:15:05.010000"],["2024-07-25T05:15:06.010000"],["2024-07-25T05:15:07.010000"],["2024-07-25T05:15:08.010000"],["2024-07-25T05:15:09.010000"],["2024-07-25T05:15:10.010000"],["2024-07-25T05:15:11.010000"],["2024-07-25T05:15:12.010000"],["2024-07-25T05:15:13.010000"],["2024-07-25T05:15:14.010000"],["2024-07-25T05:15:15.010000"],["2024-07-25T05:15:16.010000"],["2024-07-25T05:15:17.010000"],["2024-07-25T05:15:18.010000"],["2024-07-25T05:15:19.010000"],["2024-07-25T05:15:20.010000"],["2024-07-25T05:15:21.010000"],["2024-07-25T05:15:22.010000"],["2024-07-25T05:15:23.010000"],["2024-07-25T05:15:24.010000"],["2024-07-25T05:15:25.010000"],["2024-07-25T05:15:26.010000"],["2024-07-25T05:15:27.010000"],["2024-07-25T05:15:28.010000"],["2024-07-25T05:15:29.010000"],["2024-07-25T05:15:30.010000"],["2024-07-25T05:15:31.010000"],["2024-07-25T05:15:32.010000"],["2024-07-25T05:15:33.010000"],["2024-07-25T05:15:34.010000"],["2024-07-25T05:15:35.010000"],["2024-07-25T05:15:36.010000"],["2024-07-25T05:15:37.010000"],["2024-07-25T05:15:38.010000"],["2024-07-25T05:15:39.010000"],["2024-07-25T05:15:40.010000"],["2024-07-25T05:15:41.010000"],["2024-07-25T05:15:42.010000"],["2024-07-25T05:15:43.010000"],["2024-07-25T05:15:44.010000"],["2024-07-25T05:15:45.010000"],["2024-07-25T05:15:46.010000"],["2024-07-25T05:15:47.010000"],["2024-07-25T05:15:48.010000"],["2024-07-25T05:15:49.010000"],["2024-07-25T05:15:50.010000"],["2024-07-25T05:15:51.010000"],["2024-07-25T05:15:52.010000"],["2024-07-25T05:15:53.010000"],["2024-07-25T05:15:54.010000"],["2024-07-25T05:15:55.010000"],["2024-07-25T05:15:56.010000"],["2024-07-25T05:15:57.010000"],["2024-07-25T05:15:58.010000"],["2024-07-25T05:15:59.010000"],["2024-07-25T05:16:00.010000"],["2024-07-25T05:16:01.010000"],["2024-07-25T05:16:02.010000"],["2024-07-25T05:16:03.010000"],["2024-07-25T05:16:04.010000"],["2024-07-25T05:16:05.010000"],["2024-07-25T05:16:06.010000"],["2024-07-25T05:16:07.010000"],["2024-07-25T05:16:08.010000"],["2024-07-25T05:16:09.010000"],["2024-07-25T05:16:10.010000"],["2024-07-25T05:16:11.010000"],["2024-07-25T05:16:12.010000"],["2024-07-25T05:16:13.010000"],["2024-07-25T05:16:14.010000"],["2024-07-25T05:16:15.010000"],["2024-07-25T05:16:16.010000"],["2024-07-25T05:16:17.010000"],["2024-07-25T05:16:18.010000"],["2024-07-25T05:16:19.010000"],["2024-07-25T05:16:20.010000"],["2024-07-25T05:16:21.010000"],["2024-07-25T05:16:22.010000"],["2024-07-25T05:16:23.010000"],["2024-07-25T05:16:24.010000"],["2024-07-25T05:16:25.010000"],["2024-07-25T05:16:26.010000"],["2024-07-25T05:16:27.010000"],["2024-07-25T05:16:28.010000"],["2024-07-25T05:16:29.010000"],["2024-07-25T05:16:30.010000"],["2024-07-25T05:16:31.010000"],["2024-07-25T05:16:32.010000"],["2024-07-25T05:16:33.010000"],["2024-07-25T05:16:34.010000"],["2024-07-25T05:16:35.010000"],["2024-07-25T05:16:36.010000"],["2024-07-25T05:16:37.010000"],["2024-07-25T05:16:38.010000"],["2024-07-25T05:16:39.010000"],["2024-07-25T05:16:40.010000"],["2024-07-25T05:16:41.010000"],["2024-07-25T05:16:42.010000"],["2024-07-25T05:16:43.010000"],["2024-07-25T05:16:44.010000"],["2024-07-25T05:16:45.010000"],["2024-07-25T05:16:46.010000"],["2024-07-25T05:16:47.010000"],["2024-07-25T05:16:48.010000"],["2024-07-25T05:16:49.010000"],["2024-07-25T05:16:50.010000"],["2024-07-25T05:16:51.010000"],["2024-07-25T05:16:52.010000"],["2024-07-25T05:16:53.010000"],["2024-07-25T05:16:54.010000"],["2024-07-25T05:16:55.010000"],["2024-07-25T05:16:56.010000"],["2024-07-25T05:16:57.010000"],["2024-07-25T05:16:58.010000"],["2024-07-25T05:16:59.010000"],["2024-07-25T05:17:00.010000"],["2024-07-25T05:17:01.010000"],["2024-07-25T05:17:02.010000"],["2024-07-25T05:17:03.010000"],["2024-07-25T05:17:04.010000"],["2024-07-25T05:17:05.010000"],["2024-07-25T05:17:06.010000"],["2024-07-25T05:17:07.010000"],["2024-07-25T05:17:08.010000"],["2024-07-25T05:17:09.010000"],["2024-07-25T05:17:10.010000"],["2024-07-25T05:17:11.010000"],["2024-07-25T05:17:12.010000"],["2024-07-25T05:17:13.010000"],["2024-07-25T05:17:14.010000"],["2024-07-25T05:17:15.010000"],["2024-07-25T05:17:16.010000"],["2024-07-25T05:17:17.010000"],["2024-07-25T05:17:18.010000"],["2024-07-25T05:17:19.010000"],["2024-07-25T05:17:20.010000"],["2024-07-25T05:17:21.010000"],["2024-07-25T05:17:22.010000"],["2024-07-25T05:17:23.010000"],["2024-07-25T05:17:24.010000"],["2024-07-25T05:17:25.010000"],["2024-07-25T05:17:26.010000"],["2024-07-25T05:17:27.010000"],["2024-07-25T05:17:28.010000"],["2024-07-25T05:17:29.010000"],["2024-07-25T05:17:30.010000"],["2024-07-25T05:17:31.010000"],["2024-07-25T05:17:32.010000"],["2024-07-25T05:17:33.010000"],["2024-07-25T05:17:34.010000"],["2024-07-25T05:17:35.010000"],["2024-07-25T05:17:36.010000"],["2024-07-25T05:17:37.010000"],["2024-07-25T05:17:38.010000"],["2024-07-25T05:17:39.010000"],["2024-07-25T05:17:40.010000"],["2024-07-25T05:17:41.010000"],["2024-07-25T05:17:42.010000"],["2024-07-25T05:17:43.010000"],["2024-07-25T05:17:44.010000"],["2024-07-25T05:17:45.010000"],["2024-07-25T05:17:46.010000"],["2024-07-25T05:17:47.010000"],["2024-07-25T05:17:48.010000"],["2024-07-25T05:17:49.010000"],["2024-07-25T05:17:50.010000"],["2024-07-25T05:17:51.010000"],["2024-07-25T05:17:52.010000"],["2024-07-25T05:17:53.010000"],["2024-07-25T05:17:54.010000"],["2024-07-25T05:17:55.010000"],["2024-07-25T05:17:56.010000"],["2024-07-25T05:17:57.010000"],["2024-07-25T05:17:58.010000"],["2024-07-25T05:17:59.010000"],["2024-07-25T05:18:00.010000"],["2024-07-25T05:18:01.010000"],["2024-07-25T05:18:02.010000"],["2024-07-25T05:18:03.010000"],["2024-07-25T05:18:04.010000"],["2024-07-25T05:18:05.010000"],["2024-07-25T05:18:06.010000"],["2024-07-25T05:18:07.010000"],["2024-07-25T05:18:08.010000"],["2024-07-25T05:18:09.010000"],["2024-07-25T05:18:10.010000"],["2024-07-25T05:18:11.010000"],["2024-07-25T05:18:12.010000"],["2024-07-25T05:18:13.010000"],["2024-07-25T05:18:14.010000"],["2024-07-25T05:18:15.010000"],["2024-07-25T05:18:16.010000"],["2024-07-25T05:18:17.010000"],["2024-07-25T05:18:18.010000"],["2024-07-25T05:18:19.010000"],["2024-07-25T05:18:20.010000"],["2024-07-25T05:18:21.010000"],["2024-07-25T05:18:22.010000"],["2024-07-25T05:18:23.010000"],["2024-07-25T05:18:24.010000"],["2024-07-25T05:18:25.010000"],["2024-07-25T05:18:26.010000"],["2024-07-25T05:18:27.010000"],["2024-07-25T05:18:28.010000"],["2024-07-25T05:18:29.010000"],["2024-07-25T05:18:30.010000"],["2024-07-25T05:18:31.010000"],["2024-07-25T05:18:32.010000"],["2024-07-25T05:18:33.010000"],["2024-07-25T05:18:34.010000"],["2024-07-25T05:18:35.010000"],["2024-07-25T05:18:36.010000"],["2024-07-25T05:18:37.010000"],["2024-07-25T05:18:38.010000"],["2024-07-25T05:18:39.010000"],["2024-07-25T05:18:40.010000"],["2024-07-25T05:18:41.010000"],["2024-07-25T05:18:42.010000"],["2024-07-25T05:18:43.010000"],["2024-07-25T05:18:44.010000"],["2024-07-25T05:18:45.010000"],["2024-07-25T05:18:46.010000"],["2024-07-25T05:18:47.010000"],["2024-07-25T05:18:48.010000"],["2024-07-25T05:18:49.010000"],["2024-07-25T05:18:50.010000"],["2024-07-25T05:18:51.010000"],["2024-07-25T05:18:52.010000"],["2024-07-25T05:18:53.010000"],["2024-07-25T05:18:54.010000"],["2024-07-25T05:18:55.010000"],["2024-07-25T05:18:56.010000"],["2024-07-25T05:18:57.010000"],["2024-07-25T05:18:58.010000"],["2024-07-25T05:18:59.010000"],["2024-07-25T05:19:00.010000"],["2024-07-25T05:19:01.010000"],["2024-07-25T05:19:02.010000"],["2024-07-25T05:19:03.010000"],["2024-07-25T05:19:04.010000"],["2024-07-25T05:19:05.010000"],["2024-07-25T05:19:06.010000"],["2024-07-25T05:19:07.010000"],["2024-07-25T05:19:08.010000"],["2024-07-25T05:19:09.010000"],["2024-07-25T05:19:10.010000"],["2024-07-25T05:19:11.010000"],["2024-07-25T05:19:12.010000"],["2024-07-25T05:19:13.010000"],["2024-07-25T05:19:14.010000"],["2024-07-25T05:19:15.010000"],["2024-07-25T05:19:16.010000"],["2024-07-25T05:19:17.010000"],["2024-07-25T05:19:18.010000"],["2024-07-25T05:19:19.010000"],["2024-07-25T05:19:20.010000"],["2024-07-25T05:19:21.010000"],["2024-07-25T05:19:22.010000"],["2024-07-25T05:19:23.010000"],["2024-07-25T05:19:24.010000"],["2024-07-25T05:19:25.010000"],["2024-07-25T05:19:26.010000"],["2024-07-25T05:19:27.010000"],["2024-07-25T05:19:28.010000"],["2024-07-25T05:19:29.010000"],["2024-07-25T05:19:30.010000"],["2024-07-25T05:19:31.010000"],["2024-07-25T05:19:32.010000"],["2024-07-25T05:19:33.010000"],["2024-07-25T05:19:34.010000"],["2024-07-25T05:19:35.010000"],["2024-07-25T05:19:36.010000"],["2024-07-25T05:19:37.010000"],["2024-07-25T05:19:38.010000"],["2024-07-25T05:19:39.010000"],["2024-07-25T05:19:40.010000"],["2024-07-25T05:19:41.010000"],["2024-07-25T05:19:42.010000"],["2024-07-25T05:19:43.010000"],["2024-07-25T05:19:44.010000"],["2024-07-25T05:19:45.010000"],["2024-07-25T05:19:46.010000"],["2024-07-25T05:19:47.010000"],["2024-07-25T05:19:48.010000"],["2024-07-25T05:19:49.010000"],["2024-07-25T05:19:50.010000"],["2024-07-25T05:19:51.010000"],["2024-07-25T05:19:52.010000"],["2024-07-25T05:19:53.010000"],["2024-07-25T05:19:54.010000"],["2024-07-25T05:19:55.010000"],["2024-07-25T05:19:56.010000"],["2024-07-25T05:19:57.010000"],["2024-07-25T05:19:58.010000"],["2024-07-25T05:19:59.010000"],["2024-07-25T05:20:00.010000"],["2024-07-25T05:20:01.010000"],["2024-07-25T05:20:02.010000"],["2024-07-25T05:20:03.010000"],["2024-07-25T05:20:04.010000"],["2024-07-25T05:20:05.010000"],["2024-07-25T05:20:06.010000"],["2024-07-25T05:20:07.010000"],["2024-07-25T05:20:08.010000"],["2024-07-25T05:20:09.010000"],["2024-07-25T05:20:10.010000"],["2024-07-25T05:20:11.010000"],["2024-07-25T05:20:12.010000"],["2024-07-25T05:20:13.010000"],["2024-07-25T05:20:14.010000"],["2024-07-25T05:20:15.010000"],["2024-07-25T05:20:16.010000"],["2024-07-25T05:20:17.010000"],["2024-07-25T05:20:18.010000"],["2024-07-25T05:20:19.010000"],["2024-07-25T05:20:20.010000"],["2024-07-25T05:20:21.010000"],["2024-07-25T05:20:22.010000"],["2024-07-25T05:20:23.010000"],["2024-07-25T05:20:24.010000"],["2024-07-25T05:20:25.010000"],["2024-07-25T05:20:26.010000"],["2024-07-25T05:20:27.010000"],["2024-07-25T05:20:28.010000"],["2024-07-25T05:20:29.010000"],["2024-07-25T05:20:30.010000"],["2024-07-25T05:20:31.010000"],["2024-07-25T05:20:32.010000"],["2024-07-25T05:20:33.010000"],["2024-07-25T05:20:34.010000"],["2024-07-25T05:20:35.010000"],["2024-07-25T05:20:36.010000"],["2024-07-25T05:20:37.010000"],["2024-07-25T05:20:38.010000"],["2024-07-25T05:20:39.010000"],["2024-07-25T05:20:40.010000"],["2024-07-25T05:20:41.010000"],["2024-07-25T05:20:42.010000"],["2024-07-25T05:20:43.010000"],["2024-07-25T05:20:44.010000"],["2024-07-25T05:20:45.010000"],["2024-07-25T05:20:46.010000"],["2024-07-25T05:20:47.010000"],["2024-07-25T05:20:48.010000"],["2024-07-25T05:20:49.010000"],["2024-07-25T05:20:50.010000"],["2024-07-25T05:20:51.010000"],["2024-07-25T05:20:52.010000"],["2024-07-25T05:20:53.010000"],["2024-07-25T05:20:54.010000"],["2024-07-25T05:20:55.010000"],["2024-07-25T05:20:56.010000"],["2024-07-25T05:20:57.010000"],["2024-07-25T05:20:58.010000"],["2024-07-25T05:20:59.010000"],["2024-07-25T05:21:00.010000"],["2024-07-25T05:21:01.010000"],["2024-07-25T05:21:02.010000"],["2024-07-25T05:21:03.010000"],["2024-07-25T05:21:04.010000"],["2024-07-25T05:21:05.010000"],["2024-07-25T05:21:06.010000"],["2024-07-25T05:21:07.010000"],["2024-07-25T05:21:08.010000"],["2024-07-25T05:21:09.010000"],["2024-07-25T05:21:10.010000"],["2024-07-25T05:21:11.010000"],["2024-07-25T05:21:12.010000"],["2024-07-25T05:21:13.010000"],["2024-07-25T05:21:14.010000"],["2024-07-25T05:21:15.010000"],["2024-07-25T05:21:16.010000"],["2024-07-25T05:21:17.010000"],["2024-07-25T05:21:18.010000"],["2024-07-25T05:21:19.010000"],["2024-07-25T05:21:20.010000"],["2024-07-25T05:21:21.010000"],["2024-07-25T05:21:22.010000"],["2024-07-25T05:21:23.010000"],["2024-07-25T05:21:24.010000"],["2024-07-25T05:21:25.010000"],["2024-07-25T05:21:26.010000"],["2024-07-25T05:21:27.010000"],["2024-07-25T05:21:28.010000"],["2024-07-25T05:21:29.010000"],["2024-07-25T05:21:30.010000"],["2024-07-25T05:21:31.010000"],["2024-07-25T05:21:32.010000"],["2024-07-25T05:21:33.010000"],["2024-07-25T05:21:34.010000"],["2024-07-25T05:21:35.010000"],["2024-07-25T05:21:36.010000"],["2024-07-25T05:21:37.010000"],["2024-07-25T05:21:38.010000"],["2024-07-25T05:21:39.010000"],["2024-07-25T05:21:40.010000"],["2024-07-25T05:21:41.010000"],["2024-07-25T05:21:42.010000"],["2024-07-25T05:21:43.010000"],["2024-07-25T05:21:44.010000"],["2024-07-25T05:21:45.010000"],["2024-07-25T05:21:46.010000"],["2024-07-25T05:21:47.010000"],["2024-07-25T05:21:48.010000"],["2024-07-25T05:21:49.010000"],["2024-07-25T05:21:50.010000"],["2024-07-25T05:21:51.010000"],["2024-07-25T05:21:52.010000"],["2024-07-25T05:21:53.010000"],["2024-07-25T05:21:54.010000"],["2024-07-25T05:21:55.010000"],["2024-07-25T05:21:56.010000"],["2024-07-25T05:21:57.010000"],["2024-07-25T05:21:58.010000"],["2024-07-25T05:21:59.010000"],["2024-07-25T05:22:00.010000"],["2024-07-25T05:22:01.010000"],["2024-07-25T05:22:02.010000"],["2024-07-25T05:22:03.010000"],["2024-07-25T05:22:04.010000"],["2024-07-25T05:22:05.010000"],["2024-07-25T05:22:06.010000"],["2024-07-25T05:22:07.010000"],["2024-07-25T05:22:08.010000"],["2024-07-25T05:22:09.010000"],["2024-07-25T05:22:10.010000"],["2024-07-25T05:22:11.010000"],["2024-07-25T05:22:12.010000"],["2024-07-25T05:22:13.010000"],["2024-07-25T05:22:14.010000"],["2024-07-25T05:22:15.010000"],["2024-07-25T05:22:16.010000"],["2024-07-25T05:22:17.010000"],["2024-07-25T05:22:18.010000"],["2024-07-25T05:22:19.010000"],["2024-07-25T05:22:20.010000"],["2024-07-25T05:22:21.010000"],["2024-07-25T05:22:22.010000"],["2024-07-25T05:22:23.010000"],["2024-07-25T05:22:24.010000"],["2024-07-25T05:22:25.010000"],["2024-07-25T05:22:26.010000"],["2024-07-25T05:22:27.010000"],["2024-07-25T05:22:28.010000"],["2024-07-25T05:22:29.010000"],["2024-07-25T05:22:30.010000"],["2024-07-25T05:22:31.010000"],["2024-07-25T05:22:32.010000"],["2024-07-25T05:22:33.010000"],["2024-07-25T05:22:34.010000"],["2024-07-25T05:22:35.010000"],["2024-07-25T05:22:36.010000"],["2024-07-25T05:22:37.010000"],["2024-07-25T05:22:38.010000"],["2024-07-25T05:22:39.010000"],["2024-07-25T05:22:40.010000"],["2024-07-25T05:22:41.010000"],["2024-07-25T05:22:42.010000"],["2024-07-25T05:22:43.010000"],["2024-07-25T05:22:44.010000"],["2024-07-25T05:22:45.010000"],["2024-07-25T05:22:46.010000"],["2024-07-25T05:22:47.010000"],["2024-07-25T05:22:48.010000"],["2024-07-25T05:22:49.010000"],["2024-07-25T05:22:50.010000"],["2024-07-25T05:22:51.010000"],["2024-07-25T05:22:52.010000"],["2024-07-25T05:22:53.010000"],["2024-07-25T05:22:54.010000"],["2024-07-25T05:22:55.010000"],["2024-07-25T05:22:56.010000"],["2024-07-25T05:22:57.010000"],["2024-07-25T05:22:58.010000"],["2024-07-25T05:22:59.010000"],["2024-07-25T05:23:00.010000"],["2024-07-25T05:23:01.010000"],["2024-07-25T05:23:02.010000"],["2024-07-25T05:23:03.010000"],["2024-07-25T05:23:04.010000"],["2024-07-25T05:23:05.010000"],["2024-07-25T05:23:06.010000"],["2024-07-25T05:23:07.010000"],["2024-07-25T05:23:08.010000"],["2024-07-25T05:23:09.010000"],["2024-07-25T05:23:10.010000"],["2024-07-25T05:23:11.010000"],["2024-07-25T05:23:12.010000"],["2024-07-25T05:23:13.010000"],["2024-07-25T05:23:14.010000"],["2024-07-25T05:23:15.010000"],["2024-07-25T05:23:16.010000"],["2024-07-25T05:23:17.010000"],["2024-07-25T05:23:18.010000"],["2024-07-25T05:23:19.010000"],["2024-07-25T05:23:20.010000"],["2024-07-25T05:23:21.010000"],["2024-07-25T05:23:22.010000"],["2024-07-25T05:23:23.010000"],["2024-07-25T05:23:24.010000"],["2024-07-25T05:23:25.010000"],["2024-07-25T05:23:26.010000"],["2024-07-25T05:23:27.010000"],["2024-07-25T05:23:28.010000"],["2024-07-25T05:23:29.010000"],["2024-07-25T05:23:30.010000"],["2024-07-25T05:23:31.010000"],["2024-07-25T05:23:32.010000"],["2024-07-25T05:23:33.010000"],["2024-07-25T05:23:34.010000"],["2024-07-25T05:23:35.010000"],["2024-07-25T05:23:36.010000"],["2024-07-25T05:23:37.010000"],["2024-07-25T05:23:38.010000"],["2024-07-25T05:23:39.010000"],["2024-07-25T05:23:40.010000"],["2024-07-25T05:23:41.010000"],["2024-07-25T05:23:42.010000"],["2024-07-25T05:23:43.010000"],["2024-07-25T05:23:44.010000"],["2024-07-25T05:23:45.010000"],["2024-07-25T05:23:46.010000"],["2024-07-25T05:23:47.010000"],["2024-07-25T05:23:48.010000"],["2024-07-25T05:23:49.010000"],["2024-07-25T05:23:50.010000"],["2024-07-25T05:23:51.010000"],["2024-07-25T05:23:52.010000"],["2024-07-25T05:23:53.010000"],["2024-07-25T05:23:54.010000"],["2024-07-25T05:23:55.010000"],["2024-07-25T05:23:56.010000"],["2024-07-25T05:23:57.010000"],["2024-07-25T05:23:58.010000"],["2024-07-25T05:23:59.010000"],["2024-07-25T05:24:00.010000"],["2024-07-25T05:24:01.010000"],["2024-07-25T05:24:02.010000"],["2024-07-25T05:24:03.010000"],["2024-07-25T05:24:04.010000"],["2024-07-25T05:24:05.010000"],["2024-07-25T05:24:06.010000"],["2024-07-25T05:24:07.010000"],["2024-07-25T05:24:08.010000"],["2024-07-25T05:24:09.010000"],["2024-07-25T05:24:10.010000"],["2024-07-25T05:24:11.010000"],["2024-07-25T05:24:12.010000"],["2024-07-25T05:24:13.010000"],["2024-07-25T05:24:14.010000"],["2024-07-25T05:24:15.010000"],["2024-07-25T05:24:16.010000"],["2024-07-25T05:24:17.010000"],["2024-07-25T05:24:18.010000"],["2024-07-25T05:24:19.010000"],["2024-07-25T05:24:20.010000"],["2024-07-25T05:24:21.010000"],["2024-07-25T05:24:22.010000"],["2024-07-25T05:24:23.010000"],["2024-07-25T05:24:24.010000"],["2024-07-25T05:24:25.010000"],["2024-07-25T05:24:26.010000"],["2024-07-25T05:24:27.010000"],["2024-07-25T05:24:28.010000"],["2024-07-25T05:24:29.010000"],["2024-07-25T05:24:30.010000"],["2024-07-25T05:24:31.010000"],["2024-07-25T05:24:32.010000"],["2024-07-25T05:24:33.010000"],["2024-07-25T05:24:34.010000"],["2024-07-25T05:24:35.010000"],["2024-07-25T05:24:36.010000"],["2024-07-25T05:24:37.010000"],["2024-07-25T05:24:38.010000"],["2024-07-25T05:24:39.010000"],["2024-07-25T05:24:40.010000"],["2024-07-25T05:24:41.010000"],["2024-07-25T05:24:42.010000"],["2024-07-25T05:24:43.010000"],["2024-07-25T05:24:44.010000"],["2024-07-25T05:24:45.010000"],["2024-07-25T05:24:46.010000"],["2024-07-25T05:24:47.010000"],["2024-07-25T05:24:48.010000"],["2024-07-25T05:24:49.010000"],["2024-07-25T05:24:50.010000"],["2024-07-25T05:24:51.010000"],["2024-07-25T05:24:52.010000"],["2024-07-25T05:24:53.010000"],["2024-07-25T05:24:54.010000"],["2024-07-25T05:24:55.010000"],["2024-07-25T05:24:56.010000"],["2024-07-25T05:24:57.010000"],["2024-07-25T05:24:58.010000"],["2024-07-25T05:24:59.010000"],["2024-07-25T05:25:00.010000"],["2024-07-25T05:25:01.010000"],["2024-07-25T05:25:02.010000"],["2024-07-25T05:25:03.010000"],["2024-07-25T05:25:04.010000"],["2024-07-25T05:25:05.010000"],["2024-07-25T05:25:06.010000"],["2024-07-25T05:25:07.010000"],["2024-07-25T05:25:08.010000"],["2024-07-25T05:25:09.010000"],["2024-07-25T05:25:10.010000"],["2024-07-25T05:25:11.010000"],["2024-07-25T05:25:12.010000"],["2024-07-25T05:25:13.010000"],["2024-07-25T05:25:14.010000"],["2024-07-25T05:25:15.010000"],["2024-07-25T05:25:16.010000"],["2024-07-25T05:25:17.010000"],["2024-07-25T05:25:18.010000"],["2024-07-25T05:25:19.010000"],["2024-07-25T05:25:20.010000"],["2024-07-25T05:25:21.010000"],["2024-07-25T05:25:22.010000"],["2024-07-25T05:25:23.010000"],["2024-07-25T05:25:24.010000"],["2024-07-25T05:25:25.010000"],["2024-07-25T05:25:26.010000"],["2024-07-25T05:25:27.010000"],["2024-07-25T05:25:28.010000"],["2024-07-25T05:25:29.010000"],["2024-07-25T05:25:30.010000"],["2024-07-25T05:25:31.010000"],["2024-07-25T05:25:32.010000"],["2024-07-25T05:25:33.010000"],["2024-07-25T05:25:34.010000"],["2024-07-25T05:25:35.010000"],["2024-07-25T05:25:36.010000"],["2024-07-25T05:25:37.010000"],["2024-07-25T05:25:38.010000"],["2024-07-25T05:25:39.010000"],["2024-07-25T05:25:40.010000"],["2024-07-25T05:25:41.010000"],["2024-07-25T05:25:42.010000"],["2024-07-25T05:25:43.010000"],["2024-07-25T05:25:44.010000"],["2024-07-25T05:25:45.010000"],["2024-07-25T05:25:46.010000"],["2024-07-25T05:25:47.010000"],["2024-07-25T05:25:48.010000"],["2024-07-25T05:25:49.010000"],["2024-07-25T05:25:50.010000"],["2024-07-25T05:25:51.010000"],["2024-07-25T05:25:52.010000"],["2024-07-25T05:25:53.010000"],["2024-07-25T05:25:54.010000"],["2024-07-25T05:25:55.010000"],["2024-07-25T05:25:56.010000"],["2024-07-25T05:25:57.010000"],["2024-07-25T05:25:58.010000"],["2024-07-25T05:25:59.010000"],["2024-07-25T05:26:00.010000"],["2024-07-25T05:26:01.010000"],["2024-07-25T05:26:02.010000"],["2024-07-25T05:26:03.010000"],["2024-07-25T05:26:04.010000"],["2024-07-25T05:26:05.010000"],["2024-07-25T05:26:06.010000"],["2024-07-25T05:26:07.010000"],["2024-07-25T05:26:08.010000"],["2024-07-25T05:26:09.010000"],["2024-07-25T05:26:10.010000"],["2024-07-25T05:26:11.010000"],["2024-07-25T05:26:12.010000"],["2024-07-25T05:26:13.010000"],["2024-07-25T05:26:14.010000"],["2024-07-25T05:26:15.010000"],["2024-07-25T05:26:16.010000"],["2024-07-25T05:26:17.010000"],["2024-07-25T05:26:18.010000"],["2024-07-25T05:26:19.010000"],["2024-07-25T05:26:20.010000"],["2024-07-25T05:26:21.010000"],["2024-07-25T05:26:22.010000"],["2024-07-25T05:26:23.010000"],["2024-07-25T05:26:24.010000"],["2024-07-25T05:26:25.010000"],["2024-07-25T05:26:26.010000"],["2024-07-25T05:26:27.010000"],["2024-07-25T05:26:28.010000"],["2024-07-25T05:26:29.010000"],["2024-07-25T05:26:30.010000"],["2024-07-25T05:26:31.010000"],["2024-07-25T05:26:32.010000"],["2024-07-25T05:26:33.010000"],["2024-07-25T05:26:34.010000"],["2024-07-25T05:26:35.010000"],["2024-07-25T05:26:36.010000"],["2024-07-25T05:26:37.010000"],["2024-07-25T05:26:38.010000"],["2024-07-25T05:26:39.010000"],["2024-07-25T05:26:40.010000"],["2024-07-25T05:26:41.010000"],["2024-07-25T05:26:42.010000"],["2024-07-25T05:26:43.010000"],["2024-07-25T05:26:44.010000"],["2024-07-25T05:26:45.010000"],["2024-07-25T05:26:46.010000"],["2024-07-25T05:26:47.010000"],["2024-07-25T05:26:48.010000"],["2024-07-25T05:26:49.010000"],["2024-07-25T05:26:50.010000"],["2024-07-25T05:26:51.010000"],["2024-07-25T05:26:52.010000"],["2024-07-25T05:26:53.010000"],["2024-07-25T05:26:54.010000"],["2024-07-25T05:26:55.010000"],["2024-07-25T05:26:56.010000"],["2024-07-25T05:26:57.010000"],["2024-07-25T05:26:58.010000"],["2024-07-25T05:26:59.010000"],["2024-07-25T05:27:00.010000"],["2024-07-25T05:27:01.010000"],["2024-07-25T05:27:02.010000"],["2024-07-25T05:27:03.010000"],["2024-07-25T05:27:04.010000"],["2024-07-25T05:27:05.010000"],["2024-07-25T05:27:06.010000"],["2024-07-25T05:27:07.010000"],["2024-07-25T05:27:08.010000"],["2024-07-25T05:27:09.010000"],["2024-07-25T05:27:10.010000"],["2024-07-25T05:27:11.010000"],["2024-07-25T05:27:12.010000"],["2024-07-25T05:27:13.010000"],["2024-07-25T05:27:14.010000"],["2024-07-25T05:27:15.010000"],["2024-07-25T05:27:16.010000"],["2024-07-25T05:27:17.010000"],["2024-07-25T05:27:18.010000"],["2024-07-25T05:27:19.010000"],["2024-07-25T05:27:20.010000"],["2024-07-25T05:27:21.010000"],["2024-07-25T05:27:22.010000"],["2024-07-25T05:27:23.010000"],["2024-07-25T05:27:24.010000"],["2024-07-25T05:27:25.010000"],["2024-07-25T05:27:26.010000"],["2024-07-25T05:27:27.010000"],["2024-07-25T05:27:28.010000"],["2024-07-25T05:27:29.010000"],["2024-07-25T05:27:30.010000"],["2024-07-25T05:27:31.010000"],["2024-07-25T05:27:32.010000"],["2024-07-25T05:27:33.010000"],["2024-07-25T05:27:34.010000"],["2024-07-25T05:27:35.010000"],["2024-07-25T05:27:36.010000"],["2024-07-25T05:27:37.010000"],["2024-07-25T05:27:38.010000"],["2024-07-25T05:27:39.010000"],["2024-07-25T05:27:40.010000"],["2024-07-25T05:27:41.010000"],["2024-07-25T05:27:42.010000"],["2024-07-25T05:27:43.010000"],["2024-07-25T05:27:44.010000"],["2024-07-25T05:27:45.010000"],["2024-07-25T05:27:46.010000"],["2024-07-25T05:27:47.010000"],["2024-07-25T05:27:48.010000"],["2024-07-25T05:27:49.010000"],["2024-07-25T05:27:50.010000"],["2024-07-25T05:27:51.010000"],["2024-07-25T05:27:52.010000"],["2024-07-25T05:27:53.010000"],["2024-07-25T05:27:54.010000"],["2024-07-25T05:27:55.010000"],["2024-07-25T05:27:56.010000"],["2024-07-25T05:27:57.010000"],["2024-07-25T05:27:58.010000"],["2024-07-25T05:27:59.010000"],["2024-07-25T05:28:00.010000"],["2024-07-25T05:28:01.010000"],["2024-07-25T05:28:02.010000"],["2024-07-25T05:28:03.010000"],["2024-07-25T05:28:04.010000"],["2024-07-25T05:28:05.010000"],["2024-07-25T05:28:06.010000"],["2024-07-25T05:28:07.010000"],["2024-07-25T05:28:08.010000"],["2024-07-25T05:28:09.010000"],["2024-07-25T05:28:10.010000"],["2024-07-25T05:28:11.010000"],["2024-07-25T05:28:12.010000"],["2024-07-25T05:28:13.010000"],["2024-07-25T05:28:14.010000"],["2024-07-25T05:28:15.010000"],["2024-07-25T05:28:16.010000"],["2024-07-25T05:28:17.010000"],["2024-07-25T05:28:18.010000"],["2024-07-25T05:28:19.010000"],["2024-07-25T05:28:20.010000"],["2024-07-25T05:28:21.010000"],["2024-07-25T05:28:22.010000"],["2024-07-25T05:28:23.010000"],["2024-07-25T05:28:24.010000"],["2024-07-25T05:28:25.010000"],["2024-07-25T05:28:26.010000"],["2024-07-25T05:28:27.010000"],["2024-07-25T05:28:28.010000"],["2024-07-25T05:28:29.010000"],["2024-07-25T05:28:30.010000"],["2024-07-25T05:28:31.010000"],["2024-07-25T05:28:32.010000"],["2024-07-25T05:28:33.010000"],["2024-07-25T05:28:34.010000"],["2024-07-25T05:28:35.010000"],["2024-07-25T05:28:36.010000"],["2024-07-25T05:28:37.010000"],["2024-07-25T05:28:38.010000"],["2024-07-25T05:28:39.010000"],["2024-07-25T05:28:40.010000"],["2024-07-25T05:28:41.010000"],["2024-07-25T05:28:42.010000"],["2024-07-25T05:28:43.010000"],["2024-07-25T05:28:44.010000"],["2024-07-25T05:28:45.010000"],["2024-07-25T05:28:46.010000"],["2024-07-25T05:28:47.010000"],["2024-07-25T05:28:48.010000"],["2024-07-25T05:28:49.010000"],["2024-07-25T05:28:50.010000"],["2024-07-25T05:28:51.010000"],["2024-07-25T05:28:52.010000"],["2024-07-25T05:28:53.010000"],["2024-07-25T05:28:54.010000"],["2024-07-25T05:28:55.010000"],["2024-07-25T05:28:56.010000"],["2024-07-25T05:28:57.010000"],["2024-07-25T05:28:58.010000"],["2024-07-25T05:28:59.010000"],["2024-07-25T05:29:00.010000"],["2024-07-25T05:29:01.010000"],["2024-07-25T05:29:02.010000"],["2024-07-25T05:29:03.010000"],["2024-07-25T05:29:04.010000"],["2024-07-25T05:29:05.010000"],["2024-07-25T05:29:06.010000"],["2024-07-25T05:29:07.010000"],["2024-07-25T05:29:08.010000"],["2024-07-25T05:29:09.010000"],["2024-07-25T05:29:10.010000"],["2024-07-25T05:29:11.010000"],["2024-07-25T05:29:12.010000"],["2024-07-25T05:29:13.010000"],["2024-07-25T05:29:14.010000"],["2024-07-25T05:29:15.010000"],["2024-07-25T05:29:16.010000"],["2024-07-25T05:29:17.010000"],["2024-07-25T05:29:18.010000"],["2024-07-25T05:29:19.010000"],["2024-07-25T05:29:20.010000"],["2024-07-25T05:29:21.010000"],["2024-07-25T05:29:22.010000"],["2024-07-25T05:29:23.010000"],["2024-07-25T05:29:24.010000"],["2024-07-25T05:29:25.010000"],["2024-07-25T05:29:26.010000"],["2024-07-25T05:29:27.010000"],["2024-07-25T05:29:28.010000"],["2024-07-25T05:29:29.010000"],["2024-07-25T05:29:30.010000"],["2024-07-25T05:29:31.010000"],["2024-07-25T05:29:32.010000"],["2024-07-25T05:29:33.010000"],["2024-07-25T05:29:34.010000"],["2024-07-25T05:29:35.010000"],["2024-07-25T05:29:36.010000"],["2024-07-25T05:29:37.010000"],["2024-07-25T05:29:38.010000"],["2024-07-25T05:29:39.010000"],["2024-07-25T05:29:40.010000"],["2024-07-25T05:29:41.010000"],["2024-07-25T05:29:42.010000"],["2024-07-25T05:29:43.010000"],["2024-07-25T05:29:44.010000"],["2024-07-25T05:29:45.010000"],["2024-07-25T05:29:46.010000"],["2024-07-25T05:29:47.010000"],["2024-07-25T05:29:48.010000"],["2024-07-25T05:29:49.010000"],["2024-07-25T05:29:50.010000"],["2024-07-25T05:29:51.010000"],["2024-07-25T05:29:52.010000"],["2024-07-25T05:29:53.010000"],["2024-07-25T05:29:54.010000"],["2024-07-25T05:29:55.010000"],["2024-07-25T05:29:56.010000"],["2024-07-25T05:29:57.010000"],["2024-07-25T05:29:58.010000"],["2024-07-25T05:29:59.010000"],["2024-07-25T05:30:00.010000"],["2024-07-25T05:30:01.010000"],["2024-07-25T05:30:02.010000"],["2024-07-25T05:30:03.010000"],["2024-07-25T05:30:04.010000"],["2024-07-25T05:30:05.010000"],["2024-07-25T05:30:06.010000"],["2024-07-25T05:30:07.010000"],["2024-07-25T05:30:08.010000"],["2024-07-25T05:30:09.010000"],["2024-07-25T05:30:10.010000"],["2024-07-25T05:30:11.010000"],["2024-07-25T05:30:12.010000"],["2024-07-25T05:30:13.010000"],["2024-07-25T05:30:14.010000"],["2024-07-25T05:30:15.010000"],["2024-07-25T05:30:16.010000"],["2024-07-25T05:30:17.010000"],["2024-07-25T05:30:18.010000"],["2024-07-25T05:30:19.010000"],["2024-07-25T05:30:20.010000"],["2024-07-25T05:30:21.010000"],["2024-07-25T05:30:22.010000"],["2024-07-25T05:30:23.010000"],["2024-07-25T05:30:24.010000"],["2024-07-25T05:30:25.010000"],["2024-07-25T05:30:26.010000"],["2024-07-25T05:30:27.010000"],["2024-07-25T05:30:28.010000"],["2024-07-25T05:30:29.010000"],["2024-07-25T05:30:30.010000"],["2024-07-25T05:30:31.010000"],["2024-07-25T05:30:32.010000"],["2024-07-25T05:30:33.010000"],["2024-07-25T05:30:34.010000"],["2024-07-25T05:30:35.010000"],["2024-07-25T05:30:36.010000"],["2024-07-25T05:30:37.010000"],["2024-07-25T05:30:38.010000"],["2024-07-25T05:30:39.010000"],["2024-07-25T05:30:40.010000"],["2024-07-25T05:30:41.010000"],["2024-07-25T05:30:42.010000"],["2024-07-25T05:30:43.010000"],["2024-07-25T05:30:44.010000"],["2024-07-25T05:30:45.010000"],["2024-07-25T05:30:46.010000"],["2024-07-25T05:30:47.010000"],["2024-07-25T05:30:48.010000"],["2024-07-25T05:30:49.010000"],["2024-07-25T05:30:50.010000"],["2024-07-25T05:30:51.010000"],["2024-07-25T05:30:52.010000"],["2024-07-25T05:30:53.010000"],["2024-07-25T05:30:54.010000"],["2024-07-25T05:30:55.010000"],["2024-07-25T05:30:56.010000"],["2024-07-25T05:30:57.010000"],["2024-07-25T05:30:58.010000"],["2024-07-25T05:30:59.010000"],["2024-07-25T05:31:00.010000"],["2024-07-25T05:31:01.010000"],["2024-07-25T05:31:02.010000"],["2024-07-25T05:31:03.010000"],["2024-07-25T05:31:04.010000"],["2024-07-25T05:31:05.010000"],["2024-07-25T05:31:06.010000"],["2024-07-25T05:31:07.010000"],["2024-07-25T05:31:08.010000"],["2024-07-25T05:31:09.010000"],["2024-07-25T05:31:10.010000"],["2024-07-25T05:31:11.010000"],["2024-07-25T05:31:12.010000"],["2024-07-25T05:31:13.010000"],["2024-07-25T05:31:14.010000"],["2024-07-25T05:31:15.010000"],["2024-07-25T05:31:16.010000"],["2024-07-25T05:31:17.010000"],["2024-07-25T05:31:18.010000"],["2024-07-25T05:31:19.010000"],["2024-07-25T05:31:20.010000"],["2024-07-25T05:31:21.010000"],["2024-07-25T05:31:22.010000"],["2024-07-25T05:31:23.010000"],["2024-07-25T05:31:24.010000"],["2024-07-25T05:31:25.010000"],["2024-07-25T05:31:26.010000"],["2024-07-25T05:31:27.010000"],["2024-07-25T05:31:28.010000"],["2024-07-25T05:31:29.010000"],["2024-07-25T05:31:30.010000"],["2024-07-25T05:31:31.010000"],["2024-07-25T05:31:32.010000"],["2024-07-25T05:31:33.010000"],["2024-07-25T05:31:34.010000"],["2024-07-25T05:31:35.010000"],["2024-07-25T05:31:36.010000"],["2024-07-25T05:31:37.010000"],["2024-07-25T05:31:38.010000"],["2024-07-25T05:31:39.010000"],["2024-07-25T05:31:40.010000"],["2024-07-25T05:31:41.010000"],["2024-07-25T05:31:42.010000"],["2024-07-25T05:31:43.010000"],["2024-07-25T05:31:44.010000"],["2024-07-25T05:31:45.010000"],["2024-07-25T05:31:46.010000"],["2024-07-25T05:31:47.010000"],["2024-07-25T05:31:48.010000"],["2024-07-25T05:31:49.010000"],["2024-07-25T05:31:50.010000"],["2024-07-25T05:31:51.010000"],["2024-07-25T05:31:52.010000"],["2024-07-25T05:31:53.010000"],["2024-07-25T05:31:54.010000"],["2024-07-25T05:31:55.010000"],["2024-07-25T05:31:56.010000"],["2024-07-25T05:31:57.010000"],["2024-07-25T05:31:58.010000"],["2024-07-25T05:31:59.010000"],["2024-07-25T05:32:00.010000"],["2024-07-25T05:32:01.010000"],["2024-07-25T05:32:02.010000"],["2024-07-25T05:32:03.010000"],["2024-07-25T05:32:04.010000"],["2024-07-25T05:32:05.010000"],["2024-07-25T05:32:06.010000"],["2024-07-25T05:32:07.010000"],["2024-07-25T05:32:08.010000"],["2024-07-25T05:32:09.010000"],["2024-07-25T05:32:10.010000"],["2024-07-25T05:32:11.010000"],["2024-07-25T05:32:12.010000"],["2024-07-25T05:32:13.010000"],["2024-07-25T05:32:14.010000"],["2024-07-25T05:32:15.010000"],["2024-07-25T05:32:16.010000"],["2024-07-25T05:32:17.010000"],["2024-07-25T05:32:18.010000"],["2024-07-25T05:32:19.010000"],["2024-07-25T05:32:20.010000"],["2024-07-25T05:32:21.010000"],["2024-07-25T05:32:22.010000"],["2024-07-25T05:32:23.010000"],["2024-07-25T05:32:24.010000"],["2024-07-25T05:32:25.010000"],["2024-07-25T05:32:26.010000"],["2024-07-25T05:32:27.010000"],["2024-07-25T05:32:28.010000"],["2024-07-25T05:32:29.010000"],["2024-07-25T05:32:30.010000"],["2024-07-25T05:32:31.010000"],["2024-07-25T05:32:32.010000"],["2024-07-25T05:32:33.010000"],["2024-07-25T05:32:34.010000"],["2024-07-25T05:32:35.010000"],["2024-07-25T05:32:36.010000"],["2024-07-25T05:32:37.010000"],["2024-07-25T05:32:38.010000"],["2024-07-25T05:32:39.010000"],["2024-07-25T05:32:40.010000"],["2024-07-25T05:32:41.010000"],["2024-07-25T05:32:42.010000"],["2024-07-25T05:32:43.010000"],["2024-07-25T05:32:44.010000"],["2024-07-25T05:32:45.010000"],["2024-07-25T05:32:46.010000"],["2024-07-25T05:32:47.010000"],["2024-07-25T05:32:48.010000"],["2024-07-25T05:32:49.010000"],["2024-07-25T05:32:50.010000"],["2024-07-25T05:32:51.010000"],["2024-07-25T05:32:52.010000"],["2024-07-25T05:32:53.010000"],["2024-07-25T05:32:54.010000"],["2024-07-25T05:32:55.010000"],["2024-07-25T05:32:56.010000"],["2024-07-25T05:32:57.010000"],["2024-07-25T05:32:58.010000"],["2024-07-25T05:32:59.010000"],["2024-07-25T05:33:00.010000"],["2024-07-25T05:33:01.010000"],["2024-07-25T05:33:02.010000"],["2024-07-25T05:33:03.010000"],["2024-07-25T05:33:04.010000"],["2024-07-25T05:33:05.010000"],["2024-07-25T05:33:06.010000"],["2024-07-25T05:33:07.010000"],["2024-07-25T05:33:08.010000"],["2024-07-25T05:33:09.010000"],["2024-07-25T05:33:10.010000"],["2024-07-25T05:33:11.010000"],["2024-07-25T05:33:12.010000"],["2024-07-25T05:33:13.010000"],["2024-07-25T05:33:14.010000"],["2024-07-25T05:33:15.010000"],["2024-07-25T05:33:16.010000"],["2024-07-25T05:33:17.010000"],["2024-07-25T05:33:18.010000"],["2024-07-25T05:33:19.010000"],["2024-07-25T05:33:20.010000"],["2024-07-25T05:33:21.010000"],["2024-07-25T05:33:22.010000"],["2024-07-25T05:33:23.010000"],["2024-07-25T05:33:24.010000"],["2024-07-25T05:33:25.010000"],["2024-07-25T05:33:26.010000"],["2024-07-25T05:33:27.010000"],["2024-07-25T05:33:28.010000"],["2024-07-25T05:33:29.010000"],["2024-07-25T05:33:30.010000"],["2024-07-25T05:33:31.010000"],["2024-07-25T05:33:32.010000"],["2024-07-25T05:33:33.010000"],["2024-07-25T05:33:34.010000"],["2024-07-25T05:33:35.010000"],["2024-07-25T05:33:36.010000"],["2024-07-25T05:33:37.010000"],["2024-07-25T05:33:38.010000"],["2024-07-25T05:33:39.010000"],["2024-07-25T05:33:40.010000"],["2024-07-25T05:33:41.010000"],["2024-07-25T05:33:42.010000"],["2024-07-25T05:33:43.010000"],["2024-07-25T05:33:44.010000"],["2024-07-25T05:33:45.010000"],["2024-07-25T05:33:46.010000"],["2024-07-25T05:33:47.010000"],["2024-07-25T05:33:48.010000"],["2024-07-25T05:33:49.010000"],["2024-07-25T05:33:50.010000"],["2024-07-25T05:33:51.010000"],["2024-07-25T05:33:52.010000"],["2024-07-25T05:33:53.010000"],["2024-07-25T05:33:54.010000"],["2024-07-25T05:33:55.010000"],["2024-07-25T05:33:56.010000"],["2024-07-25T05:33:57.010000"],["2024-07-25T05:33:58.010000"],["2024-07-25T05:33:59.010000"],["2024-07-25T05:34:00.010000"],["2024-07-25T05:34:01.010000"],["2024-07-25T05:34:02.010000"],["2024-07-25T05:34:03.010000"],["2024-07-25T05:34:04.010000"],["2024-07-25T05:34:05.010000"],["2024-07-25T05:34:06.010000"],["2024-07-25T05:34:07.010000"],["2024-07-25T05:34:08.010000"],["2024-07-25T05:34:09.010000"],["2024-07-25T05:34:10.010000"],["2024-07-25T05:34:11.010000"],["2024-07-25T05:34:12.010000"],["2024-07-25T05:34:13.010000"],["2024-07-25T05:34:14.010000"],["2024-07-25T05:34:15.010000"],["2024-07-25T05:34:16.010000"],["2024-07-25T05:34:17.010000"],["2024-07-25T05:34:18.010000"],["2024-07-25T05:34:19.010000"],["2024-07-25T05:34:20.010000"],["2024-07-25T05:34:21.010000"],["2024-07-25T05:34:22.010000"],["2024-07-25T05:34:23.010000"],["2024-07-25T05:34:24.010000"],["2024-07-25T05:34:25.010000"],["2024-07-25T05:34:26.010000"],["2024-07-25T05:34:27.010000"],["2024-07-25T05:34:28.010000"],["2024-07-25T05:34:29.010000"],["2024-07-25T05:34:30.010000"],["2024-07-25T05:34:31.010000"],["2024-07-25T05:34:32.010000"],["2024-07-25T05:34:33.010000"],["2024-07-25T05:34:34.010000"],["2024-07-25T05:34:35.010000"],["2024-07-25T05:34:36.010000"],["2024-07-25T05:34:37.010000"],["2024-07-25T05:34:38.010000"],["2024-07-25T05:34:39.010000"],["2024-07-25T05:34:40.010000"],["2024-07-25T05:34:41.010000"],["2024-07-25T05:34:42.010000"],["2024-07-25T05:34:43.010000"],["2024-07-25T05:34:44.010000"],["2024-07-25T05:34:45.010000"],["2024-07-25T05:34:46.010000"],["2024-07-25T05:34:47.010000"],["2024-07-25T05:34:48.010000"],["2024-07-25T05:34:49.010000"],["2024-07-25T05:34:50.010000"],["2024-07-25T05:34:51.010000"],["2024-07-25T05:34:52.010000"],["2024-07-25T05:34:53.010000"],["2024-07-25T05:34:54.010000"],["2024-07-25T05:34:55.010000"],["2024-07-25T05:34:56.010000"],["2024-07-25T05:34:57.010000"],["2024-07-25T05:34:58.010000"],["2024-07-25T05:34:59.010000"],["2024-07-25T05:35:00.010000"],["2024-07-25T05:35:01.010000"],["2024-07-25T05:35:02.010000"],["2024-07-25T05:35:03.010000"],["2024-07-25T05:35:04.010000"],["2024-07-25T05:35:05.010000"]],"hovertemplate":"color=4\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"4","line":{"color":"#FFA15A","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"4","scene":"scene","showlegend":true,"x":[0.11248165555298328,0.28443848714232445,-0.008992168121039867,0.28714017011225224,-0.6084032994695008,-0.3454864053055644,0.9216365874744952,0.569794780574739,0.5726602291688323,0.7830365691334009,0.45245406264439225,0.5880536660552025,-0.9005393288098276,-0.31645596539601684,0.8972715022973716,0.2159893037751317,-0.19787750393152237,0.23542379448190331,0.9328761375509202,0.6871938914991915,-0.5650887377560139,-0.8810877981595695,-0.9666909221559763,-0.22346883453428745,0.24410949368029833,-0.10809455858543515,-0.6530042653903365,-0.5144816874526441,-0.948062548879534,-0.5754971499554813,0.5248862351290882,0.9736378877423704,-0.06482819421216846,0.5311341523192823,0.8462807051837444,-0.21527083590626717,-0.7737897452898324,-0.5540003357455134,-0.5794158051721752,0.28333563450723886,0.25062324246391654,0.6807426689192653,-0.20913839293643832,-0.39115647971630096,0.6688205539248884,-0.9473773185163736,0.5533295152708888,-0.1465027304366231,-0.6281144130043685,-0.9821444964036345,-0.9818402202799916,0.6112620607018471,-0.16024374729022384,0.559748659376055,0.8607558612711728,-0.389505653642118,0.6089606080204248,0.9161352338269353,-0.3112844666466117,-0.20249992841854692,0.7593962815590203,0.1526375962421298,0.025137548334896564,-0.4610887817107141,0.12126634921878576,-0.26701704459264874,0.14199340622872114,-0.4588023377582431,0.7159278728067875,0.9859240581281483,0.2794932350516319,0.10591962467879057,0.17524047382175922,0.8200053577311337,-0.42777754412963986,0.04930539429187775,0.47234763018786907,-0.6774447453208268,0.397708036005497,-0.9809510847553611,0.3005697294138372,-0.8351991036906838,-0.5919297649525106,-0.8910083612427115,-0.29579646280035377,0.6862515253014863,-0.9624511953443289,-0.0036426656879484653,-0.2063227379694581,-0.21748848631978035,0.9086896874941885,0.48564272839576006,-0.10078055690973997,-0.249333334621042,0.9081389741040766,0.6308128293603659,-0.8251760052517056,0.014558993745595217,0.7381693362258375,-0.736679193098098,-0.28777855867519975,0.3903086930513382,0.8479104973375797,-0.08054461376741529,-0.8200210109353065,0.3253192654810846,-0.41916660917922854,0.7740234984084964,-0.17330552218481898,-0.5640898309648037,-0.9309116010554135,0.5105267567560077,0.9049745402298868,-0.9950820975936949,0.32796474546194077,0.20805692579597235,0.40427282080054283,-0.7418154212646186,0.5350474258884788,-0.12197956023737788,-0.6258121123537421,-0.10707364371046424,-0.045335411094129086,0.3143348628655076,0.9525998989120126,-0.2596291610971093,-0.6349976314231753,-0.4072721814736724,-0.186098154168576,0.47657704073935747,-0.647598740644753,-0.4877384868450463,-0.7303573563694954,-0.02952422294765711,-0.08572676312178373,-0.09316994342952967,0.7661835155449808,-0.5098579279147089,0.0683179572224617,-0.7296223542653024,0.39690149389207363,-0.1893867813050747,0.7584444903768599,0.12623685505241156,0.000703668687492609,-0.013083155732601881,0.9400169472210109,0.751355835236609,-0.055835187900811434,0.9741157540120184,0.876556355971843,0.2985609695315361,-0.0665676174685359,0.531031945720315,-0.9067234876565635,0.7016395223326981,0.08399253338575363,0.787914474029094,-0.46876724623143673,0.7812095792032778,-0.47707809414714575,0.5845056078396738,-0.5663882698863745,0.1957576689310372,0.4829331189393997,0.19098859373480082,-0.5206803446635604,-0.563904324080795,-0.45692153833806515,0.5596401407383382,-0.9922011564485729,0.7548013008199632,0.5647883811034262,-0.954972954466939,0.33423011284321547,-0.9737354801036417,0.7601728620938957,-0.6981023740954697,0.7397340331226587,-0.11113905254751444,-0.5775624387897551,-0.8022959805093706,0.753180792555213,0.5577958729118109,-0.7545036459341645,-0.8691286919638515,-0.9588768105022609,0.27710453839972615,0.31765699153766036,0.2811032449826598,0.14616796327754855,-0.1550280014052987,-0.3354362426325679,-0.49339377135038376,0.7829450904391706,0.7375332484953105,-0.3156375107355416,0.6840586620382965,0.8434393396601081,0.5933435312472284,0.17493212781846523,0.8185712173581123,-0.8028257400728762,0.8224473823793232,0.8465646621771157,0.9165896368212998,-0.7505218191072345,-0.7196878804825246,-0.6855365680530667,0.4958440186455846,-0.14875865867361426,0.4673509649001062,0.07253372482955456,0.0021024621091783047,-0.3561025680974126,0.2833219049498439,-0.010179600212723017,-0.29268449638038874,0.28123544435948133,0.4157564155757427,-0.6042983345687389,-0.16296211117878556,-0.6606393451802433,-0.6443939008750021,0.8274106914177537,0.3435376062989235,0.8828836819157004,-0.5632259720005095,-0.591301045846194,0.09010060038417578,-0.3704434991814196,0.5779891000129282,0.4698849762789905,0.7786980969831347,-0.4677124507725239,-0.6303511369042099,0.35686900466680527,-0.7714763726107776,0.04104475537315011,0.16288951877504587,0.16908360552042723,0.5380583731457591,-0.974548205267638,0.8269301815889776,0.3170671877451241,-0.05756207089871168,-0.6468624738045037,-0.3442019452340901,-0.46181916259229183,-0.04525232780724764,0.6890869648195803,0.5091983424499631,0.8773537408560514,-0.6864772392436862,0.3219450330361724,-0.9042040649801493,0.7541481638327241,-0.09469962026923895,-0.5767708183266222,-0.023484659381210804,-0.24178454419597983,0.8041535704396665,0.2626885171048343,-0.353015364613384,-0.29065169859677553,0.6457510110922158,0.2985056983307004,-0.5725789349526167,0.16780215268954635,0.21053994912654161,0.0160269932821393,0.23156991647556424,-0.41805965173989534,0.5331991999410093,0.9126737150363624,0.42290015099570155,-0.7095277961343527,-0.9192595672793686,0.5985566303133965,-0.21796043729409575,-0.7796460255049169,-0.3308661226183176,0.7796136219985783,0.22583274822682142,-0.007730090990662575,0.546158998273313,0.6218522246927023,-0.4867208576761186,-0.5631733564659953,0.5421699690632522,-0.31495348922908306,0.47093516355380416,-0.6051687942817807,0.16054534818977118,-0.900542211253196,0.24310019938275218,0.7409199350513518,0.5879536285065114,0.8155983849428594,0.597646975889802,-0.5565004548989236,-0.02920577395707369,0.7094346634112298,-0.9893539440818131,-0.5387888066470623,-0.3609482692554593,-0.5364132695831358,-0.17655544774606824,-0.17520500253885984,0.5376276397146285,0.6880517401732504,-0.7624998758547008,-0.09230705117806792,0.1988569456152618,0.42085285717621446,-0.8474047463387251,-0.34279879555106163,-0.8398406021296978,0.4589228252880275,0.4816997442394495,0.09324008505791426,-0.1555082849226892,0.7349583189934492,-0.16136801755055785,0.31043029576539993,-0.6025412655435503,-0.7832311983220279,0.32292259065434337,0.37364962976425886,-0.13467968860641122,-0.519859922118485,0.3606437221169472,-0.6802719789557159,0.05548691377043724,0.5300253559835255,-0.5382048347964883,-0.32237808033823967,-0.9482348645105958,-0.9535549776628613,0.6593385473825037,-0.658711769618094,-0.6271029044874012,0.5775053189136088,-0.29813935002312064,0.12035981239750981,-0.2937304717488587,-0.9806192647665739,0.25096346344798803,-0.6504982067272067,0.2724950732663274,0.8424023645929992,0.4102209717966616,-0.9109599869698286,-0.5643217279575765,0.8443117327988148,0.6950605395250022,0.3037763279862702,-0.7695116722024977,-0.13736274791881442,-0.6602147538214922,0.015773651655763388,-0.16118341078981757,-0.32546900724992156,-0.9220564127899706,0.8804941973648965,-0.24527061497792602,-0.3390382225625217,-0.3843045844696462,0.1357902642339468,-0.6030695703811944,-0.3662302033044398,-0.9923041355796158,0.5296051320619881,0.09805253054946661,-0.5756751792505383,0.4440220152027905,-0.9822163917124271,0.25253900745883584,-0.848751911893487,-0.8183401511050761,0.2965194694697857,-0.031287613324820995,0.9827679679729044,-0.5789596191607416,-0.247192386072129,-0.5920115103945136,0.23016088781878352,0.056987641379237175,-0.6112565007060766,-0.9822075208649039,0.5465590991079807,0.36461153300479054,-0.29796076053753495,0.13201342476531863,0.09424824686720967,-0.845052036922425,0.6569870538078249,0.6852002693340182,-0.922269307076931,0.22090619476512074,0.2627082862891257,-0.7716218624264002,-0.28753170371055603,0.6933759152889252,0.5221643690019846,-0.19235725421458483,0.5530289998278022,-0.8992753406055272,-0.19889724114909768,0.4732993561774492,0.9092819993384182,0.41685588378459215,0.40321674896404147,0.8967802841216326,-0.9930487591773272,0.291931482963264,0.5171515475958586,0.20554602984339,0.2787861065007746,0.5326002514921129,-0.1084716534242034,0.6290349122136831,0.18983851186931133,-0.5885893614031374,0.40611604880541563,-0.7995785530656576,0.6502890177071095,0.2868927516974509,0.25911902263760567,0.566987594589591,-0.3069820483215153,0.7807730478234589,-0.26002640277147293,0.3178482595831156,-0.968196292873472,0.624971040058881,-0.9425155599601567,-0.7812949786894023,0.6734464052133262,-0.8306188639253378,0.7482120399363339,0.8231610511429608,-0.5885075945407152,0.16164643689990044,0.6025931229814887,-0.29045584751293063,0.6792064015753567,-0.3107590698637068,-0.5433017150498927,0.46659118263050914,-0.9774068417027593,-0.16089720698073506,0.22292911261320114,0.8040759153664112,0.8794686361216009,-0.6595027465373278,0.5417124531231821,-0.5053920866921544,0.5962596866302192,-0.9044909528456628,0.06744047766551375,0.16162689961493015,0.7595875719562173,-0.9683661619201303,-0.7886407673358917,-0.7248104647733271,0.3764269417151809,0.071978943888098,-0.5113816848024726,0.04225300904363394,-0.6151946042664349,0.13434884883463383,-0.8113781050778925,-0.6540071619674563,0.9835644364356995,0.11836960399523377,-0.030732319690287113,-0.1050264541991055,0.9948671543970704,-0.4529705438762903,0.8374555241316557,-0.1575356051325798,-0.9283792511560023,0.6561389034613967,0.41750373132526875,0.8860398391261697,-0.23819359578192234,0.1959791649132967,-0.8742156545631588,-0.41625873278826475,-0.3048487608321011,0.12835975037887692,-0.33979447185993195,-0.3083239612169564,0.6828041574917734,-0.07502196775749326,-0.7043690430000424,0.346102699637413,-0.3244603765197098,-0.3112276396714151,-0.8625485496595502,-0.1318140639923513,0.6162872845306993,-0.8903362657874823,0.884080006275326,0.0003849728964269161,-0.18410885334014893,-0.22740953182801604,-0.9182703658007085,-0.3696408714167774,-0.22021214617416263,0.8430808167904615,0.017172861844301224,-0.770691501442343,0.7765961522236466,-0.19284248910844326,0.009769561234861612,-0.11540857562795281,-0.03250890597701073,0.2082683313637972,-0.16923452634364367,0.7512334152124822,0.20496957283467054,-0.9845834546722472,0.047296400647610426,0.63708750391379,0.23156547313556075,0.26564201014116406,0.4535658545792103,-0.20466438261792064,-0.6924427812919021,-0.2569437772035599,-0.7523275837302208,0.9686053907498717,-0.15580547554418445,0.6903982092626393,-0.6964098233729601,0.46141402004286647,0.2565189618617296,0.29049644945189357,-0.42395650409162045,-0.6031810147687793,-0.26611420325934887,0.4384783203713596,0.8778246059082448,-0.30408301251009107,-0.5682528517208993,0.32613826682791114,-0.9919905783608556,-0.6111036515794694,-0.8954146536998451,0.15924560092389584,0.6062288065440953,0.31900142412632704,-0.8626339239999652,-0.40341016417369246,0.7857555295340717,-0.8486470724456012,0.13194991229102015,0.3695146730169654,0.5558693902567029,0.7647638842463493,-0.21953587280586362,0.5225430480204523,0.6386677348054945,0.29527570912614465,-0.3014787286520004,-0.9182333005592227,0.6595184057950974,0.5073436391539872,0.6626838468946517,0.026089150924235582,-0.10404898365959525,-0.9221586585044861,0.5299242129549384,-0.503138804808259,0.14744357392191887,0.2498266431502998,-0.3598233931697905,0.3480833126232028,-0.2719114110805094,0.209342657122761,0.021274235099554062,0.6896195709705353,0.7791083147749305,-0.9697512164711952,-0.7478167791850865,0.9157635062001646,0.6197106647305191,-0.7583893672563136,-0.20824180589988828,-0.8614889844320714,-0.5817930651828647,0.45964629435911775,0.29978208895772696,-0.23323666397482157,0.05625078035518527,-0.5517288763076067,-0.20537603041157126,0.09054284682497382,-0.08448310708627105,0.21662631630897522,-0.6272647874429822,-0.4699243688955903,0.661866772454232,-0.25311396829783916,0.546488868072629,-0.00594989163801074,0.6305772010236979,0.36489317705854774,0.4361770236864686,-0.15776380524039268,0.9574948297813535,0.34431143617257476,-0.8907641447149217,0.09288694616407156,-0.37308805249631405,0.6411439282819629,-0.23868945287540555,-0.16142475279048085,-0.3158586807549,0.43710057344287634,-0.7414339566603303,0.4841157556511462,0.32623052690178156,-0.17710768897086382,-0.9691017330624163,-0.561862294562161,0.15946188382804394,0.6975760459899902,0.24322046479210258,-0.3889668374322355,-0.541287743486464,-0.012776058167219162,0.5753782289102674,-0.25687810499221087,-0.8853697841987014,-0.56201262306422,-0.4472900000400841,-0.34095885371789336,0.21173077542334795,-0.25852685421705246,0.35083433147519827,-0.5197422504425049,-0.44120734883472323,0.5525994678027928,0.9271595510654151,0.37952690245583653,0.8422996839508414,0.33515855437144637,-0.21574989473447204,-0.6731269541196525,0.13556613912805915,-0.302066289819777,-0.07850295631214976,0.40744973672553897,-0.7855934514664114,-0.04426565347239375,0.03923708852380514,0.31449243053793907,0.512829237151891,0.2811649851500988,0.8376279938966036,-0.13092538667842746,0.684448548592627,-0.7861797171644866,-0.5785670503973961,0.9176947302184999,0.3444859660230577,0.79333141958341,-0.761194703169167,0.5306881382130086,-0.4855478792451322,-0.8159271194599569,-0.24388805264607072,0.5947920829057693,0.053123853635042906,-0.335850867908448,0.8899430339224637,-0.4993781326338649,-0.07153162453323603,-0.20934937242418528,-0.6703378139063716,0.6375419721007347,-0.3538620793260634,0.0008827843703329563,-0.6071875132620335,-0.533886085730046,0.4592636530287564,-0.7354477643966675,0.08769249683246017,0.024598187301307917,-0.7221791087649763,0.11634226283058524,0.6961943730711937,-0.15852827113121748,-0.2106905048713088,-0.17338699894025922,0.7818639576435089,-0.7433225037530065,-0.6522876326926053,0.3930086181499064,-0.5715656927786767,-0.5676337624900043,-0.9013680638745427,0.10531582916155457,0.8021868653595448,-0.7375468094833195,-0.30722740618512034,0.9186344030313194,-0.976292637642473,0.63245769450441,0.09804909117519855,-0.6680631712079048,-0.4739683037623763,0.18633194407448173,-0.9881195812486112,0.49270690931007266,0.9452157877385616,0.260857077781111,0.8957066480070353,0.5027210866101086,-0.7547558923251927,-0.7905230186879635,-0.8264081990346313,-0.41535224486142397,0.04918407881632447,-0.4880563700571656,-0.3989474265836179,-0.0029204078018665314,-0.018805954605340958,-0.2906729062087834,-0.38307055924087763,0.5355677041225135,0.10037982044741511,-0.1437288150191307,0.38256871700286865,-0.7866909368894994,-0.7704015588387847,-0.856411846820265,-0.6879811813123524,0.1431572549045086,0.0007320730946958065,-0.29813722940161824,0.7293171407654881,0.7612059507519007,0.5958511549979448,-0.9537523230537772,-0.27263355255126953,-0.1436647060327232,0.623158102389425,0.6682035978883505,-0.9411380682140589,0.41222992492839694,-0.3128856560215354,0.4270193069241941,-0.3307653362862766,-0.06401633098721504,0.06444839807227254,0.23982934514060616,-0.15158428018912673,0.3522117119282484,-0.45142925810068846,-0.8613887489773333,-0.16016413504257798,0.16250881599262357,-0.928979619871825,-0.14317500265315175,-0.14219145523384213,0.7701262477785349,-0.18239510711282492,0.0194169282913208,0.2680131243541837,0.02049404103308916,-0.14542923448607326,-0.9751704256050289,0.9996229819953442,0.9680356341414154,0.7886370117776096,-0.3629727275110781,-0.07505129044875503,0.41259068762883544,-0.5458785686641932,-0.30373525992035866,0.35816461965441704,0.1811336474493146,0.027168129105120897,0.42561824433505535,-0.7122690500691533,-0.12014452135190368,0.17070174869149923,0.9132565576583147,-0.05952362669631839,-0.39830019185319543,-0.4028940638527274,0.06911371508613229,0.24917902704328299,0.034406484104692936,0.04529353138059378,-0.3424596218392253,-0.5811877939850092,0.1945409867912531,-0.8629675912670791,-0.622115290723741,0.15407416317611933,0.9255570410750806,-0.33705031871795654,-0.41464535100385547,-0.9886584435589612,0.6686124699190259,-0.21885735588148236,-0.37653631530702114,-0.68577745789662,-0.7031358033418655,0.3850948694162071,-0.6854344443418086,-0.10910423472523689,0.33932987228035927,-0.2069759122096002,0.8070325804874301,0.026977744419127703,0.13679172843694687,-0.375124033074826,-0.7222623126581311,0.7892290251329541,0.29703745106235147,0.35685731563717127,0.0558675080537796,-0.7767431833781302,0.11074605165049434,0.9443422742187977,0.2768213748931885,-0.29484328906983137,-0.9518490475602448,0.7496631355024874,0.04711236245930195,0.3083324399776757,-0.41480807587504387,0.9694211767055094,0.013582106679677963,-0.3950839317403734,0.12306039547547698,-0.7818466033786535,-0.5474671376869082,0.19599569728598,-0.22297011222690344,-0.35150557989254594,-0.5875382353551686,-0.22485216986387968,-0.35205642273649573,0.05984168499708176,-0.06181280501186848,0.7231704788282514,0.4640715243294835,-0.10129116382449865,-0.17131484113633633,-0.7221812116913497,0.18200345523655415,-0.38759377552196383,-0.22492560697719455,0.9877074714750051,0.3961870614439249,-0.8714180518873036,0.3149876734241843,0.5562202511355281,-0.5506067080423236,-0.48622095212340355,-0.334146695677191,0.453852791339159,0.8401776170358062,0.3607185357250273,-0.6485549034550786,-0.14965543895959854,0.9318042574450374,-0.6653581601567566,-0.3178451503627002,-0.46488670352846384,-0.9578703013248742,-0.3676889347843826,-0.4641512939706445,-0.2348124380223453,-0.48932066559791565,0.7946063922718167,-0.24886257480829954,-0.7058920841664076,-0.6557926936075091,0.6356431203894317,-0.2724408763460815,0.7143587712198496,0.16138433758169413,-0.2939731585793197,-0.2821681913919747,0.367548568174243,-0.6124066817574203,-0.3964847046881914,-0.5209015342406929,-0.3611930920742452,-0.9508482892997563,-0.06975563475862145,0.5710287257097661,-0.45838810224086046,-0.3211434567347169,0.9959979746490717,-0.7855810048058629,-0.4726037262007594,0.087342977989465,-0.7936315652914345,0.29611965268850327,-0.9006363372318447,0.6047268910333514,-0.6219736621715128,-0.9012847333215177,-0.40197624871507287,0.5893854601308703,-0.4653224661014974,0.20548595022410154,0.8144802278839052,0.9692988567985594,-0.34308159071952105,0.7007185891270638,-0.789688054472208,-0.00289382366463542,0.021007631439715624,-0.0275565842166543,0.16935522947460413,0.4402068331837654,0.3044514637440443,0.30461710738018155,-0.7198376478627324,-0.5090821115300059,-0.14098110748454928,-0.4032560079358518,0.6976536889560521,-0.8344738990999758,0.04434035066515207,-0.22414986323565245,0.333625728264451,-0.43150958325713873,-0.04713440081104636,0.6456784415058792,0.8522670045495033,0.7619562321342528,0.9903106829151511,0.10764489276334643,0.10685476660728455,0.7942137545906007,-0.41603499185293913,-0.6653668317012489,-0.6195877334102988,0.8782855658791959,0.9799647065810859,0.5751331588253379,0.4789987411350012,0.11454541748389602,0.6879929420538247,-0.5556619884446263,0.49339697044342756,0.16864812467247248,0.36715945648029447,0.4400354502722621,-0.6148962308652699,0.7670969851315022,0.3609532369300723,-0.2721557719632983,0.14077660022303462,0.5389853897504508,0.6190711688250303,-0.05929974000900984,-0.10181275056675076,0.047487505711615086,-0.8899415018968284,-0.7283403635956347,-0.49812439642846584,0.39529529633000493,-0.3124252553097904,-0.4879846996627748,-0.10334938205778599,-0.7446603500284255,-0.40052878856658936,0.8479296895675361,-0.04093436524271965,0.4732251581735909,0.8629491026513278,0.18596202367916703,0.04164643818512559,-0.918777281884104,0.496192941442132,0.5028842221945524,0.8658618470653892,0.17034820606932044,0.8298812308348715,0.8543127602897584,-0.45621054992079735,-0.3330243402160704,-0.44609180791303515,0.5018189023248851,-0.6438723099417984,-0.29832546040415764,-0.1451973426155746,-0.9910640115849674,0.7361715203151107,-0.7706409506499767,0.5983241484500468,0.5013888832181692,0.5853244885802269,0.60490907356143,-0.3130382723174989,-0.04285596730187535,-0.07537397602573037,-0.6999927167780697,-0.1496484107337892,0.6373146348632872,0.3056011307053268,0.9590688277967274,0.7172327972948551,-0.3609003867022693,-0.13322309497743845,0.0718114166520536,-0.668828462716192,-0.7863311166875064,-0.5990661662071943,-0.413731686770916,-0.6898173545487225,-0.034331319853663445,0.5249262368306518,0.9626776101067662,-0.8815549495629966,0.23269298626109958,-0.10813941992819309,-0.4791346569545567,0.27964326087385416,-0.3218003404326737,-0.529615581035614,-0.8310536770150065,0.20660055661574006,0.015650433022528887,-0.10271926689893007,0.6355350082740188,-0.29237734992057085,-0.3890226949006319,0.25251956889405847,0.9099833592772484,0.6644063210114837,-0.3837829804979265,-0.9349349900148809,-0.29838177748024464,-0.7571661635302007,-0.8445523432455957,-0.30914423428475857,0.24847458489239216,0.23204179015010595,-0.4452186357229948,0.8282023086212575,0.9560701418668032,-0.10231076460331678,0.5066681778989732,-0.9367898139171302,-0.8279482717625797,-0.08299619890749454,0.07390233781188726,0.44872288685292006,-0.339733368717134,0.07505455752834678,0.713594944216311,0.22345037246122956,0.904558356385678,0.5033389539457858,0.999638575129211,-0.027715482283383608,-0.10119635658338666,0.007275948766618967,-0.23563870368525386,0.3608831213787198,-0.30608809227123857,0.9803742496296763,-0.12730982759967446,0.8416846538893878,-0.4773344243876636,0.979050665628165,0.07164687756448984,-0.3808699017390609,0.45465506287291646,-0.7832234087400138,0.911230587400496,-0.3862587851472199,0.5465485146269202,-0.00673433905467391,0.03244321281090379,-0.5548754697665572,-0.9721469599753618,-0.5853709634393454,-0.8553734333254397,0.33147435914725065,-0.002474473789334297,-0.389546780847013,-0.6622757958248258,-0.575019889511168,0.038074190728366375,0.5923410411924124,-0.06098833214491606,-0.0005914350040256977,-0.5427571278996766,-0.022688044235110283,-0.20104120345786214,-0.4257886759005487,-0.995556344743818,0.3935456364415586,-0.7955644554458559,0.5568107166327536,0.12087163887917995,-0.654226629063487,-0.36140943318605423,-0.3536252398043871,0.60991927748546,-0.029123796615749598,0.37012733379378915,-0.7853678590618074,-0.5804931432940066,0.20640021609142423,-0.6338095152750611,0.9784772745333612,-0.5049856505356729,0.410800585988909,-0.7788628786802292,0.16908773314207792,-0.9517572703771293,-0.1863388828933239,0.07346872985363007,0.44769666204229,-0.3355384962633252,0.23982500191777945,0.8124700239859521,0.7929022097960114,0.20024695806205273,0.26124118408188224,0.8569466006010771,0.5387383070774376,0.30805080756545067,-0.4572225818410516,0.19285418931394815,-0.5073913298547268,-0.25432653119787574,0.8079686127603054,0.6282753609120846,0.20730144949629903,0.5032300101593137,0.38959827879443765,-0.8758648275397718,-0.4596115364693105,0.7076637465506792,0.29313257709145546,0.3271740786731243,0.34469092823565006,0.8620708542875946,-0.03202304570004344,-0.9713094141334295,0.9230151954106987,-0.9757023649290204,-0.7128510563634336,-0.9323221980594099,-0.4556795936077833,0.8287933939136565,0.3143600379116833,-0.540397378616035,0.2268109987489879,-0.06939938990399241,-0.9221824961714447,0.9093800410628319,0.3679995578713715,-0.9948731539770961,-0.8355425442568958,0.6208304008468986,-0.5087356059812009,-0.8308777674101293,0.8519291048869491,-0.07655603205785155,-0.316695639397949,0.8288448825478554,-0.2328506065532565,0.5322759286500514,0.8450257801450789,-0.8984439414925873,0.17560560209676623,0.256354546174407,-0.49023534543812275,-0.7913792161270976,0.5941082183271646,-0.16568992286920547,0.7407668041996658,-0.21088980650529265,-0.7319609182886779,0.6330896224826574,0.33853744342923164,-0.15688915131613612,0.67885527247563,0.2756662010215223,-0.1078319763764739,-0.6121281934902072,0.8501396747305989,-0.9607323710806668,-0.36575141455978155,-0.11524144094437361,0.5588862462900579,0.44747898634523153,0.5363663383759558,-0.24342758301645517,-0.07004650682210922,0.6657542907632887,0.6071081929840147,0.4212530879303813,-0.5982237220741808,0.4804548774845898,0.6640130490995944,-0.14477117778733373,0.00264305854216218,-0.9497853997163475,0.31342695001512766,0.8703259788453579,0.6068992177024484,-0.8372412328608334,-0.1873944913968444,-0.0028922180645167828,0.8271632073447108,-0.06881554191932082,0.7117315782234073,-0.44102594489231706,0.9859716701321304,0.5386853408999741,0.3619882371276617,-0.7942895069718361,0.34906925773248076,0.8653439171612263,0.037620197515934706,0.34699835535138845,0.2150560738518834,-0.8657329827547073,-0.9109458243474364,-0.8709301622584462,0.5386848249472678,0.00950290635228157,0.5617688009515405,0.24956707470119,0.029140669852495193,0.5591703439131379,-0.19929678039625287,0.26681957533583045,-0.05702922632917762,-0.8979883301071823,-0.727300769649446,-0.11562453536316752,-0.8436276204884052,0.18922415981069207,0.162754628341645,-0.6273832735605538,-0.14073740411549807,0.027897381223738194,-0.6224074298515916,-0.9380003833211958,-0.013414916582405567,-0.2657760535366833,-0.394098125398159,-0.49865014059469104,0.5547540616244078,-0.8029029839672148,0.8489465690217912,0.17988665960729122,-0.011264330241829157,0.6475392519496381,-0.556010021828115,0.2601625407114625,-0.3235330977477133,-0.055036053992807865,0.760839129332453,-0.8876030999235809,0.033962609712034464,0.77346748765558,0.9390410855412483,0.7946006613783538,-0.0856207455508411,-0.07186517445370555,0.2694639111869037,-0.3274408611468971,0.9101143479347229,0.9048548368737102,-0.4716583383269608,0.45981290563941,0.3231702079065144,-0.3522043623961508,0.2698705019429326,0.8344713663682342,0.8452453291974962,0.36860353453084826,0.4889958370476961,-0.8141299108974636,0.9098529969342053,-0.17348127253353596,-0.6928041260689497,-0.8306603939272463,-0.900896456092596,0.03559579933062196,-0.14541179733350873,0.9399080034345388,0.4741204739548266,0.9355843639932573,0.7905258592218161,0.985041702631861,-0.450298679061234,-0.44418152421712875,0.12103098630905151,-0.49941419437527657,0.6920952089130878,0.8335044868290424,0.4318214841187,0.6845714491792023,-0.9916459731757641,0.9658720097504556,-0.33114171028137207,0.8842760296538472,-0.9977686265483499,-0.8530176081694663,0.21862561395391822,-0.9677077461965382,0.9751997045241296,-0.9446700094267726,-0.002276384737342596,0.04228468192741275,0.018357967492192984,-0.9037286168895662,0.8580547138117254,0.6253463053144515,-0.005211739335209131,0.8986514788120985,0.7064966401085258,0.6579303848557174,0.5347132822498679,0.07267916621640325,0.40486045042052865,-0.44821086758747697,0.23117947997525334,0.09226566692814231,-0.9516338561661541,0.08240307588130236,-0.9594550621695817,-0.8344697700813413,-0.5110233621671796,0.8711206545121968,0.784860463347286,-0.8660840736702085,0.1498109232634306,0.3043408519588411,-0.7883556773886085,-0.8820791621692479,0.6954911942593753,-0.725351769477129,0.21799304941669106,-0.874620049726218,-0.6708702957257628,-0.5483360392972827,0.028546493034809828,0.827997743152082,0.19080248335376382,-0.4079510015435517,-0.22878560284152627,-0.5950581282377243,0.6410839147865772,0.8192489850334823,-0.6050133220851421,0.1323679476045072,0.2404875443316996,-0.31631405698135495,-0.7672830699011683,-0.05080701503902674,0.6826996589079499,-0.6790231405757368,0.9105043672025204,-0.6502648741006851,-0.4410212114453316,-0.3052380420267582,0.894228526391089,-0.6267551598139107,0.7137854942120612,-0.534821501467377,0.8670167429372668,0.41924200020730495,-0.3934835707768798,0.4839791082777083,0.7186980713158846,0.7788423984311521,-0.45133094070479274,-0.6082914029248059,0.9440574641339481,0.35413520177826285,0.7695548259653151,0.7229637266136706,-0.06255148211494088,0.4549006796441972,-0.7774337469600141,-0.2837014403194189,0.127212876919657,-0.9886995451524854,-0.7798235802911222,0.014134596567600965,0.3092086692340672,0.38666820153594017,-0.6696677282452583,-0.01608413178473711,0.5170287005603313,0.7440299950540066,-0.32807916728779674,-0.4966043862514198,0.27175699174404144,-0.942407226189971,0.49247538298368454,-0.20863986993208528,0.46921017207205296,0.2920017559081316,0.9234055830165744,0.6376341455616057,0.4512461996637285,0.7734552640467882,-0.030880253296345472,0.4309857189655304,-0.23783585242927074,0.9517558114603162,-0.7164594084024429,-0.45209372881799936,0.7744116773828864,0.6231697485782206,0.23629406886175275,-0.9002071837894619,0.9225049102678895,-0.9401206043548882,0.8470663465559483,-0.2955190963111818,-0.794350000564009,0.18751881644129753,-0.7301389151252806,0.09294008603319526,0.9505928019061685,-0.9458521851338446,0.8692212575115263,0.5920835309661925,-0.7423596945591271,-0.1921868994832039,-0.8007812942378223,0.9898759755305946,0.9331231219694018,0.7429982391186059,-0.474921059794724,0.4172751666046679,-0.5356249120086432,0.04513499420136213,0.43000379810109735,-0.8621651115827262,-0.39668236672878265,0.04572524409741163,0.436183150857687,-0.8321140613406897,-0.8953819232992828,-0.6054156702011824,-0.22397656459361315,-0.052712312899529934,-0.3425428159534931,-0.5904638795182109,0.12157350266352296,-0.9000608501955867,-0.8735595922917128,-0.42469751089811325,-0.44958555046468973,-0.8165300623513758,0.718417018186301,0.1344224028289318,-0.8712955820374191,-0.2589162327349186,-0.5992517108097672,-0.7653492712415755,-0.7041894146241248,0.3831824092194438,0.40728455781936646,-0.38865813752636313,-0.5034818598069251,-0.9278121409006417,0.13677968457341194,0.5030418857932091,0.20809225644916296,0.7568156006745994,0.8869489780627191,0.6956927394494414,-0.4281653049401939,-0.23466793494299054,0.4336110237054527,-0.6615528259426355,-0.7257296601310372,0.7501530852168798,-0.4017842751927674,0.21592581132426858,-0.12957173772156239,0.7094520330429077,0.3797397860325873,-0.40954646933823824,-0.4776531266979873,0.11063365777954459,-0.5919302809052169,0.9811653001233935,-0.6092717964202166,-0.9818207039497793,0.013857223093509674,0.033746950794011354,-0.050639853812754154,-0.7929677288047969,0.28244395600631833,-0.6082768561318517,-0.4446359253488481,-0.4831269681453705,-0.25825461093336344,-0.7119645704515278,0.8913330947980285,-0.42401151778176427,0.3890708680264652,0.4762420319020748,-0.24248441588133574,-0.32361897453665733,0.08283170964568853,0.37644302984699607,0.13512407476082444,0.8488270966336131,0.10138380900025368,-0.9970723818987608,0.9426790978759527,0.16162466211244464,0.6184703991748393,-0.270533817820251,0.148071167524904,0.42308805603533983,-0.5652031288482249,0.561893162317574,-0.7611882174387574,-0.3280027233995497,0.37297792779281735,-0.19478323962539434,0.848785993643105,0.6119315926916897,-0.7920044544152915,0.7333457442000508,-0.4150221352465451,-0.4224277180619538,0.8743158378638327,0.13409384712576866,0.9545841724611819,0.7778012519702315,-0.46898821648210287,0.23413657676428556,0.9909370574168861,0.3710104590281844,0.8674647859297693,0.8931565242819488,-0.2590903057716787,-0.5808506798930466,-0.2720175883732736,-0.6497407467104495,-0.6737412884831429,-0.19272488774731755,-0.3400347400456667,-0.6822704845108092,-0.7602595505304635,-0.6493996623903513,-0.35343697387725115,-0.058618186973035336,0.42346647614613175,0.9537945012561977,0.004594143480062485,-0.2733676293864846,0.3998859408311546,-0.502492006868124,-0.8045822712592781,-0.12836181372404099,0.40146813029423356,-0.962715060915798,-0.07047592801973224,0.9321092725731432,-0.2748122881166637,-0.8367186640389264,-0.8446915820240974,-0.039399368688464165,0.5943844085559249,0.7995675941929221,0.05081506306305528,-0.11470611672848463,0.7927852352149785,-0.8136076126247644,0.4713735207915306,0.9033338166773319,-0.6156477988697588,-0.5871676062233746,-0.9544922108761966,-0.26593846874311566,-0.9070019908249378,0.24101489875465631,0.6475076228380203,0.1829196261242032,-0.39383967826142907,0.5934060467407107,0.8319694688543677,0.7819067807868123,0.1420838050544262,-0.05261146370321512,0.45757785765454173,-0.664891978725791,0.16383997071534395,-0.22336570965126157,0.6659065615385771,-0.8542208005674183,0.6739953062497079,-0.5064775911159813,0.40171473240479827,-0.4092075019143522,0.025378833059221506,0.8832987993955612,0.7777031599543989,0.5693053975701332,-0.9176194826141,0.11020357394590974,-0.553348911460489,0.5958558465354145,-0.35193054005503654,-0.25011978577822447,-0.13192764297127724,-0.7079713107086718,-0.9006140506826341,0.4352506580762565,-0.39219656959176064,-0.595327069517225,0.6903788642957807,-0.5424792189151049,-0.9055974050424993,-0.20747121470049024,0.0031679249368608,0.9612417565658689,0.9661660096608102,0.7251186808571219,0.4114191238768399,-0.7504188939929008,-0.9989286996424198,-0.8024439006112516,-0.18625364219769835,-0.9804195244796574,0.9734604121185839,-0.9845159621909261,0.291681410279125,0.7260590805672109,0.9381076297722757,0.720213855151087,0.9416114459745586,0.6792320273816586,0.32756037171930075,-0.6758289290592074,0.6971892160363495,-0.03341755084693432,-0.3014201601035893,-0.7180091869086027,-0.17808170896023512,-0.7972456333227456,0.596748439129442,-0.8538772594183683,-0.49891300592571497,-0.5762352580204606,-0.14040079293772578,0.6276484979316592,0.9490847019478679,0.5742563488893211,0.7962237866595387,-0.8239315017126501,-0.9341162769123912,0.919724001083523,0.36094643035903573,-0.5839404370635748,-0.9578029005788267,-0.7693651802837849,-0.9681909787468612,0.13059652037918568,-0.33126762229949236,-0.8721397654153407,0.3911326741799712,0.3992075487039983,-0.4007119149900973,0.3550947830080986,-0.30984365520998836,0.36697207391262054,0.40461157634854317,0.1459415634162724,-0.6537345736287534,-0.6149071981199086,0.5739701511338353,-0.24817544827237725,0.8251024573110044,-0.3572292346507311,-0.22930794954299927,0.07385964645072818,0.33733568573370576,0.930244012735784,0.5101228961721063,-0.07419663947075605,-0.4973724605515599,-0.3886933014728129,-0.9668888300657272,-0.381354667712003,0.6190132815390825,0.4111622432246804,-0.9942228780128062,0.7674580509774387,0.06734587950631976,0.13880758453160524,-0.2847083737142384,-0.7197635560296476,-0.6663825670257211,-0.13571063801646233,0.4836529069580138,0.6330161332152784,0.6375821721740067,-0.4171513500623405,-0.41801810543984175,0.9381258613429964,0.7921863165684044,0.4545445670373738,0.006733288988471031,-0.43908857740461826,0.33786999341100454,-0.8534240461885929,-0.4162150723859668,0.7375920685008168,0.18005596473813057,0.6437679175287485,0.5473554488271475,0.755003631580621,-0.2945482796058059,0.6150815817527473,-0.2888621878810227,0.3128248304128647,0.6809140122495592,0.38135414849966764,-0.6264793127775192,-0.3677303148433566,0.7786435531452298,-0.7163861487060785,-0.9581588734872639,0.21424871170893312,0.03070607827976346,-0.9772037202492356,0.27987850178033113,-0.10346625512465835,-0.7283096699975431,-0.4117719577625394,0.7241613678634167,0.25549826212227345,-0.9062155587598681,0.3994595450349152,0.12741384282708168,-0.5877984934486449,-0.4377478160895407,0.6135602127760649,0.890525127761066,0.4250385956838727,-0.2198427845723927,-0.6922829560935497,-0.9062216212041676,0.8531249673105776,0.005537163466215134,-0.9454409522004426,-0.045554399490356445,0.06941794650629163,0.1483321413397789,-0.38577865762636065,-0.5630493741482496,-0.06539072003215551,0.07315728208050132,0.8979244511574507,-0.608169078361243,0.5334674357436597,0.48976019117981195,0.05910033592954278,0.6675680400803685,0.6510849264450371,0.452629036270082,-0.2120460942387581,0.24138894071802497,-0.28701606718823314,0.7546789445914328,0.23136383946985006,-0.4000022173859179,0.5844841878861189,-0.049741015769541264,0.22889768751338124,-0.0076593258418142796,-0.5609575798735023,-0.32659874809905887,0.7123144939541817,0.044765482656657696,0.9919549664482474,0.31524779880419374,-0.5670734737068415,-0.03721923381090164,0.17899304814636707,-0.8642330360598862,0.6155047691427171,-0.19212543033063412,0.21021467167884111,-0.492937043774873,0.8402824411168694,-0.5377053073607385,-0.27319404669106007,-0.8815288147889078,-0.8240033644251525,-0.6911085243336856,-0.5938739944249392,0.4754700632765889,-0.3879957222379744,0.19761847564950585,-0.23036158783361316,0.37380459904670715,-0.4168184408918023,-0.8302135481499135,0.8133158329874277,0.6514407037757337,0.23189866729080677,0.7357386834919453,0.39858374604955316,0.8875742782838643,0.5346663198433816,0.5054143783636391,-0.27554748952388763,-0.5907607995904982,0.7960746306926012,-0.8117285859771073,-0.7205218207091093,0.5665502147749066,-0.6744415867142379,-0.4249389972537756,-0.3551612924784422,0.1806531297042966,-0.843887809664011,0.7329363850876689,-0.19103363947942853,-0.2733635031618178,-0.7238035853952169,-0.4759071543812752,-0.9190156860277057,0.8300896245054901,-0.463456769939512,0.9248025938868523,-0.8376090005040169,0.8169784639030695,-0.8254688088782132,-0.62855891790241,0.7715709935873747,0.320226130541414,0.3580896444618702,-0.6155445952899754,0.8118543620221317,0.8155533284880221,-0.5679928408935666,0.2794448034837842,-0.3198716822080314,0.39531136536970735,0.8862600736320019,-0.9248501448892057,-0.9813651032745838,-0.71694844821468,0.6761382962577045,-0.905432712752372,-0.6182160722091794,0.47476398618891835,-0.7754811863414943,-0.9304058346897364,-0.2898862464353442,-0.6320896451361477,0.4922264628112316,0.8021040800958872,-0.7371398345567286,0.39436348667368293,0.4500336404889822,-0.04596372228115797,0.9646253250539303,0.7981226015836,-0.10208973428234458,0.40097979037091136,0.7566601452417672,-0.4920394294895232,-0.13827236788347363,-0.09461729461327195,-0.163748097140342,-0.0829919339157641,0.3396521210670471,-0.5607179030776024,-0.2797145270742476,-0.7032042588107288,-0.8138619163073599,-0.5546385771594942,0.1946480292826891,0.29291523061692715,-0.15082876896485686,-0.41256996849551797,-0.4384412933140993,-0.3009729031473398,-0.8178759636357427,0.09645005268976092,0.11912666819989681,0.5910859112627804,0.8985680057667196,-0.9204257265664637,0.08860105602070689,0.5330311707220972,0.6579889794811606,-0.43552723713219166,-0.20993775455281138,-0.6808257717639208,0.6944325738586485,-0.25130748888477683,-0.28149009915068746,-0.5701113627292216,-0.9605204747058451,0.936105408705771,0.6275461628101766,0.7484319172799587,0.4758447241038084,-0.741609807126224,0.4546331949532032,0.15239004231989384,-0.1910072723403573,0.3125522886402905,0.11779621709138155,-0.4972152910195291,0.902212658431381,-0.556710981298238,0.4871777235530317,0.7565586161799729,-0.7654447397217155,-0.11579163884744048,-0.6638662912882864,0.8058884758502245,-0.5710877813398838,0.3459037924185395,0.3096038340590894,-0.2562301638536155,-0.40789194172248244,0.153586620464921,0.6741054281592369,0.053686102852225304,-0.21352443099021912,-0.27949123410508037,0.9445740040391684,0.7324955561198294,0.024790607392787933,-0.4539098762907088,-0.1420255359262228,0.5491328346543014,-0.23136003036051989,-0.49769952334463596,-0.49514495115727186,-0.6522867269814014,-0.04353669798001647,0.6150733474642038,-0.6793620069511235,0.9559218068607152,-0.6469803708605468,-0.1378873041830957,0.6173047698102891,-0.5310077322646976,-0.7448916719295084,-0.9438985516317189,0.6502411854453385,0.09840816911309958,-0.6438419800251722,0.19149337336421013,-0.6417513657361269,-0.13109523709863424,0.8284522579051554,0.6737300078384578,-0.1546673495322466,0.5566345765255392,-0.8648509965278208,-0.5941519322805107,0.6849702754989266,-0.6283575585111976,-0.43949051573872566,0.19475601566955447,-0.1326108630746603,0.9451904045417905,0.7052787309512496,-0.45612740609794855,0.5988032054156065,-0.544347979594022,-0.314146738499403,0.6990965576842427,0.7715241927653551,0.7811189154163003,-0.11780191212892532,-0.9380421885289252,0.19644163083285093,0.45226300740614533,0.8669593017548323,0.9396934020332992,-0.9543513022363186,-0.19609143771231174,-0.8581709414720535,-0.6243303418159485,0.9056096510030329,-0.029842181131243706,0.9855561484582722,-0.743819534778595,-0.39133609598502517,0.8770675035193563,-0.8960328535176814,0.4004079205915332,0.7523784916847944,-0.643196296878159,-0.49624643474817276,0.2002174942754209,0.14017657795920968,0.6329320822842419,0.32016938272863626,-0.3873564787209034,0.5646301177330315,-0.44913695473223925,0.13579969946295023,-0.8758739028126001,-0.44644861994311213,-0.47642651246860623,-0.07850029785186052,-0.7892883904278278,0.15658887987956405,-0.25406449753791094,0.7561226771213114,-0.7965554790571332,0.7788217375054955,0.09545969124883413,0.1475404086522758,0.3914417796768248,-0.8270548214204609,0.09806739864870906,0.6865288116969168,-0.42072122171521187,0.6547677139751613,0.21927244495600462,-0.7590912585146725,0.290268637239933,-0.6570533262565732,-0.5691857547499239,0.5537422015331686,-0.835002341773361,0.7135453848168254,0.8973829639144242,-0.6238856432028115,-0.004233663901686668,0.5386562766507268,-0.4982980163767934,0.8522934187203646,0.7008984349668026,0.15298350481316447,-0.24527620244771242,-0.8462735288776457,0.5587926232255995,0.5951555515639484,0.3777724145911634,0.360002679284662,0.879570403136313,-0.478465233463794,0.8094652937725186,-0.6848893547430634,0.9103374588303268,0.5509369373321533,0.3438750454224646,-0.37614735029637814,-0.4135879590176046,0.24394166097044945,-0.35294697107747197,-0.8640618533827364,0.8552441410720348,-0.5833058613352478,0.25827388977631927,-0.8923146915622056,-0.41326860385015607,0.10247396677732468,0.5504138641990721,0.18937950627878308,-0.752976746764034,0.8562018978409469,0.44308161782100797,-0.9477501735091209,0.9902777946554124,-0.390078233089298,-0.08916253596544266,-0.297642539255321,-0.12734753591939807,-0.9335667076520622,0.7273183087818325,-0.31890729581937194,0.2618920048698783,-0.22696747444570065,0.4602426327764988,0.5992862046696246,-0.5437421901151538,-0.43872916465625167,-0.713362502399832,-0.18287443509325385,0.4813526654615998,-0.4229372013360262,-0.7829236574470997,-0.044030871242284775,0.4961143070831895,0.3551304298453033,0.28121085930615664,-0.5178143987432122,-0.7893314850516617,-0.8771383380517364,-0.6849106797017157,-0.9875352517701685,0.8502659667283297,0.5344549836590886,-0.3079757443629205,-0.5458701555617154,0.7700872733257711,0.6279280306771398,0.7211676044389606,-0.7062144558876753,0.5935291717760265,0.45433255052194,-0.34892717050388455,-0.6515422184020281,0.07666707504540682,0.3614188674837351,-0.6753346803598106,0.4261764450930059,-0.41637660516425967,0.1883910931646824,-0.817762210033834,-0.5869858609512448,0.6611876082606614,0.6304963626898825,-0.3155054193921387,-0.11618391051888466,0.0037777069956064224,0.4333532340824604,0.4026911538094282,-0.1477083950303495,0.2410968872718513,0.07763212686404586,-0.46606978634372354,-0.5846377187408507,-0.19403474032878876,-0.18281623488292098,-0.06550012016668916,0.25722877820953727,0.9236009609885514,-0.7168692080304027,-0.7521730503067374,0.9163941787555814,-0.7236603503115475,-0.8992986264638603,0.6004782076925039,0.5641021830961108,0.3071065554395318,-0.0935408161021769,0.6041179336607456,0.4253051932901144,0.0757389236241579,0.4761096555739641,0.9092785879038274,-0.4023079643957317,0.9188157604075968,0.6739388080313802,0.5770478500053287,0.09023926919326186,-0.31741280434653163,0.739669690374285,-0.3351880880072713,-0.42653245478868484,-0.4674709285609424,-0.6688926964998245,0.8897574343718588,-0.523485729470849,0.4126710258424282,0.5114636151120067,-0.26672704610973597,-0.4741557855159044,0.3003073865547776,-0.07350565306842327,0.8546741474419832,0.9123919676057994,-0.127354234457016,-0.42151130456477404,-0.1378809572197497,0.49999499740079045,0.9691564314998686,0.4864007644355297,-0.08563557174056768,-0.20063166273757815,0.6303201545961201,0.5428255051374435,-0.013017334043979645,-0.9878174541518092,-0.9925789977423847,0.33539388608187437,0.8848047987557948,0.41468600230291486,-0.41968518355861306,0.15562751423567533,-0.4663176778703928,0.8159186402335763,-0.27202361915260553,-0.2021698378957808,-0.8670133375562727,0.6885478207841516,-0.4306310536339879,0.9907165174372494,0.03033223981037736,-0.05315628182142973,-0.6672957660630345,-0.4926285673864186,-0.250528949778527,0.31118290685117245,0.20305563416332006,-0.5922040636651218,0.6881591407582164,0.18234271556138992,0.3332247780635953,0.2349108369089663,0.07417478132992983,-0.23005661414936185,-0.05307408608496189,-0.08102840883657336,-0.05030588572844863,0.8012698534876108,-0.07608120143413544,0.6085669021122158,0.8078343672677875,0.7588022113777697,0.3881622292101383,-0.6156761483289301,0.12611666880548,0.3396453242748976,-0.436105577275157,0.1146457209251821,-0.03459181962534785,0.2112536826170981,0.3726550657302141,-0.6026697303168476,-0.8931889841333032,-0.8143139276653528,0.5383751364424825,-0.5937139033339918,0.7190605970099568,-0.35010389145463705,-0.9899467658251524,0.4357878747396171,-0.5158837959170341,0.67360397009179,-0.2047132602892816,-0.653601111844182,0.7987202722579241,0.5562788927927613,-0.4602177510969341,0.8696185857988894,-0.030501439701765776,-0.7285602418705821,0.06875563319772482,0.7027512225322425,-0.2104614321142435,-0.7604036098346114,0.08879519253969193,-0.17092849593609571,-0.5792708550579846,-0.5454720905981958,-0.8025884800590575,0.3342723879031837,-0.6972147324122488,-0.7970136133953929,-0.8409636886790395,0.6246561165899038,0.6751169390045106,-0.010466249659657478,-0.562661430798471,-0.3425028217025101,-0.9111906443722546,-0.5941804014146328,0.3081605159677565,0.745425961446017,-0.9893907583318651,0.5925365635193884,0.8640553932636976,0.042890393640846014,0.5229380475357175,-0.9227449214085937,0.22760852659121156,-0.58053606050089,-0.6727269105613232,-0.9142731451429427,-0.5026504518464208,-0.4267775397747755,-0.8139484687708318,-0.5098689422011375,0.6820079199969769,0.4314764803275466,-0.07784568844363093,0.4087224258109927,0.9562956215813756,0.6867494569160044,-0.7645298684947193,-0.7126893112435937,0.41130056185647845,0.42784643452614546,-0.850819556042552,0.020780179649591446,-0.8510900419205427,-0.6451856014318764,0.2991638397797942,-0.4505032482556999,-0.2985916738398373,-0.7156129092909396,-0.2918298440054059,-0.8410615581087768,-0.48429976822808385,-0.32383090257644653,-0.713851488661021,0.44536373065784574,-0.18926697317510843,-0.4466938250698149,-0.16761575639247894,-0.9916545930318534,0.919537432026118,-0.6815544092096388,0.48096390441060066,-0.8851383682340384,-0.30590980034321547,0.5881410958245397,0.23931017331779003,0.692143083550036,-0.12247905461117625,0.03336928877979517,-0.341707703191787,0.5514137214049697,0.47939785895869136,-0.6328584044240415,0.4654890261590481,0.6938491095788777,0.23395726503804326,-0.4589098612777889,0.20253580203279853,0.9618567014113069,-0.8461322332732379,-0.015654605347663164,-0.7266234317794442,0.12573585705831647,-0.19606989854946733,-0.9991918350569904,-0.9981750422157347,0.07569092931225896,-0.3903817101381719,-0.03883748920634389,0.8568499144166708,0.8214218318462372,-0.6555081475526094,0.8518134523183107,0.5958685749210417,-0.1011004252359271,-0.3823220836929977,-0.8547308063134551,-0.6289456826634705,0.4426357406191528,-0.16556945722550154,-0.06058850511908531,-0.841045449487865,-0.3747601821087301,-0.9679668066091835,-0.6829292243346572,0.9178882092237473,0.9392924443818629,0.24094407306984067,-0.9195449650287628,-0.3393676010891795,-0.12445183470845222,-0.5665008476935327,-0.3639802485704422,0.04208104871213436,0.9328835983760655,0.7029711632058024,-0.42806890700012445,-0.7357065510004759,0.5404600659385324,0.9923579078167677,-0.4688522727228701,-0.960243639536202,-0.0811683852225542,0.780289710033685,0.6868033176288009,-0.010339939501136541,0.5679884585551918,0.8136486359871924,-0.345438402146101,-0.20895297825336456,0.7950149099342525,0.7799184997566044,0.06395787326619029,-0.5151930451393127,0.19714125711470842,0.6768409442156553,0.4985166974365711,-0.032453169114887714,-0.7376320869661868,-0.5406728917732835,0.13216608157381415,-0.027376257814466953,0.016779139637947083,0.047624188009649515,0.3183870171196759,0.17793586058542132,-0.932767812628299,0.7316535306163132,0.43219373654574156,-0.7518309224396944,0.9965138691477478,0.7804816029965878,0.6156563139520586,0.33393382700160146,0.3371251677162945,-0.16066891979426146,-0.002634502947330475,0.7440722156316042,0.5091904848814011,-0.25859444588422775,0.33300404716283083,-0.8384568099863827,0.9258220386691391,-0.573196632321924,-0.5948735889978707,0.25509853614494205,0.7989724799990654,-0.4373661242425442,0.9090935178101063,0.9180045621469617,0.951014946680516,-0.0937068690545857,-0.9749736138619483,0.9859490217640996,-0.37785161193460226,-0.19114510621875525,0.9047169452533126,0.776924139354378,0.6814404209144413,0.022954042069613934,0.5928963259793818,0.9721798929385841,-0.028353585395962,0.0833119424059987,0.2009156928397715,0.07090750010684133,-0.39249611971899867,-0.0883615305647254,-0.8002767581492662,0.1946318238042295,-0.2933379518799484,-0.5000382959842682,0.34698942583054304,-0.3710865629836917,0.1469964673742652,-0.04365421365946531,0.9272241168655455,0.21716358605772257,0.6665439778007567,-0.835830956697464,0.1786328055895865,-0.8899298799224198,0.1759917801246047,-0.3986761951819062,-0.6701690223999321,0.9706064434722066,0.7961285123601556,-0.7450053365901113,0.36413094541057944,-0.4544262047857046,-0.32679338939487934,-0.3199916803278029,-0.4292776728980243,0.5432761497795582,-0.5963917556218803,-0.47355920309200883,-0.7337555815465748,0.42255332320928574,0.6948720812797546,0.6615124824456871,0.1915516653098166,0.3899585213512182,0.23032816033810377,0.48412128211930394,-0.8908678912557662,0.9994181566871703,0.770728231407702,-0.9974460238590837,0.7853090823628008,-0.1419070139527321,-0.6932822191156447,-0.1789621594361961,0.7297181719914079,0.518192614428699,-0.1572505128569901,-0.259218901861459,-0.6149591845460236,-0.10303368559107184,-0.9549683798104525,0.5144739211536944,-0.08444359758868814,-0.7818042407743633,-0.9394064084626734,-0.7827022029086947,-0.5651153894141316,-0.15822170954197645,0.4882403491064906,0.043011956848204136,0.3534410218708217,0.42006782442331314,0.235756516456604,-0.2840936961583793,0.8088392671197653,0.4616307350806892,-0.9126750309951603,0.3948898268863559,0.6036246903240681,-0.6709886714816093,-0.034492730628699064,0.5990225686691701,0.4248699457384646,-0.35974045377224684,-0.3799184812232852,0.9441847149282694,0.8641997682861984,0.25326767563819885,0.9419012605212629,-0.9183125547133386,0.6464176252484322,-0.5825134394690394,0.15535625722259283,0.8011697055771947,-0.03837948711588979,-0.6074468218721449,0.00824103644117713,0.21746222022920847,-0.6769291874952614,0.7517695827409625,0.13025868637487292,-0.030718586407601833,-0.7088875030167401,-0.16448477283120155,0.7208954319357872,-0.35992939909920096,0.6457155258394778,0.9894552696496248,0.8898385935463011,-0.06885726656764746,0.6678770696744323,0.9632610320113599,-0.19394072936847806,-0.18274266924709082,0.23617804003879428,-0.042633299715816975,0.2637310242280364,0.48588486667722464,-0.5877886023372412,0.7802099608816206,0.4213024191558361,0.22878190921619534,-0.1405795868486166,-0.5363463661633432,0.8398334407247603,0.8485510875470936,0.5202555381692946,0.7652025199495256,0.2955341609194875,-0.6762967784889042,0.8318135961890221,0.6486486112698913,0.6150288661010563,0.5579770705662668,-0.5325517640449107,-0.7552012354135513,0.03283466910943389,0.6737394980154932,0.07805009512230754,0.06598306633532047,0.9348910744301975,-0.998687591869384,-0.5015431204810739,-0.8892438653856516,-0.8028500098735094,0.1497799581848085,-0.8437638920731843,-0.13216323032975197,0.03689202154055238,0.7047551623545587,0.6313063865527511,-0.36819078540429473,0.5072667864151299,0.6429096101783216,-0.5073649510741234,0.46997616859152913,-0.3935261801816523,0.5637285560369492,-0.7100705853663385,-0.25423952005803585,0.5875848950818181,-0.23783250711858273,0.2520233462564647,0.35584389232099056,-0.48127242736518383,-0.9694852763786912,-0.1191495074890554,0.18831456219777465,-0.7929997970350087,0.7132617034949362,0.47074720449745655,0.9467276213690639,-0.3228633343242109,0.5996602578088641,-0.7542595467530191,-0.6196587677113712,-0.45520355086773634,0.3116494892165065,0.05501919845119119,-0.11440784763544798,0.6867074999026954,-0.5129173630848527,0.9275017506442964,0.8543785410001874,-0.40513399662449956,0.6917853686027229,0.9734431859105825,0.05847679451107979,-0.46987963328137994,0.7119094873778522,0.3117244252935052,0.6457759845070541,0.6927879736758769,0.6627136571332812,0.31672898633405566,0.6654058331623673,-0.0729293511249125,-0.41810864256694913,0.40651210909709334,0.26096040569245815,0.15185539377853274,0.8845652597956359,-0.4847979382611811,-0.2239398853853345,0.8505842532031238,-0.6785937999375165,0.07818839652463794,0.41825227439403534,-0.06039454508572817,0.25833961507305503,0.8225111956708133,-0.09215302811935544,0.9485484529286623,0.1509003583341837,0.8577718730084598,0.44458987936377525,-0.3412546985782683,-0.14725606050342321,-0.11989440442994237,-0.9577699271030724,-0.7398534216918051,0.04687259253114462,0.31033255998045206,-0.9503559013828635,0.029343280009925365,-0.8874235209077597,-0.9313195254653692,0.7141173649579287,-0.21866369200870395,0.4074072386138141,-0.48174584470689297,-0.8923302101902664,0.9423324628733099,0.6731894188560545,0.6376715763472021,-0.3391128112562001,0.1039333688095212,0.516082942020148,0.20618958305567503,-0.5447019222192466,-0.9328861115500331,-0.494412733707577,-0.7735192072577775,0.7915344214998186,0.8405213258229196,-0.7914859750308096,-0.7545395321212709,0.9073460418730974,-0.18728656228631735,0.5514275874011219,0.40149069111794233,0.07795808324590325,-0.35571058792993426,0.4290461274795234,-0.8662240742705762,0.07967778854072094,-0.5233763423748314,0.4018478160724044,0.6182728968560696,0.502698480617255,0.08964556502178311,0.032717387191951275,-0.07093084277585149,-0.3628296391107142,0.8795463209971786,-0.7463929019868374,-0.7861149762757123,-0.8561579347588122,0.004958051256835461,0.8135211658664048,-0.8013493563048542,-0.9196556974202394,-0.7945601516403258,0.3568586311303079,-0.918820958584547,0.18593968683853745,0.8397632325068116,0.367000512778759,-0.8574625039473176,-0.3043587231077254,0.9716429472900927,0.12479212274774909,0.9678042167797685,-0.34870896534994245,0.5017454135231674,0.08197967475280166,0.6991804228164256,-0.8548118225298822,-0.6217803284525871,0.29159283824265003,0.8580690124072134,0.5496608559042215,0.8978664414025843,-0.6698148609139025,-0.29965910501778126,0.7409786735661328,0.39636408956721425,-0.04972822451964021,-0.2843656577169895,-0.36542976135388017,-0.6612772042863071,-0.1573401433415711,0.8092851247638464,0.6212464570999146,0.378790351562202,-0.9479746446013451,-0.950377348344773,-0.6416284167207778,0.07973911752924323,-0.5126348654739559,0.17606138298287988,0.7768807196989655,0.11221001949161291,-0.7445149766281247,0.2967753242701292,0.37086219899356365,-0.9520911937579513,-0.3391267182305455,-0.5171630582772195,0.8503331351093948,-0.9186491537839174,0.13822669629007578,-0.2476425883360207,-0.23380189668387175,0.8125912952236831,-0.764141530264169,-0.6835761754773557,0.4850592534057796,-0.9154464402236044,-0.8153200293891132,0.2359091374091804,-0.13459528097882867,-0.09400057978928089,0.9877113867551088,0.011034441646188498,0.35479695722460747,0.04877673089504242,0.07236680667847395,0.005513426847755909,-0.38767068181186914,-0.5276298285461962,0.8801543144509196,0.04579785140231252,-0.17417360609397292,-0.0978178083896637,-0.2310607680119574,-0.38529112935066223,-0.4621691918000579,-0.30434379866346717,-0.5894659124314785,-0.7143235439434648,0.2434501643292606,-0.9680055570788682,-0.27028450556099415,0.26060286443680525,-0.09478236827999353,0.19752395432442427,-0.3398881354369223,0.538699297234416,-0.5852828579954803,0.3507378911599517,-0.07069258205592632,-0.28341495525091887,0.2968967091292143,-0.364183911588043,-0.20769549999386072,-0.10658681532368064,0.9052336099557579,0.45309486892074347,0.3638273784890771,-0.9515495765954256,0.10083500109612942,-0.8155301520600915,0.5210188659839332,-0.9211302995681763,0.6307524214498699,0.04629153897985816,-0.24228288605809212,-0.022461713291704655,-0.9774786899797618,0.02023915247991681,-0.5994743402116001,0.43474054522812366,0.4774519521743059,0.9204142903909087,0.7940506087616086,-0.873617310076952,0.20451815612614155,0.3582957177422941,-0.7231763848103583,-0.9008786901831627,-0.6297650844790041,0.7739738002419472,-0.7470421665348113,0.09938794048503041,0.8540679248981178,-0.13627254031598568,-0.7267227359116077,0.2195644867606461,-0.04477673443034291,-0.8786027343012393,0.01336355833336711,0.6187251596711576,-0.10460139298811555,0.3838937794789672,0.4227753793820739,0.3484079670161009,-0.6843178342096508,-0.6973122064955533,-0.9034085157327354,-0.06823848513886333,-0.11119782365858555,0.7998392479494214,-0.777918498031795,-0.09627328393980861,-0.8999763838946819,-0.4250701479613781,-0.45598925137892365,-0.8174344701692462,0.6067969300784171,0.33023193571716547,-0.8077160390093923,-0.32207604870200157,-0.3243536138907075,-0.8447459330782294,-0.9526902101933956,0.24564459268003702,0.1272669779136777,0.9386013471521437,-0.5523760691285133,-0.05639417702332139,0.4159080716781318,0.61893314961344,-0.30848946794867516,-0.7686175149865448,0.7817347096279263,0.6049987296573818,0.4913297425955534,-0.050587194971740246,-0.3261850359849632,-0.7846138030290604,0.47908008843660355,0.3481967728585005,-0.9997700941748917,0.7005823291838169,0.398482209071517,-0.9710049321874976,-0.04824117058888078,-0.7621004045940936,0.7799779865890741,0.1850479249842465,0.038414976093918085,0.12320592440664768,0.7217479012906551,-0.477961165830493,-0.21888900501653552,-0.5416278769262135,0.6928492421284318,0.12545382417738438,-0.6693047266453505,0.6741699897684157,-0.7020589597523212,-0.05187040427699685,0.9507415881380439,0.6005998593755066,0.8976287599653006,0.6240926701575518,-0.4345819349400699,-0.9136984520591795,0.5215152185410261,-0.9240881069563329,-0.5942226429469883,0.2001366065815091,0.8653067448176444,0.23992280755192041,-0.22493009036406875,0.36222831439226866,-0.8364384807646275,-0.4824367053806782,0.6453425539657474,-0.8034480907954276,-0.40752265555784106,-0.6620724187232554,-0.8508520722389221,0.37075979681685567,-0.1753377472050488,-0.903637872543186,-0.6903333710506558,0.8256125631742179,-0.9898093147203326,0.42464201245456934,-0.1810747035779059,0.2575872400775552,0.3724728818051517,-0.2599167600274086,-0.6210643835365772,-0.09493357967585325,-0.7388427620753646,0.9578993278555572,-0.3273787978105247,-0.4156034984625876,-0.4784477702341974,0.6593710705637932,-0.12924227304756641,0.7945639248937368,0.6352761420421302,0.6402058294042945,0.7537476867437363,0.5412022825330496,0.31809236388653517,0.055076219607144594,0.13204152649268508,0.4088491606526077,0.609775751363486,0.14447544841095805,-0.35541220800951123,0.12214325927197933,-0.6698652636259794,-0.9107538806274533,0.29061958752572536,0.4926453297957778,-0.39797693956643343,-0.6967695010825992,-0.6369151752442122,0.9814909636043012,0.9698155303485692,-0.5000003813765943,-0.03694369178265333,-0.3866796395741403,-0.7840897967107594,0.2132702935487032,-0.028859358746558428,0.5164053696207702,0.22774723824113607,-0.6371637559495866,-0.045710280071944,-0.3429163992404938,0.8374675204977393,0.610615168698132,-0.37503134924918413,-0.0759044075384736,-0.7045191661454737,0.5414853389374912,0.9486283343285322,-0.6617234153673053,-0.4101439733058214,0.5161668052896857,0.6334588793106377,0.9205672279931605,0.19238554267212749,-0.8040832336992025,0.20659905718639493,-0.716414833907038,0.3063831031322479,-0.9161027986556292,-0.4506545588374138,0.19889013143256307,0.32596046896651387,-0.4539437987841666,-0.8354812492616475,0.6872725100256503,0.4113433719612658,-0.4136556666344404,0.06205878499895334,-0.6577687817625701,0.6954920431599021,0.12347122514620423,0.20356787275522947,0.005740554071962833,0.99314532475546,-0.8368157097138464,0.1637161667458713,-0.8483296036720276,-0.03740884177386761,-0.6537305833771825,-0.5224690660834312,0.8298468245193362,0.7578896777704358,-0.3544369977898896,0.46270298631861806,0.668663858436048,0.02979721501469612,-0.9649981623515487,0.08195105940103531,-0.9522090698592365,0.5507571245543659,0.9303293209522963,-0.508976582903415,0.9482640610076487,0.8567235171794891,-0.0789712555706501,0.23888773005455732,0.29804360307753086,0.4471920123323798,-0.40542461443692446,0.4283872186206281,-0.48004836961627007,-0.5341775226406753,0.9240026003681123,-0.4835355132818222,-0.1398072810843587,0.7701448467560112,-0.8395010703243315,-0.9662932548671961,0.6552055766806006,-0.3894656030461192,-0.2763651516288519,-0.610414907336235,-0.3434690604917705,-0.909813323058188,0.9922648277133703,0.35206460766494274,-0.7496087946929038,-0.8926572781056166,-0.9566138233058155,0.43170301569625735,0.7727023656480014,0.5023137819953263,-0.768754132091999,0.7918610540218651,0.538822382222861,-0.5972666162997484,-0.33019880251958966,0.7520169871859252,-0.8485771510750055,-0.7084917360916734,-0.46827120054513216,0.8070474206469953,0.6405232693068683,0.40741097275167704,-0.42657533194869757,-0.8476348724216223,-0.8501896183006465,0.030676929280161858,0.7785698818042874,-0.6490133348852396,-0.1259741699323058,0.6013417956419289,-0.6943359188735485,0.3536606663838029,0.35019781719893217,0.9839818621985614,-0.5547598260454834,-0.8023526617325842,0.09757911134511232,-0.49771619588136673,0.29603966046124697,0.6718581612221897,0.03939798939973116,-0.9205584591254592,-0.017574448138475418,-0.8639507945626974,0.30803776253014803,-0.09985253121703863,-0.9174184403382242,-0.19058940932154655,0.5229440755210817,-0.9525601179338992,-0.9906669799238443,-0.6558470237068832,-0.8491620952263474,-0.291808754671365,-0.7367633548565209,0.9851873237639666,0.26602237205952406,0.30397922452539206,0.8984899995848536,-0.5700671314261854,0.15682951314374804,0.14463548734784126,-0.7709028506651521,-0.04823987418785691,0.9491417407989502,0.8709261622279882,-0.02506199013441801,0.41563861444592476,-0.554798043332994,0.20316211972385645,0.6889364244416356,-0.807692052796483,0.08490362763404846,-0.12213933747261763,-0.7305542603135109,-0.3500489196740091,-0.7899226834997535,-0.8288207915611565,0.41650132834911346,-0.11828845040872693,0.2678939667530358,-0.35475003393366933,0.7433344516903162,0.5144730340689421,0.12380536459386349,-0.39482007594779134,-0.9964176490902901,0.0044614942744374275,0.15626983297988772,-0.6119752312079072,-0.3689464246854186,0.9609633283689618,0.25548798171803355,-0.17458995524793863,0.12536328518763185,0.8719129972159863,-0.09367924882099032,-0.5902773253619671,0.6193421389907598,-0.2502847798168659,0.041368971578776836,-0.5478985332883894,0.3004304924979806,-0.3728454653173685,-0.6215474642813206,0.8878458132967353,-0.9561697775498033,-0.3859858065843582,-0.09445120254531503,-0.46815902506932616,-0.5329371388070285,-0.31706832349300385,0.05492651695385575,0.33560470025986433,-0.5558861219324172,-0.5918478281237185,0.8122720355167985,-0.06889439653605223,0.7635157722979784,-0.36514033330604434,0.048930148128420115,-0.927294188644737,-0.9023463595658541,0.009919317904859781,-0.23810921283438802,0.16670849500223994,-0.8882572073489428,-0.9363475027494133,0.9099866263568401,0.24584057414904237,-0.43472814466804266,0.5661467392928898,-0.7976149446330965,-0.3527243500575423,0.57965203281492,0.9854155061766505,0.5452056168578565,0.49725377513095737,0.6913488754071295,0.13600477436557412,0.492864775005728,-0.6019448293372989,0.3522671991959214,-0.6290794229134917,0.8154905340634286,-0.49259657319635153,0.6988636339083314,-0.47115967608988285,0.7073153210803866,0.3432741202414036,-0.3527727513574064,-0.9125520386733115,0.6443327437154949,-0.6787747838534415,-0.6238077362067997,0.42579546151682734,0.1145580904558301,0.8154967012815177,-0.09944923920556903,-0.16054018447175622,-0.19385034358128905,-0.7909864988178015,0.4601072445511818,-0.05242369184270501,-0.7626434643752873,0.06631655106320977,0.27027501817792654,-0.29341186163946986,0.7103989692404866,-0.47118912311270833,0.1599513809196651,0.049250006675720215,-0.0592201710678637,0.5089210802689195,0.5722520514391363,-0.6247727628797293,0.5652747107669711,-0.20172218093648553,0.031561730429530144,0.31226177839562297,0.07714763656258583,0.011800303589552641,0.8935997448861599,-0.06569649605080485,0.6615573451854289,-0.4435238088481128,0.1452982914634049,-0.2405008813366294,0.06261419039219618,-0.09797153668478131,0.5972151313908398,-0.674695685505867,-0.16189973847940564,0.758313296828419,-0.9755589831620455,0.1885587959550321,-0.20934049179777503,-0.18358194176107645,0.20729391369968653,0.11593722179532051,0.4600823549553752,-0.15580635936930776,-0.5189095609821379,-0.613705946598202,-0.8808273826725781,-0.3380982452072203,-0.7651834450662136,-0.8402335895225406,0.43246785551309586,0.2237776154652238,-0.2027343539521098,0.3599074105732143,0.13325720373541117,-0.9301952179521322,-0.5356142409145832,-0.5796606652438641,-0.23585157748311758,-0.9741956531070173,0.23208763357251883,-0.4195708786137402,-0.9207923738285899,0.7644979660399258,-0.40133041189983487,-0.4634485049173236,-0.7875784439966083,0.8958260542713106,-0.8782559400424361,0.3197807352989912,0.9983389382250607,-0.8497027140110731,0.8516155956313014,0.888369623105973,-0.12128783203661442,0.8325882242061198,-0.8460429054684937,-0.33639553701505065,-0.32966363430023193,0.018551322631537914,0.3528937855735421,0.6297022337093949,0.746632912196219,-0.8980846493504941,0.17538419365882874,0.9059372982010245,0.06468366086483002,0.4123683120124042,-0.1893363706767559,-0.1287711625918746,0.003038361668586731,-0.2421671492047608,-0.7696022754535079,0.7042031162418425,-0.22253743186593056,0.6099784411489964,0.4787521492689848,0.9469013218767941,-0.12763951998203993,-0.04735123738646507,0.15556087950244546,-0.6193915074691176,-0.6356009836308658,0.8206053040921688,0.33675109036266804,-0.34712885366752744,-0.3089100494980812,0.6382014565169811,-0.7015897021628916,0.3950173882767558,-0.4737236271612346,-0.0373345697298646,-0.4650847059674561,0.12151327542960644,0.8374508144333959,0.6294593452475965,0.8956520287320018,-0.6841673953458667,-0.5173006211407483,0.8820722438395023,0.5424375431612134,0.09238832769915462,0.49980733217671514,0.8479099501855671,0.24900191649794579,-0.1531941732391715,-0.973038918338716,-0.740589439868927,0.8377056834287941,-0.7173971491865814,-0.7928788936696947,0.9304884355515242,-0.7114663203246891,-0.6533953566104174,-0.6521637113764882,0.15244515147060156,0.23887999122962356,-0.46354176476597786,-0.843038426246494,-0.10283705731853843,-0.3688435726799071,-0.1554139913059771,0.3718420034274459,-0.7160542397759855,-0.42684974847361445,0.35311359679326415,-0.5399219365790486,0.14600612269714475,-0.2679638075642288,0.6887096646241844,0.29898914601653814,-0.21546601364389062,0.5915527604520321,-0.8549672118388116,-0.522786830086261,0.7744733323343098,0.5649745534174144,-0.10303345927968621,-0.1359289139509201,0.2567572556436062,-0.3213391457684338,0.5319041796028614,-0.2976294136606157,-0.39492898993194103,-0.9785894835367799,-0.45950564788654447,-0.14724581176415086,-0.6333563071675599,0.06491541443392634,0.4797738650813699,0.8363043437711895,-0.8509645774029195,-0.19298409204930067,-0.03933389252051711,-0.775710825342685,0.9158569280989468,-0.28222984867170453,-0.0969693842343986,-0.6351662795059383,0.994567334651947,-0.8880327357910573,-0.45653166715055704,0.6223244196735322,0.5221947887912393,0.1864438746124506,-0.5604917630553246,0.9321498931385577,0.28068283712491393,-0.5508144134655595,0.9235875713638961,0.40409576380625367,0.46959967678412795,-0.4649240355938673,-0.8962820875458419,-0.22635691985487938,0.4488494973629713,-0.18767046136781573,-0.24346888530999422,-0.9463775274343789,0.266269504558295,-0.2554736705496907,-0.14098030095919967,-0.33644153317436576,-0.21976044215261936,-0.46222586883232,0.8916660910472274,0.5558330318890512,0.9379615392535925,-0.14945397479459643,-0.26071318332105875,0.4194663856178522,0.23997476790100336,-0.6142734731547534,0.4000167651101947,-0.07919628545641899,0.5229669041000307,0.5558684282004833,0.4614943782798946,0.28183299861848354,0.46566486544907093,0.8555564163252711,0.9417362697422504,-0.012548245023936033,0.7458303654566407,0.0009188302792608738,0.724960173945874,0.2508247862569988,-0.7732237675227225,0.005113155581057072,-0.012131982017308474,-0.31761851301416755,-0.15218252688646317,0.8198748957365751,0.31273482041433454,-0.23079095780849457,-0.1003108094446361,0.4520853366702795,-0.8252994944341481,-0.5113820708356798,0.5549617088399827,-0.8707350413314998,-0.043180414009839296,-0.4614193672314286,0.3610849091783166,-0.9032031144015491,0.027728512417525053,-0.26189502654597163,-0.264146666508168,-0.5363964149728417,-0.891805921215564,0.3401748309843242,0.1696625337935984,-0.5047074123285711,-0.0850930716842413,-0.678213166538626,0.16599708376452327,-0.5422653462737799,0.6635342128574848,-0.10989432036876678,0.7176174628548324,0.5040559316985309,0.9997089481912553,-0.4077394329942763,-0.4283907641656697,0.6879778797738254,0.09028515266254544,0.6880121463909745,-0.7977412156760693,-0.31904384633526206,0.2679280019365251,0.34817064413800836,0.8281617225147784,0.4507827549241483,-0.7009824588894844,-0.5394831108860672,-0.7329293861985207,-0.1931434846483171,0.704516991507262,0.43287183390930295,-0.2504569897428155,0.40051777521148324,-0.49624105356633663,0.8220364954322577,0.46229247469455004,0.5789406760595739,0.7175513282418251,-0.475084719248116,-0.0010689403861761093,-0.04308013990521431,0.9053018279373646,-0.6062669353559613,-0.09677403653040528,0.6974552636966109,0.30800972087308764,0.29981246776878834,0.44732939964160323,0.42759124794974923,0.9882693695835769,-0.3306140284985304,-0.431634109467268,-0.6814632792957127,-0.4286119802854955,0.9780938336625695,0.04638540791347623,0.05034515028819442,0.657285566907376,-0.5422260328195989,-0.6736620864830911,-0.7097849259153008,0.6853405209258199,-0.17308506881818175,-0.3306878814473748,-0.37870284635573626,-0.20083016389980912,-0.2557859509252012,0.9706567591056228,-0.7587634124793112,0.9192027319222689,0.6958755985833704,0.1297556282952428,-0.329852313734591,0.13522291369736195,-0.20475364057347178,0.8482563672587276,0.877274485770613,-0.8135574064217508,0.3762086508795619,0.7858153162524104,-0.05004162807017565,0.5650559430941939,0.9510329831391573,0.4857442262582481,-0.04938205750659108,-0.7582143400795758,0.2321857069619,-0.7280736439861357,0.49465711833909154,-0.6390021713450551,-0.9540157499723136,0.8625048650428653,0.2499465811997652,0.14364084228873253,-0.3683711616322398,0.6053371177986264,-0.8812837558798492,-0.08843204146251082,0.9329748055897653,0.7454914869740605,-0.6360686677508056,-0.026351482141762972,0.570149751380086,0.5572488154284656,-0.5489458437077701,-0.22502139303833246,0.45191311789676547,0.6177565390244126,-0.47115072002634406,-0.06638685055077076,0.8426626599393785,0.5600399617105722,-0.4926023674197495,0.5811509205959737,-0.25158981094136834,-0.12660515448078513,-0.7077302704565227,0.09509566286578774,0.9350798977538943,-0.7850070833228528,-0.7713324478827417,0.4591751475818455,-0.047403786331415176,-0.8344589965417981,0.2297226437367499,-0.075000642798841,-0.3400925253517926,0.1211768165230751,-0.9210374732501805,-0.6934508318081498,0.14014282124117017,-0.21929208608344197,-0.39678300730884075,-0.8440363020636141,-0.8231581728905439,0.5560546480119228,0.23413378186523914,0.14726034831255674,0.5711738150566816,0.6941559817641973,0.2641814318485558,0.7258523181080818,0.38657813938334584,-0.4977279528975487,-0.4468899774365127,-0.8393585528247058,-0.08792119799181819,-0.20754871424287558,-0.31943949218839407,-0.7378988009877503,0.18598455423489213,0.5510350395925343,0.483379477635026,0.636496142949909,-0.6422029645182192,0.13446877943351865,0.5091529227793217,0.72745247092098,0.939041058998555,-0.6549599571153522,0.9104623962193727,0.6864684172905982,-0.7587385722436011,-0.12498374516144395,0.4303017151542008,0.823898836504668,-0.9227730752900243,0.7810542373917997,-0.5664252294227481,0.8689344879239798,-0.22980212606489658,0.3177971742115915,-0.9567928593605757,-0.07435963489115238,0.23390103550627828,0.10141673916950822,0.5928013087250292,-0.19145098607987165,0.45726089738309383,-0.5262523465789855,0.3122690306045115,0.6914940900169313,0.2106122486293316,-0.7589541603811085,0.4294011681340635,0.11605993984267116,-0.43020933400839567,0.5573059385642409,0.9707198538817465,0.23655808996409178,-0.7318671033717692,0.317366149276495,0.8760595074854791,0.17822775663807988,-0.2430601054802537,-0.9160943734459579,0.5173687757924199,-0.03289351100102067,0.940429856069386,0.9046730776317418,0.34115049708634615,0.896799084264785,0.18591690249741077,-0.9847760302945971,-0.2770104738883674,0.9876378211192787,-0.588276777882129,-0.7830695114098489,-0.30263192811980844,-0.6343107498250902,0.9640252375975251,-0.4837585133500397,0.7507701925933361,-0.02603342290967703,0.6543438113294542,-0.3227114952169359,0.834266394842416,-0.7495240308344364,-0.07607122138142586,0.20002300990745425,-0.7117513259872794,-0.027550726663321257,0.8769015842117369,-0.7556172423064709,0.5229708780534565,-0.6411459436640143,-0.2693402338773012,0.8207649118267,0.7154021915048361,0.4052152195945382,-0.27028321009129286,0.8031949461437762,-0.38403623970225453,-0.6392264300957322,-0.6326388036832213,-0.3958806870505214,0.09148815833032131,0.5222929609008133,0.8123164628632367,0.6050080806016922,0.6462596077471972,0.6466938727535307,0.5446882941760123,-0.8477655244059861,0.9786703581921756,0.7045019054785371,-0.7569335838779807,0.6609012628905475,0.09550128318369389,0.2588881249539554,0.8313054437749088,0.21403870824724436,-0.0062409210950136185,0.9912650268524885,-0.38529061805456877,-0.5825352277606726,-0.5178439253941178,-0.6552580818533897,0.9713697000406682,0.44289830746129155,0.931476375553757,0.49519617995247245,0.14965506456792355,0.835616837721318,0.259258815087378,0.5934875220991671,-0.9565021181479096,0.9524459983222187,0.8665553675964475,-0.09779668413102627,0.2703301506116986,0.6932925097644329,-0.630552816670388,0.5672266255132854,-0.23494841251522303,0.4713654387742281,-0.47399727860465646,0.124965560156852,-0.3206512201577425,0.4780879388563335,0.2096428289078176,-0.9801783710718155,-0.03149889316409826,0.7626007348299026,-0.13915844913572073,-0.9145923624746501,0.010115825571119785,0.27158627146854997,-0.20771357044577599,-0.4394549340941012,0.4963032971136272,-0.006673421245068312,0.22347804624587297,0.1737150177359581,-0.22460145177319646,-0.9487516954541206,0.16472228011116385,-0.5858770194463432,-0.7944542989134789,-0.6540732774883509,0.48998893052339554,0.1423511765897274,0.3946076729334891,-0.7572090849280357,0.02958328975364566,-0.9140873169526458,0.13903836673125625,0.6699292999692261,-0.8301328956149518,-0.731236391235143,-0.9243371351622045,-0.7419760106131434,0.37628989946097136,-0.8599012508057058,-0.3936200072057545,0.017562212888151407,-0.10447250260040164,0.4925689045339823,-0.3638817244209349,-0.564676561858505,-0.8550522457808256,0.0972044076770544,0.4731096248142421,0.11284422222524881,0.6853045145981014,0.7277887086383998,0.9253915324807167,0.7383216638118029,-0.6839277571998537,0.6562161087058485,-0.8567813062109053,-0.4093317058868706,0.12588392198085785,-0.9548619468696415,0.4725387957878411,0.12607372691854835,-0.10937539581209421,-0.583475177641958,-0.8222244088537991,-0.00020437315106391907,-0.9490168788470328,0.44406935619190335,0.19575230916962028,0.7458156854845583,-0.270795620046556,-0.0817467481829226,-0.12428252771496773,0.5199302644468844,-0.1878909468650818,0.5124518470838666,-0.01643028948456049,-0.4893723991699517,-0.7851074123755097,-0.8967497530393302,-0.24580443929880857,-0.6216976554132998,0.5109983356669545,-0.9386345581151545,-0.4172753067687154,0.05816010944545269,-0.5429124175570905,-0.9026949321851134,0.049553913064301014,0.7475473689846694,-0.4025752618908882,-0.9989297087304294,0.085671441629529,-0.9163306490518153,0.8492349395528436,0.6886179191060364,-0.03736182162538171,0.9209335618652403,0.9693728531710804,-0.9391665989533067,-0.7214363431558013,-0.7307766871526837,0.21357023995369673,-0.1493381168693304,0.42383051151409745,-0.04099731845781207,0.053933736868202686,0.19846341852098703,-0.6747920634225011,-0.07541185151785612,0.017298263031989336,0.7969631999731064,0.660533741582185,-0.8774805446155369,0.11981113068759441,-0.03926362656056881,0.6430532387457788,0.6873684115707874,-0.13809564523398876,0.8549319696612656,-0.737994805444032,0.8860625918023288,-0.09692358085885644,0.973423371091485,-0.824184259865433,-0.06659246794879436,-0.3230132949538529,0.623003130313009,0.9932102123275399,0.21157177444547415,-0.4840696263127029,-0.5458638863638043,-0.5444005494937301,-0.36616174736991525,-0.2880725711584091,0.9704199824482203,0.5581749193370342,-0.6789540867321193,0.4148459304124117,-0.393682602327317,0.5249134222976863,-0.2868480421602726,0.1341227781958878,-0.2656617588363588,-0.06384655926376581,0.33999771252274513,0.6360556473955512,-0.9871518556028605,-0.05132547067478299,0.34483513329178095,0.39286293648183346,0.8459816263057292,0.6575048100203276,-0.31248496752232313,0.21731592621654272,-0.5275352536700666,-0.2531801676377654,-0.6100583435036242,-0.20747780706733465,-0.7480210345238447,-0.6623530285432935,-0.5778077514842153,0.43635027715936303,-0.43381066527217627,0.8118928670883179,-0.018496875185519457,-0.1416173200123012,0.08262964989989996,-0.008765523787587881,0.23205187125131488,-0.1949112475849688,0.3225934775546193,0.9245107020251453,0.2793378420174122,0.41993440221995115,0.5910298004746437,-0.2501890524290502,0.8958484157919884,-0.08468586346134543,0.9880290008150041,-0.6671721274033189,0.8499451777897775,0.5710160061717033,0.9626296157948673,0.18915243539959192,0.36741356551647186,-0.23540544277057052,0.8738542348146439,0.3478218149393797,-0.06915736338123679,-0.9260436673648655,-0.551741898059845,0.8835900309495628,-0.0031388085335493088,-0.09610750153660774,0.8203963013365865,0.0999128739349544,-0.5623808186501265,-0.8968046559020877,-0.29207283770665526,0.5999872903339565,-0.4470519828610122,-0.2630783268250525,-0.8357355995103717,-0.018160161562263966,0.9839247153140604,0.8393550873734057,0.7323516132310033,-0.6585781071335077,0.7043900368735194,0.408599772490561,0.6511026946827769,0.2373534613288939,0.4798663607798517,-0.47516548447310925,0.441084829159081,0.7504957714118063,0.38875901559367776,0.4271924374625087,-0.9516287706792355,0.6691672257147729,0.044823724776506424,-0.021799351554363966,0.48416011361405253,-0.049008495174348354,0.5849696453660727,0.4104252178221941,0.9726337706670165,-0.8580542248673737,-0.7504951721057296,0.6746190888807178,0.22507108375430107,0.9531365623697639,0.8987525561824441,-0.9261186760850251,-0.7769884043373168,-0.011801861226558685,0.057990571949630976,-0.05272659519687295,0.7064976310357451,-0.48917672457173467,0.40491462824866176,-0.3788422248326242,-0.7537675318308175,-0.19952422240749002,0.9445408573374152,-0.9458882766775787,0.008222229778766632,-0.5746097918599844,0.7061511529609561,-0.8545418865978718,0.23622696241363883,-0.304065827280283,-0.043365053832530975,0.2229088065214455,0.10972287924960256,0.8709788476116955,0.11948111187666655,-0.9795019472949207,0.8912085276097059,0.7674904470331967,-0.5680896546691656,-0.5857074991799891,0.7094039497897029,0.7446793136186898,0.5405437867157161,0.8848533574491739,0.38021885324269533,-0.880771819036454,0.31173765007406473,0.058762301690876484,0.1654518311843276,-0.6415265859104693,0.4630720345303416,0.3448691968806088,-0.6314341849647462,0.13628544006496668,0.47039470821619034,-0.10197635879740119,0.19834886165335774,0.2100798338651657,0.8591427551582456,0.3341475925408304,-0.16009502345696092,0.7316460562869906,-0.5698725739493966,0.749838512390852,-0.5570185277611017,-0.5197008498944342,0.7106469157151878,-0.17586693307384849,0.2577279466204345,0.600556034129113,0.327096133492887,-0.2486137356609106,0.1365109123289585,-0.9289027317427099,0.5901512382552028,-0.32517575612291694,-0.27036016760393977,0.8153190677985549,0.6129219466820359,-0.07449378306046128,0.3848728323355317,0.4765283572487533,0.722697900608182,0.45066123409196734,-0.0484831053763628,0.6937949885614216,-0.35105503583326936,-0.5466944868676364,-0.3724941089749336,-0.728859156370163,0.7304894290864468,0.29390150448307395,0.6078371983021498,0.8711979049257934,-0.4162654601968825,0.9165464346297085,0.6978380079381168,0.7033161465078592,0.15507775312289596,-0.6156208063475788,-0.02376101678237319,0.11561632994562387,-0.49480857979506254,0.5290555814281106,-0.049982571974396706,0.532221089117229,0.15701221860945225,-0.9474867423996329,0.4727726406417787,-0.7880148156546056,-0.0441936650313437,-0.49104723101481795,0.8617675672285259,-0.7011786634102464,-0.8592995316721499,0.8704300103709102,-0.7388291587121785,0.06474827136844397,-0.30922097293660045,-0.09721337771043181,-0.47714166855439544,0.13693806808441877,0.6786664081737399,-0.7296080472879112,0.011588281486183405,-0.15832028863951564,-0.8977891225367785,-0.7163017662242055,0.8276949878782034,-0.027653435245156288,0.7399036544375122,0.1351741934195161,-0.8464488768950105,-0.358517958316952,0.04922952130436897,0.9341385937295854,0.013817427679896355,-0.8630653424188495,-0.9216011986136436,0.5856568464078009,-0.7981855664402246,-0.038699218071997166,-0.09590942459180951,0.944183565210551,-0.2906961622647941,0.5005642166361213,-0.3169137267395854,0.1598070259205997,0.6651147459633648,-0.5528370118699968,-0.8305224440991879,0.5499901748262346,-0.29461300233379006,-0.45786399813368917,0.8967940974980593,0.428086509462446,0.10374568356201053,-0.6957700257189572,0.39563170867040753,-0.018002400640398264,0.5147391119971871,-0.2599659292027354,0.9710425841622055,-0.24627337558194995,0.9913854151964188,0.7491098181344569,0.8001794740557671,0.3200072473846376,0.34524954902008176,-0.40055415453389287,0.5984238958917558,0.22743092477321625,-0.2000473914667964,-0.024207907263189554,0.4144529323093593,-0.7054900736548007,0.546856795437634,0.19110530009493232,-0.6973677799105644,0.4561827420257032,0.2965122093446553,0.15052664140239358,-0.3954566912725568,0.12804077891632915,0.22674527298659086,-0.32272174395620823,-0.18321853457018733,0.8857550248503685,-0.459907045122236,0.48449705354869366,-0.6436425428837538,-0.8234430551528931,-0.9455635976046324,0.5634308694861829,-0.40872482769191265,-0.18788988050073385,-0.08850266970694065,0.41012769844383,0.8375920201651752,0.5195892695337534,0.6594284665770829,-0.9939250983297825,-0.08339141961187124,-0.9856153544969857,0.4641360603272915,0.1617241557687521,-0.9866350069642067,-0.9924300336278975,0.5303030740469694,-0.9209370720200241,-0.984633422922343,-0.2380869658663869,0.09460265468806028,0.8779197689145803,0.9522587060928345,-0.7917222613468766,-0.8473840043880045,-0.5486582214944065,0.842119739856571,0.6252072900533676,-0.19612544029951096,0.0692141680046916,-0.5054325871169567,0.1918778228573501,-0.6754386173561215,0.7311116741038859,0.5351220644079149,0.7396108750253916,-0.30804351158440113,-0.11920296726748347,-0.6581707522273064,-0.8482731557451189,0.7104952656663954,0.8755672289989889,0.08206044882535934,-0.2980525982566178,-0.9290092219598591,0.11919297743588686,0.6290352917276323,-0.6853683642111719,-0.3485260922461748,-0.4607443264685571,0.6743898093700409,-0.7343394523486495,-0.3065224550664425,0.2132168016396463,0.30269754910841584,0.00726902624592185,-0.18149630399420857,-0.16887490404769778,-0.5536648090928793,-0.46034227358177304,0.11854056222364306,-0.17542026983574033,0.028549265582114458,0.17605540761724114,-0.22245446499437094,0.6792482156306505,-0.17402719566598535,0.031943902373313904,0.8175255125388503,-0.990666386205703,0.1428318996913731,-0.16478377534076571,0.8021885911002755,0.7780922171659768,-0.2677244832739234,-0.40183481061831117,0.8793043959885836,0.5119651374407113,0.32025800086557865,-0.10430292319506407,0.09433776559308171,0.44386559585109353,0.5821841424331069,0.5563745875842869,0.25500765489414334,0.9283937215805054,0.21486428892239928,0.8649783618748188,0.7271981933154166,-0.7268517734482884,0.6960750455036759,0.40081857750192285,0.6870908085256815,0.20821596821770072,-0.950439983047545,0.7283106120303273,0.9420521543361247,-0.3800055277533829,-0.8125122394412756,0.8436103775165975,-0.40372026758268476,0.3961899885907769,0.12501762947067618,0.19784353580325842,0.7179105654358864,-0.29753174632787704,-0.8881161171011627,-0.14459777157753706,-0.767729904036969,0.5434405999258161,0.44586300756782293,-0.6915018744766712,-0.5350287910550833,-0.4902230971492827,-0.6355761894956231,-0.1503992322832346,0.48629795806482434,0.6804633676074445,0.9794681831263006,0.0006905817426741123,0.24935206305235624,-0.9649109435267746,0.928872989024967,0.7302488996647298,0.9585161018185318,-0.7258636802434921,-0.9328828011639416,-0.027102882973849773,0.9310298026539385,-0.9628067212179303,-0.3897268767468631,0.202157708350569,-0.6968070617876947,-0.8484533452428877,-0.516355998814106,-0.21132435649633408,0.907781439833343,-0.1499428483657539,0.820315639488399,-0.9026460559107363,-0.07849253108724952,0.7987824096344411,-0.5700395544990897,0.20546394865959883,-0.17060135258361697,-0.9407526524737477,0.2554455427452922,0.8945994931273162,0.9999409494921565,-0.772717741318047,-0.3608777765184641,0.604477106127888,0.4192398600280285,0.004752214998006821,0.5996528137475252,0.30322416918352246,0.4006269867531955,-0.6324371388182044,0.7922653947025537,-0.6313597876578569,-0.21005095774307847,0.4732391284778714,-0.04915824951604009,-0.6882495167665184,0.32241725688800216,-0.9866827945224941,0.9361608736217022,0.6395550039596856,-0.9773466708138585,0.5793564300984144,-0.8013603747822344,0.9805702310986817,-0.39265077328309417,-0.9280039435252547,-0.40716644935309887,-0.5890050330199301,0.4814352272078395,0.6182239088229835,0.4009283473715186,0.289130425080657,0.44907847605645657,0.018493778072297573,-0.6070703552104533,-0.5726272906176746,-0.6119418810121715,-0.9118998521007597,-0.34698676550760865,0.14366727881133556,0.11241417238488793,-0.3174561085179448,0.8924948642961681,0.7347797905094922,-0.7931555430404842,0.3214248586446047,0.1487593874335289,0.17580711841583252,0.6963902683928609,-0.5601727021858096,0.5786023139953613,-0.06600526859983802,0.6690661897882819,0.8733079796656966,-0.7700632908381522,-0.2350066900253296,-0.18030599784106016,0.9384561413899064,0.2844353779219091,-0.8226145659573376,-0.17026914097368717,0.776849786285311,-0.29734630789607763,-0.18949556164443493,-0.07044028816744685,0.6440211604349315,-0.00947990221902728,-0.697309210896492,0.814244041685015,-0.4142251079902053,0.5099658137187362,0.2869542893022299,0.7379681905731559,0.4984467192552984,0.8792631854303181,0.9463113653473556,-0.4077809937298298,-0.1412067972123623,-0.7943736608140171,0.7866304847411811,-0.003040474373847246,-0.11820947518572211,-0.5081237321719527,-0.8383257607929409,0.4814083334058523,0.2836250667460263,0.27748933946713805,-0.5053444262593985,0.33184480573982,-0.33053865609690547,0.927861007861793,-0.9322631359100342,-0.4076815745793283,-0.9992821179330349,-0.832034959923476,-0.3439765269868076,0.6881099953316152,0.7714826138690114,-0.6944580227136612,0.4643128355965018,-0.6982605177909136,-0.2672747652977705,-0.09576026862487197,0.41493159905076027,0.8736301376484334,0.3326349672861397,-0.7084802431054413,-0.9121253425255418,0.7204905981197953,0.4633160992525518,-0.9203361286781728,0.5751274474896491,0.7017039670608938,-0.8864446496590972,-0.0994197758845985,0.3955744537524879,0.07813751744106412,-0.9161943546496332,-0.3068566061556339,0.6765664727427065,0.6236767778173089,-0.9249860378913581,-0.760401374194771,-0.007032428868114948,0.6796149672009051,-0.49815396033227444,0.76935003278777,-0.29906589444726706,-0.25730626145377755,-0.8026632531546056,0.06323867989704013,-0.30829791724681854,-0.9368219375610352,0.21335478965193033,0.17656484991312027,0.528672537766397,0.13202390260994434,0.23446587705984712,0.6059126411564648,-0.5707024154253304,0.23579300427809358,-0.22823177836835384,-0.23075119545683265,0.7114332327619195,-0.7090127356350422,0.6484676785767078,-0.9292202857322991,0.2861020532436669,-0.6982933576218784,0.681381649337709,0.10055358521640301,-0.8455258184112608,-0.3614911697804928,-0.576845517847687,0.8116315146908164,-0.13547617103904486,0.7348368167877197,-0.3011396345682442,-0.6377184269949794,0.34281262941658497,0.9263826524838805,-0.6613361542113125,-0.25322108808904886,-0.14246230898424983,-0.7817063885740936,-0.2628527991473675,-0.3903748639859259,-0.15473383711650968,-0.08360352087765932,-0.4567786790430546,-0.7268337570130825,-0.9579229401424527,0.33693004213273525,0.1472836695611477,-0.5109084639698267,-0.9408027734607458,0.5458361115306616,-0.6194381541572511,-0.49835178442299366,0.2921122214756906,-0.04640008509159088,0.42595796287059784,-0.9349720156751573,0.7867036084644496,-0.2724723117426038,0.03125336533412337,0.9455785825848579,0.8086635740473866,-0.5848272014409304,-0.6086335498839617,-0.9587362250313163,-0.29741412308067083,0.930866043549031,0.831616201903671,0.5472961105406284,0.5359854330308735,-0.31431722920387983,0.09890059102326632,-0.5714155919849873,0.36620299611240625,-0.9012159667909145,-0.639303277246654,-0.6566767212934792,0.8385360320098698,0.21811499446630478,-0.2946536079980433,0.3243181314319372,0.7826456665061414,-0.026939268223941326,0.07553689694032073,0.45132391387596726,0.6324904668144882,0.8365872097201645,0.4392971517518163,-0.35024934401735663,0.8381611644290388,0.2550274799577892,0.3463793317787349,-0.6569070680998266,0.40637334855273366,0.46454318426549435,0.3412137464620173,-0.32647412829101086,0.7884717378765345,0.5731717506423593,0.4028877215459943,0.6759831327944994,0.6003218293190002,-0.07159426249563694,-0.8687705709598958,0.9182426296174526,0.06342619098722935,0.791548406239599,0.8146818336099386,-0.2440574592910707,-0.38505351543426514,0.862673460971564,-0.685825944878161,0.38343311939388514,0.9417056581005454,-0.5924096056260169,-0.4603771665133536,0.19600131083279848,0.16758062317967415,-0.5924777719192207,-0.9380685309879482,0.17801745468750596,0.7726193107664585,0.1386766624636948,0.7326375627890229,-0.5831605116836727,-0.5385350375436246,0.2781514315865934,0.9996460252441466,0.24478329345583916,0.257112430408597,0.8815354518592358,-0.8807327328249812,-0.11298685427755117,-0.6609375034458935,-0.8654230716638267,-0.27806061459705234,-0.17231631791219115,-0.20744665572419763,-0.35827046958729625,-0.402752370107919,-0.05773840518668294,-0.5899583860300481,-0.7954395744018257,-0.6056436519138515,-0.050591524224728346,-0.9885659855790436,0.4247154090553522,0.08063070010393858,0.339235310908407,0.5136225568130612,0.13151607476174831,-0.6755504468455911,-0.9361358457244933,0.15821737982332706,0.4640851351432502,-0.38059676764532924,-0.6605868875049055,-0.5471945526078343,0.5547053962945938,0.014524228405207396,-0.2079357854090631,0.9092533863149583,0.23935526702553034,0.10602542478591204,-0.5505394707433879,-0.5143703422509134,0.47230158280581236,0.3434058642014861,0.9327980354428291,0.09966339310631156,0.05589312221854925,0.9873680961318314,-0.502870209980756,0.22323933709412813,0.39994704397395253,0.08691869350150228,0.7812860570847988,0.7515132348053157,0.04640381224453449,0.5195593601092696,0.600399618037045,0.16072266874834895,-0.5264663994312286,0.9320501801557839,0.43838087702170014,-0.2823166321031749,-0.34523643366992474,-0.1402688892558217,0.3259128937497735,0.15712051466107368,-0.6119345189072192,-0.32731981575489044,0.2622415595687926,0.8220927105285227,0.21622767904773355,0.49628743436187506,0.0744054988026619,-0.27656469168141484,-0.8616721504367888,0.5440332992002368,0.23870037822052836,0.6170241995714605,-0.16588354669511318,-0.6258205636404455,0.5835315836593509,0.16133579052984715,-0.6403171084821224,-0.9899085983633995,-0.1589329349808395,-0.1132350554689765,-0.8755450625903904,-0.029321756213903427,0.8087781183421612,-0.1747201420366764,-0.5639713732525706,0.48434545611962676,0.7771260305307806,0.5792395751923323,0.81805354449898,0.33573591988533735,0.21055643167346716,-0.46218241518363357,-0.441738607827574,0.01114137377589941,-0.8430785085074604,0.4637331049889326,0.30892790714278817,-0.6974109881557524,-0.8714051973074675,-0.2838746295310557,0.9101655464619398,0.8977799485437572,0.9763321015052497,-0.4138279869221151,-0.44665300473570824,-0.18911022320389748,-0.015657114796340466,-0.6267941761761904,-0.25920683750882745,0.9468719544820487,-0.38524946430698037,0.6041037440299988,0.12729899398982525,-0.5230293669737875,0.7024440541863441,-0.3855291581712663,0.18146480340510607,0.6324345245957375,0.3679777844808996,-0.41004103468731046,0.11813021078705788,0.942729058675468,0.28342607244849205,-0.3923383760266006,0.13067315518856049,-0.2597105600871146,-0.7852332256734371,-0.9715297934599221,-0.3791654547676444,-0.7732725385576487,0.003484918735921383,-0.591613681986928,-0.252188868355006,0.7719818060286343,-0.45356037514284253,0.967723707202822,-0.247320924885571,-0.8093462809920311,-0.4721044600009918,-0.2371351271867752,-0.617227541282773,0.5634764269925654,-0.7827482507564127,0.3130032541230321,-0.0421639122068882,0.9246549922972918,0.06661757314577699,0.33010115660727024,-0.34890200290828943,0.7252920265309513,-0.5772742596454918,-0.5455659683793783,0.1302555212751031,-0.10727218817919493,0.3118592565879226,-0.39547500386834145,-0.8313336707651615,0.3536859774030745,0.7620206931605935,0.7893133647739887,-0.2668798384256661,-0.18706768658012152,0.18796183308586478,-0.051442598924040794,0.16787507943809032,-0.6228917883709073,-0.5643822699785233,0.6389320977032185,0.725055874325335,0.6223504613153636,-0.9008538643829525,-0.10393365332856774,-0.5025409860536456,0.8441586797125638,-0.43008624063804746,-0.9641125984489918,-0.2936754315160215,-0.09807940665632486,0.22311291610822082,0.7142561068758368,-0.1646604468114674,0.6835853257216513,0.4538740487769246,-0.4130553142167628,-0.9437659666873515,-0.8984803147614002,0.7888025525026023,-0.43786009727045894,0.4512362778186798,0.4265266936272383,-0.6276710173115134,0.9261074061505497,-0.3998656230978668,-0.7449295520782471,-0.2586432881653309,0.8993835039436817,-0.8815805469639599,0.2668911861255765,0.9820685600861907,0.1778103020042181,-0.3754232651554048,-0.32824433501809835,-0.10263352748006582,-0.3263884340412915,-0.3959068665280938,-0.5000866870395839,-0.610530860722065,-0.5320305759087205,-0.8238112395629287,-0.2747286153025925,-0.7654691548086703,0.9563128617592156,0.8620157898403704,0.9570910930633545,0.16047012386843562,-0.1409919485449791,-0.9705430143512785,-0.39569864235818386,-0.6215747878886759,0.48232157342135906,0.8437553928233683,0.7342212428338826,-0.19715829426422715,-0.9530270718969405,-0.9065910144709051,0.8329742937348783,0.5494794938713312,0.09476770926266909,-0.42001884849742055,0.06936666741967201,-0.7324379719793797,-0.012054866179823875,-0.6104314532130957,-0.06505512818694115,0.9239340079948306,-0.1887266719713807,-0.5619851476512849,0.3711021365597844,-0.7400776711292565,-0.5590746640227735,0.97864332748577,0.19330699974671006,-0.7248113523237407,-0.2802185728214681,-0.9319176189601421,-0.46057429537177086,0.15842156019061804,-0.2916040080599487,-0.9163512350060046,0.09581299778074026,-0.49608506029471755,-0.4676016024313867,-0.900510330684483,-0.8151905257254839,0.1710336678661406,0.2572048087604344,-0.02579984301701188,0.6243758597411215,0.3050195504911244,-0.7293310668319464,-0.17634945316240191,0.25045729894191027,-0.9729304946959019,0.21720385691151023,-0.827941435854882,-0.9110929928719997,0.5861309138126671,0.38542696088552475,0.09282883536070585,-0.962808268610388,-0.7063661669380963,-0.6511759972199798,-0.8878846629522741,0.6074805129319429,0.023510335478931665,0.8238988728262484,-0.27295511262491345,0.7812074311077595,0.22205325216054916,0.8773893476463854,0.8807077971287072,-0.4333179504610598,0.8141184379346669,-0.4534938046708703,-0.83558405097574,0.309952809009701,-0.9007445061579347,-0.7648866744711995,-0.40150179993361235,0.8817310277372599,0.03994154371321201,-0.4589409348554909,0.026864930987358093,0.7404043567366898,0.8098341566510499,0.6904952130280435,0.9018198708072305,-0.8226320534013212,0.31192549923434854,-0.28396996250376105,0.6554779820144176,0.38570725452154875,0.2734463564120233,0.005934362765401602,-0.17416972247883677,-0.7922351118177176,0.6000518230721354,0.572083386592567,-0.6360397050157189,0.631976708304137,-0.4374239584431052,0.338372559286654,-0.02933248272165656,-0.3212619489058852,0.6921665500849485,-0.9817259856499732,-0.8393406118266284,-0.9988438631407917,-0.35991146927699447,0.6874379855580628,0.2348536867648363,-0.3384222211316228,0.6196932620368898,-0.1674615778028965,0.04739692574366927,0.4373632022179663,-0.801709605846554,0.08455419959500432,0.7198677286505699,0.6543580377474427,-0.3486365471035242,-0.45235300809144974,0.13227126747369766,0.414310987573117,-0.686783158686012,0.7766670663841069,0.9673349601216614,0.9313280023634434,0.48416804522275925,0.0005197394639253616,-0.05064701195806265,0.01810249499976635,0.3159951698035002,0.7567330310121179,-0.45162619231268764,0.6663266215473413,0.5456146271899343,-0.1917200805619359,0.8320442517288029,-0.1384402997791767,0.016789447516202927,0.593976735137403,0.7488097986206412,0.37589578656479716,-0.23149304604157805,-0.4144465969875455,0.5831317231059074,0.5063307201489806,0.5233063502237201,-0.7792157754302025,-0.5737679558806121,-0.25143184419721365,0.0510002551600337,0.6952478289604187,0.4486050638370216,-0.7622448522597551,0.7571905758231878,0.7411418468691409,-0.42129561910405755,0.3603393300436437,0.4308214485645294,-0.6990935173816979,0.814454223960638,-0.8733745831996202,0.2559612565673888,0.44676161790266633,-0.15288423048332334,0.27718458604067564,-0.27210707077756524,-0.9170556366443634,0.6607386036776006,0.3500987575389445,0.9538128483109176,0.9653036831878126,0.4443775126710534,0.04854150069877505,-0.5654235114343464,0.21341719524934888,0.14276294317096472,0.7868264298886061,0.6258079381659627,-0.10987817030400038,-0.7217549360357225,-0.293683594558388,0.9483898039907217,-0.6704232222400606,-0.5245936443097889,-0.914003845769912,0.6151961521245539,-0.1830245121382177,-0.08350196154788136,0.6200722409412265,-0.7771273758262396,0.6073835985735059,-0.7203905405476689,0.17578949080780149,-0.06684529641643167,0.9142271890304983,-0.12994529120624065,-0.7979552657343447,0.08350526727735996,-0.25609030574560165,0.33025682251900434,0.31799330888316035,-0.4679309413768351,0.4202521126717329,-0.5718314447440207,0.048273660242557526,0.23724079923704267,0.29964195005595684,-0.9612220297567546,0.6753086433745921,-0.19853930128738284,-0.07932875351980329,0.019280530512332916,0.38939137011766434,-0.9299690192565322,-0.9624372916296124,0.5033786562271416,0.30421825125813484,0.5795442298986018,0.2573952036909759,0.43543073581531644,0.7583589823916554,0.1788916508667171,0.625518870074302,-0.6564002893865108,0.08814887702465057,-0.9190142322331667,0.3982394961640239,0.7516820942983031,-0.8033554665744305,-0.7100097713992,0.1461921138688922,0.22473469516262412,0.8333328240551054,-0.7435997719876468,-0.440002397634089,-0.6439272300340235,-0.8323777937330306,-0.5753976879641414,0.6630167355760932,-0.3978667827323079,0.6302516772411764,0.7829578346572816,0.3748791990801692,-0.8073660023510456,0.10038021253421903,0.9580092472024262,-0.3278786763548851,-0.2266288660466671,0.10047102300450206,-0.009388189762830734,-0.2031529094092548,0.5930870049633086,-0.3057777318172157,-0.9506606766954064,-0.14075047196820378,-0.6768208551220596,0.102859309874475,-0.6203734637238085,0.5579999024048448,0.1083763218484819,-0.937938068062067,0.960200569126755,0.1259686821140349,-0.9995429120026529,0.00763130746781826,-0.2854198315180838,-0.13281074026599526,0.051474341191351414,-0.5733394543640316,0.4335331320762634,-0.391585947945714,-0.2998500852845609,-0.3736424734815955,0.8463570731692016,-0.22367930505424738,-0.15180643321946263,0.46184543753042817,0.6545630563050508,-0.5231273584067822,0.8654556721448898,-0.8198519209399819,-0.8925267336890101,-0.7880546865053475,0.5727295908145607,0.789245926309377,-0.8100726404227316,-0.7813287801109254,-0.006020873785018921,0.4064401304349303,0.23680485179647803,-0.6010304242372513,0.6770108658820391,0.8550132992677391,0.0460841772146523,-0.7023860397748649,-0.29698818223550916,-0.10720865055918694,-0.6296292948536575,0.5663523199036717,-0.8682861328125,0.39122782833874226,-0.6900612190365791,-0.019274810794740915,0.6757298777811229,-0.556572784204036,0.7659872118383646,-0.22358770947903395,-0.19725970504805446,-0.595364632550627,-0.4789202609099448,0.4064310402609408,-0.5228491309098899,0.7048325478099287,0.5942011880688369,-0.8966397354379296,0.41857644636183977,0.553982581011951,0.9961556186899543,0.5967414388433099,-0.24125368287786841,-0.5594869838096201,0.6644116421230137,0.9631299609318376,0.5493024475872517,0.760997774079442,0.7823914145119488,0.9919684464111924,-0.7544271508231759,-0.2534949737600982,0.25805402267724276,0.2693109745159745,0.6083420743234456,-0.1640241271816194,-0.11030910909175873,-0.2819638419896364,0.15724798664450645,-0.7022646437399089,0.36395280435681343,0.38166863564401865,-0.5300982831977308,0.5220492207445204,0.2945851404219866,0.6034276811406016,-0.20375692192465067,0.9868180323392153,-0.8123296196572483,-0.05847236001864076,0.7800135812722147,-0.6820843587629497,0.5274651413783431,0.5370282037183642,0.9398957518860698,0.881054051220417,-0.37122759595513344,-0.9147196859121323,-0.860002463683486,0.065245246514678,-0.7203603801317513,0.47356083942577243,-0.7868905481882393,-0.4989832043647766,-0.8174155801534653,0.471980816219002,-0.806093922816217,-0.6971604186110198,-0.9675396387465298,0.7459152238443494,0.7860260200686753,-0.45937715098261833,-0.5790236392058432,-0.07514298195019364,-0.7067928002215922,-0.04861818067729473,-0.9764187666587532,0.6767551549710333,-0.480756223667413,-0.8481302373111248,-0.35823096707463264,-0.42722351429983974,0.5427000522613525,-0.23613792518153787,0.917064196895808,-0.7347954451106489,0.4651882080361247,-0.9571765381842852,-0.013975945767015219,-0.47709947684779763,0.4050115719437599,-0.21765294019132853,-0.8878808408044279,0.3540665269829333,0.7974383756518364,0.9995684521272779,0.8824426494538784,0.7319494476541877,-0.6546792276203632,0.7027460145764053,0.06456986954435706,-0.8091272641904652,-0.5811975481919944,0.04067699471488595,-0.5529016801156104,0.04900554986670613,0.4870561212301254,0.1837832066230476,-0.8553599710576236,-0.49572750460356474,0.7856636717915535,0.12043455662205815,-0.18539180886000395,-0.9244829560630023,-0.4444444957189262,0.18273306917399168,0.12336395168676972,-0.39697852497920394,-0.9335795845836401,-0.7196512394584715,0.02971931966021657,-0.8027552803978324,-0.7923268596641719,-0.6857844083569944,-0.3840173943899572,0.4386391332373023,0.9444050886668265,-0.5591952581889927,-0.6441558436490595,0.09561950992792845,0.9909253693185747,-0.06191955367103219,0.3697175607085228,-0.2996090347878635,0.3344236398115754,0.40812384663149714,0.12557766307145357,-0.6330471183173358,-0.5960661815479398,-0.82797576719895,-0.6346018542535603,0.5759387635625899,-0.3728849454782903,-0.6873458703048527,-0.14466879796236753,-0.3834157413803041,-0.9385756892152131,-0.792298604734242,-0.727575630415231,0.3786710216663778,0.5219471515156329,-0.3463009539991617,0.22660263162106276,-0.10423588939011097,-0.4100765925832093,-0.0065857237204909325,-0.7424528934061527,-0.2230314463376999,-0.7101357458159328,0.6430212557315826,0.6193399345502257,-0.1304770982824266,-0.3463561087846756,0.8770189387723804,0.8089597397483885,0.44146415404975414,0.9939045496284962,0.6781994877383113,-0.7126626390963793,-0.7804117822088301,0.2685932037420571,-0.23092254530638456,0.04326371802017093,-0.8184182080440223,-0.6839851876720786,-0.10153376031666994,0.5712209204211831,-0.947957606986165,-0.8772299317643046,0.2170788305811584,0.05500587075948715,-0.47343388060107827,0.15884914016351104,0.33595405984669924,-0.7123595299199224,0.18583281012251973,0.5423484514467418,0.99245287431404,-0.3139483225531876,0.8157400395721197,-0.15968672605231404,0.8631259328685701,-0.488713679369539,0.6491532218642533,-0.7188096698373556,-0.17234282288700342,0.6352461301721632,0.10350165562704206,-0.21307784831151366,0.5358080943115056,0.3109562234021723,0.3970908774062991,0.7910240022465587,0.6548731359653175,-0.2618683543987572,-0.3298727301880717,0.6419476950541139,-0.9348870357498527,0.3687031716108322,-0.3988401419483125,-0.35742864198982716,-0.31123387813568115,0.33149919798597693,-0.6519793751649559,-0.08199030952528119,-0.8880248931236565,0.6936053265817463,-0.9976129317656159,0.7859254605136812,0.7419761191122234,0.3163616540841758,0.2566243251785636,-0.9034991152584553,-0.11794492602348328,0.7117827660404146,-0.4862025622278452,0.21185498731210828,-0.18694742862135172,-0.004305209964513779,0.8639676086604595,0.718482134398073,0.4914087550714612,0.6460688025690615,-0.7742960364557803,-0.06174530182033777,0.5360470027662814,-0.3222193573601544,-0.5405375859700143,0.507422792725265,0.03466277848929167,-0.8725085533224046,0.022529504261910915,0.16251930687576532,-0.5364466621540487,0.39387542102485895,-0.7545502353459597,0.4625200191512704,0.34995932737365365,0.8820016141980886,-0.584014275111258,-0.8598650330677629,-0.4900535554625094,0.04625518945977092,-0.40455288207158446,-0.5270702494308352,-0.013444047421216965,-0.46630580350756645,-0.6161477011628449,-0.6115533425472677,0.7349961656145751,0.6969074215739965,0.8424847619608045,0.22045003809034824,0.2725524278357625,-0.39001958118751645,0.12614100705832243,0.47129110153764486,0.2646811818704009,0.4987002396956086,0.28366374550387263,-0.4994881870225072,-0.19619285268709064,-0.07460718415677547,-0.7361432472243905,-0.8018485987558961,0.5594028043560684,0.9170544147491455,0.8357789134606719,0.599025750067085,-0.534698745701462,0.8935971255414188,0.4975608615204692,-0.7490723584778607,-0.13004674948751926,0.19977340940386057,0.40686542075127363,0.4346603783778846,0.026948903687298298,-0.3185825888067484,0.17557518649846315,0.7976894890889525,-0.878561261575669,0.2943367902189493,0.4942323425784707,0.5415381914936006,0.6316968086175621,-0.44505874579772353,-0.24696724209934473,-0.48498580092564225,-0.9169049607589841,-0.23048258665949106,0.7237386163324118,0.01308160787448287,0.8242496061138809,0.39629510743543506,0.6556475665420294,-0.43566363910213113,0.8160525630228221,-0.16325400117784739,0.7083810335025191,0.11724818218499422,0.46486543910577893,0.8739490183070302,0.6929094651713967,-0.2364006917923689,0.6640970073640347,0.8599492637440562,-0.1844967808574438,0.61661765165627,-0.6164677981287241,-0.9722885508090258,-0.3297568988054991,0.47503448044881225,-0.200402757152915,-0.07391917472705245,-0.7322548134252429,0.9932540650479496,0.45649962592869997,0.7726904363371432,0.6588193848729134,0.5480248560197651,-0.4066743152216077,0.17705011600628495,0.4657471226528287,-0.26073678955435753,0.5843655029311776,-0.29384618857875466,-0.8993282550945878,-0.39311969093978405,0.04517426388338208,0.13376779481768608,-0.9143165866844356,0.4408777435310185,0.9114899830892682,0.16808813344687223,0.19218999473378062,-0.2709426172077656,-0.2960641533136368,0.27218639198690653,0.9875285900197923,0.24667815119028091,-0.8402903988026083,-0.028002644889056683,-0.4144299519248307,-0.6615339177660644,-0.3934726184234023,0.7247530370950699,-0.11154381511732936,-0.9001834159716964,-0.4124119644984603,-0.9219622486270964,-0.6705393325537443,0.6147350557148457,0.013469406869262457,-0.6007851297035813,0.3000900964252651,-0.8152562407776713,0.39185609156265855,-0.2296211002394557,-0.27537125116214156,-0.2456707702949643,0.27235039649531245,0.04357348661869764,-0.987263428978622,-0.4695680043660104,-0.3404009169898927,0.6458075647242367,-0.2892883885651827,-0.5685479147359729,-0.5026250900700688,0.18521027360111475,-0.7409929386340082,-0.6065216711722314,0.6290691755712032,-0.5775723629631102,0.5149986715987325,-0.23937836941331625,-0.21252198237925768,0.7625306593254209,0.48517709504812956,0.48803470004349947,0.13433247432112694,-0.07191986683756113,-0.9614452496170998,0.23640277748927474,0.5018558204174042,-0.32341129891574383,-0.2418339983560145,0.5687522254884243,0.10207091178745031,-0.7145445430651307,-0.6499970015138388,-0.6185090923681855,0.6657425318844616,0.8418901604600251,-0.4476058539003134,-0.5100309918634593,0.7076246519573033,-0.5299179791472852,-0.37131983740255237,0.8854068797081709,-0.37124866573140025,-0.12534932233393192,0.4896001568995416,0.6205524946562946,-0.9710505539551377,0.5813762391917408,0.8618013225495815,-0.2682406082749367,-0.03517251368612051,0.32971463399007916,0.5402073287405074,0.5922457692213356,-0.6358163841068745,-0.8069814206101,-0.664102153852582,0.23759921547025442,-0.9442086489871144,-0.06394564034417272,0.7389795784838498,-0.23407770646736026,-0.519413320813328,-0.3535138526931405,-0.4933707248419523,0.33111862232908607,0.9818246304057539,0.3647172851487994,-0.05788886919617653,-0.4419382568448782,-0.2728402013890445,-0.8404596820473671,-0.7106791357509792,0.31438953150063753,0.6450787587091327,0.847645053640008,0.4437208054587245,-0.7698903502896428,-0.5501947542652488,0.9062821888364851,0.611190122552216,-0.9852228472009301,-0.8206309024244547,-0.0823476449586451,-0.988740109372884,-0.9902531248517334,0.1208433979190886,-0.0611650156788528,0.9806533735245466,-0.5168568957597017,-0.41211195942014456,-0.9441892728209496,0.808878758456558,0.48886897414922714,-0.5228060549125075,0.7276854370720685,0.5862376778386533,0.11616327054798603,0.5925607401877642,0.7791914707049727,-0.49216637294739485,-0.9390934179536998,0.7025626632384956,0.26280875876545906,-0.38097643153741956,-0.07627961784601212,0.5406341371126473,0.7055285261012614,0.5187650453299284,0.05948801152408123,0.3168685077689588,0.8793846322223544,-0.4757384438998997,-0.9582827617414296,-0.8855420085601509,0.7028789068572223,0.9028427237644792,-0.8029849082231522,0.4727180455811322,-0.9478135253302753,-0.3224169770255685,0.9259123452939093,-0.5765403755940497,0.8537380467168987,-0.7179772118106484,0.3151364834047854,-0.11701126303523779,-0.6344401119276881,0.7211042707785964,0.636655465234071,0.6330990954302251,0.0368698975071311,-0.4324416150338948,-0.035165623761713505,0.6693876073695719,0.5764896981418133,0.6783884796313941,0.9273763583041728,-0.5718095717020333,-0.4636274082586169,0.47497965348884463,-0.964463853277266,0.7944341753609478,0.6047076475806534,-0.9099967023357749,-0.821353554725647,-0.1395005756057799,-0.6746218749321997,-0.5788648892194033,0.28169175144284964,0.6700045550242066,-0.8893079683184624,0.8619588622823358,-0.5844118497334421,-0.22983510186895728,0.08422255655750632,-0.9048453154973686,-0.08161664428189397,0.6378523679450154,0.5593029456213117,-0.6349732587113976,0.9507978642359376,-0.09700846578925848,-0.8500033901073039,-0.3494060239754617,-0.09526005107909441,-0.8244089507497847,0.7415471603162587,0.4169339817017317,0.8445807569660246,-0.5070039466954768,0.2270707986317575,0.018884276039898396,-0.1339924456551671,0.5579077242873609,-0.41668150341138244,-0.07479802798479795,-0.740790301002562,-0.122891531791538,-0.764211839530617,0.031109652016311884,0.3955376916565001,-0.5864669061265886,-0.004379460122436285,-0.10706138890236616,0.7462175469845533,-0.526341610122472,0.5653693759813905,0.9210488805547357,0.24343800358474255,-0.9699650867842138,-0.7247850340791047,0.7158975224010646,-0.25292311049997807,-0.8866674578748643,0.841893213801086,-0.45739317452535033,0.15732926689088345,-0.5745937717147171,0.28857933171093464,-0.41780300019308925,0.8477162444032729,-0.8672393937595189,0.9386307215318084,0.3381032063625753,0.8599519249983132,0.33736787270754576,0.2892454918473959,-0.8524886500090361,-0.7883474151603878,-0.24787556193768978,-0.6613141209818423,-0.3626158069819212,-0.01938292197883129,-0.18223785981535912,0.31839314522221684,0.8288818444125354,-0.7829098654910922,-0.44702847860753536,-0.7050968343392015,0.42402319936081767,-0.4037320837378502,0.97991116438061,0.9304888509213924,-0.8637980902567506,-0.143532938323915,-0.2835912383161485,0.8609953098930418,-0.8284407900646329,-0.4594713062979281,0.35405744751915336,0.2447542604058981,-0.368696132209152,0.17452781833708286,-0.7787558459676802,0.20732127595692873,0.29287862591445446,-0.9410803648643196,0.4829252837225795,-0.6348768789321184,-0.3591050966642797,0.4964208956807852,-0.6105875447392464,-0.7325363499112427,0.5871727950870991,0.5392651939764619,-0.558905933983624,0.4858252890408039,0.402386418543756,0.96846624603495,-0.036129857413470745,0.7011329946108162,-0.34747856482863426,-0.9299800139851868,0.8643136215396225,0.07550747133791447,0.3513092314824462,-0.35473701916635036,-0.052620182279497385,-0.366425234824419,-0.7481755702756345,0.9045359324663877,0.01679822988808155,-0.8447583760134876,0.6213266029953957,-0.3596311891451478,-0.4915286861360073,-0.03224604530259967,0.8112675957381725,-0.11784072639420629,0.5486422274261713,-0.22407850483432412,-0.5214201188646257,0.5158693976700306,0.4988217996433377,0.7523189759813249,-0.1549712591804564,0.5395000064745545,-0.7714142706245184,0.31143016926944256,0.8596763196401298,-0.5265168366022408,0.33512912644073367,0.35842640418559313,-0.5782983214594424,-0.3591811200603843,0.5216183639131486,0.4283733703196049,-0.45069051487371325,0.033142376225441694,-0.9811206618323922,0.6569758309051394,-0.14850797457620502,0.7282477929256856,0.44767741207033396,0.11433172458782792,0.8178678266704082,-0.4989235023967922,-0.32001894200220704,-0.9668876179493964,0.6572998352348804,0.8479196219705045,0.07415267080068588,-0.8581451391801238,-0.9635951709933579,0.44557131780311465,0.6823324663564563,0.5013202130794525,-0.6917695761658251,0.7037554574199021,-0.4068054840900004,-0.4835714688524604,-0.848995964974165,-0.007818347308784723,0.6324110231362283,-0.1002051280811429,-0.7401957153342664,-0.2105921460315585,-0.7001835145056248,-0.5759264850057662,-0.03888952825218439,-0.11930780578404665,-0.9224942387081683,0.21704339515417814,0.1686992826871574,-0.9740790566429496,0.28925978066399693,0.32686331775039434,-0.2005788735114038,0.023527309764176607,-0.6325730066746473,0.07133493851870298,0.7982455319724977,0.9427337842062116,0.8267854936420918,-0.679292619228363,-0.24820541171357036,0.6490886267274618,0.9392261747270823,-0.9904051520861685,-0.961109974887222,-0.7383094099350274,0.2959103584289551,0.16868534917011857,0.17721014190465212,0.5851217987947166,0.8428353616036475,0.4997576321475208,-0.13669607415795326,0.6121896510012448,-0.050604060757905245,-0.8391962717287242,-0.3478822698816657,-0.5687979832291603,-0.6601845249533653,0.8961495393887162,-0.6743922671303153,0.15595880569890141,-0.561548063531518,-0.3492484139278531,0.23180493665859103,-0.8701720768585801,-0.8367619714699686,0.20560049265623093,-0.8850012361072004,0.6965615530498326,0.06690029101446271,-0.25219400553032756,0.5553209530189633,0.6647523981519043,0.3973109074868262,0.1745272809639573,0.05249471915885806,0.4488015156239271,0.23574451729655266,0.0684436452575028,0.7583144116215408,-0.9028747798874974,-0.35714065097272396,0.023900236934423447,0.7693289569579065,-0.8995315586216748,0.16918508429080248,-0.4487898275256157,0.634734972845763,0.5889486069791019,-0.2663758541457355,0.2638636198826134,-0.9086514771915972,0.09324999479576945,-0.010471002198755741,-0.536405639257282,-0.33978745993226767,-0.31444538524374366,0.3361312788911164,0.09646045556291938,-0.39041683124378324,-0.01599603658542037,-0.84168034279719,-0.031004210002720356,-0.3744747946038842,-0.16790592344477773,0.07785319583490491,0.021451979409903288,0.007751355413347483,-0.06489102449268103,-0.9758501667529345,-0.7450311556458473,-0.13444058457389474,0.004424874670803547,0.22004060447216034,-0.7662688777782023,0.40629116725176573,-0.2603084063157439,0.1558276261202991,-0.7450003535486758,-0.9567795610055327,0.1099968901835382,0.5582788810133934,-0.5967515683732927,0.92004279140383,-0.7594178854487836,0.19367523537948728,-0.11549655068665743,0.20106635242700577,0.2166261337697506,-0.9608507864177227,-0.425491645000875,-0.9506780076771975,0.7643814631737769,-0.483627500012517,-0.023134835995733738,-0.06463450565934181,0.3395577142946422,0.9963325229473412,0.45080718444660306,-0.5471784905530512,-0.7870077784173191,0.8700489453040063,0.7313146581873298,-0.6681445492431521,-0.7104490678757429,0.8091274132020772,-0.18471209425479174,-0.1477041612379253,-0.5261365105397999,0.2032792759127915,-0.8665789938531816,0.8796630338765681,0.39799826545640826,0.1092935549095273,-0.47170704370364547,-0.28244388848543167,0.9102529576048255,0.5438576368615031,-0.483044748660177,0.7357593360356987,0.49775767512619495,-0.9287502625957131,0.8164120237343013,0.7670979225076735,-0.6486864658072591,0.7975813164375722,0.8420706689357758,0.8384565841406584,-0.9821688178926706,0.7396916951984167,-0.8549103708937764,0.8099633799865842,-0.7221365598961711,-0.9323858241550624,0.5797422449104488,-0.11008777050301433,0.6454542423598468,0.6550004589371383,-0.6303422134369612,0.3487806119956076,-0.7944620130583644,0.07953347219154239,0.09518441231921315,0.8332036719657481,0.31934342393651605,0.37150781275704503,-0.5824879072606564,-0.6827215664088726,-0.9109283653087914,-0.33413610188290477,-0.4805061426013708,0.21967379935085773,-0.5943655166774988,0.9525070823729038,0.07260441826656461,0.6080888765864074,-0.4641067963093519,0.7541275899857283,-0.31673114746809006,0.32051333179697394,-0.043290062341839075,-0.7038246663287282,-0.34380037151277065,0.6830129353329539,-0.8185046799480915,0.7242273967713118,-0.15434144949540496,0.1407696222886443,0.23203603643923998,-0.4382455591112375,-0.3056510491296649,0.7141063725575805,0.86879748897627,0.8941524545662105,0.2921757777221501,-0.352544117718935,-0.7938626641407609,-0.3759623169898987,0.9485331694595516,-0.9718638057820499,0.9618020560592413,-0.26816326240077615,-0.46667532669380307,0.35115328850224614,-0.748418444301933,-0.32233780436217785,0.3606128743849695,0.19260062789544463,-0.24205918656662107,-0.36762615153566003,0.4211602434515953,-0.32988779386505485,0.42704748502001166,-0.6033057807944715,0.5790013112127781,-0.960957195609808,-0.2354217995889485,0.45928065618500113,0.29531511664390564,0.9149744999594986,0.07820604834705591,-0.3712914725765586,-0.28747644228860736,-0.9419490504078567,0.24972308753058314,0.2617829996161163,0.7653858037665486,0.6735494998283684,0.988541713450104,-0.18269363837316632,-0.5885853921063244,0.5136852166615427,-0.7117742276750505,0.27158791571855545,-0.31358155282214284,-0.9630629867315292,0.6092938650399446,-0.1087261252105236,0.0644866363145411,0.09659364214166999,-0.7422288935631514,0.003516316879540682,0.07812078762799501,-0.07310817064717412,0.13101478992030025,-0.2968077240511775,-0.8055755654349923,0.8987722573801875,-0.0019211731851100922,-0.8663686588406563,-0.23236903687939048,0.6130662229843438,-0.16704708989709616,-0.5912726516835392,0.18122660228982568,0.45214160112664104,-0.6433384949341416,-0.5840763677842915,-0.8629324766807258,0.23838374530896544,0.8931607725098729,-0.44641640316694975,0.12080050073564053,-0.19142542965710163,-0.5155506622977555,-0.05181212490424514,0.09794961474835873,0.5427498328499496,-0.11399652576074004,0.0517980232834816,-0.7326134582981467,-0.5664772465825081,-0.7289984794333577,0.11178202787414193,-0.8482810501009226,-0.7977394480258226,-0.02913532266393304,-0.2558948234654963,0.6706746709533036,-0.2762143248692155,-0.4128135070204735,0.8967942362651229,0.9596660658717155,0.12160824332386255,0.0026448112912476063,0.479323701467365,0.3425911581143737,0.01974157616496086,-0.40339938504621387,-0.09624475659802556,0.3172900970093906,-0.8263852950185537,-0.3544789282605052,0.7093634656630456,-0.4288567826151848,-0.508581496309489,0.9660632852464914,0.31688937172293663,0.6001977669075131,0.6853668354451656,-0.6517365351319313,0.15855326689779758,-0.8044864074327052,0.8477634037844837,0.9601430082693696,0.29491441044956446,-0.630592695903033,-0.8520232290029526,-0.9119490711018443,0.28973568975925446,-0.5736712324433029,-0.5145178772509098,0.24264149460941553,0.36535612866282463,0.7458992600440979,-0.7152363103814423,0.18445867160335183,-0.8955124719068408,-0.07138165226206183,0.505761731415987,0.252249741461128,0.9233684898354113,0.0027650417760014534,0.8046090146526694,0.06406269455328584,-0.6962932320311666,0.22210905514657497,-0.8845283039845526,-0.6467990558594465,0.8239315277896821,0.7946041375398636,0.7438536994159222,0.7506086346693337,-0.9429660895839334,0.19052433921024203,0.2288524154573679,0.03548102593049407,0.6912476602010429,-0.7839696486480534,0.31149474205449224,-0.7492185668088496,0.6310553816147149,-0.3779885731637478,-0.026497078593820333,0.648012372199446,-0.9908919986337423,-0.14061967190355062,-0.08069610083475709,0.747518174815923,0.5346788167953491,0.6773517173714936,-0.5983806811273098,0.5788569580763578,0.8251185556873679,-0.29673861572518945,0.05584079399704933,0.11941825831308961,0.44976578187197447,0.17835050774738193,-0.9435741025954485,-0.6676367782056332,-0.5027722073718905,-0.6261440240778029,-0.9522101762704551,-0.4178436961956322,0.9212719718925655,0.5121498266234994,-0.8441643416881561,-0.96497065667063,-0.2312960522249341,-0.5149257518351078,-0.49393201479688287,0.1530570019967854,-0.634362852666527,-0.7465022574178874,-0.029011597856879234,-0.3031347584910691,0.5284184776246548,-0.5833720117807388,-0.4848087993450463,-0.5105967135168612,-0.17954631289467216,0.6145437499508262,-0.35520478757098317,0.44279735488817096,-0.4451265116222203,0.0975847258232534,0.36461015651002526,0.5391243752092123,-0.47110764496028423,0.9897626647725701,-0.6181678236462176,-0.791644296143204,-0.12631805054843426,0.4449780862778425,0.5215925993397832,-0.3920786799862981,0.24426771653816104,-0.25408771727234125,-0.22768607316538692,-0.5883972020819783,-0.8581206067465246,0.07400923641398549,-0.4393513072282076,-0.644049471244216,0.22820566734299064,-0.4169019069522619,-0.5791557459160686,-0.03543316340073943,0.02555717434734106,-0.07053991686552763,-0.017979654483497143,-0.35781270219013095,0.6056666471995413,-0.2004414303228259,0.02874432597309351,0.371663018129766,-0.5308576300740242,-0.6512215719558299,0.5073744901455939,0.027180871460586786,0.030045300256460905,-0.5304636615328491,-0.3047066405415535,0.9273316222243011,0.0906130475923419,-0.20030782604590058,-0.09161688527092338,-0.9599490039981902,-0.8258599420078099,-0.8849070244468749,-0.8156564179807901,-0.3970915228128433,0.9016315047629178,0.08098339987918735,0.3809400754980743,-0.8624024810269475,-0.5083072506822646,0.8740664208307862,-0.26257646176964045,-0.45429621590301394,-0.2716311155818403,-0.37242850102484226,0.11227874783799052,-0.22723202360793948,0.014778895303606987,-0.4558628275990486,-0.2004320309497416,0.5430516777560115,0.1823726766742766,-0.4328749286942184,0.1433509406633675,-0.33045280957594514,-0.950902737211436,0.8995125396177173,-0.4452364854514599,0.30644112592563033,0.7289141463115811,0.41768124932423234,0.7857902627438307,0.4095686236396432,0.9697773633524776,0.30572683829814196,-0.3512869318947196,0.9410607824102044,0.791004135273397,0.6690037995576859,-0.3365780203603208,0.0798966963775456,0.9205949325114489,0.08431882783770561,0.06807740358635783,-0.5664438912644982,0.8190226573497057,0.278010833542794,0.3000007695518434,0.6621924140490592,-0.29057994950562716,0.3461488103494048,0.3933923705480993,-0.28082555579021573,0.12195325782522559,0.5372230196371675,0.03113415837287903,0.6568277953192592,-0.48894560523331165,0.3496002764441073,0.23857784923166037,0.18888373440131545,0.1977277798578143,0.07763036480173469,0.5757363843731582,-0.23186903167515993,0.383365482557565,0.7913142684847116,0.5300335907377303,0.5655510677024722,-0.16051367297768593,-0.8999790977686644,-0.8593796780332923,0.04994384292513132,-0.8983527477830648,-0.8826125161722302,-0.9667274081148207,0.07465234585106373,-0.036440606229007244,-0.20235425978899002,-0.02671298012137413,0.07370434422045946,-0.21221047407016158,-0.09062829473987222,0.8305268604308367,0.9491960699670017,0.23753637447953224,-0.12573172943666577,0.6033205138519406,-0.4188253809697926,0.3695400906726718,0.8053697454743087,0.5961396642960608,-0.9097423865459859,-0.8448683368042111,0.5722820474766195,0.6431272220797837,0.4172644829377532,-0.7155376980081201,0.37842420348897576,-0.43742873845621943,-0.3436431661248207,0.8545712972991168,-0.9149842341430485,0.8707763361744583,0.29210089426487684,0.21338092721998692,-0.8113833349198103,0.047134678810834885,-0.6671308688819408,-0.7685959455557168,0.2586686438880861,0.2708617262542248,0.026811000891029835,-0.5271325563080609,-0.6183327529579401,0.8861718699336052,0.7648766883648932,0.42239781050011516,0.25467698089778423,-0.21217824844643474,0.8829775811173022,-0.5109896631911397,0.07439007190987468,0.9826652351766825,0.5296707833185792,-0.3555904710665345,-0.9506498035043478,-0.08439323538914323,0.26966104330495,0.6062993006780744,-0.6543629532679915,0.10876592015847564,0.5050631416961551,0.9259519153274596,-0.6187065127305686,0.951403696089983,0.2138786604627967,-0.8632775661535561,-0.3899165107868612,-0.2049419190734625,-0.19433744112029672,0.07747656852006912,-0.5733529482968152,0.4148360090330243,-0.687863748986274,0.7153987251222134,0.3180643515661359,0.34494151594117284,0.8668679995462298,0.6585188573226333,0.8128117886371911,-0.3569946982897818,0.13252530060708523,0.49957232968881726,-0.017809868324548006,0.06661207554861903,0.46147253457456827,0.8286595772951841,-0.8079168824478984,-0.7111068614758551,-0.256971700116992,0.6998615027405322,0.443078578915447,-0.6712908656336367,0.18120562797412276,0.6112562539055943,0.4917641100473702,-0.3945447732694447,-0.7501878635957837,-0.9943259637802839,0.6605440643616021,-0.19481867738068104,-0.42095043463632464,0.06362642114982009,-0.7266219407320023,-0.6621875432319939,-0.666606034617871,0.6188988196663558,-0.2531019295565784,-0.3484900211915374,0.12479286827147007,-0.3072550385259092,0.1352387540973723,0.8631056332960725,0.12474037241190672,0.8113856054842472,0.5823564631864429,0.9328531571663916,0.8168717296794057,-0.870599050540477,0.19147993857041,-0.10531838098540902,-0.4275623974390328,0.7670600805431604,0.05439015058800578,-0.45784935215488076,-0.5586452134884894,-0.9073239751160145,-0.7006654320284724,-0.9642662014812231,-0.49846082692965865,0.8126918650232255,-0.3056927206926048,0.22356977872550488,0.3417754517868161,-0.6796724973246455,-0.02129266317933798,-0.38358661951497197,-0.267514081671834,0.2195091787725687,-0.5108199822716415,-0.3221752140671015,0.09215931408107281,0.752761329524219,0.7895745085552335,0.3014274830929935,-0.3398997616022825,-0.45961414324119687,-0.2732546995393932,0.2427741400897503,0.4573606760241091,-0.239529921207577,0.11238547042012215,-0.10488431341946125,-0.6114923362620175,-0.6629477622918785,-0.25522681418806314,0.5731265456415713,0.702992144972086,0.5596323292702436,0.5186228528618813,0.9710689131170511,-0.5381900672800839,0.3510092035867274,-0.8629567343741655,-0.5975162875838578,0.26229907013475895,0.3385179969482124,-0.4821413070894778,-0.6033422243781388,-0.32378582656383514,0.2136134305037558,-0.7413516282103956,-0.545242773834616,0.7083891718648374,0.9028028631582856,-0.484475479926914,-0.8443623892962933,-0.3334988607093692,-0.12283597560599446,0.9573991755023599,0.7669008830562234,-0.40498623717576265,-0.6135242227464914,0.7403598418459296,-0.3896016119979322,-0.4833247200585902,-0.8324994049035013,0.6302024405449629,-0.29844502033665776,0.5430681523866951,-0.3534819521009922,-0.5315387928858399,-0.3275162409991026,0.6829547146335244,-0.07197186164557934,-0.7851472557522357,0.07253805175423622,-0.8022896712645888,-0.9562630532309413,0.47832835791632533,-0.3356440761126578,0.8778292001225054,-0.6380848656408489,0.16437110025435686,-0.25713842967525125,-0.37677115574479103,0.9898256440646946,0.6893962812609971,-0.19765523681417108,0.2883193902671337,-0.3480375027284026,0.17593566561117768,-0.34459733637049794,0.23445941554382443,-0.6402514772489667,-0.6344949211925268,0.25850415229797363,-0.3535176324658096,0.8266609641723335,-0.6590147144161165,-0.9959529596380889,0.9081165879033506,-0.9707611855119467,-0.018325224984437227,-0.34601403307169676,-0.894258395768702,0.27377575682476163,-0.8918971535749733,-0.11773444572463632,0.9840534771792591,0.6867190604098141,0.14313763054087758,-0.15618392452597618,-0.04630295606330037,0.8713308055885136,0.39159884583204985,-0.3674007747322321,-0.2929399609565735,0.43189696967601776,0.6209221822209656,0.027181040961295366,0.5996806025505066,-0.6811008746735752,0.48092086846008897,-0.8509463798254728,0.8039285619743168,0.47267968486994505,0.7983890194445848,0.5647221673280001,-0.6854130290448666,-0.776521472260356,-0.14912955090403557,0.4182865284383297,-0.5338066276162863,-0.7598946066573262,0.3572838008403778,0.8079806263558567,-0.867150051984936,0.8667098539881408,-0.20413195341825485,-0.1802607048302889,0.8275438952259719,-0.26611315179616213,0.5688194874674082,-0.37040347792208195,0.9160841093398631,-0.4880554098635912,-0.5065298369154334,-0.06586115155369043,0.8744805557653308,0.48431278206408024,-0.3119063591584563,-0.937349549960345,0.24085741443559527,-0.15421963948756456,-0.3158320477232337,0.39843872375786304,-0.9205962917767465,0.07980464864522219,0.8435815158300102,0.826026733033359,0.34170308895409107,0.8367601400241256,-0.35995759069919586,0.07139046024531126,-0.7403076640330255,-0.2402251297608018,0.8569327434524894,0.2306537483818829,-0.801344595849514,0.10589436860755086,-0.6992727504111826,0.26109002670273185,-0.3744211932644248,-0.4412486576475203,-0.9953226186335087,-0.33010647678747773,-0.8180397665128112,-0.823714102152735,-0.0797869092784822,0.18789020832628012,-0.9892462305724621,0.858899577986449,0.6709478669799864,-0.8302345122210681,-0.6932123797014356,-0.17145629972219467,0.46007326571270823,-0.6063281917013228,-0.007335172034800053,0.877653646748513,0.12925259908661246,-0.051207618322223425,0.2601547804661095,0.07877895049750805,0.34611407294869423,0.6236391472630203,-0.3064516754820943,-0.7555541391484439,-0.28285916429013014,-0.829121807590127,0.18799116741865873,0.5556852016597986,0.8338363408111036,0.3482453194446862,0.627223470248282,0.33238730719313025,-0.13560893246904016,0.7321718451566994,0.02757386676967144,-0.4484586198814213,0.5663519203662872,0.8637460581958294,-0.9276062962599099,0.3677239194512367,-0.7034821812994778,-0.905950260348618,0.6963948491029441,-0.53220757516101,0.7730087004601955,0.6521851597353816,0.7564273388125002,0.23190378537401557,-0.1408484666608274,-0.8403745633549988,-0.6370036313310266,0.24347618874162436,-0.03698696522042155,-0.10276340041309595,-0.9025255325250328,-0.8987115267664194,-0.09545226022601128,0.2708776551298797,0.6244015051051974,-0.06455201515927911,-0.4217314659617841,-0.033294964116066694,0.3896082234568894,0.9300236576236784,-0.5208584666252136,-0.5954834544099867,0.17732900381088257,0.18882949417456985,0.09680441813543439,-0.055292967706918716,-0.24268991826102138,-0.48753921454772353,0.05122964270412922,0.4155809925869107,-0.09217821853235364,-0.6892065871506929,0.2214050036855042,0.22154638962820172,-0.8728457572869956,0.7702538827434182,-0.8114074314944446,0.049604573752731085,0.8258055141195655,-0.6123822336085141,-0.41875228844583035,0.6647874694317579,0.3517945692874491,0.172580115031451,0.9816487859934568,0.018011964857578278,0.40404809871688485,-0.49948003701865673,-0.13845557533204556,0.7209364455193281,0.5741897341795266,-0.9800599301233888,0.1218712879344821,-0.3053787243552506,0.371574274264276,0.9468977604992688,0.30673383409157395,0.03902249922975898,-0.3223982681520283,0.13610516814514995,-0.31441629584878683,0.593812795355916,0.324237362947315,0.8796674171462655,0.5824593813158572,0.04676262801513076,-0.8264330825768411,0.1343826656229794,-0.1594560188241303,-0.21231729304417968,-0.9221026198938489,0.6705858292989433,-0.7108348202891648,0.5086889420635998,0.42573270527645946,-0.33442492643371224,0.23919027671217918,0.3022650023922324,0.9669395475648344,0.7715302114374936,-0.4964658678509295,0.84392099827528,0.06474339170381427,0.319925700314343,0.7815051265060902,0.1429275218397379,0.905997462105006,-0.29242356680333614,-0.5893333572894335,0.2955384384840727,0.0030753775499761105,-0.9410155629739165,-0.8661912148818374,0.7579265628010035,0.14270729757845402,-0.3598152007907629,-0.2879151846282184,-0.9659641240723431,0.7021418632939458,-0.9132207473739982,0.02688860474154353,0.05271305190399289,-0.8421630067750812,-0.5353114735335112,-0.8164113615639508,0.2848031488247216,-0.018753087613731623,-0.4123835493810475,0.8536898493766785,-0.8347461889497936,-0.2720216675661504,0.7984361303970218,-0.48516404163092375,0.1497183097526431,0.3740240898914635,-0.8739701909944415,0.22974941926077008,-0.3621715661138296,-0.13994314009323716,-0.7489749770611525,-0.8279988057911396,-0.7304888335056603,0.7835738933645189,0.23955244710668921,0.4346502027474344,0.2345808995887637,0.4777510785497725,0.8456499497406185,0.16665151622146368,0.4526531188748777,0.11078703263774514,-0.7946167970076203,-0.4886717302724719,-0.5423383004963398,-0.8347424562089145,-0.078587441239506,0.1434605927206576,0.13884174777194858,0.9698096523061395,0.2697974918410182,-0.6960205603390932,0.21523989411070943,-0.7305548111908138,0.4111927035264671,-0.4774955892935395,0.5635613389313221,-0.16458156798034906,0.6019451972097158,0.03665385441854596,-0.5417335177771747,-0.8651977791450918,0.35664445674046874,0.23606904735788703,0.013059720862656832,0.13643313711509109,-0.43374244309961796,0.6946995183825493,0.4509109714999795,-0.8892937661148608,0.78105005947873,0.3014652794227004,0.5898512513376772,0.12761729676276445,0.9083177158609033,-0.8934763874858618,0.5008807899430394,0.010738604702055454,0.015824302099645138,-0.8770906156860292,-0.8376360037364066,-0.8880884354002774,-0.0777753870934248,-0.4311495637521148,-0.3589000841602683,0.924965902697295,0.02262962982058525,0.4473599321208894,-0.5780755137093365,0.8899832307361066,0.8299978408031166,0.1802065963856876,0.8867359580472112,-0.19521458400413394,0.3989756456576288,0.8487964048981667,0.004310247953981161,0.8747555906884372,0.05819817539304495,0.5695565603673458,-0.13932356564328074,-0.19987251656129956,-0.9246834050863981,-0.6857538274489343,0.15029725106433034,0.5090081691741943,0.7554087401367724,-0.34055260103195906,-0.46024888195097446,-0.4366849632933736,0.8067805408500135,0.6237002615816891,0.42342063784599304,-0.26168060349300504,0.5833306023851037,-0.13102727523073554,-0.48628547275438905,-0.11838339176028967,0.04321344289928675,-0.3933758847415447,0.13525604084134102,0.300785297062248,0.19322894467040896,0.6207336895167828,0.5551934512332082,0.7031190488487482,-0.4531491994857788,0.8343431460671127,0.6459886631928384,-0.19199693528935313,0.544481766410172,0.6448384188115597,0.9794858298264444,-0.9036145135760307,-0.31537061696872115,-0.4763221759349108,-0.9140141415409744,0.06837623147293925,0.29377725161612034,-0.6775949583388865,0.06442065769806504,-0.7065121056511998,0.7296082922257483,0.9197998126037419,-0.5902171027846634,0.17269219178706408,0.4030978921800852,0.05741077149286866,-0.2524082022719085,-0.7635678136721253,-0.09594502858817577,-0.16441417671740055,0.4859833484515548,-0.8483951832167804,0.9531263643875718,-0.14683152316138148,-0.550534944050014,0.6550852651707828,-0.6228793081827462,-0.6434771874919534,0.8879717001691461,0.3262354889884591,-0.937708000652492,-0.7497343858703971,-0.05216264724731445,-0.9839836698956788,0.7678308454342186,0.6326174400746822,-0.7392478687688708,-0.08994137588888407,-0.02250553760677576,-0.42144807567819953,-0.5202723960392177,-0.6666900464333594,-0.36089937249198556,-0.08658048091456294,-0.4018960539251566,0.5668422617018223,0.7724571330472827,-0.03487385297194123,0.9513642266392708,-0.10616892436519265,0.07163991034030914,0.7434835615567863,-0.7259329608641565,0.7426508557982743,-0.35402520978823304,-0.7235188656486571,0.7207612977363169,-0.20398916583508253,0.979857861995697,-0.6366080492734909,-0.17070412635803223,-0.778733785264194,0.9725590106099844,-0.9387956992723048,0.229666484054178,-0.4418829707428813,0.9703218531794846,-0.14509729901328683,0.028676149435341358,0.6500366479158401,-0.7530598039738834,-0.37083809170871973,0.2043495117686689,0.8051041723228991,0.1818631123751402,0.7511054263450205,0.6370412879623473,0.22162602422758937,-0.6035038391128182,-0.06294375425204635,0.6210484551265836,-0.01655220054090023,0.13815527269616723,0.054964442271739244,0.6221828460693359,-0.5028367135673761,-0.08312276052311063,-0.07047478994354606,0.19217725889757276,0.4334920165129006,-0.9917490580119193,-0.4538117819465697,-0.6462533487938344,-0.7318719616159797,-0.7063248688355088,0.4191311881877482,-0.24051635805517435,0.8758424501866102,-0.017301808577030897,-0.0032203448936343193,-0.7699408037588,-0.32073415629565716,0.3846662538126111,-0.22848371509462595,-0.49950189609080553,-0.04938174318522215,-0.02316563716158271,-0.5786433536559343,0.2766351820901036,-0.9885915429331362,0.19907896127551794,-0.20822822488844395,0.8005349733866751,0.8730420568026602,-0.9973380453884602,0.6370592466555536,-0.3292615902610123,-0.5314434696920216,0.9589807367883623,-0.9534687967970967,-0.34934878814965487,0.8324683061800897,-0.49384078150615096,0.733068757224828,-0.4939766307361424,0.2861032993532717,-0.8510687253437936,-0.6779523100703955,0.5352431880310178,-0.024669422302395105,0.5227410229854286,-0.6025161324068904,-0.8474072720855474,-0.41144684748724103,0.7414889582432806,-0.7935411487706006,0.006618895102292299,0.44883006950840354,-0.9786708177998662,0.8699098746292293,0.5793577143922448,-0.7211699686013162,-0.17706096032634377,0.11878536501899362,0.6697565843351185,0.842109982855618,0.9431929499842227,0.6206849100999534,0.505021448712796,-0.4048461336642504,0.8445718232542276,0.5900662885978818,0.6614751447923481,0.4596100328490138,-0.3157057738862932,0.5712384358048439,-0.23117589205503464,-0.024451682809740305,0.0013678469695150852,0.49560773139819503,-0.7433352740481496,0.4605806306935847,0.71861727302894,-0.37608148716390133,0.1252141809090972,0.6807627314701676,0.623245753813535,-0.6446392480283976,-0.14606808219105005,0.19927529990673065,0.7567710937000811,-0.8756065918132663,0.5078885750845075,0.5866232397966087,-0.2479116441681981,0.7079652324318886,0.5888414150103927,-0.2634595399722457,-0.6198151502758265,-0.5095832836814225,-0.6656079483218491,-0.3132477505132556,-0.20174036268144846,0.7782989307306707,-0.13373118732124567,0.04265585774555802,-0.561331398319453,0.7273769122548401,0.09516393393278122,-0.1500370972789824,0.8953679576516151,-0.9476676285266876,0.025259800255298615,-0.8557059080339968,-0.13677773904055357,-0.7569277994334698,0.7087076171301305,-0.7567163286730647,0.00490074697881937,0.10608131717890501,0.803193255327642,0.7997835292480886,0.8083800664171576,0.6790843540802598,-0.5438282946124673,0.3317429469898343,0.9986453312449157,0.20964918937534094,-0.20135578280314803,0.5036746808327734,-0.8629181762225926,0.15367740485817194,-0.7435071049258113,-0.016029224265366793,0.44570849230512977,0.8499188749119639,-0.8292948412708938,-0.49055683333426714,0.08388874214142561,-0.01641347585245967,-0.22294692555442452,0.35435705073177814,0.8242406491190195,0.20149421831592917,0.5096856458112597,0.6533591067418456,-0.6591625194996595,0.2327620373107493,0.8029199838638306,0.06096306722611189,0.38805923005566,0.3701402605511248,0.45390798430889845,-0.09439493529498577,0.12510913144797087,-0.7150020496919751,0.5301193683408201,-0.7366854110732675,-0.11305094696581364,0.151286824606359,-0.41946720890700817,-0.008420111611485481,0.8356410139240324,-0.06601702468469739,-0.1860514641739428,0.836966460570693,0.5767768686637282,0.7421513716690242,-0.42916117515414953,0.7798076057806611,0.9081690390594304,-0.3679776540957391,-0.9927136227488518,0.7357429689727724,-0.9352822611108422,-0.2951475568115711,-0.20244073262438178,0.25269186962395906,0.4985300973057747,0.046961402520537376,-0.4346459601074457,0.09908645087853074,-0.5863110297359526,-0.4605612079612911,-0.00481167109683156,-0.7420299248769879,-0.6405319762416184,0.7233264800161123,-0.06764947297051549,-0.0657491865567863,-0.4685675632208586,0.8251962177455425,-0.09521184768527746,-0.9342053537257016,0.9563745809718966,0.5707431333139539,-0.6006388789974153,-0.9471084298565984,0.9178953766822815,0.20535165490582585,0.7575384583324194,0.5767867360264063,0.5695544667541981,-0.2078278544358909,0.2590363407507539,-0.1590020856820047,-0.07005434529855847,0.9998519732616842,-0.6970499157905579,-0.8539351420477033,0.9450730332173407,-0.6646760869771242,0.6058354037813842,0.12568571185693145,-0.939210413955152,0.4053776073269546,-0.8748218948021531,0.8345239483751357,-0.8192908433265984,0.33693559374660254,-0.19357882346957922,-0.6840232550166547,0.8338973829522729,-0.875224603805691,-0.05533306719735265,0.3373573930002749,0.5131274177692831,-0.6707966183312237,0.43083573831245303,0.42959842272102833,0.13025069050490856,0.42794232117012143,0.6205087671987712,-0.042844342067837715,0.843172060791403,-0.44483594922348857,-0.1670684409327805,-0.7443348071537912,-0.3365146769210696,0.6299052638933063,0.5089217866770923,-0.2660798984579742,0.29496194003149867,0.16609853692352772,0.6029900372959673,-0.26634692680090666,0.3121414901688695,0.3529722969979048,-0.11174823483452201,0.8660394409671426,-0.09094212856143713,-0.10828777635470033,-0.5403075246140361,-0.3536855666898191,-0.518869424238801,-0.8609639964997768,-0.3565054670907557,0.8814420830458403,0.20439099986106157,0.011121461167931557,-0.7148241307586432,-0.32823840621858835,-0.18351141037419438,-0.8288605031557381,0.6121275052428246,0.9787258459255099,0.11386589612811804,0.07893374795094132,0.35651989188045263,0.9982139696367085,-0.9041225309483707,-0.8620579577982426,-0.42188232857733965,0.7247660760767758,0.04693997651338577,-0.7224333989433944,0.46832430362701416,0.5192549549974501,0.8100391956977546,-0.0143461967818439,0.007128861732780933,0.8507817001082003,-0.36966983461752534,-0.46219997853040695,0.5869222525507212,0.5231247385963798,-0.931763730943203,0.1134241996333003,0.012578349560499191,0.3535899259150028,-0.8797216308303177,0.435917129740119,0.5454742750152946,0.27336497139185667,-0.44169053016230464,-0.479410785716027,-0.015357242431491613,0.45539093017578125,-0.103440813254565,0.8666145033203065,0.9117084983736277,-0.3499995996244252,-0.6834924188442528,-0.17227839585393667,0.801896593067795,0.9709782958962023,-0.441767695825547,0.6139107616618276,0.00653996504843235,-0.9666347508318722,-0.45306769059970975,-0.44828693103045225,0.2054397310130298,0.2899348787032068,-0.6321804048493505,-0.7099065165966749,-0.9273050236515701,0.450144802685827,-0.006979216355830431,0.9932675850577652,-0.11374694528058171,0.20514889108017087,0.3693812135607004,0.613332842476666,0.894301516469568,0.493523804936558,-0.14132973412051797,-0.9492638986557722,0.7237309287302196,-0.5193281942047179,-0.8274291874840856,-0.8444792325608432,0.3760630516335368,-0.9839759445749223,-0.5814749309793115,-0.8931252504698932,0.8217108249664307,-0.3021610272116959,0.12208995129913092,0.02687065489590168,0.18347580078989267,0.829266210552305,-0.42178988130763173,-0.955091786570847,0.9270954397507012,0.08436719421297312,0.9373378474265337,0.8480057548731565,-0.20338008971884847,0.09439501632004976,-0.09590948279947042,0.2203562199138105,-0.06502298638224602,0.9712172406725585,-0.3543782439082861,0.4145123893395066,0.7892204727977514,-0.20351091027259827,-0.14706317335367203,0.76852493500337,-0.7989501659758389,0.6490374086424708,-0.638291874434799,0.8165657352656126,-0.1125093987211585,-0.7714808434247971,-0.6860661590471864,-0.598972050473094,-0.5436306758783758,-0.014471080619841814,0.42903537582606077,-0.5870151366107166,0.06914665084332228,0.5744035942479968,0.37387358769774437,-0.36525980150327086,0.5043352339416742,-0.2077626483514905,0.6982813160866499,-0.6869793934747577,0.6219744361005723,0.8133108331821859,-0.35312406718730927,-0.9014519024640322,-0.49070892948657274,-0.8717652596533298,0.15131919644773006,0.9526076735928655,-0.5731924124993384,-0.43073630379512906,-0.05959227727726102,-0.4159538294188678,0.040753064677119255,-0.9858435769565403,-0.9073529909364879,0.8404467292129993,-0.7966078263707459,0.8074448937550187,-0.8741195127367973,0.6234853654168546,0.15690645622089505,0.9519323203712702,-0.8090770542621613,-0.07408585073426366,0.8118746974505484,0.26887728553265333,-0.21394507167860866,-0.05931489309296012,0.3780775754712522,-0.289600039832294,0.57062369864434,-0.6244065277278423,-0.6670046653598547,-0.4739465401507914,0.2626465428620577,-0.4275148115120828,-0.07217332487925887,0.27150515420362353,0.6352492612786591,0.7881183689460158,-0.32887562783434987,-0.8610657108947635,0.720431350171566,-0.47013025963678956,0.5585432974621654,0.24362072627991438,-0.51221275748685,0.16113862907513976,-0.06976160733029246,-0.2772947521880269,0.5060388902202249,0.07369319023564458,-0.9370932132005692,-0.9668358899652958,0.16649610782042146,-0.09630105644464493,0.8395459330640733,0.48413898749276996,0.8553588315844536,0.043352678418159485,-0.14653292391449213,0.7745614545419812,-0.6321905977092683,-0.23913483461365104,-0.4456669329665601,0.70171576179564,-0.24178142519667745,-0.30762042105197906,0.9380220184102654,-0.868877561762929,-0.8572033038362861,0.6329851481132209,-0.7477829731069505,-0.8831631569191813,-0.2737244493328035,-0.11400712793692946,0.40738752065226436,0.30749761359766126,-0.11443819338455796,0.8772979355417192,0.27113739773631096,-0.3108811401762068,-0.5648992131464183,-0.2102713449858129,0.6325914333574474,-0.5453157178126276,-0.6964609110727906,0.3228159327991307,-0.8278155564330518,0.36026859609410167,0.34812322864308953,-0.9554024832323194,0.4896167949773371,-0.3730743140913546,-0.3307290514931083,-0.3107816749252379,0.4748572241514921,0.9658533744513988,0.15059531200677156,0.31144832633435726,-0.35084626777097583,-0.7590903057716787,-0.27157222479581833,0.5526357563212514,0.8854388296604156,0.7322325445711613,-0.7285369620658457,-0.16327573265880346,0.8433624161407351,-0.08591701788827777,-0.84585390239954,-0.4692314825952053,0.6880257767625153,-0.5177887426689267,0.3362910975702107,-0.024406135082244873,-0.06556237256154418,0.9049836229532957,-0.3215706660412252,0.21453712647780776,0.2800671295262873,-0.680902099236846,-0.17521194368600845,-0.19339774316176772,-0.014116162434220314,-0.08513248432427645,-0.3811937337741256,-0.016064077615737915,-0.22395782032981515,-0.15368011547252536,0.11404746910557151,0.09220748860388994,-0.8201451105996966,0.07649945141747594,-0.05719336215406656,0.3470341181382537,-0.15405623242259026,-0.36537677608430386,-0.9348483798094094,0.3818495003506541,-0.2598308022134006,0.8175248634070158,0.6417549252510071,0.16611000150442123,0.35204806458204985,0.46997136157006025,-0.20828293170779943,0.501850878354162,0.8735582181252539,0.869983316399157,0.00999831734225154,-0.023677253630012274,-0.8571981359273195,0.15791918663308024,0.15267751505598426,-0.24410038953647017,0.3834267598576844,0.18996332678943872,0.14546202355995774,-0.08170511433854699,0.6585613419301808,0.32284298492595553,-0.7302872175350785,-0.6732801664620638,-0.8667621253989637,-0.9064796785824001,-0.22038816707208753,-0.6083054495975375,-0.5896367691457272,-0.6491899499669671,0.07729894854128361,0.1883983905427158,-0.3731590751558542,-0.6556418994441628,-0.02948286011815071,0.4401995171792805,-0.14830521307885647,0.5447624614462256,0.36419042432680726,0.10278675146400928,-0.7069772216491401,0.4827898684889078,0.9435529662296176,-0.3860887475311756,0.13669041963294148,0.8692777953110635,0.7597278621979058,0.9871744406409562,0.4377747024409473,-0.18087250320240855,-0.9691678332164884,-0.9891213909722865,-0.39814859069883823,-0.6524567655287683,0.60540303401649,0.058383690658956766,-0.7924903384409845,0.9827045830897987,-0.760964925866574,-0.93826655857265,-0.7263874630443752,-0.48456895537674427,-0.04430606868118048,0.9011334129609168,-0.2123868023045361,0.6421064813621342,0.5672945738770068,0.32403900381177664,0.9141116947866976,0.003583919256925583,-0.784499182831496,0.9820548160932958,0.32889302633702755,0.4158424371853471,-0.4332655272446573,0.8000131552107632,0.46301888208836317,0.7114155236631632,0.4084199476055801,0.9207313642837107,0.5645105200819671,-0.3394041797146201,0.5765952542424202,0.01792608154937625,0.45771371107548475,-0.04053962184116244,0.18298743152990937,0.28020088700577617,0.766407985240221,0.2643730789422989,-0.604340756777674,-0.16425069514662027,0.9249203079380095,-0.1090277936309576,-0.3954204572364688,0.23853237088769674,0.06370212510228157,0.6882090610451996,-0.06226270738989115,0.39367970218881965,-0.7205677572637796,-0.5963643253780901,-0.9391622073017061,-0.879759477917105,0.2267144015058875,-0.41719520976766944,-0.9499868405982852,-0.2842692965641618,-0.8485552566125989,0.5599971120245755,-0.7094614165835083,-0.5192296137101948,-0.1682727225124836,-0.12725798599421978,0.4516758653335273,0.5105550973676145,-0.08618789352476597,0.4260703008621931,0.7927787126973271,-0.46095638535916805,-0.3836108925752342,-0.11143635725602508,0.09815353294834495,-0.049343462102115154,0.13922241423279047,0.8045339435338974,-0.609584603458643,0.7088967990130186,0.1748206657357514,-0.6504471241496503,-0.4916912168264389,-0.07668464025482535,-0.7891502263955772,0.8715294171124697,0.2931727855466306,0.09320692298933864,0.07672998355701566,-0.6794750802218914,-0.3344273385591805,0.23393031349405646,0.13755979435518384,-0.3923535021021962,-0.18410964729264379,-0.20840043760836124,-0.7633373071439564,0.3043637592345476,0.3571977070532739,0.7834456525743008,0.4110792502760887,-0.878304498270154,-0.6008107871748507,-0.8533962098881602,0.5466661648824811,-0.028902297373861074,0.5464388271793723,-0.9098090473562479,0.1983227264136076,-0.2310320707038045,0.9478092365898192,-0.2723644976504147,0.7527407929301262,0.8812635717913508,0.49258579267188907,0.3247688082046807,-0.2579193487763405,-0.043880846817046404,0.8937886329367757,-0.6838842420838773,0.9145955480635166,0.7278457223437726,0.5795252206735313,-0.30037478683516383,0.22567101521417499,-0.7936958274804056,0.8769006370566785,-0.16951120784506202,-0.22711639618501067,-0.22846354404464364,0.48117691185325384,-0.4067380395717919,0.6834849170409143,-0.3845217381604016,0.8581444951705635,0.997996817342937,-0.700997541192919,0.48705004854127765,-0.806807161308825,0.3409202843904495,0.2565742018632591,-0.49596408661454916,-0.006436212919652462,0.1420524180866778,-0.8569796066731215,-0.08306801319122314,-0.6387340882793069,-0.3743266211822629,0.33827335201203823,-0.10880510555580258,0.9718498694710433,-0.941506658680737,-0.0970724024809897,-0.6404449786059558,-0.08747623022645712,-0.22212778590619564,-0.7742769648320973,0.6943503245711327,-0.6636780668050051,-0.14005426736548543,-0.6217111572623253,-0.7444563377648592,0.19287157617509365,-0.3827194725163281,0.8642608565278351,-0.39893257431685925,-0.6654735347256064,-0.06517669698223472,-0.693293949123472,-0.8562919315882027,-0.6168721066787839,-0.6258695833384991,0.35406684689223766,-0.9083416718058288,-0.08306000381708145,0.04544462729245424,0.5486252531409264,0.3277407018467784,-0.32434909883886576,0.043258567340672016,-0.34597342321649194,-0.2809146158397198,0.2725261189043522,-0.46607053093612194,-0.47374824713915586,-0.15545128099620342,-0.6754059791564941,0.27494062297046185,0.20813337247818708,0.5960753411054611,0.814084424637258,-0.23414940340444446,-0.8707944601774216,0.4116005040705204,0.5791417551226914,0.20534110348671675,-0.5983897112309933,-0.28291438799351454,-0.39794309670105577,0.983023249078542,0.5551217389293015,-0.30161596182733774,0.3473706617951393,0.8830527672544122,0.3974582748487592,0.46751253539696336,-0.3670861120335758,0.02539514470845461,0.6580240353941917,0.31332005746662617,-0.8923654342070222,0.5164173236116767,0.3022948750294745,-0.607907747849822,-0.5854941946454346,0.399838546756655,0.17907937802374363,0.6158737754449248,0.9731055214069784,-0.128876443952322,-0.6023535737767816,0.7918800245970488,0.1323501360602677,-0.35848919302225113,0.49440201092511415,-0.21893620723858476,0.03670550836250186,-0.7720225965604186,0.8758070538751781,0.673909627366811,0.9994217730127275,-0.7912275455892086,-0.9072089907713234,0.06483703479170799,-0.4132001893594861,0.23312597768381238,0.02990754460915923,0.03853003075346351,0.6331874653697014,-0.14431261271238327,0.04771608905866742,-0.8764370558783412,-0.8378988597542048,-0.6363723403774202,0.9418872054666281,-0.4290029131807387,0.09695367841050029,0.7050359477289021,-0.5844364301301539,0.719195207580924,-0.17898883251473308,-0.6685180771164596,0.2522554583847523,-0.05641515739262104,-0.24748623464256525,0.7267040153965354,0.4940334456041455,-0.5127250188961625,-0.1102203605696559,0.47606501542031765,-0.28448418667539954,0.11183198587968946,-0.9363163933157921,0.887319864705205,0.868399818893522,-0.56546331057325,0.6799682197161019,0.2033891873434186,-0.4741948861628771,-0.28941538697108626,-0.4340177681297064,-0.8127834391780198,0.41617913311347365,0.49432448484003544,-0.6477716793306172,-0.8023980758152902,-0.5853005591779947,-0.7497168984264135,-0.5737719708122313,0.018940511625260115,-0.6359176971018314,-0.29534736508503556,0.6203340026549995,-0.8895884687080979,-0.19414621032774448,-0.4784871772862971,-0.5246173911727965,0.8605555682443082,0.7112563461996615,-0.39767390163615346,-0.11517816409468651,-0.08348830183967948,-0.0824231137521565,0.4934675423428416,-0.9973661070689559,0.34926317958161235,-0.06139922561123967,0.928533345926553,-0.3896407298743725,-0.6322739934548736,-0.16240509459748864,0.5757620939984918,0.434656023979187,-0.6333571276627481,0.3525704275816679,0.827686354983598,0.045948623679578304,-0.3404272813349962,0.41232186183333397,0.3846071404404938,-0.7264584684744477,-0.9601543890312314,0.649835875723511,0.5897360136732459,0.30343619640916586,-0.7703638067469001,0.4989902493543923,-0.06206162506714463,0.0908667272888124,-0.8296882114373147,-0.5850889123976231,0.5559737682342529,0.3239628761075437,0.8552868347615004,-0.14599170861765742,-0.31187720550224185,-0.2700774874538183,0.5372086279094219,0.8668255172669888,0.09343028347939253,-0.5616509928368032,0.7167014828883111,0.3166797552257776,-0.6130620585754514,-0.8314366638660431,-0.8848776053637266,-0.8482766184024513,-0.7434084923006594,-0.35467984341084957,0.37966097611933947,-0.6652565975673497,-0.032478635199368,0.8173323273658752,0.21591691998764873,-0.2981852884404361,-0.8779882141388953,0.2760572782717645,0.39648450119420886,0.36937686847522855,-0.6571800843812525,0.7143473848700523,0.1022329879924655,-0.7972273221239448,0.42814629478380084,0.18083555763587356,0.4290689416229725,0.9769965466111898,-0.8090433347970247,-0.07758941641077399,0.012144112959504128,-0.6942197289317846,0.6921119554899633,-0.9207756691612303,-0.8074949523434043,0.1569724027067423,0.7302656807005405,-0.23950650496408343,-0.8804330299608409,-0.15094303572550416,0.5654871454462409,0.6630860352888703,-0.5462193642742932,0.979984849691391,0.39914681436493993,-0.15983084915205836,-0.6969903479330242,0.8321225326508284,0.3128583123907447,-0.7503236536867917,0.9705648594535887,-0.20037177437916398,0.543788805603981,0.30302958842366934,-0.5729534863494337,-0.5635129194706678,-0.9341225093230605,-0.9080887604504824,0.8703660229220986,0.6058947280980647,-0.7619053111411631,0.8987049548886716,-0.5326003399677575,-0.9520310554653406,-0.07777449022978544,0.7131521082483232,-0.9610372590832412,-0.010997295379638672,0.8167695426382124,-0.5110999918542802,-0.5638836659491062,-0.915442708414048,-0.45859476644545794,0.6364520504139364,-0.04534482583403587,0.9069993253797293,0.54566431324929,0.9595228480175138,0.1661694748327136,0.5793331582099199,0.15433212276548147,-0.42073504719883204,0.22861147858202457,0.8423379585146904,0.11758659174665809,0.5183208100497723,0.6724540935829282,-0.2375786378979683,-0.25245823338627815,0.35139860212802887,0.27518094005063176,0.6081195254810154,-0.8019025069661438,0.9022339428775012,0.5846437467262149,0.08189358515664935,-0.11080423928797245,-0.9265820891596377,-0.04023522138595581,0.34403038024902344,0.6550231715664268,-0.9236030415631831,0.5700076059438288,0.7764434483833611,-0.859655112028122,-0.41748750815168023,-0.24850004306063056,0.21730508748441935,0.06543184025213122,0.5080975010059774,0.6126988772302866,-0.7465585307218134,0.9344464843161404,0.7970062554813921,-0.8723107394762337,0.26137325959280133,0.7250010250136256,0.5803571413271129,0.7716744439676404,-0.05260620266199112,0.4246048484928906,-0.43686264008283615,0.7412334308028221,-0.5287720668129623,-0.31845895014703274,0.3212898191995919,-0.7043672031722963,0.6967511591501534,0.6877152682282031,-0.07775890175253153,-0.8757688757032156,-0.04347120597958565,0.4433857318945229,-0.27717765467241406,-0.6535182781517506,-0.5986903323791921,-0.8157870634458959,0.977200485765934,-0.4327831771224737,-0.840789710637182,0.9328577280975878,-0.08763077901676297,-0.3643900165334344,0.39238253654912114,0.3400872009806335,-0.8809707504697144,0.2096746894530952,0.4348353845998645,-0.4607181749306619,-0.6676622172817588,-0.357725172303617,-0.1594991092570126,0.7103054318577051,-0.6621601884253323,0.2123329401947558,0.7668670653365552,0.1076920498162508,0.16616011038422585,0.837969702668488,0.9281753017567098,-0.684713922906667,-0.5163647336885333,0.565886540338397,-0.5094692055135965,-0.5517287314869463,-0.10333598032593727,-0.10591948125511408,0.009635531343519688,-0.9202254340052605,-0.2900770897977054,0.5257855984382331,-0.6368703311309218,-0.508534746710211,-0.41826997231692076,-0.8178903912194073,0.32264671055600047,-0.45725532714277506,-0.6371417148038745,-0.8779575652442873,-0.3509927745908499,-0.5068190270103514,-0.45583015913143754,-0.5035757129080594,0.47749197110533714,-0.24682611599564552,-0.9510040245950222,0.4773158128373325,0.4156273943372071,-0.8191911936737597,-0.4054594491608441,-0.16981771867722273,0.8234438374638557,-0.9707395788282156,0.4556213519535959,0.39882756816223264,-0.1600000956095755,0.9504426727071404,-0.41905746003612876,0.0013113985769450665,-0.4698804630897939,-0.4196760691702366,-0.9299409901723266,-0.44031811272725463,0.13086495688185096,-0.7879745839163661,0.13009590469300747,-0.1766090984456241,-0.7416984606534243,0.18209060421213508,-0.04600691935047507,-0.31704270327463746,0.11296599358320236,-0.33467162447050214,0.15334438206627965,0.26251072622835636,-0.6917572002857924,-0.20935536222532392,-0.8201504042372108,0.5339108929038048,-0.8423647675663233,0.4714344423264265,0.17761448118835688,-0.5523207196965814,-0.20522233191877604,0.07329193968325853,-0.21435920940712094,-0.17853905353695154,0.025995296891778708,0.6660694698803127,-0.19010703871026635,-0.9110586368478835,-0.8691509081982076,-0.09844737639650702,-0.3328492655418813,0.4531335118226707,-0.38731822837144136,-0.5479893726296723,-0.8952493877150118,0.18665104499086738,0.3626093859784305,0.3753528045490384,0.2739162025973201,0.2948677083477378,0.6515300665050745,0.4892724067904055,0.1999176270328462,0.055348942056298256,0.9419352849945426,0.05041775060817599,-0.07212498178705573,-0.7117418837733567,0.5052696000784636,0.6275460394099355,-0.02118922071531415,-0.11757341446354985,-0.0018051564693450928,0.4401745996437967,-0.27208819799125195,-0.9864798123016953,0.6637402470223606,0.21624787338078022,0.11658572312444448,-0.43485997756943107,0.5507910395972431,-0.6066099707968533,0.9362771245650947,-0.6846263473853469,0.8428017692640424,-0.2959980210289359,0.22121388278901577,-0.400606622453779,0.1327917454764247,0.4048301330767572,-0.0454481435008347,-0.6060478989966214,-0.8666774723678827,0.33265269035473466,0.5742730549536645,-0.7875075279735029,-0.45532319555059075,0.4347118488512933,0.9678576295264065,0.23938781209290028,0.5882442859001458,0.590364605654031,-0.10984758799895644,-0.41765510430559516,-0.9978229785338044,0.37578320782631636,-0.4473318918608129,0.09949243068695068,0.2356878980062902,-0.4506789450533688,0.8730530310422182,0.4741573501378298,0.9861999060958624,-0.3584891241043806,-0.0898875049315393,-0.6193150216713548,-0.9492093897424638,0.7551295668818057,-0.14060746459290385,0.838416469283402,0.9525424777530134,-0.2652429756708443,0.6995024783536792,0.788787477184087,-0.4999254923313856,0.889087691437453,-0.25290182512253523,0.6585443429648876,0.9428976629860699,0.316861174069345,-0.7799499384127557,-0.7330012093298137,-0.2576466714963317,0.44804265862330794,-0.6271046041510999,0.7008794085122645,0.38429600140079856,-0.1108709997497499,-0.5677093854174018,0.8022954277694225,0.9431160832755268,0.39485871652141213,-0.22055244026705623,-0.08037456823512912,-0.15680326288565993,-0.9794033728539944,0.9365395251661539,0.185107477940619,0.5239930963143706,-0.06078964099287987,-0.7885164604522288,-0.5370189324021339,-0.7344408836215734,-0.8283421457745135,0.2437910996377468,-0.7598229614086449,0.5345586123876274,-0.37821113411337137,0.39489323226734996,-0.9908039174042642,-0.48622596403583884,-0.7550844019278884,-0.7836667830124497,0.049656038638204336,-0.29254408925771713,-0.1177441026084125,0.9666038523428142,0.8459235760383308,0.42314950842410326,-0.7281872970052063,0.2578377490863204,0.9809515373781323,-0.27637828793376684,0.5630921483971179,0.002263252157717943,0.10143971908837557,-0.2625953401438892,-0.9559518857859075,0.8310715272091329,-0.9989713793620467,0.01636964175850153,0.3466594032943249,0.6310234828852117,0.9676288869231939,0.24283344391733408,-0.7950689583085477,0.7657097443006933,0.2049590041860938,0.8081301241181791,-0.4934879345819354,-0.37286632042378187,0.8788113840855658,0.5449312799610198,-0.06086465157568455,-0.4751123609021306,-0.24092608643695712,-0.5731064435094595,0.5060410969890654,0.9286464853212237,0.09637764096260071,0.31991852074861526,0.06824552686884999,-0.20452167699113488,0.9305157135240734,0.24803286558017135,0.9719204250723124,0.11549902940168977,0.9787146993912756,-0.25175220519304276,-0.16383911855518818,0.2146648894995451,0.5136957066133618,-0.2196385790593922,-0.9721322022378445,-0.9127138671465218,0.7424910119734704,-0.24135964876040816,-0.5729978308081627,0.4501625606790185,0.35941164707764983,-0.5406596539542079,0.1107736392877996,0.9864209010265768,0.5866239368915558,0.527483370155096,-0.3168214173056185,0.17815213836729527,0.3874752353876829,-0.3665020405314863,-0.7431091335602105,-0.9215252376161516,-0.20640718843787909,-0.6994992694817483,-0.7544436627067626,0.5947828581556678,0.03686990076676011,0.9995619147084653,-0.9101403406821191,-0.14211654337123036,-0.33572030533105135,-0.4025664087384939,-0.16125115053728223,-0.2820941167883575,-0.6950094411149621,-0.5074300807900727,-0.9258015062659979,0.9457445978187025,0.7634378564544022,0.8663449906744063,0.36577663477510214,-0.014025984331965446,0.6898250374943018,0.3596763829700649,0.9758731378242373,0.9158513396978378,-0.16126098530367017,-0.9378414754755795,-0.5154147599823773,0.707942443434149,-0.6820718892849982,-0.07738554617390037,-0.10209919000044465,0.7302899281494319,0.04993060464039445,0.6829578843899071,0.46109138196334243,0.8420075722970068,-0.19280980434268713,-0.8284704461693764,-0.23407550156116486,0.4560886980034411,0.349434404168278,0.19114877562969923,0.9538970906287432,-0.49197997944429517,0.8864293042570353,-0.9276621039025486,-0.18951493687927723,-0.8304851637221873,0.13388359686359763,0.9919895124621689,-0.9235342466272414,0.12334789242595434,-0.9376830109395087,-0.17579938611015677,-0.5453194947913289,0.17948860209435225,-0.3922412469983101,0.6042736400850117,-0.8319019498303533,-0.5311443512327969,0.2914801901206374,0.6626923675648868,-0.0852944371290505,-0.18293333472684026,-0.4807690093293786,0.09075931087136269,-0.13321330538019538,-0.9449870688840747,0.16573118651285768,0.4616227359510958,0.525248029269278,-0.7738698180764914,0.18980086175724864,-0.054677116218954325,0.9061090364120901,0.9684851518832147,0.8966742432676256,-0.18952572997659445,0.6951126898638904,0.9337394903413951,0.5293438974767923,-0.41261596279218793,0.9885002709925175,-0.4496327731758356,0.9000122086144984,0.8034773985855281,0.2997241015546024,0.4951282236725092,-0.7008575215004385,0.5682601244188845,0.96968410955742,-0.6512108161114156,-0.28569487668573856,0.8891691565513611,0.2515578120946884,-0.5414042342454195,0.3592501860111952,-0.35149510065093637,0.3276672079227865,0.5854552136734128,0.9363334216177464,-0.48098214948549867,-0.6432432495057583,0.9521266589872539,0.1762155508622527,0.5730551555752754,0.3266322435811162,-0.8461689199320972,0.32887360267341137,-0.011787096969783306,-0.3833103650249541,0.5459416573867202,-0.13955029007047415,0.24510899046435952,0.760524224024266,0.9729069699533284,-0.3702893373556435,0.857031119056046,0.39878136897459626,-0.6664064764045179,0.415919276420027,-0.36544780107215047,-0.6480331998318434,0.9611284248530865,-0.4739691102877259,-0.9071713294833899,-0.09683298179879785,-0.7181555116549134,-0.9105083611793816,-0.7717548566870391,-0.2360712676309049,-0.45015771547332406,0.025583886075764894,0.4114655116572976,-0.28421908570453525,-0.4973822934553027,-0.4972487217746675,0.6772845867089927,-0.9212791067548096,0.2643059673719108,-0.46113614086061716,0.09223859990015626,0.7568212631158531,0.4048274513334036,0.5766632752493024,-0.09564973507076502,-0.07811189675703645,-0.10275048622861505,-0.4652075660414994,-0.16696848813444376,-0.08124043559655547,0.3169293235987425,-0.5974704315885901,-0.23153404984623194,-0.18150711385533214,-0.8411437757313251,-0.9970668544992805,-0.7368673216551542,-0.610576840583235,0.9524426022544503,-0.9363400302827358,-0.2064736420288682,0.5994838462211192,-0.1292188400402665,0.6330447047948837,0.6752778785303235,0.024163480382412672,0.44439195562154055,-0.20589997805655003,-0.6151579925790429,-0.23335527395829558,0.12073284480720758,-0.01822337182238698,0.856321123894304,0.1573049365542829,-0.017620578408241272,0.8892771629616618,0.45198436500504613,-0.06941793719306588,0.6197576872073114,-0.16838758531957865,0.869225240778178,0.34766543516889215,0.01884457003325224,-0.488990587182343,-0.6982727516442537,-0.5191364395432174,0.6768939322791994,0.8982011917978525,0.6544569078832865,0.871666454244405,0.7780714202672243,0.39809576142579317,0.9541546325199306,0.0033319410867989063,-0.8299071644432843,0.7316459636203945,0.008046845905482769,0.4561607576906681,0.892581366468221,-0.07595826126635075,0.861726448405534,0.936514641623944,0.23935561999678612,0.7731890445575118,0.22871521674096584,-0.8289683810435236,0.01458623493090272,-0.700560340192169,0.5957806119695306,-0.42518054507672787,0.40275962464511395,-0.5560953668318689,-0.4614483225159347,-0.039766702335327864,-0.4461587951518595,-0.18504438735544682,-0.9613805734552443,-0.5972285475581884,-0.4334542485885322,0.3205031789839268,0.07788962870836258,-0.25068426644429564,-0.5967538435943425,-0.29575207410380244,-0.9985727248713374,0.2004715302027762,-0.9721603007055819,0.07345362659543753,-0.7211177684366703,-0.3119587614201009,-0.7936805323697627,0.03967904858291149,-0.24773373315110803,0.2188048674724996,-0.723265019711107,-0.9814726635813713,0.3429487659595907,-0.5942098889499903,-0.3382332962937653,-0.0940769980661571,0.09253119211643934,0.7493606391362846,0.6185744651593268,0.339913418982178,-0.4931631931103766,0.5035919002257288,0.09984952351078391,-0.38460154738277197,0.26393771823495626,-0.2019330565817654,0.7068963497877121,-0.7036143559962511,0.9530852464959025,-0.025890612974762917,-0.06324625480920076,-0.2663609669543803,0.6970790722407401,-0.6691193138249218,-0.5106467888690531,-0.14509726641699672,-0.8456074576824903,0.009498987346887589,-0.28839305182918906,0.4200807036831975,-0.05083403130993247,-0.4685637471266091,0.14489976270124316,-0.25904935831204057,0.08445874927565455,-0.9000800005160272,0.9057822874747217,0.819461087230593,0.937154202722013,-0.7833997616544366,0.19450562773272395,0.5993708940222859,-0.5609747981652617,0.3696889323182404,0.42117073107510805,0.8018159102648497,-0.9913726514205337,-0.667500882409513,-0.1750467885285616,0.9563581305555999,0.7934369812719524,-0.4441110445186496,-0.5987114710733294,-0.40482771024107933,-0.13248978788033128,0.719935046043247,-0.38881914457306266,-0.0022839680314064026,0.2754050213843584,-0.009671039413660765,-0.47238624561578035,-0.4691249281167984,0.7785398871637881,0.9525502733886242,-0.22599460976198316,-0.5902074030600488,0.8543842504732311,-0.011142784263938665,0.7715868642553687,-0.5418581534177065,0.7999696186743677,0.22154665552079678,0.6923479302786291,-0.6439596773125231,0.4572288002818823,-0.6419529193080962,0.7693898701108992,-0.008983331732451916,0.8447082508355379,-0.6347376317717135,0.9586666631512344,-0.6833702777512372,0.6840621400624514,0.1420197244733572,0.39347407035529613,-0.57160364696756,-0.6067677000537515,-0.9598392923362553,0.17852335004135966,-0.08345197839662433,-0.6606685011647642,-0.32405086793005466,-0.13295253133401275,-0.6672159247100353,0.5508687314577401,-0.19171422719955444,0.07537927338853478,-0.8042782284319401,0.19948890944942832,0.07016064692288637,0.800948653370142,-0.5216694534756243,0.5577419670298696,0.6981130572967231,-0.7326148641295731,0.3427200401201844,-0.733765373006463,-0.6290701203979552,0.3756084772758186,-0.8700135829858482,0.8311792458407581,0.29982813354581594,0.9496683944016695,-0.3330638655461371,0.461815822403878,0.15372655494138598,0.6978908996097744,-0.6842743563465774,-0.19708715192973614,0.1922344067133963,0.15167142916470766,0.3044596388936043,-0.13855246640741825,0.8802010039798915,-0.3607973544858396,-0.6778804389759898,-0.03197644557803869,0.5620023920200765,-0.1466283919289708,-0.32175683649256825,-0.23729620361700654,-0.4335376974195242,0.7699313787743449,0.83591651590541,0.14017962478101254,-0.03353969380259514,0.06576004903763533,0.9850289644673467,0.7307691979222,0.7994225518777966,-0.7600594619289041,0.5004195719957352,0.06662884121760726,-0.5096313813701272,0.86306661227718,0.8920102859847248,-0.08232595352455974,0.5739524937234819,0.1554288505576551,0.3795588514767587,0.38818961242213845,0.4643597872927785,-0.16801817109808326,0.019559812266379595,0.022703591734170914,0.6499501853249967,-0.3344570891931653,0.8988225311040878,-0.6475174441002309,-0.9445011629723012,-0.29841270251199603,-0.36541474098339677,-0.08991372724995017,0.11060363193973899,0.8322475566528738,0.491339601110667,0.6072107199579477,0.6467903228476644,-0.7969504045322537,0.7357698301784694,-0.43114515766501427,0.7046525641344488,0.5605731843970716,0.4821853959001601,0.4219479439780116,0.31120200315490365,-0.919828565325588,-0.40857231663540006,-0.45101126516237855,0.5492620565928519,0.5458046565763652,0.08020214037969708,0.6643271357752383,-0.29547838447615504,0.994189518969506,-0.02906592423096299,0.24754543649032712,-0.9783173557370901,0.025124664418399334,-0.9316158015280962,0.3229247801937163,-0.09451317321509123,0.327038636431098,0.3923028241842985,-0.7086468231864274,-0.7258546515367925,0.6484086229465902,0.15549861686304212,-0.16452330304309726,0.8951321342028677,0.3421912086196244,-0.8084886171855032,0.8775797518901527,-0.5503632300533354,0.6157363206148148,0.747006508987397,-0.32052944134920835,-0.12230221927165985,0.49527000915259123,0.6611467166803777,0.12393657444044948,0.656605998519808,-0.4957180670462549,0.9196895910426974,-0.659248432610184,-0.8143852930516005,0.9910267661325634,0.09981468645855784,0.7708249073475599,0.12528265407308936,0.8114707139320672,-0.9138850052841008,-0.03589522931724787,-0.013132036197930574,-0.3760850881226361,-0.039741468615829945,-0.8494754028506577,-0.43443469423800707,0.3787486576475203,0.20571196265518665,-0.7417286923155189,0.6357869650237262,0.13321727979928255,-0.14851997373625636,-0.8757481523789465,-0.3423245339654386,-0.1986495079472661,0.428890616632998,0.5671069659292698,-0.6731957676820457,0.1579579059034586,0.3337942878715694,-0.12220151536166668,-0.952398297842592,0.19751055166125298,0.07242239406332374,-0.8749728305265307,-0.3989687482826412,-0.7849953514523804,0.9821731531992555,0.28396014450117946,0.8735500178299844,-0.94313206942752,-0.8207230637781322,0.06595417018979788,-0.029700115788728,-0.3358101071789861,0.6161647206172347,0.8341503255069256,0.015694313682615757,-0.8029336538165808,-0.5829739891923964,0.7329903957433999,0.5144599927589297,0.8236612398177385,-0.15057529835030437,-0.45526710664853454,-0.6368498192168772,-0.2204248351044953,-0.5736951492726803,-0.7971790255978703,-0.7730210362933576,0.9468260570429265,-0.418712860904634,-0.6705787442624569,-0.899758324958384,0.25635647866874933,0.6156612043268979,-0.18164343014359474,0.37974119186401367,0.7906675082631409,-0.0004469258710741997,0.35229799151420593,-0.6069965129718184,0.1680378718301654,0.6086753318086267,0.5474365716800094,-0.5581331411376595,0.4987038145773113,0.5221518166363239,0.7933911262080073,-0.4162890138104558,-0.15983169712126255,0.6778813898563385,-0.8781467382796109,-0.8052872633561492,-0.0982554373331368,-0.588340537622571,-0.04802971053868532,-0.2924963282421231,-0.8780172970145941,-0.32202180195599794,-0.33562861243262887,0.5522381407208741,-0.4681885950267315,0.5036319480277598,0.9450625535100698,0.8872888758778572,0.03663916978985071,0.09680932993069291,0.44878907268866897,0.5785595988854766,0.43203825131058693,0.3492608047090471,0.22039400320500135,0.6315576829947531,-0.06936543341726065,0.41440271912142634,0.5283466307446361,-0.8614926775917411,-0.9227968626655638,0.20159490825608373,0.3993501621298492,-0.08551378548145294,-0.5590047715231776,0.9952343879267573,-0.834902685135603,-0.3079692483879626,0.28326256526634097,0.6094121071510017,0.19253491330891848,-0.8002684628590941,0.7987415930256248,-0.9707761663012207,-0.47135244216769934,0.9833393455483019,-0.0053609502501785755,-0.15337497694417834,0.875531729310751,0.4093218888156116,0.5424306830391288,-0.9679403402842581,0.6403740416280925,0.8620428242720664,-0.4447011696174741,0.8302471782080829,-0.5681137568317354,-0.8949911938980222,-0.3509117648936808,-0.4729963541030884,-0.025299744214862585,-0.8923573647625744,0.2935374965891242,0.6473941854201257,-0.7084529232233763,0.3598013976588845,-0.09204107755795121,0.11121843103319407,0.5796499312855303,0.30512918066233397,-0.1861567972227931,-0.9189237249083817,0.902358828112483,0.22439257707446814,-0.8972162348218262,-0.9462637100368738,0.29889643331989646,0.42643696116283536,0.8673013336956501,0.3582507870160043,-0.11448256904259324,0.0029251957312226295,-0.09849168406799436,-0.40207251999527216,0.19459653925150633,-0.7073147562332451,-0.0627275425940752,0.6745672947727144,-0.012666435446590185,-0.12143521569669247,-0.851620998699218,0.2771190805360675,0.42767202155664563,0.4483532733283937,0.19468034664168954,-0.17923654662445188,0.814475585706532,0.058102734852582216,-0.9239651667885482,0.9871975779533386,0.268876145593822,0.6698551890440285,-0.9493433982133865,-0.8043629904277623,0.07184708910062909,0.596572675742209,-0.3213270232081413,-0.6143908812664449,-0.20441141072660685,0.17622351553291082,0.5446615060791373,0.5427790149115026,-0.5247174040414393,-0.4428447582758963,-0.7244245097972453,-0.3856871142052114,0.5235350853763521,-0.8931565904058516,0.49865932296961546,-0.18521626060828567,-0.8429357730783522,0.411240310408175,0.733256010338664,-0.7825445281341672,-0.5495433686301112,-0.15081558329984546,0.7209564885124564,0.24130793428048491,0.49183375341817737,0.7037472543306649,0.8177529782988131,0.671469634398818,0.7975825374014676,-0.7700135638006032,0.35196941671893,-0.5173286409117281,0.6211753697134554,-0.8794744680635631,0.8378804987296462,0.21807749522849917,-0.7712302403524518,-0.815383851993829,-0.932137880474329,-0.03548927837982774,-0.782788859680295,0.21851317398250103,0.21652326034381986,0.767010195646435,-0.08334074355661869,-0.32243468472734094,0.23552805790677667,0.26458458695560694,0.9106067968532443,-0.7057301332242787,0.14356197649613023,-0.5875933803617954,0.9473763843998313,-0.12888713274151087,-0.03019170230254531,-0.49790474446490407,-0.9492997154593468,0.1657262365333736,-0.5387175059877336,0.5479996507056057,-0.6138972719199955,-0.2964015007019043,0.34108546236529946,-0.5910111954435706,-0.878589850384742,-0.6944116512313485,0.21250503091141582,0.4577161530032754,0.6293111001141369,0.7187980315648019,0.2854116805829108,0.5296181351877749,0.31925060832872987,-0.18182985624298453,-0.9219861985184252,-0.052800831850618124,-0.5175178847275674,-0.8262538444250822,-0.6060532233677804,0.3109215460717678,-0.40795142529532313,0.03640594519674778,0.29967190278694034,0.7430171682499349,0.17333190748468041,0.8336785146966577,0.6675950703211129,-0.6038915137760341,0.3070249571464956,-0.8401588937267661,0.005099307745695114,0.34454377368092537,0.8742285673506558,-0.4042727705091238,0.6202288949862123,0.9837979124858975,-0.21685988269746304,0.3631862485781312,0.7574029471725225,-0.20886831590905786,0.5779367429204285,-0.03996330592781305,-0.454612806905061,0.03809182159602642,-0.21107994904741645,-0.4503640113398433,-0.6393962614238262,0.27672772016376257,-0.6104680127464235,0.022823065519332886,-0.39518503099679947,-0.8169608018361032,-0.6706491447985172,0.6441840883344412,0.9321525669656694,-0.6400797278620303,-0.11668817605823278,0.7481348002329469,-0.5335632120259106,-0.8718434255570173,-0.8811915474943817,-0.2807478024624288,0.24174013314768672,-0.8274097265675664,0.8454793579876423,-0.6419194489717484,-0.834731035400182,0.11519839614629745,0.6226981617510319,0.9184999424032867,-0.8064719927497208,0.3521945090033114,-0.4306314289569855,0.009863646700978279,-0.3916049567051232,-0.9926575622521341,-0.34447694616392255,-0.19484453089535236,0.2557779075577855,0.967424139380455,-0.19189461832866073,-0.6568380892276764,-0.765377679374069,0.961682534776628,0.2559168981388211,0.3383462857455015,0.9341923207975924,-0.9503254699520767,-0.2845834996551275,-0.8494876194745302,0.02051765751093626,-0.9573360439389944,-0.13652115920558572,0.7085109455510974,-0.5409044111147523,0.9106831424869597,0.17061657598242164,0.9233518224209547,0.4899854143150151,0.24341216497123241,-0.7652776609174907,-0.58761538984254,-0.09731534915044904,0.0716745457611978,-0.4034331846050918,0.5954348631203175,0.6653293184936047,0.5944412248209119,0.0727084600366652,-0.7504621297121048,-0.4643365894444287,-0.7934408085420728,-0.7467341627925634,-0.725275635253638,0.511225167196244,-0.21924849599599838,-0.8243931331671774,0.9286207659170032,-0.9487196775153279,-0.6670966963283718,-0.24948031129315495,0.8502627778798342,0.06057098042219877,-0.22223323956131935,0.8509289221838117,-0.6276034908369184,-0.9183975257910788,0.05255122995004058,-0.13943856582045555,0.7929628593847156,0.9938686201348901,0.9739485802128911,0.26489998772740364,-0.48638365929946303,-0.49705831008031964,0.6684780046343803,0.7632200778461993,0.41618760069832206,-0.2832345487549901,-0.30929600866511464,0.042058784514665604,0.28278973745182157,-0.5822954839095473,-0.6635892912745476,-0.3984497240744531,0.2057114541530609,-0.11813435470685363,-0.44079795433208346,-0.3004488502629101,-0.6411731946282089,-0.5858032880350947,0.21008594939485192,0.4368843650445342,0.2280650269240141,-0.6534217693842947,-0.3820415008813143,0.004215240012854338,-0.5752965295687318,0.41183567186817527,0.46894245594739914,-0.1943112574517727,0.029702176805585623,0.8810925795696676,0.4374427548609674,-0.6735966536216438,-0.7719587674364448,-0.8638271340169013,0.4432262326590717,-0.2323057670146227,-0.5616847844794393,-0.7692310120910406,0.25158284045755863,0.38236206443980336,-0.8387040691450238,-0.09015897614881396,0.8312683175317943,-0.09895298257470131,0.023330984637141228,-0.11206176551058888,0.24989903531968594,0.6949894069693983,-0.1440089140087366,-0.7585944915190339,0.5681694094091654,0.6971087348647416,0.6888007060624659,-0.9783068629913032,-0.25399933010339737,0.056992086581885815,-0.9166598850861192,-0.20740386145189404,0.5543950125575066,-0.09910419397056103,-0.4288991056382656,-0.4258154835551977,0.2042069137096405,0.0567587660625577,0.9713176502846181,-0.05031736893579364,-0.3168851318769157,-0.5597363817505538,0.21187471831217408,-0.7129884781315923,-0.6445670872926712,-0.09087850200012326,-0.5883277300745249,0.6284823636524379,0.5651024268008769,-0.7406901023350656,-0.015388785861432552,-0.8415204822085798,0.07429390447214246,0.5060868123546243,0.9409410818479955,-0.7836016854271293,0.25174071872606874,0.5118695674464107,-0.36975589441135526,-0.7868861029855907,-0.009174477308988571,0.3471787143498659,0.5031873830594122,0.1618569092825055,-0.3887977609410882,-0.6862671007402241,-0.13891832111403346,0.9359834836795926,0.2527478588744998,0.7977948565967381,0.4667772348038852,-0.026795756071805954,-0.2784943301230669,0.4622825696133077,-0.38418772583827376,0.7035606135614216,-0.7122901189140975,-0.2640820322558284,0.9382313899695873,0.5900966366752982,-0.1917526568286121,0.40790449548512697,0.04454880300909281,-0.34997037099674344,0.7126158294267952,-0.8567790221422911,-0.31588596710935235,-0.09179652249440551,-0.0008851261809468269,-0.39188709761947393,-0.2651978489011526,0.4181592669337988,-0.2917819572612643,-0.2251938572153449,0.9880682877264917,0.13943543378263712,0.19482365623116493,-0.14397199545055628,-0.6625908073037863,0.8235014984384179,0.8987040384672582,-0.9079396142624319,-0.5456822458654642,0.7133364276960492,0.2094185263849795,-0.8504681875929236,0.9901315439492464,0.5515708513557911,0.14758018171414733,-0.6424921713769436,-0.5039699915796518,-0.4745526537299156,0.33511828957125545,-0.655693010892719,-0.644825461320579,0.2668544175103307,0.844150769058615,-0.8175423084758222,-0.04048025654628873,-0.3591996254399419,0.7640031147748232,-0.8175382064655423,0.20590154780074954,-0.2439709478057921,0.49259780533611774,0.27053945837542415,-0.19850341835990548,-0.9366383827291429,0.47603387013077736,-0.6174255041405559,-0.19259481085464358,0.28082710364833474,-0.31035437854006886,0.15803559310734272,-0.3803878859616816,-0.4183920053765178,-0.039967100601643324,0.7403586274012923,-0.3781361198052764,0.08173557789996266,-0.1752503435127437,0.19084451207891107,-0.005992505699396133,-0.8485143375582993,-0.8949437523260713,-0.38368947012349963,-0.292700694873929,-0.4796172948554158,0.03936790442094207,0.08505308208987117,0.8613085229881108,-0.9000828126445413,-0.828877470921725,-0.6944901165552437,-0.3082657251507044,-0.6666977084241807,0.04366301465779543,-0.0050839208997786045,-0.3722923225723207,0.06792710023000836,-0.3099240893498063,-0.1732669067569077,0.23996982211247087,0.6397221153602004,0.14625898469239473,-0.9422590252943337,-0.5116786863654852,0.6186253563500941,-0.3524427227675915,-0.6519631496630609,-0.006271678023040295,-0.8915010262280703,0.5515479319728911,-0.49458411429077387,-0.22584802703931928,-0.24891382548958063,0.15378415072336793,-0.3439364954829216,0.09108829312026501,-0.9637945992872119,0.5614248896017671,0.8428615741431713,0.1078115371055901,-0.9632749841548502,-0.8908802666701376,-0.5756188253872097,-0.8172858851030469,-0.6011643847450614,-0.8014407842420042,0.5187734114006162,-0.3918188917450607,-0.3453043708577752,-0.32706513488665223,-0.3026992683298886,0.7558737494982779,0.08859254466369748,0.3583313007839024,0.3764840611256659,0.07855395786464214,-0.9129028166644275,0.7586373230442405,-0.8400713931769133,0.9246751144528389,-0.32747966004535556,-0.9177514472976327,-0.9221512614749372,-0.7734812968410552,0.9130440829321742,-0.6950457314960659,-0.22603861801326275,-0.827959381043911,-0.8840544209815562,-0.5549256908707321,-0.5236250595189631,-0.7846588734537363,0.014849808998405933,0.0684851873666048,0.9541284330189228,-0.22086923802271485,-0.8444580654613674,0.7117997193709016,-0.3690984840504825,0.9297137800604105,0.6365465233102441,0.3255003625527024,0.945384749211371,0.9289879244752228,-0.4091397412121296,0.5933653730899096,0.28495647152885795,0.42445663921535015,0.25368594843894243,0.6969694835133851,0.5306239603087306,0.7825525882653892,0.4507289589382708,0.0493153715506196,-0.9326853267848492,-0.5077047874219716,0.6044332385063171,0.6386148235760629,0.8546426082029939,-0.7536742724478245,-0.43690271489322186,-0.412396302446723,-0.010065286885946989,0.694584256503731,0.9091565143316984,-0.1702578947879374,0.8173586335033178,0.10554260481148958,-0.2617512526921928,0.8975597652606666,0.21224168874323368,-0.445557891856879,0.03010649001225829,-0.5361191728152335,0.049120988231152296,0.17381939850747585,0.4473142144270241,-0.5667086872272193,0.5255875429138541,0.35440319823101163,0.2544756247662008,0.4907751604914665,-0.22236880380660295,-0.5134856486693025,-0.8441533837467432,0.4849594575352967,0.7166916686110198,0.9539937558583915,0.49724851874634624,0.8950911657884717,-0.8788239723071456,0.4886555918492377,0.21360057825222611,0.42872172221541405,0.08087225910276175,0.10094160307198763,0.36240624263882637,0.37590476172044873,0.878898894879967,0.4956079311668873,0.12533025722950697,-0.6227094540372491,-0.14406653819605708,-0.9600021811202168,0.5265519092790782,0.5849816557019949,-0.9157006056047976,-0.8678751364350319,0.5962292607873678,-0.7731775506399572,0.1662151524797082,0.5454111658036709,-0.850700194016099,-0.9766276604495943,-0.6535148401744664,0.4696874772198498,0.29096628865227103,-0.5693567441776395,0.26052791392430663,0.13950989581644535,0.7735937125980854,0.45623531797900796,0.46013801684603095,-0.2872640024870634,0.2577035604044795,-0.5764879062771797,-0.7738912748172879,-0.2535269199870527,-0.7848669970408082,0.8414400815963745,-0.11193392938002944,0.7287851464934647,0.6946023809723556,-0.3381440043449402,-0.8752092164941132,0.4642240786924958,0.8434185013175011,0.7782022603787482,-0.3669735318981111,-0.3859250722452998,0.3755961526185274,-0.8723621303215623,-0.06498267827555537,0.7322146347723901,-0.1502103554084897,0.12450344627723098,0.35144734755158424,-0.657331679482013,0.15588025469332933,0.282978733535856,-0.7545226267538965,-0.508513358887285,-0.657144911121577,-0.5928730214945972,-0.6569369295611978,-0.9118964243680239,0.8902909462340176,-0.47179291397333145,-0.1440370585769415,-0.009855072014033794,0.32528388826176524,0.8290207083337009,0.10181276872754097,-0.9862992130219936,-0.6303673484362662,-0.1080234213732183,0.6766307596117258,-0.49281205143779516,-0.8434281991794705,0.20395151106640697,0.7543967426754534,-0.6054633930325508,0.6591086876578629,-0.880032698623836,-0.725932402536273,-0.5890312273986638,-0.07759322226047516,-0.37115693325176835,-0.6059435699135065,0.5480960542336106,0.42057067016139627,-0.10570870339870453,0.9879399063065648,0.2440172927454114,-0.3287511607632041,0.7851037690415978,0.433615458663553,0.2088939594104886,0.7539157774299383,0.8468211865983903,-0.5507435947656631,-0.3038929528556764,0.7079376811161637,-0.40154385939240456,0.43967509595677257,0.9539763927459717,-0.4452764089219272,-0.6977002001367509,0.5653250659815967,-0.9467557319439948,-0.8131757345981896,0.25899147195741534,0.1179076386615634,-0.4477314278483391,0.6565048317424953,-0.4066713145002723,-0.06028240732848644,0.15814541233703494,0.967446191702038,0.810527557041496,-0.8567888583056629,-0.845716567710042,-0.5394030148163438,-0.37680674716830254,0.19066596869379282,0.4886483638547361,-0.5260806013830006,-0.05590467946603894,-0.7330181039869785,-0.8880088184960186,0.03075073752552271,-0.14887149119749665,0.46130076376721263,0.9415887389332056,-0.09785264451056719,0.16059713857248425,0.5907544381916523,0.004982565995305777,-0.3958286833949387,0.14649209519848228,-0.5344548388384283,0.0031085587106645107,-0.6421375721693039,-0.8070783549919724,-0.02810492552816868,0.3532102396711707,-0.33129603508859873,-0.24527909373864532,-0.20415033912286162,0.9844667832367122,0.5294523858465254,0.7317546317353845,-0.42515555303543806,0.8054379811510444,0.17743881326168776,-0.7200562902726233,0.6884572473354638,0.622580430470407,-0.20316572533920407,-0.8352331561036408,0.8636187762022018,-0.1286989152431488,-0.8933861167170107,-0.4388513253070414,-0.6667880988679826,-0.20552066853269935,0.6820985050871968,0.12134676892310381,-0.3366686091758311,0.0639751860871911,0.14741797791793942,0.7299685426987708,0.5258276551030576,0.14904519449919462,-0.7843513200059533,-0.8224921561777592,-0.8042371557094157,0.5001545026898384,-0.04096841998398304,-0.33583279699087143,-0.5283368066884577,-0.16372962528839707,0.2838738444261253,0.2479699649848044,-0.16549647552892566,-0.6854543187655509,0.3529591606929898,0.923472951631993,0.8069832380861044,-0.15325729176402092,0.9099608892574906,0.18353933794423938,-0.21619930304586887,0.4678812422789633,-0.16067394008859992,-0.9247485958039761,0.7722923313267529,-0.33239053608849645,-0.1830041971988976,-0.5757682849653065,-0.8797459723427892,-0.5712432190775871,0.13147292751818895,0.8704137546010315,-0.835511889308691,-0.9418262653052807,-0.9797860733233392,-0.24374298145994544,0.17305376240983605,0.3780495775863528,-0.7988060913048685,0.2923477371223271,-0.19241579296067357,-0.31790709402412176,0.18596126278862357,0.9745692000724375,-0.6278934883885086,-0.16038417303934693,0.3447571746073663,-0.3630213076248765,-0.769332102034241,0.08177193999290466,-0.0029980596154928207,-0.9594063004478812,-0.1218268652446568,0.9992826380766928,-0.4946739315055311,0.40369122568517923,-0.24995538033545017,0.539046720135957,-0.8993535558693111,0.7663338580168784,-0.665737203322351,0.6323573780246079,0.0423061503097415,-0.9908663132227957,-0.12574902782216668,-0.9743065633811057,0.6500656353309751,0.7590824943035841,0.05046617239713669,-0.1812616055831313,-0.22768352180719376,0.17736843833699822,-0.01839596824720502,0.7704992690123618,-0.5834534680470824,0.3007717481814325,0.10205626161769032,-0.3676977176219225,0.8512913221493363,-0.28285207599401474,0.25150882359594107,0.05845588119700551,-0.3370163468644023,0.6356892809271812,-0.24935859721153975,-0.09596246061846614,-0.25565947219729424,0.08629886992275715,0.115456054918468,-0.1605417081154883,-0.757716785185039,-0.8896005721762776,-0.3546711946837604,-0.471032006200403,0.2188714575022459,0.06424643471837044,0.9602671549655497,-0.21349397022277117,-0.2757458910346031,-0.7404402187094092,-0.3406005990691483,0.43339194543659687,-0.8653303966857493,-0.37490831268951297,0.49685953883454204,0.8052768814377487,0.8560085408389568,0.6776872714981437,-0.0749361589550972,-0.18700756039470434,-0.7872969936579466,-0.00807590875774622,0.2013312359340489,-0.4085319503210485,0.9339234228245914,0.8693713895045221,-0.8117408151738346,-0.47596442233771086,0.7284868420101702,-0.769877624232322,-0.07501951977610588,0.7712811091914773,-0.44376646634191275,-0.6778853917494416,-0.7923152446746826,0.12114645913243294,0.8843933027237654,-0.45323376543819904,0.714853395242244,-0.5852567739784718,-0.0072951181791722775,0.4455827767960727,0.3635707749053836,-0.050417971797287464,0.4597249599173665,-0.5524054691195488,0.23356147157028317,0.738764236215502,0.9732323163188994,-0.6839598743245006,-0.8629136849194765,0.24547572899609804,0.29439258528873324,0.42967972019687295,0.1491513722576201,0.18988273851573467,0.7032054713927209,-0.4491597916930914,0.908274236600846,-0.955988063942641,-0.5859172577038407,-0.5855192365124822,-0.3390707434155047,-0.6309593305923045,0.8485896708443761,-0.9274114510044456,0.6441291444934905,-0.5869189291261137,-0.6290589007548988,-0.11518365237861872,0.4869002439081669,-0.7637742077931762,0.9608242963440716,0.09948359383270144,-0.6219976344145834,-0.4750886666588485,0.004278732929378748,-0.049652325455099344,0.21739667793735862,0.632779092527926,0.9800617024302483,0.5964916227385402,0.8366735521703959,0.393949406221509,-0.526953674852848,-0.5381741169840097,-0.8618479683063924,0.2855380615219474,0.5406415732577443,-0.6821092460304499,-0.5416728062555194,-0.8266131985001266,0.6980260647833347,-0.5544657856225967,-0.6838533012196422,-0.9509448613971472,-0.9433826105669141,0.8492979500442743,-0.27990367403253913,0.8527949694544077,0.7417958495207131,0.21835219580680132,0.21585979452356696,-0.574727057479322,0.5165333203040063,0.2707532215863466,0.13213835237547755,0.38471529772505164,-0.7906303745694458,0.06685984786599874,-0.7946298983879387,-0.4198317746631801,0.2105082282796502,-0.1614207192324102,0.628184596542269,-0.09116709046065807,0.15391822392120957,-0.6786619988270104,-0.31436384469270706,-0.42479866463690996,0.21919030416756868,-0.06715814350172877,0.9005879326723516,0.4430296150967479,-0.18375905510038137,-0.35962146800011396,0.1790820835158229,0.3987090392038226,-0.9199926420114934,-0.5299115311354399,-0.09908739849925041,-0.4046842739917338,-0.851369802840054,-0.3398332968354225,0.5619870643131435,-0.2808858104981482,-0.32632654486224055,-0.7755949459969997,0.4958734861575067,0.14091097423806787,-0.7286426834762096,-0.21845551719889045,0.7321010478772223,0.16641056863591075,-0.3084533833898604,0.19464397337287664,-0.24722775863483548,0.1886089639738202,0.3407044201157987,0.4889715639874339,-0.9126168955117464,-0.6437633610330522,0.7596102622337639,-0.06054122047498822,0.6864431030116975,-0.31154844257980585,0.1124018868431449,0.903018007054925,0.2613526787608862,-0.2754751769825816,0.5852124742232263,0.6173985600471497,-0.6928132497705519,-0.1308905715122819,0.7872052798047662,-0.6981652909889817,-0.41179979871958494,-0.2646463867276907,0.7866738839074969,0.10154865821823478,-0.08182057878002524,-0.7767856856808066,0.4081513616256416,-0.07761942176148295,0.6656004460528493,-0.6717755859717727,0.6432675244286656,0.44656526762992144,0.26351491501554847,0.5570725714787841,-0.7522384566254914,0.2453481857664883,-0.15592034300789237,-0.9070517127402127,0.2262099590152502,-0.9575777878053486,-0.5247228741645813,0.6771317198872566,0.6843183618038893,0.7200723555870354,0.7679310273379087,0.6728028790093958,0.11052395589649677,-0.5811194898560643,0.3250909843482077,0.8039641510695219,-0.795376158785075,-0.9901789962314069,0.47691876301541924,-0.05078064417466521,0.050656861159950495,0.963862067554146,0.06133654620498419,0.955846247728914,-0.5357012399472296,-0.4849605900235474,-0.8884517541155219,-0.6236834735609591,0.17214108211919665,-0.8655636068433523,0.4579795142635703,-0.6763320127502084,-0.08690163679420948,-0.21949306083843112,-0.08443316863849759,0.37236735271289945,-0.5114677362143993,-0.958960747346282,-0.8500492325983942,-0.797623650636524,0.9421380390413105,0.7963318531401455,0.6821354911662638,0.8879309105686843,-0.28428175672888756,-0.9820723319426179,-0.24119659326970577,-0.3387273335829377,0.8281756369397044,0.8727815253660083,0.3508993899449706,0.2361468463204801,-0.12755260290578008,-0.28651899099349976,0.328714566770941,-0.0811227229423821,-0.9726007804274559,-0.33537175646051764,0.31769860396161675,-0.24922558153048158,0.9280839669518173,-0.55306242313236,0.7365221036598086,-0.09745535394176841,-0.5386351305060089,-0.5604690369218588,-0.4067399110645056,0.20303624821826816,0.6807202063500881,-0.7484497060067952,0.7120012305676937,0.17374426126480103,0.6745957033708692,-0.2490193354897201,-0.0896977479569614,-0.6486396663822234,-0.7319224826060236,-0.8891582023352385,-0.18381141684949398,-0.9165277262218297,-0.43168766889721155,-0.8703549355268478,-0.6191418506205082,-0.8161490513011813,0.8269965127110481,0.5719796470366418,0.10105068795382977,-0.43292552791535854,-0.9352741464972496,0.3823101604357362,0.6987800030037761,-0.9965196345001459,-0.5389138241298497,-0.8957001841627061,-0.33166159922257066,0.004551596939563751,0.052242664620280266,-0.4124666634015739,-0.09588614385575056,-0.36654194025322795,0.6406671716831625,-0.7507035881280899,0.22915885178372264,-0.9887428786605597,0.216615985147655,0.975204820279032,0.6911654020659626,-0.562523974571377,-0.6938207875937223,0.6351276426576078,0.6786715402267873,0.9501473628915846,0.29595747869461775,0.6609426713548601,-0.3525194991379976,0.04053966887295246,-0.008516354952007532,0.42947148717939854,-0.7807733658701181,0.4475206942297518,-0.3458549021743238,-0.8199083409272134,0.3494378933683038,-0.4230644158087671,0.6298281187191606,-0.7634734129533172,-0.3565254360437393,0.9824949749745429,-0.8685684096999466,0.12549600191414356,-0.3754872768186033,-0.17182264337316155,-0.41726289689540863,-0.10882456926628947,0.6610217010602355,-0.23952093115076423,0.867191419005394,-0.5936576351523399,-0.1299119465984404,-0.049379125237464905,-0.6783861448056996,-0.1544771958142519,0.4564991178922355,0.06966675538569689,-0.7024271683767438,0.9154426488094032,-0.25404222030192614,-0.2914433074183762,0.3388987355865538,-0.5584269715473056,0.351974424906075,0.9929033243097365,-0.29480567248538136,0.3797964840196073,-0.8053793106228113,0.9965229681693017,0.5186463994905353,-0.9789852160029113,-0.4985827160999179,-0.8784402329474688,0.37417845660820603,-0.6278808824717999,0.7530419924296439,0.05446121655404568,0.406900433357805,0.6774346921592951,0.5813118880614638,0.21607954241335392,0.7447580993175507,-0.7187418816611171,-0.2552994475699961,-0.17361079156398773,-0.6418687398545444,-0.13776529487222433,-0.5640864572487772,0.943118516355753,-0.9237113399431109,-0.7286129617132246,0.7167689893394709,-0.15927182603627443,-0.41899114940315485,-0.19098411966115236,-0.41729771811515093,0.5880839279852808,-0.3586162170395255,-0.8274141028523445,-0.06423468608409166,-0.6078109703958035,-0.462513021659106,0.4767924095503986,0.5003234026953578,0.9256901564076543,0.8593289125710726,-0.9661690965294838,-0.8947961707599461,0.9773146482184529,0.5854382878169417,0.4200888006016612,0.8733288631774485,-0.18819376779720187,0.7149132769554853,0.015797972213476896,-0.28993991296738386,0.8615209879353642,-0.2944274730980396,-0.6698903036303818,0.39592170249670744,0.25181442499160767,-0.7158757564611733,-0.8405521269887686,0.6940080435015261,0.8819408975541592,0.7353478157892823,0.4626409555785358,0.4585205689072609,-0.7820288557559252,-0.31588399689644575,-0.3798903743736446,0.17843390395864844,0.11022561276331544,-0.3436719118617475,-0.6728161373175681,0.1300961929373443,-0.08286616159603,-0.717421239707619,0.17761221108958125,0.4185797106474638,-0.27617369312793016,-0.1158345527946949,-0.8619451303966343,-0.09286394156515598,0.5762947057373822,-0.31867062393575907,-0.870305665768683,0.8415599442087114,-0.9340072963386774,-0.6942636137828231,0.12935581430792809,-0.2620650390163064,0.6403486831113696,-0.30203375965356827,0.3669525352306664,-0.2565338616259396,0.7764266915619373,0.23784106457605958,-0.3145615649409592,0.6478063515387475,-0.9601934072561562,-0.7452176827937365,0.2681503323838115,-0.6428420157171786,-0.643139059189707,-0.7275114511139691,0.3620833302848041,0.6729422425851226,0.6052400809712708,-0.3948869560845196,-0.44484464498236775,-0.5289944242686033,0.7112725782208145,0.26052958657965064,-0.7887654812075198,-0.9707152470946312,-0.15243622148409486,0.5056916531175375,0.9234746536239982,-0.3324965229257941,-0.962153019849211,0.5061304322443902,-0.16039906069636345,0.3500208230689168,-0.6748799001798034,-0.39452288998290896,-0.7125512668862939,-0.1633688029833138,-0.43798976205289364,0.5535771548748016,0.031634122133255005,0.1774134710431099,-0.6183690768666565,0.6729300450533628,0.9613840794190764,-0.21282687271013856,-0.5558235966600478,-0.9809187059290707,0.6818352215923369,-0.7297468408942223,0.2478207373060286,0.4235536786727607,-0.06487937970086932,0.9902081750333309,-0.6640122327953577,0.7348069283179939,-0.8590183439664543,0.729091021232307,-0.36123301228508353,0.9587680194526911,0.4890544731169939,-0.06938853533938527,0.14934455649927258,-0.9342193440534174,-0.8767212671227753,-0.2910136776044965,-0.8191737635061145,0.8538698088377714,-0.6967634442262352,-0.7986622145399451,-0.17276604985818267,0.046362478751689196,-0.23446055175736547,0.9091578843072057,-0.9687534170225263,-0.4809680781327188,-0.6489494936540723,-0.802572219632566,0.9732861281372607,0.05410017538815737,-0.9768415540456772,-0.7322946172207594,-0.18615481164306402,-0.8372792028822005,0.08857971848919988,0.23218269180506468,-0.23204532265663147,0.5143524766899645,-0.7443236457183957,-0.0073815821669995785,-0.8766905614174902,0.31755904387682676,0.5276224534027278,-0.9874227889813483,0.029342881869524717,0.27392639219760895,0.298810048494488,-0.040647830348461866,-0.6946819652803242,-0.9386550057679415,0.34129913384094834,-0.008860558737069368,-0.7055203435011208,-0.7373869796283543,-0.4342169058509171,-0.7603153651580215,-0.48977072862908244,-0.12939479434862733,-0.04203227395191789,-0.31997179379686713,0.9368812781758606,0.5242267730645835,-0.5612054220400751,0.3561225142329931,0.5627178042195737,0.9992553894408047,0.5381768234074116,-0.17818464525043964,0.3823610660620034,-0.2747837183997035,0.281139615457505,0.806884418707341,0.814866119530052,0.5020301658660173,-0.8345409231260419,0.6018437454476953,-0.8065119120292366,-0.1897177747450769,0.7998548983596265,-0.4427501242607832,0.2117179213091731,0.7179262544959784,0.2924479516223073,0.17800332605838776,0.012328512500971556,0.6447085621766746,-0.38008607598021626,-0.859650582075119,-0.014079713262617588,-0.3657464478164911,0.5771825890988111,0.8192426422610879,0.2985515012405813,-0.14124054787680507,0.4468587921001017,0.2584323789924383,0.6699732262641191,-0.11324837198480964,-0.8786469879560173,-0.5453952243551612,-0.841821531765163,-0.6234977976419032,-0.9635946624912322,-0.3534411685541272,-0.6971495635807514,0.7658487958833575,0.6669669086113572,0.09403694467619061,-0.7017920985817909,-0.12518981099128723,-0.041956682689487934,0.27788203535601497,-0.1408541239798069,0.45066799176856875,-0.8403610596433282,0.21106425719335675,0.6747932126745582,-0.6222252543084323,0.4913157681003213,-0.548229182139039,-0.6932940050028265,-0.3695536144077778,0.19366126507520676,0.8577448488213122,-0.7683133501559496,-0.07476504379883409,-0.11749000707641244,-0.09057163400575519,0.5653551863506436,-0.41642233496531844,-0.22873038239777088,0.4438894847407937,-0.6798198609612882,-0.62194649502635,0.7604724867269397,0.08676194865256548,0.9596279212273657,-0.26997533766552806,-0.34353084536269307,0.745103563182056,0.4971109079197049,-0.5303850760683417,-0.906254468485713,-0.9712497093714774,-0.957338001113385,0.1507089058868587,0.9987537958659232,-0.017001615837216377,0.15389979118481278,-0.10608556214720011,-0.6619137930683792,-0.19417502218857408,0.3300719908438623,-0.12139786360785365,0.6066505652852356,-0.12171367183327675,0.6359362220391631,-0.5440140157006681,0.4787773140706122,0.6763169909827411,0.6877808547578752,-0.7732041133567691,0.7429996849969029,-0.06358025502413511,-0.11600384954363108,0.17438179720193148,-0.44277767837047577,0.7205863799899817,-0.2169513525441289,-0.8469279739074409,0.4494026377797127,0.04657546849921346,-0.86205446254462,0.0535722398199141,-0.18075227225199342,0.3658916442655027,-0.9822876923717558,-0.6729414761066437,-0.32323538046330214,-0.47909515304490924,0.7740349494852126,0.5853675766848028,0.6766862221993506,0.4057826488278806,-0.5534767531789839,0.9471951089799404,0.6632658862508833,-0.012508971616625786,0.16784915374591947,0.9408969036303461,0.18557411851361394,-0.5017584534361959,0.6037940001115203,0.565197367221117,0.6278746356256306,-0.8616422363556921,0.9787930562160909,0.8610144262202084,-0.10228552343323827,0.6088895401917398,0.654919012915343,0.9056731816381216,-0.5107774180360138,0.35317886946722865,0.990498973056674,0.0796320722438395,0.696567926555872,0.45349953323602676,-0.05550889717414975,0.7552961115725338,-0.547177866101265,0.6415932546369731,0.7457286091521382,0.21145739359781146,0.08086024317890406,-0.006781515199691057,-0.6540170442312956,-0.35083336802199483,0.0793716604821384,0.06731338892132044,-0.2724859113804996,-0.43191473791375756,0.20161891635507345,-0.7421280508860946,0.09551411541178823,-0.5369474240578711,-0.3137814737856388,-0.521746214479208,0.6043560015968978,-0.02890170831233263,0.1272408259101212,-0.09074979042634368,-0.5932640051469207,0.597205572295934,-0.36944581335410476,-0.4883296196348965,-0.235724575817585,0.1340120560489595,0.7698800289072096,0.5826883693225682,-0.17063491931185126,0.38797178911045194,0.4636100269854069,-0.377194544300437,-0.1934079802595079,0.8158830688335001,-0.6229080827906728,0.29092063708230853,-0.7988343085162342,-0.08965938910841942,0.5661476077511907,0.15737480530515313,0.6877859234809875,0.10157848428934813,-0.3062035068869591,-0.7182609178125858,0.8229258866049349,-0.8208021898753941,-0.33199712447822094,0.017752292100340128,-0.9640036281198263,0.26564384158700705,-0.09401329420506954,-0.7014775122515857,0.23288687085732818,-0.3743275557644665,0.06816972931846976,-0.3291990431025624,-0.2667754590511322,0.017422070261090994,0.35620561242103577,0.508057196624577,-0.02937469119206071,0.7607608609832823,-0.1457187128253281,-0.7396226683631539,0.6636190144345164,0.08545216312631965,0.5671726642176509,0.1971237394027412,-0.672214019112289,-0.33212485210970044,0.4395858966745436,0.17606178112328053,-0.3831951362080872,-0.6456959065981209,-0.42580934101715684,-0.9681650148704648,-0.6013412694446743,0.5538790044374764,0.4339988837018609,0.8049457678571343,-0.09269635751843452,-0.042457007337361574,-0.2235097368247807,-0.024122529663145542,0.8429760201834142,-0.2509014029055834,-0.985982199665159,0.2480276650749147,0.8869103440083563,0.07309132535010576,0.4969532135874033,-0.021186848171055317,0.18104470986872911,-0.43246772373095155,-0.6535929595120251,-0.36051618959754705,0.061024609953165054,-0.5604037903249264,-0.6630754144862294,-0.40548786567524076,0.9472368941642344,0.5469618341885507,-0.05464287381619215,-0.02617468126118183,0.48288270365446806,-0.9386589373461902,-0.003889951389282942,-0.7173545174300671,-0.9531259317882359,0.43800121918320656,-0.9936455669812858,-0.7478295122273266,0.07648102240636945,0.7400323948822916,-0.17491326294839382,0.49755068961530924,-0.02966649318113923,0.48405888862907887,0.48212685575708747,0.0030746390111744404,-0.2782046445645392,-0.36976443184539676,0.3688024072907865,0.7208749619312584,-0.4792802082374692,-0.8558165058493614,0.5454904516227543,0.5067465109750628,0.6965396357700229,0.6650859736837447,0.8883447726257145,0.17392288707196712,0.22581861866638064,0.4211735953576863,0.5720274676568806,0.7413283954374492,0.7931061726994812,-0.3501280811615288,0.23280281713232398,-0.852034570183605,-0.2532768710516393,-0.9314515609294176,-0.10303479665890336,-0.16385379573330283,0.026322973426431417,-0.6901366929523647,-0.945813188329339,0.3695704978890717,-0.41557120019569993,0.9397028023377061,0.9373951116576791,-0.47489363234490156,0.6795777273364365,0.700497929006815,0.41473741503432393,-0.1981423618271947,0.2247728812508285,-0.3565180376172066,-0.18123680260032415,0.38501360919326544,0.4476346098817885,-0.9564413060434163,-0.7889076843857765,-0.6950519885867834,-0.4184855120256543,-0.47688546869903803,-0.41855895845219493,0.7008384256623685,-0.49033074267208576,-0.34436860540881753,0.6107417927123606,0.953164896927774,-0.7536794138140976,-0.48360325023531914,-0.5490616052411497,-0.2939996551722288,-0.2044942700304091,-0.6564579168334603,0.19706476107239723,-0.8605566448532045,0.7651346661150455,-0.3080278718844056,-0.47797253308817744,-0.31079650996252894,0.40413637552410364,0.2711189682595432,-0.036525804083794355,-0.81219750829041,-0.6105276197195053,0.2580845598131418,-0.24123560125008225,-0.470929556991905,0.3139933370985091,-0.541492975782603,-0.7608786644414067,-0.6947697657160461,-0.34871682804077864,0.6510593881830573,-0.4613381903618574,0.27106875739991665,-0.0009736544452607632,0.6334439581260085,-0.13959203427657485,-0.5243661538697779,0.39184971572831273,-0.7042531645856798,0.8451255420222878,-0.09874544013291597,-0.439759963657707,0.32819581404328346,-0.7092866273596883,-0.6908409385941923,0.020883086137473583,-0.5629111682064831,-0.09017602633684874,0.10526111954823136,-0.4333882760256529,0.730560387019068,0.456360150128603,0.5012422557920218,-0.858384792227298,0.26593418372794986,0.37264123233035207,-0.30194659996777773,-0.5051056654192507,-0.6442707949317992,0.4744870509020984,0.3430255353450775,-0.8330793282948434,0.5333773782476783,0.8949961541220546,0.5114733153022826,-0.6388542903587222,0.5361758316867054,-0.05602720798924565,0.6460340693593025,-0.48603620706126094,0.6618315828964114,0.3108205213211477,-0.9345066072419286,-0.5281818872317672,0.9986980590038002,0.8176029357127845,-0.5650053140707314,-0.21408010739833117,-0.02814654866233468,0.906887517310679,0.7024564654566348,0.6839897925965488,0.7683172426186502,-0.2864694790914655,-0.07772174524143338,-0.18005925929173827,0.6869006920605898,0.41458686953410506,-0.021391447633504868,0.8235172610729933,-0.8393370918929577,0.6755973710678518,0.7531673274934292,-0.34245899179950356,0.25329128932207823,0.36113253654912114,0.8389807995408773,-0.7174030533060431,-0.2898297938518226,-0.6107845744118094,-0.08093235129490495,0.19285900378599763,0.8524726964533329,-0.7142000729218125,0.5367936212569475,0.33541700849309564,0.8525601853616536,0.06577386101707816,0.7490552961826324,-0.6325241522863507,0.6657073805108666,-0.16237075766548514,0.5028160004876554,-0.16321827378124,-0.9817372285760939,0.16145392321050167,-0.11864759540185332,0.9461113293655217,-0.7643403704278171,0.5163262225687504,-0.15093335276469588,0.722698540892452,-0.6362884123809636,0.21593539649620652,-0.6629640320315957,-0.9795917593874037,-0.271536442451179,0.6786466566845775,0.9065461000427604,-0.31322671892121434,0.7628667475655675,-0.1438210248015821,-0.29085917212069035,-0.2995797712355852,0.4252501972950995,-0.23549061454832554,-0.8696443317458034,0.5019971281290054,-0.6978333201259375,-0.3843327988870442,0.32185230031609535,-0.30683319736272097,-0.8001613165251911,-0.36035335808992386,0.36749762250110507,-0.4610288511030376,-0.3987842760980129,0.8201366038993001,-0.5708981100469828,0.5885691498406231,-0.03161202557384968,0.9064859659411013,-0.34054012363776565,-0.2604451719671488,-0.3770652124658227,-0.7247843756340444,-0.6014190744608641,0.13165943324565887,0.3535918132402003,-0.8068084893748164,0.8579175942577422,-0.5047209206968546,-0.11396214365959167,-0.7170396307483315,-0.589292804710567,-0.4103375719860196,0.01140658836811781,0.4496545987203717,-0.9158235806971788,0.42598260566592216,0.5759442914277315,0.6786778722889721,0.3652207632549107,0.4507120121270418,-0.6693347692489624,-0.5322449202649295,-0.19792244490236044,0.2729617655277252,-0.4611672339960933,-0.4106005155481398,0.10697715962305665,-0.5260054357349873,-0.5089911096729338,-0.6379780592396855,-0.6680279583670199,-0.8504144139587879,-0.765861792024225,0.7284338143654168,0.9446584135293961,-0.11453734757378697,0.344465141184628,-0.3324974561110139,-0.3141001877374947,-0.23489430593326688,0.3075519297271967,0.27200817689299583,-0.859205674380064,0.9638494257815182,0.970210017170757,-0.3913154751062393,0.47810800885781646,-0.8209922187961638,0.27773019997403026,0.13406178215518594,-0.8865344082005322,0.8978010774590075,-0.7901497320272028,-0.3361739553511143,-0.5428353967145085,0.6925686975009739,0.13705782871693373,-0.43758129281923175,0.6008036634884775,-0.515453829895705,-0.9598532887175679,0.7533552967943251,0.6147540770471096,-0.9087464078329504,-0.7501144278794527,-0.3349992143921554,0.9668399370275438,0.7922852244228125,-0.06854256801307201,0.09265042282640934,0.2442050571553409,0.2624870468862355,0.9915637075901031,0.710843957029283,-0.0031830333173274994,0.7120250584557652,0.25263522239401937,-0.2968560825102031,-0.5337583259679377,0.6893695970065892,-0.8960610195063055,-0.10483781201764941,-0.43167146993801,0.6863308390602469,-0.7441771333105862,-0.2877212022431195,0.4401707504875958,-0.11748858587816358,-0.18486864026635885,-0.28212701668962836,-0.5509546459652483,0.9472270742990077,-0.08484624978154898,0.673391223885119,-0.912584044970572,-0.7278889468871057,0.7359175910241902,-0.04465188644826412,-0.8939402047544718,0.027547632344067097,0.11712836846709251,-0.40621413150802255,-0.5977356992661953,-0.09233488095924258,0.8802233310416341,0.06716590467840433,0.6028000684455037,0.7943531991913915,0.03546043438836932,0.7973948088474572,0.8335696081630886,0.5731533588841558,0.18780369544401765,-0.5631527341902256,-0.27578123891726136,-0.7206338243559003,-0.7910708938725293,0.7026689825579524,-0.9734987206757069,-0.9875307618640363,-0.9489431502297521,-0.024840157944709063,0.33523087995126843,0.18768500117585063,-0.8930842070840299,-0.17241568583995104,0.37089976109564304,0.6123394616879523,-0.316131382714957,0.6880729543045163,-0.3523936215788126,-0.9918334949761629,-0.10825552977621555,-0.9539051563479006,0.981405125465244,0.4280089442618191,-0.4641288332641125,-0.22676413599401712,0.8680800488218665,-0.9460320333018899,-0.6661069616675377,0.47792634507641196,0.09906206838786602,0.12167415674775839,0.39203573064878583,0.4559732675552368,-0.27942410856485367,-0.06582243973389268,0.4473607181571424,-0.8126957109197974,0.77101322542876,-0.03729277569800615,0.20098778419196606,-0.48835784243419766,0.5277500716038048,-0.8845486580394208,0.7248404799029231,0.13920118007808924,0.02123665250837803,-0.39182659005746245,-0.2103653154335916,0.10688448464497924,0.8178126914426684,-0.009154761210083961,-0.36706128157675266,-0.05092389415949583,-0.6044632392004132,-0.08496539434418082,0.9844661918468773,-0.6817667470313609,-0.9031192460097373,-0.8296830477192998,-0.8404170884750783,-0.25380864180624485,-0.0920870597474277,-0.579404026735574,0.5080017941072583,-0.4488424211740494,-0.6998916417360306,0.824852732475847,-0.8995069502852857,-0.3201855281367898,-0.7923345481976867,0.3665339252911508,0.9917403943836689,-0.05515024624764919,0.5211109523661435,-0.8518074969761074,0.6998814917169511,0.1283192541450262,0.11004360020160675,-0.4480294641107321,-0.18157939799129963,0.538849018048495,-0.16734232706949115,0.6142219370231032,0.27039964497089386,0.9771392219699919,0.9999064682051539,0.05963740078732371,-0.4123451365157962,-0.2210024851374328,-0.23969637835398316,-0.5605267486535013,-0.8443843070417643,-0.012086812406778336,0.40724383015185595,-0.3973177960142493,-0.7012170162051916,-0.03211522940546274,0.6163885518908501,0.23124462366104126,0.5358897764235735,-0.43484432622790337,0.5459680077619851,0.6020606998354197,-0.9267771379090846,0.03985839430242777,-0.22363343136385083,-0.5248351013287902,0.08581387251615524,0.5691466918215156,-0.7387613002210855,0.4647576813586056,-0.15128262108191848,0.2726884000003338,-0.865508587565273,-0.4183142832480371,0.7219040356576443,-0.05258533684536815,0.5238369596190751,-0.48109242459759116,0.4734229575842619,0.04576347069814801,-0.7576989023946226,-0.016932640224695206,-0.19131020084023476,-0.19953953754156828,0.046568144112825394,0.5625120485201478,-0.7370793707668781,-0.5288123590871692,0.5661923745647073,-0.3297308315522969,-0.8367957267910242,0.09097183542326093,-0.6272394130937755,0.1167543763294816,-0.8732521599158645,-0.8903989512473345,-0.3841630034148693,-0.10597810428589582,-0.49472991190850735,0.2763383686542511,-0.8900982770137489,0.690922467969358,0.5539849572815001,-0.4314627265557647,-0.4596061431802809,-0.4529360858723521,-0.9820178048685193,0.624512666836381,0.6969064050354064,0.36016214173287153,-0.9798049023374915,-0.7168037504889071,-0.1516379085369408,0.3424784750677645,-0.6322029209695756,0.6122318529523909,0.47451803646981716,-0.6025194665417075,0.20337261725217104,0.03612801479175687,0.4666452016681433,0.5477412226609886,-0.9788829614408314,0.8965174984186888,0.7078091157600284,0.9411351676099002,0.44873853400349617,-0.30884254025295377,0.5412853341549635,-0.5406596879474819,0.38829601602628827,-0.23422525729984045,-0.42533179791644216,0.39655238669365644,0.29971991619095206,-0.4427987043745816,0.826102520339191,0.3792693531140685,-0.717155359685421,0.4398124939762056,-0.5743536660447717,-0.8353070239536464,-0.9262323221191764,-0.8620868241414428,0.6469493051990867,-0.42170178471133113,0.6732886172831059,0.18776493659242988,0.432709027081728,-0.6986685208976269,0.9093819074332714,-0.6296856473200023,0.21847570734098554,-0.9258551066741347,0.6279029254801571,0.3830458954907954,-0.9916586908511817,-0.19015735015273094,0.8174194432795048,-0.17583797918632627,0.5881188064813614,0.28624268993735313,0.5347815901041031,0.6500703413039446,0.7185660931281745,-0.7526740632019937,-0.5380115322768688,-0.17276207590475678,0.6017725388519466,0.05044050281867385,0.7695956728421152,0.09155533276498318,0.04140067473053932,0.2897079703398049,0.8448447016999125,0.23348099924623966,-0.03785759583115578,0.7385234693065286,0.748257880564779,0.7195117003284395,-0.8586174622178078,-0.3991509694606066,0.04282510979101062,0.8417000682093203,0.849921464920044,-0.6431673699989915,-0.24212563317269087,-0.671302838716656,0.5463424129411578,0.6614138754084706,0.6092948266305029,-0.0746652320958674,0.1300501124933362,-0.050524568650871515,-0.16609675530344248,-0.7654716898687184,-0.7504808530211449,0.8160031829029322,-0.6269630980677903,0.1917282696813345,-0.5699454294517636,-0.45369694055989385,-0.23147038277238607,-0.12220918713137507,-0.788832395337522,0.9968643300235271,0.8555715284310281,0.12776773516088724,-0.28889701049774885,-0.9744900777004659,-0.1138530746102333,0.5176172577776015,0.6695498116314411,-0.06429239548742771,-0.5442963014356792,0.9671739572659135,0.9609550745226443,0.17052957089617848,-0.853621780872345,0.8983552032150328,0.6343572954647243,0.5482035242021084,0.12300973013043404,0.9529634090140462,0.8118021306581795,0.6329592987895012,-0.874267945997417,0.5600273553282022,0.4486235659569502,0.8393663805909455,-0.4578894763253629,0.6904994207434356,0.8177499463781714,-0.05439526494592428,0.11771558923646808,-0.5955981649458408,0.45966419810429215,-0.7499761530198157,-0.35630975756794214,0.6287942039780319,0.773112949449569,-0.5250970711931586,-0.5946951941587031,-0.9584314189851284,-0.2523498316295445,-0.037260171957314014,-0.7461111308075488,-0.04721341701224446,-0.17987168719992042,-0.8568796794861555,0.005204164423048496,-0.491908292286098,0.3869709223508835,0.7214109059423208,-0.0046593439765274525,0.9465001379139721,-0.6660888609476388,-0.6893289899453521,0.06473734229803085,-0.9716328759677708,0.04857871402055025,-0.3095094636082649,0.9772862303070724,-0.8740473100915551,-0.8576337271369994,0.39920027228072286,-0.47532677138224244,0.7525735287927091,-0.9490986075252295,-0.2897611605003476,0.10303506162017584,-0.8418060564436018,-0.8914067419245839,0.7964292145334184,-0.9539325535297394,-0.41124469600617886,0.8655466819182038,-0.7033893540501595,0.2058258354663849,0.5620926055125892,0.013641255907714367,0.08836342114955187,-0.6929412223398685,0.9927469319663942,0.43211015360429883,0.8293144213967025,0.7439021626487374,-0.8699217359535396,-0.47258341684937477,-0.7885477938689291,-0.9686439787037671,0.14135377621278167,-0.5680951657705009,0.7209793077781796,0.8425683551467955,0.6413975395262241,0.034351404290646315,-0.5238688476383686,0.980870324652642,0.3385210735723376,0.629258282482624,-0.8519069091416895,0.5524468729272485,0.2902065198868513,0.25324215833097696,0.8392462716437876,-0.3747474253177643,-0.6887611402198672,-0.14039840688928962,0.28370399307459593,-0.15004238113760948,-0.724777368362993,0.10338249057531357,0.026617130264639854,0.3439737628214061,-0.8967456105165184,-0.8349897991865873,-0.4520454369485378,-0.2936132624745369,0.47682109801098704,0.7190156932920218,0.2284600716084242,-0.6235030475072563,-0.6887870635837317,0.9135906402952969,0.9299766854383051,-0.0872515793889761,-0.4964066669344902,0.11114275781437755,-0.03982716938480735,0.8232147633098066,0.5170504944398999,0.15471682837232947,0.3736066995188594,0.6197027657181025,0.17572937905788422,-0.8688768963329494,-0.8629091721959412,-0.271392575930804,-0.7307170764543116,-0.8031505565159023,-0.8353705978952348,0.17363012116402388,0.17228207644075155,-0.9911504783667624,0.9093542178161442,-0.5174488825723529,-0.5512339929118752,0.5484998892061412,0.7748026615008712,0.08737384434789419,-0.9649728494696319,-0.22241055872291327,-0.9548705290071666,-0.04787354776635766,0.14353470457717776,0.3989093666896224,-0.8543630405329168,0.6701307995244861,-0.3698358410038054,-0.4128077672794461,-0.7680238950997591,-0.4115749252960086,0.49625273840501904,0.4834865955635905,0.590463210362941,-0.227084054145962,-0.793931336607784,-0.8832562169991434,0.5387683273293078,0.7117028087377548,0.9284895062446594,-0.9490899667143822,-0.008077948819845915,0.319337478838861,-0.04790852731093764,0.6746491170488298,0.009048921521753073,0.8956792014651,0.5458615003153682,-0.049699909053742886,0.0026720031164586544,0.6529051456600428,0.4713530191220343,0.293687685392797,0.8035400588996708,0.16882230900228024,0.5918368916027248,-0.9998161643743515,-0.6183425970375538,-0.9399578301236033,-0.5694515495561063,-0.49249982461333275,0.7212487175129354,-0.3838854441419244,-0.285046283621341,-0.8729649414308369,-0.20623653335496783,-0.5706844879314303,-0.9983323402702808,0.7573273126035929,-0.4785226695239544,0.8067709566093981,-0.09010093519464135,-0.5120359472930431,-0.2629881203174591,-0.33854157011955976,-0.718256302177906,-0.9389496315270662,0.23355384729802608,-0.7878319742158055,0.8220662493258715,0.6765602449886501,-0.14965301007032394,0.1749904532916844,-0.16434316989034414,-0.5598539486527443,-0.10419328231364489,-0.06679149065166712,-0.8892467296682298,-0.8019032804295421,0.5267887590453029,0.3612252059392631,0.6408024877309799,-0.9676322797313333,0.6828133976086974,0.8601289321668446,-0.7394238519482315,0.8677597991190851,0.37350650876760483,-0.8222492840141058,-0.7107660071924329,0.7503150114789605,-0.22588542103767395,-0.20453871553763747,0.860517016146332,-0.09860429586842656,-0.8904644544236362,0.6802668566815555,-0.39365562004968524,-0.3219162467867136,0.5049075223505497,-0.5957791130058467,0.743334446568042,-0.9586846819147468,0.883390633855015,0.5809784019365907,0.2647254364565015,0.43457563407719135,-0.6611335957422853,-0.7862955727614462,-0.7395327407866716,0.7501186435110867,0.025630440562963486,-0.881112293805927,-0.10502087650820613,0.6446483992040157,-0.43121645925566554,0.8106525675393641,0.6850189710967243,0.9972760677337646,0.7427699747495353,-0.7263615322299302,-0.5548025537282228,0.4363954160362482,0.7176997275091708,0.9535287185572088,-0.3139211838133633,-0.43120573507621884,0.8491349159739912,-0.7480936776846647,0.9786780043505132,0.5099638714455068,-0.42177671613171697,-0.4311310783959925,-0.3061112333089113,-0.8590084714815021,-0.7175122010521591,-0.7143414956517518,-0.689409889280796,-0.9208758478052914,0.38538826536387205,0.9563762797042727,0.4754430730827153,-0.6158962082117796,-0.8756481688469648,-0.7441109740175307,-0.8230653204955161,-0.5261772898957133,-0.39196804724633694,0.5204838584177196,0.33377760322764516,0.930751858279109,0.7667760662734509,-0.36074494291096926,-0.5823917435482144,0.8483986831270158,-0.15740310633555055,-0.43973483983427286,0.08852364867925644,-0.7808527080342174,-0.49144120467826724,0.3242419152520597,-0.8467814167961478,0.6961102997884154,0.2582198134623468,-0.13071625074371696,-0.7768968194723129,0.13476508110761642,-0.9189342800527811,0.7965327040292323,-0.12114908546209335,0.5480786017142236,0.957066083792597,0.4467096854932606,-0.2964294692501426,-0.40303418319672346,0.5703391027636826,0.5285932044498622,0.8759094793349504,0.22773316130042076,0.003194284625351429,-0.03934932593256235,0.3947906447574496,0.16706066206097603,-0.6230120845139027,0.9634566698223352,-0.10055345622822642,-0.3462974294088781,-0.35936142038553953,-0.5603389916941524,-0.9903046144172549,0.31194109469652176,-0.20632115565240383,0.8982124216854572,0.657926841173321,-0.7014805469661951,-0.5565893286839128,0.4759318185970187,0.8097898680716753,0.862846705596894,0.660400849301368,-0.23896366637200117,-0.7058931589126587,0.5260589835233986,-0.6368781444616616,0.951262341812253,0.09773170575499535,0.1870966092683375,0.2518577566370368,0.877891284879297,-0.38305079378187656,-0.3562025227583945,-0.4403054197318852,-0.03532092459499836,-0.012297638691961765,0.8355773696675897,0.869709369726479,0.6780083053745329,-0.7791545651853085,0.3651370392180979,0.4431406711228192,-0.23200482269749045,-0.20747528644278646,-0.020316180773079395,-0.6988090905360878,0.3668334293179214,0.8599848295561969,0.26883355807513,-0.7914914842694998,-0.7221508417278528,-0.5925381053239107,0.7214304865337908,-0.9578125574626029,0.7393361809663475,0.5056192404590547,-0.7768715554848313,0.5697395764291286,0.12402827152982354,0.6233974867500365,-0.4594547455199063,0.4479931276291609,-0.4719084673561156,0.05974678182974458,0.8322933618910611,-0.44447592133656144,-0.9844149346463382,0.835027371533215,0.7005126303993165,0.36597521184012294,0.5617713490501046,0.28130940441042185,-0.9463919177651405,0.7237633196637034,-0.857887763530016,-0.07310190051794052,0.5676928949542344,0.19933527475222945,-0.6462480882182717,0.14571378892287612,-0.6361248544417322,-0.135876779910177,-0.10689500626176596,-0.021294130478054285,0.22131552826613188,0.8183286436833441,-0.5316243339329958,-0.10156944720074534,-0.24702752567827702,-0.8394430815242231,-0.20632927305996418,0.5330420997925103,-0.6728251310996711,-0.2497887834906578,0.4257131484337151,-0.9744982891716063,0.5118021438829601,-0.5338265569880605,-0.6140593220479786,-0.5311652538366616,-0.5099758864380419,0.35768343321979046,0.6953578218817711,0.6358321728184819,0.6649550013244152,-0.5166747719049454,0.6181679246947169,0.25096662901341915,0.8440634426660836,0.39787482703104615,0.230356365442276,-0.0009368099272251129,-0.19485610397532582,-0.15292976889759302,-0.49695176957175136,0.01693837298080325,-0.6036562942899764,-0.6965496242046356,0.005199359729886055,-0.1469733640551567,0.7021120451390743,0.2649716082960367,-0.8677753317169845,0.8605465195141733,-0.9916072990745306,-0.4437367129139602,-0.3972100131213665,0.8881598222069442,-0.467578811571002,0.9160420997068286,-0.05726332636550069,-0.6939902785234153,-0.8607034520246089,-0.5325486473739147,0.9019066705368459,-0.16053257137537003,-0.6847215946763754,0.6056494512595236,-0.9835781021974981,-0.9234454613178968,0.707772821187973,-0.27142087696120143,-0.2834830693900585,0.23480531154200435,0.9633310069330037,-0.6416862918995321,0.1949952277354896,-0.1333362553268671,-0.8830311028286815,-0.40811954252421856,-0.45510381972417235,0.4098289147950709,0.9373391433618963,-0.6110732755623758,0.8734387862496078,0.15540713258087635,-0.7884867321699858,-0.7294476320967078,0.4775819946080446,0.6727680545300245,0.06298357993364334,0.008165800478309393,0.7185290581546724,-0.7102317875251174,0.4936785511672497,-0.47701766481623054,0.4379290584474802,-0.6562288398854434,0.38490424677729607,0.6126737794838846,-0.8841195493005216,-0.5461932602338493,0.12401859648525715,-0.6168206883594394,0.569658035878092,-0.09273140411823988,-0.7917224382981658,0.5315827187150717,-0.8240047907456756,-0.5544719719327986,-0.04826064174994826,-0.1587424213066697,-0.6462314524687827,0.526901769451797,0.5337906959466636,0.16318946098908782,-0.225017664488405,0.9887959025800228,-0.7037845151498914,-0.031034637708216906,-0.3864691713824868,-0.9533763639628887,-0.3611919330433011,0.359273178037256,-0.27141211833804846,0.9950757194310427,-0.7337034181691706,-0.0761386607773602,-0.23477909713983536,-0.499161294195801,-0.4715867592021823,0.1309415940195322,0.11543793557211757,-0.7778236572630703,0.9076777533628047,-0.21512915706261992,0.4902549758553505,0.45380689576268196,-0.16504104156047106,-0.9816858735866845,-0.13557892944663763,-0.3263172321021557,0.6954008233733475,0.3912454228848219,0.07691077142953873,-0.8768942961469293,-0.71856310358271,0.029531019274145365,-0.2568616336211562,-0.0470796967856586,-0.320299178827554,0.4007052038796246,0.8668691455386579,-0.8624641634523869,0.8305502557195723,0.9657753808423877,-0.9686777563765645,0.6926889051683247,0.6037068166770041,-0.9400218627415597,-0.1314349938184023,0.9594272533431649,0.9411926791071892,-0.1561337187886238,-0.32944088242948055,0.6846310244873166,-0.42885644687339664,0.6562336343340576,-0.46226862724870443,0.7987923454493284,0.2918596537783742,-0.7168440693058074,0.590023354627192,0.7792222565039992,0.6054933303967118,0.037275316659361124,-0.735295002348721,-0.18721841694787145,0.7092975378036499,-0.14564070850610733,-0.6405805498361588,0.9880388821475208,0.4552865279838443,0.6411401215009391,0.36092762649059296,0.5458780489861965,0.3579031019471586,-0.8839232623577118,0.6072798548266292,0.7429417199455202,0.24104321701452136,-0.25133935641497374,0.4843865130096674,0.9375578011386096,0.5770080974325538,-0.8393765408545732,0.13988955691456795,-0.018427956383675337,-0.8231930835172534,-0.22403160063549876,-0.37077823281288147,-0.9948957343585789,0.06289041647687554,0.9999775742180645,0.8851122353225946,-0.6240494661033154,-0.8190775541588664,-0.1453798422589898,0.2025626953691244,0.13771372847259045,-0.6737440153956413,-0.6073687463067472,-0.7313388087786734,-0.2460685633122921,-0.04939090367406607,0.3637038045562804,0.3590190168470144,0.29171291133388877,-0.5311321904882789,0.7234650738537312,-0.8025198187679052,0.48086248245090246,-0.42278469214215875,0.1986062224023044,0.5818517757579684,0.0639727870002389,-0.22760633286088705,-0.858697987627238,-0.6967476480640471,0.2625551945529878,-0.2429536860436201,-0.35849929973483086,0.09149000281468034,-0.7966001690365374,-0.29155001463368535,0.5884118303656578,-0.34974000230431557,-0.9959872746840119,0.0514659509062767,0.27798290457576513,-0.6503945807926357,-0.8852308602072299,-0.6426243409514427,-0.5000004461035132,0.7528915903531015,0.8589494614861906,-0.05265104304999113,0.8830569409765303,0.8202831209637225,0.7816097075119615,-0.8981206244789064,0.2811745866201818,0.389627861790359,-0.8765286603011191,-0.8298247745260596,-0.6907468261197209,0.7619819953106344,-0.5753881339915097,0.25636972580105066,-0.872272303327918,0.48565999884158373,0.8423402071930468,-0.21853291289880872,-0.3579701925627887,-0.9509266270324588,0.23086568573489785,-0.36609627259895205,0.34592383122071624,-0.7547520599327981,-0.9648387893103063,0.8555362792685628,-0.8671675347723067,-0.9884570669382811,0.9633259433321655,0.4230544385500252,-0.7762868255376816,-0.011425164062529802,-0.7333756284788251,0.04041309282183647,-0.625190244987607,-0.7583566294051707,0.7332066367380321,0.8892045766115189,0.024642065167427063,0.47901293775066733,0.20075399475172162,0.0633270014077425,0.13462970685213804,-0.79013726208359,-0.5105010070838034,0.012479267548769712,-0.06723398063331842,0.282290393486619,-0.6208836324512959,-0.7863185447640717,0.3676542234607041,0.7577961487695575,0.940458329860121,0.7458334104157984,0.5189706347882748,-0.43071039533242583,0.16725023742765188,-0.9337680330500007,-0.8163500651717186,-0.8825790164992213,0.6499551343731582,-0.2578474413603544,0.23547027492895722,-0.27338529052212834,-0.11149431066587567,0.7345708473585546,-0.7691106852144003,-0.899590534158051,0.5139602292329073,0.6237122281454504,0.8407758390530944,-0.23386680101975799,0.35165178682655096,0.49312478164210916,0.5785343376919627,0.7421269053593278,0.9697477663867176,-0.21559790521860123,0.90946548525244,0.03362790262326598,-0.7003725827671587,0.28281075274571776,0.750838368665427,0.2608989328145981,-0.49489258136600256,0.7674930850043893,0.12612874992191792,-0.7881203470751643,-0.3752554380334914,0.34865680942311883,0.3714378196746111,-0.09256015345454216,0.056293283123523,0.32413166435435414,0.01448136754333973,0.6872918051667511,-0.4414736428298056,-0.8742691897787154,0.6578825758770108,0.49254304077476263,0.7883513309061527,-0.07984894141554832,0.3479648190550506,-0.5773519142530859,0.9305846802890301,0.3534798691980541,0.12024896685034037,-0.8437631013803184,-0.4826233177445829,-0.7618579971604049,0.9907578770071268,0.21875367499887943,-0.30949533730745316,-0.2708625537343323,0.6051310305483639,-0.587224886752665,0.167103317566216,0.5467949016019702,0.07730950368568301,-0.4423428922891617,0.27131269220262766,-0.27731064381077886,-0.2789707938209176,0.3390988535247743,-0.7894455194473267,-0.5389632531441748,-0.2000729413703084,0.08281781477853656,-0.9809554629027843,0.5458873687312007,0.2026246516034007,-0.7683567330241203,0.6592855714261532,-0.16824422776699066,0.6396606513299048,0.23184532159939408,-0.8305401019752026,0.9856120063923299,0.5373735316097736,0.3636964554898441,-0.8326040045358241,-0.20684127835556865,-0.23128412058576941,0.7402175944298506,0.618293927051127,-0.6455991412512958,0.37282542791217566,0.2715305592864752,0.1618454302661121,-0.07010616362094879,-0.006618842016905546,0.45556763699278235,0.802251388784498,0.5949077871628106,0.712612546980381,0.5105129298754036,0.26426452212035656,0.7703767642378807,-0.9461863460019231,0.7339156265370548,0.8878047331236303,-0.38059849943965673,-0.5031011691316962,-0.5014910204336047,0.4713938026688993,-0.13485611323267221,0.19511933950707316,0.7363712312653661,0.3499096645973623,-0.8688202146440744,-0.4152952777221799,0.5231245658360422,-0.1161299254745245,0.6275719734840095,-0.20723790815100074,-0.5265756831504405,-0.45383312040939927,-0.6246817223727703,0.9967640931718051,0.14886692631989717,0.9830342042259872,-0.4170679240487516,-0.3774373158812523,-0.19253922253847122,0.4049449753947556,-0.4317381102591753,0.7640781882219017,-0.003975304309278727,-0.5219610980711877,0.33590015349909663,-0.4115771339274943,0.5127830300480127,-0.07873484306037426,0.4518835339695215,0.7701007449068129,-0.175584371201694,-0.7522339238785207,-0.7395510319620371,-0.3194129038602114,-0.82184480689466,0.06381090870127082,-0.6937509938143194,-0.17438546940684319,0.16191749880090356,-0.06986851198598742,-0.11628244258463383,0.40556460060179234,0.590785757638514,0.8081706315279007,-0.1127048060297966,-0.8176902020350099,-0.3708695969544351,0.505562040489167,0.048418412916362286,0.6476909508928657,0.631686822976917,0.5396082177758217,-0.10321231186389923,-0.9013403486460447,0.7977309441193938,0.07928645377978683,-0.9485148396342993,0.8625667495653033,0.5869852351024747,-0.42330649960786104,0.43005589535459876,0.7516408679075539,0.8078103680163622,0.8801050679758191,-0.09668063931167126,-0.9572161897085607,0.5737956818193197,0.9572740001603961,0.7580817900598049,-0.8320637913420796,-0.946103248745203,-0.8489931151270866,-0.7246051402762532,-0.10397239401936531,0.9845681330189109,-0.1096024764701724,0.6454622871242464,0.7022669403813779,0.7138935867697,0.4307250399142504,0.895238402299583,-0.04392540268599987,-0.4858682379126549,-0.48961552139371634,-0.4947163965553045,0.7742101158946753,0.35127281583845615,0.9848451870493591,0.17396025778725743,-0.03406348917633295,-0.8543771896511316,0.9303690837696195,0.5625030598603189,-0.04524956922978163,-0.4659153097309172,0.5134368473663926,-0.24186733178794384,0.6957193994894624,0.546426834538579,0.42562051862478256,-0.8899778453633189,-0.3849212843924761,-0.6357405469752848,-0.23109452752396464,0.9962126254104078,-0.8069946244359016,0.8597949272952974,0.6997858667746186,-0.33674149587750435,0.8379090880043805,-0.4183371993713081,0.4755720356479287,-0.4325900115072727,-0.6905868598259985,0.9361946089193225,-0.22989187436178327,0.9428924899548292,0.7556543601676822,0.44111812161281705,-0.18355959374457598,-0.17256438825279474,-0.34629164822399616,0.31620778841897845,0.5409746570512652,-0.33748941170051694,0.2444595182314515,0.8337642229162157,-0.0968442470766604,0.06819056812673807,0.7656985279172659,0.5480545833706856,0.6129304016940296,-0.5421846732497215,0.740440736990422,-0.48832549806684256,-0.2146143768914044,0.7464354569092393,-0.48592550912871957,0.6347596133127809,0.949232361279428,0.4716205899603665,-0.41253331676125526,-0.0516495443880558,0.47987717809155583,0.19212145637720823,-0.47250534500926733,-0.36055558640509844,-0.33743958082050085,0.9446071982383728,-0.2859299792908132,0.13310076016932726,-0.7823396758176386,-0.42296793032437563,0.49260295648127794,-0.11065342789515853,-0.157748787663877,-0.8820031629875302,0.7809971729293466,-0.3923559566028416,0.4444886459968984,-0.3194440589286387,0.7561704204417765,0.02455579675734043,0.04074791306629777,0.04757367912679911,0.5361813199706376,-0.8846248146146536,0.27881331043317914,0.7181973922997713,0.2610532371327281,-0.3365324279293418,0.5928734294138849,-0.32985116029158235,-0.796024149749428,-0.7867525783367455,-0.03617958491668105,0.18583767488598824,-0.13996498193591833,-0.43738922011107206,0.5757747534662485,0.7654883405193686,0.7671931544318795,0.7134034470655024,0.6826593838632107,0.3695483412593603,-0.9036104409024119,-0.6227661105804145,-0.07671681232750416,0.5645625260658562,0.23653029138222337,0.019744484685361385,-0.7083804947324097,-0.39194008288905025,0.4829769153147936,-0.0393778788857162,0.5796745712868869,0.6112839137203991,-0.5552246351726353,0.002133140806108713,0.9084146018140018,0.048648019786924124,0.8456873716786504,-0.9469702485948801,-0.6225997428409755,0.11513459729030728,-0.2519577434286475,0.41062931483611465,-0.08678642520681024,-0.4656210313551128,0.19031026167795062,-0.47832481376826763,-0.6116705723106861,-0.7375056273303926,0.9078993345610797,0.39444084418937564,-0.03686716826632619,0.2903615306131542,-0.7999646859243512,0.9737134845927358,0.005815144628286362,0.6798933539539576,0.4505200437270105,0.6997545673511922,-0.26276295352727175,0.9399045603349805,0.49455760745331645,-0.1217112522572279,0.29425629135221243,-0.3401308748871088,-0.05613793199881911,-0.596298904158175,0.4098792811855674,0.6458080159500241,0.20605246722698212,0.4878642023541033,-0.31774571584537625,-0.6443533929996192,-0.8645266876555979,0.9550778572447598,0.333580425940454,0.14032479375600815,-0.8140496495179832,0.3692543604411185,-0.9639699053950608,0.4478916344232857,0.9635232929140329,-0.31685159308835864,0.3728929744102061,-0.0563849825412035,0.24036813993006945,-0.3982509165070951,0.33325388142839074,-0.3681359710171819,-0.6472373805008829,-0.40242537623271346,0.682942898478359,-0.16022022999823093,0.6804610812105238,0.5908243707381189,-0.8038015374913812,0.012315027415752411,-0.5632736263796687,-0.5677717011421919,0.6153112584725022,-0.9661622964777052,-0.8416011240333319,-0.7933258977718651,0.7930822963826358,-0.8969462169334292,-0.8547834511846304,0.13670237734913826,0.5257746940478683,-0.6614645351655781,-0.5686019733548164,0.6088443323969841,-0.7279060860164464,0.7706464007496834,0.5675725769251585,-0.6796469115652144,-0.5600321451202035,0.7764291861094534,0.5220162137411535,-0.806587761733681,0.12336217984557152,0.09489016095176339,-0.6779253119602799,-0.8727067625150084,0.3016520692035556,-0.37680003186687827,-0.6792121706530452,0.5620574853383005,0.4422778030857444,0.9852453214116395,-0.1397794377990067,0.5476249572820961,-0.5617300802841783,0.7390971202403307,-0.09350333316251636,-0.8599003031849861,0.6676792907528579,-0.825431577861309,-0.6061354647390544,0.6558087295852602,0.824106621555984,-0.31747949263080955,0.7168528027832508,0.10929288994520903,-0.919243045616895,-0.998642060905695,0.18948095524683595,-0.15917534520849586,-0.40129482420161366,0.07270808657631278,0.39314056001603603,-0.7968994006514549,-0.3340674634091556,-0.5012992369011045,0.4170822645537555,-0.20853813784196973,0.7061348333954811,-0.46786426939070225,0.4622725071385503,0.9050252852030098,-0.7823900757357478,-0.43072430696338415,0.6374560538679361,0.43743724981322885,-0.06869314517825842,0.5531084737740457,0.07898347917944193,0.765293940436095,-0.18837016820907593,0.016317400615662336,0.18280390370637178,-0.37771352753043175,0.1588589996099472,0.4851837670430541,0.46275931783020496,0.648162498138845,-0.7698242268525064,0.17339282482862473,0.5245449542999268,0.8304311903193593,0.8432103227823973,0.593066856265068,0.5441805925220251,-0.5549860778264701,0.6699307360686362,-0.9411579398438334,-0.5502320900559425,-0.7394249360077083,-0.24093528604134917,0.23132601520046592,0.7638232875615358,0.732066601049155,-0.13163515040650964,-0.5149479126557708,0.6146363019943237,0.1958306315355003,-0.27435290860012174,-0.44401593087241054,0.8639925373718143,-0.7137332963757217,0.9437066740356386,-0.14166544331237674,0.6536389570683241,0.11667202413082123,-0.242757189553231,-0.23460288485512137,0.8436400750651956,-0.749153966549784,0.8828284703195095,-0.31260758033022285,-0.34024990582838655,-0.2637662263587117,0.2695979722775519,-0.4068664279766381,0.8930997862480581,0.43982595577836037,0.8302376554347575,-0.49657834600657225,0.9077231781557202,0.1360509335063398,-0.03653136594220996,-0.0736045683734119,0.9236680315807462,0.7840078584849834,0.35038458788767457,0.06278609484434128,0.23373244609683752,-0.4757764092646539,0.9403596282936633,-0.7918116869404912,-0.9000929142348468,-0.1201878353022039,0.16042255936190486,0.1170591851696372,0.005212147254496813,-0.7968106339685619,-0.27281735418364406,-0.8755061570554972,0.12360959034413099,-0.844915775116533,0.32993012946099043,-0.44973394367843866,0.1910948706790805,0.6491328128613532,-0.8743572197854519,-0.008723273873329163,-0.9558678278699517,0.6997517920099199,-0.40230997558683157,0.2279794360511005,0.36918260948732495,-0.4017100064083934,-0.2797066397033632,-0.23297366313636303,-0.8755474085919559,-0.21561803855001926,0.17253314750269055,-0.5073228129185736,-0.5397343542426825,-0.09709038631990552,0.7726261843927205,-0.5727782542817295,0.25673492019996047,0.7304744366556406,-0.2923639961518347,-0.99575275182724,-0.7701304294168949,0.2978061349131167,0.9283154653385282,0.8560612881556153,0.3151236646808684,-0.8541864575818181,0.22257231222465634,-0.22882729908451438,-0.20188846811652184,0.6238098195753992,0.6001610127277672,-0.9013558672741055,0.9763416415080428,0.5465329568833113,-0.9093020581640303,0.10757784266024828,-0.37266668770462275,-0.05801929533481598,0.7789332284592092,-0.0957185821607709,0.446893107611686,0.8688238584436476,0.10656754346564412,0.887279006652534,0.8325304077006876,0.5146233541890979,-0.009950488340109587,0.8014088086783886,0.35586990462616086,0.4741118745878339,0.7561933668330312,0.1895213471725583,-0.7568959090858698,-0.9935865043662488,0.34034412214532495,-0.8929910217411816,0.7726249089464545,0.9889028002507985,-0.7009243802167475,-0.6750561660155654,0.6294883443042636,-0.7951694359071553,-0.7018683617934585,-0.9495368697680533,-0.41843725414946675,0.3084868877194822,-0.22470000106841326,0.8476154124364257,-0.057768442668020725,-0.9820196046493948,0.9025072823278606,0.49957505986094475,-0.044557612389326096,0.9359367098659277,-0.9247899777255952,-0.3557956353761256,-0.027886404655873775,-0.926515850238502,0.06735090166330338,0.699644205160439,-0.526989406440407,0.8798378729261458,-0.9760908256284893,-0.4071328565478325,0.7596878539770842,-0.32606538431718946,0.39575239503756166,0.39108758978545666,-0.05198505846783519,0.9951550140976906,-0.36178692895919085,0.416771300137043,0.7566375932656229,-0.2706284546293318,0.8401176757179201,0.6269826353527606,-0.7828771257773042,-0.5120341051369905,0.1493625701405108,-0.943886598572135,0.2188605829142034,0.43599281134083867,-0.32549786753952503,0.6333144907839596,0.5501127270981669,-0.7306362721137702,-0.8321363367140293,-0.03997135395184159,-0.7562845177017152,0.6431337902322412,-0.0011679437011480331,0.40151177952066064,0.1979077896103263,0.15946237836033106,-0.3930821670219302,-0.2881912370212376,0.3761098850518465,-0.9013531804084778,0.35400188574567437,-0.32421743776649237,-0.5881800786592066,0.013243202120065689,-0.14531130762770772,0.8998347618617117,0.24308570800349116,-0.8852263330481946,-0.3431357857771218,-0.4569858075119555,-0.688787302467972,-0.6044583385810256,-0.5746926800347865,0.7301361430436373,-0.30430489871650934,0.8934257118962705,-0.6579215121455491,0.6956872744485736,0.5271126301959157,-0.28711839299649,0.1700832094065845,-0.7322204569354653,-0.3784710601903498,-0.12608110206201673,-0.5414428594522178,-0.9355290946550667,-0.4137985594570637,-0.43136789044365287,0.6875544772483408,0.32135658618062735,-0.5090623642317951,-0.049721584655344486,0.9067713753320277,0.19914340786635876,0.7219559866935015,-0.018592917826026678,-0.034560566768050194,0.6711246194317937,-0.2682605688460171,0.6016060407273471,-0.9803709425032139,-0.5354531984776258,-0.9140665223821998,0.8637124211527407,-0.9563191318884492,-0.8447925592772663,0.4632664965465665,0.20694168144837022,-0.022194617427885532,0.2840691292658448,0.043195086531341076,0.051907812245190144,0.7428623591549695,0.5434059021063149,-0.22835306962952018,-0.2703574039041996,0.15167645644396544,0.11614590976387262,-0.813323394395411,-0.4865965456701815,0.06917358981445432,-0.6078671105206013,0.6095943818800151,0.5215972755104303,-0.8152074418030679,0.744318978395313,0.6654239357449114,0.21297627547755837,0.04167986707761884,0.4214903246611357,0.5628062109462917,0.5683976472355425,-0.5548450313508511,0.7439138744957745,0.6989690279588103,-0.34495310112833977,-0.5992931667715311,0.34475267864763737,-0.3279298674315214,-0.12494329968467355,-0.7579919323325157,-0.39247826719656587,0.06419045152142644,-0.1016270606778562,-0.22699719108641148,0.1433739080093801,-0.8496224475093186,-0.5773583059199154,-0.2725300290621817,0.9737182748503983,-0.7373421918600798,0.3925163415260613,-0.48292641527950764,0.9322708901017904,-0.144100041128695,-0.3017792645841837,0.7576838810928166,0.9921942171640694,0.4256889228709042,0.6991831180639565,0.5366565836593509,-0.5599839673377573,0.6518150172196329,0.2422954416833818,0.5388268544338644,-0.59208426438272,-0.09177864901721478,0.6816945052705705,-0.7373874769546092,0.7727095410227776,-0.29176040878519416,0.1922599570825696,0.4766824319958687,-0.5534621756523848,-0.018997404258698225,-0.7062518866732717,0.9937317706644535,-0.23021191451698542,0.5158026558347046,0.022712248377501965,-0.41215810365974903,-0.20123951323330402,-0.3217402221634984,-0.77434146637097,0.955625185277313,0.5087024392560124,-0.21927866572514176,0.6491776192560792,0.3250440191477537,-0.6353756203316152,-0.5943467053584754,-0.4696420091204345,0.35786098800599575,0.699145482853055,0.5932761859148741,-0.18015940161421895,-0.2975602843798697,-0.1892922050319612,0.9015833856537938,0.48428678000345826,0.5256409579887986,0.8664495428092778,-0.03383260406553745,-0.05721829179674387,-0.961152627132833,0.8233990240842104,0.9954955969005823,0.49695238284766674,-0.38199024740606546,0.235570362303406,-0.5376433460041881,-0.698887730948627,-0.19128471706062555,-0.2539829988963902,0.509839738253504,-0.8081039325334132,-0.8199656377546489,-0.8726475383155048,-0.3426226871088147,0.02976060099899769,0.8254767656326294,-0.38451250782236457,-0.6742530106566846,-0.459781042765826,-0.3246513223275542,-0.8521733544766903,-0.7930212086066604,0.580553749576211,0.9451541528105736,0.9551543849520385,0.7332305060699582,0.7497532363049686,-0.4722032402642071,-0.1963508753105998,-0.1273098853416741,-0.3261777893640101,-0.8668359410949051,0.2525874483399093,0.5071744434535503,-0.47167993150651455,0.02988394256681204,-0.03348213341087103,-0.5779075720347464,0.5938828126527369,-0.18569315783679485,-0.5519660818390548,0.449304080568254,0.5379637209698558,0.9073980203829706,0.33108736062422395,0.9681221055798233,-0.8259093998931348,0.3724229265935719,-0.5231036860495806,0.8126008645631373,0.23493696842342615,-0.5305519565008581,0.4160322002135217,-0.26707080844789743,-0.17092280043289065,-0.8958627479150891,-0.3736928482539952,-0.4454966839402914,0.8839329746551812,-0.7193268463015556,0.7145755961537361,-0.15057554095983505,-0.05356360645964742,0.11376443924382329,-0.2399992560967803,0.7805369012057781,-0.21958963247016072,0.9541497617028654,-0.8468314772471786,-0.7410075454972684,-0.5418845475651324,-0.8708432191051543,0.4563345913775265,0.9398135039955378,0.35014614230021834,-0.10386932548135519,0.969087746925652,0.811856419313699,0.08302805572748184,-0.4616301883943379,-0.9195825722999871,-0.6363642797805369,0.11919327173382044,0.6469935523346066,-0.3331574029289186,0.7835226794704795,-0.9379906393587589,0.8496775608509779,0.8291727360337973,0.3182110828347504,0.5780786564573646,-0.38944918010383844,0.35239835595712066,-0.4704205091111362,-0.3387807449325919,-0.2832710472866893,0.1179826045408845,-0.09551159152761102,0.923110896255821,0.02647640649229288,-0.17221956560388207,-0.5470473892055452,0.5716492589563131,0.4802245073951781,-0.03776598768308759,-0.2636543815024197,-0.4767468683421612,0.6441455003805459,-0.07278716890141368,-0.224708111025393,-0.9650166286155581,0.31913194013759494,-0.45265551190823317,-0.3171130702830851,0.11142223654314876,0.6874202825129032,0.9842561171390116,-0.23997074645012617,0.7380697326734662,-0.22497683530673385,0.6876282189041376,0.338383867405355,-0.31028041150420904,0.2633248888887465,-0.305843498557806,0.5483754849992692,0.29193473141640425,-0.7342069516889751,-0.356359941419214,0.20284726610407233,0.05850123427808285,0.79834890877828,0.6497651836834848,0.5556768588721752,0.04448600159958005,-0.7864133510738611,0.5487026078626513,-0.4166335426270962,-0.9124262491241097,-0.18157540913671255,-0.9040246685035527,-0.014479618053883314,0.8958610752597451,-0.0034741489216685295,-0.9143391787074506,-0.21139334561303258,0.43601327342912555,0.8380960202775896,0.6623678263276815,0.5579742752015591,-0.923495049122721,0.2579045621678233,-0.07528217835351825,-0.8869933057576418,0.4196296790614724,-0.268480968195945,0.5415279543958604,0.6326471157371998,-0.9340399927459657,0.35434687370434403,-0.3234480218961835,-0.9852762408554554,0.9529399913735688,0.5100908139720559,-0.9587167068384588,-0.6980015425942838,0.8974887821823359,-0.07216456532478333,0.1603584080003202,0.789538555778563,-0.46210601599887013,-0.2770230625756085,0.9532550578005612,0.8142275782302022,-0.6486452920362353,-0.35981499031186104,-0.4577573835849762,-0.3525668471120298,0.13495097355917096,-0.544724315404892,0.683105306699872,0.42826045071706176,0.8267425843514502,-0.2046622047200799,0.8301082360558212,0.7072339630685747,-0.7257270431146026,0.7218527011573315,0.4454350136220455,0.8213525647297502,0.4869084875099361,-0.09127172688022256,-0.5460421009920537,-0.6345737474039197,0.4985285638831556,-0.27756837336346507,0.6884147669188678,-0.5575376306660473,0.09971069684252143,0.07148266723379493,0.6792344194836915,-0.24869624245911837,-0.1177591965533793,-0.5298833041451871,0.5495311231352389,-0.20886010024696589,0.8257254967465997,-0.6942321178503335,0.9788312958553433,0.7062795590609312,0.5942415655590594,0.7991766454651952,-0.346972094848752,-0.27565960166975856,0.2233169712126255,-0.6844761669635773,-0.2582030901685357,0.7225428661331534,0.5625290246680379,-0.11196568142622709,-0.5069016055203974,0.36527106957510114,-0.667376468423754,0.6628690036013722,-0.35797105450183153,0.24768094345927238,-0.3623236701823771,0.5339748444966972,0.48006989248096943,0.8871393059380352,0.45586747396737337,-0.3102812529541552,-0.9566190098412335,0.46684914780780673,-0.9122883756645024,-0.7846227558329701,0.8710148641839623,0.14647108130156994,-0.9371535060927272,0.588214379735291,-0.1577349966391921,-0.7600624347105622,0.4149986756965518,-0.2241070750169456,0.9401065674610436,0.4639607034623623,-0.701136149931699,0.3588319825939834,-0.020215590484440327,-0.3404918941669166,-0.6735510118305683,-0.6579129146412015,-0.630727210547775,-0.5864693452604115,-0.9260497489012778,0.8506421870552003,-0.2806459488347173,0.024468461517244577,0.27391518000513315,0.047090099193155766,-0.718172621447593,0.6019300650805235,-0.6512958100065589,0.9660166166722775,-0.921245975419879,0.009899681899696589,0.011090596206486225,0.21243408881127834,-0.8780777896754444,-0.0798990954644978,0.19265891844406724,-0.08826606580987573,0.7465646546334028,0.5466541987843812,0.37781061697751284,0.8588714092038572,0.6895315023139119,0.6741333631798625,0.8060945896431804,-0.5281270067207515,0.15955693321302533,0.22236129827797413,-0.14998706942424178,0.5831152154132724,0.6094044842757285,-0.7793880328536034,0.05106593668460846,-0.9049872858449817,0.7640295196324587,-0.39175267703831196,-0.43031775252893567,0.49583616899326444,-0.6247545653022826,0.5455776713788509,0.6423944653943181,-0.5012842994183302,-0.4089861996471882,-0.5216422346420586,0.48976390762254596,-0.3527124603278935,0.024399976711720228,-0.5715638780966401,0.8066157903522253,-0.585736533626914,0.35770986322313547,-0.14575126394629478,0.5916638658381999,0.48387183900922537,0.23119606310501695,0.2832964430563152,0.22597526526078582,0.24174781516194344,0.19151486549526453,0.46208497742190957,0.7675947537645698,-0.3115768888965249,-0.693547913338989,-0.1302145137451589,0.4791946206241846,0.07933382969349623,0.43051697639748454,-0.1361455195583403,-0.31178699247539043,-0.07966225361451507,-0.5380158075131476,-0.8251771689392626,-0.46475918404757977,-0.046513409819453955,-0.42152058705687523,0.8926555863581598,-0.9992800788022578,0.4560025902464986,-0.5204080436378717,-0.6214139256626368,0.7195171867497265,0.7914590886794031,0.19773424416780472,0.5077345985919237,-0.13974957540631294,0.04825915535911918,-0.31328886933624744,-0.41733094677329063,-0.4810741161927581,0.3593094712123275,0.45692683616653085,0.9808279685676098,0.2518957005813718,0.16490342561155558,-0.7093126820400357,-0.7306169695220888,-0.659810256678611,-0.8198590078391135,0.2970060813240707,0.8720058812759817,0.9613564014434814,0.32826953660696745,0.22916374588385224,-0.4190293336287141,-0.11309329327195883,0.25103694945573807,0.15970343677327037,0.6027366514317691,0.3949590800330043,-0.3710917327553034,0.209788812790066,-0.5976938735693693,0.8154123849235475,-0.6104800910688937,-0.1457783612422645,-0.8890665173530579,-0.9669788544997573,-0.7432898464612663,-0.6120684198103845,-0.7966450313106179,0.6264891833998263,-0.9683489855378866,0.5779289794154465,0.9661898566409945,-0.6234619240276515,0.8224130133166909,-0.5613441127352417,0.13148870505392551,0.15393313905224204,-0.13360819779336452,-0.7257126327604055,-0.12559163384139538,0.88351462315768,0.43519371189177036,0.6167194847948849,0.04617016203701496,-0.02166719362139702,-0.25622289534658194,-0.9888922455720603,-0.671956293284893,-0.9870271040126681,-0.24009124282747507,0.3134061456657946,-0.2518002288416028,-0.10604050476104021,0.5234510828740895,-0.39129988849163055,0.24746266193687916,0.3400234021246433,0.04107162030413747,0.7552809529006481,0.6053880257532,0.04915254656225443,-0.013806206174194813,-0.6580894095823169,0.13359138602390885,-0.9869446032680571,-0.21671788208186626,-0.8082284778356552,-0.31139844516292214,0.41693035094067454,-0.4416589462198317,0.6259342166595161,0.09013269003480673,-0.6011575520969927,0.4669971945695579,-0.004609083291143179,0.38180989073589444,0.26186185982078314,0.27696199249476194,-0.06856957031413913,0.1281282352283597,-0.22650928376242518,-0.2376079079695046,0.20213871449232101,0.7368098855949938,-0.05939477542415261,-0.8336248295381665,0.13364135660231113,0.8211344052106142,-0.8359165764413774,0.12459621578454971,-0.7286390131339431,0.21702886978164315,-0.5877863271161914,0.7746281041763723,-0.03851299546658993,0.643864291254431,0.5998527579940856,-0.43105526454746723,-0.6327132750302553,0.6242757714353502,0.32020785193890333,-0.935364281758666,0.9349141260609031,-0.8824994578026235,0.2930571725592017,-0.5300659486092627,0.18454903364181519,0.2114773099310696,0.3297596201300621,-0.0036118635907769203,0.8422308214940131,-0.17920796107500792,0.936906882096082,0.38048938289284706,-0.29795851884409785,0.6448827697895467,0.78855250030756,-0.30971360206604004,-0.10835229326039553,0.8408570326864719,-0.15799907594919205,0.504481322132051,-0.2252333532087505,-0.45127528021112084,0.4964207671582699,0.7845000205561519,0.8441582722589374,-0.0823661177419126,0.7514587054029107,0.604994538705796,-0.5396806192584336,-0.20531196985393763,0.6620154795236886,-0.4679570607841015,0.25050698639824986,-0.7996002025902271,-0.9876569150947034,0.6764608584344387,0.10524492338299751,-0.6695249383337796,0.9510884084738791,-0.6441602106206119,-0.06844970071688294,-0.020643352530896664,-0.841187531594187,-0.6687986091710627,0.19204649701714516,-0.8439891617745161,0.5630924142897129,0.2549818577244878,-0.16814714670181274,0.9045416750013828,0.0075053623877465725,0.6713145575486124,-0.6013671467080712,0.6409309436567128,0.17035239469259977,-0.6184859955683351,-0.7665178645402193,0.8219912238419056,0.9599960474297404,-0.4278973350301385,-0.26266705663874745,-0.6245618020184338,-0.5129491449333727,-0.0416250042617321,0.7119914041832089,0.2135447566397488,0.8428666614927351,-0.8603836898691952,0.3443809123709798,0.1583512369543314,0.19465348171070218,-0.06483662221580744,-0.7638499140739441,0.03326181136071682,0.6663002278655767,0.1452011512592435,0.44697833247482777,0.5322801824659109,0.2145939520560205,0.4405021178536117,0.6064687087200582,0.4764266428537667,0.14204236678779125,0.8421353627927601,0.724223374389112,0.1265946850180626,0.43851823173463345,-0.2966021550819278,-0.5566553194075823,0.008530022110790014,0.45108151715248823,0.9849446746520698,0.42533341236412525,-0.7237046738155186,0.18512204196304083,-0.02884902898222208,0.9453184450976551,-0.7996274665929377,-0.24330939818173647,0.331284137442708,0.7389724678359926,0.7535272254608572,0.837957201525569,-0.9875915609300137,-0.8647820977494121,0.29350937670096755,0.431960572488606,0.6006526555866003,0.3106578104197979,-0.8454405586235225,-0.7765535786747932,0.2862384384498,0.9777150116860867,-0.823459186591208,-0.03565470781177282,-0.22059899289160967,0.7030485640279949,-0.22357374569401145,-0.7064909925684333,0.6774424794130027,0.5282943262718618,0.13991999998688698,0.8779651564545929,-0.07669669901952147,0.8174549555405974,-0.4236165299080312,0.454068411141634,-0.8531287959776819,-0.06387666938826442,-0.6177121163345873,-0.1942252293229103,0.2932139979675412,-0.4102643057703972,-0.7797852102667093,0.8261046879924834,-0.2509527886286378,-0.2806419529952109,0.27547199558466673,-0.21161519130691886,0.9872553921304643,-0.9236911027692258,0.9849366974085569,0.11730860639363527,0.149459695443511,0.8328895624727011,-0.6600142088718712,-0.6508547510020435,-0.036982460878789425,-0.1903933915309608,-0.8680478627793491,0.20548659143969417,0.49102991446852684,0.34868946857750416,0.4996077995747328,-0.1866988600231707,-0.23132230946794152,0.0678165121935308,0.37380523700267076,-0.5145320557057858,0.29380723740905523,-0.26600380800664425,-0.1627405546605587,0.38924298575147986,-0.660072339233011,-0.07176917791366577,0.17104518925771117,0.21982717234641314,0.6525194197893143,0.1629444328136742,-0.0780127584002912,-0.14935935894027352,-0.5224985764361918,-0.8058056724257767,0.701735274400562,-0.6190519253723323,0.6538215968757868,-0.3823037790134549,0.5231341063044965,-0.21210316428914666,0.26862340047955513,0.6786197097972035,0.39195250114426017,-0.5029868837445974,0.0689921798184514,-0.6364787966012955,0.3513371301814914,0.30851146671921015,-0.15990315238013864,-0.8023108257912099,0.2759511275216937,0.5635890047997236,0.7438592379912734,0.8824952095746994,-0.27550656208768487,-0.22176344087347388,0.142570988740772,0.37943914672359824,-0.32852223375812173,0.6494753072038293,0.02564511215314269,0.33085157675668597,-0.48372490843757987,0.8807298610918224,0.11729426495730877,0.6055251089856029,-0.6381653416901827,0.7159366360865533,0.9488232247531414,-0.20214736694470048,-0.01958820503205061,0.15235461108386517,-0.24166402546688914,0.5883640255779028,0.14032723009586334,0.04011579416692257,-0.5697843008674681,-0.04885901650413871,0.03531865915283561,-0.29008712712675333,-0.9271569731645286,-0.5777433961629868,-0.47995643597096205,0.39801909774541855,-0.6599126337096095,0.5385824306868017,-0.7603375851176679,0.9828735911287367,-0.8120483765378594,-0.9747778656892478,0.7135073775425553,0.8356335125863552,-0.9336005616933107,0.796279679518193,0.32838572515174747,0.601404910441488,0.36901762755587697,0.4018663796596229,-0.5383290159516037,0.9468219000846148,0.9380742977373302,-0.4766268441453576,0.19297496927902102,0.20397069305181503,-0.6331433672457933,0.8479998530820012,0.8139876727946103,-0.6772265383042395,0.73816804215312,-0.5341822481714189,0.49458876717835665,0.7696185633540154,-0.7547343363985419,-0.7218328113667667,0.6969143720343709,0.6449097995646298,0.743979430757463,0.1937925242818892,-0.42257421696558595,-0.5543175525963306,0.45225913636386395,0.21989833703264594,-0.34246037947013974,-0.16911908378824592,0.7858521798625588,0.1423256043344736,0.9026139131747186,-0.42582761077210307,0.3869768129661679,-0.05078953644260764,0.9509702604264021,0.0973670887760818,0.2986714546568692,0.9490024354308844,0.3571200929582119,0.5913059050217271,0.8277256321161985,0.6699809641577303,-0.683477814309299,-0.17708144895732403,-0.2604500181041658,-0.383266668766737,-0.6267928350716829,-0.7332575698383152,-0.8268012166954577,-0.14503569481894374,-0.7774849268607795,-0.588179656304419,-0.48733764700591564,-0.642074201721698,-0.7307929247617722,0.764209343586117,0.5035881535150111,-0.20047810254618526,-0.08792421547695994,-0.35070332465693355,0.3203849531710148,-0.6490720752626657,-0.9469170114025474,0.23656926676630974,-0.6668812539428473,-0.4223602139391005,0.9693704666569829,0.051966709550470114,-0.3281454504467547,0.49357304349541664,-0.09727196162566543,0.45219616405665874,-0.6033750660717487,-0.5550201358273625,0.20435543870553374,-0.28357376577332616,0.6871760068461299,-0.04924498498439789,-0.7207730729132891,-0.6091917431913316,0.5845175851136446,-0.5174921154975891,0.7005375837907195,0.2862976538017392,0.5414946703240275,0.7512813936918974,-0.8867716272361577,0.7330749300308526,-0.6496598431840539,0.8513089674524963,-0.14680852182209492,0.8766026180237532,-0.21652486640959978,0.372774425894022,-0.4771159724332392,-0.19280670583248138,0.420650155749172,0.48764134012162685,0.4508117651566863,0.46851874236017466,-0.5071916077286005,0.14699422288686037,0.5688870246522129,0.023472818080335855,0.29195336112752557,-0.1957420469261706,0.4731427999213338,-0.9317208896391094,0.30097298696637154,-0.606987735722214,0.6298598577268422,-0.5022239680401981,-0.886344242375344,-0.029696164652705193,0.8887508949264884,0.7543159783817828,0.579158709384501,-0.3696617898531258,-0.33896309370175004,0.09564419416710734,0.6285767941735685,0.46999147441238165,-0.8301964420825243,0.9031588439829648,-0.8587864167056978,-0.9573802216909826,-0.47235166002064943,-0.19044334441423416,0.7672543791122735,0.9777953885495663,-0.9162640371359885,-0.055929018184542656,-0.8214929979294538,-0.6014865599572659,-0.2544339979067445,-0.7634609253145754,-0.6752116712741554,-0.5684180092066526,-0.9902885179035366,-0.7564496346749365,-0.09968104306608438,-0.5671536880545318,-0.912931842263788,0.7617185739800334,0.09426471032202244,-0.22853617602959275,0.3886333666741848,-0.8317070263437927,-0.620536744594574,-0.2534609823487699,0.10966772073879838,0.694670096039772,0.12845462281256914,-0.3611098751425743,0.5224820645526052,-0.18223324045538902,0.42780068749561906,0.906568550504744,0.844907583668828,-0.28828715719282627,0.09889629296958447,0.3535224930383265,0.3227740144357085,0.2927168421447277,-0.6099416548386216,0.09085897589102387,0.7630337104201317,0.9338895971886814,-0.6642501368187368,0.9810736938379705,0.03561672195792198,0.41349946381524205,-0.250227184034884,0.8902539322152734,0.3682189779356122,0.7758791269734502,0.13472916139289737,0.8433808321133256,-0.28030496975407004,-0.6012074938043952,0.931141771376133,0.7978479214943945,-0.1544088739901781,-0.3692601998336613,0.12931936141103506,-0.011191205587238073,0.6856589913368225,-0.42499580094590783,0.2859177952632308,0.3777098930440843,0.9594951225444674,-0.9922923655249178,0.5761229847557843,-0.07311146659776568,-0.16468523256480694,-0.6140716057270765,-0.06674541300162673,0.9504157453775406,-0.8526469483040273,0.5774877849034965,-0.07657638611271977,0.48763739643618464,-0.3509165523573756,-0.6991945034824312,-0.7446911921724677,0.44650437170639634,-0.4403593768365681,-0.20798508217558265,-0.6614976115524769,-0.24201711965724826,-0.5518824341706932,-0.7910463679581881,-0.572825079318136,-0.46159350872039795,0.025715180207043886,-0.3635378023609519,-0.19100644905120134,0.5952514805831015,0.5637813536450267,-0.915281395893544,-0.2525773677043617,-0.8536854921840131,0.00026890914887189865,-0.051539767533540726,-0.3937219590879977,-0.6465052575804293,0.6683914717286825,-0.8057725201360881,-0.25182180060073733,0.4273271029815078,-0.956179803237319,0.7948471270501614,-0.19252157770097256,0.05174659099429846,-0.13847223250195384,-0.9747824827209115,0.9253739234991372,0.7964262645691633,0.7467383262701333,0.7146578216925263,0.5410966952331364,0.9886631090193987,-0.6749303825199604,-0.725515185855329,-0.4664423675276339,0.8747580521740019,0.8115175529383123,0.6236028550192714,0.9450353980064392,-0.8644276759587228,0.16692079650238156,-0.8306819256395102,0.19121698988601565,-0.5373677760362625,0.2856216891668737,-0.5338683137670159,0.5864278958179057,-0.9772572345100343,-0.05211651371791959,0.14961095387116075,0.2478481843136251,0.7853013286367059,0.37933769868686795,-0.6233180891722441,0.500198773574084,0.8011334356851876,0.9496374549344182,-0.5415733815170825,-0.7274094824679196,-0.9478282202035189,-0.7044920162297785,-0.8378797257319093,-0.7427680557593703,0.9847937212325633,0.964338093996048,-0.8441877537406981,-0.6061907261610031,-0.1692946502007544,-0.7905077338218689,-0.20837736362591386,-0.3128733835183084,-0.941229185089469,0.6334450570866466,0.15563755435869098,0.9752618665806949,0.30384088959544897,0.577784854453057,0.5030766669660807,0.4487793641164899,-0.9486238420940936,0.5821694112382829,-0.9819159442558885,0.01997624011710286,-0.8567159441299736,0.9216744625009596,0.1309105670079589,0.7021624865010381,-0.6656781379133463,0.022715467028319836,-0.8601736831478775,0.9939131950959563,-0.516291453037411,0.11149985948577523,-0.970756946131587,-0.5523524461314082,0.4505498353391886,0.5402707722969353,-0.5488442187197506,-0.8253188543021679,-0.5353102586232126,-0.37636682856827974,-0.6405297955498099,0.12087482633069158,-0.4615093944594264,0.6679067192599177,-0.3256306787952781,0.4959003524854779,0.473607812076807,0.5573216513730586,0.3881318848580122,-0.8627047021873295,-0.4557702448219061,-0.04720036359503865,-0.24376165261492133,0.616292379796505,0.6817567907273769,-0.38200220419093966,0.05086005898192525,-0.1212305212393403,-0.25475770002231,0.46957940189167857,0.1593485507182777,-0.6691655293107033,0.20382607448846102,-0.12529641203582287,-0.7980274260044098,0.9831789350137115,-0.14519304502755404,-0.3491220395080745,-0.320943983271718,-0.6359102674759924,0.1737859547138214,-0.36669800244271755,0.34487355640158057,-0.19442744180560112,0.7029254077933729,-0.6220156224444509,-0.22913445346057415,0.7564470474608243,0.06001602811738849,0.22942955838516355,0.10896607721224427,0.2751005948521197,0.3832894745282829,-0.5246521029621363,-0.5507034468464553,0.4731053924188018,0.14013294037431479,0.5110205542296171,-0.7111520110629499,0.06716539477929473,-0.8265242935158312,0.3442995911464095,0.9525054334662855,0.5843470226973295,0.22566585475578904,0.9268450648523867,0.48034359654411674,-0.8208934324793518,0.7030003722757101,-0.7794010895304382,-0.23880129493772984,-0.3581122988834977,-0.13517344649881124,0.2901761718094349,0.7556861848570406,0.3433200055733323,-0.5876842369325459,-0.7068625795654953,-0.18204342434182763,-0.17755887005478144,-0.3792183119803667,0.7519477694295347,0.14870306476950645,-0.9098034212365746,0.12537255650386214,0.3030103547498584,-0.5912912106141448,0.20140025578439236,0.4503789208829403,0.8734188275411725,-0.24941718531772494,0.08951441338285804,0.3202553135342896,-0.8831080524250865,0.7033293722197413,0.13466648943722248,-0.1191811989992857,-0.17889142129570246,0.2632701573893428,-0.8889489294961095,-0.9589211689308286,0.9629127169027925,-0.7455765581689775,-0.9285897547379136,-0.2400264129973948,-0.4499214217066765,-0.7450279374606907,0.8240877548232675,0.13535410258919,0.5678758886642754,-0.14230733551084995,-0.7422659522853792,-0.20239271642640233,-0.7522015878930688,0.8531243582256138,0.27229898888617754,0.9477218417450786,-0.04104855004698038,-0.3133046953007579,0.9312797645106912,-0.8971335510723293,0.5055349222384393,-0.3176421271637082,0.9301302707754076,-0.0015954370610415936,0.5945940273813903,-0.2939449893310666,0.0411030245013535,0.001481249462813139,-0.22805655468255281,0.26879332587122917,0.27715635066851974,-0.24639927595853806,0.20891612535342574,-0.4869844354689121,0.25268925772979856,0.4259228389710188,0.05529783386737108,0.8523236946202815,-0.4853627849370241,0.06910351617261767,-0.8238508119247854,-0.17430737288668752,0.779909489210695,0.3196769575588405,0.3867792319506407,0.44570501102134585,0.738016833551228,0.7807662421837449,-0.3351518805138767,0.6573455724865198,-0.7440352286212146,-0.7861907836049795,-0.6529541914351285,0.7359154005534947,-0.6060080924071372,0.10122201917693019,-0.663174637593329,0.41781294811517,-0.9127412578091025,-0.29328044736757874,-0.7464761594310403,-0.10488269152119756,0.5015194187872112,-0.4586886717006564,0.76227569533512,-0.05810717958956957,-0.5076169320382178,-0.8524177805520594,0.3295642053708434,0.15169538324698806,-0.16827977867797017,-0.4525038353167474,-0.131315722130239,0.7591501739807427,-0.8938388884998858,-0.49316995218396187,-0.21512447204440832,-0.24362378101795912,0.052291115280240774,-0.08268414624035358,0.6724192448891699,-0.4888847302645445,-0.9779323097318411,0.3863387107849121,0.7471326692029834,-0.7036540228873491,-0.7368789878673851,0.9088884182274342,-0.509853177703917,-0.3971335832029581,-0.5163604384288192,-0.8047586618922651,0.9532076506875455,-0.9055485939607024,0.7840737979859114,0.24504541931673884,-0.997264405246824,-0.1316676693968475,0.49200298730283976,0.3364805802702904,0.550023159943521,0.32574943266808987,0.5754057099111378,0.3066306500695646,0.8002965343184769,0.7545426385477185,-0.3399510467424989,0.10306360945105553,0.5464391126297414,0.10196270374581218,0.599793600384146,-0.18530618026852608,-0.8038962837308645,-0.9068325408734381,-0.5229261852800846,-0.1880540275014937,0.31555993342772126,0.12217378616333008,-0.6308209034614265,-0.8248791936784983,0.49040561774745584,0.801200645044446,-0.8182630119845271,-0.37436571018770337,-0.18529820488765836,-0.5643194722943008,-0.43407756835222244,0.1748586818575859,-0.9284979277290404,0.4675360480323434,0.1708703930489719,0.6038099434226751,-0.4482148829847574,0.8974355827085674,0.7969308341853321,0.5541492709890008,0.8534491835162044,0.2881986182183027,-0.10835453541949391,-0.4507815889082849,0.35950445430353284,0.4069761564023793,-0.6148310517892241,0.7886191979050636,-0.29884544387459755,0.7699478659778833,0.17929930007085204,-0.3191132410429418,-0.9204903687350452,0.41281985584646463,-0.6302728247828782,0.6215783827938139,0.7357020024210215,-0.0980295930057764,0.8170830304734409,-0.32374417083337903,-0.7780914744362235,-0.7966853645630181,-0.2537149488925934,0.35437696520239115,0.16386485053226352,0.11353028612211347,0.4062499492429197,0.9574927273206413,0.9668439137749374,-0.43188936775550246,-0.16616389714181423,-0.28091957326978445,0.5113674020394683,-0.19890090357512236,0.5515708816237748,-0.4649059008806944,-0.9240389014594257,-0.23201024206355214,0.9078532261773944,0.6811292394995689,-0.7569996402598917,0.6644381773658097,-0.39379579992964864,0.08447288488969207,-0.6518449387513101,0.44443317828699946,-0.9936007210053504,-0.18903779378160834,-0.7087506717070937,0.945618188008666,0.763355148024857,-0.20998180378228426,0.5845835851505399,-0.14915076503530145,0.8789579439908266,-0.8176430375315249,0.5671239928342402,-0.5232287771068513,-0.7248752037994564,0.08440927555784583,0.7390792034566402,0.3643197496421635,-0.9007461736910045,-0.9974386584945023,0.24064073991030455,-0.821791463997215,-0.5447009480558336,0.8519100635312498,-0.283586953766644,-0.9302619728259742,0.5588791011832654,0.9546871092170477,0.9627768346108496,-0.7985824011266232,0.47112979739904404,0.45195583533495665,0.9615870881825686,0.6648070057854056,0.34256052505224943,0.386790927965194,0.8152676052413881,-0.4799839286133647,-0.19434657087549567,0.82449214393273,0.0699024754576385,0.4041782529093325,0.9270480987615883,0.1457658796571195,-0.6477233576588333,0.05307882325723767,-0.7070026770234108,0.9407218284904957,0.395091843791306,-0.9078799514099956,0.6785037312656641,-0.9695655801333487,0.3434262569062412,0.07563534053042531,-0.18237797683104873,-0.7823104136623442,0.7297954801470041,-0.6064144144766033,0.9775886465795338,-0.20275432849302888,0.6899053538218141,0.7813949845731258,-0.9973805332556367,-0.06895989831537008,-0.7966954787261784,0.5424657897092402,-0.2651852103881538,-0.3041793634183705,0.410631709266454,0.42954904679208994,-0.7499161739833653,0.43913267413154244,-0.36400384921580553,0.14173579309135675,0.24302551103755832,-0.4695259532891214,0.7436792487278581,-0.8051289347931743,0.20854233531281352,0.8794514182955027,0.26205438235774636,0.2873711478896439,0.616250635124743,-0.3306955765001476,0.9412047723308206,0.33816124964505434,0.9493645103648305,0.2751090405508876,0.7741514421068132,0.9569190246984363,-0.5503584900870919,-0.264112560544163,0.07672640075907111,-0.6240808120928705,0.16054376773536205,-0.25706599513068795,-0.6414758521132171,-0.7175333108752966,-0.7707734843716025,-0.1474964413791895,-0.8100283434614539,0.5379293584264815,-0.8896168782375753,-0.42582956282421947,0.817715828306973,0.9237121278420091,-0.18979037646204233,-0.11093194456771016,0.13142365124076605,-0.48569039022549987,0.2794712712056935,0.6465944638475776,0.5796492197550833,0.3365126485005021,0.6506280908361077,0.9856972531415522,-0.1797116519883275,0.40370595268905163,0.642760940361768,-0.03554366622120142,-0.17197446571663022,0.9103144644759595,-0.675516810733825,0.42795062996447086,-0.9972224561497569,0.6907515418715775,0.7220566724427044,0.9096804573200643,-0.191622419282794,0.11189754260703921,-0.31111672054976225,-0.814532573800534,0.6986455656588078,0.23782382812350988,0.0726108686067164,0.626551961991936,0.054662199690937996,0.17555181588977575,0.6335061984136701,0.19780805567279458,-0.13959657354280353,-0.7885880190879107,0.5375717650167644,-0.06946832872927189,-0.7210084013640881,0.9268564749509096,-0.829700028989464,0.7662373958155513,-0.15826380206272006,-0.4842858319170773,-0.09251102805137634,-0.6868699425831437,0.744701218791306,0.9419329673983157,-0.07280772645026445,-0.8890912323258817,0.03448034776374698,-0.02513789478689432,0.05978572741150856,0.5510138962417841,-0.13285115035250783,0.7438430208712816,-0.7426396561786532,0.36242446722462773,0.711448862683028,-0.6152768721804023,0.9604673306457698,0.8524774741381407,-0.1861673928797245,-0.4779637265019119,0.023886763025075197,0.43298734771087766,0.7622554143890738,0.42766351578757167,0.7598014171235263,-0.49902385380119085,0.3307813028804958,0.22738105664029717,-0.11926477495580912,-0.2318083755671978,0.23265704791992903,-0.3015349768102169,0.2984296912327409,0.8801394146867096,0.1321225785650313,-0.8254321236163378,-0.12838433124125004,0.3683386710472405,0.9185036164708436,-0.0014480790123343468,0.13034001365303993,0.5526712075807154,0.31609404971823096,-0.06222845194861293,0.2833738187327981,0.3580537857487798,-0.43898391211405396,-0.45759080862626433,0.8820756198838353,0.5546851987019181,0.0956343226134777,-0.3047041888348758,-0.7390705561265349,0.19923888007178903,0.5724401548504829,0.022131543140858412,-0.4937492264434695,-0.3492212384007871,0.4152288045734167,-0.24045067327097058,-0.6867275452241302,-0.5982074113562703,0.45125009026378393,-0.5547707672230899,0.5913771642372012,-0.6836042231880128,-0.3607680555433035,0.43655972881242633,0.5452601443976164,-0.46484413417056203,0.2692160694859922,-0.36632821755483747,-0.10560715012252331,-0.8900941638275981,-0.34703351045027375,-0.7118928716517985,0.9252340272068977,-0.36822105571627617,0.37939616991207004,0.5328603838570416,0.5429515899159014,0.40563537180423737,0.790955750271678,0.7657317705452442,-0.22132579749450088,0.0013795942068099976,0.6258298861794174,0.20400966284796596,0.11251050978899002,0.10944705689325929,-0.5856425822712481,0.817697518505156,0.3719986672513187,-0.20909833908081055,0.36466205306351185,0.12658631429076195,0.153522492852062,-0.8905351678840816,-0.6952620595693588,-0.6867678188718855,-0.5516543504782021,-0.9797187750227749,0.6112359631806612,-0.23287926381453872,-0.8058876348659396,0.3256530212238431,0.20010021468624473,-0.3937979331240058,-0.011896811425685883,0.7470816522836685,0.40284492913633585,-0.6029141419567168,0.5486507751047611,0.7307949769310653,0.5056474385783076,-0.10780457314103842,0.18839120771735907,-0.3651772444136441,0.7367672170512378,0.08160339901223779,-0.35333174001425505,-0.8414793941192329,0.8329516728408635,-0.6359028988517821,-0.178156400565058,-0.567759572993964,0.5433689085766673,-0.43939224258065224,0.8858314687386155,0.7116251038387418,-0.6637755343690515,0.4244656376540661,-0.7368457252159715,-0.8796975673176348,-0.16780662443488836,0.46123342169448733,-0.5093173319473863,0.7285182634368539,0.48591448878869414,-0.5260337241925299,0.5348624573089182,0.5736414147540927,0.5471315821632743,0.5081152734346688,0.965167279355228,0.30865020165219903,0.3986719227395952,0.16545671969652176,-0.8722247187979519,-0.9675434399396181,0.5351506643928587,0.6607501115649939,-0.17409509047865868,-0.25889779068529606,0.053637199103832245,0.6516980808228254,-0.6421304405666888,0.5393517897464335,0.9165324256755412,-0.4016726026311517,-0.8203698787838221,0.9508063727989793,0.9705091686919332,0.40560820838436484,0.13946038717404008,-0.2862199367955327,0.5663165934383869,-0.3452184279449284,0.07251278590410948,0.5362728261388838,0.8812278569675982,-0.11830415250733495,-0.5457737199030817,-0.4696461483836174,0.8867132724262774,0.8448215955868363,-0.8415801608934999,-0.4855050705373287,0.3360211453400552,0.5513271102681756,-0.034227749332785606,-0.9786199922673404,0.3217087406665087,0.8106880281120539,0.493021706584841,0.32882400695234537,-0.44538297643885016,0.9043290200643241,0.9940426577813923,-0.10463204048573971,-0.5994591028429568,0.9754696236923337,0.33691115863621235,0.007208812050521374,0.8078587171621621,0.5368496645241976,-0.5217389520257711,0.4686783077195287,-0.9201642218977213,0.1983674862422049,-0.4328975365497172,0.5866164728067815,-0.4801589515991509,0.2707891846075654,-0.45125526236370206,0.04605113668367267,-0.6341801881790161,0.5117891719564795,-0.08345115929841995,0.13996303547173738,-0.27531605353578925,0.2954261898994446,-0.1956986365839839,-0.5056372871622443,0.4219061862677336,-0.764348316937685,-0.2505252198316157,-0.41604702919721603,0.36782353883609176,0.04268371732905507,0.6084020556882024,0.06400885386392474,-0.21654882421717048,-0.8392697335220873,-0.9301817333325744,0.2591332816518843,-0.5698052546940744,-0.3483130815438926,0.20848273346200585,-0.534424523357302,-0.15672259265556931,-0.7677042442373931,0.9311652635224164,0.825143625959754,-0.03904125327244401,0.7171130352653563,-0.9584982483647764,-0.9317173403687775,0.22430196963250637,0.7971300017088652,0.16690540546551347,-0.08054672321304679,0.17524390434846282,-0.21552859293296933,0.7407325324602425,0.6968509647995234,0.16607703175395727,0.3484460134059191,-0.9840537100099027,0.9546214086003602,0.7648584190756083,-0.7912604389712214,0.7383562382310629,0.6464550965465605,-0.3370050713419914,0.2932046363130212,0.41613470669835806,0.17842958634719253,0.32729653362184763,0.9640524056740105,0.14211560506373644,-0.2491107895039022,0.7560198362916708,0.8018768979236484,0.10655068745836616,0.810476403683424,0.6562353069894016,-0.2899231379851699,0.8586969627067447,0.8306891615502536,-0.6976593332365155,-0.1300335810519755,0.4290081891231239,-0.8762251096777618,-0.33592752972617745,-0.09152512717992067,-0.8567187702283263,0.9020745484158397,0.042086970526725054,0.7691796272993088,-0.9630149374715984,-0.7854619864374399,-0.24455258902162313,-0.8479111790657043,0.832834392786026,0.9356659622862935,-0.5730333202518523,0.3019957127980888,-0.2831095941364765,-0.8934270469471812,-0.08394877426326275,-0.11189153511077166,0.12124826107174158,0.7863006521947682,0.4012182718142867,0.6577170207165182,0.04189551994204521,0.9335050112567842,-0.48137020878493786,-0.9895211728289723,0.23191522620618343,-0.6886413912288845,0.2613684609532356,0.432006630115211,-0.3450304833240807,-0.6176295476034284,0.10975705785676837,0.8089398560114205,0.8378193527460098,-0.2983957673422992,0.6743197380565107,0.8736298456788063,-0.5773703483864665,-0.8636215245351195,0.5536916069686413,-0.9852143512107432,0.8225827384740114,0.45267486618831754,-0.6946004419587553,0.5644114105962217,-0.2208866230212152,0.2615204667672515,0.4383043418638408,-0.47081397334113717,-0.7908897791057825,0.06350066745653749,0.5604709568433464,-0.09661212051287293,-0.9192270040512085,-0.30939263897016644,-0.4952129786834121,-0.1558458167128265,-0.46831739926710725,0.29614960169419646,-0.17878208495676517,-0.5146296708844602,-0.06500913761556149,-0.26397047378122807,0.09940242022275925,-0.24015820771455765,-0.28982739290222526,-0.5548349558375776,0.6524300910532475,-0.26254528341814876,0.8980592824518681,0.2836477141827345,0.40090570179745555,0.9911975390277803,0.378375097643584,0.05115641327574849,0.6170361805707216,0.20308061316609383,0.7047084369696677,0.8479473595507443,-0.1290922616608441,-0.45085790613666177,0.06040271790698171,0.3144860602915287,0.9600373120047152,0.2647431483492255,-0.4136281246319413,-0.8434340697713196,-0.8362238449044526,-0.6624428597278893,-0.3649105695076287,-0.48809266835451126,0.48691442562267184,0.36576544027775526,0.2555914609692991,0.3385850163176656,-0.2650200645439327,-0.4592057429254055,0.3434760272502899,0.6916743582114577,-0.9173208414576948,0.2970009525306523,-0.8903424232266843,0.9399321600794792,0.48395426478236914,0.7339222976006567,-0.5729320445097983,0.4687568894587457,-0.8063112986274064,-0.17102324962615967,0.8715626508928835,0.8876737169921398,-0.20650176657363772,-0.2298231665045023,-0.5024753115139902,-0.9885849663987756,0.983784472104162,0.899212786462158,0.21451328275725245,0.6838440950959921,-0.905435782391578,-0.9346033735200763,-0.8075049705803394,0.13953037466853857,-0.8675550282932818,0.734575008507818,-0.9920936156995595,-0.20280043361708522,0.048348390497267246,-0.8363374727778137,0.0963528803549707,-0.011398158501833677,-0.6849624793976545,0.40252004377543926,-0.7038467978127301,0.6682053240947425,-0.007785085588693619,0.8895061397925019,-0.426399152725935,-0.026977457106113434,-0.6501268371939659,0.16551149170845747,0.753534518647939,-0.3806543657556176,0.3365522692911327,0.2989962245337665,0.6021741391159594,0.723996423650533,0.4890548544935882,0.09278881922364235,0.9402974601835012,0.9498111885040998,-0.23223206913098693,-0.12347522657364607,-0.16860251361504197,0.8321081213653088,-0.6618181825615466,0.1202894477173686,-0.41931862430647016,-0.09876794880256057,-0.8712468147277832,0.7145051513798535,-0.7912394450977445,0.6567214820533991,0.33669052831828594,0.09942066064104438,0.9919532961212099,0.9586406033486128,0.6885241433046758,0.4947940418496728,-0.7095591104589403,-0.3173449011519551,-0.12304109055548906,0.21525855315849185,-0.548287442419678,0.9840506659820676,0.5627200747840106,0.19400286953896284,-0.8545444188639522,0.21096004080027342,0.4122322308830917,0.36893860902637243,0.13230350241065025,-0.6084481417201459,0.04006275022402406,-0.9294275511056185,-0.047305329237133265,-0.04167557740584016,0.9423043299466372,0.3561873761937022,0.6157226078212261,-0.6026163105852902,0.7663519084453583,-0.035203393548727036,0.2826056117191911,-0.4972153943963349,0.34272347716614604,-0.08916170662268996,0.5243412302806973,0.7793387528508902,0.3044965607114136,-0.3706039981916547,0.5238054990768433,0.5834742267616093,-0.0034324130974709988,-0.44472099747508764,0.8079832354560494,0.606011011172086,-0.3245271476916969,0.3659465964883566,-0.4024239615537226,0.0779161686077714,-0.1730249966494739,0.5142047009430826,-0.7409207681193948,-0.26977914245799184,0.4329868317581713,0.13960355194285512,0.7375178877264261,-0.022920995485037565,0.41044717095792294,0.8002924933098257,0.15176340797916055,-0.7136106309480965,-0.7225379575975239,-0.7920378930866718,-0.1577424742281437,-0.9702648324891925,0.38168788654729724,0.30032206093892455,0.8853823477402329,0.26719976123422384,-0.3504091091454029,-0.24122379114851356,0.8335506585426629,0.965957541950047,-0.5648430059663951,0.8675223286263645,-0.6881847074255347,0.5272243223153055,-0.813396770041436,-0.6984484493732452,-0.8731164834462106,-0.3034366690553725,0.10056198155507445,0.48981928266584873,-0.9853924484923482,-0.7102974322624505,-0.8886535158380866,0.026027855928987265,-0.8303616712801158,-0.04509748751297593,0.571028167847544,-0.8299058489501476,-0.7580945193767548,0.3455224707722664,0.9540389236062765,-0.5270002568140626,0.5149572691880167,0.18257121136412024,0.9303277083672583,-0.2191475834697485,0.2838459205813706,-0.09132265765219927,-0.7569965701550245,0.03455971786752343,0.4772221934981644,0.22365614119917154,-0.7042515901848674,0.08885851735249162,0.38395196618512273,0.6812716713175178,0.1531345839612186,0.9741141363047063,-0.9754217648878694,-0.6465645306743681,0.5798989892937243,0.35293887788429856,0.7857761178165674,-0.5368060562759638,0.7971058753319085,0.06538573745638132,-0.49439435778185725,0.40773668233305216,-0.3780853166244924,0.8926578378304839,-0.5569596658460796,0.9586449582129717,0.268915475346148,0.6414962499402463,-0.7069190978072584,-0.07430705707520247,-0.8757898067124188,-0.2960997698828578,-0.9334448529407382,-0.35808278853073716,0.15795584954321384,-0.8850557086989284,0.718151533510536,-0.3636000999249518,-0.46174991596490145,0.5584270367398858,0.4477084018290043,-0.7136073699221015,-0.39705287339165807,0.6509921937249601,-0.5064270519651473,-0.5684892516583204,0.08823088277131319,0.35411947639659047,0.36657218215987086,0.28185849776491523,0.17326339753344655,0.1214623679406941,0.8062924798578024,-0.24723464716225863,0.8665062640793622,0.38501720735803246,0.08121407637372613,-0.17573874676600099,0.4381724735721946,-0.4342197999358177,-0.2682046010158956,0.3585439044982195,-0.6868467163294554,-0.6778608891181648,0.27211321983486414,-0.25236522126942873,-0.7824446652084589,0.43812429206445813,-0.331933400593698,-0.7313427207991481,-0.8319296846166253,0.7309611141681671,0.5241074664518237,-0.059401114005595446,-0.17808908876031637,-0.18258446315303445,-0.1994586461223662,0.2983152996748686,0.16308547742664814,0.6431372542865574,0.6305079567246139,-0.575883973389864,0.1463949866592884,0.45158234098926187,-0.8945945855230093,-0.9640681250020862,0.5616374486126006,0.06020747730508447,0.4960000393912196,-0.5678633619099855,0.5853210454806685,0.6256992402486503,-0.43844633316621184,-0.5252719959244132,0.3656423455104232,-0.6042943219654262,-0.5304981316439807,-0.3239105832763016,0.15721132792532444,-0.9393761148676276,0.6857763840816915,0.17455131513997912,-0.197341687977314,0.19669971708208323,0.6399906552396715,0.5781020931899548,-0.9164288402535021,0.2953785927966237,-0.2469397927634418,-0.739355780184269,-0.8814883567392826,0.22672605328261852,-0.5980663415975869,-0.24371227342635393,-0.08457170939072967,0.6766553702764213,-0.6736981351859868,-0.07100734813138843,0.004752513021230698,-0.3006457556039095,0.6149310166947544,-0.13820906868204474,0.23280308628454804,0.7208325653336942,0.834145198110491,-0.873396007809788,0.5768036753870547,0.8907831404358149,-0.17549683060497046,-0.6978954127989709,-0.9587707696482539,-0.8402653140947223,0.1209391918964684,-0.9732075720094144,-0.9659300721250474,0.07411935133859515,-0.05797571921721101,0.11407633917406201,0.2897002031095326,0.17307865619659424,0.2614134708419442,0.1280309809371829,0.4491897909902036,-0.14660436613485217,-0.1855585901066661,-0.46336208982393146,0.26754241390153766,-0.5431735934689641,0.9739034506492317,-0.006572524085640907,0.7948801969178021,-0.21147566149011254,-0.898257371969521,-0.34419868513941765,-0.9998598406091332,-0.09336506808176637,-0.4640700751915574,-0.26822491781786084,-0.27112754294648767,0.2651420785114169,0.32968391850590706,-0.1855598301626742,-0.6874447511509061,-0.0399855705909431,-0.08652385231107473,0.9320425824262202,0.1491699367761612,-0.9267301829531789,0.981001959182322,-0.24929940002039075,-0.2399410344660282,-0.10937950201332569,-0.09691484179347754,-0.3306684996932745,-0.7560990564525127,0.12075951835140586,0.0887768417596817,0.10837329551577568,-0.870870609767735,-0.5608333232812583,-0.3698988645337522,0.3372072405181825,0.1790009392425418,-0.024081408511847258,0.012793032918125391,-0.889158102683723,-0.625784968957305,-0.7841702224686742,0.1390772582963109,-0.9787965705618262,0.11640251148492098,0.5477444157004356,-0.40214744163677096,0.7613261141814291,0.9687151703983545,-0.015623361803591251,-0.30089469300583005,0.5527649759314954,0.41691454593092203,0.5521419919095933,-0.7592379571869969,0.2535871285945177,0.032578319776803255,-0.0016508270055055618,0.8406056077219546,0.2615467137657106,0.0697519644163549,0.37780794873833656,-0.5026266644708812,0.6611473639495671,-0.10911565041169524,-0.7521801949478686,0.24706073850393295,-0.2061847820878029,0.48282223707064986,-0.9513789634220302,-0.30354454601183534,-0.3009847132489085,0.8547214204445481,-0.8802419486455619,-0.18166484776884317,-0.5854632039554417,-0.7388502424582839,0.41363990074023604,-0.046686490532010794,-0.7019062163308263,-0.23890709783881903,0.5485858963802457,0.5624265377409756,-0.4145628307014704,-0.20756575232371688,-0.3183294995687902,-0.5508547918871045,-0.7306898622773588,-0.9411605237983167,0.47624082723632455,0.67296191630885,0.034611279144883156,0.8371247239410877,0.6353356000036001,-0.9655634118244052,-0.945040684659034,0.0479868701659143,0.40469270339235663,-0.041232702787965536,0.5466172625310719,0.2196456934325397,0.45563674438744783,0.9010952669195831,0.8723957189358771,0.7441701386123896,-0.3077936633490026,-0.13206359231844544,0.6008707354776561,0.6726713296957314,-0.8970195301808417,0.4816801669076085,-0.5975537286140025,0.35017511062324047,0.4499327475205064,0.8852040045894682,-0.9208125527948141,-0.8869401970878243,-0.29965369775891304,0.6328773531131446,-0.8975371257402003,0.10419526230543852,0.47668955009430647,-0.005930465180426836,0.9149630437605083,-0.1398285892792046,0.860072520095855,-0.35894488962367177,0.14956157840788364,-0.9658200982958078,-0.1385096632875502,-0.24566311202943325,0.9799961261451244,-0.6299133296124637,0.751254437956959,0.12118757050484419,-0.29126253351569176,-0.4874002877622843,-0.6694544092752039,-0.9967103181406856,0.10476681217551231,-0.9335913341492414,-0.6732289921492338,0.8322359900921583,-0.7781148450449109,0.9028019951656461,0.3847403544932604,0.3774083429016173,0.32064091973006725,-0.2953419336117804,-0.46375036984682083,-0.9084750339388847,-0.1050062789581716,-0.6666131317615509,0.9391063167713583,0.7398067871108651,0.2932770545594394,0.37965947901830077,-0.5552125577814877,-0.5801285542547703,0.47291946364566684,-0.8216890394687653,0.3031451776623726,-0.6634238078258932,-0.20470653846859932,0.030552036594599485,0.6421507089398801,-0.16827888321131468,0.9959045797586441,0.896443017758429,0.5192609168589115,-0.3689049598760903,-0.6412307415157557,0.5031465459614992,0.5028248368762434,-0.6836891868151724,0.819679428357631,0.9461450078524649,0.46060457453131676,0.40725297294557095,0.8903290824964643,0.9827354256995022,0.4540135613642633,-0.9915651041083038,0.6902294550091028,0.4361052494496107,0.28622439643368125,-0.5909051671624184,0.6204039244912565,0.5614977367222309,-0.10628067795187235,0.43057450745254755,0.41369830584153533,0.7467066361568868,0.9075877401046455,0.05035050818696618,0.21897325664758682,-0.6184545471332967,-0.922685872297734,0.4785098838619888,-0.13956851279363036,-0.5260736518539488,-0.017174305859953165,-0.39792259922251105,-0.6450462052598596,-0.798324644099921,-0.4530580104328692,-0.01709478348493576,0.12361842254176736,-0.9518139958381653,0.7601597025059164,0.8187176370993257,0.3503462220542133,0.7533293068408966,-0.7145381886512041,0.5702581699006259,0.708415730856359,0.874664306640625,-0.2010815041139722,0.42962377425283194,0.9839755692519248,-0.9252823335118592,-0.05499381199479103,-0.1618159981444478,-0.8760037217289209,-0.206608593929559,0.2691769516095519,-0.6850137603469193,-0.1264991769567132,-0.11686897836625576,0.4385209083557129,0.4340835986658931,0.14685128070414066,-0.22314541740342975,-0.7282582065090537,0.8093255846761167,-0.783584407530725,0.9140380606986582,0.6071096886880696,-0.9984821113757789,-0.4769657654687762,0.35630689142271876,-0.26656655175611377,0.3066639434546232,0.2385450303554535,-0.10609215358272195,0.25892385886982083,-0.32580901635810733,-0.27108153933659196,-0.2730966415256262,-0.2561272899620235,0.4609849159605801,-0.805381772108376,-0.5926432311534882,0.7267786161974072,0.9193253512494266,0.9903632090426981,-0.3226915905252099,-0.31636409740895033,-0.09950985852628946,0.5901853116229177,-0.6290379520505667,-0.916987837292254,0.25052190758287907,-0.8402418522164226,0.44067642325535417,0.035675021819770336,0.41860581282526255,0.9950406705029309,-0.03777946811169386,0.7668200633488595,-0.8781104409135878,0.31406500935554504,-0.2024869341403246,-0.9130451697856188,0.11163249937817454,0.6835862235166132,0.4336954178288579,0.06363241095095873,-0.9046322288922966,-0.4630338395945728,0.5167096252553165,0.9520755568519235,0.45216428115963936,0.08162862062454224,0.7893425743095577,-0.2250543343834579,0.2040815227665007,0.6629054076038301,0.09977587219327688,-0.8150333478115499,0.18191524781286716,0.3153265486471355,0.8520994009450078,0.38466060627251863,-0.5998667469248176,0.9968418781645596,0.07556739682331681,0.6927311378531158,-0.6857885178178549,-0.711124574765563,0.5892107225954533,0.9426924930885434,0.5754231726750731,-0.04474987927824259,0.5962003618478775,0.03877968620508909,0.3038679608143866,0.7427182197570801,0.09384432900696993,-0.2145743565633893,0.4012670093216002,0.10029234923422337,-0.9395641344599426,0.8931240607053041,-0.2670492106117308,0.3858825257048011,0.5779750128276646,-0.19180694222450256,0.1789516694843769,-0.5232649738900363,0.8699066224507987,0.3982907887548208,0.23201409447938204,0.9282753393054008,0.5245347716845572,-0.9986972231417894,-0.4588291705586016,-0.5865341848693788,-0.24753866530954838,0.18934304313734174,-0.8658199082128704,-0.7494291202165186,0.5121904592961073,0.45871441159397364,0.6246854588389397,-0.3602138701826334,-0.9166836217045784,-0.9853733670897782,0.17678218008950353,-0.18762003304436803,0.9132585828192532,0.2719897204078734,-0.2770774499513209,-0.6027835034765303,-0.028172172605991364,-0.41758878622204065,-0.8926388672553003,-0.8269800990819931,-0.6365844598039985,0.24257472017779946,-0.3194839544594288,-0.2425882201641798,0.6306961122900248,0.4555041892454028,0.12337425164878368,0.06445812294259667,-0.4295980925671756,0.3896303977817297,-0.05069918464869261,0.6409113896079361,0.5368075147271156,-0.4090070007368922,0.7213213192299008,0.6855982402339578,0.21491554286330938,0.3344937954097986,0.32374765584245324,0.0759664042852819,0.8174703805707395,0.11335538700222969,-0.41678103851154447,-0.5787888881750405,0.4019484338350594,0.8528104163706303,0.46595994057133794,0.21476426115259528,-0.16797110391780734,-0.15501305647194386,-0.4206603649072349,0.2620358164422214,0.4740070956759155,-0.7475005188025534,-0.24081221781671047,0.6757293567061424,-0.34790730150416493,-0.8428846606984735,-0.04078752640634775,0.7503938544541597,-0.27168715791776776,-0.846418859437108,-0.11774068884551525,-0.4132424625568092,0.7010481213219464,0.4442550493404269,-0.41000996762886643,0.2966613359749317,0.21104214247316122,-0.8518314082175493,-0.1980940205976367,-0.2904428858309984,-0.6219925615005195,0.3352851625531912,0.7225326336920261,-0.975777720566839,-0.6258995262905955,-0.633706035092473,0.5144018516875803,0.24987083626911044,-0.9498135782778263,0.14752451376989484,0.5990047757513821,-0.16416922537609935,0.5019158576615155,0.956451425794512,-0.6408671485260129,-0.4329749224707484,-0.23008733754977584,0.102832006290555,-0.16575778322294354,-0.34943104814738035,0.3439703434705734,-0.4476412986405194,-0.23602922726422548,-0.4177902853116393,0.32531155040487647,-0.07190456986427307,-0.10148367937654257,-0.059219508431851864,0.5387948676943779,-0.3597692158073187,0.4378740848042071,-0.0021992120891809464,0.07973310025408864,-0.8394930236972868,-0.0927195968106389,-0.8064246834255755,0.26868355087935925,-0.6831877781078219,-0.1671915976330638,-0.7663126299157739,0.924219714011997,-0.24115217104554176,0.1804034854285419,0.7654457963071764,0.5101098660379648,-0.7528110039420426,-0.45968673564493656,0.14590535033494234,0.8297716495580971,0.029904135037213564,0.1622792985290289,-0.8662958587519825,0.37621871568262577,-0.6793874246068299,0.14632364129647613,0.5481318230740726,0.5303811673074961,0.7364810770377517,0.7158563155680895,0.4727265671826899,-0.018246257212013006,-0.25566541124135256,-0.3984303274191916,-0.15925111575052142,0.09240130567923188,0.614734620321542,-0.501311325468123,0.9245570669882,-0.5067621334455907,-0.9005262036807835,0.3989376178942621,0.9087856290861964,0.1615910497494042,-0.7414275030605495,0.16045712493360043,0.6867726589553058,-0.9127448168583214,-0.7256927997805178,0.7499528918415308,0.4365316084586084,0.7262201248668134,-0.26645423052832484,0.911748877260834,0.6626540934666991,-0.7069364259950817,0.8335237931460142,-0.7357909795828164,-0.004048375878483057,0.6969771096482873,0.8749389671720564,0.16653692722320557,-0.9725908953696489,-0.11024088272824883,0.2504649846814573,-0.4373401259072125,0.48721067141741514,0.8366883038543165,-0.9438975537195802,-0.5054434509947896,-0.5393253457732499,-0.07084182044491172,0.3670896361581981,0.5885437154211104,-0.36277841590344906,0.2764303144067526,-0.053381781093776226,-0.5279392735101283,-0.9020139831118286,-0.7800997830927372,0.5332567933946848,0.32146041514351964,0.6186019796878099,-0.6082149385474622,-0.7220677747391164,-0.9296058472245932,-0.02251236094161868,0.35054269852116704,-0.38158877892419696,0.5889519066549838,-0.7404081858694553,-0.31141685973852873,-0.721573231741786,-0.4979306720197201,-0.09040701622143388,0.24423934472724795,0.018688607029616833,-0.30706528248265386,0.3393555320799351,-0.10084343468770385,-0.277299324516207,0.5066213412210345,0.5459741656668484,0.8539950544945896,0.7034738785587251,-0.9040799522772431,-0.22090389439836144,-0.2678057528100908,0.6780212707817554,0.8662248197942972,-0.8223816188983619,-0.02266605757176876,0.9923440162092447,0.4859242169186473,-0.3232547393999994,-0.19669028650969267,-0.020378392189741135,-0.24998099636286497,-0.07732850313186646,-5.0362199544906616e-05,-0.5288152387365699,0.041071392595767975,0.496466803830117,-0.9785294462926686,0.46316090831533074,-0.5174815626814961,-0.656134354416281,-0.18517640139907598,-0.6878861300647259,0.8749732738360763,-0.13078231364488602,0.48967411974444985,0.6891050185076892,0.06421338813379407,-0.0790182244963944,-0.20151566062122583,0.12990770721808076,0.7257484667934477,-0.1906529967673123,0.5538610806688666,-0.7734772013500333,-0.8958022617734969,-0.6793635049834847,-0.2505180914886296,0.46225898107513785,-0.6999834473244846,-0.8790271421894431,-0.7100693346001208,-0.012260708957910538,-0.9461162379011512,0.04392345855012536,0.6895418153144419,-0.5416538831777871,-0.06118881702423096,0.3848510873503983,-0.5423161312937737,0.42391500528901815,0.4993723640218377,0.18325122259557247,0.2395926881581545,-0.7079130532220006,0.950671355240047,-0.9201425830833614,0.9039220563136041,-0.8981190966442227,0.32362336153164506,0.12151279114186764,0.6505824886262417,-0.7940498138777912,-0.18219062546268106,0.27601181669160724,-0.8232402582652867,0.7358330087736249,-0.6217378051951528,-0.9387669004499912,-0.46626487793400884,-0.01185772567987442,-0.205169556196779,0.659915953874588,0.2278854725882411,0.6291857878677547,-0.05373981362208724,-0.6054587131366134,0.8620617371052504,0.17327803373336792,-0.8116524638608098,-0.09060279838740826,0.9272923092357814,-0.6690019317902625,-0.6216116198338568,-0.6176236043684185,0.37882538652047515,-0.39398282254114747,-0.5483710072003305,-0.40107433684170246,0.5987723097205162,-0.6688520438037813,-0.4054416222497821,0.4055309621617198,0.670140977948904,0.2661584741435945,0.4269582028500736,-0.9858541521243751,-0.8998100864700973,-0.6277917511761189,-0.15012219035997987,-0.029966484755277634,-0.4045254299417138,-0.43095308914780617,-0.8311728746630251,0.28089961502701044,-0.19396296702325344,-0.08632831275463104,0.9877316667698324,0.9055526247248054,0.8994170920923352,-0.9934986741282046,0.9636849202215672,-0.6096390793099999,0.09253899659961462,0.4496757653541863,-0.45225123036652803,-0.9184982762672007,-0.8743756464682519,0.9873528690077364,-0.5126031190156937,0.6478267251513898,0.09463372686877847,0.9647070001810789,-0.7576188859529793,0.9372290587052703,0.4157221489585936,0.5974554936401546,-0.6154989493079484,0.5979829090647399,0.8848289400339127,-0.50099664228037,-0.6523191714659333,-0.7003393629565835,0.8269488047808409,-0.8172905086539686,0.0750758252106607,-0.044080132618546486,-0.9048630534671247,-0.8157923980616033,-0.27461688639596105,-0.7934142076410353,0.41343387216329575,0.8892035828903317,-0.9777278071269393,0.647445812355727,0.7634567515924573,-0.5458936574868858,0.7204524944536388,0.4860595390200615,-0.5973920170217752,-0.43056078162044287,0.595590780954808,0.2997737331315875,-0.8166523026302457,0.97142562456429,0.7713881246745586,-0.009723980445414782,0.9515600190497935,0.05532514303922653,0.42087733186781406,0.3479944826103747,-0.8453752342611551,0.482868580147624,0.7480926671996713,0.9546798877418041,0.6510926792398095,0.14411910669878125,-0.8366028191521764,-0.570235641207546,0.015780423767864704,0.3882173914462328,-0.5531520349904895,-0.569513589143753,-0.6311583109200001,-0.2302203574217856,0.38868293445557356,-0.6194505481980741,-0.5173280485905707,0.3459355556406081,0.2866778178140521,0.38179730204865336,0.579921533819288,0.13295112224295735,-0.19705705111846328,0.9077571113593876,0.47773903561756015,0.7372149280272424,0.07941697910428047,-0.373847808688879,0.8020269433036447,-0.5177727616392076,0.79637422086671,-0.888907038141042,-0.7143507921136916,-0.645845134742558,0.35188684053719044,-0.5847535748034716,-0.15591813111677766,-0.789043421857059,-0.2221950301900506,-0.13229478243738413,-0.5606652298010886,-0.6938923671841621,-0.33854954363778234,0.05538516724482179,0.31089578615501523,0.900122893974185,-0.49246013443917036,-0.4700850867666304,0.22152100503444672,-0.3682545288465917,-0.027807782869786024,-0.8295087632723153,0.08323571737855673,-0.5097388844005764,0.7806599834002554,-0.9161046058870852,-0.849161081481725,-0.7238646312616765,0.5387051212601364,0.7226485940627754,-0.6958714881911874,0.48653879296034575,0.5317059550434351,0.4443640341050923,0.10215013474225998,-0.3077294076792896,-0.3108097314834595,0.7738338983617723,0.4844106761738658,0.96821085549891,0.23056396283209324,0.9189778687432408,0.3581752525642514,-0.8041380392387509,-0.12576693017035723,0.8380290754139423,0.9468093025498092,-0.06731061590835452,-0.25831451872363687,0.5863268636167049,-0.8199695278890431,0.9934605001471937,0.4805513140745461,-0.2251855367794633,-0.991133258678019,0.046755353920161724,-0.04484893102198839,-0.6757662212476134,-0.6245391201227903,0.3752918802201748,0.503977604676038,0.48712181579321623,0.6834779744967818,-0.6165581769309938,0.5109983957372606,0.5558934812434018,0.6474056937731802,-0.9182303394190967,-0.8987992769107223,-0.08886924432590604,0.13228909531608224,0.8381471978500485,0.901902615558356,0.10369307594373822,-0.753494446631521,-0.16798739694058895,0.15733311278745532,-0.38540593860670924,-0.24246587138623,0.2736064218915999,0.9438917022198439,0.48116237903013825,0.9596667932346463,0.8718050853349268,-0.48218158818781376,-0.09881100989878178,-0.5687702349387109,0.22567106503993273,0.20148213766515255,-0.25909241382032633,0.6154272817075253,-0.586300999391824,-0.18970151897519827,-0.6742999972775578,0.9690613420680165,0.9367993609048426,0.5206805146299303,-0.555133041460067,0.15447527868673205,-0.24447833094745874,0.8284536669962108,0.33412515139207244,0.5186292654834688,0.00838493462651968,-0.1195911718532443,0.7090139421634376,-0.7160524884238839,-0.39844702556729317,-0.05695629958063364,-0.3238456374965608,-0.4241969371214509,0.6089120646938682,0.6729806866496801,-0.10772242629900575,0.7231621448881924,-0.9666298949159682,0.2834657644852996,0.19140899134799838,0.5070125800557435,-0.8574951570481062,-0.5140918479301035,0.9939951873384416,0.6452356711961329,0.3446547156199813,-0.30051546543836594,0.730717952363193,0.9046728196553886,-0.051410074811428785,-0.945530669298023,0.08943493943661451,-0.8626274522393942,-0.6233837502077222,0.5318370559252799,-0.9228735119104385,-0.5163460271432996,-0.9305624924600124,-0.7533458434045315,-0.17940028570592403,0.853507302235812,-0.6433998956345022,-0.05248702084645629,0.792371473275125,-0.47202404076233506,-0.5906480853445828,-0.6752375299111009,-0.7280805394984782,0.2491570166312158,0.1732970615848899,-0.19939937954768538,-0.16153675178065896,0.146881605964154,0.8954097563400865,-0.8442051080055535,0.207729481626302,0.838522685226053,0.8780861478298903,0.8523325184360147,0.1818556934595108,-0.38850700575858355,0.6884623151272535,0.8044295418076217,-0.44260474340990186,-0.1450535380281508,0.19059532089158893,0.7935816869139671,0.006338522769510746,-0.2858867892064154,-0.867846098728478,0.34875882137566805,0.6313237859867513,-0.1541757145896554,-0.2694191485643387,-0.5927784224040806,0.7844670130871236,0.4755229144357145,0.11450778087601066,-0.40383442118763924,0.06315686088055372,-0.557098007760942,0.10459114471450448,0.35177183942869306,-0.6290346728637815,-0.4373050448484719,-0.8503417214378715,-0.6651228875853121,-0.022037100978195667,0.46129278698936105,0.49222697922959924,-0.12593850120902061,-0.4086913848295808,-0.4921945664100349,-0.8827567235566676,0.369252716191113,-0.11925711575895548,0.2067863238044083,-0.09634715411812067,-0.02821054309606552,0.7725188578478992,-0.7105455668643117,-0.19578696740791202,-0.4066525725647807,0.8717817179858685,0.0586133380420506,0.4909865530207753,-0.5686380229890347,-0.520960595458746,0.9293529102578759,-0.5931456652469933,-0.6742556882090867,0.5294250105507672,0.42510421574115753,0.2641806206665933,-0.9778477349318564,0.17281019547954202,-0.9235099824145436,-0.9448301997035742,0.5288839000277221,-0.2738638315349817,0.015390944667160511,-0.06255905004218221,-0.9163884562440217,0.1729741501621902,0.11066224239766598,-0.0717433700338006,-0.707610085606575,-0.15450933948159218,-0.8907432560808957,-0.5669911573641002,-0.49720077542588115,-0.663653964176774,-0.8725826377049088,-0.9416895662434399,0.8098109466955066,-0.025118489749729633,-0.32659386098384857,-0.745998322032392,0.0018910756334662437,-0.6836038366891444,-0.04033231595531106,0.9428577511571348,-0.03237319318577647,0.9070162386633456,-0.6716586234979331,0.19210566254332662,-0.6923466771841049,-0.6532016862183809,0.46586542669683695,0.6329166125506163,0.7044350993819535,0.12845222977921367,0.44798283465206623,0.4071246962994337,0.19614785816520452,0.03602547151967883,0.5343252941966057,0.8190046460367739,0.245288856793195,-0.48388912761583924,-0.5699534895829856,0.6518216202966869,0.4737036693841219,-0.8943358426913619,0.9978216728195548,-0.5892594777978957,0.5163180776871741,0.1322974287904799,0.04520139330998063,0.13449557404965162,-0.5421460634097457,-0.3405321082100272,-0.09089286858215928,0.7770598661154509,0.1461925506591797,-0.7632225789129734,0.11379979504272342,0.8687189049087465,0.9626407520845532,0.6933112447150052,0.26254680985584855,-0.5128566138446331,-0.37177909165620804,0.7321233786642551,0.5903684454970062,0.9958063187077641,0.5108601888641715,0.15586249670013785,-0.23164776153862476,0.1396620897576213,-0.7795231812633574,0.519590656273067,-0.2544021257199347,0.8478754763491452,-0.5680402661673725,0.4668159759603441,-0.6693184413015842,-0.7781303580850363,0.10340948682278395,0.11233858484774828,-0.1999626844190061,0.8386104558594525,-0.07211515633389354,0.776380080729723,0.37328872131183743,-0.9295351621694863,0.2872855607420206,-0.9790518386289477,0.839082658290863,0.9781324192881584,0.515290052164346,-0.5995228691026568,0.6752765863202512,-0.8596540549769998,0.3583092759363353,-0.7738388972356915,-0.1590609885752201,0.6866279458627105,-0.336074760183692,-0.0713027948513627,-0.8931074398569763,-0.8372550928033888,-0.6702443105168641,0.7190376566722989,0.6930438973940909,0.905909629072994,0.6858852743171155,-0.9720989293418825,0.21297580190002918,0.21268380293622613,0.6262185107916594,-0.7276911055669188,0.22193215368315578,0.6080787689425051,-0.8822785005904734,0.42782172793522477,0.7160505121573806,0.07819583127275109,0.4986770488321781,0.42641174141317606,0.37187658762559295,0.7872431394644082,-0.9164060186594725,-0.14475356368348002,-0.14824306312948465,0.9302818486467004,0.09468708140775561,-0.47495624981820583,-0.3906230228021741,-0.3573030745610595,-0.8677822439931333,0.2927237106487155,-0.39353160187602043,-0.3084038980305195,-0.1111411196179688,0.6879829978570342,-0.8617426687851548,0.15190695878118277,0.27450875798240304,-0.022833482827991247,0.25300714978948236,0.3901808699592948,0.017841541208326817,0.16215106006711721,-0.08031632844358683,-0.9188717151992023,0.6946721323765814,-0.45743098901584744,0.7463813140057027,0.8723702561110258,0.9176203901879489,-0.09849379025399685,-0.6971739055588841,-0.7861744123511016,0.6485975757241249,0.5965714459307492,0.3307067286223173,-0.7376347281970084,0.5425417316146195,0.8692296766676009,-0.9966117865405977,-0.3384190364740789,-0.38584775337949395,0.9179455540142953,-0.0797645035199821,0.0034083654172718525,0.8387867943383753,0.021401146426796913,-0.08305703056976199,0.06057240068912506,0.0480715692974627,0.46757659409195185,-0.3020532773807645,0.3067805296741426,-0.2044562054798007,-0.5410615769214928,-0.8524305881001055,0.13053108099848032,0.12522184057161212,-0.9509935844689608,0.7563230111263692,0.12362531432881951,0.6874029487371445,-0.6939424821175635,-0.3007661388255656,0.36116202268749475,0.3779151579365134,-0.09108094312250614,0.44412378408014774,0.11366298515349627,0.1336470004171133,0.628011129796505,-0.5633388892747462,-0.4213551194407046,0.29364560917019844,0.715476730838418,0.41132893646135926,0.6036834865808487,0.6729827462695539,0.545468820258975,-0.004158972296863794,-0.46504999371245503,-0.5266294674947858,0.5166172501631081,0.14168550167232752,0.8436946817673743,0.8727239514701068,-0.5575879141688347,0.01399326417595148,0.8035144321620464,-0.37620046455413103,-0.7560408390127122,0.18159683514386415,0.5228518880903721,0.7556941802613437,-0.01630752719938755,-0.49920008797198534,0.5040985736995935,-0.5591240031644702,0.4003492812626064,0.10610083863139153,0.866367569193244,0.25477096904069185,0.7021509334445,0.3650603578425944,-0.6724062510766089,0.5604663384146988,0.4440276245586574,-0.3352311789058149,0.8562077647075057,-0.9728527553379536,-0.9993206639774144,-0.33616056246683,0.8903947086073458,0.9490429083816707,0.5130075458437204,-0.6172350714914501,-0.26602047868072987,0.3697284213267267,-0.5565931666642427,0.8327216152101755,0.8777858563698828,0.2566690635867417,-0.5336355660110712,0.4527022587135434,-0.057252984028309584,-0.45669341599568725,-0.7479142993688583,0.42170133953914046,-0.07095146086066961,0.4608385101892054,-0.8221444454975426,-0.6762441233731806,0.38135591987520456,0.13689658930525184,-0.3800910855643451,-0.09880045242607594,0.6545258369296789,-0.966765321791172,-0.9142147582024336,-0.4959221216849983,-0.6785886860452592,-0.22892743768170476,-0.6031288551166654,-0.6586552350781858,-0.46250232122838497,-0.6590722724795341,0.8629991603083909,-0.6017705514095724,-0.41265184292569757,0.21099132299423218,-0.4487348268739879,0.8015416003763676,0.9554154914803803,0.7381883133202791,0.5963464365340769,0.2566157979890704,0.22276682360097766,0.45039520831778646,-0.8168576387688518,0.2193967024795711,0.25114612095057964,-0.30544262705370784,0.6424548751674592,0.07506177900359035,0.34832545183598995,-0.04043139098212123,0.6640315055847168,0.4626154485158622,0.13503449503332376,-0.5254052262753248,-0.9053947026841342,-0.8347002454102039,0.4907443728297949,0.8931555016897619,0.5168985659256577,0.8296747878193855,-0.4930721460841596,-0.733167836908251,-0.049980166368186474,0.9763280497863889,-0.5488390563987195,-0.4841256020590663,-0.18601823737844825,0.6918340823613107,0.5376740195788443,0.2957874801941216,-0.41173980850726366,0.6557892560958862,0.11053109262138605,-0.6014688010327518,0.7785184434615076,0.10113032767549157,-0.15005589835345745,0.7175355986692011,0.13332023238763213,0.565943690482527,-0.06948596751317382,-0.313329603523016,0.23192751640453935,0.6289098081178963,-0.5416485765017569,-0.9188465587794781,-0.5527372863143682,-0.6734779453836381,0.17847700510174036,0.8585694059729576,0.20136893494054675,-0.06136163976043463,-0.5553566254675388,0.232195480260998,-0.2756891339085996,-0.1170508679933846,0.028681317809969187,0.5679093925282359,0.8257629815489054,-0.9790948810987175,-0.011122762225568295,-0.14166586799547076,0.23882826743647456,0.8038874273188412,0.9013829180039465,-0.05123986257240176,0.9988156952895224,0.8943777289241552,0.10542346397414804,-0.03481149906292558,-0.5913025541231036,0.1506206621415913,-0.7146290964446962,0.396214809268713,0.7041074242442846,-0.3784579876810312,0.09311316628009081,-0.4643309819512069,0.34925087774172425,-0.5362753109075129,-0.3072929931804538,-0.6365637523122132,-0.20775193674489856,-0.1682635247707367,0.30265983287245035,0.6905683004297316,-0.0669459835626185,-0.6702076043002307,0.34110198775306344,0.44184999261051416,-0.9136420502327383,0.11109077045693994,-0.25190964294597507,0.5119500923901796,0.7937885434366763,0.9727312680333853,-0.11845214478671551,0.8345590480603278,0.33205234026536345,0.06636715400964022,-0.46652105590328574,0.6462302319705486,-0.18593619763851166,-0.5348251592367887,-0.8537887609563768,-0.7033461527898908,-0.7284391331486404,0.9535299395211041,-0.14084764057770371,0.10169521532952785,-0.8133050203323364,-0.3117855084128678,0.8974785571917892,0.08506982820108533,0.38194552110508084,-0.9519759989343584,0.8827531766146421,-0.013005963061004877,-0.19867991842329502,-0.3096086783334613,0.38542474526911974,-0.0868079918436706,-0.6064056535251439,-0.3271064069122076,-0.3820263734087348,-0.4268106441013515,-0.6647934331558645,-0.1378886392340064,-0.038286961149424314,-0.16068505309522152,-0.9606518466025591,-0.2183222407475114,-0.2809947784990072,-0.39162454986944795,-0.04892162373289466,0.3060188591480255,0.3437451617792249,0.9682788266800344,-0.8283962765708566,0.12943035131320357,0.8965950049459934,0.8926208848133683,-0.48803589260205626,-0.27440518513321877,-0.7673584767617285,-0.7749511222355068,-0.22748047020286322,-0.4451151816174388,-0.3949951184913516,-0.3162220665253699,-0.45242234924808145,0.7732308581471443,0.5576460342854261,-0.8938613310456276,0.9894698564894497,-0.9198005832731724,-0.2681044680066407,-0.4321777718141675,-0.06224277522414923,-0.9997414243407547,0.23425617814064026,-0.4680730393156409,-0.6238143821246922,-0.9040082236751914,0.012443321757018566,0.6512081711553037,-0.7262013959698379,-0.23869424546137452,0.8512946129776537,-0.9626066605560482,0.09965478861704469,-0.6921175648458302,0.07347155315801501,0.6463754554279149,0.17832473292946815,0.3933027796447277,-0.8705106354318559,0.876845717895776,-0.2676299442537129,-0.5755318240262568,-0.7715534423477948,-0.6269160932861269,0.24055258324369788,0.6344262920320034,-0.3013487667776644,-0.9770144941285253,0.8940858906134963,0.41878710128366947,0.7227154611609876,0.5139100076630712,0.3509360202588141,0.4843758586794138,0.4607410468161106,0.9111322555691004,0.23380446480587125,0.5730386869981885,-0.5276968022808433,-0.9962340807542205,0.3793040784075856,-0.7552416929975152,-0.7748785009607673,0.9918801109306514,0.35242126043885946,0.6876113810576499,-0.9273637221194804,0.5650956518948078,0.9147520591504872,0.8345047049224377,-0.8508235635235906,-0.8995253010652959,-0.41480391984805465,-0.6087356028147042,-0.7242423514835536,0.10932817263528705,-0.9164137016050518,-0.6074568405747414,-0.09321502549573779,0.11820774246007204,0.01763852685689926,0.6754880240187049,-0.8727467721328139,0.4856439605355263,0.3785564457066357,-0.9138279724866152,-0.3683787123300135,0.8977385959587991,0.973161259200424,0.479836112819612,0.778301911894232,0.63374994834885,0.10660944506525993,0.6510476958937943,-0.8368125311098993,-0.8715496831573546,-0.9461942571215332,-0.49047396751120687,0.7785800448618829,0.39386514015495777,0.8781353840604424,-0.23346037417650223,-0.42954742489382625,-0.9617070504464209,-0.1734793223440647,0.7748172245919704,-0.09755143662914634,-0.4807576169259846,0.6280314479954541,-0.30432757548987865,0.042421730235219,0.052244278602302074,0.25710912281647325,0.49477130779996514,-0.18261040141806006,0.8935377192683518,0.06795170111581683,-0.7985900365747511,-0.5547329825349152,-0.18104412965476513,0.38852435536682606,0.3344955346547067,-0.31477077305316925,0.9409046922810376,0.3379899878054857,-0.16866770666092634,-0.5039620599709451,0.08725056191906333,-0.8403711342252791,-0.6686901347711682,-0.3082707831636071,0.40711999451741576,-0.4281387384980917,-0.5384198459796607,-0.9104082048870623,0.9594126101583242,-0.9997869408689439,-0.33889517234638333,-0.9344609449617565,0.47684032702818513,-0.5856620497070253,0.40138605469837785,0.6423995923250914,0.7585883662104607,0.11973924888297915,0.3371097235940397,-0.1415164154022932,-0.277848104480654,0.9820950319990516,-0.03648203890770674,-0.1735344105400145,0.6779843056574464,-0.268519164994359,-0.7120554405264556,-0.5471026785671711,-0.8646655329503119,-0.05138780130073428,-0.07498743571341038,-0.35773881105706096,-0.9590067719109356,0.3547979397699237,0.5926770670339465,0.8553776638582349,-0.6094055068679154,0.7118131485767663,-0.5364054352976382,0.5427565071731806,-0.45083852857351303,-0.06413352815434337,0.04407573118805885,0.616557152941823,-0.7614880921319127,0.09684217628091574,0.28046735282987356,0.009126001503318548,-0.6722190794534981,-0.6224990459159017,-0.7627244535833597,-0.7374616535380483,-0.13344844384118915,0.09114758903160691,0.2580137914046645,0.7244465779513121,0.2158532184548676,-0.896851122379303,-0.8534922702237964,0.8044165270403028,-0.7132106581702828,0.5893606459721923,0.845986457541585,-0.5791759076528251,0.42049211310222745,-0.5515509815886617,-0.5340432529337704,0.7006559991277754,0.8038507457822561,0.5279263621196151,-0.18430950725451112,-0.5085324081592262,0.43006212590262294,-0.38915020413696766,0.3630331754684448,-0.3886136724613607,-0.5265109688043594,0.4632994909770787,-0.07401123642921448,-0.7520860061049461,-0.06573343882337213,0.5235443529672921,-0.45234179962426424,-0.4419404328800738,-0.9860844505019486,-0.8959599495865405,0.440812598913908,-0.4230659157037735,0.4539024727419019,-0.684141768142581,-0.06752530252560973,-0.9763249456882477,0.4502904419787228,-0.8466170751489699,-0.05555819906294346,-0.1498947236686945,0.032942292746156454,0.15358279831707478,-0.30183440912514925,-0.8929347703233361,0.5118086505681276,-0.4051535618491471,-0.3423248645849526,-0.5088602714240551,0.7206909554079175,-0.21227985713630915,0.997967186383903,-0.5046495134010911,0.90338936727494,0.681337941903621,0.11629337258636951,0.8518131151795387,0.7445544903166592,0.9466761001385748,-0.43519065948203206,0.2624199907295406,0.19091953290626407,0.07625394407659769,-0.6767411343753338,0.716883766464889,-0.35741683654487133,-0.45351011771708727,0.8230799539014697,0.8178847236558795,-0.4213122627697885,-0.5180096947588027,0.8436245271004736,0.20107518322765827,0.4628623970784247,0.8558668461628258,0.2537614400498569,0.5270746643655002,0.13019300438463688,-0.2981509049423039,-0.3462347909808159,0.3873559623025358,0.1798689109273255,0.2864798912778497,0.3173477528616786,0.49335141433402896,-0.8584670731797814,-0.2538408259861171,-0.84187887981534,0.04718267824500799,-0.4566480885259807,-0.01579262176528573,-0.45278608798980713,-0.045053855050355196,0.00162833696231246,0.3749953326769173,0.2385442885570228,-0.9389965343289077,0.6251391391269863,-0.017273380886763334,-0.7494334517978132,0.867496675811708,0.41158079728484154,0.48172175511717796,-0.30240019131451845,-0.3723850487731397,-0.2773824748583138,-0.4651575987227261,0.6250514332205057,0.3887643595226109,-0.4498240319080651,0.9747726670466363,-0.7339754048734903,-0.6439953246153891,0.10303343506529927,0.2894646539352834,0.3352397680282593,0.6663752752356231,0.8438874962739646,-0.29202423011884093,-0.5246225227601826,0.9255704218521714,-0.5071385386399925,0.6745152771472931,-0.7346309069544077,0.6846039770171046,-0.7929278472438455,0.41826934833079576,0.6116445921361446,-0.0020951139740645885,0.2883493625558913,0.06080144410952926,-0.4099776209332049,0.1328612887300551,-0.1658086352981627,0.4353203126229346,0.3565277070738375,0.4438708247616887,0.9662241670303047,0.6463037547655404,-0.30523084849119186,-0.9517368348315358,0.20991313084959984,0.17112110694870353,0.8414194313809276,0.031966544687747955,-0.2713686474598944,0.4952891240827739,-0.4740067250095308,-0.9576638205908239,0.8821614040061831,0.6647378103807569,-0.8307888437993824,0.5306115853600204,0.042139682918787,0.37901504756882787,-0.8204572005197406,0.7997287642210722,0.748617741279304,-0.9982480467297137,-0.7943340088240802,-0.2061544992029667,0.7250610431656241,0.74952811608091,0.3093025549314916,0.9712252086028457,0.6544029898941517,0.7003675159066916,0.4935578955337405,0.4273849199526012,0.45670148357748985,0.6523993592709303,-0.8023069966584444,0.3166026221588254,-0.4944775886833668,-0.0839531421661377,-0.4723163479939103,0.7174556623212993,0.19717904645949602,-0.49471581680700183,0.9483474427834153,0.005833953619003296,-0.11458270344883204,-0.9759181649424136,0.21044449554756284,-0.41428546514362097,0.9608362698927522,0.03354136738926172,-0.10851175803691149,-0.6984114279039204,0.7887506778351963,0.9526722459122539,-0.17708514956757426,-0.3748204745352268,0.16285273898392916,0.6828073798678815,-0.968371070921421,0.14479733258485794,-0.7072467124089599,0.22164447931572795,0.8386130663566291,0.46767107024788857,0.11122866719961166,-0.5357673722319305,-0.45386721566319466,0.3077746909111738,-0.038685936480760574,-0.1553490567021072,0.7119552125222981,-0.5012688040733337,-0.47665391489863396,-0.5870350515469909,0.0893380488269031,0.8888129382394254,-0.4790723235346377,0.2964979251846671,-0.8422754141502082,0.8010185561142862,-0.7066667000763118,0.5459595690481365,-0.7425220608711243,0.27224677661433816,-0.5152824749238789,0.0755734690465033,0.124408227391541,-0.7209411445073783,-0.20391023065894842,0.33248935639858246,-0.8590517626143992,-0.599963110871613,0.09841167274862528,-0.8691589324735105,-0.4932535393163562,-0.5940657556056976,0.05476247891783714,0.39079218124970794,-0.5878560054115951,-0.2054062159731984,-0.5150806056335568,-0.10415003215894103,-0.549207747913897,0.6318152113817632,0.2968372832983732,0.8076591631397605,0.4141066735610366,-0.5699982675723732,-0.05886343587189913,-0.5999402012676001,-0.8058885699138045,-0.08024951023980975,0.1112060071900487,-0.3234266433864832,-0.8863040735013783,-0.7106685377657413,-0.7394287684001029,0.645270592533052,0.29881221149116755,-0.2691332194954157,-0.020791003480553627,-0.14661285048350692,0.9565388229675591,-0.8925443687476218,0.880095818080008,-0.05640447838231921,0.46254240116104484,-0.8489246494136751,-0.358434013556689,-0.31234005838632584,0.07328411564230919,0.6380561040714383,-0.6979511436074972,-0.06533482205122709,0.6416528080590069,-0.34462548745796084,-0.39410835364833474,0.8770383070223033,0.7217798451893032,0.18413439579308033,0.07157885795459151,-0.07427615625783801,0.5294001633301377,-0.6204426074400544,0.7714735292829573,0.10934819933027029,-0.5999073921702802,-0.3077917695045471,0.9911652924492955,-0.004383057355880737,-0.9774823184125125,0.028522232547402382,0.854446042329073,0.9089769870042801,0.9570462149567902,0.8025542013347149,0.13483717618510127,0.7735819108784199,0.4498086483217776,0.4814988072030246,-0.9418801628053188,0.25405293609946966,0.5391944493167102,-0.9997762101702392,0.5466470955871046,0.37257640715688467,0.8546249438077211,0.176118238363415,0.5526537168771029,0.27565002301707864,-0.2418243233114481,0.2956263762898743,0.7138679455965757,0.6390640307217836,-0.7654437595047057,-0.7744039734825492,0.4206683519296348,0.06814262690022588,-0.3268250972032547,-0.43233291059732437,-0.3887311704456806,-0.5352315157651901,0.8430930553004146,-0.044820737559348345,0.6341769928112626,0.21732950629666448,-0.5864878022111952,0.6469227713532746,-0.6110053961165249,0.5312966145575047,-0.9032325814478099,-0.782802336383611,0.21685542119666934,-0.14893272751942277,-0.04844025708734989,-0.5282076103612781,-0.144610027782619,0.3492628592066467,-0.33701475663110614,-0.09533753478899598,-0.8346687434241176,-0.25959441997110844,-0.443432561121881,0.20751428278163075,-0.6306463573127985,0.16886497428640723,-0.8438931028358638,-0.507176170591265,-0.5907987467944622,-0.6329736434854567,0.7098572528921068,0.8458221200853586,0.23564013978466392,0.668434863910079,-0.24201565654948354,-0.22222976433113217,-0.5229750559665263,-0.20062000630423427,0.4804752739146352,0.573781352955848,0.31977512361481786,-0.6410864042118192,0.7273452556692064,-0.9066367209888995,-0.23894528253003955,0.34951978735625744,0.2257211748510599,-0.9505172958597541,0.8262240695767105,0.5635703345760703,-0.5494675552472472,0.05469794478267431,0.5177598637528718,0.5347922295331955,0.19227229617536068,0.3726085191592574,-0.6498946310020983,-0.4816789571195841,-0.5605753683485091,0.43329514749348164,0.9687446071766317,-0.6669317157939076,0.7382742371410131,-0.38597589964047074,-0.29817702155560255,-0.44630505004897714,0.950811458285898,-0.4991455674171448,0.803052487783134,0.04836598830297589,-0.8303983267396688,0.2958745788782835,-0.9264787980355322,0.05065059429034591,0.8920188844203949,0.9572029178962111,-0.38523424696177244,0.3046359191648662,0.6065986137837172,-0.23069824976846576,-0.4976760409772396,-0.475665794685483,-0.9538826863281429,-0.7896279096603394,-0.022306606639176607,-0.35788467107340693,-0.6767087476328015,-0.2193105728365481,-0.14985467214137316,0.7251293589361012,0.871168062556535,-0.0007875766605138779,-0.857369705568999,0.7896988820284605,0.7827882482670248,-0.13776729349046946,0.029380545485764742,0.4965651258826256,-0.329010512214154,0.5267770369537175,0.5415299492888153,0.643629165366292,0.45434058271348476,0.7359584053047001,-0.5603949064388871,0.8602608940564096,-0.25503303250297904,-0.6439575320109725,-0.1292436709627509,-0.9100194266065955,0.631735002156347,-0.8963180775754154,0.8753544557839632,0.9493992850184441,0.2885394678451121,-0.6662510670721531,-0.9642171310260892,-0.7892010528594255,-0.758289382327348,-0.014624410308897495,0.20686794351786375,0.02633106103166938,-0.3106199987232685,-0.5282894619740546,-0.34144130116328597,0.4240293689072132,0.3701589312404394,0.3867903840728104,0.826714042108506,0.002213764004409313,0.41588224563747644,0.7055982872843742,0.8220165357924998,-0.8978306446224451,0.9536996087990701,-0.1516095818951726,-0.20101494900882244,-0.32370787765830755,0.7986897570081055,0.491036266554147,0.2870715092867613,0.18220852222293615,-0.4292213162407279,0.7753501157276332,-0.7692942335270345,-0.7261984194628894,-0.4514178903773427,0.8622184479609132,-0.021880248561501503,-0.6110613723285496,-0.56998908566311,0.904776415321976,-0.6993050067685544,-0.8454631860367954,0.9432602836750448,0.43337666522711515,0.9220024319365621,0.8399474415928125,-0.4414256392046809,-0.829032217618078,0.09466900723055005,-0.32274368312209845,-0.1846499741077423,-0.6370501262135804,-0.008082706946879625,0.9359894734807312,-0.8934487630613148,-0.9080823883414268,-0.2380392188206315,0.9377661570906639,-0.3346415553241968,0.9209280065260828,-0.42372762924060225,-0.604976661503315,-0.5885088080540299,-0.2869069562293589,0.6223044744692743,0.5783772338181734,0.035406692419201136,0.34195246919989586,0.8735260139219463,-0.4869736125692725,-0.31738921953365207,0.7852654228918254,0.4591202666051686,-0.06438954640179873,-0.578919933643192,-0.5060608456842601,-0.09534947900101542,-0.7136619808152318,0.7144470298662782,0.32449993724003434,0.06603687070310116,0.1259001437574625,0.6573298592120409,-0.32648598914965987,-0.4846835760399699,-0.06822284264490008,0.8915437404066324,0.033702518325299025,0.8533653686754405,0.692160589620471,-0.15422224160283804,-0.545465896371752,-0.7701055570505559,-0.866315983235836,-0.22954081650823355,-0.17084889765828848,0.4194728140719235,0.04724578186869621,0.35114767868071795,-0.9267621268518269,-0.09500527288764715,0.06946373078972101,-0.9108728305436671,0.5551111693494022,0.782640275079757,-0.9250992797315121,0.6274095913395286,-0.5531907579861581,-0.7308559231460094,0.6807609321549535,-0.842626417055726,-0.542614160105586,0.7972545805387199,0.8092012428678572,0.14094625180587173,0.841957482509315,0.6810114225372672,0.3865008894354105,0.5999224600382149,-0.7889333125203848,0.210384133271873,-0.2695936351083219,-0.5710859620012343,-0.3953333245590329,-0.6621819850988686,-0.2031517387367785,0.015054257586598396,0.9482140028849244,-0.8400871939957142,0.5296828495338559,-0.5373423108831048,0.13046790333464742,0.3574969279579818,0.10959615744650364,-0.14841531170532107,-0.45949525851756334,0.2314755693078041,0.5590368914417922,0.8741580680944026,0.5228066062554717,-0.39628121815621853,-0.10868891421705484,0.42236247146502137,-0.8627216052263975,-0.09797471761703491,-0.7092573856934905,-0.39045141683891416,-0.4527977602556348,0.13256106059998274,-0.7408437659032643,0.9944385667331517,-0.7461699852719903,0.005641558673232794,-0.1523746275343001,0.013847992289811373,-0.7779002105817199,-0.78177026566118,0.544697645585984,-0.5648298999294639,-0.9690852821804583,0.09354311833158135,0.45803979272022843,0.05551331955939531,0.0036976574920117855,0.9773291768506169,-0.04657149547711015,0.2924309545196593,-0.8572472967207432,-0.008562507573515177,0.5139754055999219,-0.19376995135098696,-0.9305525775998831,-0.53994922619313,-0.9010877730324864,-0.30514601711183786,-0.4893467710353434,0.459288673941046,0.8122406299225986,0.3921093996614218,-0.3762130457907915,0.9774447483941913,0.6222513047978282,0.6547648692503572,-0.4555874024517834,0.7079885299317539,-0.19537513237446547,-0.42120497301220894,0.9239512663334608,0.7916033649817109,-0.01665363134816289,-0.015812282916158438,0.5800986858084798,0.2353078075684607,0.010453919414430857,0.5940487287007272,-0.11365797650068998,-0.34564142068848014,-0.9237769753672183,0.4987444467842579,-0.5196220031939447,-0.786601064261049,0.7215832015499473,0.9124152408912778,0.35510301357135177,0.7695574816316366,0.06146519584581256,-0.7915031565353274,0.34078063862398267,-0.7611412825062871,-0.13905046693980694,-0.9688191916793585,0.8651914671063423,-0.7670184546150267,-0.2307965918444097,-0.808910327963531,0.3461571899242699,-0.03213672712445259,0.48719301354140043,-0.11685672448948026,-0.5804729973897338,-0.7245493335649371,0.80540761211887,-0.8492801557295024,0.6612916146405041,0.2293452904559672,-0.7109586405567825,-0.2529535130597651,0.386517153121531,0.43770059524104,-0.5808254620060325,-0.5765931061469018,0.04968778556212783,0.6499133338220417,-0.9571636351756752,0.6333788866177201,0.5781564274802804,0.4906229730695486,-0.732256225310266,-0.33876534504815936,-0.8104777722619474,0.6316981981508434,0.6445599533617496,0.315980670042336,-0.4386440645903349,0.8931814855895936,0.0278797778300941,-0.2689894246868789,0.8756178393959999,-0.7016278812661767,0.5172447082586586,0.7405003402382135,-0.9520901148207486,-0.2949135401286185,0.42769944993779063,0.253577989526093,-0.50566645571962,0.5924759204499424,-0.31364531023427844,0.7256850996054709,0.013144784141331911,-0.3517921892926097,0.22742063691839576,0.1280227480456233,0.4324908126145601,0.5302632721140981,0.41393532510846853,0.8183481004089117,-0.42618270637467504,0.10067828139290214,0.9429320697672665,0.9635540936142206,0.10626081237569451,-0.4230765802785754,-0.5131135894916952,0.28620787849649787,0.6477848622016609,0.926340420730412,0.27154160663485527,0.8794549526646733,0.9016252593137324,0.8866476346738636,0.8720355913974345,0.3889306429773569,-0.7725535808131099,0.5417974591255188,-0.4553155084140599,-0.27751787984743714,0.8169841757044196,-0.36270608427003026,-0.2093379246070981,0.9205332808196545,0.8484316719695926,0.7508377307094634,0.023658966179937124,-0.3955075363628566,-0.2809394486248493,0.23598659876734018,-0.33530741976574063,0.30330930231139064,-0.12258923100307584,0.037704071495682,-0.4612728147767484,0.453690177295357,0.09944132715463638,0.9120087516494095,-0.16709363646805286,0.7292911680415273,-0.8830200703814626,-0.21433825371786952,-0.8941325088962913,-0.4624193445779383,-0.6838886388577521,-0.9112013494595885,-0.4688228275626898,-0.17104066908359528,0.19006824167445302,-0.3334218286909163,0.4657551124691963,-0.9017099221237004,-0.2787639172747731,0.5485399886965752,0.1493375268764794,0.7124901437200606,-0.022737291641533375,0.5642360458150506,-0.6416956027969718,-0.04006330668926239,0.7146814675070345,0.8677090900018811,-0.2439878424629569,-0.20577532891184092,-0.02490708837285638,-0.39684629114344716,0.18208990572020411,-0.06874138163402677,-0.6699651684612036,0.8259572847746313,-0.6365674682892859,-0.2082292903214693,-0.7857705000787973,0.948028493206948,-0.2422546176239848,0.7367279268801212,-0.4260618034750223,-0.3915149844251573,0.03617657953873277,-0.6385461688041687,-0.910115978680551,-0.5110605335794389,0.3293908191844821,-0.33043962717056274,0.30170962400734425,0.5356667912565172,0.5156379183754325,0.2454588497057557,0.9735557395033538,-0.5402764491736889,0.35462458804249763,-0.02558966400101781,0.015085852704942226,0.8572355625219643,-0.3201689897105098,0.641421914100647,-0.922362856566906,0.390460099093616,-0.9068943215534091,-0.053433566354215145,-0.4862269498407841,-0.05697606038302183,-0.32659265771508217,0.5719747357070446,0.9750102036632597,-0.6069420957937837,-0.03547337604686618,0.8202287531457841,0.14975250465795398,-0.8250835011713207,-0.21114719519391656,-0.8629222582094371,0.6325669004581869,-0.46097885305061936,-0.9165318300947547,0.6231025741435587,-0.9602857073768973,-0.12488583754748106,-0.6008558073081076,0.3713160161860287,-0.8836681703105569,0.4094518977217376,0.5799250802956522,-0.0725890682078898,0.7841871231794357,0.913364393170923,0.4528583628125489,-0.6038833097554743,0.9703241339884698,0.45011646999046206,-0.8936943160369992,-0.19197210390120745,0.6548225423321128,0.0870314366184175,0.2028276170603931,0.4133015866391361,-0.17652331292629242,-0.6927447835914791,-0.6954613020643592,-0.08326102187857032,0.03167857928201556,0.6789551456458867,0.08743678266182542,-0.955979133490473,0.4446139531210065,0.06399377901107073,0.14038436068221927,-0.15058249747380614,0.9662608099170029,-0.44786521373316646,-0.5537090976722538,0.5332656539976597,-0.24260558793321252,0.9826026526279747,0.7639332958497107,-0.40712733706459403,0.5995219903998077,-0.8750847661867738,-0.9221658995375037,-0.0657451725564897,-0.7801609109155834,0.4365825275890529,-0.30299445101991296,-0.08928196970373392,-0.6482474571093917,-0.027446019928902388,0.6220456203445792,0.5373178594745696,-0.7261414765380323,-0.6319453944452107,0.9984837076626718,-0.8179009966552258,-0.5738587924279273,-0.08190172631293535,0.7277420973405242,-0.686103755608201,0.8793852706439793,0.720993657130748,0.5827928185462952,-0.34949806379154325,-0.8790600532665849,-0.1816959041170776,-0.3503416539169848,0.24930405663326383,0.7448941087350249,-0.4815045655705035,0.6544826994650066,-0.7476551607251167,-0.9016123823821545,-0.23991362703964114,0.06594888214021921,0.13029319420456886,0.32254837825894356,0.5892356471158564,-0.7993627497926354,-0.11746107134968042,-0.824597243219614,0.47688663844019175,-0.9355981913395226,0.11196967447176576,0.2514304229989648,0.16447553131729364,0.6427754373289645,-0.13775385031476617,0.5051500676199794,-0.6940332921221852,0.8165714554488659,-0.9434378165751696,0.3564285133033991,-0.22820165567100048,0.7466002618893981,0.48598019406199455,0.09102887380868196,-0.9511319417506456,0.7068654601462185,0.5904375705868006,-0.007562749553471804,-0.1710194582119584,0.015647510532289743,0.13888844475150108,-0.45623478200286627,-0.5308965155854821,-0.9727401090785861,0.3944196281954646,0.6542144860140979,0.49949346110224724,-0.18307572416961193,-0.5992373395711184,0.5838033519685268,-0.07473044563084841,-0.44956441363319755,-0.5348190157674253,0.16047559212893248,0.21345630707219243,-0.8016087641008198,-0.4984315694309771,0.423534054774791,-0.941077895462513,-0.7068877397105098,0.7575275558046997,-0.9002042273059487,0.03319413075223565,0.6471401094458997,0.7774434629827738,-0.36928287288174033,-0.3834314104169607,0.015639482997357845,-0.7266197646968067,-0.24360961373895407,-0.11467290297150612,-0.22582691302523017,-0.7460848959162831,0.4927568347193301,0.582387441303581,-0.1502784970216453,0.42123277951031923,-0.43085565185174346,0.4033105047419667,0.12618753919377923,-0.38774909637868404,0.26613596780225635,-0.1585085391998291,0.5922056888230145,0.5483161462470889,0.053048898465931416,0.3073085877113044,0.1169476411305368,-0.9211035296320915,0.6046258769929409,-0.11128450138494372,0.9756285464391112,0.6641579065471888,-0.9175795810297132,0.6099200788885355,0.5767889805138111,0.5712514701299369,-0.022344594355672598,0.5932819112204015,-0.8800737275741994,0.9037255337461829,0.8480738643556833,-0.12656693626195192,0.149213548284024,-0.7787814913317561,-0.26624169386923313,-0.9543055887334049,0.00632748706266284,0.5765210264362395,0.07472389470785856,0.28716386668384075,0.2373228701762855,0.8291059276089072,0.321482221595943,-0.058792473282665014,-0.5246929535642266,0.12892275769263506,0.12913944432511926,0.9433178473263979,-0.3459978778846562,-0.7906528660096228,-0.22596915438771248,-0.9793441062793136,-0.6623300109058619,0.3067071894183755,0.7119727628305554,-0.0027064410969614983,0.5111514050513506,0.7482458986341953,0.6033360315486789,-0.6771372458897531,0.17945198947563767,-0.14357468811795115,-0.39501733146607876,0.49810406379401684,0.001183731947094202,0.12849306967109442,-0.7883394667878747,0.5369924260303378,-0.13150059152394533,0.08917680056765676,0.814486772287637,0.48111469065770507,0.04295791918411851,-0.11590416310355067,-0.3787434548139572,-0.07598908571526408,0.3858710746280849,-0.49820292508229613,0.4956239480525255,-0.4428733089007437,0.9853581311181188,-0.346557077486068,0.7500031916424632,0.21930015087127686,-0.750167591497302,-0.7889092178083956,0.2961080246604979,0.9585957657545805,-0.7450220379978418,-0.37556512420997024,0.706031690351665,0.9721372220665216,0.9059444768354297,-0.3390950532630086,-0.6686903056688607,0.802850014064461,-0.7325299647636712,-0.11942426394671202,0.7752179186791182,-0.48162983218207955,-0.9144491790793836,-0.4095133584924042,-0.15945738879963756,0.873328925576061,-0.580609664786607,-0.07357185566797853,-0.5714058731682599,-0.1685499157756567,0.013197902124375105,0.5912503749132156,0.6842466853559017,-0.22141899727284908,-0.7100453861057758,0.41853091632947326,-0.5819061691872776,0.18095632130280137,-0.22126661613583565,0.8596484647132456,0.14784980518743396,-0.18738936772570014,-0.9134447327814996,-0.29986875783652067,-0.15984461503103375,-0.5986537514254451,-0.3817643178626895,-0.2814668626524508,0.3920909808948636,0.13420605286955833,-0.8275830298662186,0.029102466069161892,-0.6568184033967555,-0.8554037916474044,0.8498978191055357,-0.6739405025728047,0.19609373016282916,-0.17525766091421247,-0.7243231027387083,0.46638780320063233,-0.46034297440201044,0.02295564953237772,0.38738040905445814,0.012996423989534378,-0.8765957006253302,-0.14536939887329936,-0.14126335736364126,-0.19330312823876739,-0.23318763682618737,-0.2967568184249103,0.19281106255948544,-0.3882218562066555,0.621355168055743,0.5230034231208265,-0.5655860216356814,-0.6442327531985939,0.4663588530384004,0.463333111256361,0.08028628071770072,0.6809890479780734,0.046294608153402805,0.2955669267103076,0.6315584392286837,-0.44830922735854983,-0.2723869662731886,0.4977969489991665,-0.6996165616437793,-0.9759031902067363,-0.6692168456502259,-0.27418184326961637,-0.08258810779079795,0.27040890511125326,0.03888364415615797,0.4207731243222952,0.815221184398979,-0.9698240044526756,0.03360240487381816,-0.017634420655667782,-0.6009143968112767,0.6045086132362485,0.17283173371106386,-0.643642867449671,-0.617460829205811,0.11575501319020987,0.7694234647788107,0.14565472770482302,-0.9110938291996717,-0.05142616014927626,-0.6952454135753214,0.21989608136937022,-0.16274895193055272,-0.8422898384742439,-0.6783865387551486,-0.5823875172063708,-0.46124756382778287,0.26901371870189905,0.1498001622967422,0.9402790321037173,0.47123535396531224,-0.6944221802987158,-0.4671757942996919,0.7143818880431354,-0.6967893531545997,-0.5680754180066288,-0.5270349853672087,-0.4241602052934468,-0.8340664166025817,-0.25592412566766143,0.7641523741185665,0.6252969242632389,0.5113175446167588,0.793250931892544,-0.46452267467975616,-0.7988373599946499,-0.31401720410212874,0.9641347895376384,0.8025761009193957,0.45222456380724907,-0.6337162139825523,-0.39209282863885164,0.8166211280040443,0.23029258474707603,0.08827509451657534,0.5979126244783401,0.8585252659395337,0.2592140925116837,0.31163586862385273,-0.15648480784147978,0.5879873316735029,-0.8137422911822796,0.292270518373698,-0.09894575690850616,-0.014309520367532969,0.7534495368599892,-0.8043039883486927,-0.7026054807938635,0.2690700339153409,0.668035953771323,-0.2606227146461606,0.8643586370162666,0.32098674634471536,0.6156401839107275,0.4780513774603605,-0.8922984465025365,-0.1760474517941475,-0.9094864293001592,-0.19348919484764338,0.07852967781946063,0.7897587907500565,0.5286771510727704,-0.7201612540520728,0.24498295783996582,0.43743669940158725,0.9910531616769731,0.8380657359957695,0.7605326310731471,-0.1105614947155118,0.38209172431379557,-0.648173117544502,-0.19014050113037229,-0.7606086917221546,0.423146600369364,-0.8563799448311329,0.8055329695343971,-0.3634902387857437,-0.7208294845186174,0.824751659296453,-0.9229234578087926,-0.00931819574907422,0.0004258975386619568,0.7090617618523538,0.40009337291121483,0.10163940489292145,-0.6724698916077614,-0.6052321325987577,-0.4978939825668931,-0.13658926263451576,-0.45402828324586153,-0.3463167450390756,0.017857539001852274,-0.01813684729859233,-0.9258723948150873,-0.43705108063295484,-0.28675549756735563,0.6176517521962523,0.04822108754888177,-0.7895880080759525,-0.29444070206955075,0.2539559951983392,-0.7925917343236506,-0.34312655683606863,-0.605047064833343,0.030038607772439718,0.838235198520124,0.5048550078645349,-0.1545707588084042,-0.25985847180709243,-0.5875707776285708,-0.7887632111087441,-0.45615164190530777,0.6289159622974694,-0.2903258968144655,0.3023427580483258,-0.7650397187098861,-0.3147886744700372,0.923455617390573,0.2491961526684463,-0.08329494995996356,-0.39134832192212343,0.01988657144829631,0.35970270773395896,0.8996725394390523,0.757280807942152,-0.3290656586177647,-0.15949663892388344,-0.7022993401624262,0.34958941396325827,-0.3668549945577979,-0.6170661835931242,0.25895990058779716,-0.6091656908392906,0.3361375769600272,0.511062822304666,-0.5875875451602042,0.27574761444702744,0.2121529569849372,0.6470890389755368,-0.538124970626086,0.5515841236338019,-0.4802358178421855,0.360823187045753,0.5234395489096642,0.7096730330958962,-0.19704044330865145,0.9808913343586028,0.6041783345863223,-0.06876063300296664,0.6650828891433775,-0.8752402574755251,-0.08700888976454735,0.18035613326355815,-0.5248485668562353,0.5475141815841198,0.5828551487065852,-0.8120366078801453,0.6363371531479061,-0.8330322783440351,-0.6423895647749305,-0.6081024040468037,-0.5594972390681505,0.5992200309410691,0.6948240301571786,0.02448434429243207,0.6759184030815959,-0.7811376210302114,0.5597152118571103,-0.7640590048395097,0.9781959047541022,-0.5331527944654226,-0.4085383825004101,0.11487308656796813,0.46993994899094105,-0.00830380106344819,-0.8941984162665904,-0.42845266638323665,0.12876547640189528,-0.7669835239648819,-0.4638579241000116,0.1694183605723083,0.15505839930847287,-0.9943994116038084,-0.02950975112617016,0.7583509432151914,-0.7807240728288889,-0.4748921268619597,0.7108471933752298,-0.1009602677077055,-0.847006066236645,0.8155480157583952,0.9617205145768821,0.9639371819794178,-0.5181933371350169,-0.6591908340342343,0.005390284117311239,0.283091614022851,0.2795274234376848,0.3028393089771271,0.0623220750130713,-0.835771169513464,-0.39364105742424726,-0.9448919231072068,0.952812906820327,0.8281508558429778,0.19961768202483654,-0.9760130345821381,-0.7518793870694935,-0.737445124424994,0.9495375868864357,-0.7354211686179042,0.36838163156062365,0.03272253042086959,-0.3798602372407913,0.6684611365199089,-0.2921517239883542,-0.8369390671141446,-0.3114730282686651,-0.14875373756513,0.9095928086899221,0.6843213010579348,0.020993475802242756,0.5282343816943467,0.8703697375021875,0.18793882708996534,0.030206887051463127,0.37289689388126135,0.5317233307287097,0.45902091497555375,-0.4252781835384667,0.9656106890179217,0.8103278842754662,0.9796095550991595,0.4792575011961162,-0.6680029681883752,0.2990641510114074,0.1802883641794324,-0.21361970808357,-0.2661074069328606,0.47896556416526437,-0.8633205015212297,0.40127949696034193,0.10141111584380269,0.23141293367370963,-0.1592741720378399,0.9798983563669026,0.9844427057541907,-0.9941539093852043,0.04224167903885245,-0.6784830060787499,-0.72465945687145,-0.4694821643643081,-0.6190694640390575,-0.4599507739767432,0.8341309824027121,0.19663981394842267,0.3176632346585393,0.18682111194357276,-0.16774409543722868,-0.9155457401648164,-0.1150316339917481,-0.240009022410959,-0.11235194420441985,0.06612209416925907,-0.6977004408836365,0.36676345905289054,0.13094691326841712,0.883702680002898,-0.46712927194312215,0.06351262144744396,-0.989298262167722,-0.8788266419433057,-0.627909695263952,-0.8163099405355752,0.8651395500637591,0.45050424989312887,-0.4557614242658019,-0.8020395352505147,-0.08353266306221485,-0.4354232409968972,0.4668020913377404,-0.7498740190640092,0.4207144076935947,-0.9386721369810402,0.5452572400681674,-0.38331687171012163,-0.31901464704424143,-0.9167244108393788,-0.2269881688989699,0.6775981709361076,-0.27416580030694604,0.8828029409050941,0.3930995725095272,0.7734312922693789,-0.9452137062326074,0.2336736973375082,0.6225646585226059,0.5403811242431402,0.9724848517216742,0.418502030428499,-0.4738781922496855,-0.05294974846765399,0.13905302342027426,0.7644244646653533,0.12414717674255371,-0.6648917538113892,0.8465178138576448,-0.6071761325001717,0.6217403067275882,-0.6988941789604723,0.682375016156584,-0.3600611058063805,-0.3786102435551584,-0.6805938882753253,0.23795712366700172,-0.2345306407660246,-0.38395728822797537,-0.7052259813062847,-0.37088661966845393,0.8631479674950242,-0.25572266383096576,-0.8367010476067662,-0.1646607080474496,0.22831462556496263,-0.39180081989616156,-0.47776989359408617,-0.9323710831813514,-0.7974300556816161,-0.18184162117540836,0.30874968552961946,0.945835093036294,-0.2343535404652357,-0.8084780564531684,0.38890458829700947,-0.9144095941446722,-0.45261620823293924,0.7464106525294483,-0.5199635061435401,-0.7014073343016207,0.7071046829223633,-0.9039894747547805,-0.1924107144586742,0.9694452122785151,0.1986404089257121,-0.10413547605276108,-0.17901173420250416,-0.7986325561068952,0.6140183228999376,-0.7976303822360933,0.9684034213423729,0.5539076454006135,0.16750392457470298,-0.6264029568992555,0.07433551223948598,0.5225328947417438,-0.2244746945798397,0.6671420987695456,0.8446699078194797,-0.9197411313652992,0.9177276133559644,-0.8633785769343376,-0.4254652042873204,0.4230851214379072,0.11363192368298769,-0.701579358894378,-0.30552967358380556,0.43707784079015255,-0.8104997607879341,0.20206342497840524,-0.604253648314625,0.8649899400770664,-0.06194173591211438,-0.07850792957469821,-0.9760372252203524,0.6391435284167528,-0.9033443108201027,0.8649938167072833,-0.5409473115578294,0.9616566840559244,0.9321568757295609,0.01069460529834032,-0.45416918164119124,-0.09125058073550463,-0.250378355383873,0.12486032769083977,-0.3446292160078883,-0.9708706419914961,0.6609836937859654,0.6937696253880858,-0.7075460799969733,0.7540703462436795,-0.9646950894966722,0.8923356463201344,0.4047831161879003,0.5095072570256889,0.3975383881479502,-0.5442557050846517,-0.08915683487430215,-0.0980113334953785,-0.6959903426468372,-0.26995366904884577,0.21209035255014896,0.9520828826352954,0.6333544389344752,0.49226421769708395,0.10912754572927952,0.4643790568225086,0.4153117495588958,0.1580227087251842,-0.7680824580602348,0.6532416478730738,0.024278332944959402,-0.9263850268907845,-0.42807453591376543,0.9847948988899589,-0.060061126947402954,-0.2579543041065335,0.5697851125150919,0.4875421649776399,0.8313546469435096,-0.7928818198852241,0.34006551187485456,-0.09698573919013143,-0.11898507876321673,0.21861474821344018,-0.4786085607483983,-0.1550254817120731,-0.9836104391142726,0.023624461609870195,-0.5117577188648283,-0.7118874592706561,-0.1274813157506287,-0.08721411554142833,0.3631734806112945,-0.7742061261087656,-0.9406608617864549,0.0012692552991211414,-0.9426344600506127,-0.8408863684162498,0.1943658902309835,-0.10880249785259366,0.7037956928834319,0.019111691508442163,-0.6305861561559141,-0.9935132977552712,0.1333493790589273,-0.9290432040579617,-0.3894843184389174,-0.5597329279407859,-0.6717769596725702,-0.3499315734952688,-0.3732554167509079,0.189871983602643,-0.30246678134426475,-0.8760910141281784,-0.989216139074415,0.9891858897171915,-0.1492520747706294,0.43144048983231187,0.806596658192575,-0.8205780079588294,0.28509384486824274,0.392883962020278,0.9156216573901474,0.7283336292020977,-0.9015281712636352,0.6292249355465174,0.5034703724086285,0.16061978042125702,-0.14526224182918668,0.18944692006334662,-0.0036664381623268127,0.5900937533006072,0.2032194845378399,-0.8262361795641482,-0.8341445373371243,-0.7125132842920721,0.44767348701134324,0.9815440936945379,-0.6341281291097403,-0.9821701529435813,0.6706041442230344,0.7967069847509265,0.49385930225253105,-0.7278292807750404,0.42988879047334194,-0.5068310433998704,0.4334242264740169,-0.9128832244314253,0.30185028864070773,0.1409191400744021,-0.12707453966140747,0.6414946857839823,0.9317271634936333,0.48818708723410964,-0.8262743558734655,-0.7350317002274096,-0.7673992211930454,-0.4199185841716826,-0.3291197046637535,0.09248600341379642,0.5260987305082381,0.8063066913746297,0.858121735509485,-0.6177782895974815,0.36280948435887694,-0.44157411204651,-0.9727613972499967,-0.5696456958539784,-0.8255565389990807,-0.8549466030672193,-0.1776079754345119,0.22077426686882973,-0.713607114739716,0.26213195780292153,-0.747787453699857,-0.6133035630919039,-0.10595639981329441,0.8763862778432667,-0.09691706439480186,-0.31057057110592723,0.35249187611043453,-0.9848313219845295,-0.4179446343332529,0.0642248266376555,0.5914690443314612,0.04531036177650094,0.37126100016757846,0.27470224909484386,0.9342009122483432,-0.06600028648972511,0.8907063351944089,-0.9407764258794487,0.29053457686677575,0.5425558383576572,-0.6804763497784734,-0.5646870364435017,-0.17044271435588598,0.7413795725442469,-0.5868999441154301,-0.39467852422967553,0.9904360668733716,0.6104969624429941,-0.3990628239698708,-0.8465735209174454,-0.5655144522897899,0.3415064262226224,-0.1349541274830699,-0.4172232309356332,-0.2555029154755175,-0.16132707986980677,-0.6909141251817346,-0.24950421834364533,-0.38249868992716074,-0.5306283752433956,0.5736927064135671,-0.9615354333072901,-0.6810034140944481,-0.0003452314995229244,-0.6515068709850311,-0.4893242656253278,-0.011623220052570105,0.9953803322277963,0.8769326829351485,0.9902876885607839,0.7597859022207558,0.7711040652357042,-0.07164395088329911,0.10034648282453418,0.16916459007188678,0.7922401987016201,0.807888041716069,-0.583461896982044,0.5283706551417708,-0.36872299015522003,0.2856919188052416,-0.4594920561648905,-0.15860182791948318,-0.28955368930473924,0.07442488009110093,0.3405653149820864,-0.5536917797289789,0.6554760835133493,0.08981327898800373,0.9916937523521483,-0.1369563266634941,-0.5786132998764515,0.7261205282993615,0.8562692683190107,0.953609615098685,-0.8167896992526948,-0.44926403649151325,-0.6926116477698088,0.3761501023545861,-0.5399470631964505,0.3608989701606333,-0.7211829042062163,-0.9041468170471489,-0.36769540701061487,0.6051553175784647,0.42148908926174045,0.7019957331940532,-0.6865768991410732,0.6041984739713371,-0.4436533763073385,0.5927037196233869,0.41582079557701945,0.7153720534406602,-0.928874246776104,-0.2589262113906443,-0.28277205396443605,-0.7947017545811832,-0.028517283033579588,-0.6544365896843374,-0.5562883522361517,0.9288510074838996,0.25857833260670304,-0.5819313246756792,-0.002887825481593609,-0.11334869218990207,-0.6544106192886829,-0.2232612706720829,-0.29380398197099566,0.6145884720608592,-0.26825322257354856,-0.39340378623455763,-0.6333336536772549,0.9300517020747066,0.80160514684394,-0.6282874820753932,0.0014980938285589218,-0.06834504520520568,0.8389074425213039,0.09801754634827375,-0.4415514040738344,-0.09697139263153076,-0.9634103770367801,0.4102416089735925,-0.4915975136682391,0.6693088989704847,-0.0424919743090868,-0.47739932825788856,-0.791656484361738,-0.19732897728681564,-0.31352983647957444,-0.6293954676948488,0.20080556999891996,0.6633665063418448,0.5616784826852381,0.011095701716840267,-0.5182340834289789,0.9771603234112263,0.9793270328082144,-0.05320808198302984,0.44675766536965966,-0.9649745062924922,0.22522000689059496,-0.4671564078889787,0.1433335253968835,0.6528487047180533,-0.817559062037617,-0.7564403335563838,0.7756825881078839,-0.2783540221862495,-0.16125814383849502,0.057511265855282545,-0.9242755966261029,0.15558301005512476,-0.8945659091696143,0.06825902499258518,0.05858640279620886,0.7066295412369072,-0.09513440635055304,0.9542079921811819,-0.09044447727501392,0.8051296030171216,-0.7822584412060678,0.8401516871526837,0.9589739250950515,0.9343741368502378,-0.2345523089170456,-0.21641329303383827,-0.8952325591817498,-0.01666719652712345,0.023987445514649153,-0.3860305901616812,-0.5436874404549599,0.7393188290297985,0.46728891180828214,0.3158804988488555,-0.5839155521243811,0.7719316026195884,0.5349570028483868,0.8178273290395737,-0.2726871841587126,0.38709301222115755,0.2628070740029216,0.9448827453888953,-0.9383253981359303,0.36868021823465824,0.0039826915599405766,0.1329466295428574,-0.27720763999968767,-0.7717941720038652,-0.9541937792673707,-0.3491808925755322,0.4658766305074096,-0.12729064282029867,0.8649176899343729,0.009003764018416405,0.5357430065050721,0.4904808406718075,-0.2225868827663362,0.26122546195983887,0.37023839354515076,0.40683958726003766,0.10365411313250661,-0.9944728380069137,-0.4948603929951787,0.2523794583976269,0.8301864969544113,-0.8803516016341746,0.617132131010294,-0.7425016816705465,-0.16773781785741448,-0.038299781270325184,-0.29235248221084476,0.6085143373347819,0.7166385832242668,-0.2224866859614849,-0.8878511604852974,0.22628366108983755,-0.035011160653084517,0.7061637756414711,-0.5313874194398522,-0.6455891351215541,-0.2368470705114305,0.5602862676605582,-0.13490612525492907,-0.5968703296966851,-0.6242450955323875,-0.2288380335085094,-0.32329065864905715,0.8400176530703902,0.18436014605686069,0.3317165831103921,-0.6835790881887078,0.40564964804798365,0.16747484682127833,-0.49440617952495813,-0.8888442730531096,0.541952661704272,-0.8971571028232574,0.35398163367062807,-0.3407400664873421,-0.3214295729994774,-0.4333908217959106,0.5229846574366093,-0.5880049392580986,0.11998500814661384,0.0253846594132483,-0.7480696067214012,0.20543164806440473,-0.16095860162749887,-0.7844286113977432,0.10772739350795746,0.25627035601064563,-0.5583798247389495,-0.685123133007437,0.8649328737519681,-0.530824807472527,0.6268728212453425,-0.20974817173555493,0.6870609507896006,-0.4051926680840552,0.19190076412633061,-0.7985950042493641,-0.7105115023441613,-0.9225203860551119,-0.8903449112549424,0.40022256411612034,0.34959942288696766,-0.05040137702599168,-0.6358361262828112,-0.07165695866569877,0.8313440638594329,0.7375278580002487,0.3817774271592498,0.24620703188702464,-0.5354540515691042,0.4513196204788983,0.34299094043672085,-0.7599389972165227,0.9577828026376665,-0.48924983851611614,-0.7290938007645309,0.05388186685740948,-0.25258651096373796,0.3332367795519531,0.8799989293329418,-0.7521534683182836,0.7147684986703098,-0.5733365011401474,-0.9944102913141251,-0.549968967679888,0.05583233293145895,0.9844920597970486,0.24115719785913825,-0.8546827142126858,-0.9920175559818745,-0.04248101217672229,0.9743407717905939,-0.13614638056606054,0.8390254522673786,-0.5290851993486285,0.8114215405657887,-0.7337733637541533,0.38579882867634296,-0.37290608091279864,0.02979420404881239,-0.7758112535811961,0.6944479495286942,0.5350821283645928,-0.2235524719581008,0.05590182449668646,-0.6462336834520102,-0.9536402020603418,0.19041017582640052,-0.00628467183560133,-0.2404363714158535,0.45697187492623925,-0.17992011737078428,0.6283292807638645,-0.7047706884332001,0.1555556310340762,0.6624799184501171,0.1549366512335837,0.07321983855217695,0.8275323389098048,-0.42767965979874134,0.9912365078926086,0.43409958155825734,-0.19676136272028089,-0.05839882604777813,0.381616183090955,-0.023826925083994865,0.7432306669652462,-0.5928934239782393,0.48380507668480277,-0.1409931811504066,-0.8622015160508454,0.24933193949982524,0.8616681285202503,0.9168609357438982,-0.46641638642176986,0.5964439064264297,-0.38547264924272895,0.2230615927837789,-0.19457845343276858,-0.29571514669805765,0.6585980774834752,0.3226517355069518,-0.09633883880451322,0.5124829993583262,0.4441249663941562,-0.19308981765061617,0.912440650165081,-0.2927407454699278,0.7737551121972501,0.915665237698704,0.628540001809597,0.6618472649715841,-0.08022335590794683,0.38202327210456133,0.8468122971244156,0.1108486563898623,-0.49716862803325057,0.9931145813316107,-0.856780466157943,-0.7657691910862923,0.6945529752410948,-0.23177616531029344,-0.9292570538818836,-0.106373087503016,-0.029092722106724977,-0.06019519688561559,-0.3729538726620376,0.4997512064874172,0.7755871480330825,-0.8676044070161879,-0.2079196604900062,-0.6950423973612487,-0.2957123168744147,0.08188283024355769,0.9497080259025097,0.6007181769236922,-0.611153676174581,-0.5136721152812243,-0.5424751569516957,0.1678848466835916,-0.4641651213169098,-0.1450060000643134,0.43749838089570403,-0.2598682842217386,-0.7448344891890883,0.7459161472506821,-0.900654090102762,0.3768662456423044,0.7902149274013937,0.6306586991995573,-0.6449131569825113,0.36916629085317254,-0.5534708704799414,-0.32073688320815563,-0.2779638203792274,0.15546358935534954,0.0027588666416704655,-0.8360043875873089,-0.4016236448660493,0.5046257032081485,-0.21901798900216818,0.5129238632507622,-0.33210666524246335,0.4736115140840411,-0.6056049657054245,0.7016843198798597,-0.21237174328416586,-0.2215648558922112,0.14056140091270208,0.14602099731564522,0.5883551915176213,-0.6924073500558734,-0.22601661225780845,0.8583349655382335,-0.9302067100070417,-0.4911868846975267,0.6451489981263876,0.09365074150264263,-0.8839592882432044,0.5411903550848365,-0.6217548456043005,-0.4698299984447658,-0.028596030082553625,-0.965680317953229,0.2825465854257345,0.7181369168683887,0.7072237213142216,0.7012949702329934,-0.49649599147960544,0.5298870359547436,0.00463469885289669,-0.12001195317134261,0.44796837912872434,-0.7757040672004223,0.15058506885543466,-0.7403250695206225,-0.4514644877053797,-0.5424158200621605,0.920426950789988,0.22356850001960993,-0.9528498989529908,0.38565958477556705,-0.27248551324009895,-0.20312554016709328,0.994855566881597,0.6525556724518538,0.5102595277130604,0.25222910661250353,-0.4048116565681994,0.8551756627857685,-0.47717838967218995,0.411510790232569,0.8631027298979461,0.8313258672133088,0.973650355823338,-0.904636824503541,-0.8303221054375172,-0.9141014642082155,0.31773798540234566,0.8056598431430757,0.8105762060731649,-0.777749695815146,0.531476765871048,0.38966424809768796,-0.5027652671560645,0.36921559693291783,-0.9326022602617741,0.21314521273598075,-0.5296669658273458,0.3488029600121081,-0.08859191183000803,0.5196716953068972,-0.35800891648977995,0.8934853072278202,-0.8892716551199555,-0.5940310396254063,0.22598551027476788,-0.5137892575003207,0.004574111197143793,-0.7144014644436538,0.3830907577648759,0.799015540163964,0.783478113822639,-0.9118395121768117,-0.17361892014741898,-0.7647726270370185,-0.0693530892021954,-0.853788620326668,-0.013491514604538679,0.995312515180558,0.7984381900168955,-0.11046988237649202,0.622750342823565,-0.4857827522791922,0.6376551575958729,0.4695958197116852,0.9837230569683015,-0.07890294771641493,-0.5939381751231849,-0.6681453832425177,0.30621097423136234,-0.5729326419532299,-0.12690952559933066,0.009461961686611176,0.9903903417289257,-0.5068788835778832,0.7494553267024457,-0.2966934433206916,0.8017605929635465,0.9792257389053702,-0.7001047036610544,-0.13744287146255374,0.4285911414772272,-0.9014616957865655,0.5865434785373509,0.12147138360887766,-0.38190575828775764,0.12327239848673344,-0.23763304436579347,0.20075328228995204,0.7544691096991301,0.8963611358776689,-0.19760255934670568,0.7253199173137546,0.16920295031741261,-0.9633480426855385,0.5433189603500068,0.27812279388308525,0.8961768411099911,-0.8472155090421438,0.020501751452684402,0.2569945529103279,-0.4528559586033225,-0.6133567290380597,0.00805309135466814,0.728414251934737,-0.8679739637300372,-0.31438298523426056,-0.11956020956858993,0.23601366020739079,0.5812957314774394,-0.9712748820893466,0.42544691264629364,-0.2252149386331439,-0.9219387755729258,0.5913875866681337,0.1732989065349102,0.604064772836864,0.4074684870429337,-0.26882724557071924,0.9411087143234909,-0.4777518389746547,-0.00048577040433883667,-0.6070875716395676,0.609848486725241,0.34886830067262053,0.35319453990086913,0.46217327984049916,-0.12116948887705803,-0.5268228850327432,0.3027548575773835,0.22639437718316913,-0.41574339661747217,-0.5865155491046607,0.1319573586806655,-0.2269215965643525,0.10913197230547667,0.12250459473580122,0.2202790849842131,-0.821221733931452,-0.9007976180873811,0.5070873773656785,0.6242249524220824,0.3335885633714497,-0.8651213003322482,-0.01421863166615367,-0.5912652625702322,0.8632733062840998,0.4634753563441336,-0.3868216974660754,0.514084842056036,0.1790870693512261,0.37103669345378876,-0.15507885394617915,-0.014110713265836239,0.6168292509391904,-0.7209947155788541,-0.8729957188479602,-0.5940982531756163,0.013924553524702787,0.789766435045749,-0.8168207067064941,-0.347605686634779,-0.02248180517926812,0.7499303570948541,-0.7670107348822057,-0.762749848421663,-0.7662967136129737,0.8824039855971932,0.07886173855513334,0.4306605327874422,0.8371975128538907,0.8691512318328023,0.37344519095495343,0.09483885625377297,-0.3287977227009833,-0.2718651881441474,0.5125194629654288,0.8881627516821027,-0.1396363447420299,-0.7129858052358031,-0.2273071315139532,0.6673398329876363,-0.5294977906160057,0.3084056922234595,-0.6155983987264335,-0.3931796350516379,-0.2770918537862599,0.8068162179552019,0.6533372402191162,-0.21735055884346366,0.756572671700269,-0.4252314483746886,-0.6507462398149073,0.6327978228218853,0.0014955056831240654,-0.6602459824644029,-0.6308070314116776,0.46303107030689716,0.03990885289385915,0.7665234180167317,-0.7841647411696613,-0.8765138015151024,-0.28928549820557237,-0.2858659699559212,0.7192483264952898,0.24905818328261375,-0.9934240356087685,0.7611758699640632,-0.036441081669181585,-0.9666134812869132,-0.7824589824303985,-0.1710595008917153,0.4692565123550594,-0.49308753572404385,-0.8428744869306684,0.6708870315924287,-0.2941166223026812,-0.5238831453025341,-0.178106093313545,-0.14458820782601833,-0.04062088346108794,-0.8604971268214285,-0.8574948599562049,-0.8072818224318326,-0.83138382807374,-0.9562682202085853,-0.7001589387655258,-0.23782567866146564,-0.07636408554390073,-0.6183768953196704,-0.27201453503221273,-0.9280998553149402,0.015280805062502623,-0.8300694930367172,-0.4551533586345613,-0.21272793225944042,0.35731270769611,0.3982348474673927,0.9716933309100568,-0.9324564398266375,0.6293784286826849,0.8094309535808861,-0.19152156542986631,-0.5069880927912891,-0.38003592286258936,0.7868669042363763,0.704069884493947,-0.8548006154596806,0.5415268330834806,-0.3401143974624574,-0.4071196732111275,0.3173472974449396,0.8789684167131782,-0.4161435794085264,-0.2487203530035913,0.8831064347177744,-0.3668178077787161,-0.036968308966606855,0.8502261410467327,0.25564603321254253,0.5258191325701773,-0.647510330658406,0.136042732745409,0.6185536752454937,-0.07924487954005599,-0.056465151719748974,0.21246397448703647,-0.09268530877307057,-0.03524115635082126,0.6593954688869417,0.49143245769664645,0.9292399389669299,0.13639112329110503,-0.39925919799134135,-0.7595812007784843,0.9592828052118421,0.8526199418120086,0.15722489263862371,0.1953676505945623,-0.37811841117218137,-0.520191187504679,0.7200997322797775,0.9400042020715773,-0.887083787471056,0.1865386739373207,0.7819792181253433,0.030175471678376198,-0.11688834521919489,-0.059495605528354645,0.4152004770003259,-0.07869456615298986,0.0616620909422636,0.598219586070627,-0.6959053156897426,0.7413318171165884,0.21491980832070112,0.9985942682251334,-0.5656876852735877,-0.44905874598771334,-0.41966569097712636,-0.450314961373806,-0.6556450268253684,0.04717720253393054,-0.8198690605349839,0.948932524304837,-0.7053873562254012,0.2007911205291748,0.4665284059010446,-0.11781060742214322,-0.5167135070078075,-0.5637329197488725,-0.007692330051213503,-0.5348747670650482,0.8674232438206673,-0.9169428506866097,-0.38915611431002617,-0.5109727457165718,-0.9638201585039496,-0.020087934099137783,0.09052815288305283,0.858141120057553,0.5547265540808439,-0.6170821534469724,-0.7344551351852715,0.3008259702473879,-0.8296075062826276,-0.4624067791737616,0.8618252677842975,0.9856918379664421,-0.8975106212310493,-0.6080947564914823,0.5455246856436133,0.3669562702998519,0.943117449991405,-0.8901240820996463,0.3926978609524667,-0.9183492250740528,0.634420067537576,0.1946537452749908,0.9372735619544983,0.7857195041142404,0.8832941427826881,-0.4641961040906608,0.6153365247882903,-0.5909032910130918,-0.5741968518123031,0.9012708305381238,-0.5854487577453256,-0.7237341487780213,0.9848864679224789,-0.1706536766141653,-0.4514203229919076,0.020993081387132406,0.31839780136942863,0.12105788104236126,0.7907615038566291,0.6405522944405675,-0.36662958236411214,0.7642653565853834,-0.40503892209380865,-0.6656473716720939,-0.22425239672884345,0.7645771275274456,-0.8854466485790908,-0.12754555605351925,0.18499743891879916,0.35246455390006304,-0.4030692079104483,0.7753791348077357,0.4431056655012071,-0.5954655618406832,0.13932705903425813,0.10173185123130679,0.0932735363021493,0.32125167828053236,-0.1092823464423418,0.0641353134997189,-0.030613535083830357,-0.2840914367698133,0.2596499640494585,-0.8320933007635176,-0.4329117638990283,-0.16608640551567078,0.7743204650469124,-0.7774874591268599,-0.5837197210639715,-0.9639762490987778,-0.9080997868441045,-0.17872299253940582,-0.34668303839862347,0.5153592214919627,-0.1719169318675995,-0.6558326897211373,-0.4876227220520377,-0.969126031268388,0.5939062056131661,0.5846032802946866,0.04079883499071002,-0.3988741897046566,-0.2768852273002267,0.6024940018542111,0.27873219968751073,-0.6433242312632501,-0.8799044764600694,-0.38080542301759124,0.4167018700391054,-0.6079423315823078,0.30234943982213736,-0.6600364074110985,0.40817554108798504,-0.21024802792817354,0.5770316077396274,-0.00907360203564167,0.3548283255659044,0.970286360476166,0.4977108556777239,0.33037572680041194,0.41410901164636016,0.09583894442766905,-0.5605392390862107,0.284938033670187,-0.7929260139353573,0.1469160350970924,0.7168937237001956,0.39931752625852823,-0.3169413637369871,-0.49219658970832825,-0.9998463885858655,-0.05069614574313164,0.7870433768257499,0.5217702258378267,-0.29253965243697166,-0.5495086628943682,0.07743050577118993,-0.8934999583289027,-0.18506269343197346,-0.21404855232685804,-0.7017338681034744,0.5668769124895334,0.5737902843393385,-0.07165802037343383,-0.03676619380712509,-0.9107287228107452,0.2793874298222363,0.3034491743892431,0.7589491587132215,-0.8626136784441769,-0.7471677423454821,-0.09245630959048867,-0.7685361257754266,-0.892801505047828,0.25997484708204865,0.9257539412938058,-0.6664052484557033,0.4384682523086667,-0.9939813446253538,0.5140220248140395,0.0848157131113112,0.26725551951676607,-0.034170638769865036,0.651614707428962,0.6276953876949847,-0.03129256935790181,0.23209257191047072,-0.7747045289725065,-0.8988310168497264,0.34148224955424666,0.49085055524483323,-0.7212645993568003,-0.6799061419442296,-0.8604003479704261,0.5800543646328151,-0.9707430517300963,0.8671547290869057,-0.08498348668217659,-0.513180373236537,0.9388947384431958,0.9271782524883747,-0.8101437063887715,-0.728725797496736,0.650254160631448,-0.23629689030349255,-0.8979602777399123,-0.8356044567190111,0.38850613683462143,-0.8013762491755188,-0.8179435627534986,-0.5204209038056433,-0.16221827641129494,-0.6186402211897075,0.9606681759469211,-0.10016234871000051,0.8047352861613035,-0.3844636487774551,0.6495468970388174,-0.10508267022669315,-0.7694545681588352,-0.19692645408213139,0.5619334816001356,-0.5455046934075654,0.004000118002295494,-0.3327361620031297,0.20244608214125037,-0.2022765837609768,0.6344144702889025,0.5373719115741551,-0.3732286081649363,-0.3372406978160143,-0.5032155653461814,-0.127573165576905,0.14689306635409594,-0.09228053595870733,0.2876064074225724,-0.9603812796995044,-0.8935293396934867,0.7314529241994023,0.23578869504854083,-0.3777130446396768,0.2119406210258603,0.6698527098633349,-0.7032338185235858,0.6256729937158525,0.7935325796715915,-0.6995265940204263,0.2736000847071409,-0.6023779101669788,-0.8625266798771918,0.8285073330625892,0.05192842613905668,-0.6792974323034286,0.9853045460768044,0.4044204452075064,-0.06620004773139954,0.9039694266393781,0.08900224743410945,0.7580709443427622,-0.41019132919609547,-0.1468990002758801,-0.6779313259758055,-0.5902883019298315,0.43975044041872025,0.24039259599521756,0.31830637296661735,0.0432438924908638,-0.3733502267859876,-0.1725899656303227,0.2866155500523746,0.11969478940591216,0.8663354539312422,-0.4231752990745008,0.3898177105002105,-0.04036719165742397,0.03912684926763177,0.43810818530619144,-0.12919861357659101,0.14378548879176378,0.05107284290716052,0.4982920940965414,-0.2705188374966383,0.18225804017856717,-0.7367830206640065,0.36142782773822546,0.3433264447376132,-0.15570734720677137,0.6796802752651274,-0.9330534376204014,-0.42960104905068874,0.3459929316304624,0.7916419566608965,-0.2826364440843463,-0.8949566371738911,0.9783527827821672,-0.7698718244209886,0.9896980519406497,0.21274026855826378,0.019669316709041595,-0.7255684854462743,-0.054639974143356085,0.6017178623005748,0.7180472798645496,0.7579319765791297,-0.5735587417148054,-0.8912230944260955,-0.7878743610344827,-0.27347653778269887,-0.14350850880146027,0.441236331127584,-0.10999018559232354,-0.926402676384896,-0.7291575679555535,-0.8967051338404417,0.4951730091124773,-0.249214603099972,0.6850768011063337,0.9541501360945404,0.587035100441426,0.21383597701787949,0.7596764550544322,-0.6788505711592734,-0.36184744583442807,-0.3052230151370168,0.04550265148282051,-0.4405894326046109,-0.10110874054953456,-0.508284124545753,0.4373926413245499,-0.5321047380566597,0.5323125133290887,0.6374633060768247,0.033165470231324434,0.2704456942155957,-0.5233181198127568,0.14350546151399612,0.7820595842786133,0.18782192142680287,0.15216754376888275,-0.7324675326235592,0.5756809585727751,-0.2806417243555188,-0.1920346594415605,-0.9785773972980678,0.8756224662065506,-0.35031932406127453,0.9618639554828405,-0.11205636942759156,0.46755552059039474,-0.5520131564699113,-0.7549836910329759,-0.07025536568835378,-0.229044022038579,0.9520671586506069,-0.9270798685029149,0.7188076912425458,0.6101972856558859,-0.65316839562729,0.1742018205113709,-0.3594542262144387,0.0343189463019371,0.5552794211544096,0.17485895240679383,-0.3166400985792279,-0.03834798140451312,-0.8935932754538953,-0.37652775552123785,0.25366485211998224,-0.9207598948851228,-0.74204569356516,0.3824770087376237,-0.7061543599702418,-0.5068296692334116,0.8207861403934658,0.1881872620433569,0.8629377400502563,-0.3358932416886091,-0.9308365467004478,0.5588380433619022,0.14159126905724406,-0.21880940441042185,0.587457706220448,0.6985308178700507,0.39139070734381676,0.37198435608297586,-0.7363079194910824,-0.3563112779520452,-0.7520522261038423,-0.8952933973632753,-0.8161001778207719,-0.031239147298038006,-0.7451831479556859,-0.7767628501169384,-0.8300020112656057,0.6699978359974921,0.764984430745244,0.023091099224984646,-0.6458389502950013,0.5602486813440919,0.8789741611108184,0.7816661857068539,0.17423231853172183,0.587439825758338,0.2797661549411714,0.7931848294101655,0.41424060286954045,-0.0043372646905481815,0.7591174077242613,0.8151218467392027,0.1011298936791718,-0.21943245362490416,0.37678420916199684,-0.41122873732820153,0.6638687653467059,0.5073416656814516,0.7396478671580553,0.6269524577073753,-0.9334367639385164,-0.2805013111792505,-0.39082986395806074,-0.8936613998375833,0.3822704628109932,-0.6512811263091862,-0.09653133293613791,-0.36926223477348685,0.26552874920889735,-0.6638359096832573,0.5990707809105515,-0.886181203648448,0.22852265601977706,-0.2976101078093052,-0.3112914343364537,0.4432411249727011,-0.745041735470295,0.3310230034403503,0.520431415643543,0.8579918891191483,-0.4855880648829043,0.17583721270784736,-0.9203679924830794,0.5636484329588711,-0.9014336499385536,0.1908183074556291,0.06601863214746118,-0.14486192725598812,0.22591796331107616,-0.4986498961225152,-0.7711681104265153,-0.9191672601737082,-0.5900058867409825,0.5457262508571148,0.0712587577290833,0.17233670921996236,-0.15080198552459478,-0.260859964415431,-0.10042452532798052,0.41696107434108853,0.5267729056067765,0.042275805957615376,-0.03052433067932725,-0.17103820573538542,-0.0287319659255445,-0.8279239293187857,0.6282352823764086,0.04208907298743725,-0.4331530132330954,-0.054744473192840815,0.9172106673941016,-0.3482244652695954,-0.7393270852044225,0.3339196755550802,0.5076041123829782,0.9653169671073556,-0.10871510580182076,-0.9561845073476434,-0.5383309973403811,0.8466065917164087,-0.08500923495739698,0.9802745799534023,-0.26425293320789933,0.22914122650399804,-0.3794238092377782,0.11213703686371446,0.5023040352389216,0.23029568884521723,-0.5953057198785245,-0.9465632415376604,-0.47363372100517154,-0.6070181815885007,0.19961293321102858,0.16851071128621697,0.1486254152841866,-0.6158989085815847,-0.9827930615283549,0.13553130021318793,-0.6902532395906746,-0.6894892095588148,-0.41029847227036953,0.9155943696387112,0.38346019806340337,-0.8605444789864123,-0.3787368009798229,-0.5067570693790913,0.1773847946897149,-0.4723137612454593,-0.9926778073422611,0.9774855789728463,-0.9819475510157645,0.9125966890715063,-0.0030097193084657192,0.153901485260576,0.035018729511648417,-0.27765455888584256,-0.008786174468696117,-0.09507501451298594,-0.1335453218780458,-0.22469663713127375,-0.9615907375700772,-0.840213536284864,0.1561808232218027,-0.3270131852477789,0.7024759738706052,0.940242210868746,0.13157018180936575,-0.7508382061496377,0.6797855221666396,-0.7526723970659077,-0.45979582518339157,0.7253047586418688,0.1329982141032815,0.46263677859678864,-0.8061569379642606,-0.5996461790055037,0.6829652935266495,-0.5153830796480179,-0.021594692021608353,0.4959255554713309,0.20655602077022195,-0.2243438921868801,-0.23496774770319462,0.5538974739611149,-0.07338504306972027,0.15650700498372316,-0.6992158009670675,-0.18565183086320758,0.6357819559052587,-0.9708391283638775,0.9441660791635513,-0.11122302617877722,0.22976249735802412,0.7323280656710267,0.3432302372530103,0.3351051937788725,0.9235576200298965,-0.4737834930419922,-0.21751901460811496,-0.6294109532609582,-0.861263525672257,0.4207128989510238,0.7762138205580413,0.2536126971244812,-0.29737292928621173,0.6115141026675701,0.6473741135559976,-0.6201797565445304,-0.04553043330088258,-0.24136740807443857,-0.6852348712272942,-0.6934625743888319,-0.9189749867655337,0.8625646801665425,-0.6443640575744212,-0.02498942892998457,0.5199236869812012,-0.23156674299389124,-0.6959459353238344,-0.7182579999789596,0.04382823407649994,0.5393709116615355,0.11348409345373511,-0.4798344373703003,-0.7408437514677644,0.8949782084673643,0.8131711781024933,-0.8061989140696824,-0.6157529610209167,0.14274462405592203,0.20144294621422887,0.3076345333829522,-0.8970180335454643,0.671577409375459,0.4006307846866548,0.7009221245534718,-0.9415967022068799,0.11802678229287267,-0.6074364120140672,-0.018149084877222776,0.9656594675034285,-0.17966774199157953,-0.9896256690844893,-0.07268654555082321,0.12498579220846295,0.6226741787977517,-0.6650967434979975,-0.900173110421747,0.42004965897649527,-0.28984022326767445,-0.5288308393210173,-0.8798401742242277,-0.7741803107783198,-0.06027541682124138,0.5425048805773258,-0.5268211751244962,0.3146537593565881,-0.412573775742203,-0.6003069719299674,0.8090255144052207,-0.00783474836498499,0.7582119614817202,0.01777360076084733,0.47871749429032207,0.7891103546135128,0.10634473571553826,-0.5103419134393334,-0.0209968239068985,0.699910023715347,0.4163960977457464,0.3972676764242351,0.026517127640545368,0.4318399759940803,0.7884250641800463,0.09904397698119283,-0.7103589163161814,0.32490156637504697,0.8663693387061357,-0.34209358459338546,0.9519277303479612,-0.0566356279887259,0.12417688639834523,-0.47633904917165637,0.2827929207123816,-0.39897998748347163,0.5739019331522286,-0.7738016145303845,-0.9536665389314294,0.6284751612693071,-0.9403879698365927,0.9997761654667556,-0.029837204609066248,-0.1538133379071951,0.8233775841072202,0.2870152941904962,0.9568687970750034,0.4289328125305474,-0.46813248191028833,0.5107746473513544,0.5475858775898814,-0.004005120601505041,-0.9501888300292194,0.27064901031553745,0.12625042302533984,0.20731376996263862,0.5404086457565427,-0.27919788751751184,-0.339966855943203,-0.11220775591209531,-0.0364658641628921,0.7556999498046935,-0.07739610644057393,0.4416551352478564,0.31343684531748295,0.7548902332782745,0.3709888653829694,-0.7371660643257201,-0.0023546135053038597,0.9036249690689147,0.4257755088619888,-0.05111572099849582,-0.01979312626644969,0.02203384367749095,-0.8292407784610987,-0.28512036334723234,0.007293876260519028,0.5336100663989782,0.6263344790786505,0.09539912780746818,-0.2685386575758457,0.1313228029757738,0.6536710960790515,0.9166955854743719,0.393872925080359,0.1450923578813672,-0.7300136121921241,-0.5770140527747571,-0.22020137356594205,0.6018262659199536,-0.8329374622553587,0.8355209934525192,-0.10764574818313122,-0.7278871736489236,-0.33342715026810765,-0.7066182135604322,0.3508881046436727,0.7026322684250772,-0.5423389645293355,0.26383284432813525,-0.4887723010033369,0.45228905277326703,-0.9483604761771858,0.5115785053931177,0.8738361988216639,0.5542332506738603,-0.7439858741126955,0.7798375589773059,-0.6466593188233674,0.167849097866565,0.24063635431230068,0.07718043541535735,-0.5833756146021187,0.5267960480414331,-0.5508782071992755,0.568468629848212,0.569772039540112,-0.45657627331092954,0.26743322471156716,-0.4294094443321228,-0.8900464372709394,-0.8190676625818014,0.7027488574385643,-0.8619311200454831,-0.25972859654575586,0.8376833712682128,0.6809900156222284,0.9038904756307602,0.6896644267253578,-0.4848350081592798,-0.7195173986256123,0.5931338933296502,-0.5755361476913095,-0.024727271869778633,0.7427055626176298,0.8281430187635124,0.8430441473610699,-0.17991413827985525,-0.5054196175187826,-0.8474171250127256,0.3322868528775871,0.23099267948418856,-0.35347472317516804,0.05917525105178356,0.8424060866236687,0.7519378662109375,-0.05082332342863083,0.33341654296964407,-0.3202415769919753,-0.4999164897017181,-0.27585902204737067,0.10117120435461402,0.06112769339233637,-0.7632793877273798,0.756400482263416,-0.8231124561280012,-0.6217503156512976,0.9448660714551806,-0.4514214098453522,0.5008785957470536,-0.4514565789140761,-0.288550169672817,0.9429695061407983,-0.7729427870362997,0.5128030376508832,-0.9303910252638161,-0.4847305016592145,0.49240555381402373,0.03947565704584122,-0.7968295193277299,0.49641766445711255,0.9152530441060662,-0.44629296846687794,0.42293951800093055,-0.5536100249737501,-0.7555188708938658,0.9502131356857717,-0.9124697465449572,0.025472824461758137,0.08132248558104038,0.03853300353512168,0.9740650234743953,-0.44956958340480924,0.288454158231616,0.015202348586171865,-0.8890298320911825,-0.5820138957351446,0.20400224952027202,-0.6888488819822669,0.7224802430719137,0.9374633133411407,0.4144832659512758,-0.5377584095112979,-0.11437679361552,-0.04901796532794833,-0.6530275419354439,0.9774534762836993,0.28363754134625196,-0.9105236092582345,-0.5449630059301853,0.7974548852071166,0.39538674242794514,0.970285702496767,0.19970333250239491,0.8677643374539912,0.40836434392258525,-0.14004667988047004,-0.2220608862116933,-0.5173662560991943,0.1877017104998231,0.07996271643787622,0.27297952119261026,-0.0025645801797509193,-0.0560753783211112,-0.017107960302382708,-0.18036091979593039,0.9878035853616893,-0.07088626362383366,-0.5261421841569245,-0.309601912740618,-0.5796532742679119,-0.7745289737358689,0.24534342298284173,-0.9857583208940923,0.2315349974669516,-0.630843220744282,-0.27159753581508994,-0.2921683005988598,0.6527426796965301,-0.6826590620912611,-0.7359643368981779,-0.17779601784422994,0.1515143821015954,0.6833641808480024,-0.20707991532981396,-0.25377498008310795,-0.9521129704080522,-0.49858406838029623,0.5485205170698464,-0.785203349776566,0.146112069953233,-0.5945115177892148,0.5253480249084532,0.18293343856930733,-0.7670795228332281,-0.23424048721790314,0.2243959354236722,0.778781593311578,0.40033738128840923,0.3399951853789389,0.7569351568818092,-0.9391658171080053,0.013167970813810825,-0.48458000319078565,-0.2700809547677636,-0.3952562562189996,-0.8226734953932464,-0.8665373339317739,-0.534293856471777,0.17091276636347175,-0.019732235465198755,0.41235249303281307,0.1656607356853783,0.7283446746878326,-0.5872710086405277,0.22395447734743357,0.1927623520605266,-0.3082493282854557,0.7125516403466463,0.7734579425305128,0.5989011088386178,0.8326410292647779,0.25870049465447664,0.6160515057854354,0.0933932620100677,-0.9393931762315333,-0.3194216503761709,-0.003039268311113119,-0.13937838654965162,0.10507235350087285,-0.9484048350714147,0.14658073103055358,-0.4779584747739136,-0.4407792096026242,0.6061926302500069,-0.9907350153662264,-0.45172281097620726,0.26531282206997275,-0.8238831982016563,-0.2805544687435031,-0.11261757463216782,0.6743089444935322,0.11823499854654074,-0.5150827039033175,0.6723127933219075,0.6980045596137643,-0.8475141176022589,0.917303619440645,0.6634670170024037,0.7822413668036461,-0.24793736170977354,-0.764585807453841,0.8258676826953888,-0.9937344253994524,0.3226979626342654,0.991399890743196,0.4984511057846248,0.24092954257503152,-0.09443997591733932,-0.418399425689131,0.9044470163062215,-0.3860536371357739,0.6475194795057178,-0.2651192583143711,-0.13913353346288204,-0.3346639731898904,-0.45839786995202303,-0.2393570407293737,-0.8666274757124484,0.2192782568745315,0.6420003017410636,0.5683290637098253,-0.566618281416595,-0.15598740987479687,-0.9034171965904534,-0.3288672547787428,0.17413942702114582,-0.08495601592585444,-0.8015216393396258,-0.4486199109815061,0.2527933847159147,-0.8567227879539132,-0.21837652241811156,0.5767183811403811,0.6914070071652532,0.18091061664745212,0.18299381202086806,-0.5265040560625494,0.6831807442940772,0.0774042485281825,-0.08020416321232915,0.6839279364794493,-0.6137066362425685,0.9628871823661029,0.36361373495310545,0.049615238793194294,-0.989987603854388,0.2706814557313919,0.5685171601362526,0.6431577727198601,0.9483129875734448,0.938494875561446,-0.7054029745049775,-0.48443079041317105,0.9586785458959639,0.6617674264125526,-0.19210539618507028,-0.19732034113258123,0.0247033778578043,-0.39076492516323924,0.4914560695178807,-0.8061700235120952,0.8653339459560812,0.5087255001999438,0.03454230586066842,0.5483117341063917,0.7146821049973369,0.10256459098309278,0.2618381613865495,-0.43884421000257134,0.8879256448708475,0.0922537692822516,0.5259207733906806,0.9452990856952965,-0.16181893413886428,-0.8485399731434882,-0.900091040879488,-0.7143947407603264,0.546414143871516,0.1974017657339573,0.647771789226681,-0.46374512929469347,0.13543463684618473,0.25124754570424557,0.7244723495095968,0.20001914957538247,0.8780623590573668,-0.3491482539102435,-0.9734312309883535,-0.28004241827875376,0.9160828036256135,-0.3731078184209764,-0.08501250529661775,-0.5007679928094149,-0.5222479528747499,-0.5779236285015941,-0.23550236131995916,0.795163162983954,0.78308678092435,0.8222691374830902,-0.13500202493742108,0.19984489167109132,0.7736839028075337,0.45147124771028757,0.7436855505220592,-0.9149656514637172,-0.2554827560670674,-0.785595549736172,0.8273485684767365,0.1660779220983386,0.9907605312764645,-0.7092782696709037,-0.07728237006813288,0.9326715446077287,-0.42134409537538886,0.32082743430510163,-0.8168995683081448,-0.10391050903126597,-0.5337888230569661,0.49995621386915445,0.29914534743875265,0.06372685683891177,-0.2102010166272521,0.10168460384011269,0.5315950536169112,-0.0429392303340137,-0.5798732326366007,0.6775671965442598,0.9116429197601974,-0.12711967434734106,0.2162420260719955,0.6480216076597571,0.039281442295759916,0.10417317925021052,0.6307049174793065,-0.5651823654770851,-0.4890561541542411,0.16015558317303658,-0.9399981312453747,0.8250518483109772,0.16388093261048198,-0.9801970310509205,-0.7064391183666885,-0.9974331450648606,-0.839433987159282,-0.054024169221520424,0.4991608369164169,-0.05312881991267204,0.8130214028060436,0.6723554511554539,0.13733090879395604,0.18940649693831801,-0.42353666201233864,0.07013894012197852,-0.11326164659112692,-0.6846960186958313,-0.3249197448603809,0.7047844328917563,-0.19539334904402494,-0.26966057624667883,0.5454176776111126,-0.4190130499191582,-0.2506199786439538,-0.027408547699451447,-0.7207731870003045,0.9661403819918633,-0.9108780454844236,0.8248662501573563,0.8386398539878428,0.8600945477373898,0.3148403731174767,-0.355238385964185,-0.09968057041987777,0.44123574532568455,0.7639296343550086,0.6789281466044486,-0.9189953492023051,-0.39918355271220207,0.2647591242566705,-0.17640224983915687,0.11566445650532842,0.05750351259484887,-0.17987532913684845,-0.5502585940994322,0.3760113837197423,0.01313393423333764,0.004592593293637037,0.0769930575042963,-0.0075763133354485035,-0.8586651780642569,-0.25960072269663215,0.28629778046160936,0.41425064764916897,0.7581625659950078,0.2136439923197031,-0.6094432701356709,-0.5741429650224745,0.1795516819693148,0.7102342490106821,0.934640837367624,-0.3533346694894135,0.40238915057852864,0.6558049437589943,0.7471937141381204,0.668411623686552,-0.6627836478874087,-0.6556554627604783,0.8638846124522388,-0.2878348114900291,0.48043273901566863,-0.3201480684801936,-0.10492200683802366,-0.032739680260419846,0.6870804475620389,-0.2214529882185161,0.035028803162276745,-0.24591686856001616,0.73926383536309,0.8129894062876701,-0.06433743657544255,-0.7961175860837102,0.6203373819589615,0.8833408351056278,0.9226492997258902,-0.7866745931096375,-0.9631498255766928,-0.7125078565441072,0.3409356828778982,-0.322336339391768,-0.11769342562183738,0.7967095393687487,0.763753401581198,0.43848849181085825,-0.7111959932371974,0.2771462816745043,-0.04492557933554053,-0.7765027401037514,0.4701140490360558,-0.7247227714397013,-0.7007048795931041,-0.23487481707707047,-0.36193811194971204,0.1665635583922267,-0.5993486223742366,0.744502657558769,-0.8058701986446977,0.9393929713405669,-0.23629688564687967,-0.08403550647199154,0.5028910357505083,-0.6423094016499817,0.8121064901351929,0.20929266512393951,0.16243015183135867,0.279817002825439,0.28246344067156315,-0.309670802205801,0.9474275982938707,-0.39209997607395053,-0.0823721825145185,-0.22347307205200195,-0.5641717719845474,-0.24628953216597438,-0.9842818756587803,-0.8737542685121298,-0.2963954103179276,0.3493047091178596,-0.6846453049220145,0.15069370297715068,-0.3795843543484807,0.23023416753858328,0.9059871351346374,0.8071447974070907,0.27740972582250834,0.9102384215220809,-0.6291532875038683,0.20459179999306798,-0.46886488422751427,-0.43244222551584244,-0.10540761472657323,0.34785912511870265,0.22019432671368122,0.29762088181450963,0.5615010699257255,0.2214883230626583,0.2133066998794675,0.9706693775951862,-0.6092071523889899,-0.804317066911608,0.7918226807378232,-0.0960214831866324,-0.37832508562132716,0.3588994303718209,-0.8950324850156903,0.7739781602285802,0.6399946808815002,-0.8515331554226577,-0.595337029080838,0.2641153600998223,0.01615155255421996,-0.6340066678822041,-0.4552754135802388,-0.3236939166672528,0.564312148373574,-0.3796043023467064,-0.7509275055490434,-0.7776267929002643,-0.24189976369962096,-0.9595170328393579,-0.13658669916912913,0.4010851392522454,0.7693483820185065,-0.4397083525545895,-0.6070580463856459,0.3848784505389631,0.4568400764837861,-0.2481764117255807,0.4533361098729074,-0.27221016213297844,0.7809792384505272,-0.2538218251429498,0.2068438814021647,-0.9266494023613632,-0.5388484564609826,0.844844167586416,0.14082356356084347,0.8529514982365072,0.40829341672360897,0.3940108558163047,-0.29146342538297176,0.17009872803464532,-0.2649367842823267,0.07991444086655974,0.09197085909545422,0.5055255447514355,-0.06452372437343001,0.4656691267155111,-0.6718446207232773,-0.8677613846957684,-0.6257089097052813,-0.1528710494749248,0.43093401240184903,0.600870827678591,0.3852827069349587,-0.6204808577895164,0.10222538933157921,-0.6953396243043244,-0.8321798834949732,0.01162061095237732,-0.7545479000546038,-0.08141707303002477,-0.9602764816954732,-0.20621078507974744,0.8799225543625653,0.6216621301136911,-0.4353821245022118,0.12138380901888013,0.3370592212304473,0.02361842291429639,-0.01053418405354023,-0.9600973166525364,-0.28897448536008596,-0.24229688197374344,-0.7374374913051724,0.46692843828350306,0.5392908919602633,-0.9458520975895226,0.27245604852214456,0.5895256930962205,0.46906573371961713,0.08893376868218184,-0.5311897494830191,-0.350903051905334,0.8951205532066524,0.7278248285874724,0.9129308331757784,-0.4265985833480954,0.42265382781624794,0.9488023538142443,0.24646114464849234,-0.16074104141443968,-0.5965791456401348,-0.7918982324190438,0.48759980453178287,0.6768801636062562,-0.07517940225079656,-0.07912930240854621,-0.6139474981464446,-0.3940278668887913,0.11284031486138701,0.1642105565406382,0.3304062928073108,0.48825409170240164,0.7262601731345057,0.2192698330618441,0.1976894624531269,0.672505865804851,0.2610536445863545,0.6350525808520615,-0.2017219658009708,0.15742481034249067,0.6638636346906424,-0.255758005194366,0.6646039127372205,-0.756652136798948,0.5144216935150325,-0.8608909980393946,0.3281314759515226,0.9284234824590385,0.4685862441547215,-0.09942490933462977,0.7195023712702096,-0.30638975091278553,0.5314661827869713,0.9670020970515907,-0.3920903201214969,0.2134965700097382,0.48730153776705265,0.40639410400763154,-0.8760135369375348,0.4330626013688743,0.04014198388904333,-0.38306170189753175,0.08094238489866257,-0.0363116548396647,-0.5806908197700977,0.7119755744934082,-0.2879364537075162,0.9195534195750952,0.4910988309420645,0.470991182141006,-0.06893370440229774,0.4237461471930146,0.3830288085155189,0.7996474737301469,0.3043741937726736,0.7790172901004553,0.8893404202535748,-0.15450390661135316,-0.058330066967755556,0.3463195930235088,0.5797038651071489,0.3474179501645267,-0.724565361160785,0.6051830793730915,-0.29654088243842125,-0.5773741020821035,-0.07417720416560769,0.9179777456447482,-0.5878705740906298,-0.03284628922119737,-0.27693238109350204,-0.8035434996709228,0.22042621299624443,0.3793885870836675,0.41135119274258614,0.15220089768990874,0.8203247017227113,-0.7106699920259416,-0.7022925452329218,0.6006490541622043,-0.7639741678722203,0.3946951674297452,-0.38024415960535407,-0.7136106118559837,-0.026733324397355318,0.04262556089088321,0.990559708327055,0.867702700663358,-0.9607394454069436,0.9535305509343743,0.5374263804405928,0.5993375922553241,0.25253265304490924,0.4618032951839268,-0.22021300625056028,0.8897120971232653,0.39124124124646187,-0.876829189248383,0.21052542189136147,0.9964246302843094,-0.8154473467729986,0.45746965100988746,-0.7249237480573356,0.5596689530648291,-0.1702459752559662,-0.4154387856833637,-0.024833910632878542,0.18200911162421107,0.41731944726780057,0.0603034901432693,-0.7509211171418428,0.4748475858941674,-0.7840933674015105,-0.5926030683331192,0.9026325028389692,0.6177003146149218,0.6962949736043811,0.08072470454499125,-0.24293042439967394,-0.5815467066131532,-0.3671472673304379,0.39863164629787207,-0.12916135042905807,0.27355421567335725,-0.7294461471028626,-0.6534328009001911,0.5724323834292591,0.10128524759784341,-0.4100924148224294,0.4515651063993573,0.9983249488286674,-0.28078834572806954,0.4451808584854007,-0.387671519536525,-0.320353617426008,-0.059837404638528824,0.5041088154539466,0.12629934074357152,0.1439735828898847,0.783794972114265,-0.542855279520154,0.5496743619441986,-0.11694737011566758,0.4792946605011821,0.6689438028261065,-0.2780954008921981,0.9940146775916219,-0.5273241526447237,-0.7890979591757059,0.06862917449325323,-0.9519212860614061,0.05865418538451195,-0.8818879146128893,-0.049948278814554214,0.33388112112879753,0.19770583370700479,0.43718308163806796,0.6400570557452738,-0.39100080356001854,-0.1737408940680325,-0.011175666470080614,-0.5087324678897858,0.1006613913923502,0.11065228702500463,-0.7098605399951339,-0.3384202276356518,0.07950115064159036,-0.08838490583002567,0.17501840787008405,-0.32417775271460414,0.042082499247044325,-0.37173597840592265,0.6867513065226376,0.07378478022292256,0.4508594209328294,0.15786528773605824,-0.6642419761046767,-0.7206578115001321,0.7430701134726405,0.315631162840873,0.8692118981853127,0.2725271717645228,-0.07278960756957531,-0.004974457900971174,0.8207610887475312,-0.8816105760633945,0.9934381828643382,0.6636832486838102,0.42067772848531604,0.03600915428251028,-0.3781983992084861,-0.30229602102190256,0.5372564452700317,0.21730307023972273,-0.5868112687021494,0.9642168870195746,-0.28985265316441655,-0.4241890199482441,-0.09017374832183123,-0.4826690792106092,-0.15308645647019148,-0.01999639580026269,-0.11767108831554651,0.5646278783679008,0.2962045297026634,-0.1413575424812734,0.4247740674763918,0.9517283965833485,0.025434706825762987,-0.943846199195832,0.33937470288947225,-0.4245583461597562,-0.6548124887049198,0.36730172391980886,0.272092261351645,-0.15734214009717107,-0.5089688780717552,0.7927219006232917,-0.3972029178403318,-0.33952658204361796,-0.7734764069318771,-0.14599478896707296,-0.8207402569241822,0.7272925665602088,-0.17352244909852743,-0.224516817368567,-0.18251997651532292,0.6882519023492932,0.4842955581843853,0.16317238193005323,-0.229134907014668,-0.01698792167007923,0.11810991680249572,0.5667257755994797,0.8885192656889558,-0.9666383294388652,0.2224517068825662,-0.5996315516531467,0.3355032657273114,-0.15912330010905862,-0.7706005936488509,-0.9409552947618067,-0.8937125797383487,-0.5110925128683448,-0.7235156656242907,0.41677386639639735,-0.6989138415083289,0.14456075290217996,0.2475830321200192,0.5953259677626193,-0.09187432285398245,0.41356641007587314,0.37651125248521566,0.5588825168088078,-0.5318301422521472,-0.13935153977945447,-0.8830459266901016,-0.9213682780973613,-0.7477505868300796,0.8985565872862935,0.24599726172164083,-0.43548347149044275,0.23692451603710651,-0.5642517684027553,0.22654549591243267,0.4867355851456523,0.02611754322424531,-0.6048681284300983,0.04762186901643872,-0.6529566324315965,-0.7266948688775301,0.40114480582997203,0.44815746881067753,-0.25604773685336113,0.6930861063301563,0.8338390276767313,0.9881639191880822,-0.473872478120029,-0.1336465561762452,0.6238341885618865,0.25008935015648603,0.28485524374991655,-0.028017698787152767,-0.9850991345010698,0.094445267226547,0.12571725388988853,-0.1417790660634637,-0.523658299818635,0.08687791647389531,0.7342407219111919,-0.1191564779728651,-0.9800321338698268,-0.3797562145628035,0.6814166684634984,-0.727896576281637,0.8633150672540069,0.6228126185014844,-0.686323391739279,-0.2849453338421881,-0.4856299818493426,0.8796576675958931,0.40322470339015126,0.94685382489115,-0.06803119601681828,0.9867204064503312,0.027778110932558775,-0.5461847414262593,-0.1310464353300631,-0.16520238667726517,0.4241998544894159,0.05858080834150314,0.9577241386286914,0.9538726476021111,0.7206849148496985,0.9236833588220179,0.31580439815297723,0.09947522124275565,-0.46067064302042127,-0.469515367411077,0.33938349038362503,0.4834688641130924,0.4241254706867039,-0.1862995564006269,0.2958372803404927,-0.14448960591107607,-0.1765151764266193,-0.9723958349786699,-0.16168763674795628,-0.8538071000948548,0.9596904804930091,-0.2888538553379476,0.47903948882594705,0.391641435213387,-0.09052509721368551,-0.23652834631502628,-0.4468305688351393,0.7971072234213352,0.6101329368539155,0.09140423918142915,0.573859129101038,-0.9671200821176171,0.5328714451752603,0.26971796015277505,-0.14787236647680402,-0.17474628472700715,0.16217127162963152,0.6058333967812359,0.651278446894139,-0.9323824024759233,0.8511845078319311,0.6840274604037404,-0.934362122323364,-0.3410823494195938,-0.2874495782889426,-0.9255083710886538,0.17689264519140124,-0.2325257952325046,-0.6946413954719901,-0.6890156287699938,-0.5221499567851424,0.2249884861521423,0.8730270611122251,-0.3903901781886816,0.7011078200303018,-0.865353424102068,-0.7980213616974652,-0.19714572420343757,0.49962129443883896,-0.13605913612991571,-0.25538467336446047,0.24883656203746796,0.6023999522440135,0.12169378856197,0.30265068961307406,-0.37751660868525505,-0.43669602973386645,0.7896826211363077,0.2594136414118111,-0.1873663873411715,-0.5889955628663301,0.8144095460884273,-0.6765426397323608,-0.9521048609167337,0.28636491345241666,0.1579844788648188,-0.3585205050185323,0.02805748349055648,0.6430305261164904,0.008695521391928196,0.011624085251241922,0.9884077273309231,-0.11335094971582294,0.184367292560637,-0.4970568590797484,0.23429527366533875,0.04617978632450104,-0.14289152156561613,-0.4639949258416891,0.7813987685367465,-0.9998368858359754,-0.8370032864622772,0.02667718008160591,-0.08734751353040338,0.9100746023468673,-0.4817770244553685,-0.5590151390060782,-0.40982832899317145,-0.27674240432679653,-0.7823540782555938,0.9222809881903231,-0.7332606143318117,0.5467963074333966,-0.6874291077256203,-0.5813487381674349,-0.9968056031502783,0.7205054317601025,-0.19483549846336246,0.9790650359354913,0.4380481243133545,-0.38692991016432643,-0.5479697370901704,0.2798939198255539,0.9730405085720122,0.4341548588126898,-0.2803810643963516,-0.8268862748518586,0.19229478016495705,0.7185748862102628,0.9658488631248474,0.42659781547263265,0.9290999686345458,0.8651278861798346,0.44324692571535707,0.29236103780567646,-0.8652107766829431,0.6904633333906531,-0.030355607625097036,0.7073081023991108,0.3201916981488466,0.48380979895591736,-0.6257917159236968,0.011189042590558529,0.09649856016039848,-0.35791601054370403,-0.2728368416428566,-0.14597882144153118,0.9120992906391621,-0.7502055834047496,0.003999943379312754,0.2774880202487111,0.7014100826345384,0.7502816319465637,-0.30764706199988723,-0.6758252633735538,-0.9894993295893073,-0.5884952787309885,0.8108236156404018,-0.1755274897441268,0.684597157407552,0.9707047753036022,0.7403798350133002,-0.5487508419901133,-0.9487381833605468,-0.26334128389135003,-0.5935923452489078,-0.15988771012052894,-0.705931045114994,-0.8460075575858355,0.0002916427329182625,0.07941655348986387,0.2681070282123983,-0.678020793478936,0.4226605691947043,-0.5607834286056459,-0.7428858624771237,0.01818680064752698,-0.5070867859758437,0.8018186795525253,-0.15589031856507063,0.9420228102244437,0.9734158371575177,-0.5411505573429167,0.7062910590320826,-0.9047301076352596,0.10170549200847745,-0.1693213488906622,0.5350263873115182,0.5748394071124494,0.263091498054564,-0.28221687860786915,-0.25373976258561015,0.5032708570361137,-0.7701375521719456,0.355074733030051,0.6804587338119745,-0.6959826038219035,-0.9875880861654878,-0.9815042824484408,-0.6082237935625017,0.019695771392434835,0.724986030254513,-0.3556027440354228,0.2369520589709282,0.6057364400476217,-0.40785092068836093,-0.6158511573448777,-0.21808655792847276,0.6606639847159386,-0.12225639401003718,0.05493173049762845,-0.054270504508167505,0.22805863060057163,0.2179221254773438,0.912010486703366,-0.9521326012909412,0.7796103390865028,-0.8450959138572216,-0.607069845777005,-0.8077671574428678,-0.9560372275300324,0.49127649795264006,-0.007696226704865694,0.5383121585473418,-0.3451503091491759,0.36394566716626287,0.9706964991055429,-0.8198258331976831,-0.7859505927190185,-0.7709588771685958,-0.07032940862700343,-0.2515505952760577,-0.5124380527995527,0.2998305610381067,0.9764662845991552,0.3144743721932173,-0.13237757235765457,-0.39247042313218117,0.1464770222082734,-0.5401659971103072,0.3811924895271659,-0.5823900764808059,-0.05173642048612237,0.1366750756278634,0.7030423441901803,-0.3435697862878442,-0.215171929448843,0.7249181540682912,0.9074332467280328,-0.4569033207371831,0.007368140388280153,0.8707446376793087,0.1531422738917172,-0.6717038969509304,0.461743772495538,-0.46221387945115566,0.35019895154982805,-0.19862717995420098,-0.3683375217951834,-0.7162753031589091,0.060233977157622576,-0.8162016007117927,0.7151094079017639,-0.15157712250947952,0.7928806249983609,0.27922623325139284,-0.028298109769821167,0.9466875861398876,0.7816123352386057,-0.7253334703855217,-0.7000752910971642,-0.033123033586889505,0.8052447158843279,0.859853898640722,0.2731620850972831,0.06081577576696873,0.30979294469580054,-0.21451814472675323,-0.3085401151329279,-0.9532499872148037,0.8962800418958068,-0.927758991252631,-0.8369146059267223,0.8556101005524397,-0.3874851558357477,0.3862161464057863,-0.5700304643251002,0.7814104263670743,-0.9836782524362206,0.5421665525063872,0.04007397126406431,-0.06860371679067612,-0.049440580420196056,0.004554497078061104,0.196856954600662,0.32921646954491735,-0.6348074432462454,0.34005847107619047,-0.09991214890033007,0.07572284946218133,-0.0648070084862411,-0.3075561891309917,0.5801579640246928,-0.10299867391586304,0.7167621962726116,-0.8942709458060563,0.7622488127090037,-0.9604535768739879,-0.8883772483095527,0.14102856675162911,0.4394099237397313,0.2260110224597156,0.4794105114415288,0.7397193186916411,-0.27067960426211357,-0.9522812473587692,0.7694999757222831,0.6403401745483279,0.6242470536381006,0.25426888186484575,0.3090079836547375,-0.5353308711200953,0.13506963476538658,0.9938747556880116,0.9315212611109018,0.40590396244078875,-0.9371022754348814,-0.8845888460054994,0.5458620353601873,0.7297485037706792,0.4233172223903239,-0.18740315176546574,-0.13423223234713078,0.8498097048141062,-0.4289614628069103,0.892602629493922,-0.11763869971036911,-0.06558821815997362,0.31030107382684946,-0.42150755459442735,-0.7487824726849794,-0.5861703404225409,0.43120435485616326,0.15342472540214658,0.3357703983783722,-0.10024506784975529,0.5789483129046857,-0.1927501750178635,0.38395239505916834,0.3941503814421594,0.274221773725003,-0.16811931086704135,0.0357074155472219,0.16046439483761787,0.8082300084643066,0.8612602869980037,-0.8844541986472905,-0.2044279109686613,-0.42739432072266936,0.6842495831660926,0.18363353051245213,0.5480321794748306,0.21994845056906343,0.9656608300283551,-0.5278938580304384,0.9631116366945207,-0.692557014990598,0.04444670397788286,-0.9413414904847741,-0.8707917337305844,-0.6616760483011603,-0.44712687376886606,0.5933276899158955,-0.4623660775832832,0.029750322923064232,-0.5803281851112843,-0.7217065254226327,-0.47583815827965736,-0.6632614689879119,-0.556822242680937,0.9856768930330873,0.7003083433955908,-0.05047878436744213,0.11328267678618431,0.17849782202392817,0.43575591454282403,0.22751011699438095,0.9647532841190696,0.2576072704978287,0.2825385043397546,-0.7233409956097603,-0.4723183745518327,-0.23092413041740656,0.08531356090679765,0.4598940508440137,0.3825756493024528,0.2842726153321564,-0.5239717927761376,0.3890550350770354,0.7650880105793476,0.7825327799655497,-0.8205903084017336,0.24250509310513735,0.13863575365394354,0.6392640760168433,-0.5001754234544933,-0.4582058875821531,0.9862261032685637,-0.27656818740069866,0.5403308728709817,-0.5299250185489655,-0.030266576912254095,0.980454817879945,-0.798534095287323,-0.10895618190988898,0.9418034716509283,0.39328913390636444,0.011092714499682188,-0.7536806561984122,0.6105855363421142,-0.6252033016644418,0.1854949821718037,0.1312318849377334,-0.8862553811632097,-0.8326906259171665,-0.5573735786601901,-0.8399987854063511,-0.5520507236942649,-0.4605437912978232,0.8666094760410488,-0.6396837113425136,-0.09855667548254132,-0.005813233554363251,-0.7149619134142995,0.6689949324354529,-0.5364152314141393,0.7272856179624796,0.8077670023776591,-0.5811080648563802,-0.4377617398276925,-0.9131859433837235,-0.42273730086162686,-0.947004213463515,-0.3079744786955416,-0.8782973759807646,-0.9846718451008201,0.7986606755293906,0.041145316790789366,0.8373939981684089,-0.4073479129001498,0.8901489870622754,0.06320934044197202,0.6886421600356698,0.8043110454455018,0.4348844797350466,0.6710661477409303,0.21260224236175418,0.36727056186646223,0.2034980384632945,-0.06987603893503547,0.9198537403717637,-0.2612066697329283,0.546224080491811,-0.5052352948114276,0.8658524267375469,-0.6579015851020813,-0.5336752599105239,-0.09111112030223012,-0.48776073241606355,0.38351599825546145,-0.48680580174550414,0.5995003837160766,-0.032971082255244255,0.212744552642107,0.2501071556471288,-0.7887542750686407,0.9263656702823937,-0.7483279970474541,-0.06528999377042055,-0.31723241973668337,0.025092696771025658,-0.6750752567313612,0.23325603967532516,-0.0024084290489554405,0.49057588586583734,0.9783072448335588,-0.16261147568002343,-0.14302431605756283,-0.5129103027284145,-0.9456773279234767,0.6754271825775504,-0.7978988187387586,-0.88641666341573,-0.9297407809644938,0.265041034668684,0.6382547612302005,0.14758028648793697,0.4302501855418086,0.5983169111423194,0.9343674378469586,0.0732926712371409,-0.4054482849314809,-0.6292169857770205,0.157973968423903,0.14649995975196362,0.559244233649224,-0.7956788558512926,-0.15500743361189961,-0.08633053256198764,-0.5544780399650335,-0.5403508581221104,-0.4773280103690922,-0.08197279274463654,-0.32960986718535423,-0.6221031504683197,0.5796652613207698,0.7579175136052072,0.5032159388065338,-0.029828294180333614,-0.9138213898986578,-0.8490078463219106,0.4952856660820544,-0.6529478952288628,-0.26437748223543167,-0.840714271645993,-0.019071724265813828,0.33712922176346183,0.01635593269020319,-0.1379746701568365,-0.6050231670960784,-0.7312141861766577,-0.3746016160584986,-0.22377699986100197,0.35079293930903077,-0.8871332625858486,-0.7091785171069205,0.7959462129510939,0.95816929358989,0.9253586018458009,0.5718085933476686,-0.2504935101605952,0.533125133253634,0.2215936747379601,0.6350964196026325,0.7002079337835312,-0.9025154411792755,0.045021839905530214,-0.8561101788654923,-0.04536257218569517,-0.016370213124901056,-0.6756524564698339,0.8116403641179204,-0.7432858631946146,0.8357016751542687,-0.6861333046108484,0.3819803614169359,0.3620045315474272,-0.46159690897911787,-0.37906940933316946,0.9600515249185264,0.631579645909369,-0.5437070433981717,0.43279314087703824,-0.7327358033508062,0.6757690026424825,0.5105782202444971,0.7395875952206552,0.04855888243764639,-0.7838961984962225,-0.4689675220288336,0.47307329857721925,0.6746987355872989,-0.6377624846063554,0.6421828898601234,-0.8321797698736191,-0.9706811653450131,-0.9421895365230739,0.5983374062925577,-0.6999894645996392,-0.9039992676116526,0.4719922742806375,-0.5975345252081752,-0.5675441394560039,0.5857439404353499,-0.5740125416778028,-0.9270921172574162,0.7184841176494956,-0.0715971221216023,-0.3426770274527371,0.33947850624099374,0.4634769461117685,0.9874501414597034,0.545680905226618,-0.2922846330329776,0.651090273167938,0.9923710860311985,-0.9645181270316243,-0.5529061025008559,0.824268149677664,-0.06903951428830624,-0.1300348392687738,-0.6713424590416253,0.39130508014932275,0.9984012395143509,-0.5889701154083014,0.5169001570902765,0.1373925907537341,-0.99574866425246,-0.1363472226075828,0.2486209599301219,-0.22967055067420006,-0.6755068618804216,-0.15110815921798348,0.0713785644620657,-0.5215877806767821,-0.3102546976879239,-0.47994075901806355,0.7846014518290758,0.05708055477589369,0.5340694058686495,0.8722830698825419,-0.1818769327364862,0.5466883610934019,-0.5033027925528586,0.080651446711272,0.8089797887951136,-0.5762384966947138,0.6201888332143426,-0.016327007208019495,0.08076715189963579,-0.31305315298959613,-0.43050461914390326,0.02490618173032999,-0.15240636141970754,-0.3606810141354799,0.6972287967801094,-0.7497056489810348,0.425908456556499,0.0983423343859613,-0.6480078832246363,0.8410555296577513,-0.6840395242907107,0.032562161330133677,0.7307125544175506,-0.22313127806410193,-0.6656554276123643,-0.3110217726789415,0.9994448581710458,-0.13816404156386852,0.26677145529538393,0.7096276325173676,0.21283847745507956,-0.32521992549300194,-0.7077599996700883,0.286673397757113,-0.665479451417923,-0.3191093220375478,-0.6707257912494242,0.6527919536456466,-0.6224054326303303,0.37623470090329647,-0.4023967436514795,0.38578276755288243,-0.5099707678891718,-0.16891674743965268,-0.9942855397239327,0.8415944669395685,-0.658933327998966,-0.6054825880564749,0.22564852237701416,0.7681273189373314,0.2676431592553854,-0.92420624056831,-0.6390971643850207,0.009620118420571089,0.3087262734770775,0.894480608869344,-0.4499983708374202,0.5497915199957788,-0.9032613434828818,-0.7925561526790261,-0.7399589247070253,-0.057384137995541096,0.49016710836440325,0.8943373830989003,-0.6137130609713495,-0.9682816560380161,-0.819459330290556,-0.7796488078311086,0.686849751509726,0.3226676220074296,-0.2763849445618689,-0.7700096284970641,0.9407941866666079,-0.5471803611144423,0.32788699073717,0.8418628363870084,-0.665140874683857,0.14889364782720804,0.13374569360166788,-0.2744289329275489,0.1323534962721169,-0.26087169675156474,-0.38178599905222654,0.3822397314943373,0.15982071310281754,0.5985200144350529,-0.10293684201315045,0.5700824009254575,-0.8376441625878215,-0.13754129456356168,-0.6153418952599168,0.28453629883006215,-0.9971596100367606,0.024127071257680655,0.13566706189885736,0.6548012187704444,-0.1523297014646232,-0.05808741645887494,-0.531209556851536,-0.6550799859687686,0.03929832112044096,0.1570492098107934,-0.3754107290878892,0.2376359412446618,0.2838045130483806,0.12572086276486516,0.6062257448211312,0.29304190445691347,0.38905515149235725,-0.9792086584493518,-0.07136890012770891,0.20573822455480695,0.16566154779866338,0.8279073340818286,0.5852682203985751,-0.9010898051783442,-0.6608550464734435,0.4860580572858453,-0.59479677118361,0.18085613893344998,-0.02411484206095338,-0.7986317509785295,0.29122577235102654,-0.44760968536138535,0.45769496075809,0.07140851626172662,-0.8773623802699149,-0.8046546000987291,0.15780300740152597,-0.8301963293924928,-0.8226440865546465,-0.6883262591436505,0.51066949730739,-0.6467139055021107,0.0949395066127181,0.5411901115439832,0.6919105858542025,-0.06992424884811044,0.4658785695210099,-0.07331496756523848,0.484997914172709,0.28559166146442294,-0.0658271829597652,0.742312700022012,-0.06774869747459888,-0.18031269265338778,-0.04722556471824646,-0.3938275258988142,-0.4935031235218048,-0.14276522491127253,0.6211771769449115,0.6572888395749032,0.9081723080016673,0.9616851028986275,-0.40008282428607345,-0.8577306801453233,0.20738622406497598,0.21741576632484794,-0.7428789045661688,-0.7294409088790417,-0.8761907555162907,0.294292604085058,-0.08433843497186899,-0.625644339248538,0.9117354676127434,-0.855596587061882,-0.1012025442905724,-0.4076007162220776,-0.18599000060930848,-0.19662910513579845,0.7846288867294788,0.9107189779169858,-0.5605020290240645,0.8562176581472158,0.4229696015827358,-0.1417462518438697,0.6010358110070229,-0.4768694886006415,0.14591366844251752,-0.95205044047907,0.2542161880992353,0.3298091874457896,-0.29677832685410976,-0.792630631942302,0.5503010479733348,-0.7561299744993448,0.6095626326277852,-0.9409130322746933,-0.39560796320438385,-0.005250188056379557,-0.8067801068536937,-0.09413922484964132,-0.197379678953439,-0.8130714525468647,0.027009044773876667,-0.5199946756474674,-0.6789083709008992,0.7665238510817289,0.02413809159770608,0.7465003365650773,0.037392073310911655,0.28848006715998054,-0.19008396146818995,-0.02013131184503436,-0.9351902916096151,0.8015207964926958,0.052629825193434954,-0.24717144295573235,-0.7449050694704056,-0.6478146938607097,0.6340042320080101,-0.6015873225405812,0.3395875710994005,-0.5507983895950019,-0.6758098010905087,0.8054596642032266,0.8885885905474424,0.004666656721383333,-0.9239000952802598,0.10061665065586567,0.5372726772911847,0.06687391083687544,0.8008566778153181,0.01841233717277646,-0.46801845729351044,-0.011629653628915548,-0.48011723486706614,-0.160081893671304,0.5888801836408675,0.4668675404973328,0.6184616666287184,-0.0029520979151129723,-0.5451867589727044,0.3225839384831488,0.7810561424121261,0.993957681581378,-0.7318887608125806,-0.8091223295778036,-0.7729562190361321,0.9941737353801727,-0.0570845166221261,-0.9398397328332067,0.476183929014951,0.9914500904269516,-0.1868263529613614,-0.0876889219507575,0.11167450109496713,-0.021839594934135675,0.015257826540619135,-0.3793034967966378,0.5446534478105605,0.23511328594759107,0.6570275202393532,0.7575548170134425,-0.8418762716464698,-0.8702450701966882,0.2368584107607603,-0.9335819631814957,-0.21333510428667068,-0.7896770667284727,-0.2956026825122535,-0.1440846505574882,-0.005491888150572777,-0.8051500539295375,-0.017767091747373343,0.6145440107211471,0.7962367073632777,0.3882039925083518,-0.042240267153829336,-0.453339796513319,0.7047936911694705,-0.3129741856828332,0.8916466734372079,-0.4763308735564351,0.21507141832262278,0.5993599528446794,0.15539658861234784,-0.620199506636709,-0.9886718173511326,-0.9181002085097134,-0.6474648076109588,0.5066040917299688,0.2849556701257825,0.7679792493581772,0.18183370120823383,-0.3392553054727614,0.4853536421433091,-0.19485482899472117,-0.8799267876893282,0.3275189697742462,-0.6010249489918351,-0.09488871600478888,0.9264228329993784,-0.49872987577691674,0.3358636354096234,-0.7935215327888727,0.6432870863936841,0.09773125499486923,-0.8134845248423517,0.21573005709797144,0.7852766052819788,-0.5942795192822814,-0.22803382156416774,0.8812986183911562,0.7056381464935839,-0.8200309555977583,0.7280909009277821,-0.4582306304946542,0.5791181460954249,-0.7628050516359508,-0.645211836323142,-0.31315569672733545,-0.6387000409886241,-0.7331149526871741,-0.8065720247104764,0.12153770821169019,-0.5260593807324767,-0.9320867275819182,0.8632780993357301,0.47801891388371587,0.7025828124023974,-0.7001299569383264,0.18593306792899966,0.32745110196992755,0.6018409142270684,-0.848577655851841,-0.3225370440632105,-0.5751919508911669,0.13037345372140408,-0.6998108476400375,-0.6175954639911652,-0.36178025836125016,0.7198818125762045,-0.8883540825918317,-0.42777487728744745,0.6061859386973083,-0.9567599063739181,-0.891739591024816,0.4484070250764489,0.0925059961155057,-0.23634052276611328,-0.47192021645605564,0.8931580185890198,0.867264271248132,0.2504747458733618,0.3168817898258567,-0.3815580946393311,-0.043331286404281855,-0.04816969716921449,-0.6836158591322601,0.47603603918105364,0.9108801931142807,-0.9004983697086573,0.5693422900512815,0.8142686281353235,0.3371315519325435,0.42361070634797215,-0.7481307159177959,0.5385224004276097,0.02636414673179388,0.7527437857352197,0.12751317955553532,-0.8625258784741163,-0.9255515248514712,0.4425269588828087,0.8567616911605,0.7048752135597169,-0.6914335433393717,0.1534685082733631,-0.7051134714856744,-0.5177111439406872,-0.5229315883480012,0.7572686802595854,-0.3421115637756884,-0.33997760992497206,-0.9201151328161359,-0.7101452774368227,0.6735570887103677,-0.22291458351537585,0.2972466070204973,-0.31908058980479836,0.36042162450030446,-0.5316710220649838,0.0228689587675035,0.8547192430123687,-0.48486698837950826,-0.35587989212945104,0.9669543746858835,-0.6514075631275773,-0.9016657769680023,-0.30551965488120914,-0.36889203544706106,0.8888077563606203,-0.0653421962633729,-0.7443609558977187,0.10424261400476098,0.3300061756744981,0.1923833223991096,-0.9706323044374585,-0.6596587765961885,0.6781339435838163,-0.16030442155897617,0.7877107989042997,-0.6230819979682565,-0.10592529596760869,-0.5623966311104596,0.2832379355095327,0.8336595804430544,-0.9024159088730812,-0.6076071383431554,-0.4783279513940215,-0.0717916451394558,-0.32718366105109453,0.997601798735559,0.20932289958000183,-0.15247523365542293,-0.6990103479474783,0.6223884830251336,0.0830767909064889,-0.8520331820473075,0.09773417375981808,-0.8063834114000201,-0.6373058995231986,0.16863180976361036,0.45888896845281124,0.37770556658506393,-0.052258122712373734,0.9721233253367245,-0.9007769548334181,-0.8795127957127988,0.8578501781448722,-0.7235072781331837,-0.5873997863382101,-0.1754870624281466,0.39136572321876884,-0.9719072123989463,-0.19340429129078984,0.9461861317977309,-0.942042512819171,-0.4070704458281398,-0.5382996955886483,0.7332599651999772,0.40443392051383853,-0.41392802307382226,-0.5870151543058455,-0.5858518583700061,-0.8454565056599677,-0.9102300768718123,-0.6512713311240077,-0.18533116672188044,-0.43848459143191576,-0.9520575166679919,-0.2958470471203327,0.02988310530781746,0.19131592009216547,-0.7370431702584028,0.15815637353807688,0.15946995187550783,0.7426723344251513,-0.26654165843501687,-0.3717085663229227,-0.08136055106297135,0.4186615813523531,-0.9749255063943565,-0.049519617576152086,-0.49028931837528944,0.3927563573233783,0.1621164595708251,-0.9060917519964278,-0.05449853977188468,-0.5548866372555494,0.17252740683034062,0.4379603308625519,-0.9674980859272182,-0.6287465672940016,-0.6202012510038912,-0.00964834401383996,0.8484424548223615,0.06874091969802976,0.31482035713270307,-0.6869931989349425,0.16373149631544948,-0.6825897856615484,0.5438852873630822,-0.685732304584235,0.27743549225851893,-0.3946829033084214,-0.2421197947114706,-0.3996444558724761,0.9983013793826103,0.6660257265903056,-0.533756316639483,-0.4267250830307603,0.2763416641391814,0.5318161291070282,0.6213901615701616,0.19357811752706766,-0.7406839239411056,0.32148509472608566,-0.19059756631031632,0.5363754723221064,0.7899782946333289,0.8750470201484859,-0.018908564001321793,-0.011730673257261515,0.7128566498868167,0.3413226706907153,0.6885630465112627,-0.4023927873931825,0.12160980608314276,0.8825580095872283,0.34483031556010246,-0.9225726523436606,-0.39063787553459406,0.4356021941639483,0.46267141913995147,-0.8266827496699989,-0.12207030085846782,-0.14438823843374848,0.8340997528284788,-0.5009340234100819,-0.8950457037426531,0.3822451289743185,0.0584214823320508,-0.22214949689805508,0.37429714715108275,-0.43220642302185297,0.7273857952095568,0.16115647554397583,0.03657736163586378,-0.6847823457792401,-0.9112486839294434,-0.796281635761261,-0.9132679579779506,-0.9409530181437731,0.4882973525673151,-0.8988004834391177,0.06474914401769638,0.20690376963466406,-0.10396368522197008,-0.0772544089704752,0.7597607676871121,-0.4155897875316441,0.9068592572584748,0.6415094793774188,-0.9412596705369651,0.6086140666157007,-0.4347519287839532,0.26697769295424223,-0.20391881512477994,-0.16157194506376982,-0.8811014001257718,-0.21010698983445764,-0.11639636335894465,0.5815362739376724,-0.8744199252687395,0.8911688695661724,-0.4800064582377672,-0.7166712270118296,0.6596151436679065,-0.45146462973207235,0.5242711561731994,-0.4756505782715976,-0.22179388348013163,0.41565669886767864,0.8839153349399567,0.5789895039051771,-0.9677620870061219,-0.9074828503653407,-0.3673984529450536,0.6875695493072271,0.7234206139110029,0.9363520797342062,-0.9195878719910979,-0.3949079615995288,0.8733358485624194,0.07007902627810836,-0.5993211739696562,0.8456666013225913,0.7041781316511333,-0.4687530677765608,0.5107638477347791,0.2508441344834864,0.20051135076209903,-0.619775413069874,0.2550444072112441,0.360623799264431,0.3059540335088968,-0.6115475459955633,-0.1669219988398254,-0.09874569345265627,0.42454751394689083,0.23923991061747074,0.07465858990326524,-0.20470474753528833,-0.11156210256740451,0.9264409374445677,0.1250759633257985,-0.044474923517555,0.0031141513027250767,-0.5703134573996067,-0.02717023016884923,0.9635384427383542,0.7691135439090431,-0.553214400075376,0.8460145089775324,0.6699080569669604,0.5115519054234028,-0.4513504421338439,-0.00823752349242568,0.8435320421122015,-0.8902857429347932,-0.2539255474694073,-0.2918170802295208,0.6729781106114388,-0.45446207746863365,0.3907718285918236,0.6698542861267924,0.4527119845151901,-0.9246478993445635,0.5436110524460673,-0.12701032822951674,0.5968977464362979,-0.10154098644852638,0.14515872579067945,0.41642824141308665,0.5974139589816332,-0.20110001508146524,-0.3640549397096038,-0.688979469705373,0.4627196844667196,-0.5629072384908795,0.479320724029094,0.16205932339653373,0.6155395805835724,0.08343143528327346,-0.7607638533227146,0.12815230526030064,-0.8091874206438661,0.9781603738665581,0.07906213495880365,-0.6671111001633108,-0.10533982841297984,0.3043617531657219,0.24012713599950075,0.07652658224105835,0.1846739249303937,0.2793219559825957,0.9154490772634745,-0.15565308090299368,-0.029794272035360336,0.4128459692001343,0.0874547641724348,-0.45766946859657764,-0.5749493017792702,0.4895255588926375,0.15839313948526978,-0.08374046068638563,-0.05857235146686435,0.1709375618956983,-0.8391941930167377,-0.3567563248798251,-0.06977650104090571,0.5533451279625297,-0.3338791043497622,0.5370386117137969,0.8088407875038683,0.9449092606082559,-0.6363475304096937,0.08649592939764261,0.6025815336033702,-0.6242530723102391,0.8100753095932305,-0.5951187321916223,0.7135475883260369,0.4481650097295642,-0.01639012061059475,-0.5628718216903508,0.3915623538196087,0.2997588221915066,0.34239902906119823,-0.2923688283190131,-0.9652621950954199,0.4184609861113131,0.985342179890722,0.2571633500047028,-0.06244677118957043,0.247934864833951,-0.09186332253739238,0.8125474085099995,0.07897806027904153,-0.41367266373708844,-0.025155078154057264,-0.4982429416850209,-0.18728672293946147,-0.36962027475237846,0.9759391020052135,0.08730689389631152,-0.9680099757388234,-0.4344159779138863,-0.1469408725388348,0.024821005761623383,-0.002361740916967392,0.8341442192904651,0.08354063099250197,-0.030178800225257874,0.7867451854981482,0.3268316304311156,-0.4298199210315943,-0.7014925200492144,-0.40034900698810816,-0.5118556590750813,-0.33668590569868684,-0.075231509283185,0.42249335534870625,-0.6761230295524001,0.9906574320048094,0.2846527532674372,0.7541349404491484,0.7092271465808153,0.7816892159171402,0.4285679394379258,-0.34835557732731104,0.16413707938045263,-0.6348047102801502,-0.1508016181178391,0.37747065909206867,0.7925105569884181,-0.3623415525071323,-0.5110198380425572,-0.34746680269017816,0.5122181912884116,0.35424129478633404,-0.7040252545848489,0.699776008259505,-0.5872097448445857,0.6782131642103195,0.9563760464079678,-0.8386659910902381,-0.36792952567338943,-0.9740243549458683,-0.3919125231914222,0.9056911841034889,-0.727143382653594,0.2973027187399566,0.14476111764088273,0.5629689041525126,-0.12160881841555238,-0.4888835959136486,0.20872427616268396,0.5905058751814067,0.6886861771345139,0.9820365351624787,-0.4487443449907005,-0.8677998883649707,-0.8971099159680307,0.9810832981020212,0.7291265265084803,0.6674909279681742,-0.8279857700690627,-0.30566148832440376,-0.16485470859333873,0.41111826710402966,-0.20299873920157552,0.939802317880094,0.5944392629899085,-0.7435002722777426,0.030583813320845366,0.8993129436857998,-0.294355571269989,0.5424502706155181,-0.7719124271534383,-0.643229709006846,-0.24407931556925178,-0.013341076206415892,-0.416722877882421,-0.15906458254903555,-0.12579637579619884,-0.4223096128553152,-0.29733168985694647,-0.01914143469184637,-0.35861397441476583,-0.7903166529722512,-0.7533452920615673,0.8205016362480819,0.558781829662621,0.0365847279317677,-0.3176475204527378,-0.9207079387269914,-0.28633527643978596,-0.6108048078604043,0.7002136991359293,0.871731273829937,0.9697039066813886,0.7405234319157898,-0.16568625764921308,0.38909651432186365,0.8829090408980846,-0.7291276422329247,-0.36232992727309465,-0.5320664877071977,0.2312314361333847,-0.9816719307564199,0.8087138324044645,-0.017031450755894184,0.8484838958829641,0.8699387176893651,0.9198504225350916,0.987012695055455,-0.7068845005705953,0.4496131017804146,0.8629913781769574,0.4493712242692709,0.3030924145132303,0.9331740597262979,-0.960018471814692,-0.8486514165997505,0.07628054870292544,0.3701081732288003,-0.45008356403559446,0.0487083257175982,0.15719693340361118,-0.8407557518221438,-0.5240348759107292,-0.7661255984567106,-0.8698734012432396,-0.9716779589653015,-0.09984746715053916,0.3868150860071182,0.9522827034816146,0.01341503206640482,-0.26580144884064794,0.7912888722494245,-0.7175942547619343,0.21132621355354786,0.3470550221391022,0.7674683299846947,-0.7779040029272437,0.5971769136376679,0.892878002487123,-0.1001695329323411,0.7519160020165145,0.08680939767509699,-0.3906204425729811,0.7217730586417019,-0.8374535162001848,0.10885043116286397,-0.6738874646835029,-0.22251070197671652,-0.1220935839228332,0.8477260516956449,0.5923464186489582,-0.8908310397528112,-0.19018673244863749,0.632172288838774,0.07882118690758944,-0.4619532199576497,-0.5801246431656182,-0.5139750582166016,0.0963242081925273,-0.6057191649451852,-0.7174050980247557,0.26264105504378676,-0.3952370071783662,-0.19229339761659503,-0.9936658754013479,-0.04476996045559645,-0.7060356256552041,-0.9156798771582544,0.20275080110877752,0.24110189452767372,0.5749769536778331,0.8135416428558528,-0.2219909792765975,0.6879967781715095,-0.17394821532070637,-0.18004981148988008,-0.09185966942459345,0.3126620249822736,-0.0632230844348669,-0.627531255595386,0.2060839021578431,-0.643187643494457,-0.6642445209436119,-0.22998624900355935,0.6308629680424929,0.6901148417964578,-0.7853221464902163,-0.9796397075988352,-0.4198837443254888,0.9939966010861099,0.8068697778508067,0.7459464566782117,-0.5833594393916428,0.12868694541975856,-0.34350102534517646,-0.8682631393894553,0.8148339688777924,0.10621100710704923,0.9261862472631037,0.07993737747892737,-0.586378900334239,0.5060875797644258,0.6108605423942208,0.3108654785901308,-0.9878738918341696,-0.7063604835420847,0.24444679589942098,0.05288188764825463,-0.11064056912437081,0.29244612343609333,-0.4906734353862703,0.956577904522419,0.75073101837188,0.5679388144053519,0.7505898741073906,0.3017953117378056,0.37638889206573367,-0.4402862396091223,0.9413848426192999,-0.9987482409924269,-0.060629310086369514,-0.6987864314578474,0.8847864344716072,-0.6303859204053879,-0.15605759341269732,-0.5738946371711791,-0.44833998335525393,-0.5106953643262386,-0.7398499827831984,-0.6409140340983868,0.46332308929413557,0.754304563626647,-0.28635223116725683,0.19258907763287425,0.37543168431147933,0.10682352026924491,-0.37599098356440663,0.9919522618874907,0.012085965368896723,-0.29403036925941706,0.8438176577910781,0.7732170131057501,-0.8551059383898973,-0.42416639206930995,0.22838551038876176,-0.9470925945788622,-0.1844942164607346,-0.7790969712659717,0.6122362492606044,0.7874388080090284,0.9126904024742544,-0.29575223848223686,0.38166385889053345,-0.004396135453134775,-0.5513066360726953,-0.9230673941783607,0.8210784369148314,0.11434305086731911,0.8859879039227962,0.8603805555030704,-0.9781066975556314,-0.711837150156498,-0.47238139994442463,-0.08674846589565277,0.25840953178703785,-0.9880615519359708,-0.8511448232457042,-0.011732043232768774,-0.4406329160556197,-0.18464328441768885,0.4786986797116697,-0.07017829548567533,0.8620636481791735,-0.5368278441019356,0.5786523618735373,-0.5966204172000289,-0.5448548821732402,-0.7894657081924379,0.09218391636386514,0.5309469331987202,-0.7046957877464592,-0.9178680758923292,0.378552183508873,0.831539221573621,0.7926671863533556],"y":[0.265413430519402,0.5688353031873703,0.3836319609545171,-0.7737419614568353,0.695105945225805,0.9700637604109943,-0.1489310171455145,0.6963683422654867,-0.5187996602617204,-0.12252792809158564,0.39150814106687903,-0.353225567843765,0.40238084038719535,-0.14492878690361977,-0.4602385377511382,0.012594146654009819,0.7254562103189528,-0.4949478432536125,0.35603273333981633,0.550867251586169,-0.25685263937339187,-0.5406021284870803,0.0741524794138968,-0.18960495153442025,0.8838811130262911,0.36448381282389164,-0.9101733970455825,-0.42015466652810574,-0.9689979990944266,0.7561771865002811,-0.566593112424016,-0.9321475839242339,0.006477752234786749,-0.18382275383919477,-0.8861050279811025,0.37700021266937256,-0.765817113686353,0.062070480082184076,-0.194518624804914,-0.6071137231774628,-0.06311126239597797,0.04696409031748772,0.35135924257338047,-0.9213984948582947,-0.020936668384820223,0.1056643039919436,-0.5898963413201272,0.43278890289366245,-0.7193762501701713,-0.7638043439947069,0.8444898319430649,0.45255896681919694,-0.8002009149640799,-0.7384439604356885,-0.06587590789422393,-0.8011018522083759,0.5045250770635903,-0.8119972026906908,-0.7322471346706152,0.2906981697306037,0.0115906554274261,-0.030276219360530376,-0.8486069943755865,0.49047723365947604,-0.35351537447422743,-0.14203548384830356,-0.885618750937283,0.57570073986426,-0.06257581850513816,0.9319059555418789,-0.5527267074212432,-0.3723676153458655,0.8411750514060259,0.582861905451864,-0.12281840248033404,0.13206177111715078,0.16344395466148853,0.8740696720778942,-0.9581364733166993,-0.29325809981673956,0.4512596190907061,-0.47651547845453024,-0.39202162623405457,-0.3611815618351102,0.10847273794934154,-0.05366508616134524,0.7320798360742629,0.31183603405952454,-0.6652481276541948,-0.08878379035741091,0.5411649760790169,0.6983463261276484,-0.8854251359589398,-0.7149331751279533,-0.8730033710598946,-0.012470545247197151,0.4212487884797156,-0.6089755045250058,-0.904876307118684,0.2672466873191297,-0.3219947670586407,-0.4873115113005042,-0.15207169204950333,0.32303214352577925,-0.21514096530154347,-0.8380199102684855,-0.9271378060802817,0.9495810931548476,-0.07502651959657669,0.558747295755893,0.4385794694535434,-0.5142782432958484,-0.3775504515506327,-0.603336613625288,-0.4036881709471345,-0.8848225343972445,0.6295939334668219,0.7252260749228299,0.026042276062071323,-0.5781179768964648,0.26703920727595687,-0.8588371751829982,0.3445669780485332,0.5234917541965842,-0.19260240998119116,-0.8576298821717501,-0.07974705891683698,-0.977720286231488,0.8120852252468467,-0.6001442344859242,-0.37928793439641595,0.8752424959093332,0.4879195732064545,-0.43522450467571616,-0.7871193406172097,0.9130579703487456,-0.23208746127784252,-0.774646176956594,-0.20130743319168687,0.8583762403577566,-0.5499234269373119,0.9861129326745868,0.40268289763480425,0.2853517890907824,0.0019927541725337505,-0.03329597879201174,-0.2347569945268333,0.1734643173404038,-0.6902064997702837,-0.31021659076213837,-0.9069483294151723,0.9103124970570207,-0.8516724458895624,0.5340929869562387,-0.00475586811080575,0.6564857116900384,-0.5915117235854268,-0.33468397380784154,-0.6554146697744727,-0.9054806465283036,0.9033955209888518,-0.5976703227497637,0.34535127505660057,0.23194071277976036,-0.9299858454614878,0.8997511891648173,-0.5131482016295195,-0.2759470916353166,-0.09383236616849899,-0.5462516970001161,-0.25923652155324817,0.17756146471947432,0.930051782168448,0.0633751330897212,-0.5988787338137627,-0.4690094259567559,-0.927879071328789,-0.10380853107199073,-0.14985758857801557,0.07778208889067173,-0.9782761563546956,0.40013762982562184,-0.3019922939129174,-0.581138648558408,0.07232099864631891,0.500106087885797,-0.3116647219285369,-0.7630362547934055,-0.5825863890349865,0.45144030125811696,0.19494485715404153,-0.4645192911848426,0.0553484670817852,-0.724693801254034,-0.9134559910744429,-0.5701415329240263,0.47746949596330523,0.280612351372838,0.9693771097809076,-0.5964510939083993,-0.5026603704318404,0.44618220580741763,-0.5760696525685489,0.7574570174328983,-0.7191418614238501,0.3305925405584276,0.4656859068199992,-0.39793283119797707,-0.10170347522944212,0.9398951553739607,-0.8301750002428889,0.5123252491466701,0.6285375589504838,-0.8691827105358243,-0.6124604931101203,0.44716020207852125,-0.867294954136014,-0.3366463063284755,-0.26731328666210175,0.5404597911983728,0.5420794212259352,-0.740875918418169,-0.36892736749723554,0.406310111284256,-0.350932692643255,0.6483201845549047,0.8472762084566057,0.38481532828882337,-0.7961055869236588,0.961749610491097,0.1271269666031003,0.9290664186701179,0.8342568348161876,0.11752378148958087,0.9760830928571522,0.8520419024862349,0.7616110229864717,0.04364693770185113,0.035446961876004934,0.7177492384798825,-0.9690433903597295,0.18908273242413998,-0.9728091945871711,-0.19545414485037327,-0.8351366794668138,0.8388027660548687,-0.31134022353217006,0.1576317003928125,0.1720620165579021,-0.23964798776432872,-0.48651223070919514,-0.48087021615356207,0.3954916358925402,0.7026137835346162,0.4025165089406073,-0.33802636759355664,-0.38500872952863574,0.6916311592794955,0.9875267697498202,0.28338605258613825,0.005958958528935909,0.24421060970053077,0.9114674921147525,0.08688516682013869,-0.9684970467351377,-0.5308394921012223,0.4777154899202287,0.0271722711622715,0.36685166833922267,0.8402405572123826,0.6811865312047303,0.35731364833191037,-0.8272368405014277,0.22837752010673285,-0.3791854027658701,0.003171750344336033,-0.4893383369781077,0.3990785558708012,0.8894141390919685,-0.6048730062320828,0.513111190404743,0.3033176134340465,0.2983741816133261,-0.5977171412669122,-0.8004726809449494,0.01147224334999919,-0.5467087058350444,0.17300088983029127,-0.6436632280237973,-0.49767889035865664,0.07492176908999681,-0.2833906370215118,-0.1275723511353135,0.26017288211733103,-0.4007469294592738,-0.6755489464849234,-0.4031249303370714,0.7286625755950809,-0.4581240816041827,-0.20531723089516163,0.7454572292044759,0.4970634113997221,0.10328040597960353,0.6306272218935192,-0.8961241119541228,-0.6067627356387675,-0.5771346976980567,0.5711977039463818,0.6446999525651336,0.23326032422482967,0.13415256096050143,-0.6518365400843322,0.5246249488554895,-0.4773637456819415,0.816481227055192,-0.3576896581798792,-0.1022316231392324,-0.6974948961287737,0.7704366873949766,-0.28238833928480744,0.8981825741939247,0.443236343562603,-0.5475624008104205,0.238300871104002,-0.7742789150215685,-0.7680952595546842,-0.9415605557151139,-0.5180822536349297,-0.6090398468077183,0.26649505691602826,-0.5725416038185358,0.4030157155357301,0.17906863382086158,-0.7441183514893055,-0.8989489166997373,-0.9180314000695944,-0.6945587755180895,-0.4760816344060004,0.5429389597848058,-0.998596178367734,0.8900308972224593,-0.5623052194714546,-0.27555465092882514,-0.5235388372093439,0.7915505887940526,0.46998406015336514,0.683783813379705,0.2854523598216474,-0.3123285458423197,0.7694439510814846,-0.7502550869248807,-0.763731368817389,0.20474656904116273,0.7818062300793827,0.7568335174582899,-0.3272393811494112,-0.24403736600652337,-0.5159930661320686,0.6283090244978666,-0.2148403669707477,0.9167297845706344,0.3198772151954472,-0.930247500538826,0.7489457251504064,-0.8664480824954808,0.3897021790035069,0.25848830258473754,-0.12292750086635351,0.6212550029158592,0.8529070112854242,-0.3838304067030549,-0.38488010922446847,0.061467275489121675,-0.7390819629654288,-0.5452491575852036,-0.03166338847950101,-0.4291928121820092,0.8288097032345831,0.8623216589912772,-0.626212234608829,0.20007428713142872,-0.3760011284612119,0.13696992071345448,0.5298070549033582,0.4723902032710612,-0.3306103772483766,0.6349514564499259,0.8496566750109196,0.7156944265589118,0.805720929056406,0.02985875029116869,-0.8977693226188421,0.021683895029127598,-0.7323751184158027,-0.9111910276114941,0.3231827821582556,-0.1376001536846161,-0.44625699054449797,-0.24148755799978971,-0.43117348570376635,-0.9743791678920388,0.7517621242441237,0.4908663183450699,0.9761912696994841,0.7390605858527124,-0.9786775768734515,-0.32515766844153404,0.486815232783556,-0.851710275746882,0.4637305368669331,0.7404821328818798,-0.5059434548020363,-0.43809429462999105,0.7803976382128894,-0.02784292632713914,-0.42935352306813,0.4254148993641138,-0.4857921269722283,0.011785917449742556,0.7684607789851725,0.9194903085008264,0.023525644559413195,0.4985659825615585,-0.9738050210289657,0.6414380013011396,-0.8293631165288389,0.6639814218506217,-0.21905685914680362,0.8025452778674662,-0.6118086739443243,0.6367171327583492,0.025270001497119665,-0.262677239254117,-0.033652173820883036,-0.5332328048534691,0.7024076809175313,0.28257720172405243,0.4710816042497754,-0.9708788823336363,0.012405106332153082,-0.43018473451957107,-0.7593943648971617,-0.6652429290115833,-0.09333988931030035,0.186718022916466,0.3879315205849707,0.5617106882855296,0.18857647385448217,0.719283445738256,0.4675948335789144,-0.28076650528237224,-0.06551239965483546,0.4042865829542279,-0.21056824503466487,0.8852274967357516,-0.2757063522003591,0.9761926839128137,0.35945415310561657,0.6262007644400001,-0.6372611555270851,0.25246101012453437,0.9730626470409334,0.710293052252382,-0.46315860096365213,-0.8166052671149373,0.3895404622890055,0.7242928617633879,-0.955145996529609,-0.09101847372949123,-0.8683325587771833,-0.7777054361067712,-0.2527359863743186,-0.3453111434355378,-0.6008829977363348,-0.013895582407712936,0.7979380744509399,-0.05219005839899182,0.45758245326578617,-0.023049102630466223,-0.5826249206438661,-0.570735645480454,-0.8520977888256311,-0.8333472246304154,0.44139690324664116,0.14045148342847824,-0.3218675088137388,-0.7069634329527617,0.7099201516248286,-0.023103261832147837,0.185836642049253,-0.900225383695215,-0.825981664005667,0.14923221850767732,-0.9108297191560268,0.48229786520823836,0.9827068019658327,0.6339192097075284,-0.10330227017402649,-0.035202321130782366,-0.16689799912273884,-0.4446982382796705,0.7414767229929566,-0.13565159775316715,0.08069438068196177,-0.8322897991165519,-0.47972728591412306,-0.05420471914112568,0.1483532809652388,-0.6336833937093616,-0.47760179825127125,-0.6080955360084772,-0.7326949904672801,0.4304919522255659,0.11782820429652929,0.07440250599756837,-0.7759931120090187,-0.7106950338929892,-0.6903399163857102,0.9944195919670165,0.08316170331090689,0.4014947460964322,-0.3915733564645052,-0.3878464251756668,-0.8225433137267828,0.9144515246152878,0.44865159783512354,0.3420144678093493,0.5425517330877483,-0.4330359837040305,0.15234242379665375,0.741916349157691,-0.06526355864480138,-0.1138214529491961,-0.9085955144837499,-0.9982017329894006,0.6065632300451398,0.25804845429956913,0.7495753485709429,-0.07929732324555516,-0.155721387360245,-0.8612753548659384,-0.193410390522331,0.8486076244153082,0.821195992641151,-0.7035731677897274,0.5271856980398297,-0.7617669221945107,-0.133773532230407,0.958885062020272,0.23127967258915305,-0.7781529743224382,-0.5570344389416277,-0.5744961895979941,0.8480744659900665,0.0920991562306881,-0.9332689428701997,-0.2627316084690392,-0.9288336243480444,-0.8469037981703877,0.28596931835636497,0.5776393837295473,-0.8898341660387814,-0.34684705547988415,-0.5855662683025002,-0.052973462268710136,-0.7297498718835413,-0.41080610174685717,0.7511077793315053,0.6503665903583169,0.7273388570174575,-0.7116254949942231,0.8754103220999241,-0.44924770342186093,-0.6575163477100432,-0.949405150488019,-0.017962639685720205,0.47964188922196627,-0.38500015530735254,-0.15597539441660047,0.07147636963054538,-0.11278388369828463,-0.4598536449484527,0.46223230892792344,0.4542203121818602,-0.1528651062399149,-0.5879581929184496,0.38795347372069955,-0.873073766939342,-0.7281297734007239,-0.5990043384954333,0.9551109955646098,0.14703437918797135,0.9092869167216122,-0.07291223108768463,0.14149165153503418,-0.13431941159069538,0.3230818659067154,-0.604651355650276,0.8895702897571027,-0.9001698577776551,0.993094936478883,-0.9524481669068336,0.8225902412086725,-0.9370972770266235,0.6105985757894814,0.6518709580413997,0.15222745249047875,-0.4003010233864188,0.8117557358928025,-0.6189777236431837,-0.8798007853329182,-0.6027169958688319,0.8232147418893874,-0.85145756136626,0.7178851449862123,-0.3187674218788743,-0.38010027492418885,0.9730394906364381,-0.6782340579666197,0.27883729338645935,-0.8683367036283016,-0.20982697745785117,-0.09904652182012796,0.553978065494448,-0.15509867342188954,-0.25661429576575756,0.7533155460841954,-0.9071643482893705,0.9389878460206091,-0.7148188864812255,-0.8770989812910557,0.5651981956325471,0.597648304887116,-0.6262987479567528,0.4171878029592335,0.8034891998395324,0.3422461003065109,-0.3526735473424196,-0.5170653006061912,0.9212202709168196,-0.23673446709290147,-0.6359895141795278,-0.11074459180235863,0.4151518503203988,-0.025994365569204092,0.8192249974235892,0.10442352946847677,0.11164442962035537,0.8599425167776644,-0.2781083919107914,-0.9295673887245357,-0.47080129431560636,-0.20665066689252853,-0.21812931634485722,0.6482670516707003,-0.2635786281898618,0.6546308039687574,-0.8676216644234955,0.6578997834585607,0.7312754727900028,-0.8652821532450616,-0.08453948609530926,-0.7680483283475041,-0.6977392425760627,-0.3265335108153522,0.6130963736213744,0.4149793963879347,-0.4643043386749923,0.7575038690119982,-0.05297071998938918,-0.6237511900253594,-0.606527523137629,0.04562078230082989,0.5368139133788645,-0.06490115448832512,0.39029881451278925,-0.598030642606318,-0.0029261750169098377,0.2438308158889413,-0.8530046395026147,-0.7337994379922748,-0.4327502311207354,-0.041863578371703625,-0.2775333011522889,0.7224835865199566,-0.5844015367329121,0.44873566925525665,-0.8126205373555422,-0.6438758322037756,0.9557735393755138,0.11504127038642764,0.6414942312985659,0.7694403985515237,-0.4597992436029017,0.6658071372658014,-0.8252343516796827,-0.3886396633461118,-0.2897724802605808,0.15694038197398186,0.40798497712239623,-0.11216569785028696,-0.0037148422561585903,0.019413338508456945,0.6580781633965671,-0.8816415034234524,-0.9036645623855293,-0.2602458354085684,0.48731110664084554,0.7950193658471107,0.6079031834378839,-0.27596355928108096,-0.6926883063279092,-0.492444870993495,0.8137727533467114,-0.40656597167253494,0.8137614340521395,-0.9311239058151841,0.7031987579539418,0.6514413594268262,0.017850469332188368,-0.23247580835595727,0.8972545303404331,-0.8328277170658112,-0.026591754518449306,-0.8051949753426015,-0.11405235575512052,-0.8952491483651102,-0.42246797773987055,-0.5850596693344414,0.997049767524004,0.6831100773997605,-0.4370889072306454,-0.34753890009596944,0.8296071924269199,-0.8644975614733994,0.8804734759032726,-0.3619581018574536,-0.03199149947613478,0.9317280109971762,0.35870920214802027,-0.11350388219580054,0.7855314975604415,-0.3142867791466415,-0.7289010686799884,-0.31094197928905487,0.15458251535892487,-0.5830338886007667,0.7598827094770968,0.08370089810341597,0.5438298927620053,0.09897568542510271,-0.9953292072750628,0.9253237340599298,-0.8714860789477825,-0.6921243206597865,-0.1861336282454431,0.9399946378543973,-0.20642209285870194,-0.8036486217752099,-0.6250212304294109,0.2823560629040003,0.8760349280200899,-0.2535784305073321,-0.286870205309242,0.4777233279310167,0.7906196648254991,0.5158804100938141,-0.8038957887329161,0.8787521179765463,0.48583397502079606,0.5756704085506499,-0.25539059937000275,0.9241219046525657,-0.9928625049069524,-0.26218736078590155,0.4617102863267064,-0.08551987307146192,0.6765367179177701,0.029710134491324425,-0.5116018173284829,0.35941822174936533,0.27717072516679764,0.052567335311323404,0.8535709152929485,0.7743305056355894,-0.6930371858179569,-0.7576774936169386,-0.33916650898754597,0.08902524039149284,0.5965586267411709,0.17318810475990176,0.7863257583230734,-0.16159779205918312,0.9786266535520554,0.1292885853908956,-0.41504170279949903,0.9737108293920755,0.10578550538048148,-0.08070889487862587,0.24986061686649919,0.6594710513018072,-0.1924304710701108,-0.6763909622095525,0.9262943440116942,-0.5870785010047257,-0.6111240079626441,0.022107074968516827,0.09578593773767352,0.33453343994915485,0.341985534876585,-0.3590521775186062,0.5404227986000478,0.35748836724087596,0.07777275936678052,0.6721208426170051,-0.11637228820472956,-0.34917371813207865,-0.6035767556168139,0.022420312277972698,0.5102444151416421,-0.7978266677819192,0.8411843492649496,0.30231193639338017,0.17216702876612544,0.12352538201957941,0.4285756931640208,0.7092809360474348,0.856019084341824,0.1684389621950686,-0.8101499006152153,-0.9478627480566502,0.30193991959095,0.7734088385477662,0.2756509240716696,-0.052167519461363554,-0.32121066888794303,0.08094584429636598,0.1784925819374621,0.993594846688211,0.46812652377411723,0.3764569526538253,-0.8974250829778612,0.8680694908834994,-0.7299183788709342,0.11009303340688348,-0.06214195862412453,-0.2463781163096428,0.7326252744533122,0.472933491691947,-0.2962416713126004,0.10471759084612131,0.7698099995031953,-0.8668951555155218,0.692275614477694,-0.6046479516662657,0.6136328210122883,-0.9634353690780699,-0.6637866906821728,-0.5553424651734531,0.5966991116292775,-0.7544560232199728,0.7820583987049758,-0.024394826963543892,-0.6397646446712315,0.1578435804694891,-0.083956235088408,-0.9741701688617468,-0.8663621312007308,-0.356787477619946,-0.7101167850196362,-0.7139377393759787,-0.9399885078892112,0.5889019099995494,0.2373990248888731,0.0030301171354949474,-0.7961867293342948,-0.09395737806335092,0.1862379820086062,0.7178071346133947,0.9356771646998823,-0.8537345891818404,-0.7338848044164479,0.8729316820390522,-0.2850806931965053,-0.40549288550391793,0.2803386840969324,-0.16057276586070657,0.6626392556354403,-0.8260075710713863,0.03560321079567075,0.6737073590047657,0.05527953617274761,0.9749270058237016,-0.7617777953855693,0.8044391903094947,0.5980902682058513,-0.6169516392983496,-0.008346301969140768,-0.8331375820562243,0.04636197164654732,0.17674868879839778,0.44087418960407376,-0.8439618698321283,-0.6410975307226181,0.3427305147051811,-0.3632679898291826,-0.5987089131958783,0.546308970078826,0.43100424110889435,-0.6687530591152608,-0.990327721927315,-0.8875269717536867,0.23128695553168654,0.7864322923123837,0.41643422562628984,0.5648172642104328,0.6295348457060754,0.6295852474868298,0.623716939240694,0.5999823273159564,-0.9162588859908283,-0.93285255972296,0.3172939349897206,-0.27576049510389566,-0.4921591654419899,0.7981589152477682,-0.45849134121090174,-0.5900127752684057,-0.18267827527597547,0.554563557729125,0.6170687936246395,0.7735488708131015,0.5514831263571978,-0.251133625395596,-0.8215850102715194,-0.7490478507243097,-0.21137415617704391,0.7075030743144453,-0.22424450609833002,0.6460577351972461,-0.6766105126589537,-0.9129938301630318,0.8682261588983238,0.5584955741651356,-0.5362690351903439,-0.23668974498286843,-0.5245227515697479,-0.128734958358109,0.8037935197353363,0.0967505113221705,-0.43429002817720175,-0.34259538259357214,-0.758324415422976,0.14741495624184608,-0.8072947426699102,-0.6229168702848256,0.6973685063421726,-0.3670473052188754,0.2747356533072889,0.666740789078176,0.654317032545805,0.19961506640538573,-0.6044273702427745,-0.8654443603008986,-0.5818711225874722,0.8985926401801407,0.7398376590572298,0.3152000424452126,-0.6404790305532515,-0.23391927871853113,-0.544060118496418,-0.989651087205857,0.09725832007825375,0.08261498576030135,0.8291657352820039,0.41569090308621526,-0.9707703054882586,-0.2646566778421402,-0.07068956457078457,-0.9776511495001614,0.07148782070726156,-0.388376054354012,-0.6657008631154895,-0.3649587729014456,-0.8595136967487633,0.4113919730298221,0.7950088656507432,-0.8809640314429998,-0.44662749813869596,0.2769528338685632,0.2499201255850494,0.9304524939507246,-0.0015245149843394756,-0.20776811195537448,0.7863592058420181,0.6335735959000885,0.8721806672401726,0.27673030039295554,-0.5017579076811671,-0.6524658151902258,-0.5501435515470803,-0.10002121282741427,0.5674959509633482,-0.6686540059745312,0.4670797726139426,-0.7324206721968949,0.7948972885496914,0.10560577176511288,-0.4560444881208241,-0.004295373801141977,0.430417665746063,-0.021919410675764084,-0.3486518026329577,0.27866352489218116,0.4487743857316673,0.24179288605228066,0.9045518422499299,0.17988858139142394,-0.2963244765996933,-0.977515890263021,-0.6610357617028058,-0.7704531811177731,0.7281305990181863,-0.6440047221258283,0.3501246594823897,-0.20826610131189227,-0.006981995888054371,-0.9400204359553754,-0.8153705233708024,-0.45005508698523045,-0.6113227107562125,0.44304077001288533,-0.9393786303699017,-0.8724405751563609,-0.9502439508214593,-0.663779073394835,-0.7132442556321621,0.6980357868596911,-0.5305134826339781,0.9320403286255896,-0.4367762105539441,0.3830916862934828,0.08637859206646681,-0.2730387058109045,0.257041547447443,0.2692113583907485,0.9399962672032416,-0.3413937445729971,0.9910076521337032,0.630971338134259,0.26391857536509633,0.3885550950653851,-0.8460821486078203,0.18642966356128454,0.8540235948748887,0.49223240837454796,-0.4975988529622555,-0.56840137578547,-0.32239014422520995,0.8333756271749735,0.580726898740977,-0.7009255094453692,0.003920909948647022,0.6617008345201612,0.7434751251712441,-0.4049862972460687,0.5405764165334404,0.19557734671980143,0.350790795404464,-0.23686855239793658,0.3842764697037637,0.5435417522676289,0.969322286080569,0.5464987372979522,0.8568751057609916,0.1973009668290615,-0.06744688609614968,0.48212356213480234,-0.09003128204494715,-0.8382309316657484,-0.49234073981642723,-0.7702258573845029,-0.8682887880131602,-0.5348187102936208,0.06946151284500957,-0.08030048198997974,0.49936064006760716,-0.6706944592297077,0.12556375842541456,0.6511498591862619,-0.7233892120420933,-0.7548284572549164,0.20033917808905244,-0.5265379305928946,-0.4125230615027249,0.2296522124670446,0.23060917621478438,-0.8848469089716673,0.3291151183657348,0.8907262105494738,0.1558145941235125,0.9412738746032119,0.38783896528184414,0.6847279011271894,0.858377680182457,0.2645619767718017,-0.07081872364506125,0.872280259616673,0.17742410255596042,-0.7268566843122244,-0.9437245149165392,-0.579328051302582,-0.7916999198496342,-0.8959842077456415,0.6784636080265045,-0.7575032841414213,0.625788061413914,-0.7555327634327114,-0.31015422521159053,0.056771541479974985,-0.18930770084261894,0.7861027061007917,0.7792879682965577,-0.027730201371014118,-0.5047894730232656,-0.02707308204844594,0.9150274437852204,0.18237836798653007,-0.5988676347769797,-0.13128847861662507,0.6587722231633961,0.9964537802152336,-0.7434538961388171,0.20460410928353667,0.4369210749864578,0.16416758205741644,0.1352599672973156,-0.9824564708396792,-0.432419101241976,-0.7300659017637372,-0.8074871054850519,0.5469982335343957,-0.10748941265046597,0.5812770877964795,0.08669676911085844,-0.21728283679112792,-0.6012355755083263,0.41865740856155753,-0.17258419003337622,-0.2277417560108006,0.11958085047081113,0.7500761351548135,-0.10031152982264757,-0.3306633438915014,-0.8752567074261606,-0.47811050433665514,0.878804296720773,-0.204744768794626,-0.873731161467731,0.6134640625678003,-0.7755275000818074,-0.4746044143103063,0.47172957472503185,0.9724173797294497,0.88074084604159,0.6542607010342181,0.5237892018631101,0.5964797167107463,0.2637708676047623,-0.7002838612534106,0.4367453665472567,-0.2923030252568424,0.567126324865967,-0.7903692713007331,0.4455166826955974,-0.3595798732712865,-0.25478728394955397,-0.43368283100426197,0.6247527240775526,-0.1360104065388441,0.819807528052479,-0.771217760629952,0.5649604997597635,-0.0006775143556296825,-0.17371140839532018,0.48753475584089756,0.5340013671666384,-0.2982869641855359,0.43975183134898543,0.9608965362422168,-0.09723590780049562,-0.9074335466139019,-0.9819020912982523,0.77961988421157,0.9249362591654062,-0.16834795381873846,0.47620447538793087,0.3377300132997334,-0.9740286716260016,0.6390846166759729,0.47958039911463857,-0.07308508781716228,-0.6156819160096347,-0.4428198393434286,0.35381829366087914,-0.06582952896133065,-0.5012595308944583,-0.21869395626708865,0.7490933882072568,-0.8213498764671385,0.8184000174514949,-0.796746676787734,-0.16418695449829102,0.3009036495350301,0.9100132286548615,-0.8368613580241799,0.6673030718229711,0.046187400352209806,0.5839869938790798,-0.3469716552644968,-0.8271357547491789,0.3316515409387648,0.8096821056678891,-0.4930449528619647,-0.0533946854993701,-0.6207064632326365,-0.9073232123628259,-0.9730298961512744,0.4393495195545256,0.5886131064034998,0.9041822864674032,-0.4978312263265252,-0.233442316763103,0.6262562521733344,-0.6080887350253761,0.0014924141578376293,-0.0763422604650259,-0.9761958117596805,0.712425896897912,-0.4772822638042271,-0.00991931464523077,-0.12806276744231582,-0.8087847530841827,0.7601992506533861,-0.5395905924960971,-0.9050567541271448,0.21097096800804138,-0.9950634078122675,0.8033230169676244,0.009685261640697718,0.2138220490887761,0.5330813694745302,-0.7033620616421103,-0.7493647928349674,0.3303301981650293,0.9992039888165891,-0.3944644946604967,0.44248427683487535,0.1060065240599215,-0.07172223785892129,0.6442819144576788,-0.9627466374076903,0.24953562673181295,-0.2579536377452314,-0.9680825504474342,0.07826732890680432,-0.22642209380865097,0.5817569447681308,-0.6923796245828271,-0.2757150041870773,0.023707600310444832,-0.16983278933912516,-0.137716231867671,0.4572055470198393,0.8290939163416624,-0.6335139209404588,-0.6710202610120177,-0.36956912325695157,0.8781777182593942,-0.7413138803094625,-0.9066391703672707,0.5908527709543705,0.5291720870882273,-0.9236677722074091,-0.1642801994457841,-0.9894662778824568,0.8145336285233498,0.6765068373642862,-0.39726543985307217,0.3988774409517646,-0.02867315337061882,-0.6786998501047492,0.32519622426480055,-0.3877283688634634,-0.6372859473340213,0.9228308922611177,0.7580747734755278,-0.0007439665496349335,0.85442013759166,0.7034032163210213,-0.45382864167913795,-0.31655561132356524,0.49513781862333417,-0.8990010102279484,-0.5380986458621919,-0.8764287126250565,-0.3238105378113687,0.32588939741253853,0.7847947771660984,0.6472068163566291,-0.8879958870820701,-0.059289065189659595,0.48937741899862885,-0.36980335181578994,0.31926292181015015,-0.8554339809343219,0.5118199973367155,-0.21045356523245573,-0.45561735332012177,0.7103282967582345,0.07955884234979749,0.097097038757056,-0.7249502437189221,-0.11375071993097663,-0.41762858256697655,-0.15734288468956947,0.3677756227552891,-0.15659066941589117,0.13916508574038744,0.03898099949583411,0.28926818491891026,-0.4215842429548502,0.7596180373802781,-0.31045497115701437,0.9517809893004596,0.8555855629965663,0.8826611544936895,0.8089100904762745,0.9527283804491162,-0.7258855942636728,-0.7433099220506847,0.7870693001896143,0.9498132136650383,-0.21595611050724983,-0.9652913850732148,0.214003661647439,-0.11592688225209713,0.7297565741464496,0.5802151914685965,0.10574791487306356,-0.9299037749879062,-0.2032968532294035,0.4998047696426511,-0.686860534362495,-0.32090931944549084,-0.024527288507670164,0.9349920116364956,0.94077856419608,0.3838379792869091,0.04531163349747658,-0.5251012430526316,-0.3923767344094813,-0.992892939131707,0.1472888421267271,-0.7814582614228129,-0.34747751522809267,0.4838573248125613,-0.5776516539044678,0.8974941256456077,-0.7222694987431169,0.22067844681441784,-0.39170167967677116,0.750468100886792,0.47098722914233804,0.7564554107375443,-0.3247034172527492,0.06648326385766268,-0.5626362510956824,0.6550512737594545,-0.5922827529720962,0.9579449109733105,-0.9706028760410845,-0.6291651343926787,0.9167163129895926,0.9530246071517467,0.7065867600031197,-0.24212015885859728,0.8048385041765869,0.9631118657998741,0.43556487979367375,-0.5650488063693047,-0.22455164603888988,-0.7439998053014278,0.41830682707950473,-0.3526217411272228,-0.002923079300671816,-0.36150919925421476,0.5543308733031154,0.9388746260665357,0.47695926297456026,0.5376264369115233,0.13454731134697795,-0.6795220351777971,0.7852650573477149,-0.8943877387791872,0.7230835729278624,-0.9661622266285121,-0.20247913850471377,0.0690845362842083,-0.7457323120906949,0.1833359906449914,-0.32485605496913195,0.011470633558928967,-0.13854346657171845,-0.5273703346028924,0.6284994492307305,-0.5677148583345115,-0.33504962315782905,-0.6142920022830367,-0.654842184856534,0.42967658350244164,0.9429759862832725,0.9528081729076803,0.004136261064559221,-0.6953406170941889,-0.7866577752865851,0.6831184616312385,-0.23631159914657474,0.9485958563163877,0.6883202367462218,0.0511756120249629,-0.08208874287083745,-0.5048760352656245,0.04999970458447933,0.6784993405453861,0.265875649638474,0.9670916991308331,0.10397565038874745,-0.6012234790250659,0.7772019705735147,-0.660776718519628,0.6226312173530459,-0.8387001226656139,0.5633431058377028,-0.08667034562677145,-0.7737564560957253,-0.7310207993723452,-0.6038458775728941,0.8862175270915031,-0.8062323550693691,-0.6360408691689372,-0.8542734421789646,-0.2983040027320385,0.15162010118365288,0.9163264837116003,0.1514084143564105,-0.507717551663518,0.7854437329806387,0.3693325496278703,-0.607895964756608,-0.10490339295938611,0.6906452993862331,0.9832123252563179,-0.6363329677842557,-0.956015835981816,0.30594654846936464,-0.42645065067335963,0.37940735509619117,-0.4115555826574564,-0.2843504445627332,-0.5445383908227086,0.49994633020833135,0.7221432565711439,-0.43957425467669964,0.9114627311937511,0.05714140320196748,0.21476209349930286,0.6006628577597439,0.599613708909601,0.23962318943813443,-0.7405923437327147,-0.2183558759279549,-0.6807155143469572,-0.5038572223857045,0.6628500842489302,-0.8721521301195025,-0.7829965138807893,0.050538843497633934,0.05481682950630784,-0.23900812678039074,0.5801892466843128,-0.04146409034729004,-0.4430982465855777,-0.29422342125326395,-0.14496433828026056,-0.46097265696153045,0.6778612961061299,0.47208589455112815,0.03597142128273845,-0.041978787165135145,0.5137899098917842,-0.27276136819273233,-0.3309899168089032,0.2800691048614681,-0.10720557533204556,0.8400859395042062,-0.9175994163379073,0.6865574982948601,-0.14375717798247933,0.47911255760118365,-0.7487497110851109,0.5548792998306453,0.05941367149353027,-0.331415300257504,-0.44721041014418006,0.6082848832011223,0.515183812007308,0.061243511736392975,0.898597049061209,-0.41395862121134996,0.06599148688837886,-0.7884450652636588,-0.4122499665245414,0.5855933926068246,-0.46544275898486376,-0.9076315122656524,0.5482391263358295,0.8495024549774826,-0.7387743252329528,-0.7222122089006007,-0.9866801169700921,-0.972474287264049,-0.3133733500726521,-0.29007653845474124,0.19313903665170074,0.3018585448153317,0.15646158764138818,-0.8830208452418447,0.16910010715946555,-0.9799689967185259,0.22774872882291675,-0.08122277772054076,0.007853214163333178,0.4786993842571974,0.16729318955913186,0.4500331124290824,0.28175802854821086,0.7341743856668472,-0.3099150424823165,0.703895453363657,-0.5721276099793613,-0.8568054549396038,-0.9422233020886779,-0.7498789667151868,0.43281862512230873,-0.2493835398927331,-0.6203587264753878,-0.6361854271963239,-0.8658261927776039,0.4552120817825198,-0.5209166598506272,-0.8290061452426016,-0.6473535127006471,0.4191425838507712,0.4923087707720697,-0.8663301919586957,-0.6666740537621081,0.8149117552675307,-0.9448250434361398,-0.11659603472799063,0.375836128834635,-0.7308962936513126,-0.1393233695998788,-0.16149790724739432,0.7394802002236247,-0.9420218672603369,0.5869107767939568,-0.1850497373379767,-0.8338742190971971,0.5678160986863077,-0.4916068622842431,0.044858822133392096,0.4924669307656586,-0.37623401172459126,-0.21170335169881582,0.39581949915736914,0.8390899826772511,0.28904561791568995,-0.36570328287780285,0.3131548333913088,-0.21737974928691983,0.1109690498560667,0.48456522077322006,0.7049850076436996,-0.6848405255004764,0.2071598581969738,0.5270834807306528,0.9320278842933476,0.019416553899645805,-0.01548318611457944,-0.0022855959832668304,0.8747679083608091,-0.9162320443429053,-0.9141069683246315,0.016386625822633505,0.6328047444112599,-0.6918577868491411,-0.1884304047562182,0.2925319499336183,-0.8125064522027969,0.2605087119154632,0.9029323430731893,0.14948009653016925,0.7749799401499331,0.6849205829203129,0.5669939978979528,-0.9440406798385084,-0.5611917851492763,-0.09369410527870059,-0.31004203390330076,0.8697293028235435,-0.5057224025949836,-0.12780542904511094,-0.6153457858599722,-0.7562709772028029,-0.08098892634734511,0.4084882354363799,0.41013304702937603,-0.8460940141230822,0.5002651796676219,-0.4936382584273815,-0.6384427901357412,0.5670198877342045,-0.8503874950110912,-0.5255607841536403,0.42348432121798396,0.8464020569808781,0.25346235651522875,0.4792014779523015,-0.5422264812514186,-0.7420070176012814,-0.5399840692989528,-0.972936209756881,-0.38323588762432337,-0.2517575901001692,0.7135112006217241,0.1040255525149405,0.021220610942691565,0.49959240667521954,-0.8344674268737435,-0.419063629116863,-0.5352998320013285,0.6552674947306514,0.4163639163598418,-0.7437034770846367,0.9820331311784685,-0.7397300251759589,0.3999964389950037,-0.7332175495103002,-0.0073402924463152885,-0.2873004311695695,-0.41876100562512875,-0.13515938911587,-0.5445495354942977,0.8064608694985509,0.764935465529561,0.6066604778170586,0.9345978684723377,-0.644253405276686,0.7840569471009076,-0.5171478856354952,0.5950968149118125,-0.919540174305439,0.1904650735668838,-0.7027825377881527,0.3656115895137191,0.750616951379925,-0.36471998505294323,0.5127934780903161,0.7772582997567952,0.6709366184659302,-0.04030092712491751,-0.31868476374074817,-0.5905516627244651,-0.10812942497432232,0.024307481478899717,0.6505578481592238,0.545283704996109,0.6271228310652077,-0.1275906953960657,0.5833850186318159,0.5592005234211683,0.9356244169175625,0.33325055660679936,-0.8892744434997439,0.4602621914818883,0.29969037184491754,-0.031512340530753136,-0.058912305161356926,-0.41270026192069054,0.15800453536212444,-0.24978343956172466,0.34859818080440164,0.5088241747580469,0.23362901899963617,0.6130076735280454,0.19495850475504994,0.6310705901123583,-0.4731142302043736,0.33127827011048794,-0.9819159065373242,0.2508958913385868,-0.09674556367099285,-0.6512079136446118,0.9646395472809672,0.6802251259796321,-0.11374241951853037,0.40602724673226476,0.9816060489974916,0.6900411117821932,0.6687484192661941,-0.9836574732325971,0.7664718385785818,-0.9829462030902505,-0.6238844767212868,-0.27959322463721037,-0.5142049053683877,-0.675820229575038,-0.7940696040168405,-0.36296227388083935,-0.8368146852590144,-0.8886319873854518,-0.917343981564045,0.043879374861717224,-0.0733289304189384,-0.07199138030409813,0.49808466201648116,-0.08302409946918488,-0.0690295840613544,-0.9799262611195445,-0.13572444347664714,-0.7690371419303119,-0.14989495370537043,-0.3332856120541692,-0.7705751871690154,-0.9043551320210099,-0.8554110336117446,-0.9470838308334351,-0.946682533249259,-0.007609644904732704,-0.836392077151686,0.7776378225535154,0.5869669341482222,-0.8006462762132287,0.597049365285784,-0.24097726214677095,0.09991506906226277,-0.5068076862953603,-0.523154771886766,0.21305328188464046,-0.31658676685765386,0.5785652385093272,0.6281597367487848,0.7241889839060605,0.5648690429516137,-0.9644434158690274,-0.5432849861681461,-0.9341268916614354,-0.29669662471860647,0.21886404836550355,0.037706705275923014,0.6352065233513713,0.2005427535623312,-0.7573588923551142,0.5747817605733871,-0.37642469024285674,0.24354497902095318,-0.5560489362105727,0.11057919356971979,0.7772711352445185,-0.3777066399343312,0.2787021924741566,-0.9829553351737559,-0.34369426406919956,0.2241044300608337,-0.3796212822198868,-0.6933681257069111,-0.33736387034878135,0.7641035132110119,0.7954905442893505,0.09102613106369972,0.04874241957440972,0.009108207188546658,-0.029884633608162403,-0.23856518231332302,0.1935424217954278,0.31226828321814537,0.347277007997036,-0.7577500841580331,-0.2335462225601077,-0.5981843518093228,-0.7145378179848194,-0.2834288706071675,0.06158520234748721,-0.857137837447226,0.583596361335367,0.5923873363062739,-0.7772824210114777,0.3931549619883299,0.6610239869914949,0.09345012158155441,-0.6897614700719714,-0.5454148068092763,-0.6119756018742919,-0.8496966632083058,0.5625393372029066,-0.29814559360966086,0.22541468683630228,0.9509711377322674,-0.800106905400753,0.15498788934201002,0.3760228152386844,0.1646269946359098,-0.7697146465070546,-0.6063283891417086,-0.26014578342437744,0.6043944824486971,-0.8212077580392361,0.5225060814991593,0.8153719427064061,0.338645679410547,0.2754933307878673,0.24026735685765743,-0.09298190614208579,-0.8538317875936627,-0.24218847462907434,-0.24933090014383197,0.13599620247259736,0.7080999505706131,-0.749340504873544,0.7707998133264482,0.02919140737503767,-0.3820040887221694,-0.2600185456685722,-0.9015125338919461,0.21506790164858103,-0.9840941783040762,-0.9508770862594247,0.8876351807266474,-0.6585617689415812,0.21053161472082138,-0.022946841549128294,0.7273397692479193,-0.2020528605207801,-0.3580946852453053,0.25069623393937945,0.9876395668834448,0.515559536870569,0.4463411495089531,-0.5614124764688313,-0.6705423723906279,-0.1627623694948852,0.539352897554636,-0.9714441825635731,-0.9072223887778819,0.6980403396300972,0.9925159602425992,0.2525684842839837,-0.0266751772724092,0.4688781090080738,-0.6814507679082453,0.6544949309900403,-0.4551889691501856,0.2931070765480399,-0.35259932186454535,-0.2887277379631996,-0.35134980361908674,0.4595905765891075,0.4939752910286188,-0.382808577734977,0.9571055783890188,0.4607871170155704,0.7437310479581356,-0.8496493226848543,0.7414754116907716,-0.8932894608005881,0.9987652241252363,-0.17430252209305763,0.3508624555543065,-0.30267581110820174,0.2209739051759243,0.3992885062471032,0.07220235047861934,0.561497260350734,-0.06743073556572199,0.4032408967614174,0.046086632180958986,0.36714616883546114,0.5098326588049531,-0.39137096982449293,0.961395425722003,0.6546833012253046,-0.368144019972533,-0.853283375967294,0.6405735383741558,0.42960647540166974,0.9789131358265877,0.6977093564346433,-0.12971219653263688,-0.7540427311323583,-0.7280510510317981,0.2544569792225957,-0.9346471410244703,-0.7912528594024479,0.04285763204097748,-0.9350950438529253,0.08795877173542976,0.16662164824083447,0.771799111738801,0.27789613232016563,0.6594667695462704,-0.9361323625780642,0.31112727569416165,0.6740992567501962,-0.42842716444283724,-0.7821286073885858,0.8398882355540991,0.3869672412984073,-0.8175424393266439,-0.0570040512830019,-0.3272273992188275,-0.4906601784750819,-0.5892360140569508,0.3239243822172284,0.23834209702908993,-0.8956560688093305,0.5569562814198434,-0.8312234440818429,0.8630553530529141,0.23862183978781104,-0.3232968542724848,-0.25023904629051685,0.4168727668002248,0.1291867634281516,-0.7592032952234149,0.2235119198448956,0.6769014038145542,0.9787724800407887,-0.3170465948060155,-0.998497708234936,0.21065606083720922,0.8639883743599057,-0.6242510266602039,0.46674003545194864,0.8700279579497874,-0.5978221413679421,0.41110928170382977,-0.9176290268078446,-0.003075394779443741,0.4971687477082014,-0.8676609406247735,0.8441189420409501,-0.2200517151504755,0.015309181530028582,-0.12270702328532934,-0.9476450514048338,-0.8103949371725321,0.06973835686221719,-0.7584448829293251,-0.5813425434753299,0.6792694348841906,0.5560668241232634,0.9306953866034746,-0.05255066929385066,-0.36061445716768503,0.8231274425052106,-0.1843053512275219,0.3389794286340475,0.19581825099885464,-0.11248618271201849,0.8377203973941505,0.43801815155893564,0.37618224741891026,-0.24080531997606158,0.1968091637827456,0.596732450183481,0.061070643831044436,-0.9374812669120729,0.17039868514984846,0.7811052114702761,0.9722775025293231,0.22643703687936068,-0.8458566693589091,-0.19812733260914683,0.421943589579314,0.7573120160959661,0.34733622148633003,-0.022756215650588274,-0.8274653283879161,-0.7417724900878966,-0.1160687212832272,-0.4499253765679896,-0.6810637791641057,0.28259130381047726,0.2056287587620318,-0.46367301465943456,0.548446202185005,0.6636779294349253,0.30078726448118687,-0.662506696768105,-0.3830253202468157,0.9686096999794245,-0.23044948233291507,0.9960656738840044,-0.43217270309105515,0.8302186308428645,0.9136465126648545,0.2771691004745662,0.509880187921226,0.00660573597997427,-0.036231724079698324,-0.6295721684582531,-0.121007542591542,-0.05653835693374276,0.06872267043218017,0.8206936554051936,0.04351203562691808,-0.2268606349825859,-0.5474913818761706,0.7676096642389894,-0.9388188575394452,-0.6530644516460598,0.8385298093780875,0.07903490168973804,-0.40500010270625353,-0.38127345126122236,-0.8079240233637393,0.6530582210980356,0.849163874052465,-0.14967597369104624,0.7115125148557127,0.44966422859579325,0.11305872071534395,0.08551806816831231,-0.4679493512958288,-0.36484476551413536,0.5650386097840965,-0.5491098761558533,-0.8653500750660896,-0.09127645147964358,-0.7525360565632582,-0.7274109488353133,-0.5875779781490564,-0.995447276160121,-0.9349959418177605,0.4926046943292022,-0.7628374891355634,0.9838169803842902,0.25534079410135746,0.6028480427339673,0.4444377087056637,-0.738581093493849,0.42527790972962976,0.874012787360698,-0.8443729341961443,-0.9398035099729896,0.4824172272346914,0.3750740513205528,-0.42609894508495927,0.22839006828144193,-0.6900962679646909,-0.18816347839310765,0.24962800927460194,-0.5662840697914362,-0.7831246280111372,0.44886749843135476,0.3815381699241698,-0.10697097284719348,0.7140692067332566,-0.1428902130573988,0.20065402379259467,0.9051001621410251,-0.9274574965238571,0.031221969984471798,-0.45463747065514326,-0.23995323199778795,0.31966437632218003,-0.06413049111142755,-0.6254638177342713,-0.03217700496315956,0.7338866046629846,-0.46352292504161596,0.007217798847705126,-0.8790877042338252,-0.09279954945668578,0.971013072412461,0.9719723141752183,-0.6462041097693145,0.0793636729940772,0.9693039539270103,0.5715710981748998,-0.9934317292645574,0.9285271503031254,-0.4338237144984305,0.13596851518377662,0.7778770891018212,-0.6068585221655667,0.200645521748811,-0.008261989802122116,-0.4475680170580745,0.8867524489760399,0.19138056179508567,-0.3659619903191924,0.7989151305519044,-0.13335139211267233,0.6725544561631978,0.19502496486529708,-0.5791629822924733,0.8708966225385666,-0.16838603280484676,0.19372826721519232,-0.7304295510984957,0.5139643512666225,-0.1808923864737153,0.7713536038063467,0.960132909938693,0.7142564775422215,0.47139267437160015,0.940359340980649,0.2516577164642513,0.9263000464998186,0.5329280043952167,-0.5204416420310736,-0.17432768223807216,0.7208797759376466,0.7182485004886985,0.07090022787451744,0.9485964230261743,0.6138528706505895,-0.4778410606086254,-0.8810136853717268,-0.8437665775418282,0.4923108359798789,0.7756611639633775,0.2888219514861703,-0.3836624473333359,-0.8373990380205214,-0.9258692441508174,-0.9644766594283283,-0.04972918052226305,-0.6976568563841283,-0.12910203263163567,-0.1771778562106192,0.49859731178730726,0.45598611142486334,-0.8671527886763215,-0.32595259649679065,0.16795159224420786,-0.7098924163728952,0.7006577532738447,0.6122239278629422,0.9288428537547588,0.7542830798774958,0.3279409259557724,-0.5805371613241732,-0.6922757364809513,0.7497873599641025,0.4500789218582213,0.7556869382970035,0.6775357504375279,0.5704213846474886,0.6048517893068492,-0.4289771728217602,0.22011849796399474,0.8801989103667438,0.5948606361635029,-0.7759207277558744,0.9523089458234608,-0.2648626882582903,0.40867080399766564,0.9815632160753012,0.46335058053955436,0.7889904230833054,-0.5498574124649167,0.15801047813147306,0.1653608176857233,0.8025840064510703,-0.1580426935106516,0.11181358620524406,-0.8841251423582435,0.8337949253618717,-0.03409805707633495,0.4432760323397815,0.9047478465363383,0.9668365460820496,0.4153890023007989,-0.7981661939993501,0.4841823587194085,0.48776569217443466,-0.8513460182584822,-0.12398355407640338,0.3893285463564098,-0.33156769443303347,0.782610222697258,0.8770072851330042,-0.9235366214998066,0.5039619514718652,-0.8544870279729366,0.39899974688887596,-0.7678763242438436,-0.433460486587137,-0.8915887144394219,-0.6567129492759705,0.6529687442816794,0.22489150799810886,0.5955821508541703,0.6004051025956869,0.5273828515782952,0.04684014478698373,-0.769670482724905,0.8017587522044778,-0.2898455448448658,-0.6108699780888855,-0.4480914850719273,-0.4554474651813507,0.5050709238275886,0.9382454454898834,-0.21573165664449334,0.5222347783856094,0.6877258941531181,-0.34773991676047444,0.5924821090884507,-0.24306572508066893,0.4901990117505193,0.765701215248555,-0.29847201937809587,-0.32591160386800766,-0.49129996495321393,-0.8419228075072169,-0.41010286286473274,-0.8046545484103262,0.18316233670338988,0.24436636548489332,-0.7723964406177402,-0.5438808714970946,0.49702048674225807,0.5783560518175364,0.5330898934043944,-0.7326611648313701,0.34452336467802525,0.5460010864771903,0.9599793176166713,-0.3779624570161104,-0.6215492854826152,-0.6768603250384331,-0.6885959589853883,-0.9978374284692109,-0.13435798604041338,-0.13551616854965687,0.8220791108906269,-0.5428861398249865,0.0009102998301386833,0.1465296521782875,-0.5956328818574548,-0.07455802010372281,0.6991462921723723,0.25861577643081546,-0.9618670740164816,-0.28126108506694436,-0.5907891886308789,-0.062313562259078026,0.3284259629435837,-0.15731153776869178,0.2513518505729735,0.31988241430372,-0.3018998117186129,-0.6471135737374425,0.15013242978602648,0.5389553471468389,-0.44648201996460557,-0.6186607093550265,-0.8408206915482879,0.9605439049191773,0.20350829418748617,0.6837981999851763,0.16208275919780135,0.6541903233155608,-0.7573903645388782,-0.5024531534872949,0.4076928375288844,-0.8995895572006702,0.582332591060549,0.7336461073718965,-0.37691630423069,0.5766559606418014,-0.708496855571866,0.9009617702104151,-0.408538696821779,0.1481828223913908,-0.282610141672194,-0.6387638729065657,-0.20262027718126774,-0.8399045066908002,-0.0662746587768197,0.3918659375049174,0.4321717922575772,0.1638721008785069,-0.578135013114661,-0.14895065687596798,0.6463555172085762,0.5502728670835495,0.5782468151301146,0.8225896167568862,-0.3643408305943012,0.04632019391283393,0.8837088439613581,0.21727416710928082,0.4308525798842311,-0.03383230231702328,-0.07877935795113444,-0.8225054927170277,-0.6543306703679264,-0.2763860155828297,0.18661462143063545,0.3952600578777492,0.01878703059628606,-0.513803746085614,-0.3648443277925253,-0.6773901865817606,0.9022723934613168,0.807458542753011,0.25582070043310523,-0.9801074075512588,-0.9318877086043358,0.03576601156964898,-0.4197907028719783,-0.6821948825381696,0.2575311278924346,-0.46370637184008956,-0.3875528867356479,-0.39681925857439637,-0.06899531511589885,-0.6808745646849275,0.6970413434319198,0.9303320976905525,-0.22776216734200716,0.2625269959680736,-0.17174674291163683,-0.8883280507288873,-0.5934126107022166,0.7597856149077415,-0.2337518730200827,-0.30756463622674346,0.6741584888659418,0.5802767579443753,-0.16331216366961598,-0.8483408065512776,0.3263217336498201,0.776715150102973,-0.6803332669660449,0.1929381019435823,0.05288031790405512,-0.05959165748208761,-0.23079780116677284,0.364451568108052,-0.2856845483183861,0.027293141465634108,-0.9954232284799218,0.37186082592234015,0.08980806358158588,0.6179555091075599,0.05035018874332309,0.6569514600560069,-0.5573354954831302,0.47411932749673724,-0.9474339261651039,0.31380427023395896,0.6280847792513669,0.34463625587522984,0.860697581898421,-0.9819303331896663,-0.8051971145905554,-0.14390315674245358,0.8335895803757012,-0.9819814744405448,-0.19671896565705538,0.5839910074137151,0.6430084868334234,-0.7095226016826928,-0.8117099632509053,0.16654103575274348,-0.11990203522145748,0.6674286802299321,0.8753956756554544,-0.30303682247176766,-0.7009060299023986,0.8471621070057154,0.7255175304599106,0.08788345474749804,0.659468543715775,-0.1606460176408291,0.5537454620935023,-0.5810770024545491,0.4973290809430182,0.983857796061784,-0.49507759418338537,0.9702009907923639,0.7466059932485223,0.8014990300871432,-0.8098037224262953,0.6362767228856683,0.12863641930744052,-0.48580500995740294,0.6283794259652495,-0.5062193940393627,0.5700725987553596,-0.7951079560443759,0.5584601312875748,-0.5003013387322426,-0.64598991535604,0.44724961882457137,-0.36240235110744834,-0.9285663808695972,0.5656814780086279,-0.17976738838478923,-0.16842447314411402,0.21871082670986652,-0.015237289946526289,0.8285416234284639,-0.60350854229182,-0.3869362878613174,-0.8189088413491845,-0.12006000196561217,0.29813883313909173,-0.7437194800004363,0.4321537846699357,-0.2369490065611899,-0.46906750509515405,-0.7826231443323195,0.6176040377467871,-0.49134078761562705,0.351891303434968,-0.9441220788285136,-0.009712554514408112,0.24429941503331065,0.8255366310477257,0.5853434251621366,-0.8234484791755676,-0.5372642045840621,-0.4844438899308443,-0.533255388494581,0.4716742536984384,-0.5896078343503177,0.9282551878131926,-0.3652552901767194,-0.3778948448598385,-0.3318395880050957,0.48962478106841445,0.03996935300529003,-0.002071347087621689,0.886126397177577,-0.23068470554426312,0.8849034518934786,-0.5486250184476376,-0.30343098752200603,-0.5892273741774261,-0.8669215529225767,-0.31269394932314754,-0.3339905901812017,-0.9665612052194774,-0.9330802196636796,-0.7178126643411815,0.9631693605333567,-0.9107871660962701,-0.7428425480611622,-0.7513959030620754,0.06589780189096928,0.9852445824071765,0.35440494678914547,0.5238209338858724,0.4863230618648231,0.2802196126431227,0.9287911173887551,0.14303654991090298,0.7193980407901108,0.2407648959197104,0.8471213425509632,0.5643925727345049,0.012544351164251566,0.9937354899011552,-0.16942666890099645,0.9550332017242908,-0.582860276568681,0.29467663494870067,0.11866489518433809,-0.11023430479690433,-0.7947182166390121,0.08648665528744459,0.31265949830412865,-0.04649682203307748,0.7193975080735981,0.5279533038847148,0.5170813649892807,0.5784446336328983,-0.962449075654149,0.6360202860087156,0.8546029571443796,-0.8272335156798363,-0.23827210953459144,-0.8951810793951154,0.13865706557407975,-0.8975423541851342,-0.9087269869633019,-0.6536153135821223,0.27280872827395797,0.9385355627164245,-0.335914749186486,-0.08229465829208493,-0.9763249191455543,-0.058825850021094084,-0.9239760455675423,-0.3233018950559199,0.2474362552165985,0.9158388911746442,0.330846693366766,0.7886931877583265,-0.46866869321092963,0.8648613202385604,0.07565689040347934,0.6714130761101842,0.46518651582300663,-0.7645268277265131,0.6663001379929483,-0.14714814675971866,-0.2952658333815634,0.4701610757037997,-0.662580513395369,0.23706550989300013,-0.269949768204242,0.7380276345647871,-0.4635390588082373,0.3294394933618605,-0.03671453893184662,-0.06248728185892105,-0.25394644448533654,-0.536853245459497,0.07602131133899093,-0.902465823572129,-0.8463113689795136,0.6770815919153392,0.12771461298689246,0.6447031088173389,0.4788442528806627,-0.345965335611254,-0.3189474758692086,0.790310145355761,0.6370655247010291,0.8005117452703416,-0.6013827044516802,0.6646641595289111,-0.7606651298701763,-0.2235380127094686,-0.8475587102584541,0.8146398891694844,-0.16950140753760934,-0.98607591772452,0.5546257356181741,-0.19494253862649202,0.42422087024897337,-0.20690492307767272,0.2246304787695408,-0.874242349062115,0.7701866151764989,0.2927030515857041,-0.3696378176100552,0.6609172984026372,0.39283346477895975,-0.25174120208248496,0.03722789231687784,0.6734479069709778,-0.4049909533932805,0.10984614258632064,-0.28008042043074965,-0.953183002769947,-0.9828862966969609,-0.306076483335346,0.19844377785921097,0.9640802210196853,0.8513594414107502,0.09004494128748775,0.6200711051933467,0.4672546018846333,0.8000409784726799,0.872768918517977,0.09192646434530616,0.5266387602314353,0.800393343437463,0.3740783343091607,-0.3710869695059955,-0.33450482739135623,-0.5115152881480753,0.18335901340469718,0.21808149432763457,-0.4204530222341418,0.6965373288840055,0.8959428803063929,-0.6938332095742226,-0.8004774926230311,-0.16844576690346003,0.8023559772409499,0.7395561523735523,-0.05937531730160117,-0.6158272922039032,-0.06759908003732562,0.3792640441097319,-0.04642946319654584,0.03994227619841695,-0.9603790403343737,0.4450256428681314,-0.2845418439246714,0.6657805284485221,-0.031948924995958805,0.16749868635088205,0.38186464738100767,0.021741540636867285,-0.5531862159259617,0.3584047448821366,-0.8302074410021305,-0.928888825699687,0.9159270375967026,-0.6075445045717061,-0.21892621414735913,0.4003685540519655,0.4875302519649267,-0.0018028365448117256,0.6152476374991238,-0.4582979059778154,0.12940025981515646,-0.7130363108590245,-0.3302564835175872,0.9741510576568544,-0.9103021579794586,0.13178670220077038,-0.2792551568709314,-0.38293316401541233,-0.2612869217991829,-0.863032843451947,0.19074209965765476,-0.048981254920363426,-0.9797627115622163,0.8428966412320733,0.7793414397165179,0.3062209882773459,-0.7334718946367502,0.6284326426684856,0.6618134141899645,-0.6496495162136853,-0.6277651023119688,0.263634551782161,0.3182853776961565,0.199775165412575,-0.32408740371465683,-0.1452937158755958,0.6811399571597576,0.6407033568248153,-0.22896345984190702,0.3018294647336006,-0.8615760458633304,-0.40845284471288323,-0.4691928504034877,-0.3535817479714751,0.6653171838261187,-0.7817429164424539,0.8678357810713351,-0.7784413280896842,-0.6107622133567929,-0.8463628198951483,0.7840641038492322,-0.8676111744716763,0.4388821190223098,-0.626852860674262,0.36718141147866845,0.4460063180886209,0.9797075851820409,0.24640396144241095,0.7822265694849193,-0.5354864224791527,0.786824488081038,0.016838669311255217,0.0986866825260222,-0.8368760449811816,0.6497558169066906,-0.881289878860116,-0.4082049294374883,0.005853226874023676,0.12699180701747537,0.680204679723829,-0.312455793377012,0.3611137345433235,0.3778735361993313,0.790801836643368,0.509967876598239,0.1748036853969097,-0.6802370492368937,-0.22386250831186771,-0.632592202629894,0.02245523501187563,-0.033816148061305285,-0.30279823718592525,0.16067767748609185,-0.48416592506691813,0.4879870875738561,0.878472747746855,-0.5860324124805629,0.8342831577174366,0.13517388934269547,0.14747704146429896,-0.4744349201209843,0.34107145853340626,-0.062044975347816944,0.7046990054659545,0.24745243648067117,0.7577658933587372,-0.5150269269943237,-0.4404026004485786,0.9000038173981011,0.6012087990529835,0.5297606694512069,-0.023803503718227148,-0.7164578260853887,0.4793469528667629,0.11261595925316215,-0.0429894533008337,-0.5955217787995934,0.1758976369164884,0.18474341090768576,-0.5010327715426683,-0.5559041150845587,0.017974707297980785,-0.1464897650294006,0.9972414812073112,-0.20115419710054994,-0.07639048947021365,0.7666074368171394,0.7483470672741532,-0.9229176207445562,0.5087346192449331,-0.1503679035231471,0.583253120072186,-0.9270595558919013,-0.5668131471611559,0.9202748420648277,0.01834127912297845,-0.5104721342213452,-0.8274989170022309,-0.5104570304974914,0.843800681643188,0.9349684780463576,-0.8646464413031936,0.3056580275297165,0.6906951447017491,0.5707965143956244,0.14115505339577794,-0.04034022055566311,-0.8269869205541909,0.14166150381788611,0.6873273374512792,0.05968186119571328,0.9180299160070717,0.035119818057864904,0.8710759207606316,0.9865068504586816,-0.7383861117996275,-0.7926402911543846,-0.8941556690260768,-0.8045665086247027,-0.427088244818151,0.5552345318719745,0.9693089057691395,-0.2813860299065709,-0.5903689423575997,-0.027090484276413918,0.842756655998528,0.9057095958851278,0.8323688847012818,0.7702662660740316,-0.5122160124592483,-0.5246805758215487,-0.494938547257334,0.40453973319381475,-0.9446555757895112,-0.17298893397673965,-0.11257012467831373,-0.4654949828982353,0.7618101942352951,0.5786128463223577,-0.1760506834834814,-0.7570542171597481,0.25096994498744607,0.8361555961892009,0.9744912586174905,-0.34479819098487496,-0.1627713073976338,-0.6425849916413426,-0.8684765854850411,-0.20463975053280592,0.8316928930580616,-0.23479511449113488,0.14105294086039066,0.5270365816541016,-0.23482042085379362,-0.5653962809592485,0.019282503053545952,-0.8844562699086964,-0.4344910094514489,0.7621262525208294,0.9417283530347049,-0.6881422302685678,0.834911887999624,0.7680977489799261,0.8111667232587934,-0.3646476035937667,0.09326906083151698,-0.2332635149359703,-0.1780447717756033,0.8364463322795928,0.9466810002923012,-0.4301488664932549,-0.5081201340071857,0.8222127282060683,-0.9075559270568192,-0.8831325420178473,-0.5849143113009632,-0.3018316989764571,0.025586524046957493,0.3061207630671561,-0.6924639362841845,-0.6930473814718425,0.31926462007686496,-0.41391321178525686,0.04916124092414975,-0.9728728774935007,-0.7195302597247064,0.083376822527498,-0.11234798096120358,-0.8196133682504296,-0.7412525820545852,0.5538662411272526,-0.902135509531945,0.23468310106545687,0.9281136505305767,-0.9476694138720632,0.07744954945519567,-0.3934251982718706,0.41687280079349875,0.7928459742106497,0.30642382614314556,-0.1922292411327362,0.6546696345321834,-0.8191936449147761,-0.47338508348912,-0.13221993017941713,0.017021656967699528,-0.833402675576508,0.048612740356475115,-0.6880114325322211,0.9630617592483759,0.8780992901884019,0.1561363022774458,0.7392845321446657,-0.8675199574790895,0.29498456371948123,0.5381042039953172,0.5072159813717008,0.3313879366032779,-0.9208271554671228,0.10778489429503679,-0.9619826753623784,-0.6570286280475557,0.5733244498260319,-0.8675522464327514,0.492474926635623,0.94831462809816,-0.7187383528798819,-0.7586995791643858,-0.9458462507463992,0.4721414437517524,0.6264462876133621,0.2835980849340558,-0.24149669148027897,-0.7655840641818941,0.25622516637668014,-0.5624470533803105,0.3594345203600824,0.19162962678819895,0.29170218715444207,-0.7820456326007843,0.3606610572896898,0.36685030069202185,0.5913271461613476,0.6214444227516651,-0.12103546038269997,-0.21474403096362948,0.9142687427811325,0.7915853271260858,0.2686073346994817,-0.8688952894881368,-0.17915084771811962,0.6329775955528021,0.5118579277768731,0.5196919129230082,0.6328300316818058,0.7073784414678812,0.9668910414911807,-0.12333106063306332,-0.7480100216343999,0.020084607880562544,0.8842605338431895,-0.40599470026791096,0.964514987077564,-0.03388586640357971,0.36633539805188775,-0.3925069570541382,-0.6115369745530188,0.40844049071893096,0.9504234213382006,-0.6388493631966412,0.746279330458492,-0.09837822057306767,-0.2050384059548378,0.4671155381947756,-0.8633736958727241,0.4072366561740637,-0.9760412606410682,0.6350649609230459,0.7537207575514913,-0.7431905358098447,0.20926117850467563,-0.8925396832637489,-0.3899381277151406,0.2451923438347876,0.558222783729434,-0.5805556126870215,-0.9224842432886362,0.17845342447981238,0.5096831428818405,-0.3027965514920652,-0.5766609786078334,0.5691550858318806,-0.6465537948533893,-0.4138923827558756,0.16700109420344234,-0.11697474028915167,-0.2869635825045407,-0.7232039645314217,-0.4039838700555265,-0.7251863270066679,-0.6200825092382729,-0.8438518247567117,0.1788811762817204,-0.6272138305939734,0.587377579882741,-0.5369421760551631,0.48062667110934854,0.995343822054565,0.022378982044756413,0.49303062073886395,-0.4181704130023718,-0.4410414472222328,0.4111610413528979,0.9527740445919335,0.5469184564426541,0.635317946318537,0.6254506823606789,-0.4250375139527023,0.05189322121441364,0.6018160246312618,-0.7187132146209478,0.297583001665771,0.4553980063647032,-0.9839379345066845,-0.9774937019683421,0.8970226878300309,-0.7524292799644172,-0.7659132182598114,0.9159294739365578,-0.20721869403496385,0.24728315696120262,-0.2779099680483341,-0.6113777291029692,0.17135481350123882,0.5808825148269534,0.722541225142777,-0.3453408535569906,0.9381802072748542,0.7545065046288073,-0.2545123267918825,-0.008936421480029821,-0.18719777325168252,0.7354605435393751,0.5910428953357041,-0.22247035894542933,0.029229878447949886,-0.4065450937487185,0.8422131454572082,0.3271958199329674,-0.9537148354575038,-0.24342590011656284,-0.781821389682591,0.27081233030185103,0.06300882901996374,0.08826103480532765,-0.7371946261264384,0.4485933375544846,-0.77188806142658,-0.8781912047415972,0.9052180531434715,0.5588496555574238,-0.04610832780599594,-0.06639468250796199,-0.20702886814251542,-0.9095424003899097,0.13981022918596864,0.27462375489994884,0.5859650797210634,0.6047965115867555,-0.19550427608191967,-0.666203860193491,-0.6782820681110024,0.0462455665692687,0.0786854331381619,-0.8224007179960608,-0.6334383361972868,0.27874106215313077,-0.07656029565259814,0.05223801778629422,-0.02462590392678976,-0.4228081852197647,-0.23734372295439243,0.5674014366231859,-0.14364215871319175,0.08585574524477124,-0.4985770098865032,0.15708068711683154,0.520100359339267,-0.1490236446261406,-0.5374254728667438,-0.20398771855980158,0.4686481012031436,-0.799752767663449,-0.23800870217382908,0.4131543622352183,0.14896432869136333,-0.2043569078668952,0.6729543269611895,-0.14891166286543012,-0.44103560969233513,-0.2928952150978148,-0.9614934711717069,-0.3533299402333796,-0.49115438060835004,-0.8131542545743287,-0.18852898105978966,0.6225155745632946,0.8924212213605642,-0.13157325936481357,0.6537646879442036,0.08455691765993834,-0.7438944187015295,0.918280967976898,-0.8476129057817161,0.7653760816901922,-0.06927509605884552,0.47860442101955414,-0.4729943606071174,0.4039550144225359,0.03498939145356417,0.09649113658815622,0.6883940123952925,0.8176085599698126,0.8478534910827875,-0.06243695970624685,-0.06718752905726433,0.03056344110518694,-0.03506661858409643,-0.18636010820046067,0.7104042200371623,-0.8605223726481199,0.4810721683315933,-0.9168411334976554,0.9990125061012805,-0.768442397005856,-0.34680338855832815,0.6408502827398479,-0.4694418818689883,0.8030051873065531,0.4440266699530184,0.5962528460659087,0.5278140236623585,-0.9974711677059531,-0.33318495424464345,-0.5178867746144533,-0.6235514082945883,0.5780862867832184,-0.35613224282860756,0.3033146960660815,0.66511763446033,0.39881986984983087,0.3108245590701699,0.500356518663466,0.06536840973421931,0.4763436554931104,-0.013930381741374731,-0.391268661711365,0.34675651229918003,-0.5838111857883632,-0.9997995928861201,-0.019579125102609396,0.41798877995461226,-0.2809612974524498,0.12739198096096516,0.5072762696072459,0.9094793172553182,-0.8527904571965337,-0.18010582448914647,-0.4709578757174313,-0.25084860995411873,-0.6111033912748098,0.6189867593348026,-0.15182286221534014,-0.6216204455122352,0.2955788257531822,0.6402598340064287,0.4898168798536062,-0.5373827675357461,0.16755297174677253,-0.653117242269218,0.8894420168362558,-0.19043010054156184,0.7874862481839955,0.902032055426389,-0.6710119699127972,-0.2882449822500348,0.8169272509403527,-0.7380174556747079,-0.24284908594563603,0.8355076056905091,-0.5093144569545984,-0.6271413201466203,-0.9947424493730068,-0.7462512548081577,0.5085204113274813,0.7103428454138339,0.1590801510028541,0.003110941033810377,-0.6859990749508142,-0.9511195733211935,0.16103215934708714,-0.8278747387230396,0.1659330129623413,-0.0782867050729692,0.3185822516679764,0.04145350120961666,0.028189477045089006,0.8414907236583531,0.3232860276475549,-0.5002219942398369,-0.3877907684072852,0.27320458833128214,0.016010025516152382,0.21603374602273107,-0.05914330808445811,0.04439763352274895,0.1714318972080946,0.8473455957137048,0.7864386467263103,-0.7324826489202678,-0.8461733236908913,0.7735335961915553,0.184300581458956,-0.5262220650911331,0.2408555611036718,0.8230542144738138,0.7545185154303908,0.12672138400375843,-0.13489815685898066,0.7074526809155941,-0.05961959669366479,-0.7822320461273193,0.9767020372673869,0.6252110595814884,0.21640443848446012,-0.45850222511217,0.6477698483504355,-0.5924980794079602,0.8874439946375787,-0.7753236964344978,0.7299329834058881,-0.19615886779502034,-0.3548915642313659,0.7615714664570987,0.3209863407537341,-0.5102107138372958,0.05140831647440791,0.8354904479347169,-0.48114027408882976,-0.13101817667484283,-0.36627821857109666,-0.48059653816744685,0.6991536719724536,0.6862583793699741,0.19745957665145397,0.18468916369602084,-0.009950520936399698,0.7342969598248601,0.10538684763014317,-0.3003838835284114,0.027197107207030058,0.43897290900349617,0.39923375891521573,-0.12641237117350101,-0.18398036947473884,0.40605429094284773,-0.5502891410142183,0.2513474482111633,0.1906335554085672,-0.07108478480949998,-0.9643293316476047,-0.33458360051736236,-0.19819190353155136,-0.7644197032786906,-0.6733787260018289,0.10458101285621524,-0.2623188002035022,0.07639890071004629,0.24162753112614155,-0.9540597479790449,-0.9710054397583008,0.846809318754822,0.07813925622031093,0.9820967009291053,-0.8264298178255558,-0.49754851730540395,0.12925872765481472,-0.9712434327229857,0.18601531349122524,0.9799873614683747,-0.47207067906856537,-0.5458962135016918,0.036063642241060734,-0.46999523788690567,-0.22531312610954046,0.34668899048119783,0.5175750744529068,-0.7818047595210373,0.38276116782799363,0.9888487667776644,0.42411036789417267,-0.0739091420546174,-0.12876599095761776,0.5834522936493158,0.6120384349487722,-0.7443965147249401,0.6574360174126923,0.2523703835904598,-0.9696265659295022,0.5115446290001273,0.5812583207152784,0.17075506411492825,-0.29165212670341134,0.6471832627430558,0.08715040236711502,0.12321184296160936,0.9833094696514308,-0.726816647220403,0.3061672099865973,-0.15789641439914703,-0.46011771634221077,-0.8158826534636319,-0.6150544676929712,-0.16779946256428957,0.5374806886538863,0.4855281822383404,0.9943281612358987,-0.9911205107346177,-0.5033555864356458,0.47837104741483927,0.8469385770149529,0.8525225021876395,-0.012607849203050137,0.3815362420864403,0.38281259778887033,0.7448055795393884,-0.6871166778728366,-0.8807854535989463,-0.5192863959819078,-0.22627442609518766,0.6731291422620416,0.5758693949319422,-0.3743508909828961,0.3635282660834491,0.7269352413713932,0.034803858026862144,-0.869236150290817,0.40301085729151964,0.19316871417686343,0.2011080519296229,0.5225870748981833,-0.025056303944438696,0.45761937089264393,0.615253999363631,0.9192195413634181,0.07057111710309982,0.80025564879179,-0.6605242849327624,0.5540580069646239,0.8377764672040939,-0.14276500791311264,0.3182570734061301,-0.2913795537315309,-0.20638873288407922,0.2296209055930376,-0.9747456428594887,0.1105068544857204,0.6285602268762887,-0.5665186829864979,0.9489668719470501,-0.3240958205424249,0.45332082360982895,-0.9353459356352687,-0.23485886910930276,0.34134310064837337,-0.6060618371702731,-0.04678050335496664,0.20423549646511674,-0.3468616222962737,0.805363766849041,0.905399629380554,0.6472219591960311,0.560048355255276,-0.9069210649468005,-0.14336961042135954,0.8734033857472241,0.8428294905461371,-0.6809627045877278,0.10412369621917605,-0.4099290482699871,-0.4336410956457257,0.34260824229568243,0.21199725940823555,0.7706017922610044,-0.09373825928196311,0.8840996031649411,0.3917208891361952,0.3571063503623009,0.06499092979356647,0.8951873374171555,-0.12905433448031545,0.6775405472144485,-0.30117322970181704,0.5158653054386377,0.5801461464725435,-0.2710846750997007,-0.8761545345187187,0.7724746013991535,0.8950701751746237,-0.2636556946672499,0.007444655988365412,0.617665037047118,0.7483067000284791,-0.6795729869045317,-0.361849972512573,0.5774039183743298,0.707811716478318,0.8790344973094761,-0.756834673229605,0.8293367642909288,0.48184124659746885,-0.12884272634983063,-0.5270632654428482,0.022240886464715004,0.6114735142327845,-0.8894246192649007,-0.14406363014131784,0.7689330214634538,0.8822986572049558,0.7336170980706811,0.2807776457630098,-0.17292477656155825,-0.41778540378436446,0.7726601562462747,-0.6604905691929162,-0.7993272882886231,0.2544305929914117,-0.5945561407133937,-0.058024886064231396,0.03955890517681837,0.9715346330776811,-0.11014543799683452,0.711536287330091,-0.9139538686722517,-0.2384780333377421,0.5836355560459197,0.15329840779304504,0.7778345695696771,0.7504522483795881,0.1704250257462263,-0.18075383361428976,0.34249413665384054,0.08559137349948287,-0.984228225890547,-0.2391152186319232,0.6038251877762377,0.9458068641833961,0.32853824738413095,-0.17025489453226328,-0.6256060493178666,0.6348155736923218,0.8163020890206099,0.5149181638844311,-0.18376204976812005,0.07065147534012794,-0.6844995194114745,-0.10844846023246646,0.5930093508213758,-0.4119169730693102,0.23260071594268084,0.176239347551018,-0.27899396140128374,0.2350889015942812,-0.6496598869562149,0.16646688943728805,-0.5529270889237523,0.97330467030406,-0.748147502541542,-0.1912471791729331,-0.5416719103232026,0.8988645407371223,0.83870232058689,0.8580170669592917,-0.6631633224897087,0.3136294577270746,-0.5624556159600616,-0.7407216038554907,-0.2924480466172099,-0.7023554127663374,-0.5839629671536386,-0.5768875288777053,0.093754549510777,0.9987473073415458,0.36116893822327256,0.4721023482270539,0.29569982271641493,0.43014712864533067,-0.7037756242789328,0.10648335283622146,-0.8370125964283943,-0.07195931021124125,0.2613641619682312,0.5502466363832355,0.925303291529417,-0.4887200966477394,-0.2721211523748934,-0.03306643618270755,-0.8705223673023283,0.8708015652373433,0.34036468621343374,0.9751354465261102,0.33018646482378244,-0.02900630934163928,-0.6516550076194108,0.5296795638278127,-0.8954130578786135,-0.48976681800559163,0.13316584005951881,0.41636386467143893,0.3622245993465185,-0.6453050919808447,0.566328986082226,0.5010611335746944,0.7142866239883006,0.6309168441221118,-0.00782016757875681,-0.6855919235385954,-0.4951936760917306,0.09987694444134831,0.8562923553399742,0.46660081669688225,-0.49736642837524414,-0.4267033073119819,-0.129256886895746,-0.8298773705027997,-0.15529364673420787,0.7427960587665439,-0.920410986058414,-0.7392015624791384,-0.17058587772771716,-0.47112799156457186,0.31685224547982216,-0.7728214683011174,0.6423969841562212,-0.5673458948731422,-0.2585924412123859,0.11426877090707421,-0.18157972395420074,0.44221978867426515,0.8703445396386087,0.5089522660709918,-0.283335252199322,-0.8155271988362074,0.1976580275222659,0.2687938162125647,0.5978086991235614,-0.34771090280264616,-0.36626186966896057,0.30607306957244873,-0.37919865315780044,-0.5858053164556623,-0.7618971485644579,0.5766140148043633,-0.9886541753076017,-0.5678191222250462,-0.6015820442698896,-0.19181683287024498,-0.5953932274132967,-0.6498802108690143,0.41830729926005006,-0.3855100264772773,0.3259906768798828,0.8493787785992026,-0.9261357388459146,0.5877208607271314,-0.8196804556064308,-0.9871876961551607,0.9497288828715682,0.8357638930901885,-0.2659605788066983,-0.3442940837703645,0.4249672996811569,0.6019264473579824,-0.9902468081563711,0.7350557744503021,0.30664398800581694,-0.7255363208241761,-0.36516623571515083,-0.41985822143033147,-0.05770006403326988,0.6534632234834135,-0.20645577320829034,0.7023124606348574,0.35889984108507633,-0.5817084312438965,0.9821104560978711,-0.2371828779578209,-0.841133133508265,-0.7014254773966968,-0.5306016965769231,-0.7172254016622901,-0.9868919029831886,-0.7324556722305715,0.6692754351533949,-0.3706523063592613,0.32485945196822286,-0.5695155961439013,-0.7553283064626157,0.8646670528687537,-0.35185674484819174,-0.17826353199779987,0.9659055704250932,0.7747117695398629,0.45025284634903073,0.21957958163693547,0.7808025781996548,0.46276841778308153,0.7665135636925697,0.6570548792369664,-0.2678951877169311,-0.8599632829427719,0.3992739492096007,0.3207011390477419,0.2588003287091851,0.8935750816017389,-0.20565763860940933,0.595593168400228,0.2728968756273389,0.05774957966059446,-0.8335176068358123,0.9505155878141522,-0.3052798951976001,-0.012906534597277641,-0.03891129465773702,-0.5856907009147108,0.15729626407846808,0.9673922890797257,0.3275523670017719,-0.45003471383824944,0.8256144444458187,-0.42825079429894686,-0.9733792087063193,-0.17706681182608008,-0.26231897762045264,-0.8270575343631208,0.9536075601354241,-0.27072519063949585,0.7727358886040747,-0.9023019438609481,0.8452568734064698,0.5340319480746984,-0.6262694234028459,0.3565915231592953,-0.8440382485277951,0.9058640375733376,0.960744131822139,0.03707658872008324,0.24815864162519574,0.5928151682019234,0.40875141555443406,-0.5713409716263413,0.287621078081429,0.7521208580583334,-0.9907525829039514,-0.9193473276682198,-0.5816785446368158,-0.5354922791011631,0.07204805221408606,0.5887587224133313,0.039108630269765854,0.5648469775915146,-0.6887703519314528,0.9681655056774616,-0.7435343312099576,-0.5771200945600867,0.5764372041448951,0.9421239220537245,0.4443928226828575,-0.9645124301314354,-0.013343690428882837,0.6304224715568125,-0.6562490835785866,-0.7088759089820087,-0.7449859916232526,-0.16438844054937363,0.452423014678061,0.5833794237114489,0.7122162561863661,-0.8028640584088862,-0.0635697334073484,0.13017207151278853,0.4974103136919439,0.42504669865593314,-0.13073722179979086,-0.9486036002635956,-0.06661694357171655,-0.4326044372282922,-0.26550892973318696,-0.449958476703614,-0.5524419159628451,0.6519468924961984,0.5232267337851226,-0.400764768011868,-0.5344326202757657,0.9636075017042458,-0.8502517039887607,0.9004286006093025,-0.14779931120574474,0.6156268613412976,0.2823321190662682,0.8547855606302619,0.17965663131326437,-0.9359383559785783,-0.6590769067406654,0.321717310231179,0.9665471380576491,0.4180433629080653,0.7788482550531626,-0.5033079199492931,-0.6971519337967038,-0.2806655978783965,-0.3998964726924896,-0.03691546292975545,0.5798335410654545,0.04456602456048131,0.734093842562288,0.9830978414975107,0.2282296996563673,-0.7061716881580651,0.3942458061501384,0.9502872070297599,0.2000866448506713,-0.7406072267331183,-0.24632250051945448,-0.9332353081554174,0.03572990279644728,-0.03764106286689639,0.12197767570614815,0.6663287901319563,0.2734896303154528,0.4686437789350748,-0.81630355771631,0.27939191134646535,0.14395461603999138,0.6330398456193507,0.45422914577648044,-0.5085828294977546,-0.44773183297365904,0.6520605320110917,-0.5855836211703718,0.8527436768636107,-0.20835577556863427,0.14128347346559167,0.658981816843152,0.7304768483154476,-0.6553730410523713,-0.6790849408134818,0.41761493729427457,0.8259901111014187,-0.44976479886099696,-0.153155286796391,0.3080769362859428,0.24734578095376492,-0.9090917613357306,-0.4929259978234768,-0.09056361950933933,0.45914404513314366,0.1890368307940662,0.6247902405448258,0.5831061145290732,0.3277461570687592,0.15475993463769555,-0.7589671267196536,0.8937522722408175,-0.7130491607822478,0.8918792270123959,-0.20987449726089835,0.3550816965289414,-0.41478529246523976,0.2757063345052302,0.6241168775595725,0.16807567793875933,-0.8001206098124385,0.4936720384284854,-0.17948903841897845,-0.4491332140751183,0.8043991783633828,0.6586322104558349,0.6083690053783357,-0.023416701704263687,-0.9548084228299558,-0.20271727023646235,-0.1840363536030054,-0.38507157377898693,0.2543267854489386,-0.08214587299153209,0.2951548583805561,0.5125277019105852,-0.7412843434140086,0.4190803300589323,-0.451751166023314,-0.1274627293460071,0.5107801309786737,0.17240096675232053,0.7630333490669727,-0.13197044329717755,-0.3887749556452036,-0.43393727112561464,-0.9290227401070297,-0.04048920050263405,-0.43217988312244415,-0.8910556710325181,0.11846869764849544,-0.5675248629413545,-0.9741114103235304,0.09801295306533575,-0.898042116779834,0.655110624153167,-0.29863664135336876,-0.9223697520792484,-0.7072029779665172,-0.5053304354660213,0.3553879093378782,0.05077150836586952,0.6355174002237618,-0.2654261030256748,-0.7170513509772718,0.4163274667225778,0.7288169511593878,0.18237225245684385,-0.9476377521641552,-0.2737352638505399,0.2861581570468843,-0.9780631260946393,-0.15416215313598514,-0.5487309801392257,0.8744357987307012,-0.6058758571743965,0.4897352675907314,0.9538562973029912,-0.9044452882371843,-0.007509738672524691,-0.3707106290385127,-0.037536478601396084,-0.010655499994754791,-0.31046074349433184,0.696743281558156,0.9485290106385946,0.8977334471419454,0.7555108964443207,0.6359926168806851,-0.8450309648178518,-0.07788754999637604,0.9184736348688602,0.6935549480840564,0.4813281521201134,-0.45048948004841805,0.1361213750205934,-0.5249438211321831,0.7255287175066769,0.22721574315801263,-0.5978138181380928,0.6127050067298114,0.7978241886012256,0.8554162494838238,0.420725594740361,0.5322409635409713,0.17712795222178102,-0.8886329233646393,0.18070011725649238,-0.02045577671378851,-0.6537176719866693,0.5186255178414285,-0.7083641737699509,0.06708434922620654,-0.9425575928762555,-0.3355256295762956,0.19234718289226294,-0.8356994730420411,-0.07213460793718696,0.6854676273651421,0.25197809655219316,0.39563380274921656,-0.08766068611294031,-0.3178864032961428,-0.3427384104579687,-0.07331693079322577,-0.5426437682472169,0.03198003303259611,0.3054703432135284,0.28272989904507995,0.9748307899571955,0.48673417745158076,0.9314376353286207,0.7983726351521909,-0.09530578833073378,-0.6269916542805731,-0.37166336784139276,0.21987500879913568,0.8203314789570868,0.5603743763640523,0.6624638726934791,-0.22225895430892706,0.8970975503325462,0.819718040060252,0.9632590231485665,-0.2222541468217969,0.12285034358501434,-0.02110950369387865,-0.570412774104625,0.38343746680766344,-0.7980122747831047,-0.07204134808853269,0.8611540612764657,0.04579216334968805,0.5423048753291368,-0.4838279508985579,0.2668038127012551,-0.4402788756415248,0.1939311232417822,0.42095540650188923,-0.5251837563700974,0.980106451548636,-0.8291941490024328,-0.6134229591116309,0.31638824148103595,0.6395953097380698,-0.31863555358722806,-0.22429151413962245,0.28174646524712443,0.4984331061132252,-0.6460833749733865,0.06973913265392184,0.9775382117368281,0.015828429255634546,-0.39079904556274414,-0.8603792255744338,0.8127057286910713,0.37818977050483227,0.23901130491867661,0.7560734110884368,0.6722204238176346,0.38321405090391636,0.09750726073980331,0.811709700152278,0.8201267733238637,0.17190065374597907,-0.038214939180761576,0.32619582023471594,0.596255371812731,-0.6926245889626443,0.6760523393750191,0.2692721835337579,0.2736224541440606,-0.6757056480273604,0.29436090495437384,-0.37764850025996566,0.5738565293140709,0.6490936176851392,0.013955521397292614,0.8521699323318899,0.20096944691613317,0.6355601828545332,0.10749192256480455,0.1786685874685645,-0.3116184934042394,0.26124653266742826,-0.43236758606508374,-0.001410074532032013,0.3829963831230998,0.10967122577130795,0.5605723182670772,-0.8900699475780129,0.8025816990993917,-0.3943064799532294,-0.5473962877877057,-0.4601061656139791,0.4761904953047633,0.04709425801411271,0.44496916560456157,0.8041661400347948,0.9455898436717689,0.07228993996977806,0.1937049189582467,-0.5007265005260706,0.5838082367554307,-0.010219312272965908,-0.10929758008569479,-0.36957595916464925,-0.8624795041978359,-0.7081481888890266,-0.0018960204906761646,-0.6579908668063581,0.08724007802084088,0.20865169679746032,0.02926769107580185,-0.36089227395132184,-0.3990245871245861,-0.5865943036042154,-0.5568546475842595,0.3441322543658316,0.5516149695031345,0.4984118640422821,-0.2862187293358147,0.6139811854809523,-0.013308500405400991,0.07927454775199294,0.10285830916836858,0.4543267250992358,-0.327770316042006,-0.15640806267037988,0.341843674890697,0.8401781348511577,0.914361760020256,0.13918294059112668,0.7886257260106504,0.9899750873446465,-0.8936885641887784,-0.21084221871569753,0.2029666267335415,-0.39779368694871664,-0.2895078449510038,0.6637119641527534,-0.7035383069887757,-0.740472411736846,0.6721818512305617,-0.8055220204405487,-0.5062851076945662,0.6169171305373311,-0.8731293408200145,-0.5054718418978155,0.08818628266453743,-0.4684239807538688,-0.12244675774127245,-0.4119970886968076,-0.5173316546715796,0.6293148919939995,0.4019996030256152,-0.6463329889811575,0.38973181415349245,0.5260959924198687,0.06021747924387455,0.986863833386451,-0.844852379988879,-0.1370146949775517,0.34082628414034843,-0.9003594946116209,0.12359817000105977,-0.8562918943352997,-0.05196858383715153,-0.0658107390627265,-0.7939007035456598,-0.471769230440259,0.00996488332748413,0.7557139773853123,-0.6069080550223589,0.05232469504699111,0.4591598571278155,-0.5411360845901072,0.3011959125287831,0.6315560154616833,-0.7982443869113922,0.5484602679498494,0.3966255118139088,-0.23053389508277178,-0.5905294036492705,-0.8905918155796826,0.43924106005579233,-0.6305994358845055,0.4642392569221556,0.8771780063398182,0.45400186255574226,0.25618743849918246,0.36631152033805847,0.0002462523989379406,0.15555042121559381,-0.03988409135490656,-0.30643613170832396,0.28205781150609255,0.6535063604824245,-0.9421675177291036,0.002534614410251379,0.16415515588596463,-0.7131885937415063,0.5436135274358094,-0.5698319543153048,-0.8770466716960073,-0.0764702232554555,-0.5757803395390511,0.11747787706553936,-0.05255933664739132,-0.6982249482534826,0.5957255628891289,0.25685446010902524,-0.4958756393752992,-0.8372012400068343,0.4038367602042854,-0.5790314669720829,-0.2912626527249813,-0.04910634830594063,0.32079283939674497,0.9798673000186682,0.45854289224371314,-0.6811519111506641,0.005837222095578909,-0.012298509012907743,-0.46465189941227436,-0.6792423878796399,-0.7879914920777082,-0.4698058473877609,0.8937824638560414,-0.09186964016407728,-0.16610358748584986,-0.42336810240522027,0.6876986948773265,0.2665026937611401,-0.02016333071514964,-0.2950617875903845,-0.20614652149379253,-0.9982446990907192,-0.37511367816478014,-0.23186314199119806,-0.4930986282415688,-0.49149353662505746,0.6257150126621127,-0.004067819565534592,-0.47279870277270675,-0.7900797287002206,-0.4115622057579458,-0.9233692861162126,0.5898972954601049,-0.09918992454186082,0.89442891580984,0.8429697286337614,0.2466995962895453,-0.820039939135313,-0.13754518190398812,-0.8091624570079148,0.30615371745079756,0.5576299489475787,0.41476963134482503,-0.2365610538981855,0.22372728446498513,0.11265576304867864,0.28005047235637903,0.8004638948477805,0.46963902842253447,0.7131264354102314,0.45931984623894095,0.4595184316858649,0.875774139072746,0.3795529054477811,-0.5467328280210495,-0.5291486224159598,0.07044746680185199,0.8155136490240693,-0.48625611467286944,0.1952798319980502,-0.49947286676615477,0.6000785226933658,0.793675250839442,-0.23264935286715627,-0.7924272604286671,-0.15563417878001928,-0.6785290590487421,-0.40136148734018207,-0.40634152945131063,-0.18321724236011505,-0.9619691520929337,-0.17598087433725595,-0.9990989933721721,-0.24074543919414282,0.85206118831411,0.6890395963564515,-0.38173174718394876,0.39720433624461293,-0.45929664885625243,0.06518445955589414,0.21242661215364933,0.5733671132475138,-0.1914749345742166,0.1308906553313136,0.4288451508618891,-0.6057698633521795,0.03776773903518915,0.25172897335141897,0.4816975174471736,-0.49493909906595945,0.9328226703219116,0.032951672561466694,-0.8617439675144851,0.07577891740947962,-0.8523546964861453,-0.40624012565240264,-0.26390778506174684,0.8441678271628916,-0.44525641249492764,0.39118301728740335,-0.1805228292942047,-0.990022852551192,-0.37549530528485775,-0.7623026729561388,0.18075806321576238,0.6412071664817631,-0.6860469821840525,0.5798292020335793,0.42458395613357425,-0.513628738000989,-0.8206391134299338,0.998233706690371,-0.31806557485833764,-0.2983885807916522,0.32312490278854966,-0.44753600005060434,0.42484229104593396,-0.9250837094150484,-0.912535335868597,-0.0034089675173163414,0.7507743188180029,-0.4825576674193144,0.49425588781014085,-0.8666857806965709,0.6574223665520549,-0.23534520994871855,-0.18397416081279516,0.9186261594295502,-0.608046870213002,0.8586376267485321,-0.8774035191163421,-0.9115759329870343,-0.11001801583915949,0.7040105164051056,0.23263364378362894,-0.8722484139725566,0.8845722749829292,0.6069762450642884,-0.5768379401415586,-0.9358023060485721,-0.6311480356380343,-0.5173468482680619,0.5208953199908137,0.3348492975346744,0.3952390858903527,-0.8287970619276166,-0.9099592310376465,0.3514583553187549,0.23983004270121455,-0.1863112668506801,0.7148662023246288,0.5848298594355583,-0.756384935695678,0.3873260673135519,0.9779795557260513,-0.581561035476625,-0.2644370226189494,-0.9212547871284187,-0.7517483285628259,-0.5480200620368123,-0.2650247956626117,-0.5729257366620004,-0.7008758862502873,0.2338275876827538,-0.8534248392097652,0.8560370318591595,0.24499249551445246,0.1483812932856381,0.44592208368703723,-0.6510087843053043,-0.00793719757348299,-0.23174379905685782,-0.9443993424065411,0.19689788157120347,0.32310951268300414,0.7889910968951881,0.6470688912086189,0.3864577254280448,0.219228888861835,0.20093867694959044,0.028666223865002394,-0.1325207557529211,-0.9989027306437492,-0.22651722002774477,0.14364833571016788,-0.6347892847843468,-0.2161446213722229,0.003767081070691347,0.11075258487835526,-0.33508590096607804,0.3783959336578846,0.9482613219879568,0.4277806174941361,-0.15464796498417854,0.09632252203300595,-0.4267056384123862,0.06724106008186936,0.7803718997165561,0.631472775246948,0.3618296510539949,0.45399743411689997,-0.5652891946956515,0.5565434833988547,0.6339564165100455,-0.899788910523057,-0.28148370375856757,-0.7550469501875341,-0.761352454777807,-0.5899095581844449,-0.7501278622075915,-0.35864380560815334,-0.6579520651139319,-0.4957827338948846,0.6381085501052439,-0.046522639226168394,-0.8496660841628909,-0.4850784298032522,-0.9370084004476666,0.5683050332590938,-0.15516780223697424,-0.6765508949756622,-0.9220992387272418,-0.36502262111753225,-0.9362169159576297,0.9198817722499371,-0.8371113366447389,0.20267750602215528,0.442718795966357,0.10628690663725138,0.2574934596195817,-0.24778260802850127,-0.6338491849601269,0.9857339751906693,0.8127956809476018,0.6329387715086341,0.5545969465747476,0.7744017974473536,-0.6350398771464825,-0.9636631733737886,0.46243165992200375,-0.8525281511247158,-0.6320778848603368,0.402257873211056,0.23864566441625357,0.19412339618429542,0.983349887188524,-0.981573530472815,0.6874385965056717,0.6222295137122273,-0.02725024800747633,-0.3343936922028661,0.00856938585639,0.4490543892607093,0.571438898332417,-0.47639285726472735,0.46702210791409016,-0.21926581440493464,-0.659004932269454,-0.4371692822314799,-0.3894271980971098,0.36702841985970736,-0.7411952735856175,-0.9051169850863516,0.4129568790085614,-0.830966844689101,0.5471597034484148,0.040542061906307936,-0.9414558615535498,-0.12885883636772633,-0.906882347073406,0.9849163466133177,-0.7276050662621856,0.5422934694215655,-0.33812709618359804,0.23574803210794926,-0.9616903704591095,-0.5302033172920346,0.8374633491039276,-0.27863699570298195,-0.26876468444243073,-0.2603933629579842,-0.5967650003731251,0.7138137160800397,-0.8459426048211753,-0.5423274729400873,-0.8556387657299638,0.76023771148175,-0.0738104423508048,-0.4989961110986769,-0.5139235248789191,0.4999939016997814,0.555696152150631,0.8318915381096303,-0.821974003687501,-0.5112198358401656,0.8054058249108493,-0.12439908133819699,-0.10750870872288942,-0.15054490324109793,-0.7649361859075725,0.346094720531255,0.3668403262272477,-0.6185365174897015,-0.8942273557186127,-0.14022565307095647,0.9689233140088618,-0.547174358740449,-0.21420158678665757,-0.08123552333563566,0.4309819941408932,-0.7299744575284421,-0.6219483641907573,0.05483996542170644,0.3184701162390411,0.8705856865271926,0.36889824038371444,0.18595140660181642,-0.21091412333771586,0.1415142840705812,0.9050910389050841,0.7724736393429339,0.4747063438408077,0.06532109808176756,0.9124298775568604,-0.5348283969797194,-0.21802187664434314,-0.11533513152971864,-0.6463935533538461,-0.07067982014268637,0.56196059146896,-0.7166131907142699,0.7942837355658412,-0.6890765009447932,0.6915340167470276,0.8673166171647608,-0.2066821614280343,-0.9600730980746448,0.691661870572716,-0.629396615549922,-0.23778310883790255,0.7849872228689492,-0.9584879712201655,-0.996586783323437,0.6434732535853982,0.6694625671952963,-0.5883840671740472,-0.006310956086963415,0.8538339342921972,0.025837203953415155,-0.7140155611559749,0.23890594486147165,-0.16338147688657045,-0.8271555528044701,-0.8493064371868968,0.2542798868380487,-0.3708686730824411,-0.1499962699599564,-0.3979235547594726,-0.8617868344299495,-0.7891474710777402,0.47800744278356433,0.5550504461862147,0.5271430546417832,0.36219967948272824,-0.17928074719384313,-0.7873490783385932,-0.4397833626717329,0.500894364900887,-0.1859994474798441,-0.10299287410452962,0.8598840176127851,0.3054218073375523,-0.7141429274342954,-0.8976336065679789,0.8381133521907032,0.3891112864948809,0.4562479443848133,-0.1815518750809133,-0.09060698561370373,0.5606394335627556,-0.44010362261906266,-0.5854490068741143,-0.7501632431522012,-0.9537032330408692,-0.5924347131513059,0.743212535046041,0.39677700074389577,0.7981771691702306,-0.7756918058730662,0.09852399677038193,-0.20383612252771854,0.715412262827158,-0.5240275640971959,-0.8454609629698098,0.005655982065945864,0.9029861576855183,0.7121617472730577,-0.04523020749911666,-0.2598991012200713,-0.6501612165011466,0.8174757682718337,0.3879919755272567,0.9259135546162724,0.9072326957248151,0.01713065803050995,0.7829966158606112,-0.561115465592593,0.3283535880036652,-0.5875405371189117,-0.8062913040630519,0.08465088717639446,-0.0088202771730721,-0.8804821162484586,0.8808482461608946,-0.6372705362737179,-0.6260070600546896,-0.8425476998090744,0.15864226408302784,0.030653689056634903,-0.5263193631544709,0.9691570857539773,-0.6915386728942394,-0.18944467045366764,0.8129685265012085,-0.8748545260168612,0.15821864735335112,-0.3780783652327955,0.4586420482955873,0.04863477358594537,-0.1185181480832398,-0.910562552511692,-0.19247426139190793,-0.9570358800701797,-0.03212530352175236,-0.08197312755510211,0.14641705714166164,-0.6781682539731264,-0.5789291220717132,0.37541487207636237,0.32559699192643166,-0.7959521319717169,-0.16177932964637876,0.8915180671028793,-0.09976052585989237,0.6608702172525227,-0.2612519892863929,-0.6469505149871111,0.23487671092152596,-0.7772364565171301,0.26924509555101395,0.3487807265482843,-0.5634840247221291,0.7183994413353503,0.9466694896109402,-0.5515329851768911,-0.5766524067148566,-0.41665681498125196,0.8976317122578621,-0.22485101409256458,-0.9033133774064481,-0.6112187360413373,0.15130246384069324,0.5528477365151048,0.9083770825527608,-0.793906576000154,0.5889335814863443,-0.12546251574531198,-0.8488798243924975,-0.8225856041535735,0.34015396144241095,-0.31194359716027975,-0.23446387983858585,-0.5461465651169419,0.4225592347793281,-0.7234369399957359,-0.9984530853107572,-0.890280254650861,-0.5402398528531194,-0.6410907972604036,0.3343110363930464,-0.75827297847718,0.2697424329817295,-0.4850524216890335,-0.3740131831727922,-0.8885865174233913,-0.37385337334126234,0.6681652329862118,-0.2678232262842357,0.9294058196246624,-0.18138788547366858,0.37633151980116963,0.5625230195000768,-0.23967099701985717,0.5289003015495837,0.5770652526989579,-0.40728467609733343,-0.8733446821570396,0.07611629320308566,0.028810597490519285,0.9713835138827562,0.3619229388423264,0.9397488967515528,0.7486510146409273,-0.6675073937512934,0.3828052473254502,0.8768855910748243,-0.03560803318396211,-0.6476038382388651,-0.2609769543632865,-0.872610280290246,-0.04315900057554245,-0.03239339357241988,0.9085485697723925,-0.9992823717184365,-0.21800991613417864,0.9167379746213555,-0.2139610918238759,0.9448662716895342,0.3090433250181377,-0.03705179924145341,-0.9297414342872798,0.8154074847698212,-0.8167171003296971,0.4742148336954415,-0.3141164369881153,-0.2288558455184102,-0.938330037984997,0.3627970856614411,0.5313665471039712,-0.752149099484086,-0.7543077673763037,-0.8031536168418825,-0.6974777802824974,-0.05569110903888941,-0.5232594036497176,-0.07294709607958794,-0.8922094185836613,0.7001096024177969,-0.4473444912582636,-0.5449125347658992,-0.23829298978671432,0.05239800736308098,-0.14536873949691653,-0.569251973181963,-0.42451130133122206,0.40293997433036566,-0.968260798137635,0.3084650752134621,-0.9003625330515206,-0.7796446876600385,-0.5198486247099936,0.42289148550480604,-0.21449881000444293,-0.3355808309279382,0.9117561038583517,-0.8866543946787715,-0.06997160194441676,-0.7156129232607782,0.9216705090366304,0.5037620589137077,0.47713556373491883,0.6863200115039945,0.3720521372742951,0.6198225053958595,0.788360997568816,0.2499823896214366,-0.2983769029378891,-0.14839743450284004,-0.6226307372562587,-0.9649236151017249,-0.7284534517675638,-0.7187060373835266,0.910737682133913,-0.49386416375637054,-0.4576000841334462,0.5609662546776235,0.49997234158217907,-0.453481940086931,-0.1562528689391911,-0.7828019778244197,0.17270174669101834,0.9596317987889051,0.1312897694297135,0.6446823878213763,0.6130632921122015,-0.9731808048672974,-0.019557485356926918,-0.3407062217593193,-0.17787165753543377,0.1807341226376593,0.9353659977205098,-0.35049227019771934,0.05730214761570096,0.21774106565862894,0.7427958059124649,-0.0007826332002878189,-0.05566783156245947,0.8069505710154772,-0.869144496973604,0.298706344794482,-0.41257930593565106,-0.6976137012243271,-0.37739131366834044,0.983725686557591,-0.35719331866130233,-0.22593464888632298,0.4729139278642833,-0.9816605518572032,-0.8423318918794394,-0.23515562154352665,0.35859335912391543,0.08970865607261658,-0.08813933143392205,0.8482279884628952,0.489068784750998,0.5789863206446171,0.8461734787560999,-0.0001227026805281639,-0.5353717524558306,-0.6761907585896552,0.7562678577378392,0.6492815185338259,0.8951074248179793,0.10438946494832635,-0.6771338521502912,0.7328244620002806,0.34599580336362123,-0.3931270083412528,-0.4514801613986492,-0.4596532294526696,-0.4379330757074058,0.9842550004832447,0.9468238167464733,-0.8985383985564113,-0.16328443167731166,-0.4727899809367955,-0.7190606067888439,-0.9906679973937571,0.8494074163027108,-0.025076597463339567,0.3290330092422664,0.027541248593479395,-0.09733917750418186,-0.4878686545416713,0.8875352637842298,0.627717521507293,0.9420774737372994,-0.0981482551433146,-0.8262286479584873,-0.14950413908809423,-0.028195729479193687,0.5164204239845276,-0.16494448576122522,-0.34024352859705687,-0.12880527786910534,-0.4724796018563211,0.8677350389771163,0.8454417083412409,0.8648950005881488,-0.23328975681215525,0.34159835474565625,-0.7248069038614631,-0.4405787638388574,0.37285601207986474,0.7204371192492545,0.564792939927429,0.8240810320712626,-0.6582241146825254,0.10453765606507659,0.5635382607579231,0.595962384250015,0.5860157897695899,0.6266600214876235,-0.821127949282527,0.3225375972688198,-0.3493117340840399,0.2989040371030569,-0.25153066124767065,0.36865287413820624,0.41172132501378655,0.9824653207324445,0.6312170815654099,0.05841168574988842,0.9449166357517242,0.9566284283064306,0.6039944994263351,-0.5602385392412543,-0.8627968970686197,-0.7992167407646775,-0.4819005010649562,-0.9292289069853723,0.906383182387799,-0.4704069928266108,0.41057145735248923,-0.20889478642493486,0.9864374282769859,0.8231505462899804,0.9143476379103959,-0.9718755851499736,0.14422390377148986,0.15288474597036839,-0.08982547419145703,0.14353205356746912,0.9720871266908944,0.3516679131425917,0.2788268211297691,0.0801038988865912,0.45927568105980754,-0.27065383084118366,-0.631884990260005,-0.7344688279554248,-0.14917645370587707,0.34203061694279313,-0.523526968434453,-0.07753061130642891,-0.4562126980163157,-0.4684023759327829,0.8388112857937813,0.5822007358074188,-0.4844430675730109,-0.8876991160213947,0.7371852919459343,0.8474313165061176,0.39522572234272957,0.3374448660761118,0.5097605022601783,0.9644969026558101,-0.015087227337062359,-0.5116172828711569,-0.42221815371885896,-0.7195868957787752,0.24684910895302892,0.2127196560613811,0.7233271868899465,0.3492333823814988,-0.8585351430810988,0.5023800553753972,0.7451717853546143,-0.2089449893683195,0.515085422899574,-0.008828497491776943,-0.6750013194978237,0.33370471000671387,-0.6725385137833655,0.511185041628778,0.8745653610676527,0.052742147352546453,0.15594027750194073,0.726793309673667,-0.6087142331525683,0.9163091504015028,0.28389413934201,0.2854444910772145,0.7530156937427819,0.645246583968401,-0.21532406425103545,-0.9615943161770701,-0.7121729762293398,-0.41680641332641244,-0.5468417420051992,0.9032718832604587,-0.8888095738366246,0.7048750189132988,0.3711525471881032,-0.1578501365147531,0.13874323572963476,-0.6344976099207997,0.33349494356662035,0.32243221485987306,-0.36726075876504183,-0.34661130188032985,-0.8849095311015844,0.8981038555502892,-0.8026893776841462,0.7625792399048805,0.2776099843904376,0.25553858280181885,-0.10048484010621905,0.26310630701482296,0.6048440178856254,-0.509078009519726,0.5762132843956351,-0.1428378615528345,0.44532831432297826,0.42616236954927444,0.6850147172808647,0.6217846889048815,0.8487001424655318,0.7301375730894506,0.5036152936518192,0.6115402774885297,-0.3301102742552757,0.5736724007874727,-0.1579520795494318,-0.05440907971933484,-0.0012568370439112186,0.7916899509727955,0.7544711544178426,-0.7734892414882779,-0.9842722527682781,-0.9249803558923304,0.17031302489340305,-0.6738689509220421,-0.08919898374006152,0.48225489538162947,-0.4559634979814291,0.9863846092484891,0.3740615709684789,0.9647003300487995,-0.4795954953879118,0.4181863069534302,0.3168959077447653,-0.6519776997156441,-0.21534381248056889,0.860805559437722,-0.5690197600051761,-0.7833671891130507,0.8538170345127583,0.10110144503414631,-0.7170743574388325,0.7841726080514491,-0.6332379425875843,-0.4293694640509784,-0.9974700938910246,-0.16746160900220275,-0.7665333948098123,0.6182308215647936,0.9552986305207014,0.631087442394346,0.9462595782242715,0.4758152631111443,-0.1484164586290717,-0.2034760992974043,0.3173203314654529,-0.3288113479502499,-0.14599515870213509,0.3338030166924,0.27339661587029696,-0.06832082523033023,0.02946477523073554,-0.20517150964587927,0.5353418653830886,0.3804383920505643,-0.6712600043974817,-0.1607308518141508,0.22791573219001293,-0.6606040555052459,-0.6308279633522034,0.3767622131854296,0.21740304632112384,-0.9054305055178702,-0.3660171492956579,-0.26176227256655693,0.3909332915209234,-0.792005973868072,0.12994018103927374,-0.8755247164517641,0.0011633499525487423,0.8060931679792702,-0.35077199107035995,0.6349157183431089,0.19084753328934312,-0.20135035458952188,0.3111381456255913,0.5944282184354961,0.87878013914451,0.8134120358154178,-0.6782153132371604,-0.5482728420756757,-0.037303452380001545,0.31848515663295984,0.09143173648044467,-0.8892641696147621,-0.4381590923294425,-0.3267734865657985,0.12561936024576426,0.3086959421634674,0.3323649726808071,0.1737571065314114,-0.723011274356395,-0.688288239762187,-0.39995779283344746,0.49642775766551495,0.29618075443431735,-0.5806827777996659,-0.8015023707412183,0.038404697086662054,0.5849309829063714,-0.7905078274197876,0.0004143696278333664,-0.02095156768336892,-0.037940423004329205,-0.6786163444630802,0.998702977783978,-0.1116337738931179,0.11500697676092386,0.15952351596206427,0.8972090645693243,-0.3673265306279063,-0.605359548702836,0.7452266053296626,0.3504353337921202,0.7647496145218611,0.6476671542041004,0.6132809417322278,-0.9833702095784247,-0.8879707166925073,0.8159066783264279,0.6247378373518586,0.4963370501063764,-0.34456725930795074,-0.02637145621702075,-0.4705166583880782,-0.3366720639169216,0.6624802560545504,-0.8601214070804417,0.8553035059012473,-0.3835331192240119,0.8719186172820628,-0.8785582887940109,-0.08397126896306872,-0.9521746416576207,0.01710490882396698,-0.3789073093794286,0.2608713237568736,-0.7475488535128534,-0.7713456177152693,0.6454382198862731,0.009849727153778076,-0.4943254520185292,-0.961601875256747,-0.4031183202750981,0.882383169606328,0.6134815621189773,0.29763674084097147,0.3531201807782054,0.34137978637591004,-0.21832710783928633,0.8571357037872076,-0.7214013542979956,-0.5028754794038832,-0.0909783341921866,-0.7821485856547952,-0.7962263897061348,-0.6829000981524587,-0.1249515381641686,-0.8235891726799309,0.7346555143594742,-0.33470919309183955,0.35588527796790004,-0.3403734313324094,0.7056095823645592,0.4057631930336356,0.3216458363458514,-0.8173975762911141,-0.153908287640661,-0.5558383637107909,-0.19861102057620883,0.5526388483121991,0.3634481565095484,0.8303252612240613,-0.619331665802747,-0.901396481320262,-0.16482727695256472,-0.8707308201119304,-0.8526541795581579,0.4015020406804979,0.06749319331720471,-0.3106104861944914,-0.19419773807749152,0.3113669166341424,-0.9352186820469797,-0.9762180005200207,-0.31073960149660707,-0.7231411305256188,-0.7449001516215503,0.8096367600373924,-0.4746854165568948,-0.22221960732713342,-0.9811750184744596,0.05302603403106332,0.42381065245717764,-0.07819515001028776,0.7311804364435375,0.5523235956206918,-0.8287684847600758,-0.3711039558984339,0.22981222020462155,-0.8716364721767604,-0.5888532297685742,-0.5773277962580323,-0.7078856574371457,0.2791116861626506,-0.09940967755392194,-0.09173090476542711,0.1970640793442726,0.7758355028927326,-0.9296791814267635,0.6677109901793301,0.24805272789672017,-0.7854941072873771,0.7962690023705363,-0.48151638451963663,0.7178007150068879,0.6806516791693866,0.35056013148278,0.371350958943367,-0.5720678162761033,-0.259717202745378,-0.7827576110139489,-0.042873975820839405,0.7501098015345633,-0.1710739452391863,0.4849601034075022,0.3657345427200198,-0.6549933147616684,-0.1591527694836259,0.22817764710634947,0.36848447658121586,-0.2837067903019488,-0.9230479737743735,0.2506895503029227,0.5550971715711057,-0.33430689573287964,0.3863308490253985,-0.8397905547171831,0.3003810150548816,-0.47768371226266026,-0.7929334207437932,0.8722466579638422,0.4084928776137531,0.7586799156852067,-0.6336381584405899,-0.7791729848831892,0.9154606238007545,0.4951794631779194,-0.17204080382362008,0.7146087298169732,0.3816168359480798,-0.20544210588559508,0.6456482727080584,-0.8071763054467738,-0.1701202136464417,-0.5355808329768479,-0.716694584582001,0.17427288368344307,0.4179309904575348,0.48758338717743754,0.5742515278980136,-0.8420352623797953,0.9971903674304485,-0.4796952507458627,0.8053571414202452,-0.24190508387982845,0.15012603951618075,0.4354425510391593,0.43988482980057597,0.4490736643783748,0.9477216983214021,-0.18901506159454584,-0.9480199133977294,0.4473896976560354,0.2115522436797619,-0.009782652370631695,-0.5844557643868029,-0.7449234365485609,0.8049954483285546,0.5908210040070117,0.3230801625177264,-0.27922334522008896,0.23743647942319512,-0.19809494586661458,0.999730178155005,0.6533123510889709,0.26197285717353225,-0.24634458124637604,0.09240060672163963,0.9849224002100527,-0.8399535613134503,0.4276842446997762,-0.06659626495093107,0.03755203727632761,-0.8033642238005996,-0.7529936330392957,0.04711443930864334,0.6382983415387571,-0.289290779735893,-0.13869604375213385,-0.1347706369124353,0.7176793445833027,-0.6948776110075414,-0.8817073106765747,0.8294188976287842,-0.8884730823338032,-0.3158518108539283,0.6157184834592044,0.7243561209179461,-0.8805151418782771,-0.3899573041126132,-0.8356237052939832,-0.8641500077210367,-0.6726740277372301,0.694750155787915,0.614348164293915,0.9974084105342627,-0.09819223592057824,-0.5310197821818292,-0.10413282224908471,-0.631641783285886,0.652276081033051,-0.43353940080851316,-0.05063166609033942,0.6441497812047601,-0.5253008832223713,-0.029698384925723076,0.9895453373901546,-0.020270355511456728,0.5963183771818876,0.20861108042299747,-0.0035667172633111477,-0.9764665975235403,-0.3122088867239654,0.74356545554474,0.35531342681497335,0.5310692093335092,-0.9833565168082714,-0.2839883822016418,0.9587001325562596,0.512299238704145,-0.26607009302824736,0.9386009098961949,0.30549241742119193,-0.3224915466271341,-0.2569262282922864,-0.7526523033156991,-0.7209350927732885,0.9249157747253776,-0.6808929066173732,0.48501344257965684,0.6144922780804336,0.6299103135243058,-0.6471750074997544,-0.7156997420825064,-0.43480984354391694,-0.41669246507808566,0.05852185981348157,-0.5792023716494441,0.11175108980387449,0.7604571976698935,0.0047034877352416515,0.33809010963886976,0.6157759735360742,0.5343677676282823,0.0737863746471703,0.8729870631359518,-0.1485646879300475,0.7048651007935405,-0.11065300460904837,0.998433371540159,-0.27038958901539445,0.3352480996400118,0.1140017001889646,0.48675791965797544,-0.7424467150121927,0.7331575895659626,0.7912782290950418,0.06004968471825123,-0.81476333970204,0.8833455918356776,0.7737793610431254,-0.3347100433893502,0.15166813181713223,0.9062869776971638,-0.031199605204164982,-0.8316247882321477,-0.10988581459969282,0.894313158467412,-0.8407518188469112,0.28837100276723504,0.9830084312707186,0.24575909692794085,-0.4426124282181263,-0.538806289434433,0.36098668398335576,-0.3526201043277979,0.48965982533991337,0.5878973696380854,0.8089244337752461,0.7621354963630438,0.3861016258597374,0.7420910191722214,0.6850457992404699,0.1527155009098351,-0.5792368059046566,0.20069507881999016,-0.6840847386047244,-0.5875761052593589,-0.15668568667024374,0.03547570761293173,0.5979060847312212,-0.7554586925543845,0.4649990354664624,0.42905754782259464,-0.6016509206965566,-0.3921534731052816,0.30984581960365176,0.3029059451073408,0.3594034807756543,-0.7460660478100181,0.6738265808671713,0.4582617203705013,-0.5472715995274484,-0.8071504635736346,0.9669393729418516,0.1313836514018476,-0.5242546699009836,-0.7591850631870329,-0.34264655597507954,0.44302258361130953,0.6311658658087254,-0.9454840417020023,0.6991261173970997,0.8003357136622071,-0.5091843213886023,-0.1696683750487864,0.07022981066256762,-0.6317745880223811,-0.7649049181491137,0.3949200361967087,-0.5067585734650493,0.5274589229375124,0.2634219294413924,0.2648615459911525,-0.4200048930943012,-0.3555341577157378,-0.3982881042174995,-0.047999515663832426,0.7830367940478027,-0.09559220261871815,-0.5928790257312357,-0.8388371239416301,-0.9615249964408576,0.018966498784720898,-0.8812873680144548,-0.3079277058131993,-0.5332543491385877,-0.6507789078168571,-0.21573778428137302,-0.8955817176029086,0.46681969054043293,0.4256285196170211,0.9034018684178591,-0.367037455085665,0.23248954489827156,-0.3790404489263892,0.23426410229876637,-0.4914164496585727,-0.949911190662533,-0.7468186030164361,0.10242349747568369,0.6147285578772426,0.30807132786139846,0.142478100489825,-0.9060711725614965,-0.3998094527050853,0.5055393720977008,0.17465330474078655,0.1406663185916841,0.5773276821710169,-0.6843033293262124,-0.30596822453662753,0.8441807562485337,-0.8007212337106466,-0.8167404029518366,0.7426251685246825,0.11358750518411398,0.8484110068529844,-0.8467447073198855,-0.5050653889775276,-0.4009160017594695,0.6583989462815225,0.06076803244650364,0.023523426614701748,-0.05400381097570062,-0.1615621536038816,-0.9676458365283906,0.3780803997069597,0.4531478355638683,-0.06899681268259883,0.8496433049440384,-0.3851462616585195,0.16761330654844642,0.2357231960631907,0.7820730684325099,0.9070236799307168,-0.23980396753177047,0.7000777036882937,-0.20614390028640628,0.16118502104654908,0.7349463813006878,-0.18107454013079405,-0.09744013799354434,0.6639229129068553,0.8365991781465709,0.2723662876524031,-0.6655266010202467,0.6034668344072998,-0.6483814958482981,0.5560371191240847,-0.7820828878320754,-0.34644424775615335,-0.4235028298571706,-0.16006050631403923,-0.46440900256857276,0.5341835878789425,0.06443787971511483,-0.2150814039632678,0.4835298485122621,0.9095021737739444,-0.9315889342688024,-0.6929396912455559,-0.9377043941058218,-0.22587069496512413,-0.7312687179073691,-0.8157113147899508,-0.24898078199476004,0.4014050937257707,0.6201684544794261,-0.6713121780194342,0.4186826688237488,0.24372583534568548,0.5303480783477426,-0.6670216987840831,0.2637584921903908,0.5205655433237553,0.3557489546947181,-0.4087090538814664,0.8447602074593306,-0.5915166595950723,0.11381129501387477,0.8257578336633742,0.7168466569855809,-0.20567502034828067,0.009621681179851294,-0.9823020799085498,-0.7056910344399512,-0.648448923137039,0.7938171033747494,-0.4875710685737431,0.5631896900013089,0.974651194177568,0.13065112615004182,-0.9349807980470359,0.4277127729728818,0.7767823673784733,0.9161855629645288,-0.9618861326016486,0.040416229516267776,-0.3862169631756842,-0.9502258938737214,0.7941350671462715,0.3559504193253815,0.06082326779142022,-0.2580229798331857,-0.1375673902221024,-0.5541830533184111,-0.055868593510240316,0.15404986683279276,-0.4446519408375025,-0.8681209241040051,0.037952892016619444,-0.8852263521403074,0.8485352345742285,-0.6594032435677946,0.6985804694704711,0.3747088769450784,-0.41342643555253744,0.7228760295547545,0.11676189908757806,-0.7889803294092417,-0.7125324541702867,-0.5797884915955365,-0.8765766974538565,-0.17618279438465834,-0.38991206232458353,-0.9204462342895567,-0.7349216002039611,0.9237308711744845,-0.8635816010646522,0.33270160807296634,-0.11456788936629891,-0.774222242180258,-0.7730474141426384,-0.009976457804441452,-0.7797443680465221,0.36511762952432036,0.7730200113728642,0.2560788793489337,-0.166345642413944,-0.9456462259404361,-0.9484394323080778,-0.8561315992847085,-0.038451471365988255,-0.18019123282283545,-0.1699473182670772,-0.8459286685101688,-0.9777531372383237,-0.2564294347539544,-0.2497793473303318,-0.3571121064014733,-0.6261032000184059,-0.5917347320355475,-0.9816415016539395,0.28514064755290747,0.10513651929795742,0.13065346889197826,-0.35217041010037065,-0.8787344484589994,-0.3005394716747105,-0.7594489878974855,0.697273415978998,-0.8128794594667852,0.35992665542289615,0.28396072890609503,-0.38273150427266955,-0.4518013158813119,-0.3178048739209771,-0.08251560805365443,0.13290243968367577,-0.2366751916706562,-0.9843358509242535,0.0850134533829987,0.691061882302165,0.8330887421034276,-0.9744305131025612,-0.9347033808007836,-0.28451194893568754,0.4083667667582631,-0.4199271588586271,0.7928829188458622,0.3271571262739599,0.5031804707832634,-0.1859780685044825,-0.5295790303498507,-0.12382003990933299,-0.4311412083916366,-0.11610596068203449,-0.6942576207220554,-0.022289450746029615,-0.3720176024362445,0.7702069450169802,0.19363145111128688,0.4668423756957054,0.21155941719189286,-0.1921782772988081,0.3619915717281401,-0.3294835528358817,0.35771349538117647,-0.536354589741677,0.7788580018095672,-0.81859365478158,-0.4967827806249261,-0.7970727295614779,0.4135615015402436,0.4597066347487271,-0.04867884377017617,-0.6839896366000175,-0.1774335573427379,0.3875327683053911,0.08227465627714992,0.28638381650671363,0.5118468813598156,-0.018502154387533665,0.3019712148234248,-0.20244299247860909,-0.3957406682893634,-0.8753166133537889,0.4850893742404878,0.29329571686685085,-0.25454790191724896,-0.35777368722483516,-0.9393335855565965,0.560803095344454,-0.44223294127732515,0.6437105108052492,-0.27701307786628604,0.33000577706843615,0.48208658350631595,0.33810640778392553,-0.7236166554503143,-0.008499432355165482,0.9646364292129874,-0.04932808084413409,0.7658172659575939,-0.554735763464123,0.5578881572000682,-0.952057050075382,0.9404386817477643,-0.026228750590234995,-0.7983697522431612,-0.06297450652346015,-0.6929819155484438,-0.7214435432106256,-0.3772457460872829,-0.09470080165192485,0.0282698473893106,-0.48972349939867854,0.9953675093129277,0.06781517108902335,-0.10170367872342467,-0.030874420423060656,-0.3027617339976132,-0.11881278967484832,-0.4945617252960801,0.9741815035231411,0.658403713721782,-0.13072876539081335,-0.12673401646316051,5.490565672516823e-05,-0.5326202139258385,0.35332590620964766,0.8054551333189011,-0.020697193685919046,0.4074096782132983,0.542525724042207,-0.8940583039075136,-0.10597134474664927,-0.18646793207153678,0.3243192434310913,-0.2775275190360844,-0.35643614968284965,0.27856449456885457,0.6281873160041869,0.6277723405510187,0.5350089715793729,-0.9258684287779033,-0.9392503323033452,0.04757404327392578,0.5428974437527359,-0.3785435729660094,-0.5084947356954217,0.9651231332682073,0.37231820449233055,0.18578058341518044,-0.6652543167583644,-0.4332808218896389,0.7567254132591188,0.040701632387936115,-0.0004326500929892063,0.2358414065092802,0.3320179465226829,-0.3691418832167983,0.049535445868968964,0.9901541918516159,-0.45217531686648726,-0.37970422115176916,-0.8152154185809195,0.903582850471139,-0.6473129102960229,0.27315695909783244,-0.21053456934168935,-0.5702782399021089,-0.51557103311643,0.29720793617889285,-0.4168515671044588,-0.2770843622274697,-0.5010758740827441,0.9832809930667281,-0.20130033046007156,0.3616639035753906,0.08953935373574495,0.2133598723448813,0.5679797474294901,-0.44189015263691545,0.2082735919393599,-0.32142100343480706,-0.5044369627721608,-0.7032043761573732,0.7668172204867005,-0.3212425047531724,-0.5694343559443951,-0.6015410227701068,-0.919289181008935,-0.3272158885374665,0.2864381754770875,0.5073754256591201,-0.5600152146071196,0.9377741408534348,0.04792261449620128,0.6259608059190214,0.8318962836638093,0.6352386497892439,-0.4219054263085127,-0.8961100969463587,-0.8405727655626833,-0.7765043480321765,0.9461097586899996,-0.3930112370289862,-0.7631197012960911,0.8603929481469095,-0.26213072519749403,-0.9394280472770333,-0.05060574086382985,0.9815134471282363,0.2765399403870106,0.08643051190301776,0.3402085932902992,0.6383904637768865,-0.2145541673526168,-0.8573396638967097,-0.10403110133484006,0.989986187312752,0.4473817809484899,0.4973290073685348,0.49247842049226165,-0.36108032055199146,-0.3077100650407374,-0.8034260575659573,0.35449335956946015,0.300976762548089,-0.8641560017131269,-0.8019960625097156,0.07565558049827814,-0.7761057089082897,-0.8232344635762274,0.3892818745225668,0.35099552338942885,-0.36529733007773757,-0.11020761029794812,0.5823276326991618,0.5739317494444549,0.4514859770424664,-0.48967819567769766,0.5969294044189155,0.637316728476435,-0.6834924616850913,-0.2514230012893677,-0.6029500351287425,-0.5621099867857993,0.8364018984138966,-0.8648804696276784,-0.888603316154331,-0.7654012138955295,0.10964175965636969,-0.07964656921103597,-0.21175268245860934,0.24424609076231718,0.41831987304612994,0.6833259733393788,-0.6475961324758828,-0.32038175547495484,-0.2744814306497574,0.6195745710283518,0.05443469248712063,-0.42509707482531667,-0.18857810832560062,-0.10851191589608788,0.11148127587512136,-0.6820863662287593,-0.5580934858880937,0.9169488302432001,0.3768779472447932,-0.2458112514577806,-0.9472379554063082,-0.1373247429728508,0.845251064747572,-0.82054991601035,-0.3499829703941941,0.9152044043876231,0.8295284318737686,-0.4169676499441266,-0.7681995667517185,-0.9569140551611781,-0.1408907249569893,-0.5797398425638676,-0.20057315239682794,0.13819204457104206,0.9948497321456671,-0.12274257093667984,-0.9445835179649293,0.7365222377702594,0.13685539225116372,0.8891805340535939,0.5246144994162023,0.09450613893568516,-0.8288371241651475,-0.6243140688166022,0.5835912474431098,-0.925066037569195,0.5954428473487496,0.8647416695021093,-0.4913947102613747,-0.4142998377792537,-0.3388306526467204,-0.5948499664664268,0.9616659940220416,-0.12107036355882883,0.1635421863757074,-0.5569888837635517,-0.8980211266316473,0.8496707039885223,0.6838607261888683,-0.3300674147903919,0.867769829928875,0.502955311909318,0.7539581870660186,-0.579427647870034,-0.9445234327577055,0.9270515851676464,0.8567750793881714,-0.8196095041930676,-0.7666603652760386,-0.30667142244055867,-0.9624034278094769,0.5564207485876977,-0.7187775829806924,0.01953719835728407,0.02839378686621785,0.05014016292989254,-0.3299119551666081,-0.8391288961283863,-0.8056937134824693,0.36195492977276444,0.9103016769513488,0.2570893820375204,0.3097652676515281,0.4027532488107681,-0.3841451439075172,-0.06595627497881651,0.6909879338927567,0.5099879717454314,0.4861818291246891,-0.6878740140236914,-0.013583800289779902,-0.5372211188077927,-0.1825139713473618,0.007334656547755003,-0.9608208020217717,0.8417821708135307,0.47976583195850253,0.8750349669717252,-0.9121820270083845,-0.2923523080535233,0.2515106671489775,0.518818142823875,0.8722999836318195,0.8587306281551719,-0.3912900132127106,0.30081807263195515,-0.5567473121918738,-0.5044718696735799,-0.6604442745447159,0.09563564043492079,0.4353182795457542,0.005416734144091606,-0.728336242493242,-0.24590705335140228,-0.8182001155801117,0.6555481366813183,-0.0680752363987267,0.2912515625357628,0.418807384558022,0.27569684619084,-0.4148466638289392,0.6977195842191577,0.18581243650987744,-0.5177941867150366,-0.09405417880043387,-0.19770196732133627,0.9568547420203686,0.7013734146021307,-0.18938439898192883,-0.6065512918867171,-0.12273747520521283,-0.8936155587434769,-0.5737742125056684,-0.7198691326193511,-0.80053492449224,-0.9157837056554854,-0.7580727273598313,-0.17909932043403387,0.4986591562628746,-0.028307203669101,0.36812409944832325,-0.773176696151495,-0.28970308927819133,-0.14497833279892802,0.9026198727078736,0.12338142516091466,-0.2842989698983729,-0.7833159198053181,-0.8503995379433036,-0.043418354354798794,0.9263071147724986,0.5250709685496986,-0.35496373753994703,0.11360735865309834,0.8895795303396881,0.5133357145823538,-0.3919532629661262,-0.21782284136861563,-0.9312093039043248,-0.08733188826590776,-0.7661688146181405,0.8985468223690987,0.7192917433567345,0.39314169343560934,0.9453957667574286,0.7726525785401464,-0.5674120550975204,0.8770861900411546,-0.0356479873880744,-0.9766505039297044,0.44672232726588845,-0.26410558819770813,0.18074949039146304,-0.19102870393544436,0.8913946561515331,0.7238881140947342,0.017005447763949633,0.08295284863561392,0.3377039013430476,-0.3134915544651449,0.9213026626966894,0.6736692884005606,0.7494942476041615,-0.6494891862384975,-0.41277929255738854,-0.040476405061781406,0.81541538098827,0.39242430962622166,0.2502071368508041,0.44158408557996154,-0.4962577372789383,-0.4991324916481972,0.028263582848012447,-0.49325428484007716,0.9534019106067717,-0.8723230441100895,0.6203880989924073,0.5291395150125027,-0.966454372741282,-0.3320452659390867,-0.8368323463946581,-0.4136859690770507,0.5374627732671797,-0.2709262212738395,0.8641032832674682,0.5074916556477547,-0.3717872193083167,-0.05707666790112853,-0.1845423076301813,-0.9701625294983387,-0.8791694645769894,0.07119333324953914,0.31503500137478113,0.08867107750847936,0.6459782170131803,0.733066679444164,0.7480528363958001,0.8126927842386067,-0.9384697922505438,-0.5351542220450938,-0.43309665331617,-0.4180587804876268,0.05906654754653573,-0.06514579616487026,-0.35723505122587085,-0.6805418753065169,-0.31630908232182264,0.24758107820525765,0.7735219821333885,-0.5730093158781528,-0.45245096273720264,-0.5332751702517271,-0.4757067421451211,0.7174164350144565,0.3850850504823029,0.8772190231829882,-0.6834442494437099,0.07339611556380987,-0.1775522716343403,0.8038496007211506,-0.35294273728504777,0.6050434042699635,0.43058597296476364,-0.6645497404970229,-0.2504283678717911,0.31008020509034395,0.11465325579047203,-0.012755513656884432,-0.47836149390786886,-0.6601396114565432,-0.7852572812698781,0.4478848986327648,0.9694740031845868,-0.05088290944695473,0.5516080809757113,0.014368541538715363,0.4771042871288955,-0.9992268243804574,-0.8406696603633463,-0.1179141285829246,0.8534762510098517,0.1488039093092084,0.09109994908794761,0.4502423033118248,0.5606650160625577,0.01388265285640955,-0.9454719200730324,-0.8146288967691362,0.1758694900199771,-0.1416409146040678,-0.6661635413765907,-0.8422453962266445,-0.9296833798289299,-0.32378784753382206,-0.9789652796462178,-0.3926152349449694,-0.014843655750155449,0.36010310938581824,-0.10706992959603667,0.04144076397642493,0.8011463135480881,0.332401302177459,0.5740643204189837,-0.43559399666264653,-0.45385765563696623,0.016834134235978127,0.45191381406039,0.6120754568837583,0.1926998603157699,-0.5368416802957654,-0.16712267277762294,0.7796440236270428,-0.01130582857877016,-0.061412256211042404,-0.3314955295063555,0.39206333737820387,-0.23315725475549698,-0.863431594800204,-0.38090260652825236,0.3416215805336833,-0.10541792865842581,0.07521884515881538,-0.8134902911260724,-0.8117688465863466,-0.1408111467026174,0.5456993095576763,-0.29141773702576756,-0.9556123539805412,0.23409582488238811,0.25486034667119384,-0.9454183205962181,0.4945350084453821,0.6993003967218101,0.7063263664022088,0.6226687715388834,-0.9244210077449679,0.2095687440596521,-0.3960096328519285,-0.5617482829838991,0.5924008591100574,-0.5849846401251853,0.01780084613710642,0.7733936556614935,0.6130335102789104,-0.7779653454199433,-0.2135622687637806,-0.7800736180506647,-0.5579387848265469,-0.6329391617327929,-0.6440755319781601,0.18094210885465145,-0.678247656673193,0.7925203484483063,0.7617476400919259,-0.8764616190455854,0.2560499468818307,-0.3469703793525696,0.900083583779633,-0.7947792019695044,0.6286777472123504,-0.7559990743175149,-0.8438100600615144,0.4606807632371783,0.7661278918385506,-0.28273545391857624,-0.15114683751016855,-0.07084012357518077,0.038871044758707285,-0.4139765743166208,-0.3926266715861857,-0.4960867529734969,-0.0031432881951332092,0.8296529576182365,-0.7207702281884849,-0.27642954559996724,0.17406536638736725,-0.9941276325844228,0.29834216041490436,0.29899653187021613,-0.6027832846157253,-0.8625593027099967,-0.5881368364207447,-0.6655033980496228,0.47150963405147195,-0.7235493143089116,0.9034503921866417,0.6815747478976846,-0.2609044057317078,-0.15836826618760824,0.4111711657606065,0.7479260787367821,0.5166459875181317,0.6796167269349098,0.997804629150778,0.2235961016267538,0.3894668212160468,-0.2584131443873048,0.19701355881989002,-0.32311817118898034,-0.3084461917169392,0.9516623918898404,0.22284675482660532,0.9400593652389944,0.855334403924644,0.36086672358214855,0.36604636861011386,0.20814702892675996,0.6607187837362289,-0.3477580244652927,0.5015530548989773,0.5085939695127308,-0.04657673463225365,-0.42965560778975487,-0.30238190619274974,0.45152877131477,0.7185494201257825,-0.8982360069639981,0.5579434237442911,0.12187167443335056,-0.41078363871201873,-0.88201988581568,0.15305443853139877,-0.690848242957145,0.609624263830483,0.3294583768583834,-0.05106662679463625,-0.4099466297775507,0.46352427871897817,-0.6523232106119394,-0.40499094454571605,-0.7139961030334234,-0.5519459461793303,0.380864180624485,-0.8057310902513564,0.9797942540608346,-0.8116432237438858,0.49783272575587034,0.5025670705363154,-0.02464149659499526,-0.6166202588938177,-0.09935871697962284,0.8933009160682559,0.571344867348671,0.060705745592713356,-0.5893079359084368,-0.457212436478585,-0.7070564064197242,-0.09371908428147435,0.24670563451945782,0.7724929391406476,-0.4785652286373079,0.9819675395265222,-0.5924264872446656,0.764265684876591,-0.6032592640258372,-0.05239641573280096,0.5876402724534273,0.6627271813340485,0.23281697276979685,0.9019131874665618,0.8460952206514776,-0.5555095034651458,-0.49001165060326457,-0.9783465582877398,0.2283280249685049,-0.24916012026369572,0.3861768920905888,0.05055587738752365,0.8003234416246414,0.045407612808048725,-0.6113421330228448,-0.3258319143205881,-0.9425675394013524,-0.40914995642378926,0.6967256367206573,-0.6112693785689771,-0.6604625307954848,0.06492264941334724,-0.9429675722494721,-0.34971731156110764,-0.3962791729718447,-0.3500751247629523,-0.9444609549827874,-0.3212749301455915,-0.9881225484423339,-0.6184152374044061,0.6290018879808486,0.8289732467383146,-0.5490093529224396,-0.2287262794561684,-0.7383151673711836,0.5431732921861112,-0.48126353695988655,-0.34533520648255944,0.5350198512896895,0.9266175734810531,-0.8158268984407187,0.3608415671624243,-0.16977745154872537,-0.40623742435127497,-0.9080454944632947,-0.24385800771415234,0.8139720121398568,0.3529217718169093,-0.42640792299062014,0.1687812525779009,-0.7108037872239947,-0.4028712026774883,0.17476928094401956,-0.12322245445102453,-0.2271582344546914,-0.03881601523607969,-0.8904294199310243,0.013617829885333776,-0.4068134115077555,0.46146161714568734,0.7443726835772395,0.8091596881859004,0.3108430025167763,0.7935444246977568,-0.6839504260569811,-0.511335605289787,-0.25258269999176264,0.847398360259831,-0.34840767085552216,0.24249632796272635,0.306015201844275,0.6601286572404206,0.9567001783289015,0.5139772272668779,-0.059624907560646534,-0.9022139771841466,-0.4319336605258286,0.7419595504179597,-0.4993715756572783,0.7848563459701836,-0.12084062956273556,-0.6265535219572484,-0.9530223859474063,0.11892392858862877,-0.6244062935002148,0.7730409661307931,-0.368746732827276,0.8150791772641242,-0.7797903106547892,-0.5827786093577743,0.15151914907619357,-0.4520197710953653,-0.5417386582121253,0.5899442131631076,-0.20021750405430794,-0.6450650901533663,-0.8759414730593562,-0.7336903791874647,0.5711897979490459,-0.8518654434010386,0.6658168202266097,-0.6284432495012879,0.5424785842187703,0.8869995861314237,0.2157243094407022,-0.054528940469026566,0.9891795050352812,-0.1556688961572945,-0.4860643707215786,0.5596958640962839,0.40673584677278996,-0.6592278857715428,0.9267055685631931,0.539793913718313,-0.5524160047061741,-0.40332591719925404,0.5516434134915471,0.6053244266659021,-0.2014160151593387,0.8927955869585276,0.1838093949481845,0.5663002571091056,0.18370910827070475,-0.13063621008768678,-0.48966766195371747,0.571973844897002,-0.971738753374666,-0.3336904807947576,0.3452748470008373,-0.9119064947590232,-0.19546683644875884,-0.63191794231534,-0.7656029392965138,-0.9746465533971786,0.07020996324717999,-0.9863621485419571,0.20628747018054128,-0.07232804363593459,-0.6253834282979369,0.5162358349189162,0.44915363658219576,-0.7154347193427384,0.557518323417753,-0.005187495611608028,0.04404400335624814,-0.4132665544748306,0.995868009980768,-0.7130147484131157,-0.5762602188624442,-0.4113207752816379,0.9345421087928116,-0.13899134565144777,0.01613761531189084,0.5067729935981333,0.783931733109057,0.7316269646398723,-0.8998767365701497,-0.524398781824857,0.34631451638415456,-0.6764837023802102,-0.43044073646888137,0.1462744940072298,0.013010080438107252,0.7337138028815389,-0.311213718727231,-0.950742025859654,-0.2724920026957989,0.0634548026137054,-0.5866499836556613,-0.6583647006191313,-0.09638788364827633,0.8573699905537069,0.8635232858359814,0.09801613772287965,-0.9824023768305779,-0.9706856273114681,0.9067746931686997,-0.5811113519594073,-0.7147745848633349,-0.3073995700106025,-0.529902218375355,0.14541236497461796,0.8289588955231011,0.6362343840301037,0.7133540897630155,0.8042582464404404,-0.8376157581806183,0.00024188775569200516,-0.6387462825514376,0.4824014804325998,-0.05957090761512518,0.8212493364699185,0.4450856177136302,0.7631764062680304,0.06364115094766021,-0.9577093827538192,-0.8733794596046209,0.19741238467395306,0.2936895810998976,-0.001315754372626543,-0.7455437094904482,-0.7561708735302091,0.09017545962706208,-0.558639963157475,-0.8175641181878746,-0.6591964047402143,0.2097150320187211,-0.43721793266013265,0.8399921711534262,-0.33025404904037714,0.14386148797348142,0.9148932644166052,0.8984845615923405,-0.7485614474862814,-0.33770893700420856,-0.9051131433807313,-0.24032118637114763,0.4927111719734967,-0.6397390412166715,-0.05915427207946777,0.06439585844054818,-0.045267429668456316,0.7038621664978564,-0.16172321885824203,0.267094804905355,-0.34804364340379834,-0.6231137276627123,-0.9962418326176703,0.13715646509081125,-0.17417985806241632,0.6878131441771984,-0.05699580814689398,0.1768747721798718,-0.714634845033288,0.10989803960546851,-0.48525817785412073,0.4991739853285253,0.6531281643547118,-0.5126918638125062,0.24761581234633923,0.31986342277377844,-0.8878617417067289,0.2348049613647163,0.983576450496912,-0.020519038196653128,0.7272830507718027,-0.4913908187299967,-0.034961821511387825,0.5038469228893518,-0.12986648315563798,-0.40375375002622604,-0.23233043774962425,-0.7263577557168901,-0.10402458999305964,-0.36720117926597595,0.9180785221979022,0.9801902179606259,-0.5875198347494006,0.6529202247038484,0.8818142665550113,-0.7482881844043732,-0.6769940168596804,-0.46995200775563717,-0.7787183760665357,0.7798463366925716,0.9399507809430361,-0.9473441420122981,0.23073868872597814,0.38380890898406506,0.4034015485085547,-0.5543516343459487,0.8347131437622011,0.3315511676482856,0.5786859174259007,-0.25769272865727544,0.9791743401437998,0.2819658941589296,-0.09432519227266312,-0.046316453255712986,-0.7595768966712058,0.6181260761804879,0.5821520164608955,-0.04889639001339674,-0.026081221643835306,0.4241536185145378,0.6011319644749165,0.2183049228042364,0.6084641651250422,0.40884587820619345,-0.8928001145832241,0.7501163412816823,0.24610293935984373,-0.22145459614694118,-0.018280446995049715,-0.38810811610892415,0.9740056176669896,0.6245226375758648,0.49462561728432775,0.47832832718268037,0.43590320367366076,-0.6305054551921785,0.05564891221001744,-0.8847619681619108,-0.14652990829199553,-0.25604389887303114,-0.17683380376547575,0.750100230332464,-0.2938275318592787,0.8242158656939864,0.8264345512725413,0.020394079852849245,0.7731866426765919,-0.7730987779796124,0.5610347571782768,-0.44424878526479006,-0.07265391340479255,0.20108167128637433,-0.12926923716440797,-0.7504441542550921,0.2968853865750134,0.8576092314906418,-0.20430005202069879,-0.18490961473435163,-0.9857485960237682,0.9623827198520303,0.6922616772353649,0.7957168011926115,-0.7065749396570027,-0.5575601602904499,0.9313022526912391,0.9207182647660375,0.04762078169733286,0.6625514999032021,-0.20591201866045594,-0.6263241446577013,-0.5443304190412164,0.14988791989162564,-0.5687782624736428,0.3728756671771407,0.9166490868665278,0.7181853144429624,-0.3446949399076402,-0.03928025346249342,-0.5392366517335176,0.21257230313494802,-0.49265193101018667,0.6174318506382406,-0.8550568330101669,-0.57423185557127,0.5860159457661211,0.3884726408869028,0.3443369213491678,0.08061999222263694,-0.5397626105695963,0.46189372055232525,-0.3119367975741625,-0.040184236131608486,-0.47008358407765627,0.6854237569496036,0.08769801957532763,0.768596590962261,0.5055774399079382,-0.5987010877579451,0.5659038191661239,-0.09842944890260696,0.9669934511184692,0.3946744669228792,-0.06216347590088844,0.7868654378689826,-0.43634128337725997,-0.6940656076185405,-0.721988657489419,0.7829956971108913,0.6595127889886498,0.5149237872101367,-0.1494774306192994,0.1311725969426334,0.4230699213221669,0.3450999013148248,0.8874662583693862,-0.09444953268393874,0.9778341697528958,-0.9570373119786382,-0.9142941869795322,-0.5715365735813975,-0.614201673772186,0.5922257374040782,-0.21565483277663589,-0.7612466071732342,-0.9780881917104125,-0.9930139342322946,-0.11909093987196684,-0.9226962518878281,-0.06548654939979315,0.32258613081648946,0.13348142756149173,-0.5890578520484269,-0.15008055651560426,-0.44463969906792045,-0.9493425036780536,-0.07821033149957657,0.7246605288237333,0.18980409111827612,-0.1910387654788792,-0.400277279317379,0.9286378556862473,0.3642759104259312,0.01946510234847665,-0.9081975659355521,0.2582910363562405,-0.5106051410548389,-0.13072020933032036,-0.40611179918050766,-0.011020932346582413,-0.9314347174949944,-0.02533642202615738,0.04270335426554084,-0.9922411353327334,0.806055492721498,-0.6157825775444508,0.5250366269610822,0.5215510232374072,0.8151733386330307,0.09261784283444285,0.8737285281531513,-0.07081432407721877,0.8045600722543895,0.7077521113678813,0.6712789414450526,0.5182806686498225,-0.2425863123498857,0.9564842712134123,0.9031115625984967,0.9092762665823102,-0.714812352322042,-0.596781081520021,-0.15414054598659277,0.16336493007838726,-0.8121538604609668,-0.37877064337953925,0.35188801074400544,-0.6859383899718523,-0.9752186089754105,-0.15120222885161638,-0.8367581516504288,0.06959620956331491,0.7567947977222502,-0.15458756498992443,0.550343663431704,0.3399318694137037,-0.6933289961889386,-0.8493376858532429,-0.37102579278871417,-0.29953366750851274,0.8347219503484666,-0.006787250749766827,-0.13781534228473902,0.11380307842046022,-0.6696575745008886,-0.25158634316176176,0.09328070282936096,-0.016597602982074022,0.7570153563283384,0.31123500503599644,0.2028371086344123,-0.4235042962245643,0.8888474241830409,0.6061692773364484,0.772731083445251,-0.48260829551145434,0.7352836169302464,0.05952209187671542,0.12355866516008973,-0.5236603487282991,0.3208696534857154,0.5990528948605061,-0.4641321590170264,-0.7680438393726945,-0.005065863486379385,0.8069031070917845,0.7459102291613817,-0.022336532827466726,-0.015068599488586187,0.1717311912216246,-0.9274497949518263,0.8675168161280453,0.1547453524544835,0.7168162046000361,0.9188039335422218,0.019554733764380217,-0.12381676863878965,0.5031507518142462,-0.21872353134676814,0.5093566719442606,-0.9279367835260928,0.12349689938127995,0.02872429508715868,-0.6082966243848205,0.3821232542395592,-0.056289000902324915,-0.3156070876866579,-0.708778197877109,0.7221565940417349,-0.7386767999269068,-0.7867914009839296,0.695226511452347,-0.997112306766212,0.2528812480159104,-0.3494612528011203,0.7472389000467956,-0.28722738195210695,-0.24910734873265028,0.622787649743259,-0.08777996245771646,0.268146566580981,0.9599086968228221,-0.38812774466350675,-0.09885183442384005,-0.8074125330895185,-0.5655229920521379,0.47671742364764214,-0.6029022699221969,0.8596945782192051,0.5034091649577022,0.6096279630437493,0.941531466320157,0.3872662205249071,-0.8323757718317211,0.18134440667927265,-0.5392520604655147,0.822664113715291,0.4650509189814329,0.1153681268915534,0.16672668512910604,0.10418554581701756,-0.3550505139864981,0.22919514030218124,-0.3873134017921984,0.6837619114667177,0.46857241122052073,-0.7067911173216999,-0.5323037817142904,0.6559099196456373,0.9232904091477394,0.9875943544320762,-0.24463878897950053,0.7510174247436225,0.11146733351051807,0.44838640792295337,-0.08867896907031536,0.7236361890099943,-0.5917953019961715,-0.5392490276135504,-0.9886086210608482,-0.7260091928765178,-0.34803250804543495,0.4348772163502872,0.44228668231517076,0.008989154361188412,-0.46177539927884936,-0.6258428054861724,-0.4872579835355282,0.8456380125135183,-0.9302515359595418,-0.6856230963021517,-0.9963725837878883,-0.5098185390233994,-0.26296004094183445,-0.6899325964041054,-0.1978200040757656,0.7518275203183293,0.7257246058434248,0.0806474769487977,-0.1480720262043178,0.9363118493929505,-0.3480239985510707,0.5930308201350272,0.5924282493069768,-0.597390347160399,-0.9158584028482437,-0.8750130264088511,-0.4203358795493841,0.7184127210639417,-0.09403153555467725,-0.15008435165509582,-0.6101410198025405,0.8171174176968634,0.20213434658944607,-0.3378248452208936,0.8449943484738469,-0.30386740854009986,0.20821527065709233,-0.44123658537864685,0.19408994494006038,0.9045969867147505,-0.09733162494376302,0.2258993131108582,-0.2594323456287384,-0.17075019795447588,-0.12317970441654325,0.6001141113229096,0.004985309671610594,0.9346497445367277,-0.45214872201904655,-0.15634903125464916,0.6384891481138766,0.762104878667742,-0.77064702892676,-0.8268423099070787,-0.1848295032978058,0.2742296583019197,-0.8585389493964612,-0.6925101899541914,0.7950516189448535,0.4421795653179288,0.9613693868741393,0.7959911688230932,-0.8202279442921281,-0.5445207664743066,0.93573427060619,0.026199474930763245,-0.41648266091942787,0.8680474138818681,0.360431345179677,0.9929113653488457,0.3485433738678694,0.45878775091841817,0.09393625566735864,-0.3406488602049649,0.8350861445069313,-0.5214505577459931,-0.39580710185691714,0.1265332535840571,-0.7799269584938884,-0.47810180485248566,0.101993209682405,-0.6566985612735152,-0.002072677481919527,0.651770525611937,0.9396789097227156,0.6161136394366622,-0.6289459383115172,-0.29494131123647094,0.007640546653419733,-0.7583750053308904,-0.2111993208527565,0.414947222918272,-0.9217754122801125,0.9844841714948416,-0.5514214728027582,-0.16817072173580527,-0.525549026671797,0.10442038299515843,-0.3056599418632686,0.9869566545821726,0.3659812374971807,0.6966687561944127,-0.40367311239242554,0.1371572376228869,0.9706765417940915,-0.7362981247715652,0.5208871732465923,0.7995254248380661,-0.1964359343983233,-0.89053691085428,-0.005484668537974358,-0.860967353451997,0.07084138644859195,0.5013526971451938,0.2880974165163934,0.1902387524023652,-0.5324944276362658,-0.2382500353269279,-0.4625215488485992,-0.7558065629564226,-0.4572090273723006,0.5982680218294263,-0.7415981302037835,-0.8801912870258093,-0.017221849411725998,0.2591070425696671,-0.6955133401788771,-0.8152725324034691,-0.7478850316256285,0.19034520536661148,-0.24101246614009142,-0.2598635843023658,-0.5584273058921099,-0.4376543816179037,-0.28200380271300673,0.7559344894252717,-0.8348556887358427,-0.008675002492964268,-0.6807775618508458,0.872595468070358,-0.3609883254393935,-0.21912648295983672,0.4060957906767726,-0.6787956333719194,-0.7131865401752293,-0.044256155379116535,0.847533255815506,0.6451501282863319,0.26498544309288263,0.13896267907693982,-0.3375624683685601,0.831064039375633,0.4860694375820458,0.022689378820359707,-0.4139870563521981,-0.9763207603245974,0.3904043114744127,0.025817143730819225,-0.1444058669731021,-0.6096888352185488,-0.023941310588270426,0.4005904011428356,-0.687558292876929,-0.0579627132974565,0.21250738762319088,0.8840274116955698,-0.63190842512995,-0.33937828056514263,-0.4257768336683512,-0.9567367429845035,0.8961625071242452,-0.860924827400595,0.7000278276391327,-0.8789370455779135,0.705128334928304,-0.5907785668969154,0.7966308784671128,-0.14590595802292228,-0.3390768594108522,0.8048111256211996,-0.32333769416436553,-0.3118463554419577,0.780202645342797,0.033175956923514605,0.37106024799868464,-0.3781171580776572,0.5547248255461454,-0.9759343964979053,-0.49854177748784423,0.7795516303740442,-0.4605484330095351,0.43903399584814906,-0.1901884227991104,0.29237676598131657,0.5790349747985601,-0.04106704983860254,-0.23982222704216838,-0.6575083723291755,0.3048810353502631,0.02481018891558051,-0.08951573679223657,-0.3515883139334619,0.12396795954555273,0.11269335215911269,0.7660791133530438,0.677764592692256,-0.6894852528348565,0.9990588398650289,-0.545376954600215,-0.08110639965161681,-0.6397726703435183,-0.720743965357542,-0.7751003340817988,0.6640097699128091,-0.40874321991577744,0.7524573192931712,-0.4278101325035095,0.1843283181078732,0.34736672369763255,0.11238431837409735,0.9727119840681553,-0.9787937276996672,0.6334637198597193,-0.5140299815684557,0.6085154837928712,0.1209258227609098,0.12203129613772035,-0.7308490416035056,0.24930509645491838,0.7353302878327668,-0.8519831378944218,0.9899907018989325,0.1521570160984993,-0.9314814852550626,-0.912641785107553,0.6458276160992682,0.6826041885651648,-0.7795799011364579,0.8297074353322387,-0.6841529267840087,0.7595741110853851,-0.3641981715336442,-0.3162085306830704,-0.8672028067521751,-0.8131014849059284,0.3785382532514632,-0.8181628636084497,-0.35421908739954233,-0.2915765424259007,-0.036720330361276865,-0.1988065093755722,-0.8697379021905363,0.08142650360241532,0.8170338468626142,0.9129019984975457,-0.3393542990088463,-0.6887384625151753,0.5216019423678517,-0.1919852546416223,-0.6512090503238142,-0.9198671826161444,-0.4424778572283685,0.2214656677097082,-0.4401571643538773,0.9162926599383354,-0.9104013731703162,0.2670552055351436,0.110032191965729,0.5410781833343208,0.5348560968413949,-0.3294083853252232,-0.9108751071617007,0.8517861431464553,-0.6958365240134299,0.8570321402512491,-0.3409531111828983,0.4863031320273876,-0.5368686895817518,0.6488991645164788,0.7382374959997833,0.38220620807260275,0.9065576703287661,0.3657184769399464,0.037150914780795574,-0.6009155684150755,0.06877085473388433,0.11604800121858716,0.688675063662231,0.05118809174746275,-0.8901293957605958,-0.78110859869048,-0.48143391869962215,-0.7175763729028404,-0.7222926416434348,-0.7368260719813406,-0.9144168286584318,0.1906373924575746,0.861329713370651,0.12190658878535032,0.05149660957977176,0.7934462861157954,-0.8275420353747904,-0.32850581547245383,-0.6008738134987652,0.16133754048496485,0.4246364454738796,-0.23286963673308492,-0.09172630030661821,0.35964652011170983,0.37870778888463974,0.14703124342486262,-0.7643299475312233,-0.8535196795128286,0.5391425462439656,0.25730582047253847,0.2958507724106312,-0.2594030755572021,-0.057997267227619886,0.5340406387113035,0.7309767454862595,0.3581974063999951,0.5587337305769324,-0.622754754498601,-0.7280011768452823,-0.6860227254219353,-0.31459905905649066,-0.5799155025742948,0.8733406253159046,0.4137990796007216,-0.5818244521506131,-0.8319265050813556,0.7180973412469029,-0.8749518813565373,0.58858627313748,0.9355959203094244,-0.3909597685560584,-0.4263132126070559,-0.29673702409490943,-0.26798367081210017,0.6482606246136129,-0.0424933098256588,0.7927797394804657,-0.1449391166679561,0.12497388757765293,-0.9356963713653386,0.4121443936601281,0.6749762939289212,0.8691375814378262,-0.9549252376891673,-0.3412806508131325,-0.38011406920850277,-0.2021774733439088,0.5542224100790918,0.34538210555911064,0.022487451788038015,-0.07870885916054249,0.8010150138288736,0.9878460969775915,0.4195577804930508,0.009407177567481995,0.7050641840323806,0.7597205326892436,0.47572160232812166,0.7278404315002263,0.6325024464167655,0.24026699736714363,-0.2501516700722277,0.34719432005658746,0.1440164791420102,0.7951051467098296,0.046892363112419844,0.9422708679921925,-0.6220974931493402,-0.464983148034662,-0.4885034216567874,0.8280306183733046,-0.15172523446381092,-0.3236486245878041,0.18550460413098335,-0.06956409756094217,0.750440320931375,0.5006151325069368,-0.6969438786618412,-0.33823008090257645,-0.7972071934491396,0.0780223524197936,0.8943606801331043,0.7454393832013011,-0.9015129832550883,-0.5154114179313183,-0.5585867282934487,0.07933326624333858,-0.11636963440105319,-0.7029582392424345,-0.155772409401834,0.062068270053714514,-0.7422604272142053,0.7935025449842215,0.8097502002492547,-0.1952194171026349,-0.05228859884664416,0.18273053783923388,0.2283664969727397,0.283878986723721,-0.6130747352726758,0.8087618607096374,0.5456803934648633,-0.8783213733695447,0.5860647051595151,-0.9609180544503033,0.10063931671902537,-0.5899598603136837,0.5518584153614938,-0.04260562639683485,-0.9397250032052398,0.6264532431960106,0.5081164464354515,0.8614924713037908,0.16459662467241287,-0.5210648202337325,-0.962474181316793,0.34507580334320664,-0.6115293689072132,0.4271223237738013,0.6151217543520033,-0.2829241044819355,0.3880180404521525,0.406206619925797,-0.7787035619840026,0.8047893540933728,-0.47823268407955766,-0.9501703754067421,0.519252194557339,0.8614314016886055,0.07691939687356353,0.9000105154700577,-0.8486303999088705,0.1911759739741683,-0.3883203756995499,-0.007351316045969725,-0.712837555911392,0.7957530468702316,-0.15647090133279562,-0.6249882192350924,0.8920210627838969,0.384196471888572,-0.2617180049419403,-0.25016405899077654,0.16752008302137256,-0.8554430739022791,-0.9557489766739309,0.32715415256097913,-0.4831063556484878,-0.48661036556586623,-0.7106369137763977,-0.1651915549300611,-0.8704960597679019,0.2502759713679552,-0.7841397756710649,-0.44295213371515274,-0.1494667693041265,0.2685672305524349,-0.283002114854753,0.8145095431245863,0.5729064280167222,-0.3732009492814541,-0.9407092467881739,0.9516333029605448,-0.9045413108542562,0.8028419399634004,0.9069843348115683,-0.9751510093919933,-0.06765618175268173,-0.728832894936204,0.07336513698101044,0.7983271623961627,-0.9949222574941814,-0.6389279579743743,0.3764592441730201,0.8516031624749303,0.21794384764507413,-0.47922391444444656,0.41342716570943594,-0.19493842916563153,-0.08657632954418659,-0.21274108393117785,-0.5316480142064393,0.6317775845527649,-0.3274349239654839,0.458654573187232,0.3500410174019635,-0.13519356213510036,-0.7716412213630974,-0.19243348902091384,0.4266865118406713,0.5098720290698111,0.8274273346178234,0.9425447010435164,-0.05260925926268101,0.22626138105988503,-0.8051504734903574,-0.446206861641258,-0.2809348120354116,-0.7527942517772317,-0.9188231201842427,0.6395947691053152,-0.3083883351646364,-0.5280525763519108,-0.8867704072035849,0.3232699315994978,0.1380753661505878,-0.6155324801802635,0.602412270847708,-0.16612925520166755,-0.505191040225327,-0.6081930371001363,0.9855399704538286,-0.6477964515797794,-0.1765820304863155,-0.6284511205740273,-0.15828267438337207,-0.22489435132592916,0.16910426458343863,-0.82281294465065,0.49819805240258574,-0.21797914756461978,-0.6169094000943005,0.8691146122291684,0.5819917763583362,0.9340853751637042,0.0627532722428441,0.08468196261674166,-0.9352391581051052,-0.5510172224603593,0.7649911418557167,0.603471246547997,-0.4779733372852206,-0.776271803304553,0.5834077717736363,0.8651870349422097,-0.5816829823888838,-0.2819829508662224,-0.7616376131772995,-0.2116146283224225,0.7930232104845345,0.41085562016814947,-0.6539912633597851,0.9957593991421163,0.1018277583643794,0.8089747130870819,-0.1688125254586339,0.525463820900768,-0.6406840085983276,0.03709792299196124,0.9641823242418468,-0.241256732493639,0.04671784397214651,0.26453340239822865,0.8570222072303295,-0.2974317129701376,-0.23704038187861443,-0.2754460354335606,-0.07374994130805135,-0.44322885666042566,0.765090050175786,0.3944121398963034,0.5477081285789609,-0.9047146495431662,0.2707220520824194,-0.196432295255363,0.6558534931391478,0.8252738094888628,-0.7142939968034625,-0.157494205981493,-0.7419714997522533,-0.4255876946263015,-0.33346768748015165,0.9935726416297257,-0.343995014205575,-0.6070847255177796,0.17549727717414498,0.6103883436881006,-0.7294875853694975,-0.7347582746297121,-0.08657675003632903,-0.030147875659167767,-0.6816540542058647,-0.4808965171687305,-0.09090168215334415,0.32317616371437907,0.3507403889670968,0.8414821098558605,-0.5374787151813507,0.9177117357030511,0.2674886775203049,-0.9635274708271027,-0.5766727649606764,-0.5568478060886264,0.002805855590850115,-0.8970017228275537,-0.12226451374590397,0.7625212636776268,0.9707896169275045,0.6744506703689694,-0.4743694723583758,-0.845426638610661,-0.18486336572095752,0.03945648996159434,0.5870044860057533,0.1867350055836141,0.06757650943472981,0.5448120622895658,-0.7170664174482226,0.6785226492211223,0.5288829845376313,-0.46153791015967727,0.32883639354258776,-0.027716143988072872,0.5862029432319105,-0.39731783140450716,-0.20900286687538028,-0.9654944543726742,-0.21655797120183706,0.9422714253887534,-0.9737247172743082,0.6324268518947065,0.008144210558384657,-0.6324057728052139,0.7083465410396457,-0.9714123187586665,0.8640041681937873,-0.6522140572778881,0.047441653441637754,0.8915474894456565,0.6379652060568333,0.44651876436546445,0.8983713570050895,-0.9403404276818037,-0.8808947964571416,-0.018234423361718655,-0.12313293991610408,0.7825233149342239,-0.27190725039690733,0.7981564193032682,0.1838464206084609,0.32301661372184753,-0.12757293181493878,0.8320614043623209,-0.4038930982351303,-0.06945753330364823,-0.7493335576727986,-0.37411420978605747,-0.5025688768364489,0.5561980572529137,-0.6155930506065488,0.6506767901591957,-0.050099756103008986,-0.21742251235991716,0.5619704853743315,-0.1762747084721923,-0.5500227208249271,-0.9123280504718423,-0.8828777601011097,0.6761854072101414,-0.3233244507573545,-0.49534795992076397,-0.5261141313239932,-0.4376136055216193,-0.7858205027878284,0.7409765152260661,0.5681936447508633,-0.9816731894388795,0.35332529013976455,-0.6482782238163054,0.4226057669147849,0.40676538459956646,0.04175333445891738,0.709889393299818,-0.18881690222769976,-0.23723805090412498,-0.5982390609569848,0.3203913480974734,-0.3219035994261503,0.09314516419544816,0.9793875231407583,0.7629559161141515,-0.9996684845536947,-0.7130012521520257,-0.45658808993175626,-0.3744324818253517,0.05153916636481881,0.2029655328951776,0.470593242906034,0.7940141353756189,0.48542285105213523,-0.9225175194442272,0.7345077507197857,-0.7244625366292894,0.8033419251441956,0.3153165024705231,-0.6779838083311915,-0.28208069037646055,0.5319016175344586,0.3297912455163896,0.8991459403187037,-0.24023325135931373,-0.4111735913902521,-0.6930323415435851,-0.4836982279084623,0.32397786946967244,0.22562571242451668,0.5056981253437698,-0.3189115063287318,0.7501355609856546,-0.12482713861390948,0.20225115213543177,0.6373504204675555,0.46696325624361634,-0.7894459846429527,0.30892711551859975,-0.782556829508394,-0.5853311303071678,-0.4297419311478734,-0.3701320607215166,0.9172167307697237,-0.9556765677407384,-0.022556203417479992,0.9392424272373319,0.9732329566031694,-0.48474458511918783,0.5563378152437508,-0.08748015249148011,0.22180389240384102,-0.49501759372651577,-0.004769137129187584,0.08823042782023549,-0.40887488331645727,-0.2737821089103818,0.738755329977721,0.6118595330044627,-0.1696126409806311,0.9667256600223482,-0.18987518176436424,-0.5826686900109053,-0.46221166756004095,0.5027367533184588,-0.3982947878539562,-0.22912817727774382,-0.3034054725430906,-0.10712491907179356,-0.983225669246167,-0.8295178185217083,0.11688771797344089,-0.12047298206016421,-0.2975369906052947,0.20621178299188614,-0.011808492708951235,0.6006134105846286,-0.5837539131753147,0.03340157540515065,-0.5958402655087411,0.12301179580390453,0.4061631327494979,0.1349441190250218,-0.7856121193617582,-0.956365754827857,0.858482419513166,-0.8640870908275247,-0.6900670449249446,-0.3014841447584331,0.17274574097245932,-0.3392843855544925,0.30592659302055836,-0.7797266314737499,0.49169532721862197,0.37830997724086046,-0.5955304824747145,0.3858453235588968,-0.06173485703766346,0.05081531824544072,-0.01804226730018854,0.6585316634736955,0.480558249168098,-0.5090774246491492,-0.2660949560813606,0.23027659859508276,0.44088894594460726,-0.5386480046436191,0.8500332930125296,-0.10525199770927429,0.7995040798559785,-0.6107157240621746,-0.18504289351403713,0.46634049201384187,0.6144247232005,0.36445038113743067,-0.30910586286336184,-0.6704365881159902,-0.8763528279960155,0.04779419070109725,-0.4902104386128485,0.1949203205294907,-0.6159129892475903,-0.49354220647364855,0.41378700360655785,0.925835691858083,0.2933916640467942,-0.3954370613209903,-0.7493979348801076,0.5364823597483337,0.24116921657696366,-0.7939930236898363,0.9764266777783632,0.37805973226204515,-0.8964470350183547,-0.9910024497658014,0.2486226218752563,-0.09072504891082644,0.42430710699409246,0.7344983397051692,0.7599209095351398,-0.8002911042422056,-0.8307444346137345,0.9159021046943963,-0.1894683912396431,0.9646864905953407,-0.7051585135050118,-0.6355635062791407,0.3731666994281113,-0.6579751125536859,-0.17660714546218514,-0.2115692705847323,-0.27806503511965275,-0.3197280075401068,0.9688505744561553,0.6565827266313136,0.4134035515598953,-0.27753339894115925,-0.2600347180850804,-0.3406547773629427,-0.4468444027006626,0.08960197912529111,0.5539156859740615,0.37219779333099723,0.7226602942682803,-0.6849138173274696,0.008789111394435167,0.9552233540453017,0.7648138306103647,0.43969549518078566,0.3563801432028413,0.9905520775355399,-0.3242293754592538,0.434482092037797,0.9251066357828677,-0.31789504271000624,-0.9564691283740103,0.35383963258937,0.8327353810891509,0.6161086959764361,-0.3034158777445555,-0.6960388189181685,0.9094004044309258,0.619024820625782,0.6814221818931401,-0.6340311937965453,0.6416565421968699,0.17691635247319937,-0.9432664955966175,-0.018740014173090458,0.700071875937283,0.7221447094343603,0.5576738817617297,-0.9616190129891038,-0.9296186524443328,0.14022624120116234,0.14265616377815604,-0.6944081233814359,0.04789880895987153,0.3554477537982166,0.5794853712432086,-0.15053551504388452,-0.9699752605520189,0.8075499860569835,-0.2628695033490658,0.2980721667408943,-0.2441932111978531,-0.455093149561435,0.1890472979284823,0.5818120487965643,-0.5106498370878398,-0.39843005454167724,0.2533407094888389,0.9805514602921903,0.3580739228054881,-0.7104030535556376,-0.575183910317719,-0.550220048520714,-0.8074763570912182,-0.75488087721169,-0.3749802689999342,-0.9344629449769855,0.39907691441476345,-0.9194742706604302,0.8351526036858559,0.29567268351092935,0.3066365937702358,-0.45662992307916284,-0.7900519357062876,0.18109009275212884,-0.971272783819586,-0.7055395673960447,-0.6591170472092927,0.8901937669143081,-0.6693377383053303,-0.009134824387729168,-0.41864854423329234,0.7792514720931649,0.6196256363764405,0.6518390942364931,-0.9848548085428774,-0.6153075993061066,-0.21307010855525732,0.836614747531712,-0.8646513079293072,-0.04275067523121834,0.7188721550628543,0.795735300052911,0.8829992180690169,-0.5775573262944818,0.5210356656461954,0.23353445623070002,0.2621374544687569,-0.2609339002519846,-0.151336588896811,0.7161612180061638,-0.466098768170923,0.9828508025966585,0.733176167588681,0.8811924015171826,0.3734338777139783,-0.5303474450483918,-0.20355501770973206,0.12030289601534605,-0.3165775714442134,-0.5531582641415298,-0.7026708764024079,0.5096727893687785,0.9102470478974283,-0.723919814452529,0.5384753593243659,-0.23102657310664654,0.42423190549016,-0.002332150936126709,-0.5135815534740686,-0.27522357599809766,-0.02917189383879304,0.8826693152077496,-0.9093643412925303,-0.23555333958938718,0.600061469245702,-0.6658033756539226,-0.25502927927300334,0.7527876566164196,0.869599814992398,-0.7451672656461596,-0.7405338492244482,-0.34498770255595446,-0.9756990075111389,-0.6074817078188062,0.13217618688941002,0.04874587757512927,-0.631650822237134,0.31444072676822543,0.7004503291100264,0.042175760958343744,-0.7331399428658187,0.5500077442266047,0.26836747908964753,-0.46796351531520486,0.7630066745914519,-0.277003803756088,0.6763383760116994,0.085528623778373,0.6179400039836764,-0.8452498717233539,-0.3600811972282827,0.7359711290337145,0.3817792250774801,-0.7065053274855018,0.13785449415445328,0.6957023995928466,-0.050580103881657124,-0.6610892610624433,0.3329840493388474,-0.7365676695480943,-0.40173597959801555,-0.7289486648514867,0.9925225065089762,-0.6918170787394047,-0.8727550567127764,0.8266770634800196,0.3906676871702075,0.5437119267880917,0.8289651852101088,-0.059419140219688416,0.13414352480322123,0.9047468537464738,-0.32245826069265604,-0.4762709471397102,0.9962822021916509,-0.9842160199768841,-0.4308982347138226,-0.9739871639758348,0.18960690451785922,-0.0755564165301621,-0.9447195054963231,-0.20581764448434114,0.7103533400222659,-0.4938891255296767,0.9057334032841027,-0.8610237655229867,-0.22275156620889902,-0.23142313258722425,-0.2665375447832048,-0.5348035166971385,-0.3018552609719336,0.1602602950297296,-0.47411590861156583,0.5826298450119793,0.9660125472582877,-0.5892667220905423,-0.39129629731178284,-0.8335729278624058,-0.5427584126591682,-0.6605505775660276,0.7878743885084987,-0.48602311592549086,0.5244329697452486,-0.8260852741077542,0.16490531340241432,-0.8223553616553545,-0.36792727233842015,0.34908882016316056,-0.21952057536691427,-0.5925427293404937,0.9952533515170217,-0.5536242662928998,-0.6124626067467034,-0.1892894934862852,-0.6143994820304215,0.31101173628121614,0.6149394558742642,-0.6077324789948761,-0.8124735127203166,0.42261949041858315,-0.987812724430114,-0.5057558054104447,-0.11873157462105155,0.4905127170495689,-0.2325535980053246,-0.7042862386442721,0.14380936603993177,-0.2972436798736453,0.748421702068299,-0.6276889177970588,-0.4353009145706892,0.8059646617621183,0.13730120146647096,-0.7684480026364326,-0.5272365272976458,0.5109449364244938,0.7802979070693254,-0.9738661926239729,0.03808418055996299,0.32470208453014493,-0.9350324710831046,0.9149891547858715,0.003873053938150406,-0.6151538221165538,-0.7307590823620558,0.6340531427413225,0.4897041148506105,0.8121387902647257,-0.1847337568178773,-0.14049393497407436,0.2843318874947727,-0.7299857251346111,0.01664242660626769,0.6256936020217836,0.36465462716296315,-0.5289007676765323,0.8473249208182096,-0.9888321799226105,0.09316470334306359,0.17672774475067854,-0.19835663866251707,0.602711723651737,0.7247071540914476,0.6349105825647712,-0.8158288253471255,0.23200663877651095,0.18789564725011587,-0.470493302680552,0.36676995921880007,0.8114571878686547,0.17429443448781967,-0.13221164094284177,0.8941487544216216,-0.28419287176802754,-0.22104623541235924,0.6558060124516487,-0.9857704760506749,0.8455264680087566,0.5868204822763801,0.6947205504402518,0.7233325378037989,-0.7470469693653286,0.4025131822563708,0.49787130346521735,0.7257608389481902,0.3256045491434634,-0.3253391170874238,-0.06388075556606054,-0.06249785562977195,-0.15593584720045328,0.09691298985853791,0.23804166493937373,-0.21369684161618352,-0.16472435696050525,-0.8437974033877254,-0.22727386327460408,-0.8732305066660047,-0.34524422185495496,-0.02294966485351324,0.5413330146111548,0.9002935043536127,-0.6830304241739213,0.316268477588892,-0.3010264872573316,0.5801770030520856,0.7023066151887178,-0.7942230021581054,0.6048938911408186,0.7173410798422992,0.751896008849144,0.7403615564107895,-0.44261394953355193,-0.3654049960896373,0.5444760164245963,-0.3475618055090308,0.2840708587318659,0.38821866922080517,-0.33088215393945575,-0.48792158951982856,-0.13561812788248062,0.8935445249080658,-0.4907705173827708,-0.6244774139486253,-0.26761305099353194,-0.953223227057606,0.4390409211628139,0.6830070177093148,0.588306681253016,0.5772095336578786,-0.4399717403575778,0.7166197416372597,-0.03947226004675031,0.7907817447558045,0.1500550527125597,0.9622682156041265,0.9285891428589821,0.9539707214571536,0.07342737400904298,0.4559733346104622,-0.48911188216879964,-0.3979214415885508,-0.14661963796243072,-0.8928123451769352,-0.1763149849139154,-0.5805134000256658,-0.6066630780696869,0.28438769932836294,0.9166816398501396,0.6944758049212396,-0.23737204913049936,0.16691414965316653,-0.5365367522463202,-0.0961843952536583,-0.2984478985890746,0.2886246684938669,0.3253099974244833,0.916532723698765,0.1921824011951685,0.9080110788345337,0.20203683339059353,0.45184060791507363,0.7769128791987896,-0.9905846416950226,-0.95235067140311,-0.5978912739083171,-0.20024272939190269,-0.7649392201565206,0.14198465645313263,-0.23052330501377583,0.021811650600284338,0.34578702319413424,0.9730412112548947,-0.8236275063827634,0.17875712597742677,-0.17857183935120702,-0.8428378794342279,0.9717162754386663,0.21405730210244656,-0.580828626640141,0.18544415198266506,0.245914192404598,0.943014663644135,0.9113787794485688,0.49019630579277873,0.37863865680992603,0.5439486000686884,-0.986471245996654,0.9038680591620505,-0.42575713293626904,-0.9803630649112165,0.9184034271165729,0.23131885658949614,0.43873831210657954,0.5846036290749907,-0.7566039110533893,-0.7854443117976189,-0.45706976763904095,0.20505484007298946,0.11495186481624842,-0.5137857436202466,0.6061588795855641,-0.30001791194081306,-0.0928273368626833,-0.793622437864542,0.150862748734653,-0.2419203259050846,0.11117235524579883,0.7988415500149131,0.8162395167164505,0.8106817291118205,-0.981415179092437,-0.7644766294397414,-0.18021155893802643,0.6317678303457797,0.4699112894013524,0.7112679206766188,-0.20826844777911901,0.9773503285832703,-0.4136785510927439,-0.41841765213757753,-0.6603135732002556,0.2556774518452585,-0.4042855389416218,-0.19474678253754973,0.5197147405706346,-0.6609682748094201,-0.5419018818065524,-0.11740615777671337,-0.059365148190408945,-0.6022458388470113,0.8274506558664143,0.5567978248000145,-0.7673446252010763,0.22323908936232328,0.2887015384621918,-0.18076723348349333,-0.45075643761083484,-0.8613352314569056,0.10138808051124215,0.7363030458800495,-0.6505567450076342,-0.11566424369812012,0.8337614382617176,-0.8594793723896146,0.7497470104135573,0.022689823526889086,0.06676389882341027,-0.0955054578371346,-0.12214765045791864,0.38577054534107447,0.3317378982901573,-0.03483095997944474,0.3800407531671226,-0.729882150888443,-0.0645778700709343,-0.8825131002813578,0.3823440237902105,-0.6997263124212623,0.04572171904146671,0.1400894084945321,0.07820215122774243,-0.7205866016447544,0.7283722260035574,-0.5698416717350483,-0.33962123887613416,0.7802887046709657,0.038611768279224634,-0.6637525032274425,-0.14697344694286585,-0.5463480004109442,-0.4173384732566774,0.7769725262187421,-0.28931417455896735,-0.007187684066593647,-0.20827811304479837,-0.6400024443864822,0.7769889240153134,0.9536750037223101,-0.5460409517399967,0.5411798194982111,0.4478307100944221,0.281393900513649,0.7741855154745281,0.22621669713407755,-0.3220604779198766,0.7688645110465586,-0.5194473518058658,-0.5317104551941156,0.18946328526362777,-0.32656680000945926,0.46966884611174464,-0.06354698957875371,-0.3615357815288007,0.6067115161567926,0.9259844836778939,0.0973674082197249,-0.887950939591974,-0.30592321790754795,0.8345786780118942,0.56795425247401,0.5640929020009935,0.10457762889564037,-0.14745263056829572,0.7457809243351221,-0.7812787708826363,-0.551904363092035,0.5005525299347937,-0.9279707716777921,-0.2309389403089881,0.08351041981950402,0.4016771470196545,-0.8062642994336784,0.4282987853512168,0.9684129920788109,-0.06937056360766292,0.27308126958087087,0.43610311299562454,0.9790816465392709,-0.13153310725465417,-0.7949852515012026,-0.16885249223560095,-0.7950667506083846,-0.8695973898284137,0.3410579920746386,-0.8838201984763145,-0.5272136745043099,-0.6357284826226532,-0.8185268244706094,-0.5348885986022651,-0.38445878960192204,-0.10871891770511866,0.8623270019888878,-0.15222394885495305,-0.6002017273567617,-0.8725930317305028,0.18220261437818408,-0.42391189374029636,0.29455727245658636,-0.9682192662730813,0.12036394979804754,0.6566370665095747,0.6029765126295388,-0.48423211416229606,-0.5808917814865708,0.7284168293699622,-0.10448852181434631,0.025757428258657455,0.8395781358703971,0.9236583523452282,-0.017650318332016468,0.650623788125813,0.7766505852341652,0.41998384054750204,0.5437144069001079,-0.2564844680018723,-0.9036241844296455,-0.09192552650347352,-0.73086714791134,0.15986341377720237,0.8455166788771749,-0.3330526822246611,-0.6923218527808785,-0.4005115330219269,0.6968525988049805,0.13281715894117951,0.3391191973350942,-0.12815977167338133,0.16689487546682358,0.14453580928966403,0.7748905261978507,-0.2723773531615734,-0.11597740836441517,0.36780595034360886,-0.5513118696399033,-0.6270562559366226,0.13647796586155891,-0.39658659137785435,0.2169929058291018,0.3035410037264228,-0.2710825721733272,0.49035721318796277,-0.47522176802158356,0.46862653316929936,-0.9159108805470169,0.6668498222716153,0.7133742002770305,-0.5216042390093207,0.47131297551095486,-0.23991713160648942,-0.9196930127218366,-0.39387290738523006,-0.6513415575027466,-0.9851624425500631,0.63085667649284,0.7843055371195078,-0.4946909905411303,-0.9968996993266046,0.048875636886805296,-0.30279904464259744,-0.21918443217873573,-0.19029328087344766,-0.3350435867905617,-0.9351578974165022,0.5814791945740581,-0.86726881749928,-0.12594879791140556,-0.6947195739485323,-0.9086077865213156,0.43142817728221416,0.9233638779260218,0.13173476653173566,-0.8840932692401111,0.7421207623556256,0.49505728809162974,-0.5169969699345529,0.5880833775736392,-0.026484139263629913,0.4970716582611203,0.5820958130061626,-0.09687408711761236,0.29500434920191765,-0.024982408620417118,0.47433115169405937,-0.4441752666607499,-0.12320369761437178,0.46815235912799835,-0.847825413569808,-0.4671013932675123,0.5150282671675086,0.9155547637492418,-0.6085475832223892,-0.5810550940223038,0.8489243141375482,-0.8611329938285053,0.32653328916057944,-0.8124867524020374,-0.7873415444046259,-0.0376293919980526,0.503231955692172,-0.20133000193163753,0.3163586612790823,-0.8479304825887084,-0.06156593654304743,0.06546514946967363,0.48247365979477763,-0.4425213416106999,-0.23414198402315378,-0.9161959933117032,0.21626668004319072,-0.8283612369559705,0.7558379373513162,-0.8145063230767846,-0.713223755825311,-0.8527403008192778,0.8389497655443847,-0.609172239433974,0.970174022950232,0.5927894287742674,0.44728404749184847,-0.11029321141541004,0.35962922498583794,-0.050001007970422506,0.6437759129330516,-0.13431759364902973,0.309965540189296,0.4396963659673929,0.6466502896510065,0.48230579355731606,-0.46797524532303214,-0.7488576164469123,0.4217825657688081,-0.17220829892903566,0.02709974069148302,0.5536850052885711,0.43978089140728116,-0.6957098841667175,0.31533083133399487,0.2917214436456561,0.7870097514241934,-0.7780075105838478,0.18562143156304955,-0.11644327454268932,0.2717418437823653,0.928088762331754,-0.09149404847994447,-0.9426146144978702,0.9784760880284011,0.7152614528313279,-0.9732165103778243,-0.6136532416567206,-0.5234517054632306,-0.7129208208061755,0.18231134535744786,-0.5445481264032423,-0.6776042189449072,-0.7215158459730446,-0.4590905914083123,0.8388452371582389,-0.35719809168949723,-0.5568209057673812,0.8421795461326838,0.6478598359972239,-0.883449558634311,-0.8821708592586219,0.38151442911475897,0.9973967242985964,-0.16087310714647174,-0.005919374525547028,0.8793923226185143,0.8924128296785057,0.49300861917436123,-0.9429758465848863,0.1364943217486143,-0.884045026730746,0.6808212040923536,-0.7601349744945765,-0.716985693667084,-0.13238347321748734,0.33640686329454184,-0.797551300842315,-0.7879292056895792,0.09601482143625617,-0.6230936339125037,0.6191338920034468,-0.4193701478652656,0.4695346411317587,-0.3480272637680173,0.19322230154648423,-0.5110465316101909,-0.5404040077701211,-0.20412899227812886,-0.035459766164422035,0.9339056573808193,-0.5738728102296591,0.9505115682259202,0.6675461996346712,0.3961313934996724,0.30871528992429376,-0.6796842562034726,0.6211064588278532,-0.38469855953007936,-0.5239186058752239,0.24025250738486648,0.9325274312868714,-0.7244862192310393,-0.2356512052938342,-0.8515554727055132,-0.028575849253684282,-0.8555438760668039,-0.6621338273398578,0.4261648431420326,0.4123823745176196,-0.4799477979540825,-0.19056170340627432,0.9630182227119803,-0.7376281563192606,0.01334494212642312,-0.618791873101145,-0.014509132131934166,-0.09128352999687195,-0.0031894370913505554,0.8878547139465809,-0.9107639496214688,-0.9257063395343721,-0.19253884349018335,-0.5592720462009311,0.5797386188060045,-0.07951336214318871,-0.16050938051193953,0.26137832878157496,0.7557486309669912,-0.7412331462837756,-0.3111116155050695,0.8225328852422535,0.030474888626486063,-0.5687084845267236,-0.03636742988601327,0.1144755226559937,0.7369718407280743,0.11768520437180996,0.5222339611500502,0.6517050615511835,-0.5884920568205416,0.4266727170906961,0.49740964639931917,0.026300271041691303,-0.16203040862455964,-0.7481223214417696,-0.6397137362509966,0.11004857951775193,0.7748643010854721,0.3246102202683687,0.12717420049011707,-0.474765591789037,-0.6322976597584784,0.38221946405246854,-0.8034078348428011,-0.8743646070361137,-0.11118201864883304,-0.08921390818431973,-0.5977279655635357,0.21744631882756948,0.49625778989866376,0.4606767441146076,0.7126620654016733,0.857726039364934,0.26896485732868314,0.39276579674333334,-0.029074848163872957,0.07995188375934958,0.6978746014647186,-0.6021423544734716,0.26256275409832597,-0.27852963423356414,-0.2864140816964209,-0.9173664203844965,-0.13952004862949252,0.17899760184809566,-0.23915457678958774,-0.7858338165096939,0.46155882999300957,0.6003562659025192,0.9693423453718424,0.14440542412921786,-0.9798651863820851,-0.32899307925254107,-0.18454396771267056,-0.0677130501717329,-0.3101751934736967,-0.3229841967113316,-0.5513880201615393,-0.7584457728080451,-0.5520445662550628,-0.01585918990895152,0.3683306062594056,0.4649753272533417,-0.7184036434628069,-0.7221412020735443,-0.4973840801976621,-0.8230222440324724,-0.1328302649781108,0.7485749903135002,-0.6435559410601854,0.11892585596069694,0.9503758433274925,-0.4040400739759207,0.4650657922029495,0.4627003478817642,-0.004216935019940138,0.06440865015611053,0.9826191342435777,-0.37020205752924085,-0.05808359943330288,-0.11452044127508998,-0.06955741951242089,-0.3085959106683731,0.9120332268066704,0.29334875475615263,-0.014898744877427816,-0.8031588061712682,-0.15225977590307593,0.3592420215718448,0.10116709303110838,-0.6175905968993902,-0.2412472520954907,-0.6867950055748224,-0.45191090693697333,-0.1488513806834817,-0.1276105218566954,0.35812175599858165,0.8514149864204228,0.5288824150338769,-0.13276992598548532,0.398847836535424,0.8700816240161657,-0.7012043874710798,-0.8837852422147989,-0.5217914949171245,0.38576984219253063,-0.9995659682899714,0.6672416939400136,0.8438438805751503,-0.862487540114671,-0.6588885090313852,0.5398847321048379,0.4618817982263863,-0.1115602576173842,0.6636769012548029,0.8941052043810487,0.5744707412086427,-0.04037082428112626,0.3014244153164327,-0.08435496361926198,-0.41682944539934397,0.46775706578046083,0.573325177654624,-0.49804849131032825,-0.5051596658304334,-0.1253886162303388,-0.889592960011214,0.3242155113257468,0.03438888443633914,0.7284469078294933,-0.24620593758299947,0.5306385969743133,-0.004296937026083469,0.5785111105069518,-0.829240151681006,0.18657695781439543,-0.6400623386725783,0.8650253806263208,-0.2363363835029304,-0.879634611774236,0.28122859727591276,0.7002184367738664,0.9998644194565713,-0.7521151984110475,0.332455316092819,0.9375308337621391,-0.19960912875831127,-0.40485886111855507,-0.38222603034228086,0.6105643855407834,0.5475139035843313,0.3886205740272999,0.3072539404965937,-0.8236382557079196,0.030535921920090914,-0.08784593874588609,-0.9648932279087603,0.6183312158100307,-0.5627178209833801,0.483907341491431,0.31469913525506854,0.4423328507691622,-0.5912000616081059,0.7985206344164908,0.7291714213788509,0.9531782306730747,-0.032091245986521244,0.38047946197912097,0.9890804896131158,0.7605313477106392,-0.8087898134253919,0.0681708287447691,0.858374547213316,-0.9102349327877164,0.5213890424929559,-0.5647969618439674,0.83571523334831,-0.6429584827274084,0.7288598641753197,0.7736334344372153,-0.5939090070314705,-0.9159642080776393,0.9481838014908135,0.18177817296236753,0.34530821116641164,0.024793661199510098,-0.1555653214454651,0.8807770917192101,-0.3577449694275856,0.8323471043258905,-0.9950356371700764,0.4959543808363378,0.4575278707779944,0.9930782620795071,0.8206856087781489,0.13682118384167552,0.8287144624628127,-0.38579699816182256,-0.9251220053993165,-0.3996838158927858,0.797533895354718,0.6270339633338153,-0.9424689263105392,0.4058530586771667,0.5307529168203473,0.3890034230425954,0.42275378620252013,-0.8154643904417753,-0.3694187863729894,-0.2499423255212605,-0.40670307679101825,0.9006854202598333,0.14731701090931892,0.4852236523292959,-0.35809995885938406,0.8895889273844659,0.41170012252405286,-0.36633429722860456,-0.8254179926589131,0.9427170888520777,0.8120929207652807,0.19689890136942267,-0.720630734693259,-0.8339345972053707,0.47182418406009674,0.5949751273728907,0.3375762836076319,0.8926274939440191,0.8899820926599205,-0.961506406776607,-0.7307918984442949,0.7231659065000713,-0.5640984931960702,0.031945656053721905,-0.8070889348164201,-0.8790095569565892,0.653964857570827,-0.9256277089007199,0.5964491125196218,-0.49220521096140146,-0.9294948587194085,-0.3857238865457475,0.8547216919250786,0.40621952386572957,0.8690487360581756,-0.7564405491575599,0.774617213755846,0.41135017527267337,-0.3908147932961583,0.974067100789398,-0.1409989995881915,-0.18326939502730966,0.4993116585537791,-0.45006650406867266,-0.7918202271685004,-0.11510970490053296,-0.6090719257481396,-0.1620026850141585,-0.7487408351153135,0.872348858974874,0.2565456572920084,0.9583273399621248,-0.22598886536434293,0.8746267315000296,0.8365608770400286,0.6180411255918443,-0.6409940873272717,0.3230881420895457,0.11137007595971227,-0.6119340318255126,-0.4290432119742036,-0.15917203342542052,-0.2918336493894458,-0.352679340634495,0.6752786370925605,0.6327485628426075,0.2740688659250736,-0.5378960259258747,-0.903102561365813,-0.612907353322953,0.6691384916193783,-0.5759651279076934,-0.5260717952623963,-0.10627960786223412,0.6324699828401208,0.9980838163755834,0.8425635052844882,0.7851574397645891,-0.8031721389852464,-0.1616155137307942,0.34997177170589566,0.9930569906719029,-0.8827341184951365,-0.35061506927013397,-0.07713575661182404,0.6489227623678744,-0.7864864789880812,0.1712143332697451,0.4594415104947984,0.40027948236092925,0.5090317269787192,0.6208186526782811,0.7584535921923816,-0.6748143504373729,-0.49243825348094106,-0.9796979241073132,-0.5300944070331752,0.88300137873739,-0.6882463763467968,0.4505135240033269,0.9260761337354779,-0.6084424606524408,0.17090425174683332,0.07012853678315878,-0.681583508849144,0.3109289216808975,-0.8876951821148396,-0.22682367311790586,-0.7254070919007063,0.46627282863482833,-0.8684024531394243,0.3803950762376189,0.14430502709001303,0.5191689417697489,0.5099351187236607,0.41196058690547943,0.9610232296399772,0.006962852086871862,0.5141062685288489,-0.49588043708354235,-0.5230890158563852,-0.5741070569492877,-0.6936882631853223,-0.9563079345971346,-0.402484904974699,-0.1612123604863882,0.9242648021318018,0.8189143524505198,-0.6176971774548292,-0.8253859761171043,0.8970830268226564,0.30919120786711574,-0.43592984322458506,0.14038121234625578,-0.8032326339744031,-0.1504938555881381,-0.095746208447963,-0.44427193561568856,0.8527795593254268,0.48853936046361923,0.5096047087572515,0.9618684011511505,0.3369418107904494,-0.1260163369588554,0.6674925675615668,0.24850357323884964,-0.16332869278267026,-0.10276580462232232,-0.6152149545960128,-0.35045784153044224,-0.07982178078964353,0.7214375538751483,0.15490313665941358,0.8844106150791049,0.7091915369965136,0.3760453099384904,-0.9928108584135771,-0.41467547742649913,-0.0481914272531867,-0.10861624032258987,-0.025544804986566305,-0.647605168633163,0.5446610362268984,0.15874328883364797,0.6834083222784102,-0.7349190046079457,0.7993992231786251,0.00948043866083026,0.545893079135567,-0.08059387980028987,0.5253541795536876,-0.3751889974810183,-0.70298657938838,-0.5347796943970025,-0.8329903110861778,0.48739481903612614,-0.09968557581305504,-0.30188163463026285,-0.05782096367329359,-0.5118064354173839,-0.9155721035785973,-0.09682405600324273,0.9769000262022018,-0.1932160248979926,0.3021063436754048,0.4889887976460159,0.23346744012087584,-0.24115701112896204,0.06243834272027016,-0.9321863329969347,0.49878222262486815,-0.725368988700211,0.24908441258594394,-0.5099017713218927,0.854223009198904,0.5378062361851335,0.6249141646549106,-0.5332970768213272,-0.6293000411242247,0.08273153565824032,-0.08595292363315821,-0.848780294880271,-0.9997548134997487,-0.44447813322767615,-0.7592914667911828,0.6966352816671133,-0.43016431387513876,0.4749872558750212,0.32729967357590795,-0.1329796970821917,-0.6324880998581648,-0.6259235152974725,-0.06108461134135723,0.7479991219006479,0.3856265852227807,0.6599284303374588,-0.23227160703390837,0.13685777550563216,0.39702552650123835,0.4504168131388724,-0.7908279490657151,-0.14880069624632597,0.7829325310885906,0.3608105084858835,0.9274091920815408,-0.7636130512692034,-0.4758633482269943,-0.959556891117245,0.6606523804366589,0.5283823083154857,-0.8892208239994943,0.9248514878563583,-0.4954189043492079,0.46195400040596724,-0.6372780948877335,-0.7424845290370286,0.8702441970817745,-0.8979529039934278,-0.026800355408340693,0.8616797779686749,0.7324422835372388,-0.6085719340480864,0.78321253368631,0.9796272609382868,-0.8821244346909225,-0.5552646517753601,0.30287759425118566,-0.9732248629443347,-0.4174702260643244,0.1674086833372712,0.008838279638439417,0.4939650036394596,-0.38797560380771756,0.43166141770780087,0.09656111523509026,0.5319043472409248,0.07909134961664677,0.6031471472233534,-0.37200931273400784,-0.03408907726407051,-0.37956505827605724,-0.9541050530970097,-0.6359422286041081,-0.47408413980156183,0.657036499120295,0.3154133167117834,-0.6770854936912656,0.5910474811680615,-0.10585127817466855,-0.8199557685293257,-0.7304762415587902,-0.9391782996244729,0.2922421069815755,0.5241179815493524,-0.15349433943629265,-0.7353307139128447,-0.32447976199910045,0.4602137953042984,-0.8640065621584654,-0.5777280200272799,-0.9249270912259817,0.10138690425083041,0.8060922082513571,-0.17708309879526496,-0.5210078782401979,0.099759919103235,-0.947987433988601,-0.16990933706983924,0.19867814192548394,-0.541988804936409,0.9609998040832579,0.4699909118935466,0.6931343455798924,-0.7835601777769625,-0.5135393170639873,0.6344434544444084,0.3191569456830621,-0.663636518176645,0.31510524172335863,0.13713427260518074,0.2446406651288271,-0.25856372620910406,0.07766754738986492,-0.11696326080709696,0.14326245477423072,0.22977439500391483,-0.20410107355564833,-0.4303962867707014,0.5360060567036271,0.12979756481945515,-0.6835485575720668,0.7945343055762351,-0.8083329452201724,0.7403266541659832,-0.9154766551218927,-0.08956050407141447,0.5104138874448836,-0.3002567947842181,0.6031213318929076,-0.8343638223595917,0.2531489641405642,-0.7963357293047011,0.6125273527577519,0.8170302677899599,0.13166963122785091,-0.44020784413442016,-0.7827778877690434,0.7804066478274763,-0.8846387811936438,-0.00968934502452612,-0.09511224739253521,0.14601119002327323,0.8241411969065666,-0.7311073523014784,0.773005070630461,0.17603369150310755,0.673485345672816,-0.2840790366753936,-0.9025985868647695,-0.17495940439403057,0.061863383278250694,0.8686465388163924,-0.42579084634780884,0.21983976289629936,0.6128627802245319,0.18118220241740346,0.12791354022920132,-0.7165469513274729,0.9809949491173029,-0.7286193380132318,-0.8543545533902943,-0.07441019220277667,-0.13435459369793534,-0.746178531087935,0.43984114099293947,0.8731721765361726,-0.32320211408659816,0.06100586988031864,-0.5848215660080314,0.9975917781703174,0.6948809558525681,-0.316496305167675,0.5778552289120853,0.9641471118666232,-0.24933644849807024,-0.570442863740027,-0.33468499686568975,-0.536887223366648,-0.7400247878395021,0.5787591659463942,0.46825453313067555,0.12201138446107507,0.3077989239245653,0.34079047571867704,0.40868504578247666,-0.5390259004198015,0.9706640616059303,0.14670509658753872,-0.9569391058757901,0.4785893480293453,-0.1889389529824257,-0.7739447304047644,0.765121161006391,0.2428588098846376,-0.417860961984843,0.8414314244873822,0.9499666835181415,-0.5419567571952939,0.6047209706157446,0.7304056701250374,0.3127153813838959,0.27344878017902374,0.22638602647930384,-0.5200576982460916,0.2593160239048302,0.8776914370246232,0.2967653265222907,-0.9739588480442762,0.9656059895642102,0.17571879317983985,0.513052252586931,-0.25220957212150097,-0.5616205120459199,-0.936077332124114,-0.7671949048526585,-0.7718783630989492,-0.06293506175279617,-0.8392683234997094,-0.34763507870957255,0.5874764025211334,-0.6163375480100513,0.6002406873740256,-0.6022791368886828,-0.6726053874008358,-0.48625209275633097,-0.8673180215992033,-0.7750170701183379,0.540934952441603,0.6353478566743433,0.6968237333931029,-0.355786332860589,0.13403041241690516,-0.6743830507621169,0.21862334292382002,-0.6559891058132052,0.43321778485551476,0.4340584077872336,-0.6289051896892488,0.8123588776215911,-0.01505636190995574,0.4342580121010542,0.39339062944054604,0.5108325630426407,-0.04024116788059473,-0.7124448674730957,0.9164620465599,-0.7171751433052123,-0.11131117632612586,0.7955013546161354,-0.42168015521019697,-0.6754113817587495,0.26800057338550687,-0.579607876483351,0.03662438318133354,-0.4281691242940724,-0.18795934179797769,-0.37463896814733744,0.495458522811532,-0.8363372427411377,0.4796288162469864,-0.8739617667160928,0.3290536655113101,0.5264488840475678,-0.49695389345288277,-0.09514353843405843,-0.11758627695962787,-0.9774542283266783,0.9736170712858438,0.5635865391232073,0.6426551714539528,-0.5373282642103732,0.4551974390633404,-0.962925230152905,0.9709843066520989,0.5160610796883702,-0.4389003962278366,0.49707325734198093,-0.803588435985148,-0.23359786346554756,0.8898656493984163,-0.7987712598405778,0.2395680290646851,0.4881211402826011,-0.534215790219605,-0.5106548639014363,0.7063376777805388,-0.9539806828834116,-0.759039118885994,-0.5640688585117459,0.03561036475002766,0.8129628812894225,0.106539037078619,-0.2138761510141194,0.6540118521079421,-0.43335651652887464,-0.7334052110090852,0.7357937647029757,0.36504002334550023,-0.5544707481749356,0.3040821561589837,0.010230949614197016,0.3494241517037153,0.07329458557069302,-0.7137354267761111,0.27473230566829443,0.10054035484790802,0.21815693192183971,-0.03680272679775953,0.39514105534181,-0.7889001378789544,0.5308078909292817,-0.9464619788341224,-0.9931120541878045,0.6142513873055577,0.42484753020107746,0.0157503979280591,0.5367420217953622,0.5285178222693503,0.16419736109673977,0.028283425606787205,-0.6874851360917091,0.3218609383329749,-0.48736661951988935,0.596065288875252,-0.9264723630622029,0.7552488851360977,-0.9018541378900409,0.03835408017039299,0.3741675182245672,0.6654488947242498,0.8248961120843887,-0.9791306382976472,-0.8688436099328101,-0.2184746665880084,-0.9825878352858126,0.9911882439628243,0.9830701779574156,0.050446012523025274,0.13006145227700472,0.42657839599996805,0.4718064572662115,-0.9794952017255127,0.6651347107253969,0.6267261174507439,0.8988429834134877,-0.40486826514825225,0.23947008792310953,-0.9268487277440727,0.9970017573796213,0.10726501420140266,-0.5629114671610296,0.08301685657352209,-0.908813264220953,-0.5823421725071967,0.031710776034742594,0.36738802259787917,0.9547540559433401,0.9502620277926326,-0.8500024760141969,0.20712481625378132,-0.14369296561926603,0.6317554390989244,-0.4041915857233107,0.2601583944633603,0.0567747806198895,-0.5334992296993732,-0.27417069859802723,-0.2042822828516364,0.1701467619277537,0.1686753830872476,0.6470265886746347,-0.1659387364052236,-0.13293558917939663,0.40944468695670366,0.6696634767577052,-0.007054357789456844,0.20677459798753262,-0.14679135521873832,0.04461944615468383,-0.0065603116527199745,-0.25123160844668746,0.7163935606367886,0.6343589462339878,0.9651333158835769,0.07659267168492079,-0.18900583824142814,0.23907063389196992,-0.24964502453804016,-0.8422702890820801,-0.22816997906193137,-0.56057119788602,-0.3291090214625001,0.27516899118199944,0.13465913431718946,-0.9080601404421031,0.6980147850699723,0.6635731239803135,-0.18531755777075887,-0.7652985625900328,-0.5617919359356165,0.9418550156988204,0.5817249114625156,0.03048261348158121,-0.6214348855428398,-0.17036345973610878,-0.758119257632643,0.12839464098215103,0.4857567707076669,0.02260004123672843,0.5858876518905163,-0.9284114744514227,-0.8059490653686225,0.972685822751373,0.7270461414009333,0.6644468158483505,0.4887300683185458,-0.3620790089480579,0.5787076163105667,-0.7656992604024708,0.053448247257620096,-0.3886357927694917,-0.4064287655055523,0.5751353106461465,0.9686707002110779,-0.5302599729038775,0.9752881065942347,0.2463002479635179,0.33346476638689637,0.6135929455049336,-0.6131666288711131,0.6493932106532156,0.7990329749882221,0.451041828840971,0.37079924065619707,0.8309158566407859,-0.7156128482893109,-0.3159388196654618,-0.4338125502690673,0.08899240428581834,0.6984840454533696,-0.1565954894758761,0.5492497896775603,-0.7181104682385921,0.8882234171032906,0.8211054336279631,0.12066757073625922,0.49449169961735606,-0.5778643488883972,-0.7532422919757664,-0.1281163338571787,-0.054254564456641674,0.042266019620001316,-0.05472328932955861,0.23124865116551518,-0.4342101369984448,-0.4187232400290668,0.14308853400871158,0.31234956812113523,-0.3206063606776297,-0.8892798866145313,-0.9312792201526463,-0.19029893865808845,0.9411263125948608,-0.347877437248826,0.6965403822250664,0.12371490057557821,-0.18472496373578906,-0.41295901080593467,0.9028606018982828,-0.8425087337382138,-0.579147266689688,-0.11559688998386264,-0.9569559106603265,0.979130532592535,-0.7403961070813239,-0.8466405370272696,-0.13311362965032458,-0.9721544398926198,-0.43680591555312276,-0.07368789426982403,-0.381786375772208,0.85227384371683,-0.2485924744978547,0.5849342718720436,-0.9410976935178041,-0.6432842831127346,-0.8900384940207005,0.25464855320751667,0.6138922376558185,0.994700413197279,-0.6063422979786992,0.5224077762104571,0.11474202387034893,-0.6014657146297395,-0.28762280428782105,-0.4698019754141569,0.6770835318602622,0.020869744941592216,-0.4712358205579221,-0.05327904364094138,0.7761408975347877,0.7663786541670561,-0.20992642361670732,-0.5629410981200635,-0.296500351279974,-0.616137811448425,0.8538586236536503,-0.7491131373681128,-0.5207756897434592,0.28932207077741623,-0.09399486519396305,0.5495231435634196,-0.7623020354658365,0.9176758122630417,0.1966970064677298,0.4704796993173659,0.3144934889860451,-0.21281026350334287,0.3776843547821045,0.3580990363843739,-0.1762979761697352,0.612002988345921,-0.4331603399477899,0.285835734102875,0.35688476311042905,0.185653330758214,-0.03421080205589533,-0.576673258561641,0.19367448519915342,0.24067555414512753,0.3049830384552479,0.1451565590687096,0.5015695015899837,-0.44758185371756554,-0.13410243298858404,0.045987268909811974,-0.7634815913625062,-0.2744084275327623,-0.06507652858272195,-0.4731772504746914,-0.7291202424094081,-0.19558673491701484,0.9842356801964343,-0.1239597350358963,0.8258949927985668,0.9704327690415084,0.08949262509122491,0.8214154369197786,-0.8817545962519944,0.13622765708714724,-0.6663423250429332,-0.6363650844432414,0.9408207032829523,-0.5993014196865261,0.42434780998155475,-0.9198480122722685,0.6279272618703544,0.570176126435399,0.9518447332084179,0.8488283599726856,0.9038131227716804,-0.23231505043804646,0.49445771239697933,-0.9650926454924047,0.0447590509429574,0.07585805607959628,0.05829250579699874,0.1788099706172943,0.2988958158530295,0.2504994566552341,0.7688814885914326,-0.8420021254569292,0.055798976216465235,0.29340552259236574,-0.47846079571172595,-0.5679315375164151,0.4034214033745229,-0.6365736480802298,0.10844142269343138,-0.1314442870207131,-0.5551162813790143,0.4564835447818041,0.3239021594636142,-0.33987657353281975,-0.210914327763021,-0.26415716065093875,-0.16976162558421493,0.08492994494736195,0.8050301615148783,0.3782947179861367,0.6669316445477307,-0.42751432210206985,0.5154128740541637,0.8145028450526297,0.4057884383946657,-0.9424867420457304,0.627288747113198,0.5850556320510805,0.2660143035463989,-0.831189529504627,-0.543400158174336,0.5830543520860374,-0.15056075528264046,-0.9331673011183739,0.4091536598280072,0.7214167881757021,-0.4038949743844569,-0.8876949422992766,-0.3778327484615147,-0.13050097692757845,0.6639047944918275,-0.9975356892682612,0.40888425800949335,-0.9810712775215507,-0.6512632719241083,0.781490336637944,0.31207913206890225,-0.5386127820238471,0.880238494835794,0.9396756519563496,-0.7405096362344921,0.08086267113685608,0.6846786057576537,0.7275332557037473,0.3702368540689349,0.10692489659413695,-0.5768550615757704,0.7506909724324942,-0.6294408282265067,0.9637429784052074,-0.245090592186898,0.6956595252268016,-0.6771672749891877,0.8921172227710485,-0.6639312440529466,0.05811907909810543,-0.4458550359122455,0.15050235344097018,-0.596464506816119,0.8342721238732338,-0.8323227977380157,0.9136708183214068,-0.9640835435129702,-0.11475106747820973,0.845669926609844,-0.31407679710537195,0.8914744546636939,-0.44003113731741905,-0.6062327949330211,0.9518242245540023,0.895527726970613,0.7666814858093858,-0.5882859914563596,0.19586723065003753,-0.5257245409302413,0.3052494190633297,-0.3983110385015607,-0.11865443270653486,-0.21419412642717361,0.15622361889109015,0.5831901514902711,-0.3764686598442495,-0.3495151582174003,0.5570086496882141,0.4782573594711721,-0.7013219236396253,-0.5760081023909152,0.449473493732512,0.32416631653904915,0.7136343386955559,-0.7255282215774059,0.11848971666768193,0.12928309803828597,0.534845007583499,0.14079395541921258,0.0679827774874866,0.10008360957726836,0.5027184700593352,0.5615006661973894,-0.5392601392231882,-0.4142594141885638,-0.7587715378031135,0.24715888546779752,-0.09960192954167724,-0.9278831253759563,-0.44055204233154655,0.8475895524024963,-0.9904428911395371,-0.5483764559030533,-0.607336341869086,-0.9334360295906663,0.030289962887763977,0.9052366246469319,-0.5727142239920795,-0.18812838895246387,0.2609308362007141,-0.17508752178400755,0.3163590575568378,-0.8294918844476342,-0.8259052340872586,0.2258053277619183,-0.5261137150228024,0.32325978484004736,-0.585569551680237,0.10039198538288474,-0.037514690309762955,-0.9054656610824168,-0.6019913251511753,0.7861493052914739,-0.8150052460841835,0.9894163454882801,0.9458239562809467,0.6928072012960911,-0.42929334938526154,0.7500881832093,0.6780059468001127,-0.07508857920765877,-0.22494713217020035,0.8468541530892253,0.969920493196696,0.4831521715968847,0.772405706346035,0.7633441919460893,-0.7795658493414521,0.16703343903645873,0.04480242636054754,-0.16521043423563242,-0.9671000470407307,0.6553421625867486,0.6387346098199487,-0.06130160391330719,-0.18089242093265057,0.31166532076895237,0.7777422848157585,0.06727151805534959,-0.009048123378306627,-0.7006720476783812,-0.6594235738739371,0.2309423671104014,0.6877568177878857,-0.736423971131444,0.3296992206014693,0.09949317621067166,0.0636287615634501,0.16777442581951618,-0.9313488965854049,-0.9407858154736459,-0.3343008407391608,0.4364841664209962,-0.034170035272836685,0.6671721506863832,0.2955143190920353,-0.9941793088801205,-0.7201436166651547,-0.6383900023065507,0.47098511829972267,-0.7714175200089812,-0.4651349661871791,-0.7234601834788918,0.8253368400037289,-0.7088473211042583,-0.5507006165571511,-0.5621714498847723,-0.26481621945276856,-0.4016458918340504,-0.3329645418561995,0.8317340109497309,-0.589433501008898,0.21477323165163398,0.8287317198701203,-0.605423909612,-0.9802536484785378,-0.49058924708515406,0.5201368136331439,0.5181586625985801,-0.38805618742480874,-0.001964634284377098,-0.26644578017294407,-0.5566932931542397,0.6265410734340549,0.5636778329499066,-0.6597852259874344,-0.23540684068575501,-0.6414525574073195,-0.8580555049702525,-0.14685866935178638,0.035438604187220335,0.004124533850699663,0.9422092824243009,0.0817424263805151,0.6844379641115665,-0.09770487947389483,0.11774928588420153,0.49498850759118795,-0.5648220009170473,-0.9897185480222106,-0.5637738527730107,0.6312320767901838,-0.34401206485927105,0.9354438548907638,0.863424429204315,0.5990118868649006,-0.48821273632347584,-0.8250728398561478,-0.14911343716084957,0.2476112679578364,0.5527309039607644,0.6710817543789744,0.502603956963867,-0.8006130591966212,-0.08421423053368926,-0.6403381340205669,-0.2631450714543462,0.30806811386719346,0.20211647124961019,-0.616733755916357,-0.7378725437447429,-0.004638549406081438,-0.32605656748637557,0.3786776950582862,-0.09973281109705567,0.5071352208033204,0.6826185076497495,-0.8283625589683652,0.7953061084263027,0.5089429817162454,-0.639823813457042,-0.4127158806659281,0.07438617292791605,-0.4739563702605665,-0.737335657235235,0.07708955788984895,0.07753642555326223,0.629609395749867,-0.2856062245555222,-0.14868991076946259,0.16545496974140406,0.15821928158402443,-0.677282091230154,0.023742528166621923,-0.7981137256138027,-0.030027024447917938,-0.9343213541433215,-0.5713484911248088,0.12017438095062971,-0.014352280180901289,0.3785312594845891,0.9943888825364411,-0.10453008487820625,0.6825936953537166,0.8209769777022302,0.9956214507110417,0.24706552689895034,-0.798743890132755,-0.30047005927190185,-0.07299877237528563,0.5981785566546023,0.170480246655643,-0.9860800597816706,-0.5201027700677514,0.861918299458921,0.5922155380249023,-0.9533280399627984,-0.787842929828912,-0.6943147052079439,-0.7295326082967222,-0.07055375026538968,-0.8896272256970406,0.27261251537129283,0.9839197779074311,0.7999591296538711,-0.1909761750139296,-0.3195402855053544,0.8913717861287296,0.35728803696110845,-0.4005312821827829,0.039004655089229345,-0.856120792683214,-0.43587744794785976,-0.2622281941585243,-0.928420486394316,0.7860543057322502,0.37008071318268776,0.4031491591595113,-0.6837065927684307,-0.2721639680676162,0.16173787415027618,0.6611888771876693,-0.7041551256552339,0.29216592526063323,0.987879007589072,-0.2756515331566334,-0.689436059910804,-0.2847199672833085,-0.43645578855648637,0.8519436069764197,0.7277688486501575,0.001895897090435028,0.3424058295786381,-0.6126284510828555,0.4092177185229957,0.11387468921020627,0.6890990436077118,0.058841802179813385,-0.8527977792546153,-0.37564364541321993,0.1986859724856913,-0.4224776835180819,-0.700549652799964,-0.6051359814591706,-0.02200267370790243,-0.6093384008854628,-0.32499002665281296,0.04087464930489659,0.22559455363079906,0.10383980209007859,0.5979922385886312,-0.4184403889812529,0.7608222407288849,0.07487652730196714,0.11963927140459418,-0.7232384043745697,-0.38284781109541655,0.7817399399355054,-0.3613210516050458,0.4037622567266226,0.059072987642139196,0.8304865653626621,0.8394026053138077,0.2243535597808659,0.6824047551490366,0.6144887055270374,0.9370906660333276,0.5741092604584992,-0.750883299857378,0.5069020455703139,0.4606458907946944,-0.8995491894893348,-0.6511476538144052,0.9816295714117587,-0.6191223911009729,0.11872470192611217,-0.5312516880221665,0.7501662303693593,0.11339624412357807,0.3480511703528464,0.7528697308152914,0.8559132786467671,-0.2491226987913251,-0.6846330622211099,-0.9008507030084729,0.7984880125150084,-0.8801137339323759,0.46095413947477937,-0.8857068088836968,0.3138664769940078,0.13836986292153597,0.5334158008918166,-0.620409753639251,-0.9092195597477257,-0.45777302933856845,-0.14005914703011513,-0.09766271337866783,-0.9399703573435545,0.7022129571996629,-0.2542868470773101,-0.049940255004912615,-0.585654491558671,-0.27800324046984315,0.5398807963356376,-0.9145028167404234,0.4270205092616379,-0.07112497556954622,0.9410770600661635,-0.005880756303668022,0.8238655631430447,0.6029360615648329,0.6758955828845501,0.31807505479082465,0.7772231693379581,0.5292826611548662,0.0843213670887053,0.6665588496252894,0.5734198191203177,-0.8417443274520338,-0.6948545631021261,-0.4079287243075669,-0.33435404393821955,0.6835963013581932,0.41396216163411736,0.975429508369416,-0.12862085225060582,0.5561768668703735,-0.5712911495938897,0.4728886689990759,0.45678658969700336,-0.22619615262374282,0.9391079260967672,-0.579843404237181,-0.10548514639958739,0.20453003142029047,-0.5022610547021031,0.9577553286217153,0.9082760186865926,-0.44345020363107324,-0.32735283579677343,-0.48633870435878634,-0.12025944981724024,-0.7551486254669726,0.26644110633060336,0.03865506686270237,-0.7727841385640204,0.11001779837533832,0.9490952887572348,-0.3540942696854472,-0.8487198827788234,0.5386843555606902,0.9217720050364733,-0.8112645503133535,-9.506847709417343e-05,-0.9686093176715076,-0.25525545654818416,-0.628868751693517,-0.619645634200424,0.9071139376610518,-0.5933889048174024,0.47313684690743685,-0.14722215151414275,-0.8809162331745028,0.867255600169301,0.046010639518499374,-0.09304352989420295,-0.8007613401859999,0.990321327932179,0.014215294271707535,-0.8709112908691168,0.7118997247889638,-0.16845351830124855,0.8597307219170034,0.9384982148185372,0.7554813637398183,0.5297342306002975,0.13259579380974174,-0.26091416412964463,0.11990777496248484,-0.28812439274042845,-0.33187607023864985,0.7949350639246404,0.3550576386041939,-0.289851657114923,0.8771822829730809,0.8430714290589094,-0.8306872085668147,-0.8758398573845625,0.40613821148872375,0.8990634931251407,-0.8005536384880543,0.9132178504951298,0.022199687082320452,0.6188349071890116,0.9571136464364827,0.42113521369174123,-0.7097883839160204,0.25734452111646533,-0.6978434631600976,0.2510977275669575,0.7868451462127268,0.7861351990140975,0.33499178709462285,0.8956222925335169,-0.5680856038816273,-0.4526975373737514,-0.02041024761274457,-0.18788978410884738,-0.18486122321337461,0.8962561334483325,0.6293273433111608,-0.0007025846280157566,-0.4280027453787625,-0.005800865590572357,0.5417494685389102,-0.9447964550927281,-0.5467012138105929,0.8904453916475177,0.9847034057602286,0.3702385905198753,0.12027675192803144,0.24495738791301847,-0.11256582103669643,0.332744016777724,0.07582132983952761,-0.399011523462832,-0.7348110834136605,-0.36999846808612347,-0.5142151978798211,-0.9067998928949237,0.8559279493056238,0.8842999315820634,0.014133268035948277,-0.8332334812730551,0.5387080381624401,0.2411528187803924,0.9820451270788908,0.6878927578218281,0.6000279011204839,-0.07679072115570307,0.48179857805371284,0.9769624299369752,0.7525495090521872,0.8215045654214919,-0.07827428868040442,-0.8522602384909987,-0.5252500106580555,-0.21535130636766553,0.9755353950895369,-0.3993388176895678,-0.49132889276370406,-0.12783717131242156,0.33204359747469425,-0.9891964979469776,0.504711136687547,0.8550426084548235,0.188921969383955,-0.28470507822930813,0.18528230441734195,0.6383165577426553,0.7116051656194031,0.19860808597877622,-0.6858962941914797,0.7477946509607136,-0.8879330991767347,0.8147153919562697,0.0751075018197298,0.29832200380042195,-0.05244076857343316,-0.26305893808603287,-0.9268127051182091,0.36142953857779503,0.6340485853143036,-0.2523207478225231,0.6963756158947945,-0.8654080494306982,0.6798616326414049,-0.563037620857358,-0.8672146960161626,-0.8170431135222316,-0.39000333612784743,0.779761501122266,0.18075172370299697,-0.39893842535093427,-0.9393457900732756,0.3212029254063964,0.7627468616701663,-0.6419367659837008,-0.3244270761497319,-0.42824395233765244,-0.12766169756650925,0.2806682656519115,-0.683338793925941,0.7047659177333117,0.7319625434465706,-0.8202896155416965,-0.45724845258519053,0.5542927281931043,-0.9115455844439566,0.33138006925582886,0.02033155784010887,-0.6277250442653894,0.7026004865765572,0.5523545392788947,-0.5307351760566235,0.6283407411538064,0.8842925643548369,0.4656774364411831,0.833966645412147,-0.4430941818282008,-0.5737022012472153,-0.8313122284598649,-0.0031963675282895565,-0.48343114322051406,0.9512283559888601,-0.645498669706285,0.41412221686914563,0.7620275877416134,0.2747695338912308,0.021549931727349758,-0.5712407105602324,0.36867187544703484,-0.19594819471240044,0.649152010679245,0.8242411031387746,0.496226554736495,0.8390815486200154,0.2682534013874829,-0.962952021509409,0.12035760935395956,-0.25652140378952026,0.036333068273961544,-0.7273817462846637,-0.30571123491972685,-0.49119600374251604,-0.03752849996089935,-0.1215212563984096,-0.4066046713851392,0.8323974548839033,-0.621619994752109,0.9117699409835041,0.057997884694486856,0.4222734132781625,-0.90729014063254,-0.08169959858059883,0.6957610105164349,-0.6471119383350015,0.6361059551127255,-0.9881414379924536,-0.7867897897958755,0.1411039554513991,0.20459726871922612,-0.3023855513893068,0.46066941414028406,0.5032451855950058,-0.92169996118173,-0.28737555677071214,0.15161671349778771,0.8527406337670982,-0.46847705636173487,0.6597813898697495,0.927930832374841,0.6509429891593754,-0.06766220601275563,-0.2537121055647731,-0.8663772982545197,0.8148457445204258,0.1193790789693594,0.8478347905911505,-0.9710176484659314,-0.2483536647632718,0.32062008418142796,-0.05735061690211296,-0.22188804857432842,0.8013240615837276,-0.25824572145938873,0.23366614989936352,-0.8063095291145146,-0.5595003417693079,0.7118263491429389,-0.4154716762714088,0.21501858020201325,0.7915525925345719,0.6393612981773913,-0.8636212162673473,0.5922451731748879,0.458477561827749,0.9144184645265341,-0.8148364122025669,0.37304298346862197,0.6146287922747433,0.4212718899361789,0.43271947745233774,0.9585872562602162,0.15186582785099745,0.1811893731355667,0.3435605079866946,-0.0948380776681006,-0.8830464747734368,0.8322134152986109,0.7177360071800649,-0.00807706592604518,0.75119035737589,-0.209065574221313,-0.38469467125833035,0.7910544658079743,0.1527305142953992,0.918304041493684,0.5817192965187132,0.8917006379924715,-0.39153461903333664,-0.17396226292476058,0.42338805831968784,-0.2759067309089005,-0.047757518477737904,-0.5304860505275428,0.805089246481657,-0.0137067842297256,-0.6737190624698997,-0.6345520727336407,-0.6669869585894048,0.6199352564290166,-0.8136478709056973,0.4579478777013719,0.148598475381732,-0.8408515001647174,0.8441314152441919,-0.39270548801869154,-0.6213033231906593,0.17592236259952188,0.8658294901251793,0.39883732376620173,-0.9327879389747977,0.31152345100417733,0.010729898232966661,0.26181391812860966,0.21858434984460473,-0.12101705512031913,-0.8095292202197015,0.4448909144848585,-0.8845213898457587,0.08489969559013844,-0.18476038705557585,-0.6373571823351085,0.3161161164753139,0.8048970187082887,0.34979270584881306,0.3415931789204478,-0.12455921759828925,0.01677887560799718,0.9385814666748047,0.9691760097630322,-0.07641350338235497,0.8188344542868435,-0.37288259668275714,-0.24831385631114244,0.55090570775792,0.6109319436363876,0.49463948467746377,-0.3703427454456687,-0.3320491914637387,0.8237136104144156,-0.09775850595906377,0.05863000079989433,-0.2807637844234705,0.8976337914355099,-0.3767451327294111,0.613082614261657,0.9025468952022493,-0.2030854607000947,0.9233922087587416,-0.528239831328392,0.0327003663405776,0.687708146404475,-0.03167598834261298,-0.791460121050477,0.29957873560488224,-0.5741177038289607,-0.6549229477532208,0.11887845024466515,0.4607356507331133,0.35260470770299435,-0.4961026692762971,-0.03094202233478427,-0.7246539173647761,0.4625677205622196,-0.549159905873239,-0.43714422592893243,-0.48535829596221447,0.4238108224235475,0.2078518159687519,-0.4290085583925247,-0.5495670242235065,-0.33774799201637506,0.8557189041748643,-0.558467642404139,0.529355812817812,0.12924557784572244,-0.0954594467766583,-0.44473279593512416,-0.7250329051166773,-0.5149938487447798,0.9596017710864544,-0.532099986448884,0.02266811765730381,-0.9967549983412027,0.7372118011116982,0.3143109600059688,0.060680109076201916,0.10192500613629818,0.5161609007045627,0.34571185894310474,-0.002214839681982994,-0.9208006942644715,-0.05924416985362768,-0.2428529281169176,-0.647543678060174,-0.4367154589854181,0.7485287073068321,-0.02297034440562129,-0.7542243856005371,-0.21691789804026484,-0.7332138908095658,0.7603076188825071,0.7259044121019542,0.9176325872540474,-0.3641898254863918,0.01672930084168911,0.8021807670593262,-0.23981417017057538,0.5089385057799518,-0.8187412908300757,0.9917914164252579,-0.6790338330902159,0.874520658981055,0.7277107080444694,-0.2698121522553265,-0.08093065302819014,0.6657395558431745,0.6574942660517991,0.7780153909698129,0.4673231691122055,0.4895205800421536,-0.8431300646625459,0.047277846839278936,0.2632894697599113,-0.7561355819925666,0.9673309065401554,0.895535440184176,0.6512438473291695,-0.7474798490293324,-0.12624121317639947,0.375375765375793,0.3900765678845346,-0.6298507018946111,0.04002349590882659,-0.2913925820030272,0.06519095646217465,0.9131019935011864,-0.7593700108118355,0.6704251104965806,0.551513284444809,0.2157853851094842,-0.36689484352245927,0.4607291934080422,0.5590422148816288,-0.5995976878330112,-0.06393919326364994,-0.9577762586995959,-0.739057416561991,-0.16870803153142333,0.626498912461102,-0.523094130679965,-0.4541354104876518,-0.6322184503078461,0.4797223792411387,0.28717486979439855,-0.11128897871822119,0.6786516332067549,0.232945853844285,-0.3477844591252506,-0.23903180845081806,0.8599141626618803,-0.7245455123484135,0.902421245817095,-0.6825865390710533,0.1308325957506895,0.6222195127047598,0.5431629749946296,-0.36567912716418505,-0.6413651630282402,0.24442591331899166,-0.5767028341069818,0.6637939102947712,0.7755194655619562,-0.9162215776741505,-0.42435906175523996,-0.7238518483936787,0.45037568593397737,-0.592782867141068,-0.8396644587628543,-0.4701737714931369,-0.4652107898145914,0.13737295614555478,0.3698527761735022,0.5477753500454128,0.8051404654979706,0.4525625170208514,-0.46253223484382033,-0.8302248604595661,-0.27545418683439493,0.4031307911500335,0.8202060447074473,0.8440244016237557,0.7488946299999952,0.4813257814384997,-0.12945478921756148,-0.39658578112721443,-0.29267398454248905,0.6413804218173027,0.6004585330374539,-0.48675623536109924,0.1260542068630457,-0.06849145516753197,0.9023895096033812,-0.5972226839512587,0.29576019290834665,0.20256121596321464,0.3738347473554313,-0.6867679562419653,-0.26966616325080395,0.8243413618765771,0.013067809399217367,0.24024095200002193,-0.8971929624676704,0.13470866857096553,-0.19782746396958828,-0.9394611236639321,-0.17819026671350002,0.623287161346525,0.18121212720870972,-0.3865270805545151,-0.28270496241748333,-0.7354455306194723,-0.5122154555283487,0.828321180306375,-0.5752037353813648,0.5982071748003364,-0.0058231898583471775,0.8071239497512579,0.9130709413439035,0.7874243897385895,-0.897619450930506,-0.9255751646123827,0.5749377775937319,0.30865084659308195,0.9536117338575423,0.24832205474376678,-0.056826386135071516,-0.4320712387561798,-0.022412200924009085,0.21955639217048883,0.6650130352936685,0.4343847273848951,-0.5275942934677005,0.005642063450068235,-0.5888390731997788,0.8382500717416406,-0.35811001108959317,-0.45565654803067446,0.5922228759154677,0.6771160662174225,-0.05325779411941767,-0.6266421307809651,0.6235325331799686,-0.5827314672060311,0.5980558744631708,-0.0734962415881455,-0.2793332408182323,0.6449145041406155,0.24936015391722322,0.09118563728407025,-0.6274215565063059,-0.40811556251719594,-0.03915637591853738,-0.28591471817344427,0.21514056343585253,0.3140519610606134,-0.24728774279356003,-0.7877812348306179,-0.21471399627625942,-0.9970626952126622,-0.42968090204522014,-0.16145577281713486,0.07482772506773472,0.7772478386759758,-0.2577664516866207,-0.5146306715905666,0.4311858075670898,-0.7109393975697458,0.2771521024405956,-0.29079251922667027,0.5229265820235014,0.6312599456869066,0.7487159734591842,0.555581349413842,-0.25802809838205576,-0.9865504279732704,0.11231901217252016,0.1273449081927538,0.9124361095018685,-0.8749893237836659,-0.7845846172422171,-0.11361842975020409,-0.36708231270313263,0.7221191064454615,0.8908856483176351,0.25514410994946957,0.9577006422914565,0.6032194751314819,-0.2354210945777595,0.22618856001645327,-0.8983903545886278,-0.4890581676736474,0.958794801030308,0.26717423694208264,0.22715689660981297,0.1858984036371112,-0.6702919970266521,-0.14056532178074121,-0.7142017465084791,0.590808900538832,-0.4308560760691762,-0.04725966928526759,-0.3792242584750056,-0.3510883483104408,0.10355362668633461,0.7859765854664147,-0.5039521655999124,0.1121023716405034,-0.7242553750984371,0.22143573453649879,-0.0008305087685585022,0.2598509364761412,0.6521562193520367,0.762378285638988,0.8534836051985621,0.412513738963753,-0.8586646649055183,0.22102769510820508,0.4650131301023066,0.15781821077689528,0.0876185898669064,0.11241785436868668,-0.5490947575308383,0.9357323651202023,-0.4844592926092446,-0.6866374677047133,0.818593661300838,-0.20530477305874228,0.011225346941500902,0.664081871509552,-0.07046359963715076,-0.2561133895069361,0.8948719454929233,-0.3870596094056964,0.5368463802151382,-0.7003448838368058,0.844851606991142,0.5065009477548301,-0.7148765567690134,0.9229697124101222,0.393372121732682,0.19508711202070117,0.9217981393449008,-0.4215289754793048,-0.7903162208385766,-0.9467088663950562,0.03894972009584308,0.7766462252475321,0.40783342672511935,-0.47444474464282393,0.5775288594886661,0.9493542048148811,-0.1801357539370656,0.9765194049105048,-0.9253996964544058,0.6210680175572634,0.1549934963695705,0.2522326181642711,-0.7595008905045688,0.163361803162843,0.021953238639980555,0.9587563592940569,0.08989729592576623,-0.8509376444853842,0.5690272501669824,0.8996531688608229,-0.0074605937115848064,-0.14176664734259248,-0.124962049536407,-0.18479178333655,0.7566593033261597,-0.6462229820899665,-0.8680133740417659,0.7960499133914709,-0.9768311460502446,-0.7605978609062731,-0.7338770073838532,-0.6363021768629551,0.5841507697477937,-0.5926956972107291,-0.006213747430592775,0.10489592561498284,-0.09387179790064692,0.48157470114529133,0.5642617689445615,0.5286489874124527,0.8459177538752556,-0.06697671441361308,-0.519210419151932,-0.3481875965371728,-0.4382335767149925,-0.9946768172085285,-0.5637128641828895,-0.896095466800034,-0.8945385366678238,0.7236699014902115,0.5513731143437326,0.9405258018523455,0.9653829638846219,-0.9873309955000877,0.8804255076684058,-0.1833364423364401,0.07674545329064131,0.11068149236962199,0.7037884742021561,0.4458593996241689,-0.8265495570376515,-0.6614053030498326,-0.024194054305553436,-0.4791276818141341,0.03090485790744424,0.31176667334511876,-0.08955415152013302,0.8324028239585459,-0.8949538343586028,0.47000689385458827,0.638227928429842,0.39817011822015047,0.9940752740949392,0.6403105338104069,-0.5563948750495911,-0.5489175077527761,-0.550938312895596,0.1499504940584302,0.39341246290132403,0.9386077700182796,0.9557898798957467,-0.6046355217695236,0.7329747281037271,-0.42009519692510366,-0.17602165788412094,0.5340775693766773,0.27221517637372017,-0.3750325203873217,0.47584059415385127,-0.7595366248860955,0.9630645578727126,-0.2527959947474301,-0.44920167699456215,0.8037660014815629,0.403936215210706,0.2317485180683434,-0.017303011380136013,0.0019926968961954117,0.98207794316113,-0.7304213563911617,-0.8966296212747693,0.5700034126639366,-0.7689414918422699,-0.8326212326064706,-0.050823967438191175,-0.8903421345166862,0.03266074554994702,0.4972649347037077,-0.9786520125344396,-0.9900224688462913,-0.9753859359771013,-0.6444228892214596,-0.1783367320895195,0.9533072570338845,-0.22056335350498557,0.09745381120592356,-0.7139290869235992,-0.6403234344907105,0.036983605939894915,0.5338978245854378,-0.8202942935749888,0.24122642492875457,0.9426033473573625,0.980939710047096,0.33108912874013186,-0.7249761722050607,-0.9068790986202657,0.32837636675685644,0.9133803392760456,0.8502188553102314,0.5714568113908172,0.8447330058552325,-0.3808250683359802,-0.18164399079978466,-0.6094698323868215,-0.40261352621018887,-0.23019397165626287,0.9953698655590415,0.005879004951566458,-0.9694024180062115,-0.6018668976612389,-0.11093702726066113,-0.43790616653859615,-0.9138795593753457,0.21862139971926808,-0.9470822350122035,0.7855443004518747,-0.5692584491334856,-0.18500460917130113,-0.06931122066453099,-0.8498966386541724,-0.0433394662104547,0.2113215490244329,-0.04085535695776343,0.2636205479502678,0.7151337792165577,-0.534547415561974,-0.31160475267097354,-0.4422491188161075,-0.901332919485867,0.5700426395051181,0.8238431294448674,0.3655580272898078,-0.5252866977825761,-0.5301762600429356,0.47492481116205454,-0.13342864764854312,0.48325240472331643,-0.16600992484018207,-0.42182687763124704,0.8335079164244235,-0.9268256882205606,0.7508717817254364,-0.49742016149684787,-0.5423814384266734,-0.5094726071693003,-0.7091686213389039,0.5331328115426004,0.7495436337776482,0.721096258610487,-0.24640786089003086,-0.6745792226865888,0.7996778008528054,0.9242065767757595,-0.9507355424575508,0.7656386257149279,-0.2220851401798427,-0.48948247777298093,0.9624650664627552,-0.556782956700772,-0.721106409560889,-0.13974329875782132,0.7223686026409268,-0.3169250446371734,0.6085724947042763,0.4963885322213173,-0.06701258243992925,0.2856088671833277,0.5038330452516675,0.3516301135532558,-0.405168192461133,0.33491821587085724,0.3688101884908974,-0.3972007278352976,0.016048331279307604,-0.6826703171245754,0.26915694680064917,0.8259940729476511,-0.24540877435356379,0.32246603816747665,-0.05074546206742525,0.46479004295542836,-0.8457766389474273,0.7798665403388441,-0.3113024942576885,-0.4321828684769571,-0.08839583955705166,-0.5678801285102963,-0.21424702974036336,0.4907435066998005,0.439439092297107,-0.4427036386914551,0.45172546384856105,0.8037162688560784,0.7140007559210062,0.8127080625854433,0.5728638279251754,0.03318394720554352,-0.868948676623404,0.20984218874946237,-0.0329203475266695,0.9487202884629369,0.2040374013595283,0.45328451693058014,0.1645998922176659,0.09309098403900862,-0.11259825015440583,0.5631148661486804,-0.32674885960295796,-0.5783079513348639,-0.29549880838021636,0.5299391802400351,-0.21432376187294722,0.4736242233775556,-0.6059391894377768,-0.23433513147756457,-0.3825180842541158,-0.47857542149722576,0.9247440253384411,-0.17405995819717646,-0.31731216609477997,0.4060889813117683,0.649236619938165,0.9821957447566092,0.9180763810873032,0.9939891137182713,0.5955565059557557,0.2605248377658427,0.665379486978054,0.10037853755056858,0.7408131598494947,-0.8717901934869587,0.1871741102077067,0.3668998801149428,-0.09616503259167075,-0.8059147452004254,-0.49054895248264074,0.7250591921620071,0.571543934289366,-0.7183684478513896,-0.8615107852965593,0.17375456960871816,-0.03619275847449899,-0.3897278429940343,0.7865263535641134,-0.26934585627168417,0.4897184004075825,-0.6418600752949715,0.9807664644904435,-0.6785577996633947,-0.516168300062418,0.9433831349015236,0.0643867771141231,0.8944383389316499,0.21820590551942587,0.4189441236667335,-0.6745270844548941,0.08314063213765621,-0.8253413680940866,-0.6576509037986398,-0.023125602398067713,-0.4613471650518477,-0.22592480713501573,-0.9599804384633899,0.5292715081013739,-0.6112567624077201,-0.6755247572436929,-0.9828716460615396,-0.9148754365742207,-0.1079532909207046,0.9876666581258178,0.5801382507197559,-0.7111376412212849,0.8905152473598719,0.590901430696249,0.3713055751286447,-0.9918933711014688,-0.030651847831904888,0.3077648407779634,-0.46398763451725245,0.2994525618851185,0.17709689773619175,0.679258594289422,0.38755834149196744,-0.4425434283912182,-0.08006142219528556,0.5260383505374193,-0.537541117053479,-0.14039537589997053,0.808036363683641,-0.129654323682189,0.9318345398642123,0.7168216262944043,-0.869998084846884,-0.5603267424739897,0.5117781055159867,0.6765823015011847,-0.5807474264875054,0.3505966360680759,0.368898943066597,0.12030975660309196,0.3504620222374797,-0.8671975489705801,-0.5905710263177752,-0.95059282053262,-0.24422524170950055,0.8546738689765334,0.012175298295915127,0.1413941909559071,-0.12830308033153415,-0.393786926753819,-0.1826243530958891,0.2785135987214744,-0.3978563523851335,0.8506373199634254,-0.2753429748117924,0.4144016783684492,0.753555204719305,0.6802033116109669,-0.883634140715003,-0.27922167303040624,0.42153371265158057,0.09530928451567888,-0.5707718399353325,-0.8390484964475036,0.07572467438876629,-0.9889668580144644,-0.2946784934028983,0.949836031999439,0.7455369713716209,-0.8369534285739064,0.6482574576511979,-0.10229059541597962,0.2512323409318924,0.4967150925658643,0.1921017481945455,0.7319087851792574,-0.2810913701541722,0.09136025188490748,-0.14404292404651642,0.8568480624817312,-0.7119900998659432,-0.803500606212765,-0.1569827958010137,0.6663113799877465,-0.15779867535457015,0.09239002410322428,-0.8577324701473117,-0.20614180248230696,-0.9936418952420354,0.6237075268290937,-0.8736570966430008,-0.6104990364983678,0.23770891735330224,-0.22187531273812056,-0.2698763352818787,0.17352913226932287,0.2903631473891437,-0.6891354462131858,0.013121233321726322,0.3869686550460756,-0.4155426356010139,-0.759843117557466,0.6091223959811032,-0.4203147594816983,0.8709165826439857,-0.32654639054089785,0.6322702709585428,0.004569884855300188,0.05422042077407241,-0.7289199316874146,0.9489424033090472,0.3711489299312234,-0.7569995624944568,-0.4873454119078815,0.7784091816283762,0.10459851380437613,0.45895523484796286,-0.45549481082707644,-0.49397661816328764,-0.9971375577151775,-0.5905122677795589,0.9996311855502427,-0.003805955406278372,-0.5088825412094593,-0.8831400284543633,-0.5725716236047447,0.7896293960511684,-0.15379844652488828,-0.7926892912946641,-0.5194097352214158,0.505135974381119,0.7280785362236202,-0.7902290788479149,-0.5300766038708389,-0.18658452853560448,-0.8004177883267403,-0.7374013615772128,0.535093842074275,0.13916646409779787,0.13840398425236344,0.25734584871679544,-0.4520929465070367,-0.19502497976645827,-0.37302439427003264,-0.9590102341026068,-0.1851983442902565,0.06150758545845747,-0.5552475345321,-0.7669056658633053,0.69013682147488,0.9601912130601704,0.3141256025992334,0.7350951242260635,0.8958606170490384,0.2542715291492641,0.18980402452871203,-0.6208688444457948,-0.7167873494327068,-0.7460428741760552,-0.4484088607132435,0.6959971934556961,0.4814189877361059,-0.4313749149441719,0.9834140152670443,0.40004362212494016,-0.8469008086249232,-0.13875719625502825,0.2333502108231187,0.6939445449970663,0.0918581341393292,0.6148944362066686,-0.9527282356284559,0.6468734764494002,-0.38180704275146127,0.8365894588641822,-0.8277742639183998,0.5021587228402495,-0.7420752155594528,0.5066665890626609,0.5955179617740214,0.719494869466871,-0.5005626431666315,0.8615974108688533,-0.27869748091325164,0.2724488787353039,-0.6441222969442606,-0.25463022803887725,0.8995557776652277,-0.3594852350652218,-0.9575059823691845,-0.13400918385013938,-0.8060006676241755,-0.1304565230384469,0.1454532421194017,-0.09745979774743319,0.29144662944599986,-0.42105989158153534,0.6241420810110867,-0.4133065459318459,-0.41898895474150777,0.47636699955910444,0.16897409409284592,-0.09713875129818916,0.5547855240292847,-0.8836021795868874,0.8637352092191577,0.03550275228917599,-0.5157727878540754,-0.22109368490055203,-0.6882124519906938,0.2309793164022267,-0.5224983631633222,-0.5847942605614662,0.5042183762416244,-0.8892670935019851,-0.45251613203436136,-0.49148883018642664,0.40648317337036133,0.5798746915534139,0.7947582951746881,0.761937995441258,-0.1478423709049821,0.08475405350327492,-0.7285906714387238,0.0927868657745421,-0.1486335201188922,-0.5477754618041217,-0.22097895480692387,-0.6357652060687542,0.2360616521909833,-0.4417952583171427,-0.8832200709730387,0.11874260427430272,0.1527562108822167,0.35138721484690905,-0.9135080529376864,-0.1868480583652854,-0.0025894399732351303,0.30954466154798865,0.662199629470706,0.6820258172228932,-0.2389085520990193,-0.5803580707870424,0.25750789418816566,0.011254035867750645,0.4476400990970433,-0.8863467224873602,-0.1278623598627746,-0.9451939323917031,0.06846979074180126,-0.25196483079344034,-0.7222670945338905,0.6648477739654481,-0.03301775082945824,-0.5267565101385117,-0.2851896109059453,-0.04753623204305768,0.4242518083192408,0.3000207426957786,0.7585659543983638,-0.8375934711657465,-0.6535798409022391,-0.9893899275921285,0.12800413323566318,0.34789599059149623,0.945863809902221,-0.17401537019759417,-0.07676961459219456,0.32356077851727605,-0.7064646249637008,0.8617174997925758,-0.2626340063288808,-0.09354510344564915,-0.6112941168248653,0.3289442267268896,0.9634938621893525,-0.9637450771406293,-0.2065562722273171,0.4858887931331992,0.5942118312232196,0.4054204961284995,0.8916196273639798,-0.7516234247013927,-0.7841163147240877,-0.406325098592788,0.8881495608948171,0.3610209058970213,0.978735463693738,0.8381433319300413,-0.22076101740822196,-0.9892108314670622,0.9946747543290257,-0.8684604302980006,-0.6429488980211318,-0.36032484704628587,-0.4946170272305608,-0.36028639087453485,0.8733218866400421,-0.9180926354601979,0.34229970211163163,-0.39629513258114457,0.5082760383374989,0.8754362342879176,0.5304157081991434,0.7134279138408601,-0.784210336394608,-0.7739189057610929,-0.8432431281544268,0.6174808451905847,0.03025275794789195,0.7763248621486127,0.8107084892690182,-0.004437397234141827,0.15077191404998302,-0.08103682985529304,-0.6933172596618533,0.7679723110049963,0.5812790328636765,0.9308369676582515,-0.16691567469388247,0.5199410254135728,-0.06364131951704621,0.12682434264570475,0.8287147143855691,0.06652549188584089,-0.005815285723656416,0.8521904684603214,-0.7761963340453804,-0.9014867385849357,-0.2841575229540467,-0.060949071776121855,0.4609518749639392,0.4689332121051848,0.7260429747402668,-0.6063314955681562,0.7451835591346025,-0.9282194403931499,-0.7894699876196682,-0.7728158864192665,-0.35429650405421853,0.807698582764715,-0.6023860964924097,-0.3071770458482206,-0.8001313349232078,0.6719705509021878,0.08601703168824315,-0.7682298612780869,0.5608253153041005,-0.40961624775081873,0.6382252355106175,-0.4664039178751409,0.7009507664479315,-0.6743134167045355,-0.86417694715783,0.22429270716384053,0.40579950995743275,-0.1357389483600855,0.8064680374227464,-0.2933443463407457,-0.39642561273649335,0.5925826299935579,-0.27275563310831785,0.5134016000665724,0.1830754466354847,-0.7126889214850962,0.05200609751045704,0.04237964889034629,0.10354722756892443,-0.4936252566985786,-0.4809697144664824,0.806508207693696,-0.8547092489898205,-0.9190221531316638,0.7571322312578559,0.024145448114722967,-0.14383260486647487,-0.6407007770612836,-0.8485782779753208,0.7941723433323205,0.694356698077172,0.8184699704870582,-0.2205896582454443,-0.7338978252373636,0.4590833787806332,0.09957261057570577,0.6142237465828657,-0.5367097207345068,0.2958873030729592,-0.814891844522208,-0.26458103582262993,-0.88872194243595,0.017305145040154457,0.8802436236292124,-0.05627212440595031,-0.18491673236712813,-0.3618255532346666,-0.5698319380171597,0.13232248136773705,-0.9888223041780293,-0.34834071854129434,0.412714212667197,0.12301881751045585,-0.2650891225785017,-0.3172803018242121,-0.8062664126046002,0.2044161045923829,0.7946855560876429,0.9379109204746783,0.8884504130110145,0.7161645479500294,0.12969183223322034,-0.15475326124578714,0.07920992467552423,-0.33074904792010784,-0.5332818208262324,0.2950050411745906,0.3257203819230199,-0.892437819391489,-0.1710865660570562,0.8953154049813747,-0.6192021500319242,-0.5348446243442595,-0.5209311190992594,-0.6662809448316693,-0.5427776388823986,-0.38309553638100624,0.34884789399802685,-0.4147677286528051,-0.6989691029302776,-0.4544128505513072,0.1444216864183545,0.32945284666493535,0.3444549320265651,-0.05061696795746684,0.43915189104154706,-0.17504951963201165,0.08758585061877966,0.33151480508968234,0.260352092795074,0.5176342879422009,0.9128744243644178,0.7869579289108515,-0.3954123626463115,0.3860478796996176,0.15578565280884504,0.18481624592095613,0.7291792877949774,-0.6592115177772939,-0.6721514840610325,-0.5807258016429842,-0.1421182481572032,-0.8734917808324099,0.78894960321486,0.8708512424491346,0.3745058448985219,-0.4440048229880631,-0.71484105149284,0.8403090112842619,-0.5069614686071873,0.7176305265165865,-0.32729725539684296,-0.880759026389569,-0.7835748083889484,-0.48227694164961576,0.12235012277960777,0.08769979933276772,-0.6783591811545193,0.31033952720463276,-0.9819970307871699,-0.7586392932571471,0.590451069176197,-0.45000997046008706,0.3745550140738487,-0.1216860213316977,-0.3139221975579858,-0.6182564436458051,0.6326273451559246,0.5046527697704732,-0.8799050399102271,0.250638235360384,0.3508644727990031,-0.013986867852509022,0.47453069128096104,-0.4578615869395435,-0.4325050814077258,0.2621335815638304,-0.5777068454772234,0.40877193538472056,0.47634590277448297,0.12552065774798393,-0.9875191021710634,0.0420605493709445,0.23396833566948771,-0.6793040260672569,-0.8328437367454171,0.7807597550563514,0.8656783057376742,-0.08936383808031678,0.5318678710609674,-0.08189857378602028,0.4123304393142462,0.13458394818007946,-0.525656096637249,0.3374091614969075,0.3467529658228159,0.5670609837397933,0.5660528629086912,0.5312867844477296,0.19154839497059584,-0.9735615290701389,-0.9297752953134477,-0.26834282372146845,-0.564247319009155,0.4504915988072753,0.7029439066536725,0.5953647578135133,0.7070068377070129,-0.18415013793855906,-0.12625408312305808,0.2848385954275727,0.4175227927044034,-0.6293289884924889,0.8798458874225616,0.9553300985135138,-0.8744021290913224,-0.6885195220820606,-0.4140101089142263,-0.7150900792330503,0.5933185173198581,-0.27080624736845493,0.5264730378985405,0.9250613166950643,0.5605125119909644,-0.6478929780423641,0.7775819557718933,-0.5544451894238591,-0.9160845563746989,-0.17683896468952298,-0.11201020423322916,-0.08939874218776822,0.9048460936173797,0.16874613985419273,0.6536647472530603,-0.8016389505937696,0.3204151610843837,-0.0876220166683197,0.7783567081205547,0.4616888826712966,0.6815226920880377,-0.03934732172638178,0.41402435721829534,-0.5787979084998369,-0.47962055495008826,0.17447560699656606,0.7082694731652737,-0.30876245349645615,0.07336416654288769,0.032951227854937315,-0.05909791635349393,-0.7025119117461145,0.16001336509361863,0.9836842478252947,-0.39627291774377227,0.20967900333926082,0.8090822831727564,0.31243294989690185,0.7818737411871552,-0.38919607223942876,0.6494626551866531,-0.2456844816915691,0.012874032370746136,-0.5815843632444739,0.15947839058935642,-0.5686745997518301,0.20557803893461823,-0.21542647434398532,0.6756261070258915,0.4609433365985751,0.021174788009375334,0.91941546369344,-0.616471576038748,0.11597208585590124,0.4743973328731954,0.834086996037513,0.8818579665385187,0.9042263817973435,-0.1754671186208725,0.15805377112701535,-0.3695235028862953,0.05763007467612624,-0.9449916654266417,-0.33717011054977775,0.5178336407989264,-0.9731672466732562,-0.0963872130960226,0.7998687960207462,0.41736556869000196,0.12506319722160697,0.757987052667886,-0.4603887959383428,0.26370830414816737,0.6693095085211098,0.8138637109659612,-0.2781405500136316,0.5448003746569157,-0.23958337027579546,-0.2858779584057629,0.6398960840888321,-0.09105082275345922,-0.02232852391898632,0.7719446965493262,-0.1588779967278242,-0.24693832965567708,-0.08874729834496975,-0.7415757309645414,0.49468253226950765,-0.19911146629601717,0.8013645354658365,-0.40508893644437194,-0.7946685994975269,0.8347674147225916,-0.09550271835178137,-0.26209420897066593,-0.7968490933999419,-0.763421849347651,-0.26976808486506343,0.3465521140024066,-0.6550042354501784,-0.45837713684886694,0.5285018137656152,0.5040682884864509,0.9767999309115112,0.32175897946581244,-0.49529782868921757,-0.8108740393072367,-0.962398518808186,-0.5949407848529518,0.3435566336847842,-0.03525120345875621,-0.09919148404151201,0.251920361071825,0.4214804698713124,0.9958645929582417,-0.9375469284132123,-0.8854507012292743,0.9700253130868077,0.943489390425384,-0.8698738310486078,-0.10692136082798243,-0.3459807219915092,-0.24131501093506813,-0.48341458896175027,0.030355351977050304,-0.9629219346679747,0.8051233808510005,0.11709202826023102,0.6659259675070643,-0.540471198502928,0.6940439753234386,-0.5829294989816844,0.5714907962828875,-0.6960379863157868,0.2569362362846732,0.6531653660349548,0.14793619932606816,-0.5005360539071262,0.8668077602051198,-0.9792585903778672,-0.9573999117128551,0.5018629869446158,-0.5796418432146311,-0.8111486816778779,0.9200488901697099,-0.5448217419907451,0.6201432892121375,0.40282321628183126,0.49012173619121313,0.28371491050347686,0.801472089253366,0.5847963532432914,0.6858540251851082,-0.5275389542803168,0.3181721889413893,0.5193400792777538,-0.1930197151377797,0.8843795559369028,0.6730532441288233,-0.43825379898771644,0.4932215237058699,-0.3403594889678061,-0.66523816017434,0.9590291823260486,0.7606996712274849,0.9308535703457892,-0.3655811557546258,-0.4153015110641718,0.44502916699275374,0.46357031632214785,-0.5178087493404746,-0.3374005244113505,-0.3072299989871681,-0.44865269074216485,0.043384349439293146,-0.43233451386913657,0.9788873810321093,-0.43262788746505976,0.0037613757885992527,-0.24627442564815283,0.7250521322712302,-0.7341118906624615,0.24388106167316437,0.548165837302804,0.7757280701771379,0.3158309981226921,0.18502433598041534,-0.10642222873866558,0.8414361802861094,-0.10630729561671615,0.3900005053728819,0.9181958604604006,0.7982203965075314,0.6231798422522843,0.017547878436744213,-0.9045602851547301,0.39851646358147264,0.4893134064041078,0.6008481988683343,-0.3433064525015652,-0.14769901800900698,-0.0022313459776341915,0.3415197776630521,-0.197176496963948,-0.10166136734187603,-0.3539598099887371,-0.7289431244134903,0.1761435135267675,0.18396352650597692,0.6936207143589854,-0.5411617993377149,0.5022249417379498,0.016487422864884138,-0.4047768162563443,-0.6167528769001365,-0.7526007639244199,0.3094808114692569,0.06682607159018517,-0.5758333960548043,-0.6714333714917302,-0.5361858541145921,-0.6360306493006647,-0.8546108794398606,0.8087476822547615,0.1912508294917643,-0.44956235587596893,-0.8573803449980915,0.30935111083090305,0.9015165474265814,-0.4423330225981772,-0.2887806296348572,-0.19147324515506625,0.7335403002798557,0.841428954154253,0.14637630945071578,-0.12532508186995983,-0.7284015426412225,0.511581695638597,-0.7577998815104365,0.6819622218608856,0.340198639780283,-0.6163389664143324,-0.6754388511180878,0.40321889193728566,-0.5093402131460607,0.6360196992754936,-0.5923411664552987,0.6213624780066311,0.4650083836168051,0.43704449012875557,0.5100425551645458,0.4002632834017277,0.7713116207160056,-0.03162390645593405,0.31019691145047545,-0.36052714101970196,-0.844342696480453,0.3298727720975876,0.0960452533327043,0.9298312095925212,-0.05436414945870638,-0.4282548096962273,-0.7629484441131353,-0.3875293363817036,0.5863706287927926,-0.7714626025408506,0.08207811322063208,-0.4573439871892333,-0.07406056206673384,0.6729982793331146,0.2848128951154649,0.7505149925127625,0.4400384849868715,-0.04924600385129452,0.3312779958359897,0.2686607511714101,0.24912871839478612,0.8282785159535706,0.7451880061998963,0.5453259372152388,0.6721509750932455,0.5325300241820514,0.654310654848814,-0.029368623159825802,0.30236983112990856,-0.37975445203483105,-0.4191568340174854,-0.9280595313757658,-0.5211262064985931,0.22441470623016357,0.8503419309854507,0.9181090742349625,-0.3297133226878941,0.8357429546304047,0.748495286796242,0.9798322599381208,-0.19783722329884768,-0.06526214210316539,0.5469986256211996,-0.415988446213305,-0.6425042408518493,-0.686880097258836,-0.5183512447401881,-0.07479684287682176,0.5896339523606002,0.4741006246767938,0.5126236649230123,-0.6292314659804106,0.10962962452322245,0.0793526666238904,0.10698936693370342,-0.48982548993080854,0.8544684858061373,-0.1484807301312685,-0.8635392650030553,0.5935126673430204,0.5539925969205797,-0.16824949719011784,0.63481101160869,0.8547337115742266,-0.15324548538774252,-0.1991361901164055,-0.6734533836133778,0.8444456080906093,-0.24445473868399858,-0.9103550706058741,-0.6926083485595882,0.08579525956884027,0.4011643542908132,0.42345753824338317,-0.2101205661892891,0.25321614276617765,-0.5709354882128537,0.040805389173328876,-0.38799434807151556,0.6051706215366721,0.03871719725430012,-0.052854887675493956,0.8887402564287186,-0.8978370050899684,0.8310600952245295,0.13202972197905183,0.28748770570382476,0.8872980098240077,0.9840272599831223,0.8171916794963181,0.021568849682807922,-0.512698061298579,-0.8185808286070824,-0.16866087401285768,-0.7445819973945618,0.947068955283612,0.8622726025059819,-0.6788690141402185,0.32912806468084455,0.2453984720632434,-0.8099459055811167,0.1027520727366209,0.214542499743402,0.7803521347232163,0.7146725691854954,-0.8888391717337072,-0.6970271868631244,-0.3512197155505419,0.1308481264859438,-0.6860131886787713,-0.4708358873613179,-0.6116352444514632,0.8197947950102389,-0.8525711568072438,0.05509477807208896,0.9585227342322469,-0.38794015906751156,0.9151164381764829,0.5586079987697303,-0.12607669737190008,0.3923414908349514,0.5149558978155255,0.48323903838172555,0.4206608631648123,-0.33886351250112057,-0.546766918618232,0.3559604906477034,-0.1499850652180612,0.9433951778337359,-0.11969344923272729,-0.363846227992326,0.4280487112700939,0.9396409718319774,0.5864715157076716,0.9641025494784117,-0.641049784142524,-0.30113460775464773,0.0954907825216651,-0.9528120504692197,-0.6940933866426349,-0.5088025107979774,0.7868374097160995,-0.4094719202257693,0.7089826450683177,-0.39521288592368364,0.4318933077156544,-0.4594536214135587,0.08759361179545522,0.34999534022063017,0.1603431641124189,-0.8331214990466833,-0.571973308455199,-0.6895104157738388,-0.2165939612314105,0.17438149685040116,0.3200260601006448,-0.06912670563906431,0.5831900658085942,0.005959056317806244,0.22296925773844123,-0.24147762870416045,-0.28509196918457747,-0.6678843349218369,-0.12455089436843991,0.9721262739039958,-0.9564476716332138,-0.8476635674014688,-0.42894760239869356,-0.8196699651889503,-0.8993348060175776,-0.13758963719010353,0.427422096952796,0.31525433296337724,-0.31600617757067084,0.5016425377689302,-0.11528228921815753,0.4804359646514058,-0.7126494208350778,-0.43638576893135905,0.07055497402325273,-0.9416809338144958,0.32969243731349707,0.22242371179163456,0.48495681351050735,-0.7831949512474239,-0.84329395275563,-0.5614073807373643,0.5618782849051058,0.1280204555951059,0.4946462861262262,-0.13293389463797212,0.46790440985932946,-0.8429816975258291,0.3931609080173075,0.013317907229065895,0.34340546326711774,-0.9239831711165607,0.7882621320895851,0.8766428357921541,-0.014972054399549961,-0.47741973074153066,-0.2678921725600958,-0.5267384652979672,0.6347375344485044,0.527486854698509,-0.8811273742467165,-0.9084577732719481,-0.2393144080415368,0.5122710866853595,-0.655783066060394,-0.8370938817970455,0.15557594690471888,-0.637947706039995,0.5469056172296405,-0.05743444385007024,-0.035561093129217625,0.7920079031027853,0.4319771253503859,-0.5260659158229828,0.9498326210305095,-0.55977543303743,0.6151027386076748,0.8964557070285082,0.8059465438127518,-0.8421280556358397,-0.6844655931927264,-0.08107475470751524,0.5698257675394416,0.925121171399951,0.08152610901743174,0.5880330740474164,-0.13510031206533313,0.2037186217494309,-0.37160291196778417,-0.4590665237046778,0.24563133111223578,0.8732723509892821,0.947505013551563,-0.6169777321629226,0.04255247442051768,-0.3287433283403516,-0.7115468480624259,0.07856132555752993,0.7575189881026745,0.44012210331857204,0.5697525069117546,-0.8448766591027379,-0.6245292848907411,-0.6515775704756379,-0.2333422456867993,-0.6207626294344664,0.8235251032747328,0.8807144961319864,-0.21579151507467031,-0.1455057468265295,-0.097932287491858,0.5233702016994357,0.7592210499569774,-0.9700721926055849,0.08389352448284626,0.5863655195571482,0.43253744300454855,0.021239016205072403,-0.8935287706553936,0.06735423626378179,-0.2207583854906261,-0.6376457987353206,-0.701052631251514,0.07108289375901222,-0.7536103804595768,-0.9959766236133873,-0.8737845267169178,-0.35542464535683393,0.4869423699565232,-0.13231539353728294,-0.4033309808000922,-0.10859972517937422,0.07928379159420729,-0.040308456402271986,0.10502475686371326,0.7813437017612159,0.7319162003695965,-0.5781427985057235,-0.46692864038050175,-0.21307215048000216,0.12350112339481711,-0.15770154632627964,-0.38713062601163983,-0.9284287551417947,0.5397502966225147,-0.45422534504905343,-0.8493912843987346,0.31675636721774936,0.16153186419978738,0.18332224152982235,-0.6765242437832057,-0.2188826915808022,-0.4883089908398688,0.011202646885067225,-0.8102539931423962,0.306950441095978,-0.4149497300386429,0.40252458583563566,0.8322214023210108,0.526865276042372,0.5051358379423618,-0.418200527317822,0.012349599972367287,-0.20573768066242337,0.9199444185942411,0.8358680424280465,-0.2632806319743395,0.37578414799645543,-0.8847299171611667,0.226163478102535,-0.39283902663737535,0.25062492676079273,-0.20292751863598824,0.80301558598876,0.6786515437997878,0.4745218432508409,-0.7487473590299487,0.12590245297178626,0.2191305374726653,-0.8500899048522115,-0.760293313767761,0.14031034149229527,-0.7631958047859371,0.8452527117915452,-0.46670049941167235,0.9321863558143377,-0.5371618140488863,0.5598005698993802,-0.2603723877109587,0.6147712809033692,-0.8454191037453711,0.565643782261759,0.6639094208367169,0.22964512882754207,0.5448553776368499,-0.44984287256374955,0.1317048384808004,-0.08885767310857773,0.8952859155833721,0.8855457860045135,-0.16257674526423216,0.3515711990185082,0.20780129544436932,0.07816367549821734,0.0002743382938206196,0.924054732080549,-0.48338241688907146,-0.6979107889346778,-0.29718496929854155,0.4803727394901216,0.8634532694704831,0.7224886370822787,-0.6143205864354968,0.5515468921512365,0.7546255141496658,-0.3695295425131917,0.6257560406811535,0.25907861115410924,-0.06877330597490072,-0.12093344004824758,-0.47551752906292677,0.7968664462678134,0.47404714161530137,0.07522712182253599,0.045264608692377806,0.9589892248623073,-0.026469734963029623,-0.8292968668974936,0.658676337916404,-0.5010040197521448,-0.7131959185935557,-0.6118166921660304,0.8078525965102017,0.2269854350015521,-0.32787414407357574,0.6519144168123603,0.6117258919402957,0.5998387900181115,-0.38089740881696343,0.6083016735501587,-0.595240842550993,-0.796206992585212,0.7245641299523413,-0.5112587115727365,0.3059977414086461,-0.45997619768604636,-0.5386177548207343,0.4502633982338011,0.9949251455254853,0.9563677189871669,-0.3516668905504048,0.772202780470252,-0.4416944747790694,-0.9179110554978251,-0.8681134758517146,-0.7636644369922578,0.17552796099334955,0.7912938259541988,-0.11442958982661366,-0.534000551328063,-0.739609488286078,-0.6741774589754641,-0.9534050957299769,-0.764498864300549,0.880574188195169,-0.4586012284271419,0.2563095358200371,0.6939533255062997,0.4660981735214591,-0.19194657914340496,0.49861731892451644,0.20495067397132516,-0.3029276728630066,-0.17534543946385384,-0.5004727048799396,0.10606567189097404,0.28512046579271555,0.959855685941875,0.10288636991754174,0.9618141716346145,0.6493037166073918,0.0042211501859128475,-0.8760198540985584,-0.9289908092468977,-0.7782776299864054,-0.5085547124035656,-0.10602571070194244,-0.6329970229417086,0.5127523778937757,-0.7424038019962609,-0.34135002782568336,0.5064246668480337,-0.9610946206375957,-0.49414046155288815,-0.7374453819356859,0.09435784816741943,0.586448673158884,0.2752868356183171,0.6221322249621153,0.2589767719618976,0.6527396431192756,0.39022516133263707,0.5101007432676852,0.7400943962857127,0.012575134169310331,0.22963391710072756,-0.7260128417983651,0.7319679050706327,-0.0825575408525765,-0.10113109368830919,-0.4952639262191951,0.41874322248622775,-0.09093830967321992,-0.19047074113041162,0.6830017599277198,0.4469538223929703,-0.38121077651157975,-0.5583603591658175,-0.9318041736260056,0.6361110690049827,-0.18426573183387518,-0.14327592868357897,0.8620366854593158,-0.5592863140627742,-0.0663075284101069,0.8394431285560131,0.1265263082459569,0.07482178276404738,0.7400480303913355,0.3241327959112823,-0.6166469277814031,0.6970492717809975,-0.9777075555175543,0.01607784815132618,0.7181947287172079,0.29794221138581634,-0.9424289120361209,0.02356423158198595,-0.8607940515503287,0.19989289296790957,-0.707765472587198,-0.29647667380049825,-0.845055675599724,0.49297472974285483,0.6835880815051496,-0.7708358746021986,-0.8694261847995222,0.18043865030631423,0.6495953090488911,0.22287626611068845,0.8247758145444095,-0.5372488149441779,0.46313196513801813,0.8885649451985955,-0.3682540152221918,-0.19018059829249978,0.43852581223472953,0.15912738163024187,-0.8068944527767599,0.7851239726878703,0.10372767550870776,-0.08120122225955129,0.5182766932994127,0.730468783993274,-0.703142796177417,0.5791250020265579,0.17716220021247864,-0.40105066634714603,-0.6390538634732366,-0.4859049543738365,0.19569728150963783,0.8245079447515309,0.04192504286766052,0.5990953934378922,-0.7200018423609436,-0.6540552428923547,0.883273406419903,0.4952919138595462,-0.9302374119870365,-0.19461718201637268,-0.37284595938399434,-0.17952792346477509,-0.1888142223469913,-0.37669599149376154,0.9242662419565022,0.9815169060602784,-0.5354338753968477,-0.9140659235417843,-0.97185815917328,-0.6236278135329485,-0.8062154264189303,-0.4093481106683612,0.9922441490925848,-0.560010242741555,-0.2923348369076848,-0.20825694780796766,0.6930380938574672,-0.2474286062642932,-0.7494091149419546,0.45821169717237353,0.03025564318522811,-0.9166449694894254,-0.6946449195966125,0.5878865509293973,-0.7357641132548451,0.06813773652538657,0.32584445597603917,-0.9532320122234523,0.8089927551336586,-0.23455646401271224,-0.9047521930187941,-0.007123608607798815,-0.7498534289188683,-0.9087788490578532,0.07992233755066991,-0.9745374149642885,0.7417446528561413,0.9597733011469245,0.042233134619891644,0.5685613355599344,-0.5346354641951621,-0.29934599343687296,0.7290903213433921,-0.5540835033170879,0.8159664794802666,-0.18135377625003457,0.8679756745696068,-0.9775721440091729,0.6630692067556083,-0.998230658005923,0.411046686116606,-0.7475902843289077,-0.05458040256053209,-0.198785284999758,0.6960189370438457,-0.3801802881062031,0.5881639434956014,0.7953958488069475,-0.6308643273077905,-0.09528702916577458,0.5581292640417814,0.5168654159642756,-0.3438281873241067,-0.6041932445950806,-0.9193777167238295,0.6195274065248668,-0.617945927195251,0.8696050676517189,-0.04073065659031272,-0.8203266165219247,0.5687292846851051,-0.3062020018696785,-0.646957078948617,0.23718654923141003,-0.9728669370524585,-0.3514965274371207,-0.5016938000917435,-0.3033653227612376,0.8723080265335739,-0.976154615636915,-0.057463751174509525,-0.1605276637710631,0.9416356110014021,-0.419544099830091,-0.5744871562346816,-0.7805812298320234,0.4385802270844579,-0.5935224462300539,0.49282017908990383,0.9421781497076154,0.5530115161091089,-0.8106317571364343,-0.9636993957683444,0.8653240371495485,-0.2574300030246377,0.5643297918140888,-0.4110917989164591,-0.3682454517111182,-0.5663304105401039,0.8409278425388038,-0.2326385397464037,-0.39835936995223165,0.028101131785660982,-0.5464543616399169,0.7352614155970514,-0.7555088051594794,0.9372924831695855,-0.9466605228371918,0.8703053751960397,0.8932918920181692,0.76079166168347,0.8076672898605466,-0.4731091232970357,0.012292371597141027,-0.2532994244247675,0.7448329422622919,0.08095166552811861,0.4965514154173434,0.1714445175603032,-0.6326775541529059,0.1197114191018045,-0.4923381796106696,-0.3359984098933637,0.8350344584323466,0.6453055287711322,0.588672895450145,-0.6166557921096683,0.09012879244983196,-0.9594768327660859,0.43670865055173635,0.8583259242586792,-0.03408505069091916,-0.9263007906265557,0.22872784128412604,0.874559611082077,0.705870897974819,0.6017657145857811,-0.8343654698692262,-0.17187388008460402,-0.9149025161750615,0.2597473254427314,-0.9116205391474068,0.3534003817476332,-0.3360420670360327,0.7457209005951881,-0.8457812187261879,-0.6638408643193543,0.39223737642169,-0.38201221404597163,0.4536169786006212,-0.38895163871347904,-0.9295378406532109,-0.8275451264344156,-0.5740068485029042,-0.12703447183594108,-0.5810080282390118,-0.6003555417992175,0.07996660424396396,0.6063855141401291,-0.8685418744571507,0.4085121531970799,0.13979691918939352,0.24423327203840017,0.035621913615614176,0.8225027583539486,-0.9597598081454635,-0.02877059206366539,0.7208966575562954,0.060885392129421234,-0.17353441659361124,0.6679107882082462,0.805787623859942,-0.8640257846564054,0.8385430984199047,0.6211756006814539,0.641839184332639,-0.6292371395975351,-0.7795984977856278,0.7434223592281342,0.9682278302498162,0.5546509409323335,-0.6694458900019526,-0.5272248797118664,0.7457763864658773,-0.28854428976774216,0.060710791032761335,0.9038064642809331,0.2314842431806028,-0.9333333941176534,-0.1265999050810933,-0.7600606898777187,-0.2862929222173989,0.13924811827018857,-0.8612098218873143,-0.5655146702192724,-0.0004668142646551132,-0.39874221850186586,-0.6875335136428475,0.562243431340903,0.08741020131856203,0.8266377537511289,0.34702152805402875,0.7487601665779948,0.47688303235918283,0.5900334129109979,0.8091764976270497,0.049463463481515646,-0.28571281488984823,-0.9185125618241727,-0.5095218294300139,-0.6788250110112131,-0.6923251431435347,-0.23163250414654613,0.1674659107811749,-0.6488120900467038,-0.04218278778716922,0.6264067920856178,-0.95882627973333,0.8724851221777499,0.1060018208809197,0.7646563500165939,0.15058858320116997,-0.6759949089027941,0.7488942127674818,0.8960275705903769,0.3855562540702522,-0.9391030049882829,0.44873916637152433,-0.6178095946088433,0.18690623296424747,-0.08682216377928853,0.3010656819678843,0.043044159188866615,-0.03676926298066974,0.6461266684345901,-0.5456444709561765,-0.9146784204058349,-0.14263736689463258,-0.7318196846172214,0.41188081819564104,-0.1291544996201992,-0.7771056666970253,0.641359243541956,0.9815563391894102,0.5319069158285856,-0.7410382488742471,0.9607202759943902,-0.453243319876492,-0.011758784297853708,0.6281757587566972,-0.21794484602287412,0.578912042081356,-6.411690264940262e-05,-0.49234824161976576,0.7109765987843275,-0.1928056892938912,0.6947950958274305,0.8945437846705317,-0.3040593294426799,-0.8287306381389499,-0.7769317198544741,-0.19684560922905803,-0.5331541341729462,-0.5777760376222432,0.6281141676008701,-0.732158703263849,0.6803778894245625,0.48082073451951146,-0.015121800359338522,0.14503449015319347,0.9056965913623571,-0.32232949789613485,-0.609072205144912,0.298363936599344,-0.4331890940666199,-0.9727753540500998,0.2873805109411478,-0.30083336820825934,-0.8609867910854518,-0.8787278928793967,0.8911696490831673,-0.3325616638176143,-0.3364827698096633,0.5163374249823391,0.05128378048539162,0.378215700853616,-0.44195670168846846,0.931133946403861,0.4327727584168315,-0.8648086488246918,0.9882888975553215,0.13645753357559443,0.970187431667,0.46100957319140434,0.12976857833564281,0.7620393768884242,0.6892245323397219,-0.4921340374276042,0.5464537884108722,0.2911699297837913,0.14925634814426303,-0.9808867149986327,-0.9258856866508722,0.4626255016773939,-0.7716701454482973,-0.42549327900633216,-0.9595568748190999,0.7972727213054895,-0.9309583767317235,0.7336917500942945,0.13340513268485665,-0.7042561853304505,0.2507714470848441,-0.9291691770777106,-0.34701663441956043,0.2857891684398055,0.42277066642418504,-0.8805119474418461,-0.37451501935720444,0.39941800758242607,-0.907316692173481,0.200483039021492,0.25607335520908237,0.8568582502193749,-0.419384294655174,-0.6056005726568401,0.009037837386131287,0.842189681250602,-0.8843036177568138,-0.6533848377875984,0.5924866334535182,0.036004876252263784,0.27657310059294105,0.8572566537186503,-0.6141941240057349,-0.1317837405949831,0.7960005849599838,-0.9212794750928879,0.7587413075380027,0.9330680449493229,-0.30425297329202294,0.5962602272629738,-0.7675332645885646,-0.7717949985526502,-0.6339140553027391,-0.7316512698307633,0.5356810647062957,0.19203443359583616,0.39436175860464573,-0.5338095375336707,0.42480604257434607,0.021701224148273468,0.3789862603880465,0.06500222440809011,0.6402545087039471,0.7346520996652544,0.06743028108030558,-0.9680358613841236,0.012994612567126751,-0.1323861121200025,-0.9688199362717569,-0.8864175914786756,0.859434979967773,-0.9745726273395121,-0.3896726449020207,-0.024821870028972626,0.15888695372268558,0.7052100589498878,0.19578981399536133,-0.09206781582906842,0.619710261002183,-0.6681311018764973,0.7104734359309077,0.35009765392169356,-0.7188391545787454,0.05009983293712139,0.7090620892122388,0.010371602606028318,0.8335639042779803,-0.6199723724275827,-0.03678647195920348,-0.710653368383646,-0.48491603741422296,-0.0376265412196517,0.05362987145781517,0.38929717848077416,0.6265632542781532,-0.34265472926199436,-0.9686324778012931,-0.11430759122595191,-0.2779611460864544,0.5322497421875596,-0.6839811448007822,0.5511060217395425,-0.11634064093232155,0.9165625497698784,-0.6464778673835099,-0.6583559517748654,0.7717078379355371,-0.24343347176909447,-0.13982180040329695,-0.4187405351549387,0.9650798439979553,0.4247131273150444,-0.17039288440719247,0.24322937382385135,0.9332565101794899,0.8689019554294646,-0.8214298887178302,-0.17455264227464795,0.3322419975884259,0.44505900610238314,0.9135243180207908,-0.1862452714703977,3.794115036725998e-05,0.5233576074242592,0.13950864085927606,-0.3036580914631486,-0.7662026099860668,0.7948103784583509,-0.47422538232058287,-0.725586237385869,-0.10359239345416427,-0.5274181556887925,0.5935941855423152,-0.6026238580234349,-0.19701531482860446,0.442160589620471,0.6525486833415926,0.5622802348807454,0.9955756380222738,-0.065760163590312,0.7183837611228228,0.9927787221968174,0.6349566667340696,-0.6589921261183918,-0.2006884701550007,0.9097889764234424,-0.9300659173168242,0.006520987953990698,-0.4470351808704436,0.14032054785639048,0.0353537411428988,-0.5748084629885852,0.7429295261390507,-0.804216718301177,0.8261806643567979,0.9735404909588397,0.7885292381979525,-0.08603200037032366,-0.6620531235821545,-0.5139317233115435,0.5554786990396678,0.3688390636816621,0.19899201393127441,0.382920796982944,-0.6921110390685499,-0.14479940850287676,0.8368189814500511,0.15149526624009013,0.7344321860000491,0.35366629157215357,-0.8912545302882791,-0.6398281981237233,0.30784696247428656,-0.7515875566750765,0.978237324859947,-0.4297524131834507,0.23881668131798506,-0.2521349275484681,-0.9967726725153625,-0.22913551842793822,0.934587259311229,0.9622763637453318,-0.7965792957693338,0.6224486450664699,0.9069446907378733,0.7439214517362416,0.199977099429816,-0.2996925157494843,0.8381787468679249,-0.2605655328370631,0.21190338116139174,0.038047466427087784,0.30941992811858654,-0.6621304205618799,0.9607637259177864,-0.8275603614747524,-0.34988987585529685,-0.3047880963422358,0.6505443481728435,-0.6936920778825879,0.9419159227982163,0.8371409703977406,0.5335128055885434,0.16662530228495598,-0.44091141084209085,-0.5899674296379089,-0.47484131064265966,-0.23492912156507373,-0.510888499673456,-0.4043280417099595,0.16933878837153316,0.2731105322018266,0.33165557868778706,-0.10864678211510181,-0.15680974628776312,-0.6625450276769698,-0.9940621615387499,-0.5464222147129476,-0.18549973284825683,-0.39228936936706305,0.4700452801771462,0.6167314751073718,-0.6161689362488687,0.0434087123721838,0.5495401932857931,0.18945136526599526,-0.8164154849946499,-0.17099115625023842,-0.8442949601449072,0.9966264241375029,-0.5852607381530106,-0.16428084764629602,-0.18013155739754438,-0.2863893019966781,0.6144492025487125,-0.47808095160871744,0.4065702650696039,-0.728462593164295,-0.9870264586061239,0.34302680008113384,-0.658080066088587,0.5369389676488936,0.7044311775825918,0.4970808192156255,-0.9244088064879179,-0.6174659226089716,-0.7655520858243108,0.2879370842128992,-0.582670939154923,0.4262604867108166,0.6991437021642923,-0.8653031308203936,0.8191639422439039,0.20979996817186475,-0.7098017502576113,-0.2963160425424576,-0.5210614879615605,-0.9970087469555438,0.6070195133797824,0.4905189941637218,0.9941023858264089,-0.02233844855800271,0.032526749186217785,0.45680504897609353,-0.8250536983832717,-0.032659965101629496,-0.750444586854428,-0.9226957391947508,0.6266981335356832,0.3785701980814338,-0.4656272488646209,0.5448047877289355,-0.5682490007020533,0.5001833937130868,-0.10918920813128352,-0.018976313062012196,-0.006048752460628748,0.3777541993185878,0.6864240923896432,0.977556562051177,0.20117783453315496,0.8836081153713167,-0.10225818958133459,-0.40945018362253904,0.15004964359104633,-0.03979309368878603,-0.4128450145944953,0.44248944241553545,-0.09177458984777331,-0.0017557833343744278,-0.9476810521446168,-0.5584816699847579,0.38586037140339613,-0.24327203072607517,0.36998683167621493,0.9405198195017874,0.6047044415026903,-0.9837159137241542,0.6187769761309028,0.7023171223700047,0.8066679099574685,-0.9986610575579107,0.1906825229525566,-0.05571145145222545,-0.6677218624390662,-0.0159801016561687,-0.8494679252617061,0.12077053682878613,0.3358058272860944,-0.6432840623892844,0.9136976236477494,-0.46743226423859596,0.0017803325317800045,-0.20427996572107077,0.743989818263799,0.5868336497806013,-0.007435670122504234,0.957250829320401,0.6578983590006828,0.41359657188877463,0.32878300501033664,0.5252132476307452,-0.626563670579344,0.9178277696482837,0.315143306273967,0.6895506791770458,-0.5532477162778378,0.28402305161580443,0.3806757931597531,-0.37345764180645347,-0.2585030198097229,0.9237803961150348,0.13125492027029395,0.25893012015149,0.9439469501376152,0.3380414340645075,0.8974078157916665,-0.7336762933991849,-0.5868993159383535,0.41359974117949605,0.968286314047873,0.10948391444981098,-0.2109538777731359,0.201981860678643,0.2755580856464803,-0.27118743397295475,-0.482689515221864,-0.7436554995365441,0.21126076532527804,0.5802156319841743,-0.3230945044197142,-0.8596959495916963,-0.15509838797152042,0.8912083199247718,0.11454762239009142,0.2111985650844872,0.5496820136904716,-0.869700990151614,0.15145934699103236,-0.5276205423288047,0.965855139773339,0.16504732053726912,0.9349613008089364,0.0958014652132988,0.922678797505796,0.5003680982626975,-0.8067653914913535,0.06757665006443858,0.5368564054369926,0.4592528329230845,-0.19732100842520595,-0.9213649644516408,0.03130013309419155,-0.06766018876805902,0.7056694328784943,0.4783803070895374,0.3216720591299236,-0.7498996164649725,0.878798573743552,-0.47404055669903755,0.0009102867916226387,-0.08334000781178474,0.23678028443828225,0.7120646885596216,-0.12187068210914731,0.06375113734975457,0.4190041986294091,0.7004010085947812,0.8347730697132647,0.562498941551894,-0.7656810255721211,-0.8512815283611417,-0.539726572111249,-0.5140061448328197,-0.32113780779764056,-0.15341451251879334,0.42758459551259875,-0.7120162793435156,0.9208460431545973,-0.4842424732632935,0.8691999893635511,-0.07194012682884932,-0.6244339919649065,0.6029956596903503,-0.2333006071858108,-0.23547220462933183,0.4412441239692271,-0.8200684762559831,0.580981339327991,-0.28511817194521427,-0.9917257144115865,0.02601875364780426,-0.6745977811515331,-0.5608715028502047,-0.18251686450093985,0.76347965747118,-0.44366101268678904,-0.734079020563513,-0.3407846870832145,-0.39945962000638247,0.9367074109613895,0.33490385860204697,0.2245185594074428,-0.1403335970826447,0.5934328767471015,-0.4107331889681518,0.155110701918602,-0.44184814626351,0.6047313874587417,-0.10311697330325842,0.5232818825170398,-0.10543194739148021,0.6336314175277948,0.13222825294360518,-0.5353979994542897,-0.12485767528414726,0.39134694915264845,-0.1895647505298257,-0.0692261210642755,-0.2716282461769879,-0.531163343694061,-0.5528255230747163,-0.39235660154372454,-0.08863000757992268,0.008210999425500631,0.9735289243981242,0.9524392122402787,-0.17723174393177032,-0.49811896262690425,-0.47518771840259433,-0.9605007721111178,-0.9438392999581993,-0.49896254716441035,0.22895995853468776,0.33476128382608294,-0.4902922040782869,-0.7120508407242596,-0.6092772060073912,0.4019616600126028,0.25834028888493776,0.6763366609811783,0.8749750149436295,0.7838530722074211,0.11830553412437439,-0.8644146751612425,-0.37383229564875364,-0.9357018601149321,-0.5983060956932604,-0.9643636564724147,0.6144376532174647,-0.0987851950339973,-0.9599836179986596,0.6194873182103038,-0.7183277020230889,-0.8072064123116434,-0.059177651070058346,0.4786827606149018,0.2783832671120763,0.8876592288725078,-0.6763032670132816,-0.9567393637262285,-0.3004006091505289,-0.7816967605613172,-0.3228546977043152,-0.2378550311550498,-0.9840227430686355,-0.14203094691038132,-0.779856544919312,0.5709891361184418,0.9800048777833581,0.9059948190115392,-0.5044108778238297,-0.2991858129389584,-0.666167906485498,0.32948977779597044,-0.8717031180858612,0.5301743857562542,0.9808694832026958,0.841376734431833,-0.9132233932614326,-0.6240483000874519,-0.2769457162357867,-0.7154550203122199,-0.6271200939081609,0.9962203716859221,-0.1219502124004066,-0.030381562653928995,-0.9338940689340234,-0.5678585506975651,0.21605122974142432,-0.9739994616247714,-0.10841022292152047,-0.12621088279411197,-0.009729031473398209,0.7624828233383596,0.8000743021257222,0.8445210140198469,-0.8263982087373734,-0.5284487744793296,-0.7188947591930628,-0.8738043596968055,-0.7850984004326165,0.9664361556060612,0.7338476236909628,0.2982344115152955,0.6746703363023698,-0.7377776727080345,0.09966608881950378,-0.125087836291641,0.8640385884791613,0.13275705929845572,-0.951296089682728,-0.8280779416672885,-0.2198639721609652,0.4207526412792504,0.06735402252525091,0.5374518209137022,0.661162939388305,-0.7163210995495319,0.7117522768676281,-0.14722461439669132,-0.4400902152992785,0.43039098381996155,-0.8320339377969503,-0.5798239596188068,0.6355010480619967,0.10300800204277039,-0.280577490106225,-0.9255375862121582,0.3071066658012569,0.1991593586280942,0.2751277987845242,-0.6495838933624327,-0.23377115605399013,0.8281052960082889,0.35690089501440525,0.9258338934741914,0.6511374562978745,-0.6263644751161337,-0.40550791332498193,-0.49079869594424963,0.16035655420273542,-0.7499745697714388,0.40588982263579965,0.8106423188000917,0.1300152176991105,-0.22159785265102983,-0.6464696829207242,0.9418816259130836,-0.29411984607577324,-0.48643200378865004,0.3142064386047423,0.9901781985536218,0.5195156652480364,0.6006948463618755,0.24166083289310336,-0.7745622280053794,-0.6976295574568212,-0.1634233151562512,0.4293846823275089,0.6148508060723543,-0.8826505788601935,-0.11439081700518727,0.11925787245854735,-0.8668035776354373,-0.12646024487912655,-0.9508312311954796,0.43695276882499456,0.01093785185366869,-0.4921797579154372,-0.6281188754364848,0.49684641929343343,-0.34948517149314284,-0.6644634897820652,0.48823773907497525,0.2835076912306249,0.4940761453472078,-0.5213553733192384,0.6892319768667221,0.19806329254060984,-0.2824633293785155,0.6165579170919955,-0.009269715286791325,-0.3151499512605369,-0.6642504399642348,-0.3374757142737508,0.5267042410559952,-0.3299252511933446,0.20187726616859436,0.8882655496709049,0.7300290483981371,0.46552500780671835,-0.38261318719014525,-0.24146245094016194,0.40279457345604897,-0.6002804189920425,0.08282841881737113,0.7342655775137246,-0.5188989080488682,0.43777852365747094,-0.994536847807467,0.9939965107478201,0.3436318072490394,0.5894196671433747,0.38746802834793925,0.26522161066532135,-0.1612847512587905,0.8640119140036404,-0.9464557613246143,0.31183565920218825,0.10483998153358698,0.20095592318102717,0.23081382643431425,0.6100631221197546,0.8598532173782587,-0.49088813131675124,0.5956698730587959,0.08909240178763866,-0.6877488209865987,0.07161948969587684,0.7823333297856152,0.15702832210808992,-0.8759370800107718,0.4675186830572784,0.9251760579645634,0.6276446734555066,-0.4268535589799285,0.678232769947499,0.042801675852388144,0.5511021693237126,0.10476983478292823,0.866446346975863,0.5993186444975436,-0.09843547409400344,0.7054876019246876,-0.5351769658736885,0.7421709904447198,0.26951169315725565,-0.7946168673224747,0.02145711937919259,0.12882992019876838,0.20524706551805139,0.4428231418132782,0.13450133381411433,-0.03758549923077226,-0.5202907719649374,0.15394566301256418,0.0026681278832256794,0.9393062856979668,-0.8791508483700454,0.005335415247827768,0.9535509296692908,0.5781043665483594,0.07955152215436101,-0.9303137375973165,0.31717604771256447,-0.9564314056187868,-0.6872508455999196,-0.656218639574945,-0.943027928005904,0.6433017640374601,0.7851285832002759,-0.8430403931997716,0.6571894059889019,-0.5214747483842075,-0.25825240882113576,-0.9031765633262694,0.20773497875779867,0.15536764962598681,-0.07980848336592317,-0.5655214106664062,0.5054251770488918,0.869686346501112,0.1741890897974372,0.3795581040903926,-0.2505913423374295,-0.4721652795560658,-0.08112489245831966,-0.8829948008060455,-0.28555721463635564,0.42694432009011507,0.7174637960270047,0.48753065103664994,-0.9409310705959797,-0.6459491266869009,-0.4105951962992549,0.9415175407193601,-0.8628504029475152,-0.3193136523477733,0.633131988812238,0.9820210495963693,0.47387001058086753,-0.3591504516080022,0.690500674303621,0.5689437161199749,-0.5731970118358731,0.023179249372333288,0.6741343745961785,0.8113249158486724,-0.6590749975293875,0.2465263674966991,-0.13265411322936416,-0.7481082873418927,0.3346318490803242,0.956432948820293,-0.04569494957104325,0.2267568684183061,-0.9006398431956768,0.3914963728748262,0.7275794902816415,-0.6887865397147834,0.8793523712083697,0.11493146419525146,-0.717066515237093,0.5089489500969648,0.3984044389799237,-0.04561491357162595,-0.8577665709890425,0.2142103654332459,-0.7213994176127017,-0.4725275784730911,-0.5730865034274757,-0.2918385276570916,-0.1779640861786902,-0.7988826720975339,-0.7165112616494298,-0.7537336661480367,0.7113907551392913,-0.8849882525391877,-0.8806469906121492,0.9895810829475522,0.5296913161873817,0.03769951639696956,-0.9282204774208367,0.585788203869015,-0.9405062911100686,0.37925671832636,-0.4326679138466716,0.9351467862725258,-0.9062316766940057,0.17922246223315597,0.6526158563792706,0.041726792231202126,-0.978038779925555,0.5100500388070941,-0.47810814809054136,0.3641261961311102,-0.2174484943971038,0.32109427032992244,-0.09081844007596374,0.3262335164472461,-0.09052172349765897,0.7320901756174862,0.08294254774227738,-0.14770031347870827,-0.7212412878870964,0.49430698761716485,0.005259551573544741,-0.8433326636441052,0.13240070268511772,0.345259603112936,-0.21970575163140893,0.8594271210022271,0.6583154499530792,0.6831862372346222,0.6207855409011245,0.8030671859160066,0.7417067978531122,0.20492146303877234,0.3787895436398685,-0.9249300677329302,0.44363568583503366,0.05572389857843518,-0.45650218427181244,-0.6693454789929092,0.9463816271163523,0.7584380144253373,0.40689077926799655,-0.2832411974668503,0.9907354968599975,0.254103428684175,0.9870974202640355,-0.39189967466518283,0.8697098670527339,0.9767059446312487,0.2817526669241488,-0.9601043062284589,0.9072129530832171,0.0714019825682044,0.41904227063059807,-0.16460424195975065,0.9749832088127732,-0.10681882360950112,0.4965603416785598,0.2192171961069107,-0.8352396278642118,-0.13091827416792512,-0.87967415060848,-0.5153976180590689,-0.4860554435290396,0.7675637095235288,-0.7248200974427164,-0.8675776971504092,0.7018195944838226,0.38148064771667123,0.2144348816946149,0.563376244623214,-0.5732972593978047,-0.25020305160433054,0.6908427616581321,-0.9406553721055388,0.6667575426399708,0.11330163758248091,-0.12406231462955475,0.9959241724573076,0.07027057511731982,0.5963197974488139,0.12403696682304144,0.33784446446225047,-0.008734519593417645,-0.06653412384912372,-0.7948718718253076,0.6455585449002683,0.469507185742259,-0.927724095992744,0.1593249924480915,0.28048643795773387,-0.7430556281469762,-0.15065018786117435,-0.5051467125304043,-0.2629677685908973,0.6893892474472523,-0.5685820057988167,0.7060135174542665,0.4667378435842693,0.8453329443000257,-0.8120467499829829,-0.49249886767938733,-0.10164739424362779,-0.13978639477863908,-0.3828290575183928,-0.6700256052426994,-0.4001739686354995,0.6612749784253538,0.3703095349483192,-0.377051227260381,0.2660966678522527,-0.7033107499592006,0.8964660968631506,-0.14540505968034267,0.774657211266458,-0.3405965957790613,-0.006022526416927576,-0.8965263557620347,0.2309252922423184,-0.4334154478274286,0.06476856069639325,-0.4112300048582256,-0.6698070084676147,-0.6551681132987142,0.9882759335450828,-0.5662410878576338,0.3374090436846018,0.3661922295577824,0.08344674576073885,-0.6416334337554872,0.40627032658085227,0.8436495456844568,0.5989763713441789,0.7706933291628957,-0.7517610755749047,-0.7496887580491602,-0.697992161847651,-0.8724914672784507,0.41531108785420656,0.2202451224438846,0.49390777898952365,0.5992263033986092,0.6507166367955506,0.13990991096943617,-0.6988692353479564,-0.5912423576228321,-0.6703526815399528,-0.13595748925581574,0.8733156910166144,-0.33060816023498774,0.2696739537641406,-0.23761501535773277,-0.7402921714819968,-0.8843041555956006,-0.7281200913712382,0.18289636494591832,0.3023899607360363,-0.3393407817929983,0.06174259493127465,0.37403810070827603,0.08803074434399605,-0.9952022600919008,0.017400961834937334,0.5405322960577905,-0.8684910456649959,-0.4385937415063381,-0.2097909883596003,0.37346393056213856,0.19179755356162786,-0.68432387849316,0.8763755187392235,-0.9621668914332986,0.5832916591316462,0.3486797264777124,-0.9558454868383706,0.6981855793856084,0.798026411794126,-0.2969144778326154,0.7874018512666225,-0.9915118059143424,-0.7378959828056395,0.27460976131260395,-0.3198127830401063,0.5939490641467273,0.7892177496105433,-0.6650670212693512,0.03553380072116852,-0.5352443917654455,-0.7040695245377719,0.09026715438812971,-0.15845605498179793,-0.8252024613320827,0.3059519617818296,-0.2671007220633328,0.6585609181784093,-0.8288332284428179,0.11708583915606141,-0.14428390003740788,-0.9368486222811043,-0.8694708533585072,0.0232568196952343,-0.381196903064847,-0.7631062380969524,-0.1595641323365271,0.15357737429440022,-0.39130470203235745,0.10624182131141424,-0.1502391961403191,-0.6473663439974189,-0.25964229134842753,-0.3226360375992954,0.4369530025869608,-0.9796104598790407,-0.5419291909784079,0.7960910620167851,-0.8353601121343672,0.7684658975340426,-0.5197528386488557,-0.36075572948902845,0.07302749063819647,-0.23147564800456166,-0.9323918740265071,-0.9340243167243898,0.39226630330085754,0.45463961362838745,-0.1799488584510982,0.31870801420882344,0.4836484254337847,0.08193953614681959,0.1566079189069569,0.1868077153339982,-0.12826520996168256,0.9776156400330365,0.3105939347296953,0.0923523185774684,0.741726553067565,0.9292788757011294,-0.5224922886118293,0.661026927176863,0.790849787183106,0.051551387179642916,-0.9043617486022413,-0.4438639502041042,0.27901771990582347,-0.2159924190491438,-0.8431306374259293,0.5377111327834427,0.7155017536133528,0.44043686240911484,0.1792607717216015,-0.12759325793012977,-0.029787410981953144,0.6041447040624917,0.7960004885680974,-0.6397495460696518,-0.6184553722850978,-0.49978235783055425,0.07611574744805694,0.6019981633871794,-0.07193727884441614,-0.7143568289466202,0.9117162879556417,-0.40239334432408214,0.0685514397919178,0.7655387748964131,-0.006344149820506573,0.9619106971658766,-0.2593885213136673,0.06536131724715233,0.18271354772150517,-0.15760949160903692,0.20931142242625356,-0.2043794714845717,-0.37240556720644236,-0.5878391908481717,0.6829205248504877,0.5721254143863916,-0.5605657892301679,-0.5720898099243641,0.8142242562025785,0.12212468171492219,-0.104750897269696,0.20524991117417812,0.5768351438455284,-0.7855304847471416,0.6201224899850786,0.8130255388095975,-0.3150356523692608,-0.4948660642839968,0.1393271777778864,0.1680375118739903,0.9551975131034851,0.4273985964246094,0.9987633870914578,0.17702746111899614,-0.857835310511291,0.8090341123752296,0.21645202720537782,-0.23437527287751436,-0.7988746212795377,0.5205031684599817,-0.2784381960518658,-0.5616067619994283,-0.6195748569443822,-0.20244379388168454,-0.3697742251679301,0.825008278246969,-0.04070027265697718,-0.9305973588488996,0.1645290800370276,0.9612831794656813,-0.7004892220720649,-0.37606193218380213,-0.7030811137519777,-0.1095346650108695,-0.6007191040553153,0.1289285635575652,-0.8854712932370603,0.7886705379933119,-0.660398664418608,-0.09939911821857095,0.5686175213195384,-0.8789935153909028,0.9267747085541487,-0.4660418746061623,0.20594399934634566,0.5905210990458727,-0.2980679702013731,0.4449120219796896,-0.26613377733156085,0.21784793213009834,0.7488046493381262,0.7105998261831701,0.458382623270154,-0.7499831849709153,-0.829685571603477,0.9208273943513632,-0.5003222464583814,-0.9668111838400364,0.2514404053799808,-0.32968641398474574,0.6341561423614621,0.5742142251692712,0.2867864463478327,0.8533000499010086,-0.938330695964396,-0.8014047211036086,0.4749743500724435,-0.5564852296374738,-0.620535037945956,-0.3601350709795952,0.7500486671924591,0.6288746711798012,-0.2829278167337179,0.13983294880017638,0.20258567854762077,-0.7460710690356791,0.30132424319162965,-0.640210909768939,0.8782582622952759,-0.6839342778548598,0.3524602400138974,0.0781078515574336,-0.5942948437295854,0.4670460997149348,0.9164687632583082,0.9994538961909711,0.3716850229538977,0.37424805480986834,-0.5304455012083054,0.04049146454781294,-0.11266797315329313,-0.7138855224475265,0.1831466043367982,0.37290158309042454,0.032422872725874186,-0.5840957742184401,-0.7437250521034002,-0.8951292894780636,0.23651878163218498,-0.3564622839912772,-0.6653019054792821,0.5012878929264843,0.5599014912731946,-0.3571438086219132,-0.9584903083741665,0.7442757315002382,0.8180555533617735,0.7071688892319798,0.5516497832722962,0.7420464619062841,-0.7356950012035668,-0.677993222605437,-0.6798877408728004,0.18389199022203684,-0.8935799854807556,0.08584111649543047,0.4474769583903253,-0.7511865049600601,0.7331189229153097,-0.39515360444784164,0.24304314609616995,0.5746299913153052,-0.6283054198138416,-0.6978289699181914,-0.7888501361012459,0.3689938564784825,0.5479341051541269,0.936871001496911,-0.9189548320136964,-0.0272817169316113,-0.11623542942106724,0.04833147581666708,0.454153620172292,0.11945790890604258,-0.845589516684413,-0.8547777747735381,0.6485319253988564,-0.025099691469222307,0.5500650778412819,0.9714447278529406,-0.2612780760973692,-0.9132927083410323,-0.435262193903327,-0.09211465669795871,-0.9251616937108338,-0.9358991049230099,-0.24886685330420732,0.8203291133977473,0.09904294041916728,-0.3533455692231655,0.06151688564568758,0.8926563016138971,0.268369953148067,-0.6194748762063682,0.1787145398557186,-0.6932232123799622,0.1186112780123949,-0.6672633360140026,0.9414375405758619,0.33184264227747917,-0.2274008821696043,-0.8724973988719285,-0.6577362264506519,-0.5304709100164473,0.9269176106899977,-0.10908772516995668,-0.37197467498481274,0.2524617617018521,0.6476602200418711,-0.9772199038416147,-0.5251880725845695,-0.3413668987341225,0.5408221371471882,-0.42297571152448654,-0.7478828257881105,-0.9177241614088416,-0.13997118640691042,-0.1932219215668738,-0.9657741645351052,0.533324514515698,-0.36644165962934494,-0.5040107611566782,-0.4012176711112261,0.6947462130337954,0.538225223775953,0.6506920382380486,0.0352758620865643,-0.9339897111058235,-0.6018662652932107,0.8662141100503504,-0.9092684932984412,0.9417177536524832,0.8902124408632517,0.3270844919607043,-0.051400644704699516,0.4749203301034868,0.265411882661283,0.9825292215682566,-0.5314945913851261,-0.6342648244462907,-0.7780318856239319,0.7010388537310064,-0.4325272152200341,-0.9102245327085257,0.0923075401224196,0.08056821674108505,-0.6702612931840122,0.791279417462647,0.6705515435896814,0.5630357810296118,0.18450558884069324,-0.422150244936347,-0.6306293620727956,0.0021646246314048767,-0.5747404517605901,0.5941506666131318,-0.870854192879051,0.6369479238055646,0.6144991768524051,-0.8492503729648888,0.326430662535131,0.06195504171773791,0.929451163392514,-0.7147289640270174,-0.4800697132013738,0.594288173597306,-0.10098746698349714,-0.1026720074005425,0.41936042392626405,0.7484832513146102,0.16135796857997775,0.9393098182044923,-0.019236151594668627,-0.35361180920153856,-0.7189325499348342,-0.4127763882279396,-0.5685923700220883,-0.0048717171885073185,-0.3014090256765485,-0.827374201733619,0.6720099369995296,-0.10662846406921744,-0.3093072478659451,-0.7433345196768641,-0.5919351945631206,-0.8920136303640902,-0.11253293277695775,-0.4751026020385325,0.4193643364124,-0.5540689751505852,-0.8930381159298122,-0.9846687731333077,0.28091929014772177,0.8313339790329337,0.6065614963881671,-0.4230264173820615,-0.5268992548808455,0.07753506721928716,0.23432597797363997,-0.050673641730099916,-0.6769838854670525,-0.581909108441323,0.8930474175140262,-0.6188152092508972,-0.5345214940607548,-0.5645674834959209,0.8597284206189215,-0.636873091571033,-0.38196155708283186,-0.2446278352290392,0.3015567581169307,-0.6185153047554195,0.07648318540304899,-0.7009209510870278,-0.317908673081547,-0.871337341144681,0.009620646946132183,-0.7095485818572342,0.1260577691718936,-0.42748429626226425,0.37156696477904916,-0.13981017703190446,-0.9985438585281372,-0.6869163219816983,0.040509844198822975,0.01815808890387416,0.8302251216955483,0.028241712134331465,-0.5957365585491061,0.4695392861030996,-0.6335623622871935,-0.16880428092554212,0.7282809889875352,-0.7487283884547651,-0.5922656701877713,-0.9095405046828091,0.024156192783266306,-0.44299450935795903,-0.8805800923146307,0.28778763860464096,-0.5429206038825214,-0.6169163370504975,-0.9684112826362252,0.2885337583720684,-0.5488655888475478,-0.13426365470513701,-0.8110622791573405,-0.5107892057858407,-0.16301431460306048,-0.6046067350544035,0.7604445507749915,-0.05282424669712782,-0.0764579395763576,0.5759749505668879,-0.8967630113475025,0.8627452710643411,0.03237299108877778,-0.47905831085518,0.10053648566827178,0.3343041790649295,-0.6822326770052314,-0.015168364625424147,0.20854990044608712,-0.8555443622171879,-0.7700819289311767,-0.4984800140373409,0.03622054634615779,-0.9773125508800149,0.4681318309158087,0.33529681572690606,0.4258227958343923,0.91778498981148,-0.3383925538510084,0.06488929642364383,-0.8219330869615078,-0.36745399702340364,-0.9158837599679828,-0.10445246193557978,-0.7197215566411614,0.29050052305683494,-0.9774600849486887,-0.8338176240213215,0.5076709729619324,0.5308685717172921,0.04741645511239767,-0.9762117532081902,0.37205827329307795,0.47347006807103753,-0.7512069009244442,-0.2382823908701539,-0.2809604527428746,0.32586164539679885,-0.7287224465981126,-0.04580671573057771,-0.05992111936211586,-0.2171118021942675,-0.5288074179552495,0.6411398472264409,-0.667097695171833,-0.3905796753242612,-0.4830333376303315,0.7895860862918198,0.7907089684158564,-0.3255326529033482,-0.4822415397502482,0.8273614794015884,0.8609754843637347,0.043983564246445894,-0.7165422504767776,0.6971228220500052,-0.7290359670296311,0.21996643813326955,0.3600863330066204,-0.8842199081555009,-0.03876578528434038,0.685666679404676,-0.1981062302365899,0.3820714191533625,-0.8339197183959186,-0.1067659710533917,-0.11932014161720872,0.4513992774300277,-0.8517737169750035,0.20636985078454018,-0.061261728405952454,0.366983653511852,-0.6698712618090212,-0.21069679269567132,-0.6106490856036544,-0.3290901742875576,-0.1825192840769887,0.2115412037819624,0.06238723173737526,-0.3723597698844969,-0.046713114250451326,-0.9129587626084685,0.8949083373881876,0.7869920334778726,0.19263496156781912,-0.5101313912309706,-0.9691474372521043,0.2587201506830752,0.24931706814095378,0.6678733769804239,0.5371112339198589,0.5557836387306452,0.8423136314377189,-0.6549484673887491,0.611438303720206,-0.13527497556060553,-0.961542148143053,-0.4970917394384742,0.996801576577127,-0.10847572097554803,0.5388493244536221,0.5214903489686549,0.9570880830287933,-0.3256727294065058,0.13489044457674026,0.5611184844747186,0.38991466676816344,0.2011409131810069,-0.062292180955410004,-0.3617259678430855,-0.6121619027107954,0.8106072596274316,0.2307240590453148,-0.9205364426597953,-0.5997753557749093,0.7659914577379823,-0.5431286678649485,-0.38361675338819623,-0.22189699206501245,0.9613178642466664,-0.7437974885106087,0.30408813897520304,-0.41516103874891996,-0.7068662233650684,0.15206442633643746,-0.5991363967768848,0.984459734056145,0.05361831281334162,0.36128000309690833,0.4000025768764317,0.25863224221393466,0.4183974824845791,-0.34829569933936,0.8233721698634326,0.3805646891705692,0.8728520995937288,0.4334854828193784,0.7954597766511142,0.9656142215244472,0.15189585089683533,-0.40990920970216393,0.7899625040590763,0.4774000779725611,0.4683224093168974,0.9138916512019932,-0.8852368365041912,-0.38739962596446276,0.7104968735948205,-0.006972635164856911,-0.43785930471494794,-0.6736986991018057,0.28199612302705646,-0.10389965074136853,0.5930872936733067,0.5892716334201396,-0.2922789710573852,-0.9928207909688354,-0.2961530517786741,0.743779503274709,0.28488568821921945,-0.819171978160739,-0.006285999435931444,-0.9385533048771322,0.4986646198667586,0.23606738215312362,-0.20688827149569988,0.22549763275310397,0.016069685574620962,0.9187777768820524,0.8192437356337905,-0.5209501939825714,-0.8914394369348884,0.9008551416918635,0.5452580074779689,0.243920405395329,0.31647234922274947,0.5971656087785959,-0.7196883079595864,-0.32433139625936747,0.0792548400349915,0.015807555057108402,0.3871820783242583,0.5804752497933805,-0.7498263693414629,-0.13363851327449083,-0.31626873230561614,0.9097396121360362,-0.7048902185633779,-0.699464984703809,-0.9157452126964927,-0.7967539979144931,0.5822132886387408,0.5736091178841889,-0.09337596874684095,0.04292558832094073,0.7549792295321822,-0.9736703657545149,-0.7143629151396453,-0.24006305681541562,0.7343916944228113,-0.7644190764985979,0.23146838787943125,0.4902050099335611,0.6455585774965584,0.6376649397425354,-0.011604634579271078,0.17800533771514893,0.24159898841753602,0.6734804506413639,0.7199645866639912,-0.19268065271899104,-0.30513001699000597,0.4939697179943323,0.1626258990727365,-0.978004724252969,-0.7090551303699613,0.12048320518806577,0.0228203684091568,0.9089840981177986,-0.9536831597797573,0.44714200170710683,-0.8272265773266554,0.0874978038482368,-0.403274507727474,0.04241297533735633,0.9341957271099091,-0.7449122504331172,-0.0828494573943317,-0.4225660082884133,-0.11226520640775561,-0.8715329421684146,0.3245507678948343,-0.18575187493115664,-0.5769106289371848,0.5046644080430269,-0.714558083564043,0.2213537604548037,0.9814793416298926,0.8666117624379694,-0.022737527266144753,0.2570485044270754,-0.3706175177358091,-0.36320333601906896,0.5135751301422715,-0.7795940227806568,-0.5997612471692264,-0.3906550034880638,0.9922559959813952,-0.3250522664748132,-0.11718122195452452,-0.16846708953380585,-0.4072786867618561,0.6391724813729525,0.25386091507971287,-0.21509721037000418,-0.4213790902867913,-0.028046388644725084,-0.5768429362215102,-0.2290288875810802,-0.4821048555895686,-0.9979545548558235,-0.970404835883528,0.7581437025219202,0.6631508404389024,0.8480294402688742,-0.05436472222208977,0.3104892107658088,0.8630647994577885,0.7261421857401729,0.6082025282084942,-0.40685177175328135,-0.12228952767327428,0.9154022075235844,-0.827015483751893,0.033772589173167944,-0.10422533098608255,-0.9092305707745254,0.9368369928561151,0.16884929593652487,0.09584987116977572,0.18855474703013897,0.18168778996914625,-0.4146622275002301,0.7933851089328527,-0.8287407918833196,-0.6052042399533093,-0.1264833644963801,-0.7134121884591877,-0.06498313415795565,0.605749087408185,0.7171934833750129,0.8902338505722582,0.5933232647366822,-0.31331935338675976,-0.7811797647736967,-0.17092029796913266,-0.9547953456640244,-0.5462829936295748,-0.7909990008920431,-0.041473150718957186,0.040757992304861546,-0.30398994591087103,-0.23063932359218597,-0.3472147211432457,0.3133982140570879,0.1708466443233192,-0.8927147802896798,0.22311559226363897,0.5428546485491097,0.6911127483472228,-0.577638556715101,-0.6258336436003447,0.23407334042713046,-0.7370465570129454,-0.9583337013609707,-0.14728288585320115,0.9089129539206624,0.8704770226031542,0.784536465536803,0.39266517385840416,0.18313334183767438,-0.906138475984335,-0.859858201816678,-0.3259078389964998,0.9222250739112496,-0.9074020693078637,0.7563511645421386,-0.6945527079515159,0.4793082592077553,0.6942972997203469,0.6450084648095071,-0.856236148159951,-0.7894267113879323,-0.06693098368123174,0.9470592993311584,0.9540994130074978,-0.3681006822735071,-0.24181133834645152,-0.7448876588605344,-0.8784884922206402,0.5195086537860334,-0.8138849227689207,-0.17298931628465652,-0.6107254731468856,0.35958748310804367,-0.9361196095123887,0.2856252398341894,0.982059670612216,-0.31481068301945925,-0.1001024292781949,-0.22904336312785745,0.2530814306810498,-0.23623143788427114,0.3487144005484879,0.8847572850063443,0.5844643269665539,0.7020295499823987,0.5668328627943993,-0.5313086220994592,-0.5161876636557281,0.6773784346878529,0.3225154522806406,-0.8036549044772983,0.06940353568643332,-0.6406213482841849,0.5286770756356418,0.25942538073286414,0.3932042666710913,-0.8030193131417036,-0.6087811486795545,0.41509201657027006,-0.2648051865398884,0.013456159736961126,0.6206563008017838,0.4847102053463459,0.8642707136459649,-0.2851987648755312,0.951114010065794,0.22520273085683584,0.629950332455337,-0.8092999933287501,0.5683236890472472,0.7318248269148171,0.9342807088978589,0.8077779309824109,-0.8356131631880999,0.03812324767932296,-0.5997273051179945,0.7552379006519914,-0.2500159274786711,0.8342981478199363,-0.23387996340170503,-0.07169357733801007,-0.561070445459336,0.9208827242255211,-0.026204921305179596,0.581987168174237,0.07700212812051177,0.2344394652172923,0.7612911406904459,0.529136965982616,0.12362889340147376,-0.39240052783861756,-0.41545423539355397,-0.20476430328562856,-0.18988491408526897,-0.8707865388132632,0.18717794911935925,0.7875355719588697,0.9361024280078709,-0.8688718122430146,0.14374912669882178,-0.2199364355765283,0.9541040984913707,0.1654370785690844,-0.7611052482388914,0.29693656833842397,0.17257716972380877,-0.7797992462292314,-0.6874201241880655,0.3979262439534068,0.8201211621053517,0.5801850128918886,-0.14536798931658268,0.8446132051758468,-0.752153099514544,-0.10871464386582375,-0.4804535214789212,0.9737488939426839,0.09827346866950393,0.9600908639840782,0.08332603331655264,0.7064789230935276,-0.23141413694247603,0.6727968817576766,0.11199138779193163,-0.6025950652547181,0.11756254080682993,-0.4511437062174082,0.12240598117932677,0.9185999934561551,-0.4398630843497813,-0.867044638376683,0.8814490274526179,0.8145458898507059,0.813974279910326,0.8640170232392848,-0.7480104095302522,0.007822351064532995,0.6628005462698638,0.4600111646577716,0.08979249745607376,-0.2609414434991777,0.887302465736866,-0.6043373821303248,-0.7095097065903246,0.6168329217471182,0.2987500885501504,0.039717416279017925,-0.9090318055823445,-0.4722500187344849,-0.24173326464369893,0.6978923035785556,-0.9674170520156622,-0.3209794042631984,0.1543569378554821,0.5175768178887665,0.14725072961300611,0.4945942685008049,0.7282455302774906,0.8028143630363047,-0.8450836292468011,0.826305327937007,-0.38187118619680405,-0.8682541800662875,-0.48458518646657467,0.9374810992740095,-0.400863794144243,-0.11695649661123753,0.6745905391871929,-0.8155451347120106,0.7413535439409316,-0.09572006622329354,0.001520044170320034,0.24828083673492074,0.8409560034051538,-0.6381730600260198,-0.7568933316506445,0.17042858991771936,0.06450749095529318,-0.582805925514549,-0.48553909501060843,-0.33672533882781863,0.5614933702163398,0.923571611288935,-0.2586726462468505,0.046554452273994684,-0.5244319844059646,0.11807281197980046,-0.6724978904239833,0.11915893945842981,0.08329841587692499,0.3099220679141581,0.920400810893625,-0.13960312958806753,-0.77434825245291,0.08610767871141434,0.061372837983071804,0.5568319694139063,-0.5155166685581207,0.502136452589184,0.7567102932371199,0.7969392305240035,-0.7914000148884952,0.7101603168994188,0.15791441453620791,0.1549291298724711,-0.8425094461999834,-0.03401773236691952,0.12692998768761754,-0.4350973963737488,0.5290538901463151,-0.08433614252135158,-0.9017907283268869,0.22421631403267384,-0.5251988051459193,0.16303988778963685,0.12467625923454762,-0.7218248625285923,-0.47576280031353235,0.17415850842371583,-0.20986027969047427,-0.9263630439527333,-0.8496898501180112,0.3114066757261753,0.14260119199752808,0.30610016314312816,0.9594023805111647,-0.9950105785392225,-0.15706594102084637,-0.679962944239378,-0.15383015340194106,0.9646185613237321,-0.09642018750309944,-0.01903078332543373,-0.5319708297029138,-0.7392656211741269,0.03692888142541051,-0.17547068605199456,0.5911802779883146,0.9632073366083205,0.5058905142359436,-0.9494233266450465,-0.801421124022454,0.24930025450885296,0.37351617915555835,0.823735368438065,0.29726151330396533,-0.7108779828995466,0.19951876951381564,-0.09003880294039845,-0.23033318761736155,-0.3687225552275777,0.034175338223576546,-0.4681195495650172,-0.6455643470399082,-0.18212336115539074,0.5191043298691511,-0.5602013953030109,-0.9631697004660964,0.9421138968318701,0.7001527310349047,-0.8775719902478158,0.7807066771201789,-0.5771904555149376,-0.05278181470930576,-0.5106324022635818,-0.8985303277149796,0.4357818174175918,0.44366068951785564,0.22970796190202236,-0.6071381536312401,0.7808152972720563,0.417693835683167,-0.4960062219761312,-0.2737625543959439,-0.550764940213412,-0.41061866097152233,0.3028150228783488,-0.8951093503274024,-0.8514829562045634,0.7185351615771651,-0.39673386374488473,0.026704747695475817,0.4308411949314177,-0.31503899535164237,0.779320658184588,-0.6154350452125072,-0.5192150622606277,-0.06910857558250427,-0.5814816448837519,-0.06665648240596056,0.5782580142840743,-0.3797098323702812,-0.09699539840221405,0.22988281212747097,0.6009870870038867,-0.5471339337527752,-0.39744774950668216,-0.0492672398686409,-0.5198222934268415,0.19443236337974668,0.13813016144558787,0.21609545685350895,-0.5400454518385231,-0.3962971279397607,-0.45646889694035053,-0.7179907062090933,-0.4313169149681926,0.8057223199866712,0.7088278653100133,-0.1630505956709385,0.3435464450158179,0.2551025399006903,-0.7436230285093188,0.11906821373850107,0.02959561999887228,0.48157444410026073,-0.5893394169397652,-0.14463789481669664,-0.30342207942157984,0.842685173265636,-0.6440875832922757,0.1846397640183568,0.8389211324974895,-0.754613344091922,0.823844117578119,-0.43464908469468355,0.30121192848309875,-0.34532206831499934,0.42343953205272555,0.19991720002144575,-0.6238696058280766,-0.0648849830031395,-0.3514393582008779,0.5325214848853648,0.05909618781879544,0.9828086593188345,-0.004170951433479786,0.22308440087363124,-0.49909608578309417,0.35232685925439,-0.5863845562562346,0.2891495297662914,-0.6133218924514949,0.29631527699530125,0.3275680299848318,0.18051201105117798,0.13733227783814073,-0.9471966829150915,-0.4042815016582608,-0.28053213376551867,-0.2721397280693054,0.004243251867592335,0.2960965153761208,0.19247698690742254,-0.5219754511490464,0.395399818662554,0.6704101581126451,-0.9169335500337183,0.8244280167855322,-0.1464074575342238,-0.6305082021281123,0.5098233632743359,0.4970957697369158,0.42109650652855635,0.6519986651837826,0.49918926833197474,-0.0075024189427495,-0.3267842694185674,-0.9115993492305279,0.36754568479955196,0.6481023458763957,-0.457493431866169,0.4814369399100542,0.29272456420585513,-0.7372277150861919,0.6612066091038287,0.771683273371309,-0.5742623014375567,-0.15285616042092443,0.1620882754214108,-0.5780826564878225,-0.3488146932795644,0.4567426275461912,0.1706818100064993,0.1042805933393538,-0.632769045419991,-0.14998183213174343,0.3136988985352218,0.5602247519418597,0.034695998299866915,0.4858990516513586,0.9348013484850526,-0.01493390928953886,0.7072128737345338,-0.8271410730667412,0.4920414946973324,0.15982630010694265,-0.988498393446207,-0.33794101467356086,0.06713224062696099,-0.02858850546181202,0.6698053269647062,0.7737744823098183,-0.020214293617755175,0.5879503204487264,-0.43598966486752033,-0.042174693662673235,0.3774356166832149,0.027857693377882242,-0.23891284549608827,0.5113185234367847,-0.08585302112624049,0.4515616148710251,-0.1732095442712307,0.4787036036141217,0.7608737875707448,0.8089144565165043,0.5323561318218708,0.4587828740477562,-0.7193833589553833,0.5760097638703883,0.11575737362727523,-0.15929013676941395,-0.6515448121353984,-0.8192253699526191,0.8466686303727329,0.6297860089689493,-0.9263663948513567,0.8406231044791639,-0.1484816037118435,-0.6935977567918599,0.21554578933864832,0.5100916707888246,-0.917335226200521,0.24220227217301726,-0.8524407767690718,-0.5871797534637153,0.5459225312806666,-0.39814512711018324,0.34739875700324774,0.30850522592663765,-0.32598170917481184,-0.2755901669152081,0.34214313281700015,-0.8441340271383524,0.1729410500265658,-0.6342990444973111,-0.917269797064364,0.07914132997393608,0.7310397047549486,-0.8466828814707696,0.3302533351816237,-0.18521790904924273,-0.5876575037837029,-0.3647482581436634,-0.17243382474407554,0.358051021117717,-0.012979387771338224,0.10045295301824808,0.7604125193320215,-0.8332973280921578,0.1696204449981451,-0.7395133227109909,0.6698377449065447,-0.3450932018458843,-0.14932540571317077,-0.7095376057550311,-0.9493506611324847,-0.6927649532444775,-0.10589629132300615,0.04963826388120651,-0.1387509061023593,-0.730199743527919,-0.5786477513611317,-0.695160873234272,-0.1553720198571682,-0.07122744666412473,0.8580101053230464,0.8411482935771346,-0.43811309803277254,-0.5037562195211649,-0.21286862529814243,-0.641752160154283,-0.4713405701331794,-0.16455898666754365,0.9471990815363824,0.76426818408072,-0.2750477963127196,-0.16630828147754073,-0.6753673874773085,-0.4138449467718601,0.3715671934187412,-0.9971391246654093,0.5544633059762418,0.5856171459890902,0.9043460916727781,0.8651197901926935,-0.38334085838869214,-0.4508066079579294,0.4637656114064157,0.6683306158520281,-0.4623413933441043,-0.45906523801386356,-0.435530427377671,0.1090855817310512,-0.734578019939363,0.1892929091118276,-0.5609634374268353,-0.6517845210619271,0.4998542689718306,0.4219539137557149,-0.19299862021580338,0.6135405017994344,0.446504611056298,-0.4499428956769407,-0.6259552100673318,-0.8081732140854001,-0.5685676792636514,-0.9621209045872092,-0.22145524434745312,-0.9518571775406599,0.977574267424643,-0.3438721443526447,-0.31565706385299563,0.8312083980999887,0.22644926607608795,0.7784216594882309,0.6437914888374507,-0.18253753380849957,0.8939509578049183,-0.8685456938110292,0.9693629606626928,0.2524626078084111,0.45441099163144827,0.34704658575356007,0.7236693417653441,0.5511504644528031,0.6265907697379589,0.5893551083281636,0.091814701911062,-0.5301626967266202,0.5830708863213658,0.5809364807792008,-0.6064243861474097,0.549948189407587,0.09132009465247393,-0.8037475044839084,-0.42621200485154986,0.8451269059441984,-0.9141402919776738,0.8195201703347266,0.5547982417047024,-0.7172334888018668,-0.49721728824079037,0.4285110509954393,-0.49959799321368337,-0.24853899702429771,-0.131672999355942,0.14972587069496512,0.8549544881097972,-0.5343779814429581,0.9703216794878244,-0.12623103195801377,-0.858734370674938,-0.7053201412782073,0.1251390604302287,-0.8037183750420809,-0.9913267842493951,0.5867435741238296,0.6612012875266373,-0.5342614627443254,0.7661601831205189,0.3867561286315322,0.3327965256758034,0.19928279519081116,0.4250796656124294,0.45601293724030256,0.06571714719757438,0.28385983873158693,0.2450293363071978,0.6286107278428972,0.4975518104620278,-0.4475956647656858,-0.9714598557911813,0.5980727053247392,-0.12505761673673987,-0.02226768061518669,0.5907255476340652,0.7757007940672338,-0.16132481722161174,-0.2933282246813178,-0.9283008021302521,-0.6581646176055074,-0.5150230266153812,0.16051664110273123,0.5447453986853361,0.1752338744699955,0.5389694035984576,-0.4960613511502743,0.49004883598536253,0.7493214933201671,0.25023310631513596,0.23873379826545715,0.30747033935040236,0.961953959427774,-0.5462019378319383,0.5715116350911558,-0.3302570697851479,-0.1436195340938866,0.2613966641947627,-0.10408097365871072,-0.9429443180561066,0.16820124769583344,-0.5625148117542267,-0.34836158296093345,0.24796669417992234,0.42596059665083885,0.7506423918530345,-0.17505363887175918,-0.10382537869736552,-0.3160438244231045,-0.9848675318062305,0.4660604768432677,0.8931252472102642,-0.8755852803587914,0.07662139227613807,-0.5502718798816204,-0.8250115471892059,-0.959867924451828,-0.14759879978373647,0.8016587630845606,-0.488753505051136,-0.9667860134504735,0.9037977973930538,-0.6861215997487307,-0.7235496323555708,0.3986236220225692,-0.9910876704379916,-0.43083488568663597,0.765462975949049,0.4029408670030534,-0.7125630811788142,0.6405371143482625,0.7820515907369554,0.07933014119043946,0.006815817207098007,0.6871410640887916,0.4938866691663861,0.5825841203331947,-0.6797214667312801,-0.7749599386006594,0.5665043797343969,-0.20239242259413004,0.879557738546282,-0.5888865226879716,0.9736602492630482,-0.2544417781755328,0.7222079588100314,-0.5076484796591103,0.6579547584988177,-0.3298777798190713,-0.7301534148864448,-0.33692132122814655,-0.19004687434062362,0.9304480901919305,-0.7219405961222947,-0.4614265412092209,0.44820899004116654,0.23456431832164526,0.5954793146811426,0.9578843871131539,0.8602088028565049,-0.3310737577266991,-0.6687281760387123,0.7165764453820884,0.911505538970232,-0.68834667513147,-0.2936496390029788,-0.08572515426203609,0.21941200969740748,0.30752041656523943,-0.08721983572468162,-0.887026269454509,0.6260826555080712,-0.5649301786907017,0.6226201658137143,0.06279542809352279,0.9635957083664834,-0.190118249040097,-0.39726690435782075,-0.023850328288972378,-0.7029841644689441,-0.3970740372315049,-0.6439383304677904,0.13924417411908507,-0.3658898393623531,0.257654570043087,-0.6835947977378964,-0.6642407635226846,-0.7842110246419907,0.6163097741082311,0.7915895408950746,0.4820952299050987,0.8011737503111362,0.4366133683361113,-0.8543460015207529,-0.1881338288076222,-0.9109363895840943,0.5157561502419412,0.7020828342065215,-0.9187311204150319,-0.8903088858351111,-0.17957226652652025,0.553838262334466,-0.7302553802728653,0.59354692324996,-0.4788463693112135,-0.5539130987599492,-0.12035474833101034,0.05408543394878507,-0.01715413760393858,-0.5578925870358944,-0.7218320341780782,-0.14144499693065882,-0.39450252894312143,-0.3001816784963012,-0.8232167805545032,-0.465998999774456,0.7804196295328438,-0.13176941312849522,-0.7326362356543541,-0.2811136143282056,0.7237592074088752,-0.6871977411210537,-0.3078967500478029,-0.5232381522655487,-0.251718791667372,0.348209994379431,0.4925521332770586,-0.627672606613487,0.4380143452435732,0.4744716929271817,0.8917355611920357,-0.1576550123281777,0.516173885203898,-0.6326993275433779,0.8790656104683876,-0.7330354661680758,0.3548853024840355,-0.7616069973446429,-0.38505449797958136,-0.4910867237485945,-0.2730254540219903,-0.8858988345600665,0.6174181294627488,0.45685934694483876,0.4238997991196811,-0.10031457943841815,-0.2833718750625849,0.08649715455248952,0.7914109909906983,-0.3744662534445524,-0.8842227309942245,-0.5234001236967742,-0.21471364004537463,0.02482521114870906,0.5823139594867826,0.049482797272503376,-0.6150390682742,0.4491589511744678,-0.4530229913070798,0.631041054148227,0.18361424608156085,0.3500340459868312,0.6173095982521772,-0.5924914302304387,0.6662461254745722,-0.9168233131058514,-0.06948909163475037,-0.20113694062456489,-0.859039484988898,0.8049180242232978,0.26790458988398314,0.1266189836896956,-0.48190857097506523,-0.0556311896070838,0.5047839982435107,0.4478626479394734,0.6518660821020603,-0.06982073141261935,-0.42022327659651637,0.883602833840996,0.022458030376583338,0.6164358323439956,0.44874405348673463,0.5061072804965079,0.6818348290398717,0.39242353150621057,-0.1882897848263383,-0.3607045621611178,-0.18700412521138787,0.44436688907444477,0.3167313295416534,-0.19147858256474137,0.5941652138717473,-0.7533982009626925,-0.2388522527180612,0.07365710660815239,-0.33336510555818677,-0.34492548648267984,-0.018315676134079695,-0.8270278577692807,-0.15728394594043493,0.2977094422094524,0.05347248027101159,-0.798716536257416,0.48184088384732604,-0.23564256774261594,-0.643740520812571,0.7037474256940186,-0.8385580312460661,0.8993425513617694,0.08305293461307883,0.9160124477930367,-0.16165275359526277,-0.7140583782456815,-0.03652322944253683,0.12791418377310038,-0.9887834386900067,-0.8181593106128275,-0.8776953439228237,0.19625698355957866,-0.3225585175678134,-0.05172682087868452,0.035005423706024885,0.2058054800145328,-0.8673251187428832,-0.7673575794324279,-0.37007101019844413,-0.6617729654535651,-0.6784455170854926,0.8919981750659645,-0.25412923004478216,-0.5828635501675308,0.9462835052981973,0.9169438104145229,-0.14468630217015743,-0.2655959827825427,0.24483469175174832,-0.24954152340069413,-0.7287030508741736,-0.13838781276717782,-0.39427128760144114,-0.9474227060563862,0.7464319313876331,-0.7633895576000214,0.5696495603770018,0.48820157535374165,-0.027950039599090815,0.6941759530454874,-0.12362931482493877,0.19046923238784075,-0.9159898431971669,0.8690645038150251,-0.18225808860734105,-0.9448493146337569,-0.881513424217701,0.04705677041783929,-0.5768996337428689,0.3326579602435231,0.8875199393369257,-0.43639197014272213,-0.986694120336324,0.08880724990740418,-0.8029481396079063,0.9016334936022758,-0.5904247728176415,-0.8118583620525897,0.6948360470123589,0.38677178090438247,0.018872463144361973,-0.9823038829490542,-0.3282786412164569,-0.4454910531640053,-0.5494360299780965,0.16350158117711544,0.49039366375654936,0.8813165761530399,0.5165905957110226,-0.008204029873013496,0.4195804689079523,0.5483162733726203,0.8482992220669985,-0.586351899895817,-0.4458347763866186,-0.6120256194844842,-0.43357357755303383,0.8575559225864708,0.616276718210429,0.06691116141155362,-0.49079196620732546,0.9270157162100077,0.31779851391911507,0.7234832011163235,-0.8758830926381052,-0.6444135392084718,-0.9137055608443916,-0.27315979776903987,-0.558238158468157,-0.5284161074087024,0.6015620417892933,-0.6074902648106217,0.5845790077000856,-0.5806714678183198,-0.6884463499300182,0.6511426409706473,-0.14511646889150143,0.9339360753074288,0.611964181996882,0.1440253034234047,0.862920559477061,0.3542947983369231,-0.20540397008880973,0.7702105697244406,0.8482435690239072,-0.061713562812656164,-0.44023928698152304,0.7103054272010922,0.9002763419412076,-0.46915446408092976,-0.7953455718234181,0.5792866158299148,0.7452433607541025,-0.4326444757170975,0.18828871892765164,-0.433247784152627,0.740944764111191,0.12692093942314386,-0.5635424125939608,-0.47891641734167933,0.24091602582484484,0.16296854661777616,0.7020231834612787,-0.8718850179575384,0.4145268574357033,-0.5835712719708681,-0.5687122959643602,0.21242792531847954,0.025151310488581657,-0.08855013502761722,-0.6099243401549757,0.49309759121388197,0.9526501479558647,-0.8906975714489818,-0.13291003415361047,0.6463851677253842,-0.07902423525229096,-0.8499735207296908,-0.7532171453349292,-0.6714705191552639,-0.48222277825698256,0.8631376740522683,0.1261340999044478,-0.989873587153852,-0.17772093089297414,0.2618881422095001,0.044841902796179056,-0.02981111267581582,-0.48457355331629515,0.981126167345792,-0.03208755562081933,-0.9129815003834665,-0.6039833873510361,0.7907857517711818,0.6698181312531233,0.48883808963000774,-0.4348255549557507,-0.29936916194856167,-0.5003613349981606,0.785470278467983,0.5862563592381775,0.7314831959083676,-0.3791240844875574,-0.06924647139385343,-0.7198497531935573,0.5921918633393943,-0.943284023553133,0.5359423784539104,-0.6055450821295381,0.6294427961111069,0.8336076140403748,0.11686688009649515,0.30697628017514944,0.47215010644868016,-0.9922531931661069,0.8382479287683964,0.23495778581127524,0.31550137512385845,-0.8800960993394256,0.0627861600369215,0.05360133945941925,0.14939335407689214,-0.701698009390384,-0.7101137260906398,0.6539243524894118,0.10181069141253829,-0.876970699056983,0.4701070059090853,-0.5298973023891449,0.6247445093467832,0.7945958003401756,0.3786034886725247,-0.4416076731868088,0.25281228637322783,-0.4566465183161199,0.40539117716252804,-0.7013695160858333,0.8709029103629291,-0.21768905175849795,-0.12732050474733114,-0.3439059383235872,-0.3211384881287813,0.755570868961513,0.9302362017333508,0.6224619704298675,-0.7887332076206803,0.5935937408357859,0.08709964714944363,-0.5503126350231469,0.029786502476781607,0.7470742920413613,-0.5405455315485597,-0.8184220246039331,0.2092770654708147,-0.7214065212756395,-0.2342562503181398,0.3135590795427561,-0.7465231665410101,-0.5844324012286961,0.09180018166080117,-0.9491935223340988,0.346863133367151,-0.8673401069827378,-0.5691289356909692,0.045209616888314486,0.7103948453441262,0.34827643539756536,-0.8343932656571269,-0.10608921898528934,0.5818221219815314,-0.7797575113363564,0.20013622706755996,0.7897679558955133,0.6319314129650593,-0.23635681252926588,0.458666458260268,0.2614191984757781,-0.3197095678187907,-0.08808958996087313,0.8665801146999002,-0.26837195362895727,-0.23477887827903032,0.2600670801475644,0.47335902927443385,-0.7441628593951464,0.19265506509691477,-0.34687643917277455,-0.9088406669907272,0.9289571358822286,0.818029522895813,-0.15278830053284764,-0.15030283015221357,-0.313214645255357,-0.9055678914301097,0.39648929657414556,-0.8963897442445159,0.2468977477401495,0.2697881921194494,-0.9894491787999868,-0.7341338479891419,0.5308123868890107,-0.20842941477894783,0.8698126608505845,0.2594335372559726,-0.7458030735142529,-0.9217664231546223,-0.38185822451487184,0.5679315337911248,0.3471596222370863,-0.22561002802103758,0.1840048497542739,0.9954878492280841,-0.6873181564733386,-0.7952153771184385,-0.14331572502851486,-0.3972543580457568,-0.4614809569902718,0.4483363782055676,-0.10144392913207412,0.5090126008726656,0.006486434489488602,0.36821306636556983,-0.034027236979454756,-0.22065319633111358,0.9166765143163502,0.3132252525538206,0.3031650995835662,-0.19205270567908883,-0.4244998679496348,0.7838398045860231,-0.7568261944688857,-0.009709198027849197,-0.6838546292856336,0.2166900006122887,-0.5490145958028734,0.91744394460693,0.5360313579440117,0.24053550977259874,0.8013674528338015,0.004721315577626228,-0.5464381226338446,0.2657081391662359,-0.7099359221756458,0.5537669747136533,0.6687229559756815,0.8001183536835015,-0.7555647995322943,0.3548743645660579,0.385586294811219,0.025961874052882195,-0.39094141917303205,-0.8301919247023761,0.17759349662810564,-0.34432686353102326,0.1585036744363606,0.7509281048551202,0.928124229889363,-0.09385286876931787,-0.6200250149704516,-0.3088946817442775,0.8770382753573358,-0.5402035634033382,0.8072159863077104,0.16447904985398054,0.02507123490795493,-0.8358462499454618,-0.5487728575244546,0.38081509061157703,-0.37774665001779795,-0.6911423527635634,-0.02305281860753894,0.8057308690622449,0.3713643425144255,-0.09093913296237588,-0.4678486459888518,0.27781359013170004,0.2468729866668582,0.12786785326898098,-0.3700412716716528,0.6259281784296036,0.24185065971687436,-0.7321746391244233,0.45056931069120765,0.1428638007491827,-0.9216755912639201,-0.9326558229513466,-0.08492298470810056,-0.31982563296332955,-0.4530116659589112,0.8592098574154079,0.9848766014911234,-0.6179981813766062,-0.4562325063161552,-0.3758912435732782,-0.6068920190446079,-0.018248637206852436,-0.34434202732518315,-0.36907650670036674,0.6643238086253405,-0.6458146632649004,0.7288791462779045,0.9162111110053957,0.34294437104836106,0.5257946643978357,-0.20580960158258677,-0.54003517748788,-0.10808197595179081,-0.6531929224729538,-0.07307058479636908,-0.7615380524657667,-0.9829420614987612,-0.3631454068236053,0.5360239264555275,-0.6992483520880342,-0.13158459775149822,-0.30173762049525976,-0.6731624319218099,-0.9429363152012229,-0.8501916648820043,-0.896984837949276,0.7959831184707582,-0.44816075591370463,0.36700664134696126,0.3756817504763603,-0.619325218256563,0.08518569264560938,0.9546715593896806,-0.05716635240241885,0.6237611128017306,-0.11901168758049607,-0.8434344483539462,-0.5322063993662596,0.5310998209752142,-0.16887439601123333,0.09929301543161273,0.1773231839761138,0.12077902723103762,0.9678432662039995,0.17193348286673427,-0.6038808436132967,-0.7750806990079582,0.2102427687495947,0.4005446373485029,-0.9355220259167254,-0.9506137729622424,-0.6959060761146247,0.4754828130826354,0.35041618486866355,-0.8625903534702957,0.6714809127151966,-0.12177007971331477,-0.0021225116215646267,0.3843324640765786,0.6620725183747709,0.4378148433752358,-0.18460560403764248,-0.19347815681248903,-0.9357575066387653,0.35150453308597207,-0.6678107483312488,-0.5161474952474236,0.6935901413671672,-0.6989975343458354,0.39122782787308097,0.44970552902668715,0.5796773289330304,-0.9988507716916502,-0.2041725325398147,0.5410280870273709,-0.7732436028309166,-0.34348192252218723,0.4326923843473196,-0.9590224102139473,-0.24997645244002342,-0.62441227119416,0.6391513017006218,-0.8883672342635691,-0.2582549531944096,0.19747846573591232,0.9586365749128163,0.3173513333313167,-0.23871162813156843,-0.8142850026488304,0.14429545542225242,-0.41371274180710316,0.6396174165420234,-0.7471026182174683,-0.22737451177090406,0.3879239819943905,-0.48800576059147716,0.1312140286900103,0.8596324953250587,0.8502499898895621,0.37945679808035493,0.5280579184181988,-0.40750099904835224,0.2973914253525436,0.9200057829730213,-0.8668299349956214,-0.6638993700034916,-0.6565229883417487,0.6773594096302986,0.838821027893573,-0.6012397911399603,0.2650669012218714,-0.9131935201585293,0.9622388212010264,0.3067413531243801,0.030145648401230574,0.589566863141954,-0.6662788069806993,0.7088665864430368,-0.9587292992509902,-0.4632574054412544,0.5154557125642896,-0.13820888800546527,-0.22769499802961946,-0.3325154879130423,-0.20276097394526005,-0.3371948036365211,-0.007101170253008604,-0.7442103652283549,-0.19322292041033506,0.3540460471995175,-0.35099361510947347,-0.22847237950190902,-0.1277660420164466,0.21590736554935575,0.5209149536676705,-0.45861380035057664,-0.09897420974448323,-0.9291817438788712,0.9708394994959235,0.2874215468764305,0.9689859040081501,0.2554854555055499,0.2321994099766016,-0.8956018863245845,-0.6087509952485561,-0.22902368195354939,0.8689828366041183,0.9617552738636732,0.11347997142001987,0.29550693882629275,0.9386241235770285,0.2460817308165133,0.3563185688108206,0.015773086808621883,-0.12739326292648911,-0.8386002969928086,-0.8815092016011477,-0.5572108658961952,-0.2375757722184062,0.918358915951103,0.279440104495734,-0.5616706232540309,0.9906645584851503,-0.9223110931925476,-0.31787492614239454,0.08588349912315607,-0.9070144640281796,0.3806046494282782,-0.9225249704904854,-0.7366784675978124,-0.16341940639540553,-0.20700862118974328,0.5453852070495486,0.6873788041993976,-0.26813294366002083,-0.010509037412703037,-0.5072185373865068,-0.7383681409992278,-0.8242426426149905,-0.06697316281497478,0.8029449642635882,0.1328298505395651,-0.7622328051365912,-0.8289506412111223,0.36771134147420526,-0.9630327010527253,0.25746801355853677,0.14048667857423425,-0.4449331071227789,-0.9319756748154759,-0.5978969424031675,0.9108687369152904,0.4680727091617882,0.1868652431294322,0.24921623663976789,-0.6671024495735765,0.282974268309772,-0.3834395953454077,0.5114021762274206,-0.2088578944094479,-0.6049108481965959,-0.41023621521890163,0.5802405765280128,0.5199456801638007,0.5173454978503287,-0.5613503511995077,0.4814083110541105,0.37434751307591796,0.2485698820091784,0.340382001362741,-0.9512070044875145,0.8401406183838844,-0.2745819357223809,-0.22505002142861485,0.2756242142058909,-0.45128790102899075,-0.6753582116216421,-0.7572065275162458,0.466836076695472,-0.10035837488248944,0.18133407179266214,0.1541760228574276,0.4834938012063503,-0.3259052927605808,0.3660626048222184,-0.2557819075882435,0.2924825572408736,-0.303198448382318,-0.4683481897227466,0.22435093531385064,0.010448253713548183,0.8832813450135291,-0.4004363538697362,-0.5480137756094337,-0.3103484413586557,0.639284027274698,0.4524298901669681,0.544490750413388,0.9214471955783665,-0.8420481351204216,-0.4294229536317289,-0.650341491214931,-0.1696856925264001,0.5978577532805502,-0.6004455420188606,-0.4133913917466998,0.26751666236668825,0.4684008085168898,0.11717797303572297,0.8230892671272159,0.5781914279796183,-0.8470998969860375,0.520822836086154,-0.934299229644239,0.8428413178771734,0.6926030721515417,0.9238699008710682,0.19323455495759845,0.6988326953724027,0.21772213885560632,-0.04253575298935175,-0.0667832363396883,0.06675289012491703,0.15524427872151136,0.28962902538478374,0.7989939288236201,0.43834675662219524,0.231227058917284,-0.3304478474892676,-0.6462327744811773,0.9591298149898648,0.45691335340961814,0.8523189392872155,-0.8111689500510693,0.6316838604398072,0.750415334943682,0.34186308830976486,0.2588751018047333,-0.022735384292900562,-0.8645328730344772,0.5007989010773599,0.36583304638043046,0.23970094183459878,-0.4600824979133904,-0.41966637689620256,0.7487537427805364,-0.4701204183511436,-0.7743242452852428,0.9889102373272181,0.14155784947797656,-0.2914038198068738,0.715355709195137,-0.9942429247312248,-0.22461772104725242,0.6632924545556307,0.2692380156368017,-0.8541001295670867,-0.8536293627694249,0.4890837222337723,0.5247088437899947,0.4699326087720692,-0.43456291081383824,-0.006351939868181944,-0.19263696856796741,0.5591086400672793,-0.7969824364408851,-0.055431248154491186,0.8258241624571383,-0.2692533419467509,-0.49999855225905776,0.22400502441450953,0.25522762117907405,-0.2733561866916716,0.31382560450583696,-0.20444142166525126,0.7098545846529305,0.5869667367078364,0.5575276780873537,-0.8907944709062576,-0.8500827746465802,-0.17466056905686855,-0.871962227858603,-0.9108617166057229,-0.22541151521727443,-0.2974058440886438,0.32893004547804594,-0.8811440686695278,-0.7312757205218077,0.30537858698517084,-0.7485269731841981,-0.5115815820172429,0.9058582750149071,0.2701950082555413,-0.302400270011276,-0.14844757784157991,-0.017163431271910667,0.16021240642294288,0.8139263088814914,0.7633181633427739,0.46692808577790856,0.7476894515566528,-0.143171610776335,-0.19169620843604207,-0.685352383647114,0.6865743640810251,-0.7181319268420339,-0.9921403303742409,-0.11749305576086044,-0.38985395757481456,0.7339156307280064,-0.6736311484128237,0.17927513038739562,0.38929020753130317,0.9048348995856941,-0.3620123225264251,-0.4745473056100309,-0.45683173183351755,-0.3581868438050151,-0.8657684954814613,0.5578042175620794,0.314224177505821,0.8437828533351421,0.1854243902489543,-0.8548692129552364,-0.6524407383985817,0.6316168620251119,0.20942782424390316,-0.44051363645121455,0.395113255828619,0.8944338457658887,0.045672194100916386,-0.9042707956396043,0.6333971880376339,-0.9729638285934925,0.29931746143847704,0.9325392600148916,-0.859551350120455,0.03486443590372801,0.6590421213768423,0.42444495437666774,-0.08052643807604909,-0.6809150250628591,0.08804049296304584,0.4869919684715569,-0.04460506932809949,-0.7662927117198706,0.48773472430184484,-0.20293210446834564,-0.16637776186689734,-0.6872499058954418,-0.7899698452092707,0.30584561824798584,0.5261664306744933,-0.5810650414787233,-0.13899587094783783,-0.936443087644875,-0.42127426294609904,-0.21534194005653262,-0.8238917142152786,-0.8326449058949947,-0.6415347843430936,0.30360023910179734,-0.6175321410410106,0.9644023138098419,0.6387800923548639,-0.31610785657539964,-0.7937372284941375,-0.02015559421852231,0.35631167562678456,-0.971461396664381,-0.35477471677586436,-0.9473329149186611,-0.8331089741550386,0.6635792297311127,0.8584747668355703,0.7902004793286324,-0.5666260248981416,-0.17192461481317878,0.2398178488947451,0.8697095150128007,-0.8951969374902546,0.09391818474978209,0.5529239461757243,0.9889302342198789,0.7395931067876518,0.7389022745192051,-0.2836371189914644,-0.3154525472782552,0.6265969970263541,-0.8674544817768037,-0.13047137949615717,0.2546060332097113,-0.7924980586394668,-0.3354813065379858,-0.4437115862965584,-0.986360493581742,-0.5734897386282682,0.9697919827885926,-0.37833019345998764,-0.4937991448678076,0.8356328150257468,-0.03435331070795655,0.011632899288088083,0.16148766642436385,-0.19724693754687905,-0.09739295486360788,-0.5445701582357287,0.7947002169676125,-0.9438534746877849,-0.5353021062910557,0.7065053251571953,-0.40732053155079484,0.13864652253687382,-0.3439680216833949,0.7124217068776488,0.0635124770924449,-0.6667400300502777,0.6031157579272985,0.6702898410148919,-0.2791595999151468,0.6403341894038022,0.16848145425319672,-0.6859632763080299,-0.8806817643344402,0.9578480836935341,0.8789910171180964,-0.9351320266723633,-0.09840050619095564,0.9739815210923553,0.3631440815515816,-0.8034182731062174,-0.8507335553877056,-0.18953609047457576,0.02677687630057335,0.3786113397218287,0.30234120646491647,-0.009456838946789503,-0.15939393965527415,-0.8862015539780259,-0.6147744185291231,-0.7548960917629302,0.5953616187907755,0.13016699254512787,-0.8017190997488797,0.5465770643204451,-0.035303706768900156,0.6811919608153403,-0.779904093593359,-0.2310259034857154,-0.6251254300586879,0.8584762387908995,-0.1767917782999575,0.9953679661266506,-0.9703730256296694,-0.08508628094568849,0.4568327059969306,0.09370470559224486,0.8185814064927399,0.5477274740114808,0.13186162151396275,0.09945872193202376,-0.8960692612454295,0.07772984402254224,-0.6983541902154684,-0.6772243524901569,0.0994202271103859,-0.40298885433003306,0.4083630545064807,0.013367504812777042,0.4426049692556262,-0.6348380786366761,0.8923280783928931,0.1092328461818397,0.4666175413876772,-0.587062943726778,0.7491152393631637,0.6363443527370691,-0.34760473296046257,0.8688583546318114,0.6539914659224451,-0.63234738772735,0.9360096021555364,0.1182247782126069,-0.21804216178134084,-0.6563419792801142,-0.9604633748531342,-0.41129938093945384,0.013798488769680262,-0.9834923269227147,0.3236675034277141,-0.66219467157498,-0.47282596630975604,-0.1789925992488861,0.6209064894355834,-0.6909168129786849,-0.7886855402030051,0.9807718275114894,-0.6588199166581035,-0.3174267462454736,0.9107039454393089,-0.9015454375185072,-0.6128175421617925,0.9521112251095474,-0.8563511180691421,0.5745126972906291,0.8137316000647843,-0.23434081161394715,0.01795627735555172,0.6937073282897472,-0.021888710092753172,0.41946086613461375,-0.4630513791926205,0.6673370017670095,0.35889869509264827,0.019595306366682053,-0.11654849536716938,0.9241767870262265,-0.454248093534261,-0.9889238798059523,-0.6740672993473709,0.255894270259887,-0.6806132211349905,0.991843843832612,-0.8323477683588862,-0.7252570558339357,0.04299643589183688,-0.13336664950475097,-0.28045892203226686,0.7303337487392128,-0.855084783397615,-0.6934805661439896,-0.02905959077179432,-0.43532938370481133,0.25768511183559895,-0.7964387377724051,-0.6325200954452157,0.47713270084932446,0.9712624377571046,0.7091415589675307,-0.947557978797704,-0.751447169110179,0.16610185895115137,-0.7913969783112407,-0.20277379360049963,0.03243553405627608,-0.36784192034974694,0.8876669979654253,0.9272724278271198,-0.5976706496439874,0.9212311003357172,-0.21275054337456822,0.8653437006287277,-0.8119544275105,0.8181636864319444,-0.1717901350930333,0.11688673822209239,0.18827616842463613,0.42604695819318295,0.11107050627470016,0.13969277124851942,0.6159961223602295,0.025487465783953667,-0.6018348154611886,-0.8795201159082353,0.6150537612847984,0.019272223580628633,0.5529685458168387,-0.4059409121982753,0.12392782885581255,-0.03298506187275052,0.3136804271489382,0.3950249897316098,-0.38920643413439393,-0.9501829422079027,0.9406187101267278,0.0006294171325862408,0.9086499223485589,0.13335006963461637,-0.7404806055128574,0.4975359016098082,0.8799808998592198,0.972395708784461,-0.5903453971259296,0.399902475066483,-0.3321046303026378,-0.7444146648049355,-0.25628041895106435,-0.3450850541703403,-0.23987758345901966,-0.6102996501140296,0.6146693304181099,-0.44143735198304057,-0.6183675550855696,-0.9484220198355615,0.3453248320147395,-0.48542715795338154,0.5310953794978559,0.7692914847284555,-0.015778537839651108,0.32265848480165005,0.9035645136609674,-0.4906667801551521,-0.3215629253536463,-0.11519751138985157,0.7329972665756941,-0.8548345882445574,-0.44485856546089053,0.43676671106368303,-0.029743404127657413,-0.6474092556163669,0.6343403654173017,-0.5514436513185501,-0.3590317601338029,-0.21864753169938922,0.7798733282834291,0.11142787290737033,-0.1370813804678619,0.25993727799504995,-0.7084125336259604,0.8755177007988095,-0.910602648742497,0.8065077792853117,0.8203948517329991,0.9802293418906629,-0.3561116401106119,-0.7200703644193709,0.75680733891204,0.6371866264380515,-0.13406232884153724,0.6506675672717392,-0.8802149035036564,0.5035491166636348,-0.9037940544076264,-0.8483632723800838,0.392141776625067,-0.06440722802653909,-0.721411841455847,-0.5516616734676063,0.8805300467647612,-0.07868276676163077,-0.5079865055158734,-0.19844097271561623,0.6535400063730776,-0.5140905710868537,-0.5250657266005874,-0.003558195661753416,0.7827119287103415,0.7026360551826656,0.1625932320021093,0.326979991979897,0.219490023329854,0.7933097211644053,-0.255360818002373,0.2101946659386158,-0.11475233267992735,0.1296780537813902,0.8705556322820485,0.1981746144592762,0.4665299537591636,-0.6818817546591163,0.8789240000769496,-0.05724279768764973,0.41158339381217957,-0.9140307800844312,0.9916992001235485,0.54323935136199,0.3615341787226498,0.06592529360204935,-0.6871945029124618,-0.06747849611565471,0.295731314457953,-0.6015794789418578,-0.041455259546637535,0.23931726068258286,-0.6123444298282266,0.7071034996770322,-0.651771102566272,0.4368758900091052,0.17810891661792994,-0.6481373370625079,-0.6986604547128081,-0.0217347196303308,-0.5076199290342629,0.003951357211917639,-0.7752110976725817,-0.7476553609594703,-0.7254394376650453,-0.3499948466196656,-0.2970445929095149,-0.025167368352413177,0.48421660577878356,-0.9781121513806283,0.3289578356780112,0.05365451844409108,0.5584989157505333,-0.28286369889974594,-0.09201460564509034,-0.5876828571781516,-0.5424579000100493,0.8350911624729633,-0.5210719802416861,0.29071092372760177,-0.6271929801441729,-0.9067755867727101,-0.39476546784862876,-0.18992237653583288,0.5476269321516156,-0.7030345774255693,0.008080246858298779,-0.26920511294156313,0.2131506698206067,0.9311015936546028,0.7340173865668476,-0.1425241818651557,-0.5822292985394597,-0.6881611156277359,0.48679841170087457,-0.255782219581306,-0.9238608297891915,-0.29616344906389713,0.7748359953984618,0.054961880668997765,0.5145322200842202,-0.041103126015514135,0.69276980496943,-0.4786205352284014,-0.058468963485211134,-0.8836282487027347,-0.15057447738945484,-0.06237564887851477,-0.7854634672403336,-0.24578312505036592,0.06058936985209584,0.6888857483863831,-0.006250303704291582,0.8649728074669838,-0.3301401808857918,-0.4911111476831138,0.9147247015498579,-0.6571839759126306,0.2808153163641691,0.8614888875745237,-0.9562206943519413,-0.880060859490186,0.8461145176552236,0.1686497083865106,0.6145778647623956,-0.6840778519399464,-0.6022827811539173,0.010037275031208992,0.9923858987167478,-0.45949889393523335,-0.8003629809245467,0.49146399553865194,0.8992075934074819,-0.5121602742001414,0.18517168844118714,0.9285033787600696,0.6217346233315766,-0.8916595890186727,-0.7930965148843825,0.34631233289837837,-0.914878349751234,-0.506207877304405,0.33102635527029634,0.6936844228766859,0.26870305091142654,0.8211701936088502,-0.2122280183248222,-0.04081241972744465,-0.17100641271099448,-0.5430053407326341,0.25944316387176514,-0.6171946949325502,-0.9621169515885413,-0.06932817259803414,-0.12105367099866271,-0.8870353857055306,0.0926502333022654,-0.07289836322888732,-0.3326932373456657,-0.3429149226285517,-0.6099112145602703,0.360619283746928,-0.0311632608063519,-0.43425985239446163,0.26984146190807223,-0.7179734911769629,-0.6012460547499359,-0.921431777998805,-0.308798058424145,-0.8188509745523334,0.6879344298504293,0.19164288556203246,0.17842437187209725,-0.13779569696635008,-0.3076290669851005,0.90672656474635,-0.678958703763783,0.6031884532421827,-0.7347364448942244,0.9849887513555586,0.16020280215889215,0.5477036479860544,-0.09211189346387982,-0.3715692297555506,0.856191576924175,0.8797568175941706,0.16367405327036977,0.2986984495073557,-0.44169629644602537,0.8944583158008754,-0.9128929767757654,-0.7897770716808736,-0.6929858420044184,-0.9178081559948623,0.9811016311869025,0.9876833185553551,0.9626090680249035,0.9865263313986361,-0.25961948139593005,0.40588056948035955,0.07734641339629889,-0.37533048586919904,-0.3258013636805117,-0.3250601985491812,-0.6312489621341228,-0.6767861200496554,-0.6657169703394175,-0.9797170488163829,-0.8676796518266201,-0.9592303219251335,-0.23296256456524134,0.29589491803199053,0.20993481017649174,-0.006672413554042578,-0.9522795863449574,0.5780219030566514,-0.8588500930927694,0.9782357788644731,-0.04554732935503125,-0.2811548882164061,0.8648728355765343,0.6061601969413459,-0.37516524689272046,-0.547689241822809,0.46443964494392276,-0.22212567692622542,0.3933017896488309,0.5169695350341499,0.6888695620000362,0.23255298379808664,0.012368564959615469,0.8137037460692227,0.7589573776349425,-0.7980635529384017,0.9416988473385572,0.12707067839801311,-0.4910280928015709,-0.8478742344304919,-0.5004151132889092,0.4540459616109729,-0.6425714483484626,-0.6391251338645816,0.09281277842819691,0.2918138434179127,0.9133392386138439,0.7035337048582733,0.5856318916194141,0.5453193592838943,0.9150674678385258,0.7417531269602478,-0.9768007607199252,-0.15668321400880814,-0.3750492725521326,-0.3830833495594561,-0.41664085211232305,-0.6119123175740242,-0.24476917553693056,-0.6853091064840555,-0.25541565334424376,0.41279065143316984,0.22275622840970755,0.6478872583247721,0.7103087971918285,-0.8511878219433129,0.3423929330892861,0.8730603419244289,0.4153040354140103,0.9178239838220179,0.5131644997745752,0.30476718628779054,0.66082779224962,0.8638027147389948,0.6362113105133176,0.4801212842576206,-0.3436327059753239,-0.04697772907093167,-0.7315746117383242,-0.06040314678102732,0.3773039341904223,0.16744115483015776,-0.10120403859764338,-0.22862147353589535,0.18550644163042307,0.7897373861633241,0.09546648943796754,-0.6453827782534063,0.21290792524814606,-0.21569047635421157,0.03464996302500367,-0.39596520364284515,0.22172086406499147,-0.06830099551007152,-0.6942490180954337,-0.21737836301326752,0.7042752425186336,-0.9333106325939298,-0.6030537574552,0.5340528045780957,-0.2891057087108493,-0.210644350387156,0.6696099019609392,-0.8225374072790146,0.3502186224795878,-0.8866203846409917,-0.9179467963986099,0.27561468072235584,0.5077237412333488,-0.3538180850446224,0.813716403208673,0.007549538742750883,0.8878100896254182,0.7028720425441861,-0.1949537512846291,-0.5470805861987174,-0.34342774003744125,-0.8175250561907887,0.03400753112509847,0.7309736860916018,0.18352585704997182,0.8705877070315182,0.39690663246437907,-0.29711628006771207,-0.42431121598929167,-0.02552689192816615,-0.533293120097369,0.827014856506139,0.9286476029083133,0.19590451568365097,0.04330638237297535,0.12780990730971098,-0.0017573344521224499,-0.19975069863721728,-0.6028528278693557,-0.6193615337833762,0.5293568759225309,-0.9660447738133371,0.80999047588557,0.1957572321407497,0.580329567193985,-0.03147224336862564,-0.09228442562744021,-0.2759092394262552,-0.36818899121135473,-0.06506016058847308,-0.15449578454717994,-0.994944367557764,-0.6971740582957864,0.3032280211336911,-0.33051500655710697,-0.5695004081353545,0.8283211579546332,0.8305883170105517,-0.6244551776908338,0.5410866145975888,0.9557639313861728,0.9131091237068176,-0.9564605015330017,-0.8423690358176827,0.23208676697686315,-0.37738953391090035,-0.9732785327360034,-0.318172849714756,-0.14295820239931345,-0.9779572491534054,-0.8835234297439456,0.026869093533605337,-0.7809272273443639,0.6893375553190708,-0.0007534497417509556,0.22666111635044217,-0.5757755432277918,-0.5788495140150189,-0.7092717406339943,0.36570909433066845,0.7290378324687481,-0.9801428695209324,-0.24351402977481484,0.1864451547153294,-0.5485536637715995,0.5032652080990374,-0.766644851770252,-0.4949474814347923,0.6386293731629848,-0.6598107144236565,0.296322972048074,-0.8369257962331176,-0.9336092048324645,0.38057971792295575,0.4575588000006974,-0.8631659187376499,0.5316076902672648,0.4561815168708563,-0.2309162551537156,0.43156075198203325,0.5968540110625327,0.21972937881946564,-0.1113018337637186,0.8746278239414096,0.5421655578538775,-0.9988710405305028,-0.05443924758583307,-0.5016517909243703,0.7227338845841587,0.10687583824619651,-0.8200941570103168,-0.3650873424485326,0.3249737098813057,-0.33733644569292665,-0.19288816954940557,0.4300261316820979,-0.6202809126116335,-0.6753647709265351,0.7513649598695338,0.8223061193712056,0.8040566295385361,0.39040835853666067,0.4069635923951864,0.01648282678797841,-0.4861347721889615,0.36823455337435007,-0.3387717651203275,-0.2847613994963467,-0.2208362938836217,-0.11947133857756853,0.8315689768642187,-0.07069247402250767,-0.21889060828834772,-0.5786808086559176,-0.5277814641594887,0.10921334568411112,0.8110668794251978,-0.4660938708111644,0.1752244490198791,-0.19195933267474174,0.6227709925733507,0.6528635788708925,0.4482754282653332,-0.6142649305984378,-0.8195134080015123,0.35468192026019096,-0.25234095146879554,0.7918170210905373,0.7905919067561626,0.306781642138958,0.8928107507526875,0.5388585668988526,-0.3014644021168351,-0.9712635022588074,0.25149339297786355,0.5353572205640376,-0.18175643729045987,0.066469622310251,-0.5141220046207309,0.007086147554218769,0.6950248726643622,0.3868483421392739,0.10895687947049737,-0.6777102039195597,-0.40897210501134396,0.3516883095726371,0.9884974583983421,-0.4408528860658407,-0.9589396566152573,-0.42964709969237447,0.8678849041461945,0.5760499034076929,-0.4399154940620065,-0.9291130509227514,-0.33475801534950733,0.9697844428010285,-0.6766381706111133,0.835255435667932,0.032104155514389277,-0.0827258313074708,-0.3197106458246708,-0.014410667587071657,-0.586026519536972,-0.892428673338145,0.18974511604756117,0.6785217942669988,-0.8932991083711386,-0.8689105161465704,0.2144903694279492,-0.4004769786261022,-0.06882092729210854,0.7582901837304235,-0.7679085205309093,-0.051755466032773256,0.8559034275822341,0.07557814568281174,0.4156952719204128,-0.7988966195844114,-0.9036629884503782,0.2267912942916155,-0.166914495639503,-0.8329072878696024,0.16302274307236075,-0.20294362120330334,-0.8623821828514338,-0.9834163710474968,0.05510977143421769,0.0011330442503094673,-0.7845770767889917,-0.13814595201984048,0.3817069991491735,0.8717833166010678,0.8662251099012792,-0.8321461221203208,0.8472436093725264,-0.9761052313260734,0.24481196282431483,-0.9434649203903973,-0.06497163884341717,0.08722813474014401,0.7454945975914598,-0.21569195901975036,-0.9443941540084779,-0.6801403663121164,0.8038125210441649,0.9030196042731404,-0.9385853004641831,-0.9103366727940738,-0.8970641158521175,-0.15378005895763636,0.07300656847655773,-0.181826691608876,-0.8191015180200338,-0.33926988719031215,-0.9469823110848665,0.5889368858188391,0.04702526703476906,0.8234504330903292,-0.14364435244351625,-0.5087485420517623,-0.28706817189231515,0.1293640611693263,-0.8143041240982711,0.20119610987603664,0.3912407443858683,-0.7655180362053216,-0.42774832155555487,0.20720624923706055,0.4116774997673929,-0.6965179680846632,0.6192417987622321,-0.546796940267086,0.9795550517737865,-0.9326184173114598,0.4727735058404505,0.238322495482862,-0.005828192923218012,0.6384710478596389,-0.41158326575532556,-0.12884622905403376,-0.7888152194209397,0.5017161569558084,0.9288118472322822,-0.496577822137624,-0.2047707256861031,-0.7444579498842359,-0.410455503500998,-0.8122712061740458,-0.8773289923556149,0.38192913588136435,0.0016234936192631721,-0.8296978492289782,-0.5649661174975336,0.3618075870908797,0.8121206732466817,-0.07777125295251608,-0.9846036550588906,0.20282797422260046,0.9423306593671441,-0.9597921688109636,0.9637116445228457,-0.3014339660294354,0.08319329423829913,-0.7867502560839057,-0.8918623421341181,-0.25778309907764196,-0.7421779013238847,0.15342681854963303,0.3785704281181097,-0.6669120104052126,0.8191797025501728,-0.47465020418167114,-0.5643206047825515,0.8062171963974833,-0.12028519343584776,0.8076617331244051,0.18539764638990164,0.4923976860009134,0.775131581351161,-0.5511853820644319,0.8602114631794393,0.34455570159479976,-0.3532034317031503,0.43468911154195666,-0.3337785145267844,-0.1329687237739563,-0.7377013554796576,-0.9466090784408152,-0.730981879401952,0.7510707224719226,-0.10135478805750608,-0.03169351303949952,0.17775865737348795,0.08134433254599571,0.05420433543622494,-0.746385355014354,-0.6195647181011736,-0.6803344548679888,-0.15433047991245985,0.11728468770161271,-0.236430577468127,0.0072773476131260395,-0.28318123146891594,0.8605171167291701,-0.2822074596770108,0.6319290911778808,0.19787962827831507,0.07134572695940733,0.3447356875985861,0.8990592607297003,-0.22500678151845932,-0.9495660797692835,-0.08896027691662312,-0.9409128474071622,0.8027752195484936,0.3165331007912755,0.049677489791065454,-0.791864575818181,0.45560069382190704,0.8199262493290007,0.9620849615894258,-0.7036891872994602,0.8303447780199349,0.7882796269841492,0.5045876055955887,-0.8609703443944454,0.5762484036386013,-0.952595152426511,0.28013354213908315,0.9964824812486768,-0.9202616871334612,0.36807058239355683,-0.44876170391216874,-0.5511262938380241,-0.3686854992993176,-0.2374723614193499,0.4783478123135865,0.7501426627859473,0.28299566404893994,-0.3686794196255505,0.6668085413984954,0.3191066412255168,0.13358147954568267,-0.4485484235920012,-0.7145466320216656,-0.8353766528889537,0.3570009539835155,0.7932002488523722,-0.9779806560836732,-0.6486597475595772,-0.5926213883794844,0.005067387595772743,-0.06636955542489886,0.3212469443678856,-0.06545820506289601,0.5387064963579178,-0.8087827879935503,-0.3010291699320078,-0.6038526226766407,0.5542480256408453,-0.3583662207238376,0.3664828329347074,-0.9069884563796222,-0.46316079795360565,0.9047736832872033,0.8704478712752461,-0.035674385260790586,0.51456886716187,-0.3359932154417038,-0.3626866932027042,0.6067327517084777,-0.22183177853003144,-0.5955546912737191,-0.34756889985874295,-0.7688727523200214,0.9817060166969895,0.8533702315762639,0.7145912442356348,-0.20387060195207596,-0.292166268453002,-0.6406534081324935,0.9957105796784163,0.049298574682325125,0.9228158281184733,-0.743927069939673,0.07525063678622246,-0.18699499685317278,0.025700108148157597,0.07609994476661086,-0.06609630631282926,-0.08267840789631009,0.08324383338913321,0.2641911171376705,-0.22914673620834947,0.4273831299506128,-0.17874469188973308,-0.36146288085728884,0.19339409470558167,-0.35924115078523755,-0.6610573958605528,-0.5881039039231837,0.9058280824683607,-0.38926144363358617,-0.19856978347525,-0.794286600779742,-0.6639091372489929,-0.4110050005838275,0.8965230556204915,-0.6483942386694252,0.5616468875668943,-0.49230446945875883,-0.0779163776896894,0.11960460199043155,-0.7817420093342662,0.6551624746061862,0.02226394647732377,-0.42993855895474553,0.5439733932726085,-0.9808476828038692,-0.2390116648748517,0.9988119089975953,0.05368246650323272,0.4875282794237137,-0.35646333498880267,0.7219750257208943,-0.9318292774260044,0.8972576791420579,0.08150877896696329,0.2903557876124978,-0.6748844957910478,0.034450245555490255,0.34975396608933806,-0.23927189502865076,0.6800161609426141,0.25399544602259994,0.20221826061606407,0.7720224210061133,-0.7702603572979569,-0.8836958990432322,0.51074777264148,-0.20603387849405408,0.8477446488104761,0.6838699812069535,-0.7600361034274101,-0.45568286068737507,0.15353099210187793,-0.1723643601872027,0.7670260644517839,0.02707626949995756,0.7896912079304457,-0.20678921462967992,0.28710249392315745,-0.431870617903769,-0.1121169994585216,0.9325740928761661,0.4774431069381535,-0.27693646727129817,0.6163392094895244,0.5920863505452871,-0.16878359019756317,-0.4620125899091363,-0.30735351890325546,-0.7475754632614553,0.008346287533640862,0.4248603992164135,-0.8455140804871917,-0.3395541422069073,0.8117612022906542,0.595568080432713,-0.5795516786165535,-0.6291510812006891,-0.035484171472489834,0.856275234837085,0.5366513677872717,-0.38988180086016655,-0.5846805293112993,0.901905610691756,-0.262949061114341,-0.596721671987325,-0.20237167598679662,-0.860459384508431,0.9424697514623404,0.04531316086649895,-0.8115182965993881,-0.443168630823493,0.06473827827721834,-0.9613565900363028,0.4775590398348868,0.646616724319756,-0.5694873230531812,-0.3539028405211866,0.7718036011792719,0.06708816299214959,-0.7527976459823549,-0.15673272404819727,-0.2560883634723723,-0.45016414765268564,0.17902471404522657,0.19139247154816985,-0.9507288294844329,-0.8773292792029679,0.8740122029557824,0.6691136667504907,-0.03464746195822954,-0.3376388465985656,-0.1262803077697754,-0.4368515866808593,0.5793117079883814,-0.29480327060446143,0.445650661829859,-0.20005304645746946,-0.9429752584546804,0.900831091683358,0.13131155213341117,0.9643371477723122,0.5293435123749077,-0.6278115301392972,-0.006849701516330242,0.896701265592128,0.6313325227238238,-0.9071806049905717,-0.33740253979340196,0.019571054726839066,-0.542206630576402,-0.5079454709775746,0.5643351329490542,0.8154118643142283,0.7857785234227777,0.08044930174946785,-0.7320372727699578,-0.9673964898101985,-0.7545643378980458,-0.7235508267767727,-0.23320946656167507,-0.706464447081089,0.5398234925232828,-0.041997363325208426,-0.1545380181632936,-0.27155541023239493,0.8509252131916583,0.4832530580461025,0.6377902613021433,-0.7657373230904341,0.7870540115982294,-0.49076059786602855,0.4246473195962608,-0.9645150466822088,-0.32612519012764096,-0.24011842859908938,0.5812531276606023,-0.5985564142465591,0.025027216877788305,0.5580090708099306,-0.5700016338378191,0.1878447262570262,0.4033888513222337,0.25165553856641054,-0.7939122649841011,0.069348962046206,0.05522187892347574,0.5711035411804914,0.5290404441766441,-0.7940525040030479,-0.6157900327816606,-0.9943049009889364,-0.5117457816377282,-0.8527932027354836,-0.8642994151450694,0.16810825932770967,-0.9662518883123994,0.8844718583859503,-0.10998274385929108,-0.07585096964612603,-0.9631160967983305,0.04237584723159671,0.3826391058973968,-0.20284615783020854,0.10987976705655456,-0.7796264523640275,-0.2849656827747822,0.9632704104296863,0.8169317678548396,0.331851561088115,-0.9143046704120934,-0.11564543843269348,0.1650399691425264,0.6554366904310882,-0.9213860854506493,0.7199086360633373,-0.4372943136841059,-0.15596627024933696,-0.8727614562958479,-0.7576018762774765,-0.7306623831391335,-0.9266649628989398,-0.1534236567094922,-0.3119246521964669,0.5742402146570385,-0.6495877923443913,0.9946542354300618,-0.4087806371971965,0.14901300892233849,-0.7652170583605766,0.7773297606036067,0.44581181462854147,0.9481757986359298,-0.2323364051990211,0.9624106087721884,-0.6399338291957974,-0.9614073471166193,-0.9623819929547608,0.23078673798590899,-0.5543547342531383,-0.3838062258437276,-0.5222935443744063,-0.5282917264848948,0.30260957684367895,-0.05069812014698982,-0.7775740944780409,-0.9640075862407684,0.6678249193355441,0.3961822553537786,0.9312293860130012,0.5599034745246172,0.9725068635307252,0.25071782851591706,-0.015847019851207733,-0.1285173329524696,-0.8131641843356192,-0.21932590613141656,-0.4210099224001169,0.588724069762975,0.4974112040363252,-0.8148413714952767,-0.0014403997920453548,-0.5511989588849247,-0.26982848532497883,0.8196895867586136,0.31466489750891924,-0.9923445950262249,0.6558888144791126,-0.4712823019362986,-0.44872827222570777,-0.6668136375956237,0.865974513348192,-0.35352176195010543,-0.47447850555181503,-0.008763386402279139,-0.8679808229207993,-0.9074601167812943,-0.5912794680334628,0.09570658300071955,0.057920729741454124,-0.46682322304695845,-0.5987534034065902,-0.23353487811982632,0.6997835827060044,-0.3817430711351335,0.20912032388150692,0.582186060026288,-0.678317179903388,0.8509229156188667,-0.5187053349800408,-0.7198315639980137,0.2585829389281571,0.4484839281067252,-0.04375868896022439,0.08235014509409666,-0.16838728915899992,0.8594579277560115,-0.614694144576788,-0.4509483869187534,0.7613371913321316,-0.16963889403268695,-0.46372178941965103,0.6084112673997879,0.30262350756675005,0.01357773132622242,-0.549002951476723,0.40910247014835477,0.7232209211215377,0.24850713182240725,0.3414085344411433,-0.1444940622895956,-0.7814050219021738,-0.31405550707131624,-0.6793963490054011,-0.6949406359344721,-0.5391187970526516,-0.41728728963062167,0.8244552663527429,-0.30515057779848576,0.9577456684783101,0.3107964061200619,-0.27790024317801,0.49475173465907574,-0.7038793568499386,0.2180070774629712,-0.5986671890132129,0.17496812297031283,-0.8677134779281914,0.07389755081385374,-0.604606500826776,-0.8619867055676877,0.7232540412805974,0.679021236486733,-0.45562645187601447,0.3224769225344062,0.5244412021711469,-0.4926609410904348,-0.4193926230072975,0.833651702851057,-0.41766273230314255,0.640385405626148,0.9910015622153878,-0.36403386760503054,-0.4684742479585111,0.7688415269367397,-0.34153719525784254,-0.04754369845613837,-0.15254755597561598,-0.7491011954843998,0.17504460830241442,-0.8588996496982872,-0.3660963708534837,0.9512325846590102,0.38488698983564973,-0.523160909768194,0.4770378051325679,0.9419611939229071,0.9025099687278271,-0.9810548024252057,0.9808884831145406,-0.5203113714233041,0.06076607387512922,-0.7163884481415153,-0.06568079581484199,0.528688583523035,-0.2998373624868691,0.8830335582606494,0.4951723054982722,0.2818508241325617,0.46299183182418346,-0.08108638226985931,0.07212685281410813,0.37644153740257025,-0.8006021990440786,-0.3301051314920187,-0.1314601581543684,-0.7557872817851603,0.10888636158779263,0.30550240399315953,-0.32258856436237693,0.8367867176420987,0.65835235780105,0.9403592944145203,-0.0010400260798633099,-0.31421362422406673,0.6835713665932417,0.3108241152949631,-0.23696345509961247,-0.5048392754979432,0.4288880773819983,0.6478217770345509,-0.3669372801668942,0.10463959770277143,-0.6747415261343122,0.8572887247428298,-0.1757445428520441,-0.7365786326117814,0.5965973497368395,0.05188892874866724,0.40862807957455516,-0.9157214206643403,0.4423709330148995,0.3713068519718945,0.22849400388076901,-0.8783139386214316,-0.2802891875617206,0.28345939004793763,0.6283423979766667,0.06096409494057298,-0.9022137252613902,-0.19305710028856993,-0.15515387384220958,-0.6292031840421259,-0.9574932074174285,-0.889437660574913,0.10568069154396653,-0.3627001028507948,-0.685821725986898,0.34835930494591594,-0.4301211475394666,-0.8723354986868799,0.641709026414901,0.47821305925026536,-0.7934412378817797,-0.43520375434309244,-0.43291275948286057,-0.712672770023346,-0.9245570213533938,0.8577692657709122,-0.31167412688955665,0.8416737178340554,-0.18256461806595325,-0.14159111073240638,-0.6218953966163099,0.6944713178090751,-0.2074860348366201,-0.32654797099530697,0.6391569874249399,0.6107710036449134,-0.005762215703725815,0.4515533447265625,-0.6044876091182232,0.016579771414399147,-0.3111656568944454,0.8148349062539637,0.5447807596065104,-0.3884360217489302,-0.8396503152325749,-0.5710245203226805,0.018981666304171085,0.08544257329776883,0.5568348714150488,0.869824493303895,0.6981049156747758,-0.4193575498647988,-0.3784730238839984,-0.9687113827094436,0.23155387165024877,0.6175619862042367,-0.2826019786298275,0.9054783307947218,0.3053830387070775,0.3493853257969022,-0.21120856329798698,-0.8143365811556578,-0.5423446744680405,-0.26875096932053566,0.931531778536737,0.7842330276034772,-0.16820958442986012,-0.2519084895029664,0.8905278034508228,-0.45905561465770006,0.2964131128974259,-0.4960675956681371,0.2456230502575636,-0.17769805481657386,0.16320918127894402,0.5279205306433141,0.6694961995817721,-0.708897280972451,-0.056561720091849566,-0.7171514215879142,-0.3537858258932829,0.5791734107770026,0.9036305178888142,-0.9572296729311347,0.038682437501847744,0.8204914811067283,-0.6325502470135689,0.21466459473595023,0.11185059230774641,0.9659073622897267,0.5799457654356956,-0.000742458738386631,-0.7025827285833657,0.2006150921806693,-0.6635142681188881,0.6739136399701238,0.5534222633577883,0.0828946721740067,0.3711914783343673,-0.804242295678705,-0.741875575389713,0.6120822690427303,-0.6939845774322748,0.20689999777823687,0.9557688655331731,0.24165746243670583,0.6369780073873699,0.27076623076573014,0.9634364889934659,-0.3077874821610749,-0.4052555337548256,-0.27245699521154165,-0.07285476988181472,-0.5709625380113721,-0.45023980224505067,-0.530043225735426,-0.5101490560919046,0.7257466074079275,0.6623773975297809,-0.620300633367151,-0.9041092535480857,0.5729786157608032,0.8520311284810305,-0.3704537036828697,-0.24031550902873278,0.9968515778891742,-0.9225745648145676,-0.6680990504100919,-0.1488697174936533,0.6130086039192975,-0.9911220516078174,0.3755982145667076,-0.06905045034363866,0.623252552933991,-0.4768718513660133,0.9302166146226227,-0.14695722656324506,0.8328057280741632,0.9254753850400448,-0.7134492862969637,0.46724457759410143,0.47566571878269315,-0.9152489290572703,-0.8233697577379644,-0.8058074335567653,0.14746195077896118,0.26347578736022115,-0.4920453275553882,-0.8251438988372684,0.5816250792704523,-0.4186280323192477,0.8592159934341908,-0.6830380200408399,-0.10761785553768277,0.7272778092883527,-0.8689778735861182,-0.18911583302542567,0.43488813657313585,-0.9310792805626988,0.19273663870990276,-0.859726463444531,-0.3624908523634076,-0.7651131236925721,-0.14491126826032996,0.9649939499795437,-0.35370975779369473,-0.35935631627216935,-0.7842386895790696,0.6625588210299611,0.8313920022919774,0.8194345529191196,-0.7538358722813427,0.33904208382591605,-0.6748415268957615,0.5434880522079766,-0.12688471423462033,0.03474431438371539,0.9291844656690955,0.8603374231606722,-0.9797949278727174,-0.3844004641287029,-0.37678773421794176,0.13188420422375202,0.04852162627503276,-0.7426832360215485,0.5683990549296141,-0.25512116262689233,-0.9626409029588103,-0.3520659920759499,-0.4037400600500405,0.8804642669856548,0.5818603560328484,-0.8620242443867028,-0.051161032635718584,0.5448217820376158,0.5222114259377122,-0.6476436462253332,0.09909380506724119,0.4300885037519038,0.7094671605154872,0.7463376359082758,0.38376216869801283,-0.9367083567194641,-0.8739422401413321,0.7565253609791398,-0.0802678931504488,0.9684900590218604,0.716452609281987,-0.43595161847770214,0.6558198262937367,-0.8936732443980873,-0.8056352352723479,-0.9093529055826366,0.1063026306219399,0.22458457900211215,-0.7269144495949149,0.42631103843450546,0.09020907944068313,-0.7302370429970324,0.03531086351722479,0.5253562531434,-0.34447190957143903,0.605268569663167,0.7267882181331515,0.5431782123632729,-0.154603139963001,-0.7357554300688207,0.7197221415117383,0.8580536772496998,-0.7518262816593051,-0.31004443299025297,-0.7464049034751952,-0.8803621055558324,-0.2044511465355754,0.680344623979181,-0.2451961780898273,0.736547299195081,0.16951460670679808,-0.5014488804154098,0.49863026291131973,0.4315322642214596,0.10538645321503282,0.01596584916114807,0.5058432244695723,-0.8731767479330301,0.3600574443116784,0.9035675297491252,-0.5550249936059117,-0.7099614711478353,0.04624368902295828,-0.807246679905802,-0.7868786239996552,0.1697287862189114,-0.07447028392925858,-0.631477230694145,-0.04568895371630788,-0.5235440456308424,-0.8741956925950944,-0.6851371424272656,0.5189253287389874,0.3839076510630548,0.30148526886478066,-0.3315042844042182,-0.6348102954216301,0.5916000539436936,-0.22252745227888227,0.7824623105116189,-0.17086381511762738,0.1489591603167355,0.1818649028427899,0.44938218500465155,-0.8150807251222432,0.5560677126049995,0.47111072298139334,-0.9598160954192281,-0.7479007299989462,0.766186561435461,0.5507788378745317,-0.6779229422099888,0.6265028715133667,-0.8411282543092966,-0.8561032456345856,0.6880639875307679,-0.6499534053727984,0.6156957033090293,-0.5058069569058716,0.0065983012318611145,0.3402918050996959,-0.3062050533480942,0.22249027015641332,0.37350797606632113,0.7269553174264729,0.11554162530228496,-0.6519815446808934,-0.39059068309143186,-0.023871594108641148,-0.0445222039707005,-0.2946203015744686,-0.23878972604870796,-0.7175129344686866,0.43516829051077366,0.0644925800152123,0.08895169058814645,-0.5443797213956714,0.592653323430568,-0.22597762662917376,0.3567504333332181,0.7963424595072865,-0.3772690510377288,-0.34963593911379576,-0.4686416410841048,-0.07394594559445977,0.01921024266630411,0.4729744824580848,0.15595707204192877,-0.6003377418965101,-0.44878317322582006,-0.5276223211549222,0.5050720726139843,0.3672869144938886,0.2704314077273011,0.15398755203932524,0.22495803935453296,0.523265652358532,0.3883869838900864,-0.01666360581293702,0.635822004172951,-0.9240165939554572,0.7317803241312504,-0.3547303071245551,0.5831381054595113,-0.05330521101132035,-0.059488520957529545,-0.1638235030695796,0.30811948888003826,0.6746736052446067,-0.6485616029240191,-0.7035686131566763,-0.6270864261314273,-0.01393606187775731,-0.6308399764820933,-0.7108104601502419,-0.03563994122669101,0.49302230356261134,0.9008983694948256,-0.3812880744226277,0.08377087675035,0.5954720769077539,0.36659382563084364,0.21613642713055015,0.052683656103909016,0.19533483404666185,-0.40409684274345636,-0.6054435349069536,-0.5545021304860711,0.804347210098058,-0.39517917111516,0.867711428552866,0.4563083234243095,-0.7343313628807664,-0.1795208752155304,-0.8890160718001425,-0.22374464105814695,-0.726527089253068,-0.6398965902626514,-0.7611028980463743,-0.27955972542986274,-0.2051527900621295,-0.23550584819167852,0.3379585542716086,0.8675336097367108,-0.2902923133224249,0.5503436652943492,0.026254632510244846,0.4719777484424412,0.47512845415621996,-0.8386351368390024,0.17509765131399035,-0.9862737436778843,0.46370755368843675,0.2484903046861291,-0.33731325017288327,-0.23202158603817225,-0.7652437784709036,0.8215171783231199,0.49425130942836404,-0.16323203267529607,-0.17181728594005108,-0.3359888046979904,0.2621094658970833,-0.5333782345987856,0.8384056789800525,0.14900409942492843,-0.2808792660944164,-0.061180280055850744,-0.3402608218602836,0.5221377266570926,0.2767168520949781,-0.3649811213836074,0.9213441242463887,0.15567144425585866,-0.9926578286103904,0.7204570625908673,-0.011200123466551304,0.9623999227769673,0.2197485682554543,-0.8593439497053623,-0.41780496668070555,0.26742534153163433,-0.13592717656865716,0.6898808274418116,0.451267066411674,0.43793112225830555,0.8809092859737575,-0.5628913193941116,-0.7820733063854277,-0.3404738251119852,0.9611317249946296,-0.862761840224266,0.55592405423522,0.06695720693096519,-0.09895664546638727,0.927257667761296,0.9042983315885067,0.14809198398143053,-0.27505330089479685,0.2804641048423946,-0.9180239881388843,0.3791867345571518,-0.4633823106996715,0.18991085700690746,0.021918779239058495,0.1357366405427456,-0.06408192915841937,-0.9942198395729065,-0.4658855488523841,0.8075091177597642,0.22455247258767486,-0.01084379618987441,0.571395886130631,-0.21864349534735084,-0.6511814766563475,0.23658750345930457,-0.6416389937512577,0.38232756592333317,0.7933201701380312,-0.5513322311453521,-0.26048589311540127,0.02945799846202135,-0.4951985660009086,0.46530194161459804,-0.8339999616146088,-0.15349860023707151,0.9165445896796882,0.4389742542989552,0.1524273413233459,0.708163102157414,0.2800294626504183,0.0844670794904232,-0.43403093283995986,-0.39429192431271076,0.9510838002897799,0.8106331476010382,-0.0001356438733637333,0.07605785131454468,0.35418551322072744,-0.23826125171035528,-0.6840190174989402,-0.708224955946207,0.5581941846758127,-0.9572937432676554,0.48921331856399775,-0.38735220953822136,0.4259265470318496,0.9497112259268761,0.5606052172370255,-0.2959773135371506,-0.32708166260272264,-0.905554675962776,-0.11429211171343923,0.5534179755486548,-0.7513697827234864,-0.6420284197665751,0.7545649041421711,0.8794052922166884,0.012024891097098589,-0.4220576882362366,-0.6831176672130823,0.7950651487335563,-0.3587592332623899,-0.9523864048533142,0.6110986690036952,-0.6315797274000943,-0.6074064713902771,0.9766146335750818,-0.8524265447631478,-0.12636602809652686,0.9682168080471456,0.22137518599629402,-0.5665118438191712,0.49613598361611366,0.5909685273654759,-0.9591653440147638,-0.31215291284024715,0.4641327834688127,-0.09095577755942941,0.7795363613404334,0.4519682740792632,-0.3933119038119912,-0.37754355231299996,0.014623411931097507,-0.5155673981644213,-0.46797727420926094,-0.7840822585858405,0.9774347026832402,0.8007748490199447,-0.3140272153541446,-0.4724028264172375,-0.21701620053499937,-0.7554350621066988,0.15217063343152404,0.8852741895243526,0.5451861005276442,0.609697206877172,0.5313224736601114,-0.27814656822010875,0.07236154424026608,0.3785681491717696,0.937500303145498,0.664137676358223,0.3399755316786468,0.023265686817467213,0.17562482692301273,0.1509779328480363,0.16948801139369607,-0.1410696692764759,-0.597772175911814,-0.3444320517592132,-0.3036253750324249,0.19713971810415387,-0.3015835452824831,-0.05383645836263895,0.7926710238680243,0.31173949176445603,-0.25994799565523863,0.08118431363254786,0.1935353185981512,0.08833392011001706,-0.41704239742830396,0.09218959044665098,-0.0589760635048151,-0.1101672793738544,0.9497365672141314,0.49024679604917765,0.13318054005503654,0.6562090963125229,0.728857884183526,-0.7177721974439919,0.32687250850722194,0.9936406831257045,0.6977712670341134,0.9029721077531576,0.05173641396686435,0.8642223794013262,0.2696584756486118,-0.06876452686265111,0.03507402539253235,0.8960455628111959,-0.891826406121254,-0.02726077102124691,-0.24951716559007764,-0.41190254408866167,-0.05676065245643258,0.5807184022851288,-0.6667773788794875,-0.8924052007496357,-0.41597737232223153,-0.7878500828519464,0.18344885809347034,0.28513681842014194,-0.944315314758569,0.6609413134865463,0.46042846189811826,0.6677450882270932,0.858056009747088,-0.9776136982254684,-0.386602739803493,-0.7143603572621942,0.9876116495579481,-0.5892455885186791,0.08760424703359604,0.7535124346613884,-0.37052960228174925,0.615726366173476,-0.56490887561813,0.9022950460202992,-0.8391020144335926,-0.8543435744941235,-0.8773900908418,0.8094430952332914,-0.6594000482000411,0.9569100756198168,-0.3504570173099637,0.5019171056337655,0.15530965011566877,0.22442689025774598,-0.3184020654298365,-0.3524179612286389,0.3463625777512789,0.6750124469399452,0.6863975278101861,0.9435514463111758,0.6071172044612467,-0.07111910358071327,0.9479668796993792,0.06964444229379296,-0.024083755910396576,-0.6022306513041258,-0.9803649880923331,-0.25810488779097795,0.8902943674474955,0.31055730767548084,0.4452017117291689,-0.6736145662143826,0.09250198304653168,-0.5676774089224637,0.1941311894915998,-0.47687385883182287,-0.44160922430455685,-0.3166905539110303,0.13570449268445373,-0.22830314747989178,0.10469969268888235,0.33478006487712264,-0.44369072280824184,0.8183274548500776,-0.08149869833141565,0.3193853097036481,-0.6583158099092543,-0.4676686911843717,0.19518318632617593,0.9626029091887176,-0.6071819406934083,0.5328751085326076,0.7615737202577293,-0.28064389945939183,-0.18510878272354603,0.7268882137723267,-0.9910979396663606,-0.33944388991221786,-0.25767162116244435,-0.2854632418602705,0.6143354759551585,-0.07083559408783913,-0.1434109341353178,0.9793807063251734,0.6476655388250947,-0.5710211484692991,0.8508668844588101,-0.3051221063360572,0.05904244305565953,-0.09448908921331167,-0.32399856531992555,-0.44086942775174975,-0.5275504835881293,0.5331141031347215,0.6121099502779543,0.33682455169036984,-0.4671654514968395,0.2805645177140832,0.2627980220131576,0.34246202325448394,-0.9221042604185641,-0.8222725368104875,0.4644193588756025,-0.1971545359119773,0.22317909821867943,-0.280333633068949,-0.7880651508457959,0.6961758169345558,0.0705191814340651,0.018630783073604107,-0.5578575511462986,0.22270072810351849,-0.2087654215283692,-0.37264051055535674,-0.6878615794703364,0.1975392857566476,-0.07673364970833063,0.06514781899750233,0.14022130006924272,-0.5336436135694385,-0.23417776683345437,-0.0637840642593801,-0.39118966180831194,0.5475354925729334,0.04958160547539592,-0.08973870845511556,0.8200558447279036,0.2046317094936967,0.6075920723378658,-0.9483226146548986,0.7856647646985948,-0.7238286742940545,0.5701586524955928,-0.4079470313154161,0.018427167553454638,-0.3965272130444646,-0.8705644593574107,0.7153873834758997,0.7212229571305215,-0.41529380483552814,-0.48395383870229125,-0.19401145866140723,-0.17244247300550342,-0.331760433036834,0.053558175917714834,0.5086700511164963,-0.6789003480225801,0.12226441875100136,0.18482120893895626,0.48905250197276473,0.32480766950175166,-0.9277048581279814,0.48598438361659646,-0.5014310898259282,0.4431627648882568,-0.919772235210985,0.2775040087290108,0.6483967341482639,-0.44624699745327234,0.8201287970878184,-0.7526468802243471,-0.11486142408102751,0.356125907972455,-0.2904537604190409,-0.24297277815639973,-0.044284932781010866,-0.5369757539592683,-0.20161750772967935,0.2025144062936306,-0.43262086482718587,-0.8252480057999492,0.6206007082946599,0.13949202373623848,-0.08065185835584998,-0.18275284534320235,0.44002226600423455,0.2372541851364076,0.6120253540575504,0.7826138786040246,0.9007265497930348,-0.6909811412915587,-0.2423450257629156,-0.5484422789886594,0.030392663553357124,0.21169145870953798,0.0840660878457129,-0.5311242369934916,0.2889969013631344,-0.7403813772834837,-0.3443062696605921,0.9593624053522944,-0.8896236098371446,0.058073645923286676,-0.16457004426047206,0.6057713059708476,-0.34277792228385806,0.9932739716023207,0.0438219322822988,0.6591526716947556,-0.9634931902401149,-0.7046559867449105,0.543168053496629,-0.3827621778473258,-0.1014585206285119,-0.256604693364352,0.24286616779863834,0.018840274307876825,-0.9542938028462231,0.6263276934623718,0.3480873219668865,-0.08758986741304398,0.6937562972307205,-0.6151167005300522,0.6759750265628099,-0.7321323147043586,-0.7440475099720061,0.3776806448586285,0.8442236077971756,0.2738555343821645,0.24755394458770752,-0.5646954379044473,-0.42872372595593333,0.6156376334838569,0.4019394153729081,-0.6890183598734438,-0.7878952608443797,-0.02181753981858492,-0.8866198137402534,-0.4588737254962325,0.00798114575445652,-0.4107127357274294,-0.2806256953626871,0.5992469196207821,0.6332272123545408,0.9270321601070464,-0.9107969105243683,-0.8783551738597453,-0.48114214139059186,0.07734978059306741,-0.9444687813520432,-0.1861857487820089,0.316252535674721,0.6632446572184563,0.20827404223382473,-0.8087079008109868,0.4379364191554487,-0.16201471723616123,-0.7469365522265434,-0.7834700527600944,-0.9105176492594182,0.22066730866208673,0.9072420103475451,-0.8320470675826073,0.9633938898332417,0.7468444751575589,-0.16490628430619836,-0.08905780501663685,-0.3939734916202724,0.6422294192016125,0.792966275010258,0.27021983778104186,0.8203155645169318,-0.5553001035004854,0.5027477932162583,0.6605632053688169,0.5187144260853529,-0.5669827796518803,-0.03931780206039548,-0.06605752930045128,-0.7416942808777094,0.9459836971946061,-0.7017719591967762,0.4312161267735064,-0.5379893337376416,0.7762782480567694,0.7003957261331379,0.8248348864726722,0.341280909255147,0.7215613317675889,-0.6526220547966659,-0.23521224549040198,-0.68987380200997,-0.8586617754772305,-0.9004248790442944,0.9540043761953712,-0.8545072143897414,0.8020832785405219,0.4131086990237236,-0.6638179421424866,0.23943453142419457,-0.371799323707819,0.563622685149312,-0.27147954050451517,0.14712885906919837,-0.9323715036734939,0.9948193007148802,-0.8286408903077245,-0.6791145638562739,-0.40127783035859466,0.5805912571959198,0.5945256403647363,-0.42044903663918376,0.15853500412777066,0.9982217773795128,-0.2202046080492437,0.4435324231162667,-0.9249933771789074,-0.1993365134112537,0.4536830559372902,-0.09686540253460407,0.12190191494300961,0.2832218394614756,-0.8704848564229906,0.885255170520395,0.8994227573275566,0.9132829164154828,-0.9901646277867258,-0.29539866279810667,0.4004458114504814,0.29428170900791883,0.15648276964202523,-0.601449497975409,-0.6710059340111911,-0.06811565766111016,0.6573260631412268,0.776322684250772,0.7705846978351474,-0.5544374333694577,-0.19852647418156266,-0.7275878214277327,0.8687404678203166,0.712974009104073,-0.7125539067201316,-0.7516619157977402,0.5247449069283903,-0.3685035896487534,-0.9120368626900017,0.8784406497143209,-0.9210470751859248,0.6604213817045093,-0.10023793112486601,-0.8662715111859143,-0.28219873225316405,-0.6581814452074468,-0.4787266720086336,0.8933370225131512,-0.9016789719462395,-0.7031516283750534,-0.38200889993458986,0.6856298595666885,0.44793224101886153,-0.1491125412285328,0.8156954669393599,-0.8482316439040005,-0.5011835466139019,0.751166214235127,-0.5834532743319869,-0.7641348820179701,-0.448726792819798,0.8453262289986014,0.357817349024117,-0.8123785732313991,0.4197895801626146,-0.05365340365096927,-0.2612987169995904,0.6395704327151179,-0.11699906038120389,-0.6631993032060564,0.40573569759726524,0.9602082371711731,-0.6661724387668073,0.33026118064299226,0.2742820605635643,0.42667239950969815,0.7724195853807032,0.5920224417932332,0.029031482990831137,0.3364602904766798,0.2786864750087261,0.6089362599886954,0.021213590633124113,-0.20417181914672256,0.0967321484349668,0.19467379990965128,0.22756225848570466,0.3336753025650978,0.7807810865342617,-0.24822158738970757,-0.9278438347391784,-0.10772001650184393,0.8835352780297399,0.39176321029663086,-0.38685086416080594,-0.767323540057987,0.42031116830185056,0.9828683082014322,-0.6329320129007101,0.3616911577992141,-0.803799556568265,0.20245904475450516,0.7774748019874096,0.9247442493215203,0.7108549517579377,-0.7034703316166997,0.8729567578993738,0.5012839394621551,0.3400914063677192,0.386323609855026,-0.1756632663309574,0.8406589552760124,0.2356312465853989,0.7339406530372798,0.7621128708124161,-0.9819086636416614,0.9870125949382782,-0.1562792845070362,0.404883885756135,-0.020038072019815445,-0.9278255202807486,0.09595482656732202,0.7493506167083979,-0.20185649814084172,-0.08151318598538637,-0.5280194734223187,-0.41406669514253736,0.5347631680779159,-0.031832775101065636,-0.4257031539455056,-0.5667885332368314,-0.5127783962525427,0.6512556122615933,0.7465916038490832,-0.013492847327142954,-0.05488762492313981,-0.9238878418691456,0.6675338819622993,-0.8805756676010787,0.504547324962914,0.1773163522593677,-0.3795271757990122,-0.6677153678610921,-0.32465220615267754,-0.35910471621900797,-0.04105893708765507,-0.74151656543836,0.40200244495645165,0.02115064300596714,0.7692997590638697,0.5015270654112101,0.17782132793217897,-0.4938211259432137,-0.849979414138943,-0.7040920834988356,-0.15607634373009205,-0.1250594025477767,0.5678835487924516,0.035167546942830086,0.05911361053586006,0.8002265710383654,-0.04043823014944792,-0.08296347828581929,0.07423489866778255,-0.8305318197235465,0.09244480589404702,0.3301001968793571,-0.007546696346253157,0.6597268269397318,0.44724190467968583,0.17314402433112264,-0.8070434140972793,-0.9958437774330378,-0.9782250006683171,-0.967364295385778,0.8552094232290983,0.1955785839818418,0.33360447362065315,-0.5215448094531894,-0.7907443949952722,0.2637946866452694,-0.5243025813251734,0.22949718171730638,0.32449299469590187,0.24537110421806574,-0.541355287656188,0.19137282855808735,-0.9609925211407244,0.2364011211320758,0.1461593396961689,-0.6005574204027653,0.5745296478271484,0.18444154830649495,0.6041582059115171,-0.8404406257905066,-0.35874950233846903,-0.7775277635082603,0.36137600196525455,-0.5111698876135051,-0.3278869027271867,-0.5056066624820232,0.5648792991414666,-0.9647167334333062,0.9720352878794074,0.8956277063116431,0.007810937240719795,-0.6996497549116611,-0.27724003605544567,0.4852610221132636,0.5266635487787426,-0.2150775631889701,0.014988831710070372,-0.9511285196058452,-0.5417094500735402,-0.11266620503738523,0.7085518590174615,-0.941918799187988,-0.9568408625200391,0.29044549632817507,0.9051391016691923,0.1653890390880406,-0.2978962170891464,-0.21680323965847492,0.4773236261680722,0.9541354016400874,-0.8429840062744915,-0.7378780911676586,-0.06434625200927258,0.8794679311104119,0.022600604686886072,-0.2345156241208315,0.5802547996863723,0.756193455774337,-0.5710487309843302,-0.20451187761500478,-0.3992755557410419,-0.7185500971972942,0.10139891086146235,-0.21191632933914661,-0.6725673796609044,-0.621975707821548,0.6468346430920064,0.5008048554882407,-0.10532481176778674,-0.7987211924046278,-0.20425327075645328,0.7378875422291458,-0.44142483221367,-0.061325734946876764,0.25166202150285244,0.3240578453987837,-0.3174139936454594,0.5700796586461365,0.6503196200355887,-0.08345082495361567,-0.7735459161922336,-0.08260345412418246,0.2334884270094335,0.21025926573202014,-0.9686301713809371,0.3452352872118354,-0.25701588531956077,0.6214156844653189,0.28541745990514755,0.575526257045567,0.23072245717048645,-0.9242378957569599,0.8019179096445441,0.6876344685442746,-0.13541036611422896,0.2873890600167215,0.4911818797700107,-0.5617961320094764,0.24239649530500174,-0.24568246165290475,0.038556849118322134,-0.6498202607035637,0.6864957469515502,0.5843518739566207,0.15540014067664742,0.3653881996870041,-0.9211736330762506,-0.3051987732760608,0.9715251410380006,-0.11076780408620834,-0.5817113211378455,-0.02202060166746378,-0.9509336394257843,-0.6896743499673903,-0.08304420066997409,-0.3775345226749778,-0.3911500661633909,0.9738459484651685,0.4925695937126875,-0.0899930726736784,-0.33306941483169794,-0.31503158481791615,0.6295500304549932,-0.5129568506963551,0.4456984894350171,-0.8589595453813672,-0.87058634031564,0.9004237982444465,-0.8839809936471283,-0.5835113585926592,-0.28099000127986073,-0.010361581575125456,0.0006936779245734215,0.08782496908679605,0.08345512067899108,0.08812268823385239,0.7280546082183719,-0.6790178413502872,0.5169868795201182,-0.7363383928313851,0.5490594482980669,0.5799555303528905,0.9278504038229585,-0.44212606688961387,0.6056787273846567,-0.7731281290762126,-0.5205519637092948,-0.7493990412913263,0.7294159876182675,0.17200758354738355,0.18681971728801727,-0.2741421880200505,-0.35497556161135435,0.8838735418394208,0.42296194937080145,-0.7849713871255517,-0.032607642002403736,0.4448732892051339,-0.5680853486992419,0.00027932319790124893,-0.05878372862935066,0.38878499902784824,-0.17255692277103662,0.6721502603031695,0.9894582191482186,0.5588476145640016,-0.838679714128375,-0.945387146435678,-0.3000241620466113,-0.09400548972189426,-0.17487266706302762,-0.37988591007888317,0.5611074371263385,-0.7381497561000288,0.1678286506794393,0.12045792303979397,0.2561642029322684,0.9592201923951507,0.9643468130379915,0.7138331793248653,-0.05175829818472266,0.5705869486555457,-0.8940948070958257,0.9906404502689838,0.6629477310925722,0.23537505278363824,0.6872319728136063,-0.1508835698477924,-0.474265213124454,-0.5744137815199792,0.44956495659425855,0.5605918602086604,0.21099415142089128,-0.11046125739812851,0.973913602065295,0.4440544336102903,0.400282209739089,-0.21494479337707162,-0.11213050317019224,-0.7628614692948759,-0.1784914885647595,-0.2989099412225187,-0.8122959681786597,-0.5290753412991762,0.6199223943985999,0.28260891884565353,-0.3219729056581855,0.7275880319066346,-0.11226737452670932,0.27352622570469975,-0.5580703765153885,-0.9849716839380562,-0.49500655522570014,-0.1512094410136342,0.4297714768908918,-0.8207947737537324,-0.9576596678234637,0.16049391869455576,-0.7429793276824057,0.7175194057635963,-0.3402838739566505,0.71642677905038,-0.5024113007821143,-0.9169960510917008,0.3348502251319587,-0.5101496330462396,-0.9740254203788936,-0.9508706042543054,0.5536757330410182,0.5325145400129259,-0.580082562752068,-0.48674981528893113,-0.9690471789799631,0.27659915667027235,0.6236702287569642,-0.7858316390775144,0.045315627474337816,-0.4286051541566849,-0.7244598367251456,0.03471900848671794,-0.8595054163597524,0.11753846937790513,0.9377483213320374,0.2791159604676068,0.4946105959825218,-0.9075030353851616,0.2242285404354334,-0.3295053793117404,0.3031213777139783,0.5170077700167894,-0.5654560001567006,-0.2178157544694841,-0.16274238796904683,-0.4095143899321556,0.5537413861602545,0.5309349088929594,0.4392756293527782,0.15962969791144133,0.8229986988008022,-0.8233120189979672,-0.7939318898133934,-0.02708388213068247,0.9600710612721741,0.06581420917063951,-0.5322381192818284,0.36568924924358726,-0.8732999269850552,-0.46482575545087457,-0.08213157625868917,-0.9836230352520943,0.8597291358746588,-0.24404640030115843,0.18406527349725366,0.7558745490387082,0.35234559467062354,0.14471964538097382,-0.03635576739907265,0.11740459408611059,-0.49249544367194176,-0.7671069609932601,0.7419123467989266,-0.7658614753745496,-0.456033693626523,-0.6012226603925228,0.5379473925568163,-0.6835269872099161,0.025998853147029877,0.1251963428221643,-0.6679210495203733,0.21112233260646462,0.4155768249183893,-0.326088803820312,-0.8427350418642163,0.22963782446458936,0.46540410490706563,0.11436503333970904,-0.8335853898897767,-0.16561164380982518,-0.3413743828423321,0.37549805687740445,0.647136059589684,-0.8200672869570553,-0.9269111105240881,0.3198273931629956,-0.19332969654351473,-0.058737014420330524,0.7817170354537666,0.07337464392185211,0.01867419620975852,0.4093800247646868,-0.1866374029777944,0.1810977514833212,0.7798945810645819,-0.500803773291409,-0.7739278310909867,0.15024290094152093,-0.796917965169996,0.5216654045507312,0.2465151115320623,-0.05715306056663394,0.41874109162017703,-0.30730572948232293,0.32605478959158063,0.14682110724970698,0.8113719671964645,0.456686832010746,0.5826098257675767,0.29841688787564635,-0.7059110766276717,0.5304939015768468,-0.9401200311258435,-0.7245478690601885,-0.4238465712405741,-0.546238521579653,-0.46392594603821635,0.3522576275281608,0.11956801824271679,-0.865677370224148,0.8585715759545565,-0.41701516741886735,-0.018000226002186537,0.5965657639317214,0.43458301248028874,-0.44977494655176997,0.3203599671833217,-0.0878253891132772,0.5671045784838498,0.6881889384239912,0.4475890905596316,-0.8929308503866196,-0.9357983428053558,-0.6358953197486699,-0.28874266147613525,0.1051960694603622,-0.3839791095815599,0.533408384770155,0.6766191339120269,-0.9191440590657294,0.9028446562588215,0.1962401270866394,0.1824740143492818,-0.38620685739442706,0.8267326718196273,0.5486664585769176,-0.9683055588975549,-0.2887516296468675,0.5202556159347296,0.19113712757825851,-0.1953733917325735,0.7357184994034469,0.7136658281087875,0.7943980186246336,0.5386672238819301,0.08311842754483223,-0.6748749641701579,-0.9869372989051044,-0.49246490094810724,0.062265175860375166,-0.9292817646637559,0.8584352829493582,-0.7755860416218638,0.8301765802316368,0.5170429246500134,0.017351406626403332,-0.8454802157357335,-0.8600997645407915,0.8170485538430512,-0.3173815510235727,-0.574272199999541,0.23933624429628253,-0.547072768677026,0.7934291721321642,0.2456463361158967,-0.1529063694179058,0.49017220875248313,0.30973700899630785,-0.6849942980334163,-0.6016204711049795,-0.45273613184690475,-0.8096633395180106,0.9614595710299909,0.06480773910880089,-0.6568209417164326,0.6680953130126,-0.32778116781264544,0.2256911168806255,0.7044118284247816,0.26857425505295396,0.027637263294309378,-0.3685462176799774,0.9517102092504501,0.33799846889451146,0.32151054684072733,-0.5725067057646811,-0.08793486654758453,-0.9866602811962366,0.7603660156019032,-0.22576554492115974,0.5303568658418953,-0.21057862928137183,-0.4051121836528182,-0.17243863781914115,0.5479175322689116,0.5447237608022988,-0.12212133780121803,-0.86332041118294,0.6377742239274085,0.7147643798962235,-0.7961347480304539,-0.6581985708326101,0.08392434287816286,-0.16396188782528043,-0.8001925959251821,0.0821543731726706,-0.2814395083114505,-0.887457737699151,0.23406448680907488,0.6587463263422251,0.9942619721405208,-0.9411303089000285,0.4164925036020577,0.510501847602427,-0.11646115593612194,-0.7711851987987757,0.8221619301475585,0.8642533388920128,0.1396398893557489,-0.262071514967829,0.6314109386876225,0.7624298599548638,-0.5807867543771863,-0.6431696051731706,0.06788053875789046,0.6215268014930189,0.5434984154999256,0.32113752886652946,-0.15040456410497427,0.9255555840209126,-0.9403178729116917,-0.038497922010719776,-0.3215652881190181,-0.6251270486973226,-0.8500333470292389,-0.06081640301272273,-0.6352788251824677,-0.059325247537344694,-0.34914058493450284,-0.7498680162243545,-0.0676760240457952,-0.04374792939051986,0.6275599114596844,0.10907547874376178,-0.06313944887369871,-0.7669859062880278,0.5659352210350335,-0.8732030373066664,0.2577862227335572,0.6352137373760343,-0.1218163245357573,-0.33186409808695316,0.03143673297017813,-0.03499001823365688,-0.24679655861109495,0.36228405870497227,-0.7980720321647823,0.8035075273364782,0.470545950345695,0.5958038098178804,-0.8729949309490621,-0.8472989746369421,0.17483840277418494,-0.8621663195081055,0.8469992973841727,0.5148967504501343,-0.6613417030312121,-0.06379242148250341,0.2954628439620137,-0.04836532333865762,-0.08031282853335142,-0.25915402825921774,-0.544009089935571,0.2910307701677084,-0.7203017007559538,-0.13867675559595227,0.7378349932841957,-0.5603176881559193,-0.5397273828275502,-0.07030811673030257,-0.011179759632796049,-0.8865120830014348,0.7549530547112226,-0.49009990971535444,0.44146536476910114,0.21086513483896852,0.35499807726591825,-0.430108689237386,-0.19272308936342597,-0.303414445836097,0.4182473127730191,0.6659729005768895,0.7991199879907072,-0.41885349666699767,-0.5330997002311051,-0.7204635832458735,0.2571564638055861,0.8984625139273703,-0.9864018415100873,-0.6422670353204012,-0.7769033326767385,0.21821645833551884,0.34791449457407,0.7337583815678954,0.20231673261150718,-0.0570231000892818,-0.763547170907259,0.4054693174548447,0.8158515696413815,0.13646032195538282,0.6745264548808336,-0.7409120625816286,-0.31286028726026416,0.15767926396802068,-0.290468349121511,-0.7064539561979473,0.7035083598457277,-0.572216919157654,-0.9037732137367129,-0.5643338491208851,0.8164737168699503,-0.4967629024758935,-0.46009258553385735,-0.3773253634572029,0.3510072692297399,0.032011767849326134,0.3074948964640498,0.10586335370317101,0.3201361848041415,0.5893195737153292,-0.7697455738671124,0.6949290460906923,-0.9470321340486407,0.9069157051853836,-0.4417188079096377,-0.8816386335529387,-0.07538697263225913,0.5564747913740575,-0.1846695076674223,-0.17367107281461358,0.7225093352608383,0.26132779009640217,0.48034818517044187,0.3149161678738892,0.42165751475840807,-0.612293157260865,-0.34168996941298246,-0.7154562305659056,-0.4084448115900159,-0.09103590063750744,0.43987512961030006,-0.6680166884325445,-0.9735174062661827,0.9884519502520561,-0.00988355977460742,-0.33320197742432356,0.2509832223877311,0.614861055277288,-0.9942129030823708,0.6835793498903513,-0.9514273549430072,-0.9264435456134379,0.12239298457279801,0.5441711503081024,-0.327885833568871,0.7121609780006111,0.45949071273207664,-0.11457398207858205,0.8185863886028528,0.2125216885469854,0.7210186934098601,0.9011980225332081,0.6136259795166552,0.6208299333229661,0.8315985668450594,0.699691682588309,0.18201666651293635,-0.32278442243114114,0.9568826626054943,-0.7286439542658627,0.5322166471742094,-0.661391663365066,0.6736350706778467,-0.062206297647207975,-0.5603516455739737,0.05334088671952486,0.2708617760799825,-0.4485064302571118,-0.6082802433520555,-0.42807495780289173,0.1285278289578855,0.1308070309460163,0.1333389775827527,-0.972499268129468,-0.7962555475533009,0.17989963805302978,-0.957523672375828,-0.689001705031842,-0.983849972486496,-0.35369133623316884,-0.42386034317314625,-0.2408596840687096,0.4020156776532531,0.9597839051857591,0.018062844406813383,0.2928284606896341,-0.8702649497427046,0.7451324476860464,-0.8318481701426208,0.9403041107580066,-0.9710074681788683,-0.5229084040038288,-0.6932470006868243,0.25807795813307166,0.40865422133356333,0.9110570666380227,-0.8950149747543037,-0.8735252064652741,0.4555535241961479,0.8798096980899572,0.8309695129282773,0.6917786747217178,0.8236914267763495,0.7244666870683432,0.41422822419553995,-0.9495415892452002,0.8619951112195849,-0.8488636277616024,-0.747792893089354,0.967227928340435,0.04256477486342192,0.21145894471555948,-0.6757301911711693,0.42420126125216484,-0.07193155540153384,0.5926131480373442,-0.15695770317688584,0.27649742364883423,0.10904591949656606,0.03548473585397005,0.2502942974679172,-0.24701441824436188,-0.6984842885285616,0.9107641885057092,0.9814032800495625,-0.9507801337167621,0.661040214356035,-0.7189134028740227,-0.8268925887532532,0.5276585132814944,-0.8711793664842844,0.17076689191162586,-0.8803621749393642,0.9397826977074146,-0.8634808091446757,-0.42857736302539706,0.21347673190757632,-0.4081793096847832,0.559301882982254,0.9353725016117096,0.5885996865108609,-0.495917946100235,0.6745196105912328,-0.7021592073142529,-0.9377642977051437,-0.6621381570585072,-0.5688637741841376,0.6626118835993111,-0.07702397089451551,0.36567189591005445,0.096788689494133,-0.13610657071694732,0.8893571156077087,-0.4987665917724371,-0.6000554384663701,-0.38882454251870513,-0.46387785812839866,0.734565150924027,0.8820396051742136,-0.7170945084653795,0.20171080762520432,-0.8536466434597969,0.5144170722924173,-0.7668760865926743,-0.764961029868573,-0.8917668545618653,-0.8414898556657135,0.7232882967218757,-0.2994809886440635,0.8553271065466106,-0.06336353672668338,0.91047237906605,0.9536360329948366,0.6000561928376555,0.7702497439458966,-0.7783361738547683,0.19840486254543066,-0.7430923637002707,-0.8146963398903608,0.6187789370305836,0.627363437321037,-0.8008773694746196,-0.5816920283250511,0.5013972716405988,-0.92009337246418,0.38033052114769816,0.10406623454764485,0.5524966330267489,-0.22720411932095885,-0.05774400057271123,0.2370285177603364,0.34258942026644945,0.8192553478293121,0.016122868284583092,0.7824899591505527,-0.8458535131067038,-0.6143277315422893,-0.37025220692157745,-0.1987771550193429,0.35502295987680554,-0.08824063651263714,0.8283686945214868,0.8845032341778278,-0.6477949670515954,-0.8433049572631717,0.8747297418303788,-0.45619095815345645,0.39616214763373137,-0.9580981638282537,-0.43252604734152555,0.5218627881258726,-0.9540135161951184,0.4650391764007509,-0.6595797324553132,-0.5380620644427836,-0.3961539096198976,-0.44971119798719883,0.17858163872733712,-0.2969669126905501,-0.5161205898039043,-0.6697385106235743,0.7836819472722709,-0.7223263471387327,-0.3539658668451011,-0.6928062858060002,-0.08196658780798316,-0.9492486696690321,-0.2387270200997591,0.9522186298854649,-0.6918532270938158,0.9910275260917842,0.8484267727471888,0.2930540726520121,0.4291552151553333,0.5014375038444996,0.7617529951967299,-0.7129210098646581,0.7627136348746717,-0.47001837752759457,-0.5028409915976226,-0.2818276137113571,-0.6713319984264672,0.1235149153508246,-0.8441816587001085,0.6376734711229801,-0.3466225592419505,0.5508774071931839,-0.32380454894155264,0.1778820464387536,0.9462349540553987,0.11498738313093781,0.4153181668370962,0.8372828252613544,0.672582823317498,-0.16430280404165387,0.7082203710451722,0.32503520837053657,0.6507895840331912,0.14738437812775373,-0.9376346874050796,-0.9324897904880345,-0.40307876467704773,0.4987939866259694,0.693136325571686,0.8250794019550085,0.0832683490589261,-0.9474554131738842,-0.5596237424761057,0.3987726070918143,0.1230118116363883,-0.25590036949142814,-0.9273319030180573,-0.9106395575217903,-0.44629760878160596,0.4802480349317193,-0.4812156748957932,0.8185087749734521,0.6981657836586237,0.5329375909641385,-0.4094291226938367,-0.6966608506627381,0.5552469971589744,0.9834053223021328,0.935886591207236,-0.05338934902101755,0.40961821656674147,-0.8252676799893379,0.5131196076981723,-0.6597119718790054,0.5232727229595184,0.3540329849347472,-0.740826141089201,-0.1334931869059801,-0.5828487765975296,-0.4772796370089054,-0.18457025568932295,0.7768786107189953,0.34624442178756,0.39290738897398114,-0.011475173756480217,0.48478412302210927,0.38930737506598234,0.7955621471628547,-0.7479033865965903,-0.5691023906692863,-0.5058569926768541,-0.2624467480927706,-0.06526062078773975,0.9643105436116457,-0.7797755897045135,0.4088504295796156,-0.761620809789747,-0.3336320356465876,-0.8559848475269973,-0.7535303039476275,-0.3595880991779268,-0.29845865489915013,0.8645487758331001,0.6637031733989716,-0.4694381281733513,-0.227732727304101,-0.8565272535197437,-0.5242424150928855,-0.30767063749954104,0.5124791748821735,0.7355261696502566,0.825043408665806,0.607533807400614,-0.30647136410698295,0.9051426211372018,0.4470001864247024,0.3408314357511699,-0.6616523349657655,-0.8075103862211108,-0.28126936545595527,0.4859385280869901,0.7624639421701431,-0.6800416316837072,-0.6922251270152628,-0.21491813845932484,0.6289894785732031,-0.17527248710393906,0.33518540812656283,0.20838250685483217,-0.8871860061772168,0.9771103137172759,0.7852829052135348,-0.6230384823866189,0.3471254021860659,0.29188148444518447,0.6814599302597344,0.4187457477673888,0.24885651655495167,0.3877608082257211,0.21245010057464242,-0.6543016936630011,0.18884124467149377,-0.5032252059318125,-0.8269049562513828,0.5194867607206106,0.4375619157217443,0.15240384824573994,0.12566823279485106,0.12440585531294346,-0.004830218851566315,-0.7554126186296344,-0.17095805890858173,0.12594323186203837,0.120668756775558,-0.23411607602611184,0.8250759816728532,0.008422468788921833,0.0009729745797812939,0.585242616944015,-0.8681194051168859,0.46862241718918085,0.6316946004517376,-0.2613055491819978,-0.06679959734901786,0.12081968691200018,-0.7123138727620244,0.5355942025780678,-0.7447005910798907,-0.9854004732333124,0.9002818097360432,0.9632493136450648,0.24837929336354136,-0.2326445421203971,-0.5518686082214117,-0.36454420583322644,-0.16091956105083227,0.242046722676605,0.17520978627726436,-0.5431691645644605,0.898647709749639,0.12670386722311378,-0.18997649010270834,-0.49620521906763315,0.8903735582716763,0.9847725904546678,-0.40589179331436753,0.8013585624285042,-0.7453757701441646,0.15247998293489218,0.7859986149705946,0.602070152759552,0.6213731723837554,-0.8601128542795777,-0.16358135966584086,0.5589332072995603,0.9431495242752135,-0.3742019673809409,-0.7510937722399831,-0.9525887011550367,-0.7290411996655166,-0.12474551890045404,-0.24500267580151558,0.7019201791845262,-0.8987397002056241,0.4521723985671997,0.21843425603583455,-0.21501937368884683,-0.4241433525457978,0.6637303060851991,-0.09410888003185391,0.5317936348728836,0.17274285946041346,-0.1401925478130579,-0.5633164709433913,0.6138392705470324,0.038284660782665014,0.4945084457285702,0.11793783633038402,-0.6189805460162461,-0.8484618114307523,-0.07202116772532463,-0.277926926035434,-0.6455369764007628,0.689275688957423,-0.27328789979219437,-0.7795538078062236,-0.007201713975518942,-0.28729641856625676,0.02551501477137208,-0.8988133291713893,0.3792578373104334,-0.8335063965059817,-0.044655460864305496,-0.709158827085048,-0.715754103846848,-0.7489457922056317,-0.33473509969189763,0.5483291554264724,0.2888888125307858,0.16746993362903595,0.002653083298355341,0.28230503015220165,0.25772851426154375,0.5004016901366413,0.39070795616135,-0.19951144652441144,-0.3807992460206151,-0.23586479295045137,-0.39959429716691375,-0.8504809006117284,-0.7412877161987126,0.3766724318265915,0.8591585839167237,0.09984322311356664,0.012600542046129704,0.9029178647324443,-0.3248877562582493,-0.17628420051187277,-0.7904495508410037,-0.7066965834237635,-0.9444176177494228,0.5461331573314965,0.5737189007923007,0.5870781801640987,-0.5166495819576085,-0.4110548021271825,0.7418937901966274,0.7484484105370939,0.16773998830467463,-0.04831710271537304,-0.9200047645717859,-0.054239414632320404,0.1658986397087574,-0.3408130779862404,-0.9768509939312935,0.7397874835878611,0.712033367715776,-0.24200512235984206,-0.689797795843333,-0.7806137041188776,0.19751720828935504,-0.5561546627432108,-0.65696781873703,0.2233658623881638,-0.6922259409911931,0.36325069423764944,0.5867254468612373,0.4620494106784463,-0.374205966014415,-0.6815118570812047,-0.8354474660009146,0.2822641860693693,0.14100768836215138,-0.7034030086360872,-0.08005668455734849,-0.26066266652196646,-0.31733161490410566,-0.8707673819735646,-0.7242835033684969,0.3362175519578159,0.058612202759832144,-0.6561788972467184,0.0857399869710207,-0.40445713186636567,-0.6160087664611638,-0.10222367942333221,0.300142684020102,-0.07293512439355254,-0.5208805138245225,-0.34314023749902844,-0.7866060491651297,0.23482791846618056,-0.0736100934445858,-0.8030807776376605,0.6610352345742285,-0.3766148164868355,-0.9423707844689488,-0.531623950228095,0.7986974040977657,-0.04890437889844179,-0.1251287772320211,0.3358143041841686,-0.009435105603188276,0.054233232978731394,-0.28055943502113223,0.725565065164119,0.29536173678934574,0.5012360163964331,0.6536229392513633,0.6495165736414492,0.04180756350979209,0.1443447396159172,0.7426998079754412,0.9672232391312718,0.7398711238056421,-0.4938788372091949,-0.7557885069400072,-0.3337523676455021,-0.7489256151020527,-0.7982582086697221,0.30269517097622156,0.6387624056078494,0.7237546402029693,-0.830997668672353,-0.12044590152800083,0.8112356592901051,0.7297471635974944,-0.9558045417070389,0.9096885183826089,0.5536174168810248,-0.26897768257185817,-0.7773449849337339,0.3867792650125921,0.9540243702940643,-0.44742236798629165,-0.06367146875709295,0.8607957442291081,-0.275357308331877,0.511840638704598,-0.2795238848775625,0.3545668376609683,0.7315457686781883,-0.5713352505117655,0.8261367357335985,-0.2404485666193068,0.10095690470188856,0.14155667088925838,-0.35446569602936506,0.8971801945008337,0.33051140047609806,-0.07199370441958308,0.5462358654476702,0.9753173347562551,-0.055090700276196,-0.5532922055572271,0.33982926374301314,0.03285950096324086,0.3358939727768302,-0.953752146102488,-0.6589216310530901,-0.513582615647465,0.6459341938607395,-0.6330481795594096,0.3094043773598969,-0.6189873889088631,-0.908694984856993,-0.01110161142423749,0.0826866920106113,-0.959024041891098,0.7724884222261608,-0.15712288254871964,-0.6048066481016576,-0.514329681172967,-0.16919808136299253,-0.163868538569659,0.7345265583135188,-0.6290010511875153,-0.4865984357893467,0.7172321500256658,-0.8255356289446354,-0.647796084638685,-0.3799016741104424,0.4725047228857875,-0.5929798563010991,-0.9613440595567226,-0.31138693913817406,-0.5010907934047282,-0.7956330394372344,-0.9458593754097819,-0.49627949483692646,0.2994935531169176,-0.6271487320773304,-0.3706284807994962,0.45940271066501737,0.9142534509301186,0.6981821344234049,-0.39917019102722406,-0.33356740651652217,0.09756842534989119,0.5273354556411505,-0.9216055744327605,0.7883893214166164,-0.6631803289055824,0.9557371255941689,0.7427036669105291,-0.8678115871734917,-0.3396803354844451,-0.7370844963006675,0.5375048723071814,-0.7851319233886898,-0.8981919530779123,0.6203005472198129,-0.7084636716172099,-0.12343291472643614,0.45471064653247595,0.7902543805539608,0.7221677470952272,-0.8486778428778052,-0.006797987502068281,-0.576794502325356,-0.9082301408052444,-0.4651376153342426,-0.6643739235587418,-0.05623378278687596,-0.00015158019959926605,0.0098163359798491,0.3980286894366145,0.7095147888176143,-0.35816996032372117,-0.10799002880230546,0.3568514143116772,0.13686568150296807,0.11000734008848667,-0.7188767143525183,0.6299198502674699,0.18619342613965273,0.9592528222128749,-0.26734417816624045,-0.26899344800040126,0.33689349703490734,0.8382632764987648,-0.5163250467739999,-0.8376797917298973,0.26237049233168364,0.09598297160118818,0.047085294499993324,-0.1991147785447538,0.051912117283791304,0.8134420113638043,0.64395572245121,0.5301701799035072,-0.0128477169200778,-0.3896925817243755,-0.042819976806640625,-0.8023887164890766,0.21559654315933585,0.6353276534937322,-0.6224967748858035,0.5719427294097841,0.5125659196637571,0.4057509326376021,-0.7765037585049868,-0.449081648606807,0.9613391649909317,-0.58248200872913,-0.4039081302471459,0.9548576050437987,-0.5659355586394668,0.7977994112297893,0.5702892444096506,-0.8680418217554688,0.9824225604534149,0.6634383662603796,0.6856069606728852,0.9779735910706222,-0.5421372465789318,0.47971754102036357,-0.46035780292004347,0.5329570029862225,0.768050049431622,0.1426738421432674,-0.1391873457469046,0.7087803496979177,0.33155013201758265,0.5641378397122025,-0.39670289075002074,0.2524342187680304,0.2517344066873193,0.5116110760718584,-0.7324754581786692,0.1917090741917491,-0.5269926800392568,-0.4375224495306611,-0.15723914373666048,0.4759645387530327,0.007917129900306463,0.23291443521156907,0.7785042827017605,-0.6230145860463381,0.5378186171874404,0.458319203928113,0.626682783011347,0.7272952334024012,0.24558220617473125,-0.36987741524353623,-0.7015119390562177,-0.8057387224398553,0.7746306266635656,0.001555400900542736,0.22450317908078432,-0.33847058238461614,0.128685612231493,0.2159662744961679,0.361423481721431,-0.7305655661039054,-0.5761372717097402,0.31776366429403424,0.8930988018400967,-0.4355398849584162,-0.12134497193619609,-0.4117098883725703,-0.03554078657180071,0.36636234587058425,0.7888897587545216,-0.611487178131938,0.46380004240199924,-0.656865103635937,-0.4282510643824935,-0.42269245721399784,-0.8053278271108866,0.8534644693136215,-0.6822715336456895,0.1946674669161439,-0.02545710513368249,-0.890386356972158,-0.6761462152935565,0.4293561577796936,0.13986242283135653,0.43037431593984365,0.7806804031133652,0.971446571405977,-0.58112942148,-0.9219196792691946,-0.9070202689617872,-0.09036666108295321,-0.6681508012115955,-0.6960693276487291,-0.4088600701652467,-0.015361540950834751,-0.821525676175952,0.11502957344055176,0.1502790478989482,-0.365215465426445,0.7884616293013096,0.8184378743171692,-0.9125494272448123,0.000705755315721035,-0.8740207105875015,0.982097779866308,0.6296118288300931,0.3663086616434157,-0.7000215980224311,0.5915975240059197,-0.7409510188736022,0.5930263088084757,0.6394850285723805,-0.6381752849556506,-0.3910207017324865,0.40074841771274805,0.017006405163556337,0.32201395416632295,-0.15375787392258644,0.11638271249830723,0.23121130373328924,-0.43693150859326124,-0.5446816897019744,0.7115757456049323,0.6449593412689865,0.21987499296665192,0.8531626337207854,0.12689309939742088,0.6601889673620462,-0.6780231432057917,0.9030285836197436,0.5707883569411933,-0.5244669057428837,0.22419648058712482,0.9360131747089326,0.5497343107126653,0.9540150221437216,0.8746072221547365,0.1177067537792027,0.40502737555652857,-0.03894485393539071,0.8877781485207379,-0.21642576856538653,-0.6814259537495673,0.8716329452581704,0.9626150401309133,0.02571417298167944,-0.11665177950635552,-0.8921973798424006,-0.6754457945935428,-0.3847669209353626,0.12402170524001122,-0.4082437790930271,-0.6782053648494184,-0.4059608727693558,-0.8818646366707981,-0.9590187408030033,0.1643485319800675,0.5764315519481897,-0.5234698955900967,-0.8735472848638892,0.5580533621832728,-0.17587645491585135,-0.2636304092593491,0.4586996198631823,0.22264394722878933,-0.33522503171116114,-0.5683721415698528,-0.004044847562909126,-0.6598997334949672,-0.7262961361557245,-0.48924811324104667,-0.7536489986814559,0.3555960743688047,0.5150072877295315,0.898032701574266,-0.9648267361335456,-0.8195718727074564,0.34195849066600204,-0.08586393855512142,0.03304616408422589,0.34547999035567045,0.41823842423036695,0.5216566254384816,0.4439900815486908,0.5846610832959414,0.28957867808640003,-0.17042502388358116,-0.7529646996408701,0.13634816138073802,0.3248350042849779,0.8629502695985138,0.3597519309259951,0.5822587688453496,-0.5734730418771505,0.9653643537312746,-0.5433346116915345,0.45449476642534137,-0.206943076569587,0.7372774067334831,0.9538565445691347,-0.9112429926171899,-0.8210466140881181,-0.16223108302801847,-0.47488198755308986,-0.5611148294992745,-0.7283934582956135,-0.9655106631107628,-0.604456840083003,-0.6851413883268833,0.3659174330532551,-0.05686182528734207,0.5912883658893406,-0.39035709062591195,0.09140973631292582,-0.9965859102085233,-0.5000581964850426,-0.9778502443805337,-0.060000473633408546,0.5947450823150575,0.07478979369625449,-0.3163890275172889,-0.14734174543991685,0.12792978808283806,0.7226517526432872,-0.8330054529942572,-0.16558740381151438,-0.5715654348023236,0.6142082330770791,-0.2622054792009294,0.41772050922736526,-0.3782134959474206,-0.170198330655694,0.35536336386576295,-0.4021470192819834,-0.23610717616975307,0.8440173561684787,-0.1539240232668817,-0.5750851300545037,0.596296941395849,0.18487104680389166,0.9271697322838008,-0.9452609210275114,0.6980810360983014,0.4274003114551306,-0.37554429611191154,0.22844415344297886,-0.3744959752075374,0.2976994561031461,-0.8354115625843406,0.08414914086461067,-0.416156517341733,0.3502784026786685,-0.6497563989832997,-0.9908444909378886,-0.9293011059053242,-0.4989064955152571,-0.09698212752118707,-0.8180156173184514,-0.6140786120668054,0.19225554214790463,0.02019428415223956,-0.25285884039476514,0.9600570164620876,0.21951768454164267,0.4465422108769417,-0.046350904274731874,0.7993988897651434,-0.06652809586375952,0.41517518600448966,0.2153143873438239,0.8052193983457983,0.6409756299108267,0.029872802551835775,0.8757234588265419,-0.1756503782235086,-0.7307761549018323,0.5807211212813854,-0.47524858033284545,0.4670640332624316,-0.5223485715687275,0.7933373684063554,0.37551224743947387,-0.41216312861070037,0.48692899057641625,0.7807210865430534,0.4784791236743331,-0.6660823584534228,0.3009620625525713,-0.12046078918501735,0.24274392565712333,0.4418095787987113,0.7205462264828384,-0.8432192681357265,-0.19012143462896347,-0.996712111402303,0.5492836884222925,-0.13672153558582067,0.04042060300707817,0.7142745917662978,0.7638517105951905,-0.07186248432844877,-0.02580462023615837,-0.7960178358480334,0.47394350729882717,0.3875694111920893,-0.32570250425487757,0.24952535051852465,-0.5700015281327069,0.5226294538006186,-0.5742656765505672,-0.2530580093152821,0.9957053661346436,-0.5918678613379598,-0.2051292103715241,0.095800647046417,-0.3832672582939267,-0.6723945760168135,-0.6847889036871493,0.24325376050546765,0.9188360967673361,0.4991362662985921,0.34741385327652097,-0.0932689537294209,0.21276066778227687,0.11383199272677302,-0.20712512219324708,-0.31244212528690696,0.6337291393429041,0.17779492354020476,-0.9325303584337234,-0.9022151217795908,-0.7006795592606068,-0.4876882773824036,0.7035606526769698,0.851038999389857,-0.05666008358821273,0.7549323257990181,-0.36047326447442174,0.10059237200766802,-0.960851221345365,-0.8571355859749019,0.2608185848221183,-0.9691376402042806,0.9569999878294766,-0.7897673575207591,-0.24927087407559156,-0.050619854126125574,-0.9479425777681172,-0.568358778487891,-0.9339887052774429,-0.13069219514727592,0.5371077340096235,-0.9292435748502612,-0.042937909718602896,-0.11280322261154652,-0.4871820146217942,-0.890874580014497,-0.4620386273600161,0.06996617652475834,0.6402812278829515,0.8285550717264414,0.25188828678801656,0.6270659151487052,0.7759219016879797,-0.8753696801140904,-0.24816880654543638,-0.1838362286798656,-0.7285288185812533,0.7492617648094893,-0.586752952542156,0.09025809913873672,0.15118047129362822,-0.3037841906771064,-0.8340229480527341,-0.039517097640782595,0.9025088013149798,0.5994360875338316,0.33616676181554794,0.4084718842059374,0.6322959940880537,0.2674988303333521,-0.6307207029312849,-0.707227605395019,-0.8973452732898295,0.11467226361855865,-0.0543591040186584,0.33402304258197546,0.5242222272790968,0.7844601715914905,-0.10506895696744323,-0.7936051874421537,0.9916204595938325,0.9592485702596605,0.8150459136813879,-0.660564280115068,0.6089488388970494,0.4775561382994056,0.38781613484025,-0.6612732629291713,-0.328194759786129,0.6295623541809618,0.06698950286954641,0.9762792992405593,0.46212646132335067,0.3912040526047349,-0.7651268909685314,0.7817520038224757,0.14347579376772046,0.7566151693463326,0.3671199553646147,0.5464355400763452,-0.08067190367728472,0.22943398542702198,0.0037921760231256485,-0.2739629475399852,0.5376478023827076,0.6326671708375216,0.817416516598314,-0.019231175538152456,-0.7153851091861725,0.2924771262332797,0.7199268070980906,-0.29143544379621744,0.9484261707402766,-0.0502029974013567,-0.8433779636397958,0.731534032151103,-0.9393198252655566,-0.7008338156156242,0.9813287113793194,-0.2503286488354206,-0.4733480168506503,-0.6853097071871161,-0.33554001711308956,-0.8188208090141416,0.16433774353936315,-0.21445435797795653,0.38703649723902345,0.06500972528010607,0.31865287153050303,-0.06173470290377736,0.9637980042025447,0.6623271177522838,0.013875813223421574,-0.935533361043781,-0.34902169881388545,0.5356374108232558,-0.05428308341652155,0.8119124160148203,-0.030478270258754492,-0.4213846232742071,0.6542062270455062,0.06685830047354102,-0.37181702069938183,-0.07707931008189917,0.35553281009197235,0.6235294113866985,-0.9983091917820275,-0.3419891921803355,-0.010744956787675619,0.1264047957956791,-0.35604334622621536,0.006788365077227354,-0.3133860630914569,-0.16275156429037452,-0.2191875008866191,-0.31720993388444185,0.7648837896995246,0.8898344687186182,0.973472198471427,-0.44574299873784184,0.878186768386513,0.3029746124520898,0.5080642071552575,-0.2783694821409881,-0.6544273155741394,0.5984922549687326,0.7067594877444208,-0.8476487728767097,-0.581381140742451,-0.24682637955993414,-0.483661983627826,0.5302066658623517,0.36705609038472176,0.5574097367934883,0.3579944111406803,0.45553727401420474,0.7953796470537782,-0.42409277660772204,-0.9353226809762418,0.5285313217900693,0.6575876888819039,-0.15344185242429376,0.9246310172602534,0.21451886277645826,0.502777908463031,-0.27641937462612987,0.06427537323907018,-0.7475015809759498,0.06252390844747424,0.5353487562388182,-0.51524424739182,0.16388190956786275,-0.5331766665913165,0.9326610313728452,0.9645123388618231,-0.37226003780961037,0.9302951227873564,0.6755729364231229,0.6408767746761441,-0.43735121889039874,0.868569518905133,0.7340590474195778,-0.26223394460976124,0.08614128176122904,0.8380049052648246,0.649383194744587,0.7282335665076971,-0.7455620225518942,-0.6830582139082253,-0.6476232991553843,0.30029610497877,-0.277109005022794,0.8175835320726037,0.4672861201688647,-0.8054697159677744,-0.8251123940572143,-0.6527632256038487,0.37536970479413867,-0.3125823107548058,-0.6615697839297354,0.8216322506777942,-0.9762304285541177,-0.3238046793267131,-0.800000099465251,-0.4532229034230113,-0.38144571194425225,-0.5833957330323756,-0.09309955639764667,-0.34444183902814984,-0.1366762244142592,0.38901605643332005,-0.16057671420276165,0.8613007273525,0.6508496985770762,-0.9009743737988174,-0.587424254976213,-0.4225383666343987,0.7743782075121999,0.20680917333811522,-0.5804311875253916,-0.2126164478249848,-0.9075627797283232,-0.758451288100332,0.9979256079532206,-0.6089488258585334,0.40361163206398487,-0.27966346964240074,0.3886861130595207,0.9064533566124737,0.8023472367785871,-0.8785710162483156,-0.41996028320863843,-0.8899788367561996,-0.3486694493331015,0.569452025461942,0.8973377672955394,-0.20788442762568593,0.26927667390555143,-0.04490345157682896,0.9311125478707254,0.22767815785482526,-0.5804147804155946,-0.38775083189830184,0.9495040657930076,0.8358973651193082,0.9763012179173529,-0.5872620395384729,0.24653717037290335,0.07153833424672484,0.5697871227748692,-0.6803639526478946,-0.5975206820294261,-0.031321095302700996,-0.34546112874522805,-0.7995096249505877,0.9011055612936616,0.7921552062034607,0.5333578968420625,-0.056855249684304,0.738210569601506,0.14462985191494226,0.6251042042858899,-0.11315517080947757,0.04983128188177943,-0.5509256310760975,-0.46538819232955575,0.7885114327073097,0.6736518698744476,0.6096875821240246,-0.8823307482525706,-0.9489693185314536,0.005716697778552771,-0.4244119552895427,-0.47043445566669106,0.03730406844988465,-0.8038252922706306,-0.8313711751252413,0.15366201847791672,0.10840986901894212,0.24803933640941978,0.16065696347504854,-0.6879859380424023,-0.9489545859396458,-0.2578584048897028,-0.41780512873083353,0.32573083182796836,-0.7277798070572317,-0.6778299226425588,0.45841803727671504,-0.22506957780569792,-0.9210643749684095,-0.5039371396414936,-0.10843597399070859,0.33425523806363344,-0.9205558774992824,0.4947113171219826,0.29481970285996795,0.9379293229430914,0.28224995639175177,0.2798725082539022,0.02316960645839572,0.3671460482291877,0.7583348443731666,0.8487332090735435,0.29114708164706826,-0.19144830759614706,0.7954638269729912,-0.05765746021643281,0.7116908472962677,0.8996221194975078,-0.48882439034059644,-0.27705508191138506,0.6980185816064477,0.26483736699447036,0.8640425908379257,-0.5032207197509706,0.00792567990720272,-0.5935671064071357,-0.15356273809447885,0.3180505339987576,0.07118360605090857,-0.13169247843325138,-0.46507060062140226,-0.4147262033075094,-0.631042602006346,0.16435651667416096,0.2287433985620737,0.10898045310750604,0.03179038967937231,-0.44182462710887194,-0.3292350620031357,0.5839694286696613,-0.24404955236241221,0.07856807624921203,0.4094776972196996,-0.47346224170178175,-0.8840212933719158,0.7217082921415567,0.7361891800537705,-0.2907377518713474,-0.7883760835975409,0.05075054196640849,-0.9731969507411122,0.6286693122237921,-0.534709601663053,0.582001359667629,0.8949007377959788,-0.6740423385053873,-0.5870108539238572,-0.8763703466393054,-0.38889838149771094,0.9799190298654139,-0.47544559882953763,0.16038945456966758,0.392411629203707,-0.4155251351185143,-0.8316306718625128,-0.5809524608775973,0.03989729983732104,0.31848657689988613,-0.9178923442959785,-0.11219052271917462,-0.35729818465188146,-0.621198593173176,-0.638607990462333,0.7266822033561766,0.2740432219579816,0.04524208419024944,0.39474362693727016,0.19593639764934778,0.6145411711186171,-0.38064584974199533,-0.3056292152032256,-0.7815016466192901,-0.19516508281230927,-0.9326225537806749,0.534793499391526,0.4071725648827851,0.034710575826466084,-0.81989302393049,0.8823223118670285,-0.45134121226146817,0.5337133118882775,-0.5019083023071289,-0.9784293789416552,-0.3924913494847715,-0.4283636431209743,0.30377209559082985,0.4134281915612519,-0.9371206215582788,0.15938497334718704,0.285105234477669,-0.9522930770181119,-0.9826439255848527,0.5161031829193234,0.653110459446907,-0.21213564975187182,-0.12592259561643004,-0.7499750792048872,-0.03317569103091955,0.2728916620835662,-0.34675832744687796,0.2139902268536389,0.7348882481455803,0.8649351913481951,0.700858099386096,0.6125744669698179,-0.018568093422800303,0.6620285348035395,0.9460060377605259,-0.22190972790122032,0.7609840710647404,0.24901732569560409,0.8198873978108168,-0.7459419555962086,0.759384601842612,0.41271858662366867,0.2808116115629673,-0.7104987148195505,0.47414910048246384,0.2512632645666599,0.9295571269467473,0.6368280570022762,0.5785325574688613,0.32324661081656814,-0.5870498809963465,-0.4482284910045564,-0.8968324861489236,0.4016319941729307,-0.8664523111656308,-0.5727683319710195,-0.7558079538866878,0.5159403937868774,-0.14462308445945382,0.6149025848135352,-0.7852163966745138,0.5376897980459034,0.9432835374027491,-0.6955661377869546,0.6187022239901125,0.11161837028339505,-0.322437881026417,-0.04610556783154607,-0.7830266207456589,0.2455621319822967,0.7589848483912647,0.8172511528246105,0.8715373026207089,-0.3993429709225893,0.41033864533528686,0.8570470688864589,0.31647404097020626,0.09399373875930905,0.07758033880963922,0.25768889114260674,-0.15465474594384432,-0.37229553796350956,-0.85624821158126,0.7021663677878678,0.9660351411439478,0.8804269717074931,-0.8704831693321466,-0.7535512335598469,-0.5644718231633306,-0.24974927119910717,-0.7670733719132841,-0.9614884611219168,-0.18605393869802356,0.5264457762241364,0.5172777865082026,-0.11583022214472294,0.9424790376797318,-0.9582058717496693,-0.6939263748936355,-0.6451315847225487,0.518554350361228,0.6182261686772108,0.2939366255886853,0.34869385696947575,-0.1336563932709396,0.003110332880169153,0.8277913690544665,0.9646644229069352,-0.8239070707932115,0.21840880624949932,0.723502756562084,0.6885386742651463,-0.19554568640887737,0.3446007538586855,0.7346463934518397,0.2443699622526765,0.13707295106723905,0.5337094501592219,-0.05858519347384572,-0.1768348510377109,-0.42930266400799155,0.49098188150674105,0.8085040864534676,0.2570588681846857,0.8494763690978289,0.02054272312670946,-0.06517884135246277,-0.5006430731154978,-0.9260892705060542,-0.622196230571717,-0.5436178697273135,0.2135513019748032,-0.9234996060840786,-0.9091790565289557,-0.11877981061115861,0.6736457925289869,-0.9726903233677149,-0.35488233575597405,0.7393070822581649,-0.08693306753411889,0.4101557554677129,-0.37740906327962875,0.5952226580120623,0.6857830407097936,0.12223523436114192,-0.966670417226851,0.7298327311873436,-0.793352946639061,0.6949244816787541,-0.14176182029768825,0.35875986935570836,0.6092329770326614,0.5917551573365927,-0.6183517700992525,-0.6055882154032588,0.9634721823967993,0.6213496774435043,0.7623384399339557,0.43015944259241223,0.5766544626094401,0.7292288052849472,-0.6858605779707432,-0.46740293223410845,0.7072818395681679,-0.6569840181618929,-0.18221246544271708,0.7364267273806036,-0.9621946127153933,-0.6797840963117778,0.6211575036868453,-0.5565089536830783,-0.8653299515135586,-0.943271694239229,-0.5617393064312637,-0.9017703598365188,-0.11288829753175378,0.8386607430875301,0.42766644107177854,0.6003127442672849,0.7210468994453549,-0.5300828828476369,-0.5452667018398643,-0.5641271425411105,-0.8627781248651445,0.20537480572238564,-0.779426050838083,0.7331103277392685,-0.372602132614702,-0.6594439232721925,0.1557109970599413,0.9681614302098751,0.1866095056757331,0.647346627432853,-0.11426617251709104,0.47575954208150506,0.7594385384581983,-0.3914716076105833,0.8024191656149924,0.25609604455530643,-0.03201567893847823,-0.7291395659558475,0.26319758081808686,-0.10991273308172822,0.4301847326569259,0.6155329770408571,-0.9335404136218131,0.9502197676338255,0.7040984593331814,0.12497399747371674,0.47624853625893593,0.4424670790322125,0.5146199907176197,0.7429136126302183,0.37497171806171536,0.6856377669610083,-0.6674373429268599,-0.1669666115194559,-0.3665138464421034,-0.49669178016483784,0.5008998666889966,0.7052782876417041,0.7268537348136306,0.663582636974752,0.9843943105079234,0.21267924457788467,0.021741111297160387,-0.2684838748537004,-0.6623067199252546,-0.3426156463101506,0.5224666902795434,-0.37740637967363,0.09255625633522868,-0.609069739934057,0.048611314967274666,0.3852173206396401,-0.7118828068487346,0.772377039771527,-0.9419608558528125,0.8528283648192883,0.38299064990133047,-0.21094595035538077,0.4597101076506078,-0.41476910887286067,-0.8662129594013095,0.909407505299896,-0.883532346226275,-0.6621569572016597,0.4710073582828045,-0.777517328504473,-0.3329217806458473,-0.6435887343250215,-0.4271047245711088,-0.21941752452403307,0.4059997550211847,0.4842737065628171,-0.39011920196935534,-0.13423231104388833,-0.6300189029425383,-0.18446708330884576,0.9087324379943311,0.2944725244306028,0.6352640907280147,0.8648195224814117,-0.9158106632530689,0.33070604503154755,0.5878265053033829,0.057929717004299164,-0.2339684497565031,0.5664814542979002,0.5138536947779357,-0.012474270071834326,-0.6622431571595371,-0.8248525732196867,-0.3369522988796234,-0.6823122082278132,0.9838109659031034,-0.6312198196537793,0.3302097674459219,-0.32533901976421475,-0.4273116593249142,-0.9822507579810917,0.1702528689056635,0.6859877854585648,0.04510629642754793,-0.29734860686585307,0.20196357322856784,-0.9626781702972949,0.4915458597242832,0.5462215393781662,0.7924351640976965,-0.45729992166161537,0.8870576890185475,0.15088499849662185,-0.6244901367463171,-0.6165788597427309,0.15731614688411355,-0.9547676420770586,-0.6348771727643907,0.65024783462286,0.47541314037516713,-0.8439783710055053,-0.9491256270557642,-0.8700003465637565,0.6673361216671765,-0.9080638126470149,0.4102700133807957,0.25349781615659595,0.1451331707648933,-0.30772267654538155,-0.4024490425363183,0.6711648218333721,-0.28981799399480224,-0.5408167070709169,0.36596129182726145,0.9308500634506345,-0.18004983430728316,-0.19369136355817318,-0.4896210879087448,0.1312127080745995,-0.25120593002066016,-0.5451680854894221,-0.7744942246936262,-0.524189552757889,0.2559993155300617,-0.7029516636393964,0.15010750060901046,0.7111500804312527,0.7184179127216339,0.35108076501637697,0.1463046078570187,0.6808266406878829,-0.4628201858140528,0.6872811689972878,-0.9133739303797483,0.0841427007690072,-0.2591273123398423,-0.12532335286960006,0.8197867646813393,-0.2552908444777131,0.27662144554778934,-0.7506022257730365,0.11670036055147648,-0.6400284110568464,-0.22405730932950974,0.6571259871125221,-0.21670637605711818,0.7023121435195208,0.6657413598150015,-0.157623378559947,-0.23652547039091587,0.606362915597856,-0.18229381181299686,0.9927811995148659,-0.33491265773773193,0.9898387449793518,0.12212066724896431,-0.18877828307449818,0.9413985121063888,-0.34254441782832146,-0.46610867278650403,-0.9914820496924222,0.8987815300934017,-0.6659262464381754,-0.2596138254739344,-0.9371888739988208,0.9560898910276592,-0.6891077100299299,-0.1219738032668829,-0.9146313308738172,0.38506888458505273,-0.7880602786317468,-0.6442994181998074,-0.027010516729205847,0.6557525540702045,-0.8653955799527466,0.6225621872581542,-0.9318713597021997,-0.5986457564868033,-0.9431146658025682,0.16587929148226976,-0.8726024725474417,-0.5599379641935229,-0.4836979932151735,-0.4730141502805054,0.5077576348558068,0.293183121830225,-0.2875078432261944,-0.3779920223169029,0.29294575238600373,0.7883520992472768,0.015419731847941875,-0.934373842086643,0.7691500117070973,-0.5026275729760528,0.29844079352915287,0.7825368829071522,-0.4989749686792493,-0.6523649990558624,0.8318755119107664,0.16565629607066512,-0.35591330705210567,0.7022655438631773,-0.6839268133044243,0.2846711683087051,-0.11429904913529754,-0.24868815438821912,0.4549723928794265,0.4747166936285794,0.11537052225321531,-0.20301298657432199,0.2573618167079985,-0.24805547716096044,-0.40072379261255264,-0.6404623086564243,0.35394735680893064,0.7153245760127902,-0.39785868860781193,0.38929661083966494,0.515487193595618,-0.5916025484912097,0.05811807420104742,-0.8854143861681223,0.1607945072464645,0.06038390100002289,-0.06749638402834535,-0.3081147288903594,-0.38934305496513844,-0.9412942565977573,0.09825420752167702,-0.7754783369600773,-0.8684503566473722,-0.5606116256676614,0.40457063168287277,0.03645750880241394,-0.29520488856360316,0.9330895459279418,0.2823395924642682,-0.8548151319846511,-0.23782618110999465,-0.5332949669100344,0.7735976623371243,0.5125082777813077,0.21429823571816087,0.38343345327302814,0.1179506448097527,0.005054807756096125,0.8902614251710474,0.006696219556033611,0.25141472974792123,0.07751672295853496,0.33165532536804676,0.8472972973249853,0.1510707358829677,0.8260087529197335,-0.6694183051586151,0.6980321537703276,-0.8571758721955121,0.8613017252646387,0.5610599354840815,0.4063759525306523,0.017091707792133093,0.7534164031967521,-0.16979145957157016,-0.45410823356360197,0.23419327102601528,0.5249430844560266,-0.5028841197490692,0.4695210875943303,0.8462031441740692,-0.3671865090727806,0.1807422717101872,0.08164828829467297,0.03901545982807875,0.23122886568307877,-0.2811767077073455,0.3979836655780673,0.27243822207674384,0.5641648704186082,-0.24178600031882524,0.32125653931871057,0.15154271572828293,-0.8360035750083625,0.48625598102808,-0.8878105762414634,-0.3638441041111946,-0.09720747685059905,-0.8619063766673207,-0.02023855736479163,0.8761159596033394,0.2630078881047666,0.3132923785597086,0.15554606821388006,0.3522063889540732,-0.404111139010638,0.31009544944390655,-0.08437655540183187,0.819897124543786,0.1436449340544641,-0.5511252651922405,-0.8646908761002123,0.4152685855515301,-0.20552901178598404,-0.1799445184879005,-0.018042027950286865,0.5317682619206607,0.4475902421399951,-0.5688693001866341,0.6278174612671137,0.39982616947963834,-0.08687905827537179,-0.11055978247895837,-0.38713374314829707,-0.5278997626155615,0.7648058468475938,0.6176078491844237,-0.8689354979433119,0.9464521207846701,0.9908122904598713,-0.4388877567835152,0.013473458588123322,0.26094532757997513,0.5900343265384436,-0.5524476338177919,0.46641183318570256,-0.7305536298081279,0.6372370547614992,-0.29082840168848634,-0.5119081293232739,0.06944866897538304,0.502507924567908,-0.3822095636278391,-0.14320843247696757,0.6221370748244226,0.32885634573176503,-0.9534930717200041,-0.9243752616457641,0.47919144947081804,-0.28014024067670107,0.5828207503072917,0.24009868688881397,-0.6274853553622961,-0.5749050038866699,0.8225883054547012,-0.45878569735214114,-0.0971710691228509,0.3302813647314906,-0.6264693839475513,-0.7324681333266199,0.22618458606302738,-0.48156477231532335,0.789501897059381,-0.9473933060653508,-0.6491163484752178,0.6184526314027607,-0.4664527284912765,0.5675535406917334,0.5126790930517018,-0.30150821525603533,-0.1445294958539307,0.804949869401753,-0.5070959581062198,-0.06426469376310706,0.26636152481660247,-0.4420493789948523,0.2581640686839819,0.9230754938907921,-0.7807882083579898,-0.28519023675471544,-0.47532960679382086,-0.45498453732579947,-0.44177397806197405,0.9268627157434821,0.1599742192775011,0.9572016964666545,-0.17463417490944266,0.9333046544343233,-0.864184936042875,0.4008650667965412,-0.6560574006289244,-0.7301244111731648,0.9542993027716875,-0.7064816444180906,-0.8403354119509459,0.8351646033115685,-0.16008239472284913,0.08916218765079975,-0.01746036857366562,-0.6115957284346223,-0.06797473039478064,-0.8684346778318286,-0.9266761746257544,0.2749804398044944,0.02974708890542388,0.18408153485506773,0.7970488937571645,-0.49343940895050764,-0.7374899098649621,0.6803661026060581,-0.1768098846077919,-0.3860545349307358,0.996038084384054,0.3323200102895498,-0.3731893072836101,-0.19414130179211497,0.6317088552750647,-0.11980713671073318,0.48517626943066716,0.4149512927979231,0.6627717930823565,-0.29374099895358086,0.5517709134146571,-0.5237986533902586,0.6802639164961874,-0.6318918848410249,0.6314946128986776,0.4021707968786359,-0.16580177610740066,0.614408846013248,-0.6893940619193017,0.20975822117179632,-0.6812952044419944,0.8173577864654362,-0.5210553742945194,0.15139042120426893,0.0048065283335745335,-0.29672177601605654,0.4613150507211685,-0.8099815868772566,0.918155150488019,0.2912055365741253,-0.6449539391323924,-0.4625549800693989,0.22401973139494658,0.3849541121162474,-0.901345590595156,0.41491579124704003,0.5133249191567302,-0.9296320546418428,0.4798285597935319,-0.35086507396772504,0.21703613549470901,0.8500128923915327,0.9037294862791896,-0.024055822286754847,0.8965146685950458,0.37316697323694825,0.19732042495161295,0.4596410980448127,0.43083916418254375,0.9074967703782022,0.39508779253810644,0.2438504002057016,-0.4467319748364389,0.29328326834365726,0.6227349569089711,-0.8303759512491524,-0.6508568553254008,0.7036637729033828,-0.8523642225190997,-0.5437886342406273,-0.5438525308854878,-0.3230842035263777,0.3105337438173592,-0.6717183864675462,-0.49729193141683936,-0.6240672748535872,0.8111100662499666,-0.8919351194053888,-0.3188827373087406,-0.6784431827254593,0.047518225852400064,0.38425202714279294,-0.4536654814146459,-0.3053311803378165,0.0331922946497798,-0.4217324494384229,0.5348953143693507,-0.8659755121916533,-0.25644778180867434,0.6023999275639653,0.4166536219418049,-0.6086111976765096,0.9222863679751754,0.6140786889009178,0.22860567551106215,-0.3774987030774355,-0.36390325240790844,0.49755621794611216,0.7999139633029699,0.8916594898328185,-0.16463724384084344,0.9340666946955025,-0.5983695443719625,0.738774636760354,-0.6038206042721868,0.48802782222628593,0.16325601050630212,-0.17592835379764438,0.5700437468476593,-0.7408480430021882,0.6831851755268872,0.14894069405272603,0.73764180066064,-0.04570164950564504,0.47035711957141757,-0.6904127700254321,-0.4965024059638381,0.19879770325496793,0.612860981374979,-0.06445669149979949,-0.8669765936210752,0.5015174555592239,-0.4782833461649716,-0.14992009568959475,0.5264870789833367,-0.46245941799134016,-0.2525805337354541,0.765490606892854,0.03598634572699666,0.8748400807380676,0.49970608204603195,0.9236343880183995,-0.22358680795878172,0.4695498705841601,-0.3992523569613695,0.5946476752869785,0.4457183927297592,0.556060598231852,-0.22411294421181083,0.9438337543979287,-0.43301753979176283,-0.7809123154729605,-0.04704467626288533,0.8499332391656935,-0.7150481082499027,-0.2987203225493431,-0.0189207186922431,-0.6705348906107247,0.9083395330235362,-0.9955552853643894,0.9366139103658497,0.8653730265796185,0.7558785481378436,0.05245140800252557,-0.9137229616753757,0.2926308559253812,0.883124309591949,-0.37683620769530535,0.10195021377876401,0.49229060765355825,0.6738131414167583,0.026960732880979776,0.9164038971066475,0.5345264389179647,-0.004013164434581995,-0.5768656521104276,0.4243593313731253,-0.4775841273367405,-0.7877241750247777,0.8455687947571278,0.5316554144956172,-0.33056532591581345,-0.9306502062827349,-0.47164832428097725,-0.26090533286333084,0.09708025911822915,-0.5379129950888455,0.45138818211853504,0.21889353170990944,-0.9696359559893608,0.9381239996291697,0.22134337667375803,-0.28437016159296036,0.8587009068578482,0.23820408806204796,0.10010064532980323,-0.20038366969674826,0.8462637066841125,0.648113296367228,0.8233294291421771,0.39137142105028033,-0.8406721148639917,0.5372654208913445,-0.04353371215984225,0.4760779496282339,-0.6117043988779187,0.9246554174460471,-0.6489205337129533,0.13890393124893308,-0.9121074741706252,-0.5480909058824182,-0.21559291891753674,-0.4732971847988665,-0.7283456353470683,0.4755214941687882,0.5350612686015666,0.1210343255661428,-0.19216736080124974,0.2404419886879623,0.9041002155281603,0.9114536643028259,0.7141024172306061,0.4872806444764137,-0.6217505848035216,0.9978037183173001,-0.9405189845710993,0.7882869215682149,-0.6592882480472326,0.9502868223935366,0.9998969896696508,-0.8134251572191715,0.28549325093626976,-0.42418109346181154,0.26232906011864543,0.7468127757310867,0.7135083889588714,-0.9873624769970775,-0.2901394935324788,0.20514142187312245,-0.6852817516773939,-0.963267638348043,-0.32256193784996867,0.07227279199287295,0.1949416482821107,0.5101500400342047,-0.8836352531798184,0.2803602931089699,0.38613385148346424,-0.350969978608191,0.010848268866539001,0.8584253019653261,-0.3455766118131578,-0.3066426166333258,0.8383662244305015,-0.21868424443528056,-0.7785684601403773,0.8198803630657494,0.5616696970537305,-0.9656849084421992,0.8094174615107477,0.5500121936202049,-0.21437704004347324,-0.6267624287866056,-0.64093630714342,0.8529375391080976,0.5638540391810238,0.5121482009999454,-0.9303155788220465,0.9670895067974925,0.0222547291778028,0.005684235133230686,0.13232638267800212,-0.4629324320703745,0.010137196630239487,0.36960805067792535,-0.10121493274345994,0.2683497569523752,0.2613644781522453,0.9657487510703504,-0.7950278553180397,0.3873533280566335,0.6254636668600142,0.5912298681214452,-0.5383705147542059,0.48046838492155075,-0.6790909459814429,0.23667966248467565,0.027453554328531027,0.0898598195053637,0.31486059399321675,-0.15614168625324965,-0.346243669744581,0.6249922998249531,-0.5195765569806099,-0.6228443454019725,0.7293655551038682,-0.27794446144253016,-0.5571900755167007,0.7091869069263339,0.8692199313081801,0.016887528356164694,0.8052369067445397,-0.20577383879572153,0.45912424055859447,0.694598890375346,0.5989480256102979,0.3207595720887184,0.13034433498978615,0.8806244605220854,-0.26475665159523487,0.46115352120250463,-0.11304697766900063,-0.2356957490555942,-0.8525720685720444,0.8629581853747368,-0.8176645124331117,0.32408991223201156,-0.5830659996718168,-0.23455187724903226,0.0478949761018157,-0.4851667252369225,0.07337525114417076,0.14781722938641906,-0.10196130955591798,-0.8972434173338115,0.5218500099144876,0.16888201935216784,-0.5125282597728074,0.9342819694429636,-0.8674200568348169,-0.7349519128911197,-0.7028064597398043,-0.7235909155569971,0.07173824030905962,0.8733063298277557,0.4162967042066157,-0.9421263327822089,-0.6040591080673039,0.3355156173929572,0.5312742004171014,0.657758426386863,-0.8124976018443704,-0.5784857333637774,0.840783498249948,-0.9918758231215179,-0.5909129250794649,0.30489640356972814,0.5350055051967502,-0.25505369808524847,0.8940178928896785,-0.3392086084932089,-0.24501370126381516,0.9476055642589927,0.21235191076993942,0.9794093309901655,-0.5924455914646387,0.8723887675441802,-0.03271827753633261,-0.18827405478805304,0.4687645537778735,-0.8656732514500618,-0.017373276874423027,0.15316773438826203,-0.06518411496654153,-0.9002359309233725,-0.35064457915723324,0.4128210046328604,0.4780784174799919,0.05345562053844333,0.9242254090495408,-0.707650896627456,-0.6686819940805435,-0.9643141971901059,-0.47410130593925714,-0.19178335927426815,-0.434770496096462,0.13651161268353462,-0.2414895356632769,0.7790849977172911,0.5629152697511017,-0.48960527079179883,0.06641978491097689,-0.4660862791351974,-0.23058096738532186,-0.1372871738858521,-0.4913220447488129,-0.3538642250932753,0.6009039571508765,0.8814125619828701,0.6428087572567165,0.5125564131885767,0.35460258880630136,-0.8753963429480791,-0.42198357451707125,-0.4892437672242522,-0.8169775162823498,-0.7357445196248591,0.8951717554591596,-0.5503883203491569,-0.5813746508210897,0.8350188164040446,-0.25674147065728903,-0.30199759593233466,-0.3945962069556117,0.16323159029707313,-0.6267301584593952,-0.4010658706538379,0.3638393064029515,-0.2850181912072003,-0.5299915065988898,0.8053366951644421,-0.5395094226114452,-0.8004252598620951,-0.8827158263884485,0.8861926081590354,0.7077723112888634,0.4606868540868163,-0.07753773173317313,0.10262966668233275,0.2685544569976628,-0.7236836403608322,0.3098758398555219,-0.3351875003427267,0.6047594691626728,0.008601085282862186,0.6463908916339278,-0.09750985307618976,-0.09995884634554386,0.0772788766771555,-0.6143676633946598,0.8116665561683476,-0.9574729236774147,0.7413633815012872,-0.054480623453855515,0.3225277313031256,0.9003249960951507,0.36077344976365566,-0.5501767168752849,-0.8476480506360531,-0.3113360274583101,0.6943406658247113,-0.0713314744643867,-0.9002648000605404,-0.3464310299605131,-0.5183910946361721,-0.9180901749059558,0.5550834573805332,-0.7851462736725807,0.43339282693341374,-0.7129429196938872,-0.4280702769756317,-0.3801617221906781,-0.6669270284473896,-0.17182091297581792,0.1379375122487545,-0.5709012500010431,0.7766759847290814,-0.4095334685407579,-0.5718630431219935,0.3671112870797515,-0.04864871082827449,0.6845207042060792,0.15906781051307917,-0.7871229033917189,0.026420998387038708,-0.37758581852540374,-0.014303650241345167,-0.08607695624232292,-0.625171787571162,-0.48329784581437707,0.21123520378023386,-0.7051200089044869,0.4304468319751322,-0.08885740721598268,0.9918269324116409,0.0014659129083156586,0.993545024190098,0.6261554812081158,-0.21991026122123003,-0.47080417489632964,0.7628959608264267,-0.8514707498252392,-0.008118377532809973,-0.49721610778942704,-0.32225996535271406,0.07016039127483964,0.7041176585480571,-0.8619215073995292,0.5843923771753907,0.0864324877038598,-0.8350395117886364,0.7127544861286879,-0.957373748999089,-0.4211647566407919,0.4223648156039417,-0.786845020018518,0.07338923448696733,0.37432452104985714,-0.6969266193918884,-0.7444564159959555,0.0279167122207582,0.3735451605170965,-0.5705911293625832,0.557339480612427,0.15478378534317017,-0.848782837856561,-0.33848620811477304,0.6385714220814407,0.758387881796807,-0.8347791125997901,0.5928569007664919,-0.4604062084108591,-0.4526462471112609,0.7590600955300033,-0.009180882945656776,0.9907405297271907,0.1328614898957312,0.7251065941527486,-0.9833381394855678,0.09914926579222083,0.11901451461017132,0.38389742793515325,-0.17777035245671868,-0.6491642943583429,0.98565344652161,0.11840428784489632,0.3871654341928661,0.9246056149713695,0.12769915349781513,0.7858017650432885,-0.8364581647329032,0.40866295620799065,-0.8019038350321352,0.12567215133458376,-0.7406950541771948,-0.7716009896248579,0.07571685314178467,0.01606467319652438,0.2577331820502877,-0.9753717542625964,-0.5002126577310264,0.5779161690734327,-0.38437738129869103,-0.15783581230789423,0.1935561872087419,0.2692265687510371,0.808422639966011,0.465335494838655,-0.7046937262639403,0.46124040661379695,-0.679600827395916,-0.05405542720109224,-0.06346413167193532,0.7132282210513949,0.698496026918292,0.4429445927962661,0.08510961849242449,-0.1299142213538289,-0.4993713949806988,-0.7034334605559707,-0.8846082305535674,0.8777697714976966,-0.35496181016787887,-0.4928559516556561,-0.19738825364038348,0.5291765304282308,0.39574143337085843,0.9520327905192971,0.5568179949186742,0.42021684581413865,-0.4813772230409086,0.5946421823464334,-0.7454947903752327,-0.6252294639125466,0.9485068377107382,0.18873068410903215,-0.6672720252536237,-0.3709333357401192,0.880309637170285,-0.23439169861376286,0.15843665273860097,0.6339315767399967,-0.49320920975878835,-0.1569690820761025,-0.3011356992647052,0.3738596732728183,-0.10608700383454561,-0.8062358312308788,-0.8566923053003848,-0.29264533892273903,-0.9972993652336299,0.6879042945802212,0.3905098168179393,0.6904759230092168,0.4846312738955021,-0.19751314213499427,-0.6762263546697795,-0.500162242911756,-0.9150233338586986,0.0575571171939373,-0.2714789900928736,-0.8866368257440627,-0.08864779956638813,0.35583278676494956,-0.36194587498903275,0.6607132768258452,0.7169553046114743,-0.9441386987455189,0.9447810500860214,0.15851574577391148,0.10038019716739655,-0.3858831888064742,-0.24992278357967734,-0.453022507019341,-0.5720901545137167,0.6112184715457261,0.9777484824880958,0.01964496960863471,0.8565637427382171,0.5263524707406759,0.8198941959999502,0.09604732599109411,-0.2656815997324884,0.9229276832193136,0.6343732918612659,0.7350947195664048,-0.7626466942019761,0.38233692664653063,0.622211342677474,0.5382762248627841,0.4440635652281344,-0.20366524904966354,0.039145034737885,0.32617912208661437,0.09026404423639178,0.32715550251305103,-0.6493251235224307,0.726118924561888,-0.5785065772943199,0.34596504690125585,-0.4467552783899009,0.07151395222172141,0.14550441410392523,0.5880445442162454,0.4108554474078119,-0.27304565720260143,-0.10059083672240376,-0.8868204061873257,-0.9851607345044613,-0.6480060014873743,-0.6800705511122942,0.7318099201656878,0.5120158372446895,-0.6856117742136121,-0.4401817969046533,0.16972680483013391,-0.04120539827272296,-0.633737413212657,-0.5299589303322136,-0.7175595117732882,-0.08673723693937063,-0.7145371274091303,-0.41373153822496533,0.49711540900170803,0.37335816910490394,0.17813012190163136,0.24561994150280952,0.6366690183058381,-0.9538370696827769,0.9352676556445658,-0.8211386022157967,-0.918488715775311,0.5269456538371742,0.7066309386864305,-0.1850339355878532,-0.9294153265655041,0.46089019952341914,0.20627479534596205,0.6567739085294306,-0.9840771774761379,-0.12690527364611626,0.2146225357428193,-0.5340602044016123,0.2426106226630509,0.48498783353716135,0.7486012685112655,-0.9741999725811183,-0.7703189821913838,-0.7185430452227592,-0.7169485385529697,0.9089172431267798,0.3472167765721679,0.2538459259085357,-0.9387708003632724,-0.9827937432564795,0.3965535666793585,0.9366905055940151,-0.9745021774433553,0.012236202135682106,0.23490256955847144,0.6477342764846981,-0.56069022603333,0.2658936628140509,0.816005289554596,-0.5271766982041299,-0.6424563592299819,-0.19176742667332292,0.22883992362767458,-0.9016558555886149,-0.30829559406265616,-0.6429725838825107,-0.02352458192035556,0.7513499804772437,-0.561182358302176,0.12765979254618287,0.7369445594958961,0.9274187064729631,-0.007137618493288755,0.258263329975307,0.22950928565114737,-0.4191164970397949,0.9035174883902073,-0.32194985169917345,-0.5290056578814983,0.11538767395541072,0.414005933329463,0.4163441159762442,0.7571364534087479,-0.49887114204466343,0.8327744724228978,0.6062461780384183,-0.23607791820541024,-0.758458545897156,0.759044018574059,0.7791924783959985,0.17195849400013685,-0.02732042223215103,-0.29762423085048795,0.2526879934594035,0.027616960927844048,-0.925627829041332,0.9482419756241143,0.6193828247487545,0.5836179424077272,0.05197963956743479,0.09532585181295872,0.9714660570025444,-0.18632567999884486,0.14901307690888643,0.13678522827103734,0.07201608223840594,-0.6498263832181692,0.39887055195868015,-0.16784872254356742,0.878060475923121,0.3140080161392689,-0.10228940146043897,0.4330367371439934,0.2552899206057191,0.30090379482135177,-0.7901182495988905,-0.4444673294201493,0.6474205320701003,-0.6847361298277974,-0.8722645449452102,-0.43148388620465994,-0.9767474229447544,-0.15340247284621,0.3477427368052304,0.9264658205211163,-0.41745608812198043,-0.13941418146714568,-0.8684722790494561,0.44608129607513547,0.5503987269476056,-0.7934444970451295,-0.5942755024880171,-0.13631290290504694,0.3326262482441962,-0.29114319663494825,-0.7605827725492418,0.8723142701201141,0.11441539833322167,-0.6705694845877588,0.019204695243388414,-0.21241126488894224,0.9482031879015267,-0.21382154244929552,0.24813484447076917,-0.33372979052364826,0.14382007019594312,-0.32029247656464577,0.1176993497647345,0.04367091739550233,-0.9815831836313009,0.36916297674179077,0.9375899690203369,0.9225536752492189,-0.2031699805520475,0.5291411853395402,-0.7434833766892552,-0.9784655258990824,0.17016487987712026,-0.04541833000257611,-0.0543277901597321,0.5878566703759134,-0.32899063685908914,-0.0851823864504695,-0.6787548819556832,-0.8661414203234017,0.7070498098619282,0.07635145634412766,0.45439444156363606,0.48011534148827195,-0.9313312247395515,0.270426785107702,-0.1439531217329204,0.5604376369155943,0.051258594263345,0.5908685484901071,0.31510762497782707,-0.0786848715506494,-0.45425841584801674,-0.4385162857361138,0.4043168807402253,0.9712226064875722,0.39623196003958583,-0.34307769732549787,-0.3601434235461056,-0.755154216196388,0.5037431376986206,0.9610764118842781,-0.13973452663049102,-0.03614995861425996,-0.08455978240817785,-0.6944161672145128,0.3394919759593904,0.12636987632140517,0.8792363260872662,-0.8789381836540997,-0.04057242488488555,-0.7733953255228698,0.8650190765038133,0.5003043473698199,-0.5508242705836892,0.7704009446315467,0.36313027888536453,-0.09124871203675866,0.3086319761350751,0.08786879293620586,-0.7041553016752005,0.1860023974440992,0.23176177637651563,-0.2160901902243495,0.23503917502239347,-0.4527683653868735,0.527172536123544,0.948059706017375,-0.4565184568054974,-0.6235715700313449,-0.9517855071462691,0.020367270335555077,-0.2827791995368898,-0.46590675646439195,-0.6394621478393674,-0.05549689056351781,0.7507641105912626,-0.7634212002158165,0.9488516715355217,-0.0977062564343214,-0.5262049394659698,0.8336308714933693,-0.7114227525889874,0.8314231927506626,-0.836792544927448,0.9607825800776482,-0.06975999334827065,-0.20071356929838657,0.6467583095654845,0.5237551433965564,-0.9183619073592126,0.5180195802822709,0.001791269052773714,-0.6342961066402495,0.7733997493050992,0.23132921429350972,-0.0069274818524718285,-0.4397826776839793,-0.1358613846823573,-0.43919880129396915,0.7098898948170245,0.9579567718319595,-0.46804636530578136,-0.16599327232688665,-0.9042539885267615,0.02197772217914462,0.7268313718959689,0.10599169321358204,0.34830088587477803,-0.8344217478297651,0.6863666507415473,-0.2868858533911407,0.7566851889714599,0.9982888596132398,0.26923768129199743,0.8146184692159295,-0.0294012357480824,-0.6842732317745686,0.5949938553385437,-0.6024818746373057,-0.8577911895699799,0.8541512838564813,0.4922282309271395,0.6741365939378738,0.7988881231285632,-0.4310987866483629,-0.5666776290163398,-0.9136438341811299,-0.07034738641232252,0.30635271640494466,0.8406169395893812,-0.2982598668895662,-0.4884795560501516,0.010937448125332594,-0.6241245181299746,-0.6193638914264739,-0.8657152880914509,0.892922097351402,0.705639423802495,0.7504437486641109,-0.9222857928834856,-0.4355579330585897,0.41497378423810005,-0.6116055333986878,0.29321869695559144,-0.9806262943893671,0.4216432962566614,0.7026181062683463,0.1711594215594232,0.031935691833496094,0.3246257328428328,-0.5386606641113758,0.4000456007197499,0.13807907607406378,-0.2688908977434039,0.6842223042622209,0.5465552723035216,0.21245974814519286,0.21602905308827758,-0.5774101400747895,-0.09257497452199459,0.46333451522514224,0.19575318694114685,0.17347537446767092,0.10238515306264162,-0.5771845602430403,0.08378636231645942,-0.6487750387750566,0.22150589944794774,0.8027509059756994,0.5233592297881842,0.7422329583205283,0.7573944833129644,0.6642347117885947,0.9580679535865784,0.15445996401831508,-0.2120860144495964,-0.3444035863503814,0.8370462604798377,0.8908845568075776,-0.2417161134071648,0.4564733603037894,-0.6231405986472964,0.552472832147032,0.8854811615310609,0.239377916790545,-0.8695653374306858,0.9196747550740838,0.8713341788388789,0.7488464512862265,0.15772028267383575,-0.33325290540233254,-0.5591699164360762,-0.1346830171532929,-0.29805920692160726,-0.9616465168073773,-0.5488815498538315,0.2582368799485266,-0.9331082217395306,0.7411464001052082,0.17504642764106393,0.6581338997930288,0.35792751936241984,0.2930241818539798,-0.7559112412855029,0.16306776646524668,-0.8084010751917958,-0.635557453148067,0.18119878275319934,0.8730460447259247,0.8528560199774802,0.7197096007876098,-0.11755141615867615,0.9650918217375875,0.5614949022419751,-0.9511385564692318,0.6229878971353173,0.7175771603360772,0.9113143128342927,0.42724804813042283,-0.17854625964537263,-0.016975041944533587,-0.8926771637052298,-0.06592630222439766,0.992266648914665,0.33608489902690053,0.5239289682358503,-0.42080169916152954,-0.733555022161454,0.1528080548159778,-0.0038200458511710167,0.5448027905076742,0.7234903918579221,0.29729661624878645,-0.32259506033733487,-0.6921920035965741,-0.6889242203906178,-0.9009720790199935,0.6204185364767909,-0.7408630633726716,0.9982912773266435,0.34641265124082565,0.07985822949558496,-0.11548706330358982,0.697773041203618,0.5284337783232331,-0.4165354105643928,0.09402231406420469,0.5515247597359121,0.8393243472091854,0.5705098272301257,0.2601103582419455,0.2831688281148672,-0.8991184919141233,-0.1959775355644524,0.5413867086172104,-0.3208406916819513,0.6828691828995943,0.7543764687143266,0.1409751633182168,-0.9405849962495267,0.16631136275827885,0.20353629905730486,-0.2560098608955741,-0.6682756617665291,-0.7345556640066206,-0.5291233593598008,0.6483913320116699,-0.10159806255251169,0.7885935502126813,-0.8509274628013372,-0.9917655573226511,-0.436988337431103,0.2672397429123521,0.204363030847162,0.9444560701958835,0.4754924583248794,0.2616297476924956,-0.15054684365168214,0.6919218148104846,0.9035203326493502,-0.8342482382431626,0.13776734611019492,0.43337368313223124,0.9864814388565719,0.5535258050076663,-0.0048126233741641045,0.1830308586359024,0.5558249349705875,-0.04691887041553855,0.3841971610672772,0.6814314923249185,-0.4815699001774192,-0.34527551801875234,0.5193265611305833,-0.0073721217922866344,-0.5288767064921558,0.12948921835049987,-0.8859078087843955,0.4097554492764175,-0.0362306060269475,-0.9207910681143403,0.9589327634312212,0.21720006642863154,0.3767628753557801,-0.005373838823288679,0.37634153570979834,0.8596377335488796,0.2845167564228177,-0.8601847910322249,0.521315888967365,0.003792762290686369,0.29511104710400105,-0.10037413239479065,0.9782817899249494,0.7482099933549762,-0.32587466994300485,-0.4731717393733561,-0.32530437549576163,-0.7602801909670234,-0.27019059704616666,0.5748041970655322,-0.5751201868988574,-0.6417663544416428,0.45119381276890635,0.3964434089139104,-0.5310666374862194,0.445342849008739,-0.5846066540107131,-0.39306854782626033,0.8658149484544992,0.3950788853690028,-0.892647129483521,-0.07137760752812028,0.5095241726376116,-0.10494403587654233,-0.15392040787264705,0.3277185643091798,0.7442915984429419,-0.6635092962533236,-0.7812605635263026,-0.14528299262747169,0.26763667399063706,-0.34780871495604515,0.9301247331313789,-0.8436251184903085,0.6663209013640881,-0.3583358465693891,-0.35268681310117245,0.9695847318507731,0.9225928629748523,-0.25222119176760316,0.6693542306311429,0.7874608058482409,0.004496271256357431,-0.9573554149828851,0.13175772689282894,0.12227732175961137,0.7424770882353187,0.7047596736811101,0.0980954971164465,-0.33390377555042505,-0.3011871022172272,0.9489909820258617,0.6084430571645498,-0.39663890190422535,0.49755676090717316,-0.4465160183608532,-0.2839463837444782,0.14522332698106766,0.8819733988493681,-0.7745461724698544,-0.21952399425208569,-0.7588039147667587,0.1603165538981557,0.7972691431641579,-0.3919227817095816,-0.6759926080703735,-0.546204365324229,-0.23750692699104548,0.9381068460643291,-0.696489579975605,0.06609599618241191,-0.862632395233959,0.9381319913081825,-0.3913593301549554,0.2627894044853747,0.6997025068849325,0.9582459544762969,0.6059706639498472,-0.19888819195330143,0.8944072551093996,0.009893523063510656,-0.1841482282616198,0.7885061693377793,-0.16256485087797046,-0.7064128085039556,0.2693692040629685,0.020616480614989996,-0.7194093521684408,0.7257092953659594,0.17118806345388293,0.5507423751987517,-0.8714832542464137,0.31459926115348935,0.2790938224643469,0.646666991058737,0.4449181933887303,0.9249895489774644,0.1921536666341126,-0.6418119515292346,0.28367113694548607,-0.5491082444787025,0.05065026739612222,0.9725432256236672,-0.38630705792456865,0.21667953114956617,0.339538867585361,-0.10331640811637044],"z":[-0.8146146866492927,-0.07253979006782174,-0.6888657566159964,0.4679090864956379,0.7195076467469335,-0.3475911249406636,0.34725451935082674,0.04319748282432556,-0.20651928009465337,-0.8502623303793371,0.6483252458274364,0.5465668523684144,0.2734009884297848,-0.5994165153242648,-0.6620609085075557,0.30037913052365184,-0.7006912883371115,-0.7249455461278558,-0.23667583614587784,0.5029411199502647,0.3865740713663399,0.4408216839656234,0.49742099083960056,0.3187882793135941,0.26043917471542954,-0.4336998490616679,-0.4121418921276927,0.6943792449310422,-0.06250286707654595,-0.9438008796423674,-0.6792457066476345,0.7044977121986449,-0.7870614756830037,-0.3528635953553021,0.52975510712713,0.12282754201442003,-0.9046300733461976,0.4304349101148546,0.7589075835421681,-0.5917527130804956,0.29924729093909264,-0.18060699524357915,0.9484961614944041,-0.18234833097085357,-0.17844929127022624,0.5531974504701793,0.060053808614611626,0.3600883190520108,-0.34747547237202525,-0.9248415534384549,-0.8973985696211457,0.8955865534953773,-0.9127359171397984,0.5034278500825167,-0.021621900610625744,-0.4045424573123455,-0.013935481663793325,0.48819162230938673,-0.4175839312374592,0.49963559536263347,-0.20987850241363049,-0.09066279185935855,-0.46250913152471185,0.5588149940595031,-0.4704958349466324,0.6321641989052296,-0.1613201000727713,0.01935760211199522,0.5544543205760419,0.800143257714808,-0.4863945972174406,-0.42088032932952046,0.3214513552375138,-0.22210825653746724,0.09090103395283222,-0.988229061011225,-0.9959971262142062,0.9009736585430801,0.2826943453401327,-0.6657708776183426,0.8527524238452315,0.21016558771952987,0.3238123431801796,0.5559358792379498,-0.35096322000026703,-0.1110363737680018,-0.9899686933495104,-0.4060261845588684,0.009901559446007013,0.5381247731857002,0.7041062219068408,0.006177330855280161,0.8546266695484519,0.19024238316342235,0.44848351180553436,-0.6077970033511519,-0.1994123077020049,0.23690414149314165,-0.02302836114540696,0.3027222719974816,0.23645536042749882,-0.8245474672876298,0.5193271283060312,-0.4328528456389904,0.02948784502223134,-0.7710415674373507,-0.7956702006049454,0.5732033886015415,0.12284058332443237,0.20332565158605576,0.7180496151559055,-0.13321044109761715,-0.9745241240598261,0.58610136853531,-0.6624641250818968,-0.44762491388246417,-0.9807016905397177,0.24696910521015525,-0.654222690500319,0.4645977644249797,0.49402069626376033,-0.8046551872976124,0.52627112576738,0.5299110244959593,-0.7288347957655787,0.6473902366124094,-0.0643335790373385,0.08247153228148818,-0.5544057828374207,-0.7768846661783755,0.176459779497236,0.7202439741231501,-0.647846297826618,-0.18817708222195506,0.4539173375815153,-0.039580381475389004,-0.7341792280785739,0.6438697320409119,-0.39797431183978915,-0.8111642170697451,-0.8267916259355843,-0.5216617588885128,-0.9983549593016505,-0.7774301734752953,-0.711530227214098,0.3539662091061473,-0.7625990770757198,0.6555167860351503,0.30460675386711955,0.008962441701442003,-0.3990035392343998,-0.6453832197003067,-0.6878193435259163,-0.689234312158078,-0.8302851850166917,0.8429007111117244,0.9379557389765978,-0.11874862667173147,-0.4883929267525673,0.18845968879759312,0.25263974256813526,-0.8847517753019929,-0.8104836498387158,-0.9084781496785581,0.6620307667180896,-0.9656858672387898,-0.24819118110463023,0.994385318364948,0.39432905009016395,0.4825547249056399,0.030509150121361017,0.9809855679050088,0.35381330316886306,-0.31446755630895495,0.5004014237783849,-0.26314168702811,-0.15492463065311313,0.9007521900348365,-0.08543386682868004,0.7948049614205956,0.22842842992395163,0.5780835608020425,-0.14326147781684995,-0.1308142771013081,0.16119758877903223,-0.17056546034291387,-0.19890691619366407,-0.22722468711435795,0.9100485523231328,0.5026967958547175,-0.7623769077472389,0.337473061401397,-0.8377593499608338,-0.3192028463818133,-0.14088306948542595,-0.7996523743495345,0.022931064013391733,-0.7964946296997368,-0.36695031728595495,0.7148142857477069,0.37997976783663034,0.18800561502575874,0.9285770324058831,0.06647287961095572,-0.30154638551175594,-0.2340879482217133,-0.709900435525924,0.8507271376438439,-0.5812142551876605,-0.32260827673599124,-0.6337861465290189,-0.7168122758157551,-0.3344137337990105,-0.5835700142197311,-0.7667191256769001,-0.8671067729592323,0.8680632030591369,0.1498799598775804,0.34318997897207737,0.6283110976219177,0.3835786832496524,0.4893086850643158,-0.9369748900644481,-0.3478135857731104,0.2912709699012339,0.07279584603384137,0.46277727605775,-0.4530441747047007,0.25380824180319905,0.8894892516545951,-0.4617949891835451,0.7616701209917665,-0.9524153624661267,0.18417042447254062,0.7529057948850095,0.30737426318228245,-0.9508826769888401,0.4440262313000858,-0.9702638438902795,0.04751688940450549,0.7219932908192277,0.34839047584682703,-0.17088570445775986,0.9819088499061763,-0.1177886170335114,0.4383995411917567,-0.9923783536069095,0.17161626322194934,0.7457780009135604,-0.32344140531495214,-0.10947255976498127,-0.7244265689514577,0.9749992359429598,0.13624539086595178,-0.916573362890631,-0.5137332957237959,0.6046321815811098,0.9018775634467602,-0.5437213075347245,0.4295350951142609,-0.2583587719127536,0.3400284145027399,-0.8412666078656912,-0.9001030116342008,-0.2911263448186219,-0.9149711183272302,0.7591430027969182,-0.6987327453680336,-0.5904244468547404,-0.059641108848154545,-0.7524258303456008,0.45869691483676434,-0.9418317824602127,0.9906697263941169,-0.6563278152607381,0.5859980089589953,-0.7325249495916069,0.3765447395853698,-0.9583639353513718,-0.7153952214866877,0.5358945406042039,0.42712095426395535,0.7323424811474979,-0.1298382580280304,-0.6265469030477107,0.573689435608685,-0.20926791243255138,-0.3433629316277802,-0.23939900752156973,0.6909773787483573,0.5545266219414771,0.08355882205069065,0.012651598080992699,0.8702897937037051,-0.2280921982601285,0.6057607750408351,0.6743960794992745,-0.7938549108803272,-0.6926380572840571,-0.2743975864723325,0.4858796298503876,-0.9811253426596522,0.6663629333488643,-0.14069034811109304,0.39560377644374967,0.39254567539319396,-0.6361206457950175,-0.6730014975182712,0.22980083152651787,-0.25473072892054915,-0.7246993281878531,0.06340629607439041,-0.010716987773776054,0.8411816512234509,0.9397839801385999,-0.6521906270645559,-0.013283004984259605,0.8000763817690313,-0.8311864496208727,-0.8507718676701188,0.14392234850674868,0.8415574436075985,-0.7661813427694142,0.8659605300053954,0.8994355956092477,0.7364201811142266,-0.6106947930529714,-0.10688478499650955,-0.24714105390012264,-0.4970619073137641,0.7331116022542119,0.4037040304392576,0.3691944354213774,0.7000189330428839,0.1343097509816289,-0.01161507423967123,0.9174327063374221,-0.3516265880316496,0.7458110731095076,0.9224756918847561,-0.30636313930153847,0.40166480420157313,0.39878037897869945,0.23574027931317687,-0.9860781063325703,0.3554558609612286,0.06195856910198927,-0.11119014723226428,-0.0945262392051518,0.60831632418558,-0.9470173707231879,-0.728393335826695,0.8089629765599966,0.8976749880239367,0.601376861333847,0.7187467822805047,-0.6443184926174581,0.6138548916205764,-0.5319228684529662,-0.5402687788009644,-0.9048774582333863,-0.33885017968714237,0.3645697897300124,-0.059723430778831244,0.6393607794307172,-0.6771330861374736,0.5186123764142394,0.49153726967051625,0.9709559641778469,0.3314490895718336,0.7125909198075533,0.3233202532865107,0.2370851687155664,0.14978210255503654,0.9845387232489884,0.5832358584739268,-0.36126359133049846,-0.26632038271054626,-0.09488138137385249,0.6337979300878942,-0.774393574334681,0.7520139901898801,-0.7849763850681484,-0.6205783332698047,-0.31852796021848917,-0.9389979876577854,-0.9677777918986976,-0.25568319531157613,0.30221028346568346,-0.19764075754210353,0.1793720512650907,-0.6713523836806417,0.4143130178563297,-0.2700614696368575,0.7028552922420204,-0.10421608155593276,0.8838729504495859,0.39741278160363436,0.9065797198563814,-0.3317502229474485,0.6108059207908809,0.43266576575115323,0.35375918773934245,-0.26799551164731383,0.40665080305188894,-0.7410520627163351,0.5197231280617416,0.40280701080337167,-0.9032826130278409,0.3651402569375932,0.8163653770461679,-0.9500515065155923,0.3032289193943143,-0.9542920663952827,-0.6604034826159477,0.6923998966813087,-0.5432198075577617,-0.5059331497177482,-0.3325310102663934,0.1486664768308401,-0.893176028970629,0.2620652220211923,0.9108383874408901,0.8188827610574663,-0.8983323979191482,-0.40064719459041953,0.7501707640476525,0.779708381742239,0.4706251975148916,-0.09834471764042974,-0.7754657538607717,-0.5601684022694826,0.30358001682907343,0.3476599473506212,0.46343502355739474,0.5850439425557852,0.6515700435265899,0.4331978000700474,0.1674990584142506,0.5804157657548785,0.03155261650681496,0.02322649070993066,-0.18428022507578135,0.9725296599790454,-0.12586964201182127,-0.9874979080632329,0.3251653150655329,0.7259881827048957,-0.22111882409080863,-0.17119888355955482,0.7734135487116873,-0.43864097679033875,-0.8915072618983686,0.8179113348014653,-0.3452557763084769,0.835040005389601,0.29355742363259196,0.527843861375004,7.054628804326057e-05,-0.6895434865728021,0.6764378570951521,-0.33883045008406043,0.6410755584947765,-0.5285589545965195,0.7948270053602755,0.9115874483250082,-0.0017379694618284702,-0.37055444717407227,-0.5572373545728624,0.6191081702709198,0.4106567921116948,0.7915590875782073,-0.7130352323874831,-0.5964421653188765,0.8134054718539119,0.6779496567323804,0.9127809726633132,-0.3476129546761513,0.05682467669248581,0.1423871200531721,0.2826014468446374,0.48461043927818537,-0.7386486358009279,0.5270349723286927,0.9885085881687701,0.6365917795337737,-0.036870517302304506,-0.7005105130374432,-0.4656361830420792,0.7949278708547354,-0.6080657402053475,0.8562028654851019,-0.22013735491782427,0.11826969683170319,-0.020835600793361664,0.6850252011790872,-0.8524591661989689,-0.8394035627134144,-0.4176345244050026,0.9878161395899951,0.38319674832746387,-0.13302531372755766,0.7265062713995576,0.21211362024769187,0.18435963476076722,0.10217875288799405,0.06812866823747754,-0.6486871875822544,-0.09780673496425152,0.485775098670274,0.4941166457720101,-0.47905998304486275,-0.06769164325669408,0.19557973695918918,0.9026466966606677,0.7100902865640819,0.19167173886671662,0.7059510219842196,-0.8378421636298299,0.33305636001750827,-0.49041728489100933,0.5401217518374324,-0.7807333441451192,-0.6706264982931316,0.1883505075238645,0.3893760251812637,0.21235270192846656,0.2778306882828474,0.07138131698593497,0.4302962338551879,-0.6058024992235005,-0.8845535544678569,-0.25558699714019895,-0.9382671625353396,-0.21276538399979472,-0.1924629951827228,-0.26798525964841247,0.014654467348009348,-0.6624201755039394,0.10998536320403218,-0.5961179276928306,-0.3333240202628076,0.5314772012643516,-0.4325651526451111,-0.5681705521419644,0.03938281675800681,0.06954237399622798,-0.2587418146431446,0.0351871051825583,0.45436698431149125,0.794247233774513,-0.8113334495574236,-0.668311782181263,-0.9122755094431341,-0.7016748511232436,-0.46263207448646426,-0.9848641585558653,0.9606922222301364,-0.18201506044715643,-0.16780709521844983,0.29358949325978756,-0.9063523691147566,-0.14719739835709333,0.45857666339725256,0.07497265515848994,-0.4767765640281141,0.9255876028910279,0.035218277014791965,0.04857782227918506,0.0791746792383492,-0.8052686317823827,-0.6402517077513039,-0.1723935236223042,-0.289004476275295,-0.01044557522982359,-0.756346101872623,0.934207059442997,0.9325868445448577,-0.19915115041658282,0.1200129920616746,0.6659609456546605,0.6752702863886952,0.9601787412539124,0.28871606197208166,0.1634260886348784,-0.16272357804700732,-0.35091178584843874,-0.5962640317156911,0.5416487287729979,0.23017089441418648,0.4700726643204689,-0.7120574568398297,-0.17548936745151877,-0.5805239602923393,0.7728357035666704,0.6747952862642705,-0.9845776916481555,0.3782355538569391,0.2703390559181571,0.5364055475220084,-0.39248346677049994,0.8208509874530137,-0.996941486839205,0.3120096861384809,-0.7456390089355409,0.10435180040076375,0.1501827910542488,-0.5698989937081933,-0.8409349722787738,0.48036855831742287,0.08236874267458916,-0.6219258597120643,-0.70263453386724,0.6527055883780122,-0.6204026378691196,0.760468892287463,-0.09434906719252467,0.6016506655141711,0.9716083314269781,0.4886997574940324,0.2125812261365354,-0.19798253383487463,-0.6238826140761375,-0.02369647193700075,0.9065481764264405,0.2568230773322284,-0.25814602756872773,-0.8661385742016137,-0.3165675448253751,-0.062340684700757265,0.39025885332375765,-0.40404134429991245,0.19441683730110526,0.9077810677699745,-0.0824669012799859,0.8253456796519458,0.2902201763354242,0.6441587759181857,0.479701092466712,0.24721883237361908,0.24869007850065827,-0.50450872303918,-0.4517387533560395,0.7162189944647253,-0.38687864877283573,0.9752295580692589,-0.7419083290733397,-0.7254182556644082,-0.9653886007145047,-0.3404734283685684,0.46611391147598624,0.37870423309504986,0.2987175462767482,-0.5452581741847098,0.6287321927957237,-0.24369399482384324,-0.24843168770894408,0.04071168601512909,0.19069329230114818,-0.49708647932857275,-0.6138972919434309,-0.27364099537953734,0.8105906597338617,-0.2283820826560259,-0.8923061396926641,-0.11329617165029049,-0.5193727617152035,0.6729527018032968,-0.268004656303674,0.1646949891000986,0.36014286195859313,0.7756803138181567,-0.22078364109620452,-0.14391577104106545,-0.6787655805237591,0.741769393440336,-0.6508518476039171,-0.736285490449518,-0.46982756815850735,0.7438547145575285,-0.36424322752282023,-0.22768062632530928,0.47432331554591656,-0.017617061734199524,0.056055296678096056,-0.2893543881364167,-0.07482211664319038,-0.22176182083785534,0.2181219169870019,0.40318422485142946,0.8178699994459748,-0.1954476055689156,-0.5100913802161813,-0.058735223952680826,-0.008831536397337914,0.8150057257153094,-0.12515128031373024,0.3929910440929234,0.004531241022050381,0.22697014641016722,0.3884725999087095,0.44715740205720067,0.38673288002610207,-0.05863009486347437,-0.34689928870648146,0.98090541921556,0.623484930023551,0.8660621847957373,-0.5874568875879049,-0.8995545045472682,0.03826936427503824,0.6692449576221406,-0.3597534401342273,0.9976014662533998,-0.7503607524558902,0.7338061635382473,-0.2742470884695649,0.5117808310315013,0.49724464770406485,-0.6183013948611915,-0.19132070476189256,0.2610047347843647,0.43431420577690005,-0.7345091570168734,-0.9949129661545157,0.10838627070188522,-0.5035666357725859,0.9735789080150425,0.6513245925307274,0.2331209583207965,0.22715060645714402,-0.45531495893374085,-0.09837409155443311,-0.08370956499129534,0.1824389290995896,-0.1493307570926845,0.3759788740426302,-0.3399277748540044,-0.44511721283197403,-0.9356416994705796,0.7532709240913391,0.12701372429728508,0.24598489329218864,0.4376679928973317,0.4294273555278778,-0.37897564796730876,0.2995756487362087,-0.29126607440412045,0.23716927040368319,0.8749450636096299,-0.22137230029329658,0.28602026123553514,0.3397005354054272,-0.5522667006589472,-0.5582317947410047,0.31340719060972333,0.46287909196689725,0.2693781261332333,-0.795633701607585,-0.8233378073200583,-0.9440058232285082,0.34739192202687263,0.17108407244086266,-0.4763265773653984,-0.07930111838504672,-0.46719701774418354,0.8351394063793123,-0.5731630041263998,0.2036335445009172,-0.2438228875398636,0.22083231108263135,0.4694487447850406,0.36584751680493355,0.7920902548357844,0.671080594882369,-0.8626663484610617,0.9253710531629622,-0.47087413957342505,0.7624250277876854,0.7823509313166142,-0.7124178078956902,0.8928059968166053,0.7072059996426105,0.7932005706243217,0.27144657727330923,-0.6025905152782798,-0.4437944092787802,0.06923967087641358,-0.02347617456689477,-0.17028533294796944,-0.6535785780288279,0.6006822846829891,-0.4615685110911727,-0.37926183827221394,0.15933201229199767,0.1888995193876326,-0.20183323603123426,0.3179074381478131,0.22776662418618798,0.539862496778369,0.17698326893150806,0.37634262489154935,0.9707669168710709,0.6392763182520866,0.02327900007367134,-0.9888538848608732,0.393108569085598,-0.09348333114758134,0.0784412520006299,-0.8333206600509584,-0.03357245260849595,0.9168998873792589,0.8399254558607936,0.368091210257262,-0.7600695355795324,0.7523800865747035,0.6787473033182323,0.8265748186968267,-0.38419463438913226,-0.2711652503348887,-0.8403293089941144,-0.9338151053525507,-0.3003525659441948,0.6128295720554888,0.5096867871470749,0.5691212043166161,0.6749118915759027,-0.49396941252052784,0.17699951864778996,0.03565366938710213,0.36475869873538613,-0.18089945800602436,0.7335832943208516,0.553808931261301,0.5420590392313898,-0.5958498432300985,0.18643698189407587,0.5907902838662267,-0.5450192522257566,0.34204775374382734,-0.4365153107792139,-0.7498695836402476,0.23132025310769677,-0.6072006416507065,0.9266138505190611,0.9986318023875356,0.5265927277505398,-0.2774303895421326,-0.692185515537858,0.015058559365570545,-0.7892958596348763,0.18447478348389268,0.5427661184221506,0.9353022524155676,-0.480967968236655,-0.3372938949614763,-0.6981818787753582,-0.10658125346526504,-0.6945083392783999,-0.3699034289456904,0.530374308116734,0.6127132056280971,0.4916852484457195,-0.07506615063175559,0.06304114311933517,-0.14389292616397142,-0.7620590077713132,0.006982200779020786,0.11733566084876657,0.2860005795955658,0.9914962174370885,0.10089807584881783,-0.4903370081447065,0.3453825078904629,0.3718730267137289,0.263650163076818,-0.6611683862283826,0.47257394436746836,-0.7049757069908082,-0.011053240858018398,-0.7558132167905569,-0.9324259106069803,-0.2857254953123629,0.9030297915451229,-0.9214831930585206,-0.3056006175465882,0.1918977703899145,-0.8998557450249791,0.9018494440242648,0.4709957023151219,-0.2161842784844339,0.4388621775433421,-0.0466188439168036,0.7045612251386046,-0.30220592953264713,0.20542434556409717,-0.21370497392490506,-0.5299459062516689,-0.9209217047318816,-0.34556365106254816,0.6163671095855534,-0.4585550455376506,0.15540957963094115,0.41326782666146755,-0.3239409439265728,0.203164616599679,-0.2843295093625784,-0.41623016633093357,-0.549014643765986,-0.42715931916609406,0.5188085134141147,0.13582061044871807,-0.28267798526212573,0.5763268573209643,-0.09418054996058345,-0.0444355383515358,0.5836644270457327,0.41542371828109026,0.393437918741256,0.43621913623064756,0.6418460696004331,0.10926972469314933,-0.8098571514710784,-0.9889938295818865,0.29720317060127854,-0.7715659039095044,-0.7496626200154424,0.7174264937639236,-0.9520995677448809,-0.4305604323744774,-0.5058667580597103,0.3098692325875163,0.1472194385714829,0.9915358028374612,0.18677875213325024,-0.9759510192088783,0.9985522143542767,-0.7626127148978412,0.9329372690990567,0.8212644197046757,-0.29312003683298826,0.329114553052932,-0.30941989505663514,0.38063216721639037,-0.8225745214149356,0.869618603028357,0.5978076294995844,-0.954855072312057,0.09789512818679214,-0.8367055030539632,0.7630856484174728,-0.9949044343084097,0.7741892109625041,-0.25284848269075155,0.5436849924735725,-0.7792732026427984,0.14532230328768492,0.1973720770329237,0.6377760954201221,0.16350426292046905,-0.9680325095541775,-0.5381127800792456,-0.13567512575536966,-0.6545412605628371,0.8588282824493945,0.6311698821373284,-0.9042640272527933,-0.5164359952323139,-0.45154703687876463,-0.43355298740789294,0.9695412325672805,-0.8630026928149164,-0.8433246677741408,-0.14844818226993084,0.2411143183708191,-0.7427799846045673,-0.8955396683886647,-0.8113713371567428,0.3272331627085805,0.7007613256573677,0.7417730195447803,0.3411171920597553,0.7133267871104181,-0.08083900669589639,-0.2351977820508182,0.35312723321840167,-0.9701544996351004,0.4086824506521225,0.1456968984566629,-0.7382084834389389,-0.07476388709619641,0.3579248357564211,0.9897574950009584,-0.14505870267748833,-0.6242882530204952,0.22139277262613177,-0.6285020047798753,0.565184083301574,-0.842279379721731,0.3676868574693799,0.32780374214053154,0.5005781659856439,-0.04997174069285393,0.034005193039774895,-0.9225598168559372,-0.3664670563302934,-0.5100738969631493,0.09777039755135775,0.22841204749420285,0.5134223843924701,0.16443448280915618,0.7665856666862965,-0.3971113422885537,0.8725868412293494,-0.4893994424492121,-0.4888250036165118,-0.30109835462644696,0.1996437986381352,0.9333554981276393,0.481986197642982,-0.07687657186761498,0.04114120686426759,0.15966353937983513,0.8760438822209835,0.8732823310419917,-0.6632767277769744,-0.7609869758598506,-0.45994675112888217,0.7168681896291673,-0.4397579072974622,-0.05470312153920531,-0.7438652073033154,0.2276841108687222,0.3170712268911302,-0.6579522890970111,0.5647227331064641,-0.8052228866145015,-0.43102136440575123,0.2151718963868916,-0.5773184052668512,0.7743922104127705,-0.8222737614996731,-0.9721705834381282,-0.9215422589331865,0.5465851575136185,-0.6102068782784045,-0.7900002002716064,-0.594079083763063,0.9787777117453516,-0.07263855449855328,-0.08289182977750897,-0.3854863499291241,-0.871746638789773,0.22009547613561153,-0.38309940230101347,0.8163153482601047,-0.2819142732769251,0.06459369417279959,0.5713939550332725,-0.5056600905954838,0.25179448956623673,0.4404306565411389,0.02120831236243248,0.5509462310001254,0.16935526160523295,-0.3874759040772915,-0.14447684027254581,-0.40765224443748593,-0.013961009215563536,-0.8700902289710939,0.4443527953699231,-0.6723890267312527,-0.04636948788538575,-0.42146400548517704,0.21933848969638348,-0.9669348015449941,0.578689344227314,-0.8237746530212462,0.2232317253947258,0.6356648234650493,0.4611796303652227,-0.39934313111007214,0.7136454130522907,-0.4243354224599898,0.9095809427089989,-0.5727573595941067,-0.70512023428455,-0.8978826734237373,-0.27697531320154667,0.027428424917161465,-0.2536941929720342,0.023478444665670395,0.5758632831275463,0.4373073219321668,-0.25333717418834567,0.14822582015767694,0.21777526708319783,0.3610650496557355,0.31148377107456326,-0.5086380131542683,-0.18534308392554522,-0.18701441353186965,-0.7321197548881173,-0.008131568785756826,-0.7130444780923426,-0.19052850920706987,0.45725581096485257,0.9166926983743906,0.457039050757885,-0.9070449923165143,0.8062225519679487,0.1091685020364821,-0.11488517466932535,-0.92973039066419,0.0182455163449049,-0.8699905322864652,-0.3262439873069525,0.5733254728838801,-0.08251967094838619,0.6800542860291898,-0.5633160122670233,-0.9656782522797585,-0.22996967285871506,-0.5060812272131443,-0.5715874042361975,-0.3119180519133806,-0.11973425233736634,0.42258914932608604,-0.3903238517232239,0.5701734204776585,-0.09783465974032879,0.2377471080981195,0.7809817376546562,-0.2940658270381391,-0.9649531436152756,0.8289258815348148,0.5142832812853158,-0.9117369214072824,0.1165962740778923,0.3775870939716697,-0.17507356265559793,0.5307368519715965,-0.7443505926057696,0.8665694706141949,0.6085829744115472,-0.8528321771882474,-0.6299668396823108,-0.6789410123601556,-0.5670687584206462,-0.7816174668259919,-0.41414254950359464,-0.2039325893856585,0.1948257307521999,0.14436472905799747,0.007995669730007648,-0.6136919413693249,-0.1512118773534894,0.9312327117659152,-0.9293659017421305,-0.24896397348493338,0.5238281195051968,0.13109143311157823,-0.4068198073655367,-0.3835807158611715,0.28225046349689364,-0.8176644793711603,-0.34831797191873193,-0.17721457732841372,0.17742814170196652,0.0029750019311904907,-0.7779198605567217,-0.9126052875071764,-0.8706124029122293,-0.4398847189731896,0.3967831484042108,0.3402230362407863,-0.11788075091317296,0.46468270802870393,0.2819362860172987,0.4879437009803951,-0.6124247252009809,0.7312103528529406,-0.2814217424020171,-0.2241423400118947,-0.8345268201082945,0.724394194316119,0.9769356320612133,-0.9979749456979334,-0.08452372904866934,-0.3886162997223437,0.802469146437943,0.41131129255518317,-0.7093106149695814,-0.645730116404593,0.028466784860938787,0.5665750536136329,-0.2735270857810974,-0.6480645211413503,-0.7483470640145242,-0.5251572486013174,-0.8723136009648442,-0.38077748799696565,-0.2687864382751286,-0.14289808366447687,-0.01087462343275547,-0.24309625755995512,-0.5089770806953311,-0.3082949868403375,0.9986178250983357,-0.8583104442805052,-0.6082156761549413,-0.9746771003119648,0.25256257224828005,-0.20398372737690806,-0.2258076649159193,0.3984072217717767,0.9518854971975088,-0.4659949657507241,-0.0666210912168026,-0.03230146551504731,-0.6821692190133035,0.8396339658647776,-0.9957194835878909,-0.8417222425341606,-0.7517314311116934,0.9713223855942488,-0.42551644006744027,-0.23980432422831655,-0.8247956903651357,0.2919448665343225,0.39392728358507156,-0.8914897302165627,0.7776839942671359,0.9973001247271895,-0.023954615462571383,-0.757878930773586,0.12028583232313395,-0.4583370485343039,-0.04113796027377248,0.13527334574609995,0.519696285482496,-0.46567506063729525,-0.509217700920999,-0.094389240257442,0.44470869610086083,-0.43245560163632035,0.3410838916897774,-0.8112285365350544,0.4589127404615283,-0.6707578022032976,-0.22308054100722075,0.7882211152464151,-0.4742744737304747,0.3250078968703747,0.02331126620993018,0.342324152123183,-0.300704597029835,0.7193633913993835,0.8889475213363767,0.2077403082512319,0.3229489135555923,0.8144334373064339,-0.11038791667670012,-0.13140297960489988,-0.6985680148936808,-0.9799202410504222,0.4963721497915685,-0.45268370350822806,0.7640580628067255,0.622883961070329,-0.7316863667219877,-0.4151546782813966,0.8082591299898922,0.8702599531970918,-0.4479956766590476,0.6700937584973872,-0.46247878298163414,0.8062937124632299,-0.11764236260205507,-0.3511977638117969,0.34073757473379374,-0.0032391627319157124,0.4654852254316211,-0.0036697969771921635,-0.9655447616241872,-0.1462820335291326,0.9815327487885952,-0.9810121953487396,-0.42190157156437635,-0.5324545227922499,-0.6763039310462773,-0.1991595160216093,-0.5612470535561442,-0.08087904378771782,0.9490772066637874,-0.6545173246413469,0.12188434693962336,0.7365629198029637,-0.12095910683274269,0.8868250367231667,-0.49399844463914633,-0.2560557359829545,0.4325065230950713,-0.006697158794850111,-0.09018839942291379,0.14062147960066795,-0.9961285218596458,0.22042367327958345,0.23006645031273365,-0.288942136336118,0.8182148588821292,0.41944272443652153,-0.5496549219824374,-0.13474431727081537,-0.44240788416936994,0.18058062391355634,0.21508774859830737,0.9522302043624222,0.24588564923033118,0.2791002355515957,-0.8115774798206985,0.9814286576583982,0.8157150307670236,0.6286742566153407,0.3117207936011255,-0.03316838713362813,-0.8388096275739372,0.6156969149596989,-0.5112761338241398,-0.3377751996740699,0.44346256367862225,0.08292643213644624,0.9732114081270993,-0.41219081776216626,-0.683849941007793,-0.9213970345444977,0.055187799502164125,-0.12777067255228758,-0.04574882052838802,-0.5719910520128906,-0.19444100884720683,0.004701189696788788,-0.6585996667854488,-0.0064625865779817104,-0.7869467078708112,0.3824933827854693,0.028429617639631033,0.5673957876861095,-0.4252315666526556,0.6046562967821956,0.22470263438299298,0.89716618321836,-0.32287522917613387,0.7549214232712984,0.16063974425196648,0.8052769172936678,-0.1024412545375526,-0.4395581469871104,-0.8785027996636927,-0.32379689579829574,-0.6143760322593153,0.1965387030504644,0.3921376680955291,-0.9485626202076674,-0.85538673074916,0.16076380014419556,0.8906847508624196,-0.5975896860472858,0.13826222391799092,0.42340084724128246,-0.7977684321813285,-0.02587874047458172,-0.8520526220090687,0.8423468270339072,0.9518481930717826,0.9459780133329332,0.6748737250454724,-0.6251869765110314,-0.7043113950639963,-0.9927300126291811,0.8499552984721959,-0.1525619155727327,-0.736605822108686,0.6755020157434046,0.17310317233204842,-0.7245364403352141,0.2522069769911468,0.24792116321623325,-0.9755372293293476,-0.6391480448655784,0.6969758775085211,-0.16536335740238428,-0.6679094037972391,-0.21074076369404793,-0.04119624802842736,-0.47178672393783927,0.7095524780452251,0.17823691898956895,0.29730675043538213,-0.3111296743154526,-0.471588350366801,-0.18975033145397902,0.37789113307371736,-0.5719069493934512,0.37769724940881133,-0.8504247423261404,0.9827398606576025,0.9974658279679716,-0.4617333151400089,0.3871937021613121,-0.2058195611461997,-0.8043061573989689,-0.8196705700829625,0.9281797474250197,-0.5375005011446774,0.7988638058304787,-0.34598949598148465,-0.5283113401383162,-0.7414362663403153,0.5818836311809719,0.8616772429086268,0.21815731097012758,0.18107318319380283,0.4286781274713576,0.188110978808254,0.6309541654773057,-0.33921776432543993,0.9583625998347998,0.9936699224635959,-0.048521935008466244,-0.8041575346142054,-0.915299812797457,0.47077030036598444,0.14642386510968208,0.06476089777424932,-0.5582138132303953,0.169807237572968,0.627962208352983,-0.6141574620269239,0.9234830443747342,0.5837949947454035,-0.9142920258454978,-0.8269038717262447,0.9258733363822103,-0.07728993194177747,0.8003298579715192,0.5338723156601191,-0.13160455832257867,-0.06253512483090162,-0.9353160043247044,-0.6443289634771645,-0.41965956753119826,0.8914935765787959,0.10668486030772328,-0.9616630328819156,0.8048123326152563,-0.6353240925818682,0.5054598897695541,0.2077467436902225,-0.7671782546676695,-0.2336192335933447,0.8841407471336424,0.11358710937201977,0.16837872751057148,0.4772853390313685,-0.01737543661147356,-0.10566184716299176,-0.6459406148642302,-0.7319220099598169,-0.09209861792623997,-0.052141040563583374,0.6971551175229251,0.013738453388214111,-0.3097006189636886,0.5743244010955095,0.8781942380592227,0.33904422633349895,-0.5958841349929571,0.5731738549657166,0.3864519251510501,-0.580797194968909,0.30751738930121064,0.11368010612204671,0.6108447657898068,-0.45352874090895057,0.612877395004034,-0.286627315916121,0.44522587629035115,0.1736696409061551,-0.7853062194772065,0.03426028974354267,0.43726922338828444,-0.20878198789432645,0.16477468190714717,-0.5396666182205081,-0.10960305482149124,-0.45524210250005126,0.8690721457824111,-0.8503899560309947,0.7990167457610369,-0.07975549902766943,0.9159254622645676,0.4708716287277639,0.8192743579857051,-0.39552305173128843,0.08102318551391363,-0.5987115912139416,-0.43372418638318777,0.9949919548816979,0.9716906142421067,0.28403337532654405,0.5968051622621715,-0.5880609070882201,-0.6648357762023807,0.6882614740170538,0.8361709108576179,0.1830497500486672,-0.09740806184709072,-0.22787134582176805,-0.39189888071268797,0.5877092941664159,-0.027270976919680834,0.4128610189072788,0.05162520706653595,-0.88867989461869,-0.8785730735398829,0.8213982018642128,-0.9608632605522871,0.9486673651263118,0.7259092247113585,-0.762503051199019,0.02944243047386408,-0.379419369623065,0.4086735821329057,0.10366096114739776,0.8628101786598563,0.9391745193861425,0.2152732047252357,0.8908873936161399,0.11398299736902118,-0.4692472801543772,0.4802588727325201,0.801981792319566,-0.8663375074975193,0.6619093017652631,-0.5249838116578758,0.18049616226926446,-0.0770525555126369,0.029190690256655216,-0.9013376533985138,0.2543975184671581,-0.7341486304067075,0.899354784283787,0.19768509455025196,0.6409139963798225,-0.5448272526264191,0.3613606235012412,0.8488353984430432,-0.2887398530729115,-0.04707321710884571,0.7358576911501586,-0.08461332507431507,-0.5139600611291826,0.6562834037467837,-0.8975255242548883,-0.086113465949893,0.7617733548395336,0.51679104892537,-0.2527657528407872,-0.869074878282845,0.08824782259762287,-0.7901932285167277,-0.9367904951795936,0.34870732855051756,-0.8082862626761198,0.774209173861891,0.9069479652680457,0.8650114280171692,-0.2722464189864695,-0.9986719908192754,0.15196522045880556,0.007009564898908138,-0.20449755527079105,0.8412103708833456,-0.6480871327221394,0.11820508725941181,-0.177565926220268,0.6456189029850066,0.5170115064829588,0.41685961186885834,-0.37226765137165785,0.6946123400703073,0.6011545681394637,0.14174357149749994,-0.438917214050889,-0.9422991443425417,0.07748474646359682,-0.04634107556194067,0.9111385089345276,-0.18272893782705069,0.6034528249874711,0.8110723346471786,-0.9940904616378248,-0.43156525725498796,0.9971713186241686,-0.7034372417256236,0.5955631514079869,-0.5116052739322186,-0.8356161206029356,0.3968014153651893,-0.28426275588572025,0.9709505089558661,-0.42412262642756104,0.8669826500117779,0.3415162703022361,0.12331363093107939,0.03723763395100832,0.2622423726134002,-0.6336912540718913,0.8783338526263833,-0.12028985191136599,0.41917671961709857,0.6096710916608572,0.08686876809224486,0.5751603795215487,-0.4879815527237952,-0.8268771888688207,0.2679544072598219,0.3397861607372761,0.9852168788202107,0.2861546934582293,0.496082020457834,0.9838973544538021,0.6833125180564821,-0.5983267766423523,-0.12802495202049613,0.6711095245555043,0.1760440543293953,-0.28746595000848174,-0.4468939960934222,-0.00860489858314395,0.024578881915658712,-0.5859841834753752,-0.7891408395953476,-0.3003621478565037,0.012057053856551647,-0.06697091273963451,0.4903563526459038,-0.6388517511077225,0.08542626025155187,0.6096060057170689,0.14679997647181153,0.7598057291470468,-0.03793840482831001,0.18240125570446253,-0.7632615584880114,0.5519670816138387,0.41380954161286354,-0.9974606274627149,-0.03727468475699425,-0.7110670721158385,0.207897974178195,-0.616943399887532,-0.096462014131248,-0.044991856440901756,-0.5205681724473834,0.7104396056383848,-0.9875251185148954,0.13100119028240442,0.5524994544684887,0.2982518398202956,0.609844692517072,-0.5379194305278361,0.4181109741330147,-0.5480819004587829,-0.9709986317902803,0.5667912219651043,0.4045777111314237,0.6196901709772646,-0.037538628559559584,0.1505961949005723,0.3301452975720167,0.1594010591506958,-0.630864726845175,0.7817278555594385,0.8849859102629125,-0.6409666459076107,-0.31172162014991045,0.5135773848742247,0.021158877294510603,-0.9763362472876906,0.8837410947307944,-0.8766243294812739,-0.39805175457149744,0.8686094889417291,-0.8194939293898642,0.03574687661603093,0.06281229481101036,-0.3134915577247739,-0.454683318734169,-0.6356740589253604,-0.9691669852472842,-0.9775531045161188,-0.40034626657143235,0.14206403167918324,-0.3858412466943264,-0.5346294497139752,0.3920773658901453,-0.07104673190042377,-0.26116987923160195,0.9603596897795796,0.20381097216159105,-0.7630958468653262,-0.7567876670509577,-0.176290029194206,-0.19084774423390627,0.6735755540430546,0.056918400805443525,-0.6175545398145914,-0.9545180820859969,-0.5972893196158111,-0.18930828059092164,0.06229169014841318,-0.6390749639831483,-0.3435122799128294,-0.5200101919472218,-0.8486076602712274,-0.014585818629711866,-0.010840901639312506,-0.2373987501487136,0.7811559713445604,0.16616557957604527,0.6715267398394644,-0.3381915898062289,0.4032395575195551,-0.532181229442358,0.23991657234728336,-0.7227269178256392,0.32946349773555994,0.13141832314431667,0.36324762227013707,-0.2616996425203979,-0.8309739418327808,0.6990832570008934,0.8593576848506927,-0.7192873619496822,0.026388073805719614,0.7522528450936079,0.4671024652197957,-0.426660087890923,-0.48116735462099314,-0.9401428001001477,-0.6708240457810462,-0.22250342136248946,0.46867159754037857,-0.3176327049732208,0.7628930476494133,0.24450737982988358,0.9026453536935151,0.8962112013250589,0.8808188941329718,-0.8841604311019182,-0.666115015745163,0.8079388123005629,-0.29329105047509074,0.9703737776726484,0.1343800500035286,0.9988953252322972,-0.22169607784599066,-0.07622742187231779,0.37570738745853305,-0.7351599563844502,-0.09810984786599874,-0.9586486141197383,-0.7102975607849658,-0.6104669491760433,-0.10451459977775812,0.10822598356753588,0.8382935067638755,0.11217856546863914,-0.6011239751242101,-0.8575115283019841,0.45943482546135783,-0.8751206188462675,0.47862123418599367,0.31111662555485964,0.40467359125614166,0.13086097547784448,0.5985099272802472,-0.31744464626535773,-0.20048097427934408,-0.6565211275592446,0.15436644619330764,0.2985287928022444,0.23626270750537515,0.7920548273250461,-0.9496640684083104,-0.3667971105314791,0.6551029346883297,0.22825211333110929,0.3508244138211012,-0.7593237161636353,-0.36105693876743317,0.4163437085226178,0.14575792476534843,-0.513555871322751,0.03792207734659314,0.2635907856747508,-0.039543524384498596,0.17112013651058078,-0.4686373295262456,-0.260781770106405,0.7112630838528275,0.6685921135358512,0.0442165439017117,0.9701239299029112,0.7004860294982791,0.4083116268739104,-0.6037475164048374,0.4402689333073795,-0.1317902929149568,-0.2882020650431514,0.17100808257237077,-0.9913603742606938,0.6993208723142743,-0.3624863512814045,-0.07105804048478603,0.35996820870786905,0.10040899785235524,-0.5400840993970633,-0.25657740561291575,-0.016944903880357742,0.8317104098387063,0.4695631028153002,-0.23874324234202504,0.6868687593378127,-0.982217323500663,-0.8876227815635502,-0.6201688526198268,0.2881602612324059,-0.9365495136007667,0.46234971191734076,-0.06380891427397728,-0.8548996187746525,-0.007389797829091549,-0.282211234793067,-0.7283094767481089,-0.48087086295709014,0.7091153250075877,0.872492833994329,-0.5479558962397277,-0.24904633173719049,0.8536826181225479,-0.12765331519767642,-0.22334469016641378,0.3602173621766269,0.31535420566797256,0.8861079011112452,0.20258542941883206,-0.3641084600239992,0.521586119197309,0.7731668585911393,-0.6491586253978312,0.786176931578666,0.9429566562175751,-0.10694584622979164,-0.05515508912503719,0.08831028081476688,0.05424166191369295,-0.09588997019454837,0.20260698487982154,-0.27288331603631377,0.7692793877795339,-0.13289101934060454,0.7576506696641445,-0.2511359443888068,0.30817556334659457,0.9114347877912223,-0.24579584645107388,0.7459854451008141,0.780953602399677,-0.9850063156336546,0.15540291042998433,0.5610436797142029,0.7690695454366505,0.8460396318696439,-0.16680948343127966,-0.7597514926455915,-0.5605475534684956,-0.051118079107254744,-0.8423932990990579,-0.5025847051292658,-0.6151837585493922,0.9507355215027928,0.8947459142655134,-0.7553315842524171,-0.6007828768342733,0.8359323269687593,-0.5716326874680817,0.008943171706050634,-0.10097995679825544,0.06481813825666904,-0.20892879460006952,-0.4370991876348853,0.22316406900063157,-0.23675389867275953,0.48679337184876204,-0.5245296638458967,-0.8631855342537165,0.4951147111132741,-0.9288853304460645,0.5409972062334418,-0.9918362270109355,-0.7504145591519773,0.09157486911863089,-0.3797569554299116,0.6360494066029787,0.14966066926717758,0.6483676852658391,0.5883448887616396,-0.23369177104905248,-0.17060940619558096,-0.30985891120508313,-0.6296740081161261,-0.16364361718297005,0.26535420026630163,-0.18301345547661185,0.416166418697685,-0.9169281320646405,0.42970033548772335,-0.4411149797961116,0.605454592499882,0.17907166574150324,0.3353297524154186,0.09387415461242199,0.4282866045832634,-0.8654635879211128,-0.06634407257661223,0.8746495777741075,0.8506736657582223,-0.6333788577467203,-0.31415099930018187,-0.10565014462918043,-0.22956861928105354,0.26442353846505284,0.5975278569385409,-0.8277280917391181,0.7155778501182795,0.9270347668789327,0.2246004594489932,-0.484065568074584,-0.11554914712905884,-0.7406285181641579,0.1633717566728592,-0.2534629823639989,-0.40888364845886827,0.4056671652942896,0.543561426922679,-0.6332675577141345,-0.7806241856887937,-0.10712395189329982,0.10747401369735599,0.9137526857666671,-0.4287560200318694,-0.26290587102994323,0.9259189204312861,0.6039700214751065,0.650672456715256,0.3603001832962036,-0.7680785586126149,-0.759603607468307,0.9104950209148228,0.44887015130370855,-0.8718455932103097,-0.2214508531615138,0.0342230461537838,-0.73807483445853,-0.9957625726237893,0.5111447521485388,0.9369964194484055,0.07370819291099906,0.8743809978477657,0.7876243130303919,-0.7830565432086587,0.7513843947090209,0.5355706722475588,0.4205149747431278,0.8448372287675738,-0.9266430153511465,0.9981005862355232,0.14115938264876604,0.3964464501477778,-0.4377371724694967,-0.21791487513110042,0.008803470060229301,0.36534692812711,-0.4446220141835511,-0.9931483389809728,-0.11666832398623228,-0.8746493887156248,-0.48597733210772276,-0.27145130140706897,-0.7610789895989001,0.4701047702692449,-0.1757048824802041,0.28328473679721355,-0.45283611211925745,0.497635240200907,-0.7847938169725239,0.517804847098887,-0.7678516977466643,-0.9567888155579567,0.17382331425324082,-0.6612035105936229,0.5176518559455872,-0.4939519981853664,0.8833370287902653,-0.2455812473781407,-0.7238739994354546,-0.07996238162741065,0.20252269599586725,0.09439316857606173,0.5411369637586176,-0.6876251469366252,-0.7082250532694161,-0.9959631287492812,-0.5425830171443522,-0.03127411566674709,0.6703241658397019,-0.21504268748685718,0.2592962821945548,0.5050724949687719,-0.6647634683176875,-0.039941234048455954,-0.010560583788901567,0.7474143612198532,-0.020142323803156614,-0.1240120087750256,0.8490958828479052,0.041240295860916376,0.3967177593149245,-0.05364262266084552,0.411138151306659,-0.17505831411108375,-0.6708868187852204,-0.5227761510759592,-0.3149218815378845,0.5902076796628535,-0.39489023154601455,0.5583220818080008,0.35142927477136254,0.9865077990107238,0.7933743558824062,0.47116178553551435,0.7094504074193537,-0.13276544259861112,0.7574947401881218,0.507282204926014,-0.36785707669332623,0.7256532958708704,-0.7144605182111263,0.5350420190952718,-0.9878670088946819,0.5251081110909581,-0.7095967130735517,0.6923935529775918,0.09517976501956582,0.32979584438726306,-0.2548912293277681,-0.26175500778481364,-0.2782851033844054,0.5542214456945658,-0.5822182861156762,-0.22085181530565023,0.6543290261179209,-0.19416421372443438,-0.8222037395462394,0.5810280335135758,-0.7001427132636309,0.11979623371735215,-0.6478540934622288,-0.48375336127355695,0.7974201249890029,-0.03229865152388811,-0.02474124077707529,-0.29952924977988005,0.6651958390139043,0.12887915410101414,-0.33683345280587673,0.13666013162583113,0.9283623406663537,0.8016221905127168,0.6133840847760439,0.8931959499605,0.302824083250016,0.8705361364409328,0.36478754691779613,-0.9255843781866133,-0.4011260876432061,-0.9319776673801243,-0.125135428737849,-0.6611885051243007,0.6056810962036252,-0.8852173085324466,0.38206720165908337,0.4927394464612007,0.679703030269593,0.5197144625708461,-0.5806083078496158,-0.4976701317355037,0.4878746522590518,0.7699285880662501,-0.7921008449047804,0.48051761370152235,0.22905199229717255,-0.8418563869781792,0.8323171106167138,0.7623255434446037,-0.15258474554866552,-0.9535640892572701,-0.6700315438210964,0.9660467621870339,0.9611485763452947,0.4343536701053381,0.7533153961412609,0.4279286786913872,-0.23647712683305144,0.10839258413761854,0.10741681419312954,0.6746303103864193,-0.5598523919470608,0.3215690581128001,0.7134968745522201,0.5138886072672904,0.9554966278374195,0.5757789998315275,-0.8023563930764794,0.39264769572764635,-0.43829866871237755,0.2906604027375579,0.5359603385441005,0.775221758056432,0.17827840335667133,0.6451682429760695,-0.8506790702231228,-0.8843061649240553,-0.4508525785058737,0.3316496084444225,0.5970142986625433,0.08104958245530725,0.3348834435455501,-0.797281289473176,-0.0778171424753964,0.8099489528685808,0.5189696210436523,0.7367109977640212,0.19622031459584832,0.3822258492000401,0.34745607106015086,-0.7395482659339905,-0.44139535864815116,-0.6068722205236554,0.7048522611148655,-0.6161567098461092,-0.03183768456801772,-0.8289323383942246,0.05687901098281145,-0.016787325032055378,-0.6621350226923823,0.5479778507724404,0.05650785751640797,-0.95668756775558,-0.638752140570432,0.9387528290972114,0.5018396438099444,-0.3296104078181088,-0.3260919968597591,-0.7138892784714699,-0.8555652489885688,-0.1493221172131598,-0.31442021019756794,0.605178342666477,0.8248197943903506,0.9522461383603513,-0.42410555435344577,-0.6159901074133813,0.05554708559066057,-0.8751071756705642,0.32662049354985356,0.624948613345623,0.23748984513804317,-0.5754458103328943,0.40526448376476765,0.11988946609199047,0.8190886471420527,-0.8413266758434474,-0.2528705708682537,-0.06956104515120387,-0.7622915250249207,0.030563125386834145,-0.44679248379543424,0.5105219753459096,0.3646391215734184,-0.917842180468142,0.6386979073286057,-0.6998787894845009,-0.8468742961995304,-0.05598824005573988,-0.44746822910383344,-0.36751575814560056,-0.40744771296158433,0.8516274527646601,0.7854789635166526,-0.5314165526069701,-0.30326635390520096,-0.7229214333929121,0.49472654704004526,0.8702221536077559,0.4244045363739133,-0.6981912930496037,0.5231479937210679,0.354350155685097,0.16541751055046916,0.4057050724513829,0.516753597650677,0.8291513631120324,0.062156766187399626,-0.440333453938365,0.153843414504081,-0.041363506112247705,-0.9981541954912245,-0.14992771809920669,-0.7430628719739616,-0.23385725682601333,-0.04320069681853056,-0.08919952064752579,0.058316932525485754,0.4341813479550183,-0.46510638343170285,0.9477829714305699,-0.16375867603346705,-0.7406477360054851,0.4248999571427703,-0.3063442832790315,-0.9285343056544662,0.9669557963497937,0.8428301340900362,-0.50148342596367,0.14271821780130267,0.5497987223789096,-0.13566224742680788,0.1299104830250144,0.05603360803797841,0.39373747492209077,0.2376437233760953,0.3122501615434885,-0.6693308693356812,-0.08728319592773914,0.4975075009278953,-0.43112395517528057,-0.6076245647855103,0.9993455088697374,0.22147979820147157,0.09527425514534116,-0.7816936299204826,-0.793231482617557,0.5945291272364557,-0.18350014509633183,-0.11588271195068955,-0.7424489865079522,0.6828778185881674,0.13310399977490306,0.5782370008528233,0.5443865018896759,0.109660510905087,0.8257728549651802,-0.910606131888926,0.8615841739811003,-0.5838585481978953,0.3327147695235908,0.3450466920621693,-0.2949284468777478,-0.22815311746671796,-0.3694894313812256,0.13278502086177468,-0.720366797875613,-0.3218513559550047,0.1221294030547142,0.20265965815633535,-0.09144172305241227,-0.7000861931592226,0.8250395637005568,-0.9710160796530545,0.6766461604274809,-0.317093001678586,0.0025617629289627075,-0.3424347904510796,-0.6991810519248247,-0.559244817122817,-0.15395736135542393,0.5732143260538578,-0.686343930196017,0.11727343499660492,-0.3716875980608165,-0.3899194314144552,0.6904354891739786,0.09714778233319521,0.5510002924129367,0.19175863778218627,0.3244797829538584,-0.1170069519430399,0.59259112784639,0.7567521198652685,0.06342836003750563,-0.1828891453333199,-0.4971670098602772,0.4980863039381802,-0.8165969615802169,-0.13400992937386036,-0.5176011910662055,0.3487804103642702,-0.2131374143064022,-0.9150434853509068,0.057716334238648415,-0.19272838020697236,0.04081731662154198,-0.42617267556488514,-0.057815850246697664,0.1810723664239049,-0.5692995339632034,-0.3356705750338733,0.753083199262619,0.7133606625720859,-0.39013807429000735,-0.5628854599781334,-0.18926517572253942,0.41929736267775297,0.5218491037376225,0.9042124943807721,-0.8786178561858833,0.7278324901126325,0.4824689500965178,-0.33279688050970435,0.984906445723027,-0.34236284997314215,0.8508730032481253,-0.4687138609588146,0.2957893367856741,-0.04805180663242936,0.4762592166662216,-0.5360259884037077,0.11925684846937656,-0.09365481929853559,-0.0800658892840147,0.24521263130009174,0.6419661561958492,0.8216088335029781,0.706003543920815,-0.14613489527255297,0.5051039713434875,-0.214110572822392,0.46398272505030036,-0.694211624097079,-0.7378732129000127,0.22864215541630983,-0.4295739275403321,0.960845367051661,-0.46095358580350876,-0.9084296617656946,0.4814362907782197,-0.34623777074739337,-0.8479890236631036,-0.3944285996258259,-0.5590175297111273,0.9698074562475085,0.19305425928905606,0.7847774056717753,-0.8476060945540667,0.5347581412643194,0.7414923952892423,0.7588017745874822,-0.47511028638109565,-0.09789130417630076,-0.4287074813619256,-0.7740574842318892,0.6914734188467264,-0.7397247664630413,-0.7027923348359764,0.6361984522081912,-0.25579544994980097,0.15453885635361075,-0.3268260662443936,-0.9467880423180759,-0.7953942655585706,0.6930955592542887,-0.21082362765446305,0.4194252686575055,-0.8552513155154884,0.15008509950712323,-0.7820906760171056,-0.507220006082207,0.8393184165470302,0.04211421078070998,-0.25320645049214363,0.07455001305788755,0.17013434460386634,-0.8227944993413985,-0.5680228713899851,0.16266539879143238,0.5643612015992403,-0.6045788419432938,-0.8973782565444708,0.43695516837760806,0.7997460565529764,-0.8023359053768218,0.767977197188884,-0.1987165524624288,0.6353978728875518,0.29737479612231255,-0.5783754009753466,-0.9424670827575028,0.47018215246498585,0.33847295911982656,0.0157889393158257,-0.14149597752839327,-0.05805203225463629,-0.9886317267082632,-0.8659390294924378,0.483386077452451,0.428869251627475,0.3152793957851827,-0.8500252515077591,-0.7901687482371926,-0.13616088731214404,-0.6370198670774698,-0.6457058023661375,-0.25898558320477605,0.7607952947728336,0.03838785272091627,-0.038038660772144794,-0.6420479468069971,0.7375394012778997,0.6942043132148683,0.03211973933503032,-0.15224983589723706,-0.9327695472165942,0.2986599807627499,-0.7780119604431093,-0.04570735152810812,-0.6730688423849642,-0.9427716755308211,0.33437352906912565,-0.7097610277123749,-0.29127049120143056,0.5726310536265373,-0.9599150894209743,-0.11067679896950722,-0.4190768450498581,0.30981593020260334,0.6677297111600637,0.366447847802192,-0.9061811524443328,0.34128028340637684,-0.2635467713698745,-0.3705964763648808,-0.9046715046279132,0.4673913070000708,0.4017407805658877,0.37354219425469637,0.14345884416252375,-0.828396154101938,-0.053603991866111755,0.922769489698112,0.15998219000175595,-0.5990738193504512,0.4066255008801818,-0.23129937890917063,0.7218943452462554,-0.16364876041188836,0.5344322472810745,-0.513985637575388,0.24032544158399105,-0.6239058105275035,0.4915983732789755,-0.8983540749177337,0.09270341787487268,0.00663028284907341,0.9848919701762497,0.752417828887701,-0.5890889931470156,0.6905947243794799,0.9919423921965063,-0.02651441330090165,0.9344883146695793,-0.19790062448009849,0.21297777025029063,-0.5635405881330371,0.1083972305059433,-0.5522047029808164,-0.43174179550260305,-0.050225899554789066,-0.18047125171869993,0.8221950680017471,0.2930890782736242,-0.4949810756370425,-0.5291471239179373,-0.01912357611581683,-0.72330930409953,-0.4159533027559519,-0.32395542599260807,0.15359795093536377,0.2839993382804096,-0.3826518151909113,0.05637274822220206,0.8091894369572401,-0.676829936914146,0.9069052892737091,0.88917396357283,-0.623813936021179,0.46334936656057835,-0.531338675878942,0.7910768184810877,0.05121463444083929,0.836157560814172,0.47504098946228623,0.9983854205347598,-0.14533607941120863,-0.746818630490452,-0.14172696601599455,-0.037597781512886286,0.8516873265616596,0.984480859246105,-0.26612964225932956,0.7655162056908011,-0.40105211082845926,-0.8428490632213652,0.0832292977720499,-0.49757798155769706,-0.7434835187159479,-0.8369479132816195,-0.7102219662629068,-0.5692733265459538,0.686758529394865,-0.12738053826615214,-0.8083272646181285,0.7265960928052664,0.6282587726600468,-0.8264267174527049,-0.3000238500535488,-0.3157631759531796,-0.7796116909012198,0.3243081900291145,0.7242635875009,-0.8520551007241011,-0.5923948371782899,0.15448576910421252,-0.10488935513421893,-0.9950061314739287,-0.860995807684958,0.7837274712510407,0.5131065542809665,-0.7735242717899382,0.029183844104409218,-0.6884559574536979,0.339675800409168,0.2703740205615759,0.17044026218354702,0.0933345165103674,0.16918986150994897,0.795005714520812,0.3351170662790537,0.38423101883381605,0.13450764631852508,0.49285911209881306,-0.9614320313557982,-0.9595000050030649,0.6669831620529294,-0.1754555581137538,0.26713304221630096,-0.6089175534434617,0.9810585388913751,0.006238636560738087,-0.7213304177857935,0.8233499578200281,0.26618436072021723,-0.567589448299259,-0.16215361887589097,0.6339844949543476,0.45725458953529596,0.6201751125045121,-0.7230572244152427,-0.15894446708261967,0.8501180484890938,-0.8465227303095162,0.852071036119014,0.9196158708073199,0.8128229011781514,-0.23069061571732163,0.4596851929090917,0.28036842914298177,0.9520654329098761,0.8343580598011613,0.0970946648158133,-0.605874078348279,0.1967142983339727,0.6969657917506993,0.0639146720059216,0.21957003558054566,-0.3796245027333498,0.06165383197367191,-0.968090966809541,0.727284200489521,0.9296408202499151,-0.4890611977316439,0.21785077080130577,0.05085592623800039,0.1437754794023931,-0.44930531503632665,-0.7148906397633255,0.17771849455311894,0.5695866630412638,-0.5361263598315418,0.8673694133758545,0.9583845059387386,-0.512692071031779,0.7195764547213912,-0.7240727380849421,0.8931394317187369,-0.13858366291970015,-0.9935766500420868,0.8655989016406238,0.36518351174890995,-0.45973951695486903,-0.8635030379518867,0.7407368770800531,0.2256816839799285,0.5355034000240266,0.9944834765046835,-0.0793142351321876,0.9156100740656257,-0.30486050993204117,0.3570353742688894,0.5363157354295254,0.9746867287904024,-0.44026492396369576,-0.7658269610255957,0.13836763752624393,-0.7146797082386911,0.5483068628236651,0.5199765055440366,-0.7092876276001334,0.8295553363859653,0.6866523576900363,-0.03707148693501949,-0.08697923552244902,-0.5083205029368401,-0.88075215741992,0.14327401854097843,0.34930778574198484,-0.9082296937704086,0.3209748715162277,0.7851949399337173,0.8428405979648232,-0.5483677159063518,-0.48503545159474015,-0.6116020265035331,-0.5675806049257517,0.5640888502821326,0.4165053768083453,0.3747829287312925,-0.8183063454926014,-0.4437549221329391,-0.9494738150388002,0.9618675629608333,-0.32159887813031673,-0.3808214431628585,0.9085894753225148,0.699874869082123,-0.09125224128365517,0.6596603994257748,0.7295025419443846,0.9558968837372959,0.7776764202862978,0.5200902256183326,0.49439122434705496,-0.6377387512475252,0.8970063244923949,-0.8503984566777945,-0.5100337867625058,0.6545248003676534,0.9509986857883632,0.3559001237154007,0.5938629508018494,0.568418063223362,-0.3052022410556674,0.8512353654950857,0.7266834257170558,0.6652092463336885,0.777930960059166,0.17827153392136097,0.5369949098676443,-0.46922594774514437,0.5824002181179821,0.7367091360501945,-0.28344412753358483,-0.22511631017550826,-0.09024957148358226,-0.5836075823754072,-0.14194422867149115,0.608160400763154,-0.5221381168812513,0.5639929035678506,0.8283015638589859,0.5222656205296516,-0.08344944939017296,0.23111345432698727,0.4430568111129105,0.8221021872013807,-0.7023137137293816,-0.10600986238569021,-0.04301068698987365,-0.0010935799218714237,0.0916208396665752,0.2184857353568077,-0.894317009486258,0.07314024167135358,-0.4390807026065886,-0.836287472397089,-0.4152389573864639,-0.015607551671564579,-0.6635589157231152,-0.13171834917739034,-0.5940633616410196,0.7659358531236649,0.4947816412895918,0.6174004715867341,0.5087149059399962,0.453499318100512,-0.15729481540620327,0.5902423947118223,0.14694424718618393,-0.46589454216882586,-0.6770949736237526,0.9894492081366479,-0.1027370928786695,-0.7375378645956516,0.6209139316342771,0.7334952070377767,0.4824631721712649,-0.6101775979623199,0.107723378110677,-0.0013193553313612938,-0.49658607924357057,-0.5926774223335087,0.971874613314867,-0.1003202861174941,-0.4005450247786939,0.052851113490760326,0.05411272216588259,-0.03119221655651927,-0.3019725023768842,-0.7944060466252267,-0.3980545341037214,0.5548200337216258,-0.060475049540400505,0.0055701639503240585,-0.7001119717024267,0.5854296726174653,0.15048939175903797,0.7749522519297898,-0.6340311565436423,0.5911693451926112,-0.190681176725775,-0.6229442059993744,0.2856854652054608,0.7327272286638618,0.4281276222318411,-0.5479548661969602,-0.6355290496721864,0.26530466601252556,0.6908779856748879,-0.8845325293950737,0.38286558305844665,-0.35255419509485364,0.38313537696376443,0.3211211529560387,0.008034943137317896,-0.08112356998026371,0.40854429733008146,0.4818513370119035,-0.8721917890943587,0.5281751262955368,-0.4672408322803676,0.22793212812393904,0.568055278621614,-0.3386969887651503,0.20683938870206475,-0.1230362500064075,-0.20900673465803266,-0.01282200450077653,0.0909390076994896,0.7809750544838607,0.5149919213727117,0.8254334190860391,0.6118599972687662,-0.9047381412237883,0.6770781241357327,-0.22064342349767685,-0.686095257755369,0.8244442017748952,0.6172478515654802,-0.0595281720161438,0.9180997833609581,0.35991561971604824,0.11380720604211092,-0.03719776915386319,-0.26964565739035606,0.1003710450604558,0.21665564412251115,0.29319368954747915,0.7047018017619848,0.3601697739213705,-0.29126626858487725,-0.3225505342707038,0.3678811527788639,0.783921742811799,-0.9776392835192382,-0.9907631101086736,-0.34383149119094014,-0.36057765129953623,0.9022448533214629,-0.6518502342514694,0.06820610072463751,0.8794370549730957,-0.41572301741689444,0.47027335269376636,-0.9748272774741054,-0.09289372013881803,-0.38675592886283994,0.3414469063282013,0.2570821433328092,0.3561350256204605,0.037624949123710394,-0.7844338407739997,-0.030393786262720823,0.2818838753737509,0.38092129910364747,0.8659020820632577,0.6108311521820724,-0.4742182772606611,0.17640343215316534,-0.17018869007006288,-0.8947324645705521,0.9764784104190767,0.5683471881784499,0.14977315673604608,0.05773643357679248,-0.6088354005478323,0.6841889130882919,-0.2524514184333384,-0.5792307439260185,0.7841431773267686,0.004913690499961376,-0.38288723211735487,0.28838794911280274,0.2941173315048218,-0.3467857874929905,0.21880951197817922,-0.9890717314556241,0.31711999606341124,0.7780844792723656,-0.805442453827709,0.6449650689028203,-0.01579023851081729,-0.05684838118031621,-0.5816092165187001,-0.7004566006362438,-0.7577904192730784,-0.6720294672995806,-0.6810111538507044,0.9860693248920143,0.25499137630686164,0.6508929897099733,-0.09226224711164832,0.7066825502552092,-0.15740925399586558,-0.6432130727916956,-0.7331713950261474,-0.15047109592705965,-0.10267867660149932,0.20305629540234804,-0.868519224692136,0.345977745950222,0.11241892073303461,-0.3789860983379185,-0.35761321894824505,0.21237945929169655,0.26377950608730316,-0.05254135932773352,0.23187590902671218,-0.861653605941683,0.8490338469855487,-0.5958162094466388,-0.8755573350936174,0.25445794872939587,0.845186616294086,-0.25141892582178116,-0.44608353404328227,0.45406189979985356,-0.8764785742387176,0.2776606190018356,-0.5916345911100507,0.7876776335760951,0.24789845757186413,0.36234891787171364,0.05273654079064727,-0.13846326246857643,0.709877060726285,0.28756945161148906,0.6783086196519434,0.5918371570296586,-0.07090663816779852,-0.46133788069710135,-0.31558657018467784,-0.6571120251901448,0.9510924322530627,0.7282556528225541,0.22962208651006222,-0.154348305426538,-0.085827745962888,-0.1896016034297645,0.5403689919039607,-0.1179993855766952,0.2695976048707962,-0.11337604047730565,-0.2778681069612503,0.28201661398634315,0.5799126853235066,-0.038283622823655605,0.5067022196017206,-0.6992074116133153,0.29359887540340424,-0.24530331324785948,0.81510872207582,-0.6331242835149169,-0.17388790845870972,0.7344424403272569,-0.1366278282366693,0.8808419685810804,0.4231244237162173,-0.36410611728206277,-0.8518487270921469,0.6359261842444539,0.11671674810349941,0.9265841478481889,0.3798643546178937,-0.8561359578743577,-0.4182869140058756,0.1944810440763831,-0.7505341661162674,0.7183038620278239,0.03796467510983348,0.5281442659907043,0.9374052369967103,0.476826183963567,-0.936324714217335,-0.13381492579355836,0.5392106059007347,0.8139162305742502,0.052999010775238276,0.9363691741600633,-0.5524542070925236,0.3305222112685442,-0.24936620611697435,-0.5013418360613286,0.4454379640519619,0.21205436903983355,0.8598646651953459,0.6326480559073389,-0.3800344280898571,-0.8383513772860169,-0.12719120178371668,0.5540575836785138,-0.2769934921525419,-0.9960214775055647,-0.5305375405587256,0.45094857830554247,-0.8585585136897862,0.2789711030200124,-0.1437947698868811,-0.46912337467074394,0.9750710548833013,-0.008440197445452213,-0.9461157876066864,0.8726617703214288,0.36938106222078204,0.5841380874626338,0.8283226732164621,-0.14114649267867208,0.7599204974249005,0.24643880734220147,0.20467863976955414,-0.3119446192868054,0.7751335413195193,-0.6473849224857986,0.9401265331543982,0.5697197983972728,-0.5821184199303389,-0.010207440704107285,-0.7379993791691959,-0.8126807562075555,0.03330061165615916,0.3418651935644448,-0.7030077171511948,0.4540479788556695,-0.7445426369085908,-0.08940690336748958,0.7277076691389084,0.14471637643873692,-0.9384667440317571,-0.011461639776825905,-0.3916420340538025,0.4721295004710555,-0.06676304107531905,-0.8253543120808899,0.8543446846306324,0.36615403136238456,-0.11986636323854327,-0.39017778588458896,-0.5812165564857423,-0.27376270852983,-0.9414157127030194,0.5284499879926443,0.0007646344602108002,-0.7967249630019069,-0.011366963386535645,0.6768740676343441,-0.780025917571038,-0.13274077605456114,-0.06576220318675041,-0.356218540109694,0.5285672205500305,0.29931001644581556,0.5307918880134821,-0.7749293297529221,0.2690129498951137,-0.12759351497516036,0.9227918586693704,-0.009649648331105709,-0.4808882065117359,-0.2450897078961134,-0.15715570142492652,-0.2830902449786663,0.21367010800167918,-0.5341922305524349,-0.8108030124567449,-0.548857111018151,0.5608998578973114,-0.11610830668359995,0.5352310920134187,-0.8651969819329679,-0.4140742449089885,-0.1048112828284502,-0.6257522692903876,0.9125006147660315,0.6491772145964205,0.03648265264928341,0.4013101509772241,0.6393592627719045,0.9659808459691703,-0.9894688623026013,-0.46673297323286533,0.49732614774256945,0.7418274618685246,-0.6540680024772882,0.09131804015487432,0.6070472626015544,-0.7103620124980807,-0.3489829325117171,-0.8308971617370844,-0.08098946744576097,0.963833149522543,-0.01770085282623768,-0.10015522222965956,0.9638011809438467,-0.5315793114714324,-0.8983027362264693,-0.42602534499019384,-0.1442374591715634,-0.8010047017596662,-0.5123024876229465,-0.23173186602070928,0.20405883435159922,0.24737177416682243,-0.042221947107464075,0.24835586780682206,0.8544421480037272,-0.07587158726528287,0.37853468861430883,-0.8502170690335333,-0.10160841327160597,0.3139035599306226,0.4176247017458081,0.5935702933929861,0.1655847537331283,-0.9301626584492624,0.3934085825458169,-0.1504421252757311,0.9492672593332827,0.9574656127952039,-0.6857980419881642,-0.33130995789542794,0.7316070403903723,0.7441450892947614,-0.3727112035267055,-0.5391266047954559,0.8640628634020686,-0.858879114035517,0.522617086302489,0.4115973827429116,-0.6556371008045971,-0.8392663043923676,-0.6872506998479366,-0.14897864637896419,0.2640631892718375,-0.28459312580525875,0.5552791617810726,0.8832501312717795,-0.6316175577230752,0.2839270383119583,-0.8776056244969368,0.0775240189395845,0.9585064044222236,-0.8837802559137344,0.279044677503407,0.2528739757835865,0.06537944171577692,0.6850095721893013,0.9008119842037559,-0.4455425008200109,-0.05420850170776248,-0.5485085500404239,0.9144157031551003,0.4716784334741533,0.5072262645699084,0.5665971501730382,-0.9731710022315383,-0.7350811017677188,-0.607920057605952,0.002856914419680834,-0.30497834691777825,-0.5365071916021407,-0.6245280038565397,0.004311234224587679,0.5886749783530831,0.24401218676939607,0.9180900668725371,0.4497746415436268,0.5574919246137142,-0.8338737329468131,-0.3723197947256267,-0.09136553993448615,-0.5481075551360846,-0.17936495784670115,0.042738568503409624,-0.40970009146258235,0.5770155326463282,-0.019025105983018875,0.8591398834250867,0.9852800057269633,-0.7887268150225282,0.06361818592995405,-0.9495292156934738,0.6642232742160559,-0.5473180380649865,-0.3189581665210426,-0.36529281409457326,0.6340010184794664,0.10001329379156232,-0.8631674046628177,-0.35024655098095536,-0.7812156197614968,0.6361983981914818,0.9595089270733297,-0.12157394737005234,-0.6188646610826254,-0.7757235006429255,0.5411446583457291,-0.6420548860915005,0.5121830650605261,0.4836035668849945,0.8515300806611776,0.5674396948888898,-0.8402327257208526,-0.18512962339445949,0.07136722700670362,-0.4684168309904635,-0.8563982946798205,0.007970270235091448,-0.8041190467774868,0.141251718159765,0.8059084606356919,0.2851837524212897,0.10034416243433952,-0.511284354608506,0.035551185719668865,0.8987365933135152,0.6392710348591208,-0.209169777110219,0.9635478970594704,-0.790455971378833,0.009621364995837212,-0.5249063721857965,-0.49774843407794833,-0.3142600613646209,-0.8116270969621837,0.04986665723845363,-0.9753922317177057,-0.6967830779030919,0.8685988457873464,0.2177906846627593,0.4778112671338022,0.3742239181883633,0.5070949718356133,0.07483975635841489,0.4391685049049556,0.26684771571308374,-0.6251202947460115,0.11913372064009309,-0.12277260702103376,-0.7980616884306073,0.6227901712991297,-0.6143463901244104,0.5143324467353523,-0.9427193580195308,0.6099924086593091,-0.7316104085184634,-0.23142954101786017,0.005483874119818211,-0.7335019023157656,-0.6069601778872311,0.9180711265653372,0.05050211865454912,-0.7893693535588682,0.5411736504174769,0.8127954374067485,0.15987805975601077,0.3698542690835893,-0.11899005249142647,-0.477593463845551,0.5309416516683996,0.37298026448115706,0.4200907335616648,0.2811309532262385,0.6116886544041336,-0.3944946797564626,0.870097725186497,-0.3830781835131347,0.5776399467140436,0.6110219028778374,-0.22829194460064173,-0.6669513089582324,-0.4413124364800751,-0.4530663751065731,-0.9749112725257874,0.7560934503562748,-0.2567608542740345,-0.9506717063486576,0.20656616380438209,-0.6440719761885703,-0.5634184386581182,0.5999181717634201,-0.2482591513544321,0.9162213495001197,0.7093901210464537,0.5546000143513083,0.00575839402154088,0.7853941526263952,0.9248474151827395,-0.548185583204031,-0.8774296827614307,-0.6999285127967596,-0.8116114619188011,0.886453622020781,0.44089176692068577,0.1710355211980641,-0.20444395393133163,-0.9017191207967699,-0.5440645874477923,0.9001896819099784,-0.7704925015568733,-0.06617849180474877,-0.9531753566116095,-0.42293838411569595,0.21317757247015834,0.9689954775385559,0.7707282151095569,-0.5098213250748813,0.1273569669574499,-0.0013184607960283756,0.6845196937210858,-0.2657107273116708,0.7695781802758574,-0.3067541141062975,-0.3234192607924342,-0.7200261862017214,-0.3816959015093744,-0.3677525012753904,0.39497679052874446,0.03770125890150666,-0.816459842491895,-0.49209177773445845,0.7676035165786743,-0.1082549849525094,0.7384723415598273,-0.2395387003198266,-0.49747947603464127,-0.7081613824702799,0.5127832065336406,-0.7499777730554342,-0.7927954206243157,-0.34348886786028743,-0.28335140040144324,-0.7199626890942454,-0.8575565926730633,-0.20744295557960868,-0.684672293253243,-0.43734375946223736,-0.0027602524496614933,-0.47018534783273935,0.6092448732815683,-0.7554727266542614,0.5704520824365318,-0.8632859787903726,0.35270093008875847,0.7321588136255741,0.8985659596510231,-0.8303120788186789,0.6924174539744854,-0.24458664562553167,0.3103727763518691,-0.16987572005018592,-0.6157880635000765,-0.6774627072736621,0.2922221631743014,-0.47258933121338487,0.8471729075536132,-0.908870352897793,-0.3945102235302329,0.38293638871982694,-0.9449055232107639,-0.6369367050938308,-0.8919125078245997,-0.7206481313332915,-0.7266361610963941,0.7373191122896969,-0.5182062238454819,0.9777487474493682,-0.6673613698221743,0.09327860083431005,0.9857156448997557,0.37746254447847605,0.571780898142606,0.3033565944060683,0.007290006149560213,-0.746743930503726,-0.6789605002850294,0.08667729469016194,0.28773451410233974,0.24854160472750664,-0.11813935125246644,0.20435069734230638,-0.9427209752611816,-0.04856920847669244,0.07423181552439928,-0.0008972077630460262,0.31862904923036695,-0.2368728881701827,0.03390713408589363,0.9840871896594763,0.8691355772316456,0.9314602417871356,0.8791516539640725,-0.25461082020774484,-0.6358974305912852,0.39193729730322957,0.4805989135056734,0.9659092049114406,-0.6474383380264044,-0.42519062384963036,0.9817852322012186,-0.4347280841320753,0.31087973713874817,0.9155331552028656,0.7244604146108031,0.7938241818919778,0.4538401048630476,-0.6219013226218522,0.6553318626247346,-0.4089182894676924,0.5648573897778988,0.10759399412199855,0.15016603795811534,-0.6836055335588753,-0.5393729098141193,0.33667693845927715,-0.31086770817637444,-0.405741797760129,-0.131164631806314,0.2726017334498465,0.038857723120599985,0.9853627998381853,-0.5307477153837681,-0.7087263679131866,-0.2793130222707987,0.8618933726102114,0.5337739726528525,0.40511209378018975,0.12328858766704798,0.7652843552641571,0.323143744841218,0.6544176768511534,-0.7771391524001956,-0.4710003836080432,-0.8278133207932115,-0.36045775189995766,0.366538742557168,0.4525477229617536,0.9174558748491108,-0.1527635157108307,0.2620337335392833,0.5580896940082312,0.8351449081674218,0.3142678807489574,-0.8128315606154501,0.8835140094161034,0.8875274802558124,0.6198243349790573,-0.9431975921615958,-0.14237295789644122,0.3345736716873944,0.03071035584434867,-0.8859990360215306,-0.9509514239616692,0.1795030371285975,0.8402704820036888,0.5579725257121027,-0.22512376168742776,-0.22494338219985366,-0.9916282165795565,-0.31569702504202724,0.8920409474521875,-0.9521398753859103,-0.9791724658571184,-0.8254303093999624,0.03902357304468751,-0.7375569329597056,0.48809182131662965,-0.9858075664378703,-0.9439417030662298,-0.9492347510531545,0.25477141235023737,-0.6005906690843403,-0.0916272047907114,-0.9250906966626644,-0.023369870614260435,0.5004047588445246,0.018749661277979612,-0.7091731359250844,-0.665779794100672,0.18145357631146908,0.9264701972715557,-0.4412900358438492,0.30835571605712175,-0.5857239523902535,-0.5064005856402218,-0.11184518970549107,-0.31704044435173273,0.2757229758426547,-0.6739949933253229,-0.7411594055593014,-0.7188153779134154,0.23660643864423037,-0.9362293784506619,0.26910365000367165,0.7240471797995269,-0.8480583354830742,0.12844851147383451,0.20009059458971024,-0.12136056646704674,-0.7407297766767442,-0.7754159504547715,0.7726345341652632,0.020585209131240845,-0.6134165218099952,-0.9957318725064397,0.06312124291434884,0.13876278279349208,0.9315433972515166,-0.0357849863357842,0.5670162262395024,-0.6917872601188719,-0.547487695235759,-0.9379295338876545,-0.4345466890372336,0.7375877657905221,0.981806670781225,0.40341953095048666,0.24575418001040816,-0.2975410842336714,-0.6636678483337164,-0.8254117136821151,0.8437797254882753,-0.5303519833832979,-0.8237175908870995,0.33389494474977255,-0.5546723967418075,0.7709616129286587,-0.28364948835223913,-0.4433779576793313,0.35526633774861693,-0.3849932746961713,0.5956019214354455,-0.4533040761016309,0.5991334379650652,-0.4552256469614804,0.8023212836124003,-0.7174079352989793,-0.37394416937604547,0.30682280333712697,-0.065036007668823,0.7366002229973674,-0.3259070389904082,-0.9703107196837664,0.016394026577472687,-0.35128462594002485,0.7098020906560123,-0.9350912170484662,-0.04126517893746495,0.9308359045535326,-0.23068029806017876,-0.5796290943399072,-0.7759357499890029,0.76570850238204,-0.04674669913947582,0.26071958476677537,-0.8739232202060521,0.4822722664102912,0.5350444470532238,0.3326714700087905,-0.5152304167859256,0.1653175074607134,-0.10431355284526944,0.13738587917760015,0.062127603217959404,0.0804993873462081,-0.9014118378981948,0.23782601719722152,0.5179886692203581,0.01732472935691476,-0.3637956352904439,0.021388123277574778,0.8716480969451368,0.7283625523559749,-0.6192100187763572,0.36342749325558543,-0.49522477528080344,-0.6314184810034931,0.49112074403092265,-0.37183263804763556,0.3266290258616209,-0.2712545031681657,-0.9606972737237811,-0.8104005977511406,0.08463850431144238,-0.17006047954782844,0.43044322170317173,-0.284814007114619,0.9833199512213469,-0.37151484098285437,-0.334279868286103,0.0651238514110446,-0.35837782733142376,0.00313046807423234,-0.12087368173524737,0.8247573464177549,0.27213390823453665,-0.6959280502051115,-0.423436273355037,-0.3019704963080585,-0.6749929208308458,-0.5115380012430251,-0.04264079453423619,-0.7327399365603924,0.04321409622207284,-0.1998140811920166,-0.27009121095761657,-0.7495859838090837,0.6802784134633839,-0.4157542148604989,0.3120964136905968,-0.9387066075578332,0.0960196927189827,-0.08442286401987076,0.48023281106725335,-0.887382899876684,0.5596976899541914,-0.9677479797974229,0.2832238175906241,-0.9644048172049224,-0.8977123047225177,0.43197727343067527,-0.6051639271900058,-0.514907325617969,-0.7007860960438848,-0.5639521549455822,-0.42802042746916413,0.33859515469521284,0.5673535382375121,0.8516699536703527,-0.5345806679688394,-0.9320983155630529,-0.6660990356467664,0.05617877561599016,0.3254050272516906,-0.9944977341219783,-0.36356408102437854,0.024812734220176935,0.5570292468182743,-0.42117431154474616,-0.4377510016784072,0.14666690211743116,0.9017941574566066,-0.16720016486942768,0.6225281688384712,-0.6123685780912638,0.9723567590117455,0.3874220144934952,0.03146564494818449,0.31074112886562943,0.6961375907994807,-0.639419577550143,-0.6981784286908805,0.7141247414983809,-0.9815046465955675,-0.18558015022426844,0.3969062785618007,0.37347385939210653,-0.6160483742132783,0.22441890835762024,0.964416746981442,-0.7821364128030837,0.33215046813711524,-0.7021873737685382,-0.16972758620977402,0.5454074628651142,0.8292336598969996,0.5997980763204396,-0.6516466392204165,-0.8480555415153503,-0.39364690613001585,0.5725943013094366,-0.6506360857747495,-0.11566160805523396,-0.5219101724214852,0.4084490751847625,-0.4182111946865916,-0.690866906195879,0.8379755476489663,-0.47673943964764476,-0.39078343752771616,-0.7739136037416756,-0.5024648779071867,-0.420956599060446,-0.4833316169679165,-0.4180250815115869,-0.5374187384732068,-0.8876366205513477,-0.01371705112978816,-0.01935946475714445,-0.11645221477374434,-0.005397079512476921,-0.3773243282921612,0.6935847862623632,-0.5443239384330809,0.35692454455420375,0.21113771898671985,0.03128890506923199,0.6988432481884956,-0.0774521972052753,-0.2779935272410512,0.07244855165481567,0.851070883218199,0.876228591427207,-0.2795229321345687,-0.47798607451841235,0.8698488362133503,0.47635089280083776,0.05760037759318948,0.23576632235199213,-0.659614544827491,0.9225734448991716,-0.353412140160799,-0.9596149669960141,-0.514013041742146,-0.08167013945057988,-0.8503260333091021,0.432979135774076,-0.28728973353281617,-0.5773591413162649,-0.7315613343380392,-0.9886608934029937,-0.8300910033285618,-0.7176015111617744,-0.7184495786204934,-0.15616885432973504,-0.7143866065889597,-0.38685349002480507,0.48772785579785705,-0.2903331173583865,-0.10010542487725616,0.31788729038089514,-0.3961504935286939,-0.14305788557976484,0.4780668029561639,0.5065366616472602,-0.1904245549812913,0.032888565212488174,0.17519505368545651,-0.5261289761401713,0.6172172147780657,0.7524445150047541,-0.6686107567511499,0.9050302975811064,0.3666908433660865,0.10612872149795294,-0.9486971232108772,-0.012071740347892046,-0.8096173922531307,0.21003204444423318,0.5579343200661242,0.9711743178777397,-0.5934281069785357,-0.6778635852970183,0.05939273489639163,-0.3850207105278969,0.7546400888822973,-0.9271517936140299,0.19795783795416355,0.8504692274145782,-0.5293491659685969,0.42330280877649784,-0.7667668177746236,0.6926482985727489,0.0311918412335217,0.5950172482989728,0.40416437666863203,-0.9074168265797198,-0.17124993912875652,-0.5781305585987866,-0.7974594687111676,0.9655411066487432,0.8730952651239932,-0.47821556124836206,-0.09475157503038645,0.761539620347321,0.8156478051096201,-0.46994216181337833,-0.7993712620809674,0.11244173999875784,-0.1735537676140666,0.0036045419983565807,-0.5558426319621503,-0.8800318227149546,0.9574801921844482,0.12453746423125267,-0.7076093289069831,0.1964130555279553,0.19466715026646852,0.577286986168474,-0.5620020562782884,-0.8484716061502695,-0.2562344172038138,-0.3526993365958333,0.3536796807311475,-0.6556021724827588,-0.13306981325149536,-0.4538578623905778,-0.7814829149283469,0.025670091155916452,-0.92673629662022,0.3721392387524247,-0.05034660501405597,0.4046554509550333,0.9389216518029571,0.955074411816895,-0.668499727267772,-0.6716146944090724,-0.4456921801902354,-0.155018902849406,-0.5242991666309536,-0.5678649717010558,0.7220062087289989,-0.6768079339526594,0.7562265587039292,-0.6976695493794978,0.25874792831018567,0.0557027542963624,0.8992835027165711,-0.8672632668167353,0.197596600279212,0.19801062205806375,-0.9405408762395382,-0.5917898616753519,-0.695388195104897,-0.6879356978461146,0.46305516036227345,-0.8911577532999218,0.8776552355848253,-0.4258296526968479,-0.10313272243365645,0.6299647591076791,0.0856107217259705,0.4581668577156961,0.5194183867424726,0.8230016943998635,-0.12333620293065906,0.15014503942802548,-0.855701713822782,0.8269413313828409,0.5348014528863132,-0.547582637052983,-0.23610889166593552,-0.9365423773415387,-0.621123609598726,0.35426322277635336,0.8920671958476305,-0.27887259470298886,0.4267003247514367,-0.6996740084141493,0.0869345017708838,0.49112393986433744,0.4767747325822711,0.14834542106837034,0.6840578843839467,0.1319043985567987,0.608248196542263,-0.9350916496478021,-0.528318386990577,-0.2949556689709425,0.9272456588223577,-0.9815681190229952,0.10150308534502983,0.5321472613140941,0.3135658488608897,0.9541673739440739,0.228113429620862,-0.8973402590490878,-0.1437386404722929,-0.6181422765366733,-0.5317212273366749,-0.6440877239219844,0.1342934393323958,0.06538474885746837,0.17322723101824522,-0.46859590662643313,-0.6207320378161967,-0.1317980708554387,0.29652300337329507,-0.5952705619856715,-0.9199412073940039,0.7134063737466931,0.7954985331743956,0.9482257962226868,-0.45104672480374575,0.26318276952952147,0.06663694093003869,-0.5600812742486596,0.3262680475600064,-0.15532305650413036,0.869990989100188,-0.5259680692106485,-0.7965662418864667,-0.37031624000519514,0.3151514674536884,0.3683605305850506,0.839399924967438,-0.7394387233071029,-0.2729606833308935,-0.2728148801252246,-0.5381845673546195,-0.46348512964323163,-0.3215992031618953,0.6464551636017859,-0.9078299831598997,0.571343429852277,-0.8221185258589685,-0.04822179116308689,-0.8565045092254877,0.31800765870139003,0.22355954442173243,-0.28715080488473177,0.04575737286359072,-0.21967873768880963,-0.5638810251839459,-0.9741539228707552,0.9333990141749382,0.7171276044100523,0.22078676847741008,0.7699528709053993,-0.5073578557930887,-0.6002336316742003,0.264273121021688,-0.6545624937862158,-0.899337315466255,0.2733214315958321,0.8304345407523215,0.49962275428697467,0.14044760866090655,0.27003538561984897,-0.3720488431863487,-0.8974907197989523,-0.9155077766627073,-0.5300223254598677,-0.2201706124469638,0.9502842458896339,0.3980752369388938,-0.08809807384386659,0.2897124607115984,-0.11697254329919815,0.9593786750920117,-0.3665683683939278,-0.9483121023513377,0.16809079330414534,0.2767182285897434,-0.0422482299618423,0.3485264885239303,-0.04306388460099697,0.08093783492222428,0.8167625917121768,-0.7540678232908249,-0.3310099230147898,0.5375885386019945,0.15104941371828318,0.318642963655293,0.1727409204468131,-0.7901086774654686,-0.30404428439214826,-0.9547122428193688,-0.3311755978502333,0.27136917086318135,0.6382515365257859,0.45518658496439457,-0.2762135174125433,-0.2941297614015639,0.24771084962412715,-0.7420523222535849,-0.3435935275629163,0.373695757240057,-0.6709521980956197,0.283381090965122,0.677328716032207,-0.742689426522702,-0.044913806952536106,-0.8698742692358792,-0.6889188392087817,0.8342030756175518,0.6721650846302509,0.47909161169081926,-0.755622070748359,-0.4010504921898246,-0.5014761411584914,0.6914255614392459,-0.48697613505646586,-0.707681770902127,-0.5828551175072789,-0.13539411360397935,0.9323063432238996,-0.20341806625947356,0.6559238089248538,0.5749797588214278,0.07754178903996944,0.928743006195873,0.7583565344102681,-0.5766023583710194,0.3198458021506667,0.6844300008378923,-0.806570069398731,-0.6282927007414401,0.90465033845976,0.6282622283324599,0.38276371313259006,0.030190635938197374,-0.45677812537178397,-0.7384868087247014,-0.5345281823538244,0.3341542109847069,-0.49276654329150915,-0.8994406564161181,-0.6959250387735665,-0.5204231129027903,0.03807943407446146,-0.01821682369336486,-0.11134605575352907,-0.960343902464956,0.7967260065488517,0.6296880217269063,-0.423943935893476,-0.18802388571202755,0.6791092157363892,-0.5208847997710109,-0.46848064893856645,-0.5761115648783743,0.6842203508131206,0.7056484380736947,-0.7245295541360974,-0.47451607743278146,0.5992915374226868,0.7560448232106864,-0.4207686106674373,-0.5855663139373064,0.19718354986980557,0.4855650048702955,0.4254346452653408,0.34161538491025567,0.03736277809366584,-0.9189026700332761,-0.9363023852929473,0.006002016831189394,0.4805894158780575,-0.08688920037820935,0.11479166662320495,-0.8356222379952669,0.7491790507920086,-0.09967885538935661,-0.22321879537776113,-0.8978002280928195,0.3720036633312702,0.5152165777981281,-0.04485809663310647,0.5983053371310234,-0.15609377389773726,0.9797793966718018,-0.7819235110655427,-0.5572272660210729,-0.018917676992714405,0.41106436122208834,-0.9958872585557401,0.048717099241912365,-0.536835131701082,-0.23387141013517976,0.6869045388884842,0.9838796854019165,-0.5819422057829797,0.09670343110337853,0.06042071292176843,-0.7190692801959813,0.43230920284986496,-0.5848140525631607,-0.767304455395788,-0.6340107857249677,-0.5267023663036525,-0.7119572102092206,0.45406973315402865,0.3222945909947157,-0.22323115356266499,0.6844603759236634,0.4663650346919894,-0.25153994793072343,-0.2585954675450921,-0.33791823172941804,0.812206132337451,-0.5866035046055913,-0.47494582971557975,0.48302708426490426,-0.4685169360600412,-0.2657410157844424,0.7183010750450194,-0.547260501421988,-0.15434710774570704,-0.11573049705475569,0.8684626752510667,0.5675504235550761,0.8674168200232089,-0.5718542654067278,0.12542626494541764,0.7517640315927565,0.8243876141496003,-0.1713419370353222,0.29768973775207996,0.7501400536857545,0.2903914237394929,0.6668658219277859,0.08661588514223695,0.39278960740193725,0.005498223006725311,0.4607377131469548,0.7366998256184161,-0.15605110256001353,-0.011478238739073277,0.1951572597026825,0.08141278382390738,-0.51190519426018,-0.07155727408826351,0.45382140204310417,-0.1747356215491891,-0.8686615764163435,0.2312398450449109,0.8830135953612626,-0.9411718440242112,-0.5351363550871611,0.7784509784542024,0.8203587722964585,0.03153820987790823,-0.18658521678298712,0.7330330479890108,-0.7153819366358221,-0.08927060524001718,0.2871685582213104,0.7962809083983302,-0.7609718143939972,-0.15684230253100395,-0.629852557554841,0.22437122697010636,0.7350432318635285,0.3208772577345371,0.08136727008968592,0.14216805715113878,-0.3520981096662581,-0.5970357032492757,0.6158921699970961,-0.5899294251576066,0.7908945283852518,-0.11110452422872186,-0.7189204366877675,-0.3359754723496735,0.2803028989583254,0.15531824762001634,0.8152597425505519,0.426959449891001,-0.963950430508703,0.34628862841054797,-0.8850675383582711,0.9959175698459148,0.4407934080809355,0.03311070613563061,0.5590897924266756,0.4856166923418641,0.41161310859024525,0.011427557095885277,0.6046809321269393,-0.6814782409928739,0.8859706576913595,-0.9321497455239296,0.9892756282351911,0.842495119664818,-0.9757568542845547,0.504772003274411,-0.9569408325478435,-0.8205651640892029,-0.6096458663232625,0.8135092915035784,-0.9758270438760519,-0.30413682851940393,0.027062867302447557,0.9962492827326059,0.7133562662638724,-0.8868873585015535,0.349890542216599,0.13872217014431953,0.3632388566620648,-0.0682272044941783,0.6862242575734854,-0.25496333139017224,-0.5041811475530267,0.37270216597244143,-0.29771275259554386,-0.6240924317389727,-0.17362670367583632,0.4709890806116164,0.296434816904366,-0.1867003641091287,0.5001401654444635,0.9611101904883981,0.9691720148548484,-0.25571470567956567,-0.8698012828826904,-0.7656873143278062,-0.5481520565226674,0.4896406256593764,-0.09333348134532571,0.8539823144674301,0.0655715144239366,0.6625933051109314,0.813600501511246,0.07992667565122247,0.7145227892324328,-0.7215595399029553,0.4789712056517601,0.10057970602065325,0.4510594019666314,-0.01167793432250619,0.743280375842005,-0.16232046810910106,-0.9228590149432421,-0.2858786298893392,0.534342048689723,0.7229694775305688,0.3819965892471373,0.4412835263647139,0.9351795935072005,-0.6214605234563351,0.36702924221754074,-0.144566273316741,0.3211227557621896,0.7000645040534437,0.09905478078871965,0.20378083130344748,-0.5237392694689333,0.44103295216336846,0.9275223119184375,0.6807267651893198,-0.48398320376873016,0.06028273794800043,-0.22436781413853168,-0.0978072565048933,-0.4316691868007183,0.04887951398268342,0.5660042073577642,-0.948636194691062,0.3010919145308435,0.4449844495393336,0.8755667917430401,-0.0894586336798966,0.3237894894555211,0.7800003383308649,-0.14515226148068905,-0.25796942226588726,-0.5906567997299135,0.46550342021510005,-0.7947034635581076,0.1731160436756909,0.7942828452214599,-0.05662110075354576,0.3053002958185971,0.8093014759942889,-0.4938794607296586,-0.21247134963050485,0.8910132539458573,-0.7815148457884789,-0.8408629605546594,-0.5429902817122638,-0.7467192956246436,-0.14509144751355052,-0.12706307834014297,-0.7215956347063184,-0.5659927478991449,0.796551919542253,0.1852729436941445,-0.6371557042002678,0.9130560862831771,-0.3032460222020745,-0.2754051354713738,0.12707413733005524,0.5109904832206666,0.3903662711381912,-0.10473020002245903,-0.9520575487986207,-0.9706948599778116,0.6512156948447227,-0.5348732629790902,0.05554153025150299,0.17661035992205143,-0.8688819543458521,-0.25967346923425794,-0.6911979704163969,0.6455594678409398,0.7591136200353503,-0.04886717488989234,0.39965755632147193,0.4460591347888112,-0.7677337876521051,0.14045644225552678,0.500701863784343,-0.19938414497300982,0.14711150340735912,0.1553133288398385,-0.6608974188566208,0.8658430948853493,0.6413111793808639,0.854814097750932,-0.9950372050516307,0.8516474268399179,0.2698775022290647,-0.08629467664286494,0.9319770880974829,0.8645620956085622,0.32426380505785346,0.836175536736846,0.9171586823649704,-0.07422891957685351,0.3797819511964917,-0.40895281871780753,0.5671957293525338,0.3469883515499532,-0.49821151699870825,0.13293927209451795,-0.24696341529488564,0.4670962975360453,-0.5102967326529324,0.28486985759809613,-0.9957514726556838,-0.1531417714431882,0.7203832562081516,-0.16735360957682133,0.22859505284577608,-0.6644299984909594,-0.21425435738638043,0.016948627308011055,0.3024248452857137,0.06436157878488302,-0.5182998729869723,0.5881553022190928,0.6237975526601076,-0.896882644854486,-0.25720222340896726,0.43739144783467054,0.5035114069469273,-0.77997155347839,-0.5648640817962587,-0.9555106186307967,-0.720978838391602,0.453382583335042,-0.4759548674337566,-0.15197991486638784,-0.6882759011350572,-0.9149157223291695,-0.29491178784519434,0.7745747594162822,0.7875996422953904,0.1324106054380536,-0.8744454993866384,0.1535056959837675,0.23147950787097216,0.9756962843239307,-0.9900993523187935,-0.12784879794344306,0.8309184261597693,0.5286026885733008,-0.42949169455096126,-0.42518729204311967,-0.5541293751448393,-0.4646421540528536,0.6251853653229773,0.8597138044424355,0.5145718930289149,0.6491821040399373,0.07587076909840107,-0.1175122088752687,-0.08824049308896065,0.7546371789649129,0.4603091352619231,0.8178300303407013,0.5409892625175416,-0.48257123958319426,0.35019691148772836,-0.18306844681501389,-0.4194909669458866,0.19168481789529324,0.6025781710632145,-0.7920356383547187,-0.9808993279002607,-0.37024045223370194,0.36431809421628714,0.9700493300333619,0.22306476160883904,0.9182930951938033,0.9904799018986523,-0.0011672405526041985,-0.09433559142053127,-0.8350030560977757,0.5326247168704867,-0.733681293670088,-0.8193175191991031,-0.6622332548722625,-0.9988048202358186,0.8627411192283034,-0.4277430735528469,0.09415064752101898,0.3243481647223234,-0.432495363522321,0.41215395694598556,-0.524325417354703,-0.5548846959136426,0.506318150088191,0.9769586957991123,-0.39357019448652864,0.3037032480351627,0.9955403241328895,0.3201227132230997,-0.5379441678524017,0.8628330617211759,0.20662759244441986,0.39068043045699596,-0.24172839103266597,-0.9973954628221691,0.9453993369825184,-0.32998852990567684,0.7933860346674919,0.9077313542366028,-0.7661316841840744,-0.36548285372555256,0.001990106888115406,-0.8205490242689848,-0.125107916072011,-0.6304783974774182,0.751184971537441,-0.442093966063112,0.6647222032770514,0.3230322990566492,0.9099731966853142,0.986203164793551,0.09577301843091846,-0.4406583602540195,-0.5121947675943375,-0.4627669882029295,-0.06780375633388758,0.6340550282038748,-0.1961035062558949,0.026349260471761227,0.1152699925005436,0.5621751812286675,-0.9198906174860895,-0.2929593175649643,0.3037324482575059,-0.7296050004661083,-0.7294723000377417,-0.1648362190462649,-0.058094738982617855,0.4330680491402745,0.5356950694695115,0.45955393137410283,-0.0675086472183466,0.8005044599995017,-0.520417551510036,0.24033619137480855,-0.35928227705881,0.02553014038130641,-0.33860931685194373,0.16994314640760422,0.1399669316597283,-0.9256751611828804,-0.4125361852347851,0.372549332678318,-0.10008199838921428,0.5078250402584672,-0.0916126356460154,0.10303898900747299,-0.3361001508310437,-0.3141548107378185,-0.533198987133801,-0.5416407305747271,-0.774235540535301,-0.9010768583975732,0.7692856648936868,-0.699615107383579,0.7599919456988573,0.54431754630059,0.9468429302796721,0.9452186771668494,-0.19101164862513542,0.9636095641180873,0.5142227238975465,0.24140720441937447,-0.01099972240626812,0.04183398233726621,0.7608057404868305,-0.24725327966734767,-0.1762373954989016,-0.4022794938646257,0.15945087047293782,0.14205962186679244,0.06636750278994441,0.47767079109326005,-0.32890736358240247,-0.8264441941864789,-0.030039422679692507,-0.2531442358158529,0.3925587381236255,0.7477308278903365,0.936834879219532,0.754414682276547,0.6379530169069767,0.2719974983483553,-0.8358279708772898,-0.9154743207618594,-0.05622445233166218,-0.9830562653951347,-0.1342965760268271,0.06940564513206482,-0.73536914633587,0.8595856288447976,0.49876338383182883,-0.9181402926333249,-0.6080330088734627,0.4166578077711165,-0.8438417580910027,-0.7598284254781902,-0.04202528391033411,-0.6784915453754365,-0.9127918630838394,0.9287823648191988,0.8032718123868108,0.561394099611789,0.09793033823370934,0.9042487503029406,0.15440591424703598,-0.13764094281941652,-0.21399264642968774,0.4563590018078685,-0.6254144255071878,-0.37729511922225356,-0.21721512963995337,0.01030479185283184,-0.5643235794268548,0.9340278613381088,-0.7381999837234616,0.8518431219272316,0.2541132364422083,-0.22719543287530541,0.1381945013999939,0.03243643185123801,0.945193690713495,0.8538704379461706,-0.687219993211329,0.22252630069851875,-0.042593888472765684,0.6709045437164605,-0.4623163961805403,-0.005713817663490772,0.7764642173424363,-0.2992912125773728,0.23457948863506317,-0.45067133475095034,0.14584625931456685,-0.13011920964345336,0.6120855798944831,0.846864671446383,-0.014707631897181273,-0.675316150765866,0.011713866610080004,0.4910048493184149,-0.7866372289136052,-0.7462318008765578,0.25466795777902007,-0.9550333116203547,-0.38524069963023067,-0.7444294677115977,0.28165417397394776,0.6915630428120494,-0.09302085870876908,0.40320281917229295,-0.9077250566333532,-0.6574525013566017,0.10539621207863092,0.3650565487332642,0.8087882460094988,-0.12735492968931794,-0.5975823514163494,0.044812256935983896,-0.6191804013215005,0.7158976732753217,0.935640943236649,-0.0064621856436133385,0.28513542702421546,0.5526891658082604,-0.4915011478587985,0.6848690276965499,0.8205142328515649,-0.5878708558157086,-0.49867089185863733,0.2528551332652569,-0.9910230720415711,-0.7853376572020352,-0.31648635445162654,-0.4044639798812568,-0.9360482939518988,0.07084798719733953,-0.4338727775029838,0.662425353191793,-0.9586629010736942,-0.748550973366946,0.930292846634984,-0.9350888044573367,0.8166715349070728,-0.9419022123329341,-0.5966550461016595,0.09643113473430276,0.5977320745587349,-0.12699256977066398,0.9232065491378307,0.06256888154894114,0.9551347810775042,0.23621885664761066,-0.9732720861211419,-0.42956826789304614,-0.21757320454344153,-0.39824898168444633,-0.5048045041039586,-0.5962196886539459,-0.2853663628920913,-0.7872563600540161,0.19849536661058664,0.09371609147638083,-0.7049627350643277,0.4425974478945136,-0.03852127771824598,-0.6193917831405997,-0.7979343282058835,0.7253700755536556,0.10636769002303481,0.5117740011774004,0.7453189389780164,0.28907602233812213,0.7263428545556962,0.264480821788311,0.9126308588311076,0.47582532139495015,0.8883440266363323,0.402035656850785,-0.2741526225581765,0.8659160160459578,-0.9490306805819273,-0.8918153243139386,0.05292837228626013,0.02453617611899972,-0.27914614882320166,-0.4931714469566941,-0.8041439270600677,0.07599832909181714,0.7048540567047894,-0.9084529411047697,-0.4578771088272333,0.0025835148990154266,-0.43090917030349374,-0.16991695575416088,0.07720949593931437,0.776788794901222,0.9413306922651827,0.4689238448627293,0.8431922243908048,-0.8510677576996386,0.67842554487288,0.46662419848144054,-0.33506271010264754,-0.8351732864975929,0.7767504560761154,0.05026376247406006,0.9827649611979723,0.3761465488933027,-0.2840944933705032,-0.8750505796633661,-0.9462278364226222,-0.8178577092476189,0.6147449063137174,0.4066969798877835,-0.03790257545188069,-0.8185573359951377,0.4921154691837728,-0.4704785067588091,0.6319597726687789,0.1730269598774612,0.7874879422597587,0.59921068046242,0.3828619229607284,-0.08354543475434184,-0.544785603415221,-0.46469253208488226,-0.9292018976993859,0.5685715074650943,-0.5611853655427694,-0.9309890526346862,0.6274187341332436,-0.42792278015986085,-0.08155589317902923,-0.7609361372888088,-0.004500578157603741,0.01660998072475195,0.2046652645803988,0.13249738002195954,0.7696555480360985,-0.13540099887177348,-0.8835946749895811,-0.7552104699425399,-0.7563628517091274,-0.6269827256910503,0.5722209103405476,-0.5054417625069618,0.3653458599001169,-0.7617522301152349,-0.2592704580165446,0.8657278306782246,0.560902280267328,0.7175657832995057,-0.09248819528147578,0.4334913291968405,-0.15791193256154656,0.1899262792430818,-0.35428823018446565,-0.22270532930269837,-0.4458926534280181,0.2037854567170143,0.22617064230144024,0.8576085576787591,0.8942106147296727,0.8434196161106229,-0.35097444290295243,0.38075257278978825,0.3969767368398607,-0.7955748946405947,0.03348219580948353,-0.8195665399543941,-0.36510423477739096,-0.6811866769567132,0.5352573054842651,-0.47667332366108894,0.43923242948949337,0.9241564511321485,-0.28717308631166816,0.2864044257439673,-0.9811231242492795,0.06078421464189887,0.729173191357404,-0.3321017767302692,-0.9559612507000566,-0.593874994199723,0.4654073384590447,-0.9726323150098324,0.44804750056937337,-0.3268249831162393,0.4536395971663296,0.07600513100624084,0.4374327422119677,-0.1552643096074462,0.5327438963577151,-0.6009519584476948,-0.7745151417329907,0.20169776771217585,0.5146900690160692,0.16779166273772717,-0.5844547837041318,0.15148133365437388,-0.03397076763212681,-0.48166246013715863,0.4678095271810889,-0.9632263840176165,-0.8772333301603794,-0.47083860030397773,-0.9334379830397666,0.20272349566221237,0.9308617184869945,-0.013100414536893368,0.8365772753022611,0.03147253906354308,0.09201576234772801,0.8570687188766897,-0.05330777820199728,0.4396637612953782,0.9428032357245684,0.434687374625355,0.8825873811729252,-0.6028232872486115,-0.9858804661780596,0.7799161309376359,0.3677666946314275,-0.8786528115160763,0.8182469950988889,-0.043591208290308714,-0.24396988423541188,-0.8337687090970576,0.06835530325770378,0.16996574541553855,0.28801565105095506,-0.11036448366940022,0.18710956815630198,0.9381971629336476,-0.5381863908842206,0.4650179431773722,-0.03648659633472562,-0.7158560389652848,-0.9451014408841729,-0.619904663413763,0.15841622278094292,0.9124979977495968,-0.13394777476787567,-0.8926875893957913,-0.8041041702963412,-0.9657560768537223,0.2015841044485569,0.5967179089784622,0.3413783977739513,-0.5267428853549063,-0.7483031270094216,0.9281883798539639,-0.7415265101008117,-0.28181713866069913,0.41569055430591106,0.789216726552695,-0.4696856760419905,-0.9636052274145186,-0.4414473408833146,0.6660003731958568,-0.46437298506498337,0.11286923661828041,-0.24503238406032324,-0.37290613632649183,0.15078040724620223,0.2753408164717257,0.8665910745039582,0.5225214618258178,0.6065811458975077,-0.09363138303160667,0.2653577025048435,-0.7530629774555564,-0.6339828218333423,0.7623726427555084,0.31786945182830095,0.4832794857211411,0.3576462920755148,0.9274208256974816,-0.93700917577371,-0.48248808924108744,0.3168772989884019,-0.52419299678877,0.05684699257835746,-0.9475725679658353,0.731709192506969,-0.2497581378556788,-0.09631766472011805,-0.3205438992008567,-0.3479419336654246,-0.14032852556556463,0.12497037928551435,0.3939756848849356,-0.05000673700124025,-0.5725993742235005,-0.182354343123734,0.6739854929037392,-0.4725897004827857,-0.5663108215667307,-0.30893274396657944,0.5940578035078943,0.3863790025934577,-0.6197595503181219,0.36754905665293336,-0.12424908531829715,-0.9404008518904448,0.5661224699579179,-0.8044761456549168,0.6085667065344751,0.18133586551994085,-0.19697914365679026,-0.7769834171049297,0.21117888810113072,0.6446153623983264,-0.29283376038074493,-0.6371661103330553,0.9693291047587991,-0.07818231452256441,0.4566949945874512,-0.37168080639094114,0.6394968186505139,-0.6965122981928289,0.5848551262170076,-0.15544903790578246,-0.40457736188545823,0.5244921240955591,0.08604065142571926,0.32176054921001196,-0.428003684617579,-0.920775359030813,0.7903749034740031,0.6746732303872705,-0.38102993834763765,0.17301303846761584,0.18208346096798778,0.7252342491410673,0.3567888317629695,-0.414357079192996,0.8652793634682894,0.6416370077058673,0.44540946185588837,-0.7235293444246054,-0.6586511177010834,0.054391099605709314,-0.32325836177915335,-0.030743808019906282,0.768990465439856,-0.0725894533097744,0.4000711580738425,0.14316516742110252,0.24231618316844106,-0.6133693973533809,0.7200007201172411,-0.6547868247143924,0.06663309782743454,0.6763167660683393,0.8642357676289976,0.4766759090125561,0.738925046287477,-0.39809742057695985,0.5049142036587,-0.7457508277148008,0.6943841818720102,-0.6144081340171397,-0.5350039056502283,0.01884005730971694,-0.1760535491630435,-0.9823517166078091,0.1780578657053411,-0.27048412477597594,-0.6898616598919034,-0.1952046132646501,0.41215287102386355,0.03926329081878066,0.31934076733887196,-0.9641845743171871,0.403358559589833,-0.675250094383955,0.5120282731950283,0.4982346794568002,0.3907690872438252,0.27714393148198724,0.5295385555364192,-0.5790208927355707,0.873435284011066,-0.014211839530616999,0.940409442409873,0.8349329391494393,-0.9524549311026931,-0.5766566977836192,-0.2716974038630724,0.21524459403008223,0.5228738882578909,0.9077789131551981,-0.32893589651212096,-0.0423970241099596,-0.7248239680193365,-0.44499553414061666,0.9392387489788234,-0.11061378056183457,0.3452251865528524,-0.11233100015670061,0.5689224665984511,-0.002778503578156233,-0.08187806839123368,0.8061447241343558,-0.2803367795422673,0.08496646396815777,-0.3406828762963414,-0.7335544219240546,-0.20023045083507895,0.1529732784256339,-0.6671783193014562,0.940962967928499,-0.6820370303466916,0.7036275416612625,0.8442995306104422,-0.026720548048615456,-0.476197172421962,-0.0605547996237874,-0.6027944581583142,-0.5351731935516,0.07456887979060411,-0.47120528016239405,0.6179344239644706,0.09095785114914179,-0.6560777882114053,0.4458066211082041,-0.7055693496949971,-0.22959702694788575,0.4472636445425451,0.754352527204901,-0.49606387643143535,0.46805313881486654,-0.5289976242929697,0.7910862695425749,-0.7002363433130085,-0.723576080519706,0.8751239771954715,-0.07662897370755672,0.06313680438324809,0.9734461093321443,0.40227571269497275,-0.24923402722924948,-0.18004605872556567,0.981509072240442,-0.6251419987529516,0.2641698974184692,-0.601751028560102,-0.9164764597080648,-0.3158560893498361,-0.7785533829592168,0.458634071983397,0.9309390257112682,0.6199220828711987,0.18514374736696482,0.21467082481831312,-0.013199666049331427,-0.8204753575846553,-0.6274190144613385,-0.027476852294057608,0.6641101678833365,-0.9577345480211079,-0.35122786462306976,0.32563419872894883,-0.07689091050997376,0.9426264245994389,0.3338846229016781,0.025564813055098057,-0.3210630756802857,-0.7058255840092897,-0.5081771849654615,0.5719782379455864,-0.5342652359977365,0.44240033300593495,-0.38459370052441955,-0.3781331987120211,-0.4633967410773039,-0.8595174928195775,-0.7035475270822644,0.5446649743244052,0.2131356429308653,-0.23116294387727976,-0.6807095729745924,-0.22264677891507745,0.4008852019906044,-0.17557871295139194,0.4994525979273021,0.8365912339650095,-0.34703202033415437,-0.2462517279200256,-0.27700558630749583,0.8964249254204333,-0.00030932482331991196,-0.7434693104587495,-0.2941818190738559,0.5902053825557232,-0.8557678018696606,0.7837996394373477,-0.5137382745742798,-0.046706629917025566,-0.6167943770997226,-0.6139121130108833,-0.24513582978397608,0.2292163004167378,-0.8774532158859074,0.2950115390121937,-0.40233180578798056,0.671344103757292,-0.6622178321704268,-0.5306830839253962,-0.5499753933399916,0.9585459418594837,-0.45615323819220066,-0.5524036227725446,0.47970244148746133,0.9598684730008245,0.943541026674211,0.5256407256238163,-0.31640141922980547,-0.971375931520015,-0.614339126739651,0.46290357084944844,0.9871535985730588,0.782268013805151,0.9770872164517641,0.2566685606725514,0.6264727092348039,0.5047716121189296,-0.48675746051594615,-0.5088286837562919,-0.21032474469393492,0.7162351850420237,-0.6110554053448141,-0.30252091540023685,-0.4160601659677923,0.49644766515120864,-0.29708921164274216,-0.25743236346170306,-0.35127113992348313,0.45108649460598826,-0.9877436175011098,0.4146539969369769,-0.2889084150083363,-0.048614571802318096,0.16369239892810583,-0.6821851655840874,0.7708878498524427,0.6735620540566742,-0.3501054299995303,-0.7796544507145882,0.03669164655730128,0.8651903360150754,-0.5703310463577509,-0.4736032378859818,-0.6734201633371413,-0.6325170467607677,-0.9700080319307745,0.9673940781503916,-0.06585659505799413,-0.13079514121636748,0.4574550297111273,0.030363302677869797,-0.12222975539043546,-0.4634349145926535,0.49001712584868073,-0.14139351900666952,0.40286028338596225,-0.17893716413527727,-0.1272141830995679,-0.2505816170014441,-0.18151821196079254,-0.4404481300152838,-0.9509594282135367,0.25269532669335604,-0.5157160158269107,0.4682624717243016,-0.5177761986851692,0.9122197851538658,0.3170479298569262,-0.26072507817298174,0.3509297766722739,-0.26802689442411065,0.07801037514582276,0.24394911201670766,-0.27071794448420405,0.7514539170078933,-0.5899555548094213,0.6937393746338785,0.1680187568999827,-0.9763122755102813,0.9527012086473405,-0.27466987166553736,-0.5152687621302903,-0.07712706457823515,-0.003741453867405653,-0.7281000474467874,-0.14606099762022495,0.1770277782343328,0.5731019875966012,0.4442450115457177,-0.4908444629982114,-0.11981028271839023,0.2671411824412644,-0.8524036812596023,0.2910039839334786,0.7441706438548863,-0.5650264210999012,-0.1177153354510665,-0.963293522130698,-0.6274143173359334,0.5530470651574433,-0.02843342488631606,-0.6271292865276337,0.7013472719117999,0.25497329887002707,-0.037916433066129684,0.6835848349146545,0.39815450087189674,-0.3814762574620545,0.5057520461268723,-0.4717208603397012,-0.10982676595449448,0.06135562341660261,-0.20644566603004932,-0.22241170052438974,0.405963902361691,0.30666970601305366,-0.377844309899956,-0.9779135184362531,-0.8287771795876324,0.6580910142511129,-0.7565500671043992,-0.3219768386334181,-0.6749155898578465,0.20545123191550374,-0.18527497630566359,0.7562513216398656,-0.3595616742968559,0.5354117569513619,0.6322272727265954,0.82747035427019,0.9286967497318983,-0.28692873707041144,0.6788293235003948,-0.4124518851749599,0.88315410586074,-0.05751378880813718,-0.9047517590224743,0.46572194481268525,-0.4504393353126943,-0.578386218752712,0.7645781971514225,-0.6645097127184272,-0.7525779446586967,0.5078945299610496,-0.8460032851435244,0.6762521835044026,0.26886543864384294,0.019349325448274612,-0.539054274559021,-0.9746194239705801,-0.12682987935841084,-0.5949290324933827,0.09655713988468051,0.26624654373154044,0.7814804269000888,-0.9900440103374422,-0.7465902310796082,0.6453443518839777,0.9023946998640895,0.2950259493663907,-0.7450600885786116,-0.6669957265257835,-0.16457478189840913,0.3862423403188586,-0.18811437208205462,-0.23408100614324212,-0.09935129201039672,0.1180530940182507,0.21323126228526235,-0.06728466786444187,-0.2787299589253962,-0.6496496517211199,0.313820444047451,-0.11141789983958006,0.14283325849100947,-0.4487494435161352,-0.5061545227654278,-0.29559450689703226,0.244023063685745,-0.9321821834892035,-0.17774243233725429,-0.05634225718677044,-0.8870039507746696,0.4682695744559169,0.32443631580099463,-0.7366595873609185,-0.7056693537160754,0.26047583436593413,-0.6198328528553247,0.1765648117288947,-0.8388538584113121,0.03505301009863615,-0.23017058707773685,-0.9441829556599259,-0.9474885207600892,-0.4469354501925409,-0.4367094971239567,-0.689212809316814,0.5283979522064328,0.9226330048404634,0.2861556336283684,0.9022785588167608,-0.559502821881324,-0.996835223864764,-0.21726934891194105,-0.5469999168999493,-0.7856797729618847,-0.33389084320515394,0.8682080409489572,-0.42290848353877664,0.2332994774915278,-0.5645794747397304,-0.7148373951204121,0.6084496565163136,-0.9534682827070355,-0.8436860628426075,-0.45702024083584547,0.3515253206714988,-0.3069896809756756,-0.0324371038004756,-0.6988651319406927,0.768597278278321,-0.10474148578941822,-0.4202103358693421,-0.22428470104932785,-0.001786346547305584,-0.09542240994051099,-0.2906464906409383,-0.07434112252667546,0.8291463241912425,0.15520922234281898,-0.5454999911598861,0.7200250755995512,-0.18483022786676884,0.7063891389407218,0.4064278779551387,0.45056749880313873,-0.0068054767325520515,-0.472925185225904,-0.14801787585020065,-0.1602993425913155,-0.8215888505801558,-0.5608424209058285,-0.1869410565122962,-0.5138258030638099,-0.30493006529286504,-0.1908690039999783,0.0267753885127604,-0.7396449786610901,0.8336685076355934,0.3959448952227831,0.14292411599308252,-0.14809362776577473,0.6340473205782473,0.6433222810737789,-0.31180399749428034,-0.809818031731993,0.6236787219531834,-0.7879304797388613,-0.9810206242837012,0.9656878034584224,-0.6813439461402595,0.5760328038595617,-0.012965422123670578,0.6169708860106766,0.6263338481076062,-0.42865552054718137,0.972160845529288,0.7306249868124723,0.45412249583750963,0.14759706193581223,-0.49618731578812003,-0.5318807950243354,-0.6463470733724535,-0.5506072393618524,0.20918235601857305,0.9902424686588347,0.9787414758466184,-0.6958345943130553,0.4224627763032913,0.10119692701846361,0.35928192269057035,0.15132786706089973,-0.43473099172115326,0.3240884873084724,-0.3062030444853008,0.9952840362675488,-0.6575333690270782,0.6920951129868627,0.13590046111494303,0.1107401167973876,0.05414215149357915,0.8120801881887019,-0.9572015032172203,-0.8352680481038988,0.7543145874515176,-0.9337620581500232,-0.983052815310657,0.9085886995308101,-0.9946232223883271,0.8200840968638659,-0.12939846236258745,0.138870679307729,0.1915448997169733,-0.7412413922138512,-0.12027132976800203,0.8757348698563874,-0.46359764225780964,-0.6801687115803361,-0.953515927772969,0.44621139811351895,0.9438049187883735,-0.9586053611710668,-0.20990794710814953,-0.11999945482239127,-0.2067082761786878,0.8090942935086787,0.4493567096069455,-0.8625053488649428,-0.15338568948209286,-0.17293863650411367,-0.018008950632065535,-0.2628547688946128,0.2680462026037276,0.780962941236794,0.653981436509639,0.24452410265803337,-0.7564769797027111,0.7195814517326653,-0.4391827955842018,0.31824533455073833,-0.5639700060710311,-0.8891913178376853,0.3840475180186331,-0.8793329643085599,0.1913038888014853,-0.7656918922439218,-0.22277027368545532,-0.8983688508160412,-0.33974920911714435,-0.3018918349407613,0.6460032318718731,0.5642548287287354,-0.6152292201295495,-0.8831645338796079,0.9287863168865442,0.24462400237098336,0.5276334304362535,-0.9208782827481627,0.8195317168720067,0.933386170770973,-0.49214271595701575,-0.44886780297383666,-0.5947036892175674,0.0009568682871758938,-0.002200788352638483,0.9468915467150509,0.23842941131442785,0.8281618878245354,0.9926657201722264,-0.7476707925088704,0.7917626169510186,0.04070617025718093,0.475710257422179,-0.25104484241455793,0.5930247320793569,-0.8843486187979579,0.9010586831718683,0.568552830722183,0.14902145508676767,-0.6606489485129714,0.38415983598679304,-0.937735736835748,-0.10483758896589279,-0.18558826763182878,0.5183756691403687,-0.40621548471972346,-0.24579718708992004,-0.7521104454062879,-0.025399066042155027,-0.8535165688954294,0.8499865406192839,-0.788612462580204,0.5847077975049615,-0.8657137006521225,0.5450698011554778,-0.5091030136682093,0.12163702445104718,0.7084640967659652,0.5804973407648504,0.5633209748193622,0.8616587840951979,-0.1818646313622594,0.8996077761985362,-0.01399626163765788,0.10363095859065652,0.1333311260677874,-0.049847830552607775,-0.0006361748091876507,-0.17013857094570994,0.6227798531763256,0.3913731500506401,0.6560852765105665,0.4966904344037175,0.4012222825549543,0.08701763162389398,0.5219430150464177,-0.09360365709289908,-0.23579782573506236,-0.6855797721073031,0.41569329099729657,-0.14180265553295612,0.02595009235665202,-0.9520926279947162,-0.2943945322185755,-0.6143165826797485,0.3945792019367218,-0.5037022149190307,0.21318945195525885,0.36196917621418834,0.9778024107217789,-0.692332467995584,-0.02615563804283738,-0.6324746268801391,0.672366114333272,-0.1679246462881565,0.8124123951420188,0.9769501918926835,0.7390709482133389,-0.36335676070302725,0.4249656689353287,-0.6374645354226232,0.044448471162468195,0.28920247685164213,-0.3935671248473227,-0.3449463751167059,-0.7261143899522722,-0.004079488106071949,0.08567679207772017,0.057912498246878386,-0.3525550775229931,-0.7611486469395459,0.725375042296946,0.039390187710523605,-0.29642374347895384,-0.8557401015423238,-0.8845543004572392,0.4180636643432081,-0.6015613665804267,-0.24579380685463548,-0.8311421358957887,-0.709972467739135,0.927112446166575,-0.6436947048641741,-0.21465930435806513,-0.431415771599859,0.7293152026832104,0.518711457028985,0.3023220980539918,0.5486232689581811,0.26595344906672835,0.4447981254197657,-0.4327497109770775,0.4408867093734443,-0.576321289408952,0.8063124581240118,0.3460544114932418,0.9010585062205791,-0.1682801297865808,0.5387167115695775,0.07511959550902247,0.2158538494259119,0.5852974997833371,-0.47247584722936153,0.5897164717316628,-0.5746790627017617,-0.49500961089506745,-0.9580202829092741,-0.13443712005391717,-0.39721523178741336,0.9349542297422886,0.23515141056850553,-0.27862448804080486,0.8751296722330153,0.3794329301454127,-0.4463815218769014,-0.8570974678732455,-0.5318835549987853,-0.5894113979302347,0.39405332878232,0.8217007769271731,-0.6192857078276575,0.9079969823360443,-0.02588366949930787,-0.5741526507772505,0.5763275190256536,0.8709180215373635,0.12066114787012339,-0.14202446537092328,0.19471102859824896,0.5894620637409389,0.21370855532586575,-0.20328454114496708,0.8344161319546402,-0.6230086190626025,-0.3868415495380759,0.3073333050124347,-0.09469957510009408,-0.0607882272452116,0.7412572032772005,0.129503573756665,0.05519308988004923,-0.3510309914126992,0.6261170050129294,-0.5878554526716471,-0.3122492399998009,-0.7619107412174344,-0.2074140254408121,-0.3292116201482713,-0.7769006807357073,-0.9959434270858765,-0.6025012293830514,-0.8016872364096344,0.1020889044739306,0.14892467809841037,0.06765196705237031,-0.7166271628811955,0.6459156051278114,0.9324853364378214,-0.3123332797549665,0.48349564941599965,-0.044281603302806616,0.33248484414070845,0.9701847778633237,0.518443756736815,0.7943298341706395,-0.712461069226265,0.2749677556566894,-0.9689304018393159,0.11379512678831816,-0.7692797426134348,-0.9904056047089398,-0.3832181035540998,-0.4256331976503134,0.4083479009568691,0.13650993769988418,-0.8064518803730607,0.789201756939292,-0.1479465221054852,0.21360239386558533,0.23773274384438992,-0.07531936839222908,-0.7607570709660649,-0.6295360089279711,0.2991039901971817,0.9154070243239403,-0.4095212356187403,0.4419373250566423,-0.8457325506024063,-0.9378853095695376,-0.5528978132642806,-0.9871165053918958,0.4830739591270685,0.35934442188590765,-0.3561071646399796,-0.2988037830218673,0.16819088021293283,-0.5826462935656309,-0.2776515115983784,0.7223007092252374,0.3955077948048711,0.35376066574826837,-0.0866087474860251,0.4872000212781131,-0.8731706710532308,0.011474032420665026,0.5033362684771419,0.0812414838001132,0.01784661551937461,-0.34903799928724766,-0.4500747290439904,-0.5062578292563558,0.8990159160457551,-0.9112171456217766,-0.7063153674826026,0.30310786748304963,-0.49310786090791225,-0.058615557849407196,-0.7699477057904005,0.9782335897907615,0.9225911949761212,-0.46173766953870654,0.8744909414090216,-0.17302498081699014,0.1847444912418723,-0.041027539409697056,-0.5257342862896621,0.6872886819764972,0.531662814784795,-0.012616684660315514,0.3972693318501115,-0.5799730839207768,-0.6820029327645898,-0.7533374563790858,-0.4544588830322027,-0.14118681056424975,0.06294113211333752,-0.12720131454989314,0.11215229844674468,0.14531624456867576,-0.6645056293345988,-0.5997230974026024,0.5820004404522479,0.8203939208760858,0.0604135449975729,0.038939643651247025,-0.6986467582173645,-0.6489747003652155,0.3452718211337924,-0.9768353812396526,0.9291798053309321,0.8077526912093163,-0.6873066206462681,-0.978145036380738,-0.9012035084888339,0.8842834029346704,0.37890836223959923,-0.5569182131439447,-0.32291958574205637,0.7481599119491875,0.35288089560344815,0.7066572709009051,-0.33555591758340597,-0.8961661090143025,-0.5129778366535902,0.9917990262620151,0.9297841289080679,0.9289968479424715,0.9974833698943257,-0.9618097194470465,0.5344851803965867,-0.08312533516436815,0.7226388617418706,0.03871591854840517,-0.5146572915837169,-0.23537027882412076,0.6555274617858231,0.3114583301357925,0.18608062993735075,-0.22665431164205074,-0.31521974224597216,0.9251564550213516,-0.5040219319052994,0.6951363701373339,-0.8024161434732378,-0.9691695529036224,-0.20949017209932208,-0.885955928824842,0.5961628858931363,-0.4959862697869539,0.10463227750733495,-0.8707511685788631,0.41024404438212514,-0.6046768850646913,0.23922250885516405,-0.7554202587343752,0.7236554934643209,0.9915804350748658,-0.9643489522859454,-0.6354675088077784,0.0166419530287385,0.8784098206087947,-0.14771762769669294,0.7647542930208147,-0.33178105065599084,0.2575389174744487,-0.061123439110815525,0.02553838398307562,-0.30372697906568646,-0.5442392728291452,0.30928936041891575,0.345765283331275,0.9674353692680597,-0.1110787601210177,-0.30519811529666185,0.34928955836221576,0.02724122442305088,0.5298699708655477,0.2742976136505604,0.9349610507488251,-0.6272217808291316,0.006053782068192959,0.34116489673033357,-0.6223692274652421,0.5969543666578829,-0.33612589817494154,0.8570665623992682,0.1882667737081647,-0.7246690257452428,0.5252646286971867,0.13715296238660812,-0.9481952432543039,0.10797302005812526,-0.5348597345873713,0.8987813568674028,-0.5910726301372051,-0.25252910796552896,0.16126628872007132,-0.9873068127781153,0.24994779145345092,-0.17151239747181535,0.10680885380133986,0.5021994314156473,-0.5279862438328564,-0.005136516410857439,-0.4012269522063434,0.7343355291523039,0.3457345822826028,0.23995920177549124,-0.1382113234139979,0.5496631767600775,0.5888465223833919,-0.3187462058849633,-0.16267892345786095,-0.3983916505239904,-0.5771978017874062,-0.0059069362469017506,0.014415847603231668,-0.8683646474964917,-0.8194318781606853,-0.08314946200698614,0.4339492334984243,0.8369912346825004,0.8564564855769277,-0.13070600666105747,0.35214947536587715,0.7648456832394004,0.20253594731912017,-0.11064501944929361,-0.5439787334762514,0.7387992502190173,-0.03022230602800846,0.24614315712824464,-0.7670084112323821,0.2896814248524606,-0.7154971603304148,-0.037778884172439575,0.8761154087260365,0.9266247530467808,-0.9920471119694412,-0.7995363911613822,0.3054948071949184,0.9531616824679077,-0.8769943728111684,0.5446870564483106,0.15880976151674986,0.38710501231253147,-0.9948686393909156,0.23376465076580644,0.33022904861718416,-0.777219329494983,0.842646929435432,-0.5081274276599288,-0.9741896856576204,-0.8423242154531181,-0.4755873680114746,-0.05932492855936289,0.9384368597529829,-0.6998267867602408,0.6476873033680022,-0.6673589795827866,0.4057271024212241,-0.8012200254015625,0.9899745481088758,-0.9109922987408936,0.9100329829379916,0.31066549522802234,0.8698717565275729,-0.19997338950634003,-0.6543600060977042,0.1252354858443141,0.7293494851328433,0.72228526417166,0.22845499264076352,-0.5405968059785664,0.8498796317726374,0.7923823320306838,-0.23404418071731925,0.851085898000747,-0.48926994064822793,0.23968301014974713,-0.38695412687957287,-0.2561541376635432,-0.013788166921585798,-0.44199268938973546,-0.2666602898389101,0.6918143294751644,0.6615765285678208,0.11820892663672566,-0.9544416186399758,-0.10289463819935918,-0.22105453722178936,0.27124912524595857,0.06488141091540456,-0.0339726097881794,0.9076179414987564,0.3922471101395786,-0.0905183469876647,0.11417348263785243,-0.25485607562586665,0.9823726168833673,0.2622100058943033,0.3426354597322643,0.033830796368420124,0.9647039100527763,0.3654491752386093,-0.608800589106977,-0.9585955212824047,0.5796151114627719,0.49870353611186147,0.946011480409652,0.4217282752506435,0.28760867938399315,0.2839077040553093,-0.31354799028486013,0.5476971031166613,-0.7172584282234311,0.17914436757564545,0.5456258947961032,0.19714397890493274,-0.48960838187485933,0.9993470679037273,0.30072390707209706,-0.94950677966699,-0.8449901076965034,0.8515660427510738,0.28031720919534564,0.740063349250704,-0.23542975401505828,0.06790507957339287,0.13810646440833807,0.7570810415782034,-0.13774649426341057,-0.6993334027938545,-0.8673387090675533,-0.34045790042728186,-0.19525649258866906,-0.3237948971800506,-0.5107138711027801,-0.382919002790004,-0.9851103499531746,0.21660737553611398,0.16661647707223892,0.5333511857315898,-0.7960425275377929,0.23396897967904806,-0.348201425280422,-0.05897055519744754,0.9637490794993937,0.8732949425466359,-0.7512919302098453,-0.5894148689694703,-0.905785761307925,0.6629854333586991,-0.42028963612392545,-0.23574462067335844,-0.19943332998082042,-0.39534062100574374,-0.9130115751177073,0.48149028699845076,0.29969140887260437,0.7846451224759221,0.7415886572562158,-0.12697482155635953,-0.42373280646279454,-0.37068746192380786,-0.0008499450050294399,-0.7436268860474229,0.6617718734778464,0.2537428932264447,0.9849510779604316,-0.1780399871058762,0.9301497680135071,-0.7629564418457448,0.001987080555409193,0.9384032762609422,-0.45425344817340374,-0.20603616116568446,0.8138140076771379,-0.891152742318809,0.06758736586198211,-0.9322657282464206,-0.19277323642745614,-0.28611640026792884,0.26903899013996124,0.9651112458668649,-0.5192997455596924,-0.19953648326918483,-0.8712341422215104,0.19418936781585217,0.1886143470183015,-0.9998618676327169,-0.4517992874607444,-0.06870320159941912,-0.8316928050480783,0.8424626477062702,0.04267062759026885,-0.8361902008764446,-0.9135229475796223,-0.07876910967752337,-0.804330485407263,-0.42395214224234223,0.2485198611393571,0.00566116813570261,0.5702032069675624,0.20196717511862516,-0.5212301714345813,-0.5652283197268844,0.19600195437669754,0.6971329753287137,0.7000681404024363,0.9951004451140761,-0.8250093790702522,0.4565944639034569,0.7053605588153005,0.5259800394997001,-0.6248616804368794,0.20141400815919042,0.028900200501084328,0.5040331836789846,-0.019527974538505077,0.7174167232587934,0.9909943612292409,0.7832386726513505,-0.5229042805731297,-0.5694998227991164,-0.855163708794862,0.9914877088740468,-0.20761905051767826,0.49547682888805866,0.5188885405659676,0.33955462696030736,-0.10648655146360397,-0.5110636493191123,-0.3913039513863623,0.12486102152615786,-0.3318491028621793,0.5732469321228564,-0.767569231800735,0.7245100243017077,0.4477385696955025,0.16699966369196773,0.732267149258405,-0.4683915972709656,-0.7811033688485622,0.7238813117146492,-0.7934095989912748,0.7450393070466816,0.41389286145567894,0.6978648738004267,-0.22552748257294297,0.2430556700564921,-0.8210363504476845,0.7612016722559929,-0.7509295083582401,-0.5678183692507446,0.1811836240813136,0.4354190481826663,-0.27235347917303443,-0.8137796646915376,0.4255950739607215,-0.45714659383520484,-0.19942231476306915,0.02826445596292615,0.6852584378793836,0.09483823599293828,0.1734128468669951,0.6446452816016972,-0.04515971755608916,-0.6997864060103893,0.49775926675647497,-0.681756338570267,-0.19430767465382814,-0.8837015507742763,-0.7617418728768826,0.9308209521695971,-0.6256227781996131,0.21966643119230866,-0.07608167687430978,0.49437196366488934,0.110031773801893,-0.6882051513530314,0.08785467175766826,-0.43765285424888134,0.1241348679177463,-0.8751623788848519,-0.5968597331084311,0.8508384046144783,-0.004104266408830881,0.5000193063169718,0.1453155456110835,0.4151697945781052,0.5766953048296273,-0.5642619812861085,0.7775391861796379,-0.99492670269683,-0.9081667955033481,0.9654158554039896,0.47841241071000695,0.9629646339453757,-0.9246435626409948,-0.2268769508227706,-0.5864740228280425,-0.885233439039439,0.46108884224668145,0.41608381224796176,0.688393578864634,-0.8632277422584593,-0.1377071337774396,-0.8737555867992342,-0.6502955895848572,0.3386136763729155,0.8760172966867685,0.047287093941122293,-0.6664876374416053,0.5868901629000902,-0.26100198086351156,0.41952554462477565,-0.5474220332689583,0.8247501193545759,-0.13445749692618847,-0.1650935816578567,0.4016209300607443,-0.46714821411296725,0.5565409860573709,0.8254471304826438,-0.9818937960080802,-0.15444685285910964,0.8801661501638591,0.09625263791531324,0.05392820714041591,0.6468262430280447,-0.42162112332880497,-0.7860866668634117,0.19015941303223372,0.5030608265660703,0.8512027659453452,-0.07200599741190672,-0.9602237227372825,0.8620003340765834,0.8445776994340122,0.7630871646106243,-0.17734005954116583,0.8660346479155123,-0.4721116232685745,0.635818655602634,0.09674859885126352,0.11898465687409043,-0.8475446971133351,0.5476521835662425,0.8197605405002832,-0.6261463821865618,-0.0403421726077795,0.2576288152486086,0.9377756007015705,-0.9685240560211241,0.8789450647309422,-0.11443605460226536,0.7238468816503882,-0.4674758380278945,0.6390726873651147,-0.9117947071790695,0.9597348235547543,-0.6729131219908595,-0.5951324044726789,0.8346077841706574,0.6748954565264285,0.06100985826924443,-0.6794152590446174,0.87974613904953,0.23024921910837293,-0.1805792534723878,-0.018851723056286573,-0.6499262941069901,0.334284002892673,-0.4579750564880669,-0.1538013401441276,0.8004936780780554,-0.2475794074125588,-0.8919104263186455,0.7574231419712305,0.9852709821425378,-0.6504363087005913,0.5297800954431295,0.45631408924236894,0.6322028934955597,0.09283886104822159,-0.06603090651333332,-0.49893459491431713,-0.500601158477366,0.4651600830256939,-0.9623751803301275,-0.6847839704714715,0.5387311158701777,0.385933761484921,0.8607850898988545,-0.7106679268181324,-0.6587603804655373,0.3903193329460919,-0.8006036793813109,0.4162265178747475,-0.32616656366735697,0.8017253302969038,-0.3894133334979415,-0.46523567754775286,0.02828908571973443,-0.28631400782614946,0.05958770588040352,-0.9944149423390627,-0.24137789383530617,0.5892366766929626,0.6526308250613511,0.7097742236219347,-0.523935969453305,0.6718471683561802,-0.050648007076233625,-0.9822685704566538,0.5191005091182888,-0.012737490702420473,-0.3025343818590045,-0.6521324263885617,-0.4064656742848456,-0.7766827642917633,-0.7297294982708991,0.13015272887423635,0.5243618241511285,0.4892684696242213,0.8742681629955769,-0.3734200610779226,0.5093078752979636,-0.34939824556931853,-0.8029973236843944,-0.6737737311050296,-0.6297304835170507,0.61013163626194,-0.05392944999039173,-0.18649636022746563,0.9682003501802683,0.7294685910455883,0.13536061020568013,0.6063191602006555,-0.9105070750229061,0.3848109212704003,0.8187662293203175,-0.6149820270948112,0.9657019544392824,0.9282198557630181,0.15286650927737355,0.39250267622992396,-0.6952474187128246,-0.9053100980818272,-0.11732225865125656,0.2355577158741653,0.05469222133979201,0.8870232617482543,0.0046369158662855625,0.1406853348016739,0.1914438446983695,-0.419561168178916,0.07958255894482136,-0.38222069339826703,0.24398289574310184,-0.055166277568787336,0.273124176543206,-0.9693798646330833,-0.9065147936344147,0.17858723876997828,0.20525757176801562,0.2967224079184234,-0.6721635931171477,0.2199905663728714,0.6359934355132282,0.040473079308867455,-0.5754440994933248,-0.7836755681782961,0.6008272017352283,0.265085625462234,-0.5616263914853334,0.8777390453033149,-0.3561776517890394,-0.8896889816969633,-0.10749739082530141,0.1712580998428166,-0.32639217283576727,0.740146033000201,-0.8955557560548186,-0.8205156126059592,-0.1967923091724515,0.917978947982192,0.2681026184000075,-0.2895741988904774,-0.8184731993824244,0.6679817014373839,-0.35998219111934304,-0.8746574888937175,-0.05134016368538141,-0.16026451950892806,0.24326352588832378,-0.7848336715251207,-0.7251452659256756,0.09806444589048624,-0.7507426990196109,-0.8243528455495834,-0.2965773609466851,-0.7732991999946535,0.6734870313666761,-0.357061515096575,-0.146747178863734,0.8155073286034167,0.5473637711256742,-0.3555479687638581,0.5272314664907753,0.15819822065532207,-0.48429365223273635,0.3341047940775752,0.7199766966514289,-0.8697603885084391,0.7455306528136134,0.030764130875468254,-0.39532510936260223,0.025056606624275446,0.8135730195790529,-0.030181206297129393,-0.08218017406761646,-0.7030498185195029,0.5439796508289874,0.5948759722523391,-0.8670975156128407,-0.29254834074527025,0.8270405046641827,0.8350034966133535,0.9012965024448931,-0.4464665721170604,-0.14758404903113842,0.22056626481935382,-0.7256587753072381,0.8745327810756862,-0.5985053195618093,0.9321185327135026,0.38383708568289876,0.8457935089245439,0.7408685153350234,-0.019115206319838762,0.552091701887548,0.7705780942924321,-0.7277655052021146,-0.05305266007781029,0.018168778624385595,0.1371478117071092,-0.6972273839637637,0.4461978883482516,0.3461009678430855,0.7065748036839068,0.8717903145588934,0.5770020484924316,-0.9954987103119493,0.48885437240824103,-0.3596015148796141,0.17538111424073577,-0.024519086815416813,0.23551424033939838,-0.298140421975404,-0.20132024213671684,-0.7255141697824001,0.7161173452623188,-0.8937838822603226,0.38405074179172516,-0.5194126600399613,0.2500582318753004,-0.2165272394195199,-0.8874264131300151,0.5939774266444147,-0.417397593613714,0.1322535164654255,-0.7050051675178111,-0.12937273364514112,0.015151664149016142,0.7608932531438768,0.24432028084993362,0.3542130636051297,0.5443547205068171,0.34689211566001177,0.6052302718162537,0.9362133983522654,0.011973619926720858,-0.48603771859779954,-0.9374373219907284,0.33938918355852365,-0.9495717459358275,-0.698106421623379,-0.8217553561553359,0.09814010979607701,-0.6932083014398813,0.7202679617330432,-0.39208940509706736,-0.1580189666710794,-0.8095043958164752,-0.606481343973428,-0.7191932699643075,0.735641653649509,0.7369843921624124,0.7413296164013445,0.12384144263342023,-0.6022908012382686,-0.29303874308243394,0.7597815347835422,0.07727062236517668,0.37289047287777066,0.6788377561606467,0.9414869099855423,0.9986986257135868,-0.7229598523117602,-0.02622473193332553,-0.9973886078223586,0.17593088233843446,-0.28972365660592914,-0.8767255311831832,0.07899350626394153,0.6163389948196709,0.24006116529926658,-0.23623681347817183,-0.6395055665634573,-0.22486512968316674,0.22932520043104887,-0.8128294763155282,-0.894014566205442,-0.9219482145272195,-0.942849104758352,-0.3194987983442843,-0.7399455267004669,0.15179902547970414,0.3426568820141256,0.8041918058879673,-0.3708935808390379,-0.5591318518854678,0.8089002864435315,-0.6860144319944084,0.2134792278520763,-0.7624222622253001,0.7691359864547849,-0.9045455912128091,-0.1049907156266272,-0.2675669612362981,0.3748496789485216,-0.1294968193396926,0.9532592077739537,0.5524181998334825,0.20811551855877042,-0.3334456360898912,0.3692400245927274,-0.40395628567785025,-0.17937285173684359,0.3092958638444543,-0.43726718006655574,-0.7750102668069303,0.8639309029094875,0.949232823215425,0.6982646617107093,-0.29159111017361283,-0.5454899044707417,0.2358753806911409,-0.48480285378172994,0.16328286426141858,0.9916145168244839,-0.6561340116895735,-0.5103450729511678,0.9986769990064204,-0.6005491246469319,0.132323092315346,-0.6440618876367807,-0.1794130764901638,0.8903243853710592,0.2613690751604736,0.908878764603287,0.013193758204579353,-0.8160669701173902,-0.19718009745702147,0.3483933093957603,-0.1162397712469101,0.839987026527524,0.7743900720961392,-0.25987839000299573,0.1069418890401721,0.9525601132772863,-0.22219212213531137,-0.5130112017504871,-0.7228585588745773,-0.32359257340431213,-0.06583726033568382,-0.28818719275295734,-0.5856085899285972,0.18042636150494218,0.9797756955958903,0.5699577825143933,-0.3113631443120539,0.790350956376642,-0.18970780819654465,0.1933704735711217,0.09008983336389065,0.24065996380522847,-0.7507706698961556,0.6182450060732663,0.26447245851159096,0.6179796885699034,-0.5696016834117472,0.5080929193645716,-0.7556789168156683,-0.6998141845688224,-0.9718367839232087,-0.5990684735588729,0.7616655235178769,0.95672388933599,-0.7632828499190509,-0.7854863423854113,-0.5492753754369915,-0.35176409780979156,0.5480212676338851,-0.47762618446722627,0.07307881722226739,0.7867409777827561,-0.8170293639414012,-0.5442720344290137,-0.6582018733024597,0.5745030222460628,-0.7397298119030893,-0.45450833393260837,0.16466697957366705,-0.2731403331272304,0.009680046699941158,-0.6678147758357227,-0.8749739131890237,0.6213316670618951,0.07367387134581804,0.6959132570773363,-0.13085990631952882,-0.7638044040650129,0.6833242285065353,-0.8172147553414106,-0.7159159490838647,-0.8971013510599732,-0.04442835412919521,0.31161973159760237,-0.9370618159882724,-0.05827812338247895,-0.8662931965664029,-0.9686372177675366,-0.3830355810932815,0.5037329727783799,-0.37878828309476376,-0.4726704969070852,-0.25874862261116505,-0.9030822031199932,-0.268730993848294,0.14031335338950157,0.5460524945519865,-0.6447515431791544,0.2434311779215932,0.6045072451233864,-0.8880482842214406,0.5474993376992643,0.7536373157054186,-0.47674048179760575,-0.8559292443096638,-0.9401813535951078,-0.36550405668094754,0.2290260666050017,0.8915383396670222,-0.06809023581445217,0.5517775770276785,-0.36261758115142584,0.025878019630908966,0.08483057143166661,0.4383265948854387,-0.17571132024750113,0.8214157833717763,0.43536738865077496,0.763708527199924,0.8020103215239942,0.2624529632739723,0.9600472589954734,-0.33748108660802245,-0.1926604281179607,-0.7946421783417463,0.8518552533350885,-0.45772272907197475,0.853472123388201,-0.3847548197954893,-0.7350214216858149,0.4862567358650267,0.8558976058848202,0.18624183582141995,-0.39797704527154565,0.6338935592211783,-0.5840604323893785,0.5103830536827445,0.7445178902707994,-0.798239890486002,0.07836581766605377,-0.14765215059742332,-0.6837726077064872,0.7694109524600208,-0.1124328481964767,-0.2750596231780946,0.31941839447245,0.9962426349520683,0.19800670817494392,-0.936808065045625,0.7767812851816416,0.257307690102607,-0.3678890224546194,-0.8895564991980791,0.015510071534663439,0.5483761690557003,0.4033263921737671,-0.9557359451428056,-0.7253733752295375,0.38389606634154916,-0.4228380066342652,0.5746362134814262,0.02693577902391553,-0.34732371009886265,-0.5820997008122504,-0.010990042239427567,-0.9470872222445905,-0.5650026048533618,0.18572777602821589,-0.899747259914875,0.7842459785751998,0.7580189993605018,-0.7014918755739927,-0.23086192132905126,0.2832318558357656,0.06505824625492096,0.35073269437998533,0.21545194368809462,0.3107448173686862,-0.937122805044055,0.19596873363479972,0.14411664986982942,-0.15169219626113772,0.13116508163511753,-0.8406449086032808,-0.28628780925646424,0.3418111242353916,0.894762912299484,0.03369130566716194,-0.9325612331740558,0.5905732652172446,0.1269180504605174,-0.19098624773323536,-0.13167368806898594,-0.6865412299521267,0.7299900730140507,-0.7850951799191535,-0.8190009682439268,0.045992217026650906,-0.6813013348728418,0.32638298720121384,-0.6699496293440461,-0.4019976109266281,0.7553460164926946,0.7244003503583372,0.2196014686487615,-0.9375091553665698,-0.5026723938062787,0.47991957189515233,0.7640854530036449,0.6513846279121935,0.08234014268964529,0.905698299407959,-0.6342847784981132,0.9235131493769586,0.9281846256926656,-0.6031754212453961,0.8354777675122023,-0.4283670075237751,0.22310129320248961,0.30991450091823936,-0.6730966246686876,0.4714891496114433,0.3429854796268046,-0.871008591260761,-0.7826121598482132,-0.16643499303609133,-0.796373802702874,0.19097400549799204,0.0575599605217576,-0.9895588709041476,0.31753231259062886,0.689164909068495,-0.8285503974184394,-0.6002957937307656,0.6163916671648622,-0.3655851795338094,0.17925161588937044,-0.23067256808280945,-0.07735954411327839,0.5664609451778233,0.022526599001139402,0.7133107520639896,0.853003041818738,-0.12354696309193969,0.40307298954576254,-0.4530043047852814,0.5795817165635526,0.39896849216893315,-0.7274990305304527,0.2110088337212801,0.39131014700978994,-0.06355441501364112,-0.31128854351118207,-0.5078943157568574,0.34356101090088487,0.7032385431230068,-0.6234432281926274,-0.025395024567842484,-0.16281863348558545,0.8676033038645983,-0.5014580823481083,0.7392190406098962,0.8344996785745025,0.6280008773319423,-0.973435684107244,-0.07985972333699465,0.5764468028210104,0.8352826153859496,0.032784991431981325,-0.5189903299324214,-0.3911372348666191,-0.3414614163339138,0.7941818227991462,0.13806591229513288,0.11221118923276663,0.6025037569925189,0.7956796926446259,0.628965082578361,0.4308435497805476,0.35938473837450147,0.9814092051237822,0.005179984960705042,-0.5443979538977146,0.48410160886123776,0.8179969443008304,0.2767995074391365,0.9214174798689783,0.3796868515200913,-0.34557601530104876,0.24283843766897917,-0.15164762595668435,-0.4900255622342229,0.8709562770090997,0.15764243248850107,-0.4364096140488982,0.7717985003255308,-0.215987594332546,-0.4965637940913439,-0.8027122900821269,0.9385916315950453,0.49213524628430605,-0.4450783422216773,-0.5278156334534287,-0.44679728569462895,0.8986014635302126,-0.35878439294174314,0.7522369930520654,-0.040315997786819935,-0.20428288960829377,0.7428732011467218,-0.6470493907108903,-0.22527503594756126,0.6263004946522415,0.6316541228443384,-0.24919575871899724,-0.5773063395172358,-0.5395461535081267,-0.8040844537317753,-0.8632277264259756,-0.5693308380432427,-0.9365205205976963,-0.8293583067134023,-0.8481310517527163,-0.6803106893785298,-0.48681342182680964,0.03525251941755414,0.9203764302656054,-0.5734498747624457,-0.04768166318535805,0.8158067530021071,-0.5131308133713901,-0.3013870338909328,-0.20269251707941294,0.45176922250539064,0.5252562328241765,0.5832474948838353,0.3123150337487459,-0.45117085659876466,-0.22990021295845509,0.330437118653208,-0.1588971191085875,-0.858734643086791,-0.6551088164560497,0.8083300362341106,0.9890425628982484,0.9260937795042992,0.4154017399996519,0.5292039322666824,-0.26901991572231054,0.3215667880140245,0.5983336269855499,-0.059552053920924664,0.9074264764785767,0.5598463760688901,0.8447836511768401,-0.4220051229931414,-0.06342991814017296,0.604138558730483,-0.9733844641596079,0.6246496266685426,0.16764711728319526,0.985450912732631,0.6400266396813095,0.9474782696925104,-0.6317660119384527,0.4206032371148467,0.9039855441078544,0.564823298715055,0.21047678869217634,0.8904142417013645,-0.755887268576771,0.4048786098137498,-0.05754206236451864,-0.7269141618162394,0.13330945698544383,-0.7046834258362651,0.803615546785295,0.07430118042975664,0.549010953400284,0.4928292781114578,-0.1778209963813424,-0.7059963089413941,-0.3172797658480704,-0.6371003235690296,0.9209534064866602,0.6305906856432557,-0.6068319417536259,-0.20062406081706285,-0.5849447450600564,0.3767910194583237,-0.5503726620227098,-0.26371559826657176,0.6979828411713243,-0.9164041257463396,-0.16116792056709528,-0.2885175598785281,0.27871462516486645,0.9545852513983846,-0.7752387658692896,0.615439513232559,-0.13996419310569763,0.09958449192345142,-0.8718686103820801,-0.5096246185712516,0.8642527004703879,-0.8408370800316334,0.44290130445733666,-0.9421943221241236,0.2675393628887832,-0.5120323654264212,0.1446964917704463,-0.7401455952785909,-0.3236124482937157,0.8121372871100903,-0.6076581114903092,0.23837980860844254,0.5652948450297117,-0.9457211862318218,-0.6211186582222581,-0.3418905781581998,0.26221949607133865,0.28459640219807625,-0.10172491706907749,0.10594098921865225,-0.38949748408049345,0.2964865677058697,0.48048751382157207,-0.2540058153681457,0.751108072232455,0.5412670411169529,-0.24420133884996176,-0.9066326632164419,0.547575896140188,0.6033750521019101,-0.5097010238096118,-0.9325967701151967,0.8197602732107043,0.2507286579348147,0.7859954135492444,-0.07857226533815265,0.04418775113299489,0.059167507104575634,-0.0208500768058002,-0.8491851175203919,-0.6669373358599842,0.981397797819227,0.4028688808903098,0.5107200434431434,-0.13671251898631454,0.6291737277060747,-0.6681283744983375,0.2570838639512658,-0.9693333897739649,-0.1980961812660098,-0.7293702526949346,0.12158685876056552,-0.1452719047665596,0.7496955520473421,0.46884596440941095,-0.22937197983264923,-0.4402980860322714,0.20480240555480123,-0.8765810481272638,-0.9216516488231719,0.2710485840216279,-0.05730589898303151,0.2796929250471294,-0.12701786030083895,0.7970650703646243,0.0453943251632154,-0.5531250000931323,-0.2562283640727401,0.31587004754692316,0.7210774426348507,0.6077471822500229,0.49248571787029505,0.14649689849466085,0.8777094422839582,-0.9789451574906707,-0.8831650330685079,-0.31419159891083837,-0.25825272034853697,-0.10292195621877909,-0.7958444971591234,-0.915700547862798,0.9696621429175138,-0.4504086123779416,-0.7830958594568074,-0.4081721333786845,0.9937951979227364,-0.4613970424979925,0.8187809595838189,-0.8272291589528322,0.1787604740820825,-0.5666189179755747,0.9965285267680883,0.8229847247712314,0.17127880780026317,-0.37203103490173817,0.5405061370693147,-0.7421881221234798,-0.7896331432275474,-0.9297742578200996,0.07766687544062734,0.01928751077502966,0.9987705601379275,-0.06741447793319821,-0.8977412334643304,-0.6640042117796838,-0.09090967429801822,-0.44776990870013833,-0.022743793670088053,0.8047532583586872,-0.13812808645889163,-0.7262400309555233,0.5718703721649945,0.5337033467367291,0.6124914684332907,-0.38000141782686114,0.27705694921314716,0.7335155592299998,-0.7804811242967844,-0.977362759411335,-0.7644054391421378,0.3283373061567545,0.5364197418093681,-0.3413014174439013,-0.2390276025980711,0.4533758298493922,0.12039220798760653,0.27697941241785884,0.7375614903867245,-0.4728033263236284,0.5706186657771468,-0.6035063117742538,-0.9096836852841079,0.5242703072726727,-0.4262413429096341,0.6733999936841428,0.8525061379186809,0.6163550144992769,-0.12142491992563009,-0.7070619920268655,-0.5601992229931056,-0.4616256053559482,-0.1859589507803321,-0.29336847411468625,-0.3762192972935736,-0.6384030785411596,0.06249974947422743,0.6618555798195302,0.8603967963717878,-0.23496773466467857,-0.013571077957749367,-0.2945652953349054,-0.7734933993779123,-0.25983003806322813,0.9649383411742747,0.00898456759750843,-0.20327793853357434,0.4924809318035841,-0.4206363968551159,-0.42844250332564116,0.781845991499722,0.5903421738184988,0.3991418583318591,-0.8209799621254206,0.6344201844185591,0.07231260230764747,0.7797544025816023,0.9932615188881755,0.5013435711152852,0.7251178342849016,-0.302713792771101,-0.8126295674592257,0.7034344589337707,-0.6419100887142122,-0.48949057050049305,0.4651326686143875,0.8553647259250283,0.26373954536393285,-0.7783232959918678,-0.19055901980027556,-0.35782113252207637,-0.9718957603909075,-0.19417942920699716,0.6712985588237643,-0.1864242386072874,-0.6299355928786099,0.8904098947532475,0.7552842549048364,0.9832978895865381,0.7704924703575671,-0.42173747858032584,-0.2668250114656985,0.46969099482521415,0.010200890246778727,-0.8138876869343221,0.21186788054183125,-0.14138944493606687,0.4606083747930825,0.17583405645564198,0.5308109712786973,-0.9999918439425528,-0.25128532759845257,0.8778568911366165,0.6571847265586257,0.017216975335031748,-0.17605816246941686,0.8821179661899805,-0.7357157864607871,-0.2033193577080965,-0.0081584551371634,-0.9197839661501348,0.7278729192912579,-0.6557870991528034,0.09227725071832538,0.31369342328980565,-0.5087256538681686,0.2688518287613988,0.7043326538987458,-0.8391737304627895,0.9069500369951129,0.18137528002262115,0.9576115603558719,0.18522717850282788,-0.5587305384688079,-0.9609933728352189,0.6205425714142621,0.19419133523479104,-0.1540599693544209,0.5141781009733677,-0.04410338308662176,0.3096403004601598,-0.7078274567611516,0.9196327696554363,-0.22342786518856883,-0.021887900307774544,0.09816687041893601,-0.1016592476516962,-0.3126876293681562,-0.5538190025836229,0.5987649993039668,-0.9943667687475681,-0.35954549070447683,0.2698215148411691,0.4899643319658935,-0.008684096857905388,0.8168763127177954,0.39391311490908265,0.8969653444364667,0.8876195531338453,0.16890166234225035,0.3347073784098029,-0.06631462834775448,0.11968155205249786,-0.9940366419032216,0.03550523845478892,0.6516727772541344,-0.36433668341487646,0.9162722434848547,0.5457430705428123,0.3885980388149619,0.7478077686391771,-0.36918462021276355,-0.722315491642803,-0.8959454190917313,0.058175225742161274,0.19460312509909272,-0.18471843609586358,-0.9117664806544781,0.37623087922111154,0.22755486192181706,-0.6506720553152263,0.1497830394655466,0.21831403765827417,0.07007989287376404,0.19075386226177216,0.9729942800477147,-0.6741091725416481,0.7458759141154587,-0.4178091222420335,0.10982510494068265,-0.6799292326904833,-0.7999973064288497,0.9632683703675866,-0.9817122761160135,0.8220423539169133,-0.06730322493240237,-0.016309128142893314,0.2886752770282328,-0.8044812153093517,-0.9021103684790432,-0.13004357693716884,0.01458391873165965,0.6592134586535394,0.7007174924947321,0.08580703986808658,0.806512831710279,-0.18917573243379593,0.3726944555528462,-0.15248033637180924,-0.41439300402998924,0.6990313911810517,-0.4072205610573292,0.2139546014368534,-0.5753464973531663,0.5358188077807426,-0.04667192371562123,-0.10803388431668282,0.9123199013993144,0.009574618190526962,-0.5688997600227594,0.6793981064110994,-0.2219565324485302,-0.8943164087831974,-0.04475810704752803,0.4101300365291536,0.9171428210102022,-0.31353342393413186,0.10358260618522763,-0.3830343158915639,0.9101612390950322,0.2651674705557525,0.26064356695860624,-0.5078749512322247,0.2355690156109631,0.10947096906602383,-0.4494948098435998,0.7118765511550009,0.2040953142568469,-0.5947476727887988,-0.05794776603579521,-0.03710147552192211,0.8397505898028612,0.4117026971653104,-0.5873809447512031,-0.8251278987154365,-0.2011279077269137,0.9616872305050492,0.7962584653869271,-0.6287296996451914,-0.03339118091389537,-0.541289918590337,-0.5994536415673792,0.9703352358192205,0.17803086386993527,-0.5292390934191644,-0.9783590007573366,-0.22091198293492198,0.13305147225037217,0.11869873153045774,-0.16962041659280658,-0.13490387238562107,0.6759016332216561,-0.5655409437604249,-0.80591374123469,-0.8250681618228555,0.2642874699085951,0.3167983670718968,-0.08149625919759274,-0.7565215989015996,0.08985581900924444,-0.9245592467486858,-0.629975522402674,0.20533822011202574,-0.08272806880995631,0.7741642114706337,0.1551153021864593,0.8466657837852836,0.3537322198972106,0.27251295978203416,0.8617807398550212,-0.15362937608733773,-0.8153379200957716,-0.7220184896141291,0.4146844488568604,0.6021083239465952,-0.6746081924065948,-0.28757764026522636,-0.16828529443591833,0.29617197811603546,0.8839242751710117,0.9019887060858309,0.07775428984314203,0.5713391494937241,-0.17866202676668763,-0.3578926585614681,0.2765135820955038,0.2918510977178812,0.3903701980598271,-0.18607213161885738,0.6637305025942624,-0.23197007039561868,-0.6228945297189057,0.24009757302701473,-0.5987192667089403,-0.2590541383251548,0.15948818111792207,0.04222643002867699,-0.04289705120027065,0.016355798114091158,0.5976137602701783,0.3484546518884599,0.7307233102619648,-0.8279486363753676,-0.7714453232474625,0.7192702069878578,0.49690710846334696,0.5986349880695343,0.9905055561102927,-0.25196294439956546,0.08446948463097215,0.29860288463532925,-0.8678666753694415,0.13203129870817065,0.22095083771273494,-0.40911955386400223,-0.5317803299985826,0.771892324090004,-0.9702576901763678,-0.21462816605344415,-0.9018983556888998,0.6209402359090745,0.2256573117338121,0.13986153062433004,-3.3389776945114136e-05,-0.8147772275842726,0.04452456580474973,-0.22229529451578856,-0.5142010911367834,-0.5914356145076454,-0.4645203370600939,-0.27711164113134146,-0.4997940012253821,-0.6672048117034137,0.07464724592864513,0.14418374095112085,-0.3334298194386065,0.0429351800121367,-0.7139011127874255,0.8468085927888751,-0.8927280595526099,0.7107961545698345,0.905134588945657,0.4222709792666137,-0.0549513204023242,0.741139059420675,0.6737284688279033,0.5209874659776688,0.592495156917721,-0.0172835155390203,0.9947105925530195,0.5067572039552033,0.6034981575794518,-0.7069199718534946,0.6204127604141831,0.34673625649884343,-0.4945859704166651,-0.5479248040355742,-0.3535595014691353,0.07995407050475478,-0.6030972674489021,-0.16369327250868082,0.35312711354345083,-0.08649071399122477,-0.9552684584632516,-0.49047652119770646,0.08457009121775627,-0.7290961877442896,-0.9296185187995434,-0.7109715845435858,0.2621679762378335,0.4103575348854065,0.9610804272815585,-0.9002129239961505,0.9935934254899621,-0.6907864967361093,0.7289122859947383,-0.6211109953001142,0.4273863905109465,-0.9025605488568544,0.04267159290611744,-0.09963329043239355,-0.7443187246099114,-0.2780532278120518,-0.4358740709722042,-0.836746983230114,-0.25941091356799006,0.2733351835049689,0.9777978374622762,0.23398233577609062,0.589259045664221,-0.4135272423736751,-0.6475152592174709,0.9747071587480605,-0.5392922856844962,0.19343610620126128,-0.7541897380724549,0.4229404632933438,-0.33537421049550176,0.7668246268294752,0.4571579899638891,0.8529287204146385,0.7020297558046877,-0.16269068559631705,0.1308068111538887,-0.4873137790709734,0.31417833594605327,0.21603729389607906,0.5786361461505294,0.20348572544753551,0.7644447116181254,0.6775921550579369,-0.9116735779680312,-0.7507205246947706,0.5078770159743726,0.9427715381607413,0.28446153830736876,0.8228689706884325,-0.44599719485267997,-0.7618419253267348,-0.9802334033884108,0.6040373840369284,0.6764546534977853,-0.4835708038881421,-0.304062195122242,0.2888619266450405,0.20897654490545392,-0.5709749171510339,-0.524511516559869,-0.06587450439110398,-0.7790251397527754,-0.5641967351548374,-0.9447713759727776,0.6716533140279353,0.8280837894417346,0.2663783524185419,0.1712662735953927,0.01265325816348195,-0.15621194848790765,0.022512248251587152,-0.5304038338363171,-0.09160879021510482,0.09792840713635087,-0.41020148573443294,0.8319134949706495,0.24945667758584023,-0.5275212293490767,-0.5210000439547002,0.7826673458330333,0.9476926508359611,0.9810403119772673,0.6749238348565996,-0.810838570818305,0.5523590338416398,-0.4595712358132005,0.6439398918300867,-0.10425198636949062,0.9452395769767463,0.1908805826678872,-0.4091226398013532,-0.5536895096302032,-0.36529294587671757,-0.45155103551223874,0.6948731187731028,-0.5543960351496935,-0.015032564289867878,0.4856294598430395,0.4510302091948688,-0.2195464144460857,-0.7669050861150026,0.4524206309579313,-0.9291143137961626,-0.22730069886893034,-0.7057027076371014,-0.5359180443920195,0.9654751247726381,-0.9283313960768282,-0.5857849349267781,-0.48182386672124267,0.7309185648337007,0.9173538759350777,-0.1378124370239675,-0.811124422121793,-0.4811991350725293,0.3139850259758532,0.9052314865402877,-0.22263638023287058,-0.1496922755613923,-0.03559668501839042,-0.5370306163094938,0.2776262341067195,0.5819023828953505,0.36653380701318383,0.2563381209038198,0.10073886904865503,0.49564989330247045,0.2456391784362495,0.874379409942776,-0.22840955387800932,0.4363897037692368,-0.06496148323640227,-0.10986436950042844,0.8407726949080825,0.47651909617707133,0.894715997390449,-0.9016534900292754,0.05148853920400143,0.23051059618592262,-0.6424454525113106,0.3696056487970054,0.9321891372092068,0.6675208271481097,0.8296464774757624,0.5264743212610483,-0.3741507832892239,0.5332562127150595,0.28295614290982485,-0.3560975822620094,0.5381750208325684,0.9136138381436467,0.8337434651330113,-0.1471002036705613,0.7158350348472595,-0.8488920135423541,-0.9592435667291284,0.12536755157634616,-0.17996015027165413,-0.4569094553589821,0.16268255887553096,-0.09571036882698536,0.28478081850335,-0.9164514443837106,-0.6734469751827419,0.6459444500505924,0.7980374987237155,0.8985950262285769,0.9251526687294245,0.5397534719668329,-0.095202277880162,0.7250641090795398,0.5746587002649903,0.08894256874918938,0.4027570062316954,0.4926224765367806,-0.648694300558418,0.7607615976594388,0.05518100876361132,-0.5678681060671806,0.6875224518589675,-0.5474224276840687,-0.6024165623821318,0.6136550419032574,0.08983680233359337,-0.1505405167117715,0.18264980427920818,0.2520962068811059,0.6932282587513328,-0.33112719282507896,-0.2942450921982527,-0.46767459716647863,-0.7597083551809192,-0.6860860595479608,-0.2506507383659482,-0.08155463729053736,0.914730645250529,0.3644532384350896,0.7600373770110309,-0.7508774106390774,0.4689182760193944,0.5551291066221893,-0.900284084957093,0.29336444567888975,-0.5925066461786628,-0.25020653335377574,-0.7796838968060911,-0.09053578786551952,-0.6810604259371758,0.9818545421585441,0.8983281212858856,-0.2453292515128851,-0.6040099244564772,-0.2933580307289958,0.31529972050338984,0.18582972045987844,0.4936333801597357,-0.2540118433535099,-0.4529107459820807,0.8814149755053222,-0.811981565784663,-0.5202101590111852,0.6219887700863183,-0.23576339473947883,-0.18944679480046034,-0.17464550537988544,-0.34769095946103334,-0.01127515360713005,-0.3873610286973417,-0.4524430395103991,-0.8563186987303197,-0.30270039895549417,-0.8589702844619751,0.6153374160639942,-0.8450383869931102,-0.1839383072219789,0.6458621970377862,-0.7388451835140586,0.8255631220526993,0.734939752612263,-0.81632563425228,-0.5106729343533516,0.16811848618090153,0.44095870992168784,-0.31971902679651976,-0.5170836611650884,-0.8649261496029794,0.3813360729254782,0.2401965046301484,0.5300671528093517,-0.8085798053070903,0.6848147516138852,-0.21693717082962394,0.3321669902652502,-0.6537319654598832,0.22613028110936284,-0.7134521775878966,-0.5923460694029927,0.8304857183247805,-0.14420399721711874,0.8924997178837657,-0.4987987270578742,-0.0268022115342319,-0.4003076823428273,0.9214670765213668,0.7527362583205104,-0.020783542189747095,0.6301821805536747,-0.3845088817179203,0.9856984750367701,0.3924166983924806,0.6412191721610725,0.19759763171896338,0.2214852417819202,0.6654992001131177,0.8532813009805977,0.5350556606426835,-0.6611721781082451,-0.803207678720355,0.715937948320061,0.2289410810917616,-0.486462842207402,-0.015305251348763704,0.9804654289036989,-0.8653541589155793,-0.7533780890516937,-0.5871320152655244,-0.583573104813695,-0.713532171677798,0.3047050475142896,0.06441816547885537,-0.6909513208083808,0.3673333483748138,-0.928611081559211,0.022956558968871832,-0.43703867122530937,-0.4151331945322454,-0.7775911074131727,0.2673019818030298,-0.5752984737046063,0.5473609254695475,-0.34295366890728474,0.627894236240536,0.04793599806725979,0.6618940988555551,0.3894019303843379,0.4681380894035101,0.5597836864180863,-0.9609821173362434,-0.41787937097251415,0.4886444276198745,-0.11152016371488571,0.3879961366765201,-0.8385762181133032,0.8509314619004726,-0.36807127576321363,0.8286613156087697,-0.38343677297234535,0.2491686218418181,-0.8272482207976282,-0.16144416760653257,0.6122132842428982,-0.17829320160672069,-0.813919186592102,-0.225713980384171,-0.8293037298135459,0.7921039811335504,-0.016546691302210093,0.42065339535474777,0.5324508463963866,-0.9397071818821132,0.9109705057926476,-0.771406726911664,0.2115470035932958,-0.26474654302001,-0.9384197555482388,-0.6551206652075052,0.7221304224804044,0.23032707395032048,-0.6729222424328327,-0.6097935233265162,-0.1636870913207531,-0.41130095487460494,-0.20687126135453582,-0.25180792808532715,0.4492333806119859,-0.09862232161685824,-0.5760210826992989,0.8448169208131731,-0.5206174263730645,0.20522994408383965,0.030518617015331984,0.13424363126978278,-0.09013755014166236,0.9584046700038016,0.15663392655551434,0.5964959035627544,0.8687938451766968,0.382934900932014,0.6714323265478015,-0.0543211386539042,0.021811912767589092,0.09308865386992693,0.5009408900514245,-0.4815539186820388,0.08536552591249347,-0.7127503221854568,-0.7738621979951859,0.9377453899942338,0.8102218233980238,-0.850007142405957,0.5960307414643466,0.8624824252910912,-0.6770704775117338,0.5379299344494939,0.2121360283344984,-0.6221293616108596,0.5956532121635973,-0.3916547582484782,0.7488583019003272,-0.03825827781111002,0.2947269035503268,-0.5566677898168564,0.8636960196308792,-0.27453172532841563,0.38696598540991545,-0.48425048030912876,0.6717206561006606,-0.11759413499385118,0.4641863494180143,0.6110055898316205,0.5974115184508264,0.37830091267824173,0.09614383894950151,-0.5989392232149839,0.6264451593160629,-0.42800478311255574,-0.8068283651955426,-0.7838687896728516,0.7695574252866209,-0.8468044903129339,-0.9375605946406722,0.8119265204295516,-0.3839088976383209,0.03772162087261677,0.5687332767993212,0.7019031327217817,0.7756464187987149,-0.1723651997745037,-0.21634994726628065,0.5369077166542411,0.9864629348739982,0.298881224822253,0.4365566400811076,0.9681593775749207,0.36343751987442374,0.6327900174073875,-0.9112474918365479,-0.37129584653303027,0.6183135402388871,0.8516245866194367,-0.9826459712348878,0.05302839959040284,-0.14769634092226624,0.7052884018048644,-0.8617808995768428,0.7982530845329165,-0.7574938759207726,-0.30570185696706176,0.5743463053368032,0.26821568654850125,-0.7409965726546943,0.624547905754298,0.3825095761567354,-0.13459781929850578,-0.1940862163901329,0.08308640867471695,0.8321784231811762,-0.39432989805936813,-0.1692415769211948,-0.05236862599849701,-0.9070378877222538,0.17767083318904042,0.21325044566765428,0.19013849133625627,0.9675966096110642,-0.8157656090334058,0.9139449917711318,0.9263938842341304,-0.4173434255644679,-0.6293161977082491,0.5139771602116525,-0.7270513749681413,0.23621415859088302,0.18859548028558493,0.717582976911217,-0.07872524531558156,-0.7150688339024782,-0.36268488178029656,-0.47231626557186246,-0.031794993206858635,0.062281434424221516,0.8061696719378233,0.8085601781494915,-0.3313804343342781,-0.2735416842624545,-0.8839238658547401,0.7947111944667995,-0.7116146506741643,0.7788753365166485,-0.9649575804360211,-0.1824661153368652,0.7136078514158726,0.08011106820777059,-0.9769785669632256,-0.45299449982121587,-0.31479553133249283,0.8091637124307454,0.057411336340010166,0.7107042376883328,0.7318447753787041,-0.9478229111991823,-0.3026559450663626,0.05981470597907901,0.6295917937532067,-0.18085409048944712,-0.12569950707256794,-0.6909686760045588,-0.9744029892608523,-0.4268557815812528,0.697614342905581,-0.13260730169713497,-0.8082940303720534,0.4971434008330107,0.9312872495502234,0.712548446841538,0.3744243383407593,-0.24985725479200482,-0.3186164190992713,0.1883911364711821,0.9601091407239437,-0.49878955259919167,0.5724974367767572,-0.8407746907323599,0.7990567702800035,0.6167384921573102,0.663537107873708,-0.03403127659112215,0.0827462449669838,-0.13001898722723126,0.2403536383062601,0.4561300855129957,-0.8641597921960056,0.8994141831062734,-0.7308110212907195,-0.03543428424745798,-0.4466057703830302,-0.2949256314896047,-0.3599933688528836,0.41011046804487705,0.27277453569695354,-0.6028078170493245,0.9071241929195821,0.5836172155104578,0.13186838990077376,0.44719107169657946,0.6282252734526992,0.2832185095176101,0.6413722997531295,-0.4695076644420624,-0.15590663999319077,0.5802130834199488,0.5762986517511308,-0.7157161072827876,0.029623803216964006,0.9798177373595536,-0.0960853029973805,-0.3125756084918976,0.5993085061199963,-0.5114140217192471,-0.5340363425202668,0.7415641136467457,-0.6714872494339943,-0.8364950492978096,0.3925449107773602,-0.5963506833650172,-0.2551477528177202,-0.01903199078515172,0.8880636617541313,-0.0836094580590725,-0.5961000449024141,0.653103640768677,-0.4110769284889102,0.43394065415486693,-0.26346543757244945,-0.00041816337034106255,-0.407174960244447,0.8129364582709968,-0.04986357502639294,0.1003641770221293,-0.3339253622107208,-0.944942825473845,0.9472604533657432,0.33346682600677013,-0.4225785220041871,0.07147192861884832,0.7833792720921338,0.39057002775371075,0.2674466543830931,0.7169305086135864,-0.00580251682549715,0.3917416734620929,-0.06617972860112786,-0.18235589424148202,-0.7685400163754821,-0.5728084342554212,-0.041068421211093664,0.12099459208548069,-0.19692941335961223,0.31249234499409795,-0.5934110372327268,0.26202933257445693,0.9773891558870673,0.27524237986654043,0.7068878011777997,-0.26260331831872463,-0.16021281573921442,-0.02765604294836521,0.5694495663046837,-0.35078479861840606,-0.1780467266216874,-0.9546550214290619,-0.886324159335345,0.50786077324301,-0.9338263683021069,0.20677041728049517,-0.04391368757933378,-0.07847810303792357,0.9317710013128817,-0.39319790061563253,0.5796052636578679,-0.9426275864243507,0.8930274206213653,0.4042365998029709,-0.05239916639402509,0.9470956767909229,-0.8955092923715711,-0.3797874916344881,0.6605722773820162,-0.44106953823938966,0.32998981792479753,0.6367571293376386,-0.8880796195007861,0.3184561403468251,0.16401783609762788,0.7712630461901426,0.3579601398669183,0.7525871708057821,-0.014018343761563301,0.21280263736844063,0.6504473704844713,-0.5892137358896434,0.3197284829802811,0.8046672255732119,-0.8150811181403697,-0.22338050417602062,0.585784652736038,-0.1302335853688419,0.11473125731572509,-0.8825037819333375,-0.3018291690386832,-0.5984947476536036,0.638561800122261,-0.3539812280796468,0.002878150437027216,0.7054433012381196,-0.2973927352577448,0.02952007343992591,0.9914481267333031,0.3103066929616034,-0.7140512964688241,0.5579253719188273,0.22837141482159495,0.8925317986868322,-0.8226163731887937,0.26716137723997235,-0.11616688733920455,-0.3108169278129935,0.37706656055524945,-0.14681457309052348,-0.21905072452500463,0.4153849664144218,-0.7727872203104198,-0.8774736295454204,-0.8614829881116748,-0.17497715260833502,0.5639814171008766,0.040431078523397446,-0.9508481943048537,0.9242738685570657,0.9219566211104393,-0.9614715096540749,-0.49045617412775755,0.11075886059552431,-0.1968890316784382,0.24375944212079048,0.7285063420422375,0.4469448602758348,0.8893799488432705,0.8874817844480276,-0.608932959381491,0.22128221252933145,0.7787033510394394,0.7705906210467219,0.24409430287778378,0.309212910477072,-0.08817591518163681,0.06805103225633502,-0.3505801372230053,-0.9736759634688497,-0.3980654375627637,0.39804069278761744,0.9650076013058424,0.2122469376772642,0.9283562628552318,-0.6616076952777803,-0.5352011891081929,0.22182718804106116,-0.06361492024734616,-0.01072688028216362,-0.6781318220309913,-0.754646759480238,-0.5693241711705923,0.2279907581396401,0.23009442957118154,-0.981674914713949,0.03859452484175563,0.7158677261322737,0.6094544059596956,0.8307063197717071,-0.7002758588641882,-0.6259867493063211,0.06485328730195761,0.324311510194093,0.9114605532959104,0.7199723604135215,-0.2656741910614073,-0.49624884501099586,0.7765782666392624,0.9312620735727251,-0.5941477809101343,-0.42622379399836063,-0.7872945959679782,0.12044127425178885,-0.14088417263701558,0.49311574874445796,0.2572176679968834,0.4544918038882315,-0.35532775055617094,-0.9838173007592559,-0.3027560585178435,0.17662073019891977,-0.8712345506064594,-0.22198891080915928,-0.631994497962296,-0.7962269480340183,0.6258917511440814,0.9776171445846558,-0.5159425921738148,-0.8450962323695421,-0.6978728035464883,-0.6479189265519381,0.5210571042262018,-0.2156675923615694,0.08238675259053707,0.39490068843588233,-0.35505133029073477,0.8183504124172032,0.32609164994210005,-0.6852506566792727,-0.6623003189451993,0.5863051968626678,-0.1112353503704071,-0.7135538193397224,0.2757307393476367,0.518322788644582,0.5916206706315279,-0.9447625377215445,-0.2511495337821543,-0.45283391419798136,-0.6375572546385229,0.8806038876064122,0.8563345316797495,0.3352662306278944,0.37263379944488406,0.6260025994852185,-0.20942287892103195,-0.18743142439052463,-0.7640945208258927,0.9415725516155362,0.15884875785559416,0.8183410451747477,0.9654464484192431,-0.4299314529635012,-0.22848923970013857,-0.42556740110740066,0.42304049246013165,-0.3027470400556922,0.6421131426468492,-0.698084790725261,-0.3544518160633743,0.06013165134936571,0.8868580614216626,0.07151909591630101,-0.6357974819839001,0.22194483131170273,0.45140295196324587,-0.6558340201154351,0.2732640993781388,-0.0750728421844542,0.4379215086810291,-0.4545767796225846,-0.8757317098788917,-0.035440399311482906,-0.12412306712940335,-0.6230014739558101,0.5761997643858194,-0.6337557551451027,0.5054054530337453,0.014724389649927616,0.20319336000829935,-0.25116145610809326,-0.349695457611233,-0.6344442600384355,-0.46946884924545884,-0.6201292322948575,-0.211539376527071,0.5368122118525207,-0.6046150662004948,-0.3724467777647078,0.5171773675829172,0.48359452933073044,0.5372249442152679,0.8284179926849902,-0.8304248955100775,-0.111754703335464,0.45423459680750966,-0.9694896475411952,0.6222712048329413,0.062140270601958036,0.573685075622052,0.7874240595847368,0.21790856774896383,0.838714640121907,-0.8432178255170584,0.6798198046162724,0.9478201568126678,0.5288749798201025,-0.0683292867615819,-0.6848154054023325,-0.8068218706175685,-0.4417972704395652,-0.49134455481544137,0.825205179862678,0.8504597898572683,-0.8285278272815049,-0.36748012574389577,-0.8558359956368804,-0.843066222500056,0.01152083557099104,0.7218972882255912,-0.4262610892765224,0.8718294072896242,0.16702722338959575,0.24207725562155247,-0.4503139788284898,-0.8339300970546901,0.10780457872897387,-0.6994954901747406,-0.6980278990231454,0.7830608552321792,0.7375138374045491,-0.33673602482303977,-0.6723664519377053,0.4563959394581616,0.21726907743141055,0.19468713970854878,0.7705356469377875,-0.675918763037771,0.3913935823366046,0.312631665263325,0.19201269885525107,-0.28655858151614666,-0.9706246932037175,0.6493534590117633,0.6988914762623608,-0.7756719519384205,0.47984560299664736,-0.8202863368205726,0.5748661304824054,0.40078427037224174,0.4578426331281662,-0.0640908288769424,0.9399262005463243,-0.9617014368996024,0.18018667865544558,0.8673173123970628,0.986115301027894,-0.8701142342761159,0.32715218886733055,-0.6850729594007134,0.4451702474616468,-0.4072540602646768,0.705213469453156,0.6396280047483742,-0.8243387318216264,-0.8012607381679118,0.5873466162011027,-0.19535953039303422,-0.2958741523325443,-0.09093031706288457,-0.45258935634046793,-0.9213334149681032,0.5717617846094072,-0.6971527580171824,-0.6350480755791068,0.38422602135688066,0.1227819612249732,-0.40475180745124817,-0.1655264520086348,0.24623427540063858,0.07813443848863244,0.7692983401939273,0.9407407571561635,0.7111581261269748,-0.9184225602075458,-0.9399345912970603,0.6271815500222147,-0.09296904597431421,0.6529648648574948,-0.5116442255675793,-0.1149373846128583,0.546955585014075,-0.7438829066231847,0.011652152519673109,0.14953423524275422,0.2418924360536039,-0.3928477494046092,0.9005761183798313,0.5059212348423898,0.2986333887092769,-0.13841393264010549,-0.1264384095557034,0.9549960922449827,0.12821812229231,-0.8018547524698079,-0.6703107720240951,-0.891423711553216,0.345890695694834,0.08268147660419345,0.20252383686602116,0.6524780471809208,0.08318231208249927,-0.28961089067161083,0.5384754724800587,-0.3538933815434575,-0.8759220377542078,0.4386272672563791,-0.8922355379909277,0.9057132843881845,-0.7315669227391481,0.44332161312922835,0.16975044598802924,-0.22086646547541022,0.82334840670228,-0.03876154776662588,-0.885833416134119,0.4982717176899314,-0.3031017077155411,0.23903732374310493,0.8785384423099458,0.4997558230534196,0.8366472800262272,0.8130089291371405,0.05204562284052372,-0.9362909374758601,0.36950761498883367,0.591809940058738,-0.5446177516132593,0.29398904694244266,0.7834085803478956,-0.2258076723664999,-0.3032542676664889,0.588271249551326,0.5120767168700695,0.21764029562473297,0.9338595904409885,0.7710577878169715,0.4413194367662072,0.32082394137978554,0.33954879781231284,-0.5127903604879975,-0.718116242904216,-0.01501280115917325,0.9999663131311536,0.9368791589513421,0.5995995588600636,0.924752373714,0.01306105311959982,0.025098951999098063,-0.2747117830440402,-0.2691101538948715,-0.3322763261385262,0.6175685715861619,0.2752226749435067,-0.779381416272372,-0.5457321424037218,0.5345481783151627,-0.49669665237888694,0.024253683630377054,-0.3091887072660029,-0.20254085771739483,-0.7491703066043556,-0.5267640398815274,-0.6284146960824728,-0.2377943331375718,-0.8458456355147064,0.8471629270352423,0.014631272293627262,0.5478829029016197,0.26495795929804444,0.3091465551406145,0.11064214585348964,0.23709955671802163,0.23194012371823192,-0.16316158697009087,-0.7903788890689611,0.21588013088330626,0.2346432087942958,-0.5425284756347537,0.6495401836000383,-0.11828178446739912,0.05951376538723707,0.7374661779031157,0.00034262659028172493,-0.4093494969420135,0.9093115702271461,0.3884907956235111,-0.916361222974956,-0.6649973532184958,0.4704473000019789,-0.38948448561131954,0.6082674101926386,-0.7454716423526406,0.39516389183700085,0.686921123880893,-0.19864144828170538,-0.05762332119047642,0.3430777871981263,-0.08271188801154494,0.10143743501976132,-0.9450553013011813,0.9876294252462685,0.05704698245972395,-0.5661574150435627,0.9008289147168398,-0.07471599616110325,-0.405286462046206,0.17472020396962762,-0.9680872349999845,-0.9099450632929802,0.22915657283738256,-0.6700055804103613,0.6336274878121912,-0.5854639890603721,-0.5614102184772491,-0.7370700361207128,-0.364005827344954,0.01164047745987773,-0.42952816747128963,-0.5551785202696919,-0.9271193379536271,0.14912374643608928,0.28705921908840537,0.839309997856617,0.8065834622830153,-0.019596118479967117,0.4122360171750188,-0.8207484679296613,-0.5570469386875629,-0.17333121923729777,0.1259551546536386,0.404594783205539,0.5179874864406884,-0.9661878785118461,-0.4809772237204015,-0.7959266379475594,0.5243687834590673,0.28807963989675045,-0.8243926079012454,-0.4734706566669047,-0.9588550552725792,-0.6841195654124022,0.5958070661872625,0.2919734758324921,-0.46436875220388174,-0.9714110228233039,0.3833427601493895,0.03561625024303794,0.9227012102492154,0.21410800470039248,0.29077685810625553,-0.5309479087591171,-0.12719963118433952,-0.10915340203791857,-0.7640075548551977,0.7163212490268052,0.8453066381625831,-0.5847796215675771,0.04321483010426164,-0.8974959142506123,0.6606681509874761,-0.8486137632280588,0.9764281222596765,-0.5840842952020466,0.15733522968366742,0.8361609582789242,0.9410088839940727,0.4536642343737185,0.16139960661530495,-0.01168183796107769,0.9950815630145371,0.6551499245688319,-0.58983209496364,0.009788675233721733,-0.48279118770733476,-0.16584237897768617,-0.438433816190809,-0.17331492668017745,-0.8143419618718326,0.15627719927579165,-0.9070396265015006,-0.25208203168585896,-0.2971536247059703,-0.665291650686413,-0.5865733907558024,0.8398352027870715,0.534527278970927,0.6597628826275468,-0.5805613338015974,0.3007522220723331,-0.7878951788879931,0.31275815097615123,0.7419766052626073,0.8814556603319943,0.718790621496737,0.6465321453288198,0.0733921667560935,0.044914263766258955,0.6993628861382604,0.9478566688485444,-0.08043855195865035,-0.42226297594606876,0.7586565129458904,0.7517940099351108,0.9675648552365601,-0.22512482292950153,0.20394967822358012,0.0011945157311856747,0.9571982584893703,0.7423724625259638,0.3710353556089103,-0.14694436360150576,0.5714892172254622,0.31105718994513154,0.7310115778818727,-0.48909167759120464,-0.5936418110504746,-0.27401379216462374,0.12176107196137309,-0.7422437919303775,-0.680327879730612,-0.15031356271356344,0.8923207158222795,0.012500105891376734,0.8063043137080967,0.8546288516372442,-0.4065839792601764,0.6422780686989427,-0.4240149916149676,0.7078000814653933,0.343759894836694,-0.09697019075974822,-0.9209746196866035,0.9653351744636893,-0.5837120958603919,0.9955366859212518,-0.3964450675994158,-0.13639492029324174,0.33507958613336086,-0.35699350479990244,-0.9248992782086134,0.7776322700083256,-0.33566817408427596,-0.2837407817132771,-0.03951886808499694,-0.34911688789725304,0.04576717736199498,-0.9111723806709051,-0.8628958752378821,0.686548491474241,-0.7947558108717203,-0.5760563774965703,-0.10644135996699333,-0.7198431240394711,0.3396173333749175,-0.39087312389165163,-0.03661350393667817,0.1414214284159243,-0.6803196989931166,0.2739587561227381,-0.8252640785649419,-0.0585959954187274,0.21741224639117718,-0.65520254150033,0.6202191626653075,0.49895701510831714,-0.8682276345789433,-0.5234205410815775,0.011301577091217041,-0.7923618298955262,-0.6882488522678614,-0.7384669580496848,-0.7559524816460907,-0.16464917548000813,-0.17389726731926203,0.92997863329947,0.06659054104238749,-0.5854595783166587,0.06710238847881556,0.7596911238506436,0.4772061458788812,0.2667058100923896,0.32964038755744696,-0.7993864328600466,-0.9065931863151491,-0.05102620692923665,0.15984230069443583,0.13214307092130184,0.3488719421438873,0.9511632989160717,0.49318721052259207,0.9897147566080093,-0.49890766106545925,0.1728315008804202,-0.5027952925302088,0.2124925539828837,0.3331508282572031,0.42979917908087373,0.760981887113303,0.7927581546828151,0.9834634279832244,0.4307638597674668,0.13938898080959916,0.059057089034467936,0.3731461181305349,0.6907452307641506,-0.4120013597421348,-0.4420208209194243,0.8458461496047676,0.6911508729681373,-0.7039551828056574,0.5896856933832169,0.5428150175139308,0.9852011711336672,0.4613370066508651,-0.5645103822462261,0.8575227283872664,-0.568101336248219,0.12457243632525206,0.06834494229406118,-0.9474305035546422,-0.0005854279734194279,-0.9143129540607333,0.13064536824822426,-0.844053509645164,-0.767779448069632,0.09752278169617057,0.9025420104153454,0.9739531427621841,0.5940937954001129,-0.9932678854092956,0.6484493897296488,-0.6993678258731961,0.660874679684639,-0.45296974992379546,-0.7742528053931892,0.05585774313658476,-0.6832321221008897,0.7029188387095928,0.1041645398363471,0.22463884204626083,-0.5916649075224996,0.3983995383605361,-0.9112139120697975,0.40956720151007175,0.00019791582599282265,-0.25627154437825084,0.17237792443484068,-0.3695646240375936,0.02331838710233569,-0.09209807682782412,-0.2666731630451977,0.4091422618366778,-0.5469821291044354,0.9779209685511887,0.9196543144062161,-0.40148686058819294,0.2788306982256472,-0.15917454799637198,-0.5922421626746655,-0.40797912469133735,-0.6556244306266308,0.6638478711247444,-0.29976591374725103,0.5200370661914349,0.3218198660761118,0.3407085561193526,-0.7178270015865564,0.12163887731730938,0.7176510579884052,0.3655323372222483,-0.5178596475161612,0.8174169757403433,-0.3089144127443433,-0.47002836083993316,0.274256631731987,-0.772261337377131,0.8604599898681045,-0.2967251087538898,0.31213970202952623,-0.3213769253343344,0.2562782745808363,0.009570383932441473,-0.34783950773999095,-0.2289567538537085,-0.5935603119432926,0.8315534023568034,-0.08522778516635299,0.13622676208615303,-0.7803512057289481,-0.9640314085409045,0.9425899907946587,0.7634941288270056,-0.9230743632651865,0.7946483734995127,0.7189000737853348,0.8792500253766775,0.35428149765357375,-0.7668058765120804,0.04450510535389185,0.5053797285072505,0.03837654506787658,-0.03490528417751193,0.8114812294952571,-0.21410471061244607,-0.6246580500155687,-0.5030261897481978,0.24112867889925838,0.6029394012875855,-0.24438428552821279,0.9334456464275718,0.3114862311631441,0.4707596213556826,-0.500237999483943,-0.5411535855382681,0.6376366447657347,0.6621417361311615,-0.5352532709948719,-0.1460547880269587,-0.648284591268748,0.35482217697426677,0.021127179265022278,-0.3795653600245714,0.9875448057428002,-0.537975377868861,-0.586354948580265,-0.3022899986244738,-0.5645449329167604,-0.41178245609626174,-0.07377531519159675,0.7279833192005754,-0.3557836702093482,-0.014713190030306578,-0.35761172929778695,-0.15044990135356784,0.8647720194421709,0.8781535043381155,-0.7118909782730043,0.0800653942860663,-0.06531235948204994,0.003793182782828808,0.10657029692083597,0.21924347197636962,0.26412360602989793,0.026139478664845228,-0.8241964620538056,-0.7941828365437686,-0.014626206364482641,0.10431787464767694,0.17858042661100626,-0.9185617272742093,0.3469079020433128,0.18112174002453685,0.25680556148290634,0.3524744566529989,-0.37034218898043036,0.4462062423117459,0.707515440415591,0.6957848416641355,-0.613671435508877,0.7743812305852771,-0.4356301031075418,-0.18106022756546736,0.6887003183364868,-0.5884198411367834,-0.6475265612825751,0.837890992872417,-0.2372958599589765,-0.5570917865261436,-0.4492338849231601,-0.5377326374873519,-0.11002922849729657,0.9777840622700751,-0.3061866471543908,-0.9999041212722659,0.29019733238965273,-0.42373918276280165,-0.038466792553663254,-0.9492845181375742,0.7243471900001168,-0.43203957192599773,0.29913567192852497,-0.8339716964401305,0.15420075692236423,-0.012887341435998678,-0.7529362235218287,0.8700710255652666,-0.06954244757071137,-0.011272768955677748,0.7906698775477707,0.7751559852622449,-0.39853251073509455,0.5744796618819237,0.6423378111794591,-0.41692956211045384,-0.7893212107010186,-0.30317850317806005,0.760724600404501,0.6075771003961563,0.423357552383095,-0.002142207697033882,-0.3250330905430019,-0.5891839847899973,-0.8951855110935867,0.24829318094998598,0.45365922385826707,0.01949899084866047,0.9527024142444134,0.5069705047644675,0.5929142227396369,-0.19281489728018641,0.1672609462402761,-0.48847482493147254,0.18739997502416372,-0.5546639473177493,-0.6449194648303092,-0.7116419970989227,-0.37714031571522355,0.6904751816764474,0.46016786340624094,-0.9914380926638842,0.8081739577464759,-0.2839692747220397,0.10678503755480051,0.13012220989912748,-0.8033797796815634,-0.2837102129124105,0.36410368559882045,-0.6137795667164028,-0.2591254231519997,-0.6237893323414028,0.1589760510250926,-0.0300104976631701,0.19363930355757475,-0.3470108723267913,0.19090136419981718,-0.8222760437056422,0.5652078194543719,-0.2245233068242669,0.21848063869401813,-0.5892929043620825,-0.7556822528131306,-0.7929251492023468,0.3463604240678251,0.9703798545524478,0.5386362043209374,0.3493500854820013,-0.8878362001851201,0.3674338390119374,-0.6871229484677315,0.7476391401141882,0.5723454933613539,0.886710565071553,-0.8813676042482257,-0.41900432854890823,-0.12326697958633304,-0.03683549351990223,-0.2265271539799869,0.7277429774403572,0.9162181275896728,-0.045907505322247744,0.9569213739596307,0.4610450132749975,-0.08196729840710759,0.4697044719941914,0.8571387105621397,0.45613785926252604,-0.9441559757106006,0.5677231061272323,0.8744738968089223,0.4020001804456115,-0.24308176105841994,0.4219842473976314,0.29889522213488817,0.47514344891533256,0.22898506559431553,-0.9393955008126795,0.9277566699311137,0.2531419824808836,0.4060074486769736,0.27089090971276164,0.39617826230823994,0.46771305333822966,0.28505967603996396,-0.5471871313638985,0.10861127357929945,-0.093279127497226,0.33650479884818196,0.49596218299120665,0.3947442197240889,0.06658673472702503,0.7549000196158886,0.352727634832263,0.7020355211570859,0.8862588126212358,-0.4035345739684999,-0.920583940576762,-0.9505818150937557,-0.4355314797721803,0.6901756054721773,0.21424859203398228,0.24816530104726553,0.06905824691057205,0.5605572555214167,0.16601897636428475,-0.2102632550522685,-0.9133373703807592,-0.9388729059137404,-0.3920588153414428,-0.8140284880064428,-0.09792052255943418,-0.7142465421929955,0.7702180449850857,-0.12813651515170932,0.21029809210449457,-0.04403221793472767,0.6733175907284021,-0.8016737597063184,0.8792275153100491,-0.1432959260419011,-0.5219530505128205,-0.205423504114151,0.0666621271520853,-0.7011445686221123,0.3991728276014328,-0.562220299616456,-0.2586044194176793,0.5042787757702172,0.633690913207829,0.535320526920259,-0.6976611143909395,0.41871849726885557,0.04359125951305032,-0.8253930485807359,-0.35007425444200635,-0.5069532725028694,0.5056119370274246,0.7869509286247194,0.1594907259568572,0.895939820446074,-0.2659933497197926,-0.21978082321584225,-0.3878124519251287,-0.9208120759576559,0.7434573671780527,0.5663713999092579,0.16183120617643,-0.5402666064910591,0.22650037985295057,0.04246138362213969,-0.10160722443833947,0.06398422084748745,-0.33378359116613865,-0.8624695600010455,-0.09402840957045555,0.4993801382370293,-0.6725290999747813,-0.7747497516684234,-0.7929826327599585,0.5837494982406497,-0.12212709244340658,-0.7479603197425604,-0.22244493523612618,0.13643219508230686,0.43268579011783004,-0.5097455475479364,-0.8097998490557075,-0.3281419510021806,0.33628692291677,0.2827010713517666,-0.07343556825071573,-0.0526548707857728,-0.5872734882868826,-0.7024884610436857,-0.5467125843279064,0.8364026052877307,-0.12528562126681209,-0.1938140126876533,-0.8455251553095877,0.3965485515072942,-0.47006600676104426,-0.049464683048427105,-0.7547332583926618,-0.026352439541369677,-0.8468957408331335,0.0872071236371994,0.3915165183134377,-0.25812086649239063,-0.849248755723238,-0.7836044607684016,-0.781104757450521,0.06507721077650785,0.4157549114897847,0.610733084846288,-0.3989242850802839,0.5455117360688746,0.15981518058106303,-0.7361268661916256,-0.2139238859526813,0.1475840830244124,-0.7372164456173778,-0.23498956207185984,-0.8326683938503265,0.7968901600688696,0.3440647479146719,-0.5849155047908425,0.15451565058901906,0.04956389218568802,-0.6432387693785131,-0.7462097927927971,0.27526686200872064,0.6916696117259562,0.10139173036441207,0.46930716978386045,0.02507882472127676,0.8275914653204381,0.17756488732993603,0.4080747179687023,-0.7916716518811882,-0.4167406694032252,-0.1141838519833982,0.2921587717719376,-0.32493269350379705,0.6867243791930377,-0.88975088018924,-0.7598617654293776,0.04610444698482752,-0.40051695704460144,-0.753081550821662,0.401096626650542,-0.6758369822055101,0.8569258307106793,0.7513055270537734,0.06123823206871748,0.5948774358257651,-0.14227377017959952,0.3363189874216914,0.058262130711227655,-0.2126393630169332,0.5901729986071587,-0.8208860512822866,0.9314497308805585,-0.04847378050908446,-0.9147715009748936,-0.2667765263468027,-0.033159016631543636,0.8276891317218542,0.03757842816412449,-0.5019132620655,-0.8870960078202188,0.044650918804109097,-0.6200954653322697,-0.5007279440760612,-0.7400744883343577,-0.30886614648625255,0.10626223683357239,-0.29558329237625003,-0.7583593558520079,-0.87743124878034,-0.027927986346185207,-0.7866759025491774,0.5077932351268828,-0.3888428923673928,-0.7484065876342356,-0.9387265741825104,-0.8679368635639548,-0.04962013801559806,-0.2792013115249574,-0.07366467313840985,0.28495108103379607,0.931274875998497,-0.40406798431649804,-0.9425505478866398,0.7325926376506686,-0.5736198453232646,-0.4596154745668173,-0.7193220905028284,-0.13999715819954872,-0.4971900228410959,0.8538869647309184,-0.45964999636635184,0.793475182261318,-0.32472393941134214,-0.012945156078785658,0.49326092004776,-0.05666493158787489,-0.45557144470512867,0.03692625183612108,-0.6840632469393313,0.20903088804334402,0.23072796687483788,0.02188461786136031,0.9011941747739911,-0.8699518870562315,-0.5109233832918108,-0.6456191022880375,-0.7867792211472988,0.6441737627610564,0.5461019040085375,-0.5264997580088675,0.5223939032293856,0.664263597689569,0.9678516848944128,0.9847816154360771,-0.8678371594287455,0.08750227792188525,0.2333333333954215,-0.623261567670852,-0.701875748578459,-0.8824796215631068,-0.8206530506722629,-0.37291294801980257,0.49185365438461304,-0.16856189165264368,-0.8552850596606731,0.10252586659044027,0.11342186760157347,-0.8672922900877893,-0.40254046907648444,0.3476896299980581,0.2685469198040664,0.06735946564003825,0.6528193755075336,-0.208351559471339,0.5039685997180641,-0.8464072463102639,0.016587883699685335,-0.45789189264178276,-0.9920385237783194,-0.3224384398199618,0.04079693276435137,-0.5351570369675756,-0.7813252098858356,-0.5532922795973718,0.40814183885231614,0.9285127739422023,-0.595633253455162,-0.8879619366489351,-0.615256629884243,0.7311462918296456,0.8344665146432817,0.19470211397856474,0.9489544262178242,-0.8329874943010509,-0.45688566379249096,0.39613963291049004,0.9028424741700292,-0.5742339212447405,-0.8185340701602399,-0.34179381048306823,0.288074086420238,-0.6210602093487978,-0.6511498303152621,-0.9762001521885395,0.6632783999666572,0.5907354392111301,-0.8918836554512382,-0.3175093769095838,0.8804280725307763,0.15144412964582443,-0.07578597124665976,0.024713031947612762,0.6147993626073003,0.4171543922275305,-0.7383181476034224,0.4006240828894079,0.820671112742275,0.28768746461719275,-0.8461096757091582,0.7553842896595597,0.7786746313795447,0.052577232010662556,0.8651816411875188,-0.37772450828924775,0.3028560932725668,0.09034161549061537,0.1339488560333848,0.9412985816597939,0.14124222891405225,-0.5617972700856626,-0.2602643365971744,0.5652172802947462,-0.42513521621003747,-0.6317459167912602,0.446199806407094,0.09238851116970181,0.23011660808697343,-0.9598002061247826,0.096466020680964,0.6097148424014449,-0.6283447616733611,-0.020388139877468348,-0.44469475792720914,0.9832485509105027,-0.813883441966027,-0.32251160265877843,-0.1868552714586258,-0.335505697876215,-0.4848775095306337,-0.31593857146799564,0.5296092052012682,0.24494689144194126,0.2604753514751792,-0.7269239081069827,-0.16642448911443353,-0.9956553890369833,0.6976041975431144,0.19753806060180068,-0.48777281725779176,-0.7251744889654219,0.0691822525113821,-0.605543804820627,-0.07846010103821754,0.5465373694896698,-0.12899224646389484,0.2499160384759307,0.3607861176133156,0.20295165944844484,-0.8709315545856953,0.6346973571926355,0.379717699252069,-0.12696484988555312,0.41975742671638727,0.5478216372430325,0.10295301536098123,0.9225500160828233,0.2977116000838578,0.9352955683134496,-0.9192224065773189,-0.1883816085755825,0.5423304932191968,0.6347420485690236,0.4288083980791271,0.892167292535305,-0.3625864111818373,0.7435841537080705,0.19227899936959147,-0.43251519137993455,-0.05813362030312419,-0.13549496792256832,-0.7500292412005365,-0.20732087409123778,-0.026163339149206877,0.1830099574290216,-0.6243896503001451,-0.2477695271372795,-0.4247886068187654,-0.2895399141125381,0.432237078435719,-0.8218407449312508,0.11185609456151724,-0.775816508103162,-0.8965102597139776,0.42540849186480045,-0.5175333563238382,0.7375861299224198,-0.9048281703144312,0.35980161279439926,0.8470153366215527,0.8077301452867687,-0.3798800497315824,0.030600837897509336,-0.22224095417186618,0.3345948187634349,0.10366514651104808,-0.18802127009257674,-0.4001660658977926,0.6975897592492402,-0.15390858612954617,-0.29463171353563666,-0.6597457765601575,0.013149090576916933,0.4104308648966253,0.5127405216917396,0.2077496568672359,0.9312188345938921,0.38228505477309227,0.7948960103094578,0.19793713465332985,0.38921727053821087,-0.702624935656786,-0.5389008736237884,-0.5322475731372833,0.1960010095499456,0.5060846316628158,0.3597749061882496,-0.9807032854296267,0.9466250631958246,0.44270225754007697,0.7519742292352021,0.7784966789186001,-0.6808768357150257,-0.3396818470209837,-0.009471962694078684,0.9874479756690562,0.3463961645029485,-0.7731502479873598,0.2042109169997275,-0.12645454378798604,-0.6513537298887968,-0.46689397003501654,-0.8312986311502755,0.4613748858682811,0.12447722582146525,0.3985851244069636,-0.9172120788134634,-0.7162162838503718,0.1859576809220016,0.3647656673565507,-0.8648393070325255,0.6344730411656201,-0.7728846869431436,0.2908289465121925,-0.4500195914879441,0.07517030974850059,0.9950245544314384,0.49740342097356915,0.09126231074333191,-0.6204548943787813,-0.29844630882143974,0.33292761724442244,-0.7857519183307886,-0.9391462039202452,-0.3901075664907694,-0.4656950836069882,0.29106150241568685,-0.30526838218793273,0.046088248025625944,-0.22193967970088124,0.40065449802204967,0.5937919286079705,-0.2364719919860363,0.17756373854354024,0.9012273880653083,-0.638384697958827,0.777643580455333,0.10045956773683429,-0.19082987634465098,0.5301572838798165,0.15220828913152218,-0.5346516598947346,-0.14737775968387723,-0.24092617304995656,0.7983155217953026,-0.5655856872908771,0.7709876261651516,0.8534257980063558,0.20105133904144168,-0.7911527678370476,0.5063014095649123,0.042976008262485266,0.007550519425421953,0.01915730070322752,0.49368338473141193,0.4118161420337856,-0.9406789448112249,-0.3929709577932954,0.39284513564780354,-0.13805909920483828,-0.10170027706772089,0.5302847465500236,-0.8681118064559996,0.8374006249941885,-0.8840798269957304,-0.2250738306902349,-0.4054271820932627,0.8675693450495601,0.6864743675105274,-0.4521268247626722,0.5175147890113294,-0.14053905569016933,0.35996046010404825,-0.004253228195011616,0.13621004903689027,-0.5336675974540412,-0.7149738715961576,0.022093508392572403,-0.4729991378262639,0.5078475028276443,0.1794088170863688,-0.14043285651132464,-0.7500503086484969,-0.5757895461283624,-0.18573098070919514,-0.8572689997963607,0.1866653310135007,-0.3408590229228139,-0.9332193057052791,-0.7851149132475257,0.27609632769599557,-0.615413545165211,-0.19165791338309646,-0.70537493750453,0.43418211909011006,-0.7225312581285834,-0.7669343706220388,0.7533050128258765,-0.3500292073003948,0.15706697292625904,-0.35063299536705017,-0.21114718075841665,-0.6798397772945464,0.7452527610585093,-0.7789655993692577,0.7600613357499242,-0.9740990842692554,-0.6989523838274181,0.15686515113338828,0.5429343353025615,-0.5323640177957714,0.8478387948125601,-0.5058293719775975,0.7777488338761032,-0.40743481693789363,0.04483030363917351,-0.8485496290959418,0.047703614458441734,-0.5002860287204385,0.4797874824143946,0.9188934033736587,0.8925758334808052,-0.2221814626827836,0.7644506925716996,0.2528562997467816,0.4666162561625242,-0.5862633744254708,0.9136662362143397,-0.3641126328147948,0.37683908781036735,0.06728163547813892,-0.30813049525022507,0.3525576158426702,0.5871184701099992,0.7744143167510629,-0.39894331991672516,0.912702692206949,0.6351103149354458,0.6960203121416271,0.18806247739121318,-0.5857399189844728,-0.573588038329035,-0.4423264223150909,0.9208072330802679,0.8981625125743449,0.825153786689043,-0.607969228643924,0.34796298295259476,0.7794472337700427,-0.6890769735909998,-0.8029380273073912,-0.22135580610483885,0.8841930013149977,0.8593915295787156,0.803992681670934,-0.3237691489048302,0.010301325935870409,0.9964598626829684,-0.22520558536052704,0.25937715265899897,0.029539490584284067,0.3949414826929569,-0.04068786883726716,0.9668360534124076,0.5510201556608081,0.9257240472361445,-0.23743194015696645,-0.24270072160288692,0.9168400196358562,-0.9955868497490883,0.29125953279435635,0.8703625467605889,-0.8235193798318505,0.2708689314313233,0.04278828762471676,0.5760956113226712,-0.5746162100695074,0.2650099932216108,0.13960475428029895,-0.6164263943210244,-0.5329812210984528,-0.173320219386369,-0.8773568384349346,-0.8116580941714346,0.17230370827019215,0.9478096831589937,0.03522020159289241,-0.2692461865954101,0.8575474540702999,0.7824244145303965,-0.8453570529818535,-0.5788873010315001,0.6607610867358744,0.9463663245551288,0.71810900606215,0.3674429189413786,-0.21646253624930978,0.3464052430354059,-0.3260668651200831,-0.569877402856946,0.651664643548429,-0.7327168849296868,-0.16004118975251913,0.04917697189375758,0.6066633961163461,0.6513743726536632,-0.9444926618598402,0.4677479681558907,0.6981567777693272,-0.9707954698242247,-0.5199748119339347,-0.41418522875756025,-0.9105086466297507,0.41932713938876987,0.7340973117388785,-0.8136723223142326,-0.5017353887669742,-0.40704961959272623,0.8864099406637251,0.9590114811435342,-0.38718833727762103,0.4509495496749878,0.4973810496740043,-0.4178672954440117,-0.34620789252221584,0.5316311744973063,0.25072470121085644,-0.6793174282647669,0.06853977870196104,0.8572212993167341,0.7383384951390326,-0.7986383284442127,0.4714608611539006,0.19156102975830436,0.6355561218224466,0.20320110442116857,0.006390782538801432,-0.9301362666301429,0.7818691856227815,0.40012664860114455,-0.46366211073473096,0.7625188478268683,-0.8683179495856166,-0.9583657737821341,0.6964460657909513,0.9590305024757981,-0.8332020728848875,0.6193501860834658,0.609776814468205,0.3679332141764462,-0.8024485744535923,-0.9898539115674794,-0.6821727128699422,-0.27984125073999166,0.9755146680399776,0.9063965948298573,0.026644527446478605,-0.6547726159915328,-0.6936347922310233,0.6895681908354163,0.7246287041343749,-0.06919769803062081,-0.9245256115682423,-0.889667512383312,-0.776022800244391,0.717283331323415,0.870092277880758,0.09778418345376849,-0.2332099787890911,0.1726918052881956,0.2735837437212467,0.25492417020723224,0.9720070799812675,0.5839227214455605,-0.5458955080248415,0.7007522881031036,0.8233731491491199,-0.988575691357255,0.4973325622268021,-0.08912947727367282,0.060430641286075115,0.6282229274511337,0.536719546187669,-0.11016206676140428,-0.0379569991491735,-0.2456689542159438,-0.9932693797163665,-0.7888065497390926,0.7483910322189331,0.7717115660198033,0.77041742997244,-0.737710009329021,0.8954145042225718,0.8420270844362676,-0.6767343999817967,-0.6965858056209981,-0.9376977388747036,-0.2708855327218771,0.259562726598233,0.17939260741695762,-0.7707674484699965,0.3733696206472814,0.7716508498415351,0.5273609990254045,0.5685983393341303,-0.7578418883495033,0.22248429851606488,0.5561346220783889,-0.8152907746843994,0.21146676084026694,0.5602962863631546,-0.5189139489084482,0.5192864774726331,-0.28740187315270305,0.13533026864752173,-0.3001784021034837,-0.20273530902341008,-0.732096603140235,0.950518399477005,0.1409633602015674,-0.8617432871833444,-0.20326335076242685,-0.9061799966730177,0.1815159134566784,0.2917403243482113,-0.6286065755411983,0.30490638315677643,-0.3744321707636118,0.012307418044656515,-0.5125633128918707,0.7239925661124289,0.7909153187647462,-0.43035929603502154,0.6855685375630856,-0.5979785984382033,0.5407543145120144,0.2488060612231493,-0.9466120502911508,0.41038815630599856,-0.4263463318347931,-0.2229890963062644,-0.8261977788060904,0.028085255064070225,0.5751761817373335,0.46998842572793365,0.9053658344782889,0.515890424605459,-0.47207828192040324,-0.7851208136416972,0.7417556778527796,-0.5289230458438396,0.8331611379981041,0.6262923697941005,0.27276305574923754,-0.9440154191106558,0.7577633634209633,-0.6618754002265632,0.0016919872723519802,-0.9107703268527985,0.6615105965174735,-0.21222825115546584,-0.9069311954081059,0.8694093534722924,0.09106835490092635,-0.4368207664228976,0.981676694471389,-0.12846197001636028,0.12763563496991992,0.7269111284986138,-0.6533568701706827,-0.752995525021106,0.11431325972080231,0.5552462791092694,0.2928583757020533,-0.6892420318908989,-0.8699915064498782,-0.6814369391649961,0.6507860026322305,0.9326253891922534,-0.1667278241366148,-0.43967298697680235,-0.028639364521950483,0.11533447587862611,0.6306095863692462,0.6736782593652606,0.30213521234691143,-0.9485145849175751,0.8837690083310008,-0.2159374998882413,0.9843700472265482,0.9118020059540868,0.30715826991945505,0.9652277184650302,-0.8674348825588822,0.03699797112494707,-0.7717473129741848,-0.9673738898709416,0.41235088277608156,-0.7048441683873534,-0.8752765860408545,-0.11590997315943241,-0.06831057742238045,0.7469178140163422,-0.5663470621220767,-0.6101452857255936,-0.09430722752586007,-0.05851930798962712,0.740713631734252,-0.19270026963204145,0.1585603877902031,-0.7110850987955928,0.19353546435013413,0.1387244863435626,0.13223908748477697,0.08750253403559327,-0.3332016197964549,-0.03178402781486511,0.6351097691804171,-0.18622864969074726,0.7033613482490182,-0.7367878858931363,0.06749394489452243,0.2853325782343745,0.1531884428113699,0.13462192146107554,-0.48909055767580867,-0.30268438486382365,0.06383244832977653,-0.11944510415196419,0.6557631543837488,0.663355125579983,-0.8136734920553863,-0.9790140991099179,0.2755453228019178,0.7151487465016544,-0.9067499153316021,0.6804223079234362,0.12414018344134092,-0.7369069349952042,0.8579223402775824,0.8788879327476025,0.9418021631427109,-0.860459525603801,-0.4967125211842358,0.5077289426699281,-0.22627343889325857,0.5740370759740472,0.28035990707576275,-0.7964373449794948,0.31350844260305166,0.7943402985110879,0.5903614135459065,0.7499633743427694,0.6525199026800692,-0.8888114271685481,-0.6102480278350413,-0.3581794290803373,0.13445167243480682,0.3359513026662171,-0.5859496500343084,-0.3507581097073853,0.03475083503872156,0.9905589544214308,0.016441037878394127,-0.6957197338342667,-0.7123477393761277,-0.3293109121732414,0.4716512565501034,0.3800486531108618,0.39168650982901454,0.2704036943614483,0.6496661882847548,0.31357122864574194,0.12845456134527922,0.835582391358912,0.7030994687229395,0.536789991427213,0.29615600407123566,-0.93636743305251,-0.8436049749143422,0.3894172990694642,0.042191211599856615,-0.7075650142505765,0.3341010636650026,-0.12116983905434608,-0.8381757265888155,-0.18814073130488396,-0.9936589123681188,-0.6863469807431102,0.29476891178637743,0.7249640454538167,-0.2088289693929255,0.8984555443748832,-0.9271494774147868,0.8681863844394684,0.1557240323163569,-0.7346459589898586,0.9885660954751074,-0.5699611301533878,-0.550459424033761,0.33892151387408376,-0.418110528960824,-0.5484978756867349,-0.5360335749574006,0.6312837828882039,0.43289498379454017,-0.6135234981775284,0.18971384689211845,-0.6332490793429315,-0.46863350737839937,0.5130338375456631,-0.5163084454834461,0.36828344222158194,-0.6584711289033294,0.8212310210801661,0.8832359849475324,0.7527793515473604,-0.8620143095031381,0.02645875606685877,0.9956092215143144,-0.29824067698791623,-0.26132085314020514,-0.17970816092565656,0.5892103766091168,0.7325773863121867,0.9228845378383994,-0.10622824868187308,0.6054638084024191,-0.03590158512815833,-0.27452302537858486,0.8037921655923128,-0.363464443013072,-0.5558767253533006,0.2893657307140529,0.9015207597985864,-0.10111421160399914,-0.8771379427053034,-0.6627403777092695,-0.4559889053925872,-0.24336753273382783,-0.09714264655485749,0.1472079511731863,-0.2971116960979998,0.46726571628823876,-0.06790576735511422,0.3281697635538876,0.6074106716550887,0.054535023868083954,-0.5052690026350319,-0.33900239085778594,0.9639520542696118,-0.7791713094338775,-0.7023659548722208,0.003923288080841303,-0.19376620976254344,-0.3691529859788716,-0.6781035838648677,-0.2885672440752387,-0.03551485342904925,0.853685334790498,0.21769570093601942,-0.7450700220651925,-0.16276737954467535,0.7389559354633093,0.41519119730219245,0.06662423349916935,0.5421747560612857,-0.34655612241476774,-0.566211526747793,-0.695206823758781,-0.9646565048024058,0.3420427916571498,-0.9372202251106501,0.29388744104653597,0.3260291023179889,-0.8453120919875801,-0.9672632743604481,-0.4336838158778846,-0.7982473489828408,-0.2521986421197653,-0.1813282542861998,-0.44030714174732566,-0.40626679826527834,0.3211768898181617,0.27452909108251333,-0.5273838099092245,-0.005445464514195919,0.4287690785713494,-0.471774083096534,-0.8266745251603425,-0.268123765476048,0.7511367104016244,-0.9168021641671658,0.02593219419941306,0.07714120112359524,-0.2840793519280851,-0.7057756572030485,0.8178702024742961,-0.3896359414793551,0.4851190741173923,0.4671049090102315,0.7853225073777139,-0.24388725636526942,0.6269815992563963,-0.5441614924930036,-0.6088483142666519,0.7796378755010664,0.12305858079344034,-0.7982638441026211,-0.22666855016723275,0.6083239270374179,-0.03190825739875436,0.5901243705302477,0.8496131077408791,-0.8578576385043561,0.8280150364153087,-0.4904322228394449,0.9086857405491173,0.3852719394490123,-0.6118502463214099,-0.8932737750001252,-0.17997191287577152,0.5605470580048859,-0.4448609878309071,-0.4568535196594894,0.7700279280543327,-0.9228685242123902,0.14441726868972182,-0.19596024369820952,0.5156587385572493,0.8663855125196278,-0.3253471730276942,0.061867544427514076,0.22689089737832546,-0.8452846775762737,-0.23109366884455085,0.6233459799550474,-0.11195760453119874,-0.8952014283277094,0.8519344227388501,0.42133531952276826,0.6831069518812001,-0.15539101604372263,0.885347671341151,0.7460538316518068,0.7695922874845564,-0.3124464713037014,0.2749170856550336,0.26620179880410433,0.4052571365609765,-0.24456729926168919,-0.0788862444460392,-0.8441710784099996,0.787761356215924,-0.979534259531647,-0.6133776921778917,0.455589322373271,0.4661803813651204,-0.10985855618491769,0.4886429775506258,0.27519062999635935,-0.2644318179227412,0.9074022769927979,-0.33037898130714893,-0.18497109226882458,0.3022992270998657,0.252232835162431,-0.8219668064266443,0.21513044135645032,0.9331793547607958,-0.024809395894408226,-0.9147971402853727,-0.44546934962272644,-0.4101509931497276,-0.549596298020333,0.04389092605561018,0.2534384592436254,-0.33015799801796675,-0.10353582119569182,0.07685643574222922,0.2753862268291414,-0.18113898066803813,-0.02138265734538436,-0.1839360110461712,-0.35195969277992845,-0.2835004781372845,0.5350187690928578,-0.5042896438390017,0.3876601913943887,0.11533105000853539,-0.22509165294468403,0.8882396840490401,-0.4515652358531952,0.7838018191978335,0.977844225242734,0.8690808424726129,-0.9884099331684411,0.29006817005574703,0.11691287253051996,0.28778759110718966,0.49327763309702277,-0.5502421883866191,-0.8412200980819762,0.21205445053055882,0.07721942756325006,-0.7799916081130505,0.5147134042344987,-0.20508232153952122,0.947233451064676,0.9718752694316208,-0.7887570955790579,-0.13917974894866347,0.3076646332629025,0.9353811964392662,-0.22215992771089077,0.2797908582724631,-0.9705015560612082,0.28272737842053175,-0.4755443152971566,-0.3254460506141186,0.48884727293625474,0.9488510824739933,-0.438092275056988,0.8159541115164757,-0.6259283311665058,0.2875893898308277,0.44821353582665324,-0.9079034929163754,-0.3952747918665409,-0.534002018161118,0.3789934660308063,-0.13227788358926773,0.3118066256865859,-0.7125879875384271,-0.21764289867132902,0.6540154460817575,-0.7928454456850886,0.39305610628798604,0.49473579647019506,-0.7267003622837365,-0.2380904252640903,0.5429795645177364,0.2282391027547419,0.1153247538022697,-0.5439971806481481,0.7862458806484938,-0.5253038783557713,0.5148259247653186,-0.451683864928782,-0.6571450154297054,-0.5410825423896313,0.197864199988544,0.79677066905424,0.6774775981903076,0.20001052971929312,0.7291325679980218,0.09019763255491853,-0.2712893830612302,0.9142374126240611,-0.8841968444176018,-0.9956612000241876,0.22657915763556957,-0.09047719510272145,0.7957559018395841,-0.7086757989600301,0.9773650150746107,-0.4503642567433417,0.12801071163266897,0.2485624123364687,0.7958989390172064,-0.962985819671303,-0.025095318909734488,0.987315007019788,-0.2649865886196494,0.7622400191612542,-0.4460889892652631,-0.47672392008826137,-0.628817651886493,-0.3087234594859183,-0.6703583598136902,0.9350368292070925,-0.5490386472083628,-0.3404399948194623,0.511838533449918,-0.5148082068189979,-0.08723819069564342,-0.6230879840441048,-0.7960166530683637,0.42110708309337497,0.9814425464719534,0.7478028498589993,-0.5700312769040465,0.9339344492182136,-0.8604996534995735,0.17103387555107474,0.31995486561208963,0.6455254531465471,-0.2157912254333496,0.9833782715722919,-0.7587914154864848,-0.4741828148253262,-0.6552888038568199,0.6337950155138969,-0.24965237267315388,-0.38548806216567755,0.7986206351779401,0.24332156823948026,-0.6084781903773546,0.9181473674252629,-0.9975412911735475,-0.6536074224859476,0.5834706672467291,-0.20114177512004972,0.7067654049023986,-0.6277098888531327,-0.46306284610182047,0.4390632286667824,0.1648455043323338,0.9845452755689621,0.8152689216658473,-0.7869849097914994,-0.04685286479070783,-0.46868883492425084,-0.8771158186718822,-0.3308598604053259,-0.07756663765758276,0.24431610712781549,-0.7136243870481849,-0.9216080643236637,-0.5316881113685668,-0.5511289471760392,0.745514084585011,0.603528609033674,0.9301086929626763,-0.5788103952072561,-0.22455320367589593,-0.9295374294742942,0.704287429805845,0.7412069970741868,0.3931723269633949,-0.3377106413245201,0.5524343918077648,0.12293118005618453,0.504705504514277,-0.5980256758630276,0.9677771297283471,0.0070471204817295074,-0.5288908760994673,0.3561176275834441,0.0015303059481084347,0.7989622801542282,-0.9928069529123604,0.1638994705863297,0.30436010798439384,-0.43994116270914674,-0.13258440187200904,-0.056642257142812014,-0.24628113396465778,0.5053134458139539,-0.8456953619606793,0.5973510914482176,-0.2602638276293874,-0.40201930003240705,0.1651374278590083,0.8309946055524051,0.8150115120224655,0.7095111589878798,0.8150268509052694,0.34503126004710793,-0.13496004603803158,0.43558212323114276,-0.3669822821393609,-0.36625208240002394,0.8397940234281123,-0.9963096142746508,0.042480360716581345,0.7471779454499483,-0.22054503625258803,0.019931710325181484,-0.7880728752352297,0.37990947300568223,0.14303877530619502,0.48780476627871394,0.7690890268422663,0.7408051025122404,-0.35656512388959527,-0.8360805045813322,-0.6337318094447255,-0.291128212120384,0.6052834559231997,0.255611430387944,-0.13858392369002104,-0.26993081346154213,-0.7084333444945514,-0.8098383131437004,-0.31849846336990595,0.2898593293502927,0.8895622184500098,-0.01862007798627019,-0.09568925155326724,-0.9484029789455235,0.545570557937026,-0.9068108960054815,-0.1536573600023985,0.39848196133971214,-0.4212798080407083,-0.2998448954895139,0.9345108228735626,-0.23392792977392673,-0.9850643337704241,-0.9488846990279853,-0.7557138297706842,-0.10087150055915117,0.38779276981949806,0.9500224259682,0.2707026703283191,-0.15564641263335943,-0.8477049665525556,-0.33518515434116125,0.11797847179695964,0.5514476909302175,0.9159929803572595,0.7471537934616208,0.9348074533045292,0.7750768521800637,-0.9539517764933407,-0.8158600530587137,0.28971146885305643,0.2851969883777201,-0.0452714622952044,0.001326998695731163,-0.44268425134941936,-0.2406560443341732,0.11397355003282428,0.23981084022670984,0.21055012149736285,-0.36097504384815693,-0.6068407171405852,-0.9989066873677075,0.7269813711754978,0.9177613076753914,-0.3309744466096163,0.0802421122789383,-0.1455212365835905,-0.1997139435261488,-0.9681797567754984,-0.4000114588998258,-0.1603004210628569,-0.18553036684170365,0.2519186604768038,-0.4134547156281769,-0.2515772576443851,0.06993051804602146,-0.7909543593414128,-0.340286741964519,-0.32984840404242277,0.48446305422112346,0.2942918613553047,0.4691058387979865,-0.566412731539458,-0.47852433612570167,-0.47425333922728896,-0.019416446797549725,-0.1785742728970945,0.34269238030537963,0.7748923250474036,-0.4768232819624245,-0.8600133578293025,0.611229460220784,0.6876163594424725,0.30070983059704304,0.7124502980150282,0.8921965560875833,0.5843496676534414,0.44076015520840883,0.37190223205834627,-0.5951990983448923,0.3952626967802644,0.5389180942438543,0.12404055334627628,0.24683091696351767,-0.42369748651981354,-0.5887516485527158,0.6756144729442894,0.11783302575349808,0.3978330376558006,0.5182073544710875,-0.6317443940788507,-0.04219686659052968,-0.15500327572226524,-0.593899947591126,-0.20831912895664573,-0.09838051768019795,0.09375208802521229,-0.7124321581795812,-0.9635873893275857,0.04055013973265886,0.9028988401405513,0.9556724606081843,-0.560911372769624,0.6275414112024009,-0.4015070195309818,-0.13756379764527082,0.9175054235383868,-0.7433701613917947,0.8037816095165908,0.6351436325348914,0.969219216145575,-0.5595530224964023,-0.7168164690956473,-0.3328278111293912,0.2542308163829148,-0.44935845816507936,0.7503249226137996,0.604660436976701,0.22603275906294584,0.6649011890403926,-0.6367379585281014,-0.255184942856431,0.14525169879198074,-0.7442407039925456,-0.10833718534559011,-0.41992838121950626,0.7399551197886467,0.5231272452510893,0.622489957138896,0.7146396865136921,0.9707577400840819,0.5136390808038414,-0.5758312465623021,0.02123565785586834,0.2763177892193198,-0.25344577617943287,-0.6517793396487832,-0.5796389281749725,-0.2557530743069947,-0.7440010001882911,-0.7183908778242767,-0.30304673546925187,0.8036890043877065,0.7116950959898531,0.93808783730492,-0.5398878860287368,0.22437323071062565,0.9005041974596679,-0.6359387934207916,0.5657719289883971,-0.7933192537166178,0.28581227362155914,0.1889605177566409,-0.6008539646863937,0.2259264006279409,0.19966251635923982,0.5934036644175649,0.7704915413632989,0.864565831143409,-0.03955361945554614,-0.6500871842727065,0.7633335827849805,0.25371429277583957,-0.7629021001048386,0.3141438574530184,-0.9984181048348546,-0.5673388438299298,0.792584088165313,0.5142550659365952,-0.7800465035252273,-0.4423419367522001,0.8211026126518846,-0.4694259627722204,0.3520828103646636,-0.14743798738345504,-0.24979035276919603,0.3132525449618697,-0.9069565194658935,-0.8518030713312328,0.9322221134789288,-0.48664074018597603,-0.012597011867910624,-0.6339812413789332,0.49715055152773857,0.8499261867254972,0.2312735067680478,0.7775242854841053,0.4905731612816453,0.6168798985891044,0.37706642085686326,0.8124935366213322,-0.932353557087481,-0.4113335642032325,0.5595613992772996,0.005080324597656727,-0.11365028098225594,0.9086653785780072,-0.18281484581530094,-0.425556474365294,0.1972087062895298,0.7939108093269169,-0.5603967867791653,0.3934304309077561,-0.6217469586990774,0.8874331568367779,-0.9119989676401019,0.0060521140694618225,-0.6847146232612431,-0.6733835218474269,0.33588272565975785,0.5121070174500346,-0.5892051528207958,0.42304464243352413,-0.293923360761255,0.9328489592298865,-0.7218809509649873,0.356293270830065,0.12515109404921532,-0.7889334387145936,-0.565311161801219,0.45339559437707067,-0.63656056066975,0.0519892037846148,0.8486452628858387,-0.7070520422421396,0.960411062464118,-0.5140749686397612,-0.8667358309030533,0.9016395267099142,0.7495459844358265,0.9528294610790908,-0.8823825088329613,0.8391831330955029,0.720469537191093,0.6213569846004248,0.2681006323546171,0.19093984551727772,0.083961371332407,-0.6370938941836357,-0.45916768070310354,-0.9725232264027,0.5728737167082727,-0.3287776308134198,0.4734520260244608,-0.9015091280452907,-0.48336912086233497,0.6580270598642528,-0.5770826926454902,-0.08931886637583375,-0.7140483330003917,-0.5093334624543786,-0.6073602735996246,0.2537402408197522,-0.14034690475091338,0.6486940793693066,-0.49999331682920456,0.5007726610638201,0.9066166789270937,-0.9051346657797694,0.47230691416189075,0.15954725351184607,0.1748888147994876,0.472340673673898,0.8372909482568502,0.27357365330681205,0.6916858074255288,0.21236851019784808,-0.42413974180817604,0.41564171202480793,-0.4507255498319864,-0.6654765675775707,0.24612346244975924,-0.9699901724234223,-0.30222215317189693,0.0378882447257638,0.6195620475336909,0.7544832890853286,0.9373874240554869,0.593255284242332,-0.9681361555121839,-0.049016190227121115,0.7902179108932614,-0.6871632584370673,-0.09905431978404522,-0.3677987609989941,-0.2278747195377946,-0.14809723757207394,0.5585586568340659,-0.1771919708698988,-0.5770402802154422,0.6202649041078985,0.7847566148266196,-0.4128607800230384,-0.40274822153151035,0.8793828738853335,0.4632272915914655,-0.5138437608256936,0.5741841467097402,-0.4175001811236143,0.6951070940122008,-0.589489811565727,0.06570364441722631,-0.5531165255233645,-0.603199421428144,0.413824497256428,0.36158245662227273,-0.39142328780144453,0.990574331022799,0.48824347415938973,-0.28078577388077974,0.023833339102566242,-0.6626201402395964,-0.2768063568510115,0.4009241214953363,0.38470879290252924,-0.8625673232600093,-0.17025274550542235,-0.09113389672711492,0.7806829712353647,-0.0690158954821527,-0.6451247623190284,-0.8294556345790625,-0.5470410399138927,0.8819769131951034,-0.7640521223656833,0.9663854935206473,-0.21536109736189246,-0.30115129658952355,-0.8137623677030206,0.23804129706695676,-0.9803997431881726,0.6393291186541319,-0.29530118638649583,0.45311604579910636,-0.041590293403714895,-0.8268660143949091,0.6399892903864384,-0.8251691707409918,-0.6441571870818734,0.6951272902078927,-0.007960828952491283,-0.7004327927716076,-0.9081582361832261,0.4000137257389724,0.161454769782722,0.7778284032829106,0.5322051011025906,-0.8298870967701077,0.7107123299501836,-0.06081403838470578,-0.3072509285993874,0.21292854100465775,-0.7272717887535691,-0.8857052503153682,0.7963880337774754,-0.07736370293423533,-0.5668840436264873,0.18702801782637835,0.42249323474243283,0.7992877000942826,-0.707173409871757,-0.5759579157456756,-0.09794044028967619,0.5971359573304653,0.7258617472834885,0.43383012991398573,0.9015197339467704,-0.8657712745480239,0.7618364025838673,-5.949288606643677e-06,-0.094706776086241,-0.16369061591103673,0.9265373777598143,-0.04762442456558347,0.1802912810817361,-0.3051004367880523,-0.498333347029984,0.8365948712453246,0.5392116052098572,-0.03544212831184268,0.7425971548072994,-0.5344610628671944,-0.4701920133084059,-0.9100046120584011,0.0018888278864324093,-0.2972782268188894,0.6403918685391545,0.3389662425033748,0.32867097528651357,-0.34194777673110366,0.8937458177097142,-0.9016566672362387,0.04706128500401974,0.12153106136247516,-0.48174822982400656,-0.18453168170526624,0.20903768995776772,-0.9928471413441002,-0.8504169988445938,0.16580170253291726,-0.2077910448424518,0.39774309983476996,-0.9113094503991306,-0.10448706010356545,0.7103834631852806,-0.12594269402325153,-0.953120831400156,0.0038879001513123512,-0.5389514984562993,-0.47648807149380445,0.19269203394651413,0.648090701084584,-0.8886779602617025,-0.7199579398147762,0.28397596534341574,0.06480665458366275,0.8715212480165064,0.25009676348418,0.7177737350575626,0.7616507969796658,0.2557601872831583,-0.3959453506395221,0.5191798890009522,0.4235931942239404,0.193795099388808,-0.3816539188846946,0.7612329060211778,0.9838939146138728,-0.6159513220191002,-0.7362340576946735,0.6992278443649411,-0.64937086077407,0.042024044785648584,-0.9515780042856932,0.6980517897754908,-0.46016664151102304,0.6908466652967036,-0.22234189277514815,0.5380567945539951,0.2019144087098539,-0.9121550139971077,-0.8209729851223528,-0.7207442820072174,0.8751756600104272,0.7222850047983229,0.3584085530601442,-0.36872620740905404,0.7128341919742525,0.6244037868455052,-0.471073713619262,0.6690552430227399,0.15118779568001628,0.5902654980309308,-0.1374068851582706,-0.16459775809198618,0.24612549971789122,-0.11195547273382545,-0.3040998252108693,-0.4378086859360337,-0.58489551814273,0.9444228732027113,-0.25875267991796136,0.6360748666338623,-0.606287416536361,-0.4208687422797084,0.07799247466027737,0.24344242317602038,-0.29302189592272043,-0.05682033859193325,-0.6487964289262891,-0.31484431121498346,-0.4458672762848437,0.3073423895984888,-0.615816866979003,-0.972590466029942,0.9893796807155013,-0.9626861228607595,-0.417469241656363,-0.567276299931109,-0.8397078858688474,-0.4306690120138228,0.8773410166613758,0.6031289356760681,-0.5664215423166752,0.019661942031234503,0.44982609478756785,0.7557904305867851,-0.5585986827500165,0.5668779392726719,0.5828092233277857,-0.7797374716028571,-0.06562365824356675,0.499460706487298,-0.011225812137126923,0.9087282828986645,-0.7198920072987676,0.5735001182183623,0.7598526710644364,0.06435754615813494,-0.6526830974034965,0.8810787964612246,-0.776793974917382,0.9433561312034726,0.2828632267192006,-0.02357089426368475,0.9577514794655144,0.257624716963619,-0.23440558882430196,-0.23906478472054005,0.05091529991477728,0.7297640177421272,-0.6195749342441559,-0.84539411123842,0.5599012412130833,-0.5262372624129057,0.6717285276390612,0.382027817890048,-0.2883426886983216,-0.8378689694218338,-0.8165187393315136,-0.1543113524094224,-0.4654244165867567,-0.2692224117927253,-0.797503394074738,-0.7075708713382483,-0.6224096096120775,0.9484008150175214,0.22356945369392633,0.043535053730010986,-0.3351181927137077,0.017522350884974003,-0.18773232167586684,-0.28241584124043584,-0.08833518996834755,-0.27879762137308717,0.16836279537528753,-0.4349512280896306,0.02627508109435439,-0.2514633317478001,-0.06041422067210078,-0.10543289501219988,-0.09118743008002639,-0.5707709607668221,0.16929561691358685,0.6367373391985893,-0.5946423369459808,-0.6852951245382428,0.02888040943071246,0.15255093201994896,0.1198916407302022,0.18324531521648169,0.8782170829363167,-0.08700452884659171,0.22991760354489088,-0.9888897184282541,-0.8436869163997471,0.21303962543606758,0.8354456014931202,-0.5955679565668106,-0.6834754878655076,0.4425044944509864,-0.28600358264520764,0.3405912811867893,0.19529071729630232,0.49166232952848077,0.4067460708320141,0.6758310324512422,0.8285170192830265,0.9468267424963415,-0.3356671566143632,-0.5309265572577715,0.672224794048816,-0.6256797281093895,0.38943035481497645,-0.6838248390704393,-0.3876393479295075,-0.42677722917869687,0.6266857557930052,-0.4342379649169743,0.4689313559792936,-0.36879135901108384,-0.9746674383059144,-0.9123259969055653,0.9166942685842514,-0.02893404057249427,0.1478080376982689,-0.5847661453299224,-0.04352945042774081,-0.275183342397213,0.9424996906891465,-0.7940339162014425,-0.503201397601515,0.32338196504861116,0.5398825132288039,-0.9673887775279582,0.34531667130067945,0.9388190917670727,-0.9654411366209388,0.5492415186017752,0.4412341476418078,0.633763734716922,0.7641607555560768,0.6463187979534268,0.15483467373996973,0.49759022146463394,0.200399583671242,0.7299658227711916,0.8037728425115347,0.5768163162283599,0.5715004187077284,0.19151871418580413,0.42514802422374487,0.2101161079481244,0.6029148926027119,0.7710467730648816,-0.993390784598887,0.05241450620815158,0.3446055860258639,-0.947259668726474,-0.7521692193113267,0.5172321181744337,0.40383150428533554,0.31723665026947856,0.8091803612187505,0.9188217204064131,0.28612506994977593,0.8958992366679013,0.6883200081065297,-0.13489882461726665,-0.6158439540304244,0.6246302700601518,-0.7365858824923635,-0.8835049322806299,0.6272050081752241,-0.05320095317438245,-0.5342718553729355,0.693065735977143,-0.5442481772042811,0.5238672941923141,-0.4789057676680386,-0.19482322689145803,0.9915195456705987,0.8009289023466408,-0.18564129853621125,0.39530065981671214,-0.5547257913276553,0.18460697820410132,-0.7127136187627912,-0.9284311234951019,0.15678616054356098,-0.8937651510350406,-0.7185987392440438,-0.5581016293726861,0.037200875114649534,0.6117861699312925,-0.18884755531325936,0.9388177189975977,-0.33038495061919093,0.6102135642431676,-0.3361950390972197,-0.3060288894921541,0.6927776476368308,0.09951211186125875,-0.25043651182204485,0.08678412856534123,-0.5645405827090144,0.18266680231317878,-0.14154730970039964,-0.3910921369679272,-0.5864611314609647,-0.9783169920556247,0.7791256713680923,-0.1156717799603939,-0.6293884706683457,-0.9136271034367383,0.07788274344056845,-0.8770197932608426,-0.40961671248078346,-0.7258386206813157,-0.34121105866506696,0.7412047083489597,-0.3585160095244646,-0.8507850915193558,0.46063102316111326,0.51208900148049,-0.03048698604106903,0.7166414195671678,-0.48965755430981517,0.167992124799639,-0.6152330371551216,0.029147829860448837,-0.06751048099249601,0.46677821734920144,-0.9772080983966589,-0.8685783785767853,-0.7609246973879635,-0.43475620774552226,0.5560594778507948,0.6485122456215322,0.4143976685591042,-0.44272926170378923,-0.651811976917088,0.7764769839122891,-0.8988582184538245,-0.7046958520077169,-0.13927775481715798,-0.8294282979331911,0.2262300751172006,0.07947060139849782,0.002400384284555912,0.910896469373256,-0.8289828230626881,0.49746880726888776,0.43834258429706097,0.7236031829379499,-0.16785908536985517,0.02780854655429721,-0.04480147361755371,0.5168463834561408,-0.31146570993587375,0.040481420699507,0.08184897061437368,0.7867794595658779,-0.34857164323329926,0.5986891253851354,-0.6270144856534898,0.1273223515599966,-0.9877220802009106,-0.28280525747686625,-0.37628967966884375,0.9656372633762658,0.9501828770153224,0.22542625246569514,0.8966871877200902,-0.077043148688972,0.014866986777633429,-0.2599132885225117,-0.8210755502805114,0.8220813893713057,0.24033134197816253,0.03601846517995,-0.6673095459118485,-0.10389653779566288,-0.5247078607790172,0.07631322834640741,0.02310953475534916,-0.5706436247564852,0.9213316775858402,-0.9104938386008143,-0.37400421872735023,-0.998969784937799,-0.41114136995747685,0.28010814217850566,0.7919189454987645,0.023770675528794527,-0.45967317186295986,0.6940255514346063,-0.25022557750344276,-0.7958400738425553,0.35377534851431847,0.28772797947749496,0.9999024160206318,0.18070226488634944,-0.7165550049394369,-0.33659921679645777,-0.5960745932534337,-0.5066967159509659,0.35263971565291286,0.09726503863930702,-0.9889074051752687,0.7635883847251534,0.1542145307175815,-0.9510870496742427,-0.21833511348813772,-0.7999855168163776,-0.42851362423971295,0.45913473470136523,0.43894971860572696,-0.8771349308080971,0.9431741228327155,-0.8348094802349806,-0.2466113273985684,-0.49309262493625283,0.4119929661974311,-0.7806602260097861,0.42061489820480347,0.46795821841806173,-0.5532752494327724,-0.07718436094000936,0.1134868417866528,-0.18034493969753385,0.6933517828583717,0.8236068282276392,-0.7268210910260677,-0.6851944304071367,-0.6106800166890025,0.6824625846929848,-0.44144291523844004,0.9935771068558097,-0.5242547146044672,0.5842606392689049,0.5882986742071807,-0.14575251983478665,0.7528538415208459,0.9032917390577495,-0.32732090959325433,-0.14638806134462357,-0.45297333272174,0.6961638974025846,0.05015447875484824,-0.8387301755137742,-0.8717493182048202,0.89435018831864,0.33653017366304994,0.25046494882553816,-0.46955843223258853,-0.4476942331530154,-0.8942167214117944,-0.528239781036973,-0.14384541986510158,0.582733154296875,0.6622417657636106,0.563087570015341,-0.45686884317547083,0.01707825344055891,0.6375179011374712,-0.46466158190742135,0.24389197351410985,-0.37575305067002773,0.18556494498625398,-0.5512849721126258,0.6890705488622189,0.5607491820119321,-0.43707025330513716,0.6359234875999391,-0.4984663720242679,-0.9417851357720792,0.4635551357641816,0.47576590673998,-0.7080198586918414,-0.8587986608035862,0.5648443568497896,-0.36665055248886347,0.40869747335091233,-0.15490036085247993,0.045910338405519724,0.5835861274972558,-0.13248861441388726,-0.3128496054559946,-0.9563694624230266,-0.42399664921686053,0.02690592547878623,0.25835271924734116,-0.14217065321281552,0.24272203538566828,0.2560904370620847,0.07255208771675825,0.5111989751458168,0.0401623141951859,0.12246964406222105,-0.2246457659639418,0.005588688887655735,0.5898100910708308,0.57429059734568,0.34482630295678973,0.7992499587126076,0.4869960290379822,-0.92903394671157,-0.43257361464202404,-0.15073507418856025,-0.4829743946902454,0.43847956927493215,0.4555128482170403,-0.10858195926994085,-0.7169937137514353,0.5672190776094794,-0.45154524128884077,-0.9936114246957004,0.5296683283522725,-0.6102147749625146,-0.2903675204142928,0.8478843974880874,0.004726704675704241,-0.7793533769436181,-0.8077854537405074,-0.407278907019645,-0.26374368090182543,-0.1744090188294649,0.07022088067606091,-0.4796604630537331,-0.2846932504326105,-0.20499210432171822,0.1830755826085806,0.8812133525498211,0.13331526843830943,0.6361030284315348,-0.5349824721924961,0.13249855861067772,0.10124350897967815,0.433091186452657,0.39610949344933033,-0.425774612929672,0.6092010196298361,0.038095138501375914,0.5508982613682747,0.5281446781009436,0.13356927456334233,-0.318622182123363,-0.9781233333051205,-0.888103008735925,-0.6704338183626533,-0.8035447159782052,-0.3713309094309807,-0.8786822208203375,0.8978996830992401,-0.531984378118068,0.837904873304069,0.4954184661619365,-0.1745178303681314,0.5565093532204628,0.3802619120106101,0.42791918059810996,-0.28802994918078184,-0.2626634743064642,-0.21293294755741954,0.053474741987884045,0.9833594728261232,0.5297656925395131,0.26194102969020605,0.016827767249196768,0.004381866659969091,-0.2026104317046702,0.5384333580732346,-0.011058560106903315,-0.5241413018666208,0.8507371530868113,-0.946157987229526,-0.37521548103541136,0.11101814871653914,0.46325184497982264,-0.7345777116715908,0.2605555932968855,-0.5593468621373177,-0.35527774365618825,-0.29061056300997734,0.8529109191149473,0.8631748892366886,-0.850479447748512,0.9604286225512624,-0.5647725611925125,-0.4075292982161045,0.8189101917669177,-0.7692054072394967,0.9740831265226007,-0.9881472419947386,0.5656620971858501,-0.9954784773290157,0.5826915977522731,-0.08145320788025856,-0.7560303234495223,0.8645866131410003,-0.2520303847268224,0.030925437808036804,0.553066860884428,-0.47270670626312494,0.28275809856131673,0.9862798703834414,0.43711678544059396,-0.5206680800765753,0.7597269644029438,0.003397305030375719,0.31917752930894494,0.4290673639625311,0.24537503719329834,-0.6844642381183803,0.15739273326471448,0.8972744299098849,-0.7577425725758076,0.09461662173271179,-0.8535296083427966,0.20843876479193568,-0.28725079726427794,-0.5509660416282713,-0.705906177405268,0.37131938384845853,0.07123279012739658,-0.522036305628717,0.7539354800246656,0.13040328631177545,-0.9180395607836545,0.2576078958809376,0.9074499383568764,0.5667052692733705,-0.6936764162965119,0.4831260102801025,0.8593545234762132,-0.2513160868547857,0.43881330033764243,-0.8529776963405311,0.657779305242002,0.9570112223736942,-0.8620090908370912,-0.8776165805757046,-0.6344686094671488,0.3196990080177784,0.09536336595192552,0.22295129811391234,-0.3313863887451589,0.008605696726590395,0.9162477417849004,0.3667557379230857,0.21483173314481974,-0.19363275123760104,-0.3726720856502652,-0.1912193507887423,-0.8300920585170388,-0.7761532361619174,0.28447946393862367,-0.3828740520402789,0.9179328684695065,0.1935566132888198,0.09025553055107594,-0.5552062732167542,0.16094754869118333,0.8262703497894108,0.91979401698336,-0.6606093612499535,0.002539866603910923,-0.059672784991562366,-0.9916656324639916,0.7191596343182027,-0.24292709538713098,-0.19939330639317632,0.42711855843663216,-0.6364721744321287,-0.8042224976234138,0.8176306993700564,0.8982713790610433,0.03530854871496558,0.958730913233012,0.8578070453368127,-0.0662594111636281,0.5820520701818168,-0.945989872328937,-0.13775521283969283,0.1950162393040955,-0.9288402949459851,-0.14351400407031178,-0.992269990965724,-0.880485612899065,0.044259203132241964,-0.693841349799186,-0.3299957886338234,-0.7236496927216649,0.776277937926352,-0.8416847502812743,0.9136015907861292,-0.7899398123845458,-0.5262483060359955,0.514342328067869,-0.4594060406088829,0.3255922934040427,-0.4920037384144962,-0.2411602409556508,-0.9760780399665236,0.03413918521255255,-0.7101561487652361,-0.5425356589257717,0.9592192028649151,0.7921410305425525,0.28088272642344236,-0.8710287748835981,0.3395366780459881,0.4236040306277573,0.765907243359834,-0.8496491280384362,0.35057581774890423,0.08283989364281297,-0.5941884447820485,-0.010551527608186007,-0.25906787998974323,0.9528019549325109,0.9938938044942915,-0.8164870012551546,0.458426168654114,0.8665393167175353,-0.47034500911831856,-0.05257463362067938,-0.28598078340291977,0.7568989298306406,-0.48685766477137804,0.8004486924037337,-0.6164483209140599,-0.5058138407766819,-0.45158119313418865,0.14400202315300703,-0.6870918511413038,0.94384924788028,-0.3374608480371535,-0.7358478456735611,-0.691300684120506,0.5018629799596965,0.09608969977125525,0.4685021103359759,-0.003446906805038452,-0.7014907184056938,-0.3352120779454708,-0.4956632130779326,-0.33069257624447346,-0.8768287748098373,0.24161132844164968,0.072206050157547,0.35463144071400166,0.047598643228411674,-0.16000662185251713,0.17349965265020728,-0.7523848037235439,-0.8015567841939628,0.06833432521671057,-0.19509311811998487,-0.5494943922385573,-0.10226719360798597,0.32352692214772105,0.3246886390261352,-0.9858502564020455,-0.9470134382136166,0.6449673026800156,0.41650720685720444,0.8101366888731718,-0.861893713939935,0.3596982122398913,0.994714729487896,0.661679255310446,-0.21219149185344577,-0.12704619765281677,0.6813610326498747,0.5949178794398904,-0.6800152924843132,0.5709135960787535,0.8591722357086837,0.6470949519425631,-0.543625813908875,0.9149522627703846,-0.5719903144054115,-0.12735535064712167,-0.2328679203055799,0.6206422238610685,0.9115958912298083,0.7127651236951351,0.5705631701275706,0.32558224303647876,-0.24496168363839388,-0.7119856434874237,-0.3507829811424017,-0.5768742952495813,-0.8080930602736771,-0.5812136256136,0.6523525938391685,-0.6155024403706193,-0.4952535582706332,0.5910043446347117,-0.30474470602348447,-0.6191827263683081,-0.06332584796473384,0.9277626480907202,-0.3315406106412411,0.17324155941605568,0.7049091877415776,0.10873933928087354,0.29165006009861827,0.47863481054082513,0.009461722802370787,-0.9114346266724169,0.6867558527737856,-0.6100865658372641,0.30810423381626606,0.1402744399383664,-0.5119048710912466,-0.5347671597264707,-0.3345546359196305,0.8261899761855602,0.15385311981663108,-0.7193446303717792,-0.7110944022424519,-0.8206801158376038,-0.7281510224565864,-0.16531580640003085,0.03084942325949669,0.5459882118739188,0.6417420846410096,-0.16024631075561047,0.951819350477308,0.6657190979458392,-0.504940387327224,0.7606628448702395,-0.23148982971906662,-0.25562477950006723,-0.7586403409950435,0.7538910233415663,0.6839771843515337,0.33277039648965,0.5314096375368536,0.37973377481102943,0.7309125456959009,-0.9209815701469779,0.9991371119394898,-0.7636290960945189,-0.024246880784630775,-0.10831864876672626,0.4319093804806471,-0.6052454262971878,-0.05372523656114936,-0.7021641829051077,0.4838760304264724,-0.4005544735118747,-0.6975017231889069,0.29978577233850956,-0.677568051032722,-0.6949957571923733,0.36683544982224703,-0.8306304104626179,-0.21716556744650006,0.8379897689446807,0.13259906135499477,0.912063404917717,-0.27589903958141804,0.28335472103208303,0.5077903349883854,-0.47154504572972655,0.7196055427193642,0.20166282588616014,0.07021709391847253,0.6598896714858711,-0.7064239224418998,-0.14565697824582458,0.4605455198325217,-0.24443374061957002,0.7337675201706588,-0.2745472467504442,0.19211677089333534,-0.040275183506309986,0.48784935288131237,0.5472186873666942,-0.6907396363094449,0.11453399248421192,0.26545669976621866,-0.44985532900318503,-0.8926867437548935,-0.7504114452749491,-0.02207217365503311,-0.7491428414359689,0.9571057157590985,-0.964337055105716,-0.22784888604655862,0.16863296320661902,-0.5461591291241348,0.4526270292699337,-0.5755444620735943,-0.5611837250180542,0.3255266756750643,0.5689225010573864,-0.8297833423130214,-0.36564338160678744,0.6214644801802933,0.898374701384455,0.004464438185095787,0.9917405257001519,-0.29042607825249434,0.6195761375129223,0.22832027729600668,-0.829111841507256,0.785356760956347,-0.47637169202789664,-0.7167051271535456,0.46617195615544915,-0.06867994740605354,-0.15070423856377602,0.4408264444209635,0.9228549948893487,-0.2734522745013237,0.7888436894863844,-0.6541513223201036,-0.07015361171215773,-0.6864235806278884,0.6722189015708864,-0.5790018984116614,0.1943326578475535,0.9769413094036281,0.2911271946504712,0.8756097834557295,0.9471543249674141,0.06918535009026527,-0.5884309965185821,0.3774637756869197,0.5301381340250373,-0.745030777528882,0.46802129689604044,0.12592477025464177,0.6067366236820817,0.7291718735359609,-0.205419079400599,-0.0693960515782237,-0.18865910870954394,0.6605183053761721,-0.5637079873122275,0.585932498332113,0.7239101370796561,0.21742254588752985,0.3195377173833549,-0.12463564332574606,-0.7245028340257704,0.175472566857934,0.8119097091257572,0.961890883743763,-0.2978339600376785,-0.43273515347391367,-0.3688571248203516,0.06571197649464011,0.39266949938610196,0.8254969543777406,0.8702849932014942,0.19800237100571394,-0.8033370524644852,0.671441815327853,-0.9254415547475219,0.6118654441088438,-0.28695916198194027,-0.907972380053252,-0.06794451409950852,-0.053318094462156296,0.24674242222681642,0.3902196688577533,-0.23370831366628408,0.5216725864447653,-0.28621330624446273,-0.3022102820686996,0.039431024342775345,-0.5546711455099285,-0.14198373071849346,0.6496408944949508,-0.9366349983029068,-0.07214784855023026,-0.35242079570889473,0.17670884495601058,-0.8348799142986536,-0.6668007429689169,0.7814034768380225,0.5691055497154593,0.08094622706994414,0.23892471473664045,-0.45977300126105547,0.8027197471819818,0.8692856044508517,0.23282592464238405,0.8293642364442348,-0.38099960749968886,-0.42960476921871305,-0.6729678390547633,-0.12685537012293935,0.48291596630588174,-0.5959646017290652,0.5616155858151615,-0.9689970891922712,0.6402629376389086,0.6498241745866835,-0.5299015096388757,0.5628525321371853,0.44625049363821745,-0.751902346033603,-0.4464489771053195,-0.7554650586098433,0.8128106174990535,0.3640602403320372,0.5375409070402384,0.7203437522985041,-0.9041497181169689,-0.6818658486008644,0.8122617369517684,-0.5861368346959352,-0.9511223705485463,0.963957809843123,0.553566609043628,0.3772012358531356,0.1145715112797916,-0.01955979224294424,0.059221250005066395,-0.1244690609164536,-0.425549968611449,-0.08261363441124558,0.37701100669801235,-0.8634754121303558,-0.7348664179444313,-0.18968704203143716,0.9963012589141726,-0.9060461008921266,-0.9596015866845846,-0.4980962881818414,-0.3164728251285851,-0.8840574864298105,-0.526751687284559,0.2722261119633913,-0.4634307799860835,-0.2674162401817739,-0.5691522946581244,-0.9217646881006658,-0.9179834928363562,-0.08745680609717965,0.2768457750789821,-0.5866393763571978,0.6185063244774938,-0.47868990898132324,-0.07264018571004272,-0.8673899038694799,-0.4436380243860185,0.8430579463019967,-0.9581232001073658,-0.6835811738856137,-0.41798843117430806,0.23240031395107508,-0.3531766925007105,0.24152356991544366,0.7956503187306225,-0.6160396570339799,-0.49295164411887527,0.6065933750942349,-0.7305707796476781,0.7632798496633768,-0.38271259795874357,0.4840394323691726,-0.6647195941768587,0.8754369034431875,-0.18862553453072906,-0.9402630161494017,-0.897969076409936,-0.543419755063951,-0.9503986197523773,0.6492870883084834,-0.9390432350337505,0.45358810340985656,0.392090349458158,-0.1167306606657803,0.5794420535676181,-0.956337159499526,-0.6153501970693469,0.396947855129838,-0.24621185334399343,0.2917590206488967,-0.5781163834035397,-0.462822153698653,0.8874592836946249,-0.5914754588156939,-0.3714027223177254,0.37236307421699166,0.45005416264757514,0.7526388722471893,-0.7134456518106163,-0.9219659911468625,0.1091757733374834,-0.48197732865810394,0.949665923602879,-0.4294108087196946,0.8824268742464483,0.9657564526423812,0.020494791213423014,-0.5022103833034635,-0.14319820143282413,-0.5691218841820955,-0.1563514769077301,-0.9719321304000914,-0.33011704636737704,-0.426457101944834,-0.44459023885428905,0.8238678444176912,-0.9060819824226201,-0.9601539531722665,0.8804720751941204,0.8718777890317142,-0.9816138027235866,0.6047590160742402,-0.18633276596665382,0.31155282678082585,0.26089498680084944,-0.6475240625441074,-0.30736876046285033,-0.8052095635794103,-0.16446546697989106,-0.05526156164705753,0.7472118730656803,0.8228256329894066,0.4574183872900903,0.2750093066133559,0.18129899678751826,-0.1641639405861497,-0.7740890816785395,0.12757458304986358,-0.6195630296133459,-0.7543293386697769,-0.4112592367455363,0.3180053951218724,0.16458661947399378,0.028328694868832827,0.9667742233723402,0.4569185352884233,0.511694323271513,0.5710505489259958,-0.5684985485859215,-0.7820333098061383,-0.1306633334606886,-0.22762977285310626,0.5196985607035458,-0.9652128173038363,0.2006569318473339,-0.3597056702710688,-0.11685858573764563,0.24991881428286433,-0.03253874834626913,0.907278954051435,0.06949030607938766,-0.19335770141333342,0.9443494603037834,0.4435904831625521,-0.3050363613292575,0.4229945922270417,0.29479023441672325,0.5729236546903849,-0.5682172640226781,0.32586322352290154,-0.09475353686138988,-0.47388880234211683,0.18564213020727038,-0.857318096794188,-0.35006562480702996,-0.011341976467519999,0.6477926364168525,-0.06200692290440202,-0.9917441364377737,0.9882324091158807,-0.4808173170313239,-0.5830460414290428,-0.9554757853038609,-0.5461426540277898,0.12014242494478822,0.5621006321161985,0.9530948693864048,-0.2485569384880364,0.7657996201887727,0.16448856377974153,0.7672086427919567,-0.062251121271401644,-0.6930840811692178,0.4835467445664108,-0.032348271925002337,0.782811954151839,0.8617432648316026,-0.10231319954618812,0.14596487674862146,0.9552976321429014,0.9640750116668642,0.9742330377921462,-0.33256212528795004,-0.6996317566372454,0.2783262152224779,0.534125973470509,0.4865271863527596,0.1444343999028206,0.6163997575640678,0.3309239116497338,-0.3686777432449162,0.9031119835563004,0.24190558353438973,0.3855580254457891,0.6322628986090422,-0.0690053878352046,0.7752608205191791,-0.08758071064949036,0.8673734739422798,0.5055143949575722,-0.8008406301960349,-0.18446217011660337,0.3636532030068338,0.19387337053194642,-0.28714427817612886,-0.22597993444651365,-0.30887412279844284,-0.49025437608361244,0.5103480070829391,0.23708038637414575,-0.1320153116248548,0.958749529439956,-0.04647992178797722,0.7381524038501084,-0.3440898507833481,-0.5356020103208721,-0.4059271584264934,-0.9165941118262708,-0.44673384819179773,-0.9790859529748559,0.9416205366142094,-0.28149833995848894,0.690358660183847,0.1568732182495296,0.3676069788634777,0.42516828374937177,-0.7152987779118121,0.31525023840367794,-0.26237456779927015,-0.026431170292198658,0.07665572687983513,0.48837690940126777,0.31074538733810186,-0.19178052572533488,-0.7769628027454019,0.20957915671169758,-0.8014327804557979,-0.3239833018742502,-0.19504559272900224,-0.17946994584053755,-0.83729546982795,-0.27821069676429033,-0.7343155075795949,-0.8869938543066382,-0.8726920015178621,0.6620349301956594,-0.6306279837153852,0.7653637123294175,0.07182828709483147,-0.019056136719882488,-0.33227202482521534,0.7582965428009629,-0.7905302499420941,0.15505171800032258,0.5619766535237432,-0.3566241920925677,0.8562926365993917,0.46461631916463375,-0.05271713016554713,0.8329636151902378,-0.5357045601122081,0.3162095700390637,-0.32147574657574296,-0.2908935556188226,-0.8062066086567938,-0.8443121924065053,-0.3805978442542255,-0.916085415519774,0.7188074197620153,-0.3376388684846461,-0.7447432689368725,0.9062650357373059,-0.7912397524341941,-0.3270890708081424,0.2475417349487543,-0.5361198354512453,0.08851618180051446,0.03779720375314355,0.9408088470809162,-0.37462571589276195,-0.4769337042234838,0.9373379331082106,0.8637407100759447,-0.8296077102422714,-0.5081175859086215,0.5208748984150589,-0.9907380091026425,0.09201896144077182,0.3471739273518324,-0.15758914593607187,-0.5440816157497466,0.7919093579985201,0.441452210303396,0.5494276117533445,-0.07891871640458703,0.21273455722257495,-0.27838421193882823,-0.25366157246753573,-0.6307579637505114,-0.0986125092022121,0.927557869348675,0.1391265792772174,0.4388375645503402,0.7179145650006831,-0.8427516031078994,-0.577364201657474,-0.9464897164143622,-0.5085855587385595,-0.012729637790471315,-0.15338843455538154,0.17166454065591097,0.21877745678648353,-0.7861496056430042,0.20094914082437754,-0.6727470876649022,-0.20587227260693908,0.8758914764039218,-0.46127884136512876,0.851117089856416,-0.15558969834819436,-0.8004847792908549,0.3819933459162712,0.772130876313895,-0.8612121199257672,0.8464928139001131,-0.28199264500290155,0.28437312226742506,-0.6771755823865533,-0.48606221191585064,-0.7517157788388431,-0.42248999467119575,0.8599340016953647,-0.6631083870306611,0.6553811081685126,-0.3217904958873987,0.17211672198027372,0.8840463319793344,0.8224843391217291,-0.5037145111709833,0.14839725941419601,-0.3579156482592225,-0.21057018404826522,-0.6794592016376555,0.3129560905508697,0.43968041334301233,-0.13493537670001388,0.6953080710954964,0.3838848629966378,-0.46473415521904826,0.8896540962159634,0.09563720785081387,-0.01581403100863099,0.28785612573847175,-0.8158181519247591,0.08564901258796453,-0.5155088398605585,0.7105882070027292,0.2948488248512149,-0.6587340505793691,-0.10022325115278363,0.3126533511094749,-0.3221541494131088,-0.23458885913714767,0.06579039432108402,-0.07334918901324272,-0.8438674784265459,0.10470257652923465,0.35869019106030464,0.5493975901044905,0.4863300113938749,-0.4823158849030733,-0.8921864442527294,0.7460380331613123,-0.02116524614393711,0.22041120706126094,0.8113204808905721,-0.019302063155919313,0.7310645203106105,-0.5627556471154094,0.14668866619467735,-0.6826315857470036,0.7579907649196684,-0.17100552190095186,0.8557466147467494,-0.06698407605290413,-0.5995849813334644,-0.6210403623990715,-0.8800731115043163,0.4460566956549883,0.23550366330891848,-0.5566447572782636,0.5685853301547468,0.019912410527467728,0.10475081158801913,0.5592180932871997,0.9570667860098183,-0.17621927289292216,-0.5102870301343501,0.6920685493387282,0.21240026643499732,0.010793027002364397,-0.8760808198712766,0.3806677642278373,0.8069216143339872,-0.28151470655575395,0.44267427269369364,-0.5848176837898791,0.8422670983709395,0.16797065502032638,-0.7917848783545196,-0.3711916822940111,-0.19418931007385254,-0.1292686820961535,0.7250850517302752,-0.3396165748126805,-0.8727261577732861,-0.2757215001620352,-0.323434567078948,0.7087044441141188,-0.1271343589760363,0.19001986552029848,-0.11668784683570266,-0.9076790264807642,0.8659283742308617,0.7173725287429988,0.28256065770983696,-0.44673987478017807,-0.6521901623345912,0.32576673943549395,-0.4993981570005417,-0.965668682474643,0.1059745429083705,0.13491195579990745,0.7516125901602209,-0.5968869319185615,-0.10080834710970521,0.7340987962670624,0.16266946820542216,-0.7230674223974347,-0.23608942329883575,-0.4904958293773234,-0.8737939121201634,-0.2479149647988379,0.45460419123992324,-0.5730725964531302,0.07496538106352091,-0.7155426940880716,0.8490681448020041,0.47126916516572237,-0.8264668923802674,-0.7425733334384859,0.5688566556200385,-0.9909948445856571,-0.10612472100183368,0.4884880855679512,-0.10147850401699543,0.5400203624740243,-0.08930832706391811,-0.2594949686899781,0.65145716490224,-0.9121885476633906,-0.252767083235085,0.9012219728901982,0.02352184010669589,0.39363052835687995,0.22119771549478173,-0.8151515959762037,0.2654412710107863,0.9897048226557672,0.9272417789325118,0.0616661636158824,-0.7135627274401486,0.7837327243760228,0.21346730692312121,-0.9201861233450472,-0.5564205260016024,0.9864397784695029,0.09082494955509901,0.6707566608674824,0.9232426900416613,0.7135260230861604,0.8950967593118548,-0.9949268838390708,-0.8309817230328918,-0.779352365527302,0.21010284591466188,-0.9900419181212783,0.33949551498517394,0.5307921646162868,0.04782300675287843,0.8145940755493939,-0.7792854718863964,0.16196913365274668,0.40071231173351407,-0.6167460069991648,0.9559015817940235,0.16824541613459587,0.25403329776600003,-0.3213756438344717,0.7679695030674338,0.7382670594379306,-0.29254984902217984,-0.7935307952575386,0.85903913481161,-0.22301161708310246,-0.38464134465903044,0.6148655298165977,-0.4812604379840195,-0.372921961825341,-0.04463510727509856,-0.4128310400992632,0.5571327828802168,-0.7300921496935189,0.26686051301658154,0.7427273993380368,-0.6339866518974304,-0.6045603016391397,0.9292706963606179,-0.3295259322039783,-0.6959697650745511,-0.45174236316233873,0.6405261703766882,-0.85386394103989,0.47038310253992677,-0.1721494272351265,0.826036702375859,0.985484978184104,0.15768148889765143,0.5086071770638227,-0.3037774288095534,-0.6725319284014404,-0.8183973128907382,-0.8500948902219534,0.7927999859675765,-0.3277029995806515,0.8699867730028927,0.5359889571554959,0.3535337746143341,0.787974666338414,0.2222013953141868,-0.06634441018104553,0.23645607382059097,0.02100031916052103,-0.09576878137886524,0.43975855922326446,0.846551088616252,-0.6479173670522869,-0.9664215962402523,-0.057298345025628805,-0.6522726779803634,-0.2743992852047086,-0.2757200584746897,-0.576601087115705,-0.8979000421240926,-0.11473032273352146,0.535849460400641,0.8521036030724645,0.7311038565821946,0.7119984677992761,0.5106736305169761,0.42798870662227273,0.25526559026911855,-0.764823813457042,-0.23255052836611867,0.16857597790658474,-0.6029456686228514,-0.10364983463659883,-0.030483807437121868,0.26419883174821734,-0.9227001615799963,0.37331293942406774,0.42256222339347005,-0.6470866436138749,0.23940917802974582,0.27839264646172523,-0.8115274165757,-0.5420798100531101,-0.4437704784795642,-0.16310074040666223,0.1920877960510552,0.6736034718342125,0.6773175760172307,0.1162369535304606,0.6069080014713109,0.8592264819890261,-0.353574360255152,0.16965231858193874,0.7543029603548348,-0.6498386380262673,-0.9234067173674703,0.16992666199803352,-0.11679114401340485,-0.16780186211690307,-0.3928720806725323,0.8954626079648733,0.7003738293424249,-0.48143201135098934,-0.923101072665304,0.5542982444167137,-0.17559659155085683,0.43920667795464396,0.5110209863632917,-0.3499396643601358,-0.7912996183149517,0.0528756114654243,-0.5716372043825686,0.046119601000100374,0.3159291846677661,-0.5723568540997803,-0.7402888471260667,0.10182622820138931,0.32366411481052637,-0.7544004498049617,-0.2166667589917779,-0.9507652688771486,0.8207729668356478,0.20146212819963694,-0.19912496441975236,0.7084455513395369,0.6662439149804413,0.012029448058456182,0.11386402463540435,0.7972206883132458,0.8427785960957408,0.25952792121097445,0.2949274997226894,-0.420975036919117,0.9883257090114057,-0.8479810818098485,-0.3201831607148051,-0.41178666241467,0.014310155529528856,-0.425050706602633,-0.13266192702576518,0.7439567763358355,-0.659346389118582,-0.5268864021636546,-0.8004314485006034,0.9723632978275418,-0.4011536715552211,0.9525267872959375,0.07554868515580893,-0.3407463510520756,-0.3460738165304065,0.9852145384065807,-0.15369985904544592,-0.31354697747156024,0.3117549284361303,0.8882553759030998,0.6945534152910113,-0.5111085027456284,0.5651987120509148,-0.6243346426635981,0.5980996252037585,0.663688036147505,-0.05636780336499214,0.13018978899344802,0.3014913825318217,0.2665471527725458,-0.9258371195755899,0.6425181920640171,-0.2962411935441196,-0.048643399961292744,0.6553495470434427,0.14301138604059815,0.8149374751374125,0.31841489765793085,-0.37292996421456337,0.9784817318432033,0.06868739007040858,-0.6018357095308602,0.7747200545854867,-0.21089123468846083,-0.45913311559706926,-0.7980094770900905,0.7896606586873531,-0.592278400901705,0.5108577026985586,-0.05091844266280532,-0.6694245743565261,0.44095733715221286,0.21196794463321567,-0.9541089693084359,0.43333079665899277,0.8456840044818819,-0.29362262645736337,-0.8094787690788507,-0.24873954383656383,-0.23890389874577522,-0.9358075074851513,0.20227530179545283,0.36002538027241826,-0.44150056736543775,-0.06782614719122648,-0.9208398959599435,-0.07648936146870255,-0.9443124560639262,-0.365873702801764,-0.1996363392099738,-0.13861145405098796,0.11326361587271094,0.549475725274533,0.0035258829593658447,0.3990014852024615,0.29899985482916236,0.49717959435656667,-0.27810761984437704,-0.6448109289631248,-0.8726476109586656,-0.34564780769869685,0.9703580727800727,0.1356795271858573,-0.5512107443064451,-0.26659577898681164,-0.3132519731298089,-0.4172927001491189,0.2666253219358623,0.9947325163520873,0.7718361555598676,-0.5152222355827689,-0.8128444761969149,0.22067923936992884,0.658196821808815,-0.5233899774029851,0.7967106723226607,0.6770691475830972,0.9817938287742436,-0.6377077996730804,0.16511298948898911,0.7796092475764453,-0.6172461742535233,-0.9770749481394887,-0.5589137906208634,-0.800688112154603,0.3755332329310477,0.9124429705552757,-0.533889508806169,0.8209853926673532,0.203859593719244,0.25755790481343865,-0.5443557049147785,0.46094473637640476,-0.7587455776520073,-0.3760041664354503,-0.6672502760775387,-0.3520054845139384,0.8105399152263999,0.03624658705666661,0.037303305231034756,0.5743665336631238,0.14445698726922274,0.615412465762347,0.13544665230438113,-0.23708872077986598,0.02382764546200633,0.15534045221284032,-0.9852967117913067,-0.19853817950934172,0.291692933999002,-0.7555461502633989,0.1791493888013065,0.2696240176446736,0.2964810240082443,0.8961697616614401,0.6010531364008784,0.5460563963279128,0.20461922883987427,0.5732552241533995,-0.31525751762092113,-0.49395994236692786,-0.7129370900802314,-0.8292208597995341,0.32496792916208506,-0.3818148267455399,0.8055925206281245,0.019303900189697742,-0.6455937530845404,-0.0652732290327549,0.6159381349571049,0.32122688787057996,0.05162214580923319,0.17886941228061914,-0.7220624233596027,0.4177879337221384,-0.33076547645032406,-0.6733011109754443,-0.4395621158182621,-0.9899444687180221,0.16108206706121564,-0.589100337587297,-0.5817302111536264,0.40735607128590345,0.07740038214251399,-0.29897169629111886,-0.059094312600791454,0.9154337756335735,0.8253665342926979,0.9771452541463077,-0.8185850321315229,0.17490612156689167,0.7854743441566825,-0.4555292255245149,-0.7016539508476853,-0.1622477932833135,-0.515028883703053,-0.4260166478343308,0.051204017363488674,-0.8403529254719615,0.6343462970107794,-0.7443192349746823,0.893626896198839,-0.9482090268284082,0.6620089397765696,0.10681849764660001,0.7768209842033684,0.7996075144037604,0.32874440867453814,-0.008801980409771204,-0.3889033212326467,-0.023067439440637827,-0.9191186679527164,0.9120209668762982,-0.03789696516469121,0.8378222724422812,0.2941813408397138,-0.3267636215314269,-0.5699473912827671,-0.556147781200707,0.007511029485613108,-0.7494730744510889,0.169147206004709,0.27087495382875204,-0.010357523802667856,0.5086328526958823,-0.9607255435548723,-0.6903098239563406,-0.7403915296308696,0.8617723914794624,0.5507971504703164,0.9063967261463404,-0.41981980158016086,-0.32111609959974885,0.20329924020916224,-0.011692467145621777,0.9553644233383238,-0.9964020368643105,0.39112494559958577,0.3292613523080945,0.7314621852710843,0.08686361648142338,0.6890054759569466,0.2284686858765781,-0.39362732134759426,0.9021760923787951,0.04067902825772762,0.4012762741185725,-0.6396451047621667,-0.34177127573639154,0.9430988216772676,-0.7332764007151127,-0.7296302425675094,-0.12166154384613037,-0.9906168035231531,0.21337672835215926,-0.49815295496955514,0.33622935554012656,-0.583045597653836,0.8352047028020024,-0.544270639307797,-0.3968751998618245,0.17765974439680576,-0.7286191037856042,-0.5387655906379223,-0.47083946550264955,0.5662638284265995,0.8843241627328098,-0.3862154418602586,-0.3906254437752068,-0.7915729521773756,0.09450209559872746,0.5718940626829863,-0.06083871331065893,-0.3319798926822841,0.49714062409475446,-0.8177226609550416,-0.7030558045953512,-0.7117316126823425,0.44758685445412993,0.0010928674601018429,0.12457463378086686,-0.22964596096426249,-0.0590718062594533,-0.23227680241689086,0.570302692707628,0.8669435936026275,-0.8002706384286284,0.01660576742142439,-0.6540724132210016,0.49272007727995515,-0.04319408256560564,0.9823172055184841,-0.3044486353173852,-0.6111223949119449,0.8602842856198549,0.29226647736504674,-0.30284686433151364,0.35584702901542187,0.2799374549649656,0.23611559998244047,0.9230537912808359,0.06312622968107462,-0.6687964582815766,0.03218810958787799,0.4884551456198096,0.7162916194647551,0.13469746243208647,0.07095366204157472,-0.35973044112324715,-0.02052952814847231,-0.547585248015821,-0.9873860725201666,-0.7054743822664022,0.2562632355839014,0.7206383277662098,-0.42997600184753537,-0.7693415135145187,0.07725098682567477,-0.318817010615021,-0.27518985653296113,0.041248100344091654,0.01796725718304515,-0.09186894679442048,0.8694233484566212,-0.08335345704108477,-0.7307890695519745,0.9509844090789557,0.33422419242560863,0.9800218120217323,-0.36416130140423775,0.3431914928369224,-0.8060981594026089,0.793764821253717,-0.5087287831120193,0.9437040057964623,-0.9582859291695058,-0.6170034063979983,-0.8189953011460602,0.23743157275021076,-0.4228792772628367,-0.00554491626098752,0.7609801478683949,0.979948359541595,-0.017020266968756914,0.6820474015548825,0.3222790961153805,-0.15631715673953295,0.9095451119355857,0.1519071999937296,-0.1729911006987095,0.8722868277691305,0.1408089348115027,0.652564415242523,0.22616184689104557,0.009633587673306465,0.5702106985263526,0.5258394414559007,-0.2299634669907391,-0.15039035212248564,-0.4812899702228606,0.24224881222471595,-0.7800756199285388,0.2964179287664592,0.33227856550365686,-0.7524128882214427,0.2892999602481723,-0.5271158250980079,0.2659213081933558,-0.13173680752515793,-0.8840591702610254,-0.9070385433733463,0.4599405322223902,0.24972991738468409,0.2395508736371994,-0.30040731141343713,-0.04771650303155184,-0.19804352708160877,0.36162537802010775,-0.9197904085740447,-0.3427440086379647,-0.5980150764808059,0.9764395309612155,-0.5036473963409662,-0.7611751263029873,-0.9409430273808539,0.7504350547678769,-0.749724630266428,-0.7854186678305268,-0.48865243745967746,0.6961045376956463,-0.2145160879008472,-0.6748792957514524,-0.8316009291447699,-0.016228445805609226,0.9320067949593067,-0.006054586730897427,-0.5820516846142709,0.6155966753140092,-0.10098568024113774,-0.4895837283693254,-0.6611066553741693,-0.25778488628566265,0.4961990066803992,-0.2499999711290002,-0.9697102569043636,-0.5702209761366248,0.4791971296072006,0.9901865501888096,0.41795862652361393,0.9317373293451965,0.10388259077444673,-0.9736815565265715,0.17598186759278178,0.9814577950164676,0.44838054990395904,0.14527920773252845,0.5559638869017363,-0.0327550764195621,0.3838156652636826,0.0029669487848877907,0.4086361522786319,0.7250209217891097,-0.5506454068236053,0.8982946653850377,0.6793717984110117,-0.42536935210227966,0.018974547740072012,-0.7828942509368062,0.6838600407354534,-0.04699844680726528,-0.15645471587777138,0.5230202819220722,0.5510532017797232,0.2168808737769723,0.5096776545979083,-0.033417980652302504,0.9633970139548182,0.37690680427476764,0.580517103895545,-0.7968430831097066,-0.8382776919752359,0.11379153421148658,0.796426200773567,0.03594808140769601,-0.1913243648596108,0.24816603399813175,-0.08097369782626629,-0.18006898323073983,0.9354296191595495,-0.9506811881437898,-0.3549919342622161,-0.37089659133926034,-0.03389190789312124,-0.40649978118017316,-0.856397959869355,-0.39441380137577653,0.3173955879174173,0.5063418238423765,-0.265494572930038,0.944662039168179,-0.4503307742998004,0.5122162085026503,0.11015102220699191,-0.17641702434048057,0.7796542877331376,0.8168923361226916,0.608543339651078,0.9822828457690775,0.22626652382314205,-0.007861440069973469,-0.7771007400006056,-0.24641749262809753,0.09672449994832277,-0.8630651258863509,-0.8428210290148854,-0.3405807144008577,-0.0854637180455029,0.7540863486938179,-0.006790472660213709,-0.4585811165161431,-0.8356121331453323,-0.20245020370930433,-0.936549165751785,-0.2908621169626713,-0.02990787662565708,-0.29620539816096425,-0.9727294985204935,-0.3700130875222385,-0.9933127374388278,0.6620034561492503,0.3401938620954752,-0.7623223606497049,0.7634576386772096,-0.6456255163066089,0.44492320623248816,0.9275120790116489,0.24090242013335228,0.4833950358442962,0.8009334090165794,-0.6865443345159292,0.3218159666284919,-0.6648590876720846,-0.24466595565900207,-0.42329637333750725,0.7440379057079554,0.98648138390854,0.49800999788567424,-0.7933553755283356,0.6202628961764276,-0.01996576925739646,-0.7775646736845374,-0.7232068413868546,0.3220983990468085,-0.6290902951732278,0.5960118458606303,-0.9178145155310631,-0.9398499042727053,-0.3951400159858167,-0.33496645372360945,-0.8386322357691824,0.9837336069904268,0.4241423006169498,0.5588959003798664,-0.18121099192649126,0.16300456272438169,0.22039675759151578,-0.6318994257599115,-0.08347676135599613,0.9187053223140538,0.2627940191887319,0.8368183663114905,0.9730920162983239,0.8674582755193114,0.06726656900718808,0.7370813600718975,0.6106544132344425,-0.9862373312935233,-0.4175192476250231,0.5795091106556356,-0.17133568692952394,-0.6225502984598279,-0.12911863392218947,0.8304040106013417,0.9771080831997097,0.11357636097818613,0.6778763355687261,-0.8000822891481221,0.760149740613997,-0.22719361074268818,-0.0037968913093209267,-0.12512825708836317,-0.6411626758053899,-0.7839442286640406,0.1941117183305323,-0.9941917979158461,0.2794528813101351,-0.05458483658730984,0.6021582069806755,-0.6635278076864779,-0.14296321757137775,0.910720604006201,-0.6608667811378837,-0.32019013306126,-0.8642336213961244,0.3076665406115353,0.4109108177945018,0.21835024049505591,-0.7924240124411881,-0.04525258904322982,-0.12822993472218513,0.6298279245384037,-0.5810399702750146,-0.8105189702473581,-0.14492557244375348,0.5612491643987596,-0.012075967621058226,0.06288330862298608,0.39740252727642655,0.8855807548388839,-0.6922675780951977,0.5426316442899406,-0.2844067090190947,0.14838485792279243,0.9579480937682092,-0.9610942914150655,-0.540777537971735,0.4253917238675058,-0.8387626437470317,-0.6043505095876753,0.015566021203994751,-0.19557515950873494,-0.48840516805648804,-0.11252170475199819,-0.5507336733862758,0.4913884261623025,0.9622028968296945,0.47414983436465263,-0.7940795598551631,-0.21434119017794728,0.4384036301635206,0.6569481459446251,0.38421462336555123,0.5728672463446856,-0.6087416270747781,-0.08472426049411297,0.5483170319348574,0.568205394782126,-0.8212624816223979,-0.09587389882653952,-0.9607171434909105,-0.34241411555558443,0.6159567777067423,0.31908796494826674,0.8672501719556749,0.6991797806695104,-0.4345338405109942,-0.004568282049149275,-0.0025949859991669655,-0.04869763785973191,-0.1260822219774127,0.7283863415941596,0.6308079259470105,0.4034304623492062,0.06028619548305869,-0.43754653027281165,0.42938108555972576,0.46538186306133866,-0.8187224795110524,-0.39407799299806356,0.20129532366991043,-0.8114251331426203,-0.32050032215192914,0.820999993942678,0.12435976834967732,-0.30693715438246727,-0.5568573107011616,0.17776460712775588,-0.6737059345468879,0.13746954128146172,0.785087151452899,-0.44315238343551755,0.41879814490675926,0.4871586821973324,-0.9120386210270226,-0.062365497928112745,0.605817835777998,0.15184082416817546,0.5853466168045998,-0.6790986093692482,-0.6877030553296208,0.41989191621541977,-0.7718840632587671,-0.8868110161274672,-0.17342722695320845,0.6566861676983535,0.0014486354775726795,0.9028680580668151,-0.4835184058174491,-0.3237894349731505,-0.5359174571931362,0.9820650015026331,-0.5475096674636006,-0.51012924592942,0.22804186586290598,0.3678690236993134,-0.8480567531660199,-0.4859713912010193,-0.16637770133093,-0.22766399709507823,-0.18331071641296148,0.23136041685938835,0.18541741836816072,-0.9650166728533804,0.558673223014921,0.34742994606494904,0.00803589541465044,0.43417913746088743,0.4624787699431181,0.02817343082278967,0.41002286830917,0.7657429007813334,-0.6288204253651202,-0.4482560674659908,-0.7669416521675885,0.22180134616792202,0.6838285583071411,-0.38538052467629313,0.23938368493691087,0.71610013442114,0.8669331911951303,-0.7590633062645793,0.33423945028334856,-0.22264795051887631,-0.6240859655663371,0.08936478290706873,-0.06521618040278554,0.6407156265340745,-0.8619065531529486,0.05546918837353587,0.900423648301512,0.7598528666421771,0.4993735533207655,-0.7852962161414325,0.6142077883705497,-0.2705675484612584,-0.6424118508584797,0.5962760644033551,-0.8197154528461397,-0.09347916767001152,0.572633326984942,-0.4941578321158886,0.6660752259194851,0.6217494015581906,0.43519505904987454,0.5148162194527686,-0.44636170007288456,-0.9430058915168047,-0.655687702819705,-0.8433824558742344,0.20242427289485931,0.415118417236954,0.5034903879277408,-0.48152199387550354,-0.7169148940593004,0.749350375495851,-0.5581780080683529,-0.4053855109959841,0.6481316322460771,-0.18991504795849323,0.05852844472974539,0.35576507123187184,0.1331087197177112,0.3898135512135923,-0.9826801242306828,0.33625085093081,0.24819318763911724,-0.18247536569833755,-0.728885218501091,0.5875267526134849,0.7982942373491824,-0.4622229468077421,-0.19276201026514173,-0.49930931627750397,0.12444079201668501,0.5785936312749982,-0.6896672723814845,0.9871508390642703,-0.4082870976999402,0.009573028422892094,0.9938112385571003,-0.9038745448924601,-0.5905482536181808,0.3943909197114408,-0.7836726019158959,-0.4217875385656953,-0.6528646070510149,-0.8566452199593186,0.615841566119343,-0.18485425086691976,-0.8304218957200646,-0.6849066358990967,-0.6446350365877151,0.6477387733757496,-0.6035047466866672,-0.7988110529258847,-0.35506080323830247,0.5240407017990947,-0.19291466660797596,-0.903398796916008,0.6507602417841554,-0.16820533899590373,-0.27146159345284104,0.8286586464382708,-0.4118243516422808,0.6181461396627128,0.3903195569291711,0.9797103190794587,-0.43782723182812333,0.5535405930131674,-0.4236728413961828,-0.5239962693303823,-0.8667725585401058,0.5483223763294518,0.1571039818227291,0.4067070842720568,-0.15765831246972084,0.6851772656664252,0.3564677429385483,-0.8648629551753402,-0.6277180751785636,-0.8126264801248908,-0.4502480011433363,-0.7138838320970535,-0.7315371045842767,0.30834414763376117,0.7870395043864846,-0.10984164429828525,0.7762637855485082,-0.45183636248111725,0.06379493093118072,-0.8124533006921411,-0.28131988644599915,-0.026115980930626392,-0.2502142093144357,-0.18559615593403578,0.9194516749121249,-0.7295107063837349,-0.08143803291022778,-0.9798464430496097,0.16935620503500104,-0.7531277979724109,0.5006237397901714,-0.20559651963412762,0.8335474994964898,0.77498584613204,-0.6511332867667079,-0.5006759092211723,-0.2828434011898935,0.6152671063318849,0.182661437895149,-0.19496979424729943,-0.3875260385684669,-0.4081746656447649,-0.4685468589887023,0.19621876487508416,0.39020365476608276,0.7424766919575632,-0.6273281080648303,-0.8183132302947342,0.7461709724739194,0.6118424744345248,0.6767332763411105,0.16954708751291037,-0.09396176924929023,-0.4446845115162432,0.9843260562047362,-0.14899957785382867,-0.8248336901888251,-0.32336600171402097,-0.5442049470730126,-0.45261708414182067,0.6325436886399984,0.9204362025484443,-0.9858218217268586,0.8451894177123904,-0.9151306934654713,-0.6789280888624489,-0.42440987192094326,0.2432655729353428,-0.6980607225559652,0.5632477467879653,0.6240539555437863,0.834255485329777,-0.43623695988208055,0.1684840265661478,0.5052556502632797,0.2640212569385767,0.009388727135956287,0.6839476092718542,-0.012105090077966452,0.3966652727685869,-0.9584212675690651,-0.6236354522407055,0.5860759038478136,0.9425517320632935,0.9174770563840866,-0.34157588239759207,-0.44425476947799325,0.8811499485746026,0.8416998023167253,-0.6351469475775957,-0.6459222948178649,0.40614816173911095,0.792214167304337,0.8998924815095961,0.34944020258262753,0.5306509416550398,-0.311391182243824,0.014461806043982506,0.7941649458371103,0.991351873613894,-0.20519149350002408,0.441567063331604,-0.06791656231507659,0.7664378727786243,0.09500106237828732,0.15088314237073064,0.8975768689997494,0.2524683987721801,0.4879628522321582,-0.004689125809818506,-0.5719593418762088,-0.3630111780948937,0.7019335478544235,0.15807884046807885,0.7868699925020337,-0.11381704406812787,-0.6262898789718747,0.1012561647221446,0.33051782846450806,0.42812092462554574,-0.15508229983970523,-0.10313595365732908,0.6270444025285542,0.2357115992344916,0.7793868472799659,-0.5020008250139654,-0.4292244124226272,-0.03700773976743221,0.8671330213546753,0.2000711476430297,-0.16490981541574,0.8552897362969816,-0.7576969605870545,0.8575055752880871,0.22203505039215088,0.5172341847792268,0.15127700380980968,-0.30397327803075314,-0.6402824437245727,-0.39087386056780815,0.6979637006297708,-0.5189423747360706,0.9780104239471257,-0.6171449874527752,0.27442691195756197,0.5701602110639215,0.1201608432456851,0.2780610076151788,0.42016811203211546,0.9481840957887471,-0.6384196444414556,-0.575874104630202,-0.6201004842296243,-0.13508459646254778,-0.5065692975185812,-0.7201840085908771,-0.6071834173053503,-0.9974744427017868,-0.47281108470633626,0.4802489201538265,0.7445740457624197,0.5077208224684,0.18347151717171073,-0.39443075051531196,0.2313721957616508,0.3635043897666037,-0.24784910771995783,0.5234012207947671,-0.7827095333486795,0.5076335705816746,-0.9010293046012521,-0.5414349199272692,-0.24698356352746487,-0.15412708325311542,-0.6134991818107665,0.16637746430933475,-0.4421810684725642,0.3685753848403692,-0.22003803588449955,0.9623027197085321,0.8816942712292075,0.6279364512301981,-0.7104983241297305,-0.1856177244335413,0.7248457525856793,0.6765944245271385,-0.6350956801325083,0.11226586811244488,-0.8093159841373563,-0.5264781168662012,0.5514975530095398,-0.15747692622244358,-0.04787057591602206,-0.6382278730161488,0.9027959634549916,0.068578343372792,-0.010692112613469362,-0.09924575686454773,-0.648550976999104,0.38661349983885884,-0.6291538388468325,-0.05508232722058892,-0.5160848405212164,-0.043091556057333946,0.6860476331785321,-0.43225412582978606,-0.4351452640257776,0.7719368771649897,-0.43519148137420416,-0.6525326785631478,0.2874268707819283,-0.9139159335754812,0.07732674153521657,0.3762990143150091,-0.27425023820251226,-0.14931216929107904,-0.8588896174915135,-0.4970373590476811,0.8698107162490487,-0.7614238196983933,-0.4885127949528396,-0.8967654169537127,0.5927029801532626,-0.23131505632773042,-0.48659148206934333,-0.01756814308464527,0.296032533980906,-0.010476372670382261,-0.8928057947196066,0.3774991608224809,-0.43010207870975137,-0.8011551024392247,-0.8205780386924744,-0.8402137174271047,-0.22214264376088977,0.7300436748191714,0.13609937112778425,-0.7752760234288871,-0.48323285300284624,0.27654281770810485,-0.9467243477702141,0.9819985823705792,0.2679866226390004,0.20161963440477848,0.49085714668035507,0.6108089266344905,-0.837042978964746,0.3285377388820052,-0.2737446432001889,0.32595902867615223,0.6427794694900513,0.026811471674591303,0.4487433615140617,-0.9516654601320624,-0.7040417673997581,-0.028116796165704727,-0.27181192487478256,-0.33938859961926937,0.6929722125642002,-0.5421572462655604,0.45119640650227666,0.9423273466527462,-0.7519209873862565,-0.3075441000983119,-0.38384478352963924,0.8166054836474359,-0.16548875719308853,-0.1829386856406927,0.14027989143505692,-0.9012398328632116,-0.27770107658579946,0.2508595632389188,0.31297652423381805,0.43763592978939414,-0.5056160781532526,0.4206439326517284,-0.6381852230988443,-0.7204402391798794,-0.5538480789400637,-0.7654233612120152,-0.19625128153711557,0.18154951836913824,0.4792418861761689,-0.18841791525483131,0.8155849194154143,-0.2771608759649098,0.45004362147301435,0.9238074934110045,-0.9189579137600958,-0.7090436965227127,-0.9146594763733447,0.9739464558660984,0.9824765552766621,0.8450463423505425,-0.18724397430196404,-0.7681142650544643,-0.15882173459976912,0.4775251201353967,0.3236718331463635,0.24836978781968355,0.5811398550868034,-0.970748282968998,0.2860967554152012,0.023076544050127268,0.08333449624478817,0.17335294373333454,-0.1477390001527965,0.3204652355052531,-0.03713606204837561,-0.2206831513904035,0.9729703166522086,-0.950184038374573,0.0540425362996757,-0.1625861399807036,-0.5240991516038775,0.2981925248168409,-0.43930939957499504,0.2741411537863314,0.06990687130019069,0.21054732659831643,0.43393733678385615,-0.024540022015571594,0.52056436939165,-0.9512235107831657,0.514841231983155,-0.648473602719605,0.7952878572978079,0.18425140343606472,0.8429534207098186,-0.9813475185073912,0.09510948183014989,0.8858804004266858,0.9156993674114347,0.5489699225872755,0.772326051723212,-0.5221562995575368,-0.2869758759625256,-0.5518417828716338,0.7149557447992265,-0.14983082609251142,-0.045977527275681496,0.0718959798105061,0.5570149482227862,-0.4904520334675908,0.48750347876921296,0.3915493292734027,-0.20627760933712125,0.3492140988819301,-0.7328212847933173,0.05204183142632246,0.24914149148389697,0.7747997362166643,0.5205275854095817,0.51118388120085,0.6607895013876259,0.351570594124496,-0.44217695761471987,-0.7388551426120102,0.9143901113420725,0.9013360235840082,-0.2847016351297498,-0.1220665224827826,0.7859872709959745,-0.6350243142805994,-0.4193587824702263,0.8875376433134079,-0.5986230773851275,0.7389403735287488,-0.9940197253599763,-0.7468012953177094,0.8848656890913844,0.6415550787933171,0.3723150109872222,0.408942140173167,-0.3201478277333081,-0.4687703112140298,0.4025621130131185,-0.7844371050596237,-0.35975476494058967,-0.8472433243878186,-0.9692810978740454,0.7510653715580702,0.05353707820177078,0.04428905854001641,0.8612664826214314,0.41349729197099805,0.7199774631299078,0.95617889566347,0.6112507493235171,0.044737424701452255,0.17760526994243264,0.935487643815577,0.6334866904653609,0.8547649830579758,-0.589526092633605,0.01574098179116845,0.8420178727246821,-0.7482877573929727,0.3773466502316296,0.6007293364964426,-0.988813852891326,0.5755586139857769,-0.6556999152526259,0.4077956806868315,-0.9751484072767198,0.2569074733182788,-0.32008737325668335,-0.48574828589335084,0.5955149885267019,0.47339184395968914,0.8626715857535601,0.15998464543372393,-0.20306394202634692,-0.237019176594913,-0.20878929924219847,-0.5532115511596203,0.22294401051476598,0.966988468542695,0.6260341457091272,-0.5879782461561263,0.483538253698498,-0.542950376868248,-0.41768693644553423,0.3023893153294921,0.8732707942835987,0.12160518812015653,-0.827552153263241,0.008984944317489862,0.754534418694675,0.992468586191535,-0.11158939357846975,-0.4808889413252473,0.9084089891985059,-0.7144324816763401,0.9655490037985146,-0.7730227392166853,-0.08538849325850606,-0.4189609158784151,-0.4095837236382067,-0.8990103923715651,-0.6211405261419713,-0.7654517670162022,-0.7536908658221364,-0.9743628408759832,-0.6869006617926061,-0.5682124374434352,-0.2633790955878794,0.20462267752736807,-0.9410236328840256,-0.22941917786374688,-0.5417019804008305,0.15663485834375024,-0.8915631379932165,0.2719964343123138,-0.7084636306390166,-0.6566386423073709,-0.7100140280090272,0.7964827055111527,-0.4984712200239301,-0.9802244636230171,0.02163013443350792,-0.965547785628587,-0.3482875609770417,0.7462021359242499,0.8668582434765995,0.48640930047258735,0.41166322957724333,0.7310569146648049,-0.18830676609650254,0.39947136538103223,-0.07607772247865796,-0.6081311516463757,-0.06723309587687254,-0.9072092021815479,-0.4222626416012645,-0.44394244719296694,-0.09013599995523691,0.9522330332547426,-0.6461790334433317,-0.003057731781154871,0.6961122807115316,0.022960365749895573,0.7182002472691238,-0.8756967759691179,0.2651820736937225,-0.25804590806365013,-0.977502609603107,0.8507063775323331,0.8052609236910939,-0.29756056517362595,-0.09917908674106002,-0.6476198798045516,-0.9418648215942085,-0.7985068969428539,0.35300974966958165,0.5753479162231088,0.9181388621218503,0.3807841744273901,-0.02106712106615305,0.7932604146189988,-0.2707139956764877,0.12935810256749392,0.27964390348643064,0.13360904622823,-0.1691292505711317,0.9167930847033858,0.5113331396132708,-0.7470502513460815,0.7651764592155814,0.7041253321804106,0.8592821694910526,0.363005043938756,-0.270094808191061,-0.5944886836223304,0.4140956080518663,0.8390453737229109,-0.6602331018075347,0.12787775369361043,0.6633129245601594,-0.6448938390240073,-0.5222959206439555,0.7347511108964682,-0.506478657014668,0.7519500539638102,-0.26785504166036844,0.016966416500508785,0.5847457842901349,0.3374088015407324,-0.8031196226365864,-0.40141996275633574,-0.6440295134671032,-0.8421143461018801,-0.7769975671544671,0.28449183749035,-0.7035857583396137,-0.6832091836258769,-0.8599469671025872,0.5302217369899154,-0.9162592208012938,0.5600101328454912,-0.9048203607089818,0.068782948423177,-0.15986838564276695,0.056963675655424595,0.14941918570548296,-0.5090622762218118,0.5321588292717934,0.9669052269309759,-0.41881472337991,-0.5222570179030299,-0.6643879334442317,0.19651540368795395,-0.3941661915741861,-0.653584185987711,0.11656963126733899,0.10018261009827256,0.9239666652865708,0.43701417557895184,0.07671622140333056,-0.8825561655685306,0.48074492532759905,-0.5782705899327993,-0.6430146596394479,-0.8063556691631675,0.7043976080603898,0.09994435776025057,0.3618078944273293,-0.6962884906679392,0.6843101438134909,0.08596834354102612,0.9182431865483522,0.13510792003944516,-0.2335453275591135,0.8351029655896127,0.29711930779740214,0.9115802221931517,0.3347569960169494,0.11907920800149441,0.5617184010334313,0.37453339016065,0.28282089764252305,0.23722958052530885,-0.8061360032297671,-0.5549330203793943,-0.5624185693450272,-0.6911318972706795,-0.9049688577651978,-0.5559528013691306,-0.7052209656685591,0.23282047174870968,-0.7537759738042951,-0.34230770356953144,0.2541378946043551,-0.8018574439920485,-0.02127272915095091,0.3473704429343343,-0.5227149440906942,0.8902167035266757,0.3987847431562841,0.7964135445654392,-0.20901808561757207,-0.1567736086435616,-0.35241034533828497,-0.34056244464591146,0.46062172017991543,0.19035241240635514,0.7612947057932615,-0.5879988032393157,0.8364435187540948,0.8268202650360763,0.6477380436845124,0.5151114850305021,0.524499025195837,0.9141296716406941,0.28652520943433046,-0.8749452130869031,-0.6329316552728415,-0.19270355254411697,-0.2898262622766197,-0.8818777897395194,0.4303984404541552,0.16118101961910725,0.17236355459317565,0.3500645658932626,-0.040609856601804495,-0.740172743331641,0.7526967120356858,-0.1348657668568194,-0.33936839550733566,-0.07217938965186477,0.9217095971107483,0.9584115571342409,0.7860646406188607,-0.44327875366434455,0.9997006938792765,0.4044217150658369,-0.7435322855599225,-0.47073436342179775,-0.5522457733750343,-0.6067395126447082,-0.7408572635613382,0.5540652833878994,0.19244639994576573,0.07845451030880213,-0.7822912354022264,-0.27058486454188824,0.9340026387944818,0.9534873105585575,-0.8520989054813981,0.5463068685494363,-0.33739689737558365,-0.8844424369744956,-0.8991480451077223,-0.1333963656798005,0.35971063654869795,-0.2640810962766409,0.3107059639878571,0.23676617350429296,0.29651330038905144,-0.8632670207880437,0.344783085398376,0.5952141219750047,0.6864123935811222,0.557491390965879,0.0022256579250097275,0.03370014950633049,0.5226660212501884,-0.6879676976241171,0.2752835131250322,-0.21929840138182044,-0.5790199739858508,-0.6801816835068166,0.3196687693707645,-0.6439308342523873,-0.9299527914263308,-0.7604603520594537,-0.46460583340376616,0.333565860055387,0.8253783313557506,0.7514379480853677,0.8469613906927407,0.2782073919661343,-0.027287842705845833,0.1888643279671669,0.599133278708905,0.7526467475108802,0.027876772452145815,0.04920412739738822,0.2449628976173699,0.3101069489493966,0.4935069028288126,-0.6908557047136128,0.37778683844953775,0.9496040213853121,-0.7381082205101848,0.2384706074371934,0.731612276751548,0.0756515902467072,0.587649158667773,-0.7766827652230859,-0.7850054297596216,-0.32502920972183347,-0.408102969173342,-0.9331222246401012,0.7657529548741877,0.4319765376858413,0.6431280402466655,-0.9242676123976707,-0.20703811757266521,-0.9770852420479059,0.40654937038198113,0.041718860156834126,-0.19711614726111293,0.023493067361414433,-0.3155177957378328,0.46590490685775876,0.429232656955719,0.6007738444022834,-0.5032098325900733,0.4853052347898483,-0.9398837420158088,0.10428156424313784,0.8348544267937541,0.3303904663771391,-0.3296362250111997,-0.13822230277583003,0.7176415310241282,-0.27068138448521495,0.11525343172252178,-0.6398484129458666,0.7583462703041732,0.747778772842139,-0.7123187240213156,0.912070288322866,0.4383155442774296,0.21000162651762366,-0.5014990512281656,-0.0754355457611382,0.14546324033290148,0.808288810774684,0.5982197737321258,0.7253515087068081,0.4666729555465281,-0.13283735234290361,0.8001015782356262,0.9878528299741447,0.29192861588671803,-0.30243667867034674,-0.02499645296484232,0.5574998157098889,0.14061075262725353,0.13556204503402114,0.1287651020102203,-0.9053580868057907,0.6963867894373834,0.49753995705395937,-0.6678604301996529,-0.12818515533581376,-0.3191469837911427,-0.35621197847649455,0.7662677252665162,-0.7722175270318985,-0.29061784874647856,-0.07218488864600658,-0.9304701215587556,0.7902827686630189,-0.9483455209992826,0.9353612074628472,0.0014716004952788353,0.11308074556291103,-0.08443936426192522,-0.3808812778443098,0.5714085302315652,0.1497424622066319,-0.7727183448150754,-0.9905496914871037,-0.5885294089093804,0.5296332868747413,0.12002149596810341,-0.09341192711144686,-0.8457888988777995,0.0009346958249807358,-0.037593287881463766,0.4047556319274008,0.7135761482641101,-0.34654852747917175,0.07941627269610763,-0.33067272510379553,0.11208566464483738,-0.3672614968381822,0.9501690939068794,-0.08304945100098848,-0.7836471470072865,-0.6927226474508643,-0.054721017368137836,0.341340565122664,0.8869629274122417,-0.1095552146434784,-0.05308389291167259,-0.08380947122350335,-0.5531938034109771,-0.06879910128191113,-0.6437167744152248,0.5049406327307224,0.07171658240258694,0.6862255516462028,-0.8283979236148298,-0.5697338376194239,0.9573327386751771,0.3349411953240633,-0.6631850497797132,0.4238992277532816,0.17592505225911736,-0.9879087023437023,-0.10225319862365723,0.0068742395378649235,0.6255662706680596,-0.5576560217887163,0.07764218375086784,0.4737703916616738,0.43209697864949703,-0.4005467798560858,-0.6113035841844976,-0.7197665986604989,-0.012546057812869549,-0.2938766204752028,0.5012747780419886,-0.34648091392591596,-0.038983695674687624,-0.6466986015439034,-0.7371182711794972,0.2526849079877138,-0.32761560566723347,0.7637170189991593,0.4986577876843512,-0.6121323234401643,0.01489237742498517,-0.9380368050187826,0.3434167681261897,0.37441218132153153,-0.18735968740656972,-0.24414577707648277,0.07461788924410939,-0.06981405522674322,-0.9610592480748892,0.7649026848375797,-0.16139333182945848,0.5864576199091971,0.7703896053135395,-0.49471678491681814,-0.9493647450581193,0.10103030782192945,0.9555163094773889,0.08695667143911123,-0.526006783824414,0.9880007477477193,0.8516039340756834,0.9508586307056248,0.7226232509128749,0.01280424976721406,-0.7226971061900258,-0.76573994057253,0.42931131925433874,0.11909094313159585,0.3955811816267669,-0.7547609196044505,0.8562785391695797,-0.832632742356509,0.4458350487984717,0.2900495920330286,-0.09214461874216795,0.13082961924374104,-0.40267092688009143,-0.2733484716154635,0.5210870481096208,0.2286134040914476,-0.10622636415064335,0.4784451429732144,0.6254370133392513,-0.48985298024490476,-0.7545730713754892,0.22287621814757586,0.16626949701458216,-0.7369332192465663,-0.5738878818228841,-0.7735538985580206,-0.8105111955665052,-0.871045408770442,-0.9926949446089566,0.8675327529199421,-0.7433927212841809,0.5897199520841241,0.5176957347430289,-0.7055984241887927,-0.3622009023092687,-0.2988354740664363,-0.025843390729278326,-0.11549342470243573,0.27193432999774814,0.6898092273622751,-0.29029553290456533,0.9999237665906549,0.29230075562372804,0.755266570020467,0.3775089089758694,-0.7868856149725616,0.008831976912915707,0.3035820731893182,-0.5725327376276255,0.6934172413311899,0.7393615981563926,-0.991895648650825,0.6144466232508421,-0.8842299650423229,-0.14984636008739471,0.9284810493700206,-0.3834223044104874,-0.08845284022390842,-0.5828518108464777,0.23686420731246471,-0.16006019013002515,-0.9553864495828748,-0.20694892993196845,0.6063753506168723,0.7024642713367939,-0.3700843807309866,0.27371705044060946,-0.2977616908028722,-0.9984901649877429,-0.7076382264494896,0.8809147090651095,0.390804102178663,-0.7738003791309893,0.6177548663690686,-0.7719667800702155,0.9005960617214441,0.3160770987160504,0.7561634848825634,-0.37143328972160816,0.7113683060742915,-0.9559430424124002,0.06390641070902348,-0.9081779634580016,-0.14967693341895938,0.0884599476121366,-0.7661099820397794,0.9017187296412885,0.456876986194402,-0.45952374301850796,-0.1486014649271965,-0.12797544058412313,0.16766443476080894,0.44788210606202483,-0.326770662330091,-0.3764654812403023,-0.1961636133491993,-0.31738708168268204,-0.5868984614498913,-0.5917630791664124,-0.4858017796650529,-0.950603723526001,-0.09618468303233385,-0.5408136076293886,0.1254797475412488,0.9617924867197871,0.8343436573632061,-0.681937575340271,0.8379248580895364,0.8498567347414792,0.4859941592440009,0.839029788505286,0.8215502281673253,0.2916789106093347,0.42921231919899583,0.4092637933790684,0.7645354722626507,-0.528269843198359,-0.136193981859833,0.8157089608721435,0.20281070517376065,-0.8180756554938853,0.4712374717928469,0.6124902633018792,-0.5189050300978124,0.9113884144462645,-0.26253678323701024,0.41807148931548,-0.3293029428459704,0.40774786891415715,0.3388031548820436,-0.5258566457778215,-0.9227666459046304,-0.6238959426991642,0.8408387852832675,-0.4164642789401114,0.12365649500861764,-0.27427375642582774,-0.45592868980020285,-0.5918342736549675,-0.12905230652540922,-0.15096010128036141,-0.887443623971194,-0.8218741011805832,0.5042168153449893,0.28896335791796446,0.301141201518476,0.4110868447460234,-0.5732369837351143,-0.2876410991884768,0.10223875567317009,0.7937453966587782,0.9097358528524637,0.42777603212744,0.27400941774249077,0.5949898194521666,-0.1904795989394188,0.15704166004434228,-0.17319614021107554,0.1067577269859612,-0.20892158895730972,0.8736553764902055,0.1807101401500404,-0.7177891307510436,0.25448792381212115,0.3704459061846137,-0.8574205138720572,0.9094851547852159,0.10573345236480236,0.5770267099142075,-0.5786597016267478,-0.06527359690517187,0.7921541258692741,-0.29045508336275816,-0.8957709004171193,-0.3474333891645074,0.9136839807033539,0.4824165706522763,0.4902174170129001,-0.39681378984823823,0.798340205103159,-0.6177288452163339,-0.8298269640654325,0.4607956181280315,0.7880335543304682,0.21812626533210278,0.2771209697239101,-0.004006942268460989,0.16063423128798604,-0.08058060007169843,0.5511641381308436,-0.07351868413388729,0.3242827686481178,-0.9110686974599957,-0.18987267324700952,-0.06572835985571146,0.9302260992117226,0.9753616466186941,-0.08103495789691806,-0.8983721770346165,0.8250411306507885,0.6432372867129743,0.3475531004369259,0.7286276984959841,0.9901523413136601,-0.6444502775557339,-0.7544444757513702,0.772516556084156,0.07853618636727333,0.9925948181189597,0.38688400853425264,0.11795251769945025,0.25730180460959673,0.35005596838891506,0.7925725257955492,-0.9076005811803043,0.8270897003822029,0.6853965064510703,-0.11654614889994264,0.0043046073988080025,0.40760404895991087,-0.8309842990711331,0.8848443576134741,-0.1767788426950574,-0.823351884726435,0.37662139628082514,0.3360136281698942,0.37786766700446606,0.43322222074493766,-0.5936408941633999,-0.8183283167891204,-0.9071907852776349,-0.48366891872137785,0.8010431858710945,-0.56678213365376,-0.9680264396592975,-0.7776764603331685,0.12454432481899858,0.9048238168470562,0.34929513977840543,-0.3238139795139432,0.6887156218290329,-0.6731574707664549,0.9419913282617927,0.5330701475031674,0.18840295588597655,-0.2828462887555361,0.7529709320515394,0.15942381555214524,-0.8509774846024811,0.7050982411019504,-0.5855513941496611,0.10381557419896126,-0.48166029062122107,-0.9593626717105508,-0.6986398897133768,0.27125479094684124,0.2840066682547331,0.7797727053985,0.8323251432739198,-0.9852325352840126,-0.36276277527213097,0.8483583545312285,-0.32130844751372933,0.29967324435710907,-0.8082473091781139,-0.7685032021254301,-0.08426906727254391,0.9877612763084471,0.32352769700810313,-0.49240793427452445,-0.21676582843065262,-0.14123083045706153,0.5870125503279269,-0.21194511745125055,-0.9623436718247831,-0.4477662658318877,0.2602509227581322,-0.25872517051175237,0.19572735577821732,-0.5491767753846943,0.2011184706352651,-0.311843893956393,-0.17412461480125785,0.8465830865316093,0.819131859112531,0.40031918277963996,-0.4812395703047514,0.58395877154544,0.10857860464602709,0.37948445323854685,-0.01803797110915184,0.6651761955581605,0.07683751545846462,0.7288654334843159,-0.005210781004279852,-0.10229177633300424,-0.7007125839591026,-0.654819066170603,0.2840634686872363,-0.9531675553880632,0.8463617791421711,-0.9664429607801139,0.7705321321263909,-0.7610002220608294,0.8497789246030152,-0.9519479018636048,0.7776206121779978,0.04773229220882058,0.27596524730324745,0.17688297992572188,0.08924369001761079,0.2741418769583106,0.24798538396134973,-0.9825557237491012,0.7521761963143945,0.9107207986526191,0.3734402311965823,-0.48056564247235656,-0.013223837595432997,-0.18672630656510592,0.671824281103909,0.8586144181899726,-0.577379169408232,-0.12681001564487815,-0.09354304568842053,0.04615896474570036,0.8413746473379433,-0.05550973257049918,0.5971250161528587,-0.44544863142073154,0.08571876771748066,-0.11108807427808642,-0.0535841416567564,0.8500705775804818,0.6159456348977983,0.7550620664842427,-0.5673069935292006,-0.14278104295954108,0.7400351581163704,-0.5732658095657825,-0.9845531578175724,-0.5084788138046861,-0.9576771655119956,0.43329362431541085,-0.0924210543744266,0.4008391834795475,-0.21672248281538486,0.7552788956090808,-0.6696218638680875,0.13998155714944005,-0.06955850264057517,0.8042064248584211,-0.6525207464583218,-0.6494825882837176,0.8497676136903465,-0.4265652671456337,0.6066533117555082,-0.5093163726851344,0.46528621716424823,0.5816673142835498,-0.8789166933856905,-0.4838663241825998,0.29987119464203715,-0.5215203682892025,-0.6031290083192289,-0.24410296324640512,-0.983037618920207,0.6067393226549029,0.8974403883330524,0.4351134239695966,-0.262715517077595,-0.3344727489165962,-0.8696509441360831,0.49503999948501587,0.06246936600655317,0.6304229204542935,0.6967638186179101,-0.619991541840136,-0.23666422115638852,-0.11685571726411581,0.40944979013875127,-0.6035808115266263,-0.04233967000618577,0.3743863166309893,-0.09628550382331014,-0.2859185761772096,-0.11030085384845734,0.0002827746793627739,0.9156045303680003,-0.11598289711400867,-0.5046815732493997,-0.19289051415398717,-0.9671217398718,-0.3025456494651735,-0.6954945079050958,-0.75219138385728,-0.831306105479598,0.20872042002156377,-0.6606849599629641,-0.7199746542610228,0.13019560324028134,0.5024152314290404,0.12077462952584028,-0.6344887996092439,0.5005681016482413,0.9791870615445077,0.3780889417976141,0.6616041911765933,0.4057548507116735,-0.5744909117929637,-0.47772875986993313,-0.03545962926000357,0.19674087641760707,0.4854673375375569,0.8100276519544423,0.17777122650295496,0.3851823848672211,0.18992572836577892,-0.10630830097943544,-0.9798076162114739,0.24372629029676318,0.872897588647902,0.3819327624514699,0.7284011826850474,0.8297480205073953,0.8457824578508735,-0.9539988422766328,0.5304650045000017,-0.2123882994055748,0.17432902054861188,-0.44413090124726295,0.05993618303909898,0.21971399849280715,-0.3309609107673168,0.13739638589322567,-0.3738322723656893,-0.8408115357160568,-0.9173018918372691,-0.5236848364584148,-0.1302601066417992,0.3046106151305139,0.9405858954414725,-0.008576573804020882,-0.3637307211756706,0.39322762191295624,-0.2421075184829533,0.45683130249381065,-0.01769468281418085,0.639124222099781,0.7674463042058051,-0.3858764097094536,0.9547378816641867,-0.3283924055285752,-0.12246828246861696,-0.5527305761352181,-0.9104701564647257,-0.1376367248594761,-0.5817605732008815,-0.7388324369676411,0.8034733766689897,0.9872336257249117,0.27265048306435347,0.680507134180516,0.32291301246732473,0.99287801515311,0.2425772394053638,0.33853934006765485,0.44212628109380603,-0.9751129038631916,-0.14381234673783183,-0.19197553163394332,-0.07082143006846309,-0.15987177658826113,0.4042166075669229,-0.9338887706398964,0.7352754441089928,-0.7517018117941916,-0.3328253077343106,-0.09739841148257256,-0.5992144863121212,0.9654425880871713,0.5636878227815032,0.38703771959990263,0.07603076146915555,-0.5313590364530683,-0.23400278948247433,-0.21462932974100113,-0.018337417859584093,0.4427061462774873,0.4875259934924543,-0.06385227758437395,0.1269463561475277,-0.7485415325500071,0.7662100554443896,0.6599202705547214,0.21506454097107053,0.9687786852009594,0.5666272072121501,0.7338464981876314,-0.785053332336247,0.4883595248684287,-0.858555861748755,0.4864067514427006,0.9768386050127447,-0.08926701126620173,0.2859592200256884,-0.17252459283918142,0.7575223157182336,-0.19035893213003874,-0.475115196313709,0.7037668148986995,-0.37255412759259343,-0.3873507441021502,-0.8800143185071647,-0.6424827254377306,0.3147942894138396,0.7348348647356033,-0.8960553822107613,0.12665343889966607,0.7126703639514744,0.8546460107900202,0.1024630288593471,0.40498975198715925,0.622287580743432,-0.6195435910485685,-0.3281634817831218,-0.1381946848705411,0.2488779933191836,0.11439998680725694,0.6613328973762691,0.34182240115478635,0.34576600743457675,-0.8633536919951439,0.8169345930218697,0.34352433774620295,-0.787754031829536,-0.2090070373378694,-0.3130511059425771,-0.600866770837456,0.9384403158910573,0.1766283791512251,-0.6445976090617478,0.9671086142770946,-0.05831722030416131,-0.26733218459412456,-0.06965625751763582,-0.3865499091334641,0.5619437266141176,0.7179368548095226,0.7638509306125343,-0.3214150960557163,-0.06194192171096802,0.229802078101784,-0.2575204037129879,-0.3125146250240505,0.9614597023464739,0.4609551215544343,0.3100662278011441,0.5150335682556033,-0.7701398376375437,-0.6004796004854143,0.638814146630466,-0.9680246971547604,0.7162933782674372,0.5882104821503162,0.7271497715264559,0.626587470062077,0.14484106376767159,0.20698477048426867,-0.6745683145709336,-0.5622560353949666,-0.4730762648396194,0.2851803828962147,-0.5019324123859406,0.23156831273809075,0.2015662002377212,-0.6447475994937122,0.5358150736428797,0.32068226812407374,0.48037837725132704,-0.26531713968142867,-0.2654568129219115,-0.3085611262358725,-0.6001532766968012,0.31543946312740445,-0.18108150456100702,0.21108510065823793,0.4301050021313131,0.7456171200610697,0.4942976920865476,0.3396493149921298,-0.5289400196634233,-0.29150132136419415,-0.5164899448864162,0.1882162243127823,0.5898453798145056,0.0587820396758616,-0.8239487484097481,-0.1370602399110794,-0.6467534261755645,-0.0197001239284873,0.11578214121982455,-0.8171692909672856,0.009256866294890642,0.04124549776315689,-0.175506841391325,0.7676031519658864,0.6068232343532145,0.6925284932367504,0.5136903757229447,-0.22728112060576677,-0.681085258256644,-0.9351783166639507,0.05572601454332471,0.104284284170717,0.07060563005506992,-0.7320643290877342,-0.5014202566817403,0.2789598451927304,-0.4823656929656863,0.2829103241674602,0.5585759822279215,0.783816983923316,0.40186965791508555,-0.25840331008657813,0.2601109901443124,-0.3289992152713239,0.10674537438899279,-0.5456979679875076,0.29130544839426875,-0.9612063802778721,0.5149990171194077,-0.43804910499602556,-0.9592894013039768,0.8903509010560811,-0.35592632414773107,-0.07058372441679239,0.1256592981517315,0.8710665213875473,-0.589484067633748,0.3095609461888671,0.16377556044608355,-0.6961649116128683,0.47358400700613856,-0.2895066807977855,0.5887380680069327,-0.8976194164715707,-0.09228856908157468,0.47157960571348667,0.33616017643362284,-0.07451895484700799,-0.3014243016950786,-0.026294831186532974,0.6899323174729943,0.49453174136579037,-0.06922186072915792,-0.9661750928498805,-0.028257780708372593,-0.7858013901859522,0.8451643288135529,0.8269380596466362,0.15822884254157543,-0.957885857205838,0.9292189860716462,0.18507720762863755,0.2903958186507225,0.37350155506283045,0.06667099334299564,-0.2636494031175971,0.5500149391591549,0.9155644085258245,0.28889479488134384,-0.5407906887121499,-0.7149138813838363,0.5968528455123305,0.5293637253344059,0.4695007046684623,-0.13575348909944296,-0.5133130415342748,0.20864025736227632,-0.3591679772362113,-0.20678231259807944,-0.9807451711967587,0.35383766051381826,-0.5556927663274109,-0.7191986870020628,0.8813386014662683,0.5662608700804412,0.7164774765260518,0.006809574086219072,-0.4345746757462621,0.23599463608115911,-0.890134013723582,-0.14299265900626779,0.5939992647618055,-0.8810022193938494,-0.318679419811815,-0.5788432527333498,0.32241142680868506,0.775744782295078,-0.7438446157611907,-0.8554960256442428,0.34709187457337976,0.23067816672846675,0.4676709286868572,0.44258696492761374,0.3304543956182897,0.33997886162251234,-0.7387838731519878,-0.5965760592371225,0.9309809939004481,0.9098868262954056,0.32808726700022817,0.721676048822701,0.6876913346350193,-0.6403924478217959,-0.7661411915905774,-0.45057310443371534,-0.10802757972851396,-0.1772595946677029,-0.5260324911214411,-0.36718233954161406,-0.7715560276992619,0.8041254039853811,-0.029210033360868692,0.8135174494236708,0.797867039218545,0.40285481233149767,0.35385670606046915,0.5217693555168808,-0.9105178294703364,-0.7896074750460684,0.9153416650369763,-0.8307161326520145,0.5020759608596563,0.5086456891149282,0.8645508508197963,-0.747423134278506,-0.6956363627687097,0.46150536090135574,0.5345847518183291,0.7147291819564998,-0.8009340758435428,0.004325320944190025,-0.17198586417362094,-0.7232153210788965,-0.9959051557816565,-0.016468628775328398,-0.8640963337384164,-0.6963071599602699,0.06426571402698755,0.6810719901695848,0.09916741726920009,-0.46264070412144065,0.430237852036953,-0.12696612905710936,0.9864214695990086,-0.09080679807811975,0.7494896077550948,0.6880125058814883,-0.5919908676296473,0.22986667277291417,-0.6990436865016818,-0.4202731060795486,-0.36526389326900244,0.9310197299346328,0.9844589671120048,-0.45322109246626496,0.08659554412588477,-0.1266692914068699,0.4529886869713664,0.4637797032482922,-0.2956096385605633,0.3194667431525886,-0.3821129663847387,0.3096851692534983,0.4602411948144436,-0.9514674749225378,-0.987707631662488,-0.5814487021416426,0.3593343016691506,0.6232089991681278,-0.36408399511128664,0.8016794370487332,0.3631211295723915,0.17178355297073722,0.9442534190602601,-0.7175890700891614,0.6577641987241805,-0.9854450058192015,0.625892193056643,0.9770060554146767,-0.412432957906276,0.3303289758041501,0.1836296897381544,0.056340723764151335,-0.9047063984908164,0.8866132260300219,-0.25178311858326197,0.46907852916046977,0.4234447870403528,0.8055777247063816,-0.2823206279426813,0.23258578730747104,-0.14448119094595313,0.516926052980125,-0.5274180392734706,0.8535666544921696,0.7989011434838176,0.9241619589738548,0.43825193401426077,-0.29913414968177676,0.42855256563052535,-0.507787044160068,0.38752116868272424,0.36143438844010234,-0.32543693762272596,-0.7111838567070663,0.062762635294348,-0.5294662183150649,0.8838391699828207,-0.36906677624210715,0.37617967976257205,0.6070031276904047,-0.6132575166411698,0.25361507572233677,-0.3996640224941075,-0.2909048325382173,0.353191870264709,-0.8660245151259005,-0.1702286545187235,0.19283332163468003,-0.6684720157645643,-0.5908347917720675,-0.3278844584710896,-0.19107522862032056,0.31904185097664595,-0.195752979721874,0.7456159139983356,0.781148144043982,0.16639220621436834,-0.8771718670614064,-0.5838876189664006,0.10547594632953405,0.22452164208516479,-0.6075544599443674,-0.5961664724163711,0.42982501070946455,-0.05541170435026288,0.47560896864160895,0.1195942903868854,0.9122482840903103,0.9811804979108274,0.1991341426037252,0.7717783753760159,-0.8889085152186453,-0.5333013678900898,0.9816854037344456,0.12625771714374423,0.472141242120415,0.4240534193813801,-0.6774294548667967,-0.02742828242480755,-0.8855206845328212,0.20787300495430827,0.6010793163441122,0.6969495546072721,0.7235688623040915,0.06292697135359049,-0.4433912532404065,-0.892370346467942,-0.9943879912607372,-0.9769797162152827,-0.9261381048709154,-0.41523171169683337,0.5526092364452779,0.7488384642638266,-0.693374099675566,-0.7179004210047424,0.18157950602471828,0.30509811732918024,0.661412640940398,0.29170245910063386,0.6094834986142814,-0.9993123202584684,0.7396845887415111,0.036396536976099014,0.699388216715306,0.9259202810935676,-0.3920976696535945,0.01001554960384965,0.033274137414991856,0.5383876790292561,-0.3024033852852881,-0.3005996928550303,0.453077441547066,-0.44988853903487325,0.1677432069554925,0.18538923794403672,-0.5462538651190698,0.35520942555740476,-0.19370721094310284,-0.7366759763099253,-0.4930128464475274,0.27014434803277254,-0.23376853205263615,-0.9909960278309882,0.09588568191975355,0.36973686423152685,-0.33928388403728604,-0.5138476695865393,-0.5050363149493933,0.33102336898446083,-0.8234581183642149,0.778785515576601,0.20999496476724744,0.1381292287260294,0.49941006023436785,-0.8327064169570804,0.964180224109441,0.7490530572831631,-0.6369205913506448,0.8748533967882395,-0.49242978543043137,-0.48264862317591906,-0.7476705461740494,0.6862047920003533,-0.5673819151706994,0.9255851902998984,0.8055740180425346,-0.13590286439284682,0.4139858861453831,0.8960401611402631,-0.7126023145392537,-0.1164506059139967,-0.9203282105736434,0.2779205529950559,0.7081029787659645,0.00346789276227355,-0.9074783832766116,-0.6126915202476084,0.12449707230553031,0.6841706936247647,0.19991852063685656,0.44251280510798097,-0.07742974860593677,-0.48106501903384924,-0.07687819469720125,-0.8704877197742462,-0.9465430481359363,-0.23641570936888456,0.0390384360216558,-0.3669319022446871,0.6703221360221505,-0.01987071055918932,0.5864518652670085,0.5138924932107329,0.6215192442759871,-0.6231380053795874,-0.7711146315559745,0.25668435730040073,0.9550192495808005,0.8098242534324527,0.5570154264569283,-0.9818266788497567,-0.7089475532993674,0.9280484803020954,0.6828672839328647,0.8701107669621706,-0.998294438701123,-0.5459230821579695,0.8733976697549224,-0.8024023370817304,0.5832550297491252,0.521241937763989,-0.03678374597802758,0.3748491173610091,-0.19928319193422794,-0.8059728527441621,-0.9334623403847218,0.18258957983925939,0.585692869964987,-0.16147758765146136,-0.24937034351751208,0.07722771679982543,-0.07769457995891571,0.15210603876039386,-0.33081802632659674,-0.8218724927864969,-0.6518872873857617,-0.2166668209247291,0.8029761682264507,-0.14779231464490294,-0.5578668937087059,0.40684769954532385,-0.3496794607490301,0.33662996208295226,0.6611516610719264,0.8087919712997973,-0.7421303507871926,-0.6058081379160285,0.2202768917195499,0.8664640574716032,0.0874108630232513,-0.13723934954032302,0.7416450059972703,-0.8889057268388569,0.959390259347856,-0.08667309721931815,-0.780098948162049,0.9483405807986856,0.21862262254580855,-0.20954968966543674,-0.7705962988547981,-0.6506057144142687,-0.872252712957561,-0.25290291709825397,-0.8228231281973422,-0.35439377278089523,-0.4197748890146613,0.6836702614091337,0.9894154742360115,0.8620087052695453,0.04993154667317867,0.8464121967554092,0.2787225991487503,-0.014044206123799086,-0.39018867118284106,-0.8059172919020057,0.8661416652612388,-0.21283431956544518,-0.863182257860899,-0.40468592941761017,0.9373428081162274,-0.3790352325886488,-0.1367022218182683,0.6169044622220099,-0.4205457428470254,0.33110067108646035,0.18798384768888354,-0.4417828358709812,-0.3558341721072793,0.27129164477810264,0.15364331705495715,-0.2508275220170617,0.055781387723982334,0.7328330744057894,-0.4626018023118377,-0.9810038655996323,0.027588657569140196,0.07256568362936378,0.49259733129292727,0.8526860713027418,0.05121795693412423,-0.6458116821013391,0.051616903860121965,0.38389616226777434,-0.06311378814280033,0.4845632999204099,-0.591396939009428,-0.6957476600073278,-0.02502527181059122,-0.1179644102230668,0.6565702301450074,-0.8015293241478503,0.9321123901754618,0.3816566173918545,0.5913175344467163,-0.17820772295817733,0.5096475081518292,0.19726206455379725,0.39049246860668063,0.14249720610678196,0.4726618197746575,-0.28744056820869446,-0.8310504173859954,0.6510597486048937,0.9366818470880389,0.7885273527354002,-0.5118603375740349,0.9628830668516457,-0.004158712923526764,0.9026286359876394,-0.07533684838563204,-0.6876806966029108,-0.47616065945476294,0.02415266167372465,0.5572349922731519,0.54338065860793,0.39230340952053666,-0.8571587451733649,-0.30903987074270844,0.6716753533110023,-0.3420619647949934,-0.19776628632098436,0.14765432197600603,-0.1508073229342699,-0.7016291758045554,-0.0020331363193690777,-0.5150445667095482,0.4874544134363532,-0.6792389280162752,0.12039654236286879,0.6995744281448424,-0.31292907940223813,-0.3864442906342447,0.846827392000705,-0.9013163903728127,-0.670325671788305,-0.21239284798502922,-0.80757200345397,-0.4412141372449696,-0.8810108532197773,-0.2012291895225644,0.30101905297487974,-0.6828150828368962,0.10433634649962187,0.16476395446807146,-0.012023254297673702,-0.9846926182508469,0.6558735352009535,0.3430858044885099,-0.3689801609143615,0.7846720395609736,0.41368424613028765,-0.7813052656129003,0.9558273679576814,-0.9316473351791501,0.052293768618255854,-0.1558050806634128,0.7329760091379285,0.8144869687967002,-0.2747767176479101,-0.23711331188678741,0.05134641099721193,-0.41873820731416345,-0.5551624721847475,-0.4109516218304634,-0.28908594977110624,0.824958601500839,-0.6663073734380305,0.9389880052767694,0.6991023337468505,0.15624968940392137,0.9354281984269619,0.37519083451479673,0.7358408747240901,0.012114366050809622,-0.1837933580391109,-0.6960317809134722,0.17646751925349236,0.8877236261032522,0.17111177649348974,0.2636341080069542,0.5033993353135884,0.5363507978618145,0.0518751977942884,-0.9625678928568959,-0.10595418931916356,0.8932032599113882,-0.6189542226493359,-0.056238471530377865,0.64073351258412,-0.7413437408395112,0.7284834780730307,0.3221914074383676,-0.6287821754813194,-0.3261051634326577,0.9897167356684804,-0.7640050705522299,-0.5411754408851266,-0.20572013035416603,-0.46505524683743715,-0.4851125772111118,0.8561075455509126,-0.17108866851776838,0.4611476566642523,-0.29939507227391005,-0.44013152178376913,-0.4284428092651069,0.39087817491963506,-0.24712899699807167,-0.7213012911379337,0.09239788865670562,0.8479477241635323,-0.7671924531459808,0.6765222721733153,-0.563437762670219,0.7393082398921251,0.47367186890915036,0.7250610589981079,0.45250013330951333,-0.4810410551726818,0.7542201532050967,-0.8649705075658858,-0.5802362752147019,0.8154002404771745,0.6081918086856604,-0.07033519726246595,-0.12736705364659429,0.4344174745492637,0.22578931553289294,0.5886766584590077,0.6778949382714927,-0.7857661582529545,0.48321041464805603,0.3005628949031234,-0.6247575650922954,0.5570599748753011,0.8366683670319617,-0.634471099358052,-0.015737110283225775,-0.5059315757825971,-0.11348254885524511,-0.027780153322964907,0.023703218437731266,0.4047938366420567,0.6583926123566926,-0.7727897050790489,0.7943353564478457,0.765387493185699,0.3978447341360152,-0.7580864718183875,0.7513163792900741,0.7777158687822521,0.6241924175992608,0.33628052938729525,0.4391888487152755,0.4301093011163175,0.8575308904983103,0.3311040592379868,0.03025147132575512,0.29401383409276605,0.7799895997159183,0.38212453154847026,-0.750306636095047,-0.5777224255725741,-0.9659958174452186,-0.8966086157597601,-0.04686520388349891,0.8267318536527455,-0.7394659849815071,0.5882486831396818,-0.8403956368565559,0.14148223120719194,0.5806538560427725,0.391599731054157,0.937269002199173,-0.7217987580224872,0.6806563129648566,-0.20527803199365735,0.11555489897727966,-0.5052766604349017,0.6782180871814489,0.7310308297164738,0.39255600655451417,-0.09238239098340273,-0.6309445374645293,0.7662103124894202,0.3655326860025525,-0.29942981572821736,-0.002310499083250761,-0.8334161536768079,-0.6144091957248747,-0.6564147365279496,0.8152605383656919,0.4735437985509634,-0.9294330356642604,-0.599938066676259,0.812535397708416,-0.7639305745251477,-0.06482329871505499,-0.32136642560362816,0.5895854104310274,0.3268724177032709,-0.29699131147935987,0.15192183619365096,-0.8631414822302759,-0.4989637788385153,-0.8368717422708869,-0.26808627881109715,-0.0840662862174213,0.5107433572411537,0.7305027404800057,-0.49533878825604916,0.6784591102041304,-0.3418235550634563,0.24487300962209702,0.5739744086749852,-0.2194177471101284,0.1587743260897696,-0.7624043491668999,-0.05347783351317048,-0.1290360614657402,0.9750652341172099,0.3376337797380984,0.08022357011213899,0.621818789280951,0.04132873425260186,-0.4312010216526687,0.2565427157096565,0.6856275359168649,0.2509124600328505,-0.5791115160100162,-0.903122206684202,-0.9056786806322634,0.11926153860986233,0.9997530863620341,0.2994207735173404,0.4765621228143573,-0.6014096396975219,-0.4273579502478242,0.8081586132757366,0.009686258155852556,0.6503587439656258,0.17082444811239839,-0.28744655940681696,0.040592729579657316,0.3253224389627576,0.6892871935851872,-0.2896926826797426,0.31129226740449667,-0.7894563456065953,-0.44877539202570915,0.5179278953000903,0.9625041373074055,-0.7173771988600492,0.6003552242182195,0.529962039552629,-0.8877019570209086,0.47816644236445427,0.9822030286304653,0.08399583399295807,-0.16891903337091208,-0.977753893006593,0.02921593701466918,0.7074428177438676,0.11518548242747784,0.814836238976568,0.7388699045404792,-0.4969307938590646,-0.3961345669813454,-0.7219665725715458,0.25296907406300306,0.12871782667934895,0.6202761097811162,0.46703837625682354,-0.582404921296984,0.5387543439865112,-0.28566023567691445,-0.2004270893521607,-0.2819494088180363,0.7406492508016527,-0.97183494316414,0.6550349937751889,0.5133051057346165,-0.7124128094874322,-0.7135385032743216,0.37956914072856307,0.6344301775097847,-0.20144238509237766,-0.5057455282658339,0.08398856036365032,0.863581673707813,-0.07887819549068809,0.030599321238696575,0.9252688405103981,-0.32278018863871694,-0.45996156288310885,-0.5430014324374497,0.3493209513835609,0.5694813085719943,0.3908168929629028,0.7907801102846861,0.06356779811903834,0.06641986360773444,-0.22591723687946796,-0.17149606673046947,-0.4943303856998682,-0.16080340230837464,-0.3919479576870799,-0.0037059644237160683,-0.9216666393913329,-0.5132075967267156,0.37421394046396017,0.6886336808092892,0.5151608511805534,0.3552648411132395,0.5058183446526527,-0.2849000762216747,0.5510543957352638,0.8055089386180043,-0.7661904045380652,-0.5404606154188514,0.054726554080843925,0.16316477861255407,0.3339347755536437,0.6564774569123983,0.3665805892087519,-0.5669006244279444,-0.711167891509831,0.04928993200883269,0.28557576006278396,-0.7003534869290888,0.19972374197095633,-0.2567773638293147,-0.7776035545393825,0.9070360092446208,0.3339772894978523,0.5503343143500388,0.41424671560525894,-0.46616723015904427,-0.17251573968678713,-0.38663470558822155,0.8017958984710276,0.30513948015868664,0.4378849766217172,0.5743524492718279,0.0786663074977696,-0.8603403866291046,0.82773073669523,0.7626349995844066,0.8309785914607346,0.7881719591096044,0.2364856693893671,0.5624156799167395,-0.8922016867436469,0.9998414693400264,0.06007607653737068,-0.7663454334251583,-0.050613720901310444,-0.9077865923754871,-0.6531772650778294,-0.48925724998116493,0.3901321738958359,-0.35092853009700775,-0.49675920978188515,0.44420273741707206,0.07736170012503862,-0.1393124759197235,0.6233255052939057,0.8165838592685759,0.4550375258550048,-0.7312601492740214,0.4524196330457926,0.0858173412270844,-0.28438758477568626,0.8218007395043969,0.458622707054019,-0.573121000546962,-0.2937504639849067,0.9317499664612114,0.14368039323017,0.31377049582079053,-0.49828834971413016,0.4013677975162864,0.009929862339049578,0.9235044303350151,-0.5779172508046031,-0.19059863686561584,0.8944061822257936,-0.08508150698617101,0.12914295122027397,0.9056073799729347,0.6474540061317384,0.6046139751560986,0.6169065604917705,0.3251101244240999,0.11294394498690963,0.14979001739993691,0.20567741245031357,0.09603243600577116,-0.5629672301001847,-0.343258008826524,0.10998828150331974,0.06817845813930035,0.007555637042969465,0.08301941445097327,-0.7638462684117258,-0.928310879971832,-0.1858528503216803,-0.24919259501621127,-0.4599641147069633,-0.11525087431073189,-0.7887750808149576,-0.45520019019022584,0.5504722259938717,-0.7101082061417401,0.5871077161282301,0.7502207783982158,-0.49578587617725134,-0.8110074196010828,0.43242953019216657,-0.6618073498830199,0.6265967297367752,0.557658014819026,-0.09309747768566012,0.7834260193631053,-0.09928524121642113,0.7986160754226148,0.2444265028461814,-0.5797164225950837,-0.33659816766157746,0.02683703973889351,0.6084913234226406,0.07079010363668203,-0.9609222612343729,0.5463152253068984,0.25206075981259346,-0.23133176565170288,-0.36192952608689666,-0.4739549304358661,0.8391775558702648,-0.6592996506951749,-0.0955433938652277,-0.1810571365058422,0.767749048769474,0.9152898695319891,-0.7433911678381264,0.4594155251979828,-0.5718556260690093,-0.7944788290187716,-0.2692883932031691,-0.09656748827546835,-0.009179415181279182,0.27773288264870644,-0.31794629245996475,0.31383838690817356,0.7972128302790225,-0.2062004148028791,-0.8520043804310262,-0.18023208808153868,0.5560389845632017,-0.3640812812373042,0.7055070204660296,0.09921147907152772,0.6591345416381955,0.6483711339533329,0.27161551965400577,0.3850524011068046,0.2864235145971179,0.6386853354051709,-0.007762329652905464,-0.932932814117521,0.15182678634300828,0.8882581633515656,0.10864768689498305,-0.8770697261206806,0.4443839117884636,0.9724786737933755,-0.5023359921760857,0.29429171280935407,-0.6387160606682301,0.6955050360411406,0.23206870956346393,-0.3824648908339441,0.847382016479969,0.1958065372891724,0.522473931312561,-0.47606840496882796,0.28895323630422354,-0.8630384262651205,0.3418069048784673,0.12240963894873857,0.9248778661713004,0.11471434310078621,-0.7881133686751127,0.533260805066675,0.9625777308829129,-0.06823985977098346,-0.8874485897831619,0.6988912997767329,0.7458671308122575,0.962864545173943,-0.1018946380354464,-0.40424136398360133,-0.2246532579883933,-0.2846276103518903,-0.05701950937509537,-0.27020169608294964,-0.5435915752314031,-0.053439339622855186,0.988820964936167,0.24230205360800028,0.9537647096440196,0.5458393557928503,-0.5930609558708966,-0.42502645310014486,-0.027718146797269583,0.40495333541184664,0.1931630577892065,-0.6239502127282321,0.2387456470169127,-0.23939537350088358,0.5573306498117745,-0.6076586619019508,-0.0967229981906712,0.7511310707777739,0.26389172254130244,-0.5255375187844038,0.27164693223312497,-0.17442977568134665,-0.9645124142989516,0.9394839811138809,-0.9278139211237431,0.6696774689480662,-0.2290958957746625,0.29133070493116975,-0.7614005780778825,-0.9296787460334599,0.48487215815111995,-0.8966636620461941,-0.5464368076063693,-0.3528892113827169,-0.13935019308701158,0.6656154482625425,0.948246103245765,0.6500316364690661,-0.6054852423258126,-0.23522396525368094,0.309761643409729,-0.35706151835620403,-0.5587810892611742,0.9781265985220671,0.25722947251051664,0.3243541601113975,0.7359974980354309,0.043995197396725416,-0.6714914906769991,0.09121228707954288,-0.7758857533335686,-0.2841493543237448,-0.662532682530582,0.43903573974967003,0.8003313597291708,0.6655251644551754,-0.5543589610606432,-0.7095137047581375,-0.5985257178544998,-0.9868116090074182,0.737836692482233,0.05203502345830202,0.2708170749247074,-0.2177742230705917,0.3877932601608336,0.9727684278041124,0.45583667885512114,0.8449392993934453,0.4969944627955556,0.0714123616926372,-0.5773412841372192,0.06012114556506276,-0.4578341394662857,0.12471445370465517,-0.6428460902534425,-0.5259268954396248,0.6627402454614639,-0.05469846073538065,0.47296753618866205,0.04954043263569474,-0.06247627129778266,-0.7666033604182303,0.8712634877301753,-0.09738627960905433,-0.18494143430143595,-0.2535188542678952,-0.36878561275079846,-0.47116299206390977,-0.9738975963555276,-0.640515158418566,-0.6685223798267543,0.3687915187329054,0.7507814262062311,-0.7010870524682105,0.8288125372491777,-0.9317483776248991,0.6830608411692083,-0.2824095501564443,0.8350405059754848,-0.11761186085641384,-0.7951402021571994,0.5134747033007443,0.4023932213895023,-0.5229648556560278,0.9296279661357403,-0.3710804800502956,-0.8291726750321686,-0.9968493678607047,-0.49773802142590284,0.5348751801066101,-0.546604273840785,-0.021462583914399147,0.55550173856318,-0.945020365063101,-0.9010011563077569,-0.19201197661459446,0.08055227808654308,-0.9335062797181308,0.22281488263979554,0.34180877497419715,0.9286646218970418,-0.5990904630161822,-0.7037955448031425,0.22235956229269505,-0.9452776708640158,0.28269034437835217,-0.1336474223062396,-0.390432798769325,-0.2621942786499858,-0.5992483319714665,0.10068459762260318,-0.2603259482420981,-0.041214574594050646,-0.2611975930631161,-0.557117011398077,-0.7255353373475373,0.28262584935873747,0.8925421037711203,-0.09511798620223999,0.7606720789335668,-0.6204010313376784,0.9923434378579259,-0.24909443873912096,0.35455673141404986,-0.7744870474562049,-0.5394344925880432,-0.4834789503365755,-0.1846615895628929,-0.4005113518796861,-0.6629391829483211,-0.08997866837307811,0.6852446896955371,0.7009313856251538,0.9944671750999987,0.8002582248300314,0.23883720394223928,-0.4279420403763652,-0.5333258640021086,0.5462315059266984,0.5377683872357011,-0.44388694036751986,0.8497436046600342,0.02506816666573286,-0.7552484381012619,-0.5111117586493492,0.9232695722021163,0.4400423779152334,-0.19026457471773028,-0.5973167801275849,-0.5843405500054359,0.5138042382895947,0.3551527773961425,0.9654669156298041,-0.6131272846832871,-0.07306365994736552,0.7669545989483595,-0.44466771744191647,-0.46138231782242656,0.5816745730116963,0.027321020606905222,0.1204727622680366,0.6661306358873844,-0.36086412984877825,0.6298932665959001,0.6197236743755639,0.8885334902442992,0.2805334394797683,-0.9437963888049126,0.2854886348359287,-0.9868137980811298,0.7509849509224296,-0.5045469966717064,0.00441621383652091,0.9837425416335464,0.8407322308048606,-0.440736370626837,-0.3197482288815081,-0.9027708750218153,0.6672480292618275,-0.29834792064502835,-0.11551941512152553,-0.619971486274153,0.012964583467692137,-0.39778808364644647,0.9244249914772809,0.037579433992505074,-0.8187236082740128,0.6630713287740946,0.5444172364659607,-0.6530266529880464,-0.20245946571230888,-0.31107640033587813,0.4496566466987133,-0.37572339177131653,-0.35839003836736083,-0.9237409168854356,-0.36990826670080423,-0.7836499330587685,-0.06141235865652561,-0.46198208443820477,0.6274590566754341,-0.8711444307118654,0.7647405872121453,-0.185816606041044,-0.2507693050429225,0.09295365447178483,0.09965184051543474,-0.7823322610929608,-0.6011332948692143,0.2385420803911984,0.8258712757378817,0.3424116373062134,-0.03887754259631038,0.1531499265693128,0.6784553141333163,0.5355873131193221,-0.566872239112854,-0.06707484694197774,-0.8442197665572166,0.6594730648212135,0.46632170770317316,-0.36458744388073683,0.08008501445874572,0.44980822037905455,0.8782652104273438,0.30627290811389685,-0.6804328844882548,-0.4150245296768844,-0.1329752393066883,0.9957320317626,0.2851052628830075,-0.6533570336177945,0.18629803229123354,0.4329981510527432,0.42342394357547164,0.5746700246818364,-0.7566386102698743,-0.7721247095614672,-0.7964946860447526,-0.32249008817598224,0.2851054212078452,0.3817955954000354,-0.2759334906004369,-0.418511254247278,0.5272038765251637,0.9204771551303566,-0.5011007077991962,0.9740578467026353,-0.30189356999471784,-0.004038856364786625,0.6007495946250856,-0.869606226682663,0.15936307236552238,-0.33542215591296554,-0.37897021044045687,0.977690199855715,-0.18675821460783482,0.7825792403891683,0.6532930927351117,-0.37617634143680334,-0.7272476074285805,0.5826240302994847,0.139728176407516,-0.641059831250459,-0.23858475172892213,0.5762058272957802,-0.23941541882231832,0.9694431284442544,0.2672545895911753,0.9737949762493372,-0.8996577756479383,-0.5215860018506646,0.7810058095492423,-0.06948304967954755,0.016815482173115015,0.27613732405006886,0.7624072446487844,0.9131216080859303,0.4114185757935047,0.8032496026717126,-0.4081028844229877,0.2638042294420302,-0.08131628716364503,-0.7876900732517242,0.704748279415071,-0.23245500586926937,0.2332737040705979,-0.4299913910217583,-0.17648838507011533,0.09894980071112514,0.009523177985101938,0.5396246029995382,0.20750264218077064,0.9657832733355463,0.7393314000219107,0.7524649165570736,-0.002018318511545658,-0.2886865260079503,-0.05991449998691678,0.1666482170112431,0.6124753737822175,-0.10887661669403315,-0.8961575273424387,0.38124396884813905,-0.17546930816024542,0.6793358623981476,-0.8732538414187729,0.0841502258554101,0.404551996383816,0.313927851151675,0.35478661861270666,-0.5928209014236927,0.43990993220359087,0.8402699567377567,0.06008194386959076,0.6708448608405888,0.980874459259212,0.6369052096270025,0.07441121619194746,-0.5650336081162095,0.6469775917939842,0.6843589241616428,-0.860816229134798,-0.3525612293742597,0.707394452765584,-0.7075206385925412,0.33860477386042476,0.45008674962446094,-0.2776422230526805,0.8426260068081319,0.007768785580992699,0.3177657392807305,0.9799541090615094,-0.7886452013626695,0.006892024539411068,-0.6095872088335454,0.6783441980369389,-0.024258613120764494,0.3310659942217171,-0.9404723350889981,-0.22466303734108806,-0.27980273263528943,0.24414720851927996,-0.26299248868599534,0.8525746646337211,-0.942419437225908,-0.30593111040070653,-0.8898316663689911,0.8239415679126978,-0.7523015607148409,0.895266218110919,0.08057710714638233,0.6139760878868401,0.9720010571181774,-0.384461113717407,0.8230009325779974,0.8726471783593297,-0.329195458907634,0.9417279032059014,0.9559749867767096,-0.846693079918623,0.12208778411149979,0.13003680016845465,-0.14692063396796584,-0.021070447750389576,0.4011757830157876,-0.07549778884276748,0.4653187356889248,-0.4263837803155184,-0.29935723962262273,-0.18624070100486279,0.7228763955645263,0.7404211019165814,-0.5613978495821357,-0.49725146126002073,-0.28481196193024516,0.00976258423179388,-0.7037713439203799,-0.1901272633112967,0.393610252533108,-0.23181552113965154,0.692297394387424,0.9703915733844042,0.27367936074733734,-0.01576215587556362,0.9237722712568939,0.6422794037498534,0.06767480447888374,-0.9009006577543914,0.09896866884082556,0.329814740922302,-0.9534095656126738,-0.8193435035645962,-0.9432450737804174,-0.2436438794247806,-0.08162386482581496,-0.751265780068934,-0.6025671525858343,0.4554244759492576,-0.8438292499631643,0.16669937735423446,0.7716154302470386,0.9098765593953431,-0.36378668900579214,-0.9084263797849417,0.8944826619699597,-0.7605341686867177,-0.47457523876801133,-0.7751036272384226,0.12191292783245444,-0.027918123174458742,-0.7822126164101064,0.27288817474618554,-0.8843621634878218,0.4987965039908886,0.7543981191702187,-0.39255011174827814,-0.1159761929884553,-0.8633285923860967,0.13172776624560356,-0.6577759874053299,0.13068996602669358,-0.9690735102631152,0.46815539011731744,-0.2518486175686121,-0.8942184685729444,-0.5426148297265172,-0.42307087825611234,-0.6479164217598736,0.3063963633030653,-0.6649278290569782,-0.48583670100197196,-0.6430605738423765,0.5141637865453959,-0.5620085862465203,0.8172063021920621,-0.3800735967233777,-0.20153125561773777,0.1791513729840517,-0.45017453003674746,-0.09715932374820113,0.3840782819315791,0.3711453126743436,-0.8592460192739964,-0.05461400235071778,-0.013907345943152905,-0.5758961304090917,-0.7172240610234439,0.725182187743485,0.2441126280464232,-0.6541185295209289,-0.9576276037842035,-0.35099568171426654,0.979014958254993,-0.969982408452779,-0.22251890879124403,-0.46867645205929875,-0.6007333272136748,0.5615871488116682,0.5990121490322053,0.8354006386362016,0.9237687825225294,0.9189885137602687,0.21799020003527403,0.970439251512289,-0.5724956872873008,-0.04675147496163845,0.639496969524771,0.5773001699708402,-0.02428113715723157,0.8791832262650132,0.3610306605696678,0.9717253549024463,-0.2795300167053938,0.9184888335876167,0.12558529432862997,0.9565403168089688,-0.539136728271842,-0.52653150819242,0.028267456218600273,-0.44628632348030806,-0.5057812365703285,-0.5439730351790786,-0.3154605613090098,0.28878670558333397,-0.5440496453084052,-0.4186285608448088,-0.7586192926391959,0.2922760075889528,0.9529311321675777,-0.5598574243485928,-0.4389446759596467,0.9331003045663238,-0.5018924144096673,0.6601765463128686,-0.4237728430889547,-0.18541194358840585,-0.443719444796443,0.5596580943092704,-0.19392540957778692,0.5615916470997036,-0.08742684917524457,-0.372396829072386,-0.9286596230231225,-0.7648639301769435,0.9410270103253424,-0.5855871057137847,-0.34243941120803356,-0.9398168656043708,0.46561638824641705,-0.2956100138835609,0.1903794165700674,-0.7768312422558665,0.6105912658385932,-0.4196665813215077,0.6571172894909978,-0.2090428974479437,-0.1895662723109126,-0.7095126351341605,0.27212064526975155,0.9028903734870255,-0.292635649908334,-0.6667581745423377,0.5549442456103861,-0.8491116305813193,0.3826270988211036,-0.45954016130417585,-0.9966166503727436,0.514295463450253,-0.7338834404945374,-0.3723390279337764,-0.48607169883325696,0.8257411890663207,0.49788001412525773,-0.7393017578870058,-0.08700486738234758,-0.7290342068299651,-0.9710393133573234,0.3816198715940118,-0.28807592298835516,0.66711789323017,-0.5244744764640927,0.001385724637657404,-0.8787793554365635,0.17864613514393568,0.6375130154192448,-0.5761218843981624,-0.6632804214023054,0.9370300062000751,-0.165852683596313,0.9085202449932694,0.3649920825846493,0.09513932140544057,0.9454285423271358,-0.6520710466429591,-0.4094021897763014,0.47004680102691054,-0.9101323382928967,0.19402274349704385,-0.17703598411753774,-0.5590062537230551,0.23392777098342776,-0.963840143289417,-0.2606393122114241,0.9208695748820901,0.4957447834312916,-0.8187464531511068,0.9035000666044652,0.08230776805430651,-0.6220105085521936,-0.611174198333174,-0.32920992420986295,0.07826353097334504,-0.7957604289986193,-0.11250159610062838,0.058115162421017885,0.6500644800253212,0.33266111463308334,0.3109316397458315,0.4279922707937658,-0.8941996609792113,-0.7051675939001143,0.1813119393773377,0.8151043965481222,-0.43225821666419506,0.21660503605380654,0.5129134715534747,0.33451872412115335,-0.4292111764661968,0.3852584878914058,-0.1292706849053502,0.8119390229694545,0.03603686671704054,-0.8756604469381273,0.6279745125211775,0.7764432276599109,-0.03830795781686902,-0.6603164244443178,0.4515090938657522,0.4563236376270652,-0.9045622870326042,-0.491396676748991,-0.1370149990543723,-0.6648359540849924,-0.7239472069777548,0.4672194537706673,0.2555927876383066,0.9704011371359229,0.5599009306170046,0.44973314134404063,-0.3135401410982013,-0.19388036336749792,0.5267708827741444,-0.285091248806566,-0.9535420588217676,0.16843097982928157,0.3622178300283849,0.293270259629935,-0.24278758326545358,-0.7525754002854228,0.2264211280271411,0.6892926273867488,-0.02855367260053754,-0.9245186904445291,-0.8327555893920362,0.5282851322554052,0.8238245998509228,0.20416492642834783,0.5608983021229506,-0.5049330596812069,-0.14318855991587043,-0.5466850236989558,-0.9372978638857603,-0.21738387504592538,0.8080624309368432,-0.016990704461932182,0.47490262519568205,0.19270898215472698,-0.7722369879484177,0.010352366603910923,0.18732330622151494,-0.21108574187383056,-0.011794454418122768,-0.3398980447091162,0.5776970451697707,0.20620175870135427,0.7745289388112724,0.13242364674806595,0.4197754464112222,-0.6418759217485785,0.48410517117008567,-0.3233687807805836,-0.6757223187014461,-0.395910179708153,0.23461173521354795,-0.11454917676746845,-0.5582813480868936,0.1513867317698896,0.10763431619852781,-0.8417623010464013,0.6906905486248434,0.26312455302104354,-0.5258858115412295,-0.2773123485967517,-0.4480889174155891,0.1729959617368877,-0.16680106287822127,0.31009861547499895,0.8493445450440049,-0.7206188095733523,-0.4469955265522003,-0.11007428029552102,0.054355548694729805,0.7921615149825811,0.9681875011883676,0.9320143391378224,-0.6303624911233783,0.15606694854795933,0.6803082940168679,0.30405058711767197,-0.7947551445104182,-0.9552089655771852,-0.432942854706198,-0.5337747186422348,-0.7759258775040507,-0.15450708800926805,-0.3906219555065036,0.23592239432036877,0.9026267700828612,0.722992017865181,-0.7263888050802052,-0.32145611196756363,0.4132271888665855,0.2846152316778898,0.873240546323359,-0.13132346887141466,0.4560537403449416,0.1568383490666747,-0.7086407947354019,0.9373996024951339,-0.02117529883980751,-0.2789607970044017,-0.17073627281934023,-0.5364606929942966,-0.665568926371634,0.4410061612725258,0.5738153397105634,-0.5680254441685975,-0.15143055049702525,0.715060768648982,-0.14813009137287736,-0.837803038302809,0.5993416672572494,-0.08654364896938205,-0.5769274886697531,-0.8908398975618184,0.6473902463912964,0.9780416754074395,-0.16976506123319268,-0.15609614923596382,-0.5858688475564122,0.6079623876139522,-0.017473642714321613,0.04971679067239165,-0.9894470954313874,-0.8915818519890308,0.8445985401049256,0.409735890571028,-0.974313254468143,-0.8305051340721548,-0.2813141136430204,-0.38656272552907467,-0.30396698461845517,0.45053634187206626,-0.35102871200069785,0.6843923809938133,-0.768771416042,-0.13311990723013878,-0.6355045675300062,-0.03177041048184037,0.5236529647372663,-0.5385255832225084,-0.5077357864938676,0.998042119666934,-0.4840616942383349,0.23131922399625182,-0.19374912092462182,-0.3861923352815211,0.02612200751900673,-0.2522591087035835,0.37170837074518204,-0.7043026871979237,-0.689951010979712,0.2989549394696951,-0.5561213972978294,-0.9125063810497522,-0.18888714257627726,-0.43115309812128544,0.3294153497554362,0.7462582532316446,0.0376959047280252,0.15259579569101334,-0.8392133135348558,-0.40183527022600174,-0.30099480506032705,0.4213934256695211,0.3564036157913506,-0.701430098619312,-0.061918648425489664,0.8932930054143071,0.4465575134381652,-0.986904508434236,-0.8711736146360636,-0.5503396852873266,0.8069501789286733,0.1812240956351161,-0.9972085943445563,-0.8246550625190139,-0.7436957051977515,0.9084964180365205,-0.025332532357424498,-0.5349772730842233,0.4624682106077671,0.6071471925824881,-0.8756052828393877,-0.43683446710929275,0.8679359769448638,-0.36395187908783555,0.5168302888050675,0.5734017859213054,-0.21143494546413422,0.35060355067253113,-0.3894470897503197,-0.4128506649285555,0.22763144318014383,0.26528957579284906,-0.2791488799266517,0.272914273198694,0.9643332068808377,0.11668222164735198,0.12526771426200867,-0.20194404711946845,0.9671900956891477,-0.8767090328037739,0.4256348041817546,-0.22198230866342783,-0.5855606193654239,-0.5087401503697038,-0.1235783202573657,0.3337846635840833,-0.26202757377177477,0.48466715356335044,-0.9091370608657598,0.19105441961437464,0.09561846498399973,0.10504191555082798,0.3896090192720294,-0.1653208020143211,0.5688380375504494,-0.08021523570641875,-0.6007314212620258,-0.9832810452207923,0.06736701913177967,0.5331763685680926,0.5163474408909678,-0.8635977599769831,-0.6991602210327983,0.534616069868207,0.6534700710326433,0.4143456229940057,0.17132895160466433,0.1714287055656314,0.8103437917307019,0.9999153022654355,0.9351904261857271,0.7625386854633689,0.932413175702095,0.9938506609760225,0.6067759185098112,-0.9181596017442644,0.251977008767426,0.7971598850563169,-0.36065696831792593,-0.8539741798304021,-0.36481458973139524,0.40636954503133893,0.9327944479882717,-0.6946555338799953,-0.7131095621734858,-0.112871078774333,-0.765562558081001,-0.8230258217081428,0.8783763060346246,-0.517103296238929,0.17044584918767214,0.6326861260458827,0.2350619505159557,-0.46813462767750025,0.26954240817576647,-0.08596795005723834,-0.7128946185112,-0.522553083486855,0.7242437871173024,0.7838771780952811,-0.4482454131357372,-0.44853693759068847,-0.22950350772589445,0.40729407500475645,-0.05687692202627659,0.01250741584226489,0.4592045582830906,-0.0077435728162527084,-0.19567296421155334,-0.07559253228828311,-0.7233047806657851,-0.6107297847047448,-0.7221743930131197,0.8443259908817708,0.6187221561558545,-0.1609998121857643,0.7335993624292314,-0.031680808402597904,0.7676895526237786,-0.41658215085044503,0.02266356209293008,0.8287296257913113,0.15092527400702238,0.7893867678940296,0.20507320389151573,-0.7270513190887868,0.5177375869825482,-0.17115079518407583,0.6149664614349604,-0.6087944703176618,-0.19028578139841557,-0.5403014798648655,0.006553498096764088,0.760139025747776,-0.5439596930518746,-0.551935073453933,0.37012785859405994,-0.8541523581370711,0.02386882994323969,-0.7194242794066668,0.5519927018322051,0.7033610842190683,0.7314317398704588,-0.7038482581265271,0.7280956879258156,0.0432218830101192,0.673977215308696,-0.20794427441433072,0.33939493214711547,-0.4075896879658103,0.48753317119553685,0.3708698572590947,0.7883536447770894,-0.45751296216621995,-0.2343431613408029,0.5689947879873216,0.6842794646508992,0.36993873259052634,-0.7498620180413127,0.2643840308301151,-0.8832537559792399,-0.0903875813819468,0.9525217129848897,0.2664739671163261,0.6927777701057494,0.38444697111845016,0.7144748512655497,0.7117194789461792,0.08681211480870843,0.9125288743525743,-0.09343016520142555,-0.156811797991395,0.8202940109185874,-0.7766691106371582,-0.00028836680576205254,-0.7949737152084708,0.2646120311692357,0.8695761440321803,0.39088824624195695,0.9309458779171109,0.1512378822080791,-0.3833443410694599,0.41912455623969436,-0.5706094652414322,-0.8020036928355694,0.7246291381306946,0.38042496144771576,0.2782068466767669,-0.24491877248510718,0.5528308278881013,0.08015501452609897,-0.11119789071381092,0.07136354455724359,0.265066709369421,-0.05085394252091646,0.7436148673295975,-0.4911383483558893,-0.3378978571854532,-0.3871537623926997,-0.40007299464195967,0.18450367636978626,-0.18053865479305387,-0.10041815228760242,-0.587793848477304,0.5388311999849975,-0.4473584545776248,-0.3102803658694029,-0.43341698264703155,0.9796536494977772,-0.46309233410283923,0.9237034344114363,-0.6094899233430624,-0.5380608071573079,0.6049264022149146,-0.55923519609496,0.5636270623654127,-0.21997601818293333,-0.5484336647205055,0.7431162847205997,-0.4099594419822097,-0.05978180933743715,-0.319741518702358,0.4467949387617409,0.6923154140822589,0.06658265460282564,-0.8075304771773517,0.07249697530642152,0.7204417251050472,-0.06279665837064385,-0.3034325218759477,-0.6170558822341263,0.41879324801266193,-0.7844429123215377,-0.5576205574907362,-0.408468599896878,0.015397834591567516,-0.3955977028235793,-0.5976574895903468,-0.31857566302642226,-0.5821482255123556,0.28212556848302484,0.3731628325767815,-0.9130636430345476,0.9622219540178776,0.38077424466609955,-0.5959252240136266,-0.15388099662959576,0.08759726444259286,-0.15171975921839476,0.5781640224158764,-0.26718364004045725,-0.8510731174610555,-0.5305034290067852,0.1749858413822949,-0.7279573194682598,-0.804886584635824,0.31672953022643924,-0.7547412128187716,0.9259664532728493,-0.3510129973292351,-0.804801229853183,-0.6607001582160592,0.6452993801794946,0.0014654840342700481,0.861354636028409,-0.8513643429614604,0.4450209164060652,-0.6247488465160131,0.4211633517406881,-0.5171324145048857,-0.7787754382006824,-0.32453136472031474,0.6985066467896104,-0.6359303980134428,-0.05275521241128445,0.988042919896543,0.08235621359199286,-0.6457116999663413,0.21795180160552263,0.8993903719820082,-0.2502002236433327,-0.6048541418276727,-0.32445246214047074,0.22851064894348383,0.2829905226826668,0.36331073101609945,-0.09212796716019511,-0.3867137753404677,-0.8407033113762736,-0.9033687757328153,0.2987380498088896,-0.07503427751362324,0.5825775782577693,-0.9827330503612757,-0.9081574873998761,-0.1524334391579032,-0.4438212583772838,-0.6246325788088143,-0.4381980081088841,0.4442909578792751,-0.8718040119856596,0.8893417422659695,-0.8123909290879965,0.08144128508865833,0.31152153853327036,-0.9106200011447072,-0.14806122379377484,-0.9179943748749793,-0.35666813468560576,-0.9819184043444693,0.9825546978972852,-0.4219329967163503,0.8498038812540472,0.30623782332986593,0.5653482195921242,0.3368257428519428,-0.33379296213388443,0.017378315795212984,0.0069088563323020935,0.29429770866408944,0.13352215103805065,-0.1696697506122291,0.9146927390247583,0.22752252081409097,0.531576348003,0.4967605606652796,-0.15562745556235313,-0.980367970187217,-0.9255035053938627,-0.6150666107423604,0.7326235729269683,-0.5620333729311824,-0.4372315602377057,-0.494939390104264,0.2676802920177579,-0.8854990466497838,-0.2685160436667502,0.7394700436852872,0.3574228542856872,0.6510115056298673,-0.632868283893913,0.38885170640423894,0.1971182725392282,-0.5272887777537107,0.5910319960676134,-0.8760427893139422,0.7297838642261922,-0.49919704999774694,-0.8656462621875107,-0.6682991269044578,0.5668567358516157,-0.4465398993343115,0.3870038390159607,-0.5524629796855152,-0.7155672307126224,0.571008653845638,-0.019806101452559233,-0.06292567076161504,-0.31157958833500743,-0.3691773395985365,0.5106976949609816,0.7872285163030028,-0.9300897945649922,0.7502932813949883,0.7012227042578161,-0.13363839825615287,-0.7744139628484845,0.8430665237829089,0.044778752606362104,-0.5243309237994254,0.6608067830093205,0.248333808965981,0.0704329265281558,-0.06614670483395457,0.5581337483599782,0.06085482565686107,-0.08245449885725975,-0.054815398529171944,0.7791760908439755,0.9694830784574151,-0.01769691566005349,0.6448189723305404,0.6314336769282818,0.7312577529810369,-0.16241393005475402,0.8425644566304982,-0.9725768445059657,-0.3372902204282582,0.9344667699187994,-0.43524440145120025,-0.1746498541906476,0.03409686405211687,0.3319831704720855,0.9065957996062934,0.005109694786369801,-0.5595158664509654,-0.25046230340376496,0.24455125210806727,-0.0971610345877707,0.5070005804300308,0.7123710946179926,-0.5877628517337143,0.6286719525232911,-0.3574965358711779,0.1317346803843975,-0.8246286348439753,-0.2551954840309918,0.1540170763619244,0.057510241866111755,-0.7450806982815266,-0.617754362989217,0.30175928538665175,-0.07154108211398125,0.17898209020495415,0.3833703752607107,0.2160802846774459,-0.6283458434045315,-0.8443064815364778,-0.5576732992194593,0.5129020283930004,0.22806454356759787,0.4311865787021816,-0.20039675384759903,0.16076212422922254,0.5575891234911978,0.8903086255304515,-0.9342602505348623,-0.7591331489384174,-0.4050245638936758,-0.25174064142629504,0.6444243108853698,0.7492443709634244,0.032154233660548925,0.5632284642197192,-0.6620934940874577,0.3636140809394419,-0.1938770506531,-0.2847076850011945,-0.4992897165939212,-0.31861600279808044,-0.36495908070355654,-0.653364549856633,0.35116461338475347,0.8296086033806205,0.04746118886396289,0.310323522426188,-0.3290020483545959,-0.7783321430906653,0.27139951288700104,-0.7328816065564752,0.2930594044737518,0.12106164311990142,0.0852367184124887,0.8490340299904346,0.0980967772193253,-0.3579482058994472,0.1499957088381052,0.30248202104121447,0.84255053056404,0.4503001826815307,-0.9518515323288739,0.5859835250303149,-0.018973045516759157,-0.4977977592498064,-0.02063127001747489,0.9062212486751378,0.4562653084285557,0.07634083507582545,-0.5401964345946908,-0.6415140707977116,-0.12751939333975315,0.10925003653392196,-0.2970604170113802,-0.4364512353204191,0.42405138490721583,0.07920589484274387,0.3833171231672168,-0.8573950044810772,0.9542490537278354,-0.983230612706393,0.024008707143366337,0.972489582374692,-0.6002844660542905,-0.07305815350264311,-0.4515038914978504,-0.4408917804248631,0.718093678355217,0.6425607576966286,-0.9947786112315953,0.7389984903857112,0.4542935914359987,0.9624277055263519,-0.1628847811371088,-0.4582656701095402,0.041969999205321074,0.9507507127709687,-0.37972037633880973,0.05001206183806062,-0.4685570993460715,-0.9785895561799407,-0.2961003063246608,-0.09068534709513187,-0.7536745234392583,0.03131825104355812,-0.04289928264915943,0.958701447583735,0.9374519125558436,-0.7439818163402379,0.3344327541999519,-0.05388623150065541,-0.5480922218412161,-0.6685483711771667,-0.4719108412973583,0.10093869734555483,-0.5400026505813003,-0.8707441161386669,-0.8685438432730734,0.0813129348680377,0.29222866939380765,-0.46067583095282316,-0.6810033726505935,0.280436335131526,0.6522678262554109,-0.9088039263151586,-0.685686394572258,-0.9255186938680708,0.9797936440445483,0.7401232938282192,0.6155639667995274,-0.6477222577668726,0.9387867548502982,0.046121200546622276,0.749067856464535,0.11535943392664194,0.5939602544531226,0.06801302544772625,0.781629126984626,0.1645552422851324,0.11580638540908694,0.4866406633518636,-0.8802666557021439,0.047581511083990335,-0.4433588869869709,-0.17907988373190165,-0.7087051859125495,0.2667589206248522,0.7002979745157063,0.11648358032107353,-0.18470400152727962,-0.9797173016704619,0.5612285546958447,-0.7842512843199074,-0.32593609346076846,0.6643775515258312,-0.8764766645617783,-0.3647530428133905,-0.2248082458972931,0.20592219615355134,-0.2202339582145214,0.46884232060983777,-0.6425837082788348,-0.18827559798955917,0.46580469608306885,0.5926609318703413,-0.501304273493588,-0.9732305891811848,-0.248276986181736,0.10894465399906039,-0.4866671641357243,-0.08605809602886438,0.8061298397369683,-0.5111757032573223,0.9960944163613021,0.16549311298877,0.1059685442596674,0.5963001032359898,0.2531550354324281,-0.07776844967156649,-0.9172524134628475,0.5956767406314611,-0.9531950941309333,0.26265481766313314,0.7837178129702806,0.7609773729927838,0.8255646796897054,-0.482917417306453,-0.5486891837790608,-0.6632216665893793,-0.2655854532495141,-0.3620243635959923,0.37101942021399736,-0.944550103507936,-0.235128671862185,0.3697768081910908,-0.4925096700899303,-0.16406779689714313,-0.17799058556556702,-0.9869520599022508,-0.258959430269897,0.015864085871726274,-0.4119314798153937,0.6795074571855366,0.7883506608195603,0.6733462032862008,-0.7839353024028242,-0.522110618185252,-0.30055135674774647,0.3159328233450651,-0.598480926360935,-0.6369487876072526,0.2881406983360648,-0.9070249637588859,0.26142954686656594,0.2267044917680323,-0.3727301424369216,0.09025272913277149,0.2406859965994954,-0.19874407211318612,0.8829153417609632,-0.3316094274632633,0.15909506985917687,0.362065052613616,-0.6308120619505644,0.2851355457678437,-0.3858757819980383,-0.1703024273738265,0.836691222153604,-0.7749298810958862,0.2948030671104789,-0.2524404409341514,0.7199493679217994,0.4764133049175143,0.17153329029679298,-0.6324311546050012,-0.26607435988262296,0.08222975814715028,0.35792839527130127,-0.1446279101073742,0.012987504247575998,0.13634793972596526,-0.9684279002249241,-0.14941099472343922,0.5974482311867177,0.6926882863044739,-0.7649167822673917,0.7221254254691303,0.46042046090587974,0.03090745396912098,-0.47088576667010784,-0.42285510851070285,0.8046445199288428,0.07343031419441104,-0.1075297063216567,0.3839608207345009,-0.3905165418982506,0.33475314639508724,0.6454273886047304,0.9576100902631879,-0.845331157092005,-0.45356203708797693,0.7407610407099128,-0.8115516677498817,-0.44114205287769437,0.984764080028981,-0.9119773837737739,0.4106001192703843,-0.27144808461889625,-0.0751675651408732,0.4919165186583996,0.39946955256164074,-0.8245884231291711,0.33401329535990953,-0.5846078572794795,0.6518453191965818,0.9366345908492804,-0.47486385703086853,-0.05464663356542587,0.4112777663394809,-0.2753893556073308,-0.7771990522742271,0.8113783304579556,0.5142980585806072,-0.8057007677853107,-0.235981282312423,-0.13767931843176484,-0.3892855253070593,0.37260491447523236,-0.549257215578109,-0.2562603005208075,-0.6146333855576813,0.17872155690565705,-0.9195389929227531,0.036540827713906765,-0.6440679281949997,-0.389128296636045,-0.2554038790985942,0.9140550224110484,0.10522996494546533,-0.3443516572006047,-0.16172704519703984,0.9003382781520486,-0.1640196773223579,-0.4213457521982491,0.12094593374058604,0.19866365753114223,0.5266707539558411,0.8404844449833035,0.6417607455514371,0.34836876997724175,0.09921377617865801,0.9239235394634306,0.6699354290030897,0.5278747328557074,-0.9189813314005733,-0.740476371254772,0.7173648392781615,-0.7230263776145875,-0.6692095105536282,0.12551975203678012,-0.4378139660693705,-0.8641238799318671,-0.42004091618582606,0.5406264355406165,-0.43809440871700644,-0.11801313515752554,0.4435011432506144,0.7127770129591227,-0.4175805342383683,-0.4323038379661739,0.6019425634294748,0.6560659278184175,0.7305569765157998,-0.9589298972859979,-0.17677752720192075,0.5926069989800453,-0.43254005955532193,0.442204515915364,-0.7457229825668037,-0.5968482000753284,-0.5046958434395492,-0.6084655104205012,0.890843665227294,0.39605951914563775,-0.8232968561351299,0.9111247328110039,0.5728563750162721,-0.7591753331944346,-0.8579734871163964,0.797384106554091,-0.8462194898165762,0.7296832799911499,0.10437712632119656,0.007501993793994188,0.6329625099897385,0.9319454468786716,-0.07644681725651026,0.6605457668192685,-0.349000352434814,-0.8089165366254747,-0.9821533639915287,-0.635609065182507,-0.4052005694247782,0.7577651082538068,0.6892019626684487,-0.9275249461643398,-0.372701084241271,-0.2558668768033385,-0.5864853085950017,0.7464700569398701,-0.24731446662917733,0.39734041783958673,0.5908820773474872,0.9454411626793444,-0.39524844801053405,0.11575307883322239,-0.25494044926017523,0.690189752727747,-0.23192982329055667,0.8918525665067136,-0.9983034543693066,0.9254176891408861,0.5451064771041274,0.9395846799015999,0.47876345831900835,0.31509072333574295,-0.9837929592467844,-0.9842173652723432,0.38120740884914994,-0.6265222756192088,-0.9917803308926523,-0.09370643133297563,-0.12016099458560348,0.0786199108697474,-0.07667087158188224,0.3028971068561077,0.6740853320807219,-0.5138255045749247,0.5501170670613647,-0.7431705784983933,0.4424952785484493,-0.7128267139196396,-0.2708818451501429,-0.22521608136594296,-0.3478658343665302,-0.6812682850286365,-0.9064791547134519,0.44843726232647896,-0.22183529054746032,0.1981504801660776,0.7981380540877581,0.16497261635959148,0.7967733703553677,0.6205615317448974,-0.46811785409227014,0.6413181498646736,0.0645369766280055,0.8779135858640075,0.8956321398727596,0.5772641156800091,-0.43242112966254354,0.3664471502415836,-0.9286996223963797,0.4176677130162716,-0.06081847660243511,-0.2103776065632701,0.9548860038630664,-0.971491280477494,-0.46904078824445605,-0.5866659972816706,0.7872975282371044,0.8653642293065786,0.7396193942986429,-0.46035115234553814,0.7023979700170457,0.7570153730921447,0.9529896704480052,-0.05946941860020161,0.47985349828377366,0.511977840680629,0.3940459066070616,-0.5407374212518334,0.7451350623741746,0.14155838638544083,0.8624939355067909,-0.31941534765064716,-0.8347398089244962,-0.9198476108722389,-0.09412682522088289,-0.15543604036793113,-0.9102962636388838,0.670987790916115,0.5154614690691233,-0.4407310779206455,-0.6869994523003697,-0.7637088224291801,-0.30235997028648853,-0.9498115247115493,0.06798842176795006,-0.5036640455946326,0.9731534151360393,0.3264904785901308,-0.3077614111825824,0.79101866716519,0.46782327676191926,-0.24815048510208726,-0.07021919637918472,0.4136201608926058,-0.650739636272192,-0.1537422575056553,-0.5277648051269352,0.47431662818416953,0.10221595549955964,-0.9466888471506536,-0.6346295634284616,0.8290247111581266,-0.07276577223092318,-0.8981013973243535,0.3626016122289002,-0.47664285684004426,0.21593058668076992,-0.060050754342228174,0.09957133792340755,0.5528562879189849,-0.7796724741347134,0.6255908659659326,-0.6278109992854297,-0.18325305730104446,-0.08362368680536747,-0.9092509103938937,0.7507011699490249,0.11913588456809521,0.8306171083822846,0.03703375859186053,-0.4344612364657223,-0.6242963108234107,0.8570371614769101,0.23676531063392758,0.7180973184294999,0.1763874487951398,-0.5427205767482519,-0.40722876181825995,0.19213955011218786,-0.24972657253965735,0.4019959205761552,0.021733592730015516,-0.7077526305802166,-0.2252646661363542,-0.8516678516753018,0.11131132347509265,0.6958663677796721,0.6532268798910081,-0.8913985793478787,-0.9944316865876317,0.489296936430037,-0.02755124121904373,0.6665841406211257,0.5274816784076393,-0.6640049708075821,-0.811756398063153,0.8835707413963974,0.5672627789899707,-0.02101386059075594,0.4393236287869513,0.06096634268760681,-0.8581352066248655,-0.7686180737800896,0.5794343524612486,0.2512913872487843,-0.5152646009810269,-0.9551718276925385,-0.43843631399795413,0.9444594057276845,-0.24730178713798523,-0.5595296090468764,-0.5901524224318564,0.3612766074948013,-0.9042991576716304,-0.472031666431576,0.5942504988051951,0.9381814040243626,-0.8632444306276739,-0.3974020415917039,0.8581056771799922,-0.62369613815099,-0.4691573749296367,0.29146671341732144,-0.9035923001356423,0.1389823853969574,-0.6683970093727112,0.19959797011688352,0.7588590155355632,0.9672873062081635,-0.7646215311251581,0.07332793343812227,0.6854590931907296,-0.43643967574462295,-0.5135299880057573,0.8650729460641742,0.5078275599516928,0.33038841327652335,0.3923353753052652,0.05890668323263526,-0.21110894763842225,0.5552885583601892,0.6087950179353356,0.7587296445854008,0.3614525906741619,0.6585451550781727,-0.3812520448118448,0.8720518611371517,0.5702817155979574,-0.7815773291513324,-0.8973465547896922,0.8736268812790513,0.6508966805413365,-0.49316749162971973,-0.39519606763496995,-0.8471204065717757,0.06994725670665503,0.024172398261725903,-0.5871347929351032,0.28530446626245975,0.9451596681028605,-0.6333058541640639,0.022068782709538937,0.5479377689771354,0.6741443229839206,0.3201697049662471,0.767264848574996,0.6147004142403603,0.05978508805856109,-0.9316960265859962,-0.611926905810833,-0.44733483204618096,-0.9360257536172867,-0.18733431911095977,0.7965687890537083,-0.8072254564613104,-0.2000154829584062,0.9960318487137556,0.5370020139962435,-0.33970524836331606,0.40496786078438163,-0.5506295170634985,0.230326596647501,-0.6619297908619046,0.9759872388094664,-0.7738963286392391,-0.5085336375050247,0.6732142828404903,0.0919442935846746,-0.1956140878610313,-0.1275890627875924,-0.6791133959777653,0.07953888783231378,0.6894710175693035,-0.4878160683438182,-0.42543386155739427,-0.9624798758886755,-0.45858596451580524,-0.1573571772314608,0.5552562410011888,0.82344108261168,-0.009527896530926228,-0.25457343040034175,0.42353761941194534,-0.33148561092093587,0.3099211771041155,0.8110504182986915,0.28587062703445554,-0.7261122544296086,-0.6184054519981146,-0.8726749639026821,-0.06716798292472959,0.6175987683236599,0.01954508200287819,-0.007426101714372635,0.18984120665118098,-0.7562314160168171,-0.8914553015492857,-0.5330488756299019,0.7428280268795788,0.5293243415653706,0.11197403725236654,0.09390573855489492,-0.2694898694753647,-0.779952259734273,-0.1091808220371604,-0.46979950554668903,0.927049804944545,0.37663315795361996,0.34532548068091273,-0.159464992582798,0.49229485634714365,0.41196523141115904,0.2988967578858137,-0.571483155246824,-0.5896418541669846,0.6545187463052571,0.5653986618854105,0.23649226361885667,0.5123566784895957,0.03959552012383938,0.26784071046859026,-0.5668003535829484,-0.020705631468445063,-0.5270792972296476,0.4973070058040321,-0.7773676700890064,0.8567441185005009,0.30812719324603677,0.7043675370514393,0.31053180946037173,0.9798308853060007,-0.42330648424103856,-0.6666434276849031,0.34355003014206886,-0.22522848192602396,0.6299547273665667,0.9196562152355909,-0.7561415834352374,-0.9019130091182888,0.7888422384858131,0.14087283797562122,0.1449701706878841,0.520289902575314,-0.1565417917445302,0.20678860880434513,-0.3521001888439059,-0.07161857467144728,-0.47055960493162274,0.29060537926852703,0.6001087143085897,-0.03867252264171839,0.7901157191954553,-0.47670035203918815,-0.7809454840607941,0.8380188718438148,0.7973100543022156,-0.05213487986475229,-0.6947644171305001,-0.021123964339494705,-0.7958623068407178,-0.7896641525439918,0.49662818666547537,-0.6478014481253922,0.31995228957384825,-0.9752527046948671,0.5248819845728576,0.7832490443252027,-0.6267915405333042,-0.023210047744214535,0.5889383419416845,0.054259258322417736,-0.47591532906517386,-0.21710075391456485,-0.48046047147363424,-0.8619176689535379,-0.36820943700149655,-0.5291706412099302,-0.16821214044466615,-0.007610858418047428,0.2518249968998134,-0.6160056684166193,0.23521470604464412,-0.9089213418774307,-0.2934332066215575,-0.21469569019973278,0.32547492627054453,0.6470958269201219,0.4926809626631439,0.15269931498914957,-0.5068141482770443,0.10186675889417529,0.9434664263390005,0.5890358327887952,0.38463219022378325,0.03641281370073557,0.4043650757521391,0.8309138487093151,0.46193922869861126,0.6888924487866461,0.3398066037334502,-0.11167398281395435,-0.1913887681439519,-0.7278212062083185,-0.16018951032310724,-0.09592967946082354,-0.4847317151725292,-0.45843332121148705,0.49030193826183677,0.26756970025599003,0.7822243883274496,-0.31932374415919185,0.2655837759375572,0.9810072579421103,0.39439123356714845,0.31075454223901033,0.9700064244680107,0.6726916315965354,0.9540732060559094,0.517939651850611,-0.43229342345148325,0.4027042998932302,0.9166223201900721,0.7803096962161362,-0.8837572792544961,-0.8902955236844718,0.6894239326938987,0.7731550699099898,0.9638496320694685,-0.2066166321747005,0.47168846894055605,-0.20196358719840646,-0.8270167885348201,0.376538157928735,0.5631638541817665,-0.6444725305773318,0.23668778827413917,-0.40492264507338405,0.34397044125944376,0.2501864661462605,-0.8784256246872246,-0.17157977167516947,0.35098859248682857,-0.1140916827134788,0.15450408915057778,0.6894987178966403,0.3818078716285527,0.764980401378125,0.46575173549354076,-0.3634090297855437,-0.977786760777235,-0.8140443405136466,-0.659572652541101,-0.7795200883410871,-0.34041457064449787,-0.9919286188669503,0.3516548755578697,-0.4618726181797683,0.2927916441112757,0.9367399252951145,0.9628052869811654,-0.49957471527159214,-0.9685346162877977,-0.294903929810971,-0.7632022509351373,-0.451110971160233,-0.09765969216823578,-0.6583371073938906,0.025575633626431227,0.023593556601554155,0.584054940380156,-0.6067084786482155,0.5245686089619994,0.09466738300397992,-0.4244105420075357,0.7344640865921974,-0.5647551366128027,-0.3001930573955178,-0.522223754785955,0.13956485455855727,-0.12464002706110477,0.3551365192979574,-0.8507420411333442,0.3868418871425092,-0.2916876571252942,0.7027099286206067,-0.12963587325066328,0.9011096293106675,-0.2532023284584284,0.28254912747070193,-0.4326505078934133,0.2801389782689512,0.8587818900123239,-0.08191002393141389,-0.754683515522629,-0.1785720642656088,-0.9332843916490674,0.8191499980166554,-0.7410928262397647,0.4656345695257187,0.3994170045480132,0.88783512217924,0.8569664289243519,-0.5869699753820896,-0.17719614319503307,0.7468757471069694,0.574787185061723,-0.9824073589406908,-0.016993656288832426,-0.805402590893209,-0.2737874574959278,-0.9580505238845944,0.3573689083568752,0.4925804156810045,-0.49695869954302907,-0.9925684332847595,0.9213841920718551,-0.44260870572179556,0.01943472120910883,-0.2413301533088088,0.3924634037539363,0.1924443282186985,-0.4607330202125013,-0.3082427317276597,-0.9210300697013736,-0.01771504944190383,-0.07089360756799579,0.8711953409947455,-0.5244682114571333,-0.3177851131185889,0.5687537188641727,-0.2906567445024848,-0.810076221358031,-0.5172333689406514,0.6766456193290651,-0.41123787267133594,-0.034468816593289375,0.7391948848962784,-0.5845498288981616,0.420673506334424,-0.9117861287668347,0.2931587197817862,-0.3502023443579674,0.17753075435757637,0.006149155553430319,-0.5043908013030887,-0.8016786379739642,-0.2141779358498752,0.1895361728966236,0.11361925536766648,0.09175638854503632,-0.428847327362746,-0.6406080564484,-0.5415128534659743,-0.9712818348780274,0.08784051053225994,-0.6295736921019852,-0.6719095874577761,0.801722174976021,0.4766264730133116,0.3582407347857952,-0.222179071046412,0.42370589543133974,0.001640156377106905,0.9701855648308992,-0.01238271314650774,0.3450721865519881,0.4031017436645925,-0.22109992429614067,-0.8911131685599685,-0.5227864277549088,-0.022384462878108025,-0.021584912203252316,-0.7443371149711311,-0.9231024677865207,-0.8364220401272178,-0.003266154322773218,0.5171529287472367,-0.5067541245371103,0.38332768762484193,0.6810429063625634,0.5714000440202653,-0.17137053841724992,-0.7444094615057111,-0.8978175763040781,-0.8920846283435822,-0.7534627877175808,0.5294763892889023,0.35287952376529574,0.9093399932608008,0.8097462696023285,0.4447929007001221,-0.45002845022827387,0.7035236088559031,-0.861572238150984,-0.05730811599642038,-0.06967179989442229,-0.25516813062131405,0.5398704945109785,0.06493820110335946,-0.6757117710076272,-0.10902735404670238,-0.5415485124103725,0.3635905981063843,0.9501690240576863,-0.3248647986911237,0.21181397140026093,-0.5460560410283506,0.13522726017981768,-0.02338596247136593,-0.058479894418269396,0.8192067840136588,-0.1310278712771833,0.08334980718791485,-0.2209985381923616,-0.9035117905586958,-0.9371702973730862,-0.2497999998740852,0.07224202575162053,-0.07359729008749127,0.3957630661316216,0.11501074442639947,-0.6780022019520402,-0.9740310767665505,0.0632373820990324,0.9638206511735916,-0.004455784801393747,-0.48870996991172433,-0.5567438136786222,0.6331637222319841,0.908033215906471,0.5686197746545076,0.970530470367521,0.4530801270157099,0.033227565698325634,0.8952591950073838,0.07618610840290785,-0.19464059500023723,-0.06893991399556398,-0.4998163152486086,0.04510791413486004,0.4970742342993617,0.9708514981903136,-0.48316505178809166,-0.37031660228967667,0.732498676981777,0.2715189950540662,0.5354516790248454,-0.5119291744194925,-0.6999862529337406,0.34825898241251707,-0.6696022627875209,-0.6057758796960115,-0.30445762537419796,0.37984582409262657,-0.07501046359539032,0.10479172179475427,0.35506151942536235,0.726478477474302,0.918470901902765,0.5983236497268081,-0.006416351068764925,0.12683491175994277,-0.48280258290469646,0.6089182570576668,-0.5306472987867892,0.4775540456175804,0.06692649982869625,0.9945656447671354,-0.09802999580278993,-0.18481231201440096,-0.2757253237068653,0.22817168571054935,-0.9502092213369906,-0.8548715943470597,-0.9164395635016263,-0.5263830912299454,-0.49226913414895535,0.23502249596640468,0.7600297038443387,-0.0988718569278717,0.6351503608748317,-0.15024632355198264,-0.21868282184004784,0.46128522232174873,0.1643294976092875,0.22837577760219574,-0.8790106400847435,0.04510184144601226,0.8095542560331523,-0.647303806617856,0.6654749368317425,-0.4462787499651313,0.8502263664267957,-0.2932640090584755,-0.29049718799069524,-0.4751741047948599,-0.173718080855906,-0.43523653503507376,-0.7925702426582575,-0.7273236406035721,-0.7724692514166236,-0.26479326700791717,0.9178583109751344,0.8778651938773692,0.7001132471486926,0.9954011235386133,0.45083063328638673,-0.500906040892005,0.21943075954914093,-0.5837004273198545,-0.7301355819217861,-0.005003693513572216,0.963527416344732,0.0757174389436841,0.18215560913085938,-0.044585340190678835,-0.9014622359536588,0.255145481787622,0.3250363911502063,-0.9977061981335282,0.946140636689961,0.8491755709983408,0.6353745418600738,-0.29681653901934624,0.9638689900748432,-0.41757833026349545,-0.7341937255114317,0.10088118351995945,-0.5430407538078725,-0.8672042214311659,-0.24825591361150146,-0.08153933752328157,-0.986943653319031,0.9406006699427962,0.9921141020022333,-0.28137372666969895,-0.23915840033441782,0.014074564911425114,0.10806847782805562,-0.5753922737203538,0.1534887244924903,0.2517478745430708,-0.12064678454771638,0.11568758590146899,0.43186926329508424,-0.24079848546534777,-0.062078348826617,-0.2673812727443874,-0.1444887388497591,0.27397874742746353,0.11237044213339686,-0.20339527586475015,-0.11776530463248491,-0.006602652836591005,0.2545736404135823,-0.9402183755300939,-0.8251045332290232,-0.9094267077744007,-0.7084496775642037,0.5211615818552673,-0.923246547114104,0.37675850838422775,-0.7255482557229698,-0.48885331442579627,0.5647050202824175,0.20238252775743604,-0.7945684744045138,-0.7964210174977779,-0.367348815780133,0.6041357577778399,-0.35705253295600414,0.4480948746204376,0.9284969242289662,0.8962915576994419,0.31653768150135875,0.20140504837036133,0.660074726678431,0.09179800748825073,-0.35168568324297667,0.8961126720532775,-0.2598727513104677,-0.655988059937954,0.0831487993709743,-0.5794201390817761,0.6448079557158053,0.30384235782548785,-0.8939275830052793,-0.6303796973079443,0.3482344336807728,-0.4245461691170931,-0.027969832997769117,0.25098438188433647,0.8503909553401172,0.8698762599378824,-0.8108392697758973,0.38209378346800804,0.6438051867298782,-0.8302415758371353,0.5102478051558137,0.6630683038383722,0.6086730090901256,0.4842591672204435,-0.8166824006475508,-0.9975516013801098,0.7950349473394454,0.8849876932799816,-0.3721584719605744,0.7634262042120099,0.4814837188459933,-0.2603985727764666,-0.1576361353509128,0.23797646490857005,-0.08995571779087186,-0.2593574612401426,0.6854134676977992,0.9065173328854144,-0.31338219810277224,-0.32853731978684664,-0.08437791932374239,-0.9536973801441491,0.5549113745801151,0.809208856895566,0.27848384203389287,0.5945483040995896,0.33167755976319313,-0.18748463271185756,0.8179510096088052,-0.3057337827049196,-0.9588162675499916,-0.2444022032432258,-0.28163711773231626,-0.2350674537010491,-0.3814239935018122,-0.9336957191117108,0.5909367213025689,-0.48977851355448365,-0.9826609892770648,0.7361568533815444,-0.461536783259362,-0.47737211687490344,-0.19547067442908883,-0.7984939962625504,0.42834382643923163,0.5771368853747845,-0.3596326829865575,-0.6413013814017177,0.27803697530180216,0.7126821507699788,-0.7646961719729006,-0.0940877697430551,-0.5122764748521149,-0.5213832342997193,-0.22815093956887722,-0.6555586759932339,-0.7524638930335641,0.8257932025007904,0.15445995517075062,-0.8135662423446774,0.9248417266644537,0.04242808185517788,0.7334370762109756,0.37802863866090775,0.1539151412434876,0.6777893309481442,0.44759372621774673,0.28269293485209346,0.7199137853458524,-0.1312782638706267,-0.036630320362746716,0.11216586828231812,-0.29539085552096367,0.8214125693775713,0.4737020446918905,-0.3164327102713287,-0.7531271460466087,-0.07000072160735726,0.5286271148361266,-0.040856762789189816,-0.9271807977929711,0.04448494175449014,0.4100533500313759,-0.9640938527882099,-0.6554432441480458,-0.2089278264902532,-0.18332380196079612,0.8315329179167747,-0.924557545222342,0.23817344615235925,-0.7545244018547237,-0.7797143668867648,-0.3388801575638354,0.7291436535306275,0.70845752581954,-0.7861657938919961,0.15461959829553962,-0.19742789724841714,0.8282038667239249,0.14301384333521128,-0.9053673245944083,0.7336534159258008,0.259637541603297,-0.005223510321229696,-0.06319340877234936,-0.2924482962116599,-0.6395996906794608,-0.254740119446069,0.6613791529089212,-0.8861530958674848,-0.4167547635734081,0.5882118907757103,-0.12742592906579375,0.7279446837492287,-0.7511434475891292,-0.6508806282654405,-0.22305615339428186,-0.3055535610765219,-0.18860603496432304,0.25147922756150365,-0.36412565875798464,-0.5899953027255833,0.481772449798882,-0.7884911042638123,-0.505523422267288,0.35909655317664146,0.853035791311413,0.830885371658951,-0.8311509620398283,-0.896638099104166,0.34137351298704743,-0.7863573273643851,0.4760393016040325,-0.6413204479031265,-0.019606630317866802,-0.8161111455410719,-0.46597909973934293,0.6605610218830407,-0.9369019628502429,0.4670452573336661,0.0053054578602313995,-0.8489794787019491,-0.3636502963490784,0.0682670483365655,-0.046567500568926334,-0.9214803809300065,0.9371383092366159,0.894321178086102,0.7110701990313828,0.24152291798964143,-0.04969882080331445,-0.4966432242654264,-0.36096888268366456,-0.5143204214982688,0.3267129575833678,0.9139246637932956,-0.5154332146048546,0.9326018248684704,0.827306751627475,-0.8519658846780658,-0.9709168574772775,0.42811661399900913,-0.7520123501308262,0.4331049998290837,-0.14782212069258094,0.5884961318224669,0.5217690393328667,0.36493029491975904,0.9704024270176888,-0.04721980029717088,-0.8149417387321591,-0.9564485559239984,-0.7290856530889869,-0.8101927163079381,-0.4814901379868388,-0.7682862598448992,-0.5891136704012752,0.6249866704456508,-0.49298986326903105,0.650177548173815,0.6192488581873477,0.9897531396709383,-0.6642967304214835,-0.04752422869205475,0.5134892980568111,-0.40492404345422983,-0.9503241712227464,0.5324806957505643,-0.6719418573193252,-0.18165504420176148,-0.5075728255324066,0.38488533440977335,-0.5371704339049757,0.6142295422032475,0.16224799072369933,0.16864639706909657,0.14528759336099029,-0.9909761953167617,-0.6061267559416592,0.0605866895057261,0.3805477484129369,-0.26930262614041567,0.038578823674470186,-0.1905208476819098,-0.06128455698490143,-0.07355777500197291,-0.6208449439145625,-0.6561619974672794,0.11302634421736002,0.41934590926393867,0.6351775880903006,-0.8559255646541715,0.683877473231405,-0.7436460172757506,0.8932468583807349,-0.3955828621983528,0.043017936404794455,-0.8508364679291844,-0.3741987869143486,0.7426346172578633,0.015200162306427956,0.3286577584221959,0.5950958752073348,0.3653253628872335,0.26657010708004236,0.7930786008946598,0.5294775613583624,0.9482160890474916,0.9209765307605267,0.4618980470113456,0.21039432240650058,-0.8851557984016836,0.05815138341858983,-0.3362578460946679,-0.7749720388092101,0.7626949171535671,0.43298560101538897,-0.042746917344629765,0.9988708873279393,0.9677748028188944,0.27594784973189235,0.023899794556200504,-0.9330277722328901,-0.3722686721011996,0.4385328055359423,0.09898418001830578,0.09762099618092179,0.22450177650898695,0.09065665770322084,-0.4181927586905658,-0.03878044756129384,-0.679852900095284,0.4122024434618652,0.48474084213376045,-0.6468974621966481,0.2207915442995727,-0.2376587768085301,-0.9585073608905077,0.966343819629401,0.09616788430139422,0.7724831365048885,-0.7930405410006642,-0.1322469566948712,-0.9737897217273712,-0.7232492482289672,0.10236831568181515,0.9612951669842005,0.34888599812984467,-0.13509559072554111,0.3933076346293092,0.9228619057685137,0.9535899003967643,0.38837421545758843,-0.8154862602241337,0.3685550526715815,0.7466244148090482,0.3609015247784555,-0.5347374826669693,0.29778487840667367,0.4520113402977586,0.07754360279068351,0.5717019233852625,-0.08042251178994775,0.07744927098974586,-0.7344194334000349,0.37125271186232567,0.5093651991337538,-0.9116273359395564,0.12941595260053873,-0.09456946328282356,-0.19629509560763836,0.13580862991511822,0.603026061784476,-0.8929744199849665,-0.22706707660108805,-0.1842496800236404,0.1760515975765884,0.8973435699008405,-0.9106699218973517,-0.19630284374579787,0.02965049771592021,-0.07799173519015312,-0.2065737023949623,-0.29484126484021544,0.41051419312134385,-0.10301349312067032,-0.19958631740882993,-0.47517000744119287,-0.24218547344207764,0.20691018737852573,-0.6755495262332261,0.5696898573078215,-0.5955665037035942,-0.7802543127909303,-0.6151545722968876,-0.6493843658827245,-0.2011651275679469,0.11399662448093295,-0.6195389102213085,0.5803863508626819,-0.3195793177001178,-0.8391976286657155,0.11768651381134987,-0.3436265839263797,-0.5419914345256984,0.46900553861632943,-0.2173039554618299,0.48064126865938306,0.5254770428873599,-0.9667994379997253,0.2512303115800023,0.8086169064044952,0.733452660497278,0.29071460803970695,-0.7603597990237176,-0.08884164271876216,-0.20759117463603616,0.48091855365782976,0.1373573006130755,0.3915637698955834,-0.3186642648652196,0.6110265739262104,0.41459556203335524,0.21034438163042068,-0.33290863782167435,-0.2642991114407778,0.32104062428697944,0.6519964332692325,-0.5181989730335772,0.41588377952575684,-0.4826363786123693,-0.7055702116340399,0.05719997175037861,-0.526996152009815,0.1759634488262236,0.40449503529816866,-0.28766165021806955,-0.5288549670949578,0.3876386908814311,0.08216910436749458,0.06333978194743395,-0.3559723375365138,0.10813007364049554,-0.36342396261170506,-0.5398051533848047,0.6984445336274803,-0.09554788144305348,-0.9147475310601294,0.821233675815165,-0.4401212087832391,-0.0314988880418241,0.5315248686820269,0.9063213658519089,-0.011091763619333506,0.024149269796907902,0.860222368966788,0.408764420542866,-0.3333582328632474,0.7523836619220674,0.6231889575719833,-0.6955038751475513,0.7881448664702475,0.5185289019718766,-0.5477990368381143,-0.8403146215714514,-0.6928743184544146,0.17396580195054412,0.9805558086372912,-0.649068602360785,0.5668025771155953,-0.17902305256575346,-0.48201643442735076,0.06621705088764429,0.897060742136091,-0.8607680513523519,0.0026098317466676235,-0.9528476879931986,-0.4203747371211648,-0.19717956567183137,0.3087369375862181,0.08120782813057303,0.4752532234415412,-0.8786296891048551,0.4016096224077046,-0.4514548624865711,0.3420758959837258,-0.3238729792647064,-0.14424032857641578,-0.8925649379380047,-0.8601830210536718,-0.5905084670521319,-0.9454145962372422,-0.30560457194224,-0.32442500395700336,-0.9015011317096651,-0.38396306382492185,0.6631234721280634,0.30840872367843986,-0.1253166771493852,-0.37140459241345525,0.8234497900120914,-0.18911265255883336,-0.6101978179067373,-0.7188970893621445,-0.0458798254840076,-0.6833293102681637,-0.9387782500125468,0.6953588472679257,0.4830151842907071,0.1361043741926551,-0.8822269001975656,0.6398270409554243,-0.5936106396839023,-0.9748939406126738,0.9402926345355809,0.6061034989543259,0.5583032546564937,-0.7622902574948967,-0.7418947983533144,0.15810546651482582,0.994282984174788,0.08323897188529372,-0.5154159739613533,-0.32257013907656074,-0.4094851720146835,0.9130877191200852,-0.017341453582048416,0.10926476819440722,0.6065292484126985,-0.6340669603087008,0.7597946338355541,-0.32678618654608727,-0.4453379549086094,0.6728740832768381,-0.06361743248999119,0.02195865474641323,0.005187717266380787,0.5319761852733791,0.7811793438158929,0.13319210428744555,-0.7574526653625071,-0.18750556744635105,0.9926550621166825,-0.41063217958435416,0.5625207717530429,-0.10385353118181229,-0.533283612690866,-0.6607999741099775,0.5517310258001089,-0.20423414558172226,-0.2547633768990636,-0.46389247849583626,0.9062156132422388,-0.7863666703924537,0.6239951150491834,-0.9277369263581932,-0.36870240792632103,0.8796666436828673,0.1697372761555016,-0.32005575858056545,-0.348354309797287,0.9797037644311786,-0.2820510445162654,0.05501092504709959,0.4590104063972831,0.834614478982985,0.4292210857383907,0.3043573936447501,-0.25469327298924327,-0.7451583966612816,0.5247265505604446,-0.2549018324352801,-0.5855262973345816,-0.22374701825901866,0.34591034380719066,0.7985709644854069,-0.20320411259308457,0.6302716699428856,0.19712132029235363,-0.2029797830618918,-0.5715654529631138,-0.052197478245943785,-0.3163615041412413,-0.1481549320742488,0.09187368396669626,0.2172840991988778,-0.8443460990674794,0.6719325860030949,-0.7199774156324565,-0.07912937644869089,-0.7318844157271087,0.3553215856663883,-0.6180110266432166,0.9344995431602001,0.18500456120818853,0.49945710645988584,0.30408405885100365,0.09197375550866127,0.7407351336441934,-0.2369899172335863,0.6998139130882919,-0.45092504657804966,-0.9033068241551518,-0.3454302679747343,0.7715035961009562,0.8861581049859524,0.6179894958622754,0.13329264847561717,-0.2897077430970967,-0.6176453195512295,-0.2153727845288813,0.21986935241147876,-0.7520175050012767,0.17833402892574668,-0.1637958656065166,0.9637095890939236,0.30350965494289994,-0.6397551060654223,-0.8892770800739527,0.45458163833245635,0.6523491078987718,0.14129556249827147,-0.09902178216725588,0.9955914975143969,0.39555326057597995,-0.5327126658521593,0.5571641642600298,-0.8985301973298192,-0.8315033004619181,0.583355235401541,0.1692648851312697,0.4161263946443796,-0.2773956940509379,0.25786234019324183,-0.6433614385314286,0.23204006580635905,0.23533964296802878,0.5235113324597478,0.1441634395159781,-0.5456718979403377,0.18653442803770304,0.7934635276906192,0.25034734699875116,-0.22110225586220622,0.7859466774389148,0.09489087713882327,0.5685520824044943,0.33062382647767663,0.3233591737225652,-0.545394797809422,0.809432334266603,0.31852571526542306,0.8248697160743177,-0.4360584979876876,-0.6266127796843648,0.30524500645697117,-0.5676381522789598,-0.31590016605332494,-0.7836842620745301,-0.7259315266273916,0.4999685841612518,0.1595119177363813,0.3595545678399503,-0.4939731662161648,0.07724646991118789,0.4791448242031038,-0.8080635750666261,0.4891358995810151,0.6894191550090909,-0.20725842285901308,0.7697103465907276,0.820855819620192,-0.6338328183628619,0.09973894385620952,0.33716939901933074,-0.8160213180817664,0.5936843547970057,-0.6100066867657006,-0.9929510126821697,0.9266391317360103,0.9199792491272092,0.10562724387273192,-0.905040982645005,-0.7265454470179975,-0.6892975126393139,0.7728348085656762,-0.28458631271496415,0.5591505840420723,0.5684480420313776,0.5535200033336878,0.5272095557302237,0.6375151709653437,-0.09961553243920207,-0.31181642645969987,0.8428436769172549,0.5657086977735162,0.13454589480534196,0.6021509109996259,-0.6022059130482376,-0.10132579877972603,0.6604879177175462,-0.7808603309094906,0.3225134750828147,0.18527223076671362,-0.1371948029845953,0.895813537761569,0.08680642303079367,0.13287864811718464,0.9046667260117829,-0.9291415866464376,-0.7910341750830412,0.15325986966490746,0.6360810534097254,-0.4883055314421654,-0.11254612635821104,-0.5462748087011278,0.6589557286351919,-0.9380161897279322,0.7084192121401429,-0.8652321039699018,0.34785020537674427,-0.5142232859507203,-0.4610845632851124,-0.4862745669670403,-0.02445732755586505,-0.12745351577177644,-0.8975485134869814,-0.9332152041606605,0.9953915416263044,-0.004867659416049719,0.415687358006835,0.4143838668242097,-0.5305936434306204,-0.7583431932143867,0.002285339403897524,-0.905483391135931,-0.22821404365822673,0.15566293569281697,-0.4076219731941819,-0.9892585990019143,0.9571882947348058,-0.7825455688871443,-0.6291586346924305,0.08908804785460234,0.8509864411316812,-0.41618550196290016,-0.38738272665068507,-0.9818406049162149,-0.4081779373809695,-0.4337206231430173,0.9151914869435132,0.777982191182673,-0.7972919573076069,0.8228095951490104,-0.5876732147298753,0.9480639696121216,-0.6357729211449623,0.05890892120078206,0.8490580222569406,-0.8607150702737272,-0.903430303093046,-0.7431793650612235,0.29957857076078653,0.9014256005175412,0.9749661898240447,0.6019072257913649,0.7916837395168841,-0.8593793623149395,0.6944495574571192,0.11291393684223294,0.8942880444228649,0.3221992342732847,0.6470621768385172,0.06575421476736665,0.6080200290307403,-0.5210153185762465,0.30662286980077624,-0.9125484796240926,0.4032571353018284,-0.4287883876822889,-0.20320989983156323,0.20609518606215715,0.06590207852423191,0.6420619776472449,-0.4091820986941457,-0.737882784102112,0.7314384719356894,-0.8848797297105193,0.880854619666934,0.9746748399920762,-0.4201700547710061,0.9739503697492182,0.6395919206552207,-0.04006704827770591,0.03553289175033569,0.8822293607518077,0.6022132490761578,-0.6695338319987059,-0.16922299936413765,-0.7374531403183937,-0.3827831302769482,0.8029956044629216,0.5035165976732969,-0.8491663904860616,0.8281370340846479,-0.22331734467297792,-0.9591538496315479,0.22109487326815724,0.09720856416970491,0.48281127493828535,-0.11273678531870246,0.5818675099872053,0.9856490818783641,-0.7690072548575699,0.00923201721161604,0.35941801220178604,-0.15405013225972652,0.7054320895113051,0.837123999837786,0.1516290446743369,-0.3627591975964606,0.13566341158002615,0.3317784210667014,-0.1720646908506751,0.42861008597537875,-0.38718480011448264,0.9686400857754052,-0.8765826867893338,0.5969815934076905,-0.9569711042568088,0.2613119441084564,0.46520422073081136,-0.16178422654047608,0.04934361157938838,0.4749508057720959,0.5922110346145928,-0.4556042202748358,0.26757081551477313,0.3440160588361323,-0.9170902171172202,0.5694535723887384,-0.41840978525578976,-0.5688971378840506,0.5893069808371365,-0.4449629047885537,0.15330333821475506,-0.15030853310599923,0.9659680239856243,0.7035064832307398,0.3807130865752697,-0.329071756452322,0.6916192318312824,0.9395368914119899,-0.022115002386271954,-0.026498217601329088,0.7574786958284676,0.8860363713465631,0.5889960052445531,-0.2676214729435742,0.26888954266905785,-0.20222662948071957,-0.6072366610169411,-0.08508877316489816,-0.6971498397178948,-0.134449842851609,0.9687605081126094,0.1676044692285359,0.8480626377277076,-0.1678753881715238,0.6835298156365752,-0.19151384383440018,0.9386536194942892,-0.9982009031809866,-0.17857811320573092,0.590370605699718,-0.6650326396338642,0.07493124390020967,0.8215787163935602,-0.7076679249294102,-0.9280194076709449,0.3020419180393219,0.7141768741421402,0.3033789391629398,-0.5855229296721518,-0.7859166874550283,-0.44202632969245315,0.6841639876365662,0.545017990283668,0.8058722834102809,-0.379358627833426,0.9968534633517265,0.3332169591449201,0.682308082934469,-0.4660702687688172,-0.4558178996667266,-0.7004608721472323,-0.8276920081116259,0.7675143699161708,0.7596391532570124,-0.738927811384201,0.579196272417903,-0.8933600005693734,0.8367734351195395,0.26926160557195544,0.45156504632905126,-0.15070460084825754,-0.31587309297174215,-0.1446537277661264,0.9952667471952736,0.29306826181709766,0.8485792800784111,0.5359863978810608,-0.5178021169267595,-0.5485045621171594,-0.6270930804312229,-0.8753455323167145,0.17692671529948711,0.9898787708953023,-0.602567165158689,-0.6820113491266966,-0.14312166115269065,0.831382860429585,0.5783884567208588,0.9419222828000784,-0.47641570400446653,0.08945251675322652,-0.5504470434971154,-0.4932119636796415,-0.137294746004045,-0.8053740970790386,0.5763122076168656,-0.09501835610717535,-0.17792424047365785,0.37039634119719267,-0.6862380402162671,-0.10673011001199484,0.10014071594923735,0.3291280693374574,-0.8799561238847673,0.6953551387414336,0.4773029717616737,-0.9776748842559755,0.3063747575506568,0.15343466447666287,-0.07621308136731386,-0.7560366140678525,-0.9478863729164004,0.8167957914993167,0.012587752658873796,-0.3968694405630231,-0.3627325650304556,0.3866572352126241,-0.09537583542987704,0.30818713596090674,-0.4349911599420011,0.896022723056376,-0.6692646616138518,0.19871283834800124,0.9848469635471702,0.3472013073042035,0.34151956206187606,-0.7977638063021004,0.8453340618871152,0.356204092502594,-0.9920127969235182,-0.8771606436930597,0.5452627660706639,0.661521372385323,-0.10345615912228823,-0.06084668356925249,-0.23719131667166948,-0.11877165315672755,0.4041515630669892,0.6892482591792941,0.29377294424921274,-0.6859619272872806,0.23325985111296177,0.962432888802141,0.9412708021700382,-0.04753956804051995,0.3936920599080622,0.014712284784764051,0.17763590114191175,0.9157929765060544,-0.9636196540668607,-0.9620785331353545,-0.26410473976284266,-0.04570078197866678,0.6653231778182089,0.9875210504978895,-0.7159310020506382,-0.7577050575055182,-0.432166560087353,-0.5243650716729462,-0.15192683413624763,-0.008896566927433014,0.9723616940900683,-0.005541905295103788,-0.4811679143458605,-0.5948129976168275,-0.09869982907548547,0.1123314406722784,0.47092984709888697,0.9495863704942167,-0.24330685660243034,0.45923277689144015,0.22427138593047857,-0.4372249604202807,0.9113061865791678,0.4836005438119173,0.08659121999517083,-0.4621604694984853,-0.16163123352453113,0.32931985845789313,0.7302565230056643,0.6199090350419283,-0.16441650921478868,-0.07543688034638762,-0.05626667570322752,0.39722694596275687,-0.3948914851062,-0.24543820088729262,0.6989061743952334,0.9800457265228033,0.5627601887099445,0.03792118700221181,-0.58820745581761,-0.34940235409885645,-0.06689015356823802,0.657715015579015,0.40853230096399784,-0.5202904753386974,0.9993250672705472,-0.8231201977469027,0.7537183230742812,-0.037462775595486164,-0.5407045385800302,-0.5525220665149391,-0.5274721123278141,-0.9628648073412478,0.858780293725431,0.6187634784728289,0.3294134228490293,-0.8350556190125644,0.5885186144150794,0.4405937469564378,-0.31108052702620625,-0.5341029334813356,0.5777265201322734,-0.6735830474644899,-0.4777011973783374,0.8032189975492656,0.5208719302900136,-0.2127681653946638,-0.26173751428723335,0.10763465519994497,0.629953377880156,0.8934064372442663,0.9931634850800037,0.8158929473720491,0.2872658730484545,0.017857281491160393,-0.6388909434899688,-0.5362225258722901,0.12429252872243524,0.588637110311538,-0.9228447112254798,0.16024089138954878,0.5096437218599021,-0.6666272841393948,0.2984900064766407,-0.4871806292794645,-0.6478511579334736,0.7414901028387249,0.03577736299484968,-0.5079923132434487,-0.46003174409270287,0.4056238420307636,-0.04673743527382612,-0.26246281154453754,-0.9372404739260674,0.4580807751044631,0.6701226392760873,0.43390812911093235,-0.7660995204932988,0.7555660544894636,0.5804303246550262,0.39797622710466385,-0.9569919602945447,0.9473531018011272,-0.6867732568643987,0.1949417209252715,0.39071996649727225,-0.2503510043025017,-0.9368314608000219,-0.18099514162167907,-0.22683282103389502,0.10436845058575273,0.09494001185521483,-0.7990669338032603,-0.33626296324655414,0.15401372592896223,-0.30173009913414717,0.4434387795627117,0.8803386832587421,-0.1990184122696519,-0.3203761917538941,0.7150849443860352,0.2775976900011301,0.38711963687092066,-0.06051231361925602,-0.507906025275588,0.36922267358750105,0.11509052570909262,-0.6745128175243735,-0.7878136821091175,-0.48043331783264875,-0.8105448167771101,-0.2788435244001448,0.694007056299597,-0.3723193733021617,-0.6950561194680631,-0.7474801568314433,-0.18204009952023625,-0.9574212501756847,-0.5279542952775955,0.588491571135819,0.9412937760353088,-0.6288777170702815,-0.6445302292704582,0.7757534896954894,-0.06539446907117963,0.2093718689866364,-0.6457717511802912,0.7175283320248127,-0.6405899138189852,-0.0565169476903975,0.14460702845826745,0.69588741986081,-0.5373538504354656,-0.6858202433213592,0.32768677780404687,-0.9150035767816007,0.4838460339233279,-0.18194416584447026,0.934970498085022,-0.9671640684828162,-0.15011354861781,0.8936940166167915,0.3662472958676517,-0.0997741213068366,0.8399860300123692,0.5179684241302311,-0.2353405999019742,0.6438697576522827,-0.49436083948239684,-0.06806726008653641,0.17868131445720792,-0.04204025166109204,0.887703234795481,0.6750721642747521,-0.25854351511225104,-0.23412074008956552,0.9231453971005976,0.8741557141765952,-0.1871472280472517,-0.8254581391811371,-0.21322606690227985,0.19395788479596376,-0.997892270796001,-0.4215092700906098,-0.8670571194961667,-0.3952491022646427,0.41339940344914794,-0.9990073167718947,-0.22729412140324712,-0.3950905869714916,-0.9989301231689751,-0.21198128862306476,0.3799518197774887,-0.8393956585787237,-0.7397164753638208,-0.8031632648780942,-0.10030204383656383,0.6938391546718776,0.5963489408604801,-0.6802024901844561,0.9563594637438655,0.07860396010801196,-0.6224163929000497,-0.7117332867346704,0.12333214795216918,-0.4266672246158123,-0.1128732543438673,-0.32985884929075837,-0.6220422754995525,-0.3728687856346369,-0.08469821279868484,-0.881076283287257,-0.7699404582381248,-0.26162106869742274,-0.3762253816239536,0.21481592673808336,-0.1536521171219647,0.6354563590139151,0.7550137019716203,0.14991606678813696,-0.6700294013135135,-0.32677866611629725,-0.3980581187643111,-0.29891651356592774,-0.3930423688143492,0.6663617226295173,0.6850092825479805,0.5273841083981097,-0.2401852416805923,0.9523430927656591,0.4671782376244664,0.8162266099825501,0.45235734013840556,-0.08403035486117005,-0.4391598114743829,0.2896842607297003,0.03257405571639538,0.7468856228515506,-0.7292316621169448,-0.5370085826143622,-0.4616709630936384,-0.9454996292479336,0.8540782509371638,0.4041754766367376,0.8384426198899746,0.09222789481282234,-0.4345949925482273,0.5857871943153441,-0.6623092922382057,0.9124982166104019,0.9576240829192102,-0.6472363071516156,0.7003077669069171,0.8005252578295767,0.5288128978572786,0.6994204046204686,-0.7402162994258106,-0.24313377775251865,0.48690654430538416,-0.7518914053216577,-0.4303134083747864,-0.8634264706633985,-0.29033671086654067,-0.7251137774437666,0.7098856889642775,0.5018813665956259,-0.3503665328025818,0.06506655272096395,0.38460797956213355,-0.7714781695976853,-0.6300853649154305,0.585795050021261,-0.34146647108718753,0.30207093758508563,-0.4509762986563146,0.6208215500228107,-0.028776274528354406,0.7705883015878499,-0.9051141454838216,0.08652883814647794,-0.17497657891362906,0.5539657832123339,-0.8971516373567283,-0.691167775541544,0.47510704677551985,0.6737918839789927,0.8729768823832273,-0.389972266741097,0.6453237757086754,-0.9051457927562296,0.5821399702690542,0.272213835734874,-0.5609058854170144,-0.09435479575768113,-0.8974272916093469,-0.8137106862850487,0.7807665397413075,0.40350089175626636,0.15279924543574452,-0.8318163831718266,-0.5196117181330919,-0.2978174393065274,0.8624546551145613,-0.8610263452865183,0.978081336710602,0.7981247743591666,0.0913455169647932,-0.5585111235268414,0.5280382935889065,-0.027514860033988953,0.9782531633973122,0.8698311196640134,0.7831202168017626,0.007816082332283258,0.3964700335636735,-0.1601681155152619,-0.7355954321101308,0.9833136349916458,0.9165119472891092,0.4957116055302322,-0.25178995728492737,-0.5289836418814957,-0.3999018701724708,-0.3133243606425822,-0.2577054896391928,-0.35982164228335023,0.7321154759265482,0.5757255745120347,0.5539231295697391,0.7939450391568244,-0.8332470855675638,0.6686530984006822,0.7449783207848668,-0.8396547329612076,-0.05565104587003589,-0.4397468133829534,-0.8524960912764072,-0.4689997439272702,0.42134119756519794,0.6771332677453756,0.5949127818457782,-0.7849134402349591,-0.2631245581433177,-0.7507685646414757,-0.4055501143448055,0.02014290587976575,0.7675216104835272,-0.7421860974282026,0.38016780791804194,-0.9662807295098901,-0.015366767067462206,0.4743505450896919,-0.8355454099364579,0.35102855786681175,0.11594367818906903,-0.21981492266058922,-0.12177665159106255,-0.16077984822914004,0.31445705657824874,0.28596107941120863,-0.3015469633974135,0.7974731675349176,-0.6703126435168087,-0.5222307173535228,0.8445738549344242,0.9474459202028811,0.7794703491963446,-0.8349009305238724,-0.05553507758304477,0.696798394434154,-0.2806322374381125,0.7876692675054073,0.47344225319102407,-0.3401187560521066,0.6321302647702396,0.0799348377622664,0.8928066012449563,-0.08489201311022043,-0.41938310395926237,-0.10588703630492091,-0.9438229128718376,-0.7123494474217296,-0.05868706153705716,-0.8472184087149799,0.5183919733390212,0.29188452987000346,0.13669844809919596,0.26763527328148484,-0.3244412918575108,-0.8040694701485336,0.5913752554915845,-0.2295760903507471,0.14524687640368938,-0.6207755468785763,-0.6981338295154274,-0.1415027384646237,-0.3309873389080167,-0.48791777342557907,0.4323274618946016,-0.6891450462862849,-0.033746144734323025,0.6757050072774291,0.32381513388827443,0.8054186385124922,0.9990131012164056,-0.04095482686534524,-0.07189797796308994,-0.5689151682890952,0.8679459588602185,0.756543159019202,-0.5937085864134133,0.0867940504103899,-0.8318561878986657,-0.24520963011309505,0.9875485971570015,0.37414863239973783,-0.8162667686119676,-0.0979709723033011,-0.5577174695208669,0.7473551332950592,-0.6455617272295058,-0.3158603529445827,0.1872319639660418,-0.2665178878232837,0.3059469857253134,0.8647598871029913,-0.9562604036182165,0.3040570830926299,-0.8499447954818606,-0.007971885148435831,0.7128197341226041,0.5413658986799419,-0.05921480804681778,-0.07596718007698655,-0.6339937783777714,0.9803256364539266,0.7586616915650666,0.19792674714699388,0.6453785444609821,0.1562821357510984,-0.4033035719767213,0.5231570182368159,0.02411331655457616,-0.772596406750381,-0.34339135186746716,0.030704105272889137,0.31400256138294935,0.2924748957157135,-0.07533077755942941,-0.24069275939837098,0.9982387642376125,0.6679753526113927,-0.14566343557089567,-0.780857773963362,0.22582322359085083,0.5242376495152712,0.8628272926434875,-0.6131482403725386,0.40867891116067767,-0.08298533037304878,0.5531406607478857,0.8168387887999415,0.4648660901002586,0.8638528934679925,0.2645728187635541,0.46760695008561015,0.9617711580358446,0.682466886471957,-0.19741707760840654,0.2506182361394167,0.4202014305628836,-0.3493888694792986,-0.28545732144266367,-0.9343019085936248,-0.8924454278312624,-0.8031433601863682,-0.5608308305963874,-0.05045282933861017,-0.2658686609938741,0.4471190143376589,0.9466145825572312,-0.7484948202036321,0.8021554807201028,0.16613210318610072,-0.6002305448055267,0.6585029857233167,0.008874008432030678,0.010536744724959135,-0.2545149461366236,0.11269010277464986,-0.9374019829556346,-0.29562628734856844,0.9589347653090954,0.1284125493839383,0.5863854270428419,0.509767681825906,0.675253233872354,0.20357966842129827,-0.41681564087048173,-0.18196743074804544,-0.25426825089380145,-0.39127866737544537,0.7347615049220622,0.7785385083407164,-0.5917391506955028,-0.6925411359407008,0.23572312761098146,-0.21741023799404502,-0.48420956218615174,0.8761841240338981,-0.01576162176206708,-0.6222537951543927,0.5953381760045886,0.21492641838267446,-0.4151033665984869,-0.06570216035470366,-0.5225727935321629,-0.12070981273427606,-0.11579956253990531,0.2410846222192049,-0.7701490828767419,0.2853434938006103,-0.6675438731908798,-0.2748527182266116,0.8410284165292978,-0.5236710514873266,0.44557393342256546,0.29674727050587535,-0.6521278657019138,-0.6153090787120163,0.9265621588565409,-0.2953419932164252,0.1744480151683092,0.4150033388286829,-0.7575156441889703,0.21271432237699628,0.5978056532330811,-0.7721494501456618,-0.8749238983727992,0.3122357572428882,-0.7623703009448946,0.047317742835730314,0.5991820427589118,-0.9120551780797541,-0.032262721098959446,0.08206970430910587,-0.7418565414845943,-0.7601714874617755,0.35865382151678205,0.39194630458950996,-0.4336775871925056,0.7541589732281864,-0.4864897537045181,-0.18215610040351748,0.4082327731885016,-0.6472679181024432,0.8978790552355349,-0.4297622670419514,-0.7521542040631175,0.09660963900387287,0.6240354361943901,-0.7053786003962159,-0.2890687296167016,0.5536007271148264,-0.8218432446010411,0.8094968069344759,-0.7631478160619736,-0.7180703529156744,0.4392837188206613,0.7699416652321815,-0.2160739446990192,0.7359943077899516,-0.016845263075083494,-0.3856890546157956,0.704175847582519,-0.23111721547320485,-0.3183971680700779,-0.7057647188194096,0.433410020545125,0.17812763480469584,-0.5765691068954766,-0.6249061482958496,0.8896768530830741,0.7361314361914992,0.7644543373025954,-0.14111977024003863,-0.8399840909987688,0.42412450071424246,0.8968310332857072,0.23423684714362025,-0.31273907562717795,-0.05525002209469676,0.7494530663825572,0.36673529306426644,0.9071776829659939,-0.6615291079506278,-0.10765997925773263,-0.037401448003947735,-0.3782440056093037,-0.6283474052324891,-0.7478420049883425,0.6661026384681463,0.5399614819325507,-0.5638798694126308,0.31559888180345297,-0.3671228145249188,-0.6688939621672034,0.7656539892777801,0.44655978586524725,0.5688245999626815,0.25890650879591703,0.8134048851206899,-0.3947608829475939,-0.5346374111250043,0.4983568745665252,0.131739373318851,0.008725038263946772,-0.4357339981943369,-0.4904426708817482,-0.3048730264417827,0.07908968208357692,0.845842462964356,0.739271062426269,0.10589478956535459,0.039441732689738274,0.26892174361273646,0.653884565923363,-0.9737375853583217,0.6094086333177984,-0.0019507086835801601,-0.8132099248468876,0.33061364898458123,0.865775793325156,0.3318070028908551,-0.5399409625679255,-0.0054895696230232716,-0.7794936946593225,0.008154481649398804,0.5903880256228149,-0.44790070271119475,0.19122695457190275,-0.25895964028313756,0.5002220761962235,0.9224282065406442,-0.7176009002141654,0.3783936300314963,0.5063067469745874,0.13053911831229925,-0.21059078397229314,0.2785987351089716,-0.5191349112428725,-0.02679940452799201,-0.6374365664087236,-0.8163386401720345,-0.9748406736180186,-0.6409252709709108,0.7287940005771816,0.5163620668463409,-0.1502162297256291,-0.8660875521600246,0.3948848871514201,-0.2550882291980088,-0.43828062852844596,0.30432425113394856,0.5081087118014693,-0.5967297190800309,0.7234175666235387,0.9538512961007655,-0.15185682382434607,0.38781457440927625,0.8172834794968367,0.5961618479341269,-0.9002270638011396,0.61360471136868,-0.5507845501415431,0.5879812673665583,0.5490967086516321,-0.7070472687482834,0.5115128038451076,0.7736360258422792,-0.4627124648541212,0.3917205431498587,0.7349047432653606,0.025529316626489162,-0.1308243186213076,-0.6626765914261341,0.005474759731441736,-0.8077826648950577,-0.6768176788464189,0.6198711753822863,-0.3942997343838215,0.1530221290886402,0.8096851035952568,0.9214877770282328,-0.8603434162214398,0.2697175811044872,0.6234250427223742,-0.699407272040844,-0.0025210753083229065,0.5846554441377521,-0.8713990482501686,-0.8542300555855036,0.2693439917638898,0.04423133982345462,-0.8532889443449676,-0.6780269211158156,-0.5164570515044034,-0.5817174701951444,0.6980116129852831,-0.46044037118554115,-0.48394616693258286,0.8789229048416018,-0.8100952566601336,0.39534309785813093,0.7740819109603763,0.7674702117219567,-0.9677679371088743,-0.027555322274565697,0.9509978964924812,0.5273233260959387,0.5893228743225336,0.22742180991917849,0.20885092671960592,-0.5735397348180413,0.8481164169497788,0.34518882306292653,-0.159888768568635,0.4838556400500238,-0.6961035872809589,0.08627192955464125,0.8990245219320059,-0.6677080811932683,-0.3701390912756324,-0.1722708218730986,0.20020369812846184,0.7991694384254515,-0.7759696221910417,-0.6022454951889813,0.8647491266019642,-0.5803364124149084,0.40426663449034095,0.0090236971154809,-0.9073355826549232,-0.7498804600909352,-0.9217799180187285,-0.19200819311663508,-0.4270746181719005,-0.16292260214686394,-0.6817094059661031,0.097654121927917,-0.5749930674210191,0.012549313716590405,0.577339188195765,-0.09323055669665337,-0.8730367585085332,-0.6323347478173673,-0.28780209505930543,-0.4659051136113703,0.3726478600874543,-0.8558881250210106,0.14798089442774653,0.9625388938002288,0.013909300323575735,-0.8241705531254411,-0.9294645665213466,-0.0753516536206007,-0.27593406615778804,0.12168647116050124,-0.3820471093058586,-0.4514355920255184,-0.391386232804507,-0.6730747311376035,0.6683497638441622,0.4553933250717819,-0.47441280260682106,-0.5471312534064054,0.36333904415369034,-0.9473789935000241,-0.11311113741248846,0.9265060294419527,0.2013283772394061,0.29174444172531366,-0.15779962250962853,0.5999525459483266,0.9519175058230758,0.7368631302379072,0.25009406451135874,0.5703221722505987,-0.16156807588413358,-0.8667133804410696,-0.30764024425297976,-0.6874554166570306,0.4627074869349599,0.25552458269521594,0.8889606734737754,-0.11283486895263195,0.5250792955048382,-0.9036364848725498,-0.9384842412546277,-0.858122315723449,0.5811206893995404,0.554685618262738,0.8168017589487135,-0.7418658938258886,-0.32410153560340405,-0.7814809842966497,-0.12229375867173076,-0.5959820221178234,0.7484356048516929,0.08767366269603372,-0.38548385445028543,-0.8228624095208943,0.674961591605097,-0.84130589524284,0.6614297982305288,-0.8982049431651831,-0.8605589140206575,0.5574288200587034,-0.25411507254466414,0.06480676308274269,0.25200511049479246,0.7525799041613936,0.321704710368067,-0.32354778749868274,0.9905075058341026,0.9206818388774991,-0.7343876049853861,0.15032609645277262,-0.3027052925899625,0.6196861192584038,-0.38315051747485995,0.3125537526793778,0.7198404450900853,0.4644521875306964,-0.43968365620821714,0.9543303325772285,0.2639398155733943,-0.8838220345787704,0.01796041615307331,0.5689866878092289,-0.8302958440035582,0.021907453890889883,0.525802940595895,0.8432639022357762,-0.9329256028868258,-0.3974962620995939,0.7613171562552452,0.1955605917610228,0.13825178565457463,-0.941638111602515,-0.1444085189141333,0.034754997584968805,-0.9194465400651097,-0.03289589658379555,-0.7577330288477242,0.17043560137972236,0.3474263302050531,0.8157405382953584,-0.2644330416806042,-0.07126610446721315,-0.7716724709607661,-0.9652471947483718,-0.5701710283756256,0.3363104807212949,0.6519904546439648,-0.5145092466846108,0.5021824608556926,0.6452593915164471,0.9911975734867156,0.4517978820949793,-0.042268986348062754,0.5465350882150233,-0.2734273918904364,0.7154253753833473,-0.3250662428326905,-0.6667860015295446,-0.03852492431178689,0.8043127707205713,0.32280051056295633,-0.5863082953728735,0.10600225813686848,-0.11994173098355532,0.17155528906732798,-0.041624835692346096,-0.6778473318554461,0.1615971028804779,0.02902824291959405,0.5692819925025105,-0.4384000306017697,-0.8073006616905332,-0.7942998623475432,0.7229004330001771,-0.7811266360804439,0.2883315538056195,-0.7888651234097779,-0.46716573648154736,-0.8031026553362608,0.08529520034790039,0.9854560783132911,-0.6277771322056651,0.030624407343566418,-0.7818491756916046,0.3829440623521805,0.9612997071817517,0.5440566162578762,0.2517265286296606,0.4738927143625915,-0.384123838506639,0.7389027364552021,-0.047579153440892696,0.4392928024753928,0.8507706676609814,0.9642870994284749,-0.6847935747355223,-0.5900467801839113,-0.3885473944246769,0.2113515748642385,-0.05575206037610769,-0.09670820087194443,0.13658081740140915,-0.8405315489508212,-0.16069412836804986,-0.0023259539157152176,0.5865331799723208,-0.8228944432921708,0.0046318708918988705,-0.23641149839386344,0.4492829884402454,-0.37837119586765766,0.5956198740750551,-0.0014313510619103909,-0.8634467995725572,0.6103065521456301,-0.5242743627168238,-0.9221665658988059,0.1728511992841959,0.7434130506590009,-0.8123285775072873,-0.04869472561404109,-0.6738391406834126,-0.7269662404432893,-0.10708512645214796,0.7764324308373034,0.698076609056443,-0.8093598294071853,-0.8332443619146943,-0.6276840982027352,-0.35621430166065693,-0.23420216562226415,0.09001837344840169,-0.4567649280652404,-0.036940660793334246,-0.617851356510073,0.32387044047936797,-0.1964379078708589,0.8509905724786222,0.14557538693770766,0.7298189857974648,0.05433721328154206,0.7394170868210495,-0.1306070312857628,-0.2781724655069411,-0.7928775283508003,-0.4240738349035382,0.3503774181008339,0.49705807119607925,-0.2596343723125756,0.2868600939400494,-0.7458712868392467,0.10170425241813064,-0.25695940712466836,-0.06641246471554041,-0.5238362778909504,-0.5499464399181306,-0.1814741282723844,-0.8338967738673091,-0.3001674870029092,-0.8134154747240245,-0.8950027306564152,0.7977332780137658,0.011865452863276005,0.9514703364111483,-0.03142184158787131,0.23100463533774018,-0.7703752727247775,0.748978546820581,-0.5391021352261305,-0.07339073810726404,-0.9484465117566288,0.5195606127381325,0.046778128016740084,0.839993441477418,-0.05682301614433527,0.5985503196716309,-0.8038063067942858,-0.8029169179499149,-0.9604115141555667,-0.5413487791083753,0.5649566883221269,0.04517532279714942,-0.11576652666553855,-0.71864371933043,0.5324173849076033,0.7571601141244173,-0.06799934757873416,-0.492823394946754,-0.8180623496882617,-0.0392130371183157,0.08676660573109984,0.9620263432152569,0.46002986980602145,0.06883090827614069,0.1896227588877082,-0.9865007735788822,0.9277593488804996,-0.33677822491154075,-0.5291727837175131,-0.685323107521981,-0.8080692114308476,0.9564442443661392,-0.8158297901973128,0.6672902670688927,0.6204716074280441,0.7403390514664352,0.4680183525197208,0.5443177013657987,0.2294930536299944,0.6379647282883525,-0.7639577486552298,-0.16967241931706667,-0.6342797745019197,0.38168349396437407,-0.7135815187357366,0.9728366606868804,0.4503999873995781,0.9865311207249761,-0.9373784619383514,-0.785920687019825,-0.717683288268745,-0.2640079986304045,0.823011462111026,0.8323479178361595,0.009626047220081091,-0.44225969165563583,0.8250687685795128,-0.2654144293628633,0.6319064483977854,-0.556460973341018,-0.5960660972632468,-0.6545730093494058,0.06582038570195436,0.4170829835347831,0.9375400636345148,0.30165385687723756,-0.4528172421269119,-0.9846967281773686,-0.4605685849674046,-0.27408610889688134,-0.41151398653164506,0.45238372636958957,-0.8014691602438688,0.22238182509317994,0.6270695654675364,-0.4029929991811514,0.3046928411349654,0.6746734161861241,0.6180632803589106,-0.05547991953790188,-0.09878526302054524,-0.00895885145291686,-0.16694347513839602,0.024211521726101637,-0.6917830146849155,0.7928914451040328,-0.2052166503854096,0.3484722478315234,0.4225199269130826,0.5964764337986708,0.7885395591147244,-0.4823351767845452,-0.05403126776218414,-0.6923357448540628,0.14162192726507783,-0.7066341349855065,-0.22747691348195076,-0.0076254308223724365,-0.16655413387343287,-0.9418573346920311,-0.28548146737739444,0.47841785196214914,-0.11474968073889613,-0.11685914872214198,-0.4518801881931722,0.3412030446343124,0.8573489170521498,0.20396889792755246,0.5499886316247284,-0.9638588619418442,-0.42451747274026275,-0.5704133310355246,0.40456985123455524,-0.9879914792254567,-0.9630259643308818,-0.6394735281355679,-0.5462255091406405,-0.5467509129084647,0.8822779324837029,0.09364288067445159,0.1411316259764135,0.3964431122876704,0.13070850353688002,-0.1188891171477735,-0.5752949425950646,0.9322582152672112,0.43462821934372187,-0.9923181170597672,-0.30408197175711393,0.77144277933985,0.11492321779951453,0.539698104839772,0.1167767932638526,-0.540009181946516,-0.25189513387158513,-0.2491822661831975,0.5686992052942514,0.8831613669171929,-0.7928980719298124,-0.3249763958156109,-0.39594354247674346,0.08424912812188268,-0.6883377227932215,0.35947050154209137,0.06266437890008092,-0.12227719556540251,-0.3891188083216548,0.9084809916093946,0.0011091274209320545,0.3373667364940047,0.6758693787269294,-0.31136570824310184,0.7171238479204476,-0.7730940873734653,0.6210367837920785,0.9655401366762817,0.3378120567649603,0.36174810025841,-0.38408397044986486,-0.5718626258894801,-0.6590614342130721,-0.9700990119017661,-0.6893987143412232,0.4487169864587486,0.5716697829775512,0.691582809202373,-0.38981044478714466,-0.23391151567921042,-0.06020997138693929,0.8113467711955309,0.6299122595228255,-0.8911177166737616,0.10209450637921691,-0.023751077242195606,-0.6523045371286571,-0.5573561452329159,-0.31793543696403503,-0.034024488646537066,-0.3934547188691795,-0.7872348297387362,-0.12674635602161288,-0.19266803096979856,-0.8390105604194105,0.953065870795399,0.11413103621453047,0.4601404871791601,0.6902879453264177,0.2156563405878842,0.7549440427683294,-0.5959476977586746,0.7321981429122388,-0.5175293856300414,-0.5277568544261158,0.056664994452148676,-0.5997751443646848,-0.10345439799129963,0.5063649243675172,-0.24800447886809707,-0.30876356828957796,-0.9898871495388448,-0.5408547981642187,0.22617596155032516,-0.7208106671459973,0.616543429903686,0.26168926944956183,0.036506534088402987,-0.37059734482318163,-0.981998335570097,-0.12006208021193743,-0.36577218817546964,-0.9507777569815516,0.09379327017813921,0.8672073422931135,-0.5043610748834908,-0.7652848483994603,-0.26064859749749303,0.61926310043782,0.332313132006675,0.07112883869558573,-0.6081151757389307,-0.3815111881121993,0.9232985056005418,-0.5637306957505643,0.8290501884184778,-0.7232227809727192,-0.734887485858053,-0.6919934190809727,0.1326800393871963,0.665178569033742,-0.7830443694256246,0.7881121635437012,-0.845374159514904,-0.4597469032742083,-0.7050593858584762,0.5847707143984735,0.25439469888806343,0.975893484428525,-0.9225384653545916,0.8741333363577724,-0.617500092368573,0.5599663895554841,0.6331787435337901,0.4361102725379169,0.04802370443940163,-0.4936094977892935,0.4371317932382226,0.6396469380706549,0.686023645568639,-0.3513609590008855,0.06908514024689794,-0.625401739962399,-0.06545580876991153,0.8785906317643821,0.526109314057976,0.8160645407624543,-0.6689745024777949,0.8776893941685557,0.8739227768965065,0.8662798432633281,-0.16049010213464499,-0.4924130514264107,-0.8644558638334274,-0.652323676738888,0.7311983765102923,-0.10918887332081795,-0.9808407798409462,-0.6048605372197926,-0.22125461651012301,0.29294949350878596,-0.5995370056480169,0.7883420195430517,0.09802262485027313,0.34715533116832376,-0.07855841098353267,0.8136294218711555,-0.24161839671432972,-0.24670021701604128,-0.3151033688336611,0.9345540776848793,-0.9521145382896066,0.5077521447092295,-0.6075245877727866,0.8977760798297822,0.7814532648772001,0.8712685164064169,0.09873360441997647,-0.3692095815204084,-0.1721712127327919,-0.5219457796774805,-0.3885337891988456,-0.4366045496426523,0.8816553009673953,-0.27069918997585773,0.34473574720323086,0.13664779672399163,0.9764418448321521,-0.6595561848953366,0.26928936364129186,-0.7061167205683887,0.012532226275652647,-0.2750758323818445,-0.8916775151155889,0.4567951029166579,-0.35036857752129436,0.7892191060818732,-0.2441538106650114,0.009112042840570211,-0.647029114421457,-0.06346539780497551,-0.25053999898955226,-0.10951675474643707,-0.026307195890694857,0.9032728127203882,0.30286049796268344,-0.14614736661314964,-0.6151693766005337,-0.43571944953873754,-0.3749014725908637,-0.5869791712611914,-0.6366067724302411,-0.27545978501439095,-0.6239152876660228,0.2746673598885536,0.8213225123472512,0.8641851861029863,0.8086717738769948,0.5175941591151059,0.5912031559273601,-0.8152790614403784,-0.6000080252997577,-0.3186552096158266,-0.6933615682646632,-0.438594798091799,0.21949484897777438,-0.316143486648798,-0.5276683764532208,-0.7358661107718945,-0.8874706719070673,-0.24628160521388054,-0.6469042063690722,0.2135867322795093,0.21178670227527618,-0.4510118546895683,0.3180020106956363,-0.9887812468223274,0.771650499664247,-0.8280170722864568,-0.9240083834156394,0.16993635334074497,-0.14598550787195563,0.42631136579439044,0.46379105746746063,-0.6157219423912466,0.6094110859557986,-0.36580453207716346,0.5944352680817246,-0.01936840545386076,-0.29431607481092215,0.9749127067625523,-0.3517271839082241,-0.5972767481580377,0.591638324316591,-0.50328010879457,-0.8604671373032033,-0.37684960290789604,-0.5248896186240017,0.4760034214705229,0.6028025592677295,0.49378270702436566,0.40776649909093976,0.5077653303742409,-0.4108629319816828,-0.8666815171018243,-0.32836863258853555,0.9220733470283449,0.05708115454763174,-0.11892532417550683,0.6380836125463247,0.10206080321222544,-0.2198747112415731,0.9645467987284064,0.06859353417530656,0.4773898175917566,-0.7981481198221445,0.7268095039762557,0.1842105365358293,0.40009828517213464,-0.9676124113611877,-0.5347401853650808,-0.20104276854544878,-0.31694401567801833,0.9533029743470252,-0.8287783158011734,0.2154654050245881,0.9515871657058597,-0.7528469464741647,0.8577641262672842,0.5327176698483527,0.5492690419778228,0.9521956355310977,-0.8227472435683012,-0.3309554704464972,0.09994610212743282,0.3040746175684035,-0.6230172370560467,0.5608757981099188,-0.2827336145564914,0.12577759101986885,-0.22182862414047122,-0.35630796756595373,0.3117012404836714,0.31059699738398194,0.4150602794252336,0.2842097822576761,0.5514425016008317,0.5294804186560214,0.664904011413455,-0.5716001982800663,-0.032660795375704765,-0.04363781586289406,-0.3526646909303963,0.4371427996084094,0.9067440088838339,-0.01461419090628624,-0.36013885820284486,0.5860175616107881,0.2970717493444681,0.21435647271573544,0.5754289450123906,0.5787847996689379,-0.31933100894093513,-0.47895729821175337,-0.11915513593703508,0.5694519192911685,0.5510140373371542,0.8648896664381027,0.5418397653847933,0.7658274853602052,-0.145061906427145,0.9947881232947111,0.30417669704183936,0.17924719117581844,-0.7734343875199556,0.33478335523977876,0.4600658663548529,0.8832085449248552,-0.1574414288625121,-0.03793278755620122,-0.7308605210855603,-0.5543808280490339,-0.7280019470490515,0.5242490819655359,0.7282718825154006,0.8375787101686001,-0.30675346590578556,0.8559640059247613,0.48113028379157186,0.9310748693533242,-0.17690450558438897,0.3663315959274769,0.5048396331258118,-0.669574664440006,-0.8506503310054541,-0.17867149412631989,-0.9057305548340082,0.7601832095533609,-0.06990369595587254,0.025259909220039845,0.5630745124071836,0.9571212991140783,-0.4481992032378912,-0.30915728490799665,0.8232295103371143,-0.9471227051690221,-0.39392157131806016,-0.9419966517016292,0.07456080475822091,-0.47677971236407757,0.7945815469138324,-0.43769330671057105,0.8481062464416027,0.8308379701338708,-0.9521011579781771,-0.14928319538012147,0.33295320300385356,-0.5499546322971582,-0.3461339706555009,-0.8572282292880118,0.018318049609661102,0.3438467108644545,-0.27722127037122846,-0.9906604043208063,-0.9845690312795341,0.9764154022559524,-0.9091956447809935,0.5622167917899787,0.7119434848427773,-0.45175561401993036,-0.8869498115964234,0.43202973576262593,-0.4187401761300862,-0.16348530910909176,0.28661940479651093,0.43592748790979385,-0.9364429865963757,-0.35383378714323044,0.9949947372078896,-0.9590479233302176,-0.26606712117791176,0.20066492212936282,0.06477907439693809,-0.7339504584670067,-0.14461967069655657,0.32648714911192656,-0.3139690044336021,-0.8285528956912458,0.9623359171673656,-0.07046426460146904,0.6430473579093814,0.5104048065841198,-0.5743030179291964,0.48297087708488107,0.4689622591249645,0.3032556097023189,-0.07307451916858554,0.7513075401075184,-0.17189702577888966,-0.20821985555812716,-0.1740844789892435,-0.7981167109683156,0.4303049771115184,-0.5452593388035893,0.6363619333133101,-0.32440906297415495,-0.6143321851268411,-0.24581460561603308,-0.26485675014555454,-0.5112639991566539,-0.535293591208756,-0.059715109411627054,0.7144007892347872,-0.08803736325353384,0.9770536310970783,0.924111005384475,0.5330811240710318,0.7163303787820041,0.5862604579888284,-0.21647344902157784,0.7240068726241589,0.7394299316219985,-0.71061442932114,0.2016890412196517,-0.259818471968174,0.07504614442586899,0.8013113969936967,-0.5142566952854395,-0.34282042272388935,-0.24453850788995624,0.6018514684401453,-0.4544770107604563,-0.925633929669857,0.21423411648720503,-0.4999684556387365,-0.8463389044627547,0.7175565166398883,0.9341283226385713,-0.7535523464903235,0.2886808030307293,-0.14043161645531654,0.8799176393076777,-0.5125370887108147,-0.7443982628174126,-0.9615792627446353,0.08594492124393582,0.0648978971876204,-0.7889077551662922,0.09279271960258484,-0.5001042848452926,0.494385689496994,0.964781787712127,-0.08634195942431688,0.3846239014528692,0.9308359809219837,-0.45923800580203533,-0.6910072551108897,-0.07271105144172907,0.11849400727078319,-0.9797822767868638,-0.27809119364246726,0.958420398645103,-0.20677910512313247,0.20500584552064538,-0.6738903154619038,0.10339110065251589,0.8645560774020851,0.021594425197690725,-0.32685617450624704,0.5018102745525539,0.5491135935299098,-0.044870158191770315,-0.15403154958039522,-0.4019152084365487,-0.840047474950552,-0.4088427876122296,0.1629136698320508,-0.013135637622326612,0.6424670680426061,-0.37575806863605976,-0.1714220209978521,0.8537165056914091,-0.3797355154529214,0.4350094539113343,-0.2836980177089572,0.24003368662670255,0.8967564920894802,-0.9214512812905014,0.20310456305742264,0.09156631398946047,0.5241674892604351,0.6720454557798803,0.4286943105980754,0.9934990396723151,0.4529704204760492,0.381021692417562,0.9518423858098686,-0.858771844767034,-0.28485769545659423,-0.6708505670540035,-0.6282392563298345,-0.2017315672710538,-0.9090093853883445,0.5136873768642545,0.5979060539975762,-0.5220354171469808,-0.9870652463287115,0.28123412374407053,0.028479072265326977,-0.6973120043985546,0.36991593753919005,-0.9043342615477741,0.1080811657011509,0.4428083198145032,-0.8652099994942546,-0.7297154450789094,-0.5974523066543043,0.397465652320534,-0.7094949041493237,-0.2290438748896122,0.569333937484771,-0.9930590628646314,0.3444502828642726,0.23248704383149743,-0.38334818510338664,0.4669671691954136,0.27066390169784427,0.3134628515690565,0.6088586840778589,-0.5954355983994901,-0.7616596380248666,0.10656172409653664,-0.24670384032651782,-0.389161869417876,0.6637105806730688,-0.8952066320925951,-0.2093311850912869,-0.611846353393048,-0.20027852896600962,0.3979589152149856,0.368337809573859,-0.2706113997846842,-0.5264803287573159,-0.9686140068806708,0.4905154197476804,-0.48179852729663253,0.4418347245082259,-0.8386367619968951,-0.9111305228434503,-0.5685398820787668,-0.17235162062570453,0.7495570052415133,0.084412747528404,-0.3031420144252479,0.6320464150048792,-0.7463956894353032,-0.2065757610835135,-0.9915575119666755,-0.6440731878392398,-0.4800437963567674,-0.7203680905513465,-0.7985234390944242,-0.4941045194864273,-0.9920845502056181,-0.8876952067948878,0.7983513548970222,0.002224445343017578,0.5325599573552608,0.09155960846692324,0.6872180136851966,0.8657627399079502,-0.18947160709649324,-0.948451011441648,0.3382079587318003,-0.5048830979503691,-0.575600694399327,0.3739293743856251,0.28500283882021904,-0.6080795205198228,-0.9502016804181039,0.052125089801847935,0.9970297552645206,0.2663280419073999,-0.8484131246805191,-0.11968941474333405,-0.49542623152956367,-0.49330171337351203,-0.45784537494182587,-0.8696646899916232,-0.15886523434892297,0.995884973090142,0.19513439992442727,0.007249725982546806,-0.02767730038613081,0.60568887880072,-0.36291547678411007,0.32225460233166814,0.39728350657969713,-0.4470090549439192,0.3339283773675561,0.9635514263063669,-0.9311785567551851,0.053405352868139744,-0.3190903766080737,-0.7277169595472515,0.5565809588879347,-0.8876351355575025,0.7370876190252602,-0.3169210576452315,-0.9357525249943137,-0.37071355152875185,-0.3686876851134002,0.9215408167801797,0.814731425140053,0.3850772185251117,0.6783315450884402,-0.3379282052628696,0.4932954986579716,0.3801956046372652,0.17034225817769766,0.30792316049337387,-0.09047690080478787,-0.6069403565488756,-0.9540768223814666,0.8077511922456324,-0.9499197527766228,0.1435300619341433,-0.9748486294411123,-0.8303287425078452,-0.8070735493674874,0.757249572314322,0.23813943471759558,0.7584065231494606,-0.26780727179721,0.3660321836359799,-0.6944922199472785,-0.5298524810932577,0.36949830735102296,-0.99422467360273,0.6866181814111769,-0.4950140751898289,0.0343442908488214,0.5736855966970325,-0.12867009360343218,-0.500849106349051,0.11341270245611668,-0.5482172095216811,0.15059313084930182,-0.40067178290337324,0.5937469215132296,-0.18527632672339678,0.7452216357924044,-0.3754535517655313,-0.503399963490665,-0.27829651115462184,-0.5744147864170372,-0.10448448592796922,0.9841521456837654,0.8316456796601415,0.47369003342464566,-0.17363068088889122,0.6506419195793569,-0.5309146968647838,-0.811695443931967,-0.024114636704325676,0.36750511545687914,0.3940222095698118,-0.9072533291764557,0.8149569230154157,0.19339015008881688,0.29651281610131264,-0.561519858893007,-0.65462038340047,0.7113483818247914,0.7347291684709489,0.33104901295155287,0.9570700442418456,0.0029645483009517193,-0.19717469345778227,-0.09885768033564091,-0.36110818153247237,0.5714993695728481,0.6448233113624156,0.3909902833402157,0.25205962220206857,-0.4940637880936265,0.4124339292757213,0.6773442951962352,0.06289663119241595,-0.03320960607379675,-0.14929278008639812,-0.4380373633466661,0.77340531302616,0.22637471789494157,-0.25411215610802174,0.07865049550309777,-0.2224606149829924,-0.021538543980568647,-0.5657580988481641,-0.3622447564266622,0.9215095080435276,0.3148925104178488,-0.9993590945377946,-0.6194088342599571,0.0031284200958907604,0.6293709841556847,0.21513857087120414,0.41750649083405733,0.5485614859499037,0.8991659516468644,0.4997421847656369,-0.3833491108380258,0.48882822459563613,-0.6330261784605682,-0.05861260695382953,0.05104818567633629,0.730658779386431,-0.10742483055219054,-0.5873811389319599,-0.9028442045673728,0.7563984896987677,-0.5286680804565549,0.9192990846931934,0.9781668027862906,-0.5929056303575635,0.06250524707138538,-0.7944977255538106,0.9038350866176188,-0.5950345816090703,-0.19494779920205474,-0.46493179677054286,0.42274201195687056,-0.605703838635236,0.9585379404015839,-0.9368152138777077,0.6296871802769601,0.8272976675070822,0.9186331615783274,-0.9217456276528537,-0.37460751784965396,0.08730259584262967,0.8543293350376189,0.153684307821095,0.39994207164272666,0.2777526779100299,-0.8396578137762845,0.9292578492313623,0.7107425625436008,0.5727990162558854,0.4876186237670481,0.9379883394576609,-0.2748116413131356,0.09706751583144069,-0.05783051531761885,0.4122065231204033,0.7041897512972355,-0.9687064234167337,-0.6171229942701757,-0.9198695761151612,0.12596011953428388,-0.27895178087055683,-0.9878834262490273,0.8050794573500752,0.30040010157972574,-0.2105903741903603,-0.21278331521898508,-0.7535521583631635,-0.7712845145724714,0.42134723206982017,-0.541841285303235,0.7087292596697807,-0.04510726174339652,0.08398252259939909,-0.9392436975613236,-0.9479299634695053,-0.18761598598212004,-0.34322510100901127,0.11200920911505818,-0.1715487390756607,0.010680539067834616,0.04056264879181981,-0.8185759857296944,-0.5609320150688291,0.9571047881618142,0.8910628147423267,-0.9897258589044213,0.4642923506908119,0.6799794584512711,0.731623528059572,0.35416540736332536,-0.1966658728197217,0.4473914219997823,0.42750403471291065,0.9906833642162383,0.24123790813609958,0.17487022746354342,-0.4254698045551777,0.3586835884489119,-0.11166627379134297,0.10860277293249965,-0.11471138335764408,0.6867937534116209,-0.1899848231114447,-0.08428697288036346,-0.610713210888207,-0.9825736321508884,0.8976904712617397,0.09520511236041784,-0.0013060462661087513,-0.6254624370485544,-0.2825091532431543,0.3365935110487044,-0.4124221964739263,0.000522188376635313,-0.21204020734876394,0.6161125344224274,0.3873587576672435,-0.926069188863039,0.7692709662951529,-0.8905727122910321,-0.8621195992454886,0.7774769025854766,0.29834464751183987,0.5324694779701531,0.8716787393204868,-0.9374151704832911,-0.8611352276057005,0.3269568854011595,0.7884968658909202,0.13639816641807556,-0.3012354322709143,-0.4854554207995534,-0.3471484687179327,-0.06439915718510747,0.5619357321411371,-0.8451235243119299,0.07342914631590247,0.29087848123162985,-0.8465115521103144,-0.5039243078790605,0.5777233503758907,-0.523774185217917,0.18871865700930357,-0.19537329161539674,-0.996099665760994,-0.6189660006202757,-0.8025506027042866,-0.9943736307322979,0.019891334231942892,0.026659801602363586,0.6227678162977099,-0.08491375856101513,0.8510930556803942,0.7036786512471735,-0.35151779372245073,-0.5158727667294443,0.27413085708394647,-0.03433528263121843,-0.08104389067739248,0.7798935431055725,-0.5767184435389936,-0.4427235862240195,0.15913484850898385,0.8350388323888183,-0.17102052457630634,-0.9368293206207454,0.22605055384337902,-0.0950886495411396,-0.4693453120999038,0.2669459502212703,0.8639657720923424,-0.6082973196171224,0.47586196614429355,-0.011202695313841105,-0.8258216744288802,0.7613065028563142,0.0683673215098679,0.4100299943238497,0.8750293655321002,-0.12196037732064724,0.527802606113255,-0.8153288085013628,-0.7116626752540469,0.7958238562569022,0.5791344423778355,0.6817669938318431,-0.2953749606385827,-0.9526946060359478,0.4678642628714442,0.15916606690734625,0.47668979689478874,-0.25623954040929675,-0.8330116332508624,-0.8551516644656658,0.8675594152882695,0.8448305004276335,0.38764705043286085,-0.5154585083946586,-0.883595546707511,0.4450780712068081,0.27812300296500325,0.6811545523814857,0.6480044391937554,0.7426794478669763,0.4367656302638352,0.958114848472178,0.90241789072752,0.9337138906121254,-0.7070057331584394,-0.2906547919847071,0.9048764645121992,0.7654734654352069,-0.5986102800816298,0.04527202993631363,0.10268009034916759,0.03880209941416979,0.9712261650711298,-0.5453327409923077,0.04595813201740384,-0.4094515726901591,0.6576234591193497,0.960082036908716,-0.5199578464962542,0.2948241257108748,0.7467430750839412,-0.010960238985717297,-0.3603992750868201,0.49455474177375436,0.17059147590771317,0.5559791238047183,-0.2398494235239923,-0.8754322961904109,0.7875835723243654,0.43660287093371153,-0.7894652732647955,0.16940711671486497,0.5884744334034622,-0.3734553731046617,-0.012656821869313717,0.3961183913052082,-0.5025258385576308,-0.42570769041776657,-0.7868091752752662,0.22138114273548126,-0.7645025406964123,-0.7308615488000214,-0.0895726284943521,0.4729427807033062,-0.35403598565608263,0.7822982151992619,0.40000720182433724,-0.21088925888761878,0.16150862304493785,-0.29588985489681363,-0.0637078327126801,0.037432761397212744,0.6689106794074178,-0.7141427891328931,0.45847839349880815,-0.9409486334770918,0.19231025641784072,0.011583529878407717,0.4380136951804161,-0.5657176822423935,0.03749469527974725,-0.21579991886392236,0.9478384559042752,0.8525137729011476,0.4962303242646158,-0.45858294051140547,-0.1726064900867641,-0.9337765322998166,-0.3593662497587502,-0.7476449985988438,0.1292916303500533,-0.1844804771244526,-0.18244988191872835,-0.5146071487106383,-0.759370731189847,-0.7053354238159955,0.7575266654603183,0.1720050903968513,0.8147450862452388,-0.41477317456156015,0.6910357903689146,0.6365834646858275,-0.05493899900466204,0.5734763210639358,-0.544801864773035,0.446853868663311,0.5591901200823486,0.13465365068987012,-0.21493094554170966,-0.3805771195329726,0.44107707077637315,-0.7042396399192512,-0.9770357725210488,0.2748351343907416,-0.815243064891547,-0.2810558504424989,0.6572913383133709,-0.8546380950137973,0.9155276999808848,0.1758785997517407,0.65118288109079,0.07907386310398579,-0.12580096907913685,-0.7907488779164851,0.7997749703936279,-0.44238611636683345,-0.3915169779211283,0.48076482582837343,0.2628317284397781,-0.31542854756116867,0.7868142751976848,-0.33061467530205846,0.35763687267899513,0.26934925513342023,-0.39975295355543494,0.6835190593264997,-0.7391887619160116,0.5741397496312857,-0.6995196975767612,-0.46026943624019623,0.726454796269536,0.005447711329907179,0.9237302909605205,0.24593588477000594,-0.7932687941938639,-0.23338058358058333,0.45665467716753483,-0.28882794035598636,-0.6110525806434453,0.42842722265049815,0.0418517361395061,-0.9336935956962407,-0.6650720220059156,0.1418632296845317,-0.7661641859449446,0.30465590627864003,-0.07313286140561104,0.12882001977413893,-0.6477317400276661,0.02455572923645377,-0.8294641398824751,-0.20758402673527598,0.43319143913686275,-0.6836288389749825,0.012488814536482096,-0.8636803105473518,-0.8678316376172006,-0.15702018747106194,0.13829301809892058,-0.9702195436693728,0.6979912063106894,0.040731622371822596,-0.5684132338501513,-0.43190903402864933,-0.021983450278639793,0.7512849131599069,-0.77692347811535,0.5662785479798913,0.9785898993723094,0.9269058415666223,0.1798922666348517,-0.36649639112874866,-0.5389535678550601,0.42639742139726877,0.979076964315027,0.40717693883925676,-0.9314644308760762,0.9641404449939728,0.2134316568262875,0.35878279246389866,-0.03804642939940095,0.9582883478142321,-0.47870852425694466,-0.6457774844020605,-0.8409928600303829,0.9896938051097095,0.8253404558636248,0.9455649652518332,0.35354185989126563,-0.3231970937922597,-0.7385924775153399,-0.3311535348184407,-0.06338798301294446,-0.29069591173902154,0.2538150674663484,0.6308719404041767,-0.9540322939865291,0.9776092171669006,-0.26315248385071754,-0.5057946052402258,0.17517214780673385,-0.7382017932832241,-0.7551843277178705,-0.3377658468671143,-0.3518318426795304,-0.26605616556480527,-0.2893033931031823,-0.9089507106691599,-0.3874123874120414,0.23898223880678415,-0.9459960921667516,-0.7385476832278073,0.9895530687645078,-0.1658942080102861,0.13095924351364374,-0.004059474915266037,0.37657854054123163,0.3712308374233544,-0.7998624118044972,0.47490735072642565,0.08868730301037431,0.13238332234323025,-0.9887482323683798,0.34118215274065733,0.28231372172012925,0.019714535679668188,0.08051722077652812,0.6309751742519438,-0.11208213306963444,0.09289987152442336,-0.6381844468414783,-0.2059665252454579,0.3570728600025177,0.21838164189830422,0.11240497184917331,-0.23684145929291844,-0.5458929282613099,-0.16801142459735274,-0.5976749872788787,0.7923819562420249,-0.1161659681238234,0.25907126208767295,-0.17865836154669523,-0.8650546171702445,-0.024642808362841606,0.8168402528390288,0.5938511802814901,0.8631761632859707,-0.48606496350839734,0.9260901589877903,0.4908465798944235,0.3377571813762188,-0.878098108805716,-0.5969034880399704,-0.34375861193984747,-0.25847184751182795,-0.13242475595325232,0.17754210392013192,0.42143263947218657,0.6854918641038239,-0.9993202276527882,-0.7163205025717616,-0.6383857564069331,0.6599524891935289,-0.4482757016085088,0.5138291376642883,0.6928395382128656,0.41734684351831675,-0.7850226378068328,-0.7276523625478148,-0.19294944126158953,-0.301115155685693,0.6218880182132125,0.20672604255378246,-0.5857855137437582,0.1031023571267724,0.5058537540026009,-0.5190949747338891,0.5461930250748992,0.5378624745644629,0.3821670771576464,0.017594436183571815,-0.6744977296330035,0.29151473427191377,-0.805487560108304,-0.2614764990285039,-0.14460893673822284,0.8423193404451013,0.30468299938365817,0.42094981856644154,-0.8661193349398673,0.049653563648462296,0.022697474341839552,-0.23620783723890781,-0.041828093118965626,-0.8200963963754475,0.6404672982171178,-0.7293220744468272,-0.46286718314513564,0.1210524095222354,-0.9761036341078579,0.3560577603057027,0.10868542408570647,-0.8469302477315068,0.08472826797515154,-0.3490750673227012,-0.009516787715256214,-0.06295626703649759,-0.7699291985481977,-0.23954538302496076,0.09334444813430309,0.6099117104895413,-0.29602168314158916,0.9335576691664755,-0.07477564504370093,-0.5005450532771647,-0.5478311674669385,-0.4807208217680454,-0.20657524093985558,-0.7511242488399148,0.6127670495770872,-0.22445588884875178,0.6794765931554139,-0.33646185323596,-0.7295806282199919,0.9251468386501074,0.24914755718782544,0.37453527096658945,-0.4077679910697043,0.8803443997167051,0.2758075394667685,-0.25610886234790087,0.28776052966713905,-0.17080139741301537,0.35826543951407075,0.5109351836144924,-0.3633750397711992,0.4101569098420441,0.6400359612889588,-0.27355900779366493,0.46876992331817746,0.19359886553138494,-0.23977216891944408,0.3509379713796079,-0.13361042365431786,0.433916091453284,0.673508579377085,-0.5958132022060454,-0.44780552526935935,-0.6319192619994283,0.7691959775984287,0.5989244654774666,-0.948884797282517,-0.3311231639236212,0.5035390323027968,0.5365746188908815,-0.9186288062483072,-0.8155072559602559,0.2914524283260107,0.6487744431942701,0.03905699960887432,-0.9255240922793746,0.1296008313074708,-0.16830967273563147,-0.3347873194143176,-0.6045795674435794,-0.4937551817856729,0.90189342899248,0.4003027812577784,-0.08437527203932405,-0.9931604866869748,-0.5757043696939945,-0.969007614068687,-0.978028834797442,0.7186051439493895,0.4574032723903656,-0.045033016707748175,0.6824725433252752,0.3618563334457576,0.8669314123690128,-0.9529907498508692,-0.4132405915297568,-0.4599041105248034,0.21406315732747316,0.31867013592272997,-0.6675480334088206,-0.2972521190531552,-0.8226121016778052,0.6748910723254085,0.8392077027820051,0.4599300869740546,-0.9370330506935716,-0.2854954735375941,0.33645543875172734,-0.6519238781183958,0.23875936958938837,0.06213365634903312,0.8499822705052793,0.7092150491662323,0.28058434929698706,0.8751386278308928,-0.07231661770492792,-0.2529725260101259,0.5932627897709608,0.42402544151991606,0.9661142635159194,-0.5495129977352917,0.34633665531873703,0.8422954804264009,0.28535414626821876,0.7970575629733503,0.643265281803906,-0.569857734721154,0.9962468459270895,0.4819154650904238,0.9804496434517205,0.3669782429933548,0.4444894506596029,-0.4283272079192102,-0.1751422551460564,-0.7723199934698641,0.3664204948581755,-0.02254198817536235,0.06850099377334118,0.8529247562400997,0.19777557998895645,-0.494407023768872,-0.2960716784000397,0.2714501228183508,0.38468468049541116,-0.2815882312133908,-0.05836965097114444,-0.45520991506055,0.3931590560823679,0.2479967726394534,-0.03868016507476568,-0.8444278542883694,-0.7779062250629067,-0.6704548029229045,0.5468572499230504,0.8874031472951174,-0.22407600423321128,-0.6313180904835463,0.46891102148219943,-0.36590661806985736,0.7536101611331105,0.7266325624659657,0.2548574204556644,0.6618490912951529,0.13999408157542348,0.03885326348245144,-0.3214877536520362,-0.30523102916777134,0.02633725991472602,0.6784541816450655,-0.8537959032692015,-0.24724299972876906,-0.9771764813922346,-0.8543581357225776,0.4811409623362124,0.744615163654089,0.09578109346330166,0.6487121740356088,0.31163236359134316,0.18021471425890923,-0.817530925385654,-0.633587050717324,-0.14467431092634797,-0.2810814627446234,-0.25810976419597864,-0.4584642490372062,-0.1953867906704545,0.6896042223088443,0.8215875346213579,0.9180886601097882,0.29125051526352763,0.37769703241065145,-0.8831134596839547,0.8492075693793595,0.023717624600976706,0.4636110854335129,-0.14697990380227566,0.673242932651192,0.33629433531314135,0.16199017269536853,-0.7981527987867594,0.9477730910293758,-0.0945529849268496,0.10581491934135556,0.09079449437558651,0.10490100178867579,0.7746799048036337,-0.5608114278875291,-0.04484925186261535,-0.9211890446022153,-0.10792860854417086,-0.25902267219498754,-0.8718408215790987,-0.36218396993353963,0.5977446725592017,0.7270518545992672,-0.49840278504416347,-0.7141905659809709,0.14701214479282498,-0.22490458330139518,0.4949166625738144,0.023837600369006395,0.6911128563806415,-0.6459855614230037,-0.4177708220668137,-0.9177050935104489,-0.8209446663968265,0.2912146532908082,-0.7130960263311863,0.10210821870714426,-0.09115727012977004,-0.0443197344429791,0.5050325496122241,0.3023131159134209,-0.07225232478231192,-0.5857172310352325,-0.7553938599303365,0.8934430466033518,-0.16474856529384851,-0.3532107984647155,0.2635985934175551,0.9824143005535007,-0.5343438009731472,-0.09368072729557753,0.03260737797245383,0.4571067187935114,-0.6937004877254367,0.8076543831266463,-0.4333879230543971,0.47388865146785975,-0.3573518772609532,0.9708279948681593,0.03612440684810281,0.6185495550744236,0.7882922510616481,0.500179361552,-0.8001694930717349,0.42410666309297085,-0.42979109520092607,0.43790040956810117,-0.4045449229888618,0.4026391124352813,0.6376402992755175,0.639392661396414,-0.2218653755262494,0.8614269001409411,-0.6046926029957831,0.6687665884383023,0.16887876158580184,-0.48041132371872663,-0.8452715426683426,-0.35400041099637747,-0.4598066518083215,-0.6629854091443121,0.0836594388820231,0.9943512631580234,-0.8238340220414102,-0.1826554206199944,0.0008693686686456203,0.26501273829489946,0.925428100861609,-0.9367217756807804,-0.5052901082672179,-0.1181840393692255,-0.27187536051496863,-0.38956220308318734,0.052247604355216026,-0.0869839140214026,0.21363913035020232,-0.376974041108042,-0.6856005592271686,-0.972322593908757,0.6847997619770467,-0.13762041926383972,-0.4140145187266171,0.701217032968998,0.07668639440089464,0.710588323418051,0.03244731482118368,0.9768836605362594,-0.01857710350304842,0.0016762218438088894,-0.7310865558683872,0.043543425388634205,-0.7397472048178315,0.7455232045613229,-0.11502389051020145,-0.29026118014007807,0.8091716845519841,0.5499859368428588,0.5319796674884856,0.14159560482949018,0.06909300806000829,-0.5940945171751082,0.5828634449280798,0.9166919677518308,-0.3727726829238236,-0.9347986630164087,0.36135568795725703,-0.029053147416561842,0.8511581430211663,0.16648281970992684,-0.8067483785562217,0.2807554258033633,-0.9244406963698566,0.8032115548849106,-0.21388663863763213,0.42690557800233364,-0.960584091488272,0.7839402612298727,0.9992319205775857,0.47556258039548993,0.4507107548415661,0.27706505358219147,0.2557985782623291,-0.7016119174659252,0.27628128696233034,0.3061008369550109,-0.8402751516550779,0.23752266727387905,-0.14294979302212596,0.6578309652395546,0.6105215535499156,0.5976153141818941,-0.17202024068683386,0.39276266004890203,0.9514299873262644,-0.06743214977905154,0.019520418718457222,-0.7479843911714852,0.6966315424069762,-0.28381121437996626,-0.17041829088702798,0.23010753747075796,-0.3307456034235656,-0.29840709967538714,-0.3245421275496483,0.948363158851862,-0.5646260613575578,0.5320189050398767,-0.10321815870702267,0.5348061807453632,-0.07094167172908783,-0.491759467869997,-0.8712192857638001,0.9300212990492582,0.4141199658624828,0.8460204764269292,-0.40849710581824183,0.5013515530154109,0.6301831272430718,-0.8854762096889317,-0.5113209490664303,0.9888395718298852,-0.14985323045402765,0.32222966849803925,-0.12023374950513244,-0.47852872079238296,0.9479616535827518,-0.7962667788378894,0.9480725713074207,-0.4081709240563214,0.40985919861122966,0.9225612487643957,-0.9508221950381994,-0.4373069112189114,0.9338298332877457,0.99923609290272,0.3053729385137558,-0.5160571788437665,0.5001830602996051,-0.8447439139708877,0.19360757945105433,0.9679037174209952,-0.4753235448151827,0.9137302357703447,0.1194984707981348,0.49102564714848995,-0.5288177360780537,-0.48479313775897026,-0.08649986935779452,-0.3895781342871487,0.16520373290404677,-0.8966534375213087,0.6960695213638246,-0.35318191163241863,0.8042266387492418,0.013379992917180061,0.4600680749863386,0.11147292610257864,0.9598555690608919,-0.7232618778944016,-0.9895055643282831,-0.9660202916711569,-0.03112294292077422,-0.14559555472806096,0.8840975486673415,-0.20894744154065847,0.8816534099169075,-0.9570521721616387,-0.516911210026592,0.8207546616904438,-0.023840358015149832,0.5747385518625379,0.7425982318818569,0.414018040522933,-0.3178220707923174,0.658663778565824,0.21186359971761703,-0.00790555402636528,0.15872033312916756,0.509948349557817,0.04178787209093571,0.7426803112030029,0.03514254745095968,0.07707551494240761,0.917412243783474,0.2731963493861258,-0.04309517936781049,-0.29953062534332275,0.8835346302948892,-0.5332993408665061,-0.8589941272512078,-0.4262911952100694,0.9498712699860334,-0.24101556045934558,0.35396953811869025,-0.7481256062164903,0.8323606769554317,0.3453841609880328,-0.6614136965945363,-0.7623434853740036,0.5872553479857743,-0.8890236946754158,0.9365502945147455,-0.8267817320302129,0.9884083834476769,-0.5561566888354719,0.09821498859673738,0.7500478778965771,0.8172053485177457,0.5482464204542339,-0.6955726630985737,-0.10619107680395246,-0.7157202302478254,0.8061170638538897,-0.22097387863323092,-0.1674854322336614,0.9764580479823053,0.6161804250441492,0.9030149476602674,-0.27859527664259076,0.8005753117613494,0.7808074983768165,0.6070181499235332,-0.34351423056796193,-0.8952533989213407,0.5166693716309965,0.9758042744360864,0.756677991244942,0.9076284701004624,-0.2704138373956084,-0.1774551561102271,-0.9867364764213562,-0.8879120708443224,-0.3818684509024024,0.6847223648801446,0.31503709964454174,0.9261661167256534,-0.03491337597370148,0.2839322159998119,0.01771235466003418,0.9646701961755753,0.5326169184409082,-0.7927658846601844,-0.4013245850801468,-0.5320515492931008,-0.269656746648252,-0.33970912266522646,-0.39571826811879873,0.3220700230449438,-0.14924857718870044,-0.9417844275012612,0.9387206779792905,-0.20193456718698144,0.04643442761152983,-0.34560542181134224,0.7630095588974655,0.4472776763141155,-0.5913820364512503,-0.43319948157295585,-0.9486414566636086,0.49641289841383696,-0.04630719544366002,-0.22795263398438692,-0.06615711562335491,0.6964830928482115,0.3535344288684428,0.8058555577881634,0.041198188439011574,0.4199404534883797,-0.003391583450138569,0.3290632232092321,-0.9058271115645766,0.7027777107432485,-0.15229971893131733,-0.0823809327557683,-0.08848281251266599,-0.7163968924432993,-0.18633624259382486,0.26243417570367455,0.8402345441281796,0.5990315997041762,0.7552933390252292,0.20287557458505034,0.6373558253981173,-0.36937700444832444,-0.7515323352999985,0.8281496898271143,-0.08704967238008976,-0.6660016793757677,-0.5632813544943929,0.7640941590070724,-0.8721134457737207,0.7144986647181213,0.13437042199075222,0.02509741811081767,-0.20305357640609145,-0.9593359511345625,0.6221444136463106,-0.7984160454943776,0.39667905773967505,-0.7699890402145684,-0.3557246522977948,-0.49816090893000364,0.815619045868516,0.8239573761820793,0.9416602025739849,0.6358714168891311,-0.6312439814209938,-0.18331935070455074,-0.42369190603494644,0.3034335137344897,0.3328087250702083,-0.5884550153277814,0.6649253685027361,0.47088728100061417,-0.5505988053046167,-0.06256069988012314,-0.4436095575802028,0.5056098992936313,0.032256441190838814,0.10848828591406345,-0.7092422018758953,0.035869583021849394,-0.7500429735518992,0.09950845036655664,0.959180205129087,0.7678989847190678,-0.8451581201516092,0.12811702070757747,-0.5839998428709805,-0.6525215054862201,0.8978595645166934,0.3450661706738174,-0.7121562948450446,-0.056697600055485964,-0.437651077285409,0.7284560217522085,-0.22026292141526937,-0.6586897075176239,-0.45839045476168394,0.5004235366359353,-0.4878402021713555,0.722627951297909,0.5239172629080713,-0.5715479059144855,0.33240076061338186,-0.4151061987504363,-0.9952286286279559,-0.6660904972814023,-0.07630505040287971,0.14523068349808455,0.9708616123534739,0.04245145292952657,-0.6338322558440268,-0.20021010469645262,0.9151340932585299,0.1746087814681232,0.22701575700193644,-0.47757608303800225,0.6004019058309495,-0.672307382337749,0.6952225645072758,0.25977501878514886,-0.2979487515985966,-0.24006788060069084,0.6629321319051087,-0.4827994373627007,0.7865363811142743,-0.17364851711317897,-0.18509404174983501,-0.8951637335121632,0.29138232860714197,0.8734566811472178,0.9209708790294826,-0.5602623498998582,-0.8506781803444028,-0.12655035220086575,-0.5859442329965532,-0.6049736216664314,-0.83598079578951,0.23509370675310493,0.00467077549546957,-0.5509083159267902,-0.48984235804528,-0.76215426530689,-0.35407475382089615,-0.09085339121520519,-0.20841419324278831,-0.7428603898733854,-0.1983710597269237,-0.11950124381110072,-0.6734280316159129,0.9038258669897914,0.27420722553506494,-0.8604715010151267,0.8180712955072522,0.2751473025418818,0.5716970032081008,0.00851272838190198,0.13138401554897428,-0.9659481826238334,-0.594684383366257,-0.05929311038926244,-0.34830751456320286,0.028015201445668936,0.4795991601422429,0.06559467315673828,-0.5077945278026164,-0.17452980764210224,-0.32237350521609187,-0.7835421497002244,-0.0058250161819159985,-0.1529639079235494,-0.27577862050384283,0.20908788219094276,-0.3095026961527765,0.6196814840659499,0.11716044554486871,0.7585243973881006,0.5190328643657267,0.7762804767116904,-0.655167642980814,0.8059401838108897,0.30161420349031687,-0.08809013571590185,0.31360352877527475,-0.4793692617677152,0.7287009907886386,0.3081857352517545,-0.8639202793128788,-0.13426059298217297,0.265072253998369,0.9286713353358209,0.08742256322875619,-0.0551809505559504,0.09153819270431995,0.06983028305694461,-0.5849825721234083,-0.5058461665175855,-0.9392920061945915,0.7661216054111719,0.45007500145584345,-0.40219930466264486,0.8688965453766286,-0.21643117628991604,0.8661779300309718,0.7777749951928854,-0.541593958158046,0.6769212745130062,0.94791109720245,0.8717264183796942,0.6309299818240106,0.8768354770727456,0.17569966800510883,-0.11480338592082262,0.9617911595851183,0.043517856393009424,-0.14874004945158958,0.4798049353994429,-0.8783796117641032,0.5443935734219849,0.19681204808875918,-0.0649577951990068,-0.22205187240615487,-0.24008412845432758,0.8115121056325734,-0.7868208475410938,0.19087653467431664,-0.44885023264214396,-0.018674496095627546,-0.2767847222276032,0.5338322413153946,0.45787729043513536,0.03138057608157396,0.7927232477813959,-0.016128007788211107,-0.4327648398466408,0.7927633076906204,-0.8729296592064202,-0.25249722227454185,-0.44610849115997553,0.5183138195425272,0.8928585210815072,0.04827282018959522,-0.9790937793441117,-0.06677944725379348,-0.5284731080755591,0.9075866532512009,-0.9051166544668376,-0.5735317720100284,-0.4640758107416332,-0.2818147065117955,-0.5644318605773151,-0.20851242914795876,-0.25636488385498524,0.12379853893071413],"type":"scatter3d"},{"customdata":[["2024-07-25T05:35:06.010000"],["2024-07-25T05:35:07.010000"],["2024-07-25T05:35:08.010000"],["2024-07-25T05:35:09.010000"],["2024-07-25T05:35:10.010000"],["2024-07-25T05:35:11.010000"],["2024-07-25T05:35:12.010000"],["2024-07-25T05:35:13.010000"],["2024-07-25T05:35:14.010000"],["2024-07-25T05:35:15.010000"],["2024-07-25T05:35:16.010000"],["2024-07-25T05:35:17.010000"],["2024-07-25T05:35:18.010000"],["2024-07-25T05:35:19.010000"],["2024-07-25T05:35:20.010000"],["2024-07-25T05:35:21.010000"],["2024-07-25T05:35:22.010000"],["2024-07-25T05:35:23.010000"],["2024-07-25T05:35:24.010000"],["2024-07-25T05:35:25.010000"],["2024-07-25T05:35:26.010000"],["2024-07-25T05:35:27.010000"],["2024-07-25T05:35:28.010000"],["2024-07-25T05:35:29.010000"],["2024-07-25T05:35:30.010000"],["2024-07-25T05:35:31.010000"],["2024-07-25T05:35:32.010000"],["2024-07-25T05:35:33.010000"],["2024-07-25T05:35:34.010000"],["2024-07-25T05:35:35.010000"],["2024-07-25T05:35:36.010000"],["2024-07-25T05:35:37.010000"],["2024-07-25T05:35:38.010000"],["2024-07-25T05:35:39.010000"],["2024-07-25T05:35:40.010000"],["2024-07-25T05:35:41.010000"],["2024-07-25T05:35:42.010000"],["2024-07-25T05:35:43.010000"],["2024-07-25T05:35:44.010000"],["2024-07-25T05:35:45.010000"],["2024-07-25T05:35:46.010000"],["2024-07-25T05:35:47.010000"],["2024-07-25T05:35:48.010000"],["2024-07-25T05:35:49.010000"],["2024-07-25T05:35:50.010000"],["2024-07-25T05:35:51.010000"],["2024-07-25T05:35:52.010000"],["2024-07-25T05:35:53.010000"],["2024-07-25T05:35:54.010000"],["2024-07-25T05:35:55.010000"],["2024-07-25T05:35:56.010000"],["2024-07-25T05:35:57.010000"],["2024-07-25T05:35:58.010000"],["2024-07-25T05:35:59.010000"],["2024-07-25T05:36:00.010000"],["2024-07-25T05:36:01.010000"],["2024-07-25T05:36:02.010000"],["2024-07-25T05:36:03.010000"],["2024-07-25T05:36:04.010000"],["2024-07-25T05:36:05.010000"],["2024-07-25T05:36:06.010000"],["2024-07-25T05:36:07.010000"],["2024-07-25T05:36:08.010000"],["2024-07-25T05:36:09.010000"],["2024-07-25T05:36:10.010000"],["2024-07-25T05:36:11.010000"],["2024-07-25T05:36:12.010000"],["2024-07-25T05:36:13.010000"],["2024-07-25T05:36:14.010000"],["2024-07-25T05:36:15.010000"],["2024-07-25T05:36:16.010000"],["2024-07-25T05:36:17.010000"],["2024-07-25T05:36:18.010000"],["2024-07-25T05:36:19.010000"],["2024-07-25T05:36:20.010000"],["2024-07-25T05:36:21.010000"],["2024-07-25T05:36:22.010000"],["2024-07-25T05:36:23.010000"],["2024-07-25T05:36:24.010000"],["2024-07-25T05:36:25.010000"],["2024-07-25T05:36:26.010000"],["2024-07-25T05:36:27.010000"],["2024-07-25T05:36:28.010000"],["2024-07-25T05:36:29.010000"],["2024-07-25T05:36:30.010000"],["2024-07-25T05:36:31.010000"],["2024-07-25T05:36:32.010000"],["2024-07-25T05:36:33.010000"],["2024-07-25T05:36:34.010000"],["2024-07-25T05:36:35.010000"],["2024-07-25T05:36:36.010000"],["2024-07-25T05:36:37.010000"],["2024-07-25T05:36:38.010000"],["2024-07-25T05:36:39.010000"],["2024-07-25T05:36:40.010000"],["2024-07-25T05:36:41.010000"],["2024-07-25T05:36:42.010000"],["2024-07-25T05:36:43.010000"],["2024-07-25T05:36:44.010000"],["2024-07-25T05:36:45.010000"],["2024-07-25T05:36:46.010000"],["2024-07-25T05:36:47.010000"],["2024-07-25T05:36:48.010000"],["2024-07-25T05:36:49.010000"],["2024-07-25T05:36:50.010000"],["2024-07-25T05:36:51.010000"],["2024-07-25T05:36:52.010000"],["2024-07-25T05:36:53.010000"],["2024-07-25T05:36:54.010000"],["2024-07-25T05:36:55.010000"],["2024-07-25T05:36:56.010000"],["2024-07-25T05:36:57.010000"],["2024-07-25T05:36:58.010000"],["2024-07-25T05:36:59.010000"],["2024-07-25T05:37:00.010000"],["2024-07-25T05:37:01.010000"],["2024-07-25T05:37:02.010000"],["2024-07-25T05:37:03.010000"],["2024-07-25T05:37:04.010000"],["2024-07-25T05:37:05.010000"],["2024-07-25T05:37:06.010000"],["2024-07-25T05:37:07.010000"],["2024-07-25T05:37:08.010000"],["2024-07-25T05:37:09.010000"],["2024-07-25T05:37:10.010000"],["2024-07-25T05:37:11.010000"],["2024-07-25T05:37:12.010000"],["2024-07-25T05:37:13.010000"],["2024-07-25T05:37:14.010000"],["2024-07-25T05:37:15.010000"],["2024-07-25T05:37:16.010000"],["2024-07-25T05:37:17.010000"],["2024-07-25T05:37:18.010000"],["2024-07-25T05:37:19.010000"],["2024-07-25T05:37:20.010000"],["2024-07-25T05:37:21.010000"],["2024-07-25T05:37:22.010000"],["2024-07-25T05:37:23.010000"],["2024-07-25T05:37:24.010000"],["2024-07-25T05:37:25.010000"],["2024-07-25T05:37:26.010000"],["2024-07-25T05:37:27.010000"],["2024-07-25T05:37:28.010000"],["2024-07-25T05:37:29.010000"],["2024-07-25T05:37:30.010000"],["2024-07-25T05:37:31.010000"],["2024-07-25T05:37:32.010000"],["2024-07-25T05:37:33.010000"],["2024-07-25T05:37:34.010000"],["2024-07-25T05:37:35.010000"],["2024-07-25T05:37:36.010000"],["2024-07-25T05:37:37.010000"],["2024-07-25T05:37:38.010000"],["2024-07-25T05:37:39.010000"],["2024-07-25T05:37:40.010000"],["2024-07-25T05:37:41.010000"],["2024-07-25T05:37:42.010000"],["2024-07-25T05:37:43.010000"],["2024-07-25T05:37:44.010000"],["2024-07-25T05:37:45.010000"],["2024-07-25T05:37:46.010000"],["2024-07-25T05:37:47.010000"],["2024-07-25T05:37:48.010000"],["2024-07-25T05:37:49.010000"],["2024-07-25T05:37:50.010000"],["2024-07-25T05:37:51.010000"],["2024-07-25T05:37:52.010000"],["2024-07-25T05:37:53.010000"],["2024-07-25T05:37:54.010000"],["2024-07-25T05:37:55.010000"],["2024-07-25T05:37:56.010000"],["2024-07-25T05:37:57.010000"],["2024-07-25T05:37:58.010000"],["2024-07-25T05:37:59.010000"],["2024-07-25T05:38:00.010000"],["2024-07-25T05:38:01.010000"],["2024-07-25T05:38:02.010000"],["2024-07-25T05:38:03.010000"],["2024-07-25T05:38:04.010000"],["2024-07-25T05:38:05.010000"],["2024-07-25T05:38:06.010000"],["2024-07-25T05:38:07.010000"],["2024-07-25T05:38:08.010000"],["2024-07-25T05:38:09.010000"],["2024-07-25T05:38:10.010000"],["2024-07-25T05:38:11.010000"],["2024-07-25T05:38:12.010000"],["2024-07-25T05:38:13.010000"],["2024-07-25T05:38:14.010000"],["2024-07-25T05:38:15.010000"],["2024-07-25T05:38:16.010000"],["2024-07-25T05:38:17.010000"],["2024-07-25T05:38:18.010000"],["2024-07-25T05:38:19.010000"],["2024-07-25T05:38:20.010000"],["2024-07-25T05:38:21.010000"],["2024-07-25T05:38:22.010000"],["2024-07-25T05:38:23.010000"],["2024-07-25T05:38:24.010000"],["2024-07-25T05:38:25.010000"],["2024-07-25T05:38:26.010000"],["2024-07-25T05:38:27.010000"],["2024-07-25T05:38:28.010000"],["2024-07-25T05:38:29.010000"],["2024-07-25T05:38:30.010000"],["2024-07-25T05:38:31.010000"],["2024-07-25T05:38:32.010000"],["2024-07-25T05:38:33.010000"],["2024-07-25T05:38:34.010000"],["2024-07-25T05:38:35.010000"],["2024-07-25T05:38:36.010000"],["2024-07-25T05:38:37.010000"],["2024-07-25T05:38:38.010000"],["2024-07-25T05:38:39.010000"],["2024-07-25T05:38:40.010000"],["2024-07-25T05:38:41.010000"],["2024-07-25T05:38:42.010000"],["2024-07-25T05:38:43.010000"],["2024-07-25T05:38:44.010000"],["2024-07-25T05:38:45.010000"],["2024-07-25T05:38:46.010000"],["2024-07-25T05:38:47.010000"],["2024-07-25T05:38:48.010000"],["2024-07-25T05:38:49.010000"],["2024-07-25T05:38:50.010000"],["2024-07-25T05:38:51.010000"],["2024-07-25T05:38:52.010000"],["2024-07-25T05:38:53.010000"],["2024-07-25T05:38:54.010000"],["2024-07-25T05:38:55.010000"],["2024-07-25T05:38:56.010000"],["2024-07-25T05:38:57.010000"],["2024-07-25T05:38:58.010000"],["2024-07-25T05:38:59.010000"],["2024-07-25T05:39:00.010000"],["2024-07-25T05:39:01.010000"],["2024-07-25T05:39:02.010000"],["2024-07-25T05:39:03.010000"],["2024-07-25T05:39:04.010000"],["2024-07-25T05:39:05.010000"],["2024-07-25T05:39:06.010000"],["2024-07-25T05:39:07.010000"],["2024-07-25T05:39:08.010000"],["2024-07-25T05:39:09.010000"],["2024-07-25T05:39:10.010000"],["2024-07-25T05:39:11.010000"],["2024-07-25T05:39:12.010000"],["2024-07-25T05:39:13.010000"],["2024-07-25T05:39:14.010000"],["2024-07-25T05:39:15.010000"],["2024-07-25T05:39:16.010000"],["2024-07-25T05:39:17.010000"],["2024-07-25T05:39:18.010000"],["2024-07-25T05:39:19.010000"],["2024-07-25T05:39:20.010000"],["2024-07-25T05:39:21.010000"],["2024-07-25T05:39:22.010000"],["2024-07-25T05:39:23.010000"],["2024-07-25T05:39:24.010000"],["2024-07-25T05:39:25.010000"],["2024-07-25T05:39:26.010000"],["2024-07-25T05:39:27.010000"],["2024-07-25T05:39:28.010000"],["2024-07-25T05:39:29.010000"],["2024-07-25T05:39:30.010000"],["2024-07-25T05:39:31.010000"],["2024-07-25T05:39:32.010000"],["2024-07-25T05:39:33.010000"],["2024-07-25T05:39:34.010000"],["2024-07-25T05:39:35.010000"],["2024-07-25T05:39:36.010000"],["2024-07-25T05:39:37.010000"],["2024-07-25T05:39:38.010000"],["2024-07-25T05:39:39.010000"],["2024-07-25T05:39:40.010000"],["2024-07-25T05:39:41.010000"],["2024-07-25T05:39:42.010000"],["2024-07-25T05:39:43.010000"],["2024-07-25T05:39:44.010000"],["2024-07-25T05:39:45.010000"],["2024-07-25T05:39:46.010000"],["2024-07-25T05:39:47.010000"],["2024-07-25T05:39:48.010000"],["2024-07-25T05:39:49.010000"],["2024-07-25T05:39:50.010000"],["2024-07-25T05:39:51.010000"],["2024-07-25T05:39:52.010000"],["2024-07-25T05:39:53.010000"],["2024-07-25T05:39:54.010000"],["2024-07-25T05:39:55.010000"],["2024-07-25T05:39:56.010000"],["2024-07-25T05:39:57.010000"],["2024-07-25T05:39:58.010000"],["2024-07-25T05:39:59.010000"],["2024-07-25T05:40:00.010000"],["2024-07-25T05:40:01.010000"],["2024-07-25T05:40:02.010000"],["2024-07-25T05:40:03.010000"],["2024-07-25T05:40:04.010000"],["2024-07-25T05:40:05.010000"],["2024-07-25T05:40:06.010000"],["2024-07-25T05:40:07.010000"],["2024-07-25T05:40:08.010000"],["2024-07-25T05:40:09.010000"],["2024-07-25T05:40:10.010000"],["2024-07-25T05:40:11.010000"],["2024-07-25T05:40:12.010000"],["2024-07-25T05:40:13.010000"],["2024-07-25T05:40:14.010000"],["2024-07-25T05:40:15.010000"],["2024-07-25T05:40:16.010000"],["2024-07-25T05:40:17.010000"],["2024-07-25T05:40:18.010000"],["2024-07-25T05:40:19.010000"],["2024-07-25T05:40:20.010000"],["2024-07-25T05:40:21.010000"],["2024-07-25T05:40:22.010000"],["2024-07-25T05:40:23.010000"],["2024-07-25T05:40:24.010000"],["2024-07-25T05:40:25.010000"],["2024-07-25T05:40:26.010000"],["2024-07-25T05:40:27.010000"],["2024-07-25T05:40:28.010000"],["2024-07-25T05:40:29.010000"],["2024-07-25T05:40:30.010000"],["2024-07-25T05:40:31.010000"],["2024-07-25T05:40:32.010000"],["2024-07-25T05:40:33.010000"],["2024-07-25T05:40:34.010000"],["2024-07-25T05:40:35.010000"],["2024-07-25T05:40:36.010000"],["2024-07-25T05:40:37.010000"],["2024-07-25T05:40:38.010000"],["2024-07-25T05:40:39.010000"],["2024-07-25T05:40:40.010000"],["2024-07-25T05:40:41.010000"],["2024-07-25T05:40:42.010000"],["2024-07-25T05:40:43.010000"],["2024-07-25T05:40:44.010000"],["2024-07-25T05:40:45.010000"],["2024-07-25T05:40:46.010000"],["2024-07-25T05:40:47.010000"],["2024-07-25T05:40:48.010000"],["2024-07-25T05:40:49.010000"],["2024-07-25T05:40:50.010000"],["2024-07-25T05:40:51.010000"],["2024-07-25T05:40:52.010000"],["2024-07-25T05:40:53.010000"],["2024-07-25T05:40:54.010000"],["2024-07-25T05:40:55.010000"],["2024-07-25T05:40:56.010000"],["2024-07-25T05:40:57.010000"],["2024-07-25T05:40:58.010000"],["2024-07-25T05:40:59.010000"],["2024-07-25T05:41:00.010000"],["2024-07-25T05:41:01.010000"],["2024-07-25T05:41:02.010000"],["2024-07-25T05:41:03.010000"],["2024-07-25T05:41:04.010000"],["2024-07-25T05:41:05.010000"],["2024-07-25T05:41:06.010000"],["2024-07-25T05:41:07.010000"],["2024-07-25T05:41:08.010000"],["2024-07-25T05:41:09.010000"],["2024-07-25T05:41:10.010000"],["2024-07-25T05:41:11.010000"],["2024-07-25T05:41:12.010000"],["2024-07-25T05:41:13.010000"],["2024-07-25T05:41:14.010000"],["2024-07-25T05:41:15.010000"],["2024-07-25T05:41:16.010000"],["2024-07-25T05:41:17.010000"],["2024-07-25T05:41:18.010000"],["2024-07-25T05:41:19.010000"],["2024-07-25T05:41:20.010000"],["2024-07-25T05:41:21.010000"],["2024-07-25T05:41:22.010000"],["2024-07-25T05:41:23.010000"],["2024-07-25T05:41:24.010000"],["2024-07-25T05:41:25.010000"],["2024-07-25T05:41:26.010000"],["2024-07-25T05:41:27.010000"],["2024-07-25T05:41:28.010000"],["2024-07-25T05:41:29.010000"],["2024-07-25T05:41:30.010000"],["2024-07-25T05:41:31.010000"],["2024-07-25T05:41:32.010000"],["2024-07-25T05:41:33.010000"],["2024-07-25T05:41:34.010000"],["2024-07-25T05:41:35.010000"],["2024-07-25T05:41:36.010000"],["2024-07-25T05:41:37.010000"],["2024-07-25T05:41:38.010000"],["2024-07-25T05:41:39.010000"],["2024-07-25T05:41:40.010000"],["2024-07-25T05:41:41.010000"],["2024-07-25T05:41:42.010000"],["2024-07-25T05:41:43.010000"],["2024-07-25T05:41:44.010000"],["2024-07-25T05:41:45.010000"],["2024-07-25T05:41:46.010000"],["2024-07-25T05:41:47.010000"],["2024-07-25T05:41:48.010000"],["2024-07-25T05:41:49.010000"],["2024-07-25T05:41:50.010000"],["2024-07-25T05:41:51.010000"],["2024-07-25T05:41:52.010000"],["2024-07-25T05:41:53.010000"],["2024-07-25T05:41:54.010000"],["2024-07-25T05:41:55.010000"],["2024-07-25T05:41:56.010000"],["2024-07-25T05:41:57.010000"],["2024-07-25T05:41:58.010000"],["2024-07-25T05:41:59.010000"],["2024-07-25T05:42:00.010000"],["2024-07-25T05:42:01.010000"],["2024-07-25T05:42:02.010000"],["2024-07-25T05:42:03.010000"],["2024-07-25T05:42:04.010000"],["2024-07-25T05:42:05.010000"],["2024-07-25T05:42:06.010000"],["2024-07-25T05:42:07.010000"],["2024-07-25T05:42:08.010000"],["2024-07-25T05:42:09.010000"],["2024-07-25T05:42:10.010000"],["2024-07-25T05:42:11.010000"],["2024-07-25T05:42:12.010000"],["2024-07-25T05:42:13.010000"],["2024-07-25T05:42:14.010000"],["2024-07-25T05:42:15.010000"],["2024-07-25T05:42:16.010000"],["2024-07-25T05:42:17.010000"],["2024-07-25T05:42:18.010000"],["2024-07-25T05:42:19.010000"],["2024-07-25T05:42:20.010000"],["2024-07-25T05:42:21.010000"],["2024-07-25T05:42:22.010000"],["2024-07-25T05:42:23.010000"],["2024-07-25T05:42:24.010000"],["2024-07-25T05:42:25.010000"],["2024-07-25T05:42:26.010000"],["2024-07-25T05:42:27.010000"],["2024-07-25T05:42:28.010000"],["2024-07-25T05:42:29.010000"],["2024-07-25T05:42:30.010000"],["2024-07-25T05:42:31.010000"],["2024-07-25T05:42:32.010000"],["2024-07-25T05:42:33.010000"],["2024-07-25T05:42:34.010000"],["2024-07-25T05:42:35.010000"],["2024-07-25T05:42:36.010000"],["2024-07-25T05:42:37.010000"],["2024-07-25T05:42:38.010000"],["2024-07-25T05:42:39.010000"],["2024-07-25T05:42:40.010000"],["2024-07-25T05:42:41.010000"],["2024-07-25T05:42:42.010000"],["2024-07-25T05:42:43.010000"],["2024-07-25T05:42:44.010000"],["2024-07-25T05:42:45.010000"],["2024-07-25T05:42:46.010000"],["2024-07-25T05:42:47.010000"],["2024-07-25T05:42:48.010000"],["2024-07-25T05:42:49.010000"],["2024-07-25T05:42:50.010000"],["2024-07-25T05:42:51.010000"],["2024-07-25T05:42:52.010000"],["2024-07-25T05:42:53.010000"],["2024-07-25T05:42:54.010000"],["2024-07-25T05:42:55.010000"],["2024-07-25T05:42:56.010000"],["2024-07-25T05:42:57.010000"],["2024-07-25T05:42:58.010000"],["2024-07-25T05:42:59.010000"],["2024-07-25T05:43:00.010000"],["2024-07-25T05:43:01.010000"],["2024-07-25T05:43:02.010000"],["2024-07-25T05:43:03.010000"],["2024-07-25T05:43:04.010000"],["2024-07-25T05:43:05.010000"],["2024-07-25T05:43:06.010000"],["2024-07-25T05:43:07.010000"],["2024-07-25T05:43:08.010000"],["2024-07-25T05:43:09.010000"],["2024-07-25T05:43:10.010000"],["2024-07-25T05:43:11.010000"],["2024-07-25T05:43:12.010000"],["2024-07-25T05:43:13.010000"],["2024-07-25T05:43:14.010000"],["2024-07-25T05:43:15.010000"],["2024-07-25T05:43:16.010000"],["2024-07-25T05:43:17.010000"],["2024-07-25T05:43:18.010000"],["2024-07-25T05:43:19.010000"],["2024-07-25T05:43:20.010000"],["2024-07-25T05:43:21.010000"],["2024-07-25T05:43:22.010000"],["2024-07-25T05:43:23.010000"],["2024-07-25T05:43:24.010000"],["2024-07-25T05:43:25.010000"],["2024-07-25T05:43:26.010000"],["2024-07-25T05:43:27.010000"],["2024-07-25T05:43:28.010000"],["2024-07-25T05:43:29.010000"],["2024-07-25T05:43:30.010000"],["2024-07-25T05:43:31.010000"],["2024-07-25T05:43:32.010000"],["2024-07-25T05:43:33.010000"],["2024-07-25T05:43:34.010000"],["2024-07-25T05:43:35.010000"],["2024-07-25T05:43:36.010000"],["2024-07-25T05:43:37.010000"],["2024-07-25T05:43:38.010000"],["2024-07-25T05:43:39.010000"],["2024-07-25T05:43:40.010000"],["2024-07-25T05:43:41.010000"],["2024-07-25T05:43:42.010000"],["2024-07-25T05:43:43.010000"],["2024-07-25T05:43:44.010000"],["2024-07-25T05:43:45.010000"],["2024-07-25T05:43:46.010000"],["2024-07-25T05:43:47.010000"],["2024-07-25T05:43:48.010000"],["2024-07-25T05:43:49.010000"],["2024-07-25T05:43:50.010000"],["2024-07-25T05:43:51.010000"],["2024-07-25T05:43:52.010000"],["2024-07-25T05:43:53.010000"],["2024-07-25T05:43:54.010000"],["2024-07-25T05:43:55.010000"],["2024-07-25T05:43:56.010000"],["2024-07-25T05:43:57.010000"],["2024-07-25T05:43:58.010000"],["2024-07-25T05:43:59.010000"],["2024-07-25T05:44:00.010000"],["2024-07-25T05:44:01.010000"],["2024-07-25T05:44:02.010000"],["2024-07-25T05:44:03.010000"],["2024-07-25T05:44:04.010000"],["2024-07-25T05:44:05.010000"],["2024-07-25T05:44:06.010000"],["2024-07-25T05:44:07.010000"],["2024-07-25T05:44:08.010000"],["2024-07-25T05:44:09.010000"],["2024-07-25T05:44:10.010000"],["2024-07-25T05:44:11.010000"],["2024-07-25T05:44:12.010000"],["2024-07-25T05:44:13.010000"],["2024-07-25T05:44:14.010000"],["2024-07-25T05:44:15.010000"],["2024-07-25T05:44:16.010000"],["2024-07-25T05:44:17.010000"],["2024-07-25T05:44:18.010000"],["2024-07-25T05:44:19.010000"],["2024-07-25T05:44:20.010000"],["2024-07-25T05:44:21.010000"],["2024-07-25T05:44:22.010000"],["2024-07-25T05:44:23.010000"],["2024-07-25T05:44:24.010000"],["2024-07-25T05:44:25.010000"],["2024-07-25T05:44:26.010000"],["2024-07-25T05:44:27.010000"],["2024-07-25T05:44:28.010000"],["2024-07-25T05:44:29.010000"],["2024-07-25T05:44:30.010000"],["2024-07-25T05:44:31.010000"],["2024-07-25T05:44:32.010000"],["2024-07-25T05:44:33.010000"],["2024-07-25T05:44:34.010000"],["2024-07-25T05:44:35.010000"],["2024-07-25T05:44:36.010000"],["2024-07-25T05:44:37.010000"],["2024-07-25T05:44:38.010000"],["2024-07-25T05:44:39.010000"],["2024-07-25T05:44:40.010000"],["2024-07-25T05:44:41.010000"],["2024-07-25T05:44:42.010000"],["2024-07-25T05:44:43.010000"],["2024-07-25T05:44:44.010000"],["2024-07-25T05:44:45.010000"],["2024-07-25T05:44:46.010000"],["2024-07-25T05:44:47.010000"],["2024-07-25T05:44:48.010000"],["2024-07-25T05:44:49.010000"],["2024-07-25T05:44:50.010000"],["2024-07-25T05:44:51.010000"],["2024-07-25T05:44:52.010000"],["2024-07-25T05:44:53.010000"],["2024-07-25T05:44:54.010000"],["2024-07-25T05:44:55.010000"],["2024-07-25T05:44:56.010000"],["2024-07-25T05:44:57.010000"],["2024-07-25T05:44:58.010000"],["2024-07-25T05:44:59.010000"],["2024-07-25T05:45:00.010000"],["2024-07-25T05:45:01.010000"],["2024-07-25T05:45:02.010000"],["2024-07-25T05:45:03.010000"],["2024-07-25T05:45:04.010000"],["2024-07-25T05:45:05.010000"],["2024-07-25T05:45:06.010000"],["2024-07-25T05:45:07.010000"],["2024-07-25T05:45:08.010000"],["2024-07-25T05:45:09.010000"],["2024-07-25T05:45:10.010000"],["2024-07-25T05:45:11.010000"],["2024-07-25T05:45:12.010000"],["2024-07-25T05:45:13.010000"],["2024-07-25T05:45:14.010000"],["2024-07-25T05:45:15.010000"],["2024-07-25T05:45:16.010000"],["2024-07-25T05:45:17.010000"],["2024-07-25T05:45:18.010000"],["2024-07-25T05:45:19.010000"],["2024-07-25T05:45:20.010000"],["2024-07-25T05:45:21.010000"],["2024-07-25T05:45:22.010000"],["2024-07-25T05:45:23.010000"],["2024-07-25T05:45:24.010000"],["2024-07-25T05:45:25.010000"],["2024-07-25T05:45:26.010000"],["2024-07-25T05:45:27.010000"],["2024-07-25T05:45:28.010000"],["2024-07-25T05:45:29.010000"],["2024-07-25T05:45:30.010000"],["2024-07-25T05:45:31.010000"],["2024-07-25T05:45:32.010000"],["2024-07-25T05:45:33.010000"],["2024-07-25T05:45:34.010000"],["2024-07-25T05:45:35.010000"],["2024-07-25T05:45:36.010000"],["2024-07-25T05:45:37.010000"],["2024-07-25T05:45:38.010000"],["2024-07-25T05:45:39.010000"],["2024-07-25T05:45:40.010000"],["2024-07-25T05:45:41.010000"],["2024-07-25T05:45:42.010000"],["2024-07-25T05:45:43.010000"],["2024-07-25T05:45:44.010000"],["2024-07-25T05:45:45.010000"],["2024-07-25T05:45:46.010000"],["2024-07-25T05:45:47.010000"],["2024-07-25T05:45:48.010000"],["2024-07-25T05:45:49.010000"],["2024-07-25T05:45:50.010000"],["2024-07-25T05:45:51.010000"],["2024-07-25T05:45:52.010000"],["2024-07-25T05:45:53.010000"],["2024-07-25T05:45:54.010000"],["2024-07-25T05:45:55.010000"],["2024-07-25T05:45:56.010000"],["2024-07-25T05:45:57.010000"],["2024-07-25T05:45:58.010000"],["2024-07-25T05:45:59.010000"],["2024-07-25T05:46:00.010000"],["2024-07-25T05:46:01.010000"],["2024-07-25T05:46:02.010000"],["2024-07-25T05:46:03.010000"],["2024-07-25T05:46:04.010000"],["2024-07-25T05:46:05.010000"],["2024-07-25T05:46:06.010000"],["2024-07-25T05:46:07.010000"],["2024-07-25T05:46:08.010000"],["2024-07-25T05:46:09.010000"],["2024-07-25T05:46:10.010000"],["2024-07-25T05:46:11.010000"],["2024-07-25T05:46:12.010000"],["2024-07-25T05:46:13.010000"],["2024-07-25T05:46:14.010000"],["2024-07-25T05:46:15.010000"],["2024-07-25T05:46:16.010000"],["2024-07-25T05:46:17.010000"],["2024-07-25T05:46:18.010000"],["2024-07-25T05:46:19.010000"],["2024-07-25T05:46:20.010000"],["2024-07-25T05:46:21.010000"],["2024-07-25T05:46:22.010000"],["2024-07-25T05:46:23.010000"],["2024-07-25T05:46:24.010000"],["2024-07-25T05:46:25.010000"],["2024-07-25T05:46:26.010000"],["2024-07-25T05:46:27.010000"],["2024-07-25T05:46:28.010000"],["2024-07-25T05:46:29.010000"],["2024-07-25T05:46:30.010000"],["2024-07-25T05:46:31.010000"],["2024-07-25T05:46:32.010000"],["2024-07-25T05:46:33.010000"],["2024-07-25T05:46:34.010000"],["2024-07-25T05:46:35.010000"],["2024-07-25T05:46:36.010000"],["2024-07-25T05:46:37.010000"],["2024-07-25T05:46:38.010000"],["2024-07-25T05:46:39.010000"],["2024-07-25T05:46:40.010000"],["2024-07-25T05:46:41.010000"],["2024-07-25T05:46:42.010000"],["2024-07-25T05:46:43.010000"],["2024-07-25T05:46:44.010000"],["2024-07-25T05:46:45.010000"],["2024-07-25T05:46:46.010000"],["2024-07-25T05:46:47.010000"],["2024-07-25T05:46:48.010000"],["2024-07-25T05:46:49.010000"],["2024-07-25T05:46:50.010000"],["2024-07-25T05:46:51.010000"],["2024-07-25T05:46:52.010000"],["2024-07-25T05:46:53.010000"],["2024-07-25T05:46:54.010000"],["2024-07-25T05:46:55.010000"],["2024-07-25T05:46:56.010000"],["2024-07-25T05:46:57.010000"],["2024-07-25T05:46:58.010000"],["2024-07-25T05:46:59.010000"],["2024-07-25T05:47:00.010000"],["2024-07-25T05:47:01.010000"],["2024-07-25T05:47:02.010000"],["2024-07-25T05:47:03.010000"],["2024-07-25T05:47:04.010000"],["2024-07-25T05:47:05.010000"],["2024-07-25T05:47:06.010000"],["2024-07-25T05:47:07.010000"],["2024-07-25T05:47:08.010000"],["2024-07-25T05:47:09.010000"],["2024-07-25T05:47:10.010000"],["2024-07-25T05:47:11.010000"],["2024-07-25T05:47:12.010000"],["2024-07-25T05:47:13.010000"],["2024-07-25T05:47:14.010000"],["2024-07-25T05:47:15.010000"],["2024-07-25T05:47:16.010000"],["2024-07-25T05:47:17.010000"],["2024-07-25T05:47:18.010000"],["2024-07-25T05:47:19.010000"],["2024-07-25T05:47:20.010000"],["2024-07-25T05:47:21.010000"],["2024-07-25T05:47:22.010000"],["2024-07-25T05:47:23.010000"],["2024-07-25T05:47:24.010000"],["2024-07-25T05:47:25.010000"],["2024-07-25T05:47:26.010000"],["2024-07-25T05:47:27.010000"],["2024-07-25T05:47:28.010000"],["2024-07-25T05:47:29.010000"],["2024-07-25T05:47:30.010000"],["2024-07-25T05:47:31.010000"],["2024-07-25T05:47:32.010000"],["2024-07-25T05:47:33.010000"],["2024-07-25T05:47:34.010000"],["2024-07-25T05:47:35.010000"],["2024-07-25T05:47:36.010000"],["2024-07-25T05:47:37.010000"],["2024-07-25T05:47:38.010000"],["2024-07-25T05:47:39.010000"],["2024-07-25T05:47:40.010000"],["2024-07-25T05:47:41.010000"],["2024-07-25T05:47:42.010000"],["2024-07-25T05:47:43.010000"],["2024-07-25T05:47:44.010000"],["2024-07-25T05:47:45.010000"],["2024-07-25T05:47:46.010000"],["2024-07-25T05:47:47.010000"],["2024-07-25T05:47:48.010000"],["2024-07-25T05:47:49.010000"],["2024-07-25T05:47:50.010000"],["2024-07-25T05:47:51.010000"],["2024-07-25T05:47:52.010000"],["2024-07-25T05:47:53.010000"],["2024-07-25T05:47:54.010000"],["2024-07-25T05:47:55.010000"],["2024-07-25T05:47:56.010000"],["2024-07-25T05:47:57.010000"],["2024-07-25T05:47:58.010000"],["2024-07-25T05:47:59.010000"],["2024-07-25T05:48:00.010000"],["2024-07-25T05:48:01.010000"],["2024-07-25T05:48:02.010000"],["2024-07-25T05:48:03.010000"],["2024-07-25T05:48:04.010000"],["2024-07-25T05:48:05.010000"],["2024-07-25T05:48:06.010000"],["2024-07-25T05:48:07.010000"],["2024-07-25T05:48:08.010000"],["2024-07-25T05:48:09.010000"],["2024-07-25T05:48:10.010000"],["2024-07-25T05:48:11.010000"],["2024-07-25T05:48:12.010000"],["2024-07-25T05:48:13.010000"],["2024-07-25T05:48:14.010000"],["2024-07-25T05:48:15.010000"],["2024-07-25T05:48:16.010000"],["2024-07-25T05:48:17.010000"],["2024-07-25T05:48:18.010000"],["2024-07-25T05:48:19.010000"],["2024-07-25T05:48:20.010000"],["2024-07-25T05:48:21.010000"],["2024-07-25T05:48:22.010000"],["2024-07-25T05:48:23.010000"],["2024-07-25T05:48:24.010000"],["2024-07-25T05:48:25.010000"],["2024-07-25T05:48:26.010000"],["2024-07-25T05:48:27.010000"],["2024-07-25T05:48:28.010000"],["2024-07-25T05:48:29.010000"],["2024-07-25T05:48:30.010000"],["2024-07-25T05:48:31.010000"],["2024-07-25T05:48:32.010000"],["2024-07-25T05:48:33.010000"],["2024-07-25T05:48:34.010000"],["2024-07-25T05:48:35.010000"],["2024-07-25T05:48:36.010000"],["2024-07-25T05:48:37.010000"],["2024-07-25T05:48:38.010000"],["2024-07-25T05:48:39.010000"],["2024-07-25T05:48:40.010000"],["2024-07-25T05:48:41.010000"],["2024-07-25T05:48:42.010000"],["2024-07-25T05:48:43.010000"],["2024-07-25T05:48:44.010000"],["2024-07-25T05:48:45.010000"],["2024-07-25T05:48:46.010000"],["2024-07-25T05:48:47.010000"],["2024-07-25T05:48:48.010000"],["2024-07-25T05:48:49.010000"],["2024-07-25T05:48:50.010000"],["2024-07-25T05:48:51.010000"],["2024-07-25T05:48:52.010000"],["2024-07-25T05:48:53.010000"],["2024-07-25T05:48:54.010000"],["2024-07-25T05:48:55.010000"],["2024-07-25T05:48:56.010000"],["2024-07-25T05:48:57.010000"],["2024-07-25T05:48:58.010000"],["2024-07-25T05:48:59.010000"],["2024-07-25T05:49:00.010000"],["2024-07-25T05:49:01.010000"],["2024-07-25T05:49:02.010000"],["2024-07-25T05:49:03.010000"],["2024-07-25T05:49:04.010000"],["2024-07-25T05:49:05.010000"],["2024-07-25T05:49:06.010000"],["2024-07-25T05:49:07.010000"],["2024-07-25T05:49:08.010000"],["2024-07-25T05:49:09.010000"],["2024-07-25T05:49:10.010000"],["2024-07-25T05:49:11.010000"],["2024-07-25T05:49:12.010000"],["2024-07-25T05:49:13.010000"],["2024-07-25T05:49:14.010000"],["2024-07-25T05:49:15.010000"],["2024-07-25T05:49:16.010000"],["2024-07-25T05:49:17.010000"],["2024-07-25T05:49:18.010000"],["2024-07-25T05:49:19.010000"],["2024-07-25T05:49:20.010000"],["2024-07-25T05:49:21.010000"],["2024-07-25T05:49:22.010000"],["2024-07-25T05:49:23.010000"],["2024-07-25T05:49:24.010000"],["2024-07-25T05:49:25.010000"],["2024-07-25T05:49:26.010000"],["2024-07-25T05:49:27.010000"],["2024-07-25T05:49:28.010000"],["2024-07-25T05:49:29.010000"],["2024-07-25T05:49:30.010000"],["2024-07-25T05:49:31.010000"],["2024-07-25T05:49:32.010000"],["2024-07-25T05:49:33.010000"],["2024-07-25T05:49:34.010000"],["2024-07-25T05:49:35.010000"],["2024-07-25T05:49:36.010000"],["2024-07-25T05:49:37.010000"],["2024-07-25T05:49:38.010000"],["2024-07-25T05:49:39.010000"],["2024-07-25T05:49:40.010000"],["2024-07-25T05:49:41.010000"],["2024-07-25T05:49:42.010000"],["2024-07-25T05:49:43.010000"],["2024-07-25T05:49:44.010000"],["2024-07-25T05:49:45.010000"],["2024-07-25T05:49:46.010000"],["2024-07-25T05:49:47.010000"],["2024-07-25T05:49:48.010000"],["2024-07-25T05:49:49.010000"],["2024-07-25T05:49:50.010000"],["2024-07-25T05:49:51.010000"],["2024-07-25T05:49:52.010000"],["2024-07-25T05:49:53.010000"],["2024-07-25T05:49:54.010000"],["2024-07-25T05:49:55.010000"],["2024-07-25T05:49:56.010000"],["2024-07-25T05:49:57.010000"],["2024-07-25T05:49:58.010000"],["2024-07-25T05:49:59.010000"],["2024-07-25T05:50:00.010000"],["2024-07-25T05:50:01.010000"],["2024-07-25T05:50:02.010000"],["2024-07-25T05:50:03.010000"],["2024-07-25T05:50:04.010000"],["2024-07-25T05:50:05.010000"],["2024-07-25T05:50:06.010000"],["2024-07-25T05:50:07.010000"],["2024-07-25T05:50:08.010000"],["2024-07-25T05:50:09.010000"],["2024-07-25T05:50:10.010000"],["2024-07-25T05:50:11.010000"],["2024-07-25T05:50:12.010000"],["2024-07-25T05:50:13.010000"],["2024-07-25T05:50:14.010000"],["2024-07-25T05:50:15.010000"],["2024-07-25T05:50:16.010000"],["2024-07-25T05:50:17.010000"],["2024-07-25T05:50:18.010000"],["2024-07-25T05:50:19.010000"],["2024-07-25T05:50:20.010000"],["2024-07-25T05:50:21.010000"],["2024-07-25T05:50:22.010000"],["2024-07-25T05:50:23.010000"],["2024-07-25T05:50:24.010000"],["2024-07-25T05:50:25.010000"],["2024-07-25T05:50:26.010000"],["2024-07-25T05:50:27.010000"],["2024-07-25T05:50:28.010000"],["2024-07-25T05:50:29.010000"],["2024-07-25T05:50:30.010000"],["2024-07-25T05:50:31.010000"],["2024-07-25T05:50:32.010000"],["2024-07-25T05:50:33.010000"],["2024-07-25T05:50:34.010000"],["2024-07-25T05:50:35.010000"],["2024-07-25T05:50:36.010000"],["2024-07-25T05:50:37.010000"],["2024-07-25T05:50:38.010000"],["2024-07-25T05:50:39.010000"],["2024-07-25T05:50:40.010000"],["2024-07-25T05:50:41.010000"],["2024-07-25T05:50:42.010000"],["2024-07-25T05:50:43.010000"],["2024-07-25T05:50:44.010000"],["2024-07-25T05:50:45.010000"],["2024-07-25T05:50:46.010000"],["2024-07-25T05:50:47.010000"],["2024-07-25T05:50:48.010000"],["2024-07-25T05:50:49.010000"],["2024-07-25T05:50:50.010000"],["2024-07-25T05:50:51.010000"],["2024-07-25T05:50:52.010000"],["2024-07-25T05:50:53.010000"],["2024-07-25T05:50:54.010000"],["2024-07-25T05:50:55.010000"],["2024-07-25T05:50:56.010000"],["2024-07-25T05:50:57.010000"],["2024-07-25T05:50:58.010000"],["2024-07-25T05:50:59.010000"],["2024-07-25T05:51:00.010000"],["2024-07-25T05:51:01.010000"],["2024-07-25T05:51:02.010000"],["2024-07-25T05:51:03.010000"],["2024-07-25T05:51:04.010000"],["2024-07-25T05:51:05.010000"],["2024-07-25T05:51:06.010000"],["2024-07-25T05:51:07.010000"],["2024-07-25T05:51:08.010000"],["2024-07-25T05:51:09.010000"],["2024-07-25T05:51:10.010000"],["2024-07-25T05:51:11.010000"],["2024-07-25T05:51:12.010000"],["2024-07-25T05:51:13.010000"],["2024-07-25T05:51:14.010000"],["2024-07-25T05:51:15.010000"],["2024-07-25T05:51:16.010000"],["2024-07-25T05:51:17.010000"],["2024-07-25T05:51:18.010000"],["2024-07-25T05:51:19.010000"],["2024-07-25T05:51:20.010000"],["2024-07-25T05:51:21.010000"],["2024-07-25T05:51:22.010000"],["2024-07-25T05:51:23.010000"],["2024-07-25T05:51:24.010000"],["2024-07-25T05:51:25.010000"],["2024-07-25T05:51:26.010000"],["2024-07-25T05:51:27.010000"],["2024-07-25T05:51:28.010000"],["2024-07-25T05:51:29.010000"],["2024-07-25T05:51:30.010000"],["2024-07-25T05:51:31.010000"],["2024-07-25T05:51:32.010000"],["2024-07-25T05:51:33.010000"],["2024-07-25T05:51:34.010000"],["2024-07-25T05:51:35.010000"],["2024-07-25T05:51:36.010000"],["2024-07-25T05:51:37.010000"],["2024-07-25T05:51:38.010000"],["2024-07-25T05:51:39.010000"],["2024-07-25T05:51:40.010000"],["2024-07-25T05:51:41.010000"],["2024-07-25T05:51:42.010000"],["2024-07-25T05:51:43.010000"],["2024-07-25T05:51:44.010000"],["2024-07-25T05:51:45.010000"],["2024-07-25T05:51:46.010000"],["2024-07-25T05:51:47.010000"],["2024-07-25T05:51:48.010000"],["2024-07-25T05:51:49.010000"],["2024-07-25T05:51:50.010000"],["2024-07-25T05:51:51.010000"],["2024-07-25T05:51:52.010000"],["2024-07-25T05:51:53.010000"],["2024-07-25T05:51:54.010000"],["2024-07-25T05:51:55.010000"],["2024-07-25T05:51:56.010000"],["2024-07-25T05:51:57.010000"],["2024-07-25T05:51:58.010000"],["2024-07-25T05:51:59.010000"],["2024-07-25T05:52:00.010000"],["2024-07-25T05:52:01.010000"],["2024-07-25T05:52:02.010000"],["2024-07-25T05:52:03.010000"],["2024-07-25T05:52:04.010000"],["2024-07-25T05:52:05.010000"],["2024-07-25T05:52:06.010000"],["2024-07-25T05:52:07.010000"],["2024-07-25T05:52:08.010000"],["2024-07-25T05:52:09.010000"],["2024-07-25T05:52:10.010000"],["2024-07-25T05:52:11.010000"],["2024-07-25T05:52:12.010000"],["2024-07-25T05:52:13.010000"],["2024-07-25T05:52:14.010000"],["2024-07-25T05:52:15.010000"],["2024-07-25T05:52:16.010000"],["2024-07-25T05:52:17.010000"],["2024-07-25T05:52:18.010000"],["2024-07-25T05:52:19.010000"],["2024-07-25T05:52:20.010000"],["2024-07-25T05:52:21.010000"],["2024-07-25T05:52:22.010000"],["2024-07-25T05:52:23.010000"],["2024-07-25T05:52:24.010000"],["2024-07-25T05:52:25.010000"],["2024-07-25T05:52:26.010000"],["2024-07-25T05:52:27.010000"],["2024-07-25T05:52:28.010000"],["2024-07-25T05:52:29.010000"],["2024-07-25T05:52:30.010000"],["2024-07-25T05:52:31.010000"],["2024-07-25T05:52:32.010000"],["2024-07-25T05:52:33.010000"],["2024-07-25T05:52:34.010000"],["2024-07-25T05:52:35.010000"],["2024-07-25T05:52:36.010000"],["2024-07-25T05:52:37.010000"],["2024-07-25T05:52:38.010000"],["2024-07-25T05:52:39.010000"],["2024-07-25T05:52:40.010000"],["2024-07-25T05:52:41.010000"],["2024-07-25T05:52:42.010000"],["2024-07-25T05:52:43.010000"],["2024-07-25T05:52:44.010000"],["2024-07-25T05:52:45.010000"],["2024-07-25T05:52:46.010000"],["2024-07-25T05:52:47.010000"],["2024-07-25T05:52:48.010000"],["2024-07-25T05:52:49.010000"],["2024-07-25T05:52:50.010000"],["2024-07-25T05:52:51.010000"],["2024-07-25T05:52:52.010000"],["2024-07-25T05:52:53.010000"],["2024-07-25T05:52:54.010000"],["2024-07-25T05:52:55.010000"],["2024-07-25T05:52:56.010000"],["2024-07-25T05:52:57.010000"],["2024-07-25T05:52:58.010000"],["2024-07-25T05:52:59.010000"],["2024-07-25T05:53:00.010000"],["2024-07-25T05:53:01.010000"],["2024-07-25T05:53:02.010000"],["2024-07-25T05:53:03.010000"],["2024-07-25T05:53:04.010000"],["2024-07-25T05:53:05.010000"],["2024-07-25T05:53:06.010000"],["2024-07-25T05:53:07.010000"],["2024-07-25T05:53:08.010000"],["2024-07-25T05:53:09.010000"],["2024-07-25T05:53:10.010000"],["2024-07-25T05:53:11.010000"],["2024-07-25T05:53:12.010000"],["2024-07-25T05:53:13.010000"],["2024-07-25T05:53:14.010000"],["2024-07-25T05:53:15.010000"],["2024-07-25T05:53:16.010000"],["2024-07-25T05:53:17.010000"],["2024-07-25T05:53:18.010000"],["2024-07-25T05:53:19.010000"],["2024-07-25T05:53:20.010000"],["2024-07-25T05:53:21.010000"],["2024-07-25T05:53:22.010000"],["2024-07-25T05:53:23.010000"],["2024-07-25T05:53:24.010000"],["2024-07-25T05:53:25.010000"],["2024-07-25T05:53:26.010000"],["2024-07-25T05:53:27.010000"],["2024-07-25T05:53:28.010000"],["2024-07-25T05:53:29.010000"],["2024-07-25T05:53:30.010000"],["2024-07-25T05:53:31.010000"],["2024-07-25T05:53:32.010000"],["2024-07-25T05:53:33.010000"],["2024-07-25T05:53:34.010000"],["2024-07-25T05:53:35.010000"],["2024-07-25T05:53:36.010000"],["2024-07-25T05:53:37.010000"],["2024-07-25T05:53:38.010000"],["2024-07-25T05:53:39.010000"],["2024-07-25T05:53:40.010000"],["2024-07-25T05:53:41.010000"],["2024-07-25T05:53:42.010000"],["2024-07-25T05:53:43.010000"],["2024-07-25T05:53:44.010000"],["2024-07-25T05:53:45.010000"],["2024-07-25T05:53:46.010000"],["2024-07-25T05:53:47.010000"],["2024-07-25T05:53:48.010000"],["2024-07-25T05:53:49.010000"],["2024-07-25T05:53:50.010000"],["2024-07-25T05:53:51.010000"],["2024-07-25T05:53:52.010000"],["2024-07-25T05:53:53.010000"],["2024-07-25T05:53:54.010000"],["2024-07-25T05:53:55.010000"],["2024-07-25T05:53:56.010000"],["2024-07-25T05:53:57.010000"],["2024-07-25T05:53:58.010000"],["2024-07-25T05:53:59.010000"],["2024-07-25T05:54:00.010000"],["2024-07-25T05:54:01.010000"],["2024-07-25T05:54:02.010000"],["2024-07-25T05:54:03.010000"],["2024-07-25T05:54:04.010000"],["2024-07-25T05:54:05.010000"],["2024-07-25T05:54:06.010000"],["2024-07-25T05:54:07.010000"],["2024-07-25T05:54:08.010000"],["2024-07-25T05:54:09.010000"],["2024-07-25T05:54:10.010000"],["2024-07-25T05:54:11.010000"],["2024-07-25T05:54:12.010000"],["2024-07-25T05:54:13.010000"],["2024-07-25T05:54:14.010000"],["2024-07-25T05:54:15.010000"],["2024-07-25T05:54:16.010000"],["2024-07-25T05:54:17.010000"],["2024-07-25T05:54:18.010000"],["2024-07-25T05:54:19.010000"],["2024-07-25T05:54:20.010000"],["2024-07-25T05:54:21.010000"],["2024-07-25T05:54:22.010000"],["2024-07-25T05:54:23.010000"],["2024-07-25T05:54:24.010000"],["2024-07-25T05:54:25.010000"],["2024-07-25T05:54:26.010000"],["2024-07-25T05:54:27.010000"],["2024-07-25T05:54:28.010000"],["2024-07-25T05:54:29.010000"],["2024-07-25T05:54:30.010000"],["2024-07-25T05:54:31.010000"],["2024-07-25T05:54:32.010000"],["2024-07-25T05:54:33.010000"],["2024-07-25T05:54:34.010000"],["2024-07-25T05:54:35.010000"],["2024-07-25T05:54:36.010000"],["2024-07-25T05:54:37.010000"],["2024-07-25T05:54:38.010000"],["2024-07-25T05:54:39.010000"],["2024-07-25T05:54:40.010000"],["2024-07-25T05:54:41.010000"],["2024-07-25T05:54:42.010000"],["2024-07-25T05:54:43.010000"],["2024-07-25T05:54:44.010000"],["2024-07-25T05:54:45.010000"],["2024-07-25T05:54:46.010000"],["2024-07-25T05:54:47.010000"],["2024-07-25T05:54:48.010000"],["2024-07-25T05:54:49.010000"],["2024-07-25T05:54:50.010000"],["2024-07-25T05:54:51.010000"],["2024-07-25T05:54:52.010000"],["2024-07-25T05:54:53.010000"],["2024-07-25T05:54:54.010000"],["2024-07-25T05:54:55.010000"],["2024-07-25T05:54:56.010000"],["2024-07-25T05:54:57.010000"],["2024-07-25T05:54:58.010000"],["2024-07-25T05:54:59.010000"],["2024-07-25T05:55:00.010000"],["2024-07-25T05:55:01.010000"],["2024-07-25T05:55:02.010000"],["2024-07-25T05:55:03.010000"],["2024-07-25T05:55:04.010000"],["2024-07-25T05:55:05.010000"],["2024-07-25T05:55:06.010000"],["2024-07-25T05:55:07.010000"],["2024-07-25T05:55:08.010000"],["2024-07-25T05:55:09.010000"],["2024-07-25T05:55:10.010000"],["2024-07-25T05:55:11.010000"],["2024-07-25T05:55:12.010000"],["2024-07-25T05:55:13.010000"],["2024-07-25T05:55:14.010000"],["2024-07-25T05:55:15.010000"],["2024-07-25T05:55:16.010000"],["2024-07-25T05:55:17.010000"],["2024-07-25T05:55:18.010000"],["2024-07-25T05:55:19.010000"],["2024-07-25T05:55:20.010000"],["2024-07-25T05:55:21.010000"],["2024-07-25T05:55:22.010000"],["2024-07-25T05:55:23.010000"],["2024-07-25T05:55:24.010000"],["2024-07-25T05:55:25.010000"],["2024-07-25T05:55:26.010000"],["2024-07-25T05:55:27.010000"],["2024-07-25T05:55:28.010000"],["2024-07-25T05:55:29.010000"],["2024-07-25T05:55:30.010000"],["2024-07-25T05:55:31.010000"],["2024-07-25T05:55:32.010000"],["2024-07-25T05:55:33.010000"],["2024-07-25T05:55:34.010000"],["2024-07-25T05:55:35.010000"],["2024-07-25T05:55:36.010000"],["2024-07-25T05:55:37.010000"],["2024-07-25T05:55:38.010000"],["2024-07-25T05:55:39.010000"],["2024-07-25T05:55:40.010000"],["2024-07-25T05:55:41.010000"],["2024-07-25T05:55:42.010000"],["2024-07-25T05:55:43.010000"],["2024-07-25T05:55:44.010000"],["2024-07-25T05:55:45.010000"],["2024-07-25T05:55:46.010000"],["2024-07-25T05:55:47.010000"],["2024-07-25T05:55:48.010000"],["2024-07-25T05:55:49.010000"],["2024-07-25T05:55:50.010000"],["2024-07-25T05:55:51.010000"],["2024-07-25T05:55:52.010000"],["2024-07-25T05:55:53.010000"],["2024-07-25T05:55:54.010000"],["2024-07-25T05:55:55.010000"],["2024-07-25T05:55:56.010000"],["2024-07-25T05:55:57.010000"],["2024-07-25T05:55:58.010000"],["2024-07-25T05:55:59.010000"],["2024-07-25T05:56:00.010000"],["2024-07-25T05:56:01.010000"],["2024-07-25T05:56:02.010000"],["2024-07-25T05:56:03.010000"],["2024-07-25T05:56:04.010000"],["2024-07-25T05:56:05.010000"],["2024-07-25T05:56:06.010000"],["2024-07-25T05:56:07.010000"],["2024-07-25T05:56:08.010000"],["2024-07-25T05:56:09.010000"],["2024-07-25T05:56:10.010000"],["2024-07-25T05:56:11.010000"],["2024-07-25T05:56:12.010000"],["2024-07-25T05:56:13.010000"],["2024-07-25T05:56:14.010000"],["2024-07-25T05:56:15.010000"],["2024-07-25T05:56:16.010000"],["2024-07-25T05:56:17.010000"],["2024-07-25T05:56:18.010000"],["2024-07-25T05:56:19.010000"],["2024-07-25T05:56:20.010000"],["2024-07-25T05:56:21.010000"],["2024-07-25T05:56:22.010000"],["2024-07-25T05:56:23.010000"],["2024-07-25T05:56:24.010000"],["2024-07-25T05:56:25.010000"],["2024-07-25T05:56:26.010000"],["2024-07-25T05:56:27.010000"],["2024-07-25T05:56:28.010000"],["2024-07-25T05:56:29.010000"],["2024-07-25T05:56:30.010000"],["2024-07-25T05:56:31.010000"],["2024-07-25T05:56:32.010000"],["2024-07-25T05:56:33.010000"],["2024-07-25T05:56:34.010000"],["2024-07-25T05:56:35.010000"],["2024-07-25T05:56:36.010000"],["2024-07-25T05:56:37.010000"],["2024-07-25T05:56:38.010000"],["2024-07-25T05:56:39.010000"],["2024-07-25T05:56:40.010000"],["2024-07-25T05:56:41.010000"],["2024-07-25T05:56:42.010000"],["2024-07-25T05:56:43.010000"],["2024-07-25T05:56:44.010000"],["2024-07-25T05:56:45.010000"],["2024-07-25T05:56:46.010000"],["2024-07-25T05:56:47.010000"],["2024-07-25T05:56:48.010000"],["2024-07-25T05:56:49.010000"],["2024-07-25T05:56:50.010000"],["2024-07-25T05:56:51.010000"],["2024-07-25T05:56:52.010000"],["2024-07-25T05:56:53.010000"],["2024-07-25T05:56:54.010000"],["2024-07-25T05:56:55.010000"],["2024-07-25T05:56:56.010000"],["2024-07-25T05:56:57.010000"],["2024-07-25T05:56:58.010000"],["2024-07-25T05:56:59.010000"],["2024-07-25T05:57:00.010000"],["2024-07-25T05:57:01.010000"],["2024-07-25T05:57:02.010000"],["2024-07-25T05:57:03.010000"],["2024-07-25T05:57:04.010000"],["2024-07-25T05:57:05.010000"],["2024-07-25T05:57:06.010000"],["2024-07-25T05:57:07.010000"],["2024-07-25T05:57:08.010000"],["2024-07-25T05:57:09.010000"],["2024-07-25T05:57:10.010000"],["2024-07-25T05:57:11.010000"],["2024-07-25T05:57:12.010000"],["2024-07-25T05:57:13.010000"],["2024-07-25T05:57:14.010000"],["2024-07-25T05:57:15.010000"],["2024-07-25T05:57:16.010000"],["2024-07-25T05:57:17.010000"],["2024-07-25T05:57:18.010000"],["2024-07-25T05:57:19.010000"],["2024-07-25T05:57:20.010000"],["2024-07-25T05:57:21.010000"],["2024-07-25T05:57:22.010000"],["2024-07-25T05:57:23.010000"],["2024-07-25T05:57:24.010000"],["2024-07-25T05:57:25.010000"],["2024-07-25T05:57:26.010000"],["2024-07-25T05:57:27.010000"],["2024-07-25T05:57:28.010000"],["2024-07-25T05:57:29.010000"],["2024-07-25T05:57:30.010000"],["2024-07-25T05:57:31.010000"],["2024-07-25T05:57:32.010000"],["2024-07-25T05:57:33.010000"],["2024-07-25T05:57:34.010000"],["2024-07-25T05:57:35.010000"],["2024-07-25T05:57:36.010000"],["2024-07-25T05:57:37.010000"],["2024-07-25T05:57:38.010000"],["2024-07-25T05:57:39.010000"],["2024-07-25T05:57:40.010000"],["2024-07-25T05:57:41.010000"],["2024-07-25T05:57:42.010000"],["2024-07-25T05:57:43.010000"],["2024-07-25T05:57:44.010000"],["2024-07-25T05:57:45.010000"],["2024-07-25T05:57:46.010000"],["2024-07-25T05:57:47.010000"],["2024-07-25T05:57:48.010000"],["2024-07-25T05:57:49.010000"],["2024-07-25T05:57:50.010000"],["2024-07-25T05:57:51.010000"],["2024-07-25T05:57:52.010000"],["2024-07-25T05:57:53.010000"],["2024-07-25T05:57:54.010000"],["2024-07-25T05:57:55.010000"],["2024-07-25T05:57:56.010000"],["2024-07-25T05:57:57.010000"],["2024-07-25T05:57:58.010000"],["2024-07-25T05:57:59.010000"],["2024-07-25T05:58:00.010000"],["2024-07-25T05:58:01.010000"],["2024-07-25T05:58:02.010000"],["2024-07-25T05:58:03.010000"],["2024-07-25T05:58:04.010000"],["2024-07-25T05:58:05.010000"],["2024-07-25T05:58:06.010000"],["2024-07-25T05:58:07.010000"],["2024-07-25T05:58:08.010000"],["2024-07-25T05:58:09.010000"],["2024-07-25T05:58:10.010000"],["2024-07-25T05:58:11.010000"],["2024-07-25T05:58:12.010000"],["2024-07-25T05:58:13.010000"],["2024-07-25T05:58:14.010000"],["2024-07-25T05:58:15.010000"],["2024-07-25T05:58:16.010000"],["2024-07-25T05:58:17.010000"],["2024-07-25T05:58:18.010000"],["2024-07-25T05:58:19.010000"],["2024-07-25T05:58:20.010000"],["2024-07-25T05:58:21.010000"],["2024-07-25T05:58:22.010000"],["2024-07-25T05:58:23.010000"],["2024-07-25T05:58:24.010000"],["2024-07-25T05:58:25.010000"],["2024-07-25T05:58:26.010000"],["2024-07-25T05:58:27.010000"],["2024-07-25T05:58:28.010000"],["2024-07-25T05:58:29.010000"],["2024-07-25T05:58:30.010000"],["2024-07-25T05:58:31.010000"],["2024-07-25T05:58:32.010000"],["2024-07-25T05:58:33.010000"],["2024-07-25T05:58:34.010000"],["2024-07-25T05:58:35.010000"],["2024-07-25T05:58:36.010000"],["2024-07-25T05:58:37.010000"],["2024-07-25T05:58:38.010000"],["2024-07-25T05:58:39.010000"],["2024-07-25T05:58:40.010000"],["2024-07-25T05:58:41.010000"],["2024-07-25T05:58:42.010000"],["2024-07-25T05:58:43.010000"],["2024-07-25T05:58:44.010000"],["2024-07-25T05:58:45.010000"],["2024-07-25T05:58:46.010000"],["2024-07-25T05:58:47.010000"],["2024-07-25T05:58:48.010000"],["2024-07-25T05:58:49.010000"],["2024-07-25T05:58:50.010000"],["2024-07-25T05:58:51.010000"],["2024-07-25T05:58:52.010000"],["2024-07-25T05:58:53.010000"],["2024-07-25T05:58:54.010000"],["2024-07-25T05:58:55.010000"],["2024-07-25T05:58:56.010000"],["2024-07-25T05:58:57.010000"],["2024-07-25T05:58:58.010000"],["2024-07-25T05:58:59.010000"],["2024-07-25T05:59:00.010000"],["2024-07-25T05:59:01.010000"],["2024-07-25T05:59:02.010000"],["2024-07-25T05:59:03.010000"],["2024-07-25T05:59:04.010000"],["2024-07-25T05:59:05.010000"],["2024-07-25T05:59:06.010000"],["2024-07-25T05:59:07.010000"],["2024-07-25T05:59:08.010000"],["2024-07-25T05:59:09.010000"],["2024-07-25T05:59:10.010000"],["2024-07-25T05:59:11.010000"],["2024-07-25T05:59:12.010000"],["2024-07-25T05:59:13.010000"],["2024-07-25T05:59:14.010000"],["2024-07-25T05:59:15.010000"],["2024-07-25T05:59:16.010000"],["2024-07-25T05:59:17.010000"],["2024-07-25T05:59:18.010000"],["2024-07-25T05:59:19.010000"],["2024-07-25T05:59:20.010000"],["2024-07-25T05:59:21.010000"],["2024-07-25T05:59:22.010000"],["2024-07-25T05:59:23.010000"],["2024-07-25T05:59:24.010000"],["2024-07-25T05:59:25.010000"],["2024-07-25T05:59:26.010000"],["2024-07-25T05:59:27.010000"],["2024-07-25T05:59:28.010000"],["2024-07-25T05:59:29.010000"],["2024-07-25T05:59:30.010000"],["2024-07-25T05:59:31.010000"],["2024-07-25T05:59:32.010000"],["2024-07-25T05:59:33.010000"],["2024-07-25T05:59:34.010000"],["2024-07-25T05:59:35.010000"],["2024-07-25T05:59:36.010000"],["2024-07-25T05:59:37.010000"],["2024-07-25T05:59:38.010000"],["2024-07-25T05:59:39.010000"],["2024-07-25T05:59:40.010000"],["2024-07-25T05:59:41.010000"],["2024-07-25T05:59:42.010000"],["2024-07-25T05:59:43.010000"],["2024-07-25T05:59:44.010000"],["2024-07-25T05:59:45.010000"],["2024-07-25T05:59:46.010000"],["2024-07-25T05:59:47.010000"],["2024-07-25T05:59:48.010000"],["2024-07-25T05:59:49.010000"],["2024-07-25T05:59:50.010000"],["2024-07-25T05:59:51.010000"],["2024-07-25T05:59:52.010000"],["2024-07-25T05:59:53.010000"],["2024-07-25T05:59:54.010000"],["2024-07-25T05:59:55.010000"],["2024-07-25T05:59:56.010000"],["2024-07-25T05:59:57.010000"],["2024-07-25T05:59:58.010000"],["2024-07-25T05:59:59.010000"],["2024-07-25T06:00:00.010000"],["2024-07-25T06:00:01.010000"],["2024-07-25T06:00:02.010000"],["2024-07-25T06:00:03.010000"],["2024-07-25T06:00:04.010000"],["2024-07-25T06:00:05.010000"],["2024-07-25T06:00:06.010000"],["2024-07-25T06:00:07.010000"],["2024-07-25T06:00:08.010000"],["2024-07-25T06:00:09.010000"],["2024-07-25T06:00:10.010000"],["2024-07-25T06:00:11.010000"],["2024-07-25T06:00:12.010000"],["2024-07-25T06:00:13.010000"],["2024-07-25T06:00:14.010000"],["2024-07-25T06:00:15.010000"],["2024-07-25T06:00:16.010000"],["2024-07-25T06:00:17.010000"],["2024-07-25T06:00:18.010000"],["2024-07-25T06:00:19.010000"],["2024-07-25T06:00:20.010000"],["2024-07-25T06:00:21.010000"],["2024-07-25T06:00:22.010000"],["2024-07-25T06:00:23.010000"],["2024-07-25T06:00:24.010000"],["2024-07-25T06:00:25.010000"],["2024-07-25T06:00:26.010000"],["2024-07-25T06:00:27.010000"],["2024-07-25T06:00:28.010000"],["2024-07-25T06:00:29.010000"],["2024-07-25T06:00:30.010000"],["2024-07-25T06:00:31.010000"],["2024-07-25T06:00:32.010000"],["2024-07-25T06:00:33.010000"],["2024-07-25T06:00:34.010000"],["2024-07-25T06:00:35.010000"],["2024-07-25T06:00:36.010000"],["2024-07-25T06:00:37.010000"],["2024-07-25T06:00:38.010000"],["2024-07-25T06:00:39.010000"],["2024-07-25T06:00:40.010000"],["2024-07-25T06:00:41.010000"],["2024-07-25T06:00:42.010000"],["2024-07-25T06:00:43.010000"],["2024-07-25T06:00:44.010000"],["2024-07-25T06:00:45.010000"],["2024-07-25T06:00:46.010000"],["2024-07-25T06:00:47.010000"],["2024-07-25T06:00:48.010000"],["2024-07-25T06:00:49.010000"],["2024-07-25T06:00:50.010000"],["2024-07-25T06:00:51.010000"],["2024-07-25T06:00:52.010000"],["2024-07-25T06:00:53.010000"],["2024-07-25T06:00:54.010000"],["2024-07-25T06:00:55.010000"],["2024-07-25T06:00:56.010000"],["2024-07-25T06:00:57.010000"],["2024-07-25T06:00:58.010000"],["2024-07-25T06:00:59.010000"],["2024-07-25T06:01:00.010000"],["2024-07-25T06:01:01.010000"],["2024-07-25T06:01:02.010000"],["2024-07-25T06:01:03.010000"],["2024-07-25T06:01:04.010000"],["2024-07-25T06:01:05.010000"],["2024-07-25T06:01:06.010000"],["2024-07-25T06:01:07.010000"],["2024-07-25T06:01:08.010000"],["2024-07-25T06:01:09.010000"],["2024-07-25T06:01:10.010000"],["2024-07-25T06:01:11.010000"],["2024-07-25T06:01:12.010000"],["2024-07-25T06:01:13.010000"],["2024-07-25T06:01:14.010000"],["2024-07-25T06:01:15.010000"],["2024-07-25T06:01:16.010000"],["2024-07-25T06:01:17.010000"],["2024-07-25T06:01:18.010000"],["2024-07-25T06:01:19.010000"],["2024-07-25T06:01:20.010000"],["2024-07-25T06:01:21.010000"],["2024-07-25T06:01:22.010000"],["2024-07-25T06:01:23.010000"],["2024-07-25T06:01:24.010000"],["2024-07-25T06:01:25.010000"],["2024-07-25T06:01:26.010000"],["2024-07-25T06:01:27.010000"],["2024-07-25T06:01:28.010000"],["2024-07-25T06:01:29.010000"],["2024-07-25T06:01:30.010000"],["2024-07-25T06:01:31.010000"],["2024-07-25T06:01:32.010000"],["2024-07-25T06:01:33.010000"],["2024-07-25T06:01:34.010000"],["2024-07-25T06:01:35.010000"],["2024-07-25T06:01:36.010000"],["2024-07-25T06:01:37.010000"],["2024-07-25T06:01:38.010000"],["2024-07-25T06:01:39.010000"],["2024-07-25T06:01:40.010000"],["2024-07-25T06:01:41.010000"],["2024-07-25T06:01:42.010000"],["2024-07-25T06:01:43.010000"],["2024-07-25T06:01:44.010000"],["2024-07-25T06:01:45.010000"],["2024-07-25T06:01:46.010000"],["2024-07-25T06:01:47.010000"],["2024-07-25T06:01:48.010000"],["2024-07-25T06:01:49.010000"],["2024-07-25T06:01:50.010000"],["2024-07-25T06:01:51.010000"],["2024-07-25T06:01:52.010000"],["2024-07-25T06:01:53.010000"],["2024-07-25T06:01:54.010000"],["2024-07-25T06:01:55.010000"],["2024-07-25T06:01:56.010000"],["2024-07-25T06:01:57.010000"],["2024-07-25T06:01:58.010000"],["2024-07-25T06:01:59.010000"],["2024-07-25T06:02:00.010000"],["2024-07-25T06:02:01.010000"],["2024-07-25T06:02:02.010000"],["2024-07-25T06:02:03.010000"],["2024-07-25T06:02:04.010000"],["2024-07-25T06:02:05.010000"],["2024-07-25T06:02:06.010000"],["2024-07-25T06:02:07.010000"],["2024-07-25T06:02:08.010000"],["2024-07-25T06:02:09.010000"],["2024-07-25T06:02:10.010000"],["2024-07-25T06:02:11.010000"],["2024-07-25T06:02:12.010000"],["2024-07-25T06:02:13.010000"],["2024-07-25T06:02:14.010000"],["2024-07-25T06:02:15.010000"],["2024-07-25T06:02:16.010000"],["2024-07-25T06:02:17.010000"],["2024-07-25T06:02:18.010000"],["2024-07-25T06:02:19.010000"],["2024-07-25T06:02:20.010000"],["2024-07-25T06:02:21.010000"],["2024-07-25T06:02:22.010000"],["2024-07-25T06:02:23.010000"],["2024-07-25T06:02:24.010000"],["2024-07-25T06:02:25.010000"],["2024-07-25T06:02:26.010000"],["2024-07-25T06:02:27.010000"],["2024-07-25T06:02:28.010000"],["2024-07-25T06:02:29.010000"],["2024-07-25T06:02:30.010000"],["2024-07-25T06:02:31.010000"],["2024-07-25T06:02:32.010000"],["2024-07-25T06:02:33.010000"],["2024-07-25T06:02:34.010000"],["2024-07-25T06:02:35.010000"],["2024-07-25T06:02:36.010000"],["2024-07-25T06:02:37.010000"],["2024-07-25T06:02:38.010000"],["2024-07-25T06:02:39.010000"],["2024-07-25T06:02:40.010000"],["2024-07-25T06:02:41.010000"],["2024-07-25T06:02:42.010000"],["2024-07-25T06:02:43.010000"],["2024-07-25T06:02:44.010000"],["2024-07-25T06:02:45.010000"],["2024-07-25T06:02:46.010000"],["2024-07-25T06:02:47.010000"],["2024-07-25T06:02:48.010000"],["2024-07-25T06:02:49.010000"],["2024-07-25T06:02:50.010000"],["2024-07-25T06:02:51.010000"],["2024-07-25T06:02:52.010000"],["2024-07-25T06:02:53.010000"],["2024-07-25T06:02:54.010000"],["2024-07-25T06:02:55.010000"],["2024-07-25T06:02:56.010000"],["2024-07-25T06:02:57.010000"],["2024-07-25T06:02:58.010000"],["2024-07-25T06:02:59.010000"],["2024-07-25T06:03:00.010000"],["2024-07-25T06:03:01.010000"],["2024-07-25T06:03:02.010000"],["2024-07-25T06:03:03.010000"],["2024-07-25T06:03:04.010000"],["2024-07-25T06:03:05.010000"],["2024-07-25T06:03:06.010000"],["2024-07-25T06:03:07.010000"],["2024-07-25T06:03:08.010000"],["2024-07-25T06:03:09.010000"],["2024-07-25T06:03:10.010000"],["2024-07-25T06:03:11.010000"],["2024-07-25T06:03:12.010000"],["2024-07-25T06:03:13.010000"],["2024-07-25T06:03:14.010000"],["2024-07-25T06:03:15.010000"],["2024-07-25T06:03:16.010000"],["2024-07-25T06:03:17.010000"],["2024-07-25T06:03:18.010000"],["2024-07-25T06:03:19.010000"],["2024-07-25T06:03:20.010000"],["2024-07-25T06:03:21.010000"],["2024-07-25T06:03:22.010000"],["2024-07-25T06:03:23.010000"],["2024-07-25T06:03:24.010000"],["2024-07-25T06:03:25.010000"],["2024-07-25T06:03:26.010000"],["2024-07-25T06:03:27.010000"],["2024-07-25T06:03:28.010000"],["2024-07-25T06:03:29.010000"],["2024-07-25T06:03:30.010000"],["2024-07-25T06:03:31.010000"],["2024-07-25T06:03:32.010000"],["2024-07-25T06:03:33.010000"],["2024-07-25T06:03:34.010000"],["2024-07-25T06:03:35.010000"],["2024-07-25T06:03:36.010000"],["2024-07-25T06:03:37.010000"],["2024-07-25T06:03:38.010000"],["2024-07-25T06:03:39.010000"],["2024-07-25T06:03:40.010000"],["2024-07-25T06:03:41.010000"],["2024-07-25T06:03:42.010000"],["2024-07-25T06:03:43.010000"],["2024-07-25T06:03:44.010000"],["2024-07-25T06:03:45.010000"],["2024-07-25T06:03:46.010000"],["2024-07-25T06:03:47.010000"],["2024-07-25T06:03:48.010000"],["2024-07-25T06:03:49.010000"],["2024-07-25T06:03:50.010000"],["2024-07-25T06:03:51.010000"],["2024-07-25T06:03:52.010000"],["2024-07-25T06:03:53.010000"],["2024-07-25T06:03:54.010000"],["2024-07-25T06:03:55.010000"],["2024-07-25T06:03:56.010000"],["2024-07-25T06:03:57.010000"],["2024-07-25T06:03:58.010000"],["2024-07-25T06:03:59.010000"],["2024-07-25T06:04:00.010000"],["2024-07-25T06:04:01.010000"],["2024-07-25T06:04:02.010000"],["2024-07-25T06:04:03.010000"],["2024-07-25T06:04:04.010000"],["2024-07-25T06:04:05.010000"],["2024-07-25T06:04:06.010000"],["2024-07-25T06:04:07.010000"],["2024-07-25T06:04:08.010000"],["2024-07-25T06:04:09.010000"],["2024-07-25T06:04:10.010000"],["2024-07-25T06:04:11.010000"],["2024-07-25T06:04:12.010000"],["2024-07-25T06:04:13.010000"],["2024-07-25T06:04:14.010000"],["2024-07-25T06:04:15.010000"],["2024-07-25T06:04:16.010000"],["2024-07-25T06:04:17.010000"],["2024-07-25T06:04:18.010000"],["2024-07-25T06:04:19.010000"],["2024-07-25T06:04:20.010000"],["2024-07-25T06:04:21.010000"],["2024-07-25T06:04:22.010000"],["2024-07-25T06:04:23.010000"],["2024-07-25T06:04:24.010000"],["2024-07-25T06:04:25.010000"],["2024-07-25T06:04:26.010000"],["2024-07-25T06:04:27.010000"],["2024-07-25T06:04:28.010000"],["2024-07-25T06:04:29.010000"],["2024-07-25T06:04:30.010000"],["2024-07-25T06:04:31.010000"],["2024-07-25T06:04:32.010000"],["2024-07-25T06:04:33.010000"],["2024-07-25T06:04:34.010000"],["2024-07-25T06:04:35.010000"],["2024-07-25T06:04:36.010000"],["2024-07-25T06:04:37.010000"],["2024-07-25T06:04:38.010000"],["2024-07-25T06:04:39.010000"],["2024-07-25T06:04:40.010000"],["2024-07-25T06:04:41.010000"],["2024-07-25T06:04:42.010000"],["2024-07-25T06:04:43.010000"],["2024-07-25T06:04:44.010000"],["2024-07-25T06:04:45.010000"],["2024-07-25T06:04:46.010000"],["2024-07-25T06:04:47.010000"],["2024-07-25T06:04:48.010000"],["2024-07-25T06:04:49.010000"],["2024-07-25T06:04:50.010000"],["2024-07-25T06:04:51.010000"],["2024-07-25T06:04:52.010000"],["2024-07-25T06:04:53.010000"],["2024-07-25T06:04:54.010000"],["2024-07-25T06:04:55.010000"],["2024-07-25T06:04:56.010000"],["2024-07-25T06:04:57.010000"],["2024-07-25T06:04:58.010000"],["2024-07-25T06:04:59.010000"],["2024-07-25T06:05:00.010000"],["2024-07-25T06:05:01.010000"],["2024-07-25T06:05:02.010000"],["2024-07-25T06:05:03.010000"],["2024-07-25T06:05:04.010000"],["2024-07-25T06:05:05.010000"],["2024-07-25T06:05:06.010000"],["2024-07-25T06:05:07.010000"],["2024-07-25T06:05:08.010000"],["2024-07-25T06:05:09.010000"],["2024-07-25T06:05:10.010000"],["2024-07-25T06:05:11.010000"],["2024-07-25T06:05:12.010000"],["2024-07-25T06:05:13.010000"],["2024-07-25T06:05:14.010000"],["2024-07-25T06:05:15.010000"],["2024-07-25T06:05:16.010000"],["2024-07-25T06:05:17.010000"],["2024-07-25T06:05:18.010000"],["2024-07-25T06:05:19.010000"],["2024-07-25T06:05:20.010000"],["2024-07-25T06:05:21.010000"],["2024-07-25T06:05:22.010000"],["2024-07-25T06:05:23.010000"],["2024-07-25T06:05:24.010000"],["2024-07-25T06:05:25.010000"],["2024-07-25T06:05:26.010000"],["2024-07-25T06:05:27.010000"],["2024-07-25T06:05:28.010000"],["2024-07-25T06:05:29.010000"],["2024-07-25T06:05:30.010000"],["2024-07-25T06:05:31.010000"],["2024-07-25T06:05:32.010000"],["2024-07-25T06:05:33.010000"],["2024-07-25T06:05:34.010000"],["2024-07-25T06:05:35.010000"],["2024-07-25T06:05:36.010000"],["2024-07-25T06:05:37.010000"],["2024-07-25T06:05:38.010000"],["2024-07-25T06:05:39.010000"],["2024-07-25T06:05:40.010000"],["2024-07-25T06:05:41.010000"],["2024-07-25T06:05:42.010000"],["2024-07-25T06:05:43.010000"],["2024-07-25T06:05:44.010000"],["2024-07-25T06:05:45.010000"],["2024-07-25T06:05:46.010000"],["2024-07-25T06:05:47.010000"],["2024-07-25T06:05:48.010000"],["2024-07-25T06:05:49.010000"],["2024-07-25T06:05:50.010000"],["2024-07-25T06:05:51.010000"],["2024-07-25T06:05:52.010000"],["2024-07-25T06:05:53.010000"],["2024-07-25T06:05:54.010000"],["2024-07-25T06:05:55.010000"],["2024-07-25T06:05:56.010000"],["2024-07-25T06:05:57.010000"],["2024-07-25T06:05:58.010000"],["2024-07-25T06:05:59.010000"],["2024-07-25T06:06:00.010000"],["2024-07-25T06:06:01.010000"],["2024-07-25T06:06:02.010000"],["2024-07-25T06:06:03.010000"],["2024-07-25T06:06:04.010000"],["2024-07-25T06:06:05.010000"],["2024-07-25T06:06:06.010000"],["2024-07-25T06:06:07.010000"],["2024-07-25T06:06:08.010000"],["2024-07-25T06:06:09.010000"],["2024-07-25T06:06:10.010000"],["2024-07-25T06:06:11.010000"],["2024-07-25T06:06:12.010000"],["2024-07-25T06:06:13.010000"],["2024-07-25T06:06:14.010000"],["2024-07-25T06:06:15.010000"],["2024-07-25T06:06:16.010000"],["2024-07-25T06:06:17.010000"],["2024-07-25T06:06:18.010000"],["2024-07-25T06:06:19.010000"],["2024-07-25T06:06:20.010000"],["2024-07-25T06:06:21.010000"],["2024-07-25T06:06:22.010000"],["2024-07-25T06:06:23.010000"],["2024-07-25T06:06:24.010000"],["2024-07-25T06:06:25.010000"],["2024-07-25T06:06:26.010000"],["2024-07-25T06:06:27.010000"],["2024-07-25T06:06:28.010000"],["2024-07-25T06:06:29.010000"],["2024-07-25T06:06:30.010000"],["2024-07-25T06:06:31.010000"],["2024-07-25T06:06:32.010000"],["2024-07-25T06:06:33.010000"],["2024-07-25T06:06:34.010000"],["2024-07-25T06:06:35.010000"],["2024-07-25T06:06:36.010000"],["2024-07-25T06:06:37.010000"],["2024-07-25T06:06:38.010000"],["2024-07-25T06:06:39.010000"],["2024-07-25T06:06:40.010000"],["2024-07-25T06:06:41.010000"],["2024-07-25T06:06:42.010000"],["2024-07-25T06:06:43.010000"],["2024-07-25T06:06:44.010000"],["2024-07-25T06:06:45.010000"],["2024-07-25T06:06:46.010000"],["2024-07-25T06:06:47.010000"],["2024-07-25T06:06:48.010000"],["2024-07-25T06:06:49.010000"],["2024-07-25T06:06:50.010000"],["2024-07-25T06:06:51.010000"],["2024-07-25T06:06:52.010000"],["2024-07-25T06:06:53.010000"],["2024-07-25T06:06:54.010000"],["2024-07-25T06:06:55.010000"],["2024-07-25T06:06:56.010000"],["2024-07-25T06:06:57.010000"],["2024-07-25T06:06:58.010000"],["2024-07-25T06:06:59.010000"],["2024-07-25T06:07:00.010000"],["2024-07-25T06:07:01.010000"],["2024-07-25T06:07:02.010000"],["2024-07-25T06:07:03.010000"],["2024-07-25T06:07:04.010000"],["2024-07-25T06:07:05.010000"],["2024-07-25T06:07:06.010000"],["2024-07-25T06:07:07.010000"],["2024-07-25T06:07:08.010000"],["2024-07-25T06:07:09.010000"],["2024-07-25T06:07:10.010000"],["2024-07-25T06:07:11.010000"],["2024-07-25T06:07:12.010000"],["2024-07-25T06:07:13.010000"],["2024-07-25T06:07:14.010000"],["2024-07-25T06:07:15.010000"],["2024-07-25T06:07:16.010000"],["2024-07-25T06:07:17.010000"],["2024-07-25T06:07:18.010000"],["2024-07-25T06:07:19.010000"],["2024-07-25T06:07:20.010000"],["2024-07-25T06:07:21.010000"],["2024-07-25T06:07:22.010000"],["2024-07-25T06:07:23.010000"],["2024-07-25T06:07:24.010000"],["2024-07-25T06:07:25.010000"],["2024-07-25T06:07:26.010000"],["2024-07-25T06:07:27.010000"],["2024-07-25T06:07:28.010000"],["2024-07-25T06:07:29.010000"],["2024-07-25T06:07:30.010000"],["2024-07-25T06:07:31.010000"],["2024-07-25T06:07:32.010000"],["2024-07-25T06:07:33.010000"],["2024-07-25T06:07:34.010000"],["2024-07-25T06:07:35.010000"],["2024-07-25T06:07:36.010000"],["2024-07-25T06:07:37.010000"],["2024-07-25T06:07:38.010000"],["2024-07-25T06:07:39.010000"],["2024-07-25T06:07:40.010000"],["2024-07-25T06:07:41.010000"],["2024-07-25T06:07:42.010000"],["2024-07-25T06:07:43.010000"],["2024-07-25T06:07:44.010000"],["2024-07-25T06:07:45.010000"],["2024-07-25T06:07:46.010000"],["2024-07-25T06:07:47.010000"],["2024-07-25T06:07:48.010000"],["2024-07-25T06:07:49.010000"],["2024-07-25T06:07:50.010000"],["2024-07-25T06:07:51.010000"],["2024-07-25T06:07:52.010000"],["2024-07-25T06:07:53.010000"],["2024-07-25T06:07:54.010000"],["2024-07-25T06:07:55.010000"],["2024-07-25T06:07:56.010000"],["2024-07-25T06:07:57.010000"],["2024-07-25T06:07:58.010000"],["2024-07-25T06:07:59.010000"],["2024-07-25T06:08:00.010000"],["2024-07-25T06:08:01.010000"],["2024-07-25T06:08:02.010000"],["2024-07-25T06:08:03.010000"],["2024-07-25T06:08:04.010000"],["2024-07-25T06:08:05.010000"],["2024-07-25T06:08:06.010000"],["2024-07-25T06:08:07.010000"],["2024-07-25T06:08:08.010000"],["2024-07-25T06:08:09.010000"],["2024-07-25T06:08:10.010000"],["2024-07-25T06:08:11.010000"],["2024-07-25T06:08:12.010000"],["2024-07-25T06:08:13.010000"],["2024-07-25T06:08:14.010000"],["2024-07-25T06:08:15.010000"],["2024-07-25T06:08:16.010000"],["2024-07-25T06:08:17.010000"],["2024-07-25T06:08:18.010000"],["2024-07-25T06:08:19.010000"],["2024-07-25T06:08:20.010000"],["2024-07-25T06:08:21.010000"],["2024-07-25T06:08:22.010000"],["2024-07-25T06:08:23.010000"],["2024-07-25T06:08:24.010000"],["2024-07-25T06:08:25.010000"],["2024-07-25T06:08:26.010000"],["2024-07-25T06:08:27.010000"],["2024-07-25T06:08:28.010000"],["2024-07-25T06:08:29.010000"],["2024-07-25T06:08:30.010000"],["2024-07-25T06:08:31.010000"],["2024-07-25T06:08:32.010000"],["2024-07-25T06:08:33.010000"],["2024-07-25T06:08:34.010000"],["2024-07-25T06:08:35.010000"],["2024-07-25T06:08:36.010000"],["2024-07-25T06:08:37.010000"],["2024-07-25T06:08:38.010000"],["2024-07-25T06:08:39.010000"],["2024-07-25T06:08:40.010000"],["2024-07-25T06:08:41.010000"],["2024-07-25T06:08:42.010000"],["2024-07-25T06:08:43.010000"],["2024-07-25T06:08:44.010000"],["2024-07-25T06:08:45.010000"],["2024-07-25T06:08:46.010000"],["2024-07-25T06:08:47.010000"],["2024-07-25T06:08:48.010000"],["2024-07-25T06:08:49.010000"],["2024-07-25T06:08:50.010000"],["2024-07-25T06:08:51.010000"],["2024-07-25T06:08:52.010000"],["2024-07-25T06:08:53.010000"],["2024-07-25T06:08:54.010000"],["2024-07-25T06:08:55.010000"],["2024-07-25T06:08:56.010000"],["2024-07-25T06:08:57.010000"],["2024-07-25T06:08:58.010000"],["2024-07-25T06:08:59.010000"],["2024-07-25T06:09:00.010000"],["2024-07-25T06:09:01.010000"],["2024-07-25T06:09:02.010000"],["2024-07-25T06:09:03.010000"],["2024-07-25T06:09:04.010000"],["2024-07-25T06:09:05.010000"],["2024-07-25T06:09:06.010000"],["2024-07-25T06:09:07.010000"],["2024-07-25T06:09:08.010000"],["2024-07-25T06:09:09.010000"],["2024-07-25T06:09:10.010000"],["2024-07-25T06:09:11.010000"],["2024-07-25T06:09:12.010000"],["2024-07-25T06:09:13.010000"],["2024-07-25T06:09:14.010000"],["2024-07-25T06:09:15.010000"],["2024-07-25T06:09:16.010000"],["2024-07-25T06:09:17.010000"],["2024-07-25T06:09:18.010000"],["2024-07-25T06:09:19.010000"],["2024-07-25T06:09:20.010000"],["2024-07-25T06:09:21.010000"],["2024-07-25T06:09:22.010000"],["2024-07-25T06:09:23.010000"],["2024-07-25T06:09:24.010000"],["2024-07-25T06:09:25.010000"],["2024-07-25T06:09:26.010000"],["2024-07-25T06:09:27.010000"],["2024-07-25T06:09:28.010000"],["2024-07-25T06:09:29.010000"],["2024-07-25T06:09:30.010000"],["2024-07-25T06:09:31.010000"],["2024-07-25T06:09:32.010000"],["2024-07-25T06:09:33.010000"],["2024-07-25T06:09:34.010000"],["2024-07-25T06:09:35.010000"],["2024-07-25T06:09:36.010000"],["2024-07-25T06:09:37.010000"],["2024-07-25T06:09:38.010000"],["2024-07-25T06:09:39.010000"],["2024-07-25T06:09:40.010000"],["2024-07-25T06:09:41.010000"],["2024-07-25T06:09:42.010000"],["2024-07-25T06:09:43.010000"],["2024-07-25T06:09:44.010000"],["2024-07-25T06:09:45.010000"],["2024-07-25T06:09:46.010000"],["2024-07-25T06:09:47.010000"],["2024-07-25T06:09:48.010000"],["2024-07-25T06:09:49.010000"],["2024-07-25T06:09:50.010000"],["2024-07-25T06:09:51.010000"],["2024-07-25T06:09:52.010000"],["2024-07-25T06:09:53.010000"],["2024-07-25T06:09:54.010000"],["2024-07-25T06:09:55.010000"],["2024-07-25T06:09:56.010000"],["2024-07-25T06:09:57.010000"],["2024-07-25T06:09:58.010000"],["2024-07-25T06:09:59.010000"],["2024-07-25T06:10:00.010000"],["2024-07-25T06:10:01.010000"],["2024-07-25T06:10:02.010000"],["2024-07-25T06:10:03.010000"],["2024-07-25T06:10:04.010000"],["2024-07-25T06:10:05.010000"],["2024-07-25T06:10:06.010000"],["2024-07-25T06:10:07.010000"],["2024-07-25T06:10:08.010000"],["2024-07-25T06:10:09.010000"],["2024-07-25T06:10:10.010000"],["2024-07-25T06:10:11.010000"],["2024-07-25T06:10:12.010000"],["2024-07-25T06:10:13.010000"],["2024-07-25T06:10:14.010000"],["2024-07-25T06:10:15.010000"],["2024-07-25T06:10:16.010000"],["2024-07-25T06:10:17.010000"],["2024-07-25T06:10:18.010000"],["2024-07-25T06:10:19.010000"],["2024-07-25T06:10:20.010000"],["2024-07-25T06:10:21.010000"],["2024-07-25T06:10:22.010000"],["2024-07-25T06:10:23.010000"],["2024-07-25T06:10:24.010000"],["2024-07-25T06:10:25.010000"],["2024-07-25T06:10:26.010000"],["2024-07-25T06:10:27.010000"],["2024-07-25T06:10:28.010000"],["2024-07-25T06:10:29.010000"],["2024-07-25T06:10:30.010000"],["2024-07-25T06:10:31.010000"],["2024-07-25T06:10:32.010000"],["2024-07-25T06:10:33.010000"],["2024-07-25T06:10:34.010000"],["2024-07-25T06:10:35.010000"],["2024-07-25T06:10:36.010000"],["2024-07-25T06:10:37.010000"],["2024-07-25T06:10:38.010000"],["2024-07-25T06:10:39.010000"],["2024-07-25T06:10:40.010000"],["2024-07-25T06:10:41.010000"],["2024-07-25T06:10:42.010000"],["2024-07-25T06:10:43.010000"],["2024-07-25T06:10:44.010000"],["2024-07-25T06:10:45.010000"],["2024-07-25T06:10:46.010000"],["2024-07-25T06:10:47.010000"],["2024-07-25T06:10:48.010000"],["2024-07-25T06:10:49.010000"],["2024-07-25T06:10:50.010000"],["2024-07-25T06:10:51.010000"],["2024-07-25T06:10:52.010000"],["2024-07-25T06:10:53.010000"],["2024-07-25T06:10:54.010000"],["2024-07-25T06:10:55.010000"],["2024-07-25T06:10:56.010000"],["2024-07-25T06:10:57.010000"],["2024-07-25T06:10:58.010000"],["2024-07-25T06:10:59.010000"],["2024-07-25T06:11:00.010000"],["2024-07-25T06:11:01.010000"],["2024-07-25T06:11:02.010000"],["2024-07-25T06:11:03.010000"],["2024-07-25T06:11:04.010000"],["2024-07-25T06:11:05.010000"],["2024-07-25T06:11:06.010000"],["2024-07-25T06:11:07.010000"],["2024-07-25T06:11:08.010000"],["2024-07-25T06:11:09.010000"],["2024-07-25T06:11:10.010000"],["2024-07-25T06:11:11.010000"],["2024-07-25T06:11:12.010000"],["2024-07-25T06:11:13.010000"],["2024-07-25T06:11:14.010000"],["2024-07-25T06:11:15.010000"],["2024-07-25T06:11:16.010000"],["2024-07-25T06:11:17.010000"],["2024-07-25T06:11:18.010000"],["2024-07-25T06:11:19.010000"],["2024-07-25T06:11:20.010000"],["2024-07-25T06:11:21.010000"],["2024-07-25T06:11:22.010000"],["2024-07-25T06:11:23.010000"],["2024-07-25T06:11:24.010000"],["2024-07-25T06:11:25.010000"],["2024-07-25T06:11:26.010000"],["2024-07-25T06:11:27.010000"],["2024-07-25T06:11:28.010000"],["2024-07-25T06:11:29.010000"],["2024-07-25T06:11:30.010000"],["2024-07-25T06:11:31.010000"],["2024-07-25T06:11:32.010000"],["2024-07-25T06:11:33.010000"],["2024-07-25T06:11:34.010000"],["2024-07-25T06:11:35.010000"],["2024-07-25T06:11:36.010000"],["2024-07-25T06:11:37.010000"],["2024-07-25T06:11:38.010000"],["2024-07-25T06:11:39.010000"],["2024-07-25T06:11:40.010000"],["2024-07-25T06:11:41.010000"],["2024-07-25T06:11:42.010000"],["2024-07-25T06:11:43.010000"],["2024-07-25T06:11:44.010000"],["2024-07-25T06:11:45.010000"],["2024-07-25T06:11:46.010000"],["2024-07-25T06:11:47.010000"],["2024-07-25T06:11:48.010000"],["2024-07-25T06:11:49.010000"],["2024-07-25T06:11:50.010000"],["2024-07-25T06:11:51.010000"],["2024-07-25T06:11:52.010000"],["2024-07-25T06:11:53.010000"],["2024-07-25T06:11:54.010000"],["2024-07-25T06:11:55.010000"],["2024-07-25T06:11:56.010000"],["2024-07-25T06:11:57.010000"],["2024-07-25T06:11:58.010000"],["2024-07-25T06:11:59.010000"],["2024-07-25T06:12:00.010000"],["2024-07-25T06:12:01.010000"],["2024-07-25T06:12:02.010000"],["2024-07-25T06:12:03.010000"],["2024-07-25T06:12:04.010000"],["2024-07-25T06:12:05.010000"],["2024-07-25T06:12:06.010000"],["2024-07-25T06:12:07.010000"],["2024-07-25T06:12:08.010000"],["2024-07-25T06:12:09.010000"],["2024-07-25T06:12:10.010000"],["2024-07-25T06:12:11.010000"],["2024-07-25T06:12:12.010000"],["2024-07-25T06:12:13.010000"],["2024-07-25T06:12:14.010000"],["2024-07-25T06:12:15.010000"],["2024-07-25T06:12:16.010000"],["2024-07-25T06:12:17.010000"],["2024-07-25T06:12:18.010000"],["2024-07-25T06:12:19.010000"],["2024-07-25T06:12:20.010000"],["2024-07-25T06:12:21.010000"],["2024-07-25T06:12:22.010000"],["2024-07-25T06:12:23.010000"],["2024-07-25T06:12:24.010000"],["2024-07-25T06:12:25.010000"],["2024-07-25T06:12:26.010000"],["2024-07-25T06:12:27.010000"],["2024-07-25T06:12:28.010000"],["2024-07-25T06:12:29.010000"],["2024-07-25T06:12:30.010000"],["2024-07-25T06:12:31.010000"],["2024-07-25T06:12:32.010000"],["2024-07-25T06:12:33.010000"],["2024-07-25T06:12:34.010000"],["2024-07-25T06:12:35.010000"],["2024-07-25T06:12:36.010000"],["2024-07-25T06:12:37.010000"],["2024-07-25T06:12:38.010000"],["2024-07-25T06:12:39.010000"],["2024-07-25T06:12:40.010000"],["2024-07-25T06:12:41.010000"],["2024-07-25T06:12:42.010000"],["2024-07-25T06:12:43.010000"],["2024-07-25T06:12:44.010000"],["2024-07-25T06:12:45.010000"],["2024-07-25T06:12:46.010000"],["2024-07-25T06:12:47.010000"],["2024-07-25T06:12:48.010000"],["2024-07-25T06:12:49.010000"],["2024-07-25T06:12:50.010000"],["2024-07-25T06:12:51.010000"],["2024-07-25T06:12:52.010000"],["2024-07-25T06:12:53.010000"],["2024-07-25T06:12:54.010000"],["2024-07-25T06:12:55.010000"],["2024-07-25T06:12:56.010000"],["2024-07-25T06:12:57.010000"],["2024-07-25T06:12:58.010000"],["2024-07-25T06:12:59.010000"],["2024-07-25T06:13:00.010000"],["2024-07-25T06:13:01.010000"],["2024-07-25T06:13:02.010000"],["2024-07-25T06:13:03.010000"],["2024-07-25T06:13:04.010000"],["2024-07-25T06:13:05.010000"],["2024-07-25T06:13:06.010000"],["2024-07-25T06:13:07.010000"],["2024-07-25T06:13:08.010000"],["2024-07-25T06:13:09.010000"],["2024-07-25T06:13:10.010000"],["2024-07-25T06:13:11.010000"],["2024-07-25T06:13:12.010000"],["2024-07-25T06:13:13.010000"],["2024-07-25T06:13:14.010000"],["2024-07-25T06:13:15.010000"],["2024-07-25T06:13:16.010000"],["2024-07-25T06:13:17.010000"],["2024-07-25T06:13:18.010000"],["2024-07-25T06:13:19.010000"],["2024-07-25T06:13:20.010000"],["2024-07-25T06:13:21.010000"],["2024-07-25T06:13:22.010000"],["2024-07-25T06:13:23.010000"],["2024-07-25T06:13:24.010000"],["2024-07-25T06:13:25.010000"],["2024-07-25T06:13:26.010000"],["2024-07-25T06:13:27.010000"],["2024-07-25T06:13:28.010000"],["2024-07-25T06:13:29.010000"],["2024-07-25T06:13:30.010000"],["2024-07-25T06:13:31.010000"],["2024-07-25T06:13:32.010000"],["2024-07-25T06:13:33.010000"],["2024-07-25T06:13:34.010000"],["2024-07-25T06:13:35.010000"],["2024-07-25T06:13:36.010000"],["2024-07-25T06:13:37.010000"],["2024-07-25T06:13:38.010000"],["2024-07-25T06:13:39.010000"],["2024-07-25T06:13:40.010000"],["2024-07-25T06:13:41.010000"],["2024-07-25T06:13:42.010000"],["2024-07-25T06:13:43.010000"],["2024-07-25T06:13:44.010000"],["2024-07-25T06:13:45.010000"],["2024-07-25T06:13:46.010000"],["2024-07-25T06:13:47.010000"],["2024-07-25T06:13:48.010000"],["2024-07-25T06:13:49.010000"],["2024-07-25T06:13:50.010000"],["2024-07-25T06:13:51.010000"],["2024-07-25T06:13:52.010000"],["2024-07-25T06:13:53.010000"],["2024-07-25T06:13:54.010000"],["2024-07-25T06:13:55.010000"],["2024-07-25T06:13:56.010000"],["2024-07-25T06:13:57.010000"],["2024-07-25T06:13:58.010000"],["2024-07-25T06:13:59.010000"],["2024-07-25T06:14:00.010000"],["2024-07-25T06:14:01.010000"],["2024-07-25T06:14:02.010000"],["2024-07-25T06:14:03.010000"],["2024-07-25T06:14:04.010000"],["2024-07-25T06:14:05.010000"],["2024-07-25T06:14:06.010000"],["2024-07-25T06:14:07.010000"],["2024-07-25T06:14:08.010000"],["2024-07-25T06:14:09.010000"],["2024-07-25T06:14:10.010000"],["2024-07-25T06:14:11.010000"],["2024-07-25T06:14:12.010000"],["2024-07-25T06:14:13.010000"],["2024-07-25T06:14:14.010000"],["2024-07-25T06:14:15.010000"],["2024-07-25T06:14:16.010000"],["2024-07-25T06:14:17.010000"],["2024-07-25T06:14:18.010000"],["2024-07-25T06:14:19.010000"],["2024-07-25T06:14:20.010000"],["2024-07-25T06:14:21.010000"],["2024-07-25T06:14:22.010000"],["2024-07-25T06:14:23.010000"],["2024-07-25T06:14:24.010000"],["2024-07-25T06:14:25.010000"],["2024-07-25T06:14:26.010000"],["2024-07-25T06:14:27.010000"],["2024-07-25T06:14:28.010000"],["2024-07-25T06:14:29.010000"],["2024-07-25T06:14:30.010000"],["2024-07-25T06:14:31.010000"],["2024-07-25T06:14:32.010000"],["2024-07-25T06:14:33.010000"],["2024-07-25T06:14:34.010000"],["2024-07-25T06:14:35.010000"],["2024-07-25T06:14:36.010000"],["2024-07-25T06:14:37.010000"],["2024-07-25T06:14:38.010000"],["2024-07-25T06:14:39.010000"],["2024-07-25T06:14:40.010000"],["2024-07-25T06:14:41.010000"],["2024-07-25T06:14:42.010000"],["2024-07-25T06:14:43.010000"],["2024-07-25T06:14:44.010000"],["2024-07-25T06:14:45.010000"],["2024-07-25T06:14:46.010000"],["2024-07-25T06:14:47.010000"],["2024-07-25T06:14:48.010000"],["2024-07-25T06:14:49.010000"],["2024-07-25T06:14:50.010000"],["2024-07-25T06:14:51.010000"],["2024-07-25T06:14:52.010000"],["2024-07-25T06:14:53.010000"],["2024-07-25T06:14:54.010000"],["2024-07-25T06:14:55.010000"],["2024-07-25T06:14:56.010000"],["2024-07-25T06:14:57.010000"],["2024-07-25T06:14:58.010000"],["2024-07-25T06:14:59.010000"],["2024-07-25T06:15:00.010000"],["2024-07-25T06:15:01.010000"],["2024-07-25T06:15:02.010000"],["2024-07-25T06:15:03.010000"],["2024-07-25T06:15:04.010000"],["2024-07-25T06:15:05.010000"],["2024-07-25T06:15:06.010000"],["2024-07-25T06:15:07.010000"],["2024-07-25T06:15:08.010000"],["2024-07-25T06:15:09.010000"],["2024-07-25T06:15:10.010000"],["2024-07-25T06:15:11.010000"],["2024-07-25T06:15:12.010000"],["2024-07-25T06:15:13.010000"],["2024-07-25T06:15:14.010000"],["2024-07-25T06:15:15.010000"],["2024-07-25T06:15:16.010000"],["2024-07-25T06:15:17.010000"],["2024-07-25T06:15:18.010000"],["2024-07-25T06:15:19.010000"],["2024-07-25T06:15:20.010000"],["2024-07-25T06:15:21.010000"],["2024-07-25T06:15:22.010000"],["2024-07-25T06:15:23.010000"],["2024-07-25T06:15:24.010000"],["2024-07-25T06:15:25.010000"],["2024-07-25T06:15:26.010000"],["2024-07-25T06:15:27.010000"],["2024-07-25T06:15:28.010000"],["2024-07-25T06:15:29.010000"],["2024-07-25T06:15:30.010000"],["2024-07-25T06:15:31.010000"],["2024-07-25T06:15:32.010000"],["2024-07-25T06:15:33.010000"],["2024-07-25T06:15:34.010000"],["2024-07-25T06:15:35.010000"],["2024-07-25T06:15:36.010000"],["2024-07-25T06:15:37.010000"],["2024-07-25T06:15:38.010000"],["2024-07-25T06:15:39.010000"],["2024-07-25T06:15:40.010000"],["2024-07-25T06:15:41.010000"],["2024-07-25T06:15:42.010000"],["2024-07-25T06:15:43.010000"],["2024-07-25T06:15:44.010000"],["2024-07-25T06:15:45.010000"],["2024-07-25T06:15:46.010000"],["2024-07-25T06:15:47.010000"],["2024-07-25T06:15:48.010000"],["2024-07-25T06:15:49.010000"],["2024-07-25T06:15:50.010000"],["2024-07-25T06:15:51.010000"],["2024-07-25T06:15:52.010000"],["2024-07-25T06:15:53.010000"],["2024-07-25T06:15:54.010000"],["2024-07-25T06:15:55.010000"],["2024-07-25T06:15:56.010000"],["2024-07-25T06:15:57.010000"],["2024-07-25T06:15:58.010000"],["2024-07-25T06:15:59.010000"],["2024-07-25T06:16:00.010000"],["2024-07-25T06:16:01.010000"],["2024-07-25T06:16:02.010000"],["2024-07-25T06:16:03.010000"],["2024-07-25T06:16:04.010000"],["2024-07-25T06:16:05.010000"],["2024-07-25T06:16:06.010000"],["2024-07-25T06:16:07.010000"],["2024-07-25T06:16:08.010000"],["2024-07-25T06:16:09.010000"],["2024-07-25T06:16:10.010000"],["2024-07-25T06:16:11.010000"],["2024-07-25T06:16:12.010000"],["2024-07-25T06:16:13.010000"],["2024-07-25T06:16:14.010000"],["2024-07-25T06:16:15.010000"],["2024-07-25T06:16:16.010000"],["2024-07-25T06:16:17.010000"],["2024-07-25T06:16:18.010000"],["2024-07-25T06:16:19.010000"],["2024-07-25T06:16:20.010000"],["2024-07-25T06:16:21.010000"],["2024-07-25T06:16:22.010000"],["2024-07-25T06:16:23.010000"],["2024-07-25T06:16:24.010000"],["2024-07-25T06:16:25.010000"],["2024-07-25T06:16:26.010000"],["2024-07-25T06:16:27.010000"],["2024-07-25T06:16:28.010000"],["2024-07-25T06:16:29.010000"],["2024-07-25T06:16:30.010000"],["2024-07-25T06:16:31.010000"],["2024-07-25T06:16:32.010000"],["2024-07-25T06:16:33.010000"],["2024-07-25T06:16:34.010000"],["2024-07-25T06:16:35.010000"],["2024-07-25T06:16:36.010000"],["2024-07-25T06:16:37.010000"],["2024-07-25T06:16:38.010000"],["2024-07-25T06:16:39.010000"],["2024-07-25T06:16:40.010000"],["2024-07-25T06:16:41.010000"],["2024-07-25T06:16:42.010000"],["2024-07-25T06:16:43.010000"],["2024-07-25T06:16:44.010000"],["2024-07-25T06:16:45.010000"],["2024-07-25T06:16:46.010000"],["2024-07-25T06:16:47.010000"],["2024-07-25T06:16:48.010000"],["2024-07-25T06:16:49.010000"],["2024-07-25T06:16:50.010000"],["2024-07-25T06:16:51.010000"],["2024-07-25T06:16:52.010000"],["2024-07-25T06:16:53.010000"],["2024-07-25T06:16:54.010000"],["2024-07-25T06:16:55.010000"],["2024-07-25T06:16:56.010000"],["2024-07-25T06:16:57.010000"],["2024-07-25T06:16:58.010000"],["2024-07-25T06:16:59.010000"],["2024-07-25T06:17:00.010000"],["2024-07-25T06:17:01.010000"],["2024-07-25T06:17:02.010000"],["2024-07-25T06:17:03.010000"],["2024-07-25T06:17:04.010000"],["2024-07-25T06:17:05.010000"],["2024-07-25T06:17:06.010000"],["2024-07-25T06:17:07.010000"],["2024-07-25T06:17:08.010000"],["2024-07-25T06:17:09.010000"],["2024-07-25T06:17:10.010000"],["2024-07-25T06:17:11.010000"],["2024-07-25T06:17:12.010000"],["2024-07-25T06:17:13.010000"],["2024-07-25T06:17:14.010000"],["2024-07-25T06:17:15.010000"],["2024-07-25T06:17:16.010000"],["2024-07-25T06:17:17.010000"],["2024-07-25T06:17:18.010000"],["2024-07-25T06:17:19.010000"],["2024-07-25T06:17:20.010000"],["2024-07-25T06:17:21.010000"],["2024-07-25T06:17:22.010000"],["2024-07-25T06:17:23.010000"],["2024-07-25T06:17:24.010000"],["2024-07-25T06:17:25.010000"],["2024-07-25T06:17:26.010000"],["2024-07-25T06:17:27.010000"],["2024-07-25T06:17:28.010000"],["2024-07-25T06:17:29.010000"],["2024-07-25T06:17:30.010000"],["2024-07-25T06:17:31.010000"],["2024-07-25T06:17:32.010000"],["2024-07-25T06:17:33.010000"],["2024-07-25T06:17:34.010000"],["2024-07-25T06:17:35.010000"],["2024-07-25T06:17:36.010000"],["2024-07-25T06:17:37.010000"],["2024-07-25T06:17:38.010000"],["2024-07-25T06:17:39.010000"],["2024-07-25T06:17:40.010000"],["2024-07-25T06:17:41.010000"],["2024-07-25T06:17:42.010000"],["2024-07-25T06:17:43.010000"],["2024-07-25T06:17:44.010000"],["2024-07-25T06:17:45.010000"],["2024-07-25T06:17:46.010000"],["2024-07-25T06:17:47.010000"],["2024-07-25T06:17:48.010000"],["2024-07-25T06:17:49.010000"],["2024-07-25T06:17:50.010000"],["2024-07-25T06:17:51.010000"],["2024-07-25T06:17:52.010000"],["2024-07-25T06:17:53.010000"],["2024-07-25T06:17:54.010000"],["2024-07-25T06:17:55.010000"],["2024-07-25T06:17:56.010000"],["2024-07-25T06:17:57.010000"],["2024-07-25T06:17:58.010000"],["2024-07-25T06:17:59.010000"],["2024-07-25T06:18:00.010000"],["2024-07-25T06:18:01.010000"],["2024-07-25T06:18:02.010000"],["2024-07-25T06:18:03.010000"],["2024-07-25T06:18:04.010000"],["2024-07-25T06:18:05.010000"],["2024-07-25T06:18:06.010000"],["2024-07-25T06:18:07.010000"],["2024-07-25T06:18:08.010000"],["2024-07-25T06:18:09.010000"],["2024-07-25T06:18:10.010000"],["2024-07-25T06:18:11.010000"],["2024-07-25T06:18:12.010000"],["2024-07-25T06:18:13.010000"],["2024-07-25T06:18:14.010000"],["2024-07-25T06:18:15.010000"],["2024-07-25T06:18:16.010000"],["2024-07-25T06:18:17.010000"],["2024-07-25T06:18:18.010000"],["2024-07-25T06:18:19.010000"],["2024-07-25T06:18:20.010000"],["2024-07-25T06:18:21.010000"],["2024-07-25T06:18:22.010000"],["2024-07-25T06:18:23.010000"],["2024-07-25T06:18:24.010000"],["2024-07-25T06:18:25.010000"],["2024-07-25T06:18:26.010000"],["2024-07-25T06:18:27.010000"],["2024-07-25T06:18:28.010000"],["2024-07-25T06:18:29.010000"],["2024-07-25T06:18:30.010000"],["2024-07-25T06:18:31.010000"],["2024-07-25T06:18:32.010000"],["2024-07-25T06:18:33.010000"],["2024-07-25T06:18:34.010000"],["2024-07-25T06:18:35.010000"],["2024-07-25T06:18:36.010000"],["2024-07-25T06:18:37.010000"],["2024-07-25T06:18:38.010000"],["2024-07-25T06:18:39.010000"],["2024-07-25T06:18:40.010000"],["2024-07-25T06:18:41.010000"],["2024-07-25T06:18:42.010000"],["2024-07-25T06:18:43.010000"],["2024-07-25T06:18:44.010000"],["2024-07-25T06:18:45.010000"],["2024-07-25T06:18:46.010000"],["2024-07-25T06:18:47.010000"],["2024-07-25T06:18:48.010000"],["2024-07-25T06:18:49.010000"],["2024-07-25T06:18:50.010000"],["2024-07-25T06:18:51.010000"],["2024-07-25T06:18:52.010000"],["2024-07-25T06:18:53.010000"],["2024-07-25T06:18:54.010000"],["2024-07-25T06:18:55.010000"],["2024-07-25T06:18:56.010000"],["2024-07-25T06:18:57.010000"],["2024-07-25T06:18:58.010000"],["2024-07-25T06:18:59.010000"],["2024-07-25T06:19:00.010000"],["2024-07-25T06:19:01.010000"],["2024-07-25T06:19:02.010000"],["2024-07-25T06:19:03.010000"],["2024-07-25T06:19:04.010000"],["2024-07-25T06:19:05.010000"],["2024-07-25T06:19:06.010000"],["2024-07-25T06:19:07.010000"],["2024-07-25T06:19:08.010000"],["2024-07-25T06:19:09.010000"],["2024-07-25T06:19:10.010000"],["2024-07-25T06:19:11.010000"],["2024-07-25T06:19:12.010000"],["2024-07-25T06:19:13.010000"],["2024-07-25T06:19:14.010000"],["2024-07-25T06:19:15.010000"],["2024-07-25T06:19:16.010000"],["2024-07-25T06:19:17.010000"],["2024-07-25T06:19:18.010000"],["2024-07-25T06:19:19.010000"],["2024-07-25T06:19:20.010000"],["2024-07-25T06:19:21.010000"],["2024-07-25T06:19:22.010000"],["2024-07-25T06:19:23.010000"],["2024-07-25T06:19:24.010000"],["2024-07-25T06:19:25.010000"],["2024-07-25T06:19:26.010000"],["2024-07-25T06:19:27.010000"],["2024-07-25T06:19:28.010000"],["2024-07-25T06:19:29.010000"],["2024-07-25T06:19:30.010000"],["2024-07-25T06:19:31.010000"],["2024-07-25T06:19:32.010000"],["2024-07-25T06:19:33.010000"],["2024-07-25T06:19:34.010000"],["2024-07-25T06:19:35.010000"],["2024-07-25T06:19:36.010000"],["2024-07-25T06:19:37.010000"],["2024-07-25T06:19:38.010000"],["2024-07-25T06:19:39.010000"],["2024-07-25T06:19:40.010000"],["2024-07-25T06:19:41.010000"],["2024-07-25T06:19:42.010000"],["2024-07-25T06:19:43.010000"],["2024-07-25T06:19:44.010000"],["2024-07-25T06:19:45.010000"],["2024-07-25T06:19:46.010000"],["2024-07-25T06:19:47.010000"],["2024-07-25T06:19:48.010000"],["2024-07-25T06:19:49.010000"],["2024-07-25T06:19:50.010000"],["2024-07-25T06:19:51.010000"],["2024-07-25T06:19:52.010000"],["2024-07-25T06:19:53.010000"],["2024-07-25T06:19:54.010000"],["2024-07-25T06:19:55.010000"],["2024-07-25T06:19:56.010000"],["2024-07-25T06:19:57.010000"],["2024-07-25T06:19:58.010000"],["2024-07-25T06:19:59.010000"],["2024-07-25T06:20:00.010000"],["2024-07-25T06:20:01.010000"],["2024-07-25T06:20:02.010000"],["2024-07-25T06:20:03.010000"],["2024-07-25T06:20:04.010000"],["2024-07-25T06:20:05.010000"],["2024-07-25T06:20:06.010000"],["2024-07-25T06:20:07.010000"],["2024-07-25T06:20:08.010000"],["2024-07-25T06:20:09.010000"],["2024-07-25T06:20:10.010000"],["2024-07-25T06:20:11.010000"],["2024-07-25T06:20:12.010000"],["2024-07-25T06:20:13.010000"],["2024-07-25T06:20:14.010000"],["2024-07-25T06:20:15.010000"],["2024-07-25T06:20:16.010000"],["2024-07-25T06:20:17.010000"],["2024-07-25T06:20:18.010000"],["2024-07-25T06:20:19.010000"],["2024-07-25T06:20:20.010000"],["2024-07-25T06:20:21.010000"],["2024-07-25T06:20:22.010000"],["2024-07-25T06:20:23.010000"],["2024-07-25T06:20:24.010000"],["2024-07-25T06:20:25.010000"],["2024-07-25T06:20:26.010000"],["2024-07-25T06:20:27.010000"],["2024-07-25T06:20:28.010000"],["2024-07-25T06:20:29.010000"],["2024-07-25T06:20:30.010000"],["2024-07-25T06:20:31.010000"],["2024-07-25T06:20:32.010000"],["2024-07-25T06:20:33.010000"],["2024-07-25T06:20:34.010000"],["2024-07-25T06:20:35.010000"],["2024-07-25T06:20:36.010000"],["2024-07-25T06:20:37.010000"],["2024-07-25T06:20:38.010000"],["2024-07-25T06:20:39.010000"],["2024-07-25T06:20:40.010000"],["2024-07-25T06:20:41.010000"],["2024-07-25T06:20:42.010000"],["2024-07-25T06:20:43.010000"],["2024-07-25T06:20:44.010000"],["2024-07-25T06:20:45.010000"],["2024-07-25T06:20:46.010000"],["2024-07-25T06:20:47.010000"],["2024-07-25T06:20:48.010000"],["2024-07-25T06:20:49.010000"],["2024-07-25T06:20:50.010000"],["2024-07-25T06:20:51.010000"],["2024-07-25T06:20:52.010000"],["2024-07-25T06:20:53.010000"],["2024-07-25T06:20:54.010000"],["2024-07-25T06:20:55.010000"],["2024-07-25T06:20:56.010000"],["2024-07-25T06:20:57.010000"],["2024-07-25T06:20:58.010000"],["2024-07-25T06:20:59.010000"],["2024-07-25T06:21:00.010000"],["2024-07-25T06:21:01.010000"],["2024-07-25T06:21:02.010000"],["2024-07-25T06:21:03.010000"],["2024-07-25T06:21:04.010000"],["2024-07-25T06:21:05.010000"],["2024-07-25T06:21:06.010000"],["2024-07-25T06:21:07.010000"],["2024-07-25T06:21:08.010000"],["2024-07-25T06:21:09.010000"],["2024-07-25T06:21:10.010000"],["2024-07-25T06:21:11.010000"],["2024-07-25T06:21:12.010000"],["2024-07-25T06:21:13.010000"],["2024-07-25T06:21:14.010000"],["2024-07-25T06:21:15.010000"],["2024-07-25T06:21:16.010000"],["2024-07-25T06:21:17.010000"],["2024-07-25T06:21:18.010000"],["2024-07-25T06:21:19.010000"],["2024-07-25T06:21:20.010000"],["2024-07-25T06:21:21.010000"],["2024-07-25T06:21:22.010000"],["2024-07-25T06:21:23.010000"],["2024-07-25T06:21:24.010000"],["2024-07-25T06:21:25.010000"],["2024-07-25T06:21:26.010000"],["2024-07-25T06:21:27.010000"],["2024-07-25T06:21:28.010000"],["2024-07-25T06:21:29.010000"],["2024-07-25T06:21:30.010000"],["2024-07-25T06:21:31.010000"],["2024-07-25T06:21:32.010000"],["2024-07-25T06:21:33.010000"],["2024-07-25T06:21:34.010000"],["2024-07-25T06:21:35.010000"],["2024-07-25T06:21:36.010000"],["2024-07-25T06:21:37.010000"],["2024-07-25T06:21:38.010000"],["2024-07-25T06:21:39.010000"],["2024-07-25T06:21:40.010000"],["2024-07-25T06:21:41.010000"],["2024-07-25T06:21:42.010000"],["2024-07-25T06:21:43.010000"],["2024-07-25T06:21:44.010000"],["2024-07-25T06:21:45.010000"],["2024-07-25T06:21:46.010000"],["2024-07-25T06:21:47.010000"],["2024-07-25T06:21:48.010000"],["2024-07-25T06:21:49.010000"],["2024-07-25T06:21:50.010000"],["2024-07-25T06:21:51.010000"],["2024-07-25T06:21:52.010000"],["2024-07-25T06:21:53.010000"],["2024-07-25T06:21:54.010000"],["2024-07-25T06:21:55.010000"],["2024-07-25T06:21:56.010000"],["2024-07-25T06:21:57.010000"],["2024-07-25T06:21:58.010000"],["2024-07-25T06:21:59.010000"],["2024-07-25T06:22:00.010000"],["2024-07-25T06:22:01.010000"],["2024-07-25T06:22:02.010000"],["2024-07-25T06:22:03.010000"],["2024-07-25T06:22:04.010000"],["2024-07-25T06:22:05.010000"],["2024-07-25T06:22:06.010000"],["2024-07-25T06:22:07.010000"],["2024-07-25T06:22:08.010000"],["2024-07-25T06:22:09.010000"],["2024-07-25T06:22:10.010000"],["2024-07-25T06:22:11.010000"],["2024-07-25T06:22:12.010000"],["2024-07-25T06:22:13.010000"],["2024-07-25T06:22:14.010000"],["2024-07-25T06:22:15.010000"],["2024-07-25T06:22:16.010000"],["2024-07-25T06:22:17.010000"],["2024-07-25T06:22:18.010000"],["2024-07-25T06:22:19.010000"],["2024-07-25T06:22:20.010000"],["2024-07-25T06:22:21.010000"],["2024-07-25T06:22:22.010000"],["2024-07-25T06:22:23.010000"],["2024-07-25T06:22:24.010000"],["2024-07-25T06:22:25.010000"],["2024-07-25T06:22:26.010000"],["2024-07-25T06:22:27.010000"],["2024-07-25T06:22:28.010000"],["2024-07-25T06:22:29.010000"],["2024-07-25T06:22:30.010000"],["2024-07-25T06:22:31.010000"],["2024-07-25T06:22:32.010000"],["2024-07-25T06:22:33.010000"],["2024-07-25T06:22:34.010000"],["2024-07-25T06:22:35.010000"],["2024-07-25T06:22:36.010000"],["2024-07-25T06:22:37.010000"],["2024-07-25T06:22:38.010000"],["2024-07-25T06:22:39.010000"],["2024-07-25T06:22:40.010000"],["2024-07-25T06:22:41.010000"],["2024-07-25T06:22:42.010000"],["2024-07-25T06:22:43.010000"],["2024-07-25T06:22:44.010000"],["2024-07-25T06:22:45.010000"],["2024-07-25T06:22:46.010000"],["2024-07-25T06:22:47.010000"],["2024-07-25T06:22:48.010000"],["2024-07-25T06:22:49.010000"],["2024-07-25T06:22:50.010000"],["2024-07-25T06:22:51.010000"],["2024-07-25T06:22:52.010000"],["2024-07-25T06:22:53.010000"],["2024-07-25T06:22:54.010000"],["2024-07-25T06:22:55.010000"],["2024-07-25T06:22:56.010000"],["2024-07-25T06:22:57.010000"],["2024-07-25T06:22:58.010000"],["2024-07-25T06:22:59.010000"],["2024-07-25T06:23:00.010000"],["2024-07-25T06:23:01.010000"],["2024-07-25T06:23:02.010000"],["2024-07-25T06:23:03.010000"],["2024-07-25T06:23:04.010000"],["2024-07-25T06:23:05.010000"],["2024-07-25T06:23:06.010000"],["2024-07-25T06:23:07.010000"],["2024-07-25T06:23:08.010000"],["2024-07-25T06:23:09.010000"],["2024-07-25T06:23:10.010000"],["2024-07-25T06:23:11.010000"],["2024-07-25T06:23:12.010000"],["2024-07-25T06:23:13.010000"],["2024-07-25T06:23:14.010000"],["2024-07-25T06:23:15.010000"],["2024-07-25T06:23:16.010000"],["2024-07-25T06:23:17.010000"],["2024-07-25T06:23:18.010000"],["2024-07-25T06:23:19.010000"],["2024-07-25T06:23:20.010000"],["2024-07-25T06:23:21.010000"],["2024-07-25T06:23:22.010000"],["2024-07-25T06:23:23.010000"],["2024-07-25T06:23:24.010000"],["2024-07-25T06:23:25.010000"],["2024-07-25T06:23:26.010000"],["2024-07-25T06:23:27.010000"],["2024-07-25T06:23:28.010000"],["2024-07-25T06:23:29.010000"],["2024-07-25T06:23:30.010000"],["2024-07-25T06:23:31.010000"],["2024-07-25T06:23:32.010000"],["2024-07-25T06:23:33.010000"],["2024-07-25T06:23:34.010000"],["2024-07-25T06:23:35.010000"],["2024-07-25T06:23:36.010000"],["2024-07-25T06:23:37.010000"],["2024-07-25T06:23:38.010000"],["2024-07-25T06:23:39.010000"],["2024-07-25T06:23:40.010000"],["2024-07-25T06:23:41.010000"],["2024-07-25T06:23:42.010000"],["2024-07-25T06:23:43.010000"],["2024-07-25T06:23:44.010000"],["2024-07-25T06:23:45.010000"],["2024-07-25T06:23:46.010000"],["2024-07-25T06:23:47.010000"],["2024-07-25T06:23:48.010000"],["2024-07-25T06:23:49.010000"],["2024-07-25T06:23:50.010000"],["2024-07-25T06:23:51.010000"],["2024-07-25T06:23:52.010000"],["2024-07-25T06:23:53.010000"],["2024-07-25T06:23:54.010000"],["2024-07-25T06:23:55.010000"],["2024-07-25T06:23:56.010000"],["2024-07-25T06:23:57.010000"],["2024-07-25T06:23:58.010000"],["2024-07-25T06:23:59.010000"],["2024-07-25T06:24:00.010000"],["2024-07-25T06:24:01.010000"],["2024-07-25T06:24:02.010000"],["2024-07-25T06:24:03.010000"],["2024-07-25T06:24:04.010000"],["2024-07-25T06:24:05.010000"],["2024-07-25T06:24:06.010000"],["2024-07-25T06:24:07.010000"],["2024-07-25T06:24:08.010000"],["2024-07-25T06:24:09.010000"],["2024-07-25T06:24:10.010000"],["2024-07-25T06:24:11.010000"],["2024-07-25T06:24:12.010000"],["2024-07-25T06:24:13.010000"],["2024-07-25T06:24:14.010000"],["2024-07-25T06:24:15.010000"],["2024-07-25T06:24:16.010000"],["2024-07-25T06:24:17.010000"],["2024-07-25T06:24:18.010000"],["2024-07-25T06:24:19.010000"],["2024-07-25T06:24:20.010000"],["2024-07-25T06:24:21.010000"],["2024-07-25T06:24:22.010000"],["2024-07-25T06:24:23.010000"],["2024-07-25T06:24:24.010000"],["2024-07-25T06:24:25.010000"],["2024-07-25T06:24:26.010000"],["2024-07-25T06:24:27.010000"],["2024-07-25T06:24:28.010000"],["2024-07-25T06:24:29.010000"],["2024-07-25T06:24:30.010000"],["2024-07-25T06:24:31.010000"],["2024-07-25T06:24:32.010000"],["2024-07-25T06:24:33.010000"],["2024-07-25T06:24:34.010000"],["2024-07-25T06:24:35.010000"],["2024-07-25T06:24:36.010000"],["2024-07-25T06:24:37.010000"],["2024-07-25T06:24:38.010000"],["2024-07-25T06:24:39.010000"],["2024-07-25T06:24:40.010000"],["2024-07-25T06:24:41.010000"],["2024-07-25T06:24:42.010000"],["2024-07-25T06:24:43.010000"],["2024-07-25T06:24:44.010000"],["2024-07-25T06:24:45.010000"],["2024-07-25T06:24:46.010000"],["2024-07-25T06:24:47.010000"],["2024-07-25T06:24:48.010000"],["2024-07-25T06:24:49.010000"],["2024-07-25T06:24:50.010000"],["2024-07-25T06:24:51.010000"],["2024-07-25T06:24:52.010000"],["2024-07-25T06:24:53.010000"],["2024-07-25T06:24:54.010000"],["2024-07-25T06:24:55.010000"],["2024-07-25T06:24:56.010000"],["2024-07-25T06:24:57.010000"],["2024-07-25T06:24:58.010000"],["2024-07-25T06:24:59.010000"],["2024-07-25T06:25:00.010000"],["2024-07-25T06:25:01.010000"],["2024-07-25T06:25:02.010000"],["2024-07-25T06:25:03.010000"],["2024-07-25T06:25:04.010000"],["2024-07-25T06:25:05.010000"],["2024-07-25T06:25:06.010000"],["2024-07-25T06:25:07.010000"],["2024-07-25T06:25:08.010000"],["2024-07-25T06:25:09.010000"],["2024-07-25T06:25:10.010000"],["2024-07-25T06:25:11.010000"],["2024-07-25T06:25:12.010000"],["2024-07-25T06:25:13.010000"],["2024-07-25T06:25:14.010000"],["2024-07-25T06:25:15.010000"],["2024-07-25T06:25:16.010000"],["2024-07-25T06:25:17.010000"],["2024-07-25T06:25:18.010000"],["2024-07-25T06:25:19.010000"],["2024-07-25T06:25:20.010000"],["2024-07-25T06:25:21.010000"],["2024-07-25T06:25:22.010000"],["2024-07-25T06:25:23.010000"],["2024-07-25T06:25:24.010000"],["2024-07-25T06:25:25.010000"],["2024-07-25T06:25:26.010000"],["2024-07-25T06:25:27.010000"],["2024-07-25T06:25:28.010000"],["2024-07-25T06:25:29.010000"],["2024-07-25T06:25:30.010000"],["2024-07-25T06:25:31.010000"],["2024-07-25T06:25:32.010000"],["2024-07-25T06:25:33.010000"],["2024-07-25T06:25:34.010000"],["2024-07-25T06:25:35.010000"],["2024-07-25T06:25:36.010000"],["2024-07-25T06:25:37.010000"],["2024-07-25T06:25:38.010000"],["2024-07-25T06:25:39.010000"],["2024-07-25T06:25:40.010000"],["2024-07-25T06:25:41.010000"],["2024-07-25T06:25:42.010000"],["2024-07-25T06:25:43.010000"],["2024-07-25T06:25:44.010000"],["2024-07-25T06:25:45.010000"],["2024-07-25T06:25:46.010000"],["2024-07-25T06:25:47.010000"],["2024-07-25T06:25:48.010000"],["2024-07-25T06:25:49.010000"],["2024-07-25T06:25:50.010000"],["2024-07-25T06:25:51.010000"],["2024-07-25T06:25:52.010000"],["2024-07-25T06:25:53.010000"],["2024-07-25T06:25:54.010000"],["2024-07-25T06:25:55.010000"],["2024-07-25T06:25:56.010000"],["2024-07-25T06:25:57.010000"],["2024-07-25T06:25:58.010000"],["2024-07-25T06:25:59.010000"],["2024-07-25T06:26:00.010000"],["2024-07-25T06:26:01.010000"],["2024-07-25T06:26:02.010000"],["2024-07-25T06:26:03.010000"],["2024-07-25T06:26:04.010000"],["2024-07-25T06:26:05.010000"],["2024-07-25T06:26:06.010000"],["2024-07-25T06:26:07.010000"],["2024-07-25T06:26:08.010000"],["2024-07-25T06:26:09.010000"],["2024-07-25T06:26:10.010000"],["2024-07-25T06:26:11.010000"],["2024-07-25T06:26:12.010000"],["2024-07-25T06:26:13.010000"],["2024-07-25T06:26:14.010000"],["2024-07-25T06:26:15.010000"],["2024-07-25T06:26:16.010000"],["2024-07-25T06:26:17.010000"],["2024-07-25T06:26:18.010000"],["2024-07-25T06:26:19.010000"],["2024-07-25T06:26:20.010000"],["2024-07-25T06:26:21.010000"],["2024-07-25T06:26:22.010000"],["2024-07-25T06:26:23.010000"],["2024-07-25T06:26:24.010000"],["2024-07-25T06:26:25.010000"],["2024-07-25T06:26:26.010000"],["2024-07-25T06:26:27.010000"],["2024-07-25T06:26:28.010000"],["2024-07-25T06:26:29.010000"],["2024-07-25T06:26:30.010000"],["2024-07-25T06:26:31.010000"],["2024-07-25T06:26:32.010000"],["2024-07-25T06:26:33.010000"],["2024-07-25T06:26:34.010000"],["2024-07-25T06:26:35.010000"],["2024-07-25T06:26:36.010000"],["2024-07-25T06:26:37.010000"],["2024-07-25T06:26:38.010000"],["2024-07-25T06:26:39.010000"],["2024-07-25T06:26:40.010000"],["2024-07-25T06:26:41.010000"],["2024-07-25T06:26:42.010000"],["2024-07-25T06:26:43.010000"],["2024-07-25T06:26:44.010000"],["2024-07-25T06:26:45.010000"],["2024-07-25T06:26:46.010000"],["2024-07-25T06:26:47.010000"],["2024-07-25T06:26:48.010000"],["2024-07-25T06:26:49.010000"],["2024-07-25T06:26:50.010000"],["2024-07-25T06:26:51.010000"],["2024-07-25T06:26:52.010000"],["2024-07-25T06:26:53.010000"],["2024-07-25T06:26:54.010000"],["2024-07-25T06:26:55.010000"],["2024-07-25T06:26:56.010000"],["2024-07-25T06:26:57.010000"],["2024-07-25T06:26:58.010000"],["2024-07-25T06:26:59.010000"],["2024-07-25T06:27:00.010000"],["2024-07-25T06:27:01.010000"],["2024-07-25T06:27:02.010000"],["2024-07-25T06:27:03.010000"],["2024-07-25T06:27:04.010000"],["2024-07-25T06:27:05.010000"],["2024-07-25T06:27:06.010000"],["2024-07-25T06:27:07.010000"],["2024-07-25T06:27:08.010000"],["2024-07-25T06:27:09.010000"],["2024-07-25T06:27:10.010000"],["2024-07-25T06:27:11.010000"],["2024-07-25T06:27:12.010000"],["2024-07-25T06:27:13.010000"],["2024-07-25T06:27:14.010000"],["2024-07-25T06:27:15.010000"],["2024-07-25T06:27:16.010000"],["2024-07-25T06:27:17.010000"],["2024-07-25T06:27:18.010000"],["2024-07-25T06:27:19.010000"],["2024-07-25T06:27:20.010000"],["2024-07-25T06:27:21.010000"],["2024-07-25T06:27:22.010000"],["2024-07-25T06:27:23.010000"],["2024-07-25T06:27:24.010000"],["2024-07-25T06:27:25.010000"],["2024-07-25T06:27:26.010000"],["2024-07-25T06:27:27.010000"],["2024-07-25T06:27:28.010000"],["2024-07-25T06:27:29.010000"],["2024-07-25T06:27:30.010000"],["2024-07-25T06:27:31.010000"],["2024-07-25T06:27:32.010000"],["2024-07-25T06:27:33.010000"],["2024-07-25T06:27:34.010000"],["2024-07-25T06:27:35.010000"],["2024-07-25T06:27:36.010000"],["2024-07-25T06:27:37.010000"],["2024-07-25T06:27:38.010000"],["2024-07-25T06:27:39.010000"],["2024-07-25T06:27:40.010000"],["2024-07-25T06:27:41.010000"],["2024-07-25T06:27:42.010000"],["2024-07-25T06:27:43.010000"],["2024-07-25T06:27:44.010000"],["2024-07-25T06:27:45.010000"],["2024-07-25T06:27:46.010000"],["2024-07-25T06:27:47.010000"],["2024-07-25T06:27:48.010000"],["2024-07-25T06:27:49.010000"],["2024-07-25T06:27:50.010000"],["2024-07-25T06:27:51.010000"],["2024-07-25T06:27:52.010000"],["2024-07-25T06:27:53.010000"],["2024-07-25T06:27:54.010000"],["2024-07-25T06:27:55.010000"],["2024-07-25T06:27:56.010000"],["2024-07-25T06:27:57.010000"],["2024-07-25T06:27:58.010000"],["2024-07-25T06:27:59.010000"],["2024-07-25T06:28:00.010000"],["2024-07-25T06:28:01.010000"],["2024-07-25T06:28:02.010000"],["2024-07-25T06:28:03.010000"],["2024-07-25T06:28:04.010000"],["2024-07-25T06:28:05.010000"],["2024-07-25T06:28:06.010000"],["2024-07-25T06:28:07.010000"],["2024-07-25T06:28:08.010000"],["2024-07-25T06:28:09.010000"],["2024-07-25T06:28:10.010000"],["2024-07-25T06:28:11.010000"],["2024-07-25T06:28:12.010000"],["2024-07-25T06:28:13.010000"],["2024-07-25T06:28:14.010000"],["2024-07-25T06:28:15.010000"],["2024-07-25T06:28:16.010000"],["2024-07-25T06:28:17.010000"],["2024-07-25T06:28:18.010000"],["2024-07-25T06:28:19.010000"],["2024-07-25T06:28:20.010000"],["2024-07-25T06:28:21.010000"],["2024-07-25T06:28:22.010000"],["2024-07-25T06:28:23.010000"],["2024-07-25T06:28:24.010000"],["2024-07-25T06:28:25.010000"],["2024-07-25T06:28:26.010000"],["2024-07-25T06:28:27.010000"],["2024-07-25T06:28:28.010000"],["2024-07-25T06:28:29.010000"],["2024-07-25T06:28:30.010000"],["2024-07-25T06:28:31.010000"],["2024-07-25T06:28:32.010000"],["2024-07-25T06:28:33.010000"],["2024-07-25T06:28:34.010000"],["2024-07-25T06:28:35.010000"],["2024-07-25T06:28:36.010000"],["2024-07-25T06:28:37.010000"],["2024-07-25T06:28:38.010000"],["2024-07-25T06:28:39.010000"],["2024-07-25T06:28:40.010000"],["2024-07-25T06:28:41.010000"],["2024-07-25T06:28:42.010000"],["2024-07-25T06:28:43.010000"],["2024-07-25T06:28:44.010000"],["2024-07-25T06:28:45.010000"],["2024-07-25T06:28:46.010000"],["2024-07-25T06:28:47.010000"],["2024-07-25T06:28:48.010000"],["2024-07-25T06:28:49.010000"],["2024-07-25T06:28:50.010000"],["2024-07-25T06:28:51.010000"],["2024-07-25T06:28:52.010000"],["2024-07-25T06:28:53.010000"],["2024-07-25T06:28:54.010000"],["2024-07-25T06:28:55.010000"],["2024-07-25T06:28:56.010000"],["2024-07-25T06:28:57.010000"],["2024-07-25T06:28:58.010000"],["2024-07-25T06:28:59.010000"],["2024-07-25T06:29:00.010000"],["2024-07-25T06:29:01.010000"],["2024-07-25T06:29:02.010000"],["2024-07-25T06:29:03.010000"],["2024-07-25T06:29:04.010000"],["2024-07-25T06:29:05.010000"],["2024-07-25T06:29:06.010000"],["2024-07-25T06:29:07.010000"],["2024-07-25T06:29:08.010000"],["2024-07-25T06:29:09.010000"],["2024-07-25T06:29:10.010000"],["2024-07-25T06:29:11.010000"],["2024-07-25T06:29:12.010000"],["2024-07-25T06:29:13.010000"],["2024-07-25T06:29:14.010000"],["2024-07-25T06:29:15.010000"],["2024-07-25T06:29:16.010000"],["2024-07-25T06:29:17.010000"],["2024-07-25T06:29:18.010000"],["2024-07-25T06:29:19.010000"],["2024-07-25T06:29:20.010000"],["2024-07-25T06:29:21.010000"],["2024-07-25T06:29:22.010000"],["2024-07-25T06:29:23.010000"],["2024-07-25T06:29:24.010000"],["2024-07-25T06:29:25.010000"],["2024-07-25T06:29:26.010000"],["2024-07-25T06:29:27.010000"],["2024-07-25T06:29:28.010000"],["2024-07-25T06:29:29.010000"],["2024-07-25T06:29:30.010000"],["2024-07-25T06:29:31.010000"],["2024-07-25T06:29:32.010000"],["2024-07-25T06:29:33.010000"],["2024-07-25T06:29:34.010000"],["2024-07-25T06:29:35.010000"],["2024-07-25T06:29:36.010000"],["2024-07-25T06:29:37.010000"],["2024-07-25T06:29:38.010000"],["2024-07-25T06:29:39.010000"],["2024-07-25T06:29:40.010000"],["2024-07-25T06:29:41.010000"],["2024-07-25T06:29:42.010000"],["2024-07-25T06:29:43.010000"],["2024-07-25T06:29:44.010000"],["2024-07-25T06:29:45.010000"],["2024-07-25T06:29:46.010000"],["2024-07-25T06:29:47.010000"],["2024-07-25T06:29:48.010000"],["2024-07-25T06:29:49.010000"],["2024-07-25T06:29:50.010000"],["2024-07-25T06:29:51.010000"],["2024-07-25T06:29:52.010000"],["2024-07-25T06:29:53.010000"],["2024-07-25T06:29:54.010000"],["2024-07-25T06:29:55.010000"],["2024-07-25T06:29:56.010000"],["2024-07-25T06:29:57.010000"],["2024-07-25T06:29:58.010000"],["2024-07-25T06:29:59.010000"],["2024-07-25T06:30:00.010000"],["2024-07-25T06:30:01.010000"],["2024-07-25T06:30:02.010000"],["2024-07-25T06:30:03.010000"],["2024-07-25T06:30:04.010000"],["2024-07-25T06:30:05.010000"],["2024-07-25T06:30:06.010000"],["2024-07-25T06:30:07.010000"],["2024-07-25T06:30:08.010000"],["2024-07-25T06:30:09.010000"],["2024-07-25T06:30:10.010000"],["2024-07-25T06:30:11.010000"],["2024-07-25T06:30:12.010000"],["2024-07-25T06:30:13.010000"],["2024-07-25T06:30:14.010000"],["2024-07-25T06:30:15.010000"],["2024-07-25T06:30:16.010000"],["2024-07-25T06:30:17.010000"],["2024-07-25T06:30:18.010000"],["2024-07-25T06:30:19.010000"],["2024-07-25T06:30:20.010000"],["2024-07-25T06:30:21.010000"],["2024-07-25T06:30:22.010000"],["2024-07-25T06:30:23.010000"],["2024-07-25T06:30:24.010000"],["2024-07-25T06:30:25.010000"],["2024-07-25T06:30:26.010000"],["2024-07-25T06:30:27.010000"],["2024-07-25T06:30:28.010000"],["2024-07-25T06:30:29.010000"],["2024-07-25T06:30:30.010000"],["2024-07-25T06:30:31.010000"],["2024-07-25T06:30:32.010000"],["2024-07-25T06:30:33.010000"],["2024-07-25T06:30:34.010000"],["2024-07-25T06:30:35.010000"],["2024-07-25T06:30:36.010000"],["2024-07-25T06:30:37.010000"],["2024-07-25T06:30:38.010000"],["2024-07-25T06:30:39.010000"],["2024-07-25T06:30:40.010000"],["2024-07-25T06:30:41.010000"],["2024-07-25T06:30:42.010000"],["2024-07-25T06:30:43.010000"],["2024-07-25T06:30:44.010000"],["2024-07-25T06:30:45.010000"],["2024-07-25T06:30:46.010000"],["2024-07-25T06:30:47.010000"],["2024-07-25T06:30:48.010000"],["2024-07-25T06:30:49.010000"],["2024-07-25T06:30:50.010000"],["2024-07-25T06:30:51.010000"],["2024-07-25T06:30:52.010000"],["2024-07-25T06:30:53.010000"],["2024-07-25T06:30:54.010000"],["2024-07-25T06:30:55.010000"],["2024-07-25T06:30:56.010000"],["2024-07-25T06:30:57.010000"],["2024-07-25T06:30:58.010000"],["2024-07-25T06:30:59.010000"],["2024-07-25T06:31:00.010000"],["2024-07-25T06:31:01.010000"],["2024-07-25T06:31:02.010000"],["2024-07-25T06:31:03.010000"],["2024-07-25T06:31:04.010000"],["2024-07-25T06:31:05.010000"],["2024-07-25T06:31:06.010000"],["2024-07-25T06:31:07.010000"],["2024-07-25T06:31:08.010000"],["2024-07-25T06:31:09.010000"],["2024-07-25T06:31:10.010000"],["2024-07-25T06:31:11.010000"],["2024-07-25T06:31:12.010000"],["2024-07-25T06:31:13.010000"],["2024-07-25T06:31:14.010000"],["2024-07-25T06:31:15.010000"],["2024-07-25T06:31:16.010000"],["2024-07-25T06:31:17.010000"],["2024-07-25T06:31:18.010000"],["2024-07-25T06:31:19.010000"],["2024-07-25T06:31:20.010000"],["2024-07-25T06:31:21.010000"],["2024-07-25T06:31:22.010000"],["2024-07-25T06:31:23.010000"],["2024-07-25T06:31:24.010000"],["2024-07-25T06:31:25.010000"],["2024-07-25T06:31:26.010000"],["2024-07-25T06:31:27.010000"],["2024-07-25T06:31:28.010000"],["2024-07-25T06:31:29.010000"],["2024-07-25T06:31:30.010000"],["2024-07-25T06:31:31.010000"],["2024-07-25T06:31:32.010000"],["2024-07-25T06:31:33.010000"],["2024-07-25T06:31:34.010000"],["2024-07-25T06:31:35.010000"],["2024-07-25T06:31:36.010000"],["2024-07-25T06:31:37.010000"],["2024-07-25T06:31:38.010000"],["2024-07-25T06:31:39.010000"],["2024-07-25T06:31:40.010000"],["2024-07-25T06:31:41.010000"],["2024-07-25T06:31:42.010000"],["2024-07-25T06:31:43.010000"],["2024-07-25T06:31:44.010000"],["2024-07-25T06:31:45.010000"],["2024-07-25T06:31:46.010000"],["2024-07-25T06:31:47.010000"],["2024-07-25T06:31:48.010000"],["2024-07-25T06:31:49.010000"],["2024-07-25T06:31:50.010000"],["2024-07-25T06:31:51.010000"],["2024-07-25T06:31:52.010000"],["2024-07-25T06:31:53.010000"],["2024-07-25T06:31:54.010000"],["2024-07-25T06:31:55.010000"],["2024-07-25T06:31:56.010000"],["2024-07-25T06:31:57.010000"],["2024-07-25T06:31:58.010000"],["2024-07-25T06:31:59.010000"],["2024-07-25T06:32:00.010000"],["2024-07-25T06:32:01.010000"],["2024-07-25T06:32:02.010000"],["2024-07-25T06:32:03.010000"],["2024-07-25T06:32:04.010000"],["2024-07-25T06:32:05.010000"],["2024-07-25T06:32:06.010000"],["2024-07-25T06:32:07.010000"],["2024-07-25T06:32:08.010000"],["2024-07-25T06:32:09.010000"],["2024-07-25T06:32:10.010000"],["2024-07-25T06:32:11.010000"],["2024-07-25T06:32:12.010000"],["2024-07-25T06:32:13.010000"],["2024-07-25T06:32:14.010000"],["2024-07-25T06:32:15.010000"],["2024-07-25T06:32:16.010000"],["2024-07-25T06:32:17.010000"],["2024-07-25T06:32:18.010000"],["2024-07-25T06:32:19.010000"],["2024-07-25T06:32:20.010000"],["2024-07-25T06:32:21.010000"],["2024-07-25T06:32:22.010000"],["2024-07-25T06:32:23.010000"],["2024-07-25T06:32:24.010000"],["2024-07-25T06:32:25.010000"],["2024-07-25T06:32:26.010000"],["2024-07-25T06:32:27.010000"],["2024-07-25T06:32:28.010000"],["2024-07-25T06:32:29.010000"],["2024-07-25T06:32:30.010000"],["2024-07-25T06:32:31.010000"],["2024-07-25T06:32:32.010000"],["2024-07-25T06:32:33.010000"],["2024-07-25T06:32:34.010000"],["2024-07-25T06:32:35.010000"],["2024-07-25T06:32:36.010000"],["2024-07-25T06:32:37.010000"],["2024-07-25T06:32:38.010000"],["2024-07-25T06:32:39.010000"],["2024-07-25T06:32:40.010000"],["2024-07-25T06:32:41.010000"],["2024-07-25T06:32:42.010000"],["2024-07-25T06:32:43.010000"],["2024-07-25T06:32:44.010000"],["2024-07-25T06:32:45.010000"],["2024-07-25T06:32:46.010000"],["2024-07-25T06:32:47.010000"],["2024-07-25T06:32:48.010000"],["2024-07-25T06:32:49.010000"],["2024-07-25T06:32:50.010000"],["2024-07-25T06:32:51.010000"],["2024-07-25T06:32:52.010000"],["2024-07-25T06:32:53.010000"],["2024-07-25T06:32:54.010000"],["2024-07-25T06:32:55.010000"],["2024-07-25T06:32:56.010000"],["2024-07-25T06:32:57.010000"],["2024-07-25T06:32:58.010000"],["2024-07-25T06:32:59.010000"],["2024-07-25T06:33:00.010000"],["2024-07-25T06:33:01.010000"],["2024-07-25T06:33:02.010000"],["2024-07-25T06:33:03.010000"],["2024-07-25T06:33:04.010000"],["2024-07-25T06:33:05.010000"],["2024-07-25T06:33:06.010000"],["2024-07-25T06:33:07.010000"],["2024-07-25T06:33:08.010000"],["2024-07-25T06:33:09.010000"],["2024-07-25T06:33:10.010000"],["2024-07-25T06:33:11.010000"],["2024-07-25T06:33:12.010000"],["2024-07-25T06:33:13.010000"],["2024-07-25T06:33:14.010000"],["2024-07-25T06:33:15.010000"],["2024-07-25T06:33:16.010000"],["2024-07-25T06:33:17.010000"],["2024-07-25T06:33:18.010000"],["2024-07-25T06:33:19.010000"],["2024-07-25T06:33:20.010000"],["2024-07-25T06:33:21.010000"],["2024-07-25T06:33:22.010000"],["2024-07-25T06:33:23.010000"],["2024-07-25T06:33:24.010000"],["2024-07-25T06:33:25.010000"],["2024-07-25T06:33:26.010000"],["2024-07-25T06:33:27.010000"],["2024-07-25T06:33:28.010000"],["2024-07-25T06:33:29.010000"],["2024-07-25T06:33:30.010000"],["2024-07-25T06:33:31.010000"],["2024-07-25T06:33:32.010000"],["2024-07-25T06:33:33.010000"],["2024-07-25T06:33:34.010000"],["2024-07-25T06:33:35.010000"],["2024-07-25T06:33:36.010000"],["2024-07-25T06:33:37.010000"],["2024-07-25T06:33:38.010000"],["2024-07-25T06:33:39.010000"],["2024-07-25T06:33:40.010000"],["2024-07-25T06:33:41.010000"],["2024-07-25T06:33:42.010000"],["2024-07-25T06:33:43.010000"],["2024-07-25T06:33:44.010000"],["2024-07-25T06:33:45.010000"],["2024-07-25T06:33:46.010000"],["2024-07-25T06:33:47.010000"],["2024-07-25T06:33:48.010000"],["2024-07-25T06:33:49.010000"],["2024-07-25T06:33:50.010000"],["2024-07-25T06:33:51.010000"],["2024-07-25T06:33:52.010000"],["2024-07-25T06:33:53.010000"],["2024-07-25T06:33:54.010000"],["2024-07-25T06:33:55.010000"],["2024-07-25T06:33:56.010000"],["2024-07-25T06:33:57.010000"],["2024-07-25T06:33:58.010000"],["2024-07-25T06:33:59.010000"],["2024-07-25T06:34:00.010000"],["2024-07-25T06:34:01.010000"],["2024-07-25T06:34:02.010000"],["2024-07-25T06:34:03.010000"],["2024-07-25T06:34:04.010000"],["2024-07-25T06:34:05.010000"],["2024-07-25T06:34:06.010000"],["2024-07-25T06:34:07.010000"],["2024-07-25T06:34:08.010000"],["2024-07-25T06:34:09.010000"],["2024-07-25T06:34:10.010000"],["2024-07-25T06:34:11.010000"],["2024-07-25T06:34:12.010000"],["2024-07-25T06:34:13.010000"],["2024-07-25T06:34:14.010000"],["2024-07-25T06:34:15.010000"],["2024-07-25T06:34:16.010000"],["2024-07-25T06:34:17.010000"],["2024-07-25T06:34:18.010000"],["2024-07-25T06:34:19.010000"],["2024-07-25T06:34:20.010000"],["2024-07-25T06:34:21.010000"],["2024-07-25T06:34:22.010000"],["2024-07-25T06:34:23.010000"],["2024-07-25T06:34:24.010000"],["2024-07-25T06:34:25.010000"],["2024-07-25T06:34:26.010000"],["2024-07-25T06:34:27.010000"],["2024-07-25T06:34:28.010000"],["2024-07-25T06:34:29.010000"],["2024-07-25T06:34:30.010000"],["2024-07-25T06:34:31.010000"],["2024-07-25T06:34:32.010000"],["2024-07-25T06:34:33.010000"],["2024-07-25T06:34:34.010000"],["2024-07-25T06:34:35.010000"],["2024-07-25T06:34:36.010000"],["2024-07-25T06:34:37.010000"],["2024-07-25T06:34:38.010000"],["2024-07-25T06:34:39.010000"],["2024-07-25T06:34:40.010000"],["2024-07-25T06:34:41.010000"],["2024-07-25T06:34:42.010000"],["2024-07-25T06:34:43.010000"],["2024-07-25T06:34:44.010000"],["2024-07-25T06:34:45.010000"],["2024-07-25T06:34:46.010000"],["2024-07-25T06:34:47.010000"],["2024-07-25T06:34:48.010000"],["2024-07-25T06:34:49.010000"],["2024-07-25T06:34:50.010000"],["2024-07-25T06:34:51.010000"],["2024-07-25T06:34:52.010000"],["2024-07-25T06:34:53.010000"],["2024-07-25T06:34:54.010000"],["2024-07-25T06:34:55.010000"],["2024-07-25T06:34:56.010000"],["2024-07-25T06:34:57.010000"],["2024-07-25T06:34:58.010000"],["2024-07-25T06:34:59.010000"],["2024-07-25T06:35:00.010000"],["2024-07-25T06:35:01.010000"],["2024-07-25T06:35:02.010000"],["2024-07-25T06:35:03.010000"],["2024-07-25T06:35:04.010000"],["2024-07-25T06:35:05.010000"],["2024-07-25T06:35:06.010000"],["2024-07-25T06:35:07.010000"],["2024-07-25T06:35:08.010000"],["2024-07-25T06:35:09.010000"],["2024-07-25T06:35:10.010000"],["2024-07-25T06:35:11.010000"],["2024-07-25T06:35:12.010000"],["2024-07-25T06:35:13.010000"],["2024-07-25T06:35:14.010000"],["2024-07-25T06:35:15.010000"],["2024-07-25T06:35:16.010000"],["2024-07-25T06:35:17.010000"],["2024-07-25T06:35:18.010000"],["2024-07-25T06:35:19.010000"],["2024-07-25T06:35:20.010000"],["2024-07-25T06:35:21.010000"],["2024-07-25T06:35:22.010000"],["2024-07-25T06:35:23.010000"],["2024-07-25T06:35:24.010000"],["2024-07-25T06:35:25.010000"],["2024-07-25T06:35:26.010000"],["2024-07-25T06:35:27.010000"],["2024-07-25T06:35:28.010000"],["2024-07-25T06:35:29.010000"],["2024-07-25T06:35:30.010000"],["2024-07-25T06:35:31.010000"],["2024-07-25T06:35:32.010000"],["2024-07-25T06:35:33.010000"],["2024-07-25T06:35:34.010000"],["2024-07-25T06:35:35.010000"],["2024-07-25T06:35:36.010000"],["2024-07-25T06:35:37.010000"],["2024-07-25T06:35:38.010000"],["2024-07-25T06:35:39.010000"],["2024-07-25T06:35:40.010000"],["2024-07-25T06:35:41.010000"],["2024-07-25T06:35:42.010000"],["2024-07-25T06:35:43.010000"],["2024-07-25T06:35:44.010000"],["2024-07-25T06:35:45.010000"],["2024-07-25T06:35:46.010000"],["2024-07-25T06:35:47.010000"],["2024-07-25T06:35:48.010000"],["2024-07-25T06:35:49.010000"],["2024-07-25T06:35:50.010000"],["2024-07-25T06:35:51.010000"],["2024-07-25T06:35:52.010000"],["2024-07-25T06:35:53.010000"],["2024-07-25T06:35:54.010000"],["2024-07-25T06:35:55.010000"],["2024-07-25T06:35:56.010000"],["2024-07-25T06:35:57.010000"],["2024-07-25T06:35:58.010000"],["2024-07-25T06:35:59.010000"],["2024-07-25T06:36:00.010000"],["2024-07-25T06:36:01.010000"],["2024-07-25T06:36:02.010000"],["2024-07-25T06:36:03.010000"],["2024-07-25T06:36:04.010000"],["2024-07-25T06:36:05.010000"],["2024-07-25T06:36:06.010000"],["2024-07-25T06:36:07.010000"],["2024-07-25T06:36:08.010000"],["2024-07-25T06:36:09.010000"],["2024-07-25T06:36:10.010000"],["2024-07-25T06:36:11.010000"],["2024-07-25T06:36:12.010000"],["2024-07-25T06:36:13.010000"],["2024-07-25T06:36:14.010000"],["2024-07-25T06:36:15.010000"],["2024-07-25T06:36:16.010000"],["2024-07-25T06:36:17.010000"],["2024-07-25T06:36:18.010000"],["2024-07-25T06:36:19.010000"],["2024-07-25T06:36:20.010000"],["2024-07-25T06:36:21.010000"],["2024-07-25T06:36:22.010000"],["2024-07-25T06:36:23.010000"],["2024-07-25T06:36:24.010000"],["2024-07-25T06:36:25.010000"],["2024-07-25T06:36:26.010000"],["2024-07-25T06:36:27.010000"],["2024-07-25T06:36:28.010000"],["2024-07-25T06:36:29.010000"],["2024-07-25T06:36:30.010000"],["2024-07-25T06:36:31.010000"],["2024-07-25T06:36:32.010000"],["2024-07-25T06:36:33.010000"],["2024-07-25T06:36:34.010000"],["2024-07-25T06:36:35.010000"],["2024-07-25T06:36:36.010000"],["2024-07-25T06:36:37.010000"],["2024-07-25T06:36:38.010000"],["2024-07-25T06:36:39.010000"],["2024-07-25T06:36:40.010000"],["2024-07-25T06:36:41.010000"],["2024-07-25T06:36:42.010000"],["2024-07-25T06:36:43.010000"],["2024-07-25T06:36:44.010000"],["2024-07-25T06:36:45.010000"],["2024-07-25T06:36:46.010000"],["2024-07-25T06:36:47.010000"],["2024-07-25T06:36:48.010000"],["2024-07-25T06:36:49.010000"],["2024-07-25T06:36:50.010000"],["2024-07-25T06:36:51.010000"],["2024-07-25T06:36:52.010000"],["2024-07-25T06:36:53.010000"],["2024-07-25T06:36:54.010000"],["2024-07-25T06:36:55.010000"],["2024-07-25T06:36:56.010000"],["2024-07-25T06:36:57.010000"],["2024-07-25T06:36:58.010000"],["2024-07-25T06:36:59.010000"],["2024-07-25T06:37:00.010000"],["2024-07-25T06:37:01.010000"],["2024-07-25T06:37:02.010000"],["2024-07-25T06:37:03.010000"],["2024-07-25T06:37:04.010000"],["2024-07-25T06:37:05.010000"],["2024-07-25T06:37:06.010000"],["2024-07-25T06:37:07.010000"],["2024-07-25T06:37:08.010000"],["2024-07-25T06:37:09.010000"],["2024-07-25T06:37:10.010000"],["2024-07-25T06:37:11.010000"],["2024-07-25T06:37:12.010000"],["2024-07-25T06:37:13.010000"],["2024-07-25T06:37:14.010000"],["2024-07-25T06:37:15.010000"],["2024-07-25T06:37:16.010000"],["2024-07-25T06:37:17.010000"],["2024-07-25T06:37:18.010000"],["2024-07-25T06:37:19.010000"],["2024-07-25T06:37:20.010000"],["2024-07-25T06:37:21.010000"],["2024-07-25T06:37:22.010000"],["2024-07-25T06:37:23.010000"],["2024-07-25T06:37:24.010000"],["2024-07-25T06:37:25.010000"],["2024-07-25T06:37:26.010000"],["2024-07-25T06:37:27.010000"],["2024-07-25T06:37:28.010000"],["2024-07-25T06:37:29.010000"],["2024-07-25T06:37:30.010000"],["2024-07-25T06:37:31.010000"],["2024-07-25T06:37:32.010000"],["2024-07-25T06:37:33.010000"],["2024-07-25T06:37:34.010000"],["2024-07-25T06:37:35.010000"],["2024-07-25T06:37:36.010000"],["2024-07-25T06:37:37.010000"],["2024-07-25T06:37:38.010000"],["2024-07-25T06:37:39.010000"],["2024-07-25T06:37:40.010000"],["2024-07-25T06:37:41.010000"],["2024-07-25T06:37:42.010000"],["2024-07-25T06:37:43.010000"],["2024-07-25T06:37:44.010000"],["2024-07-25T06:37:45.010000"],["2024-07-25T06:37:46.010000"],["2024-07-25T06:37:47.010000"],["2024-07-25T06:37:48.010000"],["2024-07-25T06:37:49.010000"],["2024-07-25T06:37:50.010000"],["2024-07-25T06:37:51.010000"],["2024-07-25T06:37:52.010000"],["2024-07-25T06:37:53.010000"],["2024-07-25T06:37:54.010000"],["2024-07-25T06:37:55.010000"],["2024-07-25T06:37:56.010000"],["2024-07-25T06:37:57.010000"],["2024-07-25T06:37:58.010000"],["2024-07-25T06:37:59.010000"],["2024-07-25T06:38:00.010000"],["2024-07-25T06:38:01.010000"],["2024-07-25T06:38:02.010000"],["2024-07-25T06:38:03.010000"],["2024-07-25T06:38:04.010000"],["2024-07-25T06:38:05.010000"],["2024-07-25T06:38:06.010000"],["2024-07-25T06:38:07.010000"],["2024-07-25T06:38:08.010000"],["2024-07-25T06:38:09.010000"],["2024-07-25T06:38:10.010000"],["2024-07-25T06:38:11.010000"],["2024-07-25T06:38:12.010000"],["2024-07-25T06:38:13.010000"],["2024-07-25T06:38:14.010000"],["2024-07-25T06:38:15.010000"],["2024-07-25T06:38:16.010000"],["2024-07-25T06:38:17.010000"],["2024-07-25T06:38:18.010000"],["2024-07-25T06:38:19.010000"],["2024-07-25T06:38:20.010000"],["2024-07-25T06:38:21.010000"],["2024-07-25T06:38:22.010000"],["2024-07-25T06:38:23.010000"],["2024-07-25T06:38:24.010000"],["2024-07-25T06:38:25.010000"],["2024-07-25T06:38:26.010000"],["2024-07-25T06:38:27.010000"],["2024-07-25T06:38:28.010000"],["2024-07-25T06:38:29.010000"],["2024-07-25T06:38:30.010000"],["2024-07-25T06:38:31.010000"],["2024-07-25T06:38:32.010000"],["2024-07-25T06:38:33.010000"],["2024-07-25T06:38:34.010000"],["2024-07-25T06:38:35.010000"],["2024-07-25T06:38:36.010000"],["2024-07-25T06:38:37.010000"],["2024-07-25T06:38:38.010000"],["2024-07-25T06:38:39.010000"],["2024-07-25T06:38:40.010000"],["2024-07-25T06:38:41.010000"],["2024-07-25T06:38:42.010000"],["2024-07-25T06:38:43.010000"],["2024-07-25T06:38:44.010000"],["2024-07-25T06:38:45.010000"],["2024-07-25T06:38:46.010000"],["2024-07-25T06:38:47.010000"],["2024-07-25T06:38:48.010000"],["2024-07-25T06:38:49.010000"],["2024-07-25T06:38:50.010000"],["2024-07-25T06:38:51.010000"],["2024-07-25T06:38:52.010000"],["2024-07-25T06:38:53.010000"],["2024-07-25T06:38:54.010000"],["2024-07-25T06:38:55.010000"],["2024-07-25T06:38:56.010000"],["2024-07-25T06:38:57.010000"],["2024-07-25T06:38:58.010000"],["2024-07-25T06:38:59.010000"],["2024-07-25T06:39:00.010000"],["2024-07-25T06:39:01.010000"],["2024-07-25T06:39:02.010000"],["2024-07-25T06:39:03.010000"],["2024-07-25T06:39:04.010000"],["2024-07-25T06:39:05.010000"],["2024-07-25T06:39:06.010000"],["2024-07-25T06:39:07.010000"],["2024-07-25T06:39:08.010000"],["2024-07-25T06:39:09.010000"],["2024-07-25T06:39:10.010000"],["2024-07-25T06:39:11.010000"],["2024-07-25T06:39:12.010000"],["2024-07-25T06:39:13.010000"],["2024-07-25T06:39:14.010000"],["2024-07-25T06:39:15.010000"],["2024-07-25T06:39:16.010000"],["2024-07-25T06:39:17.010000"],["2024-07-25T06:39:18.010000"],["2024-07-25T06:39:19.010000"],["2024-07-25T06:39:20.010000"],["2024-07-25T06:39:21.010000"],["2024-07-25T06:39:22.010000"],["2024-07-25T06:39:23.010000"],["2024-07-25T06:39:24.010000"],["2024-07-25T06:39:25.010000"],["2024-07-25T06:39:26.010000"],["2024-07-25T06:39:27.010000"],["2024-07-25T06:39:28.010000"],["2024-07-25T06:39:29.010000"],["2024-07-25T06:39:30.010000"],["2024-07-25T06:39:31.010000"],["2024-07-25T06:39:32.010000"],["2024-07-25T06:39:33.010000"],["2024-07-25T06:39:34.010000"],["2024-07-25T06:39:35.010000"],["2024-07-25T06:39:36.010000"],["2024-07-25T06:39:37.010000"],["2024-07-25T06:39:38.010000"],["2024-07-25T06:39:39.010000"],["2024-07-25T06:39:40.010000"],["2024-07-25T06:39:41.010000"],["2024-07-25T06:39:42.010000"],["2024-07-25T06:39:43.010000"],["2024-07-25T06:39:44.010000"],["2024-07-25T06:39:45.010000"],["2024-07-25T06:39:46.010000"],["2024-07-25T06:39:47.010000"],["2024-07-25T06:39:48.010000"],["2024-07-25T06:39:49.010000"],["2024-07-25T06:39:50.010000"],["2024-07-25T06:39:51.010000"],["2024-07-25T06:39:52.010000"],["2024-07-25T06:39:53.010000"],["2024-07-25T06:39:54.010000"],["2024-07-25T06:39:55.010000"],["2024-07-25T06:39:56.010000"],["2024-07-25T06:39:57.010000"],["2024-07-25T06:39:58.010000"],["2024-07-25T06:39:59.010000"],["2024-07-25T06:40:00.010000"],["2024-07-25T06:40:01.010000"],["2024-07-25T06:40:02.010000"],["2024-07-25T06:40:03.010000"],["2024-07-25T06:40:04.010000"],["2024-07-25T06:40:05.010000"],["2024-07-25T06:40:06.010000"],["2024-07-25T06:40:07.010000"],["2024-07-25T06:40:08.010000"],["2024-07-25T06:40:09.010000"],["2024-07-25T06:40:10.010000"],["2024-07-25T06:40:11.010000"],["2024-07-25T06:40:12.010000"],["2024-07-25T06:40:13.010000"],["2024-07-25T06:40:14.010000"],["2024-07-25T06:40:15.010000"],["2024-07-25T06:40:16.010000"],["2024-07-25T06:40:17.010000"],["2024-07-25T06:40:18.010000"],["2024-07-25T06:40:19.010000"],["2024-07-25T06:40:20.010000"],["2024-07-25T06:40:21.010000"],["2024-07-25T06:40:22.010000"],["2024-07-25T06:40:23.010000"],["2024-07-25T06:40:24.010000"],["2024-07-25T06:40:25.010000"],["2024-07-25T06:40:26.010000"],["2024-07-25T06:40:27.010000"],["2024-07-25T06:40:28.010000"],["2024-07-25T06:40:29.010000"],["2024-07-25T06:40:30.010000"],["2024-07-25T06:40:31.010000"],["2024-07-25T06:40:32.010000"],["2024-07-25T06:40:33.010000"],["2024-07-25T06:40:34.010000"],["2024-07-25T06:40:35.010000"],["2024-07-25T06:40:36.010000"],["2024-07-25T06:40:37.010000"],["2024-07-25T06:40:38.010000"],["2024-07-25T06:40:39.010000"],["2024-07-25T06:40:40.010000"],["2024-07-25T06:40:41.010000"],["2024-07-25T06:40:42.010000"],["2024-07-25T06:40:43.010000"],["2024-07-25T06:40:44.010000"],["2024-07-25T06:40:45.010000"],["2024-07-25T06:40:46.010000"],["2024-07-25T06:40:47.010000"],["2024-07-25T06:40:48.010000"],["2024-07-25T06:40:49.010000"],["2024-07-25T06:40:50.010000"],["2024-07-25T06:40:51.010000"],["2024-07-25T06:40:52.010000"],["2024-07-25T06:40:53.010000"],["2024-07-25T06:40:54.010000"],["2024-07-25T06:40:55.010000"],["2024-07-25T06:40:56.010000"],["2024-07-25T06:40:57.010000"],["2024-07-25T06:40:58.010000"],["2024-07-25T06:40:59.010000"],["2024-07-25T06:41:00.010000"],["2024-07-25T06:41:01.010000"],["2024-07-25T06:41:02.010000"],["2024-07-25T06:41:03.010000"],["2024-07-25T06:41:04.010000"],["2024-07-25T06:41:05.010000"],["2024-07-25T06:41:06.010000"],["2024-07-25T06:41:07.010000"],["2024-07-25T06:41:08.010000"],["2024-07-25T06:41:09.010000"],["2024-07-25T06:41:10.010000"],["2024-07-25T06:41:11.010000"],["2024-07-25T06:41:12.010000"],["2024-07-25T06:41:13.010000"],["2024-07-25T06:41:14.010000"],["2024-07-25T06:41:15.010000"],["2024-07-25T06:41:16.010000"],["2024-07-25T06:41:17.010000"],["2024-07-25T06:41:18.010000"],["2024-07-25T06:41:19.010000"],["2024-07-25T06:41:20.010000"],["2024-07-25T06:41:21.010000"],["2024-07-25T06:41:22.010000"],["2024-07-25T06:41:23.010000"],["2024-07-25T06:41:24.010000"],["2024-07-25T06:41:25.010000"],["2024-07-25T06:41:26.010000"],["2024-07-25T06:41:27.010000"],["2024-07-25T06:41:28.010000"],["2024-07-25T06:41:29.010000"],["2024-07-25T06:41:30.010000"],["2024-07-25T06:41:31.010000"],["2024-07-25T06:41:32.010000"],["2024-07-25T06:41:33.010000"],["2024-07-25T06:41:34.010000"],["2024-07-25T06:41:35.010000"],["2024-07-25T06:41:36.010000"],["2024-07-25T06:41:37.010000"],["2024-07-25T06:41:38.010000"],["2024-07-25T06:41:39.010000"],["2024-07-25T06:41:40.010000"],["2024-07-25T06:41:41.010000"],["2024-07-25T06:41:42.010000"],["2024-07-25T06:41:43.010000"],["2024-07-25T06:41:44.010000"],["2024-07-25T06:41:45.010000"],["2024-07-25T06:41:46.010000"],["2024-07-25T06:41:47.010000"],["2024-07-25T06:41:48.010000"],["2024-07-25T06:41:49.010000"],["2024-07-25T06:41:50.010000"],["2024-07-25T06:41:51.010000"],["2024-07-25T06:41:52.010000"],["2024-07-25T06:41:53.010000"],["2024-07-25T06:41:54.010000"],["2024-07-25T06:41:55.010000"],["2024-07-25T06:41:56.010000"],["2024-07-25T06:41:57.010000"],["2024-07-25T06:41:58.010000"],["2024-07-25T06:41:59.010000"],["2024-07-25T06:42:00.010000"],["2024-07-25T06:42:01.010000"],["2024-07-25T06:42:02.010000"],["2024-07-25T06:42:03.010000"],["2024-07-25T06:42:04.010000"],["2024-07-25T06:42:05.010000"],["2024-07-25T06:42:06.010000"],["2024-07-25T06:42:07.010000"],["2024-07-25T06:42:08.010000"],["2024-07-25T06:42:09.010000"],["2024-07-25T06:42:10.010000"],["2024-07-25T06:42:11.010000"],["2024-07-25T06:42:12.010000"],["2024-07-25T06:42:13.010000"],["2024-07-25T06:42:14.010000"],["2024-07-25T06:42:15.010000"],["2024-07-25T06:42:16.010000"],["2024-07-25T06:42:17.010000"],["2024-07-25T06:42:18.010000"],["2024-07-25T06:42:19.010000"],["2024-07-25T06:42:20.010000"],["2024-07-25T06:42:21.010000"],["2024-07-25T06:42:22.010000"],["2024-07-25T06:42:23.010000"],["2024-07-25T06:42:24.010000"],["2024-07-25T06:42:25.010000"],["2024-07-25T06:42:26.010000"],["2024-07-25T06:42:27.010000"],["2024-07-25T06:42:28.010000"],["2024-07-25T06:42:29.010000"],["2024-07-25T06:42:30.010000"],["2024-07-25T06:42:31.010000"],["2024-07-25T06:42:32.010000"],["2024-07-25T06:42:33.010000"],["2024-07-25T06:42:34.010000"],["2024-07-25T06:42:35.010000"],["2024-07-25T06:42:36.010000"],["2024-07-25T06:42:37.010000"],["2024-07-25T06:42:38.010000"],["2024-07-25T06:42:39.010000"],["2024-07-25T06:42:40.010000"],["2024-07-25T06:42:41.010000"],["2024-07-25T06:42:42.010000"],["2024-07-25T06:42:43.010000"],["2024-07-25T06:42:44.010000"],["2024-07-25T06:42:45.010000"],["2024-07-25T06:42:46.010000"],["2024-07-25T06:42:47.010000"],["2024-07-25T06:42:48.010000"],["2024-07-25T06:42:49.010000"],["2024-07-25T06:42:50.010000"],["2024-07-25T06:42:51.010000"],["2024-07-25T06:42:52.010000"],["2024-07-25T06:42:53.010000"],["2024-07-25T06:42:54.010000"],["2024-07-25T06:42:55.010000"],["2024-07-25T06:42:56.010000"],["2024-07-25T06:42:57.010000"],["2024-07-25T06:42:58.010000"],["2024-07-25T06:42:59.010000"],["2024-07-25T06:43:00.010000"],["2024-07-25T06:43:01.010000"],["2024-07-25T06:43:02.010000"],["2024-07-25T06:43:03.010000"],["2024-07-25T06:43:04.010000"],["2024-07-25T06:43:05.010000"],["2024-07-25T06:43:06.010000"],["2024-07-25T06:43:07.010000"],["2024-07-25T06:43:08.010000"],["2024-07-25T06:43:09.010000"],["2024-07-25T06:43:10.010000"],["2024-07-25T06:43:11.010000"],["2024-07-25T06:43:12.010000"],["2024-07-25T06:43:13.010000"],["2024-07-25T06:43:14.010000"],["2024-07-25T06:43:15.010000"],["2024-07-25T06:43:16.010000"],["2024-07-25T06:43:17.010000"],["2024-07-25T06:43:18.010000"],["2024-07-25T06:43:19.010000"],["2024-07-25T06:43:20.010000"],["2024-07-25T06:43:21.010000"],["2024-07-25T06:43:22.010000"],["2024-07-25T06:43:23.010000"],["2024-07-25T06:43:24.010000"],["2024-07-25T06:43:25.010000"],["2024-07-25T06:43:26.010000"],["2024-07-25T06:43:27.010000"],["2024-07-25T06:43:28.010000"],["2024-07-25T06:43:29.010000"],["2024-07-25T06:43:30.010000"],["2024-07-25T06:43:31.010000"],["2024-07-25T06:43:32.010000"],["2024-07-25T06:43:33.010000"],["2024-07-25T06:43:34.010000"],["2024-07-25T06:43:35.010000"],["2024-07-25T06:43:36.010000"],["2024-07-25T06:43:37.010000"],["2024-07-25T06:43:38.010000"],["2024-07-25T06:43:39.010000"],["2024-07-25T06:43:40.010000"],["2024-07-25T06:43:41.010000"],["2024-07-25T06:43:42.010000"],["2024-07-25T06:43:43.010000"],["2024-07-25T06:43:44.010000"],["2024-07-25T06:43:45.010000"],["2024-07-25T06:43:46.010000"],["2024-07-25T06:43:47.010000"],["2024-07-25T06:43:48.010000"],["2024-07-25T06:43:49.010000"],["2024-07-25T06:43:50.010000"],["2024-07-25T06:43:51.010000"],["2024-07-25T06:43:52.010000"],["2024-07-25T06:43:53.010000"],["2024-07-25T06:43:54.010000"],["2024-07-25T06:43:55.010000"],["2024-07-25T06:43:56.010000"],["2024-07-25T06:43:57.010000"],["2024-07-25T06:43:58.010000"],["2024-07-25T06:43:59.010000"],["2024-07-25T06:44:00.010000"],["2024-07-25T06:44:01.010000"],["2024-07-25T06:44:02.010000"],["2024-07-25T06:44:03.010000"],["2024-07-25T06:44:04.010000"],["2024-07-25T06:44:05.010000"],["2024-07-25T06:44:06.010000"],["2024-07-25T06:44:07.010000"],["2024-07-25T06:44:08.010000"],["2024-07-25T06:44:09.010000"],["2024-07-25T06:44:10.010000"],["2024-07-25T06:44:11.010000"],["2024-07-25T06:44:12.010000"],["2024-07-25T06:44:13.010000"],["2024-07-25T06:44:14.010000"],["2024-07-25T06:44:15.010000"],["2024-07-25T06:44:16.010000"],["2024-07-25T06:44:17.010000"],["2024-07-25T06:44:18.010000"],["2024-07-25T06:44:19.010000"],["2024-07-25T06:44:20.010000"],["2024-07-25T06:44:21.010000"],["2024-07-25T06:44:22.010000"],["2024-07-25T06:44:23.010000"],["2024-07-25T06:44:24.010000"],["2024-07-25T06:44:25.010000"],["2024-07-25T06:44:26.010000"],["2024-07-25T06:44:27.010000"],["2024-07-25T06:44:28.010000"],["2024-07-25T06:44:29.010000"],["2024-07-25T06:44:30.010000"],["2024-07-25T06:44:31.010000"],["2024-07-25T06:44:32.010000"],["2024-07-25T06:44:33.010000"],["2024-07-25T06:44:34.010000"],["2024-07-25T06:44:35.010000"],["2024-07-25T06:44:36.010000"],["2024-07-25T06:44:37.010000"],["2024-07-25T06:44:38.010000"],["2024-07-25T06:44:39.010000"],["2024-07-25T06:44:40.010000"],["2024-07-25T06:44:41.010000"],["2024-07-25T06:44:42.010000"],["2024-07-25T06:44:43.010000"],["2024-07-25T06:44:44.010000"],["2024-07-25T06:44:45.010000"],["2024-07-25T06:44:46.010000"],["2024-07-25T06:44:47.010000"],["2024-07-25T06:44:48.010000"],["2024-07-25T06:44:49.010000"],["2024-07-25T06:44:50.010000"],["2024-07-25T06:44:51.010000"],["2024-07-25T06:44:52.010000"],["2024-07-25T06:44:53.010000"],["2024-07-25T06:44:54.010000"],["2024-07-25T06:44:55.010000"],["2024-07-25T06:44:56.010000"],["2024-07-25T06:44:57.010000"],["2024-07-25T06:44:58.010000"],["2024-07-25T06:44:59.010000"],["2024-07-25T06:45:00.010000"],["2024-07-25T06:45:01.010000"],["2024-07-25T06:45:02.010000"],["2024-07-25T06:45:03.010000"],["2024-07-25T06:45:04.010000"],["2024-07-25T06:45:05.010000"],["2024-07-25T06:45:06.010000"],["2024-07-25T06:45:07.010000"],["2024-07-25T06:45:08.010000"],["2024-07-25T06:45:09.010000"],["2024-07-25T06:45:10.010000"],["2024-07-25T06:45:11.010000"],["2024-07-25T06:45:12.010000"],["2024-07-25T06:45:13.010000"],["2024-07-25T06:45:14.010000"],["2024-07-25T06:45:15.010000"],["2024-07-25T06:45:16.010000"],["2024-07-25T06:45:17.010000"],["2024-07-25T06:45:18.010000"],["2024-07-25T06:45:19.010000"],["2024-07-25T06:45:20.010000"],["2024-07-25T06:45:21.010000"],["2024-07-25T06:45:22.010000"],["2024-07-25T06:45:23.010000"],["2024-07-25T06:45:24.010000"],["2024-07-25T06:45:25.010000"],["2024-07-25T06:45:26.010000"],["2024-07-25T06:45:27.010000"],["2024-07-25T06:45:28.010000"],["2024-07-25T06:45:29.010000"],["2024-07-25T06:45:30.010000"],["2024-07-25T06:45:31.010000"],["2024-07-25T06:45:32.010000"],["2024-07-25T06:45:33.010000"],["2024-07-25T06:45:34.010000"],["2024-07-25T06:45:35.010000"],["2024-07-25T06:45:36.010000"],["2024-07-25T06:45:37.010000"],["2024-07-25T06:45:38.010000"],["2024-07-25T06:45:39.010000"],["2024-07-25T06:45:40.010000"],["2024-07-25T06:45:41.010000"],["2024-07-25T06:45:42.010000"],["2024-07-25T06:45:43.010000"],["2024-07-25T06:45:44.010000"],["2024-07-25T06:45:45.010000"],["2024-07-25T06:45:46.010000"],["2024-07-25T06:45:47.010000"],["2024-07-25T06:45:48.010000"],["2024-07-25T06:45:49.010000"],["2024-07-25T06:45:50.010000"],["2024-07-25T06:45:51.010000"],["2024-07-25T06:45:52.010000"],["2024-07-25T06:45:53.010000"],["2024-07-25T06:45:54.010000"],["2024-07-25T06:45:55.010000"],["2024-07-25T06:45:56.010000"],["2024-07-25T06:45:57.010000"],["2024-07-25T06:45:58.010000"],["2024-07-25T06:45:59.010000"],["2024-07-25T06:46:00.010000"],["2024-07-25T06:46:01.010000"],["2024-07-25T06:46:02.010000"],["2024-07-25T06:46:03.010000"],["2024-07-25T06:46:04.010000"],["2024-07-25T06:46:05.010000"],["2024-07-25T06:46:06.010000"],["2024-07-25T06:46:07.010000"],["2024-07-25T06:46:08.010000"],["2024-07-25T06:46:09.010000"],["2024-07-25T06:46:10.010000"],["2024-07-25T06:46:11.010000"],["2024-07-25T06:46:12.010000"],["2024-07-25T06:46:13.010000"],["2024-07-25T06:46:14.010000"],["2024-07-25T06:46:15.010000"],["2024-07-25T06:46:16.010000"],["2024-07-25T06:46:17.010000"],["2024-07-25T06:46:18.010000"],["2024-07-25T06:46:19.010000"],["2024-07-25T06:46:20.010000"],["2024-07-25T06:46:21.010000"],["2024-07-25T06:46:22.010000"],["2024-07-25T06:46:23.010000"],["2024-07-25T06:46:24.010000"],["2024-07-25T06:46:25.010000"],["2024-07-25T06:46:26.010000"],["2024-07-25T06:46:27.010000"],["2024-07-25T06:46:28.010000"],["2024-07-25T06:46:29.010000"],["2024-07-25T06:46:30.010000"],["2024-07-25T06:46:31.010000"],["2024-07-25T06:46:32.010000"],["2024-07-25T06:46:33.010000"],["2024-07-25T06:46:34.010000"],["2024-07-25T06:46:35.010000"],["2024-07-25T06:46:36.010000"],["2024-07-25T06:46:37.010000"],["2024-07-25T06:46:38.010000"],["2024-07-25T06:46:39.010000"],["2024-07-25T06:46:40.010000"],["2024-07-25T06:46:41.010000"],["2024-07-25T06:46:42.010000"],["2024-07-25T06:46:43.010000"],["2024-07-25T06:46:44.010000"],["2024-07-25T06:46:45.010000"],["2024-07-25T06:46:46.010000"],["2024-07-25T06:46:47.010000"],["2024-07-25T06:46:48.010000"],["2024-07-25T06:46:49.010000"],["2024-07-25T06:46:50.010000"],["2024-07-25T06:46:51.010000"],["2024-07-25T06:46:52.010000"],["2024-07-25T06:46:53.010000"],["2024-07-25T06:46:54.010000"],["2024-07-25T06:46:55.010000"],["2024-07-25T06:46:56.010000"],["2024-07-25T06:46:57.010000"],["2024-07-25T06:46:58.010000"],["2024-07-25T06:46:59.010000"],["2024-07-25T06:47:00.010000"],["2024-07-25T06:47:01.010000"],["2024-07-25T06:47:02.010000"],["2024-07-25T06:47:03.010000"],["2024-07-25T06:47:04.010000"],["2024-07-25T06:47:05.010000"],["2024-07-25T06:47:06.010000"],["2024-07-25T06:47:07.010000"],["2024-07-25T06:47:08.010000"],["2024-07-25T06:47:09.010000"],["2024-07-25T06:47:10.010000"],["2024-07-25T06:47:11.010000"],["2024-07-25T06:47:12.010000"],["2024-07-25T06:47:13.010000"],["2024-07-25T06:47:14.010000"],["2024-07-25T06:47:15.010000"],["2024-07-25T06:47:16.010000"],["2024-07-25T06:47:17.010000"],["2024-07-25T06:47:18.010000"],["2024-07-25T06:47:19.010000"],["2024-07-25T06:47:20.010000"],["2024-07-25T06:47:21.010000"],["2024-07-25T06:47:22.010000"],["2024-07-25T06:47:23.010000"],["2024-07-25T06:47:24.010000"],["2024-07-25T06:47:25.010000"],["2024-07-25T06:47:26.010000"],["2024-07-25T06:47:27.010000"],["2024-07-25T06:47:28.010000"],["2024-07-25T06:47:29.010000"],["2024-07-25T06:47:30.010000"],["2024-07-25T06:47:31.010000"],["2024-07-25T06:47:32.010000"],["2024-07-25T06:47:33.010000"],["2024-07-25T06:47:34.010000"],["2024-07-25T06:47:35.010000"],["2024-07-25T06:47:36.010000"],["2024-07-25T06:47:37.010000"],["2024-07-25T06:47:38.010000"],["2024-07-25T06:47:39.010000"],["2024-07-25T06:47:40.010000"],["2024-07-25T06:47:41.010000"],["2024-07-25T06:47:42.010000"],["2024-07-25T06:47:43.010000"],["2024-07-25T06:47:44.010000"],["2024-07-25T06:47:45.010000"],["2024-07-25T06:47:46.010000"],["2024-07-25T06:47:47.010000"],["2024-07-25T06:47:48.010000"],["2024-07-25T06:47:49.010000"],["2024-07-25T06:47:50.010000"],["2024-07-25T06:47:51.010000"],["2024-07-25T06:47:52.010000"],["2024-07-25T06:47:53.010000"],["2024-07-25T06:47:54.010000"],["2024-07-25T06:47:55.010000"],["2024-07-25T06:47:56.010000"],["2024-07-25T06:47:57.010000"],["2024-07-25T06:47:58.010000"],["2024-07-25T06:47:59.010000"],["2024-07-25T06:48:00.010000"],["2024-07-25T06:48:01.010000"],["2024-07-25T06:48:02.010000"],["2024-07-25T06:48:03.010000"],["2024-07-25T06:48:04.010000"],["2024-07-25T06:48:05.010000"],["2024-07-25T06:48:06.010000"],["2024-07-25T06:48:07.010000"],["2024-07-25T06:48:08.010000"],["2024-07-25T06:48:09.010000"],["2024-07-25T06:48:10.010000"],["2024-07-25T06:48:11.010000"],["2024-07-25T06:48:12.010000"],["2024-07-25T06:48:13.010000"],["2024-07-25T06:48:14.010000"],["2024-07-25T06:48:15.010000"],["2024-07-25T06:48:16.010000"],["2024-07-25T06:48:17.010000"],["2024-07-25T06:48:18.010000"],["2024-07-25T06:48:19.010000"],["2024-07-25T06:48:20.010000"],["2024-07-25T06:48:21.010000"],["2024-07-25T06:48:22.010000"],["2024-07-25T06:48:23.010000"],["2024-07-25T06:48:24.010000"],["2024-07-25T06:48:25.010000"],["2024-07-25T06:48:26.010000"],["2024-07-25T06:48:27.010000"],["2024-07-25T06:48:28.010000"],["2024-07-25T06:48:29.010000"],["2024-07-25T06:48:30.010000"],["2024-07-25T06:48:31.010000"],["2024-07-25T06:48:32.010000"],["2024-07-25T06:48:33.010000"],["2024-07-25T06:48:34.010000"],["2024-07-25T06:48:35.010000"],["2024-07-25T06:48:36.010000"],["2024-07-25T06:48:37.010000"],["2024-07-25T06:48:38.010000"],["2024-07-25T06:48:39.010000"],["2024-07-25T06:48:40.010000"],["2024-07-25T06:48:41.010000"],["2024-07-25T06:48:42.010000"],["2024-07-25T06:48:43.010000"],["2024-07-25T06:48:44.010000"],["2024-07-25T06:48:45.010000"],["2024-07-25T06:48:46.010000"],["2024-07-25T06:48:47.010000"],["2024-07-25T06:48:48.010000"],["2024-07-25T06:48:49.010000"],["2024-07-25T06:48:50.010000"],["2024-07-25T06:48:51.010000"],["2024-07-25T06:48:52.010000"],["2024-07-25T06:48:53.010000"],["2024-07-25T06:48:54.010000"],["2024-07-25T06:48:55.010000"],["2024-07-25T06:48:56.010000"],["2024-07-25T06:48:57.010000"],["2024-07-25T06:48:58.010000"],["2024-07-25T06:48:59.010000"],["2024-07-25T06:49:00.010000"],["2024-07-25T06:49:01.010000"],["2024-07-25T06:49:02.010000"],["2024-07-25T06:49:03.010000"],["2024-07-25T06:49:04.010000"],["2024-07-25T06:49:05.010000"],["2024-07-25T06:49:06.010000"],["2024-07-25T06:49:07.010000"],["2024-07-25T06:49:08.010000"],["2024-07-25T06:49:09.010000"],["2024-07-25T06:49:10.010000"],["2024-07-25T06:49:11.010000"],["2024-07-25T06:49:12.010000"],["2024-07-25T06:49:13.010000"],["2024-07-25T06:49:14.010000"],["2024-07-25T06:49:15.010000"],["2024-07-25T06:49:16.010000"],["2024-07-25T06:49:17.010000"],["2024-07-25T06:49:18.010000"],["2024-07-25T06:49:19.010000"],["2024-07-25T06:49:20.010000"],["2024-07-25T06:49:21.010000"],["2024-07-25T06:49:22.010000"],["2024-07-25T06:49:23.010000"],["2024-07-25T06:49:24.010000"],["2024-07-25T06:49:25.010000"],["2024-07-25T06:49:26.010000"],["2024-07-25T06:49:27.010000"],["2024-07-25T06:49:28.010000"],["2024-07-25T06:49:29.010000"],["2024-07-25T06:49:30.010000"],["2024-07-25T06:49:31.010000"],["2024-07-25T06:49:32.010000"],["2024-07-25T06:49:33.010000"],["2024-07-25T06:49:34.010000"],["2024-07-25T06:49:35.010000"],["2024-07-25T06:49:36.010000"],["2024-07-25T06:49:37.010000"],["2024-07-25T06:49:38.010000"],["2024-07-25T06:49:39.010000"],["2024-07-25T06:49:40.010000"],["2024-07-25T06:49:41.010000"],["2024-07-25T06:49:42.010000"],["2024-07-25T06:49:43.010000"],["2024-07-25T06:49:44.010000"],["2024-07-25T06:49:45.010000"],["2024-07-25T06:49:46.010000"],["2024-07-25T06:49:47.010000"],["2024-07-25T06:49:48.010000"],["2024-07-25T06:49:49.010000"],["2024-07-25T06:49:50.010000"],["2024-07-25T06:49:51.010000"],["2024-07-25T06:49:52.010000"],["2024-07-25T06:49:53.010000"],["2024-07-25T06:49:54.010000"],["2024-07-25T06:49:55.010000"],["2024-07-25T06:49:56.010000"],["2024-07-25T06:49:57.010000"],["2024-07-25T06:49:58.010000"],["2024-07-25T06:49:59.010000"],["2024-07-25T06:50:00.010000"],["2024-07-25T06:50:01.010000"],["2024-07-25T06:50:02.010000"],["2024-07-25T06:50:03.010000"],["2024-07-25T06:50:04.010000"],["2024-07-25T06:50:05.010000"],["2024-07-25T06:50:06.010000"],["2024-07-25T06:50:07.010000"],["2024-07-25T06:50:08.010000"],["2024-07-25T06:50:09.010000"],["2024-07-25T06:50:10.010000"],["2024-07-25T06:50:11.010000"],["2024-07-25T06:50:12.010000"],["2024-07-25T06:50:13.010000"],["2024-07-25T06:50:14.010000"],["2024-07-25T06:50:15.010000"],["2024-07-25T06:50:16.010000"],["2024-07-25T06:50:17.010000"],["2024-07-25T06:50:18.010000"],["2024-07-25T06:50:19.010000"],["2024-07-25T06:50:20.010000"],["2024-07-25T06:50:21.010000"],["2024-07-25T06:50:22.010000"],["2024-07-25T06:50:23.010000"],["2024-07-25T06:50:24.010000"],["2024-07-25T06:50:25.010000"],["2024-07-25T06:50:26.010000"],["2024-07-25T06:50:27.010000"],["2024-07-25T06:50:28.010000"],["2024-07-25T06:50:29.010000"],["2024-07-25T06:50:30.010000"],["2024-07-25T06:50:31.010000"],["2024-07-25T06:50:32.010000"],["2024-07-25T06:50:33.010000"],["2024-07-25T06:50:34.010000"],["2024-07-25T06:50:35.010000"],["2024-07-25T06:50:36.010000"],["2024-07-25T06:50:37.010000"],["2024-07-25T06:50:38.010000"],["2024-07-25T06:50:39.010000"],["2024-07-25T06:50:40.010000"],["2024-07-25T06:50:41.010000"],["2024-07-25T06:50:42.010000"],["2024-07-25T06:50:43.010000"],["2024-07-25T06:50:44.010000"],["2024-07-25T06:50:45.010000"],["2024-07-25T06:50:46.010000"],["2024-07-25T06:50:47.010000"],["2024-07-25T06:50:48.010000"],["2024-07-25T06:50:49.010000"],["2024-07-25T06:50:50.010000"],["2024-07-25T06:50:51.010000"],["2024-07-25T06:50:52.010000"],["2024-07-25T06:50:53.010000"],["2024-07-25T06:50:54.010000"],["2024-07-25T06:50:55.010000"],["2024-07-25T06:50:56.010000"],["2024-07-25T06:50:57.010000"],["2024-07-25T06:50:58.010000"],["2024-07-25T06:50:59.010000"],["2024-07-25T06:51:00.010000"],["2024-07-25T06:51:01.010000"],["2024-07-25T06:51:02.010000"],["2024-07-25T06:51:03.010000"],["2024-07-25T06:51:04.010000"],["2024-07-25T06:51:05.010000"],["2024-07-25T06:51:06.010000"],["2024-07-25T06:51:07.010000"],["2024-07-25T06:51:08.010000"],["2024-07-25T06:51:09.010000"],["2024-07-25T06:51:10.010000"],["2024-07-25T06:51:11.010000"],["2024-07-25T06:51:12.010000"],["2024-07-25T06:51:13.010000"],["2024-07-25T06:51:14.010000"],["2024-07-25T06:51:15.010000"],["2024-07-25T06:51:16.010000"],["2024-07-25T06:51:17.010000"],["2024-07-25T06:51:18.010000"],["2024-07-25T06:51:19.010000"],["2024-07-25T06:51:20.010000"],["2024-07-25T06:51:21.010000"],["2024-07-25T06:51:22.010000"],["2024-07-25T06:51:23.010000"],["2024-07-25T06:51:24.010000"],["2024-07-25T06:51:25.010000"],["2024-07-25T06:51:26.010000"],["2024-07-25T06:51:27.010000"],["2024-07-25T06:51:28.010000"],["2024-07-25T06:51:29.010000"],["2024-07-25T06:51:30.010000"],["2024-07-25T06:51:31.010000"],["2024-07-25T06:51:32.010000"],["2024-07-25T06:51:33.010000"],["2024-07-25T06:51:34.010000"],["2024-07-25T06:51:35.010000"],["2024-07-25T06:51:36.010000"],["2024-07-25T06:51:37.010000"],["2024-07-25T06:51:38.010000"],["2024-07-25T06:51:39.010000"],["2024-07-25T06:51:40.010000"],["2024-07-25T06:51:41.010000"],["2024-07-25T06:51:42.010000"],["2024-07-25T06:51:43.010000"],["2024-07-25T06:51:44.010000"],["2024-07-25T06:51:45.010000"],["2024-07-25T06:51:46.010000"],["2024-07-25T06:51:47.010000"],["2024-07-25T06:51:48.010000"],["2024-07-25T06:51:49.010000"],["2024-07-25T06:51:50.010000"],["2024-07-25T06:51:51.010000"],["2024-07-25T06:51:52.010000"],["2024-07-25T06:51:53.010000"],["2024-07-25T06:51:54.010000"],["2024-07-25T06:51:55.010000"],["2024-07-25T06:51:56.010000"],["2024-07-25T06:51:57.010000"],["2024-07-25T06:51:58.010000"],["2024-07-25T06:51:59.010000"],["2024-07-25T06:52:00.010000"],["2024-07-25T06:52:01.010000"],["2024-07-25T06:52:02.010000"],["2024-07-25T06:52:03.010000"],["2024-07-25T06:52:04.010000"],["2024-07-25T06:52:05.010000"],["2024-07-25T06:52:06.010000"],["2024-07-25T06:52:07.010000"],["2024-07-25T06:52:08.010000"],["2024-07-25T06:52:09.010000"],["2024-07-25T06:52:10.010000"],["2024-07-25T06:52:11.010000"],["2024-07-25T06:52:12.010000"],["2024-07-25T06:52:13.010000"],["2024-07-25T06:52:14.010000"],["2024-07-25T06:52:15.010000"],["2024-07-25T06:52:16.010000"],["2024-07-25T06:52:17.010000"],["2024-07-25T06:52:18.010000"],["2024-07-25T06:52:19.010000"],["2024-07-25T06:52:20.010000"],["2024-07-25T06:52:21.010000"],["2024-07-25T06:52:22.010000"],["2024-07-25T06:52:23.010000"],["2024-07-25T06:52:24.010000"],["2024-07-25T06:52:25.010000"],["2024-07-25T06:52:26.010000"],["2024-07-25T06:52:27.010000"],["2024-07-25T06:52:28.010000"],["2024-07-25T06:52:29.010000"],["2024-07-25T06:52:30.010000"],["2024-07-25T06:52:31.010000"],["2024-07-25T06:52:32.010000"],["2024-07-25T06:52:33.010000"],["2024-07-25T06:52:34.010000"],["2024-07-25T06:52:35.010000"],["2024-07-25T06:52:36.010000"],["2024-07-25T06:52:37.010000"],["2024-07-25T06:52:38.010000"],["2024-07-25T06:52:39.010000"],["2024-07-25T06:52:40.010000"],["2024-07-25T06:52:41.010000"],["2024-07-25T06:52:42.010000"],["2024-07-25T06:52:43.010000"],["2024-07-25T06:52:44.010000"],["2024-07-25T06:52:45.010000"],["2024-07-25T06:52:46.010000"],["2024-07-25T06:52:47.010000"],["2024-07-25T06:52:48.010000"],["2024-07-25T06:52:49.010000"],["2024-07-25T06:52:50.010000"],["2024-07-25T06:52:51.010000"],["2024-07-25T06:52:52.010000"],["2024-07-25T06:52:53.010000"],["2024-07-25T06:52:54.010000"],["2024-07-25T06:52:55.010000"],["2024-07-25T06:52:56.010000"],["2024-07-25T06:52:57.010000"],["2024-07-25T06:52:58.010000"],["2024-07-25T06:52:59.010000"],["2024-07-25T06:53:00.010000"],["2024-07-25T06:53:01.010000"],["2024-07-25T06:53:02.010000"],["2024-07-25T06:53:03.010000"],["2024-07-25T06:53:04.010000"],["2024-07-25T06:53:05.010000"],["2024-07-25T06:53:06.010000"],["2024-07-25T06:53:07.010000"],["2024-07-25T06:53:08.010000"],["2024-07-25T06:53:09.010000"],["2024-07-25T06:53:10.010000"],["2024-07-25T06:53:11.010000"],["2024-07-25T06:53:12.010000"],["2024-07-25T06:53:13.010000"],["2024-07-25T06:53:14.010000"],["2024-07-25T06:53:15.010000"],["2024-07-25T06:53:16.010000"],["2024-07-25T06:53:17.010000"],["2024-07-25T06:53:18.010000"],["2024-07-25T06:53:19.010000"],["2024-07-25T06:53:20.010000"],["2024-07-25T06:53:21.010000"],["2024-07-25T06:53:22.010000"],["2024-07-25T06:53:23.010000"],["2024-07-25T06:53:24.010000"],["2024-07-25T06:53:25.010000"],["2024-07-25T06:53:26.010000"],["2024-07-25T06:53:27.010000"],["2024-07-25T06:53:28.010000"],["2024-07-25T06:53:29.010000"],["2024-07-25T06:53:30.010000"],["2024-07-25T06:53:31.010000"],["2024-07-25T06:53:32.010000"],["2024-07-25T06:53:33.010000"],["2024-07-25T06:53:34.010000"],["2024-07-25T06:53:35.010000"],["2024-07-25T06:53:36.010000"],["2024-07-25T06:53:37.010000"],["2024-07-25T06:53:38.010000"],["2024-07-25T06:53:39.010000"],["2024-07-25T06:53:40.010000"],["2024-07-25T06:53:41.010000"],["2024-07-25T06:53:42.010000"],["2024-07-25T06:53:43.010000"],["2024-07-25T06:53:44.010000"],["2024-07-25T06:53:45.010000"],["2024-07-25T06:53:46.010000"],["2024-07-25T06:53:47.010000"],["2024-07-25T06:53:48.010000"],["2024-07-25T06:53:49.010000"],["2024-07-25T06:53:50.010000"],["2024-07-25T06:53:51.010000"],["2024-07-25T06:53:52.010000"],["2024-07-25T06:53:53.010000"],["2024-07-25T06:53:54.010000"],["2024-07-25T06:53:55.010000"],["2024-07-25T06:53:56.010000"],["2024-07-25T06:53:57.010000"],["2024-07-25T06:53:58.010000"],["2024-07-25T06:53:59.010000"],["2024-07-25T06:54:00.010000"],["2024-07-25T06:54:01.010000"],["2024-07-25T06:54:02.010000"],["2024-07-25T06:54:03.010000"],["2024-07-25T06:54:04.010000"],["2024-07-25T06:54:05.010000"],["2024-07-25T06:54:06.010000"],["2024-07-25T06:54:07.010000"],["2024-07-25T06:54:08.010000"],["2024-07-25T06:54:09.010000"],["2024-07-25T06:54:10.010000"],["2024-07-25T06:54:11.010000"],["2024-07-25T06:54:12.010000"],["2024-07-25T06:54:13.010000"],["2024-07-25T06:54:14.010000"],["2024-07-25T06:54:15.010000"],["2024-07-25T06:54:16.010000"],["2024-07-25T06:54:17.010000"],["2024-07-25T06:54:18.010000"],["2024-07-25T06:54:19.010000"],["2024-07-25T06:54:20.010000"],["2024-07-25T06:54:21.010000"],["2024-07-25T06:54:22.010000"],["2024-07-25T06:54:23.010000"],["2024-07-25T06:54:24.010000"],["2024-07-25T06:54:25.010000"],["2024-07-25T06:54:26.010000"],["2024-07-25T06:54:27.010000"],["2024-07-25T06:54:28.010000"],["2024-07-25T06:54:29.010000"],["2024-07-25T06:54:30.010000"],["2024-07-25T06:54:31.010000"],["2024-07-25T06:54:32.010000"],["2024-07-25T06:54:33.010000"],["2024-07-25T06:54:34.010000"],["2024-07-25T06:54:35.010000"],["2024-07-25T06:54:36.010000"],["2024-07-25T06:54:37.010000"],["2024-07-25T06:54:38.010000"],["2024-07-25T06:54:39.010000"],["2024-07-25T06:54:40.010000"],["2024-07-25T06:54:41.010000"],["2024-07-25T06:54:42.010000"],["2024-07-25T06:54:43.010000"],["2024-07-25T06:54:44.010000"],["2024-07-25T06:54:45.010000"],["2024-07-25T06:54:46.010000"],["2024-07-25T06:54:47.010000"],["2024-07-25T06:54:48.010000"],["2024-07-25T06:54:49.010000"],["2024-07-25T06:54:50.010000"],["2024-07-25T06:54:51.010000"],["2024-07-25T06:54:52.010000"],["2024-07-25T06:54:53.010000"],["2024-07-25T06:54:54.010000"],["2024-07-25T06:54:55.010000"],["2024-07-25T06:54:56.010000"],["2024-07-25T06:54:57.010000"],["2024-07-25T06:54:58.010000"],["2024-07-25T06:54:59.010000"],["2024-07-25T06:55:00.010000"],["2024-07-25T06:55:01.010000"],["2024-07-25T06:55:02.010000"],["2024-07-25T06:55:03.010000"],["2024-07-25T06:55:04.010000"],["2024-07-25T06:55:05.010000"],["2024-07-25T06:55:06.010000"],["2024-07-25T06:55:07.010000"],["2024-07-25T06:55:08.010000"],["2024-07-25T06:55:09.010000"],["2024-07-25T06:55:10.010000"],["2024-07-25T06:55:11.010000"],["2024-07-25T06:55:12.010000"],["2024-07-25T06:55:13.010000"],["2024-07-25T06:55:14.010000"],["2024-07-25T06:55:15.010000"],["2024-07-25T06:55:16.010000"],["2024-07-25T06:55:17.010000"],["2024-07-25T06:55:18.010000"],["2024-07-25T06:55:19.010000"],["2024-07-25T06:55:20.010000"],["2024-07-25T06:55:21.010000"],["2024-07-25T06:55:22.010000"],["2024-07-25T06:55:23.010000"],["2024-07-25T06:55:24.010000"],["2024-07-25T06:55:25.010000"],["2024-07-25T06:55:26.010000"],["2024-07-25T06:55:27.010000"],["2024-07-25T06:55:28.010000"],["2024-07-25T06:55:29.010000"],["2024-07-25T06:55:30.010000"],["2024-07-25T06:55:31.010000"],["2024-07-25T06:55:32.010000"],["2024-07-25T06:55:33.010000"],["2024-07-25T06:55:34.010000"],["2024-07-25T06:55:35.010000"],["2024-07-25T06:55:36.010000"],["2024-07-25T06:55:37.010000"],["2024-07-25T06:55:38.010000"],["2024-07-25T06:55:39.010000"],["2024-07-25T06:55:40.010000"],["2024-07-25T06:55:41.010000"],["2024-07-25T06:55:42.010000"],["2024-07-25T06:55:43.010000"],["2024-07-25T06:55:44.010000"],["2024-07-25T06:55:45.010000"],["2024-07-25T06:55:46.010000"],["2024-07-25T06:55:47.010000"],["2024-07-25T06:55:48.010000"],["2024-07-25T06:55:49.010000"],["2024-07-25T06:55:50.010000"],["2024-07-25T06:55:51.010000"],["2024-07-25T06:55:52.010000"],["2024-07-25T06:55:53.010000"],["2024-07-25T06:55:54.010000"],["2024-07-25T06:55:55.010000"],["2024-07-25T06:55:56.010000"],["2024-07-25T06:55:57.010000"],["2024-07-25T06:55:58.010000"],["2024-07-25T06:55:59.010000"],["2024-07-25T06:56:00.010000"],["2024-07-25T06:56:01.010000"],["2024-07-25T06:56:02.010000"],["2024-07-25T06:56:03.010000"],["2024-07-25T06:56:04.010000"],["2024-07-25T06:56:05.010000"],["2024-07-25T06:56:06.010000"],["2024-07-25T06:56:07.010000"],["2024-07-25T06:56:08.010000"],["2024-07-25T06:56:09.010000"],["2024-07-25T06:56:10.010000"],["2024-07-25T06:56:11.010000"],["2024-07-25T06:56:12.010000"],["2024-07-25T06:56:13.010000"],["2024-07-25T06:56:14.010000"],["2024-07-25T06:56:15.010000"],["2024-07-25T06:56:16.010000"],["2024-07-25T06:56:17.010000"],["2024-07-25T06:56:18.010000"],["2024-07-25T06:56:19.010000"],["2024-07-25T06:56:20.010000"],["2024-07-25T06:56:21.010000"],["2024-07-25T06:56:22.010000"],["2024-07-25T06:56:23.010000"],["2024-07-25T06:56:24.010000"],["2024-07-25T06:56:25.010000"],["2024-07-25T06:56:26.010000"],["2024-07-25T06:56:27.010000"],["2024-07-25T06:56:28.010000"],["2024-07-25T06:56:29.010000"],["2024-07-25T06:56:30.010000"],["2024-07-25T06:56:31.010000"],["2024-07-25T06:56:32.010000"],["2024-07-25T06:56:33.010000"],["2024-07-25T06:56:34.010000"],["2024-07-25T06:56:35.010000"],["2024-07-25T06:56:36.010000"],["2024-07-25T06:56:37.010000"],["2024-07-25T06:56:38.010000"],["2024-07-25T06:56:39.010000"],["2024-07-25T06:56:40.010000"],["2024-07-25T06:56:41.010000"],["2024-07-25T06:56:42.010000"],["2024-07-25T06:56:43.010000"],["2024-07-25T06:56:44.010000"],["2024-07-25T06:56:45.010000"],["2024-07-25T06:56:46.010000"],["2024-07-25T06:56:47.010000"],["2024-07-25T06:56:48.010000"],["2024-07-25T06:56:49.010000"],["2024-07-25T06:56:50.010000"],["2024-07-25T06:56:51.010000"],["2024-07-25T06:56:52.010000"],["2024-07-25T06:56:53.010000"],["2024-07-25T06:56:54.010000"],["2024-07-25T06:56:55.010000"],["2024-07-25T06:56:56.010000"],["2024-07-25T06:56:57.010000"],["2024-07-25T06:56:58.010000"],["2024-07-25T06:56:59.010000"],["2024-07-25T06:57:00.010000"],["2024-07-25T06:57:01.010000"],["2024-07-25T06:57:02.010000"],["2024-07-25T06:57:03.010000"],["2024-07-25T06:57:04.010000"],["2024-07-25T06:57:05.010000"],["2024-07-25T06:57:06.010000"],["2024-07-25T06:57:07.010000"],["2024-07-25T06:57:08.010000"],["2024-07-25T06:57:09.010000"],["2024-07-25T06:57:10.010000"],["2024-07-25T06:57:11.010000"],["2024-07-25T06:57:12.010000"],["2024-07-25T06:57:13.010000"],["2024-07-25T06:57:14.010000"],["2024-07-25T06:57:15.010000"],["2024-07-25T06:57:16.010000"],["2024-07-25T06:57:17.010000"],["2024-07-25T06:57:18.010000"],["2024-07-25T06:57:19.010000"],["2024-07-25T06:57:20.010000"],["2024-07-25T06:57:21.010000"],["2024-07-25T06:57:22.010000"],["2024-07-25T06:57:23.010000"],["2024-07-25T06:57:24.010000"],["2024-07-25T06:57:25.010000"],["2024-07-25T06:57:26.010000"],["2024-07-25T06:57:27.010000"],["2024-07-25T06:57:28.010000"],["2024-07-25T06:57:29.010000"],["2024-07-25T06:57:30.010000"],["2024-07-25T06:57:31.010000"],["2024-07-25T06:57:32.010000"],["2024-07-25T06:57:33.010000"],["2024-07-25T06:57:34.010000"],["2024-07-25T06:57:35.010000"],["2024-07-25T06:57:36.010000"],["2024-07-25T06:57:37.010000"],["2024-07-25T06:57:38.010000"],["2024-07-25T06:57:39.010000"],["2024-07-25T06:57:40.010000"],["2024-07-25T06:57:41.010000"],["2024-07-25T06:57:42.010000"],["2024-07-25T06:57:43.010000"],["2024-07-25T06:57:44.010000"],["2024-07-25T06:57:45.010000"],["2024-07-25T06:57:46.010000"],["2024-07-25T06:57:47.010000"],["2024-07-25T06:57:48.010000"],["2024-07-25T06:57:49.010000"],["2024-07-25T06:57:50.010000"],["2024-07-25T06:57:51.010000"],["2024-07-25T06:57:52.010000"],["2024-07-25T06:57:53.010000"],["2024-07-25T06:57:54.010000"],["2024-07-25T06:57:55.010000"],["2024-07-25T06:57:56.010000"],["2024-07-25T06:57:57.010000"],["2024-07-25T06:57:58.010000"],["2024-07-25T06:57:59.010000"],["2024-07-25T06:58:00.010000"],["2024-07-25T06:58:01.010000"],["2024-07-25T06:58:02.010000"],["2024-07-25T06:58:03.010000"],["2024-07-25T06:58:04.010000"],["2024-07-25T06:58:05.010000"],["2024-07-25T06:58:06.010000"],["2024-07-25T06:58:07.010000"],["2024-07-25T06:58:08.010000"],["2024-07-25T06:58:09.010000"],["2024-07-25T06:58:10.010000"],["2024-07-25T06:58:11.010000"],["2024-07-25T06:58:12.010000"],["2024-07-25T06:58:13.010000"],["2024-07-25T06:58:14.010000"],["2024-07-25T06:58:15.010000"],["2024-07-25T06:58:16.010000"],["2024-07-25T06:58:17.010000"],["2024-07-25T06:58:18.010000"],["2024-07-25T06:58:19.010000"],["2024-07-25T06:58:20.010000"],["2024-07-25T06:58:21.010000"],["2024-07-25T06:58:22.010000"],["2024-07-25T06:58:23.010000"],["2024-07-25T06:58:24.010000"],["2024-07-25T06:58:25.010000"],["2024-07-25T06:58:26.010000"],["2024-07-25T06:58:27.010000"],["2024-07-25T06:58:28.010000"],["2024-07-25T06:58:29.010000"],["2024-07-25T06:58:30.010000"],["2024-07-25T06:58:31.010000"],["2024-07-25T06:58:32.010000"],["2024-07-25T06:58:33.010000"],["2024-07-25T06:58:34.010000"],["2024-07-25T06:58:35.010000"],["2024-07-25T06:58:36.010000"],["2024-07-25T06:58:37.010000"],["2024-07-25T06:58:38.010000"],["2024-07-25T06:58:39.010000"],["2024-07-25T06:58:40.010000"],["2024-07-25T06:58:41.010000"],["2024-07-25T06:58:42.010000"],["2024-07-25T06:58:43.010000"],["2024-07-25T06:58:44.010000"],["2024-07-25T06:58:45.010000"],["2024-07-25T06:58:46.010000"],["2024-07-25T06:58:47.010000"],["2024-07-25T06:58:48.010000"],["2024-07-25T06:58:49.010000"],["2024-07-25T06:58:50.010000"],["2024-07-25T06:58:51.010000"],["2024-07-25T06:58:52.010000"],["2024-07-25T06:58:53.010000"],["2024-07-25T06:58:54.010000"],["2024-07-25T06:58:55.010000"],["2024-07-25T06:58:56.010000"],["2024-07-25T06:58:57.010000"],["2024-07-25T06:58:58.010000"],["2024-07-25T06:58:59.010000"],["2024-07-25T06:59:00.010000"],["2024-07-25T06:59:01.010000"],["2024-07-25T06:59:02.010000"],["2024-07-25T06:59:03.010000"],["2024-07-25T06:59:04.010000"],["2024-07-25T06:59:05.010000"],["2024-07-25T06:59:06.010000"],["2024-07-25T06:59:07.010000"],["2024-07-25T06:59:08.010000"],["2024-07-25T06:59:09.010000"],["2024-07-25T06:59:10.010000"],["2024-07-25T06:59:11.010000"],["2024-07-25T06:59:12.010000"],["2024-07-25T06:59:13.010000"],["2024-07-25T06:59:14.010000"],["2024-07-25T06:59:15.010000"],["2024-07-25T06:59:16.010000"],["2024-07-25T06:59:17.010000"],["2024-07-25T06:59:18.010000"],["2024-07-25T06:59:19.010000"],["2024-07-25T06:59:20.010000"],["2024-07-25T06:59:21.010000"],["2024-07-25T06:59:22.010000"],["2024-07-25T06:59:23.010000"],["2024-07-25T06:59:24.010000"],["2024-07-25T06:59:25.010000"],["2024-07-25T06:59:26.010000"],["2024-07-25T06:59:27.010000"],["2024-07-25T06:59:28.010000"],["2024-07-25T06:59:29.010000"],["2024-07-25T06:59:30.010000"],["2024-07-25T06:59:31.010000"],["2024-07-25T06:59:32.010000"],["2024-07-25T06:59:33.010000"],["2024-07-25T06:59:34.010000"],["2024-07-25T06:59:35.010000"],["2024-07-25T06:59:36.010000"],["2024-07-25T06:59:37.010000"],["2024-07-25T06:59:38.010000"],["2024-07-25T06:59:39.010000"],["2024-07-25T06:59:40.010000"],["2024-07-25T06:59:41.010000"],["2024-07-25T06:59:42.010000"],["2024-07-25T06:59:43.010000"],["2024-07-25T06:59:44.010000"],["2024-07-25T06:59:45.010000"],["2024-07-25T06:59:46.010000"],["2024-07-25T06:59:47.010000"],["2024-07-25T06:59:48.010000"],["2024-07-25T06:59:49.010000"],["2024-07-25T06:59:50.010000"],["2024-07-25T06:59:51.010000"],["2024-07-25T06:59:52.010000"],["2024-07-25T06:59:53.010000"],["2024-07-25T06:59:54.010000"],["2024-07-25T06:59:55.010000"],["2024-07-25T06:59:56.010000"],["2024-07-25T06:59:57.010000"],["2024-07-25T06:59:58.010000"],["2024-07-25T06:59:59.010000"],["2024-07-25T07:00:00.010000"],["2024-07-25T07:00:01.010000"],["2024-07-25T07:00:02.010000"],["2024-07-25T07:00:03.010000"],["2024-07-25T07:00:04.010000"],["2024-07-25T07:00:05.010000"],["2024-07-25T07:00:06.010000"],["2024-07-25T07:00:07.010000"],["2024-07-25T07:00:08.010000"],["2024-07-25T07:00:09.010000"],["2024-07-25T07:00:10.010000"],["2024-07-25T07:00:11.010000"],["2024-07-25T07:00:12.010000"],["2024-07-25T07:00:13.010000"],["2024-07-25T07:00:14.010000"],["2024-07-25T07:00:15.010000"],["2024-07-25T07:00:16.010000"],["2024-07-25T07:00:17.010000"],["2024-07-25T07:00:18.010000"],["2024-07-25T07:00:19.010000"],["2024-07-25T07:00:20.010000"],["2024-07-25T07:00:21.010000"],["2024-07-25T07:00:22.010000"],["2024-07-25T07:00:23.010000"],["2024-07-25T07:00:24.010000"],["2024-07-25T07:00:25.010000"],["2024-07-25T07:00:26.010000"],["2024-07-25T07:00:27.010000"],["2024-07-25T07:00:28.010000"],["2024-07-25T07:00:29.010000"],["2024-07-25T07:00:30.010000"],["2024-07-25T07:00:31.010000"],["2024-07-25T07:00:32.010000"],["2024-07-25T07:00:33.010000"],["2024-07-25T07:00:34.010000"],["2024-07-25T07:00:35.010000"],["2024-07-25T07:00:36.010000"],["2024-07-25T07:00:37.010000"],["2024-07-25T07:00:38.010000"],["2024-07-25T07:00:39.010000"],["2024-07-25T07:00:40.010000"],["2024-07-25T07:00:41.010000"],["2024-07-25T07:00:42.010000"],["2024-07-25T07:00:43.010000"],["2024-07-25T07:00:44.010000"],["2024-07-25T07:00:45.010000"],["2024-07-25T07:00:46.010000"],["2024-07-25T07:00:47.010000"],["2024-07-25T07:00:48.010000"],["2024-07-25T07:00:49.010000"],["2024-07-25T07:00:50.010000"],["2024-07-25T07:00:51.010000"],["2024-07-25T07:00:52.010000"],["2024-07-25T07:00:53.010000"],["2024-07-25T07:00:54.010000"],["2024-07-25T07:00:55.010000"],["2024-07-25T07:00:56.010000"],["2024-07-25T07:00:57.010000"],["2024-07-25T07:00:58.010000"],["2024-07-25T07:00:59.010000"],["2024-07-25T07:01:00.010000"],["2024-07-25T07:01:01.010000"],["2024-07-25T07:01:02.010000"],["2024-07-25T07:01:03.010000"],["2024-07-25T07:01:04.010000"],["2024-07-25T07:01:05.010000"],["2024-07-25T07:01:06.010000"],["2024-07-25T07:01:07.010000"],["2024-07-25T07:01:08.010000"],["2024-07-25T07:01:09.010000"],["2024-07-25T07:01:10.010000"],["2024-07-25T07:01:11.010000"],["2024-07-25T07:01:12.010000"],["2024-07-25T07:01:13.010000"],["2024-07-25T07:01:14.010000"],["2024-07-25T07:01:15.010000"],["2024-07-25T07:01:16.010000"],["2024-07-25T07:01:17.010000"],["2024-07-25T07:01:18.010000"],["2024-07-25T07:01:19.010000"],["2024-07-25T07:01:20.010000"],["2024-07-25T07:01:21.010000"],["2024-07-25T07:01:22.010000"],["2024-07-25T07:01:23.010000"],["2024-07-25T07:01:24.010000"],["2024-07-25T07:01:25.010000"],["2024-07-25T07:01:26.010000"],["2024-07-25T07:01:27.010000"],["2024-07-25T07:01:28.010000"],["2024-07-25T07:01:29.010000"],["2024-07-25T07:01:30.010000"],["2024-07-25T07:01:31.010000"],["2024-07-25T07:01:32.010000"],["2024-07-25T07:01:33.010000"],["2024-07-25T07:01:34.010000"],["2024-07-25T07:01:35.010000"],["2024-07-25T07:01:36.010000"],["2024-07-25T07:01:37.010000"],["2024-07-25T07:01:38.010000"],["2024-07-25T07:01:39.010000"],["2024-07-25T07:01:40.010000"],["2024-07-25T07:01:41.010000"],["2024-07-25T07:01:42.010000"],["2024-07-25T07:01:43.010000"],["2024-07-25T07:01:44.010000"],["2024-07-25T07:01:45.010000"],["2024-07-25T07:01:46.010000"],["2024-07-25T07:01:47.010000"],["2024-07-25T07:01:48.010000"],["2024-07-25T07:01:49.010000"],["2024-07-25T07:01:50.010000"],["2024-07-25T07:01:51.010000"],["2024-07-25T07:01:52.010000"],["2024-07-25T07:01:53.010000"],["2024-07-25T07:01:54.010000"],["2024-07-25T07:01:55.010000"],["2024-07-25T07:01:56.010000"],["2024-07-25T07:01:57.010000"],["2024-07-25T07:01:58.010000"],["2024-07-25T07:01:59.010000"],["2024-07-25T07:02:00.010000"],["2024-07-25T07:02:01.010000"],["2024-07-25T07:02:02.010000"],["2024-07-25T07:02:03.010000"],["2024-07-25T07:02:04.010000"],["2024-07-25T07:02:05.010000"],["2024-07-25T07:02:06.010000"],["2024-07-25T07:02:07.010000"],["2024-07-25T07:02:08.010000"],["2024-07-25T07:02:09.010000"],["2024-07-25T07:02:10.010000"],["2024-07-25T07:02:11.010000"],["2024-07-25T07:02:12.010000"],["2024-07-25T07:02:13.010000"],["2024-07-25T07:02:14.010000"],["2024-07-25T07:02:15.010000"],["2024-07-25T07:02:16.010000"],["2024-07-25T07:02:17.010000"],["2024-07-25T07:02:18.010000"],["2024-07-25T07:02:19.010000"],["2024-07-25T07:02:20.010000"],["2024-07-25T07:02:21.010000"],["2024-07-25T07:02:22.010000"],["2024-07-25T07:02:23.010000"],["2024-07-25T07:02:24.010000"],["2024-07-25T07:02:25.010000"],["2024-07-25T07:02:26.010000"],["2024-07-25T07:02:27.010000"],["2024-07-25T07:02:28.010000"],["2024-07-25T07:02:29.010000"],["2024-07-25T07:02:30.010000"],["2024-07-25T07:02:31.010000"],["2024-07-25T07:02:32.010000"],["2024-07-25T07:02:33.010000"],["2024-07-25T07:02:34.010000"],["2024-07-25T07:02:35.010000"],["2024-07-25T07:02:36.010000"],["2024-07-25T07:02:37.010000"],["2024-07-25T07:02:38.010000"],["2024-07-25T07:02:39.010000"],["2024-07-25T07:02:40.010000"],["2024-07-25T07:02:41.010000"],["2024-07-25T07:02:42.010000"],["2024-07-25T07:02:43.010000"],["2024-07-25T07:02:44.010000"],["2024-07-25T07:02:45.010000"],["2024-07-25T07:02:46.010000"],["2024-07-25T07:02:47.010000"],["2024-07-25T07:02:48.010000"],["2024-07-25T07:02:49.010000"],["2024-07-25T07:02:50.010000"],["2024-07-25T07:02:51.010000"],["2024-07-25T07:02:52.010000"],["2024-07-25T07:02:53.010000"],["2024-07-25T07:02:54.010000"],["2024-07-25T07:02:55.010000"],["2024-07-25T07:02:56.010000"],["2024-07-25T07:02:57.010000"],["2024-07-25T07:02:58.010000"],["2024-07-25T07:02:59.010000"],["2024-07-25T07:03:00.010000"],["2024-07-25T07:03:01.010000"],["2024-07-25T07:03:02.010000"],["2024-07-25T07:03:03.010000"],["2024-07-25T07:03:04.010000"],["2024-07-25T07:03:05.010000"],["2024-07-25T07:03:06.010000"],["2024-07-25T07:03:07.010000"],["2024-07-25T07:03:08.010000"],["2024-07-25T07:03:09.010000"],["2024-07-25T07:03:10.010000"],["2024-07-25T07:03:11.010000"],["2024-07-25T07:03:12.010000"],["2024-07-25T07:03:13.010000"],["2024-07-25T07:03:14.010000"],["2024-07-25T07:03:15.010000"],["2024-07-25T07:03:16.010000"],["2024-07-25T07:03:17.010000"],["2024-07-25T07:03:18.010000"],["2024-07-25T07:03:19.010000"],["2024-07-25T07:03:20.010000"],["2024-07-25T07:03:21.010000"],["2024-07-25T07:03:22.010000"],["2024-07-25T07:03:23.010000"],["2024-07-25T07:03:24.010000"],["2024-07-25T07:03:25.010000"],["2024-07-25T07:03:26.010000"],["2024-07-25T07:03:27.010000"],["2024-07-25T07:03:28.010000"],["2024-07-25T07:03:29.010000"],["2024-07-25T07:03:30.010000"],["2024-07-25T07:03:31.010000"],["2024-07-25T07:03:32.010000"],["2024-07-25T07:03:33.010000"],["2024-07-25T07:03:34.010000"],["2024-07-25T07:03:35.010000"],["2024-07-25T07:03:36.010000"],["2024-07-25T07:03:37.010000"],["2024-07-25T07:03:38.010000"],["2024-07-25T07:03:39.010000"],["2024-07-25T07:03:40.010000"],["2024-07-25T07:03:41.010000"],["2024-07-25T07:03:42.010000"],["2024-07-25T07:03:43.010000"],["2024-07-25T07:03:44.010000"],["2024-07-25T07:03:45.010000"],["2024-07-25T07:03:46.010000"],["2024-07-25T07:03:47.010000"],["2024-07-25T07:03:48.010000"],["2024-07-25T07:03:49.010000"],["2024-07-25T07:03:50.010000"],["2024-07-25T07:03:51.010000"],["2024-07-25T07:03:52.010000"],["2024-07-25T07:03:53.010000"],["2024-07-25T07:03:54.010000"],["2024-07-25T07:03:55.010000"],["2024-07-25T07:03:56.010000"],["2024-07-25T07:03:57.010000"],["2024-07-25T07:03:58.010000"],["2024-07-25T07:03:59.010000"],["2024-07-25T07:04:00.010000"],["2024-07-25T07:04:01.010000"],["2024-07-25T07:04:02.010000"],["2024-07-25T07:04:03.010000"],["2024-07-25T07:04:04.010000"],["2024-07-25T07:04:05.010000"],["2024-07-25T07:04:06.010000"],["2024-07-25T07:04:07.010000"],["2024-07-25T07:04:08.010000"],["2024-07-25T07:04:09.010000"],["2024-07-25T07:04:10.010000"],["2024-07-25T07:04:11.010000"],["2024-07-25T07:04:12.010000"],["2024-07-25T07:04:13.010000"],["2024-07-25T07:04:14.010000"],["2024-07-25T07:04:15.010000"],["2024-07-25T07:04:16.010000"],["2024-07-25T07:04:17.010000"],["2024-07-25T07:04:18.010000"],["2024-07-25T07:04:19.010000"],["2024-07-25T07:04:20.010000"],["2024-07-25T07:04:21.010000"],["2024-07-25T07:04:22.010000"],["2024-07-25T07:04:23.010000"],["2024-07-25T07:04:24.010000"],["2024-07-25T07:04:25.010000"],["2024-07-25T07:04:26.010000"],["2024-07-25T07:04:27.010000"],["2024-07-25T07:04:28.010000"],["2024-07-25T07:04:29.010000"],["2024-07-25T07:04:30.010000"],["2024-07-25T07:04:31.010000"],["2024-07-25T07:04:32.010000"],["2024-07-25T07:04:33.010000"],["2024-07-25T07:04:34.010000"],["2024-07-25T07:04:35.010000"],["2024-07-25T07:04:36.010000"],["2024-07-25T07:04:37.010000"],["2024-07-25T07:04:38.010000"],["2024-07-25T07:04:39.010000"],["2024-07-25T07:04:40.010000"],["2024-07-25T07:04:41.010000"],["2024-07-25T07:04:42.010000"],["2024-07-25T07:04:43.010000"],["2024-07-25T07:04:44.010000"],["2024-07-25T07:04:45.010000"],["2024-07-25T07:04:46.010000"],["2024-07-25T07:04:47.010000"],["2024-07-25T07:04:48.010000"],["2024-07-25T07:04:49.010000"],["2024-07-25T07:04:50.010000"],["2024-07-25T07:04:51.010000"],["2024-07-25T07:04:52.010000"],["2024-07-25T07:04:53.010000"],["2024-07-25T07:04:54.010000"],["2024-07-25T07:04:55.010000"],["2024-07-25T07:04:56.010000"],["2024-07-25T07:04:57.010000"],["2024-07-25T07:04:58.010000"],["2024-07-25T07:04:59.010000"],["2024-07-25T07:05:00.010000"],["2024-07-25T07:05:01.010000"],["2024-07-25T07:05:02.010000"],["2024-07-25T07:05:03.010000"],["2024-07-25T07:05:04.010000"],["2024-07-25T07:05:05.010000"],["2024-07-25T07:05:06.010000"],["2024-07-25T07:05:07.010000"],["2024-07-25T07:05:08.010000"],["2024-07-25T07:05:09.010000"],["2024-07-25T07:05:10.010000"],["2024-07-25T07:05:11.010000"],["2024-07-25T07:05:12.010000"],["2024-07-25T07:05:13.010000"],["2024-07-25T07:05:14.010000"],["2024-07-25T07:05:15.010000"],["2024-07-25T07:05:16.010000"],["2024-07-25T07:05:17.010000"],["2024-07-25T07:05:18.010000"],["2024-07-25T07:05:19.010000"],["2024-07-25T07:05:20.010000"],["2024-07-25T07:05:21.010000"],["2024-07-25T07:05:22.010000"],["2024-07-25T07:05:23.010000"],["2024-07-25T07:05:24.010000"],["2024-07-25T07:05:25.010000"],["2024-07-25T07:05:26.010000"],["2024-07-25T07:05:27.010000"],["2024-07-25T07:05:28.010000"],["2024-07-25T07:05:29.010000"],["2024-07-25T07:05:30.010000"],["2024-07-25T07:05:31.010000"],["2024-07-25T07:05:32.010000"],["2024-07-25T07:05:33.010000"],["2024-07-25T07:05:34.010000"],["2024-07-25T07:05:35.010000"],["2024-07-25T07:05:36.010000"],["2024-07-25T07:05:37.010000"],["2024-07-25T07:05:38.010000"],["2024-07-25T07:05:39.010000"],["2024-07-25T07:05:40.010000"],["2024-07-25T07:05:41.010000"],["2024-07-25T07:05:42.010000"],["2024-07-25T07:05:43.010000"],["2024-07-25T07:05:44.010000"],["2024-07-25T07:05:45.010000"],["2024-07-25T07:05:46.010000"],["2024-07-25T07:05:47.010000"],["2024-07-25T07:05:48.010000"],["2024-07-25T07:05:49.010000"],["2024-07-25T07:05:50.010000"],["2024-07-25T07:05:51.010000"],["2024-07-25T07:05:52.010000"],["2024-07-25T07:05:53.010000"],["2024-07-25T07:05:54.010000"],["2024-07-25T07:05:55.010000"],["2024-07-25T07:05:56.010000"],["2024-07-25T07:05:57.010000"],["2024-07-25T07:05:58.010000"],["2024-07-25T07:05:59.010000"],["2024-07-25T07:06:00.010000"],["2024-07-25T07:06:01.010000"],["2024-07-25T07:06:02.010000"],["2024-07-25T07:06:03.010000"],["2024-07-25T07:06:04.010000"],["2024-07-25T07:06:05.010000"],["2024-07-25T07:06:06.010000"],["2024-07-25T07:06:07.010000"],["2024-07-25T07:06:08.010000"],["2024-07-25T07:06:09.010000"],["2024-07-25T07:06:10.010000"],["2024-07-25T07:06:11.010000"],["2024-07-25T07:06:12.010000"],["2024-07-25T07:06:13.010000"],["2024-07-25T07:06:14.010000"],["2024-07-25T07:06:15.010000"],["2024-07-25T07:06:16.010000"],["2024-07-25T07:06:17.010000"],["2024-07-25T07:06:18.010000"],["2024-07-25T07:06:19.010000"],["2024-07-25T07:06:20.010000"],["2024-07-25T07:06:21.010000"],["2024-07-25T07:06:22.010000"],["2024-07-25T07:06:23.010000"],["2024-07-25T07:06:24.010000"],["2024-07-25T07:06:25.010000"],["2024-07-25T07:06:26.010000"],["2024-07-25T07:06:27.010000"],["2024-07-25T07:06:28.010000"],["2024-07-25T07:06:29.010000"],["2024-07-25T07:06:30.010000"],["2024-07-25T07:06:31.010000"],["2024-07-25T07:06:32.010000"],["2024-07-25T07:06:33.010000"],["2024-07-25T07:06:34.010000"],["2024-07-25T07:06:35.010000"],["2024-07-25T07:06:36.010000"],["2024-07-25T07:06:37.010000"],["2024-07-25T07:06:38.010000"],["2024-07-25T07:06:39.010000"],["2024-07-25T07:06:40.010000"],["2024-07-25T07:06:41.010000"],["2024-07-25T07:06:42.010000"],["2024-07-25T07:06:43.010000"],["2024-07-25T07:06:44.010000"],["2024-07-25T07:06:45.010000"],["2024-07-25T07:06:46.010000"],["2024-07-25T07:06:47.010000"],["2024-07-25T07:06:48.010000"],["2024-07-25T07:06:49.010000"],["2024-07-25T07:06:50.010000"],["2024-07-25T07:06:51.010000"],["2024-07-25T07:06:52.010000"],["2024-07-25T07:06:53.010000"],["2024-07-25T07:06:54.010000"],["2024-07-25T07:06:55.010000"],["2024-07-25T07:06:56.010000"],["2024-07-25T07:06:57.010000"],["2024-07-25T07:06:58.010000"],["2024-07-25T07:06:59.010000"],["2024-07-25T07:07:00.010000"],["2024-07-25T07:07:01.010000"],["2024-07-25T07:07:02.010000"],["2024-07-25T07:07:03.010000"],["2024-07-25T07:07:04.010000"],["2024-07-25T07:07:05.010000"],["2024-07-25T07:07:06.010000"],["2024-07-25T07:07:07.010000"],["2024-07-25T07:07:08.010000"],["2024-07-25T07:07:09.010000"],["2024-07-25T07:07:10.010000"],["2024-07-25T07:07:11.010000"],["2024-07-25T07:07:12.010000"],["2024-07-25T07:07:13.010000"],["2024-07-25T07:07:14.010000"],["2024-07-25T07:07:15.010000"],["2024-07-25T07:07:16.010000"],["2024-07-25T07:07:17.010000"],["2024-07-25T07:07:18.010000"],["2024-07-25T07:07:19.010000"],["2024-07-25T07:07:20.010000"],["2024-07-25T07:07:21.010000"],["2024-07-25T07:07:22.010000"],["2024-07-25T07:07:23.010000"],["2024-07-25T07:07:24.010000"],["2024-07-25T07:07:25.010000"],["2024-07-25T07:07:26.010000"],["2024-07-25T07:07:27.010000"],["2024-07-25T07:07:28.010000"],["2024-07-25T07:07:29.010000"],["2024-07-25T07:07:30.010000"],["2024-07-25T07:07:31.010000"],["2024-07-25T07:07:32.010000"],["2024-07-25T07:07:33.010000"],["2024-07-25T07:07:34.010000"],["2024-07-25T07:07:35.010000"],["2024-07-25T07:07:36.010000"],["2024-07-25T07:07:37.010000"],["2024-07-25T07:07:38.010000"],["2024-07-25T07:07:39.010000"],["2024-07-25T07:07:40.010000"],["2024-07-25T07:07:41.010000"],["2024-07-25T07:07:42.010000"],["2024-07-25T07:07:43.010000"],["2024-07-25T07:07:44.010000"],["2024-07-25T07:07:45.010000"],["2024-07-25T07:07:46.010000"],["2024-07-25T07:07:47.010000"],["2024-07-25T07:07:48.010000"],["2024-07-25T07:07:49.010000"],["2024-07-25T07:07:50.010000"],["2024-07-25T07:07:51.010000"],["2024-07-25T07:07:52.010000"],["2024-07-25T07:07:53.010000"],["2024-07-25T07:07:54.010000"],["2024-07-25T07:07:55.010000"],["2024-07-25T07:07:56.010000"],["2024-07-25T07:07:57.010000"],["2024-07-25T07:07:58.010000"],["2024-07-25T07:07:59.010000"],["2024-07-25T07:08:00.010000"],["2024-07-25T07:08:01.010000"],["2024-07-25T07:08:02.010000"],["2024-07-25T07:08:03.010000"],["2024-07-25T07:08:04.010000"],["2024-07-25T07:08:05.010000"],["2024-07-25T07:08:06.010000"],["2024-07-25T07:08:07.010000"],["2024-07-25T07:08:08.010000"],["2024-07-25T07:08:09.010000"],["2024-07-25T07:08:10.010000"],["2024-07-25T07:08:11.010000"],["2024-07-25T07:08:12.010000"],["2024-07-25T07:08:13.010000"],["2024-07-25T07:08:14.010000"],["2024-07-25T07:08:15.010000"],["2024-07-25T07:08:16.010000"],["2024-07-25T07:08:17.010000"],["2024-07-25T07:08:18.010000"],["2024-07-25T07:08:19.010000"],["2024-07-25T07:08:20.010000"],["2024-07-25T07:08:21.010000"],["2024-07-25T07:08:22.010000"],["2024-07-25T07:08:23.010000"],["2024-07-25T07:08:24.010000"],["2024-07-25T07:08:25.010000"],["2024-07-25T07:08:26.010000"],["2024-07-25T07:08:27.010000"],["2024-07-25T07:08:28.010000"],["2024-07-25T07:08:29.010000"],["2024-07-25T07:08:30.010000"],["2024-07-25T07:08:31.010000"],["2024-07-25T07:08:32.010000"],["2024-07-25T07:08:33.010000"],["2024-07-25T07:08:34.010000"],["2024-07-25T07:08:35.010000"],["2024-07-25T07:08:36.010000"],["2024-07-25T07:08:37.010000"],["2024-07-25T07:08:38.010000"],["2024-07-25T07:08:39.010000"],["2024-07-25T07:08:40.010000"],["2024-07-25T07:08:41.010000"],["2024-07-25T07:08:42.010000"],["2024-07-25T07:08:43.010000"],["2024-07-25T07:08:44.010000"],["2024-07-25T07:08:45.010000"],["2024-07-25T07:08:46.010000"],["2024-07-25T07:08:47.010000"],["2024-07-25T07:08:48.010000"],["2024-07-25T07:08:49.010000"],["2024-07-25T07:08:50.010000"],["2024-07-25T07:08:51.010000"],["2024-07-25T07:08:52.010000"],["2024-07-25T07:08:53.010000"],["2024-07-25T07:08:54.010000"],["2024-07-25T07:08:55.010000"],["2024-07-25T07:08:56.010000"],["2024-07-25T07:08:57.010000"],["2024-07-25T07:08:58.010000"],["2024-07-25T07:08:59.010000"],["2024-07-25T07:09:00.010000"],["2024-07-25T07:09:01.010000"],["2024-07-25T07:09:02.010000"],["2024-07-25T07:09:03.010000"],["2024-07-25T07:09:04.010000"],["2024-07-25T07:09:05.010000"],["2024-07-25T07:09:06.010000"],["2024-07-25T07:09:07.010000"],["2024-07-25T07:09:08.010000"],["2024-07-25T07:09:09.010000"],["2024-07-25T07:09:10.010000"],["2024-07-25T07:09:11.010000"],["2024-07-25T07:09:12.010000"],["2024-07-25T07:09:13.010000"],["2024-07-25T07:09:14.010000"],["2024-07-25T07:09:15.010000"],["2024-07-25T07:09:16.010000"],["2024-07-25T07:09:17.010000"],["2024-07-25T07:09:18.010000"],["2024-07-25T07:09:19.010000"],["2024-07-25T07:09:20.010000"],["2024-07-25T07:09:21.010000"],["2024-07-25T07:09:22.010000"],["2024-07-25T07:09:23.010000"],["2024-07-25T07:09:24.010000"],["2024-07-25T07:09:25.010000"],["2024-07-25T07:09:26.010000"],["2024-07-25T07:09:27.010000"],["2024-07-25T07:09:28.010000"],["2024-07-25T07:09:29.010000"],["2024-07-25T07:09:30.010000"],["2024-07-25T07:09:31.010000"],["2024-07-25T07:09:32.010000"],["2024-07-25T07:09:33.010000"],["2024-07-25T07:09:34.010000"],["2024-07-25T07:09:35.010000"],["2024-07-25T07:09:36.010000"],["2024-07-25T07:09:37.010000"],["2024-07-25T07:09:38.010000"],["2024-07-25T07:09:39.010000"],["2024-07-25T07:09:40.010000"],["2024-07-25T07:09:41.010000"],["2024-07-25T07:09:42.010000"],["2024-07-25T07:09:43.010000"],["2024-07-25T07:09:44.010000"],["2024-07-25T07:09:45.010000"],["2024-07-25T07:09:46.010000"],["2024-07-25T07:09:47.010000"],["2024-07-25T07:09:48.010000"],["2024-07-25T07:09:49.010000"],["2024-07-25T07:09:50.010000"],["2024-07-25T07:09:51.010000"],["2024-07-25T07:09:52.010000"],["2024-07-25T07:09:53.010000"],["2024-07-25T07:09:54.010000"],["2024-07-25T07:09:55.010000"],["2024-07-25T07:09:56.010000"],["2024-07-25T07:09:57.010000"],["2024-07-25T07:09:58.010000"],["2024-07-25T07:09:59.010000"],["2024-07-25T07:10:00.010000"],["2024-07-25T07:10:01.010000"],["2024-07-25T07:10:02.010000"],["2024-07-25T07:10:03.010000"],["2024-07-25T07:10:04.010000"],["2024-07-25T07:10:05.010000"],["2024-07-25T07:10:06.010000"],["2024-07-25T07:10:07.010000"],["2024-07-25T07:10:08.010000"],["2024-07-25T07:10:09.010000"],["2024-07-25T07:10:10.010000"],["2024-07-25T07:10:11.010000"],["2024-07-25T07:10:12.010000"],["2024-07-25T07:10:13.010000"],["2024-07-25T07:10:14.010000"],["2024-07-25T07:10:15.010000"],["2024-07-25T07:10:16.010000"],["2024-07-25T07:10:17.010000"],["2024-07-25T07:10:18.010000"],["2024-07-25T07:10:19.010000"],["2024-07-25T07:10:20.010000"],["2024-07-25T07:10:21.010000"],["2024-07-25T07:10:22.010000"],["2024-07-25T07:10:23.010000"],["2024-07-25T07:10:24.010000"],["2024-07-25T07:10:25.010000"],["2024-07-25T07:10:26.010000"],["2024-07-25T07:10:27.010000"],["2024-07-25T07:10:28.010000"],["2024-07-25T07:10:29.010000"],["2024-07-25T07:10:30.010000"],["2024-07-25T07:10:31.010000"],["2024-07-25T07:10:32.010000"],["2024-07-25T07:10:33.010000"],["2024-07-25T07:10:34.010000"],["2024-07-25T07:10:35.010000"],["2024-07-25T07:10:36.010000"],["2024-07-25T07:10:37.010000"],["2024-07-25T07:10:38.010000"],["2024-07-25T07:10:39.010000"],["2024-07-25T07:10:40.010000"],["2024-07-25T07:10:41.010000"],["2024-07-25T07:10:42.010000"],["2024-07-25T07:10:43.010000"],["2024-07-25T07:10:44.010000"],["2024-07-25T07:10:45.010000"],["2024-07-25T07:10:46.010000"],["2024-07-25T07:10:47.010000"],["2024-07-25T07:10:48.010000"],["2024-07-25T07:10:49.010000"],["2024-07-25T07:10:50.010000"],["2024-07-25T07:10:51.010000"],["2024-07-25T07:10:52.010000"],["2024-07-25T07:10:53.010000"],["2024-07-25T07:10:54.010000"],["2024-07-25T07:10:55.010000"],["2024-07-25T07:10:56.010000"],["2024-07-25T07:10:57.010000"],["2024-07-25T07:10:58.010000"],["2024-07-25T07:10:59.010000"],["2024-07-25T07:11:00.010000"],["2024-07-25T07:11:01.010000"],["2024-07-25T07:11:02.010000"],["2024-07-25T07:11:03.010000"],["2024-07-25T07:11:04.010000"],["2024-07-25T07:11:05.010000"],["2024-07-25T07:11:06.010000"],["2024-07-25T07:11:07.010000"],["2024-07-25T07:11:08.010000"],["2024-07-25T07:11:09.010000"],["2024-07-25T07:11:10.010000"],["2024-07-25T07:11:11.010000"],["2024-07-25T07:11:12.010000"],["2024-07-25T07:11:13.010000"],["2024-07-25T07:11:14.010000"],["2024-07-25T07:11:15.010000"],["2024-07-25T07:11:16.010000"],["2024-07-25T07:11:17.010000"],["2024-07-25T07:11:18.010000"],["2024-07-25T07:11:19.010000"],["2024-07-25T07:11:20.010000"],["2024-07-25T07:11:21.010000"],["2024-07-25T07:11:22.010000"],["2024-07-25T07:11:23.010000"],["2024-07-25T07:11:24.010000"],["2024-07-25T07:11:25.010000"],["2024-07-25T07:11:26.010000"],["2024-07-25T07:11:27.010000"],["2024-07-25T07:11:28.010000"],["2024-07-25T07:11:29.010000"],["2024-07-25T07:11:30.010000"],["2024-07-25T07:11:31.010000"],["2024-07-25T07:11:32.010000"],["2024-07-25T07:11:33.010000"],["2024-07-25T07:11:34.010000"],["2024-07-25T07:11:35.010000"],["2024-07-25T07:11:36.010000"],["2024-07-25T07:11:37.010000"],["2024-07-25T07:11:38.010000"],["2024-07-25T07:11:39.010000"],["2024-07-25T07:11:40.010000"],["2024-07-25T07:11:41.010000"],["2024-07-25T07:11:42.010000"],["2024-07-25T07:11:43.010000"],["2024-07-25T07:11:44.010000"],["2024-07-25T07:11:45.010000"],["2024-07-25T07:11:46.010000"],["2024-07-25T07:11:47.010000"],["2024-07-25T07:11:48.010000"],["2024-07-25T07:11:49.010000"],["2024-07-25T07:11:50.010000"],["2024-07-25T07:11:51.010000"],["2024-07-25T07:11:52.010000"],["2024-07-25T07:11:53.010000"],["2024-07-25T07:11:54.010000"],["2024-07-25T07:11:55.010000"],["2024-07-25T07:11:56.010000"],["2024-07-25T07:11:57.010000"],["2024-07-25T07:11:58.010000"],["2024-07-25T07:11:59.010000"],["2024-07-25T07:12:00.010000"],["2024-07-25T07:12:01.010000"],["2024-07-25T07:12:02.010000"],["2024-07-25T07:12:03.010000"],["2024-07-25T07:12:04.010000"],["2024-07-25T07:12:05.010000"],["2024-07-25T07:12:06.010000"],["2024-07-25T07:12:07.010000"],["2024-07-25T07:12:08.010000"],["2024-07-25T07:12:09.010000"],["2024-07-25T07:12:10.010000"],["2024-07-25T07:12:11.010000"],["2024-07-25T07:12:12.010000"],["2024-07-25T07:12:13.010000"],["2024-07-25T07:12:14.010000"],["2024-07-25T07:12:15.010000"],["2024-07-25T07:12:16.010000"],["2024-07-25T07:12:17.010000"],["2024-07-25T07:12:18.010000"],["2024-07-25T07:12:19.010000"],["2024-07-25T07:12:20.010000"],["2024-07-25T07:12:21.010000"],["2024-07-25T07:12:22.010000"],["2024-07-25T07:12:23.010000"],["2024-07-25T07:12:24.010000"],["2024-07-25T07:12:25.010000"],["2024-07-25T07:12:26.010000"],["2024-07-25T07:12:27.010000"],["2024-07-25T07:12:28.010000"],["2024-07-25T07:12:29.010000"],["2024-07-25T07:12:30.010000"],["2024-07-25T07:12:31.010000"],["2024-07-25T07:12:32.010000"],["2024-07-25T07:12:33.010000"],["2024-07-25T07:12:34.010000"],["2024-07-25T07:12:35.010000"],["2024-07-25T07:12:36.010000"],["2024-07-25T07:12:37.010000"],["2024-07-25T07:12:38.010000"],["2024-07-25T07:12:39.010000"],["2024-07-25T07:12:40.010000"],["2024-07-25T07:12:41.010000"],["2024-07-25T07:12:42.010000"],["2024-07-25T07:12:43.010000"],["2024-07-25T07:12:44.010000"],["2024-07-25T07:12:45.010000"],["2024-07-25T07:12:46.010000"],["2024-07-25T07:12:47.010000"],["2024-07-25T07:12:48.010000"],["2024-07-25T07:12:49.010000"],["2024-07-25T07:12:50.010000"],["2024-07-25T07:12:51.010000"],["2024-07-25T07:12:52.010000"],["2024-07-25T07:12:53.010000"],["2024-07-25T07:12:54.010000"],["2024-07-25T07:12:55.010000"],["2024-07-25T07:12:56.010000"],["2024-07-25T07:12:57.010000"],["2024-07-25T07:12:58.010000"],["2024-07-25T07:12:59.010000"],["2024-07-25T07:13:00.010000"],["2024-07-25T07:13:01.010000"],["2024-07-25T07:13:02.010000"],["2024-07-25T07:13:03.010000"],["2024-07-25T07:13:04.010000"],["2024-07-25T07:13:05.010000"],["2024-07-25T07:13:06.010000"],["2024-07-25T07:13:07.010000"],["2024-07-25T07:13:08.010000"],["2024-07-25T07:13:09.010000"],["2024-07-25T07:13:10.010000"],["2024-07-25T07:13:11.010000"],["2024-07-25T07:13:12.010000"],["2024-07-25T07:13:13.010000"],["2024-07-25T07:13:14.010000"],["2024-07-25T07:13:15.010000"],["2024-07-25T07:13:16.010000"],["2024-07-25T07:13:17.010000"],["2024-07-25T07:13:18.010000"],["2024-07-25T07:13:19.010000"],["2024-07-25T07:13:20.010000"],["2024-07-25T07:13:21.010000"],["2024-07-25T07:13:22.010000"],["2024-07-25T07:13:23.010000"],["2024-07-25T07:13:24.010000"],["2024-07-25T07:13:25.010000"],["2024-07-25T07:13:26.010000"],["2024-07-25T07:13:27.010000"],["2024-07-25T07:13:28.010000"],["2024-07-25T07:13:29.010000"],["2024-07-25T07:13:30.010000"],["2024-07-25T07:13:31.010000"],["2024-07-25T07:13:32.010000"],["2024-07-25T07:13:33.010000"],["2024-07-25T07:13:34.010000"],["2024-07-25T07:13:35.010000"],["2024-07-25T07:13:36.010000"],["2024-07-25T07:13:37.010000"],["2024-07-25T07:13:38.010000"],["2024-07-25T07:13:39.010000"],["2024-07-25T07:13:40.010000"],["2024-07-25T07:13:41.010000"],["2024-07-25T07:13:42.010000"],["2024-07-25T07:13:43.010000"],["2024-07-25T07:13:44.010000"],["2024-07-25T07:13:45.010000"],["2024-07-25T07:13:46.010000"],["2024-07-25T07:13:47.010000"],["2024-07-25T07:13:48.010000"],["2024-07-25T07:13:49.010000"],["2024-07-25T07:13:50.010000"],["2024-07-25T07:13:51.010000"],["2024-07-25T07:13:52.010000"],["2024-07-25T07:13:53.010000"],["2024-07-25T07:13:54.010000"],["2024-07-25T07:13:55.010000"],["2024-07-25T07:13:56.010000"],["2024-07-25T07:13:57.010000"],["2024-07-25T07:13:58.010000"],["2024-07-25T07:13:59.010000"],["2024-07-25T07:14:00.010000"],["2024-07-25T07:14:01.010000"],["2024-07-25T07:14:02.010000"],["2024-07-25T07:14:03.010000"],["2024-07-25T07:14:04.010000"],["2024-07-25T07:14:05.010000"],["2024-07-25T07:14:06.010000"],["2024-07-25T07:14:07.010000"],["2024-07-25T07:14:08.010000"],["2024-07-25T07:14:09.010000"],["2024-07-25T07:14:10.010000"],["2024-07-25T07:14:11.010000"],["2024-07-25T07:14:12.010000"],["2024-07-25T07:14:13.010000"],["2024-07-25T07:14:14.010000"],["2024-07-25T07:14:15.010000"],["2024-07-25T07:14:16.010000"],["2024-07-25T07:14:17.010000"],["2024-07-25T07:14:18.010000"],["2024-07-25T07:14:19.010000"],["2024-07-25T07:14:20.010000"],["2024-07-25T07:14:21.010000"],["2024-07-25T07:14:22.010000"],["2024-07-25T07:14:23.010000"],["2024-07-25T07:14:24.010000"],["2024-07-25T07:14:25.010000"],["2024-07-25T07:14:26.010000"],["2024-07-25T07:14:27.010000"],["2024-07-25T07:14:28.010000"],["2024-07-25T07:14:29.010000"],["2024-07-25T07:14:30.010000"],["2024-07-25T07:14:31.010000"],["2024-07-25T07:14:32.010000"],["2024-07-25T07:14:33.010000"],["2024-07-25T07:14:34.010000"],["2024-07-25T07:14:35.010000"],["2024-07-25T07:14:36.010000"],["2024-07-25T07:14:37.010000"],["2024-07-25T07:14:38.010000"],["2024-07-25T07:14:39.010000"],["2024-07-25T07:14:40.010000"],["2024-07-25T07:14:41.010000"],["2024-07-25T07:14:42.010000"],["2024-07-25T07:14:43.010000"],["2024-07-25T07:14:44.010000"],["2024-07-25T07:14:45.010000"],["2024-07-25T07:14:46.010000"],["2024-07-25T07:14:47.010000"],["2024-07-25T07:14:48.010000"],["2024-07-25T07:14:49.010000"],["2024-07-25T07:14:50.010000"],["2024-07-25T07:14:51.010000"],["2024-07-25T07:14:52.010000"],["2024-07-25T07:14:53.010000"],["2024-07-25T07:14:54.010000"],["2024-07-25T07:14:55.010000"],["2024-07-25T07:14:56.010000"],["2024-07-25T07:14:57.010000"],["2024-07-25T07:14:58.010000"],["2024-07-25T07:14:59.010000"],["2024-07-25T07:15:00.010000"],["2024-07-25T07:15:01.010000"],["2024-07-25T07:15:02.010000"],["2024-07-25T07:15:03.010000"],["2024-07-25T07:15:04.010000"],["2024-07-25T07:15:05.010000"],["2024-07-25T07:15:06.010000"],["2024-07-25T07:15:07.010000"],["2024-07-25T07:15:08.010000"],["2024-07-25T07:15:09.010000"],["2024-07-25T07:15:10.010000"],["2024-07-25T07:15:11.010000"],["2024-07-25T07:15:12.010000"],["2024-07-25T07:15:13.010000"],["2024-07-25T07:15:14.010000"],["2024-07-25T07:15:15.010000"],["2024-07-25T07:15:16.010000"],["2024-07-25T07:15:17.010000"],["2024-07-25T07:15:18.010000"],["2024-07-25T07:15:19.010000"],["2024-07-25T07:15:20.010000"],["2024-07-25T07:15:21.010000"],["2024-07-25T07:15:22.010000"],["2024-07-25T07:15:23.010000"],["2024-07-25T07:15:24.010000"],["2024-07-25T07:15:25.010000"],["2024-07-25T07:15:26.010000"],["2024-07-25T07:15:27.010000"],["2024-07-25T07:15:28.010000"],["2024-07-25T07:15:29.010000"],["2024-07-25T07:15:30.010000"],["2024-07-25T07:15:31.010000"],["2024-07-25T07:15:32.010000"],["2024-07-25T07:15:33.010000"],["2024-07-25T07:15:34.010000"],["2024-07-25T07:15:35.010000"],["2024-07-25T07:15:36.010000"],["2024-07-25T07:15:37.010000"],["2024-07-25T07:15:38.010000"],["2024-07-25T07:15:39.010000"],["2024-07-25T07:15:40.010000"],["2024-07-25T07:15:41.010000"],["2024-07-25T07:15:42.010000"],["2024-07-25T07:15:43.010000"],["2024-07-25T07:15:44.010000"],["2024-07-25T07:15:45.010000"],["2024-07-25T07:15:46.010000"],["2024-07-25T07:15:47.010000"],["2024-07-25T07:15:48.010000"],["2024-07-25T07:15:49.010000"],["2024-07-25T07:15:50.010000"],["2024-07-25T07:15:51.010000"],["2024-07-25T07:15:52.010000"],["2024-07-25T07:15:53.010000"],["2024-07-25T07:15:54.010000"],["2024-07-25T07:15:55.010000"],["2024-07-25T07:15:56.010000"],["2024-07-25T07:15:57.010000"],["2024-07-25T07:15:58.010000"],["2024-07-25T07:15:59.010000"],["2024-07-25T07:16:00.010000"],["2024-07-25T07:16:01.010000"],["2024-07-25T07:16:02.010000"],["2024-07-25T07:16:03.010000"],["2024-07-25T07:16:04.010000"],["2024-07-25T07:16:05.010000"],["2024-07-25T07:16:06.010000"],["2024-07-25T07:16:07.010000"],["2024-07-25T07:16:08.010000"],["2024-07-25T07:16:09.010000"],["2024-07-25T07:16:10.010000"],["2024-07-25T07:16:11.010000"],["2024-07-25T07:16:12.010000"],["2024-07-25T07:16:13.010000"],["2024-07-25T07:16:14.010000"],["2024-07-25T07:16:15.010000"],["2024-07-25T07:16:16.010000"],["2024-07-25T07:16:17.010000"],["2024-07-25T07:16:18.010000"],["2024-07-25T07:16:19.010000"],["2024-07-25T07:16:20.010000"],["2024-07-25T07:16:21.010000"],["2024-07-25T07:16:22.010000"],["2024-07-25T07:16:23.010000"],["2024-07-25T07:16:24.010000"],["2024-07-25T07:16:25.010000"],["2024-07-25T07:16:26.010000"],["2024-07-25T07:16:27.010000"],["2024-07-25T07:16:28.010000"],["2024-07-25T07:16:29.010000"],["2024-07-25T07:16:30.010000"],["2024-07-25T07:16:31.010000"],["2024-07-25T07:16:32.010000"],["2024-07-25T07:16:33.010000"],["2024-07-25T07:16:34.010000"],["2024-07-25T07:16:35.010000"],["2024-07-25T07:16:36.010000"],["2024-07-25T07:16:37.010000"],["2024-07-25T07:16:38.010000"],["2024-07-25T07:16:39.010000"],["2024-07-25T07:16:40.010000"],["2024-07-25T07:16:41.010000"],["2024-07-25T07:16:42.010000"],["2024-07-25T07:16:43.010000"],["2024-07-25T07:16:44.010000"],["2024-07-25T07:16:45.010000"],["2024-07-25T07:16:46.010000"],["2024-07-25T07:16:47.010000"],["2024-07-25T07:16:48.010000"],["2024-07-25T07:16:49.010000"],["2024-07-25T07:16:50.010000"],["2024-07-25T07:16:51.010000"],["2024-07-25T07:16:52.010000"],["2024-07-25T07:16:53.010000"],["2024-07-25T07:16:54.010000"],["2024-07-25T07:16:55.010000"],["2024-07-25T07:16:56.010000"],["2024-07-25T07:16:57.010000"],["2024-07-25T07:16:58.010000"],["2024-07-25T07:16:59.010000"],["2024-07-25T07:17:00.010000"],["2024-07-25T07:17:01.010000"],["2024-07-25T07:17:02.010000"],["2024-07-25T07:17:03.010000"],["2024-07-25T07:17:04.010000"],["2024-07-25T07:17:05.010000"],["2024-07-25T07:17:06.010000"],["2024-07-25T07:17:07.010000"],["2024-07-25T07:17:08.010000"],["2024-07-25T07:17:09.010000"],["2024-07-25T07:17:10.010000"],["2024-07-25T07:17:11.010000"],["2024-07-25T07:17:12.010000"],["2024-07-25T07:17:13.010000"],["2024-07-25T07:17:14.010000"],["2024-07-25T07:17:15.010000"],["2024-07-25T07:17:16.010000"],["2024-07-25T07:17:17.010000"],["2024-07-25T07:17:18.010000"],["2024-07-25T07:17:19.010000"],["2024-07-25T07:17:20.010000"],["2024-07-25T07:17:21.010000"],["2024-07-25T07:17:22.010000"],["2024-07-25T07:17:23.010000"],["2024-07-25T07:17:24.010000"],["2024-07-25T07:17:25.010000"],["2024-07-25T07:17:26.010000"],["2024-07-25T07:17:27.010000"],["2024-07-25T07:17:28.010000"],["2024-07-25T07:17:29.010000"],["2024-07-25T07:17:30.010000"],["2024-07-25T07:17:31.010000"],["2024-07-25T07:17:32.010000"],["2024-07-25T07:17:33.010000"],["2024-07-25T07:17:34.010000"],["2024-07-25T07:17:35.010000"],["2024-07-25T07:17:36.010000"],["2024-07-25T07:17:37.010000"],["2024-07-25T07:17:38.010000"],["2024-07-25T07:17:39.010000"],["2024-07-25T07:17:40.010000"],["2024-07-25T07:17:41.010000"],["2024-07-25T07:17:42.010000"],["2024-07-25T07:17:43.010000"],["2024-07-25T07:17:44.010000"],["2024-07-25T07:17:45.010000"],["2024-07-25T07:17:46.010000"],["2024-07-25T07:17:47.010000"],["2024-07-25T07:17:48.010000"],["2024-07-25T07:17:49.010000"],["2024-07-25T07:17:50.010000"],["2024-07-25T07:17:51.010000"],["2024-07-25T07:17:52.010000"],["2024-07-25T07:17:53.010000"],["2024-07-25T07:17:54.010000"],["2024-07-25T07:17:55.010000"],["2024-07-25T07:17:56.010000"],["2024-07-25T07:17:57.010000"],["2024-07-25T07:17:58.010000"],["2024-07-25T07:17:59.010000"],["2024-07-25T07:18:00.010000"],["2024-07-25T07:18:01.010000"],["2024-07-25T07:18:02.010000"],["2024-07-25T07:18:03.010000"],["2024-07-25T07:18:04.010000"],["2024-07-25T07:18:05.010000"],["2024-07-25T07:18:06.010000"],["2024-07-25T07:18:07.010000"],["2024-07-25T07:18:08.010000"],["2024-07-25T07:18:09.010000"],["2024-07-25T07:18:10.010000"],["2024-07-25T07:18:11.010000"],["2024-07-25T07:18:12.010000"],["2024-07-25T07:18:13.010000"],["2024-07-25T07:18:14.010000"],["2024-07-25T07:18:15.010000"],["2024-07-25T07:18:16.010000"],["2024-07-25T07:18:17.010000"],["2024-07-25T07:18:18.010000"],["2024-07-25T07:18:19.010000"],["2024-07-25T07:18:20.010000"],["2024-07-25T07:18:21.010000"],["2024-07-25T07:18:22.010000"],["2024-07-25T07:18:23.010000"],["2024-07-25T07:18:24.010000"],["2024-07-25T07:18:25.010000"],["2024-07-25T07:18:26.010000"],["2024-07-25T07:18:27.010000"],["2024-07-25T07:18:28.010000"],["2024-07-25T07:18:29.010000"],["2024-07-25T07:18:30.010000"],["2024-07-25T07:18:31.010000"],["2024-07-25T07:18:32.010000"],["2024-07-25T07:18:33.010000"],["2024-07-25T07:18:34.010000"],["2024-07-25T07:18:35.010000"],["2024-07-25T07:18:36.010000"],["2024-07-25T07:18:37.010000"],["2024-07-25T07:18:38.010000"],["2024-07-25T07:18:39.010000"],["2024-07-25T07:18:40.010000"],["2024-07-25T07:18:41.010000"],["2024-07-25T07:18:42.010000"],["2024-07-25T07:18:43.010000"],["2024-07-25T07:18:44.010000"],["2024-07-25T07:18:45.010000"],["2024-07-25T07:18:46.010000"],["2024-07-25T07:18:47.010000"],["2024-07-25T07:18:48.010000"],["2024-07-25T07:18:49.010000"],["2024-07-25T07:18:50.010000"],["2024-07-25T07:18:51.010000"],["2024-07-25T07:18:52.010000"],["2024-07-25T07:18:53.010000"],["2024-07-25T07:18:54.010000"],["2024-07-25T07:18:55.010000"],["2024-07-25T07:18:56.010000"],["2024-07-25T07:18:57.010000"],["2024-07-25T07:18:58.010000"],["2024-07-25T07:18:59.010000"],["2024-07-25T07:19:00.010000"],["2024-07-25T07:19:01.010000"],["2024-07-25T07:19:02.010000"],["2024-07-25T07:19:03.010000"],["2024-07-25T07:19:04.010000"],["2024-07-25T07:19:05.010000"],["2024-07-25T07:19:06.010000"],["2024-07-25T07:19:07.010000"],["2024-07-25T07:19:08.010000"],["2024-07-25T07:19:09.010000"],["2024-07-25T07:19:10.010000"],["2024-07-25T07:19:11.010000"],["2024-07-25T07:19:12.010000"],["2024-07-25T07:19:13.010000"],["2024-07-25T07:19:14.010000"],["2024-07-25T07:19:15.010000"],["2024-07-25T07:19:16.010000"],["2024-07-25T07:19:17.010000"],["2024-07-25T07:19:18.010000"],["2024-07-25T07:19:19.010000"],["2024-07-25T07:19:20.010000"],["2024-07-25T07:19:21.010000"],["2024-07-25T07:19:22.010000"],["2024-07-25T07:19:23.010000"],["2024-07-25T07:19:24.010000"],["2024-07-25T07:19:25.010000"],["2024-07-25T07:19:26.010000"],["2024-07-25T07:19:27.010000"],["2024-07-25T07:19:28.010000"],["2024-07-25T07:19:29.010000"],["2024-07-25T07:19:30.010000"],["2024-07-25T07:19:31.010000"],["2024-07-25T07:19:32.010000"],["2024-07-25T07:19:33.010000"],["2024-07-25T07:19:34.010000"],["2024-07-25T07:19:35.010000"],["2024-07-25T07:19:36.010000"],["2024-07-25T07:19:37.010000"],["2024-07-25T07:19:38.010000"],["2024-07-25T07:19:39.010000"],["2024-07-25T07:19:40.010000"],["2024-07-25T07:19:41.010000"],["2024-07-25T07:19:42.010000"],["2024-07-25T07:19:43.010000"],["2024-07-25T07:19:44.010000"],["2024-07-25T07:19:45.010000"],["2024-07-25T07:19:46.010000"],["2024-07-25T07:19:47.010000"],["2024-07-25T07:19:48.010000"],["2024-07-25T07:19:49.010000"],["2024-07-25T07:19:50.010000"],["2024-07-25T07:19:51.010000"],["2024-07-25T07:19:52.010000"],["2024-07-25T07:19:53.010000"],["2024-07-25T07:19:54.010000"],["2024-07-25T07:19:55.010000"],["2024-07-25T07:19:56.010000"],["2024-07-25T07:19:57.010000"],["2024-07-25T07:19:58.010000"],["2024-07-25T07:19:59.010000"],["2024-07-25T07:20:00.010000"],["2024-07-25T07:20:01.010000"],["2024-07-25T07:20:02.010000"],["2024-07-25T07:20:03.010000"],["2024-07-25T07:20:04.010000"],["2024-07-25T07:20:05.010000"],["2024-07-25T07:20:06.010000"],["2024-07-25T07:20:07.010000"],["2024-07-25T07:20:08.010000"],["2024-07-25T07:20:09.010000"],["2024-07-25T07:20:10.010000"],["2024-07-25T07:20:11.010000"],["2024-07-25T07:20:12.010000"],["2024-07-25T07:20:13.010000"],["2024-07-25T07:20:14.010000"],["2024-07-25T07:20:15.010000"],["2024-07-25T07:20:16.010000"],["2024-07-25T07:20:17.010000"],["2024-07-25T07:20:18.010000"],["2024-07-25T07:20:19.010000"],["2024-07-25T07:20:20.010000"],["2024-07-25T07:20:21.010000"],["2024-07-25T07:20:22.010000"],["2024-07-25T07:20:23.010000"],["2024-07-25T07:20:24.010000"],["2024-07-25T07:20:25.010000"],["2024-07-25T07:20:26.010000"],["2024-07-25T07:20:27.010000"],["2024-07-25T07:20:28.010000"],["2024-07-25T07:20:29.010000"],["2024-07-25T07:20:30.010000"],["2024-07-25T07:20:31.010000"],["2024-07-25T07:20:32.010000"],["2024-07-25T07:20:33.010000"],["2024-07-25T07:20:34.010000"],["2024-07-25T07:20:35.010000"],["2024-07-25T07:20:36.010000"],["2024-07-25T07:20:37.010000"],["2024-07-25T07:20:38.010000"],["2024-07-25T07:20:39.010000"],["2024-07-25T07:20:40.010000"],["2024-07-25T07:20:41.010000"],["2024-07-25T07:20:42.010000"],["2024-07-25T07:20:43.010000"],["2024-07-25T07:20:44.010000"],["2024-07-25T07:20:45.010000"],["2024-07-25T07:20:46.010000"],["2024-07-25T07:20:47.010000"],["2024-07-25T07:20:48.010000"],["2024-07-25T07:20:49.010000"],["2024-07-25T07:20:50.010000"],["2024-07-25T07:20:51.010000"],["2024-07-25T07:20:52.010000"],["2024-07-25T07:20:53.010000"],["2024-07-25T07:20:54.010000"],["2024-07-25T07:20:55.010000"],["2024-07-25T07:20:56.010000"],["2024-07-25T07:20:57.010000"],["2024-07-25T07:20:58.010000"],["2024-07-25T07:20:59.010000"],["2024-07-25T07:21:00.010000"],["2024-07-25T07:21:01.010000"],["2024-07-25T07:21:02.010000"],["2024-07-25T07:21:03.010000"],["2024-07-25T07:21:04.010000"],["2024-07-25T07:21:05.010000"],["2024-07-25T07:21:06.010000"],["2024-07-25T07:21:07.010000"],["2024-07-25T07:21:08.010000"],["2024-07-25T07:21:09.010000"],["2024-07-25T07:21:10.010000"],["2024-07-25T07:21:11.010000"],["2024-07-25T07:21:12.010000"],["2024-07-25T07:21:13.010000"],["2024-07-25T07:21:14.010000"],["2024-07-25T07:21:15.010000"],["2024-07-25T07:21:16.010000"],["2024-07-25T07:21:17.010000"],["2024-07-25T07:21:18.010000"],["2024-07-25T07:21:19.010000"],["2024-07-25T07:21:20.010000"],["2024-07-25T07:21:21.010000"],["2024-07-25T07:21:22.010000"],["2024-07-25T07:21:23.010000"],["2024-07-25T07:21:24.010000"],["2024-07-25T07:21:25.010000"],["2024-07-25T07:21:26.010000"],["2024-07-25T07:21:27.010000"],["2024-07-25T07:21:28.010000"],["2024-07-25T07:21:29.010000"],["2024-07-25T07:21:30.010000"],["2024-07-25T07:21:31.010000"],["2024-07-25T07:21:32.010000"],["2024-07-25T07:21:33.010000"],["2024-07-25T07:21:34.010000"],["2024-07-25T07:21:35.010000"],["2024-07-25T07:21:36.010000"],["2024-07-25T07:21:37.010000"],["2024-07-25T07:21:38.010000"],["2024-07-25T07:21:39.010000"],["2024-07-25T07:21:40.010000"],["2024-07-25T07:21:41.010000"],["2024-07-25T07:21:42.010000"],["2024-07-25T07:21:43.010000"],["2024-07-25T07:21:44.010000"],["2024-07-25T07:21:45.010000"],["2024-07-25T07:21:46.010000"],["2024-07-25T07:21:47.010000"],["2024-07-25T07:21:48.010000"],["2024-07-25T07:21:49.010000"],["2024-07-25T07:21:50.010000"],["2024-07-25T07:21:51.010000"],["2024-07-25T07:21:52.010000"],["2024-07-25T07:21:53.010000"],["2024-07-25T07:21:54.010000"],["2024-07-25T07:21:55.010000"],["2024-07-25T07:21:56.010000"],["2024-07-25T07:21:57.010000"],["2024-07-25T07:21:58.010000"],["2024-07-25T07:21:59.010000"],["2024-07-25T07:22:00.010000"],["2024-07-25T07:22:01.010000"],["2024-07-25T07:22:02.010000"],["2024-07-25T07:22:03.010000"],["2024-07-25T07:22:04.010000"],["2024-07-25T07:22:05.010000"],["2024-07-25T07:22:06.010000"],["2024-07-25T07:22:07.010000"],["2024-07-25T07:22:08.010000"],["2024-07-25T07:22:09.010000"],["2024-07-25T07:22:10.010000"],["2024-07-25T07:22:11.010000"],["2024-07-25T07:22:12.010000"],["2024-07-25T07:22:13.010000"],["2024-07-25T07:22:14.010000"],["2024-07-25T07:22:15.010000"],["2024-07-25T07:22:16.010000"],["2024-07-25T07:22:17.010000"],["2024-07-25T07:22:18.010000"],["2024-07-25T07:22:19.010000"],["2024-07-25T07:22:20.010000"],["2024-07-25T07:22:21.010000"],["2024-07-25T07:22:22.010000"],["2024-07-25T07:22:23.010000"],["2024-07-25T07:22:24.010000"],["2024-07-25T07:22:25.010000"],["2024-07-25T07:22:26.010000"],["2024-07-25T07:22:27.010000"],["2024-07-25T07:22:28.010000"],["2024-07-25T07:22:29.010000"],["2024-07-25T07:22:30.010000"],["2024-07-25T07:22:31.010000"],["2024-07-25T07:22:32.010000"],["2024-07-25T07:22:33.010000"],["2024-07-25T07:22:34.010000"],["2024-07-25T07:22:35.010000"],["2024-07-25T07:22:36.010000"],["2024-07-25T07:22:37.010000"],["2024-07-25T07:22:38.010000"],["2024-07-25T07:22:39.010000"],["2024-07-25T07:22:40.010000"],["2024-07-25T07:22:41.010000"],["2024-07-25T07:22:42.010000"],["2024-07-25T07:22:43.010000"],["2024-07-25T07:22:44.010000"],["2024-07-25T07:22:45.010000"],["2024-07-25T07:22:46.010000"],["2024-07-25T07:22:47.010000"],["2024-07-25T07:22:48.010000"],["2024-07-25T07:22:49.010000"],["2024-07-25T07:22:50.010000"],["2024-07-25T07:22:51.010000"],["2024-07-25T07:22:52.010000"],["2024-07-25T07:22:53.010000"],["2024-07-25T07:22:54.010000"],["2024-07-25T07:22:55.010000"],["2024-07-25T07:22:56.010000"],["2024-07-25T07:22:57.010000"],["2024-07-25T07:22:58.010000"],["2024-07-25T07:22:59.010000"],["2024-07-25T07:23:00.010000"],["2024-07-25T07:23:01.010000"],["2024-07-25T07:23:02.010000"],["2024-07-25T07:23:03.010000"],["2024-07-25T07:23:04.010000"],["2024-07-25T07:23:05.010000"],["2024-07-25T07:23:06.010000"],["2024-07-25T07:23:07.010000"],["2024-07-25T07:23:08.010000"],["2024-07-25T07:23:09.010000"],["2024-07-25T07:23:10.010000"],["2024-07-25T07:23:11.010000"],["2024-07-25T07:23:12.010000"],["2024-07-25T07:23:13.010000"],["2024-07-25T07:23:14.010000"],["2024-07-25T07:23:15.010000"],["2024-07-25T07:23:16.010000"],["2024-07-25T07:23:17.010000"],["2024-07-25T07:23:18.010000"],["2024-07-25T07:23:19.010000"],["2024-07-25T07:23:20.010000"],["2024-07-25T07:23:21.010000"],["2024-07-25T07:23:22.010000"],["2024-07-25T07:23:23.010000"],["2024-07-25T07:23:24.010000"],["2024-07-25T07:23:25.010000"],["2024-07-25T07:23:26.010000"],["2024-07-25T07:23:27.010000"],["2024-07-25T07:23:28.010000"],["2024-07-25T07:23:29.010000"],["2024-07-25T07:23:30.010000"],["2024-07-25T07:23:31.010000"],["2024-07-25T07:23:32.010000"],["2024-07-25T07:23:33.010000"],["2024-07-25T07:23:34.010000"],["2024-07-25T07:23:35.010000"],["2024-07-25T07:23:36.010000"],["2024-07-25T07:23:37.010000"],["2024-07-25T07:23:38.010000"],["2024-07-25T07:23:39.010000"],["2024-07-25T07:23:40.010000"],["2024-07-25T07:23:41.010000"],["2024-07-25T07:23:42.010000"],["2024-07-25T07:23:43.010000"],["2024-07-25T07:23:44.010000"],["2024-07-25T07:23:45.010000"],["2024-07-25T07:23:46.010000"],["2024-07-25T07:23:47.010000"],["2024-07-25T07:23:48.010000"],["2024-07-25T07:23:49.010000"],["2024-07-25T07:23:50.010000"],["2024-07-25T07:23:51.010000"],["2024-07-25T07:23:52.010000"],["2024-07-25T07:23:53.010000"],["2024-07-25T07:23:54.010000"],["2024-07-25T07:23:55.010000"],["2024-07-25T07:23:56.010000"],["2024-07-25T07:23:57.010000"],["2024-07-25T07:23:58.010000"],["2024-07-25T07:23:59.010000"],["2024-07-25T07:24:00.010000"],["2024-07-25T07:24:01.010000"],["2024-07-25T07:24:02.010000"],["2024-07-25T07:24:03.010000"],["2024-07-25T07:24:04.010000"],["2024-07-25T07:24:05.010000"],["2024-07-25T07:24:06.010000"],["2024-07-25T07:24:07.010000"],["2024-07-25T07:24:08.010000"],["2024-07-25T07:24:09.010000"],["2024-07-25T07:24:10.010000"],["2024-07-25T07:24:11.010000"],["2024-07-25T07:24:12.010000"],["2024-07-25T07:24:13.010000"],["2024-07-25T07:24:14.010000"],["2024-07-25T07:24:15.010000"],["2024-07-25T07:24:16.010000"],["2024-07-25T07:24:17.010000"],["2024-07-25T07:24:18.010000"],["2024-07-25T07:24:19.010000"],["2024-07-25T07:24:20.010000"],["2024-07-25T07:24:21.010000"],["2024-07-25T07:24:22.010000"],["2024-07-25T07:24:23.010000"],["2024-07-25T07:24:24.010000"],["2024-07-25T07:24:25.010000"],["2024-07-25T07:24:26.010000"],["2024-07-25T07:24:27.010000"],["2024-07-25T07:24:28.010000"],["2024-07-25T07:24:29.010000"],["2024-07-25T07:24:30.010000"],["2024-07-25T07:24:31.010000"],["2024-07-25T07:24:32.010000"],["2024-07-25T07:24:33.010000"],["2024-07-25T07:24:34.010000"],["2024-07-25T07:24:35.010000"],["2024-07-25T07:24:36.010000"],["2024-07-25T07:24:37.010000"],["2024-07-25T07:24:38.010000"],["2024-07-25T07:24:39.010000"],["2024-07-25T07:24:40.010000"],["2024-07-25T07:24:41.010000"],["2024-07-25T07:24:42.010000"],["2024-07-25T07:24:43.010000"],["2024-07-25T07:24:44.010000"],["2024-07-25T07:24:45.010000"],["2024-07-25T07:24:46.010000"],["2024-07-25T07:24:47.010000"],["2024-07-25T07:24:48.010000"],["2024-07-25T07:24:49.010000"],["2024-07-25T07:24:50.010000"],["2024-07-25T07:24:51.010000"],["2024-07-25T07:24:52.010000"],["2024-07-25T07:24:53.010000"],["2024-07-25T07:24:54.010000"],["2024-07-25T07:24:55.010000"],["2024-07-25T07:24:56.010000"],["2024-07-25T07:24:57.010000"],["2024-07-25T07:24:58.010000"],["2024-07-25T07:24:59.010000"],["2024-07-25T07:25:00.010000"],["2024-07-25T07:25:01.010000"],["2024-07-25T07:25:02.010000"],["2024-07-25T07:25:03.010000"],["2024-07-25T07:25:04.010000"],["2024-07-25T07:25:05.010000"],["2024-07-25T07:25:06.010000"],["2024-07-25T07:25:07.010000"],["2024-07-25T07:25:08.010000"],["2024-07-25T07:25:09.010000"],["2024-07-25T07:25:10.010000"],["2024-07-25T07:25:11.010000"],["2024-07-25T07:25:12.010000"],["2024-07-25T07:25:13.010000"],["2024-07-25T07:25:14.010000"],["2024-07-25T07:25:15.010000"],["2024-07-25T07:25:16.010000"],["2024-07-25T07:25:17.010000"],["2024-07-25T07:25:18.010000"],["2024-07-25T07:25:19.010000"],["2024-07-25T07:25:20.010000"],["2024-07-25T07:25:21.010000"],["2024-07-25T07:25:22.010000"],["2024-07-25T07:25:23.010000"],["2024-07-25T07:25:24.010000"],["2024-07-25T07:25:25.010000"],["2024-07-25T07:25:26.010000"],["2024-07-25T07:25:27.010000"],["2024-07-25T07:25:28.010000"],["2024-07-25T07:25:29.010000"],["2024-07-25T07:25:30.010000"],["2024-07-25T07:25:31.010000"],["2024-07-25T07:25:32.010000"],["2024-07-25T07:25:33.010000"],["2024-07-25T07:25:34.010000"],["2024-07-25T07:25:35.010000"],["2024-07-25T07:25:36.010000"],["2024-07-25T07:25:37.010000"],["2024-07-25T07:25:38.010000"],["2024-07-25T07:25:39.010000"],["2024-07-25T07:25:40.010000"],["2024-07-25T07:25:41.010000"],["2024-07-25T07:25:42.010000"],["2024-07-25T07:25:43.010000"],["2024-07-25T07:25:44.010000"],["2024-07-25T07:25:45.010000"],["2024-07-25T07:25:46.010000"],["2024-07-25T07:25:47.010000"],["2024-07-25T07:25:48.010000"],["2024-07-25T07:25:49.010000"],["2024-07-25T07:25:50.010000"],["2024-07-25T07:25:51.010000"],["2024-07-25T07:25:52.010000"],["2024-07-25T07:25:53.010000"],["2024-07-25T07:25:54.010000"],["2024-07-25T07:25:55.010000"],["2024-07-25T07:25:56.010000"],["2024-07-25T07:25:57.010000"],["2024-07-25T07:25:58.010000"],["2024-07-25T07:25:59.010000"],["2024-07-25T07:26:00.010000"],["2024-07-25T07:26:01.010000"],["2024-07-25T07:26:02.010000"],["2024-07-25T07:26:03.010000"],["2024-07-25T07:26:04.010000"],["2024-07-25T07:26:05.010000"],["2024-07-25T07:26:06.010000"],["2024-07-25T07:26:07.010000"],["2024-07-25T07:26:08.010000"],["2024-07-25T07:26:09.010000"],["2024-07-25T07:26:10.010000"],["2024-07-25T07:26:11.010000"],["2024-07-25T07:26:12.010000"],["2024-07-25T07:26:13.010000"],["2024-07-25T07:26:14.010000"],["2024-07-25T07:26:15.010000"],["2024-07-25T07:26:16.010000"],["2024-07-25T07:26:17.010000"],["2024-07-25T07:26:18.010000"],["2024-07-25T07:26:19.010000"],["2024-07-25T07:26:20.010000"],["2024-07-25T07:26:21.010000"],["2024-07-25T07:26:22.010000"],["2024-07-25T07:26:23.010000"],["2024-07-25T07:26:24.010000"],["2024-07-25T07:26:25.010000"],["2024-07-25T07:26:26.010000"],["2024-07-25T07:26:27.010000"],["2024-07-25T07:26:28.010000"],["2024-07-25T07:26:29.010000"],["2024-07-25T07:26:30.010000"],["2024-07-25T07:26:31.010000"],["2024-07-25T07:26:32.010000"],["2024-07-25T07:26:33.010000"],["2024-07-25T07:26:34.010000"],["2024-07-25T07:26:35.010000"],["2024-07-25T07:26:36.010000"],["2024-07-25T07:26:37.010000"],["2024-07-25T07:26:38.010000"],["2024-07-25T07:26:39.010000"],["2024-07-25T07:26:40.010000"],["2024-07-25T07:26:41.010000"],["2024-07-25T07:26:42.010000"],["2024-07-25T07:26:43.010000"],["2024-07-25T07:26:44.010000"],["2024-07-25T07:26:45.010000"],["2024-07-25T07:26:46.010000"],["2024-07-25T07:26:47.010000"],["2024-07-25T07:26:48.010000"],["2024-07-25T07:26:49.010000"],["2024-07-25T07:26:50.010000"],["2024-07-25T07:26:51.010000"],["2024-07-25T07:26:52.010000"],["2024-07-25T07:26:53.010000"],["2024-07-25T07:26:54.010000"],["2024-07-25T07:26:55.010000"],["2024-07-25T07:26:56.010000"],["2024-07-25T07:26:57.010000"],["2024-07-25T07:26:58.010000"],["2024-07-25T07:26:59.010000"],["2024-07-25T07:27:00.010000"],["2024-07-25T07:27:01.010000"],["2024-07-25T07:27:02.010000"],["2024-07-25T07:27:03.010000"],["2024-07-25T07:27:04.010000"],["2024-07-25T07:27:05.010000"],["2024-07-25T07:27:06.010000"],["2024-07-25T07:27:07.010000"],["2024-07-25T07:27:08.010000"],["2024-07-25T07:27:09.010000"],["2024-07-25T07:27:10.010000"],["2024-07-25T07:27:11.010000"],["2024-07-25T07:27:12.010000"],["2024-07-25T07:27:13.010000"],["2024-07-25T07:27:14.010000"],["2024-07-25T07:27:15.010000"],["2024-07-25T07:27:16.010000"],["2024-07-25T07:27:17.010000"],["2024-07-25T07:27:18.010000"],["2024-07-25T07:27:19.010000"],["2024-07-25T07:27:20.010000"],["2024-07-25T07:27:21.010000"],["2024-07-25T07:27:22.010000"],["2024-07-25T07:27:23.010000"],["2024-07-25T07:27:24.010000"],["2024-07-25T07:27:25.010000"],["2024-07-25T07:27:26.010000"],["2024-07-25T07:27:27.010000"],["2024-07-25T07:27:28.010000"],["2024-07-25T07:27:29.010000"],["2024-07-25T07:27:30.010000"],["2024-07-25T07:27:31.010000"],["2024-07-25T07:27:32.010000"],["2024-07-25T07:27:33.010000"],["2024-07-25T07:27:34.010000"],["2024-07-25T07:27:35.010000"],["2024-07-25T07:27:36.010000"],["2024-07-25T07:27:37.010000"],["2024-07-25T07:27:38.010000"],["2024-07-25T07:27:39.010000"],["2024-07-25T07:27:40.010000"],["2024-07-25T07:27:41.010000"],["2024-07-25T07:27:42.010000"],["2024-07-25T07:27:43.010000"],["2024-07-25T07:27:44.010000"],["2024-07-25T07:27:45.010000"],["2024-07-25T07:27:46.010000"],["2024-07-25T07:27:47.010000"],["2024-07-25T07:27:48.010000"],["2024-07-25T07:27:49.010000"],["2024-07-25T07:27:50.010000"],["2024-07-25T07:27:51.010000"],["2024-07-25T07:27:52.010000"],["2024-07-25T07:27:53.010000"],["2024-07-25T07:27:54.010000"],["2024-07-25T07:27:55.010000"],["2024-07-25T07:27:56.010000"],["2024-07-25T07:27:57.010000"],["2024-07-25T07:27:58.010000"],["2024-07-25T07:27:59.010000"],["2024-07-25T07:28:00.010000"],["2024-07-25T07:28:01.010000"],["2024-07-25T07:28:02.010000"],["2024-07-25T07:28:03.010000"],["2024-07-25T07:28:04.010000"],["2024-07-25T07:28:05.010000"],["2024-07-25T07:28:06.010000"],["2024-07-25T07:28:07.010000"],["2024-07-25T07:28:08.010000"],["2024-07-25T07:28:09.010000"],["2024-07-25T07:28:10.010000"],["2024-07-25T07:28:11.010000"],["2024-07-25T07:28:12.010000"],["2024-07-25T07:28:13.010000"],["2024-07-25T07:28:14.010000"],["2024-07-25T07:28:15.010000"],["2024-07-25T07:28:16.010000"],["2024-07-25T07:28:17.010000"],["2024-07-25T07:28:18.010000"],["2024-07-25T07:28:19.010000"],["2024-07-25T07:28:20.010000"],["2024-07-25T07:28:21.010000"],["2024-07-25T07:28:22.010000"],["2024-07-25T07:28:23.010000"],["2024-07-25T07:28:24.010000"],["2024-07-25T07:28:25.010000"],["2024-07-25T07:28:26.010000"],["2024-07-25T07:28:27.010000"],["2024-07-25T07:28:28.010000"],["2024-07-25T07:28:29.010000"],["2024-07-25T07:28:30.010000"],["2024-07-25T07:28:31.010000"],["2024-07-25T07:28:32.010000"],["2024-07-25T07:28:33.010000"],["2024-07-25T07:28:34.010000"],["2024-07-25T07:28:35.010000"],["2024-07-25T07:28:36.010000"],["2024-07-25T07:28:37.010000"],["2024-07-25T07:28:38.010000"],["2024-07-25T07:28:39.010000"],["2024-07-25T07:28:40.010000"],["2024-07-25T07:28:41.010000"],["2024-07-25T07:28:42.010000"],["2024-07-25T07:28:43.010000"],["2024-07-25T07:28:44.010000"],["2024-07-25T07:28:45.010000"],["2024-07-25T07:28:46.010000"],["2024-07-25T07:28:47.010000"],["2024-07-25T07:28:48.010000"],["2024-07-25T07:28:49.010000"],["2024-07-25T07:28:50.010000"],["2024-07-25T07:28:51.010000"],["2024-07-25T07:28:52.010000"],["2024-07-25T07:28:53.010000"],["2024-07-25T07:28:54.010000"],["2024-07-25T07:28:55.010000"],["2024-07-25T07:28:56.010000"],["2024-07-25T07:28:57.010000"],["2024-07-25T07:28:58.010000"],["2024-07-25T07:28:59.010000"],["2024-07-25T07:29:00.010000"],["2024-07-25T07:29:01.010000"],["2024-07-25T07:29:02.010000"],["2024-07-25T07:29:03.010000"],["2024-07-25T07:29:04.010000"],["2024-07-25T07:29:05.010000"],["2024-07-25T07:29:06.010000"],["2024-07-25T07:29:07.010000"],["2024-07-25T07:29:08.010000"],["2024-07-25T07:29:09.010000"],["2024-07-25T07:29:10.010000"],["2024-07-25T07:29:11.010000"],["2024-07-25T07:29:12.010000"],["2024-07-25T07:29:13.010000"],["2024-07-25T07:29:14.010000"],["2024-07-25T07:29:15.010000"],["2024-07-25T07:29:16.010000"],["2024-07-25T07:29:17.010000"],["2024-07-25T07:29:18.010000"],["2024-07-25T07:29:19.010000"],["2024-07-25T07:29:20.010000"],["2024-07-25T07:29:21.010000"],["2024-07-25T07:29:22.010000"],["2024-07-25T07:29:23.010000"],["2024-07-25T07:29:24.010000"],["2024-07-25T07:29:25.010000"],["2024-07-25T07:29:26.010000"],["2024-07-25T07:29:27.010000"],["2024-07-25T07:29:28.010000"],["2024-07-25T07:29:29.010000"],["2024-07-25T07:29:30.010000"],["2024-07-25T07:29:31.010000"],["2024-07-25T07:29:32.010000"],["2024-07-25T07:29:33.010000"],["2024-07-25T07:29:34.010000"],["2024-07-25T07:29:35.010000"],["2024-07-25T07:29:36.010000"],["2024-07-25T07:29:37.010000"],["2024-07-25T07:29:38.010000"],["2024-07-25T07:29:39.010000"],["2024-07-25T07:29:40.010000"],["2024-07-25T07:29:41.010000"],["2024-07-25T07:29:42.010000"],["2024-07-25T07:29:43.010000"],["2024-07-25T07:29:44.010000"],["2024-07-25T07:29:45.010000"],["2024-07-25T07:29:46.010000"],["2024-07-25T07:29:47.010000"],["2024-07-25T07:29:48.010000"],["2024-07-25T07:29:49.010000"],["2024-07-25T07:29:50.010000"],["2024-07-25T07:29:51.010000"],["2024-07-25T07:29:52.010000"],["2024-07-25T07:29:53.010000"],["2024-07-25T07:29:54.010000"],["2024-07-25T07:29:55.010000"],["2024-07-25T07:29:56.010000"],["2024-07-25T07:29:57.010000"],["2024-07-25T07:29:58.010000"],["2024-07-25T07:29:59.010000"],["2024-07-25T07:30:00.010000"],["2024-07-25T07:30:01.010000"],["2024-07-25T07:30:02.010000"],["2024-07-25T07:30:03.010000"],["2024-07-25T07:30:04.010000"],["2024-07-25T07:30:05.010000"],["2024-07-25T07:30:06.010000"],["2024-07-25T07:30:07.010000"],["2024-07-25T07:30:08.010000"],["2024-07-25T07:30:09.010000"],["2024-07-25T07:30:10.010000"],["2024-07-25T07:30:11.010000"],["2024-07-25T07:30:12.010000"],["2024-07-25T07:30:13.010000"],["2024-07-25T07:30:14.010000"],["2024-07-25T07:30:15.010000"],["2024-07-25T07:30:16.010000"],["2024-07-25T07:30:17.010000"],["2024-07-25T07:30:18.010000"],["2024-07-25T07:30:19.010000"],["2024-07-25T07:30:20.010000"],["2024-07-25T07:30:21.010000"],["2024-07-25T07:30:22.010000"],["2024-07-25T07:30:23.010000"],["2024-07-25T07:30:24.010000"],["2024-07-25T07:30:25.010000"],["2024-07-25T07:30:26.010000"],["2024-07-25T07:30:27.010000"],["2024-07-25T07:30:28.010000"],["2024-07-25T07:30:29.010000"],["2024-07-25T07:30:30.010000"],["2024-07-25T07:30:31.010000"],["2024-07-25T07:30:32.010000"],["2024-07-25T07:30:33.010000"],["2024-07-25T07:30:34.010000"],["2024-07-25T07:30:35.010000"],["2024-07-25T07:30:36.010000"],["2024-07-25T07:30:37.010000"],["2024-07-25T07:30:38.010000"],["2024-07-25T07:30:39.010000"],["2024-07-25T07:30:40.010000"],["2024-07-25T07:30:41.010000"],["2024-07-25T07:30:42.010000"],["2024-07-25T07:30:43.010000"],["2024-07-25T07:30:44.010000"],["2024-07-25T07:30:45.010000"],["2024-07-25T07:30:46.010000"],["2024-07-25T07:30:47.010000"],["2024-07-25T07:30:48.010000"],["2024-07-25T07:30:49.010000"],["2024-07-25T07:30:50.010000"],["2024-07-25T07:30:51.010000"],["2024-07-25T07:30:52.010000"],["2024-07-25T07:30:53.010000"],["2024-07-25T07:30:54.010000"],["2024-07-25T07:30:55.010000"],["2024-07-25T07:30:56.010000"],["2024-07-25T07:30:57.010000"],["2024-07-25T07:30:58.010000"],["2024-07-25T07:30:59.010000"],["2024-07-25T07:31:00.010000"],["2024-07-25T07:31:01.010000"],["2024-07-25T07:31:02.010000"],["2024-07-25T07:31:03.010000"],["2024-07-25T07:31:04.010000"],["2024-07-25T07:31:05.010000"],["2024-07-25T07:31:06.010000"],["2024-07-25T07:31:07.010000"],["2024-07-25T07:31:08.010000"],["2024-07-25T07:31:09.010000"],["2024-07-25T07:31:10.010000"],["2024-07-25T07:31:11.010000"],["2024-07-25T07:31:12.010000"],["2024-07-25T07:31:13.010000"],["2024-07-25T07:31:14.010000"],["2024-07-25T07:31:15.010000"],["2024-07-25T07:31:16.010000"],["2024-07-25T07:31:17.010000"],["2024-07-25T07:31:18.010000"],["2024-07-25T07:31:19.010000"],["2024-07-25T07:31:20.010000"],["2024-07-25T07:31:21.010000"],["2024-07-25T07:31:22.010000"],["2024-07-25T07:31:23.010000"],["2024-07-25T07:31:24.010000"],["2024-07-25T07:31:25.010000"],["2024-07-25T07:31:26.010000"],["2024-07-25T07:31:27.010000"],["2024-07-25T07:31:28.010000"],["2024-07-25T07:31:29.010000"],["2024-07-25T07:31:30.010000"],["2024-07-25T07:31:31.010000"],["2024-07-25T07:31:32.010000"],["2024-07-25T07:31:33.010000"],["2024-07-25T07:31:34.010000"],["2024-07-25T07:31:35.010000"],["2024-07-25T07:31:36.010000"],["2024-07-25T07:31:37.010000"],["2024-07-25T07:31:38.010000"],["2024-07-25T07:31:39.010000"],["2024-07-25T07:31:40.010000"],["2024-07-25T07:31:41.010000"],["2024-07-25T07:31:42.010000"],["2024-07-25T07:31:43.010000"],["2024-07-25T07:31:44.010000"],["2024-07-25T07:31:45.010000"],["2024-07-25T07:31:46.010000"],["2024-07-25T07:31:47.010000"],["2024-07-25T07:31:48.010000"],["2024-07-25T07:31:49.010000"],["2024-07-25T07:31:50.010000"],["2024-07-25T07:31:51.010000"],["2024-07-25T07:31:52.010000"],["2024-07-25T07:31:53.010000"],["2024-07-25T07:31:54.010000"],["2024-07-25T07:31:55.010000"],["2024-07-25T07:31:56.010000"],["2024-07-25T07:31:57.010000"],["2024-07-25T07:31:58.010000"],["2024-07-25T07:31:59.010000"],["2024-07-25T07:32:00.010000"],["2024-07-25T07:32:01.010000"],["2024-07-25T07:32:02.010000"],["2024-07-25T07:32:03.010000"],["2024-07-25T07:32:04.010000"],["2024-07-25T07:32:05.010000"],["2024-07-25T07:32:06.010000"],["2024-07-25T07:32:07.010000"],["2024-07-25T07:32:08.010000"],["2024-07-25T07:32:09.010000"],["2024-07-25T07:32:10.010000"],["2024-07-25T07:32:11.010000"],["2024-07-25T07:32:12.010000"],["2024-07-25T07:32:13.010000"],["2024-07-25T07:32:14.010000"],["2024-07-25T07:32:15.010000"],["2024-07-25T07:32:16.010000"],["2024-07-25T07:32:17.010000"],["2024-07-25T07:32:18.010000"],["2024-07-25T07:32:19.010000"],["2024-07-25T07:32:20.010000"],["2024-07-25T07:32:21.010000"],["2024-07-25T07:32:22.010000"],["2024-07-25T07:32:23.010000"],["2024-07-25T07:32:24.010000"],["2024-07-25T07:32:25.010000"],["2024-07-25T07:32:26.010000"],["2024-07-25T07:32:27.010000"],["2024-07-25T07:32:28.010000"],["2024-07-25T07:32:29.010000"],["2024-07-25T07:32:30.010000"],["2024-07-25T07:32:31.010000"],["2024-07-25T07:32:32.010000"],["2024-07-25T07:32:33.010000"],["2024-07-25T07:32:34.010000"],["2024-07-25T07:32:35.010000"],["2024-07-25T07:32:36.010000"],["2024-07-25T07:32:37.010000"],["2024-07-25T07:32:38.010000"],["2024-07-25T07:32:39.010000"],["2024-07-25T07:32:40.010000"],["2024-07-25T07:32:41.010000"],["2024-07-25T07:32:42.010000"],["2024-07-25T07:32:43.010000"],["2024-07-25T07:32:44.010000"],["2024-07-25T07:32:45.010000"],["2024-07-25T07:32:46.010000"],["2024-07-25T07:32:47.010000"],["2024-07-25T07:32:48.010000"],["2024-07-25T07:32:49.010000"],["2024-07-25T07:32:50.010000"],["2024-07-25T07:32:51.010000"],["2024-07-25T07:32:52.010000"],["2024-07-25T07:32:53.010000"],["2024-07-25T07:32:54.010000"],["2024-07-25T07:32:55.010000"],["2024-07-25T07:32:56.010000"],["2024-07-25T07:32:57.010000"],["2024-07-25T07:32:58.010000"],["2024-07-25T07:32:59.010000"],["2024-07-25T07:33:00.010000"],["2024-07-25T07:33:01.010000"],["2024-07-25T07:33:02.010000"],["2024-07-25T07:33:03.010000"],["2024-07-25T07:33:04.010000"],["2024-07-25T07:33:05.010000"],["2024-07-25T07:33:06.010000"],["2024-07-25T07:33:07.010000"],["2024-07-25T07:33:08.010000"],["2024-07-25T07:33:09.010000"],["2024-07-25T07:33:10.010000"],["2024-07-25T07:33:11.010000"],["2024-07-25T07:33:12.010000"],["2024-07-25T07:33:13.010000"],["2024-07-25T07:33:14.010000"],["2024-07-25T07:33:15.010000"],["2024-07-25T07:33:16.010000"],["2024-07-25T07:33:17.010000"],["2024-07-25T07:33:18.010000"],["2024-07-25T07:33:19.010000"],["2024-07-25T07:33:20.010000"],["2024-07-25T07:33:21.010000"],["2024-07-25T07:33:22.010000"],["2024-07-25T07:33:23.010000"],["2024-07-25T07:33:24.010000"],["2024-07-25T07:33:25.010000"],["2024-07-25T07:33:26.010000"],["2024-07-25T07:33:27.010000"],["2024-07-25T07:33:28.010000"],["2024-07-25T07:33:29.010000"],["2024-07-25T07:33:30.010000"],["2024-07-25T07:33:31.010000"],["2024-07-25T07:33:32.010000"],["2024-07-25T07:33:33.010000"],["2024-07-25T07:33:34.010000"],["2024-07-25T07:33:35.010000"],["2024-07-25T07:33:36.010000"],["2024-07-25T07:33:37.010000"],["2024-07-25T07:33:38.010000"],["2024-07-25T07:33:39.010000"],["2024-07-25T07:33:40.010000"],["2024-07-25T07:33:41.010000"],["2024-07-25T07:33:42.010000"],["2024-07-25T07:33:43.010000"],["2024-07-25T07:33:44.010000"],["2024-07-25T07:33:45.010000"],["2024-07-25T07:33:46.010000"],["2024-07-25T07:33:47.010000"],["2024-07-25T07:33:48.010000"],["2024-07-25T07:33:49.010000"],["2024-07-25T07:33:50.010000"],["2024-07-25T07:33:51.010000"],["2024-07-25T07:33:52.010000"],["2024-07-25T07:33:53.010000"],["2024-07-25T07:33:54.010000"],["2024-07-25T07:33:55.010000"],["2024-07-25T07:33:56.010000"],["2024-07-25T07:33:57.010000"],["2024-07-25T07:33:58.010000"],["2024-07-25T07:33:59.010000"],["2024-07-25T07:34:00.010000"],["2024-07-25T07:34:01.010000"],["2024-07-25T07:34:02.010000"],["2024-07-25T07:34:03.010000"],["2024-07-25T07:34:04.010000"],["2024-07-25T07:34:05.010000"],["2024-07-25T07:34:06.010000"],["2024-07-25T07:34:07.010000"],["2024-07-25T07:34:08.010000"],["2024-07-25T07:34:09.010000"],["2024-07-25T07:34:10.010000"],["2024-07-25T07:34:11.010000"],["2024-07-25T07:34:12.010000"],["2024-07-25T07:34:13.010000"],["2024-07-25T07:34:14.010000"],["2024-07-25T07:34:15.010000"],["2024-07-25T07:34:16.010000"],["2024-07-25T07:34:17.010000"],["2024-07-25T07:34:18.010000"],["2024-07-25T07:34:19.010000"],["2024-07-25T07:34:20.010000"],["2024-07-25T07:34:21.010000"],["2024-07-25T07:34:22.010000"],["2024-07-25T07:34:23.010000"],["2024-07-25T07:34:24.010000"],["2024-07-25T07:34:25.010000"],["2024-07-25T07:34:26.010000"],["2024-07-25T07:34:27.010000"],["2024-07-25T07:34:28.010000"],["2024-07-25T07:34:29.010000"],["2024-07-25T07:34:30.010000"],["2024-07-25T07:34:31.010000"],["2024-07-25T07:34:32.010000"],["2024-07-25T07:34:33.010000"],["2024-07-25T07:34:34.010000"],["2024-07-25T07:34:35.010000"],["2024-07-25T07:34:36.010000"],["2024-07-25T07:34:37.010000"],["2024-07-25T07:34:38.010000"],["2024-07-25T07:34:39.010000"],["2024-07-25T07:34:40.010000"],["2024-07-25T07:34:41.010000"],["2024-07-25T07:34:42.010000"],["2024-07-25T07:34:43.010000"],["2024-07-25T07:34:44.010000"],["2024-07-25T07:34:45.010000"],["2024-07-25T07:34:46.010000"],["2024-07-25T07:34:47.010000"],["2024-07-25T07:34:48.010000"],["2024-07-25T07:34:49.010000"],["2024-07-25T07:34:50.010000"],["2024-07-25T07:34:51.010000"],["2024-07-25T07:34:52.010000"],["2024-07-25T07:34:53.010000"],["2024-07-25T07:34:54.010000"],["2024-07-25T07:34:55.010000"],["2024-07-25T07:34:56.010000"],["2024-07-25T07:34:57.010000"],["2024-07-25T07:34:58.010000"],["2024-07-25T07:34:59.010000"],["2024-07-25T07:35:00.010000"],["2024-07-25T07:35:01.010000"],["2024-07-25T07:35:02.010000"],["2024-07-25T07:35:03.010000"],["2024-07-25T07:35:04.010000"],["2024-07-25T07:35:05.010000"],["2024-07-25T07:35:06.010000"],["2024-07-25T07:35:07.010000"],["2024-07-25T07:35:08.010000"],["2024-07-25T07:35:09.010000"],["2024-07-25T07:35:10.010000"],["2024-07-25T07:35:11.010000"],["2024-07-25T07:35:12.010000"],["2024-07-25T07:35:13.010000"],["2024-07-25T07:35:14.010000"],["2024-07-25T07:35:15.010000"],["2024-07-25T07:35:16.010000"],["2024-07-25T07:35:17.010000"],["2024-07-25T07:35:18.010000"],["2024-07-25T07:35:19.010000"],["2024-07-25T07:35:20.010000"],["2024-07-25T07:35:21.010000"],["2024-07-25T07:35:22.010000"],["2024-07-25T07:35:23.010000"],["2024-07-25T07:35:24.010000"],["2024-07-25T07:35:25.010000"],["2024-07-25T07:35:26.010000"],["2024-07-25T07:35:27.010000"],["2024-07-25T07:35:28.010000"],["2024-07-25T07:35:29.010000"],["2024-07-25T07:35:30.010000"],["2024-07-25T07:35:31.010000"],["2024-07-25T07:35:32.010000"],["2024-07-25T07:35:33.010000"],["2024-07-25T07:35:34.010000"],["2024-07-25T07:35:35.010000"],["2024-07-25T07:35:36.010000"],["2024-07-25T07:35:37.010000"],["2024-07-25T07:35:38.010000"],["2024-07-25T07:35:39.010000"],["2024-07-25T07:35:40.010000"],["2024-07-25T07:35:41.010000"],["2024-07-25T07:35:42.010000"],["2024-07-25T07:35:43.010000"],["2024-07-25T07:35:44.010000"],["2024-07-25T07:35:45.010000"],["2024-07-25T07:35:46.010000"],["2024-07-25T07:35:47.010000"],["2024-07-25T07:35:48.010000"],["2024-07-25T07:35:49.010000"],["2024-07-25T07:35:50.010000"],["2024-07-25T07:35:51.010000"],["2024-07-25T07:35:52.010000"],["2024-07-25T07:35:53.010000"],["2024-07-25T07:35:54.010000"],["2024-07-25T07:35:55.010000"],["2024-07-25T07:35:56.010000"],["2024-07-25T07:35:57.010000"],["2024-07-25T07:35:58.010000"],["2024-07-25T07:35:59.010000"],["2024-07-25T07:36:00.010000"],["2024-07-25T07:36:01.010000"],["2024-07-25T07:36:02.010000"],["2024-07-25T07:36:03.010000"],["2024-07-25T07:36:04.010000"],["2024-07-25T07:36:05.010000"],["2024-07-25T07:36:06.010000"],["2024-07-25T07:36:07.010000"],["2024-07-25T07:36:08.010000"],["2024-07-25T07:36:09.010000"],["2024-07-25T07:36:10.010000"],["2024-07-25T07:36:11.010000"],["2024-07-25T07:36:12.010000"],["2024-07-25T07:36:13.010000"],["2024-07-25T07:36:14.010000"],["2024-07-25T07:36:15.010000"],["2024-07-25T07:36:16.010000"],["2024-07-25T07:36:17.010000"],["2024-07-25T07:36:18.010000"],["2024-07-25T07:36:19.010000"],["2024-07-25T07:36:20.010000"],["2024-07-25T07:36:21.010000"],["2024-07-25T07:36:22.010000"],["2024-07-25T07:36:23.010000"],["2024-07-25T07:36:24.010000"],["2024-07-25T07:36:25.010000"],["2024-07-25T07:36:26.010000"],["2024-07-25T07:36:27.010000"],["2024-07-25T07:36:28.010000"],["2024-07-25T07:36:29.010000"],["2024-07-25T07:36:30.010000"],["2024-07-25T07:36:31.010000"],["2024-07-25T07:36:32.010000"],["2024-07-25T07:36:33.010000"],["2024-07-25T07:36:34.010000"],["2024-07-25T07:36:35.010000"],["2024-07-25T07:36:36.010000"],["2024-07-25T07:36:37.010000"],["2024-07-25T07:36:38.010000"],["2024-07-25T07:36:39.010000"],["2024-07-25T07:36:40.010000"],["2024-07-25T07:36:41.010000"],["2024-07-25T07:36:42.010000"],["2024-07-25T07:36:43.010000"],["2024-07-25T07:36:44.010000"],["2024-07-25T07:36:45.010000"],["2024-07-25T07:36:46.010000"],["2024-07-25T07:36:47.010000"],["2024-07-25T07:36:48.010000"],["2024-07-25T07:36:49.010000"],["2024-07-25T07:36:50.010000"],["2024-07-25T07:36:51.010000"],["2024-07-25T07:36:52.010000"],["2024-07-25T07:36:53.010000"],["2024-07-25T07:36:54.010000"],["2024-07-25T07:36:55.010000"],["2024-07-25T07:36:56.010000"],["2024-07-25T07:36:57.010000"],["2024-07-25T07:36:58.010000"],["2024-07-25T07:36:59.010000"],["2024-07-25T07:37:00.010000"],["2024-07-25T07:37:01.010000"],["2024-07-25T07:37:02.010000"],["2024-07-25T07:37:03.010000"],["2024-07-25T07:37:04.010000"],["2024-07-25T07:37:05.010000"],["2024-07-25T07:37:06.010000"],["2024-07-25T07:37:07.010000"],["2024-07-25T07:37:08.010000"],["2024-07-25T07:37:09.010000"],["2024-07-25T07:37:10.010000"],["2024-07-25T07:37:11.010000"],["2024-07-25T07:37:12.010000"],["2024-07-25T07:37:13.010000"],["2024-07-25T07:37:14.010000"],["2024-07-25T07:37:15.010000"],["2024-07-25T07:37:16.010000"],["2024-07-25T07:37:17.010000"],["2024-07-25T07:37:18.010000"],["2024-07-25T07:37:19.010000"],["2024-07-25T07:37:20.010000"],["2024-07-25T07:37:21.010000"],["2024-07-25T07:37:22.010000"],["2024-07-25T07:37:23.010000"],["2024-07-25T07:37:24.010000"],["2024-07-25T07:37:25.010000"],["2024-07-25T07:37:26.010000"],["2024-07-25T07:37:27.010000"],["2024-07-25T07:37:28.010000"],["2024-07-25T07:37:29.010000"],["2024-07-25T07:37:30.010000"],["2024-07-25T07:37:31.010000"],["2024-07-25T07:37:32.010000"],["2024-07-25T07:37:33.010000"],["2024-07-25T07:37:34.010000"],["2024-07-25T07:37:35.010000"],["2024-07-25T07:37:36.010000"],["2024-07-25T07:37:37.010000"],["2024-07-25T07:37:38.010000"],["2024-07-25T07:37:39.010000"],["2024-07-25T07:37:40.010000"],["2024-07-25T07:37:41.010000"],["2024-07-25T07:37:42.010000"],["2024-07-25T07:37:43.010000"],["2024-07-25T07:37:44.010000"],["2024-07-25T07:37:45.010000"],["2024-07-25T07:37:46.010000"],["2024-07-25T07:37:47.010000"],["2024-07-25T07:37:48.010000"],["2024-07-25T07:37:49.010000"],["2024-07-25T07:37:50.010000"],["2024-07-25T07:37:51.010000"],["2024-07-25T07:37:52.010000"],["2024-07-25T07:37:53.010000"],["2024-07-25T07:37:54.010000"],["2024-07-25T07:37:55.010000"],["2024-07-25T07:37:56.010000"],["2024-07-25T07:37:57.010000"],["2024-07-25T07:37:58.010000"],["2024-07-25T07:37:59.010000"],["2024-07-25T07:38:00.010000"],["2024-07-25T07:38:01.010000"],["2024-07-25T07:38:02.010000"],["2024-07-25T07:38:03.010000"],["2024-07-25T07:38:04.010000"],["2024-07-25T07:38:05.010000"],["2024-07-25T07:38:06.010000"],["2024-07-25T07:38:07.010000"],["2024-07-25T07:38:08.010000"],["2024-07-25T07:38:09.010000"],["2024-07-25T07:38:10.010000"],["2024-07-25T07:38:11.010000"],["2024-07-25T07:38:12.010000"],["2024-07-25T07:38:13.010000"],["2024-07-25T07:38:14.010000"],["2024-07-25T07:38:15.010000"],["2024-07-25T07:38:16.010000"],["2024-07-25T07:38:17.010000"],["2024-07-25T07:38:18.010000"],["2024-07-25T07:38:19.010000"],["2024-07-25T07:38:20.010000"],["2024-07-25T07:38:21.010000"],["2024-07-25T07:38:22.010000"],["2024-07-25T07:38:23.010000"],["2024-07-25T07:38:24.010000"],["2024-07-25T07:38:25.010000"],["2024-07-25T07:38:26.010000"],["2024-07-25T07:38:27.010000"],["2024-07-25T07:38:28.010000"],["2024-07-25T07:38:29.010000"],["2024-07-25T07:38:30.010000"],["2024-07-25T07:38:31.010000"],["2024-07-25T07:38:32.010000"],["2024-07-25T07:38:33.010000"],["2024-07-25T07:38:34.010000"],["2024-07-25T07:38:35.010000"],["2024-07-25T07:38:36.010000"],["2024-07-25T07:38:37.010000"],["2024-07-25T07:38:38.010000"],["2024-07-25T07:38:39.010000"],["2024-07-25T07:38:40.010000"],["2024-07-25T07:38:41.010000"],["2024-07-25T07:38:42.010000"],["2024-07-25T07:38:43.010000"],["2024-07-25T07:38:44.010000"],["2024-07-25T07:38:45.010000"],["2024-07-25T07:38:46.010000"],["2024-07-25T07:38:47.010000"],["2024-07-25T07:38:48.010000"],["2024-07-25T07:38:49.010000"],["2024-07-25T07:38:50.010000"],["2024-07-25T07:38:51.010000"],["2024-07-25T07:38:52.010000"],["2024-07-25T07:38:53.010000"],["2024-07-25T07:38:54.010000"],["2024-07-25T07:38:55.010000"],["2024-07-25T07:38:56.010000"],["2024-07-25T07:38:57.010000"],["2024-07-25T07:38:58.010000"],["2024-07-25T07:38:59.010000"],["2024-07-25T07:39:00.010000"],["2024-07-25T07:39:01.010000"],["2024-07-25T07:39:02.010000"],["2024-07-25T07:39:03.010000"],["2024-07-25T07:39:04.010000"],["2024-07-25T07:39:05.010000"],["2024-07-25T07:39:06.010000"],["2024-07-25T07:39:07.010000"],["2024-07-25T07:39:08.010000"],["2024-07-25T07:39:09.010000"],["2024-07-25T07:39:10.010000"],["2024-07-25T07:39:11.010000"],["2024-07-25T07:39:12.010000"],["2024-07-25T07:39:13.010000"],["2024-07-25T07:39:14.010000"],["2024-07-25T07:39:15.010000"],["2024-07-25T07:39:16.010000"],["2024-07-25T07:39:17.010000"],["2024-07-25T07:39:18.010000"],["2024-07-25T07:39:19.010000"],["2024-07-25T07:39:20.010000"],["2024-07-25T07:39:21.010000"],["2024-07-25T07:39:22.010000"],["2024-07-25T07:39:23.010000"],["2024-07-25T07:39:24.010000"],["2024-07-25T07:39:25.010000"],["2024-07-25T07:39:26.010000"],["2024-07-25T07:39:27.010000"],["2024-07-25T07:39:28.010000"],["2024-07-25T07:39:29.010000"],["2024-07-25T07:39:30.010000"],["2024-07-25T07:39:31.010000"],["2024-07-25T07:39:32.010000"],["2024-07-25T07:39:33.010000"],["2024-07-25T07:39:34.010000"],["2024-07-25T07:39:35.010000"],["2024-07-25T07:39:36.010000"],["2024-07-25T07:39:37.010000"],["2024-07-25T07:39:38.010000"],["2024-07-25T07:39:39.010000"],["2024-07-25T07:39:40.010000"],["2024-07-25T07:39:41.010000"],["2024-07-25T07:39:42.010000"],["2024-07-25T07:39:43.010000"],["2024-07-25T07:39:44.010000"],["2024-07-25T07:39:45.010000"],["2024-07-25T07:39:46.010000"],["2024-07-25T07:39:47.010000"],["2024-07-25T07:39:48.010000"],["2024-07-25T07:39:49.010000"],["2024-07-25T07:39:50.010000"],["2024-07-25T07:39:51.010000"],["2024-07-25T07:39:52.010000"],["2024-07-25T07:39:53.010000"],["2024-07-25T07:39:54.010000"],["2024-07-25T07:39:55.010000"],["2024-07-25T07:39:56.010000"],["2024-07-25T07:39:57.010000"],["2024-07-25T07:39:58.010000"],["2024-07-25T07:39:59.010000"],["2024-07-25T07:40:00.010000"],["2024-07-25T07:40:01.010000"],["2024-07-25T07:40:02.010000"],["2024-07-25T07:40:03.010000"],["2024-07-25T07:40:04.010000"],["2024-07-25T07:40:05.010000"],["2024-07-25T07:40:06.010000"],["2024-07-25T07:40:07.010000"],["2024-07-25T07:40:08.010000"],["2024-07-25T07:40:09.010000"],["2024-07-25T07:40:10.010000"],["2024-07-25T07:40:11.010000"],["2024-07-25T07:40:12.010000"],["2024-07-25T07:40:13.010000"],["2024-07-25T07:40:14.010000"],["2024-07-25T07:40:15.010000"],["2024-07-25T07:40:16.010000"],["2024-07-25T07:40:17.010000"],["2024-07-25T07:40:18.010000"],["2024-07-25T07:40:19.010000"],["2024-07-25T07:40:20.010000"],["2024-07-25T07:40:21.010000"],["2024-07-25T07:40:22.010000"],["2024-07-25T07:40:23.010000"],["2024-07-25T07:40:24.010000"],["2024-07-25T07:40:25.010000"],["2024-07-25T07:40:26.010000"],["2024-07-25T07:40:27.010000"],["2024-07-25T07:40:28.010000"],["2024-07-25T07:40:29.010000"],["2024-07-25T07:40:30.010000"],["2024-07-25T07:40:31.010000"],["2024-07-25T07:40:32.010000"],["2024-07-25T07:40:33.010000"],["2024-07-25T07:40:34.010000"],["2024-07-25T07:40:35.010000"],["2024-07-25T07:40:36.010000"],["2024-07-25T07:40:37.010000"],["2024-07-25T07:40:38.010000"],["2024-07-25T07:40:39.010000"],["2024-07-25T07:40:40.010000"],["2024-07-25T07:40:41.010000"],["2024-07-25T07:40:42.010000"],["2024-07-25T07:40:43.010000"],["2024-07-25T07:40:44.010000"],["2024-07-25T07:40:45.010000"],["2024-07-25T07:40:46.010000"],["2024-07-25T07:40:47.010000"],["2024-07-25T07:40:48.010000"],["2024-07-25T07:40:49.010000"],["2024-07-25T07:40:50.010000"],["2024-07-25T07:40:51.010000"],["2024-07-25T07:40:52.010000"],["2024-07-25T07:40:53.010000"],["2024-07-25T07:40:54.010000"],["2024-07-25T07:40:55.010000"],["2024-07-25T07:40:56.010000"],["2024-07-25T07:40:57.010000"],["2024-07-25T07:40:58.010000"],["2024-07-25T07:40:59.010000"],["2024-07-25T07:41:00.010000"],["2024-07-25T07:41:01.010000"],["2024-07-25T07:41:02.010000"],["2024-07-25T07:41:03.010000"],["2024-07-25T07:41:04.010000"],["2024-07-25T07:41:05.010000"],["2024-07-25T07:41:06.010000"],["2024-07-25T07:41:07.010000"],["2024-07-25T07:41:08.010000"],["2024-07-25T07:41:09.010000"],["2024-07-25T07:41:10.010000"],["2024-07-25T07:41:11.010000"],["2024-07-25T07:41:12.010000"],["2024-07-25T07:41:13.010000"],["2024-07-25T07:41:14.010000"],["2024-07-25T07:41:15.010000"],["2024-07-25T07:41:16.010000"],["2024-07-25T07:41:17.010000"],["2024-07-25T07:41:18.010000"],["2024-07-25T07:41:19.010000"],["2024-07-25T07:41:20.010000"],["2024-07-25T07:41:21.010000"],["2024-07-25T07:41:22.010000"],["2024-07-25T07:41:23.010000"],["2024-07-25T07:41:24.010000"],["2024-07-25T07:41:25.010000"],["2024-07-25T07:41:26.010000"],["2024-07-25T07:41:27.010000"],["2024-07-25T07:41:28.010000"],["2024-07-25T07:41:29.010000"],["2024-07-25T07:41:30.010000"],["2024-07-25T07:41:31.010000"],["2024-07-25T07:41:32.010000"],["2024-07-25T07:41:33.010000"],["2024-07-25T07:41:34.010000"],["2024-07-25T07:41:35.010000"],["2024-07-25T07:41:36.010000"],["2024-07-25T07:41:37.010000"],["2024-07-25T07:41:38.010000"],["2024-07-25T07:41:39.010000"],["2024-07-25T07:41:40.010000"],["2024-07-25T07:41:41.010000"],["2024-07-25T07:41:42.010000"],["2024-07-25T07:41:43.010000"],["2024-07-25T07:41:44.010000"],["2024-07-25T07:41:45.010000"],["2024-07-25T07:41:46.010000"],["2024-07-25T07:41:47.010000"],["2024-07-25T07:41:48.010000"],["2024-07-25T07:41:49.010000"],["2024-07-25T07:41:50.010000"],["2024-07-25T07:41:51.010000"],["2024-07-25T07:41:52.010000"],["2024-07-25T07:41:53.010000"],["2024-07-25T07:41:54.010000"],["2024-07-25T07:41:55.010000"],["2024-07-25T07:41:56.010000"],["2024-07-25T07:41:57.010000"],["2024-07-25T07:41:58.010000"],["2024-07-25T07:41:59.010000"],["2024-07-25T07:42:00.010000"],["2024-07-25T07:42:01.010000"],["2024-07-25T07:42:02.010000"],["2024-07-25T07:42:03.010000"],["2024-07-25T07:42:04.010000"],["2024-07-25T07:42:05.010000"],["2024-07-25T07:42:06.010000"],["2024-07-25T07:42:07.010000"],["2024-07-25T07:42:08.010000"],["2024-07-25T07:42:09.010000"],["2024-07-25T07:42:10.010000"],["2024-07-25T07:42:11.010000"],["2024-07-25T07:42:12.010000"],["2024-07-25T07:42:13.010000"],["2024-07-25T07:42:14.010000"],["2024-07-25T07:42:15.010000"],["2024-07-25T07:42:16.010000"],["2024-07-25T07:42:17.010000"],["2024-07-25T07:42:18.010000"],["2024-07-25T07:42:19.010000"],["2024-07-25T07:42:20.010000"],["2024-07-25T07:42:21.010000"],["2024-07-25T07:42:22.010000"],["2024-07-25T07:42:23.010000"],["2024-07-25T07:42:24.010000"],["2024-07-25T07:42:25.010000"],["2024-07-25T07:42:26.010000"],["2024-07-25T07:42:27.010000"],["2024-07-25T07:42:28.010000"],["2024-07-25T07:42:29.010000"],["2024-07-25T07:42:30.010000"],["2024-07-25T07:42:31.010000"],["2024-07-25T07:42:32.010000"],["2024-07-25T07:42:33.010000"],["2024-07-25T07:42:34.010000"],["2024-07-25T07:42:35.010000"],["2024-07-25T07:42:36.010000"],["2024-07-25T07:42:37.010000"],["2024-07-25T07:42:38.010000"],["2024-07-25T07:42:39.010000"],["2024-07-25T07:42:40.010000"],["2024-07-25T07:42:41.010000"],["2024-07-25T07:42:42.010000"],["2024-07-25T07:42:43.010000"],["2024-07-25T07:42:44.010000"],["2024-07-25T07:42:45.010000"],["2024-07-25T07:42:46.010000"],["2024-07-25T07:42:47.010000"],["2024-07-25T07:42:48.010000"],["2024-07-25T07:42:49.010000"],["2024-07-25T07:42:50.010000"],["2024-07-25T07:42:51.010000"],["2024-07-25T07:42:52.010000"],["2024-07-25T07:42:53.010000"],["2024-07-25T07:42:54.010000"],["2024-07-25T07:42:55.010000"],["2024-07-25T07:42:56.010000"],["2024-07-25T07:42:57.010000"],["2024-07-25T07:42:58.010000"],["2024-07-25T07:42:59.010000"],["2024-07-25T07:43:00.010000"],["2024-07-25T07:43:01.010000"],["2024-07-25T07:43:02.010000"],["2024-07-25T07:43:03.010000"],["2024-07-25T07:43:04.010000"],["2024-07-25T07:43:05.010000"],["2024-07-25T07:43:06.010000"],["2024-07-25T07:43:07.010000"],["2024-07-25T07:43:08.010000"],["2024-07-25T07:43:09.010000"],["2024-07-25T07:43:10.010000"],["2024-07-25T07:43:11.010000"],["2024-07-25T07:43:12.010000"],["2024-07-25T07:43:13.010000"],["2024-07-25T07:43:14.010000"],["2024-07-25T07:43:15.010000"],["2024-07-25T07:43:16.010000"],["2024-07-25T07:43:17.010000"],["2024-07-25T07:43:18.010000"],["2024-07-25T07:43:19.010000"],["2024-07-25T07:43:20.010000"],["2024-07-25T07:43:21.010000"],["2024-07-25T07:43:22.010000"],["2024-07-25T07:43:23.010000"],["2024-07-25T07:43:24.010000"],["2024-07-25T07:43:25.010000"],["2024-07-25T07:43:26.010000"],["2024-07-25T07:43:27.010000"],["2024-07-25T07:43:28.010000"],["2024-07-25T07:43:29.010000"],["2024-07-25T07:43:30.010000"],["2024-07-25T07:43:31.010000"],["2024-07-25T07:43:32.010000"],["2024-07-25T07:43:33.010000"],["2024-07-25T07:43:34.010000"],["2024-07-25T07:43:35.010000"],["2024-07-25T07:43:36.010000"],["2024-07-25T07:43:37.010000"],["2024-07-25T07:43:38.010000"],["2024-07-25T07:43:39.010000"],["2024-07-25T07:43:40.010000"],["2024-07-25T07:43:41.010000"],["2024-07-25T07:43:42.010000"],["2024-07-25T07:43:43.010000"],["2024-07-25T07:43:44.010000"],["2024-07-25T07:43:45.010000"],["2024-07-25T07:43:46.010000"],["2024-07-25T07:43:47.010000"],["2024-07-25T07:43:48.010000"],["2024-07-25T07:43:49.010000"],["2024-07-25T07:43:50.010000"],["2024-07-25T07:43:51.010000"],["2024-07-25T07:43:52.010000"],["2024-07-25T07:43:53.010000"],["2024-07-25T07:43:54.010000"],["2024-07-25T07:43:55.010000"],["2024-07-25T07:43:56.010000"],["2024-07-25T07:43:57.010000"],["2024-07-25T07:43:58.010000"],["2024-07-25T07:43:59.010000"],["2024-07-25T07:44:00.010000"],["2024-07-25T07:44:01.010000"],["2024-07-25T07:44:02.010000"],["2024-07-25T07:44:03.010000"],["2024-07-25T07:44:04.010000"],["2024-07-25T07:44:05.010000"],["2024-07-25T07:44:06.010000"],["2024-07-25T07:44:07.010000"],["2024-07-25T07:44:08.010000"],["2024-07-25T07:44:09.010000"],["2024-07-25T07:44:10.010000"],["2024-07-25T07:44:11.010000"],["2024-07-25T07:44:12.010000"],["2024-07-25T07:44:13.010000"],["2024-07-25T07:44:14.010000"],["2024-07-25T07:44:15.010000"],["2024-07-25T07:44:16.010000"],["2024-07-25T07:44:17.010000"],["2024-07-25T07:44:18.010000"],["2024-07-25T07:44:19.010000"],["2024-07-25T07:44:20.010000"],["2024-07-25T07:44:21.010000"],["2024-07-25T07:44:22.010000"],["2024-07-25T07:44:23.010000"],["2024-07-25T07:44:24.010000"],["2024-07-25T07:44:25.010000"],["2024-07-25T07:44:26.010000"],["2024-07-25T07:44:27.010000"],["2024-07-25T07:44:28.010000"],["2024-07-25T07:44:29.010000"],["2024-07-25T07:44:30.010000"],["2024-07-25T07:44:31.010000"],["2024-07-25T07:44:32.010000"],["2024-07-25T07:44:33.010000"],["2024-07-25T07:44:34.010000"],["2024-07-25T07:44:35.010000"],["2024-07-25T07:44:36.010000"],["2024-07-25T07:44:37.010000"],["2024-07-25T07:44:38.010000"],["2024-07-25T07:44:39.010000"],["2024-07-25T07:44:40.010000"],["2024-07-25T07:44:41.010000"],["2024-07-25T07:44:42.010000"],["2024-07-25T07:44:43.010000"],["2024-07-25T07:44:44.010000"],["2024-07-25T07:44:45.010000"],["2024-07-25T07:44:46.010000"],["2024-07-25T07:44:47.010000"],["2024-07-25T07:44:48.010000"],["2024-07-25T07:44:49.010000"],["2024-07-25T07:44:50.010000"],["2024-07-25T07:44:51.010000"],["2024-07-25T07:44:52.010000"],["2024-07-25T07:44:53.010000"],["2024-07-25T07:44:54.010000"],["2024-07-25T07:44:55.010000"],["2024-07-25T07:44:56.010000"],["2024-07-25T07:44:57.010000"],["2024-07-25T07:44:58.010000"],["2024-07-25T07:44:59.010000"],["2024-07-25T07:45:00.010000"],["2024-07-25T07:45:01.010000"],["2024-07-25T07:45:02.010000"],["2024-07-25T07:45:03.010000"],["2024-07-25T07:45:04.010000"],["2024-07-25T07:45:05.010000"],["2024-07-25T07:45:06.010000"],["2024-07-25T07:45:07.010000"],["2024-07-25T07:45:08.010000"],["2024-07-25T07:45:09.010000"],["2024-07-25T07:45:10.010000"],["2024-07-25T07:45:11.010000"],["2024-07-25T07:45:12.010000"],["2024-07-25T07:45:13.010000"],["2024-07-25T07:45:14.010000"],["2024-07-25T07:45:15.010000"],["2024-07-25T07:45:16.010000"],["2024-07-25T07:45:17.010000"],["2024-07-25T07:45:18.010000"],["2024-07-25T07:45:19.010000"],["2024-07-25T07:45:20.010000"],["2024-07-25T07:45:21.010000"],["2024-07-25T07:45:22.010000"],["2024-07-25T07:45:23.010000"],["2024-07-25T07:45:24.010000"],["2024-07-25T07:45:25.010000"],["2024-07-25T07:45:26.010000"],["2024-07-25T07:45:27.010000"],["2024-07-25T07:45:28.010000"],["2024-07-25T07:45:29.010000"],["2024-07-25T07:45:30.010000"],["2024-07-25T07:45:31.010000"],["2024-07-25T07:45:32.010000"],["2024-07-25T07:45:33.010000"],["2024-07-25T07:45:34.010000"],["2024-07-25T07:45:35.010000"],["2024-07-25T07:45:36.010000"],["2024-07-25T07:45:37.010000"],["2024-07-25T07:45:38.010000"],["2024-07-25T07:45:39.010000"],["2024-07-25T07:45:40.010000"],["2024-07-25T07:45:41.010000"],["2024-07-25T07:45:42.010000"],["2024-07-25T07:45:43.010000"],["2024-07-25T07:45:44.010000"],["2024-07-25T07:45:45.010000"],["2024-07-25T07:45:46.010000"],["2024-07-25T07:45:47.010000"],["2024-07-25T07:45:48.010000"],["2024-07-25T07:45:49.010000"],["2024-07-25T07:45:50.010000"],["2024-07-25T07:45:51.010000"],["2024-07-25T07:45:52.010000"],["2024-07-25T07:45:53.010000"],["2024-07-25T07:45:54.010000"],["2024-07-25T07:45:55.010000"],["2024-07-25T07:45:56.010000"],["2024-07-25T07:45:57.010000"],["2024-07-25T07:45:58.010000"],["2024-07-25T07:45:59.010000"],["2024-07-25T07:46:00.010000"],["2024-07-25T07:46:01.010000"],["2024-07-25T07:46:02.010000"],["2024-07-25T07:46:03.010000"],["2024-07-25T07:46:04.010000"],["2024-07-25T07:46:05.010000"],["2024-07-25T07:46:06.010000"],["2024-07-25T07:46:07.010000"],["2024-07-25T07:46:08.010000"],["2024-07-25T07:46:09.010000"],["2024-07-25T07:46:10.010000"],["2024-07-25T07:46:11.010000"],["2024-07-25T07:46:12.010000"],["2024-07-25T07:46:13.010000"],["2024-07-25T07:46:14.010000"],["2024-07-25T07:46:15.010000"],["2024-07-25T07:46:16.010000"],["2024-07-25T07:46:17.010000"],["2024-07-25T07:46:18.010000"],["2024-07-25T07:46:19.010000"],["2024-07-25T07:46:20.010000"],["2024-07-25T07:46:21.010000"],["2024-07-25T07:46:22.010000"],["2024-07-25T07:46:23.010000"],["2024-07-25T07:46:24.010000"],["2024-07-25T07:46:25.010000"],["2024-07-25T07:46:26.010000"],["2024-07-25T07:46:27.010000"],["2024-07-25T07:46:28.010000"],["2024-07-25T07:46:29.010000"],["2024-07-25T07:46:30.010000"],["2024-07-25T07:46:31.010000"],["2024-07-25T07:46:32.010000"],["2024-07-25T07:46:33.010000"],["2024-07-25T07:46:34.010000"],["2024-07-25T07:46:35.010000"],["2024-07-25T07:46:36.010000"],["2024-07-25T07:46:37.010000"],["2024-07-25T07:46:38.010000"],["2024-07-25T07:46:39.010000"],["2024-07-25T07:46:40.010000"],["2024-07-25T07:46:41.010000"],["2024-07-25T07:46:42.010000"],["2024-07-25T07:46:43.010000"],["2024-07-25T07:46:44.010000"],["2024-07-25T07:46:45.010000"],["2024-07-25T07:46:46.010000"],["2024-07-25T07:46:47.010000"],["2024-07-25T07:46:48.010000"],["2024-07-25T07:46:49.010000"],["2024-07-25T07:46:50.010000"],["2024-07-25T07:46:51.010000"],["2024-07-25T07:46:52.010000"],["2024-07-25T07:46:53.010000"],["2024-07-25T07:46:54.010000"],["2024-07-25T07:46:55.010000"],["2024-07-25T07:46:56.010000"],["2024-07-25T07:46:57.010000"],["2024-07-25T07:46:58.010000"],["2024-07-25T07:46:59.010000"],["2024-07-25T07:47:00.010000"],["2024-07-25T07:47:01.010000"],["2024-07-25T07:47:02.010000"],["2024-07-25T07:47:03.010000"],["2024-07-25T07:47:04.010000"],["2024-07-25T07:47:05.010000"],["2024-07-25T07:47:06.010000"],["2024-07-25T07:47:07.010000"],["2024-07-25T07:47:08.010000"],["2024-07-25T07:47:09.010000"],["2024-07-25T07:47:10.010000"],["2024-07-25T07:47:11.010000"],["2024-07-25T07:47:12.010000"],["2024-07-25T07:47:13.010000"],["2024-07-25T07:47:14.010000"],["2024-07-25T07:47:15.010000"],["2024-07-25T07:47:16.010000"],["2024-07-25T07:47:17.010000"],["2024-07-25T07:47:18.010000"],["2024-07-25T07:47:19.010000"],["2024-07-25T07:47:20.010000"],["2024-07-25T07:47:21.010000"],["2024-07-25T07:47:22.010000"],["2024-07-25T07:47:23.010000"],["2024-07-25T07:47:24.010000"],["2024-07-25T07:47:25.010000"],["2024-07-25T07:47:26.010000"],["2024-07-25T07:47:27.010000"],["2024-07-25T07:47:28.010000"],["2024-07-25T07:47:29.010000"],["2024-07-25T07:47:30.010000"],["2024-07-25T07:47:31.010000"],["2024-07-25T07:47:32.010000"],["2024-07-25T07:47:33.010000"],["2024-07-25T07:47:34.010000"],["2024-07-25T07:47:35.010000"],["2024-07-25T07:47:36.010000"],["2024-07-25T07:47:37.010000"],["2024-07-25T07:47:38.010000"],["2024-07-25T07:47:39.010000"],["2024-07-25T07:47:40.010000"],["2024-07-25T07:47:41.010000"],["2024-07-25T07:47:42.010000"],["2024-07-25T07:47:43.010000"],["2024-07-25T07:47:44.010000"],["2024-07-25T07:47:45.010000"],["2024-07-25T07:47:46.010000"],["2024-07-25T07:47:47.010000"],["2024-07-25T07:47:48.010000"],["2024-07-25T07:47:49.010000"],["2024-07-25T07:47:50.010000"],["2024-07-25T07:47:51.010000"],["2024-07-25T07:47:52.010000"],["2024-07-25T07:47:53.010000"],["2024-07-25T07:47:54.010000"],["2024-07-25T07:47:55.010000"],["2024-07-25T07:47:56.010000"],["2024-07-25T07:47:57.010000"],["2024-07-25T07:47:58.010000"],["2024-07-25T07:47:59.010000"],["2024-07-25T07:48:00.010000"],["2024-07-25T07:48:01.010000"],["2024-07-25T07:48:02.010000"],["2024-07-25T07:48:03.010000"],["2024-07-25T07:48:04.010000"],["2024-07-25T07:48:05.010000"],["2024-07-25T07:48:06.010000"],["2024-07-25T07:48:07.010000"],["2024-07-25T07:48:08.010000"],["2024-07-25T07:48:09.010000"],["2024-07-25T07:48:10.010000"],["2024-07-25T07:48:11.010000"],["2024-07-25T07:48:12.010000"],["2024-07-25T07:48:13.010000"],["2024-07-25T07:48:14.010000"],["2024-07-25T07:48:15.010000"],["2024-07-25T07:48:16.010000"],["2024-07-25T07:48:17.010000"],["2024-07-25T07:48:18.010000"],["2024-07-25T07:48:19.010000"],["2024-07-25T07:48:20.010000"],["2024-07-25T07:48:21.010000"],["2024-07-25T07:48:22.010000"],["2024-07-25T07:48:23.010000"],["2024-07-25T07:48:24.010000"],["2024-07-25T07:48:25.010000"],["2024-07-25T07:48:26.010000"],["2024-07-25T07:48:27.010000"],["2024-07-25T07:48:28.010000"],["2024-07-25T07:48:29.010000"],["2024-07-25T07:48:30.010000"],["2024-07-25T07:48:31.010000"],["2024-07-25T07:48:32.010000"],["2024-07-25T07:48:33.010000"],["2024-07-25T07:48:34.010000"],["2024-07-25T07:48:35.010000"],["2024-07-25T07:48:36.010000"],["2024-07-25T07:48:37.010000"],["2024-07-25T07:48:38.010000"],["2024-07-25T07:48:39.010000"],["2024-07-25T07:48:40.010000"],["2024-07-25T07:48:41.010000"],["2024-07-25T07:48:42.010000"],["2024-07-25T07:48:43.010000"],["2024-07-25T07:48:44.010000"],["2024-07-25T07:48:45.010000"],["2024-07-25T07:48:46.010000"],["2024-07-25T07:48:47.010000"],["2024-07-25T07:48:48.010000"],["2024-07-25T07:48:49.010000"],["2024-07-25T07:48:50.010000"],["2024-07-25T07:48:51.010000"],["2024-07-25T07:48:52.010000"],["2024-07-25T07:48:53.010000"],["2024-07-25T07:48:54.010000"],["2024-07-25T07:48:55.010000"],["2024-07-25T07:48:56.010000"],["2024-07-25T07:48:57.010000"],["2024-07-25T07:48:58.010000"],["2024-07-25T07:48:59.010000"],["2024-07-25T07:49:00.010000"],["2024-07-25T07:49:01.010000"],["2024-07-25T07:49:02.010000"],["2024-07-25T07:49:03.010000"],["2024-07-25T07:49:04.010000"],["2024-07-25T07:49:05.010000"],["2024-07-25T07:49:06.010000"],["2024-07-25T07:49:07.010000"],["2024-07-25T07:49:08.010000"],["2024-07-25T07:49:09.010000"],["2024-07-25T07:49:10.010000"],["2024-07-25T07:49:11.010000"],["2024-07-25T07:49:12.010000"],["2024-07-25T07:49:13.010000"],["2024-07-25T07:49:14.010000"],["2024-07-25T07:49:15.010000"],["2024-07-25T07:49:16.010000"],["2024-07-25T07:49:17.010000"],["2024-07-25T07:49:18.010000"],["2024-07-25T07:49:19.010000"],["2024-07-25T07:49:20.010000"],["2024-07-25T07:49:21.010000"],["2024-07-25T07:49:22.010000"],["2024-07-25T07:49:23.010000"],["2024-07-25T07:49:24.010000"],["2024-07-25T07:49:25.010000"],["2024-07-25T07:49:26.010000"],["2024-07-25T07:49:27.010000"],["2024-07-25T07:49:28.010000"],["2024-07-25T07:49:29.010000"],["2024-07-25T07:49:30.010000"],["2024-07-25T07:49:31.010000"],["2024-07-25T07:49:32.010000"],["2024-07-25T07:49:33.010000"],["2024-07-25T07:49:34.010000"],["2024-07-25T07:49:35.010000"],["2024-07-25T07:49:36.010000"],["2024-07-25T07:49:37.010000"],["2024-07-25T07:49:38.010000"],["2024-07-25T07:49:39.010000"],["2024-07-25T07:49:40.010000"],["2024-07-25T07:49:41.010000"],["2024-07-25T07:49:42.010000"],["2024-07-25T07:49:43.010000"],["2024-07-25T07:49:44.010000"],["2024-07-25T07:49:45.010000"],["2024-07-25T07:49:46.010000"],["2024-07-25T07:49:47.010000"],["2024-07-25T07:49:48.010000"],["2024-07-25T07:49:49.010000"],["2024-07-25T07:49:50.010000"],["2024-07-25T07:49:51.010000"],["2024-07-25T07:49:52.010000"],["2024-07-25T07:49:53.010000"],["2024-07-25T07:49:54.010000"],["2024-07-25T07:49:55.010000"],["2024-07-25T07:49:56.010000"],["2024-07-25T07:49:57.010000"],["2024-07-25T07:49:58.010000"],["2024-07-25T07:49:59.010000"],["2024-07-25T07:50:00.010000"],["2024-07-25T07:50:01.010000"],["2024-07-25T07:50:02.010000"],["2024-07-25T07:50:03.010000"],["2024-07-25T07:50:04.010000"],["2024-07-25T07:50:05.010000"],["2024-07-25T07:50:06.010000"],["2024-07-25T07:50:07.010000"],["2024-07-25T07:50:08.010000"],["2024-07-25T07:50:09.010000"],["2024-07-25T07:50:10.010000"],["2024-07-25T07:50:11.010000"],["2024-07-25T07:50:12.010000"],["2024-07-25T07:50:13.010000"],["2024-07-25T07:50:14.010000"],["2024-07-25T07:50:15.010000"],["2024-07-25T07:50:16.010000"],["2024-07-25T07:50:17.010000"],["2024-07-25T07:50:18.010000"],["2024-07-25T07:50:19.010000"],["2024-07-25T07:50:20.010000"],["2024-07-25T07:50:21.010000"],["2024-07-25T07:50:22.010000"],["2024-07-25T07:50:23.010000"],["2024-07-25T07:50:24.010000"],["2024-07-25T07:50:25.010000"],["2024-07-25T07:50:26.010000"],["2024-07-25T07:50:27.010000"],["2024-07-25T07:50:28.010000"],["2024-07-25T07:50:29.010000"],["2024-07-25T07:50:30.010000"],["2024-07-25T07:50:31.010000"],["2024-07-25T07:50:32.010000"],["2024-07-25T07:50:33.010000"],["2024-07-25T07:50:34.010000"],["2024-07-25T07:50:35.010000"],["2024-07-25T07:50:36.010000"],["2024-07-25T07:50:37.010000"],["2024-07-25T07:50:38.010000"],["2024-07-25T07:50:39.010000"],["2024-07-25T07:50:40.010000"],["2024-07-25T07:50:41.010000"],["2024-07-25T07:50:42.010000"],["2024-07-25T07:50:43.010000"],["2024-07-25T07:50:44.010000"],["2024-07-25T07:50:45.010000"],["2024-07-25T07:50:46.010000"],["2024-07-25T07:50:47.010000"],["2024-07-25T07:50:48.010000"],["2024-07-25T07:50:49.010000"],["2024-07-25T07:50:50.010000"],["2024-07-25T07:50:51.010000"],["2024-07-25T07:50:52.010000"],["2024-07-25T07:50:53.010000"],["2024-07-25T07:50:54.010000"],["2024-07-25T07:50:55.010000"],["2024-07-25T07:50:56.010000"],["2024-07-25T07:50:57.010000"],["2024-07-25T07:50:58.010000"],["2024-07-25T07:50:59.010000"],["2024-07-25T07:51:00.010000"],["2024-07-25T07:51:01.010000"],["2024-07-25T07:51:02.010000"],["2024-07-25T07:51:03.010000"],["2024-07-25T07:51:04.010000"],["2024-07-25T07:51:05.010000"],["2024-07-25T07:51:06.010000"],["2024-07-25T07:51:07.010000"],["2024-07-25T07:51:08.010000"],["2024-07-25T07:51:09.010000"],["2024-07-25T07:51:10.010000"],["2024-07-25T07:51:11.010000"],["2024-07-25T07:51:12.010000"],["2024-07-25T07:51:13.010000"],["2024-07-25T07:51:14.010000"],["2024-07-25T07:51:15.010000"],["2024-07-25T07:51:16.010000"],["2024-07-25T07:51:17.010000"],["2024-07-25T07:51:18.010000"],["2024-07-25T07:51:19.010000"],["2024-07-25T07:51:20.010000"],["2024-07-25T07:51:21.010000"],["2024-07-25T07:51:22.010000"],["2024-07-25T07:51:23.010000"],["2024-07-25T07:51:24.010000"],["2024-07-25T07:51:25.010000"],["2024-07-25T07:51:26.010000"],["2024-07-25T07:51:27.010000"],["2024-07-25T07:51:28.010000"],["2024-07-25T07:51:29.010000"],["2024-07-25T07:51:30.010000"],["2024-07-25T07:51:31.010000"],["2024-07-25T07:51:32.010000"],["2024-07-25T07:51:33.010000"],["2024-07-25T07:51:34.010000"],["2024-07-25T07:51:35.010000"],["2024-07-25T07:51:36.010000"],["2024-07-25T07:51:37.010000"],["2024-07-25T07:51:38.010000"],["2024-07-25T07:51:39.010000"],["2024-07-25T07:51:40.010000"],["2024-07-25T07:51:41.010000"],["2024-07-25T07:51:42.010000"],["2024-07-25T07:51:43.010000"],["2024-07-25T07:51:44.010000"],["2024-07-25T07:51:45.010000"],["2024-07-25T07:51:46.010000"],["2024-07-25T07:51:47.010000"],["2024-07-25T07:51:48.010000"],["2024-07-25T07:51:49.010000"],["2024-07-25T07:51:50.010000"],["2024-07-25T07:51:51.010000"],["2024-07-25T07:51:52.010000"],["2024-07-25T07:51:53.010000"],["2024-07-25T07:51:54.010000"],["2024-07-25T07:51:55.010000"],["2024-07-25T07:51:56.010000"],["2024-07-25T07:51:57.010000"],["2024-07-25T07:51:58.010000"],["2024-07-25T07:51:59.010000"],["2024-07-25T07:52:00.010000"],["2024-07-25T07:52:01.010000"],["2024-07-25T07:52:02.010000"],["2024-07-25T07:52:03.010000"],["2024-07-25T07:52:04.010000"],["2024-07-25T07:52:05.010000"],["2024-07-25T07:52:06.010000"],["2024-07-25T07:52:07.010000"],["2024-07-25T07:52:08.010000"],["2024-07-25T07:52:09.010000"],["2024-07-25T07:52:10.010000"],["2024-07-25T07:52:11.010000"],["2024-07-25T07:52:12.010000"],["2024-07-25T07:52:13.010000"],["2024-07-25T07:52:14.010000"],["2024-07-25T07:52:15.010000"],["2024-07-25T07:52:16.010000"],["2024-07-25T07:52:17.010000"],["2024-07-25T07:52:18.010000"],["2024-07-25T07:52:19.010000"],["2024-07-25T07:52:20.010000"],["2024-07-25T07:52:21.010000"],["2024-07-25T07:52:22.010000"],["2024-07-25T07:52:23.010000"],["2024-07-25T07:52:24.010000"],["2024-07-25T07:52:25.010000"],["2024-07-25T07:52:26.010000"],["2024-07-25T07:52:27.010000"],["2024-07-25T07:52:28.010000"],["2024-07-25T07:52:29.010000"],["2024-07-25T07:52:30.010000"],["2024-07-25T07:52:31.010000"],["2024-07-25T07:52:32.010000"],["2024-07-25T07:52:33.010000"],["2024-07-25T07:52:34.010000"],["2024-07-25T07:52:35.010000"],["2024-07-25T07:52:36.010000"],["2024-07-25T07:52:37.010000"],["2024-07-25T07:52:38.010000"],["2024-07-25T07:52:39.010000"],["2024-07-25T07:52:40.010000"],["2024-07-25T07:52:41.010000"],["2024-07-25T07:52:42.010000"],["2024-07-25T07:52:43.010000"],["2024-07-25T07:52:44.010000"],["2024-07-25T07:52:45.010000"],["2024-07-25T07:52:46.010000"],["2024-07-25T07:52:47.010000"],["2024-07-25T07:52:48.010000"],["2024-07-25T07:52:49.010000"],["2024-07-25T07:52:50.010000"],["2024-07-25T07:52:51.010000"],["2024-07-25T07:52:52.010000"],["2024-07-25T07:52:53.010000"],["2024-07-25T07:52:54.010000"],["2024-07-25T07:52:55.010000"],["2024-07-25T07:52:56.010000"],["2024-07-25T07:52:57.010000"],["2024-07-25T07:52:58.010000"],["2024-07-25T07:52:59.010000"],["2024-07-25T07:53:00.010000"],["2024-07-25T07:53:01.010000"],["2024-07-25T07:53:02.010000"],["2024-07-25T07:53:03.010000"],["2024-07-25T07:53:04.010000"],["2024-07-25T07:53:05.010000"],["2024-07-25T07:53:06.010000"],["2024-07-25T07:53:07.010000"],["2024-07-25T07:53:08.010000"],["2024-07-25T07:53:09.010000"],["2024-07-25T07:53:10.010000"],["2024-07-25T07:53:11.010000"],["2024-07-25T07:53:12.010000"],["2024-07-25T07:53:13.010000"],["2024-07-25T07:53:14.010000"],["2024-07-25T07:53:15.010000"],["2024-07-25T07:53:16.010000"],["2024-07-25T07:53:17.010000"],["2024-07-25T07:53:18.010000"],["2024-07-25T07:53:19.010000"],["2024-07-25T07:53:20.010000"],["2024-07-25T07:53:21.010000"],["2024-07-25T07:53:22.010000"],["2024-07-25T07:53:23.010000"],["2024-07-25T07:53:24.010000"],["2024-07-25T07:53:25.010000"],["2024-07-25T07:53:26.010000"],["2024-07-25T07:53:27.010000"],["2024-07-25T07:53:28.010000"],["2024-07-25T07:53:29.010000"],["2024-07-25T07:53:30.010000"],["2024-07-25T07:53:31.010000"],["2024-07-25T07:53:32.010000"],["2024-07-25T07:53:33.010000"],["2024-07-25T07:53:34.010000"],["2024-07-25T07:53:35.010000"],["2024-07-25T07:53:36.010000"],["2024-07-25T07:53:37.010000"],["2024-07-25T07:53:38.010000"],["2024-07-25T07:53:39.010000"],["2024-07-25T07:53:40.010000"],["2024-07-25T07:53:41.010000"],["2024-07-25T07:53:42.010000"],["2024-07-25T07:53:43.010000"],["2024-07-25T07:53:44.010000"],["2024-07-25T07:53:45.010000"],["2024-07-25T07:53:46.010000"],["2024-07-25T07:53:47.010000"],["2024-07-25T07:53:48.010000"],["2024-07-25T07:53:49.010000"],["2024-07-25T07:53:50.010000"],["2024-07-25T07:53:51.010000"],["2024-07-25T07:53:52.010000"],["2024-07-25T07:53:53.010000"],["2024-07-25T07:53:54.010000"],["2024-07-25T07:53:55.010000"],["2024-07-25T07:53:56.010000"],["2024-07-25T07:53:57.010000"],["2024-07-25T07:53:58.010000"],["2024-07-25T07:53:59.010000"],["2024-07-25T07:54:00.010000"],["2024-07-25T07:54:01.010000"],["2024-07-25T07:54:02.010000"],["2024-07-25T07:54:03.010000"],["2024-07-25T07:54:04.010000"],["2024-07-25T07:54:05.010000"],["2024-07-25T07:54:06.010000"],["2024-07-25T07:54:07.010000"],["2024-07-25T07:54:08.010000"],["2024-07-25T07:54:09.010000"],["2024-07-25T07:54:10.010000"],["2024-07-25T07:54:11.010000"],["2024-07-25T07:54:12.010000"],["2024-07-25T07:54:13.010000"],["2024-07-25T07:54:14.010000"],["2024-07-25T07:54:15.010000"],["2024-07-25T07:54:16.010000"],["2024-07-25T07:54:17.010000"],["2024-07-25T07:54:18.010000"],["2024-07-25T07:54:19.010000"],["2024-07-25T07:54:20.010000"],["2024-07-25T07:54:21.010000"],["2024-07-25T07:54:22.010000"],["2024-07-25T07:54:23.010000"],["2024-07-25T07:54:24.010000"],["2024-07-25T07:54:25.010000"],["2024-07-25T07:54:26.010000"],["2024-07-25T07:54:27.010000"],["2024-07-25T07:54:28.010000"],["2024-07-25T07:54:29.010000"],["2024-07-25T07:54:30.010000"],["2024-07-25T07:54:31.010000"],["2024-07-25T07:54:32.010000"],["2024-07-25T07:54:33.010000"],["2024-07-25T07:54:34.010000"],["2024-07-25T07:54:35.010000"],["2024-07-25T07:54:36.010000"],["2024-07-25T07:54:37.010000"],["2024-07-25T07:54:38.010000"],["2024-07-25T07:54:39.010000"],["2024-07-25T07:54:40.010000"],["2024-07-25T07:54:41.010000"],["2024-07-25T07:54:42.010000"],["2024-07-25T07:54:43.010000"],["2024-07-25T07:54:44.010000"],["2024-07-25T07:54:45.010000"],["2024-07-25T07:54:46.010000"],["2024-07-25T07:54:47.010000"],["2024-07-25T07:54:48.010000"],["2024-07-25T07:54:49.010000"],["2024-07-25T07:54:50.010000"],["2024-07-25T07:54:51.010000"],["2024-07-25T07:54:52.010000"],["2024-07-25T07:54:53.010000"],["2024-07-25T07:54:54.010000"],["2024-07-25T07:54:55.010000"],["2024-07-25T07:54:56.010000"],["2024-07-25T07:54:57.010000"],["2024-07-25T07:54:58.010000"],["2024-07-25T07:54:59.010000"],["2024-07-25T07:55:00.010000"],["2024-07-25T07:55:01.010000"],["2024-07-25T07:55:02.010000"],["2024-07-25T07:55:03.010000"],["2024-07-25T07:55:04.010000"],["2024-07-25T07:55:05.010000"],["2024-07-25T07:55:06.010000"],["2024-07-25T07:55:07.010000"],["2024-07-25T07:55:08.010000"],["2024-07-25T07:55:09.010000"],["2024-07-25T07:55:10.010000"],["2024-07-25T07:55:11.010000"],["2024-07-25T07:55:12.010000"],["2024-07-25T07:55:13.010000"],["2024-07-25T07:55:14.010000"],["2024-07-25T07:55:15.010000"],["2024-07-25T07:55:16.010000"],["2024-07-25T07:55:17.010000"],["2024-07-25T07:55:18.010000"],["2024-07-25T07:55:19.010000"],["2024-07-25T07:55:20.010000"],["2024-07-25T07:55:21.010000"],["2024-07-25T07:55:22.010000"],["2024-07-25T07:55:23.010000"],["2024-07-25T07:55:24.010000"],["2024-07-25T07:55:25.010000"],["2024-07-25T07:55:26.010000"],["2024-07-25T07:55:27.010000"],["2024-07-25T07:55:28.010000"],["2024-07-25T07:55:29.010000"],["2024-07-25T07:55:30.010000"],["2024-07-25T07:55:31.010000"],["2024-07-25T07:55:32.010000"],["2024-07-25T07:55:33.010000"],["2024-07-25T07:55:34.010000"],["2024-07-25T07:55:35.010000"],["2024-07-25T07:55:36.010000"],["2024-07-25T07:55:37.010000"],["2024-07-25T07:55:38.010000"],["2024-07-25T07:55:39.010000"],["2024-07-25T07:55:40.010000"],["2024-07-25T07:55:41.010000"],["2024-07-25T07:55:42.010000"],["2024-07-25T07:55:43.010000"],["2024-07-25T07:55:44.010000"],["2024-07-25T07:55:45.010000"],["2024-07-25T07:55:46.010000"],["2024-07-25T07:55:47.010000"],["2024-07-25T07:55:48.010000"],["2024-07-25T07:55:49.010000"],["2024-07-25T07:55:50.010000"],["2024-07-25T07:55:51.010000"],["2024-07-25T07:55:52.010000"],["2024-07-25T07:55:53.010000"],["2024-07-25T07:55:54.010000"],["2024-07-25T07:55:55.010000"],["2024-07-25T07:55:56.010000"],["2024-07-25T07:55:57.010000"],["2024-07-25T07:55:58.010000"],["2024-07-25T07:55:59.010000"],["2024-07-25T07:56:00.010000"],["2024-07-25T07:56:01.010000"],["2024-07-25T07:56:02.010000"],["2024-07-25T07:56:03.010000"],["2024-07-25T07:56:04.010000"],["2024-07-25T07:56:05.010000"],["2024-07-25T07:56:06.010000"],["2024-07-25T07:56:07.010000"],["2024-07-25T07:56:08.010000"],["2024-07-25T07:56:09.010000"],["2024-07-25T07:56:10.010000"],["2024-07-25T07:56:11.010000"],["2024-07-25T07:56:12.010000"],["2024-07-25T07:56:13.010000"],["2024-07-25T07:56:14.010000"],["2024-07-25T07:56:15.010000"],["2024-07-25T07:56:16.010000"],["2024-07-25T07:56:17.010000"],["2024-07-25T07:56:18.010000"],["2024-07-25T07:56:19.010000"],["2024-07-25T07:56:20.010000"],["2024-07-25T07:56:21.010000"],["2024-07-25T07:56:22.010000"],["2024-07-25T07:56:23.010000"],["2024-07-25T07:56:24.010000"],["2024-07-25T07:56:25.010000"],["2024-07-25T07:56:26.010000"],["2024-07-25T07:56:27.010000"],["2024-07-25T07:56:28.010000"],["2024-07-25T07:56:29.010000"],["2024-07-25T07:56:30.010000"],["2024-07-25T07:56:31.010000"],["2024-07-25T07:56:32.010000"],["2024-07-25T07:56:33.010000"],["2024-07-25T07:56:34.010000"],["2024-07-25T07:56:35.010000"],["2024-07-25T07:56:36.010000"],["2024-07-25T07:56:37.010000"],["2024-07-25T07:56:38.010000"],["2024-07-25T07:56:39.010000"],["2024-07-25T07:56:40.010000"],["2024-07-25T07:56:41.010000"],["2024-07-25T07:56:42.010000"],["2024-07-25T07:56:43.010000"],["2024-07-25T07:56:44.010000"],["2024-07-25T07:56:45.010000"],["2024-07-25T07:56:46.010000"],["2024-07-25T07:56:47.010000"],["2024-07-25T07:56:48.010000"],["2024-07-25T07:56:49.010000"],["2024-07-25T07:56:50.010000"],["2024-07-25T07:56:51.010000"],["2024-07-25T07:56:52.010000"],["2024-07-25T07:56:53.010000"],["2024-07-25T07:56:54.010000"],["2024-07-25T07:56:55.010000"],["2024-07-25T07:56:56.010000"],["2024-07-25T07:56:57.010000"],["2024-07-25T07:56:58.010000"],["2024-07-25T07:56:59.010000"],["2024-07-25T07:57:00.010000"],["2024-07-25T07:57:01.010000"],["2024-07-25T07:57:02.010000"],["2024-07-25T07:57:03.010000"],["2024-07-25T07:57:04.010000"],["2024-07-25T07:57:05.010000"],["2024-07-25T07:57:06.010000"],["2024-07-25T07:57:07.010000"],["2024-07-25T07:57:08.010000"],["2024-07-25T07:57:09.010000"],["2024-07-25T07:57:10.010000"],["2024-07-25T07:57:11.010000"],["2024-07-25T07:57:12.010000"],["2024-07-25T07:57:13.010000"],["2024-07-25T07:57:14.010000"],["2024-07-25T07:57:15.010000"],["2024-07-25T07:57:16.010000"],["2024-07-25T07:57:17.010000"],["2024-07-25T07:57:18.010000"],["2024-07-25T07:57:19.010000"],["2024-07-25T07:57:20.010000"],["2024-07-25T07:57:21.010000"],["2024-07-25T07:57:22.010000"],["2024-07-25T07:57:23.010000"],["2024-07-25T07:57:24.010000"],["2024-07-25T07:57:25.010000"],["2024-07-25T07:57:26.010000"],["2024-07-25T07:57:27.010000"],["2024-07-25T07:57:28.010000"],["2024-07-25T07:57:29.010000"],["2024-07-25T07:57:30.010000"],["2024-07-25T07:57:31.010000"],["2024-07-25T07:57:32.010000"],["2024-07-25T07:57:33.010000"],["2024-07-25T07:57:34.010000"],["2024-07-25T07:57:35.010000"],["2024-07-25T07:57:36.010000"],["2024-07-25T07:57:37.010000"],["2024-07-25T07:57:38.010000"],["2024-07-25T07:57:39.010000"],["2024-07-25T07:57:40.010000"],["2024-07-25T07:57:41.010000"],["2024-07-25T07:57:42.010000"],["2024-07-25T07:57:43.010000"],["2024-07-25T07:57:44.010000"],["2024-07-25T07:57:45.010000"],["2024-07-25T07:57:46.010000"],["2024-07-25T07:57:47.010000"],["2024-07-25T07:57:48.010000"],["2024-07-25T07:57:49.010000"],["2024-07-25T07:57:50.010000"],["2024-07-25T07:57:51.010000"],["2024-07-25T07:57:52.010000"],["2024-07-25T07:57:53.010000"],["2024-07-25T07:57:54.010000"],["2024-07-25T07:57:55.010000"],["2024-07-25T07:57:56.010000"],["2024-07-25T07:57:57.010000"],["2024-07-25T07:57:58.010000"],["2024-07-25T07:57:59.010000"],["2024-07-25T07:58:00.010000"],["2024-07-25T07:58:01.010000"],["2024-07-25T07:58:02.010000"],["2024-07-25T07:58:03.010000"],["2024-07-25T07:58:04.010000"],["2024-07-25T07:58:05.010000"],["2024-07-25T07:58:06.010000"],["2024-07-25T07:58:07.010000"],["2024-07-25T07:58:08.010000"],["2024-07-25T07:58:09.010000"],["2024-07-25T07:58:10.010000"],["2024-07-25T07:58:11.010000"],["2024-07-25T07:58:12.010000"],["2024-07-25T07:58:13.010000"],["2024-07-25T07:58:14.010000"],["2024-07-25T07:58:15.010000"],["2024-07-25T07:58:16.010000"],["2024-07-25T07:58:17.010000"],["2024-07-25T07:58:18.010000"],["2024-07-25T07:58:19.010000"],["2024-07-25T07:58:20.010000"],["2024-07-25T07:58:21.010000"],["2024-07-25T07:58:22.010000"],["2024-07-25T07:58:23.010000"],["2024-07-25T07:58:24.010000"],["2024-07-25T07:58:25.010000"],["2024-07-25T07:58:26.010000"],["2024-07-25T07:58:27.010000"],["2024-07-25T07:58:28.010000"],["2024-07-25T07:58:29.010000"],["2024-07-25T07:58:30.010000"],["2024-07-25T07:58:31.010000"],["2024-07-25T07:58:32.010000"],["2024-07-25T07:58:33.010000"],["2024-07-25T07:58:34.010000"],["2024-07-25T07:58:35.010000"],["2024-07-25T07:58:36.010000"],["2024-07-25T07:58:37.010000"],["2024-07-25T07:58:38.010000"],["2024-07-25T07:58:39.010000"],["2024-07-25T07:58:40.010000"],["2024-07-25T07:58:41.010000"],["2024-07-25T07:58:42.010000"],["2024-07-25T07:58:43.010000"],["2024-07-25T07:58:44.010000"],["2024-07-25T07:58:45.010000"],["2024-07-25T07:58:46.010000"],["2024-07-25T07:58:47.010000"],["2024-07-25T07:58:48.010000"],["2024-07-25T07:58:49.010000"],["2024-07-25T07:58:50.010000"],["2024-07-25T07:58:51.010000"],["2024-07-25T07:58:52.010000"],["2024-07-25T07:58:53.010000"],["2024-07-25T07:58:54.010000"],["2024-07-25T07:58:55.010000"],["2024-07-25T07:58:56.010000"],["2024-07-25T07:58:57.010000"],["2024-07-25T07:58:58.010000"],["2024-07-25T07:58:59.010000"],["2024-07-25T07:59:00.010000"],["2024-07-25T07:59:01.010000"],["2024-07-25T07:59:02.010000"],["2024-07-25T07:59:03.010000"],["2024-07-25T07:59:04.010000"],["2024-07-25T07:59:05.010000"],["2024-07-25T07:59:06.010000"],["2024-07-25T07:59:07.010000"],["2024-07-25T07:59:08.010000"],["2024-07-25T07:59:09.010000"],["2024-07-25T07:59:10.010000"],["2024-07-25T07:59:11.010000"],["2024-07-25T07:59:12.010000"],["2024-07-25T07:59:13.010000"],["2024-07-25T07:59:14.010000"],["2024-07-25T07:59:15.010000"],["2024-07-25T07:59:16.010000"],["2024-07-25T07:59:17.010000"],["2024-07-25T07:59:18.010000"],["2024-07-25T07:59:19.010000"],["2024-07-25T07:59:20.010000"],["2024-07-25T07:59:21.010000"],["2024-07-25T07:59:22.010000"],["2024-07-25T07:59:23.010000"],["2024-07-25T07:59:24.010000"],["2024-07-25T07:59:25.010000"],["2024-07-25T07:59:26.010000"],["2024-07-25T07:59:27.010000"],["2024-07-25T07:59:28.010000"],["2024-07-25T07:59:29.010000"],["2024-07-25T07:59:30.010000"],["2024-07-25T07:59:31.010000"],["2024-07-25T07:59:32.010000"],["2024-07-25T07:59:33.010000"],["2024-07-25T07:59:34.010000"],["2024-07-25T07:59:35.010000"],["2024-07-25T07:59:36.010000"],["2024-07-25T07:59:37.010000"],["2024-07-25T07:59:38.010000"],["2024-07-25T07:59:39.010000"],["2024-07-25T07:59:40.010000"],["2024-07-25T07:59:41.010000"],["2024-07-25T07:59:42.010000"],["2024-07-25T07:59:43.010000"],["2024-07-25T07:59:44.010000"],["2024-07-25T07:59:45.010000"],["2024-07-25T07:59:46.010000"],["2024-07-25T07:59:47.010000"],["2024-07-25T07:59:48.010000"],["2024-07-25T07:59:49.010000"],["2024-07-25T07:59:50.010000"],["2024-07-25T07:59:51.010000"],["2024-07-25T07:59:52.010000"],["2024-07-25T07:59:53.010000"],["2024-07-25T07:59:54.010000"],["2024-07-25T07:59:55.010000"],["2024-07-25T07:59:56.010000"],["2024-07-25T07:59:57.010000"],["2024-07-25T07:59:58.010000"],["2024-07-25T07:59:59.010000"],["2024-07-25T08:00:00.010000"],["2024-07-25T08:00:01.010000"],["2024-07-25T08:00:02.010000"],["2024-07-25T08:00:03.010000"],["2024-07-25T08:00:04.010000"],["2024-07-25T08:00:05.010000"],["2024-07-25T08:00:06.010000"],["2024-07-25T08:00:07.010000"],["2024-07-25T08:00:08.010000"],["2024-07-25T08:00:09.010000"],["2024-07-25T08:00:10.010000"],["2024-07-25T08:00:11.010000"],["2024-07-25T08:00:12.010000"],["2024-07-25T08:00:13.010000"],["2024-07-25T08:00:14.010000"],["2024-07-25T08:00:15.010000"],["2024-07-25T08:00:16.010000"],["2024-07-25T08:00:17.010000"],["2024-07-25T08:00:18.010000"],["2024-07-25T08:00:19.010000"],["2024-07-25T08:00:20.010000"],["2024-07-25T08:00:21.010000"],["2024-07-25T08:00:22.010000"],["2024-07-25T08:00:23.010000"],["2024-07-25T08:00:24.010000"],["2024-07-25T08:00:25.010000"],["2024-07-25T08:00:26.010000"],["2024-07-25T08:00:27.010000"],["2024-07-25T08:00:28.010000"],["2024-07-25T08:00:29.010000"],["2024-07-25T08:00:30.010000"],["2024-07-25T08:00:31.010000"],["2024-07-25T08:00:32.010000"],["2024-07-25T08:00:33.010000"],["2024-07-25T08:00:34.010000"],["2024-07-25T08:00:35.010000"],["2024-07-25T08:00:36.010000"],["2024-07-25T08:00:37.010000"],["2024-07-25T08:00:38.010000"],["2024-07-25T08:00:39.010000"],["2024-07-25T08:00:40.010000"],["2024-07-25T08:00:41.010000"],["2024-07-25T08:00:42.010000"],["2024-07-25T08:00:43.010000"],["2024-07-25T08:00:44.010000"],["2024-07-25T08:00:45.010000"],["2024-07-25T08:00:46.010000"],["2024-07-25T08:00:47.010000"],["2024-07-25T08:00:48.010000"],["2024-07-25T08:00:49.010000"],["2024-07-25T08:00:50.010000"],["2024-07-25T08:00:51.010000"],["2024-07-25T08:00:52.010000"],["2024-07-25T08:00:53.010000"],["2024-07-25T08:00:54.010000"],["2024-07-25T08:00:55.010000"],["2024-07-25T08:00:56.010000"],["2024-07-25T08:00:57.010000"],["2024-07-25T08:00:58.010000"],["2024-07-25T08:00:59.010000"],["2024-07-25T08:01:00.010000"],["2024-07-25T08:01:01.010000"],["2024-07-25T08:01:02.010000"],["2024-07-25T08:01:03.010000"],["2024-07-25T08:01:04.010000"],["2024-07-25T08:01:05.010000"],["2024-07-25T08:01:06.010000"],["2024-07-25T08:01:07.010000"],["2024-07-25T08:01:08.010000"],["2024-07-25T08:01:09.010000"],["2024-07-25T08:01:10.010000"],["2024-07-25T08:01:11.010000"],["2024-07-25T08:01:12.010000"],["2024-07-25T08:01:13.010000"],["2024-07-25T08:01:14.010000"],["2024-07-25T08:01:15.010000"],["2024-07-25T08:01:16.010000"],["2024-07-25T08:01:17.010000"],["2024-07-25T08:01:18.010000"],["2024-07-25T08:01:19.010000"],["2024-07-25T08:01:20.010000"],["2024-07-25T08:01:21.010000"],["2024-07-25T08:01:22.010000"],["2024-07-25T08:01:23.010000"],["2024-07-25T08:01:24.010000"],["2024-07-25T08:01:25.010000"],["2024-07-25T08:01:26.010000"],["2024-07-25T08:01:27.010000"],["2024-07-25T08:01:28.010000"],["2024-07-25T08:01:29.010000"],["2024-07-25T08:01:30.010000"],["2024-07-25T08:01:31.010000"],["2024-07-25T08:01:32.010000"],["2024-07-25T08:01:33.010000"],["2024-07-25T08:01:34.010000"],["2024-07-25T08:01:35.010000"],["2024-07-25T08:01:36.010000"],["2024-07-25T08:01:37.010000"],["2024-07-25T08:01:38.010000"],["2024-07-25T08:01:39.010000"],["2024-07-25T08:01:40.010000"],["2024-07-25T08:01:41.010000"],["2024-07-25T08:01:42.010000"],["2024-07-25T08:01:43.010000"],["2024-07-25T08:01:44.010000"],["2024-07-25T08:01:45.010000"],["2024-07-25T08:01:46.010000"],["2024-07-25T08:01:47.010000"],["2024-07-25T08:01:48.010000"],["2024-07-25T08:01:49.010000"],["2024-07-25T08:01:50.010000"],["2024-07-25T08:01:51.010000"],["2024-07-25T08:01:52.010000"],["2024-07-25T08:01:53.010000"],["2024-07-25T08:01:54.010000"],["2024-07-25T08:01:55.010000"],["2024-07-25T08:01:56.010000"],["2024-07-25T08:01:57.010000"],["2024-07-25T08:01:58.010000"],["2024-07-25T08:01:59.010000"],["2024-07-25T08:02:00.010000"],["2024-07-25T08:02:01.010000"],["2024-07-25T08:02:02.010000"],["2024-07-25T08:02:03.010000"],["2024-07-25T08:02:04.010000"],["2024-07-25T08:02:05.010000"],["2024-07-25T08:02:06.010000"],["2024-07-25T08:02:07.010000"],["2024-07-25T08:02:08.010000"],["2024-07-25T08:02:09.010000"],["2024-07-25T08:02:10.010000"],["2024-07-25T08:02:11.010000"],["2024-07-25T08:02:12.010000"],["2024-07-25T08:02:13.010000"],["2024-07-25T08:02:14.010000"],["2024-07-25T08:02:15.010000"],["2024-07-25T08:02:16.010000"],["2024-07-25T08:02:17.010000"],["2024-07-25T08:02:18.010000"],["2024-07-25T08:02:19.010000"],["2024-07-25T08:02:20.010000"],["2024-07-25T08:02:21.010000"],["2024-07-25T08:02:22.010000"],["2024-07-25T08:02:23.010000"],["2024-07-25T08:02:24.010000"],["2024-07-25T08:02:25.010000"],["2024-07-25T08:02:26.010000"],["2024-07-25T08:02:27.010000"],["2024-07-25T08:02:28.010000"],["2024-07-25T08:02:29.010000"],["2024-07-25T08:02:30.010000"],["2024-07-25T08:02:31.010000"],["2024-07-25T08:02:32.010000"],["2024-07-25T08:02:33.010000"],["2024-07-25T08:02:34.010000"],["2024-07-25T08:02:35.010000"],["2024-07-25T08:02:36.010000"],["2024-07-25T08:02:37.010000"],["2024-07-25T08:02:38.010000"],["2024-07-25T08:02:39.010000"],["2024-07-25T08:02:40.010000"],["2024-07-25T08:02:41.010000"],["2024-07-25T08:02:42.010000"],["2024-07-25T08:02:43.010000"],["2024-07-25T08:02:44.010000"],["2024-07-25T08:02:45.010000"],["2024-07-25T08:02:46.010000"],["2024-07-25T08:02:47.010000"],["2024-07-25T08:02:48.010000"],["2024-07-25T08:02:49.010000"],["2024-07-25T08:02:50.010000"],["2024-07-25T08:02:51.010000"],["2024-07-25T08:02:52.010000"],["2024-07-25T08:02:53.010000"],["2024-07-25T08:02:54.010000"],["2024-07-25T08:02:55.010000"],["2024-07-25T08:02:56.010000"],["2024-07-25T08:02:57.010000"],["2024-07-25T08:02:58.010000"],["2024-07-25T08:02:59.010000"],["2024-07-25T08:03:00.010000"],["2024-07-25T08:03:01.010000"],["2024-07-25T08:03:02.010000"],["2024-07-25T08:03:03.010000"],["2024-07-25T08:03:04.010000"],["2024-07-25T08:03:05.010000"],["2024-07-25T08:03:06.010000"],["2024-07-25T08:03:07.010000"],["2024-07-25T08:03:08.010000"],["2024-07-25T08:03:09.010000"],["2024-07-25T08:03:10.010000"],["2024-07-25T08:03:11.010000"],["2024-07-25T08:03:12.010000"],["2024-07-25T08:03:13.010000"],["2024-07-25T08:03:14.010000"],["2024-07-25T08:03:15.010000"],["2024-07-25T08:03:16.010000"],["2024-07-25T08:03:17.010000"],["2024-07-25T08:03:18.010000"],["2024-07-25T08:03:19.010000"],["2024-07-25T08:03:20.010000"],["2024-07-25T08:03:21.010000"],["2024-07-25T08:03:22.010000"],["2024-07-25T08:03:23.010000"],["2024-07-25T08:03:24.010000"],["2024-07-25T08:03:25.010000"],["2024-07-25T08:03:26.010000"],["2024-07-25T08:03:27.010000"],["2024-07-25T08:03:28.010000"],["2024-07-25T08:03:29.010000"],["2024-07-25T08:03:30.010000"],["2024-07-25T08:03:31.010000"],["2024-07-25T08:03:32.010000"],["2024-07-25T08:03:33.010000"],["2024-07-25T08:03:34.010000"],["2024-07-25T08:03:35.010000"],["2024-07-25T08:03:36.010000"],["2024-07-25T08:03:37.010000"],["2024-07-25T08:03:38.010000"],["2024-07-25T08:03:39.010000"],["2024-07-25T08:03:40.010000"],["2024-07-25T08:03:41.010000"],["2024-07-25T08:03:42.010000"],["2024-07-25T08:03:43.010000"],["2024-07-25T08:03:44.010000"],["2024-07-25T08:03:45.010000"],["2024-07-25T08:03:46.010000"],["2024-07-25T08:03:47.010000"],["2024-07-25T08:03:48.010000"],["2024-07-25T08:03:49.010000"],["2024-07-25T08:03:50.010000"],["2024-07-25T08:03:51.010000"],["2024-07-25T08:03:52.010000"],["2024-07-25T08:03:53.010000"],["2024-07-25T08:03:54.010000"],["2024-07-25T08:03:55.010000"],["2024-07-25T08:03:56.010000"],["2024-07-25T08:03:57.010000"],["2024-07-25T08:03:58.010000"],["2024-07-25T08:03:59.010000"],["2024-07-25T08:04:00.010000"],["2024-07-25T08:04:01.010000"],["2024-07-25T08:04:02.010000"],["2024-07-25T08:04:03.010000"],["2024-07-25T08:04:04.010000"],["2024-07-25T08:04:05.010000"],["2024-07-25T08:04:06.010000"],["2024-07-25T08:04:07.010000"],["2024-07-25T08:04:08.010000"],["2024-07-25T08:04:09.010000"],["2024-07-25T08:04:10.010000"],["2024-07-25T08:04:11.010000"],["2024-07-25T08:04:12.010000"],["2024-07-25T08:04:13.010000"],["2024-07-25T08:04:14.010000"],["2024-07-25T08:04:15.010000"],["2024-07-25T08:04:16.010000"],["2024-07-25T08:04:17.010000"],["2024-07-25T08:04:18.010000"],["2024-07-25T08:04:19.010000"],["2024-07-25T08:04:20.010000"],["2024-07-25T08:04:21.010000"],["2024-07-25T08:04:22.010000"],["2024-07-25T08:04:23.010000"],["2024-07-25T08:04:24.010000"],["2024-07-25T08:04:25.010000"],["2024-07-25T08:04:26.010000"],["2024-07-25T08:04:27.010000"],["2024-07-25T08:04:28.010000"],["2024-07-25T08:04:29.010000"],["2024-07-25T08:04:30.010000"],["2024-07-25T08:04:31.010000"],["2024-07-25T08:04:32.010000"],["2024-07-25T08:04:33.010000"],["2024-07-25T08:04:34.010000"],["2024-07-25T08:04:35.010000"],["2024-07-25T08:04:36.010000"],["2024-07-25T08:04:37.010000"],["2024-07-25T08:04:38.010000"],["2024-07-25T08:04:39.010000"],["2024-07-25T08:04:40.010000"],["2024-07-25T08:04:41.010000"],["2024-07-25T08:04:42.010000"],["2024-07-25T08:04:43.010000"],["2024-07-25T08:04:44.010000"],["2024-07-25T08:04:45.010000"],["2024-07-25T08:04:46.010000"],["2024-07-25T08:04:47.010000"],["2024-07-25T08:04:48.010000"],["2024-07-25T08:04:49.010000"],["2024-07-25T08:04:50.010000"],["2024-07-25T08:04:51.010000"],["2024-07-25T08:04:52.010000"],["2024-07-25T08:04:53.010000"],["2024-07-25T08:04:54.010000"],["2024-07-25T08:04:55.010000"],["2024-07-25T08:04:56.010000"],["2024-07-25T08:04:57.010000"],["2024-07-25T08:04:58.010000"],["2024-07-25T08:04:59.010000"],["2024-07-25T08:05:00.010000"],["2024-07-25T08:05:01.010000"],["2024-07-25T08:05:02.010000"],["2024-07-25T08:05:03.010000"],["2024-07-25T08:05:04.010000"],["2024-07-25T08:05:05.010000"],["2024-07-25T08:05:06.010000"],["2024-07-25T08:05:07.010000"],["2024-07-25T08:05:08.010000"],["2024-07-25T08:05:09.010000"],["2024-07-25T08:05:10.010000"],["2024-07-25T08:05:11.010000"],["2024-07-25T08:05:12.010000"],["2024-07-25T08:05:13.010000"],["2024-07-25T08:05:14.010000"],["2024-07-25T08:05:15.010000"],["2024-07-25T08:05:16.010000"],["2024-07-25T08:05:17.010000"],["2024-07-25T08:05:18.010000"],["2024-07-25T08:05:19.010000"],["2024-07-25T08:05:20.010000"],["2024-07-25T08:05:21.010000"],["2024-07-25T08:05:22.010000"],["2024-07-25T08:05:23.010000"],["2024-07-25T08:05:24.010000"],["2024-07-25T08:05:25.010000"],["2024-07-25T08:05:26.010000"],["2024-07-25T08:05:27.010000"],["2024-07-25T08:05:28.010000"],["2024-07-25T08:05:29.010000"],["2024-07-25T08:05:30.010000"],["2024-07-25T08:05:31.010000"],["2024-07-25T08:05:32.010000"],["2024-07-25T08:05:33.010000"],["2024-07-25T08:05:34.010000"],["2024-07-25T08:05:35.010000"],["2024-07-25T08:05:36.010000"],["2024-07-25T08:05:37.010000"],["2024-07-25T08:05:38.010000"],["2024-07-25T08:05:39.010000"],["2024-07-25T08:05:40.010000"],["2024-07-25T08:05:41.010000"],["2024-07-25T08:05:42.010000"],["2024-07-25T08:05:43.010000"],["2024-07-25T08:05:44.010000"],["2024-07-25T08:05:45.010000"],["2024-07-25T08:05:46.010000"],["2024-07-25T08:05:47.010000"],["2024-07-25T08:05:48.010000"],["2024-07-25T08:05:49.010000"],["2024-07-25T08:05:50.010000"],["2024-07-25T08:05:51.010000"],["2024-07-25T08:05:52.010000"],["2024-07-25T08:05:53.010000"],["2024-07-25T08:05:54.010000"],["2024-07-25T08:05:55.010000"],["2024-07-25T08:05:56.010000"],["2024-07-25T08:05:57.010000"],["2024-07-25T08:05:58.010000"],["2024-07-25T08:05:59.010000"],["2024-07-25T08:06:00.010000"],["2024-07-25T08:06:01.010000"],["2024-07-25T08:06:02.010000"],["2024-07-25T08:06:03.010000"],["2024-07-25T08:06:04.010000"],["2024-07-25T08:06:05.010000"],["2024-07-25T08:06:06.010000"],["2024-07-25T08:06:07.010000"],["2024-07-25T08:06:08.010000"],["2024-07-25T08:06:09.010000"],["2024-07-25T08:06:10.010000"],["2024-07-25T08:06:11.010000"],["2024-07-25T08:06:12.010000"],["2024-07-25T08:06:13.010000"],["2024-07-25T08:06:14.010000"],["2024-07-25T08:06:15.010000"],["2024-07-25T08:06:16.010000"],["2024-07-25T08:06:17.010000"],["2024-07-25T08:06:18.010000"],["2024-07-25T08:06:19.010000"],["2024-07-25T08:06:20.010000"],["2024-07-25T08:06:21.010000"],["2024-07-25T08:06:22.010000"],["2024-07-25T08:06:23.010000"],["2024-07-25T08:06:24.010000"],["2024-07-25T08:06:25.010000"],["2024-07-25T08:06:26.010000"],["2024-07-25T08:06:27.010000"],["2024-07-25T08:06:28.010000"],["2024-07-25T08:06:29.010000"],["2024-07-25T08:06:30.010000"],["2024-07-25T08:06:31.010000"],["2024-07-25T08:06:32.010000"],["2024-07-25T08:06:33.010000"],["2024-07-25T08:06:34.010000"],["2024-07-25T08:06:35.010000"],["2024-07-25T08:06:36.010000"],["2024-07-25T08:06:37.010000"],["2024-07-25T08:06:38.010000"],["2024-07-25T08:06:39.010000"],["2024-07-25T08:06:40.010000"],["2024-07-25T08:06:41.010000"],["2024-07-25T08:06:42.010000"],["2024-07-25T08:06:43.010000"],["2024-07-25T08:06:44.010000"],["2024-07-25T08:06:45.010000"],["2024-07-25T08:06:46.010000"],["2024-07-25T08:06:47.010000"],["2024-07-25T08:06:48.010000"],["2024-07-25T08:06:49.010000"],["2024-07-25T08:06:50.010000"],["2024-07-25T08:06:51.010000"],["2024-07-25T08:06:52.010000"],["2024-07-25T08:06:53.010000"],["2024-07-25T08:06:54.010000"],["2024-07-25T08:06:55.010000"],["2024-07-25T08:06:56.010000"],["2024-07-25T08:06:57.010000"],["2024-07-25T08:06:58.010000"],["2024-07-25T08:06:59.010000"],["2024-07-25T08:07:00.010000"],["2024-07-25T08:07:01.010000"],["2024-07-25T08:07:02.010000"],["2024-07-25T08:07:03.010000"],["2024-07-25T08:07:04.010000"],["2024-07-25T08:07:05.010000"],["2024-07-25T08:07:06.010000"],["2024-07-25T08:07:07.010000"],["2024-07-25T08:07:08.010000"],["2024-07-25T08:07:09.010000"],["2024-07-25T08:07:10.010000"],["2024-07-25T08:07:11.010000"],["2024-07-25T08:07:12.010000"],["2024-07-25T08:07:13.010000"],["2024-07-25T08:07:14.010000"],["2024-07-25T08:07:15.010000"],["2024-07-25T08:07:16.010000"],["2024-07-25T08:07:17.010000"],["2024-07-25T08:07:18.010000"],["2024-07-25T08:07:19.010000"],["2024-07-25T08:07:20.010000"],["2024-07-25T08:07:21.010000"],["2024-07-25T08:07:22.010000"],["2024-07-25T08:07:23.010000"],["2024-07-25T08:07:24.010000"],["2024-07-25T08:07:25.010000"],["2024-07-25T08:07:26.010000"],["2024-07-25T08:07:27.010000"],["2024-07-25T08:07:28.010000"],["2024-07-25T08:07:29.010000"],["2024-07-25T08:07:30.010000"],["2024-07-25T08:07:31.010000"],["2024-07-25T08:07:32.010000"],["2024-07-25T08:07:33.010000"],["2024-07-25T08:07:34.010000"],["2024-07-25T08:07:35.010000"],["2024-07-25T08:07:36.010000"],["2024-07-25T08:07:37.010000"],["2024-07-25T08:07:38.010000"],["2024-07-25T08:07:39.010000"],["2024-07-25T08:07:40.010000"],["2024-07-25T08:07:41.010000"],["2024-07-25T08:07:42.010000"],["2024-07-25T08:07:43.010000"],["2024-07-25T08:07:44.010000"],["2024-07-25T08:07:45.010000"],["2024-07-25T08:07:46.010000"],["2024-07-25T08:07:47.010000"],["2024-07-25T08:07:48.010000"],["2024-07-25T08:07:49.010000"],["2024-07-25T08:07:50.010000"],["2024-07-25T08:07:51.010000"],["2024-07-25T08:07:52.010000"],["2024-07-25T08:07:53.010000"],["2024-07-25T08:07:54.010000"],["2024-07-25T08:07:55.010000"],["2024-07-25T08:07:56.010000"],["2024-07-25T08:07:57.010000"],["2024-07-25T08:07:58.010000"],["2024-07-25T08:07:59.010000"],["2024-07-25T08:08:00.010000"],["2024-07-25T08:08:01.010000"],["2024-07-25T08:08:02.010000"],["2024-07-25T08:08:03.010000"],["2024-07-25T08:08:04.010000"],["2024-07-25T08:08:05.010000"],["2024-07-25T08:08:06.010000"],["2024-07-25T08:08:07.010000"],["2024-07-25T08:08:08.010000"],["2024-07-25T08:08:09.010000"],["2024-07-25T08:08:10.010000"],["2024-07-25T08:08:11.010000"],["2024-07-25T08:08:12.010000"],["2024-07-25T08:08:13.010000"],["2024-07-25T08:08:14.010000"],["2024-07-25T08:08:15.010000"],["2024-07-25T08:08:16.010000"],["2024-07-25T08:08:17.010000"],["2024-07-25T08:08:18.010000"],["2024-07-25T08:08:19.010000"],["2024-07-25T08:08:20.010000"],["2024-07-25T08:08:21.010000"],["2024-07-25T08:08:22.010000"],["2024-07-25T08:08:23.010000"],["2024-07-25T08:08:24.010000"],["2024-07-25T08:08:25.010000"],["2024-07-25T08:08:26.010000"],["2024-07-25T08:08:27.010000"],["2024-07-25T08:08:28.010000"],["2024-07-25T08:08:29.010000"],["2024-07-25T08:08:30.010000"],["2024-07-25T08:08:31.010000"],["2024-07-25T08:08:32.010000"],["2024-07-25T08:08:33.010000"],["2024-07-25T08:08:34.010000"],["2024-07-25T08:08:35.010000"],["2024-07-25T08:08:36.010000"],["2024-07-25T08:08:37.010000"],["2024-07-25T08:08:38.010000"],["2024-07-25T08:08:39.010000"],["2024-07-25T08:08:40.010000"],["2024-07-25T08:08:41.010000"],["2024-07-25T08:08:42.010000"],["2024-07-25T08:08:43.010000"],["2024-07-25T08:08:44.010000"],["2024-07-25T08:08:45.010000"],["2024-07-25T08:08:46.010000"],["2024-07-25T08:08:47.010000"],["2024-07-25T08:08:48.010000"],["2024-07-25T08:08:49.010000"],["2024-07-25T08:08:50.010000"],["2024-07-25T08:08:51.010000"],["2024-07-25T08:08:52.010000"],["2024-07-25T08:08:53.010000"],["2024-07-25T08:08:54.010000"],["2024-07-25T08:08:55.010000"],["2024-07-25T08:08:56.010000"],["2024-07-25T08:08:57.010000"],["2024-07-25T08:08:58.010000"],["2024-07-25T08:08:59.010000"],["2024-07-25T08:09:00.010000"],["2024-07-25T08:09:01.010000"],["2024-07-25T08:09:02.010000"],["2024-07-25T08:09:03.010000"],["2024-07-25T08:09:04.010000"],["2024-07-25T08:09:05.010000"],["2024-07-25T08:09:06.010000"],["2024-07-25T08:09:07.010000"],["2024-07-25T08:09:08.010000"],["2024-07-25T08:09:09.010000"],["2024-07-25T08:09:10.010000"],["2024-07-25T08:09:11.010000"],["2024-07-25T08:09:12.010000"],["2024-07-25T08:09:13.010000"],["2024-07-25T08:09:14.010000"],["2024-07-25T08:09:15.010000"],["2024-07-25T08:09:16.010000"],["2024-07-25T08:09:17.010000"],["2024-07-25T08:09:18.010000"],["2024-07-25T08:09:19.010000"],["2024-07-25T08:09:20.010000"],["2024-07-25T08:09:21.010000"],["2024-07-25T08:09:22.010000"],["2024-07-25T08:09:23.010000"],["2024-07-25T08:09:24.010000"],["2024-07-25T08:09:25.010000"],["2024-07-25T08:09:26.010000"],["2024-07-25T08:09:27.010000"],["2024-07-25T08:09:28.010000"],["2024-07-25T08:09:29.010000"],["2024-07-25T08:09:30.010000"],["2024-07-25T08:09:31.010000"],["2024-07-25T08:09:32.010000"],["2024-07-25T08:09:33.010000"],["2024-07-25T08:09:34.010000"],["2024-07-25T08:09:35.010000"],["2024-07-25T08:09:36.010000"],["2024-07-25T08:09:37.010000"],["2024-07-25T08:09:38.010000"],["2024-07-25T08:09:39.010000"],["2024-07-25T08:09:40.010000"],["2024-07-25T08:09:41.010000"],["2024-07-25T08:09:42.010000"],["2024-07-25T08:09:43.010000"],["2024-07-25T08:09:44.010000"],["2024-07-25T08:09:45.010000"],["2024-07-25T08:09:46.010000"],["2024-07-25T08:09:47.010000"],["2024-07-25T08:09:48.010000"],["2024-07-25T08:09:49.010000"],["2024-07-25T08:09:50.010000"],["2024-07-25T08:09:51.010000"],["2024-07-25T08:09:52.010000"],["2024-07-25T08:09:53.010000"],["2024-07-25T08:09:54.010000"],["2024-07-25T08:09:55.010000"],["2024-07-25T08:09:56.010000"],["2024-07-25T08:09:57.010000"],["2024-07-25T08:09:58.010000"],["2024-07-25T08:09:59.010000"],["2024-07-25T08:10:00.010000"],["2024-07-25T08:10:01.010000"],["2024-07-25T08:10:02.010000"],["2024-07-25T08:10:03.010000"],["2024-07-25T08:10:04.010000"],["2024-07-25T08:10:05.010000"],["2024-07-25T08:10:06.010000"],["2024-07-25T08:10:07.010000"],["2024-07-25T08:10:08.010000"],["2024-07-25T08:10:09.010000"],["2024-07-25T08:10:10.010000"],["2024-07-25T08:10:11.010000"],["2024-07-25T08:10:12.010000"],["2024-07-25T08:10:13.010000"],["2024-07-25T08:10:14.010000"],["2024-07-25T08:10:15.010000"],["2024-07-25T08:10:16.010000"],["2024-07-25T08:10:17.010000"],["2024-07-25T08:10:18.010000"],["2024-07-25T08:10:19.010000"],["2024-07-25T08:10:20.010000"],["2024-07-25T08:10:21.010000"],["2024-07-25T08:10:22.010000"],["2024-07-25T08:10:23.010000"],["2024-07-25T08:10:24.010000"],["2024-07-25T08:10:25.010000"],["2024-07-25T08:10:26.010000"],["2024-07-25T08:10:27.010000"],["2024-07-25T08:10:28.010000"],["2024-07-25T08:10:29.010000"],["2024-07-25T08:10:30.010000"],["2024-07-25T08:10:31.010000"],["2024-07-25T08:10:32.010000"],["2024-07-25T08:10:33.010000"],["2024-07-25T08:10:34.010000"],["2024-07-25T08:10:35.010000"],["2024-07-25T08:10:36.010000"],["2024-07-25T08:10:37.010000"],["2024-07-25T08:10:38.010000"],["2024-07-25T08:10:39.010000"],["2024-07-25T08:10:40.010000"],["2024-07-25T08:10:41.010000"],["2024-07-25T08:10:42.010000"],["2024-07-25T08:10:43.010000"],["2024-07-25T08:10:44.010000"],["2024-07-25T08:10:45.010000"],["2024-07-25T08:10:46.010000"],["2024-07-25T08:10:47.010000"],["2024-07-25T08:10:48.010000"],["2024-07-25T08:10:49.010000"],["2024-07-25T08:10:50.010000"],["2024-07-25T08:10:51.010000"],["2024-07-25T08:10:52.010000"],["2024-07-25T08:10:53.010000"],["2024-07-25T08:10:54.010000"],["2024-07-25T08:10:55.010000"],["2024-07-25T08:10:56.010000"],["2024-07-25T08:10:57.010000"],["2024-07-25T08:10:58.010000"],["2024-07-25T08:10:59.010000"],["2024-07-25T08:11:00.010000"],["2024-07-25T08:11:01.010000"],["2024-07-25T08:11:02.010000"],["2024-07-25T08:11:03.010000"],["2024-07-25T08:11:04.010000"],["2024-07-25T08:11:05.010000"],["2024-07-25T08:11:06.010000"],["2024-07-25T08:11:07.010000"],["2024-07-25T08:11:08.010000"],["2024-07-25T08:11:09.010000"],["2024-07-25T08:11:10.010000"],["2024-07-25T08:11:11.010000"],["2024-07-25T08:11:12.010000"],["2024-07-25T08:11:13.010000"],["2024-07-25T08:11:14.010000"],["2024-07-25T08:11:15.010000"],["2024-07-25T08:11:16.010000"],["2024-07-25T08:11:17.010000"],["2024-07-25T08:11:18.010000"],["2024-07-25T08:11:19.010000"],["2024-07-25T08:11:20.010000"],["2024-07-25T08:11:21.010000"],["2024-07-25T08:11:22.010000"],["2024-07-25T08:11:23.010000"],["2024-07-25T08:11:24.010000"],["2024-07-25T08:11:25.010000"],["2024-07-25T08:11:26.010000"],["2024-07-25T08:11:27.010000"],["2024-07-25T08:11:28.010000"],["2024-07-25T08:11:29.010000"],["2024-07-25T08:11:30.010000"],["2024-07-25T08:11:31.010000"],["2024-07-25T08:11:32.010000"],["2024-07-25T08:11:33.010000"],["2024-07-25T08:11:34.010000"],["2024-07-25T08:11:35.010000"],["2024-07-25T08:11:36.010000"],["2024-07-25T08:11:37.010000"],["2024-07-25T08:11:38.010000"],["2024-07-25T08:11:39.010000"],["2024-07-25T08:11:40.010000"],["2024-07-25T08:11:41.010000"],["2024-07-25T08:11:42.010000"],["2024-07-25T08:11:43.010000"],["2024-07-25T08:11:44.010000"],["2024-07-25T08:11:45.010000"],["2024-07-25T08:11:46.010000"],["2024-07-25T08:11:47.010000"],["2024-07-25T08:11:48.010000"],["2024-07-25T08:11:49.010000"],["2024-07-25T08:11:50.010000"],["2024-07-25T08:11:51.010000"],["2024-07-25T08:11:52.010000"],["2024-07-25T08:11:53.010000"],["2024-07-25T08:11:54.010000"],["2024-07-25T08:11:55.010000"],["2024-07-25T08:11:56.010000"],["2024-07-25T08:11:57.010000"],["2024-07-25T08:11:58.010000"],["2024-07-25T08:11:59.010000"],["2024-07-25T08:12:00.010000"],["2024-07-25T08:12:01.010000"],["2024-07-25T08:12:02.010000"],["2024-07-25T08:12:03.010000"],["2024-07-25T08:12:04.010000"],["2024-07-25T08:12:05.010000"],["2024-07-25T08:12:06.010000"],["2024-07-25T08:12:07.010000"],["2024-07-25T08:12:08.010000"],["2024-07-25T08:12:09.010000"],["2024-07-25T08:12:10.010000"],["2024-07-25T08:12:11.010000"],["2024-07-25T08:12:12.010000"],["2024-07-25T08:12:13.010000"],["2024-07-25T08:12:14.010000"],["2024-07-25T08:12:15.010000"],["2024-07-25T08:12:16.010000"],["2024-07-25T08:12:17.010000"],["2024-07-25T08:12:18.010000"],["2024-07-25T08:12:19.010000"],["2024-07-25T08:12:20.010000"],["2024-07-25T08:12:21.010000"],["2024-07-25T08:12:22.010000"],["2024-07-25T08:12:23.010000"],["2024-07-25T08:12:24.010000"],["2024-07-25T08:12:25.010000"],["2024-07-25T08:12:26.010000"],["2024-07-25T08:12:27.010000"],["2024-07-25T08:12:28.010000"],["2024-07-25T08:12:29.010000"],["2024-07-25T08:12:30.010000"],["2024-07-25T08:12:31.010000"],["2024-07-25T08:12:32.010000"],["2024-07-25T08:12:33.010000"],["2024-07-25T08:12:34.010000"],["2024-07-25T08:12:35.010000"],["2024-07-25T08:12:36.010000"],["2024-07-25T08:12:37.010000"],["2024-07-25T08:12:38.010000"],["2024-07-25T08:12:39.010000"],["2024-07-25T08:12:40.010000"],["2024-07-25T08:12:41.010000"],["2024-07-25T08:12:42.010000"],["2024-07-25T08:12:43.010000"],["2024-07-25T08:12:44.010000"],["2024-07-25T08:12:45.010000"],["2024-07-25T08:12:46.010000"],["2024-07-25T08:12:47.010000"],["2024-07-25T08:12:48.010000"],["2024-07-25T08:12:49.010000"],["2024-07-25T08:12:50.010000"],["2024-07-25T08:12:51.010000"],["2024-07-25T08:12:52.010000"],["2024-07-25T08:12:53.010000"],["2024-07-25T08:12:54.010000"],["2024-07-25T08:12:55.010000"],["2024-07-25T08:12:56.010000"],["2024-07-25T08:12:57.010000"],["2024-07-25T08:12:58.010000"],["2024-07-25T08:12:59.010000"],["2024-07-25T08:13:00.010000"],["2024-07-25T08:13:01.010000"],["2024-07-25T08:13:02.010000"],["2024-07-25T08:13:03.010000"],["2024-07-25T08:13:04.010000"],["2024-07-25T08:13:05.010000"],["2024-07-25T08:13:06.010000"],["2024-07-25T08:13:07.010000"],["2024-07-25T08:13:08.010000"],["2024-07-25T08:13:09.010000"],["2024-07-25T08:13:10.010000"],["2024-07-25T08:13:11.010000"],["2024-07-25T08:13:12.010000"],["2024-07-25T08:13:13.010000"],["2024-07-25T08:13:14.010000"],["2024-07-25T08:13:15.010000"],["2024-07-25T08:13:16.010000"],["2024-07-25T08:13:17.010000"],["2024-07-25T08:13:18.010000"],["2024-07-25T08:13:19.010000"],["2024-07-25T08:13:20.010000"],["2024-07-25T08:13:21.010000"],["2024-07-25T08:13:22.010000"],["2024-07-25T08:13:23.010000"],["2024-07-25T08:13:24.010000"],["2024-07-25T08:13:25.010000"],["2024-07-25T08:13:26.010000"],["2024-07-25T08:13:27.010000"],["2024-07-25T08:13:28.010000"],["2024-07-25T08:13:29.010000"],["2024-07-25T08:13:30.010000"],["2024-07-25T08:13:31.010000"],["2024-07-25T08:13:32.010000"],["2024-07-25T08:13:33.010000"],["2024-07-25T08:13:34.010000"],["2024-07-25T08:13:35.010000"],["2024-07-25T08:13:36.010000"],["2024-07-25T08:13:37.010000"],["2024-07-25T08:13:38.010000"],["2024-07-25T08:13:39.010000"],["2024-07-25T08:13:40.010000"],["2024-07-25T08:13:41.010000"],["2024-07-25T08:13:42.010000"],["2024-07-25T08:13:43.010000"],["2024-07-25T08:13:44.010000"],["2024-07-25T08:13:45.010000"],["2024-07-25T08:13:46.010000"],["2024-07-25T08:13:47.010000"],["2024-07-25T08:13:48.010000"],["2024-07-25T08:13:49.010000"],["2024-07-25T08:13:50.010000"],["2024-07-25T08:13:51.010000"],["2024-07-25T08:13:52.010000"],["2024-07-25T08:13:53.010000"],["2024-07-25T08:13:54.010000"],["2024-07-25T08:13:55.010000"],["2024-07-25T08:13:56.010000"],["2024-07-25T08:13:57.010000"],["2024-07-25T08:13:58.010000"],["2024-07-25T08:13:59.010000"],["2024-07-25T08:14:00.010000"],["2024-07-25T08:14:01.010000"],["2024-07-25T08:14:02.010000"],["2024-07-25T08:14:03.010000"],["2024-07-25T08:14:04.010000"],["2024-07-25T08:14:05.010000"],["2024-07-25T08:14:06.010000"],["2024-07-25T08:14:07.010000"],["2024-07-25T08:14:08.010000"],["2024-07-25T08:14:09.010000"],["2024-07-25T08:14:10.010000"],["2024-07-25T08:14:11.010000"],["2024-07-25T08:14:12.010000"],["2024-07-25T08:14:13.010000"],["2024-07-25T08:14:14.010000"],["2024-07-25T08:14:15.010000"],["2024-07-25T08:14:16.010000"],["2024-07-25T08:14:17.010000"],["2024-07-25T08:14:18.010000"],["2024-07-25T08:14:19.010000"],["2024-07-25T08:14:20.010000"],["2024-07-25T08:14:21.010000"],["2024-07-25T08:14:22.010000"],["2024-07-25T08:14:23.010000"],["2024-07-25T08:14:24.010000"],["2024-07-25T08:14:25.010000"],["2024-07-25T08:14:26.010000"],["2024-07-25T08:14:27.010000"],["2024-07-25T08:14:28.010000"],["2024-07-25T08:14:29.010000"],["2024-07-25T08:14:30.010000"],["2024-07-25T08:14:31.010000"],["2024-07-25T08:14:32.010000"],["2024-07-25T08:14:33.010000"],["2024-07-25T08:14:34.010000"],["2024-07-25T08:14:35.010000"],["2024-07-25T08:14:36.010000"],["2024-07-25T08:14:37.010000"],["2024-07-25T08:14:38.010000"],["2024-07-25T08:14:39.010000"],["2024-07-25T08:14:40.010000"],["2024-07-25T08:14:41.010000"],["2024-07-25T08:14:42.010000"],["2024-07-25T08:14:43.010000"],["2024-07-25T08:14:44.010000"],["2024-07-25T08:14:45.010000"],["2024-07-25T08:14:46.010000"],["2024-07-25T08:14:47.010000"],["2024-07-25T08:14:48.010000"],["2024-07-25T08:14:49.010000"],["2024-07-25T08:14:50.010000"],["2024-07-25T08:14:51.010000"],["2024-07-25T08:14:52.010000"],["2024-07-25T08:14:53.010000"],["2024-07-25T08:14:54.010000"],["2024-07-25T08:14:55.010000"],["2024-07-25T08:14:56.010000"],["2024-07-25T08:14:57.010000"],["2024-07-25T08:14:58.010000"],["2024-07-25T08:14:59.010000"],["2024-07-25T08:15:00.010000"],["2024-07-25T08:15:01.010000"],["2024-07-25T08:15:02.010000"],["2024-07-25T08:15:03.010000"],["2024-07-25T08:15:04.010000"],["2024-07-25T08:15:05.010000"],["2024-07-25T08:15:06.010000"],["2024-07-25T08:15:07.010000"],["2024-07-25T08:15:08.010000"],["2024-07-25T08:15:09.010000"],["2024-07-25T08:15:10.010000"],["2024-07-25T08:15:11.010000"],["2024-07-25T08:15:12.010000"],["2024-07-25T08:15:13.010000"],["2024-07-25T08:15:14.010000"],["2024-07-25T08:15:15.010000"],["2024-07-25T08:15:16.010000"],["2024-07-25T08:15:17.010000"],["2024-07-25T08:15:18.010000"],["2024-07-25T08:15:19.010000"],["2024-07-25T08:15:20.010000"],["2024-07-25T08:15:21.010000"],["2024-07-25T08:15:22.010000"],["2024-07-25T08:15:23.010000"],["2024-07-25T08:15:24.010000"],["2024-07-25T08:15:25.010000"],["2024-07-25T08:15:26.010000"],["2024-07-25T08:15:27.010000"],["2024-07-25T08:15:28.010000"],["2024-07-25T08:15:29.010000"],["2024-07-25T08:15:30.010000"],["2024-07-25T08:15:31.010000"],["2024-07-25T08:15:32.010000"],["2024-07-25T08:15:33.010000"],["2024-07-25T08:15:34.010000"],["2024-07-25T08:15:35.010000"],["2024-07-25T08:15:36.010000"],["2024-07-25T08:15:37.010000"],["2024-07-25T08:15:38.010000"],["2024-07-25T08:15:39.010000"],["2024-07-25T08:15:40.010000"],["2024-07-25T08:15:41.010000"],["2024-07-25T08:15:42.010000"],["2024-07-25T08:15:43.010000"],["2024-07-25T08:15:44.010000"],["2024-07-25T08:15:45.010000"],["2024-07-25T08:15:46.010000"],["2024-07-25T08:15:47.010000"],["2024-07-25T08:15:48.010000"],["2024-07-25T08:15:49.010000"],["2024-07-25T08:15:50.010000"],["2024-07-25T08:15:51.010000"],["2024-07-25T08:15:52.010000"],["2024-07-25T08:15:53.010000"],["2024-07-25T08:15:54.010000"],["2024-07-25T08:15:55.010000"],["2024-07-25T08:15:56.010000"],["2024-07-25T08:15:57.010000"],["2024-07-25T08:15:58.010000"],["2024-07-25T08:15:59.010000"],["2024-07-25T08:16:00.010000"],["2024-07-25T08:16:01.010000"],["2024-07-25T08:16:02.010000"],["2024-07-25T08:16:03.010000"],["2024-07-25T08:16:04.010000"],["2024-07-25T08:16:05.010000"],["2024-07-25T08:16:06.010000"],["2024-07-25T08:16:07.010000"],["2024-07-25T08:16:08.010000"],["2024-07-25T08:16:09.010000"],["2024-07-25T08:16:10.010000"],["2024-07-25T08:16:11.010000"],["2024-07-25T08:16:12.010000"],["2024-07-25T08:16:13.010000"],["2024-07-25T08:16:14.010000"],["2024-07-25T08:16:15.010000"],["2024-07-25T08:16:16.010000"],["2024-07-25T08:16:17.010000"],["2024-07-25T08:16:18.010000"],["2024-07-25T08:16:19.010000"],["2024-07-25T08:16:20.010000"],["2024-07-25T08:16:21.010000"],["2024-07-25T08:16:22.010000"],["2024-07-25T08:16:23.010000"],["2024-07-25T08:16:24.010000"],["2024-07-25T08:16:25.010000"],["2024-07-25T08:16:26.010000"],["2024-07-25T08:16:27.010000"],["2024-07-25T08:16:28.010000"],["2024-07-25T08:16:29.010000"],["2024-07-25T08:16:30.010000"],["2024-07-25T08:16:31.010000"],["2024-07-25T08:16:32.010000"],["2024-07-25T08:16:33.010000"],["2024-07-25T08:16:34.010000"],["2024-07-25T08:16:35.010000"],["2024-07-25T08:16:36.010000"],["2024-07-25T08:16:37.010000"],["2024-07-25T08:16:38.010000"],["2024-07-25T08:16:39.010000"],["2024-07-25T08:16:40.010000"],["2024-07-25T08:16:41.010000"],["2024-07-25T08:16:42.010000"],["2024-07-25T08:16:43.010000"],["2024-07-25T08:16:44.010000"],["2024-07-25T08:16:45.010000"],["2024-07-25T08:16:46.010000"],["2024-07-25T08:16:47.010000"],["2024-07-25T08:16:48.010000"],["2024-07-25T08:16:49.010000"],["2024-07-25T08:16:50.010000"],["2024-07-25T08:16:51.010000"],["2024-07-25T08:16:52.010000"],["2024-07-25T08:16:53.010000"],["2024-07-25T08:16:54.010000"],["2024-07-25T08:16:55.010000"],["2024-07-25T08:16:56.010000"],["2024-07-25T08:16:57.010000"],["2024-07-25T08:16:58.010000"],["2024-07-25T08:16:59.010000"],["2024-07-25T08:17:00.010000"],["2024-07-25T08:17:01.010000"],["2024-07-25T08:17:02.010000"],["2024-07-25T08:17:03.010000"],["2024-07-25T08:17:04.010000"],["2024-07-25T08:17:05.010000"],["2024-07-25T08:17:06.010000"],["2024-07-25T08:17:07.010000"],["2024-07-25T08:17:08.010000"],["2024-07-25T08:17:09.010000"],["2024-07-25T08:17:10.010000"],["2024-07-25T08:17:11.010000"],["2024-07-25T08:17:12.010000"],["2024-07-25T08:17:13.010000"],["2024-07-25T08:17:14.010000"],["2024-07-25T08:17:15.010000"],["2024-07-25T08:17:16.010000"],["2024-07-25T08:17:17.010000"],["2024-07-25T08:17:18.010000"],["2024-07-25T08:17:19.010000"],["2024-07-25T08:17:20.010000"],["2024-07-25T08:17:21.010000"],["2024-07-25T08:17:22.010000"],["2024-07-25T08:17:23.010000"],["2024-07-25T08:17:24.010000"],["2024-07-25T08:17:25.010000"],["2024-07-25T08:17:26.010000"],["2024-07-25T08:17:27.010000"],["2024-07-25T08:17:28.010000"],["2024-07-25T08:17:29.010000"],["2024-07-25T08:17:30.010000"],["2024-07-25T08:17:31.010000"],["2024-07-25T08:17:32.010000"],["2024-07-25T08:17:33.010000"],["2024-07-25T08:17:34.010000"],["2024-07-25T08:17:35.010000"],["2024-07-25T08:17:36.010000"],["2024-07-25T08:17:37.010000"],["2024-07-25T08:17:38.010000"],["2024-07-25T08:17:39.010000"],["2024-07-25T08:17:40.010000"],["2024-07-25T08:17:41.010000"],["2024-07-25T08:17:42.010000"],["2024-07-25T08:17:43.010000"],["2024-07-25T08:17:44.010000"],["2024-07-25T08:17:45.010000"],["2024-07-25T08:17:46.010000"],["2024-07-25T08:17:47.010000"],["2024-07-25T08:17:48.010000"],["2024-07-25T08:17:49.010000"],["2024-07-25T08:17:50.010000"],["2024-07-25T08:17:51.010000"],["2024-07-25T08:17:52.010000"],["2024-07-25T08:17:53.010000"],["2024-07-25T08:17:54.010000"],["2024-07-25T08:17:55.010000"],["2024-07-25T08:17:56.010000"],["2024-07-25T08:17:57.010000"],["2024-07-25T08:17:58.010000"],["2024-07-25T08:17:59.010000"],["2024-07-25T08:18:00.010000"],["2024-07-25T08:18:01.010000"],["2024-07-25T08:18:02.010000"],["2024-07-25T08:18:03.010000"],["2024-07-25T08:18:04.010000"],["2024-07-25T08:18:05.010000"],["2024-07-25T08:18:06.010000"],["2024-07-25T08:18:07.010000"],["2024-07-25T08:18:08.010000"],["2024-07-25T08:18:09.010000"],["2024-07-25T08:18:10.010000"],["2024-07-25T08:18:11.010000"],["2024-07-25T08:18:12.010000"],["2024-07-25T08:18:13.010000"],["2024-07-25T08:18:14.010000"],["2024-07-25T08:18:15.010000"],["2024-07-25T08:18:16.010000"],["2024-07-25T08:18:17.010000"],["2024-07-25T08:18:18.010000"],["2024-07-25T08:18:19.010000"],["2024-07-25T08:18:20.010000"],["2024-07-25T08:18:21.010000"],["2024-07-25T08:18:22.010000"],["2024-07-25T08:18:23.010000"],["2024-07-25T08:18:24.010000"],["2024-07-25T08:18:25.010000"],["2024-07-25T08:18:26.010000"],["2024-07-25T08:18:27.010000"],["2024-07-25T08:18:28.010000"],["2024-07-25T08:18:29.010000"],["2024-07-25T08:18:30.010000"],["2024-07-25T08:18:31.010000"],["2024-07-25T08:18:32.010000"],["2024-07-25T08:18:33.010000"],["2024-07-25T08:18:34.010000"],["2024-07-25T08:18:35.010000"],["2024-07-25T08:18:36.010000"],["2024-07-25T08:18:37.010000"],["2024-07-25T08:18:38.010000"],["2024-07-25T08:18:39.010000"],["2024-07-25T08:18:40.010000"],["2024-07-25T08:18:41.010000"],["2024-07-25T08:18:42.010000"],["2024-07-25T08:18:43.010000"],["2024-07-25T08:18:44.010000"],["2024-07-25T08:18:45.010000"],["2024-07-25T08:18:46.010000"],["2024-07-25T08:18:47.010000"],["2024-07-25T08:18:48.010000"],["2024-07-25T08:18:49.010000"],["2024-07-25T08:18:50.010000"],["2024-07-25T08:18:51.010000"],["2024-07-25T08:18:52.010000"],["2024-07-25T08:18:53.010000"],["2024-07-25T08:18:54.010000"],["2024-07-25T08:18:55.010000"],["2024-07-25T08:18:56.010000"],["2024-07-25T08:18:57.010000"],["2024-07-25T08:18:58.010000"],["2024-07-25T08:18:59.010000"],["2024-07-25T08:19:00.010000"],["2024-07-25T08:19:01.010000"],["2024-07-25T08:19:02.010000"],["2024-07-25T08:19:03.010000"],["2024-07-25T08:19:04.010000"],["2024-07-25T08:19:05.010000"],["2024-07-25T08:19:06.010000"],["2024-07-25T08:19:07.010000"],["2024-07-25T08:19:08.010000"],["2024-07-25T08:19:09.010000"],["2024-07-25T08:19:10.010000"],["2024-07-25T08:19:11.010000"],["2024-07-25T08:19:12.010000"],["2024-07-25T08:19:13.010000"],["2024-07-25T08:19:14.010000"],["2024-07-25T08:19:15.010000"],["2024-07-25T08:19:16.010000"],["2024-07-25T08:19:17.010000"],["2024-07-25T08:19:18.010000"],["2024-07-25T08:19:19.010000"],["2024-07-25T08:19:20.010000"],["2024-07-25T08:19:21.010000"],["2024-07-25T08:19:22.010000"],["2024-07-25T08:19:23.010000"],["2024-07-25T08:19:24.010000"],["2024-07-25T08:19:25.010000"],["2024-07-25T08:19:26.010000"],["2024-07-25T08:19:27.010000"],["2024-07-25T08:19:28.010000"],["2024-07-25T08:19:29.010000"],["2024-07-25T08:19:30.010000"],["2024-07-25T08:19:31.010000"],["2024-07-25T08:19:32.010000"],["2024-07-25T08:19:33.010000"],["2024-07-25T08:19:34.010000"],["2024-07-25T08:19:35.010000"],["2024-07-25T08:19:36.010000"],["2024-07-25T08:19:37.010000"],["2024-07-25T08:19:38.010000"],["2024-07-25T08:19:39.010000"],["2024-07-25T08:19:40.010000"],["2024-07-25T08:19:41.010000"],["2024-07-25T08:19:42.010000"],["2024-07-25T08:19:43.010000"],["2024-07-25T08:19:44.010000"],["2024-07-25T08:19:45.010000"],["2024-07-25T08:19:46.010000"],["2024-07-25T08:19:47.010000"],["2024-07-25T08:19:48.010000"],["2024-07-25T08:19:49.010000"],["2024-07-25T08:19:50.010000"],["2024-07-25T08:19:51.010000"],["2024-07-25T08:19:52.010000"],["2024-07-25T08:19:53.010000"],["2024-07-25T08:19:54.010000"],["2024-07-25T08:19:55.010000"],["2024-07-25T08:19:56.010000"],["2024-07-25T08:19:57.010000"],["2024-07-25T08:19:58.010000"],["2024-07-25T08:19:59.010000"],["2024-07-25T08:20:00.010000"],["2024-07-25T08:20:01.010000"],["2024-07-25T08:20:02.010000"],["2024-07-25T08:20:03.010000"],["2024-07-25T08:20:04.010000"],["2024-07-25T08:20:05.010000"],["2024-07-25T08:20:06.010000"],["2024-07-25T08:20:07.010000"],["2024-07-25T08:20:08.010000"],["2024-07-25T08:20:09.010000"],["2024-07-25T08:20:10.010000"],["2024-07-25T08:20:11.010000"],["2024-07-25T08:20:12.010000"],["2024-07-25T08:20:13.010000"],["2024-07-25T08:20:14.010000"],["2024-07-25T08:20:15.010000"],["2024-07-25T08:20:16.010000"],["2024-07-25T08:20:17.010000"],["2024-07-25T08:20:18.010000"],["2024-07-25T08:20:19.010000"],["2024-07-25T08:20:20.010000"],["2024-07-25T08:20:21.010000"],["2024-07-25T08:20:22.010000"],["2024-07-25T08:20:23.010000"],["2024-07-25T08:20:24.010000"],["2024-07-25T08:20:25.010000"],["2024-07-25T08:20:26.010000"],["2024-07-25T08:20:27.010000"],["2024-07-25T08:20:28.010000"],["2024-07-25T08:20:29.010000"],["2024-07-25T08:20:30.010000"],["2024-07-25T08:20:31.010000"],["2024-07-25T08:20:32.010000"],["2024-07-25T08:20:33.010000"],["2024-07-25T08:20:34.010000"],["2024-07-25T08:20:35.010000"],["2024-07-25T08:20:36.010000"],["2024-07-25T08:20:37.010000"],["2024-07-25T08:20:38.010000"],["2024-07-25T08:20:39.010000"],["2024-07-25T08:20:40.010000"],["2024-07-25T08:20:41.010000"],["2024-07-25T08:20:42.010000"],["2024-07-25T08:20:43.010000"],["2024-07-25T08:20:44.010000"],["2024-07-25T08:20:45.010000"],["2024-07-25T08:20:46.010000"],["2024-07-25T08:20:47.010000"],["2024-07-25T08:20:48.010000"],["2024-07-25T08:20:49.010000"],["2024-07-25T08:20:50.010000"],["2024-07-25T08:20:51.010000"],["2024-07-25T08:20:52.010000"],["2024-07-25T08:20:53.010000"],["2024-07-25T08:20:54.010000"],["2024-07-25T08:20:55.010000"],["2024-07-25T08:20:56.010000"],["2024-07-25T08:20:57.010000"],["2024-07-25T08:20:58.010000"],["2024-07-25T08:20:59.010000"],["2024-07-25T08:21:00.010000"],["2024-07-25T08:21:01.010000"],["2024-07-25T08:21:02.010000"],["2024-07-25T08:21:03.010000"],["2024-07-25T08:21:04.010000"],["2024-07-25T08:21:05.010000"],["2024-07-25T08:21:06.010000"],["2024-07-25T08:21:07.010000"],["2024-07-25T08:21:08.010000"],["2024-07-25T08:21:09.010000"],["2024-07-25T08:21:10.010000"],["2024-07-25T08:21:11.010000"],["2024-07-25T08:21:12.010000"],["2024-07-25T08:21:13.010000"],["2024-07-25T08:21:14.010000"],["2024-07-25T08:21:15.010000"],["2024-07-25T08:21:16.010000"],["2024-07-25T08:21:17.010000"],["2024-07-25T08:21:18.010000"],["2024-07-25T08:21:19.010000"],["2024-07-25T08:21:20.010000"],["2024-07-25T08:21:21.010000"],["2024-07-25T08:21:22.010000"],["2024-07-25T08:21:23.010000"],["2024-07-25T08:21:24.010000"],["2024-07-25T08:21:25.010000"],["2024-07-25T08:21:26.010000"],["2024-07-25T08:21:27.010000"],["2024-07-25T08:21:28.010000"],["2024-07-25T08:21:29.010000"],["2024-07-25T08:21:30.010000"],["2024-07-25T08:21:31.010000"],["2024-07-25T08:21:32.010000"],["2024-07-25T08:21:33.010000"],["2024-07-25T08:21:34.010000"],["2024-07-25T08:21:35.010000"],["2024-07-25T08:21:36.010000"],["2024-07-25T08:21:37.010000"],["2024-07-25T08:21:38.010000"],["2024-07-25T08:21:39.010000"],["2024-07-25T08:21:40.010000"],["2024-07-25T08:21:41.010000"],["2024-07-25T08:21:42.010000"],["2024-07-25T08:21:43.010000"],["2024-07-25T08:21:44.010000"],["2024-07-25T08:21:45.010000"],["2024-07-25T08:21:46.010000"],["2024-07-25T08:21:47.010000"],["2024-07-25T08:21:48.010000"],["2024-07-25T08:21:49.010000"],["2024-07-25T08:21:50.010000"],["2024-07-25T08:21:51.010000"],["2024-07-25T08:21:52.010000"],["2024-07-25T08:21:53.010000"],["2024-07-25T08:21:54.010000"],["2024-07-25T08:21:55.010000"],["2024-07-25T08:21:56.010000"],["2024-07-25T08:21:57.010000"],["2024-07-25T08:21:58.010000"],["2024-07-25T08:21:59.010000"],["2024-07-25T08:22:00.010000"],["2024-07-25T08:22:01.010000"],["2024-07-25T08:22:02.010000"],["2024-07-25T08:22:03.010000"],["2024-07-25T08:22:04.010000"],["2024-07-25T08:22:05.010000"],["2024-07-25T08:22:06.010000"],["2024-07-25T08:22:07.010000"],["2024-07-25T08:22:08.010000"],["2024-07-25T08:22:09.010000"],["2024-07-25T08:22:10.010000"],["2024-07-25T08:22:11.010000"],["2024-07-25T08:22:12.010000"],["2024-07-25T08:22:13.010000"],["2024-07-25T08:22:14.010000"],["2024-07-25T08:22:15.010000"],["2024-07-25T08:22:16.010000"],["2024-07-25T08:22:17.010000"],["2024-07-25T08:22:18.010000"],["2024-07-25T08:22:19.010000"],["2024-07-25T08:22:20.010000"],["2024-07-25T08:22:21.010000"],["2024-07-25T08:22:22.010000"],["2024-07-25T08:22:23.010000"],["2024-07-25T08:22:24.010000"],["2024-07-25T08:22:25.010000"],["2024-07-25T08:22:26.010000"],["2024-07-25T08:22:27.010000"],["2024-07-25T08:22:28.010000"],["2024-07-25T08:22:29.010000"],["2024-07-25T08:22:30.010000"],["2024-07-25T08:22:31.010000"],["2024-07-25T08:22:32.010000"],["2024-07-25T08:22:33.010000"],["2024-07-25T08:22:34.010000"],["2024-07-25T08:22:35.010000"],["2024-07-25T08:22:36.010000"],["2024-07-25T08:22:37.010000"],["2024-07-25T08:22:38.010000"],["2024-07-25T08:22:39.010000"],["2024-07-25T08:22:40.010000"],["2024-07-25T08:22:41.010000"],["2024-07-25T08:22:42.010000"],["2024-07-25T08:22:43.010000"],["2024-07-25T08:22:44.010000"],["2024-07-25T08:22:45.010000"],["2024-07-25T08:22:46.010000"],["2024-07-25T08:22:47.010000"],["2024-07-25T08:22:48.010000"],["2024-07-25T08:22:49.010000"],["2024-07-25T08:22:50.010000"],["2024-07-25T08:22:51.010000"],["2024-07-25T08:22:52.010000"],["2024-07-25T08:22:53.010000"],["2024-07-25T08:22:54.010000"],["2024-07-25T08:22:55.010000"],["2024-07-25T08:22:56.010000"],["2024-07-25T08:22:57.010000"],["2024-07-25T08:22:58.010000"],["2024-07-25T08:22:59.010000"],["2024-07-25T08:23:00.010000"],["2024-07-25T08:23:01.010000"],["2024-07-25T08:23:02.010000"],["2024-07-25T08:23:03.010000"],["2024-07-25T08:23:04.010000"],["2024-07-25T08:23:05.010000"],["2024-07-25T08:23:06.010000"],["2024-07-25T08:23:07.010000"],["2024-07-25T08:23:08.010000"],["2024-07-25T08:23:09.010000"],["2024-07-25T08:23:10.010000"],["2024-07-25T08:23:11.010000"],["2024-07-25T08:23:12.010000"],["2024-07-25T08:23:13.010000"],["2024-07-25T08:23:14.010000"],["2024-07-25T08:23:15.010000"],["2024-07-25T08:23:16.010000"],["2024-07-25T08:23:17.010000"],["2024-07-25T08:23:18.010000"],["2024-07-25T08:23:19.010000"],["2024-07-25T08:23:20.010000"],["2024-07-25T08:23:21.010000"],["2024-07-25T08:23:22.010000"],["2024-07-25T08:23:23.010000"],["2024-07-25T08:23:24.010000"],["2024-07-25T08:23:25.010000"],["2024-07-25T08:23:26.010000"],["2024-07-25T08:23:27.010000"],["2024-07-25T08:23:28.010000"],["2024-07-25T08:23:29.010000"],["2024-07-25T08:23:30.010000"],["2024-07-25T08:23:31.010000"],["2024-07-25T08:23:32.010000"],["2024-07-25T08:23:33.010000"],["2024-07-25T08:23:34.010000"],["2024-07-25T08:23:35.010000"],["2024-07-25T08:23:36.010000"],["2024-07-25T08:23:37.010000"],["2024-07-25T08:23:38.010000"],["2024-07-25T08:23:39.010000"],["2024-07-25T08:23:40.010000"],["2024-07-25T08:23:41.010000"],["2024-07-25T08:23:42.010000"],["2024-07-25T08:23:43.010000"],["2024-07-25T08:23:44.010000"],["2024-07-25T08:23:45.010000"],["2024-07-25T08:23:46.010000"],["2024-07-25T08:23:47.010000"],["2024-07-25T08:23:48.010000"],["2024-07-25T08:23:49.010000"],["2024-07-25T08:23:50.010000"],["2024-07-25T08:23:51.010000"],["2024-07-25T08:23:52.010000"],["2024-07-25T08:23:53.010000"],["2024-07-25T08:23:54.010000"],["2024-07-25T08:23:55.010000"],["2024-07-25T08:23:56.010000"],["2024-07-25T08:23:57.010000"],["2024-07-25T08:23:58.010000"],["2024-07-25T08:23:59.010000"],["2024-07-25T08:24:00.010000"],["2024-07-25T08:24:01.010000"],["2024-07-25T08:24:02.010000"],["2024-07-25T08:24:03.010000"],["2024-07-25T08:24:04.010000"],["2024-07-25T08:24:05.010000"],["2024-07-25T08:24:06.010000"],["2024-07-25T08:24:07.010000"],["2024-07-25T08:24:08.010000"],["2024-07-25T08:24:09.010000"],["2024-07-25T08:24:10.010000"],["2024-07-25T08:24:11.010000"],["2024-07-25T08:24:12.010000"],["2024-07-25T08:24:13.010000"],["2024-07-25T08:24:14.010000"],["2024-07-25T08:24:15.010000"],["2024-07-25T08:24:16.010000"],["2024-07-25T08:24:17.010000"],["2024-07-25T08:24:18.010000"],["2024-07-25T08:24:19.010000"],["2024-07-25T08:24:20.010000"],["2024-07-25T08:24:21.010000"],["2024-07-25T08:24:22.010000"],["2024-07-25T08:24:23.010000"],["2024-07-25T08:24:24.010000"],["2024-07-25T08:24:25.010000"],["2024-07-25T08:24:26.010000"],["2024-07-25T08:24:27.010000"],["2024-07-25T08:24:28.010000"],["2024-07-25T08:24:29.010000"],["2024-07-25T08:24:30.010000"],["2024-07-25T08:24:31.010000"],["2024-07-25T08:24:32.010000"],["2024-07-25T08:24:33.010000"],["2024-07-25T08:24:34.010000"],["2024-07-25T08:24:35.010000"],["2024-07-25T08:24:36.010000"],["2024-07-25T08:24:37.010000"],["2024-07-25T08:24:38.010000"],["2024-07-25T08:24:39.010000"],["2024-07-25T08:24:40.010000"],["2024-07-25T08:24:41.010000"],["2024-07-25T08:24:42.010000"],["2024-07-25T08:24:43.010000"],["2024-07-25T08:24:44.010000"],["2024-07-25T08:24:45.010000"],["2024-07-25T08:24:46.010000"],["2024-07-25T08:24:47.010000"],["2024-07-25T08:24:48.010000"],["2024-07-25T08:24:49.010000"],["2024-07-25T08:24:50.010000"],["2024-07-25T08:24:51.010000"],["2024-07-25T08:24:52.010000"],["2024-07-25T08:24:53.010000"],["2024-07-25T08:24:54.010000"],["2024-07-25T08:24:55.010000"],["2024-07-25T08:24:56.010000"],["2024-07-25T08:24:57.010000"],["2024-07-25T08:24:58.010000"],["2024-07-25T08:24:59.010000"],["2024-07-25T08:25:00.010000"],["2024-07-25T08:25:01.010000"],["2024-07-25T08:25:02.010000"],["2024-07-25T08:25:03.010000"],["2024-07-25T08:25:04.010000"],["2024-07-25T08:25:05.010000"],["2024-07-25T08:25:06.010000"],["2024-07-25T08:25:07.010000"],["2024-07-25T08:25:08.010000"],["2024-07-25T08:25:09.010000"],["2024-07-25T08:25:10.010000"],["2024-07-25T08:25:11.010000"],["2024-07-25T08:25:12.010000"],["2024-07-25T08:25:13.010000"],["2024-07-25T08:25:14.010000"],["2024-07-25T08:25:15.010000"],["2024-07-25T08:25:16.010000"],["2024-07-25T08:25:17.010000"],["2024-07-25T08:25:18.010000"],["2024-07-25T08:25:19.010000"],["2024-07-25T08:25:20.010000"],["2024-07-25T08:25:21.010000"],["2024-07-25T08:25:22.010000"],["2024-07-25T08:25:23.010000"],["2024-07-25T08:25:24.010000"],["2024-07-25T08:25:25.010000"],["2024-07-25T08:25:26.010000"],["2024-07-25T08:25:27.010000"],["2024-07-25T08:25:28.010000"],["2024-07-25T08:25:29.010000"],["2024-07-25T08:25:30.010000"],["2024-07-25T08:25:31.010000"],["2024-07-25T08:25:32.010000"],["2024-07-25T08:25:33.010000"],["2024-07-25T08:25:34.010000"],["2024-07-25T08:25:35.010000"],["2024-07-25T08:25:36.010000"],["2024-07-25T08:25:37.010000"],["2024-07-25T08:25:38.010000"],["2024-07-25T08:25:39.010000"],["2024-07-25T08:25:40.010000"],["2024-07-25T08:25:41.010000"],["2024-07-25T08:25:42.010000"],["2024-07-25T08:25:43.010000"],["2024-07-25T08:25:44.010000"],["2024-07-25T08:25:45.010000"],["2024-07-25T08:25:46.010000"],["2024-07-25T08:25:47.010000"],["2024-07-25T08:25:48.010000"],["2024-07-25T08:25:49.010000"],["2024-07-25T08:25:50.010000"],["2024-07-25T08:25:51.010000"],["2024-07-25T08:25:52.010000"],["2024-07-25T08:25:53.010000"],["2024-07-25T08:25:54.010000"],["2024-07-25T08:25:55.010000"],["2024-07-25T08:25:56.010000"],["2024-07-25T08:25:57.010000"],["2024-07-25T08:25:58.010000"],["2024-07-25T08:25:59.010000"],["2024-07-25T08:26:00.010000"],["2024-07-25T08:26:01.010000"],["2024-07-25T08:26:02.010000"],["2024-07-25T08:26:03.010000"],["2024-07-25T08:26:04.010000"],["2024-07-25T08:26:05.010000"],["2024-07-25T08:26:06.010000"],["2024-07-25T08:26:07.010000"],["2024-07-25T08:26:08.010000"],["2024-07-25T08:26:09.010000"],["2024-07-25T08:26:10.010000"],["2024-07-25T08:26:11.010000"],["2024-07-25T08:26:12.010000"],["2024-07-25T08:26:13.010000"],["2024-07-25T08:26:14.010000"],["2024-07-25T08:26:15.010000"],["2024-07-25T08:26:16.010000"],["2024-07-25T08:26:17.010000"],["2024-07-25T08:26:18.010000"],["2024-07-25T08:26:19.010000"],["2024-07-25T08:26:20.010000"],["2024-07-25T08:26:21.010000"],["2024-07-25T08:26:22.010000"],["2024-07-25T08:26:23.010000"],["2024-07-25T08:26:24.010000"],["2024-07-25T08:26:25.010000"],["2024-07-25T08:26:26.010000"],["2024-07-25T08:26:27.010000"],["2024-07-25T08:26:28.010000"],["2024-07-25T08:26:29.010000"],["2024-07-25T08:26:30.010000"],["2024-07-25T08:26:31.010000"],["2024-07-25T08:26:32.010000"],["2024-07-25T08:26:33.010000"],["2024-07-25T08:26:34.010000"],["2024-07-25T08:26:35.010000"],["2024-07-25T08:26:36.010000"],["2024-07-25T08:26:37.010000"],["2024-07-25T08:26:38.010000"],["2024-07-25T08:26:39.010000"],["2024-07-25T08:26:40.010000"],["2024-07-25T08:26:41.010000"],["2024-07-25T08:26:42.010000"],["2024-07-25T08:26:43.010000"],["2024-07-25T08:26:44.010000"],["2024-07-25T08:26:45.010000"],["2024-07-25T08:26:46.010000"],["2024-07-25T08:26:47.010000"],["2024-07-25T08:26:48.010000"],["2024-07-25T08:26:49.010000"],["2024-07-25T08:26:50.010000"],["2024-07-25T08:26:51.010000"],["2024-07-25T08:26:52.010000"],["2024-07-25T08:26:53.010000"],["2024-07-25T08:26:54.010000"],["2024-07-25T08:26:55.010000"],["2024-07-25T08:26:56.010000"],["2024-07-25T08:26:57.010000"],["2024-07-25T08:26:58.010000"],["2024-07-25T08:26:59.010000"],["2024-07-25T08:27:00.010000"],["2024-07-25T08:27:01.010000"],["2024-07-25T08:27:02.010000"],["2024-07-25T08:27:03.010000"],["2024-07-25T08:27:04.010000"],["2024-07-25T08:27:05.010000"],["2024-07-25T08:27:06.010000"],["2024-07-25T08:27:07.010000"],["2024-07-25T08:27:08.010000"],["2024-07-25T08:27:09.010000"],["2024-07-25T08:27:10.010000"],["2024-07-25T08:27:11.010000"],["2024-07-25T08:27:12.010000"],["2024-07-25T08:27:13.010000"],["2024-07-25T08:27:14.010000"],["2024-07-25T08:27:15.010000"],["2024-07-25T08:27:16.010000"],["2024-07-25T08:27:17.010000"],["2024-07-25T08:27:18.010000"],["2024-07-25T08:27:19.010000"],["2024-07-25T08:27:20.010000"],["2024-07-25T08:27:21.010000"],["2024-07-25T08:27:22.010000"],["2024-07-25T08:27:23.010000"],["2024-07-25T08:27:24.010000"],["2024-07-25T08:27:25.010000"],["2024-07-25T08:27:26.010000"],["2024-07-25T08:27:27.010000"],["2024-07-25T08:27:28.010000"],["2024-07-25T08:27:29.010000"],["2024-07-25T08:27:30.010000"],["2024-07-25T08:27:31.010000"],["2024-07-25T08:27:32.010000"],["2024-07-25T08:27:33.010000"],["2024-07-25T08:27:34.010000"],["2024-07-25T08:27:35.010000"],["2024-07-25T08:27:36.010000"],["2024-07-25T08:27:37.010000"],["2024-07-25T08:27:38.010000"],["2024-07-25T08:27:39.010000"],["2024-07-25T08:27:40.010000"],["2024-07-25T08:27:41.010000"],["2024-07-25T08:27:42.010000"],["2024-07-25T08:27:43.010000"],["2024-07-25T08:27:44.010000"],["2024-07-25T08:27:45.010000"],["2024-07-25T08:27:46.010000"],["2024-07-25T08:27:47.010000"],["2024-07-25T08:27:48.010000"],["2024-07-25T08:27:49.010000"],["2024-07-25T08:27:50.010000"],["2024-07-25T08:27:51.010000"],["2024-07-25T08:27:52.010000"],["2024-07-25T08:27:53.010000"],["2024-07-25T08:27:54.010000"],["2024-07-25T08:27:55.010000"],["2024-07-25T08:27:56.010000"],["2024-07-25T08:27:57.010000"],["2024-07-25T08:27:58.010000"],["2024-07-25T08:27:59.010000"],["2024-07-25T08:28:00.010000"],["2024-07-25T08:28:01.010000"],["2024-07-25T08:28:02.010000"],["2024-07-25T08:28:03.010000"],["2024-07-25T08:28:04.010000"],["2024-07-25T08:28:05.010000"],["2024-07-25T08:28:06.010000"],["2024-07-25T08:28:07.010000"],["2024-07-25T08:28:08.010000"],["2024-07-25T08:28:09.010000"],["2024-07-25T08:28:10.010000"],["2024-07-25T08:28:11.010000"],["2024-07-25T08:28:12.010000"],["2024-07-25T08:28:13.010000"],["2024-07-25T08:28:14.010000"],["2024-07-25T08:28:15.010000"],["2024-07-25T08:28:16.010000"],["2024-07-25T08:28:17.010000"],["2024-07-25T08:28:18.010000"],["2024-07-25T08:28:19.010000"],["2024-07-25T08:28:20.010000"],["2024-07-25T08:28:21.010000"],["2024-07-25T08:28:22.010000"],["2024-07-25T08:28:23.010000"],["2024-07-25T08:28:24.010000"],["2024-07-25T08:28:25.010000"],["2024-07-25T08:28:26.010000"],["2024-07-25T08:28:27.010000"],["2024-07-25T08:28:28.010000"],["2024-07-25T08:28:29.010000"],["2024-07-25T08:28:30.010000"],["2024-07-25T08:28:31.010000"],["2024-07-25T08:28:32.010000"],["2024-07-25T08:28:33.010000"],["2024-07-25T08:28:34.010000"],["2024-07-25T08:28:35.010000"],["2024-07-25T08:28:36.010000"],["2024-07-25T08:28:37.010000"],["2024-07-25T08:28:38.010000"],["2024-07-25T08:28:39.010000"],["2024-07-25T08:28:40.010000"],["2024-07-25T08:28:41.010000"],["2024-07-25T08:28:42.010000"],["2024-07-25T08:28:43.010000"],["2024-07-25T08:28:44.010000"],["2024-07-25T08:28:45.010000"],["2024-07-25T08:28:46.010000"],["2024-07-25T08:28:47.010000"],["2024-07-25T08:28:48.010000"],["2024-07-25T08:28:49.010000"],["2024-07-25T08:28:50.010000"],["2024-07-25T08:28:51.010000"],["2024-07-25T08:28:52.010000"],["2024-07-25T08:28:53.010000"],["2024-07-25T08:28:54.010000"],["2024-07-25T08:28:55.010000"],["2024-07-25T08:28:56.010000"],["2024-07-25T08:28:57.010000"],["2024-07-25T08:28:58.010000"],["2024-07-25T08:28:59.010000"],["2024-07-25T08:29:00.010000"],["2024-07-25T08:29:01.010000"],["2024-07-25T08:29:02.010000"],["2024-07-25T08:29:03.010000"],["2024-07-25T08:29:04.010000"],["2024-07-25T08:29:05.010000"],["2024-07-25T08:29:06.010000"],["2024-07-25T08:29:07.010000"],["2024-07-25T08:29:08.010000"],["2024-07-25T08:29:09.010000"],["2024-07-25T08:29:10.010000"],["2024-07-25T08:29:11.010000"],["2024-07-25T08:29:12.010000"],["2024-07-25T08:29:13.010000"],["2024-07-25T08:29:14.010000"],["2024-07-25T08:29:15.010000"],["2024-07-25T08:29:16.010000"],["2024-07-25T08:29:17.010000"],["2024-07-25T08:29:18.010000"],["2024-07-25T08:29:19.010000"],["2024-07-25T08:29:20.010000"],["2024-07-25T08:29:21.010000"],["2024-07-25T08:29:22.010000"],["2024-07-25T08:29:23.010000"],["2024-07-25T08:29:24.010000"],["2024-07-25T08:29:25.010000"],["2024-07-25T08:29:26.010000"],["2024-07-25T08:29:27.010000"],["2024-07-25T08:29:28.010000"],["2024-07-25T08:29:29.010000"],["2024-07-25T08:29:30.010000"],["2024-07-25T08:29:31.010000"],["2024-07-25T08:29:32.010000"],["2024-07-25T08:29:33.010000"],["2024-07-25T08:29:34.010000"],["2024-07-25T08:29:35.010000"],["2024-07-25T08:29:36.010000"],["2024-07-25T08:29:37.010000"],["2024-07-25T08:29:38.010000"],["2024-07-25T08:29:39.010000"],["2024-07-25T08:29:40.010000"],["2024-07-25T08:29:41.010000"],["2024-07-25T08:29:42.010000"],["2024-07-25T08:29:43.010000"],["2024-07-25T08:29:44.010000"],["2024-07-25T08:29:45.010000"],["2024-07-25T08:29:46.010000"],["2024-07-25T08:29:47.010000"],["2024-07-25T08:29:48.010000"],["2024-07-25T08:29:49.010000"],["2024-07-25T08:29:50.010000"],["2024-07-25T08:29:51.010000"],["2024-07-25T08:29:52.010000"],["2024-07-25T08:29:53.010000"],["2024-07-25T08:29:54.010000"],["2024-07-25T08:29:55.010000"],["2024-07-25T08:29:56.010000"],["2024-07-25T08:29:57.010000"],["2024-07-25T08:29:58.010000"],["2024-07-25T08:29:59.010000"],["2024-07-25T08:30:00.010000"],["2024-07-25T08:30:01.010000"],["2024-07-25T08:30:02.010000"],["2024-07-25T08:30:03.010000"],["2024-07-25T08:30:04.010000"],["2024-07-25T08:30:05.010000"],["2024-07-25T08:30:06.010000"],["2024-07-25T08:30:07.010000"],["2024-07-25T08:30:08.010000"],["2024-07-25T08:30:09.010000"],["2024-07-25T08:30:10.010000"],["2024-07-25T08:30:11.010000"],["2024-07-25T08:30:12.010000"],["2024-07-25T08:30:13.010000"],["2024-07-25T08:30:14.010000"],["2024-07-25T08:30:15.010000"],["2024-07-25T08:30:16.010000"],["2024-07-25T08:30:17.010000"],["2024-07-25T08:30:18.010000"],["2024-07-25T08:30:19.010000"],["2024-07-25T08:30:20.010000"],["2024-07-25T08:30:21.010000"],["2024-07-25T08:30:22.010000"],["2024-07-25T08:30:23.010000"],["2024-07-25T08:30:24.010000"],["2024-07-25T08:30:25.010000"],["2024-07-25T08:30:26.010000"],["2024-07-25T08:30:27.010000"],["2024-07-25T08:30:28.010000"],["2024-07-25T08:30:29.010000"],["2024-07-25T08:30:30.010000"],["2024-07-25T08:30:31.010000"],["2024-07-25T08:30:32.010000"],["2024-07-25T08:30:33.010000"],["2024-07-25T08:30:34.010000"],["2024-07-25T08:30:35.010000"],["2024-07-25T08:30:36.010000"],["2024-07-25T08:30:37.010000"],["2024-07-25T08:30:38.010000"],["2024-07-25T08:30:39.010000"],["2024-07-25T08:30:40.010000"],["2024-07-25T08:30:41.010000"],["2024-07-25T08:30:42.010000"],["2024-07-25T08:30:43.010000"],["2024-07-25T08:30:44.010000"],["2024-07-25T08:30:45.010000"],["2024-07-25T08:30:46.010000"],["2024-07-25T08:30:47.010000"],["2024-07-25T08:30:48.010000"],["2024-07-25T08:30:49.010000"],["2024-07-25T08:30:50.010000"],["2024-07-25T08:30:51.010000"],["2024-07-25T08:30:52.010000"],["2024-07-25T08:30:53.010000"],["2024-07-25T08:30:54.010000"],["2024-07-25T08:30:55.010000"],["2024-07-25T08:30:56.010000"],["2024-07-25T08:30:57.010000"],["2024-07-25T08:30:58.010000"],["2024-07-25T08:30:59.010000"],["2024-07-25T08:31:00.010000"],["2024-07-25T08:31:01.010000"],["2024-07-25T08:31:02.010000"],["2024-07-25T08:31:03.010000"],["2024-07-25T08:31:04.010000"],["2024-07-25T08:31:05.010000"],["2024-07-25T08:31:06.010000"],["2024-07-25T08:31:07.010000"],["2024-07-25T08:31:08.010000"],["2024-07-25T08:31:09.010000"],["2024-07-25T08:31:10.010000"],["2024-07-25T08:31:11.010000"],["2024-07-25T08:31:12.010000"],["2024-07-25T08:31:13.010000"],["2024-07-25T08:31:14.010000"],["2024-07-25T08:31:15.010000"],["2024-07-25T08:31:16.010000"],["2024-07-25T08:31:17.010000"],["2024-07-25T08:31:18.010000"],["2024-07-25T08:31:19.010000"],["2024-07-25T08:31:20.010000"],["2024-07-25T08:31:21.010000"],["2024-07-25T08:31:22.010000"],["2024-07-25T08:31:23.010000"],["2024-07-25T08:31:24.010000"],["2024-07-25T08:31:25.010000"],["2024-07-25T08:31:26.010000"],["2024-07-25T08:31:27.010000"],["2024-07-25T08:31:28.010000"],["2024-07-25T08:31:29.010000"],["2024-07-25T08:31:30.010000"],["2024-07-25T08:31:31.010000"],["2024-07-25T08:31:32.010000"],["2024-07-25T08:31:33.010000"],["2024-07-25T08:31:34.010000"],["2024-07-25T08:31:35.010000"],["2024-07-25T08:31:36.010000"],["2024-07-25T08:31:37.010000"],["2024-07-25T08:31:38.010000"],["2024-07-25T08:31:39.010000"],["2024-07-25T08:31:40.010000"],["2024-07-25T08:31:41.010000"],["2024-07-25T08:31:42.010000"],["2024-07-25T08:31:43.010000"],["2024-07-25T08:31:44.010000"],["2024-07-25T08:31:45.010000"],["2024-07-25T08:31:46.010000"],["2024-07-25T08:31:47.010000"],["2024-07-25T08:31:48.010000"],["2024-07-25T08:31:49.010000"],["2024-07-25T08:31:50.010000"],["2024-07-25T08:31:51.010000"],["2024-07-25T08:31:52.010000"],["2024-07-25T08:31:53.010000"],["2024-07-25T08:31:54.010000"],["2024-07-25T08:31:55.010000"],["2024-07-25T08:31:56.010000"],["2024-07-25T08:31:57.010000"],["2024-07-25T08:31:58.010000"],["2024-07-25T08:31:59.010000"],["2024-07-25T08:32:00.010000"],["2024-07-25T08:32:01.010000"],["2024-07-25T08:32:02.010000"],["2024-07-25T08:32:03.010000"],["2024-07-25T08:32:04.010000"],["2024-07-25T08:32:05.010000"],["2024-07-25T08:32:06.010000"],["2024-07-25T08:32:07.010000"],["2024-07-25T08:32:08.010000"],["2024-07-25T08:32:09.010000"],["2024-07-25T08:32:10.010000"],["2024-07-25T08:32:11.010000"],["2024-07-25T08:32:12.010000"],["2024-07-25T08:32:13.010000"],["2024-07-25T08:32:14.010000"],["2024-07-25T08:32:15.010000"],["2024-07-25T08:32:16.010000"],["2024-07-25T08:32:17.010000"],["2024-07-25T08:32:18.010000"],["2024-07-25T08:32:19.010000"],["2024-07-25T08:32:20.010000"],["2024-07-25T08:32:21.010000"],["2024-07-25T08:32:22.010000"],["2024-07-25T08:32:23.010000"],["2024-07-25T08:32:24.010000"],["2024-07-25T08:32:25.010000"],["2024-07-25T08:32:26.010000"],["2024-07-25T08:32:27.010000"],["2024-07-25T08:32:28.010000"],["2024-07-25T08:32:29.010000"],["2024-07-25T08:32:30.010000"],["2024-07-25T08:32:31.010000"],["2024-07-25T08:32:32.010000"],["2024-07-25T08:32:33.010000"],["2024-07-25T08:32:34.010000"],["2024-07-25T08:32:35.010000"],["2024-07-25T08:32:36.010000"],["2024-07-25T08:32:37.010000"],["2024-07-25T08:32:38.010000"],["2024-07-25T08:32:39.010000"],["2024-07-25T08:32:40.010000"],["2024-07-25T08:32:41.010000"],["2024-07-25T08:32:42.010000"],["2024-07-25T08:32:43.010000"],["2024-07-25T08:32:44.010000"],["2024-07-25T08:32:45.010000"],["2024-07-25T08:32:46.010000"],["2024-07-25T08:32:47.010000"],["2024-07-25T08:32:48.010000"],["2024-07-25T08:32:49.010000"],["2024-07-25T08:32:50.010000"],["2024-07-25T08:32:51.010000"],["2024-07-25T08:32:52.010000"],["2024-07-25T08:32:53.010000"],["2024-07-25T08:32:54.010000"],["2024-07-25T08:32:55.010000"],["2024-07-25T08:32:56.010000"],["2024-07-25T08:32:57.010000"],["2024-07-25T08:32:58.010000"],["2024-07-25T08:32:59.010000"],["2024-07-25T08:33:00.010000"],["2024-07-25T08:33:01.010000"],["2024-07-25T08:33:02.010000"],["2024-07-25T08:33:03.010000"],["2024-07-25T08:33:04.010000"],["2024-07-25T08:33:05.010000"],["2024-07-25T08:33:06.010000"],["2024-07-25T08:33:07.010000"],["2024-07-25T08:33:08.010000"],["2024-07-25T08:33:09.010000"],["2024-07-25T08:33:10.010000"],["2024-07-25T08:33:11.010000"],["2024-07-25T08:33:12.010000"],["2024-07-25T08:33:13.010000"],["2024-07-25T08:33:14.010000"],["2024-07-25T08:33:15.010000"],["2024-07-25T08:33:16.010000"],["2024-07-25T08:33:17.010000"],["2024-07-25T08:33:18.010000"],["2024-07-25T08:33:19.010000"],["2024-07-25T08:33:20.010000"],["2024-07-25T08:33:21.010000"],["2024-07-25T08:33:22.010000"],["2024-07-25T08:33:23.010000"],["2024-07-25T08:33:24.010000"],["2024-07-25T08:33:25.010000"],["2024-07-25T08:33:26.010000"],["2024-07-25T08:33:27.010000"],["2024-07-25T08:33:28.010000"],["2024-07-25T08:33:29.010000"],["2024-07-25T08:33:30.010000"],["2024-07-25T08:33:31.010000"],["2024-07-25T08:33:32.010000"],["2024-07-25T08:33:33.010000"],["2024-07-25T08:33:34.010000"],["2024-07-25T08:33:35.010000"],["2024-07-25T08:33:36.010000"],["2024-07-25T08:33:37.010000"],["2024-07-25T08:33:38.010000"],["2024-07-25T08:33:39.010000"],["2024-07-25T08:33:40.010000"],["2024-07-25T08:33:41.010000"],["2024-07-25T08:33:42.010000"],["2024-07-25T08:33:43.010000"],["2024-07-25T08:33:44.010000"],["2024-07-25T08:33:45.010000"],["2024-07-25T08:33:46.010000"],["2024-07-25T08:33:47.010000"],["2024-07-25T08:33:48.010000"],["2024-07-25T08:33:49.010000"],["2024-07-25T08:33:50.010000"],["2024-07-25T08:33:51.010000"],["2024-07-25T08:33:52.010000"],["2024-07-25T08:33:53.010000"],["2024-07-25T08:33:54.010000"],["2024-07-25T08:33:55.010000"],["2024-07-25T08:33:56.010000"],["2024-07-25T08:33:57.010000"],["2024-07-25T08:33:58.010000"],["2024-07-25T08:33:59.010000"],["2024-07-25T08:34:00.010000"],["2024-07-25T08:34:01.010000"],["2024-07-25T08:34:02.010000"],["2024-07-25T08:34:03.010000"],["2024-07-25T08:34:04.010000"],["2024-07-25T08:34:05.010000"],["2024-07-25T08:34:06.010000"],["2024-07-25T08:34:07.010000"],["2024-07-25T08:34:08.010000"],["2024-07-25T08:34:09.010000"],["2024-07-25T08:34:10.010000"],["2024-07-25T08:34:11.010000"],["2024-07-25T08:34:12.010000"],["2024-07-25T08:34:13.010000"],["2024-07-25T08:34:14.010000"],["2024-07-25T08:34:15.010000"],["2024-07-25T08:34:16.010000"],["2024-07-25T08:34:17.010000"],["2024-07-25T08:34:18.010000"],["2024-07-25T08:34:19.010000"],["2024-07-25T08:34:20.010000"],["2024-07-25T08:34:21.010000"],["2024-07-25T08:34:22.010000"],["2024-07-25T08:34:23.010000"],["2024-07-25T08:34:24.010000"],["2024-07-25T08:34:25.010000"],["2024-07-25T08:34:26.010000"],["2024-07-25T08:34:27.010000"],["2024-07-25T08:34:28.010000"],["2024-07-25T08:34:29.010000"],["2024-07-25T08:34:30.010000"],["2024-07-25T08:34:31.010000"],["2024-07-25T08:34:32.010000"],["2024-07-25T08:34:33.010000"],["2024-07-25T08:34:34.010000"],["2024-07-25T08:34:35.010000"],["2024-07-25T08:34:36.010000"],["2024-07-25T08:34:37.010000"],["2024-07-25T08:34:38.010000"],["2024-07-25T08:34:39.010000"],["2024-07-25T08:34:40.010000"],["2024-07-25T08:34:41.010000"],["2024-07-25T08:34:42.010000"],["2024-07-25T08:34:43.010000"],["2024-07-25T08:34:44.010000"],["2024-07-25T08:34:45.010000"],["2024-07-25T08:34:46.010000"],["2024-07-25T08:34:47.010000"],["2024-07-25T08:34:48.010000"],["2024-07-25T08:34:49.010000"],["2024-07-25T08:34:50.010000"],["2024-07-25T08:34:51.010000"],["2024-07-25T08:34:52.010000"],["2024-07-25T08:34:53.010000"],["2024-07-25T08:34:54.010000"],["2024-07-25T08:34:55.010000"],["2024-07-25T08:34:56.010000"],["2024-07-25T08:34:57.010000"],["2024-07-25T08:34:58.010000"],["2024-07-25T08:34:59.010000"],["2024-07-25T08:35:00.010000"],["2024-07-25T08:35:01.010000"],["2024-07-25T08:35:02.010000"],["2024-07-25T08:35:03.010000"],["2024-07-25T08:35:04.010000"],["2024-07-25T08:35:05.010000"],["2024-07-25T08:35:06.010000"],["2024-07-25T08:35:07.010000"],["2024-07-25T08:35:08.010000"],["2024-07-25T08:35:09.010000"],["2024-07-25T08:35:10.010000"],["2024-07-25T08:35:11.010000"],["2024-07-25T08:35:12.010000"],["2024-07-25T08:35:13.010000"],["2024-07-25T08:35:14.010000"],["2024-07-25T08:35:15.010000"],["2024-07-25T08:35:16.010000"],["2024-07-25T08:35:17.010000"],["2024-07-25T08:35:18.010000"],["2024-07-25T08:35:19.010000"],["2024-07-25T08:35:20.010000"],["2024-07-25T08:35:21.010000"],["2024-07-25T08:35:22.010000"],["2024-07-25T08:35:23.010000"],["2024-07-25T08:35:24.010000"],["2024-07-25T08:35:25.010000"],["2024-07-25T08:35:26.010000"],["2024-07-25T08:35:27.010000"],["2024-07-25T08:35:28.010000"],["2024-07-25T08:35:29.010000"],["2024-07-25T08:35:30.010000"],["2024-07-25T08:35:31.010000"],["2024-07-25T08:35:32.010000"],["2024-07-25T08:35:33.010000"],["2024-07-25T08:35:34.010000"],["2024-07-25T08:35:35.010000"],["2024-07-25T08:35:36.010000"],["2024-07-25T08:35:37.010000"],["2024-07-25T08:35:38.010000"],["2024-07-25T08:35:39.010000"],["2024-07-25T08:35:40.010000"],["2024-07-25T08:35:41.010000"],["2024-07-25T08:35:42.010000"],["2024-07-25T08:35:43.010000"],["2024-07-25T08:35:44.010000"],["2024-07-25T08:35:45.010000"],["2024-07-25T08:35:46.010000"],["2024-07-25T08:35:47.010000"],["2024-07-25T08:35:48.010000"],["2024-07-25T08:35:49.010000"],["2024-07-25T08:35:50.010000"],["2024-07-25T08:35:51.010000"],["2024-07-25T08:35:52.010000"],["2024-07-25T08:35:53.010000"],["2024-07-25T08:35:54.010000"],["2024-07-25T08:35:55.010000"],["2024-07-25T08:35:56.010000"],["2024-07-25T08:35:57.010000"],["2024-07-25T08:35:58.010000"],["2024-07-25T08:35:59.010000"],["2024-07-25T08:36:00.010000"],["2024-07-25T08:36:01.010000"],["2024-07-25T08:36:02.010000"],["2024-07-25T08:36:03.010000"],["2024-07-25T08:36:04.010000"],["2024-07-25T08:36:05.010000"],["2024-07-25T08:36:06.010000"],["2024-07-25T08:36:07.010000"],["2024-07-25T08:36:08.010000"],["2024-07-25T08:36:09.010000"],["2024-07-25T08:36:10.010000"],["2024-07-25T08:36:11.010000"],["2024-07-25T08:36:12.010000"],["2024-07-25T08:36:13.010000"],["2024-07-25T08:36:14.010000"],["2024-07-25T08:36:15.010000"],["2024-07-25T08:36:16.010000"],["2024-07-25T08:36:17.010000"],["2024-07-25T08:36:18.010000"],["2024-07-25T08:36:19.010000"],["2024-07-25T08:36:20.010000"],["2024-07-25T08:36:21.010000"],["2024-07-25T08:36:22.010000"],["2024-07-25T08:36:23.010000"],["2024-07-25T08:36:24.010000"],["2024-07-25T08:36:25.010000"],["2024-07-25T08:36:26.010000"],["2024-07-25T08:36:27.010000"],["2024-07-25T08:36:28.010000"],["2024-07-25T08:36:29.010000"],["2024-07-25T08:36:30.010000"],["2024-07-25T08:36:31.010000"],["2024-07-25T08:36:32.010000"],["2024-07-25T08:36:33.010000"],["2024-07-25T08:36:34.010000"],["2024-07-25T08:36:35.010000"],["2024-07-25T08:36:36.010000"],["2024-07-25T08:36:37.010000"],["2024-07-25T08:36:38.010000"],["2024-07-25T08:36:39.010000"],["2024-07-25T08:36:40.010000"],["2024-07-25T08:36:41.010000"],["2024-07-25T08:36:42.010000"],["2024-07-25T08:36:43.010000"],["2024-07-25T08:36:44.010000"],["2024-07-25T08:36:45.010000"],["2024-07-25T08:36:46.010000"],["2024-07-25T08:36:47.010000"],["2024-07-25T08:36:48.010000"],["2024-07-25T08:36:49.010000"],["2024-07-25T08:36:50.010000"],["2024-07-25T08:36:51.010000"],["2024-07-25T08:36:52.010000"],["2024-07-25T08:36:53.010000"],["2024-07-25T08:36:54.010000"],["2024-07-25T08:36:55.010000"],["2024-07-25T08:36:56.010000"],["2024-07-25T08:36:57.010000"],["2024-07-25T08:36:58.010000"],["2024-07-25T08:36:59.010000"],["2024-07-25T08:37:00.010000"],["2024-07-25T08:37:01.010000"],["2024-07-25T08:37:02.010000"],["2024-07-25T08:37:03.010000"],["2024-07-25T08:37:04.010000"],["2024-07-25T08:37:05.010000"],["2024-07-25T08:37:06.010000"],["2024-07-25T08:37:07.010000"],["2024-07-25T08:37:08.010000"],["2024-07-25T08:37:09.010000"],["2024-07-25T08:37:10.010000"],["2024-07-25T08:37:11.010000"],["2024-07-25T08:37:12.010000"],["2024-07-25T08:37:13.010000"],["2024-07-25T08:37:14.010000"],["2024-07-25T08:37:15.010000"],["2024-07-25T08:37:16.010000"],["2024-07-25T08:37:17.010000"],["2024-07-25T08:37:18.010000"],["2024-07-25T08:37:19.010000"],["2024-07-25T08:37:20.010000"],["2024-07-25T08:37:21.010000"],["2024-07-25T08:37:22.010000"],["2024-07-25T08:37:23.010000"],["2024-07-25T08:37:24.010000"],["2024-07-25T08:37:25.010000"],["2024-07-25T08:37:26.010000"],["2024-07-25T08:37:27.010000"],["2024-07-25T08:37:28.010000"],["2024-07-25T08:37:29.010000"],["2024-07-25T08:37:30.010000"],["2024-07-25T08:37:31.010000"],["2024-07-25T08:37:32.010000"],["2024-07-25T08:37:33.010000"],["2024-07-25T08:37:34.010000"],["2024-07-25T08:37:35.010000"],["2024-07-25T08:37:36.010000"],["2024-07-25T08:37:37.010000"],["2024-07-25T08:37:38.010000"],["2024-07-25T08:37:39.010000"],["2024-07-25T08:37:40.010000"],["2024-07-25T08:37:41.010000"],["2024-07-25T08:37:42.010000"],["2024-07-25T08:37:43.010000"],["2024-07-25T08:37:44.010000"],["2024-07-25T08:37:45.010000"],["2024-07-25T08:37:46.010000"],["2024-07-25T08:37:47.010000"],["2024-07-25T08:37:48.010000"],["2024-07-25T08:37:49.010000"],["2024-07-25T08:37:50.010000"],["2024-07-25T08:37:51.010000"],["2024-07-25T08:37:52.010000"],["2024-07-25T08:37:53.010000"],["2024-07-25T08:37:54.010000"],["2024-07-25T08:37:55.010000"],["2024-07-25T08:37:56.010000"],["2024-07-25T08:37:57.010000"],["2024-07-25T08:37:58.010000"],["2024-07-25T08:37:59.010000"],["2024-07-25T08:38:00.010000"],["2024-07-25T08:38:01.010000"],["2024-07-25T08:38:02.010000"],["2024-07-25T08:38:03.010000"],["2024-07-25T08:38:04.010000"],["2024-07-25T08:38:05.010000"],["2024-07-25T08:38:06.010000"],["2024-07-25T08:38:07.010000"],["2024-07-25T08:38:08.010000"],["2024-07-25T08:38:09.010000"],["2024-07-25T08:38:10.010000"],["2024-07-25T08:38:11.010000"],["2024-07-25T08:38:12.010000"],["2024-07-25T08:38:13.010000"],["2024-07-25T08:38:14.010000"],["2024-07-25T08:38:15.010000"],["2024-07-25T08:38:16.010000"],["2024-07-25T08:38:17.010000"],["2024-07-25T08:38:18.010000"],["2024-07-25T08:38:19.010000"],["2024-07-25T08:38:20.010000"],["2024-07-25T08:38:21.010000"],["2024-07-25T08:38:22.010000"],["2024-07-25T08:38:23.010000"],["2024-07-25T08:38:24.010000"],["2024-07-25T08:38:25.010000"],["2024-07-25T08:38:26.010000"],["2024-07-25T08:38:27.010000"],["2024-07-25T08:38:28.010000"],["2024-07-25T08:38:29.010000"],["2024-07-25T08:38:30.010000"],["2024-07-25T08:38:31.010000"],["2024-07-25T08:38:32.010000"],["2024-07-25T08:38:33.010000"],["2024-07-25T08:38:34.010000"],["2024-07-25T08:38:35.010000"],["2024-07-25T08:38:36.010000"],["2024-07-25T08:38:37.010000"],["2024-07-25T08:38:38.010000"],["2024-07-25T08:38:39.010000"],["2024-07-25T08:38:40.010000"],["2024-07-25T08:38:41.010000"],["2024-07-25T08:38:42.010000"],["2024-07-25T08:38:43.010000"],["2024-07-25T08:38:44.010000"],["2024-07-25T08:38:45.010000"],["2024-07-25T08:38:46.010000"],["2024-07-25T08:38:47.010000"],["2024-07-25T08:38:48.010000"],["2024-07-25T08:38:49.010000"],["2024-07-25T08:38:50.010000"],["2024-07-25T08:38:51.010000"],["2024-07-25T08:38:52.010000"],["2024-07-25T08:38:53.010000"],["2024-07-25T08:38:54.010000"],["2024-07-25T08:38:55.010000"],["2024-07-25T08:38:56.010000"],["2024-07-25T08:38:57.010000"],["2024-07-25T08:38:58.010000"],["2024-07-25T08:38:59.010000"],["2024-07-25T08:39:00.010000"],["2024-07-25T08:39:01.010000"],["2024-07-25T08:39:02.010000"],["2024-07-25T08:39:03.010000"],["2024-07-25T08:39:04.010000"],["2024-07-25T08:39:05.010000"],["2024-07-25T08:39:06.010000"],["2024-07-25T08:39:07.010000"],["2024-07-25T08:39:08.010000"],["2024-07-25T08:39:09.010000"],["2024-07-25T08:39:10.010000"],["2024-07-25T08:39:11.010000"],["2024-07-25T08:39:12.010000"],["2024-07-25T08:39:13.010000"],["2024-07-25T08:39:14.010000"],["2024-07-25T08:39:15.010000"],["2024-07-25T08:39:16.010000"],["2024-07-25T08:39:17.010000"],["2024-07-25T08:39:18.010000"],["2024-07-25T08:39:19.010000"],["2024-07-25T08:39:20.010000"],["2024-07-25T08:39:21.010000"],["2024-07-25T08:39:22.010000"],["2024-07-25T08:39:23.010000"],["2024-07-25T08:39:24.010000"],["2024-07-25T08:39:25.010000"],["2024-07-25T08:39:26.010000"],["2024-07-25T08:39:27.010000"],["2024-07-25T08:39:28.010000"],["2024-07-25T08:39:29.010000"],["2024-07-25T08:39:30.010000"],["2024-07-25T08:39:31.010000"],["2024-07-25T08:39:32.010000"],["2024-07-25T08:39:33.010000"],["2024-07-25T08:39:34.010000"],["2024-07-25T08:39:35.010000"],["2024-07-25T08:39:36.010000"],["2024-07-25T08:39:37.010000"],["2024-07-25T08:39:38.010000"],["2024-07-25T08:39:39.010000"],["2024-07-25T08:39:40.010000"],["2024-07-25T08:39:41.010000"],["2024-07-25T08:39:42.010000"],["2024-07-25T08:39:43.010000"],["2024-07-25T08:39:44.010000"],["2024-07-25T08:39:45.010000"],["2024-07-25T08:39:46.010000"],["2024-07-25T08:39:47.010000"],["2024-07-25T08:39:48.010000"],["2024-07-25T08:39:49.010000"],["2024-07-25T08:39:50.010000"],["2024-07-25T08:39:51.010000"],["2024-07-25T08:39:52.010000"],["2024-07-25T08:39:53.010000"],["2024-07-25T08:39:54.010000"],["2024-07-25T08:39:55.010000"],["2024-07-25T08:39:56.010000"],["2024-07-25T08:39:57.010000"],["2024-07-25T08:39:58.010000"],["2024-07-25T08:39:59.010000"],["2024-07-25T08:40:00.010000"],["2024-07-25T08:40:01.010000"],["2024-07-25T08:40:02.010000"],["2024-07-25T08:40:03.010000"],["2024-07-25T08:40:04.010000"],["2024-07-25T08:40:05.010000"],["2024-07-25T08:40:06.010000"],["2024-07-25T08:40:07.010000"],["2024-07-25T08:40:08.010000"],["2024-07-25T08:40:09.010000"],["2024-07-25T08:40:10.010000"],["2024-07-25T08:40:11.010000"],["2024-07-25T08:40:12.010000"],["2024-07-25T08:40:13.010000"],["2024-07-25T08:40:14.010000"],["2024-07-25T08:40:15.010000"],["2024-07-25T08:40:16.010000"],["2024-07-25T08:40:17.010000"],["2024-07-25T08:40:18.010000"],["2024-07-25T08:40:19.010000"],["2024-07-25T08:40:20.010000"],["2024-07-25T08:40:21.010000"],["2024-07-25T08:40:22.010000"],["2024-07-25T08:40:23.010000"],["2024-07-25T08:40:24.010000"],["2024-07-25T08:40:25.010000"],["2024-07-25T08:40:26.010000"],["2024-07-25T08:40:27.010000"],["2024-07-25T08:40:28.010000"],["2024-07-25T08:40:29.010000"],["2024-07-25T08:40:30.010000"],["2024-07-25T08:40:31.010000"],["2024-07-25T08:40:32.010000"],["2024-07-25T08:40:33.010000"],["2024-07-25T08:40:34.010000"],["2024-07-25T08:40:35.010000"],["2024-07-25T08:40:36.010000"],["2024-07-25T08:40:37.010000"],["2024-07-25T08:40:38.010000"],["2024-07-25T08:40:39.010000"],["2024-07-25T08:40:40.010000"],["2024-07-25T08:40:41.010000"],["2024-07-25T08:40:42.010000"],["2024-07-25T08:40:43.010000"],["2024-07-25T08:40:44.010000"],["2024-07-25T08:40:45.010000"],["2024-07-25T08:40:46.010000"],["2024-07-25T08:40:47.010000"],["2024-07-25T08:40:48.010000"],["2024-07-25T08:40:49.010000"],["2024-07-25T08:40:50.010000"],["2024-07-25T08:40:51.010000"],["2024-07-25T08:40:52.010000"],["2024-07-25T08:40:53.010000"],["2024-07-25T08:40:54.010000"],["2024-07-25T08:40:55.010000"],["2024-07-25T08:40:56.010000"],["2024-07-25T08:40:57.010000"],["2024-07-25T08:40:58.010000"],["2024-07-25T08:40:59.010000"],["2024-07-25T08:41:00.010000"],["2024-07-25T08:41:01.010000"],["2024-07-25T08:41:02.010000"],["2024-07-25T08:41:03.010000"],["2024-07-25T08:41:04.010000"],["2024-07-25T08:41:05.010000"],["2024-07-25T08:41:06.010000"],["2024-07-25T08:41:07.010000"],["2024-07-25T08:41:08.010000"],["2024-07-25T08:41:09.010000"],["2024-07-25T08:41:10.010000"],["2024-07-25T08:41:11.010000"],["2024-07-25T08:41:12.010000"],["2024-07-25T08:41:13.010000"],["2024-07-25T08:41:14.010000"],["2024-07-25T08:41:15.010000"],["2024-07-25T08:41:16.010000"],["2024-07-25T08:41:17.010000"],["2024-07-25T08:41:18.010000"],["2024-07-25T08:41:19.010000"],["2024-07-25T08:41:20.010000"],["2024-07-25T08:41:21.010000"],["2024-07-25T08:41:22.010000"],["2024-07-25T08:41:23.010000"],["2024-07-25T08:41:24.010000"],["2024-07-25T08:41:25.010000"],["2024-07-25T08:41:26.010000"],["2024-07-25T08:41:27.010000"],["2024-07-25T08:41:28.010000"],["2024-07-25T08:41:29.010000"],["2024-07-25T08:41:30.010000"],["2024-07-25T08:41:31.010000"],["2024-07-25T08:41:32.010000"],["2024-07-25T08:41:33.010000"],["2024-07-25T08:41:34.010000"],["2024-07-25T08:41:35.010000"],["2024-07-25T08:41:36.010000"],["2024-07-25T08:41:37.010000"],["2024-07-25T08:41:38.010000"],["2024-07-25T08:41:39.010000"],["2024-07-25T08:41:40.010000"],["2024-07-25T08:41:41.010000"],["2024-07-25T08:41:42.010000"],["2024-07-25T08:41:43.010000"],["2024-07-25T08:41:44.010000"],["2024-07-25T08:41:45.010000"],["2024-07-25T08:41:46.010000"],["2024-07-25T08:41:47.010000"],["2024-07-25T08:41:48.010000"],["2024-07-25T08:41:49.010000"],["2024-07-25T08:41:50.010000"],["2024-07-25T08:41:51.010000"],["2024-07-25T08:41:52.010000"],["2024-07-25T08:41:53.010000"],["2024-07-25T08:41:54.010000"],["2024-07-25T08:41:55.010000"],["2024-07-25T08:41:56.010000"],["2024-07-25T08:41:57.010000"],["2024-07-25T08:41:58.010000"],["2024-07-25T08:41:59.010000"],["2024-07-25T08:42:00.010000"],["2024-07-25T08:42:01.010000"],["2024-07-25T08:42:02.010000"],["2024-07-25T08:42:03.010000"],["2024-07-25T08:42:04.010000"],["2024-07-25T08:42:05.010000"],["2024-07-25T08:42:06.010000"],["2024-07-25T08:42:07.010000"],["2024-07-25T08:42:08.010000"],["2024-07-25T08:42:09.010000"],["2024-07-25T08:42:10.010000"],["2024-07-25T08:42:11.010000"],["2024-07-25T08:42:12.010000"],["2024-07-25T08:42:13.010000"],["2024-07-25T08:42:14.010000"],["2024-07-25T08:42:15.010000"],["2024-07-25T08:42:16.010000"],["2024-07-25T08:42:17.010000"],["2024-07-25T08:42:18.010000"],["2024-07-25T08:42:19.010000"],["2024-07-25T08:42:20.010000"],["2024-07-25T08:42:21.010000"],["2024-07-25T08:42:22.010000"],["2024-07-25T08:42:23.010000"],["2024-07-25T08:42:24.010000"],["2024-07-25T08:42:25.010000"],["2024-07-25T08:42:26.010000"],["2024-07-25T08:42:27.010000"],["2024-07-25T08:42:28.010000"],["2024-07-25T08:42:29.010000"],["2024-07-25T08:42:30.010000"],["2024-07-25T08:42:31.010000"],["2024-07-25T08:42:32.010000"],["2024-07-25T08:42:33.010000"],["2024-07-25T08:42:34.010000"],["2024-07-25T08:42:35.010000"],["2024-07-25T08:42:36.010000"],["2024-07-25T08:42:37.010000"],["2024-07-25T08:42:38.010000"],["2024-07-25T08:42:39.010000"],["2024-07-25T08:42:40.010000"],["2024-07-25T08:42:41.010000"],["2024-07-25T08:42:42.010000"],["2024-07-25T08:42:43.010000"],["2024-07-25T08:42:44.010000"],["2024-07-25T08:42:45.010000"],["2024-07-25T08:42:46.010000"],["2024-07-25T08:42:47.010000"],["2024-07-25T08:42:48.010000"],["2024-07-25T08:42:49.010000"],["2024-07-25T08:42:50.010000"],["2024-07-25T08:42:51.010000"],["2024-07-25T08:42:52.010000"],["2024-07-25T08:42:53.010000"],["2024-07-25T08:42:54.010000"],["2024-07-25T08:42:55.010000"],["2024-07-25T08:42:56.010000"],["2024-07-25T08:42:57.010000"],["2024-07-25T08:42:58.010000"],["2024-07-25T08:42:59.010000"],["2024-07-25T08:43:00.010000"],["2024-07-25T08:43:01.010000"],["2024-07-25T08:43:02.010000"],["2024-07-25T08:43:03.010000"],["2024-07-25T08:43:04.010000"],["2024-07-25T08:43:05.010000"],["2024-07-25T08:43:06.010000"],["2024-07-25T08:43:07.010000"],["2024-07-25T08:43:08.010000"],["2024-07-25T08:43:09.010000"],["2024-07-25T08:43:10.010000"],["2024-07-25T08:43:11.010000"],["2024-07-25T08:43:12.010000"],["2024-07-25T08:43:13.010000"],["2024-07-25T08:43:14.010000"],["2024-07-25T08:43:15.010000"],["2024-07-25T08:43:16.010000"],["2024-07-25T08:43:17.010000"],["2024-07-25T08:43:18.010000"],["2024-07-25T08:43:19.010000"],["2024-07-25T08:43:20.010000"],["2024-07-25T08:43:21.010000"],["2024-07-25T08:43:22.010000"],["2024-07-25T08:43:23.010000"],["2024-07-25T08:43:24.010000"],["2024-07-25T08:43:25.010000"],["2024-07-25T08:43:26.010000"],["2024-07-25T08:43:27.010000"],["2024-07-25T08:43:28.010000"],["2024-07-25T08:43:29.010000"],["2024-07-25T08:43:30.010000"],["2024-07-25T08:43:31.010000"],["2024-07-25T08:43:32.010000"],["2024-07-25T08:43:33.010000"],["2024-07-25T08:43:34.010000"],["2024-07-25T08:43:35.010000"],["2024-07-25T08:43:36.010000"],["2024-07-25T08:43:37.010000"],["2024-07-25T08:43:38.010000"],["2024-07-25T08:43:39.010000"],["2024-07-25T08:43:40.010000"],["2024-07-25T08:43:41.010000"],["2024-07-25T08:43:42.010000"],["2024-07-25T08:43:43.010000"],["2024-07-25T08:43:44.010000"],["2024-07-25T08:43:45.010000"],["2024-07-25T08:43:46.010000"],["2024-07-25T08:43:47.010000"],["2024-07-25T08:43:48.010000"],["2024-07-25T08:43:49.010000"],["2024-07-25T08:43:50.010000"],["2024-07-25T08:43:51.010000"],["2024-07-25T08:43:52.010000"],["2024-07-25T08:43:53.010000"],["2024-07-25T08:43:54.010000"],["2024-07-25T08:43:55.010000"],["2024-07-25T08:43:56.010000"],["2024-07-25T08:43:57.010000"],["2024-07-25T08:43:58.010000"],["2024-07-25T08:43:59.010000"],["2024-07-25T08:44:00.010000"],["2024-07-25T08:44:01.010000"],["2024-07-25T08:44:02.010000"],["2024-07-25T08:44:03.010000"],["2024-07-25T08:44:04.010000"],["2024-07-25T08:44:05.010000"],["2024-07-25T08:44:06.010000"],["2024-07-25T08:44:07.010000"],["2024-07-25T08:44:08.010000"],["2024-07-25T08:44:09.010000"],["2024-07-25T08:44:10.010000"],["2024-07-25T08:44:11.010000"],["2024-07-25T08:44:12.010000"],["2024-07-25T08:44:13.010000"],["2024-07-25T08:44:14.010000"],["2024-07-25T08:44:15.010000"],["2024-07-25T08:44:16.010000"],["2024-07-25T08:44:17.010000"],["2024-07-25T08:44:18.010000"],["2024-07-25T08:44:19.010000"],["2024-07-25T08:44:20.010000"],["2024-07-25T08:44:21.010000"],["2024-07-25T08:44:22.010000"],["2024-07-25T08:44:23.010000"],["2024-07-25T08:44:24.010000"],["2024-07-25T08:44:25.010000"],["2024-07-25T08:44:26.010000"],["2024-07-25T08:44:27.010000"],["2024-07-25T08:44:28.010000"],["2024-07-25T08:44:29.010000"],["2024-07-25T08:44:30.010000"],["2024-07-25T08:44:31.010000"],["2024-07-25T08:44:32.010000"],["2024-07-25T08:44:33.010000"],["2024-07-25T08:44:34.010000"],["2024-07-25T08:44:35.010000"],["2024-07-25T08:44:36.010000"],["2024-07-25T08:44:37.010000"],["2024-07-25T08:44:38.010000"],["2024-07-25T08:44:39.010000"],["2024-07-25T08:44:40.010000"],["2024-07-25T08:44:41.010000"],["2024-07-25T08:44:42.010000"],["2024-07-25T08:44:43.010000"],["2024-07-25T08:44:44.010000"],["2024-07-25T08:44:45.010000"],["2024-07-25T08:44:46.010000"],["2024-07-25T08:44:47.010000"],["2024-07-25T08:44:48.010000"],["2024-07-25T08:44:49.010000"],["2024-07-25T08:44:50.010000"],["2024-07-25T08:44:51.010000"],["2024-07-25T08:44:52.010000"],["2024-07-25T08:44:53.010000"],["2024-07-25T08:44:54.010000"],["2024-07-25T08:44:55.010000"],["2024-07-25T08:44:56.010000"],["2024-07-25T08:44:57.010000"],["2024-07-25T08:44:58.010000"],["2024-07-25T08:44:59.010000"],["2024-07-25T08:45:00.010000"],["2024-07-25T08:45:01.010000"],["2024-07-25T08:45:02.010000"],["2024-07-25T08:45:03.010000"],["2024-07-25T08:45:04.010000"],["2024-07-25T08:45:05.010000"],["2024-07-25T08:45:06.010000"],["2024-07-25T08:45:07.010000"],["2024-07-25T08:45:08.010000"],["2024-07-25T08:45:09.010000"],["2024-07-25T08:45:10.010000"],["2024-07-25T08:45:11.010000"],["2024-07-25T08:45:12.010000"],["2024-07-25T08:45:13.010000"],["2024-07-25T08:45:14.010000"],["2024-07-25T08:45:15.010000"],["2024-07-25T08:45:16.010000"],["2024-07-25T08:45:17.010000"],["2024-07-25T08:45:18.010000"],["2024-07-25T08:45:19.010000"],["2024-07-25T08:45:20.010000"],["2024-07-25T08:45:21.010000"],["2024-07-25T08:45:22.010000"],["2024-07-25T08:45:23.010000"],["2024-07-25T08:45:24.010000"],["2024-07-25T08:45:25.010000"],["2024-07-25T08:45:26.010000"],["2024-07-25T08:45:27.010000"],["2024-07-25T08:45:28.010000"],["2024-07-25T08:45:29.010000"],["2024-07-25T08:45:30.010000"],["2024-07-25T08:45:31.010000"],["2024-07-25T08:45:32.010000"],["2024-07-25T08:45:33.010000"],["2024-07-25T08:45:34.010000"],["2024-07-25T08:45:35.010000"],["2024-07-25T08:45:36.010000"],["2024-07-25T08:45:37.010000"],["2024-07-25T08:45:38.010000"],["2024-07-25T08:45:39.010000"],["2024-07-25T08:45:40.010000"],["2024-07-25T08:45:41.010000"],["2024-07-25T08:45:42.010000"],["2024-07-25T08:45:43.010000"],["2024-07-25T08:45:44.010000"],["2024-07-25T08:45:45.010000"],["2024-07-25T08:45:46.010000"],["2024-07-25T08:45:47.010000"],["2024-07-25T08:45:48.010000"],["2024-07-25T08:45:49.010000"],["2024-07-25T08:45:50.010000"],["2024-07-25T08:45:51.010000"],["2024-07-25T08:45:52.010000"],["2024-07-25T08:45:53.010000"],["2024-07-25T08:45:54.010000"],["2024-07-25T08:45:55.010000"],["2024-07-25T08:45:56.010000"],["2024-07-25T08:45:57.010000"],["2024-07-25T08:45:58.010000"],["2024-07-25T08:45:59.010000"],["2024-07-25T08:46:00.010000"],["2024-07-25T08:46:01.010000"],["2024-07-25T08:46:02.010000"],["2024-07-25T08:46:03.010000"],["2024-07-25T08:46:04.010000"],["2024-07-25T08:46:05.010000"],["2024-07-25T08:46:06.010000"],["2024-07-25T08:46:07.010000"],["2024-07-25T08:46:08.010000"],["2024-07-25T08:46:09.010000"],["2024-07-25T08:46:10.010000"],["2024-07-25T08:46:11.010000"],["2024-07-25T08:46:12.010000"],["2024-07-25T08:46:13.010000"],["2024-07-25T08:46:14.010000"],["2024-07-25T08:46:15.010000"],["2024-07-25T08:46:16.010000"],["2024-07-25T08:46:17.010000"],["2024-07-25T08:46:18.010000"],["2024-07-25T08:46:19.010000"],["2024-07-25T08:46:20.010000"],["2024-07-25T08:46:21.010000"],["2024-07-25T08:46:22.010000"],["2024-07-25T08:46:23.010000"],["2024-07-25T08:46:24.010000"],["2024-07-25T08:46:25.010000"],["2024-07-25T08:46:26.010000"],["2024-07-25T08:46:27.010000"],["2024-07-25T08:46:28.010000"],["2024-07-25T08:46:29.010000"],["2024-07-25T08:46:30.010000"],["2024-07-25T08:46:31.010000"],["2024-07-25T08:46:32.010000"],["2024-07-25T08:46:33.010000"],["2024-07-25T08:46:34.010000"],["2024-07-25T08:46:35.010000"],["2024-07-25T08:46:36.010000"],["2024-07-25T08:46:37.010000"],["2024-07-25T08:46:38.010000"],["2024-07-25T08:46:39.010000"],["2024-07-25T08:46:40.010000"],["2024-07-25T08:46:41.010000"],["2024-07-25T08:46:42.010000"],["2024-07-25T08:46:43.010000"],["2024-07-25T08:46:44.010000"],["2024-07-25T08:46:45.010000"],["2024-07-25T08:46:46.010000"],["2024-07-25T08:46:47.010000"],["2024-07-25T08:46:48.010000"],["2024-07-25T08:46:49.010000"],["2024-07-25T08:46:50.010000"],["2024-07-25T08:46:51.010000"],["2024-07-25T08:46:52.010000"],["2024-07-25T08:46:53.010000"],["2024-07-25T08:46:54.010000"],["2024-07-25T08:46:55.010000"],["2024-07-25T08:46:56.010000"],["2024-07-25T08:46:57.010000"],["2024-07-25T08:46:58.010000"],["2024-07-25T08:46:59.010000"],["2024-07-25T08:47:00.010000"],["2024-07-25T08:47:01.010000"],["2024-07-25T08:47:02.010000"],["2024-07-25T08:47:03.010000"],["2024-07-25T08:47:04.010000"],["2024-07-25T08:47:05.010000"],["2024-07-25T08:47:06.010000"],["2024-07-25T08:47:07.010000"],["2024-07-25T08:47:08.010000"],["2024-07-25T08:47:09.010000"],["2024-07-25T08:47:10.010000"],["2024-07-25T08:47:11.010000"],["2024-07-25T08:47:12.010000"],["2024-07-25T08:47:13.010000"],["2024-07-25T08:47:14.010000"],["2024-07-25T08:47:15.010000"],["2024-07-25T08:47:16.010000"],["2024-07-25T08:47:17.010000"],["2024-07-25T08:47:18.010000"],["2024-07-25T08:47:19.010000"],["2024-07-25T08:47:20.010000"],["2024-07-25T08:47:21.010000"],["2024-07-25T08:47:22.010000"],["2024-07-25T08:47:23.010000"],["2024-07-25T08:47:24.010000"],["2024-07-25T08:47:25.010000"],["2024-07-25T08:47:26.010000"],["2024-07-25T08:47:27.010000"],["2024-07-25T08:47:28.010000"],["2024-07-25T08:47:29.010000"],["2024-07-25T08:47:30.010000"],["2024-07-25T08:47:31.010000"],["2024-07-25T08:47:32.010000"],["2024-07-25T08:47:33.010000"],["2024-07-25T08:47:34.010000"],["2024-07-25T08:47:35.010000"],["2024-07-25T08:47:36.010000"],["2024-07-25T08:47:37.010000"],["2024-07-25T08:47:38.010000"],["2024-07-25T08:47:39.010000"],["2024-07-25T08:47:40.010000"],["2024-07-25T08:47:41.010000"],["2024-07-25T08:47:42.010000"],["2024-07-25T08:47:43.010000"],["2024-07-25T08:47:44.010000"],["2024-07-25T08:47:45.010000"],["2024-07-25T08:47:46.010000"],["2024-07-25T08:47:47.010000"],["2024-07-25T08:47:48.010000"],["2024-07-25T08:47:49.010000"],["2024-07-25T08:47:50.010000"],["2024-07-25T08:47:51.010000"],["2024-07-25T08:47:52.010000"],["2024-07-25T08:47:53.010000"],["2024-07-25T08:47:54.010000"],["2024-07-25T08:47:55.010000"],["2024-07-25T08:47:56.010000"],["2024-07-25T08:47:57.010000"],["2024-07-25T08:47:58.010000"],["2024-07-25T08:47:59.010000"],["2024-07-25T08:48:00.010000"],["2024-07-25T08:48:01.010000"],["2024-07-25T08:48:02.010000"],["2024-07-25T08:48:03.010000"],["2024-07-25T08:48:04.010000"],["2024-07-25T08:48:05.010000"],["2024-07-25T08:48:06.010000"],["2024-07-25T08:48:07.010000"],["2024-07-25T08:48:08.010000"],["2024-07-25T08:48:09.010000"],["2024-07-25T08:48:10.010000"],["2024-07-25T08:48:11.010000"],["2024-07-25T08:48:12.010000"],["2024-07-25T08:48:13.010000"],["2024-07-25T08:48:14.010000"],["2024-07-25T08:48:15.010000"],["2024-07-25T08:48:16.010000"],["2024-07-25T08:48:17.010000"],["2024-07-25T08:48:18.010000"],["2024-07-25T08:48:19.010000"],["2024-07-25T08:48:20.010000"],["2024-07-25T08:48:21.010000"],["2024-07-25T08:48:22.010000"],["2024-07-25T08:48:23.010000"],["2024-07-25T08:48:24.010000"],["2024-07-25T08:48:25.010000"],["2024-07-25T08:48:26.010000"],["2024-07-25T08:48:27.010000"],["2024-07-25T08:48:28.010000"],["2024-07-25T08:48:29.010000"],["2024-07-25T08:48:30.010000"],["2024-07-25T08:48:31.010000"],["2024-07-25T08:48:32.010000"],["2024-07-25T08:48:33.010000"],["2024-07-25T08:48:34.010000"],["2024-07-25T08:48:35.010000"],["2024-07-25T08:48:36.010000"],["2024-07-25T08:48:37.010000"],["2024-07-25T08:48:38.010000"],["2024-07-25T08:48:39.010000"],["2024-07-25T08:48:40.010000"],["2024-07-25T08:48:41.010000"],["2024-07-25T08:48:42.010000"],["2024-07-25T08:48:43.010000"],["2024-07-25T08:48:44.010000"],["2024-07-25T08:48:45.010000"],["2024-07-25T08:48:46.010000"],["2024-07-25T08:48:47.010000"],["2024-07-25T08:48:48.010000"],["2024-07-25T08:48:49.010000"],["2024-07-25T08:48:50.010000"],["2024-07-25T08:48:51.010000"],["2024-07-25T08:48:52.010000"],["2024-07-25T08:48:53.010000"],["2024-07-25T08:48:54.010000"],["2024-07-25T08:48:55.010000"],["2024-07-25T08:48:56.010000"],["2024-07-25T08:48:57.010000"],["2024-07-25T08:48:58.010000"],["2024-07-25T08:48:59.010000"],["2024-07-25T08:49:00.010000"],["2024-07-25T08:49:01.010000"],["2024-07-25T08:49:02.010000"],["2024-07-25T08:49:03.010000"],["2024-07-25T08:49:04.010000"],["2024-07-25T08:49:05.010000"],["2024-07-25T08:49:06.010000"],["2024-07-25T08:49:07.010000"],["2024-07-25T08:49:08.010000"],["2024-07-25T08:49:09.010000"],["2024-07-25T08:49:10.010000"],["2024-07-25T08:49:11.010000"],["2024-07-25T08:49:12.010000"],["2024-07-25T08:49:13.010000"],["2024-07-25T08:49:14.010000"],["2024-07-25T08:49:15.010000"],["2024-07-25T08:49:16.010000"],["2024-07-25T08:49:17.010000"],["2024-07-25T08:49:18.010000"],["2024-07-25T08:49:19.010000"],["2024-07-25T08:49:20.010000"],["2024-07-25T08:49:21.010000"],["2024-07-25T08:49:22.010000"],["2024-07-25T08:49:23.010000"],["2024-07-25T08:49:24.010000"],["2024-07-25T08:49:25.010000"],["2024-07-25T08:49:26.010000"],["2024-07-25T08:49:27.010000"],["2024-07-25T08:49:28.010000"],["2024-07-25T08:49:29.010000"],["2024-07-25T08:49:30.010000"],["2024-07-25T08:49:31.010000"],["2024-07-25T08:49:32.010000"],["2024-07-25T08:49:33.010000"],["2024-07-25T08:49:34.010000"],["2024-07-25T08:49:35.010000"],["2024-07-25T08:49:36.010000"],["2024-07-25T08:49:37.010000"],["2024-07-25T08:49:38.010000"],["2024-07-25T08:49:39.010000"],["2024-07-25T08:49:40.010000"],["2024-07-25T08:49:41.010000"],["2024-07-25T08:49:42.010000"],["2024-07-25T08:49:43.010000"],["2024-07-25T08:49:44.010000"],["2024-07-25T08:49:45.010000"],["2024-07-25T08:49:46.010000"],["2024-07-25T08:49:47.010000"],["2024-07-25T08:49:48.010000"],["2024-07-25T08:49:49.010000"],["2024-07-25T08:49:50.010000"],["2024-07-25T08:49:51.010000"],["2024-07-25T08:49:52.010000"],["2024-07-25T08:49:53.010000"],["2024-07-25T08:49:54.010000"],["2024-07-25T08:49:55.010000"],["2024-07-25T08:49:56.010000"],["2024-07-25T08:49:57.010000"],["2024-07-25T08:49:58.010000"],["2024-07-25T08:49:59.010000"],["2024-07-25T08:50:00.010000"],["2024-07-25T08:50:01.010000"],["2024-07-25T08:50:02.010000"],["2024-07-25T08:50:03.010000"],["2024-07-25T08:50:04.010000"],["2024-07-25T08:50:05.010000"],["2024-07-25T08:50:06.010000"],["2024-07-25T08:50:07.010000"],["2024-07-25T08:50:08.010000"],["2024-07-25T08:50:09.010000"],["2024-07-25T08:50:10.010000"],["2024-07-25T08:50:11.010000"],["2024-07-25T08:50:12.010000"],["2024-07-25T08:50:13.010000"],["2024-07-25T08:50:14.010000"],["2024-07-25T08:50:15.010000"],["2024-07-25T08:50:16.010000"],["2024-07-25T08:50:17.010000"],["2024-07-25T08:50:18.010000"],["2024-07-25T08:50:19.010000"],["2024-07-25T08:50:20.010000"],["2024-07-25T08:50:21.010000"],["2024-07-25T08:50:22.010000"],["2024-07-25T08:50:23.010000"],["2024-07-25T08:50:24.010000"],["2024-07-25T08:50:25.010000"],["2024-07-25T08:50:26.010000"],["2024-07-25T08:50:27.010000"],["2024-07-25T08:50:28.010000"],["2024-07-25T08:50:29.010000"],["2024-07-25T08:50:30.010000"],["2024-07-25T08:50:31.010000"],["2024-07-25T08:50:32.010000"],["2024-07-25T08:50:33.010000"],["2024-07-25T08:50:34.010000"],["2024-07-25T08:50:35.010000"],["2024-07-25T08:50:36.010000"],["2024-07-25T08:50:37.010000"],["2024-07-25T08:50:38.010000"],["2024-07-25T08:50:39.010000"],["2024-07-25T08:50:40.010000"],["2024-07-25T08:50:41.010000"],["2024-07-25T08:50:42.010000"],["2024-07-25T08:50:43.010000"],["2024-07-25T08:50:44.010000"],["2024-07-25T08:50:45.010000"],["2024-07-25T08:50:46.010000"],["2024-07-25T08:50:47.010000"],["2024-07-25T08:50:48.010000"],["2024-07-25T08:50:49.010000"],["2024-07-25T08:50:50.010000"],["2024-07-25T08:50:51.010000"],["2024-07-25T08:50:52.010000"],["2024-07-25T08:50:53.010000"],["2024-07-25T08:50:54.010000"],["2024-07-25T08:50:55.010000"],["2024-07-25T08:50:56.010000"],["2024-07-25T08:50:57.010000"],["2024-07-25T08:50:58.010000"],["2024-07-25T08:50:59.010000"],["2024-07-25T08:51:00.010000"],["2024-07-25T08:51:01.010000"],["2024-07-25T08:51:02.010000"],["2024-07-25T08:51:03.010000"],["2024-07-25T08:51:04.010000"],["2024-07-25T08:51:05.010000"],["2024-07-25T08:51:06.010000"],["2024-07-25T08:51:07.010000"],["2024-07-25T08:51:08.010000"],["2024-07-25T08:51:09.010000"],["2024-07-25T08:51:10.010000"],["2024-07-25T08:51:11.010000"],["2024-07-25T08:51:12.010000"],["2024-07-25T08:51:13.010000"],["2024-07-25T08:51:14.010000"],["2024-07-25T08:51:15.010000"],["2024-07-25T08:51:16.010000"],["2024-07-25T08:51:17.010000"],["2024-07-25T08:51:18.010000"],["2024-07-25T08:51:19.010000"],["2024-07-25T08:51:20.010000"],["2024-07-25T08:51:21.010000"],["2024-07-25T08:51:22.010000"],["2024-07-25T08:51:23.010000"],["2024-07-25T08:51:24.010000"],["2024-07-25T08:51:25.010000"],["2024-07-25T08:51:26.010000"],["2024-07-25T08:51:27.010000"],["2024-07-25T08:51:28.010000"],["2024-07-25T08:51:29.010000"],["2024-07-25T08:51:30.010000"],["2024-07-25T08:51:31.010000"],["2024-07-25T08:51:32.010000"],["2024-07-25T08:51:33.010000"],["2024-07-25T08:51:34.010000"],["2024-07-25T08:51:35.010000"],["2024-07-25T08:51:36.010000"],["2024-07-25T08:51:37.010000"],["2024-07-25T08:51:38.010000"],["2024-07-25T08:51:39.010000"],["2024-07-25T08:51:40.010000"],["2024-07-25T08:51:41.010000"],["2024-07-25T08:51:42.010000"],["2024-07-25T08:51:43.010000"],["2024-07-25T08:51:44.010000"],["2024-07-25T08:51:45.010000"],["2024-07-25T08:51:46.010000"],["2024-07-25T08:51:47.010000"],["2024-07-25T08:51:48.010000"],["2024-07-25T08:51:49.010000"],["2024-07-25T08:51:50.010000"],["2024-07-25T08:51:51.010000"],["2024-07-25T08:51:52.010000"],["2024-07-25T08:51:53.010000"],["2024-07-25T08:51:54.010000"],["2024-07-25T08:51:55.010000"],["2024-07-25T08:51:56.010000"],["2024-07-25T08:51:57.010000"],["2024-07-25T08:51:58.010000"],["2024-07-25T08:51:59.010000"],["2024-07-25T08:52:00.010000"],["2024-07-25T08:52:01.010000"],["2024-07-25T08:52:02.010000"],["2024-07-25T08:52:03.010000"],["2024-07-25T08:52:04.010000"],["2024-07-25T08:52:05.010000"],["2024-07-25T08:52:06.010000"],["2024-07-25T08:52:07.010000"],["2024-07-25T08:52:08.010000"],["2024-07-25T08:52:09.010000"],["2024-07-25T08:52:10.010000"],["2024-07-25T08:52:11.010000"],["2024-07-25T08:52:12.010000"],["2024-07-25T08:52:13.010000"],["2024-07-25T08:52:14.010000"],["2024-07-25T08:52:15.010000"],["2024-07-25T08:52:16.010000"],["2024-07-25T08:52:17.010000"],["2024-07-25T08:52:18.010000"],["2024-07-25T08:52:19.010000"],["2024-07-25T08:52:20.010000"],["2024-07-25T08:52:21.010000"],["2024-07-25T08:52:22.010000"],["2024-07-25T08:52:23.010000"],["2024-07-25T08:52:24.010000"],["2024-07-25T08:52:25.010000"],["2024-07-25T08:52:26.010000"],["2024-07-25T08:52:27.010000"],["2024-07-25T08:52:28.010000"],["2024-07-25T08:52:29.010000"],["2024-07-25T08:52:30.010000"],["2024-07-25T08:52:31.010000"],["2024-07-25T08:52:32.010000"],["2024-07-25T08:52:33.010000"],["2024-07-25T08:52:34.010000"],["2024-07-25T08:52:35.010000"],["2024-07-25T08:52:36.010000"],["2024-07-25T08:52:37.010000"],["2024-07-25T08:52:38.010000"],["2024-07-25T08:52:39.010000"],["2024-07-25T08:52:40.010000"],["2024-07-25T08:52:41.010000"],["2024-07-25T08:52:42.010000"],["2024-07-25T08:52:43.010000"],["2024-07-25T08:52:44.010000"],["2024-07-25T08:52:45.010000"],["2024-07-25T08:52:46.010000"],["2024-07-25T08:52:47.010000"],["2024-07-25T08:52:48.010000"],["2024-07-25T08:52:49.010000"],["2024-07-25T08:52:50.010000"],["2024-07-25T08:52:51.010000"],["2024-07-25T08:52:52.010000"],["2024-07-25T08:52:53.010000"],["2024-07-25T08:52:54.010000"],["2024-07-25T08:52:55.010000"],["2024-07-25T08:52:56.010000"],["2024-07-25T08:52:57.010000"],["2024-07-25T08:52:58.010000"],["2024-07-25T08:52:59.010000"],["2024-07-25T08:53:00.010000"],["2024-07-25T08:53:01.010000"],["2024-07-25T08:53:02.010000"],["2024-07-25T08:53:03.010000"],["2024-07-25T08:53:04.010000"],["2024-07-25T08:53:05.010000"],["2024-07-25T08:53:06.010000"],["2024-07-25T08:53:07.010000"],["2024-07-25T08:53:08.010000"],["2024-07-25T08:53:09.010000"],["2024-07-25T08:53:10.010000"],["2024-07-25T08:53:11.010000"],["2024-07-25T08:53:12.010000"],["2024-07-25T08:53:13.010000"],["2024-07-25T08:53:14.010000"],["2024-07-25T08:53:15.010000"],["2024-07-25T08:53:16.010000"],["2024-07-25T08:53:17.010000"],["2024-07-25T08:53:18.010000"],["2024-07-25T08:53:19.010000"],["2024-07-25T08:53:20.010000"],["2024-07-25T08:53:21.010000"],["2024-07-25T08:53:22.010000"],["2024-07-25T08:53:23.010000"],["2024-07-25T08:53:24.010000"],["2024-07-25T08:53:25.010000"],["2024-07-25T08:53:26.010000"],["2024-07-25T08:53:27.010000"],["2024-07-25T08:53:28.010000"],["2024-07-25T08:53:29.010000"],["2024-07-25T08:53:30.010000"],["2024-07-25T08:53:31.010000"],["2024-07-25T08:53:32.010000"],["2024-07-25T08:53:33.010000"],["2024-07-25T08:53:34.010000"],["2024-07-25T08:53:35.010000"],["2024-07-25T08:53:36.010000"],["2024-07-25T08:53:37.010000"],["2024-07-25T08:53:38.010000"],["2024-07-25T08:53:39.010000"],["2024-07-25T08:53:40.010000"],["2024-07-25T08:53:41.010000"],["2024-07-25T08:53:42.010000"],["2024-07-25T08:53:43.010000"],["2024-07-25T08:53:44.010000"],["2024-07-25T08:53:45.010000"],["2024-07-25T08:53:46.010000"],["2024-07-25T08:53:47.010000"],["2024-07-25T08:53:48.010000"],["2024-07-25T08:53:49.010000"],["2024-07-25T08:53:50.010000"],["2024-07-25T08:53:51.010000"],["2024-07-25T08:53:52.010000"],["2024-07-25T08:53:53.010000"],["2024-07-25T08:53:54.010000"],["2024-07-25T08:53:55.010000"],["2024-07-25T08:53:56.010000"],["2024-07-25T08:53:57.010000"],["2024-07-25T08:53:58.010000"],["2024-07-25T08:53:59.010000"],["2024-07-25T08:54:00.010000"],["2024-07-25T08:54:01.010000"],["2024-07-25T08:54:02.010000"],["2024-07-25T08:54:03.010000"],["2024-07-25T08:54:04.010000"],["2024-07-25T08:54:05.010000"],["2024-07-25T08:54:06.010000"],["2024-07-25T08:54:07.010000"],["2024-07-25T08:54:08.010000"],["2024-07-25T08:54:09.010000"],["2024-07-25T08:54:10.010000"],["2024-07-25T08:54:11.010000"],["2024-07-25T08:54:12.010000"],["2024-07-25T08:54:13.010000"],["2024-07-25T08:54:14.010000"],["2024-07-25T08:54:15.010000"],["2024-07-25T08:54:16.010000"],["2024-07-25T08:54:17.010000"],["2024-07-25T08:54:18.010000"],["2024-07-25T08:54:19.010000"],["2024-07-25T08:54:20.010000"],["2024-07-25T08:54:21.010000"],["2024-07-25T08:54:22.010000"],["2024-07-25T08:54:23.010000"],["2024-07-25T08:54:24.010000"],["2024-07-25T08:54:25.010000"],["2024-07-25T08:54:26.010000"],["2024-07-25T08:54:27.010000"],["2024-07-25T08:54:28.010000"],["2024-07-25T08:54:29.010000"],["2024-07-25T08:54:30.010000"],["2024-07-25T08:54:31.010000"],["2024-07-25T08:54:32.010000"],["2024-07-25T08:54:33.010000"],["2024-07-25T08:54:34.010000"],["2024-07-25T08:54:35.010000"],["2024-07-25T08:54:36.010000"],["2024-07-25T08:54:37.010000"],["2024-07-25T08:54:38.010000"],["2024-07-25T08:54:39.010000"],["2024-07-25T08:54:40.010000"],["2024-07-25T08:54:41.010000"],["2024-07-25T08:54:42.010000"],["2024-07-25T08:54:43.010000"],["2024-07-25T08:54:44.010000"],["2024-07-25T08:54:45.010000"],["2024-07-25T08:54:46.010000"],["2024-07-25T08:54:47.010000"],["2024-07-25T08:54:48.010000"],["2024-07-25T08:54:49.010000"],["2024-07-25T08:54:50.010000"],["2024-07-25T08:54:51.010000"],["2024-07-25T08:54:52.010000"],["2024-07-25T08:54:53.010000"],["2024-07-25T08:54:54.010000"],["2024-07-25T08:54:55.010000"],["2024-07-25T08:54:56.010000"],["2024-07-25T08:54:57.010000"],["2024-07-25T08:54:58.010000"],["2024-07-25T08:54:59.010000"],["2024-07-25T08:55:00.010000"],["2024-07-25T08:55:01.010000"],["2024-07-25T08:55:02.010000"],["2024-07-25T08:55:03.010000"],["2024-07-25T08:55:04.010000"],["2024-07-25T08:55:05.010000"],["2024-07-25T08:55:06.010000"],["2024-07-25T08:55:07.010000"],["2024-07-25T08:55:08.010000"],["2024-07-25T08:55:09.010000"],["2024-07-25T08:55:10.010000"],["2024-07-25T08:55:11.010000"],["2024-07-25T08:55:12.010000"],["2024-07-25T08:55:13.010000"],["2024-07-25T08:55:14.010000"],["2024-07-25T08:55:15.010000"],["2024-07-25T08:55:16.010000"],["2024-07-25T08:55:17.010000"],["2024-07-25T08:55:18.010000"],["2024-07-25T08:55:19.010000"],["2024-07-25T08:55:20.010000"],["2024-07-25T08:55:21.010000"],["2024-07-25T08:55:22.010000"],["2024-07-25T08:55:23.010000"],["2024-07-25T08:55:24.010000"],["2024-07-25T08:55:25.010000"],["2024-07-25T08:55:26.010000"],["2024-07-25T08:55:27.010000"],["2024-07-25T08:55:28.010000"],["2024-07-25T08:55:29.010000"],["2024-07-25T08:55:30.010000"],["2024-07-25T08:55:31.010000"],["2024-07-25T08:55:32.010000"],["2024-07-25T08:55:33.010000"],["2024-07-25T08:55:34.010000"],["2024-07-25T08:55:35.010000"],["2024-07-25T08:55:36.010000"],["2024-07-25T08:55:37.010000"],["2024-07-25T08:55:38.010000"],["2024-07-25T08:55:39.010000"],["2024-07-25T08:55:40.010000"],["2024-07-25T08:55:41.010000"],["2024-07-25T08:55:42.010000"],["2024-07-25T08:55:43.010000"],["2024-07-25T08:55:44.010000"],["2024-07-25T08:55:45.010000"],["2024-07-25T08:55:46.010000"],["2024-07-25T08:55:47.010000"],["2024-07-25T08:55:48.010000"],["2024-07-25T08:55:49.010000"],["2024-07-25T08:55:50.010000"],["2024-07-25T08:55:51.010000"],["2024-07-25T08:55:52.010000"],["2024-07-25T08:55:53.010000"],["2024-07-25T08:55:54.010000"],["2024-07-25T08:55:55.010000"],["2024-07-25T08:55:56.010000"],["2024-07-25T08:55:57.010000"],["2024-07-25T08:55:58.010000"],["2024-07-25T08:55:59.010000"],["2024-07-25T08:56:00.010000"],["2024-07-25T08:56:01.010000"],["2024-07-25T08:56:02.010000"],["2024-07-25T08:56:03.010000"],["2024-07-25T08:56:04.010000"],["2024-07-25T08:56:05.010000"],["2024-07-25T08:56:06.010000"],["2024-07-25T08:56:07.010000"],["2024-07-25T08:56:08.010000"],["2024-07-25T08:56:09.010000"],["2024-07-25T08:56:10.010000"],["2024-07-25T08:56:11.010000"],["2024-07-25T08:56:12.010000"],["2024-07-25T08:56:13.010000"],["2024-07-25T08:56:14.010000"],["2024-07-25T08:56:15.010000"],["2024-07-25T08:56:16.010000"],["2024-07-25T08:56:17.010000"],["2024-07-25T08:56:18.010000"],["2024-07-25T08:56:19.010000"],["2024-07-25T08:56:20.010000"],["2024-07-25T08:56:21.010000"],["2024-07-25T08:56:22.010000"],["2024-07-25T08:56:23.010000"],["2024-07-25T08:56:24.010000"],["2024-07-25T08:56:25.010000"],["2024-07-25T08:56:26.010000"],["2024-07-25T08:56:27.010000"],["2024-07-25T08:56:28.010000"],["2024-07-25T08:56:29.010000"],["2024-07-25T08:56:30.010000"],["2024-07-25T08:56:31.010000"],["2024-07-25T08:56:32.010000"],["2024-07-25T08:56:33.010000"],["2024-07-25T08:56:34.010000"],["2024-07-25T08:56:35.010000"],["2024-07-25T08:56:36.010000"],["2024-07-25T08:56:37.010000"],["2024-07-25T08:56:38.010000"],["2024-07-25T08:56:39.010000"],["2024-07-25T08:56:40.010000"],["2024-07-25T08:56:41.010000"],["2024-07-25T08:56:42.010000"],["2024-07-25T08:56:43.010000"],["2024-07-25T08:56:44.010000"],["2024-07-25T08:56:45.010000"],["2024-07-25T08:56:46.010000"],["2024-07-25T08:56:47.010000"],["2024-07-25T08:56:48.010000"],["2024-07-25T08:56:49.010000"],["2024-07-25T08:56:50.010000"],["2024-07-25T08:56:51.010000"],["2024-07-25T08:56:52.010000"],["2024-07-25T08:56:53.010000"],["2024-07-25T08:56:54.010000"],["2024-07-25T08:56:55.010000"],["2024-07-25T08:56:56.010000"],["2024-07-25T08:56:57.010000"],["2024-07-25T08:56:58.010000"],["2024-07-25T08:56:59.010000"],["2024-07-25T08:57:00.010000"],["2024-07-25T08:57:01.010000"],["2024-07-25T08:57:02.010000"],["2024-07-25T08:57:03.010000"],["2024-07-25T08:57:04.010000"],["2024-07-25T08:57:05.010000"],["2024-07-25T08:57:06.010000"],["2024-07-25T08:57:07.010000"],["2024-07-25T08:57:08.010000"],["2024-07-25T08:57:09.010000"],["2024-07-25T08:57:10.010000"],["2024-07-25T08:57:11.010000"],["2024-07-25T08:57:12.010000"],["2024-07-25T08:57:13.010000"],["2024-07-25T08:57:14.010000"],["2024-07-25T08:57:15.010000"],["2024-07-25T08:57:16.010000"],["2024-07-25T08:57:17.010000"],["2024-07-25T08:57:18.010000"],["2024-07-25T08:57:19.010000"],["2024-07-25T08:57:20.010000"],["2024-07-25T08:57:21.010000"],["2024-07-25T08:57:22.010000"],["2024-07-25T08:57:23.010000"],["2024-07-25T08:57:24.010000"],["2024-07-25T08:57:25.010000"],["2024-07-25T08:57:26.010000"],["2024-07-25T08:57:27.010000"],["2024-07-25T08:57:28.010000"],["2024-07-25T08:57:29.010000"],["2024-07-25T08:57:30.010000"],["2024-07-25T08:57:31.010000"],["2024-07-25T08:57:32.010000"],["2024-07-25T08:57:33.010000"],["2024-07-25T08:57:34.010000"],["2024-07-25T08:57:35.010000"],["2024-07-25T08:57:36.010000"],["2024-07-25T08:57:37.010000"],["2024-07-25T08:57:38.010000"],["2024-07-25T08:57:39.010000"],["2024-07-25T08:57:40.010000"],["2024-07-25T08:57:41.010000"],["2024-07-25T08:57:42.010000"],["2024-07-25T08:57:43.010000"],["2024-07-25T08:57:44.010000"],["2024-07-25T08:57:45.010000"],["2024-07-25T08:57:46.010000"],["2024-07-25T08:57:47.010000"],["2024-07-25T08:57:48.010000"],["2024-07-25T08:57:49.010000"],["2024-07-25T08:57:50.010000"],["2024-07-25T08:57:51.010000"],["2024-07-25T08:57:52.010000"],["2024-07-25T08:57:53.010000"],["2024-07-25T08:57:54.010000"],["2024-07-25T08:57:55.010000"],["2024-07-25T08:57:56.010000"],["2024-07-25T08:57:57.010000"],["2024-07-25T08:57:58.010000"],["2024-07-25T08:57:59.010000"],["2024-07-25T08:58:00.010000"],["2024-07-25T08:58:01.010000"],["2024-07-25T08:58:02.010000"],["2024-07-25T08:58:03.010000"],["2024-07-25T08:58:04.010000"],["2024-07-25T08:58:05.010000"],["2024-07-25T08:58:06.010000"],["2024-07-25T08:58:07.010000"],["2024-07-25T08:58:08.010000"],["2024-07-25T08:58:09.010000"],["2024-07-25T08:58:10.010000"],["2024-07-25T08:58:11.010000"],["2024-07-25T08:58:12.010000"],["2024-07-25T08:58:13.010000"],["2024-07-25T08:58:14.010000"],["2024-07-25T08:58:15.010000"],["2024-07-25T08:58:16.010000"],["2024-07-25T08:58:17.010000"],["2024-07-25T08:58:18.010000"],["2024-07-25T08:58:19.010000"],["2024-07-25T08:58:20.010000"],["2024-07-25T08:58:21.010000"],["2024-07-25T08:58:22.010000"],["2024-07-25T08:58:23.010000"],["2024-07-25T08:58:24.010000"],["2024-07-25T08:58:25.010000"],["2024-07-25T08:58:26.010000"],["2024-07-25T08:58:27.010000"],["2024-07-25T08:58:28.010000"],["2024-07-25T08:58:29.010000"],["2024-07-25T08:58:30.010000"],["2024-07-25T08:58:31.010000"],["2024-07-25T08:58:32.010000"],["2024-07-25T08:58:33.010000"],["2024-07-25T08:58:34.010000"],["2024-07-25T08:58:35.010000"],["2024-07-25T08:58:36.010000"],["2024-07-25T08:58:37.010000"],["2024-07-25T08:58:38.010000"],["2024-07-25T08:58:39.010000"],["2024-07-25T08:58:40.010000"],["2024-07-25T08:58:41.010000"],["2024-07-25T08:58:42.010000"],["2024-07-25T08:58:43.010000"],["2024-07-25T08:58:44.010000"],["2024-07-25T08:58:45.010000"],["2024-07-25T08:58:46.010000"],["2024-07-25T08:58:47.010000"],["2024-07-25T08:58:48.010000"],["2024-07-25T08:58:49.010000"],["2024-07-25T08:58:50.010000"],["2024-07-25T08:58:51.010000"],["2024-07-25T08:58:52.010000"],["2024-07-25T08:58:53.010000"],["2024-07-25T08:58:54.010000"],["2024-07-25T08:58:55.010000"],["2024-07-25T08:58:56.010000"],["2024-07-25T08:58:57.010000"],["2024-07-25T08:58:58.010000"],["2024-07-25T08:58:59.010000"],["2024-07-25T08:59:00.010000"],["2024-07-25T08:59:01.010000"],["2024-07-25T08:59:02.010000"],["2024-07-25T08:59:03.010000"],["2024-07-25T08:59:04.010000"],["2024-07-25T08:59:05.010000"],["2024-07-25T08:59:06.010000"],["2024-07-25T08:59:07.010000"],["2024-07-25T08:59:08.010000"],["2024-07-25T08:59:09.010000"],["2024-07-25T08:59:10.010000"],["2024-07-25T08:59:11.010000"],["2024-07-25T08:59:12.010000"],["2024-07-25T08:59:13.010000"],["2024-07-25T08:59:14.010000"],["2024-07-25T08:59:15.010000"],["2024-07-25T08:59:16.010000"],["2024-07-25T08:59:17.010000"],["2024-07-25T08:59:18.010000"],["2024-07-25T08:59:19.010000"],["2024-07-25T08:59:20.010000"],["2024-07-25T08:59:21.010000"],["2024-07-25T08:59:22.010000"],["2024-07-25T08:59:23.010000"],["2024-07-25T08:59:24.010000"],["2024-07-25T08:59:25.010000"],["2024-07-25T08:59:26.010000"],["2024-07-25T08:59:27.010000"],["2024-07-25T08:59:28.010000"],["2024-07-25T08:59:29.010000"],["2024-07-25T08:59:30.010000"],["2024-07-25T08:59:31.010000"],["2024-07-25T08:59:32.010000"],["2024-07-25T08:59:33.010000"],["2024-07-25T08:59:34.010000"],["2024-07-25T08:59:35.010000"],["2024-07-25T08:59:36.010000"],["2024-07-25T08:59:37.010000"],["2024-07-25T08:59:38.010000"],["2024-07-25T08:59:39.010000"],["2024-07-25T08:59:40.010000"],["2024-07-25T08:59:41.010000"],["2024-07-25T08:59:42.010000"],["2024-07-25T08:59:43.010000"],["2024-07-25T08:59:44.010000"],["2024-07-25T08:59:45.010000"],["2024-07-25T08:59:46.010000"],["2024-07-25T08:59:47.010000"],["2024-07-25T08:59:48.010000"],["2024-07-25T08:59:49.010000"],["2024-07-25T08:59:50.010000"],["2024-07-25T08:59:51.010000"],["2024-07-25T08:59:52.010000"],["2024-07-25T08:59:53.010000"],["2024-07-25T08:59:54.010000"],["2024-07-25T08:59:55.010000"],["2024-07-25T08:59:56.010000"],["2024-07-25T08:59:57.010000"],["2024-07-25T08:59:58.010000"],["2024-07-25T08:59:59.010000"],["2024-07-25T09:00:00.010000"],["2024-07-25T09:00:01.010000"],["2024-07-25T09:00:02.010000"],["2024-07-25T09:00:03.010000"],["2024-07-25T09:00:04.010000"],["2024-07-25T09:00:05.010000"],["2024-07-25T09:00:06.010000"],["2024-07-25T09:00:07.010000"],["2024-07-25T09:00:08.010000"],["2024-07-25T09:00:09.010000"],["2024-07-25T09:00:10.010000"],["2024-07-25T09:00:11.010000"],["2024-07-25T09:00:12.010000"],["2024-07-25T09:00:13.010000"],["2024-07-25T09:00:14.010000"],["2024-07-25T09:00:15.010000"],["2024-07-25T09:00:16.010000"],["2024-07-25T09:00:17.010000"],["2024-07-25T09:00:18.010000"],["2024-07-25T09:00:19.010000"],["2024-07-25T09:00:20.010000"],["2024-07-25T09:00:21.010000"],["2024-07-25T09:00:22.010000"],["2024-07-25T09:00:23.010000"],["2024-07-25T09:00:24.010000"],["2024-07-25T09:00:25.010000"],["2024-07-25T09:00:26.010000"],["2024-07-25T09:00:27.010000"],["2024-07-25T09:00:28.010000"],["2024-07-25T09:00:29.010000"],["2024-07-25T09:00:30.010000"],["2024-07-25T09:00:31.010000"],["2024-07-25T09:00:32.010000"],["2024-07-25T09:00:33.010000"],["2024-07-25T09:00:34.010000"],["2024-07-25T09:00:35.010000"],["2024-07-25T09:00:36.010000"],["2024-07-25T09:00:37.010000"],["2024-07-25T09:00:38.010000"],["2024-07-25T09:00:39.010000"],["2024-07-25T09:00:40.010000"],["2024-07-25T09:00:41.010000"],["2024-07-25T09:00:42.010000"],["2024-07-25T09:00:43.010000"],["2024-07-25T09:00:44.010000"],["2024-07-25T09:00:45.010000"],["2024-07-25T09:00:46.010000"],["2024-07-25T09:00:47.010000"],["2024-07-25T09:00:48.010000"],["2024-07-25T09:00:49.010000"],["2024-07-25T09:00:50.010000"],["2024-07-25T09:00:51.010000"],["2024-07-25T09:00:52.010000"],["2024-07-25T09:00:53.010000"],["2024-07-25T09:00:54.010000"],["2024-07-25T09:00:55.010000"],["2024-07-25T09:00:56.010000"],["2024-07-25T09:00:57.010000"],["2024-07-25T09:00:58.010000"],["2024-07-25T09:00:59.010000"],["2024-07-25T09:01:00.010000"],["2024-07-25T09:01:01.010000"],["2024-07-25T09:01:02.010000"],["2024-07-25T09:01:03.010000"],["2024-07-25T09:01:04.010000"],["2024-07-25T09:01:05.010000"],["2024-07-25T09:01:06.010000"],["2024-07-25T09:01:07.010000"],["2024-07-25T09:01:08.010000"],["2024-07-25T09:01:09.010000"],["2024-07-25T09:01:10.010000"],["2024-07-25T09:01:11.010000"],["2024-07-25T09:01:12.010000"],["2024-07-25T09:01:13.010000"],["2024-07-25T09:01:14.010000"],["2024-07-25T09:01:15.010000"],["2024-07-25T09:01:16.010000"],["2024-07-25T09:01:17.010000"],["2024-07-25T09:01:18.010000"],["2024-07-25T09:01:19.010000"],["2024-07-25T09:01:20.010000"],["2024-07-25T09:01:21.010000"],["2024-07-25T09:01:22.010000"],["2024-07-25T09:01:23.010000"],["2024-07-25T09:01:24.010000"],["2024-07-25T09:01:25.010000"],["2024-07-25T09:01:26.010000"],["2024-07-25T09:01:27.010000"],["2024-07-25T09:01:28.010000"],["2024-07-25T09:01:29.010000"],["2024-07-25T09:01:30.010000"],["2024-07-25T09:01:31.010000"],["2024-07-25T09:01:32.010000"],["2024-07-25T09:01:33.010000"],["2024-07-25T09:01:34.010000"],["2024-07-25T09:01:35.010000"],["2024-07-25T09:01:36.010000"],["2024-07-25T09:01:37.010000"],["2024-07-25T09:01:38.010000"],["2024-07-25T09:01:39.010000"],["2024-07-25T09:01:40.010000"],["2024-07-25T09:01:41.010000"],["2024-07-25T09:01:42.010000"],["2024-07-25T09:01:43.010000"],["2024-07-25T09:01:44.010000"],["2024-07-25T09:01:45.010000"],["2024-07-25T09:01:46.010000"],["2024-07-25T09:01:47.010000"],["2024-07-25T09:01:48.010000"],["2024-07-25T09:01:49.010000"],["2024-07-25T09:01:50.010000"],["2024-07-25T09:01:51.010000"],["2024-07-25T09:01:52.010000"],["2024-07-25T09:01:53.010000"],["2024-07-25T09:01:54.010000"],["2024-07-25T09:01:55.010000"],["2024-07-25T09:01:56.010000"],["2024-07-25T09:01:57.010000"],["2024-07-25T09:01:58.010000"],["2024-07-25T09:01:59.010000"],["2024-07-25T09:02:00.010000"],["2024-07-25T09:02:01.010000"],["2024-07-25T09:02:02.010000"],["2024-07-25T09:02:03.010000"],["2024-07-25T09:02:04.010000"],["2024-07-25T09:02:05.010000"],["2024-07-25T09:02:06.010000"],["2024-07-25T09:02:07.010000"],["2024-07-25T09:02:08.010000"],["2024-07-25T09:02:09.010000"],["2024-07-25T09:02:10.010000"],["2024-07-25T09:02:11.010000"],["2024-07-25T09:02:12.010000"],["2024-07-25T09:02:13.010000"],["2024-07-25T09:02:14.010000"],["2024-07-25T09:02:15.010000"],["2024-07-25T09:02:16.010000"],["2024-07-25T09:02:17.010000"],["2024-07-25T09:02:18.010000"],["2024-07-25T09:02:19.010000"],["2024-07-25T09:02:20.010000"],["2024-07-25T09:02:21.010000"],["2024-07-25T09:02:22.010000"],["2024-07-25T09:02:23.010000"],["2024-07-25T09:02:24.010000"],["2024-07-25T09:02:25.010000"],["2024-07-25T09:02:26.010000"],["2024-07-25T09:02:27.010000"],["2024-07-25T09:02:28.010000"],["2024-07-25T09:02:29.010000"],["2024-07-25T09:02:30.010000"],["2024-07-25T09:02:31.010000"],["2024-07-25T09:02:32.010000"],["2024-07-25T09:02:33.010000"],["2024-07-25T09:02:34.010000"],["2024-07-25T09:02:35.010000"],["2024-07-25T09:02:36.010000"],["2024-07-25T09:02:37.010000"],["2024-07-25T09:02:38.010000"],["2024-07-25T09:02:39.010000"],["2024-07-25T09:02:40.010000"],["2024-07-25T09:02:41.010000"],["2024-07-25T09:02:42.010000"],["2024-07-25T09:02:43.010000"],["2024-07-25T09:02:44.010000"],["2024-07-25T09:02:45.010000"],["2024-07-25T09:02:46.010000"],["2024-07-25T09:02:47.010000"],["2024-07-25T09:02:48.010000"],["2024-07-25T09:02:49.010000"],["2024-07-25T09:02:50.010000"],["2024-07-25T09:02:51.010000"],["2024-07-25T09:02:52.010000"],["2024-07-25T09:02:53.010000"],["2024-07-25T09:02:54.010000"],["2024-07-25T09:02:55.010000"],["2024-07-25T09:02:56.010000"],["2024-07-25T09:02:57.010000"],["2024-07-25T09:02:58.010000"],["2024-07-25T09:02:59.010000"],["2024-07-25T09:03:00.010000"],["2024-07-25T09:03:01.010000"],["2024-07-25T09:03:02.010000"],["2024-07-25T09:03:03.010000"],["2024-07-25T09:03:04.010000"],["2024-07-25T09:03:05.010000"],["2024-07-25T09:03:06.010000"],["2024-07-25T09:03:07.010000"],["2024-07-25T09:03:08.010000"],["2024-07-25T09:03:09.010000"],["2024-07-25T09:03:10.010000"],["2024-07-25T09:03:11.010000"],["2024-07-25T09:03:12.010000"],["2024-07-25T09:03:13.010000"],["2024-07-25T09:03:14.010000"],["2024-07-25T09:03:15.010000"],["2024-07-25T09:03:16.010000"],["2024-07-25T09:03:17.010000"],["2024-07-25T09:03:18.010000"],["2024-07-25T09:03:19.010000"],["2024-07-25T09:03:20.010000"],["2024-07-25T09:03:21.010000"],["2024-07-25T09:03:22.010000"],["2024-07-25T09:03:23.010000"],["2024-07-25T09:03:24.010000"],["2024-07-25T09:03:25.010000"],["2024-07-25T09:03:26.010000"],["2024-07-25T09:03:27.010000"],["2024-07-25T09:03:28.010000"],["2024-07-25T09:03:29.010000"],["2024-07-25T09:03:30.010000"],["2024-07-25T09:03:31.010000"],["2024-07-25T09:03:32.010000"],["2024-07-25T09:03:33.010000"],["2024-07-25T09:03:34.010000"],["2024-07-25T09:03:35.010000"],["2024-07-25T09:03:36.010000"],["2024-07-25T09:03:37.010000"],["2024-07-25T09:03:38.010000"],["2024-07-25T09:03:39.010000"],["2024-07-25T09:03:40.010000"],["2024-07-25T09:03:41.010000"],["2024-07-25T09:03:42.010000"],["2024-07-25T09:03:43.010000"],["2024-07-25T09:03:44.010000"],["2024-07-25T09:03:45.010000"],["2024-07-25T09:03:46.010000"],["2024-07-25T09:03:47.010000"],["2024-07-25T09:03:48.010000"],["2024-07-25T09:03:49.010000"],["2024-07-25T09:03:50.010000"],["2024-07-25T09:03:51.010000"],["2024-07-25T09:03:52.010000"],["2024-07-25T09:03:53.010000"],["2024-07-25T09:03:54.010000"],["2024-07-25T09:03:55.010000"],["2024-07-25T09:03:56.010000"],["2024-07-25T09:03:57.010000"],["2024-07-25T09:03:58.010000"],["2024-07-25T09:03:59.010000"],["2024-07-25T09:04:00.010000"],["2024-07-25T09:04:01.010000"],["2024-07-25T09:04:02.010000"],["2024-07-25T09:04:03.010000"],["2024-07-25T09:04:04.010000"],["2024-07-25T09:04:05.010000"],["2024-07-25T09:04:06.010000"],["2024-07-25T09:04:07.010000"],["2024-07-25T09:04:08.010000"],["2024-07-25T09:04:09.010000"],["2024-07-25T09:04:10.010000"],["2024-07-25T09:04:11.010000"],["2024-07-25T09:04:12.010000"],["2024-07-25T09:04:13.010000"],["2024-07-25T09:04:14.010000"],["2024-07-25T09:04:15.010000"],["2024-07-25T09:04:16.010000"],["2024-07-25T09:04:17.010000"],["2024-07-25T09:04:18.010000"],["2024-07-25T09:04:19.010000"],["2024-07-25T09:04:20.010000"],["2024-07-25T09:04:21.010000"],["2024-07-25T09:04:22.010000"],["2024-07-25T09:04:23.010000"],["2024-07-25T09:04:24.010000"],["2024-07-25T09:04:25.010000"],["2024-07-25T09:04:26.010000"],["2024-07-25T09:04:27.010000"],["2024-07-25T09:04:28.010000"],["2024-07-25T09:04:29.010000"],["2024-07-25T09:04:30.010000"],["2024-07-25T09:04:31.010000"],["2024-07-25T09:04:32.010000"],["2024-07-25T09:04:33.010000"],["2024-07-25T09:04:34.010000"],["2024-07-25T09:04:35.010000"],["2024-07-25T09:04:36.010000"],["2024-07-25T09:04:37.010000"],["2024-07-25T09:04:38.010000"],["2024-07-25T09:04:39.010000"],["2024-07-25T09:04:40.010000"],["2024-07-25T09:04:41.010000"],["2024-07-25T09:04:42.010000"],["2024-07-25T09:04:43.010000"],["2024-07-25T09:04:44.010000"],["2024-07-25T09:04:45.010000"],["2024-07-25T09:04:46.010000"],["2024-07-25T09:04:47.010000"],["2024-07-25T09:04:48.010000"],["2024-07-25T09:04:49.010000"],["2024-07-25T09:04:50.010000"],["2024-07-25T09:04:51.010000"],["2024-07-25T09:04:52.010000"],["2024-07-25T09:04:53.010000"],["2024-07-25T09:04:54.010000"],["2024-07-25T09:04:55.010000"],["2024-07-25T09:04:56.010000"],["2024-07-25T09:04:57.010000"],["2024-07-25T09:04:58.010000"],["2024-07-25T09:04:59.010000"],["2024-07-25T09:05:00.010000"],["2024-07-25T09:05:01.010000"],["2024-07-25T09:05:02.010000"],["2024-07-25T09:05:03.010000"],["2024-07-25T09:05:04.010000"],["2024-07-25T09:05:05.010000"],["2024-07-25T09:05:06.010000"],["2024-07-25T09:05:07.010000"],["2024-07-25T09:05:08.010000"],["2024-07-25T09:05:09.010000"],["2024-07-25T09:05:10.010000"],["2024-07-25T09:05:11.010000"],["2024-07-25T09:05:12.010000"],["2024-07-25T09:05:13.010000"],["2024-07-25T09:05:14.010000"],["2024-07-25T09:05:15.010000"],["2024-07-25T09:05:16.010000"],["2024-07-25T09:05:17.010000"],["2024-07-25T09:05:18.010000"],["2024-07-25T09:05:19.010000"],["2024-07-25T09:05:20.010000"],["2024-07-25T09:05:21.010000"],["2024-07-25T09:05:22.010000"],["2024-07-25T09:05:23.010000"],["2024-07-25T09:05:24.010000"],["2024-07-25T09:05:25.010000"],["2024-07-25T09:05:26.010000"],["2024-07-25T09:05:27.010000"],["2024-07-25T09:05:28.010000"],["2024-07-25T09:05:29.010000"],["2024-07-25T09:05:30.010000"],["2024-07-25T09:05:31.010000"],["2024-07-25T09:05:32.010000"],["2024-07-25T09:05:33.010000"],["2024-07-25T09:05:34.010000"],["2024-07-25T09:05:35.010000"],["2024-07-25T09:05:36.010000"],["2024-07-25T09:05:37.010000"],["2024-07-25T09:05:38.010000"],["2024-07-25T09:05:39.010000"],["2024-07-25T09:05:40.010000"],["2024-07-25T09:05:41.010000"],["2024-07-25T09:05:42.010000"],["2024-07-25T09:05:43.010000"],["2024-07-25T09:05:44.010000"],["2024-07-25T09:05:45.010000"],["2024-07-25T09:05:46.010000"],["2024-07-25T09:05:47.010000"],["2024-07-25T09:05:48.010000"],["2024-07-25T09:05:49.010000"],["2024-07-25T09:05:50.010000"],["2024-07-25T09:05:51.010000"],["2024-07-25T09:05:52.010000"],["2024-07-25T09:05:53.010000"],["2024-07-25T09:05:54.010000"],["2024-07-25T09:05:55.010000"],["2024-07-25T09:05:56.010000"],["2024-07-25T09:05:57.010000"],["2024-07-25T09:05:58.010000"],["2024-07-25T09:05:59.010000"],["2024-07-25T09:06:00.010000"],["2024-07-25T09:06:01.010000"],["2024-07-25T09:06:02.010000"],["2024-07-25T09:06:03.010000"],["2024-07-25T09:06:04.010000"],["2024-07-25T09:06:05.010000"],["2024-07-25T09:06:06.010000"],["2024-07-25T09:06:07.010000"],["2024-07-25T09:06:08.010000"],["2024-07-25T09:06:09.010000"],["2024-07-25T09:06:10.010000"],["2024-07-25T09:06:11.010000"],["2024-07-25T09:06:12.010000"],["2024-07-25T09:06:13.010000"],["2024-07-25T09:06:14.010000"],["2024-07-25T09:06:15.010000"],["2024-07-25T09:06:16.010000"],["2024-07-25T09:06:17.010000"],["2024-07-25T09:06:18.010000"],["2024-07-25T09:06:19.010000"],["2024-07-25T09:06:20.010000"],["2024-07-25T09:06:21.010000"],["2024-07-25T09:06:22.010000"],["2024-07-25T09:06:23.010000"],["2024-07-25T09:06:24.010000"],["2024-07-25T09:06:25.010000"],["2024-07-25T09:06:26.010000"],["2024-07-25T09:06:27.010000"],["2024-07-25T09:06:28.010000"],["2024-07-25T09:06:29.010000"],["2024-07-25T09:06:30.010000"],["2024-07-25T09:06:31.010000"],["2024-07-25T09:06:32.010000"],["2024-07-25T09:06:33.010000"],["2024-07-25T09:06:34.010000"],["2024-07-25T09:06:35.010000"],["2024-07-25T09:06:36.010000"],["2024-07-25T09:06:37.010000"],["2024-07-25T09:06:38.010000"],["2024-07-25T09:06:39.010000"],["2024-07-25T09:06:40.010000"],["2024-07-25T09:06:41.010000"],["2024-07-25T09:06:42.010000"],["2024-07-25T09:06:43.010000"],["2024-07-25T09:06:44.010000"],["2024-07-25T09:06:45.010000"],["2024-07-25T09:06:46.010000"],["2024-07-25T09:06:47.010000"],["2024-07-25T09:06:48.010000"],["2024-07-25T09:06:49.010000"],["2024-07-25T09:06:50.010000"],["2024-07-25T09:06:51.010000"],["2024-07-25T09:06:52.010000"],["2024-07-25T09:06:53.010000"],["2024-07-25T09:06:54.010000"],["2024-07-25T09:06:55.010000"],["2024-07-25T09:06:56.010000"],["2024-07-25T09:06:57.010000"],["2024-07-25T09:06:58.010000"],["2024-07-25T09:06:59.010000"],["2024-07-25T09:07:00.010000"],["2024-07-25T09:07:01.010000"],["2024-07-25T09:07:02.010000"],["2024-07-25T09:07:03.010000"],["2024-07-25T09:07:04.010000"],["2024-07-25T09:07:05.010000"],["2024-07-25T09:07:06.010000"],["2024-07-25T09:07:07.010000"],["2024-07-25T09:07:08.010000"],["2024-07-25T09:07:09.010000"],["2024-07-25T09:07:10.010000"],["2024-07-25T09:07:11.010000"],["2024-07-25T09:07:12.010000"],["2024-07-25T09:07:13.010000"],["2024-07-25T09:07:14.010000"],["2024-07-25T09:07:15.010000"],["2024-07-25T09:07:16.010000"],["2024-07-25T09:07:17.010000"],["2024-07-25T09:07:18.010000"],["2024-07-25T09:07:19.010000"],["2024-07-25T09:07:20.010000"],["2024-07-25T09:07:21.010000"],["2024-07-25T09:07:22.010000"],["2024-07-25T09:07:23.010000"],["2024-07-25T09:07:24.010000"],["2024-07-25T09:07:25.010000"],["2024-07-25T09:07:26.010000"],["2024-07-25T09:07:27.010000"],["2024-07-25T09:07:28.010000"],["2024-07-25T09:07:29.010000"],["2024-07-25T09:07:30.010000"],["2024-07-25T09:07:31.010000"],["2024-07-25T09:07:32.010000"],["2024-07-25T09:07:33.010000"],["2024-07-25T09:07:34.010000"],["2024-07-25T09:07:35.010000"],["2024-07-25T09:07:36.010000"],["2024-07-25T09:07:37.010000"],["2024-07-25T09:07:38.010000"],["2024-07-25T09:07:39.010000"],["2024-07-25T09:07:40.010000"],["2024-07-25T09:07:41.010000"],["2024-07-25T09:07:42.010000"],["2024-07-25T09:07:43.010000"],["2024-07-25T09:07:44.010000"],["2024-07-25T09:07:45.010000"],["2024-07-25T09:07:46.010000"],["2024-07-25T09:07:47.010000"],["2024-07-25T09:07:48.010000"],["2024-07-25T09:07:49.010000"],["2024-07-25T09:07:50.010000"],["2024-07-25T09:07:51.010000"],["2024-07-25T09:07:52.010000"],["2024-07-25T09:07:53.010000"],["2024-07-25T09:07:54.010000"],["2024-07-25T09:07:55.010000"],["2024-07-25T09:07:56.010000"],["2024-07-25T09:07:57.010000"],["2024-07-25T09:07:58.010000"],["2024-07-25T09:07:59.010000"],["2024-07-25T09:08:00.010000"],["2024-07-25T09:08:01.010000"],["2024-07-25T09:08:02.010000"],["2024-07-25T09:08:03.010000"],["2024-07-25T09:08:04.010000"],["2024-07-25T09:08:05.010000"],["2024-07-25T09:08:06.010000"],["2024-07-25T09:08:07.010000"],["2024-07-25T09:08:08.010000"],["2024-07-25T09:08:09.010000"],["2024-07-25T09:08:10.010000"],["2024-07-25T09:08:11.010000"],["2024-07-25T09:08:12.010000"],["2024-07-25T09:08:13.010000"],["2024-07-25T09:08:14.010000"],["2024-07-25T09:08:15.010000"],["2024-07-25T09:08:16.010000"],["2024-07-25T09:08:17.010000"],["2024-07-25T09:08:18.010000"],["2024-07-25T09:08:19.010000"],["2024-07-25T09:08:20.010000"],["2024-07-25T09:08:21.010000"],["2024-07-25T09:08:22.010000"],["2024-07-25T09:08:23.010000"],["2024-07-25T09:08:24.010000"],["2024-07-25T09:08:25.010000"],["2024-07-25T09:08:26.010000"],["2024-07-25T09:08:27.010000"],["2024-07-25T09:08:28.010000"],["2024-07-25T09:08:29.010000"],["2024-07-25T09:08:30.010000"],["2024-07-25T09:08:31.010000"],["2024-07-25T09:08:32.010000"],["2024-07-25T09:08:33.010000"],["2024-07-25T09:08:34.010000"],["2024-07-25T09:08:35.010000"],["2024-07-25T09:08:36.010000"],["2024-07-25T09:08:37.010000"],["2024-07-25T09:08:38.010000"],["2024-07-25T09:08:39.010000"],["2024-07-25T09:08:40.010000"],["2024-07-25T09:08:41.010000"],["2024-07-25T09:08:42.010000"],["2024-07-25T09:08:43.010000"],["2024-07-25T09:08:44.010000"],["2024-07-25T09:08:45.010000"],["2024-07-25T09:08:46.010000"],["2024-07-25T09:08:47.010000"],["2024-07-25T09:08:48.010000"],["2024-07-25T09:08:49.010000"],["2024-07-25T09:08:50.010000"],["2024-07-25T09:08:51.010000"],["2024-07-25T09:08:52.010000"],["2024-07-25T09:08:53.010000"],["2024-07-25T09:08:54.010000"],["2024-07-25T09:08:55.010000"],["2024-07-25T09:08:56.010000"],["2024-07-25T09:08:57.010000"],["2024-07-25T09:08:58.010000"],["2024-07-25T09:08:59.010000"],["2024-07-25T09:09:00.010000"],["2024-07-25T09:09:01.010000"],["2024-07-25T09:09:02.010000"],["2024-07-25T09:09:03.010000"],["2024-07-25T09:09:04.010000"],["2024-07-25T09:09:05.010000"],["2024-07-25T09:09:06.010000"],["2024-07-25T09:09:07.010000"],["2024-07-25T09:09:08.010000"],["2024-07-25T09:09:09.010000"],["2024-07-25T09:09:10.010000"],["2024-07-25T09:09:11.010000"],["2024-07-25T09:09:12.010000"],["2024-07-25T09:09:13.010000"],["2024-07-25T09:09:14.010000"],["2024-07-25T09:09:15.010000"],["2024-07-25T09:09:16.010000"],["2024-07-25T09:09:17.010000"],["2024-07-25T09:09:18.010000"],["2024-07-25T09:09:19.010000"],["2024-07-25T09:09:20.010000"],["2024-07-25T09:09:21.010000"],["2024-07-25T09:09:22.010000"],["2024-07-25T09:09:23.010000"],["2024-07-25T09:09:24.010000"],["2024-07-25T09:09:25.010000"],["2024-07-25T09:09:26.010000"],["2024-07-25T09:09:27.010000"],["2024-07-25T09:09:28.010000"],["2024-07-25T09:09:29.010000"],["2024-07-25T09:09:30.010000"],["2024-07-25T09:09:31.010000"],["2024-07-25T09:09:32.010000"],["2024-07-25T09:09:33.010000"],["2024-07-25T09:09:34.010000"],["2024-07-25T09:09:35.010000"],["2024-07-25T09:09:36.010000"],["2024-07-25T09:09:37.010000"],["2024-07-25T09:09:38.010000"],["2024-07-25T09:09:39.010000"],["2024-07-25T09:09:40.010000"],["2024-07-25T09:09:41.010000"],["2024-07-25T09:09:42.010000"],["2024-07-25T09:09:43.010000"],["2024-07-25T09:09:44.010000"],["2024-07-25T09:09:45.010000"],["2024-07-25T09:09:46.010000"],["2024-07-25T09:09:47.010000"],["2024-07-25T09:09:48.010000"],["2024-07-25T09:09:49.010000"],["2024-07-25T09:09:50.010000"],["2024-07-25T09:09:51.010000"],["2024-07-25T09:09:52.010000"],["2024-07-25T09:09:53.010000"],["2024-07-25T09:09:54.010000"],["2024-07-25T09:09:55.010000"],["2024-07-25T09:09:56.010000"],["2024-07-25T09:09:57.010000"],["2024-07-25T09:09:58.010000"],["2024-07-25T09:09:59.010000"],["2024-07-25T09:10:00.010000"],["2024-07-25T09:10:01.010000"],["2024-07-25T09:10:02.010000"],["2024-07-25T09:10:03.010000"],["2024-07-25T09:10:04.010000"],["2024-07-25T09:10:05.010000"],["2024-07-25T09:10:06.010000"],["2024-07-25T09:10:07.010000"],["2024-07-25T09:10:08.010000"],["2024-07-25T09:10:09.010000"],["2024-07-25T09:10:10.010000"],["2024-07-25T09:10:11.010000"],["2024-07-25T09:10:12.010000"],["2024-07-25T09:10:13.010000"],["2024-07-25T09:10:14.010000"],["2024-07-25T09:10:15.010000"],["2024-07-25T09:10:16.010000"],["2024-07-25T09:10:17.010000"],["2024-07-25T09:10:18.010000"],["2024-07-25T09:10:19.010000"],["2024-07-25T09:10:20.010000"],["2024-07-25T09:10:21.010000"],["2024-07-25T09:10:22.010000"],["2024-07-25T09:10:23.010000"],["2024-07-25T09:10:24.010000"],["2024-07-25T09:10:25.010000"],["2024-07-25T09:10:26.010000"],["2024-07-25T09:10:27.010000"],["2024-07-25T09:10:28.010000"],["2024-07-25T09:10:29.010000"],["2024-07-25T09:10:30.010000"],["2024-07-25T09:10:31.010000"],["2024-07-25T09:10:32.010000"],["2024-07-25T09:10:33.010000"],["2024-07-25T09:10:34.010000"],["2024-07-25T09:10:35.010000"],["2024-07-25T09:10:36.010000"],["2024-07-25T09:10:37.010000"],["2024-07-25T09:10:38.010000"],["2024-07-25T09:10:39.010000"],["2024-07-25T09:10:40.010000"],["2024-07-25T09:10:41.010000"],["2024-07-25T09:10:42.010000"],["2024-07-25T09:10:43.010000"],["2024-07-25T09:10:44.010000"],["2024-07-25T09:10:45.010000"],["2024-07-25T09:10:46.010000"],["2024-07-25T09:10:47.010000"],["2024-07-25T09:10:48.010000"],["2024-07-25T09:10:49.010000"],["2024-07-25T09:10:50.010000"],["2024-07-25T09:10:51.010000"],["2024-07-25T09:10:52.010000"],["2024-07-25T09:10:53.010000"],["2024-07-25T09:10:54.010000"],["2024-07-25T09:10:55.010000"],["2024-07-25T09:10:56.010000"],["2024-07-25T09:10:57.010000"],["2024-07-25T09:10:58.010000"],["2024-07-25T09:10:59.010000"],["2024-07-25T09:11:00.010000"],["2024-07-25T09:11:01.010000"],["2024-07-25T09:11:02.010000"],["2024-07-25T09:11:03.010000"],["2024-07-25T09:11:04.010000"],["2024-07-25T09:11:05.010000"],["2024-07-25T09:11:06.010000"],["2024-07-25T09:11:07.010000"],["2024-07-25T09:11:08.010000"],["2024-07-25T09:11:09.010000"],["2024-07-25T09:11:10.010000"],["2024-07-25T09:11:11.010000"],["2024-07-25T09:11:12.010000"],["2024-07-25T09:11:13.010000"],["2024-07-25T09:11:14.010000"],["2024-07-25T09:11:15.010000"],["2024-07-25T09:11:16.010000"],["2024-07-25T09:11:17.010000"],["2024-07-25T09:11:18.010000"],["2024-07-25T09:11:19.010000"],["2024-07-25T09:11:20.010000"],["2024-07-25T09:11:21.010000"],["2024-07-25T09:11:22.010000"],["2024-07-25T09:11:23.010000"],["2024-07-25T09:11:24.010000"],["2024-07-25T09:11:25.010000"],["2024-07-25T09:11:26.010000"],["2024-07-25T09:11:27.010000"],["2024-07-25T09:11:28.010000"],["2024-07-25T09:11:29.010000"],["2024-07-25T09:11:30.010000"],["2024-07-25T09:11:31.010000"],["2024-07-25T09:11:32.010000"],["2024-07-25T09:11:33.010000"],["2024-07-25T09:11:34.010000"],["2024-07-25T09:11:35.010000"],["2024-07-25T09:11:36.010000"],["2024-07-25T09:11:37.010000"],["2024-07-25T09:11:38.010000"],["2024-07-25T09:11:39.010000"],["2024-07-25T09:11:40.010000"],["2024-07-25T09:11:41.010000"],["2024-07-25T09:11:42.010000"],["2024-07-25T09:11:43.010000"],["2024-07-25T09:11:44.010000"],["2024-07-25T09:11:45.010000"],["2024-07-25T09:11:46.010000"],["2024-07-25T09:11:47.010000"],["2024-07-25T09:11:48.010000"],["2024-07-25T09:11:49.010000"],["2024-07-25T09:11:50.010000"],["2024-07-25T09:11:51.010000"],["2024-07-25T09:11:52.010000"],["2024-07-25T09:11:53.010000"],["2024-07-25T09:11:54.010000"],["2024-07-25T09:11:55.010000"],["2024-07-25T09:11:56.010000"],["2024-07-25T09:11:57.010000"],["2024-07-25T09:11:58.010000"],["2024-07-25T09:11:59.010000"],["2024-07-25T09:12:00.010000"],["2024-07-25T09:12:01.010000"],["2024-07-25T09:12:02.010000"],["2024-07-25T09:12:03.010000"],["2024-07-25T09:12:04.010000"],["2024-07-25T09:12:05.010000"],["2024-07-25T09:12:06.010000"],["2024-07-25T09:12:07.010000"],["2024-07-25T09:12:08.010000"],["2024-07-25T09:12:09.010000"],["2024-07-25T09:12:10.010000"],["2024-07-25T09:12:11.010000"],["2024-07-25T09:12:12.010000"],["2024-07-25T09:12:13.010000"],["2024-07-25T09:12:14.010000"],["2024-07-25T09:12:15.010000"],["2024-07-25T09:12:16.010000"],["2024-07-25T09:12:17.010000"],["2024-07-25T09:12:18.010000"],["2024-07-25T09:12:19.010000"],["2024-07-25T09:12:20.010000"],["2024-07-25T09:12:21.010000"],["2024-07-25T09:12:22.010000"],["2024-07-25T09:12:23.010000"],["2024-07-25T09:12:24.010000"],["2024-07-25T09:12:25.010000"],["2024-07-25T09:12:26.010000"],["2024-07-25T09:12:27.010000"],["2024-07-25T09:12:28.010000"],["2024-07-25T09:12:29.010000"],["2024-07-25T09:12:30.010000"],["2024-07-25T09:12:31.010000"],["2024-07-25T09:12:32.010000"],["2024-07-25T09:12:33.010000"],["2024-07-25T09:12:34.010000"],["2024-07-25T09:12:35.010000"],["2024-07-25T09:12:36.010000"],["2024-07-25T09:12:37.010000"],["2024-07-25T09:12:38.010000"],["2024-07-25T09:12:39.010000"],["2024-07-25T09:12:40.010000"],["2024-07-25T09:12:41.010000"],["2024-07-25T09:12:42.010000"],["2024-07-25T09:12:43.010000"],["2024-07-25T09:12:44.010000"],["2024-07-25T09:12:45.010000"],["2024-07-25T09:12:46.010000"],["2024-07-25T09:12:47.010000"],["2024-07-25T09:12:48.010000"],["2024-07-25T09:12:49.010000"],["2024-07-25T09:12:50.010000"],["2024-07-25T09:12:51.010000"],["2024-07-25T09:12:52.010000"],["2024-07-25T09:12:53.010000"],["2024-07-25T09:12:54.010000"],["2024-07-25T09:12:55.010000"],["2024-07-25T09:12:56.010000"],["2024-07-25T09:12:57.010000"],["2024-07-25T09:12:58.010000"],["2024-07-25T09:12:59.010000"],["2024-07-25T09:13:00.010000"],["2024-07-25T09:13:01.010000"],["2024-07-25T09:13:02.010000"],["2024-07-25T09:13:03.010000"],["2024-07-25T09:13:04.010000"],["2024-07-25T09:13:05.010000"],["2024-07-25T09:13:06.010000"],["2024-07-25T09:13:07.010000"],["2024-07-25T09:13:08.010000"],["2024-07-25T09:13:09.010000"],["2024-07-25T09:13:10.010000"],["2024-07-25T09:13:11.010000"],["2024-07-25T09:13:12.010000"],["2024-07-25T09:13:13.010000"],["2024-07-25T09:13:14.010000"],["2024-07-25T09:13:15.010000"],["2024-07-25T09:13:16.010000"],["2024-07-25T09:13:17.010000"],["2024-07-25T09:13:18.010000"],["2024-07-25T09:13:19.010000"],["2024-07-25T09:13:20.010000"],["2024-07-25T09:13:21.010000"],["2024-07-25T09:13:22.010000"],["2024-07-25T09:13:23.010000"],["2024-07-25T09:13:24.010000"],["2024-07-25T09:13:25.010000"],["2024-07-25T09:13:26.010000"],["2024-07-25T09:13:27.010000"],["2024-07-25T09:13:28.010000"],["2024-07-25T09:13:29.010000"],["2024-07-25T09:13:30.010000"],["2024-07-25T09:13:31.010000"],["2024-07-25T09:13:32.010000"],["2024-07-25T09:13:33.010000"],["2024-07-25T09:13:34.010000"],["2024-07-25T09:13:35.010000"],["2024-07-25T09:13:36.010000"],["2024-07-25T09:13:37.010000"],["2024-07-25T09:13:38.010000"],["2024-07-25T09:13:39.010000"],["2024-07-25T09:13:40.010000"],["2024-07-25T09:13:41.010000"],["2024-07-25T09:13:42.010000"],["2024-07-25T09:13:43.010000"],["2024-07-25T09:13:44.010000"],["2024-07-25T09:13:45.010000"],["2024-07-25T09:13:46.010000"],["2024-07-25T09:13:47.010000"],["2024-07-25T09:13:48.010000"],["2024-07-25T09:13:49.010000"],["2024-07-25T09:13:50.010000"],["2024-07-25T09:13:51.010000"],["2024-07-25T09:13:52.010000"],["2024-07-25T09:13:53.010000"],["2024-07-25T09:13:54.010000"],["2024-07-25T09:13:55.010000"],["2024-07-25T09:13:56.010000"],["2024-07-25T09:13:57.010000"],["2024-07-25T09:13:58.010000"],["2024-07-25T09:13:59.010000"],["2024-07-25T09:14:00.010000"],["2024-07-25T09:14:01.010000"],["2024-07-25T09:14:02.010000"],["2024-07-25T09:14:03.010000"],["2024-07-25T09:14:04.010000"],["2024-07-25T09:14:05.010000"],["2024-07-25T09:14:06.010000"],["2024-07-25T09:14:07.010000"],["2024-07-25T09:14:08.010000"],["2024-07-25T09:14:09.010000"],["2024-07-25T09:14:10.010000"],["2024-07-25T09:14:11.010000"],["2024-07-25T09:14:12.010000"],["2024-07-25T09:14:13.010000"],["2024-07-25T09:14:14.010000"],["2024-07-25T09:14:15.010000"],["2024-07-25T09:14:16.010000"],["2024-07-25T09:14:17.010000"],["2024-07-25T09:14:18.010000"],["2024-07-25T09:14:19.010000"],["2024-07-25T09:14:20.010000"],["2024-07-25T09:14:21.010000"],["2024-07-25T09:14:22.010000"],["2024-07-25T09:14:23.010000"],["2024-07-25T09:14:24.010000"],["2024-07-25T09:14:25.010000"],["2024-07-25T09:14:26.010000"],["2024-07-25T09:14:27.010000"],["2024-07-25T09:14:28.010000"],["2024-07-25T09:14:29.010000"],["2024-07-25T09:14:30.010000"],["2024-07-25T09:14:31.010000"],["2024-07-25T09:14:32.010000"],["2024-07-25T09:14:33.010000"],["2024-07-25T09:14:34.010000"],["2024-07-25T09:14:35.010000"],["2024-07-25T09:14:36.010000"],["2024-07-25T09:14:37.010000"],["2024-07-25T09:14:38.010000"],["2024-07-25T09:14:39.010000"],["2024-07-25T09:14:40.010000"],["2024-07-25T09:14:41.010000"],["2024-07-25T09:14:42.010000"],["2024-07-25T09:14:43.010000"],["2024-07-25T09:14:44.010000"],["2024-07-25T09:14:45.010000"],["2024-07-25T09:14:46.010000"],["2024-07-25T09:14:47.010000"],["2024-07-25T09:14:48.010000"],["2024-07-25T09:14:49.010000"],["2024-07-25T09:14:50.010000"],["2024-07-25T09:14:51.010000"],["2024-07-25T09:14:52.010000"],["2024-07-25T09:14:53.010000"],["2024-07-25T09:14:54.010000"],["2024-07-25T09:14:55.010000"],["2024-07-25T09:14:56.010000"],["2024-07-25T09:14:57.010000"],["2024-07-25T09:14:58.010000"],["2024-07-25T09:14:59.010000"],["2024-07-25T09:15:00.010000"],["2024-07-25T09:15:01.010000"],["2024-07-25T09:15:02.010000"],["2024-07-25T09:15:03.010000"],["2024-07-25T09:15:04.010000"],["2024-07-25T09:15:05.010000"],["2024-07-25T09:15:06.010000"],["2024-07-25T09:15:07.010000"],["2024-07-25T09:15:08.010000"],["2024-07-25T09:15:09.010000"],["2024-07-25T09:15:10.010000"],["2024-07-25T09:15:11.010000"],["2024-07-25T09:15:12.010000"],["2024-07-25T09:15:13.010000"],["2024-07-25T09:15:14.010000"],["2024-07-25T09:15:15.010000"],["2024-07-25T09:15:16.010000"],["2024-07-25T09:15:17.010000"],["2024-07-25T09:15:18.010000"],["2024-07-25T09:15:19.010000"],["2024-07-25T09:15:20.010000"],["2024-07-25T09:15:21.010000"],["2024-07-25T09:15:22.010000"],["2024-07-25T09:15:23.010000"],["2024-07-25T09:15:24.010000"],["2024-07-25T09:15:25.010000"],["2024-07-25T09:15:26.010000"],["2024-07-25T09:15:27.010000"],["2024-07-25T09:15:28.010000"],["2024-07-25T09:15:29.010000"],["2024-07-25T09:15:30.010000"],["2024-07-25T09:15:31.010000"],["2024-07-25T09:15:32.010000"],["2024-07-25T09:15:33.010000"],["2024-07-25T09:15:34.010000"],["2024-07-25T09:15:35.010000"],["2024-07-25T09:15:36.010000"],["2024-07-25T09:15:37.010000"],["2024-07-25T09:15:38.010000"],["2024-07-25T09:15:39.010000"],["2024-07-25T09:15:40.010000"],["2024-07-25T09:15:41.010000"],["2024-07-25T09:15:42.010000"],["2024-07-25T09:15:43.010000"],["2024-07-25T09:15:44.010000"],["2024-07-25T09:15:45.010000"],["2024-07-25T09:15:46.010000"],["2024-07-25T09:15:47.010000"],["2024-07-25T09:15:48.010000"],["2024-07-25T09:15:49.010000"],["2024-07-25T09:15:50.010000"],["2024-07-25T09:15:51.010000"],["2024-07-25T09:15:52.010000"],["2024-07-25T09:15:53.010000"],["2024-07-25T09:15:54.010000"],["2024-07-25T09:15:55.010000"],["2024-07-25T09:15:56.010000"],["2024-07-25T09:15:57.010000"],["2024-07-25T09:15:58.010000"],["2024-07-25T09:15:59.010000"],["2024-07-25T09:16:00.010000"],["2024-07-25T09:16:01.010000"],["2024-07-25T09:16:02.010000"],["2024-07-25T09:16:03.010000"],["2024-07-25T09:16:04.010000"],["2024-07-25T09:16:05.010000"],["2024-07-25T09:16:06.010000"],["2024-07-25T09:16:07.010000"],["2024-07-25T09:16:08.010000"],["2024-07-25T09:16:09.010000"],["2024-07-25T09:16:10.010000"],["2024-07-25T09:16:11.010000"],["2024-07-25T09:16:12.010000"],["2024-07-25T09:16:13.010000"],["2024-07-25T09:16:14.010000"],["2024-07-25T09:16:15.010000"],["2024-07-25T09:16:16.010000"],["2024-07-25T09:16:17.010000"],["2024-07-25T09:16:18.010000"],["2024-07-25T09:16:19.010000"],["2024-07-25T09:16:20.010000"],["2024-07-25T09:16:21.010000"],["2024-07-25T09:16:22.010000"],["2024-07-25T09:16:23.010000"],["2024-07-25T09:16:24.010000"],["2024-07-25T09:16:25.010000"],["2024-07-25T09:16:26.010000"],["2024-07-25T09:16:27.010000"],["2024-07-25T09:16:28.010000"],["2024-07-25T09:16:29.010000"],["2024-07-25T09:16:30.010000"],["2024-07-25T09:16:31.010000"],["2024-07-25T09:16:32.010000"],["2024-07-25T09:16:33.010000"],["2024-07-25T09:16:34.010000"],["2024-07-25T09:16:35.010000"],["2024-07-25T09:16:36.010000"],["2024-07-25T09:16:37.010000"],["2024-07-25T09:16:38.010000"],["2024-07-25T09:16:39.010000"],["2024-07-25T09:16:40.010000"],["2024-07-25T09:16:41.010000"],["2024-07-25T09:16:42.010000"],["2024-07-25T09:16:43.010000"],["2024-07-25T09:16:44.010000"],["2024-07-25T09:16:45.010000"],["2024-07-25T09:16:46.010000"],["2024-07-25T09:16:47.010000"],["2024-07-25T09:16:48.010000"],["2024-07-25T09:16:49.010000"],["2024-07-25T09:16:50.010000"],["2024-07-25T09:16:51.010000"],["2024-07-25T09:16:52.010000"],["2024-07-25T09:16:53.010000"],["2024-07-25T09:16:54.010000"],["2024-07-25T09:16:55.010000"],["2024-07-25T09:16:56.010000"],["2024-07-25T09:16:57.010000"],["2024-07-25T09:16:58.010000"],["2024-07-25T09:16:59.010000"],["2024-07-25T09:17:00.010000"],["2024-07-25T09:17:01.010000"],["2024-07-25T09:17:02.010000"],["2024-07-25T09:17:03.010000"],["2024-07-25T09:17:04.010000"],["2024-07-25T09:17:05.010000"],["2024-07-25T09:17:06.010000"],["2024-07-25T09:17:07.010000"],["2024-07-25T09:17:08.010000"],["2024-07-25T09:17:09.010000"],["2024-07-25T09:17:10.010000"],["2024-07-25T09:17:11.010000"],["2024-07-25T09:17:12.010000"],["2024-07-25T09:17:13.010000"],["2024-07-25T09:17:14.010000"],["2024-07-25T09:17:15.010000"],["2024-07-25T09:17:16.010000"],["2024-07-25T09:17:17.010000"],["2024-07-25T09:17:18.010000"],["2024-07-25T09:17:19.010000"],["2024-07-25T09:17:20.010000"],["2024-07-25T09:17:21.010000"],["2024-07-25T09:17:22.010000"],["2024-07-25T09:17:23.010000"],["2024-07-25T09:17:24.010000"],["2024-07-25T09:17:25.010000"],["2024-07-25T09:17:26.010000"],["2024-07-25T09:17:27.010000"],["2024-07-25T09:17:28.010000"],["2024-07-25T09:17:29.010000"],["2024-07-25T09:17:30.010000"],["2024-07-25T09:17:31.010000"],["2024-07-25T09:17:32.010000"],["2024-07-25T09:17:33.010000"],["2024-07-25T09:17:34.010000"],["2024-07-25T09:17:35.010000"],["2024-07-25T09:17:36.010000"],["2024-07-25T09:17:37.010000"],["2024-07-25T09:17:38.010000"],["2024-07-25T09:17:39.010000"],["2024-07-25T09:17:40.010000"],["2024-07-25T09:17:41.010000"],["2024-07-25T09:17:42.010000"],["2024-07-25T09:17:43.010000"],["2024-07-25T09:17:44.010000"],["2024-07-25T09:17:45.010000"],["2024-07-25T09:17:46.010000"],["2024-07-25T09:17:47.010000"],["2024-07-25T09:17:48.010000"],["2024-07-25T09:17:49.010000"],["2024-07-25T09:17:50.010000"],["2024-07-25T09:17:51.010000"],["2024-07-25T09:17:52.010000"],["2024-07-25T09:17:53.010000"],["2024-07-25T09:17:54.010000"],["2024-07-25T09:17:55.010000"],["2024-07-25T09:17:56.010000"],["2024-07-25T09:17:57.010000"],["2024-07-25T09:17:58.010000"],["2024-07-25T09:17:59.010000"],["2024-07-25T09:18:00.010000"],["2024-07-25T09:18:01.010000"],["2024-07-25T09:18:02.010000"],["2024-07-25T09:18:03.010000"],["2024-07-25T09:18:04.010000"],["2024-07-25T09:18:05.010000"],["2024-07-25T09:18:06.010000"],["2024-07-25T09:18:07.010000"],["2024-07-25T09:18:08.010000"],["2024-07-25T09:18:09.010000"],["2024-07-25T09:18:10.010000"],["2024-07-25T09:18:11.010000"],["2024-07-25T09:18:12.010000"],["2024-07-25T09:18:13.010000"],["2024-07-25T09:18:14.010000"],["2024-07-25T09:18:15.010000"],["2024-07-25T09:18:16.010000"],["2024-07-25T09:18:17.010000"],["2024-07-25T09:18:18.010000"],["2024-07-25T09:18:19.010000"],["2024-07-25T09:18:20.010000"],["2024-07-25T09:18:21.010000"],["2024-07-25T09:18:22.010000"],["2024-07-25T09:18:23.010000"],["2024-07-25T09:18:24.010000"],["2024-07-25T09:18:25.010000"],["2024-07-25T09:18:26.010000"],["2024-07-25T09:18:27.010000"],["2024-07-25T09:18:28.010000"],["2024-07-25T09:18:29.010000"],["2024-07-25T09:18:30.010000"],["2024-07-25T09:18:31.010000"],["2024-07-25T09:18:32.010000"],["2024-07-25T09:18:33.010000"],["2024-07-25T09:18:34.010000"],["2024-07-25T09:18:35.010000"],["2024-07-25T09:18:36.010000"],["2024-07-25T09:18:37.010000"],["2024-07-25T09:18:38.010000"],["2024-07-25T09:18:39.010000"],["2024-07-25T09:18:40.010000"],["2024-07-25T09:18:41.010000"],["2024-07-25T09:18:42.010000"],["2024-07-25T09:18:43.010000"],["2024-07-25T09:18:44.010000"],["2024-07-25T09:18:45.010000"],["2024-07-25T09:18:46.010000"],["2024-07-25T09:18:47.010000"],["2024-07-25T09:18:48.010000"],["2024-07-25T09:18:49.010000"],["2024-07-25T09:18:50.010000"],["2024-07-25T09:18:51.010000"],["2024-07-25T09:18:52.010000"],["2024-07-25T09:18:53.010000"],["2024-07-25T09:18:54.010000"],["2024-07-25T09:18:55.010000"],["2024-07-25T09:18:56.010000"],["2024-07-25T09:18:57.010000"],["2024-07-25T09:18:58.010000"],["2024-07-25T09:18:59.010000"],["2024-07-25T09:19:00.010000"],["2024-07-25T09:19:01.010000"],["2024-07-25T09:19:02.010000"],["2024-07-25T09:19:03.010000"],["2024-07-25T09:19:04.010000"],["2024-07-25T09:19:05.010000"],["2024-07-25T09:19:06.010000"],["2024-07-25T09:19:07.010000"],["2024-07-25T09:19:08.010000"],["2024-07-25T09:19:09.010000"],["2024-07-25T09:19:10.010000"],["2024-07-25T09:19:11.010000"],["2024-07-25T09:19:12.010000"],["2024-07-25T09:19:13.010000"],["2024-07-25T09:19:14.010000"],["2024-07-25T09:19:15.010000"],["2024-07-25T09:19:16.010000"],["2024-07-25T09:19:17.010000"],["2024-07-25T09:19:18.010000"],["2024-07-25T09:19:19.010000"],["2024-07-25T09:19:20.010000"],["2024-07-25T09:19:21.010000"],["2024-07-25T09:19:22.010000"],["2024-07-25T09:19:23.010000"],["2024-07-25T09:19:24.010000"],["2024-07-25T09:19:25.010000"],["2024-07-25T09:19:26.010000"],["2024-07-25T09:19:27.010000"],["2024-07-25T09:19:28.010000"],["2024-07-25T09:19:29.010000"],["2024-07-25T09:19:30.010000"],["2024-07-25T09:19:31.010000"],["2024-07-25T09:19:32.010000"],["2024-07-25T09:19:33.010000"],["2024-07-25T09:19:34.010000"],["2024-07-25T09:19:35.010000"],["2024-07-25T09:19:36.010000"],["2024-07-25T09:19:37.010000"],["2024-07-25T09:19:38.010000"],["2024-07-25T09:19:39.010000"],["2024-07-25T09:19:40.010000"],["2024-07-25T09:19:41.010000"],["2024-07-25T09:19:42.010000"],["2024-07-25T09:19:43.010000"],["2024-07-25T09:19:44.010000"],["2024-07-25T09:19:45.010000"],["2024-07-25T09:19:46.010000"],["2024-07-25T09:19:47.010000"],["2024-07-25T09:19:48.010000"],["2024-07-25T09:19:49.010000"],["2024-07-25T09:19:50.010000"],["2024-07-25T09:19:51.010000"],["2024-07-25T09:19:52.010000"],["2024-07-25T09:19:53.010000"],["2024-07-25T09:19:54.010000"],["2024-07-25T09:19:55.010000"],["2024-07-25T09:19:56.010000"],["2024-07-25T09:19:57.010000"],["2024-07-25T09:19:58.010000"],["2024-07-25T09:19:59.010000"],["2024-07-25T09:20:00.010000"],["2024-07-25T09:20:01.010000"],["2024-07-25T09:20:02.010000"],["2024-07-25T09:20:03.010000"],["2024-07-25T09:20:04.010000"],["2024-07-25T09:20:05.010000"],["2024-07-25T09:20:06.010000"],["2024-07-25T09:20:07.010000"],["2024-07-25T09:20:08.010000"],["2024-07-25T09:20:09.010000"],["2024-07-25T09:20:10.010000"],["2024-07-25T09:20:11.010000"],["2024-07-25T09:20:12.010000"],["2024-07-25T09:20:13.010000"],["2024-07-25T09:20:14.010000"],["2024-07-25T09:20:15.010000"],["2024-07-25T09:20:16.010000"],["2024-07-25T09:20:17.010000"],["2024-07-25T09:20:18.010000"],["2024-07-25T09:20:19.010000"],["2024-07-25T09:20:20.010000"],["2024-07-25T09:20:21.010000"],["2024-07-25T09:20:22.010000"],["2024-07-25T09:20:23.010000"],["2024-07-25T09:20:24.010000"],["2024-07-25T09:20:25.010000"],["2024-07-25T09:20:26.010000"],["2024-07-25T09:20:27.010000"],["2024-07-25T09:20:28.010000"],["2024-07-25T09:20:29.010000"],["2024-07-25T09:20:30.010000"],["2024-07-25T09:20:31.010000"],["2024-07-25T09:20:32.010000"],["2024-07-25T09:20:33.010000"],["2024-07-25T09:20:34.010000"],["2024-07-25T09:20:35.010000"],["2024-07-25T09:20:36.010000"],["2024-07-25T09:20:37.010000"],["2024-07-25T09:20:38.010000"],["2024-07-25T09:20:39.010000"],["2024-07-25T09:20:40.010000"],["2024-07-25T09:20:41.010000"],["2024-07-25T09:20:42.010000"],["2024-07-25T09:20:43.010000"],["2024-07-25T09:20:44.010000"],["2024-07-25T09:20:45.010000"],["2024-07-25T09:20:46.010000"],["2024-07-25T09:20:47.010000"],["2024-07-25T09:20:48.010000"],["2024-07-25T09:20:49.010000"],["2024-07-25T09:20:50.010000"],["2024-07-25T09:20:51.010000"],["2024-07-25T09:20:52.010000"],["2024-07-25T09:20:53.010000"],["2024-07-25T09:20:54.010000"],["2024-07-25T09:20:55.010000"],["2024-07-25T09:20:56.010000"],["2024-07-25T09:20:57.010000"],["2024-07-25T09:20:58.010000"],["2024-07-25T09:20:59.010000"],["2024-07-25T09:21:00.010000"],["2024-07-25T09:21:01.010000"],["2024-07-25T09:21:02.010000"],["2024-07-25T09:21:03.010000"],["2024-07-25T09:21:04.010000"],["2024-07-25T09:21:05.010000"],["2024-07-25T09:21:06.010000"],["2024-07-25T09:21:07.010000"],["2024-07-25T09:21:08.010000"],["2024-07-25T09:21:09.010000"],["2024-07-25T09:21:10.010000"],["2024-07-25T09:21:11.010000"],["2024-07-25T09:21:12.010000"],["2024-07-25T09:21:13.010000"],["2024-07-25T09:21:14.010000"],["2024-07-25T09:21:15.010000"],["2024-07-25T09:21:16.010000"],["2024-07-25T09:21:17.010000"],["2024-07-25T09:21:18.010000"],["2024-07-25T09:21:19.010000"],["2024-07-25T09:21:20.010000"],["2024-07-25T09:21:21.010000"],["2024-07-25T09:21:22.010000"],["2024-07-25T09:21:23.010000"],["2024-07-25T09:21:24.010000"],["2024-07-25T09:21:25.010000"],["2024-07-25T09:21:26.010000"],["2024-07-25T09:21:27.010000"],["2024-07-25T09:21:28.010000"],["2024-07-25T09:21:29.010000"],["2024-07-25T09:21:30.010000"],["2024-07-25T09:21:31.010000"],["2024-07-25T09:21:32.010000"],["2024-07-25T09:21:33.010000"],["2024-07-25T09:21:34.010000"],["2024-07-25T09:21:35.010000"],["2024-07-25T09:21:36.010000"],["2024-07-25T09:21:37.010000"],["2024-07-25T09:21:38.010000"],["2024-07-25T09:21:39.010000"],["2024-07-25T09:21:40.010000"],["2024-07-25T09:21:41.010000"],["2024-07-25T09:21:42.010000"],["2024-07-25T09:21:43.010000"],["2024-07-25T09:21:44.010000"],["2024-07-25T09:21:45.010000"],["2024-07-25T09:21:46.010000"],["2024-07-25T09:21:47.010000"],["2024-07-25T09:21:48.010000"],["2024-07-25T09:21:49.010000"],["2024-07-25T09:21:50.010000"],["2024-07-25T09:21:51.010000"],["2024-07-25T09:21:52.010000"],["2024-07-25T09:21:53.010000"],["2024-07-25T09:21:54.010000"],["2024-07-25T09:21:55.010000"],["2024-07-25T09:21:56.010000"],["2024-07-25T09:21:57.010000"],["2024-07-25T09:21:58.010000"],["2024-07-25T09:21:59.010000"],["2024-07-25T09:22:00.010000"],["2024-07-25T09:22:01.010000"],["2024-07-25T09:22:02.010000"],["2024-07-25T09:22:03.010000"],["2024-07-25T09:22:04.010000"],["2024-07-25T09:22:05.010000"],["2024-07-25T09:22:06.010000"],["2024-07-25T09:22:07.010000"],["2024-07-25T09:22:08.010000"],["2024-07-25T09:22:09.010000"],["2024-07-25T09:22:10.010000"],["2024-07-25T09:22:11.010000"],["2024-07-25T09:22:12.010000"],["2024-07-25T09:22:13.010000"],["2024-07-25T09:22:14.010000"],["2024-07-25T09:22:15.010000"],["2024-07-25T09:22:16.010000"],["2024-07-25T09:22:17.010000"],["2024-07-25T09:22:18.010000"],["2024-07-25T09:22:19.010000"],["2024-07-25T09:22:20.010000"],["2024-07-25T09:22:21.010000"],["2024-07-25T09:22:22.010000"],["2024-07-25T09:22:23.010000"],["2024-07-25T09:22:24.010000"],["2024-07-25T09:22:25.010000"],["2024-07-25T09:22:26.010000"],["2024-07-25T09:22:27.010000"],["2024-07-25T09:22:28.010000"],["2024-07-25T09:22:29.010000"],["2024-07-25T09:22:30.010000"],["2024-07-25T09:22:31.010000"],["2024-07-25T09:22:32.010000"],["2024-07-25T09:22:33.010000"],["2024-07-25T09:22:34.010000"],["2024-07-25T09:22:35.010000"],["2024-07-25T09:22:36.010000"],["2024-07-25T09:22:37.010000"],["2024-07-25T09:22:38.010000"],["2024-07-25T09:22:39.010000"],["2024-07-25T09:22:40.010000"],["2024-07-25T09:22:41.010000"],["2024-07-25T09:22:42.010000"],["2024-07-25T09:22:43.010000"],["2024-07-25T09:22:44.010000"],["2024-07-25T09:22:45.010000"],["2024-07-25T09:22:46.010000"],["2024-07-25T09:22:47.010000"],["2024-07-25T09:22:48.010000"],["2024-07-25T09:22:49.010000"],["2024-07-25T09:22:50.010000"],["2024-07-25T09:22:51.010000"],["2024-07-25T09:22:52.010000"],["2024-07-25T09:22:53.010000"],["2024-07-25T09:22:54.010000"],["2024-07-25T09:22:55.010000"],["2024-07-25T09:22:56.010000"],["2024-07-25T09:22:57.010000"],["2024-07-25T09:22:58.010000"],["2024-07-25T09:22:59.010000"],["2024-07-25T09:23:00.010000"],["2024-07-25T09:23:01.010000"],["2024-07-25T09:23:02.010000"],["2024-07-25T09:23:03.010000"],["2024-07-25T09:23:04.010000"],["2024-07-25T09:23:05.010000"],["2024-07-25T09:23:06.010000"],["2024-07-25T09:23:07.010000"],["2024-07-25T09:23:08.010000"],["2024-07-25T09:23:09.010000"],["2024-07-25T09:23:10.010000"],["2024-07-25T09:23:11.010000"],["2024-07-25T09:23:12.010000"],["2024-07-25T09:23:13.010000"],["2024-07-25T09:23:14.010000"],["2024-07-25T09:23:15.010000"],["2024-07-25T09:23:16.010000"],["2024-07-25T09:23:17.010000"],["2024-07-25T09:23:18.010000"],["2024-07-25T09:23:19.010000"],["2024-07-25T09:23:20.010000"],["2024-07-25T09:23:21.010000"],["2024-07-25T09:23:22.010000"],["2024-07-25T09:23:23.010000"],["2024-07-25T09:23:24.010000"],["2024-07-25T09:23:25.010000"],["2024-07-25T09:23:26.010000"],["2024-07-25T09:23:27.010000"],["2024-07-25T09:23:28.010000"],["2024-07-25T09:23:29.010000"],["2024-07-25T09:23:30.010000"],["2024-07-25T09:23:31.010000"],["2024-07-25T09:23:32.010000"],["2024-07-25T09:23:33.010000"],["2024-07-25T09:23:34.010000"],["2024-07-25T09:23:35.010000"],["2024-07-25T09:23:36.010000"],["2024-07-25T09:23:37.010000"],["2024-07-25T09:23:38.010000"],["2024-07-25T09:23:39.010000"],["2024-07-25T09:23:40.010000"],["2024-07-25T09:23:41.010000"],["2024-07-25T09:23:42.010000"],["2024-07-25T09:23:43.010000"],["2024-07-25T09:23:44.010000"],["2024-07-25T09:23:45.010000"],["2024-07-25T09:23:46.010000"],["2024-07-25T09:23:47.010000"],["2024-07-25T09:23:48.010000"],["2024-07-25T09:23:49.010000"],["2024-07-25T09:23:50.010000"],["2024-07-25T09:23:51.010000"],["2024-07-25T09:23:52.010000"],["2024-07-25T09:23:53.010000"],["2024-07-25T09:23:54.010000"],["2024-07-25T09:23:55.010000"],["2024-07-25T09:23:56.010000"],["2024-07-25T09:23:57.010000"],["2024-07-25T09:23:58.010000"],["2024-07-25T09:23:59.010000"],["2024-07-25T09:24:00.010000"],["2024-07-25T09:24:01.010000"],["2024-07-25T09:24:02.010000"],["2024-07-25T09:24:03.010000"],["2024-07-25T09:24:04.010000"],["2024-07-25T09:24:05.010000"],["2024-07-25T09:24:06.010000"],["2024-07-25T09:24:07.010000"],["2024-07-25T09:24:08.010000"],["2024-07-25T09:24:09.010000"],["2024-07-25T09:24:10.010000"],["2024-07-25T09:24:11.010000"],["2024-07-25T09:24:12.010000"],["2024-07-25T09:24:13.010000"],["2024-07-25T09:24:14.010000"],["2024-07-25T09:24:15.010000"],["2024-07-25T09:24:16.010000"],["2024-07-25T09:24:17.010000"],["2024-07-25T09:24:18.010000"],["2024-07-25T09:24:19.010000"],["2024-07-25T09:24:20.010000"],["2024-07-25T09:24:21.010000"],["2024-07-25T09:24:22.010000"],["2024-07-25T09:24:23.010000"],["2024-07-25T09:24:24.010000"],["2024-07-25T09:24:25.010000"],["2024-07-25T09:24:26.010000"],["2024-07-25T09:24:27.010000"],["2024-07-25T09:24:28.010000"],["2024-07-25T09:24:29.010000"],["2024-07-25T09:24:30.010000"],["2024-07-25T09:24:31.010000"],["2024-07-25T09:24:32.010000"],["2024-07-25T09:24:33.010000"],["2024-07-25T09:24:34.010000"],["2024-07-25T09:24:35.010000"],["2024-07-25T09:24:36.010000"],["2024-07-25T09:24:37.010000"],["2024-07-25T09:24:38.010000"],["2024-07-25T09:24:39.010000"],["2024-07-25T09:24:40.010000"],["2024-07-25T09:24:41.010000"],["2024-07-25T09:24:42.010000"],["2024-07-25T09:24:43.010000"],["2024-07-25T09:24:44.010000"],["2024-07-25T09:24:45.010000"],["2024-07-25T09:24:46.010000"],["2024-07-25T09:24:47.010000"],["2024-07-25T09:24:48.010000"],["2024-07-25T09:24:49.010000"],["2024-07-25T09:24:50.010000"],["2024-07-25T09:24:51.010000"],["2024-07-25T09:24:52.010000"],["2024-07-25T09:24:53.010000"],["2024-07-25T09:24:54.010000"],["2024-07-25T09:24:55.010000"],["2024-07-25T09:24:56.010000"],["2024-07-25T09:24:57.010000"],["2024-07-25T09:24:58.010000"],["2024-07-25T09:24:59.010000"],["2024-07-25T09:25:00.010000"],["2024-07-25T09:25:01.010000"],["2024-07-25T09:25:02.010000"],["2024-07-25T09:25:03.010000"],["2024-07-25T09:25:04.010000"],["2024-07-25T09:25:05.010000"],["2024-07-25T09:25:06.010000"],["2024-07-25T09:25:07.010000"],["2024-07-25T09:25:08.010000"],["2024-07-25T09:25:09.010000"],["2024-07-25T09:25:10.010000"],["2024-07-25T09:25:11.010000"],["2024-07-25T09:25:12.010000"],["2024-07-25T09:25:13.010000"],["2024-07-25T09:25:14.010000"],["2024-07-25T09:25:15.010000"],["2024-07-25T09:25:16.010000"],["2024-07-25T09:25:17.010000"],["2024-07-25T09:25:18.010000"],["2024-07-25T09:25:19.010000"],["2024-07-25T09:25:20.010000"],["2024-07-25T09:25:21.010000"],["2024-07-25T09:25:22.010000"],["2024-07-25T09:25:23.010000"],["2024-07-25T09:25:24.010000"],["2024-07-25T09:25:25.010000"],["2024-07-25T09:25:26.010000"],["2024-07-25T09:25:27.010000"],["2024-07-25T09:25:28.010000"],["2024-07-25T09:25:29.010000"],["2024-07-25T09:25:30.010000"],["2024-07-25T09:25:31.010000"],["2024-07-25T09:25:32.010000"],["2024-07-25T09:25:33.010000"],["2024-07-25T09:25:34.010000"],["2024-07-25T09:25:35.010000"],["2024-07-25T09:25:36.010000"],["2024-07-25T09:25:37.010000"],["2024-07-25T09:25:38.010000"],["2024-07-25T09:25:39.010000"],["2024-07-25T09:25:40.010000"],["2024-07-25T09:25:41.010000"],["2024-07-25T09:25:42.010000"],["2024-07-25T09:25:43.010000"],["2024-07-25T09:25:44.010000"],["2024-07-25T09:25:45.010000"],["2024-07-25T09:25:46.010000"],["2024-07-25T09:25:47.010000"],["2024-07-25T09:25:48.010000"],["2024-07-25T09:25:49.010000"],["2024-07-25T09:25:50.010000"],["2024-07-25T09:25:51.010000"],["2024-07-25T09:25:52.010000"],["2024-07-25T09:25:53.010000"],["2024-07-25T09:25:54.010000"],["2024-07-25T09:25:55.010000"],["2024-07-25T09:25:56.010000"],["2024-07-25T09:25:57.010000"],["2024-07-25T09:25:58.010000"],["2024-07-25T09:25:59.010000"],["2024-07-25T09:26:00.010000"],["2024-07-25T09:26:01.010000"],["2024-07-25T09:26:02.010000"],["2024-07-25T09:26:03.010000"],["2024-07-25T09:26:04.010000"],["2024-07-25T09:26:05.010000"],["2024-07-25T09:26:06.010000"],["2024-07-25T09:26:07.010000"],["2024-07-25T09:26:08.010000"],["2024-07-25T09:26:09.010000"],["2024-07-25T09:26:10.010000"],["2024-07-25T09:26:11.010000"],["2024-07-25T09:26:12.010000"],["2024-07-25T09:26:13.010000"],["2024-07-25T09:26:14.010000"],["2024-07-25T09:26:15.010000"],["2024-07-25T09:26:16.010000"],["2024-07-25T09:26:17.010000"],["2024-07-25T09:26:18.010000"],["2024-07-25T09:26:19.010000"],["2024-07-25T09:26:20.010000"],["2024-07-25T09:26:21.010000"],["2024-07-25T09:26:22.010000"],["2024-07-25T09:26:23.010000"],["2024-07-25T09:26:24.010000"],["2024-07-25T09:26:25.010000"],["2024-07-25T09:26:26.010000"],["2024-07-25T09:26:27.010000"],["2024-07-25T09:26:28.010000"],["2024-07-25T09:26:29.010000"],["2024-07-25T09:26:30.010000"],["2024-07-25T09:26:31.010000"],["2024-07-25T09:26:32.010000"],["2024-07-25T09:26:33.010000"],["2024-07-25T09:26:34.010000"],["2024-07-25T09:26:35.010000"],["2024-07-25T09:26:36.010000"],["2024-07-25T09:26:37.010000"],["2024-07-25T09:26:38.010000"],["2024-07-25T09:26:39.010000"],["2024-07-25T09:26:40.010000"],["2024-07-25T09:26:41.010000"],["2024-07-25T09:26:42.010000"],["2024-07-25T09:26:43.010000"],["2024-07-25T09:26:44.010000"],["2024-07-25T09:26:45.010000"],["2024-07-25T09:26:46.010000"],["2024-07-25T09:26:47.010000"],["2024-07-25T09:26:48.010000"],["2024-07-25T09:26:49.010000"],["2024-07-25T09:26:50.010000"],["2024-07-25T09:26:51.010000"],["2024-07-25T09:26:52.010000"],["2024-07-25T09:26:53.010000"],["2024-07-25T09:26:54.010000"],["2024-07-25T09:26:55.010000"],["2024-07-25T09:26:56.010000"],["2024-07-25T09:26:57.010000"],["2024-07-25T09:26:58.010000"],["2024-07-25T09:26:59.010000"],["2024-07-25T09:27:00.010000"],["2024-07-25T09:27:01.010000"],["2024-07-25T09:27:02.010000"],["2024-07-25T09:27:03.010000"],["2024-07-25T09:27:04.010000"],["2024-07-25T09:27:05.010000"],["2024-07-25T09:27:06.010000"],["2024-07-25T09:27:07.010000"],["2024-07-25T09:27:08.010000"],["2024-07-25T09:27:09.010000"],["2024-07-25T09:27:10.010000"],["2024-07-25T09:27:11.010000"],["2024-07-25T09:27:12.010000"],["2024-07-25T09:27:13.010000"],["2024-07-25T09:27:14.010000"],["2024-07-25T09:27:15.010000"],["2024-07-25T09:27:16.010000"],["2024-07-25T09:27:17.010000"],["2024-07-25T09:27:18.010000"],["2024-07-25T09:27:19.010000"],["2024-07-25T09:27:20.010000"],["2024-07-25T09:27:21.010000"],["2024-07-25T09:27:22.010000"],["2024-07-25T09:27:23.010000"],["2024-07-25T09:27:24.010000"],["2024-07-25T09:27:25.010000"],["2024-07-25T09:27:26.010000"],["2024-07-25T09:27:27.010000"],["2024-07-25T09:27:28.010000"],["2024-07-25T09:27:29.010000"],["2024-07-25T09:27:30.010000"],["2024-07-25T09:27:31.010000"],["2024-07-25T09:27:32.010000"],["2024-07-25T09:27:33.010000"],["2024-07-25T09:27:34.010000"],["2024-07-25T09:27:35.010000"],["2024-07-25T09:27:36.010000"],["2024-07-25T09:27:37.010000"],["2024-07-25T09:27:38.010000"],["2024-07-25T09:27:39.010000"],["2024-07-25T09:27:40.010000"],["2024-07-25T09:27:41.010000"],["2024-07-25T09:27:42.010000"],["2024-07-25T09:27:43.010000"],["2024-07-25T09:27:44.010000"],["2024-07-25T09:27:45.010000"],["2024-07-25T09:27:46.010000"],["2024-07-25T09:27:47.010000"],["2024-07-25T09:27:48.010000"],["2024-07-25T09:27:49.010000"],["2024-07-25T09:27:50.010000"],["2024-07-25T09:27:51.010000"],["2024-07-25T09:27:52.010000"],["2024-07-25T09:27:53.010000"],["2024-07-25T09:27:54.010000"],["2024-07-25T09:27:55.010000"],["2024-07-25T09:27:56.010000"],["2024-07-25T09:27:57.010000"],["2024-07-25T09:27:58.010000"],["2024-07-25T09:27:59.010000"],["2024-07-25T09:28:00.010000"],["2024-07-25T09:28:01.010000"],["2024-07-25T09:28:02.010000"],["2024-07-25T09:28:03.010000"],["2024-07-25T09:28:04.010000"],["2024-07-25T09:28:05.010000"],["2024-07-25T09:28:06.010000"],["2024-07-25T09:28:07.010000"],["2024-07-25T09:28:08.010000"],["2024-07-25T09:28:09.010000"],["2024-07-25T09:28:10.010000"],["2024-07-25T09:28:11.010000"],["2024-07-25T09:28:12.010000"],["2024-07-25T09:28:13.010000"],["2024-07-25T09:28:14.010000"],["2024-07-25T09:28:15.010000"],["2024-07-25T09:28:16.010000"],["2024-07-25T09:28:17.010000"],["2024-07-25T09:28:18.010000"],["2024-07-25T09:28:19.010000"],["2024-07-25T09:28:20.010000"],["2024-07-25T09:28:21.010000"],["2024-07-25T09:28:22.010000"],["2024-07-25T09:28:23.010000"],["2024-07-25T09:28:24.010000"],["2024-07-25T09:28:25.010000"],["2024-07-25T09:28:26.010000"],["2024-07-25T09:28:27.010000"],["2024-07-25T09:28:28.010000"],["2024-07-25T09:28:29.010000"],["2024-07-25T09:28:30.010000"],["2024-07-25T09:28:31.010000"],["2024-07-25T09:28:32.010000"],["2024-07-25T09:28:33.010000"],["2024-07-25T09:28:34.010000"],["2024-07-25T09:28:35.010000"],["2024-07-25T09:28:36.010000"],["2024-07-25T09:28:37.010000"],["2024-07-25T09:28:38.010000"],["2024-07-25T09:28:39.010000"],["2024-07-25T09:28:40.010000"],["2024-07-25T09:28:41.010000"],["2024-07-25T09:28:42.010000"],["2024-07-25T09:28:43.010000"],["2024-07-25T09:28:44.010000"],["2024-07-25T09:28:45.010000"],["2024-07-25T09:28:46.010000"],["2024-07-25T09:28:47.010000"],["2024-07-25T09:28:48.010000"],["2024-07-25T09:28:49.010000"],["2024-07-25T09:28:50.010000"],["2024-07-25T09:28:51.010000"],["2024-07-25T09:28:52.010000"],["2024-07-25T09:28:53.010000"],["2024-07-25T09:28:54.010000"],["2024-07-25T09:28:55.010000"],["2024-07-25T09:28:56.010000"],["2024-07-25T09:28:57.010000"],["2024-07-25T09:28:58.010000"],["2024-07-25T09:28:59.010000"],["2024-07-25T09:29:00.010000"],["2024-07-25T09:29:01.010000"],["2024-07-25T09:29:02.010000"],["2024-07-25T09:29:03.010000"],["2024-07-25T09:29:04.010000"],["2024-07-25T09:29:05.010000"],["2024-07-25T09:29:06.010000"],["2024-07-25T09:29:07.010000"],["2024-07-25T09:29:08.010000"],["2024-07-25T09:29:09.010000"],["2024-07-25T09:29:10.010000"],["2024-07-25T09:29:11.010000"],["2024-07-25T09:29:12.010000"],["2024-07-25T09:29:13.010000"],["2024-07-25T09:29:14.010000"],["2024-07-25T09:29:15.010000"],["2024-07-25T09:29:16.010000"],["2024-07-25T09:29:17.010000"],["2024-07-25T09:29:18.010000"],["2024-07-25T09:29:19.010000"],["2024-07-25T09:29:20.010000"],["2024-07-25T09:29:21.010000"],["2024-07-25T09:29:22.010000"],["2024-07-25T09:29:23.010000"],["2024-07-25T09:29:24.010000"],["2024-07-25T09:29:25.010000"],["2024-07-25T09:29:26.010000"],["2024-07-25T09:29:27.010000"],["2024-07-25T09:29:28.010000"],["2024-07-25T09:29:29.010000"],["2024-07-25T09:29:30.010000"],["2024-07-25T09:29:31.010000"],["2024-07-25T09:29:32.010000"],["2024-07-25T09:29:33.010000"],["2024-07-25T09:29:34.010000"],["2024-07-25T09:29:35.010000"],["2024-07-25T09:29:36.010000"],["2024-07-25T09:29:37.010000"],["2024-07-25T09:29:38.010000"],["2024-07-25T09:29:39.010000"],["2024-07-25T09:29:40.010000"],["2024-07-25T09:29:41.010000"],["2024-07-25T09:29:42.010000"],["2024-07-25T09:29:43.010000"],["2024-07-25T09:29:44.010000"],["2024-07-25T09:29:45.010000"],["2024-07-25T09:29:46.010000"],["2024-07-25T09:29:47.010000"],["2024-07-25T09:29:48.010000"],["2024-07-25T09:29:49.010000"],["2024-07-25T09:29:50.010000"],["2024-07-25T09:29:51.010000"],["2024-07-25T09:29:52.010000"],["2024-07-25T09:29:53.010000"],["2024-07-25T09:29:54.010000"],["2024-07-25T09:29:55.010000"],["2024-07-25T09:29:56.010000"],["2024-07-25T09:29:57.010000"],["2024-07-25T09:29:58.010000"],["2024-07-25T09:29:59.010000"],["2024-07-25T09:30:00.010000"],["2024-07-25T09:30:01.010000"],["2024-07-25T09:30:02.010000"],["2024-07-25T09:30:03.010000"],["2024-07-25T09:30:04.010000"],["2024-07-25T09:30:05.010000"],["2024-07-25T09:30:06.010000"],["2024-07-25T09:30:07.010000"],["2024-07-25T09:30:08.010000"],["2024-07-25T09:30:09.010000"],["2024-07-25T09:30:10.010000"],["2024-07-25T09:30:11.010000"],["2024-07-25T09:30:12.010000"],["2024-07-25T09:30:13.010000"],["2024-07-25T09:30:14.010000"],["2024-07-25T09:30:15.010000"],["2024-07-25T09:30:16.010000"],["2024-07-25T09:30:17.010000"],["2024-07-25T09:30:18.010000"],["2024-07-25T09:30:19.010000"],["2024-07-25T09:30:20.010000"],["2024-07-25T09:30:21.010000"],["2024-07-25T09:30:22.010000"],["2024-07-25T09:30:23.010000"],["2024-07-25T09:30:24.010000"],["2024-07-25T09:30:25.010000"],["2024-07-25T09:30:26.010000"],["2024-07-25T09:30:27.010000"],["2024-07-25T09:30:28.010000"],["2024-07-25T09:30:29.010000"],["2024-07-25T09:30:30.010000"],["2024-07-25T09:30:31.010000"],["2024-07-25T09:30:32.010000"],["2024-07-25T09:30:33.010000"],["2024-07-25T09:30:34.010000"],["2024-07-25T09:30:35.010000"],["2024-07-25T09:30:36.010000"],["2024-07-25T09:30:37.010000"],["2024-07-25T09:30:38.010000"],["2024-07-25T09:30:39.010000"],["2024-07-25T09:30:40.010000"],["2024-07-25T09:30:41.010000"],["2024-07-25T09:30:42.010000"],["2024-07-25T09:30:43.010000"],["2024-07-25T09:30:44.010000"],["2024-07-25T09:30:45.010000"],["2024-07-25T09:30:46.010000"],["2024-07-25T09:30:47.010000"],["2024-07-25T09:30:48.010000"],["2024-07-25T09:30:49.010000"],["2024-07-25T09:30:50.010000"],["2024-07-25T09:30:51.010000"],["2024-07-25T09:30:52.010000"],["2024-07-25T09:30:53.010000"],["2024-07-25T09:30:54.010000"],["2024-07-25T09:30:55.010000"],["2024-07-25T09:30:56.010000"],["2024-07-25T09:30:57.010000"],["2024-07-25T09:30:58.010000"],["2024-07-25T09:30:59.010000"],["2024-07-25T09:31:00.010000"],["2024-07-25T09:31:01.010000"],["2024-07-25T09:31:02.010000"],["2024-07-25T09:31:03.010000"],["2024-07-25T09:31:04.010000"],["2024-07-25T09:31:05.010000"],["2024-07-25T09:31:06.010000"],["2024-07-25T09:31:07.010000"],["2024-07-25T09:31:08.010000"],["2024-07-25T09:31:09.010000"],["2024-07-25T09:31:10.010000"],["2024-07-25T09:31:11.010000"],["2024-07-25T09:31:12.010000"],["2024-07-25T09:31:13.010000"],["2024-07-25T09:31:14.010000"],["2024-07-25T09:31:15.010000"],["2024-07-25T09:31:16.010000"],["2024-07-25T09:31:17.010000"],["2024-07-25T09:31:18.010000"],["2024-07-25T09:31:19.010000"],["2024-07-25T09:31:20.010000"],["2024-07-25T09:31:21.010000"],["2024-07-25T09:31:22.010000"],["2024-07-25T09:31:23.010000"],["2024-07-25T09:31:24.010000"],["2024-07-25T09:31:25.010000"],["2024-07-25T09:31:26.010000"],["2024-07-25T09:31:27.010000"],["2024-07-25T09:31:28.010000"],["2024-07-25T09:31:29.010000"],["2024-07-25T09:31:30.010000"],["2024-07-25T09:31:31.010000"],["2024-07-25T09:31:32.010000"],["2024-07-25T09:31:33.010000"],["2024-07-25T09:31:34.010000"],["2024-07-25T09:31:35.010000"],["2024-07-25T09:31:36.010000"],["2024-07-25T09:31:37.010000"],["2024-07-25T09:31:38.010000"],["2024-07-25T09:31:39.010000"],["2024-07-25T09:31:40.010000"],["2024-07-25T09:31:41.010000"],["2024-07-25T09:31:42.010000"],["2024-07-25T09:31:43.010000"],["2024-07-25T09:31:44.010000"],["2024-07-25T09:31:45.010000"],["2024-07-25T09:31:46.010000"],["2024-07-25T09:31:47.010000"],["2024-07-25T09:31:48.010000"],["2024-07-25T09:31:49.010000"],["2024-07-25T09:31:50.010000"],["2024-07-25T09:31:51.010000"],["2024-07-25T09:31:52.010000"],["2024-07-25T09:31:53.010000"],["2024-07-25T09:31:54.010000"],["2024-07-25T09:31:55.010000"],["2024-07-25T09:31:56.010000"],["2024-07-25T09:31:57.010000"],["2024-07-25T09:31:58.010000"],["2024-07-25T09:31:59.010000"],["2024-07-25T09:32:00.010000"],["2024-07-25T09:32:01.010000"],["2024-07-25T09:32:02.010000"],["2024-07-25T09:32:03.010000"],["2024-07-25T09:32:04.010000"],["2024-07-25T09:32:05.010000"],["2024-07-25T09:32:06.010000"],["2024-07-25T09:32:07.010000"],["2024-07-25T09:32:08.010000"],["2024-07-25T09:32:09.010000"],["2024-07-25T09:32:10.010000"],["2024-07-25T09:32:11.010000"],["2024-07-25T09:32:12.010000"],["2024-07-25T09:32:13.010000"],["2024-07-25T09:32:14.010000"],["2024-07-25T09:32:15.010000"],["2024-07-25T09:32:16.010000"],["2024-07-25T09:32:17.010000"],["2024-07-25T09:32:18.010000"],["2024-07-25T09:32:19.010000"],["2024-07-25T09:32:20.010000"],["2024-07-25T09:32:21.010000"],["2024-07-25T09:32:22.010000"],["2024-07-25T09:32:23.010000"],["2024-07-25T09:32:24.010000"],["2024-07-25T09:32:25.010000"],["2024-07-25T09:32:26.010000"],["2024-07-25T09:32:27.010000"],["2024-07-25T09:32:28.010000"],["2024-07-25T09:32:29.010000"],["2024-07-25T09:32:30.010000"],["2024-07-25T09:32:31.010000"],["2024-07-25T09:32:32.010000"],["2024-07-25T09:32:33.010000"],["2024-07-25T09:32:34.010000"],["2024-07-25T09:32:35.010000"],["2024-07-25T09:32:36.010000"],["2024-07-25T09:32:37.010000"],["2024-07-25T09:32:38.010000"],["2024-07-25T09:32:39.010000"],["2024-07-25T09:32:40.010000"],["2024-07-25T09:32:41.010000"],["2024-07-25T09:32:42.010000"],["2024-07-25T09:32:43.010000"],["2024-07-25T09:32:44.010000"],["2024-07-25T09:32:45.010000"],["2024-07-25T09:32:46.010000"],["2024-07-25T09:32:47.010000"],["2024-07-25T09:32:48.010000"],["2024-07-25T09:32:49.010000"],["2024-07-25T09:32:50.010000"],["2024-07-25T09:32:51.010000"],["2024-07-25T09:32:52.010000"],["2024-07-25T09:32:53.010000"],["2024-07-25T09:32:54.010000"],["2024-07-25T09:32:55.010000"],["2024-07-25T09:32:56.010000"],["2024-07-25T09:32:57.010000"],["2024-07-25T09:32:58.010000"],["2024-07-25T09:32:59.010000"],["2024-07-25T09:33:00.010000"],["2024-07-25T09:33:01.010000"],["2024-07-25T09:33:02.010000"],["2024-07-25T09:33:03.010000"],["2024-07-25T09:33:04.010000"],["2024-07-25T09:33:05.010000"],["2024-07-25T09:33:06.010000"],["2024-07-25T09:33:07.010000"],["2024-07-25T09:33:08.010000"],["2024-07-25T09:33:09.010000"],["2024-07-25T09:33:10.010000"],["2024-07-25T09:33:11.010000"],["2024-07-25T09:33:12.010000"],["2024-07-25T09:33:13.010000"],["2024-07-25T09:33:14.010000"],["2024-07-25T09:33:15.010000"],["2024-07-25T09:33:16.010000"],["2024-07-25T09:33:17.010000"],["2024-07-25T09:33:18.010000"],["2024-07-25T09:33:19.010000"],["2024-07-25T09:33:20.010000"],["2024-07-25T09:33:21.010000"],["2024-07-25T09:33:22.010000"],["2024-07-25T09:33:23.010000"],["2024-07-25T09:33:24.010000"],["2024-07-25T09:33:25.010000"],["2024-07-25T09:33:26.010000"],["2024-07-25T09:33:27.010000"],["2024-07-25T09:33:28.010000"],["2024-07-25T09:33:29.010000"],["2024-07-25T09:33:30.010000"],["2024-07-25T09:33:31.010000"],["2024-07-25T09:33:32.010000"],["2024-07-25T09:33:33.010000"],["2024-07-25T09:33:34.010000"],["2024-07-25T09:33:35.010000"],["2024-07-25T09:33:36.010000"],["2024-07-25T09:33:37.010000"],["2024-07-25T09:33:38.010000"],["2024-07-25T09:33:39.010000"],["2024-07-25T09:33:40.010000"],["2024-07-25T09:33:41.010000"],["2024-07-25T09:33:42.010000"],["2024-07-25T09:33:43.010000"],["2024-07-25T09:33:44.010000"],["2024-07-25T09:33:45.010000"],["2024-07-25T09:33:46.010000"],["2024-07-25T09:33:47.010000"],["2024-07-25T09:33:48.010000"],["2024-07-25T09:33:49.010000"],["2024-07-25T09:33:50.010000"],["2024-07-25T09:33:51.010000"],["2024-07-25T09:33:52.010000"],["2024-07-25T09:33:53.010000"],["2024-07-25T09:33:54.010000"],["2024-07-25T09:33:55.010000"],["2024-07-25T09:33:56.010000"],["2024-07-25T09:33:57.010000"],["2024-07-25T09:33:58.010000"],["2024-07-25T09:33:59.010000"],["2024-07-25T09:34:00.010000"],["2024-07-25T09:34:01.010000"],["2024-07-25T09:34:02.010000"],["2024-07-25T09:34:03.010000"],["2024-07-25T09:34:04.010000"],["2024-07-25T09:34:05.010000"],["2024-07-25T09:34:06.010000"],["2024-07-25T09:34:07.010000"],["2024-07-25T09:34:08.010000"],["2024-07-25T09:34:09.010000"],["2024-07-25T09:34:10.010000"],["2024-07-25T09:34:11.010000"],["2024-07-25T09:34:12.010000"],["2024-07-25T09:34:13.010000"],["2024-07-25T09:34:14.010000"],["2024-07-25T09:34:15.010000"],["2024-07-25T09:34:16.010000"],["2024-07-25T09:34:17.010000"],["2024-07-25T09:34:18.010000"],["2024-07-25T09:34:19.010000"],["2024-07-25T09:34:20.010000"],["2024-07-25T09:34:21.010000"],["2024-07-25T09:34:22.010000"],["2024-07-25T09:34:23.010000"],["2024-07-25T09:34:24.010000"],["2024-07-25T09:34:25.010000"],["2024-07-25T09:34:26.010000"],["2024-07-25T09:34:27.010000"],["2024-07-25T09:34:28.010000"],["2024-07-25T09:34:29.010000"],["2024-07-25T09:34:30.010000"],["2024-07-25T09:34:31.010000"],["2024-07-25T09:34:32.010000"],["2024-07-25T09:34:33.010000"],["2024-07-25T09:34:34.010000"],["2024-07-25T09:34:35.010000"],["2024-07-25T09:34:36.010000"],["2024-07-25T09:34:37.010000"],["2024-07-25T09:34:38.010000"],["2024-07-25T09:34:39.010000"],["2024-07-25T09:34:40.010000"],["2024-07-25T09:34:41.010000"],["2024-07-25T09:34:42.010000"],["2024-07-25T09:34:43.010000"],["2024-07-25T09:34:44.010000"],["2024-07-25T09:34:45.010000"],["2024-07-25T09:34:46.010000"],["2024-07-25T09:34:47.010000"],["2024-07-25T09:34:48.010000"],["2024-07-25T09:34:49.010000"],["2024-07-25T09:34:50.010000"],["2024-07-25T09:34:51.010000"],["2024-07-25T09:34:52.010000"],["2024-07-25T09:34:53.010000"],["2024-07-25T09:34:54.010000"],["2024-07-25T09:34:55.010000"],["2024-07-25T09:34:56.010000"],["2024-07-25T09:34:57.010000"],["2024-07-25T09:34:58.010000"],["2024-07-25T09:34:59.010000"],["2024-07-25T09:35:00.010000"],["2024-07-25T09:35:01.010000"],["2024-07-25T09:35:02.010000"],["2024-07-25T09:35:03.010000"],["2024-07-25T09:35:04.010000"],["2024-07-25T09:35:05.010000"],["2024-07-25T09:35:06.010000"],["2024-07-25T09:35:07.010000"],["2024-07-25T09:35:08.010000"],["2024-07-25T09:35:09.010000"],["2024-07-25T09:35:10.010000"],["2024-07-25T09:35:11.010000"],["2024-07-25T09:35:12.010000"],["2024-07-25T09:35:13.010000"],["2024-07-25T09:35:14.010000"],["2024-07-25T09:35:15.010000"],["2024-07-25T09:35:16.010000"],["2024-07-25T09:35:17.010000"],["2024-07-25T09:35:18.010000"],["2024-07-25T09:35:19.010000"],["2024-07-25T09:35:20.010000"],["2024-07-25T09:35:21.010000"],["2024-07-25T09:35:22.010000"],["2024-07-25T09:35:23.010000"],["2024-07-25T09:35:24.010000"],["2024-07-25T09:35:25.010000"],["2024-07-25T09:35:26.010000"],["2024-07-25T09:35:27.010000"],["2024-07-25T09:35:28.010000"],["2024-07-25T09:35:29.010000"],["2024-07-25T09:35:30.010000"],["2024-07-25T09:35:31.010000"],["2024-07-25T09:35:32.010000"],["2024-07-25T09:35:33.010000"],["2024-07-25T09:35:34.010000"],["2024-07-25T09:35:35.010000"],["2024-07-25T09:35:36.010000"],["2024-07-25T09:35:37.010000"],["2024-07-25T09:35:38.010000"],["2024-07-25T09:35:39.010000"],["2024-07-25T09:35:40.010000"],["2024-07-25T09:35:41.010000"],["2024-07-25T09:35:42.010000"],["2024-07-25T09:35:43.010000"],["2024-07-25T09:35:44.010000"],["2024-07-25T09:35:45.010000"],["2024-07-25T09:35:46.010000"],["2024-07-25T09:35:47.010000"],["2024-07-25T09:35:48.010000"],["2024-07-25T09:35:49.010000"],["2024-07-25T09:35:50.010000"],["2024-07-25T09:35:51.010000"],["2024-07-25T09:35:52.010000"],["2024-07-25T09:35:53.010000"],["2024-07-25T09:35:54.010000"],["2024-07-25T09:35:55.010000"],["2024-07-25T09:35:56.010000"],["2024-07-25T09:35:57.010000"],["2024-07-25T09:35:58.010000"],["2024-07-25T09:35:59.010000"],["2024-07-25T09:36:00.010000"],["2024-07-25T09:36:01.010000"],["2024-07-25T09:36:02.010000"],["2024-07-25T09:36:03.010000"],["2024-07-25T09:36:04.010000"],["2024-07-25T09:36:05.010000"],["2024-07-25T09:36:06.010000"],["2024-07-25T09:36:07.010000"],["2024-07-25T09:36:08.010000"],["2024-07-25T09:36:09.010000"],["2024-07-25T09:36:10.010000"],["2024-07-25T09:36:11.010000"],["2024-07-25T09:36:12.010000"],["2024-07-25T09:36:13.010000"],["2024-07-25T09:36:14.010000"],["2024-07-25T09:36:15.010000"],["2024-07-25T09:36:16.010000"],["2024-07-25T09:36:17.010000"],["2024-07-25T09:36:18.010000"],["2024-07-25T09:36:19.010000"],["2024-07-25T09:36:20.010000"],["2024-07-25T09:36:21.010000"],["2024-07-25T09:36:22.010000"],["2024-07-25T09:36:23.010000"],["2024-07-25T09:36:24.010000"],["2024-07-25T09:36:25.010000"],["2024-07-25T09:36:26.010000"],["2024-07-25T09:36:27.010000"],["2024-07-25T09:36:28.010000"],["2024-07-25T09:36:29.010000"],["2024-07-25T09:36:30.010000"],["2024-07-25T09:36:31.010000"],["2024-07-25T09:36:32.010000"],["2024-07-25T09:36:33.010000"],["2024-07-25T09:36:34.010000"],["2024-07-25T09:36:35.010000"],["2024-07-25T09:36:36.010000"],["2024-07-25T09:36:37.010000"],["2024-07-25T09:36:38.010000"],["2024-07-25T09:36:39.010000"],["2024-07-25T09:36:40.010000"],["2024-07-25T09:36:41.010000"],["2024-07-25T09:36:42.010000"],["2024-07-25T09:36:43.010000"],["2024-07-25T09:36:44.010000"],["2024-07-25T09:36:45.010000"],["2024-07-25T09:36:46.010000"],["2024-07-25T09:36:47.010000"],["2024-07-25T09:36:48.010000"],["2024-07-25T09:36:49.010000"],["2024-07-25T09:36:50.010000"],["2024-07-25T09:36:51.010000"],["2024-07-25T09:36:52.010000"],["2024-07-25T09:36:53.010000"],["2024-07-25T09:36:54.010000"],["2024-07-25T09:36:55.010000"],["2024-07-25T09:36:56.010000"],["2024-07-25T09:36:57.010000"],["2024-07-25T09:36:58.010000"],["2024-07-25T09:36:59.010000"],["2024-07-25T09:37:00.010000"],["2024-07-25T09:37:01.010000"],["2024-07-25T09:37:02.010000"],["2024-07-25T09:37:03.010000"],["2024-07-25T09:37:04.010000"],["2024-07-25T09:37:05.010000"],["2024-07-25T09:37:06.010000"],["2024-07-25T09:37:07.010000"],["2024-07-25T09:37:08.010000"],["2024-07-25T09:37:09.010000"],["2024-07-25T09:37:10.010000"],["2024-07-25T09:37:11.010000"],["2024-07-25T09:37:12.010000"],["2024-07-25T09:37:13.010000"],["2024-07-25T09:37:14.010000"],["2024-07-25T09:37:15.010000"],["2024-07-25T09:37:16.010000"],["2024-07-25T09:37:17.010000"],["2024-07-25T09:37:18.010000"],["2024-07-25T09:37:19.010000"],["2024-07-25T09:37:20.010000"],["2024-07-25T09:37:21.010000"],["2024-07-25T09:37:22.010000"],["2024-07-25T09:37:23.010000"],["2024-07-25T09:37:24.010000"],["2024-07-25T09:37:25.010000"],["2024-07-25T09:37:26.010000"],["2024-07-25T09:37:27.010000"],["2024-07-25T09:37:28.010000"],["2024-07-25T09:37:29.010000"],["2024-07-25T09:37:30.010000"],["2024-07-25T09:37:31.010000"],["2024-07-25T09:37:32.010000"],["2024-07-25T09:37:33.010000"],["2024-07-25T09:37:34.010000"],["2024-07-25T09:37:35.010000"],["2024-07-25T09:37:36.010000"],["2024-07-25T09:37:37.010000"],["2024-07-25T09:37:38.010000"],["2024-07-25T09:37:39.010000"],["2024-07-25T09:37:40.010000"],["2024-07-25T09:37:41.010000"],["2024-07-25T09:37:42.010000"],["2024-07-25T09:37:43.010000"],["2024-07-25T09:37:44.010000"],["2024-07-25T09:37:45.010000"],["2024-07-25T09:37:46.010000"],["2024-07-25T09:37:47.010000"],["2024-07-25T09:37:48.010000"],["2024-07-25T09:37:49.010000"],["2024-07-25T09:37:50.010000"],["2024-07-25T09:37:51.010000"],["2024-07-25T09:37:52.010000"],["2024-07-25T09:37:53.010000"],["2024-07-25T09:37:54.010000"],["2024-07-25T09:37:55.010000"],["2024-07-25T09:37:56.010000"],["2024-07-25T09:37:57.010000"],["2024-07-25T09:37:58.010000"],["2024-07-25T09:37:59.010000"],["2024-07-25T09:38:00.010000"],["2024-07-25T09:38:01.010000"],["2024-07-25T09:38:02.010000"],["2024-07-25T09:38:03.010000"],["2024-07-25T09:38:04.010000"],["2024-07-25T09:38:05.010000"],["2024-07-25T09:38:06.010000"],["2024-07-25T09:38:07.010000"],["2024-07-25T09:38:08.010000"],["2024-07-25T09:38:09.010000"],["2024-07-25T09:38:10.010000"],["2024-07-25T09:38:11.010000"],["2024-07-25T09:38:12.010000"],["2024-07-25T09:38:13.010000"],["2024-07-25T09:38:14.010000"],["2024-07-25T09:38:15.010000"],["2024-07-25T09:38:16.010000"],["2024-07-25T09:38:17.010000"],["2024-07-25T09:38:18.010000"],["2024-07-25T09:38:19.010000"],["2024-07-25T09:38:20.010000"],["2024-07-25T09:38:21.010000"],["2024-07-25T09:38:22.010000"],["2024-07-25T09:38:23.010000"],["2024-07-25T09:38:24.010000"],["2024-07-25T09:38:25.010000"],["2024-07-25T09:38:26.010000"],["2024-07-25T09:38:27.010000"],["2024-07-25T09:38:28.010000"],["2024-07-25T09:38:29.010000"],["2024-07-25T09:38:30.010000"],["2024-07-25T09:38:31.010000"],["2024-07-25T09:38:32.010000"],["2024-07-25T09:38:33.010000"],["2024-07-25T09:38:34.010000"],["2024-07-25T09:38:35.010000"],["2024-07-25T09:38:36.010000"],["2024-07-25T09:38:37.010000"],["2024-07-25T09:38:38.010000"],["2024-07-25T09:38:39.010000"],["2024-07-25T09:38:40.010000"],["2024-07-25T09:38:41.010000"],["2024-07-25T09:38:42.010000"],["2024-07-25T09:38:43.010000"],["2024-07-25T09:38:44.010000"],["2024-07-25T09:38:45.010000"],["2024-07-25T09:38:46.010000"],["2024-07-25T09:38:47.010000"],["2024-07-25T09:38:48.010000"],["2024-07-25T09:38:49.010000"],["2024-07-25T09:38:50.010000"],["2024-07-25T09:38:51.010000"],["2024-07-25T09:38:52.010000"],["2024-07-25T09:38:53.010000"],["2024-07-25T09:38:54.010000"],["2024-07-25T09:38:55.010000"],["2024-07-25T09:38:56.010000"],["2024-07-25T09:38:57.010000"],["2024-07-25T09:38:58.010000"],["2024-07-25T09:38:59.010000"],["2024-07-25T09:39:00.010000"],["2024-07-25T09:39:01.010000"],["2024-07-25T09:39:02.010000"],["2024-07-25T09:39:03.010000"],["2024-07-25T09:39:04.010000"],["2024-07-25T09:39:05.010000"],["2024-07-25T09:39:06.010000"],["2024-07-25T09:39:07.010000"],["2024-07-25T09:39:08.010000"],["2024-07-25T09:39:09.010000"],["2024-07-25T09:39:10.010000"],["2024-07-25T09:39:11.010000"],["2024-07-25T09:39:12.010000"],["2024-07-25T09:39:13.010000"],["2024-07-25T09:39:14.010000"],["2024-07-25T09:39:15.010000"],["2024-07-25T09:39:16.010000"],["2024-07-25T09:39:17.010000"],["2024-07-25T09:39:18.010000"],["2024-07-25T09:39:19.010000"],["2024-07-25T09:39:20.010000"],["2024-07-25T09:39:21.010000"],["2024-07-25T09:39:22.010000"],["2024-07-25T09:39:23.010000"],["2024-07-25T09:39:24.010000"],["2024-07-25T09:39:25.010000"],["2024-07-25T09:39:26.010000"],["2024-07-25T09:39:27.010000"],["2024-07-25T09:39:28.010000"],["2024-07-25T09:39:29.010000"],["2024-07-25T09:39:30.010000"],["2024-07-25T09:39:31.010000"],["2024-07-25T09:39:32.010000"],["2024-07-25T09:39:33.010000"],["2024-07-25T09:39:34.010000"],["2024-07-25T09:39:35.010000"],["2024-07-25T09:39:36.010000"],["2024-07-25T09:39:37.010000"],["2024-07-25T09:39:38.010000"],["2024-07-25T09:39:39.010000"],["2024-07-25T09:39:40.010000"],["2024-07-25T09:39:41.010000"],["2024-07-25T09:39:42.010000"],["2024-07-25T09:39:43.010000"],["2024-07-25T09:39:44.010000"],["2024-07-25T09:39:45.010000"],["2024-07-25T09:39:46.010000"],["2024-07-25T09:39:47.010000"],["2024-07-25T09:39:48.010000"],["2024-07-25T09:39:49.010000"],["2024-07-25T09:39:50.010000"],["2024-07-25T09:39:51.010000"],["2024-07-25T09:39:52.010000"],["2024-07-25T09:39:53.010000"],["2024-07-25T09:39:54.010000"],["2024-07-25T09:39:55.010000"],["2024-07-25T09:39:56.010000"],["2024-07-25T09:39:57.010000"],["2024-07-25T09:39:58.010000"],["2024-07-25T09:39:59.010000"],["2024-07-25T09:40:00.010000"],["2024-07-25T09:40:01.010000"],["2024-07-25T09:40:02.010000"],["2024-07-25T09:40:03.010000"],["2024-07-25T09:40:04.010000"],["2024-07-25T09:40:05.010000"],["2024-07-25T09:40:06.010000"],["2024-07-25T09:40:07.010000"],["2024-07-25T09:40:08.010000"],["2024-07-25T09:40:09.010000"],["2024-07-25T09:40:10.010000"],["2024-07-25T09:40:11.010000"],["2024-07-25T09:40:12.010000"],["2024-07-25T09:40:13.010000"],["2024-07-25T09:40:14.010000"],["2024-07-25T09:40:15.010000"],["2024-07-25T09:40:16.010000"],["2024-07-25T09:40:17.010000"],["2024-07-25T09:40:18.010000"],["2024-07-25T09:40:19.010000"],["2024-07-25T09:40:20.010000"],["2024-07-25T09:40:21.010000"],["2024-07-25T09:40:22.010000"],["2024-07-25T09:40:23.010000"],["2024-07-25T09:40:24.010000"],["2024-07-25T09:40:25.010000"],["2024-07-25T09:40:26.010000"],["2024-07-25T09:40:27.010000"],["2024-07-25T09:40:28.010000"],["2024-07-25T09:40:29.010000"],["2024-07-25T09:40:30.010000"],["2024-07-25T09:40:31.010000"],["2024-07-25T09:40:32.010000"],["2024-07-25T09:40:33.010000"],["2024-07-25T09:40:34.010000"],["2024-07-25T09:40:35.010000"],["2024-07-25T09:40:36.010000"],["2024-07-25T09:40:37.010000"],["2024-07-25T09:40:38.010000"],["2024-07-25T09:40:39.010000"],["2024-07-25T09:40:40.010000"],["2024-07-25T09:40:41.010000"],["2024-07-25T09:40:42.010000"],["2024-07-25T09:40:43.010000"],["2024-07-25T09:40:44.010000"],["2024-07-25T09:40:45.010000"],["2024-07-25T09:40:46.010000"],["2024-07-25T09:40:47.010000"],["2024-07-25T09:40:48.010000"],["2024-07-25T09:40:49.010000"],["2024-07-25T09:40:50.010000"],["2024-07-25T09:40:51.010000"],["2024-07-25T09:40:52.010000"],["2024-07-25T09:40:53.010000"],["2024-07-25T09:40:54.010000"],["2024-07-25T09:40:55.010000"],["2024-07-25T09:40:56.010000"],["2024-07-25T09:40:57.010000"],["2024-07-25T09:40:58.010000"],["2024-07-25T09:40:59.010000"],["2024-07-25T09:41:00.010000"],["2024-07-25T09:41:01.010000"],["2024-07-25T09:41:02.010000"],["2024-07-25T09:41:03.010000"],["2024-07-25T09:41:04.010000"],["2024-07-25T09:41:05.010000"],["2024-07-25T09:41:06.010000"],["2024-07-25T09:41:07.010000"],["2024-07-25T09:41:08.010000"],["2024-07-25T09:41:09.010000"],["2024-07-25T09:41:10.010000"],["2024-07-25T09:41:11.010000"],["2024-07-25T09:41:12.010000"],["2024-07-25T09:41:13.010000"],["2024-07-25T09:41:14.010000"],["2024-07-25T09:41:15.010000"],["2024-07-25T09:41:16.010000"],["2024-07-25T09:41:17.010000"],["2024-07-25T09:41:18.010000"],["2024-07-25T09:41:19.010000"],["2024-07-25T09:41:20.010000"],["2024-07-25T09:41:21.010000"],["2024-07-25T09:41:22.010000"],["2024-07-25T09:41:23.010000"],["2024-07-25T09:41:24.010000"],["2024-07-25T09:41:25.010000"],["2024-07-25T09:41:26.010000"],["2024-07-25T09:41:27.010000"],["2024-07-25T09:41:28.010000"],["2024-07-25T09:41:29.010000"],["2024-07-25T09:41:30.010000"],["2024-07-25T09:41:31.010000"],["2024-07-25T09:41:32.010000"],["2024-07-25T09:41:33.010000"],["2024-07-25T09:41:34.010000"],["2024-07-25T09:41:35.010000"],["2024-07-25T09:41:36.010000"],["2024-07-25T09:41:37.010000"],["2024-07-25T09:41:38.010000"],["2024-07-25T09:41:39.010000"],["2024-07-25T09:41:40.010000"],["2024-07-25T09:41:41.010000"],["2024-07-25T09:41:42.010000"],["2024-07-25T09:41:43.010000"],["2024-07-25T09:41:44.010000"],["2024-07-25T09:41:45.010000"],["2024-07-25T09:41:46.010000"],["2024-07-25T09:41:47.010000"],["2024-07-25T09:41:48.010000"],["2024-07-25T09:41:49.010000"],["2024-07-25T09:41:50.010000"],["2024-07-25T09:41:51.010000"],["2024-07-25T09:41:52.010000"],["2024-07-25T09:41:53.010000"],["2024-07-25T09:41:54.010000"],["2024-07-25T09:41:55.010000"],["2024-07-25T09:41:56.010000"],["2024-07-25T09:41:57.010000"],["2024-07-25T09:41:58.010000"],["2024-07-25T09:41:59.010000"],["2024-07-25T09:42:00.010000"],["2024-07-25T09:42:01.010000"],["2024-07-25T09:42:02.010000"],["2024-07-25T09:42:03.010000"],["2024-07-25T09:42:04.010000"],["2024-07-25T09:42:05.010000"],["2024-07-25T09:42:06.010000"],["2024-07-25T09:42:07.010000"],["2024-07-25T09:42:08.010000"],["2024-07-25T09:42:09.010000"],["2024-07-25T09:42:10.010000"],["2024-07-25T09:42:11.010000"],["2024-07-25T09:42:12.010000"],["2024-07-25T09:42:13.010000"],["2024-07-25T09:42:14.010000"],["2024-07-25T09:42:15.010000"],["2024-07-25T09:42:16.010000"],["2024-07-25T09:42:17.010000"],["2024-07-25T09:42:18.010000"],["2024-07-25T09:42:19.010000"],["2024-07-25T09:42:20.010000"],["2024-07-25T09:42:21.010000"],["2024-07-25T09:42:22.010000"],["2024-07-25T09:42:23.010000"],["2024-07-25T09:42:24.010000"],["2024-07-25T09:42:25.010000"],["2024-07-25T09:42:26.010000"],["2024-07-25T09:42:27.010000"],["2024-07-25T09:42:28.010000"],["2024-07-25T09:42:29.010000"],["2024-07-25T09:42:30.010000"],["2024-07-25T09:42:31.010000"],["2024-07-25T09:42:32.010000"],["2024-07-25T09:42:33.010000"],["2024-07-25T09:42:34.010000"],["2024-07-25T09:42:35.010000"],["2024-07-25T09:42:36.010000"],["2024-07-25T09:42:37.010000"],["2024-07-25T09:42:38.010000"],["2024-07-25T09:42:39.010000"],["2024-07-25T09:42:40.010000"],["2024-07-25T09:42:41.010000"],["2024-07-25T09:42:42.010000"],["2024-07-25T09:42:43.010000"],["2024-07-25T09:42:44.010000"],["2024-07-25T09:42:45.010000"],["2024-07-25T09:42:46.010000"],["2024-07-25T09:42:47.010000"],["2024-07-25T09:42:48.010000"],["2024-07-25T09:42:49.010000"],["2024-07-25T09:42:50.010000"],["2024-07-25T09:42:51.010000"],["2024-07-25T09:42:52.010000"],["2024-07-25T09:42:53.010000"],["2024-07-25T09:42:54.010000"],["2024-07-25T09:42:55.010000"],["2024-07-25T09:42:56.010000"],["2024-07-25T09:42:57.010000"],["2024-07-25T09:42:58.010000"],["2024-07-25T09:42:59.010000"],["2024-07-25T09:43:00.010000"],["2024-07-25T09:43:01.010000"],["2024-07-25T09:43:02.010000"],["2024-07-25T09:43:03.010000"],["2024-07-25T09:43:04.010000"],["2024-07-25T09:43:05.010000"],["2024-07-25T09:43:06.010000"],["2024-07-25T09:43:07.010000"],["2024-07-25T09:43:08.010000"],["2024-07-25T09:43:09.010000"],["2024-07-25T09:43:10.010000"],["2024-07-25T09:43:11.010000"],["2024-07-25T09:43:12.010000"],["2024-07-25T09:43:13.010000"],["2024-07-25T09:43:14.010000"],["2024-07-25T09:43:15.010000"],["2024-07-25T09:43:16.010000"],["2024-07-25T09:43:17.010000"],["2024-07-25T09:43:18.010000"],["2024-07-25T09:43:19.010000"],["2024-07-25T09:43:20.010000"],["2024-07-25T09:43:21.010000"],["2024-07-25T09:43:22.010000"],["2024-07-25T09:43:23.010000"],["2024-07-25T09:43:24.010000"],["2024-07-25T09:43:25.010000"],["2024-07-25T09:43:26.010000"],["2024-07-25T09:43:27.010000"],["2024-07-25T09:43:28.010000"],["2024-07-25T09:43:29.010000"],["2024-07-25T09:43:30.010000"],["2024-07-25T09:43:31.010000"],["2024-07-25T09:43:32.010000"],["2024-07-25T09:43:33.010000"],["2024-07-25T09:43:34.010000"],["2024-07-25T09:43:35.010000"],["2024-07-25T09:43:36.010000"],["2024-07-25T09:43:37.010000"],["2024-07-25T09:43:38.010000"],["2024-07-25T09:43:39.010000"],["2024-07-25T09:43:40.010000"],["2024-07-25T09:43:41.010000"],["2024-07-25T09:43:42.010000"],["2024-07-25T09:43:43.010000"],["2024-07-25T09:43:44.010000"],["2024-07-25T09:43:45.010000"],["2024-07-25T09:43:46.010000"],["2024-07-25T09:43:47.010000"],["2024-07-25T09:43:48.010000"],["2024-07-25T09:43:49.010000"],["2024-07-25T09:43:50.010000"],["2024-07-25T09:43:51.010000"],["2024-07-25T09:43:52.010000"],["2024-07-25T09:43:53.010000"],["2024-07-25T09:43:54.010000"],["2024-07-25T09:43:55.010000"],["2024-07-25T09:43:56.010000"],["2024-07-25T09:43:57.010000"],["2024-07-25T09:43:58.010000"],["2024-07-25T09:43:59.010000"],["2024-07-25T09:44:00.010000"],["2024-07-25T09:44:01.010000"],["2024-07-25T09:44:02.010000"],["2024-07-25T09:44:03.010000"],["2024-07-25T09:44:04.010000"],["2024-07-25T09:44:05.010000"],["2024-07-25T09:44:06.010000"],["2024-07-25T09:44:07.010000"],["2024-07-25T09:44:08.010000"],["2024-07-25T09:44:09.010000"],["2024-07-25T09:44:10.010000"],["2024-07-25T09:44:11.010000"],["2024-07-25T09:44:12.010000"],["2024-07-25T09:44:13.010000"],["2024-07-25T09:44:14.010000"],["2024-07-25T09:44:15.010000"],["2024-07-25T09:44:16.010000"],["2024-07-25T09:44:17.010000"],["2024-07-25T09:44:18.010000"],["2024-07-25T09:44:19.010000"],["2024-07-25T09:44:20.010000"],["2024-07-25T09:44:21.010000"],["2024-07-25T09:44:22.010000"],["2024-07-25T09:44:23.010000"],["2024-07-25T09:44:24.010000"],["2024-07-25T09:44:25.010000"],["2024-07-25T09:44:26.010000"],["2024-07-25T09:44:27.010000"],["2024-07-25T09:44:28.010000"],["2024-07-25T09:44:29.010000"],["2024-07-25T09:44:30.010000"],["2024-07-25T09:44:31.010000"],["2024-07-25T09:44:32.010000"],["2024-07-25T09:44:33.010000"],["2024-07-25T09:44:34.010000"],["2024-07-25T09:44:35.010000"],["2024-07-25T09:44:36.010000"],["2024-07-25T09:44:37.010000"],["2024-07-25T09:44:38.010000"],["2024-07-25T09:44:39.010000"],["2024-07-25T09:44:40.010000"],["2024-07-25T09:44:41.010000"],["2024-07-25T09:44:42.010000"],["2024-07-25T09:44:43.010000"],["2024-07-25T09:44:44.010000"],["2024-07-25T09:44:45.010000"],["2024-07-25T09:44:46.010000"],["2024-07-25T09:44:47.010000"],["2024-07-25T09:44:48.010000"],["2024-07-25T09:44:49.010000"],["2024-07-25T09:44:50.010000"],["2024-07-25T09:44:51.010000"],["2024-07-25T09:44:52.010000"],["2024-07-25T09:44:53.010000"],["2024-07-25T09:44:54.010000"],["2024-07-25T09:44:55.010000"],["2024-07-25T09:44:56.010000"],["2024-07-25T09:44:57.010000"],["2024-07-25T09:44:58.010000"],["2024-07-25T09:44:59.010000"],["2024-07-25T09:45:00.010000"],["2024-07-25T09:45:01.010000"],["2024-07-25T09:45:02.010000"],["2024-07-25T09:45:03.010000"],["2024-07-25T09:45:04.010000"],["2024-07-25T09:45:05.010000"],["2024-07-25T09:45:06.010000"],["2024-07-25T09:45:07.010000"],["2024-07-25T09:45:08.010000"],["2024-07-25T09:45:09.010000"],["2024-07-25T09:45:10.010000"],["2024-07-25T09:45:11.010000"],["2024-07-25T09:45:12.010000"],["2024-07-25T09:45:13.010000"],["2024-07-25T09:45:14.010000"],["2024-07-25T09:45:15.010000"],["2024-07-25T09:45:16.010000"],["2024-07-25T09:45:17.010000"],["2024-07-25T09:45:18.010000"],["2024-07-25T09:45:19.010000"],["2024-07-25T09:45:20.010000"],["2024-07-25T09:45:21.010000"],["2024-07-25T09:45:22.010000"],["2024-07-25T09:45:23.010000"],["2024-07-25T09:45:24.010000"],["2024-07-25T09:45:25.010000"],["2024-07-25T09:45:26.010000"],["2024-07-25T09:45:27.010000"],["2024-07-25T09:45:28.010000"],["2024-07-25T09:45:29.010000"],["2024-07-25T09:45:30.010000"],["2024-07-25T09:45:31.010000"],["2024-07-25T09:45:32.010000"],["2024-07-25T09:45:33.010000"],["2024-07-25T09:45:34.010000"],["2024-07-25T09:45:35.010000"],["2024-07-25T09:45:36.010000"],["2024-07-25T09:45:37.010000"],["2024-07-25T09:45:38.010000"],["2024-07-25T09:45:39.010000"],["2024-07-25T09:45:40.010000"],["2024-07-25T09:45:41.010000"],["2024-07-25T09:45:42.010000"],["2024-07-25T09:45:43.010000"],["2024-07-25T09:45:44.010000"],["2024-07-25T09:45:45.010000"],["2024-07-25T09:45:46.010000"],["2024-07-25T09:45:47.010000"],["2024-07-25T09:45:48.010000"],["2024-07-25T09:45:49.010000"],["2024-07-25T09:45:50.010000"],["2024-07-25T09:45:51.010000"],["2024-07-25T09:45:52.010000"],["2024-07-25T09:45:53.010000"],["2024-07-25T09:45:54.010000"],["2024-07-25T09:45:55.010000"],["2024-07-25T09:45:56.010000"],["2024-07-25T09:45:57.010000"],["2024-07-25T09:45:58.010000"],["2024-07-25T09:45:59.010000"],["2024-07-25T09:46:00.010000"],["2024-07-25T09:46:01.010000"],["2024-07-25T09:46:02.010000"],["2024-07-25T09:46:03.010000"],["2024-07-25T09:46:04.010000"],["2024-07-25T09:46:05.010000"],["2024-07-25T09:46:06.010000"],["2024-07-25T09:46:07.010000"],["2024-07-25T09:46:08.010000"],["2024-07-25T09:46:09.010000"],["2024-07-25T09:46:10.010000"],["2024-07-25T09:46:11.010000"],["2024-07-25T09:46:12.010000"],["2024-07-25T09:46:13.010000"],["2024-07-25T09:46:14.010000"],["2024-07-25T09:46:15.010000"],["2024-07-25T09:46:16.010000"],["2024-07-25T09:46:17.010000"],["2024-07-25T09:46:18.010000"],["2024-07-25T09:46:19.010000"],["2024-07-25T09:46:20.010000"],["2024-07-25T09:46:21.010000"],["2024-07-25T09:46:22.010000"],["2024-07-25T09:46:23.010000"],["2024-07-25T09:46:24.010000"],["2024-07-25T09:46:25.010000"],["2024-07-25T09:46:26.010000"],["2024-07-25T09:46:27.010000"],["2024-07-25T09:46:28.010000"],["2024-07-25T09:46:29.010000"],["2024-07-25T09:46:30.010000"],["2024-07-25T09:46:31.010000"],["2024-07-25T09:46:32.010000"],["2024-07-25T09:46:33.010000"],["2024-07-25T09:46:34.010000"],["2024-07-25T09:46:35.010000"],["2024-07-25T09:46:36.010000"],["2024-07-25T09:46:37.010000"],["2024-07-25T09:46:38.010000"],["2024-07-25T09:46:39.010000"],["2024-07-25T09:46:40.010000"],["2024-07-25T09:46:41.010000"],["2024-07-25T09:46:42.010000"],["2024-07-25T09:46:43.010000"],["2024-07-25T09:46:44.010000"],["2024-07-25T09:46:45.010000"],["2024-07-25T09:46:46.010000"],["2024-07-25T09:46:47.010000"],["2024-07-25T09:46:48.010000"],["2024-07-25T09:46:49.010000"],["2024-07-25T09:46:50.010000"],["2024-07-25T09:46:51.010000"],["2024-07-25T09:46:52.010000"],["2024-07-25T09:46:53.010000"],["2024-07-25T09:46:54.010000"],["2024-07-25T09:46:55.010000"],["2024-07-25T09:46:56.010000"],["2024-07-25T09:46:57.010000"],["2024-07-25T09:46:58.010000"],["2024-07-25T09:46:59.010000"],["2024-07-25T09:47:00.010000"],["2024-07-25T09:47:01.010000"],["2024-07-25T09:47:02.010000"],["2024-07-25T09:47:03.010000"],["2024-07-25T09:47:04.010000"],["2024-07-25T09:47:05.010000"],["2024-07-25T09:47:06.010000"],["2024-07-25T09:47:07.010000"],["2024-07-25T09:47:08.010000"],["2024-07-25T09:47:09.010000"],["2024-07-25T09:47:10.010000"],["2024-07-25T09:47:11.010000"],["2024-07-25T09:47:12.010000"],["2024-07-25T09:47:13.010000"],["2024-07-25T09:47:14.010000"],["2024-07-25T09:47:15.010000"],["2024-07-25T09:47:16.010000"],["2024-07-25T09:47:17.010000"],["2024-07-25T09:47:18.010000"],["2024-07-25T09:47:19.010000"],["2024-07-25T09:47:20.010000"],["2024-07-25T09:47:21.010000"],["2024-07-25T09:47:22.010000"],["2024-07-25T09:47:23.010000"],["2024-07-25T09:47:24.010000"],["2024-07-25T09:47:25.010000"],["2024-07-25T09:47:26.010000"],["2024-07-25T09:47:27.010000"],["2024-07-25T09:47:28.010000"],["2024-07-25T09:47:29.010000"],["2024-07-25T09:47:30.010000"],["2024-07-25T09:47:31.010000"],["2024-07-25T09:47:32.010000"],["2024-07-25T09:47:33.010000"],["2024-07-25T09:47:34.010000"],["2024-07-25T09:47:35.010000"],["2024-07-25T09:47:36.010000"],["2024-07-25T09:47:37.010000"],["2024-07-25T09:47:38.010000"],["2024-07-25T09:47:39.010000"],["2024-07-25T09:47:40.010000"],["2024-07-25T09:47:41.010000"],["2024-07-25T09:47:42.010000"],["2024-07-25T09:47:43.010000"],["2024-07-25T09:47:44.010000"],["2024-07-25T09:47:45.010000"],["2024-07-25T09:47:46.010000"],["2024-07-25T09:47:47.010000"],["2024-07-25T09:47:48.010000"],["2024-07-25T09:47:49.010000"],["2024-07-25T09:47:50.010000"],["2024-07-25T09:47:51.010000"],["2024-07-25T09:47:52.010000"],["2024-07-25T09:47:53.010000"],["2024-07-25T09:47:54.010000"],["2024-07-25T09:47:55.010000"],["2024-07-25T09:47:56.010000"],["2024-07-25T09:47:57.010000"],["2024-07-25T09:47:58.010000"],["2024-07-25T09:47:59.010000"],["2024-07-25T09:48:00.010000"],["2024-07-25T09:48:01.010000"],["2024-07-25T09:48:02.010000"],["2024-07-25T09:48:03.010000"],["2024-07-25T09:48:04.010000"],["2024-07-25T09:48:05.010000"],["2024-07-25T09:48:06.010000"],["2024-07-25T09:48:07.010000"],["2024-07-25T09:48:08.010000"],["2024-07-25T09:48:09.010000"],["2024-07-25T09:48:10.010000"],["2024-07-25T09:48:11.010000"],["2024-07-25T09:48:12.010000"],["2024-07-25T09:48:13.010000"],["2024-07-25T09:48:14.010000"],["2024-07-25T09:48:15.010000"],["2024-07-25T09:48:16.010000"],["2024-07-25T09:48:17.010000"],["2024-07-25T09:48:18.010000"],["2024-07-25T09:48:19.010000"],["2024-07-25T09:48:20.010000"],["2024-07-25T09:48:21.010000"],["2024-07-25T09:48:22.010000"],["2024-07-25T09:48:23.010000"],["2024-07-25T09:48:24.010000"],["2024-07-25T09:48:25.010000"],["2024-07-25T09:48:26.010000"],["2024-07-25T09:48:27.010000"],["2024-07-25T09:48:28.010000"],["2024-07-25T09:48:29.010000"],["2024-07-25T09:48:30.010000"],["2024-07-25T09:48:31.010000"],["2024-07-25T09:48:32.010000"],["2024-07-25T09:48:33.010000"],["2024-07-25T09:48:34.010000"],["2024-07-25T09:48:35.010000"],["2024-07-25T09:48:36.010000"],["2024-07-25T09:48:37.010000"],["2024-07-25T09:48:38.010000"],["2024-07-25T09:48:39.010000"],["2024-07-25T09:48:40.010000"],["2024-07-25T09:48:41.010000"],["2024-07-25T09:48:42.010000"],["2024-07-25T09:48:43.010000"],["2024-07-25T09:48:44.010000"],["2024-07-25T09:48:45.010000"],["2024-07-25T09:48:46.010000"],["2024-07-25T09:48:47.010000"],["2024-07-25T09:48:48.010000"],["2024-07-25T09:48:49.010000"],["2024-07-25T09:48:50.010000"],["2024-07-25T09:48:51.010000"],["2024-07-25T09:48:52.010000"],["2024-07-25T09:48:53.010000"],["2024-07-25T09:48:54.010000"],["2024-07-25T09:48:55.010000"],["2024-07-25T09:48:56.010000"],["2024-07-25T09:48:57.010000"],["2024-07-25T09:48:58.010000"],["2024-07-25T09:48:59.010000"],["2024-07-25T09:49:00.010000"],["2024-07-25T09:49:01.010000"],["2024-07-25T09:49:02.010000"],["2024-07-25T09:49:03.010000"],["2024-07-25T09:49:04.010000"],["2024-07-25T09:49:05.010000"],["2024-07-25T09:49:06.010000"],["2024-07-25T09:49:07.010000"],["2024-07-25T09:49:08.010000"],["2024-07-25T09:49:09.010000"],["2024-07-25T09:49:10.010000"],["2024-07-25T09:49:11.010000"],["2024-07-25T09:49:12.010000"],["2024-07-25T09:49:13.010000"],["2024-07-25T09:49:14.010000"],["2024-07-25T09:49:15.010000"],["2024-07-25T09:49:16.010000"],["2024-07-25T09:49:17.010000"],["2024-07-25T09:49:18.010000"],["2024-07-25T09:49:19.010000"],["2024-07-25T09:49:20.010000"],["2024-07-25T09:49:21.010000"],["2024-07-25T09:49:22.010000"],["2024-07-25T09:49:23.010000"],["2024-07-25T09:49:24.010000"],["2024-07-25T09:49:25.010000"],["2024-07-25T09:49:26.010000"],["2024-07-25T09:49:27.010000"],["2024-07-25T09:49:28.010000"],["2024-07-25T09:49:29.010000"],["2024-07-25T09:49:30.010000"],["2024-07-25T09:49:31.010000"],["2024-07-25T09:49:32.010000"],["2024-07-25T09:49:33.010000"],["2024-07-25T09:49:34.010000"],["2024-07-25T09:49:35.010000"],["2024-07-25T09:49:36.010000"],["2024-07-25T09:49:37.010000"],["2024-07-25T09:49:38.010000"],["2024-07-25T09:49:39.010000"],["2024-07-25T09:49:40.010000"],["2024-07-25T09:49:41.010000"],["2024-07-25T09:49:42.010000"],["2024-07-25T09:49:43.010000"],["2024-07-25T09:49:44.010000"],["2024-07-25T09:49:45.010000"],["2024-07-25T09:49:46.010000"],["2024-07-25T09:49:47.010000"],["2024-07-25T09:49:48.010000"],["2024-07-25T09:49:49.010000"],["2024-07-25T09:49:50.010000"],["2024-07-25T09:49:51.010000"],["2024-07-25T09:49:52.010000"],["2024-07-25T09:49:53.010000"],["2024-07-25T09:49:54.010000"],["2024-07-25T09:49:55.010000"],["2024-07-25T09:49:56.010000"],["2024-07-25T09:49:57.010000"],["2024-07-25T09:49:58.010000"],["2024-07-25T09:49:59.010000"],["2024-07-25T09:50:00.010000"],["2024-07-25T09:50:01.010000"],["2024-07-25T09:50:02.010000"],["2024-07-25T09:50:03.010000"],["2024-07-25T09:50:04.010000"],["2024-07-25T09:50:05.010000"],["2024-07-25T09:50:06.010000"],["2024-07-25T09:50:07.010000"],["2024-07-25T09:50:08.010000"],["2024-07-25T09:50:09.010000"],["2024-07-25T09:50:10.010000"],["2024-07-25T09:50:11.010000"],["2024-07-25T09:50:12.010000"],["2024-07-25T09:50:13.010000"],["2024-07-25T09:50:14.010000"],["2024-07-25T09:50:15.010000"],["2024-07-25T09:50:16.010000"],["2024-07-25T09:50:17.010000"],["2024-07-25T09:50:18.010000"],["2024-07-25T09:50:19.010000"],["2024-07-25T09:50:20.010000"],["2024-07-25T09:50:21.010000"],["2024-07-25T09:50:22.010000"],["2024-07-25T09:50:23.010000"],["2024-07-25T09:50:24.010000"],["2024-07-25T09:50:25.010000"],["2024-07-25T09:50:26.010000"],["2024-07-25T09:50:27.010000"],["2024-07-25T09:50:28.010000"],["2024-07-25T09:50:29.010000"],["2024-07-25T09:50:30.010000"],["2024-07-25T09:50:31.010000"],["2024-07-25T09:50:32.010000"],["2024-07-25T09:50:33.010000"],["2024-07-25T09:50:34.010000"],["2024-07-25T09:50:35.010000"],["2024-07-25T09:50:36.010000"],["2024-07-25T09:50:37.010000"],["2024-07-25T09:50:38.010000"],["2024-07-25T09:50:39.010000"],["2024-07-25T09:50:40.010000"],["2024-07-25T09:50:41.010000"],["2024-07-25T09:50:42.010000"],["2024-07-25T09:50:43.010000"],["2024-07-25T09:50:44.010000"],["2024-07-25T09:50:45.010000"],["2024-07-25T09:50:46.010000"],["2024-07-25T09:50:47.010000"],["2024-07-25T09:50:48.010000"],["2024-07-25T09:50:49.010000"],["2024-07-25T09:50:50.010000"],["2024-07-25T09:50:51.010000"],["2024-07-25T09:50:52.010000"],["2024-07-25T09:50:53.010000"],["2024-07-25T09:50:54.010000"],["2024-07-25T09:50:55.010000"],["2024-07-25T09:50:56.010000"],["2024-07-25T09:50:57.010000"],["2024-07-25T09:50:58.010000"],["2024-07-25T09:50:59.010000"],["2024-07-25T09:51:00.010000"],["2024-07-25T09:51:01.010000"],["2024-07-25T09:51:02.010000"],["2024-07-25T09:51:03.010000"],["2024-07-25T09:51:04.010000"],["2024-07-25T09:51:05.010000"],["2024-07-25T09:51:06.010000"],["2024-07-25T09:51:07.010000"],["2024-07-25T09:51:08.010000"],["2024-07-25T09:51:09.010000"],["2024-07-25T09:51:10.010000"],["2024-07-25T09:51:11.010000"],["2024-07-25T09:51:12.010000"],["2024-07-25T09:51:13.010000"],["2024-07-25T09:51:14.010000"],["2024-07-25T09:51:15.010000"],["2024-07-25T09:51:16.010000"],["2024-07-25T09:51:17.010000"],["2024-07-25T09:51:18.010000"],["2024-07-25T09:51:19.010000"],["2024-07-25T09:51:20.010000"],["2024-07-25T09:51:21.010000"],["2024-07-25T09:51:22.010000"],["2024-07-25T09:51:23.010000"],["2024-07-25T09:51:24.010000"],["2024-07-25T09:51:25.010000"],["2024-07-25T09:51:26.010000"],["2024-07-25T09:51:27.010000"],["2024-07-25T09:51:28.010000"],["2024-07-25T09:51:29.010000"],["2024-07-25T09:51:30.010000"],["2024-07-25T09:51:31.010000"],["2024-07-25T09:51:32.010000"],["2024-07-25T09:51:33.010000"],["2024-07-25T09:51:34.010000"],["2024-07-25T09:51:35.010000"],["2024-07-25T09:51:36.010000"],["2024-07-25T09:51:37.010000"],["2024-07-25T09:51:38.010000"],["2024-07-25T09:51:39.010000"],["2024-07-25T09:51:40.010000"],["2024-07-25T09:51:41.010000"],["2024-07-25T09:51:42.010000"],["2024-07-25T09:51:43.010000"],["2024-07-25T09:51:44.010000"],["2024-07-25T09:51:45.010000"],["2024-07-25T09:51:46.010000"],["2024-07-25T09:51:47.010000"],["2024-07-25T09:51:48.010000"],["2024-07-25T09:51:49.010000"],["2024-07-25T09:51:50.010000"],["2024-07-25T09:51:51.010000"],["2024-07-25T09:51:52.010000"],["2024-07-25T09:51:53.010000"],["2024-07-25T09:51:54.010000"],["2024-07-25T09:51:55.010000"],["2024-07-25T09:51:56.010000"],["2024-07-25T09:51:57.010000"],["2024-07-25T09:51:58.010000"],["2024-07-25T09:51:59.010000"],["2024-07-25T09:52:00.010000"],["2024-07-25T09:52:01.010000"],["2024-07-25T09:52:02.010000"],["2024-07-25T09:52:03.010000"],["2024-07-25T09:52:04.010000"],["2024-07-25T09:52:05.010000"],["2024-07-25T09:52:06.010000"],["2024-07-25T09:52:07.010000"],["2024-07-25T09:52:08.010000"],["2024-07-25T09:52:09.010000"],["2024-07-25T09:52:10.010000"],["2024-07-25T09:52:11.010000"],["2024-07-25T09:52:12.010000"],["2024-07-25T09:52:13.010000"],["2024-07-25T09:52:14.010000"],["2024-07-25T09:52:15.010000"],["2024-07-25T09:52:16.010000"],["2024-07-25T09:52:17.010000"],["2024-07-25T09:52:18.010000"],["2024-07-25T09:52:19.010000"],["2024-07-25T09:52:20.010000"],["2024-07-25T09:52:21.010000"],["2024-07-25T09:52:22.010000"],["2024-07-25T09:52:23.010000"],["2024-07-25T09:52:24.010000"],["2024-07-25T09:52:25.010000"],["2024-07-25T09:52:26.010000"],["2024-07-25T09:52:27.010000"],["2024-07-25T09:52:28.010000"],["2024-07-25T09:52:29.010000"],["2024-07-25T09:52:30.010000"],["2024-07-25T09:52:31.010000"],["2024-07-25T09:52:32.010000"],["2024-07-25T09:52:33.010000"],["2024-07-25T09:52:34.010000"],["2024-07-25T09:52:35.010000"],["2024-07-25T09:52:36.010000"],["2024-07-25T09:52:37.010000"],["2024-07-25T09:52:38.010000"],["2024-07-25T09:52:39.010000"],["2024-07-25T09:52:40.010000"],["2024-07-25T09:52:41.010000"],["2024-07-25T09:52:42.010000"],["2024-07-25T09:52:43.010000"],["2024-07-25T09:52:44.010000"],["2024-07-25T09:52:45.010000"],["2024-07-25T09:52:46.010000"],["2024-07-25T09:52:47.010000"],["2024-07-25T09:52:48.010000"],["2024-07-25T09:52:49.010000"],["2024-07-25T09:52:50.010000"],["2024-07-25T09:52:51.010000"],["2024-07-25T09:52:52.010000"],["2024-07-25T09:52:53.010000"],["2024-07-25T09:52:54.010000"],["2024-07-25T09:52:55.010000"],["2024-07-25T09:52:56.010000"],["2024-07-25T09:52:57.010000"],["2024-07-25T09:52:58.010000"],["2024-07-25T09:52:59.010000"],["2024-07-25T09:53:00.010000"],["2024-07-25T09:53:01.010000"],["2024-07-25T09:53:02.010000"],["2024-07-25T09:53:03.010000"],["2024-07-25T09:53:04.010000"],["2024-07-25T09:53:05.010000"],["2024-07-25T09:53:06.010000"],["2024-07-25T09:53:07.010000"],["2024-07-25T09:53:08.010000"],["2024-07-25T09:53:09.010000"],["2024-07-25T09:53:10.010000"],["2024-07-25T09:53:11.010000"],["2024-07-25T09:53:12.010000"],["2024-07-25T09:53:13.010000"],["2024-07-25T09:53:14.010000"],["2024-07-25T09:53:15.010000"],["2024-07-25T09:53:16.010000"],["2024-07-25T09:53:17.010000"],["2024-07-25T09:53:18.010000"],["2024-07-25T09:53:19.010000"],["2024-07-25T09:53:20.010000"],["2024-07-25T09:53:21.010000"],["2024-07-25T09:53:22.010000"],["2024-07-25T09:53:23.010000"],["2024-07-25T09:53:24.010000"],["2024-07-25T09:53:25.010000"],["2024-07-25T09:53:26.010000"],["2024-07-25T09:53:27.010000"],["2024-07-25T09:53:28.010000"],["2024-07-25T09:53:29.010000"],["2024-07-25T09:53:30.010000"],["2024-07-25T09:53:31.010000"],["2024-07-25T09:53:32.010000"],["2024-07-25T09:53:33.010000"],["2024-07-25T09:53:34.010000"],["2024-07-25T09:53:35.010000"],["2024-07-25T09:53:36.010000"],["2024-07-25T09:53:37.010000"],["2024-07-25T09:53:38.010000"],["2024-07-25T09:53:39.010000"],["2024-07-25T09:53:40.010000"],["2024-07-25T09:53:41.010000"],["2024-07-25T09:53:42.010000"],["2024-07-25T09:53:43.010000"],["2024-07-25T09:53:44.010000"],["2024-07-25T09:53:45.010000"],["2024-07-25T09:53:46.010000"],["2024-07-25T09:53:47.010000"],["2024-07-25T09:53:48.010000"],["2024-07-25T09:53:49.010000"],["2024-07-25T09:53:50.010000"],["2024-07-25T09:53:51.010000"],["2024-07-25T09:53:52.010000"],["2024-07-25T09:53:53.010000"],["2024-07-25T09:53:54.010000"],["2024-07-25T09:53:55.010000"],["2024-07-25T09:53:56.010000"],["2024-07-25T09:53:57.010000"],["2024-07-25T09:53:58.010000"],["2024-07-25T09:53:59.010000"],["2024-07-25T09:54:00.010000"],["2024-07-25T09:54:01.010000"],["2024-07-25T09:54:02.010000"],["2024-07-25T09:54:03.010000"],["2024-07-25T09:54:04.010000"],["2024-07-25T09:54:05.010000"],["2024-07-25T09:54:06.010000"],["2024-07-25T09:54:07.010000"],["2024-07-25T09:54:08.010000"],["2024-07-25T09:54:09.010000"],["2024-07-25T09:54:10.010000"],["2024-07-25T09:54:11.010000"],["2024-07-25T09:54:12.010000"],["2024-07-25T09:54:13.010000"],["2024-07-25T09:54:14.010000"],["2024-07-25T09:54:15.010000"],["2024-07-25T09:54:16.010000"],["2024-07-25T09:54:17.010000"],["2024-07-25T09:54:18.010000"],["2024-07-25T09:54:19.010000"],["2024-07-25T09:54:20.010000"],["2024-07-25T09:54:21.010000"],["2024-07-25T09:54:22.010000"],["2024-07-25T09:54:23.010000"],["2024-07-25T09:54:24.010000"],["2024-07-25T09:54:25.010000"],["2024-07-25T09:54:26.010000"],["2024-07-25T09:54:27.010000"],["2024-07-25T09:54:28.010000"],["2024-07-25T09:54:29.010000"],["2024-07-25T09:54:30.010000"],["2024-07-25T09:54:31.010000"],["2024-07-25T09:54:32.010000"],["2024-07-25T09:54:33.010000"],["2024-07-25T09:54:34.010000"],["2024-07-25T09:54:35.010000"],["2024-07-25T09:54:36.010000"],["2024-07-25T09:54:37.010000"],["2024-07-25T09:54:38.010000"],["2024-07-25T09:54:39.010000"],["2024-07-25T09:54:40.010000"],["2024-07-25T09:54:41.010000"],["2024-07-25T09:54:42.010000"],["2024-07-25T09:54:43.010000"],["2024-07-25T09:54:44.010000"],["2024-07-25T09:54:45.010000"],["2024-07-25T09:54:46.010000"],["2024-07-25T09:54:47.010000"],["2024-07-25T09:54:48.010000"],["2024-07-25T09:54:49.010000"],["2024-07-25T09:54:50.010000"],["2024-07-25T09:54:51.010000"],["2024-07-25T09:54:52.010000"],["2024-07-25T09:54:53.010000"],["2024-07-25T09:54:54.010000"],["2024-07-25T09:54:55.010000"],["2024-07-25T09:54:56.010000"],["2024-07-25T09:54:57.010000"],["2024-07-25T09:54:58.010000"],["2024-07-25T09:54:59.010000"],["2024-07-25T09:55:00.010000"],["2024-07-25T09:55:01.010000"],["2024-07-25T09:55:02.010000"],["2024-07-25T09:55:03.010000"],["2024-07-25T09:55:04.010000"],["2024-07-25T09:55:05.010000"],["2024-07-25T09:55:06.010000"],["2024-07-25T09:55:07.010000"],["2024-07-25T09:55:08.010000"],["2024-07-25T09:55:09.010000"],["2024-07-25T09:55:10.010000"],["2024-07-25T09:55:11.010000"],["2024-07-25T09:55:12.010000"],["2024-07-25T09:55:13.010000"],["2024-07-25T09:55:14.010000"],["2024-07-25T09:55:15.010000"],["2024-07-25T09:55:16.010000"],["2024-07-25T09:55:17.010000"],["2024-07-25T09:55:18.010000"],["2024-07-25T09:55:19.010000"],["2024-07-25T09:55:20.010000"],["2024-07-25T09:55:21.010000"],["2024-07-25T09:55:22.010000"],["2024-07-25T09:55:23.010000"],["2024-07-25T09:55:24.010000"],["2024-07-25T09:55:25.010000"],["2024-07-25T09:55:26.010000"],["2024-07-25T09:55:27.010000"],["2024-07-25T09:55:28.010000"],["2024-07-25T09:55:29.010000"],["2024-07-25T09:55:30.010000"],["2024-07-25T09:55:31.010000"],["2024-07-25T09:55:32.010000"],["2024-07-25T09:55:33.010000"],["2024-07-25T09:55:34.010000"],["2024-07-25T09:55:35.010000"],["2024-07-25T09:55:36.010000"],["2024-07-25T09:55:37.010000"],["2024-07-25T09:55:38.010000"],["2024-07-25T09:55:39.010000"],["2024-07-25T09:55:40.010000"],["2024-07-25T09:55:41.010000"],["2024-07-25T09:55:42.010000"],["2024-07-25T09:55:43.010000"],["2024-07-25T09:55:44.010000"],["2024-07-25T09:55:45.010000"],["2024-07-25T09:55:46.010000"],["2024-07-25T09:55:47.010000"],["2024-07-25T09:55:48.010000"],["2024-07-25T09:55:49.010000"],["2024-07-25T09:55:50.010000"],["2024-07-25T09:55:51.010000"],["2024-07-25T09:55:52.010000"],["2024-07-25T09:55:53.010000"],["2024-07-25T09:55:54.010000"],["2024-07-25T09:55:55.010000"],["2024-07-25T09:55:56.010000"],["2024-07-25T09:55:57.010000"],["2024-07-25T09:55:58.010000"],["2024-07-25T09:55:59.010000"],["2024-07-25T09:56:00.010000"],["2024-07-25T09:56:01.010000"],["2024-07-25T09:56:02.010000"],["2024-07-25T09:56:03.010000"],["2024-07-25T09:56:04.010000"],["2024-07-25T09:56:05.010000"],["2024-07-25T09:56:06.010000"],["2024-07-25T09:56:07.010000"],["2024-07-25T09:56:08.010000"],["2024-07-25T09:56:09.010000"],["2024-07-25T09:56:10.010000"],["2024-07-25T09:56:11.010000"],["2024-07-25T09:56:12.010000"],["2024-07-25T09:56:13.010000"],["2024-07-25T09:56:14.010000"],["2024-07-25T09:56:15.010000"],["2024-07-25T09:56:16.010000"],["2024-07-25T09:56:17.010000"],["2024-07-25T09:56:18.010000"],["2024-07-25T09:56:19.010000"],["2024-07-25T09:56:20.010000"],["2024-07-25T09:56:21.010000"],["2024-07-25T09:56:22.010000"],["2024-07-25T09:56:23.010000"],["2024-07-25T09:56:24.010000"],["2024-07-25T09:56:25.010000"],["2024-07-25T09:56:26.010000"],["2024-07-25T09:56:27.010000"],["2024-07-25T09:56:28.010000"],["2024-07-25T09:56:29.010000"],["2024-07-25T09:56:30.010000"],["2024-07-25T09:56:31.010000"],["2024-07-25T09:56:32.010000"],["2024-07-25T09:56:33.010000"],["2024-07-25T09:56:34.010000"],["2024-07-25T09:56:35.010000"],["2024-07-25T09:56:36.010000"],["2024-07-25T09:56:37.010000"],["2024-07-25T09:56:38.010000"],["2024-07-25T09:56:39.010000"],["2024-07-25T09:56:40.010000"],["2024-07-25T09:56:41.010000"],["2024-07-25T09:56:42.010000"],["2024-07-25T09:56:43.010000"],["2024-07-25T09:56:44.010000"],["2024-07-25T09:56:45.010000"],["2024-07-25T09:56:46.010000"],["2024-07-25T09:56:47.010000"],["2024-07-25T09:56:48.010000"],["2024-07-25T09:56:49.010000"],["2024-07-25T09:56:50.010000"],["2024-07-25T09:56:51.010000"],["2024-07-25T09:56:52.010000"],["2024-07-25T09:56:53.010000"],["2024-07-25T09:56:54.010000"],["2024-07-25T09:56:55.010000"],["2024-07-25T09:56:56.010000"],["2024-07-25T09:56:57.010000"],["2024-07-25T09:56:58.010000"],["2024-07-25T09:56:59.010000"],["2024-07-25T09:57:00.010000"],["2024-07-25T09:57:01.010000"],["2024-07-25T09:57:02.010000"],["2024-07-25T09:57:03.010000"],["2024-07-25T09:57:04.010000"],["2024-07-25T09:57:05.010000"],["2024-07-25T09:57:06.010000"],["2024-07-25T09:57:07.010000"],["2024-07-25T09:57:08.010000"],["2024-07-25T09:57:09.010000"],["2024-07-25T09:57:10.010000"],["2024-07-25T09:57:11.010000"],["2024-07-25T09:57:12.010000"],["2024-07-25T09:57:13.010000"],["2024-07-25T09:57:14.010000"],["2024-07-25T09:57:15.010000"],["2024-07-25T09:57:16.010000"],["2024-07-25T09:57:17.010000"],["2024-07-25T09:57:18.010000"],["2024-07-25T09:57:19.010000"],["2024-07-25T09:57:20.010000"],["2024-07-25T09:57:21.010000"],["2024-07-25T09:57:22.010000"],["2024-07-25T09:57:23.010000"],["2024-07-25T09:57:24.010000"],["2024-07-25T09:57:25.010000"],["2024-07-25T09:57:26.010000"],["2024-07-25T09:57:27.010000"],["2024-07-25T09:57:28.010000"],["2024-07-25T09:57:29.010000"],["2024-07-25T09:57:30.010000"],["2024-07-25T09:57:31.010000"],["2024-07-25T09:57:32.010000"],["2024-07-25T09:57:33.010000"],["2024-07-25T09:57:34.010000"],["2024-07-25T09:57:35.010000"],["2024-07-25T09:57:36.010000"],["2024-07-25T09:57:37.010000"],["2024-07-25T09:57:38.010000"],["2024-07-25T09:57:39.010000"],["2024-07-25T09:57:40.010000"],["2024-07-25T09:57:41.010000"],["2024-07-25T09:57:42.010000"],["2024-07-25T09:57:43.010000"],["2024-07-25T09:57:44.010000"],["2024-07-25T09:57:45.010000"],["2024-07-25T09:57:46.010000"],["2024-07-25T09:57:47.010000"],["2024-07-25T09:57:48.010000"],["2024-07-25T09:57:49.010000"],["2024-07-25T09:57:50.010000"],["2024-07-25T09:57:51.010000"],["2024-07-25T09:57:52.010000"],["2024-07-25T09:57:53.010000"],["2024-07-25T09:57:54.010000"],["2024-07-25T09:57:55.010000"],["2024-07-25T09:57:56.010000"],["2024-07-25T09:57:57.010000"],["2024-07-25T09:57:58.010000"],["2024-07-25T09:57:59.010000"],["2024-07-25T09:58:00.010000"],["2024-07-25T09:58:01.010000"],["2024-07-25T09:58:02.010000"],["2024-07-25T09:58:03.010000"],["2024-07-25T09:58:04.010000"],["2024-07-25T09:58:05.010000"],["2024-07-25T09:58:06.010000"],["2024-07-25T09:58:07.010000"],["2024-07-25T09:58:08.010000"],["2024-07-25T09:58:09.010000"],["2024-07-25T09:58:10.010000"],["2024-07-25T09:58:11.010000"],["2024-07-25T09:58:12.010000"],["2024-07-25T09:58:13.010000"],["2024-07-25T09:58:14.010000"],["2024-07-25T09:58:15.010000"],["2024-07-25T09:58:16.010000"],["2024-07-25T09:58:17.010000"],["2024-07-25T09:58:18.010000"],["2024-07-25T09:58:19.010000"],["2024-07-25T09:58:20.010000"],["2024-07-25T09:58:21.010000"],["2024-07-25T09:58:22.010000"],["2024-07-25T09:58:23.010000"],["2024-07-25T09:58:24.010000"],["2024-07-25T09:58:25.010000"],["2024-07-25T09:58:26.010000"],["2024-07-25T09:58:27.010000"],["2024-07-25T09:58:28.010000"],["2024-07-25T09:58:29.010000"],["2024-07-25T09:58:30.010000"],["2024-07-25T09:58:31.010000"],["2024-07-25T09:58:32.010000"],["2024-07-25T09:58:33.010000"],["2024-07-25T09:58:34.010000"],["2024-07-25T09:58:35.010000"],["2024-07-25T09:58:36.010000"],["2024-07-25T09:58:37.010000"],["2024-07-25T09:58:38.010000"],["2024-07-25T09:58:39.010000"],["2024-07-25T09:58:40.010000"],["2024-07-25T09:58:41.010000"],["2024-07-25T09:58:42.010000"],["2024-07-25T09:58:43.010000"],["2024-07-25T09:58:44.010000"],["2024-07-25T09:58:45.010000"],["2024-07-25T09:58:46.010000"],["2024-07-25T09:58:47.010000"],["2024-07-25T09:58:48.010000"],["2024-07-25T09:58:49.010000"],["2024-07-25T09:58:50.010000"],["2024-07-25T09:58:51.010000"],["2024-07-25T09:58:52.010000"],["2024-07-25T09:58:53.010000"],["2024-07-25T09:58:54.010000"],["2024-07-25T09:58:55.010000"],["2024-07-25T09:58:56.010000"],["2024-07-25T09:58:57.010000"],["2024-07-25T09:58:58.010000"],["2024-07-25T09:58:59.010000"],["2024-07-25T09:59:00.010000"],["2024-07-25T09:59:01.010000"],["2024-07-25T09:59:02.010000"],["2024-07-25T09:59:03.010000"],["2024-07-25T09:59:04.010000"],["2024-07-25T09:59:05.010000"],["2024-07-25T09:59:06.010000"],["2024-07-25T09:59:07.010000"],["2024-07-25T09:59:08.010000"],["2024-07-25T09:59:09.010000"],["2024-07-25T09:59:10.010000"],["2024-07-25T09:59:11.010000"],["2024-07-25T09:59:12.010000"],["2024-07-25T09:59:13.010000"],["2024-07-25T09:59:14.010000"],["2024-07-25T09:59:15.010000"],["2024-07-25T09:59:16.010000"],["2024-07-25T09:59:17.010000"],["2024-07-25T09:59:18.010000"],["2024-07-25T09:59:19.010000"],["2024-07-25T09:59:20.010000"],["2024-07-25T09:59:21.010000"],["2024-07-25T09:59:22.010000"],["2024-07-25T09:59:23.010000"],["2024-07-25T09:59:24.010000"],["2024-07-25T09:59:25.010000"],["2024-07-25T09:59:26.010000"],["2024-07-25T09:59:27.010000"],["2024-07-25T09:59:28.010000"],["2024-07-25T09:59:29.010000"],["2024-07-25T09:59:30.010000"],["2024-07-25T09:59:31.010000"],["2024-07-25T09:59:32.010000"],["2024-07-25T09:59:33.010000"],["2024-07-25T09:59:34.010000"],["2024-07-25T09:59:35.010000"],["2024-07-25T09:59:36.010000"],["2024-07-25T09:59:37.010000"],["2024-07-25T09:59:38.010000"],["2024-07-25T09:59:39.010000"],["2024-07-25T09:59:40.010000"],["2024-07-25T09:59:41.010000"],["2024-07-25T09:59:42.010000"],["2024-07-25T09:59:43.010000"],["2024-07-25T09:59:44.010000"],["2024-07-25T09:59:45.010000"],["2024-07-25T09:59:46.010000"],["2024-07-25T09:59:47.010000"],["2024-07-25T09:59:48.010000"],["2024-07-25T09:59:49.010000"],["2024-07-25T09:59:50.010000"],["2024-07-25T09:59:51.010000"],["2024-07-25T09:59:52.010000"],["2024-07-25T09:59:53.010000"],["2024-07-25T09:59:54.010000"],["2024-07-25T09:59:55.010000"],["2024-07-25T09:59:56.010000"],["2024-07-25T09:59:57.010000"],["2024-07-25T09:59:58.010000"],["2024-07-25T09:59:59.010000"],["2024-07-25T10:00:00.010000"],["2024-07-25T10:00:01.010000"],["2024-07-25T10:00:02.010000"],["2024-07-25T10:00:03.010000"],["2024-07-25T10:00:04.010000"],["2024-07-25T10:00:05.010000"],["2024-07-25T10:00:06.010000"],["2024-07-25T10:00:07.010000"],["2024-07-25T10:00:08.010000"],["2024-07-25T10:00:09.010000"],["2024-07-25T10:00:10.010000"],["2024-07-25T10:00:11.010000"],["2024-07-25T10:00:12.010000"],["2024-07-25T10:00:13.010000"],["2024-07-25T10:00:14.010000"],["2024-07-25T10:00:15.010000"],["2024-07-25T10:00:16.010000"],["2024-07-25T10:00:17.010000"],["2024-07-25T10:00:18.010000"],["2024-07-25T10:00:19.010000"],["2024-07-25T10:00:20.010000"],["2024-07-25T10:00:21.010000"],["2024-07-25T10:00:22.010000"],["2024-07-25T10:00:23.010000"],["2024-07-25T10:00:24.010000"],["2024-07-25T10:00:25.010000"],["2024-07-25T10:00:26.010000"],["2024-07-25T10:00:27.010000"],["2024-07-25T10:00:28.010000"],["2024-07-25T10:00:29.010000"],["2024-07-25T10:00:30.010000"],["2024-07-25T10:00:31.010000"],["2024-07-25T10:00:32.010000"],["2024-07-25T10:00:33.010000"],["2024-07-25T10:00:34.010000"],["2024-07-25T10:00:35.010000"],["2024-07-25T10:00:36.010000"],["2024-07-25T10:00:37.010000"],["2024-07-25T10:00:38.010000"],["2024-07-25T10:00:39.010000"],["2024-07-25T10:00:40.010000"],["2024-07-25T10:00:41.010000"],["2024-07-25T10:00:42.010000"],["2024-07-25T10:00:43.010000"],["2024-07-25T10:00:44.010000"],["2024-07-25T10:00:45.010000"],["2024-07-25T10:00:46.010000"],["2024-07-25T10:00:47.010000"],["2024-07-25T10:00:48.010000"],["2024-07-25T10:00:49.010000"],["2024-07-25T10:00:50.010000"],["2024-07-25T10:00:51.010000"],["2024-07-25T10:00:52.010000"],["2024-07-25T10:00:53.010000"],["2024-07-25T10:00:54.010000"],["2024-07-25T10:00:55.010000"],["2024-07-25T10:00:56.010000"],["2024-07-25T10:00:57.010000"],["2024-07-25T10:00:58.010000"],["2024-07-25T10:00:59.010000"],["2024-07-25T10:01:00.010000"],["2024-07-25T10:01:01.010000"],["2024-07-25T10:01:02.010000"],["2024-07-25T10:01:03.010000"],["2024-07-25T10:01:04.010000"],["2024-07-25T10:01:05.010000"],["2024-07-25T10:01:06.010000"],["2024-07-25T10:01:07.010000"],["2024-07-25T10:01:08.010000"],["2024-07-25T10:01:09.010000"],["2024-07-25T10:01:10.010000"],["2024-07-25T10:01:11.010000"],["2024-07-25T10:01:12.010000"],["2024-07-25T10:01:13.010000"],["2024-07-25T10:01:14.010000"],["2024-07-25T10:01:15.010000"],["2024-07-25T10:01:16.010000"],["2024-07-25T10:01:17.010000"],["2024-07-25T10:01:18.010000"],["2024-07-25T10:01:19.010000"],["2024-07-25T10:01:20.010000"],["2024-07-25T10:01:21.010000"],["2024-07-25T10:01:22.010000"],["2024-07-25T10:01:23.010000"],["2024-07-25T10:01:24.010000"],["2024-07-25T10:01:25.010000"],["2024-07-25T10:01:26.010000"],["2024-07-25T10:01:27.010000"],["2024-07-25T10:01:28.010000"],["2024-07-25T10:01:29.010000"],["2024-07-25T10:01:30.010000"],["2024-07-25T10:01:31.010000"],["2024-07-25T10:01:32.010000"],["2024-07-25T10:01:33.010000"],["2024-07-25T10:01:34.010000"],["2024-07-25T10:01:35.010000"],["2024-07-25T10:01:36.010000"],["2024-07-25T10:01:37.010000"],["2024-07-25T10:01:38.010000"],["2024-07-25T10:01:39.010000"],["2024-07-25T10:01:40.010000"],["2024-07-25T10:01:41.010000"],["2024-07-25T10:01:42.010000"],["2024-07-25T10:01:43.010000"],["2024-07-25T10:01:44.010000"],["2024-07-25T10:01:45.010000"],["2024-07-25T10:01:46.010000"],["2024-07-25T10:01:47.010000"],["2024-07-25T10:01:48.010000"],["2024-07-25T10:01:49.010000"],["2024-07-25T10:01:50.010000"],["2024-07-25T10:01:51.010000"],["2024-07-25T10:01:52.010000"],["2024-07-25T10:01:53.010000"],["2024-07-25T10:01:54.010000"],["2024-07-25T10:01:55.010000"],["2024-07-25T10:01:56.010000"],["2024-07-25T10:01:57.010000"],["2024-07-25T10:01:58.010000"],["2024-07-25T10:01:59.010000"],["2024-07-25T10:02:00.010000"],["2024-07-25T10:02:01.010000"],["2024-07-25T10:02:02.010000"],["2024-07-25T10:02:03.010000"],["2024-07-25T10:02:04.010000"],["2024-07-25T10:02:05.010000"],["2024-07-25T10:02:06.010000"],["2024-07-25T10:02:07.010000"],["2024-07-25T10:02:08.010000"],["2024-07-25T10:02:09.010000"],["2024-07-25T10:02:10.010000"],["2024-07-25T10:02:11.010000"],["2024-07-25T10:02:12.010000"],["2024-07-25T10:02:13.010000"],["2024-07-25T10:02:14.010000"],["2024-07-25T10:02:15.010000"],["2024-07-25T10:02:16.010000"],["2024-07-25T10:02:17.010000"],["2024-07-25T10:02:18.010000"],["2024-07-25T10:02:19.010000"],["2024-07-25T10:02:20.010000"],["2024-07-25T10:02:21.010000"],["2024-07-25T10:02:22.010000"],["2024-07-25T10:02:23.010000"],["2024-07-25T10:02:24.010000"],["2024-07-25T10:02:25.010000"],["2024-07-25T10:02:26.010000"],["2024-07-25T10:02:27.010000"],["2024-07-25T10:02:28.010000"],["2024-07-25T10:02:29.010000"],["2024-07-25T10:02:30.010000"],["2024-07-25T10:02:31.010000"],["2024-07-25T10:02:32.010000"],["2024-07-25T10:02:33.010000"],["2024-07-25T10:02:34.010000"],["2024-07-25T10:02:35.010000"],["2024-07-25T10:02:36.010000"],["2024-07-25T10:02:37.010000"],["2024-07-25T10:02:38.010000"],["2024-07-25T10:02:39.010000"],["2024-07-25T10:02:40.010000"],["2024-07-25T10:02:41.010000"],["2024-07-25T10:02:42.010000"],["2024-07-25T10:02:43.010000"],["2024-07-25T10:02:44.010000"],["2024-07-25T10:02:45.010000"],["2024-07-25T10:02:46.010000"],["2024-07-25T10:02:47.010000"],["2024-07-25T10:02:48.010000"],["2024-07-25T10:02:49.010000"],["2024-07-25T10:02:50.010000"],["2024-07-25T10:02:51.010000"],["2024-07-25T10:02:52.010000"],["2024-07-25T10:02:53.010000"],["2024-07-25T10:02:54.010000"],["2024-07-25T10:02:55.010000"],["2024-07-25T10:02:56.010000"],["2024-07-25T10:02:57.010000"],["2024-07-25T10:02:58.010000"],["2024-07-25T10:02:59.010000"],["2024-07-25T10:03:00.010000"],["2024-07-25T10:03:01.010000"],["2024-07-25T10:03:02.010000"],["2024-07-25T10:03:03.010000"],["2024-07-25T10:03:04.010000"],["2024-07-25T10:03:05.010000"],["2024-07-25T10:03:06.010000"],["2024-07-25T10:03:07.010000"],["2024-07-25T10:03:08.010000"],["2024-07-25T10:03:09.010000"],["2024-07-25T10:03:10.010000"],["2024-07-25T10:03:11.010000"],["2024-07-25T10:03:12.010000"],["2024-07-25T10:03:13.010000"],["2024-07-25T10:03:14.010000"],["2024-07-25T10:03:15.010000"],["2024-07-25T10:03:16.010000"],["2024-07-25T10:03:17.010000"],["2024-07-25T10:03:18.010000"],["2024-07-25T10:03:19.010000"],["2024-07-25T10:03:20.010000"],["2024-07-25T10:03:21.010000"],["2024-07-25T10:03:22.010000"],["2024-07-25T10:03:23.010000"],["2024-07-25T10:03:24.010000"],["2024-07-25T10:03:25.010000"],["2024-07-25T10:03:26.010000"],["2024-07-25T10:03:27.010000"],["2024-07-25T10:03:28.010000"],["2024-07-25T10:03:29.010000"],["2024-07-25T10:03:30.010000"],["2024-07-25T10:03:31.010000"],["2024-07-25T10:03:32.010000"],["2024-07-25T10:03:33.010000"],["2024-07-25T10:03:34.010000"],["2024-07-25T10:03:35.010000"],["2024-07-25T10:03:36.010000"],["2024-07-25T10:03:37.010000"],["2024-07-25T10:03:38.010000"],["2024-07-25T10:03:39.010000"],["2024-07-25T10:03:40.010000"],["2024-07-25T10:03:41.010000"],["2024-07-25T10:03:42.010000"],["2024-07-25T10:03:43.010000"],["2024-07-25T10:03:44.010000"],["2024-07-25T10:03:45.010000"],["2024-07-25T10:03:46.010000"],["2024-07-25T10:03:47.010000"],["2024-07-25T10:03:48.010000"],["2024-07-25T10:03:49.010000"],["2024-07-25T10:03:50.010000"],["2024-07-25T10:03:51.010000"],["2024-07-25T10:03:52.010000"],["2024-07-25T10:03:53.010000"],["2024-07-25T10:03:54.010000"],["2024-07-25T10:03:55.010000"],["2024-07-25T10:03:56.010000"],["2024-07-25T10:03:57.010000"],["2024-07-25T10:03:58.010000"],["2024-07-25T10:03:59.010000"],["2024-07-25T10:04:00.010000"],["2024-07-25T10:04:01.010000"],["2024-07-25T10:04:02.010000"],["2024-07-25T10:04:03.010000"],["2024-07-25T10:04:04.010000"],["2024-07-25T10:04:05.010000"],["2024-07-25T10:04:06.010000"],["2024-07-25T10:04:07.010000"],["2024-07-25T10:04:08.010000"],["2024-07-25T10:04:09.010000"],["2024-07-25T10:04:10.010000"],["2024-07-25T10:04:11.010000"],["2024-07-25T10:04:12.010000"],["2024-07-25T10:04:13.010000"],["2024-07-25T10:04:14.010000"],["2024-07-25T10:04:15.010000"],["2024-07-25T10:04:16.010000"],["2024-07-25T10:04:17.010000"],["2024-07-25T10:04:18.010000"],["2024-07-25T10:04:19.010000"],["2024-07-25T10:04:20.010000"],["2024-07-25T10:04:21.010000"],["2024-07-25T10:04:22.010000"],["2024-07-25T10:04:23.010000"],["2024-07-25T10:04:24.010000"],["2024-07-25T10:04:25.010000"],["2024-07-25T10:04:26.010000"],["2024-07-25T10:04:27.010000"],["2024-07-25T10:04:28.010000"],["2024-07-25T10:04:29.010000"],["2024-07-25T10:04:30.010000"],["2024-07-25T10:04:31.010000"],["2024-07-25T10:04:32.010000"],["2024-07-25T10:04:33.010000"],["2024-07-25T10:04:34.010000"],["2024-07-25T10:04:35.010000"],["2024-07-25T10:04:36.010000"],["2024-07-25T10:04:37.010000"],["2024-07-25T10:04:38.010000"],["2024-07-25T10:04:39.010000"],["2024-07-25T10:04:40.010000"],["2024-07-25T10:04:41.010000"],["2024-07-25T10:04:42.010000"],["2024-07-25T10:04:43.010000"],["2024-07-25T10:04:44.010000"],["2024-07-25T10:04:45.010000"],["2024-07-25T10:04:46.010000"],["2024-07-25T10:04:47.010000"],["2024-07-25T10:04:48.010000"],["2024-07-25T10:04:49.010000"],["2024-07-25T10:04:50.010000"],["2024-07-25T10:04:51.010000"],["2024-07-25T10:04:52.010000"],["2024-07-25T10:04:53.010000"],["2024-07-25T10:04:54.010000"],["2024-07-25T10:04:55.010000"],["2024-07-25T10:04:56.010000"],["2024-07-25T10:04:57.010000"],["2024-07-25T10:04:58.010000"],["2024-07-25T10:04:59.010000"],["2024-07-25T10:05:00.010000"],["2024-07-25T10:05:01.010000"],["2024-07-25T10:05:02.010000"],["2024-07-25T10:05:03.010000"],["2024-07-25T10:05:04.010000"],["2024-07-25T10:05:05.010000"],["2024-07-25T10:05:06.010000"],["2024-07-25T10:05:07.010000"],["2024-07-25T10:05:08.010000"],["2024-07-25T10:05:09.010000"],["2024-07-25T10:05:10.010000"],["2024-07-25T10:05:11.010000"],["2024-07-25T10:05:12.010000"],["2024-07-25T10:05:13.010000"],["2024-07-25T10:05:14.010000"],["2024-07-25T10:05:15.010000"],["2024-07-25T10:05:16.010000"],["2024-07-25T10:05:17.010000"],["2024-07-25T10:05:18.010000"],["2024-07-25T10:05:19.010000"],["2024-07-25T10:05:20.010000"],["2024-07-25T10:05:21.010000"],["2024-07-25T10:05:22.010000"],["2024-07-25T10:05:23.010000"],["2024-07-25T10:05:24.010000"],["2024-07-25T10:05:25.010000"],["2024-07-25T10:05:26.010000"],["2024-07-25T10:05:27.010000"],["2024-07-25T10:05:28.010000"],["2024-07-25T10:05:29.010000"],["2024-07-25T10:05:30.010000"],["2024-07-25T10:05:31.010000"],["2024-07-25T10:05:32.010000"],["2024-07-25T10:05:33.010000"],["2024-07-25T10:05:34.010000"],["2024-07-25T10:05:35.010000"],["2024-07-25T10:05:36.010000"],["2024-07-25T10:05:37.010000"],["2024-07-25T10:05:38.010000"],["2024-07-25T10:05:39.010000"],["2024-07-25T10:05:40.010000"],["2024-07-25T10:05:41.010000"],["2024-07-25T10:05:42.010000"],["2024-07-25T10:05:43.010000"],["2024-07-25T10:05:44.010000"],["2024-07-25T10:05:45.010000"],["2024-07-25T10:05:46.010000"],["2024-07-25T10:05:47.010000"],["2024-07-25T10:05:48.010000"],["2024-07-25T10:05:49.010000"],["2024-07-25T10:05:50.010000"],["2024-07-25T10:05:51.010000"],["2024-07-25T10:05:52.010000"],["2024-07-25T10:05:53.010000"],["2024-07-25T10:05:54.010000"],["2024-07-25T10:05:55.010000"],["2024-07-25T10:05:56.010000"],["2024-07-25T10:05:57.010000"],["2024-07-25T10:05:58.010000"],["2024-07-25T10:05:59.010000"],["2024-07-25T10:06:00.010000"],["2024-07-25T10:06:01.010000"],["2024-07-25T10:06:02.010000"],["2024-07-25T10:06:03.010000"],["2024-07-25T10:06:04.010000"],["2024-07-25T10:06:05.010000"],["2024-07-25T10:06:06.010000"],["2024-07-25T10:06:07.010000"],["2024-07-25T10:06:08.010000"],["2024-07-25T10:06:09.010000"],["2024-07-25T10:06:10.010000"],["2024-07-25T10:06:11.010000"],["2024-07-25T10:06:12.010000"],["2024-07-25T10:06:13.010000"],["2024-07-25T10:06:14.010000"],["2024-07-25T10:06:15.010000"],["2024-07-25T10:06:16.010000"],["2024-07-25T10:06:17.010000"],["2024-07-25T10:06:18.010000"],["2024-07-25T10:06:19.010000"],["2024-07-25T10:06:20.010000"],["2024-07-25T10:06:21.010000"],["2024-07-25T10:06:22.010000"],["2024-07-25T10:06:23.010000"],["2024-07-25T10:06:24.010000"],["2024-07-25T10:06:25.010000"],["2024-07-25T10:06:26.010000"],["2024-07-25T10:06:27.010000"],["2024-07-25T10:06:28.010000"],["2024-07-25T10:06:29.010000"],["2024-07-25T10:06:30.010000"],["2024-07-25T10:06:31.010000"],["2024-07-25T10:06:32.010000"],["2024-07-25T10:06:33.010000"],["2024-07-25T10:06:34.010000"],["2024-07-25T10:06:35.010000"],["2024-07-25T10:06:36.010000"],["2024-07-25T10:06:37.010000"],["2024-07-25T10:06:38.010000"],["2024-07-25T10:06:39.010000"],["2024-07-25T10:06:40.010000"],["2024-07-25T10:06:41.010000"],["2024-07-25T10:06:42.010000"],["2024-07-25T10:06:43.010000"],["2024-07-25T10:06:44.010000"],["2024-07-25T10:06:45.010000"],["2024-07-25T10:06:46.010000"],["2024-07-25T10:06:47.010000"],["2024-07-25T10:06:48.010000"],["2024-07-25T10:06:49.010000"],["2024-07-25T10:06:50.010000"],["2024-07-25T10:06:51.010000"],["2024-07-25T10:06:52.010000"],["2024-07-25T10:06:53.010000"],["2024-07-25T10:06:54.010000"],["2024-07-25T10:06:55.010000"],["2024-07-25T10:06:56.010000"],["2024-07-25T10:06:57.010000"],["2024-07-25T10:06:58.010000"],["2024-07-25T10:06:59.010000"],["2024-07-25T10:07:00.010000"],["2024-07-25T10:07:01.010000"],["2024-07-25T10:07:02.010000"],["2024-07-25T10:07:03.010000"],["2024-07-25T10:07:04.010000"],["2024-07-25T10:07:05.010000"],["2024-07-25T10:07:06.010000"],["2024-07-25T10:07:07.010000"],["2024-07-25T10:07:08.010000"],["2024-07-25T10:07:09.010000"],["2024-07-25T10:07:10.010000"],["2024-07-25T10:07:11.010000"],["2024-07-25T10:07:12.010000"],["2024-07-25T10:07:13.010000"],["2024-07-25T10:07:14.010000"],["2024-07-25T10:07:15.010000"],["2024-07-25T10:07:16.010000"],["2024-07-25T10:07:17.010000"],["2024-07-25T10:07:18.010000"],["2024-07-25T10:07:19.010000"],["2024-07-25T10:07:20.010000"],["2024-07-25T10:07:21.010000"],["2024-07-25T10:07:22.010000"],["2024-07-25T10:07:23.010000"],["2024-07-25T10:07:24.010000"],["2024-07-25T10:07:25.010000"],["2024-07-25T10:07:26.010000"],["2024-07-25T10:07:27.010000"],["2024-07-25T10:07:28.010000"],["2024-07-25T10:07:29.010000"],["2024-07-25T10:07:30.010000"],["2024-07-25T10:07:31.010000"],["2024-07-25T10:07:32.010000"],["2024-07-25T10:07:33.010000"],["2024-07-25T10:07:34.010000"],["2024-07-25T10:07:35.010000"],["2024-07-25T10:07:36.010000"],["2024-07-25T10:07:37.010000"],["2024-07-25T10:07:38.010000"],["2024-07-25T10:07:39.010000"],["2024-07-25T10:07:40.010000"],["2024-07-25T10:07:41.010000"],["2024-07-25T10:07:42.010000"],["2024-07-25T10:07:43.010000"],["2024-07-25T10:07:44.010000"],["2024-07-25T10:07:45.010000"],["2024-07-25T10:07:46.010000"],["2024-07-25T10:07:47.010000"],["2024-07-25T10:07:48.010000"],["2024-07-25T10:07:49.010000"],["2024-07-25T10:07:50.010000"],["2024-07-25T10:07:51.010000"],["2024-07-25T10:07:52.010000"],["2024-07-25T10:07:53.010000"],["2024-07-25T10:07:54.010000"],["2024-07-25T10:07:55.010000"],["2024-07-25T10:07:56.010000"],["2024-07-25T10:07:57.010000"],["2024-07-25T10:07:58.010000"],["2024-07-25T10:07:59.010000"],["2024-07-25T10:08:00.010000"],["2024-07-25T10:08:01.010000"],["2024-07-25T10:08:02.010000"],["2024-07-25T10:08:03.010000"],["2024-07-25T10:08:04.010000"],["2024-07-25T10:08:05.010000"],["2024-07-25T10:08:06.010000"],["2024-07-25T10:08:07.010000"],["2024-07-25T10:08:08.010000"],["2024-07-25T10:08:09.010000"],["2024-07-25T10:08:10.010000"],["2024-07-25T10:08:11.010000"],["2024-07-25T10:08:12.010000"],["2024-07-25T10:08:13.010000"],["2024-07-25T10:08:14.010000"],["2024-07-25T10:08:15.010000"],["2024-07-25T10:08:16.010000"],["2024-07-25T10:08:17.010000"],["2024-07-25T10:08:18.010000"],["2024-07-25T10:08:19.010000"],["2024-07-25T10:08:20.010000"],["2024-07-25T10:08:21.010000"],["2024-07-25T10:08:22.010000"],["2024-07-25T10:08:23.010000"],["2024-07-25T10:08:24.010000"],["2024-07-25T10:08:25.010000"],["2024-07-25T10:08:26.010000"],["2024-07-25T10:08:27.010000"],["2024-07-25T10:08:28.010000"],["2024-07-25T10:08:29.010000"],["2024-07-25T10:08:30.010000"],["2024-07-25T10:08:31.010000"],["2024-07-25T10:08:32.010000"],["2024-07-25T10:08:33.010000"],["2024-07-25T10:08:34.010000"],["2024-07-25T10:08:35.010000"],["2024-07-25T10:08:36.010000"],["2024-07-25T10:08:37.010000"],["2024-07-25T10:08:38.010000"],["2024-07-25T10:08:39.010000"],["2024-07-25T10:08:40.010000"],["2024-07-25T10:08:41.010000"],["2024-07-25T10:08:42.010000"],["2024-07-25T10:08:43.010000"],["2024-07-25T10:08:44.010000"],["2024-07-25T10:08:45.010000"],["2024-07-25T10:08:46.010000"],["2024-07-25T10:08:47.010000"],["2024-07-25T10:08:48.010000"],["2024-07-25T10:08:49.010000"],["2024-07-25T10:08:50.010000"],["2024-07-25T10:08:51.010000"],["2024-07-25T10:08:52.010000"],["2024-07-25T10:08:53.010000"],["2024-07-25T10:08:54.010000"],["2024-07-25T10:08:55.010000"],["2024-07-25T10:08:56.010000"],["2024-07-25T10:08:57.010000"],["2024-07-25T10:08:58.010000"],["2024-07-25T10:08:59.010000"],["2024-07-25T10:09:00.010000"],["2024-07-25T10:09:01.010000"],["2024-07-25T10:09:02.010000"],["2024-07-25T10:09:03.010000"],["2024-07-25T10:09:04.010000"],["2024-07-25T10:09:05.010000"],["2024-07-25T10:09:06.010000"],["2024-07-25T10:09:07.010000"],["2024-07-25T10:09:08.010000"],["2024-07-25T10:09:09.010000"],["2024-07-25T10:09:10.010000"],["2024-07-25T10:09:11.010000"],["2024-07-25T10:09:12.010000"],["2024-07-25T10:09:13.010000"],["2024-07-25T10:09:14.010000"],["2024-07-25T10:09:15.010000"],["2024-07-25T10:09:16.010000"],["2024-07-25T10:09:17.010000"],["2024-07-25T10:09:18.010000"],["2024-07-25T10:09:19.010000"],["2024-07-25T10:09:20.010000"],["2024-07-25T10:09:21.010000"],["2024-07-25T10:09:22.010000"],["2024-07-25T10:09:23.010000"],["2024-07-25T10:09:24.010000"],["2024-07-25T10:09:25.010000"],["2024-07-25T10:09:26.010000"],["2024-07-25T10:09:27.010000"],["2024-07-25T10:09:28.010000"],["2024-07-25T10:09:29.010000"],["2024-07-25T10:09:30.010000"],["2024-07-25T10:09:31.010000"],["2024-07-25T10:09:32.010000"],["2024-07-25T10:09:33.010000"],["2024-07-25T10:09:34.010000"],["2024-07-25T10:09:35.010000"],["2024-07-25T10:09:36.010000"],["2024-07-25T10:09:37.010000"],["2024-07-25T10:09:38.010000"],["2024-07-25T10:09:39.010000"],["2024-07-25T10:09:40.010000"],["2024-07-25T10:09:41.010000"],["2024-07-25T10:09:42.010000"],["2024-07-25T10:09:43.010000"],["2024-07-25T10:09:44.010000"],["2024-07-25T10:09:45.010000"],["2024-07-25T10:09:46.010000"],["2024-07-25T10:09:47.010000"],["2024-07-25T10:09:48.010000"],["2024-07-25T10:09:49.010000"],["2024-07-25T10:09:50.010000"],["2024-07-25T10:09:51.010000"],["2024-07-25T10:09:52.010000"],["2024-07-25T10:09:53.010000"],["2024-07-25T10:09:54.010000"],["2024-07-25T10:09:55.010000"],["2024-07-25T10:09:56.010000"],["2024-07-25T10:09:57.010000"],["2024-07-25T10:09:58.010000"],["2024-07-25T10:09:59.010000"],["2024-07-25T10:10:00.010000"],["2024-07-25T10:10:01.010000"],["2024-07-25T10:10:02.010000"],["2024-07-25T10:10:03.010000"],["2024-07-25T10:10:04.010000"],["2024-07-25T10:10:05.010000"],["2024-07-25T10:10:06.010000"],["2024-07-25T10:10:07.010000"],["2024-07-25T10:10:08.010000"],["2024-07-25T10:10:09.010000"],["2024-07-25T10:10:10.010000"],["2024-07-25T10:10:11.010000"],["2024-07-25T10:10:12.010000"],["2024-07-25T10:10:13.010000"],["2024-07-25T10:10:14.010000"],["2024-07-25T10:10:15.010000"],["2024-07-25T10:10:16.010000"],["2024-07-25T10:10:17.010000"],["2024-07-25T10:10:18.010000"],["2024-07-25T10:10:19.010000"],["2024-07-25T10:10:20.010000"],["2024-07-25T10:10:21.010000"],["2024-07-25T10:10:22.010000"],["2024-07-25T10:10:23.010000"],["2024-07-25T10:10:24.010000"],["2024-07-25T10:10:25.010000"],["2024-07-25T10:10:26.010000"],["2024-07-25T10:10:27.010000"],["2024-07-25T10:10:28.010000"],["2024-07-25T10:10:29.010000"],["2024-07-25T10:10:30.010000"],["2024-07-25T10:10:31.010000"],["2024-07-25T10:10:32.010000"],["2024-07-25T10:10:33.010000"],["2024-07-25T10:10:34.010000"],["2024-07-25T10:10:35.010000"],["2024-07-25T10:10:36.010000"],["2024-07-25T10:10:37.010000"],["2024-07-25T10:10:38.010000"],["2024-07-25T10:10:39.010000"],["2024-07-25T10:10:40.010000"],["2024-07-25T10:10:41.010000"],["2024-07-25T10:10:42.010000"],["2024-07-25T10:10:43.010000"],["2024-07-25T10:10:44.010000"],["2024-07-25T10:10:45.010000"],["2024-07-25T10:10:46.010000"],["2024-07-25T10:10:47.010000"],["2024-07-25T10:10:48.010000"],["2024-07-25T10:10:49.010000"],["2024-07-25T10:10:50.010000"],["2024-07-25T10:10:51.010000"],["2024-07-25T10:10:52.010000"],["2024-07-25T10:10:53.010000"],["2024-07-25T10:10:54.010000"],["2024-07-25T10:10:55.010000"],["2024-07-25T10:10:56.010000"],["2024-07-25T10:10:57.010000"],["2024-07-25T10:10:58.010000"],["2024-07-25T10:10:59.010000"],["2024-07-25T10:11:00.010000"],["2024-07-25T10:11:01.010000"],["2024-07-25T10:11:02.010000"],["2024-07-25T10:11:03.010000"],["2024-07-25T10:11:04.010000"],["2024-07-25T10:11:05.010000"],["2024-07-25T10:11:06.010000"],["2024-07-25T10:11:07.010000"],["2024-07-25T10:11:08.010000"],["2024-07-25T10:11:09.010000"],["2024-07-25T10:11:10.010000"],["2024-07-25T10:11:11.010000"],["2024-07-25T10:11:12.010000"],["2024-07-25T10:11:13.010000"],["2024-07-25T10:11:14.010000"],["2024-07-25T10:11:15.010000"],["2024-07-25T10:11:16.010000"],["2024-07-25T10:11:17.010000"],["2024-07-25T10:11:18.010000"],["2024-07-25T10:11:19.010000"],["2024-07-25T10:11:20.010000"],["2024-07-25T10:11:21.010000"],["2024-07-25T10:11:22.010000"],["2024-07-25T10:11:23.010000"],["2024-07-25T10:11:24.010000"],["2024-07-25T10:11:25.010000"],["2024-07-25T10:11:26.010000"],["2024-07-25T10:11:27.010000"],["2024-07-25T10:11:28.010000"],["2024-07-25T10:11:29.010000"],["2024-07-25T10:11:30.010000"],["2024-07-25T10:11:31.010000"],["2024-07-25T10:11:32.010000"],["2024-07-25T10:11:33.010000"],["2024-07-25T10:11:34.010000"],["2024-07-25T10:11:35.010000"],["2024-07-25T10:11:36.010000"],["2024-07-25T10:11:37.010000"],["2024-07-25T10:11:38.010000"],["2024-07-25T10:11:39.010000"],["2024-07-25T10:11:40.010000"],["2024-07-25T10:11:41.010000"],["2024-07-25T10:11:42.010000"],["2024-07-25T10:11:43.010000"],["2024-07-25T10:11:44.010000"],["2024-07-25T10:11:45.010000"],["2024-07-25T10:11:46.010000"],["2024-07-25T10:11:47.010000"],["2024-07-25T10:11:48.010000"],["2024-07-25T10:11:49.010000"],["2024-07-25T10:11:50.010000"],["2024-07-25T10:11:51.010000"],["2024-07-25T10:11:52.010000"],["2024-07-25T10:11:53.010000"],["2024-07-25T10:11:54.010000"],["2024-07-25T10:11:55.010000"],["2024-07-25T10:11:56.010000"],["2024-07-25T10:11:57.010000"],["2024-07-25T10:11:58.010000"],["2024-07-25T10:11:59.010000"],["2024-07-25T10:12:00.010000"],["2024-07-25T10:12:01.010000"],["2024-07-25T10:12:02.010000"],["2024-07-25T10:12:03.010000"],["2024-07-25T10:12:04.010000"],["2024-07-25T10:12:05.010000"],["2024-07-25T10:12:06.010000"],["2024-07-25T10:12:07.010000"],["2024-07-25T10:12:08.010000"],["2024-07-25T10:12:09.010000"],["2024-07-25T10:12:10.010000"],["2024-07-25T10:12:11.010000"],["2024-07-25T10:12:12.010000"],["2024-07-25T10:12:13.010000"],["2024-07-25T10:12:14.010000"],["2024-07-25T10:12:15.010000"],["2024-07-25T10:12:16.010000"],["2024-07-25T10:12:17.010000"],["2024-07-25T10:12:18.010000"],["2024-07-25T10:12:19.010000"],["2024-07-25T10:12:20.010000"],["2024-07-25T10:12:21.010000"],["2024-07-25T10:12:22.010000"],["2024-07-25T10:12:23.010000"],["2024-07-25T10:12:24.010000"],["2024-07-25T10:12:25.010000"],["2024-07-25T10:12:26.010000"],["2024-07-25T10:12:27.010000"],["2024-07-25T10:12:28.010000"],["2024-07-25T10:12:29.010000"],["2024-07-25T10:12:30.010000"],["2024-07-25T10:12:31.010000"],["2024-07-25T10:12:32.010000"],["2024-07-25T10:12:33.010000"],["2024-07-25T10:12:34.010000"],["2024-07-25T10:12:35.010000"],["2024-07-25T10:12:36.010000"],["2024-07-25T10:12:37.010000"],["2024-07-25T10:12:38.010000"],["2024-07-25T10:12:39.010000"],["2024-07-25T10:12:40.010000"],["2024-07-25T10:12:41.010000"],["2024-07-25T10:12:42.010000"],["2024-07-25T10:12:43.010000"],["2024-07-25T10:12:44.010000"],["2024-07-25T10:12:45.010000"],["2024-07-25T10:12:46.010000"],["2024-07-25T10:12:47.010000"],["2024-07-25T10:12:48.010000"],["2024-07-25T10:12:49.010000"],["2024-07-25T10:12:50.010000"],["2024-07-25T10:12:51.010000"],["2024-07-25T10:12:52.010000"],["2024-07-25T10:12:53.010000"],["2024-07-25T10:12:54.010000"],["2024-07-25T10:12:55.010000"],["2024-07-25T10:12:56.010000"],["2024-07-25T10:12:57.010000"],["2024-07-25T10:12:58.010000"],["2024-07-25T10:12:59.010000"],["2024-07-25T10:13:00.010000"],["2024-07-25T10:13:01.010000"],["2024-07-25T10:13:02.010000"],["2024-07-25T10:13:03.010000"],["2024-07-25T10:13:04.010000"],["2024-07-25T10:13:05.010000"],["2024-07-25T10:13:06.010000"],["2024-07-25T10:13:07.010000"],["2024-07-25T10:13:08.010000"],["2024-07-25T10:13:09.010000"],["2024-07-25T10:13:10.010000"],["2024-07-25T10:13:11.010000"],["2024-07-25T10:13:12.010000"],["2024-07-25T10:13:13.010000"],["2024-07-25T10:13:14.010000"],["2024-07-25T10:13:15.010000"],["2024-07-25T10:13:16.010000"],["2024-07-25T10:13:17.010000"],["2024-07-25T10:13:18.010000"],["2024-07-25T10:13:19.010000"],["2024-07-25T10:13:20.010000"],["2024-07-25T10:13:21.010000"],["2024-07-25T10:13:22.010000"],["2024-07-25T10:13:23.010000"],["2024-07-25T10:13:24.010000"],["2024-07-25T10:13:25.010000"],["2024-07-25T10:13:26.010000"],["2024-07-25T10:13:27.010000"],["2024-07-25T10:13:28.010000"],["2024-07-25T10:13:29.010000"],["2024-07-25T10:13:30.010000"],["2024-07-25T10:13:31.010000"],["2024-07-25T10:13:32.010000"],["2024-07-25T10:13:33.010000"],["2024-07-25T10:13:34.010000"],["2024-07-25T10:13:35.010000"],["2024-07-25T10:13:36.010000"],["2024-07-25T10:13:37.010000"],["2024-07-25T10:13:38.010000"],["2024-07-25T10:13:39.010000"],["2024-07-25T10:13:40.010000"],["2024-07-25T10:13:41.010000"],["2024-07-25T10:13:42.010000"],["2024-07-25T10:13:43.010000"],["2024-07-25T10:13:44.010000"],["2024-07-25T10:13:45.010000"],["2024-07-25T10:13:46.010000"],["2024-07-25T10:13:47.010000"],["2024-07-25T10:13:48.010000"],["2024-07-25T10:13:49.010000"],["2024-07-25T10:13:50.010000"],["2024-07-25T10:13:51.010000"],["2024-07-25T10:13:52.010000"],["2024-07-25T10:13:53.010000"],["2024-07-25T10:13:54.010000"],["2024-07-25T10:13:55.010000"],["2024-07-25T10:13:56.010000"],["2024-07-25T10:13:57.010000"],["2024-07-25T10:13:58.010000"],["2024-07-25T10:13:59.010000"],["2024-07-25T10:14:00.010000"],["2024-07-25T10:14:01.010000"],["2024-07-25T10:14:02.010000"],["2024-07-25T10:14:03.010000"],["2024-07-25T10:14:04.010000"],["2024-07-25T10:14:05.010000"],["2024-07-25T10:14:06.010000"],["2024-07-25T10:14:07.010000"],["2024-07-25T10:14:08.010000"],["2024-07-25T10:14:09.010000"],["2024-07-25T10:14:10.010000"],["2024-07-25T10:14:11.010000"],["2024-07-25T10:14:12.010000"],["2024-07-25T10:14:13.010000"],["2024-07-25T10:14:14.010000"],["2024-07-25T10:14:15.010000"],["2024-07-25T10:14:16.010000"],["2024-07-25T10:14:17.010000"],["2024-07-25T10:14:18.010000"],["2024-07-25T10:14:19.010000"],["2024-07-25T10:14:20.010000"],["2024-07-25T10:14:21.010000"],["2024-07-25T10:14:22.010000"],["2024-07-25T10:14:23.010000"],["2024-07-25T10:14:24.010000"],["2024-07-25T10:14:25.010000"],["2024-07-25T10:14:26.010000"],["2024-07-25T10:14:27.010000"],["2024-07-25T10:14:28.010000"],["2024-07-25T10:14:29.010000"],["2024-07-25T10:14:30.010000"],["2024-07-25T10:14:31.010000"],["2024-07-25T10:14:32.010000"],["2024-07-25T10:14:33.010000"],["2024-07-25T10:14:34.010000"],["2024-07-25T10:14:35.010000"],["2024-07-25T10:14:36.010000"],["2024-07-25T10:14:37.010000"],["2024-07-25T10:14:38.010000"],["2024-07-25T10:14:39.010000"],["2024-07-25T10:14:40.010000"],["2024-07-25T10:14:41.010000"],["2024-07-25T10:14:42.010000"],["2024-07-25T10:14:43.010000"],["2024-07-25T10:14:44.010000"],["2024-07-25T10:14:45.010000"],["2024-07-25T10:14:46.010000"],["2024-07-25T10:14:47.010000"],["2024-07-25T10:14:48.010000"],["2024-07-25T10:14:49.010000"],["2024-07-25T10:14:50.010000"],["2024-07-25T10:14:51.010000"],["2024-07-25T10:14:52.010000"],["2024-07-25T10:14:53.010000"],["2024-07-25T10:14:54.010000"],["2024-07-25T10:14:55.010000"],["2024-07-25T10:14:56.010000"],["2024-07-25T10:14:57.010000"],["2024-07-25T10:14:58.010000"],["2024-07-25T10:14:59.010000"],["2024-07-25T10:15:00.010000"],["2024-07-25T10:15:01.010000"],["2024-07-25T10:15:02.010000"],["2024-07-25T10:15:03.010000"],["2024-07-25T10:15:04.010000"],["2024-07-25T10:15:05.010000"],["2024-07-25T10:15:06.010000"],["2024-07-25T10:15:07.010000"],["2024-07-25T10:15:08.010000"],["2024-07-25T10:15:09.010000"],["2024-07-25T10:15:10.010000"],["2024-07-25T10:15:11.010000"],["2024-07-25T10:15:12.010000"],["2024-07-25T10:15:13.010000"],["2024-07-25T10:15:14.010000"],["2024-07-25T10:15:15.010000"],["2024-07-25T10:15:16.010000"],["2024-07-25T10:15:17.010000"],["2024-07-25T10:15:18.010000"],["2024-07-25T10:15:19.010000"],["2024-07-25T10:15:20.010000"],["2024-07-25T10:15:21.010000"],["2024-07-25T10:15:22.010000"],["2024-07-25T10:15:23.010000"],["2024-07-25T10:15:24.010000"],["2024-07-25T10:15:25.010000"],["2024-07-25T10:15:26.010000"],["2024-07-25T10:15:27.010000"],["2024-07-25T10:15:28.010000"],["2024-07-25T10:15:29.010000"],["2024-07-25T10:15:30.010000"],["2024-07-25T10:15:31.010000"],["2024-07-25T10:15:32.010000"],["2024-07-25T10:15:33.010000"],["2024-07-25T10:15:34.010000"],["2024-07-25T10:15:35.010000"],["2024-07-25T10:15:36.010000"],["2024-07-25T10:15:37.010000"],["2024-07-25T10:15:38.010000"],["2024-07-25T10:15:39.010000"],["2024-07-25T10:15:40.010000"],["2024-07-25T10:15:41.010000"],["2024-07-25T10:15:42.010000"],["2024-07-25T10:15:43.010000"],["2024-07-25T10:15:44.010000"],["2024-07-25T10:15:45.010000"],["2024-07-25T10:15:46.010000"],["2024-07-25T10:15:47.010000"],["2024-07-25T10:15:48.010000"],["2024-07-25T10:15:49.010000"],["2024-07-25T10:15:50.010000"],["2024-07-25T10:15:51.010000"],["2024-07-25T10:15:52.010000"],["2024-07-25T10:15:53.010000"],["2024-07-25T10:15:54.010000"],["2024-07-25T10:15:55.010000"],["2024-07-25T10:15:56.010000"],["2024-07-25T10:15:57.010000"],["2024-07-25T10:15:58.010000"],["2024-07-25T10:15:59.010000"],["2024-07-25T10:16:00.010000"],["2024-07-25T10:16:01.010000"],["2024-07-25T10:16:02.010000"],["2024-07-25T10:16:03.010000"],["2024-07-25T10:16:04.010000"],["2024-07-25T10:16:05.010000"],["2024-07-25T10:16:06.010000"],["2024-07-25T10:16:07.010000"],["2024-07-25T10:16:08.010000"],["2024-07-25T10:16:09.010000"],["2024-07-25T10:16:10.010000"],["2024-07-25T10:16:11.010000"],["2024-07-25T10:16:12.010000"],["2024-07-25T10:16:13.010000"],["2024-07-25T10:16:14.010000"],["2024-07-25T10:16:15.010000"],["2024-07-25T10:16:16.010000"],["2024-07-25T10:16:17.010000"],["2024-07-25T10:16:18.010000"],["2024-07-25T10:16:19.010000"],["2024-07-25T10:16:20.010000"],["2024-07-25T10:16:21.010000"],["2024-07-25T10:16:22.010000"],["2024-07-25T10:16:23.010000"],["2024-07-25T10:16:24.010000"],["2024-07-25T10:16:25.010000"],["2024-07-25T10:16:26.010000"],["2024-07-25T10:16:27.010000"],["2024-07-25T10:16:28.010000"],["2024-07-25T10:16:29.010000"],["2024-07-25T10:16:30.010000"],["2024-07-25T10:16:31.010000"],["2024-07-25T10:16:32.010000"],["2024-07-25T10:16:33.010000"],["2024-07-25T10:16:34.010000"],["2024-07-25T10:16:35.010000"],["2024-07-25T10:16:36.010000"],["2024-07-25T10:16:37.010000"],["2024-07-25T10:16:38.010000"],["2024-07-25T10:16:39.010000"],["2024-07-25T10:16:40.010000"],["2024-07-25T10:16:41.010000"],["2024-07-25T10:16:42.010000"],["2024-07-25T10:16:43.010000"],["2024-07-25T10:16:44.010000"],["2024-07-25T10:16:45.010000"],["2024-07-25T10:16:46.010000"],["2024-07-25T10:16:47.010000"],["2024-07-25T10:16:48.010000"],["2024-07-25T10:16:49.010000"],["2024-07-25T10:16:50.010000"],["2024-07-25T10:16:51.010000"],["2024-07-25T10:16:52.010000"],["2024-07-25T10:16:53.010000"],["2024-07-25T10:16:54.010000"],["2024-07-25T10:16:55.010000"],["2024-07-25T10:16:56.010000"],["2024-07-25T10:16:57.010000"],["2024-07-25T10:16:58.010000"],["2024-07-25T10:16:59.010000"],["2024-07-25T10:17:00.010000"],["2024-07-25T10:17:01.010000"],["2024-07-25T10:17:02.010000"],["2024-07-25T10:17:03.010000"],["2024-07-25T10:17:04.010000"],["2024-07-25T10:17:05.010000"],["2024-07-25T10:17:06.010000"],["2024-07-25T10:17:07.010000"],["2024-07-25T10:17:08.010000"],["2024-07-25T10:17:09.010000"],["2024-07-25T10:17:10.010000"],["2024-07-25T10:17:11.010000"],["2024-07-25T10:17:12.010000"],["2024-07-25T10:17:13.010000"],["2024-07-25T10:17:14.010000"],["2024-07-25T10:17:15.010000"],["2024-07-25T10:17:16.010000"],["2024-07-25T10:17:17.010000"],["2024-07-25T10:17:18.010000"],["2024-07-25T10:17:19.010000"],["2024-07-25T10:17:20.010000"],["2024-07-25T10:17:21.010000"],["2024-07-25T10:17:22.010000"],["2024-07-25T10:17:23.010000"],["2024-07-25T10:17:24.010000"],["2024-07-25T10:17:25.010000"],["2024-07-25T10:17:26.010000"],["2024-07-25T10:17:27.010000"],["2024-07-25T10:17:28.010000"],["2024-07-25T10:17:29.010000"],["2024-07-25T10:17:30.010000"],["2024-07-25T10:17:31.010000"],["2024-07-25T10:17:32.010000"],["2024-07-25T10:17:33.010000"],["2024-07-25T10:17:34.010000"],["2024-07-25T10:17:35.010000"],["2024-07-25T10:17:36.010000"],["2024-07-25T10:17:37.010000"],["2024-07-25T10:17:38.010000"],["2024-07-25T10:17:39.010000"],["2024-07-25T10:17:40.010000"],["2024-07-25T10:17:41.010000"],["2024-07-25T10:17:42.010000"],["2024-07-25T10:17:43.010000"],["2024-07-25T10:17:44.010000"],["2024-07-25T10:17:45.010000"],["2024-07-25T10:17:46.010000"],["2024-07-25T10:17:47.010000"],["2024-07-25T10:17:48.010000"],["2024-07-25T10:17:49.010000"],["2024-07-25T10:17:50.010000"],["2024-07-25T10:17:51.010000"],["2024-07-25T10:17:52.010000"],["2024-07-25T10:17:53.010000"],["2024-07-25T10:17:54.010000"],["2024-07-25T10:17:55.010000"],["2024-07-25T10:17:56.010000"],["2024-07-25T10:17:57.010000"],["2024-07-25T10:17:58.010000"],["2024-07-25T10:17:59.010000"],["2024-07-25T10:18:00.010000"],["2024-07-25T10:18:01.010000"],["2024-07-25T10:18:02.010000"],["2024-07-25T10:18:03.010000"],["2024-07-25T10:18:04.010000"],["2024-07-25T10:18:05.010000"],["2024-07-25T10:18:06.010000"],["2024-07-25T10:18:07.010000"],["2024-07-25T10:18:08.010000"],["2024-07-25T10:18:09.010000"],["2024-07-25T10:18:10.010000"],["2024-07-25T10:18:11.010000"],["2024-07-25T10:18:12.010000"],["2024-07-25T10:18:13.010000"],["2024-07-25T10:18:14.010000"],["2024-07-25T10:18:15.010000"],["2024-07-25T10:18:16.010000"],["2024-07-25T10:18:17.010000"],["2024-07-25T10:18:18.010000"],["2024-07-25T10:18:19.010000"],["2024-07-25T10:18:20.010000"],["2024-07-25T10:18:21.010000"],["2024-07-25T10:18:22.010000"],["2024-07-25T10:18:23.010000"],["2024-07-25T10:18:24.010000"],["2024-07-25T10:18:25.010000"],["2024-07-25T10:18:26.010000"],["2024-07-25T10:18:27.010000"],["2024-07-25T10:18:28.010000"],["2024-07-25T10:18:29.010000"],["2024-07-25T10:18:30.010000"],["2024-07-25T10:18:31.010000"],["2024-07-25T10:18:32.010000"],["2024-07-25T10:18:33.010000"],["2024-07-25T10:18:34.010000"],["2024-07-25T10:18:35.010000"],["2024-07-25T10:18:36.010000"],["2024-07-25T10:18:37.010000"],["2024-07-25T10:18:38.010000"],["2024-07-25T10:18:39.010000"],["2024-07-25T10:18:40.010000"],["2024-07-25T10:18:41.010000"],["2024-07-25T10:18:42.010000"],["2024-07-25T10:18:43.010000"],["2024-07-25T10:18:44.010000"],["2024-07-25T10:18:45.010000"],["2024-07-25T10:18:46.010000"],["2024-07-25T10:18:47.010000"],["2024-07-25T10:18:48.010000"],["2024-07-25T10:18:49.010000"],["2024-07-25T10:18:50.010000"],["2024-07-25T10:18:51.010000"],["2024-07-25T10:18:52.010000"],["2024-07-25T10:18:53.010000"],["2024-07-25T10:18:54.010000"],["2024-07-25T10:18:55.010000"],["2024-07-25T10:18:56.010000"],["2024-07-25T10:18:57.010000"],["2024-07-25T10:18:58.010000"],["2024-07-25T10:18:59.010000"],["2024-07-25T10:19:00.010000"],["2024-07-25T10:19:01.010000"],["2024-07-25T10:19:02.010000"],["2024-07-25T10:19:03.010000"],["2024-07-25T10:19:04.010000"],["2024-07-25T10:19:05.010000"],["2024-07-25T10:19:06.010000"],["2024-07-25T10:19:07.010000"],["2024-07-25T10:19:08.010000"],["2024-07-25T10:19:09.010000"],["2024-07-25T10:19:10.010000"],["2024-07-25T10:19:11.010000"],["2024-07-25T10:19:12.010000"],["2024-07-25T10:19:13.010000"],["2024-07-25T10:19:14.010000"],["2024-07-25T10:19:15.010000"],["2024-07-25T10:19:16.010000"],["2024-07-25T10:19:17.010000"],["2024-07-25T10:19:18.010000"],["2024-07-25T10:19:19.010000"],["2024-07-25T10:19:20.010000"],["2024-07-25T10:19:21.010000"],["2024-07-25T10:19:22.010000"],["2024-07-25T10:19:23.010000"],["2024-07-25T10:19:24.010000"],["2024-07-25T10:19:25.010000"],["2024-07-25T10:19:26.010000"],["2024-07-25T10:19:27.010000"],["2024-07-25T10:19:28.010000"],["2024-07-25T10:19:29.010000"],["2024-07-25T10:19:30.010000"],["2024-07-25T10:19:31.010000"],["2024-07-25T10:19:32.010000"],["2024-07-25T10:19:33.010000"],["2024-07-25T10:19:34.010000"],["2024-07-25T10:19:35.010000"],["2024-07-25T10:19:36.010000"],["2024-07-25T10:19:37.010000"],["2024-07-25T10:19:38.010000"],["2024-07-25T10:19:39.010000"],["2024-07-25T10:19:40.010000"],["2024-07-25T10:19:41.010000"],["2024-07-25T10:19:42.010000"],["2024-07-25T10:19:43.010000"],["2024-07-25T10:19:44.010000"],["2024-07-25T10:19:45.010000"],["2024-07-25T10:19:46.010000"],["2024-07-25T10:19:47.010000"],["2024-07-25T10:19:48.010000"],["2024-07-25T10:19:49.010000"],["2024-07-25T10:19:50.010000"],["2024-07-25T10:19:51.010000"],["2024-07-25T10:19:52.010000"],["2024-07-25T10:19:53.010000"],["2024-07-25T10:19:54.010000"],["2024-07-25T10:19:55.010000"],["2024-07-25T10:19:56.010000"],["2024-07-25T10:19:57.010000"],["2024-07-25T10:19:58.010000"],["2024-07-25T10:19:59.010000"],["2024-07-25T10:20:00.010000"],["2024-07-25T10:20:01.010000"],["2024-07-25T10:20:02.010000"],["2024-07-25T10:20:03.010000"],["2024-07-25T10:20:04.010000"],["2024-07-25T10:20:05.010000"],["2024-07-25T10:20:06.010000"],["2024-07-25T10:20:07.010000"],["2024-07-25T10:20:08.010000"],["2024-07-25T10:20:09.010000"],["2024-07-25T10:20:10.010000"],["2024-07-25T10:20:11.010000"],["2024-07-25T10:20:12.010000"],["2024-07-25T10:20:13.010000"],["2024-07-25T10:20:14.010000"],["2024-07-25T10:20:15.010000"],["2024-07-25T10:20:16.010000"],["2024-07-25T10:20:17.010000"],["2024-07-25T10:20:18.010000"],["2024-07-25T10:20:19.010000"],["2024-07-25T10:20:20.010000"],["2024-07-25T10:20:21.010000"],["2024-07-25T10:20:22.010000"],["2024-07-25T10:20:23.010000"],["2024-07-25T10:20:24.010000"],["2024-07-25T10:20:25.010000"],["2024-07-25T10:20:26.010000"],["2024-07-25T10:20:27.010000"],["2024-07-25T10:20:28.010000"],["2024-07-25T10:20:29.010000"],["2024-07-25T10:20:30.010000"],["2024-07-25T10:20:31.010000"],["2024-07-25T10:20:32.010000"],["2024-07-25T10:20:33.010000"],["2024-07-25T10:20:34.010000"],["2024-07-25T10:20:35.010000"],["2024-07-25T10:20:36.010000"],["2024-07-25T10:20:37.010000"],["2024-07-25T10:20:38.010000"],["2024-07-25T10:20:39.010000"],["2024-07-25T10:20:40.010000"],["2024-07-25T10:20:41.010000"],["2024-07-25T10:20:42.010000"],["2024-07-25T10:20:43.010000"],["2024-07-25T10:20:44.010000"],["2024-07-25T10:20:45.010000"],["2024-07-25T10:20:46.010000"],["2024-07-25T10:20:47.010000"],["2024-07-25T10:20:48.010000"],["2024-07-25T10:20:49.010000"],["2024-07-25T10:20:50.010000"],["2024-07-25T10:20:51.010000"],["2024-07-25T10:20:52.010000"],["2024-07-25T10:20:53.010000"],["2024-07-25T10:20:54.010000"],["2024-07-25T10:20:55.010000"],["2024-07-25T10:20:56.010000"],["2024-07-25T10:20:57.010000"],["2024-07-25T10:20:58.010000"],["2024-07-25T10:20:59.010000"],["2024-07-25T10:21:00.010000"],["2024-07-25T10:21:01.010000"],["2024-07-25T10:21:02.010000"],["2024-07-25T10:21:03.010000"],["2024-07-25T10:21:04.010000"],["2024-07-25T10:21:05.010000"],["2024-07-25T10:21:06.010000"],["2024-07-25T10:21:07.010000"],["2024-07-25T10:21:08.010000"],["2024-07-25T10:21:09.010000"],["2024-07-25T10:21:10.010000"],["2024-07-25T10:21:11.010000"],["2024-07-25T10:21:12.010000"],["2024-07-25T10:21:13.010000"],["2024-07-25T10:21:14.010000"],["2024-07-25T10:21:15.010000"],["2024-07-25T10:21:16.010000"],["2024-07-25T10:21:17.010000"],["2024-07-25T10:21:18.010000"],["2024-07-25T10:21:19.010000"],["2024-07-25T10:21:20.010000"],["2024-07-25T10:21:21.010000"],["2024-07-25T10:21:22.010000"],["2024-07-25T10:21:23.010000"],["2024-07-25T10:21:24.010000"],["2024-07-25T10:21:25.010000"],["2024-07-25T10:21:26.010000"],["2024-07-25T10:21:27.010000"],["2024-07-25T10:21:28.010000"],["2024-07-25T10:21:29.010000"],["2024-07-25T10:21:30.010000"],["2024-07-25T10:21:31.010000"],["2024-07-25T10:21:32.010000"],["2024-07-25T10:21:33.010000"],["2024-07-25T10:21:34.010000"],["2024-07-25T10:21:35.010000"],["2024-07-25T10:21:36.010000"],["2024-07-25T10:21:37.010000"],["2024-07-25T10:21:38.010000"],["2024-07-25T10:21:39.010000"],["2024-07-25T10:21:40.010000"],["2024-07-25T10:21:41.010000"],["2024-07-25T10:21:42.010000"],["2024-07-25T10:21:43.010000"],["2024-07-25T10:21:44.010000"],["2024-07-25T10:21:45.010000"],["2024-07-25T10:21:46.010000"],["2024-07-25T10:21:47.010000"],["2024-07-25T10:21:48.010000"],["2024-07-25T10:21:49.010000"],["2024-07-25T10:21:50.010000"],["2024-07-25T10:21:51.010000"],["2024-07-25T10:21:52.010000"],["2024-07-25T10:21:53.010000"],["2024-07-25T10:21:54.010000"],["2024-07-25T10:21:55.010000"],["2024-07-25T10:21:56.010000"],["2024-07-25T10:21:57.010000"],["2024-07-25T10:21:58.010000"],["2024-07-25T10:21:59.010000"],["2024-07-25T10:22:00.010000"],["2024-07-25T10:22:01.010000"],["2024-07-25T10:22:02.010000"],["2024-07-25T10:22:03.010000"],["2024-07-25T10:22:04.010000"],["2024-07-25T10:22:05.010000"],["2024-07-25T10:22:06.010000"],["2024-07-25T10:22:07.010000"],["2024-07-25T10:22:08.010000"],["2024-07-25T10:22:09.010000"],["2024-07-25T10:22:10.010000"],["2024-07-25T10:22:11.010000"],["2024-07-25T10:22:12.010000"],["2024-07-25T10:22:13.010000"],["2024-07-25T10:22:14.010000"],["2024-07-25T10:22:15.010000"],["2024-07-25T10:22:16.010000"],["2024-07-25T10:22:17.010000"],["2024-07-25T10:22:18.010000"],["2024-07-25T10:22:19.010000"],["2024-07-25T10:22:20.010000"],["2024-07-25T10:22:21.010000"],["2024-07-25T10:22:22.010000"],["2024-07-25T10:22:23.010000"],["2024-07-25T10:22:24.010000"],["2024-07-25T10:22:25.010000"],["2024-07-25T10:22:26.010000"],["2024-07-25T10:22:27.010000"],["2024-07-25T10:22:28.010000"],["2024-07-25T10:22:29.010000"],["2024-07-25T10:22:30.010000"],["2024-07-25T10:22:31.010000"],["2024-07-25T10:22:32.010000"],["2024-07-25T10:22:33.010000"],["2024-07-25T10:22:34.010000"],["2024-07-25T10:22:35.010000"],["2024-07-25T10:22:36.010000"],["2024-07-25T10:22:37.010000"],["2024-07-25T10:22:38.010000"],["2024-07-25T10:22:39.010000"],["2024-07-25T10:22:40.010000"],["2024-07-25T10:22:41.010000"],["2024-07-25T10:22:42.010000"],["2024-07-25T10:22:43.010000"],["2024-07-25T10:22:44.010000"],["2024-07-25T10:22:45.010000"],["2024-07-25T10:22:46.010000"],["2024-07-25T10:22:47.010000"],["2024-07-25T10:22:48.010000"],["2024-07-25T10:22:49.010000"],["2024-07-25T10:22:50.010000"],["2024-07-25T10:22:51.010000"],["2024-07-25T10:22:52.010000"],["2024-07-25T10:22:53.010000"],["2024-07-25T10:22:54.010000"],["2024-07-25T10:22:55.010000"],["2024-07-25T10:22:56.010000"],["2024-07-25T10:22:57.010000"],["2024-07-25T10:22:58.010000"],["2024-07-25T10:22:59.010000"],["2024-07-25T10:23:00.010000"],["2024-07-25T10:23:01.010000"],["2024-07-25T10:23:02.010000"],["2024-07-25T10:23:03.010000"],["2024-07-25T10:23:04.010000"],["2024-07-25T10:23:05.010000"],["2024-07-25T10:23:06.010000"],["2024-07-25T10:23:07.010000"],["2024-07-25T10:23:08.010000"],["2024-07-25T10:23:09.010000"],["2024-07-25T10:23:10.010000"],["2024-07-25T10:23:11.010000"],["2024-07-25T10:23:12.010000"],["2024-07-25T10:23:13.010000"],["2024-07-25T10:23:14.010000"],["2024-07-25T10:23:15.010000"],["2024-07-25T10:23:16.010000"],["2024-07-25T10:23:17.010000"],["2024-07-25T10:23:18.010000"],["2024-07-25T10:23:19.010000"],["2024-07-25T10:23:20.010000"],["2024-07-25T10:23:21.010000"],["2024-07-25T10:23:22.010000"],["2024-07-25T10:23:23.010000"],["2024-07-25T10:23:24.010000"],["2024-07-25T10:23:25.010000"],["2024-07-25T10:23:26.010000"],["2024-07-25T10:23:27.010000"],["2024-07-25T10:23:28.010000"],["2024-07-25T10:23:29.010000"],["2024-07-25T10:23:30.010000"],["2024-07-25T10:23:31.010000"],["2024-07-25T10:23:32.010000"],["2024-07-25T10:23:33.010000"],["2024-07-25T10:23:34.010000"],["2024-07-25T10:23:35.010000"],["2024-07-25T10:23:36.010000"],["2024-07-25T10:23:37.010000"],["2024-07-25T10:23:38.010000"],["2024-07-25T10:23:39.010000"],["2024-07-25T10:23:40.010000"],["2024-07-25T10:23:41.010000"],["2024-07-25T10:23:42.010000"],["2024-07-25T10:23:43.010000"],["2024-07-25T10:23:44.010000"],["2024-07-25T10:23:45.010000"],["2024-07-25T10:23:46.010000"],["2024-07-25T10:23:47.010000"],["2024-07-25T10:23:48.010000"],["2024-07-25T10:23:49.010000"],["2024-07-25T10:23:50.010000"],["2024-07-25T10:23:51.010000"],["2024-07-25T10:23:52.010000"],["2024-07-25T10:23:53.010000"],["2024-07-25T10:23:54.010000"],["2024-07-25T10:23:55.010000"],["2024-07-25T10:23:56.010000"],["2024-07-25T10:23:57.010000"],["2024-07-25T10:23:58.010000"],["2024-07-25T10:23:59.010000"],["2024-07-25T10:24:00.010000"],["2024-07-25T10:24:01.010000"],["2024-07-25T10:24:02.010000"],["2024-07-25T10:24:03.010000"],["2024-07-25T10:24:04.010000"],["2024-07-25T10:24:05.010000"],["2024-07-25T10:24:06.010000"],["2024-07-25T10:24:07.010000"],["2024-07-25T10:24:08.010000"],["2024-07-25T10:24:09.010000"],["2024-07-25T10:24:10.010000"],["2024-07-25T10:24:11.010000"],["2024-07-25T10:24:12.010000"],["2024-07-25T10:24:13.010000"],["2024-07-25T10:24:14.010000"],["2024-07-25T10:24:15.010000"],["2024-07-25T10:24:16.010000"],["2024-07-25T10:24:17.010000"],["2024-07-25T10:24:18.010000"],["2024-07-25T10:24:19.010000"],["2024-07-25T10:24:20.010000"],["2024-07-25T10:24:21.010000"],["2024-07-25T10:24:22.010000"],["2024-07-25T10:24:23.010000"],["2024-07-25T10:24:24.010000"],["2024-07-25T10:24:25.010000"],["2024-07-25T10:24:26.010000"],["2024-07-25T10:24:27.010000"],["2024-07-25T10:24:28.010000"],["2024-07-25T10:24:29.010000"],["2024-07-25T10:24:30.010000"],["2024-07-25T10:24:31.010000"],["2024-07-25T10:24:32.010000"],["2024-07-25T10:24:33.010000"],["2024-07-25T10:24:34.010000"],["2024-07-25T10:24:35.010000"],["2024-07-25T10:24:36.010000"],["2024-07-25T10:24:37.010000"],["2024-07-25T10:24:38.010000"],["2024-07-25T10:24:39.010000"],["2024-07-25T10:24:40.010000"],["2024-07-25T10:24:41.010000"],["2024-07-25T10:24:42.010000"],["2024-07-25T10:24:43.010000"],["2024-07-25T10:24:44.010000"],["2024-07-25T10:24:45.010000"],["2024-07-25T10:24:46.010000"],["2024-07-25T10:24:47.010000"],["2024-07-25T10:24:48.010000"],["2024-07-25T10:24:49.010000"],["2024-07-25T10:24:50.010000"],["2024-07-25T10:24:51.010000"],["2024-07-25T10:24:52.010000"],["2024-07-25T10:24:53.010000"],["2024-07-25T10:24:54.010000"],["2024-07-25T10:24:55.010000"],["2024-07-25T10:24:56.010000"],["2024-07-25T10:24:57.010000"],["2024-07-25T10:24:58.010000"],["2024-07-25T10:24:59.010000"],["2024-07-25T10:25:00.010000"],["2024-07-25T10:25:01.010000"],["2024-07-25T10:25:02.010000"],["2024-07-25T10:25:03.010000"],["2024-07-25T10:25:04.010000"],["2024-07-25T10:25:05.010000"],["2024-07-25T10:25:06.010000"],["2024-07-25T10:25:07.010000"],["2024-07-25T10:25:08.010000"],["2024-07-25T10:25:09.010000"],["2024-07-25T10:25:10.010000"],["2024-07-25T10:25:11.010000"],["2024-07-25T10:25:12.010000"],["2024-07-25T10:25:13.010000"],["2024-07-25T10:25:14.010000"],["2024-07-25T10:25:15.010000"],["2024-07-25T10:25:16.010000"],["2024-07-25T10:25:17.010000"],["2024-07-25T10:25:18.010000"],["2024-07-25T10:25:19.010000"],["2024-07-25T10:25:20.010000"],["2024-07-25T10:25:21.010000"],["2024-07-25T10:25:22.010000"],["2024-07-25T10:25:23.010000"],["2024-07-25T10:25:24.010000"],["2024-07-25T10:25:25.010000"],["2024-07-25T10:25:26.010000"],["2024-07-25T10:25:27.010000"],["2024-07-25T10:25:28.010000"],["2024-07-25T10:25:29.010000"],["2024-07-25T10:25:30.010000"],["2024-07-25T10:25:31.010000"],["2024-07-25T10:25:32.010000"],["2024-07-25T10:25:33.010000"],["2024-07-25T10:25:34.010000"],["2024-07-25T10:25:35.010000"],["2024-07-25T10:25:36.010000"],["2024-07-25T10:25:37.010000"],["2024-07-25T10:25:38.010000"],["2024-07-25T10:25:39.010000"],["2024-07-25T10:25:40.010000"],["2024-07-25T10:25:41.010000"],["2024-07-25T10:25:42.010000"],["2024-07-25T10:25:43.010000"],["2024-07-25T10:25:44.010000"],["2024-07-25T10:25:45.010000"],["2024-07-25T10:25:46.010000"],["2024-07-25T10:25:47.010000"],["2024-07-25T10:25:48.010000"],["2024-07-25T10:25:49.010000"],["2024-07-25T10:25:50.010000"],["2024-07-25T10:25:51.010000"],["2024-07-25T10:25:52.010000"],["2024-07-25T10:25:53.010000"],["2024-07-25T10:25:54.010000"],["2024-07-25T10:25:55.010000"],["2024-07-25T10:25:56.010000"],["2024-07-25T10:25:57.010000"],["2024-07-25T10:25:58.010000"],["2024-07-25T10:25:59.010000"],["2024-07-25T10:26:00.010000"],["2024-07-25T10:26:01.010000"],["2024-07-25T10:26:02.010000"],["2024-07-25T10:26:03.010000"],["2024-07-25T10:26:04.010000"],["2024-07-25T10:26:05.010000"],["2024-07-25T10:26:06.010000"],["2024-07-25T10:26:07.010000"],["2024-07-25T10:26:08.010000"],["2024-07-25T10:26:09.010000"],["2024-07-25T10:26:10.010000"],["2024-07-25T10:26:11.010000"],["2024-07-25T10:26:12.010000"],["2024-07-25T10:26:13.010000"],["2024-07-25T10:26:14.010000"],["2024-07-25T10:26:15.010000"],["2024-07-25T10:26:16.010000"],["2024-07-25T10:26:17.010000"],["2024-07-25T10:26:18.010000"],["2024-07-25T10:26:19.010000"],["2024-07-25T10:26:20.010000"],["2024-07-25T10:26:21.010000"],["2024-07-25T10:26:22.010000"],["2024-07-25T10:26:23.010000"],["2024-07-25T10:26:24.010000"],["2024-07-25T10:26:25.010000"],["2024-07-25T10:26:26.010000"],["2024-07-25T10:26:27.010000"],["2024-07-25T10:26:28.010000"],["2024-07-25T10:26:29.010000"],["2024-07-25T10:26:30.010000"],["2024-07-25T10:26:31.010000"],["2024-07-25T10:26:32.010000"],["2024-07-25T10:26:33.010000"],["2024-07-25T10:26:34.010000"],["2024-07-25T10:26:35.010000"],["2024-07-25T10:26:36.010000"],["2024-07-25T10:26:37.010000"],["2024-07-25T10:26:38.010000"],["2024-07-25T10:26:39.010000"],["2024-07-25T10:26:40.010000"],["2024-07-25T10:26:41.010000"],["2024-07-25T10:26:42.010000"],["2024-07-25T10:26:43.010000"],["2024-07-25T10:26:44.010000"],["2024-07-25T10:26:45.010000"],["2024-07-25T10:26:46.010000"],["2024-07-25T10:26:47.010000"],["2024-07-25T10:26:48.010000"],["2024-07-25T10:26:49.010000"],["2024-07-25T10:26:50.010000"],["2024-07-25T10:26:51.010000"],["2024-07-25T10:26:52.010000"],["2024-07-25T10:26:53.010000"],["2024-07-25T10:26:54.010000"],["2024-07-25T10:26:55.010000"],["2024-07-25T10:26:56.010000"],["2024-07-25T10:26:57.010000"],["2024-07-25T10:26:58.010000"],["2024-07-25T10:26:59.010000"],["2024-07-25T10:27:00.010000"],["2024-07-25T10:27:01.010000"],["2024-07-25T10:27:02.010000"],["2024-07-25T10:27:03.010000"],["2024-07-25T10:27:04.010000"],["2024-07-25T10:27:05.010000"],["2024-07-25T10:27:06.010000"],["2024-07-25T10:27:07.010000"],["2024-07-25T10:27:08.010000"],["2024-07-25T10:27:09.010000"],["2024-07-25T10:27:10.010000"],["2024-07-25T10:27:11.010000"],["2024-07-25T10:27:12.010000"],["2024-07-25T10:27:13.010000"],["2024-07-25T10:27:14.010000"],["2024-07-25T10:27:15.010000"],["2024-07-25T10:27:16.010000"],["2024-07-25T10:27:17.010000"],["2024-07-25T10:27:18.010000"],["2024-07-25T10:27:19.010000"],["2024-07-25T10:27:20.010000"],["2024-07-25T10:27:21.010000"],["2024-07-25T10:27:22.010000"],["2024-07-25T10:27:23.010000"],["2024-07-25T10:27:24.010000"],["2024-07-25T10:27:25.010000"],["2024-07-25T10:27:26.010000"],["2024-07-25T10:27:27.010000"],["2024-07-25T10:27:28.010000"],["2024-07-25T10:27:29.010000"],["2024-07-25T10:27:30.010000"],["2024-07-25T10:27:31.010000"],["2024-07-25T10:27:32.010000"],["2024-07-25T10:27:33.010000"],["2024-07-25T10:27:34.010000"],["2024-07-25T10:27:35.010000"],["2024-07-25T10:27:36.010000"],["2024-07-25T10:27:37.010000"],["2024-07-25T10:27:38.010000"],["2024-07-25T10:27:39.010000"],["2024-07-25T10:27:40.010000"],["2024-07-25T10:27:41.010000"],["2024-07-25T10:27:42.010000"],["2024-07-25T10:27:43.010000"],["2024-07-25T10:27:44.010000"],["2024-07-25T10:27:45.010000"],["2024-07-25T10:27:46.010000"],["2024-07-25T10:27:47.010000"],["2024-07-25T10:27:48.010000"],["2024-07-25T10:27:49.010000"],["2024-07-25T10:27:50.010000"],["2024-07-25T10:27:51.010000"],["2024-07-25T10:27:52.010000"],["2024-07-25T10:27:53.010000"],["2024-07-25T10:27:54.010000"],["2024-07-25T10:27:55.010000"],["2024-07-25T10:27:56.010000"],["2024-07-25T10:27:57.010000"],["2024-07-25T10:27:58.010000"],["2024-07-25T10:27:59.010000"],["2024-07-25T10:28:00.010000"],["2024-07-25T10:28:01.010000"],["2024-07-25T10:28:02.010000"],["2024-07-25T10:28:03.010000"],["2024-07-25T10:28:04.010000"],["2024-07-25T10:28:05.010000"],["2024-07-25T10:28:06.010000"],["2024-07-25T10:28:07.010000"],["2024-07-25T10:28:08.010000"],["2024-07-25T10:28:09.010000"],["2024-07-25T10:28:10.010000"],["2024-07-25T10:28:11.010000"],["2024-07-25T10:28:12.010000"],["2024-07-25T10:28:13.010000"],["2024-07-25T10:28:14.010000"],["2024-07-25T10:28:15.010000"],["2024-07-25T10:28:16.010000"],["2024-07-25T10:28:17.010000"],["2024-07-25T10:28:18.010000"],["2024-07-25T10:28:19.010000"],["2024-07-25T10:28:20.010000"],["2024-07-25T10:28:21.010000"],["2024-07-25T10:28:22.010000"],["2024-07-25T10:28:23.010000"],["2024-07-25T10:28:24.010000"],["2024-07-25T10:28:25.010000"],["2024-07-25T10:28:26.010000"],["2024-07-25T10:28:27.010000"],["2024-07-25T10:28:28.010000"],["2024-07-25T10:28:29.010000"],["2024-07-25T10:28:30.010000"],["2024-07-25T10:28:31.010000"],["2024-07-25T10:28:32.010000"],["2024-07-25T10:28:33.010000"],["2024-07-25T10:28:34.010000"],["2024-07-25T10:28:35.010000"],["2024-07-25T10:28:36.010000"],["2024-07-25T10:28:37.010000"],["2024-07-25T10:28:38.010000"],["2024-07-25T10:28:39.010000"],["2024-07-25T10:28:40.010000"],["2024-07-25T10:28:41.010000"],["2024-07-25T10:28:42.010000"],["2024-07-25T10:28:43.010000"],["2024-07-25T10:28:44.010000"],["2024-07-25T10:28:45.010000"],["2024-07-25T10:28:46.010000"],["2024-07-25T10:28:47.010000"],["2024-07-25T10:28:48.010000"],["2024-07-25T10:28:49.010000"],["2024-07-25T10:28:50.010000"],["2024-07-25T10:28:51.010000"],["2024-07-25T10:28:52.010000"],["2024-07-25T10:28:53.010000"],["2024-07-25T10:28:54.010000"],["2024-07-25T10:28:55.010000"],["2024-07-25T10:28:56.010000"],["2024-07-25T10:28:57.010000"],["2024-07-25T10:28:58.010000"],["2024-07-25T10:28:59.010000"],["2024-07-25T10:29:00.010000"],["2024-07-25T10:29:01.010000"],["2024-07-25T10:29:02.010000"],["2024-07-25T10:29:03.010000"],["2024-07-25T10:29:04.010000"],["2024-07-25T10:29:05.010000"],["2024-07-25T10:29:06.010000"],["2024-07-25T10:29:07.010000"],["2024-07-25T10:29:08.010000"],["2024-07-25T10:29:09.010000"],["2024-07-25T10:29:10.010000"],["2024-07-25T10:29:11.010000"],["2024-07-25T10:29:12.010000"],["2024-07-25T10:29:13.010000"],["2024-07-25T10:29:14.010000"],["2024-07-25T10:29:15.010000"],["2024-07-25T10:29:16.010000"],["2024-07-25T10:29:17.010000"],["2024-07-25T10:29:18.010000"],["2024-07-25T10:29:19.010000"],["2024-07-25T10:29:20.010000"],["2024-07-25T10:29:21.010000"],["2024-07-25T10:29:22.010000"],["2024-07-25T10:29:23.010000"],["2024-07-25T10:29:24.010000"],["2024-07-25T10:29:25.010000"],["2024-07-25T10:29:26.010000"],["2024-07-25T10:29:27.010000"],["2024-07-25T10:29:28.010000"],["2024-07-25T10:29:29.010000"],["2024-07-25T10:29:30.010000"],["2024-07-25T10:29:31.010000"],["2024-07-25T10:29:32.010000"],["2024-07-25T10:29:33.010000"],["2024-07-25T10:29:34.010000"],["2024-07-25T10:29:35.010000"],["2024-07-25T10:29:36.010000"],["2024-07-25T10:29:37.010000"],["2024-07-25T10:29:38.010000"],["2024-07-25T10:29:39.010000"],["2024-07-25T10:29:40.010000"],["2024-07-25T10:29:41.010000"],["2024-07-25T10:29:42.010000"],["2024-07-25T10:29:43.010000"],["2024-07-25T10:29:44.010000"],["2024-07-25T10:29:45.010000"],["2024-07-25T10:29:46.010000"],["2024-07-25T10:29:47.010000"],["2024-07-25T10:29:48.010000"],["2024-07-25T10:29:49.010000"],["2024-07-25T10:29:50.010000"],["2024-07-25T10:29:51.010000"],["2024-07-25T10:29:52.010000"],["2024-07-25T10:29:53.010000"],["2024-07-25T10:29:54.010000"],["2024-07-25T10:29:55.010000"],["2024-07-25T10:29:56.010000"],["2024-07-25T10:29:57.010000"],["2024-07-25T10:29:58.010000"],["2024-07-25T10:29:59.010000"],["2024-07-25T10:30:00.010000"],["2024-07-25T10:30:01.010000"],["2024-07-25T10:30:02.010000"],["2024-07-25T10:30:03.010000"],["2024-07-25T10:30:04.010000"],["2024-07-25T10:30:05.010000"],["2024-07-25T10:30:06.010000"],["2024-07-25T10:30:07.010000"],["2024-07-25T10:30:08.010000"],["2024-07-25T10:30:09.010000"],["2024-07-25T10:30:10.010000"],["2024-07-25T10:30:11.010000"],["2024-07-25T10:30:12.010000"],["2024-07-25T10:30:13.010000"],["2024-07-25T10:30:14.010000"],["2024-07-25T10:30:15.010000"],["2024-07-25T10:30:16.010000"],["2024-07-25T10:30:17.010000"],["2024-07-25T10:30:18.010000"],["2024-07-25T10:30:19.010000"],["2024-07-25T10:30:20.010000"],["2024-07-25T10:30:21.010000"],["2024-07-25T10:30:22.010000"],["2024-07-25T10:30:23.010000"],["2024-07-25T10:30:24.010000"],["2024-07-25T10:30:25.010000"],["2024-07-25T10:30:26.010000"],["2024-07-25T10:30:27.010000"],["2024-07-25T10:30:28.010000"],["2024-07-25T10:30:29.010000"],["2024-07-25T10:30:30.010000"],["2024-07-25T10:30:31.010000"],["2024-07-25T10:30:32.010000"],["2024-07-25T10:30:33.010000"],["2024-07-25T10:30:34.010000"],["2024-07-25T10:30:35.010000"],["2024-07-25T10:30:36.010000"],["2024-07-25T10:30:37.010000"],["2024-07-25T10:30:38.010000"],["2024-07-25T10:30:39.010000"],["2024-07-25T10:30:40.010000"],["2024-07-25T10:30:41.010000"],["2024-07-25T10:30:42.010000"],["2024-07-25T10:30:43.010000"],["2024-07-25T10:30:44.010000"],["2024-07-25T10:30:45.010000"],["2024-07-25T10:30:46.010000"],["2024-07-25T10:30:47.010000"],["2024-07-25T10:30:48.010000"],["2024-07-25T10:30:49.010000"],["2024-07-25T10:30:50.010000"],["2024-07-25T10:30:51.010000"],["2024-07-25T10:30:52.010000"],["2024-07-25T10:30:53.010000"],["2024-07-25T10:30:54.010000"],["2024-07-25T10:30:55.010000"],["2024-07-25T10:30:56.010000"],["2024-07-25T10:30:57.010000"],["2024-07-25T10:30:58.010000"],["2024-07-25T10:30:59.010000"],["2024-07-25T10:31:00.010000"],["2024-07-25T10:31:01.010000"],["2024-07-25T10:31:02.010000"],["2024-07-25T10:31:03.010000"],["2024-07-25T10:31:04.010000"],["2024-07-25T10:31:05.010000"],["2024-07-25T10:31:06.010000"],["2024-07-25T10:31:07.010000"],["2024-07-25T10:31:08.010000"],["2024-07-25T10:31:09.010000"],["2024-07-25T10:31:10.010000"],["2024-07-25T10:31:11.010000"],["2024-07-25T10:31:12.010000"],["2024-07-25T10:31:13.010000"],["2024-07-25T10:31:14.010000"],["2024-07-25T10:31:15.010000"],["2024-07-25T10:31:16.010000"],["2024-07-25T10:31:17.010000"],["2024-07-25T10:31:18.010000"],["2024-07-25T10:31:19.010000"],["2024-07-25T10:31:20.010000"],["2024-07-25T10:31:21.010000"],["2024-07-25T10:31:22.010000"],["2024-07-25T10:31:23.010000"],["2024-07-25T10:31:24.010000"],["2024-07-25T10:31:25.010000"],["2024-07-25T10:31:26.010000"],["2024-07-25T10:31:27.010000"],["2024-07-25T10:31:28.010000"],["2024-07-25T10:31:29.010000"],["2024-07-25T10:31:30.010000"],["2024-07-25T10:31:31.010000"],["2024-07-25T10:31:32.010000"],["2024-07-25T10:31:33.010000"],["2024-07-25T10:31:34.010000"],["2024-07-25T10:31:35.010000"],["2024-07-25T10:31:36.010000"],["2024-07-25T10:31:37.010000"],["2024-07-25T10:31:38.010000"],["2024-07-25T10:31:39.010000"],["2024-07-25T10:31:40.010000"],["2024-07-25T10:31:41.010000"],["2024-07-25T10:31:42.010000"],["2024-07-25T10:31:43.010000"],["2024-07-25T10:31:44.010000"],["2024-07-25T10:31:45.010000"],["2024-07-25T10:31:46.010000"],["2024-07-25T10:31:47.010000"],["2024-07-25T10:31:48.010000"],["2024-07-25T10:31:49.010000"],["2024-07-25T10:31:50.010000"],["2024-07-25T10:31:51.010000"],["2024-07-25T10:31:52.010000"],["2024-07-25T10:31:53.010000"],["2024-07-25T10:31:54.010000"],["2024-07-25T10:31:55.010000"],["2024-07-25T10:31:56.010000"],["2024-07-25T10:31:57.010000"],["2024-07-25T10:31:58.010000"],["2024-07-25T10:31:59.010000"],["2024-07-25T10:32:00.010000"],["2024-07-25T10:32:01.010000"],["2024-07-25T10:32:02.010000"],["2024-07-25T10:32:03.010000"],["2024-07-25T10:32:04.010000"],["2024-07-25T10:32:05.010000"],["2024-07-25T10:32:06.010000"],["2024-07-25T10:32:07.010000"],["2024-07-25T10:32:08.010000"],["2024-07-25T10:32:09.010000"],["2024-07-25T10:32:10.010000"],["2024-07-25T10:32:11.010000"],["2024-07-25T10:32:12.010000"],["2024-07-25T10:32:13.010000"],["2024-07-25T10:32:14.010000"],["2024-07-25T10:32:15.010000"],["2024-07-25T10:32:16.010000"],["2024-07-25T10:32:17.010000"],["2024-07-25T10:32:18.010000"],["2024-07-25T10:32:19.010000"],["2024-07-25T10:32:20.010000"],["2024-07-25T10:32:21.010000"],["2024-07-25T10:32:22.010000"],["2024-07-25T10:32:23.010000"],["2024-07-25T10:32:24.010000"],["2024-07-25T10:32:25.010000"],["2024-07-25T10:32:26.010000"],["2024-07-25T10:32:27.010000"],["2024-07-25T10:32:28.010000"],["2024-07-25T10:32:29.010000"],["2024-07-25T10:32:30.010000"],["2024-07-25T10:32:31.010000"],["2024-07-25T10:32:32.010000"],["2024-07-25T10:32:33.010000"],["2024-07-25T10:32:34.010000"],["2024-07-25T10:32:35.010000"],["2024-07-25T10:32:36.010000"],["2024-07-25T10:32:37.010000"],["2024-07-25T10:32:38.010000"],["2024-07-25T10:32:39.010000"],["2024-07-25T10:32:40.010000"],["2024-07-25T10:32:41.010000"],["2024-07-25T10:32:42.010000"],["2024-07-25T10:32:43.010000"],["2024-07-25T10:32:44.010000"],["2024-07-25T10:32:45.010000"],["2024-07-25T10:32:46.010000"],["2024-07-25T10:32:47.010000"],["2024-07-25T10:32:48.010000"],["2024-07-25T10:32:49.010000"],["2024-07-25T10:32:50.010000"],["2024-07-25T10:32:51.010000"],["2024-07-25T10:32:52.010000"],["2024-07-25T10:32:53.010000"],["2024-07-25T10:32:54.010000"],["2024-07-25T10:32:55.010000"],["2024-07-25T10:32:56.010000"],["2024-07-25T10:32:57.010000"],["2024-07-25T10:32:58.010000"],["2024-07-25T10:32:59.010000"],["2024-07-25T10:33:00.010000"],["2024-07-25T10:33:01.010000"],["2024-07-25T10:33:02.010000"],["2024-07-25T10:33:03.010000"],["2024-07-25T10:33:04.010000"],["2024-07-25T10:33:05.010000"],["2024-07-25T10:33:06.010000"],["2024-07-25T10:33:07.010000"],["2024-07-25T10:33:08.010000"],["2024-07-25T10:33:09.010000"],["2024-07-25T10:33:10.010000"],["2024-07-25T10:33:11.010000"],["2024-07-25T10:33:12.010000"],["2024-07-25T10:33:13.010000"],["2024-07-25T10:33:14.010000"],["2024-07-25T10:33:15.010000"],["2024-07-25T10:33:16.010000"],["2024-07-25T10:33:17.010000"],["2024-07-25T10:33:18.010000"],["2024-07-25T10:33:19.010000"],["2024-07-25T10:33:20.010000"],["2024-07-25T10:33:21.010000"],["2024-07-25T10:33:22.010000"],["2024-07-25T10:33:23.010000"],["2024-07-25T10:33:24.010000"],["2024-07-25T10:33:25.010000"],["2024-07-25T10:33:26.010000"],["2024-07-25T10:33:27.010000"],["2024-07-25T10:33:28.010000"],["2024-07-25T10:33:29.010000"],["2024-07-25T10:33:30.010000"],["2024-07-25T10:33:31.010000"],["2024-07-25T10:33:32.010000"],["2024-07-25T10:33:33.010000"],["2024-07-25T10:33:34.010000"],["2024-07-25T10:33:35.010000"],["2024-07-25T10:33:36.010000"],["2024-07-25T10:33:37.010000"],["2024-07-25T10:33:38.010000"],["2024-07-25T10:33:39.010000"],["2024-07-25T10:33:40.010000"],["2024-07-25T10:33:41.010000"],["2024-07-25T10:33:42.010000"],["2024-07-25T10:33:43.010000"],["2024-07-25T10:33:44.010000"],["2024-07-25T10:33:45.010000"],["2024-07-25T10:33:46.010000"],["2024-07-25T10:33:47.010000"],["2024-07-25T10:33:48.010000"],["2024-07-25T10:33:49.010000"],["2024-07-25T10:33:50.010000"],["2024-07-25T10:33:51.010000"],["2024-07-25T10:33:52.010000"],["2024-07-25T10:33:53.010000"],["2024-07-25T10:33:54.010000"],["2024-07-25T10:33:55.010000"],["2024-07-25T10:33:56.010000"],["2024-07-25T10:33:57.010000"],["2024-07-25T10:33:58.010000"],["2024-07-25T10:33:59.010000"],["2024-07-25T10:34:00.010000"],["2024-07-25T10:34:01.010000"],["2024-07-25T10:34:02.010000"],["2024-07-25T10:34:03.010000"],["2024-07-25T10:34:04.010000"],["2024-07-25T10:34:05.010000"],["2024-07-25T10:34:06.010000"],["2024-07-25T10:34:07.010000"],["2024-07-25T10:34:08.010000"],["2024-07-25T10:34:09.010000"],["2024-07-25T10:34:10.010000"],["2024-07-25T10:34:11.010000"],["2024-07-25T10:34:12.010000"],["2024-07-25T10:34:13.010000"],["2024-07-25T10:34:14.010000"],["2024-07-25T10:34:15.010000"],["2024-07-25T10:34:16.010000"],["2024-07-25T10:34:17.010000"],["2024-07-25T10:34:18.010000"],["2024-07-25T10:34:19.010000"],["2024-07-25T10:34:20.010000"],["2024-07-25T10:34:21.010000"],["2024-07-25T10:34:22.010000"],["2024-07-25T10:34:23.010000"],["2024-07-25T10:34:24.010000"],["2024-07-25T10:34:25.010000"],["2024-07-25T10:34:26.010000"],["2024-07-25T10:34:27.010000"],["2024-07-25T10:34:28.010000"],["2024-07-25T10:34:29.010000"],["2024-07-25T10:34:30.010000"],["2024-07-25T10:34:31.010000"],["2024-07-25T10:34:32.010000"],["2024-07-25T10:34:33.010000"],["2024-07-25T10:34:34.010000"],["2024-07-25T10:34:35.010000"],["2024-07-25T10:34:36.010000"],["2024-07-25T10:34:37.010000"],["2024-07-25T10:34:38.010000"],["2024-07-25T10:34:39.010000"],["2024-07-25T10:34:40.010000"],["2024-07-25T10:34:41.010000"],["2024-07-25T10:34:42.010000"],["2024-07-25T10:34:43.010000"],["2024-07-25T10:34:44.010000"],["2024-07-25T10:34:45.010000"],["2024-07-25T10:34:46.010000"],["2024-07-25T10:34:47.010000"],["2024-07-25T10:34:48.010000"],["2024-07-25T10:34:49.010000"],["2024-07-25T10:34:50.010000"],["2024-07-25T10:34:51.010000"],["2024-07-25T10:34:52.010000"],["2024-07-25T10:34:53.010000"],["2024-07-25T10:34:54.010000"],["2024-07-25T10:34:55.010000"],["2024-07-25T10:34:56.010000"],["2024-07-25T10:34:57.010000"],["2024-07-25T10:34:58.010000"],["2024-07-25T10:34:59.010000"],["2024-07-25T10:35:00.010000"],["2024-07-25T10:35:01.010000"],["2024-07-25T10:35:02.010000"],["2024-07-25T10:35:03.010000"],["2024-07-25T10:35:04.010000"],["2024-07-25T10:35:05.010000"],["2024-07-25T10:35:06.010000"],["2024-07-25T10:35:07.010000"],["2024-07-25T10:35:08.010000"],["2024-07-25T10:35:09.010000"],["2024-07-25T10:35:10.010000"],["2024-07-25T10:35:11.010000"],["2024-07-25T10:35:12.010000"],["2024-07-25T10:35:13.010000"],["2024-07-25T10:35:14.010000"],["2024-07-25T10:35:15.010000"],["2024-07-25T10:35:16.010000"],["2024-07-25T10:35:17.010000"],["2024-07-25T10:35:18.010000"],["2024-07-25T10:35:19.010000"],["2024-07-25T10:35:20.010000"],["2024-07-25T10:35:21.010000"],["2024-07-25T10:35:22.010000"],["2024-07-25T10:35:23.010000"],["2024-07-25T10:35:24.010000"],["2024-07-25T10:35:25.010000"],["2024-07-25T10:35:26.010000"],["2024-07-25T10:35:27.010000"],["2024-07-25T10:35:28.010000"],["2024-07-25T10:35:29.010000"],["2024-07-25T10:35:30.010000"],["2024-07-25T10:35:31.010000"],["2024-07-25T10:35:32.010000"],["2024-07-25T10:35:33.010000"],["2024-07-25T10:35:34.010000"],["2024-07-25T10:35:35.010000"],["2024-07-25T10:35:36.010000"],["2024-07-25T10:35:37.010000"],["2024-07-25T10:35:38.010000"],["2024-07-25T10:35:39.010000"],["2024-07-25T10:35:40.010000"],["2024-07-25T10:35:41.010000"],["2024-07-25T10:35:42.010000"],["2024-07-25T10:35:43.010000"],["2024-07-25T10:35:44.010000"],["2024-07-25T10:35:45.010000"],["2024-07-25T10:35:46.010000"],["2024-07-25T10:35:47.010000"],["2024-07-25T10:35:48.010000"],["2024-07-25T10:35:49.010000"],["2024-07-25T10:35:50.010000"],["2024-07-25T10:35:51.010000"],["2024-07-25T10:35:52.010000"],["2024-07-25T10:35:53.010000"],["2024-07-25T10:35:54.010000"],["2024-07-25T10:35:55.010000"],["2024-07-25T10:35:56.010000"],["2024-07-25T10:35:57.010000"],["2024-07-25T10:35:58.010000"],["2024-07-25T10:35:59.010000"],["2024-07-25T10:36:00.010000"],["2024-07-25T10:36:01.010000"],["2024-07-25T10:36:02.010000"],["2024-07-25T10:36:03.010000"],["2024-07-25T10:36:04.010000"],["2024-07-25T10:36:05.010000"],["2024-07-25T10:36:06.010000"],["2024-07-25T10:36:07.010000"],["2024-07-25T10:36:08.010000"],["2024-07-25T10:36:09.010000"],["2024-07-25T10:36:10.010000"],["2024-07-25T10:36:11.010000"],["2024-07-25T10:36:12.010000"],["2024-07-25T10:36:13.010000"],["2024-07-25T10:36:14.010000"],["2024-07-25T10:36:15.010000"],["2024-07-25T10:36:16.010000"],["2024-07-25T10:36:17.010000"],["2024-07-25T10:36:18.010000"],["2024-07-25T10:36:19.010000"],["2024-07-25T10:36:20.010000"],["2024-07-25T10:36:21.010000"],["2024-07-25T10:36:22.010000"],["2024-07-25T10:36:23.010000"],["2024-07-25T10:36:24.010000"],["2024-07-25T10:36:25.010000"],["2024-07-25T10:36:26.010000"],["2024-07-25T10:36:27.010000"],["2024-07-25T10:36:28.010000"],["2024-07-25T10:36:29.010000"],["2024-07-25T10:36:30.010000"],["2024-07-25T10:36:31.010000"],["2024-07-25T10:36:32.010000"],["2024-07-25T10:36:33.010000"],["2024-07-25T10:36:34.010000"],["2024-07-25T10:36:35.010000"],["2024-07-25T10:36:36.010000"],["2024-07-25T10:36:37.010000"],["2024-07-25T10:36:38.010000"],["2024-07-25T10:36:39.010000"],["2024-07-25T10:36:40.010000"],["2024-07-25T10:36:41.010000"],["2024-07-25T10:36:42.010000"],["2024-07-25T10:36:43.010000"],["2024-07-25T10:36:44.010000"],["2024-07-25T10:36:45.010000"],["2024-07-25T10:36:46.010000"],["2024-07-25T10:36:47.010000"],["2024-07-25T10:36:48.010000"],["2024-07-25T10:36:49.010000"],["2024-07-25T10:36:50.010000"],["2024-07-25T10:36:51.010000"],["2024-07-25T10:36:52.010000"],["2024-07-25T10:36:53.010000"],["2024-07-25T10:36:54.010000"],["2024-07-25T10:36:55.010000"],["2024-07-25T10:36:56.010000"],["2024-07-25T10:36:57.010000"],["2024-07-25T10:36:58.010000"],["2024-07-25T10:36:59.010000"],["2024-07-25T10:37:00.010000"],["2024-07-25T10:37:01.010000"],["2024-07-25T10:37:02.010000"],["2024-07-25T10:37:03.010000"],["2024-07-25T10:37:04.010000"],["2024-07-25T10:37:05.010000"],["2024-07-25T10:37:06.010000"],["2024-07-25T10:37:07.010000"],["2024-07-25T10:37:08.010000"],["2024-07-25T10:37:09.010000"],["2024-07-25T10:37:10.010000"],["2024-07-25T10:37:11.010000"],["2024-07-25T10:37:12.010000"],["2024-07-25T10:37:13.010000"],["2024-07-25T10:37:14.010000"],["2024-07-25T10:37:15.010000"],["2024-07-25T10:37:16.010000"],["2024-07-25T10:37:17.010000"],["2024-07-25T10:37:18.010000"],["2024-07-25T10:37:19.010000"],["2024-07-25T10:37:20.010000"],["2024-07-25T10:37:21.010000"],["2024-07-25T10:37:22.010000"],["2024-07-25T10:37:23.010000"],["2024-07-25T10:37:24.010000"],["2024-07-25T10:37:25.010000"],["2024-07-25T10:37:26.010000"],["2024-07-25T10:37:27.010000"],["2024-07-25T10:37:28.010000"],["2024-07-25T10:37:29.010000"],["2024-07-25T10:37:30.010000"],["2024-07-25T10:37:31.010000"],["2024-07-25T10:37:32.010000"],["2024-07-25T10:37:33.010000"],["2024-07-25T10:37:34.010000"],["2024-07-25T10:37:35.010000"],["2024-07-25T10:37:36.010000"],["2024-07-25T10:37:37.010000"],["2024-07-25T10:37:38.010000"],["2024-07-25T10:37:39.010000"],["2024-07-25T10:37:40.010000"],["2024-07-25T10:37:41.010000"],["2024-07-25T10:37:42.010000"],["2024-07-25T10:37:43.010000"],["2024-07-25T10:37:44.010000"],["2024-07-25T10:37:45.010000"],["2024-07-25T10:37:46.010000"],["2024-07-25T10:37:47.010000"],["2024-07-25T10:37:48.010000"],["2024-07-25T10:37:49.010000"],["2024-07-25T10:37:50.010000"],["2024-07-25T10:37:51.010000"],["2024-07-25T10:37:52.010000"],["2024-07-25T10:37:53.010000"],["2024-07-25T10:37:54.010000"],["2024-07-25T10:37:55.010000"],["2024-07-25T10:37:56.010000"],["2024-07-25T10:37:57.010000"],["2024-07-25T10:37:58.010000"],["2024-07-25T10:37:59.010000"],["2024-07-25T10:38:00.010000"],["2024-07-25T10:38:01.010000"],["2024-07-25T10:38:02.010000"],["2024-07-25T10:38:03.010000"],["2024-07-25T10:38:04.010000"],["2024-07-25T10:38:05.010000"],["2024-07-25T10:38:06.010000"],["2024-07-25T10:38:07.010000"],["2024-07-25T10:38:08.010000"],["2024-07-25T10:38:09.010000"],["2024-07-25T10:38:10.010000"],["2024-07-25T10:38:11.010000"],["2024-07-25T10:38:12.010000"],["2024-07-25T10:38:13.010000"],["2024-07-25T10:38:14.010000"],["2024-07-25T10:38:15.010000"],["2024-07-25T10:38:16.010000"],["2024-07-25T10:38:17.010000"],["2024-07-25T10:38:18.010000"],["2024-07-25T10:38:19.010000"],["2024-07-25T10:38:20.010000"],["2024-07-25T10:38:21.010000"],["2024-07-25T10:38:22.010000"],["2024-07-25T10:38:23.010000"],["2024-07-25T10:38:24.010000"],["2024-07-25T10:38:25.010000"],["2024-07-25T10:38:26.010000"],["2024-07-25T10:38:27.010000"],["2024-07-25T10:38:28.010000"],["2024-07-25T10:38:29.010000"],["2024-07-25T10:38:30.010000"],["2024-07-25T10:38:31.010000"],["2024-07-25T10:38:32.010000"],["2024-07-25T10:38:33.010000"],["2024-07-25T10:38:34.010000"],["2024-07-25T10:38:35.010000"],["2024-07-25T10:38:36.010000"],["2024-07-25T10:38:37.010000"],["2024-07-25T10:38:38.010000"],["2024-07-25T10:38:39.010000"],["2024-07-25T10:38:40.010000"],["2024-07-25T10:38:41.010000"],["2024-07-25T10:38:42.010000"],["2024-07-25T10:38:43.010000"],["2024-07-25T10:38:44.010000"],["2024-07-25T10:38:45.010000"],["2024-07-25T10:38:46.010000"],["2024-07-25T10:38:47.010000"],["2024-07-25T10:38:48.010000"],["2024-07-25T10:38:49.010000"],["2024-07-25T10:38:50.010000"],["2024-07-25T10:38:51.010000"],["2024-07-25T10:38:52.010000"],["2024-07-25T10:38:53.010000"],["2024-07-25T10:38:54.010000"],["2024-07-25T10:38:55.010000"],["2024-07-25T10:38:56.010000"],["2024-07-25T10:38:57.010000"],["2024-07-25T10:38:58.010000"],["2024-07-25T10:38:59.010000"],["2024-07-25T10:39:00.010000"],["2024-07-25T10:39:01.010000"],["2024-07-25T10:39:02.010000"],["2024-07-25T10:39:03.010000"],["2024-07-25T10:39:04.010000"],["2024-07-25T10:39:05.010000"],["2024-07-25T10:39:06.010000"],["2024-07-25T10:39:07.010000"],["2024-07-25T10:39:08.010000"],["2024-07-25T10:39:09.010000"],["2024-07-25T10:39:10.010000"],["2024-07-25T10:39:11.010000"],["2024-07-25T10:39:12.010000"],["2024-07-25T10:39:13.010000"],["2024-07-25T10:39:14.010000"],["2024-07-25T10:39:15.010000"],["2024-07-25T10:39:16.010000"],["2024-07-25T10:39:17.010000"],["2024-07-25T10:39:18.010000"],["2024-07-25T10:39:19.010000"],["2024-07-25T10:39:20.010000"],["2024-07-25T10:39:21.010000"],["2024-07-25T10:39:22.010000"],["2024-07-25T10:39:23.010000"],["2024-07-25T10:39:24.010000"],["2024-07-25T10:39:25.010000"],["2024-07-25T10:39:26.010000"],["2024-07-25T10:39:27.010000"],["2024-07-25T10:39:28.010000"],["2024-07-25T10:39:29.010000"],["2024-07-25T10:39:30.010000"],["2024-07-25T10:39:31.010000"],["2024-07-25T10:39:32.010000"],["2024-07-25T10:39:33.010000"],["2024-07-25T10:39:34.010000"],["2024-07-25T10:39:35.010000"],["2024-07-25T10:39:36.010000"],["2024-07-25T10:39:37.010000"],["2024-07-25T10:39:38.010000"],["2024-07-25T10:39:39.010000"],["2024-07-25T10:39:40.010000"],["2024-07-25T10:39:41.010000"],["2024-07-25T10:39:42.010000"],["2024-07-25T10:39:43.010000"],["2024-07-25T10:39:44.010000"],["2024-07-25T10:39:45.010000"],["2024-07-25T10:39:46.010000"],["2024-07-25T10:39:47.010000"],["2024-07-25T10:39:48.010000"],["2024-07-25T10:39:49.010000"],["2024-07-25T10:39:50.010000"],["2024-07-25T10:39:51.010000"],["2024-07-25T10:39:52.010000"],["2024-07-25T10:39:53.010000"],["2024-07-25T10:39:54.010000"],["2024-07-25T10:39:55.010000"],["2024-07-25T10:39:56.010000"],["2024-07-25T10:39:57.010000"],["2024-07-25T10:39:58.010000"],["2024-07-25T10:39:59.010000"],["2024-07-25T10:40:00.010000"],["2024-07-25T10:40:01.010000"],["2024-07-25T10:40:02.010000"],["2024-07-25T10:40:03.010000"],["2024-07-25T10:40:04.010000"],["2024-07-25T10:40:05.010000"],["2024-07-25T10:40:06.010000"],["2024-07-25T10:40:07.010000"],["2024-07-25T10:40:08.010000"],["2024-07-25T10:40:09.010000"],["2024-07-25T10:40:10.010000"],["2024-07-25T10:40:11.010000"],["2024-07-25T10:40:12.010000"],["2024-07-25T10:40:13.010000"],["2024-07-25T10:40:14.010000"],["2024-07-25T10:40:15.010000"],["2024-07-25T10:40:16.010000"],["2024-07-25T10:40:17.010000"],["2024-07-25T10:40:18.010000"],["2024-07-25T10:40:19.010000"],["2024-07-25T10:40:20.010000"],["2024-07-25T10:40:21.010000"],["2024-07-25T10:40:22.010000"],["2024-07-25T10:40:23.010000"],["2024-07-25T10:40:24.010000"],["2024-07-25T10:40:25.010000"],["2024-07-25T10:40:26.010000"],["2024-07-25T10:40:27.010000"],["2024-07-25T10:40:28.010000"],["2024-07-25T10:40:29.010000"],["2024-07-25T10:40:30.010000"],["2024-07-25T10:40:31.010000"],["2024-07-25T10:40:32.010000"],["2024-07-25T10:40:33.010000"],["2024-07-25T10:40:34.010000"],["2024-07-25T10:40:35.010000"],["2024-07-25T10:40:36.010000"],["2024-07-25T10:40:37.010000"],["2024-07-25T10:40:38.010000"],["2024-07-25T10:40:39.010000"],["2024-07-25T10:40:40.010000"],["2024-07-25T10:40:41.010000"],["2024-07-25T10:40:42.010000"],["2024-07-25T10:40:43.010000"],["2024-07-25T10:40:44.010000"],["2024-07-25T10:40:45.010000"],["2024-07-25T10:40:46.010000"],["2024-07-25T10:40:47.010000"],["2024-07-25T10:40:48.010000"],["2024-07-25T10:40:49.010000"],["2024-07-25T10:40:50.010000"],["2024-07-25T10:40:51.010000"],["2024-07-25T10:40:52.010000"],["2024-07-25T10:40:53.010000"],["2024-07-25T10:40:54.010000"],["2024-07-25T10:40:55.010000"],["2024-07-25T10:40:56.010000"],["2024-07-25T10:40:57.010000"],["2024-07-25T10:40:58.010000"],["2024-07-25T10:40:59.010000"],["2024-07-25T10:41:00.010000"],["2024-07-25T10:41:01.010000"],["2024-07-25T10:41:02.010000"],["2024-07-25T10:41:03.010000"],["2024-07-25T10:41:04.010000"],["2024-07-25T10:41:05.010000"],["2024-07-25T10:41:06.010000"],["2024-07-25T10:41:07.010000"],["2024-07-25T10:41:08.010000"],["2024-07-25T10:41:09.010000"],["2024-07-25T10:41:10.010000"],["2024-07-25T10:41:11.010000"],["2024-07-25T10:41:12.010000"],["2024-07-25T10:41:13.010000"],["2024-07-25T10:41:14.010000"],["2024-07-25T10:41:15.010000"],["2024-07-25T10:41:16.010000"],["2024-07-25T10:41:17.010000"],["2024-07-25T10:41:18.010000"],["2024-07-25T10:41:19.010000"],["2024-07-25T10:41:20.010000"],["2024-07-25T10:41:21.010000"],["2024-07-25T10:41:22.010000"],["2024-07-25T10:41:23.010000"],["2024-07-25T10:41:24.010000"],["2024-07-25T10:41:25.010000"],["2024-07-25T10:41:26.010000"],["2024-07-25T10:41:27.010000"],["2024-07-25T10:41:28.010000"],["2024-07-25T10:41:29.010000"],["2024-07-25T10:41:30.010000"],["2024-07-25T10:41:31.010000"],["2024-07-25T10:41:32.010000"],["2024-07-25T10:41:33.010000"],["2024-07-25T10:41:34.010000"],["2024-07-25T10:41:35.010000"],["2024-07-25T10:41:36.010000"],["2024-07-25T10:41:37.010000"],["2024-07-25T10:41:38.010000"],["2024-07-25T10:41:39.010000"],["2024-07-25T10:41:40.010000"],["2024-07-25T10:41:41.010000"],["2024-07-25T10:41:42.010000"],["2024-07-25T10:41:43.010000"],["2024-07-25T10:41:44.010000"],["2024-07-25T10:41:45.010000"],["2024-07-25T10:41:46.010000"],["2024-07-25T10:41:47.010000"],["2024-07-25T10:41:48.010000"],["2024-07-25T10:41:49.010000"],["2024-07-25T10:41:50.010000"],["2024-07-25T10:41:51.010000"],["2024-07-25T10:41:52.010000"],["2024-07-25T10:41:53.010000"],["2024-07-25T10:41:54.010000"],["2024-07-25T10:41:55.010000"],["2024-07-25T10:41:56.010000"],["2024-07-25T10:41:57.010000"],["2024-07-25T10:41:58.010000"],["2024-07-25T10:41:59.010000"],["2024-07-25T10:42:00.010000"],["2024-07-25T10:42:01.010000"],["2024-07-25T10:42:02.010000"],["2024-07-25T10:42:03.010000"],["2024-07-25T10:42:04.010000"],["2024-07-25T10:42:05.010000"],["2024-07-25T10:42:06.010000"],["2024-07-25T10:42:07.010000"],["2024-07-25T10:42:08.010000"],["2024-07-25T10:42:09.010000"],["2024-07-25T10:42:10.010000"],["2024-07-25T10:42:11.010000"],["2024-07-25T10:42:12.010000"],["2024-07-25T10:42:13.010000"],["2024-07-25T10:42:14.010000"],["2024-07-25T10:42:15.010000"],["2024-07-25T10:42:16.010000"],["2024-07-25T10:42:17.010000"],["2024-07-25T10:42:18.010000"],["2024-07-25T10:42:19.010000"],["2024-07-25T10:42:20.010000"],["2024-07-25T10:42:21.010000"],["2024-07-25T10:42:22.010000"],["2024-07-25T10:42:23.010000"],["2024-07-25T10:42:24.010000"],["2024-07-25T10:42:25.010000"],["2024-07-25T10:42:26.010000"],["2024-07-25T10:42:27.010000"],["2024-07-25T10:42:28.010000"],["2024-07-25T10:42:29.010000"],["2024-07-25T10:42:30.010000"],["2024-07-25T10:42:31.010000"],["2024-07-25T10:42:32.010000"],["2024-07-25T10:42:33.010000"],["2024-07-25T10:42:34.010000"],["2024-07-25T10:42:35.010000"],["2024-07-25T10:42:36.010000"],["2024-07-25T10:42:37.010000"],["2024-07-25T10:42:38.010000"],["2024-07-25T10:42:39.010000"],["2024-07-25T10:42:40.010000"],["2024-07-25T10:42:41.010000"],["2024-07-25T10:42:42.010000"],["2024-07-25T10:42:43.010000"],["2024-07-25T10:42:44.010000"],["2024-07-25T10:42:45.010000"],["2024-07-25T10:42:46.010000"],["2024-07-25T10:42:47.010000"],["2024-07-25T10:42:48.010000"],["2024-07-25T10:42:49.010000"],["2024-07-25T10:42:50.010000"],["2024-07-25T10:42:51.010000"],["2024-07-25T10:42:52.010000"],["2024-07-25T10:42:53.010000"],["2024-07-25T10:42:54.010000"],["2024-07-25T10:42:55.010000"],["2024-07-25T10:42:56.010000"],["2024-07-25T10:42:57.010000"],["2024-07-25T10:42:58.010000"],["2024-07-25T10:42:59.010000"],["2024-07-25T10:43:00.010000"],["2024-07-25T10:43:01.010000"],["2024-07-25T10:43:02.010000"],["2024-07-25T10:43:03.010000"],["2024-07-25T10:43:04.010000"],["2024-07-25T10:43:05.010000"],["2024-07-25T10:43:06.010000"],["2024-07-25T10:43:07.010000"],["2024-07-25T10:43:08.010000"],["2024-07-25T10:43:09.010000"],["2024-07-25T10:43:10.010000"],["2024-07-25T10:43:11.010000"],["2024-07-25T10:43:12.010000"],["2024-07-25T10:43:13.010000"],["2024-07-25T10:43:14.010000"],["2024-07-25T10:43:15.010000"],["2024-07-25T10:43:16.010000"],["2024-07-25T10:43:17.010000"],["2024-07-25T10:43:18.010000"],["2024-07-25T10:43:19.010000"],["2024-07-25T10:43:20.010000"],["2024-07-25T10:43:21.010000"],["2024-07-25T10:43:22.010000"],["2024-07-25T10:43:23.010000"],["2024-07-25T10:43:24.010000"],["2024-07-25T10:43:25.010000"],["2024-07-25T10:43:26.010000"],["2024-07-25T10:43:27.010000"],["2024-07-25T10:43:28.010000"],["2024-07-25T10:43:29.010000"],["2024-07-25T10:43:30.010000"],["2024-07-25T10:43:31.010000"],["2024-07-25T10:43:32.010000"],["2024-07-25T10:43:33.010000"],["2024-07-25T10:43:34.010000"],["2024-07-25T10:43:35.010000"],["2024-07-25T10:43:36.010000"],["2024-07-25T10:43:37.010000"],["2024-07-25T10:43:38.010000"],["2024-07-25T10:43:39.010000"],["2024-07-25T10:43:40.010000"],["2024-07-25T10:43:41.010000"],["2024-07-25T10:43:42.010000"],["2024-07-25T10:43:43.010000"],["2024-07-25T10:43:44.010000"],["2024-07-25T10:43:45.010000"],["2024-07-25T10:43:46.010000"],["2024-07-25T10:43:47.010000"],["2024-07-25T10:43:48.010000"],["2024-07-25T10:43:49.010000"],["2024-07-25T10:43:50.010000"],["2024-07-25T10:43:51.010000"],["2024-07-25T10:43:52.010000"],["2024-07-25T10:43:53.010000"],["2024-07-25T10:43:54.010000"],["2024-07-25T10:43:55.010000"],["2024-07-25T10:43:56.010000"],["2024-07-25T10:43:57.010000"],["2024-07-25T10:43:58.010000"],["2024-07-25T10:43:59.010000"],["2024-07-25T10:44:00.010000"],["2024-07-25T10:44:01.010000"],["2024-07-25T10:44:02.010000"],["2024-07-25T10:44:03.010000"],["2024-07-25T10:44:04.010000"],["2024-07-25T10:44:05.010000"],["2024-07-25T10:44:06.010000"],["2024-07-25T10:44:07.010000"],["2024-07-25T10:44:08.010000"],["2024-07-25T10:44:09.010000"],["2024-07-25T10:44:10.010000"],["2024-07-25T10:44:11.010000"],["2024-07-25T10:44:12.010000"],["2024-07-25T10:44:13.010000"],["2024-07-25T10:44:14.010000"],["2024-07-25T10:44:15.010000"],["2024-07-25T10:44:16.010000"],["2024-07-25T10:44:17.010000"],["2024-07-25T10:44:18.010000"],["2024-07-25T10:44:19.010000"],["2024-07-25T10:44:20.010000"],["2024-07-25T10:44:21.010000"],["2024-07-25T10:44:22.010000"],["2024-07-25T10:44:23.010000"],["2024-07-25T10:44:24.010000"],["2024-07-25T10:44:25.010000"],["2024-07-25T10:44:26.010000"],["2024-07-25T10:44:27.010000"],["2024-07-25T10:44:28.010000"],["2024-07-25T10:44:29.010000"],["2024-07-25T10:44:30.010000"],["2024-07-25T10:44:31.010000"],["2024-07-25T10:44:32.010000"],["2024-07-25T10:44:33.010000"],["2024-07-25T10:44:34.010000"],["2024-07-25T10:44:35.010000"],["2024-07-25T10:44:36.010000"],["2024-07-25T10:44:37.010000"],["2024-07-25T10:44:38.010000"],["2024-07-25T10:44:39.010000"],["2024-07-25T10:44:40.010000"],["2024-07-25T10:44:41.010000"],["2024-07-25T10:44:42.010000"],["2024-07-25T10:44:43.010000"],["2024-07-25T10:44:44.010000"],["2024-07-25T10:44:45.010000"],["2024-07-25T10:44:46.010000"],["2024-07-25T10:44:47.010000"],["2024-07-25T10:44:48.010000"],["2024-07-25T10:44:49.010000"],["2024-07-25T10:44:50.010000"],["2024-07-25T10:44:51.010000"],["2024-07-25T10:44:52.010000"],["2024-07-25T10:44:53.010000"],["2024-07-25T10:44:54.010000"],["2024-07-25T10:44:55.010000"],["2024-07-25T10:44:56.010000"],["2024-07-25T10:44:57.010000"],["2024-07-25T10:44:58.010000"],["2024-07-25T10:44:59.010000"],["2024-07-25T10:45:00.010000"],["2024-07-25T10:45:01.010000"],["2024-07-25T10:45:02.010000"],["2024-07-25T10:45:03.010000"],["2024-07-25T10:45:04.010000"],["2024-07-25T10:45:05.010000"],["2024-07-25T10:45:06.010000"],["2024-07-25T10:45:07.010000"],["2024-07-25T10:45:08.010000"],["2024-07-25T10:45:09.010000"],["2024-07-25T10:45:10.010000"],["2024-07-25T10:45:11.010000"],["2024-07-25T10:45:12.010000"],["2024-07-25T10:45:13.010000"],["2024-07-25T10:45:14.010000"],["2024-07-25T10:45:15.010000"],["2024-07-25T10:45:16.010000"],["2024-07-25T10:45:17.010000"],["2024-07-25T10:45:18.010000"],["2024-07-25T10:45:19.010000"],["2024-07-25T10:45:20.010000"],["2024-07-25T10:45:21.010000"],["2024-07-25T10:45:22.010000"],["2024-07-25T10:45:23.010000"],["2024-07-25T10:45:24.010000"],["2024-07-25T10:45:25.010000"],["2024-07-25T10:45:26.010000"],["2024-07-25T10:45:27.010000"],["2024-07-25T10:45:28.010000"],["2024-07-25T10:45:29.010000"],["2024-07-25T10:45:30.010000"],["2024-07-25T10:45:31.010000"],["2024-07-25T10:45:32.010000"],["2024-07-25T10:45:33.010000"],["2024-07-25T10:45:34.010000"],["2024-07-25T10:45:35.010000"],["2024-07-25T10:45:36.010000"],["2024-07-25T10:45:37.010000"],["2024-07-25T10:45:38.010000"],["2024-07-25T10:45:39.010000"],["2024-07-25T10:45:40.010000"],["2024-07-25T10:45:41.010000"],["2024-07-25T10:45:42.010000"],["2024-07-25T10:45:43.010000"],["2024-07-25T10:45:44.010000"],["2024-07-25T10:45:45.010000"],["2024-07-25T10:45:46.010000"],["2024-07-25T10:45:47.010000"],["2024-07-25T10:45:48.010000"],["2024-07-25T10:45:49.010000"],["2024-07-25T10:45:50.010000"],["2024-07-25T10:45:51.010000"],["2024-07-25T10:45:52.010000"],["2024-07-25T10:45:53.010000"],["2024-07-25T10:45:54.010000"],["2024-07-25T10:45:55.010000"],["2024-07-25T10:45:56.010000"],["2024-07-25T10:45:57.010000"],["2024-07-25T10:45:58.010000"],["2024-07-25T10:45:59.010000"],["2024-07-25T10:46:00.010000"],["2024-07-25T10:46:01.010000"],["2024-07-25T10:46:02.010000"],["2024-07-25T10:46:03.010000"],["2024-07-25T10:46:04.010000"],["2024-07-25T10:46:05.010000"],["2024-07-25T10:46:06.010000"],["2024-07-25T10:46:07.010000"],["2024-07-25T10:46:08.010000"],["2024-07-25T10:46:09.010000"],["2024-07-25T10:46:10.010000"],["2024-07-25T10:46:11.010000"],["2024-07-25T10:46:12.010000"],["2024-07-25T10:46:13.010000"],["2024-07-25T10:46:14.010000"],["2024-07-25T10:46:15.010000"],["2024-07-25T10:46:16.010000"],["2024-07-25T10:46:17.010000"],["2024-07-25T10:46:18.010000"],["2024-07-25T10:46:19.010000"],["2024-07-25T10:46:20.010000"],["2024-07-25T10:46:21.010000"],["2024-07-25T10:46:22.010000"],["2024-07-25T10:46:23.010000"],["2024-07-25T10:46:24.010000"],["2024-07-25T10:46:25.010000"],["2024-07-25T10:46:26.010000"],["2024-07-25T10:46:27.010000"],["2024-07-25T10:46:28.010000"],["2024-07-25T10:46:29.010000"],["2024-07-25T10:46:30.010000"],["2024-07-25T10:46:31.010000"],["2024-07-25T10:46:32.010000"],["2024-07-25T10:46:33.010000"],["2024-07-25T10:46:34.010000"],["2024-07-25T10:46:35.010000"],["2024-07-25T10:46:36.010000"],["2024-07-25T10:46:37.010000"],["2024-07-25T10:46:38.010000"],["2024-07-25T10:46:39.010000"],["2024-07-25T10:46:40.010000"],["2024-07-25T10:46:41.010000"],["2024-07-25T10:46:42.010000"],["2024-07-25T10:46:43.010000"],["2024-07-25T10:46:44.010000"],["2024-07-25T10:46:45.010000"],["2024-07-25T10:46:46.010000"],["2024-07-25T10:46:47.010000"],["2024-07-25T10:46:48.010000"],["2024-07-25T10:46:49.010000"],["2024-07-25T10:46:50.010000"],["2024-07-25T10:46:51.010000"],["2024-07-25T10:46:52.010000"],["2024-07-25T10:46:53.010000"],["2024-07-25T10:46:54.010000"],["2024-07-25T10:46:55.010000"],["2024-07-25T10:46:56.010000"],["2024-07-25T10:46:57.010000"],["2024-07-25T10:46:58.010000"],["2024-07-25T10:46:59.010000"],["2024-07-25T10:47:00.010000"],["2024-07-25T10:47:01.010000"],["2024-07-25T10:47:02.010000"],["2024-07-25T10:47:03.010000"],["2024-07-25T10:47:04.010000"],["2024-07-25T10:47:05.010000"],["2024-07-25T10:47:06.010000"],["2024-07-25T10:47:07.010000"],["2024-07-25T10:47:08.010000"],["2024-07-25T10:47:09.010000"],["2024-07-25T10:47:10.010000"],["2024-07-25T10:47:11.010000"],["2024-07-25T10:47:12.010000"],["2024-07-25T10:47:13.010000"],["2024-07-25T10:47:14.010000"],["2024-07-25T10:47:15.010000"],["2024-07-25T10:47:16.010000"],["2024-07-25T10:47:17.010000"],["2024-07-25T10:47:18.010000"],["2024-07-25T10:47:19.010000"],["2024-07-25T10:47:20.010000"],["2024-07-25T10:47:21.010000"],["2024-07-25T10:47:22.010000"],["2024-07-25T10:47:23.010000"],["2024-07-25T10:47:24.010000"],["2024-07-25T10:47:25.010000"],["2024-07-25T10:47:26.010000"],["2024-07-25T10:47:27.010000"],["2024-07-25T10:47:28.010000"],["2024-07-25T10:47:29.010000"],["2024-07-25T10:47:30.010000"],["2024-07-25T10:47:31.010000"],["2024-07-25T10:47:32.010000"],["2024-07-25T10:47:33.010000"],["2024-07-25T10:47:34.010000"],["2024-07-25T10:47:35.010000"],["2024-07-25T10:47:36.010000"],["2024-07-25T10:47:37.010000"],["2024-07-25T10:47:38.010000"],["2024-07-25T10:47:39.010000"],["2024-07-25T10:47:40.010000"],["2024-07-25T10:47:41.010000"],["2024-07-25T10:47:42.010000"],["2024-07-25T10:47:43.010000"],["2024-07-25T10:47:44.010000"],["2024-07-25T10:47:45.010000"],["2024-07-25T10:47:46.010000"],["2024-07-25T10:47:47.010000"],["2024-07-25T10:47:48.010000"],["2024-07-25T10:47:49.010000"],["2024-07-25T10:47:50.010000"],["2024-07-25T10:47:51.010000"],["2024-07-25T10:47:52.010000"],["2024-07-25T10:47:53.010000"],["2024-07-25T10:47:54.010000"],["2024-07-25T10:47:55.010000"],["2024-07-25T10:47:56.010000"],["2024-07-25T10:47:57.010000"],["2024-07-25T10:47:58.010000"],["2024-07-25T10:47:59.010000"],["2024-07-25T10:48:00.010000"],["2024-07-25T10:48:01.010000"],["2024-07-25T10:48:02.010000"],["2024-07-25T10:48:03.010000"],["2024-07-25T10:48:04.010000"],["2024-07-25T10:48:05.010000"],["2024-07-25T10:48:06.010000"],["2024-07-25T10:48:07.010000"],["2024-07-25T10:48:08.010000"],["2024-07-25T10:48:09.010000"],["2024-07-25T10:48:10.010000"],["2024-07-25T10:48:11.010000"],["2024-07-25T10:48:12.010000"],["2024-07-25T10:48:13.010000"],["2024-07-25T10:48:14.010000"],["2024-07-25T10:48:15.010000"],["2024-07-25T10:48:16.010000"],["2024-07-25T10:48:17.010000"],["2024-07-25T10:48:18.010000"],["2024-07-25T10:48:19.010000"],["2024-07-25T10:48:20.010000"],["2024-07-25T10:48:21.010000"],["2024-07-25T10:48:22.010000"],["2024-07-25T10:48:23.010000"],["2024-07-25T10:48:24.010000"],["2024-07-25T10:48:25.010000"],["2024-07-25T10:48:26.010000"],["2024-07-25T10:48:27.010000"],["2024-07-25T10:48:28.010000"],["2024-07-25T10:48:29.010000"],["2024-07-25T10:48:30.010000"],["2024-07-25T10:48:31.010000"],["2024-07-25T10:48:32.010000"],["2024-07-25T10:48:33.010000"],["2024-07-25T10:48:34.010000"],["2024-07-25T10:48:35.010000"],["2024-07-25T10:48:36.010000"],["2024-07-25T10:48:37.010000"],["2024-07-25T10:48:38.010000"],["2024-07-25T10:48:39.010000"],["2024-07-25T10:48:40.010000"],["2024-07-25T10:48:41.010000"],["2024-07-25T10:48:42.010000"],["2024-07-25T10:48:43.010000"],["2024-07-25T10:48:44.010000"],["2024-07-25T10:48:45.010000"],["2024-07-25T10:48:46.010000"],["2024-07-25T10:48:47.010000"],["2024-07-25T10:48:48.010000"],["2024-07-25T10:48:49.010000"],["2024-07-25T10:48:50.010000"],["2024-07-25T10:48:51.010000"],["2024-07-25T10:48:52.010000"],["2024-07-25T10:48:53.010000"],["2024-07-25T10:48:54.010000"],["2024-07-25T10:48:55.010000"],["2024-07-25T10:48:56.010000"],["2024-07-25T10:48:57.010000"],["2024-07-25T10:48:58.010000"],["2024-07-25T10:48:59.010000"],["2024-07-25T10:49:00.010000"],["2024-07-25T10:49:01.010000"],["2024-07-25T10:49:02.010000"],["2024-07-25T10:49:03.010000"],["2024-07-25T10:49:04.010000"],["2024-07-25T10:49:05.010000"],["2024-07-25T10:49:06.010000"],["2024-07-25T10:49:07.010000"],["2024-07-25T10:49:08.010000"],["2024-07-25T10:49:09.010000"],["2024-07-25T10:49:10.010000"],["2024-07-25T10:49:11.010000"],["2024-07-25T10:49:12.010000"],["2024-07-25T10:49:13.010000"],["2024-07-25T10:49:14.010000"],["2024-07-25T10:49:15.010000"],["2024-07-25T10:49:16.010000"],["2024-07-25T10:49:17.010000"],["2024-07-25T10:49:18.010000"],["2024-07-25T10:49:19.010000"],["2024-07-25T10:49:20.010000"],["2024-07-25T10:49:21.010000"],["2024-07-25T10:49:22.010000"],["2024-07-25T10:49:23.010000"],["2024-07-25T10:49:24.010000"],["2024-07-25T10:49:25.010000"],["2024-07-25T10:49:26.010000"],["2024-07-25T10:49:27.010000"],["2024-07-25T10:49:28.010000"],["2024-07-25T10:49:29.010000"],["2024-07-25T10:49:30.010000"],["2024-07-25T10:49:31.010000"],["2024-07-25T10:49:32.010000"],["2024-07-25T10:49:33.010000"],["2024-07-25T10:49:34.010000"],["2024-07-25T10:49:35.010000"],["2024-07-25T10:49:36.010000"],["2024-07-25T10:49:37.010000"],["2024-07-25T10:49:38.010000"],["2024-07-25T10:49:39.010000"],["2024-07-25T10:49:40.010000"],["2024-07-25T10:49:41.010000"],["2024-07-25T10:49:42.010000"],["2024-07-25T10:49:43.010000"],["2024-07-25T10:49:44.010000"],["2024-07-25T10:49:45.010000"],["2024-07-25T10:49:46.010000"],["2024-07-25T10:49:47.010000"],["2024-07-25T10:49:48.010000"],["2024-07-25T10:49:49.010000"],["2024-07-25T10:49:50.010000"],["2024-07-25T10:49:51.010000"],["2024-07-25T10:49:52.010000"],["2024-07-25T10:49:53.010000"],["2024-07-25T10:49:54.010000"],["2024-07-25T10:49:55.010000"],["2024-07-25T10:49:56.010000"],["2024-07-25T10:49:57.010000"],["2024-07-25T10:49:58.010000"],["2024-07-25T10:49:59.010000"],["2024-07-25T10:50:00.010000"],["2024-07-25T10:50:01.010000"],["2024-07-25T10:50:02.010000"],["2024-07-25T10:50:03.010000"],["2024-07-25T10:50:04.010000"],["2024-07-25T10:50:05.010000"],["2024-07-25T10:50:06.010000"],["2024-07-25T10:50:07.010000"],["2024-07-25T10:50:08.010000"],["2024-07-25T10:50:09.010000"],["2024-07-25T10:50:10.010000"],["2024-07-25T10:50:11.010000"],["2024-07-25T10:50:12.010000"],["2024-07-25T10:50:13.010000"],["2024-07-25T10:50:14.010000"],["2024-07-25T10:50:15.010000"],["2024-07-25T10:50:16.010000"],["2024-07-25T10:50:17.010000"],["2024-07-25T10:50:18.010000"],["2024-07-25T10:50:19.010000"],["2024-07-25T10:50:20.010000"],["2024-07-25T10:50:21.010000"],["2024-07-25T10:50:22.010000"],["2024-07-25T10:50:23.010000"],["2024-07-25T10:50:24.010000"],["2024-07-25T10:50:25.010000"],["2024-07-25T10:50:26.010000"],["2024-07-25T10:50:27.010000"],["2024-07-25T10:50:28.010000"],["2024-07-25T10:50:29.010000"],["2024-07-25T10:50:30.010000"],["2024-07-25T10:50:31.010000"],["2024-07-25T10:50:32.010000"],["2024-07-25T10:50:33.010000"],["2024-07-25T10:50:34.010000"],["2024-07-25T10:50:35.010000"],["2024-07-25T10:50:36.010000"],["2024-07-25T10:50:37.010000"],["2024-07-25T10:50:38.010000"],["2024-07-25T10:50:39.010000"],["2024-07-25T10:50:40.010000"],["2024-07-25T10:50:41.010000"],["2024-07-25T10:50:42.010000"],["2024-07-25T10:50:43.010000"],["2024-07-25T10:50:44.010000"],["2024-07-25T10:50:45.010000"],["2024-07-25T10:50:46.010000"],["2024-07-25T10:50:47.010000"],["2024-07-25T10:50:48.010000"],["2024-07-25T10:50:49.010000"],["2024-07-25T10:50:50.010000"],["2024-07-25T10:50:51.010000"],["2024-07-25T10:50:52.010000"],["2024-07-25T10:50:53.010000"],["2024-07-25T10:50:54.010000"],["2024-07-25T10:50:55.010000"],["2024-07-25T10:50:56.010000"],["2024-07-25T10:50:57.010000"],["2024-07-25T10:50:58.010000"],["2024-07-25T10:50:59.010000"],["2024-07-25T10:51:00.010000"],["2024-07-25T10:51:01.010000"],["2024-07-25T10:51:02.010000"],["2024-07-25T10:51:03.010000"],["2024-07-25T10:51:04.010000"],["2024-07-25T10:51:05.010000"],["2024-07-25T10:51:06.010000"],["2024-07-25T10:51:07.010000"],["2024-07-25T10:51:08.010000"],["2024-07-25T10:51:09.010000"],["2024-07-25T10:51:10.010000"],["2024-07-25T10:51:11.010000"],["2024-07-25T10:51:12.010000"],["2024-07-25T10:51:13.010000"],["2024-07-25T10:51:14.010000"],["2024-07-25T10:51:15.010000"],["2024-07-25T10:51:16.010000"],["2024-07-25T10:51:17.010000"],["2024-07-25T10:51:18.010000"],["2024-07-25T10:51:19.010000"],["2024-07-25T10:51:20.010000"],["2024-07-25T10:51:21.010000"],["2024-07-25T10:51:22.010000"],["2024-07-25T10:51:23.010000"],["2024-07-25T10:51:24.010000"],["2024-07-25T10:51:25.010000"],["2024-07-25T10:51:26.010000"],["2024-07-25T10:51:27.010000"],["2024-07-25T10:51:28.010000"],["2024-07-25T10:51:29.010000"],["2024-07-25T10:51:30.010000"],["2024-07-25T10:51:31.010000"],["2024-07-25T10:51:32.010000"],["2024-07-25T10:51:33.010000"],["2024-07-25T10:51:34.010000"],["2024-07-25T10:51:35.010000"],["2024-07-25T10:51:36.010000"],["2024-07-25T10:51:37.010000"],["2024-07-25T10:51:38.010000"],["2024-07-25T10:51:39.010000"],["2024-07-25T10:51:40.010000"],["2024-07-25T10:51:41.010000"],["2024-07-25T10:51:42.010000"],["2024-07-25T10:51:43.010000"],["2024-07-25T10:51:44.010000"],["2024-07-25T10:51:45.010000"],["2024-07-25T10:51:46.010000"],["2024-07-25T10:51:47.010000"],["2024-07-25T10:51:48.010000"],["2024-07-25T10:51:49.010000"],["2024-07-25T10:51:50.010000"],["2024-07-25T10:51:51.010000"],["2024-07-25T10:51:52.010000"],["2024-07-25T10:51:53.010000"],["2024-07-25T10:51:54.010000"],["2024-07-25T10:51:55.010000"],["2024-07-25T10:51:56.010000"],["2024-07-25T10:51:57.010000"],["2024-07-25T10:51:58.010000"],["2024-07-25T10:51:59.010000"],["2024-07-25T10:52:00.010000"],["2024-07-25T10:52:01.010000"],["2024-07-25T10:52:02.010000"],["2024-07-25T10:52:03.010000"],["2024-07-25T10:52:04.010000"],["2024-07-25T10:52:05.010000"],["2024-07-25T10:52:06.010000"],["2024-07-25T10:52:07.010000"],["2024-07-25T10:52:08.010000"],["2024-07-25T10:52:09.010000"],["2024-07-25T10:52:10.010000"],["2024-07-25T10:52:11.010000"],["2024-07-25T10:52:12.010000"],["2024-07-25T10:52:13.010000"],["2024-07-25T10:52:14.010000"],["2024-07-25T10:52:15.010000"],["2024-07-25T10:52:16.010000"],["2024-07-25T10:52:17.010000"],["2024-07-25T10:52:18.010000"],["2024-07-25T10:52:19.010000"],["2024-07-25T10:52:20.010000"],["2024-07-25T10:52:21.010000"],["2024-07-25T10:52:22.010000"],["2024-07-25T10:52:23.010000"],["2024-07-25T10:52:24.010000"],["2024-07-25T10:52:25.010000"],["2024-07-25T10:52:26.010000"],["2024-07-25T10:52:27.010000"],["2024-07-25T10:52:28.010000"],["2024-07-25T10:52:29.010000"],["2024-07-25T10:52:30.010000"],["2024-07-25T10:52:31.010000"],["2024-07-25T10:52:32.010000"],["2024-07-25T10:52:33.010000"],["2024-07-25T10:52:34.010000"],["2024-07-25T10:52:35.010000"],["2024-07-25T10:52:36.010000"],["2024-07-25T10:52:37.010000"],["2024-07-25T10:52:38.010000"],["2024-07-25T10:52:39.010000"],["2024-07-25T10:52:40.010000"],["2024-07-25T10:52:41.010000"],["2024-07-25T10:52:42.010000"],["2024-07-25T10:52:43.010000"],["2024-07-25T10:52:44.010000"],["2024-07-25T10:52:45.010000"],["2024-07-25T10:52:46.010000"],["2024-07-25T10:52:47.010000"],["2024-07-25T10:52:48.010000"],["2024-07-25T10:52:49.010000"],["2024-07-25T10:52:50.010000"],["2024-07-25T10:52:51.010000"],["2024-07-25T10:52:52.010000"],["2024-07-25T10:52:53.010000"],["2024-07-25T10:52:54.010000"],["2024-07-25T10:52:55.010000"],["2024-07-25T10:52:56.010000"],["2024-07-25T10:52:57.010000"],["2024-07-25T10:52:58.010000"],["2024-07-25T10:52:59.010000"],["2024-07-25T10:53:00.010000"],["2024-07-25T10:53:01.010000"],["2024-07-25T10:53:02.010000"],["2024-07-25T10:53:03.010000"],["2024-07-25T10:53:04.010000"],["2024-07-25T10:53:05.010000"],["2024-07-25T10:53:06.010000"],["2024-07-25T10:53:07.010000"],["2024-07-25T10:53:08.010000"],["2024-07-25T10:53:09.010000"],["2024-07-25T10:53:10.010000"],["2024-07-25T10:53:11.010000"],["2024-07-25T10:53:12.010000"],["2024-07-25T10:53:13.010000"],["2024-07-25T10:53:14.010000"],["2024-07-25T10:53:15.010000"],["2024-07-25T10:53:16.010000"],["2024-07-25T10:53:17.010000"],["2024-07-25T10:53:18.010000"],["2024-07-25T10:53:19.010000"],["2024-07-25T10:53:20.010000"],["2024-07-25T10:53:21.010000"],["2024-07-25T10:53:22.010000"],["2024-07-25T10:53:23.010000"],["2024-07-25T10:53:24.010000"],["2024-07-25T10:53:25.010000"],["2024-07-25T10:53:26.010000"],["2024-07-25T10:53:27.010000"],["2024-07-25T10:53:28.010000"],["2024-07-25T10:53:29.010000"],["2024-07-25T10:53:30.010000"],["2024-07-25T10:53:31.010000"],["2024-07-25T10:53:32.010000"],["2024-07-25T10:53:33.010000"],["2024-07-25T10:53:34.010000"],["2024-07-25T10:53:35.010000"],["2024-07-25T10:53:36.010000"],["2024-07-25T10:53:37.010000"],["2024-07-25T10:53:38.010000"],["2024-07-25T10:53:39.010000"],["2024-07-25T10:53:40.010000"],["2024-07-25T10:53:41.010000"],["2024-07-25T10:53:42.010000"],["2024-07-25T10:53:43.010000"],["2024-07-25T10:53:44.010000"],["2024-07-25T10:53:45.010000"],["2024-07-25T10:53:46.010000"],["2024-07-25T10:53:47.010000"],["2024-07-25T10:53:48.010000"],["2024-07-25T10:53:49.010000"],["2024-07-25T10:53:50.010000"],["2024-07-25T10:53:51.010000"],["2024-07-25T10:53:52.010000"],["2024-07-25T10:53:53.010000"],["2024-07-25T10:53:54.010000"],["2024-07-25T10:53:55.010000"],["2024-07-25T10:53:56.010000"],["2024-07-25T10:53:57.010000"],["2024-07-25T10:53:58.010000"],["2024-07-25T10:53:59.010000"],["2024-07-25T10:54:00.010000"],["2024-07-25T10:54:01.010000"],["2024-07-25T10:54:02.010000"],["2024-07-25T10:54:03.010000"],["2024-07-25T10:54:04.010000"],["2024-07-25T10:54:05.010000"],["2024-07-25T10:54:06.010000"],["2024-07-25T10:54:07.010000"],["2024-07-25T10:54:08.010000"],["2024-07-25T10:54:09.010000"],["2024-07-25T10:54:10.010000"],["2024-07-25T10:54:11.010000"],["2024-07-25T10:54:12.010000"],["2024-07-25T10:54:13.010000"],["2024-07-25T10:54:14.010000"],["2024-07-25T10:54:15.010000"],["2024-07-25T10:54:16.010000"],["2024-07-25T10:54:17.010000"],["2024-07-25T10:54:18.010000"],["2024-07-25T10:54:19.010000"],["2024-07-25T10:54:20.010000"],["2024-07-25T10:54:21.010000"],["2024-07-25T10:54:22.010000"],["2024-07-25T10:54:23.010000"],["2024-07-25T10:54:24.010000"],["2024-07-25T10:54:25.010000"],["2024-07-25T10:54:26.010000"],["2024-07-25T10:54:27.010000"],["2024-07-25T10:54:28.010000"],["2024-07-25T10:54:29.010000"],["2024-07-25T10:54:30.010000"],["2024-07-25T10:54:31.010000"],["2024-07-25T10:54:32.010000"],["2024-07-25T10:54:33.010000"],["2024-07-25T10:54:34.010000"],["2024-07-25T10:54:35.010000"],["2024-07-25T10:54:36.010000"],["2024-07-25T10:54:37.010000"],["2024-07-25T10:54:38.010000"],["2024-07-25T10:54:39.010000"],["2024-07-25T10:54:40.010000"],["2024-07-25T10:54:41.010000"],["2024-07-25T10:54:42.010000"],["2024-07-25T10:54:43.010000"],["2024-07-25T10:54:44.010000"],["2024-07-25T10:54:45.010000"],["2024-07-25T10:54:46.010000"],["2024-07-25T10:54:47.010000"],["2024-07-25T10:54:48.010000"],["2024-07-25T10:54:49.010000"],["2024-07-25T10:54:50.010000"],["2024-07-25T10:54:51.010000"],["2024-07-25T10:54:52.010000"],["2024-07-25T10:54:53.010000"],["2024-07-25T10:54:54.010000"],["2024-07-25T10:54:55.010000"],["2024-07-25T10:54:56.010000"],["2024-07-25T10:54:57.010000"],["2024-07-25T10:54:58.010000"],["2024-07-25T10:54:59.010000"],["2024-07-25T10:55:00.010000"],["2024-07-25T10:55:01.010000"],["2024-07-25T10:55:02.010000"],["2024-07-25T10:55:03.010000"],["2024-07-25T10:55:04.010000"],["2024-07-25T10:55:05.010000"],["2024-07-25T10:55:06.010000"],["2024-07-25T10:55:07.010000"],["2024-07-25T10:55:08.010000"],["2024-07-25T10:55:09.010000"],["2024-07-25T10:55:10.010000"],["2024-07-25T10:55:11.010000"],["2024-07-25T10:55:12.010000"],["2024-07-25T10:55:13.010000"],["2024-07-25T10:55:14.010000"],["2024-07-25T10:55:15.010000"],["2024-07-25T10:55:16.010000"],["2024-07-25T10:55:17.010000"],["2024-07-25T10:55:18.010000"],["2024-07-25T10:55:19.010000"],["2024-07-25T10:55:20.010000"],["2024-07-25T10:55:21.010000"],["2024-07-25T10:55:22.010000"],["2024-07-25T10:55:23.010000"],["2024-07-25T10:55:24.010000"],["2024-07-25T10:55:25.010000"],["2024-07-25T10:55:26.010000"],["2024-07-25T10:55:27.010000"],["2024-07-25T10:55:28.010000"],["2024-07-25T10:55:29.010000"],["2024-07-25T10:55:30.010000"],["2024-07-25T10:55:31.010000"],["2024-07-25T10:55:32.010000"],["2024-07-25T10:55:33.010000"],["2024-07-25T10:55:34.010000"],["2024-07-25T10:55:35.010000"],["2024-07-25T10:55:36.010000"],["2024-07-25T10:55:37.010000"],["2024-07-25T10:55:38.010000"],["2024-07-25T10:55:39.010000"],["2024-07-25T10:55:40.010000"],["2024-07-25T10:55:41.010000"],["2024-07-25T10:55:42.010000"],["2024-07-25T10:55:43.010000"],["2024-07-25T10:55:44.010000"],["2024-07-25T10:55:45.010000"],["2024-07-25T10:55:46.010000"],["2024-07-25T10:55:47.010000"],["2024-07-25T10:55:48.010000"],["2024-07-25T10:55:49.010000"],["2024-07-25T10:55:50.010000"],["2024-07-25T10:55:51.010000"],["2024-07-25T10:55:52.010000"],["2024-07-25T10:55:53.010000"],["2024-07-25T10:55:54.010000"],["2024-07-25T10:55:55.010000"],["2024-07-25T10:55:56.010000"],["2024-07-25T10:55:57.010000"],["2024-07-25T10:55:58.010000"],["2024-07-25T10:55:59.010000"],["2024-07-25T10:56:00.010000"],["2024-07-25T10:56:01.010000"],["2024-07-25T10:56:02.010000"],["2024-07-25T10:56:03.010000"],["2024-07-25T10:56:04.010000"],["2024-07-25T10:56:05.010000"],["2024-07-25T10:56:06.010000"],["2024-07-25T10:56:07.010000"],["2024-07-25T10:56:08.010000"],["2024-07-25T10:56:09.010000"],["2024-07-25T10:56:10.010000"],["2024-07-25T10:56:11.010000"],["2024-07-25T10:56:12.010000"],["2024-07-25T10:56:13.010000"],["2024-07-25T10:56:14.010000"],["2024-07-25T10:56:15.010000"],["2024-07-25T10:56:16.010000"],["2024-07-25T10:56:17.010000"],["2024-07-25T10:56:18.010000"],["2024-07-25T10:56:19.010000"],["2024-07-25T10:56:20.010000"],["2024-07-25T10:56:21.010000"],["2024-07-25T10:56:22.010000"],["2024-07-25T10:56:23.010000"],["2024-07-25T10:56:24.010000"],["2024-07-25T10:56:25.010000"],["2024-07-25T10:56:26.010000"],["2024-07-25T10:56:27.010000"],["2024-07-25T10:56:28.010000"],["2024-07-25T10:56:29.010000"],["2024-07-25T10:56:30.010000"],["2024-07-25T10:56:31.010000"],["2024-07-25T10:56:32.010000"],["2024-07-25T10:56:33.010000"],["2024-07-25T10:56:34.010000"],["2024-07-25T10:56:35.010000"],["2024-07-25T10:56:36.010000"],["2024-07-25T10:56:37.010000"],["2024-07-25T10:56:38.010000"],["2024-07-25T10:56:39.010000"],["2024-07-25T10:56:40.010000"],["2024-07-25T10:56:41.010000"],["2024-07-25T10:56:42.010000"],["2024-07-25T10:56:43.010000"],["2024-07-25T10:56:44.010000"],["2024-07-25T10:56:45.010000"],["2024-07-25T10:56:46.010000"],["2024-07-25T10:56:47.010000"],["2024-07-25T10:56:48.010000"],["2024-07-25T10:56:49.010000"],["2024-07-25T10:56:50.010000"],["2024-07-25T10:56:51.010000"],["2024-07-25T10:56:52.010000"],["2024-07-25T10:56:53.010000"],["2024-07-25T10:56:54.010000"],["2024-07-25T10:56:55.010000"],["2024-07-25T10:56:56.010000"],["2024-07-25T10:56:57.010000"],["2024-07-25T10:56:58.010000"],["2024-07-25T10:56:59.010000"],["2024-07-25T10:57:00.010000"],["2024-07-25T10:57:01.010000"],["2024-07-25T10:57:02.010000"],["2024-07-25T10:57:03.010000"],["2024-07-25T10:57:04.010000"],["2024-07-25T10:57:05.010000"],["2024-07-25T10:57:06.010000"],["2024-07-25T10:57:07.010000"],["2024-07-25T10:57:08.010000"],["2024-07-25T10:57:09.010000"],["2024-07-25T10:57:10.010000"],["2024-07-25T10:57:11.010000"],["2024-07-25T10:57:12.010000"],["2024-07-25T10:57:13.010000"],["2024-07-25T10:57:14.010000"],["2024-07-25T10:57:15.010000"],["2024-07-25T10:57:16.010000"],["2024-07-25T10:57:17.010000"],["2024-07-25T10:57:18.010000"],["2024-07-25T10:57:19.010000"],["2024-07-25T10:57:20.010000"],["2024-07-25T10:57:21.010000"],["2024-07-25T10:57:22.010000"],["2024-07-25T10:57:23.010000"],["2024-07-25T10:57:24.010000"],["2024-07-25T10:57:25.010000"],["2024-07-25T10:57:26.010000"],["2024-07-25T10:57:27.010000"],["2024-07-25T10:57:28.010000"],["2024-07-25T10:57:29.010000"],["2024-07-25T10:57:30.010000"],["2024-07-25T10:57:31.010000"],["2024-07-25T10:57:32.010000"],["2024-07-25T10:57:33.010000"],["2024-07-25T10:57:34.010000"],["2024-07-25T10:57:35.010000"],["2024-07-25T10:57:36.010000"],["2024-07-25T10:57:37.010000"],["2024-07-25T10:57:38.010000"],["2024-07-25T10:57:39.010000"],["2024-07-25T10:57:40.010000"],["2024-07-25T10:57:41.010000"],["2024-07-25T10:57:42.010000"],["2024-07-25T10:57:43.010000"],["2024-07-25T10:57:44.010000"],["2024-07-25T10:57:45.010000"],["2024-07-25T10:57:46.010000"],["2024-07-25T10:57:47.010000"],["2024-07-25T10:57:48.010000"],["2024-07-25T10:57:49.010000"],["2024-07-25T10:57:50.010000"],["2024-07-25T10:57:51.010000"],["2024-07-25T10:57:52.010000"],["2024-07-25T10:57:53.010000"],["2024-07-25T10:57:54.010000"],["2024-07-25T10:57:55.010000"],["2024-07-25T10:57:56.010000"],["2024-07-25T10:57:57.010000"],["2024-07-25T10:57:58.010000"],["2024-07-25T10:57:59.010000"],["2024-07-25T10:58:00.010000"],["2024-07-25T10:58:01.010000"],["2024-07-25T10:58:02.010000"],["2024-07-25T10:58:03.010000"],["2024-07-25T10:58:04.010000"],["2024-07-25T10:58:05.010000"],["2024-07-25T10:58:06.010000"],["2024-07-25T10:58:07.010000"],["2024-07-25T10:58:08.010000"],["2024-07-25T10:58:09.010000"],["2024-07-25T10:58:10.010000"],["2024-07-25T10:58:11.010000"],["2024-07-25T10:58:12.010000"],["2024-07-25T10:58:13.010000"],["2024-07-25T10:58:14.010000"],["2024-07-25T10:58:15.010000"],["2024-07-25T10:58:16.010000"],["2024-07-25T10:58:17.010000"],["2024-07-25T10:58:18.010000"],["2024-07-25T10:58:19.010000"],["2024-07-25T10:58:20.010000"],["2024-07-25T10:58:21.010000"],["2024-07-25T10:58:22.010000"],["2024-07-25T10:58:23.010000"],["2024-07-25T10:58:24.010000"],["2024-07-25T10:58:25.010000"],["2024-07-25T10:58:26.010000"],["2024-07-25T10:58:27.010000"],["2024-07-25T10:58:28.010000"],["2024-07-25T10:58:29.010000"],["2024-07-25T10:58:30.010000"],["2024-07-25T10:58:31.010000"],["2024-07-25T10:58:32.010000"],["2024-07-25T10:58:33.010000"],["2024-07-25T10:58:34.010000"],["2024-07-25T10:58:35.010000"],["2024-07-25T10:58:36.010000"],["2024-07-25T10:58:37.010000"],["2024-07-25T10:58:38.010000"],["2024-07-25T10:58:39.010000"],["2024-07-25T10:58:40.010000"],["2024-07-25T10:58:41.010000"],["2024-07-25T10:58:42.010000"],["2024-07-25T10:58:43.010000"],["2024-07-25T10:58:44.010000"],["2024-07-25T10:58:45.010000"],["2024-07-25T10:58:46.010000"],["2024-07-25T10:58:47.010000"],["2024-07-25T10:58:48.010000"],["2024-07-25T10:58:49.010000"],["2024-07-25T10:58:50.010000"],["2024-07-25T10:58:51.010000"],["2024-07-25T10:58:52.010000"],["2024-07-25T10:58:53.010000"],["2024-07-25T10:58:54.010000"],["2024-07-25T10:58:55.010000"],["2024-07-25T10:58:56.010000"],["2024-07-25T10:58:57.010000"],["2024-07-25T10:58:58.010000"],["2024-07-25T10:58:59.010000"],["2024-07-25T10:59:00.010000"],["2024-07-25T10:59:01.010000"],["2024-07-25T10:59:02.010000"],["2024-07-25T10:59:03.010000"],["2024-07-25T10:59:04.010000"],["2024-07-25T10:59:05.010000"],["2024-07-25T10:59:06.010000"],["2024-07-25T10:59:07.010000"],["2024-07-25T10:59:08.010000"],["2024-07-25T10:59:09.010000"],["2024-07-25T10:59:10.010000"],["2024-07-25T10:59:11.010000"],["2024-07-25T10:59:12.010000"],["2024-07-25T10:59:13.010000"],["2024-07-25T10:59:14.010000"],["2024-07-25T10:59:15.010000"],["2024-07-25T10:59:16.010000"],["2024-07-25T10:59:17.010000"],["2024-07-25T10:59:18.010000"],["2024-07-25T10:59:19.010000"],["2024-07-25T10:59:20.010000"],["2024-07-25T10:59:21.010000"],["2024-07-25T10:59:22.010000"],["2024-07-25T10:59:23.010000"],["2024-07-25T10:59:24.010000"],["2024-07-25T10:59:25.010000"],["2024-07-25T10:59:26.010000"],["2024-07-25T10:59:27.010000"],["2024-07-25T10:59:28.010000"],["2024-07-25T10:59:29.010000"],["2024-07-25T10:59:30.010000"],["2024-07-25T10:59:31.010000"],["2024-07-25T10:59:32.010000"],["2024-07-25T10:59:33.010000"],["2024-07-25T10:59:34.010000"],["2024-07-25T10:59:35.010000"],["2024-07-25T10:59:36.010000"],["2024-07-25T10:59:37.010000"],["2024-07-25T10:59:38.010000"],["2024-07-25T10:59:39.010000"],["2024-07-25T10:59:40.010000"],["2024-07-25T10:59:41.010000"],["2024-07-25T10:59:42.010000"],["2024-07-25T10:59:43.010000"],["2024-07-25T10:59:44.010000"],["2024-07-25T10:59:45.010000"],["2024-07-25T10:59:46.010000"],["2024-07-25T10:59:47.010000"],["2024-07-25T10:59:48.010000"],["2024-07-25T10:59:49.010000"],["2024-07-25T10:59:50.010000"],["2024-07-25T10:59:51.010000"],["2024-07-25T10:59:52.010000"],["2024-07-25T10:59:53.010000"],["2024-07-25T10:59:54.010000"],["2024-07-25T10:59:55.010000"],["2024-07-25T10:59:56.010000"],["2024-07-25T10:59:57.010000"],["2024-07-25T10:59:58.010000"],["2024-07-25T10:59:59.010000"],["2024-07-25T11:00:00.010000"],["2024-07-25T11:00:01.010000"],["2024-07-25T11:00:02.010000"],["2024-07-25T11:00:03.010000"],["2024-07-25T11:00:04.010000"],["2024-07-25T11:00:05.010000"],["2024-07-25T11:00:06.010000"],["2024-07-25T11:00:07.010000"],["2024-07-25T11:00:08.010000"],["2024-07-25T11:00:09.010000"],["2024-07-25T11:00:10.010000"],["2024-07-25T11:00:11.010000"],["2024-07-25T11:00:12.010000"],["2024-07-25T11:00:13.010000"],["2024-07-25T11:00:14.010000"],["2024-07-25T11:00:15.010000"],["2024-07-25T11:00:16.010000"],["2024-07-25T11:00:17.010000"],["2024-07-25T11:00:18.010000"],["2024-07-25T11:00:19.010000"],["2024-07-25T11:00:20.010000"],["2024-07-25T11:00:21.010000"],["2024-07-25T11:00:22.010000"],["2024-07-25T11:00:23.010000"],["2024-07-25T11:00:24.010000"],["2024-07-25T11:00:25.010000"],["2024-07-25T11:00:26.010000"],["2024-07-25T11:00:27.010000"],["2024-07-25T11:00:28.010000"],["2024-07-25T11:00:29.010000"],["2024-07-25T11:00:30.010000"],["2024-07-25T11:00:31.010000"],["2024-07-25T11:00:32.010000"],["2024-07-25T11:00:33.010000"],["2024-07-25T11:00:34.010000"],["2024-07-25T11:00:35.010000"],["2024-07-25T11:00:36.010000"],["2024-07-25T11:00:37.010000"],["2024-07-25T11:00:38.010000"],["2024-07-25T11:00:39.010000"],["2024-07-25T11:00:40.010000"],["2024-07-25T11:00:41.010000"],["2024-07-25T11:00:42.010000"],["2024-07-25T11:00:43.010000"],["2024-07-25T11:00:44.010000"],["2024-07-25T11:00:45.010000"],["2024-07-25T11:00:46.010000"],["2024-07-25T11:00:47.010000"],["2024-07-25T11:00:48.010000"],["2024-07-25T11:00:49.010000"],["2024-07-25T11:00:50.010000"],["2024-07-25T11:00:51.010000"],["2024-07-25T11:00:52.010000"],["2024-07-25T11:00:53.010000"],["2024-07-25T11:00:54.010000"],["2024-07-25T11:00:55.010000"],["2024-07-25T11:00:56.010000"],["2024-07-25T11:00:57.010000"],["2024-07-25T11:00:58.010000"],["2024-07-25T11:00:59.010000"],["2024-07-25T11:01:00.010000"],["2024-07-25T11:01:01.010000"],["2024-07-25T11:01:02.010000"],["2024-07-25T11:01:03.010000"],["2024-07-25T11:01:04.010000"],["2024-07-25T11:01:05.010000"],["2024-07-25T11:01:06.010000"],["2024-07-25T11:01:07.010000"],["2024-07-25T11:01:08.010000"],["2024-07-25T11:01:09.010000"],["2024-07-25T11:01:10.010000"],["2024-07-25T11:01:11.010000"],["2024-07-25T11:01:12.010000"],["2024-07-25T11:01:13.010000"],["2024-07-25T11:01:14.010000"],["2024-07-25T11:01:15.010000"],["2024-07-25T11:01:16.010000"],["2024-07-25T11:01:17.010000"],["2024-07-25T11:01:18.010000"],["2024-07-25T11:01:19.010000"],["2024-07-25T11:01:20.010000"],["2024-07-25T11:01:21.010000"],["2024-07-25T11:01:22.010000"],["2024-07-25T11:01:23.010000"],["2024-07-25T11:01:24.010000"],["2024-07-25T11:01:25.010000"],["2024-07-25T11:01:26.010000"],["2024-07-25T11:01:27.010000"],["2024-07-25T11:01:28.010000"],["2024-07-25T11:01:29.010000"],["2024-07-25T11:01:30.010000"],["2024-07-25T11:01:31.010000"],["2024-07-25T11:01:32.010000"],["2024-07-25T11:01:33.010000"],["2024-07-25T11:01:34.010000"],["2024-07-25T11:01:35.010000"],["2024-07-25T11:01:36.010000"],["2024-07-25T11:01:37.010000"],["2024-07-25T11:01:38.010000"],["2024-07-25T11:01:39.010000"],["2024-07-25T11:01:40.010000"],["2024-07-25T11:01:41.010000"],["2024-07-25T11:01:42.010000"],["2024-07-25T11:01:43.010000"],["2024-07-25T11:01:44.010000"],["2024-07-25T11:01:45.010000"],["2024-07-25T11:01:46.010000"],["2024-07-25T11:01:47.010000"],["2024-07-25T11:01:48.010000"],["2024-07-25T11:01:49.010000"],["2024-07-25T11:01:50.010000"],["2024-07-25T11:01:51.010000"],["2024-07-25T11:01:52.010000"],["2024-07-25T11:01:53.010000"],["2024-07-25T11:01:54.010000"],["2024-07-25T11:01:55.010000"],["2024-07-25T11:01:56.010000"],["2024-07-25T11:01:57.010000"],["2024-07-25T11:01:58.010000"],["2024-07-25T11:01:59.010000"],["2024-07-25T11:02:00.010000"],["2024-07-25T11:02:01.010000"],["2024-07-25T11:02:02.010000"],["2024-07-25T11:02:03.010000"],["2024-07-25T11:02:04.010000"],["2024-07-25T11:02:05.010000"],["2024-07-25T11:02:06.010000"],["2024-07-25T11:02:07.010000"],["2024-07-25T11:02:08.010000"],["2024-07-25T11:02:09.010000"],["2024-07-25T11:02:10.010000"],["2024-07-25T11:02:11.010000"],["2024-07-25T11:02:12.010000"],["2024-07-25T11:02:13.010000"],["2024-07-25T11:02:14.010000"],["2024-07-25T11:02:15.010000"],["2024-07-25T11:02:16.010000"],["2024-07-25T11:02:17.010000"],["2024-07-25T11:02:18.010000"],["2024-07-25T11:02:19.010000"],["2024-07-25T11:02:20.010000"],["2024-07-25T11:02:21.010000"],["2024-07-25T11:02:22.010000"],["2024-07-25T11:02:23.010000"],["2024-07-25T11:02:24.010000"],["2024-07-25T11:02:25.010000"],["2024-07-25T11:02:26.010000"],["2024-07-25T11:02:27.010000"],["2024-07-25T11:02:28.010000"],["2024-07-25T11:02:29.010000"],["2024-07-25T11:02:30.010000"],["2024-07-25T11:02:31.010000"],["2024-07-25T11:02:32.010000"],["2024-07-25T11:02:33.010000"],["2024-07-25T11:02:34.010000"],["2024-07-25T11:02:35.010000"],["2024-07-25T11:02:36.010000"],["2024-07-25T11:02:37.010000"],["2024-07-25T11:02:38.010000"],["2024-07-25T11:02:39.010000"],["2024-07-25T11:02:40.010000"],["2024-07-25T11:02:41.010000"],["2024-07-25T11:02:42.010000"],["2024-07-25T11:02:43.010000"],["2024-07-25T11:02:44.010000"],["2024-07-25T11:02:45.010000"],["2024-07-25T11:02:46.010000"],["2024-07-25T11:02:47.010000"],["2024-07-25T11:02:48.010000"],["2024-07-25T11:02:49.010000"],["2024-07-25T11:02:50.010000"],["2024-07-25T11:02:51.010000"],["2024-07-25T11:02:52.010000"],["2024-07-25T11:02:53.010000"],["2024-07-25T11:02:54.010000"],["2024-07-25T11:02:55.010000"],["2024-07-25T11:02:56.010000"],["2024-07-25T11:02:57.010000"],["2024-07-25T11:02:58.010000"],["2024-07-25T11:02:59.010000"],["2024-07-25T11:03:00.010000"],["2024-07-25T11:03:01.010000"],["2024-07-25T11:03:02.010000"],["2024-07-25T11:03:03.010000"],["2024-07-25T11:03:04.010000"],["2024-07-25T11:03:05.010000"],["2024-07-25T11:03:06.010000"],["2024-07-25T11:03:07.010000"],["2024-07-25T11:03:08.010000"],["2024-07-25T11:03:09.010000"],["2024-07-25T11:03:10.010000"],["2024-07-25T11:03:11.010000"],["2024-07-25T11:03:12.010000"],["2024-07-25T11:03:13.010000"],["2024-07-25T11:03:14.010000"],["2024-07-25T11:03:15.010000"],["2024-07-25T11:03:16.010000"],["2024-07-25T11:03:17.010000"],["2024-07-25T11:03:18.010000"],["2024-07-25T11:03:19.010000"],["2024-07-25T11:03:20.010000"],["2024-07-25T11:03:21.010000"],["2024-07-25T11:03:22.010000"],["2024-07-25T11:03:23.010000"],["2024-07-25T11:03:24.010000"],["2024-07-25T11:03:25.010000"],["2024-07-25T11:03:26.010000"],["2024-07-25T11:03:27.010000"],["2024-07-25T11:03:28.010000"],["2024-07-25T11:03:29.010000"],["2024-07-25T11:03:30.010000"],["2024-07-25T11:03:31.010000"],["2024-07-25T11:03:32.010000"],["2024-07-25T11:03:33.010000"],["2024-07-25T11:03:34.010000"],["2024-07-25T11:03:35.010000"],["2024-07-25T11:03:36.010000"],["2024-07-25T11:03:37.010000"],["2024-07-25T11:03:38.010000"],["2024-07-25T11:03:39.010000"],["2024-07-25T11:03:40.010000"],["2024-07-25T11:03:41.010000"],["2024-07-25T11:03:42.010000"],["2024-07-25T11:03:43.010000"],["2024-07-25T11:03:44.010000"],["2024-07-25T11:03:45.010000"],["2024-07-25T11:03:46.010000"],["2024-07-25T11:03:47.010000"],["2024-07-25T11:03:48.010000"],["2024-07-25T11:03:49.010000"],["2024-07-25T11:03:50.010000"],["2024-07-25T11:03:51.010000"],["2024-07-25T11:03:52.010000"],["2024-07-25T11:03:53.010000"],["2024-07-25T11:03:54.010000"],["2024-07-25T11:03:55.010000"],["2024-07-25T11:03:56.010000"],["2024-07-25T11:03:57.010000"],["2024-07-25T11:03:58.010000"],["2024-07-25T11:03:59.010000"],["2024-07-25T11:04:00.010000"],["2024-07-25T11:04:01.010000"],["2024-07-25T11:04:02.010000"],["2024-07-25T11:04:03.010000"],["2024-07-25T11:04:04.010000"],["2024-07-25T11:04:05.010000"],["2024-07-25T11:04:06.010000"],["2024-07-25T11:04:07.010000"],["2024-07-25T11:04:08.010000"],["2024-07-25T11:04:09.010000"],["2024-07-25T11:04:10.010000"],["2024-07-25T11:04:11.010000"],["2024-07-25T11:04:12.010000"],["2024-07-25T11:04:13.010000"],["2024-07-25T11:04:14.010000"],["2024-07-25T11:04:15.010000"],["2024-07-25T11:04:16.010000"],["2024-07-25T11:04:17.010000"],["2024-07-25T11:04:18.010000"],["2024-07-25T11:04:19.010000"],["2024-07-25T11:04:20.010000"],["2024-07-25T11:04:21.010000"],["2024-07-25T11:04:22.010000"],["2024-07-25T11:04:23.010000"],["2024-07-25T11:04:24.010000"],["2024-07-25T11:04:25.010000"],["2024-07-25T11:04:26.010000"],["2024-07-25T11:04:27.010000"],["2024-07-25T11:04:28.010000"],["2024-07-25T11:04:29.010000"],["2024-07-25T11:04:30.010000"],["2024-07-25T11:04:31.010000"],["2024-07-25T11:04:32.010000"],["2024-07-25T11:04:33.010000"],["2024-07-25T11:04:34.010000"],["2024-07-25T11:04:35.010000"],["2024-07-25T11:04:36.010000"],["2024-07-25T11:04:37.010000"],["2024-07-25T11:04:38.010000"],["2024-07-25T11:04:39.010000"],["2024-07-25T11:04:40.010000"],["2024-07-25T11:04:41.010000"],["2024-07-25T11:04:42.010000"],["2024-07-25T11:04:43.010000"],["2024-07-25T11:04:44.010000"],["2024-07-25T11:04:45.010000"],["2024-07-25T11:04:46.010000"],["2024-07-25T11:04:47.010000"],["2024-07-25T11:04:48.010000"],["2024-07-25T11:04:49.010000"],["2024-07-25T11:04:50.010000"],["2024-07-25T11:04:51.010000"],["2024-07-25T11:04:52.010000"],["2024-07-25T11:04:53.010000"],["2024-07-25T11:04:54.010000"],["2024-07-25T11:04:55.010000"],["2024-07-25T11:04:56.010000"],["2024-07-25T11:04:57.010000"],["2024-07-25T11:04:58.010000"],["2024-07-25T11:04:59.010000"],["2024-07-25T11:05:00.010000"],["2024-07-25T11:05:01.010000"],["2024-07-25T11:05:02.010000"],["2024-07-25T11:05:03.010000"],["2024-07-25T11:05:04.010000"],["2024-07-25T11:05:05.010000"],["2024-07-25T11:05:06.010000"],["2024-07-25T11:05:07.010000"],["2024-07-25T11:05:08.010000"],["2024-07-25T11:05:09.010000"],["2024-07-25T11:05:10.010000"],["2024-07-25T11:05:11.010000"],["2024-07-25T11:05:12.010000"],["2024-07-25T11:05:13.010000"],["2024-07-25T11:05:14.010000"],["2024-07-25T11:05:15.010000"],["2024-07-25T11:05:16.010000"],["2024-07-25T11:05:17.010000"],["2024-07-25T11:05:18.010000"],["2024-07-25T11:05:19.010000"],["2024-07-25T11:05:20.010000"],["2024-07-25T11:05:21.010000"],["2024-07-25T11:05:22.010000"],["2024-07-25T11:05:23.010000"],["2024-07-25T11:05:24.010000"],["2024-07-25T11:05:25.010000"],["2024-07-25T11:05:26.010000"],["2024-07-25T11:05:27.010000"],["2024-07-25T11:05:28.010000"],["2024-07-25T11:05:29.010000"],["2024-07-25T11:05:30.010000"],["2024-07-25T11:05:31.010000"],["2024-07-25T11:05:32.010000"],["2024-07-25T11:05:33.010000"],["2024-07-25T11:05:34.010000"],["2024-07-25T11:05:35.010000"],["2024-07-25T11:05:36.010000"],["2024-07-25T11:05:37.010000"],["2024-07-25T11:05:38.010000"],["2024-07-25T11:05:39.010000"],["2024-07-25T11:05:40.010000"],["2024-07-25T11:05:41.010000"],["2024-07-25T11:05:42.010000"],["2024-07-25T11:05:43.010000"],["2024-07-25T11:05:44.010000"],["2024-07-25T11:05:45.010000"],["2024-07-25T11:05:46.010000"],["2024-07-25T11:05:47.010000"],["2024-07-25T11:05:48.010000"],["2024-07-25T11:05:49.010000"],["2024-07-25T11:05:50.010000"],["2024-07-25T11:05:51.010000"],["2024-07-25T11:05:52.010000"],["2024-07-25T11:05:53.010000"],["2024-07-25T11:05:54.010000"],["2024-07-25T11:05:55.010000"],["2024-07-25T11:05:56.010000"],["2024-07-25T11:05:57.010000"],["2024-07-25T11:05:58.010000"],["2024-07-25T11:05:59.010000"],["2024-07-25T11:06:00.010000"],["2024-07-25T11:06:01.010000"],["2024-07-25T11:06:02.010000"],["2024-07-25T11:06:03.010000"],["2024-07-25T11:06:04.010000"],["2024-07-25T11:06:05.010000"],["2024-07-25T11:06:06.010000"],["2024-07-25T11:06:07.010000"],["2024-07-25T11:06:08.010000"],["2024-07-25T11:06:09.010000"],["2024-07-25T11:06:10.010000"],["2024-07-25T11:06:11.010000"],["2024-07-25T11:06:12.010000"],["2024-07-25T11:06:13.010000"],["2024-07-25T11:06:14.010000"],["2024-07-25T11:06:15.010000"],["2024-07-25T11:06:16.010000"],["2024-07-25T11:06:17.010000"],["2024-07-25T11:06:18.010000"],["2024-07-25T11:06:19.010000"],["2024-07-25T11:06:20.010000"],["2024-07-25T11:06:21.010000"],["2024-07-25T11:06:22.010000"],["2024-07-25T11:06:23.010000"],["2024-07-25T11:06:24.010000"],["2024-07-25T11:06:25.010000"],["2024-07-25T11:06:26.010000"],["2024-07-25T11:06:27.010000"],["2024-07-25T11:06:28.010000"],["2024-07-25T11:06:29.010000"],["2024-07-25T11:06:30.010000"],["2024-07-25T11:06:31.010000"],["2024-07-25T11:06:32.010000"],["2024-07-25T11:06:33.010000"],["2024-07-25T11:06:34.010000"],["2024-07-25T11:06:35.010000"],["2024-07-25T11:06:36.010000"],["2024-07-25T11:06:37.010000"],["2024-07-25T11:06:38.010000"],["2024-07-25T11:06:39.010000"],["2024-07-25T11:06:40.010000"],["2024-07-25T11:06:41.010000"],["2024-07-25T11:06:42.010000"],["2024-07-25T11:06:43.010000"],["2024-07-25T11:06:44.010000"],["2024-07-25T11:06:45.010000"],["2024-07-25T11:06:46.010000"],["2024-07-25T11:06:47.010000"],["2024-07-25T11:06:48.010000"],["2024-07-25T11:06:49.010000"],["2024-07-25T11:06:50.010000"],["2024-07-25T11:06:51.010000"],["2024-07-25T11:06:52.010000"],["2024-07-25T11:06:53.010000"],["2024-07-25T11:06:54.010000"],["2024-07-25T11:06:55.010000"],["2024-07-25T11:06:56.010000"],["2024-07-25T11:06:57.010000"],["2024-07-25T11:06:58.010000"],["2024-07-25T11:06:59.010000"],["2024-07-25T11:07:00.010000"],["2024-07-25T11:07:01.010000"],["2024-07-25T11:07:02.010000"],["2024-07-25T11:07:03.010000"],["2024-07-25T11:07:04.010000"],["2024-07-25T11:07:05.010000"],["2024-07-25T11:07:06.010000"],["2024-07-25T11:07:07.010000"],["2024-07-25T11:07:08.010000"],["2024-07-25T11:07:09.010000"],["2024-07-25T11:07:10.010000"],["2024-07-25T11:07:11.010000"],["2024-07-25T11:07:12.010000"],["2024-07-25T11:07:13.010000"],["2024-07-25T11:07:14.010000"],["2024-07-25T11:07:15.010000"],["2024-07-25T11:07:16.010000"],["2024-07-25T11:07:17.010000"],["2024-07-25T11:07:18.010000"],["2024-07-25T11:07:19.010000"],["2024-07-25T11:07:20.010000"],["2024-07-25T11:07:21.010000"],["2024-07-25T11:07:22.010000"],["2024-07-25T11:07:23.010000"],["2024-07-25T11:07:24.010000"],["2024-07-25T11:07:25.010000"],["2024-07-25T11:07:26.010000"],["2024-07-25T11:07:27.010000"],["2024-07-25T11:07:28.010000"],["2024-07-25T11:07:29.010000"],["2024-07-25T11:07:30.010000"],["2024-07-25T11:07:31.010000"],["2024-07-25T11:07:32.010000"],["2024-07-25T11:07:33.010000"],["2024-07-25T11:07:34.010000"],["2024-07-25T11:07:35.010000"],["2024-07-25T11:07:36.010000"],["2024-07-25T11:07:37.010000"],["2024-07-25T11:07:38.010000"],["2024-07-25T11:07:39.010000"],["2024-07-25T11:07:40.010000"],["2024-07-25T11:07:41.010000"],["2024-07-25T11:07:42.010000"],["2024-07-25T11:07:43.010000"],["2024-07-25T11:07:44.010000"],["2024-07-25T11:07:45.010000"],["2024-07-25T11:07:46.010000"],["2024-07-25T11:07:47.010000"],["2024-07-25T11:07:48.010000"],["2024-07-25T11:07:49.010000"],["2024-07-25T11:07:50.010000"],["2024-07-25T11:07:51.010000"],["2024-07-25T11:07:52.010000"],["2024-07-25T11:07:53.010000"],["2024-07-25T11:07:54.010000"],["2024-07-25T11:07:55.010000"],["2024-07-25T11:07:56.010000"],["2024-07-25T11:07:57.010000"],["2024-07-25T11:07:58.010000"],["2024-07-25T11:07:59.010000"],["2024-07-25T11:08:00.010000"],["2024-07-25T11:08:01.010000"],["2024-07-25T11:08:02.010000"],["2024-07-25T11:08:03.010000"],["2024-07-25T11:08:04.010000"],["2024-07-25T11:08:05.010000"],["2024-07-25T11:08:06.010000"],["2024-07-25T11:08:07.010000"],["2024-07-25T11:08:08.010000"],["2024-07-25T11:08:09.010000"],["2024-07-25T11:08:10.010000"],["2024-07-25T11:08:11.010000"],["2024-07-25T11:08:12.010000"],["2024-07-25T11:08:13.010000"],["2024-07-25T11:08:14.010000"],["2024-07-25T11:08:15.010000"],["2024-07-25T11:08:16.010000"],["2024-07-25T11:08:17.010000"],["2024-07-25T11:08:18.010000"],["2024-07-25T11:08:19.010000"],["2024-07-25T11:08:20.010000"],["2024-07-25T11:08:21.010000"],["2024-07-25T11:08:22.010000"],["2024-07-25T11:08:23.010000"],["2024-07-25T11:08:24.010000"],["2024-07-25T11:08:25.010000"],["2024-07-25T11:08:26.010000"],["2024-07-25T11:08:27.010000"],["2024-07-25T11:08:28.010000"],["2024-07-25T11:08:29.010000"],["2024-07-25T11:08:30.010000"],["2024-07-25T11:08:31.010000"],["2024-07-25T11:08:32.010000"],["2024-07-25T11:08:33.010000"],["2024-07-25T11:08:34.010000"],["2024-07-25T11:08:35.010000"],["2024-07-25T11:08:36.010000"],["2024-07-25T11:08:37.010000"],["2024-07-25T11:08:38.010000"],["2024-07-25T11:08:39.010000"],["2024-07-25T11:08:40.010000"],["2024-07-25T11:08:41.010000"],["2024-07-25T11:08:42.010000"],["2024-07-25T11:08:43.010000"],["2024-07-25T11:08:44.010000"],["2024-07-25T11:08:45.010000"],["2024-07-25T11:08:46.010000"],["2024-07-25T11:08:47.010000"],["2024-07-25T11:08:48.010000"],["2024-07-25T11:08:49.010000"],["2024-07-25T11:08:50.010000"],["2024-07-25T11:08:51.010000"],["2024-07-25T11:08:52.010000"],["2024-07-25T11:08:53.010000"],["2024-07-25T11:08:54.010000"],["2024-07-25T11:08:55.010000"],["2024-07-25T11:08:56.010000"],["2024-07-25T11:08:57.010000"],["2024-07-25T11:08:58.010000"],["2024-07-25T11:08:59.010000"],["2024-07-25T11:09:00.010000"],["2024-07-25T11:09:01.010000"],["2024-07-25T11:09:02.010000"],["2024-07-25T11:09:03.010000"],["2024-07-25T11:09:04.010000"],["2024-07-25T11:09:05.010000"],["2024-07-25T11:09:06.010000"],["2024-07-25T11:09:07.010000"],["2024-07-25T11:09:08.010000"],["2024-07-25T11:09:09.010000"],["2024-07-25T11:09:10.010000"],["2024-07-25T11:09:11.010000"],["2024-07-25T11:09:12.010000"],["2024-07-25T11:09:13.010000"],["2024-07-25T11:09:14.010000"],["2024-07-25T11:09:15.010000"],["2024-07-25T11:09:16.010000"],["2024-07-25T11:09:17.010000"],["2024-07-25T11:09:18.010000"],["2024-07-25T11:09:19.010000"],["2024-07-25T11:09:20.010000"],["2024-07-25T11:09:21.010000"],["2024-07-25T11:09:22.010000"],["2024-07-25T11:09:23.010000"],["2024-07-25T11:09:24.010000"],["2024-07-25T11:09:25.010000"],["2024-07-25T11:09:26.010000"],["2024-07-25T11:09:27.010000"],["2024-07-25T11:09:28.010000"],["2024-07-25T11:09:29.010000"],["2024-07-25T11:09:30.010000"],["2024-07-25T11:09:31.010000"],["2024-07-25T11:09:32.010000"],["2024-07-25T11:09:33.010000"],["2024-07-25T11:09:34.010000"],["2024-07-25T11:09:35.010000"],["2024-07-25T11:09:36.010000"],["2024-07-25T11:09:37.010000"],["2024-07-25T11:09:38.010000"],["2024-07-25T11:09:39.010000"],["2024-07-25T11:09:40.010000"],["2024-07-25T11:09:41.010000"],["2024-07-25T11:09:42.010000"],["2024-07-25T11:09:43.010000"],["2024-07-25T11:09:44.010000"],["2024-07-25T11:09:45.010000"],["2024-07-25T11:09:46.010000"],["2024-07-25T11:09:47.010000"],["2024-07-25T11:09:48.010000"],["2024-07-25T11:09:49.010000"],["2024-07-25T11:09:50.010000"],["2024-07-25T11:09:51.010000"],["2024-07-25T11:09:52.010000"],["2024-07-25T11:09:53.010000"],["2024-07-25T11:09:54.010000"],["2024-07-25T11:09:55.010000"],["2024-07-25T11:09:56.010000"],["2024-07-25T11:09:57.010000"],["2024-07-25T11:09:58.010000"],["2024-07-25T11:09:59.010000"],["2024-07-25T11:10:00.010000"],["2024-07-25T11:10:01.010000"],["2024-07-25T11:10:02.010000"],["2024-07-25T11:10:03.010000"],["2024-07-25T11:10:04.010000"],["2024-07-25T11:10:05.010000"],["2024-07-25T11:10:06.010000"],["2024-07-25T11:10:07.010000"],["2024-07-25T11:10:08.010000"],["2024-07-25T11:10:09.010000"],["2024-07-25T11:10:10.010000"],["2024-07-25T11:10:11.010000"],["2024-07-25T11:10:12.010000"],["2024-07-25T11:10:13.010000"],["2024-07-25T11:10:14.010000"],["2024-07-25T11:10:15.010000"],["2024-07-25T11:10:16.010000"],["2024-07-25T11:10:17.010000"],["2024-07-25T11:10:18.010000"],["2024-07-25T11:10:19.010000"],["2024-07-25T11:10:20.010000"],["2024-07-25T11:10:21.010000"],["2024-07-25T11:10:22.010000"],["2024-07-25T11:10:23.010000"],["2024-07-25T11:10:24.010000"],["2024-07-25T11:10:25.010000"],["2024-07-25T11:10:26.010000"],["2024-07-25T11:10:27.010000"],["2024-07-25T11:10:28.010000"],["2024-07-25T11:10:29.010000"],["2024-07-25T11:10:30.010000"],["2024-07-25T11:10:31.010000"],["2024-07-25T11:10:32.010000"],["2024-07-25T11:10:33.010000"],["2024-07-25T11:10:34.010000"],["2024-07-25T11:10:35.010000"],["2024-07-25T11:10:36.010000"],["2024-07-25T11:10:37.010000"],["2024-07-25T11:10:38.010000"],["2024-07-25T11:10:39.010000"],["2024-07-25T11:10:40.010000"],["2024-07-25T11:10:41.010000"],["2024-07-25T11:10:42.010000"],["2024-07-25T11:10:43.010000"],["2024-07-25T11:10:44.010000"],["2024-07-25T11:10:45.010000"],["2024-07-25T11:10:46.010000"],["2024-07-25T11:10:47.010000"],["2024-07-25T11:10:48.010000"],["2024-07-25T11:10:49.010000"],["2024-07-25T11:10:50.010000"],["2024-07-25T11:10:51.010000"],["2024-07-25T11:10:52.010000"],["2024-07-25T11:10:53.010000"],["2024-07-25T11:10:54.010000"],["2024-07-25T11:10:55.010000"],["2024-07-25T11:10:56.010000"],["2024-07-25T11:10:57.010000"],["2024-07-25T11:10:58.010000"],["2024-07-25T11:10:59.010000"],["2024-07-25T11:11:00.010000"],["2024-07-25T11:11:01.010000"],["2024-07-25T11:11:02.010000"],["2024-07-25T11:11:03.010000"],["2024-07-25T11:11:04.010000"],["2024-07-25T11:11:05.010000"],["2024-07-25T11:11:06.010000"],["2024-07-25T11:11:07.010000"],["2024-07-25T11:11:08.010000"],["2024-07-25T11:11:09.010000"],["2024-07-25T11:11:10.010000"],["2024-07-25T11:11:11.010000"],["2024-07-25T11:11:12.010000"],["2024-07-25T11:11:13.010000"],["2024-07-25T11:11:14.010000"],["2024-07-25T11:11:15.010000"],["2024-07-25T11:11:16.010000"],["2024-07-25T11:11:17.010000"],["2024-07-25T11:11:18.010000"],["2024-07-25T11:11:19.010000"],["2024-07-25T11:11:20.010000"],["2024-07-25T11:11:21.010000"],["2024-07-25T11:11:22.010000"],["2024-07-25T11:11:23.010000"],["2024-07-25T11:11:24.010000"],["2024-07-25T11:11:25.010000"],["2024-07-25T11:11:26.010000"],["2024-07-25T11:11:27.010000"],["2024-07-25T11:11:28.010000"],["2024-07-25T11:11:29.010000"],["2024-07-25T11:11:30.010000"],["2024-07-25T11:11:31.010000"],["2024-07-25T11:11:32.010000"],["2024-07-25T11:11:33.010000"],["2024-07-25T11:11:34.010000"],["2024-07-25T11:11:35.010000"],["2024-07-25T11:11:36.010000"],["2024-07-25T11:11:37.010000"],["2024-07-25T11:11:38.010000"],["2024-07-25T11:11:39.010000"],["2024-07-25T11:11:40.010000"],["2024-07-25T11:11:41.010000"],["2024-07-25T11:11:42.010000"],["2024-07-25T11:11:43.010000"],["2024-07-25T11:11:44.010000"],["2024-07-25T11:11:45.010000"],["2024-07-25T11:11:46.010000"],["2024-07-25T11:11:47.010000"],["2024-07-25T11:11:48.010000"],["2024-07-25T11:11:49.010000"],["2024-07-25T11:11:50.010000"],["2024-07-25T11:11:51.010000"],["2024-07-25T11:11:52.010000"],["2024-07-25T11:11:53.010000"],["2024-07-25T11:11:54.010000"],["2024-07-25T11:11:55.010000"],["2024-07-25T11:11:56.010000"],["2024-07-25T11:11:57.010000"],["2024-07-25T11:11:58.010000"],["2024-07-25T11:11:59.010000"],["2024-07-25T11:12:00.010000"],["2024-07-25T11:12:01.010000"],["2024-07-25T11:12:02.010000"],["2024-07-25T11:12:03.010000"],["2024-07-25T11:12:04.010000"],["2024-07-25T11:12:05.010000"],["2024-07-25T11:12:06.010000"],["2024-07-25T11:12:07.010000"],["2024-07-25T11:12:08.010000"],["2024-07-25T11:12:09.010000"],["2024-07-25T11:12:10.010000"],["2024-07-25T11:12:11.010000"],["2024-07-25T11:12:12.010000"],["2024-07-25T11:12:13.010000"],["2024-07-25T11:12:14.010000"],["2024-07-25T11:12:15.010000"],["2024-07-25T11:12:16.010000"],["2024-07-25T11:12:17.010000"],["2024-07-25T11:12:18.010000"],["2024-07-25T11:12:19.010000"],["2024-07-25T11:12:20.010000"],["2024-07-25T11:12:21.010000"],["2024-07-25T11:12:22.010000"],["2024-07-25T11:12:23.010000"],["2024-07-25T11:12:24.010000"],["2024-07-25T11:12:25.010000"],["2024-07-25T11:12:26.010000"],["2024-07-25T11:12:27.010000"],["2024-07-25T11:12:28.010000"],["2024-07-25T11:12:29.010000"],["2024-07-25T11:12:30.010000"],["2024-07-25T11:12:31.010000"],["2024-07-25T11:12:32.010000"],["2024-07-25T11:12:33.010000"],["2024-07-25T11:12:34.010000"],["2024-07-25T11:12:35.010000"],["2024-07-25T11:12:36.010000"],["2024-07-25T11:12:37.010000"],["2024-07-25T11:12:38.010000"],["2024-07-25T11:12:39.010000"],["2024-07-25T11:12:40.010000"],["2024-07-25T11:12:41.010000"],["2024-07-25T11:12:42.010000"],["2024-07-25T11:12:43.010000"],["2024-07-25T11:12:44.010000"],["2024-07-25T11:12:45.010000"],["2024-07-25T11:12:46.010000"],["2024-07-25T11:12:47.010000"],["2024-07-25T11:12:48.010000"],["2024-07-25T11:12:49.010000"],["2024-07-25T11:12:50.010000"],["2024-07-25T11:12:51.010000"],["2024-07-25T11:12:52.010000"],["2024-07-25T11:12:53.010000"],["2024-07-25T11:12:54.010000"],["2024-07-25T11:12:55.010000"],["2024-07-25T11:12:56.010000"],["2024-07-25T11:12:57.010000"],["2024-07-25T11:12:58.010000"],["2024-07-25T11:12:59.010000"],["2024-07-25T11:13:00.010000"],["2024-07-25T11:13:01.010000"],["2024-07-25T11:13:02.010000"],["2024-07-25T11:13:03.010000"],["2024-07-25T11:13:04.010000"],["2024-07-25T11:13:05.010000"],["2024-07-25T11:13:06.010000"],["2024-07-25T11:13:07.010000"],["2024-07-25T11:13:08.010000"],["2024-07-25T11:13:09.010000"],["2024-07-25T11:13:10.010000"],["2024-07-25T11:13:11.010000"],["2024-07-25T11:13:12.010000"],["2024-07-25T11:13:13.010000"],["2024-07-25T11:13:14.010000"],["2024-07-25T11:13:15.010000"],["2024-07-25T11:13:16.010000"],["2024-07-25T11:13:17.010000"],["2024-07-25T11:13:18.010000"],["2024-07-25T11:13:19.010000"],["2024-07-25T11:13:20.010000"],["2024-07-25T11:13:21.010000"],["2024-07-25T11:13:22.010000"],["2024-07-25T11:13:23.010000"],["2024-07-25T11:13:24.010000"],["2024-07-25T11:13:25.010000"],["2024-07-25T11:13:26.010000"],["2024-07-25T11:13:27.010000"],["2024-07-25T11:13:28.010000"],["2024-07-25T11:13:29.010000"],["2024-07-25T11:13:30.010000"],["2024-07-25T11:13:31.010000"],["2024-07-25T11:13:32.010000"],["2024-07-25T11:13:33.010000"],["2024-07-25T11:13:34.010000"],["2024-07-25T11:13:35.010000"],["2024-07-25T11:13:36.010000"],["2024-07-25T11:13:37.010000"],["2024-07-25T11:13:38.010000"],["2024-07-25T11:13:39.010000"],["2024-07-25T11:13:40.010000"],["2024-07-25T11:13:41.010000"],["2024-07-25T11:13:42.010000"],["2024-07-25T11:13:43.010000"],["2024-07-25T11:13:44.010000"],["2024-07-25T11:13:45.010000"],["2024-07-25T11:13:46.010000"],["2024-07-25T11:13:47.010000"],["2024-07-25T11:13:48.010000"],["2024-07-25T11:13:49.010000"],["2024-07-25T11:13:50.010000"],["2024-07-25T11:13:51.010000"],["2024-07-25T11:13:52.010000"],["2024-07-25T11:13:53.010000"],["2024-07-25T11:13:54.010000"],["2024-07-25T11:13:55.010000"],["2024-07-25T11:13:56.010000"],["2024-07-25T11:13:57.010000"],["2024-07-25T11:13:58.010000"],["2024-07-25T11:13:59.010000"],["2024-07-25T11:14:00.010000"],["2024-07-25T11:14:01.010000"],["2024-07-25T11:14:02.010000"],["2024-07-25T11:14:03.010000"],["2024-07-25T11:14:04.010000"],["2024-07-25T11:14:05.010000"],["2024-07-25T11:14:06.010000"],["2024-07-25T11:14:07.010000"],["2024-07-25T11:14:08.010000"],["2024-07-25T11:14:09.010000"],["2024-07-25T11:14:10.010000"],["2024-07-25T11:14:11.010000"],["2024-07-25T11:14:12.010000"],["2024-07-25T11:14:13.010000"],["2024-07-25T11:14:14.010000"],["2024-07-25T11:14:15.010000"],["2024-07-25T11:14:16.010000"],["2024-07-25T11:14:17.010000"],["2024-07-25T11:14:18.010000"],["2024-07-25T11:14:19.010000"],["2024-07-25T11:14:20.010000"],["2024-07-25T11:14:21.010000"],["2024-07-25T11:14:22.010000"],["2024-07-25T11:14:23.010000"],["2024-07-25T11:14:24.010000"],["2024-07-25T11:14:25.010000"],["2024-07-25T11:14:26.010000"],["2024-07-25T11:14:27.010000"],["2024-07-25T11:14:28.010000"],["2024-07-25T11:14:29.010000"],["2024-07-25T11:14:30.010000"],["2024-07-25T11:14:31.010000"],["2024-07-25T11:14:32.010000"],["2024-07-25T11:14:33.010000"],["2024-07-25T11:14:34.010000"],["2024-07-25T11:14:35.010000"],["2024-07-25T11:14:36.010000"],["2024-07-25T11:14:37.010000"],["2024-07-25T11:14:38.010000"],["2024-07-25T11:14:39.010000"],["2024-07-25T11:14:40.010000"],["2024-07-25T11:14:41.010000"],["2024-07-25T11:14:42.010000"],["2024-07-25T11:14:43.010000"],["2024-07-25T11:14:44.010000"],["2024-07-25T11:14:45.010000"],["2024-07-25T11:14:46.010000"],["2024-07-25T11:14:47.010000"],["2024-07-25T11:14:48.010000"],["2024-07-25T11:14:49.010000"],["2024-07-25T11:14:50.010000"],["2024-07-25T11:14:51.010000"],["2024-07-25T11:14:52.010000"],["2024-07-25T11:14:53.010000"],["2024-07-25T11:14:54.010000"],["2024-07-25T11:14:55.010000"],["2024-07-25T11:14:56.010000"],["2024-07-25T11:14:57.010000"],["2024-07-25T11:14:58.010000"],["2024-07-25T11:14:59.010000"],["2024-07-25T11:15:00.010000"],["2024-07-25T11:15:01.010000"],["2024-07-25T11:15:02.010000"],["2024-07-25T11:15:03.010000"],["2024-07-25T11:15:04.010000"],["2024-07-25T11:15:05.010000"],["2024-07-25T11:15:06.010000"],["2024-07-25T11:15:07.010000"],["2024-07-25T11:15:08.010000"],["2024-07-25T11:15:09.010000"],["2024-07-25T11:15:10.010000"],["2024-07-25T11:15:11.010000"],["2024-07-25T11:15:12.010000"],["2024-07-25T11:15:13.010000"],["2024-07-25T11:15:14.010000"],["2024-07-25T11:15:15.010000"],["2024-07-25T11:15:16.010000"],["2024-07-25T11:15:17.010000"],["2024-07-25T11:15:18.010000"],["2024-07-25T11:15:19.010000"],["2024-07-25T11:15:20.010000"],["2024-07-25T11:15:21.010000"],["2024-07-25T11:15:22.010000"],["2024-07-25T11:15:23.010000"],["2024-07-25T11:15:24.010000"],["2024-07-25T11:15:25.010000"],["2024-07-25T11:15:26.010000"],["2024-07-25T11:15:27.010000"],["2024-07-25T11:15:28.010000"],["2024-07-25T11:15:29.010000"],["2024-07-25T11:15:30.010000"],["2024-07-25T11:15:31.010000"],["2024-07-25T11:15:32.010000"],["2024-07-25T11:15:33.010000"],["2024-07-25T11:15:34.010000"],["2024-07-25T11:15:35.010000"],["2024-07-25T11:15:36.010000"],["2024-07-25T11:15:37.010000"],["2024-07-25T11:15:38.010000"],["2024-07-25T11:15:39.010000"],["2024-07-25T11:15:40.010000"],["2024-07-25T11:15:41.010000"],["2024-07-25T11:15:42.010000"],["2024-07-25T11:15:43.010000"],["2024-07-25T11:15:44.010000"],["2024-07-25T11:15:45.010000"],["2024-07-25T11:15:46.010000"],["2024-07-25T11:15:47.010000"],["2024-07-25T11:15:48.010000"],["2024-07-25T11:15:49.010000"],["2024-07-25T11:15:50.010000"],["2024-07-25T11:15:51.010000"],["2024-07-25T11:15:52.010000"],["2024-07-25T11:15:53.010000"],["2024-07-25T11:15:54.010000"],["2024-07-25T11:15:55.010000"],["2024-07-25T11:15:56.010000"],["2024-07-25T11:15:57.010000"],["2024-07-25T11:15:58.010000"],["2024-07-25T11:15:59.010000"],["2024-07-25T11:16:00.010000"],["2024-07-25T11:16:01.010000"],["2024-07-25T11:16:02.010000"],["2024-07-25T11:16:03.010000"],["2024-07-25T11:16:04.010000"],["2024-07-25T11:16:05.010000"],["2024-07-25T11:16:06.010000"],["2024-07-25T11:16:07.010000"],["2024-07-25T11:16:08.010000"],["2024-07-25T11:16:09.010000"],["2024-07-25T11:16:10.010000"],["2024-07-25T11:16:11.010000"],["2024-07-25T11:16:12.010000"],["2024-07-25T11:16:13.010000"],["2024-07-25T11:16:14.010000"],["2024-07-25T11:16:15.010000"],["2024-07-25T11:16:16.010000"],["2024-07-25T11:16:17.010000"],["2024-07-25T11:16:18.010000"],["2024-07-25T11:16:19.010000"],["2024-07-25T11:16:20.010000"],["2024-07-25T11:16:21.010000"],["2024-07-25T11:16:22.010000"],["2024-07-25T11:16:23.010000"],["2024-07-25T11:16:24.010000"],["2024-07-25T11:16:25.010000"],["2024-07-25T11:16:26.010000"],["2024-07-25T11:16:27.010000"],["2024-07-25T11:16:28.010000"],["2024-07-25T11:16:29.010000"],["2024-07-25T11:16:30.010000"],["2024-07-25T11:16:31.010000"],["2024-07-25T11:16:32.010000"],["2024-07-25T11:16:33.010000"],["2024-07-25T11:16:34.010000"],["2024-07-25T11:16:35.010000"],["2024-07-25T11:16:36.010000"],["2024-07-25T11:16:37.010000"],["2024-07-25T11:16:38.010000"],["2024-07-25T11:16:39.010000"],["2024-07-25T11:16:40.010000"],["2024-07-25T11:16:41.010000"],["2024-07-25T11:16:42.010000"],["2024-07-25T11:16:43.010000"],["2024-07-25T11:16:44.010000"],["2024-07-25T11:16:45.010000"],["2024-07-25T11:16:46.010000"],["2024-07-25T11:16:47.010000"],["2024-07-25T11:16:48.010000"],["2024-07-25T11:16:49.010000"],["2024-07-25T11:16:50.010000"],["2024-07-25T11:16:51.010000"],["2024-07-25T11:16:52.010000"],["2024-07-25T11:16:53.010000"],["2024-07-25T11:16:54.010000"],["2024-07-25T11:16:55.010000"],["2024-07-25T11:16:56.010000"],["2024-07-25T11:16:57.010000"],["2024-07-25T11:16:58.010000"],["2024-07-25T11:16:59.010000"],["2024-07-25T11:17:00.010000"],["2024-07-25T11:17:01.010000"],["2024-07-25T11:17:02.010000"],["2024-07-25T11:17:03.010000"],["2024-07-25T11:17:04.010000"],["2024-07-25T11:17:05.010000"],["2024-07-25T11:17:06.010000"],["2024-07-25T11:17:07.010000"],["2024-07-25T11:17:08.010000"],["2024-07-25T11:17:09.010000"],["2024-07-25T11:17:10.010000"],["2024-07-25T11:17:11.010000"],["2024-07-25T11:17:12.010000"],["2024-07-25T11:17:13.010000"],["2024-07-25T11:17:14.010000"],["2024-07-25T11:17:15.010000"],["2024-07-25T11:17:16.010000"],["2024-07-25T11:17:17.010000"],["2024-07-25T11:17:18.010000"],["2024-07-25T11:17:19.010000"],["2024-07-25T11:17:20.010000"],["2024-07-25T11:17:21.010000"],["2024-07-25T11:17:22.010000"],["2024-07-25T11:17:23.010000"],["2024-07-25T11:17:24.010000"],["2024-07-25T11:17:25.010000"],["2024-07-25T11:17:26.010000"],["2024-07-25T11:17:27.010000"],["2024-07-25T11:17:28.010000"],["2024-07-25T11:17:29.010000"],["2024-07-25T11:17:30.010000"],["2024-07-25T11:17:31.010000"],["2024-07-25T11:17:32.010000"],["2024-07-25T11:17:33.010000"],["2024-07-25T11:17:34.010000"],["2024-07-25T11:17:35.010000"],["2024-07-25T11:17:36.010000"],["2024-07-25T11:17:37.010000"],["2024-07-25T11:17:38.010000"],["2024-07-25T11:17:39.010000"],["2024-07-25T11:17:40.010000"],["2024-07-25T11:17:41.010000"],["2024-07-25T11:17:42.010000"],["2024-07-25T11:17:43.010000"],["2024-07-25T11:17:44.010000"],["2024-07-25T11:17:45.010000"],["2024-07-25T11:17:46.010000"],["2024-07-25T11:17:47.010000"],["2024-07-25T11:17:48.010000"],["2024-07-25T11:17:49.010000"],["2024-07-25T11:17:50.010000"],["2024-07-25T11:17:51.010000"],["2024-07-25T11:17:52.010000"],["2024-07-25T11:17:53.010000"],["2024-07-25T11:17:54.010000"],["2024-07-25T11:17:55.010000"],["2024-07-25T11:17:56.010000"],["2024-07-25T11:17:57.010000"],["2024-07-25T11:17:58.010000"],["2024-07-25T11:17:59.010000"],["2024-07-25T11:18:00.010000"],["2024-07-25T11:18:01.010000"],["2024-07-25T11:18:02.010000"],["2024-07-25T11:18:03.010000"],["2024-07-25T11:18:04.010000"],["2024-07-25T11:18:05.010000"],["2024-07-25T11:18:06.010000"],["2024-07-25T11:18:07.010000"],["2024-07-25T11:18:08.010000"],["2024-07-25T11:18:09.010000"],["2024-07-25T11:18:10.010000"],["2024-07-25T11:18:11.010000"],["2024-07-25T11:18:12.010000"],["2024-07-25T11:18:13.010000"],["2024-07-25T11:18:14.010000"],["2024-07-25T11:18:15.010000"],["2024-07-25T11:18:16.010000"],["2024-07-25T11:18:17.010000"],["2024-07-25T11:18:18.010000"],["2024-07-25T11:18:19.010000"],["2024-07-25T11:18:20.010000"],["2024-07-25T11:18:21.010000"],["2024-07-25T11:18:22.010000"],["2024-07-25T11:18:23.010000"],["2024-07-25T11:18:24.010000"],["2024-07-25T11:18:25.010000"],["2024-07-25T11:18:26.010000"],["2024-07-25T11:18:27.010000"],["2024-07-25T11:18:28.010000"],["2024-07-25T11:18:29.010000"],["2024-07-25T11:18:30.010000"],["2024-07-25T11:18:31.010000"],["2024-07-25T11:18:32.010000"],["2024-07-25T11:18:33.010000"],["2024-07-25T11:18:34.010000"],["2024-07-25T11:18:35.010000"],["2024-07-25T11:18:36.010000"],["2024-07-25T11:18:37.010000"],["2024-07-25T11:18:38.010000"],["2024-07-25T11:18:39.010000"],["2024-07-25T11:18:40.010000"],["2024-07-25T11:18:41.010000"],["2024-07-25T11:18:42.010000"],["2024-07-25T11:18:43.010000"],["2024-07-25T11:18:44.010000"],["2024-07-25T11:18:45.010000"],["2024-07-25T11:18:46.010000"],["2024-07-25T11:18:47.010000"],["2024-07-25T11:18:48.010000"],["2024-07-25T11:18:49.010000"],["2024-07-25T11:18:50.010000"],["2024-07-25T11:18:51.010000"],["2024-07-25T11:18:52.010000"],["2024-07-25T11:18:53.010000"],["2024-07-25T11:18:54.010000"],["2024-07-25T11:18:55.010000"],["2024-07-25T11:18:56.010000"],["2024-07-25T11:18:57.010000"],["2024-07-25T11:18:58.010000"],["2024-07-25T11:18:59.010000"],["2024-07-25T11:19:00.010000"],["2024-07-25T11:19:01.010000"],["2024-07-25T11:19:02.010000"],["2024-07-25T11:19:03.010000"],["2024-07-25T11:19:04.010000"],["2024-07-25T11:19:05.010000"],["2024-07-25T11:19:06.010000"],["2024-07-25T11:19:07.010000"],["2024-07-25T11:19:08.010000"],["2024-07-25T11:19:09.010000"],["2024-07-25T11:19:10.010000"],["2024-07-25T11:19:11.010000"],["2024-07-25T11:19:12.010000"],["2024-07-25T11:19:13.010000"],["2024-07-25T11:19:14.010000"],["2024-07-25T11:19:15.010000"],["2024-07-25T11:19:16.010000"],["2024-07-25T11:19:17.010000"],["2024-07-25T11:19:18.010000"],["2024-07-25T11:19:19.010000"],["2024-07-25T11:19:20.010000"],["2024-07-25T11:19:21.010000"],["2024-07-25T11:19:22.010000"],["2024-07-25T11:19:23.010000"],["2024-07-25T11:19:24.010000"],["2024-07-25T11:19:25.010000"],["2024-07-25T11:19:26.010000"],["2024-07-25T11:19:27.010000"],["2024-07-25T11:19:28.010000"],["2024-07-25T11:19:29.010000"],["2024-07-25T11:19:30.010000"],["2024-07-25T11:19:31.010000"],["2024-07-25T11:19:32.010000"],["2024-07-25T11:19:33.010000"],["2024-07-25T11:19:34.010000"],["2024-07-25T11:19:35.010000"],["2024-07-25T11:19:36.010000"],["2024-07-25T11:19:37.010000"],["2024-07-25T11:19:38.010000"],["2024-07-25T11:19:39.010000"],["2024-07-25T11:19:40.010000"],["2024-07-25T11:19:41.010000"],["2024-07-25T11:19:42.010000"],["2024-07-25T11:19:43.010000"],["2024-07-25T11:19:44.010000"],["2024-07-25T11:19:45.010000"],["2024-07-25T11:19:46.010000"],["2024-07-25T11:19:47.010000"],["2024-07-25T11:19:48.010000"],["2024-07-25T11:19:49.010000"],["2024-07-25T11:19:50.010000"],["2024-07-25T11:19:51.010000"],["2024-07-25T11:19:52.010000"],["2024-07-25T11:19:53.010000"],["2024-07-25T11:19:54.010000"],["2024-07-25T11:19:55.010000"],["2024-07-25T11:19:56.010000"],["2024-07-25T11:19:57.010000"],["2024-07-25T11:19:58.010000"],["2024-07-25T11:19:59.010000"],["2024-07-25T11:20:00.010000"],["2024-07-25T11:20:01.010000"],["2024-07-25T11:20:02.010000"],["2024-07-25T11:20:03.010000"],["2024-07-25T11:20:04.010000"],["2024-07-25T11:20:05.010000"],["2024-07-25T11:20:06.010000"],["2024-07-25T11:20:07.010000"],["2024-07-25T11:20:08.010000"],["2024-07-25T11:20:09.010000"],["2024-07-25T11:20:10.010000"],["2024-07-25T11:20:11.010000"],["2024-07-25T11:20:12.010000"],["2024-07-25T11:20:13.010000"],["2024-07-25T11:20:14.010000"],["2024-07-25T11:20:15.010000"],["2024-07-25T11:20:16.010000"],["2024-07-25T11:20:17.010000"],["2024-07-25T11:20:18.010000"],["2024-07-25T11:20:19.010000"],["2024-07-25T11:20:20.010000"],["2024-07-25T11:20:21.010000"],["2024-07-25T11:20:22.010000"],["2024-07-25T11:20:23.010000"],["2024-07-25T11:20:24.010000"],["2024-07-25T11:20:25.010000"],["2024-07-25T11:20:26.010000"],["2024-07-25T11:20:27.010000"],["2024-07-25T11:20:28.010000"],["2024-07-25T11:20:29.010000"],["2024-07-25T11:20:30.010000"],["2024-07-25T11:20:31.010000"],["2024-07-25T11:20:32.010000"],["2024-07-25T11:20:33.010000"],["2024-07-25T11:20:34.010000"],["2024-07-25T11:20:35.010000"],["2024-07-25T11:20:36.010000"],["2024-07-25T11:20:37.010000"],["2024-07-25T11:20:38.010000"],["2024-07-25T11:20:39.010000"],["2024-07-25T11:20:40.010000"],["2024-07-25T11:20:41.010000"],["2024-07-25T11:20:42.010000"],["2024-07-25T11:20:43.010000"],["2024-07-25T11:20:44.010000"],["2024-07-25T11:20:45.010000"],["2024-07-25T11:20:46.010000"],["2024-07-25T11:20:47.010000"],["2024-07-25T11:20:48.010000"],["2024-07-25T11:20:49.010000"],["2024-07-25T11:20:50.010000"],["2024-07-25T11:20:51.010000"],["2024-07-25T11:20:52.010000"],["2024-07-25T11:20:53.010000"],["2024-07-25T11:20:54.010000"],["2024-07-25T11:20:55.010000"],["2024-07-25T11:20:56.010000"],["2024-07-25T11:20:57.010000"],["2024-07-25T11:20:58.010000"],["2024-07-25T11:20:59.010000"],["2024-07-25T11:21:00.010000"],["2024-07-25T11:21:01.010000"],["2024-07-25T11:21:02.010000"],["2024-07-25T11:21:03.010000"],["2024-07-25T11:21:04.010000"],["2024-07-25T11:21:05.010000"],["2024-07-25T11:21:06.010000"],["2024-07-25T11:21:07.010000"],["2024-07-25T11:21:08.010000"],["2024-07-25T11:21:09.010000"],["2024-07-25T11:21:10.010000"],["2024-07-25T11:21:11.010000"],["2024-07-25T11:21:12.010000"],["2024-07-25T11:21:13.010000"],["2024-07-25T11:21:14.010000"],["2024-07-25T11:21:15.010000"],["2024-07-25T11:21:16.010000"],["2024-07-25T11:21:17.010000"],["2024-07-25T11:21:18.010000"],["2024-07-25T11:21:19.010000"],["2024-07-25T11:21:20.010000"],["2024-07-25T11:21:21.010000"],["2024-07-25T11:21:22.010000"],["2024-07-25T11:21:23.010000"],["2024-07-25T11:21:24.010000"],["2024-07-25T11:21:25.010000"],["2024-07-25T11:21:26.010000"],["2024-07-25T11:21:27.010000"],["2024-07-25T11:21:28.010000"],["2024-07-25T11:21:29.010000"],["2024-07-25T11:21:30.010000"],["2024-07-25T11:21:31.010000"],["2024-07-25T11:21:32.010000"],["2024-07-25T11:21:33.010000"],["2024-07-25T11:21:34.010000"],["2024-07-25T11:21:35.010000"],["2024-07-25T11:21:36.010000"],["2024-07-25T11:21:37.010000"],["2024-07-25T11:21:38.010000"],["2024-07-25T11:21:39.010000"],["2024-07-25T11:21:40.010000"],["2024-07-25T11:21:41.010000"],["2024-07-25T11:21:42.010000"],["2024-07-25T11:21:43.010000"],["2024-07-25T11:21:44.010000"],["2024-07-25T11:21:45.010000"],["2024-07-25T11:21:46.010000"],["2024-07-25T11:21:47.010000"],["2024-07-25T11:21:48.010000"],["2024-07-25T11:21:49.010000"],["2024-07-25T11:21:50.010000"],["2024-07-25T11:21:51.010000"],["2024-07-25T11:21:52.010000"],["2024-07-25T11:21:53.010000"],["2024-07-25T11:21:54.010000"],["2024-07-25T11:21:55.010000"],["2024-07-25T11:21:56.010000"],["2024-07-25T11:21:57.010000"],["2024-07-25T11:21:58.010000"],["2024-07-25T11:21:59.010000"],["2024-07-25T11:22:00.010000"],["2024-07-25T11:22:01.010000"],["2024-07-25T11:22:02.010000"],["2024-07-25T11:22:03.010000"],["2024-07-25T11:22:04.010000"],["2024-07-25T11:22:05.010000"],["2024-07-25T11:22:06.010000"],["2024-07-25T11:22:07.010000"],["2024-07-25T11:22:08.010000"],["2024-07-25T11:22:09.010000"],["2024-07-25T11:22:10.010000"],["2024-07-25T11:22:11.010000"],["2024-07-25T11:22:12.010000"],["2024-07-25T11:22:13.010000"],["2024-07-25T11:22:14.010000"],["2024-07-25T11:22:15.010000"],["2024-07-25T11:22:16.010000"],["2024-07-25T11:22:17.010000"],["2024-07-25T11:22:18.010000"],["2024-07-25T11:22:19.010000"],["2024-07-25T11:22:20.010000"],["2024-07-25T11:22:21.010000"],["2024-07-25T11:22:22.010000"],["2024-07-25T11:22:23.010000"],["2024-07-25T11:22:24.010000"],["2024-07-25T11:22:25.010000"],["2024-07-25T11:22:26.010000"],["2024-07-25T11:22:27.010000"],["2024-07-25T11:22:28.010000"],["2024-07-25T11:22:29.010000"],["2024-07-25T11:22:30.010000"],["2024-07-25T11:22:31.010000"],["2024-07-25T11:22:32.010000"],["2024-07-25T11:22:33.010000"],["2024-07-25T11:22:34.010000"],["2024-07-25T11:22:35.010000"],["2024-07-25T11:22:36.010000"],["2024-07-25T11:22:37.010000"],["2024-07-25T11:22:38.010000"],["2024-07-25T11:22:39.010000"],["2024-07-25T11:22:40.010000"],["2024-07-25T11:22:41.010000"],["2024-07-25T11:22:42.010000"],["2024-07-25T11:22:43.010000"],["2024-07-25T11:22:44.010000"],["2024-07-25T11:22:45.010000"],["2024-07-25T11:22:46.010000"],["2024-07-25T11:22:47.010000"],["2024-07-25T11:22:48.010000"],["2024-07-25T11:22:49.010000"],["2024-07-25T11:22:50.010000"],["2024-07-25T11:22:51.010000"],["2024-07-25T11:22:52.010000"],["2024-07-25T11:22:53.010000"],["2024-07-25T11:22:54.010000"],["2024-07-25T11:22:55.010000"],["2024-07-25T11:22:56.010000"],["2024-07-25T11:22:57.010000"],["2024-07-25T11:22:58.010000"],["2024-07-25T11:22:59.010000"],["2024-07-25T11:23:00.010000"],["2024-07-25T11:23:01.010000"],["2024-07-25T11:23:02.010000"],["2024-07-25T11:23:03.010000"],["2024-07-25T11:23:04.010000"],["2024-07-25T11:23:05.010000"],["2024-07-25T11:23:06.010000"],["2024-07-25T11:23:07.010000"],["2024-07-25T11:23:08.010000"],["2024-07-25T11:23:09.010000"],["2024-07-25T11:23:10.010000"],["2024-07-25T11:23:11.010000"],["2024-07-25T11:23:12.010000"],["2024-07-25T11:23:13.010000"],["2024-07-25T11:23:14.010000"],["2024-07-25T11:23:15.010000"],["2024-07-25T11:23:16.010000"],["2024-07-25T11:23:17.010000"],["2024-07-25T11:23:18.010000"],["2024-07-25T11:23:19.010000"],["2024-07-25T11:23:20.010000"],["2024-07-25T11:23:21.010000"],["2024-07-25T11:23:22.010000"],["2024-07-25T11:23:23.010000"],["2024-07-25T11:23:24.010000"],["2024-07-25T11:23:25.010000"],["2024-07-25T11:23:26.010000"],["2024-07-25T11:23:27.010000"],["2024-07-25T11:23:28.010000"],["2024-07-25T11:23:29.010000"],["2024-07-25T11:23:30.010000"],["2024-07-25T11:23:31.010000"],["2024-07-25T11:23:32.010000"],["2024-07-25T11:23:33.010000"],["2024-07-25T11:23:34.010000"],["2024-07-25T11:23:35.010000"],["2024-07-25T11:23:36.010000"],["2024-07-25T11:23:37.010000"],["2024-07-25T11:23:38.010000"],["2024-07-25T11:23:39.010000"],["2024-07-25T11:23:40.010000"],["2024-07-25T11:23:41.010000"],["2024-07-25T11:23:42.010000"],["2024-07-25T11:23:43.010000"],["2024-07-25T11:23:44.010000"],["2024-07-25T11:23:45.010000"],["2024-07-25T11:23:46.010000"],["2024-07-25T11:23:47.010000"],["2024-07-25T11:23:48.010000"],["2024-07-25T11:23:49.010000"],["2024-07-25T11:23:50.010000"],["2024-07-25T11:23:51.010000"],["2024-07-25T11:23:52.010000"],["2024-07-25T11:23:53.010000"],["2024-07-25T11:23:54.010000"],["2024-07-25T11:23:55.010000"],["2024-07-25T11:23:56.010000"],["2024-07-25T11:23:57.010000"],["2024-07-25T11:23:58.010000"],["2024-07-25T11:23:59.010000"],["2024-07-25T11:24:00.010000"],["2024-07-25T11:24:01.010000"],["2024-07-25T11:24:02.010000"],["2024-07-25T11:24:03.010000"],["2024-07-25T11:24:04.010000"],["2024-07-25T11:24:05.010000"],["2024-07-25T11:24:06.010000"],["2024-07-25T11:24:07.010000"],["2024-07-25T11:24:08.010000"],["2024-07-25T11:24:09.010000"],["2024-07-25T11:24:10.010000"],["2024-07-25T11:24:11.010000"],["2024-07-25T11:24:12.010000"],["2024-07-25T11:24:13.010000"],["2024-07-25T11:24:14.010000"],["2024-07-25T11:24:15.010000"],["2024-07-25T11:24:16.010000"],["2024-07-25T11:24:17.010000"],["2024-07-25T11:24:18.010000"],["2024-07-25T11:24:19.010000"],["2024-07-25T11:24:20.010000"],["2024-07-25T11:24:21.010000"],["2024-07-25T11:24:22.010000"],["2024-07-25T11:24:23.010000"],["2024-07-25T11:24:24.010000"],["2024-07-25T11:24:25.010000"],["2024-07-25T11:24:26.010000"],["2024-07-25T11:24:27.010000"],["2024-07-25T11:24:28.010000"],["2024-07-25T11:24:29.010000"],["2024-07-25T11:24:30.010000"],["2024-07-25T11:24:31.010000"],["2024-07-25T11:24:32.010000"],["2024-07-25T11:24:33.010000"],["2024-07-25T11:24:34.010000"],["2024-07-25T11:24:35.010000"],["2024-07-25T11:24:36.010000"],["2024-07-25T11:24:37.010000"],["2024-07-25T11:24:38.010000"],["2024-07-25T11:24:39.010000"],["2024-07-25T11:24:40.010000"],["2024-07-25T11:24:41.010000"],["2024-07-25T11:24:42.010000"],["2024-07-25T11:24:43.010000"],["2024-07-25T11:24:44.010000"],["2024-07-25T11:24:45.010000"],["2024-07-25T11:24:46.010000"],["2024-07-25T11:24:47.010000"],["2024-07-25T11:24:48.010000"],["2024-07-25T11:24:49.010000"],["2024-07-25T11:24:50.010000"],["2024-07-25T11:24:51.010000"],["2024-07-25T11:24:52.010000"],["2024-07-25T11:24:53.010000"],["2024-07-25T11:24:54.010000"],["2024-07-25T11:24:55.010000"],["2024-07-25T11:24:56.010000"],["2024-07-25T11:24:57.010000"],["2024-07-25T11:24:58.010000"],["2024-07-25T11:24:59.010000"],["2024-07-25T11:25:00.010000"],["2024-07-25T11:25:01.010000"],["2024-07-25T11:25:02.010000"],["2024-07-25T11:25:03.010000"],["2024-07-25T11:25:04.010000"],["2024-07-25T11:25:05.010000"],["2024-07-25T11:25:06.010000"],["2024-07-25T11:25:07.010000"],["2024-07-25T11:25:08.010000"],["2024-07-25T11:25:09.010000"],["2024-07-25T11:25:10.010000"],["2024-07-25T11:25:11.010000"],["2024-07-25T11:25:12.010000"],["2024-07-25T11:25:13.010000"],["2024-07-25T11:25:14.010000"],["2024-07-25T11:25:15.010000"],["2024-07-25T11:25:16.010000"],["2024-07-25T11:25:17.010000"],["2024-07-25T11:25:18.010000"],["2024-07-25T11:25:19.010000"],["2024-07-25T11:25:20.010000"],["2024-07-25T11:25:21.010000"],["2024-07-25T11:25:22.010000"],["2024-07-25T11:25:23.010000"],["2024-07-25T11:25:24.010000"],["2024-07-25T11:25:25.010000"],["2024-07-25T11:25:26.010000"],["2024-07-25T11:25:27.010000"],["2024-07-25T11:25:28.010000"],["2024-07-25T11:25:29.010000"],["2024-07-25T11:25:30.010000"],["2024-07-25T11:25:31.010000"],["2024-07-25T11:25:32.010000"],["2024-07-25T11:25:33.010000"],["2024-07-25T11:25:34.010000"],["2024-07-25T11:25:35.010000"],["2024-07-25T11:25:36.010000"],["2024-07-25T11:25:37.010000"],["2024-07-25T11:25:38.010000"],["2024-07-25T11:25:39.010000"],["2024-07-25T11:25:40.010000"],["2024-07-25T11:25:41.010000"],["2024-07-25T11:25:42.010000"],["2024-07-25T11:25:43.010000"],["2024-07-25T11:25:44.010000"],["2024-07-25T11:25:45.010000"],["2024-07-25T11:25:46.010000"],["2024-07-25T11:25:47.010000"],["2024-07-25T11:25:48.010000"],["2024-07-25T11:25:49.010000"],["2024-07-25T11:25:50.010000"],["2024-07-25T11:25:51.010000"],["2024-07-25T11:25:52.010000"],["2024-07-25T11:25:53.010000"],["2024-07-25T11:25:54.010000"],["2024-07-25T11:25:55.010000"],["2024-07-25T11:25:56.010000"],["2024-07-25T11:25:57.010000"],["2024-07-25T11:25:58.010000"],["2024-07-25T11:25:59.010000"],["2024-07-25T11:26:00.010000"],["2024-07-25T11:26:01.010000"],["2024-07-25T11:26:02.010000"],["2024-07-25T11:26:03.010000"],["2024-07-25T11:26:04.010000"],["2024-07-25T11:26:05.010000"],["2024-07-25T11:26:06.010000"],["2024-07-25T11:26:07.010000"],["2024-07-25T11:26:08.010000"],["2024-07-25T11:26:09.010000"],["2024-07-25T11:26:10.010000"],["2024-07-25T11:26:11.010000"],["2024-07-25T11:26:12.010000"],["2024-07-25T11:26:13.010000"],["2024-07-25T11:26:14.010000"],["2024-07-25T11:26:15.010000"],["2024-07-25T11:26:16.010000"],["2024-07-25T11:26:17.010000"],["2024-07-25T11:26:18.010000"],["2024-07-25T11:26:19.010000"],["2024-07-25T11:26:20.010000"],["2024-07-25T11:26:21.010000"],["2024-07-25T11:26:22.010000"],["2024-07-25T11:26:23.010000"],["2024-07-25T11:26:24.010000"],["2024-07-25T11:26:25.010000"],["2024-07-25T11:26:26.010000"],["2024-07-25T11:26:27.010000"],["2024-07-25T11:26:28.010000"],["2024-07-25T11:26:29.010000"],["2024-07-25T11:26:30.010000"],["2024-07-25T11:26:31.010000"],["2024-07-25T11:26:32.010000"],["2024-07-25T11:26:33.010000"],["2024-07-25T11:26:34.010000"],["2024-07-25T11:26:35.010000"],["2024-07-25T11:26:36.010000"],["2024-07-25T11:26:37.010000"],["2024-07-25T11:26:38.010000"],["2024-07-25T11:26:39.010000"],["2024-07-25T11:26:40.010000"],["2024-07-25T11:26:41.010000"],["2024-07-25T11:26:42.010000"],["2024-07-25T11:26:43.010000"],["2024-07-25T11:26:44.010000"],["2024-07-25T11:26:45.010000"],["2024-07-25T11:26:46.010000"],["2024-07-25T11:26:47.010000"],["2024-07-25T11:26:48.010000"],["2024-07-25T11:26:49.010000"],["2024-07-25T11:26:50.010000"],["2024-07-25T11:26:51.010000"],["2024-07-25T11:26:52.010000"],["2024-07-25T11:26:53.010000"],["2024-07-25T11:26:54.010000"],["2024-07-25T11:26:55.010000"],["2024-07-25T11:26:56.010000"],["2024-07-25T11:26:57.010000"],["2024-07-25T11:26:58.010000"],["2024-07-25T11:26:59.010000"],["2024-07-25T11:27:00.010000"],["2024-07-25T11:27:01.010000"],["2024-07-25T11:27:02.010000"],["2024-07-25T11:27:03.010000"],["2024-07-25T11:27:04.010000"],["2024-07-25T11:27:05.010000"],["2024-07-25T11:27:06.010000"],["2024-07-25T11:27:07.010000"],["2024-07-25T11:27:08.010000"],["2024-07-25T11:27:09.010000"],["2024-07-25T11:27:10.010000"],["2024-07-25T11:27:11.010000"],["2024-07-25T11:27:12.010000"],["2024-07-25T11:27:13.010000"],["2024-07-25T11:27:14.010000"],["2024-07-25T11:27:15.010000"],["2024-07-25T11:27:16.010000"],["2024-07-25T11:27:17.010000"],["2024-07-25T11:27:18.010000"],["2024-07-25T11:27:19.010000"],["2024-07-25T11:27:20.010000"],["2024-07-25T11:27:21.010000"],["2024-07-25T11:27:22.010000"],["2024-07-25T11:27:23.010000"],["2024-07-25T11:27:24.010000"],["2024-07-25T11:27:25.010000"],["2024-07-25T11:27:26.010000"],["2024-07-25T11:27:27.010000"],["2024-07-25T11:27:28.010000"],["2024-07-25T11:27:29.010000"],["2024-07-25T11:27:30.010000"],["2024-07-25T11:27:31.010000"],["2024-07-25T11:27:32.010000"],["2024-07-25T11:27:33.010000"],["2024-07-25T11:27:34.010000"],["2024-07-25T11:27:35.010000"],["2024-07-25T11:27:36.010000"],["2024-07-25T11:27:37.010000"],["2024-07-25T11:27:38.010000"],["2024-07-25T11:27:39.010000"],["2024-07-25T11:27:40.010000"],["2024-07-25T11:27:41.010000"],["2024-07-25T11:27:42.010000"],["2024-07-25T11:27:43.010000"],["2024-07-25T11:27:44.010000"],["2024-07-25T11:27:45.010000"],["2024-07-25T11:27:46.010000"],["2024-07-25T11:27:47.010000"],["2024-07-25T11:27:48.010000"],["2024-07-25T11:27:49.010000"],["2024-07-25T11:27:50.010000"],["2024-07-25T11:27:51.010000"],["2024-07-25T11:27:52.010000"],["2024-07-25T11:27:53.010000"],["2024-07-25T11:27:54.010000"],["2024-07-25T11:27:55.010000"],["2024-07-25T11:27:56.010000"],["2024-07-25T11:27:57.010000"],["2024-07-25T11:27:58.010000"],["2024-07-25T11:27:59.010000"],["2024-07-25T11:28:00.010000"],["2024-07-25T11:28:01.010000"],["2024-07-25T11:28:02.010000"],["2024-07-25T11:28:03.010000"],["2024-07-25T11:28:04.010000"],["2024-07-25T11:28:05.010000"],["2024-07-25T11:28:06.010000"],["2024-07-25T11:28:07.010000"],["2024-07-25T11:28:08.010000"],["2024-07-25T11:28:09.010000"],["2024-07-25T11:28:10.010000"],["2024-07-25T11:28:11.010000"],["2024-07-25T11:28:12.010000"],["2024-07-25T11:28:13.010000"],["2024-07-25T11:28:14.010000"],["2024-07-25T11:28:15.010000"],["2024-07-25T11:28:16.010000"],["2024-07-25T11:28:17.010000"],["2024-07-25T11:28:18.010000"],["2024-07-25T11:28:19.010000"],["2024-07-25T11:28:20.010000"],["2024-07-25T11:28:21.010000"],["2024-07-25T11:28:22.010000"],["2024-07-25T11:28:23.010000"],["2024-07-25T11:28:24.010000"],["2024-07-25T11:28:25.010000"],["2024-07-25T11:28:26.010000"],["2024-07-25T11:28:27.010000"],["2024-07-25T11:28:28.010000"],["2024-07-25T11:28:29.010000"],["2024-07-25T11:28:30.010000"],["2024-07-25T11:28:31.010000"],["2024-07-25T11:28:32.010000"],["2024-07-25T11:28:33.010000"],["2024-07-25T11:28:34.010000"],["2024-07-25T11:28:35.010000"],["2024-07-25T11:28:36.010000"],["2024-07-25T11:28:37.010000"],["2024-07-25T11:28:38.010000"],["2024-07-25T11:28:39.010000"],["2024-07-25T11:28:40.010000"],["2024-07-25T11:28:41.010000"],["2024-07-25T11:28:42.010000"],["2024-07-25T11:28:43.010000"],["2024-07-25T11:28:44.010000"],["2024-07-25T11:28:45.010000"],["2024-07-25T11:28:46.010000"],["2024-07-25T11:28:47.010000"],["2024-07-25T11:28:48.010000"],["2024-07-25T11:28:49.010000"],["2024-07-25T11:28:50.010000"],["2024-07-25T11:28:51.010000"],["2024-07-25T11:28:52.010000"],["2024-07-25T11:28:53.010000"],["2024-07-25T11:28:54.010000"],["2024-07-25T11:28:55.010000"],["2024-07-25T11:28:56.010000"],["2024-07-25T11:28:57.010000"],["2024-07-25T11:28:58.010000"],["2024-07-25T11:28:59.010000"],["2024-07-25T11:29:00.010000"],["2024-07-25T11:29:01.010000"],["2024-07-25T11:29:02.010000"],["2024-07-25T11:29:03.010000"],["2024-07-25T11:29:04.010000"],["2024-07-25T11:29:05.010000"],["2024-07-25T11:29:06.010000"],["2024-07-25T11:29:07.010000"],["2024-07-25T11:29:08.010000"],["2024-07-25T11:29:09.010000"],["2024-07-25T11:29:10.010000"],["2024-07-25T11:29:11.010000"],["2024-07-25T11:29:12.010000"],["2024-07-25T11:29:13.010000"],["2024-07-25T11:29:14.010000"],["2024-07-25T11:29:15.010000"],["2024-07-25T11:29:16.010000"],["2024-07-25T11:29:17.010000"],["2024-07-25T11:29:18.010000"],["2024-07-25T11:29:19.010000"],["2024-07-25T11:29:20.010000"],["2024-07-25T11:29:21.010000"],["2024-07-25T11:29:22.010000"],["2024-07-25T11:29:23.010000"],["2024-07-25T11:29:24.010000"],["2024-07-25T11:29:25.010000"],["2024-07-25T11:29:26.010000"],["2024-07-25T11:29:27.010000"],["2024-07-25T11:29:28.010000"],["2024-07-25T11:29:29.010000"],["2024-07-25T11:29:30.010000"],["2024-07-25T11:29:31.010000"],["2024-07-25T11:29:32.010000"],["2024-07-25T11:29:33.010000"],["2024-07-25T11:29:34.010000"],["2024-07-25T11:29:35.010000"],["2024-07-25T11:29:36.010000"],["2024-07-25T11:29:37.010000"],["2024-07-25T11:29:38.010000"],["2024-07-25T11:29:39.010000"],["2024-07-25T11:29:40.010000"],["2024-07-25T11:29:41.010000"],["2024-07-25T11:29:42.010000"],["2024-07-25T11:29:43.010000"],["2024-07-25T11:29:44.010000"],["2024-07-25T11:29:45.010000"],["2024-07-25T11:29:46.010000"],["2024-07-25T11:29:47.010000"],["2024-07-25T11:29:48.010000"],["2024-07-25T11:29:49.010000"],["2024-07-25T11:29:50.010000"],["2024-07-25T11:29:51.010000"],["2024-07-25T11:29:52.010000"],["2024-07-25T11:29:53.010000"],["2024-07-25T11:29:54.010000"],["2024-07-25T11:29:55.010000"],["2024-07-25T11:29:56.010000"],["2024-07-25T11:29:57.010000"],["2024-07-25T11:29:58.010000"],["2024-07-25T11:29:59.010000"],["2024-07-25T11:30:00.010000"],["2024-07-25T11:30:01.010000"],["2024-07-25T11:30:02.010000"],["2024-07-25T11:30:03.010000"],["2024-07-25T11:30:04.010000"],["2024-07-25T11:30:05.010000"],["2024-07-25T11:30:06.010000"],["2024-07-25T11:30:07.010000"],["2024-07-25T11:30:08.010000"],["2024-07-25T11:30:09.010000"],["2024-07-25T11:30:10.010000"],["2024-07-25T11:30:11.010000"],["2024-07-25T11:30:12.010000"],["2024-07-25T11:30:13.010000"],["2024-07-25T11:30:14.010000"],["2024-07-25T11:30:15.010000"],["2024-07-25T11:30:16.010000"],["2024-07-25T11:30:17.010000"],["2024-07-25T11:30:18.010000"],["2024-07-25T11:30:19.010000"],["2024-07-25T11:30:20.010000"],["2024-07-25T11:30:21.010000"],["2024-07-25T11:30:22.010000"],["2024-07-25T11:30:23.010000"],["2024-07-25T11:30:24.010000"],["2024-07-25T11:30:25.010000"],["2024-07-25T11:30:26.010000"],["2024-07-25T11:30:27.010000"],["2024-07-25T11:30:28.010000"],["2024-07-25T11:30:29.010000"],["2024-07-25T11:30:30.010000"],["2024-07-25T11:30:31.010000"],["2024-07-25T11:30:32.010000"],["2024-07-25T11:30:33.010000"],["2024-07-25T11:30:34.010000"],["2024-07-25T11:30:35.010000"],["2024-07-25T11:30:36.010000"],["2024-07-25T11:30:37.010000"],["2024-07-25T11:30:38.010000"],["2024-07-25T11:30:39.010000"],["2024-07-25T11:30:40.010000"],["2024-07-25T11:30:41.010000"],["2024-07-25T11:30:42.010000"],["2024-07-25T11:30:43.010000"],["2024-07-25T11:30:44.010000"],["2024-07-25T11:30:45.010000"],["2024-07-25T11:30:46.010000"],["2024-07-25T11:30:47.010000"],["2024-07-25T11:30:48.010000"],["2024-07-25T11:30:49.010000"],["2024-07-25T11:30:50.010000"],["2024-07-25T11:30:51.010000"],["2024-07-25T11:30:52.010000"],["2024-07-25T11:30:53.010000"],["2024-07-25T11:30:54.010000"],["2024-07-25T11:30:55.010000"],["2024-07-25T11:30:56.010000"],["2024-07-25T11:30:57.010000"],["2024-07-25T11:30:58.010000"],["2024-07-25T11:30:59.010000"],["2024-07-25T11:31:00.010000"],["2024-07-25T11:31:01.010000"],["2024-07-25T11:31:02.010000"],["2024-07-25T11:31:03.010000"],["2024-07-25T11:31:04.010000"],["2024-07-25T11:31:05.010000"],["2024-07-25T11:31:06.010000"],["2024-07-25T11:31:07.010000"],["2024-07-25T11:31:08.010000"],["2024-07-25T11:31:09.010000"],["2024-07-25T11:31:10.010000"],["2024-07-25T11:31:11.010000"],["2024-07-25T11:31:12.010000"],["2024-07-25T11:31:13.010000"],["2024-07-25T11:31:14.010000"],["2024-07-25T11:31:15.010000"],["2024-07-25T11:31:16.010000"],["2024-07-25T11:31:17.010000"],["2024-07-25T11:31:18.010000"],["2024-07-25T11:31:19.010000"],["2024-07-25T11:31:20.010000"],["2024-07-25T11:31:21.010000"],["2024-07-25T11:31:22.010000"],["2024-07-25T11:31:23.010000"],["2024-07-25T11:31:24.010000"],["2024-07-25T11:31:25.010000"],["2024-07-25T11:31:26.010000"],["2024-07-25T11:31:27.010000"],["2024-07-25T11:31:28.010000"],["2024-07-25T11:31:29.010000"],["2024-07-25T11:31:30.010000"],["2024-07-25T11:31:31.010000"],["2024-07-25T11:31:32.010000"],["2024-07-25T11:31:33.010000"],["2024-07-25T11:31:34.010000"],["2024-07-25T11:31:35.010000"],["2024-07-25T11:31:36.010000"],["2024-07-25T11:31:37.010000"],["2024-07-25T11:31:38.010000"],["2024-07-25T11:31:39.010000"],["2024-07-25T11:31:40.010000"],["2024-07-25T11:31:41.010000"],["2024-07-25T11:31:42.010000"],["2024-07-25T11:31:43.010000"],["2024-07-25T11:31:44.010000"],["2024-07-25T11:31:45.010000"],["2024-07-25T11:31:46.010000"],["2024-07-25T11:31:47.010000"],["2024-07-25T11:31:48.010000"],["2024-07-25T11:31:49.010000"],["2024-07-25T11:31:50.010000"],["2024-07-25T11:31:51.010000"],["2024-07-25T11:31:52.010000"],["2024-07-25T11:31:53.010000"],["2024-07-25T11:31:54.010000"],["2024-07-25T11:31:55.010000"],["2024-07-25T11:31:56.010000"],["2024-07-25T11:31:57.010000"],["2024-07-25T11:31:58.010000"],["2024-07-25T11:31:59.010000"],["2024-07-25T11:32:00.010000"],["2024-07-25T11:32:01.010000"],["2024-07-25T11:32:02.010000"],["2024-07-25T11:32:03.010000"],["2024-07-25T11:32:04.010000"],["2024-07-25T11:32:05.010000"],["2024-07-25T11:32:06.010000"],["2024-07-25T11:32:07.010000"],["2024-07-25T11:32:08.010000"],["2024-07-25T11:32:09.010000"],["2024-07-25T11:32:10.010000"],["2024-07-25T11:32:11.010000"],["2024-07-25T11:32:12.010000"],["2024-07-25T11:32:13.010000"],["2024-07-25T11:32:14.010000"],["2024-07-25T11:32:15.010000"],["2024-07-25T11:32:16.010000"],["2024-07-25T11:32:17.010000"],["2024-07-25T11:32:18.010000"],["2024-07-25T11:32:19.010000"],["2024-07-25T11:32:20.010000"],["2024-07-25T11:32:21.010000"],["2024-07-25T11:32:22.010000"],["2024-07-25T11:32:23.010000"],["2024-07-25T11:32:24.010000"],["2024-07-25T11:32:25.010000"],["2024-07-25T11:32:26.010000"],["2024-07-25T11:32:27.010000"],["2024-07-25T11:32:28.010000"],["2024-07-25T11:32:29.010000"],["2024-07-25T11:32:30.010000"],["2024-07-25T11:32:31.010000"],["2024-07-25T11:32:32.010000"],["2024-07-25T11:32:33.010000"],["2024-07-25T11:32:34.010000"],["2024-07-25T11:32:35.010000"],["2024-07-25T11:32:36.010000"],["2024-07-25T11:32:37.010000"],["2024-07-25T11:32:38.010000"],["2024-07-25T11:32:39.010000"],["2024-07-25T11:32:40.010000"],["2024-07-25T11:32:41.010000"],["2024-07-25T11:32:42.010000"],["2024-07-25T11:32:43.010000"],["2024-07-25T11:32:44.010000"],["2024-07-25T11:32:45.010000"],["2024-07-25T11:32:46.010000"],["2024-07-25T11:32:47.010000"],["2024-07-25T11:32:48.010000"],["2024-07-25T11:32:49.010000"],["2024-07-25T11:32:50.010000"],["2024-07-25T11:32:51.010000"],["2024-07-25T11:32:52.010000"],["2024-07-25T11:32:53.010000"],["2024-07-25T11:32:54.010000"],["2024-07-25T11:32:55.010000"],["2024-07-25T11:32:56.010000"],["2024-07-25T11:32:57.010000"],["2024-07-25T11:32:58.010000"],["2024-07-25T11:32:59.010000"],["2024-07-25T11:33:00.010000"],["2024-07-25T11:33:01.010000"],["2024-07-25T11:33:02.010000"],["2024-07-25T11:33:03.010000"],["2024-07-25T11:33:04.010000"],["2024-07-25T11:33:05.010000"],["2024-07-25T11:33:06.010000"],["2024-07-25T11:33:07.010000"],["2024-07-25T11:33:08.010000"],["2024-07-25T11:33:09.010000"],["2024-07-25T11:33:10.010000"],["2024-07-25T11:33:11.010000"],["2024-07-25T11:33:12.010000"],["2024-07-25T11:33:13.010000"],["2024-07-25T11:33:14.010000"],["2024-07-25T11:33:15.010000"],["2024-07-25T11:33:16.010000"],["2024-07-25T11:33:17.010000"],["2024-07-25T11:33:18.010000"],["2024-07-25T11:33:19.010000"],["2024-07-25T11:33:20.010000"],["2024-07-25T11:33:21.010000"],["2024-07-25T11:33:22.010000"],["2024-07-25T11:33:23.010000"],["2024-07-25T11:33:24.010000"],["2024-07-25T11:33:25.010000"],["2024-07-25T11:33:26.010000"],["2024-07-25T11:33:27.010000"],["2024-07-25T11:33:28.010000"],["2024-07-25T11:33:29.010000"],["2024-07-25T11:33:30.010000"],["2024-07-25T11:33:31.010000"],["2024-07-25T11:33:32.010000"],["2024-07-25T11:33:33.010000"],["2024-07-25T11:33:34.010000"],["2024-07-25T11:33:35.010000"],["2024-07-25T11:33:36.010000"],["2024-07-25T11:33:37.010000"],["2024-07-25T11:33:38.010000"],["2024-07-25T11:33:39.010000"],["2024-07-25T11:33:40.010000"],["2024-07-25T11:33:41.010000"],["2024-07-25T11:33:42.010000"],["2024-07-25T11:33:43.010000"],["2024-07-25T11:33:44.010000"],["2024-07-25T11:33:45.010000"],["2024-07-25T11:33:46.010000"],["2024-07-25T11:33:47.010000"],["2024-07-25T11:33:48.010000"],["2024-07-25T11:33:49.010000"],["2024-07-25T11:33:50.010000"],["2024-07-25T11:33:51.010000"],["2024-07-25T11:33:52.010000"],["2024-07-25T11:33:53.010000"],["2024-07-25T11:33:54.010000"],["2024-07-25T11:33:55.010000"],["2024-07-25T11:33:56.010000"],["2024-07-25T11:33:57.010000"],["2024-07-25T11:33:58.010000"],["2024-07-25T11:33:59.010000"],["2024-07-25T11:34:00.010000"],["2024-07-25T11:34:01.010000"],["2024-07-25T11:34:02.010000"],["2024-07-25T11:34:03.010000"],["2024-07-25T11:34:04.010000"],["2024-07-25T11:34:05.010000"],["2024-07-25T11:34:06.010000"],["2024-07-25T11:34:07.010000"],["2024-07-25T11:34:08.010000"],["2024-07-25T11:34:09.010000"],["2024-07-25T11:34:10.010000"],["2024-07-25T11:34:11.010000"],["2024-07-25T11:34:12.010000"],["2024-07-25T11:34:13.010000"],["2024-07-25T11:34:14.010000"],["2024-07-25T11:34:15.010000"],["2024-07-25T11:34:16.010000"],["2024-07-25T11:34:17.010000"],["2024-07-25T11:34:18.010000"],["2024-07-25T11:34:19.010000"],["2024-07-25T11:34:20.010000"],["2024-07-25T11:34:21.010000"],["2024-07-25T11:34:22.010000"],["2024-07-25T11:34:23.010000"],["2024-07-25T11:34:24.010000"],["2024-07-25T11:34:25.010000"],["2024-07-25T11:34:26.010000"],["2024-07-25T11:34:27.010000"],["2024-07-25T11:34:28.010000"],["2024-07-25T11:34:29.010000"],["2024-07-25T11:34:30.010000"],["2024-07-25T11:34:31.010000"],["2024-07-25T11:34:32.010000"],["2024-07-25T11:34:33.010000"],["2024-07-25T11:34:34.010000"],["2024-07-25T11:34:35.010000"],["2024-07-25T11:34:36.010000"],["2024-07-25T11:34:37.010000"],["2024-07-25T11:34:38.010000"],["2024-07-25T11:34:39.010000"],["2024-07-25T11:34:40.010000"],["2024-07-25T11:34:41.010000"],["2024-07-25T11:34:42.010000"],["2024-07-25T11:34:43.010000"],["2024-07-25T11:34:44.010000"],["2024-07-25T11:34:45.010000"],["2024-07-25T11:34:46.010000"],["2024-07-25T11:34:47.010000"],["2024-07-25T11:34:48.010000"],["2024-07-25T11:34:49.010000"],["2024-07-25T11:34:50.010000"],["2024-07-25T11:34:51.010000"],["2024-07-25T11:34:52.010000"],["2024-07-25T11:34:53.010000"],["2024-07-25T11:34:54.010000"],["2024-07-25T11:34:55.010000"],["2024-07-25T11:34:56.010000"],["2024-07-25T11:34:57.010000"],["2024-07-25T11:34:58.010000"],["2024-07-25T11:34:59.010000"],["2024-07-25T11:35:00.010000"],["2024-07-25T11:35:01.010000"],["2024-07-25T11:35:02.010000"],["2024-07-25T11:35:03.010000"],["2024-07-25T11:35:04.010000"],["2024-07-25T11:35:05.010000"]],"hovertemplate":"color=5\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"5","line":{"color":"#19d3f3","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"5","scene":"scene","showlegend":true,"x":[0.7700402615591884,0.5680317152291536,0.32390303909778595,-0.33202609699219465,-0.9555865111760795,0.7469068584032357,0.47165097668766975,0.27227341290563345,-0.06472885701805353,0.18109288346022367,-0.3340313364751637,0.8821620522066951,-0.21841666800901294,-0.22565755434334278,0.531995874363929,-0.3283535777591169,0.9403068632818758,0.7261611372232437,0.9496069266460836,0.2502936772070825,0.8684629639610648,0.8446506401523948,0.5544028002768755,0.3517703218385577,-0.6013806792907417,-0.03890025848522782,0.08962830947712064,0.5969030791893601,-0.584391609299928,0.6045244922861457,-0.05661575077101588,0.8020325722172856,0.5633523394353688,0.5687182378023863,0.24933033157140017,0.5767399217002094,0.37200085585936904,0.26466398080810905,-0.8763178312219679,0.3086039498448372,0.9789973851293325,-0.16168001666665077,0.661640168633312,-0.06250044517219067,-0.6841876683756709,-0.46243015164509416,0.2992079281248152,0.5657788151875138,-0.22757895942777395,-0.3123753392137587,0.8744795522652566,0.3499942570924759,-0.4393103839829564,0.34247975843027234,-0.7426546369679272,0.17377602821215987,-0.05460186582058668,-0.5565767609514296,0.011965337675064802,0.20234052371233702,-0.46154838148504496,-0.9736683275550604,0.9284388106316328,0.6531499372795224,0.2809887300245464,-0.2630409589037299,0.7096282443962991,-0.5090958569198847,-0.7908778693526983,-0.8468143870122731,-0.418111533857882,-0.011646607890725136,-0.5482012326829135,-0.7285297163762152,0.4178543887101114,-0.29070446640253067,-0.6636340888217092,0.061163398902863264,0.9807021315209568,0.850587354041636,-0.7884540623053908,0.2659498513676226,0.528508176561445,-0.2873404319398105,-0.27774114767089486,0.8588236449286342,-0.22606391925364733,-0.3705237996764481,0.6335918381810188,0.9701272156089544,0.23366725584492087,0.4297747081145644,-0.4878539755009115,-0.22182743530720472,0.46098308730870485,0.47442105738446116,-0.8425361816771328,-0.8554928991943598,-0.5280218329280615,-0.2748155817389488,0.49102599220350385,0.9207708640024066,-0.9936103662475944,0.9035795591771603,0.2439343575388193,0.9755223491229117,-0.5663106706924736,0.19118053931742907,0.9304847326129675,0.40785110648721457,-0.9566101427190006,0.5221378994174302,-0.45257035037502646,0.6432578307576478,0.29512543231248856,-0.6995855309069157,0.08550522336736321,0.3750582914799452,0.8516417061910033,0.4984038807451725,-0.9314913242124021,-0.7768661682493985,0.7652588463388383,-0.2113661882467568,-0.7118139802478254,-0.014010681305080652,-0.08226923737674952,0.659733503125608,0.013367310632020235,-0.6584481811150908,-0.8356090211309493,0.868623832706362,-0.8580597680993378,-0.09263907792046666,0.13032702449709177,0.8743666149675846,-0.4428045442327857,0.18241346906870604,0.6645890008658171,0.9334123679436743,0.1665933127515018,0.7033081278204918,-0.5836775097995996,-0.24916871450841427,0.7174017643555999,-0.6196352248080075,0.48831411357969046,-0.4148210762068629,0.1541696060448885,-0.11565610859543085,0.038754201494157314,0.20126297418028116,-0.49118399200960994,0.2996215126477182,0.5085283759981394,0.6799868503585458,-0.4894187240861356,0.6517167123965919,0.1534595605917275,-0.833278794772923,-0.9293867642991245,0.5342451031319797,-0.4921105713583529,0.38253710558637977,-0.8822948560118675,0.7509447680786252,0.09786401456221938,-0.4694025982171297,-0.5561579540371895,0.783137324731797,0.32871572580188513,0.5143361021764576,-0.45908383978530765,-0.0393519620411098,0.9405651013366878,-0.04670090461149812,0.5648712748661637,-0.24567723227664828,-0.0332062803208828,-0.786882733926177,-0.31619437504559755,-0.9029395012184978,-0.8282008748501539,0.6603361973538995,-0.9656778760254383,-0.0018563894554972649,-0.5421110880561173,-0.12356441468000412,0.4530377914197743,0.20865856762975454,-0.8945765024982393,0.3661634484305978,0.6860673557966948,0.9129880284890532,-0.5337421661242843,0.666194801684469,-0.7345407754182816,0.9071783316321671,-0.609243480488658,0.837102294433862,-0.9378987629897892,0.7438236642628908,-0.9327485025860369,-0.2509381156414747,-0.8023749738931656,0.8603211399167776,0.46927592996507883,0.886674274224788,-0.6194363520480692,0.2382048089057207,-0.33694769255816936,-0.9718027822673321,0.2280157278291881,0.8574422742240131,-0.7634416907094419,-0.2989476500079036,0.3673607115633786,0.017191197723150253,0.38616062281653285,0.3609009403735399,-0.30344036454334855,0.261851005256176,-0.8755031637847424,0.7741808565333486,-0.9677595510147512,0.07465594448149204,0.11754487548023462,0.9727034801617265,0.6358176986686885,-0.8484562262892723,-0.4283250435255468,0.8330514072440565,-0.901967016980052,-0.043890193570405245,-0.21347568463534117,0.9133031093515456,0.9734580251388252,0.3251735926605761,0.5891166883520782,-0.9870062861591578,0.9864040003158152,-0.6731018968857825,-0.3701987541280687,-0.11991997808218002,-0.7654203330166638,-0.7534581981599331,-0.2476950278505683,-0.2254466898739338,-0.2665104423649609,0.9334197663702071,0.5467192409560084,-0.7532677208073437,-0.7259796131402254,0.5947692431509495,-0.6544104381464422,0.8217138154432178,-0.017244241200387478,0.351386908441782,0.13485115068033338,-0.9743060595355928,0.2748018018901348,0.7478975732810795,0.04324795212596655,-0.004044181667268276,-0.4780233846977353,0.46518442314118147,0.09579796995967627,0.5214284951798618,0.8278052238747478,-0.9590696296654642,0.0980101628229022,0.6391926323994994,0.5843724715523422,0.4553131014108658,-0.7262700879946351,0.3580276775173843,-0.01274259015917778,0.5922887404449284,-0.6448878278024495,0.7636838392354548,-0.24517777189612389,0.46119492733851075,0.3205479453317821,-0.12356022093445063,0.40553515823557973,-0.05046431953087449,0.1466996604576707,0.06665038084611297,0.9730277420021594,-0.15347608691081405,0.920313622802496,0.9021522272378206,-0.25866328040137887,-0.5539229270070791,-0.7679317677393556,0.8872740748338401,-0.6915908306837082,-0.4779223306104541,-0.45769634330645204,-0.5630506854504347,0.6416886849328876,-0.004918515682220459,0.7343434616923332,-0.61360457027331,-0.4411002080887556,0.02101750858128071,-0.2577542089857161,-0.043169054202735424,0.5919266459532082,0.055686750914901495,0.16336324159055948,0.4043763345107436,-0.8067209464497864,0.12155343266204,0.9340919181704521,0.23609836725518107,-0.4445985173806548,0.13194853765890002,-0.08024496864527464,0.14882171619683504,-0.7202316946350038,0.055653209798038006,0.9330558562651277,-0.19375508464872837,0.741843821015209,-0.9842595546506345,-0.08894327888265252,0.47627206007018685,-0.021567316260188818,-0.8658152483403683,0.6042798585258424,-0.2852996909059584,-0.4620258854702115,-0.8392261913977563,-0.21031918795779347,0.5823127012699842,-0.5295930476859212,-0.1268123798072338,-0.5183919714763761,0.9126550424844027,0.13561780517920852,0.6557849212549627,-0.5000226595439017,0.361484507098794,0.42819887679070234,-0.3642508606426418,0.909376097843051,0.6546798441559076,0.6479822723194957,-0.24593542283400893,-0.10248665697872639,-0.8470535515807569,-0.9279664293862879,0.23534528585150838,0.9621918555349112,0.4046200211159885,0.2089965851046145,0.851192797999829,-0.2899102009832859,-0.2542247516103089,-0.8785434840247035,-0.7344398233108222,-0.11747947335243225,-0.5199697138741612,0.9634544146247208,-0.35176310036331415,0.48910831194370985,0.22763942880555987,0.11641277931630611,0.6563754589296877,0.14040634129196405,-0.8807710050605237,0.9713728372007608,0.49108412954956293,-0.5372772919945419,-0.09395873500034213,-0.4837523167952895,0.6231836271472275,0.23391831293702126,-0.5321605503559113,0.3005257323384285,0.30569818103685975,-0.29131067730486393,0.9618996838107705,0.14458295609802008,0.6800801465287805,0.07495113695040345,-0.9869482950307429,0.09219051897525787,-0.02678484423086047,0.4652711604721844,-0.020666569005697966,-0.9447958036325872,0.05294297868385911,0.12311302265152335,-0.9005445898510516,0.31713801296427846,0.08647150686010718,0.5320630809292197,0.3018077500164509,-0.897471574600786,0.49097091937437654,0.48691516648977995,0.26372323045507073,0.36289103841409087,-0.722119621001184,0.8519485285505652,0.7539716945029795,0.2874656608328223,0.8052033418789506,0.629799057263881,-0.3394524292089045,-0.9578325781039894,0.07649480132386088,0.525151286739856,0.06280217971652746,0.3979194234125316,0.8996742707677186,0.6654982506297529,-0.5769534707069397,0.4624020727351308,0.496633970644325,-0.5233175717294216,0.6888780449517071,-0.4899670477025211,-0.24758671317249537,0.7092085797339678,0.526216977275908,0.8479742375202477,0.24587515136227012,-0.2767474567517638,-0.3974232552573085,-0.41674584662541747,-0.2205563667230308,-0.17429984733462334,-0.4078660635277629,0.74667799891904,-0.15803050296381116,-0.06896196026355028,-0.2300792345777154,-0.20121182361617684,0.4024980776011944,0.6749186781235039,0.4200036693364382,-0.5233542225323617,-0.6161013119854033,0.9939636331982911,-0.38921655202284455,-0.04150433372706175,-0.3424975466914475,0.8460747571662068,-0.6348479511216283,-0.7851201421581209,-0.63555608689785,-0.15202778205275536,-0.6837978949770331,0.9229109515435994,0.10785859171301126,0.725752494763583,0.2692221971228719,-0.26460059406235814,0.7206318704411387,-0.5885934545658529,-0.4732955484651029,-0.0005609611980617046,0.0766523708589375,-0.3098568841814995,0.9699876313097775,-0.09869671985507011,0.8886943231336772,-0.8291814350523055,-0.6604746482335031,-0.7765795919112861,0.1647189101204276,-0.1815373101271689,0.9641006491146982,0.14140243362635374,-0.6626451034098864,0.7776762931607664,0.6392064238898456,0.8330122698098421,-0.5030308668501675,0.4716131049208343,-0.9531740047968924,-0.13657074235379696,-0.3436817820183933,0.402107996866107,0.49110032618045807,0.9654115671291947,0.853433467913419,-0.031265380792319775,0.6505995932966471,-0.3058118261396885,-0.8060585963539779,0.4629648760892451,0.8987404596991837,0.15897471085190773,-0.8413243908435106,0.36769078951328993,0.06488546822220087,0.15449345391243696,-0.3505630292929709,-0.7753116609528661,0.9816434932872653,-0.13511276943609118,-0.5593561911955476,-0.855225860606879,0.2319680261425674,-0.4884178675711155,0.39949949318543077,-0.6577110225334764,0.6962226526811719,0.04098758799955249,-0.7360669644549489,-0.19241051049903035,-0.8560540517792106,-0.20097946235910058,0.8694829451851547,-0.2820931999012828,0.23639694089069963,0.5018463172018528,0.180223791860044,-0.7931072837673128,0.6638144487515092,0.07919524051249027,0.3224000413902104,-0.29696798510849476,-0.42721593379974365,-0.8650492490269244,-0.3300593947060406,0.5464622429572046,0.03807998029515147,-0.030491856392472982,0.2988861734047532,-0.9787104800343513,-0.348006930667907,-0.3683208697475493,-0.5484635001048446,-0.027836039196699858,0.6437866492196918,0.5278970398940146,-0.03850410878658295,0.666046807076782,0.5852865423075855,-0.8692897502332926,-0.42354149650782347,0.964430944994092,-0.027815508656203747,0.49410582846030593,-0.33374813152477145,-0.4553791768848896,-0.8636331791058183,0.7756755906157196,-0.9328522644937038,0.8197249425575137,-0.33577124029397964,0.6833953885361552,0.670532189309597,0.9310753433965147,-0.6809176988899708,-0.6516952384263277,0.15285524213686585,-0.6325630084611475,-0.04821649473160505,-0.9926349255256355,-0.8647153666242957,-0.1556343506090343,0.28103294409811497,-0.2406175029464066,0.66336051793769,-0.6430214834399521,0.15447924938052893,-0.2826710231602192,-0.6885447204113007,-0.8984851301647723,0.0995954149402678,-0.8106635604053736,-0.5799427009187639,0.8372780121862888,-0.728539161849767,0.22858700528740883,-0.5783886141143739,0.5221892814151943,0.0199422650039196,0.9739721170626581,0.5906813936308026,-0.5306483712047338,0.7486940743401647,-0.41981201292946935,-0.4893273520283401,-0.939166053198278,-0.6046470226719975,-0.02284779353067279,-0.6046743234619498,-0.8871205630712211,0.8579282253049314,0.6842408794909716,-0.47129784245043993,0.7277720929123461,-0.20914790034294128,-0.7265993319451809,-0.18780290195718408,0.29946824349462986,0.8064327957108617,0.13035628199577332,0.050341627560555935,-0.6670792489312589,0.4459833325818181,-0.8933998411521316,-0.6267811344005167,0.19238563906401396,0.37978062545880675,0.12913244776427746,0.9474430521950126,0.10970864724367857,-0.4316998263821006,0.23802094161510468,-0.6679885159246624,0.09286742005497217,0.3274831329472363,0.07838531350716949,0.5105892834253609,0.6651506870985031,-0.6017584027722478,0.19320812402293086,-0.6219570711255074,-0.9471784709021449,-0.016311575658619404,0.9643213576637208,0.017197936307638884,-0.17633460136130452,-0.2391535732895136,-0.20565754501149058,0.28166361106559634,-0.0034743170253932476,0.6936674150638282,-0.8258817354217172,0.8161206911318004,-0.4597829347476363,-0.3318462558090687,-0.48758540907874703,0.9548132098279893,0.457431657705456,-0.6337619973346591,-0.3760671094059944,0.1363533278927207,0.9880198566243052,-0.7289760410785675,-0.931748494040221,-0.39823812153190374,0.911453363019973,0.9388553923927248,0.9486744217574596,-0.9261260442435741,0.8254455928690732,0.37356300512328744,0.6063187159597874,-0.05006055813282728,-0.6506558475084603,-0.9142417507246137,-0.5977194397710264,-0.6978478329256177,-0.5236851084046066,-0.5195764261297882,-0.5110041629523039,0.7131722779013216,-0.008164629340171814,0.026837477926164865,0.8156469292007387,-0.8817601720802486,-0.6118467366322875,0.7982876691967249,0.7216626526787877,0.30342152062803507,-0.38436899054795504,0.06559968879446387,0.05196993192657828,0.23419380001723766,-0.5788837880827487,0.44415574986487627,0.13780937483534217,0.9193892632611096,-0.17873971024528146,-0.5835798694752157,-0.9647003966383636,-0.7940791915170848,0.6099230693653226,0.7174136741086841,-0.3699757712893188,0.47406692896038294,-0.9288632124662399,-0.3440701048821211,-0.9752809694036841,0.13637470360845327,-0.1762577067129314,-0.020998733583837748,0.6408570259809494,0.1309780697338283,-0.8307925495319068,0.43651322880759835,-0.5857146610505879,0.16078917728736997,0.5713370367884636,0.598814454395324,-0.05203459411859512,-0.43291514134034514,-0.8463529087603092,-0.9347992711700499,0.7498034322634339,-0.34422602551057935,0.27536919992417097,0.804657394066453,0.5320993694476783,0.8657249230891466,0.847778323572129,0.6516323871910572,-0.30573096172884107,0.40637868642807007,0.8945657047443092,-0.08057837001979351,-0.9704264523461461,0.16815973119810224,-0.08517312072217464,0.36758027505129576,0.5539802187122405,-0.6430079494602978,-0.8637362979352474,-0.9664977118372917,-0.3480158350430429,0.2553130746819079,0.6407730462960899,-0.8636108771897852,0.35893694171682,-0.8683837079443038,0.3316877349279821,-0.5610063103958964,-0.6905616270378232,0.06487039336934686,0.3539531216956675,-0.2987831551581621,-0.9291281714104116,-0.6983143077231944,-0.21288685966283083,0.6303623374551535,0.06030729692429304,-0.6321267555467784,-0.7631367077119648,-0.7794691431336105,-0.7804324338212609,-0.5113545954227448,0.9934493540786207,0.36042845621705055,0.5226678350009024,-0.662703019566834,-0.20108520006760955,-0.6298023369163275,-0.45894387550652027,0.000327499583363533,0.5404117195867002,0.7759711048565805,-0.21086918096989393,0.5352448052726686,0.7179711982607841,-0.3571368046104908,0.8688656589947641,0.43642879743129015,-0.9508399949409068,0.7056557652540505,-0.7460659155622125,0.2067916546948254,0.06720215221866965,-0.049829413183033466,-0.8153545176610351,-0.8054684982635081,0.07689740834757686,0.5108740511350334,-0.6420008982531726,0.636512968223542,0.7790837865322828,-0.03372158668935299,0.13240746641531587,0.031229428946971893,0.7958494080230594,0.2789007588289678,0.6678799903020263,0.5707168006338179,-0.1781062283553183,-0.6141280317679048,0.5989741156809032,-0.9770478024147451,-0.5723886326886714,0.06895900471135974,-0.7611208166927099,0.07947690738365054,-0.4353651162236929,0.22465675324201584,0.9334267838858068,-0.843836507294327,-0.004769572522491217,-0.8120224247686565,-0.48283274844288826,0.13943857001140714,-0.8407405880279839,0.04854792216792703,0.36963735334575176,0.2509284894913435,-0.011545764748007059,0.5403247508220375,-0.6970115080475807,-0.024454182013869286,-0.9776262524537742,-0.39346977695822716,-0.2117749317549169,-0.6726641203276813,0.1956983213312924,0.691979035269469,0.9602572345174849,-0.2528290175832808,-0.592864001635462,0.1956944433040917,0.48121165996417403,-0.6436548777855933,-0.6566795562393963,-0.6106183943338692,0.3342927163466811,0.5201010704040527,-0.9285857658833265,-0.03538706060498953,0.4457959560677409,-0.45722713973373175,-0.18240672256797552,0.7892059604637325,0.5241919364780188,-0.02473677694797516,0.5269780596718192,-0.7440550378523767,0.974733114708215,0.9248907682485878,-0.8001375133171678,0.31807073624804616,0.6505386056378484,-0.6511673089116812,-0.29607144836336374,0.9531818120740354,-0.807866123970598,0.9218303579837084,0.6947433659806848,-0.9776814952492714,-0.28327698819339275,-0.5182591523043811,-0.8462428394705057,0.6820163819938898,0.28299077693372965,0.6332767754793167,-0.056473505683243275,0.12281020870432258,-0.8823482925072312,-0.5231592822819948,-0.6400373424403369,-0.9982390268705785,-0.2136921426281333,0.9999626730568707,0.11974424263462424,0.6258032666519284,0.7212307695299387,0.6108383275568485,0.3376172408461571,0.23858661064878106,0.3972023189999163,0.24270211067050695,-0.3240188704803586,-0.18641423294320703,-0.9166481350548565,0.0955124725587666,-0.5425298176705837,-0.6086237886920571,0.4618632458150387,0.18861679313704371,0.5311883501708508,-0.327585041988641,-0.14929164806380868,-0.761906857136637,-0.8454194930382073,0.0062100570648908615,0.12440344179049134,0.02190018817782402,-0.6656509637832642,-0.3365493160672486,-0.7846685280092061,-0.9100382565520704,-0.09649887448176742,-0.25484732259064913,-0.8844358744099736,0.36875568702816963,0.4799277246929705,-0.46174040948972106,0.6104708220809698,-0.6392447375692427,-0.9755971669219434,-0.3056021952070296,0.8829473122023046,-0.4982049250975251,-0.7217221595346928,-0.7870901767164469,0.37731099547818303,-0.1810719328932464,-0.5999977248720825,0.46549749467521906,0.21600778494030237,0.3713934333063662,-0.20876395562663674,-0.6001152694225311,-0.3511904189363122,-0.3706598402932286,-0.29185632802546024,-0.20841267285868526,-0.9602609216235578,-0.12622361071407795,-0.13717610016465187,-0.8289701510220766,-0.6152232517488301,-0.6201490983366966,0.00636500958353281,0.41478572180494666,0.11353525938466191,-0.5312242452055216,0.3924160120077431,-0.20133360568434,-0.1384697430767119,-0.7853613332845271,-0.9253131379373372,0.4009626363404095,0.714924328494817,0.3811543369665742,0.5832563363946974,0.3722448297776282,-0.9603870152495801,-0.6988545889034867,-0.2769733821041882,-0.7607503943145275,-0.9622875964269042,-0.7288250499404967,-0.987733512185514,-0.8975935177877545,0.5881358897313476,0.869470639154315,0.6904882728122175,0.326652763877064,0.20159346936270595,-0.42649699561297894,-0.8198167225345969,-0.12346086697652936,-0.9705371116288006,-0.3894269042648375,0.663462407886982,0.6331054451875389,0.8053123690187931,0.32374647352844477,-0.8159428294748068,-0.7236937996931374,-0.9962073522619903,-0.8309531738050282,0.5095573398284614,0.11813149927183986,-0.6093574753031135,0.17518464103341103,-0.7460474111139774,-0.13867392903193831,-0.44405111763626337,0.4389976388774812,-0.436111391056329,-0.46983374701812863,0.8698998158797622,-0.11727353790774941,-0.8606799384579062,-0.1484244172461331,-0.5729966778308153,-0.742001639213413,0.7753768968395889,-0.6792697114869952,0.3096715067513287,-0.1518473792821169,-0.7730336640961468,0.8520727637223899,0.021208838559687138,0.8249137033708394,-0.22107163816690445,-0.401948896702379,-0.13830811949446797,-0.4325804514810443,-0.11389791732653975,0.6714077135547996,-0.6974139474332333,0.5019609988667071,-0.9182804343290627,0.8159476765431464,-0.2986915959045291,-0.31797514762729406,-0.2898638378828764,-0.12937135249376297,-0.486855901312083,-0.4076654170639813,-0.8106362982653081,-0.3942271680571139,-0.3457659729756415,-0.2727719536051154,0.3782041082158685,0.2651379657909274,0.515080954413861,-0.08263076050207019,-0.3011465333402157,0.11213079653680325,0.38913324987515807,-0.18792181555181742,-0.4030491206794977,0.2987435651011765,-0.8014930463396013,0.7193996529094875,0.47010003542527556,-0.45215196534991264,0.1299029691144824,0.13932587765157223,-0.4391023670323193,0.33926736656576395,0.9478980312123895,0.8415849572047591,-0.9624144919216633,0.3188135614618659,0.8655476015992463,-0.7891139900311828,0.8583149644546211,-0.11168278567492962,0.2847351566888392,0.7405623085796833,-0.02172398427501321,0.8854274353943765,0.9224650361575186,-0.9385973694734275,-0.021933303214609623,-0.8039558799937367,0.0420603989623487,-0.16490850411355495,0.36014910507947206,-0.4893149249255657,0.7132082660682499,-0.7298894785344601,0.32713804161176085,-0.692636108957231,0.10431013628840446,0.11701638903468847,-0.929482399020344,0.9449534490704536,-0.1491690631955862,-0.7677701315842569,-0.7034879522398114,-0.133977176155895,-0.1664631743915379,-0.5973932766355574,0.5946562536992133,-0.3151149246841669,-0.08816001284867525,-0.5774475913494825,-0.8752662083134055,-0.7201385702937841,0.14794826554134488,-0.5602448973804712,0.8534234245307744,-0.31714830454438925,0.9800010318867862,-0.5475732092745602,0.9573164540342987,0.2331579658202827,0.03035584231838584,0.17019793903455138,0.3420399110764265,-0.8069773451425135,-0.628451453987509,0.2772015808150172,-0.7596565582789481,0.8394380658864975,-0.9735621614381671,0.07344933273270726,-0.6933495150879025,-0.511203876696527,0.8495477745309472,-0.7552107307128608,-0.34351859893649817,-0.7980254008434713,0.9662952236831188,0.7013687202706933,-0.6461311308667064,0.24943721573799849,-0.933191564399749,-0.33854127302765846,-0.5051648621447384,-0.31460312847048044,-0.4094045595265925,0.6741541819646955,0.5844540940597653,0.5433617499656975,-0.9151315544731915,0.9662317698821425,-0.5907006384804845,-0.9972409685142338,0.662022024858743,0.15757558913901448,0.7558802384883165,-0.8458844902925193,-0.36790942028164864,0.3073186636902392,-0.9415374309755862,0.0035703377798199654,-0.607127693016082,-0.6607009270228446,0.5433002868667245,-0.30931781558319926,0.5215006107464433,-0.9730147426016629,0.8882748228497803,-0.5636726971715689,-0.11691273003816605,0.4643246438354254,-0.39724174281582236,-0.554434665478766,0.14214436057955027,0.29387917928397655,-0.5804506693966687,-0.8074950203299522,-0.8560403720475733,-0.6330989003181458,0.6831406648270786,0.17615040438249707,0.3464479581452906,0.3327285461127758,-0.32305008033290505,-0.9860987598076463,-0.04604557482525706,0.7658383911475539,-0.10138728003948927,0.6068352963775396,-0.8471965468488634,0.005362430587410927,0.2254841299727559,0.4333239574916661,0.004513463471084833,0.9710006732493639,-0.056610691361129284,0.1602076687850058,0.30528390780091286,-0.1806058045476675,0.9731090012937784,-0.2277205791324377,0.5821356102824211,0.9177122320979834,-0.8802354894578457,0.24209707463160157,-0.9025991973467171,-0.44371887343004346,-0.10489664599299431,0.9764919546432793,0.8368509141728282,-0.6232917723245919,0.8956303796730936,-0.7175019322894514,0.2819482618942857,0.4479713188484311,-0.3846047963015735,-0.20613504061475396,0.12521614506840706,-0.6470622280612588,0.8550440864637494,0.9624766567721963,-0.2662229067645967,0.849966011941433,0.3793995389714837,-0.352438201662153,0.12507681408897042,-0.07395486487075686,-0.608203362673521,-0.710911269299686,0.9206847436726093,0.4405928123742342,-0.4901026380248368,0.5876719141378999,0.2802535882219672,0.8056931551545858,0.8621643343940377,0.9200365953147411,-0.9661470563150942,-0.7065758118405938,0.2545161731541157,-0.528339977376163,-0.5317589771002531,-0.8274289751425385,-0.010225814767181873,0.3270556745119393,-0.010953642893582582,0.8820591145195067,-0.4616438443772495,-0.07774199405685067,0.7640727539546788,0.6969908382743597,-0.6224651797674596,-0.8589463536627591,-0.34181568771600723,-0.7000226834788918,0.007931536994874477,-0.3717396045103669,0.09800284914672375,-0.2634428786113858,-0.8826719322241843,-0.2575138141401112,0.41267763543874025,-0.8801657557487488,-0.6167911454103887,-0.8041961435228586,0.37690551578998566,0.35656740609556437,-0.602434687782079,-0.30355113884434104,0.03877412574365735,0.6891225753352046,0.01975500350818038,0.31033601239323616,0.22090085642412305,0.018915376160293818,-0.19926075031980872,0.5160159482620656,0.10020453063771129,-0.6463102409616113,0.7011574292555451,-0.5776246786117554,-0.05005176365375519,0.6290958733297884,0.6819607708603144,0.5479640732519329,-0.19820208009332418,-0.4069630862213671,-0.9111870764754713,0.3009293517097831,-0.5573990736156702,-0.6449170052073896,0.9926317376084626,0.975016382522881,-0.2236246708780527,-0.6563535090535879,0.6448913891799748,-0.7428650818765163,-0.09683639602735639,0.40565748745575547,-0.31019105250015855,0.9095641961321235,-0.1996405846439302,-0.7516464577056468,-0.11852238373830914,-0.0046067629009485245,-0.7509884228929877,-0.059149375185370445,-0.3076058803126216,0.7423570086248219,-0.8832349390722811,-0.2801152402535081,0.4985256129875779,-0.6874854462221265,0.12067514238879085,-0.9731006994843483,0.23183566611260176,0.32287083147093654,-0.23595564672723413,0.621739196125418,0.6782466587610543,-0.49207118852064013,0.4712918568402529,0.7833270528353751,-0.14060862688347697,-0.40176196675747633,-0.4682877007871866,-0.6665797457098961,-0.7343340874649584,-0.26735729491338134,0.3501749192364514,0.40272363694384694,0.407627095002681,-0.25833478197455406,0.5919105391949415,0.3203723467886448,0.23793716076761484,-0.8383606122806668,-0.8970448230393231,0.8224411383271217,0.019027401693165302,-0.9503560904413462,0.42120019951835275,-0.4826588216237724,0.9161542467772961,0.39512275205925107,0.5714766071178019,-0.5345425605773926,-0.5567041700705886,0.9291485105641186,0.6484676846303046,-0.761549346614629,0.16993768140673637,-0.03278286289423704,0.5006112772971392,0.8724845331162214,-0.8651150180958211,0.9639074984006584,-0.23003565520048141,-0.19150796718895435,-0.41061687655746937,-0.5667050261981785,0.9771884405054152,-0.8892400204204023,-0.08394966926425695,0.7258947342634201,-0.2664602496661246,-0.4006972834467888,0.8811567309312522,-0.025416372809559107,-0.9915625462308526,0.49000607430934906,0.5701319854706526,0.10909795807674527,0.7720579281449318,-0.302366491407156,-0.6066170698031783,0.051094627007842064,-0.6894490849226713,0.08744228258728981,-0.2189473924227059,-0.7808206984773278,0.12040609773248434,0.8884628359228373,0.024896588176488876,-0.2644895538687706,0.18755689403042197,0.1143250884488225,-0.8761291150003672,-0.7091841488145292,-0.6286030621267855,-0.2102102544158697,-0.31670531211420894,-0.3576501957140863,0.6359413866885006,-0.7170682386495173,0.18297677487134933,-0.9435632419772446,0.750636471901089,-0.20947080198675394,0.2972303652204573,-0.6763480980880558,0.9455651305615902,0.5484828152693808,0.27736649848520756,0.7984961359761655,0.04167631594464183,-0.20331802731379867,0.39836849411949515,-0.3546111173927784,0.7407663338817656,0.7024797759950161,0.1292029283940792,-0.28509724885225296,-0.7941274782642722,0.030333222821354866,0.7958864537067711,-0.511788965202868,0.5958354095928371,0.4360880642198026,-0.7246563280932605,-0.9750978737138212,0.2347297607921064,0.47688046284019947,-0.46683414466679096,0.9558746200054884,-0.21605035848915577,0.7137434962205589,-0.43457539146766067,-0.30508959013968706,-0.137733134906739,0.6287275468930602,0.32208053627982736,-0.19845457281917334,-0.9711016770452261,-0.1626722696237266,0.7862809160724282,-0.6364645063877106,-0.1823713076300919,-0.4004077143035829,0.3790082661435008,0.1122144740074873,-0.9273718209005892,0.3405804354697466,0.6986779682338238,-0.45991327660158277,-0.9335919888690114,-0.8312819772399962,-0.1873377780430019,0.6147622000426054,0.37214253516867757,0.8017699322663248,-0.35166551312431693,0.48422139836475253,-0.730672343634069,0.49102117167785764,-0.9004339356906712,0.5832506250590086,0.8662043502554297,0.9436956811696291,-0.29579953383654356,0.42529089469462633,-0.6279930523596704,0.8770693717524409,-0.876545088365674,0.33376336051151156,-0.7848268924281001,-0.5596910608001053,-0.08225055783987045,-0.09629456559196115,0.6685119019821286,0.825531555339694,0.16274488670751452,0.5420217434875667,-0.5354142962023616,-0.29261243157088757,0.9780040541663766,0.768882601056248,-0.3682445315644145,0.8886326760984957,-0.6472333106212318,-0.9848971907049417,0.9248042665421963,0.027109367307275534,-0.5895442292094231,-0.6157161509618163,0.6187493950128555,0.0025593251921236515,0.6626220401376486,0.31921803252771497,-0.08424581168219447,0.7842773026786745,-0.21935623232275248,0.2892467975616455,0.7043661121279001,0.2666497081518173,0.7279351917095482,0.7810718016698956,-0.25102312257513404,-0.8665514155291021,-0.035894228145480156,-0.31657661171630025,0.5987390726804733,0.3835158357396722,0.6674015196040273,0.7347056944854558,-0.2656285264529288,-0.049991817213594913,-0.9398390189744532,-0.8296458702534437,0.1455641146749258,-0.7843710528686643,0.8609146550297737,-0.5645163892768323,0.7169075235724449,0.9648531782440841,-0.6296384702436626,0.35770580638200045,-0.8845953904092312,0.8804325573146343,-0.37374694272875786,-0.9790290808305144,-0.11119295842945576,-0.03851656150072813,-0.7608428290113807,0.693637571297586,-0.9075160645879805,0.6927819028496742,0.11165943928062916,0.2456770516000688,-0.3665441940538585,-0.012728775385767221,0.5242899740114808,-0.396713063120842,0.9509618422016501,0.33950248500332236,-0.12126127956435084,0.07419195165857673,0.5832897587679327,-0.2711314898915589,-0.4671495957300067,-0.6712589086964726,-0.20232011331245303,0.8120514815673232,0.8842125679366291,0.43880892312154174,0.6101029338315129,0.11276243720203638,-0.4508418873883784,-0.3636421677656472,-0.06413666158914566,0.981719359755516,0.31284761102870107,-0.5042634019628167,0.7104042354039848,0.09790952643379569,0.7249817126430571,-0.812382965348661,0.7778189065866172,0.909093807451427,0.023006401024758816,-0.309667001478374,-0.2069361279718578,-0.2836466091684997,0.2267517209984362,0.5572709059342742,0.28143358789384365,-0.07196430256590247,0.7120093931443989,0.20100980065762997,0.5584221687167883,-0.40280576702207327,-0.1379556660540402,-0.2872791262343526,0.15806620428338647,-0.44531913520768285,0.26214606082066894,-0.8218001546338201,-0.7146587879396975,0.9456954444758594,-0.4338629995472729,-0.3970261891372502,-0.5008798721246421,0.473160972353071,-0.8335148552432656,-0.8778754295781255,0.21663869731128216,0.38222734071314335,0.17640125239267945,-0.8433607001788914,0.005527723114937544,0.666888915002346,-0.3931581354700029,0.7183803957886994,0.9345237766392529,0.027244167402386665,0.24018860887736082,0.8545662690885365,0.022282390389591455,-0.7030763714574277,-0.1812115516513586,0.09962664311751723,0.812491119839251,0.962850131560117,0.10121612856164575,-0.9193397997878492,-0.9516158415935934,-0.8382391794584692,-0.4178804880939424,-0.2548756403848529,0.03056224575266242,-0.16838879929855466,0.40386573504656553,0.9797152830287814,0.7935035484842956,0.9195973929017782,0.9100280879065394,-0.4560849224217236,0.5551876705139875,-0.11472092755138874,0.8058053366839886,-0.5206883843056858,-0.9577765963040292,0.3800435457378626,-0.48337962618097663,-0.05873469542711973,0.3514850656501949,-0.12122570117935538,-0.9820558289065957,-0.5447586956433952,-0.2892347960732877,-0.5625136937014759,0.30883174296468496,-0.41792038083076477,-0.5308982823044062,-0.9091454315930605,0.30476740282028913,-0.33515403559431434,0.9020825899206102,-0.5874259886331856,0.3237350219860673,-0.013871825765818357,0.434209618717432,-0.4529716703109443,0.6383052859455347,-0.029209048952907324,-0.3356216228567064,-0.5795545862056315,-0.9476616801694036,0.4717540624551475,0.5560682616196573,-0.1957467901520431,0.8554255212657154,0.3781511881388724,-0.6202796720899642,-0.5627300264313817,0.6990403644740582,0.7991799521259964,-0.6350945788435638,-0.4381888243369758,0.5610513323917985,0.28403416089713573,-0.6022335696034133,-0.7074964013881981,0.3698193687014282,0.8422801694832742,-0.9707979029044509,0.3569168532267213,0.7670988459140062,0.3906390964984894,0.805274919141084,-0.4542733933776617,0.3599543017335236,-0.5457947510294616,0.6199991879984736,0.21926853945478797,-0.8816287652589381,-0.22084670839831233,0.2200090973637998,0.7435898371040821,0.7220025770366192,-0.39496455201879144,0.9388561812229455,0.4167491919361055,-0.9024465931579471,0.7553590894676745,-0.04361722804605961,-0.5286915027536452,-0.3292251406237483,-0.26185675989836454,0.021160780917853117,-0.48358725756406784,0.02725294418632984,0.2458672341890633,-0.9990018415264785,0.3108438062481582,0.9663617331534624,0.7547243661247194,-0.17648712592199445,-0.8839483261108398,0.9388353303074837,0.9939303752034903,0.5885096648707986,0.43835791340097785,-0.8658501217141747,-0.9097495670430362,-0.6804658467881382,0.16425742954015732,-0.6431211838498712,-0.3961987718939781,0.4772298848256469,0.48384908586740494,-0.8471776591613889,-0.29991270788013935,0.16683980217203498,0.8652116041630507,-0.23556157667189837,-0.5995078659616411,-0.5916575193405151,-0.015061498153954744,-0.15872265445068479,0.6002257713116705,0.7155952039174736,-0.34669832745566964,0.8771247379481792,-0.5725478692911565,0.10087693575769663,0.8905469342134893,-0.617068154271692,-0.0964110093191266,-0.6625173590146005,0.22872719494625926,0.6648263577371836,-0.7615681583993137,0.6395942401140928,0.8390686865895987,-0.8856489197351038,0.8829088695347309,-0.997510589659214,-0.2359917382709682,0.7410377678461373,0.5150753655470908,-0.6990436990745366,-0.8883624342270195,0.4546269099228084,0.16704661445692182,0.9683651346713305,-0.9974415274336934,-0.997425643261522,0.7430243301205337,-0.8181615727953613,0.9421934392303228,-0.6071150214411318,-0.7797471438534558,0.3553408719599247,-0.6641400386579335,-0.1760534276254475,0.8514076564460993,0.6234528040513396,-0.5287410826422274,-0.8744208132848144,0.739395396783948,0.256678135599941,0.06395554868504405,-0.5377008728682995,0.17813539924100041,-0.7511154296807945,-0.715236350428313,-0.9830418233759701,-0.33652765955775976,-0.37597992457449436,-0.17035086499527097,0.2129051312804222,-0.3572072545066476,-0.7804016661830246,0.8628157149069011,-0.14355583861470222,0.8127281051129103,-0.3004033020697534,0.3897587894462049,-0.18019857397302985,0.4382134615443647,-0.6976321204565465,-0.0876231649890542,-0.833529896568507,0.19114954583346844,-0.15764048416167498,-0.03396257106214762,0.6216610507108271,-0.48169303545728326,-0.9215540247969329,-0.32842170214280486,0.03249358292669058,0.44974190508946776,-0.07075370568782091,-0.9391004997305572,0.5900688045658171,-0.2315819701179862,0.542136421892792,-0.35482142958790064,0.15139639796689153,-0.5981270470656455,0.7428599298000336,0.593398196157068,0.30140378791838884,-0.5392183810472488,0.6993439304642379,0.8060694690793753,0.09486158424988389,0.4652023008093238,0.3280164608731866,-0.6816835687495768,0.04362585302442312,0.3546480764634907,0.7646911675110459,0.39565700152888894,0.4625661252066493,0.7971228496171534,-0.01783868996426463,-0.8192863492295146,0.24056099727749825,0.7120861173607409,0.06016052281484008,-0.2334149838425219,0.39149764040485024,-0.6728115906007588,0.8225098536349833,0.5301624508574605,-0.1641969415359199,-0.6908200532197952,-0.4529990148730576,0.49987254198640585,0.837078801356256,0.9520594370551407,0.3861814304254949,0.15781769575551152,0.6897256933152676,0.38493651803582907,-0.489314588252455,-0.8409546073526144,0.6815031822770834,-0.9038341045379639,-0.8827982656657696,-0.794519433286041,0.4699862082488835,-0.234460917301476,0.5452457726933062,0.5563199385069311,0.42207932146266103,-0.6004305551759899,-0.8249300513416529,0.20543431770056486,0.8168263132683933,-0.5740671954117715,0.5344149605371058,-0.15415166085585952,-0.8800963931716979,0.11645137891173363,0.27646399661898613,-0.8176501058042049,0.37750371266156435,0.3555756094865501,0.5315621462650597,0.37271751184016466,0.3512622769922018,-0.9666812038049102,-0.3958156304433942,0.25477569131180644,-0.851428706664592,-0.39907352766022086,-0.06678086332976818,0.9650323688983917,-0.4498408790677786,-0.3794868770055473,0.06261889450252056,0.07670311583206058,-0.8291390580125153,-0.8234775406308472,0.6965789799578488,-0.9321188721805811,0.7319135554134846,-0.5705843209289014,0.8052296182140708,0.9995010127313435,-0.39257243974134326,0.7536538257263601,0.06751041300594807,-0.8566550128161907,-0.5120132714509964,-0.9004602716304362,-0.6273670406080782,0.3328487630933523,-0.592516518663615,0.3932576118968427,-0.04694628855213523,0.30678270058706403,0.6941303666681051,0.3395269955508411,0.5421531624160707,0.40273252967745066,0.6973601491190493,0.8593110386282206,0.6937837386503816,-0.11895747249945998,-0.9655621964484453,-0.8826973051764071,-0.13734256429597735,0.47715569753199816,0.193967595230788,-0.25670769484713674,-0.9723081365227699,-0.5310890479013324,0.930025422014296,0.9951640367507935,-0.6460829474963248,-0.5376138077117503,-0.10741413943469524,0.015523220412433147,-0.8939292333088815,-0.2998907365836203,0.6210942468605936,-0.5497328387573361,-0.327061390504241,-0.06838214909657836,-0.5882231518626213,-0.8234334886074066,0.2745186663232744,-0.9469372532330453,-0.22552966373041272,-0.019795691594481468,0.9943845085799694,0.31227325461804867,-0.9329949924722314,0.44416524609550834,-0.557299914304167,-0.42531726881861687,0.7718717786483467,-0.3115229192189872,-0.3441308536566794,-0.34285781998187304,-0.858805445022881,-0.7857758053578436,0.23039170959964395,-0.9455861775204539,-0.36742926808074117,0.4554233984090388,-0.06654797168448567,0.11175371846184134,-0.9699533898383379,0.3005284029059112,-0.2326113022863865,0.45495948754251003,0.4822701746597886,-0.9689081539399922,-0.9794148774817586,0.004319240339100361,-0.48150569293648005,-0.8205489683896303,0.8893267204985023,0.2573995189741254,0.2785506905056536,-0.6421049018390477,-0.6074890452437103,-0.31173958210274577,-0.8847248065285385,-0.41997414268553257,0.8219438772648573,0.5452213105745614,0.8863367117010057,-0.5801565111614764,-0.41263185581192374,-0.8831725218333304,0.684710699133575,0.9258393030613661,-0.5258621508255601,-0.8434865181334317,0.8381351609714329,-0.04512217687442899,0.7054325887002051,0.48160969745367765,0.10591830033808947,0.5694976137019694,0.7036264599300921,-0.09205644810572267,0.007078097201883793,-0.6374601777642965,-0.8826485206373036,-0.5840504160150886,0.3262696657329798,0.7850866592489183,-0.7456980259157717,0.5786090567708015,-0.5324295964092016,-0.44107677321881056,-0.19617202738299966,0.2260143286548555,0.7219534479081631,-0.8892567846924067,0.18573468271642923,-0.9782618023455143,-0.2789185466244817,0.7323355511762202,-0.7517571868374944,-0.9222743171267211,0.8900584001094103,-0.1102513880468905,-0.4096428081393242,0.1190320560708642,0.07615947723388672,-0.1305674030445516,0.014505213126540184,0.8159010200761259,-0.18059819610789418,-0.015132107771933079,-0.10837568063288927,0.7421076409518719,0.47072144923731685,-0.7135246116667986,-0.3089868170209229,-0.04365842184051871,-0.9575263112783432,0.05073549412190914,-0.48221290297806263,0.2685816055163741,-0.9200569512322545,0.06676795240491629,0.35424052830785513,-0.654598786495626,-0.1991702252998948,0.14506170945242047,0.37616538908332586,0.31545684626325965,-0.9917266694828868,-0.6785118225961924,0.6689185919240117,-0.31764624873176217,-0.5216392069123685,-0.9053040817379951,-0.8447939064353704,-0.4268322899006307,0.7446073167957366,0.9055097224190831,0.6569907693192363,0.09948444971814752,-0.7796424962580204,0.1344883213751018,-0.05302291922271252,0.051450020633637905,0.1753695155493915,0.38776228623464704,0.7670574057847261,0.6248093051835895,0.49925976525992155,0.49552623089402914,0.4740731427446008,-0.7536402037367225,0.8512532147578895,-0.05904018273577094,0.16531509207561612,-0.6613190239295363,0.05645481217652559,0.16456957813352346,0.8620907277800143,-0.3494885107502341,-0.5032250457443297,0.6941741053014994,0.8670121557079256,-0.43073643231764436,-0.15758711518719792,-0.46863775327801704,-0.5424424912780523,-0.1622140291146934,-0.20838484494015574,-0.4591919304803014,-0.9482329762540758,-0.4421942513436079,0.23102657962590456,0.9673273195512593,0.8309880457818508,-0.4204304935410619,-0.9176878514699638,0.6204125438816845,-0.2953251679427922,0.7270358731038868,0.5164413740858436,-0.0028694001957774162,-0.5469364067539573,-0.14542695321142673,-0.22414875449612737,-0.27220857469365,-0.49520793044939637,-0.03271862166002393,-0.3316471562720835,-0.2015861663967371,-0.4362187893129885,-0.6823667571879923,0.9315142529085279,-0.7052567512728274,0.1726224571466446,-0.8728577755391598,0.4622499356046319,0.7715371148660779,-0.3828248120844364,0.5217224596999586,-0.1663130484521389,-0.8479294055141509,0.24320274963974953,-0.307523257099092,0.6501607978716493,0.2854855372570455,0.6843434753827751,-0.8957189582288265,-0.08300724858418107,-0.5628491244278848,-0.2708451310172677,0.509013585280627,-0.5964603926986456,-0.9549150601960719,0.5380186117254198,0.9359658104367554,0.7813438908196986,-0.9182341010309756,0.5939075658097863,0.2848548819310963,0.6398793780244887,-0.15961424075067043,-0.2360274945385754,-0.42900831811130047,-0.1616816846653819,-0.6041683852672577,0.1726703573949635,0.016435876488685608,-0.8351569003425539,0.09114971477538347,-0.1059832670725882,-0.5097260884940624,0.8732185726985335,0.2667214274406433,-0.07841561362147331,-0.10261794412508607,0.24301432585343719,0.6767487158067524,-0.6151437214575708,-0.3103183680213988,-0.19425743725150824,-0.04755353229120374,-0.6160725471563637,-0.2522378908470273,-0.07929481193423271,0.5716305477544665,-0.30627930257469416,-0.6952197421342134,0.26991726411506534,0.024651250801980495,0.7745365230366588,-0.34841904789209366,0.18037581350654364,-0.8708919109776616,0.058069479651749134,0.4652450499124825,-0.8689991659484804,0.3712783781811595,0.4089807979762554,0.9035391379147768,-0.26141344709321856,-0.1225955723784864,-0.30455340445041656,0.08852310478687286,-0.4602065421640873,-0.10667545767500997,0.21882860315963626,-0.796127337962389,0.6972691132687032,0.3760975804179907,-0.05556996911764145,0.6017140010371804,0.05993157299235463,0.6814936543814838,-0.6456454303115606,-0.17504922626540065,0.9124864004552364,0.35493121203035116,0.6119236773811281,0.48762436769902706,0.14499112870544195,0.7560181505978107,-0.44594293134287,-0.6546084769070148,0.9166224426589906,-0.7460435875691473,0.33354882476851344,0.2869427986443043,-0.21353376982733607,0.5000687981955707,-0.9717454253695905,0.9151228126138449,-0.3371180249378085,0.4768026629462838,-0.3265226078219712,-0.5784141761250794,0.4416978037916124,0.7582752811722457,-0.5760472528636456,0.09278933983296156,-0.6570635107345879,-0.6193144568242133,-0.081470328848809,0.6889802068471909,0.7190236509777606,-0.9280446972697973,-0.95919149229303,0.9035300458781421,-0.5217935373075306,0.30443866457790136,0.39291496155783534,-0.45739660132676363,-0.7061397456564009,-0.3409539586864412,0.2003358006477356,0.46867167577147484,-0.5175967686809599,0.34988412633538246,0.4196118493564427,-0.7776060272008181,0.5168252075091004,-0.13797834981232882,-0.0369570660404861,-0.07729594456031919,0.08087648963555694,-0.9785573165863752,-0.7877228567376733,-0.31397739006206393,0.7911236118525267,-0.015064798295497894,-0.36992932111024857,0.9463429702445865,0.9656797242350876,0.23972529778257012,0.47572429245337844,0.5797078367322683,0.9245446249842644,0.028160967864096165,0.7132259560748935,0.8673683754168451,-0.23794697783887386,0.09729813924059272,0.6976863229647279,0.4408150468952954,-0.13459374802187085,0.7562328008934855,0.4192006033845246,0.4400747255422175,-0.014653649646788836,-0.7664313768036664,0.8777716709300876,-0.3707665461115539,0.8950141733512282,0.7431846731342375,0.2699311408214271,-0.808297339361161,0.7576854289509356,-0.44855103828012943,-0.807429725304246,0.3094778317026794,0.9973577200435102,0.9879598589614034,-0.18538541020825505,-0.3873365796171129,0.10628650896251202,0.5319286761805415,0.8799226521514356,0.8432249627076089,0.8203537971712649,0.5262956647202373,0.6480150576680899,0.945653875824064,-0.8141108504496515,0.7959743086248636,0.7956554861739278,0.27759643690660596,0.585035074967891,0.450087109580636,-0.2276221406646073,0.7476009866222739,-0.8906206684187055,0.9473709682933986,-0.5796029148623347,-0.9110469296574593,-0.37463474785909057,0.5277315890416503,0.6799683384597301,0.37591218622401357,-0.16484555508941412,0.7675326829776168,-0.8384668570943177,-0.7402547723613679,-0.5280069448053837,0.10334199573844671,-0.9123513763770461,0.7525229952298105,-0.7116447533480823,0.8864030549302697,0.3005757895298302,0.09464759146794677,0.402816956397146,0.8927613385021687,-0.2958547384478152,0.47827968932688236,0.6635447829030454,0.7891510464251041,-0.30660454789176583,0.6970053687691689,-0.36369784642010927,0.380193492397666,0.21323839854449034,0.8618346434086561,-0.20549799595028162,0.09929980617016554,0.7041849843226373,0.051598078571259975,0.38081783754751086,0.6819386328570545,-0.910155332647264,0.25099970679730177,-0.6943170819431543,-0.616126119159162,-0.2904529832303524,0.7210685624741018,0.25835135439410806,-0.7162941908463836,-0.3421621029265225,-0.36175499903038144,-0.9830791028216481,0.09369225986301899,-0.95099140657112,-0.17206165241077542,0.2664509383030236,-0.5079988841898739,0.8960319831967354,-0.8641950339078903,0.5352308368310332,-0.884176061488688,0.97792310686782,-0.8553693937137723,0.9073783555068076,-0.891016420442611,-0.5525006572715938,-0.015729647129774094,-0.9447588752955198,-0.3688309411518276,0.5211737677454948,0.2838464342057705,-0.3548126257956028,0.02841522404924035,0.22511257883161306,-0.7134475437924266,0.1611498584970832,0.6590196266770363,-0.08129477314651012,-0.712471429258585,0.6796764675527811,-0.7960481378249824,-0.9033209853805602,-0.7891368851996958,0.598087496124208,-0.1694261347874999,0.8279242333956063,0.5911147533915937,-0.9171413038857281,-0.8598662451840937,-0.3148429496213794,-0.2849496342241764,-0.27330475067719817,0.3762942645698786,-0.2835232145152986,-0.05140652181580663,-0.4677345999516547,0.8763285810127854,-0.04267539270222187,0.9608902325853705,-0.6980274729430676,0.7968708011321723,0.16052679438143969,0.5039265011437237,-0.11747871898114681,0.9356148317456245,0.21346224658191204,0.1399981426075101,-0.22222509840503335,-0.07866932125762105,0.814553624484688,0.8775200974196196,-0.7943262369371951,-0.2711117132566869,0.8159681251272559,0.27346861734986305,-0.7310189818963408,0.29500916646793485,0.21539469668641686,-0.48820291738957167,0.2881177575327456,-0.48067575972527266,-0.6419965350069106,-0.7138593322597444,-0.9668978895060718,0.4442769265733659,0.46809420036152005,-0.9857080224901438,-0.6164594506844878,-0.08320135157555342,0.3128935005515814,-0.7033715485595167,0.3747694781050086,-0.062250536400824785,-0.7925543608143926,0.08047036500647664,0.19931866973638535,-0.10995748732239008,-0.2887855083681643,-0.4126943270675838,-0.054216878954321146,-0.7819822761230171,-0.7135090944357216,0.5891311820596457,-0.6905716937035322,-0.30643348302692175,-0.9771183752454817,0.4663986689411104,0.4538605120033026,0.27675354247912765,0.7602209080941975,-0.441344385035336,0.6762211788445711,0.8413166590034962,0.29592625703662634,0.6748593053780496,-0.31549046700820327,-0.8499575289897621,-0.5223443699069321,-0.20872079906985164,-0.9022664781659842,-0.40291422605514526,-0.0725944978184998,0.49639676604419947,-0.4207013864070177,-0.887487550266087,-0.3668377911671996,0.6109725199639797,0.23467884864658117,-0.9697387451305985,0.14201432839035988,-0.5579043230973184,0.562406612560153,0.10033974563702941,0.3947482299990952,0.9725887114182115,0.7361702178604901,0.547696013469249,-0.5146863250993192,0.624605221208185,0.0565127138979733,-0.03653409518301487,0.8778616129420698,0.9089927896857262,0.13745193975046277,0.1918291156180203,-0.5104597443714738,-0.5965873878449202,-0.3802787219174206,0.45601336704567075,0.5194280240684748,0.5729917925782502,0.9252639366313815,-0.8791284402832389,0.047381321899592876,0.019253108650445938,-0.9917045384645462,0.03643263643607497,-0.1637968858703971,-0.18564239516854286,-0.7062891130335629,0.957553859334439,-0.648186600767076,-0.8602784555405378,0.6899775066412985,-0.2642693710513413,-0.3924445086158812,0.8128798897378147,0.5195702598430216,-0.04890323989093304,0.07309293746948242,0.2721446552313864,-0.43020908860489726,0.559074638877064,0.2538579870015383,0.41891916561871767,0.49183417623862624,0.6635541524738073,-0.22020574240013957,0.6378261721692979,0.5446423506364226,0.5949530065990984,0.33647032501176,0.45857390528544784,-0.7574959211051464,-0.5882384856231511,0.5102825877256691,0.28248668694868684,-0.7282765205018222,-0.8666139054112136,0.686406631488353,-0.9377821497619152,0.1573124686256051,-0.8142134984955192,-0.7022160100750625,0.1670337193645537,-0.06653592549264431,0.3323500226251781,-0.564415292814374,0.44059658562764525,0.41256469674408436,-0.1139480285346508,0.046929880511015654,-0.5222238143905997,-0.31052051205188036,0.7721405462361872,0.4916693875566125,0.8801757292822003,0.9918154529295862,-0.11877296213060617,-0.6812446331605315,-0.9945577727630734,-0.7530937748961151,0.22475567320361733,-0.4368271231651306,0.6751994187943637,0.15363073581829667,-0.6279525486752391,0.13587055495008826,-0.429636268876493,0.7836166927590966,-0.2963981432840228,0.36466881446540356,0.49018759839236736,0.20964546222239733,0.9577630166895688,-0.3950411821715534,0.628960594534874,0.8732994413003325,-0.2580835819244385,0.725123992189765,0.743581133428961,0.0555764683522284,-0.4952625799924135,-0.35972986882552505,-0.08958091493695974,0.8451185673475266,-0.40222155675292015,-0.8389919968321919,-0.01789270155131817,-0.04760512104257941,-0.29995339177548885,0.9426740701310337,-0.189748992677778,0.17945930594578385,0.3582970453426242,0.5980589655227959,0.851057565305382,0.10907659074291587,0.0614767586812377,-0.35763555858284235,0.5562803470529616,0.8505801646970212,0.40109316911548376,0.09127549966797233,0.661322208121419,0.9247422819025815,0.6443570707924664,-0.8125025378540158,-0.9754605372436345,-0.9763047937303782,0.7766954856924713,-0.5617549093440175,0.7264774744398892,0.12154813017696142,-0.39228491857647896,0.2923059477470815,0.16535541974008083,-0.8063144246116281,-0.8969891280867159,-0.4357014955021441,-0.28992973640561104,0.5208905315957963,-0.6625896347686648,-0.41830104496330023,0.5651673329994082,-0.8364826831966639,0.28797818487510085,-0.5173871056176722,0.7232196307741106,-0.954203478526324,0.010708883870393038,0.5745676499791443,-0.30695938831195235,0.573608823120594,-0.0921593620441854,0.3246030183508992,0.5372779886238277,0.21713271224871278,0.1922520026564598,-0.009045344777405262,0.8226221241056919,0.1044677090831101,0.17260095104575157,0.9354315218515694,0.5035824975930154,0.6177804190665483,0.8310246309265494,-0.48549052281305194,0.2494666096754372,-0.05564864631742239,0.08238554233685136,0.12185336975380778,-0.017987776082009077,-0.6776855452917516,0.29674491425976157,-0.23097971454262733,0.4331152201630175,0.3112206249497831,-0.010916831903159618,-0.9159298832528293,-0.14399578981101513,-0.5247074794024229,-0.8997526196762919,-0.45041558844968677,-0.5065840566530824,-0.25005328143015504,0.34999481635168195,0.23214727640151978,0.7057465719990432,-0.15953164407983422,-0.24961274676024914,-0.6960660880431533,0.18175566848367453,-0.5907636391930282,0.28614954138174653,0.28517971793189645,0.9792730482295156,0.1523114494048059,-0.33144064294174314,0.9070018944330513,-0.5842177150771022,0.6907790745608509,-0.41447783820331097,-0.5568300792947412,0.9113866626285017,-0.9286460648290813,0.27221780084073544,-0.9942206740379333,0.2661451562307775,-0.7217160342261195,-0.10117022274062037,0.3776861089281738,-0.352923845872283,0.6730581196025014,-0.6124543128535151,0.45715666841715574,-0.8277250076644123,-0.32446212600916624,0.1869283728301525,0.9953423724509776,0.7428312953561544,-0.39675490092486143,-0.2667606268078089,0.5039867060258985,-0.8582876739092171,-0.5598398884758353,-0.3831143993884325,-0.14493854343891144,0.966917201410979,0.7378830164670944,-0.43583997851237655,-0.4661008729599416,0.7172746122814715,0.6297393459826708,0.9088112590834498,-0.2623924524523318,-0.39234382240101695,-0.23262638691812754,-0.6820846418850124,0.08146697748452425,-0.8686791826039553,0.6384605029597878,-0.7498487085103989,-0.7977092415094376,0.9305752133950591,0.3961840341798961,-0.6678552133962512,0.46520054526627064,-0.4003508952446282,0.808377833571285,0.612255459651351,0.027288708370178938,-0.43598124478012323,0.9147388278506696,0.5977513701654971,0.022537232842296362,0.8064105031080544,0.7292024358175695,-0.190798154566437,0.7663650917820632,0.2911840924061835,-0.2668311232700944,-0.4277114188298583,-0.28171273646876216,-0.05857246369123459,-0.7623390005901456,0.6076832944527268,0.6800247123464942,-0.0033733323216438293,-0.8387967022135854,-0.7379837380722165,-0.2886357861571014,0.35476872604340315,-0.015792985912412405,0.9743842901661992,0.9106321525759995,-0.7574447668157518,0.08260847628116608,-0.3292967164888978,-0.6367589221335948,-0.21340456791222095,-0.2461833842098713,-0.018526284955441952,0.5256491545587778,-0.3250505425967276,-0.17125485418364406,-0.7275853627361357,-0.290145430713892,0.8876036731526256,-0.2605543024837971,0.6435282044112682,0.8427218799479306,0.4084534631110728,0.8676116848364472,-0.25065215304493904,0.1793668707832694,-0.5693128197453916,-0.012780025601387024,-0.28393529588356614,0.23779812501743436,-0.8159945574589074,0.9106713910587132,-0.6264769001863897,0.7980152787640691,-0.994752423837781,-0.6435332810506225,0.3625589469447732,0.9674671427346766,-0.16183038102462888,0.5484040034934878,-0.4965394139289856,-0.8848058222793043,-0.3415276943705976,-0.5438487469218671,-0.7157037002034485,-0.8039010688662529,-0.4847684446722269,0.10635585803538561,0.7860263343900442,0.6055280091241002,-0.6600504415109754,0.4224573830142617,-0.7024183655157685,-0.832828311715275,0.5230230945162475,0.13297783071175218,-0.2982684993185103,-0.23330524610355496,0.5278943050652742,0.7398856254294515,-0.508215568959713,-0.014122036751359701,-0.45439745718613267,0.806860039010644,0.7840327308513224,-0.15570912323892117,0.06304157013073564,0.43347604433074594,0.30415481980890036,-0.5776163022965193,-0.43582108756527305,0.3297926466912031,-0.5636829049326479,0.3998939502052963,0.3179791742004454,0.7060009078122675,-0.6633105655200779,-0.9954132628627121,-0.009222546592354774,0.3631631857715547,0.05692938668653369,-0.6745467521250248,-0.6828754767775536,0.009831884410232306,-0.7299544364213943,-0.4318028511479497,0.2511496529914439,0.3260248131118715,0.13608395354822278,0.47817065566778183,0.9793365034274757,0.7242522519081831,-0.5056832036934793,-0.1476621050387621,0.010452959686517715,0.5798971843905747,-0.4381233863532543,-0.8276680442504585,0.6043354053981602,-0.3365933997556567,-0.9165887455455959,0.581307522021234,0.48419672157615423,-0.25417531467974186,0.4699961617588997,-0.3259500879794359,0.921193887013942,0.21644967002794147,0.0108161517418921,0.6293532960116863,0.8053805981762707,-0.3270580219104886,-0.4144333084113896,-0.027663657907396555,0.3904237453825772,-0.6034433208405972,0.45634306594729424,-0.555705782957375,0.061182398814707994,0.49258752074092627,-0.39219669811427593,0.6560653797350824,-0.9326209058053792,-0.4288292033597827,-0.23098748549818993,0.9252194995060563,0.7279302570968866,0.9384610578417778,-0.4741925457492471,0.027729121036827564,-0.8867154782637954,-0.6094927252270281,-0.3667106283828616,0.4643695126287639,0.9708888120949268,-0.9196111876517534,-0.6260305377654731,0.2974792434833944,0.322766637429595,-0.3292598472908139,-0.6568279005587101,-0.9599317819811404,0.4940844252705574,0.2867455845698714,-0.49243749771267176,-0.8044568710029125,-0.06350944610312581,-0.6167856170795858,0.12084130430594087,0.7021583495661616,-0.6809790963307023,-0.017381062265485525,0.3504544501192868,-0.08650466753169894,0.8713104617781937,0.011585399508476257,0.2000411027111113,-0.5581577192060649,0.19212942896410823,-0.025769270956516266,0.6481752302497625,-0.6622938490472734,-0.4984367801807821,0.8785050329752266,0.0989195080474019,-0.12354188924655318,-0.7328346744179726,0.16151116974651814,0.4514716248959303,0.9107519555836916,0.49674588069319725,-0.7959654554724693,-0.24684829451143742,-0.41991718485951424,0.4350993297994137,0.30524265114217997,-0.002860905136913061,0.4742320594377816,-0.7767944410443306,0.5537447677925229,0.9382917555049062,0.6047188783995807,0.035379203502088785,0.28795539680868387,0.5571367582306266,-0.2503866902552545,0.06090926006436348,0.3044855948537588,-0.533543539699167,-0.5486297816969454,-0.383409193251282,0.5232140799053013,-0.47704398119822145,0.7144186957739294,-0.639519854914397,-0.8975731353275478,-0.4146741018630564,-0.26229448430240154,0.7880281344987452,0.9468529596924782,-0.5590419317595661,-0.35079738963395357,0.4675859338603914,0.06017045443877578,0.4929926684126258,-0.9142605410888791,-0.5557630741968751,0.987671593669802,-0.2535311677493155,0.6235004547052085,-0.07415107125416398,-0.41870863270014524,-0.10954533191397786,0.6282226024195552,-0.5202579679898918,0.5519614876247942,-0.13689719652757049,-0.849639589432627,-0.20368909370154142,0.878900891635567,0.3003545952960849,-0.8327188096009195,-0.9582934710197151,0.5141101377084851,0.02523898333311081,0.9813970574177802,-0.2769339792430401,0.8099218467250466,0.715923042036593,-0.9801884186454117,0.5025168224237859,0.7639906946569681,-0.16275377478450537,-0.9505586489103734,0.6211597584187984,0.07128108665347099,0.5896842433139682,-0.9847679366357625,0.6258845417760313,-0.7140392810106277,-0.8932697912678123,-0.5666886419057846,-0.20358096482232213,-0.9542399244382977,0.869226255454123,0.8969329195097089,-0.49316490069031715,0.7975349971093237,-0.5263473172672093,0.5993125457316637,0.8834345545619726,-0.20834301505237818,0.6388297080993652,0.05020341044291854,-0.45751042710617185,0.7641803030855954,0.597352622076869,0.13261107727885246,0.9374556825496256,0.775286020245403,-0.08241390576586127,0.05352506134659052,-0.8698322377167642,-0.6331096459180117,-0.23760118801146746,0.5057252524420619,0.20332753844559193,0.41573441261425614,-0.23851182777434587,0.9657862684689462,0.48115652427077293,-0.36317377677187324,-0.23840030189603567,-0.9086954137310386,0.795584674924612,-0.853761110920459,0.7085717432200909,0.37830599024891853,0.3445498929359019,0.4057936081662774,0.876051542814821,-0.01311897998675704,0.03111629094928503,0.20608656015247107,-0.34605051716789603,-0.6689128498546779,0.2650267411954701,-0.7452923632226884,-0.811275047250092,-0.6690301289781928,-0.7557731294073164,-0.8419235274195671,0.08970920275896788,0.0264101754873991,0.5566724357195199,-0.2719403957016766,-0.8796292743645608,-0.39276889292523265,0.5589867481030524,-0.06776361865922809,0.23542318446561694,0.4735315456055105,0.33120184717699885,-0.09143061749637127,-0.9106789515353739,0.0229357467032969,-0.6616024500690401,0.7698821029625833,-0.9471459481865168,0.9977372325956821,-0.9307573619298637,-0.045064006466418505,0.6663692630827427,0.30481681786477566,-0.5052881566807628,0.260824634693563,0.8458394799381495,-0.7952111610211432,-0.8199885482899845,0.7529447600245476,-0.4101561042480171,0.601297511253506,-0.6342453579418361,-0.5331957754679024,-0.5291557679884136,-0.9063368057832122,-0.7303506671451032,-0.7729618484154344,-0.023336205631494522,-0.3295315303839743,0.9976770170032978,-0.20269698230549693,-0.5297310040332377,0.31523606181144714,-0.09387731971219182,0.8756320895627141,-0.685430868063122,0.8204467259347439,0.2520350688137114,0.1771448515355587,-0.5855240151286125,0.9277222682721913,0.5294898562133312,-0.2793454793281853,-0.11344017600640655,-0.29161742702126503,0.9708842476829886,-0.22942276811227202,0.8562516830861568,0.5649556303396821,0.2382105439901352,-0.1424694494344294,0.11384608317166567,-0.014320723712444305,-0.8255072920583189,-0.2404008531011641,0.0239386516623199,-0.9838351397775114,-0.51164985075593,0.7133627696894109,0.16524030873551965,0.3995611662976444,0.06915782857686281,0.5739200464449823,0.21033076010644436,0.15830552857369184,0.5980078224092722,0.2868755650706589,-0.9817071501165628,0.4975316449999809,0.7338731568306684,0.0566870691254735,-0.5238389899022877,0.5048612640239298,0.5173613424412906,0.8430285379290581,-0.49549313820898533,-0.6210122378543019,-0.6977774011902511,0.20661419536918402,-0.4418837078846991,0.6565961674787104,-0.542377442587167,0.6668089726008475,-0.5508968741632998,-0.6804772657342255,-0.6283183875493705,-0.5848065968602896,-0.318479482550174,0.7134994501248002,-0.05662703234702349,0.3904120693914592,0.19002200802788138,-0.24104550620540977,-0.4829955715686083,-0.5570858945138752,0.9547113608568907,0.31394060188904405,0.5287310527637601,0.9861253383569419,-0.9556061699986458,0.3331595868803561,0.7286324198357761,0.3057429897598922,-0.38221243815496564,-0.44304510625079274,0.7758775530382991,-0.9802994127385318,0.09390571480616927,0.8712696549482644,0.07772705750539899,-0.6526542496867478,-0.2551075052469969,-0.9805374504067004,-0.702591834589839,0.8124693827703595,-0.009661464486271143,0.5546530056744814,0.4030645382590592,0.5582172190770507,-0.4224050883203745,-0.7538045546971262,0.3587457905523479,0.9370396216399968,-0.024015267845243216,0.441127460449934,-0.05520589463412762,0.7678496111184359,-0.7605861066840589,-0.4871533024124801,0.45076888846233487,0.7525711483322084,-0.06521650729700923,-0.30591191397979856,0.9127150624990463,-0.40066146617755294,-0.3590046390891075,-0.5484607052057981,0.9601403856649995,-0.37362095760181546,-0.5151601969264448,0.31035559019073844,-0.07531383726745844,-0.15944751957431436,0.3933563116006553,0.9142138562165201,-0.37145252525806427,0.5097362985834479,-0.9834116399288177,0.8841765406541526,0.33155071223154664,-0.3690334870480001,-0.9618776952847838,0.08770941384136677,0.9618694889359176,0.9926055246032774,-0.14001587079837918,0.19662450160831213,-0.07982116425409913,0.3038080004043877,0.809006140101701,-0.20800751959905028,0.06337395031005144,-0.7990872473455966,-0.28612468019127846,0.5901938742026687,-0.2472766707651317,0.966176853980869,0.2300504269078374,-0.3090840303339064,0.06261441810056567,-0.4017632817849517,-0.8597047757357359,0.7227297434583306,0.5292499638162553,0.28797709895297885,0.05944806756451726,0.1560622751712799,0.05971489707008004,0.768921029753983,-0.0016342117451131344,-0.014836510643362999,0.7720433417707682,0.09686538344249129,-0.48587789526209235,-0.6076782019808888,0.8704135832376778,-0.37799881724640727,-0.8000699230469763,0.8728323704563081,0.9281766908243299,-0.6526775732636452,0.7964897528290749,0.5149678969755769,0.9155524633824825,-0.06583333807066083,0.4815492448396981,0.6506052305921912,0.33818180160596967,0.9589215382002294,-0.005521092098206282,-0.37699377816170454,0.4380996129475534,-0.16129593970254064,-0.23384059686213732,0.6706750942394137,-0.9835797972045839,0.5917612160556018,-0.07502151420339942,-0.9390315297059715,0.17800905415788293,-0.1856972104869783,-0.11034861020743847,0.8862353167496622,-0.8720349026843905,0.7236982067115605,-0.17640638211742043,0.19697682280093431,0.5870233462192118,-0.32539341039955616,-0.8820778685621917,-0.47277292096987367,-0.8665727023035288,-0.678304600995034,0.48307589208707213,0.12604879355058074,-0.8822159976698458,0.5627119075506926,-0.11798913171514869,0.7636300646699965,-0.7803074619732797,-0.030772756319493055,-0.9703432624228299,0.9617356294766068,0.7142084934748709,-0.2578079253435135,-0.9672052580863237,-0.8129379726015031,-0.6101034209132195,-0.9242089004255831,-0.7536519882269204,0.7993572023697197,0.295555557589978,0.4787691463716328,0.07990824850276113,-0.31129630049690604,-0.3674426372162998,-0.2806475409306586,0.7396406098268926,-0.14189001452177763,0.10273903841152787,0.10886163543909788,0.44015699345618486,0.5165971694514155,0.9945328254252672,0.5049662408418953,-0.9791333456523716,0.24131066678091884,-0.25168534368276596,-0.2519685113802552,-0.42449285136535764,-0.07152951927855611,-0.4478588025085628,-0.8349549239501357,-0.4040634469129145,-0.43083759024739265,-0.9327341970056295,-0.2768287961371243,-0.47151518519967794,0.3687625271268189,-0.014342507813125849,0.4183462983928621,0.7463523107580841,-0.7415827554650605,0.18733341991901398,0.7321263845078647,0.5263465130701661,-0.5616374779492617,0.8768324889242649,0.7700649886392057,0.9430537936277688,0.8963845833204687,0.7241310384124517,0.8726391792297363,-0.44648652151227,-0.7237137486226857,0.5983258229680359,0.42111385241150856,-0.207378214225173,0.7742691193707287,0.31088022142648697,-0.022262636106461287,-0.06701485440135002,0.3213756107725203,-0.891775491181761,-0.31175879016518593,0.17735950369387865,-0.1969150835648179,0.7258088090457022,0.7863750015385449,-0.261493475176394,0.21718902001157403,0.41357538290321827,0.7162181348539889,-0.11638079630210996,-0.1664247652515769,0.04195094667375088,-0.5373856071382761,-0.07473377417773008,-0.13147768238559365,-0.5806541237980127,0.5450567030347884,-0.18271650467067957,0.5157964969985187,0.11818178929388523,-0.4622818995267153,0.19142973935231566,0.769748639781028,-0.20990614499896765,0.7005636114627123,0.19736067298799753,-0.745788442902267,0.8200967856682837,0.20071688713505864,0.47171960584819317,0.2325781132094562,-0.3063504542224109,0.17228765645995736,0.7186502451077104,0.4150859476067126,-0.7931560324504972,-0.5516101713292301,-0.5277650500647724,-0.620165707077831,-0.4586145877838135,0.3203192874789238,-0.9130109720863402,-0.8874511197209358,-0.4977874085307121,0.8505006679333746,-0.424415894318372,0.8742198841646314,-0.16538167418912053,-0.8687613531947136,-0.9336354788392782,-0.17341140657663345,0.7840963401831686,0.24314189702272415,0.17326759779825807,0.45969690289348364,0.05296806478872895,-0.2552935667335987,0.4591801012866199,0.20636790711432695,-0.5743193328380585,0.039084650576114655,-0.545748199801892,-0.28222660487517715,-0.9540590927936137,-0.5295560448430479,-0.37459278712049127,-0.0564608802087605,-0.42883348604664207,0.28335208958014846,-0.583130331709981,0.9043969679623842,0.7922640377655625,-0.34741412522271276,-0.8264969205483794,0.8747438685968518,-0.5008751163259149,0.6934993294999003,0.8552391417324543,0.818026190623641,0.029317556880414486,-0.05499965185299516,-0.2959143980406225,-0.810151063837111,-0.14615397434681654,-0.8026139633730054,0.9413062878884375,-0.8753179516643286,-0.9222709988243878,0.6294898563064635,-0.6333265956491232,0.9241706193424761,0.6323285363614559,0.2910231612622738,-0.46812859550118446,0.7757973186671734,0.32108529191464186,0.46018151100724936,-0.3742889207787812,-0.3261249396018684,0.8136538625694811,0.13555176928639412,0.47519792011007667,0.960149091668427,0.7731170407496393,-0.41578524420037866,0.1035733767785132,0.4786333735100925,0.028999404050409794,-0.7041067807003856,0.028573437128216028,-0.27875381521880627,-0.44950050162151456,-0.14999358309432864,0.3073186012916267,0.27882319409400225,-0.7340678414329886,0.8143710712902248,-0.5296063516288996,-0.42283503245562315,0.7278828751295805,0.8700749310664833,-0.8511238787323236,-0.7205865592695773,-0.8010375276207924,-0.7953402851708233,-0.3652525362558663,-0.689972328953445,-0.8485821564681828,0.8946567713283002,-0.19764546724036336,0.9805920473299921,-0.9053177391178906,-0.3072864399291575,0.6053184885531664,0.11884303949773312,0.8810634580440819,-0.27922763489186764,0.3269530930556357,0.9529170109890401,0.8956166771240532,0.6941300113685429,-0.47649119049310684,-0.4643921637907624,-0.009431495796889067,0.9595342269167304,-0.8497656821273267,-0.7061862531118095,0.694728943053633,-0.9313964894972742,0.24441477563232183,0.560270044952631,0.10841660434380174,0.4255266170948744,-0.09894451079890132,0.5347876278683543,-0.03328983811661601,0.678586604539305,0.9977137916721404,0.4349740934558213,-0.07804320100694895,-0.7508107786998153,-0.9324940452352166,-0.9343605157919228,-0.02107471600174904,-0.36762535385787487,0.7090165796689689,0.9167548543773592,-0.8405419341288507,0.6920577278360724,-0.5759604759514332,-0.9713282189331949,0.8217462017200887,0.061178936157375574,-0.9209617851302028,-0.3443073760718107,0.5135119101032615,0.028038003016263247,-0.7231810325756669,-0.9942067307420075,0.03148725349456072,0.5090858321636915,-0.5011557601392269,0.6037932047620416,0.17121899826452136,0.13939234102144837,-0.3470474290661514,-0.8120586900040507,0.7751545002683997,-0.004854058381170034,0.5889029493555427,0.6024764417670667,-0.11345281964167953,0.6619991394691169,-0.8307440001517534,-0.5244173668324947,-0.7584239761345088,0.6187431965954602,-0.20452606352046132,0.2730999831110239,-0.4545395574532449,-0.8953695180825889,-0.45570400543510914,0.46594806481152773,0.16193277575075626,-0.6160356933251023,-0.6922488817945123,-0.7762811635620892,-0.8563132639974356,0.9024619497358799,0.8283070283941925,-0.7834799475967884,0.5715367188677192,-0.05090794246643782,0.7193525526672602,-0.45387900760397315,-0.7345201093703508,-0.011110804975032806,0.30904604587703943,-0.8970379387028515,0.2806617268361151,-0.5310084014199674,0.08054267521947622,-0.09626777190715075,0.4453561310656369,-0.9129003910347819,-0.9395280336029828,0.05600167764350772,0.4983842349611223,-0.1153889293782413,-0.7198470644652843,-0.9181934939697385,-0.6374106928706169,0.15211617946624756,0.19643279071897268,0.047227739822119474,0.9552330505102873,-0.9048939128406346,0.5584741556085646,0.7526554628275335,0.20169006939977407,-0.25482752127572894,-0.9486590707674623,0.7245059576816857,0.6656238157302141,0.20056870998814702,-0.8769271364435554,0.2379792514257133,0.07068236172199249,-0.38252190267667174,-0.35209756903350353,0.8543688654899597,0.23636116227135062,-0.7520598964765668,0.694979356136173,-0.8148370673879981,-0.10149845527485013,0.46488414239138365,-0.26910010166466236,-0.13185588782653213,-0.20264389039948583,-0.9230951955541968,0.36835178500041366,-0.5959389796480536,0.32308888528496027,0.6954008853062987,-0.42486692080274224,0.16417311318218708,0.6028205505572259,-0.5928793270140886,0.007867140229791403,0.8749268525280058,-0.8638142426498234,0.48020316706970334,-0.7456965944729745,-0.2393409153446555,0.2910688044503331,-0.5173536879010499,0.8446343429386616,-0.15696016373112798,-0.3551462390460074,-0.15645433403551579,-0.28158308332785964,0.9849366592243314,-0.10278789652511477,0.5714654875919223,0.6094357715919614,-0.9446180635131896,0.514954608399421,-0.1879353392869234,0.23165577882900834,-0.726693824864924,0.9275535396300256,-0.31014606868848205,0.43598713632673025,0.15831942996010184,0.0948539306409657,-0.5483268476091325,-0.6197830946184695,0.7030718345195055,0.5345978131517768,-0.9892352810129523,-0.007707073353230953,0.9292132393456995,-0.39948860509321094,0.26472489535808563,-0.9497114205732942,0.41400098893791437,0.42398916371166706,0.5430299490690231,0.49701129412278533,-0.7221835646778345,-0.11267408635467291,-0.1320108287036419,-0.536474525462836,0.9483308233320713,-0.9725479218177497,0.14822804694995284,0.20313950767740607,-0.9826849633827806,0.9625181052833796,-0.49028221191838384,0.9905377584509552,-0.6216308316215873,-0.9700591624714434,-0.4223875333555043,-0.6495120110921562,-0.6969234417192638,0.1693190997466445,-0.5468950434587896,0.47785016149282455,0.316387171857059,0.08945934753865004,-0.7493258365429938,0.47470411099493504,-0.0952749215066433,-0.274053568020463,0.7320076231844723,0.29388381261378527,0.4802551562897861,0.4976837569847703,-0.12114716833457351,-0.9800477838143706,0.30545111978426576,-0.1611815388314426,0.27922655967995524,0.4867230919189751,-0.41513117775321007,-0.6804712750017643,-0.8752910243347287,-0.22949083242565393,-0.8065854799933732,-0.7458561570383608,0.16549619799479842,-0.9078124621883035,0.948716327548027,-0.5059390268288553,0.5575588392093778,-0.4893634165637195,0.3839555010199547,-0.5126797873526812,0.892271937802434,0.13689639698714018,-0.9098905911669135,-0.6181814568117261,0.9175456087104976,-0.3705992386676371,-0.7751159933395684,-0.16524643264710903,0.23594467621296644,0.016405516304075718,-0.7769194920547307,-0.10154434619471431,0.5707176397554576,0.6620621476322412,0.671369091141969,0.27249677386134863,0.07890063524246216,-0.8778106481768191,-0.11504732118919492,0.6128914775326848,0.05444556474685669,-0.03727929946035147,-0.603943991009146,-0.9892883375287056,0.942796076182276,0.45707099698483944,0.2556825140491128,-0.8625183198601007,-0.5538606303744018,-0.8791053714230657,0.13938822643831372,0.09906884515658021,-0.5757233882322907,-0.26125718653202057,-0.14198763854801655,-0.6356904464773834,0.7007154924795032,0.7037645350210369,0.583452173974365,-0.7853226694278419,-0.6178294261917472,-0.949823294300586,0.5804617963731289,0.8457462079823017,0.8231306951493025,0.04231325164437294,-0.04777070926502347,-0.7490746243856847,0.9485091897659004,-0.043723349925130606,0.513960899785161,-0.038273680955171585,0.9085407187230885,-0.15837319055572152,0.43286422779783607,-0.2546044047921896,0.9674259154126048,0.4001440331339836,0.6556377517990768,-0.07499753450974822,0.8142536473460495,0.7178604225628078,-0.5917436275631189,-0.9515502587892115,0.8243941501714289,0.5090493061579764,0.1967129996046424,0.9170423559844494,-0.1282542278058827,-0.6478027952834964,0.3281721929088235,-0.48751504998654127,0.4553114641457796,-0.43070172192528844,-0.001710500568151474,-0.8137787892483175,-0.8785656471736729,0.2866833698935807,0.1633363668806851,0.8336876244284213,-0.633626775816083,0.915886546485126,0.7131900675594807,0.9902932220138609,0.10270437877625227,0.9069371586665511,0.03733413200825453,-0.7118995129130781,-0.4005785547196865,0.9664941737428308,-0.7061121985316277,-0.6145491669885814,-0.9308162247762084,0.7466428615152836,-0.20076047349721193,0.05979455588385463,-0.03624108387157321,-0.5932763679884374,0.9737492436543107,0.6037440742366016,-0.40471941977739334,0.6668217866681516,-0.24701492907479405,0.26981448056176305,-0.408135780133307,-0.5069328141398728,-0.9722918570041656,0.886431579478085,0.7732109013013542,0.31884177261963487,0.5868690591305494,0.6098497528582811,-0.375403787009418,0.8317666514776647,-0.37753939954563975,-0.7598874904215336,0.18070068629458547,-0.8708768868818879,-0.7745162188075483,0.4618059964850545,0.013020118232816458,0.21295883553102612,-0.12666495889425278,-0.04165755258873105,-0.7579398825764656,-0.7796637830324471,0.34359104093164206,-0.9958968134596944,-0.2128753587603569,0.22319820243865252,0.7136272192001343,-0.3785616448149085,0.5959058413282037,0.6112005319446325,-0.10584068996831775,-0.645488659851253,0.3632314447313547,-0.06021113693714142,-0.04987448966130614,0.9087942205369473,0.5534452693536878,0.16710912808775902,0.06176351848989725,0.5452616629190743,0.14812956377863884,-0.6120552248321474,-0.12363562127575278,-0.5525628137402236,-0.2248760568909347,-0.8163711526431143,0.30857324320822954,0.5517564928159118,0.8367977822199464,-0.7283139796927571,-0.25764916464686394,0.13820206886157393,0.23924914514645934,0.06253098184242845,0.18566436506807804,-0.5142575236968696,-0.9854576052166522,-0.6241923235356808,0.8667351244948804,-0.38231999846175313,0.7927205483429134,0.7414559442549944,-0.7267508297227323,-0.04574171407148242,0.6189769799821079,-0.9520568796433508,-0.9418613892048597,-0.32000690419226885,-0.9843261023052037,0.8220107406377792,-0.42003077175468206,-0.49452184699475765,0.44651330448687077,-0.7363633709028363,-0.9475893569178879,-0.007516761310398579,0.9671561694703996,-0.8030007057823241,-0.9583321358077228,-0.5117115364409983,0.07887527579441667,-0.2152471854351461,-0.13912190031260252,0.8326445193961263,0.524142159614712,-0.8018962885253131,0.6977821555919945,-0.6705522243864834,-0.2943257549777627,-0.5066222357563674,-0.09088966017588973,0.23801394551992416,0.6000651088543236,0.9422198995016515,-0.38405674789100885,0.739598928950727,0.7186544802971184,-0.9256008663214743,0.12182965315878391,-0.6393481763079762,0.41536456998437643,-0.08596041658893228,0.7774985884316266,-0.21804892690852284,-0.5064123212359846,-0.42809778917580843,0.6379217565990984,-0.3589548896998167,0.7639083820395172,-0.07420550845563412,-0.34060921613126993,0.7626222311519086,-0.19345362298190594,0.07202912401407957,0.17170575121417642,0.7021928327158093,0.8902301117777824,-0.7155566927976906,0.3449051836505532,0.29389057168737054,0.5728285759687424,0.42923728935420513,0.030081679113209248,0.24089593766257167,-0.2286451798863709,0.7235090862959623,-0.40114879654720426,-0.3731648251414299,0.5748646012507379,-0.5840872032567859,0.8712229607626796,0.4194653322920203,0.6593085885979235,0.37449749698862433,-0.6966401943936944,0.9249735032208264,0.19090186525136232,-0.9962123748846352,-0.6077134143561125,0.5912939826957881,0.9748184867203236,-0.2651774729602039,-0.6418910729698837,0.08008823171257973,0.9707556855864823,-0.9229612592607737,0.035076749976724386,-0.4382511521689594,0.11207876680418849,0.6232006559148431,0.735931464470923,0.018905697856098413,0.5706041501834989,-0.35021871188655496,0.7331834812648594,0.4164297813549638,0.11926365550607443,-0.9603034965693951,-0.764133604709059,0.06442581908777356,0.7064183400943875,0.9656952852383256,0.41195031348615885,-0.7849659845232964,-0.9984873849898577,-0.3829074283130467,-0.7196738724596798,-0.24155673990026116,0.7802290762774646,0.2445100392214954,0.35417360393330455,-0.20016171876341105,-0.7983765210956335,0.48129810206592083,0.7457295684143901,0.0306813083589077,-0.09220208693295717,0.533403274603188,-0.2445557164028287,0.6141495048068464,0.2382630743086338,0.7709920522756875,0.12823143787682056,0.21247190330177546,0.8727452741004527,-0.15185730904340744,-0.15977421589195728,0.43134966073557734,0.15824918262660503,-0.3946260716766119,0.10164214204996824,0.7257885681465268,0.5054460391402245,0.12088583316653967,-0.7469615265727043,0.6886550127528608,0.34561924124136567,-0.8294665114954114,0.4796630032360554,0.5055097592994571,0.8022469109855592,-0.20785884745419025,0.10807202383875847,0.5154407774098217,0.41840781597420573,-0.19972204323858023,0.9672823725268245,0.8857862469740212,0.30329085933044553,-0.5655247746035457,-0.37014627316966653,0.25087682297453284,0.8167720483615994,0.08417581068351865,0.6863156566396356,0.7481891121715307,0.9783658771775663,0.36098439479246736,-0.17919790465384722,0.48380992794409394,0.2864274028688669,0.4867369309067726,-0.8811022313311696,0.521285698749125,-0.6254194430075586,0.9526449423283339,0.4030418903566897,-0.22509620478376746,0.70674860291183,-0.0888006673194468,0.5223344881087542,0.3577401419170201,0.2572263623587787,-0.3244924349710345,0.018854402471333742,-0.49973178189247847,0.5972962989471853,0.7253064950928092,-0.03208885621279478,0.020422445610165596,-0.9250200623646379,0.5996738420799375,-0.49644481716677547,-0.917017521802336,-0.19568093493580818,0.949541375041008,-0.5126303508877754,0.3528396310284734,-0.5639798943884671,-0.10384741425514221,-0.26762325316667557,-0.8997792941518128,-0.026054819114506245,0.4790967106819153,0.7019089506939054,-0.0008024126291275024,0.8080268381163478,-0.9738344973884523,0.6758436015807092,0.4161059223115444,0.48704997915774584,0.7139888131059706,0.6203758176416159,0.5810631760396063,-0.5904897856526077,-0.915703393984586,0.826276957988739,0.47753989789634943,-0.21647233935073018,0.5574514982290566,-0.15509890858083963,0.14859088091179729,0.7596914255991578,-0.3128432291559875,0.2044939249753952,0.6760572176426649,-0.3334628650918603,0.17849764227867126,0.42565326811745763,0.07040846068412066,0.7291921116411686,0.5415815794840455,-0.86858846899122,0.9952268409542739,-0.09387952229008079,-0.9906934653408825,-0.6898087719455361,-0.45641087694093585,-0.8232065057381988,-0.2708074334077537,0.5380151839926839,-0.5069538387469947,0.6098534120246768,-0.5822932687588036,-0.1153765581548214,0.6270659668371081,0.6798568228259683,-0.651344200130552,-0.44083802262321115,0.021138619631528854,-0.8203700822778046,0.18378073163330555,0.7892880318686366,0.024471597746014595,-0.9811109695583582,-0.3686328325420618,0.8982938905246556,0.8349310448393226,-0.5650773579254746,0.36194056924432516,-0.5665168995037675,0.6949587985873222,0.7440525819547474,0.1335764518007636,-0.9941916321404278,0.4281570422463119,-0.19474390521645546,0.37496170215308666,-0.14359154412522912,0.4858482754789293,-0.9810142582282424,-0.036012334283441305,0.3402759279124439,-0.09371620416641235,-0.22702243272215128,0.8089042115025222,0.26381100341677666,-0.24100356502458453,-0.7682195995002985,0.5810113111510873,-0.5094772386364639,-0.5192370535805821,-0.37752465391531587,-0.83630196377635,-0.9841568139381707,-0.1288708015345037,0.4149925587698817,-0.05784530192613602,-0.9589542145840824,-0.33492833748459816,0.07303738500922918,0.03983021015301347,0.736702446360141,-0.3532016999088228,-0.8134336778894067,-0.9916627360507846,-0.9247110462747514,-0.5222393446601927,0.03989436710253358,-0.9985009911470115,-0.3911529975011945,0.19223244115710258,0.9790919395163655,0.18691914901137352,-0.7952898722141981,0.3108244645409286,-0.7463675132021308,0.4118624865077436,0.7362030395306647,0.4125968227162957,0.2696725716814399,0.3384685730561614,0.40482843620702624,-0.15553172584623098,-0.790881862398237,-0.7234647376462817,0.6689750216901302,-0.997620465233922,0.45886380271986127,0.9132873089984059,-0.894905595574528,0.43995641311630607,0.8095262632705271,0.07476170361042023,0.3970206929370761,-0.9938441165722907,-0.9455317463725805,0.4899478470906615,-0.9130219826474786,-0.21064959140494466,0.3677249411121011,0.14688190864399076,-0.5875570825301111,0.7126938323490322,0.3574310732074082,-0.06142233591526747,-0.8163383463397622,0.0073790168389678,-0.7840262530371547,-0.7846357962116599,-0.5519442507065833,0.2493536793626845,-0.22082261182367802,-0.4317629486322403,0.43895462760701776,0.8623991752974689,-0.19813957624137402,0.29036378394812346,0.36147927260026336,-0.38261408638209105,0.5051557770930231,0.18220086302608252,0.934756807051599,-0.7826142655685544,-0.9608060200698674,0.537684865295887,-0.4675098638981581,0.10107892891392112,0.6118939714506269,-0.8553184079937637,-0.8961086552590132,0.452360266353935,-0.5406329850666225,0.7824113937094808,-0.2837678175419569,-0.6500783264636993,-0.9475263166241348,-0.0430947532877326,-0.453272950835526,-0.6822024793364108,-0.8255140543915331,0.4763212548568845,-0.5936549655161798,-0.43439991772174835,-0.03667919337749481,0.2197592370212078,-0.10303917992860079,0.7204526215791702,0.3720898306928575,0.3685186505317688,0.29014514246955514,0.5011537056416273,0.7649812125600874,0.9712581727653742,-0.7171030296012759,-0.8491091225296259,0.10506512131541967,0.9514592923223972,-0.6450423640199006,-0.15921011986210942,0.5008653616532683,-0.5049032540991902,0.6263509076088667,-0.5392239158973098,-0.5512403822503984,-0.015628612600266933,-0.5597083591856062,-0.6905196928419173,-0.5166186196729541,0.6807232745923102,0.4105797065421939,-0.803124082274735,-0.6967840702272952,0.011713369749486446,-0.031365434639155865,-0.42805943405255675,-0.573940469417721,-0.4314293875358999,-0.2781046559102833,-0.18090236885473132,0.6420365665107965,0.8404800724238157,0.2890179455280304,0.06865576980635524,0.0007097246125340462,-0.2354323761537671,-0.32128181774169207,0.4093426610343158,0.6219172673299909,-0.013218947686254978,0.002275204285979271,-0.9812219422310591,-0.6900551286526024,0.31604555156081915,-0.4787141503766179,0.22344000451266766,-0.010849344078451395,-0.10338336229324341,0.5001736166886985,0.5142056592740119,-0.5429155891761184,-0.25141834700480103,-0.6205546860583127,-0.778558122459799,-0.48680623387917876,-0.029181310907006264,0.4440841288305819,0.7559537631459534,0.6689643361605704,0.6094817705452442,0.867838857229799,-0.5432007256895304,0.5381026575341821,0.755539957433939,0.5619271495379508,0.6237548035569489,0.6336994227021933,0.9338639117777348,-0.07902467390522361,-0.7582893981598318,0.3794948779977858,-0.15969223761931062,0.49002242973074317,0.40982282953336835,-0.7088100407272577,-0.7937059844844043,0.4632775327190757,0.2483198055997491,0.29424495389685035,0.5851159328594804,0.2569746598601341,-0.20663369074463844,0.36053001042455435,0.014816169161349535,0.21972430683672428,0.4020534376613796,0.6684949486516416,0.5864714458584785,-0.5574325150810182,0.18785832868888974,-0.36977020977064967,-0.5233299271203578,0.9941191896796227,-0.7209625337272882,-0.8223353074863553,0.9164926707744598,0.8091546748764813,0.6451474046334624,0.938865200150758,-0.07628937438130379,0.28907852387055755,-0.012604720424860716,-0.22374851116910577,-0.18534137355163693,-0.517978289630264,-0.08146891230717301,-0.5211324128322303,-0.7832614025101066,-0.9117567827925086,-0.8532211543060839,0.3814066592603922,0.48452467983588576,0.03493561875075102,-0.40564754884690046,-0.7332728574983776,-0.5517292437143624,-0.846673016436398,-0.05705450102686882,0.9096007412299514,0.631396658718586,-0.7627943526022136,-0.8112444435246289,-0.86809968855232,-0.26109627401456237,0.6422118870541453,0.7760942811146379,-0.7585733914747834,-0.6979806195013225,-0.6654635858722031,-0.7904230607673526,0.10421418910846114,-0.5068372781388462,-0.1076996554620564,0.23862666869536042,-0.18719731783494353,-0.42052293941378593,0.3616043031215668,0.6700816387310624,-0.32426364067941904,-0.3492372054606676,-0.002395438030362129,0.40917232958599925,0.9333670330233872,0.09645135374739766,-0.6612213179469109,-0.4798993826843798,0.8691031308844686,0.05497499089688063,-0.8010066309943795,0.2399376481771469,0.1923331473954022,0.22290023928508162,0.14785226667299867,-0.6756935771554708,-0.3798196455463767,0.8415042352862656,0.014564783778041601,-0.323512168135494,-0.7640550513751805,-0.721433850005269,0.8623931421898305,0.710408613551408,0.4324104841798544,-0.10138438316062093,-0.2895022416487336,-0.8144275778904557,0.375207690987736,-0.18117542006075382,0.8979519829154015,-0.13547926768660545,0.7880786843597889,0.8046630015596747,0.7573681958019733,0.43112129997462034,0.604647892061621,-0.723496229853481,0.34015280939638615,-0.6889318502508104,-0.33674000995233655,-0.0805603158660233,-0.13587002363055944,-0.8029058878310025,0.5078183277510107,-0.7090663840062916,-0.9635710688307881,0.11439943453297019,-0.2643616762943566,-0.11272566812112927,0.3232836788520217,0.2195410947315395,-0.9628931065090001,0.22549927979707718,-0.9158567092381418,0.6997183123603463,-0.2732969974167645,0.8750612847507,-0.78261424228549,0.473765354603529,-0.4188066031783819,-0.22396803740411997,0.484810181427747,-0.08453903580084443,-0.3763375389389694,-0.5492326403036714,0.7693275334313512,-0.7779878773726523,0.7200371022336185,0.4749890104867518,-0.4921017778106034,0.8562583420425653,-0.6790072415024042,-0.5603554449044168,0.5663503585383296,-0.5571221732534468,0.9614974488504231,0.9948585755191743,0.6852640574797988,0.6141672763042152,-0.3625293434597552,-0.04664815869182348,0.9054184905253351,0.9030709932558239,0.7387853413820267,-0.015348698012530804,-0.2653572466224432,-0.10028633521869779,-0.14625700656324625,0.8598450436256826,0.9592035249806941,-0.17105292761698365,-0.28676215559244156,-0.13165044551715255,-0.8489760453812778,-0.49952941155061126,0.22121908934786916,0.11314741149544716,0.5432283887639642,-0.12391913356259465,0.7072768295183778,0.5428100051358342,-0.3130060466937721,0.7095217541791499,-0.15859386650845408,0.4866247018799186,-0.5408072583377361,0.01364466780796647,-0.013208776246756315,0.702062807045877,-0.6662702704779804,-0.4905854123644531,-0.2804455584846437,-0.24112179735675454,0.7090963432565331,0.28831311129033566,0.7925932197831571,0.6985281519591808,-0.7316652848385274,-0.4428184386342764,0.02099443133920431,0.060017979238182306,-0.02264727745205164,-0.7656096033751965,-0.36906257597729564,0.7340213586576283,-0.29456782015040517,-0.34302367316558957,-0.5605075545608997,0.24396843696013093,0.8526231250725687,-0.43502084305509925,-0.6818513004109263,-0.10728217381983995,0.7892341669648886,-0.565513894893229,0.5291274394840002,-0.3017926188185811,0.7389684924855828,0.7572142826393247,0.3942297683097422,-0.6595360245555639,-0.8564859791658819,0.9846303737722337,-0.12326428340747952,-0.8350777798332274,-0.5787189020775259,-0.5400822991505265,-0.3925621351227164,-0.7285498287528753,-0.6035442133434117,0.42276559630408883,0.031987941823899746,0.3655329756438732,0.266930949408561,-0.7019079891033471,0.8949659517966211,0.16501714568585157,-0.44797550747171044,0.5574546041898429,0.8571595251560211,-0.38647409761324525,-0.14353585103526711,-0.16350686876103282,0.41938936710357666,0.8783364365808666,-0.34253797214478254,-0.7343696812167764,-0.19313119444996119,0.45702123874798417,-0.8627694118767977,0.7693092115223408,-0.6741454917937517,-0.007341958116739988,-0.9192925551906228,0.9913037740625441,0.3648210787214339,-0.7093037622980773,-0.15492898086085916,-0.9096318711526692,0.36696445010602474,-0.7429049937054515,0.4939431641250849,-0.5283954190090299,-0.9544593160971999,0.7127490625716746,-0.12825007643550634,-0.8429366885684431,0.9568037730641663,-0.04722937475889921,0.683863717596978,-0.42701962357386947,0.35976833291351795,-0.4066906697116792,-0.5837069228291512,0.6230409806594253,-0.4314642585813999,0.08396657137200236,-0.9774581845849752,-0.8592054815962911,0.8288514111191034,-0.03297840990126133,-0.8738040877506137,0.6346437311731279,0.23384566511958838,-0.8144572656601667,-0.5772663694806397,0.9274975154548883,-0.23051592335104942,0.46428319718688726,0.1021117907948792,0.33575731283053756,-0.5885437005199492,0.8565451987087727,0.5565763735212386,-0.39247842226177454,0.24585346691310406,-0.9794160150922835,0.1800389918498695,0.08425240078940988,0.9643162516877055,-0.5111002367921174,-0.43381390115246177,-0.5671749413013458,0.3378826482221484,0.10680371522903442,0.12287422362715006,-0.9934326717630029,-0.6809032293967903,0.16343884263187647,0.4635158870369196,-0.7445621094666421,-0.09826405020430684,-0.46696323947981,0.5413979575969279,0.709443480707705,-0.5895310486666858,0.8604528331197798,0.1829986427910626,-0.09633905766531825,0.9183564009144902,-0.6040341784246266,0.5877048810943961,-0.1361817247234285,-0.5991463596001267,0.32855212362483144,0.12210136651992798,0.39147958578541875,-0.43306283187121153,0.9607944707386196,0.9289449350908399,0.03562263259664178,0.51682832185179,0.41762185702100396,0.29878159053623676,-0.7577786329202354,-0.48449185118079185,-0.1409374950453639,0.0655797254294157,0.1079287608154118,0.22322477540001273,0.7958027347922325,-0.04823755752295256,0.7466653804294765,0.5325358812697232,-0.47924158722162247,0.7548394682817161,-0.7689045802690089,-0.7706802375614643,0.18681279523298144,-0.9340699873864651,0.43560360837727785,-0.6142458231188357,-0.8351039430126548,-0.42581530939787626,-0.8019985998980701,-0.4631419270299375,-0.49749214481562376,-0.19976730039343238,0.10040860995650291,-0.49584820540621877,-0.1457739076577127,-0.7872306127101183,0.11846195301041007,0.21077760914340615,-0.058630633633583784,0.08994516404345632,-0.4231370845809579,0.6970039531588554,-0.2743601407855749,-0.27345437416806817,0.7584191798232496,0.24617497436702251,0.18775542918592691,0.37308767903596163,-0.8836908200755715,0.12052391236647964,-0.7857433403842151,-0.9084149124100804,-0.8670387761667371,-0.5778823387809098,0.5897866985760629,-0.9265099749900401,-0.6723607410676777,-0.22837835224345326,0.3177454457618296,0.21980545250698924,0.7104891166090965,-0.6428848002105951,-0.23465808248147368,0.8568552159704268,0.4172945232130587,0.94982028612867,0.0805387319996953,0.04646631330251694,0.9037737711332738,0.8612156440503895,-0.65853884909302,0.7221647263504565,-0.08762331958860159,-0.7165108760818839,-0.3784400401636958,-0.9960768958553672,0.40566112846136093,-0.610751838888973,-0.6200156682170928,-0.8507730551064014,-0.026178147178143263,0.3415367128327489,-0.15026488481089473,0.4788831672631204,0.5960354194976389,-0.6285942140966654,0.929924997035414,0.8599967840127647,-0.7416457454673946,0.5855804164893925,0.029933301266282797,0.8691520979627967,-0.9201132971793413,0.2875517848879099,0.8142213956452906,-0.8550614612177014,0.6554380008019507,0.02440721169114113,-0.19970632763579488,-0.17341723246499896,-0.1132357744500041,-0.06206325115635991,-0.40653534699231386,0.8184342277236283,0.7899531647562981,-0.5498687196522951,0.2923005842603743,0.055061009246855974,0.8024972486309707,-0.21424652077257633,-0.05129249533638358,-0.6085440600290895,-0.7217250326648355,-0.9999404228292406,-0.9642510460689664,-0.9127670177258551,-0.7092270324937999,-0.4955656426027417,0.2114567533135414,-0.3129032268188894,0.06321946997195482,-0.7525482969358563,0.9348364355973899,-0.20624920260161161,-0.7067833188921213,0.6653127423487604,0.5390597828663886,-0.4059291542507708,-0.4119591983035207,-0.5421543503180146,-0.2419051807373762,-0.4805278880521655,-0.807135290466249,0.8277379116043448,0.8436585790477693,-0.866583083756268,0.39666010811924934,0.753079891204834,0.6511887237429619,-0.2569767450913787,-0.13404218945652246,-0.3434476130641997,0.6598565801978111,0.8098535388708115,0.49001929024234414,-0.47150434367358685,0.9666505777277052,0.6635266039520502,-0.550396183039993,0.016131822485476732,-0.8009179537184536,-0.3871768699027598,-0.33961078943684697,0.8048026002943516,-0.25143277598544955,0.9139067037031054,-0.6584224654361606,0.03481297055259347,-0.17819552216678858,0.012705983128398657,0.0003244364634156227,0.9568503242917359,-0.974855228792876,0.1709952987730503,0.33689933829009533,-0.9842340922914445,0.6515297875739634,0.3364208796992898,0.6249799602665007,-0.40677204076200724,-0.48921072157099843,0.28286635503172874,-0.6572728650644422,0.8745898376218975,0.5689737615175545,0.2897880491800606,-0.13008513022214174,-0.5020600198768079,0.3993078591302037,0.9079096997156739,0.24445296870544553,-0.39719771314412355,-0.806724482215941,0.31089801667258143,0.8448987319134176,-0.2757863844744861,0.03997329296544194,0.8024923568591475,-0.19069429812952876,-0.5661086016334593,-0.7034872928634286,0.12543641543015838,0.5034236363135278,-0.7486944231204689,0.018874104600399733,0.925046619027853,0.10849124658852816,-0.6070702555589378,-0.3094689645804465,-0.6013714564032853,-0.7090268433094025,-0.8265030444599688,-0.14085899200290442,0.4055408872663975,0.032811909914016724,0.8640159871429205,-0.20482481364160776,0.6212271987460554,0.46091298339888453,0.798400342464447,0.14871713891625404,-0.11997284227982163,-0.7354369526728988,0.7181818736717105,0.7675904505886137,-0.2939411336556077,0.10919727850705385,-0.23671886371448636,0.3840268515050411,0.4080563406459987,0.28116889018565416,0.5761724435724318,0.17711405968293548,0.11725398292765021,0.11412888066843152,0.9096414186060429,-0.43827652698382735,-0.431119863409549,0.8917540768161416,0.17644571233540773,0.8199485577642918,0.8581567821092904,-0.9167139674536884,0.12006741808727384,0.505140841472894,-0.9306022375822067,0.0492575759999454,-0.26912210788577795,0.3559614182449877,-0.17743061436340213,-0.08828021679073572,0.3226444269530475,0.09704479342326522,0.5515248794108629,0.9880994600243866,-0.9736946197226644,-0.09816817659884691,0.2348809838294983,-0.4327482236549258,-0.8193267663009465,0.5436845035292208,-0.2913356223143637,0.7061137473210692,-0.1903937179595232,-0.9037516149692237,0.9077252978459001,-0.4625498177483678,0.038062432780861855,0.15551044652238488,0.9592601642943919,-0.3948924355208874,0.5161660863086581,0.9818533048965037,0.9695260049775243,0.9285250594839454,-0.7149983951821923,-0.5805468810722232,0.8852436845190823,0.7599946390837431,-0.03280091844499111,0.9257000596262515,0.5517229563556612,0.31001800624653697,0.6472293408587575,-0.6597793498076499,-0.08213706035166979,-0.6755972136743367,0.41196392150595784,-0.8729993705637753,-0.42468599835410714,0.7184701380319893,-0.9151810179464519,0.15344580821692944,0.51617636019364,0.28911603102460504,-0.5453659351915121,0.1433604760095477,-0.7989517361856997,0.29388845385983586,0.06343018636107445,0.8768718400970101,-0.8533451338298619,0.7822889294475317,-0.7576942257583141,-0.9040056611411273,0.9095908063463867,-0.21188013907521963,0.26382340025156736,0.5070111574605107,-0.40968550555408,-0.3725756988860667,-0.3678784091025591,0.561782787553966,-0.21772588370367885,-0.02469299966469407,0.035146214067935944,-0.2534286845475435,0.9790573068894446,0.7610814180225134,0.42629920691251755,-0.6065687318332493,0.6584274657070637,0.22196878073737025,0.17246113438159227,-0.9681137404404581,-0.5437028938904405,0.5582060595043004,-0.022622945252805948,0.028580490965396166,0.08067091275006533,0.6114274845458567,-0.8421921753324568,-0.8123116628266871,-0.36225033598020673,0.4642019639723003,0.5667343367822468,0.0991436280310154,-0.8599481470882893,-0.5767535734921694,0.2775494302622974,-0.5513130249455571,-0.10870194062590599,-0.8027486326172948,-0.04134021047502756,0.5398424523882568,0.5827333540655673,-0.8850880768150091,0.07188330590724945,0.47015370801091194,0.8077733241952956,0.3016292992979288,-0.30523983389139175,0.14789885375648737,-0.26929113175719976,-0.7660866384394467,0.7478396347723901,0.4307110640220344,-0.8577386392280459,0.316528775729239,0.2907205172814429,-0.7392472918145359,0.2800138257443905,0.3917010216973722,0.25116182770580053,-0.046393787022680044,0.6985251884907484,0.8266989523544908,-0.07728350395336747,0.293233301024884,0.1017142659984529,-0.7420644629746675,0.030895790085196495,-0.8157405708916485,-0.041978128254413605,-0.40701114013791084,-0.9442439782433212,0.7319432380609214,-0.9235362960025668,0.7411324647255242,-0.7977484236471355,-0.9475348121486604,0.21522639831528068,0.29690543981269,0.8031351906247437,0.8360726665705442,0.07191889081150293,0.6940666912123561,0.4526717592962086,-0.053727015387266874,-0.8391390512697399,0.1336758346296847,0.7130457917228341,0.12533119320869446,-0.8288590619340539,0.6503294128924608,0.9330555014312267,0.09933737432584167,-0.4707026178948581,-0.16707858676090837,0.44198809936642647,0.10588112007826567,-0.17554760538041592,0.9784476938657463,0.4661196288652718,0.7717590290121734,0.19149545906111598,-0.5749123990535736,-0.8496567727997899,-0.01971116429194808,0.1984326271340251,0.18146906839683652,0.9405515352264047,0.9509968985803425,-0.5213634693063796,0.7619172022677958,-0.5579530936665833,0.7146204151213169,-0.354118914809078,0.8183467667549849,-0.8962306347675622,0.6940658898092806,0.3399738743901253,-0.18767826864495873,0.10665216762572527,-0.9282216406427324,-0.3010133705101907,-0.3995940308086574,-0.6098358267918229,-0.32637222995981574,-0.09150107530876994,-0.8237879597581923,-0.2483911062590778,-0.20580780878663063,-0.1316632735542953,-0.22741249343380332,0.4210429401136935,0.5364610594697297,-0.6807684460654855,-0.5042175729759037,0.5289524272084236,-0.5332308379001915,-0.5969796599820256,-0.2763400957919657,0.22963112778961658,-0.905583527404815,0.6634277692064643,-0.5013827192597091,0.10693782987073064,0.33881348837167025,-0.3177635380998254,-0.8325516059994698,-0.8393439240753651,0.6032926263287663,-0.6835782448761165,-0.488817167468369,-0.9764693109318614,0.2236846978776157,-0.7499359562061727,-0.19924719724804163,0.3447542102076113,-0.681030091829598,0.24642950389534235,-0.6116707851178944,-0.9767541899345815,-0.26842271350324154,-0.39856406627222896,-0.5583595563657582,-0.6602943139150739,-0.06990627804771066,0.6469987398013473,0.15880967071279883,-0.3351761093363166,0.3093655100092292,-0.008310789242386818,0.07323448546230793,0.9157405979931355,-0.15403677569702268,-0.49761728243902326,-0.3106115208938718,0.4238978512585163,-0.0005368338897824287,-0.7259568381123245,-0.48406895343214273,0.12111809616908431,-0.5523902056738734,-0.8436699262820184,0.8771912567317486,0.7825498390011489,-0.050945430528372526,0.047367313876748085,0.609580956865102,0.14442180655896664,-0.2594821723178029,0.5715218116529286,0.45241551706567407,-0.09495426714420319,0.8092415118589997,0.128319441806525,0.6165970675647259,0.3475537025369704,0.4192919358611107,-0.9612813121639192,0.5855336938984692,-0.13701761327683926,0.3151351874694228,0.3919713762588799,0.18102802941575646,0.6314277769997716,0.8087081233970821,0.85000972263515,0.2653174647130072,0.8283342276699841,0.011895323637872934,-0.24635351169854403,0.24613288883119822,-0.7169143962673843,-0.18612181255593896,-0.273783135227859,-0.1515107057057321,-0.32221834687516093,0.6598902866244316,-0.4582841950468719,-0.611110380385071,-0.4427349413745105,0.14831196330487728,0.7516003772616386,0.5095977331511676,0.650499704759568,-0.3347398969344795,-0.505634281784296,0.5939095108769834,-0.05780468415468931,0.9925248245708644,0.13471827236935496,-0.26665349630638957,-0.6323153511621058,0.6255676932632923,0.9012144734151661,0.0008271173574030399,0.36415845016017556,-0.4827883909456432,0.4412281019613147,0.4033355424180627,-0.025396489072591066,0.030419804621487856,-0.4157782751135528,-0.7906128847971559,-0.32290317956358194,0.09029224468395114,-0.8344719796441495,0.30480787390843034,-0.5527958031743765,-0.4165989370085299,-0.25577019480988383,0.8524416317231953,-0.5902043269015849,-0.2386485729366541,-0.33933972427621484,0.9780727601610124,-0.5889158020727336,0.06343353167176247,0.019410199485719204,0.21626896923407912,-0.9407193185761571,-0.03947627590969205,-0.7578914426267147,-0.5555740781128407,0.34346166532486677,0.762905961368233,-0.6077053574845195,-0.49855881044641137,-0.8403383614495397,0.036851026583462954,-0.8915258664637804,-0.655899559147656,0.2594611858949065,0.32057711109519005,-0.2685170294716954,0.4901798749342561,0.008910427335649729,-0.1899953307583928,-0.3588395705446601,0.36583642521873116,0.6601692093536258,-0.41315270448103547,-0.07615198707208037,0.7532135788351297,0.8205183348618448,-0.6692515760660172,0.6784419431351125,-0.699107076972723,-0.481689827516675,0.9534920081496239,-0.42617797618731856,0.9530342747457325,0.4321716050617397,0.6127008874900639,-0.9362566405907273,-0.3190741827711463,0.7616024296730757,-0.7748686857521534,-0.21916629327461123,0.8809845573268831,0.5167573718354106,0.5393756981939077,0.07778952457010746,0.666041299700737,0.5341274212114513,-0.11258729500696063,-0.8607806977815926,0.6335113039240241,0.7461202582344413,0.9724537692964077,0.20358027191832662,-0.5290695554576814,0.7236692910082638,-0.4851825316436589,-0.3204060667194426,0.07630134234204888,0.12137634539976716,-0.7219819570891559,0.46477828407660127,0.3654031055048108,-0.4550777398981154,-0.5414914330467582,-0.6128060217015445,-0.7878773375414312,0.4965836056508124,-0.9230444994755089,0.6400900632143021,-0.40755905071273446,0.5755984298884869,-0.29638803005218506,0.5752602578140795,0.6207569688558578,0.7736572488211095,-0.06591947609558702,0.43806815007701516,-0.9976432812400162,0.5636891326867044,0.53609558660537,0.6224662512540817,-0.7126243151724339,0.12150219874456525,0.7132389107719064,-0.12040640646591783,-0.1859846543520689,-0.39923701994121075,-0.6783147524110973,-0.9753498821519315,0.1201506876386702,-0.5919825593009591,0.913093404378742,0.8676329087466002,-0.9440206144936383,0.9072024379856884,0.6343338256701827,-0.5718705225735903,0.02982503827661276,0.4155845153145492,0.4392566937021911,0.9042291836813092,0.010548052377998829,-0.41375443153083324,0.039434903766959906,-0.178705261554569,-0.7251614439301193,0.44727490888908505,0.8968170080333948,0.9880036269314587,0.8154757334850729,0.6533200154080987,-0.35080207884311676,-0.6230262527242303,0.18289967998862267,0.5823037032969296,-0.40420121932402253,0.037803180515766144,-0.31455668434500694,-0.23125461162999272,0.5351550239138305,-0.49679494462907314,-0.6619265875779092,-0.896361235063523,0.21145743457600474,0.7547508431598544,-0.8172327340580523,0.616426698397845,0.9118731282651424,-0.8352492684498429,-0.2840375751256943,-0.9804719425737858,0.6787026436068118,-0.022941213566809893,-0.06616836786270142,0.13835109630599618,-0.7772442847490311,0.9768684543669224,0.6956284758634865,-0.8864283319562674,-0.011959826108068228,0.5056952708400786,-0.2130852579139173,-0.8191007855348289,0.5764374784193933,-0.9711399832740426,-0.2896381914615631,-0.9409462348558009,-0.6441615596413612,0.4155009207315743,0.9416826874949038,-0.41448609763756394,-0.19557531597092748,-0.7823629844933748,-0.8135723699815571,-0.40025976579636335,-0.9630050165578723,0.33077708864584565,0.5788989388383925,-0.5191030795685947,0.06012543756514788,-0.7232684092596173,-0.8320839395746589,0.28185842745006084,-0.5345183978788555,-0.39160277508199215,0.6712354519404471,0.5187313947826624,-0.531771267298609,0.11198420030996203,-0.9900218830443919,-0.18126077577471733,0.28827216662466526,0.671422319021076,0.1028360528871417,-0.21854019118472934,0.5543456003069878,0.18297920189797878,0.7037066644988954,0.6658628676086664,0.5647637811489403,0.7565754074603319,-0.7642163713462651,0.4226423925720155,0.5551865408197045,-0.36736829578876495,-0.2996393064968288,0.0036170263774693012,-0.8563854517415166,0.9891075841151178,0.2400184809230268,0.7349351905286312,-0.5478658732026815,0.5150582990609109,0.6739744911901653,-0.03261879924684763,-0.6646267389878631,0.24250645888969302,-0.9636743166483939,0.10120280273258686,0.5929992524906993,-0.14263166952878237,0.84085638448596,0.6943534058518708,0.5189138711430132,-0.5786532894708216,0.12293041124939919,-0.33990138582885265,0.16071301698684692,-0.7422840064391494,-0.983694379683584,-0.9343679277226329,-0.9751124968752265,-0.2240592511370778,0.20084722805768251,-0.7508967975154519,0.15672780247405171,0.5732570709660649,-0.6516725886613131,0.39278682647272944,-0.2914095907472074,-0.0811818391084671,-0.9919075416401029,0.09924497222527862,0.14555915025994182,0.8116130991838872,-0.6855947780422866,-0.4749224539846182,-0.5581629811786115,0.2811823543161154,0.015108108054846525,0.8345182063058019,-0.5948581099510193,0.6871720151975751,0.4118110458366573,0.4266144218854606,-0.9656032999046147,-0.6429236652329564,-0.05239281803369522,-0.978028001729399,-0.20151947159320116,-0.9270945652388036,0.6332894465886056,0.7090738979168236,0.1065812143497169,0.35776424314826727,-0.43597262352705,0.9971608435735106,0.7434730315580964,-0.9522224026732147,0.4375322391279042,0.7410587938502431,-0.8839918975718319,0.6029414283111691,0.5769535438157618,0.16016035061329603,-0.5533674047328532,0.873399508651346,-0.9089644192717969,-0.766517651733011,-0.7150931181386113,-0.14192311000078917,-0.23736091749742627,-0.30099028442054987,-0.9381043203175068,0.7496010754257441,0.3145505557768047,0.18572493083775043,0.4670101166702807,-0.16228118864819407,-0.4274514685384929,-0.35019871639087796,-0.7053819973953068,-0.8925160500220954,0.43887656135484576,-0.876856236718595,-0.8676980109885335,0.6700982004404068,-0.9888715418055654,-0.5708972192369401,0.9361559012904763,-0.07248843740671873,0.4569171220064163,-0.23634268948808312,0.20948590757325292,0.39298962289467454,0.9268403300084174,0.4622935331426561,-0.011875545606017113,0.6395311770029366,-0.043459429405629635,-0.447362897451967,0.3322452697902918,-0.018537867348641157,-0.93726387899369,-0.7258883062750101,-0.7828125054948032,0.1993624186143279,0.07698049815371633,0.07690056506544352,0.7005428019911051,-0.33844951493665576,-0.18884630501270294,0.13629367528483272,-0.5153573388233781,-0.3584251799620688,0.3608827996067703,0.783394118770957,0.6810636552982032,0.9020141982473433,0.18005964858457446,0.16063078958541155,0.010883990209549665,-0.8714536866173148,-0.27907458832487464,0.34792694356292486,0.916768831666559,0.25551885971799493,0.4447472048923373,-0.8899352964945138,-0.10903398087248206,-0.07447104901075363,0.42321551544591784,0.747950928285718,-0.8851680150255561,-0.48895356291905046,0.1904511684551835,-0.925590509083122,0.5995387053117156,0.21374852396547794,-0.18079766165465117,-0.510365201625973,-0.14297693688422441,-0.7600545370951295,-0.37374222883954644,0.5488357204012573,0.5834414367564023,0.8374012801796198,0.045282598584890366,0.1463742977939546,-0.789787607267499,0.9199555641971529,-0.023652227129787207,0.22198824398219585,0.6267530485056341,0.8844371791929007,0.8234538896940649,-0.7297377199865878,0.5462556215934455,-0.3640847112983465,-0.736999751534313,-0.33188903238624334,0.7737610982730985,0.7805139971897006,0.22946849884465337,-0.7935041473247111,-0.34789392491802573,-0.48644811287522316,-0.817900178488344,0.7843236713670194,-0.9585866928100586,0.6775705190375447,0.490580087993294,0.7295808922499418,-0.6199848712421954,0.8356189914047718,-0.749330114107579,0.8104811906814575,0.8145085885189474,-0.30248388182371855,-0.868830559309572,-0.40773667534813285,-0.37197005143389106,-0.9377165865153074,-0.15733723808079958,0.3015347672626376,0.10447206953540444,-0.5656583160161972,0.2741563580930233,0.9276987384073436,-0.8192022913135588,0.5034010573290288,-0.7013238198123872,-0.10212910594418645,0.19909500190988183,-0.363937278278172,-0.9753334987908602,-0.8574895956553519,0.10687632393091917,-0.011639785021543503,0.5437095779925585,-0.4182716370560229,-0.6387995481491089,0.31130488961935043,-0.24786613089963794,-0.9077758817002177,-0.962750839535147,-0.22526079788804054,-0.5287464936263859,-0.7195642464794219,-0.3444912047125399,-0.8091218280605972,-0.19394174683839083,0.05466388864442706,0.019197179470211267,-0.775007825344801,-0.660537404473871,-0.0011288919486105442,0.9335429919883609,-0.7715454078279436,-0.5290458695963025,0.7012742147780955,-0.9610011395998299,-0.920716071035713,0.7479103468358517,-0.11157643981277943,-0.8449106295593083,0.8798666191287339,-0.022935462184250355,-0.5306164030916989,-0.4048111601732671,0.436523559037596,0.21172827435657382,-0.24783347267657518,-0.5411479342728853,-0.48453217605128884,0.2719488595612347,0.8891256996430457,-0.023507508914917707,-0.5267136711627245,-0.47285522101446986,0.39126898208633065,0.9668216872960329,0.5430085510015488,0.3530991654843092,0.21080281399190426,-0.2222680556587875,-0.012465746607631445,-0.15964243980124593,-0.47569128684699535,-0.9262901954352856,-0.3765956903807819,-0.7804924314841628,0.06874743523076177,-0.7815426411107183,-0.7250132490880787,0.7065183995291591,-0.4998838980682194,0.4622771991416812,-0.8688330380246043,0.6907171769998968,0.3852006820961833,-0.25202287919819355,-0.9371088314801455,0.01854577660560608,-0.07980931410565972,-0.4686708436347544,0.6015833579003811,-0.8820204245857894,-0.6520798304118216,0.09454161114990711,-0.4322418780066073,0.3151571163907647,-0.34284258959814906,0.5100460941903293,0.34122486039996147,-0.8460272438824177,0.8918968983925879,-0.20112246787175536,-0.36287164594978094,-0.7390211457386613,-0.8468533935956657,-0.17962838150560856,-0.8355534793809056,-0.3713223342783749,0.39772048546001315,-0.7145239394158125,-0.12742483895272017,0.953124622348696,0.14620772376656532,-0.19832109892740846,0.7765104589052498,-0.4258722783997655,0.1358173219487071,-0.438592332880944,-0.27092509623616934,0.9413481983356178,-0.6181599958799779,-0.6694472776725888,-0.9069404010660946,0.17892565811052918,-0.8130055512301624,0.3543701749294996,-0.9806349314749241,-0.6616018158383667,0.09594099642708898,0.5070318449288607,-0.9727073614485562,-0.7867796458303928,0.04562287870794535,0.29729274241253734,0.44988676626235247,-0.026079774368554354,0.6224407660774887,-0.2273246105760336,0.5901881833560765,-0.533847329672426,-0.2508826432749629,-0.035761186853051186,0.21932540647685528,0.7574493028223515,-0.6593693047761917,0.440326155629009,0.918972953222692,-0.8498308439739048,-0.7519603734835982,0.7724887803196907,-0.013393354136496782,0.4755926872603595,-0.9379323502071202,-0.014067006763070822,0.84634979814291,-0.2029976057820022,-0.15015439223498106,0.7187300119549036,-0.23468343168497086,-0.83695362880826,0.17240268038585782,-0.6794131486676633,-0.41012389585375786,0.8971794745884836,0.5221878318116069,-0.35869455337524414,-0.6385313849896193,0.737432146910578,-0.44038389436900616,0.5254318513907492,-0.21867548022419214,0.34580771066248417,-0.47413942869752645,0.8651615814305842,-0.3454488990828395,-0.9611986228264868,0.24922127230092883,0.8272066591307521,-0.8485439461655915,0.006115236785262823,-0.4138317075558007,0.8674982851371169,-0.14517898485064507,-0.4860740713775158,-0.8270383509807289,-0.16369113605469465,-0.31340925861150026,-0.7771198293194175,-0.9491854002699256,0.8557315012440085,0.09254572680220008,0.9113041195087135,0.9980106563307345,-0.8629340985789895,0.5567297516390681,0.6070023984648287,-0.9881287538446486,-0.4198577315546572,0.17297144094482064,0.6302614994347095,-0.009874712210148573,0.17743930639699101,0.24661992257460952,-0.11388654867187142,0.694271435495466,0.7854953589849174,-0.6702358364127576,0.4045713567174971,0.6020470475777984,0.9995820499025285,0.1207678490318358,-0.0870926845818758,0.4445054605603218,-0.999674535356462,-0.4942702534608543,0.37503353832289577,0.1465118662454188,0.8031418360769749,-0.7313855793327093,-0.5804944457486272,-0.8582935803569853,0.2341036405414343,-0.6039132070727646,-0.6240107310004532,0.007743308786302805,0.4804853452369571,0.05020229425281286,0.15212481189519167,-0.8719598022289574,0.5051620928570628,0.30354547314345837,-0.15187920117750764,0.330190263222903,0.4782189796678722,0.12076019821688533,0.05737504316493869,0.8973851818591356,0.04222187865525484,0.7038388550281525,-0.299873317591846,-0.8016266636550426,0.9979219287633896,0.20634649274870753,0.9447569330222905,0.16808533109724522,0.10335898399353027,0.4033702975139022,0.2462790971621871,0.8528291946277022,0.08591415220871568,0.49948039650917053,0.5799418771639466,-0.19396523339673877,0.5738173546269536,0.7168546244502068,0.4746402367018163,-0.21116495411843061,0.26288261730223894,0.12714890390634537,0.9623694666661322,-0.12244674190878868,-0.4756852905265987,0.11964107025414705,0.5201933300122619,-0.9207351682707667,0.7708321618847549,-0.45927722519263625,0.6310562323778868,0.19681819388642907,0.7018243102356791,0.11710023134946823,-0.187190945725888,-0.7570773493498564,0.4364069881848991,-0.7122950488701463,0.125235662329942,-0.06895638862624764,0.2144121970050037,-0.773956187069416,0.49962757294997573,-0.7288087094202638,0.15513220615684986,-0.6975818471983075,-0.005761639680713415,0.3989104935899377,0.37652613688260317,-0.18070587096735835,0.9723760890774429,0.19154882477596402,0.49403026793152094,-0.7763421409763396,-0.8216837802901864,-0.06967314193025231,0.4568843748420477,-0.18511139787733555,-0.28349202405661345,-0.7703340277075768,0.02407977683469653,0.8720661457628012,0.7042033993639052,-0.032506626565009356,0.41439121263101697,0.38559969794005156,0.7606068467721343,0.972568444442004,0.2587323267944157,0.9058123133145273,-0.8911404460668564,-0.15566642675548792,-0.8534873318858445,0.40770384948700666,-0.1600671815685928,0.42394406255334616,0.38855715189129114,-0.8795764897949994,0.9681680146604776,-0.6735098087228835,-0.5573734226636589,-0.7745359498076141,-0.33067693654447794,-0.7406529258005321,0.3020070348866284,0.28531053848564625,0.42723695933818817,0.48538632970303297,0.8545246492139995,0.8165422603487968,-0.19618719071149826,0.18487781891599298,0.6563050975091755,-0.8869145261123776,0.033230134285986423,0.6885867277160287,0.44211461720988154,0.3039875593967736,-0.662265787832439,0.6357331653125584,-0.20627863984555006,-0.9592608897946775,-0.42912383703514934,-0.1202670494094491,-0.9605861837044358,-0.2666571708396077,0.2937844190746546,0.13390427827835083,-0.9840674926526845,-0.32790769217535853,-0.38490246841683984,-0.036397102288901806,-0.12967262277379632,-0.3146735201589763,-0.29650263069197536,-0.502986223436892,0.14960728352889419,0.7681862632744014,0.877187900710851,-0.1758311470039189,-0.5833252845332026,-0.08922218577936292,-0.6394318048842251,-0.4733820101246238,0.11180492397397757,0.727638051379472,-0.022980920504778624,0.2144603319466114,-0.25879438733682036,-0.5203353646211326,0.6337903277017176,-0.3847949947230518,-0.955249032471329,0.5395820802077651,-0.710112052038312,0.5320001184009016,0.29370773769915104,-0.8807978965342045,-0.5911662075668573,-0.9996862765401602,0.29772207932546735,0.6729927994310856,0.6331998924724758,-0.9910003347322345,0.8079218817874789,0.837388888001442,0.5990392295643687,0.9248323123902082,-0.1999226096086204,0.08702527265995741,0.5558958579786122,-0.16395508870482445,-0.17579123750329018,0.948049096390605,-0.5094413785263896,-0.7560056652873755,0.1813143822364509,-0.10308911837637424,-0.8202476846054196,0.21426315465942025,-0.0071806591004133224,-0.325735354796052,0.8532959376461804,0.6453219372779131,-0.9792281189002097,0.2129744910635054,-0.747169200796634,0.2768583935685456,-0.09512870013713837,-0.4892399818636477,-0.34443947626277804,-0.13916876958683133,0.43572705797851086,-0.6525783254764974,-0.9423321848735213,0.010781786404550076,0.5511707845143974,0.06237595481798053,0.8596682297065854,0.40221982495859265,-0.8375436458736658,0.24385392852127552,0.909452382940799,-0.08034314727410674,-0.27090355567634106,-0.7829474532045424,0.8003953946754336,-0.44771666964516044,-0.1286086174659431,0.19082546420395374,-0.22256267117336392,0.8794177114032209,-0.0792476274073124,-0.8504632418043911,0.33607850270345807,0.517754758708179,-0.8324365168809891,-0.422561673913151,-0.9307952523231506,-0.7230551186949015,-0.763092721812427,0.23206571536138654,-0.852702705655247,-0.6103608291596174,-0.8217993718571961,-0.4979265225119889,0.9311435539275408,-0.7873059422709048,-0.15731949219480157,-0.9544866527430713,0.3550769123248756,0.3038202435709536,-0.4402406425215304,-0.7018521339632571,0.967288242187351,-0.4726565033197403,-0.5416910066269338,0.4859685222618282,0.9844594141468406,-0.25744227692484856,-0.12667880672961473,0.8830866734497249,-0.06543944450095296,0.6207437613047659,-0.15711645176634192,0.06319680577144027,0.23860757797956467,-0.7968563018366694,0.5046787075698376,-0.10827261954545975,-0.44138702284544706,0.28968512173742056,0.8394794105552137,0.1846250924281776,-0.969137994106859,-0.547523595392704,0.11603501392528415,-0.5503704939037561,-0.7432458740659058,-0.22415371518582106,-0.11897638253867626,-0.5124969710595906,-0.19626821903511882,-0.8294880059547722,0.5943791070021689,-0.7174254115670919,-0.38050008239224553,-0.4197999285534024,0.46097329119220376,-0.4224335770122707,-0.23426884459331632,0.28498220443725586,-0.4381104614585638,0.3055055281147361,0.8655742132104933,-0.33764295652508736,-0.3263710932806134,-0.9316168199293315,0.48538221046328545,0.7991464319638908,-0.47378967655822635,-0.15348297217860818,0.8594125369563699,-0.1422726809978485,0.6823860281147063,0.7790000173263252,0.1068358919583261,-0.83875054679811,-0.07207161886617541,-0.8350513321347535,0.5159161142073572,0.2672790358774364,0.7343170661479235,-0.23909739078953862,-0.01818865118548274,0.06043165037408471,-0.7981790439225733,-0.9269873672164977,0.5277695348486304,-0.6189228179864585,-0.9898314937017858,0.6547230635769665,-0.9253792343661189,-0.6955877956934273,0.37672151206061244,0.4515739344060421,-0.09774870797991753,-0.25643894309177995,-0.21150944102555513,-0.6521536111831665,0.12050911644473672,0.32150568161159754,-0.07595236739143729,0.4020172287710011,-0.04404380265623331,-0.6694526905193925,-0.04572412744164467,0.07795748859643936,-0.8707112604752183,0.3649642327800393,0.3427780414931476,-0.5785551387816668,-0.10205080965533853,0.0552424225024879,-0.8185640396550298,0.2837489629164338,-0.7411785437725484,0.4463128331117332,-0.5464316597208381,0.30357859237119555,0.6918393247760832,-0.2294768593274057,-0.005396051798015833,-0.03592657530680299,-0.5992756779305637,-0.15153301693499088,0.7381560346111655,-0.43227592715993524,0.8337760618887842,0.09908175561577082,-0.3687745318748057,0.4628844750113785,-0.6521587362512946,-0.977719534188509,0.8075791504234076,0.0899914656765759,0.8231093110516667,0.3240318764001131,0.9856631546281278,0.38557319017127156,0.31596989277750254,0.49884231807664037,-0.9010522309690714,0.8243588339537382,-0.07651501568034291,0.010957603808492422,-0.037374334409832954,0.37303407210856676,-0.9258277984336019,0.5163570288568735,0.8228836413472891,0.841750031337142,-0.8561710063368082,0.2588906795717776,-0.2627542447298765,0.3154706140048802,0.09872419387102127,-0.42692886712029576,-0.9427929292432964,0.9243275225162506,-0.24449399346485734,-0.28262789780274034,-0.15968727180734277,0.8453053114935756,0.1758178500458598,-0.2923209606669843,-0.27049765503033996,-0.15281314961612225,-0.020353051833808422,-0.7890129676088691,-0.8804484279826283,0.6153141623362899,0.18952547619119287,0.2098886608146131,0.8900092169642448,0.6407677233219147,0.35227620834484696,-0.9740845984779298,0.6690534842200577,0.5368642779067159,-0.49020718736574054,-0.5662952405400574,0.3329494893550873,-0.0328094158321619,-0.6159254424273968,0.7094202991575003,-0.8800606271252036,0.9568904456682503,-0.5649349447339773,0.2205163431353867,0.9997462132014334,0.6182996826246381,-0.7571665430441499,-0.5340300635434687,0.031722757034003735,-0.22436273796483874,0.79473193641752,0.8876535319723189,-0.5493024201132357,0.8570455368608236,-0.48646211670711637,0.3873264309950173,0.6057836255058646,0.4664875864982605,-0.21077444404363632,-0.04709611041471362,-0.6962186088785529,0.054795469623059034,-0.27635264908894897,-0.7592431879602373,0.625657498370856,-0.41822139685973525,0.06324309902265668,-0.28368335543200374,0.9088255763053894,-0.6713720830157399,-0.4655100144445896,-0.23939439421519637,-0.8023330019786954,-0.5432020919397473,-0.22581129986792803,-0.4731868663802743,-0.7187686758115888,0.2702936828136444,-0.6377166137099266,-0.08864439791068435,-0.7349582435563207,0.39886068226769567,-0.8742352691479027,0.5838410127907991,0.27397772995755076,0.4151257108896971,0.830043320544064,-0.4344374663196504,-0.7716578487306833,0.3490813374519348,0.0071121626533567905,-0.507028030231595,-0.37128100730478764,-0.7398179080337286,-0.5134948706254363,-0.30743646854534745,-0.5880900463089347,0.7480497108772397,0.8080614553764462,0.16828845161944628,0.487878976855427,-0.7677119672298431,-0.32178702438250184,-0.15216567926108837,-0.7293879794888198,0.19435578444972634,-0.41066459845751524,-0.5131765240803361,-0.3753545042127371,0.27836556266993284,0.9059699238277972,-0.38887537689879537,-0.4890000745654106,-0.7128630797378719,-0.8969305315986276,-0.8200821517966688,-0.4279916426166892,-0.7933066003024578,-0.9083614251576364,0.5763683384284377,0.7269571661017835,-0.38747673388570547,0.755877104587853,0.2817802424542606,-0.5788248130120337,-0.4337282865308225,0.45439765648916364,-0.8896954227238894,-0.323959656059742,0.47312317276373506,-0.2265676287934184,0.36433289060369134,-0.7202973999083042,0.6000683475285769,-0.29319925513118505,0.47226789547130466,-0.9846454947255552,-0.7672799089923501,0.6255076783709228,-0.44584753550589085,-0.523878994397819,-0.160177790094167,-0.6186546133831143,-0.832677808124572,0.1729453271254897,0.03279073629528284,0.32975614815950394,-0.08433748595416546,0.03315646294504404,-0.7249189089052379,-0.7359486683271825,0.6893777148798108,-0.432222421746701,0.3648898359388113,-0.3542424258776009,0.43022380908951163,0.9522182266227901,0.5563313639722764,-0.8866309570148587,-0.20089968852698803,-0.48837184626609087,0.8919847398065031,-0.7543176021426916,-0.3194851013831794,-0.21282400283962488,-0.23730482440441847,-0.8045387170277536,0.3976246453821659,-0.16800458868965507,0.6973211467266083,0.11840660823509097,-0.419186657294631,0.038708118721842766,0.7133435308933258,-0.6799070634879172,0.3155762115493417,-0.3278328306041658,-0.6778193274512887,0.9840986565686762,0.3594087683595717,-0.15446897689253092,-0.9115757890976965,-0.44124299520626664,-0.25295534590259194,0.1530194994993508,0.12337675876915455,-0.03614231012761593,0.49155267467722297,0.5873984955251217,-0.6033488782122731,0.009651206899434328,0.2069983258843422,0.8007849925197661,0.8895370424725115,0.8469560667872429,-0.5225065150298178,-0.3902300628833473,-0.10202813288196921,-0.3172992574982345,-0.3417865252122283,0.18835644470527768,-0.2642847392708063,-0.7014557984657586,-0.844050673302263,0.39813792053610086,-0.300395917147398,-0.2835492859594524,0.47395777329802513,0.6708993990905583,-0.04002822330221534,0.6630289671011269,-0.9749868339858949,0.22531476570293307,-0.7538159214891493,-0.3324116999283433,-0.09991917992010713,0.4398997235111892,-0.13099938724189997,0.6774905929341912,-0.8046730468049645,0.4142791600897908,0.1774300578981638,-0.1003581527620554,-0.9951452324166894,0.3993043899536133,-0.7920623221434653,-0.9366199066862464,-0.11080585792660713,0.5269863791763783,0.9763917229138315,0.18523484887555242,0.11130212992429733,-0.7248371369205415,-0.45519539481028914,-0.41202393686398864,0.5214231270365417,0.5808792319148779,0.9230938837863505,0.9759027543477714,0.4094294854439795,0.1811579721979797,-0.8082249267026782,-0.9376737102866173,0.2991926232352853,0.8760797469876707,0.6268235691823065,-0.23843990871682763,0.8839924405328929,0.3847204018384218,0.8008241802453995,0.5939656458795071,-0.7653483315370977,-0.08522825175896287,-0.8158459709957242,0.6385236112400889,-0.19933334877714515,0.599790720269084,0.24584668688476086,-0.18376774340867996,0.7162770829163492,0.5711476486176252,-0.3427330395206809,0.048600013833492994,-0.31761294789612293,-0.5909545528702438,0.3275048895739019,-0.4483167598955333,0.05353398574516177,0.42417968390509486,0.2832224131561816,-0.43381958082318306,0.4780193460173905,0.7156760389916599,-0.912619817070663,0.5774308359250426,-0.7258392740041018,-0.0831614569760859,-0.10886056302115321,-0.40583651093766093,0.2463863343000412,0.1030850657261908,0.18877048371359706,0.07593767670914531,-0.8766794158145785,-0.8770209215581417,0.41706718131899834,-0.28914152877405286,-0.3466401011683047,0.4486096566542983,0.9939407738856971,-0.7522849095985293,0.5930818463675678,-0.7754885060712695,-0.8748539010994136,0.7733459901064634,0.7930092504248023,-0.7153329779393971,0.6688148933462799,-0.9719105204567313,0.9192294459789991,-0.2990373559296131,0.472483086399734,0.6921516093425453,-0.8106220387853682,-0.903986110817641,0.427423934917897,-0.866323184221983,-0.7162420367822051,0.5957246641628444,0.7928405739367008,-0.48764498019590974,-0.06525028171017766,-0.2602008036337793,0.3464498398825526,-0.48186302464455366,-0.2706419671885669,-0.8712345925159752,-0.23063003411516547,-0.5676219500601292,0.35207270039245486,-0.16260237153619528,0.7057930030860007,0.4371293634176254,-0.8976852977648377,-0.2778270938433707,-0.8557715606875718,0.2366974870674312,-0.07847787067294121,-0.562961102463305,0.22870857315137982,0.5238799569196999,-0.3684071064926684,0.05995950195938349,-0.23052175901830196,0.15347361145541072,0.5730209816247225,-0.2644721744582057,-0.1386270383372903,0.08831671252846718,0.8119630552828312,0.41591173224151134,-0.048154390417039394,0.7820447529666126,-0.2660080320201814,-0.6595315476879478,-0.8390701315365732,0.4939527097158134,-0.015864261891692877,-0.1378682921640575,-0.6711154221557081,0.7850358355790377,0.6618129429407418,0.34750922210514545,-0.6414267402142286,-0.6404078900814056,-0.22405916033312678,-0.04275827948004007,-0.397858661133796,0.9194447994232178,0.3233123617246747,0.14389602234587073,-0.8034217413514853,-0.615537631791085,-0.8016164447180927,0.6694422927685082,-0.9046471854671836,0.49733072938397527,0.21108621126040816,-0.6424472709186375,-0.773211888037622,-0.3804682372137904,0.80066590430215,0.6951032420620322,-0.31079757073894143,-0.765241140499711,0.8662243480794132,-0.7582387356087565,0.26506343204528093,-0.418292036280036,0.14418475748971105,-0.15737385721877217,0.34200765984132886,0.7345819841139019,-0.3574914149940014,-0.2654522736556828,0.28177174227312207,-0.31565681053325534,0.6813049167394638,0.2110430933535099,0.9831159585155547,-0.8014628225937486,-0.15435153618454933,0.4382375655695796,0.9862214741297066,0.6803710544481874,-0.8920593871735036,0.6360346907749772,-0.6608958528377116,0.1557113560847938,-0.9009022321552038,-0.17503938730806112,0.5758991930633783,0.08091579331085086,0.4881229931488633,0.9910595789551735,0.3274498456157744,0.6499232384376228,0.24780229898169637,-0.5442170659080148,-0.3825271357782185,0.5928171467967331,-0.9566805488429964,-0.6039203084073961,-0.8411425878293812,0.4813735680654645,-0.3250692607834935,0.6477853101678193,-0.44039838621392846,-0.5912420842796564,0.22390408627688885,0.5944971172139049,-0.3441196968778968,0.1071944604627788,0.7032993747852743,0.8083518287166953,-0.920030327513814,-0.08827018039301038,-0.9345300169661641,-0.22511676093563437,0.4820131598971784,0.18101948453113437,0.11708902334794402,-0.8844542629085481,-0.8673180541954935,0.22115298453718424,0.988732653670013,0.0810627662576735,0.6961663328111172,0.4495307835750282,0.21314170910045505,0.4220471139997244,0.35236729541793466,0.2682167962193489,-0.599963556509465,0.3334430125541985,-0.9670078665949404,0.8844385407865047,-0.4189610779285431,0.8009412898682058,0.04336242750287056,-0.5707552875392139,0.6917145908810198,0.5247173164971173,0.6549223042093217,-0.5157650373876095,-0.25854585273191333,0.645733954384923,0.5856925500556827,-0.14122191770002246,-0.3178821816109121,-0.5200555277988315,0.7921893163584173,-0.7551695858128369,-0.8219768302515149,0.5659894412383437,-0.4074122975580394,0.2536795795895159,0.25642161536961794,0.7949038045480847,0.29535327665507793,-0.6458866517059505,0.3650695304386318,0.6588871302083135,0.3531615515239537,0.4204987436532974,-0.201418983284384,-0.18780805636197329,-0.1647326205857098,0.11746712867170572,0.7656479179859161,-0.058050386141985655,0.9431530111469328,-0.9230815949849784,0.10018252860754728,0.297871723305434,0.1469479827210307,0.422983190510422,-0.4276203881017864,0.34903425676748157,0.46021600905805826,-0.5905267181806266,0.8087887447327375,0.28299893299117684,-0.5418143435381353,-0.7618433190509677,-0.9853747729212046,-0.4690027618780732,0.6683055674657226,-0.5115313492715359,0.8559839753434062,0.3541760426014662,0.4063502005301416,0.7765513840131462,-0.7127674231305718,-0.5756428181193769,-0.17241815431043506,-0.23438907088711858,-0.6220650388859212,0.6000030762515962,-0.5281396033242345,0.5753814275376499,0.04391762334853411,0.6322235851548612,0.9690470644272864,-0.8308755294419825,0.9564401311799884,-0.3358155516907573,-0.37482540821656585,0.24513800721615553,0.7595936711877584,0.26233957475051284,0.7861519926227629,0.9047575164586306,-0.4302156064659357,0.008400747086852789,-0.5253328196704388,0.6081071966327727,0.10412598727270961,0.3195017948746681,-0.6799544645473361,0.3382501173764467,-0.9157678973861039,0.5082808062434196,0.9796005659736693,-0.6038777274079621,-0.046678179409354925,-0.6798727004788816,-0.10240266704931855,0.08408103371039033,-0.9583589341491461,0.6096540368162096,-0.6290377550758421,0.8164186286740005,0.4654002729803324,0.20591257698833942,-0.8478580750524998,-0.7493836297653615,-0.6561677632853389,0.10915759485214949,-0.7431516693904996,0.39737436501309276,0.640535794198513,-0.8056368520483375,0.20224184589460492,-0.8045423589646816,0.465558220166713,0.9914386691525578,-0.95971245970577,-0.716172119602561,-0.3837070595473051,-0.27487932378426194,0.7878041579388082,0.8259139768779278,-0.9804461752064526,0.3241298384964466,0.42803723458200693,0.0007359241135418415,-0.05239531956613064,0.2928420528769493,-0.6673335563391447,-0.8296558447182178,-0.21634575771167874,-0.17585109313949943,0.6578627293929458,-0.29120612516999245,-0.2288753092288971,-0.0247739776968956,-0.9838820267468691,0.20284761069342494,-0.19619470741599798,0.33952783420681953,0.08099747588858008,0.15691090561449528,-0.0526518989354372,0.6309215114451945,0.4936699070967734,0.7936186920851469,-0.344038219191134,-0.4201977183111012,0.348259880207479,0.2597784218378365,-0.17542798444628716,0.2184102451428771,0.48223282350227237,-0.305292961653322,-0.09315085923299193,-0.14816794777289033,0.4340889691375196,0.02110462076961994,0.23390230257064104,0.944871568121016,0.03338148258626461,-0.9552881387062371,0.1357264183461666,0.7925372687168419,0.7898857668042183,-0.2691666381433606,0.38489769492298365,0.09085001051425934,-0.4401296330615878,0.33307009655982256,0.045408342964947224,0.09744200157001615,-0.4440180449746549,-0.37200301280245185,0.29887486062943935,-0.7625107448548079,0.2688644458539784,0.6768631655722857,0.05174124799668789,-0.17961304681375623,0.7119969571940601,-0.9104328406974673,-0.34555261489003897,0.7262967778369784,0.29178875172510743,-0.7988462620414793,-0.9528670297004282,-0.22428823914378881,-0.14266569772735238,0.39027446834370494,0.9845324922353029,-0.4904110566712916,0.7398470970802009,0.4771883231587708,0.5881141512654722,0.8123624636791646,-0.1960592526011169,0.6440310468897223,-0.385538452770561,-0.1762364604510367,-0.6295119863934815,0.1015161401592195,-0.7843473237007856,0.8103096531704068,0.9899567705579102,0.61491359770298,0.65687027387321,0.9270178601145744,-0.8055034708231688,0.07071523182094097,-0.41616268269717693,-0.15052465349435806,-0.7441924442537129,0.06982975173741579,0.8733354429714382,0.5967793213203549,-0.49244799511507154,0.6241047531366348,-0.06183975329622626,-0.5868832245469093,-0.6807803194969893,0.2018294958397746,-0.4090370466001332,-0.26947202486917377,-0.8563783471472561,-0.5030348794534802,-0.40098742116242647,0.10034317336976528,-0.9253276404924691,0.7524226596578956,0.3195202606730163,0.8021061304025352,0.8610849874094129,0.9293944514356554,-0.14330627210438251,-0.5695639131590724,-0.31447680620476604,0.30782806826755404,0.5960130267776549,0.5445825159549713,0.5045101139694452,0.019850217271596193,0.8904353971593082,-0.8766970606520772,-0.9056613259017467,0.6344136972911656,0.7532299105077982,-0.09321338310837746,-0.6314814970828593,-0.517481304705143,0.12018511816859245,-0.42334432108327746,0.11720834113657475,0.8731902847066522,-0.6098398379981518,0.432188403327018,-0.14882706804201007,-0.5158282606862485,-0.6180705353617668,0.14154199557378888,-0.10648237355053425,0.10139621375128627,-0.6536855068989098,-0.9569804980419576,0.642071139998734,-0.20424255868420005,-0.6608381420373917,-0.42915658093988895,-0.15004355739802122,-0.5096193798817694,-0.5522090536542237,-0.11880184663459659,-0.5348139796406031,-0.0719181401655078,-0.7110099396668375,-0.6803468349389732,-0.9943001922219992,0.9979992657899857,-0.7467538863420486,0.49226807057857513,0.792410546913743,-0.5315805408172309,-0.6255635744892061,0.762794750276953,-0.9424470416270196,-0.4844840532168746,-0.06847842037677765,-0.47077692532911897,0.9211424845270813,-0.9991153138689697,-0.6068109390325844,-0.8294394249096513,0.13524497346952558,0.09281551139429212,0.7289286176674068,-0.12462748028337955,-0.4431067588739097,0.4671908784657717,-0.8715545851737261,0.7724094036966562,0.5521606388501823,0.8137049372307956,0.3806554772891104,-0.900421698577702,0.5277721052989364,0.8069439977407455,-0.5569324460811913,0.909562430344522,0.03559938911348581,0.17150934226810932,-0.8564013410359621,-0.4176279720850289,-0.4341885820031166,-0.6751848454587162,0.6430996041744947,-0.3336574910208583,0.9057277143001556,0.6782975890673697,0.12388416146859527,-0.2524259388446808,0.24437480047345161,0.16914185788482428,0.6110999151133001,0.6775080314837396,0.040504829958081245,-0.20624804915860295,0.6720779347233474,-0.36347548803314567,0.9950892715714872,0.5975089375860989,-0.4433823563158512,0.79593287082389,-0.7505765235982835,0.7255297959782183,0.8633983973413706,-0.9452744033187628,-0.7136823879554868,-0.8530674953944981,0.4139318969100714,-0.9166608904488385,0.8495011869817972,0.38027728302404284,0.10852266009896994,-0.8925731349736452,-0.854696040507406,0.9534125090576708,0.8484052764251828,0.5436788280494511,-0.7310505341738462,0.993570925667882,0.7852808539755642,0.36372271412983537,-0.6397603019140661,0.9264685367234051,-0.07271978538483381,-0.861597100738436,-0.018210460897535086,-0.7579091093502939,-0.48518457217141986,0.1394595163874328,0.08222482772544026,0.9463011678308249,0.9635164602659643,0.39388144249096513,-0.5440682163462043,0.18893588008359075,0.8404088579118252,0.08752605738118291,-0.05459067225456238,-0.9910317314788699,-0.9105122531764209,0.13682900834828615,0.692669621668756,0.37254460202530026,-0.42201198311522603,-0.3047127998434007,-0.9732590029016137,0.6462513920851052,-0.7943624923937023,-0.9439408583566546,0.25028988951817155,0.02934852195903659,0.8489387622103095,0.5519033744931221,-0.0588208083063364,-0.3426099051721394,-0.11090983590111136,0.8384367334656417,0.11093398975208402,0.05379972653463483,0.057290975004434586,0.565408909227699,-0.9014261434786022,-0.6299789217300713,-0.35808607563376427,-0.5845951251685619,0.5492704454809427,-0.16448271414265037,-0.4305762192234397,-0.382161034271121,0.0323477596975863,-0.861159875523299,0.7255387185141444,-0.15635407902300358,0.9614247241988778,-0.7706740056164563,0.9839589884504676,0.6144596533849835,0.11671407846733928,0.9138323664665222,-0.9685855866409838,-0.9346542796120048,0.6286344514228404,0.4293252322822809,0.4248300576582551,-0.8775842203758657,-0.32089667255058885,-0.07029590010643005,-0.5615340559743345,0.2619147873483598,-0.9577954313717782,0.6379475435242057,-0.334349503275007,0.43057918595150113,-0.9624891802668571,-0.2557064415886998,0.6305442950688303,0.8280197205021977,0.7135598668828607,-0.43678934359923005,0.15695253293961287,0.9445385993458331,0.5852606161497533,0.9475844539701939,0.8485697526484728,0.9865763206034899,0.23672714456915855,-0.5288425795733929,-0.7332446482032537,-0.8272455278784037,0.4096710095182061,0.7707638838328421,-0.22987145138904452,-0.3932178933173418,0.8624555966816843,0.6404146500863135,0.5723717981018126,0.6886194599792361,0.07918796269223094,0.19223060738295317,-0.4761424595490098,0.3080868311226368,-0.03643731400370598,-0.7565173446200788,0.06909167673438787,0.6925326804630458,-0.5678255041129887,0.9930556579492986,-0.4897574344649911,0.08752067666500807,0.3384369118139148,-0.04025956243276596,0.776201955974102,-0.9177820002660155,0.26029235776513815,0.0843681232072413,0.742675369605422,-0.8699424634687603,0.15565296029672027,0.39247806556522846,-0.21485039219260216,0.20691426331177354,0.7378127733245492,-0.47843755688518286,0.5995991118252277,0.7266254276037216,-0.4129629423841834,-0.12051145173609257,-0.5112973996438086,0.744897008407861,0.5108740273863077,-0.2727604410611093,0.13828106364235282,-0.5685828728601336,0.2720823851414025,-0.7443866361863911,-0.5829961667768657,-0.5494841802865267,-0.4695288296788931,0.08435493428260088,0.9252952206879854,0.09103198582306504,-0.31942328391596675,0.771756811067462,-0.5737276407890022,0.19782379502430558,0.45540872355923057,0.7447735462337732,0.9214147422462702,0.034040973987430334,0.25915586994960904,-0.5342394150793552,-0.9337042826227844,-0.9763838807120919,-0.08897011913359165,0.7227515494450927,-0.4688787814229727,0.5877479803748429,-0.5637859739363194,-0.15959612000733614,0.705657591111958,-0.12012232793495059,-0.6366943693719804,0.47263938561081886,-0.15706102596595883,-0.5706717786379158,-0.3015590449795127,0.674372692592442,-0.6420080969110131,0.46148277120664716,0.005427314434200525,0.5435741101391613,0.5258667776361108,-0.8425372843630612,-0.2954079434275627,0.5395443774759769,0.09243032056838274,-0.5221616891212761,0.6408483600243926,-0.5926595963537693,0.47077423008158803,0.1834201761521399,0.8953796904534101,0.6018270342610776,0.4115777388215065,0.3375531090423465,0.930555067025125,0.378849180880934,-0.13373254612088203,-0.6191587983630598,0.9406902096234262,-0.6363219623453915,0.7489272519014776,-0.6433345684781671,0.5598588730208576,0.6306095435284078,-0.15904421918094158,-0.5748794414103031,-0.15617241244763136,-0.21418018406257033,-0.07896994613111019,-0.9111106162890792,0.9472152511589229,-0.5247879293747246,0.3816479379311204,-0.5465388363227248,-0.9941659555770457,0.5027698599733412,0.29767921520397067,-0.6927080289460719,0.29464306123554707,-0.6412967504002154,0.8508071722462773,0.3875332153402269,-0.2418028600513935,0.3572901077568531,-0.317327618598938,0.9096530615352094,0.30496488278731704,-0.257637876085937,0.9831107733771205,-0.16746991593390703,-0.9362155231647193,-0.09729469940066338,0.9365003779530525,-0.4452804969623685,-0.10326459165662527,0.7561719873920083,0.7051577768288553,0.9452664223499596,0.9300559712573886,0.8102768403477967,0.2744046989828348,0.3505558092147112,0.42012996366247535,-0.8364440952427685,0.8983989828266203,-0.8906171233393252,-0.9708077404648066,0.5768738221377134,0.882196381688118,-0.8378236931748688,0.7465920983813703,0.9152816841378808,0.7051563519053161,-0.3215304985642433,-0.8528384552337229,-0.46576260356232524,0.6436122343875468,-0.39498684415593743,0.2560302624478936,0.9540995615534484,-0.5631321803666651,-0.9987719329074025,0.7381482012569904,-0.3981587621383369,0.5651744077913463,-0.5090923616662621,0.7805841621011496,-0.3149892478249967,0.6489255391061306,-0.08454134874045849,0.29910474130883813,0.062086866702884436,-0.21201016753911972,0.5616753459908068,0.9901246982626617,0.34542158152908087,0.9414879437536001,0.49375936202704906,-0.5632875808514655,0.8415606217458844,0.7915093116462231,-0.5895851473324001,-0.01544206915423274,0.25553380604833364,0.5965780122205615,0.6929153283126652,0.557447980158031,-0.1230729897506535,-0.8640954638831317,0.43367718486115336,0.4543624762445688,-0.4448259212076664,-0.44208365865051746,-0.664090087171644,-0.1798295578919351,-0.9583357949741185,0.6007888060994446,0.7973571959882975,0.7661785245873034,-0.328918622341007,0.7542125075124204,-0.7897003195248544,0.008493587374687195,0.2712323786690831,0.6766014732420444,-0.7079543741419911,0.9237604732625186,0.3528790851123631,0.9053590409457684,-0.6654229485429823,-0.3041771110147238,0.6197026809677482,-0.4016236988827586,0.943011422175914,-0.00861018430441618,0.4637095322832465,-0.13299328228458762,0.16645295452326536,0.8361218725331128,-0.06707530561834574,-0.4547018422745168,-0.40868840273469687,0.05621548742055893,0.5145979071967304,-0.4767163684591651,-0.6471903189085424,0.9730669446289539,-0.7743059108033776,-0.6764511577785015,0.8731764941476285,0.8902375753968954,-0.268376515712589,-0.9454820398241282,-0.6596438721753657,-0.2567293276078999,-0.7526303781196475,0.659649733453989,0.9687495045363903,-0.29696585051715374,-0.3192147323861718,0.31121644424274564,0.9913060171529651,0.5174657772295177,0.9079135959036648,0.041418292094022036,-0.3255084534175694,0.6160961790010333,-0.8975584330037236,0.3849115278571844,0.424980063457042,0.7735737953335047,-0.41186829935759306,-0.6408329727128148,-0.35782037070021033,-0.08484163088724017,-0.5125700393691659,-0.5416169026866555,-0.5086590331047773,0.29062172630801797,-0.2481186194345355,0.576941495295614,-0.5660868189297616,0.9885425707325339,-0.5305056143552065,0.7408752348273993,0.31959457974880934,-0.3312415601685643,-0.27557575004175305,0.08062154380604625,-0.789161475840956,0.2731577679514885,-0.5019567934796214,-0.05494747031480074,0.01818728167563677,0.4094849806278944,0.0832491610199213,-0.5163630410097539,0.3874950157478452,0.35913134878501296,-0.15221451502293348,0.41156183974817395,-0.14642340131103992,-0.15016937721520662,0.266291746404022,0.8442340772598982,0.8929132055491209,0.8497691266238689,-0.8309056954458356,0.021048199385404587,0.36780239222571254,0.5643753805197775,0.46867464762181044,-0.5797212831676006,0.8310039835050702,0.33041438879445195,0.5927841761149466,-0.5335040027275681,-0.4673556564375758,-0.2655484047718346,0.4523040121421218,-0.9281810582615435,0.026412284933030605,0.8516101208515465,0.44615247333422303,0.6442111958749592,-0.15623294422402978,0.7524762009270489,-0.038897618651390076,0.4362042071297765,-0.8489932995289564,-0.14597327262163162,0.050511947833001614,0.32464974420145154,0.4909576643258333,-0.3615553043782711,-0.4177050772123039,-0.5994404312223196,-0.7077404861338437,-0.5590118253603578,0.34511341946199536,0.31594389816746116,-0.5454593962058425,-0.06682850327342749,-0.4302078112959862,0.6312738652341068,0.9380669058300555,0.8350836271420121,0.9657879737205803,0.010283665731549263,-0.7407812904566526,0.9881517444737256,0.7927413587458432,-0.8717418387532234,0.40936020528897643,-0.28859025752171874,-0.13006983697414398,0.8671072539873421,-0.38221969082951546,-0.9138342789374292,0.5346054234541953,-0.7965723625384271,-0.17047273786738515,-0.014037131797522306,-0.07465699501335621,0.5755238230340183,0.3121158154681325,-0.7777036344632506,-0.8829262205399573,0.3495419234968722,0.7829022123478353,0.16185722220689058,-0.3423954229801893,-0.5816606790758669,-0.9315984975546598,0.07853223290294409,-0.6359437936916947,0.42030000453814864,-0.5538997142575681,-0.09911042638123035,0.10075517650693655,-0.8243315275758505,0.7554516117088497,-0.9316455326043069,0.732276878785342,0.9755471269600093,0.04466733383014798,0.25460451375693083,-0.7566602881997824,-0.8142369263805449,-0.269069442525506,-0.021940119098871946,0.6651994665153325,-0.7764316988177598,-0.30733520025387406,-0.9854553807526827,0.3159571555443108,-0.4822395839728415,0.2585933576337993,-0.1196917905472219,-0.20925192022696137,-0.20299157919362187,-0.2595154829323292,0.39547152491286397,0.7853341158479452,0.21693169558420777,0.9525835113599896,0.7745028557255864,0.497950847260654,0.9004134223796427,-0.9431784558109939,0.5134570491500199,0.3094102614559233,0.403406236320734,0.8373401034623384,0.4889073856174946,-0.5437109158374369,0.9706596941687167,-0.1626002392731607,-0.8729460705071688,-0.047217813320457935,-0.8897357531823218,-0.6574257975444198,0.7945922603830695,-0.9740757066756487,-0.6675391835160553,0.3776580882258713,-0.40044979378581047,0.8631016057915986,0.2452650093473494,-0.7872768458910286,-0.01594378612935543,-0.4776022620499134,0.16863294877111912,-0.635073022916913,-0.19962283689528704,-0.014351563062518835,0.09830162627622485,-0.006002814043313265,-0.13516238378360868,0.9830630137585104,-0.05291157215833664,0.5334988543763757,-0.15686536626890302,-0.564128159545362,0.6325566438026726,0.4504477591253817,0.09651877824217081,-0.4788718759082258,-0.10756002087146044,-0.44161840621382,0.2818940510042012,-0.9109925930388272,0.5439807204529643,0.6096071545034647,-0.6110104289837182,-0.3209864958189428,0.9448738968931139,0.3169153369963169,-0.45542923314496875,-0.5517682041972876,-0.262901718262583,0.7076744274236262,-0.016899569891393185,0.4011480766348541,0.20378248533234,0.5190443061292171,0.5721620367839932,0.1416341015137732,0.8613264854066074,0.6086025997065008,-0.9628881784155965,0.18241150863468647,0.6511489930562675,-0.7774423123337328,0.8888650555163622,0.9563749777153134,0.4240941875614226,0.8690928951837122,0.27619285183027387,-0.25229434249922633,0.37607356160879135,-0.9697288074530661,-0.3692168351262808,-0.2832468319684267,-0.999242362100631,0.6213986314833164,0.2476976877078414,-0.3575361003167927,-0.46055611642077565,-0.932457372546196,0.41126626590266824,-0.8752405769191682,0.2626983826048672,0.6564341383054852,0.8825516612268984,0.4178842827677727,-0.9409000538289547,0.14629243221133947,0.2263130652718246,-0.7270936034619808,0.7757962420582771,-0.5723930816166103,0.9716231487691402,-0.25682821637019515,-0.9858409008011222,-0.400359857827425,0.23413895163685083,0.04232962103560567,0.1378736994229257,-0.7013719282113016,-0.512929420452565,0.9550155363976955,-0.830481587909162,0.3379855277016759,-0.4279750590212643,0.972234025131911,-0.3259152667596936,-0.46411878895014524,0.31960737658664584,0.5487672025337815,0.23485597595572472,-0.6771427895873785,-0.6366108357906342,0.0017000287771224976,-0.5318566802889109,0.7870150124654174,0.8772775251418352,0.4917315482161939,-0.7889012796804309,-0.7746704649180174,-0.4071981939487159,-0.20759898098185658,-0.652929796371609,-0.29612997313961387,-0.4059349508024752,0.9372755573131144,-0.5966414394788444,-0.9585623620077968,-0.18559039756655693,0.13774953223764896,0.3038759035989642,0.37702707294374704,-0.9933019685558975,-0.4508524537086487,-0.21162579767405987,-0.6475377497263253,0.2622514213435352,0.056932851672172546,0.7322375355288386,-0.863219662103802,0.04284747736528516,0.06950009567663074,-0.9889599098823965,-0.029124873224645853,0.7208197340369225,0.8741406686604023,0.9870567489415407,0.14104400528594851,0.5621511647477746,-0.8567045168019831,-0.7203123471699655,-0.5005589919164777,-0.39769439212977886,0.5790721294470131,-0.15914753172546625,0.4894755161367357,0.6828523962758482,-0.8050764175131917,-0.15256529347971082,-0.8727499824017286,0.9650867893360555,-0.4511128580197692,0.560171761084348,0.7705912357196212,-0.5152588179334998,0.34940750570967793,-0.4931651330552995,0.9896437949500978,0.1125810076482594,0.9468643199652433,0.3233064073137939,0.3692578752525151,-0.9803074835799634,0.7170825097709894,0.05847207084298134,0.1138416132889688,-0.35937624145299196,0.10610029473900795,-0.9560164804570377,0.6770769194699824,-0.8721076222136617,-0.06102198455482721,-0.00944549823179841,-0.41191350668668747,0.5437549748457968,0.6244922615587711,0.8009698134846985,-0.9240174745209515,0.2853796863928437,-0.9195299842394888,-0.3128670593723655,0.5893519283272326,-0.0011322619393467903,-0.33260270953178406,0.01969711296260357,-0.8313408554531634,0.4907973208464682,-0.2741253636777401,0.46796310134232044,-0.3668599813245237,0.7004125625826418,0.2984396396204829,-0.07333039166405797,-0.5805214769206941,-0.6737605310045183,-0.8674508184194565,-0.6539727477356791,0.806018655654043,0.6700625000521541,0.4012331021949649,-0.5019976920448244,0.2490515480749309,0.015710117295384407,0.9616636149585247,0.9492424535565078,0.9239912359043956,-0.22682914277538657,0.12520638713613153,0.9495955384336412,0.7696152646094561,-0.8940778938122094,-0.7624180503189564,-0.9404860590584576,-0.63381675677374,-0.5034865629859269,0.4204267403110862,-0.8569709965959191,0.7298068171367049,0.7208101879805326,0.30548337241634727,-0.2329810573719442,-0.2370237330906093,0.3905921052210033,0.49867808585986495,0.1367875151336193,0.007519050966948271,0.6611597058363259,0.4406944033689797,0.951526558957994,-0.3826774233020842,-0.45132323214784265,-0.5332261673174798,0.8425661376677454,0.03934262786060572,-0.6143691716715693,0.02575667481869459,-0.9800180019810796,0.851457703858614,0.09405916184186935,0.8247887808829546,0.12123079691082239,-0.40778978029266,0.6490714466199279,0.7089753607288003,-0.13449496822431684,0.7227762346155941,-0.18530619284138083,-0.48454821901395917,-0.28626577788963914,-0.04827191447839141,0.1048824368044734,-0.6646196832880378,0.27445323672145605,0.8896213280968368,0.5973739689216018,0.8072576061822474,-0.4201288749463856,0.17430894263088703,0.8569965651258826,0.22211221931502223,-0.4054372562095523,0.07700702780857682,0.8791694771498442,-0.16057111788541079,-0.002470743376761675,0.5250216564163566,0.28119288198649883,-0.7031034734100103,-0.7789108254946768,0.9927995931357145,0.11189920268952847,0.20900459866970778,0.676347822882235,-0.7951042084023356,-0.29156834445893764,-0.5815452481620014,0.7052469118498266,0.896459998562932,0.5632417686283588,-0.43659460125491023,0.9158935258165002,0.08561470406129956,-0.5296801747754216,-0.8004840561188757,0.8994058212265372,-0.22029040521010756,-0.8335895328782499,0.7969003799371421,0.7376205772161484,-0.1367912171408534,0.45229742489755154,-0.4298878666013479,-0.7695980472490191,-0.11169901490211487,0.44260580837726593,-0.254264947026968,0.06463598785921931,-0.2573495674878359,0.3504778975620866,0.004899580031633377,0.449984859675169,-0.5435636071488261,-0.8484742022119462,-0.25477683963254094,0.14776930958032608,0.4589993008412421,-0.014399538282305002,0.6337061547674239,-0.30610738042742014,-0.853202807251364,0.18060745438560843,-0.022359891794621944,0.7446707403287292,0.2448806525208056,0.37677218671888113,0.8608581246808171,0.6399805094115436,0.5757415224798024,0.19572425680235028,0.47261387249454856,-0.4718057052232325,0.7901546596549451,-0.08987830672413111,0.8206852255389094,-0.9856841983273625,0.21052087750285864,0.5381251876242459,-0.5494321649894118,0.1465501911006868,-0.9228003984317183,-0.7047947277314961,0.7575996671803296,-0.41673518251627684,-0.9078702088445425,0.29127412801608443,0.5459677004255354,0.8505091876722872,0.5463236523792148,0.3101675007492304,-0.1761561557650566,-0.44776566326618195,0.6791989495977759,-0.3918034406378865,0.14557575667276978,0.29841762967407703,-0.47518835263326764,-0.03514013020321727,-0.9025178477168083,-0.8971327813342214,0.2450969684869051,-0.42629568465054035,0.12176949577406049,-0.8345025987364352,0.24358053877949715,-0.8209153786301613,0.2777897813357413,-0.981272173114121,0.4424694422632456,0.1957400650717318,0.8450524210929871,0.5639649429358542,0.30272385850548744,-0.5051166377961636,0.48414358776062727,-0.2915902347303927,0.2739514261484146,-0.269123840611428,0.15661536203697324,0.8973228009417653,0.14422854408621788,-0.06482192780822515,0.6369264158420265,0.1377919539809227,-0.571529695764184,-0.8783656978048384,0.4803691213019192,-0.8398717842064798,0.754852126352489,0.7327583194710314,0.3533944608643651,0.4048477625474334,0.49739924678578973,0.7211182182654738,-0.539376534987241,0.35909255174919963,0.867089344188571,-0.5085902125574648,0.9932027733884752,0.3203430660068989,-0.3483103672042489,-0.022691350430250168,0.5147732435725629,-0.22435187362134457,-0.5070912963710725,-0.3767450228333473,-0.4785920432768762,0.04619566351175308,0.6941169486381114,0.001471801195293665,-0.6652435376308858,0.6742365946993232,0.5657660770229995,0.3988685868680477,0.8950412119738758,-0.0739946193061769,0.37983001908287406,0.2670454606413841,0.3787517314776778,-0.07626580400392413,-0.09240318462252617,-0.6330791059881449,-0.7594588370993733,0.17899719392880797,-0.7751372810453176,0.5161951691843569,-0.0825829734094441,-0.49262928683310747,-0.4346130834892392,-0.3864032938145101,-0.4680549940094352,0.9586961697787046,0.9063172317110002,0.6527144396677613,0.032197564374655485,0.26277619041502476,0.9755622777156532,-0.9555437327362597,0.6106055448763072,-0.27619414404034615,0.7985561243258417,-0.8629841669462621,0.3139499477110803,-0.2637021467089653,0.13409108575433493,0.025080971885472536,-0.7352658431045711,0.9395299488678575,-0.25725642358884215,0.6904962519183755,-0.9678191081620753,-0.5805543577298522,0.28469955222681165,0.7623247485607862,-0.6098082629032433,0.6006448063999414,-0.46271689608693123,0.0391389993019402,-0.37800290435552597,0.4532739776186645,0.3210304663516581,-0.3710405519232154,-0.8830671668983996,0.0007212921045720577,0.3384397551417351,0.34563894337043166,0.741855155210942,0.19824462523683906,-0.3881271379068494,0.6374251418747008,-0.5558553063310683,-0.7678197296336293,0.32082815328612924,-0.888277092948556,-0.5427168668247759,0.3843946736305952,0.4268622170202434,0.653452395927161,-0.7217816282063723,-0.4996824078261852,-0.2427384601905942,-0.9360374570824206,0.6654331223107874,0.7615479584783316,-0.10557764815166593,0.020150288939476013,-0.33346034539863467,-0.8041241765022278,0.7889222856611013,-0.9634593953378499,0.04993530362844467,-0.9832912506535649,0.962655870243907,0.656187788117677,0.16476474748924375,0.9085505031980574,0.8108357777819037,-0.21731399884447455,0.4667878798209131,-0.24535227799788117,0.27447697427123785,0.09485868690535426,-0.12091333139687777,-0.8558949278667569,0.3012847965583205,0.5058485204353929,0.11691726185381413,-0.814464611466974,0.699854473117739,-0.6247593737207353,-0.7953120060265064,0.5004979078657925,-0.47820131247863173,0.10348764527589083,0.27063742466270924,0.1746849068440497,0.3103756941854954,-0.7500431295484304,-0.6814176277257502,0.3265086282044649,-0.3683776333928108,0.9815280372276902,0.19379724701866508,-0.3978704228065908,-0.8225642493925989,0.37301476299762726,0.6608655550517142,-0.3741512675769627,0.8643885366618633,-0.36275398219004273,-0.5150320692919195,0.06658018101006746,-0.26013054279610515,0.8179504643194377,0.3842889154329896,0.2422217964194715,0.500737190246582,0.33127594040706754,0.009638925548642874,0.7906148177571595,-0.5015988484956324,-0.28235110035166144,0.9177363337948918,-0.9547608830034733,-0.7126919110305607,-0.2806381559930742,-0.25717954616993666,0.8867472680285573,0.10683699697256088,-0.272050675470382,-0.20482900831848383,0.9004757166840136,0.08777969656512141,-0.040106539614498615,-0.4058383828960359,-0.4358335416764021,0.13763789646327496,0.2824812172912061,-0.5391863957047462,-0.20137038081884384,0.46228625625371933,-0.845007595140487,-0.8255173861980438,-0.25808914937078953,0.8283868762664497,0.5511054466478527,-0.021168397273868322,0.1644453639164567,0.2961693350225687,0.3407324315048754,-0.7840913599357009,0.6826300858519971,-0.8934263503178954,0.6105215298011899,-0.6714750756509602,0.8783539677970111,-0.26074276212602854,-0.18097360990941525,-0.4027501791715622,0.11318385042250156,-0.8417119770310819,-0.0675016432069242,-0.9791097119450569,-0.4620715510100126,0.6838955217972398,0.38428980903699994,0.31785459630191326,-0.5572334476746619,0.41670157201588154,0.6092782146297395,-0.539193560834974,-0.9495161743834615,-0.7563834064640105,-0.4549391749314964,0.7448844006285071,0.6726671634241939,-0.3892928548157215,0.39905283553525805,-0.13689969899132848,-0.4767378829419613,-0.90664844494313,-0.07361579034477472,-0.6193113191984594,0.47562624095007777,0.37051226990297437,0.7860681796446443,0.7498645465821028,0.5789364269003272,-0.10611123638227582,0.38401058269664645,-0.7398678972385824,-0.3010158115066588,-0.19399223756045103,-0.41046428214758635,0.6825810158625245,-0.31438021548092365,-0.10798917012289166,0.8684816537424922,-0.8227099003270268,-0.13148892857134342,0.28891610773280263,-0.8541107606142759,-0.21739790961146355,-0.06052157608792186,-0.9947804193943739,0.5630308678373694,0.7713275402784348,-0.6993274660781026,0.5081766061484814,0.8115364951081574,-0.07779130386188626,0.08078932482749224,-0.7253358229063451,0.49653522577136755,-0.8120269537903368,-0.4658021000213921,0.20793156931176782,-0.6240290603600442,0.4851602725684643,0.8566940892487764,0.7526793051511049,-0.8907071300782263,0.5516896825283766,0.495627211406827,-0.46772863110527396,0.5150444391183555,-0.8508202498778701,0.04427039949223399,-0.7215799116529524,-0.15887540765106678,-0.7498499155044556,-0.157361616846174,-0.12079431861639023,-0.4226338043808937,-0.6564055252820253,0.8052274086512625,-0.5561945103108883,-0.5040745818987489,-0.39555655466392636,-0.28892067167907953,-0.15829630615189672,-0.050655942875891924,0.4435183797031641,-0.5290404502302408,0.8667053389362991,-0.1203277031891048,-0.4916282859630883,0.33087075501680374,-0.6424105600453913,0.5949869467876852,-0.956006902270019,-0.3655316000804305,0.00863311579450965,-0.7044484601356089,0.4601430599577725,0.31357450038194656,-0.4914728971198201,0.35880066314712167,-0.359888712875545,0.29690621700137854,-0.9327972745522857,-0.9870473588816822,-0.501549307256937,-0.859572408720851,-0.07508522598072886,0.20000836998224258,0.37697745813056827,0.1030831728130579,-0.9437080780044198,-0.3599712713621557,-0.14717053854838014,-0.21223184559494257,-0.8650217400863767,0.4907436021603644,-0.18515160819515586,-0.9188233865424991,0.1570763699710369,-0.08288270933553576,-0.29228388890624046,-0.40754548693075776,0.23085076734423637,-0.05139434663578868,0.9043876496143639,-0.6895701233297586,-0.7222320330329239,-0.28751703538000584,-0.8225811296142638,-0.427754083648324,0.7116196979768574,0.0872662179172039,0.1107923872768879,0.28476773062720895,-0.622646898496896,-0.5741762667894363,0.07013368094339967,-0.859458067920059,0.3597500459291041,-0.5530032673850656,-0.8224618500098586,-0.1651059975847602,-0.6814599200151861,0.8958473959937692,-0.531972136348486,-0.8352884179912508,0.5653923563659191,-0.38734092051163316,0.5759240770712495,-0.20686200447380543,-0.12553517520427704,0.9498475389555097,-0.48696888657286763,0.7369479867629707,-0.2978051947429776,-0.6859423536807299,0.9431607681326568,0.4423781828954816,-0.9173681498505175,-0.015196679625660181,0.48196958750486374,-0.6481601637788117,-0.3226825981400907,-0.17489454988390207,0.214428779669106,-0.2420652350410819,0.7337293261662126,0.20522601902484894,-0.8134446903131902,-0.6506862565875053,0.5507429889403284,0.5754181537777185,0.10162838967517018,0.1980856261216104,-0.7536821169778705,-0.48538033943623304,-0.2973555978387594,0.4999851733446121,0.8563952841795981,0.047496629413217306,-0.9633331303484738,-0.8849205682054162,0.5131410583853722,0.35001296922564507,-0.4050766504369676,-0.0945283118635416,0.9690323998220265,0.31673638243228197,-0.6406444045715034,0.9174066362902522,0.38315937109291553,0.7626757589168847,-0.6993549135513604,-0.8290451932698488,-0.39444755390286446,-0.9718543188646436,0.9446649635210633,0.3441897388547659,-0.4098330601118505,-0.09602017235010862,-0.3218087665736675,0.010431819129735231,0.7220294787548482,-0.9812459689565003,-0.7324648578651249,-0.8559235697612166,0.9734561424702406,0.2839575163088739,-0.8800441483035684,-0.9675392173230648,-0.41084213461726904,-0.5873882444575429,-0.6023883619345725,0.908329741563648,0.9677984900772572,-0.2026693015359342,-0.9930448764935136,0.5069731632247567,0.8107165736146271,-0.08124918444082141,-0.1615189639851451,0.11872082902118564,-0.5425805780105293,0.9005591343156993,0.6763753839768469,-0.5443205777555704,-0.2511209803633392,0.9294801740907133,-0.20028906920924783,0.9129162998870015,-0.14154239930212498,0.8629616550169885,-0.9357863939367235,0.1419570087455213,-0.22081455728039145,0.8036315804347396,-0.23414318822324276,-0.5779515192843974,-0.5350268515758216,0.49017065949738026,-0.20802401890978217,0.3879483756609261,-0.8851580596528947,0.8309017145074904,0.672597246710211,-0.5965219219215214,-0.012997076380997896,-0.16499414294958115,0.7012144355103374,-0.7216036259196699,-0.4455784191377461,-0.1395092224702239,-0.590957832057029,0.7301523578353226,-0.5900576887652278,0.5219866326078773,0.5726743931882083,0.10214031115174294,-0.6988124526105821,0.7237576474435627,0.5902775195427239,-0.12012387625873089,0.7360008917748928,0.01873336685821414,-0.7919216421432793,0.5768578918650746,0.24126041401177645,-0.8056267932988703,-0.6722345175221562,-0.7753362548537552,0.12261322466656566,0.8539984109811485,-0.9344814037904143,0.3936669980175793,-0.019226309843361378,0.7979280296713114,0.6452339701354504,-0.8695027497597039,-0.6622013980522752,0.6852948619052768,0.7226276183500886,-0.7857950399629772,0.1680503753013909,-0.09957459382712841,0.2441544383764267,0.19162285840138793,-0.4111853875219822,0.7844098848290741,-0.8000807128846645,0.6293705170974135,0.7090164166875184,-0.32505682203918695,0.21245510689914227,0.6807286622934043,-0.3482724353671074,-0.9971736059524119,-0.7666656044311821,0.5450102030299604,0.8031578632071614,-0.10005162004381418,-0.7270438456907868,0.36611209716647863,0.6324455980211496,0.16052493080496788,0.7293375544250011,0.4176382697187364,-0.05440247058868408,0.3382012560032308,-0.2778180814348161,0.5427420074120164,-0.7664946210570633,0.6835996573790908,0.9586366787552834,-0.0490930937230587,0.13365669921040535,0.1762929824180901,0.28593415580689907,0.45842694910243154,0.7869535088539124,-0.40269382344558835,-0.38011686597019434,0.8553188918158412,-0.2227005148306489,-0.1902468642219901,0.8469368829391897,-0.19545302726328373,-0.5307831689715385,0.7474754475988448,-0.24929588567465544,-0.5601878254674375,0.133572556078434,-0.4779201806522906,0.3818946718238294,0.1281639481894672,0.9054397158324718,-0.32316432520747185,0.8720793109387159,0.8075033179484308,-0.7760581392794847,-0.2356666405685246,0.45746717834845185,0.4280179492197931,-0.987053622957319,-0.9576620808802545,-0.6046525943093002,0.26231322018429637,-0.0061569069512188435,-0.7654151958413422,-0.5369332740083337,0.9745320086367428,-0.18882823130115867,-0.39929597871378064,-0.1933923652395606,0.34960907185450196,-0.21631319262087345,-0.933941250666976,-0.5822082487866282,-0.521535518579185,0.014532221015542746,-0.3936806973069906,-0.04851846722885966,-0.4236760032363236,-0.627485812176019,0.30990970274433494,-0.978722786065191,-0.3194841416552663,-0.48188941506668925,-0.27528637973591685,0.12608248740434647,-0.08244143333286047,0.048755915835499763,-0.07439350802451372,0.5703632100485265,0.7068895362317562,0.884698367677629,-0.3335585044696927,-0.9498473573476076,0.4701997125521302,-0.23005291353911161,-0.8647331609390676,0.11357656912878156,-0.7494273339398205,-0.8953564846888185,-0.16393711417913437,0.2062044022604823,-0.6473518703132868,0.8469125214032829,-0.4234856842085719,0.5846318937838078,0.9405741379596293,0.6053651478141546,0.548752133268863,-0.7982662040740252,0.2202765652909875,-0.03861673874780536,0.9617434716783464,0.40620340779423714,0.7648403779603541,0.41266647540032864,-0.8008722169324756,-0.7393064252100885,-0.48489975836127996,-0.8125455309636891,-0.8509584334678948,0.8429554007016122,0.9251220473088324,-0.9678705208934844,0.2701712562702596,0.4671233221888542,-0.19873160403221846,0.8832501554861665,-0.12730297539383173,-0.5334414439275861,-0.033602412324398756,0.8047265727072954,-0.9837924288585782,0.873116378672421,-0.6374017056077719,-0.5338009875267744,0.4769818945787847,-0.6820857576094568,0.7425670213997364,0.14633116172626615,-0.11963932448998094,0.5866192365065217,-0.14293690957129002,-0.19076120620593429,-0.770233316347003,0.6344705820083618,0.2858927743509412,-0.3887332691811025,0.518236723728478,-0.14351136749610305,0.8927722768858075,0.6847961624152958,-0.2251875400543213,-0.27823058189824224,0.9876561742275953,-0.747833488509059,-0.3292748210951686,-0.28234735829755664,0.10145669244229794,-0.7701501748524606,-0.5070906365290284,-0.5085156722925603,0.1532355989329517,-0.6503406595438719,0.4204327389597893,0.9737295224331319,0.23472285689786077,-0.11511037033051252,0.3898285632021725,-0.6132935914210975,0.608981997705996,0.48970231832936406,-0.36982062784954906,0.6607433836907148,0.2076758835464716,0.7908495627343655,-0.7733559822663665,-0.04458001349121332,0.5805906224995852,-0.5003926353529096,-0.017273185774683952,-0.8849391401745379,0.1515381927601993,-0.31271286960691214,0.1282881130464375,0.3894496229477227,0.18792753433808684,0.1447144029662013,-0.4303702241741121,0.12653744872659445,0.15009122202172875,-0.08355830889195204,-0.9467249121516943,-0.2573928255587816,0.8453346309252083,-0.9626119276508689,0.8880632650107145,-0.6917638410814106,0.6088424320332706,0.05655860947445035,0.11214696569368243,0.7204583710990846,-0.516119753010571,0.2928745220415294,0.7087451559491456,-0.514480356592685,0.07714884541928768,0.15941226622089744,0.37964698392897844,-0.1403485769405961,0.6696045412681997,-0.31462849536910653,-0.560299071483314,0.4522948698140681,0.9671668312512338,0.6635305457748473,-0.48481249157339334,0.02344957273453474,-0.007683678064495325,-0.5744222430512309,-0.7609171280637383,-0.03055574558675289,0.31287928530946374,0.4900137376971543,0.06838044757023454,0.8687622151337564,-0.921376041136682,0.2881882740184665,0.4833294376730919,-0.0009483504109084606,-0.43185538426041603,-0.7751324861310422,0.8335819123312831,0.5886689275503159,-0.4104548334144056,-0.3848970402032137,-0.5694745453074574,0.5760744544677436,0.7082045301795006,0.23160750092938542,-0.6940876725129783,0.6741395615972579,0.5723884599283338,-0.3548178873024881,-0.18585444521158934,-0.5049972361885011,-0.7001536935567856,-0.3237665183842182,-0.7659938000142574,-0.24070923449471593,0.25133283669129014,-0.38940564077347517,0.5679319491609931,-0.0915626510977745,0.5811780043877661,-0.2592781214043498,0.04328492050990462,-0.5693628606386483,-0.07296244846656919,-0.022249389439821243,-0.3000015369616449,-0.24540894851088524,0.21511613903567195,-0.4161773454397917,-0.8690953720360994,0.27402253868058324,0.31162029691040516,-0.239485417958349,0.47713905666023493,0.10228464659303427,-0.4351812368258834,-0.3657762515358627,0.2861929056234658,-0.9023232543841004,0.34951853565871716,-0.6870361613109708,-0.6087843994610012,-0.7319767251610756,-0.20269744843244553,-0.7476895861327648,0.143200792837888,0.32512937067076564,-0.37601297115907073,0.6843748893588781,0.8326570196077228,0.000101462472230196,-0.6922591733746231,0.18185416189953685,-0.3927972367964685,0.5335542135871947,0.983403458725661,0.3250845419242978,0.015160179696977139,-0.910856204573065,0.8571864445693791,-0.32540278462693095,0.9446304063312709,0.9847787376493216,-0.9751296960748732,-0.3386885984800756,0.9065145519562066,0.9180323681794107,0.894051366019994,-0.8197557465173304,0.4359108996577561,0.9933747556060553,0.09362784307450056,-0.0018059448339045048,-0.5793892540968955,0.9012007568962872,-0.2890458945184946,-0.17593242414295673,0.8098049582913518,0.9612316070124507,-0.6780089023523033,0.2049224590882659,-0.05192294344305992,-0.3979881093837321,0.9130928120575845,0.06388556538149714,0.7714435304515064,-0.2828586371615529,0.25711120711639524,0.9691238724626601,0.2422565626911819,-0.8246164619922638,-0.673814962618053,-0.9512482760474086,-0.7844357020221651,0.42936074547469616,0.9423987502232194,-0.9690714348107576,-0.20197466295212507,-0.9360861759632826,-0.6151582137681544,-0.05079310713335872,0.7694101450033486,-0.35219297651201487,0.12546157138422132,-0.09939390001818538,0.04382036393508315,-0.32700797263532877,0.9505251226946712,0.07261758390814066,0.6250702938996255,0.5817821100354195,-0.8671949044801295,0.03717662766575813,0.27184301195666194,0.9153666156344116,-0.28437693091109395,0.7828474217094481,-0.5929609350860119,-0.7108366549946368,-0.33577530505135655,-0.7265596152283251,0.5633090175688267,0.990794291254133,0.06363133899867535,-0.6829194333404303,-0.6517362450249493,0.632149419747293,-0.4451042180880904,0.8861833377741277,-0.46156404027715325,0.035787273198366165,0.06129315681755543,0.014381479006260633,0.48750048829242587,-0.6762622357346117,-0.5759402448311448,-0.18602610984817147,-0.6707555837929249,0.4067483739927411,0.5750868716277182,0.4005659897811711,-0.11789282504469156,-0.8133104722946882,-0.6945002162829041,0.4611882148310542,0.8098190291784704,0.04742413526400924,-0.41741931438446045,-0.819524250458926,-0.9046495901420712,-0.2362993867136538,-0.6036595772020519,0.541709968354553,0.12388664064928889,0.6807944071479142,-0.10818818164989352,0.7767954091541469,-0.5757536720484495,0.5068425443023443,-0.15359719889238477,-0.1633877558633685,0.23397232638671994,0.02860051905736327,0.32622128864750266,-0.02664543827995658,-0.30557462153956294,-0.27430309168994427,0.1569084608927369,0.43901478266343474,0.038279940374195576,0.4013554803095758,-0.25123374350368977,-0.5586796491406858,0.03154057636857033,0.41227988759055734,0.06458560237661004,-0.2867327379062772,0.2492087041027844,-0.12806223426014185,0.7911672201007605,-0.9559547742828727,-0.1821618191897869,-0.33415480703115463,-0.20067009050399065,0.6084140404127538,0.30213165329769254,-0.670688537415117,-0.20813238713890314,0.6859850171022117,-0.7636333797127008,0.22992197843268514,-0.4530191821977496,0.7493276572786272,-0.6327826040796936,-0.4822625666856766,-0.2913113501854241,0.44562325812876225,-0.9435866558924317,-0.3695650096051395,-0.7412890186533332,-0.07316644676029682,0.009994606487452984,0.05660148896276951,0.09328509168699384,-0.7914186352863908,-0.813807955943048,-0.805697716306895,0.5968599990010262,0.9522305065765977,0.7775836875662208,0.4570583952590823,-0.15855409251525998,-0.9837974915280938,-0.831470251083374,-0.15724171744659543,0.4213297055102885,-0.1390851540490985,0.12260327814146876,-0.8853121870197356,-0.8852675692178309,-0.41889823973178864,-0.45947906328365207,-0.6345228366553783,-0.5207269070670009,0.548423835542053,0.4921267321333289,0.5493618948385119,-0.554563473444432,-0.6636300855316222,0.9002246521413326,0.925756901036948,0.4196821143850684,-0.023435440845787525,-0.1069559995085001,0.24895336059853435,0.9861630531959236,-0.7135897376574576,0.5907476055435836,-0.5052885012701154,-0.27034445432946086,0.04444231977686286,-0.2670767907984555,-0.09905142523348331,0.5964336255565286,-0.00034112343564629555,0.7837459808215499,0.27959525864571333,0.18784312438219786,0.7285225642845035,0.2597309648990631,-0.38618491496890783,0.7009161282330751,-0.46684326557442546,0.1093519008718431,-0.34338241908699274,-0.3335475572384894,-0.3207634254358709,0.7885088021866977,0.22112324554473162,0.788180376868695,0.07330181775614619,0.7665623025968671,0.5022848602384329,-0.8366593662649393,-0.7940171733498573,0.8851705039851367,-0.6385481096804142,-0.3660525530576706,-0.3804394672624767,0.49244449101388454,0.49277178244665265,0.4770785733126104,0.06174724129959941,0.7704934226348996,-0.6304339095950127,0.625575159676373,0.6762035912834108,-0.01725354790687561,0.41036731330677867,0.5588789880275726,0.4102077465504408,0.4983684876933694,0.11382122989743948,-0.014711341820657253,-0.6523129418492317,0.4774144687689841,0.5927223549224436,-0.5440859319642186,-0.4278818489983678,-0.1342427982017398,-0.23739280924201012,0.8259849390015006,-0.19971376517787576,-0.38373370841145515,0.26588065549731255,0.9669021526351571,0.8656345172785223,0.44987385580316186,-0.21759817469865084,0.697336140088737,-0.8815090009011328,-0.5806100168265402,-0.7642040723003447,-0.32562183821573853,-0.4820960504002869,-0.9183663707226515,0.8443855508230627,0.2903049751184881,0.021856185514479876,-0.9726705993525684,0.35131689300760627,0.1463714656420052,-0.6172613580711186,0.6957354694604874,0.365211165510118,-0.9315513325855136,0.6660530692897737,0.6461835051886737,-0.03641950339078903,-0.04049976635724306,0.4946834151633084,0.4319770089350641,0.8668972733430564,-0.1548162680119276,-0.8859372939914465,-0.19449458364397287,0.9267799141816795,-0.5824682037346065,-0.40268789511173964,-0.41825869772583246,0.573707701638341,0.3896205727942288,0.5147240431979299,0.6084956261329353,-0.24352488201111555,0.6306606633588672,-0.09281412931159139,0.2959355306811631,-0.564935380127281,-0.09826048975810409,0.9505252907983959,-0.45078488206490874,-0.21033937949687243,0.8758792146109045,0.4686949960887432,-0.82580605475232,0.20916216121986508,-0.4336517141200602,0.1163329603150487,0.37546723196282983,0.8043270101770759,-0.6664298861287534,0.4309200746938586,0.41645516734570265,-0.5214304351247847,0.8610912947915494,-0.7771984776481986,0.016850511077791452,0.8002447867766023,-0.5181206041015685,-0.4701734548434615,0.8260616608895361,-0.7913083117455244,-0.16574537754058838,-0.8239796222187579,-0.1663879044353962,0.6287029483355582,0.5935189076699317,0.9143912382423878,-0.4897276167757809,-0.7821460952982306,-0.9365248931571841,-0.9811725988984108,0.4870650381781161,-0.24991703918203712,-0.4834901178255677,0.37298272317275405,-0.20403348561376333,-0.9815954943187535,0.6602761833928525,0.7995821791701019,-0.9673398057930171,-0.8833515010774136,-0.7256649588234723,-0.8254320784471929,0.029719284735620022,0.7493257634341717,-0.3430141806602478,-0.3166387928649783,-0.6382370516657829,-0.4970722673460841,0.38238382199779153,0.8581698439083993,-0.18610939616337419,-0.7260587187483907,0.560355291236192,0.9272231394425035,0.09771341551095247,0.14250026131048799,-0.8210224471986294,-0.3732881126925349,0.45335091883316636,0.7874978622421622,-0.9613693421706557,0.1698117246851325,0.30832461128011346,0.21339420741423965,0.7447507614269853,-0.178696071729064,0.7529250588268042,-0.19816505908966064,0.23824654193595052,0.9815790769644082,0.3352305516600609,-0.7208811030723155,0.06016205018386245,0.5641578789800406,0.6520581934601068,-0.840645472984761,-0.33475574804469943,-0.368036653380841,-0.06337406300008297,0.3006579615175724,-0.7301530526019633,0.5444399090483785,-0.4540938148275018,0.8709766641259193,0.3405720838345587,-0.9433216387405992,0.25256617134436965,0.7959483438171446,-0.2655569724738598,0.5812076856382191,-0.4882113840430975,0.39674425683915615,-0.27906096866354346,-0.6801144136115909,-0.03861715132370591,-0.4399329870939255,-0.11600460996851325,0.7895269594155252,0.6689501549117267,-0.3115020487457514,-0.10737554775550961,0.5565549461171031,0.6512140315026045,-0.04709954094141722,0.5733114341273904,0.8828080124221742,0.8637516577728093,-0.19984202831983566,0.8354148608632386,0.38732076762244105,-0.0838533565402031,-0.6508512943983078,0.37169180857017636,-0.35533334454521537,0.6711723259650171,0.695690993219614,-0.5523537462577224,-0.8863845835439861,0.12898902921006083,0.5971401096321642,-0.15556071512401104,-0.14576644310727715,-0.8921278999187052,0.0956500330939889,-0.49527038959786296,-0.2508456027135253,0.676240490283817,0.6760414578020573,-0.1859930488280952,-0.26794244814664125,0.2300205510109663,-0.8722681328654289,-0.14150732569396496,-0.29075966589152813,-0.4355641514994204,0.4094736725091934,-0.3180222176015377,-0.8202810725197196,-0.34064309066161513,0.7305187098681927,-0.6844726512208581,0.46442833775654435,-0.4020561361685395,0.33388189831748605,0.3669571476057172,-0.8017231156118214,0.06820274004712701,0.07878117682412267,0.6176945162005723,-0.4328411635942757,0.9761272137984633,0.20253920648247004,-0.2446139226667583,-0.9355263928882778,0.03771185502409935,-0.7670169994235039,-0.9387494879774749,-0.5961036765947938,-0.8161540720611811,0.363567381631583,-0.8723448202945292,-0.8084146142937243,0.4461574465967715,0.057789992075413465,-0.42459029937162995,0.9190435651689768,0.8841070923954248,0.29747610399499536,-0.536156774032861,0.3904557703062892,-0.911207695491612,0.8556264191865921,-0.6167249456048012,0.20357123855501413,0.6732088509015739,0.5973008014261723,0.5840363069437444,-0.9901374643668532,-0.13054551044479012,-0.7270700633525848,0.5833884589374065,0.18096689879894257,-0.8023875807411969,-0.12579163536429405,0.36960180196911097,0.17117771785706282,-0.44895572355017066,0.1638571098446846,-0.6198695772327483,-0.01736943982541561,-0.7025420907884836,-0.8188200653530657,-0.13641341403126717,-0.17216468323022127,-0.8815046683885157,-0.07340120524168015,-0.9592783930711448,-0.01233953470364213,0.01194597315043211,-0.46170015493407845,-0.11877302639186382,-0.8956264392472804,-0.38411873299628496,0.6908355350606143,-0.2723796763457358,-0.6989276562817395,0.20722261676564813,-0.21098080603405833,-0.8893295605666935,0.8834494384936988,-0.9867666405625641,0.3212846927344799,0.38333315355703235,0.034086845349520445,-0.9533206652849913,-0.9384195683524013,0.8202564190141857,-0.572354996111244,-0.30697269598022103,0.9800047832541168,0.39609812293201685,-0.07053199037909508,0.8779384749941528,0.6346044233068824,-0.5242367717437446,0.15941670071333647,-0.7266841004602611,0.4364097882062197,0.18473915196955204,-0.7619379330426455,0.8648606645874679,-0.35832872008904815,0.6758381952531636,-0.9252719441428781,-0.7281386260874569,0.5539433350786567,-0.13846180075779557,-0.9407656574621797,-0.10366359166800976,-0.13870451878756285,0.22622964112088084,-0.4522571754641831,-0.795197980478406,-0.6930961632169783,0.5008355197496712,-0.8373470599763095,-0.013587763532996178,-0.11228307243436575,0.151926978956908,0.49314365861937404,0.6818882180377841,-0.5631443997845054,-0.24140272429212928,-0.5375247481279075,0.105283931363374,0.7854835768230259,0.15248401649296284,0.8391251997090876,0.8315079687163234,-0.3420034907758236,-0.5277715041302145,0.46280115749686956,-0.30057309987023473,-0.8836319474503398,-0.10799165815114975,-0.6304401941597462,0.5595876169390976,-0.1437020073644817,0.5451693744398654,-0.7574460743926466,-0.8872911580838263,-0.6507235052995384,0.8105634446255863,-0.1812150152400136,0.935926625970751,0.5492261876352131,0.054245089646428823,-0.5458067748695612,0.49608946638181806,0.3368376144208014,-0.16776526672765613,-0.928531645797193,0.6762702213600278,0.3222734094597399,0.05363618582487106,-0.11435384256765246,-0.0925178686156869,0.7396713877096772,0.9621703289449215,0.46564873354509473,-0.6596510503441095,0.08991885371506214,-0.475411522667855,-0.7532771690748632,-0.09577016858384013,0.9486809745430946,-0.3199848346412182,-0.2954862411133945,0.8723804862238467,-0.12005993677303195,-0.4198470111005008,-0.24814676446840167,0.577482326887548,0.1016273656859994,0.5658041113056242,-0.16118376702070236,0.47541465191170573,0.9325669589452446,0.29216955695301294,-0.2090341942384839,0.3769209533929825,-0.4807150815613568,0.16345676267519593,-0.8294840636663139,-0.33624110743403435,-0.1506493049673736,0.009254754055291414,0.06821731058880687,0.6781553705222905,0.5014459816738963,0.9558543148450553,0.7523405645042658,0.729935075622052,0.7945485818199813,-0.7008766275830567,-0.17492027301341295,0.4505137908272445,0.08428857801482081,0.7225517174229026,-0.027143521700054407,0.45202829455956817,-0.6168291289359331,-0.5651370547711849,0.4024758879095316,0.2306228606030345,-0.4801140376366675,-0.29860389651730657,-0.04637341387569904,0.5493480302393436,0.7974005667492747,-0.05049488414078951,0.824349888600409,-0.39205810893327,0.7459798473864794,0.10153300780802965,0.1485630883835256,0.3255117619410157,0.8917801911011338,0.2227889709174633,-0.4169422499835491,-0.022106735967099667,0.3600174682214856,0.49195646261796355,0.8333804938010871,-0.3514490737579763,-0.06788835767656565,0.9056509020738304,0.057158146519213915,0.5087780165486038,-0.24650906305760145,0.7755543137900531,0.9639737526886165,0.7834562798961997,-0.4835317814722657,-0.8828201736323535,-0.8291403921321034,0.9040075959637761,0.125447366386652,-0.8940104292705655,-0.1760771875269711,0.8402643371373415,-0.6535995444282889,0.6811653352342546,0.9263341557234526,-0.8824484432116151,0.62111164489761,-0.7767771985381842,0.1677441312931478,-0.16679634945467114,-0.576562627684325,-0.7940440531820059,0.3444878379814327,-0.8780627236701548,0.20884296437725425,0.5302884289994836,-0.7745847282931209,0.7277329033240676,0.8329113307408988,-0.7751967953518033,-0.5744242500513792,-0.12948576919734478,-0.16724054235965014,0.331539667211473,0.08476155623793602,-0.8526184940710664,0.25619436521083117,-0.1425987659022212,-0.4132740506902337,-0.18455489119514823,0.7497366853058338,0.5132615081965923,0.1716875797137618,0.8012837674468756,0.5777475172653794,-0.9194221226498485,0.5704463608562946,-0.5378281916491687,-0.14024657988920808,0.41822061361745,0.022488904651254416,0.8829593667760491,0.9452774710953236,-0.5555374012328684,0.40440623741596937,-0.5386023996397853,-0.9524299525655806,0.26914536114782095,0.08629625150933862,-0.719381466973573,0.8410206222906709,0.15304310340434313,0.29951075511053205,-0.020295195747166872,-0.8628646391443908,-0.765680440235883,-0.5366815757006407,-0.9547167280688882,0.4383026184514165,0.33330763038247824,0.6317261247895658,-0.5021604569628835,0.6821978869847953,-0.8787596491165459,0.5660809422843158,-0.6930914572440088,-0.7907291390001774,0.3188464683480561,0.7379018757492304,-0.16598412953317165,-0.4122423562221229,-0.5416802009567618,-0.6978946966119111,0.47722426196560264,0.9892819221131504,-0.6318860915489495,0.44621005980297923,0.6432867120020092,-0.3195642842911184,0.8988269092515111,-0.6693231770768762,0.5554397883825004,-0.6605196264572442,-0.06832266179844737,-0.3503628736361861,0.18903124053031206,0.4725875467993319,0.9992332048714161,0.98650330491364,0.952637751121074,0.6841822750866413,0.6570917489007115,0.008127033244818449,-0.6008582580834627,-0.5378718837164342,0.831895855255425,0.6526032593101263,0.6940374313853681,0.8619862771593034,-0.2187121887691319,-0.3154241447336972,-0.45659495843574405,0.986078736372292,0.8206168315373361,-0.9138341397047043,0.14500185521319509,-0.3463603383861482,-0.9907391052693129,-0.9917771467007697,-0.4461791249923408,0.6814828044734895,-0.30057003116235137,0.3731571715325117,0.739353368524462,0.9922065725550056,0.2471976582892239,-0.18972274847328663,0.6902353093028069,0.520082782022655,-0.5242280084639788,0.6498175365850329,0.502215585205704,-0.012230800464749336,-0.19011952448636293,-0.9432102902792394,0.8531484426930547,0.01199406012892723,-0.3167850556783378,0.3141591935418546,0.9017422487959266,0.5283724465407431,-0.055335627403110266,-0.0551268788985908,0.84805315034464,0.6894244374707341,0.5927400030195713,0.4487588838674128,0.8117146659642458,-0.8930933158844709,0.32074719248339534,-0.8131201798096299,0.8477600547485054,0.6463363082148135,0.8884412138722837,0.6873974283225834,-0.8905228734947741,0.9733825107105076,-0.481809850782156,-0.061297405045479536,-0.5600771699100733,0.19465095223858953,0.2985866228118539,-0.16080228006467223,-0.5070371329784393,-0.4924329714849591,0.9687300752848387,0.6589766698889434,-0.6000155843794346,0.6153892953880131,0.7545400201343,-0.7888131528161466,0.029838381800800562,-0.2294474565424025,-0.8318730685859919,0.5268226163461804,-0.956657228525728,-0.8187654661014676,-0.5475697163492441,-0.09883725363761187,0.3577885660342872,-0.21284063020721078,0.9558773557655513,-0.5432827924378216,0.5171415712684393,-0.5210282448679209,-0.6780620790086687,0.13592422800138593,-0.5552579327486455,0.9860986908897758,0.7062946441583335,-0.34900462720543146,0.1062641441822052,0.7049304400570691,-0.23886798415333033,0.22609569504857063,0.20801774971187115,-0.06560778198763728,-0.5274893268942833,0.9455143995583057,-0.7430392149835825,-0.6757235564291477,0.4606896545737982,-0.12671953300014138,-0.5999766723252833,-0.9809093787334859,0.2528366707265377,0.4176396927796304,-0.36062729358673096,0.6015916764736176,-0.5973327779211104,0.5745682641863823,0.6246985159814358,0.9674794599413872,-0.8139308108948171,-0.8008588026277721,-0.9676610832102597,-0.17340532643720508,0.3784900438040495,-0.34460726752877235,-0.4379639932885766,-0.2171816430054605,-0.020513205789029598,0.7928270176053047,0.450089689809829,0.716801643371582,-0.136741045396775,-0.6228566118516028,0.03637260477989912,0.22034958889707923,-0.5631803870201111,-0.1866626925766468,-0.47478790720924735,-0.4211081867106259,-0.2068626843392849,0.5855941022746265,0.72478879801929,0.4167550834827125,0.844878398347646,0.1422125780954957,0.17661559022963047,-0.44773793406784534,-0.564757389947772,0.6595403007231653,0.8974349037744105,0.4948709961026907,-0.7082533300854266,-0.6336333551444113,-0.6559869339689612,0.13284110417589545,-0.12016492802649736,0.26512368442490697,0.16594288777559996,-0.9440908068791032,0.5827289177104831,-0.49538689013570547,0.5726558924652636,0.6343171237967908,0.3965364499017596,0.8815770936198533,0.9599610865116119,0.9448677720502019,0.8046515639871359,-0.4254592852666974,-0.19281360786408186,0.4306517653167248,-0.6714224172756076,0.21035855682566762,-0.858343000523746,-0.8644986674189568,-0.9641422112472355,0.25037781056016684,-0.18095014756545424,0.8595580025576055,0.7273645862005651,0.6175801609642804,0.2832398498430848,0.07276474498212337,-0.08959842380136251,-0.8950963937677443,0.6201366912573576,-0.7815862447023392,-0.7349134031683207,-0.9934658873826265,-0.9338995269499719,-0.8275199644267559,-0.3941930686123669,0.09897550847381353,-0.46947369864210486,-0.16422203090041876,0.6879563927650452,0.24300401005893946,-0.5482851807028055,-0.7912944336421788,-0.8337219725362957,0.29026801604777575,0.27452200138941407,-0.16594159277155995,0.39715952426195145,-0.8153245914727449,-0.1623215856961906,-0.7887926171533763,-0.030486637726426125,0.9283145349472761,0.5674690972082317,0.3207835550419986,0.6743263588286936,0.8742560530081391,0.8495783368125558,-0.22854634514078498,0.6496942825615406,-0.6403527273796499,-0.03421644680202007,0.7917124140076339,0.06671383697539568,-0.224358634557575,-0.930617421399802,-0.26428954396396875,-0.8659212402999401,-0.1627511065453291,0.8375340211205184,0.6882511465810239,0.22079146653413773,-0.3404074124991894,-0.9908305262215436,-0.1845315583050251,0.28446543915197253,0.6508700475096703,-0.2947463491000235,-0.3526276797056198,0.7695795432664454,0.9495168658904731,0.9871842553839087,-0.3352311849594116,-0.634997121989727,0.22162610525265336,0.9172469368204474,-0.8601253018714488,-0.6055938256904483,0.1300363875925541,0.8788856002502143,0.38277243729680777,0.739641941152513,0.41602070815861225,-0.15755408024415374,0.3095715744420886,-0.33231036737561226,0.04183934489265084,0.9713465790264308,-0.9570903060957789,0.7968533770181239,0.9563241694122553,-0.2196736871264875,-0.9855698244646192,0.028848244808614254,-0.38236169470474124,0.3640174176543951,-0.18020811583846807,-0.15028544841334224,-0.035073979292064905,0.3083687643520534,0.38605859549716115,0.8002362395636737,-0.09684370830655098,-0.9958272646181285,-0.878907922655344,-0.9228922622278333,-0.859122512396425,-0.6506714443676174,-0.01253538765013218,0.14632948907092214,0.36616000160574913,-0.5458363587968051,0.5490479529835284,0.9176684780977666,0.039303242694586515,0.2711067092604935,-0.8669592845253646,-0.6664934633299708,0.06186217302456498,0.27451901137828827,-0.8782948711887002,0.7824000041000545,-0.051748381461948156,-0.009061896707862616,-0.7600519363768399,0.9217103733681142,0.6142232385464013,0.11161121819168329,-0.9914493020623922,0.11722646141424775,0.2848559645935893,-0.5201170132495463,-0.19160833582282066,-0.6849453477188945,-0.7608664599247277,-0.9501859224401414,-0.9453296312130988,0.7457836694084108,0.5461470265872777,-0.5768892960622907,0.9363949801772833,-0.509844062384218,0.2388064730912447,0.8007001178339124,-0.953661625739187,0.25518557522445917,-0.5784117355942726,0.397300164680928,-0.8082642345689237,-0.789915906265378,0.2019444745965302,0.10443779779598117,0.23258687229827046,-0.627921367995441,0.739049072843045,0.26511170994490385,0.8905221684835851,0.04306371184065938,-0.23760063294321299,0.8774026683531702,-0.8346520811319351,-0.17310754861682653,0.9410900603979826,-0.919299098663032,0.9412509142421186,0.4180690417997539,-0.600575917866081,0.2708296459168196,-0.03703386057168245,-0.6232868018560112,0.8101653796620667,0.255223719868809,0.7598686134442687,0.5464926133863628,0.9084728457964957,-0.02449675463140011,0.6592806507833302,-0.4957487746141851,0.6612032363191247,0.49986944580450654,0.7282493668608367,-0.33218903420493007,-0.40321429213508964,-0.3205784009769559,0.627998995129019,0.7835053433664143,-0.3506783079355955,-0.03018964407965541,-0.2517745797522366,0.2536333831958473,0.5664579053409398,0.06448524631559849,0.1956441644579172,0.08338960958644748,0.13217728165909648,-0.5099005289375782,0.36446652840822935,0.7689961213618517,-0.6826153425499797,-0.0918014282360673,0.09678078535944223,-0.7476073591969907,0.3817026359029114,0.4416736988350749,-0.7406909791752696,-0.7207187139429152,0.6078889239579439,-0.46476519806310534,-0.3497236119583249,0.40485983481630683,-0.3577682264149189,-0.5646513714455068,0.455805127043277,-0.19068012200295925,0.6643581772223115,-0.49434551456943154,0.8600823562592268,0.7653218125924468,0.9037255351431668,0.7103854636661708,0.8692252673208714,-0.8440521475858986,-0.8076612008735538,0.7142765177413821,-0.8180380291305482,-0.011697438079863787,-0.8067017388530076,-0.6082994779571891,0.7360135489143431,-0.040886057540774345,-0.0921993856318295,0.7730478127487004,0.3304395186714828,0.7176697687245905,0.9658054746687412,-0.151228834874928,0.6474326085299253,0.4891624078154564,-0.14315108908340335,0.8531153001822531,0.43539521656930447,-0.699503043666482,0.6530364332720637,-0.6229888494126499,0.03668228816241026,0.7344000041484833,-0.07502698060125113,0.7466760319657624,0.06135070975869894,-0.19078752538189292,0.44627792621031404,-0.6543659986928105,-0.01955464668571949,-0.1400144756771624,0.1226796405389905,-0.2156537906266749,0.20644551049917936,0.6845943504013121,-0.7436174852773547,0.07713603135198355,0.06989010004326701,0.20848026871681213,0.10817164089530706,-0.7658688412047923,0.8081147237680852,-0.6884327167645097,-0.670381392352283,-0.5778403249569237,-0.10887518152594566,0.5139473448507488,0.6467888979241252,-0.13548831501975656,0.6669421344995499,-0.415875687263906,0.8069109576754272,0.055127470288425684,-0.4600092791952193,0.178517356980592,-0.16466497629880905,0.27037049178034067,-0.3878927822224796,-0.18531809002161026,-0.6746695400215685,-0.874165600631386,0.934908586088568,-0.6413893271237612,0.6813482642173767,-0.9819723470136523,0.6100857444107533,0.06169860856607556,-0.562505058478564,-0.7889186730608344,-0.6041275532916188,0.06042881868779659,0.9739892883226275,0.9273191238753498,0.7779727233573794,0.6535985325463116,-0.8483689636923373,-0.8079785322770476,-0.3937609535641968,0.7747294912114739,0.2910458301194012,0.34036943735554814,-0.18287548702210188,0.7569862599484622,0.39054867858067155,-0.8721348461695015,0.4025697256438434,0.9956453111954033,0.33117374777793884,-0.044508412946015596,0.6705878870561719,0.3153484598733485,0.4898112094961107,-0.9240550049580634,-0.4298186884261668,0.613335074391216,-0.18563426611945033,0.4066367414779961,-0.2896429728716612,-0.6357909608632326,0.41814855905249715,-0.07154541928321123,0.7274713194929063,-0.5413555451668799,0.9177519343793392,-0.9809652711264789,0.16371538629755378,-0.4837736710906029,-0.9376417831517756,-0.5261384937912226,0.8639158806763589,-0.07590561965480447,0.0771174905821681,0.5929666375741363,0.880539586301893,-0.5906758555211127,-0.1503449361771345,0.24616850214079022,-0.1365331867709756,-0.02797552151605487,-0.5053885602392256,-0.630007563624531,-0.2625429704785347,0.29563505621626973,-0.871208212338388,-0.42450534645467997,-0.8307004445232451,-0.40877246810123324,-0.6168207181617618,-0.4118282147683203,0.9377628145739436,0.0060774097219109535,0.7169468179345131,-0.17991158505901694,0.7129105338826776,0.7833655970171094,-0.9679080401547253,-0.9555218005552888,-0.22950647119432688,0.7953440388664603,0.5465645981021225,0.23336540395393968,0.3669882994145155,-0.042725943960249424,-0.5357664446346462,0.0634485362097621,-0.9709330201148987,0.20763775007799268,-0.2979045482352376,-0.8636229578405619,0.00382144283503294,-0.27895489940419793,-0.8558276845142245,-0.6607571006752551,-0.7176112341694534,-0.4405459980480373,0.764248191844672,-0.024041416123509407,-0.21384651400148869,-0.7963116602040827,-0.9504182268865407,-0.9136878419667482,0.4710551588796079,-0.09006142523139715,0.734223545063287,-0.4725155155174434,-0.6080898498184979,0.8707144442014396,-0.24427773570641875,-0.0048688920214772224,-0.9673021738417447,-0.2560012387111783,-0.20267551764845848,0.9652464231476188,-0.09866918111220002,-0.3781278105452657,0.5133165074512362,-0.5847800066694617,0.10304687218740582,-0.49712179880589247,-0.43020422058179975,0.9488001773133874,0.060420970898121595,-0.2471105051226914,-0.16742802504450083,-0.005618880037218332,0.8142017126083374,0.08882196014747024,-0.6924358527176082,-0.06491931015625596,0.3191792047582567,0.12053812853991985,0.9198505408130586,0.39387197280302644,-0.6097552618011832,-0.6749124070629478,-0.1570714246481657,-0.4668477978557348,0.29048530105501413,-0.6490125567652285,0.1086763902567327,-0.10432088049128652,-0.8160932324826717,-0.8051305273547769,0.32280565379187465,0.427054213359952,0.31139548821374774,0.3302405080758035,0.6866687932051718,0.06161211850121617,0.6826545135118067,-0.25610616616904736,0.5360511774197221,-0.43278717156499624,0.970261778216809,0.1616118703968823,0.24195695389062166,0.36538984859362245,-0.6824486400000751,-0.5215464904904366,-0.1789121893234551,0.4770720237866044,-0.6584498807787895,-0.0302458880469203,0.4380244258791208,-0.5899646482430398,-0.7359662665985525,-0.11714751133695245,0.9414719678461552,0.9068837664090097,-0.4858959629200399,0.6055079153738916,0.8403819683007896,-0.9277883707545698,0.47631858801469207,0.6336346259340644,-0.3923344532959163,-0.4131054235622287,-0.31210162164643407,0.17128058755770326,-0.4756495412439108,0.6825473876670003,-0.9165853881277144,0.1387489470653236,-0.8033390664495528,-0.21365220099687576,0.38701285887509584,0.05861396016553044,0.248117012437433,0.9522164203226566,-0.20757837733253837,-0.7652007485739887,0.09895987715572119,-0.6053081294521689,0.8444771198555827,0.9227377609349787,0.3898123949766159,0.36714978283271194,0.6768831685185432,0.7742833755910397,-0.6172495456412435,0.8761583627201617,0.24535524239763618,0.7100346675142646,-0.7290791547857225,-0.25967503106221557,0.20190363144502044,-0.44116849917918444,-0.10373737290501595,-0.6619259994477034,0.7383644906803966,0.1342719839885831,-0.05356043018400669,0.46672093123197556,-0.274453429505229,-0.33755950117483735,-0.48695614002645016,0.4915386037901044,-0.8291125721298158,0.0033553135581314564,-0.9739282187074423,-0.10441600577905774,0.4923904133029282,0.3024826692417264,-0.6701585198752582,0.7665611784905195,0.9419587668962777,0.6177739002741873,0.3719601100310683,0.4982704594731331,-0.6536573525518179,0.8394595081917942,0.9102245094254613,0.233465064316988,0.9273182097822428,0.5933036566711962,-0.5432178634218872,-0.5520262024365366,-0.26517465338110924,-0.6244399310089648,0.696683987043798,0.19836245104670525,-0.23116621561348438,0.12856239266693592,0.11314465384930372,-0.387386885471642,-0.6892666397616267,0.16849430045112967,-0.93699642829597,0.06794106401503086,0.2629208588041365,-0.11566043691709638,-0.8646475556306541,-0.20365920290350914,0.6014932589605451,-0.4606476416811347,0.6287899226881564,-0.28499110927805305,0.11542530031874776,0.897676735650748,0.6449812683276832,0.6983570070005953,0.9445003210566938,0.6455896189436316,-0.15433672303333879,0.5818506898358464,-0.12531256675720215,0.2671106751076877,0.41659690300002694,0.44602970452979207,-0.9821058358065784,-0.7976024774834514,0.7571770716458559,0.9286708091385663,-0.0499258185736835,-0.09051655372604728,0.8868080815300345,0.5630739131011069,0.9241266716271639,-0.26561302365735173,0.12381468899548054,-0.2748248651623726,-0.8843673001974821,-0.7001014277338982,0.6449778717942536,0.8579578092321754,-0.5865134615451097,0.3274124376475811,-0.8991994778625667,0.8649417525157332,0.18014865089207888,0.2328911628574133,0.21942510269582272,0.8340148339048028,-0.27197871124371886,0.4971521543338895,-0.35302527621388435,0.7577783321030438,-0.01499485271051526,-0.26995605137199163,-0.5482541201636195,-0.013500489760190248,-0.05640002712607384,-0.12340831104665995,-0.6291878712363541,-0.7683117627166212,0.17886582668870687,-0.05814254004508257,-0.13711546501144767,0.1464197072200477,-0.036984723061323166,-0.9960960149765015,0.40529127418994904,0.6386473700404167,-0.3431068859063089,-0.10246612969785929,0.9981754845939577,-0.0027035721577703953,0.32592121604830027,0.5974149303510785,0.8797900853678584,-0.3710936475545168,-0.604002202861011,-0.17519897362217307,0.23497206112369895,0.4784359810873866,0.7393746846355498,0.06003933819010854,0.46093517960980535,-0.8055593315511942,-0.7009414900094271,0.4189478373154998,-0.5534280324354768,-0.6373770032078028,0.9795454801060259,-0.385895520914346,0.7523444183170795,-0.6218960946425796,-0.5872678803279996,-0.5209635044448078,-0.8277432345785201,-0.14483345346525311,0.48529993928968906,0.7417376721277833,0.09384571202099323,-0.6256100940518081,-0.5279202344827354,0.43880883883684874,0.5896891476586461,0.3007814106531441,-0.702174486592412,0.28894400503486395,0.6502491822466254,0.37823898857459426,-0.6815984598360956,-0.6585228373296559,0.7466404270380735,-0.8033642307855189,0.6884223911911249,0.9950139303691685,0.6346158008091152,-0.8563319970853627,-0.09188823541626334,-0.17605374474078417,0.5889387456700206,0.5138772814534605,-0.22756691230461001,0.4137353543192148,0.45053493278101087,0.6041069314815104,0.3918573809787631,0.2351712128147483,-0.33214197820052505,0.6213892623782158,-0.7824200983159244,0.07563560316339135,0.5241587739437819,-0.2744205850176513,-0.5802602209150791,-0.46186956902965903,0.9132449496537447,-0.07561360485851765,0.3615102614276111,-0.34266935614869,-0.3879523822106421,-0.12290851073339581,0.17701764544472098,0.36099759489297867,0.987355655990541,-0.40679184114560485,-0.8715126547031105,-0.5097218281589448,-0.8232557345181704,-0.32516853604465723,0.5067139808088541,0.00041926559060811996,-0.6615697802044451,-0.7550648143514991,-0.8618018464185297,-0.9175139497965574,-0.44016722263768315,0.7935952758416533,-0.16423238115385175,-0.17948404466733336,0.9903225474990904,0.6477800011634827,-0.6340822377242148,-0.12846352811902761,-0.43812826089560986,0.5284537356346846,-0.6415456719696522,0.11826950078830123,0.7361483299173415,-0.49576913891360164,0.16891173040494323,0.7986329351551831,0.9265509531833231,-0.24244551500305533,0.579132255166769,-0.830349697265774,0.8029883145354688,0.8612982016056776,-0.49230759078636765,-0.40007244469597936,0.6075731976889074,0.05748696671798825,0.4153330149129033,0.14143102383241057,-0.7474149097688496,0.36046096216887236,-0.30056134471669793,0.403105478733778,0.29513697139918804,-0.637460676021874,-0.2036044169217348,0.6723751733079553,0.20102620590478182,-0.27571925474330783,-0.3834508857689798,-0.09227221831679344,-0.9960949872620404,0.8325638202950358,-0.36457242351025343,-0.6623468003235757,0.6742895278148353,0.16504669096320868,-0.2929445677436888,-0.9737271764315665,-0.4027941464446485,-0.6036820793524384,-0.7355463393032551,0.17664633924141526,0.47087900387123227,-0.6189745180308819,0.008335444144904613,0.801263574976474,0.8869714373722672,-0.22292713588103652,-0.19644854543730617,0.3761861720122397,0.9202862563543022,-0.32231860095635056,0.06905982224270701,0.576537739019841,-0.740523595828563,-0.2075006114318967,0.5627413876354694,0.8819991378113627,-0.062247587367892265,0.9621822000481188,0.592665028758347,-0.7326481337659061,0.13021547766402364,0.2334339334629476,-0.648891020566225,0.32557924278080463,-0.5197829408571124,-0.5034564416855574,0.1545018064789474,-0.959036935120821,0.9166868929751217,-0.46836561243981123,0.23313415329903364,-0.08786793472245336,-0.13591407611966133,-0.47016280284151435,0.9652273771353066,0.9329390279017389,0.8075936306267977,0.5548672545701265,0.4450773196294904,0.19332359312102199,0.45072386087849736,0.16299802204594016,0.14786017499864101,-0.5039452607743442,0.5171565124765038,-0.39531935937702656,-0.48788053169846535,-0.2905054506845772,0.2684173625893891,0.2673679147846997,-0.8427956611849368,-0.832348131109029,0.29824263602495193,-0.1822731397114694,0.26717499596998096,-0.4943202310241759,-0.9376787869259715,-0.6450499659404159,-0.8440441726706922,0.03944044420495629,-0.5052480581216514,-0.9241021373309195,-0.2894234680570662,-0.7735492740757763,0.6767329452559352,-0.452267671469599,0.14695988781750202,0.4030195530503988,-0.3275699196383357,-0.2222724580205977,-0.32974874787032604,0.14452393632382154,-0.36039053136482835,-0.7743334039114416,0.17265562526881695,0.5428275386802852,-0.44581535877659917,-0.4349371953867376,-0.47916367230936885,0.052043326664716005,-0.28623191686347127,-0.7270964086055756,-0.7225066996179521,-0.9525744863785803,-0.37795891566202044,0.6631886600516737,-0.7721449374221265,0.671292383223772,0.41958964522928,-0.44984574150294065,0.403310879599303,-0.3941265298053622,0.2593424655497074,0.07739920308813453,0.18991338182240725,-0.8723534871824086,-0.8141738590784371,-0.5698469686321914,0.15132616413757205,-0.09437961736693978,-0.9709890219382942,-0.5632187216542661,-0.1399876419454813,-0.013830912299454212,-0.9184336750768125,0.5854740375652909,-0.9747354257851839,0.41113906307145953,-0.1537549840286374,-0.8666110481135547,0.15731219900771976,-0.9413087852299213,-0.674171359743923,-0.7292210622690618,0.9847451546229422,0.37521032290533185,0.12040752731263638,-0.1686006672680378,0.21573800453916192,0.8998931315727532,-0.4027536017820239,0.4710794505663216,0.09591530542820692,0.4215401648543775,-0.9537144606001675,0.8854618552140892,0.22727358154952526,-0.45336996112018824,0.6514247939921916,-0.9744135388173163,-0.2957706511951983,0.7599859670735896,0.6102113844826818,0.032235209830105305,0.12012031488120556,0.6686193812638521,-0.6741867451928556,-0.3858128674328327,0.48678040923550725,-0.11914220871403813,0.709262931253761,0.11390128266066313,-0.8824146869592369,0.617544261738658,-0.8377396310679615,-0.49504835391417146,-0.7024689563550055,0.6162002081982791,0.7782923341728747,-0.16146679129451513,-0.2695629158988595,0.6919927885755897,-0.07092557335272431,0.9930897727608681,-0.5316453599371016,0.3114753756672144,0.2856745086610317,-0.32655556173995137,0.2748284861445427,-0.4301616153679788,-0.9542675674892962,-0.1199739663861692,-0.3546563354320824,-0.9838099484331906,0.20526606822386384,-0.05542884999886155,0.6301639904268086,0.47116833832114935,-0.687308746855706,-0.7082487484440207,-0.2549028811044991,-0.9967140555381775,-0.7284524375572801,-0.8153396877460182,-0.5656268340535462,0.9214922171086073,-0.8320709238760173,-0.20822749426588416,-0.037127540446817875,-0.7653372869826853,-0.061361437663435936,-0.10503330221399665,0.11001874599605799,-0.2256067651323974,0.8526981379836798,-0.4035086682997644,-0.17035749182105064,-0.3952713147737086,0.4316375064663589,0.20897673070430756,-0.8045678581111133,0.7088122628629208,0.3408222133293748,-0.25075481785461307,-0.04804614884778857,0.15210474049672484,0.6393397734500468,-0.019069822505116463,-0.571646825876087,0.9919322524219751,0.4836748791858554,0.38986538304015994,0.10682248836383224,0.6056645638309419,-0.08782673720270395,0.9189636996015906,-0.9022496822290123,0.09099641675129533,0.7118319678120315,-0.06705889152362943,-0.9624076685868204,-0.9409743212163448,0.5549751287326217,0.46205556858330965,-0.43054037913680077,0.8650050009600818,0.6510669910348952,-0.20921731973066926,0.10519859381020069,0.6226118225604296,0.210818643681705,-0.6918010064400733,0.08719721203669906,0.5336561030708253,-0.9752264735288918,0.7676906553097069,0.9428129950538278,-0.3660278762690723,0.5262523763813078,-0.9378457027487457,0.8600531490519643,0.6499704499728978,-0.5262966882437468,0.6830998961813748,0.716579859610647,-0.9658383689820766,0.4917263174429536,-0.7883918294683099,-0.6912225922569633,0.7790776402689517,-0.6985361319966614,-0.16396962059661746,0.7720431769266725,0.99664206802845,-0.9168797838501632,0.40119887236505747,0.3304419182240963,0.5850074235349894,-0.8864536043256521,0.3982713259756565,0.5240110009908676,-0.21278562676161528,0.10892321122810245,-0.8510620431043208,0.09971788991242647,-0.6779412892647088,-0.10374701116234064,-0.09452447295188904,-0.5226582479663193,0.6930267009884119,-0.8951243055053055,0.9248001677915454,0.4590731686912477,-0.3234737142920494,0.4699902511201799,0.5887884157709777,-0.7741484511643648,0.20599437691271305,-0.48134561674669385,-0.3893083492293954,-0.6153654116205871,-0.13443406345322728,-0.9051593295298517,0.8951694015413523,0.6396821090020239,0.6587152942083776,-0.5079007958993316,0.3987418720498681,-0.4747981559485197,0.16112249298021197,-0.16154158534482121,-0.8766813348047435,0.3492917795665562,0.3870026455260813,-0.5732457493431866,-0.3622888633981347,0.8521780595183372,-0.5904587437398732,0.9386823889799416,-0.928189039696008,-0.016478207893669605,-0.43956605484709144,0.6656232927925885,0.083192840218544,-0.503702933434397,0.4348336895927787,-0.19231719663366675,-0.7843035799451172,-0.45491458801552653,-0.789337245747447,-0.043025271501392126,-0.5880066473037004,-0.9854753627441823,0.770196111407131,-0.408461838029325,-0.5005050553008914,0.5246828426606953,-0.2675677235238254,-0.3773524225689471,0.41973689943552017,0.17609157133847475,-0.5091821090318263,-0.6770135750994086,-0.5091612027026713,0.9731579488143325,-0.5242675552144647,-0.5190633684396744,0.22987424256280065,-0.802485337946564,-0.5396375083364546,-0.36400269996374846,-0.34101841039955616,-0.14404471404850483,0.6026354250498116,0.7754011987708509,0.8012599195353687,-0.29298907797783613,0.80334233911708,0.7991585554555058,-0.8769388352520764,-0.27635756181553006,0.7270511044189334,-0.3602233799174428,0.8043232727795839,-0.14677068497985601,0.8034588755108416,-0.25112165743485093,0.2695354809984565,0.3285084697417915,-0.21201751520857215,-0.7198901670053601,0.7167241214774549,0.6920825080014765,0.4475894821807742,0.4658812894485891,-0.31148603092879057,-0.19881940353661776,-0.17534818733111024,0.9785152249969542,-0.6669625272043049,0.5348256337456405,0.09766071010380983,-0.43564579309895635,0.6168131115846336,0.5148549396544695,-0.9050009893253446,0.7017984995618463,-0.7657374944537878,0.63118458352983,-0.4502466535195708,0.7186741447076201,-0.012533855624496937,-0.6026229583658278,-0.8955310760065913,0.5182977477088571,-0.6265033376403153,-0.6564722387120128,-0.13790864823386073,-0.7509164954535663,0.5309988078661263,-0.904412486590445,-0.2112818737514317,0.8924539005383849,-0.3843399425968528,0.040036363527178764,-0.004246202763170004,-0.3123699831776321,0.9233595156110823,0.21750434720888734,-0.35841607255861163,0.4467724310234189,-0.3094019163399935,0.9599251411855221,-0.273609499912709,-0.5999984792433679,0.44293989334255457,-0.8397588427178562,-0.8579823817126453,-0.46135677630081773,-0.1540232920087874,0.1264299089089036,0.31797549966722727,0.29082797188311815,0.7329729646444321,0.022912247572094202,-0.4680158318951726,0.6368664079345763,-0.5937856631353498,-0.44639892829582095,0.29423339711502194,0.9682442145422101,0.9121918771415949,0.19686186127364635,-0.8065083594992757,-0.6772657879628241,0.49942351039499044,-0.13012985233217478,0.9858925491571426,0.12660986883565784,-0.2684725443832576,0.47478862572461367,0.7985500637441874,0.25373693322762847,0.4466673983260989,0.211255912669003,-0.6269884523935616,-0.35387826012447476,0.8528855098411441,-0.8934867414645851,-0.6902648089453578,0.48603026662021875,0.9565011435188353,0.058779819868505,0.7790951165370643,-0.548683023545891,0.40669107204303145,0.10629097186028957,0.5618805307894945,-0.10945773590356112,0.5294843800365925,0.11593986162915826,0.16042375657707453,0.02374340035021305,-0.6451535057276487,-0.6717839781194925,0.9688606662675738,0.3438005428761244,-0.6321104532107711,0.09734589466825128,-0.5750990179367363,0.38762864517048,-0.9437489556148648,0.7271494516171515,0.7906097550876439,0.1380442725494504,-0.741948967333883,0.08015727484598756,0.7274430114775896,-0.08474967582151294,-0.09417413920164108,0.0326134585775435,0.5675341803580523,-0.4572875457815826,0.8928506625816226,-0.2557642222382128,0.44872900657355785,0.5124888019636273,-0.8637713491916656,0.8505680910311639,-0.6604030644521117,0.13432613061740994,-0.10295298416167498,-0.7834732215851545,-0.033888948149979115,0.3286069091409445,-0.14040174847468734,-0.482252714689821,-0.51663808664307,-0.9436215455643833,-0.05956289637833834,-0.9019907396286726,-0.297284918371588,-0.5105696404352784,-0.6766413785517216,-0.4398085535503924,0.3291395348496735,0.68288699304685,-0.3149659316986799,-0.7180682397447526,-0.6845515985041857,-0.3076799646951258,0.7081553465686738,-0.3066103719174862,0.9197301110252738,-0.8070313627831638,-0.7875856650061905,-0.25382728036493063,-0.5563435242511332,-0.380514919757843,0.8789147734642029,-0.5806786823086441,-0.1228017476387322,-0.07519501587375998,0.9887969205155969,0.5563903148286045,0.16213388741016388,0.61446996871382,0.3537852861918509,-0.24209217680618167,-0.4275872865691781,0.9440528475679457,-0.48250721022486687,0.9087901385501027,-0.6413749014027417,-0.9164171381853521,0.2183516537770629,-0.04927812796086073,0.2626772476360202,-0.4388451329432428,0.892342806328088,-0.21855849027633667,-0.4436628404073417,0.7054314920678735,0.5231894985772669,-0.490205779671669,-0.0520700654014945,0.132969890255481,0.6779580814763904,0.9318785155192018,-0.224702725186944,0.8780467729084194,-0.5260318187065423,-0.6791205839253962,0.6006462792865932,0.05769932270050049,0.3683171346783638,-0.22997082164511085,-0.3786591440439224,0.8435183283872902,-0.8927669716067612,0.16523399949073792,0.6783600198104978,-0.12076217215508223,-0.01092530321329832,0.859232691116631,0.40180942974984646,0.40510437451303005,0.5993893328122795,0.9762460109777749,-0.12636824836954474,-0.47517193853855133,-0.9086879603564739,0.8434425764717162,-0.6184853105805814,-0.39608826488256454,0.9572253827936947,0.47488668421283364,-0.22805875167250633,0.36736502684652805,-0.4881734768860042,-0.36516907531768084,-0.24832834396511316,0.17316689062863588,-0.8957358808256686,-0.2954414552077651,-0.561546363402158,0.594585136976093,-0.5126462019979954,-0.617119746748358,-0.8267489043064415,-0.0032087210565805435,0.4229899807833135,0.7571590538136661,-0.8117183297872543,-0.8124247658997774,-0.3131605531089008,-0.4105398845858872,0.07170574413612485,-0.32157684909179807,0.41937879379838705,-0.3634854406118393,0.15773393120616674,0.7157372557558119,-0.1044041714631021,0.35739044146612287,0.49618661077693105,-0.9803740074858069,0.22532492922618985,0.744758459739387,-0.17132805939763784,-0.3496378627605736,0.23090046271681786,-0.05139650125056505,0.5097789159044623,-0.18843170069158077,-0.8587839403189719,-0.07607259973883629,-0.2369709899649024,0.6998846004717052,-0.24898691242560744,0.3843913562595844,0.35742822382599115,0.5715061612427235,0.5330461109988391,-0.7498758765868843,-0.03034670790657401,0.7899817605502903,0.6970048914663494,0.673911050427705,0.4954401757568121,-0.07465142104774714,0.26143505005165935,-0.9871815070509911,-0.018053352367132902,0.13333938224241138,-0.5713664321228862,-0.8352156360633671,-0.8301020208746195,-0.5056422268971801,0.32685864996165037,-0.6447143601253629,-0.6265810425393283,-0.3834222396835685,-0.7179555417969823,-0.10056405840441585,-0.8364309458993375,-0.27102229557931423,0.6137681161053479,0.5655481871217489,0.9474146165885031,-0.46647644555196166,-0.42425409192219377,-0.20940478006377816,-0.5960186859592795,-0.005494382232427597,0.07257650280371308,-0.6833638562820852,0.8391478010453284,0.37594437692314386,0.38164757192134857,0.7234307257458568,0.26676801266148686,-0.7737093749456108,-0.06787140294909477,-0.0032355147413909435,-0.3375359303317964,-0.7731600496917963,0.7402589856646955,-0.39624466421082616,0.7826763559132814,-0.7704669674858451,0.3143358384259045,-0.5346119771711528,0.010589588433504105,-0.038588650058954954,-0.7186399111524224,0.802189561072737,-0.010721205733716488,0.6523499642498791,0.2952990592457354,-0.7381669036112726,0.7346727438271046,0.6614103917963803,-0.7597889886237681,0.8691294901072979,0.785032267216593,-0.7616856372915208,0.3926720852032304,-0.7764232251793146,0.7807363923639059,0.16037474060431123,-0.9827345325611532,-0.32622441835701466,-0.6900590918958187,0.9745173212140799,0.41507271211594343,-0.7324415519833565,-0.16234861547127366,-0.5767642552964389,0.12139649223536253,-0.34228215366601944,0.17818837380036712,0.1360271880403161,0.46748038521036506,-0.5272947177290916,-0.9371386989951134,0.5777532504871488,0.7403107532300055,-0.3041931437328458,0.0013620140962302685,0.42469534184783697,0.8706474942155182,0.068529415410012,0.9562055598944426,-0.2630511550232768,-0.0877299951389432,-0.0542149948887527,-0.4686649888753891,-0.9646167778410017,-0.7067661918699741,-0.41057064197957516,-0.6862596231512725,0.4192990455776453,0.18014847533777356,-0.16918057389557362,-0.6616705153137445,0.232421537861228,-0.2935520834289491,0.1363723799586296,0.6283864099532366,0.6762193883769214,0.26671565417200327,0.2573432642966509,-0.3008544626645744,0.36785124288871884,-0.5142236445099115,-0.19050455186516047,0.5153235918842256,0.7838539239019156,-0.7340540578588843,0.37575118942186236,0.8777341563254595,0.4853584673255682,0.6581717669032514,0.7116680718027055,-0.6219964413903654,-0.4025179701857269,0.4102410110644996,0.07024205988273025,-0.19641968561336398,0.8928630254231393,-0.8293125461786985,0.8788718301802874,-0.05566312978044152,-0.1992284618318081,0.2728480463847518,-0.42791664600372314,0.4856782127171755,-0.6678641401231289,-0.9478526851162314,-0.9822788098827004,0.2978120781481266,-0.37702695606276393,-0.17534406390041113,-0.9716651402413845,0.11266949633136392,0.9652276230044663,0.16395714785903692,0.8250725674442947,-0.7813532683067024,-0.8275345917791128,0.9174339002929628,-0.5414064326323569,-0.600157318636775,-0.8137676855549216,-0.37230234593153,-0.5425620661117136,0.28045774111524224,0.837177895475179,-0.10863061901181936,-0.9917527008801699,-0.7984836106188595,-0.32239197427406907,-0.9494042773731053,0.9113960126414895,0.406695949845016,0.09479680238291621,0.9595187003724277,-0.8598419246263802,0.03362276358529925,-0.4889148394577205,0.40881177969276905,-0.6968941208906472,-0.23231613030657172,-0.24958170391619205,-0.6996046383865178,-0.12342388927936554,0.41658479534089565,0.4169458495453,-0.16291272547096014,-0.9735322599299252,-0.15631876839324832,0.2994354506954551,-0.9923204709775746,-0.8176045585423708,0.9889514837414026,0.8402241421863437,-0.6737876972183585,-0.9339879006147385,0.18685454921796918,0.7375971898436546,-0.6159948143176734,0.667305123526603,0.21865733340382576,-0.8052346743643284,0.8750999285839498,-0.6234585363417864,-0.3619901556521654,0.8240254926495254,0.03300501545891166,0.9103220105171204,-0.46998370718210936,0.3738721236586571,0.16426672646775842,-0.3887164485640824,0.1346902926452458,-0.257969968020916,0.14080417156219482,-0.7848661323077977,-0.05081048561260104,-0.14309197943657637,-0.7079705060459673,0.474740422796458,0.47191464016214013,-0.8148536593653262,-0.395228429697454,-0.4390744692645967,0.29891021316871047,-0.8110897797159851,0.39760254975408316,-0.9237218066118658,-0.23546391818672419,0.21357933431863785,-0.5156412776559591,0.27757652290165424,-0.7030022945255041,0.5546995564363897,0.5127901257947087,-0.5795360933989286,0.9436778570525348,0.4295971719548106,0.7662783972918987,0.03309107385575771,-0.8297563064843416,0.6238908329978585,-0.3698151255957782,0.92937680054456,-0.9100805795751512,0.2285771262831986,-0.754001225810498,0.4906499069184065,-0.5808344464749098,0.16667164117097855,0.09129922883585095,-0.04702666541561484,-0.6387826865538955,0.18289239099249244,-0.6158459214493632,-0.3934425381012261,0.5085863736458123,0.03910018038004637,-0.7913922155275941,-0.9220147505402565,0.3949289498850703,0.6303882575593889,-0.8118079989217222,-0.5758388922549784,0.33179326821118593,-0.013601636979728937,-0.4056007140316069,-0.7163597559556365,-0.37892461009323597,-0.5246036406606436,0.7239917838014662,-0.6298738988116384,0.1464861356653273,0.426712853834033,0.3134428304620087,-0.6236206735484302,-0.5090628662146628,-0.9970599240623415,-0.6491443794220686,-0.04210925241932273,0.5905332937836647,0.2134219715371728,0.4782034642994404,0.6715555228292942,0.5269650388509035,-0.14910120097920299,0.9305302565917373,-0.8918403508141637,-0.12958936393260956,0.46424368070438504,-0.3887881706468761,-0.28336438490077853,0.8794219559058547,-0.12252842029556632,0.055622125044465065,0.8548949044197798,0.3226892934180796,-0.500134062487632,0.4151172745041549,0.6659006359986961,-0.8592712604440749,0.19689113134518266,-0.4675496448762715,-0.838963164947927,-0.3750782613642514,0.5919596613384783,-0.38613053411245346,0.8252169322222471,0.1131312190555036,0.5729043451137841,-0.5735141658224165,0.021495926193892956,0.7300536683760583,-0.9741948847658932,-0.5839098202995956,0.13144143903627992,0.8679032330401242,-0.4991614683531225,-0.996168318670243,0.8465210068970919,-0.3025070554576814,0.08486823085695505,-0.7131839469075203,-0.9981148294173181,0.42662536492571235,-0.9849541778676212,0.7792550064623356,-0.4986655251123011,-0.018747686874121428,-0.9343597800470889,-0.7300336225889623,0.7010200037620962,-0.9637858523055911,-0.18367774784564972,-0.8503496367484331,-0.7745034690015018,-0.09281310439109802,-0.3966044755652547,0.13895233999937773,-0.7111373012885451,-0.4837799766100943,0.5417068465612829,-0.6874749725684524,0.7817367408424616,0.7067755283787847,0.05449610901996493,0.9303489909507334,0.28031464014202356,0.544626846909523,-0.404316249769181,0.9373711231164634,0.08019221387803555,-0.031988486647605896,0.6587444553151727,-0.1747934822924435,-0.19819456106051803,0.030787011608481407,-0.790678528137505,0.8112562987953424,0.18944965582340956,0.4965301505289972,-0.09289907896891236,0.24304911633953452,0.5424754917621613,-0.6388397514820099,-0.7838386339135468,0.5394091866910458,0.5204161107540131,-0.7117149163968861,-0.065378044731915,0.9449604656547308,-0.5616307836025953,0.3947811550460756,0.7146482621319592,-0.22748503554612398,0.6407337384298444,0.8712896686047316,-0.028343467507511377,-0.859428325202316,0.00018909433856606483,-0.5645556165836751,0.18761484697461128,0.48828913597390056,0.7319157500751317,0.3853334574960172,-0.6741532874293625,-0.48253324860706925,-0.5291617587208748,0.5768969501368701,0.694465346634388,0.7763023003935814,-0.9886846290901303,-0.03815192962065339,-0.7454499313607812,0.7670210669748485,-0.7721500503830612,0.09170976979658008,0.633782145101577,0.8055109693668783,0.5503983455710113,-0.7168706865049899,0.6089495238848031,0.7297041392885149,-0.9253557417541742,0.6588976234197617,-0.31300677079707384,-0.004880922380834818,0.20284499041736126,-0.3223417424596846,-0.09542545769363642,0.9668207550421357,0.3080249857157469,0.8000235194340348,0.002527635544538498,0.10853642364963889,0.6858750069513917,0.3157011461444199,0.38177104527130723,-0.3624164625070989,0.13038287358358502,0.1378255789168179,-0.895207220222801,0.03746262425556779,0.2855896442197263,0.4415410137735307,-0.04241710575297475,0.3178479075431824,-0.9531877976842225,-0.36207417864352465,-0.27697878098115325,-0.0699776210822165,0.21209301613271236,-0.6401777816936374,0.962960752658546,0.5612033875659108,0.7566088689491153,-0.7900942303240299,0.09539402183145285,0.11206267355009913,0.9374692942947149,0.5878200810402632,-0.31760778883472085,0.6069027837365866,0.9026233358308673,0.5411881092004478,-0.7750359009951353,-0.15828238520771265,0.05920048709958792,-0.43150140158832073,-0.682644628919661,0.4059881721623242,0.14332823734730482,0.9206931618973613,0.5123891471885145,0.2918127132579684,-0.18580363038927317,0.777439336758107,0.23049332154914737,0.3782989392057061,0.19791591679677367,0.27399248583242297,-0.646814102306962,-0.9264357876963913,-0.3275979906320572,-0.27876798436045647,-0.31464220955967903,0.7396034267731011,0.09856050927191973,0.32008536672219634,0.8353629847988486,-0.2646034527570009,0.2560003320686519,0.7511608530767262,-0.5357556170783937,-0.6316725718788803,-0.43874161783605814,0.3741252371110022,0.11495001055300236,-0.4116178979165852,-0.600934810936451,-0.932733403518796,-0.3695452678948641,-0.2584068034775555,0.7367139123380184,0.8130020289681852,-0.7294299555942416,-0.126476283185184,-0.5188817023299634,0.7427348913624883,-0.5152615890838206,-0.9369426318444312,0.16990796104073524,-0.6641435367055237,0.3971322225406766,0.26011926401406527,0.2577409096993506,-0.18379668798297644,0.3439486320130527,-0.43266668170690536,0.9298231191933155,0.2558718151412904,-0.15131003921851516,-0.26889929035678506,-0.6002222774550319,0.5623922953382134,0.36396897677332163,-0.013376156333833933,0.9477344434708357,0.5442689037881792,0.055888157803565264,-0.7628905628807843,-0.15921353548765182,-0.5282791247591376,0.6873118714429438,0.09396096644923091,0.8388519356958568,0.48872648226097226,0.6351762204430997,-0.8375244014896452,-0.4068801994435489,-0.6046108743175864,-0.3110801917500794,-0.24464753083884716,-0.1682878346182406,-0.30440146941691637,0.46815869119018316,0.8537363721989095,0.3811547737568617,-0.9510501231998205,0.4020875287242234,-0.773408361710608,-0.5746432738378644,-0.22010732861235738,0.6704717483371496,0.09002724476158619,-0.8486321740783751,0.9674768438562751,0.5485313716344535,-0.9798200000077486,0.34690511925145984,0.36806746711954474,0.15733189275488257,0.5931607894599438,0.6563557372428477,0.38804355449974537,0.3278995268046856,0.5278871413320303,0.19945915276184678,0.8216715031303465,-0.3053492265753448,-0.24850565567612648,0.6243652100674808,0.9143961630761623,-0.6594839645549655,0.6695513487793505,-0.3202263005077839,-0.022725220303982496,-0.5309836696833372,0.32890621153637767,-0.8881520358845592,-0.30472435615956783,0.45835612853989005,-0.51417351141572,0.23716866597533226,0.09897103160619736,-0.33800078043714166,0.30793084437027574,0.4816571441479027,-0.10045887902379036,-0.033779326826334,-0.6612289440818131,0.7950809206813574,-0.9497393695637584,0.3483138713054359,0.6020404971204698,0.5909414617344737,-0.6490950188599527,-0.16420575883239508,-0.23104700725525618,0.8881610846146941,-0.9004395571537316,0.14379086066037416,0.5606980477459729,0.40596781531348825,-0.41323158284649253,0.8710737735964358,-0.9295370779000223,-0.5362068642862141,0.7391311749815941,0.4322314956225455,0.4085244219750166,-0.5307842860929668,-0.808672932907939,0.03133036522194743,0.9631726574152708,0.6964021571911871,0.23630315391346812,0.3380275974050164,-0.45909810066223145,0.570475303567946,-0.614939037244767,0.42100510420277715,-0.5769076347351074,0.5066129262559116,0.014859265647828579,0.8182354662567377,-0.5701119229197502,0.20662566972896457,-0.5306446007452905,-0.17651221994310617,-0.5799537571147084,0.7864978802390397,0.2327341348864138,0.023151503410190344,0.743967414367944,-0.9035262996330857,0.8653504913672805,-0.2496220520697534,0.18607082962989807,0.8496917923912406,0.1640415214933455,0.6892332946881652,-0.3999320464208722,0.028435757383704185,-0.18778788624331355,0.5841109845787287,-0.4649840625934303,-0.03304449701681733,-0.7009685700759292,-0.5212846230715513,-0.7885231049731374,0.6149970008991659,0.27576450631022453,-0.24615019094198942,0.3372292616404593,0.07736500119790435,-0.32277026679366827,0.612610574811697,-0.7355985473841429,0.05026254616677761,-0.41157270688563585,0.8876562099903822,-0.4991412693634629,0.1865835809148848,0.37634408427402377,-0.7745687928982079,0.4152359152212739,0.7049699584022164,-0.535979516338557,0.9285531979985535,0.8515275083482265,0.10145243676379323,0.5849652560427785,0.9972616378217936,0.7878765487112105,-0.7524594948627055,0.48087449045851827,0.4127569370903075,-0.40771909430623055,0.4889884954318404,-0.10330969374626875,0.6317301723174751,0.224650414660573,0.12772851856425405,0.044049765449017286,-0.3524384284391999,0.35332391830161214,-0.1692700730636716,0.29154170770198107,-0.39903048425912857,-0.5689267930574715,0.06030341703444719,0.6379172210581601,-0.8898415365256369,-0.8199660363607109,0.8462548241950572,0.4664899786002934,-0.33308186335489154,0.6942289457656443,0.7864527124911547,-0.4159263498149812,-0.3817328093573451,0.6529330895282328,0.31770165590569377,-0.4313638349995017,0.8979164152406156,0.10839132778346539,-0.8421690817922354,0.9131688843481243,0.6673499951139092,-0.8899762243963778,-0.6189723294228315,0.7903600335121155,-0.5676826233975589,-0.27989178663119674,0.01858152635395527,-0.1332311020232737,0.9602448926307261,0.5277289925143123,-0.6144521282985806,-0.2123640258796513,0.1272681402042508,0.13783942442387342,-0.7277047499082983,-0.8603127915412188,-0.5117975631728768,0.24147401098161936,-0.8894635709002614,-0.5108239939436316,0.8688397998921573,-0.7482085949741304,-0.10489359963685274,0.08115925826132298,-0.37844412634149194,0.19990187464281917,0.46579672349616885,0.012214782647788525,0.5314567312598228,0.26320112915709615,0.48477105144411325,-0.4549334514886141,0.6754707121290267,-0.6245954646728933,0.15434078220278025,0.7375564123503864,0.0038448316045105457,-0.5189495258964598,-0.285760750528425,0.7832513954490423,-0.928480417933315,0.970193344168365,-0.14464349253103137,-0.6045168237760663,-0.5421800785697997,-0.8689464633353055,-0.6623510522767901,-0.7821734109893441,-0.8149244510568678,-0.5370511221699417,-0.7437244262546301,-0.10693436535075307,0.17246595164760947,0.6278432393446565,0.9396738563664258,-0.9015997382812202,0.7941330415196717,0.2611868493258953,0.2931599011644721,-0.6759647452272475,-0.20560491317883134,0.6789776794612408,-0.7744347774423659,0.30009367037564516,0.8355468334630132,0.21445883950218558,-0.5287963384762406,-0.6239795158617198,-0.8356370790861547,0.7858976400457323,-0.002372580114752054,0.094722721260041,0.23729573097079992,0.14755450887605548,0.16382729075849056,0.0022178473882377148,0.4652357352897525,-0.24240818712860346,-0.5778158605098724,-0.15715252375230193,0.05742014478892088,-0.6854358655400574,-0.14296190487220883,0.7121626883745193,-0.0632988908328116,0.8210269585251808,0.31492816423997283,-0.2967415456660092,0.5853229966014624,-0.8987334496341646,-0.06087521370500326,-0.5061887591145933,0.67574995290488,-0.5924575105309486,0.9274403783492744,0.7354251239448786,0.6157859326340258,-0.6939930464141071,-0.17946068895980716,0.4806286860257387,0.9847410130314529,-0.9104115539230406,0.23738378938287497,-0.15160136623308063,-0.6352304881438613,0.0052567534148693085,-0.4231255301274359,0.78013347228989,0.160241290461272,0.831324802711606,-0.1484165769070387,0.40149514749646187,0.001603475771844387,0.36224544839933515,0.20392613718286157,0.4456594814546406,-0.33456307742744684,0.03494202299043536,-0.28064363822340965,0.6792558650486171,-0.1682614628225565,0.6299307835288346,-0.014731585513800383,0.6881869356147945,-0.00844268174842,-0.36839951761066914,-0.8028457877226174,0.8675022381357849,-0.396323102992028,0.14510844415053725,-0.6104985168203712,0.752687216270715,0.3332811617292464,-0.5590122030116618,-0.5092958081513643,0.4095635446719825,0.3136959825642407,-0.9632298024371266,-0.7404591636732221,0.6063870172947645,-0.24949557473883033,-0.9903108645230532,-0.6034027887508273,0.27750229742377996,-0.07624303922057152,0.978071937803179,0.3860468799248338,0.325055256485939,0.7392620290629566,0.6228607557713985,-0.12044641561806202,0.8075376856140792,0.17357312375679612,0.6012771739624441,-0.008100397884845734,-0.017000618390738964,-0.47943025827407837,0.6879117251373827,0.36256728461012244,0.45522172236815095,-0.7893830337561667,0.5570669290609658,-0.669075455982238,-0.19526192964985967,0.5540692694485188,0.032906653359532356,-0.155171487480402,0.5045880964025855,0.4313334724865854,-0.5138715454377234,0.3489122246392071,0.3066464406438172,-0.07221751939505339,0.564837992656976,-0.9501344044692814,0.1310355458408594,0.048404925502836704,0.5558278630487621,0.8338495842181146,-0.27055626921355724,-0.3532076352275908,-0.9312083553522825,0.1541923019103706,0.8399370121769607,-0.45459617814049125,0.01816363027319312,0.851530103944242,0.991749229375273,0.8821706469170749,-0.91670584352687,-0.6067970832809806,-0.5793600301258266,-0.9168999283574522,0.31115626730024815,0.2553993654437363,-0.9700051615945995,0.9610252161510289,-0.15671214926987886,0.3565371176227927,0.40786583023145795,-0.9766715061850846,-0.4203269309364259,0.689465063624084,-0.3831937536597252,-0.9343935730867088,0.4398672482930124,0.36108251148834825,0.3796026003547013,0.16008006688207388,0.04636815004050732,0.3869470525532961,-0.3545316783711314,-0.9163409559987485,0.3907758295536041,-0.637230983003974,0.4667700743302703,0.9275034833699465,0.9624324426986277,0.993978654500097,-0.43613028759136796,-0.3998678703792393,-0.38980052014812827,-0.9883175790309906,-0.087083893828094,-0.3783459309488535,-0.2505031689070165,0.25796476658433676,0.10692119877785444,-0.22193539375439286,0.21408036770299077,-0.37047302396968007,-0.5590378376655281,0.3301061359234154,0.9310941556468606,0.3295119134709239,0.1483141561038792,-0.6613578945398331,-0.708359133452177,0.7652337625622749,0.5940861846320331,-0.5422161612659693,0.052489873953163624,-0.1690831184387207,-0.6839194893836975,-0.41236418578773737,-0.5338746779598296,0.2405500803142786,-0.19506910257041454,0.9202454672195017,0.6522274687886238,-0.8889133990742266,-0.1869552843272686,-0.295023734215647,-0.6783690326847136,-0.2685865992680192,0.13785591255873442,0.7372551346197724,0.46112166065722704,-0.29422827810049057,-0.340233804192394,-0.30639065662398934,0.7596002323552966,-0.21493895538151264,0.6633528042584658,-0.3776797754690051,0.8517333404161036,-0.7904130346141756,-0.2231611213646829,0.41747030382975936,-0.430537017993629,0.4620042727328837,-0.45804460858926177,-0.9084110171534121,-0.05658450862392783,0.6907908082939684,0.32840755302459,-0.9046463258564472,-0.522677453700453,-0.5945298094302416,0.8037200779654086,0.23386309435591102,-0.001212249044328928,-0.2582934582605958,-0.1651580804027617,0.9980030711740255,-0.3487425521016121,-0.31793193565681577,0.46674040611833334,0.24006464518606663,0.14345089718699455,-0.12427478656172752,0.5801715031266212,0.1511410898528993,-0.6882573361508548,-0.0330166663043201,-0.6325753070414066,0.09863674640655518,0.12144381832331419,0.7492410335689783,0.38711299235001206,0.4713116455823183,-0.630032452289015,0.31832842342555523,-0.17555107828229666,0.8613652791827917,-0.27696330938488245,0.509429526515305,0.1796860327012837,0.41943473229184747,0.4674400379881263,0.4461695970967412,0.12338529666885734,-0.6872316976077855,-0.36044607032090425,-0.7022237130440772,0.4227282013744116,-0.0363396480679512,0.5689430390484631,0.00255440641194582,0.9007002105936408,0.890922982711345,0.8931490816175938,-0.7779538342729211,0.6325620948337018,-0.3550977543927729,-0.8140948782674968,-0.975257879588753,-0.45227623637765646,0.8532108967192471,-0.8641413548029959,-0.4873389699496329,-0.6928293164819479,-0.7101044319570065,-0.5781523282639682,0.5405800337903202,0.07486501196399331,0.10303992126137018,-0.5443927058950067,-0.6619406952522695,-0.09629570320248604,0.24261721456423402,0.4466687901876867,-0.0776956002227962,-0.7522121337242424,-0.9090571389533579,-0.7090734047815204,0.0479745720513165,0.14302417589351535,-0.8789227083325386,-0.4764410490170121,0.7435468225739896,-0.7428793366998434,-0.6872757966630161,-0.8275113943964243,-0.4533111439086497,-0.3787894919514656,-0.5464259004220366,-0.5515727489255369,0.8830076828598976,-0.4858227954246104,0.48529547126963735,-0.018639491870999336,0.16725468263030052,0.7087477250024676,0.680638391058892,-0.8152115913107991,-0.9406828177161515,-0.369441466871649,-0.25969507126137614,-0.5030611525289714,-0.7312328787520528,0.5284783095121384,0.1989553552120924,0.7874142020009458,0.1778937242925167,-0.4032277865335345,0.8468299531377852,-0.7825882066972554,-0.7800502367317677,-0.008348818868398666,0.577082232106477,0.03308975975960493,-0.29237472312524915,0.2605593027547002,0.4695177124813199,0.01851927675306797,-0.7771956431679428,-0.5409220475703478,0.9438106426969171,0.1148643079213798,0.8462456241250038,0.6595246521756053,0.49180806102231145,-0.5952056064270437,0.4581583486869931,0.3392576393671334,0.7051856713369489,0.714469120837748,-0.9993376852944493,0.6289326138794422,0.5453025558963418,-0.9395966115407646,0.21614241506904364,-0.8562387996353209,0.43007714999839664,-0.2515029120258987,0.48305470682680607,0.01918518729507923,0.2562009720131755,0.3511590245179832,0.5893362802453339,0.4472427726723254,0.08110492443665862,-0.4379985872656107,-0.7461754879914224,0.9945902172476053,0.5358888166956604,-0.8200135729275644,-0.35028677713125944,0.711898657027632,0.9794735522009432,0.8533885618671775,0.3970610862597823,-0.5632802858017385,-0.3050858457572758,-0.07134737120941281,-0.8276694966480136,0.8600061517208815,-0.1802300363779068,-0.47242286754772067,-0.6480825752951205,0.311857046559453,0.4102370962500572,-0.12154232710599899,-0.6283445563167334,0.046312105376273394,0.11996030248701572,-0.23542267177253962,0.9667877410538495,-0.14016729220747948,-0.2550926934927702,0.08034885209053755,-0.6800812007859349,0.3480786974541843,-0.12166396249085665,0.25517920358106494,-0.8871506825089455,0.8667653258889914,-0.4505073460750282,-0.321809075307101,0.6784263057634234,-0.46537787979468703,-0.5282861259765923,0.42371266474947333,0.8693806226365268,0.4045032551512122,0.9121201494708657,0.216202677693218,0.5477486266754568,-0.6665354180149734,0.4056114633567631,0.992598329205066,0.9962899833917618,0.299924258608371,0.5102652404457331,0.7290558209642768,-0.8495342745445669,0.20038955053314567,0.8387031485326588,0.3226766693405807,0.12758565694093704,0.41067342553287745,-0.5783146563917398,-0.6081875055097044,0.6609938973560929,0.654077990911901,0.10253215162083507,-0.21714606136083603,0.223528943490237,-0.1705624363385141,-0.4769653961993754,-0.42379122134298086,-0.1804139530286193,-0.43724228208884597,-0.08354333881288767,0.6092870403081179,0.6308656251057982,0.29985413746908307,-0.30867871595546603,0.009106879588216543,0.2949924641288817,-0.218354357406497,0.456607183907181,0.11721383081749082,-0.9286557706072927,-0.38097105640918016,0.1395057002082467,0.7768548461608589,-0.41656856797635555,0.5062237083911896,0.6310502751730382,0.27553353318944573,0.01102496450766921,0.2832480315119028,-0.7944364361464977,-0.48281381418928504,-0.24736454151570797,-0.5479696574620903,-0.515235104598105,-0.20771109499037266,-0.520340334624052,-0.4105143779888749,0.7997361100278795,-0.5522272302769125,-0.8282542661763728,-0.07873207982629538,0.9375000800937414,0.6318666166625917,0.017150589264929295,0.6540920250117779,-0.1854333388619125,0.1716287201270461,-0.013338647317141294,0.5559454914182425,-0.5879385345615447,0.4975357186049223,0.8318614116869867,-0.19023023871704936,-0.8772814897820354,-0.9983688918873668,-0.7641847371123731,-0.23551003774628043,-0.9069760493002832,0.6889320411719382,-0.06738624582067132,0.1774719525128603,-0.19302835315465927,0.4734909851104021,0.44715036544948816,-0.20982655137777328,-0.2184740174561739,-0.7746222177520394,-0.731345689855516,-0.28730180906131864,0.528144390322268,0.2706863470375538,0.5266505996696651,0.8704574629664421,-0.3521034475415945,0.2609094809740782,-0.7708808174356818,0.38001946825534105,-0.6050234185531735,-0.9733926048502326,-0.688571366481483,0.8561527687124908,-0.3545494214631617,0.07199236704036593,-0.7600311553105712,-0.032300491351634264,-0.8388555655255914,0.3476825300604105,-0.7274147411808372,0.3663001605309546,-0.04849352594465017,0.772721660323441,0.9706901381723583,0.2827822305262089,-0.5424798326566815,0.5727613004855812,0.6023003859445453,0.5979882539249957,-0.689219465944916,-0.24931341595947742,0.4239385980181396,-0.5412735203281045,0.6311871861107647,-0.5036564148031175,0.40112797915935516,-0.38521456997841597,-0.8218405954539776,0.9623012603260577,-0.12399552995339036,0.9852778660133481,0.028386685997247696,-0.23306562146171927,-0.24939455278217793,-0.6378103629685938,0.09360618097707629,0.20750107150524855,0.9325442016124725,-0.7633796790614724,0.018521820660680532,-0.6921677868813276,-0.05719762155786157,0.2914912789128721,-0.4928318001329899,-0.26506223250180483,-0.5772938369773328,0.3986796108074486,-0.37344329385086894,-0.05290297232568264,0.19666797202080488,-0.8819479690864682,0.91038583451882,-0.7720237970352173,0.895734685473144,0.46347740665078163,-0.8334169532172382,0.3940828610211611,0.44088755128905177,0.31557667441666126,-0.34259942965582013,-0.7491294424980879,-0.1772061469964683,-0.8196151754818857,-0.851295180618763,0.8930683098733425,-0.20986392674967647,-0.3647735617123544,-0.5127437771297991,-0.14747582748532295,0.23018862958997488,0.9418907496146858,0.20542936073616147,0.6142871351912618,-0.35160893900319934,0.0771407070569694,-0.15623877802863717,0.12500217463821173,0.7576442775316536,-0.00898456759750843,0.2851609201170504,-0.6091016111895442,0.31359222903847694,-0.5059744832105935,0.18178141163662076,0.3412866583094001,0.39140324480831623,-0.07794216787442565,0.37631209241226315,-0.5227102944627404,0.17403314542025328,-0.9085621358826756,0.2729951189830899,-0.8992114244028926,0.23581557860597968,-0.9506833432242274,-0.9916528379544616,-0.6874927901662886,0.4975871662609279,0.7729683467186987,-0.10839914483949542,-0.10306306323036551,0.8324866900220513,-0.2585782161913812,0.9456158573739231,0.08796163834631443,0.10955941723659635,-0.29081187350675464,0.42135043116286397,-0.45710610412061214,0.49195119366049767,-0.32503761164844036,0.061963506042957306,0.33995660906657577,0.42231612326577306,-0.9877762137912214,-0.7818509261123836,-0.3037385824136436,0.07542012631893158,0.04051742982119322,0.6806590594351292,-0.6830716375261545,-0.5271066599525511,0.9406846901401877,0.4605779619887471,-0.17848349222913384,-0.6225531129166484,0.8098747418262064,-0.23919334029778838,0.08793210098519921,0.318079240154475,0.8507803753018379,0.45316677587106824,-0.28087593987584114,-0.28935261676087976,-0.7154814647510648,-0.08318289974704385,-0.6219746638089418,-0.2125042211264372,-0.9537083404138684,0.4806613535620272,-0.48955015931278467,0.953932614531368,-0.08396166423335671,-0.7022330835461617,-0.27362095564603806,-0.6643075640313327,0.03826098516583443,0.9134184778667986,-0.3299063793383539,0.8577820560894907,-0.5910443239845335,0.2408674736507237,0.07349055167287588,-0.014646029565483332,0.228490574285388,-0.4311020700260997,-0.5387216880917549,-0.9904539915733039,0.8086224202997983,0.4944865400902927,-0.5385253266431391,0.5157920341007411,-0.35971340630203485,0.30475936364382505,-0.0047745597548782825,-0.9404914397746325,-0.909030775539577,-0.10102568520233035,-0.16053005633875728,0.13771682512015104,0.4252167143858969,-0.9469957356341183,-0.5756356497295201,0.5332995355129242,-0.1974850413389504,0.26213382137939334,0.7967007625848055,-0.24827458010986447,0.5400258498266339,0.27485440485179424,-0.35082597797736526,0.6023763944394886,-0.9097557328641415,-0.7791302711702883,-0.7323657749220729,0.8049424160271883,0.8231979124248028,0.3030137666501105,0.2682365193031728,-0.7402996039018035,-0.24943494191393256,-0.8316048039123416,0.5293119512498379,-0.35272596310824156,0.9879943164996803,-0.5962564214132726,-0.8115554116666317,-0.05472790542989969,-0.707695082295686,0.561936313752085,0.7440789127722383,0.8090113396756351,-0.20859222393482924,0.9526723045855761,0.8900307225994766,0.5048986463807523,0.3544041118584573,-0.9395440453663468,-0.8583173537626863,0.4451746381819248,-0.8927183407358825,0.32010374683886766,-0.005738147534430027,-0.4355009077116847,-0.2591132433153689,-0.4049441567622125,0.3451402923092246,0.4659267207607627,-0.5038226041942835,-0.9247816484421492,0.12296781875193119,0.7695536906830966,-0.20586763229221106,0.5486367410048842,-0.7377003370784223,0.5739889228716493,0.22298032697290182,-0.5707948002964258,0.42049258714541793,0.1825635088607669,-0.7927900059148669,-0.9401782546192408,0.5648755328729749,0.030559272971004248,-0.8815031461417675,0.2596805039793253,-0.34987896820530295,-0.1924638613127172,0.03637184435501695,0.01762332394719124,0.07501163287088275,0.020427945535629988,0.46632824232801795,0.1833745981566608,-0.6524547720327973,0.5281458860263228,0.33166463393718004,-0.5742021221667528,-0.8864980307407677,-0.2597055025398731,0.11614762619137764,-0.6317740483209491,-0.14674651389941573,-0.4317409270443022,-0.8663033195771277,-0.5141230458393693,0.30304559180513024,-0.5676025468856096,0.07318642176687717,0.2104998053982854,-0.2853628755547106,-0.7879227064549923,-0.31348935095593333,-0.4238075166940689,0.4710600753314793,0.855630180798471,0.7497711614705622,-0.18281898321583867,-0.22192956507205963,-0.6537576103582978,-0.9640037915669382,-0.21779247187078,0.3018724019639194,-0.8231402668170631,-0.6211588867008686,0.5273633901961148,-0.959681618027389,-0.0845347591675818,0.9457533014938235,-0.7096211672760546,-0.09142679115757346,0.6876321267336607,-0.06022500107064843,-0.6199441109783947,0.0596719547174871,0.941606140229851,-0.2463116147555411,-0.6313468804582953,-0.8369779433123767,0.9686933406628668,-0.14999970234930515,0.14225907297804952,-0.11751381168141961,0.45512423710897565,-0.951912515796721,-0.13177193515002728,-0.4950227113440633,0.2423285711556673,-0.8698306772857904,0.9841427411884069,0.875524106901139,-0.6941471621394157,0.4889380671083927,-0.5957067268900573,0.2845904123969376,-0.44158782064914703,-0.8129941895604134,0.8563566179946065,-0.07324487343430519,0.19235681649297476,0.04086341708898544,-0.9264383832924068,-0.6354952328838408,0.18280054116621614,-0.10342648020014167,0.756272881757468,0.1974962023086846,-0.8031811695545912,0.2645171331241727,-0.3726399950683117,-0.36291354475542903,0.574355443008244,0.2998315477743745,-0.23585914866998792,0.11993894958868623,-0.5030104955658317,0.2045331047847867,0.6567276152782142,0.4905391838401556,0.5210218424908817,0.701277301646769,-0.8283829391002655,-0.0377253582701087,0.8700622306205332,0.8536297231912613,0.6421205755323172,0.9499811525456607,-0.06195171223953366,-0.8324025413021445,-0.022004549391567707,-0.657602405641228,-0.9983875420875847,-0.7566147441975772,0.3111324734054506,0.17542583355680108,0.5859468188136816,0.16568513307720423,0.856881286483258,-0.23364779073745012,0.3702565557323396,0.3002399653196335,-0.4384215115569532,0.8541454146616161,0.5440458501689136,0.4468746376223862,0.6118259560316801,-0.7604514798149467,0.30093332938849926,0.7929691136814654,-0.5133733269758523,-0.488073225133121,0.9609584584832191,0.8308739787898958,-0.8089380711317062,-0.024711183737963438,0.6840348858386278,-0.16030974965542555,0.3822281011380255,0.5281192748807371,0.5399751449003816,-0.21600737795233727,0.08733615465462208,-0.9251257432624698,0.530678391456604,-0.3972174795344472,0.659827180672437,0.6674262243323028,-0.040441881865262985,-0.5047792587429285,0.10141875455155969,-0.23973125498741865,-0.5386642031371593,-0.4650644836947322,-0.6305756135843694,-0.11682331888005137,0.3485415675677359,0.0010118838399648666,0.19333661766722798,-0.4104469013400376,-0.5630951575003564,0.032100425101816654,-0.8227287391200662,0.5924320365302265,0.8056284366175532,0.45678923232480884,-0.6017612824216485,-0.4145732456818223,-0.5621362770907581,-0.08633954962715507,0.999030102044344,0.48850024538114667,0.8987018875777721,-0.6232277736999094,-0.29517017351463437,0.9570709494873881,0.8390215360559523,0.6445434554480016,-0.594402486924082,0.4076578626409173,0.5763334725052118,0.623625953681767,-0.9076159098185599,-0.13771738344803452,-0.40197962895035744,0.7343849251046777,0.6082364274188876,-0.9016920193098485,-0.5139297563582659,-0.4087888184003532,-0.685216638725251,0.254268079996109,0.12062953831627965,-0.7513498412445188,0.5289996964856982,-0.053180495742708445,0.2610681736841798,0.8351092389784753,-0.8890912984497845,-0.8782665678299963,0.6697699702344835,-0.7814185777679086,-0.701555943582207,0.6270858091302216,-0.6931253359653056,-0.24052358977496624,-0.7437539338134229,-0.44829255528748035,-0.9379026857204735,0.7686681258492172,0.602954660076648,-0.5793075175024569,-0.4040298769250512,0.3738091145642102,0.556566403247416,0.5254206191748381,0.47497026808559895,-0.6565782278776169,-0.5152174839749932,-0.9665371491573751,-0.5030048810876906,-0.734294060152024,0.9341019657440484,0.9119256590493023,-0.4588105701841414,-0.3060283628292382,0.7180457930080593,0.33785068430006504,0.7927272571250796,-0.0941834389232099,-0.4595215446315706,0.14826435968279839,-0.43423908203840256,0.03438383620232344,0.8353400761261582,-0.9416932077147067,0.2964384634979069,0.8876578160561621,-0.8582746558822691,0.9748029131442308,-0.049434961285442114,-0.03304502600803971,-0.08789109997451305,-0.19385476130992174,0.7590496311895549,-0.3752421992830932,-0.833823868073523,-0.8644538023509085,-0.759739019908011,-0.8004758711904287,0.6124102151952684,-0.32491712970659137,0.37598700262606144,0.5297678364440799,0.48108955193310976,-0.650433381088078,-0.9837412214837968,0.4080890831537545,-0.7237446219660342,-0.9226103229448199,0.9008108624257147,-0.2355543402954936,-0.48297126218676567,-0.8473816686309874,0.8465115078724921,-0.6044842386618257,0.4490017336793244,-0.5891083693131804,0.21154266176745296,-0.4857466137036681,0.321853238157928,0.8093617828562856,-0.755865921266377,0.39835341228172183,0.4923701202496886,0.7239254279993474,-0.36194620467722416,-0.32030005706474185,-0.7454553241841495,-0.6411171671934426,0.7634390662424266,-0.8665971360169351,-0.32888096990063787,0.5653651403263211,0.1792450863867998,-0.6061655953526497,0.6476443521678448,-0.0245291362516582,-0.7731925104744732,-0.04269526479765773,-0.34122219728305936,0.22304779989644885,-0.6364292264916003,0.8511127661913633,-0.7492532124742866,-0.40650293370708823,0.05586619395762682,-0.6774214738979936,0.4217233331874013,0.6127084759064019,0.32085132831707597,0.18420506361871958,-0.5804539676755667,-0.8728854460641742,-0.3364103711210191,0.8127041673287749,-0.07738937344402075,0.6935485946014524,-0.3764388421550393,0.16018011095002294,0.44466325687244534,-0.5550033249892294,-0.32074967911466956,-0.11089296732097864,0.4639427727088332,0.4391722441650927,-0.05049434211105108,0.8704437427222729,-0.40566629730165005,-0.030824630055576563,0.6723002814687788,-0.18652416579425335,-0.04487018520012498,-0.06457157293334603,-0.7082242053002119,0.7396628707647324,0.6143493605777621,0.4918339028954506,0.7820164016447961,-0.4049348160624504,-0.33698640624061227,0.034275892190635204,-0.43126358557492495,-0.6665988648310304,-0.9341696272604167,-0.6405856031924486,-0.16887950198724866,0.9446357823908329,-0.20273235393688083,0.8234641724266112,0.20907385274767876,0.11605229880660772,-0.8695210469886661,0.06310240970924497,-0.8717579701915383,0.08631591079756618,-0.09336378704756498,0.050142320804297924,0.586162265855819,0.7342460970394313,-0.5624100551940501,-0.2295184745453298,0.5309525867924094,-0.7424508044496179,-0.3199062254279852,-0.1468594721518457,0.570965223480016,-0.1638443204574287,-0.36851033149287105,0.7611510036513209,0.39813070045784116,-0.8869729293510318,-0.6308796689845622,0.4238817193545401,-0.12895090226083994,0.6428581704385579,-0.7366678202524781,-0.07864604238420725,-0.4950092523358762,0.747675153426826,-0.0903153964318335,-0.5999322468414903,0.6003484027460217,0.33570244163274765,0.03412573039531708,0.047858606558293104,-0.035895923152565956,-0.7289507086388767,-0.981826804112643,-0.28171513229608536,-0.22080422565340996,-0.37659235997125506,-0.7473974195308983,-0.4798692329786718,-0.9645041138865054,0.5757368667982519,-0.6981538631953299,-0.8109645475633442,-0.9875393891707063,-0.4381206533871591,0.2987950989045203,-0.15938884671777487,0.746419342700392,-0.7296809749677777,0.21796872280538082,-0.18815339682623744,-0.7763429302722216,0.1269719530828297,-0.9267738182097673,-0.8720691129565239,0.40625308919698,-0.5343427252955735,0.8162975176237524,-0.45241945050656796,-0.5619461075402796,-0.8561221226118505,0.012300033122301102,-0.19937080284580588,-0.01948654744774103,-0.8504864037968218,0.2497288603335619,0.7748953523114324,0.3725329306907952,0.6211704579181969,0.6211578636430204,-0.6402298505418003,0.1811153180897236,-0.7115604858845472,0.9991074968129396,-0.5201839567162097,-0.15815759170800447,-0.1942393579520285,-0.7510565328411758,-0.6761267688125372,0.7091837995685637,-0.3425110513344407,-0.005180538631975651,-0.37231990974396467,-0.9969991380348802,0.9868874498642981,0.7332586408592761,0.12344930833205581,-0.7417936199344695,0.9603320434689522,0.45213790284469724,-0.7251151748932898,-0.14319125097244978,0.6941289813257754,-0.5993938399478793,-0.33729205606505275,0.6643811636604369,0.6509234178811312,-0.2764839781448245,0.7459213356487453,0.71159677952528,0.37016275944188237,0.5451751677319407,-0.21309887478128076,0.5965285017155111,-0.5415563569404185,0.5027007893659174,-0.13640751503407955,0.7379800355993211,-0.601976371370256,0.7954534259624779,-0.7906810492277145,-0.6932295020669699,0.7082647262141109,-0.33250017696991563,0.6141899507492781,-0.0980845931917429,0.6192436860874295,-0.0062232473865151405,0.16764671076089144,0.46579128224402666,-0.30714702839031816,0.7935764230787754,-0.7067013899795711,-0.931989788543433,0.3427745127119124,-0.45939028915017843,0.8621034165844321,-0.030500509776175022,0.8988029179163277,0.2883640704676509,-0.120374227873981,-0.6613492500036955,0.4092206317000091,-0.40586844692006707,-0.9500229279510677,-0.02488979371264577,-0.5258078244514763,-0.8433550125919282,-0.479111026506871,0.44251617742702365,0.5870143189094961,-0.8706310945563018,-0.23330844566226006,0.19036441342905164,-0.8740834845229983,0.177155421115458,-0.010911185294389725,-0.41893850825726986,-0.6723057366907597,-0.19102096045389771,0.28431228501722217,0.3041627216152847,0.6851549604907632,0.08862295048311353,-0.06970242317765951,-0.09446079609915614,-0.5622892864048481,-0.29032102692872286,-0.9578845174983144,0.1993446066044271,0.6591225443407893,0.5095253200270236,0.9348426824435592,-0.27011874224990606,-0.7860190309584141,0.5193655788898468,-0.9743293100036681,0.18448154162615538,0.46936966897919774,0.06600839225575328,0.32886240584775805,0.021008850075304508,-0.9845361858606339,0.4801293187774718,-0.8965929849073291,-0.3344402830116451,0.9159709461964667,-0.9766029883176088,0.8121462515555322,-0.7049995986744761,-0.35467024566605687,-0.046576029155403376,-0.8806684329174459,-0.45148715237155557,0.9343175874091685,0.04563727183267474,-0.622145474422723,-0.12573367729783058,-0.7429741905070841,0.8437021793797612,-0.38901480473577976,0.8756469869986176,0.8866016478277743,0.8153220382519066,-0.5294053913094103,0.12021517101675272,0.857912375126034,0.2802917407825589,0.770275748334825,-0.22772831888869405,-0.1224826704710722,0.6199924740940332,0.6912024980410933,-0.06926536746323109,0.4191034776158631,-0.4230005228891969,0.19061558553948998,-0.7784845759160817,-0.15387783478945494,0.26417747838422656,0.6040155841037631,-0.9541228218004107,0.768617863766849,0.7555952747352421,0.5992331732995808,0.22009627288207412,-0.5756910960189998,0.5372473583556712,-0.6246388591825962,0.3168902564793825,-0.3742569964379072,-0.8405747134238482,0.9564921176061034,-0.8912128745578229,0.8465239116922021,-0.37527180602774024,-0.2697073663584888,0.5807816670276225,0.5557556725107133,0.4552060146816075,-0.2253799382597208,-0.1825734763406217,-0.590655863750726,0.5953498408198357,0.7198598156683147,0.8700041468255222,0.6894620056264102,0.1483064736239612,0.912831709254533,0.8687250874936581,0.6626056265085936,0.07105441065505147,-0.72856266470626,0.4066806538030505,0.8925643726252019,0.16127993213012815,-0.05703573115170002,0.6299669509753585,0.7958959080278873,-0.0437802467495203,0.23420980386435986,0.3152805184945464,0.49975502397865057,0.4675429919734597,-0.32030442636460066,0.9959233687259257,-0.6114911888726056,0.9587544775567949,-0.3466248223558068,-0.8395002991892397,-0.6506849783472717,0.8770538936369121,-0.8941036160103977,-0.47119432780891657,-0.4135310188867152,0.023923209868371487,0.932662436272949,0.6212005224078894,0.8684154339134693,0.5028627845458686,-0.511251060757786,-0.5348587655462325,-0.6147848209366202,-0.5651409309357405,0.8447582758963108,-0.04350631032139063,-0.14088662527501583,-0.19396067829802632,-0.953974440228194,-0.9655138803645968,-0.5411341339349747,-0.034529440104961395,-0.6482856958173215,-0.3419571155682206,0.32691500382497907,-0.3938129870221019,0.040032435208559036,0.4489717548713088,-0.1400137124583125,0.564762104768306,0.9529753308743238,-0.8965563192032278,0.4608578169718385,-0.27615367574617267,-0.17068494902923703,0.391253883484751,0.4545503221452236,-0.2766519351862371,0.6451972308568656,0.1265245247632265,-0.8814111026003957,0.36217248206958175,-0.9654149999842048,0.11107869120314717,-0.44491788605228066,0.8937395005486906,0.37378066359087825,-0.7279406040906906,-0.7818790310993791,0.6929941507987678,0.9149869228713214,0.6477830740623176,-0.02789021609351039,-0.34726456040516496,-0.6194708002731204,-0.32657374488189816,0.6961408783681691,0.7231985400430858,-0.42862418573349714,0.10748784942552447,0.7833494055084884,0.6791599136777222,0.4841131027787924,-0.46842928556725383,-0.010639175772666931,0.6019020224921405,-0.4235987947322428,0.2825161777436733,0.6427233791910112,0.774919506162405,0.4723398485220969,-0.8123044935055077,-0.9351314445957541,0.9096005936153233,-0.811404858250171,-0.5149747892282903,-0.9554797126911581,-0.6153982565738261,-0.9613298461772501,-0.9390910230576992,0.6688339235261083,-0.8642081110738218,-0.32275884598493576,0.2933343034237623,-0.10944565758109093,0.5171873020008206,0.7131425025872886,0.1822897125966847,-0.7805065223947167,-0.5047010486014187,0.31780510302633047,0.7672066353261471,-0.4218601007014513,-0.5279366280883551,0.9913896601647139,0.38595957309007645,0.5260809655301273,-0.8473689081147313,0.5413649943657219,-0.2631299546919763,0.924114353954792,-0.02813873440027237,0.05253138951957226,0.5142006906680763,-0.9462320618331432,0.8863020627759397,-0.27869101148098707,0.8828400447964668,0.11012232583016157,0.3139601112343371,0.5023077763617039,-0.9333146088756621,0.20173505321145058,-0.8175658844411373,0.5638310266658664,-0.3409760040231049,0.1833997992798686,-0.14430190762504935,-0.29831134295091033,-0.6649478585459292,-0.20420388272032142,-0.33431904250755906,0.758525566663593,0.4927049591206014,0.025655819103121758,0.37491810554638505,0.6993919485248625,0.6932745543308556,-0.07701553637161851,0.771689205430448,0.09252535784617066,-0.993268258869648,0.9338290067389607,-0.7251799576915801,0.32770880963653326,0.30994153721258044,-0.11063036927953362,-0.12087587360292673,-0.06982161477208138,0.1581060914322734,-0.6331237093545496,0.16319754533469677,0.4209642228670418,-0.7796271052211523,0.6015450758859515,-0.5070269922725856,-0.25534337433055043,-0.8364735022187233,-0.6332063390873373,-0.5213988721370697,0.012744958978146315,0.8203411153517663,0.2072561769746244,-0.9067300953902304,-0.44491199404001236,-0.27574149146676064,0.09840930439531803,-0.4315526927821338,0.7554945331066847,-0.7194105884991586,0.3729718206450343,-0.2735988819040358,-0.22827419033274055,-0.4031495130620897,0.10131759941577911,-0.13135520974174142,-0.9627929464913905,-0.7216641586273909,0.47232513362541795,-0.5768573391251266,-0.026579052209854126,0.9010048806667328,-0.1938034798949957,-0.5146229360252619,0.9562305677682161,-0.8954795114696026,0.7762010884471238,0.06685432931408286,-0.9086880143731833,0.8751229946501553,-0.5805398426018655,-0.40269033750519156,0.1036394564434886,0.6449504783377051,0.4563257205300033,0.0025363443419337273,0.7231194167397916,0.5460541597567499,0.5894267330877483,0.38169860001653433,0.9047197978943586,-0.5020791231654584,-0.44277156703174114,-0.7913186643272638,-0.7089741537347436,0.4995008585974574,-0.5440222648903728,-0.23848683573305607,-0.5924842287786305,0.7994396975263953,0.3136005261912942,-0.015108534134924412,-0.14734126487746835,-0.16054582642391324,0.79027612041682,0.6063392325304449,-0.5321742594242096,0.3256579041481018,0.2461554789915681,-0.35267101926729083,-0.16057650931179523,0.9648662516847253,0.1000477122142911,-0.412019694224,0.40900832088664174,0.4763140454888344,-0.590188542380929,-0.9894093098118901,0.06121923588216305,-0.5942764566279948,0.7768570818006992,-0.7112449333071709,0.7193516287952662,-0.9504202208481729,-0.696775852702558,0.4078870969824493,-0.3091045841574669,0.5809742035344243,0.045286561362445354,-0.18015744676813483,0.4706740528345108,0.594165469519794,-0.7153087500482798,-0.38655657693743706,0.1676644287072122,0.9225280764512718,0.9159826631657779,0.28723616851493716,-0.9537941892631352,0.6020183707587421,-0.7754784487187862,-0.3750191545113921,-0.4813211914151907,0.48249803436920047,0.684880655258894,0.6176619785837829,0.06833150330930948,-0.1449320507235825,0.3859184575267136,0.4883480407297611,0.44497920759022236,-0.3985203364863992,-0.8453096053563058,0.11212728545069695,-0.5247799842618406,-0.15193939628079534,-0.35142688220366836,0.7433231817558408,-0.854215057566762,-0.8187842275947332,-0.6471633356995881,-0.19270878238603473,-0.3980124117806554,-0.8417329243384302,0.4918345180340111,-0.024360896553844213,0.5481237047351897,-0.09074939507991076,-0.4562070379033685,0.5629192497581244,-0.26845013024285436,0.22667250083759427,0.6700657261535525,0.6566274361684918,-0.24525228003039956,-0.3759347484447062,0.9848606609739363,0.6394144077785313,-0.6757454914040864,0.501114702783525,0.2276058429852128,-0.36856028577312827,-0.8842254714109004,-0.24311349354684353,0.8890363327227533,-0.6506824474781752,-0.49706011544913054,-0.2592503293417394,-0.532409502658993,0.33718385035172105,0.04444553377106786,0.7197680668905377,0.828905641566962,-0.4976313095539808,-0.989759380929172,0.43644461594522,0.2137321038171649,-0.9184739678166807,-0.7179413847625256,-0.831215470097959,-0.971012971829623,-0.44239848386496305,0.7164067956618965,0.6573286643251777,0.01326106209307909,-0.7620834046974778,0.2594386818818748,-0.4437899678014219,0.5642279381863773,0.27558616595342755,0.4319783323444426,-0.7209353414364159,0.7049434599466622,0.5783398011699319,-0.7330666841007769,-0.4625863847322762,-0.05358075210824609,0.000811548437923193,-0.779946799390018,0.9649964827112854,0.6393758002668619,-0.6331283990293741,0.9974450883455575,-0.465629237703979,-0.4115443010814488,0.2019820432178676,-0.723431168589741,0.3708886099047959,0.613850723952055,-0.5765206473879516,-0.9491006578318775,-0.5071150586009026,-0.81720767961815,-0.14501045364886522,0.11316530173644423,0.32652271119877696,-0.8011475242674351,-0.7309335991740227,-0.8572636093012989,0.18201945815235376,-0.9891527751460671,-0.7175461812876165,-0.5148328016512096,0.29586608009412885,0.9377898941747844,-0.06978673487901688,-0.6902593248523772,-0.21606723172590137,-0.41089259926229715,0.3913729037158191,-0.1964855846017599,-0.7184394183568656,-0.2460962003096938,0.4955995408818126,0.2990174535661936,-0.7653563814237714,-0.426982422824949,-0.08895275928080082,-0.2580332397483289,-0.30789979500696063,-0.8521352279931307,-0.6533177848905325,0.5447178017348051,0.39020107313990593,0.6680956347845495,-0.0851704147644341,0.47534828586503863,-0.25665076775476336,0.8988510989584029,-0.10616074176505208,0.3253534813411534,0.8804242704063654,-0.6703724903054535,0.6608982547186315,-0.5282865450717509,-0.22815713239833713,0.9808327117934823,-0.49954091338440776,0.30168110178783536,0.10949327005073428,-0.46022789366543293,0.9473843295127153,0.5982721294276416,-0.622286987490952,0.5357451220043004,0.02956769522279501,-0.08150793705135584,-0.9105647504329681,-0.9526089755818248,-0.35852985363453627,0.4479357651434839,0.781563620083034,-0.17368940636515617,-0.8243146426975727,-0.9153831875883043,0.5678705926984549,0.7987929210066795,-0.8451596568338573,0.6604927782900631,-0.6068673846311867,0.4543697824701667,-0.1364290388301015,-0.45012151449918747,-0.9854114870540798,-0.08260908536612988,0.4416274228133261,0.13729275669902563,0.3240924570709467,-0.591134516056627,0.3833326823078096,-0.7665800633840263,-0.8261598614044487,0.2420389843173325,-0.5893745478242636,0.66845508152619,0.23466989817097783,-0.17972926562651992,0.528847090434283,-0.7553474772721529,0.13507455633953214,-0.6486366791650653,-0.47180295642465353,0.9798163049854338,-0.6797409728169441,-0.6292424285784364,-0.7432803097181022,0.8454822162166238,-0.6111136823892593,-0.778448570985347,-0.9451204733923078,0.32673932518810034,-0.9177800905890763,-0.7912356811575592,0.46331674978137016,0.3023436199873686,0.8280025073327124,0.7195034404285252,0.9702299758791924,0.6207040133886039,0.16666028695181012,0.509299352299422,0.22421952104195952,0.808317800052464,0.9750967477448285,0.5311415800824761,-0.46843878040090203,-0.5663604731671512,-0.5658390675671399,0.07699516043066978,0.2694653361104429,-0.10182464262470603,0.9318048502318561,0.7314895824529231,0.7151938797906041,0.35994823975488544,-0.7282539186999202,0.954640680924058,-0.9369802512228489,-0.6258669979870319,0.7356004305183887,-0.7828254536725581,0.48799998266622424,0.20079100923612714,0.7618447653949261,0.9044822971336544,-0.39869587356224656,0.5995745379477739,0.6980217411182821,-0.2655408731661737,0.2851774008013308,0.09239436127245426,0.7438126690685749,-0.39084578957408667,0.1912326728925109,-0.05723666679114103,-0.49735461268574,0.008446370717138052,0.1158981784246862,0.46662654587998986,-0.0041923304088413715,0.673222475219518,0.980394696816802,-0.9475337970070541,0.999066845048219,0.32013804372400045,0.3594351108185947,0.46684660809114575,0.2758841700851917,0.026795380283147097,0.5073624388314784,-0.7105646026320755,0.10276798531413078,-0.34633509954437613,-0.5218614940531552,-0.49193016020581126,-0.6772944079712033,0.8693925738334656,-0.33640035009011626,0.7664668029174209,-0.6838157214224339,-0.11053148424252868,-0.8855535816401243,0.6746520320884883,0.9455964481458068,0.9477521264925599,-0.06270040152594447,0.9387354305945337,0.23428133642300963,0.1510282545350492,-0.20578323118388653,0.9830512381158769,0.08522915234789252,0.6107521434314549,0.1668662396259606,-0.3456891570240259,-0.16433207876980305,0.4730309434235096,-0.8619296248070896,-0.9993826379068196,0.3305351543240249,0.5167366121895611,-0.6532470569945872,0.04740866832435131,-0.04415442515164614,0.5904623414389789,-0.6788981887511909,-0.7755963341332972,0.19347897870466113,0.01272815652191639,-0.8373605264350772,-0.40776538802310824,0.0073980786837637424,-0.8425486171618104,-0.33202802622690797,0.1983847632072866,-0.026160268113017082,0.34926902083680034,0.13923766510561109,-0.8480345471762121,0.005029297899454832,0.2657977235503495,0.5869900365360081,0.08722577337175608,-0.08911396050825715,0.586583839263767,0.252132473513484,0.3617577999830246,-0.15449413238093257,0.47618679516017437,0.7977120191790164,0.0018280483782291412,-0.3746810182929039,-0.13712949445471168,-0.7403228492476046,-0.5702779171988368,0.5534965149126947,0.48502988554537296,0.9360489677637815,-0.9380555944517255,0.04945398075506091,0.5930702169425786,0.1274319444783032,0.42916608788073063,-0.15186525136232376,-0.661202184855938,0.4824308520182967,0.9310848577879369,-0.8148319078609347,-0.19156385399401188,0.7824936392717063,-0.30518902465701103,0.3767427275888622,0.7979893065057695,-0.16178837092593312,0.6902216323651373,0.0720307407900691,0.2248803423717618,-0.5092491009272635,-0.6112480782903731,-0.6004208731465042,-0.021548852790147066,-0.37818729039281607,-0.9270601393654943,0.7507824678905308,-0.11726347263902426,-0.9783398094587028,0.0914902207441628,0.24997765896841884,-0.941729012876749,0.7045023334212601,-0.16768224025145173,0.1729463399387896,-0.08836319157853723,-0.22595126694068313,0.21725385636091232,-0.9555423054844141,-0.709317218977958,-0.2212520963512361,0.6770350253209472,-0.2784436675719917,0.23691992834210396,-0.8719174470752478,-0.7286844560876489,0.37742368830367923,0.6136263683438301,-0.7983371531590819,-0.215736604295671,0.2742638550698757,0.5903432848863304,-0.7280423124320805,-0.5622480567544699,0.8703595832921565,-0.14827557979151607,-0.8351354710757732,0.6626761280931532,0.23890681052580476,-0.7274427795782685,0.3519381592050195,0.336754372343421,0.5711420089937747,-0.42234708461910486,0.4121673465706408,0.05961260199546814,-0.7054623938165605,-0.6314182197675109,-0.08590968744829297,-0.09670977899804711,-0.6188334580510855,0.2974591311067343,0.5735952602699399,0.5250360532663763,0.703388940077275,0.7299569603055716,0.44248480862006545,0.8505264278501272,-0.6675422145053744,-0.7662955247797072,0.4587305374443531,0.26269006775692105,-0.7113831616006792,-0.005189619027078152,0.2834195727482438,0.03256794763728976,-0.4173408020287752,0.009417506866157055,0.44666865933686495,0.07091810321435332,0.33309559198096395,-0.4169630412943661,0.5042122420854867,-0.9815050810575485,-0.40212141443043947,0.5347705692984164,0.9645784888416529,0.22374382568523288,0.23862081300467253,0.9796755551360548,-0.2257660385221243,0.9378094291314483,0.43023692863062024,-0.20780844101682305,0.17581634456291795,0.5244226003997028,-0.5877848835662007,-0.8355290591716766,-0.1477216612547636,-0.9764608237892389,-0.1508157504722476,-0.6830114955082536,-0.07702210126444697,0.42878967989236116,-0.8563057817518711,0.6642797854728997,-0.32386427745223045,0.9732989994809031,-0.255977354478091,0.8024646448902786,0.8156502349302173,0.4115020530298352,0.2730756914243102,-0.5508381826803088,-0.7733452757820487,-0.6755593568086624,0.7888919087126851,-0.2586852125823498,0.05386920878663659,-0.99466463457793,0.10426107374951243,-0.4489602791145444,0.22263987734913826,0.235458767041564,0.9887540717609227,0.8679611645638943,-0.4695378728210926,0.337247250135988,0.08379855798557401,0.9105181130580604,0.02757667237892747,0.16010666312649846,-0.9345887694507837,-0.12481086328625679,-0.05068127904087305,-0.34666212694719434,0.8100954033434391,-0.582694792188704,0.9991941070184112,0.4747648034244776,-0.22870150348171592,-0.6124333222396672,-0.35819322895258665,-0.43075022427365184,0.5971372411586344,-0.21780146518722177,0.4292898937128484,-0.9487339123152196,0.15028091194108129,0.7009970690123737,0.9209550521336496,0.36003925278782845,-0.092469681520015,0.12035481724888086,0.8584529496729374,0.6182243060320616,-0.7950418409891427,-0.8637200426310301,-0.9146235594525933,-0.8899653102271259,-0.30869102757424116,0.46287869941443205,0.05710092280060053,-0.45955002354457974,-0.3932841345667839,0.9899219651706517,-0.19279618375003338,0.9836929738521576,0.6177942426875234,-0.9611732997000217,-0.08629050012677908,-0.9428815604187548,-0.8317018672823906,0.11178709799423814,0.29583009984344244,-0.832997330930084,-0.7045293999835849,-0.8508180435746908,0.540419870056212,-0.2994840983301401,-0.19109986908733845,-0.40221465984359384,-0.6122898305766284,0.3579927212558687,0.15395745960995555,-0.37074502371251583,0.4337884448468685,0.6210446748882532,-0.9395310627296567,-0.9598098481073976,0.24875094322487712,-0.662735222838819,0.7588384672999382,-0.083139109890908,-0.378195836674422,0.7367474245838821,0.8528214790858328,0.47624086681753397,-0.8184662563726306,0.25328817777335644,0.42122779274359345,-0.2853928557597101,0.030461525544524193,0.9672617381438613,-0.9976279311813414,0.7028977293521166,-0.39261276461184025,0.22096467902883887,-0.4636640273965895,-0.2425583633594215,0.16976773785427213,-0.16740027256309986,-0.07739780331030488,-0.058076608926057816,-0.4896273915655911,0.9647944387979805,0.013290683273226023,-0.3925098655745387,-0.1367260729894042,0.14284364879131317,-0.8734878799878061,0.27324813697487116,-0.47766230814158916,0.7250129105523229,-0.5828478219918907,0.4639681065455079,-0.6368984519504011,-0.8718514274805784,-0.9499925333075225,0.949311884585768,-0.3490286972373724,0.4198935511521995,-0.8374044769443572,-0.2627621893770993,-0.9250878901220858,0.6686248136684299,0.6115821250714362,0.3852636036463082,-0.2321214904077351,-0.9648708952590823,0.8282717554830015,-0.3986778394319117,-0.491427683737129,0.8754858751781285,-0.14380282489582896,-0.05521137127652764,0.8643871070817113,-0.612502811010927,0.661848546937108,-0.764653546269983,0.2388867582194507,0.7195052849128842,-0.5455741048790514,0.49642320116981864,-0.8579375720582902,-0.19793544430285692,0.11077153449878097,-0.7211321615613997,-0.9711413709446788,-0.21858872286975384,0.8905833642929792,0.7290585022419691,0.5689641400240362,0.9558098292909563,-0.3749283724464476,0.7629383155144751,0.8723345221951604,-0.1966998097486794,0.06522199138998985,0.7494952213019133,0.1931825177744031,-0.4431556658819318,0.8825166816823184,-0.9615826839581132,-0.8819927698932588,0.6120567079633474,0.48905842984095216,0.24943019589409232,-0.6044373717159033,0.6293156566098332,-0.7875031516887248,-0.007092142477631569,0.8011744730174541,-0.2392260399647057,0.08878301177173853,-0.8832677286118269,-0.21750998217612505,-0.30378660885617137,-0.19279652135446668,0.3665491407737136,-0.46675005787983537,-0.008954964578151703,0.7863543750718236,-0.13861214648932219,-0.6906161783263087,0.6834697984158993,-0.7605217923410237,-0.8705123462714255,0.10820218408480287,0.7297601592727005,-0.6737318192608654,0.6825361382216215,-0.802148474380374,-0.7832819214090705,0.12349977996200323,0.2404091223143041,-0.513610877096653,-0.5983712864108384,-0.5433381437323987,-0.8752900832332671,-0.271378128323704,-0.5337361819110811,0.49034983944147825,0.2118522129021585,0.6065237880684435,0.22278419928625226,-0.21311009908095002,-0.698887225240469,0.937681551091373,0.3258647471666336,-0.014439522754400969,0.8897818173281848,0.22341941809281707,0.9178673909045756,0.3424184466712177,-0.3540567927993834,-0.7061769110150635,-0.6375343627296388,0.01722318446263671,0.2047698888927698,0.881707935128361,-0.425355710554868,-0.8794817714951932,0.9189131809398532,0.6427528029307723,-0.036658113822340965,0.13502069329842925,-0.5853653554804623,-0.3909791698679328,-0.4032456544227898,-0.6758938441053033,-0.6530389720574021,0.17451780242845416,0.6473694159649312,0.49067125655710697,0.9144886489957571,-0.2949325433000922,0.3086332567036152,0.5252063409425318,-0.6533278981223702,-0.42701754346489906,-0.4181964071467519,0.44235845748335123,0.14634460909292102,-0.7186501510441303,0.14081746526062489,0.2767696506343782,0.30655253399163485,-0.15108290081843734,-0.21838253317400813,-0.004335096105933189,0.5561094451695681,0.498372670263052,-0.17287369072437286,-0.12248924933373928,0.2968423720449209,0.3631810201331973,-0.4989551533944905,0.9033019077032804,0.06628302717581391,0.02176202554255724,-0.3718579965643585,0.9711453299969435,0.046613835729658604,-0.7931280042976141,-0.5632056621834636,-0.8325940305367112,-0.2756298850290477,-0.24128124956041574,0.8918071803636849,0.6468459344469011,0.6187895792536438,0.1317969085648656,-0.4798281262628734,-0.882497726008296,-0.6714319852180779,-0.8515841672196984,-0.8573482986539602,-0.4940623892471194,0.26080950628966093,-0.032656057737767696,-0.5098956804722548,-0.47555916430428624,0.5526178828440607,0.5423597255721688,-0.6294153537601233,-0.1903555984608829,0.19878327194601297,-0.61696922685951,0.01955998595803976,0.5216250531375408,-0.11404379038140178,-0.36894905380904675,-0.46071454882621765,0.5853608795441687,0.985255909152329,0.570638666395098,-0.8742420617491007,0.8207736080512404,0.27986092399805784,-0.26666292222216725,0.36765379924327135,-0.3365823100320995,-0.5588090410456061,-0.505962795112282,0.2213745298795402,-0.515935298986733,-0.2699995548464358,-0.7318164370954037,0.20810644328594208,-0.8887832718901336,-0.5180003698915243,-0.6539956368505955,-0.21148327039554715,0.00842368509620428,-0.36142654437571764,0.7990431794896722,0.5169640253297985,-0.7050484605133533,-0.8868033764883876,-0.15440969774499536,-0.264774015173316,-0.7977121267467737,0.970966384280473,-0.5458808382973075,0.6100114928558469,0.06288419337943196,0.8794609806500375,-0.6492790440097451,-0.07645762339234352,0.48377522733062506,0.5855773175135255,-0.7772769434377551,-0.9344340222887695,0.44469395047053695,0.16786418901756406,-0.9862252231687307,-0.04859681706875563,-0.6619945047423244,-0.8166089169681072,-0.9609472248703241,-0.9713535127229989,-0.5723256417550147,-0.1270631472580135,0.5647274903021753,-0.6556300930678844,-0.7477094843052328,0.8693251898512244,-0.8050141986459494,-0.06305672181770205,0.2107704053632915,-0.33188258530572057,-0.4431521971710026,-0.8530384483747184,0.5979154938831925,0.8466325467452407,0.14277043845504522,-0.010608721524477005,0.6849948260933161,-0.05155355762690306,-0.8982189460657537,-0.7124492130242288,-0.9343825126998127,0.9835249953903258,0.647265063598752,0.3575218408368528,0.49871765403077006,-0.22317634569481015,-0.10485972557216883,-0.21280350489541888,-0.8427403816021979,-0.44434859976172447,-0.8725067963823676,-0.8932758895680308,0.9946540519595146,0.31429557828232646,-0.4917809097096324,0.7365941619500518,0.44406277406960726,0.16440993640571833,0.3591566584073007,0.9802858885377645,-0.9554925807751715,-0.9165337849408388,0.8473622445017099,-0.23891105270013213,-0.7758187740109861,0.14903973136097193,0.09623133763670921,0.3347591548226774,0.05766550078988075,0.550637879408896,-0.07294259872287512,-0.06044298363849521,0.009338100906461477,-0.43043505726382136,0.48860432067885995,-0.1358143431134522,0.020773455500602722,0.34522636281326413,-0.4741881722584367,0.7664842992089689,-0.9518299573101103,-0.8715664115734398,0.913165329489857,-0.00947024766355753,0.7897857478819788,0.7282549580559134,0.7299479660578072,-0.3679037941619754,0.75868906872347,-0.007438882254064083,0.14265705132856965,0.9569120956584811,-0.2718528755940497,0.2542886030860245,0.6010275636799634,-0.07554145995527506,0.4348178496584296,-0.4695131084881723,-0.35161874210461974,0.25536538707092404,-0.5904123629443347,0.76533985696733,0.11598285473883152,-0.41635966533795,0.05094047589227557,-0.1589266937226057,0.36858183005824685,-0.16956717381253839,-0.4938466749154031,0.020932338666170835,0.2914144108071923,-0.23172720801085234,0.5347267426550388,-0.7734744613990188,0.17491842107847333,0.5664147031493485,-0.5917191286571324,0.8082414590753615,0.1675133453682065,0.5892089656554163,-0.6731465691700578,-0.985078651458025,0.33842420717701316,-0.6659566257148981,0.22916157310828567,-0.5830536847934127,0.952869504224509,-0.4517397861927748,-0.9967423393391073,0.04834776744246483,-0.3774432563222945,0.05560761736705899,-0.07077907025814056,-0.5948551939800382,-0.08223652001470327,0.7464709891937673,0.3449423988349736,0.09136300114914775,-0.8786854781210423,-0.27229667408391833,0.9474262516014278,-0.4427656913176179,-0.521443503908813,0.378934137057513,-0.8358562402427197,-0.2865465232171118,-0.8779114335775375,0.210042929276824,-0.7395622278563678,-0.06396865053102374,-0.9566560527309775,0.999975043348968,0.776829696726054,0.8770263222977519,0.3748445915989578,-0.5133072854951024,0.4584043622016907,0.05521159199997783,0.6566369780339301,-0.7509467946365476,0.6581168388947845,-0.9731492390856147,0.23731435183435678,-0.25121492706239223,0.6891317651607096,-0.6219598660245538,-0.04389852937310934,-0.48041671980172396,0.5795751395635307,-0.9306529327295721,-0.11038527451455593,0.2371687856502831,-0.582095371093601,-0.9780825008638203,-0.8586381650529802,-0.8884953130036592,0.15798295428976417,0.1118486961349845,-0.9327314021065831,0.8495423491112888,0.6685087769292295,-0.6717371591366827,-0.837011244148016,-0.5884732850827277,-0.8202922851778567,0.5141754155047238,-0.8136631459929049,0.5693780053406954,0.44333990244194865,-0.7732170037925243,-0.6142065399326384,0.6311330390162766,0.6195135130546987,0.7072596838697791,0.5771496542729437,-0.8670350178144872,-0.7664746823720634,0.7315961718559265,-0.30644289357587695,-0.8074937220662832,0.042930989526212215,-0.1230075997300446,0.42234939569607377,-0.1501821498386562,-0.1203504204750061,0.3474617088213563,-0.9550982946529984,0.5612371736206114,0.9736661911010742,-0.9426980083808303,-0.3987391688860953,0.20589048275724053,-0.40028349310159683,0.9162872661836445,-0.8981850631535053,0.19249654654413462,0.7159600076265633,0.657606833614409,0.8810093156062067,0.2889710976742208,0.29871933069080114,0.2855017576366663,0.7827162565663457,-0.16894119745120406,0.7276974627748132,0.38049518037587404,-0.06676789140328765,-0.5742014334537089,0.37224754923954606,-0.562205798458308,-0.5606167428195477,-0.39596069091930985,-0.28696629079058766,0.31035311659798026,-0.8263974306173623,-0.2830919115804136,-0.928823996335268,0.9677870054729283,0.5540761249139905,0.3105469928123057,-0.04246445233002305,0.3015445531345904,0.2914276998490095,0.5235324827954173,-0.19156154058873653,-0.15104973874986172,0.4329820913262665,0.7181124165654182,0.33249583607539535,-0.6094064004719257,0.09479800285771489,0.3033257774077356,-0.8128064526244998,0.3298090216703713,-0.10840570693835616,-0.855036549270153,-0.7603208259679377,0.5039382688701153,0.5642110928893089,-0.9336419743485749,0.4559134850278497,-0.8839527708478272,-0.530909676104784,0.9371451810002327,0.5494904713705182,-0.4308096347376704,-0.5996382995508611,-0.9090761477127671,0.4263099171221256,0.19515660777688026,-0.20977410254999995,0.6002020789310336,-0.4541657124646008,-0.34717882238328457,0.5041503692045808,-0.9216707991436124,0.036349772941321135,0.9880702993832529,-0.014528002589941025,0.2087023351341486,0.19875857327133417,0.6652627112343907,0.5812154333107173,-0.27352518355473876,-0.3962768861092627,-0.0028947554528713226,0.6127550220116973,-0.590713445097208,-0.990460017696023,0.9783658655360341,0.2520538638345897,0.8069784287363291,-0.22230341797694564,0.0074631283059716225,0.9750613518990576,0.23917881911620498,-0.3811246184632182,-0.3191676647402346,0.3945880769751966,0.476186778396368,0.19364259205758572,-0.897658206988126,0.8707197466865182,-0.732889898121357,0.48730172542855144,-0.9827030883170664,0.32392163947224617,-0.8349680919200182,-0.04404424084350467,0.9687624671496451,0.43112240359187126,0.1404422912746668,-0.742541769053787,-0.12076599476858974,-0.23426073603332043,-0.2468198467977345,0.4833847819827497,0.2974554868414998,-0.07434201519936323,0.8107642424292862,0.9223081120289862,-0.8977012848481536,-0.14063472067937255,0.1336698173545301,0.6455786991864443,-0.16483120806515217,0.1442840206436813,-0.16219227481633425,0.32041412172839046,0.7023794702254236,0.11093540582805872,0.19081829488277435,-0.14115366991609335,-0.9298554533161223,-0.5490816687233746,-0.5596312638372183,0.2438257415778935,-0.8513152995146811,0.382349185179919,-0.5249808668158948,-0.9468064098618925,-0.31099885096773505,-0.05011235224083066,-0.5014535128138959,0.5260690613649786,-0.8916074158623815,0.4868461498990655,0.8861545831896365,-0.370017574634403,-0.4001824436709285,0.19903781032189727,0.6918881293386221,0.06381597742438316,-0.6081093982793391,0.962207090575248,-0.4068869836628437,0.9824058758094907,-0.3358279322274029,0.10486193001270294,-0.439040572848171,0.40775651345029473,0.26134264981374145,-0.6147428215481341,0.2128287646919489,0.9734349916689098,-0.6241907658986747,-0.9256645031273365,0.5378465759567916,0.015559090301394463,0.08010534895583987,0.6240862221457064,0.3873473317362368,0.023082643747329712,0.3612421154975891,0.05875399196520448,-0.899173182900995,0.7189359315671027,0.12856228603050113,-0.8032474080100656,0.5833623157814145,-0.5887701427564025,0.39020816003903747,-0.6683549792505801,0.5382369114086032,-0.9208324742503464,-0.07933492260053754,-0.6522322571836412,-0.2515267045237124,-0.7164621381089091,-0.7328673480078578,-0.1468250579200685,-0.951343797147274,-0.346233494579792,0.1914679892361164,-0.791687838267535,-0.6707316692918539,-0.9989467523992062,0.388652668800205,-0.9493043930269778,0.7522160750813782,-0.5795516204088926,-0.5214865398593247,0.07123288232833147,0.47171455528587103,0.16679672710597515,0.3505072700791061,-0.24443150032311678,-0.506293186917901,-0.28975015273317695,-0.08615857642143965,0.9421413973905146,-0.7081089993007481,0.30709679517894983,0.8317092941142619,0.04797917418181896,-0.34465697407722473,0.1753820376470685,0.3600664474070072,-0.7375887203961611,-0.7128092888742685,0.06491919932886958,0.19695214880630374,-0.34477602737024426,0.8937515271827579,-0.861454650759697,0.9923727330751717,-0.6999565018340945,0.6338692777790129,0.9002223699353635,0.42833284521475434,-0.8058820446021855,-0.48797036707401276,0.6838020840659738,-0.7076550209894776,-0.9833378568291664,-0.7182984622195363,-0.15291541256010532,-0.7931982101872563,0.9062256761826575,0.7102974941954017,-0.598530313000083,-0.05999692343175411,-0.4462822377681732,-0.7898379862308502,-0.6641331519931555,0.8586481190286577,0.1942152543924749,-0.024357583839446306,-0.4826727416366339,0.8908025976270437,0.9915890502743423,0.2709304275922477,-0.9211401781067252,0.4649759028106928,0.10992831224575639,-0.3169999825768173,0.24969682237133384,0.584949707146734,0.941628438886255,-0.8507322897203267,0.2845913916826248,-0.6095773964188993,-0.8223454938270152,0.7777560595422983,-0.638900687918067,0.5845144651830196,-0.8269205181859434,0.9227561289444566,0.6922979285009205,-0.4420994040556252,-0.5033399644307792,0.9373645586892962,0.5385447167791426,-0.20749488333240151,-0.5786771904677153,-0.8831969113089144,0.1464954949915409,-0.6379839512519538,-0.7876019198447466,0.5967005910351872,-0.8621850316412747,-0.6663739909417927,0.6265936330892146,-0.37836452201008797,0.4666403024457395,0.9725548080168664,-0.3354324782267213,0.7479894822463393,0.061493712477386,-0.06297476403415203,-0.784840960521251,0.5428175493143499,-0.007445833645761013,0.34231362491846085,0.3671347862109542,0.588004166726023,0.2541967504657805,0.4996241359040141,-0.3369862986728549,-0.9407680751755834,0.946617865934968,0.5367418378591537,0.7501766444183886,0.9141599116846919,-0.5275968918576837,0.2804341404698789,0.21491671539843082,0.02339713042601943,0.9189849430695176,0.5862806318327785,0.2050796700641513,-0.7608259739354253,0.8107261182740331,-0.31760849291458726,-0.1537275011651218,0.7416127445176244,0.21785260550677776,0.3219809182919562,0.499566990416497,-0.8157204412855208,0.6423772103153169,-0.6439214907586575,0.8664516997523606,0.8406512010842562,-0.7505063875578344,-0.7575598056428134,-0.06879984168335795,0.9321021642535925,0.515810577198863,-0.7013017693534493,-0.4029586757533252,0.8357531051151454,-0.5449479524977505,0.638189482036978,0.19460125593468547,-0.5413878983817995,-0.9705625222995877,0.29952450888231397,0.1793013704009354,-0.9809865863062441,0.9322990574873984,-0.8506906805559993,0.37529874267056584,0.7902804524637759,-0.43238506373018026,-0.7739146067760885,-0.21130229672417045,-0.2158834645524621,-0.9465837343595922,-0.8318063681945205,0.4315225384198129,0.8215376837179065,-0.6149519104510546,0.3803913448937237,0.2942509721033275,-0.9918511239811778,-0.212622017133981,-0.2817366002127528,-0.9639918613247573,-0.9817118379287422,0.2976909405551851,-0.5052642696537077,-0.12054793443530798,-0.20053814444690943,-0.0034250901080667973,0.045626536943018436,-0.6720590302720666,-0.38314992608502507,-0.9954325323924422,-0.02729878854006529,0.42738184705376625,0.8218556423671544,-0.8206007992848754,-0.2898284890688956,-0.4414655058644712,-0.7087275944650173,-0.9667600737884641,-0.5786527623422444,-0.44655702263116837,0.740345599129796,0.964514933526516,-0.03580768080428243,-0.7647918560542166,-0.7945270254276693,-0.2227264977991581,0.8332593864761293,-0.7687588259577751,-0.1387215768918395,0.6823365590535104,-0.03130180202424526,0.34857843862846494,-0.397560759447515,-0.8265946819446981,-0.4162042597308755,-0.2957892375998199,0.9398382194340229,0.08877760171890259,0.3346789008937776,0.4377860273234546,-0.3854820500127971,0.9870551163330674,-0.21019371878355742,-0.8660334344021976,0.12861965270712972,-0.3759924862533808,0.4202683102339506,-0.657225392293185,0.01680310955271125,-0.6903071855194867,0.005673655308783054,0.6173490593209863,0.24024828616529703,0.7715323222801089,0.5857047783210874,0.8618472102098167,-0.6449787192977965,0.566254417411983,-0.6193160023540258,-0.4220593082718551,0.9485415052622557,0.15075488714501262,0.09666484408080578,0.08351111132651567,-0.4683189447969198,0.36932419426739216,-0.7352345664985478,0.027132244780659676,-0.8031718879938126,-0.26731648528948426,0.5280382088385522,-0.20156674645841122,-0.3991243396885693,0.8471025475300848,-0.3857142240740359,0.5174546716734767,-0.1798461047001183,-0.2419819999486208,-0.4926717160269618,0.21505585312843323,0.31065339874476194,0.2288931431248784,-0.49954457860440016,0.11781002907082438,-0.4189722537994385,-0.3093622010201216,-0.8805369418114424,-0.28101220866665244,0.6825192403048277,0.09435287676751614,-0.9928992302156985,-0.29142814641818404,-0.37627034122124314,-0.9429099434055388,0.6589359412901103,0.8477885061874986,-0.5191593528725207,-0.702184034511447,0.556472743395716,-0.5011222627945244,0.45440740045160055,-0.36918486515060067,-0.29070077557116747,0.22457550140097737,-0.31843681586906314,0.5312211411073804,-0.4861050061881542,0.1409674035385251,0.4977660528384149,-0.13429160648956895,0.3305308511480689,0.7734850803390145,-0.7406796850264072,0.011668234132230282,0.7641556500457227,0.8263089028187096,-0.019039808306843042,0.15180100686848164,-0.42835597414523363,-0.8998298235237598,-0.4729689033702016,-0.22762788040563464,0.8737529898062348,0.39665833162143826,-0.3568055434152484,0.04057017853483558,0.7295259460806847,0.44738272251561284,-0.6005385424941778,0.004951468203216791,-0.16337023442611098,-0.09518072428181767,0.7657394632697105,-0.8773653274402022,-0.26168064633384347,0.8336368226446211,0.9899235400371253,0.2974831578321755,0.582583699375391,-0.7040197122842073,-0.2793494984507561,-0.7861800044775009,-0.24525201600044966,-0.7589100543409586,0.186359828338027,-0.8626324376091361,-0.5576222697272897,0.24374457309022546,-0.1838616724126041,-0.6014474714174867,-0.13801915664225817,0.8199008256196976,-0.9776334576308727,-0.5253938748501241,-0.12355322577059269,-0.16578996274620295,0.3902569841593504,-0.49518410209566355,-0.28901095502078533,-0.008169774897396564,0.8247619033791125,-0.4666994195431471,-0.11483317567035556,-0.20080739725381136,0.8445143131539226,-0.32360840030014515,0.17746057687327266,-0.017034877557307482,-0.8353496864438057,-0.8437569881789386,0.9416989763267338,-0.46115452516824007,-0.3583028553985059,0.08920265734195709,-0.8248676434159279,0.1990117309615016,0.9032176495529711,-0.058399361092597246,-0.5726680690422654,0.7520167459733784,0.3394715157337487,0.7340621994808316,-0.8328813584521413,0.7911716420203447,0.6517945495434105,-0.6644466575235128,-0.3699862454086542,-0.058172847144305706,0.7584100365638733,0.5683886022306979,-0.10095042083412409,0.37395016150549054,-0.5578076434321702,0.2956064362078905,-0.4878616067580879,0.9924395303241909,0.39739139936864376,0.9738247133791447,0.36196309234946966,0.6784101813100278,0.6782890195026994,-0.08510754443705082,-0.051909991540014744,-0.17762644216418266,-0.4916585390456021,-0.33431947557255626,0.45268256729468703,0.3131320485845208,-0.42347519751638174,-0.5475600035861135,0.1794039155356586,-0.9336575516499579,-0.3878403175622225,0.512814418412745,-0.6622114283964038,-0.12607043655589223,0.1032378263771534,-0.3381984271109104,-0.11352938041090965,-0.6560809393413365,-0.7199054076336324,-0.696454516146332,-0.34365566121414304,-0.06972436141222715,0.3920495961792767,-0.011798576917499304,0.592630619648844,-0.8399947839789093,0.012932114768773317,-0.18127513490617275,0.4970679781399667,0.509767634794116,0.7754229884594679,0.9095145012252033,0.15091278264299035,0.45764039270579815,-0.008299677167087793,0.37485549598932266,0.6593623557128012,-0.31024019373580813,-0.31447520991787314,0.6328586130402982,-0.8192832977510989,-0.47193450946360826,-0.9573139064013958,0.6247199345380068,-0.3737331200391054,-0.5838870154693723,-0.7605903679504991,-0.08720787428319454,0.12958523072302341,0.6651164200156927,0.7401443677954376,0.40435059554874897,-0.5460800155997276,-0.5862047760747373,-0.8905465332791209,0.33316732244566083,0.515125032979995,-0.7575397309847176,-0.06535961525514722,0.2748514339327812,-0.2750898916274309,0.9029828142374754,0.17136402055621147,0.8924545058980584,-0.5133961369283497,0.17781070992350578,0.6785950288176537,0.8159168930724263,-0.19496526196599007,-0.4199122660793364,-0.09461226314306259,0.9886719165369868,-0.9793328996747732,0.6270321221090853,0.3331082947552204,0.02319124760106206,-0.9420677591115236,0.6247556391172111,-0.9737612591125071,-0.10623653652146459,0.5213370495475829,0.31460218084976077,0.019316847436130047,-0.5745468251407146,-0.5005198265425861,-0.13778909528627992,0.08811713429167867,0.04534614225849509,-0.6125969793647528,0.8255482953973114,-0.7197930575348437,-0.22511765221133828,-0.024249818176031113,-0.027341302949935198,-0.12532604113221169,-0.6913912896998227,-0.7104966538026929,0.3053956306539476,0.1261536139063537,0.9821181637234986,-0.8183291000314057,-0.31212866259738803,0.3243066454306245,0.5991514716297388,0.015948787797242403,-0.23051360389217734,0.8849720754660666,0.6020089429803193,0.6781314318068326,0.33906299341470003,0.4489463707432151,-0.342836057767272,0.9719043835066259,0.5524520999751985,-0.41170118749141693,-0.02988214697688818,-0.6348271518945694,-0.8958428772166371,-0.48988837329670787,0.9134373236447573,-0.08982670959085226,0.22922335471957922,0.5529408091679215,0.07521264348179102,0.5990665429271758,0.2488409816287458,-0.7710193796083331,0.30486561357975006,-0.2609997559338808,-0.3192835249938071,0.7978468416258693,-0.48035123012959957,0.5725986403413117,-0.1350673334673047,0.016703427769243717,-0.5085518192499876,0.14383837580680847,-0.23663943633437157,-0.4561322368681431,0.005450891330838203,0.9808176760561764,0.2869498464278877,-0.7031404813751578,0.618910038843751,-0.3107075747102499,-0.19894174812361598,-0.924964286852628,-0.3531704186461866,-0.412372964899987,0.6790919443592429,0.37180341174826026,-0.687756173312664,-0.3248130399733782,-0.6927640894427896,0.5895166043192148,0.9005649187602103,0.11361480178311467,0.9896415625698864,0.7520272675901651,-0.4733735932968557,0.7312117973342538,0.4767167433165014,-0.8390521742403507,0.6163803548552096,0.8307906854897738,0.21134577132761478,0.6766396909952164,0.9149480825290084,0.9206841285340488,-0.5366824106313288,0.22938263043761253,0.3029962470754981,0.11469419719651341,0.9026942420750856,0.46508470037952065,-0.9761700048111379,-0.9443366476334631,-0.5411167340353131,0.8153571444563568,-0.5117979417555034,-0.35961170215159655,-0.2716328492388129,0.700342530850321,-0.26348972134292126,0.8069658288732171,-0.7511075362563133,-0.634865187574178,0.20755035895854235,-0.8124915370717645,-0.3932416019961238,-0.6618220563977957,0.2987796124070883,0.20915445685386658,-0.6536965644918382,-0.29831458209082484,0.36251636827364564,0.6539007066749036,0.9221318745985627,-0.1544083501212299,0.7250078627839684,0.9397671739570796,-0.04187937267124653,0.723317030351609,0.13946558302268386,0.9752025096677244,-0.3693121443502605,-0.4587346422486007,0.5208783610723913,0.2298845248296857,-0.1263530575670302,-0.6638595932163298,-0.076409125700593,0.24196218885481358,0.6812580316327512,0.8377430001273751,-0.38399991812184453,0.06035004276782274,0.22988302912563086,-0.7229911061003804,0.039355161134153605,0.8915686313994229,-0.36878629168495536,-0.6137681528925896,-0.9028505287133157,0.3750333972275257,-0.9990042014978826,0.9219625145196915,-0.7936601564288139,0.8617901215329766,-0.8675267812795937,-0.567297050729394,-0.07439080672338605,0.4688196750357747,0.013837744016200304,-0.6700047315098345,0.48201599484309554,0.5389078641310334,0.9247001716867089,-0.8031840063631535,0.751641639508307,0.7514960151165724,-0.6694364752620459,-0.4992539160884917,0.17157345032319427,0.955914887599647,-0.5058149183169007,-0.5386813231743872,0.26568056643009186,0.48616980109363794,-0.9471506425179541,-0.576866667252034,0.7698951722122729,0.04958568187430501,0.49680717568844557,0.986159501131624,-0.2488025319762528,-0.19115106016397476,0.644882666412741,0.4935493408702314,-0.31561237294226885,0.3569085863418877,-0.4294193279929459,-0.2592807598412037,0.4425766300410032,0.5133395995944738,-0.18461330188438296,-0.4817052287980914,0.6370373493991792,0.218023547437042,0.41617517452687025,0.4995795045979321,0.7276635458692908,0.5845942967571318,0.5459966128692031,0.38941575959324837,-0.8229317842051387,-0.5127997994422913,-0.29330458864569664,0.49980204040184617,-0.014037908520549536,0.8689102581702173,-0.03218241082504392,0.4784582653082907,0.7906815926544368,-0.07590800104662776,0.9710414675064385,0.5029634195379913,0.7162602804601192,-0.5992624959908426,-0.2898541069589555,-0.26468991255387664,0.8446867670863867,-0.1429327423684299,-0.25990908266976476,-0.6598366391845047,0.5685902810655534,0.4532528957352042,0.9688719618134201,-0.782721106428653,0.37549463752657175,-0.16033597150817513,-0.2215613047592342,0.47806034283712506,0.5500786621123552,-0.1944181825965643,0.39979523327201605,-0.9358322261832654,-0.8856366071850061,-0.1378277475014329,0.5440158117562532,-0.228185904212296,-0.8095915247686207,0.6570105673745275,0.6096703670918941,0.842989657074213,0.34185953438282013,-0.0016700760461390018,0.5337778739631176,-0.18735735397785902,-0.6425290666520596,-0.46734886430203915,0.36908887093886733,0.9819753090851009,0.8100653560832143,0.5095863612368703,-0.13347778981551528,-0.2493215873837471,0.3074785713106394,-0.6597679215483367,-0.3481279672123492,0.7656731382012367,0.8681940697133541,-0.02825913531705737,0.7281299699097872,0.2102147275581956,-0.767120273783803,-0.8781201243400574,0.8414302319288254,0.8504282236099243,-0.1569880531169474,-0.3896956969983876,0.6217225720174611,0.4389019450172782,-0.23041361663490534,-0.14799877535551786,-0.672149068210274,0.45409099105745554,0.6989733860827982,0.2376074055209756,-0.8783828094601631,0.2430073982104659,-0.5679063778370619,-0.680023533757776,0.5580028048716486,-0.3657392538152635,-0.9581512371078134,-0.2002531411126256,-0.23315827175974846,-0.007804860360920429,0.5574583620764315,0.06817838037386537,-0.14700944582000375,0.6865090634673834,0.6185360718518496,-0.05562206171452999,0.8552886275574565,0.38500460144132376,-0.16086045885458589,0.2422315669246018,-0.8194480845704675,-0.4011263749562204,0.13794426945969462,-0.7220161031000316,-0.7984545836225152,0.17554154386743903,-0.7190699707716703,-0.17243991000577807,0.5337230442091823,-0.9138146699406207,0.20471107168123126,-0.5558838597498834,-0.04278346570208669,0.8793408772908151,-0.6857752436771989,0.6401234357617795,0.36575635662302375,-0.8017547163181007,0.2885259888134897,-0.3284508385695517,-0.9351061647757888,-0.8234929777681828,0.3631519563496113,-0.8765813740901649,-0.8242678074166179,-0.059540250804275274,0.45456439070403576,-0.7999593489803374,-0.554716017562896,-0.04461863171309233,0.3564260993152857,0.9907980975694954,-0.2651917072944343,0.7091717720031738,-0.7964061638340354,-0.8240938512608409,-0.049448319245129824,-0.3286691103130579,0.642809831071645,-0.06269657053053379,0.4992904970422387,-0.6974152573384345,0.47030366212129593,-0.16181994322687387,-0.4090334102511406,0.8706256067380309,-0.48262782115489244,-0.57164820516482,0.012874274980276823,-0.7122484920546412,-0.9544971752911806,0.9899195390753448,0.21114780474454165,0.20852012606337667,-0.22279625851660967,0.27113030990585685,-0.46763856895267963,0.16689811274409294,-0.43097434332594275,-0.28282386157661676,-0.08442252036184072,0.20528005389496684,-0.6427375311031938,0.3831424326635897,0.19334873650223017,0.5929279350675642,0.34105269238352776,-0.1591136995702982,0.1933184596709907,0.46913411747664213,0.6963317170739174,0.008580890484154224,0.49949221266433597,-0.8562093288637698,0.7915465249679983,0.4479889920912683,-0.8800629205070436,0.1003314508125186,-0.9317123908549547,0.35468495916575193,0.9175164788030088,-0.2025254387408495,-0.3503104252740741,0.5041272123344243,-0.6341398521326482,-0.2726788157597184,-0.5941008296795189,-0.42494653491303325,-0.3079460430890322,-0.7724600834771991,-0.9213504735380411,-0.039239069912582636,-0.6670219469815493,-0.8498666440136731,-0.5882532587274909,0.6195434518158436,-0.7493487214669585,0.20317287975922227,-0.41527496883645654,0.3577947481535375,-0.6019767890684307,0.551137509290129,0.735394112765789,0.5130860130302608,0.7223487552255392,0.40634728549048305,-0.966903196182102,-0.9827782171778381,-0.2594176670536399,0.44255210272967815,0.4477117289789021,0.13771049166098237,-0.2706983061507344,-0.6286473027430475,-0.24385286075994372,-0.5601585600525141,0.4461551564745605,0.45055611338466406,0.7111373101361096,-0.9381182049401104,0.7201586840674281,0.8758641392923892,0.8093599728308618,-0.9916879674419761,0.7886940366588533,-0.20785574754700065,-0.2902705604210496,-0.1877638096921146,0.6368624218739569,-0.6512284372001886,-0.9927959386259317,0.4098027078434825,0.20811878889799118,-0.014172506518661976,0.3293645214289427,0.964474540669471,0.6767765153199434,0.7181687890551984,0.7309437696821988,0.14035977236926556,0.2668090062215924,0.7217323491349816,-0.047836105804890394,0.862480198033154,0.3959469282999635,0.5424569128081203,0.24741991283372045,-0.14459524396806955,0.5963598540984094,-0.4783386969938874,0.9571133619174361,0.22133923135697842,0.4784698374569416,0.38977279607206583,-0.26712375646457076,-0.8659229329787195,0.08489112369716167,0.9243664471432567,-0.11371056688949466,-0.39579256903380156,-0.6065155500546098,-0.5836897972039878,0.29697486385703087,0.6916865482926369,0.2558984481729567,-0.33372630877420306,-0.39885880053043365,0.647716433275491,0.23105410253629088,-0.16783593175932765,0.644636943936348,0.19888640893623233,-0.5048606679774821,0.437837281730026,0.7725500077940524,-0.8119449126534164,-0.9878451037220657,0.5225847628898919,-0.48590162955224514,-0.11666077421978116,0.7229160666465759,-0.6656155199743807,-0.8441857006400824,-0.20398533390834928,0.7576134814880788,0.33225716929882765,0.274581381585449,-0.3864278858527541,-0.623073285445571,0.8877997160889208,-0.8891860973089933,-0.3499113842844963,-0.6923463176935911,0.46712243603542447,0.21829788060858846,-0.6506507070735097,0.9001802406273782,0.9073899113573134,0.9415255133062601,-0.4575099078938365,0.48061241395771503,0.7471544262953103,-0.19009888032451272,0.16631302377209067,0.43537328857928514,0.09034067997708917,-0.6250842548906803,0.023153369780629873,-0.7212820877321064,0.3076416882686317,0.21272174222394824,0.392147031147033,-0.06611344683915377,-0.8261653366498649,0.6753020780161023,-0.8962087105028331,0.7255694819614291,-0.9804799510166049,-0.9170346013270319,0.3001344222575426,-0.3712724205106497,-0.6922122901305556,0.8983815852552652,-0.7055526450276375,0.9185792924836278,-0.8126280126161873,0.13076785020530224,-0.3433762742206454,-0.5219524749554694,-0.10252075362950563,0.8685891921631992,0.2557345060631633,-0.9179371763020754,-0.6450391402468085,-0.15876627527177334,0.8581251325085759,-0.3923823395743966,0.7100034873001277,-0.42895794892683625,-0.9631907972507179,-0.2525073066353798,-0.11563802929595113,0.16679940512403846,0.31927721621468663,0.49898723140358925,-0.9614970399998128,-0.5946532962843776,-0.24006191501393914,0.5205002329312265,0.10848756041377783,-0.9229414737783372,0.22160931583493948,-0.20934515492990613,-0.7623257366940379,-0.1520942789502442,-0.8372314432635903,-0.9755447078496218,0.10774452099576592,0.38797891419380903,0.12945417733862996,0.501358843408525,-0.36193741811439395,0.04185743723064661,-0.13464329531416297,0.3521477454341948,0.19622719706967473,-0.4030806878581643,0.1432746723294258,-0.08985214726999402,-0.6136290729045868,0.14080124674364924,0.15495133586227894,-0.00561659736558795,0.27600170485675335,0.9803823274560273,0.659930557012558,-0.03751743026077747,0.7793028741143644,-0.13216298911720514,0.7804833333939314,-0.04623268451541662,0.6290861968882382,-0.5038066725246608,-0.678130014333874,0.265892484690994,0.13508826680481434,-0.27460577012971044,-0.9325441452674568,0.8136677597649395,0.8905160478316247,-0.5308482605032623,0.2398685202933848,0.6087842485867441,-0.12884943839162588,-0.26653268514201045,-0.693991435226053,-0.7183154742233455,0.20580888725817204,-0.32355372654274106,-0.21629743743687868,0.09377878671512008,-0.5768442368134856,0.8144712122157216,0.5068847117945552,0.09426550660282373,-0.19857375510036945,-0.8732731975615025,0.16431576618924737,0.14728803606703877,-0.5176598015241325,0.44070654828101397,0.7791003878228366,0.8491315245628357,0.5793416453525424,0.27898798137903214,0.40468569239601493,0.7300161402672529,0.43853968754410744,0.21410975139588118,-0.9313942701555789,0.03472411911934614,-0.7198434448800981,-0.9229800631292164,-0.24519624235108495,0.9162152432836592,0.6845430536195636,0.05363683123141527,0.019735198467969894,-0.6367641557008028,-0.8923887880519032,0.2032262380234897,-0.37557313311845064,0.7667547459714115,-0.8010885836556554,-0.7584307873621583,-0.8950222018174827,0.29108139034360647,0.30350018478929996,0.34416730096563697,-0.3994153696112335,-0.8346631941385567,0.4829836143180728,-0.6371124791912735,0.06428436981514096,0.1992931799031794,0.08462574426084757,-0.15046249516308308,0.5754818678833544,0.40474366769194603,-0.41017222544178367,0.8395417057909071,0.45844383956864476,-0.21725045470520854,-0.022639946546405554,-0.1837905258871615,0.26802371721714735,-0.2727987193502486,-0.5754252672195435,-0.3044597334228456,-0.12162602553144097,-0.3754178364761174,0.24301031231880188,-0.3461166978813708,0.6360630909912288,0.11293690837919712,0.2120064916089177,0.8736300473101437,-0.20252247527241707,-0.03696937533095479,-0.8337591299787164,-0.20597749296575785,0.34264592081308365,0.33904846804216504,0.7160041318275034,0.6663731508888304,0.46309677325189114,0.5154063212685287,-0.05564146116375923,0.28594578616321087,0.5117725869640708,-0.09852423751726747,-0.005356873385608196,0.5637383963912725,0.3768868390470743,-0.24212053138762712,-0.7061916221864522,-0.8547321246005595,-0.13002698309719563,0.3064788137562573,-0.9639346343465149,-0.5624918495304883,-0.6204017456620932,-0.3415202470496297,-0.1509427591226995,0.9012443674728274,0.6573872761800885,-0.9122347319498658,-0.04791706521064043,-0.7904053358361125,-0.5956393964588642,0.37450744630768895,0.8610354484990239,-0.35260758781805634,0.6003299723379314,0.6039200522936881,-0.5229235789738595,-0.25517601054161787,-0.3371015121228993,0.37298209965229034,-0.9455700051039457,0.9232457783073187,0.8645197907462716,0.49579046247527003,-0.20651557948440313,-0.928858024533838,-0.30286136362701654,-0.9621797325089574,0.8496557124890387,0.09101071115583181,0.8145127133466303,0.17263740114867687,0.07463732501491904,-0.025164655409753323,0.8699702857993543,0.3333830339834094,-0.3644655104726553,0.988158421125263,0.14811956556513906,-0.5734752216376364,-0.316827230155468,0.664650546386838,-0.420521073974669,0.9609840144403279,-0.3930602674372494,-0.36743621341884136,-0.4725873041898012,-0.8662198632955551,-0.7131017735227942,-0.763208573218435,-0.9960662224330008,-0.46917685586959124,-0.11629589786753058,-0.32877964340150356,-0.930363361723721,0.4029073193669319,-0.005348841194063425,0.7230036975815892,0.8520447975024581,-0.7303953454829752,0.12210681987926364,0.3497917396016419,0.4546172129921615,-0.4265524703077972,-0.5546656493097544,-0.555775776039809,-0.6039464636705816,0.5080703166313469,-0.7186216339468956,0.7070259787142277,0.4580705491825938,-0.7989006671123207,-0.6532557499594986,-0.7038124883547425,0.5701646297238767,0.5055598258040845,0.8332701954059303,-0.1426709950901568,0.586809515953064,-0.8533567250706255,0.2076300191693008,-0.5407975618727505,-0.2925807279534638,0.8325158376246691,0.6209329506382346,0.27810146240517497,-0.49769998621195555,-0.8934045927599072,-0.5006414256058633,0.8307702601887286,0.20583470212295651,0.014554310124367476,-0.5596281969919801,0.012021220289170742,-0.24245493253692985,-0.006876873783767223,0.5907843061722815,0.8910149442963302,-0.41147532826289535,-0.6637670919299126,-0.2917795549146831,-0.028521622996777296,0.35673021571710706,-0.5602108025923371,0.8969525154680014,-0.6767432615160942,-0.2493296437896788,-0.5939898500218987,-0.97196373809129,-0.7495545693673193,0.18443670216947794,-0.4118686756119132,0.3352021402679384,0.9968050145544112,-0.5115653038956225,0.12335510877892375,-0.2673826813697815,-0.928863700479269,-0.42495207069441676,0.3326238407753408,0.4960784106515348,0.006641743239015341,0.92736034700647,-0.2709101387299597,0.35817360738292336,-0.9460669429972768,0.7501805322244763,0.4393045175820589,-0.36780720902606845,0.9330761940218508,0.6791289797984064,-0.5116948336362839,0.0523630203679204,-0.7487828908488154,-0.06314597651362419,-0.6140224016271532,0.03359619388356805,-0.9116729781962931,-0.9026405122131109,0.6061508301645517,-0.4404421988874674,0.025516513735055923,-0.26164061250165105,0.09344702260568738,-0.9646167322061956,0.9208386209793389,-0.8031870680861175,0.9046917189843953,-0.2052823887206614,0.594300689175725,-0.8629041370004416,-0.38380857883021235,0.7659767288714647,0.5031186635605991,-0.10316098062321544,-0.6719877738505602,-0.08346061268821359,0.6275061587803066,-0.40057560708373785,0.7897935826331377,-0.6866720342077315,0.5412268191576004,-0.9845085022971034,0.3819727273657918,-0.2680159332230687,-0.7878387509845197,0.7259370065294206,-0.6245638928376138,0.8637244487181306,0.8285281346179545,-0.9576937784440815,0.33643576176837087,0.39896103274077177,0.1676063765771687,-0.63272066693753,-0.986524494830519,-0.5335017307661474,0.6633148258551955,-0.6812848849222064,-0.5982197639532387,0.6820140667259693,-0.5871646199375391,-0.8054851815104485,-0.11663258913904428,0.04560188017785549,-0.17875047121196985,0.4629902644082904,0.6757876602932811,-0.7415772378444672,0.47631747275590897,0.9601049670018256,0.3519452200271189,0.7707273229025304,0.734464312903583,-0.8193885441869497,-0.1779356161132455,-0.9081455124542117,-0.42181300465017557,0.1363531774841249,0.8621726534329355,0.5567763084545732,0.2031200872734189,0.7916776132769883,0.29732565954327583,-0.620201931335032,0.7146581020206213,0.7022331212647259,0.08048755116760731,0.032719248440116644,-0.4140027929097414,-0.5142434323206544,0.7214247668161988,-0.4558032127097249,0.7412479985505342,-0.8110533594153821,-0.7558499108999968,0.3486609593965113,0.7491987170651555,-0.5839359383098781,-0.4601088031195104,-0.8617071444168687,0.10139404702931643,0.9316207328811288,-0.007382507435977459,-0.38531544990837574,-0.8611453738994896,-0.6260768235661089,0.35170077346265316,0.11206016829237342,-0.9689708831720054,0.43000800907611847,-0.34430650994181633,0.5872323103249073,-0.7165137086994946,-0.9289306313730776,-0.3254756014794111,-0.33612798107787967,-0.21727941744029522,0.35503230756148696,-0.9236106276512146,-0.8611635859124362,-0.8146257027983665,0.4776808856986463,-0.8127538287080824,0.6532135545276105,0.16533816931769252,0.0021174494177103043,0.20945648290216923,-0.9405800239183009,0.7119335024617612,-0.25420802272856236,-0.09695451706647873,0.6762075112201273,-0.8488264377228916,-0.26060815434902906,-0.15083709685131907,0.9685977604240179,-0.3399283904582262,0.9864776702597737,-0.7284335312433541,-0.35587803553789854,0.37943876534700394,-0.16665717028081417,-0.8992218221537769,-0.9927167082205415,0.7516700280830264,0.13666720315814018,-0.1662214263342321,-0.1609730301424861,-0.8829395896755159,0.5686688525602221,0.744554462376982,0.28370297234505415,0.6898901858367026,-0.706345452927053,-0.18237660406157374,-0.583833578042686,-0.6375395958311856,-0.6499095568433404,-0.6847995221614838,-0.3824313208460808,-0.18478171341121197,-0.4378358512185514,-0.31724655954167247,-0.3106233780272305,-0.9641733653843403,-0.6663758927024901,0.8680202318355441,0.9431949439458549,-0.2447448638267815,0.4331582407467067,-0.691163657233119,0.04826043173670769,0.0993268690072,0.5386723489500582,0.1605758504010737,0.16113676456734538,-0.036106742452830076,0.41398495761677623,-0.9173254785127938,-0.6914216284640133,-0.0530834523960948,0.5156196188181639,-0.49246112909168005,0.5223704646341503,0.7999343201518059,0.5679426649585366,-0.4910912304185331,0.8008912750519812,0.7330428711138666,-0.10921208187937737,-0.8877555946819484,0.9974383832886815,0.22791858855634928,0.4085388034582138,0.15065674344077706,0.6965606277808547,-0.8328232322819531,-0.8666349942795932,0.4850997678004205,0.4780589989386499,0.1151810628362,-0.7485499437898397,-0.5329972896724939,-0.08134340448305011,0.23499969206750393,0.6607076469808817,-0.9707624157890677,-0.9750719200819731,-0.808049694634974,0.02680287044495344,0.040257055312395096,-0.6914563640020788,0.2732048719190061,-0.6031978470273316,-0.4505764739587903,0.7695136028341949,-0.44660309609025717,0.39647919964045286,-0.6837479365058243,-0.5363398813642561,0.29950732830911875,0.6626201337203383,-0.47433008858934045,-0.640849641058594,0.13757047662511468,0.5452079880051315,0.4837804581038654,0.1230945591814816,-0.07250109687447548,0.2574061704799533,-0.5604826710186899,-0.5825003255158663,0.07239832496270537,0.5492154425010085,-0.16029599215835333,0.3815637272782624,0.9842024953104556,0.4871551329270005,0.31234078761190176,0.08705799980089068,-0.6108772461302578,-0.5954889603890479,-0.9445233219303191,0.5631892778910697,-0.11842559324577451,0.5992442024871707,0.9607000341638923,0.6612041969783604,-0.05675194971263409,-0.6175209991633892,-0.8203519848175347,0.9465151871554554,-0.5972415264695883,0.6781310411170125,-0.4016791535541415,0.5855106567032635,-0.12360721779987216,0.9413948766887188,0.6603971133008599,-0.9641900365240872,-0.49309604801237583,0.5953612504526973,0.37063219025731087,-0.780772459693253,-0.21112646581605077,-0.7173212799243629,-0.953158472198993,0.5737863620743155,0.6383295557461679,0.9988032933324575,-0.1722573726437986,0.3018083409406245,0.8499327604658902,-0.8220918057486415,0.8972426415421069,-0.1716130026616156,-0.04413062706589699,0.2534694732166827,0.5523762437514961,0.9071078253909945,0.5457661086693406,-0.8953201114200056,0.06416836520656943,-0.2613749336451292,-0.9063887409865856,-0.22949181823059916,0.8163834102451801,0.7979720272123814,-0.7855615927837789,0.1075499546714127,-0.7891237437725067,0.9612330533564091,-0.9294505151920021,-0.5727758323773742,0.2600253685377538,0.04732803534716368,-0.3748487471602857,0.5988534428179264,-0.01625297451391816,-0.5687095946632326,-0.848904746118933,0.22449976857751608,-0.4258628524839878,0.9240387408062816,0.11130821332335472,0.5531576448120177,-0.8422613311558962,0.8649184443056583,-0.5562594369985163,-0.8911486379802227,-0.20911109307780862,-0.2561921924352646,0.9466907568275928,0.19078426901251078,0.19212918588891625,-0.8499981979839504,0.9546572188846767,-0.27723433217033744,0.08666226360946894,0.06299345474690199,-0.4654675256460905,0.2823716481216252,-0.45926109282299876,-0.28809550777077675,0.09864595858380198,0.679732269141823,0.6819926928728819,-0.3250835039652884,-0.37638491578400135,0.4280274943448603,0.11255855904892087,0.49751472752541304,-0.8729720078408718,0.10944803757593036,-0.8787070363759995,0.7404788909479976,0.973133759573102,0.03547756467014551,0.4419629075564444,-0.45608536060899496,-0.6317805727012455,0.8590738186612725,-0.03082472225651145,-0.6420996957458556,-0.6167734283953905,-0.10330303711816669,-0.7244242546148598,0.9359981874004006,-0.6843019113875926,-0.40937327360734344,-0.0028115403838455677,-0.7981784930452704,-0.5771262096241117,0.6538915098644793,-0.5458291242830455,0.3751819911412895,-0.9519815579988062,-0.9024334657005966,0.8994238218292594,-0.825634244363755,0.4978444497101009,0.42293898575007915,-0.47936085099354386,-0.6274306057021022,0.8170339814387262,0.591015363112092,-0.816964861471206,0.019954024348407984,-0.9922542264685035,0.8916722908616066,0.4750299002043903,-0.06275810021907091,-0.29834042955189943,0.5648855981417,0.4131717220880091,-0.2328673922456801,-0.750248022377491,0.8597636907361448,-0.07951672235503793,0.7557534035295248,0.15488056978210807,-0.9525549183599651,0.09615111351013184,-0.46651393873617053,-0.7284434847533703,-0.6478354688733816,0.9140962860547006,-0.5118568269535899,0.7438869560137391,-0.0668758382089436,0.7193642104975879,0.05789975496008992,-0.7790192421525717,0.2829898204654455,-0.4090762506239116,0.8852126663550735,0.47719495790079236,0.754179070238024,-0.49483707919716835,0.625519189517945,0.4067094246856868,-0.6785600734874606,0.8194143129512668,-0.6740246736444533,0.9594548200257123,0.8163502011448145,-0.8034035433083773,0.3923628116026521,0.4139349195174873,-0.8739285580813885,-0.9993436546064913,-0.26945770252496004,-0.8356786137446761,-0.8985605067573488,0.29295828845351934,0.5256298268213868,0.9022610699757934,-0.872308318503201,-0.4980857199989259,-0.9469514903612435,0.7228823015466332,0.8605902758426964,0.921457055490464,0.7314357454888523,-0.9435751414857805,-0.35085822409018874,0.8883122494444251,-0.5644577592611313,-0.3530497942119837,-0.9860492586158216,0.9745664615184069,0.5348276346921921,0.6679330337792635,-0.8015741999261081,0.29094257624819875,-0.23778183897957206,0.8185389954596758,-0.36403003009036183,0.046451959293335676,-0.19757284456864,-0.10262203402817249,-0.3573361639864743,0.34468534123152494,-0.12883025174960494,0.19915948435664177,-0.7539500268176198,-0.4558996194973588,0.6395908459089696,-0.3871586206369102,-0.7579410471953452,0.9091198737733066,0.057879019528627396,-0.19642466586083174,0.13922525942325592,0.2470010402612388,0.6652053883299232,-0.7555842706933618,-0.6127438675612211,-0.911293969489634,-0.991289830300957,-0.4624746651388705,-0.5723012438975275,0.7698574862442911,-0.4023761791177094,0.9242738410830498,0.5207112641073763,0.6508565600961447,0.2983454125933349,-0.4070758721791208,0.1587337488308549,-0.7581327673979104,0.14255296997725964,-0.45914058201014996,0.7263172306120396,0.5218445407226682,0.6150456359609962,0.5521739507094026,-0.8808225365355611,-0.12453006394207478,-0.3025812958367169,-0.36581050138920546,0.0730982800014317,-0.4204736310057342,-0.5322696003131568,-0.008227771148085594,-0.05373120680451393,-0.024943790398538113,0.9933052742853761,0.9320378093980253,0.6603709585033357,-0.4861987684853375,0.6336578745394945,-0.31922949478030205,-0.4562775860540569,-0.9192658388055861,0.23861618898808956,-0.5942422309890389,0.30281568691134453,-0.5721442778594792,0.8680985299870372,-0.7200270877219737,-0.0747386603616178,-0.9639145960099995,-0.5850017694756389,0.7966526509262621,0.3674651701003313,0.5087087089195848,0.27519390312954783,0.08295952016487718,0.5632460587657988,0.6834429404698312,-0.07143626874312758,0.6456694370135665,-0.8644499140791595,0.43542179511860013,0.40909068984910846,0.540500542614609,0.9055001377128065,-0.9543579770252109,0.7643113969825208,0.6422399077564478,-0.8052617111243308,0.3314526164904237,-0.8684145603328943,-0.7449393724091351,-0.489693536888808,-0.9173403298482299,0.4731338284909725,-0.04653949337080121,-0.813063177280128,0.6616315874271095,0.7311287871561944,-0.21627952298149467,0.626412729267031,-0.3854546486400068,-0.6250279168598354,0.07733266800642014,-0.09449084382504225,0.9690284496173263,0.9323354880325496,0.6602619751356542,-0.24502932652831078,0.22115330770611763,0.5094120432622731,-0.7952398164197803,-0.37379003316164017,0.7036644057370722,0.9246580256149173,-0.9837265647947788,0.3750646994449198,0.7141389343887568,-0.06749024661257863,-0.0757610653527081,0.22454764461144805,0.4417055589146912,-0.1921713030897081,-0.6061022477224469,-0.018796358723193407,-0.3042027330957353,0.14458282757550478,0.35501281544566154,-0.007792426273226738,0.6522151217795908,0.2811148464679718,-0.1487498232163489,-0.6821338939480484,0.7107828836888075,0.21827799966558814,0.4220538726076484,-0.33392469491809607,0.9906212333589792,-0.7225583409890532,0.8738401187583804,0.6093718358315527,-0.8728111637756228,-0.5993280024267733,0.809749620500952,0.9185029645450413,-0.19919130485504866,-0.8026491324417293,-0.043867995031178,-0.00025757262483239174,0.03023545304313302,0.549551812466234,0.9977943301200867,-0.3099991837516427,-0.47748417779803276,0.5204280307516456,0.48226768197491765,0.15401124907657504,0.3184358165599406,0.8910400257445872,-0.6390780108049512,0.7768505751155317,-0.5539958290755749,0.7194104380905628,-0.7457022410817444,0.3620978589169681,0.5082010449841619,-0.6838412112556398,-0.34135023644194007,-0.23796542780473828,0.8899989831261337,0.09609378315508366,0.429228023160249,0.102459782268852,0.023151380475610495,0.06847780104726553,-0.9360359986312687,-0.5755427177064121,0.9383512795902789,0.332961140666157,0.8484306815080345,-0.3696155031211674,-0.6134707238525152,-0.14680319651961327,0.7676413441076875,0.13755778688937426,-0.8564831991679966,0.6313856611959636,0.21711681550368667,-0.017601252999156713,0.8812632597982883,0.5351783181540668,0.13906961772590876,-0.6113782576285303,-0.6203348999843001,-0.5323248202912509,0.46907167602330446,-0.5683827186003327,-0.5381128787994385,-0.7079497119411826,0.49193781381472945,0.09993227012455463,-0.18966103438287973,0.2296376279555261,-0.6633313032798469,-0.9590783305466175,0.061405837535858154,-0.5779316807165742,-0.3384255482815206,0.09928824659436941,0.6147812800481915,-0.0278075048699975,-0.6578621109947562,-0.8870292105711997,-0.46620565094053745,0.05785463936626911,0.5493375505320728,-0.12214102363213897,-0.2622767314314842,0.7164533310569823,0.3910978836938739,0.9081831946969032,0.021140241995453835,-0.8741544424556196,-0.6051657544448972,-0.2678891266696155,0.027571922168135643,0.796529131475836,-0.030935475137084723,-0.8631259053945541,-0.25872738333418965,0.026809869334101677,0.18956395238637924,0.576917661819607,-0.09542044904083014,0.6858047391287982,0.2269091526977718,-0.9639364541508257,-0.4318982041440904,0.5712525439448655,-0.9985886323265731,-0.09801090089604259,-0.1576499156653881,-0.8781192000024021,-0.015394783578813076,0.6796237998642027,-0.29667647276073694,0.4048368073999882,-0.32363779470324516,0.4799829707480967,0.35506107984110713,0.8468120959587395,-0.9352787141688168,0.10304668778553605,0.25712768780067563,0.7675599604845047,-0.4746221317909658,-0.9754507490433753,0.15201692935079336,-0.5527789290063083,0.535966778639704,0.2412379840388894,-0.28790644835680723,0.2958760252222419,-0.4342126394622028,0.3733997610397637,-0.6605296647176147,0.40246621053665876,0.6268439339473844,-0.6108236936852336,-0.6756951562128961,0.5060596005059779,-0.7760222358629107,0.8198127537034452,0.6947947940789163,0.03500481462106109,-0.3964066826738417,0.8372204308398068,-0.7439349261112511,-0.23632725374773145,0.9570038262754679,0.26080286176875234,-0.2501544086262584,-0.7827100898139179,-0.7619406343437731,0.9627021024934947,0.03798162005841732,-0.11323772696778178,-0.3862937642261386,0.6787917204201221,-0.07210901891812682,0.9771580346859992,0.31891272589564323,0.0850408454425633,0.7133141495287418,-0.6918468787334859,-0.5976427071727812,0.5117833591066301,0.213779600802809,-0.5367595329880714,0.12069876445457339,0.890519842505455,0.4369240216910839,-0.8323849993757904,-0.08915672544389963,-0.40255974559113383,0.6418714309111238,0.8762943400070071,-0.3489801059477031,0.803254718426615,0.14690759126096964,-0.7828698055818677,0.448365977499634,-0.026972797233611345,-0.12532164715230465,-0.03674061922356486,0.8358398117125034,-0.46037358371540904,0.5226618591696024,-0.5420866492204368,0.7087616263888776,0.591936715412885,0.2216415754519403,0.08989337831735611,-0.4971037660725415,-0.07392043760046363,-0.6300249020569026,0.0989584899507463,-0.7056672307662666,0.9791445303708315,-0.036228586453944445,-0.31083977222442627,-0.483461769297719,0.606882284861058,0.012838812079280615,-0.9556313878856599,-0.13775949785485864,0.23212909093126655,0.003823845647275448,-0.12020662846043706,0.8746659937314689,0.7574094668962061,0.11786082154139876,0.7462358153425157,-0.21381516754627228,-0.27458937326446176,0.414907100610435,0.6143801170401275,-0.1476450520567596,0.2752210539765656,0.2681193258613348,-0.06820931099355221,0.06033280258998275,-0.43738343892619014,-0.237676992546767,0.2561285966075957,0.33230504719540477,-0.43718943651765585,-0.8545292629860342,0.4835980338975787,-0.36811623023822904,0.6847924031317234,0.20094237849116325,0.26136556500568986,0.9052271605469286,-0.641591080930084,-0.28515705605968833,-0.7472413303330541,0.8456795867532492,-0.14293322898447514,-0.21305130794644356,0.05807006359100342,0.9830492977052927,-0.9274812233634293,-0.502108327113092,-0.5314026968553662,0.5147915678098798,-0.8254563407972455,0.04259630758315325,-0.4771527089178562,0.048253930639475584,0.9663588674739003,-0.622858440503478,-0.24764784751459956,0.2564050783403218,0.9818238862790167,-0.8408319223672152,0.35988476360216737,-0.5058379331603646,0.47142580058425665,0.6097195465117693,0.839554806239903,0.9597972771152854,0.10983472550287843,-0.886049787979573,-0.740377152338624,0.4592688702978194,0.45249866507947445,0.13051348738372326,0.3098848471418023,-0.8131957422010601,-0.3874776288866997,-0.4551582047715783,-0.8717875927686691,-0.7660104893147945,0.9318185383453965,-0.864136939868331,0.8764728722162545,0.7822382869198918,-0.3592233117669821,0.4768957761116326,-0.6285127666778862,-0.4400299610570073,0.1899145725183189,-0.5149494856595993,-0.2931143203750253,-0.6301015205681324,0.03312370367348194,0.3900937675498426,-0.41552958311513066,-0.9830783004872501,0.2735097073018551,0.7240406139753759,-0.9971102215349674,-0.13449945580214262,-0.040877027437090874,0.06819521822035313,0.7010242128744721,0.17427520779892802,-0.5140398340299726,0.03618340939283371,-0.7314090598374605,-0.7023857096210122,-0.902303853072226,-0.32078932179138064,0.6514383414760232,0.47476241225376725,0.9019439639523625,0.13109528739005327,0.2536494033411145,0.8359049027785659,-0.19375906651839614,0.4347915011458099,0.7206185683608055,-0.32895847503095865,-0.46504258923232555,-0.5858520171605051,-0.9861098639667034,0.10687014553695917,0.7566449758596718,-0.9220088673755527,-0.5056702680885792,0.4331947243772447,-0.3844856349751353,-0.15865621296688914,0.9788678125478327,0.9120838805101812,-0.9803127739578485,0.32763414829969406,0.9266180419363081,-0.33548992266878486,0.0037212264724075794,-0.2723223716020584,-0.9079146422445774,0.9126649689860642,-0.0015359004028141499,0.06058762548491359,0.12887823581695557,0.14860042463988066,0.2049478804692626,-0.6696106353774667,-0.7004219321534038,-0.12450069934129715,-0.001487527508288622,-0.29078290006145835,-0.8810329628176987,0.07697987603023648,0.8441446060314775,0.545869991183281,0.900601857341826,-0.4619128853082657,0.634799528401345,-0.943533590529114,-0.8625771128572524,-0.559291732031852,-0.9604941620491445,0.23079242324456573,0.13960733078420162,0.5299633066169918,0.58676080359146,-0.7365175122395158,0.4681066246703267,-0.971792935859412,0.7701089968904853,0.9862773679196835,0.8756005386821926,-0.6855887286365032,0.28403093153610826,-0.40592656610533595,0.4209123719483614,-0.40433491114526987,-0.6344377817586064,-0.4129100115969777,0.9429009477607906,-0.738375823944807,-0.7394953975453973,0.9364942349493504,0.7256503975950181,-0.7649726676754653,0.1955139683559537,0.3373159053735435,0.8951241658069193,-0.9919015448540449,-0.8177147996611893,-0.5565826655365527,0.9191146083176136,0.5931247021071613,0.5323430458083749,0.7316635465249419,-0.22470635641366243,0.13227777555584908,0.7486728234216571,-0.46065862802788615,0.5605195872485638,0.8677167543210089,0.05970751168206334,-0.43461730517446995,0.7087873094715178,0.7125618732534349,-0.360230618622154,-0.8472530711442232,0.4930267883464694,-0.9765315284021199,-0.19746947567909956,0.5977663616649806,0.971311470028013,-0.497618384193629,0.38489725440740585,-0.8575204242952168,0.40896576130762696,-0.8054350879974663,0.3047831552103162,0.3646063837222755,0.9400011990219355,-0.6024255105294287,-0.04859980661422014,0.9075276786461473,-0.103440813254565,-0.14990783808752894,-0.12905708607286215,-0.3505917643196881,0.97031020373106,0.03003728436306119,0.8619813821278512,-0.5545540200546384,0.1271320446394384,0.9561708252876997,0.7650275565683842,0.6646043905057013,-0.5959338564425707,-0.04886069428175688,0.6076293978840113,0.05055150995030999,-0.3411430958658457,0.6838631969876587,0.436035955324769,-0.4436862003058195,-0.7240598425269127,-0.04731840454041958,0.37748789926990867,-0.5745302541181445,0.6466497294604778,0.39225416257977486,-0.6065276996232569,-0.7592668551951647,-0.5994472410529852,-0.8568393373861909,0.02141411043703556,-0.42156544188037515,-0.7592067471705377,-0.4466764642857015,0.5440087495371699,0.8872057688422501,-0.5658532786183059,0.2999563184566796,-0.013766403310000896,-0.7443734332919121,-0.7273824252188206,-0.5844403402879834,0.24685487477108836,0.13402856839820743,-0.07573040947318077,-0.6408554119989276,0.5824046274647117,-0.23031173506751657,0.2838650466874242,-0.6663434649817646,0.24844384333118796,0.9450553082861006,0.6164754084311426,0.34937915205955505,-0.2853837311267853,-0.8371497401967645,-0.17049083253368735,0.24314210144802928,-0.6038451525382698,-0.09126138081774116,-0.23270827904343605,-0.10227058967575431,0.36027002101764083,-0.2068241653032601,0.1995547180995345,0.1926478403620422,0.5885907905176282,-0.676776681561023,-0.4284527483396232,-0.738829453010112,-0.502790255472064,0.7923848344944417,-0.7595946863293648,-0.5868432433344424,0.8152304077520967,0.24592282762750983,0.6611788580194116,0.5885727610439062,-0.15763868857175112,0.05556180328130722,0.9388049161061645,0.770827392116189,-0.5628180103376508,0.4235751028172672,0.3589584524743259,0.4640564559958875,-0.4352769823744893,-0.15474803373217583,0.571005123667419,-0.3797177658416331,0.6624729218892753,0.7913107532076538,-0.42159592220559716,0.3086960786022246,-0.7298066299408674,-0.6159256384707987,0.4714855463244021,-0.9463635482825339,0.575378829613328,-0.2213517427444458,0.6187056014314294,0.9741788767278194,-0.9919930379837751,-0.11301823426038027,-0.7556906160898507,0.9631333923898637,-0.47129554441198707,-0.894987961743027,-0.38123681396245956,-0.2595162345096469,-0.9843933396041393,0.04189534531906247,0.4982622875832021,-0.5114464471116662,-0.7774221180006862,-0.9751310627907515,0.6050160666927695,0.9311445890925825,0.9177907528355718,0.8057922883890569,-0.4076645583845675,-0.48567978432402015,-0.4399575428105891,0.27754243137314916,-0.31742941681295633,-0.6746049416251481,-0.2091173119843006,0.728267140686512,-0.5476162619888783,0.8844450768083334,0.6484904726967216,-0.017858815379440784,0.2253563916310668,0.8304821662604809,0.5883092270232737,-0.19334199046716094,0.920101884752512,0.06635515578091145,-0.2997177070938051,0.35495747020468116,-0.24187209317460656,-0.4100435711443424,0.41154004726558924,0.22190104192122817,0.31344020925462246,0.8826613803394139,0.5456464947201312,-0.9381154137663543,0.7669952670112252,-0.15705456817522645,0.27267353469505906,-0.8183664614334702,0.3163831038400531,0.06508463807404041,0.10889265220612288,0.3472310099750757,0.805212221108377,0.02584662940353155,0.268147527705878,0.23442945536226034,0.5148090100847185,0.9382570404559374,-0.3451670934446156,-0.859594096429646,-0.5967048420570791,0.7972985212691128,0.28865818306803703,0.4098334270529449,0.6878904378972948,0.7110100127756596,0.5333884060382843,0.4390956284478307,0.09724864410236478,0.27959929360076785,0.9764864002354443,-0.9699464724399149,0.19128126744180918,-0.5311850756406784,-0.24034691415727139,-0.7340636146254838,-0.39146990329027176,0.9509112350642681,0.25313581759110093,-0.15531288413330913,0.1871659941971302,0.5994831118732691,0.9432477639056742,0.7217452274635434,0.6455795150250196,0.22144220862537622,0.49024591129273176,0.03343408089131117,0.12576518347486854,0.5191840063780546,-0.4015132035128772,-0.4575644894503057,0.8583689630031586,0.03224677825346589,0.8757304567843676,-0.5126778734847903,-0.8329071504995227,0.46379547053948045,0.6238478757441044,-0.21347515564411879,-0.9090808685868979,-0.7851172019727528,0.4707560492679477,0.08027038164436817,0.03742030169814825,0.02598487352952361,-0.6159946671687067,-0.3599455915391445,-0.1681449548341334,0.08489467902109027,-0.2770755998790264,0.38145774975419044,0.5601635337807238,-0.06878601806238294,0.35579559206962585,0.3971092109568417,-0.5954268067143857,0.3523936332203448,0.0935791851952672,0.06594721414148808,-0.44458656618371606,0.6496357661671937,0.12613783590495586,-0.5533985723741353,-0.6624223869293928,0.5113709182478487,0.5453968374058604,0.4367342400364578,-0.35817549005150795,0.10142564540728927,0.26124434545636177,-0.15570523869246244,0.49618729716166854,0.37608369905501604,-0.5391628877259791,-0.1054480685852468,0.6806618915870786,0.185417752712965,0.4163840380497277,-0.05555577157065272,-0.7246627910062671,-0.5339383636601269,0.9841857007704675,-0.34796814573928714,0.1592884217388928,0.09011062420904636,-0.6820511729456484,0.36146343406289816,-0.27135668275877833,-0.44207043712958694,-0.7012405679561198,-0.11767947766929865,-0.024425107520073652,0.2463182690553367,0.2248342032544315,-0.5468004746362567,-0.3294230056926608,-0.5854627983644605,0.9587669866159558,-0.5446025040000677,-0.5015396242961287,-0.4549769377335906,0.7579984762705863,0.599823503755033,-0.93316316511482,0.8595224735327065,0.30213857209309936,0.3925552573055029,-0.3914164532907307,-0.955874698702246,0.7909012068994343,-0.5799417826347053,0.5740315392613411,0.5509803388267756,0.8764131786301732,0.7768665687181056,0.8929220219142735,-0.6850524726323783,0.20643772510811687,0.4290151512250304,0.11581365531310439,0.1492190365679562,-0.7151413927786052,0.32867887429893017,-0.08012218680232763,-0.4096859493292868,-0.2531593390740454,-0.8905148007906973,-0.8068178882822394,0.3309863982722163,0.23378503089770675,0.5292842052876949,-0.14840025501325727,0.7787070977501571,-0.15969853103160858,0.8405062691308558,-0.5728884795680642,0.4129268126562238,-0.5288244960829616,0.3840654478408396,0.8804158447310328,-0.5346020669676363,-0.5372176999226213,-0.14303386118263006,-0.45001131296157837,-0.6874831435270607,-0.8267380772158504,-0.6238577761687338,0.8987195040099323,-0.5700507736764848,0.7340861605480313,-0.5912155392579734,0.6033268067985773,-0.4729173011146486,0.4887422872707248,0.689537541475147,-0.905073145404458,-0.10102841909974813,-0.6710581323131919,-0.9878399344161153,0.1625559302046895,-0.3671476454474032,-0.6908649858087301,0.6823950754478574,0.8883878602646291,0.47301583737134933,-0.1624331078492105,0.5992545308545232,0.912135224789381,-0.39421684900298715,0.2464743792079389,-0.27639613300561905,-0.8195784422568977,-0.3383405045606196,-0.9347943435423076,0.6940912776626647,0.4381853803060949,0.5433401437476277,0.1021447409875691,0.9475758704356849,-0.47971572540700436,-0.22698271833360195,-0.24490631138905883,0.15239192685112357,-0.9579013967886567,-0.2841296256519854,0.8629591227509081,0.8601247831247747,-0.09643029700964689,0.06245601922273636,-0.5833414662629366,0.7384467977099121,-0.3322863122448325,0.40376578411087394,0.14498579502105713,0.6529308217577636,-0.3995704734697938,-0.2567224628292024,0.8906936161220074,0.445460990536958,0.20139712560921907,-0.12611806858330965,-0.6002150969579816,0.8113157977350056,0.3617259906604886,-0.3372609945945442,-0.4229274890385568,-0.6700262152589858,-0.07073284965008497,0.6082054655998945,0.5105265895836055,-0.5258271391503513,-0.3334963037632406,0.03127933852374554,-0.9914221237413585,0.7938078157603741,-0.9341165032237768,-0.6353741236962378,-0.4347333423793316,-0.49828658625483513,0.5997672071680427,-0.6695361253805459,-0.2073059482499957,0.2916550566442311,-0.8757855915464461,-0.5187032744288445,0.13583969790488482,0.4597875066101551,-0.5375622063875198,0.33461675327271223,-0.9359767753630877,0.3865626356564462,-0.22842913772910833,-0.6943108588457108,-0.2963599865324795,-0.35659648897126317,0.6446369122713804,0.3940582927316427,0.6490881387144327,0.692310405895114,-0.8440690590068698,-0.3410190078429878,0.06218294193968177,0.4163218312896788,-0.9793438147753477,0.6198206762783229,-0.34245173214003444,-0.3712100936099887,0.543467746116221,-0.9615868092514575,0.5071139810606837,0.4745495184324682,0.4673253297805786,-0.013550625648349524,-0.5760060343891382,0.19105962989851832,0.7226846003904939,-0.008905557915568352,-0.3435521563515067,-0.8135465690866113,-0.8549884711392224,0.16667196853086352,-0.15526457643136382,-0.372187449131161,-0.849735904019326,-0.6531496192328632,-0.5381989069283009,0.9034068253822625,-0.3878192827105522,-0.4666195553727448,0.8802691013552248,-0.13518340094015002,-0.33691775845363736,-0.6402970971539617,0.454235031735152,-0.002686768304556608,0.25123678147792816,0.40913287503644824,0.412223887629807,0.3668096694163978,-0.7444667341187596,-0.2895869924686849,-0.01886752527207136,-0.39972076192498207,0.5540483072400093,0.2611582218669355,-0.2825898719020188,0.999317554756999,0.7384781586006284,-0.9136657984927297,0.20382690709084272,-0.6459077331237495,-0.5954794562421739,0.1905234968289733,0.1668105712160468,-0.22006846964359283,0.7805361952632666,-0.6755112241953611,0.5505153583362699,0.036552924662828445,-0.571925216820091,-0.559715589042753,0.4276267276145518,0.21820057881996036,-0.5077429846860468,0.7015763656236231,0.8781632138416171,-0.06954378727823496,-0.26236515725031495,0.786647159140557,-0.5931984963826835,0.9028513748198748,0.4053287678398192,0.8894769470207393,-0.5610800180584192,0.4357573254965246,-0.16110840206965804,0.6249082344584167,0.6252638972364366,-0.48736145393922925,-0.1957183312624693,0.6145887188613415,-0.08885157527402043,0.5510912290774286,-0.9620786099694669,0.13088835077360272,0.6617737575434148,0.3790438142605126,-0.2133262474089861,0.08667684905230999,0.13804500922560692,0.7669103867374361,0.7976213307119906,0.28692830679938197,0.9599298033863306,-0.29437592485919595,0.9324319902807474,-0.48958606040105224,-0.4008892443962395,0.7321278778836131,-0.8399506374262273,0.8667310825549066,-0.5608288301154971,0.2957892445847392,0.3206901540979743,0.7278550686314702,0.5123741300776601,0.984292724635452,-0.1791928932070732,0.8572884704917669,-0.6914849313907325,0.6639388590119779,0.6904454794712365,0.859526805114001,0.027499533258378506,-0.9185530305840075,-0.7433286998420954,0.831348838750273,-0.6959957550279796,-0.4953803699463606,0.89549938775599,-0.40758903604000807,0.7727375528775156,-0.8260581539943814,0.5711935111321509,0.7195700858719647,-0.2065083314664662,0.5564636569470167,0.770706694573164,0.4471505554392934,-0.6914046290330589,0.8614847250282764,-0.6191395721398294,0.46911940118297935,-0.9505004961974919,-0.49464399879798293,-0.10124529572203755,-0.7854579593986273,-0.050020816270262,-0.30485342908650637,-0.1508658118546009,0.9910091287456453,-0.4101604074239731,-0.32111938390880823,0.9559512250125408,0.6340108523145318,-0.9563531712628901,0.6413638032972813,-0.26089250948280096,0.039434527046978474,-0.6940131545998156,0.09772109426558018,-0.3770483289845288,0.42519585508853197,-0.33378631342202425,0.22746343770995736,0.7192930709570646,0.9054717440158129,0.922265354078263,0.5788443107157946,-0.6977174114435911,-0.10328219551593065,-0.4145800634287298,0.7621597377583385,0.8824627394787967,0.12583450274541974,-0.1399036766961217,0.3946575550362468,0.9772279136814177,0.8057770719751716,0.843291774392128,-0.7455777106806636,0.7876395350322127,0.624905351549387,-0.20644315239042044,0.1974203740246594,0.2886534878052771,-0.3062397646717727,-0.7712728912010789,-0.598409101832658,0.8093915288336575,0.7169919279403985,-0.2916374895721674,0.9603427038528025,-0.7082353397272527,-0.1416871529072523,-0.16324220271781087,0.19156953785568476,0.1770512703806162,-0.803670063149184,-0.7035739226266742,0.595110067166388,-0.02304823836311698,-0.5283993203192949,-0.7882411680184305,0.47981561021879315,-0.13627781067043543,0.6630561109632254,0.15055461646988988,-0.46673585567623377,-0.057251036167144775,-0.7510565808042884,-0.6225653090514243,-0.6561944596469402,-0.8729155524633825,0.875606567133218,0.7156283152289689,-0.2691147355362773,-0.12432183837518096,-0.7248366414569318,0.9517935514450073,0.8210564954206347,-0.08577656140550971,-0.5466915466822684,-0.6063137263990939,-0.48127913009375334,0.08407402690500021,-0.6121276346966624,-0.968222922179848,0.273051833268255,0.5846457812003791,0.822748638689518,0.6398305995389819,-0.1756949913688004,0.11696686502546072,0.8167740367352962,0.6342424834147096,0.1595177436247468,-0.10401125764474273,0.8352856910787523,0.35419383831322193,-0.39103549299761653,-0.49942346289753914,-0.5859523131512105,-0.9690461796708405,0.28892104187980294,0.9470608900301158,0.18059329921379685,-0.6683405069634318,-0.01418518926948309,0.932989354711026,0.6519559123553336,0.15429219976067543,0.7996754539199173,0.14155331021174788,0.9140709708444774,0.8498050821945071,-0.5100309839472175,-0.9755899519659579,-0.6241738991811872,-0.4086051224730909,-0.8414578773081303,-0.27081624511629343,0.19634728459641337,0.03655753144994378,-0.5742382798343897,-0.8150760480202734,-0.9167136633768678,-0.22980176098644733,-0.7522757975384593,-0.22200830094516277,0.6595847089774907,-0.10801343340426683,-0.8607487259432673,-0.6619366579689085,0.6659922832623124,-0.48531543696299195,0.8135382258333266,0.8115147803910077,0.315326897893101,-0.5440337164327502,-0.8655631234869361,-0.0033735614269971848,0.8302179002203047,-0.3680589501745999,0.021220209077000618,0.978063446469605,-0.6206682622432709,0.5135173993185163,0.12480304669588804,0.8205290925689042,0.4979153722524643,-0.4617231716401875,0.5604292913340032,-0.45622561359778047,0.425720595754683,0.11542800767347217,-0.8017948386259377,0.48987562907859683,-0.5602210387587547,-0.49341878155246377,0.689272596500814,-0.11219443520531058,0.5685894154012203,-0.5182037656195462,0.9825094770640135,-0.3347994820214808,0.7548641772009432,-0.14566273568198085,0.18061303859576583,0.7835818100720644,0.2800170062109828,0.20921205822378397,0.480814759619534,0.8892887271940708,-0.4437942458316684,-0.8063275818713009,-0.16065522050485015,-0.38650927785784006,0.027194722555577755,-0.1257957173511386,0.11928923800587654,-0.24575136601924896,-0.3066745661199093,-0.01023953314870596,-0.22692064149305224,0.5552107710391283,0.7425490110181272,-0.8734897687099874,-0.05288446228951216,0.6507443352602422,-0.1557731251232326,0.35254610469564795,0.0652480642311275,-0.5160846477374434,0.1302090841345489,-0.49374912725761533,0.833797674626112,0.7608916205354035,0.326585975009948,-0.6505751586519182,-0.7591512375511229,0.825317685957998,0.7790983347222209,0.7790401014499366,0.5360934450291097,-0.772311242762953,-0.004486370366066694,0.5776703376322985,0.2741177575662732,0.8482986092567444,-0.2764108325354755,-0.10257668094709516,0.023991102818399668,0.7653496544808149,0.2063351860269904,0.7433123821392655,0.900680304504931,-0.28946433449164033,0.5981200430542231,-0.1401540618389845,-0.20842370064929128,0.9231691909953952,-0.23655395675450563,0.2559534949250519,0.4095904682762921,-0.2657453464344144,0.20686074066907167,-0.6518622250296175,-0.8142928285524249,-0.8558223531581461,-0.8938745418563485,0.884833563119173,-0.5036647883243859,0.9490197175182402,-0.7700867275707424,0.47627931740134954,0.8363437056541443,-0.03778268210589886,-0.014378386549651623,-0.16590015403926373,0.9117387565784156,-0.902076808270067,-0.27920975210145116,-0.03690029354766011,0.6741560255177319,-0.13240487035363913,0.26818042201921344,0.1275606555864215,-0.4679725607857108,0.5802058153785765,-0.051178851164877415,-0.7308112164027989,0.9903809963725507,0.7808656641282141,0.5946700097993016,-0.35931551177054644,-0.5866987225599587,-0.25522312615066767,0.9415262220427394,0.13961849873885512,0.5736619397066534,-0.4655121867544949,-0.9286180790513754,-0.5853102630935609,-0.3072934113442898,0.8236139048822224,0.8112135883420706,0.9638099046424031,0.3008745457045734,-0.5497988988645375,0.24980966560542583,-0.8768941089510918,-0.7389602055773139,-0.7636146917939186,-0.13581782998517156,-0.7971455967053771,0.4436175497248769,0.23760057985782623,-0.5698961899615824,0.8498351955786347,0.020278882700949907,-0.7839844487607479,0.36825458565726876,-0.8640258465893567,0.38448301842436194,-0.3889173408970237,-0.12970762932673097,0.1741734785027802,0.2748076203279197,-0.5135482521727681,0.7133944756351411,0.17381708277389407,0.5522888074629009,0.698932392988354,0.5439838608726859,-0.10397887323051691,0.26001907838508487,-0.7186524807475507,0.07603586930781603,-0.9004740570671856,-0.8101945430971682,0.6763376733288169,0.6105865775607526,0.1508170892484486,0.1884386669844389,0.3272197777405381,-0.00833039777353406,0.26269190665334463,-0.6729514067992568,-0.5035604229196906,-0.686637434642762,0.5197758157737553,0.36110386392101645,-0.21020211838185787,-0.5828591994941235,0.7742847418412566,0.1293590683490038,0.733631863258779,0.47949265502393246,0.24942706199362874,0.7799701625481248,0.2152500469237566,-0.5372669822536409,0.22441571997478604,-0.8636951907537878,-0.3807923402637243,0.48590398067608476,-0.9781755623407662,-0.5905211702920496,0.9867801847867668,-0.013182020280510187,-0.8692447477951646,-0.3172043664380908,-0.4655689913779497,0.3484148741699755,0.9937155828811228,-0.4434652868658304,-0.3748235129751265,-0.355956120416522,-0.013188935816287994,-0.6287481477484107,-0.3988384483382106,0.916752272285521,-0.5638938089832664,0.3715196759440005,0.6759450840763748,0.4880277840420604,-0.7863358040340245,0.45739934453740716,-0.956239687744528,0.15157817117869854,-0.8107253992930055,-0.8954481794498861,0.9032465675845742,-0.19606163818389177,0.3444889588281512,0.9838346224278212,0.12283382704481483,0.5394939375109971,0.13786121364682913,0.5338381617330015,-0.9739300180226564,0.020472153555601835,-0.7262292844243348,-0.6872709630988538,-0.5186586128547788,0.8708588681183755,0.8722636424936354,0.18706772150471807,0.6496458356268704,0.24189268611371517,0.7777189440093935,0.018190287984907627,-0.12683367589488626,-0.6285557048395276,-0.7382434918545187,0.8379590278491378,0.5802712719887495,-0.6052167559973896,-0.18005854915827513,-0.0598083371296525,0.08042784919962287,-0.23937566904351115,-0.7254907521419227,0.8569862139411271,-0.7329224846325815,0.43154399609193206,-0.7034496534615755,0.5096060945652425,0.18508389499038458,-0.8376688905991614,-0.792345040012151,-0.02279951749369502,0.6608520662412047,0.9964567264541984,0.933910203166306,-0.6982651618309319,-0.5831027743406594,-0.7767228176817298,-0.014130013529211283,-0.9224169771187007,-0.6870906911790371,-0.08579009864479303,0.00045912060886621475,0.09575620340183377,-0.29451053077355027,0.25648274552077055,0.4407871481962502,-0.8250537710264325,0.8522690930403769,0.9122855337336659,0.44941934524104,0.556576170027256,-0.4292297959327698,-0.7449360610917211,0.22577550541609526,0.0140871605835855,0.6446818741969764,0.47631677286699414,0.06168884225189686,-0.23272364493459463,-0.9597090831957757,0.3949794741347432,0.08437529904767871,-0.6529765487648547,0.10496447142213583,0.9478272050619125,0.07630888279527426,0.7903728326782584,0.6481310920789838,0.2744623953476548,-0.9973131585866213,-0.8545571048744023,0.8664736016653478,0.1353668300434947,-0.16645993385463953,-0.966186635196209,-0.8495732466690242,0.9671814288012683,-0.7432767767459154,-0.42856918880715966,-0.21301727602258325,0.1237676041200757,-0.10824055830016732,-0.7292285659350455,-0.27846754528582096,-0.5721927839331329,0.1520152515731752,-0.9398036892525852,0.08202317776158452,-0.5324485138989985,-0.2139580068178475,-0.6756793772801757,0.6360960430465639,-0.037787136156111956,0.8134759436361492,-0.3709471388719976,-0.723463287577033,0.09133490128442645,0.9668168621137738,-0.2108234604820609,0.1469947793520987,-0.18020401243120432,-0.21208180161193013,0.6027841619215906,-0.13322181813418865,-0.9176650587469339,-0.6522159301675856,-0.3880455861799419,0.9735146006569266,0.34560396149754524,-0.6260097427293658,0.1274794596247375,0.8316067117266357,-0.09170985547825694,0.5088684903457761,0.9201712706126273,-0.12887816177681088,-0.18091162526980042,-0.809316867031157,0.7576379575766623,-0.6932369256392121,0.017609048634767532,0.1696923328563571,0.5902561121620238,-0.30648333253338933,0.05222176341339946,-0.905902910977602,0.9734810777008533,-0.6066908775828779,0.7752212900668383,-0.20905601140111685,0.4663405423052609,0.23745825747027993,-0.07297736778855324,0.1431465381756425,-0.4994482574984431,0.9033317132852972,-0.9305138932541013,-0.5871702474541962,-0.10701300529763103,-0.04329703142866492,-0.10656093386933208,0.8454821719788015,0.2791986521333456,0.8957044151611626,-0.3782960595563054,-0.9661387880332768,-0.8196540190838277,-0.6398840826004744,-0.10300564859062433,-0.3263128991238773,-0.9753171014599502,0.8101675412617624,0.7815234884619713,0.591076313983649,0.9158028680831194,0.25171256763860583,0.2451919736340642,-0.5296519082039595,-0.25736281648278236,-0.8498610886745155,0.647844763007015,0.5415577688254416,0.477203072514385,-0.20886526349931955,-0.8173035155050457,-0.49459865503013134,0.744485407602042,0.7977413316257298,0.5784881748259068,0.3609362617135048,-0.3498960006982088,-0.5967862568795681,-0.08084832690656185,0.9803051534108818,-0.08510715048760176,-0.5572151080705225,0.5915999202989042,-0.17829320626333356,-0.17565563088282943,-0.014372047036886215,-0.30916581116616726,0.2393938023597002,0.08311909064650536,0.4812192181125283,0.1538498899899423,-0.32440454280003905,-0.5458312663249671,0.18281028047204018,0.6844106898643076,-0.8602253939025104,-0.19283205084502697,-0.7771804598160088,-0.1543077351525426,-0.15890499716624618,0.48010026197880507,-0.9095390648581088,-0.12257537478581071,-0.7434593988582492,0.2992953914217651,-0.9219809179194272,0.6000221436843276,0.9949589525349438,-0.0014636567793786526,-0.5511195934377611,-0.810171639546752,0.49912218702957034,-0.3536196844652295,0.4134329902008176,-0.09085142938420177,0.6799641898833215,-0.5073246257379651,-0.7250522351823747,0.7268160553649068,0.937828934751451,0.996438798494637,0.0806861026212573,0.2325295601040125,-0.10251937853172421,0.8099076063372195,0.9780042660422623,0.2210989035665989,-0.7929246355779469,0.23756368225440383,-0.23290775157511234,0.03283716831356287,-0.3409225787036121,0.01697533205151558,-0.6311813979409635,-0.4975902517326176,0.597851978149265,-0.09104625647887588,-0.810753651894629,0.2103991755284369,0.7672778693959117,0.19769180659204721,0.3376166047528386,0.11693020816892385,-0.4181521371938288,-0.7350205234251916,-0.14136800728738308,0.605599895119667,-0.30981355207040906,0.7707824395038188,-0.8511209175921977,0.9549385006539524,0.9790276018902659,0.40232000360265374,-0.8765894630923867,0.545042303390801,0.30692958645522594,0.11862550489604473,-0.19231099728494883,-0.02552001364529133,0.9243216733448207,-0.3817191692069173,-0.17821517260745168,-0.49184068106114864,0.09678084962069988,-0.1796075631864369,-0.7163517163135111,-0.820507472846657,0.9026559214107692,-0.20287356432527304,0.8321736291982234,-0.1283502858132124,0.8986995909363031,0.48815719364210963,0.8767656711861491,0.21120460191741586,-0.31092176865786314,0.0922803059220314,0.1623965622857213,0.8701945329084992,0.5305365021340549,0.4920538328588009,-0.38125225994735956,0.5695481426082551,-0.2163288053125143,0.5473421514034271,0.810904847458005,-0.7010628413408995,0.03016005316749215,0.8097548699006438,0.6404904653318226,-0.7684520320035517,-0.3895150562748313,-0.18008398730307817,0.04487896803766489,0.038002319633960724,0.4999102898873389,-0.8687684810720384,-0.6999405398964882,-0.7066235202364624,-0.9749633683823049,0.8550750152207911,-0.33226397912949324,-0.9993458767421544,-0.7668140414170921,0.9553875331766903,0.4530731881968677,0.34887517523020506,-0.19678253680467606,-0.9101610165089369,0.7944194599986076,-0.2984154443256557,0.41028483724221587,-0.16801287000998855,-0.015750057063996792,0.48360346397385,-0.31134456116706133,0.06909943418577313,-0.06523119146004319,-0.8787228022702038,-0.7121939165517688,0.9045074451714754,-0.45164183946326375,0.524821865838021,-0.8223956106230617,0.01470320438966155,-0.5372264650650322,0.7157832174561918,0.6790952612645924,-0.02755118440836668,-0.07911514025181532,0.5650536394678056,0.22772963903844357,-0.5222266213968396,-0.7072644950821996,0.776353673543781,-0.421518633607775,0.8034342275932431,-0.5459766578860581,0.09740149462595582,0.5504159559495747,-0.6151287658140063,0.663444709032774,-0.8680126955732703,-0.3476994466036558,0.9196417625062168,0.6900662761181593,-0.8064333545044065,0.3279961058869958,0.7254462912678719,-0.8937823032028973,-0.18199177971109748,-0.8957774750888348,-0.05661657638847828,-0.2680320949293673,-0.11862468905746937,0.7868658136576414,0.4141633678227663,-0.9963100207969546,0.6255017891526222,0.49811133090406656,-0.1438386025838554,-0.42529404209926724,0.03873709635809064,0.08572457451373339,0.24909898731857538,0.6033376986160874,0.003657432273030281,0.9063988290727139,0.7281026490963995,0.08042454021051526,-0.4097920968197286,-0.16481537697836757,-0.022960087284445763,0.4816535725258291,0.9817722397856414,-0.1616609743796289,-0.9647351712919772,0.02065408183261752,-0.9234516704455018,-0.33708668127655983,0.04649917362257838,0.1166666429489851,0.42412358708679676,-0.23922427324578166,0.5385338529013097,-0.026794853154569864,0.7736905696801841,-0.30543122347444296,0.7189033119939268,-0.7242112262174487,-0.49969218019396067,0.8072660458274186,0.27551274234429,0.4798578694462776,0.5115548381581903,-0.36303207324817777,-0.9631193745881319,0.05105834500864148,-0.438767374958843,0.4570720954798162,0.33418468246236444,0.12196948286145926,0.1492873802781105,0.9488630550913513,0.6567096328362823,-0.35873290291056037,-0.6133228638209403,0.2233060016296804,0.15736656123772264,-0.8609412792138755,0.6822808645665646,0.5309064956381917,-0.7003829255700111,-0.6339383479207754,0.28017742233350873,0.3442062474787235,0.9592653405852616,0.22129488503560424,0.5596755621954799,-0.8761281063780189,0.8404282503761351,0.8869091253727674,0.6862300531938672,0.804669763892889,-0.024351472035050392,-0.9804730885662138,-0.47780915535986423,0.346696516033262,-0.48586719343438745,-0.2603196087293327,-0.8494924893602729,0.6691277660429478,0.8994201445020735,-0.11418344546109438,-0.05566871911287308,-0.09527185000479221,0.18730933731421828,0.7873553899116814,0.6732270373031497,0.23294538725167513,-0.022286674939095974,-0.15494815912097692,0.4391072951257229,0.7400920391082764,-0.21360646514222026,0.29632196482270956,-0.6000309702940285,0.5097728786058724,-0.7596060680225492,-0.32480280473828316,-0.5362376440316439,-0.004694347269833088,0.9823999293148518,-0.17721547838300467,0.4461089870892465,0.6292864554561675,0.16223295079544187,0.4642801145091653,0.11675962712615728,0.4202377344481647,-0.126169647090137,-0.29115672362968326,0.12417470337823033,0.14525060821324587,-0.9538488048128784,-0.07674509193748236,-0.4816952873952687,0.4792531696148217,-0.05350829567760229,0.09017700562253594,0.2482520043849945,-0.884076252579689,0.1781846904195845,0.5971988155506551,0.08640228770673275,0.8420324823819101,-0.5674553378485143,-0.5057819071225822,-0.7380287824198604,-0.1818682998418808,0.08503720723092556,0.14074440207332373,-0.9312212499789894,-0.7909970777109265,0.497681831009686,-0.4897640789858997,0.7503706612624228,0.867550425697118,0.6257680119015276,0.4592749159783125,0.3704502866603434,-0.5119557753205299,0.40008876472711563,0.7988110701553524,-0.9926102547906339,-0.14467122126370668,-0.1457008426077664,0.7510433504357934,0.2180160046555102,-0.6189789581112564,0.2510601691901684,0.8456760197877884,0.3174389572814107,0.08546839281916618,0.8710583485662937,0.13785428227856755,0.28342448826879263,0.6656518820673227,0.14579195249825716,-0.6218113880604506,0.2816482800990343,-0.4710368476808071,0.43412218196317554,-0.505560927093029,0.5460632415488362,0.4669154901057482,0.8964924458414316,-0.6146843191236258,0.6841269754804671,-0.40540916100144386,0.3379230475984514,0.7555681890808046,-0.7120259799994528,-0.43383924942463636,-0.9624224230647087,-0.7448958996683359,0.14284787140786648,0.030564882326871157,-0.023223819211125374,0.5630338648334146,-0.5933415009640157,-0.873776828404516,0.2469687066040933,0.5271944208070636,-0.36518961237743497,-0.7365125045180321,0.36410817317664623,0.6554499277845025,0.6361522073857486,-0.28082153713330626,0.11407281830906868,0.2952259685844183,0.4957033055834472,-0.2282448005862534,-0.4703116435557604,0.8030167231336236,-0.5031527020037174,0.15549986669793725,-0.06124065537005663,-0.6298847673460841,-0.27911092434078455,-0.08423106232658029,-0.43636095616966486,-0.48715487821027637,0.5619919179007411,-0.010365049820393324,0.5566110666841269,0.9359401040710509,-0.08232099656015635,-0.0473697897978127,-0.4783416762948036,0.8534759627655149,-0.11897029168903828,-0.31448503443971276,0.20606781635433435,-0.10076111601665616,-0.9249875620007515,-0.4512340612709522,0.7726436606608331,0.5864060465246439,0.30235053738579154,0.26329943910241127,-0.38091161753982306,0.8416323657147586,-0.6938361926004291,-0.4499831283465028,-0.9639348457567394,0.5071189920417964,0.6848011603578925,-0.5619629453867674,0.0011603869497776031,-0.05115228658542037,-0.7293690051883459,0.864282563328743,0.4357312726788223,0.14390494721010327,-0.6428503380157053,0.6305849561467767,-0.9234185661189258,0.3303213817998767,0.22757107950747013,0.5625119358301163,-0.7476854892447591,0.4440849479287863,-0.8181288903579116,0.6610791645944118,-0.1951279561035335,0.7773323184810579,-0.09987309342250228,0.7819250314496458,0.17843661922961473,0.8099384368397295,-0.2388859372586012,0.8692839257419109,0.7021146537736058,0.0307200257666409,0.8957552327774465,-0.9040548261255026,-0.3040862432681024,-0.025968163274228573,-0.6675924910232425,-0.5087491199374199,-0.8869219520129263,-0.09562509786337614,0.15142495138570666,0.0919628981500864,-0.46710661007091403,-0.5181172522716224,0.0068971081636846066,-0.4052677480503917,0.4480609302408993,-0.7273845439776778,0.7673574886284769,-0.061433278024196625,0.5555942174978554,0.9557781727053225,0.8287297012284398,0.5398784023709595,-0.20079793268814683,-0.9689450804144144,0.6503671873360872,0.4480060515925288,0.6192955430597067,0.3647334440611303,-0.8213715869933367,-0.9298829254694283,0.986215170007199,-0.21572509361431003,-0.0599398291669786,-0.3125233817845583,-0.1665640347637236,0.600525333546102,0.6200000885874033,-0.7226708335801959,-0.874251686502248,-0.8468188750557601,0.11707247793674469,0.6910537788644433,0.25090860901400447,-0.8662771391682327,-0.02193634584546089,0.9746851231902838,-0.09464745875447989,-0.7238064995035529,0.09932803083211184,0.5027779154479504,-0.9869876629672945,0.46591088408604264,-0.4116590372286737,-0.6225308384746313,0.07742237159982324,-0.42193457996472716,0.5935423304326832,-0.15386995393782854,0.20086481422185898,0.2010892564430833,-0.15406950330361724,0.18894731812179089,0.9720228747464716,-0.036074732430279255,-0.42418004432693124,0.017801616340875626,0.08676234167069197,-0.28807482309639454,-0.8015438220463693,-0.3385536656714976,-0.49704628391191363,-0.8811274506151676,0.9352085222490132,0.9816479883156717,-0.983894927892834,0.8071678527630866,-0.44970830995589495,0.595594234764576,0.8957888269796968,0.8097971896640956,-0.9322298229672015,0.9893799345009029,0.6504828571341932,0.17410764237865806,-0.618910769931972,0.14847666770219803,0.9507991760037839,0.5536448126658797,-0.9156812718138099,-0.6926554264500737,-0.6946377353742719,0.5697581451386213,0.29002752574160695,0.9183472753502429,-0.9589558532461524,-0.272097781766206,-0.9160078749991953,-0.9209581948816776,0.9816575921140611,-0.8843499631620944,-0.10750215500593185,0.3820249536074698,0.9600472655147314,0.9216365637257695,0.9608537368476391,0.8732981379143894,-0.6731863315217197,0.7290258803404868,0.4298436106182635,-0.16317474516108632,0.805109079927206,0.48482200922444463,-0.422330925706774,-0.31539608631283045,0.9637089017778635,0.2196691413410008,0.45858124922960997,-0.009649289306253195,0.3161686803214252,0.4090735507197678,0.11148935463279486,0.4343661521561444,-0.8995111519470811,-0.7817619335837662,-0.845522603020072,0.9741086312569678,-0.9945495328865945,0.040224841330200434,0.7618662645108998,-0.7615014221519232,0.2544739437289536,0.6142834261991084,-0.13122065737843513,-0.31085825245827436,-0.1664379732683301,0.2832010081037879,0.2837496539577842,0.2471380247734487,-0.28783945459872484,-0.6835555578581989,0.6580477971583605,0.9366612727753818,0.4057587832212448,0.9011713592335582,-0.9828229667618871,-0.7658997378312051,0.972542476374656,-0.6613012212328613,0.7743297526612878,-0.5365449888631701,-0.7674553296528757,-0.6557333106175065,-0.806316985283047,0.4028558344580233,-0.03997253254055977,0.7632816424593329,0.7480856338515878,0.6451202784664929,0.7042365311644971,-0.08298592921346426,0.1713392506353557,-0.3434933037497103,0.10663122124969959,-0.7324580308049917,0.5164553937502205,0.6521330471150577,-0.6106919036246836,-0.17473258543759584,-0.6309362724423409,0.8619292480871081,-0.5285827573388815,-0.7662609545513988,0.9550527418032289,0.027772669680416584,0.157856740988791,0.09401025762781501,-0.7796046920120716,0.32325877202674747,-0.12441495852544904,0.022654827684164047,0.6144652497023344,0.8833283898420632,-0.14236806239932775,0.9751670379191637,-0.023171870037913322,0.4299348904751241,-0.5522580249235034,-0.42363583156839013,0.6805287008173764,0.5968850301578641,-0.6666365810669959,0.5420126309618354,0.8184838830493391,0.8997387951239944,-0.5955636440776289,-0.5225359704345465,-0.11319660162553191,0.1301564439199865,0.23019885504618287,0.9334427583962679,-0.8594630416482687,-0.633930582087487,-0.01084058778360486,-0.82372015574947,0.9340628450736403,-0.9485088936053216,0.5773318218998611,0.9198887832462788,-0.37389588030055165,-0.5782799944281578,-0.1916512525640428,-0.004538354463875294,0.047766588628292084,0.7105691554024816,-0.21989817824214697,0.8706590970978141,-0.6969197667203844,0.6194480932317674,-0.6338350838050246,-0.7809163187630475,0.9603157755918801,0.19987776642665267,0.012765312567353249,-0.013162990566343069,-0.5728489370085299,0.28658303152769804,-0.8327234601601958,0.5068873576819897,-0.8862056042999029,-0.14373632753267884,0.9179248902946711,0.0939125414006412,-0.2613706113770604,0.6187583124265075,0.8945683226920664,-0.7284609586931765,-0.8319813022390008,-0.6762184668332338,0.6788675771094859,0.2016531932167709,0.5526572125963867,0.21614276617765427,0.3156284554861486,-0.5358737502247095,0.7168856887146831,0.34005655255168676,0.1354548786766827,0.30582280829548836,0.7351709469221532,-0.8332954524084926,0.5602051480673254,0.5103249331004918,-0.7065678760409355,0.4687813129276037,-0.5487656136974692,-0.675489520188421,-0.39530330523848534,-0.2587501681409776,-0.43958826642483473,-0.5206810119561851,-0.06085379887372255,-0.9142640964128077,-0.09772306075319648,-0.57309474889189,0.7952551171183586,0.8835571371018887,0.9304885645397007,-0.6917172083631158,0.7063672379590571,0.21700207004323602,0.6339779156260192,-0.30501070246100426,0.4105438617989421,0.1325265965424478,-0.2020437465980649,0.1212616371922195,0.4432977414689958,0.533958223182708,-0.9405649732798338,0.5672510298900306,-0.5141567848622799,-0.43776656594127417,-0.328443749807775,0.2755147716961801,-0.306182018481195,0.6262054797261953,0.6913562151603401,0.6002526828087866,0.8943355944938958,-0.2229153849184513,0.8977214335463941,0.8120743129402399,-0.20051562879234552,-0.9406167170964181,-0.8137882556766272,0.2982726991176605,0.13625185936689377,-0.24808784574270248,-0.9554785583168268,-0.014857863541692495,0.34236699994653463,-0.4223113018088043,0.657616725191474,0.14825921272858977,0.3889515567570925,0.7766054575331509,0.4903343920595944,-0.734314039349556,0.03168829204514623,-0.8793319393880665,0.036554225254803896,0.4769911873154342,-0.4682049569673836,-0.24344553146511316,0.8914091172628105,-0.8293671519495547,0.4724847264587879,-0.5945986001752317,0.7001962563954294,0.3992831786163151,-0.4986526556313038,-0.9489092691801488,-0.2972002006135881,0.35222580563277006,0.6319270855747163,-0.2511626207269728,-0.335197227075696,-0.7337163705378771,0.3250976577401161,0.4794834894128144,0.5109727336093783,0.4956546723842621,0.9168053078465164,-0.3572477684356272,-0.1808721125125885,0.6242583361454308,-0.9029116579331458,-0.2662801081314683,0.4212024277076125,0.11728183459490538,0.9895528168417513,-0.6099399449303746,0.6340313875116408,-0.9616855648346245,-0.6574785178527236,0.534176055341959,0.9510736363008618,-0.5201615612022579,0.24000632530078292,0.677593098487705,-0.5605709818191826,-0.7844953131861985,0.3844566768966615,0.857886063400656,0.5516147022135556,-0.6564871515147388,0.30756447557359934,-0.038862962275743484,0.4474857388995588,-0.018883415032178164,-0.9511986449360847,-0.3122013872489333,-0.9070079135708511,0.39245789591223,-0.5502591673284769,-0.16872225608676672,0.9985612095333636,-0.9471964933909476,0.058586891274899244,-0.5157818351872265,-0.4713658830150962,-0.580322643276304,0.24096596101298928,0.9953880002722144,0.633846752345562,-0.1413949802517891,0.5371899399906397,-0.25171014619991183,0.33158400002866983,0.5002370001748204,0.22372792661190033,0.3978764871135354,0.5826612114906311,0.6723916931077838,0.11090447613969445,0.39153851056471467,0.2598117645829916,-0.5987174068577588,0.5289818737655878,0.5399774271063507,0.5199900972656906,0.3531702281907201,-0.3733446621336043,0.4967449028044939,0.1406251536682248,-0.6531310118734837,0.2356921099126339,-0.5659359218552709,0.28276801062747836,0.5551594663411379,0.18732127454131842,0.604200525674969,0.40164615446701646,0.039280003402382135,-0.5257395007647574,-0.6333149429410696,0.7039854754693806,-0.3782268250361085,-0.052190123591572046,0.06730898283421993,0.8597451685927808,-0.8863681890070438,-0.6761981267482042,-0.841220750939101,0.2116770907305181,0.5908321212045848,-0.7051176801323891,-0.20558473002165556,-0.5707188444212079,-0.25328117422759533,0.27536133769899607,-0.14877244923263788,-0.17126032430678606,0.8999695451930165,-0.6049232711084187,-0.7208415470086038,0.5836962936446071,-0.3275368679314852,-0.1691939882002771,0.9520055945031345,0.9137811241671443,0.01772628864273429,0.6721692378632724,-0.47648492688313127,0.6736008003354073,-0.41058583464473486,-0.497605474665761,0.31843240140005946,-0.46433350443840027,-0.7221183264628053,-0.057164296973496675,0.1476753782480955,0.5925224823877215,-0.15493336506187916,-0.9346119621768594,-0.01160373305901885,0.9556134035810828,0.34657196793705225,0.6735118837095797,-0.7173567712306976,0.7389549226500094,0.03880966315045953,0.6551889865659177,-0.48268173448741436,-0.5795158254913986,0.14213565923273563,0.07547589344903827,-0.8948471616022289,0.45165535854175687,0.4347715419717133,-0.6080032321624458,-0.4685255279764533,-0.18059377232566476,0.3522619176656008,-0.11401295429095626,0.190150564070791,0.728472244925797,-0.0327742975205183,-0.04023965820670128,0.3606334109790623,-0.8241091715171933,-0.005094948690384626,0.6203760197386146,0.23678854014724493,0.8957618586719036,-0.12658230355009437,0.4142551892437041,0.38012246787548065,0.39974579960107803,-0.6105054272338748,0.049727259669452906,-0.5317181427963078,0.7956230998970568,0.3628430454991758,-0.9273152174428105,0.9094615406356752,0.9136308878660202,0.27424737997353077,-0.9833540385589004,-0.6912247836589813,0.31828270154073834,-0.5743940463289618,0.8731512892991304,-0.13825992168858647,0.8860065923072398,-0.7211724109947681,-0.2527394173666835,-0.5251586711965501,-0.24680760642513633,-0.9502391908317804,-0.3315981114283204,0.5860615577548742,-0.27852458925917745,0.005645512603223324,0.2400543550029397,0.025418694596737623,-0.13889226596802473,-0.1973603181540966,-0.4681301200762391,0.0015978505834937096,-0.8996489327400923,-0.9647663277573884,-0.3437760607339442,-0.04934461880475283,-0.1520068352110684,-0.47464331379160285,-0.20071104867383838,-0.4946987028233707,0.3787854569964111,0.027458931785076857,-0.7813107925467193,-0.6430331142619252,0.7301703905686736,0.95801921794191,0.9491525292396545,0.604292665142566,-0.9242036319337785,-0.4296755911782384,-0.6280742739327252,0.25932851107791066,-0.9254315472207963,-0.6173382615670562,-0.17348848143592477,-0.5377210704609752,0.5605489644221961,0.4983944417908788,0.7184742637909949,0.8670880664139986,-0.9336480223573744,-0.7676164521835744,-0.9349007206037641,0.7110200170427561,0.6326506547629833,-0.1591924293898046,0.627608344424516,-0.24119943380355835,0.028920143842697144,0.7540759462863207,0.664317459333688,-0.5873169209808111,-0.7119414266198874,-0.9703576527535915,-0.9981916435062885,-0.2632187562994659,0.48214907525107265,-0.5767031856812537,0.700970093254,0.8467437536455691,-0.16018966026604176,-0.7598203886300325,-0.8278402257710695,-0.9845493016764522,-0.07611017115414143,-0.2671201196499169,-0.6701095113530755,0.44774093572050333,0.10633896570652723,-0.8471216573379934,0.6119425659999251,-0.6979922009631991,0.4665357363410294,-0.1802517413161695,-0.9615066987462342,-0.14620426390320063,-0.9870315794833004,0.9226564858108759,0.15424172300845385,0.7575969165191054,-0.5009258636273444,0.679943002294749,0.9645649963058531,-0.1381251160055399,0.28820321848616004,-0.9668835937045515,-0.7249640543013811,-0.8488623909652233,-0.08123253099620342,-0.1677887556143105,0.16256647277623415,-0.5652631702832878,-0.7955155344679952,0.32536170445382595,0.9463694514706731,0.42922436725348234,-0.82274632435292,0.24750328855589032,0.6329618380405009,-0.0780202578753233,-0.984782999381423,0.2854350986890495,0.5380089329555631,-0.9351714155636728,0.4204291491769254,-0.2676978539675474,0.8819300560280681,0.27685037814080715,0.8152296072803438,0.9973569917492568,0.2138055399991572,0.10628682794049382,-0.11430889135226607,-0.4682854851707816,-0.5983463395386934,-0.1425327188335359,-0.6185747808776796,-0.6444928450509906,-0.34604333946481347,-0.09635498188436031,0.25980678107589483,0.9241832918487489,0.651566025801003,0.31065124412998557,-0.10579317808151245,0.9579522460699081,-0.9579076310619712,-0.08214015699923038,-0.6166509906761348,0.43725728103891015,0.6710857721045613,-0.41621707286685705,0.04826471349224448,-0.8389408839866519,0.4166712975129485,0.5696737985126674,-0.9997449982911348,0.2798207104206085,-0.9277490265667439,-0.153046318795532,-0.9448944805189967,-0.9895097617991269,-0.9625646132044494,0.531522961333394,-0.2244130400940776,-0.568480780813843,-0.9541551792062819,-0.10188372526317835,0.18290740763768554,0.6562383524142206,-0.6631693318486214,-0.9370353361591697,-0.027798715978860855,-0.8408770682290196,-0.4623330612666905,-0.852147719822824,-0.41225599171593785,-0.853472925722599,0.8603771207854152,-0.5100015699863434,-0.11147665185853839,0.30536035215482116,0.170087615493685,-0.2660375200212002,0.3378381091170013,0.8268803427927196,-0.6567531288601458,-0.9951510727405548,0.9215070120990276,-0.32246023043990135,0.28294465178623796,-0.42107586096972227,0.21658731484785676,0.8714629677124321,-0.08894090447574854,-0.9557681712321937,0.6717128893360496,0.27286022156476974,0.8659081324003637,0.16682132938876748,0.8651496232487261,0.5818992829881608,-0.9310382888652384,0.9405098129063845,0.8314410485327244,-0.7431120532564819,-0.2791432933881879,-0.6018330412916839,-0.4739095657132566,-0.4082281426526606,-0.7410926301963627,0.4561703819781542,-0.5257476433180273,0.2811368415132165,-0.8220486515201628,-0.32254167133942246,-0.3776029134169221,0.6597047941759229,-0.8976611723192036,-0.15627140924334526,-0.2918178807012737,-0.4398359819315374,0.37375026755034924,-0.4887275150977075,0.1322981002740562,0.21921402355656028,0.7267477093264461,0.9984379932284355,-0.965095086954534,0.5405016862787306,0.862077746540308,0.4601226719096303,0.5668613072484732,0.3894278849475086,-0.20635041128844023,0.5340965315699577,0.24270471604540944,-0.8505357694812119,0.32909029303118587,0.46904867328703403,-0.5151727763004601,0.6664264677092433,0.009452804923057556,-0.3306276760995388,0.16990366065874696,-0.8644630541093647,-0.7269554538652301,-0.4998077815398574,0.7545299222692847,0.30245399475097656,-0.21991654811426997,-0.2961220657452941,0.8799923439510167,0.11338331550359726,0.1803138260729611,0.7118753748945892,-0.8340277713723481,0.5317347012460232,-0.5642341044731438,0.49507349729537964,0.8053588378243148,0.12961501395329833,0.20957278460264206,0.4994379887357354,-0.5866580763831735,0.8920183381997049,-0.14656669041141868,-0.7204840532504022,0.5956012173555791,0.9770590797998011,-0.6582335056737065,0.034097927156835794,0.21515378775075078,0.6161980940960348,-0.4107658062130213,-0.9935093987733126,-0.5844825734384358,0.816887398250401,-0.8179363217204809,0.6713385661132634,0.050373116973787546,0.7710308548994362,0.8138987789861858,-0.8094908059574664,0.21605736296623945,0.9535133284516633,0.43803646648302674,0.24331539776176214,0.0406418819911778,-0.2828040733002126,0.47876928094774485,-0.23179951729252934,-0.5226663681678474,0.7928932588547468,-0.8214697828516364,0.697600582614541,0.8573749386705458,0.16359205543994904,0.6662771985866129,-0.289984586648643,-0.7858710894361138,0.8589585418812931,0.7177406130358577,0.910355628002435,-0.705540465656668,0.8287762543186545,-0.5873841140419245,0.15808352688327432,0.9434712952934206,-0.43372582411393523,0.312662101816386,0.9230625075288117,0.4395459988154471,0.4594144723378122,0.720753769390285,0.48254099301993847,0.14632435096427798,0.9034140543080866,-0.44332672003656626,-0.4110379428602755,-0.3838033163920045,-0.7076076283119619,0.9384205830283463,0.9823904130607843,0.5816009389236569,-0.3599543641321361,-0.6278662700206041,0.7496739267371595,-0.417934725061059,0.755791908595711,-0.7083661817014217,0.08418514346703887,-0.6183893247507513,0.5645924401469529,-0.11125602200627327,-0.11296482849866152,-0.8199200411327183,-0.9096612418070436,-0.1266264426521957,-0.8658869750797749,0.08062117919325829,0.8875953019596636,-0.2635100777260959,-0.22713960614055395,-0.2165099368430674,-0.8688395046629012,-0.9212440536357462,0.9832913824357092,-0.07017461908981204,0.3104267595335841,0.4386661401949823,0.5861021438613534,0.2777823815122247,0.6574632138945162,-0.21695523848757148,0.7576115736737847,0.7401850395835936,-0.7089891876094043,-0.8438143646344543,-0.8271318841725588,-0.9956003520637751,-0.48886982584372163,-0.7157519431784749,-0.7571648764424026,0.029613719321787357,-0.46125555550679564,0.6195178921334445,0.19847213150933385,-0.2726061581633985,0.8513704109936953,0.5811032559722662,-0.3890407742001116,0.05525252828374505,-0.9868470039218664,-0.9347085519693792,0.18862473452463746,-0.9732025759294629,0.23667118465527892,-0.4101152732037008,0.13120991131290793,0.21228393400087953,-0.43674166733399034,-0.6117969760671258,0.8699968648143113,-0.5398301826789975,-0.962718007620424,0.15087009873241186,-0.9622005107812583,0.2246639085933566,-0.20300709130242467,0.3252992881461978,-0.026568968780338764,-0.6015656874515116,-0.45450593857094646,-0.10991556197404861,0.21769840084016323,0.19323883624747396,-0.5484872655943036,0.7408536551520228,-0.8992237742058933,-0.4138891310431063,-0.40587235148996115,-0.7346668522804976,-0.9378456147387624,-0.032372414134442806,-0.8823473202064633,0.7897473201155663,0.6818862967193127,0.3211829196661711,-0.65397924836725,-0.3600295642390847,-0.36858950601890683,-0.5357131278142333,0.1270386795513332,0.8965990617871284,-0.23039858415722847,0.6639581732451916,-0.399228410795331,-0.4357670587487519,0.8898622705601156,0.3666162439621985,0.9957070145756006,0.8773612161166966,-0.07681802287697792,-0.3961183070205152,0.44282235065475106,-0.434665035456419,-0.9595645102672279,-0.16530024958774447,0.4008091911673546,0.7167663318105042,-0.009831379167735577,-0.24342188658192754,0.3500820631161332,-0.8246360109187663,0.1835646377876401,-0.5809868704527617,-0.8949784352444112,0.20236743008717895,0.46171122416853905,0.9622125588357449,-0.8894271533936262,0.6854296950623393,0.6031523235142231,0.9987884387373924,-0.11231907457113266,0.16229273937642574,0.146988685708493,-0.1535282745026052,0.9530270691029727,-0.8083138922229409,-0.25337524292990565,-0.8927669650875032,-0.9089783793315291,0.32274559466168284,-0.8972576889209449,-0.6179643445648253,-0.5371457771398127,-0.046788088977336884,-0.038128039333969355,0.9356043133884668,0.38596817571669817,-0.9953042455017567,0.3418448460288346,0.6652010069228709,0.034741933923214674,0.37884425884112716,-0.23156531853601336,-0.1427394044585526,0.677938689943403,-0.3467145310714841,-0.8520943829789758,0.198710517026484,0.3068446242250502,-0.618895614054054,0.7687332183122635,0.3880674261599779,0.05058507574722171,-0.8029411504976451,0.8013559649698436,-0.7059783823788166,0.6534845815040171,-0.04652975592762232,-0.38007921166718006,-0.9127406943589449,0.9701021914370358,0.8772041089832783,-0.6252205208875239,0.49341826653108,0.388466096483171,-0.6756005152128637,0.7348194983787835,-0.776586061809212,-0.24532342236489058,0.7691804864443839,-0.21112025203183293,0.6484758332371712,0.7128446870483458,-0.6980698336847126,0.5063003664836287,-0.25219291308894753,0.8661893457174301,-0.993773864582181,-0.9470717329531908,-0.001537335105240345,-0.9503499697893858,-0.6125389849767089,-0.9735521771945059,-0.32452331203967333,0.26670162891969085,-0.3472334025427699,-0.2658660542219877,-0.4284914741292596,-0.4565658518113196,-0.0791761283762753,0.25458949990570545,0.8791234684176743,-0.7651164792478085,-0.18461275659501553,0.8081764471717179,0.2606754023581743,0.11172486701980233,-0.326674384996295,-0.07368894573301077,-0.3893995964899659,-0.7981541967019439,-0.1527574392966926,0.9542705942876637,-0.21504357503727078,0.29713679337874055,-0.3577192681841552,0.12093459954485297,0.8858054066076875,0.9968555080704391,-0.031054374296218157,-0.5379086174070835,0.2539138924330473,-0.07100037485361099,-0.843692353926599,-0.7101487359032035,-0.5493675079196692,-0.709979749750346,-0.38893733313307166,-0.6397327510640025,-0.09552976675331593,-0.07198370387777686,-0.38877057377249,-0.7731324909254909,0.9265153459273279,-0.17516755079850554,0.06101133767515421,0.8857935545966029,-0.13406598009169102,0.9942382853478193,0.0589649504981935,-0.07923555374145508,-0.3795576337724924,0.9968891176395118,-0.10081196436658502,-0.2256239508278668,-0.9397791433148086,-0.15433624433353543,-0.49412355851382017,-0.49437661515548825,-0.9611693965271115,0.8024837234988809,0.9360644021071494,0.3345196074806154,-0.007861543446779251,0.7755400240421295,0.7865264620631933,-0.6455572722479701,-0.15627209609374404,-0.9510051589459181,-0.7839317163452506,-0.15235406067222357,-0.4592128964141011,0.6568071884103119,0.06910129822790623,0.41925301775336266,0.6837621685117483,0.1319175846874714,-0.5045945011079311,-0.27202172484248877,-0.45408658497035503,0.1328760152682662,0.8824693644419312,0.5577237266115844,-0.3153175232000649,0.29493279475718737,-0.3434707038104534,-0.497087852563709,-0.6893864450976253,-0.3105004923418164,0.30742820026353,0.7382409744895995,0.5686478791758418,-0.6312885819934309,0.3765182211063802,0.4066518801264465,0.42812841944396496,0.7481961641460657,-0.525093677919358,-0.6856728331185877,-0.11651976592838764,0.5106587931513786,0.30820345040410757,-0.25223964266479015,0.22480107238516212,-0.011986427009105682,-0.9393560527823865,0.44879426900297403,-0.4091236796230078,0.1758492710068822,-0.7827236470766366,-0.7310501704923809,-0.32180878333747387,0.8519914415664971,-0.6596284853294492,-0.5812072940170765,0.46283970354124904,-0.03314488893374801,-0.030735222157090902,-0.5123428557999432,-0.2645996124483645,-0.9902660930529237,0.005451991688460112,-0.009972252883017063,-0.8522511534392834,-0.4907449362799525,-0.7234331462532282,0.023309504613280296,-0.676621422637254,0.3837356544099748,0.4393295575864613,0.7292500482872128,-0.10074827773496509,-0.09405240975320339,0.1455825217999518,0.44974758522585034,0.05739303678274155,0.005721575114876032,0.5680518075823784,0.1352616553194821,0.21007197443395853,-0.023533925414085388,-0.7116652131080627,-0.15085631283000112,0.8537091817706823,-0.964847719296813,-0.4624622268602252,0.20377832977101207,0.6921270205639303,0.7310810601338744,-0.43738037813454866,0.8089389782398939,-0.04189152084290981,-0.8482638583518565,-0.8641775380820036,0.982089223805815,-0.09818859165534377,0.9709585532546043,0.9379920256324112,-0.152043123729527,0.10158273437991738,0.36826338805258274,-0.5082728508859873,0.8192898668348789,-0.4294824618846178,-0.5001321379095316,0.7556950459256768,0.5871791555546224,0.8877425286918879,-0.8055777223780751,-0.2902554478496313,-0.8343478115275502,0.456516875885427,-0.7026416561566293,-0.050851964857429266,-0.6757889026775956,-0.7969190939329565,0.5051586511544883,-0.756900844629854,-0.6316534727811813,-0.7883638003841043,0.10108140483498573,-0.3873879355378449,-0.9044770342297852,-0.9501071842387319,-0.2996623208746314,0.9498537732288241,-0.48596321884542704,-0.9255504878237844,-0.13165167020633817,-0.1064984961412847,0.9496359433978796,0.5376038607209921,-0.5241032699123025,0.17325734812766314,0.7488973839208484,-0.4497084589675069,-0.8155832467600703,-0.21220549941062927,-0.6983239538967609,0.6310999328270555,0.7115346849896014,0.30322977853938937,-0.6976754507049918,-0.1710595260374248,0.508214118424803,0.45140580367296934,-0.6833485318347812,0.29735778644680977,-0.0051295277662575245,-0.011030460707843304,0.4835905679501593,-0.4780035521835089,-0.23136645276099443,-0.28285584645345807,-0.30201270524412394,0.3700958341360092,0.5379221299663186,0.25708568235859275,-0.5286440886557102,0.6812141132541001,-0.22092313412576914,0.9803040120750666,0.9270941470749676,0.0734166968613863,-0.6788959135301411,0.8239514920860529,0.0947874472476542,-0.5599911198951304,0.28209050092846155,-0.9202589094638824,0.7602086067199707,0.3610313064418733,0.41281052865087986,-0.33994263457134366,0.684485602658242,0.2403802014887333,-0.59841826884076,-0.4263053457252681,0.18536388268694282,0.9295145277865231,0.38663350231945515,-0.9073057696223259,-0.6657832409255207,-0.23286386765539646,-0.879617809318006,-0.968389852438122,-0.23915482219308615,-0.3245058790780604,0.8373534283600748,-0.7378288693726063,0.8467223732732236,0.6708660000003874,-0.2717807376757264,0.7729823989793658,0.9638032983057201,-0.5626294333487749,0.2689458318054676,0.5645405850373209,-0.9354291995987296,-0.345351240132004,0.7259932602755725,0.659737491980195,0.4645023448392749,0.9690901497378945,0.791596298571676,-0.35741143114864826,0.5202831062488258,0.4944616020657122,0.43243581987917423,-0.8721696492284536,0.2781111071817577,0.4261065241880715,-0.4796013976447284,0.6503582503646612,-0.18895637104287744,0.03270428953692317,0.9790311083197594,-0.0016177548095583916,0.29158187471330166,0.6890831077471375,-0.8723124428652227,-0.47592012071982026,0.5969338812865317,0.7854762705974281,-0.7783397017046809,-0.20585771510377526,-0.8327260687947273,-0.7979205837473273,-0.3761717854067683,0.7307206112891436,0.04504706431180239,-0.31187213119119406,-0.6645523412153125,0.3389857434667647,-0.9971524314023554,-0.4673945242539048,-0.780397039372474,-0.6785045573487878,-0.515684672165662,0.20776652079075575,-0.7206077994778752,-0.8038449436426163,0.076813327614218,0.09812702191993594,-0.5946271060965955,-0.8612817325629294,0.44268502946943045,-0.25296563236042857,0.026454382110387087,-0.46913286950439215,-0.534898741170764,0.5136153474450111,-0.5949073857627809,0.7723110197111964,0.7035014317370951,0.3844800950028002,0.18942483142018318,0.7477042535319924,0.44229265162721276,0.5493134148418903,0.539214136544615,-0.18829305469989777,0.9852974987588823,-0.5025308290496469,-0.04774859268218279,0.5570279308594763,0.23428753623738885,0.851800078060478,0.8735668160952628,-0.0668949163518846,-0.028615663293749094,0.15670497016981244,-0.49700504168868065,0.5756924990564585,-0.7032946422696114,-0.5870894868858159,-0.15373113239184022,-0.5933743407949805,0.3457053415477276,0.5185972605831921,-0.5471055307425559,0.21650868747383356,-0.09614826692268252,-0.2044174401089549,-0.3918606471270323,-0.6320066954940557,0.5381752923130989,0.5514948228374124,0.7044027606025338,0.6050465912558138,0.9663458489812911,0.23642035434022546,-0.947401998564601,-0.37674614507704973,0.8099046130664647,0.002626416739076376,-0.7919472209177911,-0.24346399400383234,0.74132274184376,-0.04156394908204675,-0.3949054297991097,-0.467007998842746,-0.6860961467027664,-0.3948403703980148,-0.5835301270708442,-0.17830953188240528,-0.24654919654130936,0.020774215925484896,-0.4318312522955239,0.3879951434209943,-0.9176598498597741,-0.743519636336714,-0.20525489328429103,0.8438077894970775,-0.9768122807145119,0.7168613849207759,0.32549649802967906,-0.005955522879958153,-0.2832585060968995,-0.5017161099240184,-0.7152029699645936,0.3199380971491337,0.11279542604461312,-0.7210056227631867,-0.04248612280935049,-0.23652440635487437,-0.4845772869884968,-0.08586886804550886,-0.1822384474799037,-0.655135853216052,-0.848425202537328,-0.46659157797694206,0.29465718753635883,0.7630498730577528,-0.7049508290365338,0.875637992285192,-0.19004384567961097,0.7175922356545925,0.14104748610407114,0.44737832248210907,-0.6303559760563076,-0.45700022857636213,0.04714510915800929,-0.7251594117842615,0.43459613248705864,-0.8697646106593311,0.7258606110699475,0.5434990050271153,-0.35956659400835633,0.37037564162164927,0.9692299044691026,-0.7223577466793358,0.4021032671444118,0.5183311984874308,-0.15988317411392927,-0.8639956871047616,-0.3275165958330035,0.296576579567045,0.4615735919214785,0.7312236661091447,-0.4131950791925192,0.5768929026089609,-0.7476801690645516,0.9049613028764725,-0.31761015160009265,-0.12462309375405312,0.08180725667625666,0.9522982868365943,-0.7133783353492618,-0.7798620578832924,-0.05294686695560813,-0.35991772823035717,0.405053055845201,-0.7497762134298682,0.3407256808131933,-0.7494421941228211,-0.06993678817525506,0.4476445475593209,0.811346163507551,0.787864460144192,0.15251019364222884,0.8711525574326515,0.6272312253713608,-0.5407666638493538,-0.5442668441683054,-0.8360164081677794,0.7904997179284692,-0.22342525608837605,0.41099338000640273,0.09608262497931719,-0.5788237224332988,-0.3735144757665694,-0.35917225340381265,-0.6058927630074322,-0.6869605830870569,0.2619254211895168,-0.8205781644210219,0.5693029412068427,0.9755255319178104,-0.04900876199826598,-0.21006849594414234,-0.10481052892282605,0.4391247136518359,-0.03668902115896344,-0.7496235310100019,-0.3375838273204863,-0.15935352304950356,-0.9955215672962368,0.08980400301516056,0.7193285669200122,0.9540848019532859,0.9143113028258085,0.27939039934426546,-0.7225414267741144,-0.9594647181220353,0.7239164891652763,-0.6390808643773198,0.5105722090229392,-0.20756744546815753,0.07913600886240602,0.9865135657601058,0.41355653246864676,0.011911480221897364,0.7146998420357704,-0.9783411934040487,-0.9368767165578902,0.46317497454583645,-0.9281416065059602,-0.629596252925694,0.8508078455924988,-0.4706705454736948,-0.9251085566356778,-0.13782958034425974,0.6445694980211556,-0.07523917220532894,-0.7791524180211127,-0.9904864337295294,-0.15273742051795125,-0.8790621757507324,0.32610004022717476,0.10280269011855125,0.19870931841433048,0.6733713210560381,0.3154612868092954,0.18779910868033767,-0.34964522579684854,0.9508688529022038,0.8691225158981979,0.0036325715482234955,-0.7671801643446088,-0.9185865898616612,-0.7118871975690126,-0.4914700901135802,-0.5949940183199942,-0.01479601627215743,0.5965861128643155,-0.9087291830219328,-0.9018078637309372,-0.7681575869210064,-0.9100036569871008,-0.5635320274159312,0.9384546270594001,0.7605707235634327,-0.10240717744454741,0.038026679772883654,0.16620684461668134,0.262328474316746,0.13841027859598398,0.5154083459638059,-0.6126098507083952,0.3426687023602426,-0.8156741708517075,-0.06251010345295072,-0.10904908739030361,0.38936604326590896,-0.912885578814894,-0.9554530405439436,-0.40477776853367686,0.8957827324047685,-0.6542928959243,0.21834595082327724,-0.9364640563726425,0.9522594688460231,0.9167142841033638,0.5177455917000771,0.18087650602683425,-0.523608825635165,0.5974199501797557,0.9136461736634374,0.968647763133049,0.5344363623298705,-0.8431674800813198,0.8579559563659132,0.1418987694196403,-0.011730269994586706,0.9569994551129639,0.8285985556431115,0.976120478939265,-0.3132009655237198,-0.1293172319419682,0.688768123742193,0.07780883740633726,-0.17896374873816967,0.9691801937296987,0.04748533759266138,-0.4512903434224427,0.11002907669171691,-0.34080801252275705,-0.24297595769166946,0.9247086350806057,-0.29227509908378124,-0.816617633216083,0.40515477070584893,0.7760906741023064,-0.7602845821529627,-0.9048894471488893,-0.05700685316696763,-0.2032395452260971,0.9471848011016846,-0.27753550466150045,-0.9741062489338219,0.40206081606447697,0.487854297272861,-0.15675062825903296,0.34480354748666286,-0.4320800914429128,-0.2919203485362232,-0.8494955184869468,-0.5709677580744028,0.9181005340069532,0.5490235914476216,0.5686707589775324,0.8488785466179252,-0.5372197153046727,0.17806988069787621,0.26140202581882477,-0.017968303058296442,-0.6032370547764003,-0.5183528526686132,0.4003069163300097,-0.034189813770353794,-0.8687677676789463,-0.42232368886470795,0.5604317272081971,0.28641772735863924,0.036001079715788364,-0.8295068996958435,0.018545102328062057,0.7259730664081872,0.3980959914624691,0.061858047265559435,0.7661375058814883,0.8187578776851296,0.40942045813426375,0.42034682957455516,0.8493676907382905,0.8193057207390666,0.27540348656475544,-0.11558720469474792,-0.0025018248707056046,0.07281568786129355,0.3822492123581469,-0.10992642072960734,-0.31080706464126706,-0.09756189910694957,0.26674030581489205,-0.03565614577382803,-0.2863968024030328,-0.2658526115119457,-0.674014332704246,-0.019133635330945253,0.284479929599911,0.08983480930328369,0.3724295753054321,0.873007798101753,0.34467391576617956,-0.38983665872365236,-0.6879455633461475,-0.38761427253484726,0.061563612427562475,-0.3756304495036602,0.5991653008386493,-0.9876239574514329,-0.4100809567607939,0.8066726182587445,-0.5853506973944604,0.22641416918486357,0.7972926427610219,0.829801395535469,-0.06904115853831172,-0.8317618519067764,-0.45147631550207734,-0.1876096478663385,0.3738035704009235,0.7028763750568032,-0.9750678264535964,0.8696823632344604,0.1812851084396243,-0.15946632670238614,-0.5778232458978891,-0.9593235147185624,-0.19515781244263053,-0.6246823826804757,-0.6678238571621478,0.8566924510523677,-0.6553170713596046,-0.19239175645634532,-0.6009215461090207,0.895110038574785,-0.4893511775881052,-0.11437250068411231,-0.9614221593365073,0.7045234329998493,0.05592729710042477,-0.08127879491075873,-0.748883219435811,-0.9855046719312668,0.5399078684858978,-0.7650868324562907,-0.5627019484527409,-0.8809276833198965,0.9252288318239152,0.035612952429801226,-0.8359522013925016,-0.8701036754064262,0.555007844697684,-0.8064572843722999,0.5551575613208115,-0.9973259260877967,0.4900328707881272,-0.8148193517699838,-0.6619032891467214,0.22425066959112883,0.9325233213603497,-0.9846038832329214,0.6451110253110528,0.3278788644820452,0.32984020886942744,0.3789679449982941,-0.05874026706442237,0.24218136351555586,0.5248744622804224,0.9847141411155462,-0.9041424710303545,0.4936338593252003,0.48843318969011307,0.25596283189952374,-0.06896729487925768,-0.1055297483690083,0.7116489564068615,0.9570959866978228,-0.6515660658478737,0.7799017913639545,-0.5844104210846126,-0.6904841242358088,-0.5816432028077543,-0.6318328818306327,-0.37932339776307344,0.5875727166421711,0.2894873875193298,-0.6380979400128126,-0.5393601972609758,0.1773319123312831,0.2624305188655853,-0.5226528365164995,0.8004280892200768,-0.1430522077716887,-0.4804997481405735,0.9340832051821053,-0.9857839960604906,-0.8113305903971195,0.5234290156513453,0.014386150054633617,-0.18822616944089532,-0.5864133052527905,-0.932937053963542,-0.48297420470044017,0.6913982313126326,0.9527342692017555,0.2792305783368647,-0.6735200891271234,-0.7862891480326653,0.42449038941413164,-0.6828408464789391,-0.09763034479692578,-0.10112195741385221,-0.681572268716991,0.9671190963126719,-0.3559123519808054,0.8490627030842006,0.8689676499925554,0.8199892658740282,0.7425579060800374,0.727974642533809,0.8813623269088566,-0.9212414938956499,0.8099849023856223,0.5211037369444966,0.5231552314944565,0.06699052965268493,-0.16778893442824483,-0.7650872794911265,0.7793247434310615,-0.7759786187671125,-0.7726151612587273,-0.061054459773004055,0.21181509597226977,-0.8480784255079925,0.3150366540066898,0.7645670836791396,0.8978943172842264,0.459129745606333,-0.042107943911105394,-0.6178108039312065,0.04056028742343187,-0.9965792833827436,-0.2335981810465455,0.9265628466382623,0.18492572894319892,0.27775018895044923,0.5108004407957196,0.40937442146241665,-0.02759697800502181,0.7740265568718314,-0.17507974850013852,-0.4386341813951731,-0.3971126242540777,-0.4370004590600729,-0.1324667828157544,-0.8139875074848533,-0.6676324675790966,-0.5022182418033481,-0.7113762050867081,-0.38077011425048113,-0.5153955351561308,0.327494359575212,0.35231761494651437,0.19953700667247176,-0.1783996750600636,0.5109619433060288,0.08796943770721555,-0.037217095494270325,-0.27506417129188776,-0.44759941287338734,0.9487988939508796,0.1371891973540187,-0.8731162208132446,-0.35266619361937046,-0.6174010797403753,-0.8025862206704915,0.8855409240350127,-0.8871245551854372,0.8416838049888611,0.5098208766430616,0.7052829810418189,0.1328531103208661,0.6848994707688689,0.2954048435203731,-0.2170346900820732,-0.6281930431723595,-0.4495110963471234,0.4742588954977691,-0.4550029616802931,-0.3728009629994631,-0.6901199501007795,0.2926933392882347,0.827428013086319,-0.004969056695699692,0.09967133076861501,-0.049812688026577234,0.6865210901014507,-0.41614534286782146,-0.1090533398091793,-0.13838954782113433,0.12235313327983022,-0.026265208143740892,-0.647340452298522,0.8912936383858323,0.8968237214721739,-0.7418792699463665,-0.5578426723368466,0.36126555409282446,-0.4809810188598931,0.9425112595781684,-0.4668302615173161,-0.40933822374790907,-0.2779578878544271,-0.7029655114747584,0.7320461710914969,0.3344861064106226,-0.5759859788231552,0.8770971391350031,-0.5903692180290818,-0.3778204978443682,0.7406030897982419,0.5850528813898563,-0.07082301890477538,0.9520782777108252,-0.9439279674552381,-0.1747736046090722,0.20137162785977125,0.4860662710852921,-0.00278562493622303,-0.7474372894503176,0.9750325731001794,0.3074246230535209,0.7102295844815671,-0.6177410907112062,-0.5925923543982208,0.2811650545336306,0.13449303340166807,0.7582905529998243,0.8412039084360003,0.6720231692306697,0.40108386520296335,0.14088100846856833,0.4848930388689041,0.7489319513551891,-0.5597528060898185,-0.9638221203349531,0.37730042776092887,-0.5872501754201949,0.42056785291060805,0.5946337096393108,0.20814825361594558,-0.6408512103371322,-0.18863044120371342,-0.11917551886290312,-0.5190796093083918,0.9104907647706568,-0.8689800859428942,0.5518700582906604,-0.24596890760585666,-0.3938585012219846,-0.703882880974561,-0.0741708823479712,-0.40412638895213604,0.7135736313648522,0.7651293310336769,-0.9616075935773551,-0.16659028409048915,-0.5224453513510525,-0.04064802685752511,0.004163720179349184,-0.19926406256854534,0.3492421731352806,0.8485229746438563,-0.6377536715008318,-0.284899914637208,0.5401688143610954,0.647492399904877,0.7321965740993619,-0.7564820549450815,0.42131671821698546,-0.4788779681548476,-0.8532757619395852,-0.7807218665257096,-0.503775080665946,0.3695319094695151,0.7561638168990612,0.6263769608922303,0.3275038506835699,-0.5472066695801914,0.30822831811383367,0.3054813197813928,0.44564288249239326,-0.1469762185588479,0.5818916619755328,-0.8766416604630649,-0.6895705880597234,-0.6536381174810231,-0.23080840008333325,0.09542376874014735,-0.6154622663743794,-0.9750731331296265,-0.8532307660207152,0.29216335201635957,-0.4384210123680532,0.5688883103430271,0.1344028045423329,0.13601294020190835,-0.07205889839679003,0.8921225708909333,0.8329744092188776,0.40575929917395115,0.7424476463347673,-0.47551526222378016,-0.1028918162919581,-0.9088972504250705,-0.7857354283332825,0.51251236256212,-0.8752104081213474,-0.6140716741792858,-0.5840911702252924,-0.4052018793299794,-0.23085073521360755,-0.21413205610588193,0.8916494473814964,-0.4508037865161896,-0.6927571324631572,-0.7062192624434829,0.8385339234955609,0.583085663150996,-0.4596286010928452,-0.30382045498117805,-0.03606071136891842,-0.8920538872480392,0.812941842712462,0.42664425633847713,0.671539990697056,0.3506086547859013,-0.07406895281746984,-0.8424995997920632,0.3429452436976135,-0.4013921096920967,0.9977376353926957,0.3884096327237785,-0.5735846851021051,0.0069348872639238834,-0.7907241168431938,0.04211354209110141,-0.09647170500829816,-0.423651828430593,-0.32385768136009574,-0.753947276622057,0.4997695623897016,0.5373741411603987,-0.01438137236982584,-0.2206104127690196,0.11989410081878304,0.49930841103196144,-0.7554692993871868,0.7502762116491795,-0.012253680732101202,0.5134053835645318,-0.2301276745274663,-0.22333712596446276,-0.07875101594254375,-0.8351474441587925,-0.21273449389263988,-0.609667123761028,0.26731016859412193,-0.41358109563589096,0.1030236016958952,0.5757429506629705,0.9585030833259225,0.030310791451483965,-0.855353600345552,0.6197388889268041,0.6860514590516686,-0.953013853635639,-0.33950974326580763,-0.5983148887753487,-0.9588535511866212,-0.7575991842895746,-0.02679544687271118,0.7171603674069047,0.002887427806854248,0.11533819977194071,0.003305952064692974,0.8553314646705985,-0.4071673136204481,0.45910015190020204,-0.08230817783623934,0.4782304014079273,-0.6533875474706292,0.8010193975642323,-0.22686300287023187,-0.9022439094260335,0.13975775567814708,0.8981132814660668,0.19455555826425552,0.18378926813602448,0.443586858920753,-0.7987679508514702,-0.6179563878104091,-0.23289109021425247,0.9483794132247567,0.30482833832502365,-0.952994188759476,-0.6260571503080428,0.8087471723556519,-0.700140246655792,-0.6049807402305305,0.9886155845597386,0.9213831783272326,-0.9280510651879013,0.9976571770384908,-0.6744642443954945,0.8174607553519309,0.3281360911205411,-0.9204690344631672,-0.5898901335895061,0.30681257229298353,0.3386739701963961,-0.9800712876021862,0.7920479434542358,0.05080617917701602,0.49678317410871387,-0.020400434732437134,-0.3906694343313575,0.7403024709783494,0.694020607508719,0.1542294998653233,0.5572855416685343,-0.02071239333599806,0.16653889417648315,-0.2963687269948423,0.7490239776670933,-0.3456694125197828,0.18146790424361825,-0.9465557616204023,-0.7176338112913072,0.9479973749257624,-0.9906067936681211,0.5294022215530276,-0.9914222937077284,-0.4622310549020767,-0.07660709833726287,-0.5057078883983195,0.4143584896810353,-0.540110926143825,0.5888510355725884,0.19175028940662742,0.9565433487296104,0.9991039955057204,-0.5493584251962602,-0.08939890237525105,-0.04252711497247219,-0.01967585040256381,0.5569106908515096,-0.31184814404696226,0.1425957828760147,-0.01991708343848586,-0.2368893730454147,-0.8809259855188429,-0.07416059076786041,0.4279049327597022,0.23746724054217339,-0.5561689753085375,-0.9038412906229496,0.42571592330932617,-0.6084036105312407,-0.18155942438170314,0.8948325985111296,0.4881314979866147,0.47138171549886465,0.9554220424033701,0.5645940601825714,0.09071852779015899,-0.014510484877973795,-0.39685987075790763,0.4366571852006018,-0.7332758796401322,0.30473843263462186,0.21519395895302296,0.22698551369830966,0.856353179551661,-0.01886783167719841,0.0010048705153167248,0.8701971732079983,-0.04742608917877078,0.6801242893561721,-0.5129572786390781,-0.2139718127436936,-0.395985699724406,0.9174534529447556,-0.6952330861240625,0.9741620877757668,-0.39738266868516803,-0.3469312796369195,-0.8312975647859275,-0.4571529231034219,0.11786334728822112,0.1816377006471157,-0.7212563930079341,-0.5969846108928323,-0.13324300991371274,0.6352368113584816,-0.9943202878348529,-0.5613564350642264,0.7004378000274301,0.6411285274662077,0.7729734005406499,0.7617540382780135,0.521753495093435,-0.650995871052146,-0.12310065422207117,-0.23468574974685907,-0.16581575013697147,-0.7152555761858821,-0.3479353324510157,0.5403575678355992,0.6818762528710067,-0.5989437601529062,-0.9425120847299695,0.4364171442575753,0.9983502398245037,-0.35387891344726086,0.8825254561379552,-0.2746566631831229,0.6404655105434358,0.23079299414530396,-0.044947218149900436,-0.9787616617977619,-0.18956405203789473,-0.2344149467535317,0.35561580397188663,0.1334461309015751,0.8145030154846609,0.1003857534378767,-0.34338939702138305,-0.8112781969830394,-0.610415309201926,-0.5422598370350897,0.8317011757753789,-0.41509509226307273,0.37583121564239264,0.2019607932306826,0.11035276856273413,-0.5705762216821313,0.4279839317314327,-0.03236372582614422,0.8376352502964437,-0.19341045571491122,-0.3367620869539678,0.6470622611232102,-0.7919995966367424,0.9483104073442519,0.5182705917395651,-0.46893996465951204,-0.5772592076100409,0.020819555036723614,-0.4247272443026304,0.38345723459497094,-0.5600471384823322,0.41484531993046403,-0.7954315929673612,-0.8915853477083147,0.4718817388638854,-0.049984272569417953,-0.6707567316479981,0.5377020663581789,-0.8215252757072449,0.6789078754372895,-0.5947284372523427,0.3646352719515562,0.8355461163446307,-0.9060624139383435,-0.7935575875453651,-0.6295701400376856,-0.9926244686357677,-0.698915075045079,-0.8914028769358993,0.5184627547860146,-0.7554772845469415,-0.4685384896583855,0.3962341542355716,0.31773328268900514,-0.1677997731603682,0.9140666555613279,0.37990992376580834,0.9436635691672564,-0.6912542968057096,-0.8937554019503295,0.3425380759872496,-0.41420764848589897,-0.5305242738686502,-0.9163583368062973,0.27692347951233387,0.6845346898771822,0.7370201954618096,0.7160195047035813,-0.9833951229229569,-0.4243164616636932,-0.9698784467764199,0.72845190577209,0.8247118410654366,-0.842183468863368,-0.7590703899040818,0.5665562846697867,0.21678107604384422,0.906142121180892,-0.9223589757457376,-0.2324804700911045,0.11738131148740649,-0.45493793301284313,0.3261768133379519,0.8066456592641771,0.9405432245694101,-0.6431926162913442,-0.04646941274404526,-0.5792161342687905,0.48888344690203667,-0.39224929129704833,-0.3554276339709759,-0.5196243990212679,0.18274759175255895,0.4089697632007301,-0.14658263558521867,-0.30835535330697894,-0.6016888925805688,0.6782656251452863,-0.23374889744445682,0.8098200866952538,-0.5301659451797605,-0.6524272747337818,0.3911028071306646,0.7164694820530713,0.8942518644034863,0.1031880583614111,0.6126395454630256,-0.5437776581384242,-0.07565459981560707,-0.17931186687201262,0.8022790988907218,0.39210169296711683,0.617145529948175,-0.7502400781959295,-0.10159895196557045,-0.9455520380288363,0.9995149620808661,-0.809652594383806,-0.1430893912911415,0.7346070045605302,0.5331768761388958,-0.4608323588036001,-0.5452727228403091,0.8070580284111202,-0.1669247979298234,0.18321680324152112,-0.6768914763815701,0.2015990694053471,0.8580285427160561,0.2825614307075739,-0.3754168292507529,0.8249424966052175,0.0186242014169693,0.8406998114660382,-0.011681730393320322,-0.8971741846762598,-0.31536989053711295,0.2309447880834341,-0.2938605472445488,0.08709763269871473,0.49178757751360536,0.8303445954807103,0.07973296754062176,0.5798377878963947,0.035889965016394854,-0.246804335154593,-0.46944656874984503,0.15484990691766143,-0.1017464124597609,-0.8132202196866274,0.2757455869577825,-0.9526140606030822,-0.7363419141620398,-0.36956187104806304,-0.5505294767208397,-0.7188092255964875,-0.9701813515275717,0.099504001904279,0.9408087963238358,-0.1415502172894776,0.8110406342893839,0.46986670000478625,-0.8330406812019646,-0.9052706584334373,0.1686023874208331,0.6077930969186127,-0.4165504430420697,0.9288652040995657,0.5083682844415307,-0.44276240607723594,0.036820050328969955,0.23602874763309956,-0.7634763196110725,0.1187501922249794,-0.4786841319873929,0.08993524266406894,0.728810952976346,0.20017623947933316,-0.3366287210956216,0.14600354665890336,-0.30300020007416606,0.6687463377602398,0.7537181791849434,-0.745017790235579,-0.03114096075296402,-0.548573627602309,-0.25416611367836595,0.6415578466840088,0.9887126092799008,0.9544370681978762,-0.6375512550584972,-0.7554541402496397,-0.3575071431696415,-0.8372476971708238,-0.3113218699581921,-0.2775168353691697,0.9395879004150629,-0.41285468032583594,0.08649778319522738,0.7492765006609261,0.11261387495324016,-0.15263759065419436,-0.7496421160176396,0.2487120390869677,0.07595652667805552,0.16402618307620287,-0.33672929694876075,-0.39120543096214533,0.5579885100014508,0.23982707550749183,-0.421842775773257,0.3750740443356335,-0.6322987261228263,0.14220327185466886,0.4164323820732534,-0.36437528347596526,-0.5442492756992579,-0.3815552615560591,0.5524527369998395,-0.8096899311058223,0.2716729659587145,0.12654154049232602,-0.964486709330231,0.08191747963428497,-0.12133050756528974,-0.1499124988913536,0.14545058133080602,-0.20849436009302735,-0.5147422379814088,0.6992084463126957,0.34764292277395725,-0.45447273133322597,0.39421123126521707,-0.6458483398891985,0.3824015478603542,0.4570334651507437,0.10299860080704093,-0.5016604852862656,-0.42518012737855315,0.3742077872157097,-0.11903135431930423,0.2576405229046941,0.09071549866348505,0.5901017100550234,-0.025521003175526857,0.5692045092582703,-0.9744624909944832,-0.6120259114541113,-0.32274135388433933,-0.16655909083783627,-0.06822494836524129,-0.31733760004863143,0.8624014565721154,-0.8547438005916774,0.5308554912917316,-0.15095861162990332,0.03519896697252989,-0.9454681216739118,-0.6013080752454698,-0.6471741474233568,0.8154148105531931,0.5491774971596897,0.17267832765355706,-0.6068689869716763,0.764877871144563,0.09442051267251372,0.5342655177228153,0.1471210177987814,0.9939607651904225,-0.8826380232349038,-0.33240308705717325,0.9859056933782995,-0.24804237997159362,0.05271510221064091,-0.8484086552634835,-0.24257705360651016,0.22958381101489067,-0.06937244348227978,-0.7441023676656187,0.5717367334291339,-0.3653410878032446,0.9310170938260853,-0.7283037402667105,0.3441471396945417,-0.671944213565439,-0.8986135208979249,-0.5225187516771257,0.9270756831392646,0.3415901903063059,-0.9158750618807971,0.5880921240895987,0.48120292089879513,0.8298303112387657,0.30548842484131455,-0.0006208280101418495,-0.23116644890978932,-0.7326780366711318,0.3200218384154141,0.9614906632341444,0.22164434986189008,0.5680986624211073,0.8608436645008624,-0.7466872306540608,-0.33412031829357147,0.9009937606751919,-0.49971342040225863,-0.6203240184113383,-0.027255758177489042,-0.5881933309137821,-0.8221510034054518,-0.7471670149825513,-0.7651641257107258,-0.47031125519424677,0.40323177678510547,0.6123230727389455,0.9900373164564371,-0.5480826161801815,-0.23784405086189508,-0.48039802350103855,-0.7540924744680524,-0.05648264102637768,-0.03936867322772741,-0.27983179222792387,0.4723256379365921,-0.49849181342869997,0.8551132762804627,-0.0005968711338937283,0.7357587558217347,-0.9226503306999803,0.14571197191253304,-0.4031272944994271,0.38225046498700976,0.3569731111638248,0.7380715142935514,0.6646061125211418,-0.5687266048043966,-0.29501571832224727,-0.1515876892954111,0.9968202575109899,0.43948003835976124,0.5638999668881297,-0.7992623718455434,-0.7461442979983985,-0.07291639177128673,-0.4072495736181736,0.13138423627242446,0.5210220264270902,-0.9380947086028755,0.018236528616398573,-0.09906940069049597,-0.5790347675792873,0.00831228168681264,0.09842556668445468,-0.6101448936387897,-0.6414278172887862,-0.9207106358371675,0.5171278845518827,0.3655311344191432,-0.00021771946921944618,0.4113740026950836,-0.9003610536456108,0.1746070017106831,-0.9329628529958427,0.9447561497800052,0.7306410791352391,-0.9162408704869449,0.8523488040082157,-0.6630197339691222,0.6286954525858164,0.8460313337855041,-0.06026703957468271,0.3169955685734749,0.12548425886780024,0.49114311253651977,0.2591486731544137,-0.7413010895252228,0.9727605590596795,-0.13428229372948408,0.09622795879840851,-0.057942715007811785,-0.5433012377470732,0.011452620383352041,-0.8159380205906928,0.3625728813931346,0.22064879350364208,-0.13142071571201086,0.6076195822097361,0.009921826422214508,-0.9680520966649055,-0.10509251290932298,0.24093708209693432,0.9606645870953798,-0.8632101509720087,-0.02440981427207589,-0.578433935996145,0.6709710899740458,0.12710422184318304,-0.9016897534020245,0.23640516214072704,0.26960310665890574,-0.5872699497267604,0.23603033646941185,-0.9377337023615837,-0.06367790000513196,0.2695829216390848,0.6831852369941771,-0.49594283662736416,0.8592230132780969,-0.5048767933622003,0.6766410442069173,-0.842024196870625,-0.4736020606942475,0.5404060487635434,0.18340812670066953,0.7485636351630092,0.8008880764245987,-0.6695314613170922,0.3361960663460195,0.8693537209182978,0.52112822746858,0.022640508599579334,-0.16372595494613051,-0.4492134344764054,-0.6726044798269868,-0.6426155809313059,-0.19238998275250196,0.2649288340471685,0.8399457172490656,-0.0028667524456977844,0.6597077129408717,0.23234582971781492,-0.7843349301256239,-0.9180382969789207,-0.41259101778268814,-0.4513387815095484,0.19247725326567888,0.920983100309968,0.2600481486879289,0.02492601051926613,0.6807530089281499,-0.2091603190638125,-0.14420868968591094,0.6046063485555351,0.8740067216567695,-0.9453557319939137,0.32256823452189565,-0.4724551043473184,0.5600337013602257,0.6978505877777934,-0.6166015141643584,0.14751595677807927,-0.6384705300442874,0.6900172838941216,0.8494153204374015,0.7150256559252739,-0.5326163852587342,0.2770284148864448,-0.3981973617337644,0.029577563516795635,-0.2366101243533194,-0.49704298470169306,0.7188291912898421,-0.5098990043625236,-0.14735013293102384,0.40875603165477514,-0.8681220430880785,-0.9712777803651989,0.048951199278235435,-0.2297980897128582,-0.897370423655957,-0.5881296144798398,-0.038685372564941645,-0.7269288031384349,0.40432183956727386,-0.11275969864800572,0.9627476735040545,0.6705322242341936,0.8281929027289152,-0.0112894456833601,-0.3568327468819916,-0.140266930218786,-0.8434011838398874,-0.2307257540524006,-0.4739117082208395,0.7664956911467016,0.36281154956668615,0.6072121965698898,0.5663914615288377,0.26368574565276504,0.012653970159590244,-0.5223447047173977,0.9230433232150972,-0.500550392549485,-0.9737325576134026,0.35019061574712396,0.7177685704082251,0.22713641170412302,-0.7564720180816948,0.07964112097397447,0.14970379089936614,0.782929222099483,-0.3968335767276585,0.4069254333153367,-0.0841287043876946,-0.21043958282098174,-0.25897013396024704,-0.7256170865148306,-0.9505871934816241,0.6671190760098398,0.9221445899456739,0.8189325728453696,0.9247519224882126,-0.2942449515685439,0.6137458309531212,-0.2839074321091175,0.5099381152540445,-0.5412964406423271,0.7846839451231062,-0.9803469004109502,0.3747246521525085,0.2680258974432945,0.13678772980347276,0.008753406349569559,-0.7823775331489742,0.5386803201399744,0.729097849689424,0.8521188143640757,-0.22312849387526512,-0.5516214594244957,0.6459329728968441,0.9557157028466463,-0.218375728931278,-0.5969235608354211,0.5199053171090782,-0.4660832714289427,0.32916282396763563,-0.4331341711804271,-0.10824975557625294,-0.24544634111225605,-0.7073178552091122,0.30016685696318746,-0.22045756643638015,-0.4221124700270593,0.944166783709079,-0.43905028561130166,0.7227764800190926,-0.9863503980450332,-0.731086197309196,0.6825158065184951,-0.07189037837088108,0.7639906518161297,-0.27229259768500924,0.8387345806695521,0.4372304226271808,0.7076147673651576,0.3646068209782243,-0.3861076161265373,-0.4666540934704244,0.11358148558065295,-0.6287808013148606,0.7115855123847723,-0.8924379115924239,0.43866219371557236,0.09580584708601236,-0.8549085948616266,0.5282599357888103,-0.17642919346690178,0.14982724841684103,0.3935963548719883,-0.9582581673748791,0.06090548308566213,-0.6105949366465211,-0.7492123963311315,-0.9507689205929637,0.12154949316754937,0.6374716092832386,-0.9113016738556325,0.4389933692291379,0.3507387125864625,-0.021008746698498726,-0.34297309862449765,-0.7072878512553871,0.5622778874821961,-0.015515339560806751,0.3796020159497857,-0.006141319405287504,0.5710036479867995,0.6841284930706024,-0.4320663814432919,-0.635560180991888,-0.826512897387147,-0.01331759337335825,0.09927350142970681,-0.7553282114677131,-0.886244579218328,-0.8376887715421617,-0.9109255103394389,0.8143977900035679,-0.052860638592392206,-0.9988785102032125,0.10858514858409762,0.6964329537004232,-0.5465116468258202,0.8897204459644854,0.9393135514110327,0.5538959424011409,0.7239226535893977,0.6470295996405184,-0.934815198648721,-0.987168955616653,-0.11757297860458493,-0.3808328420855105,-0.9976465790532529,-0.09123608842492104,0.9565250133164227,-0.8059759987518191,0.3146786470897496,0.006737403571605682,0.6257134708575904,0.9495095512829721,0.14463981334120035,-0.740896531380713,-0.13225026661530137,0.4969490612857044,0.6358671770431101,-0.21965314308181405,-0.3580976966768503,0.4225608706474304,0.4599806759506464,0.7928431550972164,0.1090743257664144,0.43913622852414846,-0.6224003927782178,0.12273133592680097,0.5705561297945678,-0.6652413876727223,-0.9960225480608642,0.20019769808277488,0.8570487913675606,0.5681772991083562,0.0512304101139307,0.8574075843207538,0.45428800536319613,-0.9265835387632251,0.21975709218531847,0.8610954275354743,0.34612306114286184,-0.7018600762821734,0.45556903863325715,-0.8754577720537782,-0.7836056263186038,0.014027795288711786,-0.7420202274806798,0.19189292192459106,0.8418491594493389,-0.621383611112833,-0.8101944951340556,-0.8721048277802765,0.6299573974683881,0.6209676181897521,-0.5476230978965759,-0.7095760484226048,0.41216159937903285,-0.06287924386560917,0.8859155355021358,-0.4577425648458302,0.35034795152023435,-0.02298754407092929,-0.5567869530059397,-0.8548081866465509,0.297614935785532,-0.9881695932708681,-0.7537375930696726,0.9225325975567102,-0.03088327683508396,0.16372095374390483,0.780928217805922,0.9247568864375353,0.7067564534954727,-0.6696149632334709,0.9138374533504248,0.22596232639625669,0.9350784360431135,0.7665919153951108,-0.726847356185317,-0.3405310953967273,-0.9120915639214218,0.7734216200187802,-0.4090554346330464,0.22270521288737655,0.5898163695819676,-0.8291595377959311,0.4372303392738104,0.14816151605919003,-0.44135713297873735,0.7829116792418063,0.5949658323079348,0.9153144885785878,-0.7843120540492237,-0.9230036023072898,-0.20637295581400394,0.9976406176574528,-0.8838342665694654,-0.011687300633639097,0.09267026698216796,0.15706981252878904,-0.601339066401124,0.06810996821150184,-0.06552375061437488,-0.09097659774124622,0.396186460275203,0.43996841320768,-0.728708160109818,0.752126541454345,-0.23803539294749498,-0.5042492374777794,-0.3933789781294763,-0.7382064121775329,-0.9538178071379662,-0.46129221888259053,0.5570759954862297,-0.48431053571403027,0.8142400630749762,0.1103620701469481,0.730833122972399,-0.05384395318105817,0.3796493783593178,-0.12275514984503388,0.8148060273379087,-0.0731111504137516,-0.43638687999919057,0.3117218008264899,-0.7664283760823309,-0.22511542541906238,-0.1360456100665033,0.5886638322845101,-0.8884319867938757,-0.6178793972358108,-0.9899127292446792,0.14287374820560217,-0.9461851613596082,-0.35489278892055154,0.2978691328316927,-0.5342475073412061,0.8747396497055888,-0.014798748772591352,0.1254043779335916,-0.008022763766348362,0.33583624428138137,0.2116980249993503,0.4544737986288965,0.0778900757431984,-0.17226512264460325,-0.17379794921725988,0.09650678420439363,0.6147857666946948,0.4817286990582943,-0.4280245094560087,0.2913747844286263,-0.9632655414752662,-0.5812447653152049,-0.34508442133665085,0.9730898821726441,0.9098301692865789,-0.6896249963901937,-0.6778611866757274,-0.6667112060822546,0.4317280207760632,-0.33578057680279016,-0.6629207120276988,0.9789992524310946,-0.2972986442036927,-0.059336901642382145,-0.3784040529280901,-0.9133646413683891,0.22353848861530423,-0.6695741708390415,-0.36012405017390847,-0.5559539687819779,0.03641632106155157,-0.7736519086174667,0.42785773193463683,0.5042595095001161,-0.24988502077758312,0.2181980167515576,-0.7700689961202443,0.07081860257312655,-0.9412753637880087,-0.5438445396721363,-0.7973072361201048,0.7750710318796337,-0.22803007951006293,-0.19763707322999835,0.2728239744901657,-0.6790436045266688,0.7001189747825265,-0.31862572813406587,-0.3754719579592347,0.8181869592517614,-0.015906299464404583,-0.22016317211091518,0.8921725321561098,-0.12734657432883978,0.6878149267286062,-0.7847841898910701,0.6640345295891166,0.14164898777380586,0.14583031786605716,0.7236756663769484,-0.5442127310670912,0.9042077749036252,-0.023252776823937893,0.8364645005203784,-0.6588764716871083,-0.6506098620593548,0.2954904520884156,0.10801005689427257,-0.772194838616997,-0.5254546105861664,-0.3843789459206164,0.22541245492175221,0.7915198621340096,0.7372811255045235,0.940320591442287,-0.37836836837232113,-0.8718308191746473,0.03386309975758195,0.6471922690980136,0.010514662135392427,0.9361009211279452,0.3402664475142956,0.2756652804091573,-0.8908727969974279,-0.6080946419388056,-0.6651325742714107,0.8589511304162443,-0.8982893037609756,0.9423855915665627,0.8149470277130604,-0.10537779750302434,-0.12710891664028168,-0.8496772879734635,0.5845687361434102,0.09456505114212632,0.13783116964623332,-0.37709841132164,-0.6880784598179162,-0.735062840860337,0.055844733491539955,-0.593918779399246,-0.09786832239478827,-0.18214943818747997,-0.13743296498432755,-0.27155719650909305,0.13060213951393962,-0.7007124121300876,0.5395749844610691,0.8840594296343625,0.7403471567668021,-0.11216804711148143,0.8478196286596358,0.5499758021906018,-0.2708659712225199,0.19913270371034741,0.3229794898070395,-0.21607447089627385,-0.8824441405013204,0.00479626702144742,0.11298440443351865,-0.5125289037823677,0.2556173773482442,-0.5739232380874455,0.18209649715572596,-0.8552795257419348,-0.04098708089441061,-0.01585906744003296,-0.18210462760180235,0.9307118174619973,0.8147889510728419,-0.9506716942414641,0.3402892821468413,-0.8387898523360491,-0.0009520193561911583,-0.3831565445289016,0.1824474553577602,0.5659333094954491,0.8492081724107265,0.7787941065616906,-0.8811571332626045,0.4085371093824506,0.011931505519896746,0.8592547760345042,0.7022152538411319,-0.033613570500165224,0.57334163505584,-0.08390082186087966,-0.8332275496795774,-0.19342810288071632,-0.5507699586451054,0.5279839993454516,0.41220326954498887,-0.6824718355201185,-0.2636376223526895,0.7206494142301381,-0.49700909899547696,0.9907765788957477,-0.9464924992062151,-0.5930935554206371,-0.005833504255861044,0.13783686747774482,-0.6685282760299742,0.4702105992473662,-0.0017066290602087975,-0.5245452509261668,0.40534564247354865,-0.9430249789729714,-0.19373757345601916,-0.0390551807358861,0.6382598974741995,0.3723922874778509,-0.8352212463505566,-0.3168526007793844,-0.21278901724144816,-0.9317069668322802,-0.05850079096853733,0.9192893374711275,-0.46099959407001734,0.8434307598508894,-0.9230392309837043,-0.7585798017680645,0.5580338975414634,0.5452111409977078,-0.20910077961161733,0.4933736571110785,-0.6177054834552109,-0.8680215580388904,-0.9999951594509184,-0.6968478527851403,-0.9106050096452236,0.5379495616070926,-0.49560472555458546,-0.11834443779662251,-0.15288055501878262,-0.31692910520359874,0.3996231546625495,-0.1709728860296309,-0.235977279022336,-0.09551599714905024,0.26008526468649507,0.965143951587379,-0.8223676546476781,-0.6339133949950337,-0.6181018259376287,-0.9654308743774891,0.6206942829303443,-0.8609822941944003,-0.3800956946797669,0.5819340567104518,0.10428090346977115,-0.6250385846942663,0.05547738214954734,-0.6462384406477213,0.9300617291592062,-0.11774569842964411,0.44217106234282255,0.9043799256905913,-0.9485348323360085,-0.677484592422843,-0.7174530788324773,-0.42011740198358893,-0.8254121523350477,0.5716638080775738,0.0928652691654861,0.32546463375911117,0.7505520023405552,0.29858673363924026,0.9995932471938431,0.03209503320977092,0.0770558868534863,-0.36281326692551374,0.9659975511021912,-0.01853731879964471,0.9133927244693041,0.5329565163701773,0.15800533024594188,0.3670000396668911,0.7654857872985303,0.4739452744834125,-0.5567273711785674,-0.32679515797644854,0.23882517218589783,0.1487073921598494,-0.8064544154331088,-0.6013738112524152,-0.4646188053302467,-0.29949682718142867,-0.4139622072689235,-0.9590305406600237,0.7094504968263209,-0.09242745442315936,0.645027126185596,-0.33093983260914683,0.37683711713179946,0.39631514716893435,0.12034968519583344,-0.678100029937923,0.8831351166591048,-0.41354861203581095,0.5831657769158483,0.32318332605063915,0.36843875888735056,-0.7897063894197345,0.9115671366453171,-0.49361167335882783,-0.04684697138145566,-0.5647428911179304,-0.08983894903212786,0.5596690652891994,0.036102330312132835,0.6732923807576299,0.6445891377516091,0.16591401491314173,-0.008479738142341375,-0.21531654801219702,0.7094667027704418,0.2984658954665065,-0.7640724275261164,-0.5247371373698115,-0.4774290076456964,0.4280407917685807,0.25670145358890295,-0.4583613546565175,0.19036516267806292,0.39012455847114325,-0.1942630079574883,0.8188905343413353,0.5676270360127091,0.9111027610488236,-0.43799049500375986,-0.7451321170665324,-0.9675188008695841,0.7524353913031518,-0.3567767422646284,-0.9623071798123419,0.3101391000673175,-0.12367804767563939,0.7033064207062125,0.03546579461544752,-0.6204713783226907,-0.4629775029607117,-0.6642308821901679,-0.9923339504748583,-0.21373020112514496,-0.7558337380178273,-0.16612014966085553,-0.5687442948110402,-0.633996868506074,0.0674982974305749,-0.5250586899928749,0.8006422687321901,0.27277431869879365,-0.6141690015792847,-0.3550204853527248,-0.19253160199150443,0.8138119601644576,0.49608659790828824,0.39396189991384745,0.4175516669638455,-0.43039728654548526,-0.11321532307192683,0.9962240252643824,-0.9932560040615499,-0.43263011844828725,-0.6119658998213708,-0.539324798155576,0.03068915894255042,-0.9848561501130462,-0.8073286307044327,0.6531295869499445,0.12026218045502901,0.7846382432617247,-0.44309527100995183,0.4905140227638185,0.48914334177970886,0.36750982888042927,-0.3679737998172641,-0.22326537873595953,0.2943399026989937,0.7366092312149704,0.0018783938139677048,-0.11110488697886467,0.9556756517849863,0.9373426856473088,-0.5087760295718908,0.5785434395074844,-0.7805998376570642,-0.23016464244574308,-0.9836504166014493,0.062259383499622345,0.8388131060637534,-0.9258786691352725,-0.3046693028882146,-0.7196336747147143,0.5649754474870861,-0.41297376342117786,0.11133256135508418,-0.45503638917580247,0.33510196255519986,-0.9627128466963768,-0.07957118283957243,0.3550961851142347,-0.27351573621854186,-0.17362196138128638,0.7635079598985612,0.6955920895561576,0.4453429114073515,0.6618993789888918,0.8196377102285624,0.6732683964073658,0.9835666357539594,0.4722842024639249,0.3442844436503947,0.2198553653433919,-0.5285500693134964,-0.6021346310153604,-0.7576003484427929,0.05525502935051918,0.49221079563722014,-0.10624835593625903,0.9092870098538697,-0.2566780522465706,-0.43824432883411646,0.30327392276376486,0.17117929877713323,0.6286544408649206,0.03789376933127642,-0.5096055674366653,0.478041288908571,-0.6530368686653674,-0.5822344240732491,0.3420163537375629,0.8945943955332041,0.7130683376453817,-0.9199628802016377,-0.1601965674199164,0.8273659269325435,0.612499566283077,-0.11069104075431824,0.794250275939703,-0.8397919121198356,0.012753515504300594,-0.07011912809684873,0.399056205060333,0.70141835603863,0.6084424387663603,0.5899090906605124,0.21405213046818972,-0.8982172040268779,0.9636668805032969,-0.8442370346747339,-0.8348138649016619,0.08537695836275816,-0.09525442309677601,0.6707509076222777,0.8532016542740166,0.7199226343072951,0.1308800489641726,-0.4656616640277207,-0.5121373124420643,-0.11741043953225017,0.8573711882345378,0.47592342318966985,-0.48407100001350045,-0.3545920900069177,0.9435816113837063,0.2488340842537582,-0.09774702927097678,-0.44129478791728616,-0.44032984133809805,-0.26038673566654325,0.7794528231024742,-0.02832219935953617,0.4035632540471852,-0.6356497430242598,0.9764835527166724,0.48118321783840656,-0.06742088356986642,0.6220317869447172,-0.6160488789901137,-0.788456941023469,0.08251228090375662,-0.9101709588430822,0.051382373087108135,0.4596784966997802,-0.6284530553966761,0.3445615121163428,0.3347939634695649,0.4775789980776608,-0.504178935661912,-0.9070026949048042,-0.9490373255684972,-0.08712072344496846,-0.19693270698189735,-0.12108855554834008,0.554221557918936,-0.20261111529543996,-0.785246420186013,-0.528011332731694,0.09240667056292295,0.639847757294774,0.16239081230014563,-0.7374775330536067,0.3899018778465688,0.8251349218189716,0.4298907658085227,0.5962916715070605,0.9060113355517387,-0.4854311691597104,-0.2151257051154971,0.8274493515491486,0.9972349717281759,0.7352803414687514,0.13893875805661082,0.919226486235857,-0.4683633428066969,0.39965262496843934,-0.7761110682040453,0.06900977296754718,0.05797770852223039,-0.9081046967767179,0.22331916959956288,0.798328201752156,0.22910105250775814,-0.5984150464646518,0.9987623677588999,0.1379689914174378,-0.6643720450811088,0.8099946449510753,0.49637167947366834,-0.6402367977425456,-0.8512197150848806,0.7424934324808419,-0.5869426312856376,-0.6995510593988001,-0.03525622421875596,-0.2089731697924435,-0.965031860396266,0.9109897930175066,-0.2007964220829308,0.09388050343841314,-0.11435802839696407,0.2257212046533823,-0.635533016640693,0.5516670453362167,-0.18813887052237988,-0.13644488202407956,0.8367165243253112,0.14690636517480016,-0.19915388152003288,-0.3358237920328975,0.8501229076646268,-0.1732525583356619,-0.14773544669151306,-0.2316393139772117,0.9437383385375142,0.10551488399505615,0.816255699377507,-0.7913028006441891,0.33435661578550935,-0.4494574936106801,-0.877745992038399,0.0487270406447351,-0.7860771813429892,0.5337887112982571,-0.49044515937566757,0.6414514039643109,-0.33891989570111036,-0.966038029640913,0.21917182812467217,-0.9986796113662422,0.8376648467965424,0.8824898460879922,-0.8754766522906721,-0.5951870079152286,-0.014130947645753622,-0.819969471078366,-0.44505284167826176,0.6075832806527615,0.33283500373363495,0.21718578273430467,-0.0962140392512083,-0.9486019019968808,-0.9733771407045424,-0.5487574925646186,-0.5791241135448217,-0.6974381152540445,0.08747171936556697,-0.968552062753588,-0.25196765596047044,-0.31871991651132703,0.5665804925374687,0.07617411529645324,0.5729300463572145,0.7999545810744166,-0.6956852953881025,0.7105315281078219,-0.9667712007649243,0.9114301046356559,0.018480414990335703,0.17261206079274416,-0.9137745453044772,-0.54444763623178,-0.18898189952597022,0.8189185196533799,0.09303612168878317,0.9078765856102109,-0.12842734763398767,-0.5648403153754771,-0.11375630786642432,-0.8007085286080837,0.23106741346418858,0.2071871212683618,-0.8794195880182087,-0.612357659265399,0.8431037827394903,0.7285776287317276,-0.09955437388271093,0.48851632373407483,0.8481606156565249,-0.08616235200315714,0.6174130910076201,0.8259291877038777,0.4946412327699363,0.053020411636680365,0.2764432644471526,0.44487525383010507,-0.12978332350030541,0.4504671571776271,-0.8043833756819367,0.8411539392545819,0.28069040970876813,-0.7591402037069201,-0.32327991630882025,0.72702297847718,0.5827904809266329,0.472349242772907,-0.17347907600924373,0.22943695774301887,-0.5379060031846166,0.663456744980067,0.01053191814571619,0.3813590370118618,0.06388571066781878,-0.5599673609249294,0.32508761528879404,0.21533108223229647,0.965435968246311,-0.6203565439209342,0.4558576908893883,-0.4856658927164972,0.109364896081388,-0.5319243189878762,0.34173377277329564,0.34382657380774617,-0.5963386408984661,-0.23203610675409436,0.8966564773581922,-0.1370712025091052,-0.39802077785134315,0.5225416952744126,-0.7344512669369578,-0.12757446570321918,-0.7737223473377526,-0.0007082270458340645,-0.9253801796585321,0.14649148751050234,-0.13661890104413033,-0.9075202317908406,0.09436776721850038,-0.5477644843049347,-0.9358619139529765,-0.7625510594807565,0.8524106629192829,-0.34147528978064656,0.08341394551098347,-0.37626461312174797,-0.8352451510727406,0.7253520647063851,-0.7237046551890671,-0.25467783864587545,-0.20881480863317847,0.08408581279218197,0.48970359144732356,-0.6886136448010802,-0.780170779209584,0.38386371778324246,0.5336452098563313,-0.46564533142372966,0.8081438476219773,0.3576443940401077,0.3037082268856466,0.7954378076829016,-0.8771041440777481,0.25992760015651584,0.4262341898865998,-0.18298902222886682,-0.5064932322129607,-0.9756485284306109,0.2508337665349245,0.8862686976790428,0.3484862088225782,-0.7560743172653019,0.07855259580537677,-0.5828538308851421,-0.06823400221765041,-0.3774870475754142,-0.22903680242598057,0.01474400656297803,-0.737504961900413,-0.9535351316444576,0.36009034514427185,0.852696645539254,-0.12871624948456883,-0.45397480484098196,-0.28970820317044854,0.46697381837293506,0.6799548720009625,0.3386963387019932,-0.7780984006822109,0.17116782534867525,0.4650876559317112,-0.6548390104435384,0.69182538241148,0.15040511032566428,-0.04692321643233299,-0.9384967475198209,0.26525041554123163,-0.7512530987150967,-0.9225801462307572,-0.8965953635051847,0.10998805426061153,-0.8442544513382018,0.26900781597942114,-0.68791638687253,0.5829837303608656,-0.5319769075140357,-0.06894991593435407,0.5061205164529383,0.37130898889154196,-0.6276170266792178,-0.47232786286622286,0.0994177795946598,-0.8702595289796591,0.5355098783038557,-0.08717689756304026,0.3784122462384403,-0.42760955868288875,-0.5374329471960664,-0.7723991284146905,-0.6634428929537535,0.18208070565015078,0.5127735249698162,-0.2726052151992917,-0.9649911420419812,0.7273132367990911,0.710728335659951,0.07594974711537361,0.9809626513160765,-0.33990050526335835,-0.5201841639354825,-0.9924060693010688,0.9444782445207238,-0.4568508588708937,0.9097755113616586,-0.649904084391892,0.23483996745198965,-0.17253027483820915,-0.19579186523333192,0.7469763872213662,-0.2629858539439738,0.2532174843363464,0.9621767573989928,0.08137121517211199,0.5563817252404988,-0.15577556798234582,0.7014096337370574,0.42713258508592844,-0.7387333838269114,-0.9588820482604206,0.8932528090663254,-0.05822309199720621,0.004193305037915707,0.805007504299283,-0.43641538405790925,0.3071871460415423,-0.5780648244544864,0.9796487870626152,0.3591220751404762,0.6424191286787391,-0.143264499027282,0.2789718355052173,-0.7929976410232484,-0.8676313790492713,-0.3888036669231951,-0.3455331679433584,-0.961845226585865,0.42572273779660463,0.3221592786721885,0.3662186460569501,0.9383311881683767,0.08713859459385276,-0.9749894537962973,0.4570726566016674,0.4092125571332872,0.3360269581899047,0.11944594839587808,0.9503046539612114,0.5426532225683331,0.7283699973486364,-0.8424085951410234,0.816765264607966,-0.7979651317000389,-0.6324612242169678,0.41973699489608407,0.7699467232450843,-0.851579921785742,0.7999257422052324,-0.09657528437674046,-0.9745629574172199,-0.09032844426110387,0.9056754070334136,-0.3320135185495019,0.6467698588967323,0.45383129362016916,-0.5240261382423341,-0.10183426272124052,-0.6861164909787476,0.7988728079944849,0.23558010067790747,-0.7971141464076936,0.8866239325143397,-0.4606492961756885,-0.9723359667696059,-0.3798956172540784,0.47992313420400023,0.25244537042453885,-0.5251706345006824,-0.2991542718373239,0.34673577221110463,-0.033007250633090734,0.8715140670537949,-0.4035562528297305,-0.7078721690922976,0.4975862232968211,-0.5258683701977134,-0.336752244271338,0.05479187052696943,0.45327057130634785,0.2465904401615262,0.9738683546893299,-0.7100064042024314,0.5591279696673155,-0.32471310580149293,-0.21989247342571616,0.7803810643963516,0.7386002191342413,-0.08473317790776491,-0.8339120442979038,-0.20183974225074053,0.6474090437404811,-0.6564961173571646,-0.9608080415055156,-0.9665724504739046,0.44423992559313774,-0.3844111664220691,-0.460230793338269,0.6428649565204978,0.07785215554758906,0.8372282292693853],"y":[0.2500797938555479,0.903001326136291,0.037121414206922054,-0.9705900885164738,-0.633661309722811,-0.7820287211798131,-0.15576332760974765,0.12064080871641636,-0.5190778244286776,0.48689234675839543,-0.24473026813939214,-0.6869425186887383,-0.8278111577965319,0.5542854955419898,0.035969138611108065,0.5368084269575775,0.7303402572870255,-0.36834511812776327,0.030769843608140945,0.9890251429751515,0.7691765027120709,0.8422302813269198,0.8454827913083136,-0.12180035002529621,-0.33056698413565755,-0.3697369550354779,-0.002016838639974594,-0.7093190550804138,0.7861223146319389,0.5979688740335405,0.44833321403712034,-0.6442296910099685,-0.9110310361720622,0.5554283522069454,-0.5919243432581425,0.02637626137584448,0.30131511436775327,0.7468150984495878,0.9358650986105204,0.7485735956579447,-0.14359796000644565,-0.637217232491821,0.7383233425207436,-0.15081873768940568,0.8003883212804794,-0.11493503535166383,-0.6908406815491617,0.743069279473275,0.3531659319996834,-0.9793170508928597,0.23796973191201687,-0.6670393845997751,-0.08008934510871768,-0.7066130666062236,0.5998519021086395,0.7580639710649848,-0.2886529704555869,0.7608069921843708,-0.12251122575253248,0.9292462011799216,0.13484521070495248,0.44044505758211017,-0.7924783271737397,-0.7726538428105414,-0.16065723123028874,0.6602168744429946,-0.16929517732933164,0.9229380446486175,-0.6888484195806086,0.14797944109886885,0.060359347611665726,-0.9645187426358461,0.8526948383077979,0.6100396178662777,0.2817210569046438,0.8301872620359063,0.01489953137934208,0.46470352821052074,-0.43363171676173806,-0.27310391888022423,0.4665712942369282,-0.03203737549483776,0.9066678243689239,0.15487616742029786,-0.7523978622630239,-0.32638209825381637,0.9048001593910158,0.8997615980915725,0.37623583944514394,-0.6062235296703875,-0.746964372228831,-0.08954912004992366,-0.594750864431262,0.4434551312588155,0.32561593828722835,0.5714700161479414,-0.4169231941923499,-0.9203818589448929,0.9040717845782638,0.43472036998718977,0.8426505350507796,-0.7142487559467554,0.043314521200954914,-0.49139021150767803,-0.2338853981345892,-0.9430244178511202,-0.6330909607931972,0.12537358095869422,-0.3048416171222925,0.15451281191781163,-0.211149996612221,0.3939443831332028,0.467636261601001,0.057434911374002695,0.830227421130985,0.26081377593800426,-0.576642295345664,-0.4809043491259217,-0.45653036143630743,-0.8906801026314497,-0.2135302727110684,0.034409976564347744,-0.9007923235185444,-0.4932812540791929,-0.948457159101963,-0.9706191555596888,0.8455230775289237,-0.743277623783797,-0.6390809258446097,0.003836380783468485,-0.5354779432527721,0.22344860434532166,-0.4908706243149936,-0.698683017399162,0.12348803086206317,-0.7031497922725976,-0.2455480955541134,0.394048027228564,0.3102053562179208,0.9901071502827108,-0.4154867478646338,-0.6537863234989345,0.24522188398987055,-0.7491551502607763,-0.1357838506810367,0.8610680787824094,-0.5505536482669413,-0.4372949325479567,0.19315594155341387,0.11219375021755695,-0.8519271723926067,-0.7534000505693257,-0.5164304948411882,0.626081935595721,0.5247510219924152,0.9051233404316008,-0.3873154358007014,-0.8985389419831336,0.6348771289922297,-0.14060594094917178,-0.774807293433696,-0.5168479271233082,0.9362269025295973,-0.13744048168882728,0.5662166043184698,0.986447537317872,0.5827368767932057,-0.28213337110355496,0.5180412936024368,0.8899043756537139,0.7456484944559634,-0.3599574235267937,0.1646773973479867,-0.6791092129424214,0.17149693146348,-0.9913319228217006,0.4279313222505152,0.5953842340968549,-0.7768600741401315,-0.27750426391139627,0.10004614852368832,0.5771582005545497,0.817415613681078,-0.3719395133666694,0.2331681060604751,-0.22717405995354056,-0.36719059152528644,-0.7335709170438349,0.5974833113141358,0.12662765523418784,-0.2590688313357532,-0.564971350133419,-0.2720084269531071,-0.8759615239687264,-0.15359544893726707,-0.4446403915062547,-0.22030522534623742,0.19371222145855427,-0.9844506643712521,0.8972570807673037,-0.8877534884959459,-0.8496445934288204,-0.21018650196492672,0.5703344205394387,0.5505540454760194,0.8161611063405871,-0.614893457852304,0.2588896034285426,0.5221297540701926,-0.19574448931962252,-0.5724147721193731,0.747104658279568,0.8061221670359373,0.4222364937886596,0.723401767667383,0.3813869687728584,-0.16475213272497058,0.8934315103106201,0.4529851390980184,-0.2728956835344434,0.8908364013768733,-0.6520012323744595,-0.3099737376905978,0.8795458604581654,0.038711502216756344,-0.24456619517877698,0.36101797688752413,-0.9439894026145339,0.6988823837600648,0.5087966565042734,-0.03881297120824456,-0.27411530492827296,0.47794713266193867,0.6411299905739725,0.545155260246247,-0.6884746225550771,0.0883254180662334,0.5674660564400256,-0.007113449275493622,0.21017598314210773,-0.1279349741525948,0.8082411480136216,-0.6372059597633779,0.3139029052108526,0.49203160870820284,0.9276393791660666,-0.641220142133534,-0.014478250406682491,0.5248530069366097,-0.94778025848791,0.7684310679323971,-0.8407072778791189,0.2796528059989214,0.14925820147618651,0.05381102301180363,0.7721089073456824,-0.816635456867516,0.2346778684295714,0.325386440847069,-0.26048150239512324,-0.8952441606670618,0.09526202687993646,-0.5487218792550266,0.47295533679425716,0.6996997892856598,-0.3783728708513081,0.4856603522785008,-0.4166386038996279,-0.9742459175176919,-0.06266037560999393,-0.08875178685411811,0.3457517479546368,0.31642768159508705,0.16047091875225306,0.7045847242698073,0.5497122183442116,0.7840778646059334,-0.5089976824820042,0.37188390642404556,-0.5532864448614419,0.061210690066218376,0.013522474095225334,0.7045026407577097,-0.17111943708732724,0.8649136596359313,-0.5504944385029376,0.7110939836129546,0.050575601402670145,-0.7515444927848876,0.05683376779779792,0.6992604974657297,-0.366915020160377,0.6300555607303977,0.8475531036965549,-0.30719507951289415,0.7348050782456994,0.5679671359248459,0.7868844568729401,-0.5072398721240461,-0.9516415046527982,-0.1435687760822475,0.46375220315530896,-0.2981516979634762,0.7359069022350013,0.7167818956077099,0.23921856889501214,0.8943872433155775,-0.8948607509955764,0.6664396184496582,-0.6576236402615905,0.6042338879778981,0.35781467240303755,-0.5065173362381756,-0.22329548420384526,0.17227729363366961,-0.5217430605553091,0.3206965667195618,-0.7527891816571355,0.1330036921426654,0.15524268755689263,0.3914291709661484,0.745726176071912,-0.9364358903840184,-0.22432739846408367,0.7484372900798917,-0.23782121436670423,-0.8361198925413191,-0.8734774803742766,0.930966914165765,0.8393119345419109,0.9489705474115908,-0.24257264798507094,-0.10213825153186917,0.19965887162834406,0.4362999931909144,0.6180632272735238,0.6556196575984359,0.5220589209347963,-0.4890958736650646,0.7760063554160297,-0.37788459938019514,0.11873799795284867,-0.4636033782735467,-0.31959592597559094,0.37097564805299044,0.8386768093332648,0.5981168155558407,-0.16289799893274903,0.9585871282033622,0.26119948737323284,0.22913948725908995,0.22936815349385142,-0.7117734202183783,-0.04519399255514145,-0.3527480340562761,-0.7334022237919271,-0.9177044401876628,0.36841886350885034,0.9434445188380778,-0.9315182664431632,0.8507595025002956,-0.27534627355635166,0.8567218640819192,-0.45389248337596655,0.09931038785725832,-0.3138862089253962,-0.9528860137797892,-0.40983700240030885,-0.5883797351270914,0.6939346394501626,-0.012687625829130411,-0.48622996965423226,0.24507305910810828,-0.20809610467404127,0.45911655900999904,-0.3079653028398752,0.24065055139362812,-0.9210728141479194,-0.4860723172314465,-0.07511333981528878,-0.97229512501508,-0.8977311728522182,-0.7396664880216122,-0.17432694137096405,-0.7085241279564798,-0.4649822819046676,-0.28781699389219284,0.12273642467334867,0.8305355729535222,-0.3597833113744855,0.9496782692149282,0.9474955890327692,0.23595148790627718,-0.5745206610299647,-0.8819896136410534,0.532909881323576,-0.8644171059131622,0.5271811950951815,-0.4124703607521951,-0.089782212395221,0.31648285454139113,0.9527542097494006,0.5944165573455393,0.634854641277343,-0.6773886820301414,-0.20406868355348706,0.5737523245625198,-0.6942827021703124,0.33945947932079434,-0.8048613732680678,-0.6775177773088217,0.026254334952682257,-0.8744774805381894,0.42831709142774343,-0.4607120743021369,-0.5368612948805094,0.88252576533705,0.20524823479354382,-0.39136071363464,0.6277700057253242,0.4873920544050634,-0.2640711828134954,0.24355701496824622,0.3022223226726055,0.7056908193044364,-0.25825112452730536,0.2602501227520406,-0.962531209923327,0.8837252594530582,0.07107358193024993,0.2439012946560979,-0.16318668890744448,0.32737811328843236,-0.7402090323157609,-0.6908735688775778,-0.7604362145066261,-0.8241352820768952,0.9438972910866141,0.30437643686309457,0.2793261152692139,0.9457099195569754,0.8124258234165609,-0.12363190343603492,-0.14822235237807035,-0.639727218542248,-0.7285811090841889,0.1245205458253622,0.7694912343285978,-0.13657591445371509,-0.2558593675494194,-0.2724440237507224,0.6474888944067061,-0.1131453886628151,0.9713541404344141,0.34327458310872316,0.8210457628592849,0.3849099427461624,-0.9139284761622548,0.09685857174918056,-0.6948868194594979,-0.8500989833846688,-0.03646125178784132,-0.24812590749934316,-0.5937131745740771,0.8560807332396507,-0.8019143044948578,-0.5148475146852434,-0.12814511312171817,0.4099114709533751,0.8872005892917514,0.25411799643188715,-0.47974019404500723,-0.18235775642096996,-0.7608262756839395,0.8093844936229289,-0.49151527136564255,-0.6210684608668089,0.38136493181809783,0.6599294506013393,0.06907470291480422,-0.5092124287039042,0.33682009764015675,-0.982992494944483,0.6048227986320853,-0.4719478292390704,0.6422903630882502,-0.7781309569254518,-0.9207089361734688,0.6229196265339851,-0.1425651665776968,0.3138731005601585,-0.41624124301597476,-0.22412301134318113,-0.6765407114289701,-0.2586250356398523,-0.2923744306899607,-0.7087102513760328,-0.9663147064857185,0.013901500962674618,0.6361774755641818,0.7405245508998632,-0.7068827101029456,0.7882371474988759,-0.32501653768122196,-0.46709234034642577,-0.2381376246921718,-0.21165437810122967,-0.7079761857166886,0.06685891933739185,0.8268797243945301,-0.8401491125114262,0.18864641292020679,0.5219536819495261,-0.20262358337640762,-0.08211064618080854,0.4104351606220007,0.5381804378703237,-0.6819668584503233,0.10326295299455523,-0.4136314680799842,0.4019402386620641,-0.10500180721282959,0.7969934148713946,-0.6367507413960993,0.8856820748187602,0.9748671408742666,-0.8575036018155515,-0.07483887765556574,-0.12624636618420482,0.3421735633164644,-0.7932942062616348,-0.07934816088527441,0.7916054730303586,-0.2676740256138146,-0.7239425573498011,0.7746320855803788,0.038548251148313284,0.10709127364680171,-0.016550087835639715,0.010479713324457407,0.5984535873867571,0.20843579433858395,-0.7080347728915513,0.22303683357313275,-0.11318554356694221,-0.16923672519624233,0.5640163901261985,0.18311626417562366,-0.05124771874397993,-0.20002164784818888,0.04216665029525757,0.03192407451570034,0.6998000885359943,0.7470224257558584,-0.4282313985750079,-0.791350700892508,-0.2720917514525354,-0.10612586699426174,0.9314632639288902,-0.8313866038806736,-0.7867335197515786,0.9452736848033965,-0.9918901082128286,-0.5162209547124803,0.10732873855158687,-0.8883287967182696,-0.1836746335029602,0.3020147643983364,-0.3636123714968562,0.6539587853476405,0.03716945368796587,-0.936508840881288,-0.6804787828586996,-0.2084273397922516,-0.12859046459197998,0.42042170744389296,0.09407936735078692,-0.4886462255381048,0.16983024356886744,0.4079315266571939,0.06436582747846842,0.8635535230860114,0.06903705559670925,0.051842867862433195,0.4911188599653542,0.2767792232334614,-0.10398580087348819,-0.5549670266918838,0.8568359659984708,0.3374937498010695,0.18935197684913874,0.15746138896793127,-0.14613465312868357,0.2393997274339199,-0.08733434788882732,-0.9010112695395947,-0.08244582684710622,0.16680043563246727,-0.49267030227929354,-0.23318616161122918,0.1687006950378418,0.673671992495656,-0.873276895377785,0.13115988904610276,0.94760362803936,-0.9196104505099356,0.3924838644452393,-0.06547504803165793,0.5763503201305866,-0.1446298873052001,0.5072134789079428,-0.45813482254743576,-0.8877244028262794,-0.39227699814364314,-0.44296760438010097,0.5929610123857856,-0.7750950898043811,0.7007120084017515,-0.5555320880375803,0.4585265452042222,0.9643317521549761,-0.29580991668626666,0.7787291943095624,0.9576359861530364,0.01931515382602811,0.6754376580938697,0.028973165433853865,0.4699130617082119,0.3272316479124129,0.5323946601711214,-0.9173441701568663,0.39586142636835575,-0.6381577192805707,-0.45038926508277655,-0.5898190634325147,-0.6196868731640279,0.4490471361204982,-0.25627617351710796,0.7498529893346131,0.4310390935279429,-0.44847700418904424,0.061034671030938625,0.5935317734256387,-0.005093053448945284,-0.02708680648356676,-0.9299893286079168,0.5218805163167417,-0.982759041711688,0.1467422815039754,-0.6317435950040817,-0.2884261249564588,-0.6950938478112221,-0.6178433001041412,0.7635679519735277,0.30789192160591483,0.706786482129246,-0.2660999079234898,0.7737478208728135,0.5423744316212833,-0.10635589947924018,-0.6440770444460213,0.4382132641039789,0.7431309320963919,0.6369991730898619,-0.7244480513036251,0.019358588848263025,-0.9254603539593518,0.8432905650697649,0.5312971523962915,0.6549056782387197,0.6651642969809473,0.9804580872878432,-0.9372371300123632,-0.12059098994359374,-0.9006966925226152,-0.09469322534278035,-0.0611711866222322,0.9105661930516362,-0.8879605303518474,-0.39744980027899146,0.8557150480337441,0.34164034901186824,0.3594291084446013,-0.10413285763934255,-0.32145254081115127,0.9342179987579584,-0.4457051753997803,0.3506039618514478,-0.7309625274501741,0.8274922743439674,-0.7943544914014637,0.690355621278286,0.0003373897634446621,-0.4568163165822625,0.3356807525269687,0.043560543563216925,0.6329138735309243,0.858001010492444,-0.9637504126876593,-0.6409473340027034,0.8321984461508691,-0.4849747819826007,0.089613220654428,0.3060088292695582,0.6866999575868249,-0.46010594675317407,0.7264563133940101,-0.9323172373697162,0.9786022980697453,-0.40645475313067436,-0.06201656209304929,-0.6478896024636924,0.2010472360998392,-0.007036177441477776,0.9774852320551872,0.4206361435353756,0.07056860625743866,-0.9109661122784019,0.6549622174352407,0.5577858160249889,-0.39650394301861525,-0.725878743454814,-0.8286989624612033,0.4474724279716611,-0.21558908373117447,-0.7693867720663548,-0.5577452117577195,0.575941454153508,-0.9512544637545943,-0.07144080195575953,-0.555836882442236,0.07958814036101103,0.3166398094035685,0.6047743149101734,0.2150693628937006,0.520886464510113,0.941005318891257,-0.19627696322277188,0.8887071018107235,-0.2347505888901651,0.537234814837575,-0.39784002816304564,-0.19256154261529446,-0.47160378098487854,0.23490267572924495,-0.6750138346105814,0.14163819467648864,0.5050592897459865,0.7852998422458768,0.4768857154995203,-0.9376001283526421,-0.04057597741484642,-0.42104835202917457,-0.3922198354266584,0.5541640855371952,0.9154047723859549,-0.8884155326522887,-0.47411282174289227,-0.36043161945417523,0.3370873825624585,0.5390139319933951,0.07515261694788933,-0.4700030470266938,-0.297848476562649,0.5261151287704706,-0.9234143542125821,-0.7214379599317908,-0.6900801854208112,0.6190993529744446,-0.8051359192468226,-0.30372568126767874,0.324427327606827,0.6043774276040494,-0.6938350205309689,-0.6526156137697399,0.9214551136828959,-0.13105047913268209,0.4875055723823607,-0.2537909201346338,0.947084101382643,-0.34840924432501197,0.10051301214843988,0.9130331226624548,0.09356098528951406,0.25371613213792443,0.053558853920549154,0.797182880807668,0.8037171601317823,0.8686586758121848,0.4983510263264179,0.35974032059311867,-0.6588369039818645,-0.8242931412532926,-0.508262284565717,0.002146326005458832,-0.5733091281726956,-0.8013005782850087,0.05015284242108464,0.07372396066784859,0.05159829370677471,0.06608741078525782,0.6511872964911163,-0.5951371062546968,-0.07454605121165514,-0.20787607552483678,0.8047245936468244,0.6072261999361217,0.6614099061116576,0.890404209960252,-0.8033412974327803,0.700429002288729,0.7627794635482132,-0.8868941878899932,0.4443753226660192,-0.8618692839518189,-0.8853637175634503,0.6583553059026599,-0.005039616487920284,0.05417672451585531,-0.07808605674654245,-0.5445999051444232,-0.3790035895071924,-0.306424752343446,0.31656667636707425,-0.2960643176920712,0.8402021820656955,0.306809872854501,0.17505821492522955,-0.8409559545107186,-0.8184997700154781,-0.7573931962251663,-0.8314560665749013,-0.13293774146586657,-0.5203661737032235,-0.942189410328865,-0.41227761982008815,-0.4524120748974383,-0.47568141063675284,0.06422349717468023,-0.6332023213617504,0.7661282625049353,-0.9665643749758601,0.2777917296625674,-0.08367756474763155,-0.6115394742228091,0.09683454781770706,0.19229291658848524,0.5217652409337461,-0.6718422989360988,-0.18503088783472776,0.8767606504261494,-0.14432588731870055,-0.3284059492871165,0.49799636332318187,0.5893769268877804,0.25650408677756786,-0.8517538351006806,0.6891989773139358,0.7031142162159085,-0.7852844926528633,0.3123376164585352,-0.9767825505696237,0.6815787442028522,-0.5489637227728963,0.4728385303169489,-0.13446016376838088,0.6050075949169695,0.3635776792652905,0.39489664509892464,-0.9168979525566101,0.3417066070251167,-0.8732685535214841,-0.9669218491762877,0.39408867340534925,-0.8030727729201317,-0.9066634508781135,0.3635911848396063,-0.7725111050531268,-0.21164283296093345,-0.17625108547508717,-0.2562249372713268,-0.8635519687086344,-0.2562603917904198,-0.640280740801245,0.6729892292059958,-0.3613277720287442,0.10331765608862042,0.5272952704690397,0.7948107747361064,0.8997738193720579,-0.47308452473953366,-0.2775970562361181,-0.9612210667692125,-0.7691752868704498,0.029017038643360138,0.33231025747954845,-0.9524283516220748,0.22523764986544847,-0.585230057593435,0.9800180331803858,-0.05008705938234925,-0.860109549947083,0.33627668395638466,-0.09507438912987709,-0.8752459939569235,-0.25287457555532455,0.31183362333104014,0.27221070788800716,-0.6175829898566008,0.9917368465103209,0.8844301728531718,0.36497977608814836,0.25384027790278196,-0.8047557724639773,-0.07823497988283634,0.7716416120529175,0.5742399534210563,0.8561623678542674,0.014436140190809965,-0.7587904050014913,0.5564254568889737,0.924937451723963,-0.42752162367105484,-0.9915688619948924,-0.9932331126183271,-0.2162591116502881,0.9489050013944507,0.1696001603268087,0.14359745336696506,0.05822843126952648,-0.39965266548097134,0.7049999982118607,-0.45598675636574626,-0.015123802237212658,0.344790605828166,0.0954153761267662,-0.730400821659714,-0.09653637418523431,0.5545426313765347,-0.573386013507843,-0.022162151522934437,-0.07993749715387821,-0.8092007604427636,-0.9550667079165578,0.8358832839876413,-0.4718278357759118,0.031161314342170954,0.41539255110546947,-0.9720293655991554,0.21687852405011654,0.6017444939352572,0.6742251343093812,-0.47403562208637595,0.13798846025019884,0.7277811290696263,-0.05664023756980896,-0.31142431451007724,0.0883494345471263,-0.7113871076144278,0.011289093177765608,-0.07056059641763568,0.8072850345633924,0.9347374350763857,0.3678325111977756,0.9019406354054809,0.8348633316345513,0.25191377382725477,0.7157388110645115,-0.958413609303534,-0.4071377986110747,-0.4976706840097904,-0.13276983564719558,0.6385133089497685,-0.06007369561120868,0.6421310352161527,-0.11973575549200177,0.06874913536012173,0.910289793740958,0.011046614963561296,0.9598000342957675,-0.1586150722578168,0.6042834906838834,0.8455421268008649,0.6049057194031775,-0.4691778616979718,-0.056859380565583706,-0.6896462580189109,-0.771596847102046,0.9766988987103105,0.44404929829761386,-0.6988027198240161,0.789990012999624,-0.7547112954780459,0.5240133819170296,0.5366044072434306,-0.03073950856924057,-0.11747543001547456,0.43887650687247515,-0.4425601656548679,-0.12277368921786547,0.8715259428136051,-0.04351979307830334,-0.7238905215635896,-0.2382446425035596,0.4957654355093837,0.6288879164494574,-0.0919863423332572,0.49699482042342424,-0.595832472667098,-0.40141991758719087,0.8816190245561302,0.5883188806474209,0.05766609078273177,-0.8750811293721199,-0.16090963315218687,-0.32117161620408297,-0.9533372921869159,-0.08080275636166334,0.24097346747294068,-0.56871418049559,0.2940779491327703,-0.19983170926570892,0.274840188678354,0.9732933333143592,0.49908063700422645,0.7182798767462373,-0.7594666788354516,-0.871749653480947,0.7569967615418136,0.4946450120769441,-0.2517797159962356,-0.5208103456534445,0.7902415189892054,0.1402983726002276,0.18121288064867258,0.44231567066162825,0.13159086415544152,-0.8810187024064362,-0.4100193683989346,0.9445227170363069,-0.1848605484701693,0.8410027236677706,0.45665107294917107,-0.4128275755792856,0.27759100403636694,0.059821898117661476,0.36757208686321974,0.5512443226762116,0.6547187771648169,0.9033758910372853,0.19540686486288905,0.5800857497379184,0.9570365813560784,-0.6355401780456305,0.12935752980411053,0.44360607070848346,0.8339583980850875,-0.7731857397593558,-0.8871352104470134,0.628395089879632,0.09488785872235894,0.4518575118854642,0.20886469865217805,-0.228095683734864,-0.9434281825087965,0.9580405373126268,0.7862225379794836,-0.7349055954255164,0.014981886837631464,-0.8067311136983335,-0.2217369033023715,-0.6460969117470086,-0.3339751837775111,-0.5576426996849477,0.6520073432475328,0.3420252534560859,0.2947737807407975,0.6030389666557312,0.790167098864913,0.2492019198834896,-0.06553447712212801,0.5122378063388169,-0.769883920904249,-0.5158078670501709,-0.6456017359159887,-0.39710401371121407,0.3818712681531906,0.7524441522546113,0.9735230184160173,-0.5555090704001486,-0.03949067462235689,0.06920405710116029,-0.9015224301256239,-0.853531519882381,-0.03609832189977169,-0.7551234974525869,-0.3023914131335914,0.7166405594907701,-0.4199966718442738,0.9189533232711256,0.778798236977309,-0.685111993458122,-0.9555899184197187,-0.29512556502595544,0.6748274336569011,0.07193067856132984,0.869133869651705,-0.1948333065956831,0.39040729217231274,0.8994529228657484,-0.858426726423204,-0.9345729956403375,0.5000964151695371,-0.39842490712180734,0.5789052937179804,0.7170335268601775,-0.10162694379687309,-0.18549778684973717,-0.25134866312146187,-0.22983669443055987,0.5535879884846509,0.7660379610024393,-0.321712760720402,0.7083862796425819,0.14367185486480594,0.664127720054239,0.8373307501897216,0.2878973027691245,0.10019082855433226,0.8695668359287083,-0.20873699942603707,0.33666502963751554,0.5543156773783267,-0.14894912438467145,0.23526321211829782,-0.3289023172110319,0.8683823198080063,-0.12848978862166405,0.6512388326227665,0.8104360578581691,0.1755178151652217,0.7464695535600185,-0.2894563265144825,-0.9976805336773396,-0.8539859643206,-0.603737291879952,0.02413277653977275,0.6709972312673926,-0.06674891849979758,0.8448688304051757,0.13131902180612087,0.7582041472196579,-0.5321633955463767,-0.9092424786649644,0.3150126845575869,-0.8200915106572211,-0.37302569672465324,0.5160259008407593,-0.5618460830301046,0.08854278875514865,-0.9700627238489687,0.6401932835578918,-0.31080452678725123,0.7879986171610653,0.5722905742004514,-0.288491562474519,0.674489215016365,0.44806736009195447,-0.39974429132416844,0.7594466251321137,0.680599587969482,0.08617973374202847,0.055612139869481325,0.522809264715761,-0.9432270317338407,0.8782060840167105,-0.981304869055748,0.5759311309084296,0.9711536555550992,-0.8363646776415408,0.5091034737415612,-0.49450356932356954,-0.7922125845216215,0.0727891237474978,-0.008001876529306173,0.13567476766183972,-0.7551655159331858,-0.8085239757783711,-0.5001621842384338,-0.9271755665540695,0.6838374058715999,-0.28186359303072095,0.7310362150892615,0.6300632688216865,-0.865353343077004,0.20322587434202433,-0.5116273094899952,0.10114031564444304,-0.17020733002573252,-0.22319579729810357,0.8003612635657191,-0.16744117066264153,0.42093611881136894,-0.3999575972557068,0.2599801328033209,0.11013918463140726,-0.8227013787254691,0.98901591822505,-0.013871625997126102,-0.041316441260278225,0.11283303517848253,-0.29087643371894956,0.7000821786932647,0.4450896503403783,0.9808272356167436,0.666695290710777,-0.43533810740336776,0.7225229786708951,0.20485164783895016,0.9861075133085251,-0.6667105574160814,0.6596240811049938,-0.9476984445936978,-0.7805592091754079,0.5671291504986584,-0.7876647002995014,0.17515057139098644,-0.835434430744499,-0.9199952501803637,-0.5397632601670921,-0.10424066847190261,-0.31040529906749725,-0.5487373573705554,-0.8115594042465091,0.7105606002733111,-0.5094666876830161,-0.2992390673607588,0.7473312099464238,-0.14792955527082086,-0.691666061989963,-0.10130717465654016,-0.3847135938704014,-0.5172173460014164,-0.41068104980513453,0.4882146902382374,-0.023451566696166992,-0.12849065754562616,-0.3853083783760667,0.37130684964358807,-0.6503972802311182,0.22908539744094014,-0.16245703818276525,-0.4000128284096718,-0.016899126581847668,0.19156793784350157,-0.687595734372735,0.043719307985156775,0.11923875939100981,0.32946801697835326,0.8330262866802514,0.7943030465394258,0.6868890589103103,0.027442737016826868,0.6455395114608109,-0.9376519843935966,0.19233196647837758,0.23298153886571527,0.8077343814074993,-0.13915758859366179,0.8026036312803626,0.09651908231899142,0.8106823186390102,-0.41279609967023134,-0.3029419230297208,0.6697670025750995,-0.3775180787779391,-0.6652782717719674,0.22024927660822868,0.9472643667832017,0.8197752758860588,0.3914620550349355,-0.46477851271629333,0.4847019277513027,0.47641618084162474,0.30768777476623654,-0.16996696265414357,0.7678598091006279,-0.18646219978109002,0.4829589631408453,0.6831797203049064,-0.11883568530902267,-0.43727116053923965,-0.15117728989571333,0.43177717132493854,0.1492889099754393,0.609424396418035,0.03123909793794155,-0.945329811424017,-0.6064888848923147,0.3178609637543559,-0.024920555762946606,0.64064253680408,0.5044614989310503,0.774538413155824,-0.8262921366840601,0.8845106665976346,0.5852783462032676,-0.35126532707363367,0.5521370265632868,0.595916154794395,0.5520074483938515,0.9524009097367525,0.9623230672441423,-0.5721980659291148,-0.19563908129930496,0.7184493648819625,0.34199696127325296,0.6093221828341484,0.8669062899425626,0.10292137274518609,0.46109511191025376,-0.7611692887730896,-0.6891290475614369,0.27341373497620225,-0.5721107870340347,-0.1318446877412498,-0.5436791758984327,-0.0891492934897542,0.9683730127289891,-0.45842151157557964,0.20746490499004722,0.5804636371321976,-0.08902181126177311,0.07420391449704766,0.8528409637510777,-0.6155052348040044,-0.2872317098081112,-0.4732704386115074,0.812756166793406,0.43239053664729,0.16574861481785774,0.32686175452545285,0.09395725559443235,-0.052348421420902014,0.7384945126250386,0.46798484632745385,-0.8310198658145964,-0.7935528820380569,-0.8466925392858684,0.3634238815866411,-0.8072977541014552,0.8428586656227708,-0.2624787883833051,-0.5094128055498004,-0.6562791857868433,-0.04040604177862406,0.9600652842782438,-0.9922027559950948,-0.8361245105043054,0.9304942968301475,0.8768324847333133,0.8243440836668015,-0.9664851920679212,0.7306544915772974,0.7474993858486414,0.9029564410448074,0.22710340144112706,0.5289343567565084,-0.9409266891889274,-0.47251319233328104,0.7194626173004508,-0.8369663706980646,0.701162189245224,-0.3282114979811013,-0.4858555877581239,-0.1483862684108317,0.9962354563176632,-0.7581319971941411,0.1352435047738254,-0.01089947996661067,0.6802475894801319,-0.3953151791356504,-0.1561915259808302,-0.4650178155861795,-0.397938861977309,0.14191925199702382,-0.5159468590281904,-0.287818206474185,0.5374958147294819,0.0682117179967463,0.2742189229466021,0.8810629034414887,0.5156499678269029,-0.4479467966593802,-0.5296976543031633,-0.8957502418197691,0.343571187928319,0.16557403421029449,-0.2891852227039635,0.3307841648347676,0.9550207536667585,0.8338715373538435,-0.664475770201534,-0.4573210449889302,-0.6971646002493799,0.725520002655685,0.019470213912427425,-0.07533738110214472,0.6476379260420799,0.11136192781850696,0.4391641174443066,0.18198736663907766,0.17153868125751615,-0.24865895649418235,0.7656536134891212,0.5835424838587642,0.8398605934344232,-0.8454868206754327,-0.7825239477679133,-0.9180614771321416,0.818158688955009,-0.44705589720979333,-0.5601330250501633,-0.4226405960507691,0.6996971694752574,0.5178579110652208,-0.23639687523245811,0.8356124581769109,0.5905764275230467,0.6714354250580072,0.7254113196395338,0.524156104773283,0.41367647843435407,0.48872266709804535,-0.6360970386303961,0.6524409935809672,-0.11465759016573429,0.9792560166679323,0.5363534367643297,0.4836768126115203,0.8164546564221382,0.8427602332085371,-0.32523229951038957,-0.37092612124979496,0.8484339490532875,0.10471115494146943,0.3501691552810371,0.8529750686138868,-0.060486859641969204,-0.6313612340018153,0.15499923611059785,0.4028245797380805,0.013352796901017427,-0.7443542280234396,0.39731206046417356,-0.9808256612159312,-0.9826131034642458,0.022749528288841248,-0.8430169280618429,0.3341755582951009,-0.9322552541270852,0.5253914147615433,0.6901045250706375,0.34648149786517024,-0.146497483830899,0.27895977161824703,0.4549115947447717,0.5088580325245857,0.5192230795510113,-0.4864454776979983,-0.04713334050029516,-0.3912215274758637,0.2781904167495668,0.5736946403048933,-0.8776164334267378,0.7981791151687503,0.4333694069646299,0.24226374132558703,-0.8514205571264029,0.40895325783640146,-0.8891329686157405,0.6358548509888351,0.6499729170463979,-0.01944115711376071,0.7631098004058003,-0.5466543454676867,0.22137510171160102,0.4037348674610257,-0.05239561386406422,0.8335705399513245,0.059347220696508884,-0.5084979929961264,0.057554689701646566,-0.874271793756634,0.9726254129782319,-0.42016240721568465,-0.14882882591336966,0.24116700887680054,-0.11271822266280651,0.48383712070062757,0.4225264713168144,0.6661693854257464,-0.9840746116824448,-0.055136093869805336,-0.443642636295408,-0.32268814789131284,0.26741192396730185,0.10975204594433308,-0.0024815830402076244,-0.49138631485402584,-0.6832992825657129,0.007540944032371044,0.13309939531609416,-0.2557685533538461,-0.027395576238632202,-0.6956870928406715,0.30922806821763515,-0.5422614440321922,-0.891547572799027,0.6835152585990727,-0.5868878299370408,-0.844375885091722,-0.661824818700552,0.7240509525872767,-0.9207615042105317,0.1849808469414711,-0.6539331148378551,-0.5795293929986656,-0.12068612361326814,-0.5247160508297384,0.5400604484602809,-0.27405607467517257,0.0875618839636445,0.3215806814841926,-0.6399840014055371,0.49432713724672794,-0.6262540807947516,0.07138870749622583,-0.2335549988783896,-0.5339636276476085,0.5284160342998803,0.7642035828903317,-0.7168354224413633,-0.3971350910142064,-0.21492791175842285,0.3763394677080214,0.9539994252845645,-0.9967913925647736,-0.09933295147493482,0.176219810731709,-0.641632086597383,0.17990953382104635,0.7644875855185091,0.1532674804329872,-0.7009988138452172,-0.502046681009233,0.7897459277883172,0.4045152119360864,0.38076362712308764,-0.1420461623929441,0.055238735396414995,0.7788643683306873,-0.4543739487417042,0.5453977044671774,0.8004565183073282,-0.37402923684567213,0.3563386225141585,0.5121688540093601,-0.7061421880498528,0.5513542387634516,-0.12282989826053381,-0.6020274925976992,-0.7900018761865795,-0.8448049062862992,0.8450066014192998,0.37510419404134154,-0.22402932960540056,-0.15186868933960795,-0.5628341604024172,-0.3396399929188192,-0.42246526619419456,0.4431432168930769,-0.3173820455558598,0.7638220409862697,0.8052992024458945,-0.19669044855982065,0.8641009791754186,-0.7516429182142019,0.30010087927803397,-0.8336331574246287,-0.9924938823096454,-0.7102514822036028,-0.7802668325603008,0.33770520240068436,-0.12486448464915156,0.6832406730391085,0.3118545701727271,-0.740822390653193,-0.8458358179777861,0.3572216206230223,-0.8704863754101098,-0.6452597226016223,-0.6664194944314659,-0.028140896931290627,-0.0012484095059335232,-0.43896116968244314,-0.560202466789633,-0.019602559506893158,-0.6459638299420476,0.04205336235463619,0.9120655893348157,0.8533401135355234,-0.13291231449693441,-0.7985692787915468,0.7396380859427154,0.4475597511045635,-0.27345971344038844,0.8208630522713065,-0.26204225374385715,-0.22149779833853245,0.9950365871191025,0.5400219247676432,0.706721258815378,0.6937178382650018,0.7060758611187339,0.1936866263858974,-0.03396604210138321,-0.7120370441116393,0.8412129292264581,-0.8500060690566897,-0.5678212232887745,-0.7080457792617381,0.6726609915494919,0.8304332713596523,-0.11594514409080148,-0.9783943695947528,0.621230355463922,-0.6417436748743057,-0.6626266874372959,-0.6482843765988946,-0.01068702433258295,0.5574878351762891,0.10674789734184742,0.7679995596408844,0.2912932028993964,-0.5434452597983181,0.3520122957415879,-0.2847597096115351,0.7106535481289029,0.3936566486954689,0.10419144248589873,0.9481569696217775,-0.25012671668082476,0.2561846636235714,-0.2479151957668364,0.6368207330815494,0.1244080294854939,-0.049609850626438856,-0.26408985489979386,-0.652535721193999,0.285613261628896,0.6820548078976572,0.18191576609387994,-0.41239424142986536,-0.5916836811229587,0.9576344704255462,-0.27908243145793676,0.8266167361289263,-0.39075783221051097,-0.5910882079042494,0.2705190973356366,-0.6111751166172326,0.6283707129769027,-0.8403886309824884,0.5337027390487492,0.02427848894149065,-0.6757868779823184,0.9710780186578631,-0.725008720997721,-0.551748457364738,0.32506707357242703,0.7505450728349388,0.9322787947021425,0.15835531894117594,0.9893202427774668,-0.9334216727875173,-0.19382864935323596,-0.535855948459357,-0.6339781060814857,-0.3216703678481281,0.577465747948736,-0.4922139486297965,0.14085760852321982,-0.7423163992352784,-0.5704831094481051,-0.2878843699581921,-0.5919265779666603,-0.043291336856782436,0.2624502698890865,-0.4862726521678269,0.7636730116792023,0.3048615977168083,-0.42239631107077,0.0034450157545506954,0.8806635560467839,-0.8804504154250026,-0.2113909013569355,-0.010860424023121595,-0.9578058207407594,-0.5339100090786815,-0.09476640354841948,-0.8598737702704966,-0.18769207084551454,0.7876421078108251,-0.2934099640697241,0.39988535875454545,-0.8981288112699986,0.6046930295415223,-0.07323120627552271,-0.8359923963434994,0.037570863496512175,-0.8168684937991202,0.40986861102283,-0.0769642423838377,0.23926353733986616,-0.04521322390064597,-0.22665517451241612,-0.43517507426440716,-0.6549239763990045,-0.20320748025551438,-0.3806792590767145,0.15728868264704943,0.7065961016342044,0.15650160005316138,0.585920290555805,-0.492989263497293,-0.09258695272728801,-0.12601408828049898,0.644205167889595,-0.08977203350514174,-0.21297477325424552,-0.9465138199739158,0.18490728409960866,0.9573515709489584,-0.22301111463457346,-0.16782235587015748,-0.23152341600507498,-0.7132690227590501,-0.3090080781839788,-0.08401791006326675,-0.8234950844198465,-0.7879478759132326,0.8743101586587727,-0.5625995174050331,0.10007736785337329,-0.5405716574750841,0.45019689947366714,0.9563352433033288,0.317185839638114,0.14984389999881387,-0.09991767816245556,-0.0026849466376006603,-0.16085274796932936,0.6885378430597484,0.7629846031777561,-0.6070332024246454,-0.5130181307904422,-0.1402364457026124,0.36865298403427005,-0.588160851970315,0.05937871756032109,-0.5611900668591261,-0.6320115495473146,-0.46341506158933043,-0.6186566054821014,-0.21759629994630814,-0.9871308202855289,-0.592188517563045,0.6745635806582868,-0.18549026921391487,0.13197162793949246,-0.15226039523258805,0.707998865749687,-0.6709061157889664,-0.7055019047111273,-0.4712849659845233,0.8566718874499202,-0.14381094044074416,0.036534500773996115,0.2733519864268601,-0.0549661205150187,-0.6546736382879317,0.8886246075853705,0.6482070609927177,0.6210691011510789,-0.21895916061475873,0.22983101522549987,0.3607629118487239,0.914855734910816,0.37560524605214596,-0.06009998684749007,0.1876425426453352,0.5570499426685274,-0.4367093425244093,-0.01279688673093915,-0.04992148792371154,-0.983330488204956,0.43228732142597437,0.45712477806955576,0.5494775352999568,0.2195805343799293,-0.11515306495130062,0.7262425292283297,-0.3427385655231774,0.829969672486186,0.5398403224535286,0.4060748000629246,0.3173396037891507,-0.5070639504119754,-0.6222878200933337,0.4489889768883586,0.2689154529944062,-0.7743495921604335,0.02559256972745061,-0.9936913368292153,-0.7004154259338975,-0.6024879799224436,0.009505281690508127,-0.41529777413234115,0.24924704106524587,0.28974172472953796,0.7737147277221084,-0.16399266850203276,-0.9845944810658693,0.8435988686978817,0.31903153844177723,-0.18361905263736844,-0.16762708919122815,0.6688308012671769,-0.2181257251650095,-0.9121662643738091,-0.922027834225446,-0.8222380918450654,-0.3069775174371898,-0.05959578650072217,0.7273408747278154,0.03797842701897025,-0.18390972819179296,-0.09816036466509104,0.7948025483638048,0.2739042257890105,-0.9032677719369531,0.5199736040085554,0.9828636306338012,0.21784303290769458,-0.9100818447768688,0.17203685361891985,-0.5679758754558861,0.11855622753500938,0.5560105624608696,0.21600882336497307,0.33357657259330153,-0.7015318996272981,-0.609486177098006,0.14263229118660092,-0.4322973908856511,-0.24280096078291535,0.8531929184682667,-0.6690577231347561,0.26668691728264093,-0.2935397601686418,0.8399222167208791,-0.5526608731597662,-0.8880743063054979,0.04195076646283269,-0.9449528949335217,0.6533406502567232,0.93974185641855,0.05398257588967681,-0.5537031255662441,0.07815865473821759,-0.06907324120402336,0.20760875707492232,-0.21278197970241308,0.9334061383269727,0.3983346279710531,-0.9459392512217164,0.9178996728733182,0.6530497423373163,-0.2797721014358103,0.6956849070265889,-0.007103543728590012,-0.266163588501513,0.4544742703437805,-0.5691948574967682,-0.7257047328166664,-0.35834532231092453,0.14955369755625725,-0.2852822211571038,0.5294683827087283,0.4333434160798788,0.7308695614337921,-0.5925227422267199,0.11857003485783935,0.5955687677487731,0.35924688214436173,0.0019435468129813671,0.13423261558637023,0.9099824894219637,0.041667351964861155,-0.6335753849707544,-0.7513495068997145,0.41256442992016673,0.05080735357478261,0.7393323457799852,-0.6889337631873786,0.07475412264466286,-0.1293223206885159,-0.19893712271004915,-0.6343715689145029,-0.021835497114807367,-0.26173846470192075,-0.0981110162101686,0.9648240525275469,0.34107293747365475,0.3146148747764528,-0.0993098895996809,-0.8296880279667675,-0.9524728008545935,-0.589643182232976,-0.7999220998026431,-0.1515659485012293,-0.46376184932887554,-0.7653655963949859,0.8052811804227531,0.9512701723724604,-0.7717485860921443,0.9806883409619331,-0.9187952014617622,-0.3164185071364045,-0.04852926405146718,0.7225673464126885,0.2176148658618331,0.08520895894616842,-0.5121536538936198,-0.6069680163636804,-0.9805311202071607,0.30680368933826685,-0.8099225768819451,0.6872068117372692,-0.8675677259452641,0.4248856701888144,0.6361298374831676,-0.4506382145918906,-0.7462367988191545,0.4561008708551526,-0.5320601621642709,-0.6402613292448223,-0.3831236814148724,-0.06717095104977489,-0.20573738822713494,-0.10992518020793796,0.029478239826858044,-0.9868163429200649,-0.6290686661377549,-0.20580105111002922,0.3008762700483203,0.8592213843949139,0.6324420156888664,-0.5475069186650217,0.5855091069824994,0.37169480649754405,0.7741970820352435,-0.8855951349250972,-0.15323045756667852,0.8521004179492593,-0.5922538139857352,-0.4355616797693074,-0.9029239034280181,0.26176400668919086,-0.1740622641518712,0.5215293695218861,-0.28776434902101755,-0.11278335843235254,0.19152053305879235,-0.9518864611163735,-0.6534609254449606,0.03848984278738499,-0.7190511543303728,-0.49936213064938784,0.5243196086958051,0.3729012464173138,-0.3220662111416459,-0.6114972443319857,0.6007212810218334,-0.01986130326986313,-0.5732766003347933,-0.34427324309945107,0.2769822501577437,-0.294118148740381,-0.4236941887065768,-0.3106725192628801,-0.7989264554344118,-0.854394843801856,-0.732554872520268,0.9446706282906234,0.7313678758218884,0.6834845757111907,-0.3058333769440651,-0.8417955706827343,0.5365174408070743,0.8593235504813492,0.9797857962548733,0.36884961696341634,-0.4264744627289474,0.7128878426738083,-0.581530059222132,0.7486963546834886,0.5512016508728266,0.26828470127657056,-0.8035101308487356,-0.8729868452064693,-0.9406713708303869,-0.8902753856964409,-0.9430304993875325,0.4908715304918587,0.20199235528707504,-0.34915836807340384,0.45369218988344073,0.5731827751733363,0.9540776447393,0.6635404946282506,-0.5229351841844618,0.9153851685114205,0.6136285355314612,-0.05743124382570386,-0.3938845512457192,-0.9385185167193413,-0.7535265958867967,-0.31248733401298523,-0.3226309632882476,0.8948997603729367,0.6233452977612615,-0.6192781678400934,0.7731210822239518,0.1606627474538982,-0.845681696664542,0.1324435994029045,-0.4153454862535,0.22754218382760882,0.2107122433371842,-0.14488388039171696,0.9145075450651348,-0.5072029326111078,-0.3048737356439233,0.04304114496335387,0.8444341607391834,-0.08348262822255492,0.4028570456430316,0.8266298775561154,-0.34563660342246294,-0.7403188310563564,0.521393408998847,-0.3109228569082916,-0.20419366005808115,0.42193672992289066,-0.7299623196013272,0.062472079414874315,-0.2915316973812878,-0.2917676488868892,0.9393556695431471,0.5292666796594858,-0.7336362865753472,-0.3081925520673394,-0.8809385974891484,0.11294843489304185,-0.24626749148592353,0.06741601228713989,0.9167290087789297,0.1674507800489664,-0.35230186441913247,0.19535863446071744,0.25787038169801235,0.12156363250687718,-0.43924699909985065,0.90057018911466,-0.8063997477293015,-0.6369878966361284,-0.9193243090994656,0.719445250928402,-0.9413200286217034,-0.7151445215567946,0.22553550079464912,-0.13464045990258455,-0.3974870196543634,-0.898657017853111,-0.740533581469208,0.7185693522915244,0.3178657148964703,0.2616511406376958,0.5670993267558515,-0.28544626059010625,-0.7424263809807599,0.8322581718675792,0.4907923280261457,-0.003334721550345421,0.23732220381498337,-0.970479201991111,-0.47805172437801957,0.3848848659545183,-0.5298536336049438,-0.08266677567735314,0.0429491545073688,0.21639301348477602,0.05986441904678941,-0.7385930721648037,-0.7178086400963366,0.7746050083078444,0.2776806275360286,0.0719646392390132,-0.21527978591620922,-0.4149902015924454,-0.9331462946720421,-0.5711014401167631,0.1654316713102162,0.21219505555927753,0.14496466517448425,-0.5361054330132902,0.3252488300204277,0.6482242485508323,0.5539474138058722,0.4733069925568998,-0.04815676715224981,-0.9896740512922406,0.46544381557032466,-0.5733152125030756,0.24243783578276634,-0.15959817683324218,0.20925460755825043,0.6062322012148798,0.1402720119804144,-0.14860156597569585,0.3924956847913563,-0.3619846999645233,-0.09222324006259441,-0.4383127191103995,-0.1495194397866726,0.8147877361625433,-0.998248643707484,0.3985045300796628,0.14935903530567884,0.6221112362109125,-0.3769186297431588,0.9361642641015351,-0.9374566418118775,-0.32871611788868904,0.8830591547302902,0.1436875364743173,-0.18379355920478702,0.016900434624403715,0.19913761876523495,0.6626383732073009,0.02451170003041625,0.33142580185085535,-0.29065965861082077,-0.7490329383872449,-0.6196685680188239,-0.31015227688476443,0.7033082959242165,0.10669276770204306,0.8026716373860836,-0.9850671123713255,-0.30705717764794827,0.6006372473202646,-0.48191940831020474,-0.37451476277783513,0.9503081701695919,-0.5996813550591469,0.19915106846019626,-0.9168598130345345,0.227344352286309,0.29130155267193913,-0.8513829219155014,-0.05947756068781018,0.7526068431325257,0.5502078304998577,-0.9842889211140573,0.3859639810398221,0.4557177582755685,0.20040824357420206,0.6120806839317083,-0.68957783235237,-0.3953254255466163,0.8371583954431117,0.06580357905477285,-0.7144478275440633,-0.40718409791588783,-0.5539470897056162,0.5341676888056099,-0.8535449802875519,-0.7078377869911492,-0.7642214898951352,0.2006288575939834,-0.6211351216770709,-0.10433637723326683,0.12915243487805128,0.9152535735629499,0.14108442422002554,-0.0007269405759871006,-0.01224752701818943,-0.24990436108782887,0.7723223608918488,0.5436848369427025,-0.4246985735371709,-0.3725854028016329,0.016326258424669504,-0.8058681744150817,0.17495353054255247,0.20851370180025697,-0.2070122892037034,-0.39506531693041325,0.018988389987498522,0.7152135916985571,-0.5082489536143839,-0.9024050082080066,-0.9392486829310656,-0.2020380557514727,0.40581028861925006,0.8141459012404084,0.2908104155212641,-0.5557868080213666,-0.7753217555582523,0.4468839801847935,-0.5986739480867982,-0.9553649481385946,-0.5758206564933062,-0.1342309289611876,-0.14381027640774846,0.964361485093832,0.30089086620137095,0.7643102612346411,-0.2849977253936231,0.39453591872006655,-0.33479363936930895,-0.7130974493920803,-0.2009004596620798,0.7130486979149282,-0.2258068318478763,-0.7157464032061398,0.09937793668359518,-0.23096496425569057,-0.1528066503815353,-0.6479599014855921,-0.15146721713244915,0.09447553474456072,0.7487831725738943,0.01007967907935381,0.6847481047734618,0.8089777459390461,0.1736243423074484,-0.9614612190052867,-0.14587762812152505,-0.9476798567920923,-0.7597664417698979,-0.991256145760417,-0.676861516200006,-0.11426720162853599,0.4796646977774799,0.6356682861223817,-0.4452714351937175,-0.970213355962187,0.35309036588296294,0.0761688482016325,0.5636374452151358,-0.598338985349983,0.7159590632654727,-0.14013770874589682,-0.8828723658807576,-0.6365276244468987,0.7313493867404759,0.2368462006561458,0.7308904062956572,-0.41297187749296427,0.9830188197083771,0.8942054496146739,-0.6792212980799377,-0.41009240923449397,0.7198207825422287,-0.3369581298902631,-0.4352370174601674,0.5625415206886828,-0.28503979556262493,0.5144615820609033,-0.4322038823738694,-0.4821383678354323,0.13339024130254984,0.5848625027574599,0.011918750125914812,-0.2439509043470025,0.0485428050160408,0.5323693342506886,0.28467972204089165,0.6846038065850735,0.14383905613794923,0.5598731860518456,-0.2150980611331761,-0.9550237916409969,0.3935073995962739,-0.7403022795915604,0.8899205764755607,0.2295219451189041,-0.1779467612504959,0.7186618284322321,-0.4069247115403414,0.3469470199197531,0.4006462818942964,0.14004296157509089,0.7273728684522212,-0.8088336638174951,-0.5694626676850021,0.3740551108494401,0.7618717732839286,-0.005065298173576593,0.9750739368610084,-0.28289942583069205,0.06561458110809326,-0.6697874865494668,-0.9170487229712307,-0.4145445991307497,-0.7100342963822186,0.8987937299534678,-0.4951892741955817,-0.6221510088071227,0.26361804688349366,0.9868728709407151,-0.3369358549825847,-0.07852860074490309,-0.3069022004492581,-0.09361944906413555,-0.8598568737506866,-0.20544002065435052,0.767067264765501,0.7358395960181952,0.13168697664514184,-0.892480478156358,0.0722799776121974,-0.6583279399201274,-0.9088139720261097,-0.9865608471445739,0.8961297511123121,-0.8203230472281575,0.989406683947891,0.3189427061006427,-0.4835337456315756,0.9229613072238863,0.563429316971451,-0.7856447100639343,-0.9681382128037512,-0.4846430867910385,0.859659458976239,-0.42279362259432673,0.9052094975486398,-0.5647142068482935,-0.03464530408382416,0.18095056293532252,-0.3528806148096919,0.30161202559247613,-0.3680198877118528,0.6818330553360283,-0.5066159898415208,0.2426344878040254,-0.4001961653120816,0.4350127223879099,-0.8144789640791714,0.7457678695209324,-0.7800972596742213,-0.1626187958754599,-0.859506749548018,-0.897330844309181,-0.9410772048868239,0.6373649975284934,0.864501437637955,-0.8366346778348088,0.9524764833040535,-0.5302583272568882,-0.05549619812518358,0.33199756825342774,-0.5563151822425425,-0.9499249025247991,-0.5620952416211367,-0.04414314078167081,-0.4113482618704438,-0.23918098350986838,-0.24718068353831768,-0.5614837370812893,-0.684066139627248,0.7323937956243753,-0.45832419814541936,0.7106001214124262,-0.3905699271708727,-0.3776458981446922,0.7325404714792967,-0.17946934839710593,0.025572624057531357,0.6509206420741975,-0.23085691407322884,-0.46599459322169423,0.2992944004945457,0.4453028040006757,-0.20947786839678884,-0.1925517749041319,0.2735571349039674,0.43415958900004625,-0.13585590850561857,0.3915334860794246,0.11678527621552348,0.7296624379232526,-0.9382444117218256,0.9903207714669406,0.03603471117094159,0.08639586484059691,-0.7419052268378437,-0.5989525425247848,0.3988573309034109,-0.20871333172544837,-0.764610375277698,0.12758201360702515,-0.20508893067017198,0.3607369833625853,-0.691475270781666,-0.31323294760659337,-0.20818185154348612,0.3462846805341542,0.7426796746440232,-0.11568375257775187,0.7759217340499163,-0.6090850871987641,-0.006738488562405109,0.7126253922469914,0.7386102518066764,-0.6725457110442221,-0.553343947045505,0.525392696261406,0.45785327022895217,-0.9172532460652292,0.2589342566207051,0.3105264543555677,-0.45736895129084587,0.34203976951539516,0.24219490680843592,-0.4545626533217728,-0.1925076600164175,0.6746778418309987,-0.7256853440776467,0.2085476666688919,0.8224923657253385,-0.46234804717823863,-0.13106101658195257,-0.6211918899789453,0.5303062568418682,-0.9366576918400824,0.6230086595751345,-0.21596429031342268,-0.20203317794948816,0.5973567278124392,0.15833215368911624,0.9794133212417364,-0.6400683429092169,-0.5791809228248894,-0.7111744140274823,-0.4766124505549669,-0.45109997503459454,0.4798422735184431,-0.647540436591953,0.4747798736207187,0.6950827264226973,0.06764516560360789,-0.1076596830971539,0.3943632999435067,0.27399684535339475,0.916613198351115,-0.28796127159148455,-0.23983693635091186,-0.2752524297684431,-0.8732431051321328,-0.1701803063042462,-0.417014860548079,-0.1844195695593953,-0.48235723562538624,0.06681740051135421,0.363941743504256,-0.3014620444737375,0.2350497730076313,-0.21432921616360545,-0.7097316784784198,0.7944902181625366,0.17246515257284045,-0.6857506367377937,-0.8010990121401846,0.4394896267913282,-0.29467889945954084,-0.43314328882843256,0.9640156612731516,0.2985619301907718,-0.8288240823894739,-0.7312580929137766,0.3281883471645415,-0.9062879462726414,0.5185832809656858,-0.4833695343695581,-0.09476376138627529,0.12779190111905336,0.9868606217205524,-0.3441911428235471,0.04159064497798681,-0.013306645676493645,0.9044122910127044,-0.9802494207397103,0.7951675415970385,0.765360513702035,-0.9640520382672548,-0.4373836452141404,-0.8800635705702007,0.008740335702896118,0.890768283046782,0.053264451678842306,-0.7861418086104095,0.2737452811561525,0.4846980473957956,-0.1831412734463811,0.6127132046967745,0.05969193112105131,-0.7071879939176142,0.41653875866904855,0.6043200702406466,-0.6297448589466512,-0.7618455928750336,0.24061129754409194,-0.09029436763375998,0.7217303505167365,0.0264191091991961,-0.44181770039722323,0.36922554299235344,0.08007932268083096,0.9829562990926206,0.7588442340493202,-0.6314480835571885,0.42407700000330806,0.008451903704553843,-0.37533377623185515,0.9652292197570205,0.34537461353465915,-0.772084591910243,0.24300223588943481,0.5471315551549196,0.7312066159211099,0.6439713980071247,-0.8001473713666201,0.7973522893153131,0.6177372285164893,0.6055482323281467,0.34439155645668507,0.06560440361499786,-0.7782219867222011,-0.17778606386855245,0.5492690405808389,0.6466356460005045,0.2720498642884195,-0.150477462913841,0.9787910566665232,-0.9045030493289232,-0.326132470741868,0.17667019134387374,0.38315669633448124,-0.08615356590598822,-0.9051899313926697,-0.5885333372280002,0.13967499416321516,0.35404306603595614,-0.43209978146478534,-0.8058595163747668,-0.018843437545001507,0.18377939984202385,-0.10731211956590414,0.10599176213145256,0.16369860107079148,0.6801175153814256,-0.44668753165751696,-0.5670493710786104,-0.8787301923148334,0.21110642235726118,-0.5369093236513436,0.15367048885673285,-0.9675876721739769,0.6713214875198901,0.8470656964927912,-0.8747838255949318,0.26961897872388363,-0.018093822058290243,-0.22143802093341947,0.4864034648053348,0.26971647003665566,0.9452323131263256,0.6657841969281435,-0.22230101795867085,0.7497940324246883,-0.8833915879949927,0.5242406637407839,0.8643346345052123,0.7768508037552238,-0.28147251438349485,0.37620545038953424,-0.16731038689613342,-0.5643627932295203,0.8173925266601145,-0.6745710647664964,-0.15470395609736443,-0.04397191712632775,-0.3401089464314282,0.29082029685378075,0.33179987594485283,-0.5121037354692817,0.6818503169342875,-0.6932344706729054,-0.42943822452798486,-0.34287192672491074,0.6208864310756326,-0.2742270929738879,0.28185870219022036,0.10383929219096899,-0.8870417876169086,0.3505049883387983,0.8210862618871033,-0.21715117897838354,0.6864994913339615,0.15145804500207305,-0.1645259242504835,0.6532560782507062,0.9813421824947,0.7548833396285772,0.7008518083021045,0.31238729460164905,0.8748211339116096,-0.350302382837981,0.029247506521642208,0.41272763535380363,0.6049997191876173,0.6471510319970548,-0.10733274184167385,-0.9744198271073401,0.03798533836379647,0.4947006683796644,0.6985245360992849,0.5382364951074123,0.7267896165139973,-0.04960692813619971,0.1931206868030131,0.4473223052918911,0.961733927950263,-0.188389603048563,-0.5493847457692027,-0.4952674685046077,0.9417070797644556,-0.07128323055803776,0.349756196141243,-0.6174229914322495,0.9665227378718555,0.8629024759866297,0.6166418553330004,-0.05552406422793865,0.5566259962506592,-0.2881021937355399,0.6025692960247397,-0.010428713634610176,-0.48947009537369013,0.4548590430058539,-0.5289476620964706,0.7499633845873177,0.3700491329655051,0.598760936409235,-0.34891781117767096,0.5837876317091286,-0.7393391760997474,-0.8201593491248786,0.27274969359859824,0.5549346059560776,0.5733092688024044,0.9081962052732706,0.7197601278312504,0.7877148170955479,-0.048208047170192,-0.04912934312596917,0.5465234010480344,0.6082703182473779,0.8260340243577957,-0.3022567192092538,0.58801503572613,0.29399040760472417,0.6988806035369635,-0.037189388647675514,0.3910005404613912,0.8173290891572833,0.9532850906252861,0.06848585233092308,0.49685141164809465,0.35721759544685483,-0.02633089805021882,0.17977944388985634,-0.4834196143783629,0.6537676891312003,-0.21986103197559714,0.8892361908219755,0.42024366185069084,-0.17633597319945693,-0.9567075246013701,-0.4039410944096744,-0.8089385693892837,0.01987988967448473,-0.7358284769579768,0.41902632219716907,0.5290144411846995,0.32825855584815145,-0.4625741597265005,0.08274192782118917,0.6866509690880775,0.24787771655246615,0.3249543230049312,-0.3812419315800071,0.8118633604608476,0.284801637288183,-0.758758535142988,-0.035461964551359415,0.9956141347065568,0.3202090826816857,-0.7508938466198742,0.4011562024243176,-0.5471373149193823,-0.025398459285497665,0.5889563537202775,0.5524074188433588,0.7050021938048303,0.9716919539496303,0.5976526029407978,-0.12349983863532543,0.10776837775483727,-0.9734541955403984,0.7415917841717601,0.2637467929162085,-0.5003251838497818,0.48586526047438383,-0.7644307888112962,0.6341338763013482,-0.8879113257862628,-0.2737547820433974,-0.22947868471965194,-0.861053500790149,0.2797541911713779,-0.6906714248470962,-0.28903184086084366,0.6436818325892091,0.2893271413631737,-0.4783738497644663,0.6215873658657074,0.012944310437887907,-0.9380058753304183,0.5452900854870677,0.25314702466130257,-0.49729949003085494,0.3090075571089983,0.8844862580299377,-0.4700586535036564,-0.29157915711402893,0.13880070112645626,-0.3951233788393438,-0.9334888807497919,0.9590416802093387,-0.26519504515454173,-0.9625483835116029,-0.7804493098519742,0.31189478235319257,-0.21976607060059905,-0.8549233982339501,-0.44886573078110814,0.1855050716549158,0.4511832520365715,0.5025061652995646,-0.14490930596366525,-0.3607895481400192,-0.15793962683528662,-0.21605630032718182,-0.7064373753964901,-0.8252889784052968,0.7132221609354019,0.1576749593950808,0.04744764417409897,-0.2621744289062917,-0.09470169758424163,0.908162010833621,0.7903745109215379,-0.8978561367839575,0.9290410568937659,0.7515925252810121,-0.11526954500004649,-0.9389871377497911,0.07213382609188557,-0.985135905444622,0.3129080533981323,0.7790296762250364,-0.32332402281463146,-0.06550787715241313,-0.6968857259489596,0.10225617606192827,0.5312325502745807,0.08981417771428823,-0.2555445712059736,-0.1773811550810933,0.2940932339988649,-0.44052165234461427,0.01610064832493663,0.11897950805723667,-0.7207251559011638,-0.5447916407138109,-0.8762679933570325,0.4005928351543844,-0.8298878399655223,0.6141378097236156,-0.21599690802395344,0.9427671013399959,0.9170290441252291,0.016128332819789648,-0.36078964453190565,0.02341059548780322,-0.5784663567319512,-0.8762483154423535,-0.5101894624531269,0.8269284404814243,-0.23610436078161,-0.09855390340089798,0.7007464794442058,-0.38039241917431355,0.7953872452490032,-0.6089304420165718,0.09693922335281968,0.7118528634309769,-0.6567592052742839,-0.3630452509969473,0.9581821351312101,-0.20901307137683034,-0.7128530871123075,0.5490363459102809,0.7965639648027718,-0.5999832847155631,0.03922672476619482,0.43785638827830553,-0.3886418994516134,-0.25856096716597676,-0.4399208021350205,-0.5022082668729126,-0.8257585060782731,0.8801815770566463,-0.04413680825382471,-0.6047721216455102,-0.7948250803165138,-0.46261822944507003,0.24277369352057576,-0.8771491842344403,0.8691454851068556,0.988110825419426,0.7477477062493563,0.13854857767000794,0.4714831574819982,0.3842042633332312,-0.7349414299242198,-0.6955464207567275,-0.6667571282014251,0.4453826076351106,0.8024336989037693,-0.5000271131284535,0.6435078317299485,-0.6408750922419131,0.5959743987768888,-0.45622314838692546,0.2806565733626485,0.8143427195027471,-0.8662952524609864,0.797421548049897,0.14713357714936137,-0.579426386859268,0.47077416628599167,-0.41854320047423244,-0.05179398413747549,0.42670904705300927,-0.417677687946707,0.20909412624314427,0.4165065442211926,0.6422625691629946,-0.656938171479851,-0.8446532227098942,0.4752970761619508,-0.7929564574733377,0.3861074624583125,0.32080217357724905,-0.8188185263425112,-0.630508687812835,-0.32515404047444463,-0.40348030207678676,0.8693716325797141,-0.7426220830529928,-0.4586015632376075,0.8073501838371158,0.479932785499841,0.606623631902039,0.7950476594269276,-0.36253430554643273,0.28515238501131535,-0.3676285189576447,0.5883125206455588,-0.9715745020657778,0.6061305091716349,0.15558859519660473,0.37713909801095724,-0.8538222946226597,0.11712826834991574,0.4972251644358039,-0.48375964956358075,0.2491388926282525,-0.5447278646752238,0.6943332296796143,0.578737345058471,0.7365038562566042,0.7007213900797069,-0.20898097520694137,0.9057409521192312,0.6930792015045881,0.9652413013391197,0.6216918593272567,0.7568224389106035,-0.6983912256546319,0.7567653595469892,0.9756358545273542,0.20718006696552038,-0.49278872553259134,0.5450171139091253,-0.5112482816912234,0.30749619845300913,-0.5407321155071259,-0.15544566232711077,-0.5877589657902718,0.6640978162176907,-0.3097735014744103,-0.21053087525069714,0.799173419829458,0.4698997074738145,0.7008157419040799,0.5526008722372353,-0.5807679467834532,-0.839271935634315,0.07468461571261287,-0.7015578681603074,0.643802082631737,0.8752774931490421,-0.45209003798663616,-0.7446126961149275,0.32260181894525886,0.3675029338337481,-0.5690104835666716,0.5046670059673488,-0.7319082072935998,0.023185027297586203,-0.06361829955130816,0.5694589810445905,-0.8196445577777922,0.33807369181886315,0.7016914142295718,-0.17039052629843354,0.6429673149250448,-0.5152146578766406,-0.8074011513963342,-0.4714625314809382,-0.09838576475158334,0.7893270421773195,0.12959819892421365,-0.2665873672813177,0.6560500906780362,0.21880037244409323,0.5730486419051886,0.15668587945401669,-0.8251754720695317,-0.6307532456703484,-0.15764297218993306,0.2495544827543199,0.7330697975121439,-0.29794878512620926,0.7989634550176561,-0.2000146247446537,-0.07041850360110402,-0.21243578055873513,-0.9464229955337942,0.18562579061836004,0.45873221289366484,0.07191152311861515,0.718810545746237,-0.04483974166214466,-0.9996144459582865,0.04692284343764186,0.5033236173912883,-0.4140274706296623,-0.722206306643784,0.483640456572175,-0.771097291726619,-0.9065331122837961,-0.30560240987688303,-0.6705854102037847,-0.6284524900838733,0.419438595417887,-0.5070769572630525,0.16578101459890604,0.4516576658934355,0.05364816915243864,0.7605941602960229,0.03768484527245164,-0.411289204377681,0.26877004420384765,0.13444701535627246,0.0403089988976717,0.429653387516737,-0.6150113050825894,0.23013551579788327,-0.683920054230839,0.9534531305544078,-0.5365656418725848,0.27839978598058224,0.6631716378033161,0.6924170744605362,-0.05941412877291441,-0.40603946801275015,0.0901051927357912,-0.5249493489973247,0.5039929845370352,-0.10119179869070649,0.8262676373124123,0.20951361162588,0.49509828677400947,-0.623154039029032,0.5370359825901687,0.6351839671842754,0.42080397671088576,0.7293514413759112,-0.5376893565990031,0.5133637366816401,0.991628716699779,-0.38044085586443543,-0.7492846786044538,0.7340155276469886,-0.12860163440927863,0.3579321256838739,0.34787833085283637,-0.510053554084152,-0.16700553940609097,-0.3048095600679517,0.21282795490697026,-0.759070495609194,-0.7543671000748873,-0.8030710523016751,0.3907902673818171,0.9999430854804814,-0.0058912355452775955,0.9975002524442971,0.47077652253210545,-0.7834050012752414,0.2585969758220017,-0.544177379924804,0.4278451041318476,-0.6295098979026079,0.3637668937444687,-0.9535775072872639,0.7440301198512316,0.47916253050789237,0.8941479348577559,-0.7524723620153964,-0.8126617786474526,0.9741277787834406,-0.8056897348724306,-0.07323841564357281,0.8214056231081486,0.3841159911826253,-0.5966838276945055,-0.6693483642302454,-0.8284473149105906,0.9730901853181422,-0.7787450742907822,-0.28874431550502777,0.8379833772778511,0.8257965431548655,-0.06866328045725822,-0.4833985762670636,0.21295300126075745,-0.07490781787782907,-0.13455232372507453,-0.32645102590322495,0.9339962154626846,-0.8826839528046548,0.8471607309766114,0.3111484716646373,-0.3026056154631078,-0.7077393298968673,-0.8336691302247345,-0.5993044325150549,0.4589565256610513,0.16931748390197754,-0.06815181160345674,0.2186785163357854,-0.3836167980916798,0.6090485649183393,-0.0031166509725153446,0.10876941587775946,-0.07080220244824886,-0.6118218302726746,-0.7732310155406594,0.6681516910903156,0.9023993830196559,-0.5008442252874374,-0.7068582195788622,-0.6689464426599443,0.24582774005830288,-0.7638945542275906,-0.09733479376882315,0.0025569768622517586,-0.8469260302372277,-0.7226719711907208,0.3384512630291283,0.34623675560578704,0.5399871454574168,0.17333590239286423,0.6147501314990222,0.06643246067687869,0.8738130913116038,-0.3183915885165334,-0.4676709631457925,0.9779815063811839,-0.9830836476758122,0.7020907611586154,0.8853528192266822,-0.9751657075248659,-0.4232695451937616,-0.9704888225533068,0.6648074043914676,-0.10071027418598533,0.11593158217146993,0.6101043778471649,-0.4282421371899545,-0.40972572239115834,-0.4500858481042087,-0.16985283512622118,-0.24856843566522002,-0.4617263055406511,-0.7879848186857998,0.6297262697480619,-0.9385976875200868,0.012807469815015793,-0.5285275364294648,0.07855418231338263,-0.3649718714877963,0.6043521417304873,-0.4478675848804414,-0.17706605745479465,-0.8853834792971611,0.6596266343258321,0.31357024516910315,-0.47072442062199116,-0.5794648774899542,-0.7155326940119267,0.05636429134756327,0.8588383034802973,0.7863941695541143,0.15455981250852346,0.7471792604774237,-0.5547801442444324,-0.7923394097015262,-0.10832425346598029,-0.11460225656628609,-0.4494537692517042,0.6444118386134505,0.4454794661141932,-0.11892238445580006,-0.22502813767641783,0.23259310517460108,-0.9235171028412879,-0.6265394100919366,0.4342399728484452,0.5962962186895311,0.08074537571519613,-0.7917816415429115,0.9278826550580561,0.6685150121338665,-0.6660121106542647,0.8456669002771378,-0.4624673151411116,-0.2648240178823471,0.3542751898057759,-0.013754603918641806,-0.14995364239439368,-0.6645253566093743,0.4157579489983618,-0.5769111714325845,0.14410356571897864,-0.545725935138762,0.4746315232478082,0.2781778508797288,0.5520536322146654,0.9018157576210797,0.9966922546736896,-0.641532520763576,-0.4947626767680049,0.19719701167196035,0.623545893933624,0.20054778410121799,-0.22321177832782269,0.6886682035401464,-0.2500700340606272,0.26685837330296636,-0.4077817336656153,0.6426223665475845,-0.012935073114931583,-0.9047214239835739,0.2067202772013843,-0.14479061728343368,0.6212183604948223,-0.687792609911412,0.9523567575961351,0.5614981479011476,0.25833423994481564,-0.7681079590693116,0.061724476516246796,0.9114989531226456,0.9997438723221421,-0.5159794157370925,-0.46565285557881,0.6161981029435992,-0.8088418352417648,-0.2202181937173009,-0.9307533693499863,0.865328602027148,-0.03171524638310075,-0.1531932009384036,0.4296149108558893,0.2960252962075174,-0.45055471593514085,-0.0482508665882051,0.31038656178861856,0.7522063069045544,0.6287466986104846,0.5982095352374017,0.2404773933812976,0.3712580297142267,-0.5768946069292724,-0.5687962789088488,-0.34889349061995745,0.6699257297441363,-0.601574117783457,0.589719251729548,-0.7282167002558708,-0.4773836792446673,0.8413562551140785,-0.11894220532849431,-0.6576402089558542,0.9793067914433777,-0.3580617345869541,0.556106039788574,0.2782783741131425,-0.3823973615653813,-0.48525795293971896,-0.14428299758583307,-0.607495114672929,-0.19681816082447767,0.7917503681965172,0.6215983079746366,0.4505447088740766,0.852164976298809,-0.39731252333149314,-0.7749851788394153,0.8795581380836666,-0.13691786350682378,-0.6395774949342012,-0.47364940447732806,-0.5323569816537201,-0.9267449690960348,0.9058955162763596,-0.8820712324231863,-0.016717784106731415,-0.8683584444224834,-0.4063164899125695,-0.8919092332944274,0.4587699817493558,0.7960154581815004,0.6624841778539121,-0.848680432420224,0.019724405370652676,-0.057048751041293144,0.8436919939704239,0.5835661101154983,0.5421902113594115,0.3502602558583021,-0.9355978341773152,0.7458934988826513,-0.9511884725652635,0.1668659057468176,0.4969330779276788,-0.6112480848096311,0.9898203033953905,0.9628845816478133,0.7335356622934341,-0.8111636182293296,-0.0841124071739614,-0.9142392524518073,0.16824976122006774,-0.7661007703281939,0.44433237705379725,0.7009929087944329,0.4567267969250679,0.5124730719253421,-0.240483152680099,-0.47626251773908734,0.093736179638654,-0.660015213303268,0.39921338157728314,0.20002839481458068,0.8186110188253224,-0.052167344372719526,0.36913100024685264,0.3142789895646274,-0.7070826473645866,-0.8336949604563415,-0.3566205045208335,0.3004315812140703,-0.042792154010385275,-0.5399634060449898,-0.8909111772663891,0.4649946028366685,0.5626913234591484,-0.45045026298612356,-0.10886620450764894,-0.17194187687709928,0.6795866494067013,0.9992000586353242,-0.18377575417980552,0.7953206985257566,-0.6738365567289293,0.014816903043538332,-0.9526446554809809,0.1744358786381781,-0.8052949700504541,-0.36824730038642883,0.8043216387741268,0.465544824488461,0.7191143278032541,0.7541043031960726,0.6615377892740071,0.9623342519626021,0.7422123774886131,0.7777674589306116,-0.5742811476811767,0.03849999653175473,-0.2415080568753183,-0.006787299644201994,0.8663248773664236,0.8183993962593377,-0.19030738342553377,0.731067908462137,-0.9153629429638386,0.8278463431634009,-0.5721192215569317,0.30435853032395244,-0.4836783870123327,0.9188803327269852,0.9780847821384668,0.03712485870346427,-0.8490598858334124,0.6432484746910632,-0.17671862710267305,0.5440975176170468,-0.9203755417838693,0.9304553703404963,0.055811936501413584,0.04245844855904579,-0.2886208542622626,-0.3455101363360882,0.39418491208925843,-0.7935984744690359,0.26185441110283136,0.524631324224174,-0.4096129322424531,-0.9742537140846252,-0.46204353822395205,0.3293179734610021,-0.6338893612846732,0.5271452656015754,-0.44636270217597485,-0.6615612111054361,-0.10862582270056009,0.33397625759243965,-0.9806242031045258,-0.5907214367762208,0.3009759015403688,-0.42103123711422086,0.5595426135696471,0.8455709242261946,0.9457514937967062,0.6894958899356425,0.29695674451068044,-0.7449823706410825,-0.17474146373569965,0.7603219063021243,-0.9441401744261384,0.46058025350794196,-0.7868725750595331,-0.7074935678392649,-0.42624643445014954,0.2836398761719465,-0.49987709801644087,-0.8733553313650191,-0.045677021611481905,0.36997096333652735,-0.9616007101722062,0.7874928810633719,0.2671886719763279,-0.7323600919917226,0.9728371459059417,0.28525654738768935,-0.5979494345374405,0.635888775344938,0.5506262402050197,0.9953917865641415,-0.45139177050441504,-0.6625952115282416,0.36973630683496594,-0.4227530215866864,0.12741036340594292,-0.09064915822818875,0.2948176604695618,-0.9348961692303419,-0.1560859656892717,0.0778542379848659,0.3135460461489856,0.6021540025249124,-0.6131476871669292,-0.7025001645088196,0.07624920317903161,-0.8167308201082051,0.5580407502129674,-0.44565115543082356,-0.5910087451338768,0.5174883538857102,-0.1938183018937707,0.43387730326503515,0.13973310962319374,0.1634987541474402,0.9395151757635176,-0.1873002448119223,0.288534062448889,0.02945348946377635,-0.3487622644752264,0.9219228397123516,0.9606114868074656,-0.9577807164750993,-0.9654192058369517,0.1941710188984871,-0.2205799175426364,0.9266083785332739,0.13411628222092986,-0.5574913257732987,-0.22157003683969378,-0.6877811788581312,-0.2417706334963441,-0.06286094663664699,-0.59453582810238,-0.15691694570705295,-0.13400076422840357,0.4182102964259684,-0.2871767468750477,-0.2846094504930079,-0.2077622627839446,0.2910183188505471,-0.32988141058012843,0.13045370625331998,0.34035210218280554,-0.112065140157938,0.08561062347143888,0.4155618050135672,0.7762523484416306,-0.6503635924309492,0.7724998057819903,0.27558396477252245,0.8018676824867725,-0.10930258268490434,-0.3212114004418254,0.2637646570801735,0.3554372568614781,0.3287207903340459,0.940585277043283,-0.1837717043235898,0.26549271726980805,0.6163460351526737,0.8615791997872293,0.17910621780902147,-0.9547307635657489,-0.757954022847116,-0.44513576477766037,-0.5980482487939298,-0.35218534572049975,0.5450792349874973,-0.502181907184422,0.40554324071854353,-0.541351365391165,-0.41719135316088796,0.5768432016484439,-0.9495387151837349,-0.8173170327208936,0.9211841658689082,0.3145691934041679,-0.6420102035626769,0.7784044188447297,0.47303167823702097,-0.033814928494393826,-0.09579275967553258,0.8277047607116401,0.9430999732576311,-0.33379346411675215,-0.1902282447554171,-0.3985772770829499,-0.7990452935919166,-0.22669078968465328,-0.3570327628403902,-0.8795829080045223,0.9543208656832576,-0.7393963248468935,-0.7398724667727947,0.34366926550865173,0.024535859003663063,-0.9635049751959741,-0.9733911408111453,-0.6729160766117275,-0.8142773206345737,-0.05400658678263426,0.5431606285274029,0.032101106364279985,-0.0009729540906846523,0.0625626971013844,-0.10987718077376485,-0.332387407310307,-0.7582512157969177,-0.01639848994091153,0.20970484660938382,-0.25710285315290093,0.5303123882040381,-0.011412352323532104,0.6438284832984209,0.5136481667868793,0.886329690925777,0.8465713728219271,-0.272461099550128,0.20329951727762818,-0.6689916173927486,0.26540568517521024,-0.841009849216789,0.22742397105321288,0.3795732273720205,0.7599952360615134,0.9650914878584445,-0.09632997307926416,0.23721587751060724,-0.7494619307108223,-0.2030856437049806,0.0432387781329453,0.06699135107919574,-0.35591365210711956,-0.2641474432311952,-0.07769389264285564,0.23587987339124084,0.8050430943258107,0.4108908814378083,-0.43680034624412656,0.009237335529178381,-0.4500134214758873,0.40186769468709826,-0.9703243244439363,-0.8583148801699281,0.5748467855155468,-0.42608377849683166,-0.34634431544691324,0.3683276893571019,0.05540860863402486,-0.24437448009848595,0.028117823880165815,-0.44089398765936494,-0.4161061104387045,0.825013279914856,-0.5525838388130069,-0.6396921598352492,0.15538246557116508,0.3463886990211904,0.20390532119199634,-0.4426746997050941,-0.9843930467031896,0.05887767532840371,-0.4265397787094116,-0.8095242450945079,0.9753791224211454,-0.1511234096251428,0.6989730983041227,-0.4285393748432398,0.8359730914235115,0.6909273215569556,0.8111132164485753,0.7922745826654136,0.05364318285137415,-0.03577341418713331,0.4433217733167112,0.038005152717232704,0.2867880202829838,0.6220684358850121,-0.12423978606238961,0.21301350696012378,-0.02739597111940384,0.4130506534129381,-0.22387034026905894,0.7264973605051637,-0.3361422335729003,0.6069260779768229,-0.6358166234567761,0.5275171766988933,-0.5483718011528254,0.38510595029219985,-0.8556114472448826,-0.3870636010542512,-0.7260068324394524,-0.20183729846030474,-0.6879094485193491,0.04780952353030443,0.6384831806644797,-0.37474163668230176,0.7962793917395175,0.4629914755932987,-0.2840345152653754,0.9217135515064001,0.097557932138443,-0.5495466366410255,-0.5748670040629804,0.45611805794760585,-0.8085968713276088,-0.5679397759959102,0.9515063632279634,0.818465125747025,-0.9748293911106884,0.6432243688032031,0.8528852723538876,-0.07574012270197272,0.6916950633749366,-0.5567500884644687,0.6904821540229023,-0.32380230398848653,0.8132317825220525,-0.6749136615544558,-0.8585924729704857,-0.399739159271121,-0.8201270750723779,0.3113141325302422,0.1458826782181859,-0.5252246046438813,-0.5693147438578308,-0.020210978109389544,0.7326172282919288,-0.7151108491234481,-0.4809035691432655,-0.09406223893165588,0.8658113381825387,-0.9095474258065224,-0.16217948915436864,-0.23521611653268337,-0.5462481416761875,-0.9242122313007712,-0.48045404767617583,-0.9160153502598405,0.8968645576387644,-0.292188776191324,-0.9608446056954563,-0.9667774047702551,0.6333270017057657,0.8746915240772069,-0.9179718745872378,-0.8361935168504715,-0.4350737393833697,0.7883752691559494,0.8189419526606798,-0.8895140602253377,0.7969493959099054,-0.06826135516166687,-0.15713579347357154,-0.14629900641739368,0.05139059852808714,-0.4951501158066094,0.16977977938950062,-0.9738219142891467,-0.3790763388387859,-0.037870367523282766,-0.00596852321177721,-0.6166151030920446,0.12892498262226582,-0.5324791898019612,-0.18232718063518405,-0.48405961599200964,-0.21505928970873356,-0.16068411152809858,0.08126883581280708,-0.9210900538600981,-0.1060404721647501,-0.7530739670619369,-0.6203438472002745,0.3067644857801497,-0.8699590140022337,0.24552824534475803,-0.8136666496284306,0.3811198165640235,-0.9020886933431029,-0.25622026855126023,0.9730417975224555,0.4368425221182406,-0.676615631673485,-0.8429521461948752,0.862008960917592,0.2732280711643398,0.823446111753583,-0.16200609551742673,0.7051490237936378,-0.23174205981194973,-0.17828255239874125,-0.37081444542855024,-0.33841110253706574,-0.14376631332561374,0.6019690483808517,-0.39249434415251017,0.4707576809450984,0.36745978193357587,0.050795110873878,-0.9173780889250338,0.7998599638231099,-0.36089989822357893,-0.6180629814043641,0.7112858165055513,0.2017654376104474,0.2267522788606584,-0.7655092347413301,-0.5142518565990031,0.8130286210216582,-0.17775619449093938,0.6339493161067367,-0.4449221706017852,-0.327731111086905,-0.0594261703081429,0.017322389874607325,0.2603076724335551,-0.49530168110504746,0.20810555899515748,-0.08622900955379009,-0.9117428255267441,-0.8629839993081987,-0.3663419778458774,-0.12268247082829475,-0.3170765726827085,-0.3862321493215859,0.7036608662456274,-0.5681842393241823,-0.7452214728109539,0.4240084863267839,-0.8568758522160351,-0.488614889793098,0.8031466607935727,-0.03536058263853192,0.4402580442838371,0.4339257460087538,-0.536929807625711,0.414496511220932,-0.007813760079443455,-0.9273589211516082,0.2946219719015062,0.5312387100420892,-0.2647870387881994,-0.8506910093128681,-0.6461292668245733,-0.541742111556232,-0.2062846296466887,0.40902531519532204,0.9921232485212386,0.7812098707072437,0.8225890332832932,-0.9901915341615677,-0.6967795803211629,0.8347689411602914,-0.0364428642205894,-0.6312197423540056,0.6300573563203216,0.6629781918600202,0.7281297463923693,0.46228587813675404,0.3216001600958407,0.225672772154212,-0.7681986303068697,-0.18394218478351831,-0.05386609677225351,-0.9823212698101997,0.7499709259718657,-0.40556218987330794,-0.2828436638228595,-0.20978781348094344,0.9495535013265908,0.7278253673575819,-0.9567312831059098,-0.9265883145853877,0.5115833152085543,-0.1596554620191455,-0.1467312080785632,-0.5969836078584194,0.3795430329628289,0.17689585592597723,-0.5941787539049983,0.8782431320287287,0.5292062666267157,-0.14724146155640483,-0.6809338051825762,-0.1258000540547073,-0.3401771606877446,0.4495391589589417,0.7181684616953135,0.30204847594723105,0.26480009220540524,0.7013753857463598,0.7419189843349159,-0.8677130010910332,0.8225123463198543,0.7835761276073754,0.6765038464218378,0.934014786966145,-0.5819086330011487,0.6767000462859869,-0.8119330713525414,-0.06790507212281227,-0.9097172720357776,-0.03724865289404988,-0.7955928645096719,-0.20031079091131687,-0.7096630996093154,0.26932684471830726,0.19559420319274068,0.7881420743651688,-0.660615504719317,0.057933453004807234,0.536469204351306,0.38277450297027826,0.3434160053730011,0.041649149265140295,-0.7856708616018295,0.7058311202563345,0.4578949911519885,0.29792429972440004,0.5681444904766977,-0.7803576136939228,-0.8691285084933043,0.16902669938281178,-0.6755735967308283,0.7429429274052382,0.7221516421996057,-0.5439633969217539,-0.8244916293770075,-0.013504651840776205,0.31057504238560796,-0.5557626029476523,-0.5201105517335236,0.4036826458759606,0.8834361745975912,-0.6374925663694739,0.5308366459794343,-0.045232787262648344,-0.6996907279826701,0.8970588687807322,0.6672343858517706,0.28834106447175145,0.9698629630729556,0.6335888239555061,-0.6086766547523439,-0.1693718838505447,0.7968454798683524,-0.7450829651206732,0.009228488430380821,-0.3324141725897789,0.6205622856505215,0.4671894353814423,0.00678008608520031,-0.895764172077179,0.8108917125500739,0.7769585708156228,0.20971314515918493,-0.9465685817413032,-0.4112430396489799,-0.7574659823440015,0.875201947055757,-0.8338411636650562,0.294025142211467,-0.21260516857728362,-0.6749652340076864,0.38872390473261476,-0.47968375450000167,-0.548430364113301,0.47486509662121534,0.2800312899053097,0.6015219031833112,0.19781282218173146,-0.36313778394833207,0.7700900905765593,0.014072758611291647,0.4326894572004676,-0.8388837487436831,-0.9008181025274098,-0.9168900749646127,0.5929069062694907,-0.7849160660989583,-0.5865157432854176,-0.4750486402772367,-0.8879026705399156,0.18058053590357304,0.3825684543699026,0.19174647564068437,-0.7587388125248253,0.3484686459414661,0.19488117331638932,-0.25844147708266973,-0.8720118380151689,-0.14821970369666815,-0.2594751347787678,0.15464426996186376,-0.47503769444301724,-0.42715143831446767,0.7574725965969265,-0.5954440697096288,0.4412718522362411,0.5667009865865111,-0.10005037905648351,-0.25682208640500903,-0.25682289618998766,0.994638480246067,0.8664510445669293,-0.24902615882456303,0.7299344809725881,0.0634693237952888,-0.0319188367575407,-0.02327055437490344,-0.7147600990720093,-0.42594090569764376,-0.44260587077587843,0.39183621341362596,-0.9522007433697581,-0.20465831365436316,-0.9178586713969707,-0.07978718401864171,-0.8204259928315878,0.5462776497006416,0.530328594148159,-0.13508748775348067,-0.9215943533927202,-0.7149933599866927,-0.12581553123891354,0.6847031968645751,0.23845278657972813,-0.7947897519916296,-0.8895185962319374,-0.9329695645719767,0.3092436296865344,-0.3030930198729038,-0.504562565125525,0.4288099459372461,-0.8793968292884529,0.0570402005687356,0.3538516405969858,0.9010368511080742,0.32458119140937924,-0.676046296954155,-0.003583182580769062,0.8539012498222291,0.7980732396245003,0.7789685572497547,0.5450477339327335,0.8355467603541911,0.5650255042128265,-0.08582945540547371,-0.40615192940458655,0.47722743544727564,-0.589250314515084,0.14329910650849342,-0.7258131671696901,0.5017500682733953,0.5151667729951441,-0.7602753997780383,0.33207826130092144,-0.2520898967050016,-0.30076132994145155,0.4174727979116142,-0.04600613517686725,-0.09381467057392001,-0.7722131139598787,-0.6205236772075295,0.6424889792688191,0.1974065718241036,0.7429115627892315,-0.9356217421591282,-0.4846386592835188,-0.20520233968272805,-0.5885026105679572,-0.29152746917679906,-0.8252593418583274,-0.9402589295059443,0.19046160019934177,0.7275291564874351,0.5100591210648417,0.17706161132082343,0.22597267339006066,0.8909099046140909,0.9093380030244589,0.05403975676745176,0.714005874004215,-0.2386596640571952,-0.7815055423416197,0.4241937939077616,-0.7263925322331488,-0.0023383572697639465,0.4903810597024858,-0.6335849626921117,-0.7112660007551312,-0.23425983637571335,-0.7619467722252011,-0.6143632042221725,0.1497663576155901,0.9451075056567788,0.6388582736253738,-0.8818158698268235,0.9579909723252058,-0.059906757436692715,0.8878672127611935,0.5158006497658789,0.6778360521420836,0.18876707693561912,0.31957732466980815,0.8092113081365824,-0.5996599150821567,-0.3613438536413014,-0.157335395924747,-0.9037003675475717,0.05245959199965,-0.5807168176397681,0.3450307045131922,0.727705295663327,0.5686017558909953,0.7136203092522919,-0.7661626939661801,-0.5446622539311647,0.4537014262750745,-0.46749829733744264,-0.353843096178025,0.4299933253787458,-0.5399959431961179,0.42901857243850827,0.06880821287631989,-0.015556462109088898,0.7061246572993696,-0.4790793261490762,0.010617855936288834,0.9353717262856662,-0.9538507969118655,-0.24454749235883355,-0.7619443517178297,-0.8387597971595824,-0.1804137509316206,-0.4543571132235229,-0.44409427139908075,0.9890889790840447,-0.5963892717845738,-0.39163977140560746,0.5215083844959736,-0.18630248587578535,-0.8901193207129836,-0.08078814903274179,0.18726771045476198,0.15726444637402892,0.16956466576084495,-0.14053125027567148,-0.19077060976997018,0.18491278355941176,0.34681104868650436,-0.32397871976718307,-0.30344541696831584,-0.10926061775535345,0.8895302428863943,-0.405842503067106,-0.489785120356828,0.2770868237130344,0.10427180491387844,-0.47978239972144365,-0.5849423808977008,-0.26937718829140067,-0.040092708077281713,0.3333418914116919,-0.05765029136091471,0.5758534534834325,0.5765445115976036,0.8420414058491588,-0.8692430327646434,0.20852258754894137,-0.867794759105891,-0.2986957370303571,-0.8677366334013641,0.8396744844503701,-0.9084397316910326,0.1350685190409422,-0.7965768189169466,0.917539571877569,0.6406789366155863,-0.05716132139787078,0.06695407489314675,-0.19686438655480742,-0.9846796444617212,0.03942984249442816,0.4691295581869781,-0.37899791542440653,-0.03277254058048129,-0.5926421754993498,0.7106821327470243,-0.36836923146620393,-0.012520323507487774,0.7216697535477579,-0.2830119403079152,0.5456031081266701,0.7809727126732469,-0.18902166187763214,0.39165708096697927,-0.7502233539707959,-0.3838611915707588,-0.3411271064542234,-0.8886401820927858,0.9029471063986421,0.13396154157817364,-0.5990481306798756,-0.5398559756577015,-0.4675259836949408,-0.6576139484532177,0.6697319694794714,0.25164191238582134,0.45092498091980815,-0.7464022468775511,-0.5488615236245096,-0.9407301680184901,0.4132902640849352,-0.8228139556013048,-0.5400245473720133,0.39979948196560144,-0.7074980880133808,0.17660741647705436,-0.9247872619889677,0.35275797732174397,-0.16008012695237994,0.389505201485008,-0.025700031779706478,-0.2314113355241716,-0.1822839886881411,0.620696846395731,0.5923770302906632,0.5928616560995579,-0.5773288058117032,0.4485002658329904,-0.44079993246123195,-0.6099536251276731,-0.8975464766845107,-0.4171079210937023,0.559098313562572,-0.4958611521869898,-0.7231089062988758,-0.9990632315166295,-0.6586827854625881,0.2593036317266524,-0.68125085439533,-0.09883959358558059,-0.23977527162060142,-0.2994051775895059,-0.7920516510494053,0.6114910924807191,0.70445621246472,-0.022577759344130754,0.016976607032120228,-0.5896962392143905,0.41357411397621036,0.714852811768651,0.7459067301824689,0.09574914071708918,-0.3089860389009118,-0.7375155934132636,0.1951997154392302,0.6753428876399994,-0.9162498228251934,-0.8575484664179385,-0.3357241149060428,-0.3144505391828716,-0.4170626509003341,-0.7523780344054103,-0.8937811264768243,0.5320250713266432,0.03950909851118922,-0.2704742979258299,0.1396796223707497,-0.31969697773456573,-0.1383041781373322,-0.4981533186510205,0.7834171326830983,-0.3392090774141252,-0.18322217976674438,-0.5445950776338577,-0.7943421015515924,-0.3741312623023987,-0.4780701668933034,0.11471011163666844,-0.7078578416258097,-0.5249622543342412,0.32551182294264436,0.08219597581773996,0.995558915194124,0.685561703518033,-0.5336394058540463,-0.9611860802397132,-0.02894909353926778,-0.8523009740747511,0.3252255138941109,0.6850762791000307,-0.44520663376897573,0.30439354619011283,-0.04300211509689689,-0.3505023969337344,-0.07794749643653631,-0.04109388496726751,0.4836536394432187,-0.8059847634285688,-0.4460795954801142,0.6068505668081343,0.7491874499246478,-0.9253088319674134,-0.35889815352857113,0.08892770577222109,-0.5892793727107346,-0.6428865352645516,-0.5814663213677704,0.07339893002063036,0.9847376178950071,-0.204093711450696,0.578922662883997,-0.8988427971489727,-0.41427710093557835,0.94745202222839,0.6026032632216811,-0.9653209047392011,-0.287246348336339,-0.29939755285158753,-0.6205912665463984,-0.1664978014305234,-0.13842969899997115,-0.4479773915372789,-0.8216299978084862,-0.5343504259362817,-0.905620354693383,-0.6580116455443203,-0.7971260198391974,-0.6648858860135078,0.5630924291908741,-0.8458407311700284,0.5915842819958925,-0.5817443211562932,-0.96627565799281,-0.9649282624013722,-0.8500408055260777,-0.8719450668431818,0.7253632969222963,0.8130217744037509,0.4116390594281256,-0.46291768457740545,-0.359919888433069,0.0008500595577061176,0.2943587671034038,-0.8616284909658134,-0.9614320737309754,0.06581056723371148,0.9952062242664397,-0.7192473784089088,-0.18588935490697622,-0.09055099915713072,-0.21441668877378106,0.8604680234566331,-0.21669082436710596,-0.289020755328238,-0.30386766185984015,0.7327643148601055,-0.7612624745815992,0.2672577598132193,-0.13192225201055408,0.3167744055390358,-0.13872249983251095,0.7480262410826981,-0.6456899507902563,-0.3654174576513469,0.39494195114821196,-0.5292930132709444,0.5182332834228873,0.6167665258981287,-0.9361439123749733,-0.05272427760064602,0.7239703699015081,0.6706789382733405,-0.5204699160531163,0.9293442317284644,-0.3797632623463869,-0.9550985330715775,0.06276123831048608,-0.22901146998628974,0.4403017512522638,0.42870279774069786,0.504350608214736,0.489808133803308,0.06936333840712905,-0.16522838966920972,0.6076962780207396,0.26028715819120407,0.441509076859802,0.018528383690863848,-0.46435470087453723,-0.9514580257236958,-0.2510106205008924,0.012574253603816032,0.8288537180051208,-0.918779834639281,-0.8811883176676929,0.19886014889925718,-0.7435381771065295,-0.4368745181709528,0.9493126277811825,-0.9100327682681382,0.6407717787660658,-0.18911420414224267,-0.5259461221285164,0.38557160971686244,0.6931051951833069,-0.8210537782870233,0.7737697432748973,0.6739479773677886,0.7723157689906657,0.9338206802494824,-0.793697667773813,-0.8859225325286388,0.7847618754021823,-0.4691616748459637,0.2920834138058126,0.32596599450334907,0.2891782633960247,-0.3787930654361844,-0.5887571536004543,0.10376832960173488,-0.16321422858163714,-0.596849502529949,0.9356524483300745,-0.9422489404678345,-0.3768833368085325,-0.4679806684143841,0.2390435398556292,0.6696809916757047,-0.6369376638904214,-0.8174481266178191,-0.9785686526447535,-0.9078398272395134,0.40642603440210223,-0.6781288799829781,0.03590032458305359,-0.24882015120238066,0.5532593210227787,0.7247535637579858,-0.3808059375733137,0.6249543065205216,0.9413223313167691,-0.8240217925049365,-0.03398066433146596,0.2867334703914821,-0.7755469693802297,-0.23359327716752887,0.7990592606365681,-0.8957186238840222,-0.5452427086420357,0.5432644481770694,-0.7478787414729595,0.8503761482425034,0.5670536938123405,0.259976371191442,0.7121002785861492,0.9917231588624418,0.2877151076681912,-0.8397802929393947,0.8875923999585211,0.7063186005689204,0.6560113863088191,0.019772240426391363,0.021708437241613865,-0.676745152566582,0.26653478713706136,0.9674469591118395,-0.586106744594872,-0.6892681559547782,0.16584045346826315,-0.7135575758293271,0.4779932997189462,0.34535577334463596,0.4702070550993085,0.5189546844922006,0.614124795421958,0.565119344741106,0.6395028680562973,0.8882600436918437,-0.3888305174186826,0.7459093569777906,-0.32321714190766215,-0.8264419143088162,-0.07439930969849229,-0.7370271533727646,-0.6474606618285179,-0.6227696449495852,-0.03158911224454641,0.3524969038553536,-0.5515626850537956,-0.17037838883697987,0.8127807513810694,-0.35237054573372006,0.8407150730490685,-0.18335775565356016,0.09142318880185485,-0.5203868229873478,0.9246126026846468,0.47335554100573063,-0.39630357595160604,-0.7084620394743979,-0.07244122680276632,-0.6635326282121241,0.1499240742996335,0.4812141554430127,0.42509214859455824,-0.05282784765586257,0.560640602838248,-0.31266995891928673,0.039131380151957273,0.9271536809392273,-0.6313888826407492,0.05942909233272076,0.577294360846281,0.1698142788372934,0.2658509146422148,0.947935753967613,0.28515784768387675,0.031963417772203684,0.7937687528319657,-0.9048673305660486,-0.780231652315706,0.8382429401390254,0.8277614107355475,0.7456101812422276,0.7684188694693148,0.29472506837919354,0.0015592747367918491,0.4076701425947249,-0.2676873132586479,-0.08384507289156318,0.7622847277671099,0.991049446631223,-0.35342128155753016,0.7331250072456896,-0.0036232187412679195,-0.938831933774054,0.7411554283462465,-0.584823785815388,0.4765453217551112,-0.6975075383670628,-0.3906837245449424,-0.1286045666784048,-0.8825874608010054,-0.5538203660398722,-0.87162722973153,0.22948429360985756,0.538250160869211,0.6007641605101526,0.4276454020291567,-0.49157842760905623,0.6812841529026628,-0.6498083509504795,0.5858961958438158,0.11834809836000204,0.8033459568396211,-0.7079591662622988,0.18814025120809674,-0.16206090338528156,0.7520178193226457,-0.740197463426739,0.310281440615654,0.1825579064898193,0.5222564055584371,0.1007400518283248,0.6402791440486908,-0.9951935415156186,-0.11070458358153701,-0.2850820883177221,-0.0626974101178348,-0.015517217107117176,-0.6431882348842919,0.947592796292156,0.6832245560362935,-0.7864487641490996,-0.3610955411568284,0.4015416377224028,-0.9489063182845712,0.8900101613253355,0.8822981319390237,-0.5300631183199584,0.678450935985893,0.7039949237369001,0.44577759597450495,-0.9680325416848063,-0.4213176346383989,0.8085215669125319,-0.7446950189769268,0.8326015900820494,-0.39732987293973565,-0.6795559506863356,0.24806127697229385,0.008418810553848743,-0.9101660740561783,-0.2806857945397496,0.03360075131058693,-0.47987615410238504,0.7803090834058821,-0.9521557344123721,0.9787755985744298,-0.442013003397733,-0.2632544180378318,0.8858333737589419,-0.22838375624269247,0.8942831745371222,-0.008361474145203829,-0.6332297627814114,0.007189471740275621,0.45211765356361866,-0.2329353941604495,-0.6534257200546563,-0.23694292875006795,-0.3157678721472621,-0.7510563591495156,-0.5998679427430034,-0.2428589160554111,0.5363882668316364,-0.41251676296815276,0.2637021695263684,0.11018863739445806,0.42617117846384645,-0.7370241926982999,0.6512528485618532,0.35861831111833453,-0.7508666720241308,0.2834283644333482,0.8751517571508884,-0.7825746037997305,0.7179338498972356,-0.7468982492573559,0.5903517231345177,0.0926705184392631,-0.11603400483727455,-0.984903687145561,0.41458343202248216,-0.6446795482188463,0.5979416696354747,0.45356613164767623,0.48876950703561306,0.39324910566210747,0.15839653043076396,0.018348018638789654,0.2871829685755074,-0.2347038872539997,0.5552124800160527,0.893101864028722,0.4086640467867255,-0.6502498225308955,-0.5633276426233351,0.7486364622600377,-0.48975947173312306,0.7328729596920311,-0.26057769637554884,0.5527227711863816,0.6631376724690199,-0.7014499413780868,-0.4464546083472669,-0.7576649012044072,0.48613773426041007,0.33883532229810953,-0.8517596987076104,0.13140814285725355,0.5390358963049948,-0.6116589051671326,-0.4836046868003905,-0.1581897963769734,0.6579391499981284,-0.3708955408073962,-0.4255161629989743,-0.1334043168462813,0.7681034337729216,0.28725395118817687,0.7461278084665537,-0.012497490271925926,0.6006876663304865,-0.46253048069775105,-0.9351400560699403,-0.4470633319579065,0.46907391818240285,-0.7783720274455845,0.1670881318859756,0.9214964187704027,-0.9437447246164083,-0.49388287821784616,0.6690837405622005,-0.09908021753653884,-0.725175844039768,0.5607824646867812,-0.33416691701859236,0.06164700258523226,-0.08394986856728792,-0.6267451164312661,0.12345616659149528,-0.4709548815153539,0.1655766014009714,0.4839571141637862,-0.4952678410336375,0.6087133223190904,0.5024033952504396,-0.6944846720434725,0.8978919596411288,-0.29093509865924716,0.6215601479634643,-0.6961731743067503,0.1326982108876109,-0.33448972227051854,-0.9365417780354619,-0.8685635016299784,0.5980038773268461,0.5793546051718295,-0.5505263614468277,-0.3760478007607162,-0.45729283802211285,0.41759156715124846,-0.3691628025844693,-0.5824238783679903,0.543873893097043,0.2470298376865685,-0.5591245945543051,0.5635133227333426,0.18988520000129938,0.7131704576313496,-0.1339901047758758,-0.9419817361049354,0.4038409832865,0.4192517860792577,-0.5617431350983679,-0.5967800850048661,0.536129554733634,-0.44715789519250393,-0.594083197414875,0.38618012610822916,-0.6877881926484406,-0.6072482857853174,-0.014195424038916826,-0.6373235401697457,0.053118097595870495,-0.3139298199675977,-0.13256691256538033,0.383315515704453,0.6344333691522479,-0.662715642247349,-0.012263558339327574,-0.6388230700977147,-0.23603652138262987,0.504734069108963,0.47093080217018723,-0.5821967381052673,-0.013419105671346188,-0.6200624443590641,0.6884197210893035,0.09456648677587509,-0.6163686262443662,-0.19359760265797377,-0.8545450381934643,-0.3538377517834306,0.48376849154010415,0.13758473051711917,-0.28471350157633424,0.5103365941904485,-0.9409792693331838,0.40090786339715123,0.34025907004252076,-0.5857678209431469,0.5135081042535603,-0.13260290026664734,-0.9688022439368069,-0.5957812243141234,-0.6015915186144412,-0.06870696321129799,0.602884728461504,0.3356609814800322,-0.6888849609531462,0.8069889699108899,0.2099645296111703,-0.9939810293726623,0.1681893290951848,-0.7188790775835514,0.8812218992970884,-0.9559354013763368,0.8891385877504945,0.24889949476346374,-0.22227154998108745,-0.1673002834431827,0.8454109476879239,0.5950425788760185,-0.07535965600982308,-0.4872243981808424,0.8110199803486466,0.3693886389955878,-0.23840542789548635,0.7419095546938479,0.4634553990326822,-0.807411378249526,0.02086461940780282,-0.25951477931812406,0.7412451305426657,-0.6842710594646633,0.0513166687451303,-0.9129794579930604,-0.23603270528838038,-0.23301448905840516,0.5307516474276781,0.14962405851110816,0.4766762051731348,-0.1878568478859961,0.776265375316143,0.7498898538760841,0.03983916435390711,0.08882893389090896,-0.33866187604144216,-0.533991202712059,0.9339292827062309,-0.3410824751481414,0.1297228909097612,-0.512746571097523,0.042751121800392866,-0.19247786328196526,0.49745996482670307,-0.35625603049993515,-0.4349418473429978,0.7513705398887396,-0.6679671034216881,-0.18966555735096335,-0.8505364400334656,0.7328373827040195,-0.5325276795774698,-0.016905181109905243,-0.8531575719825923,-0.8325226060114801,0.04258140781894326,-0.21104002417996526,-0.49732482666149735,0.43607426108792424,-0.36779923317953944,0.27337037585675716,0.4961294988170266,-0.7895270502194762,0.03658638149499893,0.7310283645056188,-0.21035272674635053,0.034429089166224,-0.03998649679124355,-0.9142709872685373,0.9875408466905355,-0.40626496775075793,-0.338219256605953,0.1979808947071433,0.01006949320435524,-0.7621956802904606,-0.9489523167721927,-0.5487039191648364,0.010973003227263689,0.007487419061362743,0.059543438255786896,0.1400976348668337,0.6649117325432599,-0.3075571786612272,0.7515901913866401,0.3940752577036619,0.3662252970971167,-0.8057312462478876,0.40840668929740787,-0.372936453204602,0.5970524144358933,0.8061292804777622,0.6682413155212998,0.19918861985206604,0.5028677908703685,-0.43622220680117607,-0.8005171800032258,-0.13934288173913956,-0.5442793471738696,-0.7939556585624814,0.9442960238084197,0.39210756262764335,0.5687578530050814,0.7761675561778247,-0.3555632261559367,0.023176082875579596,-0.7982305116020143,0.09172101365402341,0.7885436019860208,0.21452014334499836,0.3862003623507917,0.11524557741358876,-0.5383942164480686,-0.03270022664219141,0.7881220551207662,-0.2389839654788375,-0.13477384205907583,-0.3270747000351548,0.22263732319697738,0.2045382740907371,-0.8299282444640994,-0.7583250068128109,-0.2533329166471958,-0.6302361758425832,-0.8281005625613034,0.8081730813719332,-0.806727641262114,0.7426468194462359,0.8089868579991162,0.09931786637753248,-0.7572301193140447,-0.024252858944237232,0.3320489935576916,-0.25496750231832266,-0.5074076042510569,-0.7772842338308692,-0.3034515157341957,-0.9148052269592881,0.8837967873550951,0.5353987845592201,0.20317999087274075,0.7323922454379499,0.971403147559613,0.753394213039428,0.5422426559962332,-0.8105235155671835,-0.5878990422934294,-0.8593016215600073,0.8442616015672684,-0.0432139472104609,0.9460444315336645,-0.11741512222215533,0.8479475229978561,-0.9768628082238138,-0.423875973559916,-0.42638435820117593,0.04013756336644292,-0.05960003612563014,-0.1231276667676866,-0.6413293150253594,-0.9187221243046224,0.23769927071407437,0.2370371613651514,0.6112853963859379,-0.914233026560396,0.8572449502535164,0.6318059014156461,-0.814153122715652,-0.2943881368264556,-0.3145457152277231,-0.7368706814013422,0.7794714099727571,-0.8320892201736569,0.9027302642352879,-0.4163550757803023,-0.5935275433585048,0.03576425928622484,-0.9394464655779302,-0.26314856531098485,-0.36372879706323147,0.3630133280530572,0.44711386086419225,-0.6015819581225514,-0.5845926250331104,0.9289807118475437,-0.896550202742219,-0.7406627181917429,-0.5480944919399917,0.7917817928828299,0.5778607157990336,-0.9357127822004259,0.5589887164533138,-0.2195952725596726,-0.6123743229545653,-0.6483375644311309,-0.5090919230133295,0.6470506102778018,-0.1398903108201921,0.6509889317676425,-0.28956859605386853,0.29160560900345445,-0.09369761263951659,0.367640130687505,-0.8492402448318899,-0.7203038344159722,-0.5736645562574267,-0.49329204531386495,-0.4950785911642015,-0.08244879404082894,-0.8634711946360767,-0.07762809051200747,0.8531829593703151,-0.8051310894079506,0.9942728350870311,0.5985891981981695,-0.483272073790431,-0.6258948747999966,0.3198818787932396,0.06822495767846704,0.3420667639002204,-0.9155817716382444,0.639948156196624,-0.3389628906734288,-0.8155213985592127,-0.6986833889968693,0.04863552050665021,-0.4193551349453628,0.8603719738312066,-0.0467022443190217,0.20326165668666363,0.3814047258347273,0.20938068721443415,0.40344185288995504,-0.20881418697535992,0.8436750555410981,0.9479410974308848,0.35189376259222627,-0.2331434302031994,-0.0758337234146893,-0.11379561806097627,-0.6745202420279384,0.5100731984712183,-0.8523995354771614,-0.791442982852459,-0.030785472597926855,-0.06319220503792167,0.9523323704488575,-0.6411974621005356,-0.015850095078349113,0.31417173566296697,0.05165004823356867,-0.3076443010941148,0.6311110616661608,0.45733974128961563,-0.8987975316122174,-0.5206145420670509,0.9651621547527611,-0.03044367441907525,-0.33938113786280155,0.7597692324779928,0.10996661987155676,0.8296411731280386,0.44762515835464,-0.25220591854304075,0.3179687443189323,-0.5967863691039383,0.10175795946270227,-0.04771214444190264,0.6339436713606119,-0.4816170050762594,-0.09472223743796349,0.12836555019021034,-0.6270300806500018,0.034922363702207804,-0.8921984229236841,0.5213360814377666,-0.4212433909997344,0.33518277248367667,-0.28285495890304446,0.3131109783425927,0.9864659900777042,-0.1823059692978859,-0.461928132455796,-0.6925524873659015,-0.31297415820881724,0.6551834624260664,-0.23756724037230015,0.6790287741459906,0.9718883982859552,0.9348437073640525,-0.6116732554510236,-0.2288593864068389,-0.989852761849761,-0.7045223917812109,-0.46833809232339263,0.0401755184866488,-0.3272029487416148,-0.7515220120549202,0.0364063149318099,-0.008737690281122923,0.6488747256807983,0.7663922687061131,0.06494079437106848,0.05781998950988054,0.22015996696427464,0.45082829194143414,0.8957061464898288,-0.6415355452336371,-0.17982371896505356,0.4376072776503861,0.9500267347320914,-0.6110482309013605,0.8305709175765514,0.9218303374946117,-0.9813576433807611,-0.7145684654824436,0.8829331663437188,-0.4334183712489903,0.023638673592358828,0.48511265963315964,-0.6103831436485052,-0.5411797221750021,0.9784138603135943,0.4397298158146441,-0.9790985770523548,0.3179431241005659,0.055562516674399376,0.8831680375151336,-0.19337361911311746,0.5251521761529148,0.45384602108970284,-0.48164724418893456,-0.33964387886226177,-0.48054014844819903,0.47451942740008235,0.2828560909256339,0.762217786628753,-0.5464839511550963,-0.9443159480579197,0.21042123157531023,0.24650558084249496,-0.8601112584583461,-0.48245625058189034,0.8407664215192199,0.5479221451096237,-0.3370614545419812,-0.1268480308353901,0.27012398140504956,0.9803892578929663,-0.030165642965584993,-0.6947977906093001,0.5878455429337919,-0.28044427279382944,0.8493418083526194,-0.9874186483211815,0.3017400400713086,-0.7368584452196956,-0.016318260692059994,-0.5664245379157364,0.7990992860868573,-0.9496739497408271,0.2749473359435797,0.3724380759522319,0.3125284519046545,-0.09496425511315465,0.027249396312981844,0.4715663446113467,0.049444105476140976,0.16925270343199372,-0.7856548386625946,-0.34026355016976595,-0.5316326734609902,0.8169338721781969,0.08448782749474049,0.8688176465220749,-0.5949763618409634,-0.5722365430556238,0.9751741797663271,0.8666930799372494,0.5028311503119767,0.3833084818907082,0.17297737207263708,0.5650273533537984,-0.18712908867746592,0.6641871267929673,-0.17640820471569896,0.9484307030215859,-0.5632985960692167,-0.2943126503378153,0.8442616336978972,0.06921127857640386,-0.8212535586208105,-0.9483668794855475,0.4158257399685681,0.39331831224262714,0.9729277892038226,0.737980380654335,0.3058311347849667,-0.6250466993078589,0.8394939242862165,0.1618076623417437,0.1568337636999786,0.7565021519549191,0.6099768844433129,0.7691300297155976,-0.2079430054873228,-0.4739064988680184,-0.9954230855219066,-0.33454378275200725,0.7260019369423389,-0.6778633496724069,0.6659027100540698,-0.5989246550016105,0.6958382222801447,0.2687156405299902,0.06963950442150235,0.005821927450597286,0.5599502623081207,0.22625921061262488,-0.433289528824389,0.005190765019506216,0.4988777870312333,-0.5651627904735506,-0.668333163484931,-0.7133014565333724,-0.40721264481544495,-0.5955532803200185,0.4993049642071128,0.8408874166198075,-0.8987247426994145,-0.3996780728921294,-0.7248879889957607,0.8068828955292702,0.13738644355908036,-0.743768326472491,0.6068864101544023,0.9544632816687226,-0.4112655948847532,-0.7436342155560851,0.30631461553275585,0.16962519474327564,0.41592851281166077,-0.2503297571092844,0.9204445839859545,0.06912383623421192,-0.9886842900887132,-0.3152532675303519,-0.2889350540935993,-0.43784540612250566,0.42918148916214705,-0.4373213923536241,0.4945228146389127,-0.6864485354162753,-0.2599616586230695,0.4141638968139887,-0.23925895849242806,0.15950940921902657,-0.027243084274232388,0.692154108081013,0.43786925822496414,0.017666264437139034,-0.19273981265723705,-0.43661778746172786,-0.3434900916181505,-0.708970757201314,0.16601993795484304,-0.9686434338800609,-0.3856220277957618,0.4481882434338331,-0.06719711888581514,0.9665317945182323,-0.27326542092487216,-0.020491406321525574,-0.6345495274290442,-0.6255040755495429,-0.5771576249971986,0.11157936602830887,-0.2622942575253546,-0.7391537274233997,-0.7129048281349242,0.5833359453827143,0.4760120064020157,0.20263144373893738,-0.8592045386321843,-0.4600448729470372,-0.3658490660600364,-0.996127606369555,-0.8484565480612218,0.7169399848207831,0.9288408821448684,-0.7324266233481467,0.7910101939924061,-0.804317073430866,-0.1845119995996356,0.39744424680247903,0.48346893303096294,-0.7608639704994857,0.08983268262818456,-0.5611211606301367,0.5128328786231577,0.5897355885244906,0.08677759440615773,0.008895516861230135,0.4081695778295398,0.3371091284789145,-0.3442416056059301,0.9147710870020092,0.33038073778152466,-0.40442019468173385,-0.5467736581340432,0.27432782761752605,-0.6863735043443739,0.1046330682002008,-0.194401066750288,0.8301870436407626,-0.19901081547141075,-0.35933816200122237,0.5921040964312851,0.8167429817840457,-0.01908772299066186,-0.18963913060724735,0.5092450575903058,-0.8300227778963745,-0.4435137906111777,-0.7103506615385413,-0.36996346805244684,0.48012049589306116,-0.4714052639901638,-0.8517440450377762,0.7375813261605799,0.7678131139837205,-0.024163936264812946,0.6943650050088763,0.6330003500916064,-0.6537643671035767,-0.4430668856948614,-0.19887487962841988,-0.7401874577626586,0.08380539668723941,0.22325738798826933,0.18989047454670072,0.9289727862924337,0.3650027778930962,-0.6825301763601601,0.9641419681720436,-0.9382481900975108,0.14898895798251033,-0.23058435786515474,-0.9870827896520495,0.4567233044654131,-0.29652960132807493,0.9299835599958897,0.937300518155098,0.6057998538017273,-0.08796887751668692,0.7514523933641613,-0.6105635389685631,0.6510212826542556,-0.9119260534644127,-0.1007452211342752,-0.6525298464111984,0.014773675240576267,0.9397224877029657,-0.6498615606687963,0.08984531182795763,-0.07824967848137021,-0.34118365263566375,-0.8709243959747255,0.09079545130953193,0.08065183600410819,0.8200352699495852,0.4541615964844823,0.2094512889161706,0.9715844742022455,0.18517327727749944,-0.07572535751387477,-0.08886464219540358,-0.19904558965936303,0.01284817373380065,0.5198109541088343,0.2552685500122607,-0.29878553142771125,0.7454483127221465,-0.15290360897779465,-0.28560555865988135,-0.1828113254159689,0.11537063680589199,0.17567146942019463,0.7746241302229464,-0.7459782245568931,-0.5116557176224887,0.1489599235355854,0.03956065559759736,-0.43617610493674874,-0.32378880539909005,-0.8102529277093709,-0.2026711255311966,0.2550560347735882,-0.8490765197202563,0.6419585905969143,-0.7538422704674304,-0.3064914154820144,0.29079136112704873,-0.7428782423958182,-0.8591432687826455,0.26680431608110666,0.06602549320086837,-0.117843187879771,-0.507792005315423,-0.7260728413239121,0.6115636043250561,0.3163995463401079,-0.8857396268285811,-0.35299798427149653,-0.6396647864021361,-0.07770124450325966,0.4557791678234935,0.48647312773391604,0.7281662966124713,-0.2844695574603975,0.5205127368681133,0.07548010628670454,0.6966366586275399,0.9097661706618965,-0.2618232565000653,0.16524662310257554,0.874029784463346,-0.43951288890093565,-0.32056254148483276,-0.14880254864692688,0.5962730292230844,-0.7480095340870321,0.8029068037867546,-0.03348576556891203,0.1369177969172597,0.9169288254342973,0.8910072389990091,0.264062509406358,0.046448346227407455,-0.5979142263531685,-0.6837361543439329,-0.5806888435035944,0.2746374513953924,0.2625545943155885,0.49892960162833333,0.5407450152561069,-0.4359530252404511,0.28233136190101504,-0.8404227225109935,-0.10475064348429441,0.043771132826805115,0.6244196477346122,0.7640314814634621,-0.4447634103707969,-0.7985117509961128,-0.8957571247592568,-0.3153654378838837,-0.1794312596321106,-0.6670624888502061,0.1528507531620562,0.2647241852246225,-0.14456004742532969,0.4021412478759885,-0.9479384254664183,0.5197542593814433,-0.5128921032883227,0.6932489681057632,0.3130321311764419,0.4070811658166349,-0.7209442537277937,0.6730082877911627,-0.5447571440599859,-0.07572687603533268,0.47847113525494933,-0.4647289654240012,-0.6404408202506602,-0.8634594189934433,-0.3060371046885848,-0.02792827971279621,-0.39558972604572773,-0.36852554325014353,-0.6085184924304485,0.879373615141958,-0.8901252252981067,0.9661790672689676,0.2113751219585538,0.11201775819063187,-0.675343438051641,0.16412130696699023,0.8311022906564176,0.17620557360351086,-0.5009765489958227,-0.06886907201260328,0.03137389710173011,0.6734400657005608,0.09415033925324678,-0.7229034416377544,-0.8073543980717659,0.8684663753956556,-0.5481036975979805,-0.7973472205922008,0.2916845469735563,0.7618869901634753,0.8088401439599693,-0.2075646659359336,-0.05901904683560133,-0.24742341041564941,0.7411352153867483,-0.35750018199905753,-0.37071423046290874,0.6710937675088644,0.8650374901480973,0.9526521102525294,0.3050203104503453,0.9387120129540563,0.8421881552785635,0.20868896413594484,-0.13147944770753384,0.9212037157267332,0.7465664017945528,0.8741400130093098,-0.04291121894493699,0.2478090082295239,0.829238832462579,0.9417062825523317,-0.7836220730096102,0.3871542760170996,-0.25113010546192527,-0.34761686716228724,0.4676414532586932,0.5163985784165561,-0.5521508743986487,0.35676869936287403,0.6103296303190291,-0.9304656097665429,-0.9762720931321383,-0.29509550519287586,0.14726774767041206,-0.49177649430930614,0.10564478626474738,0.8705364395864308,-0.5602321485057473,-0.7620925386436284,-0.47317563090473413,-0.047505877912044525,-0.4956494327634573,0.5516606830060482,-0.3710620068013668,0.3217783928848803,-0.25932707358151674,-0.6867636162787676,-0.49928131233900785,0.41966669354587793,0.5991379264742136,-0.42715111933648586,-0.61943533224985,-0.4483967525884509,-0.9502501622773707,-0.013656571973115206,0.5280067916028202,0.3779488978907466,-0.36477329721674323,-0.8452944750897586,-0.0575480000115931,-0.2637079660780728,0.23426459357142448,-0.9443539343774319,0.9802064397372305,-0.832806371152401,-0.274447844363749,0.37080265022814274,-0.10314431041479111,0.6830714759416878,0.3976329290308058,-0.2773535307496786,0.19591588573530316,-0.5228114505298436,-0.47456175833940506,0.40411190688610077,0.8488940051756799,0.7448966884985566,-0.002590358257293701,-0.42803652631118894,0.9356017229147255,0.48823103541508317,-0.9866173299960792,-0.04934610426425934,-0.0580798014998436,-0.9061527755111456,0.21373963402584195,-0.5319129121489823,-0.3698155884630978,-0.5698112556710839,-0.42743250261992216,0.042007888201624155,-0.8078291499987245,0.6146748894825578,0.7259975336492062,-0.8482215912081301,-0.8276974954642355,0.351214658934623,0.7728456049226224,-0.33179203420877457,-0.09354094881564379,-0.24703367054462433,0.5552208879962564,0.5606838399544358,0.06584738800302148,0.24328363686800003,-0.49154928512871265,0.20624017156660557,0.39508528960868716,0.3675909796729684,-0.5602285037748516,-0.6404249533079565,0.9820479201152921,-0.5339813665486872,-0.5491157616488636,-0.508829836267978,-0.32298145489767194,-0.8655051556415856,0.789636192843318,0.7581220543943346,-0.7935296101495624,0.974507228937,0.4893126371316612,-0.4977923519909382,0.7333340905606747,-0.26856329338625073,0.761234044097364,-0.7041732603684068,-0.3528779395855963,-0.35629117069765925,0.3481821771711111,-0.22010231716558337,-0.1442728121764958,-0.5482674543745816,-0.14319473039358854,-0.3439933224581182,0.2476440924219787,-0.21261649206280708,0.865498723462224,-0.4701476930640638,0.38962443824857473,-0.0898658218793571,0.5521812313236296,0.5106443627737463,-0.5688925590366125,-0.35097362799569964,-0.6026206817477942,-0.7277984623797238,0.10975330881774426,-0.2727705235593021,0.1406425554305315,0.0517703746445477,-0.879588183015585,0.8607713677920401,-0.25172936683520675,0.6557492800056934,0.613294658716768,0.9828211353160441,-0.7405811604112387,-0.9424785510636866,-0.4103036019951105,-0.0889832666143775,-0.6066381484270096,0.8167743091471493,-0.8325201603583992,0.7565137017518282,0.6061064535751939,0.5986978132277727,0.16779263969510794,-0.6658703093416989,-0.05017409101128578,-0.9695381382480264,-0.40040490543469787,-0.03228989755734801,-0.856632165145129,-0.552873991895467,0.840449201874435,-0.35607371339574456,0.231751611456275,-0.8879928565584123,-0.7179058832116425,0.5032942350953817,-0.12805058620870113,-0.11600481439381838,0.4936402812600136,0.411426761187613,-0.6515858937054873,0.7598479157313704,0.03306812047958374,0.9207120947539806,0.8506438722833991,-0.8581695654429495,0.8584583080373704,0.7945430297404528,0.3323077210225165,-0.5980588928796351,-0.5207860465161502,0.2554560387507081,0.7912500468082726,-0.62147824652493,-0.8960818108171225,0.6248587504960597,0.3770485380664468,-0.1817931137047708,0.7806939966976643,0.6500737960450351,0.5992787289433181,-0.6120487772859633,-0.333727833814919,0.07357287826016545,0.30510265612974763,0.2665438186377287,-0.3675869619473815,-0.4654219006188214,-0.18218104168772697,-0.5851955963298678,-0.23853275505825877,-0.30309198470786214,0.19832026353105903,-0.9288803851231933,0.9407315710559487,0.5644147978164256,0.6529495762661099,0.7946913912892342,-0.01623535854741931,-0.9726674030534923,0.6106421053409576,-0.7685448187403381,-0.4023674321360886,-0.26690950989723206,0.339265753980726,0.16605006018653512,-0.03377601411193609,-0.6911852331832051,0.3670167000964284,-0.6996644958853722,0.07483059773221612,-0.3591717444360256,-0.1650705118663609,-0.19479827443137765,0.19353197468444705,-0.019784058444201946,0.642193615436554,0.05490074306726456,0.9572545723058283,-0.9205586067400873,-0.6839649565517902,-0.14766749599948525,0.6030268776230514,0.9283048226498067,-0.3571852557361126,0.9816971835680306,0.5063825896941125,0.7287909616716206,0.24551306944340467,-0.33658473612740636,0.734004947822541,-0.7067435318604112,0.9979586093686521,0.5096727279014885,-0.8423345182090998,-0.8266114969737828,0.6426749625243247,-0.8084029178135097,-0.8540798011235893,0.970692572183907,0.34587811259552836,-0.24299594992771745,-0.9572834433056414,-0.810319238808006,-0.18430623738095164,-0.31289256224408746,-0.19923772709444165,-0.022928582970052958,0.5786984567530453,0.0621609422378242,0.4968102262355387,-0.4042267152108252,-0.3295306898653507,0.9447125350125134,0.5997044588439167,0.24616520991548896,-0.37963073048740625,0.4453991246409714,0.68224131828174,-0.30581808369606733,-0.6143091847188771,-0.732136488892138,0.33297157706692815,-0.0965038132853806,0.5201426362618804,-0.5437787319533527,-0.042480616830289364,0.6652215057983994,-0.9585900329984725,0.9024975383654237,0.3408666825853288,0.31597297405824065,-0.027758281212300062,0.3959851679392159,-0.8697973866946995,0.9155502743087709,-0.8532859846018255,0.1914318068884313,0.23661511996760964,0.38046366162598133,-0.3168420707806945,0.5377215459011495,0.9714268161915243,0.6019091187044978,0.30514327762648463,0.6748979771509767,0.4883541138842702,0.015793131198734045,-0.46734923403710127,-0.11109998868778348,0.9459960851818323,-0.46554280910640955,0.21610255585983396,0.7901706635020673,0.6386032602749765,-0.17096810694783926,0.5917779798619449,-0.3669479200616479,0.9405290083959699,-0.3601775402203202,0.2381829246878624,-0.16252577118575573,0.5510403490625322,0.8438646169379354,0.7734525436535478,-0.40768647473305464,-0.3076901463791728,0.6870813705027103,0.7064996850676835,0.8189505115151405,-0.7514913803897798,-0.9036067235283554,0.4358319090679288,0.9701576842926443,-0.5454240702092648,-0.15095047373324633,0.5092206900008023,0.25309248734265566,-0.419956645462662,0.8839909275993705,0.4616159317083657,0.41247566184028983,-0.35546512762084603,0.10791989462450147,0.5001682681031525,-0.7012422434054315,-0.4307818110100925,0.9721395210362971,0.16228993376716971,0.3345079296268523,-0.28827962512150407,0.8222582656890154,0.7553257793188095,-0.15979561442509294,0.05810544406995177,-0.6288590328767896,0.4524212768301368,-0.16170411836355925,0.8177855894900858,-0.11365204444155097,-0.5376156349666417,-0.7970964494161308,0.4045281265862286,0.24893771205097437,0.6615549880079925,0.254999338183552,-0.3063695700839162,0.10711228242143989,-0.6060762493871152,0.2430216772481799,0.5920563559047878,-0.4910441334359348,0.8171533639542758,0.6244953344576061,0.7733015073463321,0.9383005294948816,-0.8973606321960688,-0.756632998585701,-0.08808262413367629,-0.800438569393009,0.8912748713046312,-0.18227517046034336,0.7517962856218219,-0.46798865124583244,0.4943826966919005,-0.5781711032614112,0.8206766126677394,-0.19704998284578323,-0.5871979189105332,0.6388513259589672,-0.7247775406576693,0.75874551711604,-0.17978199617937207,0.95619987975806,-0.5074659422971308,0.07632565032690763,-0.7698140777647495,0.4476278522051871,-0.8348773065954447,0.22716401796787977,-0.15917377918958664,-0.6815748969092965,-0.968873402569443,-0.8997602532617748,0.480325760319829,-0.7223670184612274,0.5098637300543487,-0.4483794877305627,0.3369657378643751,-0.4315310064703226,-0.5301353237591684,-0.9015424670651555,-0.8465934325940907,0.39997090492397547,-0.8218728601932526,-0.07639962434768677,-0.003138415515422821,-0.1484306394122541,0.2873029042966664,0.764972597360611,-0.9603039822541177,0.4436334013007581,0.8809732990339398,0.6225388199090958,0.19562991661950946,0.4176653795875609,-0.7878576936200261,0.881360421422869,0.693499191198498,0.8403052669018507,-0.49504383793100715,0.6926561039872468,-0.8430336746387184,-0.6157664977945387,0.5638657375238836,-0.8302853270433843,0.6372653315775096,-0.9962263111956418,0.36895201494917274,0.22611453756690025,0.02076919050887227,0.45450284611433744,0.3690134743228555,0.5866610510274768,-0.25720380851998925,0.5842609545215964,0.33929359866306186,-0.7962008262984455,-0.4188523883931339,-0.4913697447627783,0.10398733150213957,0.6046102568507195,0.3934642490930855,-0.9515892509371042,-0.7314619445241988,0.4784560492262244,0.6902235466986895,0.7309136963449419,-0.25294138584285975,0.3617066158913076,0.38898442359641194,-0.6681880666874349,-0.31953492714092135,-0.8080889410339296,0.004230070859193802,0.49445420876145363,-0.8086530161090195,-0.7800099179148674,-0.27297905506566167,-0.03548199450597167,0.14997110283002257,-0.16863924963399768,0.8691526465117931,-0.17760333884507418,-0.5348316221497953,0.9353656992316246,0.07701494684442878,-0.39359990134835243,-0.7083843536674976,-0.23456087429076433,0.9787660138681531,0.005046384409070015,-0.18511766660958529,0.8297665207646787,-0.9058665675111115,0.6248003812506795,-0.07042456837370992,-0.6296807765029371,0.99530676798895,-0.7666230988688767,0.016259501222521067,0.8256689794361591,0.05431347107514739,0.8906242931261659,0.4988119280897081,0.14006579481065273,0.3608438051305711,-0.20572951342910528,0.8143020533025265,0.31923090014606714,-0.8331402344629169,0.033203985542058945,-0.17456788150593638,-0.7320023477077484,-0.3972348449751735,-0.4900963082909584,-0.7051211930811405,-0.720327839255333,0.5121192801743746,-0.6086006839759648,-0.336595565546304,-0.6472014309838414,0.8762906389310956,-0.08271440584212542,-0.8027876256965101,0.4311098977923393,0.18192355195060372,-0.29212144669145346,0.6754911597818136,0.0007142103277146816,-0.7509899162687361,-0.7009854023344815,-0.4968538237735629,0.005306830629706383,0.498224294744432,-0.9747021025978029,-0.6015710574574769,-0.5921086147427559,0.42574854707345366,0.1651212042197585,-0.48505928972736,-0.5426016645506024,0.7925349255092442,0.6382298930548131,-0.18024259759113193,0.5470454622991383,-0.5139317070133984,0.8019071822054684,0.22512814681977034,-0.2188365892507136,0.18596608703956008,0.6286484096199274,0.33788488525897264,0.3510745149105787,-0.5093069993890822,0.08544051181524992,0.47184966085478663,-0.43423234298825264,-0.9937259489670396,-0.45008716359734535,-0.4638218996115029,-0.39901259541511536,0.03296918096020818,-0.4872096898034215,-0.4721966669894755,0.723648454528302,0.7600151509977877,0.4630231945775449,0.3675056779757142,0.2831671270541847,-0.8800269211642444,0.6512826047837734,0.8738008849322796,0.6945138252340257,0.19722870271652937,-0.05297965370118618,-0.5988807897083461,0.7281727478839457,-0.06651436537504196,0.83981026802212,0.8881389829330146,-0.9742326661944389,0.23989167716354132,0.9388169660232961,-0.8466360922902822,0.23659017775207758,-0.07655055867508054,-0.7752272812649608,0.5636907913722098,0.37596428394317627,0.8956837803125381,-0.19757364643737674,-0.28049394115805626,-0.4930568621493876,0.7212191885337234,-0.3570303781889379,-0.12284666066989303,-0.18320206739008427,-0.3601443315856159,-0.9600399741902947,-0.6459065307863057,-0.5218367809429765,0.26288569811731577,0.75440559303388,0.9852064978331327,-0.07206280156970024,-0.7611668785102665,0.8823491488583386,0.9870034754276276,-0.027636867947876453,-0.5123918456956744,-0.10709837405011058,0.40792016964405775,0.5376077694818377,0.3102602744475007,-0.7313900585286319,-0.8762874458916485,-0.9696781937964261,-0.021310369484126568,0.4727468700148165,0.8362366477958858,-0.717366321478039,-0.5316504607908428,-0.7155018551275134,0.8138968688435853,0.1530180387198925,-0.1544994437135756,0.331878709141165,-0.31583324493840337,-0.5046424171887338,0.6151851695030928,0.42976722959429026,-0.21136315166950226,-0.09443537192419171,-0.4795832303352654,0.6894328696653247,0.8295587599277496,0.5458393050357699,-0.33516319608315825,0.29284788435325027,-0.6343626999296248,0.22143913386389613,-0.4770381930284202,-0.14263623394072056,-0.37991831498220563,0.09387002652511,-0.5788036012090743,-0.08160350611433387,-0.5493967924267054,0.21818786254152656,0.05990113178268075,0.35447538271546364,0.7531676748767495,-0.2085239514708519,-0.15355556411668658,0.7149619329720736,-0.37861114321276546,-0.7762960521504283,-0.2728490079753101,-0.2420228929258883,-0.18421133374795318,-0.23274204973131418,-0.036088522989302874,0.21590979536995292,-0.0886400006711483,-0.8858139244839549,0.058441021014004946,-0.9796002791263163,0.08586331689730287,0.1364062950015068,0.7196552343666553,0.2758007375523448,-0.998979851603508,-0.303088687825948,-0.5252762152813375,0.0730300028808415,0.3690336477011442,-0.6046076891943812,0.13586879195645452,0.7760571050457656,0.807842677924782,-0.8083446654491127,0.7934179482981563,0.4739119322039187,-0.8425166374072433,0.48004866298288107,-0.40563731361180544,0.3151858765631914,-0.5766879147849977,-0.4850308611057699,0.263049584813416,-0.13212184514850378,-0.1972015188075602,0.16729997983202338,0.3708656639792025,0.7770165959373116,-0.03269979264587164,0.5275521511211991,0.8132509863935411,-0.027266529854387045,-0.8435714547522366,-0.27823960315436125,-0.0806550164707005,0.6963780797086656,-0.9598403889685869,-0.5397866549901664,0.7911987896077335,0.9624604480341077,0.44286053581163287,0.7353095337748528,-0.6567479306831956,-0.7831226121634245,-0.7082039746455848,-0.8443108978681266,0.11463421955704689,-0.12129244534298778,0.8612609007395804,-0.9374749390408397,0.30433389730751514,-0.24376913299784064,-0.56470205495134,0.2591459425166249,-0.9409246169961989,-0.04027049010619521,0.6268521910533309,0.1467901417054236,-0.2903058435767889,0.5542037589475513,-0.3933448027819395,-0.4523655315861106,0.4753036964684725,0.8184497598558664,-0.06394364591687918,-0.05834873765707016,-0.16711982991546392,-0.8781590140424669,-0.8343539820052683,-0.07787342416122556,0.035517508164048195,-0.4646113025955856,-0.908435792196542,0.6749201039783657,0.20567850722000003,0.9480951433070004,0.6267103417776525,0.6335714575834572,-0.1463310089893639,-0.5713800089433789,-0.4602010897360742,-0.12574902549386024,-0.6861327206715941,0.8207104406319559,-0.5662739002145827,-0.530207306612283,0.5230176355689764,-0.155872724018991,-0.906492150388658,0.25695399520918727,0.5848215678706765,-0.5497731645591557,-0.5606530355289578,-0.5434631663374603,0.4590841792523861,-0.937093528918922,0.4628093848004937,-0.4855713378638029,0.8418902568519115,0.756038588937372,0.2219875631853938,0.995952324476093,-0.3705290583893657,-0.9371231286786497,0.42846998339518905,-0.036749166902154684,-0.6481774901039898,-0.5195005601271987,0.9915904873050749,0.356261087115854,-0.9991103252395988,0.6471679816022515,0.5286445328965783,0.4125731969252229,0.6622465853579342,-0.7116152001544833,0.047222500666975975,0.6892905947752297,0.3563453354872763,-0.6640358502045274,0.016333154402673244,0.8371338192373514,-0.9816751778125763,-0.8294314546510577,-0.6837178408168256,-0.49968143040314317,-0.4648743658326566,0.9056601775810122,0.7382010715082288,0.4453882807865739,0.4433794738724828,0.5335033973678946,0.16734920209273696,0.9041438498534262,0.656002779956907,-0.9963228427805007,-0.7337448881007731,0.7740369904786348,0.2808480174280703,-0.32318083150312304,0.13426623633131385,0.5437633842229843,-0.9927115309983492,-0.37855547247454524,0.32245559385046363,-0.49083389807492495,-0.3100592875853181,-0.8937705187126994,0.8735574870370328,-0.7165986755862832,-0.44812299963086843,-0.22852926095947623,-0.5263595655560493,0.4897128976881504,-0.4750460679642856,0.5898705180734396,-0.6865523573942482,-0.22360599786043167,0.2711567683145404,0.9198082652874291,-0.6524198218248785,0.7249612184241414,0.9632135457359254,0.20202001091092825,-0.275684118270874,0.21557834651321173,0.3584247436374426,0.7903478844091296,0.7324905167333782,-0.7537873312830925,0.24786013085395098,-0.6021375427953899,-0.16336951032280922,0.7420314908958972,-0.032236290629953146,-0.707950393203646,0.8870531455613673,-0.24682299885898829,0.5205504521727562,-0.31129550002515316,-0.4925114675424993,0.6248521287925541,-0.18192507280036807,-0.9912300696596503,0.8851132122799754,-0.7507090694271028,-0.16962159425020218,-0.8426163918338716,-0.5774647225625813,0.2699214997701347,0.9184160041622818,-0.02014301810413599,0.7446152055636048,0.6723246602341533,-0.7137372079305351,-0.7918662112206221,-0.40556292654946446,-0.4785429942421615,0.7694790549576283,0.7845803941600025,0.27075699903070927,0.9836307745426893,-0.4481809730641544,-0.38761178217828274,0.7740498990751803,0.9316899324767292,0.7775734723545611,0.2919512866064906,0.30993834184482694,0.43001765897497535,0.15466272877529263,-0.9359670057892799,0.18510556686669588,-0.13600384909659624,-0.5286043602973223,0.8201690833084285,0.5564035438001156,0.004670876078307629,-0.3098893263377249,0.342988102696836,0.6851199651136994,0.5558101022616029,0.963400018401444,0.140450329054147,-0.23970467085018754,-0.9813070786185563,0.47074516443535686,-0.7459250479005277,-0.2510194289498031,-0.39663683949038386,-0.6682110349647701,0.11466665333136916,-0.11998972157016397,-0.5505584259517491,0.15838787145912647,-0.000988752581179142,-0.8453141199424863,0.48635257547721267,-0.3133653849363327,-0.67068439302966,-0.24098632391542196,0.6453388165682554,-0.790853675454855,-0.8080940754152834,0.8322467119432986,0.5038376175798476,-0.13169646076858044,-0.30738777527585626,0.9555657394230366,0.11112193344160914,0.07141193188726902,0.1650802055373788,0.568962783087045,0.7176048709079623,-0.8940175115130842,0.9969895519316196,-0.6004049074836075,0.9387068781070411,0.30107910744845867,-0.252876786980778,-0.4243769836612046,-0.4244598960503936,-0.3308911342173815,-0.3904416775330901,-0.8989746794104576,-0.6045443108305335,-0.9222224745899439,0.5346747236326337,-0.6162050138227642,0.7840458755381405,0.7286415128037333,0.49072038009762764,-0.10701015684753656,-0.24458630103617907,0.11748292809352279,0.7979506812989712,-0.17238359991461039,-0.6231393367052078,-0.8921271273866296,-0.5959447417408228,-0.824713752605021,0.0835209502838552,0.5556561155244708,0.935821421444416,0.5504204323515296,0.6428399607539177,0.8874228135682642,-0.011883600149303675,0.7632547225803137,0.374031821731478,-0.5136266374029219,-0.9105023592710495,-0.2798060509376228,0.7665670649148524,-0.22944066859781742,-0.9884075573645532,0.7388512096367776,0.8978252061642706,-0.8972856178879738,-0.8940728749148548,0.9413726693019271,0.18688076734542847,0.4518514177761972,-0.07221238128840923,-0.3528633997775614,0.7228761371225119,0.62505524745211,-0.6062584267929196,-0.007264983374625444,-0.2640394759364426,0.22405754635110497,0.06918521830812097,-0.8592509371228516,0.5289175636135042,-0.11115601565688848,0.6463183173909783,0.7169053931720555,0.20608478970825672,0.9506406765431166,-0.6124775814823806,-0.27060517109930515,-0.7512266742996871,-0.8770726686343551,-0.3834112109616399,-0.24773984914645553,0.3781313025392592,-0.08306944603100419,-0.7971634929999709,-0.10273932386189699,-0.4342903718352318,0.4684903738088906,0.4644319238141179,0.0054205176420509815,-0.949609731324017,0.3145525427535176,0.29985578497871757,0.4274623394012451,0.9442294919863343,0.068184285890311,-0.10244065755978227,0.6219502803869545,-0.3500580918043852,0.8519085999578238,-0.7338194558396935,0.5801010429859161,-0.6349988179281354,-0.7675041491165757,0.5724807218648493,-0.8345533506944776,0.7650616960600019,-0.015686592552810907,0.5434347609989345,-0.4548709001392126,0.6724321381188929,-0.9197543296031654,-0.8251536744646728,0.986413567326963,-0.7617226201109588,-0.8247535289265215,0.4285782375372946,-0.08443654840812087,0.9321767156943679,-0.7607816206291318,-0.8353764372877777,0.6962209600023925,-0.3025610912591219,-0.8421077677048743,0.45069630490615964,0.7177336541935802,-0.8264909661374986,-0.8535966016352177,-0.9647830170579255,0.11397119332104921,0.6206462285481393,0.5088442685082555,0.05864685354754329,0.4040623209439218,-0.8174808779731393,-0.5355687025003135,0.18689278280362487,-0.756683278363198,0.9398176893591881,-0.27889891155064106,0.75604666210711,0.3020207709632814,0.7311169686727226,-0.5869935299269855,0.4727891734801233,-0.1584485755302012,-0.9309970871545374,0.9012602376751602,-0.37278589233756065,0.35158618772402406,0.5020219185389578,0.4848166829906404,0.784018128644675,-0.6979375169612467,-0.5613510701805353,-0.5526298773474991,-0.4598586349748075,0.8543984582647681,-0.3819005098193884,0.5237055071629584,-0.0766641991212964,-0.44283529883250594,0.1562657356262207,0.8257406465709209,0.5493047097697854,0.08599191252142191,-0.43175356974825263,-0.6885267295874655,0.4584346180781722,0.4136937181465328,-0.9169609206728637,0.8753878953866661,0.9406314846128225,0.7261019572615623,0.7139941109344363,0.31210969341918826,-0.045841376297175884,0.32822412671521306,0.7768494519405067,0.14141234336420894,-0.5335356253199279,-0.4878626591525972,0.4020906784571707,0.4184790407307446,-0.3729008035734296,0.7639304967597127,-0.071533243637532,0.15626880526542664,0.8626222158782184,-0.2206518012098968,0.4415396973490715,-0.32374345790594816,-0.3585650366730988,-0.3589479853399098,0.8894680105149746,-0.49050219217315316,-0.4928756868466735,-0.382604006677866,-0.42478562984615564,-0.8742369059473276,-0.29931011283770204,-0.7733814311213791,-0.7888054684735835,0.9236078090034425,0.4607388097792864,0.11125331278890371,-0.17838564002886415,-0.1620576474815607,0.7658406086266041,-0.8446220052428544,0.9158144630491734,0.6009469400160015,-0.8806923227384686,-0.9983166339807212,0.11906675714999437,0.5882116360589862,0.16761406511068344,-0.7946883398108184,-0.3590609007515013,-0.39677538676187396,0.9295906205661595,-0.4127710950560868,0.8406391693279147,0.1167335375212133,-0.2763008731417358,-0.618680705782026,0.6491582323797047,0.8621882945299149,0.3627223400399089,0.07928645238280296,-0.029401660431176424,-0.6139450776390731,0.2006024164147675,0.5635713203810155,-0.8842906141653657,-0.009373330045491457,0.7900989465415478,-0.8646780420094728,-0.8380255182273686,-0.8162956642918289,0.9032476777210832,0.8344929413869977,0.6688088835217059,0.42040658136829734,-0.1490895301103592,0.87067148135975,0.4237687927670777,0.9191006016917527,-0.23472613701596856,-0.24896966898813844,0.41348945209756494,-0.8865789528936148,-0.8775971094146371,0.708303171209991,-0.7839871146716177,-0.07216074410825968,-0.7659542053006589,-0.7305273879319429,0.9397530183196068,0.4804384857416153,-0.6163788004778326,0.3029614412225783,0.38834239821881056,0.6100933747366071,-0.22182033443823457,-0.5703609008342028,-0.5115541205741465,0.2392342179082334,0.552074053324759,-0.4712375896051526,0.10350410919636488,-0.7295950520783663,0.16334952600300312,0.022966822609305382,0.030271730851382017,0.08704600902274251,0.8075827956199646,0.6078881500288844,0.13059213804081082,-0.668394859880209,-0.04480145499110222,-0.4321489413268864,-0.58551324903965,0.6637315838597715,-0.7383211171254516,-0.6520951958373189,-0.8861604211851954,-0.9033914916217327,0.09049879992380738,-0.5877752508968115,0.9777122396044433,-0.8681881339289248,-0.624291721265763,-0.05798453651368618,0.6264109225012362,-0.17389794765040278,0.5065134568139911,-0.616074479650706,0.7353168744593859,0.32859512604773045,-0.7550105475820601,0.3239437220618129,-0.9425209439359605,0.5265348651446402,-0.6543191922828555,0.4844031878747046,-0.2167620942927897,0.23936706315726042,0.10660696495324373,0.14666783157736063,-0.6831532027572393,0.6006924011744559,0.0023059099912643433,0.3958946783095598,0.6748248022049665,0.06208450114354491,-0.12171899992972612,-0.7607206185348332,-0.720964886713773,-0.7481587119400501,-0.6429967069998384,-0.7594316657632589,-0.8690876024775207,-0.7003223644569516,-0.7508724736981094,-0.562452195212245,0.6211589076556265,-0.7875065417028964,0.9177575930953026,-0.5915541066788137,-0.15663565322756767,-0.21774154342710972,-0.31313244765624404,0.7281557815149426,-0.5786771550774574,-0.8960448335856199,0.04180965991690755,-0.8976659635081887,0.998329492751509,0.09381783939898014,-0.01647789217531681,0.23085866030305624,-0.20073664095252752,0.6210082843899727,-0.5299041080288589,-0.4112939038313925,-0.1445036600343883,-0.06412580702453852,0.011121660936623812,-0.9520268267951906,0.4344398695975542,0.4003089750185609,0.06656229309737682,-0.9219312802888453,-0.7835877421312034,-0.2436485206708312,0.6492228461429477,0.49566233856603503,0.06925005419179797,-0.10876939119771123,-0.04286706866696477,0.11121801752597094,-0.7418718789704144,0.8261826229281723,-0.5595802487805486,-0.26041873963549733,-0.7735841991379857,0.2890446945093572,-0.7250273376703262,-0.28542200149968266,0.921946560498327,-0.543216782156378,-0.3861313653178513,0.07093656295910478,-0.46048171538859606,-0.5767866559326649,-0.9403433548286557,-0.43036662228405476,-0.03124222857877612,-0.4107346683740616,-0.8797081080265343,0.28021991765126586,0.6166556687094271,0.13486988609656692,-0.27232143841683865,0.7407965306192636,-0.5735264667309821,0.623556122649461,0.8664889000356197,0.7099272818304598,-0.07047683373093605,0.2272575180977583,-0.9531930019147694,-0.5153719582594931,0.6476390189491212,0.952557872980833,-0.2772004916332662,-0.9582776590250432,0.8878097049891949,0.2230529524385929,0.2704947153106332,0.42941022338345647,-0.3281301553361118,-0.30755397863686085,-0.017380174715071917,0.4675417961552739,0.7743235207162797,-0.43614028953015804,-0.07759399618953466,-0.4737568483687937,-0.6047592093236744,-0.22383773047477007,0.5458527444861829,-0.5572661580517888,0.05986781790852547,-0.417402109131217,-0.2821860886178911,-0.6428559487685561,0.94561478914693,-0.10760694509372115,0.8665256625972688,0.0673571047373116,0.04875624179840088,0.165812233928591,-0.12610197346657515,0.7313440684229136,0.882748385425657,-0.8227450037375093,0.6429229667410254,0.3174806712195277,0.1661963453516364,0.6318726702593267,-0.6059754826128483,0.99773023230955,0.9889823086559772,0.24306854465976357,0.40200514951720834,-0.1331684202887118,0.9023834862746298,0.6801104438491166,0.6451847641728818,0.6528093684464693,-0.30763918766751885,-0.8336852448992431,-0.7141361865215003,0.04548961529508233,-0.9969542357139289,0.9298488846980035,0.7299864119850099,0.675710387993604,-0.4315860406495631,-0.8719360064715147,-0.17976018087938428,0.14441960537806153,-0.8447970398701727,0.02511479938402772,-0.07976029580458999,0.9322737720794976,-0.5946899992413819,0.7288319780491292,0.34337294148281217,0.5140519263222814,-0.7098945225588977,-0.8136719600297511,0.1837679548189044,-0.5889851246029139,0.15768453804776073,0.3762487224303186,-0.5555465649813414,0.44380478700622916,0.40866515366360545,-0.42114282539114356,-0.46590750059112906,0.8786809798330069,-0.879354334436357,0.2146305530332029,0.676535458303988,-0.6827770392410457,-0.8141554542817175,-0.270619064103812,0.6025242982432246,-0.9648558809421957,-0.09802934480831027,0.2940564528107643,0.20471908012405038,-0.11469400394707918,0.4830014300532639,-0.08478557411581278,0.8169970139861107,-0.5946281352080405,-0.26216000178828835,-0.13971800170838833,-0.9884923435747623,-0.2573244026862085,-0.8319479427300394,-0.7717523500323296,0.00958195561543107,-0.48151636403054,0.07668669754639268,-0.04398518335074186,0.8638926912099123,0.2506519239395857,0.897488322108984,0.47656388534232974,0.8507822067476809,0.7601641225628555,-0.7938008597120643,-0.12756747053936124,-0.14044859446585178,-0.4046518439427018,0.16512832790613174,0.07503244280815125,-0.5692982627078891,0.6507390337064862,0.40300867334008217,-0.6887215017341077,-0.1437839916907251,0.8605000386014581,-0.09278659522533417,-0.16532964631915092,-0.7280728947371244,-0.10085189994424582,0.37470739148557186,0.5380117637105286,-0.9495462258346379,-0.09233720414340496,0.3847358892671764,0.9534243787638843,0.796955565456301,0.7864524219185114,-0.08772174268960953,-0.6547234007157385,-0.1106207873672247,0.8239006889052689,-0.5161948911845684,-0.03110400028526783,0.08680510753765702,-0.6334578040987253,0.9828593437559903,0.08627490885555744,0.6322945239953697,0.9269266063347459,-0.6793902358040214,0.712934619281441,-0.9204098493792117,-0.07685039890930057,-0.8874372392892838,-0.5910739419050515,0.668367329519242,-0.25226791901513934,0.05242593586444855,-0.3667023302987218,-0.6008292688056827,-0.9645352894440293,0.8347586425952613,-0.05044095730409026,-0.6008537756279111,0.5552258510142565,0.5938479080796242,0.8806656133383512,-0.046579832676798105,-0.43431450380012393,-0.35141105158254504,0.293886324390769,0.7979798195883632,0.30122221168130636,-0.15268711932003498,0.22650462202727795,0.3647774285636842,-0.7945227222517133,-0.6866012145765126,-0.9411820569075644,-0.42560288216918707,0.41573292296379805,0.4767442471347749,-0.38988310704007745,0.34493782138451934,-0.4783023386262357,-0.14013352151960135,0.686072189360857,-0.9939630697481334,0.12170237628743052,-0.8783165295608342,0.8411252750083804,0.8746156492270529,-0.06411082996055484,-0.20365914748981595,-0.9919227818027139,-0.8748657894320786,0.9888065862469375,0.7391088861040771,-0.6687438217923045,-0.9393211975693703,0.8470757356844842,0.6983624161221087,-0.09401172632351518,-0.205086181871593,-0.3384911259636283,-0.39730156725272536,0.22587422840297222,0.2949877274222672,0.2584564732387662,0.5430502197705209,-0.21534874057397246,-0.7557869427837431,-0.8486490505747497,-0.4444481609389186,-0.6316495854407549,-0.47838650830090046,-0.5899637965485454,0.6262550288811326,0.3639292228035629,-0.45811268081888556,0.5926271378993988,0.1663147364743054,-0.6654094154946506,-0.7635778351686895,0.49090593261644244,-0.3448477513156831,0.550018300767988,-0.839840788859874,0.6514771152287722,-0.5170359262265265,-0.29714224534109235,0.6256157020106912,0.4495321069844067,0.026358874514698982,-0.3404180156067014,-0.7135778530500829,-0.08965188264846802,0.7424103827215731,-0.9796652160584927,0.8381690187379718,0.09933798806741834,-0.46779549214988947,0.27302242536097765,0.8891740893013775,-0.9195747934281826,-0.28177847201004624,-0.8366032084450126,0.0609991573728621,-0.6096999333240092,-0.944104140624404,0.8815455748699605,-0.7798628490418196,-0.05647608544677496,0.6977921109646559,-0.6952477735467255,0.7378801158629358,-0.6088009355589747,-0.46283721551299095,-0.35842226445674896,-0.839762622024864,0.9908585245721042,-0.846045111771673,-0.8083911552093923,-0.2727380725555122,0.038611961994320154,0.5732433670200408,0.5703054829500616,-0.036370862275362015,-0.23330967966467142,0.2560667837969959,0.6349164042621851,-0.04740575002506375,0.28468010015785694,-0.0018490012735128403,-0.26990904193371534,-0.7583093303255737,0.16960251331329346,-0.6655168300494552,-0.023352450225502253,0.9082699492573738,0.6364228441379964,0.8765534060075879,-0.5999417463317513,0.1595720238983631,-0.5439728195779026,0.6919469148851931,-0.8217050549574196,0.2982365950010717,0.16599564673379064,0.2862680610269308,0.7364678964950144,0.20067101111635566,0.8926650742068887,-0.9723834902979434,-0.33449684688821435,-0.4807767504826188,-0.3695860877633095,-0.6405835361219943,0.8427326818928123,0.10410790471360087,-0.5362624088302255,0.9288915996439755,0.43823968479409814,-0.7533971322700381,-0.3794677508994937,-0.6178682218305767,-0.48456021631136537,0.9946653316728771,0.16075787460431457,-0.6876487513072789,-0.9153206185437739,0.24997811019420624,-0.0006708712317049503,0.03361957333981991,-0.12880928348749876,-0.5615009726025164,0.22956468211486936,-0.3981898189522326,0.25239945901557803,0.8709984277375042,-0.6729049445129931,0.7373179118148983,0.8372169211506844,0.5713212382979691,0.9246948082000017,0.8420599359087646,-0.410238120239228,-0.07847568672150373,-0.6237771357409656,-0.9037023293785751,-0.05420283833518624,0.01638742256909609,-0.995616964995861,-0.889343835413456,-0.24055161187425256,-0.12203281233087182,0.9428665740415454,0.060853767674416304,0.21006865613162518,0.9427612703293562,0.629667738918215,-0.028414140921086073,0.47713309014216065,0.7796195447444916,-0.7149693239480257,0.4649977101944387,-0.5929657374508679,-0.5036815167404711,-0.8454548926092684,-0.6943214717321098,-0.7587336343713105,0.6373137691989541,0.28460672218352556,-0.2676402139477432,0.9374595410190523,0.3250897047109902,0.7617239570245147,-0.7185770575888455,-0.5712203183211386,-0.3725371863692999,-0.12591176526620984,0.9700371483340859,0.2911385106854141,-0.9835241595283151,-0.3981181802228093,-0.4108926779590547,0.6615467672236264,0.32685106433928013,-0.31365911616012454,-0.8604018334299326,0.533655263017863,-0.4166515152901411,0.3288175445050001,0.053600992541760206,0.4382213670760393,-0.14470346830785275,0.23352154903113842,-0.14536075899377465,-0.9167737229727209,-0.03925936250016093,0.04889613529667258,0.8970128674991429,0.2048116116784513,-0.5026904968544841,0.1378911705687642,0.00040744105353951454,0.12997122295200825,-0.6162994066253304,0.4608207158744335,-0.540361828636378,-0.45040662167593837,-0.22816635807976127,0.09719363274052739,-0.9328033993951976,-0.3637384418398142,-0.8179294588044286,0.5619266829453409,-0.5708118588663638,0.41787190129980445,-0.25553469453006983,0.03757584607228637,0.334125239867717,-0.27115435199812055,-0.23475750302895904,-0.35440448904410005,-0.8630842566490173,0.6104693915694952,0.720175014808774,-0.8986038491129875,0.7761359619908035,0.7259005303494632,-0.707460364792496,-0.21535119600594044,0.36183535121381283,0.9979554964229465,-0.2689691879786551,-0.36838189791888,0.45074776513502,-0.3231638167053461,-0.7783755878917873,-0.04804883850738406,0.06734944181516767,-0.19226806377992034,-0.9518284774385393,0.32975978311151266,0.9929428589530289,-0.5529303709045053,0.5697588012553751,0.17266926169395447,0.8992580031044781,-0.18194373790174723,-0.7184826927259564,-0.41384216444566846,0.9653767999261618,-0.32995375199243426,-0.14785608276724815,0.7293301038444042,-0.06989920511841774,0.747630322817713,-0.6976356175728142,0.7704484541900456,0.8643484581261873,0.4931229082867503,-0.779379740357399,-0.8464634865522385,0.979355959687382,-0.9517547287978232,0.088904426433146,-0.4212621543556452,0.5374750848859549,-0.19772153859958053,0.24947135103866458,0.34574642963707447,0.21875183377414942,0.13290034839883447,0.34683602629229426,-0.1489198594354093,-0.8413206790573895,-0.9494184656068683,-0.1142646437510848,-0.5076281470246613,0.8135873493738472,0.42931516468524933,-0.9732631244696677,-0.4085136540234089,0.871652449015528,0.7053455361165106,0.7853139531798661,-0.24816819140687585,0.5387339675799012,0.6631408836692572,-0.5029196413233876,-0.9115894786082208,0.6562779964879155,0.4127323692664504,-0.1595823373645544,-0.2680433774366975,-0.27373097417876124,0.14296243200078607,-0.628780284896493,0.7598849479109049,-0.7988496450707316,-0.28410086315125227,0.13538033049553633,0.8132693432271481,-0.26107288990169764,0.7830846579745412,-0.5596141079440713,-0.7036605374887586,0.14683667104691267,0.6102307690307498,0.1257109153084457,0.4671800909563899,-0.6144650843925774,-0.5907870479859412,0.14047864312306046,-0.7084333160892129,-0.960669519379735,-0.8156167059205472,-0.0808471986092627,-0.35557691706344485,-0.861056752037257,-0.3384962906129658,-0.6725892908871174,-0.8282301379367709,0.09972625505179167,-0.28081858111545444,0.49461116688326,0.12020119791850448,0.8110726494342089,0.18853087909519672,-0.4709204249083996,0.5238381382077932,0.34210958098992705,-0.7653760723769665,-0.5118834530003369,0.493445404805243,-0.9205870190635324,0.03360261395573616,0.4337636837735772,-0.8437509411014616,0.16769281681627035,-0.89436448039487,-0.32606560038402677,0.028595757205039263,0.18528841342777014,0.6844238685443997,0.568096041213721,0.26214002165943384,-0.8212124658748507,0.11230005510151386,-0.7998664588667452,0.8473848081193864,0.9497235538437963,0.348168361466378,0.498624375090003,-0.847165749873966,-0.13817475084215403,0.9033674825914204,-0.16276338463649154,-0.2352923834696412,-0.527851929422468,0.7619054550305009,-0.696826018858701,-0.25500975642353296,0.9578976258635521,0.06432195100933313,-0.8024530899710953,0.9141907314769924,0.36992688477039337,-0.8584357285872102,-0.7056901678442955,-0.7098871511407197,0.2262798440642655,0.7421275745145977,-0.7245619306340814,0.5705191791057587,-0.152590059209615,0.6821263027377427,0.15227282978594303,-0.575721045024693,0.9622655906714499,0.9419139390811324,-0.5681652980856597,0.4802585383877158,0.07390553643926978,-0.3403932857327163,0.6612380333244801,-0.6032293820753694,0.2186534213833511,0.006140429526567459,-0.7607328672893345,0.22617565235123038,-0.9972306620329618,-0.03485011216253042,-0.7415025350637734,-0.5637798253446817,0.9584055729210377,0.013001970015466213,-0.14402057323604822,-0.922931790817529,0.5826407354325056,0.6356775867752731,0.9308128878474236,-0.4762612460181117,-0.43249453185126185,0.6841786862351,-0.6685740565881133,0.9756805170327425,-0.03314807964488864,0.6226262524724007,-0.6640143864788115,0.9111108956858516,-0.3619437785819173,-0.6241476675495505,0.7776543516665697,0.15371707687154412,-0.9607021622359753,-0.5149494702927768,-0.21432276908308268,-0.47276802780106664,0.7070158636197448,0.15612736949697137,0.7311670398339629,-0.4838772932998836,-0.8464968190528452,0.40298475604504347,-0.09768222505226731,0.5085630225948989,0.674993475433439,-0.8744040057063103,-0.17239652713760734,-0.1793135702610016,0.2341956035234034,-0.8795852893963456,-0.7837942508049309,0.2801068420521915,0.8647328508086503,-0.1966636790893972,-0.21675077499821782,-0.2293497296050191,-0.25436535384505987,-0.07384565006941557,-0.46735545713454485,0.7930049537681043,-0.31936053093522787,-0.9813168654218316,0.07505863253027201,0.047445804346352816,0.777696733828634,-0.7372668632306159,-0.8770390194840729,-0.4226161642000079,0.007554405834525824,-0.39311413327232003,0.008768729399889708,0.734239281155169,0.696664824616164,-0.9829068565741181,-0.5654928488656878,-0.3826528969220817,-0.119182996917516,0.26954621775075793,0.9664568933658302,-0.21079096756875515,0.8165891012176871,-0.6310032713226974,0.9412936833687127,0.1188974529504776,-0.3495920533314347,-0.24067206773906946,-0.5592662473209202,-0.9359083818271756,-0.9216739074327052,-0.5471516535617411,-0.5925021898001432,-0.9416033206507564,0.6619779169559479,0.32856077840551734,0.43573321169242263,0.9327952605672181,0.6885688211768866,-0.14684364525601268,0.6836572526954114,0.9036551252938807,0.8261074060574174,0.6101805116049945,-0.5700078140944242,-0.04029590915888548,0.6913545769639313,-0.12545166723430157,-0.3143500844016671,0.7805043361149728,0.05732069304212928,-0.939783944748342,-0.34743991820141673,-0.3909065960906446,0.9691395848058164,0.5691911205649376,0.3321408028714359,-0.6191857485100627,-0.9850057135336101,-0.8309569098055363,0.5633960864506662,-0.03936113929376006,0.5085179731249809,0.25149084720760584,-0.8858635374344885,-0.8430688981898129,0.30489462381228805,-0.4063068348914385,-0.06033360539004207,-0.43951906682923436,-0.39071591943502426,0.9960323963314295,-0.9292741566896439,0.9320298479869962,0.8755504004657269,-0.08302883105352521,-0.03690379951149225,-0.7013873383402824,-0.9336576834321022,-0.407698277849704,-0.979435270652175,0.9829073753207922,-0.002947070635855198,0.06796819111332297,-0.8240474378690124,0.5141632752493024,-0.3017617482692003,-0.17220946587622166,0.5695851822383702,-0.16004882659763098,-0.15992596093565226,-0.3726677084341645,0.4784953724592924,0.6282044760882854,-0.4313544565811753,0.3319681379944086,-0.43853094708174467,-0.6904766471125185,0.7640217528678477,0.2929931478574872,0.03249921090900898,-0.8877406399697065,-0.10264759184792638,0.5149852400645614,0.2745682713575661,0.28085143957287073,-0.09475508984178305,-0.5064935106784105,0.2670064019039273,-0.4332968508824706,0.10592962428927422,0.10595984244719148,0.8293103552423418,-0.8631607419811189,-0.5373669457621872,-0.6683797864243388,-0.17917679762467742,0.250570731703192,0.5536946076899767,-0.13071715831756592,0.4100756561383605,0.7058520694263279,-0.5793134979903698,0.581256611738354,0.5170854553580284,-0.15078277932479978,0.28270583925768733,-0.244279773440212,-0.30214440636336803,0.14766026614233851,-0.21518582897260785,-0.10258403094485402,-0.28674331679940224,-0.1793018733151257,0.3969908473081887,0.8465929022058845,0.37097296956926584,-0.3473519952967763,-0.5088569629006088,-0.8238449054770172,0.5036386325955391,0.41781983664259315,-0.839720746036619,-0.680870711337775,0.6181964469142258,0.882064898032695,-0.3460114533081651,-0.5479570208117366,-0.930158490780741,-0.6069483580067754,-0.43798437993973494,0.4247578214854002,0.8853271598927677,0.32571262400597334,0.003333340398967266,0.6256860638968647,0.4536238699220121,0.3041647211648524,0.954739585518837,-0.2580567398108542,-0.9408896109089255,-0.7231074701994658,0.44420016510412097,-0.9122405298985541,0.6727672321721911,0.6787206958979368,0.7764316881075501,-0.7638291884213686,-0.2753778211772442,0.7676653806120157,-0.44148624036461115,0.09717126842588186,0.5777267348021269,0.6059484519064426,0.7659813580103219,0.9610276268795133,-0.365530701354146,0.7769179316237569,-0.9633718044497073,-0.28383048344403505,0.09913078183308244,0.2347383378073573,-0.11269575031474233,-0.9516396839171648,0.7630936033092439,-0.23065150249749422,-0.6007480951957405,-0.6417365255765617,0.6535397917032242,0.7959416923113167,-0.2810414247214794,0.8651654329150915,-0.0020955316722393036,-0.10680145211517811,-0.8155336808413267,-0.4178741630166769,-0.6361317154951394,0.6903745210729539,0.3376466096378863,0.5896010100841522,-0.2828828925266862,0.6676094233989716,0.8115142751485109,0.8197840237990022,0.9650229439139366,0.854918550234288,-0.04493924230337143,-0.9652016661129892,0.7708123894408345,0.5226767612621188,-0.0071840351447463036,0.8608721634373069,-0.8670870731584728,0.2953394572250545,0.44894627342000604,0.5684404140338302,-0.9702827390283346,-0.3936940017156303,0.8375236545689404,-0.9035492255352437,-0.7418584446422756,0.11254258593544364,0.06691824179142714,-0.42625579005107284,0.2150161238387227,-0.9273049104958773,0.291508951690048,-0.07781443186104298,-0.8609373215585947,-0.31649516010656953,0.7801964627578855,-0.34381246706470847,0.2785717248916626,-0.36163541628047824,0.7883292739279568,-0.7080334136262536,0.7987042646855116,-0.7748527084477246,-0.4759993301704526,0.6285294834524393,-0.07325185742229223,0.7291662711650133,-0.7394713358953595,0.33290763292461634,0.5962473922409117,0.04880103515461087,-0.7830310929566622,0.023714371491223574,0.14365959726274014,-0.6994714909233153,0.9399012788198888,-0.520978129003197,0.14991450356319547,0.8104975926689804,-0.5045610195957124,-0.9786007045768201,-0.6409187675453722,-0.26532256603240967,0.9692077408544719,0.7359502213075757,-0.22550254361703992,0.07993403309956193,-0.9452876010909677,-0.5680626318790019,0.96850406518206,-0.32111904490739107,-0.5461685471236706,-0.743687710724771,-0.6220731539651752,0.2743518799543381,0.08047879952937365,-0.05598389497026801,0.4352694866247475,0.858018399681896,0.47865492245182395,0.6177319074049592,-0.6517973165027797,-0.615597817581147,-0.3564238231629133,-0.2705005435273051,-0.622819459065795,0.9059588755480945,-0.4818133874796331,-0.5613084207288921,-0.4330795514397323,0.8183531896211207,0.09373171115294099,0.3218556186184287,0.5152824139222503,-0.4878098201006651,0.739624953828752,-0.7662410484626889,-0.35857856180518866,-0.3515272680670023,-0.5866674273274839,-0.3170440290123224,-0.3940690504387021,0.563417112454772,-0.46986661152914166,-0.7969509963877499,-0.7435864550061524,-0.7307567643001676,-0.6328316968865693,0.6752952500246465,0.15754118282347918,0.9582280931062996,-0.385264934040606,-0.7045075381174684,-0.7668442274443805,0.20659799920395017,0.38616503635421395,-0.00945997005328536,-0.655295031145215,0.649315943941474,-0.63324083853513,0.4772850517183542,-0.9761791727505624,0.5840709004551172,0.7410162235610187,0.16696199774742126,-0.5587621335871518,-0.0032951217144727707,0.9948442056775093,0.6275761956349015,-0.487793049775064,-0.38763977959752083,0.39458309579640627,-0.24202178604900837,0.5864261845126748,-0.5109669030644,0.641126022208482,0.9841173556633294,0.9508455698378384,-0.2741110692732036,-0.046663838904350996,0.9880524505861104,0.5623858137987554,0.5636240988969803,-0.34546505007892847,-0.1045308317989111,-0.3994307448156178,-0.5286350543610752,0.2756172609515488,0.9285506261512637,-0.5062568229623139,-0.46373051777482033,-0.7526897271163762,-0.005047823768109083,0.019079070538282394,0.6341078518889844,-0.8625108837150037,-0.005110824014991522,-0.5051825498230755,-0.2705440646968782,-0.4559037918224931,-0.050865639466792345,-0.48168401420116425,-0.752212269231677,-0.625992146320641,0.027540646493434906,0.7982615893706679,-0.1881022583693266,0.015625122468918562,-0.059086174704134464,0.8792965901084244,0.2906329585239291,-0.6507225232198834,0.9194098296575248,-0.29152614809572697,-0.5491477409377694,0.6006391206756234,0.12151696626096964,0.4349715714342892,-0.37212423235177994,-0.31514993542805314,-0.9482781672850251,0.40646312944591045,-0.9552526422776282,-0.30865998240187764,-0.8001633528620005,0.25171278743073344,0.30972080724313855,0.9292664844542742,0.8132246448658407,-0.7762287110090256,0.5971224252134562,-0.9568777759559453,-0.6370392441749573,-0.2812671447172761,0.9104362991638482,0.9149313475936651,-0.8931116499006748,0.009285950101912022,-0.9762734244577587,0.8642450659535825,-0.17243640357628465,0.4012723839841783,0.885994469281286,-0.14510156121104956,-0.6044805636629462,-0.3384544523432851,-0.9247092981822789,0.4947934253141284,-0.24789717979729176,-0.48633546847850084,0.7158533590845764,0.12011043727397919,-0.2925497479736805,0.3679266842082143,-0.9804035690613091,0.2502494896762073,-0.9796019257046282,-0.7886226666159928,-0.12753692781552672,0.6494008298031986,-0.7466785716824234,-0.9717461173422635,0.16593854315578938,0.9555765483528376,-0.3761524595320225,0.8168833148665726,-0.14693646179512143,0.0614780206233263,0.04680836293846369,-0.42121315747499466,-0.16003351286053658,-0.5126153072342277,0.07121167937293649,-0.8404099810868502,0.202733616810292,-0.4500656761229038,-0.801977101713419,-0.46481004171073437,0.20480772014707327,-0.528139469679445,-0.027577283792197704,0.4596445756033063,-0.45781830279156566,-0.18040439067408442,0.5397257274016738,-0.5663437345065176,0.15527407033368945,0.32519541261717677,-0.8310190327465534,-0.18180399015545845,0.9141585938632488,-0.5667845983989537,-0.1718521541915834,-0.5815875390544534,-0.6508314800448716,-0.1480130827985704,0.18257358483970165,-0.40030536288395524,-0.27662298316136,-0.3370208293199539,0.2397361034527421,0.2681546504609287,0.11047508753836155,0.09401156660169363,-0.17155281035229564,0.689418320544064,0.516526946797967,0.9857354778796434,-0.04564108652994037,0.31046004174277186,0.79148806957528,-0.8263702197000384,-0.044791615568101406,0.5913106794469059,0.6378697659820318,-0.0009083426557481289,0.5994637245312333,-0.9689621631987393,-0.8393119424581528,-0.9345226534642279,0.11080604465678334,-0.24331887159496546,0.9142718450166285,0.019657530821859837,0.6444295165129006,-0.6798156062141061,-0.7861814494244754,-0.5631975652649999,-0.7349417358636856,0.05916751129552722,0.5394470035098493,0.03850424801930785,0.04601571802049875,-0.9473148030228913,0.008653836324810982,0.9886298249475658,-0.4992849719710648,-0.2726260209456086,0.5410204129293561,0.22625260660424829,-0.1368900379166007,-0.5288279098458588,-0.7397091765888035,-0.28068066854029894,0.020705660339444876,0.880890294443816,0.11269926000386477,0.6486262599937618,0.029110159259289503,0.04749634815379977,0.5293028666637838,-0.23092406103387475,-0.9227104061283171,-0.501039826311171,0.04672688897699118,0.1212725774385035,0.8063741363584995,0.5500565664842725,0.06759989587590098,0.955868364777416,0.3483924954198301,0.01712937466800213,0.175437499769032,-0.41261650854721665,-0.8233861615881324,-0.6193235297687352,-0.5355511796660721,0.28861994901672006,-0.8851294121704996,0.3778002681210637,-0.6216354523785412,0.21223035920411348,-0.5898803803138435,0.21434675715863705,-0.5432550213299692,-0.8941511185839772,0.4699367773719132,-0.23176113702356815,0.2221795073710382,-0.8528486285358667,0.9776295670308173,0.40899206697940826,0.2144153043627739,0.8730976390652359,-0.45730744767934084,0.37794393580406904,0.1635284572839737,0.912704766727984,0.025110836140811443,0.47612727992236614,-0.37793479580432177,0.12916518561542034,0.7279148544184864,0.25271218828856945,-0.7896882360801101,0.3122666315175593,0.07564176339656115,-0.5837644571438432,-0.4930351646617055,-0.12126740021631122,0.6177312671206892,-0.5211071367375553,-0.2821090603247285,-0.9835463725030422,-0.09568120399489999,-0.4974961341358721,-0.2725525409914553,-0.029726817272603512,0.05469588655978441,0.060198960825800896,-0.3770943768322468,-0.25765978591516614,-0.8076711925677955,0.511406437959522,0.1923048268072307,-0.008753458503633738,0.2509961877949536,-0.40632835775613785,0.9275088966824114,0.6342927129007876,0.08151344861835241,0.8148823827505112,0.9295574673451483,-0.16097611421719193,-0.027195881586521864,0.5635461988858879,0.9270292441360652,0.4442734713666141,0.6947202538140118,0.698380128480494,-0.28574655670672655,-0.4077937719412148,0.600559052079916,-0.34992918837815523,-0.9041515993885696,-0.6806176430545747,-0.751875925809145,0.7129736584611237,-0.4995130901224911,-0.10227318992838264,0.9873551335185766,0.48385171312838793,0.5418132171034813,0.548931173980236,-0.4140302920714021,-0.39565839897841215,-0.2424822454340756,0.8048228924162686,0.5257362825796008,0.7359061748720706,-0.8748516319319606,-0.39446401223540306,0.673514824360609,0.036686237901449203,-0.18780876649543643,-0.84620371600613,0.18434900976717472,-0.0021271579898893833,0.873157077934593,-0.5504204388707876,0.508125826716423,-0.8072833423502743,-0.17123827943578362,-0.024412977043539286,0.5674647204577923,-0.5095461127348244,-0.37675287667661905,0.6055358219891787,0.16749488189816475,0.8960517672821879,0.04752269387245178,-0.43767148442566395,-0.3647292605601251,-0.49932007817551494,-0.40700384229421616,-0.9658790468238294,-0.5117255584336817,0.6814544117078185,-0.45386407151818275,-0.7701563076116145,0.2570611471310258,0.9958553221076727,0.43378990376368165,-0.9507299368269742,0.6102962247096002,0.2805817238986492,0.3792600785382092,-0.6413040650077164,0.5937295840121806,0.6902743703685701,0.8922554263845086,-0.45215065870434046,-0.12251825165003538,-0.6204968895763159,0.11638534814119339,0.07143442938104272,-0.8250190396793187,-0.9690821650438011,-0.7200967455282807,0.3365317131392658,0.12740441597998142,-0.598281922750175,-0.48023198917508125,-0.8201496694236994,-0.01561904838308692,0.21924438094720244,-0.22100292798131704,-0.09470125241205096,-0.19165400369092822,0.1598647222854197,0.34725903160870075,0.9021252323873341,0.8696547108702362,0.8085288205184042,0.45368652045726776,0.8436322500929236,-0.740260467864573,0.19231071835383773,-0.4529775185510516,0.5533087681978941,-0.6294144284911454,-0.9251040532253683,0.4223181754350662,0.5362499034963548,0.6840369328856468,-0.08849082421511412,0.862235838547349,-0.12995435949414968,0.5181952570565045,0.19806175539270043,0.5634025260806084,0.4083755169995129,-0.6244953111745417,0.6308666560798883,-0.3091260832734406,-0.12078862823545933,-0.06911776447668672,-0.8882649256847799,-0.5567488828673959,-0.712683277670294,0.4434515363536775,0.1762439706362784,0.3129590251483023,0.10749831050634384,0.11405782774090767,0.9435205580666661,0.021164664067327976,-0.7325979936867952,0.4724152199923992,-0.9949462679214776,0.6118111633695662,0.279290865175426,-0.6696338029578328,0.7561273803003132,0.19864261150360107,-0.14955532224848866,-0.3008306031115353,-0.48333522072061896,-0.10898756049573421,-0.9102595634758472,-0.23376097669824958,-0.24578113155439496,0.10205816477537155,-0.49782088957726955,-0.39429131895303726,-0.08831997727975249,-0.8050927296280861,-0.1518616946414113,0.40842932742089033,0.44339641835540533,0.5485240342095494,0.11662032222375274,0.019958457443863153,-0.7524267146363854,-0.10065004322677851,0.688658693805337,0.16117253620177507,-0.9068130534142256,0.10752651514485478,0.3707773704081774,0.8612772435881197,0.28068164782598615,-0.20974818337708712,-0.35499380016699433,-0.8393219844438136,-0.07942339451983571,-0.27182336151599884,-0.7656231955625117,-0.9380688974633813,-0.5932747651822865,-0.07136981887742877,0.12476951628923416,0.2813009833917022,-0.30390729615464807,0.7194490199908614,-0.48000044422224164,-0.17301407596096396,-0.2581674298271537,0.3685538275167346,-0.19304531952366233,0.4720614803954959,-0.02961906185373664,-0.6147970310412347,-0.6575168753042817,-0.1422196989879012,-0.458506400231272,-0.36208456149324775,-0.2695381478406489,-0.49675737600773573,0.6247590729035437,0.41476765647530556,0.7019750499166548,0.8986903806217015,0.16038776421919465,-0.0661511099897325,0.5193767943419516,0.5565220029093325,0.8820334458723664,-0.28705242136493325,-0.08506695134565234,0.43067568773403764,0.9344369699247181,0.7334963134489954,-0.5971416011452675,-0.8936006664298475,0.5176074476912618,-0.5115428427234292,0.9853140199556947,0.3763447133824229,-0.8681092713959515,0.9977014940232038,-0.7202128176577389,-0.5060466742143035,-0.7565618036314845,-0.34400305384770036,-0.8489951863884926,0.958519778214395,-0.019424141384661198,-0.8582014525309205,0.47869537491351366,0.19575135363265872,0.18392539024353027,-0.42008103989064693,-0.8014355511404574,-0.7775542489252985,0.1478654514066875,0.9144112439826131,-0.7074682116508484,0.33632502937689424,-0.1602269420400262,-0.14849570905789733,0.39800187619403005,0.6930402871221304,-0.1843017120845616,0.8257183930836618,0.562352282460779,0.23799163103103638,0.3674898138269782,0.23362160054966807,0.29365098709240556,0.47725802240893245,0.5447855368256569,0.5758109739981592,-0.8187123062089086,-0.8141304762102664,0.7077321140095592,0.5648570042103529,-0.8495862390846014,-0.9130346402525902,0.8159156977199018,-0.9902664544060826,-0.42288904590532184,0.7933074496686459,0.6527644470334053,-0.06210495252162218,-0.8600877611897886,0.7551747690886259,-0.6073294370435178,0.6621018978767097,0.09263781597837806,-0.5526300719939172,0.6999984094873071,0.34139172453433275,-0.4445165656507015,0.07938449364155531,-0.17676831549033523,0.4009250062517822,0.2392069399356842,-0.47358690155670047,0.9190308973193169,-0.14054919686168432,0.7021915633231401,-0.9907042854465544,0.9448144473135471,-0.1845026039518416,0.1511267526075244,0.14550025574862957,-0.3194821970537305,-0.22820958867669106,0.8869264223612845,-0.01509702717885375,0.6009147008880973,-0.908992521930486,-0.3234699387103319,-0.15098027931526303,0.6054603755474091,-0.322234767023474,-0.33467964362353086,-0.7813576622866094,-0.41138132847845554,-0.9581149281002581,-0.12560583790764213,-0.36237237276509404,0.38283220352604985,0.8486572168767452,-0.7250856445170939,-0.4262742712162435,-0.6163390004076064,0.6999372406862676,0.7381157949566841,-0.2174410312436521,-0.7133586234413087,-0.8004485336132348,-0.12635787716135383,-0.22045678552240133,-0.8461548006162047,-0.04640193795785308,0.9298567539080977,0.7309559131972492,-0.3441724772565067,0.5974177196621895,-0.10187070071697235,0.8378044683486223,0.05277513666078448,0.33451419649645686,0.4911340060643852,-0.7884555980563164,-0.2390151647850871,-0.5889280438423157,0.2749602450057864,-0.621689457911998,-0.9098761519417167,0.011207598261535168,0.6502064527012408,0.9376119147054851,-0.7742724223062396,0.4644878786057234,-0.40083673503249884,0.6851642639376223,0.5453367102891207,-0.02457199478521943,0.13283347291871905,0.10684507805854082,-0.9597784886136651,-0.5286794188432395,0.31194016244262457,0.6881700824014843,-0.34761610301211476,0.10896970378234982,0.18855883181095123,0.9171166606247425,-0.14922231761738658,-0.9447125499136746,0.7083952287212014,-0.45383723359555006,-0.4326212019659579,0.9925821656361222,0.32251917850226164,0.8456664863042533,-0.33945721248164773,-0.4677101280540228,-0.34947909135371447,0.4297865438275039,-0.14390883408486843,0.792510898783803,0.2630071397870779,-0.45535187143832445,-0.7809176812879741,-0.8522785641252995,0.7821759614162147,-0.7813468789681792,0.6980521748773754,0.6158079756423831,-0.8466471955180168,0.7231103107333183,-0.8071616967208683,0.786059936042875,0.7017763000912964,0.8024195451289415,0.22458314010873437,0.7551288385875523,-0.45907121617347,-0.133919145911932,0.8159649423323572,0.8866501748561859,0.7957973359152675,-0.26266520796343684,-0.6094428161159158,-0.6016164948232472,-0.5752941793762147,0.021593176294118166,0.942558060400188,-0.5671076127327979,0.06713444693014026,0.35817795107141137,0.7969213505275548,-0.7411200325004756,0.3243719763122499,0.5222446848638356,-0.7460068925283849,-0.20390117401257157,-0.0756219713948667,-0.44167434284463525,0.44888271717354655,0.008758099749684334,-0.03922802675515413,-0.13592991000041366,-0.6624325956217945,-0.8605121676810086,0.4212518064305186,0.6521407933905721,0.716475329361856,0.7022694521583617,-0.8404871486127377,-0.9530139127746224,0.931637714151293,0.9646196137182415,0.9840160645544529,0.7947792056947947,0.9604504872113466,0.10414195246994495,-0.9675056808628142,-0.8784368657507002,0.33539211889728904,0.14698872389271855,0.4782327734865248,-0.1676763971336186,-0.6788291712291539,0.4468596549704671,0.22579343290999532,-0.03758838679641485,-0.9478263081982732,-0.4007582305930555,0.24347417103126645,0.8612257624045014,0.5057285148650408,-0.2230424745939672,-0.740509248804301,-0.9943834780715406,0.06637967703863978,-0.7126585724763572,0.8139240415766835,0.7123501058667898,-0.3165336246602237,-0.6583847985602915,-0.7210742444731295,-0.236339604947716,-0.4176109414547682,0.5777504062280059,0.3891954328864813,0.5287006152793765,-0.5797200105153024,-0.9867002633400261,-0.27458298997953534,-0.39843654353171587,0.9958489839918911,0.6081359814852476,-0.5603736895136535,0.4680038155056536,0.6884363950230181,0.24442179454490542,-0.03443923965096474,-0.3343962817452848,0.2632997124455869,0.11367937503382564,0.3084410773590207,0.3686761832796037,0.1106379390694201,-0.18658546917140484,0.543922483921051,0.05916827172040939,-0.8284455928951502,0.9520044382661581,0.2931210654787719,-0.724655722733587,-0.8936008042655885,0.25428530806675553,0.39671457232907414,-0.7742246985435486,0.693017044570297,0.34913352178409696,-0.09104785416275263,-0.396650439593941,0.5702031343244016,-0.39183529326692224,-0.6243485598824918,-0.2391307158395648,-0.6181357363238931,0.6518787420354784,-0.9460402713157237,0.3903860221616924,0.4200957454741001,-0.8316475208848715,0.8016096423380077,0.7216743417084217,0.07639844715595245,0.8842669376172125,0.18890021042898297,-0.2919130614027381,0.7030606851913035,-0.8034911826252937,-0.3021012837998569,0.9372504465281963,0.5726539767347276,0.0022427942603826523,0.2346262689679861,0.8905160552822053,0.059120186138898134,-0.41418801713734865,0.5286086052656174,-0.684702489990741,0.2567024091258645,0.9684913279488683,0.7798977144993842,-0.7801532694138587,-0.5452703130431473,0.2456627655774355,0.6288024340756238,-0.8357255775481462,0.5326572377234697,-0.7581639583222568,0.5131570724770427,0.5298237623646855,0.11000749468803406,0.5297996965236962,0.4481082586571574,0.48252567555755377,-0.5220150337554514,0.30989136453717947,-0.11404092749580741,0.2423392659984529,0.6302070245146751,-0.6531629418022931,0.9150568628683686,-0.007175277452915907,0.5972202052362263,0.43378903763368726,-0.49338051304221153,-0.5583189227618277,0.058633096516132355,-0.9338899292051792,-0.6784409917891026,-0.668743806425482,-0.778478842228651,-0.6865471815690398,0.5612002131529152,0.21377998311072588,0.49332920787855983,0.04410995030775666,-0.053884354420006275,0.2669187542051077,-0.6556108021177351,0.5316883902996778,0.46335626766085625,0.5624043345451355,-0.5835188864730299,-0.7801844403147697,-0.4152203034609556,-0.15641250181943178,-0.1576536586508155,-0.2376869791187346,-0.6909047532826662,0.24135599797591567,-0.04920857911929488,0.9404018479399383,0.711032691411674,-0.09439632622525096,0.5332339983433485,0.31439884193241596,-0.6406847210600972,0.9019575151614845,0.1986051513813436,0.17271894495934248,-0.45884808618575335,0.9514671531505883,0.1044866400770843,0.42946125473827124,0.7626037732698023,-0.48303133621811867,0.7764405445195735,-0.7663672659546137,0.06112397741526365,-0.49106489727273583,0.6950761610642076,-0.6436537839472294,0.7337079150602221,-0.9616978201083839,0.010661146137863398,-0.021205289289355278,0.02150574792176485,0.07848895573988557,-0.8807635400444269,0.20779109373688698,0.8040805771015584,-0.6472428757697344,0.14179597981274128,-0.8121611545793712,0.39052461879327893,-0.11704331450164318,0.9469292229041457,0.6853028456680477,0.2657177518121898,0.4508449202403426,-0.6760233612731099,-0.7551356656476855,-0.8879985706880689,0.0954686258919537,0.9787728395313025,0.7122113625518978,0.3879831046797335,0.3368762945756316,-0.327648107893765,-0.9521868210285902,-0.8633632049895823,0.7943551335483789,-0.8463713307864964,-0.14415985578671098,0.9781718673184514,-0.7254785699769855,0.8932365020737052,-0.5685023977421224,-0.837254564743489,0.3851261795498431,-0.5471850638277829,-0.2693172665312886,0.027163083665072918,-0.3239349243231118,0.4665586710907519,-0.3927263398654759,0.9585626181215048,-0.6881976281292737,0.6782601680606604,0.5932557722553611,0.9806604883633554,-0.5443521183915436,-0.6869049938395619,-0.4737390512600541,0.1567497318610549,-0.1436560694128275,0.8097841194830835,0.8830730044282973,0.2974825017154217,-0.4333082241937518,-0.09951657336205244,-0.18215539446100593,0.8244350249879062,0.7380456463433802,-0.413212341722101,0.39080335898324847,-0.7270338679663837,-0.25116518093273044,0.19035361800342798,0.36839108588173985,0.3942508650943637,0.7872189772315323,-0.2252655546180904,0.22015114035457373,-0.8350278749130666,-0.25566895212978125,-0.825374748557806,0.9964541159570217,0.8150991755537689,0.9244379648007452,0.3398503800854087,0.06352770701050758,-0.5657069934532046,0.4183104238472879,-0.6307371803559363,0.46659524692222476,0.3195027899928391,-0.9044846808537841,-0.25907510751858354,-0.1581406150944531,-0.42772255884483457,-0.13016960863023996,-0.4164160406216979,-0.6605647271499038,-0.9706747019663453,0.07170375948771834,-0.13187836343422532,-0.6543625849299133,-0.5382804786786437,0.5280934665352106,-0.31764573231339455,0.08886758424341679,0.5157203082926571,-0.4149145190604031,0.8696481622755527,0.36198377003893256,0.2282606172375381,0.8139321226626635,-0.346777836792171,-0.06290080957114697,-0.9371500345878303,-0.7870926954783499,-0.024973166175186634,-0.45376076363027096,0.11495219962671399,0.06674847193062305,0.18086824053898454,0.42421421920880675,-0.32564314268529415,-0.7236392898485065,-0.3032303424552083,0.395875527523458,0.1527125658467412,-0.5442547528073192,-0.4162445133551955,0.6537283277139068,-0.9066573539748788,-0.34782270807772875,0.05766241531819105,-0.024680146481841803,0.8308319323696196,-0.4092648969963193,0.7254353705793619,-0.042916606180369854,-0.96683403942734,0.7741605490446091,0.003084989730268717,-0.15941749326884747,-0.7871222388930619,0.22390493005514145,-0.35161621402949095,0.12477884721010923,-0.9486956768669188,-0.018182076513767242,0.9068239131011069,0.2893540854565799,-0.34810998663306236,0.8102987967431545,0.5496699754148722,0.24545084265992045,-0.5079960636794567,0.7154776509851217,0.5273654982447624,0.00997662590816617,-0.6898651411756873,-0.5165304909460247,0.850479903165251,0.2917659538798034,0.7363907122053206,0.5633977171964943,-0.2992742881178856,-0.4343571402132511,0.8641503136605024,0.6566229267045856,0.43406977830454707,-0.2552175014279783,0.9248785814270377,0.04320078669115901,0.991079212166369,-0.343580920714885,0.5852953041903675,-0.12757983012124896,-0.4982298598624766,-0.5931098256260157,0.6829986763186753,0.6969135324470699,0.7351410994306207,0.3490563640370965,0.8650830225087702,0.4324627202004194,0.8368171518668532,-0.6456569121219218,0.8604509579017758,0.19669850310310721,-0.5704387617297471,-0.4430695385672152,-0.3545141573995352,0.1367950108833611,-0.29260652512311935,-0.14003285625949502,0.539861127268523,-0.6550100473687053,-0.005437408573925495,-0.7277151038870215,0.8506529098376632,0.9122163932770491,0.9586185193620622,-0.3285730192437768,-0.4397361371666193,0.6414968087337911,-0.32541777193546295,0.7312721898779273,0.23165432224050164,-0.83684675488621,-0.7602592599578202,0.6890463554300368,0.5971600180491805,-0.748631046153605,0.08250710414722562,-0.49232420651242137,-0.7212694529443979,0.5655527776107192,0.325442411005497,0.8809228860773146,0.11574035743251443,0.12472297577187419,0.5024738977663219,0.7545014508068562,0.9597696620039642,-0.6886245859786868,-0.4482753574848175,-0.45403786981478333,-0.8624329674057662,-0.003295998089015484,-0.28858822025358677,-0.9882977567613125,-0.12378413090482354,-0.735139908734709,-0.7462201048620045,-0.9642305867746472,0.6426285086199641,-0.07632523309439421,0.5122601981274784,0.712721707765013,0.7154364297166467,-0.5961675937287509,-0.14614512817934155,0.6677588485181332,0.8007718189619482,-0.40843307925388217,0.5979106435552239,0.7684044516645372,-0.515730650164187,0.8038029852323234,-0.28889022301882505,-0.9331770087592304,0.5747213056311011,-0.8430795925669372,-0.9716555415652692,0.23024782352149487,0.07869416056200862,0.9495583130046725,-0.5598404272459447,0.41154674906283617,0.8788316324353218,0.7754411296918988,-0.003468165174126625,0.8138336101546884,-0.3309627124108374,-0.5203227708116174,0.04732081526890397,0.8087584162130952,-0.6257224888540804,0.24144333181902766,-0.9160526837222278,-0.48057752288877964,0.641752200666815,0.300159418489784,0.8371151969768107,-0.42929898388683796,-0.17519710259512067,0.03624191461130977,0.31595342932268977,0.12249417509883642,0.9351806780323386,-0.1634189155884087,0.768641525413841,0.1456674374639988,-0.8397963005118072,-0.7816118071787059,-0.12974475137889385,-0.27464129915460944,-0.048293658066540956,0.8347068377770483,-0.9956093761138618,0.020464930217713118,0.8502841270528734,-0.44105685595422983,-0.10808097524568439,-0.6075668865814805,0.8428428918123245,0.7349697914905846,-0.937381821218878,-0.28160001523792744,-0.5206136372871697,0.3719785981811583,0.4345152983441949,0.3711590450257063,-0.682410707231611,-0.12226942554116249,-0.8050046027638018,0.9837155798450112,0.4997121673077345,-0.6215764759108424,-0.49977449094876647,0.13570866687223315,0.36983531108126044,-0.9810461685992777,-0.2927802177146077,0.7802773416042328,-0.45274094492197037,-0.8764751772396266,-0.37508261436596513,0.8272791365161538,-0.31631792103871703,-0.7722624251618981,-0.08821345586329699,-0.329475955106318,-0.3564320565201342,0.716134452726692,-0.40693063754588366,0.9167516720481217,0.5456759631633759,0.39070304157212377,0.4873411771841347,0.8695990815758705,0.6807765439152718,0.04537605494260788,-0.31560321245342493,0.6480388399213552,-0.13791561499238014,-0.44095171242952347,0.2904166760854423,-0.2793527548201382,0.3267012117430568,0.4314420586451888,0.44617717573419213,0.7117839637212455,-0.8463542019017041,-0.026966608595103025,-0.6926789367571473,-0.7568640690296888,0.38462456641718745,0.36998551432043314,-0.7201688210479915,-0.26181388553231955,0.8695525866933167,0.9408206311054528,0.32988962018862367,-0.12936059152707458,-0.2806959548033774,-0.9651475851424038,-0.5330799012444913,-0.43568329280242324,0.14744555298238993,-0.556104180868715,-0.48489011405035853,-0.9179995758458972,-0.7688262783922255,0.6451598834246397,0.11138054449111223,-0.9850315195508301,0.868923859205097,0.0469932914711535,0.9656259454786777,-0.4469150649383664,0.8644093568436801,-0.4553704680874944,0.07179132010787725,-0.5429870341904461,-0.4510738733224571,-0.7215976919978857,-0.871934596914798,0.8327316651120782,0.9433081964962184,-0.501588823273778,0.79880391061306,0.6117486883886158,-0.8172178827226162,-0.7839103634469211,-0.9336811397224665,0.6085030268877745,-0.8514988967217505,0.1624380717985332,-0.18342541437596083,0.03106511104851961,0.47843984607607126,0.5806194054894149,-0.29904917627573013,-0.14042844530194998,-0.722664917819202,-0.8363913195207715,-0.16710921144112945,0.6077657919377089,0.32816549856215715,-0.20979504566639662,0.9844442089088261,-0.423410861287266,0.4007164095528424,-0.5866178353317082,0.0927443290129304,0.44586251536384225,-0.3385727140121162,0.9477597922086716,0.015136876609176397,0.19255580101162195,0.7308124448172748,0.8518579872325063,0.005651476327329874,0.22926619136705995,-0.4414245607331395,-0.2370877042412758,-0.32282065879553556,-0.5630135959945619,0.05515832640230656,0.7535551693290472,-0.6124572204425931,-0.39472533389925957,-0.0381633210927248,-0.647417348343879,0.1282164277508855,0.7754902271553874,-0.21555463084951043,0.08729564258828759,-0.21550888055935502,0.4543073009699583,-0.6963604064658284,0.5766052049584687,-0.7573128640651703,0.49216494243592024,0.8543085851706564,0.8088578898459673,-0.09891280019655824,-0.16836765175685287,-0.8019672888331115,0.33068183483555913,0.7502935486845672,0.4032261208631098,0.6505398619920015,0.7272622603923082,-0.9146313797682524,-0.3954203622415662,-0.2719389102421701,0.7443215865641832,-0.17789919394999743,0.4004063317552209,-0.610005815513432,0.48717036889865994,-0.3027875544503331,0.0035743308253586292,0.17372607020661235,0.38368103187531233,0.28564491076394916,-0.39825533982366323,0.6980036189779639,-0.20247314032167196,0.5515810246579349,0.22557930555194616,0.5879168468527496,-0.946450243704021,-0.5291073103435338,0.23338874243199825,-0.9367732512764633,-0.24456402147188783,-0.7661628690548241,-0.12612947216257453,0.9672411605715752,-0.7072886857204139,-0.9202537266537547,-0.8492693919688463,-0.365389009937644,0.5278823799453676,-0.8971100244671106,-0.6137693305499852,-0.7469104290939867,-0.7175937704741955,-0.7161027961410582,-0.6961165410466492,-0.05466295313090086,0.5946726012043655,0.3494414919987321,0.8188969045877457,-0.20818232465535402,0.1770164668560028,-0.2007909594103694,-0.6427743127569556,-0.6285266047343612,0.5258798403665423,-0.5658707162365317,0.01986835151910782,0.7342485720291734,-0.6295626489445567,0.47156184539198875,-0.23052916629239917,0.31761358492076397,0.039602881763130426,-0.7687529204413295,0.7963197785429657,-0.38138201367110014,0.8723641894757748,0.7572232419624925,0.42821210203692317,-0.6812222204171121,-0.4916165047325194,-0.1511885542422533,0.10560539783909917,-0.645005822647363,0.5744752828031778,-0.1850737240165472,0.5507180513814092,0.25521830143406987,0.8858358105644584,-0.033503863494843245,0.745724197011441,-0.4591638841666281,0.8469588737934828,-0.30787211284041405,0.06127721257507801,-0.3050552108325064,0.39289669366553426,-0.5122473808005452,-0.324496665969491,0.025235742330551147,-0.7049970147199929,0.8533559399656951,-0.3094485839828849,0.6286144936457276,0.7234178953804076,-0.29962296411395073,-0.9075095760636032,0.03748343698680401,0.6292817876674235,-0.5183981093578041,0.47877967078238726,0.7243233793415129,-0.6922773448750377,0.6124711511656642,0.3558759754523635,-0.7895197346806526,0.7588197872973979,-0.765603821258992,-0.5875513888895512,-0.9519181507639587,0.9934168388135731,0.916116660926491,0.762995864264667,-0.3279391382820904,-0.36261134687811136,0.39261586870998144,0.5239776116795838,0.98680504783988,0.6835953178815544,-0.6860450897365808,0.8230040171183646,0.4915020656771958,0.3367908410727978,0.6835402413271368,0.7739984169602394,0.8890813426114619,-0.2155446968972683,-0.9534308803267777,-0.4671973902732134,-0.48393320478498936,-0.22616959968581796,0.1374642550945282,-0.37102866917848587,-0.8075096043758094,0.9344128859229386,-0.06022386532276869,0.278357760515064,-0.712766912765801,-0.8919385513290763,0.618007711134851,0.4831945998594165,0.5269405920989811,-0.3066574619151652,-0.08831332577392459,-0.92460558982566,-0.4649463454261422,0.9598520845174789,0.05395260965451598,-0.23438965249806643,-0.6241178829222918,-0.17395875975489616,0.8864539065398276,-0.6071069748140872,-0.40695405984297395,-0.08376977778971195,0.7681670640595257,-0.561045974958688,-0.7962493048980832,-0.10631537158042192,-0.25185304367914796,-0.09617910534143448,-0.30766037572175264,0.48047331999987364,0.3197095380164683,0.8333279495127499,-0.7828775402158499,0.609624894335866,-0.1981340297497809,-0.2869151961058378,-0.3854495342820883,-0.9490184490568936,-0.82499576266855,-0.7997226966544986,0.33516425639390945,0.6794077893719077,-0.32142566749826074,-0.5460543003864586,0.34647894045338035,0.7209046161733568,-0.9634296102449298,-0.8442062148824334,-0.9106010664254427,-0.8799046264030039,-0.9416784741915762,0.40911445766687393,-0.8675455753691494,0.1979569774121046,0.1534521314315498,-0.013192673213779926,-0.6285453299060464,-0.43287531193345785,-0.1524810274131596,0.8640549522824585,-0.7444086372852325,-0.09908685833215714,0.36026628594845533,0.6920752855949104,-0.8309865854680538,-0.1413642787374556,-0.7022850550711155,-0.10785345872864127,-0.042647752445191145,-0.8179539078846574,-0.4839143743738532,0.14706668816506863,-0.6485670218244195,-0.9804926123470068,0.764602919574827,-0.8057070742361248,0.665239873342216,-0.09748522425070405,-0.22128016594797373,-0.14026911882683635,0.05636922921985388,0.4455317873507738,0.8945786748081446,0.23128299321979284,-0.39074147772043943,-0.9083602912724018,0.906898956745863,-0.7095416747033596,0.14306533662602305,-0.9465737319551408,-0.3527568536810577,-0.9197296914644539,-0.9391229674220085,0.8687532772310078,-0.024914529640227556,-0.7903286921791732,0.46165282744914293,0.6148863648995757,0.5846886378712952,-0.4452375518158078,-0.054209721740335226,-0.4779434879310429,0.12218456482514739,0.1533387158997357,0.7533770096488297,0.47353389766067266,-0.028480687644332647,0.980043288320303,0.3830834939144552,-0.6937830937094986,0.8073769826442003,-0.9311761325225234,-0.43574645835906267,-0.33687516301870346,-0.2901409869082272,0.8445411012507975,0.14295436721295118,0.5253660692833364,0.345860889647156,0.573627254460007,0.9637425756081939,0.10114672780036926,-0.10416482435539365,-0.3322646045126021,-0.24208918772637844,-0.40533946035429835,-0.9542178576812148,-0.3126278333365917,-0.542480118572712,0.8471465269103646,0.004269010853022337,0.4692514515481889,0.6992054404690862,0.2646206235513091,-0.04578673467040062,-0.2592291049659252,-0.5872818790376186,0.6820481908507645,0.5869417958892882,-0.47901824163272977,0.16318275686353445,-0.3673339653760195,-0.5008021811954677,0.6785971601493657,0.05189704708755016,-0.07410650188103318,0.6428281562402844,-0.5903945192694664,0.8802930330857635,0.3954916871152818,-0.892318969592452,0.9792488976381719,0.018793645780533552,0.7431364934891462,-0.9747190321795642,0.2677573305554688,0.5554173672571778,-0.012923536356538534,0.9768115463666618,-0.2523018540814519,-0.6232778872363269,0.7085520294494927,0.8673001453280449,-0.970440206117928,-0.13832259038463235,0.8863219157792628,0.5132842208258808,0.3286393266171217,0.24799895333126187,-0.04638950293883681,-0.15703967586159706,-0.2764880880713463,0.2755619874224067,-0.9141193316318095,0.573412069119513,0.14724524831399322,0.7207844057120383,0.5455746883526444,0.6853903271257877,-0.2961998609825969,-0.15162766445428133,0.9396821409463882,0.33412751322612166,-0.5394559125415981,0.6769618173129857,-0.5891780159436166,0.6458341376855969,-0.29106833366677165,-0.9298683102242649,-0.5032836878672242,-0.7517142533324659,0.773169073741883,0.22015749057754874,-0.44561290135607123,0.23063223529607058,0.23317208420485258,0.7270751981996,-0.8402902139350772,-0.27362407464534044,-0.8154325233772397,-0.8833220615051687,0.9534280560910702,0.9462402816861868,-0.8445192566141486,0.7548601771704853,0.8020855761133134,0.48006501607596874,-0.7862795349210501,0.3942278176546097,-0.9129997561685741,0.7386519769206643,-0.37148714531213045,0.653075180016458,0.020712911151349545,-0.01306070713326335,-0.23941254476085305,-0.7004093737341464,-0.8889895337633789,0.958248415030539,0.21732572093605995,-0.4009819505736232,-0.19761376036331058,0.9069959740154445,-0.9083444066345692,-0.3119323714636266,0.8653936441987753,0.38459465745836496,-0.9579243869520724,0.5320711750537157,0.0881264409981668,0.46932653430849314,0.04617353854700923,-0.7004251936450601,-0.5539680649526417,-0.5726769557222724,-0.46754083363339305,0.8957724738866091,0.718335225712508,-0.841846315190196,0.22541511431336403,0.4271398256532848,0.03594159847125411,0.4334222939796746,0.7977961641736329,-0.9937313115224242,-0.8327804119326174,0.1397852310910821,-0.7542391531169415,0.6685456912964582,0.049710195511579514,-0.5363575434312224,0.7938478458672762,-0.45629090908914804,-0.9964317344129086,0.7141522006131709,0.3034881860949099,-0.5291985776275396,-0.45659472653642297,0.3733897265046835,0.7095599323511124,0.62027696846053,0.5676253442652524,-0.9737759912386537,-0.8791107940487564,-0.952178459148854,-0.2303615310229361,0.5430385326035321,-0.7519180667586625,0.25056876614689827,0.7491460470482707,0.08801936451345682,-0.5952236489392817,0.6677227956242859,0.6200985396280885,0.3742263652384281,0.39385403133928776,0.3710286426357925,0.6170771615579724,-0.9602244831621647,-0.2950704242102802,0.4793652072548866,0.7788510071113706,-0.14588654087856412,-0.5779832317493856,-0.3506714915856719,-0.07828011689707637,0.4906740770675242,-0.7277847328223288,0.8535109283402562,0.057565522845834494,-0.8512894297018647,-0.8259871988557279,0.6509460303932428,0.14668191457167268,0.3128408552147448,-0.42059516347944736,-0.48323251912370324,-0.2509731366299093,0.49813350150361657,0.5575787122361362,0.07218587165698409,0.9445334901101887,0.5430324147455394,-0.34931245213374496,0.936426327098161,0.3082234668545425,-0.5529639390297234,0.608404379338026,0.1971234385855496,0.98980847094208,0.09761926485225558,0.4477973757311702,0.7360285175964236,0.8994850949384272,0.29573529586195946,0.5054520214907825,-0.3977232612669468,-0.14057545689865947,0.26265279995277524,-0.6865431871265173,-0.08608014555647969,-0.283206467051059,-0.915893514174968,0.5078211934305727,-0.9084475911222398,-0.140459090936929,-0.7668792284093797,0.8678182773292065,0.3430883656255901,-0.6328160772100091,-0.6469541122205555,0.15875740395858884,0.2834150572307408,-0.7618960128165781,0.8075106129981577,-0.7569031845778227,-0.2094606081955135,0.8585391817614436,-0.8784387134946883,-0.350584514439106,-0.4175026663579047,0.023522250819951296,0.7159148911014199,0.08281102729961276,0.41210953425616026,0.2951821214519441,0.7229084218852222,0.276526115834713,-0.17107537062838674,0.17261063726618886,-0.36549285240471363,-0.9303032807074487,0.3050914006307721,0.9374893195927143,0.37990659521892667,-0.10860009863972664,-0.2653570636175573,0.99274199642241,0.5357515779323876,-0.8844914813525975,0.12945432914420962,0.20231090253219008,-0.9357556784525514,0.1262047286145389,0.06186067080125213,0.21624846337363124,0.0918309735134244,-0.7793683530762792,-0.8670289502479136,0.5016455333679914,0.363493743352592,-0.8307484956458211,0.7370367590337992,-0.809854662977159,0.030719198286533356,0.9124798392876983,-0.6091729043982923,0.9608308235183358,0.9100825726054609,0.43224676279351115,-0.8318582880310714,-0.4069996392354369,0.2025286485441029,0.022337753791362047,0.7362905810587108,0.7513063070364296,0.38632439635694027,-0.588254903908819,0.6743672210723162,-0.6474295696243644,-0.9710302618332207,-0.24828287679702044,0.5865802164189517,-0.690122492145747,0.22085760720074177,0.7769927494227886,-0.4750702874734998,-0.1289989873766899,-0.2356301578693092,0.7365740635432303,-0.6626980588771403,0.4009070270694792,0.9387328187003732,0.2163289012387395,-0.9912988995201886,-0.22351011913269758,0.45068836864084005,-0.9235377442091703,-0.9615175863727927,-0.3239083308726549,-0.8037967551499605,0.8819459062069654,-0.38778471713885665,-0.6213953932747245,-0.5014322991482913,0.8574905656278133,0.30235631484538317,-0.9930880493484437,0.5364744514226913,0.9893090100958943,0.25741453329101205,-0.45719231804832816,-0.5574219874106348,0.2727316515520215,-0.835680777207017,-0.009493596386164427,-0.12349312379956245,-0.3099189172498882,0.8053686390630901,-0.6745677250437438,-0.7340886685997248,0.8669050098396838,-0.4961283504962921,0.49320168094709516,0.23108520591631532,0.2353980508632958,0.6929345969110727,0.12980643846094608,0.23050536355003715,0.8896475345827639,0.04615485155954957,-0.6298974743112922,0.4620940424501896,0.8191960901021957,-0.513403938151896,0.5385708846151829,-0.9048542808741331,-0.7424731464125216,0.23692042054608464,-0.5354878706857562,0.6622018525376916,0.6294155805371702,-0.0526361558586359,-0.40212119929492474,0.5970256570726633,-0.3746800390072167,0.6179397427476943,0.21210214076563716,0.41595065919682384,-0.8134091654792428,0.7305034110322595,-0.6901123458519578,-0.04289247374981642,0.7284303675405681,-0.007901031989604235,-0.6553512583486736,0.2712064473889768,-0.0665978891775012,0.10917919082567096,0.2088421224616468,-0.815369498450309,0.04377531632781029,0.32794127939268947,-0.30570162320509553,0.8878347501158714,0.9438384100794792,0.8010834027081728,-0.37337061390280724,-0.2122975760139525,0.7615315248258412,0.35546113969758153,0.7137930444441736,0.7796449004672468,-0.0022335373796522617,0.27089288691058755,0.6979141174815595,-0.869049069005996,-0.6824176432564855,0.5594351110048592,-0.15490209544077516,-0.17704357532784343,-0.887560092844069,0.678074655123055,-0.7738414299674332,-0.3941134214401245,0.6642579976469278,0.044336584862321615,-0.3641327554360032,0.9661651873029768,0.10862151626497507,0.983971118927002,-0.5885069663636386,-0.07817101990804076,0.8279207870364189,0.5923142335377634,-0.08172391634434462,0.055405300576239824,-0.16261458536610007,-0.46091157430782914,-0.860000457148999,-0.3135445462539792,0.9539118180982769,0.47004365269094706,0.8464317028410733,-0.5186470430344343,0.17281644232571125,-0.9807489952072501,0.26508458983153105,0.41014843387529254,-0.8575722225941718,0.15448912465944886,0.13812457770109177,0.23787322035059333,-0.2178834262304008,0.22788589354604483,-0.31863355031237006,0.22691303864121437,-0.1698500462807715,0.05551872635260224,-0.4040521811693907,-0.8249419378116727,-0.31296810787171125,-0.8640076816082001,-0.545929815620184,0.1231849449686706,0.4752034340053797,0.3774732379242778,-0.41136845853179693,-0.33118055714294314,-0.4905757298693061,0.3352453908883035,-0.4130268176086247,-0.007051171734929085,0.06774316122755408,-0.60585858207196,0.8637280599214137,0.08068384556099772,-0.6813865453004837,0.4973339741118252,-0.9452801132574677,-0.18166580609977245,-0.11754218861460686,0.6372566255740821,-0.09840210434049368,0.7127962708473206,0.8393611027859151,0.8229597909376025,-0.381236560177058,0.5789358294568956,0.27771961921826005,0.7162117292173207,-0.36632202100008726,-0.28300250181928277,-0.41625204076990485,-0.22961727296933532,0.5578660140745342,-0.24203463830053806,0.73901457618922,0.7152226027101278,-0.2841660897247493,0.4244452118873596,-0.9002144453115761,0.5204932601191103,-0.4317996217869222,-0.9597687539644539,-0.24576592491939664,0.4744804576039314,0.4995090835727751,0.23299134289845824,0.9938424048013985,-0.8611495606601238,0.03193590138107538,-0.33385701617226005,0.3082400052808225,0.6025175019167364,0.8577992916107178,-0.44157869508489966,0.47311498830094934,0.23332423949614167,-0.9042413467541337,0.15507537638768554,0.21518351882696152,-0.9525959827005863,0.35496744653210044,0.6574244373477995,0.6310329628176987,-0.12743168650195003,0.5715570813044906,0.7817913428880274,-0.8406647457741201,-0.017301096115261316,-0.07082220772281289,0.9487297548912466,-0.8410696461796761,0.45433447090908885,0.28553204983472824,-0.019479404669255018,-0.7437257044948637,-0.699363658670336,-0.12168821087107062,-0.5662906216457486,0.010279074311256409,-0.10418982990086079,0.021504553966224194,0.5091838235966861,0.7288309102877975,-0.4499948341399431,0.9058934398926795,0.22463489789515734,-0.7400102126412094,0.6662013679742813,-0.09667859831824899,0.49163574865087867,-0.2401131670922041,-0.7510210024192929,0.28154369723051786,-0.5435793688520789,0.4632649915292859,0.7463770271278918,-0.02590268012136221,0.8803136413916945,0.7147463522851467,0.13052540784701705,-0.3233920349739492,-0.9329923260957003,0.013240780681371689,-0.5077034323476255,-0.13012225599959493,0.14093592390418053,0.43891746643930674,-0.9499653885141015,0.6397353922948241,0.11511933291330934,-0.9705853210762143,-0.21953718084841967,0.7234725262969732,-0.8607739596627653,0.8721902836114168,0.6786397402174771,0.3016448160633445,0.581396296620369,-0.990218713413924,0.21018679905682802,0.33755189971998334,-0.46870090905576944,-0.4404476801864803,-0.2624443485401571,0.9131584791466594,0.39669044548645616,-0.3686685170978308,0.6953737433068454,0.18093010922893882,-0.04158011917024851,-0.24604838760569692,0.18459338741376996,-0.7993664774112403,0.07356350589543581,-0.8631674805656075,-0.5393533813767135,-0.13950737146660686,-0.6648448728956282,-0.1330873346887529,-0.8720628507435322,-0.4980450994335115,-0.9850473408587277,-0.7205435079522431,-0.6522191637195647,0.5077511528506875,0.4093543579801917,0.15044899797067046,0.3408669917844236,0.6979427547194064,0.1832287609577179,-0.6446165014058352,-0.26419581240043044,-0.7200907990336418,-0.5579176004976034,-0.9147766553796828,-0.7100639417767525,0.6837527109310031,-0.3192024873569608,-0.14746819250285625,0.39425877667963505,-0.6575306607410312,0.11686867754906416,0.7379053169861436,0.688858559820801,0.25923320231959224,0.21100362623110414,-0.05677783256396651,-0.8614122187718749,0.9946824847720563,0.3352295705117285,0.40790077624842525,-0.704501308966428,-0.8775974097661674,-0.9018599479459226,0.32954226341098547,-0.9802911845035851,-0.05765803065150976,0.9115939782932401,0.1890823026187718,0.3103199200704694,0.6850230437703431,-0.2852782472036779,-0.17989068571478128,-0.30889103235676885,-0.2060630451887846,0.06153014441952109,0.7806283910758793,-0.7905175238847733,-0.9416721826419234,-0.31137232249602675,-0.23526224493980408,0.6839385023340583,0.2444661734625697,-0.43784352857619524,0.6180866030044854,0.7319932854734361,-0.446551697794348,0.48591524409130216,-0.057894452940672636,-0.9078900841996074,-0.7315323087386787,-0.996504994109273,0.23077429831027985,0.7278363574296236,0.7135062990710139,0.6335312062874436,-0.6623353636823595,0.033601398114115,-0.9418810647912323,-0.5637907427735627,-0.978553996887058,-0.6078387070447206,0.11493733152747154,0.08651831327006221,-0.4720862805843353,-0.018514871131628752,0.42529707308858633,-0.506568948738277,-0.5954018663614988,0.548602809663862,-0.9915059930644929,-0.12906073406338692,0.959966629743576,-0.9805546537972987,-0.023436760529875755,0.20643435325473547,0.4849367383867502,-0.9561026254668832,0.4528460935689509,0.9671426420100033,-0.7056961636990309,-0.13601612485945225,0.3941861940547824,0.6291176988743246,-0.2841610130853951,0.6677891430445015,-0.887415686622262,-0.04926581773906946,0.24899018229916692,-0.8152289809659123,0.6407187487930059,0.5786506002768874,-0.0941775981336832,0.8488130588084459,0.6743453522212803,0.26377965323626995,-0.5620457464829087,-0.01689531048759818,-0.640486050862819,0.9784755548462272,0.4889480019919574,-0.1529677347280085,-0.1703336862847209,0.16328982915729284,0.6704490999691188,0.723583868239075,0.9689694833941758,-0.973684296477586,-0.1962203849107027,-0.12028449354693294,-0.5144304730929434,-0.564497740007937,0.5710306731052697,-0.5955561525188386,0.7433465966023505,-0.8548865946941078,-0.49981397902593017,0.5936865583062172,0.9441758333705366,-0.6187811195850372,0.8948913333006203,0.40735173504799604,0.7219564090482891,-0.8944154125638306,-0.9164562881924212,0.485431392211467,-0.3980763303115964,-0.6952485563233495,0.662302820943296,0.6377569902688265,-0.3969748611561954,0.619776557199657,0.06946283346042037,0.030190644320100546,0.9432506607845426,-0.31427921913564205,0.12526560900732875,0.33071777364239097,-0.17158621875569224,-0.8418819340877235,-0.9827940184623003,-0.6081445883028209,0.8346745911985636,0.7713410113938153,-0.7807163768447936,0.1738307001069188,-0.7634446867741644,0.3379356344230473,0.9638364990241826,0.4792110729031265,-0.7702091466635466,-0.029537026304751635,-0.6795308850705624,-0.5075791380368173,0.7143537164665759,0.5780035122297704,-0.02497371891513467,0.5291061354801059,0.7758968654088676,0.9850781387649477,0.5495267985388637,0.6490624551661313,-0.0969278384000063,0.3236990449950099,0.9327008286491036,-0.11387271108105779,0.6570504773408175,-0.40137399826198816,-0.1774970623664558,-0.7474654261022806,0.9870443255640566,0.9334184103645384,0.5522521389648318,0.17647789139300585,0.06638123095035553,0.8896187767386436,-0.9291738984175026,0.1412343978881836,-0.9506614780984819,-0.6993555836379528,0.5707209510728717,0.4742434681393206,-0.4033871251158416,-0.18675535917282104,-0.6336578298360109,-0.3489102739840746,-0.23381362622603774,0.2448483519256115,-0.6646018903702497,-0.1466891341842711,-0.4613687004894018,0.795330501627177,0.6507352059707046,0.41278137266635895,0.3404440372250974,0.11582900118082762,0.27102332562208176,-0.7955026398412883,-0.35670151887461543,-0.8168747145682573,-0.05211086291819811,0.8938619806431234,-0.048479743767529726,-0.9890714609064162,-0.547490764874965,0.7950934455730021,-0.5151965427212417,0.3159010955132544,0.06778945634141564,-0.3673754525370896,0.9116848697885871,0.32505709305405617,0.5544364876113832,-0.07397669600322843,0.5979534382931888,-0.22786361631006002,0.5586380795575678,-0.38379050930961967,-0.4967367243953049,0.493286709766835,0.025062345899641514,-0.5192647846415639,-0.8879987243562937,0.6763923787511885,0.5131669165566564,-0.38479726994410157,-0.33683230075985193,0.7781987045891583,0.853159031830728,-0.3803065945394337,-0.12316836789250374,-0.5279544936493039,-0.5458588432520628,-0.4533015382476151,0.8948088209144771,-0.6435235473327339,-0.6724928268231452,0.6113205533474684,0.8671729061752558,-0.08893596939742565,-0.5832354030571878,0.42270534532144666,-0.8141726427711546,-0.0375997070223093,-0.7486716802231967,-0.7625155770219862,-0.4691536440514028,-0.2642300804145634,0.2769626216031611,-0.7235612282529473,0.21363551076501608,-0.9894118956290185,-0.6591197494417429,-0.2990830666385591,0.3181557389907539,0.9269380932673812,0.7051601004786789,-0.38710120087489486,0.7803802066482604,-0.6798847364261746,0.08882800070568919,-0.9232069835998118,0.11532545275986195,0.27467986615374684,-0.8927490250207484,0.7098859706893563,-0.6682032742537558,-0.6993214623071253,0.010267010889947414,-0.5301332897506654,-0.14318251702934504,-0.4310321407392621,0.8352252054028213,0.5859789573587477,-0.20449504908174276,-0.6538304751738906,0.7684128489345312,-0.480860891751945,0.26063199155032635,-0.9778869985602796,-0.8207957716658711,-0.7150304252281785,-0.5509402523748577,-0.0009689023718237877,0.7474327934905887,0.7028175978921354,0.05230511166155338,-0.037636515218764544,-0.3520374372601509,0.373042456805706,-0.7193463803268969,-0.2735557979904115,-0.423224831931293,0.3052512858994305,0.5828132997266948,-0.7199805635027587,0.2789162574335933,-0.9293736265972257,0.3713753526099026,-0.7039567958563566,-0.23310029273852706,-0.7530790632590652,-0.9842998399399221,-0.05257000355049968,0.6383005869574845,0.22588781407102942,0.4544284506700933,0.19369451282545924,0.781519990414381,0.4427409595809877,-0.030587658286094666,-0.7920528808608651,0.9503315081819892,-0.47240615589544177,-0.6235175300389528,-0.696676452178508,0.40385979134589434,-0.14119970379397273,-0.5490365722216666,-0.5961990775540471,0.22949810326099396,0.883202102035284,-0.19542229222133756,0.4291307255625725,-0.021327598486095667,-0.215277508366853,-0.9756976300850511,0.02170921443030238,-0.25240219105035067,-0.6776728052645922,0.3771636951714754,0.6647052243351936,-0.23942004004493356,0.5195563132874668,0.8844854035414755,-0.73357875039801,-0.1998262321576476,0.17984165996313095,-0.030593753326684237,0.2760768490843475,-0.9400138659402728,-0.42959478637203574,-0.36828512651845813,-0.5612286240793765,0.5084054782055318,0.8607562854886055,-0.34143183613196015,-0.2803117479197681,0.704227710608393,-0.39656850695610046,0.6958046411164105,0.728769616689533,-0.8429174856282771,-0.8682725038379431,0.6846444588154554,-0.32314912462607026,-0.10586997354403138,-0.5175508568063378,0.6686587128788233,-0.14317318936809897,0.33725905418395996,0.35373853938654065,0.7864353735931218,0.031889243982732296,0.3635189034976065,-0.7799543258734047,0.8261381853371859,-0.3788643986918032,-0.41953068133443594,0.7322595021687448,0.3481197049841285,0.21537011256441474,-0.27938187727704644,0.08357211388647556,-0.5414708121679723,-0.5984506607055664,0.4945422518067062,0.06626748060807586,0.8788022855296731,-0.9511101902462542,0.3173030111938715,-0.32412988506257534,-0.21223560720682144,-0.9636946762911975,0.9543714416213334,0.5664561255834997,-0.7111757765524089,0.9631122625432909,0.3852685010060668,0.42457221960648894,0.1853885380551219,0.9654003879986703,-0.16131217870861292,-0.056383009534329176,0.6023089666850865,-0.2314669769257307,-0.09929239144548774,-0.04097295040264726,0.03219840535894036,0.34235955448821187,0.45097121270373464,-0.3632153938524425,0.24312647571787238,0.34798508509993553,0.6746034459210932,0.783171119634062,0.33099532313644886,-0.8966631572693586,0.016561245545744896,-0.043442550115287304,-0.6540673412382603,-0.10513671161606908,0.7779867239296436,0.3572160401381552,0.43686847761273384,0.3173513263463974,0.8695307448506355,0.12910983664914966,0.7044685664586723,0.9887414225377142,-0.2158650648780167,-0.7272668774239719,-0.7274417355656624,-0.5175694320350885,-0.9903104859404266,-0.16218332387506962,0.03391570318490267,-0.24469377659261227,-0.8561913762241602,0.06600146181881428,0.7523520360700786,-0.8586451411247253,0.22236847411841154,-0.4291524961590767,0.850226167589426,0.7202510889619589,0.8455374208278954,0.13283854024484754,-0.4992823153734207,0.34589357441291213,-0.759179187938571,0.13933909498155117,-0.5270957536995411,0.24021492339670658,0.3565876204520464,-0.30873142648488283,0.5355876251123846,0.4924020851030946,0.8144215801730752,-0.06571571761742234,-0.19748458918184042,0.7812181529588997,-0.030376692302525043,0.3248060834594071,-0.6392306438647211,-0.6649376433342695,0.9989572139456868,-0.6621619956567883,-0.9621152114123106,-0.18343717232346535,-0.2979208496399224,0.4123126179911196,-0.7973080086521804,0.06577285332605243,0.5399178541265428,0.2721441490575671,-0.23816539021208882,-0.056186493486166,0.012617184314876795,-0.014880305156111717,-0.6356276967562735,0.6793679199181497,-0.09097915096208453,0.06440165033563972,-0.6525749550200999,-0.15660240035504103,-0.7768949349410832,-0.7921048891730607,0.2717320160008967,0.9615889345295727,0.21873151790350676,0.2319295285269618,0.5534173394553363,0.4748176378197968,-0.5904973619617522,0.39298506919294596,0.34038704400882125,-0.6679022256284952,0.5135350730270147,-0.1282895440235734,0.4740483146160841,-0.25365251675248146,0.35078672505915165,0.8139670505188406,0.7914960770867765,-0.44544214056804776,0.03610336361452937,-0.4522468592040241,-0.681552467867732,0.546366457361728,0.161882599350065,0.5036233658902347,0.7396912882104516,-0.35630352096632123,-0.9955415143631399,-0.7495688456110656,-0.6723210788331926,-0.45778181590139866,-0.8459837045520544,-0.27223457768559456,-0.18971906369552016,-0.5355997318401933,0.23717950144782662,-0.8171152421273291,0.5041807745583355,0.5445125801488757,0.08429128676652908,-0.821072950027883,-0.3023700239136815,-0.959613102953881,0.14837940223515034,0.2869569566100836,0.6972806504927576,-0.7857793574221432,0.5269244946539402,0.07840563030913472,-0.4663165668025613,-0.16280129691585898,0.6887357514351606,-0.6848164075054228,-0.3711256319656968,-0.19488401804119349,0.903013828676194,0.9340546801686287,-0.5077997455373406,-0.6182697485201061,0.08312944462522864,-0.8027735934592783,-0.6527758198790252,-0.2878747102804482,-0.3141842829063535,-0.02343128342181444,-0.14675140846520662,0.3229554519057274,-0.8149380199611187,0.8237441862002015,-0.6674417331814766,0.2090895683504641,0.7096544690430164,-0.5648014009930193,0.4409034075215459,0.9614416994154453,0.9956261781044304,-0.4835919630713761,0.0001296629197895527,-0.00838573882356286,0.9013257720507681,-0.9391061472706497,0.46792617766186595,0.6085731140337884,0.3817090727388859,-0.9265620606020093,-0.6302613471634686,0.018277546856552362,-0.14210575772449374,-0.7534097754396498,0.09571296768262982,0.3461123169399798,-0.18826746195554733,-0.08301053987815976,0.43582713324576616,0.44436340872198343,-0.8892877791076899,0.06394187500700355,-0.8580280169844627,0.8326040850952268,-0.23738909512758255,-0.5389924263581634,0.4576407391577959,-0.4371558539569378,0.8702885778620839,-0.02304978622123599,-0.2957267235033214,0.20713172852993011,0.25948409270495176,-0.3715648022480309,0.5031331586651504,-0.4369680439122021,0.042086800560355186,-0.6391329104080796,-0.5669885128736496,0.08640002505853772,-0.1744549022987485,0.5984307257458568,-0.552168260794133,0.2232404537498951,0.7821421385742724,-0.689899689052254,-0.8457886194810271,-0.6272006561048329,0.538471476174891,-0.9804427605122328,0.9932055184617639,0.9887259872630239,-0.18337627360597253,0.1268719406798482,0.06113070575520396,0.666136312764138,-0.9403909505344927,0.5388081325218081,0.6669816765934229,-0.20685854647308588,-0.6901267133653164,0.7942894352599978,0.9373643812723458,0.30271307192742825,0.7028826395981014,0.6905469326302409,-0.9769633230753243,-0.4088158388622105,0.44455562345683575,0.7480248212814331,-0.8550531659275293,0.7551259272731841,-0.824318740516901,-0.42532773688435555,-0.5430825725197792,0.05407828511670232,-0.5362949762493372,0.2041754978708923,0.19948755390942097,-0.6983616417273879,-0.9684817953966558,-0.7467154976911843,0.30596066638827324,0.254202832467854,0.5123954862356186,0.6144385081715882,-0.8267546948045492,0.4711892488412559,-0.6573143028654158,0.19297221302986145,-0.9854084430262446,-0.42503552744165063,0.043295709416270256,-0.12708165030926466,0.2698329328559339,-0.4502402660436928,-0.9709762139245868,-0.1696039824746549,0.35161185171455145,0.4097869023680687,0.8654192010872066,0.5435594250448048,0.44715714640915394,-0.08940661000087857,-0.8403097544796765,-0.956482638604939,-0.838740705512464,-0.7654778379946947,-0.5172801618464291,0.8843523235991597,0.20069462293758988,0.7124805124476552,0.1071316092275083,-0.28238324634730816,-0.5210383771918714,-0.35686067678034306,-0.8975293161347508,0.5719095780514181,0.7040660935454071,0.1401857091113925,0.13570884428918362,-0.29139871010556817,-0.039040735457092524,0.7714520739391446,-0.07143174018710852,0.2424355447292328,0.5944751244969666,-0.32680092146620154,0.13478160509839654,0.10854025231674314,-0.7606168426573277,-0.5253614028915763,0.23263029288500547,-0.6105583612807095,0.9123356272466481,0.8582897651940584,-0.650030898861587,0.3248192141763866,0.032602793071419,0.6314724222756922,0.9763671699911356,0.7302040201611817,0.9661737862043083,-0.18795627495273948,0.9590809047222137,-0.3078048941679299,0.10907459165900946,-0.32092968188226223,0.45244551124051213,-0.834744546096772,0.8194857449270785,-0.6717081498354673,0.9047066681087017,0.869569824077189,-0.6595443524420261,-0.5892887930385768,-0.16282438300549984,0.021113657858222723,-0.6861682389862835,-0.8074366906657815,-0.5951460413634777,0.9592638746835291,0.8354645557701588,0.031140706036239862,-0.805972617585212,0.0640496788546443,0.17333414731547236,-0.3795561813749373,-0.8488815641030669,-0.5246497695334256,0.3421866726130247,0.43110082019120455,-0.5293986676260829,-0.7029489632695913,0.3175634001381695,-0.10583817306905985,0.9678073674440384,-0.3695562775246799,-0.6300217341631651,-0.021574607584625483,-0.3084310865961015,-0.8436866197735071,-0.608875491656363,-0.6885741110891104,-0.2400196921080351,0.035229646135121584,0.9942366778850555,0.06282576080411673,-0.5464268350042403,0.6875259075313807,-0.5808702493086457,-0.8097625742666423,0.9747784496285021,0.5056362259201705,0.3640208230353892,0.19133449578657746,-0.22921507619321346,-0.019832788966596127,0.4483598447404802,-0.22379758907482028,0.2235739571042359,0.46226468635722995,0.6713875364512205,0.6938684857450426,0.7888199896551669,-0.4922530520707369,0.17949964618310332,-0.5086163459345698,-0.8924913699738681,-0.8204622711054981,0.6850578873418272,-0.0461112717166543,-0.7314076898619533,-0.47309290850535035,0.8248428539372981,0.19383658282458782,0.7103602993302047,0.10906456923112273,-0.9767336384393275,-0.6597203398123384,-0.6037294375710189,0.607237636577338,0.699346530251205,-0.4257459728978574,0.3504629712551832,-0.7036816240288317,0.6378209781832993,-0.9786161896772683,0.8070837398990989,0.9289753059856594,-0.382401654496789,-0.6752901682630181,0.6432339181192219,-0.7842656318098307,0.7252069422975183,0.2456645555794239,0.5054091936908662,-0.4383460436947644,0.8522331309504807,-0.14007041277363896,-0.45003644609823823,-0.8366766665130854,0.31551204435527325,-0.3428739858791232,0.6336744744330645,0.11777855176478624,-0.32923284685239196,0.8080266700126231,-0.7173561067320406,-0.11501195700839162,0.314488991163671,0.49456534581258893,-0.7868666108697653,0.3066207328811288,-0.9295209860429168,-0.05142960092052817,-0.4464346100576222,-0.9504887820221484,-0.49121419712901115,-0.9585035559721291,-0.4191548493690789,0.3934971089474857,0.9721262860111892,-0.559760962612927,0.2982833753339946,-0.10145533597096801,-0.13132923049852252,-0.23661299794912338,-0.0026184911839663982,0.148325327783823,0.8644299767911434,-0.22577316826209426,0.847561008296907,-0.021875933278352022,0.5745395412668586,0.2879540575668216,-0.9199464749544859,0.3302654935978353,0.16542515950277448,-0.2295310408808291,0.7468918031081557,-0.7266054209321737,0.3206602423451841,0.8406858798116446,0.6321625588461757,0.32716071186587214,-0.48174148704856634,-0.30215194541960955,0.002600561361759901,-0.29717464791610837,-0.8318331181071699,0.4820906240493059,0.8518538749776781,0.9627272519282997,-0.1525534219108522,0.294086123816669,0.11619861656799912,-0.4195410115644336,-0.007118124980479479,0.19184403214603662,0.4628033107146621,0.27747087366878986,-0.9909177585504949,-0.7050350895151496,0.1900013000704348,0.6843415573239326,0.6786060566082597,-0.8645461802370846,0.5770265418104827,-0.2711027842015028,-0.6573876366019249,0.3931574169546366,0.46017874870449305,-0.11740798922255635,-0.4167585540562868,0.4372493587434292,-0.9418723280541599,-0.70685731805861,0.42105861008167267,-0.015033407136797905,-0.8536626757122576,-0.8603430711664259,-0.4371363860554993,-0.9203336737118661,-0.2509133368730545,0.18253179267048836,-0.6148150800727308,-0.02666814485564828,-0.2901323805563152,-0.993525548838079,0.5720164086669683,0.6632577078416944,0.1425096681341529,-0.2182460934855044,-0.010051513090729713,0.11293272860348225,-0.041667808312922716,-0.7526416396722198,-0.8550519086420536,-0.11800086544826627,-0.5047863163053989,-0.3231495381332934,-0.9146800693124533,0.9512943155132234,0.11328215338289738,0.9425255092792213,-0.4036263059824705,0.8508206424303353,0.5034226211719215,0.7426242814399302,-0.20406513521447778,-0.04137619864195585,0.9495639596134424,0.6635686038061976,0.948770004324615,0.10094978520646691,-0.11150121549144387,-0.5873980787582695,0.7584493197500706,-0.07970906607806683,0.8328992105089128,-0.16732089733704925,0.38626124896109104,-0.6693309508264065,-0.3933177194558084,-0.6242217235267162,-0.6694404385052621,-0.44525771774351597,-0.029280824586749077,0.2523632594384253,0.21845657052472234,-0.9432355626486242,0.5992928645573556,-0.537891604937613,0.3905642395839095,0.34334312891587615,-0.31717556063085794,0.4131641387939453,0.48080596420913935,-0.18549877032637596,-0.9497716762125492,0.999701127409935,-0.21203932911157608,0.9953702832572162,-0.13101846678182483,-0.5399550013244152,0.586720340885222,0.7807879243046045,0.7598230876028538,-0.34753522044047713,0.6270867865532637,0.27519167959690094,-0.08814036846160889,0.46018030028790236,0.40816289093345404,0.9953247928060591,0.1950757815502584,-0.9063164032995701,0.5723069892264903,-0.6903103515505791,-0.3166448399424553,-0.7543302262201905,0.35037781205028296,0.7232410879805684,-0.4176839403808117,-0.7789073889143765,-0.6382145821116865,-0.36892035929486156,-0.2884157616645098,0.45111801428720355,0.48276464315131307,0.2279786099679768,0.9344341964460909,-0.02677157334983349,-0.01799704786390066,0.6368784853257239,0.4562316141091287,0.8087594150565565,0.6544677568599582,0.9032253860495985,0.195001563988626,0.8360740477219224,0.7620607470162213,-0.49803489726036787,-0.6434221742674708,0.6177591090090573,0.30947284819558263,-0.05586151173338294,-0.6964864670298994,-0.01776705589145422,-0.860592151992023,-0.24493244802579284,-0.6819496541284025,-0.002183346077799797,-0.7635235339403152,-0.8965637879446149,0.6383141400292516,0.14054847415536642,0.7277552583254874,-0.4398816777393222,0.6375701385550201,0.5864020381122828,0.2888876008801162,-0.7075006291270256,-0.33078550500795245,-0.4334147023037076,-0.9997600386850536,-0.7274123919196427,0.24740014830604196,-0.04561978857964277,-0.0845880638808012,-0.6035794005729258,-0.7583839460276067,-0.027961913496255875,0.40835282672196627,-0.5671335831284523,0.6022002100944519,0.08657280076295137,-0.21166615467518568,0.051608217880129814,-0.15914716571569443,-0.8685199194587767,-0.8940769303590059,0.8154995734803379,0.6837451756000519,0.4749667518772185,0.8585133356973529,0.418760500382632,0.12944748252630234,0.43668865226209164,-0.44717009318992496,0.33288334775716066,-0.852655588183552,-0.23225713847205043,0.935701641254127,-0.11517545208334923,0.7121525895781815,0.5389852141961455,0.8467618962749839,-0.5910573657602072,0.720825626514852,-0.3277336684986949,0.4228675477206707,-0.9205000624060631,-0.7424113317392766,-0.0698756123892963,-0.19857707619667053,-0.22843869728967547,0.9847476757131517,0.44480298832058907,-0.15438199508935213,0.7016801200807095,0.9051831313408911,-0.5320485411211848,-0.27448890497907996,0.9951934292912483,-0.4707976160570979,-0.8862267439253628,0.028693431988358498,-0.7247957554645836,0.9152371319942176,0.09892906155437231,0.5723885083571076,-0.359818316064775,0.8984211939387023,0.9733904842287302,-0.34441827377304435,-0.7946481751278043,0.38587697641924024,0.00602087564766407,0.8918157294392586,-0.38202048745006323,0.5669209412299097,-0.8513799980282784,-0.5298171262256801,0.7156832828186452,0.4780636029317975,-0.8464472899213433,-0.7059948579408228,0.7149551664479077,-0.5518556386232376,-0.557440004311502,0.3530442686751485,0.7310301531106234,0.49934892170131207,-0.9887935514561832,0.012354809790849686,-0.45454884134233,0.3520145113579929,0.31179769430309534,0.826419155113399,-0.18707825941964984,0.9757108874619007,-0.27043210761621594,-0.18327981512993574,0.22366628888994455,0.3156367773190141,-0.45373124349862337,-0.22721851570531726,0.10774354450404644,-0.9800966042093933,0.5709943752735853,-0.16869210079312325,0.6458815080113709,0.9372269776649773,0.8282989202998579,0.38370697759091854,0.38299097400158644,-0.5203979485668242,-0.11591653851792216,0.8084166878834367,-0.8029602719470859,-0.29082545079290867,-0.5318516180850565,-0.2510106307454407,0.1942191761918366,-0.20814206544309855,-0.33414534386247396,0.8308096071705222,-0.5863613886758685,0.09875666908919811,-0.9905889485962689,-0.17830213997513056,-0.18801842909306288,0.05234290985390544,0.39830438140779734,-0.929185139015317,-0.3292713202536106,-0.4753750450909138,0.9877511155791581,0.8788075651973486,-0.7212572391144931,-0.7433783612214029,-0.29997783387079835,0.09348058281466365,-0.14786602091044188,-0.3054527905769646,0.16401311894878745,-0.439756047911942,0.5548554114066064,-0.32063700538128614,0.05330644408240914,-0.7377039268612862,-0.4309216388501227,0.3527294718660414,-0.3952970542013645,0.9977696402929723,0.896959793753922,0.2611740562133491,-0.9159453008323908,-0.11499380134046078,0.9893365856260061,-0.7407268746756017,0.7510507116094232,-0.022362815216183662,-0.20685780327767134,-0.3329709256067872,-0.6753494618460536,-0.7408149247057736,-0.9366691233590245,-0.33449813770130277,0.7547014746814966,-0.5927192568778992,0.5865570311434567,-0.5244252355769277,0.7170315524563193,-0.7542521189898252,0.09065887704491615,-0.09149392787367105,0.11919836280867457,-0.36311704898253083,0.6490150317549706,-0.8223220692016184,-0.6974768047221005,0.3500231499783695,-0.9425095361657441,-0.02914472110569477,-0.48286390770226717,-0.7778591429814696,0.5721402480266988,0.6266933791339397,-0.7163302204571664,-0.6905632736161351,0.08424923941493034,-0.5134543650783598,0.4009747519157827,0.22844000067561865,-0.9282443011179566,-0.20081218099221587,-0.9880889062769711,-0.585604784078896,0.8049237420782447,-0.5978300366550684,-0.3497574175707996,-0.8244032077491283,-0.030559556558728218,0.7290442725643516,-0.5861720195971429,-0.04404411744326353,-0.07489959709346294,-0.12318684300407767,0.9851485346443951,-0.26574873412027955,-0.04904757160693407,-0.9160610395483673,0.10319469077512622,0.7626435714773834,-0.4896084419451654,-0.09258471243083477,-0.7776010874658823,-0.4986997675150633,0.9624443650245667,0.8133740443736315,-0.11422809259966016,-0.9530146447941661,-0.9986729533411562,-0.7821459360420704,0.8054826883599162,0.5102274497039616,-0.3356975303031504,-0.8102703434415162,0.9540354404598475,0.9719083695672452,-0.6603922755457461,0.5647323974408209,-0.2947789654135704,-0.6610706835053861,-0.9929479942657053,-0.9009235207922757,-0.025717983953654766,-0.030924998689442873,0.5017925444990396,0.9645685371942818,0.15013375645503402,-0.42017103359103203,0.8500545490533113,0.6524920263327658,0.06762344762682915,0.0039349570870399475,0.937035612296313,0.7335395133122802,0.1626299270428717,-0.20170438662171364,-0.2786962706595659,-0.45234161289408803,0.24900262476876378,0.5828666216693819,0.5305872615426779,-0.16288116248324513,0.6864232365041971,-0.9384153196588159,0.050867510959506035,-0.1569206123240292,0.9489377965219319,-0.8871097741648555,-0.7095645754598081,-0.8052330366335809,-0.6175893163308501,0.43196493247523904,-0.23076382372528315,0.5355088403448462,-0.5685725356452167,-0.46964811254292727,-0.8331846776418388,0.08115348685532808,-0.5334356385283172,-0.8419445506297052,-0.8557564709335566,-0.21040089754387736,0.7824884844012558,-0.1918976348824799,-0.43003932712599635,0.32896708184853196,0.15018976898863912,0.9124400056898594,-0.45454775588586926,-0.42009751638397574,-0.01678777812048793,0.45778744854032993,-0.36372434021905065,0.7026018248870969,-0.6498785279691219,-0.771179121453315,0.11711045354604721,-0.159725243691355,0.958422938361764,0.7056810772046447,0.7261302876286209,-0.4068402899429202,0.5852972907014191,-0.7335677742958069,0.5371734956279397,0.42145514069125056,0.3408510498702526,-0.8062631417997181,0.15576735837385058,-0.7892756266519427,0.16357566229999065,0.9667404531501234,-0.9191319546662271,-0.38819229789078236,0.7365431329235435,-0.5857208226807415,0.028180689550936222,-0.24106563860550523,-0.5178703479468822,-0.22356190253049135,-0.8794204513542354,0.40913328854367137,0.6013772469013929,-0.5934886443428695,0.3066808506846428,0.44998973375186324,0.18882833700627089,0.7093764538876712,0.6936915447004139,-0.7171960403211415,0.5588168622925878,0.590584815479815,-0.43730766559019685,-0.5458158482797444,0.5239619170315564,0.824246218893677,0.5291982316412032,0.270651045255363,-0.9121787864714861,-0.8883228870108724,0.06253727013245225,-0.3822384476661682,-0.4870068710297346,-0.7852448602207005,0.00028749648481607437,0.2035916647873819,0.6875894074328244,-0.45254747243598104,0.492896496783942,-0.7868895134888589,-0.5502894688397646,0.972133694216609,0.15651857666671276,-0.27202724665403366,-0.980947204399854,-0.6753714140504599,0.4613630482926965,-0.3184927352704108,-0.1028714282438159,-0.8977356934919953,-0.48666358226910233,0.866642571054399,0.24271859182044864,0.9762101182714105,0.4288512235507369,0.027144072111696005,-0.5243949517607689,-0.2082194648683071,0.28379065869376063,-0.8162369709461927,0.7879572631791234,0.26844337210059166,0.4218449266627431,0.8970799949020147,-0.20126341842114925,0.4984593796543777,-0.5367941632866859,0.9257634319365025,0.7243810114450753,0.42110111098736525,0.25602929200977087,0.371259827632457,0.8163054208271205,-0.33522002305835485,-0.7955064559355378,0.15715313702821732,-0.8882267172448337,0.14693890837952495,0.7688542855903506,-0.7988388226367533,-0.24939180025830865,0.526973320171237,0.7795110265724361,-0.995031766127795,-0.8520666700787842,-0.9647635440342128,-0.5547232693061233,0.7085469663143158,-0.6187910046428442,0.7309968154877424,-0.39921080926433206,0.20790491020306945,-0.04508272046223283,-0.3794874786399305,0.5215963120572269,0.7320874240249395,-0.0839230204001069,-0.7586369938217103,0.1724191098473966,0.733423528727144,-0.5389869604259729,-0.5466229696758091,-0.06319270143285394,-0.19604244735091925,0.7361320019699633,-0.15726062981411815,0.26719847973436117,0.5210079243406653,0.7081178966909647,-0.4148657307960093,-0.3983506471849978,-0.07042736234143376,-0.2941561327315867,-0.7831279463134706,0.7774391523562372,0.4404470697045326,-0.4714379347860813,-0.9576486814767122,-0.4317620452493429,-0.27672462863847613,0.028986343648284674,-0.8908889535814524,0.827983011957258,0.5915960418060422,0.24020686885342002,0.3727696160785854,-0.9500114400871098,-0.5412034187465906,0.24413153296336532,0.7335871681571007,0.22887894231826067,-0.5995509456843138,0.9674913049675524,0.8577932054176927,0.8503104485571384,0.6135637871921062,-0.07291838014498353,-0.5685272789560258,0.855065701995045,-0.1844531549140811,-0.03303055511787534,-0.5963359959423542,0.5892912363633513,0.1626377529464662,0.8793169395066798,0.03336537629365921,-0.5063271005637944,-0.5028429892845452,0.6759455827996135,0.1627530064433813,-0.22803586767986417,0.4876765189692378,-0.13879139628261328,0.07366948993876576,0.19976018788293004,-0.03963716700673103,0.7977784154936671,0.7508304179646075,-0.8352911081165075,-0.1920383833348751,0.8731962568126619,0.7381783779710531,-0.553478641435504,0.8962018354795873,0.9604175132699311,0.670389246661216,-0.24022032786160707,0.3489628420211375,0.8555192737840116,0.6484599257819355,-0.7727994308806956,-0.26673812232911587,-0.9090897873975337,-0.471453080419451,0.12022975087165833,0.6286182138137519,-0.8022804013453424,0.9644397450610995,-0.9484233381226659,-0.6714152502827346,0.9320219247601926,0.5817644246853888,0.4409037511795759,-0.6639563939534128,-0.5589431915432215,-0.5917384829372168,0.2517322301864624,-0.7267821501009166,-0.8135987776331604,-0.4616062860004604,0.7315289499238133,-0.7124729128554463,-0.7148093609139323,-0.01876532519236207,0.5153771326877177,0.7291619880124927,-0.997087876778096,0.28763662837445736,-0.04325250443071127,-0.5594089394435287,0.7178206802345812,0.8086318364366889,-0.8460413469001651,-0.9294542144052684,-0.08569618873298168,0.8355655302293599,0.7638852656818926,0.09469779068604112,-0.32052524760365486,-0.17482784669846296,-0.99047024641186,0.8946863827295601,0.042071541771292686,-0.3409412940964103,-0.08881996106356382,0.8822761308401823,0.5650976984761655,-0.908312211278826,0.5107841249555349,-0.9292169911786914,-0.5230473894625902,-0.08558014500886202,0.8156989645212889,-0.38093241211026907,0.24920991156250238,-0.8306739726103842,0.7678324868902564,-0.23549827747046947,0.3774377489462495,0.608874911442399,-0.17376861860975623,0.8281074510887265,0.23619167786091566,0.19845858588814735,-0.3757659438997507,0.17003916995599866,0.3901391406543553,-0.4721352974884212,0.2805091282352805,-0.4973573684692383,0.6840950180776417,0.6749814692884684,-0.3833316299133003,-0.3576833880506456,0.9752038097940385,0.4619167521595955,0.17121672118082643,-0.6672509419731796,0.5705224042758346,0.2831523069180548,0.8067789068445563,0.5299221146851778,0.59824956394732,0.904140651691705,-0.25917364191263914,0.324888959992677,-0.16159523837268353,-0.8186638001352549,0.40702147502452135,0.8573237783275545,-0.18860332015901804,0.04753256170079112,-0.39643790712580085,-0.4602862000465393,-0.07050520041957498,0.5309093911200762,-0.568714598659426,0.9288462237454951,-0.005529422778636217,-0.9389585647732019,0.25075968028977513,0.4425546214915812,-0.830714373383671,-0.6692352741956711,0.018371925689280033,-0.20772079471498728,0.9666162035427988,0.6411520792171359,0.650410721078515,0.006183547433465719,0.5402242271229625,0.11161967692896724,-0.300542825832963,0.6247651777230203,-0.1597354202531278,-0.1982961273752153,-0.4192156493663788,-0.6028456594794989,-0.16906860703602433,-0.4638826702721417,-0.9594397689215839,-0.2680128416977823,0.20744502311572433,-0.07215677620843053,0.1273156669922173,-0.1648012399673462,0.11465440131723881,-0.4964378038421273,-0.6064998400397599,-0.27329877903684974,-0.005013033747673035,0.3021280146203935,0.6558496044017375,0.2496605715714395,-0.0743515407666564,0.40512874023988843,0.19539375323802233,0.8860356365330517,-0.17091123899444938,0.32025017077103257,0.5592187214642763,0.38397608045488596,-0.9265450644306839,-0.20370586914941669,0.019581916742026806,0.42051366064697504,0.1398577825166285,-0.04600556846708059,0.3671722519211471,0.47811061795800924,-0.16070958506315947,-0.14252510480582714,-0.8451971863396466,0.22474072501063347,0.8774942364543676,-0.7884019501507282,0.7275463147088885,-0.42059700936079025,-0.3250185251235962,-0.9336389866657555,0.011550444178283215,0.42621191404759884,0.3610395025461912,-0.9027388514950871,-0.9607399594970047,0.29403185937553644,-0.3218552037142217,-0.10513649135828018,0.24935389356687665,0.9229631591588259,0.9443647498264909,-0.2907356806099415,0.12406219309195876,-0.737875142134726,-0.6712693553417921,0.5250605754554272,0.5199945718050003,-0.5007231058552861,0.8584380014799535,-0.3890996095724404,0.7630401332862675,-0.23393211094662547,-0.7941904794424772,-0.7830815687775612,0.42260504933074117,-0.12738546263426542,-0.81029142299667,0.9543824614956975,-0.7952444008551538,-0.8461591773666441,-0.3278297372162342,0.6975371278822422,-0.9346145894378424,0.7823454523459077,0.18020135071128607,-0.6092163980938494,0.1183392689563334,-0.35837269807234406,0.06954946415498853,-0.02307613007724285,0.06396395713090897,0.011721475049853325,-0.2934644157066941,0.3785102558322251,-0.6028172369115055,0.8223516321741045,0.020439236890524626,0.14138960326090455,0.32545100897550583,-0.308439820073545,-0.2765724337659776,0.1318104648962617,0.379004183690995,0.40451798867434263,0.7713157362304628,0.8353310017846525,-0.05307652382180095,0.3607351561076939,0.15785049740225077,0.939205089583993,0.7558613088913262,0.9456173614598811,0.39822868816554546,-0.45373537112027407,0.02879683068022132,-0.65293611260131,0.025361981242895126,0.9022072702646255,0.7364748036488891,0.3773791752755642,0.22480572760105133,0.20790956681594253,0.013601290993392467,-0.6267136414535344,-0.5950103257782757,0.2587170721963048,-0.88563865236938,-0.39195798244327307,-0.45830789767205715,0.1642515081912279,0.10785981267690659,0.419449451379478,0.46363245230168104,-0.355511917732656,-0.19745281944051385,0.4336152644827962,-0.9248493607155979,-0.37295704474672675,0.7927018059417605,0.1950090304017067,0.1770373578183353,0.17792549263685942,0.16272966796532273,-0.6513115549460053,0.8367748600430787,0.32617209712043405,0.12712307879701257,-0.3814999000169337,-0.1803403189405799,-0.9347001533024013,-0.7864881884306669,-0.5583931570872664,0.9623041055165231,0.7644178508780897,0.5334492074325681,-0.6137466910295188,-0.30416641011834145,0.4872404905036092,0.5507448487915099,-0.011134087108075619,0.8887658840976655,-0.7495923773385584,0.2679294063709676,0.42167029436677694,-0.1293516680598259,-0.10262299748137593,-0.5572861013934016,0.24681624118238688,0.260897365398705,-0.7212034775875509,0.57481849193573,-0.04256231989711523,-0.8605050491169095,-0.08979970775544643,0.7346407044678926,-0.1648141061887145,0.12282604910433292,0.41533032432198524,0.031389109790325165,-0.034270950593054295,0.1742220683954656,-0.7365631880238652,-0.08760327519848943,0.39705625735223293,-0.5315463342703879,-0.8529828670434654,-0.08938728086650372,-0.3636353681795299,0.5342655214481056,-0.12504536472260952,0.96187589969486,-0.09989459766075015,0.7612857753410935,-0.4536613351665437,0.5352730271406472,-0.14121456863358617,0.21438321843743324,-0.9347563977353275,0.9918570150621235,0.49791626539081335,-0.7783389817923307,-0.27938715321943164,0.6564168613404036,0.18116998486220837,0.2228445177897811,-0.33453980879858136,-0.455800365190953,0.03778668958693743,0.14565065875649452,-0.06353381369262934,-0.8349626478739083,0.6303487997502089,0.6216487227939069,-0.9144649696536362,0.4405943383462727,-0.9903336949646473,0.061571469996124506,0.9425517031922936,-0.08687553042545915,-0.3256203322671354,0.6873219921253622,0.01917882962152362,-0.051314993761479855,-0.555355008225888,-0.33783355075865984,-0.4576869239099324,0.9534672438167036,-0.35334467235952616,0.2273687650449574,0.9806770491413772,-0.8877617819234729,-0.7986480784602463,0.3954808390699327,-0.8422548254020512,-0.6693515125662088,-0.9522907910868526,-0.8779737213626504,-0.3159438553266227,-0.7513337493874133,-0.5237375479191542,0.7730834311805665,-0.2946154638193548,0.3103265301324427,0.253191112075001,-0.911363092251122,0.8537824642844498,-0.006754032801836729,-0.12351315561681986,-0.9340362884104252,0.44125521974638104,-0.7110953400842845,0.5508197355084121,0.38390294928103685,0.14191754255443811,0.8630110933445394,-0.7321688449010253,0.660476928576827,0.2815799186937511,-0.41450586915016174,0.07439402770251036,-0.0011636298149824142,-0.9315820909105241,-0.5445078671909869,-0.7617567651905119,0.6202334794215858,0.5694535137154162,-0.6204699203372002,0.9876260068267584,0.08711842773482203,-0.22842756193131208,0.6721821487881243,0.413497484754771,0.3867832189425826,0.39861782686784863,0.15247415145859122,0.0984772308729589,0.9944535167887807,-0.3065458992496133,-0.48905633855611086,-0.7615684671327472,-0.4592872029170394,-0.00905076414346695,-0.6211896724998951,-0.3166958666406572,0.3283634432591498,-0.7047158507630229,0.7360947988927364,0.9911658107303083,-0.41588603937998414,-0.07872802810743451,-0.7510141665115952,-0.8061341466382146,0.45333869848400354,-0.661086518317461,0.6685109217651188,0.07530040992423892,-0.5521227708086371,-0.05912678316235542,-0.06239619990810752,-0.10612154752016068,0.4804211934097111,-0.5565073355101049,0.24141393462195992,0.934466898906976,0.36987595818936825,0.10472893947735429,0.8994992598891258,-0.3796214126050472,-0.7976100924424827,-0.48662231769412756,0.32281571347266436,0.9626083881594241,-0.3259455729275942,0.9734061388298869,-0.7029869137331843,0.48920749267563224,0.03423532750457525,-0.5008703148923814,-0.07943230262026191,0.21628833329305053,-0.19415115611627698,-0.03461817465722561,-0.4556477223522961,0.6755411601625383,0.05711218249052763,-0.7730333223007619,0.6602272531017661,0.03607209958136082,-0.6517686010338366,-0.019138538744300604,-0.602592428214848,0.3089609616436064,0.23904209630563855,0.29180032201111317,-0.9264334603212774,0.9742807117290795,-0.2863632049411535,-0.4538775086402893,0.9752714522182941,0.4623999632894993,0.341873440425843,0.31047490471974015,0.31891934433951974,-0.28358440985903144,-0.024275878444314003,-0.9858048795722425,-0.17712834710255265,-0.7960467119701207,-0.4654415203258395,-0.3637114525772631,0.34707005554810166,0.23205671831965446,0.2937369109131396,0.7286592833697796,0.060915686190128326,0.02118002763018012,-0.8014822648838162,-0.2238055281341076,0.6024555154144764,0.3082682373933494,-0.20172437326982617,0.6809030352160335,0.6370983794331551,0.8722432600334287,0.756046861410141,0.6276539177633822,-0.7647180473431945,-0.20350840827450156,0.5416628606617451,0.7128870664164424,0.5818885685876012,-0.6632281742058694,-0.4980336204171181,-0.8149005793966353,0.02463824162259698,0.9149189577437937,0.9544776631519198,0.2520096190273762,0.07373922737315297,-0.8143902313895524,0.47561625065281987,0.05490377778187394,-0.523872438352555,-0.4318237891420722,0.6286077685654163,-0.26496500289067626,-0.3937804261222482,0.33039802219718695,0.09670799830928445,0.7640749509446323,-0.6090423106215894,0.8528894698247313,0.4137792279943824,0.052131378557533026,0.036146365106105804,-0.9646548116579652,-0.5429968675598502,-0.14306822093203664,0.36255190521478653,-0.3414568826556206,-0.7584114726632833,0.10278971865773201,-0.6381571907550097,0.4158387612551451,-0.3194195805117488,-0.18803963996469975,-0.1756789912469685,-0.5127974506467581,0.8884531697258353,-0.22012506471946836,-0.9574035000987351,-0.05525805847719312,0.36205038987100124,-0.7879849928431213,-0.610143453348428,0.38185505475848913,0.9854069650173187,0.6765737249515951,0.25413289852440357,0.655936096329242,0.5855685784481466,0.039449200965464115,-0.19941312400624156,0.8348034005612135,-0.14156899927183986,0.3720308714546263,-0.1434554853476584,-0.7586534558795393,0.9666252634488046,0.5840133326128125,0.832231127191335,-0.49827464018017054,0.4720350680872798,0.9532987778075039,-0.4349592220969498,-0.44326759362593293,-0.01742381462827325,0.6312018157914281,-0.33152668084949255,-0.31267890613526106,-0.6831813738681376,-0.46293730894103646,-0.6330573703162372,-0.774583182297647,-0.6934125255793333,-0.6617056992836297,-0.4797730492427945,0.15106942784041166,0.40433388110250235,0.7254634718410671,-0.8046174668706954,0.7163373967632651,0.1729282191954553,0.8677888517268002,0.4407292688265443,0.1963850473985076,-0.021062586922198534,0.7606082479469478,0.9935720446519554,-0.48503711400553584,0.5806946191005409,-0.21487369295209646,-0.4790983176790178,0.11499689845368266,0.510488657746464,-0.9973452715203166,0.11766460537910461,0.65533356834203,0.05950368707999587,-0.2648851522244513,0.930723485071212,-0.762357743922621,0.13685598131269217,-0.0007150443270802498,0.17103647347539663,-0.9115152154117823,-0.14409425714984536,-0.4740039794705808,0.8237723959609866,0.8001604285091162,-0.4007273009046912,-0.25212572421878576,-0.7434908864088356,-0.8282933090813458,0.2934018070809543,-0.14182114088907838,-0.6839592843316495,0.6798304347321391,-0.141784455627203,0.6440825215540826,-0.5086012403480709,-0.41627816017717123,0.583003506064415,-0.8203890700824559,0.5948531776666641,-0.33316089445725083,0.5270194383338094,0.10159183852374554,-0.2807446029037237,-0.8202125704847276,0.5877773426473141,0.1571379490196705,0.18904281221330166,0.7435707724653184,-0.7335434108972549,0.5785116604529321,-0.021538313943892717,0.42930760653689504,0.5860887342132628,0.28289034916087985,0.03951297141611576,-0.7158649428747594,-0.9085789532400668,0.07457440346479416,0.7323538539931178,0.3799083544872701,-0.3754694634117186,-0.8095910619013011,0.1015616049990058,0.47220462979748845,0.36405009822919965,-0.9167429334484041,-0.05332433199509978,0.5226436690427363,-0.6768359621055424,0.5760663137771189,0.05902376165613532,0.8238033968955278,-0.6320890076458454,0.8121587904170156,0.42026577703654766,-0.5061761299148202,0.5733980848453939,-0.0373883880674839,-0.09385762363672256,-0.7869728528894484,0.007368055637925863,-0.6487634899094701,-0.3493736390955746,0.6190256364643574,0.8477259678766131,0.15755339432507753,0.7875149422325194,-0.6993364430963993,0.7304469118826091,0.12346463464200497,-0.12688368605449796,0.6308655105531216,-0.7274706973694265,-0.016029138583689928,-0.6390522201545537,-0.44409492891281843,0.5460529434494674,-0.8197839646600187,-0.5549151753075421,-0.8335468857549131,-0.27477908274158835,0.6517063640058041,0.5444374573417008,-0.8971989536657929,0.44233823101967573,0.5254509379155934,0.48055579233914614,-0.5509778372943401,-0.3412059503607452,0.023253963328897953,0.8461342570371926,0.19643658911809325,-0.1323890662752092,-0.895181437022984,-0.7210473441518843,0.9703831416554749,0.4516135947778821,-0.4068240253254771,0.953023100271821,-0.14895636262372136,0.1329482109285891,0.2779882764443755,0.7314137653447688,0.005095931235700846,-0.38256704108789563,0.2894424577243626,-0.9196568131446838,-0.8829268706031144,-0.9489950551651418,0.03296303888782859,-0.170885868370533,0.9419165146537125,-0.43073455477133393,0.8377098655328155,-0.9995445716194808,-0.004461393225938082,0.7245454923249781,-0.17697122087702155,-0.6551772938109934,-0.05202271696180105,-0.22047448018565774,-0.2339384532533586,-0.17332306876778603,-0.28732896177098155,0.30743291275575757,0.3939354051835835,0.8866589884273708,0.51338319061324,-0.6048469818197191,-0.5371223273687065,-0.14430668484419584,0.489642390049994,0.499663557857275,0.013091709464788437,-0.7234147903509438,0.6993153700605035,-0.0550237400457263,0.5195318721234798,-0.7364479373209178,0.12471846677362919,0.09915336221456528,0.4867683257907629,0.16461725439876318,-0.6191684165969491,-0.9614940546452999,0.5778398923575878,-0.5446699941530824,-0.8945975108072162,0.44379468355327845,-0.6836615302599967,-0.11961559299379587,0.49594991048797965,0.5041070077568293,-0.19465274130925536,-0.5706149274483323,-0.27820855053141713,0.8946090410463512,-0.6423396337777376,0.2766470410861075,0.16643803426995873,-0.7842064225114882,-0.9920995282009244,0.07433362398296595,-0.2097807265818119,0.09526110952720046,0.46388932736590505,0.5025654705241323,0.9160524071194232,-0.40978618105873466,-0.240067679900676,-0.1111732735298574,-0.18142233695834875,0.5686235791072249,-0.4859778946265578,0.7365979761816561,-0.4053534888662398,0.21605744771659374,-0.6376441912725568,0.4249312956817448,-0.6054142680950463,0.7272817655466497,-0.7025857544504106,-0.22107427148148417,0.0024980749003589153,-0.5735345548018813,-0.01214691624045372,-0.2964285654015839,0.13207437191158533,0.1383104114793241,-0.46111131412908435,-0.28468717401847243,-0.549601964186877,0.27932095900177956,0.7549157403409481,-0.07542426744475961,0.14709316054359078,0.764055875595659,-0.8183754589408636,0.0036600707098841667,0.24130308022722602,0.7894568927586079,0.8350248634815216,0.4025563136674464,0.5027318177744746,0.860364131629467,-0.16053133644163609,0.7524749087169766,-0.9044626634567976,0.9685378219000995,-0.9739826582372189,0.20008722227066755,-0.3440593918785453,0.5880348631180823,0.47138222586363554,0.5040008290670812,0.2729211635887623,-0.822334872558713,0.8741606352850795,-0.2858843454159796,-0.7645124499686062,0.08467770647257566,0.8992875865660608,0.05321863619610667,-0.41827134136110544,-0.9980178764089942,-0.33806532714515924,-0.015733830630779266,-0.6935346461832523,0.8043120168149471,-0.5252439235337079,-0.3533802987076342,-0.05984907876700163,-0.902458168566227,-0.6307822638191283,-0.12404988426715136,0.18435577303171158,0.995330236852169,-0.06821254780516028,0.23308850592002273,0.3648615055717528,-0.40876322612166405,-0.28410353790968657,0.06881725462153554,0.565883039496839,0.5746247391216457,0.9083802602253854,0.1491076503880322,0.7348719267174602,-0.14948383858427405,0.5367697109468281,-0.6324282889254391,0.9342253678478301,-0.2525546024553478,0.3338787676766515,-0.0652507864870131,-0.5043406868353486,0.4106168760918081,-0.2779782027937472,0.9635054594837129,0.6443414282985032,-0.15309190889820457,0.498649122659117,-0.8484177165664732,0.9516054675914347,0.8492837883532047,-0.6455194037407637,-0.7977513885125518,0.1264345357194543,-0.8908215924166143,-0.7006718688644469,-0.6221845005638897,-0.2677614325657487,-0.5482501806691289,-0.7037106561474502,0.4991603400558233,0.03839202504605055,-0.6034686951898038,0.8701130799017847,0.6727786716073751,0.4529453362338245,0.2904957877472043,-0.22264921013265848,0.7864299290813506,0.10524484096094966,-0.57190454704687,0.03584987763315439,0.5362455635331571,0.5682201469317079,0.31014751037582755,-0.8337472146376967,0.026713924016803503,-0.9519989406690001,-0.5904904897324741,0.6157628055661917,0.7988511426374316,0.4623172711580992,0.30503648333251476,-0.5328747588209808,0.6664411970414221,-0.8225366086699069,-0.6213855021633208,0.23908513551577926,-0.16706722090020776,0.37875458830967546,0.722654340788722,-0.8179471669718623,0.9103375095874071,0.6349158510565758,-0.4383297092281282,-0.14836480654776096,0.25555207254365087,0.6382749113254249,-0.058266588021069765,0.29976377123966813,0.9282845808193088,-0.7369525753892958,0.06520965229719877,0.12166295479983091,0.7478181831538677,-0.19727039895951748,-0.7993932003155351,0.33286729035899043,0.555407312233001,-0.7892291634343565,-0.6654978827573359,-0.7697518598288298,0.1942288470454514,-0.9677863782271743,0.25636743661016226,0.16239200439304113,-0.35933083249256015,-0.1931989435106516,0.5308047384023666,-0.02142970683053136,0.6096401833929121,-0.9392770095728338,-0.4547445815987885,0.945978291798383,-0.688812886364758,-0.4085676306858659,-0.9010379314422607,0.6708553628996015,0.27463768422603607,0.28729893639683723,0.29895502189174294,-0.05521793710067868,0.8813463486731052,-0.35802082857117057,-0.6741426470689476,-0.2038749773055315,0.07576122460886836,-0.7205666336230934,0.5474284589290619,0.894061388913542,0.765227213036269,0.19574665324762464,-0.41895165015012026,-0.713711179792881,0.861394380684942,-0.3310636510141194,-0.1092912619933486,-0.1886936859227717,0.26965015614405274,-0.453384839463979,-0.6242745625786483,0.7464910196140409,-0.5448490781709552,0.4255236885510385,0.492547404486686,-0.5812093387357891,0.8560690451413393,-0.10546927805989981,0.07568337768316269,0.8149705599062145,-0.4188635894097388,0.6541962423361838,-0.8919499320909381,0.9221710572019219,-0.2736359634436667,0.1501788878813386,-0.1772705321200192,0.5598400975577533,0.7141135595738888,0.09353404119610786,0.5609605284407735,0.7036070725880563,-0.9787011416628957,0.48437131475657225,0.7173707699403167,-0.7534113833680749,-0.962753092404455,0.959200385492295,0.4167297016829252,-0.5154968253336847,-0.3865008223801851,-0.8807163098827004,-0.6741622602567077,0.4458817741833627,0.24523845547810197,-0.3067768323235214,-0.650270972866565,-0.15927380789071321,-0.7279856828972697,-0.7453280580230057,0.9724981030449271,0.9168017311021686,-0.40437888354063034,-0.577921699732542,-0.9638330894522369,0.031658442690968513,0.05534247308969498,-0.893234817776829,-0.36182270012795925,-0.17453229799866676,0.7365990821272135,0.07089159684255719,0.538022693246603,0.9225636254996061,0.5688237408176064,0.6928965654224157,0.25776698580011725,-0.7039481289684772,0.5041067786514759,-0.17565180687233806,0.48162854043766856,0.8793445215560496,-0.9519637012854218,-0.8110150531865656,0.4781377920880914,-0.41071481676772237,-0.3812804385088384,0.6007402990944684,0.8237915732897818,0.4026770987547934,0.5412915642373264,0.7164376107975841,-0.344428310636431,-0.9524164614267647,0.9129519960843027,-0.9425901803188026,0.18264017952606082,0.9564173449762166,-0.48158350586891174,-0.9968027723953128,-0.4788379753008485,0.3034406336955726,-0.7625137344002724,-0.7778433365747333,0.22544716158881783,-0.39128961274400353,0.34608384128659964,0.7659666063264012,0.7657994227483869,0.5380692328326404,-0.8963779313489795,0.4248957708477974,0.12337988195940852,0.1973686758428812,-0.8829116132110357,-0.4756799596361816,0.9850069335661829,0.9809697782620788,-0.11265287036076188,-0.9079266199842095,-0.40555192017927766,0.5499388789758086,0.06528346985578537,-0.5222312128171325,0.7313604573719203,0.9376048375852406,0.06558855343610048,0.12836293643340468,-0.5931074493564665,-0.20901752123609185,0.1690693562850356,0.4710665657185018,0.6734055848792195,0.6245121653191745,-0.6764739584177732,-0.9158277912065387,-0.7368003479205072,-0.039920656476169825,0.312733540777117,-0.8487476278096437,-0.6958399387076497,-0.6393325100652874,0.7403541798703372,0.16849237820133567,0.36751320818439126,-0.8505201125517488,-0.7308061346411705,0.5177933322265744,-0.9558171629905701,0.057610233314335346,-0.9791647661477327,-0.164971724152565,0.4897915846668184,0.2955471691675484,-0.2778293672017753,0.6378042711876333,-0.0373527598567307,0.5586922746151686,-0.4710808387026191,-0.26165798399597406,-0.6393748768605292,0.4986495915800333,-0.8613422499038279,0.26162434136494994,-0.9554547658190131,0.10359810385853052,-0.5042841709218919,0.07414790615439415,-0.5616486859507859,0.3232793095521629,0.8165654335170984,-0.24054071307182312,-0.6143117481842637,-0.917562450747937,0.4752577138133347,-0.4154863692820072,-0.7516969554126263,0.234407477080822,0.6117622600868344,0.9906286671757698,0.5308107589371502,0.4050476513803005,0.750202423427254,0.7597657958976924,0.7730489876121283,0.5307185738347471,-0.9277630848810077,0.5483672162517905,-0.25814218260347843,-0.2222542567178607,0.26994839031249285,-0.8681927719153464,0.27670365991070867,0.7820698954164982,0.4015171746723354,-0.9691969901323318,-0.23029179964214563,-0.607457616366446,0.507640358991921,-0.8847483270801604,-0.39755659457296133,-0.7030104505829513,-0.9969788054004312,-0.5974628543481231,-0.5625042407773435,0.48947839718312025,0.6018652585335076,-0.792633630335331,-0.35177733888849616,0.795378455426544,0.8332850434817374,0.5541831580922008,0.586986384820193,0.33646253030747175,-0.8437802637927234,-0.49350167717784643,-0.7843570611439645,-0.7706241826526821,0.8981508980505168,-0.5091093350201845,0.2865295778028667,-0.6125125484541059,0.13402018044143915,-0.6248277695849538,0.7946679526939988,-0.11136377928778529,0.4968604319728911,-0.13614049274474382,0.4172917315736413,-0.24589416105300188,-0.38869215454906225,0.9448369047604501,0.08073409087955952,-0.49429850140586495,-0.6339689828455448,0.5424322378821671,0.312992577906698,0.2792699411511421,-0.2871782351285219,0.7340092025697231,-0.034740439150482416,-0.9458131180144846,0.3799161477945745,0.6483255457133055,0.8792729149572551,0.44807136012241244,-0.29972018115222454,-0.04065730841830373,-0.35611197957769036,0.4010419682599604,-0.5424183481372893,-0.8785231243818998,-0.34142778581008315,0.22035139752551913,0.2707444247789681,-0.5238019721582532,0.05888091120868921,-0.9153346591629088,0.5563356773927808,-0.4082361329346895,-0.14033575216308236,0.22173277055844665,-0.6330419378355145,-0.13532270956784487,-0.07690064236521721,-0.45534331910312176,-0.7502179224975407,0.6825458286330104,-0.8044519377872348,0.8398294122889638,0.8648623861372471,0.9488404877483845,0.015889291651546955,0.9306810065172613,0.09071372030302882,0.4872575276531279,0.18762977933511138,0.34919710317626595,0.8372772894799709,-0.7571666133590043,-0.3892096932977438,-0.9161268188618124,0.5254471148364246,0.7265805215574801,0.7872711685486138,0.21984566329047084,-0.3808181155472994,-0.21817491296678782,0.3595859701745212,0.9547387077473104,0.6988841453567147,-0.3758447919972241,-0.14990220265462995,-0.8452436421066523,0.3745316658169031,0.42666206508874893,-0.563168634660542,0.4834848875179887,0.3419489460065961,-0.16273525031283498,-0.19577047182247043,-0.19150194386020303,-0.712153643835336,-0.8770256633870304,0.17306656064465642,-0.23744649533182383,0.8488958082161844,-0.022585227619856596,-0.406820600386709,0.8643739731051028,0.6339094266295433,-0.8965929453261197,0.17044224636629224,0.5212009400129318,0.1494623045437038,-0.8474562559276819,0.04418870201334357,0.7623829846270382,-0.0016644368879497051,0.9610839704982936,0.17192646116018295,-0.8166989227756858,-0.2460558726452291,0.5417573722079396,0.635812892112881,0.26596079440787435,-0.4359806654974818,0.7150013642385602,-0.6423918181098998,-0.07299854373559356,0.2684332584030926,-0.09858783707022667,0.8659254307858646,-0.38293369114398956,-0.7605579881928861,0.6241155560128391,-0.26174909016117454,0.27313875220716,-0.07548640295863152,0.6173089905641973,-0.3613881370984018,-0.3702510674484074,-0.691260231193155,0.22087498009204865,0.4406251977197826,-0.007263351231813431,-0.015392374247312546,-0.7027641767635942,0.6701723039150238,-0.1959560508839786,-0.5523606948554516,0.46197940316051245,0.6045999182388186,0.5434317411854863,-0.13373218849301338,0.7830931055359542,-0.9543885467574,-0.6861083377152681,0.19598626997321844,0.6595689267851412,-0.6434922590851784,0.8980852370150387,0.30883220629766583,-0.8626540708355606,0.43605509120970964,0.04887609230354428,0.2983885263092816,-0.41253860341385007,-0.9031582502648234,0.5831439984031022,-0.5218980456702411,0.495163694024086,-0.2785066687501967,0.16621597064659,-0.3151424787938595,-0.21995823131874204,-0.816922674421221,-0.3716273079626262,-0.22479503648355603,0.7026416505686939,0.2094657658599317,0.04254876310005784,-0.31987646827474236,0.7708195224404335,-0.1495360746048391,-0.7711133914999664,-0.41396935004740953,-0.39317743107676506,0.20247883023694158,0.43283984111621976,-0.6194436922669411,-0.799847237765789,0.353067594114691,-0.9076099619269371,-0.45203029178082943,-0.3547108257189393,-0.6432855688035488,-0.17322303354740143,0.5933265564963222,0.4848405425436795,-0.9802033305168152,0.742721582762897,0.9154155626893044,0.5883053843863308,0.31471299938857555,-0.9893207806162536,-0.6889718011952937,-0.8247090112417936,0.8767845495603979,-0.3185397405177355,-0.49283552588894963,0.9161996622569859,0.7452868707478046,-0.5114669539034367,-0.6745882472023368,0.5410110745579004,-0.9183008801192045,-0.979642279446125,-0.881304788403213,-0.7295458423905075,0.03437852766364813,0.24430952919647098,0.48621685011312366,-0.6249245209619403,0.5982631607912481,-0.05951296677812934,-0.6227586381137371,-0.17083691572770476,-0.6548441373743117,-0.43386117462068796,0.9992732480168343,0.20103262457996607,0.11473375698551536,-0.9354649614542723,-0.48466760432347655,-0.5297972979024053,0.8612562967464328,-0.3783495184034109,-0.01575061958283186,0.29181615356355906,-0.25242817122489214,0.3499170006252825,0.8922739224508405,-0.09826139640063047,-0.7561818119138479,-0.8784451326355338,0.5813356922008097,0.9118175785988569,0.6703524314798415,-0.20808963058516383,0.9371440266259015,-0.009972051717340946,0.4175292714498937,0.7070446060970426,-0.24474815372377634,-0.5059219026006758,-0.19173061894252896,0.272404951043427,0.2811431558802724,-0.42279823031276464,0.8187742508016527,-0.5462669208645821,0.22709711780771613,0.6597664128057659,0.7554844692349434,-0.7553957253694534,-0.8049520957283676,-0.13978173257783055,-0.2693505175411701,-0.2578141437843442,0.6118291579186916,0.6583541561849415,-0.053700505290180445,-0.5202120561152697,-0.13966155797243118,-0.009205291047692299,-0.2898060684092343,0.5034982822835445,0.8175618085078895,-0.11447597946971655,0.7420439934358001,0.9575888752005994,0.3320275405421853,-0.4707185993902385,-0.5402018753811717,-0.15328204724937677,-0.6290745753794909,-0.9765006061643362,0.3674215250648558,-0.8743322812952101,0.002385698724538088,0.49817794747650623,-0.9982963167130947,-0.6887600542977452,0.9254514337517321,0.9306672755628824,-0.6558298282325268,-0.2062146500684321,-0.32283632177859545,0.5339808664284647,-0.5547521067783237,-0.40587023133412004,-0.9170834952965379,-0.06065629422664642,-0.1284700888209045,0.9956784774549305,-0.6888976385816932,0.36807308392599225,0.4227296747267246,0.18263959884643555,-0.2836250951513648,0.7969070300459862,0.5249522803351283,-0.45748287346214056,-0.32739106426015496,0.26684504467993975,0.37053122371435165,0.3104236638173461,0.42521328618749976,-0.1591980205848813,-0.04570150841027498,0.16077041905373335,-0.006509771570563316,0.24303294299170375,0.08038015244528651,0.36507957288995385,0.8529326682910323,-0.5128738512285054,0.3976568151265383,0.49943793239071965,0.4385705594904721,-0.39592681219801307,-0.23664154903963208,0.7950122584588826,0.5934832682833076,-0.3525743209756911,-0.6335298921912909,0.33073946461081505,0.24560044379904866,0.5030733807943761,0.6152672488242388,0.5232444764114916,-0.5476982602849603,0.5867340080440044,-0.9710770738311112,0.347396946977824,-0.36763477325439453,-0.5004470166750252,0.5234617530368268,0.00288208294659853,0.3462765677832067,-0.7553467312827706,-0.205118244048208,-0.34022706653922796,0.49601855082437396,-0.3169539524242282,0.7961796093732119,-0.6533854370936751,-0.34543898748233914,0.2634474439546466,-0.3318040953017771,-0.6826363359577954,-0.05484414240345359,-0.2831506161019206,-0.7261000261642039,0.00249041011556983,-0.32893342478200793,-0.23770959954708815,-0.5158045743592083,0.7708023260347545,0.3433747347444296,-0.5913096684962511,-0.08541584620252252,-0.9089721404016018,0.786172010935843,0.09473797120153904,-0.4509798428043723,0.826843730174005,0.9010193268768489,0.4893663111142814,0.5795565787702799,-0.7775257099419832,0.3846644992008805,0.029238842893391848,-0.8567891474813223,0.7424821290187538,-0.9634508239105344,0.35521852876991034,0.480685583781451,-0.7830385379493237,0.12401571869850159,0.6440576887689531,0.17900161957368255,-0.40147687727585435,0.24922222876921296,0.3891337770037353,-0.11407047929242253,-0.07829624228179455,0.9934478560462594,0.9118248303420842,0.32271106727421284,-0.22159435227513313,-0.6826691753230989,0.22305307863280177,-0.30244119046255946,0.8383147707208991,0.7550853178836405,-0.9236038168892264,-0.9086575931869447,0.7063351413235068,0.8658814807422459,-0.2097785109654069,0.4363519581966102,-0.05977286072447896,-0.31856804387643933,-0.7881264919415116,-0.04413654329255223,-0.9812475084327161,0.2916938788257539,0.12842490477487445,-0.7050148886628449,0.8509191265329719,0.8277377947233617,0.07323316019028425,-0.41513772355392575,0.23411873960867524,0.7156355762854218,-0.6384628643281758,-0.28490049624815583,-0.8576740780845284,0.1686127777211368,-0.9339069789275527,0.560370646417141,0.6410130760632455,0.7494362029246986,-0.7970540970563889,0.9767918502911925,-0.9945752774365246,0.4747488796710968,-0.6051945476792753,0.253484882414341,-0.4069426776841283,0.3665532963350415,0.8624448236078024,0.19978420343250036,-0.2247201860882342,0.11547108739614487,0.8340275175869465,-0.37536744261160493,0.9158716322854161,-0.04023964703083038,-0.3612655205652118,0.6046632686629891,0.29145020386204123,0.029547078534960747,0.9491758812218904,-0.24024343071505427,0.23941694339737296,-0.8189016180112958,-0.5963790453970432,0.6455925246700644,0.19232903700321913,0.6182564981281757,0.9440916837193072,-0.6109725399874151,-0.3082152996212244,0.67100879130885,0.7830138765275478,0.0022484222427010536,0.777826284058392,-0.19727188907563686,0.030018757563084364,-0.8255961700342596,0.33282576128840446,0.2388806319795549,0.8761291475966573,0.25791985215619206,-0.8030524542555213,-0.34554745769128203,-0.7259974987246096,-0.6399862514808774,-0.7355322940275073,-0.6373430248349905,0.29429616779088974,-0.2506877090781927,0.9653759696520865,0.19282730435952544,0.5651188199408352,-0.5330180521123111,0.10667109861969948,-0.4941375073976815,-0.6633855076506734,-0.41506900172680616,0.6854756032116711,-0.184958734549582,-0.5054704127833247,0.7207632511854172,0.046230162028223276,-0.21138561563566327,0.7002928336150944,-0.8972768262028694,0.5165681885555387,0.12573108356446028,-0.9111593393608928,0.04254228621721268,-0.198179314378649,-0.3327294862829149,0.8438955279998481,-0.12411156669259071,0.7831995212472975,0.6368050412274897,0.6636620699428022,0.46547343907877803,-0.6335325329564512,-0.0038254233077168465,-0.16860388685017824,0.38473237585276365,0.47293146792799234,-0.5911998618394136,-0.1274737105704844,-0.9489737916737795,-0.06583895673975348,0.05413927976042032,0.910365057643503,-0.9193368186242878,0.05252826400101185,-0.7488306309096515,-0.9353462676517665,-0.031204136088490486,0.15030967351049185,-0.022674921434372663,-0.6833107881247997,-0.3889124640263617,0.6123365527018905,-0.4324093791656196,-0.1273718304000795,-0.046346090734004974,-0.14404928917065263,0.635743364226073,0.6855560638941824,0.5326625742018223,-0.1589015107601881,-0.16145214717835188,-0.5849215383641422,-0.9024616382084787,0.39174525579437613,-0.7023703176528215,0.5125750675797462,-0.7007628814317286,-0.2573291137814522,0.6939552235417068,-0.18836387060582638,-0.15743440575897694,0.6548385224305093,0.5709271933883429,0.2955184271559119,0.4735265336930752,-0.1812775037251413,0.7297271955758333,-0.05933345202356577,-0.5135812247171998,0.4726499277167022,-0.30543035082519054,-0.40893745329231024,0.08619380230084062,-0.599591959733516,0.3952016825787723,-0.6869939286261797,0.24714948749169707,0.3209342388436198,0.800454378593713,0.5265809576958418,0.7243937542662024,0.1930807651951909,-0.9403164405375719,-0.9216054198332131,-0.4847517441958189,0.3364094798453152,0.3122881269082427,0.44719604263082147,-0.8384603448212147,0.35990338819101453,0.3601327524520457,-0.05831963988021016,0.3426107750274241,-0.3316265484318137,-0.6936908094212413,0.9043973931111395,0.9269881886430085,-0.392638242803514,0.7404268425889313,0.24695580825209618,-0.5600921278819442,-0.6763256527483463,-0.14354983670637012,0.21187703544273973,-0.08340973453596234,0.16644284455105662,-0.3191437507048249,0.48785054264590144,0.36958289286121726,-0.1779995751567185,0.449318443890661,0.5022737588733435,0.07740615494549274,0.06033288314938545,-0.09544461313635111,-0.6932290149852633,-0.5926737426780164,0.5292212436906993,0.6029486572369933,-0.19997747940942645,-0.6990295550785959,-0.19711299054324627,0.4544726540334523,0.24091244442388415,0.1805322258733213,0.6802150011062622,0.07130349008366466,-0.61311164079234,-0.9644461334683001,-0.7948074722662568,0.43522802740335464,0.8001458602957428,0.6971517968922853,-0.4401662261225283,0.8713528835214674,-0.6825519092381,0.5029622842557728,-0.4426892069168389,0.34497733879834414,0.6765754469670355,0.7350855111144483,-0.2905729771591723,0.9722341750748456,-0.02593983616679907,-0.526229701936245,-0.4838262489065528,-0.24701997358351946,0.322725678794086,-0.4808758175931871,-0.9397839456796646,0.45393658289685845,-0.6229759729467332,0.07606231281533837,-0.9307326381094754,0.04745555063709617,-0.16773519292473793,-0.36688653798773885,-0.20881624473258853,0.380570316221565,0.8466265425086021,0.8508362472057343,-0.13129858346655965,0.08437873236835003,0.35462250653654337,-0.7667893972247839,0.2377925287000835,0.9460345697589219,0.9891763851046562,0.057592229917645454,0.7219084626995027,-0.9986082608811557,-0.9055352048017085,0.35583430528640747,-0.2879415904171765,0.700751397293061,0.794115740340203,0.19795371824875474,-0.10688488325104117,0.5308973109349608,0.1522212359122932,-0.42981923883780837,0.5722102927975357,-0.8552221842110157,-0.9361705528572202,-0.7668838943354785,-0.16447319369763136,-0.32390426751226187,0.38065854692831635,0.26970615424215794,-0.438814306166023,0.5037986868992448,0.2641736236400902,0.6295892125926912,-0.5558608127757907,-0.7278012512251735,0.624671496450901,0.6124857277609408,-0.11859409930184484,-0.0687796026468277,0.004711223300546408,-0.1297559547238052,-0.4598545040935278,0.6240364788100123,-0.5896948594599962,-0.19815233629196882,-0.11756249703466892,-0.23428674647584558,-0.11481357458978891,0.7875653933733702,-0.5762348817661405,-0.9880654127337039,-0.5436230259947479,-0.6172128077596426,-0.808776487596333,0.2710092915222049,-0.9214404644444585,-0.2606067918241024,-0.14197485568001866,-0.6661664620041847,0.07310887100175023,0.04295485420152545,-0.0062194145284593105,-0.6665582191199064,-0.1073230872862041,0.5336854020133615,0.041252227034419775,-0.45341422827914357,0.8711298876442015,0.40658575436100364,0.8110472806729376,0.8486614702269435,0.7346724094823003,0.17690401105210185,-0.978211029432714,0.8651764928363264,-0.4848171775229275,0.011995730921626091,0.7934441231191158,-0.03268099529668689,0.7239287188276649,-0.5704117598943412,0.1679364680312574,-0.33749010413885117,0.6608440293930471,0.057123938109725714,0.9674746082164347,0.589335460215807,0.2657035393640399,-0.45033252891153097,0.5792231252416968,-0.24318680353462696,0.9691886147484183,0.8786324341781437,-0.6550779198296368,0.8828280223533511,0.11156686954200268,0.9301711251027882,-0.5990617615170777,0.6569310226477683,-0.9221005784347653,-0.6089507108554244,0.6904090740717947,-0.08513171272352338,0.2806178596802056,-0.8264039349742234,-0.3303294787183404,0.9799728230573237,-0.847847118973732,-0.8345208778046072,-0.7637713542208076,0.4798143128864467,0.38438583770766854,-0.0165594182908535,0.1528389765881002,0.5315945921465755,0.1478293682448566,0.29703420121222734,-0.494305940810591,0.8376639657653868,-0.6258432902395725,-0.5836507808417082,0.8445055787451565,-0.6699978010728955,0.16782916337251663,-0.6052897912450135,-0.9382308339700103,-0.26009558560326695,0.8913735193200409,-0.3798675308935344,0.5545105473138392,0.755208995193243,0.7570130880922079,0.07762266183272004,0.2997741852886975,0.3627242483198643,-0.7508281474001706,0.22659276006743312,0.49874591641128063,-0.3339019548147917,-0.48609902197495103,-0.03298135194927454,0.34119809744879603,-0.6357627506367862,0.7620943617075682,0.3975335229188204,-0.6097008953802288,0.7475304873660207,-0.9600365785881877,-0.7319227098487318,-0.9016561000607908,0.026179370004683733,0.7118684318847954,0.6849260786548257,0.4786110953427851,0.26708998112007976,-0.4522077590227127,-0.4938825247809291,0.9898763597011566,0.36632727878168225,-0.6702080741524696,-0.0076703899540007114,0.9471215764060616,0.012627184391021729,-0.501695339102298,-0.16309342300519347,0.022022794932127,0.8912065392360091,-0.7444921866990626,0.28277575271204114,0.06301910476759076,-0.010357507038861513,-0.61698595341295,0.5294900620356202,-0.06962057016789913,0.8547421991825104,-0.7100637694820762,0.387164028827101,0.8052713540382683,0.40213376795873046,0.06434317864477634,0.526434694416821,-0.6967327501624823,0.4416791792027652,-0.6424290449358523,-0.9358322583138943,0.521265959367156,0.7862660004757345,0.19034347962588072,0.4889653925783932,-0.3566079782322049,0.5448162099346519,0.5658832127228379,0.7804813669063151,0.7430694811046124,-0.16494279680773616,0.2966747493483126,-0.375783943105489,-0.5314066438004375,-0.018619223032146692,0.921173807233572,0.8137516961432993,-0.4060863023623824,0.8618822544813156,0.26441443245857954,0.8665770716033876,-0.5498314728029072,0.9404807779937983,-0.6754281152971089,-0.5508988229557872,0.7997688017785549,-0.6680100248195231,-0.3060759957879782,0.6120861815288663,0.9472646657377481,0.8468611924909055,0.47392836678773165,0.21030199760571122,0.2676187469623983,-0.44650351209565997,0.7523819892667234,-0.13838704908266664,0.9399722921662033,-0.24511874467134476,-0.4317910117097199,-0.19958836399018764,-0.384315587580204,0.11624613543972373,0.8023441382683814,0.4713165182620287,0.13645368488505483,0.8292195140384138,-0.2684477400034666,-0.24194262409582734,-0.037377836648374796,0.2757928087376058,-0.3088881056755781,0.8303623427636921,0.9445351515896618,-0.15429422911256552,0.2769578821025789,0.6953393081203103,0.6579321473836899,0.29072529543191195,-0.27846539206802845,0.5000747195445001,-0.11589637026190758,0.09992997534573078,-0.5412242207676172,0.06450156960636377,0.3221175028011203,-0.9418456754647195,0.3869387311860919,0.6689517153427005,0.029143400490283966,-0.5933040790259838,-0.020668580662459135,-0.853170967195183,0.9534028973430395,0.7061620047315955,-0.4108045822940767,-0.5821191971190274,0.44404434133321047,-0.14387201331555843,0.09141006926074624,-0.22775815380737185,0.07461711671203375,-0.2243334986269474,0.1941979518160224,0.86604775628075,-0.85551702324301,0.1664015706628561,-0.8159254053607583,-0.6841846788302064,0.8749238895252347,-0.9752358617261052,-0.2633944763801992,0.08284484641626477,0.6612712927162647,0.22330597136169672,-0.7209246717393398,0.7143642022274435,-0.6937742847949266,0.032320995349437,-0.3649770487099886,0.09802297130227089,-0.7443762351758778,0.24841365637257695,0.14917472563683987,-0.29942068411037326,-0.8749548168852925,0.9226356078870595,-0.15697195706889033,0.48877355782315135,0.7266462557017803,0.4744195775128901,-0.38399226125329733,0.6584010920487344,0.81220961548388,0.40479339892044663,-0.9651586031541228,0.6764184329658747,0.009505942929536104,0.7392134726978838,-0.8459611926227808,-0.6220570998266339,0.016877231653779745,-0.4828006671741605,0.4268146292306483,-0.5793407978489995,0.8375792130827904,-0.8794177053496242,0.500565707217902,-0.8822126388549805,0.19135793996974826,0.08740132162347436,-0.9139354433864355,-0.4085345803759992,-0.903033725451678,-0.7218891941010952,0.4987645479850471,-0.5701736295595765,-0.462180994451046,0.377881346270442,-0.6095097744837403,0.829163835849613,-0.7610063184984028,0.38826611917465925,-0.6937555684708059,0.531019973102957,0.9565933151170611,-0.49626270309090614,0.9026180226355791,0.849592870566994,0.6788004795089364,-0.09647682216018438,0.6017294339835644,-0.4258297476917505,0.5471787047572434,0.5577625944279134,-0.5465886346064508,-0.2729472918435931,0.6449726969003677,0.19347031228244305,0.6945259813219309,-0.701164435595274,-0.9750133929774165,-0.5521370470523834,0.10463294247165322,0.6374733187258244,-0.8718021353706717,-0.16512882988899946,0.7432419913820922,0.5545085002668202,-0.07854411052539945,-0.8805828113108873,-0.5196057772263885,0.1751185655593872,-0.09155786223709583,-0.5243781628087163,-0.6039429800584912,-0.8773422427475452,0.7254365291446447,-0.3850334817543626,-0.968386725988239,-0.29260134557262063,-0.6932284235954285,0.5427349586971104,-0.9972005840390921,-0.3847979484125972,0.17814561445266008,-0.03873781021684408,-0.5657593947835267,0.3382128425873816,0.06821801932528615,0.9086939296685159,-0.4859886788763106,0.4708512374199927,-0.44562155939638615,0.051126984879374504,-0.8868071115575731,0.21077584568411112,0.9182434384711087,-0.9422103040851653,-0.9982289979234338,0.9961680411361158,-0.684836613945663,0.7106139962561429,-0.8803377388976514,-0.26336966501548886,0.4891488482244313,-0.4898315714672208,-0.9508998277597129,-0.6304100039415061,0.13299821875989437,-0.8352605402469635,0.3466717703267932,-0.7697139284573495,0.04410653002560139,-0.99184461357072,-0.7151765367016196,-0.9469289239495993,-0.5479978579096496,0.07680647121742368,-0.00038641318678855896,-0.1343781016767025,-0.2351180948317051,0.014931054785847664,0.9339451594278216,-0.2126107793301344,0.23047397192567587,-0.3394039301201701,0.917954258620739,0.03240153705701232,-0.5052362028509378,-0.4424305581487715,-0.8524040393531322,-0.8716216776520014,0.5884196031838655,0.7371003767475486,-0.9481417345814407,-0.219531889539212,0.6047784239053726,-0.20564070716500282,0.6096831350587308,-0.41114050382748246,-0.2711059106513858,-0.8619011309929192,-0.35139760561287403,-0.04021223122254014,0.25749222096055746,-0.23799910256639123,-0.248546639457345,-0.3986402596347034,-0.3663349146954715,-0.31121725449338555,-0.5973200211301446,0.882862038910389,0.8086934485472739,0.1646672529168427,0.7671753568574786,0.9539523664861917,-0.9865383915603161,-0.11207681987434626,-0.837035974022001,0.5502438289113343,-0.9605718413367867,0.9889936461113393,-0.455767466686666,-0.7076912918128073,0.2631990071386099,-0.4790224772877991,-0.2514390111900866,0.29193146666511893,-0.19031727174296975,-0.6824895422905684,-0.44099699426442385,0.655220789834857,0.9574947655200958,0.043875700794160366,-0.039158865343779325,0.1436511818319559,-0.3978957571089268,0.6189756356179714,-0.19714609207585454,0.039789806585758924,0.30531685007736087,0.3332215743139386,-0.9497013934887946,0.3144318060949445,-0.3573979903012514,-0.9922325140796602,0.6778614786453545,-0.8864391217939556,0.015019225887954235,-0.06659655878320336,0.2869003084488213,-0.1538951052352786,-0.1885491358116269,-0.281550370156765,0.8230024194344878,-0.7416716804727912,0.9916680036112666,0.8687103753909469,-0.29332434199750423,-0.2808410907164216,-0.889225612860173,-0.8568036728538573,0.7378490902483463,-0.9904403383843601,0.490705881267786,-0.41919133299961686,-0.42723347153514624,0.6600029696710408,0.11954596592113376,-0.23254927154630423,0.7024252200499177,0.8982150503434241,-0.3276661643758416,-0.45994829572737217,0.8119813241064548,-0.9461212209425867,0.5034982287324965,0.5955371740274131,-0.3288318859413266,0.3279122528620064,0.5613443232141435,-0.5103759686462581,0.7032661940902472,-0.5317906108684838,-0.03560703294351697,-0.7554460535757244,0.85848284419626,-0.02934172935783863,-0.8232822520658374,0.6980001106858253,-0.3493301887065172,0.2401598165743053,-0.5123574854806066,-0.3871641564182937,-0.054548345040529966,-0.0014467369765043259,-0.8245365577749908,-0.2612448330037296,0.5847819885239005,-0.6583971087820828,0.6420405046083033,0.736209296155721,0.9342866609804332,0.6053730277344584,-0.4966213027946651,0.05111606465652585,-0.6653494983911514,0.04225473012775183,0.290360476821661,0.6204754519276321,-0.9872499285265803,0.4239544649608433,-0.804511689580977,-0.42022947035729885,0.5613823337480426,0.37170766200870275,0.37373388558626175,-0.3185997763648629,0.9816749403253198,0.37975205574184656,0.6687638806179166,-0.37021017586812377,-0.38273022044450045,-0.22675734292715788,0.8955628722906113,-0.6938583324663341,0.1784587074071169,0.5576244993135333,-0.4464946645312011,0.3426556885242462,0.6923292702995241,-0.8695198358036578,-0.47941875318065286,0.4480889500118792,0.9332694825716317,0.26970892772078514,-0.2477042581886053,0.046277394983917475,0.10555531410500407,-0.002137622330337763,0.3891786257736385,-0.7987664919346571,0.8785082758404315,0.45224157720804214,-0.9568235278129578,0.33446690533310175,0.5298864496871829,-0.06441632891073823,-0.849427841603756,0.3682939908467233,0.043178959749639034,0.5464221742004156,0.9255997608415782,0.9453942268155515,0.5216933055780828,-0.3821803987957537,-0.6970390127971768,-0.7555833118967712,-0.6238951501436532,0.2673862068913877,-0.22065794467926025,0.4747040430083871,-0.9512715055607259,0.9320082725025713,-0.4121271725744009,-0.5902647515758872,-0.15115033136680722,0.9918724088929594,-0.09851885447278619,0.11504545528441668,0.7945484761148691,-0.15145169291645288,0.09029992949217558,-0.817968939896673,0.40570349246263504,0.6220572502352297,0.8470940045081079,-0.6184107689186931,0.4293313720263541,0.029702378436923027,0.13381708646193147,0.8909789714962244,-0.4749907306395471,0.2613699696958065,-0.49746209662407637,-0.11658411845564842,-0.14086632756516337,-0.7930327630601823,-0.564736561384052,0.6639492651447654,-0.23986798198893666,0.5367937185801566,-0.5755071807652712,-0.593394841067493,-0.771254288032651,-0.5288573824800551,0.8408346413634717,0.8104335381649435,0.35556086152791977,0.3245407361537218,0.5849982365034521,0.004790161270648241,-0.5564880757592618,0.261382058262825,0.6626189388334751,0.3046123143285513,-0.11861753091216087,0.6498782495036721,0.2187772011384368,-0.07661083620041609,-0.8782539567910135,0.3373062154278159,-0.4968701065517962,0.08802437875419855,0.2489976705983281,0.9914330220781267,0.36341484589502215,0.608577367849648,0.5954568376764655,0.7240194207988679,-0.8866041735745966,-0.8043544488027692,-0.08616646472364664,-0.05284998146817088,0.2429902208968997,0.9955103653483093,-0.09472550451755524,-0.26081041200086474,-0.3745540431700647,-0.9486854397691786,0.4632457219995558,0.7321084407158196,-0.6365948994643986,0.14851458743214607,0.6217246926389635,-0.6134131173603237,-0.3114817850291729,0.3024388710036874,-0.1880576484836638,-0.8496994897723198,-0.6234247307293117,-0.9976257532835007,-0.7452665478922427,-0.7459247619844973,-0.8226965819485486,-0.713845694437623,-0.37892524991184473,-0.3173755668103695,-0.7750675776042044,-0.7706817495636642,-0.6002053539268672,0.8883553999476135,-0.06745094014331698,-0.7500084023922682,-0.9541528499685228,0.41024944512173533,0.983500499278307,-0.06469182623550296,-0.2480381391942501,0.1605532569810748,-0.8403120110742748,-0.9633610383607447,-0.0778018026612699,-0.37174992775544524,-0.0851229028776288,-0.44444904616102576,-0.8380556795746088,-0.5261968923732638,-0.6587705812416971,0.24407387664541602,0.08194706635549664,-0.884490083437413,0.6173339919187129,0.38699311995878816,-0.21515544224530458,0.014811037573963404,-0.0912425727583468,-0.6328724264167249,0.7763463826850057,0.8070882228203118,0.6991185038350523,0.3436196884140372,0.3822463555261493,-0.4597997316159308,-0.41642234614118934,-0.5195904760621488,-0.7717302697710693,0.9552992512471974,0.3414991027675569,-0.18763873586431146,0.1517443093471229,-0.46377677842974663,0.10327812237665057,0.5374855832196772,0.37756736390292645,0.013846730347722769,-0.20959547348320484,0.11324620014056563,-0.2860411894507706,0.3034360120072961,-0.9088097582571208,0.8875916735269129,0.7648423467762768,-0.1059881467372179,-0.7838082392700016,0.7494505923241377,-0.6277716704644263,-0.34354104148223996,-0.8975322814658284,0.39537920942530036,0.3969599474221468,0.12529866304248571,-0.974487635307014,0.6320683681406081,0.4048651261255145,-0.6746453861705959,-0.3161370847374201,-0.4509558822028339,0.7001331592909992,-0.1556421872228384,0.5264550116844475,-0.3662739326246083,-0.4723144983872771,0.08837931510061026,0.35545525699853897,-0.6091246665455401,-0.1270303255878389,-0.15490942355245352,-0.43292293697595596,0.29935169545933604,-0.7425807369872928,0.9235487636178732,-0.29673920199275017,-0.938014171551913,-0.5360086960718036,-0.6812028354033828,0.3442316213622689,0.865669718477875,-0.5294969920068979,-0.4867734434083104,-0.1371825896203518,0.8419450270012021,0.8551575280725956,0.9215659685432911,0.07986910315230489,-0.5255493493750691,-0.5876401858404279,-0.8928195447660983,-0.01839312259107828,-0.842027710750699,-0.5220883404836059,0.7751222555525601,-0.2224129014648497,0.21184554416686296,0.5907328389585018,0.8799089933745563,0.6845184057019651,0.26196439703926444,-0.8393037365749478,0.6457996987737715,0.5149253811687231,-0.11328880675137043,0.478226684499532,0.5538986953906715,-0.047676618210971355,-0.7910727774724364,0.9654897549189627,-0.2924643871374428,0.5636348323896527,-0.3686969047412276,0.6033120979554951,0.744453948456794,0.5351621503941715,-0.19893889548256993,-0.7191308587789536,0.9992133653722703,0.3790942719206214,0.8849262092262506,0.9959221351891756,0.8283377797342837,-0.32693213783204556,-0.10814778879284859,0.13397311139851809,-0.03351065795868635,0.40540282893925905,-0.6809423798695207,-0.8260678239166737,0.36177146015688777,0.7897759256884456,0.9825073955580592,-0.13807522552087903,0.2551788315176964,0.9016100312583148,0.5445552286691964,-0.0056985896080732346,0.42892068112269044,0.1314404192380607,0.47595452005043626,0.8377187210135162,0.830011832062155,-0.6012005978263915,0.7438781601376832,-0.17563257180154324,0.13313176250085235,0.06755092740058899,-0.7171137677505612,-0.7978759710676968,0.9973612688481808,-0.8884743051603436,0.5411018584854901,-0.5956198326312006,-0.30349022103473544,-0.9280559490434825,-0.12543211178854108,0.7715803938917816,0.0735597675666213,0.056734669022262096,-0.43165423534810543,0.5034867897629738,0.2397161372937262,0.13935466576367617,-0.7737797596491873,0.5897967875935137,0.8311656592413783,0.3524231743067503,0.5797924874350429,-0.6717056254856288,0.24281666101887822,-0.8788927835412323,0.34674394503235817,-0.6344037312082946,0.7150557958520949,0.1986227286979556,0.02755684358999133,0.13166190776973963,0.14746584091335535,0.7671922603622079,0.07867871411144733,0.4524659807793796,-0.07581889443099499,0.7359208893030882,-0.502825534902513,0.856506762560457,0.5218995693139732,0.4346676329150796,0.7695404710248113,-0.5802697655744851,0.8768903817981482,-0.7757170884869993,0.8453630646690726,0.05863240221515298,0.6133318385109305,0.4185688979923725,0.4411561335437,-0.5136284241452813,0.6258281185291708,0.4010389116592705,-0.006660317070782185,-0.6342993308790028,-0.5826444677077234,-0.19319682754576206,0.4258168004453182,0.17344671487808228,0.19565191958099604,-0.8101281002163887,0.34262190433219075,0.6884748176671565,0.40802151802927256,-0.5059868474490941,0.7429778408259153,-0.531705666333437,0.4668031819164753,0.7435404034331441,-0.2780465008690953,0.2953347875736654,0.11329836025834084,0.19751635566353798,-0.8052856512367725,0.29778301110491157,0.7712307292968035,0.6706841583363712,0.9684188929386437,0.12369551183655858,0.1673813438974321,-0.9579277038574219,-0.6673068054951727,0.9050033087842166,-0.45851184893399477,0.7638709046877921,-0.9037488675676286,-0.30247579189017415,0.016164404805749655,0.49068707786500454,-0.436795165296644,-0.05624129017814994,-0.5987164382822812,0.11953468155115843,-0.8686550059355795,-0.19215873628854752,-0.34820070024579763,0.8198476070538163,0.500517186243087,-0.9108195365406573,0.5373166617937386,0.07228325074538589,-0.8842206909321249,-0.9674179754219949,0.07010046951472759,-0.007397644687443972,-0.20055791456252337,0.05247487733140588,0.46387464040890336,-0.46606879821047187,-0.02453427342697978,-0.02775462856516242,-0.9622009755112231,0.7045661392621696,0.09091249434277415,-0.27585760364308953,-0.43634158140048385,-0.01191645348444581,0.6563110793940723,0.2847425574436784,-0.04299951018765569,-0.7911339281126857,0.7419472746551037,0.6744426507502794,0.3779910816811025,-0.9994914652779698,0.09809333318844438,-0.7012367476709187,-0.40220709005370736,-0.8148828619159758,-0.22213934920728207,0.6614712309092283,0.16072013741359115,-0.4422143278643489,-0.8756057778373361,0.9591514207422733,0.33652636921033263,0.8200196381658316,0.9790393305011094,0.5004407875239849,-0.6133482968434691,0.5580762829631567,-0.39157353853806853,0.7348558478988707,-0.7912819227203727,0.6559092267416418,0.5235580317676067,-0.4704879028722644,-0.5561433802358806,0.46016388200223446,-0.040059362072497606,0.2976882462389767,-0.908845332916826,0.40612247213721275,0.7316107470542192,0.5310268406756222,-0.03923641191795468,-0.27407026663422585,-0.19350640196353197,0.806787240318954,0.3054019697010517,-0.8218467216938734,-0.2130365283228457,-0.662778296507895,0.6617920324206352,0.7019862211309373,0.6310111959464848,0.01855406817048788,0.4627658766694367,-0.9402103652246296,-0.9990640813484788,-0.39661410730332136,-0.8380796662531793,-0.12009047903120518,0.5228329468518496,-0.5240622805431485,0.81271170405671,-0.7594690844416618,-0.4491887525655329,0.6691103149205446,-0.16862607188522816,0.33097182074561715,-0.7362686125561595,0.37917880713939667,0.40992278326302767,-0.288864407222718,-0.0941964453086257,0.3472999599762261,-0.6460298444144428,0.5146321030333638,-0.16129385633394122,0.8768093674443662,-0.18946886248886585,0.7366993720643222,-0.3001396940089762,-0.46304298797622323,0.9910243367776275,0.2648687963373959,-0.02756114723160863,0.010404557455331087,0.6703536412678659,0.5268423296511173,0.8917598323896527,0.7823485289700329,-0.711874611210078,-0.24850311456248164,-0.32241132063791156,0.7215814208611846,-0.06443237932398915,-0.20180116407573223,0.7237916956655681,-0.89340227143839,0.6162046883255243,-0.6007113349623978,0.16896187188103795,-0.43584950314834714,0.8066956545226276,0.22487885877490044,0.3329150374047458,0.26719150273129344,0.8192992648109794,-0.7616384271532297,-0.22768201027065516,0.08026994857937098,0.8236584048718214,0.9466055822558701,-0.3426504423841834,-0.2541951220482588,0.5512576294131577,-0.5139341186732054,0.9027221351861954,-0.9183689709752798,0.9034837270155549,0.12729870667681098,-0.98351144278422,-0.8802125565707684,-0.9329357077367604,-0.7846030378714204,-0.6872130613774061,0.9729877929203212,-0.8795139878056943,0.9895036220550537,0.5076903975568712,0.16603780863806605,0.6508338870480657,-0.28938877349719405,-0.025106464978307486,0.09143841452896595,-0.5611222255975008,-0.048187699634581804,-0.7676007840782404,0.8955506212078035,-0.2941145938821137,0.3552400446496904,0.6058804295025766,-0.696808653883636,0.40470047295093536,0.28366477228701115,0.2796964319422841,-0.5675493911840022,-0.777262132614851,0.7995615098625422,0.7571432739496231,-0.03410052880644798,-0.870001750998199,0.6481972811743617,0.47447094740346074,-0.5526230842806399,0.6716499668546021,0.8296749303117394,-0.16758051980286837,0.814223499968648,0.02913868334144354,0.6394397923722863,-0.5367823005653918,-0.8226447692140937,0.9128759764134884,0.36363844480365515,0.8245122665539384,-0.5337815778329968,-0.8776742457412183,0.6324992435984313,0.8140274854376912,-0.05996458884328604,-0.7765148021280766,-0.8963012681342661,0.5313693988136947,-0.46784304501488805,-0.0342141049914062,0.9849560945294797,-0.9531912668608129,-0.20703714294359088,-0.9959765966050327,0.9190451260656118,-0.6921334858052433,-0.8511658613570035,0.701650386210531,-0.6436977628618479,-0.5801266361959279,0.6567726717330515,-0.9896674118936062,-0.2342233369126916,-0.3648393377661705,-0.5935455514118075,-0.06374031584709883,0.4619911275804043,-0.325967819429934,-0.7249946240335703,0.6917901583947241,-0.9285208280198276,-0.8221036121249199,0.4595988979563117,0.3809673013165593,-0.9769318583421409,0.4671182888559997,0.9227622686885297,0.8239636044017971,-0.46394655061885715,-0.1324979616329074,0.7895878017880023,0.31645440170541406,-0.06928535271435976,0.4418719098903239,0.914639794267714,-0.45103901717811823,0.54317436972633,0.17019434133544564,-0.6074652322567999,-0.9711620695888996,0.7697448199614882,-0.873142855707556,0.5405713636428118,0.07020383002236485,-0.15869051543995738,0.4797163880430162,-0.17301532439887524,-0.45429991465061903,0.7400007317773998,-0.0606993087567389,0.2439084379002452,0.6563592376187444,0.3236158140935004,-0.03206025483086705,-0.30114656779915094,-0.2640128736384213,0.6888490514829755,-0.9340829993598163,-0.01751670427620411,0.3973622969351709,-0.3946261703968048,0.17899344442412257,0.61352195776999,0.36483468441292644,-0.9390978645533323,0.0788127020932734,0.8085533007979393,0.8394273617304862,-0.3102801810018718,0.2687748456373811,0.8393111461773515,-0.6610246151685715,-0.3120834189467132,-0.2853146637789905,-0.9692738610319793,0.3058956195600331,-0.9147718730382621,-0.5061746938154101,-0.5651326873339713,-0.10226476658135653,0.44058665772899985,0.4813974257558584,-0.060685159638524055,0.18270313180983067,-0.9210299463011324,-0.39274971140548587,-0.677204190287739,0.06580319348722696,0.6744022713974118,-0.003590630367398262,0.07211863808333874,-0.7269985666498542,0.5507838595658541,-0.8870139392092824,-0.05863025179132819,-0.9429381126537919,0.6024080510251224,-0.7977104135788977,-0.030578663107007742,0.1541235949844122,0.6605908870697021,-0.9729667655192316,0.12108977837488055,-0.4203293155878782,-0.8991641541942954,0.5619504014030099,-0.2246864684857428,-0.5371259064413607,-0.4851731196977198,0.011816995684057474,-0.6865281057544053,0.18225679406896234,-0.2876498540863395,-0.0638868142850697,-0.04293264960870147,-0.801509513054043,-0.44492172449827194,0.14870455861091614,-0.7118852725252509,-0.8713464732281864,-0.04541232297196984,0.6015251553617418,-0.3878790163435042,-0.4524757554754615,-0.16719909850507975,-0.29675208451226354,0.3264642017893493,0.24594390159472823,0.697306654881686,0.2049638219177723,-0.2997110518626869,0.527101849205792,0.2741633770056069,0.9675280349329114,0.37484300090000033,-0.46629862766712904,0.5685525042936206,0.38147746585309505,-0.8864514729939401,0.7168739642947912,0.8551050815731287,-0.2563501805998385,0.4124513976275921,0.5004288712516427,-0.7942996099591255,0.96805455442518,0.023227418772876263,-0.9179657469503582,-0.6281592785380781,-0.15878213476389647,0.8745243875309825,0.19233279349282384,0.2296391176059842,-0.4531397856771946,-0.5305347973480821,0.3539800448343158,0.962407432962209,-0.49569045193493366,0.8951847641728818,-0.5114674321375787,-0.03017332684248686,0.9199261097237468,-0.0552508314140141,-0.7141773924231529,0.3927870923653245,0.41617605462670326,0.7227862072177231,-0.7910689488053322,-0.871777341235429,-0.8212275402620435,0.06804237281903625,0.7065843557938933,-0.8281993959099054,-0.23563777888193727,-0.6505403835326433,-0.6323020658455789,0.24207668704912066,0.4971093120984733,-0.4995673946104944,-0.5895325560122728,0.6292332704178989,-0.4957292662002146,-0.2763325171545148,-0.47154992865398526,0.5455956915393472,0.7230821084231138,0.37807473354041576,0.9403403284959495,0.6070088385604322,-0.0001302538439631462,-0.7147314478643239,-0.7493149139918387,0.4786435938440263,-0.980192513205111,0.2977131153456867,-0.8946823300793767,0.5723884552717209,0.18931994261220098,-0.9418658874928951,-0.509846965316683,-0.8299384824931622,0.0123360063880682,0.9382229619659483,0.21790404384955764,0.1550833317451179,0.4836481283418834,0.1822880869731307,0.12045583175495267,-0.19307487504556775,-0.4427931900136173,0.8070756820961833,0.38033990701660514,0.7015481912530959,-0.678724545519799,0.7194250109605491,-0.2003357857465744,0.429872777312994,0.6688514552079141,-0.9398770434781909,0.7635755753144622,0.019394944421947002,-0.5327835534699261,0.4872515993192792,0.8057708917185664,-0.22161836083978415,0.4340084418654442,-0.4746707435697317,0.2712612091563642,0.4183531408198178,0.45809508860111237,-0.36758549232035875,0.7105303429998457,-0.41467553889378905,-0.2619059388525784,-0.5359384794719517,-0.8390182531438768,0.8942086431197822,0.1528923069126904,0.9790630899369717,-0.4972192016430199,0.7337382873520255,-0.304340788628906,0.9751160019077361,0.10146362613886595,0.5140309468843043,0.5627738679759204,0.2922363867983222,0.13330526649951935,-0.06725730560719967,0.8358181263320148,0.750747965183109,0.23699571611359715,-0.2884911228902638,0.5836056596599519,-0.3059326000511646,0.8063725475221872,-0.3259249422699213,0.09672247199341655,-0.19934886181727052,0.8615826889872551,-0.013985955156385899,-0.518279118463397,-0.5082608964294195,0.6272188681177795,-0.9380045346915722,0.11394166015088558,-0.476969744078815,-0.9166452544741333,-0.09816384268924594,0.7433558502234519,0.15414415206760168,0.7356559368781745,0.7679441757500172,0.8879479309543967,-0.3894811072386801,-0.463323169387877,0.6290559903718531,0.14689862448722124,0.4696225798688829,-0.6383161982521415,-0.26338932337239385,0.5332538168877363,0.10886690067127347,0.8636524938046932,-0.986260331235826,-0.27695626160129905,0.02120693400502205,0.46413766825571656,0.16555445129051805,0.9881659024395049,0.09649653313681483,0.7573505924083292,0.756678007543087,0.6165757104754448,-0.7834558724425733,0.30285684764385223,0.7636297047138214,-0.3557636276818812,0.32293653953820467,0.7929029953666031,-0.49692253628745675,0.3493922473862767,-0.9097322160378098,0.8397889928892255,0.8309870027005672,-0.008773285895586014,-0.6353026893921196,0.639825580175966,0.10334679344668984,-0.16873752558603883,0.8971429672092199,-0.3911376129835844,-0.9489176333881915,0.6429499005898833,-0.6028304779902101,-0.44206067034974694,-0.7241680901497602,-0.21049044746905565,-0.6855733343400061,-0.34617259120568633,0.8612484843470156,0.9294819766655564,0.2689691949635744,-0.042674378491938114,0.4273525611497462,-0.24427344370633364,0.53132793167606,0.727493570651859,0.410773700568825,0.9750315546989441,0.8539335574023426,-0.0933773466385901,-0.413799830712378,-0.5416944371536374,0.9562652320601046,-0.4279238344170153,0.4502454628236592,-0.6337698167189956,-0.9275405476801097,0.6522023249417543,0.7710251864045858,0.6625252063386142,-0.41636552521958947,0.6207987926900387,0.978848344180733,-0.6179963336326182,0.9302299413830042,0.596237625926733,0.19251776579767466,-0.3028701711446047,-0.6049658507108688,0.36778497137129307,0.4589056111872196,0.8567725345492363,0.8628021935001016,-0.10727278795093298,0.15660363109782338,0.5404421691782773,0.8937606504186988,-0.5345535590313375,0.06325646117329597,0.3006717609241605,0.30557332653552294,-0.6154102990403771,-0.43408555584028363,-0.3689491543918848,0.23724030144512653,-0.47518030647188425,0.8572104759514332,-0.5641486393287778,-0.7811191366054118,-0.9338746853172779,0.8515824805945158,-0.7606757660396397,-0.9364397116005421,0.138360315002501,-0.5262219454161823,0.84765545418486,-0.1837920118123293,-0.8490877547301352,0.918723814189434,0.7050471832044423,-0.22097373893484473,0.20061381766572595,-0.31410642014816403,-0.33418265590444207,-0.6558072408661246,-0.10637923842296004,0.27198376739397645,-0.18858338659629226,0.4690603497438133,-0.1131001771427691,0.9829718889668584,-0.6408214098773897,0.666178772225976,0.5116717596538365,0.10986160393804312,0.9398640766739845,-0.23591694282367826,-0.9984595007263124,0.9099277039058506,0.6782921417616308,0.42522748513147235,-0.3278486244380474,-0.0995583445765078,0.8289952711202204,0.41570114996284246,-0.4669854431413114,-0.16185219259932637,-0.23361449223011732,-0.28712499886751175,0.43286685133352876,-0.41770592611283064,0.1271877004764974,-0.031301939859986305,-0.8901127586141229,0.19557545334100723,0.7407912882044911,-0.7192442859522998,-0.7900444171391428,0.9084689696319401,-0.7748866924084723,-0.031725074630230665,-0.5652772025205195,0.56630929838866,0.7964838659390807,0.8518100110813975,0.42375075817108154,0.025583072565495968,0.0875329403206706,-0.8285612999461591,-0.9097417094744742,-0.9061665241606534,0.0023478567600250244,-0.11880893120542169,-0.8792215758003294,-0.21049711992964149,-0.45415702648460865,-0.9380741384811699,-0.005749183241277933,-0.622992726508528,0.5657434887252748,0.27394961984828115,-0.4784590876661241,0.13826166931539774,0.0010510440915822983,0.8044083900749683,0.5357763455249369,0.3177414699457586,0.9317129724659026,-0.7315245633944869,-0.6275627352297306,-0.37738935416564345,-0.5466685094870627,0.03406027518212795,0.5669199656695127,0.3092395178973675,-0.4659992069937289,-0.6907486426644027,-0.1490680524148047,-0.8886272697709501,0.9737183079123497,-0.949583460111171,0.6895248699001968,0.07480681035667658,0.3509067064151168,-0.7693150895647705,-0.5333394724875689,-0.9709102544002235,-0.26591440476477146,-0.7850294481031597,-0.763693168759346,0.8966449624858797,-0.81892657186836,0.27014462277293205,0.2982646762393415,0.034540906082838774,-0.8594085201621056,-0.9135570740327239,-0.08696452528238297,-0.8511509504169226,0.3410082347691059,0.8206902840174735,0.3612749669700861,0.9102335595525801,-0.8848286853171885,-0.47419868176802993,0.5502891927026212,0.04707138752564788,0.3056028583087027,-0.8097173403948545,0.2743247179314494,0.1421943479217589,0.8997905901633203,-0.6142810019664466,0.5369669990614057,-0.23264610534533858,-0.9929602681659162,0.2058800533413887,-0.5297268847934902,0.818582471460104,-0.9662859844975173,0.5852999649941921,-0.5642183367162943,-0.4467418100684881,0.8287527449429035,-0.26332123298197985,-0.08913420792669058,-0.6059735929593444,0.31693778559565544,-0.3708033449947834,0.7204272346571088,0.9798047146759927,0.3829034110531211,-0.6791501617990434,0.36129977088421583,0.024437998421490192,0.06592019507661462,0.6118832766078413,-0.5696919457986951,0.7559430664405227,0.8225689921528101,0.9521276531741023,-0.7614417243748903,0.6256174109876156,0.5518345637246966,-0.9503920185379684,-0.3409583792090416,-0.4824368576519191,-0.5177741139195859,0.19494380243122578,-0.6012294194661081,0.6510977307334542,-0.06203059013932943,0.1536214859224856,0.8812741958536208,-0.045091329608112574,0.08476604148745537,0.8110835165716708,0.4969754461199045,-0.9780961228534579,0.14826961187645793,-0.4170206543058157,-0.03160207811743021,-0.48943358613178134,-0.8943970212712884,0.34554734406992793,-0.6128726778551936,-0.44100808538496494,-0.2089992077089846,-0.6908412235789001,-0.2746942909434438,-0.8822242803871632,0.37004205817356706,0.6367449071258307,-0.9598952303640544,-0.31107736099511385,-0.9120225510559976,0.9724033940583467,-0.6599508924409747,0.4304595999419689,0.6547399261035025,0.3475752738304436,-0.7268665498122573,0.8250721106305718,0.7151887058280408,0.055338318925350904,0.5288544604554772,-0.5537105929106474,0.16293110186234117,0.9490997730754316,-0.18035511951893568,0.5545426984317601,0.19488934194669127,-0.028449480887502432,0.6835698243230581,0.8788298186846077,0.23196023190394044,-0.20970407407730818,0.4501603781245649,-0.25271078292280436,-0.5905127213336527,0.5584081313572824,-0.17342843767255545,0.09281949000433087,0.35178765980526805,-0.9161260994151235,-0.9897699151188135,0.5977272167801857,-0.3436542544513941,-0.028078758623450994,0.009072636254131794,0.7777387145906687,0.7400114461779594,0.66609609965235,0.8232603748328984,-0.1366353896446526,-0.8442384898662567,-0.8023112514056265,-0.31215663300827146,0.24940205551683903,0.5432639927603304,0.763122518081218,0.29604949802160263,-0.3838173421099782,0.8485759980976582,-0.1983423000201583,-0.25942098209634423,0.168501369189471,-0.986276788637042,0.9485144494101405,-0.7445113332942128,0.9809122821316123,-0.3066539689898491,-0.11642975592985749,-0.1955099399201572,0.04989957436919212,0.31200116220861673,0.44489806378260255,-0.08560897968709469,-0.550137875135988,-0.82142104068771,0.676581381354481,-0.9178361701779068,0.36767269810661674,-0.5174949765205383,-0.8082212409935892,0.6269193021580577,-0.5186575027182698,0.5028600282967091,0.70686597796157,0.41970433946698904,-0.8404436917044222,0.5736724529415369,0.487665060441941,0.6603214703500271,0.8622892205603421,0.8183067133650184,-0.7164502702653408,0.1863403939642012,0.9086698484607041,-0.3801940530538559,-0.7962055886164308,0.8571575745008886,0.3374332757666707,0.8774781445972621,-0.47948118997737765,0.09235031390562654,0.8047784389927983,-0.18411119980737567,-0.9807390309870243,-0.014774416107684374,0.44772036001086235,0.38842904521152377,0.8904609130695462,-0.01285313256084919,0.9721610327251256,0.7177578159607947,-0.008414016105234623,-0.17905125813558698,0.017485004849731922,-0.9624569271691144,0.9767694319598377,-0.7311643795110285,0.965700136963278,-0.49234022619202733,-0.5711437417194247,0.12828480498865247,-0.5669519980438054,-0.02269411412999034,-0.004609458148479462,0.030784096103161573,-0.9686514958739281,0.41669712821021676,-0.22788311913609505,0.2601783643476665,-0.9760500742122531,-0.44558171974495053,-0.49705792870372534,-0.46771940821781754,0.6259675025939941,0.5057588969357312,-0.18589223828166723,-0.7696019257418811,-0.4209298016503453,0.5135005633346736,-0.02892165072262287,0.10504301451146603,0.26523099932819605,-0.13618941651657224,0.5976787353865802,-0.750395031645894,-0.7474302686750889,0.53161600837484,0.5618742774240673,0.3238151944242418,-0.8404885432682931,-0.5706664402969182,0.4498649789020419,-0.09552899654954672,-0.2910116049461067,-0.21318888710811734,0.1721746944822371,-0.554002215154469,0.6997614484280348,-0.16367740463465452,-0.647248009685427,0.11119896173477173,0.9748143539763987,-0.901817393489182,0.10821245471015573,-0.6964579173363745,0.8839704357087612,0.42404554691165686,0.14807284390553832,0.2773309135809541,-0.6833249521441758,-0.7247983086854219,0.6164418729022145,-0.8606795868836343,0.09175362717360258,-0.32831103121861815,0.3487645359709859,-0.5293666538782418,0.032002344727516174,-0.3528092335909605,0.3822836596518755,0.6452052192762494,0.7433861326426268,0.26093755615875125,-0.835660430137068,-0.22397870430722833,-0.8596066129393876,-0.16747852228581905,0.19807448703795671,0.2138553815893829,0.983375430572778,-0.9113429142162204,-0.09013591473922133,0.23585161101073027,0.807132126763463,-0.9131891708821058,-0.8830992048606277,-0.52798667922616,-0.6361945220269263,0.13891740003600717,0.24285513442009687,-0.702584485989064,0.7789612971246243,0.08374185487627983,0.744468763936311,0.570124092977494,-0.024356054607778788,0.5825410145334899,-0.5164452628232539,-0.862336568068713,0.3334582382813096,0.7867376999929547,0.8101955028250813,-0.6549431583844125,-0.42421452328562737,0.26858333311975,-0.6482360800728202,0.3082191529683769,-0.6651687235571444,0.17026012437418103,0.18216026248410344,-0.474759120028466,-0.557326921261847,0.0059566013514995575,-0.6687144516035914,0.6900914032012224,-0.9205805789679289,0.6673290450125933,0.8384258062578738,0.9705662513151765,-0.5663052382878959,0.5833009723573923,0.46369244856759906,0.3580668084323406,0.19843315426260233,-0.8921599038876593,-0.19243459263816476,0.41016682889312506,-0.9617985137738287,-0.9962330628186464,0.9149148808792233,0.5676101986318827,0.3800318669527769,0.7483722842298448,-0.11085456470027566,0.11499275639653206,-0.31632668850943446,0.12364459410309792,-0.7724278578534722,0.49220740888267756,-0.30909138498827815,0.8729619947262108,-0.9829377601854503,0.5386969121173024,-0.078534672036767,-0.36294150492176414,-0.658491421956569,0.5492492532357574,-0.7377427238970995,0.32292658230289817,0.28026852244511247,-0.8519882699474692,-0.9563102563843131,0.6339261536486447,-0.4326931615360081,0.2557583120651543,-0.0059609245508909225,0.5350476405583322,0.14556689653545618,-0.9047424290329218,0.6404277794063091,0.8885022974573076,-0.35405872762203217,0.8858800120651722,0.776411990635097,0.8831593901850283,-0.6929144491441548,-0.5231455839239061,-0.1872146180830896,-0.6353311440907419,-0.7204032014124095,0.6525538158603013,-0.5106360712088645,0.6663803062401712,0.7673887126147747,0.5625816402025521,0.5564285037107766,-0.566837664693594,-0.40204688580706716,-0.6595595818944275,-0.9810189646668732,0.3614742630161345,0.20682983519509435,-0.7009518542326987,0.4592237267643213,-0.9114146330393851,0.9740651152096689,-0.9922292740084231,0.5368867460638285,-0.2564001139253378,0.9898463981226087,0.6535223782993853,0.05306358030065894,0.5883366060443223,-0.8490970912389457,0.0002188463695347309,-0.5638870662078261,0.6280678785406053,-0.8007447067648172,0.47830132581293583,0.9244553493335843,-0.4788650902919471,-0.24340420914813876,-0.08704786980524659,-0.5884396079927683,-0.892033829819411,-0.7380700772628188,0.6338447877205908,0.6552257938310504,-0.7837962540797889,-0.7078021410852671,0.4040144910104573,0.4300191830843687,-0.03232267266139388,0.30765523621812463,-0.0887700174935162,-0.25142636336386204,0.2755086626857519,0.5144150420092046,-0.7619863813742995,0.8607879290357232,-0.7902828762307763,0.18429822381585836,-0.3075048699975014,0.43996997317299247,0.40468050818890333,-0.04208351206034422,0.13926263572648168,-0.659009765367955,-0.4617497161962092,-0.9624004224315286,-0.5171561636961997,-0.1170054730027914,-0.5394111983478069,-0.9604467889294028,-0.325925481505692,-0.8144104480743408,0.9819739540107548,0.4624476544559002,0.9442405416630208,0.5194669519551098,-0.2775558070279658,0.6061366945505142,-0.3721599276177585,0.9658316788263619,-0.19424258824437857,-0.5610274109058082,0.5655884672887623,-0.29261154728010297,0.5162354530766606,0.5825727321207523,-0.5801041056402028,-0.9426580453291535,-0.8940399242565036,-0.8255009376443923,-0.7280235765501857,0.39829703234136105,0.2596581093966961,0.8658663891255856,0.6043610074557364,-0.5836851722560823,-0.41331930737942457,-0.6952476962469518,-0.767102268524468,-0.6993253668770194,0.19145425036549568,0.6488874652422965,-0.8748836712911725,0.8891384163871408,-0.33605126617476344,0.47784310299903154,-0.22128121042624116,-0.08496732637286186,0.22228645766153932,-0.0653842999599874,-0.6046997373923659,-0.015342692378908396,-0.7490705517120659,0.3183336085639894,-0.41472593136131763,0.49807123467326164,-0.5948487184941769,0.8297484330832958,-0.35347604379057884,0.8093373929150403,0.23122984264045954,-0.41734986938536167,0.6877498119138181,0.3774295630864799,-0.492526535410434,-0.05804561544209719,-0.13088640943169594,0.0479557765647769,-0.711606256198138,0.7955934917554259,0.14614336099475622,0.24918580753728747,-0.7809156142175198,0.3577165729366243,0.809457078576088,0.4517797650769353,0.067242749966681,0.7668592911213636,0.2123349066823721,0.014195045921951532,0.08745455928146839,-0.509771806653589,0.650187436491251,0.6963963899761438,0.23350412491708994,-0.5082236351445317,-0.6398881985805929,0.8058867412619293,-0.7942659142427146,0.16947223199531436,0.22575022699311376,0.3032304560765624,-0.7034055897966027,-0.4861388457939029,-0.3958847038447857,0.736330839805305,-0.005071124527603388,0.10633807443082333,0.7754121981561184,0.21485012909397483,-0.4450899213552475,0.36094376631081104,0.30342792393639684,-0.8258261606097221,0.7481731362640858,-0.19711152464151382,0.17503343801945448,0.2107651080004871,0.05710619315505028,-0.1592949414625764,0.5595311378128827,-0.7580180196091533,-0.8818116271868348,-0.3989484799094498,0.627362153492868,0.7705225460231304,0.48777310410514474,-0.17981596617028117,0.3143458687700331,-0.7596214953809977,0.6885497742332518,-0.038187573198229074,0.1112773148342967,-0.7145468560047448,-0.33466740138828754,0.5220179259777069,-0.9246807862073183,0.814944380428642,-0.2963674971833825,0.28755185240879655,-0.5282832523807883,0.4846886517480016,-0.26281534088775516,-0.2866727733053267,-0.26740872813388705,0.9034323720261455,0.02233758196234703,0.41400792729109526,-0.08239538408815861,0.024091814644634724,-0.08076043194159865,-0.9635979947634041,0.23569621657952666,-0.33401882415637374,0.7311657378450036,0.33675182331353426,-0.7697921558283269,0.7666967427358031,-0.9331245343200862,-0.477207625284791,0.5794324125163257,0.8494711588136852,-0.4504984375089407,0.23184269154444337,-0.553606724832207,0.24718534061685205,0.8423355580307543,-0.13007655460387468,0.9867800339125097,0.652278651483357,-0.6904902956448495,-0.016222798265516758,-0.5817302288487554,-0.16909218626096845,-0.8052010149694979,0.9447576622478664,0.43688684375956655,-0.22905625076964498,-0.17306941282004118,-0.23332847328856587,-0.8107014894485474,0.9378696321509778,0.4705692110583186,-0.43825677782297134,-0.4593264083378017,0.5093414480797946,-0.9617390213534236,0.16539491573348641,-0.9863105365075171,-0.41774403024464846,0.5366614274680614,-0.064650465734303,-0.7542936028912663,-0.43546719988808036,0.3862427123822272,-0.07668965123593807,-0.17034268286079168,-0.8594564883969724,0.4316385821439326,-0.888799523934722,0.24983525788411498,0.9300840622745454,-0.07390300184488297,0.1953411386348307,0.5173853584565222,0.3907349072396755,-0.9503514654934406,0.6430064016021788,0.5896892067976296,-0.12695131916552782,0.6361996224150062,-0.5910267350263894,-0.8666166043840349,-0.2476178053766489,-0.010947465430945158,-0.6076198844239116,0.6575966402888298,-0.19858569093048573,-0.4319471390917897,0.09263378055766225,0.9031560635194182,0.11915060458704829,0.9310023044236004,0.853585731703788,-0.28037189319729805,-0.4962850636802614,-0.3529114522971213,0.4266879726201296,0.7452882886864245,-0.49504661187529564,0.8399985549040139,0.517777259927243,0.34721475141122937,-0.09089596662670374,0.871405731420964,-0.8806961346417665,0.11477712029591203,0.8154235254041851,-0.3305996977724135,0.25376244727522135,0.23416324611753225,-0.8172645750455558,-0.653843114618212,0.8933902862481773,0.6312432531267405,0.8304942706599832,-0.9896328127942979,0.39621722465381026,0.4112522881478071,-0.9603923228569329,-0.1594303548336029,0.2711552930995822,-0.39745003590360284,0.2988711982034147,0.9617072460241616,0.8220193772576749,0.8472080635838211,0.04214566946029663,-0.11721085570752621,-0.3944119531661272,0.21466537145897746,0.5503099747002125,0.5620984267443419,-0.0132434768602252,-0.7222846313379705,0.7460141596384346,-0.29144563898444176,0.28858626168221235,0.16057032626122236,-0.7300451872870326,-0.5651374221779406,-0.10973534919321537,-0.5344577603973448,0.3997685839422047,0.887868539430201,-0.03570910636335611,-0.030347768682986498,-0.8783220103941858,-0.26301835384219885,0.7315777251496911,-0.5544384610839188,0.8520140750333667,-0.7425358020700514,0.33729481464251876,-0.5882248729467392,-0.15463361470028758,0.5543580376543105,-0.584036658052355,-0.8019491550512612,-0.2626913273707032,-0.3045194260776043,0.19974203128367662,-0.7420492628589272,-0.6462742434814572,-0.36905913380905986,-0.8243497903458774,-0.6247068247757852,0.008958891034126282,0.6649511232972145,0.5178939164616168,-0.02802450628951192,-0.9677104805596173,-0.6672769179567695,-0.19101106422021985,-0.3990410822443664,0.6316778706386685,-0.26874759839847684,0.51700927503407,-0.4660637336783111,-0.7403535698540509,-0.5930487820878625,0.2615219336003065,-0.37140947999432683,0.09180494025349617,-0.5200723740272224,0.8547238041646779,0.5314064309932292,-0.56781539414078,-0.45654800394549966,-0.2038925476372242,-0.9386217608116567,-0.45993709936738014,0.014453392010182142,0.9623929192312062,0.7975038266740739,0.9078020304441452,-0.8647096701897681,-0.993682514410466,0.20915443263947964,0.3494291570968926,0.1495435694232583,-0.36836847895756364,0.9954788591712713,0.6919800513423979,-0.3582570464350283,-0.7556662238202989,-0.3353504384867847,-0.0016735834069550037,-0.7756978287361562,-0.2254056460224092,-0.6975927194580436,0.7339193555526435,0.23205466149374843,-0.2452291576191783,-0.5840834714472294,0.425105195492506,0.2112856968306005,-0.7632066658698022,0.5398418763652444,-0.38734956784173846,0.12588737858459353,0.7975825374014676,-0.4153851084411144,0.31355187436565757,-0.7410847903229296,0.8438004800118506,-0.4507719655521214,0.055740582291036844,-0.8253240319900215,0.7038300801068544,0.6393097131513059,-0.11283079022541642,-0.8219233611598611,0.0941312531940639,0.03754453733563423,0.8778774845413864,0.8524332675151527,0.8255224423483014,-0.2662512566894293,0.3380187312141061,-0.31659992039203644,-0.9317595874890685,-0.2959407386370003,0.6855088225565851,0.4168398454785347,0.6928903027437627,0.5117839979939163,0.9460324146784842,0.13598289992660284,-0.25261004362255335,-0.30917898239567876,-0.8847923008725047,-0.8257732675410807,-0.7126509440131485,0.42520805541425943,-0.2544389581307769,-0.3971107369288802,0.9826013091951609,0.566342321690172,0.9294225149787962,-0.3532395954243839,-0.6882911957800388,-0.10938817588612437,-0.6518194833770394,-0.8219092069193721,0.4094441425986588,0.743730494286865,-0.055164959747344255,0.11102814227342606,-0.29613712383434176,0.5646010269410908,-0.1686438345350325,-0.28335105115547776,0.3305915570817888,-0.8470204803161323,-0.2764354548417032,0.06648121913895011,-0.21805250132456422,-0.703207042068243,0.23425951600074768,0.8230341249145567,0.3159820092841983,0.7903498285450041,0.46042270865291357,0.10992805613204837,0.642925372812897,-0.2665230860002339,0.1458947006613016,0.43686330784112215,-0.9933489030227065,-0.8562764758244157,-0.06047156499698758,-0.17409018706530333,0.8776350426487625,0.4728426714427769,0.31543015083298087,0.9248929992318153,0.19454068038612604,-0.35474796406924725,-0.13655914878472686,0.5260463748127222,0.7323036440648139,-0.8219531653448939,0.8725589485839009,0.9203226226381958,0.7629776201210916,0.04178506648167968,0.4713877812027931,-0.862096004653722,-0.9711790629662573,-0.8758479715324938,-0.47603825153782964,-0.8776414883323014,0.585683683399111,-0.5386480242013931,-0.8095463057979941,-0.12502007838338614,0.1473870794288814,-0.7429618127644062,0.7235737070441246,-0.8641656157560647,0.3815020462498069,-0.6646048235706985,-0.7600527317263186,0.28324845619499683,0.39142543636262417,-0.06348961126059294,0.561528000049293,0.5616894960403442,0.26123519986867905,-0.36987066827714443,0.1291080261580646,0.4940485651604831,0.42124503245577216,0.7969384472817183,-0.867954945191741,-0.25695180846378207,-0.9814025415107608,-0.5925460932776332,0.9596148547716439,0.3836384345777333,-0.3869782565161586,-0.3333972683176398,0.8075619135051966,-0.2687882389873266,0.40019293455407023,0.3904132889583707,0.03627023892477155,0.1116525805555284,0.03471121517941356,0.948703124653548,0.3422058392316103,0.08986420882865787,-0.09772745799273252,-0.933888272382319,0.901007869746536,0.37650500936433673,0.7412096383050084,0.23046690691262484,-0.09406749345362186,-0.06581709440797567,0.09182954672724009,-0.8186820652335882,0.546916606836021,-0.3439730363897979,-0.06523235561326146,-0.3873155703768134,0.23183707892894745,-0.18160255439579487,-0.19313588831573725,-0.3568362956866622,-0.950417569372803,0.6499007502570748,0.8954973267391324,-0.6754058841615915,-0.551762483548373,-0.1671353722922504,0.19567544292658567,0.050586655270308256,0.8900656439363956,-0.7363196653313935,-0.22589289722964168,-0.38204703852534294,-0.8578702784143388,-0.20212198188528419,0.887522045057267,-0.6363421250134706,0.9163464815355837,0.6415907498449087,-0.13528668973594904,0.6516674552112818,-0.7590103526599705,-0.2300621923059225,0.04256657883524895,0.0446185152977705,0.2629489074461162,-0.973817337770015,-0.3205206170678139,-0.6066537541337311,-0.39036054257303476,0.14786698203533888,-0.7128318464383483,0.048987108282744884,-0.17230330407619476,0.38660108391195536,0.6710095461457968,-0.45588799100369215,-0.4323248704895377,0.8873811936937273,-0.20607816567644477,-0.4344580639153719,0.500546048860997,0.6136517222039402,-0.353177132550627,-0.42127051344141364,-0.4520260305143893,-0.8129403218626976,-0.38226090371608734,-0.1255605760961771,-0.8055906463414431,-0.39455684181302786,0.7804718394763768,0.39435838256031275,0.167210946790874,-0.7103532319888473,0.4702396229840815,-0.06309944810345769,0.9527376326732337,0.6757115852087736,-0.60922880936414,-0.21072106761857867,-0.6413521664217114,0.849014941137284,0.30439708568155766,0.4042732906527817,-0.9443786065094173,-0.10668517462909222,0.2951693320646882,-0.8629267038777471,-0.4900327264331281,0.843262002337724,-0.5890068528242409,-0.007675407454371452,0.3571202075108886,0.8901212136261165,0.15232553286477923,0.0806675679050386,0.49037252739071846,0.4464593091979623,0.6339432043023407,-0.27282259287312627,0.07000208413228393,0.8980919979512691,0.7596474820747972,-0.5224695638753474,-0.5023699454031885,-0.008621010929346085,0.41676848381757736,-0.46195910731330514,-0.6812083348631859,-0.5073495036922395,0.9969213851727545,0.4260391043499112,0.12328234501183033,-0.8927184147760272,0.517258670181036,-0.6450676145032048,-0.4874800443649292,0.03522816067561507,-0.4841464124619961,-0.22157863155007362,0.655894426163286,-0.6563987066037953,0.39809148432686925,0.737598639447242,-0.41618328681215644,0.38872066838666797,-0.5168329020962119,0.38632374396547675,0.4545210814103484,0.6966299023479223,-0.45257165282964706,0.06465562153607607,-0.9461777340620756,0.8799290363676846,-0.9444115343503654,-0.13776939315721393,0.7910225610248744,0.7222159276716411,-0.9612589334137738,-0.963315871078521,-0.9567915042862296,-0.8732383586466312,0.08825778309255838,-0.12056877138093114,0.7771397493779659,-0.8186341286636889,0.7230001823045313,-0.03583799256011844,-0.8757964377291501,0.5476163509301841,0.9935546424239874,-0.5575321614742279,-0.5188994770869613,-0.6626007119193673,-0.9019239791668952,0.08069240255281329,-0.470330358017236,0.9466621736064553,0.21314367931336164,0.8362273112870753,0.509495971724391,0.9842215119861066,0.9438911862671375,-0.28621626226231456,-0.07923968601971865,0.9985488629899919,-0.2539005200378597,0.6039779502898455,0.16532895481213927,-0.881970964372158,0.12138182343915105,0.7921529593877494,-0.7752890237607062,0.6489279572851956,-0.07500838208943605,-0.08487017964944243,0.27056574588641524,0.09643585328012705,0.189404318574816,0.8763945042155683,0.22380677238106728,-0.07562758540734649,-0.04287303006276488,-0.1830263868905604,-0.043810693081468344,-0.9494049623608589,-0.11456449003890157,-0.5780206490308046,-0.3424482913687825,0.4442816856317222,0.8060944727621973,0.6804326847195625,-0.19436680432409048,-0.4204594218172133,-0.9441040935926139,-0.46671144338324666,-0.0675250357016921,0.24796278309077024,0.17440347047522664,0.8989408034831285,-0.5237996159121394,0.8294365219771862,0.1902623437345028,0.5935948365367949,-0.4704957981593907,-0.6728167543187737,-0.8057495425455272,-0.18091244297102094,0.3875364391133189,-0.8464252119883895,-0.41153375850990415,0.31568537885323167,-0.9392210603691638,0.5922758472152054,-0.11204500496387482,-0.4064297894947231,0.3942150711081922,-0.856980562210083,-0.3622341640293598,-0.4543063212186098,-0.22742747468873858,0.13942662347108126,0.5648274053819478,0.8659911560826004,0.7179943858645856,-0.5435591768473387,0.36319213220849633,0.33434029622003436,0.6949446192011237,-0.7323389924131334,0.013504743576049805,-0.8573283664882183,-0.7118687671609223,-0.661181865260005,-0.28628347162157297,-0.3697718563489616,-0.11421447899192572,-0.887096578720957,-0.10637821396812797,-0.4230791861191392,0.03558968007564545,0.04587701940909028,0.5800851588137448,-0.6952142412774265,0.240562551189214,0.23020198475569487,-0.1727055562660098,0.08847560826689005,-0.8815743662416935,-0.3073600344359875,0.7981754746288061,-0.41976468497887254,0.9088900503702462,0.9161245431751013,-0.6801965716294944,0.34532524831593037,0.09713383950293064,-0.049628978595137596,-0.28383661480620503,0.7860211804509163,-0.9318416146561503,-0.8599937041290104,0.34881123155355453,-0.20910825161263347,0.477760664653033,-0.9997957465238869,-0.7646814621984959,0.7127452595159411,0.21513118594884872,-0.7388775181025267,0.8822343689389527,0.6230898327194154,0.11990036675706506,0.7197142490185797,-0.5677416394464672,-0.0970858009532094,-0.7733621634542942,-0.1997392838820815,0.11463326821103692,0.6219944870099425,-0.3654556469991803,0.05906646745279431,-0.1567279021255672,-0.22780857468023896,0.4053566502407193,0.12141331750899553,0.24639618257060647,0.0757362237200141,0.6669051623903215,0.9136257134377956,0.5294314883649349,-0.35883310809731483,-0.988910845015198,-0.16805799817666411,-0.2765309209935367,-0.7232512412592769,-0.12295153504237533,0.6164830052293837,-0.6484681651927531,0.028838878497481346,-0.723509191069752,0.8602976482361555,-0.9795292080380023,0.36208956269547343,-0.6421424611471593,-0.3026652727276087,0.5382679314352572,0.7219542455859482,0.3319725189357996,-0.5721421441994607,0.1735453954897821,0.06649656873196363,0.5730308839119971,-0.4730683211237192,0.38129172613844275,-0.01124262111261487,0.6076429900713265,-0.8641542210243642,0.2696781703270972,-0.50298743089661,-0.5577354207634926,-0.04376735771074891,-0.5002343324013054,-0.7818653685972095,-0.009123030584305525,-0.6230192617513239,0.2078513796441257,0.5906688538379967,-0.5005191965028644,-0.9949751361273229,0.35856829723343253,-0.9019511989317834,0.9644393832422793,0.4529851619154215,0.700377095490694,-0.6850174595601857,-0.16562862368300557,-0.9734492572024465,0.32262658793479204,0.17540134629234672,0.28544120909646153,0.8340217089280486,0.5689704408869147,-0.6815108940936625,-0.14072745712473989,0.3922852724790573,0.9444544496946037,0.9351087943650782,-0.605730252340436,-0.24895865703001618,0.18922586180269718,-0.4754408788867295,-0.001979498192667961,-0.9604879580438137,-0.4315937007777393,-0.8496542992070317,0.5182014983147383,0.7641108222305775,-0.19812104757875204,0.7558587999083102,-0.1192228109575808,0.6130535374395549,0.3722545634955168,0.9447529790922999,-0.5294850366190076,0.6600294173695147,-0.0059587182477116585,-0.06395962554961443,0.9173814267851412,-0.06409901706501842,-0.6406269548460841,0.39490712946280837,-0.4503097045235336,-0.4033651673234999,-0.8822146626189351,-0.14448966830968857,-0.4324633898213506,-0.720609416719526,0.9342847373336554,0.6416550315916538,0.6566571602597833,-0.4060277258977294,-0.21681034285575151,0.5334741505794227,0.10704762255772948,-0.029107028618454933,-0.6516554062254727,0.463114149402827,-0.7858530711382627,0.6421685446985066,-0.8293947344645858,0.01998209860175848,0.5857177120633423,-0.5858980100601912,-0.2573777874931693,0.386951289139688,0.45678724721074104,-0.06852116575464606,0.04139849776402116,-0.7903387174010277,0.5233330493792892,0.2789389891549945,0.03603993682190776,0.8971667154692113,-0.47898596059530973,-0.7515121707692742,0.8259839098900557,0.0552000249736011,0.8306283382698894,-0.48130648070946336,0.06213146587833762,-0.4129570587538183,-0.3565685385838151,0.8246646863408387,-0.9621358974836767,0.43244635639712214,-0.11726082628592849,0.46426835050806403,0.20053353812545538,-0.7314517213962972,-0.1926718014292419,0.45435339910909534,-0.07285919087007642,-0.6028213910758495,0.2073742849752307,0.41771175852045417,0.4459354244172573,0.11442682659253478,0.19211389729753137,-0.33606505999341607,0.516194224357605,-0.4256001659668982,-0.2176794745028019,-0.04068790515884757,0.8716742992401123,0.43869944382458925,-0.45319939032197,0.9659320116043091,-0.8072178610600531,-0.5433822101913393,-0.47959769470617175,0.4547733156941831,0.8450426440685987,-0.6619083937257528,0.2235890617594123,-0.5817944649606943,-0.23196855979040265,-0.4577855672687292,-0.5714199007488787,-0.921845409553498,0.11191666778177023,0.615919238422066,0.008606018032878637,0.009929344989359379,-0.9578358731232584,-0.2309069992043078,0.14160916302353144,-0.6770557598210871,-0.7568911868147552,-0.8358051413670182,0.016306780744343996,-0.6732960874214768,-0.44985541701316833,0.8957441095262766,-0.9003779687918723,0.18793310225009918,-0.45772112160921097,0.7603933936916292,0.8318814155645669,-0.6309551610611379,-0.9746555690653622,-0.8736416641622782,0.638905649073422,0.02342244330793619,0.2567104594781995,0.25626633455976844,0.29921181220561266,-0.8414964871481061,-0.6193344057537615,-0.27833734825253487,0.9382552579045296,-0.50448475824669,0.08501740824431181,-0.6252067270688713,-0.19071529526263475,-0.19347250694409013,0.7416630247607827,-0.10440791863948107,-0.5839143740013242,-0.540683557279408,0.010564313270151615,0.8825160297565162,0.2907712790183723,-0.12060485361143947,-0.11262087291106582,0.1478822291828692,-0.6355135207995772,-0.1119368658401072,0.4454794120974839,0.26381396129727364,-0.46807778580114245,-0.004934042692184448,-0.5208369102329016,0.8414790341630578,-0.029059532564133406,0.27778098080307245,-0.8067455915734172,0.966367828194052,-0.909332902636379,0.7273369450122118,0.0734415571205318,0.5844278899021447,-0.2556507457047701,-0.9297815887257457,-0.25980267114937305,-0.6040617600083351,-0.334896229673177,0.825885318685323,0.3410269469022751,0.5834322799928486,0.8849599920213223,0.5898013664409518,-0.4214412188157439,0.5108503112569451,-0.4628640082664788,-0.5957120424136519,-0.7307382607832551,0.5998892560601234,-0.5508493320085108,0.3860718500800431,0.9914841973222792,-0.8696972974576056,-0.07812820980325341,-0.5105366096831858,-0.12481418065726757,-0.7569564674049616,-0.4823879534378648,-0.049572700168937445,-0.4945117705501616,0.9034842029213905,0.15857612621039152,0.85333999292925,0.19806023826822639,-0.3919576397165656,-0.3153035971336067,0.543863938190043,0.18675101548433304,0.36536972830072045,0.2728802487254143,-0.8911648392677307,0.3094674074091017,-0.18076122971251607,-0.4076429894194007,-0.41517677437514067,0.8005751026794314,0.43443392775952816,-0.6476962571032345,0.456262806430459,0.5837977854534984,0.07038262253627181,-0.6518140411935747,0.26057430543005466,0.10816480126231909,-0.9599027908407152,-0.7913198522292078,-0.13873058650642633,-0.06450559664517641,-0.9059741897508502,0.3293855460360646,-0.617015375290066,-0.40893003437668085,-0.6799252289347351,0.449807601980865,-0.46086769411340356,0.11708011804148555,0.6539341020397842,0.624668825417757,-0.6003852975554764,0.9780914024449885,0.4449440739117563,-0.6928753419779241,-0.6514141918160021,0.9478657208383083,-0.7446143473498523,0.6311035347171128,0.4164162208326161,-0.6167222447693348,0.08936565043404698,-0.3020892250351608,-0.050312431529164314,0.670557719655335,-0.9367980668321252,-0.5407262654043734,0.9325231686234474,-0.44266419764608145,-0.17524334136396646,-0.3536874516867101,0.18465805519372225,-0.6993134934455156,0.7752327625639737,-0.2685841219499707,0.31054422864690423,0.26547967502847314,-0.972746582236141,-0.9928466710262001,-0.799092969391495,-0.15645096264779568,-0.803829153534025,-0.634818113874644,-0.37210009479895234,-0.7735620429739356,0.37063577957451344,0.027071258518844843,0.6125092413276434,-0.6520632836036384,-0.3580831163562834,0.7363407700322568,0.3764760713092983,-0.40288197761401534,-0.06350049190223217,-0.3478595558553934,-0.5689853951334953,-0.05308138718828559,-0.9267713762819767,-0.8329448904842138,0.0876167006790638,-0.0009182929061353207,0.9478169758804142,0.8796428260393441,-0.13972424110397696,0.5046230740845203,-0.39220965607091784,0.5378100122325122,-0.7490304131060839,-0.4493967411108315,0.6612965622916818,0.9661659887060523,-0.41849413327872753,0.6434044823981822,-0.941526205278933,-0.8260820112191141,-0.10043353773653507,-0.555610949639231,-0.6640480640344322,-0.7762552378699183,-0.3802819843403995,-0.2161498423665762,0.998124638106674,0.6516657038591802,0.8480135523714125,-0.24829805828630924,-0.5031189904548228,0.911669347435236,-0.9740013177506626,-0.36499341391026974,0.3817185708321631,0.19301761826500297,0.7072429386898875,0.022211975418031216,0.6247318931855261,-0.125607973895967,-0.6063368273898959,0.9868300631642342,0.06718082912266254,0.07759969495236874,-0.11202186066657305,0.603569227270782,-0.43828796222805977,0.9896442419849336,-0.24646515399217606,-0.046236660331487656,-0.9126812424510717,-0.29601670056581497,0.6087032798677683,-0.9869732325896621,0.8203251082450151,-0.24508614838123322,-0.11671829735860229,0.060101956594735384,0.8514984520152211,0.332235146779567,-0.5754615333862603,0.3282880657352507,0.30754207260906696,0.5649678423069417,-0.8825740139000118,0.010612137615680695,0.09530084580183029,-0.3257133290171623,0.753331117797643,0.1672603148035705,-0.024808887392282486,0.5539854620583355,-0.8741786060854793,0.49806052492931485,-0.7678275550715625,-0.9546073148958385,0.8743949001654983,-0.41711480962112546,0.7707548243924975,0.7441446240991354,-0.6227228175848722,-0.8432935927994549,0.37835065880790353,0.2571877362206578,-0.4959892788901925,0.5249239783734083,-0.8692621155641973,0.6001558545976877,0.5191477052867413,-0.9952607238665223,-0.5446264697238803,-0.6310518207028508,-0.6603922569192946,-0.7959626168012619,0.6684421510435641,-0.7479153699241579,-0.47496220050379634,-0.5073412731289864,0.04644497111439705,-0.8149981130845845,0.11696872068569064,0.9620502470061183,-0.696026986464858,0.9975462700240314,0.14878150168806314,0.7407647962681949,-0.5692657423205674,-0.2580025587230921,0.4799429113045335,0.7402045810595155,-0.37471505673602223,-0.42127231135964394,-0.40627398202195764,0.9912282982841134,-0.3448685579933226,0.6141645107418299,0.85771644115448,0.6106803338043392,-0.48007594933733344,0.2537029697559774,-0.1712378873489797,-0.7634084178134799,0.5449147652834654,-0.6755196149460971,0.4822551878169179,-0.9494739933870733,0.6203773501329124,-0.3381377514451742,0.1112088724039495,-0.6289689186960459,0.44253787538036704,-0.4170723161660135,0.18896457413211465,0.9612309974618256,-0.5780822411179543,-0.47192805586382747,-0.9260045737028122,0.9704736513085663,0.1671979734674096,0.6396921160630882,0.6046342914924026,0.21395903965458274,-0.7349211247637868,-0.44889041781425476,-0.9402140476740897,0.3585699633695185,0.6353255226276815,-0.11445899121463299,-0.7813766561448574,0.9978409954346716,0.47888121427968144,-0.6498317504301667,0.2180347442626953,0.28713210951536894,-0.685200905892998,0.7722560563124716,-0.19478983618319035,0.13229861529543996,-0.275661482475698,0.04856919962912798,0.18915533320978284,0.17259345948696136,-0.6625334587879479,-0.7467737612314522,0.14790453296154737,-0.35939351934939623,0.19976787688210607,-0.7900151927024126,0.029557086061686277,-0.6416939185000956,0.9718640502542257,0.7489100582897663,0.4416385106742382,-0.9374818950891495,0.642692715395242,0.9067259994335473,0.7846185551024973,0.8906556442379951,0.2411643946543336,0.36213120399042964,0.3059001346118748,-0.8226628457196057,-0.1961568770930171,-0.8509281231090426,-0.8788899932987988,0.8561374912969768,-0.8280780604109168,-0.5608162018470466,0.3245511525310576,-0.5254686041735113,0.3795646638609469,-0.483252820558846,-0.7443937207572162,-0.2316194474697113,0.6236855098977685,-0.5553140784613788,-0.925039048306644,0.8717809491790831,-0.0034034335985779762,-0.3805787689052522,-0.8958675148896873,0.4954245830886066,0.2626652023755014,0.1980322222225368,-0.2716528894379735,0.8749239933677018,0.9038896663114429,-0.9532040520571172,-0.09260670188814402,0.01066917972639203,0.5035068741999567,0.7126008495688438,-0.010838608257472515,0.38821948831900954,-0.12743322178721428,0.9672927665524185,0.4111036043614149,0.8331054681912065,-0.6604823842644691,-0.04491422278806567,0.8263636715710163,-0.6536588668823242,0.671307388227433,0.3129177698865533,0.9763470077887177,0.32620222959667444,-0.5733192674815655,-0.3653116561472416,-0.22760822251439095,0.9787259828299284,0.6930208783596754,0.1917544361203909,-0.1606007982045412,0.27780853398144245,0.939586894121021,0.36278502736240625,-0.5775155588053167,-0.39973487285897136,0.1928772577084601,-0.03860116517171264,-0.8795351595617831,0.8190806261263788,0.39382140059024096,0.49266576394438744,0.006929643452167511,-0.08266105642542243,0.2528966232202947,-0.334091130644083,0.5269109895452857,0.6086302963085473,0.3477526386268437,0.23402409488335252,0.9838221492245793,-0.6303337393328547,-0.8839629897847772,0.47524064872413874,0.6018623001873493,-0.07537927059456706,0.8517502723261714,0.875876288395375,-0.8970605116337538,-0.5220909109339118,-0.766283486969769,0.9645712175406516,-0.41626411443576217,0.5566635155119002,-0.42778505478054285,-0.9229883514344692,-0.9933458268642426,-0.9205692554824054,0.46884546568617225,0.8521672529168427,-0.33639226481318474,-0.052633308339864016,0.1702374005690217,0.9459678623825312,0.599293083883822,0.5432405811734498,0.3273181146942079,0.2923229867592454,0.5505381682887673,-0.01671827072277665,-0.02135017840191722,-0.9600485293194652,0.04967384785413742,-0.3777592028491199,0.32480343244969845,-0.1640502051450312,-0.6753190383315086,0.5805274466983974,-0.4716594531200826,0.523555064573884,0.9505615811794996,-0.9185558762401342,-0.006466560531407595,-0.18428717786446214,0.08189367037266493,-0.9134492911398411,-0.4862250303849578,-0.031744230538606644,0.676456946413964,0.1920411055907607,0.9696004381403327,0.3641383652575314,-0.4358865893445909,-0.5943490047939122,-0.7119333031587303,-0.9596194513142109,-0.9344043452292681,0.46015597274526954,0.08607670245692134,0.6337052956223488,-0.19231661269441247,0.25172164710238576,-0.9961232887580991,-0.5213426756672561,-0.41516240080818534,-0.7089296961203218,-0.8302508378401399,0.7270025801844895,-0.19554087799042463,0.5176957054063678,0.163852967787534,-0.8549359031021595,-0.6093473401851952,-0.8231711001135409,-0.07112979050725698,-0.46142311161383986,0.741071651224047,-0.9808392389677465,-0.261235517449677,0.6929168002679944,-0.7402578927576542,-0.18555687554180622,0.7001873492263258,0.589462083298713,0.9193439148366451,0.8165373122319579,-0.8947911118157208,0.7067068400792778,-0.27557831536978483,-0.6670937268063426,-0.38180737430229783,-0.9932425431907177,0.3567007896490395,0.7114468603394926,0.3473891047760844,0.3715549330227077,-0.9682033690623939,0.13329257164150476,0.5005441876128316,0.20794352609664202,0.9151530521921813,0.7338881231844425,-0.7167900884523988,-0.8942443081177771,0.9173000101000071,-0.1239349371753633,0.7413897453807294,0.36637892201542854,-0.3647355674766004,-0.2845740169286728,0.9090691856108606,0.2144094123505056,-0.9039243338629603,0.07937050331383944,0.820511944591999,-0.09398403158411384,0.19049517484381795,0.953622211702168,0.6960402107797563,-0.1314678774215281,0.10223775869235396,-0.8684645355679095,-0.9286350361071527,-0.48075570771470666,0.8508759289979935,0.8424466699361801,0.006438663229346275,0.9700801726430655,-0.08701803162693977,0.1291332426480949,0.44775821920484304,-0.18109679408371449,0.3484325180761516,-0.2337242066860199,0.3084084023721516,0.24112583929672837,-0.7523426190018654,-0.5511539136059582,-0.8212324278429151,0.9833790920674801,0.10572941740974784,-0.06008189404383302,0.4119864646345377,-0.5950717031955719,0.47230726992711425,-0.8629799359478056,0.1953019704669714,-0.30047121830284595,-0.4452919689938426,-0.2050568494014442,0.09621747955679893,-0.2582298466004431,-0.21318036830052733,0.7244395301677287,0.8338513220660388,-0.08707820763811469,0.5739139746874571,-0.24735171254724264,0.8165012556128204,0.6025506495498121,-0.6050233114510775,0.7950765825808048,-0.8532235366292298,0.5566390776075423,-0.36395771289244294,-0.48487059120088816,0.1838296572677791,-0.6741896094754338,-0.042930064257234335,-0.002404383383691311,0.9926056740805507,0.6351651721633971,-0.29168736282736063,-0.7025979324243963,-0.6174152279272676,0.07129509886726737,0.7475872300565243,-0.6060181185603142,-0.21228722902014852,0.7108284896239638,-0.26965363696217537,0.9316593836992979,-0.38217531330883503,-0.23372382577508688,0.23711946932598948,0.1406145952641964,-0.8275044201873243,-0.6144412378780544,0.028533482924103737,0.35188042744994164,-0.6073821457102895,0.1382328192703426,0.32897155126556754,0.6532598282210529,0.8357402039691806,-0.13273855997249484,0.8108894708566368,-0.9610484596341848,0.11667136009782553,0.2054357952438295,0.9832503707148135,0.3593138549476862,-0.6849718610756099,0.5222746352665126,0.8692417009733617,-0.890341701451689,-0.18667416088283062,0.9083017422817647,0.41813233960419893,-0.17883975245058537,-0.29039069497957826,0.40621507493779063,-0.062047670129686594,-0.16915788920596242,0.09478282509371638,-0.898993284907192,-0.38493390986695886,-0.04298738203942776,-0.5612765718251467,-0.8201677496545017,0.5320085710845888,0.34086799900978804,-0.8169379997998476,0.28388771414756775,0.9471468306146562,-0.8767725401557982,-0.39588824193924665,0.927970411721617,0.1470572599209845,0.05136924656108022,0.447306418325752,-0.6852978789247572,-0.761018586345017,-0.021974400151520967,-0.80557731539011,-0.11029760120436549,0.04103737464174628,0.17695470247417688,0.8164784857071936,0.5564260687679052,0.38371670385822654,-0.06038819160312414,0.8893822142854333,0.8293245518580079,-0.41907321801409125,0.18147776369005442,0.8243382978253067,0.597020854242146,0.40431374218314886,-0.1507927174679935,-0.8075620760209858,0.7026437306776643,-0.8266202108934522,0.2904994315467775,0.9039099663496017,0.12583104521036148,0.13487856509163976,0.8642020747065544,-0.18740503303706646,0.1586071182973683,-0.31802342645823956,0.342759458348155,0.47700840746983886,-0.9029813767410815,-0.7484133378602564,0.5367154274135828,-0.38076522946357727,0.9718829598277807,-0.7403914728201926,0.7076761052012444,-0.35845529101789,-0.9516694466583431,0.6556101944297552,-0.8982438049279153,-0.35940417973324656,0.9564519170671701,0.43334596464410424,-0.7024234407581389,0.4919892577454448,0.8523175860755146,0.9094763402827084,0.9626118647865951,0.8373736538924277,-0.43701149709522724,0.6829556925222278,0.7501202248968184,0.015039345249533653,0.13119466649368405,-0.06234963843598962,-0.9827192747034132,0.6872724927961826,0.6299201832152903,0.6758902533911169,0.9729171479120851,0.04422500217333436,-0.043552319053560495,0.9787345873191953,-0.12511638598516583,0.46894260309636593,-0.8840342541225255,-0.76814901875332,0.11120216408744454,0.8952053706161678,0.18806504365056753,-0.3075833762995899,0.8389861858449876,0.2274598991498351,-0.28586718905717134,0.755656111985445,0.8290544617921114,0.4494188758544624,-0.7309458726085722,0.5251743267290294,-0.08683023089542985,-0.485947182867676,0.29487281385809183,0.37620156165212393,0.24657670548185706,-0.6115918015129864,0.828581162262708,-0.37833929574117064,0.5875285752117634,-0.3199816248379648,0.2262276727706194,-0.2257041917182505,-0.20652903662994504,0.9314565239474177,-0.2887373245321214,-0.8642731015570462,-0.7656856896355748,0.8998801168054342,0.7673363732174039,-0.7506990036927164,0.9216691791079938,-0.49532089568674564,0.23331015557050705,0.6936480365693569,0.3921547750942409,-0.5670229881070554,0.2724200263619423,-0.5620080991648138,0.28722761012613773,-0.7338191140443087,0.3679852830246091,0.607034885790199,0.7634385442361236,-0.44680019840598106,0.5129236630164087,0.028407064266502857,0.761911173351109,-0.26969249499961734,-0.261706018820405,-0.6423223745077848,0.4725740384310484,-0.3990464718081057,0.9709500856697559,0.1474047559313476,0.332798776216805,-0.6364077907055616,-0.3086431226693094,-0.05486373184248805,0.7840186469256878,0.22304115071892738,-0.7419552342034876,-0.38182539120316505,0.4801653288304806,-0.26516939466819167,0.31505506159737706,-0.07556691067293286,-0.0395032144151628,0.6142566767521203,-0.886682063806802,0.7772197755984962,-0.649732809048146,-0.11982375103980303,0.40810025995597243,0.6220859363675117,0.20364540303125978,0.27272795047611,0.9646553653292358,0.4847093843854964,0.5106196673586965,0.13230626052245498,-0.07408589497208595,-0.6919414214789867,0.4404184790328145,0.930455123540014,-0.7936246991157532,0.6691704448312521,0.6862489124760032,0.35571133298799396,-0.19301161542534828,0.1016924986615777,-0.44384823366999626,0.8655644529499114,-0.510488458443433,-0.9035429134964943,-0.3130094800144434,0.18064556596800685,0.6898352997377515,0.10046364553272724,-0.20516277151182294,-0.2498166263103485,-0.5645754197612405,0.1493751686066389,-0.6155626378022134,-0.7207442820072174,0.6737350169569254,-0.41744346683844924,0.4568462120369077,-0.9620625250972807,-0.5600441512651742,0.16652933089062572,-0.35126278595998883,-0.2715995740145445,0.03698059683665633,-0.1307857441715896,-0.18510482041165233,0.15567668341100216,0.4899912243708968,-0.24824744928628206,0.9071909575723112,0.4978419682011008,-0.08514146693050861,-0.6821604785509408,0.04101447435095906,-0.16707651829347014,-0.322018179576844,-0.7841589860618114,-0.9385626525618136,-0.7838324760086834,-0.3957213400863111,0.08593200985342264,-0.03502874635159969,-0.03245727904140949,-0.5168719119392335,-0.14255071617662907,-0.32084751361981034,-0.36009472608566284,0.3968097041361034,-0.08846784941852093,0.14798456197604537,-0.9655226143077016,0.48150028847157955,-0.638582160230726,-0.10361342038959265,0.16193764610216022,-0.7562043825164437,0.25373204285278916,-0.47326083527877927,-0.0028857202269136906,-0.9585082475095987,-0.8286234471015632,-0.8476560078561306,-0.5367084513418376,-0.7963844211772084,0.42258465429767966,-0.5302532874047756,0.5013458984903991,-0.22308502718806267,-0.727306520100683,-0.8017184436321259,-0.982912614941597,0.02470736624673009,0.04832113441079855,-0.7141704456880689,0.4844247396104038,0.8146119937300682,-0.4218015931546688,0.05774333234876394,0.3692781743593514,-0.17047086590901017,-0.163131610956043,-0.05101362895220518,0.7348253023810685,-0.8982487241737545,-0.6742718573659658,-0.3424395085312426,-0.5546850077807903,0.31465641548857093,-0.9340655906125903,0.07089151768013835,0.48946617683395743,0.41600622050464153,0.09239332284778357,-0.7996811307966709,0.2831401680596173,0.6257801242172718,0.8086516768671572,-0.1930193305015564,0.14727976033464074,0.13872663350775838,0.7589370403438807,0.2794166929088533,-0.9065508684143424,0.695306452922523,0.09445654693990946,0.057666751090437174,0.2706651175394654,0.6220012027770281,0.39648678014054894,0.1710119224153459,0.17917979368939996,-0.9381561605259776,-0.5274147023446858,-0.803666795603931,0.5348484911955893,-0.9622635352425277,-0.012582142371684313,0.3704475690610707,0.258622664026916,-0.24048986425623298,0.9176619900390506,-0.03008470917120576,-0.265759052708745,0.8593975300900638,-0.11884279130026698,0.48043683683499694,-0.14032226521521807,0.1741063129156828,0.17239212058484554,0.3360989443026483,0.7691940795630217,0.24928675219416618,-0.016954774968326092,-0.06790854502469301,-0.5504821185022593,0.4527365295216441,0.8940343260765076,0.31815890269353986,-0.20260468125343323,0.4769113468937576,0.23036494851112366,0.8169262181036174,0.36424592044204473,-0.35437193559482694,-0.5610831496305764,0.42977194814011455,0.542760752607137,-0.14979335479438305,-0.3315508970990777,-0.17779156705364585,0.59365936787799,0.3787151286378503,-0.6148113822564483,-0.19280532840639353,0.13769978052005172,0.5534881600178778,-0.37362472247332335,0.2723035220988095,0.016140120569616556,0.6460262876935303,-0.4296205588616431,0.015148898586630821,0.962727545760572,0.04983954085037112,-0.10087732365354896,-0.7954991064034402,0.7792873769067228,0.4014026112854481,0.2071606325916946,-0.703454477712512,-0.42159066442400217,-0.8903300375677645,-0.9586309054866433,0.39979016594588757,-0.8009103802032769,0.43995910370722413,0.9013330563902855,-0.5375210270285606,0.17661944264546037,0.0229385900311172,0.06166225066408515,-0.2799539463594556,-0.7674621101468801,0.7614318635314703,-0.10524325119331479,-0.4780968180857599,-0.09670976549386978,-0.48726555285975337,0.3214868656359613,0.37649553501978517,-0.45354094821959734,0.2968627279624343,-0.49479230027645826,-0.7385284234769642,-0.049928424414247274,0.4630529177375138,0.751861629076302,-0.6688575595617294,-0.3495577359572053,-0.9227310107089579,0.9337163870222867,0.748255864251405,0.4833878926001489,-0.5342510994523764,0.05678738234564662,0.9469637530855834,0.4282276504673064,-0.5880184504203498,0.9445813940837979,-0.8995922137983143,-0.06577629316598177,-0.35140317492187023,0.26948044216260314,0.5392099465243518,-0.5940528996288776,0.6850052988156676,0.14106825646013021,0.9617494186386466,-0.7737009725533426,0.2962233447469771,0.67742804531008,-0.32607486424967647,0.8857232923619449,0.9204191570170224,0.6593280090019107,0.44110404094681144,-0.814048555213958,-0.6864931099116802,-0.3853706172667444,-0.8656737888231874,0.007737449835985899,-0.5483414568006992,0.3125086221843958,-0.3488624398596585,-0.2150222253985703,-0.04230176890268922,-0.7609275341965258,0.8197297030128539,0.5346577325835824,-0.6651247679255903,0.36192485969513655,-0.8898980962112546,0.8292424385435879,0.6756688724271953,0.11688434472307563,0.035811885725706816,-0.9553849189542234,-0.9441631748341024,0.6704531353898346,0.30011032009497285,-0.2700307541526854,-0.9779299958609045,0.9799446705728769,0.9723455957137048,0.8524843929335475,-0.006844510789960623,-0.7991816331632435,-0.79139662720263,-0.5181063464842737,-0.9974916852079332,0.3366256393492222,-0.11250061634927988,0.19014188554137945,0.8022442171350121,0.7740127951838076,0.033569023478776217,-0.9582967925816774,-0.10555993532761931,0.7895184601657093,0.34471479384228587,-0.0703334235586226,0.6747975964099169,0.07132524996995926,-0.9634485677815974,0.5784854749217629,0.6473471377976239,0.2674108282662928,-0.11325776483863592,0.18695129873231053,0.9480529013089836,0.43941227812319994,0.7097554542124271,-0.30076462822034955,-0.5021532233804464,0.43304389622062445,0.07122070388868451,0.3199818655848503,-0.8569492534734309,0.8734634080901742,0.7585811093449593,0.49549053935334086,0.282369889318943,0.3481364045292139,0.6894480660557747,0.7746969764120877,0.09937149472534657,0.37583837704733014,0.8550557349808514,0.004255806095898151,-0.9312085108831525,-0.004144470673054457,0.2895278953947127,-0.9942502281628549,-0.5491076204925776,0.7710828301496804,-0.19900034181773663,-0.25609716586768627,0.12294397968798876,0.16526533663272858,0.7214192813262343,0.5450124754570425,0.8890753583982587,-0.8425040650181472,0.49256810918450356,-0.7070176489651203,0.10396983521059155,-0.4376174546778202,-0.42916296189650893,0.7077713613398373,-0.3743038144893944,-0.7106493692845106,-0.5565529521554708,-0.04632081603631377,-0.4739143084734678,-0.22936731716617942,-0.9209847706370056,-0.017502543050795794,0.711218936368823,-0.011043639853596687,-0.1330669685266912,-0.05658754473552108,0.3844829089939594,-0.30351611133664846,-0.409568855073303,-0.14015736151486635,-0.616739715449512,0.9854565858840942,-0.38217677967622876,-0.7939794161356986,0.8023319416679442,0.5557655980810523,0.5234962073154747,-0.7624364551156759,-0.9691165462136269,-0.9117632922716439,-0.9976674979552627,0.6440236112102866,0.5097888228483498,-0.08614061446860433,0.8547757710330188,-0.5300603350624442,0.6520188050344586,0.15176046965643764,-0.4828391931951046,-0.036259441170841455,-0.4752267240546644,-0.41769452672451735,-0.6101570702157915,-0.8515545907430351,-0.8744958275929093,0.22253683069720864,-0.6958972769789398,0.7147340434603393,-0.9800168620422482,0.3553121518343687,0.05909401085227728,-0.6013227039948106,-0.9814101275987923,-0.03211720520630479,0.2058386728167534,0.31299706269055605,-0.3126173480413854,0.48507146537303925,0.4532894631847739,0.7358075859956443,0.8881143424659967,-0.29461937490850687,-0.5540004824288189,-0.6919892686419189,-0.6406077239662409,0.25068681593984365,0.5227283383719623,-0.4046439821831882,0.40974945574998856,-0.7128911707550287,0.31990449456498027,-0.7111740810796618,-0.18073070142418146,-0.9826385071501136,0.6280268440023065,0.6596599305048585,-0.5378971956670284,-0.25081507256254554,-0.9785158303566277,-0.7135293930768967,0.44150868570432067,0.4445921019650996,-0.00033900560811161995,-0.7870090268552303,0.391627452801913,0.7800810029730201,0.3977907132357359,0.5362726720049977,0.5294722029939294,0.44000893365591764,-0.9722747500054538,-0.335664642509073,-0.34984378796070814,-0.6428333544172347,-0.4011519900523126,0.9945355546660721,0.5399182643741369,-0.7932269368320704,0.921744663733989,0.9000399243086576,-0.11279598344117403,0.6258121025748551,0.24178480682894588,0.4538283571600914,-0.12370614847168326,0.6305036642588675,0.8780494001694024,-0.16319074761122465,0.9352417923510075,0.5612852624617517,0.12267747148871422,-0.06842061877250671,0.8962557073682547,-0.05737227061763406,-0.8513255384750664,-0.8559483326971531,0.9960471666418016,-0.9624612107872963,0.3204081910662353,0.9586955653503537,-0.3767832899466157,-0.9822881133295596,0.4951416486874223,-0.48268604930490255,0.5653543090447783,0.07079073693603277,0.23282629065215588,-0.8464708859100938,0.36593147134408355,0.35279201017692685,0.4960443936288357,0.5156080382876098,0.4362761117517948,-0.3466509087011218,-0.2826459934003651,0.5960048073902726,-0.12800448248162866,-0.26835629995912313,0.009986417833715677,0.7822780827991664,-0.9893851997330785,0.44172764429822564,0.9378029061481357,0.9686588933691382,0.4423085767775774,-0.6284670038148761,0.7092276304028928,-0.2633718973957002,-0.8589801080524921,0.9193716617301106,-0.7378194043412805,0.6604407476261258,0.3768545030616224,0.5363021576777101,-0.07639866322278976,-0.07375433761626482,-0.3285872102715075,-0.5369764431379735,0.6103879790753126,0.9398606442846358,-0.5224586864933372,-0.9502827008254826,0.7037331415340304,-0.3342076474800706,0.8509479919448495,-0.7892627525143325,-0.7374427262693644,0.3571667862124741,-0.23154761595651507,-0.22229924658313394,-0.2149532320909202,-0.01854173606261611,-0.8933378076180816,-0.48404098069295287,-0.5587442629039288,-0.6991923963651061,0.032472345512360334,0.8297307742759585,0.8462432255037129,-0.316803986672312,-0.7682820498012006,-0.5496382489800453,0.5588674787431955,0.4314700639806688,0.8013728493824601,-0.6433509779162705,-0.5610291184857488,-0.4874325399287045,0.18679086305201054,0.3190279249101877,-0.7571144341491163,0.6168179572559893,0.4289388279430568,0.050502036698162556,0.2183109107427299,0.7304660035297275,-0.8768336018547416,0.49478617077693343,-0.6818029475398362,-0.8118745181709528,0.9159036399796605,-0.4976731273345649,-0.48080923268571496,-0.2629625853151083,-0.24586131749674678,0.23242077324539423,0.053342151921242476,-0.8385903360322118,-0.39233062556013465,0.5859798574820161,-0.66135677928105,0.37980228336527944,0.23116076039150357,0.0847768010571599,0.29319075774401426,0.16452876152470708,-0.9190008067525923,0.3230965407565236,0.16931272903457284,-0.7810535347089171,0.8207855666987598,0.1120190960355103,-0.29167922493070364,0.7424127641133964,0.7883274774067104,-0.9412279343232512,0.6909042522311211,0.8382850056514144,-0.19417521124705672,0.893290271051228,0.7732690488919616,-0.41854132944718003,0.0011073257774114609,0.21571243507787585,0.022692562080919743,0.10946397250518203,-0.15971825318410993,-0.6602370077744126,-0.3079133736900985,0.8272798592224717,-0.783123011700809,0.5749064050614834,-0.12323224684223533,0.5064020454883575,-0.13823833782225847,-0.2638100231997669,0.20996883930638433,-0.6137885195203125,0.21342852618545294,-0.4479906954802573,-0.5808794372715056,-0.6749891312792897,0.9522451236844063,-0.37444757716730237,-0.940899760928005,-0.5074120173230767,0.9770591468550265,-0.5648148865438998,-0.06269454350695014,-0.41603005211800337,0.01707820687443018,0.9983109263703227,0.5317319501191378,-0.5444985372014344,0.5098465140908957,-0.5552574777975678,-0.8995929178781807,0.6790460832417011,0.9915618146769702,-0.32392097963020205,0.22008050978183746,-0.2463403637520969,0.5010856473818421,0.1299160229973495,-0.01600520685315132,0.41590579226613045,-0.2696447093039751,-0.4179146885871887,0.01259315526112914,-0.55966273881495,-0.7341106701642275,0.531334875151515,0.2432561689056456,-0.22981970058754086,0.7585862651467323,-0.5954339718446136,0.42850895831361413,0.0004623797722160816,-0.915868541225791,-0.004255201201885939,-0.30188913736492395,0.6830051885917783,-0.26386189367622137,-0.38539074966683984,0.3648307933472097,-0.3294604914262891,-0.14729906478896737,0.8068679017014802,0.10191396111622453,-0.09016802068799734,0.5135096749290824,-0.27507930202409625,0.5888740420341492,0.8859181050211191,0.44112114841118455,-0.6998221017420292,0.5058649783022702,0.7336660982109606,0.8057855549268425,-0.7436499018222094,-0.7065151138231158,0.6918088626116514,0.8911405708640814,0.556450373493135,0.9010985377244651,-0.10764555307105184,0.10027554724365473,0.41207053884863853,-0.6089982474222779,0.31953246984630823,0.7888906896114349,0.3859631335362792,-0.7987729227170348,-0.0361669403500855,-0.7448738040402532,0.9896047441288829,0.8222129251807928,-0.3353285016492009,0.16263497434556484,0.3662807238288224,-0.4653351102024317,0.5964076002128422,-0.7339309398084879,0.2299134568311274,-0.34166327957063913,-0.8117556343786418,-0.13112933840602636,0.19822253519669175,0.40346586564555764,0.5311238449066877,-0.6651366013102233,0.5607975404709578,0.8481204980053008,-0.05590921966359019,-0.9896689658053219,0.6211782088503242,0.7857648059725761,-0.45217470452189445,0.5466790641658008,0.14375001331791282,-0.7312083840370178,0.9398078448139131,-0.4375764084979892,-0.34681650158017874,-0.504287292715162,0.06355866510421038,-0.8831252427771688,0.4270884394645691,-0.07283359579741955,0.7840687991119921,-0.9134119101800025,0.24894071277230978,0.7794063375331461,0.43036138266324997,-0.7044870993122458,0.7329247053712606,0.38668507523834705,-0.9897911045700312,0.9374077660031617,-0.325739030726254,-0.6003298847936094,0.8884485755115747,0.9469905644655228,0.9611426298506558,-0.6778230536729097,-0.9184999507851899,0.09521574294194579,-0.1368074668571353,0.692459057085216,0.8025156324729323,-0.2911416385322809,-0.6592708993703127,0.35893315682187676,0.5692990669049323,0.9265428381040692,-0.01232213294133544,-0.8592092948965728,-0.3412203462794423,-0.10303597198799253,0.1784341987222433,-0.27162506291642785,0.8368480950593948,0.5143119446001947,-0.08260427927598357,0.45058842934668064,0.6391894929111004,-0.17343426728621125,-0.9329261342063546,0.997124464251101,0.7024062578566372,-0.42688464000821114,-0.32284068316221237,-0.004313166253268719,-0.47747335862368345,-0.10520481644198298,-0.052912476006895304,0.321346334181726,-0.4271832569502294,-0.01031872071325779,0.9940775954164565,0.727544269990176,-0.9598078159615397,0.5035103908739984,-0.5017961878329515,-0.7649615546688437,-0.1554773272946477,-0.5887340973131359,0.28732504649087787,0.6035629441030324,0.3493019249290228,0.3474900242872536,-0.3468953547999263,-0.45527272392064333,0.09069004142656922,0.03275549365207553,0.5914675239473581,-0.705408934969455,-0.12301390990614891,0.28003002190962434,0.48683254700154066,-0.11649919813498855,-0.19787310622632504,0.07876468729227781,0.9621842368505895,0.8667185558006167,-0.36607185611501336,-0.3114755037240684,-0.39207069016993046,-0.17507210094481707,-0.1680264687165618,-0.4471606337465346,0.43685628892853856,0.9972831872291863,-0.9466276336461306,-0.6051693768240511,0.020916905719786882,0.3348475475795567,0.287076564040035,-0.7634081016294658,0.6170071410015225,-0.4742485168389976,0.6808347976766527,0.6196366343647242,0.8833971517160535,0.3147143074311316,0.8703171261586249,0.5569665520451963,-0.44961897004395723,0.13153866259381175,0.8910542991943657,0.8842642977833748,0.9614224033430219,0.5174132217653096,-0.9687038725242019,-0.13789095357060432,-0.78113424917683,0.19013612857088447,0.029621994588524103,-0.11696950998157263,0.9914426235482097,0.3189297611825168,0.7732619913294911,0.6253349371254444,0.5013289507478476,-0.47683570766821504,-0.20602591522037983,0.44818643666803837,0.5204615988768637,0.28740790113806725,0.17842288129031658,-0.3302670861594379,0.41892664320766926,-0.174304464366287,-0.1377453883178532,-0.6545923659577966,-0.46916478872299194,0.7684785942547023,0.8410815452225506,-0.2664063796401024,-0.3216881863772869,-0.09180782036855817,-0.656289357226342,-0.26494693011045456,0.41241948353126645,0.7048724233172834,-0.27430633502081037,-0.32609661435708404,0.5865683509036899,-0.09566291281953454,-0.744584699627012,-0.8240996859967709,-0.6098801363259554,-0.8860268532298505,-0.7596328929066658,0.547193527687341,-0.6393221416510642,0.924248821567744,-0.3704505255445838,0.11261973483487964,-0.9671437088400126,-0.6518209422938526,0.8401529705151916,-0.9723081183619797,0.13563539879396558,-0.11589423380792141,0.3798009166494012,-0.6024963152594864,-0.24317280808463693,0.8461781581863761,-0.9372817808762193,0.49997143587097526,0.516336731147021,-0.41383620258420706,0.6991728036664426,-0.3145528370514512,0.5452085332944989,0.5844048839062452,-0.07208525529131293,0.7889340934343636,-0.1872204770334065,-0.8716222136281431,0.8382363291457295,-0.6508761630393565,0.40333425207063556,0.8354890756309032,-0.3505643904209137,-0.07277745800092816,-0.29605944314971566,0.6609667157754302,-0.9375901794992387,0.8611559933051467,0.7156628738157451,-0.13745560543611646,-0.3823770456947386,0.8277476630173624,0.9547177460044622,-0.8399940766394138,0.8787474357523024,-0.8740876074880362,-0.18327846424654126,0.8184344484470785,0.7899641082622111,-0.19148074183613062,-0.7926866598427296,0.21123041864484549,0.7692276607267559,-0.0452545341104269,-0.5207227733917534,-0.03185599949210882,-0.47866077069193125,0.6326397047378123,0.18840323435142636,0.5375908808782697,-0.13991980208083987,-0.14343210542574525,-0.14725299226120114,0.19989248411729932,-0.4132505343295634,0.22004346176981926,0.5175820617005229,-0.8248698781244457,-0.16598637495189905,0.24394645867869258,0.6064387494698167,-0.6204525446519256,-0.7766581187024713,0.30704743042588234,0.07461895793676376,-0.5125531177036464,0.08225209591910243,0.35969504015520215,-0.20222367672249675,-0.759337792173028,0.13808454293757677,0.3040240709669888,-0.4989461866207421,-0.13480215286836028,0.8923552832566202,0.7264253781177104,0.3954357630573213,-0.3542241184040904,0.7325543584302068,0.34338985988870263,0.47131296107545495,-0.3724229312501848,0.48541740188375115,0.7090317700058222,0.433027992490679,-0.11380838928744197,-0.2928707944229245,0.09996319701895118,0.4104931503534317,-0.8877180819399655,-0.6457635737024248,-0.1878022733144462,-0.394151016138494,-0.6126978970132768,-0.6199781727045774,-0.5996101256459951,0.49417798314243555,-0.9534134422428906,-0.3486712616868317,0.2474948475137353,-0.0662162872031331,0.12013384466990829,-0.4180603474378586,0.8567779678851366,0.725151055958122,-0.972018068190664,-0.8195414943620563,0.29425775818526745,-0.9526335862465203,-0.8245041104964912,0.501868768595159,0.8945957408286631,-0.4838302512653172,-0.5681723617017269,-0.14886418217793107,-0.7531604464165866,0.3706913678906858,-0.6874804166145623,0.3881087047047913,-0.28939437167719007,-0.8506487356498837,0.3748860564082861,0.3204456837847829,0.5482220076955855,0.18605090957134962,0.6848260439001024,0.17509100586175919,0.5829932689666748,-0.3639329634606838,0.8658611127175391,0.052285334561020136,-0.9429445615969598,0.8859031014144421,0.024579747579991817,0.036488983780145645,-0.08014290360733867,-0.9470336409285665,-0.44890203373506665,0.9299874724820256,0.8894370016641915,-0.5071974606253207,0.89929473772645,0.44818258937448263,0.8783591063693166,0.012616109102964401,0.1263779359869659,0.7910184329375625,0.07297720853239298,-0.43095603259280324,0.2517395382747054,0.764750899747014,0.01689534867182374,0.32142441999167204,-0.7509071519598365,-0.02192150754854083,0.5097362021915615,-0.2569381194189191,-0.44146796176210046,-0.14763238234445453,0.17297358717769384,-0.3641098332591355,-0.6372828697785735,-0.6818250427022576,-0.052331650629639626,-0.9195746192708611,-0.783578094560653,0.8472438901662827,-0.2785632563754916,0.9664227901957929,0.7204918786883354,0.7068793792277575,-0.4661882231011987,0.4481096398085356,-0.31672130478546023,-0.9517588433809578,0.8412232641130686,-0.4445743872784078,-0.05134759144857526,-0.08604917954653502,-0.022977065294981003,0.35569301899522543,0.7130545866675675,-0.723134501837194,0.29756070766597986,0.9226596402004361,0.22927065985277295,0.953547096811235,0.3317215139977634,-0.7500200970098376,0.6348013025708497,-0.6344483685679734,-0.4590887096710503,-0.37063523987308145,0.9731724569573998,-0.8526146872900426,-0.16001200908795,0.274802946485579,0.15490546030923724,-0.6377598573453724,0.5197267848998308,-0.8154720617458224,-0.4090929189696908,-0.21627090219408274,0.8304404900409281,0.7478736210614443,-0.36449489556252956,-0.7847938546910882,-0.02872590534389019,0.5975349205546081,-0.20019857259467244,-0.3551314719952643,-0.5453520491719246,0.572557283565402,-0.1371419378556311,-0.6601207270286977,-0.6637160456739366,-0.1500714016146958,0.7651908174157143,-0.41692342096939683,-0.783447805326432,-0.9266693745739758,0.017845168709754944,-0.4044218501076102,-0.5965203838422894,0.19324271939694881,-0.7365723992697895,0.24595542205497622,0.9791407603770494,0.0700556761585176,0.6418276815675199,-0.7529448363929987,-0.05446780379861593,0.281185167375952,-0.15867036674171686,0.645889091771096,-0.8485078630037606,0.17769665038213134,0.6231678030453622,-0.8343672826886177,-0.05895251175388694,0.7531329463236034,0.3764890138991177,0.1853125519119203,-0.9690889697521925,-0.4316319697536528,-0.6656458750367165,-0.6096573742106557,-0.19668811419978738,0.6448399079963565,-0.570658020209521,-0.5810779049061239,0.714266749098897,0.28813477139919996,0.8624440315179527,-0.08766373805701733,-0.15654944442212582,0.6793593084439635,-0.2133497018367052,0.6358007462695241,0.4137256252579391,0.012840284034609795,-0.20412037335336208,-0.8797966167330742,0.6890813526697457,-0.5429041343741119,0.3572226776741445,-0.9745805645361543,0.02340079192072153,-0.14591395109891891,0.7195240776054561,0.49527192767709494,-0.18693368695676327,-0.026285817846655846,0.06477369274944067,0.8304747398942709,-0.6102044456638396,-0.8188855876214802,0.6760485656559467,-0.30649235704913735,0.20467795990407467,-0.015140727162361145,0.5607302128337324,-0.24588034441694617,0.29021670669317245,0.3592272773385048,-0.1767013454809785,-0.9836405324749649,-0.08908572886139154,-0.8145782859064639,-0.47526023257523775,-0.02577870199456811,-0.7652123332954943,0.6981203546747565,-0.17446347093209624,-0.01385540422052145,0.2560869436711073,0.2293948456645012,-0.5244196513667703,-0.4683542735874653,-0.7988804639317095,0.4355104914866388,0.04470231616869569,-0.5472049787640572,-0.5028836675919592,-0.27073993580415845,-0.8762682052329183,-0.47732864413410425,-0.8769041788764298,0.3944339738227427,-0.8051389558240771,0.7286337800323963,0.07087105000391603,0.07127389730885625,-0.3241604520007968,0.8582906317897141,0.1123249838128686,0.3723574629984796,0.9282329147681594,0.15003182785585523,0.3998522316105664,-0.08400992630049586,0.0648866556584835,-0.08503624610602856,-0.7091923481784761,-0.1938525610603392,0.10653926897794008,0.7486513825133443,-0.2047544657252729,0.3529612608253956,-0.09389377338811755,-0.1370644522830844,-0.24898344557732344,-0.9822638384066522,-0.3939985688775778,-0.9615570241585374,-0.012662983033806086,0.7785684014670551,0.6006786711513996,-0.4594327309168875,-0.635944573674351,0.012545250356197357,-0.6438280721195042,0.10299195116385818,-0.4830715269781649,-0.7820514710620046,0.1891525834798813,-0.9787978073582053,-0.7978149596601725,0.044723362661898136,0.6220720689743757,0.9924336615949869,0.512065390124917,0.4876292855478823,0.5453212494030595,-0.6579975099302828,0.8755503194406629,-0.9534742394462228,0.6468194853514433,-0.03428060095757246,-0.29028855403885245,0.590843397192657,-0.3855846291407943,-0.14711274253204465,-0.4020451884716749,0.3492496171966195,-0.02754215756431222,0.25625610491260886,-0.09476434672251344,-0.3392377165146172,0.8638959531672299,0.16713204653933644,-0.7696992587298155,-0.6761140231974423,-0.7500252318568528,0.6210155873559415,0.39355173194780946,0.780653543304652,0.4905532016418874,-0.7975138104520738,0.5582815962843597,-0.9615880204364657,0.6001678798347712,-0.510864638723433,-0.16712541226297617,0.047533145640045404,-0.8830776647664607,0.5507326256483793,0.29636972630396485,-0.35336587857455015,-0.09783638827502728,-0.2342064823023975,-0.06474551884457469,0.945519991684705,0.17402299726381898,0.6243660841137171,-0.8374429000541568,0.44889763509854674,0.8520179563201964,0.5051546404138207,-0.38786938413977623,-0.9294806607067585,-0.510386448353529,-0.5847041178494692,-0.07817107904702425,0.7587609416805208,-0.6252947119064629,0.08554532937705517,-0.27714745374396443,0.3334036315791309,0.5865635913796723,-0.4146787174977362,0.6939103081822395,0.9784316453151405,-0.248559950850904,-0.5868182303383946,0.6219153231941164,0.8596382974646986,-0.17881440557539463,0.42249973863363266,0.3650933410972357,-0.4377806889824569,0.9518639082089067,-0.9323179628700018,0.8100000326521695,0.2635442358441651,0.7165417107753456,0.13725686073303223,-0.288982936181128,-0.8713001892901957,0.7417782060801983,-0.7563053308986127,0.7331662862561643,-0.05397994490340352,-0.44489325769245625,0.19047311739996076,-0.40778673300519586,0.5117367692291737,-0.3707396234385669,-0.015425825957208872,0.4175044447183609,-0.4605479659512639,0.9774897592142224,0.30852790968492627,-0.4715122845955193,-0.19089288311079144,-0.1235522092320025,-0.5434166328050196,-0.1440347726456821,-0.5064531448297203,-0.031376016326248646,-0.8222648208029568,0.9748972007073462,-0.34144084760919213,0.1854156064800918,0.0862121838144958,-0.47840078407898545,0.21706481277942657,-0.8953369609080255,-0.885428593493998,0.040817828848958015,0.8436733242124319,-0.5753257372416556,0.47351793432608247,0.24950380576774478,0.7332924334332347,-0.9443175345659256,-0.793490360956639,0.4778618384152651,-0.9620388699695468,-0.23612903291359544,0.63772759353742,0.767972007393837,0.9261109693907201,0.15099793206900358,0.2614722470752895,0.7631058250553906,0.11237394623458385,0.6258037430234253,-0.630900451913476,-0.682551343459636,0.2087765228934586,-0.893852112814784,-0.7508108476176858,-0.4446926903910935,0.22132647363469005,0.7186702364124358,-0.9970788527280092,0.9226349256932735,-0.23216490494087338,0.9865970239043236,0.8998720678500831,-0.805812029633671,-0.2365529821254313,0.8982161809690297,-0.5004650466144085,-0.49766436498612165,0.462317518889904,0.40011367155238986,0.5190146192908287,0.49271891731768847,0.10130561143159866,-0.4409917485900223,0.8494902960956097,0.39821388106793165,-0.12013994297012687,-0.2770329308696091,0.866156819742173,-0.22342905448749661,0.5983199793845415,0.5407230365090072,0.9830548609606922,0.8755577825941145,-0.6350187244825065,0.38302294071763754,-0.4249369506724179,0.2531801089644432,-0.000612122006714344,0.6688337866216898,0.19795688427984715,0.14050184469670057,-0.9398964159190655,-0.8074748148210347,-0.3180563561618328,-0.594057148322463,-0.5954574192874134,-0.8681916506029665,0.7909670760855079,-0.03978697257116437,0.4354368783533573,0.7322056223638356,-0.14553761389106512,0.2617531674914062,0.9171533449552953,0.8482540990225971,0.8967739152722061,0.5129377217963338,0.5944072101265192,0.8859695545397699,0.939848002512008,-0.6399606550112367,0.06751191429793835,0.4287632880732417,0.3819674295373261,-0.6343289366923273,0.5920125497505069,-0.4795146519318223,0.9002502937801182,-0.7064256467856467,-0.704642791301012,-0.03517247783020139,0.515191504266113,-0.4612548337318003,0.9146930393762887,0.3448575111106038,0.24735432211309671,0.46162761142477393,-0.27607675921171904,-0.39786858577281237,0.4074076642282307,-0.5725843529216945,-0.6657535308040679,-0.26502031506970525,0.4438763107173145,-0.16319816652685404,0.7968407906591892,0.5121929422020912,0.8842572397552431,-0.4198955832980573,-0.8268250939436257,-0.21183322370052338,0.11292105540633202,0.6232282086275518,0.5854860520921648,0.5906840367242694,0.006858432199805975,-0.03971336176618934,-0.37124256789684296,-0.03510407358407974,0.7574666840955615,-0.47142010694369674,0.36423036409541965,0.21774821868166327,-0.3889457625336945,0.3758429093286395,0.545043651945889,-0.4763426259160042,0.23728251084685326,-0.2124235318042338,-0.7427275679074228,-0.965759692247957,-0.27977034403011203,-0.03217652812600136,-0.21408871933817863,-0.13850780203938484,-0.5537245986051857,-0.5992651982232928,0.8623322248458862,0.4820216130465269,0.5826686616055667,-0.5575848720036447,0.8364751790650189,-0.47439186507835984,0.9599333601072431,-0.1707077994942665,0.4618234266526997,0.2530620591714978,-0.5849469504319131,-0.3881425457075238,0.6250042309984565,0.7029803418554366,0.8811282548122108,0.8674069070257246,-0.2275001173838973,-0.49186624167487025,-0.17580834636464715,0.7546496279537678,0.2560237464495003,-0.11566509027034044,-0.765370727982372,-0.5637345900759101,0.9565087435767055,-0.9349324344657362,0.1320228879339993,-0.6566766970790923,0.13361212285235524,0.3428886067122221,-0.41285579558461905,-0.012677275110036135,0.9647717038169503,0.6725377640686929,0.6055647726170719,0.6553459390997887,0.4165538907982409,0.3865711586549878,0.9381221821531653,-0.2454993580467999,0.8076175097376108,0.8111919779330492,-0.24766934989020228,-0.7177607431076467,-0.0996403363533318,0.11956799868494272,0.3276980370283127,0.5733646070584655,0.925639174412936,-0.3961124434135854,-0.6005355226807296,-0.5464487755671144,-0.9707386074587703,-0.34805479319766164,0.714075643569231,0.08051377767696977,0.5058803167194128,0.7852780665270984,0.8937523267231882,-0.30941570131108165,0.5232530818320811,0.3031889828853309,0.8092717044055462,0.9347929400391877,-0.8728078817948699,-0.9090643986128271,0.8963641440495849,-0.63708302564919,0.521313866134733,0.9835208305157721,0.5487396917305887,0.38632521918043494,-0.5683844136074185,-0.9203378432430327,-0.35796418599784374,0.3397348877042532,-0.10727635771036148,0.7345612086355686,-0.2340207756496966,0.6671844231896102,-0.9815175500698388,-0.8731499845162034,0.5381500031799078,0.9660245617851615,-0.07173020392656326,-0.10733549995347857,0.640184354968369,0.9308937042951584,0.07697170181199908,0.46063453797250986,0.33479834254831076,-0.03121004207059741,0.7213986930437386,0.37943720584735274,-0.5417211172170937,0.18217751383781433,-0.8571493169292808,0.16034229239448905,0.8427519644610584,-0.9946445738896728,0.12218022160232067,-0.8349725194275379,0.5450727753341198,-0.5055419150739908,-0.6377179026603699,0.28838081704452634,-0.28256039833649993,-0.2747252550907433,0.974570041988045,-0.9869207474403083,-0.8773785196244717,0.5633864928968251,-0.34427802450954914,-0.37612077640369534,-0.19690300291404128,-0.11774911172688007,-0.012519729789346457,0.7513485974632204,-0.6668490711599588,0.15430158795788884,-0.7703257608227432,-0.9440695722587407,-0.9787639235146344,-0.8969262582249939,0.32041965750977397,-0.0502954525873065,-0.6690648947842419,0.6506690098904073,0.9111687135882676,-0.20905202440917492,0.10703981667757034,0.32680244697257876,-0.1409795368090272,0.9451752924360335,-0.6753396368585527,0.09049467649310827,-0.10678381891921163,0.5033040367998183,-0.5679096458479762,0.18877407908439636,-0.6253553535789251,0.06778735527768731,0.35529116820544004,-0.9370513930916786,-0.18427803833037615,0.30502829421311617,-0.29509570775553584,0.331073313485831,0.8772754054516554,-0.692658610176295,0.17774905310943723,0.9757493785582483,0.18600644683465362,-0.30097081419080496,0.9775455361232162,-0.42433076025918126,0.766811357345432,-0.4437210508622229,-0.5633426466956735,-0.43386523611843586,-0.36563945887610316,-0.23867965303361416,-0.5400650263763964,-0.2177126151509583,-0.6941670128144324,0.09386202599853277,0.42755867866799235,0.4535083547234535,0.18450824078172445,0.7090591914020479,-0.28313017077744007,-0.8159971446730196,-0.3873935262672603,-0.2539632860571146,0.9963256884366274,0.3986432598903775,0.17016402212902904,-0.6738009466789663,0.03579418594017625,0.5150428228080273,0.2426917483098805,0.18715406255796552,-0.4160684822127223,-0.1690575061365962,-0.2116011632606387,0.9104193253442645,0.9050765591673553,0.6960923136211932,0.18199779465794563,-0.8967077564448118,0.4962613033130765,-0.0903647392988205,0.992361425422132,0.9819066245108843,0.4384180842898786,-0.29059086833149195,0.9802760393358767,-0.14866041438654065,-0.40212470572441816,-0.07906610472127795,0.14871460665017366,-0.16864755051210523,-0.9388570366427302,-0.33034331584349275,-0.7082734424620867,0.7398781604133546,0.7652763035148382,0.6513773826882243,0.13111556600779295,-0.7722101821564138,0.9635952762328088,0.5863395966589451,0.3969668732024729,-0.0754484310746193,-0.3477342212572694,0.8552416646853089,-0.6518702735193074,0.7871779603883624,0.4623704981058836,0.26620658254250884,0.41486529260873795,-0.63547174166888,0.8134399396367371,0.7251334842294455,0.17776413075625896,-0.6346667869947851,0.24197041522711515,-0.12897438928484917,0.45981077710166574,0.9239297867752612,-0.9784456109628081,-0.3537789131514728,0.809871775098145,0.957051629666239,0.7746812095865607,-0.7580607277341187,0.20845693862065673,-0.5004910244606435,0.3039327021688223,0.595845952630043,0.3764690407551825,-0.6429394423030317,-0.009650129359215498,0.818481542635709,0.20940671116113663,0.140063573140651,-0.6431637639179826,-0.1552705205976963,-0.11783811310306191,0.27667476097121835,-0.7151528494432569,0.37983668595552444,0.297879861202091,-0.4869968560524285,0.43198968982324004,-0.7373642046004534,-0.08436544891446829,0.9894816055893898,0.9413834009319544,0.618925747461617,-0.8146897736005485,-0.9564742892980576,0.3151392312720418,-0.6965101598761976,0.009655908681452274,-0.45600823033601046,0.07537972182035446,0.5821324726566672,0.8787852483801544,0.5042340299114585,0.5900932978838682,0.8497936716303229,0.29470686661079526,-0.607555968221277,0.5555722624994814,0.7643846971914172,0.6868315553292632,-0.8645386747084558,0.4278201898559928,-0.6170256673358381,0.021550574339926243,-0.7969653038308024,-0.64489970728755,-0.7856189208105206,-0.00844787759706378,0.44308465672656894,0.27008067816495895,-0.18384057190269232,-0.13699014857411385,0.03604738973081112,-0.7546466249041259,0.44732729671522975,-0.4045052407309413,0.27113319793716073,0.3980542942881584,0.5786068472079933,-0.8891430865041912,-0.029107533860951662,-0.3813120420090854,0.41830130899325013,0.4734798753634095,0.02748591871932149,-0.7066053482703865,-0.7161039472557604,0.19318717252463102,0.7282904721796513,-0.4577259630896151,0.3810082906857133,0.956462865229696,-0.9469475597143173,-0.8122620503418148,0.6367291314527392,0.3459107126109302,-0.16786263417452574,-0.3090063207782805,0.5679072332568467,0.6091801733709872,0.079809186514467,0.2730858800932765,0.08386074705049396,0.9548330404795706,0.8309914534911513,-0.7470616577193141,-0.9096936923451722,-0.40519854333251715,0.20168107328936458,-0.22561392933130264,0.10992073034867644,0.4068602928891778,0.08719865698367357,-0.004088161047548056,0.08264962863177061,-0.0349955759011209,0.19448478845879436,-0.004936091601848602,0.237042848020792,-0.08037872472777963,0.13368494249880314,0.45942141208797693,-0.36932844249531627,0.34521736996248364,-0.7549425344914198,0.3719582329504192,0.5791626418940723,0.23585140379145741,0.23416128661483526,-0.6993616013787687,0.34277893882244825,-0.8528157556429505,-0.4840154885314405,-0.3456620713695884,-0.2988364906050265,0.8602124061435461,0.456198041792959,0.7307350956834853,-0.6901621110737324,-0.5744425104930997,0.5573707879520953,-0.26370844384655356,-0.19614044530317187,-0.048976078163832426,0.012247813399881124,-0.9323209580034018,0.44845965364947915,-0.16111326403915882,0.34803586872294545,0.49692618008702993,-0.5024212547577918,-0.009707842953503132,-0.8252132195048034,-0.8388502690941095,0.8467404269613326,-0.49028770066797733,-0.04133152822032571,0.11769263818860054,-0.770993203856051,0.14180142804980278,-0.17145120166242123,-0.03507583448663354,0.35985080106183887,0.20321877440437675,0.34429679345339537,-0.7219794918783009,-0.7435414348728955,0.8615205134265125,-0.25450189551338553,0.9443468670360744,0.9923737240023911,0.6071556508541107,-0.8421322563663125,-0.05142189376056194,-0.6538540446199477,-0.846814502030611,-0.23513420019298792,0.6637915023602545,0.013659130316227674,0.6578226154670119,0.30364852538332343,0.15734828496351838,-0.6997497887350619,0.2758291303180158,-0.30827165907248855,-0.5994880460202694,-0.3637557476758957,-0.7005770676769316,-0.614002185408026,0.3950536693446338,-0.9399738442152739,-0.8590601533651352,0.7544075273908675,0.2737898947671056,0.12208184972405434,-0.4103065081872046,-0.032161273062229156,0.022370006423443556,0.24589237477630377,-0.007649598643183708,-0.7403621128760278,-0.9129401985555887,-0.8784600007347763,-0.5742499995976686,0.042465285398066044,-0.8856256045401096,0.8916477668099105,-0.296744576189667,0.9232820537872612,0.03384242532774806,-0.9931527059525251,0.7800789522007108,-0.00668136915192008,0.09884796664118767,-0.09819180937483907,-0.9627509801648557,-0.8822209308855236,0.6121817147359252,-0.22825733665376902,-0.4771380559541285,-0.12235794309526682,-0.6244555651210248,-0.8197604166343808,0.9050048971548676,0.7928916034288704,0.4772750595584512,-0.6163494559004903,-0.5676019038073719,-0.7883208319544792,0.31716972356662154,0.8434598203748465,-0.5643971250392497,0.7602262529544532,-0.09137692069634795,-0.32496002595871687,-0.9317846079356968,-0.9663793123327196,-0.7090425528585911,-0.2834687358699739,-0.026020861230790615,0.10129590006545186,-0.027742980979382992,-0.13911736058071256,-0.9190304856747389,-0.45752052031457424,0.5532167535275221,-0.38745314721018076,0.10568461054936051,0.1313591548241675,0.25368757639080286,-0.349028239492327,0.7856939053162932,0.010534031316637993,-0.5190072702243924,0.45979274343699217,0.06663314811885357,0.5688405930995941,-0.4756755055859685,0.6521493424661458,-0.2309294929727912,0.9868337204679847,0.9545517093501985,-0.5397801985964179,0.7428652578964829,0.13635514630004764,-0.5705101951025426,-0.701013439334929,-0.5510175321251154,-0.5743731148540974,-0.47723803808912635,0.37606484396383166,-0.6923808506689966,-0.8222690280526876,0.6420295028947294,-0.17283900128677487,0.4780575530603528,-0.5095479441806674,0.21345243602991104,0.45072948234155774,-0.9857067344710231,-0.651271182578057,-0.47326907236129045,0.07662725960835814,0.752100897487253,0.6893891077488661,-0.7226474108174443,0.8319339128211141,0.5617569871246815,0.8838779097422957,0.9021003833040595,0.09759025555104017,-0.8568232543766499,-0.9136228584684432,0.3355328058823943,-0.21119141578674316,0.2265268163755536,-0.5894607538357377,0.7941517038270831,0.4417399545200169,0.07342793280258775,-0.8233817969448864,0.3101808321662247,-0.2189375152811408,0.9206828731112182,0.8348741261288524,-0.7779400520958006,0.9529269603081048,-0.034319309052079916,0.2589372145012021,-0.3172192545607686,-0.25380265479907393,0.8911154493689537,-0.7598734190687537,0.5906086582690477,0.41857985965907574,-0.5117421294562519,0.945267322473228,0.14974194345995784,-0.02975926687940955,0.7212019744329154,0.34543180046603084,-0.3417611885815859,-0.05248042428866029,0.9770415434613824,-0.09278369089588523,-0.004467662889510393,-0.2143493597395718,0.6073170974850655,-0.2113175536505878,-0.7746551358141005,0.15979180252179503,0.6980279684066772,0.9016531310044229,0.3419054108671844,-0.1060472154058516,0.9456206546165049,0.2442487091757357,0.2266082870773971,-0.8693003701046109,-0.3824435346759856,0.04607780883088708,-0.6603228645399213,-0.20386278769001365,-0.9134968686848879,0.9007165683433414,-0.756232104729861,-0.6493666530586779,0.6088503720238805,-0.897637277841568,0.34783325251191854,0.5284154149703681,-0.20436720550060272,0.10391532722860575,0.4677239265292883,-0.45997475925832987,0.6666978383436799,0.23694607941433787,0.5017462251707911,-0.8548914366401732,0.42864412628114223,0.5171650405973196,0.186847778968513,-0.12058614334091544,-0.022988928947597742,0.21298417262732983,-0.932267221622169,-0.9841074533760548,0.40289556374773383,-0.16301612835377455,0.1856451528146863,-0.43799568759277463,0.9998872242867947,0.7638609334826469,0.26332157757133245,0.8155319858342409,0.8858589944429696,0.5170317776501179,-0.9944469542242587,0.7860159790143371,-0.971365500241518,0.7197150997817516,0.7689749044366181,-0.44449447467923164,-0.9543496523983777,0.26882699597626925,0.5685303607024252,-0.8235264620743692,-0.7356520495377481,0.1514097498729825,0.3659993698820472,0.07912127859890461,0.54793461272493,-0.4836030239239335,0.07521300204098225,0.20610426971688867,0.8540232027880847,0.09726155176758766,-0.36680631153285503,0.6062170299701393,-0.48834030609577894,-0.8405278092250228,0.030137899797409773,0.9833400310017169,-0.9294055048376322,-0.10754786059260368,-0.5951037146151066,0.36009844671934843,0.4329124530777335,-0.9298610119149089,0.7832358409650624,0.36847601691260934,0.3747912528924644,0.21017535962164402,-0.901912541128695,0.8807085091248155,-0.7882132483646274,0.9241014262661338,-0.564552347175777,0.432396593503654,0.27901718486100435,-0.2606624336913228,-0.912682025693357,0.9337549693882465,0.3495097295381129,0.8940086318179965,-0.41907292837277055,-0.07524800254032016,0.6469616359099746,0.9798498507589102,-0.2176622347906232,0.0900181494653225,0.7216271739453077,0.24970683036372066,-0.41043725283816457,0.6451527588069439,-0.6136327791027725,0.7082892544567585,-0.07719313213601708,-0.14280544919893146,-0.7904752809554338,0.25955741107463837,0.8530297460965812,0.8529223380610347,0.8565401127561927,-0.23395736468955874,0.40072324546054006,-0.38470766320824623,-0.2081926828250289,0.4173855781555176,-0.19570330996066332,0.12600896880030632,0.47092497581616044,0.6873954334296286,-0.6318056755699217,0.9670492261648178,-0.16437532380223274,0.5517920297570527,0.761705628130585,-0.41485685715451837,0.49541922751814127,-0.8698249156586826,-0.7089240904897451,0.047939485870301723,0.7740037231706083,0.6497609256766737,0.4483931460417807,0.1240900051780045,0.8069192334078252,0.15689273411408067,0.5809827530756593,0.9337399005889893,0.45294614089652896,-0.39340689638629556,-0.5125894313678145,-0.09639848908409476,0.19973294995725155,-0.724644432310015,0.06852220697328448,0.6417062203399837,-0.9365267907269299,-0.11434924881905317,-0.2600103057920933,0.7539455452933908,0.43035330763086677,-0.012262463569641113,0.743387081194669,-0.20826302142813802,0.9248119350522757,-0.5608812924474478,-0.48775446927174926,-0.5070313951000571,-0.6924355626106262,0.43166172271594405,-0.485507947858423,-0.18874371238052845,-0.4428778854198754,-0.3916902709752321,-0.7782123265787959,-0.806140617467463,0.66800182685256,0.5136312553659081,0.7498032934963703,0.3893553023226559,0.084459297824651,-0.2968281456269324,0.07936323573812842,0.23070509638637304,-0.24708606908097863,-0.06498319422826171,0.6671695532277226,0.13562117982655764,0.6728799217380583,-0.2757969102822244,0.33402810199186206,-0.13573225867003202,-0.2008805968798697,-0.8048586235381663,0.301686130464077,-0.9438543859869242,-0.5313152801245451,0.13462457992136478,0.5152995833195746,0.2660942878574133,-0.6052611339837313,0.015676429495215416,-0.7915209499187768,-0.5810462711378932,-0.3750801030546427,0.8677273653447628,-0.38413097336888313,0.8504267437383533,0.680235608946532,0.5681812739931047,-0.6429518014192581,0.24364392459392548,-0.5212135785259306,0.16527815023437142,0.08765352657064795,0.46886022249236703,-0.16101823328062892,-0.45898503717035055,0.8099729013629258,0.5447143656201661,-0.38048062147572637,-0.23122011311352253,0.41345261316746473,-0.8476429604925215,-0.7474638745188713,0.16475519444793463,0.24407920660451055,-0.06862725410610437,-0.24943034118041396,-0.5215851538814604,-0.1781342076137662,-0.433908355422318,-0.05748511990532279,-0.41803742200136185,0.04125405615195632,0.7763383281417191,0.01723085530102253,0.6533120716921985,-0.8372435425408185,-0.883318196516484,0.7854732484556735,-0.43495493987575173,0.6691306536085904,0.27402194403111935,-0.9944641897454858,0.4182197325862944,0.09661323530599475,0.7426176704466343,0.48522535199299455,-0.6364591121673584,-0.5444380659610033,-0.21448932634666562,0.5057116383686662,-0.8725604848004878,-0.6620636284351349,0.6364816003479064,0.5981934606097639,-0.2004920095205307,-0.33422581339254975,0.9317748784087598,0.216762728523463,-0.626644913572818,-0.5674314079806209,-0.791767068207264,-0.5195287684909999,0.009018105454742908,0.022552335169166327,0.4184021740220487,0.5768721932545304,0.5229190737009048,-0.9850683328695595,0.5530033917166293,0.5049644387327135,-0.6378812836483121,0.9164496408775449,0.23502457747235894,-0.2234443910419941,0.9912182078696787,0.8945349049754441,0.3173094312660396,-0.19817632576450706,0.5352622829377651,-0.39971114741638303,0.3010888700373471,-0.9609587816521525,-0.4837093213573098,-0.794085550121963,0.13262793608009815,-0.6926973257213831,-0.5079924827441573,0.7184219122864306,-0.07070874329656363,-0.009176333900541067,0.12422387953847647,-0.7462473660707474,0.7600879562087357,0.6641250192187726,-0.6601534252986312,-0.9198515554890037,-0.4590254104696214,-0.6932886592112482,-0.7697358974255621,-0.500263343565166,-0.052935829386115074,0.2723308615386486,0.2390301669947803,-0.29232457745820284,-0.24477932462468743,0.5697300429455936,0.14237999869510531,0.49361714581027627,0.702178146224469,-0.5303381639532745,-0.8351870393380523,0.20241926610469818,0.44945275830104947,0.7256123395636678,-0.6311827008612454,-0.21406789170578122,-0.7083157408051193,-0.8448330508545041,-0.06446262402459979,0.010538029950112104,0.21370793506503105,-0.0933773722499609,0.7623758241534233,0.17093198467046022,0.4205191149376333,-0.6627890141680837,0.2996080256998539,-0.261853561270982,0.2509398479014635,-0.24778056284412742,-0.6473593977279961,0.9083141819573939,0.9398653130047023,-0.862906897906214,0.24608982121571898,0.9852734976448119,0.006448368076235056,0.3242039135657251,0.7488846704363823,-0.32083218172192574,-0.2912381668575108,-0.5638722563162446,-0.18329330487176776,0.6860444243066013,-0.8983518490567803,0.036224677227437496,0.972232720348984,-0.8758346978574991,-0.10171226970851421,0.7702673207968473,-0.9355003549717367,0.9634015862829983,0.9030919107608497,-0.2360512805171311,-0.4835456102155149,-0.22810839815065265,0.6377267688512802,0.06709045404568315,0.38642850518226624,-0.2058886825107038,0.35140304593369365,-0.0877006882801652,0.7986640091985464,0.47849340876564384,0.648137791082263,-0.9247599267400801,-0.5650718193501234,-0.6054224693216383,0.2516863318160176,0.12614149739965796,-0.4899186394177377,0.09871837962418795,-0.947085480671376,-0.1298465416766703,0.35850175842642784,0.1469571888446808,-0.032853057608008385,-0.38784714601933956,-0.8072136216796935,-0.6918315370567143,-0.6906791455112398,0.5590709671378136,0.5604544435627759,-0.6954502440057695,0.05418383004143834,-0.04434263939037919,0.1115056462585926,-0.7778102266602218,-0.6586048607714474,-0.020991715602576733,-0.39385959785431623,0.9089344539679587,-0.10612632567062974,0.10986342700198293,-0.24189873272553086,-0.9948680414818227,0.794932940043509,-0.43468164186924696,0.9578557219356298,0.14431005716323853,0.6252208240330219,-0.3227241635322571,0.24039893643930554,-0.9117687651887536,-0.10305114928632975,-0.20669302344322205,0.9805882363580167,0.713395535480231,-0.7799223810434341,-0.8629313828423619,0.9404708035290241,-0.7994051571004093,0.555586127564311,-0.198266317602247,0.40703439386561513,-0.8902046261355281,0.2275844686664641,0.474190428853035,0.7854758785106242,0.5184624479152262,-0.774661892093718,0.3519003358669579,-0.22943210927769542,0.13104776805266738,0.9485681033693254,-0.020192762836813927,0.9433993329294026,-0.7870267843827605,0.5854036179371178,0.23571067349985242,-0.5256895357742906,0.21796221286058426,0.756346648093313,-0.162584125995636,-0.10298596229404211,-0.041743436362594366,-0.6764054372906685,0.966368802357465,0.2592040472663939,0.884219566360116,0.5649723494425416,-0.6327469535171986,0.7591366451233625,-0.996437409427017,0.9959512259811163,0.28957439260557294,0.695331881288439,-0.6394226909615099,0.9550294624641538,0.4352962803095579,-0.24336859211325645,-0.5214654677547514,-0.0685969889163971,-0.06208013277500868,-0.767547276802361,0.6388779883272946,-0.7784533267840743,0.4590837759897113,-0.4657314019277692,-0.12939529353752732,0.007950927130877972,0.8330120821483433,0.05105944210663438,0.22229876462370157,0.5285437945276499,-0.8786791190505028,0.2574134268797934,0.15169431315734982,-0.9462931309826672,-0.017392428126186132,0.7860074336640537,0.7468600943684578,0.408690151758492,0.2134937858209014,-0.3835013839416206,-0.451224016956985,-0.9292664737440646,-0.5125833158381283,0.5530598759651184,-0.97800532868132,-0.25749781634658575,-0.8911607535555959,0.38984110997989774,-0.10528771672397852,-0.12852672208100557,0.5009498754516244,-0.06671255920082331,0.38761905999854207,0.35078256810083985,0.3624840718694031,0.6845340984873474,-0.4736694470047951,0.1609020633623004,0.44755137944594026,0.6812616065144539,-0.09762123925611377,0.4445002139545977,0.9582821745425463,-0.7331708990968764,-0.5307479789480567,0.706829247996211,0.013347959611564875,0.3180237873457372,0.4890313628129661,0.6026414381340146,-0.4193909727036953,0.014640450477600098,0.7973703700117767,-0.6232287408784032,-0.5567963114008307,-0.4664185857400298,-0.6085758707486093,-0.12877347273752093,-0.07664065342396498,-0.5569741846993566,0.02847172599285841,0.32781940791755915,0.8254107097163796,0.0886923554353416,0.8342923419550061,-0.08329297881573439,-0.5373731115832925,0.8433956620283425,0.5556670725345612,0.3426549434661865,0.8758678119629622,0.7528258678503335,0.47259323904290795,-0.984690148383379,0.26763764303177595,0.8303520665504038,0.020302014891058207,0.4842716925777495,-0.8915458144620061,0.750407138839364,0.8264183485880494,-0.5168568445369601,-0.79772086488083,-0.3554669921286404,-0.4098357199691236,0.5329143782146275,-0.53310920111835,0.057838971726596355,0.3186146281659603,-0.012416929006576538,-0.17546662129461765,-0.08330225013196468,0.9066450223326683,0.7477319049648941,-0.6571592232212424,0.876257776748389,-0.7972108549438417,0.4659138363786042,0.7902619112282991,-0.10183458682149649,0.2547996658831835,0.31189459515735507,0.07730445358902216,0.7820423790253699,-0.9280243027023971,0.31881636707112193,-0.31882223626598716,-0.8481319174170494,-0.38473572907969356,-0.7480951864272356,0.4304433143697679,-0.2040133848786354,-0.5842100218869746,0.5372617095708847,0.15824249852448702,-0.018975517246872187,-0.6815611650235951,-0.8593253809958696,0.5168202025815845,-0.06499410700052977,-0.02392675820738077,-0.5363097903318703,0.24195009795948863,-0.5936145344749093,-0.36248333379626274,0.8351359791122377,0.9209437593817711,0.8652612194418907,-0.7521855626255274,0.9701263443566859,-0.18142338143661618,-0.0019134338945150375,0.7557934876531363,0.48560893861576915,-0.5775261474773288,-0.45178006822243333,-0.015290819574147463,0.1009948649443686,-0.9841650412417948,0.11860761186107993,-0.35729004023596644,0.5504247099161148,-0.233621159568429,-0.9207242666743696,-0.4834358864463866,0.2833680319599807,-0.9669758607633412,-0.12050085747614503,0.18911077734082937,-0.15832944447174668,-0.7375510041601956,-0.6941664004698396,-0.5120976227335632,-0.8115416108630598,-0.7319027720950544,0.1368605918250978,0.39020735723897815,0.24247870361432433,-0.8475555353797972,0.27530441526323557,0.25229468708857894,-0.9498598724603653,-0.40088302874937654,-0.19676520489156246,-0.8571974015794694,0.136520657222718,0.16820764541625977,-0.6297536054626107,0.12066227197647095,-0.9852472897619009,-0.19330599252134562,0.5312715037725866,0.3903992776758969,-0.3234710758551955,-0.8763048858381808,0.7192974621430039,0.44733656058087945,0.3848622152581811,-0.4368666345253587,-0.5486127967014909,-0.7499833637848496,-0.33721926994621754,0.8880910999141634,-0.21453763358294964,-0.22300280118361115,-0.042155788745731115,-0.8516554543748498,-0.18206613045185804,0.5364155201241374,-0.8163214814849198,0.08772423537448049,-0.49642332596704364,-0.39202987076714635,-0.6707780486904085,-0.4422500003129244,-0.40655848290771246,0.030435585882514715,0.6225452534854412,0.7974277948960662,-0.8502084990032017,-0.01585485879331827,0.772354741115123,0.11440276820212603,-0.1464332197792828,-0.12572997296229005,0.469761211425066,0.49317054729908705,0.21918473578989506,0.9710564217530191,0.11062222393229604,0.8602373735047877,0.37800424825400114,0.03866411931812763,0.10541457030922174,-0.39704625587910414,0.1802789676003158,0.8692071861587465,0.16897442704066634,-0.8668806222267449,-0.8086742833256721,-0.8113788375630975,-0.03277724329382181,0.11849977169185877,0.5042445254512131,-0.20367004722356796,-0.21603042911738157,0.1708889757283032,-0.08885328378528357,-0.4312415015883744,-0.5117135657928884,-0.8425050815567374,-0.06801807461306453,-0.7216391260735691,0.30670748837292194,0.6786508876830339,-0.815983762498945,-0.9780573644675314,-0.17567449994385242,0.2411341588012874,-0.9518563952296972,0.6230177413672209,0.3131556841544807,-0.5504977996461093,0.37945104809477925,-0.7629364770837128,-0.9771511638537049,0.7014824179932475,0.5231487643904984,0.22989787254482508,-0.5089437053538859,-0.8401152025908232,-0.36618618248030543,-0.8501381003297865,-0.4421603474766016,0.6733038108795881,0.6409190595149994,0.9846536763943732,-0.7464590244926512,-0.8511471627280116,-0.023919083643704653,0.8367238156497478,-0.6662790677510202,0.7978783762082458,-0.06261710496619344,-0.9254385377280414,-0.9060963769443333,0.20562598947435617,0.5563083072192967,0.1432465761899948,0.451356315985322,0.43505874928086996,-0.009371861349791288,-0.4574445243924856,0.11064177751541138,-0.4824514542706311,0.04327344847843051,0.6534663080237806,-0.7741141570731997,-0.5317698214203119,0.6059784032404423,0.7253901804797351,0.4331923038698733,-0.7231396986171603,-0.9937922586686909,-0.0348272412084043,-0.04582264646887779,0.5561212417669594,0.9540939130820334,-0.673824836499989,0.4963861806318164,-0.42391216242685914,-0.35354497423395514,0.279423160944134,0.46957006119191647,0.5933398250490427,-0.3913724962621927,0.01693571824580431,-0.9521155678667128,-0.4779105060733855,-0.312913675326854,0.701928770635277,0.05585763044655323,-0.887246519792825,0.8946296386420727,-0.3162124673835933,-0.31291245901957154,-0.6650961609557271,0.7694014315493405,-0.31924466229975224,-0.7586775003001094,0.06407027365639806,0.10959052294492722,0.8208755813539028,-0.9037539474666119,-0.22709778090938926,-0.27594973612576723,0.9209026237949729,0.4097058470360935,0.43005304504185915,0.42383475322276354,0.267206487711519,-0.47222771868109703,-0.46376861771568656,-0.8412660583853722,-0.046689906157553196,0.7500943620689213,0.9931380939669907,0.3865885538980365,0.28563252557069063,-0.8967527211643755,0.21129503101110458,0.5490560852922499,0.22067959606647491,0.7346737147308886,0.3363663819618523,-0.6747487895190716,0.747651397716254,0.9235490444116294,0.0030717463232576847,0.464940938167274,-0.23794824024662375,0.9671680903993547,0.273924732580781,-0.6478803837671876,0.7364391079172492,-0.30507165053859353,-0.6278187553398311,-0.3922637179493904,-0.7049047145992517,0.5630849036388099,-0.5103518832474947,0.7329920982010663,-0.9116416545584798,0.4483245871961117,0.3099573291838169,-0.8020734279416502,0.63945427024737,0.4280468123033643,-0.6692174258641899,0.9538598074577749,-0.8713234239257872,0.8625862901099026,0.6651316308416426,0.8100752076134086,0.6455634436570108,0.3861145176924765,0.15855874912813306,-0.7168889702297747,0.23050452396273613,-0.07746982015669346,-0.2427819585427642,-0.7727416511625051,0.012436378747224808,0.4661274957470596,-0.7961226883344352,0.42266229214146733,0.584235729649663,-0.48438922548666596,-0.895792770665139,0.49096750700846314,0.013911301735788584,0.5896079768426716,-0.9011600925587118,-0.4653177550062537,0.6783413127996027,-0.5870446134358644,-0.381513275206089,-0.27470269706100225,-0.2867184178903699,-0.44318210845813155,-0.9536339631304145,-0.2141316751949489,-0.010544267948716879,0.5553558133542538,0.38295191060751677,0.7828056686557829,-0.34504451090469956,0.19819101225584745,0.5098408437334001,-0.43927803728729486,0.22178451297804713,-0.3497847984544933,0.045340475626289845,0.2032716074027121,-0.025920983403921127,0.1696333959698677,-0.5603918191045523,0.8497872855514288,-0.1613011402077973,0.5181818464770913,-0.16296552261337638,-0.9927023644559085,0.6266991184093058,0.5880307243205607,-0.9059689459390938,0.5491415075957775,0.9430350693874061,0.8568590562790632,0.5810426566749811,0.4050346575677395,0.16138056758791208,0.9704196266829967,-0.5454115970060229,-0.3102574860677123,-0.08617979707196355,-0.4217666769400239,0.9907887149602175,0.19544150261208415,0.7111555603332818,0.22281689243391156,0.802193877287209,0.35304786171764135,0.8143004039302468,-0.6745242588222027,-0.3244949020445347,-0.879035931546241,-0.31364083755761385,-0.5048349769786,0.19005631189793348,-0.3176541868597269,0.6622346118092537,-0.46068073250353336,-0.8485554661601782,0.9142372305504978,0.7576487213373184,0.8529698578640819,-0.8195303506217897,0.40332280518487096,0.3421107651665807,0.619401334784925,0.29010876594111323,-0.6791220824234188,0.272224482614547,0.8346968665719032,-0.194795451592654,-0.6942577734589577,-0.5686888354830444,0.7678569280542433,-0.8667347747832537,0.04321857960894704,0.6485302997753024,0.735410023946315,-0.6221553622744977,-0.9218050646595657,0.9310866380110383,-0.4731160788796842,-0.5423516435548663,0.7763115554116666,0.46134431613609195,-0.06545902835205197,0.5676575540564954,-0.24272942543029785,-0.2917158347554505,-0.08729920163750648,-0.5081119337119162,0.7475147661752999,-0.7232507462613285,-0.7362096747383475,0.5581092247739434,-0.23413343215361238,-0.8365376656875014,-0.39477256080135703,-0.7950940025039017,-0.7610010653734207,0.35424863267689943,-0.5118173211812973,-0.4374689473770559,0.9213251052424312,-0.7294135480187833,0.004493446554988623,0.8714859434403479,0.4602926908992231,0.14298194972798228,0.1303342808969319,0.7304776995442808,-0.5504489811137319,-0.2443685932084918,0.2758140214718878,-0.04102753149345517,-0.3059724415652454,-0.9965161206200719,-0.6571406880393624,0.4848861820064485,-0.559362230822444,0.6705858581699431,0.5329741542227566,0.4724523709155619,0.7102093822322786,0.113566804677248,-0.2674686945974827,-0.5090636149980128,0.8785847071558237,0.2241978533565998,0.7522797444835305,-0.09312478918582201,-0.11829725047573447,-0.5522981220856309,0.39645517291501164,-0.731154415756464,-0.6369765279814601,0.6390841570682824,0.2724551442079246,0.693031023722142,-0.20737034268677235,0.5100851613096893,0.08460269775241613,-0.7602657871320844,0.9398540775291622,-0.6497316970489919,-0.6313369940035045,-0.2987877205014229,-0.19205917278304696,-0.7979239379055798,-0.5713186361826956,0.3924166685901582,-0.34453111374750733,-0.8330772961489856,0.7170463725924492,0.11168170860037208,0.1576069090515375,0.29878566367551684,0.6752042155712843,0.5643481411971152,-0.5898028593510389,0.9133912483230233,-0.2615125053562224,-0.9326003380119801,-0.4193437183275819,0.7390805194154382,-0.19273207150399685,0.1757615590468049,-0.9698725491762161,-0.24207291239872575,0.12474962277337909,-0.7360068424604833,-0.558633329346776,-0.07347920397296548,0.4725536680780351,0.6458309842273593,0.6290798829868436,0.24356406601145864,-0.2882679454050958,0.5866741924546659,-0.40437562158331275,-0.023475355003029108,-0.6432782160118222,0.9724242724478245,-0.7013933006674051,-0.01529667479917407,0.10029162093997002,-0.5173989082686603,0.7703998032957315,-0.22216646699234843,-0.6081347754225135,0.5721256933175027,-0.409505735617131,0.1944804978556931,0.733065361622721,-0.37336426926776767,-0.6881986618973315,0.9767447086051106,-0.710730885155499,0.0885443864390254,0.06705801235511899,0.9630416193976998,0.17834197217598557,-0.31261051166802645,-0.30060220789164305,0.37690719310194254,0.716062365565449,0.5101325181312859,-0.17270564008504152,0.07199999690055847,-0.18016919726505876,-0.26302823005244136,0.4775928580202162,-0.5995265380479395,-0.57831442495808,-0.11776896379888058,0.661434642970562,0.7914065271615982,0.8835254367440939,-0.4332630429416895,-0.2488920190371573,0.7596338344737887,-0.33906929241493344,0.925875736400485,-0.5367895402014256,0.763631337787956,0.4169214149005711,-0.6515032756142318,-0.4012796189635992,0.8277396820485592,0.17339262505993247,-0.6600637002848089,-0.27640016144141555,-0.7814454128965735,0.2250709026120603,-0.8479937370866537,0.16325894743204117,0.5865033739246428,-0.46752305142581463,0.8132269117049873,0.36252643540501595,-0.18145747482776642,-0.0019709793850779533,0.7189909759908915,0.1363904350437224,-0.36489315889775753,-0.738005980849266,-0.48618589621037245,0.9759088954888284,-0.9459637422114611,0.6077367048710585,0.023479688446968794,-0.8319644993171096,0.6430650511756539,0.2026026719249785,-0.8202317957766354,-0.4583195326849818,-0.6522763837128878,-0.14004236040636897,-0.2818185267969966,0.3704922189936042,0.10842844983562827,-0.19996023178100586,0.5633141309954226,-0.37173186615109444,0.21537211257964373,-0.17613397911190987,0.9625956532545388,0.5067524379119277,0.6405135695822537,-0.006109178997576237,0.23651356948539615,0.7790812845341861,-0.5723625961691141,0.11711063934490085,0.9853933388367295,0.4732510042376816,0.6407322403974831,-0.7344912034459412,-0.1961982548236847,0.7711330479942262,-0.8326776102185249,-0.9551349501125515,0.8462851983495057,-0.6992397680878639,0.7929186322726309,0.802312986459583,0.4060035324655473,0.31846170173957944,-0.0560749052092433,-0.43672394659370184,-0.5574754942208529,0.5995887792669237,0.09359368588775396,0.5383211993612349,0.657161861192435,0.34271100582554936,-0.11419448396191001,0.7187788584269583,-0.7448095306754112,0.5714908242225647,-0.1905750329606235,-0.8700626981444657,0.676333018578589,0.9774609580636024,-0.1734750373288989,0.7248593433760107,-0.22979334415867925,-0.1663522799499333,0.5384634248912334,-0.44850376434624195,0.9915152727626264,0.9295449866913259,0.12796893808990717,-0.384407602250576,-0.7934906464070082,-0.27038318291306496,0.8779125506989658,0.9307538266293705,-0.9644385045394301,-0.8034033048897982,-0.0179163939319551,0.6733664078637958,-0.35005260119214654,0.13269334845244884,0.2584117357619107,0.37998911971226335,0.5902407304383814,-0.9171915999613702,0.10940924612805247,-0.12030635494738817,-0.5123521136119962,-0.31750459410250187,-0.4633932337164879,0.9894470921717584,-0.3607279499992728,-0.5922238482162356,-0.5055650086142123,0.41793268267065287,0.7173824496567249,-0.8170957914553583,-0.7035617046058178,0.4555584737099707,0.0613054814748466,-0.9708936880342662,0.9634046605788171,-0.9319976828992367,-0.01390595268458128,-0.3700764155946672,-0.6228422559797764,-0.8162194662727416,0.8209817172028124,0.5211030035279691,0.7298595756292343,0.35920597054064274,-0.455314620397985,-0.901569941546768,-0.4978113225661218,0.8859432456083596,-0.9696056330576539,0.31137412041425705,0.6266620960086584,-0.12444358877837658,-0.45228439336642623,-0.5872921594418585,-0.1986878691241145,0.9032472758553922,0.0028050774708390236,0.8567602965049446,0.2751875868998468,-0.16812880942597985,-0.5202243607491255,-0.8998283604159951,-0.6330058011226356,0.454110873863101,0.26625693030655384,0.3656419259496033,-0.5449556708335876,0.3016259791329503,-0.5088895605877042,0.6907707564532757,0.5271021421067417,0.3285359009169042,-0.25251779006794095,0.3351713395677507,-0.09404021641239524,0.514452463015914,0.13807743089273572,0.29698203271254897,0.6930316262878478,0.9672183338552713,-0.19955251831561327,0.24536661244928837,0.5258424347266555,-0.5512819923460484,-0.13225087290629745,0.04030242282897234,-0.15867222659289837,0.4986736658029258,-0.8247110135853291,0.01579430652782321,0.8366214418783784,0.4076304007321596,-0.7534729028120637,0.5137419099919498,0.7493053716607392,-0.25089744525030255,0.3006335822865367,0.4245356763713062,-0.17441842472180724,0.671154132578522,0.8110451027750969,0.8563146530650556,-0.9316604728810489,0.265079693403095,-0.1363266259431839,-0.47751457430422306,-0.8275115117430687,-0.3610780774615705,-0.33009512443095446,0.025648964568972588,0.6516623492352664,-0.03840758977457881,0.9238457861356437,-0.5713628833182156,-0.02245376445353031,0.8737221919000149,-0.8271324853412807,-0.3014579531736672,0.5473030577413738,-0.41516048228368163,-0.7412578649818897,0.8398377015255392,0.13368583004921675,0.038478164467960596,-0.40936964051797986,0.7126729572191834,0.6349806520156562,0.6140293884091079,0.42156043741852045,0.6966860615648329,-0.36810995265841484,-0.6210000538267195,-0.005491634830832481,-0.9742955304682255,-0.1932080965489149,0.5139829372055829,-0.5236893044784665,0.2005334459245205,0.5909166266210377,-0.760374671779573,0.12796228285878897,-0.04778462601825595,-0.8785133408382535,-0.6353629752993584,0.49718289682641625,-0.7734257415868342,0.07874126033857465,-0.3131910380907357,0.5202787136659026,0.9681810108013451,0.25778364622965455,0.5824639732018113,-0.30411894293501973,0.9401353262364864,0.9912443999201059,0.24252384714782238,-0.615384578704834,-0.12075514160096645,-0.06866717431694269,0.27884617261588573,-0.6854047998785973,-0.8890162343159318,-0.4901051861234009,-0.15831315470859408,0.3506113076582551,-0.6698649828322232,-0.6665080161765218,-0.3347099395468831,0.5164725845679641,-0.9087458071298897,0.6436678310856223,-0.2462770938873291,-0.6335656042210758,-0.929630798753351,0.035254701506346464,-0.7517810454592109,0.708508615847677,0.854344570543617,-0.23935777228325605,-0.6694015287794173,0.5844614584930241,-0.6965612205676734,0.6225659120827913,-0.054102381225675344,-0.34949807496741414,-0.6120266132056713,0.22091703535988927,0.8893823302350938,-0.9797100950963795,0.5937448204495013,-0.9314150679856539,-0.9174558389931917,-0.9284984045661986,0.02152037713676691,0.34538768557831645,0.18365342170000076,0.12847730098292232,-0.9835336422547698,0.9459536429494619,-0.5514825810678303,0.48928704485297203,-0.14887720486149192,-0.08805136801674962,-0.967247037217021,0.8043040237389505,-0.8613951238803566,-0.7650785753503442,0.5162024470046163,-0.46919635217636824,-0.8565492779016495,0.9719441011548042,0.05048864148557186,0.7341539617627859,-0.09433957794681191,-0.3669966720044613,0.8163809380494058,0.19214682094752789,-0.3327808012254536,0.3181213438510895,-0.02407629555091262,-0.017490092664957047,0.02624273207038641,0.485974655020982,-0.42754114558920264,0.008443478494882584,-0.952787856105715,0.5987556856125593,-0.9090823759324849,0.9765815078280866,-0.24691951740533113,-0.44029408833011985,-0.875021705403924,-0.5081425406970084,-0.09347324771806598,0.14097905717790127,-0.5028885821811855,-0.7357750926166773,-0.698809549678117,0.9796297396533191,0.4310629400424659,0.3856937880627811,0.13817066373303533,0.3976634852588177,0.6663432558998466,0.6831608293578029,-0.3045736993663013,-0.45781632838770747,0.72023781016469,-0.08389914175495505,-0.8662811778485775,0.6529495879076421,-0.09203991619870067,-0.5091979899443686,-0.49239793233573437,-0.8776403446681798,-0.2654632553458214,0.09248983161523938,-0.7991287531331182,0.4678819226101041,0.9160928037017584,0.889075166080147,0.6980701498687267,-0.04792873188853264,0.36868601478636265,-0.15121164033189416,-0.03839046414941549,0.975138932466507,0.0004080869257450104,0.24569646175950766,0.5737441638484597,-0.5858687311410904,0.34693803265690804,0.9250354208052158,-0.8563808822073042,0.1100638248026371,-0.9710504654794931,-0.5225553656928241,0.24937736243009567,0.4193418021313846,0.8493695668876171,0.45489675318822265,-0.5397718944586813,-0.6653811577707529,-0.4425557111389935,0.4946707980707288,-0.5201599113643169,0.5733636356890202,0.3319482821971178,0.7249899469316006,-0.2413892769254744,0.32913134060800076,0.8347482387907803,-0.045402527786791325,-0.37162540666759014,0.8883598609827459,-0.08464646711945534,0.3805899955332279,0.5638562669046223,0.9573961570858955,-0.034805819392204285,0.6693393662571907,-0.455533463973552,-0.8671707469038665,-0.8990348884835839,0.13463313085958362,0.7199033088982105,0.5835501817055047,-0.6574719250202179,0.27302738139405847,0.937384161632508,-0.4424753412604332,-0.13615527283400297,0.8282508598640561,0.9658930590376258,0.512107496149838,0.6198536218144,-0.8224313394166529,0.13537911511957645,-0.5300730164162815,0.21999386977404356,-0.5770861594937742,0.8310803584754467,0.8484172187745571,0.6516306702978909,-0.3396343975327909,-0.8435859768651426,0.39638188527897,0.4903991734609008,-0.2882166118361056,0.9769285060465336,0.6582097774371505,0.2631679205223918,0.4217423661611974,0.2057651518844068,-0.6133889425545931,-0.15714966505765915,0.49718074407428503,-0.37336448673158884,-0.6792098716832697,0.3785553937777877,0.07887750212103128,0.3876592507585883,-0.4288941011764109,0.35129183484241366,-0.44867227924987674,-0.863991120364517,0.7982892678119242,-0.7937623057514429,-0.04149204818531871,0.8578921840526164,-0.34522963408380747,0.5793969905935228,0.4770588972605765,0.7768439566716552,0.48054382111877203,0.8286817981861532,-0.2920834687538445,-0.2525664181448519,0.40215133922174573,0.49137459183111787,-0.7027209820225835,0.9841428543440998,-0.7203001962043345,0.044397386722266674,0.5104386205784976,0.2770844604820013,-0.6323036141693592,-0.07385524548590183,-0.06865792395547032,-0.45231176307424903,0.7698054355569184,0.9174828175455332,-0.9144004746340215,0.7864700760692358,-0.9959910633042455,-0.8645315458998084,-0.5721921096555889,-0.34693505242466927,0.057409041095525026,0.38113555824384093,-0.7399224587716162,0.6432614629156888,0.012341497000306845,0.37451024493202567,-0.01268340414389968,-0.6061493316665292,-0.22619303595274687,-0.30090511590242386,-0.08678853092715144,-0.11247339844703674,-0.9496078151278198,0.8760802401229739,0.8262204471975565,0.0644291453063488,-0.1365672592073679,0.5357452128082514,-0.13140592211857438,-0.10557077499106526,0.022045958321541548,0.2233561323955655,-0.2551684193313122,0.4912450257688761,-0.4694967716932297,-0.9787325751967728,0.447823743801564,0.8466171282343566,-0.7746754917316139,0.40199193777516484,0.8466204353608191,0.5743935271166265,0.13681079214438796,0.7452160120010376,-0.030295665375888348,-0.6904800492338836,-0.06321945507079363,0.601552287582308,-0.5401081978343427,0.7290889797732234,-0.8346791388466954,0.24195630755275488,-0.9532815786078572,-0.014225209131836891,-0.042399043682962656,-0.15021567000076175,0.49623929522931576,0.11724225664511323,-0.9562385785393417,0.48913655150681734,0.07063171593472362,0.43542101373896,0.5459499801509082,-0.6460350886918604,-0.8545305132865906,-0.1929858927614987,0.9868830847553909,0.8720194939523935,0.9303777189925313,-0.7138134553097188,-0.9453621497377753,-0.9541792590171099,-0.14376303926110268,-0.005382569972425699,-0.7229510741308331,0.34779600938782096,0.5854462422430515,-0.8502688533626497,-0.33536964002996683,0.949109423905611,-0.3258022931404412,-0.02864832803606987,0.8166493610478938,-0.03989153867587447,-0.5751759437844157,0.5401889011263847,-0.9623599546030164,0.185149768833071,0.682933441363275,0.09695672616362572,-0.27502325363457203,-0.32543589966371655,0.6375122428871691,-0.7320688986219466,0.051342583261430264,0.6328714694827795,-0.6057156436145306,-0.010959293227642775,-0.26462530763819814,-0.35642957920208573,-0.9458194286562502,-0.47250547260046005,0.753748239018023,0.3548355405218899,-0.6753698326647282,0.2754429103806615,0.20685602724552155,0.4758573556318879,0.47550332313403487,-0.7072875932790339,0.9258844540454447,0.696298208553344,-0.4278125721029937,0.8995277467183769,-0.046324463561177254,0.1370782139711082,-0.44318829011172056,0.0946637955494225,-0.8866827385500073,0.7627541976980865,-0.6694826413877308,-0.6978594232350588,-0.4469237569719553,-0.48796081403270364,-0.8744888794608414,-0.6088059945032,0.6023794482462108,-0.3977253665216267,0.07668903237208724,-0.6290320362895727,-0.6632578717544675,0.09641510155051947,-0.005112806335091591,-0.13954077288508415,0.38238243479281664,-0.9560192516073585,-0.4008622937835753,0.31909135077148676,0.7361575029790401,0.6207731496542692,0.7467916524037719,-0.8083436610177159,0.9491733415052295,-0.004976531490683556,0.5141253159381449,0.9765475774183869,-0.937685121782124,0.16801424697041512,-0.46162153175100684,0.7942270101048052,-0.464573391713202,0.5875653065741062,0.5065596951171756,0.3615488028153777,-0.8834740561433136,0.08565326780080795,0.932614668738097,-0.437175783328712,-0.18940316000953317,0.8761808378621936,0.288955585565418,-0.8560144333168864,-0.6429889528080821,0.7985483519732952,0.3407533713616431,-0.09453944163396955,0.7266833940520883,0.3013996067456901,0.5338985752314329,0.5342278415337205,-0.8794016791507602,0.03507773391902447,-0.08071812707930803,0.9997674166224897,-0.72186981420964,-0.0756928431801498,-0.2609726772643626,-0.38530883751809597,0.46608330262824893,0.48509732261300087,-0.3915293882600963,0.050107458140701056,-0.9230463379062712,-0.15748801780864596,0.6078256419859827,0.30301867378875613,-0.5520076001994312,-0.6526784007437527,-0.304694477468729,-0.7352525978349149,0.7318910090252757,0.16635512607172132,0.7433771812357008,-0.8198675909079611,-0.374360928311944,-0.7500892854295671,0.21186388237401843,0.258958391379565,0.7765568476170301,0.6649500764906406,-0.364160330966115,-0.549011243507266,-0.6497526373714209,-0.4954436491243541,0.22180735832080245,0.39285833248868585,-0.8078236943110824,0.8858161019161344,0.21652474952861667,-0.31289518903940916,0.3929036259651184,0.7873915643431246,0.21080329176038504,0.9847801811993122,0.7479955460876226,0.7227777158841491,-0.7552662095986307,-0.012859716545790434,-0.9892634223215282,-0.2679557749070227,0.4428571746684611,-0.39142630621790886,-0.7952445144765079,-0.5396057274192572,0.585626273881644,0.9721846277825534,-0.6886253608390689,0.8249896564520895,-0.33364797942340374,-0.661579645704478,-0.4401330444961786,-0.24380660615861416,-0.07313862629234791,0.08112362818792462,0.3867517397738993,0.8933710679411888,-0.1699896538630128,-0.5190188260748982,0.8457652665674686,-0.15404484560713172,0.5122115472331643,-0.1882216432131827,0.24980399711057544,-0.8497680309228599,-0.03822999307885766,-0.03323480486869812,-0.24323857901617885,-0.48099966160953045,-0.4425034769810736,0.5313833206892014,0.8642942076548934,-0.33678280375897884,0.5106057957746089,-0.35034161852672696,0.7899428489618003,-0.17902921698987484,0.9409784288145602,0.5693003395572305,-0.07163686212152243,0.3593513462692499,-0.5082779279910028,-0.48892237432301044,-0.921436580363661,0.5619325335137546,-0.4852340347133577,-0.1141149983741343,0.2079682550393045,0.03911609249189496,0.40441108494997025,-0.5691622365266085,-0.7059226189740002,0.18819603277370334,0.12368226377293468,0.6459999452345073,-0.6582435583695769,-0.7444411157630384,0.617047656327486,-0.722516605630517,0.3032744349911809,0.6464714510366321,0.5885607358068228,-0.15657988982275128,0.6990799671038985,-0.47010616585612297,-0.35124460654333234,0.16267400654032826,0.4660915043205023,-0.24808280309662223,0.15623671701177955,-0.7065860689617693,0.49808744341135025,0.9242020091041923,0.7423774334602058,0.1911887750029564,-0.15933456923812628,-0.4187941192649305,-0.48868369963020086,-0.7006043144501746,-0.5265854876488447,-0.9142154864966869,-0.45507601415738463,-0.810132606420666,-0.2614302095025778,-0.5564794973470271,0.15548639837652445,0.23452947987243533,0.5288058612495661,-0.9207618054933846,0.09093483770266175,-0.18271308112889528,0.14678849140182137,-0.7657178579829633,-0.4040089529007673,0.41837796475738287,-0.28605632157996297,-0.5621023681014776,0.25637911865487695,0.3820971455425024,-0.12521728919818997,0.6775912079028785,-0.853835676331073,0.21235603047534823,-0.29831300117075443,-0.11514358827844262,-0.8646516520529985,-0.06639349786564708,0.5922402469441295,-0.8363179634325206,0.37078560097143054,-0.8899852386675775,0.7101298621855676,0.19662099331617355,0.8747948249801993,-0.2838306059129536,0.21354077942669392,0.49880290776491165,0.1629775776527822,0.9840566092170775,0.2152976798824966,-0.5092511991970241,-0.8742374377325177,0.7430816320702434,-0.5828142650425434,0.9165823622606695,0.7018080614507198,0.767173926346004,-0.7113045835867524,0.25946626625955105,-0.38745793141424656,0.08960235817357898,0.8430788419209421,-0.20264912070706487,-0.148060433100909,0.5844300650060177,-0.28541159303858876,0.3447354519739747,-0.5423137922771275,0.7243257779628038,0.7494017821736634,0.40564317675307393,-0.9057739949785173,0.8761795270256698,0.1525190263055265,0.5047634639777243,-0.456672802567482,-0.0031934166327118874,-0.12134804995730519,0.012933159247040749,0.033916108310222626,0.5007753223180771,0.7592668188735843,0.519224330317229,-0.7632040460593998,-0.4484986527822912,0.11882485914975405,-0.3063640892505646,-0.7413458880037069,0.5755830118432641,0.06215350888669491,0.36353592202067375,-0.6317047975026071,0.9739122297614813,0.2723231576383114,0.9984326409175992,0.3523628474213183,0.22205930342897773,-0.6666930401697755,-0.313540929928422,0.7705740057863295,-0.2769183632917702,-0.059765385929495096,0.3191038453951478,-0.6367294318042696,-0.35971173318102956,-0.923610629979521,0.2514988533221185,-0.2711016731336713,0.9325971831567585,0.38645980414003134,-0.8003835286945105,-0.6285958895459771,0.8059561504051089,0.3501135753467679,-0.7012136238627136,0.8509039776399732,-0.13501133350655437,0.05331702809780836,-0.529494640417397,-0.44738764502108097,0.8112123301252723,-0.6102652079425752,-0.5272476519457996,0.5309600033797324,-0.0004935883916914463,0.46258726716041565,-0.011214743368327618,0.06763134757056832,-0.8441114481538534,0.06448317179456353,0.2885446841828525,0.17943610018119216,-0.047502472531050444,-0.771576997358352,-0.6524770986288786,0.013278545811772346,0.48380735190585256,-0.9399670464918017,-0.4594268477521837,-0.4240386947058141,0.1585249723866582,0.5083000385202467,-0.6628063055686653,0.4466940453276038,0.1899013170041144,0.8977270731702447,-0.8539902935735881,-0.7525682258419693,-0.6524218241684139,-0.3461769102141261,0.08968990994617343,-0.44661468593403697,-0.8320886227302253,-0.6739186528138816,-0.4779764171689749,-0.1275865277275443,-0.21153680887073278,-0.011708269827067852,0.45413162279874086,-0.8452265188097954,-0.8241273402236402,0.8022997165098786,-0.6117692263796926,-0.42191580403596163,0.14656361658126116,-0.5485507762059569,-0.9479818283580244,0.08424850553274155,-0.6907074581831694,-0.3174009961076081,-0.8651835680939257,-0.9252368984743953,-0.2269507758319378,-0.1921624317765236,0.1582917207852006,-0.5307801458984613,0.3414610046893358,-0.38900351990014315,-0.14724796591326594,0.7814476997591555,-0.9521322823129594,-0.6133944964967668,-0.6566013339906931,-0.6607364299707115,-0.4666239214129746,0.6835226835682988,-0.900848803576082,-0.637181774713099,-0.32981237675994635,-0.04963440168648958,0.7950629382394254,0.0996887399815023,0.2377590322867036,0.0655568316578865,0.1813831552863121,-0.6045540883205831,-0.8567868019454181,0.3429692857898772,-0.3113341936841607,0.775995341129601,-0.4172108182683587,0.6805144418030977,-0.34640467865392566,-0.5653594494797289,-0.1869165189564228,0.9071094216778874,0.7309194919653237,-0.6398181254044175,-0.342888708692044,-0.15560423769056797,-0.9651835164986551,-0.05248062312602997,0.8596829841844738,0.5023289006203413,0.7633772306144238,0.38777558598667383,0.6756838019937277,0.4204148342832923,0.9937204164452851,-0.6680045858956873,0.2702633603475988,-0.6873488924466074,-0.38629054790362716,-0.3163511478342116,0.2433514902368188,0.5568487020209432,0.19175724452361465,0.06665425281971693,0.16873853979632258,0.8997569722123444,-0.5755886472761631,0.6089598843827844,0.8088295208290219,0.7678106972016394,0.4605832863599062,-0.311386541929096,0.42600954277440906,0.8266348340548575,0.28339529456570745,0.2273152838461101,-0.02668499108403921,-0.7748955991119146,0.42223196011036634,-0.6122074630111456,0.4086572080850601,-0.26170172169804573,-0.31891936622560024,-0.9949694154784083,-0.912845500279218,0.7091634091921151,0.07391338050365448,0.843280999455601,-0.3895373260602355,0.8410155433230102,-0.6812756848521531,-0.8472728310152888,0.16947706462815404,0.9225031668320298,0.6640955270268023,0.8676706277765334,0.7262055734172463,0.37280296673998237,-0.26511236652731895,-0.08456345088779926,-0.7920244145207107,0.11980276880785823,-0.9082874683663249,-0.5994213568046689,-0.9995737629942596,0.8575006779283285,-0.11798412166535854,0.5520108956843615,0.20833015209063888,0.3600459089502692,0.841711035463959,-0.8803965579718351,-0.1800673259422183,-0.2815714608877897,-0.4534524423070252,-0.17553429445251822,0.7549069840461016,0.18813804956153035,-0.08418327663093805,0.5971935833804309,-0.3732277792878449,-0.2858441360294819,0.7355388035066426,0.5949895293451846,-0.09250521473586559,-0.8494121767580509,0.23736193869262934,0.45033834455534816,0.4707888844422996,0.8871648758649826,0.9400549507699907,-0.908325282856822,-0.8266174267046154,-0.1325362352654338,-0.5588664086535573,0.6295213429257274,-0.44532141368836164,0.6521079055964947,-0.6832549101673067,-0.460928400978446,0.30174608808010817,0.9621021039783955,-0.6601674719713628,-0.057776750065386295,0.04004056192934513,-0.21986818965524435,0.007116883061826229,-0.47314710495993495,-0.026837116107344627,-0.6983308154158294,-0.6614883504807949,0.9518776829354465,-0.8015867192298174,-0.006367187015712261,-0.12446790328249335,-0.5180056900717318,0.2356039835140109,-0.9168640817515552,0.1524304747581482,-0.7812019092962146,-0.8195082922466099,-0.18319665268063545,-0.9954900862649083,0.712722314056009,0.8034866685047746,-0.17806760221719742,-0.4834447195753455,0.06371315894648433,0.03911493346095085,0.5346469217911363,-0.5486094364896417,0.08159141056239605,-0.18126553483307362,-0.8883712696842849,0.5604313854128122,0.11610155692324042,0.3670234698802233,0.817867421079427,0.6759135723114014,0.377417819108814,-0.46242036763578653,0.5998011003248394,0.8801927245222032,-0.6489987373352051,0.6729454738087952,-0.2734018783085048,-0.49138164706528187,0.5161424851976335,0.6747638317756355,0.13600810756906867,-0.9452075138688087,-0.3940989216789603,0.3023282312788069,0.5743164881132543,-0.29330893978476524,0.7823916370980442,0.5747644882649183,-0.30057431710883975,0.5485011632554233,-0.10599755169823766,-0.5867054220288992,-0.06219214107841253,-0.35494389198720455,-0.7664948110468686,0.8299528839997947,0.10523458337411284,-0.9754218319430947,-0.8019601185806096,-0.8509044027887285,-0.33051102235913277,-0.24671295937150717,-0.418042900506407,0.5632861810736358,-0.6752417501993477,0.8602620041929185,0.1194581650197506,-0.3125004447065294,-0.31067491648718715,0.8285336974076927,0.7094232835806906,0.8664265936240554,0.8981058038771152,0.34193879645317793,-0.759867609012872,-0.28287589317187667,-0.3260489390231669,-0.08403875445947051,0.3984908298589289,0.4234676845371723,0.46397631661966443,0.3685739799402654,0.7464675861410797,-0.9869279353879392,0.035193515941500664,0.2555121616460383,0.056562474463135004,0.014905260410159826,0.45557338185608387,-0.4275032370351255,0.8009118833579123,0.04372351709753275,-0.4349162131547928,0.022388337180018425,-0.32195690646767616,0.44983784202486277,0.5173046165145934,0.27298838598653674,-0.16876994026824832,0.5294260084629059,-0.40463745780289173,-0.8752553323283792,0.957851211540401,0.08505918784067035,-0.530533580109477,-0.5157828219234943,-0.6475261393934488,-0.9266662588343024,0.581915520131588,-0.1961389947682619,0.38170373952016234,0.6187107269652188,0.9769817180931568,0.6291722315363586,-0.9920371761545539,-0.6493466063402593,-0.25523444218561053,0.3865840369835496,0.23266081744804978,0.9430276770144701,0.9482429139316082,0.27026777248829603,-0.04264688119292259,0.7568263974972069,-0.13925123447552323,-0.09509325074031949,0.4036005870439112,-0.3466564444825053,0.2762886406853795,-0.7145359562709928,0.7977345967665315,-0.9793982692062855,0.01827585930004716,0.8042422248981893,-0.41904443548992276,-0.11424547946080565,0.5573360463604331,-0.04124240996316075,-0.2651122775860131,0.6585418097674847,0.8766193953342736,0.6847990071401,-0.9231734834611416,0.2756709256209433,-0.07173800747841597,0.1633418262936175,0.0801997035741806,-0.9777644984424114,0.9922252772375941,0.31562445499002934,-0.8052604338154197,-0.8778260787948966,0.22626881347969174,0.005617237649857998,0.3262722152285278,-0.08783024502918124,0.09326471528038383,-0.3192489817738533,-0.5024647871032357,-0.5037631914019585,-0.5992422294802964,-0.08990522986277938,-0.5110868206247687,0.2572472468018532,0.5899732946418226,0.9454661239869893,-0.3781952918507159,0.165265207644552,-0.16032663779333234,-0.7640504008159041,-0.5504656098783016,0.5824566148221493,0.7894526836462319,-0.15813750540837646,0.5167599483393133,-0.939936472568661,0.496762759052217,-0.8820113078691065,0.18663582811132073,-0.1012882087379694,0.453487990424037,-0.4418863751925528,-0.5379775054752827,-0.8896959163248539,0.2616904526948929,-0.11954967677593231,-0.8411599141545594,-0.9163293507881463,0.902789200656116,0.24758744146674871,-0.3106946833431721,-0.9679168844595551,-0.7946990472264588,0.42255152575671673,-0.30023779766634107,0.5842259717173874,0.32911597518250346,-0.6963727073743939,-0.9641812294721603,-0.3393012681044638,-0.05591183574870229,-0.6083167381584644,0.03773180255666375,0.613244959153235,-0.6175938528031111,-0.5920967706479132,0.6457127649337053,0.6600373741239309,-0.6088175098411739,0.10768289864063263,0.7959408704191446,0.6780738704837859,0.6627930859103799,0.5496731605380774,0.4081295835785568,-0.968815388623625,-0.05417870869860053,0.6729826545342803,-0.26955084735527635,0.5374003490433097,0.9754567821510136,0.25881445966660976,0.23710958007723093,-0.4437648132443428,-0.5396942300722003,0.8141710893251002,0.47960827872157097,0.8241347637958825,0.2311775041744113,0.5646573449485004,0.36283720610663295,-0.9319964037276804,0.36779931327328086,0.9885540008544922,0.8080383916385472,0.832127402536571,0.9241137686185539,0.030233445577323437,0.8854107102379203,0.09615378081798553,-0.906863930169493,-0.9369151773862541,0.6324496017768979,0.29537284979596734,-0.17683997144922614,0.6395519329234958,0.14862880250439048,-0.10931618046015501,-0.41872171219438314,0.9570743753574789,0.8123704097233713,0.9726738468743861,0.46674267016351223,-0.5896715726703405,0.6295407684519887,-0.26840706169605255,0.069572395645082,0.3225111016072333,0.2013348606415093,-0.4638108555227518,0.7793895862996578,-0.5771964252926409,0.980443958658725,-0.9448608551174402,-0.9821039158850908,0.4714346225373447,0.2797796637751162,-0.10069509409368038,0.9539918415248394,0.7090310733765364,-0.9831345654092729,0.4339260505512357,0.8648236547596753,-0.27769492473453283,-0.4994910592213273,-0.0022995094768702984,0.6814185688272119,-0.8771843961440027,0.8897161637432873,-0.4042279226705432,-0.7511576930992305,-0.8867196957580745,-0.14202110609039664,-0.5875912844203413,0.8526286748237908,0.016466524451971054,0.7072246405296028,0.8927955329418182,-0.20073048491030931,-0.6975260796025395,0.672966780140996,-0.8712774971500039,0.6266842209734023,0.8631936586461961,0.5426421747542918,-0.0812052097171545,0.07365978136658669,0.25536099821329117,-0.4157649609260261,-0.5074663888663054,0.14931165520101786,-0.4970544148236513,-0.21205570362508297,-0.007409583777189255,-0.45375776709988713,0.025270567275583744,-0.1997873978689313,0.1069883625023067,-0.4061667094938457,-0.9003331861458719,-0.6727034216746688,-0.7450439385138452,-0.6300307372584939,-0.3268191940151155,0.20762486057356,-0.22453858237713575,0.44723978731781244,-0.33551230235025287,-0.6542818760499358,-0.7061345418915153,0.10169387143105268,0.6435416848398745,0.9811538741923869,-0.3480821209959686,-0.3182823737151921,-0.3471723971888423,0.7360999579541385,-0.39594034757465124,0.1272293576039374,0.6610929551534355,0.9000690337270498,-0.8079759874381125,0.429021923802793,-0.4574287482537329,0.6700234790332615,0.9477350143715739,0.39430117793381214,-0.43309919722378254,-0.25171803729608655,-0.9801666135899723,0.15254155360162258,0.9083794550970197,0.38387652579694986,-0.6223374311812222,0.9628335628658533,0.655899710021913,-0.43535931315273046,-0.07664192095398903,0.8982732500880957,-0.4128403873182833,0.7809811988845468,-0.14931886550039053,-0.9402821022085845,-0.7102419212460518,0.018393801990896463,0.5897248950786889,0.9115666509605944,-0.8782088039442897,0.1427168264053762,-0.9168072515167296,0.8461880283430219,0.20554577512666583,-0.3994819954968989,0.682912980671972,-0.6739492299966514,0.9227574071846902,0.035918392706662416,0.5058111767284572,-0.4496025829575956,-0.07857623416930437,0.6131465155631304,-0.11135009117424488,0.5215167724527419,0.6685689105652273,-0.7976011312566698,-0.2503735525533557,0.14600648591294885,-0.13722312496975064,-0.4851897838525474,0.6459000390022993,-0.16979927476495504,0.5722901788540184,-0.6607223423197865,0.8713297271169722,-0.8291859794408083,0.160531856585294,0.35830470360815525,-0.07466811081394553,-0.7483734148554504,0.7087830062955618,0.004215961322188377,0.4074601950123906,-0.6112255281768739,-0.9417798025533557,-0.7985106129199266,-0.7447102796286345,0.1693969494663179,0.372382203117013,-0.6284338519908488,0.06248805997893214,0.08810482965782285,0.8913394673727453,-0.7162429490126669,0.8759117522276938,0.09423267701640725,-0.979365321341902,0.20628099236637354,0.8755611111409962,0.0067045302130281925,0.6292261318303645,0.4762079995125532,0.34597699670121074,0.7357733435928822,0.7181060803122818,0.7469694665633142,-0.44121087435632944,-0.7288865833543241,0.32326137367635965,0.13325332943350077,-0.8027461231686175,0.7096922877244651,0.6603038255125284,0.34254088206216693,-0.6614396376535296,-0.4715418200939894,0.946303132455796,0.22708081640303135,0.9650110406801105,-0.5202214741148055,-0.8405913109891117,0.9438918032683432,-0.19333467772230506,-0.46956920390948653,0.03263437049463391,-0.7523670927621424,0.30983523838222027,-0.5985025754198432,0.13685823418200016,-0.8577077342197299,0.26661177817732096,0.2847743551246822,0.4635375780053437,-0.322170393075794,-0.4703687345609069,0.6131266406737268,0.8926448812708259,0.9183707060292363,0.10776754328981042,-0.9100109762512147,-0.17880145786330104,0.08987120538949966,-0.38337586307898164,0.11712327832356095,-0.9138014963828027,-0.7374312030151486,0.035518551245331764,0.0056722089648246765,-0.6287983087822795,-0.39719272311776876,-0.10296848090365529,-0.877122760284692,-0.21927377954125404,0.5097562703303993,0.08483961317688227,0.07682674843817949,-0.6314722541719675,0.8424930446781218,-0.20423312578350306,0.6623311811126769,-0.7246708641760051,0.4132192092947662,-0.26625438779592514,-0.5893405028618872,0.8993517342023551,0.17975776037201285,0.507774640340358,0.9397053425200284,-0.47741241101175547,-0.9046547426842153,0.7008022186346352,-0.30971839604899287,0.5141874458640814,-0.5782495075836778,0.4322009673342109,0.22574087558314204,0.9671809510327876,0.043652203399688005,-0.4665599991567433,0.16975551843643188,-0.42963913129642606,0.41664653923362494,0.660797439981252,-0.5421672607772052,0.37076068110764027,0.8787187589332461,0.7703477954491973,0.9906710716895759,0.9977287924848497,-0.6850578365847468,0.6484733577817678,-0.11508614709600806,0.32339877262711525,0.5843946598470211,0.9230352551676333,0.7275120904669166,0.7436800100840628,0.768154920078814,0.9861714937724173,-0.5471822302788496,-0.27547971392050385,0.9597584558650851,-0.6855128514580429,0.7105543967336416,0.7490387884899974,0.9524990166537464,-0.8971479157917202,-0.7653576801531017,-0.845519645139575,0.8729828880168498,-0.046819038689136505,-0.9344818941317499,0.8589739538729191,0.6574532622471452,-0.440821539144963,-0.7718696272931993,-0.6229180488735437,-0.40601960895583034,-0.3703850358724594,-0.11101120105013251,0.6422460014000535,-0.7039046017453074,0.9132263264618814,0.5297033726237714,0.1852769353426993,-0.2535321987234056,-0.13095890451222658,-0.7743007163517177,-0.3548282701522112,0.796680151950568,0.516176559496671,-0.19682985357940197,-0.31128440564498305,0.11794004868716002,0.9656880302354693,-0.527221760712564,0.7836571871303022,-0.472395583987236,-0.11645783111453056,-0.4231078578159213,0.23647120781242847,0.4920705216936767,0.09290811885148287,-0.26949815079569817,0.4165630037896335,-0.3685079482384026,0.5413230420090258,0.25690014846622944,0.6225893911905587,-0.16077572060748935,0.8300736634992063,-0.3129985458217561,0.09604612225666642,0.08589273085817695,0.3612384130246937,-0.2744959187693894,0.47756147012114525,0.656809976324439,-0.3621481158770621,0.10997950052842498,0.8874103738926351,-0.8310451484285295,0.3051081136800349,-0.29204962821677327,-0.33907268615439534,0.7002182547003031,0.8624707092531025,0.4319834001362324,0.4429095615632832,0.48546919133514166,0.08868509437888861,-0.40758450562134385,0.5608695363625884,0.6623796592466533,0.8250994253903627,0.246150070335716,0.9519913829863071,0.3401608192361891,0.8584343763068318,0.18514698883518577,0.2205279916524887,0.27961888862773776,0.8361495393328369,0.0881884191185236,-0.05308258859440684,0.5170177486725152,-0.7509042867459357,0.9020182969979942,0.45104247191920877,-0.32540506310760975,0.8888814197853208,-0.9200240457430482,-0.2590976692736149,-0.4557236968539655,0.15008827298879623,-0.04660265427082777,0.863484182395041,-0.23889849381521344,-0.9040619013831019,0.144601637031883,-0.5067270216532052,0.7519109919667244,-0.7349186674691737,-0.5409271754324436,-0.5401430907659233,0.8130463543348014,-0.4382763267494738,0.6992242843843997,-0.04004304390400648,0.6773741445504129,0.11828893795609474,0.513382532633841,-0.4941467116586864,0.09462683089077473,0.9359238767065108,-0.19646999472752213,0.3393218107521534,-0.9647673279978335,0.21496240561828017,-0.15536477090790868,-0.6562422392889857,0.20263064932078123,0.09619718883186579,0.2503736582584679,0.494826918002218,-0.32260192185640335,-0.22059661010280252,-0.767775327898562,-0.7930948883295059,-0.8365987609140575,-0.8045958825387061,0.4549601706676185,0.8432710659690201,0.965417189989239,-0.15398776531219482,0.17389795370399952,-0.06889078114181757,-0.33950580935925245,-0.36887215450406075,0.2927590091712773,-0.6006224295124412,-0.7588064554147422,0.45365399215370417,-0.6211357582360506,0.6911663445644081,-0.184859752189368,0.17747962288558483,-0.10787926521152258,0.9534037755802274,-0.7719145938754082,-0.8042714446783066,-0.38470313092693686,-0.48401641426607966,0.5495196124538779,0.537013697437942,-0.9855732833966613,-0.10899776080623269,-0.7789402580820024,-0.1346210134215653,-0.6712623070925474,0.8531966512091458,-0.8047213740646839,-0.05505599221214652,-0.8344652159139514,0.8992311940528452,-0.30857449397444725,-0.9582279114983976,0.8341509732417762,-0.2745500560849905,-0.7769335866905749,-0.35785197792574763,-0.749005937948823,0.24775268463417888,0.4585346304811537,0.45182635029777884,-0.06683378433808684,0.0536787798628211,-0.14478349080309272,-0.73716632835567,-0.865949020255357,0.050217486917972565,-0.9724256908521056,-0.4938618130981922,-0.6516329939477146,0.38168531423434615,-0.7170034940354526,-0.6278758095577359,0.9280976611189544,-0.8000897201709449,-0.40742170764133334,-0.951592814642936,-0.8277236614376307,0.14559754123911262,0.2828284427523613,-0.6238606087863445,0.6452883202582598,0.8494223128072917,0.1303773238323629,0.18503990303725004,0.6735995323397219,-0.4110688753426075,0.4553481200709939,0.8382464903406799,0.3972631716169417,-0.37810488138347864,-0.09443255374208093,0.04656289517879486,0.07834017090499401,-0.7284372923895717,-0.5227185324765742,0.35778949689120054,0.4394208169542253,0.9083112133666873,-0.5388670908287168,-0.8964337939396501,0.7630212670192122,-0.8347984370775521,-0.3174834749661386,0.5261107315309346,0.2332172328606248,0.029288065154105425,-0.959195145405829,0.45962568232789636,0.012042326387017965,-0.9705282957293093,-0.48591176699846983,-0.30506830709055066,0.5224779201671481,-0.8330972571857274,0.9808226432651281,-0.6144342236220837,0.5100203771144152,0.4015440843068063,0.05365683790296316,0.8714246721938252,0.8805423844605684,-0.3287932788953185,-0.18152770586311817,0.7834240756928921,0.44267450692132115,-0.5738768689334393,0.20564235793426633,0.13709007250145078,-0.5861439346335828,0.07803782029077411,-0.040089169051498175,-0.3570031770505011,-0.9562791986390948,-0.8351266901008785,-0.14892454212531447,-0.2789660026319325,0.7882464621216059,-0.9047119724564254,0.8631503749638796,0.8151512485928833,0.884890588466078,0.7712675537914038,-0.815403709653765,0.5635167476721108,0.3512694351375103,0.0508860875852406,-0.6482349657453597,0.8924097158014774,-0.14975096518173814,0.29037239169701934,-0.13264247309416533,0.3193793511018157,0.5668999403715134,-0.021532239392399788,-0.6142489472404122,-0.19751291908323765,-0.47068836260586977,-0.5766409826464951,-0.6276438441127539,-0.6078165038488805,0.3344371132552624,-0.76602394413203,-0.4146335022523999,-0.6603046483360231,0.9676508586853743,0.9851198620162904,-0.9020533566363156,-0.7178574781864882,0.9419856565073133,0.4553829301148653,-0.4908822043798864],"z":[0.7916342280805111,0.886876558419317,-0.5893151559866965,-0.8096080524846911,0.6542588295415044,-0.4295834032818675,-0.08299993304535747,0.5970094539225101,0.21462922496721148,-0.5002808873541653,0.42433404130861163,-0.08600562624633312,0.6409095320850611,-0.26814983738586307,-0.7823227597400546,0.5051947147585452,-0.07039141468703747,0.40457016974687576,-0.8310847035609186,0.6727796345949173,0.8450980498455465,0.10846032854169607,-0.8170932400971651,-0.005744731519371271,0.8967792754992843,0.20466500567272305,0.7779730251058936,0.42230586521327496,0.8532149642705917,0.3900899882428348,0.254598977509886,-0.13569689635187387,0.6806274172849953,-0.3258040933869779,0.5719946278259158,-0.42354248045012355,0.7506507653743029,-0.2974653011187911,0.7745142891071737,-0.6720926421694458,-0.7540760766714811,0.033147796988487244,0.4122109282761812,0.22166571021080017,-0.9866864373907447,0.7708219233900309,0.8413888067007065,0.8482516934163868,-0.8484820649027824,-0.8332847924903035,-0.5722829322330654,0.5258757909759879,-0.9811634183861315,-0.7267025159671903,0.8164079887792468,0.7940697390586138,0.5662978389300406,0.6082741939462721,-0.9325326546095312,0.9579672906547785,0.5009960583411157,-0.6085590273141861,-0.2631873395293951,-0.2623601374216378,-0.4281808231025934,0.5990883829072118,-0.019711336120963097,-0.398728318978101,-0.9115784885361791,0.18905649427324533,-0.058912675362080336,-0.42309628520160913,-0.005206380970776081,0.4003337253816426,0.7827607672661543,-0.7288483856245875,0.3049225155264139,0.5629943166859448,0.8866285611875355,-0.6534061632119119,-0.9778082673437893,-0.023335335310548544,0.29556206008419394,-0.31809953041374683,-0.44092515483498573,0.6972245648503304,-0.5632235803641379,0.1789643601514399,-0.4587960112839937,0.9336652401834726,0.9146786429919302,-0.24308780673891306,-0.7350290827453136,-0.9563985974527895,0.5069004641845822,0.22479212190955877,-0.04168882593512535,0.5187584366649389,-0.12299116002395749,-0.817580655682832,0.641891554929316,-0.9343817234039307,0.23038575425744057,0.26379396207630634,-0.9194287466816604,0.595443042460829,0.7300353068858385,0.4702470959164202,-0.7612000284716487,-0.914789458271116,0.5915555581450462,-0.7756391875445843,0.7747756522148848,-0.5618760157376528,-0.12188790226355195,-0.5367493475787342,-0.7705201571807265,-0.8018813203088939,-0.5023984899744391,0.9840738684870303,-0.8497494771145284,-0.6385486954823136,0.03319323621690273,-0.43688536854460835,0.9507118789479136,-0.7111958847381175,0.35859372094273567,-0.7249869713559747,-0.6960700354538858,0.5833112741820514,0.27045274106785655,-0.10102213220670819,-0.6056306422688067,0.6726058307103813,0.5698211803101003,0.853803176432848,-0.5390525795519352,0.25135717261582613,0.2719588503241539,-0.008915930986404419,0.7668037335388362,-0.5160631216131151,-0.9647419773973525,0.06185359787195921,0.11727269180119038,-0.6720745372585952,0.28880742797628045,-0.9600144634023309,0.27711254730820656,-0.18290071887895465,-0.010803146753460169,0.29171916795894504,0.34171586483716965,-0.0018465160392224789,-0.6426938250660896,-0.05309117352589965,-0.06163130979984999,0.510974008589983,0.8570769531652331,-0.18562896270304918,0.5280708549544215,-0.5252791196107864,0.90074209170416,0.7120020245201886,-0.8676916188560426,0.6148028676398098,-0.9849721100181341,0.8663993421941996,-0.597777231130749,0.2944198399782181,-0.5969306607730687,-0.05094790831208229,0.375553235411644,0.3933415892533958,0.0942408200353384,0.9025696301832795,0.8573759687133133,0.5047668106853962,0.6262339372187853,0.2499111508950591,0.9967444082722068,0.1360161891207099,-0.7961848354898393,0.8014389183372259,0.7380811739712954,0.962337878998369,-0.7843353026546538,0.15448750974610448,-0.9940383820794523,-0.4557944922707975,0.5308191776275635,-0.2632472785189748,0.8437494500540197,0.9053416163660586,-0.24380479054525495,0.8685985789634287,-0.09445492504164577,0.4845082741230726,-0.1444929908029735,0.07202773168683052,0.38063855236396194,-0.6486877733841538,-0.7048882776871324,-0.4241072158329189,-0.36733816890046,-0.45714719174429774,0.4423447852022946,-0.3163871276192367,0.22384613752365112,0.8671960425563157,0.6999225807376206,0.5124652036465704,-0.43908456852659583,-0.07407070649787784,0.5995894698426127,-0.0009003831073641777,-0.36817764677107334,0.024429679848253727,0.18504276452586055,-0.2595426491461694,-0.31484198244288564,0.9083729847334325,-0.8370256964117289,0.8635092913173139,0.5616258531808853,-0.28500294545665383,0.24788975529372692,-0.5498851547017694,0.6681635295972228,0.4946291879750788,-0.6940409755334258,-0.3883711523376405,-0.054510660003870726,-0.2845823522657156,-0.09243286726996303,-0.24188488349318504,-0.6265571671538055,0.018422686960548162,-0.806057664565742,0.5790872890502214,0.6904289340600371,-0.2570709614083171,-0.5930071854963899,0.06904124049469829,0.008360539563000202,-0.39998031267896295,0.5033758659847081,0.9863364030607045,-0.9948848364874721,0.6528605008497834,-0.727465586271137,0.36141767213121057,0.25427496805787086,-0.08085027895867825,-0.10643674433231354,0.23470388539135456,-0.9817003379575908,0.6810479965060949,0.7812327272258699,0.1672241911292076,0.6015289258211851,-0.48806885862722993,-0.6022012196481228,0.13979673385620117,-0.16229713847860694,0.636428146623075,0.4142388659529388,0.05490465369075537,-0.253970158752054,-0.8368221148848534,0.6772251599468291,-0.7421969524584711,-0.9380132178775966,-0.9868442467413843,0.7367064338177443,0.5895754713565111,0.8661388615146279,0.38186274329200387,-0.07120976923033595,0.7887832950800657,-0.35327218007296324,0.6170662180520594,0.5960120395757258,0.7012185147032142,0.6164442361332476,0.393984813708812,0.7936040032655001,0.5980478348210454,-0.2095163161866367,-0.929189327172935,-0.5309342150576413,-0.08168047713115811,-0.7527212323620915,-0.6943185464479029,0.08344933483749628,0.4783232631161809,0.397534238640219,0.10998114757239819,0.7946903044357896,-0.5168326254934072,0.06312395026907325,-0.5443005869165063,-0.9207556755281985,0.41514357225969434,0.1539482530206442,0.5418717102147639,0.4178439397364855,-0.15471453731879592,-0.37036309437826276,0.22397735947743058,0.1093885013833642,-0.7646365915425122,-0.7272219196893275,-0.5318740140646696,0.3696896340698004,-0.9877704973332584,0.1590949255041778,-0.9031256092712283,0.0036084242165088654,-0.43169352412223816,0.11690827505663037,0.9567951490171254,0.41914286743849516,-0.5121407294645905,0.7074575130827725,0.4999607135541737,0.5470045120455325,0.6637609768658876,0.18350092554464936,0.9209863701835275,0.3901170124299824,0.1487722839228809,0.08558265445753932,0.8658766020089388,-0.41735105123370886,-0.20018212823197246,-0.24476775852963328,0.5745600522495806,0.03964162338525057,-0.7714850115589797,-0.5477730385027826,-0.41188695235177875,0.9152065757662058,0.9998307451605797,-0.49441014463081956,0.3162426957860589,0.10939946910366416,-0.8160747396759689,0.5744413486681879,0.9050993332639337,0.677701847627759,-0.6798004489392042,-0.8097327188588679,0.9380772011354566,-0.9354901537299156,-0.11603683140128851,-0.8033830123022199,-0.03981160232797265,0.03233949700370431,0.02148626372218132,-0.8685163669288158,-0.767089887522161,0.6105393907055259,-0.42300876835361123,-0.46357886120676994,0.5771986981853843,0.9148941086605191,0.8922126800753176,-0.43215919751673937,0.3073991034179926,0.7224054727703333,0.7722425828687847,0.6786048728972673,0.8446725984103978,-0.43350712954998016,-0.08195826597511768,0.5181160909123719,0.4659404130652547,-0.7254801299422979,0.2821485917083919,0.2693862086161971,-0.33340827748179436,0.4938270109705627,-0.7993457457050681,0.8995459196157753,0.8631831933744252,-0.020584079902619123,0.5594961689785123,0.1262672678567469,-0.6854630415327847,0.011647811159491539,-0.49625628627836704,-0.8082489273510873,-0.7458851882256567,0.2768883779644966,0.2600238351151347,-0.6370753487572074,-0.10769678000360727,0.6040729829110205,-0.6923976326361299,-0.11473312135785818,-0.9864988699555397,-0.6019554673694074,0.5648402129299939,0.6633867886848748,0.09615566395223141,-0.11795980390161276,0.5153883504681289,-0.23058655951172113,-0.8602891517803073,-0.373367786873132,-0.8833976113237441,-0.6481496789492667,0.9852280491031706,-0.045567499939352274,0.25395327946171165,-0.9377955733798444,-0.38234677305445075,-0.738900403957814,-0.19601888488978148,0.2204033937305212,-0.3193900822661817,0.9625627514906228,-0.8063937979750335,-0.3722644313238561,-0.7066056225448847,0.8156328913755715,0.6851007048971951,-0.5212020413018763,-0.7218508911319077,-0.8564294720999897,-0.40146074490621686,0.8799055861309171,-0.9824993377551436,-0.912754806689918,-0.7029160540550947,-0.970110472291708,-0.6078252401202917,0.2238764027133584,0.4538142364472151,0.50435527600348,0.11249135201796889,0.09500666195526719,-0.4234437458217144,-0.13685697503387928,-0.502344817854464,0.8870589528232813,-0.607282146345824,-0.5367471091449261,0.2173937144689262,0.40058210492134094,-0.4826327566988766,0.39761642226949334,0.9332462321035564,-0.5888920901343226,0.7139079580083489,0.36168519454076886,-0.5762890568003058,-0.7952758567407727,-0.16168487118557096,0.358234207611531,0.4551856820471585,-0.03256136178970337,-0.21031673857942224,-0.9923207047395408,0.09533485677093267,0.8202311182394624,0.7544734771363437,-0.5749971074983478,-0.3710382548160851,0.12003229977563024,-0.02832730021327734,0.8705478659830987,-0.2965237465687096,-0.80406259233132,0.7929781028069556,0.8736286861822009,-0.898552805185318,-0.714098731521517,-0.29195776488631964,-0.9591958983801305,-0.44141136668622494,-0.9619340253993869,0.8047007252462208,-0.41532187163829803,-0.13237299025058746,-0.4067306141369045,0.7865308313630521,-0.505613240879029,-0.5883429949171841,0.8066800036467612,0.4307272471487522,-0.049770358484238386,-0.4431982641108334,0.8910286482423544,0.07761876424774528,0.48338966676965356,0.7998723797500134,-0.6953356079757214,-0.3807332362048328,-0.8101854147389531,0.2583559863269329,0.11407148418948054,-0.4062789799645543,-0.19560669967904687,-0.8760261610150337,0.510260391049087,-0.16381381312385201,-0.7882904587313533,-0.04738704953342676,0.9065844560973346,0.9340906948782504,0.6232034531421959,0.048403605818748474,-0.8221265324391425,-0.5330612701363862,-0.8504520715214312,-0.4112973427399993,-0.8293315954506397,-0.652054965030402,-0.3201146046631038,-0.4872258026152849,-0.6840387433767319,0.21814125962555408,0.009711814112961292,-0.6236849101260304,0.8621811005286872,0.44876353023573756,-0.7213725722394884,0.9817808829247952,0.43001242401078343,-0.19036669796332717,-0.6178363487124443,-0.7377780620008707,-0.4668815671466291,0.8571971943601966,0.522482258733362,-0.15414355974644423,-0.3205513320863247,0.8682708363048732,-0.8888990366831422,-0.7592707457952201,-0.019364297855645418,-0.27392634795978665,-0.2711400524713099,-0.5855579799972475,0.2907359772361815,-0.37458627577871084,0.5600714944303036,-0.3547995067201555,0.6127021866850555,0.27028133627027273,0.7398820156231523,0.2495666490867734,0.26975633250549436,0.8085909229703248,0.7938413149677217,-0.4780128477141261,0.9503981685265899,0.25157310580834746,0.5361136705614626,-0.4241260248236358,-0.2377087757922709,0.9021410029381514,0.8995773098431528,0.026385902892798185,-0.3075598985888064,0.18900979403406382,0.03677834989503026,-0.34663511952385306,-0.2910083862952888,-0.5172322844155133,-0.05210616858676076,0.9069361160509288,0.3196283960714936,-0.7256623366847634,0.06729806819930673,-0.9582917494699359,-0.10948258498683572,-0.07585897669196129,0.4053565082140267,-0.22375367442145944,0.28759937500581145,-0.9136727033182979,0.1263627866283059,0.9197127055376768,0.26421187724918127,0.6777377887628973,0.18095613783225417,-0.5861431881785393,-0.9069428578950465,-0.32187779946252704,0.6677724015899003,-0.5723406602628529,-0.8910875483416021,0.9561460483819246,0.013667441438883543,0.09515628404915333,-0.6563543174415827,0.5747656528837979,-0.006345115602016449,-0.8992944294586778,-0.21551883639767766,0.1403394490480423,0.3938608071766794,0.5589500581845641,-0.051466211676597595,-0.8461606740020216,0.27537062345072627,0.6133838887326419,0.5395730156451464,-0.5382151156663895,-0.7745996518060565,-0.788236609660089,-0.8084064042195678,0.8442418179474771,0.9495334415696561,0.6221272125840187,0.45903590228408575,0.2514063878916204,0.10780562041327357,0.004293789155781269,-0.5370895829983056,0.908975746948272,0.9943689415231347,0.655395207926631,0.8680193652398884,0.5662339958362281,0.49840896436944604,-0.8846222632564604,-0.3819365235976875,0.5282107633538544,0.447638223413378,0.9319624360650778,0.590710655786097,0.2608432653360069,-0.1365150697529316,-0.4071080111898482,0.6650256575085223,0.45749949058517814,0.46577888121828437,-0.7798265260644257,0.5047794091515243,0.513237725943327,0.6028100540861487,-0.26229388639330864,-0.18879787996411324,0.59393953345716,0.15631942637264729,-0.34926625806838274,-0.28160737128928304,0.35943294363096356,0.8656981154344976,0.833772256039083,0.8344190586358309,-0.6983304237946868,0.9618894304148853,-0.47165975719690323,-0.27159979566931725,0.9147196686826646,0.36328207654878497,0.04309308808296919,0.07141258707270026,0.40615210123360157,-0.46482521481812,-0.4090960188768804,-0.043087066151201725,0.943312908988446,-0.47190752951428294,0.7029996612109244,0.21685143606737256,-0.9573338939808309,0.26319311326369643,-0.41690541291609406,0.4539017719216645,-0.9583263648673892,-0.8601703476160765,0.9206726648844779,0.4992845165543258,0.6169976429082453,0.12597743468359113,0.6172188143245876,-0.6992971366271377,-0.12509586289525032,0.8975232923403382,0.7563221375457942,0.08160883001983166,-0.6395785985514522,0.8020197218284011,0.524147380143404,0.3823179672472179,-0.09491480747237802,0.43521228851750493,0.6456802291795611,-0.8131244289688766,0.7451853300444782,0.08711534412577748,0.34605012368410826,0.5263104313053191,0.717699880246073,0.44471662817522883,0.8781561837531626,0.18631425872445107,-0.3190583004616201,0.2950954381376505,0.7192703597247601,0.5845459429547191,0.14430735353380442,-0.3943389607593417,0.793468976393342,0.5876538841985166,0.2961547477170825,-0.6878481488674879,0.8993145390413702,0.8936362341046333,0.6258524716831744,0.2399369548074901,-0.384033823851496,-0.18715240294113755,-0.2190862912684679,-0.009449203498661518,-0.8513760934583843,-0.34530513221397996,0.5686300634406507,0.39957781974226236,-0.8251650002785027,-0.9587087542749941,0.2252169200219214,-0.6865054029040039,0.37529162410646677,-0.338840598706156,0.926536291372031,0.25777440099045634,-0.9676299910061061,0.808095209300518,-0.727917707990855,-0.4395826864056289,0.967879880219698,0.5588668775744736,0.3329884363338351,-0.3392609180882573,0.46827642200514674,-0.041950089391320944,-0.9971857951022685,-0.27820980129763484,0.5451834676787257,-0.72979722218588,-0.9750777808949351,0.8961717523634434,0.2515690950676799,-0.9690629597753286,-0.11079761805012822,-0.5527351112104952,0.11284262640401721,0.6718672369606793,0.0381470862776041,0.4182519633322954,0.5720988321118057,-0.5004895068705082,-0.34884968353435397,0.21718206768855453,-0.11941285897046328,0.5685021630488336,0.8326495685614645,0.7914817379787564,0.5878928578458726,-0.25892031472176313,-0.7135938815772533,-0.06195193948224187,-0.585371230263263,-0.37344479467719793,0.6140551483258605,0.17327265767380595,0.7580062001943588,0.6246047797612846,0.762600492220372,-0.6225144187919796,0.34567436669021845,0.38984561897814274,-0.3347413591109216,0.046608515083789825,0.10259013948962092,-0.9284982439130545,-0.5730323605239391,-0.3512091198936105,-0.2594947558827698,0.6521893157623708,0.2476516393944621,0.2991389147937298,-0.37057177256792784,0.8939416697248816,-0.23025980684906244,0.629596350248903,0.44029742665588856,0.006308834999799728,-0.15075291879475117,0.248057231772691,-0.10805391985923052,-0.7958755563013256,-0.47092241793870926,0.9873817348852754,-0.16259507648646832,-0.008456510957330465,-0.9686400420032442,0.34863911801949143,-0.9415114121511579,0.6663954956457019,-0.9127202294766903,-0.745442648883909,-0.6705230679363012,0.6066820658743382,-0.8300527976825833,-0.6785766128450632,-0.9388745985925198,0.9385446957312524,0.7223505000583827,-0.8054527826607227,-0.7473859437741339,-0.6128775873221457,0.30057704262435436,-0.3965350054204464,0.24060149071738124,-0.5378279485739768,0.7329235970973969,-0.8650060975924134,0.9844185514375567,0.3916294570080936,0.6722790617495775,0.28210335364565253,0.08199620572850108,-0.5326424594968557,0.8119630017317832,0.35896413400769234,0.9034233372658491,-0.44042599899694324,0.5496121710166335,0.5599117036908865,0.4937367388047278,0.5416438933461905,-0.40276750549674034,-0.7111787847243249,-0.8491127002052963,-0.5777265373617411,0.0002969461493194103,0.08537997212260962,0.5840382385067642,0.7316008396446705,0.5721014123409986,-0.05666901543736458,-0.175446561537683,-0.9074899693951011,0.03857851168140769,0.41389438789337873,-0.4310598666779697,0.7822474366985261,-0.4058942520059645,-0.12515453435480595,0.8375870566815138,-0.9213370797224343,0.5698857689276338,-0.4292501495219767,0.7584978048689663,0.6075867391191423,-0.8455610773526132,0.8194418991915882,-0.29466910380870104,-0.26912732562050223,-0.9825603873468935,0.7310830592177808,-0.06754301395267248,0.6537579512223601,-0.9487553806975484,0.5998931690119207,0.20463608531281352,-0.6598891280591488,0.8206414845772088,-0.8223852817900479,0.7005635262466967,0.3853188413195312,-0.5402094922028482,0.8678770801052451,-0.9738204963505268,0.5094537911936641,0.947626665700227,0.1908742212690413,-0.7107067098841071,-0.48000534949824214,-0.842768638394773,-0.4113132553175092,0.8850774774327874,-0.7998330793343484,-0.06311104400083423,0.6010675407014787,0.9717733436264098,0.4155811881646514,-0.0658604302443564,0.6215829262509942,0.4408670384436846,0.22068997519090772,-0.2753574042581022,0.26135900197550654,-0.473669049795717,-0.21666798368096352,0.6640692865476012,-0.7944787368178368,0.009729503188282251,-0.251723017077893,0.3916900111362338,-0.19925727182999253,-0.290717292111367,-0.04095948487520218,-0.3585725948214531,0.296508158557117,-0.3129428601823747,-0.4340156735852361,0.05118984775617719,0.8294134456664324,-0.14385475311428308,0.10079023661091924,0.057596380822360516,0.9367037322372198,-0.2508039763197303,-0.8435798068530858,0.45310437912121415,-0.958900349214673,-0.6329889446496964,-0.2129200268536806,-0.05833393661305308,0.23907733568921685,0.1718605700880289,0.20482756569981575,0.5315106543712318,-0.6211081226356328,-0.19348429841920733,-0.24723495822399855,0.7920558243058622,-0.9589310763403773,-0.9362696907483041,-0.14062553690746427,-0.870892892125994,0.9315234492532909,0.22186793107539415,-0.9874657532200217,-0.49065576400607824,0.3263928787782788,0.5484517901204526,0.09242497477680445,-0.28812884306535125,-0.8110155873000622,-0.5030846884474158,-0.2732883826829493,0.36470427783206105,-0.5204503140412271,-0.6597239631228149,-0.7348553445190191,-0.3418085025623441,-0.6607395531609654,-0.6054615122266114,0.1770253642462194,0.7570521314628422,-0.5019861641339958,-0.5448706252500415,0.8870207495056093,0.6019481108523905,-0.07477062800899148,0.3113718247041106,0.9010110069066286,-0.6131231901235878,-0.5356684997677803,-0.36862132232636213,0.2629316421225667,0.9701407640241086,0.6476116445846856,-0.06383807398378849,-0.8499667583964765,-0.8391567580401897,-0.9388306704349816,-0.4262674991041422,0.9256769749335945,0.4707118859514594,0.6806099368259311,0.27929310174658895,0.33564586471766233,0.3438637191429734,0.33188542118296027,-0.059868764132261276,-0.3760142819955945,0.4063737471587956,-0.4213158627972007,-0.12761704623699188,0.40048977034166455,-0.8845332562923431,-0.21709849266335368,-0.0500749540515244,-0.6580830998718739,0.2778800125233829,0.17386710736900568,-0.47680661315098405,-0.24950699787586927,0.6997704352252185,-0.22815926373004913,-0.09028915408998728,-0.7198038841597736,0.47687366837635636,0.8760949410498142,0.46695534512400627,0.636443043127656,-0.9507643198594451,0.08424250455573201,0.40946958726271987,0.022118140943348408,0.8546819528564811,0.7756055956706405,0.9764751922339201,0.43310233252123,-0.04615606181323528,-0.5880786161869764,-0.24737358279526234,-0.45073503954336047,-0.9163344991393387,-0.36854026932269335,-0.9840025128796697,-0.4572934238240123,-0.6149517837911844,-0.2884673955850303,-0.9676117072813213,0.008353524841368198,0.7262918376363814,-0.0877651609480381,0.5584277180023491,0.29376999428495765,0.045174457132816315,0.15159653825685382,-0.7415957963094115,-0.9770917752757668,-0.888937346637249,0.7691914574243128,-0.7249120231717825,0.9742052149958909,-0.7989683179184794,0.6275614933110774,-0.7133679073303938,0.8014230756089091,0.4979546801187098,0.1722000245936215,0.5466949208639562,-0.5224500158801675,0.7450590012595057,0.8954167133197188,-0.20140641927719116,0.3811135324649513,0.8459082646295428,-0.22126125823706388,0.8793152621947229,0.40580724785104394,0.3293953090906143,0.8017251999117434,0.5812507756054401,-0.04231917392462492,-0.04243728145956993,-0.3808066206984222,0.9695609519258142,-0.17300666961818933,-0.24713861010968685,-0.42304151644930243,0.07906110072508454,0.19510974548757076,-0.04800904495641589,0.3296831287443638,0.3129221508279443,0.18249362520873547,-0.08811903046444058,0.9474443513900042,0.9006062862463295,0.7500200564973056,-0.6334346728399396,0.6462388341315091,0.596539156511426,0.5194774456322193,0.2762269154191017,-0.13236528122797608,-0.4248227486386895,-0.4862202829681337,0.4248185819014907,-0.9556692009791732,0.12807397078722715,0.507519839797169,0.0683068260550499,0.5509323147125542,0.6414499175734818,-0.9898253097198904,0.038339820224791765,0.25262468215078115,-0.8241954506374896,0.12744399905204773,-0.7959973490796983,-0.24764156015589833,-0.9107911325991154,0.8638442126102746,-0.5633357902988791,0.36293981969356537,0.5257639810442924,-0.9699762496165931,-0.032388861291110516,0.6140270917676389,0.6966954185627401,-0.6224562032148242,-0.30382100539281964,-0.8539974326267838,0.7653050199151039,0.6773679321631789,-0.5083802696317434,0.6399393347091973,0.22965287417173386,-0.44837249582633376,-0.8304453063756227,-0.9100809646770358,-0.09223964717239141,0.3256175802089274,0.7298401957377791,0.39240246592089534,0.8108103312551975,-0.3363664806820452,-0.3031438151374459,-0.7364155785180628,0.10189768532291055,0.4195855809375644,0.6682515433058143,-0.8696526479907334,0.21756300562992692,-0.03805307252332568,0.9386490527540445,-0.3649390987120569,-0.4867321285419166,0.2137332670390606,-0.43739860970526934,-0.976924127433449,-0.5703760790638626,-0.6249786992557347,-0.40087871672585607,0.0424316287972033,-0.9955544378608465,0.19364352896809578,-0.25694410828873515,-0.0718083237297833,-0.9848024761304259,-0.5011742608621716,-0.9952418766915798,-0.9266645624302328,0.6497341440990567,0.9099792195484042,0.08593904878944159,-0.3243219191208482,0.7994112130254507,-0.7183044292032719,0.6679830849170685,0.3132243352010846,0.4077960401773453,-0.965895926579833,-0.9512709174305201,-0.9231347590684891,0.3679155050776899,0.10630105389282107,0.461971215903759,-0.5801562955603004,-0.6111296294257045,0.7152529545128345,-0.5753196720033884,-0.8803593548946083,0.26305935345590115,0.7615352002903819,-0.1646417435258627,-0.9866728084161878,-0.16842659981921315,0.509846203494817,0.22800944047048688,0.6931648338213563,-0.7862593270838261,0.5776146752759814,-0.491014470346272,-0.8848321251571178,-0.255590314976871,-0.38730932027101517,0.43954808777198195,0.0989041063003242,0.2760403510183096,0.16323235863819718,-0.5006006276234984,0.48603829368948936,-0.6490330547094345,0.7225648974999785,0.5165617354214191,-0.9025170817039907,0.29282559221610427,0.8213535044342279,0.16427535796537995,0.23559212032705545,0.2578617795370519,-0.8073703744448721,-0.23109338199719787,-0.796868346631527,-0.1486440720036626,0.35560152446851134,0.2408825638704002,-0.8400680948980153,0.9879250810481608,0.20823467941954732,0.23248586663976312,0.9403470233082771,-0.30200710892677307,-0.2091836305335164,0.8938085627742112,0.6822357303462923,-0.6708630975335836,0.9565075146965683,0.1347422581166029,0.2926908554509282,0.23501826263964176,0.6219604201614857,0.9132470516487956,0.6480197887867689,0.06466600811108947,0.4086159626021981,0.17453291406854987,-0.7044681934639812,0.37232389114797115,0.5629727179184556,-0.10482822824269533,0.5844233087264001,-0.8789506144821644,0.7152194553054869,0.1310705323703587,0.5483937878161669,0.40520169446244836,0.14705570694059134,0.7111345157027245,0.04855031380429864,0.4965977710671723,0.296624090988189,-0.4285969906486571,-0.5171662103384733,-0.6911522927694023,0.22289656195789576,-0.15220684139057994,-0.6798413274809718,-0.22031227266415954,0.2720469506457448,0.44509631069377065,0.9365674736909568,-0.12150452844798565,-0.33408130519092083,0.10948256682604551,-0.6110315667465329,-0.1650996203534305,0.4058279190212488,0.29029845632612705,0.5514271268621087,0.7147624250501394,0.05881673842668533,-0.9902303931303322,0.452490100171417,-0.017940972466021776,-0.5525294933468103,0.24452014220878482,0.9171933350153267,-0.680760801769793,-0.2915471759624779,0.7233161893673241,0.25741262966766953,0.1562717854976654,0.690577988512814,0.1258197850547731,0.3885234082117677,-0.23703038645908237,0.8745135175995529,-0.44182170322164893,0.4292218601331115,0.7380169136449695,-0.19729198422282934,-0.2142825499176979,0.4336551302112639,-0.051804214250296354,-0.7079480807296932,-0.34035217156633735,0.8191409283317626,0.6404825639910996,-0.689481679815799,-0.648775371722877,0.595173170324415,0.01623745681717992,-0.5883832685649395,-0.6342654260806739,-0.2717416030354798,0.5834017395973206,0.8202329417690635,0.5754370279610157,0.7939904541708529,-0.4723481987603009,0.361437133513391,0.18763545248657465,0.24540037522092462,-0.6060489327646792,0.046099424827843904,0.2305169040337205,-0.44732398027554154,0.5650485274381936,0.6101083224639297,0.2427981118671596,0.2869193130172789,0.8276400147005916,-0.7484338278882205,-0.6822623698972166,0.22329008672386408,-0.25978469708934426,0.635387827642262,-0.8022413523867726,-0.8919148780405521,0.540042778942734,-0.4617183608934283,-0.39491005847230554,0.5136362407356501,0.4858479588292539,0.4084955248981714,0.14458121405914426,-0.2458297209814191,0.8733089379966259,0.400534862652421,0.2376873572356999,0.901627660728991,0.5042551853694022,0.3986735697835684,-0.23086632369086146,0.44897804502397776,-0.5704995053820312,0.8639341089874506,-0.1724521415308118,0.6181501727551222,-0.7583711966872215,0.6815175479277968,0.7583350674249232,0.11748203122988343,-0.5302804782986641,0.6212480803951621,0.9334324789233506,0.6703841518610716,0.582427938003093,0.5277839410118759,-0.022732211742550135,0.4231616514734924,0.594952130690217,0.5400674962438643,-0.9391430360265076,0.802065197378397,0.6489615393802524,0.5463876794092357,-0.08567180903628469,0.4459522217512131,-0.02489989949390292,-0.5198825425468385,-0.5937546961940825,0.8768539265729487,0.3543296526186168,-0.8712459867820144,0.8378800940699875,0.2617655820213258,-0.9678257866762578,0.09696678770706058,-0.6743230926804245,-0.5796604221686721,0.5710449409671128,-0.37726282328367233,0.05177219212055206,0.5439154389314353,0.3600145699456334,-0.9453534330241382,0.693880099337548,0.6589380744844675,0.057118149008601904,0.8060317528434098,-0.2689974345266819,0.32788728503510356,0.05625094519928098,0.9105287701822817,0.22227875422686338,0.7315878900699317,0.08574140490964055,-0.8427653354592621,-0.15959876868873835,0.6661554831080139,-0.5767723680473864,-0.2857239325530827,-0.2288884655572474,-0.7537056552246213,-0.8908937592059374,0.2848986331373453,-0.6373272044584155,0.2574966410174966,-0.05535690253600478,0.08094028476625681,-0.28349695820361376,-0.4507358707487583,-0.9819830958731472,0.5580365359783173,-0.4003995726816356,0.9566363096237183,0.9439584859646857,-0.010369990020990372,0.5307858814485371,-0.3474470661021769,-0.03873693710193038,0.8736773175187409,-0.3032016847282648,0.15455552842468023,0.42573193460702896,-0.09673879342153668,-0.37748013576492667,-0.5290028383024037,0.17429323447868228,-0.8205751092173159,-0.0059625981375575066,-0.9707717043347657,0.3892308478243649,0.0497131897136569,-0.5695954039692879,-0.9821438519284129,0.6906247320584953,-0.15770006133243442,-0.22368145640939474,-0.11451047891750932,0.008911061100661755,-0.8771154945716262,-0.2881725272163749,0.8193251653574407,-0.2649392690509558,-0.012895760592073202,0.4376108539290726,0.5493477545678616,-0.6840270543470979,-0.8568806373514235,0.22749006794765592,-0.3431339291855693,-0.5103775653988123,-0.8066873420029879,0.2343890117481351,0.06401917291805148,0.4224313464947045,0.8142051948234439,-0.7474395199678838,0.7064118562266231,-0.42779952520504594,-0.6975406324490905,0.1086249127984047,0.047005002386868,-0.88319554599002,-0.48569710133597255,-0.13341953605413437,0.4191121472977102,-0.380236039403826,-0.18934174627065659,0.7290843660011888,0.13734814105555415,0.3554295441135764,-0.3850112915970385,0.755978056229651,0.8071137419901788,-0.5458316435106099,-0.8209304441697896,-0.21844540862366557,0.5045992229133844,-0.5416823537088931,0.49397194338962436,-0.007083016447722912,0.7213101829402149,0.30198554368689656,-0.09565032133832574,0.1298491102643311,-0.3542015263810754,0.6594512183219194,0.7079887832514942,0.5083309351466596,-0.8827794566750526,0.5616233446635306,-0.5912149320356548,-0.8520448748022318,0.9259874946437776,-0.47700324980542064,0.19225291209295392,-0.8006526432000101,-0.08313970873132348,0.061465147882699966,-0.8349951663985848,0.028957820497453213,-0.2567502995952964,0.06522491248324513,-0.6138078146614134,0.8976882728748024,-0.2480051559396088,0.3675698945298791,-0.9133946029469371,0.3121205233037472,0.9497751467861235,0.3935739900916815,-0.0297255776822567,-0.17503401963040233,0.6275642085820436,-0.24273720243945718,0.9216104079969227,-0.19478101283311844,0.36961417412385345,0.643820567522198,-0.8979076147079468,0.7640935140661895,-0.3813492055051029,-0.024671532213687897,0.6963257123716176,0.8040433176793158,0.6665566647425294,0.31647096341475844,0.15324949519708753,0.9812544132582843,0.955352142918855,-0.061360612977296114,-0.6020840271376073,0.8010886856354773,-0.010306296870112419,0.8392750192433596,0.9865714362822473,0.41135228238999844,-0.12855659145861864,0.27854893635958433,-0.6788558498956263,-0.16688642092049122,-0.9348683729767799,-0.4393277382478118,0.014990892261266708,0.599027800373733,-0.20154946856200695,-0.6372273713350296,0.6141124074347317,-0.11072137486189604,0.8230131058953702,-0.1336716408841312,-0.9780961028300226,0.6279755220748484,0.9621680933050811,-0.869877306278795,0.8346487027592957,0.286328193731606,0.7646391708403826,-0.7376934923231602,0.38214412052184343,0.8170838807709515,-0.549037498421967,-0.14224380208179355,-0.03355436306446791,-0.7891173805110157,-0.3321350417099893,-0.09673675196245313,0.32899510813876987,-0.3073373050428927,0.27434951113536954,-0.5219729566015303,-0.0472093066200614,0.00180811807513237,-0.8457000479102135,-0.11581003712490201,0.0699918745085597,0.6772780772298574,0.07107324479147792,0.10191355319693685,-0.7465971894562244,-0.8571279775351286,0.6670177862979472,0.21211328590288758,0.19603590155020356,-0.9042652044445276,0.04325663344934583,0.8480415181256831,-0.9357323688454926,0.17175436904653907,-0.6739264312200248,0.8114288989454508,0.4842175142839551,-0.12626878079026937,-0.07655730657279491,0.4046161035075784,0.2146358247846365,0.9975957181304693,-0.8262002165429294,0.9945846274495125,0.2330916249193251,0.3525538006797433,-0.35222666151821613,-0.7181971953250468,-0.26533906860277057,0.8880374478176236,-0.2768375785090029,-0.6369538330473006,-0.7026150356978178,0.09818466985598207,-0.2408788362517953,0.9474008246324956,0.6944852629676461,-0.051779689732939005,0.4260205300524831,-0.06678474508225918,0.8121427833102643,0.20225587068125606,-0.8779430403374135,0.9151844531297684,-0.047201947309076786,-0.8287098850123584,0.4358124020509422,0.7936077690683305,0.9200248634442687,0.15523525839671493,0.2483381861820817,0.7193475281819701,0.031084802001714706,-0.6580374864861369,-0.455247912555933,-0.1933266120031476,-0.5932890027761459,-0.7983290441334248,-0.3141677319072187,-0.3760380931198597,-0.318399335257709,-0.9907038416713476,0.9984265733510256,0.5166201968677342,0.17997371312230825,-0.7630233909003437,-0.020427461713552475,-0.6884499103762209,0.33403529971838,0.8955401671119034,-0.5106638423167169,-0.8195814900100231,-0.5467577492818236,-0.3472363669425249,0.3834455916658044,0.13086916971951723,0.01549070281907916,0.869323699735105,-0.5308083901181817,0.6521288775838912,-0.05979489581659436,-0.34092142758890986,0.11840439774096012,0.9851918760687113,-0.24831777112558484,-0.6681841248646379,0.9078871430829167,-0.8888425575569272,0.07641900703310966,-0.9653240093030035,-0.20397421810775995,0.597182625439018,0.7620611446909606,-0.4597061681561172,-0.7453697365708649,-0.09234972530975938,-0.2021641954779625,-0.3024396141991019,-0.7021490205079317,0.5116761191748083,-0.007560268044471741,0.17386468360200524,0.6716135614551604,0.9587907898239791,0.6022287174127996,-0.6486183614470065,0.3835453190840781,-0.6629576892592013,0.887974786106497,0.4894584007561207,-0.18013838957995176,-0.9205076098442078,0.5105691053904593,-0.6013911589980125,-0.3582546063698828,-0.9592015659436584,0.925721078645438,0.7671522018499672,0.6887824293226004,0.14037951873615384,0.8071463042870164,-0.5590744633227587,-0.39588173013180494,0.5704321246594191,-0.7592007075436413,0.6496521946974099,-0.42413000110536814,-0.3752285744994879,-0.49803142063319683,-0.4841282325796783,-0.5200853813439608,-0.6555775781162083,-0.14274050341919065,0.39489548932760954,0.03712532576173544,-0.4825609172694385,-0.5802783966064453,-0.10956060467287898,-0.06283731618896127,0.12901021307334304,-0.7376683889888227,0.8403322347439826,-0.39302434073761106,-0.7860165517777205,0.7070833942852914,-0.7812291942536831,0.59710375033319,0.9094893964938819,0.2570673255249858,0.6367678577080369,0.16229855455458164,-0.4244715883396566,0.08844326715916395,-0.6762867840006948,0.2415503836236894,-0.4869191525503993,0.5985170598141849,0.41361750569194555,-0.8547214572317898,0.21886427467688918,0.3065087478607893,0.8935035900212824,0.45750806061550975,-0.23768101958557963,-0.2340414091013372,-0.43768730480223894,-0.4599923714995384,0.3759804181754589,-0.5537540330551565,-0.5718271778896451,-0.06041125813499093,-0.7945271455682814,0.2966934912838042,0.21525887912139297,0.8473457167856395,-0.6455146842636168,0.5023247329518199,0.46881425147876143,0.7108605406247079,0.9929883200675249,-0.11932484759017825,0.24646388553082943,-0.30026741325855255,-0.6361364745534956,0.3120400314219296,-0.7666295464150608,0.3496307134628296,-0.8000195692293346,-0.5998625783249736,0.667513023596257,0.3604139145463705,-0.111188480630517,-0.587641641497612,-0.5389812309294939,-0.3456880869343877,-0.8662351509556174,-0.8511965102516115,0.8630882306024432,-0.4124816870316863,0.6039852779358625,-0.5069508641026914,-0.524150671903044,0.5996681251563132,-0.803493338637054,-0.9026634087786078,0.758466383907944,0.20186632219702005,-0.5107679576613009,-0.870138839352876,0.3802166939713061,0.8410378647968173,0.1929436638019979,-0.3520593913272023,-0.9312429074198008,-0.6361174718476832,0.015342378988862038,0.25072580482810736,0.9345620800741017,-0.20717349462211132,-0.4299300075508654,0.0668034115806222,-0.7216774309054017,-0.6640925733372569,0.45525905722752213,0.812818534206599,0.7477321065962315,-0.40114035503938794,-0.8730669361539185,0.34140019258484244,0.7279844935983419,-0.8462163028307259,-0.17585257487371564,-0.29926041746512055,-0.7797519532032311,-0.33123425114899874,0.39178931526839733,0.5634884256869555,-0.18375242920592427,-0.6621501222252846,-0.4323459477163851,0.05903901578858495,0.24514046218246222,-0.80413679452613,-0.11145568313077092,0.8267155126668513,-0.5762232001870871,0.13204943016171455,-0.9964568708091974,0.9008713141083717,-0.5360681260935962,0.6731521659530699,0.4947892362251878,-0.6405291664414108,0.34547690907493234,-0.03946151863783598,-0.04106493899598718,-0.7192741767503321,0.507671354804188,0.6475250823423266,-0.19035957427695394,0.9842800097540021,0.5051612993702292,-0.9055130397900939,0.8378684208728373,-0.7723487638868392,0.06854442646726966,0.8650653515942395,0.5825332663953304,-0.8419602597132325,0.4453205275349319,0.15831855917349458,-0.706842768471688,-0.6349916569888592,0.9307552403770387,0.343204140663147,-0.7396316127851605,-0.31096102902665734,0.05618327343836427,-0.6222696006298065,-0.2329086191020906,-0.19262393238022923,0.6908802487887442,0.9097984936088324,-0.7915360918268561,-0.4031876767985523,-0.6863190126605332,-0.9123775837942958,-0.9366601328365505,0.0685369772836566,0.31840217718854547,-0.990220389328897,-0.8738553901202977,0.12529571261256933,-0.8945993343368173,0.5207347446121275,0.8399231401272118,-0.4988177944906056,0.721322478260845,0.8116833120584488,0.07751251757144928,-0.5417787847109139,0.8922057384625077,0.3863555835559964,-0.5319885020144284,0.23953259550035,-0.2391377971507609,-0.20054198754951358,0.06431223545223475,-0.7157877674326301,-0.3641450935974717,0.3440349055454135,0.4077200456522405,0.23826801823452115,-0.7454035431146622,0.4603844741359353,-0.895864034537226,0.6134758586995304,-0.5462250104174018,-0.9784756517037749,0.3928263313136995,0.5700162556022406,0.8122187945991755,0.7359655555337667,0.024464091286063194,0.9364843182265759,-0.16265796776860952,-0.6590921049937606,-0.05054000299423933,0.23974145017564297,0.44839412439614534,-0.1388431447558105,-0.486890303902328,0.4411221155896783,-0.8370679444633424,-0.23452786449342966,0.4328252929262817,0.014455529395490885,0.8779538115486503,0.875907426699996,-0.04539826884865761,0.809948309790343,-0.613074338529259,-0.02782808570191264,-0.5508076185360551,-0.7098799413070083,-0.9001333485357463,-0.22550443513318896,0.3389316825196147,-0.6403132597915828,-0.6194546832703054,-0.789212885312736,-0.48113544564694166,0.9615645511075854,0.7379164011217654,0.9077150109224021,-0.8743176092393696,-0.5066328509710729,-0.24702785816043615,0.05500577110797167,0.17480756668373942,-0.5469175651669502,0.15827296674251556,-0.9254166423343122,-0.16205006139352918,-0.9438277413137257,-0.0297010219655931,0.7275723814964294,0.7602496012113988,-0.9418707662262022,-0.6422592592425644,0.6245895549654961,0.6260887100361288,0.08834546338766813,-0.0348906135186553,0.1510599935427308,-0.2661226438358426,0.8639279752969742,-0.22333533270284534,-0.5506511679850519,0.8767335182055831,-0.9338307832367718,0.755715899169445,-0.5318672466091812,0.262375988997519,-0.49752820981666446,-0.8937400551512837,-0.6672621280886233,-0.3490208154544234,-0.8366859615780413,-0.5854392824694514,-0.9458345770835876,-0.10648640198633075,0.33345220517367125,-0.3777861059643328,-0.7212808635085821,-0.36742147244513035,-0.19492636993527412,0.23110532807186246,-0.8914422318339348,0.6462552486918867,-0.5465449844487011,0.8630252713337541,-0.6714011691510677,0.694272386841476,0.07799465116113424,-0.5168327107094228,0.07378202676773071,0.24374499451369047,0.32013783836737275,-0.3542441437020898,0.09869049116969109,0.9702258054167032,-0.3830384174361825,-0.4130148785188794,-0.1724066990427673,-0.2641069991514087,-0.6750038857571781,-0.16180045204237103,-0.9115610434673727,-0.11822465527802706,-0.9248274411074817,0.40092192124575377,-0.5266614905558527,-0.4849097947590053,0.3355185971595347,-0.06566665740683675,-0.26196217676624656,0.8743546819314361,0.7078381883911788,0.4293654439970851,0.08221809472888708,0.9609544742852449,-0.9673180943354964,-0.5057458728551865,0.13467341242358088,0.6990153174847364,0.08903981372714043,-0.18813794199377298,-0.22477177623659372,0.623392260633409,-0.21933436393737793,0.09093639766797423,-0.3644091570749879,0.5043007880449295,0.5426527364179492,-0.1228250921703875,0.4949380196630955,0.2523670014925301,-0.9080160739831626,0.594676548615098,0.22486189100891352,0.8620375087484717,-0.3201570804230869,0.3025860143825412,-0.25579996267333627,-0.15866788337007165,0.23805850045755506,0.12552658701315522,0.5662915133871138,0.12882419349625707,0.4891375321894884,-0.5482517732307315,0.9890072350390255,-0.9766171406954527,-0.34183150716125965,0.08463177736848593,0.00024173734709620476,0.9811346954666078,-0.8588058450259268,0.3884703693911433,0.9828470982611179,-0.8707146099768579,0.071767074521631,0.1452749208547175,-0.9627060843631625,0.29982220055535436,-0.011814415454864502,0.6344323782250285,0.7787342662923038,0.2396135777235031,0.7243085084483027,-0.4845275222323835,0.8002548129297793,0.20758581208065152,0.204917898401618,-0.27631463995203376,-0.17279490968212485,-0.3410034291446209,0.7643312914296985,0.36789190163835883,-0.9823603834956884,0.43280811607837677,-0.4421276468783617,-0.5171771589666605,0.42456628335639834,-0.5965052368119359,0.3838287419639528,-0.04798221681267023,0.9191338084638119,0.34839603025466204,0.512237096671015,-0.9698066292330623,0.6548750679939985,0.6820512316189706,0.8881600997410715,-0.6813136888667941,0.6885748291388154,-0.48258276376873255,0.96990612661466,-0.023206516169011593,-0.08807410951703787,-0.4681224483065307,-0.7447595181874931,-0.24505692953243852,-0.9225916028954089,-0.9403261179104447,0.5947067607194185,0.338741070125252,0.33530529076233506,0.9239413789473474,-0.06063018925487995,0.021756349597126245,0.14980596536770463,-0.8424838734790683,-0.43128719879314303,0.4715119479224086,-0.7086649951525033,0.5986249293200672,-0.5165911037474871,-0.8205281356349587,-0.28287627873942256,0.7439918732270598,-0.6581352525390685,0.29740859428420663,-0.06636702362447977,-0.35391045548021793,-0.9520175005309284,-0.7372406776994467,0.5920096919871867,0.9547816128470004,0.3179838457144797,0.9756758054718375,0.6507612192071974,-0.49780203122645617,0.832370335701853,0.8725417829118669,-0.05698829982429743,0.765463397372514,-0.1309626274742186,-0.9858646607026458,-0.26811971236020327,-0.9229710018262267,-0.11039076000452042,0.6233252589590847,-0.3114333339035511,-0.3307507885619998,-0.14506067242473364,0.5302098044194281,0.866729118861258,0.2998288683593273,-0.3985849963501096,0.22737098671495914,0.9332916815765202,0.4172800718806684,-0.08617838425561786,-0.4890763806179166,0.09183343825861812,0.6581511469557881,-0.1190079334191978,0.7800534684211016,-0.3826743927784264,-0.28426735661923885,0.6460756189189851,0.10202108602970839,0.9220200530253351,0.5100246085785329,-0.5889653414487839,0.17942621745169163,-0.6065336372703314,-0.9261729656718671,-0.45008661365136504,0.5589932748116553,0.9076069807633758,0.38300003204494715,-0.4142017704434693,-0.412186271045357,-0.6823846590705216,0.09206208912655711,-0.5456686862744391,-0.26850870065391064,0.05987844569608569,0.49089764384552836,0.8093496127985418,-0.786077858414501,0.6858449601568282,0.24220180977135897,0.4036019593477249,0.3587103080935776,0.9626011555083096,0.656539345625788,0.25611330941319466,0.2952716345898807,-0.10911579104140401,-0.1925414283759892,-0.24333385145291686,-0.7619127910584211,-0.7321537113748491,0.8622953039593995,-0.9985747053287923,-0.36427117977291346,0.46635330747812986,0.3816949031315744,0.2943058665841818,-0.5376153853721917,0.41603093687444925,0.03808362549170852,0.5053750299848616,0.15292788110673428,-0.36403391137719154,-0.7016228046268225,-0.8132089171558619,0.1363923684693873,0.012624317780137062,0.9677250008098781,-0.8711468675173819,0.4125484856776893,-0.17370533430948853,-0.8278295989148319,0.7266143742017448,-0.9374161874875426,-0.8003081111237407,0.7849897397682071,-0.9216605643741786,0.7307273270562291,0.14565460057929158,0.786641301587224,0.1898498386144638,-0.44409514172002673,-0.5252723600715399,0.4980527376756072,0.9782071919180453,0.8251397111453116,-0.4046433512121439,0.7172216475009918,-0.31850888207554817,-0.6681163581088185,0.12088836915791035,0.09644995955750346,-0.658098223619163,0.9771950910799205,-0.13304699445143342,-0.5694200564175844,0.22852678317576647,-0.6381753324531019,-0.8596320645883679,-0.9341667057015002,-0.37698209565132856,-0.407889049500227,0.5738508617505431,0.477063262835145,-0.013791527599096298,0.4069061279296875,0.430255105253309,-0.814716539811343,0.8578611188568175,0.7858412051573396,-0.14746614545583725,-0.6153601841069758,-0.6334159290418029,-0.9064137763343751,0.6046877349726856,0.36298676021397114,-0.5514966631308198,-0.5058286325074732,0.5425299243070185,-0.6369017828255892,-0.5678365500643849,-0.31875074561685324,-0.2003286862745881,-0.7736401529982686,-0.42571863159537315,-0.2944050710648298,-0.6806181431747973,0.8833361221477389,-0.6183324572630227,-0.8289173468947411,0.6373954610899091,-0.36766253830865026,-0.3003652370534837,-0.04736328683793545,-0.13725522486492991,0.38881435757502913,-0.7874818197451532,-0.4649011557921767,0.4004090600647032,-0.8184869047254324,-0.6847971905954182,0.3465202720835805,-0.7327921302057803,0.3789748130366206,0.4025368047878146,0.2933402741327882,0.39643057296052575,-0.21268654894083738,-0.5287274359725416,-0.3692078050225973,-0.37721497332677245,0.004732889123260975,-0.4529251572676003,-0.6621896559372544,0.3183001787401736,0.14953880291432142,0.22747031785547733,0.2612882135435939,-0.36979987705126405,-0.4529864629730582,0.5689693950116634,-0.7046510186046362,0.8253003167919815,-0.6485165618360043,0.820512589532882,-0.6695397533476353,-0.9068076740950346,0.6886650030501187,0.5142283290624619,0.4870159416459501,-0.1217564307153225,-0.28382045309990644,-0.2871811673976481,-0.32412916980683804,-0.5335437571629882,0.7150028920732439,0.4152677422389388,0.6541549270041287,-0.4905072534456849,-0.16226653195917606,0.36071596667170525,-0.08770611695945263,0.8487470131367445,-0.646714580245316,-0.28403338603675365,0.8826882415451109,-0.2992768199183047,0.717702086083591,-0.1314110578969121,0.010942899622023106,-0.26110961148515344,0.9410564620047808,-0.33075886173173785,0.0020957300439476967,0.7297263527289033,0.5986150680109859,0.13409637566655874,0.021992299240082502,0.23176960740238428,0.1469519091770053,0.7146542323753238,0.5461061750538647,-0.7243225784040987,-0.9512987826019526,0.20233342377468944,-0.6816480727866292,-0.5261445175856352,-0.7426653583534062,-0.38882819283753633,0.2878015819005668,0.6413580509833992,-0.6588883590884507,0.6691311942413449,-0.10535426950082183,-0.6376961013302207,-0.048344050999730825,0.20967287197709084,0.06581686902791262,-0.47865139320492744,-0.1325378487817943,-0.19931698450818658,0.749733027536422,-0.6818840759806335,0.9696077662520111,0.4815443800762296,0.3231698707677424,0.9095811368897557,-0.5664140395820141,-0.4260958721861243,0.47024239879101515,-0.1351433778181672,-0.5223443415015936,-0.6919941585510969,-0.19398546079173684,-0.15797435166314244,-0.39372303150594234,-0.018627742305397987,-0.6847757645882666,0.5750959208235145,-0.41359741473570466,0.9196060160174966,0.3963825856335461,-0.4516381365247071,0.7982308911159635,0.776910001412034,-0.3413738366216421,0.3696329379454255,-0.44479971984401345,0.5688183456659317,0.3503835923038423,0.5357441427186131,0.9386411015875638,0.046841392293572426,0.6949285320006311,0.7238030354492366,0.49734153458848596,0.8974880054593086,-0.2977162403985858,0.906914500053972,0.5152118043042719,0.8213270283304155,0.8783380724489689,0.9996501663699746,0.9689184734597802,-0.16232790052890778,-0.36774849565699697,0.6395924175158143,-0.5776930237188935,-0.5182117172516882,0.6119626332074404,0.5879821320995688,-0.15128369443118572,0.7644696142524481,0.4851985168643296,0.8447393532842398,-0.7398814880289137,0.41785656148567796,0.435463719535619,-0.5511517482809722,-0.8574199620634317,-0.6578408628702164,-0.4727184888906777,-0.8148833974264562,0.5652024918235838,-0.5892981295473874,0.5418561091646552,-0.23670044727623463,-0.33444700110703707,0.11139861634001136,-0.3403759361244738,-0.8846095111221075,0.1463399468921125,-0.22267695469781756,0.5219057099893689,0.356974761467427,0.7674806932918727,-0.6061295457184315,0.7117421440780163,-0.2276886566542089,-0.5591596998274326,0.8814197448082268,0.8401716551743448,0.3810592801310122,-0.4234193875454366,-0.6245970735326409,-0.4588953284546733,0.2003416856750846,0.3177063912153244,0.9308117618784308,-0.17163036251440644,0.31444337544962764,-0.9479195480234921,-0.006406160071492195,-0.967009553220123,0.6687434427440166,0.29896808695048094,-0.47262478340417147,0.4394343555904925,-0.7101613353006542,0.6697332402691245,-0.8579744272865355,-0.3362989164888859,0.5309094372205436,-0.8885854086838663,0.3441461296752095,0.8343592938035727,-0.5692376238293946,-0.01250900560989976,-0.0076558529399335384,-0.10382617451250553,0.21663992665708065,-0.20013196067884564,-0.533305190037936,-0.9537665140815079,0.3385467240586877,-0.31399105302989483,0.41133398888632655,-0.3217908716760576,-0.7633763891644776,0.2336123948916793,0.9011775157414377,-0.5837914450094104,-0.5741229709237814,0.8648587502539158,0.5591680952347815,-0.15528591722249985,0.39018218452110887,0.24009036598727107,0.052659643813967705,-0.004022365901619196,0.11244402825832367,0.7735224682837725,0.14802067074924707,0.5989356762729585,-0.401505168993026,0.2997041246853769,-0.027612754609435797,-0.11594190960749984,0.13377801282331347,-0.241686194203794,-0.18726181518286467,0.4373894352465868,-0.753377481829375,-0.9407271388918161,0.6858356697484851,-0.8113552443683147,-0.7221335237845778,-0.9394172942265868,-0.5931896562688053,-0.2518074964173138,0.721184445079416,0.32580110477283597,-0.460772433783859,0.9052775586023927,-0.38001657323911786,0.7645810428075492,-0.16780457319691777,0.47228254098445177,-0.18920242879539728,-0.7977230646647513,-0.6552220117300749,-0.9632379719987512,-0.5558161055669188,-0.2814067625440657,0.049462910275906324,-0.3307928810827434,0.9670055513270199,-0.15991185745224357,0.5455848057754338,0.8934741397388279,0.21461550425738096,0.7651513023301959,0.70419946545735,-0.11397824808955193,0.5988495340570807,-0.975902246311307,-0.03176659299060702,-0.25420369766652584,-0.25710735376924276,-0.4443819406442344,0.5394811425358057,-0.1651934809051454,0.649693057872355,0.2872062176465988,-0.7022742484696209,-0.2049604132771492,0.9244250971823931,-0.20672503393143415,-0.08282906236127019,0.10442179720848799,0.44319503335282207,-0.6131894481368363,0.7056380109861493,0.0029753712005913258,0.4283697968348861,-0.022400885820388794,-0.5920179742388427,-0.5610406533814967,0.03074969444423914,0.5897802375257015,-0.42319918470457196,-0.9689773702993989,-0.8087496547959745,0.07156644761562347,-0.2878028298728168,-0.5103624598123133,-0.5986385708674788,0.6707538878545165,0.9191219448111951,-0.9672855501994491,-0.08587525459006429,-0.19029209529981017,-0.8231749511323869,-0.7618558979593217,-0.3510709721595049,-0.4287688503973186,0.5686581474728882,-0.30843602400273085,-0.7861369047313929,-0.42639504186809063,0.7361796326003969,-0.27698665112257004,0.30913966707885265,-0.297640566714108,-0.7293060598894954,-0.8173310784623027,-0.8370545003563166,-0.7731665764003992,0.6942709153518081,0.774869536049664,-0.23270896822214127,-0.26625213166698813,-0.8755011395551264,0.5809299703687429,0.18145282845944166,0.3020226266235113,0.1729139885865152,0.7098558405414224,0.264546565245837,-0.2711919089779258,-0.9684432037174702,-0.20331447711214423,-0.5887838955968618,-0.7717951214872301,-0.3347449158318341,-0.768808601424098,-0.28272689366713166,0.054244183003902435,-0.9148205169476569,-0.6090028407052159,0.45647470699623227,0.2565423008054495,0.30279919505119324,0.8826825553551316,0.13438638905063272,-0.8168563423678279,0.7239152360707521,-0.45412901043891907,-0.735871656332165,0.1921764612197876,0.6725716916844249,0.9281690465286374,0.24608067143708467,0.962296528276056,0.6838372591882944,0.7953638201579452,-0.16874075029045343,0.22286499990150332,-0.8712109350599349,0.10947126802057028,0.22256760159507394,-0.4852628284133971,-0.5238314066082239,-0.2909817211329937,-0.03984182374551892,0.08646303368732333,0.3887064247392118,-0.2059370120987296,0.8576855007559061,-0.6183936600573361,0.4058789084665477,0.7580411504022777,0.6322054420597851,-0.8939009490422904,-0.8712947340682149,0.029639847576618195,-0.043591668363660574,0.2248021182604134,0.04463627515360713,0.7781208530068398,-0.659978742711246,0.3686425406485796,0.19910641387104988,0.3012058618478477,0.3626966676674783,-0.2162182368338108,-0.25021294923499227,0.9954070588573813,-0.48226214945316315,-0.23086019046604633,0.8829998262226582,0.5812233737669885,0.14155240496620536,0.13640397926792502,-0.9971549902111292,-0.6092759035527706,0.4736794359050691,-0.32038001948967576,0.08469309331849217,-0.43490872345864773,-0.2616665009409189,-0.06768244644626975,-0.6901315851137042,0.8134047263301909,-0.27342831483110785,0.17243615351617336,0.7018278758041561,0.1375889042392373,-0.6522038811817765,0.17759182443842292,0.23889591032639146,0.14033221313729882,0.5307618752121925,-0.11383381206542253,-0.6242533628828824,0.8792462479323149,0.9539294713176787,0.12775017553940415,-0.5113424528390169,0.47109793685376644,-0.922393430955708,0.7786182155832648,-0.9685101499781013,0.25807427428662777,-0.03665347630158067,0.3736666375771165,0.8912363210693002,-0.6581972362473607,-0.5788076962344348,-0.7745248069986701,-0.592148095369339,-0.4335307329893112,0.6269712531939149,0.9064842709340155,-0.2876968649215996,0.667277502361685,-0.5346221467480063,-0.8020822843536735,-0.6158385542221367,-0.9441997748799622,0.7166771441698074,0.7470874288119376,0.6832738295197487,0.7142768064513803,0.8916723872534931,-0.26501444773748517,-0.19478827947750688,-0.8651905031874776,0.6865281388163567,-0.7755760685540736,-0.3911320739425719,-0.6082512997090816,0.4949881318025291,-0.45422655437141657,0.1782706119120121,-0.14837614307180047,-0.7078768108040094,0.5218521389178932,-0.4475038694217801,-0.541731973644346,-0.6870598369278014,0.4344409010373056,0.5078925401903689,-0.9482649522833526,-0.5903130010701716,-0.3400479657575488,-0.505121388938278,0.43287125788629055,-0.4378100805915892,0.09666965436190367,-0.17886711098253727,-0.9098587124608457,0.01726909587159753,0.7195377671159804,0.5200553559698164,0.9606391293928027,-0.46318768663331866,0.24566994048655033,0.18423339957371354,-0.3728737332858145,-0.7022904022596776,-0.12201549811288714,-0.36169132916256785,0.8158717919141054,-0.8412960828281939,-0.7577112829312682,-0.9892057096585631,0.6394259766675532,-0.0909173940308392,-0.9402478979900479,0.34906485537067056,-0.3870784966275096,-0.05286668660119176,-0.8050507358275354,-0.39802819257602096,0.02989520411938429,0.2870934153907001,-0.9977640663273633,0.4942977628670633,0.4041102468036115,-0.88563302019611,0.8902874896302819,-0.8096866365522146,-0.3341186731122434,-0.8133180201984942,-0.167914648540318,0.2676398232579231,0.7950425390154123,-0.48550951294600964,-0.03377926396206021,0.39138591662049294,-0.13626547204330564,0.5622331653721631,-0.047050395514816046,0.18276349222287536,-0.4919314971193671,-0.7103171991184354,-0.8691792236641049,-0.8241109461523592,-0.8876974089071155,0.751239713281393,-0.7394834607839584,-0.775601249653846,-0.33828672766685486,-0.616069633513689,0.17820970294997096,0.09229420311748981,0.6918755886144936,-0.6545110759325325,0.10412704711779952,0.12679312797263265,-0.6952468352392316,-0.4442309536971152,-0.9038505884818733,0.2513997508212924,0.51662443485111,-0.0074952454306185246,0.4207885996438563,0.38791783805936575,-0.009616691619157791,-0.35568590089678764,0.6315862890332937,0.33865851117298007,0.6182985943742096,-0.8799731861799955,-0.23923740861937404,-0.29374587116762996,0.34614418214187026,0.8499716171063483,0.5947257620282471,0.4285623775795102,0.5568818501196802,0.9896442759782076,-0.8824424399062991,0.34656008798629045,-0.15241698129102588,-0.23337908601388335,0.7808345388621092,-0.5456270631402731,-0.29081864235922694,0.13256909046322107,-0.7891673715785146,0.3154319925233722,-0.7876074048690498,0.8567418549209833,-0.5831094272434711,-0.195174444001168,-0.19127388950437307,-0.35263937525451183,-0.3581493366509676,0.5226552556268871,0.9359062295407057,0.5534894927404821,0.49496179865673184,0.18071763962507248,-0.788461150135845,-0.37615174893289804,0.7524640946649015,0.8482267302460968,-0.31359871523454785,-0.8351566432975233,-0.9193697120063007,-0.8322652503848076,-0.966838716994971,-0.8789954651147127,0.2958644307218492,-0.829108152538538,-0.8088101437315345,-0.8164556259289384,0.7911774292588234,0.5680916393175721,-0.9942692746408284,0.48105732118710876,0.9713937304913998,0.051199589390307665,-0.8794912989251316,0.19404163863509893,0.3137186672538519,0.44245545472949743,-0.7280017384327948,-0.6441463539376855,0.14661676157265902,0.7814418589696288,-0.06967881741002202,0.07668097550049424,0.8164235590957105,0.18710852460935712,0.9491987572982907,0.2822872004471719,0.28522829804569483,-0.5866567776538432,-0.11101171374320984,0.39598456490784883,-0.3291884697973728,-0.19928835006430745,-0.0831166566349566,-0.1962485802359879,-0.6655695606023073,0.4248710600659251,-0.4967199666425586,-0.16832255339249969,-0.7059684339910746,-0.9114863937720656,0.4202452418394387,-0.9767376789823174,-0.341540620662272,-0.812980271410197,-0.4136850517243147,-0.2073323023505509,-0.19727338943630457,0.6629962492734194,0.09702257812023163,-0.533661728259176,0.8763320418074727,-0.3512278785929084,-0.593300165142864,-0.21032907534390688,0.4785323119722307,0.03581075230613351,-0.6930681355297565,-0.8798629967495799,0.9140816018916667,-0.1040053959004581,-0.4275088105350733,0.040384397841989994,0.9638950899243355,0.02716191951185465,-0.9841718561947346,-0.7541916402988136,-0.25929859234020114,-0.6857756050303578,-0.9565555490553379,0.8323922944255173,-0.41077516321092844,0.8136479300446808,-0.8556683589704335,-0.565572730731219,-0.9438864476978779,0.04316516313701868,0.7022802857682109,-0.15243690460920334,-0.14199104579165578,-0.39145868783816695,0.17679579509422183,-0.1721737221814692,-0.2755841859616339,-0.7872767909429967,0.570489376783371,-0.3838447043672204,0.662834404502064,-0.9822917976416647,-0.24291100958362222,-0.8293658592738211,-0.9777403208427131,-0.969385911244899,0.408989820163697,0.26792357489466667,-0.5832460834644735,-0.028207593597471714,-0.8220486901700497,-0.14858710998669267,0.8196183848194778,0.19190817000344396,0.6821959959343076,0.6115828636102378,-0.9367530611343682,0.5990520287305117,-0.23916053166612983,0.653362047392875,0.9643581039272249,-0.26867257338017225,0.6369781056419015,0.28513518860563636,-0.8476380882784724,0.23065141448751092,-0.3413523994386196,-0.90378194488585,-0.8382401126436889,0.3610385428182781,-0.5700529431924224,-0.8539929329417646,-0.27037207456305623,-0.8859264547936618,-0.1720138220116496,0.33934261417016387,-0.10213874652981758,0.55638532852754,-0.48036657087504864,0.8902617911808193,-0.48676572646945715,-0.6210471661761403,-0.0770707055926323,0.8710222695954144,0.945546296890825,0.617760076187551,0.4330544527620077,-0.24691663729026914,0.39508219668641686,0.4923688527196646,0.9522313810884953,0.05270828166976571,0.15581840416416526,-0.9533068793825805,0.27230815729126334,0.8383780871517956,-0.3415162661112845,0.5678416546434164,0.22189350053668022,-0.7986519285477698,-0.27144030667841434,0.3554323632270098,-0.9516979157924652,-0.47640438796952367,0.2214547055773437,-0.9617534386925399,-0.09897479228675365,0.7498494777828455,-0.6344567709602416,-0.06654952699318528,-0.9472946156747639,-0.17605475848540664,0.4810703522525728,0.5244738510809839,-0.9648215821944177,-0.23796832095831633,-0.5280872229486704,-0.5761560192331672,-0.8462247322313488,-0.037370833568274975,0.6816070810891688,0.6967964521609247,0.5524516571313143,-0.9666511877439916,-0.2903029778972268,0.8614873290061951,0.5088939359411597,-0.37767151836305857,0.11740947375074029,-0.8738320879638195,0.31943689519539475,-0.3190550608560443,-0.2152734361588955,-0.48242917424067855,0.0724684139713645,0.6860398347489536,0.8947086720727384,0.5063982424326241,-0.5645624296739697,-0.4987359242513776,0.7475558971054852,-0.5443947883322835,-0.2633509775623679,0.25075491331517696,0.3103857710957527,0.4419211596250534,-0.6136364932172,-0.4172909134067595,-0.6318721333518624,-0.04417953686788678,0.34964402904734015,0.1279839389026165,0.04383530793711543,0.9119648239575326,-0.9350612466223538,-0.16687304666265845,-0.5038936883211136,-0.22227372508496046,-0.28355373349040747,-0.24582980386912823,-0.9485799735412002,-0.47665990376845,-0.3506340584717691,0.4563347129151225,0.6237810924649239,0.5435396647080779,0.47682868782430887,-0.7094804826192558,-0.2913516955450177,-0.30030020186677575,-0.0758061632514,-0.07849244773387909,0.8973672003485262,-0.5835760715417564,0.13937960844486952,-0.884409652557224,-0.4861063011921942,0.24362908210605383,0.9583174176514149,0.9502126951701939,-0.3768882267177105,0.6659946171566844,-0.3996468735858798,-0.7600258383899927,0.2935641994699836,0.7308107698336244,0.649319892283529,-0.931726526003331,-0.2548289871774614,0.000540297944098711,-0.2567806728184223,-0.9423756408505142,0.2700988999567926,-0.25448312843218446,-0.046371768694370985,-0.4091944443061948,-0.6340142134577036,0.871025123167783,-0.8105410072021186,0.9632752710022032,0.10990943247452378,0.5997181087732315,-0.9532628236338496,0.5284105679020286,0.9053743630647659,-0.8275650618597865,0.45114442612975836,0.851531476713717,0.2268531769514084,0.23804163141176105,-0.8159255720674992,0.08567834924906492,0.42667078133672476,0.16648144973441958,-0.43120569083839655,-0.05370581476017833,-0.5311967986635864,-0.13956512929871678,-0.7544813570566475,0.8800316583365202,0.020827372558414936,-0.22286865999922156,-0.09841433819383383,-0.17199037643149495,-0.11127941636368632,-0.7536916909739375,-0.1493432936258614,0.2550968173891306,-0.6967435069382191,0.17580212652683258,-0.7045321697369218,0.9620251804590225,0.766818180680275,0.39398881373926997,-0.8584352498874068,-0.9679610328748822,-0.06863361364230514,0.1393070206977427,0.7329080477356911,0.9877302804961801,0.030312278773635626,0.15060120169073343,0.8693761159665883,0.394005146343261,-0.9154407852329314,0.12807247089222074,-0.15269240969792008,-0.4813609472475946,0.8622991885058582,0.3867356777191162,0.2643646951764822,-0.6567137963138521,-0.6422339119017124,0.8392082690261304,-0.4448606404475868,-0.22443866403773427,0.8287952174432576,0.30236005736514926,0.7401002324186265,0.9508465598337352,-0.76089369924739,0.1525065810419619,0.8451539408415556,-0.3988633845001459,-0.5315211773850024,0.35172354336827993,-0.8829545257613063,-0.4169512139633298,0.5360111128538847,-0.13292029732838273,-0.10403441358357668,-0.9292834773659706,0.9259812026284635,-0.48798886546865106,0.4785657119937241,0.2071467931382358,-0.22061187447980046,-0.09228544402867556,0.48622247483581305,0.2183240158483386,0.8783285883255303,-0.7118810042738914,0.15678955428302288,-0.564338662661612,0.19911556504666805,-0.6395495124161243,0.9076296198181808,-0.7859056596644223,-0.0887071960605681,0.2964238217100501,0.9532135152257979,0.6065246574580669,0.2647372609935701,0.36458525201305747,0.4578452850691974,-0.293239064514637,0.5414278265088797,0.18863630527630448,-0.5948376664891839,0.5725152618251741,-0.2965546050108969,-0.3092271564528346,0.918489336501807,0.041507999412715435,0.3300743871368468,0.5557630364783108,0.9439170858822763,-0.017845462076365948,-0.7626471160911024,0.136545873247087,-0.21355173457413912,-0.6577066131867468,0.550227188039571,-0.8025723942555487,-0.5423825946636498,-0.7094164988957345,-0.19830306572839618,0.3954022293910384,-0.6651085196062922,0.22933051735162735,0.022299034986644983,0.9962099827826023,-0.13904953422024846,-0.27496139239519835,-0.6923997229896486,-0.2398911057971418,-0.8213924206793308,0.10782648995518684,-0.9204646460711956,0.6172512280754745,0.6923471866175532,-0.5844654501415789,0.5116067011840641,0.3126259804703295,0.29373512836173177,0.25713253393769264,0.3944982420653105,0.8982572192326188,-0.0969059239141643,0.5322908642701805,0.5770719195716083,-0.3902110895141959,0.05478599015623331,-0.24788211612030864,-0.26638987474143505,-0.8985138321295381,0.987816056702286,-0.28652340080589056,-0.7161313164979219,0.42311802925541997,-0.31289541348814964,-0.7175089973025024,-0.22172541171312332,-0.9377018632367253,-0.3127626786008477,-0.7432545074261725,-0.4512166026979685,0.6081535927951336,0.9542495585046709,0.9687622175551951,-0.14307670574635267,-0.7090978301130235,0.32701314333826303,-0.5074319462291896,0.11713965144008398,-0.7856668126769364,-0.009147732518613338,-0.3311926522292197,-0.5382837555371225,0.8276849030517042,-0.09696514066308737,0.7581605678424239,-0.3601436265744269,-0.3322374918498099,0.21967957727611065,-0.7395662283524871,-0.8915444449521601,0.8949778266251087,-0.38828691747039557,-0.1130026220344007,0.6803324841894209,-0.7530037215910852,0.5456637991592288,0.5764745501801372,-0.4330141809768975,0.4568063444457948,-0.06252962071448565,-0.3092629751190543,0.5432939222082496,-0.22096437867730856,0.4394854581914842,-0.9953782837837934,-0.33973732544109225,0.47030840162187815,0.9852443020790815,-0.35025486210361123,-0.21385892340913415,0.5661741024814546,0.6985683930106461,-0.6907032052986324,0.06418320257216692,0.716571819037199,0.7936225272715092,0.09059369377791882,0.8196465061046183,0.6730186543427408,-0.6658429447561502,-0.5100803356617689,-0.5607995423488319,0.7034226101823151,-0.7984845223836601,-0.5032014809548855,-0.34784815227612853,-0.7269049705937505,0.021526476833969355,-0.9917098009027541,0.2146217660047114,0.3689859095029533,0.06868092762306333,0.03350000409409404,0.07774487743154168,-0.16858215956017375,-0.47469953866675496,0.17380294762551785,0.18394078500568867,0.9496984076686203,-0.17207170743495226,0.09633020684123039,0.09646263625472784,0.8808971415273845,-0.129706050734967,-0.8154630688950419,0.2168413931503892,0.8464171295054257,-0.4350672126747668,-0.10373760759830475,-0.1530205518938601,-0.5860794959589839,0.7275321264751256,-0.24777738796547055,-0.5668727201409638,-0.882571944501251,0.7815915602259338,-0.562218879815191,0.6446467787027359,0.9281634395010769,0.04953880934044719,0.5124465730041265,-0.9467377560213208,-0.055917876306921244,0.5104132313281298,0.25836882879957557,0.14031219854950905,0.2290798188187182,-0.4133509639650583,0.9596585175022483,-0.6752875722013414,-0.4179010191000998,0.5345223611220717,-0.35190293565392494,0.7934179161675274,0.6076910211704671,0.9316401025280356,-0.09283748269081116,0.050022670067846775,0.3674736353568733,-0.13868121523410082,0.03223644569516182,0.15575058246031404,-0.9821935049258173,0.13069964852184057,0.3952983277849853,-0.09192702360451221,0.9738856279291213,-0.8862808109261096,0.4235628289170563,0.055579769890755415,-0.5619234782643616,-0.8309022844769061,0.8232779507525265,0.19775155885145068,0.17139105824753642,0.3788444362580776,0.4160313601605594,0.7891274546273053,0.8720342288725078,0.10237177647650242,0.6293026623316109,0.3652302036061883,-0.9969123862683773,-0.935634717810899,-0.13442498492076993,-0.07251058099791408,0.26278119813650846,0.7767124688252807,-0.8038319279439747,0.27454828983172774,0.3737715142779052,-0.36166580440476537,0.22968444926664233,0.23118764767423272,-0.4610355757176876,0.9700808036141098,0.6092543271370232,0.34320512088015676,0.22050322638824582,0.7247547432780266,-0.16686928132548928,-0.732687552459538,-0.6950334240682423,0.05514282686635852,0.019113801419734955,0.581620117649436,0.6595760989002883,-0.9821654097177088,-0.02862156182527542,-0.9441564604640007,0.3200097531080246,0.03460093215107918,0.0893176356330514,0.4646899849176407,-0.9550357148982584,0.8560586697421968,0.8523230622522533,0.7708416897803545,-0.3735509538091719,-0.3571051717735827,0.40443093376234174,0.008668392896652222,0.5134633928537369,-0.3432518122717738,0.11202881159260869,-0.7653234344907105,0.9338669902645051,-0.0056066992692649364,0.17679288750514388,0.5171072636730969,-0.06951689859852195,-0.995123561937362,-0.15157927107065916,-0.9272084888070822,-0.9339505946263671,0.03302999027073383,-0.49737646244466305,-0.5313340141437948,0.8139185765758157,-0.025624058209359646,0.4393628113903105,0.6815734347328544,-0.003494227770715952,0.2926582396030426,-0.4599643563851714,-0.8097689184360206,0.8642671690322459,0.16786740580573678,-0.37106749787926674,0.9695186410099268,-0.2431020187214017,-0.5711172013543546,0.4533726223744452,0.9004600862972438,-0.8948450093157589,-0.4325021952390671,-0.8799478043802083,0.4480900727212429,-0.28272395534440875,-0.45178831508383155,-0.30980483582243323,-0.24016585294157267,0.33723931200802326,-0.17070783162489533,0.2670666235499084,-0.598115558270365,0.547742223367095,-0.891483758110553,-0.1581981759518385,-0.8158015934750438,-0.5156462802551687,-0.4546341556124389,0.8618466760963202,-0.5756686679087579,-0.8650815202854574,0.9504002053290606,0.16083911480382085,-0.2109505464322865,0.4800273315049708,-0.25388002023100853,0.2469750507734716,-0.7919085808098316,-0.8875996228307486,-0.11960301315411925,-0.9266379433684051,0.30313820904120803,-0.14291708264499903,0.2971563055180013,-0.41547340573742986,-0.9047554666176438,-0.6588059971109033,0.0951569564640522,0.7559069711714983,-0.8458233755081892,0.2773005091585219,0.9049361739307642,-0.23199986666440964,0.42188899824395776,0.036292355973273516,-0.06131186755374074,-0.519212166313082,-0.013613086193799973,0.4617093992419541,0.4388001379556954,-0.7384656025096774,-0.023450784385204315,0.4175204890780151,-0.249230760615319,-0.3126507746055722,-0.8422211059369147,0.6517724376171827,-0.18600562727078795,-0.17086338577792048,0.09439777862280607,0.3514535971917212,-0.029398001730442047,-0.6955866804346442,0.7756950529292226,-0.9336228189058602,-0.9670177195221186,0.5764118507504463,-0.7438342436216772,0.0837525431998074,-0.03651110175997019,-0.13167877355590463,0.6776740588247776,-0.5224681715480983,-0.24714417569339275,0.5252720657736063,-0.900211364030838,0.344167354516685,0.8598618963733315,-0.19206104427576065,-0.4394016833975911,0.9274172075092793,0.5660340557806194,-0.01313166506588459,-0.15133108291774988,0.4967983183450997,0.26040151296183467,0.25793363992124796,0.7677752035669982,0.41354719875380397,-0.07062205299735069,-0.8739963662810624,-0.15804099524393678,0.18401918653398752,-0.9670952586457133,0.15885163797065616,0.9806351512670517,-0.1251384080387652,-0.6969978199340403,-0.2909119976684451,0.812383736949414,0.411117326002568,0.6449457984417677,0.6185445999726653,-0.8277967083267868,-0.1287694894708693,-0.5170622975565493,-0.5500258402898908,0.4686563890427351,-0.37348565366119146,0.2294308296404779,-0.9956850134767592,-0.717336623929441,-0.6880683186464012,-0.7381047732196748,-0.8507851460017264,0.718313307967037,-0.5830994900316,-0.5518212988972664,-0.26576896803453565,-0.9173428239300847,-0.8772150464355946,-0.40767976315692067,-0.8376118130981922,0.9749065120704472,-0.2564397994428873,-0.11772322095930576,-0.7324630138464272,0.3360112691298127,-0.3266891255043447,-0.4714789646677673,0.9430213556624949,0.7361686872318387,0.936265716329217,0.5240291426889598,0.495478926692158,-0.5460126791149378,-0.41135114058852196,0.27649839455261827,-0.09887809213250875,-0.21978479344397783,0.530148749705404,0.9825345957651734,-0.5045465561561286,-0.5367898917756975,0.3081329115666449,-0.2520116427913308,-0.006778596434742212,-0.02204169426113367,-0.7979249465279281,-0.8573548486456275,0.5519293094985187,0.6750188586302102,0.01244231779128313,-0.8215944329276681,0.6675386060960591,0.7090664030984044,0.7885254961438477,0.3073431313969195,0.31049939431250095,-0.0882841250859201,0.1589506403543055,0.7501960322260857,-0.8817153135314584,-0.6262746867723763,-0.6296273656189442,-0.0393001539632678,-0.8449375461786985,-0.6084627802483737,-0.10955457156524062,0.5819032727740705,0.28831977397203445,0.7407463137060404,-0.6139358268119395,-0.9888262385502458,0.9684760868549347,-0.9824266266077757,-0.7072477252222598,0.9973123245872557,0.06623185519129038,0.9402746465057135,-0.06465266784653068,0.05102261807769537,-0.962697780225426,-0.30680239386856556,0.5248866779729724,0.2782281441614032,0.15517298132181168,-0.49102542316541076,-0.2683005281724036,0.3680935953743756,-0.537793087773025,-0.5554366544820368,-0.528909613378346,0.3365150196477771,0.0588994431309402,-0.268478911370039,0.3966319430619478,0.8713604528456926,0.029518548399209976,0.608494262676686,0.12604461004957557,0.2591490591876209,-0.4984642784111202,-0.6634353534318507,0.3950359709560871,0.26950233802199364,-0.002574324607849121,-0.9391781133599579,-0.9572388511151075,-0.150079941842705,0.6051456490531564,0.18641719175502658,-0.8542497265152633,-0.3212289437651634,0.03871378256008029,0.7695562839508057,-0.6846709279343486,-0.8640538994222879,0.3359585562720895,0.9180593923665583,0.0929682026617229,0.16645963350310922,0.8505674940533936,0.2053574430756271,-0.854764667339623,-0.5275712483562529,-0.4574390039779246,0.6848352276720107,0.7413167380727828,0.0921381744556129,-0.3494923235848546,0.43765431083738804,0.8105963757261634,0.5378538588993251,0.6527574937790632,-0.5380942649208009,-0.08781493548303843,0.20286984834820032,-0.7837696401402354,0.7979456963948905,0.49768851744011045,0.44830301124602556,-0.41333550307899714,-0.2963001965545118,0.9581565801054239,-0.8835000419057906,0.22678633825853467,0.5156728639267385,0.6736812223680317,-0.7182845626957715,-0.5046166912652552,-0.692501166369766,-0.6266156188212335,0.5733760688453913,-0.16441484354436398,-0.37487892620265484,0.08597498899325728,0.21038896683603525,-0.6514482349157333,-0.8534541339613497,0.008637402206659317,0.8812622367404401,0.660157457459718,0.12409553630277514,0.8136916444636881,-0.7792703146114945,-0.9104257659055293,0.516978763975203,0.8888806621544063,-0.930653402581811,-0.3478852082043886,-0.7837207964621484,-0.18722360348328948,-0.39406537264585495,-0.9209378203377128,-0.6208889475092292,-0.31453865114599466,0.7864988255314529,0.3423033715225756,0.8104457636363804,0.40366996824741364,-0.45138067100197077,0.3355574174784124,0.3291051648557186,-0.6972496383823454,0.32119674421846867,-0.9115257635712624,-0.02807173691689968,-0.6076461048796773,0.5004401202313602,-0.4431046866811812,0.01671360293403268,0.14086522022262216,-0.25859056413173676,0.7622669851407409,-0.3669023453257978,0.2747677038423717,0.6516098305583,0.9639349104836583,0.26556202629581094,0.96965123526752,-0.0010239086113870144,0.8260740297846496,0.19844537181779742,0.5511083113960922,-0.3182721803896129,-0.9814930739812553,0.7896136660128832,0.8685699761845171,0.6636478616856039,0.8077259329147637,0.8195152529515326,0.08612522669136524,-0.49307289253920317,0.665857792366296,0.310924434568733,-0.6455734251067042,-0.27547290548682213,-0.9709251392632723,0.49962411308661103,-0.41720305383205414,0.06366409780457616,0.4020629278384149,0.005267857573926449,0.13961738720536232,-0.34242967376485467,0.8232164070941508,0.22589734615758061,-0.22720958292484283,0.9752168417908251,-0.03677506186068058,-0.8696080278605223,-0.44940330972895026,0.216474040877074,0.9463204583153129,-0.13152386341243982,0.798437672201544,0.5230528432875872,0.6433679610490799,-0.3372676088474691,0.028330028522759676,-0.9907374759204686,0.7236256571486592,-0.7480039740912616,-0.7346535744145513,-0.13608714984729886,0.3313731891103089,-0.0017008790746331215,-0.17912776907905936,0.8698112894780934,0.050808757077902555,-0.13138647144660354,0.6238573207519948,-0.4544867812655866,-0.5730605106800795,0.7596118631772697,-0.5621079397387803,-0.15116757433861494,-0.454672631341964,-0.15102439234033227,0.6908939862623811,-0.1446215338073671,-0.20594316581264138,-0.7498329244554043,-0.4176060766912997,-0.1368134543299675,0.8853831668384373,0.4918690570630133,-0.4439182346686721,-0.9717602911405265,-0.7013017619028687,-0.7694460889324546,-0.6727995499968529,-0.5104937688447535,-0.40688906190916896,0.7620102064684033,0.5679140002466738,0.7437661280855536,-0.3474681763909757,0.7471039844676852,0.9166347626596689,-0.6319797057658434,-0.5231870575807989,0.579504247289151,0.39147917786613107,-0.7936105001717806,-0.5118192601948977,-0.006994984112679958,0.841402146499604,0.28900035517290235,0.7139724837616086,0.9229339309968054,0.07931438414379954,0.16574994381517172,-0.7613842622376978,0.7973609548062086,0.8802778599783778,0.0720946560613811,-0.9123966884799302,-0.424919365439564,0.04539654962718487,-0.45940872048959136,0.31411799881607294,-0.9683163873851299,0.6316597033292055,0.1685236836783588,-0.2669709357433021,0.36689531337469816,0.030517742037773132,0.4802979580126703,-0.02667701244354248,-0.40954933408647776,-0.853972568642348,-0.7883034921251237,-0.9929242879152298,-0.17145917611196637,0.7678723437711596,-0.984168769326061,0.8391148741357028,-0.4997018580324948,0.6090928744524717,-0.499334538821131,-0.05292107118293643,0.4100442943163216,0.029580716509371996,0.08654926437884569,0.8894872488453984,0.940908316988498,0.372496020514518,-0.34582513105124235,0.8819758570753038,0.8311797925271094,-0.5933157275430858,-0.29949795734137297,-0.4394007413648069,-0.5889542838558555,0.6636327588930726,-0.5055688694119453,-0.8587553896941245,-0.23981181671842933,0.35095563204959035,-0.144844027236104,0.2692092410288751,0.49352444987744093,0.145906874909997,0.12603456154465675,-0.5844921148382127,-0.9408596567809582,-0.6556702759116888,0.3754675160162151,0.19193311734125018,-0.08961544279009104,0.05231860373169184,-0.02449647244066,0.3941037724725902,0.4590213713236153,-0.9703105706721544,0.9268740597181022,0.7384861391037703,0.7259360798634589,0.5786394006572664,-0.8939870032481849,-0.6271358239464462,0.03669430874288082,0.5901394025422633,0.07282739877700806,-0.8117392151616514,0.43120646942406893,0.13753879303112626,0.2468691822141409,-0.5388092841021717,0.15373930661007762,0.6027538008056581,-0.41441611433401704,-0.8615852436050773,-0.18124394491314888,-0.23400742141529918,-0.24139053281396627,0.17910272348672152,-0.7773554255254567,0.7708799066022038,-0.004514007363468409,-0.07346410863101482,-0.723260146100074,-0.5348049006424844,-0.6122337942942977,-0.05428325152024627,-0.736453662160784,-0.8013945631682873,-0.14874432561919093,-0.5661023803986609,-0.031855070032179356,-0.924757385160774,0.5977322030812502,-0.6324109262786806,-0.24240874918177724,-0.6336110453121364,0.7278406182304025,0.3518894733861089,-0.7360495924949646,0.8872022032737732,0.013623349368572235,-0.7824681270867586,0.23278744239360094,0.04674716992303729,-0.12676973920315504,-0.8903233488090336,-0.13085983414202929,-0.180162088945508,0.5256014219485223,0.23028981080278754,-0.7654560748487711,-0.8050880101509392,0.39466533437371254,0.8636148520745337,-0.5540360938757658,-0.6506541958078742,0.3084329543635249,0.25692308275029063,-0.21641042130067945,0.9838885078206658,0.2656479626893997,0.07756429444998503,-0.9216271922923625,-0.9660434443503618,-0.9324983125552535,0.12171516194939613,-0.38561786664649844,-0.16746501484885812,-0.9395472472533584,-0.18192181596532464,-0.4357170984148979,0.007815427612513304,0.783672240562737,0.7781547731719911,0.6138948993757367,0.6928884228691459,0.37787800189107656,0.7553052757866681,0.02984532155096531,0.8042356097139418,-0.1422122628428042,0.922855703625828,-0.27918766066432,0.31369404634460807,-0.5226556067354977,-0.2905955952592194,-0.745072971098125,0.7320206095464528,-0.7048581838607788,-0.6714934376068413,-0.7212681309320033,-0.5365571798756719,0.1529346196912229,0.28165906900539994,-0.1506952391937375,-0.5483491900376976,-0.044863807037472725,0.2636017082259059,0.9706145254895091,-0.45660628005862236,0.6865713647566736,0.24622807931154966,-0.31752357725054026,-0.43084569554775953,-0.7229026718996465,-0.9379775729030371,-0.2789891487918794,0.5942199197597802,0.42026231018826365,0.39863680955022573,0.07689443649724126,0.2704834155738354,0.8630377780646086,0.19980349531397223,-0.8113964847289026,0.34467005264014006,-0.6055346233770251,0.49061011197045445,0.9305369411595166,-0.550743730738759,-0.7100572250783443,-0.41177571238949895,-0.34442618815228343,0.42444903915748,0.537516119889915,-0.7154588177800179,0.9371495172381401,0.7914438317529857,-0.9559047794900835,-0.8354871268384159,0.9645969164557755,0.4538954854942858,-0.26343594305217266,0.2823695093393326,-0.9363840781152248,0.2641652897000313,0.814500842243433,0.01080929022282362,-0.8117106286808848,-0.1371534550562501,-0.250644005369395,0.5870708283036947,-0.9801561115309596,0.8642896260134876,-0.26001268764957786,-0.9105686298571527,0.5220684199593961,-0.47947140503674746,-0.22183783072978258,0.017140192445367575,0.243865757714957,-0.4864865830168128,-0.5310391951352358,0.13865071721374989,-0.05449551483616233,0.041744448244571686,-0.8536000493913889,-0.17683324310928583,-0.16194255277514458,-0.26506783813238144,0.03054942423477769,0.7751564951613545,0.23125555226579309,0.43386135110631585,-0.09990843012928963,-0.07244926504790783,0.4026739038527012,0.2406397769227624,-0.9743013400584459,-0.607272528577596,0.09616776136681437,-0.32032274827361107,-0.31601934507489204,-0.38304719515144825,-0.4871407183818519,-0.7058938900008798,0.8816194292157888,-0.3340167189016938,-0.24374377960339189,-0.7510473290458322,0.78068927815184,-0.7206476368010044,0.05426784045994282,0.4241018192842603,-0.0950402682647109,0.42801976995542645,-0.959108421113342,0.1718960995785892,0.7512044594623148,0.430666190572083,0.749945601914078,-0.9456628449261189,-0.25295789586380124,0.6456334623508155,0.14605825021862984,-0.42467154562473297,-0.879173384513706,0.24496962456032634,-0.26538962684571743,0.07521270588040352,0.36074337223544717,0.8256401475518942,-0.8198818173259497,0.26052312552928925,0.4528473443351686,-0.6596003933809698,0.06874299375340343,-0.2599733821116388,-0.8392828870564699,-0.6327352202497423,0.16430532420054078,-0.37424579123035073,0.20507013238966465,0.5866722189821303,0.49843541579321027,0.5795847391709685,-0.8610152280889452,-0.5985075444914401,0.16957176104187965,0.34475406911224127,-0.4838604195974767,0.46770259691402316,0.08389754500240088,0.7556465473026037,-0.40414483891800046,-0.301907816901803,0.44812458846718073,0.7256113425828516,-0.29133759206160903,0.3117560571990907,0.17250683438032866,-0.042899040039628744,-0.061742085963487625,0.3982910620979965,-0.2378841396421194,-0.532117972150445,0.9585559596307576,0.14848976442590356,0.6582725932821631,-0.7521250387653708,0.5521002886816859,-0.8030443829484284,-0.6644030273891985,0.3342998777516186,-0.9274009666405618,0.22867331188172102,0.5250341258943081,0.29084612568840384,-0.9470909684896469,0.2840078021399677,0.38071050914004445,0.6880891630426049,0.6398221999406815,0.28051189752295613,-0.05287670763209462,-0.4496699390001595,0.21264153625816107,0.6828326750546694,0.02898835390806198,0.1477290978655219,-0.7845751736313105,0.6174780162982643,0.0038592233322560787,0.2010145876556635,-0.9204755201935768,-0.5895268251188099,0.9367597973905504,0.6829706695862114,0.7032306022010744,0.224910709541291,0.43002256471663713,0.3200236754491925,0.6043258877471089,0.18495998717844486,0.6470400705002248,0.6990084680728614,0.4635558510199189,0.35440685972571373,-0.8740962580777705,0.327950119972229,-0.20468348916620016,0.09794160118326545,0.7518179230391979,0.43305971939116716,-0.2632318432442844,0.9972214172594249,-0.3571901121176779,-0.11428891075775027,-0.6740144374780357,-0.6103804060257971,0.782545511610806,-0.6195403388701379,0.12936908332630992,0.2415548898279667,0.9489088761620224,0.4071660847403109,-0.6922722118906677,-0.43049305072054267,0.8767203106544912,0.7579543734900653,0.7865075012668967,0.441802189219743,-0.4826507386751473,-0.8496531751006842,-0.9545634272508323,-0.8067091614939272,-0.4197224392555654,0.7073406237177551,0.3149938406422734,0.21806401712819934,0.36548063810914755,0.7496103346347809,-0.40557322930544615,0.14208658644929528,-0.2271544011309743,0.9297139360569417,-0.8253899393603206,-0.529907010961324,0.37705114483833313,0.279820772819221,0.5045503498986363,-0.8418544507585466,0.09849315881729126,0.027465865947306156,-0.5133873918093741,0.2625220399349928,0.5074004828929901,-0.057902596425265074,-0.02828629221767187,0.5249671055935323,0.8718433519825339,-0.2606738852337003,0.17968321964144707,-0.5852908166125417,0.12789993919432163,-0.43386827781796455,-0.5872925478033721,0.02620768453925848,0.3185924687422812,-0.5577753912657499,-0.2614855756983161,-0.21890104189515114,-0.8598655485548079,0.0670426837168634,0.6134325237944722,0.2959157465957105,0.8825452434830368,-0.067470358684659,0.8629791159182787,0.9101787870749831,-0.8186404914595187,0.31069887010380626,-0.33472124161198735,-0.15609222510829568,-0.0825541652739048,0.4248462999239564,0.7808466153219342,0.09705798141658306,0.40128599759191275,0.16943846317008138,0.4716310389339924,0.11442399024963379,-0.9194844146259129,-0.9527213764376938,-0.7777886032126844,-0.7102906624786556,-0.642673185095191,0.0798735017888248,0.8960031238384545,0.8482412993907928,0.5186098082922399,0.0620505977421999,0.608361882623285,-0.12712529953569174,-0.8910768502391875,-0.385298915207386,-0.25436732778325677,-0.1106843976303935,0.898895834106952,0.3666749536059797,0.2576010054908693,0.8450192618183792,0.652956279926002,0.4735362627543509,0.10603709053248167,0.2681760364212096,-0.9882731880061328,0.5775234834291041,-0.6956522464752197,0.2874138206243515,-0.6136974170804024,0.68562221666798,0.10399397183209658,-0.7483615521341562,0.3271360211074352,0.851473952177912,0.5792295373976231,-0.3638393827714026,0.08177500125020742,0.2077739560045302,0.5594908618368208,0.8195070801302791,-0.364804704207927,0.5559990932233632,0.5968578415922821,-0.22418899275362492,-0.27895108237862587,-0.6432044198736548,0.846140880137682,0.3014654512517154,0.40426541632041335,-0.58999766362831,0.7787982653826475,0.6987006673589349,0.21021861024200916,-0.8954192427918315,-0.2580090509727597,0.3580166893079877,-0.07166351517662406,-0.39647989394143224,-0.7252745698206127,0.848746916744858,0.7878419533371925,0.7545792297460139,0.5876233824528754,0.6692843488417566,-0.44497646298259497,0.5336478450335562,-0.9824508749879897,-0.303820364177227,-0.14300957135856152,-0.19577638851478696,-0.10078333364799619,0.20112861273810267,-0.333876826800406,-0.28878820268437266,0.6011092835105956,0.3439979259856045,0.8510461188852787,0.5589152565225959,-0.45374723244458437,-0.637718562502414,-0.9595741308294237,-0.775302201975137,0.5864943126216531,-0.18678713962435722,-0.534905185457319,0.5071750152856112,-0.277602830901742,0.20310562942177057,-0.21178218023851514,0.026877317111939192,-0.8262920533306897,0.9143020934425294,-0.8857012623921037,0.17705378495156765,0.9264454310759902,0.08268793672323227,0.10670514823868871,-0.9189703450538218,-0.19272813387215137,0.8956076661124825,-0.357298051007092,0.4670038428157568,0.5035125697031617,0.8521701730787754,-0.6152177345938981,0.4834289010614157,-0.08317825105041265,0.5932826199568808,-0.23141252575442195,-0.8173540476709604,0.2266426356509328,0.9679893190041184,0.8790610879659653,-0.6790402480401099,-0.1628357064910233,-0.7058210279792547,0.19942453177645802,-0.7657458265312016,0.6790877962484956,0.8399583711288869,-0.7370486976578832,-0.17173368902876973,-0.5014443718828261,-0.599253146443516,-0.36886222288012505,-0.48487053625285625,0.7121029733680189,0.17146029975265265,0.7842594068497419,0.6943605784326792,-0.42446007719263434,0.5557495863176882,-0.9060262371785939,-0.9226291910745203,-0.37124742241576314,0.7780069354921579,0.9143877518363297,0.4928253097459674,-0.25274531729519367,-0.37971336441114545,-0.33751280698925257,0.6651777178049088,-0.3870285344310105,-0.12787205399945378,0.027860818896442652,0.9703887784853578,-0.8460778715088964,0.19266969012096524,0.9234148133546114,-0.3693302208557725,-0.6297883940860629,-0.35346689773723483,0.11700414260849357,0.013672261033207178,0.1663706162944436,0.31398058636114,0.7080309260636568,-0.7836611988022923,0.831631044857204,0.6833876580931246,0.03730714786797762,0.4066399852745235,-0.5701178056187928,0.9988031885586679,-0.10164730018004775,0.21012780908495188,0.6933984067291021,-0.9736597961746156,0.9237270248122513,0.22261485643684864,-0.008965910412371159,0.31519968528300524,0.3490277142263949,-0.42058772360906005,0.2542427172884345,-0.41305161407217383,0.45954147540032864,-0.9984345249831676,0.8272259621880949,-0.8725558072328568,0.34154436783865094,-0.47498800698667765,-0.6699968916364014,-0.9176125158555806,0.9465968031436205,0.6049991808831692,-0.15724716056138277,-0.7168553550727665,0.5603763782419264,0.7862187097780406,0.14429004630073905,-0.37399023910984397,-0.880213457159698,0.685828301589936,0.17703867331147194,-0.9555590567179024,-0.84551568236202,-0.07953226612880826,-0.10829559620469809,0.7430638200603426,0.6274864324368536,0.6823877259157598,0.3395533598959446,0.35920491022989154,0.2580531989224255,0.5503502651117742,0.16466655023396015,0.13314194604754448,0.9026080528274179,0.963455961085856,-0.09706431720405817,0.7260460527613759,0.6117192157544196,-0.34100155578926206,0.8279547351412475,-0.41659138770774007,-0.9418764244765043,-0.8456025351770222,0.7481971830129623,0.7767268745228648,-0.8304828065447509,0.059832739643752575,-0.2140044835396111,0.5774526540189981,-0.8160515227355063,0.05266214953735471,0.3492986294440925,0.6761869415640831,0.23627315228804946,-0.3525320044718683,-0.9981473023071885,0.446135216858238,0.3006168897263706,-0.9377437210641801,0.8469460215419531,0.6387115507386625,-0.5009646592661738,0.20799045078456402,0.0024011735804378986,0.04492707643657923,0.3879420328885317,-0.5254760435782373,-0.8237518365494907,0.6740625197999179,-0.2657249509356916,0.4426791090518236,-0.2052082121372223,0.5360862663947046,0.05070553161203861,0.41939012007787824,0.9761592824943364,0.10405176039785147,0.9901830134913325,-0.6767338886857033,-0.5124811064451933,0.5162187414243817,0.4489408968947828,0.08405956206843257,-0.05729627376422286,-0.5234330454841256,0.672460438683629,-0.7479796656407416,-0.876741792075336,0.5620091669261456,0.517666282132268,0.6661129854619503,-0.21091021224856377,0.18481369270011783,0.5433727758936584,-0.5577341648750007,-0.7827896485105157,-0.16172473737969995,0.2258056211285293,-0.7575260861776769,0.9354935833252966,-0.30740995798259974,0.9828403275460005,0.1950037688948214,-0.38205194007605314,-0.2109846407547593,0.21060507465153933,0.7521964609622955,-0.7652443428523839,-0.5768888094462454,-0.7176681947894394,0.6547874677926302,0.6908903699368238,-0.8653974989429116,-0.2303939568810165,0.85007230238989,0.11919406754896045,0.9693401935510337,-0.6699994350783527,0.8013394423760474,-0.27464420115575194,0.28265202324837446,-0.26497737504541874,-0.022410658188164234,-0.8687817682512105,0.6087792599573731,0.8790763448923826,-0.9012819146737456,-0.5668407105840743,0.30702799558639526,0.9668401689268649,0.3613473204895854,0.31028807535767555,0.10827617580071092,-0.7653528447262943,-0.26751460460945964,0.7597440239042044,-0.9162124986760318,0.17186984233558178,0.7087379936128855,-0.22824083594605327,-0.6193346413783729,-0.7582657700404525,0.002146125305444002,0.1685523963533342,0.3258382584899664,0.6678787209093571,-0.17603730456903577,-0.08543301932513714,0.11727361660450697,-0.6298774145543575,0.5446401997469366,0.1322215711697936,0.5334657495841384,0.1297519076615572,0.2667252472601831,-0.10215355129912496,0.37850599410012364,-0.22722736233845353,-0.3880571317858994,0.1964297709055245,0.89577775914222,-0.7717659822665155,0.5103522022254765,-0.9627886079251766,0.9814786897040904,-0.4957290035672486,0.27069352427497506,0.8984567285515368,0.7449796064756811,-0.29595213290303946,-0.2831812249496579,0.6334778098389506,-0.07871791301295161,0.12109253369271755,-0.5387929165735841,0.4327349569648504,0.4762777993455529,0.047334158793091774,-0.17155267018824816,-0.5670207212679088,0.0329547137953341,-0.5229517440311611,0.7122991350479424,0.05361593095585704,-0.930656801443547,0.505945167504251,0.6699279085732996,0.35496969940140843,-0.07927632704377174,-0.2814830313436687,0.6155638289637864,0.8307278496213257,0.9385269498452544,-0.40115089202299714,-0.00885852426290512,0.1341726672835648,0.5398335629142821,0.7439573658630252,0.616695758420974,0.9508031769655645,-0.5926654567010701,0.4760329411365092,-0.46396242966875434,-0.030349561013281345,0.8624209491536021,0.7014403063803911,-0.24734353553503752,-0.9857187801972032,-0.5492836250923574,0.1863257922232151,-0.5739421700127423,-0.13951103016734123,-0.2741685174405575,-0.27547834115102887,0.1146397814154625,0.6518447939306498,0.7470472762361169,0.9120170609094203,-0.5795525964349508,-0.23509157029911876,-0.2923460598103702,-0.49199684523046017,0.13045483129099011,-0.6359813422895968,-0.2196556804701686,0.9261890496127307,0.26598861813545227,0.5234605558216572,0.2869729967787862,0.7064475165680051,0.22456427523866296,0.3641413119621575,-0.025982001796364784,0.768875515088439,0.3463528663851321,0.6978567228652537,0.1426801555790007,-0.7098093079403043,-0.19735492253676057,-0.9379229354672134,-0.3465018244460225,-0.24503478640690446,0.3667632741853595,-0.39388956129550934,0.75046879472211,-0.8819533893838525,0.8140368983149529,0.40198872750625014,-0.16610207967460155,-0.26772048650309443,-0.7545658838935196,-0.9106100732460618,-0.2796933758072555,0.4322070460766554,0.5689914165996015,-0.8751352760009468,-0.5735928947106004,0.6546648540534079,0.4214107231236994,0.9599441001191735,-0.610354139469564,-0.9555291328579187,-0.3073036200366914,0.7503199228085577,0.9019292923621833,0.6647691316902637,0.3676222595386207,0.3555133887566626,0.9930829973891377,0.78244762821123,0.730803060811013,-0.7943542585708201,-0.41287326207384467,-0.21108682919293642,-0.8419047882780433,0.5202213223092258,-0.7037992551922798,-0.043318978045135736,-0.47059305384755135,-0.18601494515314698,-0.7815445722080767,-0.5821793205104768,0.16476732259616256,0.6428048135712743,-0.999387489631772,0.21995414094999433,-0.003623788245022297,-0.47992116352543235,-0.19035541592165828,0.10629461845383048,0.18133038142696023,0.11956540495157242,-0.509966507088393,-0.11754151294007897,-0.5292426161468029,-0.3026328640989959,0.28799391677603126,0.04074972961097956,-0.3611389291472733,0.4874105458147824,-0.9680021130479872,0.1196169457398355,-0.039710361044853926,0.34782335022464395,-0.7742208726704121,-0.8627394544892013,0.681369083467871,0.6056845420971513,-0.04144939500838518,-0.12059623561799526,-0.7733082356862724,-0.009142544586211443,-0.0036741285584867,-0.6756413215771317,-0.5069587300531566,0.14420247077941895,0.854083648417145,0.08291147602722049,0.15683514950796962,0.1487383130006492,-0.12793613877147436,0.05143872043117881,0.143007037229836,-0.8852774193510413,-0.6717689968645573,0.2241473593749106,0.611298724077642,0.4877362218685448,-0.3537764623761177,0.5950888055376709,-0.533932258374989,0.01583249168470502,-0.6204535327851772,0.25230321707203984,-0.16614792123436928,0.8614697740413249,0.55226033879444,0.3376016179099679,0.7968759979121387,-0.7201196905225515,0.14113380201160908,0.5365205877460539,-0.35277833556756377,-0.910972913261503,-0.09363052109256387,-0.05117940856143832,0.6276776590384543,-0.4207967990078032,-0.06018125731498003,-0.5575126744806767,0.2008760874159634,0.3780625215731561,-0.3498851377516985,0.15282566146925092,-0.7185390535742044,-0.10155898472294211,-0.6189031852409244,-0.14682833198457956,-0.9887393717654049,0.2457797392271459,0.8607305963523686,0.7939373138360679,0.6769365463405848,0.531157351564616,-0.9934169785119593,0.5795110338367522,-0.6215370008721948,-0.11566779715940356,0.9729045662097633,-0.5881388168781996,-0.10271510109305382,0.23169525200501084,0.19716281350702047,0.6702115372754633,-0.09987916750833392,-0.10290793934836984,0.3389278845861554,-0.26453136652708054,-0.7230959367007017,-0.39672386925667524,0.18294765334576368,0.06104576587677002,0.05851138196885586,-0.5699724061414599,-0.40937716560438275,-0.10595007427036762,0.530045076739043,0.6706924997270107,0.4674271303229034,-0.031032136641442776,0.8454737341962755,0.8258063197135925,0.9062347779981792,0.8989078970625997,-0.5092120943590999,-0.7736369213089347,0.1410103547386825,0.8380375155247748,0.43222513189539313,0.1662545525468886,0.1800164240412414,-0.20800833869725466,-0.5761851603165269,-0.058858572505414486,-0.24297099467366934,-0.06507621426135302,-0.9666404756717384,0.9456587275490165,-0.8733081561513245,0.4670048449188471,0.6510913502424955,-0.3434286364354193,-0.2414083988405764,0.9689053380861878,0.17060913983732462,-0.23479742603376508,0.11977440537884831,-0.5333039117977023,0.2813842138275504,-0.7964309370145202,0.26352849835529923,0.8643203754909337,0.4894278938882053,-0.6111798635683954,0.4137699925340712,0.8608680251054466,0.8461016165092587,-0.5578310373239219,-0.4442633562721312,0.19467549491673708,0.8310734597034752,0.38490086793899536,0.7734289932996035,0.4659630716778338,0.23962870612740517,-0.37074064463377,-0.040264992509037256,0.8743841778486967,-0.02430427959188819,0.5396681530401111,-0.5625781756825745,0.6200434872880578,0.9199687773361802,0.637904395814985,-0.18785006646066904,0.1431655460037291,-0.1370478942990303,-0.3351189875975251,0.8075764551758766,0.47167370934039354,0.07569139823317528,-0.3785170349292457,0.4423926239833236,0.1187338326126337,0.054854586720466614,0.5431227837689221,-0.8968635136261582,-0.6453894660808146,-0.30080775497481227,0.10743811307474971,0.5085971849039197,-0.20744299283251166,0.16016435157507658,0.15917013213038445,-0.6033689393661916,0.6294612223282456,-0.3830013331025839,-0.2857808046974242,0.9513666890561581,-0.9457466192543507,-0.2717983373440802,0.2841936289332807,-0.8362393137067556,-0.1866990588605404,-0.22171310428529978,0.7170084770768881,-0.19289735658094287,-0.38791875867173076,-0.9860860840417445,0.5142549499869347,0.5666811033152044,0.5067627374082804,0.4034128887578845,0.15457051433622837,-0.1564903580583632,0.6518192356452346,0.7421184275299311,0.8134286548011005,0.22423248505219817,0.290245970711112,0.8740087947808206,-0.23070537904277444,0.9760929085314274,0.2855363357812166,0.538904354441911,0.05841793539002538,0.08898358279839158,0.44243480265140533,-0.33000905765220523,0.3416046751663089,0.9583139629103243,0.11898263031616807,-0.2783119953237474,-0.2605068488046527,0.6087650288827717,-0.8708894620649517,0.1308513036929071,0.35977033991366625,-0.3819773285649717,0.4804300609976053,0.03428200399503112,-0.8428189046680927,0.4098905944265425,-0.2631468018516898,0.9257097807712853,0.7277974770404398,0.18352735973894596,-0.03376713441684842,-0.8273430792614818,-0.5263635260052979,-0.34041128773242235,-0.6177795040421188,-0.6062697200104594,-0.09503330243751407,-0.5591276646591723,-0.15864623710513115,-0.5242699468508363,0.40023296931758523,-0.8110365844331682,-0.07936236169189215,-0.46770994318649173,0.20851216185837984,0.6078833527863026,-0.49613594356924295,-0.5433479631319642,0.012548982631415129,-0.7087777480483055,0.9726109704934061,0.020293833687901497,-0.6406685789115727,0.2547626285813749,0.9672783999703825,-0.11028974922373891,0.01408679224550724,0.9804746955633163,-0.023491615895181894,-0.7518312842585146,-0.38307230034843087,-0.009983906988054514,0.33897909615188837,-0.6085241558030248,0.9289574297145009,-0.6928104874677956,0.9561877553351223,0.7246395573019981,-0.44186599319800735,-0.14449828676879406,0.5767069435678422,0.10793582815676928,0.14254161156713963,0.8716722456738353,-0.6215471420437098,0.4958393946290016,0.3123762612231076,0.5430642841383815,0.2090387362986803,-0.9866360258311033,-0.4629503879696131,-0.7737206718884408,0.7570450697094202,-0.48238752922043204,-0.8524663336575031,0.8939351546578109,0.38465676456689835,0.47838704381138086,0.5817049774341285,-0.8914329232648015,-0.7202597167342901,-0.7181318905204535,0.8029448357410729,0.9961295621469617,-0.8011262286454439,0.019251319114118814,-0.01277003763243556,-0.08439235901460052,0.9355246154591441,0.7701543383300304,-0.7844594484195113,0.5568828419782221,0.6347752930596471,0.1257833163253963,0.08738375129178166,-0.032366962637752295,-0.7039019437506795,-0.44304395793005824,-0.7075073155574501,0.09255422791466117,0.18208822887390852,-0.03939369088038802,-0.2916799793019891,0.31077644042670727,-0.0589839112944901,-0.9594855881296098,0.5871418048627675,0.682134150993079,-0.4881395483389497,-0.8090435578487813,-0.9241749942302704,-0.5846164496615529,-0.7645543962717056,-0.6987482123076916,0.8693302352912724,-0.005637325346469879,-0.08196732588112354,-0.004799459129571915,0.10522104660049081,-0.07407817710191011,0.5577466520480812,0.15837820246815681,-0.08769873948767781,-0.20238905167207122,0.18496392061933875,-0.6844918355345726,-0.31812166422605515,0.2098783701658249,0.2087022033520043,-0.13716458342969418,-0.23473816830664873,0.7562035503797233,-0.8466454823501408,0.11401387630030513,0.5249680080451071,-0.5154410693794489,0.803458986338228,0.013725905679166317,-0.42254670849069953,-0.977334241848439,0.20627793483436108,0.7406774205155671,-0.24211934627965093,-0.3209501998499036,-0.28577151615172625,-0.3132822313345969,-0.22971617989242077,0.213678068947047,-0.06113316072151065,0.39874616730958223,-0.6602254146710038,0.8972126678563654,0.41332035791128874,-0.5616346849128604,0.9415692300535738,0.48117286106571555,-0.1045871265232563,0.2506243805401027,-0.8569030375219882,0.819873592350632,-0.005176866892725229,-0.6999266264028847,-0.5086871678940952,-0.2331981621682644,-0.2453731633722782,0.16281739994883537,-0.8732636999338865,0.44224211433902383,0.319761470425874,0.9637224837206304,0.9119385629892349,0.39971985621377826,0.5380266131833196,0.9634853322058916,0.7454003477469087,0.40060274256393313,0.9394944328814745,-0.6907557281665504,-0.006295481696724892,0.8676990219391882,0.7819058373570442,0.8358336566016078,0.6108344662934542,-0.7845444241538644,-0.2959863767027855,-0.9619334349408746,0.6346970391459763,-0.9530865214765072,0.8545988542027771,0.6282401685602963,0.6676579904742539,-0.0548287401907146,-0.03669297322630882,0.5070651294663548,0.866350085940212,0.06401160079985857,0.6019603624008596,-0.3581596463918686,0.21842070994898677,0.2658054158091545,0.9277421799488366,0.8857815135270357,-0.32120703533291817,-0.2719520488753915,0.5533527112565935,-0.7287655281834304,0.8005132344551384,0.33955033868551254,0.3623098125681281,0.07118656393140554,0.10222255671396852,-0.8704806533642113,0.15493151918053627,-0.01275766035541892,0.8515248037874699,0.8614289765246212,0.21197916427627206,0.09540659142658114,0.8966928636655211,-0.02147467155009508,-0.7376345051452518,-0.381898851133883,0.10976480739191175,-0.47705820947885513,0.24247673712670803,-0.9153288281522691,-0.2153229834511876,0.5186149622313678,0.9891354255378246,0.9022902641445398,-0.5994294406846166,-0.45488308276981115,0.48075502272695303,-0.47345726005733013,-0.1033916943706572,0.18480903515592217,-0.43437910499051213,0.6481084548868239,0.7874867706559598,-0.18098611570894718,-0.2421661256812513,-0.5128783141262829,0.8310254351235926,0.794354144949466,0.4853882612660527,-0.23753277771174908,-0.9325402011163533,-0.8916957741603255,0.39386178413406014,-0.26987510873004794,-0.9325185650959611,0.7186496299691498,-0.09040552144870162,-0.18685783725231886,-0.6535954088903964,0.5541197657585144,-0.5528936674818397,0.25624846387654543,0.19613394187763333,-0.28122504660859704,-0.14507365971803665,-0.8499084333889186,-0.2533160801976919,0.794905221555382,-0.8595873694866896,0.7247530301101506,-0.335393572691828,0.11052831076085567,0.7253955448977649,0.2469498449936509,0.52363953134045,0.5674631185829639,0.7423805650323629,-0.5647879368625581,0.5872658537700772,0.686567704193294,-0.009247898124158382,-0.808597887866199,0.8737240470945835,-0.9021293595433235,0.21605598228052258,-0.14960819343104959,0.17235169745981693,0.8001920208334923,-0.9030054043978453,0.3200830374844372,-0.8595519298687577,-0.8395062852650881,-0.5590029223822057,-0.45546999480575323,-0.22142691863700747,0.8457008586265147,-0.40284923324361444,0.1693539754487574,-0.9507713038474321,0.5344770476222038,-0.21552401455119252,-0.19127535680308938,0.26975126937031746,-0.1626430731266737,0.6238163909874856,0.8857708782888949,0.15998552925884724,-0.3489430076442659,-0.35298925964161754,0.8128758780658245,-0.37099678069353104,-0.14900338929146528,0.6777386944741011,0.1870353571139276,-0.9366669426672161,0.22449420392513275,-0.19248110987246037,-0.39136462891474366,0.6356079457327724,0.5632961918599904,-0.5595020311884582,-0.26680593751370907,0.6806209525093436,-0.7344832522794604,0.07959334971383214,0.4375932249240577,-0.6756032668054104,-0.04134100954979658,-0.7904019905254245,0.12273733364418149,0.13772087404504418,-0.4133083005435765,-0.34758450696244836,-0.9966651736758649,0.42921985872089863,-0.3256641924381256,0.6484821373596787,-0.06003368878737092,0.2807436645962298,0.03639694582670927,0.5183462169952691,-0.8988305353559554,-0.7278189831413329,-0.061700950376689434,-0.7609496843069792,0.4654605137184262,-0.6652617952786386,0.35388212092220783,-0.9938986380584538,-0.4582098484970629,-0.23532420955598354,-0.03466319851577282,0.8876216826029122,0.2752173147164285,-0.9452855940908194,0.1724853622727096,0.36133122397586703,-0.19557383516803384,0.3799356687813997,0.5893772225826979,-0.02656617760658264,0.7564557860605419,0.9714651936665177,-0.6139683299697936,-0.342588699888438,-0.025243557523936033,0.8296745391562581,0.26455483259633183,-0.5193328000605106,0.4812368080019951,0.3149685990065336,0.8123233197256923,-0.21430822042748332,0.5924222879111767,-0.038255680818110704,-0.3664880353026092,0.11013751477003098,-0.5606762608513236,-0.8578429454937577,-0.7882432220503688,-0.9264674121513963,-0.6000219755806029,-0.027035297825932503,-0.42322168266400695,0.4830416408367455,-0.9576364057138562,0.5390416011214256,-0.8776607401669025,-0.8582195374183357,0.9003191855736077,-0.32758921990171075,0.6763615789823234,0.42946099722757936,-0.9030869170092046,0.31287943106144667,-0.08049528626725078,-0.7376128253526986,0.18255422543734312,-0.14292066777125,0.5224156240001321,0.20730168744921684,-0.5399390365928411,0.876602855976671,-0.7399027338251472,0.7583781620487571,-0.04335331032052636,-0.1834490285255015,0.4059633854776621,-0.7696361672133207,0.5922818388789892,0.861319744028151,-0.7537417570129037,-0.997353654820472,-0.9116548798047006,-0.4886478232219815,-0.5739362644962966,-0.43837198708206415,0.33749656938016415,-0.47517318092286587,0.10930468467995524,0.8232931238599122,0.8894580728374422,-0.2403821782208979,0.622725831810385,-0.9898566976189613,-0.7577767525799572,-0.18812490114942193,0.420933588873595,-0.7294477564282715,0.5370846590958536,-0.9808281739242375,-0.10365316830575466,-0.9865436255931854,-0.2884142673574388,-0.4874058444984257,-0.9629753506742418,-0.052588066551834345,-0.021885800175368786,-0.13878164999186993,-0.7902179411612451,0.6222102791070938,0.14692564122378826,-0.876076296903193,-0.35755652002990246,0.86276859883219,-0.46879011671990156,0.8932657456025481,0.8860203456133604,0.30616851104423404,0.5876407618634403,0.7634551147930324,-0.30457418831065297,-0.32376122009009123,-0.6607780596241355,-0.1887152036651969,0.42659809021279216,-0.4624393084086478,-0.42018077801913023,0.5041915029287338,0.1378340576775372,0.9840734922327101,0.07183600030839443,0.11021470185369253,-0.5198173434473574,-0.567511631641537,0.6315004946663976,0.1002960056066513,0.8749735290184617,0.9351934907026589,0.7889851834625006,-0.7319643679074943,-0.14426662540063262,-0.008198096416890621,0.9577072425745428,-0.0053404574282467365,-0.33484353171661496,0.41231162659823895,0.6861011106520891,-0.6016760519705713,-0.9616956687532365,-0.2742777788080275,-0.8402193328365684,0.4039510120637715,-0.06601991830393672,-0.2858652714639902,-0.6484047872945666,-0.09430833440274,0.23083066381514072,0.9344640541821718,-0.4027620884589851,0.33871469972655177,0.9950350699946284,-0.7952260528691113,-0.05939056584611535,0.8011925616301596,0.6050454415380955,-0.3507913616485894,-0.4256908604875207,0.377527697943151,-0.20865775924175978,-0.0701989526860416,0.17287537036463618,-0.9908917006105185,-0.6196021880023181,-0.7668793490156531,0.6152397966943681,0.1710741240531206,0.29920979076996446,0.5991872218437493,0.42775135999545455,0.23398330435156822,-0.5519441072829068,-0.793190008495003,0.24933559214696288,0.6064967885613441,0.06663710623979568,-0.9813300985842943,0.2604951588436961,-0.12539716251194477,0.02565521327778697,-0.6283928300254047,0.15977392857894301,0.8799155955202878,0.07738021202385426,0.058860755525529385,0.1540925786830485,-0.13411985710263252,0.08913743169978261,-0.09070472931489348,-0.49138823384419084,0.24385436810553074,0.10943554481491446,-0.5288939350284636,-0.06741906981915236,0.414405504707247,-0.722129188477993,0.4276815205812454,-0.9023577221669257,-0.6277204174548388,-0.2500029061920941,-0.6751557202078402,0.0537336808629334,-0.9229801003821194,0.7631053947843611,0.26053612353280187,0.014664724003523588,0.8494736510328948,-0.6690457691438496,-0.724505253136158,-0.6161927906796336,0.015437003690749407,0.01283174566924572,0.6661396063864231,-0.26777601847425103,0.4086919822730124,-0.08250980032607913,-0.1617575716227293,0.6641775770112872,0.15140083758160472,0.25965813361108303,-0.33327523805201054,0.46229209238663316,-0.681069643702358,0.3564898264594376,0.5815248074941337,0.26458144234493375,-0.5555938738398254,0.6892189108766615,-0.6620396431535482,-0.5982296802103519,-0.07045279163867235,0.7630517855286598,-0.7183632245287299,-0.03533809771761298,0.6668794113211334,-0.8190877852030098,-0.5753879211843014,0.48140767868608236,-0.6988642746582627,-0.9971235073171556,0.9198012407869101,0.7354855067096651,-0.22084642387926579,-0.2823749966919422,-0.20950640039518476,0.14543664455413818,0.9600549093447626,0.5575077123939991,-0.2171287415549159,-0.46233122423291206,0.9742464744485915,0.2364263809286058,-0.5634626024402678,-0.1597332814708352,0.45240685623139143,0.6978527456521988,-0.795282309409231,-0.42985727824270725,0.5027302042581141,-0.12587742414325476,-0.955056612379849,-0.030144928954541683,-0.7320145228877664,0.7293964810669422,0.9398337877355516,-0.1467785364948213,-0.013805165886878967,0.851398853585124,-0.9180839224718511,-0.4572143438272178,0.18463206011801958,0.812127667479217,0.5627856198698282,0.8514784891158342,0.9119695094414055,-0.20579584268853068,-0.9197745369747281,-0.4479678957723081,-0.5191007466055453,-0.1500931573100388,-0.6990802590735257,-0.27821589866653085,0.3856424940750003,-0.5612151175737381,0.9841542555950582,0.3601629748009145,-0.6931274179369211,-0.9777991748414934,-0.7211579442955554,0.9929536124691367,0.2837184155359864,-0.4413660732097924,0.06783063523471355,-0.48958064476028085,0.9936262452974916,-0.23688171710819006,0.04611646989360452,-0.8123025018721819,-0.2989727007225156,0.760115566663444,-0.9034966849721968,0.4192745201289654,0.03624130878597498,-0.48923066863790154,-0.19018000969663262,0.5279430248774588,-0.43391334544867277,0.23778767231851816,-0.7627168749459088,0.9312958498485386,-0.45296067278832197,-0.1507634106092155,-0.7300616633147001,-0.26531480625271797,-0.9209529077634215,0.10668579302728176,-0.4242093847133219,-0.885459216311574,0.24163539428263903,0.5046068211086094,-0.6491516586393118,0.05061258981004357,0.033941563218832016,0.550409778021276,-0.3726898739114404,-0.9400563510134816,0.8531001284718513,-0.16670189471915364,0.45817112224176526,0.7473197383806109,-0.4070218652486801,0.8813466429710388,0.7629020139575005,-0.06525168800726533,-0.21146801812574267,-0.5766365672461689,-0.06071789236739278,-0.17219317937269807,0.9777202755212784,-0.7308903122320771,-0.18805363681167364,-0.3958358629606664,-0.4551235446706414,0.7559347129426897,-0.3561120769008994,0.6411459967494011,-0.857531304936856,-0.6662197019904852,-0.6570265404880047,0.6100345007143915,-0.20757865393534303,0.21587179088965058,0.7391364574432373,0.10262290854007006,0.4041923610493541,0.24971382040530443,-0.7840133332647383,-0.24180946126580238,-0.37369722686707973,0.5304964436218143,-0.4930438711307943,-0.7770414212718606,0.39334472408518195,-0.7386402152478695,0.14597455505281687,-0.9553084331564605,-0.6642247824929655,-0.98086440237239,0.9969893745146692,0.7912307837978005,-0.2226224010810256,-0.9681365131400526,0.28885175893083215,-0.8703323509544134,-0.5602211160585284,0.006814972497522831,-0.31930505484342575,-0.23546806629747152,0.7501092259772122,0.04364442219957709,0.3943994762375951,-0.08687383402138948,0.04298436036333442,0.34010486491024494,0.7664214381948113,-0.03462842060253024,-0.410339264664799,0.9395042792893946,0.13525171019136906,0.2910768981091678,0.2749828011728823,-0.5863109724596143,-0.052212169859558344,-0.4161479384638369,0.730637398082763,-0.3109033261425793,-0.6811885153874755,-0.26803408190608025,-0.2342566424049437,0.20966526493430138,0.23186112055554986,-0.16392964869737625,-0.4336794773116708,-0.46998902410268784,0.9641482518054545,0.3022154364734888,-0.2759847827255726,-0.6776093295775354,-0.47721458738669753,0.6274144886992872,0.630858023185283,0.4220422562211752,-0.6604640786536038,-0.1733511546626687,0.12365086330100894,-0.40184465516358614,-0.7803321713581681,0.19808378256857395,-0.35900024231523275,0.5808531250804663,0.8547713062725961,-0.16612807987257838,-0.32518364768475294,-0.7518461658619344,0.3030674369074404,0.6185500989668071,-0.10069470200687647,0.2350640674121678,-0.942592638079077,-0.9060680456459522,-0.46835777582600713,-0.6629740097559988,-0.5484695434570312,0.9942303937859833,0.9369865050539374,-0.9136711927130818,0.7615319727919996,-0.2777970293536782,-0.7150131994858384,-0.6078117806464434,-0.5028599142096937,0.06446001585572958,-0.45738770300522447,0.7714160829782486,-0.5383802619762719,-0.9670557482168078,0.30781050538644195,-0.593647020868957,-0.17084203148260713,0.3984715039841831,0.40012740297243,0.7842383091337979,-0.5161288059316576,0.8046061997301877,-0.223648595623672,-0.3098797593265772,0.2453078255057335,-0.24424111284315586,0.1046862336806953,-0.6668146955780685,0.9674496538937092,0.391711438074708,0.5434949528425932,-0.35915772151201963,0.18563755927607417,-0.2915182411670685,0.8666770467534661,0.3442001696676016,-0.19151282217353582,0.67136468924582,0.6719398815184832,0.6932828426361084,0.22349103400483727,0.6197842555120587,-0.2900335327722132,0.9737719595432281,-0.8699222169816494,-0.47634650813415647,-0.5193992094136775,-0.5163882682099938,0.7209910261444747,-0.3854826670140028,0.17705205269157887,-0.37272574519738555,0.3357019415125251,0.8276198930107057,0.1375344954431057,0.21897882129997015,0.7721203621476889,-0.3738714763894677,0.27525516133755445,-0.2519535943865776,0.14715485833585262,0.3513821451924741,-0.9515840467065573,0.6319525600410998,0.10575305856764317,-0.6783523336052895,0.4093887913040817,-0.9628298794850707,0.49864844465628266,0.2665090993978083,0.29392286809161305,-0.8561457195319235,0.8719586748629808,-0.5919942571781576,-0.5055349920876324,-0.7738298331387341,-0.29562625102698803,0.1392530743032694,0.08682312443852425,-0.8916218136437237,0.21128608472645283,-0.09459734847769141,0.33118883054703474,0.7956103221513331,-0.04638539534062147,-0.9790606340393424,0.12191307172179222,0.28027105471119285,0.1478987974114716,0.9279771968722343,-0.23119783774018288,0.9942830889485776,-0.9974870583973825,0.33578017819672823,0.9991247290745378,0.1095101609826088,0.842667409684509,-0.30721179815009236,-0.18819211004301906,-0.0964782852679491,0.5433790851384401,-0.2518317559733987,0.1153130023740232,0.9541571494191885,-0.6510739754885435,-0.013267654459923506,-0.5354164526797831,-0.6779027418233454,0.5580853577703238,-0.6248865383677185,0.6499645197764039,-0.22527513559907675,-0.055371671449393034,-0.28744199639186263,-0.7229655957780778,0.4286442343145609,0.7969366684556007,0.32994847698137164,-0.8946109781973064,-0.507986297365278,0.6920979730784893,0.37540370132774115,-0.22109232284128666,-0.07283466728404164,0.14508714945986867,-0.6900863996706903,0.2292174962349236,-0.8201616294682026,0.1229779408313334,-0.6128518260084093,0.8936243890784681,-0.5819376669824123,0.11717008985579014,-0.029656487051397562,-0.7172641502693295,0.5301307737827301,0.7916071745567024,0.8359324033372104,0.16144072404131293,0.620052712969482,0.407989255618304,0.5015433584339917,-0.9629038921557367,0.7355725523084402,0.07842464558780193,0.4100418412126601,0.08463339693844318,0.6137441801838577,0.47750068875029683,-0.8623576364479959,-0.02827929286286235,0.0934142922051251,-0.4956368552520871,-0.9533706270158291,-0.1478611472994089,-0.5219372543506324,0.3639159672893584,0.7438999940641224,-0.5015091607347131,0.6699968716129661,0.35866715433076024,-0.544472155161202,-0.20202673599123955,0.7191054658032954,-0.2982362047769129,0.8118613809347153,0.6026072544045746,0.5729240486398339,0.6030970406718552,-0.24248584127053618,-0.7109047789126635,0.6121461531147361,-0.055968298111110926,-0.15679431520402431,0.13213037140667439,-0.22398074436932802,0.5005605365149677,-0.8313555112108588,-0.19140393240377307,0.24273391626775265,-0.10491337720304728,-0.5026953723281622,-0.1718205800279975,-0.7159333997406065,-0.8537694974802434,0.24310615891590714,-0.984046533703804,-0.2697246945463121,-0.8847641064785421,-0.8190729534253478,-0.04832898639142513,0.6816903683356941,-0.2886874624527991,0.8060204549692571,0.8639627355150878,-0.3162566698156297,0.6614116062410176,-0.016351433470845222,0.12295897118747234,0.7629028265364468,-0.7702662087976933,-0.7413556035608053,-0.8651523804292083,-0.06008568545803428,-0.4298350615426898,0.17955845082178712,0.9688029834069312,-0.6439627083018422,-0.5046019097790122,-0.6403159559704363,-0.7814329620450735,-0.034778629429638386,0.593755645211786,-0.049202443566173315,-0.929272910580039,0.40730882389470935,0.7519038990139961,-0.33982319571077824,-0.5550476936623454,-0.08174919011071324,0.48638889426365495,0.6938695427961648,-0.48361411690711975,-0.3425269788131118,-0.8816725853830576,0.21545700263231993,0.5500427167862654,0.11560006579384208,0.8606103542260826,-0.3083356097340584,0.18720222124829888,0.5734183732420206,0.6691512567922473,0.5034319595433772,0.8498264248482883,-0.006588550750166178,-0.4299933072179556,0.44918739795684814,-0.2689617373980582,-0.1752033969387412,-0.5689975554123521,-0.2877534367144108,0.22178341820836067,-0.020286595448851585,0.4381835595704615,0.6937036444433033,-0.2513161636888981,0.500360403675586,-0.7155353520065546,-0.9066261118277907,-0.2003728747367859,-0.30553880194202065,0.6095982817932963,-0.2348339855670929,-0.9817879581823945,-0.6948616788722575,-0.2432272038422525,0.8924088412895799,-0.14720698492601514,0.13446237239986658,0.6336887199431658,0.38363249646499753,-0.4509867150336504,-0.8019744833000004,-0.35225428780540824,-0.6703484286554158,-0.5466299769468606,0.6039097988978028,0.4641067245975137,0.8385710786096752,0.5567944855429232,0.8416030476801097,-0.8259901157580316,0.533905838150531,-0.8880538013763726,0.08493161713704467,-0.7309404062107205,-0.5711779724806547,0.6437355121597648,0.33217990351840854,0.18999098474159837,-0.39820575527846813,0.013579551130533218,0.4899133490398526,0.5221966104581952,0.3085354547947645,0.5699644740670919,0.16608517058193684,-0.7548649827949703,0.7909964649006724,-0.1794099030084908,0.756932423915714,-0.8117821146734059,0.16869844030588865,-0.8695117020979524,0.4877971946261823,-0.976469992659986,0.8003052310086787,-0.34362031891942024,0.10594351915642619,-0.6558903763070703,0.8882041312754154,0.8260386493057013,-0.5749071878381073,-0.4259907570667565,-0.9264205195941031,-0.6397890290245414,0.19064090680330992,0.893533225171268,-0.7472979379817843,0.45076313707977533,0.593237578868866,0.3554529598914087,-0.9483464225195348,-0.5819679466076195,-0.31759304320439696,0.36385580291971564,0.3279231102205813,-0.972732784692198,-0.41982382256537676,-0.5826152521185577,-0.33859464107081294,0.29970511700958014,-0.49964467203244567,-0.28245152719318867,0.5502943266183138,0.324796284083277,0.39200986130163074,0.6371388412080705,-0.8054719502106309,-0.6990202283486724,0.7574111414141953,0.8881669002585113,-0.8234199490398169,-0.03902074694633484,0.2677543396130204,0.41259757056832314,0.76554981386289,0.9113750862888992,-0.5334481452591717,-0.4687799094244838,-0.07056912500411272,-0.3098481297492981,-0.12641292018815875,0.36373376473784447,0.35562915029004216,0.9876906271092594,0.6547282910905778,0.4603556552901864,0.9634827864356339,-0.8213367741554976,-0.5585432490333915,-0.7104288898408413,-0.7243666322901845,0.3134927758947015,-0.2925576255656779,-0.5991117828525603,0.24094988964498043,0.3135537398047745,0.7746399673633277,0.9435190674848855,-0.8930213446728885,-0.10211149509996176,0.4231788092292845,-0.7555641643702984,0.7031266046687961,0.8303729277104139,0.39794193767011166,0.14179861266165972,0.6517600249499083,0.7615776569582522,-0.8114676959812641,0.9553951411508024,0.7494021230377257,0.8945712805725634,0.6788928480818868,0.9412120864726603,0.03869336564093828,0.6393031859770417,-0.45117063634097576,-0.4453677390702069,0.7597592677921057,-0.8521062433719635,0.4641462261788547,-0.7797517091967165,-0.09894719533622265,-0.20444074226543307,0.518263294827193,0.9202925758436322,-0.480371723882854,-0.7862300546839833,-0.4619039702229202,-0.830798976123333,-0.44868341693654656,0.7459433348849416,-0.7988672321662307,-0.16983901197090745,0.12356968317180872,-0.5720630520954728,0.41684496542438865,-0.561383054126054,0.7276337672956288,-0.9904146222397685,-0.9361325316131115,0.5992919681593776,0.2318662442266941,-0.2645920985378325,-0.9750251681543887,0.09636449394747615,-0.5018267421983182,0.9405303685925901,-0.2811090317554772,0.43406662344932556,-0.36731144692748785,0.13234096160158515,0.7107746214605868,0.34557640785351396,0.48598807910457253,0.07109219348058105,-0.8500086930580437,0.053209972102195024,-0.927747193723917,0.09416420804336667,-0.11503461841493845,-0.3961016139946878,-0.8404284939169884,0.4501718492247164,0.3317884407006204,0.8522871620953083,-0.003773083910346031,-0.650629828684032,0.3062796276062727,-0.07262522680684924,0.7197186858393252,0.17527448385953903,-0.6949984892271459,-0.44810447935014963,-0.8289877041243017,-0.17472633393481374,0.6137864645570517,-0.23315812787041068,0.24139146227389574,-0.46144611155614257,-0.923196283634752,0.37363708578050137,0.0453258422203362,-0.15775849111378193,-0.12295119697228074,0.5943156871944666,0.867092598695308,-0.7805699128657579,-0.4858111157082021,-0.7197619825601578,0.7230846332386136,-0.970305991359055,-0.49681179923936725,-0.6862425007857382,-0.4842749726958573,0.996616814751178,0.5626833722926676,-0.3447382585145533,-0.7599857961758971,-0.42348059359937906,0.2913778517395258,0.10602897685021162,-0.75324174342677,-0.2973405276425183,-0.47852937364950776,0.9100417722947896,-0.4288857486099005,-0.742993347812444,-0.7977187861688435,0.493485976010561,-0.8551925946958363,-0.6131507391110063,-0.3500848584808409,0.051059301011264324,0.49541521444916725,0.33606494683772326,-0.3039376921951771,0.28159187408164144,0.9097841219045222,-0.4456547945737839,-0.22205850621685386,-0.3191986372694373,-0.33026561001315713,0.18463732255622745,-0.7245442653074861,0.3368557975627482,0.8690171483904123,0.7409265278838575,0.6641951124183834,0.2706336644478142,-0.7982045561075211,0.9685444724746048,0.9619663232006133,-0.804097946267575,-0.04755766270682216,-0.8865177095867693,-0.03793194377794862,-0.5952708055265248,0.454948291182518,0.9801909602247179,0.2161803594790399,-0.8268374460749328,-0.6706812051124871,0.40113496081903577,-0.5288316826336086,-0.4939312171190977,0.5022131344303489,0.7510781763121486,-0.9512641136534512,0.2390107256360352,0.01774155767634511,0.9505887711420655,-0.25669885287061334,-0.6081596272997558,-0.34960265038535,0.7417651107534766,0.3600781327113509,0.31206274405121803,-0.7575451377779245,-0.8692649947479367,0.9129315163008869,0.3472488895058632,0.16670029843226075,-0.28989954106509686,0.5746306637302041,0.5540411905385554,0.6254979143850505,-0.261914593167603,-0.21134291728958488,0.4353073756210506,0.12980810040608048,-0.6289087263867259,-0.23314328584820032,0.39176272647455335,-0.08667724533006549,0.9045256017707288,0.25535950949415565,0.5375819522887468,-0.06552141718566418,0.6422350858338177,0.0680788611061871,-0.07704589515924454,-0.2796043180860579,0.6470581386238337,-0.6083353538997471,-0.38481577718630433,-0.3285556868650019,-0.16030839690938592,0.273964446503669,-0.8366197794675827,0.41630894830450416,-0.4631310901604593,0.3673359155654907,0.8669904870912433,0.22324901074171066,0.4781669517979026,-0.9781146445311606,0.11905729956924915,-0.7769801230169833,-0.2533557522110641,0.9021726814098656,0.7364996001124382,-0.1843493552878499,0.0656589106656611,0.30530891939997673,0.35745741752907634,-0.06457036407664418,0.29879238503053784,-0.3140777819789946,-0.013755417428910732,0.579044084995985,0.9008402489125729,-0.483235377818346,0.28212381014600396,-0.013045670930296183,-0.23984138714149594,0.9076582132838666,0.10088420938700438,0.6479645101353526,-0.16939927032217383,0.23559098551049829,0.8397184992209077,0.7294844416901469,0.1116660125553608,0.028424722142517567,0.8885239195078611,0.942608374170959,-0.2639588238671422,0.8846571282483637,-0.6555355633608997,-0.9375945194624364,0.49016084522008896,-0.6578213381581008,-0.9614065890200436,-0.5594380730763078,-0.24577824492007494,0.9530927441082895,0.12739497516304255,-0.7200126224197447,-0.12677457556128502,-0.5995688368566334,0.884153638035059,-0.7185374577529728,-0.047121623530983925,0.677930464502424,-0.42535850452259183,-0.3926021275110543,-0.9316662517376244,-0.23776658391579986,0.6399102131836116,0.7355644754134119,-0.6764195207506418,-0.35252210265025496,-0.6645677331835032,-0.8546412689611316,0.02927360637113452,-0.15714641846716404,-0.8439348079264164,0.5670972871594131,-0.37315118638798594,0.7396859666332603,0.7284506023861468,-0.11912156222388148,-0.030594325624406338,-0.9958079648204148,0.03353277547284961,0.23097205720841885,0.6738517275080085,-0.5979644041508436,0.7870629820972681,-0.8548130877315998,-0.4889348172582686,0.5961167141795158,-0.9810223830863833,-0.33936662320047617,-0.865388055332005,-0.5240387883968651,-0.09152300097048283,0.22944361343979836,0.3494920968078077,0.9251541807316244,-0.18988133454695344,-0.952681734226644,-0.08120911940932274,-0.9176797731779516,-0.7102439156733453,0.5614406829699874,0.9298382764682174,0.8125184308737516,-0.8885396705009043,0.6059250854887068,0.1981903100386262,0.5437247734516859,0.28243169467896223,0.5123833511024714,-0.8656133506447077,0.27504944521933794,0.49501087237149477,-0.06091306218877435,0.5804438036866486,-0.2034773356281221,-0.885731871239841,0.3983934000134468,0.006782475393265486,-0.28221797570586205,0.47083462635055184,-0.045236214995384216,0.24176421528682113,-0.5880129444412887,-0.6445331531576812,-0.994228488765657,0.8577897152863443,-0.26252339454367757,0.9452277142554522,-0.24162531783804297,0.7577542965300381,-0.5224890983663499,-0.9074373715557158,0.7690041875466704,-0.675716670230031,-0.0695423698052764,0.1338628502562642,-0.73402836965397,0.2603718498721719,0.04192656697705388,0.9727045740000904,0.3902573720552027,0.7608752106316388,-0.8436616477556527,0.43865383695811033,0.9677866073325276,-0.5527898496948183,-0.6982142725028098,0.09240717673674226,0.07216491084545851,0.17018248373642564,0.894685476552695,0.8971406356431544,0.3707630028948188,-0.567579094786197,0.5827270075678825,-0.8166035963222384,0.6186611093580723,0.2511083730496466,0.5352933723479509,-0.7178989448584616,0.23881275113672018,0.15067883487790823,-0.9468395933508873,-0.9995522587560117,-0.6561215887777507,-0.2008863864466548,-0.241210350766778,-0.7362046451307833,-0.5036343010142446,-0.8133360650390387,0.20260650012642145,0.9216034514829516,-0.8131178691983223,0.6928418674506247,-0.9076454611495137,-0.03223948832601309,-0.4224818325601518,0.8523752856999636,0.07924685627222061,0.7610940635204315,0.99626947613433,0.6298126471228898,-0.24107332853600383,-0.17786382045596838,-0.7136908280663192,-0.7614551796577871,-0.9877717671915889,-0.8041707961820066,-0.9063226077705622,-0.00778326066210866,-0.762172285001725,0.804299327544868,0.9313095221295953,-0.252217052038759,-0.8612125650979578,0.014487429987639189,-0.32817347440868616,-0.6718243602663279,-0.31324729695916176,0.23239511949941516,-0.501924748532474,-0.3312000744044781,0.5173159944824874,-0.39565607672557235,-0.1116515127941966,0.35672379238530993,0.32527806144207716,-0.8705074726603925,0.5676145520992577,-0.8394406759180129,-0.16747288778424263,-0.8815202759578824,0.45456697372719646,-0.6443671626038849,-0.4069719146937132,-0.48605606332421303,-0.6033534994348884,-0.5983925717882812,0.3990171239711344,0.755207619164139,0.25017077568918467,-0.67749068653211,-0.13908894546329975,-0.4149587997235358,-0.7615495189093053,0.035323324147611856,-0.7701802086085081,0.4457557904534042,-0.5552365998737514,0.7448705146089196,-0.7730664694681764,-0.940721595659852,-0.7753721456974745,-0.5666047977283597,0.057806297205388546,-0.11979829194024205,0.6813188260421157,-0.6816147807985544,-0.6026429701596498,0.9933586358092725,0.29604310961440206,-0.7957533216103911,-0.19298945553600788,-0.2451461423188448,0.8582033128477633,0.22055042767897248,-0.7085389932617545,-0.6790652303025126,0.017316277138888836,0.5241701756604016,0.12581916199997067,-0.3067427081987262,-0.2141195833683014,0.9730002675205469,0.6677073137834668,0.9132767487317324,0.9000094807706773,-0.2904036967083812,0.5417135520838201,0.22606268152594566,-0.6735713956877589,0.3647544072009623,-0.42255067685618997,0.28250462375581264,-0.22042646957561374,0.05269345035776496,-0.9450226789340377,-0.37596553564071655,-0.32280086167156696,-0.6885412381961942,-0.9264208399690688,-0.31776989437639713,0.9755095578730106,0.38008138025179505,0.005564120132476091,0.15010515926405787,0.06358519103378057,-0.9019721588119864,0.09322327468544245,-0.7349419170059264,-0.6336529972031713,-0.7089249840937555,-0.9189159609377384,0.023865982424467802,0.8119685212150216,-0.6244003204628825,-0.40788120590150356,-0.13508231518790126,-0.5242074993439019,0.8823663205839694,0.8625701051205397,-0.49409919464960694,-0.48302854411303997,-0.7710927906446159,0.6991286068223417,0.30369311664253473,-0.766560438554734,0.16880558617413044,0.969557031057775,0.7201014789752662,0.6533382055349648,0.3084862185642123,0.1749633476138115,0.061169927939772606,0.6209473791532218,0.5864027254283428,0.6662042611278594,-0.18611295288428664,0.20735186897218227,0.04164190869778395,-0.5051488564349711,0.36083929101005197,-0.9812773526646197,0.8426620899699628,-0.41191577399149537,0.9328642915934324,-0.5864188503473997,-0.48533274745568633,0.6064899191260338,-0.19046838814392686,-0.5449667903594673,0.26174365542829037,0.025136989075690508,0.6389065533876419,0.33650335343554616,-0.8941516829654574,0.2327466355636716,0.730675223749131,0.2337035504169762,0.8238243437372148,0.8822589642368257,-0.42647431837394834,-0.32464961614459753,-0.0834392779506743,0.33803098974749446,-0.03221687115728855,-0.3121858914382756,0.8624520152807236,0.7612486449070275,0.1740131671540439,-0.6761269252747297,0.6348159098997712,-0.869195219129324,0.6432986385188997,0.33688008133322,0.20402981666848063,0.19353084173053503,0.3260979442857206,0.9325828249566257,-0.8103690356947482,-0.022633644752204418,-0.13171127438545227,-0.620186057407409,0.7179607874713838,0.7074039173312485,0.9852711046114564,0.4856836684048176,0.22272702725604177,-0.7578458152711391,0.1724633346311748,-0.9772948008030653,-0.49530935660004616,-0.26860256819054484,-0.23253215057775378,0.42282121861353517,0.569702498614788,0.37479860894382,-0.9262686581350863,0.044008778873831034,0.37303746677935123,-0.3367411266081035,0.8351553524844348,0.2058464284054935,-0.4847357990220189,0.7351091993041337,0.06318948231637478,-0.27951829554513097,-0.6133731217123568,0.7740025050006807,-0.46582985343411565,0.1556396628729999,-0.9536525933071971,-0.09744250029325485,-0.8504411340691149,0.429766196757555,0.45376652758568525,-0.23072896292433143,0.7395710777491331,-0.8277242230251431,0.03694483544677496,-0.46355414809659123,0.891594163607806,-0.6374438959173858,-0.8028256762772799,-0.8537350138649344,0.5567947798408568,-0.009082189295440912,-0.18966267118230462,-0.14078432554379106,-0.10042274836450815,-0.0646917256526649,-0.8249559602700174,-0.20645196875557303,-0.9410772765986621,0.3791631958447397,-0.5439880611374974,0.9582325229421258,0.6709175119176507,-0.28977057058364153,-0.6889180946163833,-0.776435418985784,0.5124721084721386,-0.1418258505873382,0.7018989655189216,-0.8066192828118801,-0.8757034670561552,0.9776559234596789,-0.9986188570037484,0.5995204052887857,0.9805435878224671,-0.7345917262136936,0.9554610289633274,-0.5294769988395274,-0.3743913467042148,0.9312491384334862,0.8335892967879772,-0.531860442366451,-0.6441762577742338,0.9901191368699074,-0.13675767788663507,0.49836032930761576,-0.7486592247150838,0.03145996201783419,0.11421078257262707,-0.7958717360161245,0.8937359829433262,-0.7499035452492535,-0.7650302150286734,-0.17566625121980906,-0.1905420240946114,0.3995368951000273,0.6101376614533365,-0.5074346461333334,-0.9489350761286914,-0.3056190609931946,-0.7582823545672,0.41274869814515114,0.8335495390929282,-0.2085288972593844,-0.5515166986733675,0.4472911381162703,1.9871164113283157e-05,0.9309810642153025,0.41423057299107313,0.00434995349496603,0.0617558928206563,-0.9647801388055086,-0.33136493992060423,-0.18327411357313395,0.6228411914780736,0.7536434037610888,0.0130174127407372,-0.5706251161172986,0.6406375030055642,0.7626033802516758,0.5145499897189438,-0.5785673703067005,-0.273524871096015,0.0856278077699244,-0.7180114919319749,0.3144690841436386,0.8425156841985881,0.6401054169982672,0.789129211101681,0.8639814341440797,0.666773886885494,0.21323885209858418,0.9032451454550028,0.8113763658329844,0.31865855026990175,0.47518995171412826,-0.9059889749623835,-0.06645791092887521,0.5775846485048532,-0.3108669058419764,-0.8275185953825712,-0.448640828486532,-0.650972937233746,-0.3970039403066039,-0.3749081864953041,0.6336107314564288,0.1453375844284892,-0.056941090151667595,0.1891127396374941,0.46960728662088513,0.8968626703135669,-0.5733343735337257,0.9618111937306821,0.7173552424646914,-0.7872268608771265,-0.3230625647120178,-0.3282747892662883,-0.9771300447173417,-0.8179440936073661,0.04843267984688282,-0.16524020163342357,-0.42071123281493783,-0.6116506760008633,-0.5162323447875679,0.8607264291495085,-0.45742594031617045,-0.13555900380015373,-0.6535494737327099,-0.971536273136735,-0.8202980901114643,0.6551253795623779,-0.5679791942238808,-0.1384218675084412,-0.5925359688699245,0.7129363771528006,0.04009964503347874,-0.6359239816665649,0.6697040158323944,-0.7277626916766167,0.8577284747734666,0.33929329458624125,0.8232966116629541,0.5271754506975412,-0.004742722492665052,0.037664104253053665,-0.658629423007369,-0.7381011522375047,0.5007953657768667,-0.7830461580306292,0.9752674102783203,0.5526677537709475,-0.28237833082675934,-0.7054474130272865,-0.1939975186251104,-0.42353722313418984,0.9291121135465801,-0.21107823913916945,-0.817340730689466,-0.42232769215479493,0.9772746018134058,-0.7705410891212523,0.2510552699677646,-0.6833079848438501,-0.8622411526739597,0.4345423267222941,0.34022004436701536,-0.6537033254280686,-0.6906838100403547,-0.7372961286455393,-0.6671278607100248,-0.9509741142392159,-0.5036781509406865,-0.4595041023567319,0.19000975834205747,0.8874618294648826,-0.4748551109805703,-0.4037665515206754,-0.2712045614607632,-0.7384098106995225,-0.18154893955215812,0.8348593888804317,-0.2857652925886214,-0.7835112805478275,-0.5825708415359259,-0.3046142770908773,-0.5960319619625807,0.9310684017837048,0.08972412161529064,0.9142990373075008,0.5780543372966349,0.6257453495636582,0.6952280811965466,-0.14279282838106155,0.13499617669731379,0.1118539241142571,0.004356375429779291,-0.42658756021410227,-0.518944219686091,-0.42123901238664985,0.22241662675514817,-0.18066878011450171,-0.553904599044472,0.8962183971889317,0.035694310907274485,-0.504325145855546,-0.5278396201319993,0.9882225566543639,0.37827237229794264,-0.4552251286804676,-0.6497595040127635,-0.015764588955789804,0.7441635993309319,-0.5220053428784013,-0.6187300984747708,-0.3570295446552336,-0.7296268860809505,-0.35033302288502455,0.23845802107825875,0.9893303485587239,0.31958610843867064,0.6613900461234152,-0.6419981536455452,-0.389123332221061,0.25690189376473427,-0.4517140160314739,-0.17755317641422153,-0.5216444469988346,0.20380204683169723,0.02369657764211297,-0.8953349897637963,0.35749115981161594,-0.639967727009207,-0.025717472657561302,-0.28456242522224784,-0.9918750529177487,0.39776999317109585,0.4290804686024785,0.4418886308558285,0.6209176173433661,-0.07002492574974895,0.2383456495590508,0.3040105253458023,-0.14655225723981857,-0.5666024014353752,0.22796651674434543,0.8272898844443262,0.5930240340530872,-0.6193403578363359,0.8262838870286942,-0.8591794143430889,-0.12293360568583012,-0.7538392515853047,0.19828344602137804,-0.2779456852003932,0.15009702323004603,0.2677003634162247,0.8518626629374921,0.4279035534709692,0.0931999534368515,-0.15168526442721486,-0.9552402072586119,0.526205777656287,0.03366274572908878,-0.4421990145929158,-0.7949408045969903,0.5133193484507501,0.038118038326501846,0.9378838376142085,-0.2521553188562393,0.8217975567094982,0.35140104591846466,0.8189780814573169,0.7021264238283038,-0.5040501169860363,0.35276327561587095,0.20446789916604757,-0.7158489497378469,-0.0861789882183075,-0.560625575017184,0.5332075236365199,-0.35413405764847994,0.46209705900400877,0.6865504556335509,-0.9465814274735749,0.9196903491392732,0.2859054789878428,0.9811684624291956,0.10688674543052912,0.03805472981184721,0.38029181817546487,-0.5195049690082669,0.7839099713601172,-0.7117032948881388,-0.8028602669946849,-0.16803174233064055,-0.8677100799977779,-0.45993489818647504,-0.807938618119806,-0.46463341172784567,-0.5829366981051862,0.3112333961762488,0.02717578550800681,0.2630313173867762,-0.08811146672815084,0.663970738183707,-0.01040513813495636,-0.8184773623943329,0.5243343850597739,-0.11112378584221005,0.3975640209391713,-0.7991603463888168,-0.6972740259952843,-0.1625481965020299,-0.15054883528500795,0.7650485462509096,-0.5378264645114541,-0.14090350875630975,0.658093482721597,0.1622879863716662,-0.2041093399748206,0.5248488862998784,-0.6195576186291873,-0.8887531789951026,0.7887383722700179,0.076325171161443,-0.6173930345103145,0.14020902896299958,0.2936927294358611,0.5041370000690222,0.92075049970299,-0.582522926852107,0.8711800188757479,0.40010269870981574,-0.12572048138827085,-0.3949643597006798,0.9857228337787092,-0.31235194206237793,-0.9429741045460105,-0.15283286152407527,-0.2959579639136791,0.9979483247734606,0.7740160683169961,-0.9312758347950876,-0.9609063230454922,0.30187971889972687,-0.9944387688301504,-0.3773763682693243,0.006345028523355722,-0.9633642467670143,0.926915863994509,-0.1778893992304802,0.9534308239817619,0.46595254028216004,-0.7408704943954945,0.5292006330564618,-0.4941249950788915,-0.10960766766220331,-0.8695061011239886,-0.29318492114543915,0.7041107742115855,-0.4222043491899967,-0.5991091700270772,0.2690274305641651,-0.46331100538372993,-0.24849021714180708,-0.7866117968223989,0.0226056557148695,0.4807390561327338,0.1649467064999044,-0.2776709571480751,0.3239473453722894,-0.9367752484977245,0.270317024551332,-0.20376593293622136,-0.7521283156238496,0.16732412902638316,0.8380218776874244,-0.6068197381682694,-0.021885542664676905,0.5021146014332771,-0.9978719027712941,0.13475320441648364,0.8789592613466084,0.08547980291768909,0.5663444800302386,-0.9295615409500897,-0.2891753278672695,0.9807491870597005,-0.17655100161209702,0.004813267383724451,0.6096538966521621,0.2795763681642711,-0.4153784941881895,0.07332455739378929,0.06329962937161326,-0.21420942526310682,0.5648572389036417,-0.7765919556841254,0.8098689368925989,0.794068206101656,-0.9617374800145626,-0.3882588595151901,-0.5811178823933005,0.2607523617334664,0.3145312094129622,-0.6931221354752779,-0.12431412981823087,0.006534153129905462,0.03283569496124983,-0.7563344477675855,-0.6330783613957465,0.9185076453723013,-0.8968682368285954,-0.891756908968091,0.20302273891866207,0.830672409851104,-0.9628739110194147,0.987803082447499,0.17222249088808894,-0.307504425290972,-0.6335985148325562,0.828336738049984,0.889720173086971,-0.23081626929342747,-0.4580526449717581,0.8003826756030321,-0.2819867832586169,-0.7201976249925792,0.5432983511127532,0.6944281184114516,0.4152231770567596,0.5590320993214846,0.7314858161844313,0.9919853373430669,-0.4746529068797827,-0.9570486759766936,-0.33751515252515674,-0.6181055954657495,-0.011772900354117155,-0.5757037028670311,0.22008721251040697,0.5511304344981909,0.1759948986582458,-0.331314817070961,0.2962404224090278,-0.9380605239421129,0.42037208238616586,-0.03188947448506951,-0.2298302217386663,0.14159813057631254,0.09346453100442886,0.0041345697827637196,-0.5225536171346903,0.9856622535735369,0.9500217600725591,-0.14724915195256472,-0.5319787017069757,-0.6310432273894548,0.35770933516323566,0.69389190338552,-0.23722971882671118,-0.9652572083286941,0.5645356625318527,-0.6439577615819871,-0.864169112406671,-0.8973062504082918,0.15237297723069787,0.2317753923125565,0.37338259583339095,0.3209742750041187,0.8979503558948636,0.1719344900920987,-0.843494804110378,-0.6188484109006822,0.8292652661912143,-0.9649020829237998,-0.5635100766085088,-0.6519651655107737,0.7458458468317986,0.3810965921729803,0.6085585695691407,-0.7979564354754984,0.7281440896913409,0.13320767460390925,0.03919558506458998,-0.7754423571750522,-0.7445841683074832,-0.19983451114967465,-0.1539926966652274,-0.23136830469593406,0.8697091843932867,-0.9524037432856858,-0.870578303001821,-0.3265666817314923,-0.5386080369353294,0.7501993607729673,-0.8921581609174609,-0.07010147254914045,0.947952798102051,-0.6820869790390134,0.9823311781510711,-0.03485133172944188,-0.3122373539954424,-0.04155726823955774,0.31087180878967047,-0.511127701960504,-0.10884034400805831,-0.2747174222022295,0.03808218473568559,0.49073347682133317,0.8974145725369453,-0.9808756592683494,-0.9581073382869363,0.7492476520128548,0.4533021952956915,0.6933484352193773,-0.3612522748298943,-0.7922758306376636,0.3699882091023028,-0.17897162260487676,0.38973377691581845,-0.23662249138578773,0.10459608258679509,-0.3782380768097937,0.3728529307991266,0.03179270960390568,-0.21388257341459394,-0.6045340597629547,-0.5450592059642076,-0.5751910144463181,0.855781520716846,-0.7036776538006961,0.7819929174147546,-0.3982191081158817,-0.7495452417060733,-0.8809013129211962,-0.5684029436670244,0.8657935629598796,-0.5425851219333708,-0.00856244470924139,-0.3821524535305798,-0.704063709359616,0.17686089780181646,0.9165747067891061,0.5020362143404782,0.2997680199332535,-0.5721389125101268,-0.36726946011185646,0.4680305551737547,-0.3150787064805627,0.012260242830961943,-0.978172255679965,0.3424015915952623,-0.36564088705927134,0.6486907387152314,0.3592025856487453,0.7466545719653368,0.731038446072489,-0.6733511155471206,0.38681141613051295,-0.9515563366003335,0.5537792099639773,0.841243929695338,-0.538716372102499,-0.9010110446251929,0.03291764995083213,-0.005634283646941185,-0.6363758463412523,0.534255241509527,-0.462631166446954,0.5908738672733307,0.38269017497077584,-0.2528651929460466,-0.025223670061677694,0.6056544315069914,-0.6912530199624598,-0.38271237444132566,0.8273576553910971,0.7829248756170273,0.9545923173427582,-0.9606227967888117,-0.08276729937642813,0.1157723069190979,0.14028134243562818,0.6791972182691097,0.8924421011470258,-0.7816889374516904,0.28799030603840947,0.9051268631592393,0.7262957128696144,-0.48226869525387883,-0.2505420851521194,-0.3202413050457835,-0.09623147221282125,0.5719479685649276,-0.1770594920963049,-0.35703913029283285,-0.8421218786388636,0.004528088495135307,-0.4269956727512181,0.7681877468712628,0.7176955915056169,-0.572949506342411,0.49591846857219934,0.14489168720319867,-0.5253328811377287,-0.22996572870761156,-0.7777647278271616,-0.8576288218609989,0.8328027878887951,-0.6840828731656075,-0.7283400511369109,0.5571619011461735,0.9110539085231721,-0.148222126532346,0.03487647324800491,-0.7418851293623447,0.043932223692536354,0.5461573963984847,0.06033694138750434,0.6428058948367834,0.3772065443918109,-0.610641798004508,0.8385895467363298,-0.22658800520002842,-0.06862199027091265,0.9370127976872027,-0.8770899027585983,-0.9427664969116449,0.0280064488761127,-0.8194932332262397,0.3791548884473741,0.3119127410463989,0.8593068816699088,0.2566222916357219,-0.11102135898545384,0.4814121788367629,0.7836847435683012,0.1242026942782104,0.055172023829072714,0.27223859867081046,-0.5672952025197446,-0.9957064297050238,-0.9556649466976523,-0.018437259830534458,-0.7364979120902717,0.14299245784059167,-0.8727627112530172,0.24761263374239206,0.8472767928615212,-0.569420862942934,-0.20005570538342,0.9003895591013134,-0.36023019813001156,0.8180171982385218,-0.4822248788550496,-0.39730518218129873,-0.17715560412034392,-0.09665785962715745,0.2811898235231638,0.5370875303633511,-0.9998384187929332,0.3802179619669914,0.4614460258744657,-0.32500411942601204,0.27345052640885115,-0.8480328158475459,-0.06411737902089953,-0.42326062684878707,-0.7575661148875952,-0.6845551934093237,0.629314485937357,-0.729253935161978,0.17245305515825748,-0.6261829156428576,-0.6947411517612636,0.6991385859437287,-0.129018513020128,0.6386734414845705,-0.6061382521875203,-0.31574619095772505,-0.9962437064386904,0.661338257137686,0.25864577013999224,0.8972111637704074,-0.16503117140382528,0.8979794424958527,0.03902812488377094,-0.2733792820945382,-0.09873980330303311,0.36586094507947564,0.8920062785036862,-0.4075925871729851,-0.7601090767420828,0.933951735496521,0.056761815678328276,-0.67313940403983,0.21491831401363015,-0.7416546051390469,0.5194261437281966,-0.8574757748283446,-0.9214020622894168,0.7796641020104289,0.6143241515383124,0.65702696563676,0.9889237033203244,0.9390729013830423,-0.48242554254829884,0.9617497893050313,-0.052836890798062086,-0.3898570346646011,0.8645651740953326,-0.7381687457673252,0.8502543168142438,-0.8168572476133704,-0.9147299835458398,0.4224031651392579,-0.570616370998323,-0.44669798435643315,0.011493623722344637,0.1414734609425068,-0.5308249974623322,0.7581976260989904,0.11139557976275682,0.9828015044331551,0.40580863738432527,-0.9591077524237335,0.5565670584328473,-0.13569697132334113,-0.8899743533693254,0.5286791939288378,-0.35869551775977015,0.020802695769816637,0.3823908558115363,0.6399155431427062,-0.8573399796150625,0.22824844159185886,0.3202851298265159,-0.3579628854058683,0.41443394031375647,0.2530513620004058,-0.5023370496928692,0.562447221018374,0.6728850067593157,-0.6869386620819569,0.8249414130114019,0.9622554872184992,-0.3772463873028755,0.5620251800864935,-0.7907296256162226,0.8568973364308476,0.35719184298068285,-0.861914109904319,0.9655053387396038,0.7840959401801229,-0.5556450965814292,0.46361920703202486,-0.8601212301291525,-0.6436080797575414,-0.3198548504151404,-0.6922586099244654,-0.06571872346103191,-0.352240530308336,-0.4366570352576673,-0.7831342509016395,-0.2575350278057158,-0.8400236913003027,-0.02202379982918501,-0.32313565257936716,0.2951710680499673,-0.940803958568722,0.9922936810180545,0.7019067876972258,-0.3834169046021998,0.753878544550389,-0.5878607053309679,0.7284375745803118,0.1660203728824854,0.5908141890540719,0.3938269433565438,0.3329676231369376,-0.25931831588968635,-0.3052116548642516,-0.7335056508891284,0.358001297339797,-0.6160444403067231,-0.15999765694141388,0.08277237834408879,-0.33085702545940876,-0.18901840830221772,0.08958878321573138,0.8286560871638358,-0.7018660469911993,0.8842286863364279,0.6974958893842995,0.9715590048581362,-0.43495539482682943,-0.7028904259204865,0.5415891692973673,0.5745266056619585,0.13366940803825855,0.5470236781984568,-0.6014124467037618,-0.7930478206835687,-0.8748809425160289,0.12537508690729737,0.2749641523696482,-0.87990577891469,-0.7408505943603814,0.24316071206703782,0.27982340659946203,-0.39066392788663507,0.19737442629411817,0.395150407217443,-0.20683524571359158,0.007368708029389381,-0.28264094330370426,-0.8479282157495618,-0.33151668729260564,-0.565263697411865,-0.6562066692858934,-0.33732655458152294,0.6756581198424101,0.11211297754198313,0.8623067480511963,0.1521551627665758,-0.9153798907063901,-0.26654339162632823,-0.05579282296821475,-0.11931623239070177,-0.24278054386377335,-0.9323621960356832,0.37999986531212926,-0.7839973960071802,-0.5501905963756144,0.8624512082897127,-0.8870496386662126,-0.2636573417112231,0.39718621550127864,0.6869050222449005,-0.7114085275679827,0.6946253636851907,-0.44126683194190264,0.8372347201220691,0.3003744320012629,0.5512990797869861,0.015230599325150251,-0.055333474185317755,0.061312812846153975,-0.5712915859185159,0.8112389980815351,0.18228003988042474,0.6543174907565117,0.5760831036604941,0.2660749265924096,-0.5505116479471326,0.4913842990063131,-0.5360370180569589,0.27474324963986874,-0.5719417175278068,-0.1759236711077392,0.7231447608210146,-0.46953489957377315,0.8237175005488098,-0.19068974955007434,0.49617537250742316,0.8072934821248055,-0.7417031922377646,0.8629999211989343,0.6073336759582162,-0.4300298080779612,-0.08738088374957442,-0.5061363098211586,-0.4599468521773815,0.5479160170070827,0.8709784829989076,0.17741934349760413,0.2128483122214675,-0.0157256661914289,0.16522746160626411,-0.9051953162997961,-0.5950621911324561,-0.48462691064924,-0.19599559577181935,-0.4623988280072808,0.13238374423235655,-0.9407285177148879,0.6764773661270738,0.9838600042276084,0.3405471076257527,0.7925828387960792,-0.5469701341353357,-0.574213488958776,0.06657720636576414,0.7996076941490173,-0.18076979648321867,0.849496616050601,0.39973594853654504,0.48557718377560377,-0.885152829810977,-0.483851685654372,-0.10457068216055632,0.7391233355738223,0.391702389344573,-0.6755646727979183,0.11616710154339671,-0.802686333656311,-0.8026182344183326,-0.004080639686435461,0.6873960802331567,0.029156730510294437,-0.5630312338471413,-0.8999585476703942,0.41636335710063577,0.6882391781546175,0.19299509562551975,0.7195631265640259,0.4554324131458998,0.08849143702536821,-0.8211676073260605,0.5516246897168458,0.6411073575727642,0.8135046376846731,0.6667408910579979,-0.032188619021326303,-0.9801709582097828,-0.22058864124119282,0.23943111207336187,0.7327793622389436,-0.5749848848208785,-0.6661629346199334,0.9013010887429118,-0.46336845960468054,0.9789686570875347,-0.32365706376731396,0.3068553074263036,-0.6728982329368591,-0.5012865634635091,0.9410577993839979,0.5043203942477703,0.07441997155547142,0.5261339186690748,0.4393264940008521,0.06345365522429347,0.368079271633178,0.8668956998735666,0.22606869926676154,0.18606321141123772,-0.3582931752316654,-0.10626358585432172,0.6562625337392092,-0.7151461406610906,-0.10631756437942386,-0.8743234965950251,0.2852112124674022,-0.3512355233542621,-0.43409287789836526,-0.3389356303960085,-0.05843494785949588,0.2024667914956808,-0.6770324842073023,-0.6418573893606663,-0.9681688640266657,0.24869936797767878,0.9920966657809913,0.03745964728295803,0.2524082828313112,0.2806189660914242,-0.2505709412507713,-0.376065740827471,-0.08195898123085499,0.17216380266472697,-0.9537678239867091,-0.26066465210169554,0.9465830866247416,-0.7178917489945889,-0.6425500898621976,0.5977999265305698,-0.46159385796636343,0.8870458249002695,-0.8937264084815979,0.39790255203843117,-0.21937258867546916,-0.14301453810185194,-0.4952762355096638,0.7252266495488584,-0.7221257337369025,-0.1672736620530486,0.7159166671335697,0.27408117055892944,-0.013177185785025358,0.29421287402510643,-0.19418035121634603,0.3451001634821296,-0.1512758401222527,-0.5616586809046566,0.05797646567225456,-0.8878584345802665,-0.49277627654373646,0.28092757845297456,-0.24437720887362957,-0.8909847787581384,-0.4563845293596387,0.6805739882402122,0.24438115116208792,-0.2811192376539111,-0.06772453151643276,0.6001712903380394,-0.11749011371284723,-0.7301969868130982,0.47925716638565063,-0.9011708539910614,-0.015631080139428377,-0.8374578640796244,0.8519997373223305,-0.06592221185564995,0.5708512905985117,-0.8265595925040543,-0.7912749857641757,0.3493711017072201,-0.7016314156353474,0.6755447839386761,0.2558929082006216,-0.8792481287382543,-0.024716567248106003,0.7781894649378955,-0.9995686281472445,0.9682880407199264,0.7927289921790361,-0.8788139908574522,-0.2668221895582974,0.17145875003188848,-0.6254657092504203,-0.505983185954392,-0.9543736008927226,-0.7581257624551654,0.7878868319094181,-0.6873079566285014,-0.1070306533947587,-0.2083917586132884,0.5893397186882794,0.6701451460830867,0.2683885511942208,0.8198236529715359,-0.20425596134737134,-0.6916981763206422,-0.523172986228019,0.4203385622240603,0.04968216270208359,-0.6592950574122369,0.9175631012767553,0.9396315030753613,0.5348872500471771,-0.9426723839715123,-0.2610985031351447,0.6644770787097514,-0.9970162729732692,-0.8004660466685891,-0.5035187276080251,0.4281905051320791,-0.7478099432773888,0.9099863502196968,-0.08076526690274477,0.5357828596606851,0.1839907942339778,-0.9241474433802068,0.3459874182008207,-0.4850926664657891,0.3804100682027638,-0.7023285781033337,-0.7167984256520867,0.4119963594712317,-0.527204311452806,0.6200872319750488,0.5642525064758956,0.3978695156984031,0.13849218655377626,0.20657984353601933,-0.3751598563976586,0.08765091188251972,-0.9912182027474046,0.3946471200324595,0.7968430565670133,-0.326244224794209,-0.9234748715534806,0.7696353974752128,-0.21485909074544907,0.23662625905126333,-0.24284577369689941,0.9896449418738484,-0.9209676687605679,-0.47319266106933355,-0.5103406482376158,-0.005991654470562935,-0.2085547219030559,-0.5675029144622386,0.44993350096046925,-0.6275741369463503,-0.5651012910529971,0.6358823799528182,0.3854624158702791,-0.15935411769896746,0.42852523596957326,-0.8627979992888868,0.24166811304166913,0.8055206378921866,0.33499551797285676,-0.6460130414925516,0.6408532871864736,0.16745353071019053,0.6709490939974785,0.19905596133321524,-0.5267517608590424,-0.2927060634829104,-0.9179850658401847,-0.4151296401396394,0.6733615999110043,0.5835437662899494,-0.3503808588720858,0.8612244399264455,0.2633131234906614,-0.5946453846991062,-0.36686891317367554,-0.6727819251827896,0.9108236846514046,0.9939292655326426,-0.8544815187342465,0.5178294316865504,-0.1602929187938571,0.6851754705421627,0.9514305060729384,0.9471413465216756,-0.44092922657728195,-0.6246440163813531,-0.14127775421366096,0.742182953748852,0.2488798196427524,-0.06884178519248962,-0.5552768115885556,0.08056603651493788,-0.8583675157278776,-0.019216759130358696,-0.8898640139959753,-0.3789596236310899,0.5724715399555862,0.2632802911102772,0.4026124579831958,-0.6290280693210661,0.3177327043376863,-0.2543911770917475,-0.17717702686786652,0.26794491801410913,0.8143999520689249,-0.8554747831076384,0.6768333879299462,-0.5730679668486118,0.3796260287053883,-0.1383242653682828,0.28731626691296697,-0.6865424867719412,0.31836240692064166,0.4397198208607733,-0.012183198239654303,0.023613012861460447,0.6903154207393527,-0.03940126299858093,-0.9644812252372503,-0.9549837415106595,-0.8692882778123021,0.28945373371243477,0.6783849280327559,0.9688033927232027,-0.2889728592708707,0.41617413563653827,0.9935846705920994,-0.5144592984579504,-0.23204091237857938,-0.15613346034660935,-0.9481949992477894,0.0653597442433238,0.5800788844935596,-0.44128815457224846,-0.47669969545677304,0.8184270667843521,0.5722912708297372,-0.6699060974642634,0.699017477221787,0.6701421244069934,-0.9246229184791446,0.539229070302099,-0.4652465428225696,-0.916459265165031,-0.6665583751164377,0.14902211353182793,0.7218795106746256,0.5144680929370224,-0.7933945162221789,-0.16578761767596006,0.773885634727776,0.06611966667696834,-0.38874511513859034,0.9491049866192043,0.8988283220678568,-0.7297113193199039,0.7946038991212845,0.9552480396814644,0.09080294147133827,0.6833359310403466,-0.7597808027639985,0.8528369180858135,0.19072718592360616,0.6959633901715279,-0.2855470608919859,0.795708472840488,0.9052947917953134,0.8706711139529943,-0.9331878167577088,0.24876741832122207,-0.49794133426621556,-0.6460381485521793,0.10712321847677231,0.7636656435206532,0.03438143013045192,0.32625049026682973,0.9706552186980844,-0.6590950726531446,0.3402173463255167,-0.570042734965682,-0.10739062773063779,-0.4702694406732917,-0.2608223636634648,-0.14713594550266862,0.24643784947693348,0.5871958513744175,0.5297965751960874,0.30896715074777603,0.5719791767187417,0.15829966543242335,0.7966852318495512,0.5058252392336726,-0.4651433117687702,-0.8814112599939108,-0.649409422185272,-0.45712598506361246,-0.366096671205014,0.8862092341296375,0.1586537673138082,-0.3422101750038564,0.9245276125147939,0.9652533656917512,-0.7446230165660381,0.3589809858240187,0.6740089626982808,-0.22668515844270587,0.6742045632563531,-0.5881709838286042,-0.8360196393914521,0.8128271331079304,0.27106305770576,0.14641495840623975,-0.5529861762188375,0.8672345764935017,-0.189007380977273,-0.39664473477751017,-0.5743939932435751,0.29810260282829404,0.22763232281431556,0.17516344971954823,-0.6998490551486611,0.15110834501683712,0.5745995854958892,0.4758767909370363,0.9218195155262947,-0.048798127099871635,-0.730790785048157,-0.20109654450789094,-0.05052309902384877,0.6696111690253019,-0.6072005615569651,0.8151648277416825,-0.13003521459177136,0.38610875280573964,-0.6471376214176416,-0.2026983625255525,-0.1676526921801269,0.6346368254162371,-0.9710037396289408,-0.4238165612332523,-0.9879061463288963,-0.12794184917584062,0.05728782992810011,0.10736365523189306,-0.4219810632057488,0.7473099115304649,-0.8452349584549665,0.3123334492556751,-0.5399623531848192,0.947392241563648,-0.6482861754484475,0.08133634785190225,-0.3997622621245682,0.9267426179721951,0.5219228286296129,0.7631112360395491,-0.9613575269468129,-0.17525418661534786,-0.26761754089966416,0.935969683341682,-0.8347647758200765,0.5514995297417045,-0.8675885293632746,0.23143326817080379,0.3565984428860247,-0.9702588045038283,-0.08826027903705835,-0.6058948570862412,0.6917636026628315,0.07511952798813581,-0.4702264382503927,0.5990436486899853,0.7016634698957205,-0.24537791404873133,0.712218280415982,-0.08495901012793183,-0.6550873452797532,0.5918920892290771,0.8368715913966298,-0.22516099782660604,0.9565806007012725,-0.36111218109726906,-0.6229609907604754,-0.3766135326586664,-0.783120758831501,-0.19147648103535175,-0.1433628718368709,0.001134384423494339,0.7209963020868599,0.9928547344170511,0.562740242574364,0.08764234418049455,0.6167551442049444,-0.30323427729308605,0.8615704737603664,-0.9876290187239647,0.2009951565414667,0.20202793506905437,-0.46608316292986274,0.18600683053955436,0.8656803206540644,0.8746400652453303,-0.49580731336027384,0.296613740734756,-0.23512275889515877,-0.3800299670547247,-0.6682401644065976,0.48790158284828067,0.4913545632734895,-0.12603628588840365,0.6032719374634326,0.7344658924266696,0.6368669113144279,0.041766947600990534,-0.40371106984093785,-0.3265342586673796,0.16431501833721995,-0.1462549427524209,-0.6299076117575169,0.29916141740977764,0.6711772261187434,0.7472036555409431,0.9471922311931849,-0.5540382745675743,-0.6479132259264588,0.6484996173530817,0.045446771662682295,0.1826829807832837,0.24456403404474258,0.9354847064241767,-0.11595547804608941,0.6904337299056351,-0.3267867099493742,-0.12755659222602844,-0.6491893222555518,-0.6745217796415091,0.6786237885244191,-0.6794773624278605,-0.6917898464016616,-0.8786931489594281,0.7808886226266623,-0.3334173713810742,0.881595438811928,0.5116691710427403,0.6118076699785888,0.14846310252323747,0.4335483475588262,0.9603866240940988,0.29020564537495375,0.8787387683987617,0.31886875769123435,-0.6688495604321361,0.6353625496849418,-0.05560480058193207,0.0026010903529822826,0.3059726133942604,0.7607424631714821,0.7079055276699364,0.4275775789283216,-0.44594297418370843,0.2909738002344966,-0.24500699387863278,0.8502647955901921,0.9146339963190258,0.07712025754153728,-0.19604729674756527,0.8180225668475032,0.06012430088594556,-0.943583557382226,0.7710293401032686,0.8118392550386488,-0.6859926749020815,0.7209335011430085,0.5878518270328641,-0.5027603073976934,-0.7440924933180213,0.3871934083290398,0.5826536267995834,-0.05935664288699627,-0.3174203112721443,0.24034218164160848,0.4682378829456866,0.4241630854085088,-0.35327918268740177,-0.8040390550158918,0.22169496165588498,0.8707988788373768,-0.326442064717412,-0.9700707173906267,-0.9848703183233738,-0.2710385490208864,0.5929092867299914,0.6180220413953066,0.21789603494107723,0.12983040884137154,0.7038486753590405,-0.6818555342033505,0.5336538068950176,-0.3326846230775118,-0.8308762819506228,0.8002155814319849,0.874242190271616,-0.9337833602912724,0.29014225397258997,0.9153744461946189,-0.7444531708024442,-0.7123921518214047,-0.6720629348419607,-0.8400864251889288,-0.8487348421476781,0.18150570057332516,-0.9146764567121863,-0.23238746775314212,-0.8590546366758645,-0.04995701741427183,-0.6190417199395597,0.2451058318838477,0.06945673050358891,0.34272218216210604,0.2547925137914717,-0.494204075075686,-0.2993620648048818,-0.21158511890098453,0.655721209011972,-0.9589311848394573,0.927054790314287,-0.7625351268798113,-0.566182660870254,-0.8563927253708243,0.6526989936828613,-0.30811566626653075,-0.7334078708663583,0.6978137674741447,0.9809218356385827,0.8270787289366126,-0.6648848112672567,-0.7204991364851594,0.6387053257785738,0.548122928943485,0.6107707056216896,-0.73315554484725,0.30399876926094294,0.030940319877117872,0.25680218264460564,0.9199570091441274,0.0001588575541973114,-0.6742610465735197,0.16361840534955263,0.06046929815784097,-0.4048826699145138,-0.8024556068703532,0.9367390777915716,-0.5539769977331161,0.686594283208251,0.634071730542928,0.6020708670839667,-0.6074485736899078,-0.9912201911211014,0.3604440572671592,0.2818389846943319,0.18041162006556988,0.011749336961656809,-0.401142496149987,0.3075929908081889,0.8499476457946002,-0.48719402495771646,0.8414185987785459,0.9669488384388387,0.21290419390425086,0.24057720741257071,0.8053426197730005,0.7571787359192967,0.05277811409905553,-0.7706570127047598,-0.3725344850681722,-0.21718028746545315,0.7009322019293904,-0.10253148153424263,0.6192434160038829,0.5600962080061436,-0.4587596748024225,-0.4664007378742099,-0.2821730673313141,0.2669312530197203,0.45979350758716464,-0.17537983460351825,-0.12277337070554495,-0.19918476976454258,0.8188127838075161,0.8964760615490377,0.5652184509672225,0.2927981009706855,-0.5098206158727407,0.8255801917985082,-0.5428761220537126,0.4646708103828132,0.8568668463267386,0.4578899680636823,0.9522948358207941,0.05835281452164054,-0.1701923981308937,0.7817881796509027,-0.16148841148242354,0.4505765070207417,0.3700421927496791,-0.8048456567339599,0.15078726317733526,0.8670654515735805,0.2189430962316692,-0.06555982027202845,-0.0883729262277484,-0.21692292112857103,-0.25783289270475507,-0.2986356979236007,-0.21734193805605173,0.19839249039068818,-0.22455457830801606,0.22074215160682797,0.7368386094458401,0.8122092299163342,0.43672159127891064,0.6820537564344704,-0.3250404489226639,-0.9065218041650951,-0.6969546279869974,-0.7032118551433086,0.4085153345949948,0.30628641648218036,-0.8459613574668765,0.5480309701524675,-0.8579552741721272,-0.08394430251792073,-0.6101217092946172,0.6115638264454901,-0.7653765399008989,-0.23206575820222497,0.3935813717544079,-0.44939531153067946,-0.7317827641963959,-0.30203672405332327,-0.06713830167427659,-0.6917767124250531,-0.1836393130943179,0.03548927092924714,0.4322183355689049,-0.11764490930363536,-0.9462821893393993,0.8012352180667222,-0.6610756786540151,0.0033976449631154537,0.41367266746237874,-0.8897540243342519,-0.796077964361757,-0.33550892816856503,0.6403009239584208,-0.11913620540872216,-0.14398428797721863,-0.33415668038651347,0.40637879027053714,0.31106840120628476,0.4036678150296211,-0.7598323272541165,0.009057207964360714,-0.28614729549735785,-0.7281849207356572,-0.21604654798284173,0.7371734641492367,-0.17917514126747847,0.5868593179620802,0.30388285499066114,0.21226509800180793,0.15401347074657679,0.7010954301804304,0.2700874488800764,0.541611501481384,0.7159801591187716,0.615572698879987,-0.23789216671139002,0.80573740741238,0.43943757470697165,-0.5984213766641915,0.3329720292240381,-0.6767896190285683,-0.6736489115282893,-0.05708405561745167,0.22059477400034666,0.325462790671736,-0.26538491109386086,0.599129824899137,-0.1640121410600841,-0.3129977723583579,0.1284993584267795,0.9505251036025584,-0.4894641377031803,-0.001193811185657978,0.1356546189635992,-0.5421095555648208,-0.3461858266964555,-0.6156086078844965,-0.376998039893806,-0.2044479395262897,-0.7486222088336945,0.9425131068564951,-0.6882955092005432,-0.4841287201270461,-0.6746361865662038,-0.5184378135018051,-0.5562422308139503,-0.8118271743878722,0.2478735176846385,-0.06486483057960868,0.240968216676265,0.8040621019899845,-0.9217310049571097,-0.41648142505437136,-0.2529464843682945,0.8180359918624163,0.12212082697078586,-0.10105253523215652,0.6300746621564031,-0.6896656160242856,-0.28911741031333804,0.819570739287883,-0.16758616361767054,-0.36235763411968946,0.6228867820464075,0.6131645175628364,-0.6877132076770067,0.014799689408391714,0.9640420186333358,-0.5397099633701146,-0.5483751301653683,-0.09467397257685661,-0.8993777320720255,0.9453608547337353,0.3845618860796094,0.5941834626719356,-0.40997141180559993,-0.018080441281199455,-0.15663952473551035,0.5357369729317725,-0.07097624288871884,0.6021318719722331,-0.4530233214609325,-0.7375962110236287,-0.34703525248914957,0.4488970707170665,0.3852255055680871,0.6118712476454675,-0.6900262329727411,-0.8181188860908151,-0.516830688342452,-0.5248602731153369,-0.40458178659901023,0.3605227414518595,-0.21093852259218693,0.19073906959965825,0.5524395797401667,-0.2101611620746553,-0.5952031724154949,-0.7847450491972268,-0.4021594529040158,-0.5753605058416724,0.18479229090735316,-0.9529843358322978,-0.6424071919173002,0.5154801812022924,0.07093140576034784,0.22323760017752647,-0.21277502924203873,0.5410807514563203,-0.14082926465198398,-0.31808654172345996,-0.9667768734507263,-0.5132634397596121,0.08338253851979971,0.972364341840148,-0.8172923126257956,-0.28378259390592575,-0.11204481357708573,-0.8708930416032672,-0.5987495831213892,-0.6235323790460825,-0.5919228163547814,-0.4617762421257794,0.8550977921113372,-0.6258103121072054,0.24639903893694282,-0.11850001104176044,0.14730360684916377,-0.08569923276081681,0.24446446867659688,-0.5745987771078944,0.1341816675849259,0.1743734427727759,-0.588693899102509,0.1636720634996891,-0.3877341439947486,0.36640576319769025,0.010355142410844564,0.8389311018399894,-0.66317129554227,-0.13784849783405662,-0.9602869250811636,-0.09800424799323082,0.88732566870749,0.1337465294636786,-0.020950717851519585,-0.9278883035294712,0.995036949403584,-0.13422593008726835,-0.9228470763191581,-0.9566846722736955,0.5021133706904948,0.9092905619181693,-0.03899151412770152,-0.520079240668565,-0.14910297188907862,0.21195233846083283,-0.7775290315039456,-0.3075567316263914,-0.44855365063995123,-0.7773414594121277,-0.5119245159439743,-0.016243845224380493,-0.5205258689820766,0.16246676025912166,-0.6839130911976099,-0.7832582746632397,-0.8868719055317342,0.8998955460265279,0.5257593016140163,0.4643362686038017,-0.4586417153477669,0.7204480459913611,0.6347814458422363,-0.2630579019896686,0.7745552211999893,-0.5176526452414691,-0.11243975628167391,-0.3512863712385297,0.7388403774239123,0.055400493554770947,-0.2358978227712214,-0.5281462809070945,-0.4375908295623958,0.8408431662246585,0.11530702328309417,-0.4799977336078882,0.8791975677013397,-0.9585763160139322,0.796881478279829,-0.9180652629584074,-0.9958296152763069,0.9976937277242541,-0.1878738235682249,0.5037253340706229,0.552735922858119,0.9132557767443359,-0.6160962330177426,-0.7499071480706334,0.9708781568333507,-0.5996811790391803,0.3434111741371453,-0.821936730761081,-0.676694109570235,0.554084800183773,-0.8107194704934955,0.4898552359081805,-0.2684956765733659,-0.21624089777469635,-0.25957926409319043,0.6962230387143791,0.5923840492032468,-0.14078062633052468,-0.5597255579195917,-0.062010145746171474,0.7584963832050562,0.6241023377515376,-0.787203554995358,-0.22737038228660822,0.23025119211524725,-0.39994010468944907,-0.32963971653953195,-0.9617116549052298,-0.30246945936232805,-0.6694922721944749,0.7182413055561483,-0.2187168006785214,0.18071017740294337,-0.8415545006282628,0.4557169056497514,-0.7505937553942204,-0.6686375290155411,0.7445189990103245,-0.9773266799747944,-0.019279429223388433,0.9796991548500955,0.7824175800196826,0.2009289814159274,-0.33984661661088467,-0.5286478279158473,-0.664565144572407,-0.06851492915302515,0.5679102633148432,-0.5884209205396473,-0.5841383337974548,0.8089400827884674,-0.38040656317025423,-0.4322428139857948,0.29316492564976215,0.8943227515555918,-0.6363360765390098,-0.6759782247245312,-0.6123826317489147,-0.6039275983348489,-0.8558315029367805,0.06404900830239058,0.4630204001441598,-0.8373814378865063,-0.07090038526803255,0.5057414225302637,0.24315636418759823,-0.05017716344445944,0.2662212857976556,-0.9607129446230829,0.8867454994469881,0.6531093851663172,-0.21278806310147047,-0.7095177196897566,0.6124142068438232,-0.3997065732255578,-0.0028660609386861324,-0.8116705105639994,-0.11389945028349757,-0.6208800012245774,0.6945003415457904,0.9255316350609064,-0.7875720541924238,-0.9058648026548326,0.32725058076903224,0.7514660772867501,0.09882263047620654,0.9118814379908144,0.8967286394909024,0.7633656682446599,-0.3076646877452731,-0.1293284366838634,0.6824843799695373,0.0819570324383676,-0.1293963468633592,-0.5121473646722734,0.36627883929759264,0.9583956450223923,0.41909873066470027,0.625775892753154,0.3262263387441635,-0.36505367746576667,0.8241936704143882,0.4352498631924391,0.043470972683280706,0.545553483068943,-0.5877973302267492,-0.7631483827717602,0.1350913057103753,0.25832046335563064,0.6400065757334232,-0.43695324938744307,-0.4743176414631307,0.984933091327548,0.5060015865601599,0.8187206382863224,-0.24707534676417708,-0.09364769794046879,0.1197790396399796,0.3000974515452981,-0.7488301247358322,0.42184330709278584,-0.6700858869589865,0.6906490232795477,0.05573420552536845,0.3276493698358536,0.5550195183604956,0.4110322371125221,0.6918945135548711,0.8600281262770295,0.09904714394360781,-0.26847198186442256,0.43991177855059505,-0.27112835505977273,-0.9031643704511225,-0.26884722663089633,-0.3451016857288778,-0.32852885127067566,-0.5293937483802438,-0.8106708810664713,-0.22860781010240316,0.595078672748059,-0.16947359219193459,-0.7933413907885551,-0.6257102405652404,0.32661879854276776,0.5869403681717813,0.10863870242610574,0.7264857687987387,0.7221037577837706,-0.6136604999192059,0.5043455739505589,0.9485586974769831,-0.9023251943290234,-0.263956009875983,-0.06405694736167789,-0.5254110926762223,-0.5071581099182367,0.6430575139820576,0.1722543672658503,-0.14412525901570916,0.8717354470863938,0.297680732794106,0.7307947687804699,-0.4706561965867877,0.2530213948339224,0.2778799319639802,0.6790853138081729,-0.8404254228807986,-0.9570354237221181,0.1858514859341085,0.8732026237994432,-0.27787635615095496,0.7710847561247647,0.9712974783033133,0.046771146822720766,0.8774317484349012,-0.02433942910283804,0.5280761020258069,0.6269934624433517,-0.42136804573237896,-0.47391591081395745,0.28852128563448787,-0.9619260355830193,-0.02621345827355981,0.8027697657234967,0.37185952393338084,0.4922832050360739,0.39179539727047086,-0.6361492602154613,-0.48718246165663004,0.3382460018619895,0.8552894722670317,-0.9768506898544729,0.7584985848516226,0.9880070341750979,0.0025534406304359436,-0.9732365952804685,0.7999510117806494,-0.9870586474426091,0.382369676604867,-0.7184633030556142,0.3267564713023603,0.10543690668419003,0.4859537840820849,0.46700714947655797,0.1735097779892385,0.1357295885682106,0.29013527603819966,0.1747721149586141,-0.03203654708340764,0.3211082611232996,0.36408601980656385,0.7254101601429284,0.23078179033473134,0.20219067065045238,0.8242364656180143,-0.7818679441697896,-0.8354082354344428,0.13615383673459291,0.6729495082981884,-0.6450726906768978,0.3085604999214411,0.6922902907244861,-0.02110679168254137,-0.054352485574781895,-0.8659039526246488,0.23255272582173347,0.8679234581068158,0.986957794521004,0.03615026967599988,0.08313290309160948,0.4763536462560296,0.9569497122429311,-0.06001692172139883,0.5168686993420124,-0.19270940497517586,-0.4446812402456999,0.40171004366129637,0.11489925347268581,0.3015129705891013,-0.7712829085066915,0.32801427179947495,0.5994019513018429,-0.06893003778532147,-0.125457348767668,-0.2832945859991014,0.8453723234124482,-0.412117469124496,0.5482593853957951,-0.9659842075780034,-0.5451456159353256,0.8821012871339917,0.2973463209345937,0.1397528573870659,-0.04920003190636635,-0.4999770815484226,0.007888980209827423,-0.850200779736042,0.14250409929081798,-0.20747327711433172,0.022995684761554003,0.13073615729808807,0.2816596641205251,-0.6678017792291939,0.8395752995274961,0.9854240929707885,-0.22851028991863132,-0.26630837842822075,-0.12883123010396957,0.5803554197773337,0.24862236436456442,0.36596603132784367,-0.7572044711560011,0.6505146310664713,0.7990577546879649,0.49833734426647425,-0.7601063693873584,-0.8280016086064279,-0.8085760758258402,0.8513264753855765,0.36248004203662276,0.6817412818782032,-0.8138597495853901,0.2221046476624906,0.2869595964439213,-0.5234582419507205,-0.9735795110464096,-0.312567540910095,0.8177427668124437,-0.9840760165825486,-0.35787769639864564,-0.5244203954935074,-0.5930449245497584,0.2210801038891077,-0.4572003618814051,0.7332790186628699,-0.2975757885724306,-0.08035141974687576,-0.717902175616473,-0.5796025786548853,-0.7329112915322185,-0.4725225563161075,-0.7529707886278629,0.3325091553851962,0.45598579617217183,-0.8286124542355537,-0.2612281101755798,-0.4232965689152479,-0.8676104107871652,0.7677403222769499,0.48236477840691805,-0.80297218170017,-0.2324776779860258,-0.2116559506393969,0.8818896804004908,0.7815509154461324,0.8008408597670496,0.9033202626742423,0.25117067247629166,0.9087662580423057,-0.2623253767378628,-0.3234955184161663,-0.9254511008039117,-0.16426930483430624,0.2860798598267138,-0.7231098478659987,0.05298779346048832,-0.06319908145815134,-0.43363494612276554,0.9133944590575993,-0.3990892884321511,0.1925051538273692,-0.46949284709990025,-0.8762736562639475,0.3061529789119959,-0.47709844866767526,-0.7789411400444806,0.6076309732161462,-0.7160598281770945,-0.3326680804602802,0.6825792728923261,-0.5449958359822631,-0.7660958105698228,-0.9654374714009464,-0.04219733225181699,-0.9866396570578218,0.32042292412370443,-0.23931650118902326,-0.9348868704400957,0.5457849409431219,0.9513113284483552,0.9850471690297127,-0.7680307244881988,-0.8556568128988147,-0.30867873784154654,-0.7406952418386936,0.20031524915248156,0.8352513574063778,0.9821788850240409,-0.6733144065365195,-0.7502431045286357,-0.652086631860584,0.38189386017620564,0.365923666395247,0.07488482631742954,0.9552870490588248,-0.8433659677393734,0.13422399945557117,0.7853034464642406,-0.38346833549439907,-0.055966176092624664,-0.7481714221648872,0.4284537797793746,0.3382494216784835,-0.9816290512681007,0.18754954915493727,0.36862873705103993,-0.16312466142699122,0.4701011893339455,-0.39433057559654117,0.31234530126675963,0.6109575498849154,0.7461353056132793,0.08440683269873261,-0.4101085136644542,-0.7265289374627173,-0.4577050767838955,-0.4120209370739758,0.6034754696302116,0.10738615598529577,-0.34921103436499834,-0.6184339639730752,-0.628543364815414,0.005885292775928974,-0.6646921327337623,0.11572039313614368,-0.9821685184724629,0.6614172589033842,0.1530622043646872,0.3419373747892678,0.07160164415836334,0.12321679666638374,-0.9027561601251364,0.7869317349977791,0.14819427393376827,0.6057203016243875,0.09325978299602866,0.3654628596268594,-0.24782309448346496,-0.9902717582881451,0.3353128805756569,-0.000721487682312727,0.12655628565698862,0.12313074106350541,0.8953483328223228,0.6599011798389256,0.2032827609218657,-0.216669749468565,-0.8767383946105838,0.41981408232823014,0.608201224822551,-0.47295570094138384,0.18386531621217728,-0.25018189288675785,-0.08380528772249818,-0.06833843002095819,0.6134073175489902,0.5344202402047813,0.11169174453243613,-0.8347141463309526,0.5459592500701547,-0.37027633003890514,-0.30159726506099105,0.4075536937452853,0.8839768669568002,-0.5890090228058398,0.20101091265678406,0.7749074418097734,-0.7509041014127433,0.21920682257041335,-0.3282178877852857,-0.09543781820684671,0.9820734653621912,0.5723101636394858,0.4469535197131336,0.6206746096722782,0.8465030081570148,0.009639515075832605,-0.6611962206661701,0.5196171929128468,0.30829315818846226,0.7721098433248699,0.3929868876002729,0.9337822697125375,0.8237845082767308,0.30226030107587576,-0.7877214681357145,-0.9930434399284422,0.48846084205433726,-0.4941364168189466,-0.6670239316299558,-0.09932196512818336,0.6795791834592819,-0.8491341127082705,-0.09798495983704925,-0.5776178939267993,-0.30901885125786066,0.41077422769740224,-0.7564470795914531,0.2963642878457904,0.15628209756687284,-0.9095785012468696,-0.4066746118478477,0.4332806174643338,0.6024147719144821,0.4422435201704502,-0.1253918157890439,-0.7020031753927469,-0.5640725973062217,0.36901066917926073,0.5789309581741691,-0.45192126743495464,0.5086394567042589,-0.7383475578390062,0.06400574371218681,0.7285734317265451,-0.6172684263437986,0.8271761736832559,0.8482242291793227,0.23180300556123257,0.8381961565464735,0.1749523845501244,-0.22128523979336023,0.9723097709938884,0.25936471158638597,-0.3350980784744024,0.4125140719115734,-0.9729837910272181,-0.5738905067555606,-0.47615672275424004,-0.14951104624196887,-0.9589531677775085,0.6497784270904958,0.09579094359651208,0.8110928619280457,0.9843285088427365,-0.6576268183998764,-0.6831363844685256,-0.5562276570126414,0.0234065311960876,-0.9522487889043987,0.5702589782886207,-0.5184265053831041,0.38370208349078894,-0.819946117233485,-0.10544557962566614,0.5294112786650658,-0.6126266689971089,0.8977831327356398,-0.6582776522263885,-0.7837139694020152,0.5401817350648344,0.7942581167444587,0.9723771335557103,-0.9831004533916712,0.3654291396960616,-0.6741609857417643,0.5751606156118214,0.8727776072919369,0.650025138631463,0.9659865805879235,0.9352498385123909,0.9121290757320821,-0.26794093661010265,0.16439734492450953,-0.6908077923581004,0.12472359417006373,0.8949110778048635,-0.16163594089448452,0.5914932629093528,0.08692266047000885,-0.1373932296410203,0.393731779884547,-0.7428913083858788,-0.016529823187738657,0.476014272775501,0.4226391455158591,-0.4637472885660827,0.44554494600743055,-0.8854356310330331,-0.9627064689993858,-0.2495365422219038,-0.3687212485820055,0.5708852368406951,-0.9299798151478171,0.6902706706896424,0.9095362578518689,-0.8058406594209373,-0.7822330365888774,0.3118421249091625,-0.5883540855720639,-0.6409708340652287,-0.3717265697196126,0.8981707002967596,0.9278430109843612,0.9609280796721578,-0.7378340773284435,-0.840012620203197,0.15882266499102116,0.7405474563129246,0.585502692963928,0.8537812046706676,0.048732210882008076,-0.38411095179617405,0.9312532455660403,-0.860116635914892,0.08486954821273685,0.991741037927568,-0.8102209656499326,-0.5582333775237203,-0.6637744689360261,-0.17875194316729903,-0.1744513986632228,0.1257972652092576,0.16105329152196646,-0.5711450343951583,0.8129672189243138,0.059789516031742096,-0.41199288237839937,0.08101243944838643,-0.0655229059047997,0.03961144993081689,-0.14348338544368744,0.6922989003360271,0.13331347098574042,0.11926012299954891,-0.6679554549045861,0.8985830834135413,-0.8388497172854841,0.2510516815818846,-0.7580042704939842,-0.4126790463924408,-0.1892560520209372,-0.9309227480553091,0.11931241024285555,-0.8668503179214895,0.6971548576839268,0.4262153538875282,-0.9426054521463811,0.22903192369267344,-0.022651029750704765,-0.5885214628651738,0.967202337924391,0.8392390590161085,-0.24546816758811474,-0.9312055092304945,-0.23340224707499146,0.3379501677118242,-0.29632158670574427,0.7850453173741698,-0.9350112425163388,-0.11285116244107485,0.7947997618466616,-0.137758226133883,0.5900412704795599,0.43820637417957187,-0.4160777754150331,0.40894070267677307,-0.7777814869768918,-0.2074419343844056,-0.4180160299874842,-0.6062661646865308,-0.23481826996430755,0.9675590912811458,-0.23854972887784243,-0.18688506772741675,-0.1787695330567658,-0.5287108873017132,0.9303857390768826,0.03889065748080611,0.5513092665933073,-0.0854683369398117,0.026139528024941683,-0.8477541110478342,-0.7426686356775463,-0.5165160363540053,0.08017444610595703,0.06292616995051503,0.6168724810704589,-0.8703586645424366,-0.07286470802500844,-0.868817166890949,0.5377654228359461,-0.4102714587934315,0.8281533727422357,0.3436576658859849,-0.6483746026642621,-0.8902729549445212,-0.4495620974339545,-0.32400898914784193,0.8919759495183825,0.3426961237564683,0.9905039775185287,0.36780600901693106,0.6336754164658487,0.45099405478686094,-0.11496962048113346,0.24793997732922435,-0.49326924327760935,-0.6774189900606871,-0.9958087066188455,-0.7310735015198588,-0.6455446491017938,0.9212983567267656,-0.33483966952189803,0.5373832881450653,0.2917094477452338,0.0016693593934178352,-0.15960186580196023,-0.14506723871454597,0.6840590760111809,0.34741883678361773,-0.2289504511281848,0.23028587689623237,0.4949688008055091,0.4072141023352742,0.070384556427598,0.475817812141031,0.494718408677727,-0.14517307933419943,0.451863307505846,-0.8568842015229166,-0.8875792417675257,0.015495328232645988,-0.8662719414569438,-0.28467772575095296,-0.24260641681030393,0.38216196512803435,0.24038868956267834,0.1483337781392038,-0.8517058887518942,-0.5629549375735223,-0.9390661725774407,0.38371669175103307,0.6131031084805727,0.07199926441535354,-0.41022411454468966,-0.9588357219472528,0.3625334878452122,0.40822484949603677,0.7655888781882823,-0.7969589373096824,0.08369962172582746,0.9491018792614341,0.37123707216233015,0.034574009478092194,-0.7886578463949263,-0.8058133851736784,0.048464825842529535,0.4021832053549588,0.013455353677272797,0.26827771170064807,-0.5040143737569451,-0.21065698331221938,0.11218197457492352,-0.3793406644836068,0.9205040489323437,-0.6485457830131054,0.7470507388934493,-0.9518778356723487,0.9567941585555673,0.14698639698326588,0.5011780126951635,0.6389432554133236,0.7958014900796115,0.35988489212468266,0.2927358481101692,0.04512765258550644,-0.618053182028234,-0.22857515700161457,-0.8699387763626873,-0.2060032831504941,0.7281861137598753,-0.3590844012796879,-0.40544048696756363,0.40957134356722236,-0.3344064252451062,0.9038900351151824,0.8237782791256905,-0.47047836938872933,-0.4323387751355767,0.3101868159137666,-0.42231581592932343,0.008016540203243494,0.9466228215023875,-0.4353019492700696,-0.9378761216066778,-0.456544728949666,0.9638575650751591,0.5941227478906512,-0.2989965849556029,0.4483860773034394,-0.24280419712886214,0.22834091261029243,-0.688844935502857,0.71899827523157,-0.19386403309181333,0.17273900797590613,0.7643415392376482,0.3552584829740226,-0.6995877977460623,-0.8638104707933962,0.06287104869261384,0.2030982761643827,-0.31824234360828996,0.9651036714203656,-0.30297961505129933,-0.06861392920836806,-0.829240501858294,-0.9802590878680348,0.7673285533674061,0.2245880663394928,-0.02995174890384078,0.1967396205291152,-0.8072573230601847,0.4481870527379215,0.0352881527505815,-0.29646435799077153,0.2942061694338918,0.1272985590621829,-0.8872220320627093,0.7523603299632668,0.6189475613646209,0.4703256073407829,-0.2964551346376538,0.28319344064220786,0.5625770664773881,-0.22670540865510702,-0.8146793781779706,-0.235331273637712,-0.20308316592127085,0.041681785602122545,0.07388216815888882,-0.869451146107167,-0.1759744081646204,0.7993550333194435,0.17597111454233527,0.6516496054828167,-0.002979000099003315,0.904410726390779,-0.020979501772671938,0.3497463003732264,0.6139292824082077,0.08693502238020301,-0.6867489451542497,-0.8043716945685446,-0.35386452125385404,0.18365544453263283,0.5517473574727774,-0.38536824053153396,-0.9857885683886707,-0.2467628689482808,-0.3147797374986112,-0.458461903501302,-0.48507105838507414,0.2748108603991568,-0.4758270774036646,-0.3046039156615734,0.40555514767766,0.9229882173240185,0.24768195254728198,-0.8528592679649591,0.8380943993106484,0.7513458258472383,-0.8671442680060863,-0.8767392644658685,-0.4710415187291801,0.8890457074157894,-0.17738727945834398,-0.5252769137732685,-0.10319750104099512,-0.3867924469523132,0.7695121294818819,-0.5112496274523437,-0.4509328887797892,0.34309725603088737,-0.7966710664331913,-0.2472779513336718,-0.9672421733848751,-0.3351596537977457,0.7554776603356004,0.5756678930483758,0.15372807951644063,0.7209390248171985,0.08435210725292563,-0.8810295267030597,0.7443648027256131,-0.8167750239372253,0.6302805775776505,-0.9801399651914835,-0.5813121078535914,0.8554511861875653,-0.3077343418262899,-0.8870798787102103,-0.9821812203153968,0.2915649046190083,-0.17169285286217928,0.14601986156776547,-0.6825586608611047,0.10945582436397672,-0.7318081604316831,-0.5256084282882512,-0.9277865183539689,0.9540601130574942,0.4433133895508945,0.3454885664395988,-0.1585544478148222,-0.1420988878235221,-0.9108402710407972,-0.40530548663809896,-0.552831701003015,0.09308115672320127,0.03456712793558836,0.7303864527493715,0.4338931832462549,0.5669670216739178,0.6563618471845984,0.6635286682285368,0.7151750428602099,0.4117252342402935,-0.08581837080419064,0.9870989518240094,-0.10402121767401695,0.1946853888221085,0.24333886057138443,-0.2899006442166865,0.6519720554351807,0.13020104402676225,0.7708532372489572,0.48484611697494984,0.8902296852320433,0.9154244191013277,0.1729214657098055,0.9216688829474151,0.7787321549840271,-0.16739540779963136,0.017548156902194023,-0.9181954725645483,0.2677429779432714,0.0902137840166688,0.1977921472862363,0.540746467653662,-0.1899660644121468,-0.20711397984996438,0.9920782158151269,-0.5294038206338882,-0.9248213586397469,-0.29117667535319924,-0.7523752637207508,-0.8533694879151881,-0.5682919337414205,0.20351678831502795,0.6573569243773818,0.5065919845364988,-0.42981268325820565,-0.1021112147718668,0.8131986218504608,-0.30219960818067193,0.9594992245547473,0.7115887640975416,0.2142008044756949,0.7474687988869846,-0.6798527170903981,0.5810260879807174,-0.08375844126567245,-0.9423348507843912,-0.16987556219100952,0.3693993049673736,0.7891624732874334,0.6955004064366221,0.14717720355838537,0.4820578992366791,0.2929545142687857,-0.8915247265249491,0.522874076385051,0.5943020046688616,-0.4628153136000037,0.36307966290041804,-0.6896274606697261,-0.7410127460025251,-0.18966818414628506,0.8427887517027557,0.8128733020275831,0.3200230626389384,-0.17815117817372084,-0.3505679960362613,-0.4950538990087807,-0.600569723173976,-0.12510144570842385,-0.868214089423418,0.4412106005474925,-0.9686537482775748,0.3349488857202232,0.2504389747045934,-0.11505272518843412,0.4887276948429644,0.7347669159062207,0.8546130149625242,-0.9272181568667293,0.817659739870578,0.5274164099246264,-0.13342098984867334,-0.3025674005039036,-0.8846137528307736,-0.03618132369592786,0.8947912747971714,0.8446425460278988,-0.054183599073439837,-0.24988704454153776,0.7912380513735116,-0.8193505182862282,-0.5140865570865571,-0.6585415494628251,0.6844246764667332,0.5214689327403903,-0.2583172176964581,0.06065443670377135,0.260309980250895,0.7784873489290476,-0.4369272845797241,-0.35360417189076543,0.5272220131009817,-0.6449172249995172,-0.8809108687564731,0.25863017328083515,-0.5144751104526222,-0.8430443699471653,0.7004977664910257,-0.2893502153456211,-0.04401562828570604,-0.028835599310696125,-0.8410570407286286,0.9291155822575092,0.465643844101578,-0.036845194175839424,0.8024647161364555,-0.08562193484976888,-0.9298935532569885,-0.8407787731848657,0.7003878336399794,0.7285297065973282,-0.25259211799129844,0.7283025686629117,0.933578809723258,0.2782759121619165,-0.26200325321406126,0.2907700133509934,0.06900449050590396,0.8851684513501823,-0.7367977551184595,-0.5646487418562174,-0.6658983970992267,0.3297624094411731,-0.3826504060998559,-0.8787512490525842,0.4814197341911495,0.3036942398175597,-0.3257583985105157,-0.8455424695275724,0.38994988007470965,-0.07394061842933297,-0.9702029000036418,-0.09736154926940799,0.36762807006016374,0.40509696258232,-0.38008052622899413,0.9994959556497633,-0.16634826408699155,0.4670342211611569,0.4184157229028642,0.057823083363473415,0.6186505439691246,0.4387417291291058,0.7258928869850934,0.031314508989453316,-0.942859195638448,0.7713205628097057,-0.9622363629750907,0.2901492607779801,0.1998469326645136,-0.9975488749332726,-0.9666507365182042,0.04520469903945923,0.5386717687360942,0.739574771374464,-0.8005487336777151,0.25394932366907597,0.07386002037674189,0.5602410091087222,-0.5690422584302723,0.9002994536422193,-0.9889250481501222,0.902268638368696,0.6697510578669608,-0.706663815304637,0.09509792318567634,-0.8742821584455669,-0.31740112137049437,-0.3891269280575216,0.5218447269871831,-0.32598403468728065,0.07680892618373036,0.739068808965385,-0.9568219166249037,-0.5270314929075539,0.3728744816035032,-0.7959266095422208,-0.7349548125639558,-0.9412071551196277,-0.18833677237853408,-0.5166295925155282,0.12530802097171545,0.44530364871025085,-0.47714338079094887,-0.7043434581719339,0.4837830443866551,-0.42617034865543246,-0.8910613940097392,-0.24144358513876796,0.19163473695516586,-0.14766339724883437,0.5364709533751011,0.6066035912372172,-0.9507717764936388,-0.7252092580311,-0.5350501108914614,-0.47309826081618667,0.34550523152574897,-0.5818220684304833,-0.1868934202939272,-0.06621983740478754,0.6707596173509955,0.005196200218051672,-0.47651971131563187,0.8984967274591327,-0.9166087610647082,-0.703809920232743,-0.22121758200228214,-0.7346460898406804,0.438211583532393,0.1922081527300179,-0.4509588507935405,0.5404727393761277,0.33388853492215276,0.5864410973154008,0.3911360097117722,0.4351246119476855,-0.9810120742768049,-0.0480323089286685,-0.988124611787498,-0.7904561264440417,-0.8973573143593967,0.8112360164523125,0.011664295103400946,-0.2818972645327449,-0.20050954911857843,-0.9050909834913909,-0.028858707286417484,0.2583838505670428,-0.98341383645311,0.6111760712228715,0.0845255646854639,0.7833318416960537,0.34126435639336705,-0.6862730900757015,0.409927184227854,-0.6481025218963623,-0.9841068009845912,0.043826645240187645,0.1664012260735035,0.3811574401333928,-0.8939349763095379,-0.8942064791917801,0.7511491701006889,0.7087101093493402,-0.1718322392553091,0.44675266556441784,0.5379490694031119,0.890192786231637,0.5146390041336417,-0.43538181157782674,-0.22160642454400659,-0.38392928801476955,-0.043425895273685455,0.5703734788112342,0.01907722419127822,0.9971874454058707,0.3576447321102023,0.10498511511832476,-0.43381417542696,0.08638144005089998,-0.06978276185691357,-0.8600710052996874,-0.1446644188836217,-0.2958762398920953,-0.7717782324180007,0.1785200065933168,0.057399298530071974,-0.854792601428926,0.5086106723174453,-0.8655506297945976,-0.8424456678330898,0.49914753064513206,0.8590322420932353,0.7592830113135278,0.8773359740152955,0.9192629801109433,-0.9293837398290634,-0.2882848773151636,-0.03181296121329069,0.9336904706433415,-0.3550516511313617,-0.30357246939092875,0.1660911813378334,0.5060588680207729,0.20839738938957453,0.9683774220757186,-0.32195220421999693,-0.8492350126616657,-0.0065180473029613495,-0.4532847898080945,0.2598400181159377,-0.5657585063017905,0.5909294439479709,0.6208960427902639,-0.1188231292180717,-0.1326778340153396,0.8155139619484544,0.8233767724595964,0.919547151774168,-0.2045075250789523,0.9480990786105394,-0.9365078657865524,-0.3572709928266704,-0.2657044492661953,0.08863641507923603,0.3219177578575909,-0.21866554534062743,-0.784714168868959,-0.7039687046781182,0.7201096722856164,0.9774701204150915,0.7016084822826087,-0.0891455989331007,-0.5478396127000451,-0.8749136324040592,0.018219194374978542,-0.12790772132575512,-0.11716042691841722,-0.15325811225920916,0.404634527862072,0.8049810868687928,0.11263330979272723,0.7256976496428251,0.8354518376290798,0.6984658762812614,0.7631306522525847,-0.4489377592690289,-0.7180159999988973,-0.3574336818419397,-0.22646424360573292,-0.677214268129319,-0.17717836238443851,0.2594911972992122,-0.5465038660913706,0.8898704103194177,0.817022055387497,0.4762716181576252,-0.6093859765678644,0.4147385796532035,0.8635348244570196,0.7786012412980199,0.6546822846867144,-0.3542489050887525,-0.2504251580685377,0.6347812986932695,-0.7746000909246504,0.4062344669364393,0.6667534746229649,-0.21386131225153804,-0.21890923660248518,0.9003662778995931,0.04410733515396714,0.8900609803386033,-0.2676542438566685,-0.5658865026198328,-0.6170108742080629,-0.20275726588442922,0.5526134162209928,0.9124799254350364,0.8378214137628675,0.4845853135921061,0.7919510412029922,-0.4208442773669958,0.9476105328649282,0.36431915452703834,0.8894337737001479,-0.6206688908860087,0.1804088605567813,0.9402959193103015,-0.49147074529901147,0.6779567245393991,-0.8035790068097413,0.11586654232814908,-0.5738366260193288,-0.460812799166888,-0.6593209677375853,-0.30094286845996976,0.6173683465458453,-0.16807187953963876,0.032995566725730896,0.04419757891446352,0.07723745424300432,0.3831344838254154,0.7890359330922365,-0.7222283515147865,0.1412781309336424,-0.9245957736857235,0.8613373814150691,-0.2843571244738996,-0.3177330973558128,-0.8055838933214545,0.4068906968459487,-0.750114000402391,0.5061542787589133,0.1484327777288854,0.6962526189163327,-0.3602605853229761,0.9442190690897405,0.39027280965819955,0.8965777433477342,-0.5548942545428872,-0.16680049523711205,0.8764412575401366,0.24105566879734397,0.9878718443214893,-0.40509037394076586,-0.655514991376549,0.1483018030412495,-0.7988161947578192,0.8933881013654172,0.8857762101106346,-0.15445957332849503,0.43559182807803154,0.7156417411752045,-0.06511465134099126,0.2592316344380379,0.6668989700265229,0.07215501321479678,-0.820674299262464,-0.3857474261894822,0.5964346406981349,0.1066228011623025,-0.4797909455373883,0.004027884919196367,0.2191197331994772,-0.8547839373350143,0.866824007127434,0.7793375975452363,-0.3988852151669562,0.05700832745060325,0.10376383503898978,-0.6421047365292907,-0.7478084755130112,-0.4287551725283265,0.9886009837500751,-0.0927428063005209,-0.8203137246891856,-0.591938198544085,0.41783534502610564,-0.7096471195109189,0.8088669101707637,-0.5328488736413419,0.048461283557116985,0.49200080148875713,-0.8666416141204536,0.04508452070876956,0.48382001416757703,-0.8970801741816103,-0.8916355385445058,-0.2579763410612941,0.8124487237073481,-0.0777509375475347,0.8276221938431263,-0.9610402542166412,0.5022661914117634,-0.5116074490360916,0.9780387999489903,-0.7414596290327609,-0.03467463795095682,-0.20270189316943288,0.3994284626096487,-0.33939190674573183,0.29569220915436745,-0.4491034331731498,0.6462008664384484,-0.6096606948412955,0.9107110444456339,0.39248661743476987,-0.8397551500238478,0.4974939269013703,-0.111730323638767,-0.4817962949164212,0.27917295042425394,0.07325435895472765,-0.29316457035019994,0.33592943381518126,0.05559525219723582,0.8860571011900902,0.3046613265760243,-0.35665601678192616,-0.9982525901868939,0.6406641569919884,-0.3039403008297086,-0.8081431877799332,-0.0051646786741912365,-0.7696480564773083,-0.06944393878802657,0.3666256773285568,-0.0949379256926477,-0.9995760233141482,-0.06189321167767048,-0.29976711235940456,-0.2915033889003098,0.5778339309617877,-0.21579470252618194,-0.855716469231993,-0.611605005338788,0.37261004792526364,0.0670500393025577,-0.6902155452407897,0.35633433144539595,-0.12636361364275217,0.18967586616054177,-0.08347447635605931,0.9466610681265593,-0.7111065313220024,0.5269170794636011,-0.3936025337316096,0.1237971568480134,-0.9546826551668346,0.3508321391418576,0.7649242896586657,0.8193620620295405,-0.23243297450244427,0.12018227996304631,-0.5003021089360118,-0.21963795321062207,0.3637508023530245,-0.9883619491010904,-0.6491953921504319,-0.12701159389689565,-0.8164338632486761,0.471775715239346,0.9839925356209278,-0.5641667204909027,-0.47026332141831517,0.8637730502523482,0.059841519221663475,-0.503840469289571,0.12206847127526999,-0.5215991460718215,0.7389119379222393,-0.9577821320854127,-0.3363763480447233,-0.325353201944381,-0.4386566071771085,0.4898662231862545,0.2515792269259691,0.10971325309947133,0.5619770614430308,-0.8738918527960777,0.21974206529557705,-0.9981005978770554,-0.7846573572605848,-0.6464990661479533,0.8599220532923937,-0.880761671345681,-0.8728419975377619,-0.8655090141110122,0.4249828867614269,-0.33642673632130027,0.19624639488756657,-0.3701169406995177,0.9057314866222441,0.9843221185728908,0.06910867942497134,0.8812908111140132,0.6956631252542138,-0.4033045507967472,-0.25564364716410637,0.7130623492412269,-0.07488582329824567,0.8470382429659367,-0.2298750663176179,-0.681956609711051,0.6371776671148837,0.7627494274638593,-0.07972283661365509,0.5325412144884467,-0.9335314054042101,0.8152495571412146,0.4070999454706907,0.5763776563107967,0.7213558382354677,0.8398651736788452,0.9568362957797945,0.7910923846065998,0.7053908980451524,0.7699920530430973,0.014287959784269333,0.19407060742378235,-0.5732809393666685,0.09181004343554378,-0.21649901429191232,-0.45566127356141806,0.7331893490627408,-0.36302767414599657,0.9428454451262951,-0.5787752512842417,-0.8854615380987525,-0.08810874819755554,0.3122606500983238,-0.2266438938677311,-0.5828362312167883,-0.06763699371367693,0.060154158622026443,-0.8823151867836714,-0.39463289687409997,0.7901205937378109,-0.9312767125666142,0.2021141964942217,-0.4067619820125401,-0.6669851671904325,0.717179770115763,0.43451534677296877,-0.795010429341346,0.1296325302682817,-0.006100439466536045,-0.38561238208785653,-0.9193153493106365,0.4617276256904006,0.26339151058346033,-0.30917902709916234,-0.4641541913151741,-0.6208535875193775,0.4999429639428854,0.7251121625304222,0.2459443979896605,-0.48149337712675333,0.7986115892417729,-0.439717351924628,-0.41541440365836024,-0.21370523143559694,-0.12960274051874876,-0.26453349320217967,0.7729930318892002,0.9174037980847061,-0.7759901331737638,0.9039095765911043,-0.5206926339305937,0.7758700014092028,-0.65296286996454,0.9296274050138891,-0.5818499457091093,0.2227282547391951,0.5750410151667893,0.03211526805534959,0.09814632311463356,0.2761303707957268,-0.6682953275740147,-0.6460995017550886,0.8897683992981911,-0.2178599014878273,-0.2824249374680221,0.5003354302607477,-0.8420872297137976,-0.376307082362473,0.014467696193605661,0.4003308583050966,-0.2632212550379336,-0.6828607865609229,-0.6373171778395772,-0.8708697343245149,0.029468317981809378,-0.11978129064664245,-0.7985461889766157,-0.8979249824769795,-0.0569200599566102,0.41714358469471335,0.24421151541173458,-0.8310047704726458,0.6785365892574191,0.019035457633435726,-0.515939031727612,0.658562264405191,0.5917365965433419,-0.444254866335541,0.8244718629866838,-0.9352617575787008,-0.8524229545146227,0.9200801341794431,0.7709236121736467,0.5256365109235048,0.35897865192964673,-0.7923827366903424,0.6474462659098208,-0.2299619559198618,-0.29470314644277096,0.6789892953820527,0.7092692237347364,0.25793008878827095,0.44604779267683625,0.5471979202702641,0.4674875922501087,0.6583480988629162,0.17988197412341833,0.9221047582104802,0.8979537398554385,-0.8074385528452694,-0.8478038581088185,-0.7522915285080671,-0.9948690682649612,-0.30460612243041396,-0.1468300293199718,-0.7701081773266196,0.2731386488303542,0.8832555576227605,0.7901400970295072,0.006452872883528471,0.4602677724324167,-0.20119817042723298,0.6872808448970318,-0.941035985480994,-0.7453017546795309,-0.928666964173317,0.9679117300547659,-0.30090360902249813,0.5784979076124728,0.10164825757965446,0.4183105924166739,0.3157789297401905,-0.482830080203712,-0.10500809783115983,0.9666930674575269,0.9925418891943991,0.01474586222320795,0.7798118628561497,0.1764123230241239,-0.6126471227034926,-0.9420733703300357,0.5017513325437903,0.42874087393283844,-0.4386950717307627,-0.7124877162277699,0.3504204573109746,-0.008426524698734283,0.5878057088702917,-0.7374879871495068,0.341853360645473,-0.5156108005903661,-0.7183602736331522,-0.5443525710143149,-0.8138515437021852,-0.14239217154681683,0.7186350496485829,-0.03594925859943032,0.37273786775767803,-0.6060741781257093,0.056650453712791204,-0.24393232353031635,-0.1911847502924502,0.8124001198448241,-0.6265864190645516,0.7209396655671299,0.9106701160781085,-0.9322907929308712,0.7103682518936694,0.5805310113355517,0.244586365763098,-0.13663109857589006,-0.7871030536480248,0.3062696475535631,0.4490969576872885,0.2636239971034229,-0.3255867320112884,0.0027963807806372643,-0.16473787045106292,-0.7481374428607523,-0.0159376859664917,-0.8227256797254086,0.7383752902969718,-0.6603704942390323,0.4155178037472069,-0.9140239735133946,-0.8718169047497213,-0.5735449776984751,-0.8628318556584418,-0.09641084307804704,-0.2886967812664807,0.4886351185850799,-0.59805812779814,-0.38316541025415063,-0.49570961063727736,-0.14615000784397125,0.7823196481913328,-0.8415673696435988,-0.08763621281832457,0.7305530486628413,0.9991663661785424,-0.6993046957068145,-0.9859526753425598,0.3301908350549638,0.9217472029849887,-0.3030142765492201,-0.8336237776093185,0.8428683090023696,-0.8396632885560393,0.5065577826462686,-0.7151746163144708,-0.7269052923657,-0.937333142850548,-0.05066594900563359,-0.5062722596339881,-0.2393563655205071,0.1903162943199277,-0.8344977549277246,0.8958130604587495,0.525211660657078,0.5821923762559891,0.33835940854623914,-0.8997261286713183,-0.49150525545701385,-0.9271389716304839,0.8640792621299624,-0.03632234642282128,0.9932926846668124,0.0072007919661700726,0.9358461634255946,0.5311953416094184,-0.2060238285921514,0.3279345100745559,-0.5216817492619157,0.8455359120853245,0.4936328772455454,0.4184589325450361,-0.5440736529417336,0.7138659590855241,-0.745897906832397,0.35943132173269987,-0.3143522413447499,0.3822116618975997,-0.022641361225396395,0.34965538466349244,-0.47821928607299924,-0.31829684181138873,-0.9941929504275322,0.08968151221051812,0.6666604150086641,-0.17014204757288098,-0.6312568127177656,0.7051244331523776,0.7185837407596409,0.1374390795826912,-0.9878873759880662,-0.09741970337927341,0.9761271732859313,0.30858122278004885,0.2748347935266793,0.2625517933629453,0.014918376691639423,-0.11431843647733331,0.048731439746916294,0.48028167244046926,0.040483133867383,0.10527990013360977,-0.473644663579762,-0.4780593947507441,-0.5159040200524032,-0.7081905235536397,-0.07419096119701862,-0.31674272241070867,0.3525072201155126,-0.16302391234785318,0.07153747277334332,0.7567428643815219,0.3349545057862997,-0.20568627584725618,-0.5705298623070121,0.729901522397995,0.7023235112428665,0.9265717747621238,-0.3061226047575474,0.03966641752049327,-0.1261461628600955,0.8623091038316488,-0.0663695759139955,-0.32870165864005685,0.1473494521342218,-0.2905191103927791,0.39647761872038245,0.5142418355681002,0.9012388875707984,-0.7776362583972514,-0.28625741228461266,-0.37929497845470905,-0.7036340981721878,0.22029628045856953,0.33710696501657367,-0.08015613351017237,0.8578244987875223,-0.20819740183651447,-0.36904753744602203,0.06749114952981472,-0.5882416162639856,0.6959080696105957,-0.6131987352855504,-0.7575030606240034,-0.067223128862679,0.27066868217661977,0.6009724116884172,-0.5289782322943211,-0.6340275988914073,0.9778800178319216,-0.27680356753990054,0.30008504167199135,0.7917117583565414,-0.5918504679575562,-0.49069000827148557,-0.3816514750942588,0.13612038549035788,-0.8771026320755482,0.20958422729745507,0.20110598905012012,0.06306722480803728,0.8866787017323077,0.7852056729607284,-0.18886388326063752,0.35688096564263105,0.5244979429990053,0.6282305819913745,-0.555286661721766,-0.5772494897246361,-0.9956758418120444,0.449852854013443,-0.40593877946957946,-0.4604050172492862,-0.7583867004141212,-0.3361777630634606,-0.6373150339350104,-0.6963582211174071,0.7128966390155256,-0.8532880456186831,-0.5643328302539885,0.1782198823057115,0.7929232837632298,0.034297119826078415,0.8970637349411845,0.4984854902140796,-0.8533213576301932,0.007232296746224165,-0.9329250077717006,-0.09367904718965292,0.8523848461918533,0.09999162005260587,-0.42441296577453613,0.4863244201987982,0.13296244014054537,-0.23256031330674887,0.3105549677275121,0.9747087168507278,0.874417676590383,-0.3592974185012281,-0.5734283709898591,0.07903860881924629,0.466798541136086,-0.9525545206852257,0.6195342848077416,-0.23419855488464236,-0.5859568687155843,-0.885866747237742,0.8292901455424726,-0.6458992045372725,-0.1154869613237679,0.44575504725798965,-0.42848028894513845,-0.4544119816273451,-0.0958375558257103,-0.2663590810261667,0.37598146917298436,0.39785953843966126,0.7953192098066211,-0.6028764354996383,-0.0645163981243968,-0.1403435431420803,-0.0854162028990686,0.27835840871557593,-0.9267122340388596,-0.527832755818963,-0.3970837648957968,-0.33532204618677497,-0.316182600799948,0.9619720294140279,-0.7234570472501218,0.3784356229007244,-0.8368998607620597,-0.2924279263243079,0.39390897657722235,-0.2772423936985433,0.570494226180017,-0.21919032698497176,0.984359678812325,-0.5373886409215629,0.3667830368503928,0.5652261092327535,-0.49929459299892187,-0.6611261274665594,0.31150014605373144,0.6585726621560752,-0.6057120775803924,-0.837924680672586,0.7237696149386466,0.9659500890411437,-0.7426291173323989,0.5410237410105765,-0.7869838452897966,-0.7648025532253087,-0.47637478448450565,-0.41872218111529946,-0.6438813307322562,-0.9584051738493145,-0.20286892307922244,0.5239874329417944,-0.41240232065320015,0.2950611310079694,0.7741473657079041,-0.8910164567641914,-0.4932777574285865,-0.2946059163659811,-0.523210478015244,0.9782996764406562,0.32417293125763535,-0.4526005354709923,-0.8049448635429144,-0.7202112274244428,-0.07853509904816747,0.730349849909544,0.022243450861424208,-0.6840992481447756,0.9815256837755442,-0.9769765571691096,0.4280979526229203,-0.8730949824675918,-0.5042622163891792,-0.9987393291667104,-0.581655609421432,-0.8929482777602971,0.7716918843798339,-0.6852132831700146,-0.7125880513340235,0.24864976480603218,0.771097035612911,0.1295808213762939,0.8013381189666688,-0.23192937020212412,-0.2922455044463277,-0.02221930818632245,0.9243510663509369,-0.0025490042753517628,-0.7465817858465016,0.5405639209784567,0.19586534146219492,0.2767628440633416,-0.6884241416119039,-0.1778247761540115,0.4800933450460434,-0.8602859145030379,0.8961104056797922,0.9115684954449534,-0.28557917894795537,-0.476280739530921,0.308040838688612,0.6229835054837167,-0.03815243439748883,-0.9910698640160263,0.7192901414819062,0.2821446801535785,-0.2991446568630636,-0.12207914236932993,-0.146847540512681,0.8208101065829396,0.2545687882229686,-0.4141580890864134,-0.6223915982991457,0.6873949067667127,-0.7760336166247725,0.7923565739765763,-0.8287647548131645,0.5465613165870309,0.7493224060162902,-0.6099752658046782,0.8507516304962337,0.5448663793504238,-0.903394928202033,-0.46301938500255346,0.020366522017866373,0.513869899790734,0.9371933043003082,0.9871581909246743,-0.3332402133382857,-0.6698421332985163,0.05034833028912544,0.2653790791518986,-0.3106196476146579,0.3046383005566895,0.14197896933183074,-0.8242687485180795,0.30940624978393316,-0.0915152090601623,-0.938887347932905,-0.13385971263051033,0.12404622370377183,-0.8315214412286878,-0.3184605436399579,-0.7492128340527415,-0.12414107145741582,-0.7836352470330894,-0.05216743145138025,0.7179154939949512,-0.81587392417714,0.5711524565704167,0.8187086395919323,-0.4452813509851694,0.9951014998368919,-0.22712003393098712,0.15355153614655137,-0.8624547449871898,-0.02174288546666503,0.44830962643027306,0.44251162791624665,0.24633330339565873,0.32185552129521966,0.32398317754268646,-0.18654145998880267,0.6884945249184966,0.533067281357944,0.8847976666875184,-0.756427074316889,0.38787983218207955,-0.3215423463843763,0.7548883780837059,-0.07011376740410924,0.18113722559064627,0.883134700357914,0.5306340181268752,-0.9238573056645691,0.3366304421797395,-0.39143430022522807,0.8599179745651782,0.13087653368711472,0.8051563021726906,-0.5476602166891098,-0.4932481860741973,0.1709775310009718,-0.27709297370165586,0.43237769277766347,0.1260992088355124,-0.37598799588158727,-0.5363013232126832,-0.018814200535416603,-0.25613411888480186,0.7708675535395741,0.5325158941559494,0.07501716539263725,0.7424135832116008,-0.698984086047858,0.3235101643949747,-0.9167597265914083,0.5249056424945593,0.030780529603362083,-0.3549190401099622,-0.09491140535101295,0.8108441536314785,-0.3375723692588508,0.7330823638476431,-0.8048099759034812,0.4739456567913294,-0.5019836039282382,-0.11386470822617412,0.3880771021358669,0.33026286121457815,0.09639391861855984,-0.8414017832837999,-0.23906927509233356,0.23820291133597493,-0.06753367185592651,-0.2268517827615142,0.23730142787098885,0.6156862992793322,0.39443477848544717,-0.4962844173423946,0.5304783992469311,0.3903109198436141,0.27161505725234747,-0.08470453321933746,-0.07441758085042238,0.29794221371412277,-0.1664052694104612,0.8637571986764669,-0.6692241299897432,-0.41104575200006366,-0.18996753031387925,0.7638538307510316,-0.3386659072712064,0.13316125888377428,-0.8494829051196575,-0.47448013769462705,-0.9416003972291946,-0.7773261545225978,-0.2021261639893055,-0.002223384566605091,0.9274682658724487,-0.6751679764129221,0.5202949307858944,-0.4669779483228922,0.022692360915243626,0.35648329509422183,0.10987675376236439,0.4451697994954884,-0.9584032199345529,0.47936708899214864,0.443291109520942,-0.7220430322922766,-0.4840771732851863,0.3157212436199188,0.7307717786170542,0.13426607428118587,-0.7289838162250817,-0.9826367446221411,-0.7111699692904949,0.8696282026357949,-0.8714514821767807,-0.9776150952093303,-0.8113251673057675,0.5925338119268417,0.9152473332360387,0.3661652053706348,-0.3364411420188844,-0.7242345265112817,-0.2600803463719785,0.24848408298566937,0.45505825243890285,0.330087564419955,0.11760188452899456,-0.09967605164274573,-0.8458511829376221,0.5811869283206761,0.7023491077125072,0.20216370141133666,0.16293393587693572,-0.29089560732245445,-0.4922503768466413,0.7050613188184798,0.4683699016459286,0.54458859981969,0.9650181331671774,-0.4411752154119313,-0.1635404392145574,0.5141309332102537,-0.11613830365240574,0.2952660913579166,0.7511022938415408,0.04713869886472821,0.9821817274205387,0.49091363325715065,-0.2498588883318007,0.16263045277446508,0.23562268121168017,0.15706133330240846,-0.36216306360438466,0.6098708789795637,-0.827952325809747,-0.3738859831355512,-0.0849027642980218,-0.781382804736495,-0.7456014859490097,-0.5042501487769186,-0.12201171880587935,-0.17562250047922134,-0.249236308503896,0.6505011920817196,0.11179466731846333,0.10607201047241688,0.27474475046619773,-0.8888672292232513,-0.09484694665297866,0.06846878957003355,0.8218021094799042,0.9881852651014924,0.7042078487575054,-0.9472619122825563,-0.6039427653886378,0.47162705892696977,-0.1601969338953495,0.6501434347592294,-0.43045801669359207,0.23810709919780493,-0.5286141666583717,0.4395356015302241,-0.44950045505538583,-0.7943019224330783,0.4070021123625338,0.1479286146350205,0.5567298186942935,-0.5217552953399718,-0.9559591822326183,-0.7345828306861222,0.4897408499382436,0.5608053524047136,-0.7444269778206944,-0.8731913561932743,0.5167732117697597,0.7378647606819868,0.5950356549583375,0.787919057533145,0.22859166283160448,-0.8257307191379368,0.46987753408029675,0.2883796361275017,-0.7672190275043249,0.9605863094329834,-0.8397800056263804,0.21492238249629736,0.19537425367161632,0.26266172621399164,0.9095677076838911,0.13073411164805293,0.06366959726437926,0.2643497157841921,0.32017679372802377,0.3897992349229753,0.23633351037278771,0.5499721732921898,-0.22472824715077877,0.09503442421555519,0.796886551193893,-0.6932050492614508,0.440266122110188,0.03426577290520072,0.6459805918857455,0.7835656092502177,-0.48216120060533285,-0.2631024611182511,-0.340363294351846,-0.5249591115862131,0.2824695142917335,-0.2959260712377727,-0.2521835886873305,0.7177873579785228,-0.8453887891955674,-0.47471916442736983,0.9065438029356301,0.9538533352315426,-0.41341250902041793,0.10822707368060946,-0.26750187994912267,-0.7262375061400235,0.04865127010270953,0.1175122782588005,-0.23613966535776854,-0.25628523901104927,0.9719291310757399,-0.14841236034408212,0.21787619590759277,-0.4892207165248692,-0.5778265418484807,0.8632868258282542,-0.7268558805808425,-0.3779932423494756,-0.2507978775538504,0.7147830300964415,0.14565805671736598,-0.06633963761851192,0.7158318236470222,0.7487938734702766,0.3808795236982405,-0.9032733952626586,-0.8204112788662314,-0.5809106593951583,0.6417964207939804,0.599182385019958,0.7075423025526106,-0.5341962035745382,0.5714435740374029,-0.17640601005405188,0.6223414815030992,0.2568647749722004,-0.7581315240822732,-0.46482472447678447,0.3841204196214676,-0.5459308363497257,0.40631899517029524,-0.006915259640663862,0.2901310781016946,-0.1889490270987153,0.13633921975269914,0.697301640175283,-0.5327948974445462,-0.04573156079277396,0.13068415084853768,-0.019328727386891842,0.37146261567249894,0.3575381604023278,-0.9363105832599103,-0.7467047697864473,-0.9251185269095004,-0.06152933044359088,0.0250281342305243,0.8590926500037313,0.011143357027322054,0.8925120010972023,0.4041872718371451,0.8519133375957608,0.9831230482086539,0.5711995391175151,0.042518241330981255,0.7115898244082928,0.9294982831925154,-0.9700723760761321,0.27801639027893543,0.9464728119783103,-0.9762512394227087,-0.6611791853792965,0.22224664129316807,0.2878898596391082,-0.7594243562780321,0.04363503260537982,0.13232769165188074,0.6380172204226255,0.1161062503233552,-0.1111151222139597,-0.5463981633074582,-0.42752215871587396,-0.14289585407823324,-0.562774246558547,-0.9581666141748428,-0.38968412671238184,0.9130978682078421,0.8352799890562892,0.2727828291244805,0.7230037227272987,0.11083088396117091,0.8819235246628523,0.7958762017078698,-0.6315250783227384,0.7534238151274621,0.688651786185801,-0.09121842123568058,0.6454440881498158,-0.12967046489939094,-0.07786545203998685,-0.0009008133783936501,-0.791151381097734,-0.8666550042107701,0.10819489881396294,-0.13638980546966195,-0.9053753847256303,-0.31386459013447165,0.21890227310359478,0.39113783463835716,0.5447031613439322,-0.6909302342683077,0.15649518463760614,0.6407635766081512,0.5039724535308778,0.013258179184049368,-0.24810465378686786,-0.33166240248829126,-0.0018432852812111378,0.0936998687684536,-0.6612831614911556,-0.19314268976449966,-0.8596997512504458,-0.6129666613414884,0.9232577439397573,-0.9507535304874182,-0.40153157291933894,-0.6347822900861502,0.6892887456342578,-0.9565987773239613,0.07925295177847147,-0.033327487763017416,-0.028981282375752926,0.04677214100956917,0.4865631638094783,-0.22377265291288495,0.44037209544330835,0.7248266041278839,-0.04131307220086455,0.2769895172677934,0.4514073287136853,0.4090264025144279,-0.7946895994246006,-0.5288184434175491,0.058850317262113094,0.5643978361040354,0.20227201795205474,0.8072153250686824,-0.26029969565570354,0.5653587630949914,0.41824745619669557,0.2658136314712465,0.27520935237407684,-0.37333762645721436,0.5950057096779346,-0.6640591090545058,0.5461763073690236,-0.7181295733898878,0.706020531244576,0.3214926617220044,-0.769404434133321,-0.5133038903586566,0.7275899932719767,0.4550860822200775,0.09150183526799083,0.9255380029790103,0.5101851234212518,0.7924748808145523,0.5198439722880721,-0.5392558057792485,-0.3704034029506147,-0.5439735935069621,0.8240245915949345,0.42177614476531744,0.951732783112675,0.10129924956709146,0.9683995395898819,0.3622790100052953,0.5011193645186722,-0.24360485607758164,-0.5930712888948619,-0.35120672499760985,0.9249162655323744,0.4248805190436542,-0.32280850829556584,0.5044329166412354,0.33056194335222244,-0.9904342209920287,0.8147413870319724,0.08781840512529016,0.46865747356787324,0.879233920481056,-0.6785231013782322,-0.7129196273162961,-0.8218715800903738,-0.10601684264838696,0.341378222219646,-0.6260710782371461,0.6526562236249447,-0.016052684746682644,0.0238648378290236,0.3566874642856419,-0.9858743352815509,0.9357436308637261,0.1671422296203673,-0.6099014347419143,0.4773569446988404,0.7694012401625514,-0.11583625199273229,0.8788916207849979,-0.4088975475169718,0.8654179233126342,-0.48556252755224705,-0.1892002085223794,-0.4616661472246051,0.6198764774017036,0.801679166033864,0.38644613418728113,0.27121828868985176,-0.33690677769482136,0.10728367324918509,0.5513956672511995,0.0051776752807199955,0.6605515344999731,0.023764884565025568,-0.13858157768845558,0.27420377638190985,0.1853809622116387,0.3457817849703133,-0.8324250457808375,-0.72181461378932,0.6100982772186399,0.7749170665629208,-0.40127764036878943,-0.5817412622272968,0.9710700144059956,-0.9515223964117467,-0.45638031465932727,-0.045357618015259504,0.10907502891495824,0.8858599457889795,0.4091374413110316,0.4867421337403357,-0.094802375882864,0.34838568279519677,-0.4689093823544681,0.31392171140760183,-0.2835693936794996,0.9623784716241062,-0.13819839479401708,-0.8255608933977783,-0.9140410642139614,0.5392024428583682,-0.21341280778869987,0.024808191694319248,-0.647654150146991,-0.7016331208869815,0.40635311184450984,0.3476643501780927,0.10296860290691257,-0.9847165765240788,-0.46515127923339605,0.9082409711554646,-0.8787200464867055,-0.4569657542742789,-0.01772036962211132,0.7718093008734286,-0.12049111118540168,-0.985174329020083,-0.16342219803482294,-0.8988227727822959,0.4667379236780107,-0.9408959052525461,0.9701389260590076,0.4582409532740712,0.09242163598537445,-0.8590426468290389,0.9500612672418356,0.8296380867250264,0.4381820047274232,-0.92505221394822,-0.7738344264216721,0.15118082659319043,0.013662175741046667,-0.8006670856848359,0.2538008540868759,-0.7202466614544392,0.7346298829652369,0.01906375726684928,-0.6375060440041125,-0.852229556068778,-0.2913916097022593,-0.08002625918015838,0.852051995228976,0.9779683975502849,-0.9746862053871155,-0.7974819610826671,-0.044964329805225134,-0.8734119706787169,-0.7013061260804534,-0.6208507884293795,0.5111052570864558,-0.4272466627880931,-0.7733052936382592,0.23357457015663385,-0.8675092956982553,-0.2656826386228204,-0.09096600534394383,0.7785535263828933,0.6337565598078072,-0.21928209392353892,0.4573666569776833,0.04370976472273469,0.25799435935914516,0.7082247622311115,0.3496886710636318,-0.052602618001401424,-0.03734528087079525,-0.6595298429019749,-0.9886126890778542,-0.4619676531292498,0.7903830586001277,0.5233497293666005,-0.07396719185635448,0.3819054323248565,0.3502261764369905,-0.40293081710115075,-0.5905278786085546,-0.5604751096107066,0.4249694161117077,-0.24521364131942391,0.9427470806986094,0.19983694050461054,0.6760240308940411,0.33832909213379025,0.38185539469122887,0.1463072500191629,-0.5417239698581398,0.2003305722028017,0.31759402016177773,0.9289253880269825,-0.9636008106172085,0.2890707696788013,0.1503223362378776,-0.48790882900357246,-0.5479327477514744,0.9774016388691962,0.3727007685229182,-0.0256145759485662,0.6967961671762168,0.21002552658319473,-0.7076630727387965,-0.24623406678438187,-0.2945675109513104,0.3715691608376801,-0.23944720206782222,0.057888840790838,0.1976382709108293,-0.05696448963135481,-0.16253206692636013,-0.34917367063462734,0.1885017422027886,0.005091547034680843,-0.5817662053741515,0.3914701081812382,0.8277286938391626,0.6573514146730304,0.7348936996422708,-0.7635722067207098,0.5966702261939645,-0.936711773276329,0.7466544266790152,-0.9843453378416598,-0.6383950086310506,-0.9056662614457309,0.01652265014126897,-0.8992598466575146,0.8038317351602018,0.5833238428458571,0.37656746339052916,0.6607203520834446,0.411139655392617,-0.7495021871291101,-0.09152230899780989,0.19338313955813646,-0.09764346946030855,0.5212770984508097,0.1387283899821341,0.9751806519925594,-0.43357091723009944,0.5406656106933951,0.8080201423726976,0.6835818085819483,-0.45661247009411454,-0.34793228236958385,0.3368968931026757,-0.6467009861953557,-0.34295213455334306,0.20925282128155231,-0.9459177986718714,-0.06448302464559674,-0.3603330934420228,-0.9518758594058454,0.42714945459738374,-0.035170378629118204,-0.9540982414036989,-0.409068769775331,-0.3802310060709715,-0.23113765195012093,0.2216166825965047,0.9304754268378019,-0.9216087833046913,-0.8038856270723045,-0.56049685459584,-0.6843803767114878,-0.7320846477523446,0.06688688974827528,0.2917023031041026,-0.2333848113194108,-0.5013850014656782,-0.1066086026839912,-0.11456697434186935,0.5230401423759758,-0.5350961615331471,0.6991709270514548,0.3132347478531301,-0.6199088231660426,-0.9637149861082435,-0.0008352352306246758,-0.05972907831892371,-0.45497041940689087,0.8664382891729474,0.5487394696101546,0.36718933656811714,-0.9043282265774906,0.8347116825170815,-0.5434380369260907,0.9054423663765192,-0.9221452376805246,0.41785187320783734,0.02526317536830902,0.6914151827804744,0.8111745859496295,-0.8226262796670198,0.915987519081682,-0.45458714570850134,0.6007274282164872,0.5861246935091913,0.6770160985179245,0.7205634713172913,0.88906852575019,-0.6929784039966762,0.1821238244883716,-0.7523200302384794,-0.18498623510822654,0.7184968534857035,-0.15017337119206786,0.2708338350057602,-0.3274778928607702,-0.2197553706355393,0.28802254470065236,-0.5939941736869514,0.6635544095188379,-0.9409895800054073,0.9695837870240211,-0.4750331174582243,0.06401057401672006,-0.8219385505653918,-0.27873100619763136,-0.9718753988854587,-0.4084677789360285,0.10366373183205724,0.8112247292883694,0.10237692901864648,-0.41118243942037225,-0.8553501046262681,-0.2721192059107125,0.6813908694311976,-0.4048174708150327,-0.45718993712216616,0.31155884312465787,-0.6268520369194448,-0.8457599957473576,0.5740628191269934,-0.24688117858022451,-0.7451846720650792,-0.2108247196301818,-0.06608164496719837,-0.6927343839779496,-0.5681471480056643,0.7677135802805424,-0.7377564981579781,-0.9639065284281969,0.7296520466916263,-0.2463146848604083,-0.46004780614748597,-0.1357034845277667,-0.15272523369640112,-0.7420490281656384,0.36876961402595043,0.5202205237001181,0.9192453874275088,0.07096792384982109,0.16408234648406506,0.7780556753277779,-0.41468382300809026,-0.9235949162393808,-0.9015658032149076,-0.5622798609547317,0.9980551707558334,-0.43621658254414797,0.5119497654959559,-0.465656079351902,0.7018599454313517,0.777123439591378,-0.5859767203219235,-0.9514659037813544,-0.2678510155528784,-0.4068759805522859,-0.6145167369395494,0.9621811164543033,-0.061306329909712076,0.7050653444603086,-0.732357386033982,-0.34703660383820534,-0.74978320999071,0.9026238229125738,-0.16424240730702877,0.9268305986188352,-0.3220989741384983,0.8388084806501865,0.4984525302425027,0.4983504875563085,0.5363193233497441,-0.8881517411209643,-0.5305840191431344,-0.18472496280446649,0.32072081696242094,0.480714307166636,0.5277568749152124,0.2271642521955073,-0.16330900695174932,-0.24889988033100963,-0.6195060452446342,0.6372767253778875,0.7046382231637836,0.8649903535842896,-0.7520281225442886,-0.613921872805804,-0.7464700248092413,-0.06541320914402604,-0.6103725633583963,0.2170549789443612,0.3184209978207946,-0.47791792172938585,0.27162222983315587,-0.28928895108401775,-0.6974062360823154,-0.6403672723099589,0.409295744728297,-0.900781162083149,0.6266705933958292,0.5510843680240214,0.47394744167104363,-0.9062966383062303,-0.8742588711902499,-0.920433983206749,0.3606556304730475,0.7111452780663967,0.7288504536263645,-0.29247401375323534,0.06202807789668441,-0.39205295871943235,-0.139542106539011,0.1393814873881638,0.7336618467234075,0.3991831191815436,-0.36909839883446693,0.7162789758294821,-0.45994861237704754,0.03698943369090557,-0.7761563225649297,-0.0074869850650429726,-0.21818312024697661,-0.9204827388748527,-0.8473145691677928,-0.45761673897504807,0.4979707612656057,-0.37497858610004187,0.7426173170097172,0.7501577511429787,-0.021748974453657866,-0.7098035444505513,0.4024927094578743,0.9606654806993902,0.6669355533085763,0.9295077095739543,-0.933321129065007,-0.0405914974398911,-0.24866896122694016,0.6868485338054597,-0.10605112602934241,0.9895531293004751,0.9032565108500421,-0.24858549004420638,0.45743707101792097,0.9931898037903011,0.7834257348440588,0.03965565329417586,-0.2784477975219488,0.3858993072062731,-0.8195920009166002,0.16782404342666268,-0.3841460454277694,-0.6325180963613093,0.2824320876970887,0.8876344235613942,0.7788048265501857,0.6356001426465809,-0.13998334063217044,-0.6983775533735752,0.9555278373882174,0.6195003041066229,0.9003913546912372,0.8065495346672833,0.841189153958112,-0.09287279471755028,0.4287399463355541,-0.6608660430647433,-0.9503608806990087,-0.511792111210525,-0.8254033415578306,-0.47176843229681253,0.6517844619229436,-0.7124354275874794,0.7108862372115254,-0.2187800882384181,0.17726715235039592,0.1692326795309782,-0.8399773654527962,-0.8316476978361607,-0.37987560452893376,-0.47585478937253356,0.19474852038547397,-0.0229563070461154,0.33982148999348283,0.8616163283586502,0.13342154305428267,0.5857964428141713,-0.8808425702154636,0.24460747931152582,-0.9310330906882882,-0.039175719022750854,-0.7839406072162092,-0.8479364835657179,0.48840378411114216,-0.86700219521299,0.2735231905244291,0.8324207440018654,-0.7953416327945888,0.6749192248098552,0.43636273639276624,0.39497465966269374,-0.3452028501778841,0.028678940143436193,0.6300801034085453,0.05129447020590305,-0.04913972970098257,0.5357377338223159,-0.2554422435350716,-0.20564343640580773,0.7429615529254079,-0.12816637195646763,-0.012967560440301895,-0.32536451891064644,0.7623138786293566,0.9650155236013234,0.06660681683570147,0.7895227828994393,0.6538040423765779,0.10740949539467692,0.6915154117159545,0.3446733825840056,-0.4423083057627082,0.704397798050195,0.020585037302225828,-0.34074261458590627,-0.9041345408186316,-0.6697881584987044,-0.8262934600934386,-0.6402389942668378,-0.7152615305967629,-0.3413600707426667,-0.6179426619783044,-0.2771968957968056,0.4724201401695609,0.09476132737472653,-0.7479194761253893,0.15934964548796415,0.884873176459223,-0.8600285463035107,-0.3174323746934533,-0.9650130271911621,0.5190069735981524,-0.08246520720422268,0.002582783345133066,-0.8628315073437989,0.7342883762903512,-0.42406905721873045,0.19697509612888098,0.8136661229655147,-0.5283773024566472,-0.4436474908143282,0.9507000627927482,-0.5707623898051679,0.29114870680496097,-0.23013760894536972,-0.11008555348962545,-0.6583345541730523,-0.0441563380882144,0.19224506942555308,-0.7327436278574169,-0.7325722617097199,0.6468350472860038,0.6747662150301039,0.6651829862967134,0.9199214749969542,-0.8717391542159021,0.7162519837729633,-0.8221290716901422,-0.8017117814160883,0.5258821295574307,-0.9889248860999942,0.5437347460538149,0.4886126727797091,0.5342868398874998,0.14481949526816607,-0.9266537642106414,0.5018786857835948,-0.2791058123111725,-0.5364854014478624,-0.6696379249915481,-0.25719217816367745,0.9360080067999661,0.5257519232109189,-0.15414832951501012,-0.624714485835284,0.4906993987970054,-0.577626877464354,0.09865894401445985,0.5155363460071385,-0.2125144461169839,0.47179065691307187,-0.4576916745863855,-0.9672361295670271,0.6671820906922221,0.9113935641944408,-0.8648697985336185,0.4994662771932781,0.6598636009730399,0.16113544907420874,0.6761596375145018,-0.4518422205001116,-0.7077054800465703,0.513358443044126,-0.6373187843710184,-0.5246874545700848,0.38526767678558826,-0.690416042227298,-0.33873356180265546,0.10869994247332215,-0.4226106028072536,-0.8522206940688193,-0.32574212504550815,-0.5427472768351436,0.3983967578969896,-0.830926432274282,-0.8425640971399844,0.41091573145240545,0.9068139088340104,-0.8926155338995159,-0.015042475424706936,0.3804725483059883,-0.6537988833151758,0.14485036442056298,0.45884908828884363,0.059187513310462236,-0.3893187930807471,0.327950032427907,-0.6883075553923845,0.5816436344757676,-0.3695806413888931,0.6747785490006208,-0.12318582693114877,0.6037825238890946,0.7343675838783383,-0.4652625652961433,-0.2728351838886738,-0.4024415141902864,0.6378996009007096,-0.16500027431175113,0.6279326668009162,0.030134922824800014,-0.21903110574930906,0.6393913761712611,0.29580228636041284,0.6250527985394001,-0.7925234036520123,-0.4650488430634141,0.4472532831132412,0.22540848795324564,0.5783152231015265,-0.758263080380857,0.6667303456924856,0.33607416320592165,-0.4014039169996977,0.3959173266775906,-0.7777918512001634,-0.0240325341001153,0.8539334498345852,0.30450219567865133,0.5805125269107521,-0.09769667591899633,-0.90187459718436,0.40205946611240506,0.9685223223641515,0.042811629828065634,0.8202256457880139,0.8955656215548515,0.8250324474647641,-0.40269835479557514,0.2630573008209467,-0.3137575453147292,-0.09309251653030515,-0.7073387922719121,-0.6730724666267633,0.8795325360260904,-0.6630364591255784,0.36902683274820447,0.9348731804639101,-0.029155521653592587,-0.25086378725245595,0.28511500731110573,-0.8325386685319245,0.27554631931707263,0.15577972028404474,-0.2098891967907548,0.30800375808030367,0.2409032816067338,-0.3952863160520792,0.9458247371949255,-0.6071531130000949,0.21141707431524992,-0.042842650320380926,-0.5753035163506866,-0.01964193768799305,-0.1806097342632711,0.41120409267023206,0.33949069678783417,0.20962003152817488,0.39084702683612704,-0.6970512252300978,0.6939308708533645,0.7219341485761106,-0.5054238722659647,-0.9106966652907431,-0.7026239288970828,-0.5314248353242874,0.06290039466693997,0.7409152803011239,-0.4656703248620033,-0.5729583622887731,-0.7193833906203508,-0.030573559924960136,-0.3840608475729823,0.287578861694783,0.5179184577427804,0.16759130079299212,-0.11191130056977272,-0.2942503960803151,0.6527186832390726,0.14899488911032677,-0.3375081825070083,0.12815100979059935,0.7622880549170077,-0.012040089815855026,0.481016815174371,-0.3038048464804888,-0.2762355478480458,-0.4293015147559345,0.4095726776868105,-0.07744249794632196,-0.3266538050957024,-0.48836993938311934,-0.8467081082053483,-0.8626458076760173,0.6634233016520739,0.5091934185475111,-0.07007673475891352,0.34812917141243815,0.2807179125957191,0.3427645806223154,0.3164063203148544,0.44342121528461576,-0.34147185925394297,-0.3732492900453508,0.9002285962924361,-0.3701140759512782,0.40280366875231266,-0.08944424940273166,0.03782993648201227,0.3675799071788788,-0.5309815010987222,-0.05096137244254351,0.6517562759108841,0.6135603077709675,0.6808479875326157,0.36678598122671247,-0.7752245594747365,-0.29019475309178233,0.9514444209635258,-0.4947636881843209,-0.5414332980290055,0.4815312051214278,-0.028941701631993055,0.546832240652293,0.8428389364853501,-0.7804198316298425,-0.3013448705896735,-0.12260469421744347,0.10440122475847602,-0.6144930515438318,0.48355141561478376,0.6012125122360885,0.2948641791008413,0.9090452077798545,0.8661407795734704,-0.4614038523286581,0.7982646063901484,-0.2613834044896066,-0.5739984521642327,-0.4846812207251787,0.13851740350946784,-0.3066222514025867,-0.7495935061015189,0.6650931616313756,-0.32670276751741767,0.5985639723949134,0.9274677378125489,-0.6674740449525416,-0.5548748495057225,0.852602600120008,-0.02778380736708641,-0.4948787991888821,0.4076549932360649,0.5566923031583428,0.7825085259974003,-0.05977401323616505,0.16743819089606404,0.5947320610284805,0.4081781408749521,0.09397769067436457,0.4025778747163713,-0.14849476842209697,0.4037689291872084,0.7480751727707684,-0.9900028919801116,0.11084159277379513,-0.679932992439717,0.508727531414479,-0.9843900199048221,-0.49039301415905356,-0.019272275734692812,0.8395574702881277,0.06117386929690838,-0.5701829721219838,0.24294265266507864,0.8232651837170124,-0.11442770389840007,-0.3360840962268412,-0.4224943993613124,-0.8736479869112372,0.6900895098224282,-0.3882007598876953,-0.1358657032251358,-0.7656231950968504,0.05291757872328162,-0.828744551166892,-0.003967201802879572,0.7092100968584418,0.9542058752849698,0.20980861503630877,0.15989059302955866,-0.07426187302917242,0.30406177742406726,-0.24080851394683123,-0.7576775019988418,-0.6908553917892277,-0.2839852496981621,0.05102246766909957,0.5927036558277905,0.6123531679622829,0.7124179205857217,-0.7586754434742033,0.7459569037891924,0.43105606781318784,-0.6608765725977719,0.5037734289653599,0.6461697090417147,-0.44368164939805865,-0.18341207457706332,-0.2503451397642493,-0.7991714798845351,0.8159124576486647,-0.9661452863365412,0.7663337606936693,0.1382019855082035,-0.17732396395877004,-0.5001716800034046,0.1539092375896871,-0.23633566172793508,0.4425685196183622,0.4658619905821979,-0.3969265935011208,-0.4774951287545264,-0.09145964635536075,0.42469699308276176,0.17537847580388188,0.7303349836729467,0.8400460863485932,0.04289607098326087,-0.8118771514855325,0.15696698892861605,-0.11044779047369957,-0.5858448524959385,-0.22908562142401934,-0.9932905612513423,-0.1729448172263801,-0.9241928840056062,0.33356498926877975,0.7905926611274481,0.5158726209774613,-0.016851799562573433,0.6045478801243007,0.49414818407967687,-0.3251463733613491,-0.023699054028838873,-0.4259194163605571,-0.24005575384944677,-0.19650674099102616,-0.08226642990484834,0.3740900498814881,0.6003921963274479,-0.15566303208470345,0.07896903296932578,0.07543650036677718,0.607001731172204,-0.780027074739337,-0.006838980596512556,0.35996503569185734,-0.8533272091299295,-0.16581019293516874,-0.08661094261333346,-0.7907103099860251,-0.2866618218831718,-0.815033158287406,0.08633322035893798,0.8378749513067305,0.2053684196434915,-0.07757921982556581,0.6163111105561256,-0.22683193627744913,0.9253971795551479,-0.6390725201927125,-0.7816094718873501,-0.5007410440593958,-0.5791709823533893,-0.7879404798150063,-0.6944760391488671,0.37234593043103814,0.15124940546229482,-0.3199879084713757,0.8343575121834874,-0.5060660415329039,-0.8919653939083219,-0.7442381079308689,-0.4006203846074641,0.6262647863477468,-0.25205132411792874,-0.4843568638898432,0.9342398033477366,-0.8726567844860256,-0.09894947335124016,0.008062358014285564,0.3012521881610155,-0.8764088097959757,0.2523589404299855,-0.8800845197401941,-0.04428106406703591,-0.3676495705731213,-0.32080758083611727,0.8070331788621843,-0.054179186932742596,0.41866208892315626,-0.25881257047876716,-0.4956772243604064,-0.20385750709101558,-0.20134096033871174,-0.9173023481853306,-0.007249265909194946,0.3143628519028425,0.8099112487398088,0.6985704214312136,-0.9267549230717123,-0.13911096286028624,-0.9016535505652428,0.6975962608121336,-0.06824192637577653,-0.18030542600899935,-0.6964130755513906,0.030117092188447714,-0.06285493448376656,0.18144105980172753,0.5299068256281316,0.4047158812172711,-0.3479052893817425,-0.884782440494746,-0.5592595785856247,0.3670767708681524,-0.9609202980063856,0.4275637245737016,0.32945843832567334,-0.369046185631305,-0.6761768804863095,-0.1574716977775097,0.94939308706671,0.0845088348723948,-0.5281638209708035,-0.07849234249442816,0.783739760518074,0.43160845525562763,-0.7983959950506687,-0.8315050862729549,-0.7309681004844606,-0.863391783554107,-0.8484117719344795,-0.27849298529326916,-0.05683982977643609,0.5149566140025854,-0.9821486924774945,0.14166629640385509,0.8645525150932372,0.9099393500946462,0.41079234750941396,0.013646608218550682,0.6113092629238963,0.231183594558388,0.7910507363267243,0.15884042205289006,-0.5583178102970123,0.35715206479653716,0.8420551503077149,-0.7541508176364005,-0.05730067705735564,-0.5796456998214126,0.13670675130560994,0.056378642562776804,-0.1527390810661018,0.8737962068989873,0.7494428702630103,-0.8262370899319649,-0.8099635038524866,0.13979821419343352,0.1787009476684034,-0.28151433588936925,0.8603097298182547,0.9778511286713183,0.39729819213971496,-0.888020655605942,0.37244731467217207,0.22009669011458755,0.8967526685446501,0.2413272839039564,0.6893309256993234,0.22652839636430144,-0.5298246741294861,0.6915772529318929,-0.4063956462778151,-0.043012219946831465,-0.527473587077111,-0.07901862030848861,-0.3702887333929539,0.16891717817634344,0.7064864574931562,-0.10461480123922229,0.29725858895108104,0.4536756775341928,0.60952193941921,0.3598969941958785,-0.8360533704981208,-0.3182583558373153,-0.6251749484799802,0.681607648730278,0.5512406099587679,-0.34340632101520896,0.2736884104087949,0.3207304021343589,-0.3141493909060955,0.4154844284057617,0.5508499257266521,-0.57633889419958,-0.24185517383739352,0.5122705148532987,0.19273200491443276,0.17002565739676356,-0.8177626831457019,0.6552376723848283,0.6988357659429312,0.9276024447754025,0.09284932026639581,-0.18181936256587505,0.1172589068301022,0.6993365045636892,0.16408473998308182,0.022228607907891273,-0.42380470456555486,-0.7922978447750211,0.5353502514772117,-0.05580306565389037,0.6678190375678241,0.5626958063803613,0.5071997009217739,0.2952765473164618,-0.4813079861924052,-0.5508289225399494,-0.021294395439326763,0.8167843613773584,-0.8479958246462047,0.3085348531603813,-0.49971338734030724,-0.48847777396440506,-0.13272307207807899,0.4638671572320163,-0.19178610714152455,0.23040233878418803,-0.7150906701572239,0.7976286499761045,0.8647246351465583,-0.672517326194793,0.7576646031811833,-0.555331829469651,0.5335840811021626,0.9859736757352948,0.8940930436365306,0.1839462025091052,-0.7192383455112576,0.5866577462293208,-0.40402517234906554,0.6092407498508692,-0.7829646915197372,-0.8739174399524927,0.6241624373942614,0.48271230328828096,0.2087956527248025,-0.6728346301242709,0.2746500764042139,0.3070174544118345,-0.2602247493341565,-0.9784430344589055,-0.868613148573786,0.4454200053587556,-0.2770433812402189,0.18706525396555662,-0.3939179335720837,-0.8278302093967795,0.4584887367673218,0.4858137546107173,0.8741806969046593,0.7661488689482212,0.4587951288558543,-0.9144506850279868,0.24580236338078976,0.5499969669617712,-0.836102700792253,-0.2689768858253956,0.33007416408509016,-0.006749907974153757,-0.3234704062342644,-0.8143933061510324,-0.14867442240938544,0.9764920365996659,0.8512330674566329,-0.5376666584052145,0.03737626038491726,0.8059812015853822,-0.2530979374423623,0.9879386089742184,-0.5142672238871455,0.27300724806264043,-0.23449398297816515,0.5490171411074698,-0.4718029098585248,0.6968104541301727,0.003851498942822218,-0.16107408702373505,0.7083592107519507,0.6438413453288376,-0.1327655022032559,-0.2175065642222762,-0.7015823782421649,-0.4170387811027467,-0.8009927552193403,-0.057156546507030725,-0.12191871600225568,-0.05682069296017289,-0.4762348490767181,0.9635467175394297,-0.9814557884819806,0.831198301166296,-0.505361168179661,-0.40501573914662004,-0.15637571783736348,-0.0535845453850925,-0.8930274331942201,0.07761581195518374,-0.46548009337857366,-0.6074046362191439,-0.7928830250166357,0.9314243486151099,-0.06621644599363208,-0.8990833149291575,-0.23005692195147276,-0.15193807100877166,0.9019780983217061,-0.5630094381049275,-0.19454883690923452,-0.8387832189910114,-0.6137057938612998,0.32863014563918114,-0.7691685776226223,-0.698666840326041,-0.9556101108901203,0.24844673741608858,0.6717682327143848,-0.7319677239283919,-0.27333614975214005,0.9270064793527126,0.3947806735523045,0.3083789572119713,0.7546385191380978,0.18204612005501986,-0.48416055692359805,-0.6380004691891372,0.8168369815684855,-0.7224691389128566,0.7412333022803068,-0.6692417827434838,-0.17307536909356713,-0.6519495924003422,-0.007119558751583099,0.2412808546796441,-0.3221499128267169,0.4555717105977237,-0.8373150611296296,0.17664777301251888,0.7778016761876643,-0.8509822771884501,-0.43447966780513525,-0.2932217437773943,0.15197850903496146,-0.27682144567370415,-0.8776534548960626,-0.4856492346152663,0.4665258303284645,0.23446543188765645,-0.5917243836447597,0.49654710479080677,0.8057835567742586,0.14119732100516558,0.2664741608314216,0.8033755365759134,0.5008860374800861,-0.46707670157775283,-0.3063751459121704,-0.4056802727282047,0.3160389340482652,0.6156778861768544,-0.1108582760207355,0.6370635670609772,-0.9146245899610221,-0.9328927234746516,0.3746377006173134,0.27981618512421846,0.6302762520499527,0.3078254107385874,-0.017860895954072475,-0.19866961799561977,0.6549799586646259,0.8311068057082593,-0.9855257938615978,-0.3999199611134827,-0.4532367172650993,0.4030113387852907,-0.9557526409626007,-0.11121412087231874,-0.1388515350408852,-0.13483034493401647,-0.24647375894710422,0.5517175062559545,-0.3602209431119263,0.4519305760040879,0.2578017199411988,0.7479472593404353,-0.4361836616881192,0.3728805612772703,-0.9704266805201769,-0.07945161778479815,-0.08296631602570415,0.554299843031913,0.27073553623631597,0.29790066462010145,0.003664769697934389,-0.8311499673873186,0.4380969824269414,0.01930836495012045,0.3407929465174675,0.15131256356835365,-0.7029719362035394,-0.9633897044695914,-0.23267650324851274,-0.008668296039104462,0.7875849669799209,0.9335141568444669,-0.6684016231447458,-0.4314213548786938,0.6196093182079494,0.971828053239733,-0.22136368602514267,0.07561278576031327,-0.9717559036798775,-0.8440628852695227,-0.7556077758781612,-0.36452068015933037,-0.5588001916185021,-0.03528576297685504,0.7876585614867508,0.6685511469841003,-0.4278195113874972,-0.3281963332556188,-0.7433883901685476,-0.17909364914521575,0.3860741760581732,-0.18612641049548984,0.5701958700083196,-0.21765109850093722,-0.10745285591110587,-0.5681809051893651,-0.4584987056441605,0.7473239367827773,-0.9675081018358469,-0.39229059778153896,0.4283689698204398,0.04867388494312763,0.8704385212622583,-0.663848387543112,0.5778729487210512,-0.06629330292344093,-0.8953405939973891,-0.810168300755322,-0.4733100184239447,-0.6393210827372968,0.5490756183862686,-0.4336974937468767,0.32394579937681556,-0.34710404090583324,0.5359862535260618,-0.3316693874076009,0.03773149801418185,-0.6344824167899787,-0.774910650216043,-0.3556919633410871,0.41224323911592364,-0.3786161271855235,-0.7539953547529876,0.9614184694364667,0.4441885082051158,0.9368488886393607,0.11973187094554305,-0.5721690943464637,0.8019472993910313,-0.6095716874115169,-0.34008505987003446,0.5446538547985256,-0.19657465815544128,0.18395498860627413,-0.4730728096328676,0.018924175761640072,-0.016248743049800396,-0.345953478012234,0.3625066811218858,0.4430250246077776,0.9154005739837885,0.166076407302171,-0.5043483297340572,-0.29807908087968826,-0.3130581923760474,-0.8947412827983499,-0.9971011155284941,0.3354288125410676,0.46909179957583547,-0.8475381745956838,0.023703943472355604,-0.8874630047939718,0.7940618866123259,-0.7102445061318576,0.9886508053168654,0.28435682877898216,0.3954299301840365,0.3519465811550617,0.7693533878773451,0.5389195489697158,-0.2300189221277833,-0.0392697905190289,-0.26698870165273547,-0.43915986781939864,-0.8632483333349228,0.1659072060137987,0.9221279644407332,-0.8603881485760212,-0.924136808142066,-0.2199500543065369,-0.2152718328870833,0.6526407906785607,0.26003731694072485,-0.4769884329289198,0.11736438795924187,0.6416960610076785,0.8073998247273266,0.4236721131019294,-0.475825356785208,0.2736645145341754,-0.9003748157992959,0.6891745124012232,-0.1591269881464541,-0.528232054784894,-0.16399616561830044,-0.1878536520525813,0.24525567376986146,-0.1420687073841691,0.1255530114285648,-0.639142818748951,0.8553425711579621,0.9524714266881347,-0.5901942458003759,0.7482625828124583,0.1379806362092495,0.4948234627954662,0.5358905615285039,0.04924544133245945,0.4129471513442695,-0.9227931052446365,-0.4606970469467342,-0.1162561159580946,-0.0825935173779726,-0.7510901945643127,-0.7946299188770354,0.42229844396933913,-0.31518998509272933,0.4467961387708783,0.8887613643892109,0.1108127306215465,-0.7600959381088614,0.6960802623070776,-0.5127645507454872,-0.08409640332683921,0.6065056519582868,0.9686396955512464,0.39874231116846204,-0.1496810531243682,-0.893436926882714,-0.30567083694040775,0.2745166951790452,-0.5959979761391878,0.3407067274674773,0.7510856646113098,-0.04621429741382599,-0.7473391690291464,-0.7007801453582942,0.10804753331467509,0.7687623952515423,-0.7642691503278911,0.522952388972044,-0.38541971892118454,-0.8352083740755916,0.563854587264359,-0.9245873712934554,-0.014075474347919226,0.6159684639424086,-0.16359108174219728,-0.23246874380856752,0.30631741462275386,-0.417701018974185,0.6653867033310235,0.20727248024195433,0.5232351594604552,-0.10354677913710475,-0.7707174555398524,-0.017321044113487005,-0.5553732253611088,-0.8616686468012631,0.19354446837678552,-0.4569519842043519,0.7023489098064601,0.12295106938108802,0.07408296363428235,0.980613898485899,0.36300751054659486,0.4426110256463289,0.8721385872922838,0.5793025246821344,0.2875974904745817,-0.15180712239816785,0.15217192843556404,-0.5961047783493996,-0.6633660066872835,0.11710580857470632,0.09530821722000837,0.6577078797854483,-0.10930349212139845,-0.9557621143758297,-0.8749696952290833,-0.39201387856155634,0.4132976816035807,0.8124949550256133,0.8664015932008624,0.656881301663816,0.43560590501874685,-0.8676217179745436,0.6971432249993086,0.31581964483484626,-0.6598866553977132,0.7322004935704172,-0.43696225341409445,0.8075136765837669,0.9287352822721004,0.08600464975461364,0.12919378792867064,0.6207327423617244,0.5550361983478069,0.789987123105675,-0.08121192781254649,0.3099757758900523,0.2201417745091021,-0.355631731916219,0.10379846068099141,-0.7845394588075578,0.7673240955919027,0.2870413912460208,-0.5381325106136501,0.7390721677802503,-0.03626410290598869,0.4179157940670848,0.29565334785729647,-0.897011159453541,-0.05932337697595358,-0.7561122635379434,0.9176027211360633,0.3385243690572679,-0.8595798099413514,0.593665215652436,-0.08185867639258504,0.8860055175609887,0.3625230477191508,0.6856259489431977,-0.009028497152030468,-0.8653567270375788,-0.07719604671001434,0.12078711343929172,0.661232921294868,0.395226932130754,-0.7503078416921198,0.1494017206132412,-0.8441236205399036,-0.02285358775407076,-0.46035457169637084,0.22635590191930532,0.5770675162784755,0.7948071751743555,-0.6117030079476535,0.985543095972389,0.9677505195140839,-0.5091023417189717,0.8428775714710355,0.588451222050935,-0.6747156418859959,-0.6081131570972502,0.09869249258190393,0.1559374458156526,-0.209789315238595,0.044014777056872845,0.9739419724792242,0.6083487677387893,-0.8182045272551477,-0.24477009335532784,-0.4483313183300197,-0.7092805565334857,0.6400627894327044,0.5802885941229761,0.862757386174053,-0.12671407498419285,0.9854410020634532,-0.3838511179201305,-0.36159507697448134,-0.909893395844847,0.5408334354870021,0.965508870780468,-0.09914661012589931,-0.5124667254276574,0.3673837040551007,0.08366463938727975,0.6064091771841049,-0.18370366794988513,0.6185193541459739,0.19318293826654553,0.41741081420332193,-0.5786305768415332,-0.9334043101407588,-0.8199420566670597,-0.01460683811455965,0.7483792910352349,0.13497058302164078,0.5706641282886267,0.8183574061840773,0.990214011631906,-0.19450296461582184,-0.7549447906203568,-0.32827200600877404,-0.4251973279751837,0.6592328785918653,0.5278369393199682,-0.6811006609350443,-0.12986134830862284,0.5510766394436359,0.12880643550306559,-0.18024679506197572,-0.5373347839340568,-0.21674677031114697,-0.908431040123105,0.6438575028441846,-0.335161407943815,0.20153297809883952,-0.06270322855561972,0.99104082910344,-0.4564249087125063,-0.08950933394953609,-0.46473243413493037,0.8037308058701456,-0.7693263199180365,-0.21772498916834593,0.6941157006658614,-0.7312621381133795,-0.015174813102930784,0.4969793609343469,-0.5843529459089041,0.7456728382967412,-0.47220450872555375,-0.31831466732546687,0.14348151767626405,0.49442706163972616,0.5716381478123367,-0.3781160865910351,0.36250463081523776,-0.6182872736826539,0.16896077012643218,0.8869426096789539,0.4523816918954253,-0.7602414316497743,0.1086855148896575,0.5719071161001921,-0.6380228982307017,0.6333041414618492,0.7916299975477159,-0.3061202676035464,0.22091724071651697,-0.6768878437578678,-0.8238359913229942,-0.2992745628580451,-0.8361678346991539,-0.324790685903281,-0.6079045366495848,-0.22288265125826,0.24449022393673658,-0.3434387156739831,0.7848404729738832,0.40236024279147387,0.22139527322724462,0.972204212564975,0.8510493733920157,-0.5969701986759901,0.2388538965024054,0.7658066935837269,-0.7967137228697538,0.2607302903197706,0.7090158103965223,0.11978935450315475,0.05546755436807871,0.48532178113237023,0.5921066496521235,0.8648627358488739,0.5250859730876982,-0.4809431852772832,-0.31836295407265425,-0.9323432804085314,-0.21500305086374283,-0.3044439419172704,0.5897558936849236,-0.9888015030883253,-0.8697821572422981,0.8524926663376391,-0.1147020822390914,-0.4591536461375654,0.6577288927510381,-0.6087712119333446,0.6281901788897812,-0.223594278562814,-0.015601504128426313,-0.45654344698414207,-0.1831774553284049,-0.6152201350778341,0.8760708547197282,0.3037707884795964,-0.5875755730085075,-0.1666070413775742,-0.2541886162944138,0.04107910767197609,0.0820724405348301,-0.7171797221526504,0.8982015810906887,0.8696347656659782,0.7926986827515066,-0.6164635447785258,-0.39151163725182414,0.8422722658142447,0.6066199191845953,0.5737553895451128,-0.26521432772278786,0.9103551236912608,0.63351518381387,0.2918186471797526,0.8142133676446974,0.6812722836621106,0.8721035732887685,0.30509154684841633,-0.3001691955141723,0.0647670766338706,0.13471622671931982,-0.6736409510485828,-0.9879163773730397,0.54512056754902,0.5439499961212277,-0.9359793160110712,0.9098625415936112,0.6455829991027713,0.12498249439522624,0.5000527799129486,-0.9740833388641477,-0.45242748968303204,-0.12654339522123337,0.2078503561206162,0.8023490780033171,-0.40779812447726727,-0.023898872081190348,-0.19729426223784685,-0.4906447664834559,-0.3500442476943135,-0.22757695661857724,-0.0026005562394857407,0.17302548373118043,-0.2621324243955314,0.8883902262896299,0.41897485917434096,0.9182712691836059,-0.8431797344237566,-0.13370414776727557,0.5720120589248836,-0.780184667557478,-0.7800970962271094,0.6684315940365195,-0.41849410720169544,-0.010046750772744417,0.6896215872839093,0.9626449807547033,-0.30235826782882214,-0.7023266181349754,0.02251891978085041,0.03491788171231747,-0.5238289092667401,0.4930919613689184,0.09234923776239157,0.31326640117913485,0.502723260782659,-0.6122616548091173,-0.2646021996624768,0.06867046793922782,-0.4313681563362479,0.08974944427609444,0.7955618654377759,-0.47638822440057993,0.5073025450110435,-0.5068152849562466,0.8795431912876666,0.28072662139311433,-0.2753080469556153,0.06933604832738638,-0.07046146830543876,-0.8254130915738642,0.11082268040627241,-0.8076117825694382,0.4626083173789084,-0.6546015250496566,-0.6170144928619266,-0.4570544306188822,0.8727265610359609,-0.20939374482259154,-0.9408021955750883,-0.5390887851826847,-0.5668708221055567,0.18712691869586706,-0.7152787945233285,-0.5731377671472728,-0.7000774233601987,0.0009694942273199558,-0.7969343326985836,0.290696628857404,-0.4254308706149459,-0.8567557116039097,-0.7539903083816171,-0.40527972392737865,-0.6459664078429341,0.21659934474155307,0.7208416918292642,-0.3094210810959339,-0.32370992843061686,0.3198875728994608,0.08064080867916346,-0.3253974663093686,-0.7043440695852041,-0.6050882767885923,-0.44819257967174053,0.859992160461843,-0.9453122494742274,-0.4151232116855681,0.7892610710114241,-0.16626404970884323,0.8350904402323067,-0.3862179070711136,-0.24756388738751411,0.4938119142316282,0.2793979817070067,-0.3922872287221253,0.28814917616546154,-0.32438864652067423,-0.9150701267644763,0.8707098984159529,-0.18510820949450135,-0.5846499423496425,0.34321776032447815,0.06493996642529964,0.29668424697592854,-0.28629793087020516,-0.2460519103333354,0.5737155703827739,-0.9349905564449728,0.7309174169786274,-0.22096951818093657,0.36658888775855303,-0.8234390318393707,-0.3038981924764812,-0.9447359018959105,0.8620763230137527,-0.9559881775639951,-0.15920844580978155,-0.44559764163568616,-0.20737090054899454,-0.12827845057472587,-0.8101553311571479,0.2830632273107767,0.13155674003064632,-0.4804596398025751,-0.543580767698586,-0.22316679079085588,-0.3890237337909639,0.14020988112315536,0.37843906227499247,0.5170185505412519,-0.24723634216934443,-0.8123777681030333,0.3317955774255097,0.41082678316161036,-0.7914901534095407,0.8698433036915958,0.9218083848245442,-0.6149163083173335,-0.255154961720109,-0.9750279504805803,0.47971881413832307,0.9096659366041422,-0.3218007208779454,-0.8183427462354302,-0.6269500097259879,-0.06961483228951693,0.984650410246104,0.2698707855306566,0.11991131165996194,0.24436830636113882,0.9611360202543437,-0.8014141926541924,-0.48756129713729024,-0.9077822207473218,-0.033289666287600994,-0.4539950415492058,0.5138353514485061,-0.6858885558322072,0.6202448769472539,-0.0929314293898642,-0.40630710404366255,0.7639202526770532,-0.6658465419895947,0.8006069483235478,-0.6912177680060267,0.2954933578148484,-0.3653417080640793,0.9385710470378399,-0.8352817590348423,0.6475188685581088,-0.34058388182893395,0.9701794409193099,0.9296150892041624,0.7034360473044217,0.9042248534969985,-0.09821370430290699,-0.06781458714976907,0.7143817562609911,-0.08172853477299213,-0.3875238453038037,-0.11361094564199448,0.7093461281619966,-0.22099529625847936,0.42064397130161524,0.6406815624795854,0.5344596696086228,-0.9380076290108263,-0.9824863579124212,-0.6031504818238318,0.8989259665831923,0.9911848022602499,-0.37840382009744644,-0.9491825611330569,-0.35034762928262353,0.9943762188777328,-0.21902404353022575,-0.034740027505904436,0.5796688823029399,0.7140288101509213,-0.2575240791775286,0.3052827809005976,0.020694874227046967,0.05287348758429289,0.6067804847843945,0.33364870119839907,-0.6516128093935549,0.884231252130121,0.6280350279994309,-0.8603398161940277,-0.35235098702833056,0.9873701678588986,-0.7320967009291053,0.5900243171490729,-0.43386263959109783,-0.8290483322925866,-0.14955902518704534,0.25305245351046324,0.5891514476388693,-0.2632231512106955,0.30363436602056026,0.3731460142880678,0.8452923218719661,-0.3716054377146065,0.3009127485565841,-0.37057150481268764,0.2437463621608913,0.9253952782601118,-0.7968589817173779,-0.4251947542652488,0.5987642691470683,0.9320079758763313,0.8760098903439939,0.8687513954937458,0.9866034146398306,-0.6650061584077775,0.1519962390884757,-0.6489407895132899,0.4168818313628435,0.3252706150524318,0.2452604384161532,0.970578933134675,0.24345194036141038,-0.7005076822824776,-0.07593251531943679,-0.8861696165986359,0.8851976436562836,-0.6383402035571635,0.9065876523964107,-0.7348330039530993,0.5895206718705595,0.6079262560233474,0.9948991117998958,-0.9475236344151199,-0.7805566596798599,-0.44600290805101395,-0.324220506940037,-0.08211770607158542,-0.05057010194286704,0.01705273427069187,-0.7613395298831165,-0.3589657968841493,0.48325206246227026,-0.7655999194830656,0.2357463571242988,0.5949509316124022,0.9255517474375665,-0.7572276308201253,0.6650395481847227,-0.06158335832878947,-0.8229541005566716,-0.36187221854925156,0.5639379709027708,0.5790725061669946,0.1264764191582799,-0.7564682411029935,-0.678466135635972,-0.5826270543038845,0.6624535298906267,0.8164324481040239,-0.6685714479535818,0.05113284615799785,-0.9993019183166325,-0.6956191090866923,-0.8692651060409844,0.18837784323841333,0.4371819021180272,-0.7490672077983618,0.26759850140661,-0.48232174664735794,0.9909335686825216,-0.5640075486153364,-0.2848013606853783,0.5410870863124728,-0.0336125991307199,0.05920002423226833,-0.8797211986966431,0.4150450937449932,0.3341423631645739,0.6692610452882946,0.32418255880475044,-0.849151136353612,0.7658294755965471,0.6622897456400096,0.5602998770773411,-0.37095957016572356,-0.0492693311534822,-0.42638303572312,-0.8549803816713393,-0.6815789616666734,-0.09888210752978921,0.13433901546522975,0.2705810787156224,-0.620214335154742,0.28940044483169913,-0.7039396571926773,0.7419446711428463,-0.117118364199996,-0.08790871780365705,-0.9329651547595859,0.245227777864784,0.9368499023839831,0.6496473057195544,-0.5132864727638662,-0.41168822487816215,0.6957648694515228,0.5282209902070463,0.13971924223005772,0.6766876140609384,0.08152504963800311,-0.5160070564597845,0.08929414488375187,-0.41853289771825075,-0.03601532196626067,-0.04649893147870898,-0.3076800275593996,-0.6513554113917053,0.5244672009721398,-0.05383525462821126,0.19111024495214224,0.4699711175635457,0.5599488969892263,-0.3621016344986856,0.06459967838600278,0.2791132340207696,-0.1683976175263524,0.8613129514269531,-0.16596454894170165,-0.3079178794287145,-0.34696163376793265,0.989620597101748,0.7937454120256007,0.6425790544599295,0.18374812277033925,0.3169416836462915,-0.19499119138345122,-0.1424530646763742,-0.6269875527359545,0.36197994463145733,-0.6532539576292038,0.4324770304374397,-0.1976943458430469,0.9216912211850286,-0.05645732255652547,0.9397701225243509,-0.9737334894016385,-0.25144704850390553,-0.5071864337660372,0.1846012882888317,-0.999933694023639,0.5792043106630445,0.43717521987855434,-0.09270291961729527,0.8963024667464197,-0.8649761034175754,0.03269552392885089,0.18965247692540288,0.9232930880971253,0.42361366050317883,-0.33435685466974974,0.4434331189841032,-0.9205156066454947,-0.7958038244396448,0.8403860554099083,0.1954186875373125,-0.6763469115830958,-0.8324168338440359,0.6435870048590004,0.8760555144399405,-0.4908427298069,-0.6619785167276859,0.5625551673583686,-0.6689154766499996,0.44751553935930133,-0.43886260176077485,-0.9240049789659679,-0.3245982858352363,-0.4258287870325148,0.5644551534205675,-0.702302286401391,-0.5118755330331624,0.12539384653791785,0.48320723371580243,-0.6134324874728918,-0.4451800025999546,-0.6665353588759899,0.3778951810672879,0.9479755098000169,-0.8193032979033887,0.7969457102008164,-0.4994771108031273,0.006334483623504639,-0.9936636365018785,0.559130638372153,-0.7443467564880848,-0.40010366402566433,0.8254159814678133,-0.59016691474244,0.2024263497442007,-0.08962711039930582,-0.5444998559542,-0.4871878088451922,0.42734420904889703,0.09571716235950589,0.8071574009954929,-0.4849379872903228,0.05937884887680411,0.9761022897437215,0.7439770177006721,0.6133141848258674,-0.9531387304887176,0.6488146362826228,-0.0015640947967767715,0.18793917819857597,-0.7083805007860065,-0.16599610447883606,-0.7290678839199245,0.29376577865332365,-0.5393473617732525,-0.44023472210392356,0.5659940470941365,0.07215381320565939,0.5454129935242236,0.6603073254227638,0.9126729317940772,0.2889082729816437,0.08738038362935185,0.25144830578938127,0.41444744169712067,0.18501240154728293,-0.8696614797227085,0.7695524850860238,0.10482703754678369,-0.6477627395652235,0.1953120562247932,0.5416968041099608,0.7114541884511709,-0.9452593312598765,-0.22923049423843622,0.7035594172775745,0.06405770219862461,0.8355576042085886,-0.24532729759812355,-0.05370314372703433,-0.29540129844099283,0.2919708346016705,0.7680798396468163,0.9798257909715176,-0.20418901648372412,-0.15297223255038261,0.7868233318440616,0.21378477616235614,-0.8723958902992308,-0.5636236066929996,0.19355617929250002,0.4886355334892869,0.3226121896877885,-0.2203268208540976,0.8743524444289505,-0.9121000417508185,0.6288295388221741,0.04634405067190528,-0.7691080486401916,-0.4655846143141389,0.1093582883477211,0.049337537959218025,-0.6822095969691873,0.18503351137042046,0.24362823879346251,0.20893719233572483,0.45829904032871127,0.05893840780481696,0.5589754986576736,-0.152354852296412,-0.9393434799276292,0.17779111582785845,0.23930272972211242,-0.16076311469078064,-0.036891828291118145,-0.9971553203649819,-0.9342502942308784,0.3959128172136843,-0.6696252897381783,0.674891369882971,0.8783153370022774,-0.6693269754759967,0.4239161773584783,0.6135097029618919,0.05262232664972544,0.5217478824779391,-0.8107391311787069,-0.2428803234361112,-0.6718701254576445,0.367135738953948,0.4864856004714966,0.4203909425996244,-0.4067769581452012,0.551056632772088,0.2117503616027534,-0.5233773989602923,0.009068939369171858,0.37385196378454566,-0.8560934797860682,-0.8892420586198568,-0.5372074255719781,0.8485956797376275,0.3730796631425619,-0.21198114333674312,-0.0008093700744211674,-0.6903261840343475,0.26417376566678286,-0.6249049906618893,0.6807415722869337,-0.17354701412841678,-0.8258177097886801,-0.6294024847447872,0.9718414242379367,0.8951944564469159,0.8333698213100433,-0.8281457228586078,-0.6994571588002145,0.7467028126120567,0.9413515203632414,-0.4707513921894133,0.6586773958988488,-0.3660124554298818,0.6663012620992959,0.22652364755049348,-0.9299636483192444,-0.3957685139030218,-0.6004448318853974,-0.8121188590303063,-0.09019755851477385,-0.22437990410253406,0.012450566980987787,-0.579397747758776,0.05528094386681914,-0.012511901557445526,0.30131650250405073,-0.6358811091631651,-0.6807355568744242,0.8334259469993412,0.7793531212955713,-0.9840322178788483,-0.5800246638245881,-0.384822063613683,-0.02177891694009304,0.9804995297454298,-0.11133230803534389,-0.3368972693569958,-0.42972904816269875,-0.4437055764719844,0.821198872756213,0.709822432603687,-0.8720530811697245,0.5811440465040505,-0.8960865628905594,0.4264228115789592,0.8377186814323068,-0.23252452118322253,-0.7886838130652905,-0.627102707978338,-0.8085959511809051,0.5427990225143731,0.10529848327860236,0.9771723700687289,0.06365313520655036,0.7146405004896224,-0.3107891739346087,-0.39981303876265883,0.21892919205129147,-0.8416713676415384,-0.22309778723865747,0.4981453218497336,-0.4896948798559606,0.41938021732494235,-0.8403873187489808,-0.021165779791772366,-0.6051040370948613,0.5437826695851982,0.999393068253994,-0.6935707074590027,0.31864055478945374,-0.009026532992720604,-0.37484513549134135,-0.6036996664479375,0.888280161190778,-0.9321629665791988,0.7068644464015961,-0.16633091075345874,0.8769936561584473,-0.17813747702166438,-0.5531358956359327,-0.8942997837439179,0.8020291072316468,0.28738189535215497,0.9305356992408633,0.06613139808177948,-0.45601179637014866,-0.22868517646566033,0.5013846135698259,-0.33245681319385767,-0.45017796801403165,-0.6284705735743046,-0.41133341286331415,0.7325408807955682,0.10898095974698663,-0.5047613205388188,-0.17626830004155636,0.5988308736123145,-0.8990314076654613,0.36786229396238923,0.9793534660711884,0.6983601953834295,0.9644278180785477,0.917061033193022,-0.587845578789711,0.3356066760607064,-0.18802373996004462,0.8439955366775393,0.6591046992689371,-0.2912658560089767,0.8409091364592314,-0.07211605925112963,-0.79377964977175,-0.2891627848148346,0.42077826196327806,0.41472525941208005,-0.4225372397340834,-0.2935822061263025,0.8664543819613755,0.9366466603241861,-0.8525622119195759,0.6128806993365288,-0.12851348333060741,-0.2693635714240372,-0.9814181374385953,0.8983751144260168,-0.6679628449492157,-0.838171411305666,0.22518888348713517,0.8319352050311863,0.3124460317194462,-0.6890804124996066,0.9470098046585917,-0.8226042524911463,-0.5346080618910491,0.44129037857055664,0.9481654255650938,-0.6867746966890991,-0.382569408044219,-0.2557076024822891,0.09391146898269653,0.3999698627740145,-0.6129876989871264,0.5569821521639824,0.895704937633127,0.6280554574914277,-0.9232834107242525,0.023764587473124266,0.617268003989011,-0.1528803240507841,0.7848115405067801,0.14239506283774972,-0.2190801245160401,0.9880648623220623,-0.34044569078832865,-0.32704720878973603,0.7575862072408199,0.7353552747517824,0.38388483226299286,0.26957704732194543,0.03965317411348224,-0.464814695995301,-0.5563808148726821,0.15862628957256675,-0.7445066319778562,-0.872470102738589,-0.28496164456009865,-0.2923332224600017,0.3778397738933563,-0.3535524378530681,-0.8873939346522093,0.34861380606889725,-0.01830401923507452,-0.43637515557929873,-0.27187495306134224,0.12732262769713998,0.818940051831305,-0.863850190769881,-0.22341425064951181,0.9134804964996874,0.6754937511868775,-0.6982166054658592,0.7676102644763887,0.5793579742312431,-0.7819341812282801,-0.8587874686345458,-0.4100671806372702,0.13105034548789263,-0.19210446160286665,0.14922756562009454,-0.7243763254955411,0.7116041406989098,0.7953247120603919,0.3008295870386064,-0.4689476639032364,0.33389498852193356,-0.458021582569927,-0.17045763367787004,-0.05670898454263806,-0.5518693849444389,-0.7876426433213055,0.6977387657389045,0.419209108222276,0.22073218412697315,0.8376623461954296,0.9700945494696498,0.9331757905893028,0.09798793820664287,-0.8991655712015927,0.24555253004655242,-0.10776248015463352,0.9605749449692667,0.18277751049026847,0.7361047817394137,0.11254886910319328,0.6625297497957945,0.10237991530448198,0.8554715933278203,0.6535657239146531,-0.13794620614498854,-0.9107673456892371,-0.39889743085950613,0.7325230170972645,0.45016325265169144,-0.8346086032688618,-0.2953860508278012,-0.3356236135587096,0.7407983639277518,-0.910836495924741,0.44221080001443624,0.5550977755337954,-0.8671945026144385,-0.08418272994458675,0.8506093928590417,-0.33090034360066056,-0.9763470059260726,-0.27313424181193113,-0.08077580016106367,0.7621361115016043,-0.7883901302702725,-0.35389194637537,-0.6502324077300727,-0.7337965900078416,-0.05397435277700424,-0.18067368073388934,0.8674249700270593,-0.48346382193267345,-0.8812911091372371,0.4360729781910777,0.36227267421782017,0.4403421045280993,0.9141357000917196,-0.503066258970648,0.2920414903201163,-0.40843825740739703,0.7396862804889679,0.21951289288699627,-0.15381506644189358,-0.28789621498435736,0.5303468005731702,-0.9440179346129298,0.6035118806175888,-0.6798301516100764,-0.24462734907865524,0.8589561311528087,0.9917112835682929,0.6952172415331006,-0.9825249784626067,-0.2402851227670908,0.6973356227390468,0.9850098206661642,0.429216327611357,0.3694010032340884,0.3501996574923396,0.012976996134966612,-0.2482182662934065,0.6974947052076459,-0.7930046864785254,0.2595607442781329,-0.4197218818590045,-0.790410403162241,-0.09121568687260151,0.5859009502455592,-0.6500579910352826,0.5098812016658485,-0.2737064524553716,0.7368303304538131,0.8485405091196299,-0.8126352690160275,-0.6226887130178511,-0.8833756251260638,-0.007296520285308361,-0.5816175653599203,-0.5860725860111415,-0.022863111458718777,-0.8245639251545072,-0.8790812399238348,-0.4864822537638247,-0.68345757573843,-0.34688713727518916,0.7039754777215421,-0.3159647108986974,0.5032779215835035,-0.7142092897556722,-0.7407284453511238,-0.7052661930210888,-0.00623526144772768,0.5766273275949061,-0.9447576343081892,0.12762256851419806,-0.23396253446117043,0.07815887127071619,0.7933435845188797,-0.9639392970129848,-0.4198205810971558,-0.9673178163357079,0.7377542234025896,-0.8637650832533836,0.9950381359085441,0.594609881285578,-0.8562975055538118,0.5495152682997286,-0.6601470932364464,0.6312437243759632,-0.09812470385804772,0.17879344429820776,-0.9995972532778978,0.020505507476627827,-0.65407849336043,-0.7034063851460814,-0.3293921137228608,0.8569195130839944,-0.3092314410023391,-0.6104631344787776,0.9217227553017437,-0.3717320836149156,-0.06396363535895944,-0.08267454989254475,-0.6381542179733515,-0.8246873361058533,-0.7920684413984418,0.5602476326748729,-0.47513313498348,0.7044094493612647,0.9531301124952734,0.4875524560920894,-0.197931039147079,-0.9483566642738879,-0.06544279586523771,0.9858237532898784,0.6127965529449284,0.8086154605261981,-0.3595304200425744,0.49205057602375746,0.21390250930562615,-0.029826096259057522,-0.615202471613884,0.6897535352036357,-0.3166990578174591,-0.07877037348225713,-0.5199907994829118,-0.0326378820464015,0.8847195678390563,0.5358244045637548,0.47196860844269395,0.9495313474908471,0.33347798557952046,-0.6494916374795139,0.05043180473148823,0.7015453376807272,0.31473316671326756,0.1859620288014412,-0.048718505539000034,-0.5817416426725686,0.19181078067049384,-0.1974971010349691,0.14561970066279173,0.9925011247396469,-0.08284204034134746,-0.970098115503788,-0.6134707210585475,-0.4684000741690397,0.6661344580352306,-0.816912601236254,-0.6734153949655592,0.5791650284081697,-0.29059538897126913,0.9352570422925055,-0.5132988477125764,0.3014962309971452,-0.3328306656330824,-0.6196460989303887,-0.060043237172067165,0.7370881736278534,0.8660676903091371,-0.45850293384864926,-0.7678637844510376,0.2729231542907655,-0.6944037368521094,0.2703725262545049,-0.1965404017828405,-0.7846269179135561,0.6871932256035507,-0.260325422976166,-0.17191479541361332,-0.30093119852244854,0.45967249060049653,0.5126686408184469,0.8456402751617134,0.8076795982196927,-0.1820184076204896,-0.8243005713447928,0.7677543959580362,-0.30996314715594053,-0.23937319731339812,-0.30593828903511167,0.3836647146381438,-0.13691225368529558,0.7447279151529074,-0.5513570248149335,-0.2179302955046296,-0.6799214198254049,0.5521401003934443,0.02310281665995717,-0.7076197867281735,0.8836073633283377,-0.6163522331044078,-0.7262931209988892,-0.046127473935484886,0.6055554174818099,-0.5234930454753339,0.9982838714495301,-0.638881522230804,0.5648350557312369,0.9927265723235905,-0.8191252960823476,0.15657904651015997,0.4659534180536866,0.7268482502549887,0.3880048873834312,0.9262872054241598,-0.34877084475010633,0.9726518061943352,0.4647263363003731,0.44099860126152635,-0.6514366543851793,-0.18198064994066954,-0.34880547458305955,-0.6418714034371078,0.6695544980466366,-0.7111981962807477,-0.35096788266673684,0.5890461816452444,0.24220897164195776,-0.02698097424581647,-0.6903805737383664,-0.3123021312057972,-0.9591515394859016,0.3848217101767659,0.6476306840777397,-0.058468413073569536,-0.13092980487272143,0.8952500550076365,-0.6035497118718922,-0.7204311667010188,0.5103151449002326,-0.16065840469673276,0.9903834527358413,-0.5390692073851824,-0.7329142182134092,0.6256267693825066,-0.3561166073195636,0.9749285350553691,0.15932077821344137,-0.9145011403597891,0.9510021968744695,0.4133051601238549,-0.3939995039254427,0.21385599439963698,0.17663300363346934,-0.02292367722839117,0.15809885459020734,-0.501414614263922,0.5681229094043374,0.03205755725502968,-0.4259260627441108,-0.8098535444587469,0.3636129782535136,-0.7476675789803267,0.5987582034431398,0.9068319140933454,-0.19857314880937338,-0.4961824370548129,0.8249133923090994,0.807108998298645,-0.99356804555282,0.8997423946857452,-0.4235932808369398,0.2521483753807843,-0.860312414355576,0.7141975904814899,0.7680482123978436,0.012963545508682728,-0.31231209728866816,0.36358038429170847,0.03151321643963456,-0.7588293082080781,-0.6038108435459435,0.8402194133959711,0.4571623927913606,0.19489704398438334,0.5779177714139223,-0.8026449056342244,-0.0017196005210280418,-0.8589215837419033,-0.5367239499464631,0.8301008795388043,-0.43206952000036836,-0.2881554621271789,0.5217951806262136,0.9262585770338774,-0.06599475722759962,0.6309861242771149,0.08136704191565514,0.6934908768162131,0.6680768700316548,0.8998518576845527,-0.47129826061427593,0.2584229172207415,-0.5730788777582347,0.7924116952344775,-0.7934813951142132,0.7682101693935692,0.2990181134082377,-0.6715304697863758,0.7135683372616768,-0.3377367155626416,0.25424743071198463,0.8845929331146181,-0.3078310303390026,-0.4348772969096899,0.6122833420522511,-0.8808601312339306,0.049478824716061354,0.3901954866014421,-0.4817860834300518,0.8051353795453906,0.6255021686665714,0.8023399491794407,0.5800605649128556,0.3476736876182258,-0.22461221972480416,-0.6961240223608911,-0.7813283246941864,0.6344822677783668,0.4820133186876774,-0.9699836359359324,-0.7654258040711284,0.5459974608384073,-0.4706360772252083,0.8123877476900816,0.5268126637674868,-0.695556671358645,-0.24994020722806454,0.8855471909046173,0.07389751123264432,-0.34585366304963827,0.9965261300094426,-0.1391313043422997,-0.9178986051119864,-0.7990601886995137,-0.4387398436665535,0.47720811795443296,0.5270043141208589,-0.03149489359930158,-0.22723452793434262,0.11369373090565205,0.9468927751295269,0.5930572673678398,0.3065736759454012,-0.2914425227791071,-0.45185303781181574,-0.7279521874152124,-0.33620914118364453,-0.31117289885878563,0.6869647772982717,-0.10561652760952711,0.28581979777663946,0.8152092234231532,-0.37017119815573096,0.6407508025877178,-0.7151020364835858,0.04832224640995264,-0.26066908752545714,0.556704509537667,-0.517495384439826,0.6898255790583789,-0.7823323137126863,0.5185954850167036,-0.827758505474776,-0.9099313085898757,-0.973346711602062,0.3415654245764017,0.4696782664395869,-0.13334240717813373,0.0045320154167711735,0.7938783681020141,-0.8968333755619824,0.5833349600434303,0.8186434712260962,0.3194335591979325,0.7500392058864236,-0.009392954409122467,0.7225122097879648,0.697271017357707,-0.2145383539609611,-0.10918670753017068,-0.8289186479523778,0.07555542746558785,0.015970691107213497,0.08745372761040926,0.5182793438434601,-0.27475402830168605,0.7834107591770589,0.7863934016786516,0.9973737578839064,-0.6428581476211548,-0.4987662583589554,0.4102820008993149,-0.15259074931964278,-0.616064184345305,-0.9776833415962756,0.7626987686380744,0.06865632766857743,-0.022337258327752352,0.05108800670132041,0.19398549012839794,-0.5070259450003505,0.8868197803385556,-0.19284529192373157,0.6518796873278916,0.09856233699247241,-0.14400805113837123,0.3791721616871655,-0.5553753771819174,-0.5614684480242431,-0.2566088321618736,0.03649593610316515,0.4451523399911821,-0.7646905416622758,-0.5856149177998304,0.9195877723395824,0.6002221922390163,0.24186561349779367,0.5367110902443528,0.3565486124716699,0.5707999421283603,-0.8428766410797834,-0.26970375049859285,0.6950472071766853,0.9644541018642485,-0.12716874619945884,-0.09699595207348466,0.8224362907931209,0.10337203415110707,-0.3686531693674624,0.0927901566028595,0.3460101904347539,-0.5164806037209928,-0.2724553048610687,-0.6632415372878313,-0.8446131111122668,0.9857710539363325,0.2834489676170051,-0.5639210017398,0.1747953468002379,-0.17580233328044415,-0.13906777603551745,0.564305770676583,-0.9765599872916937,-0.2486824975349009,0.1885559856891632,-0.00922010000795126,0.6572254411876202,0.3575548059307039,0.2944318358786404,-0.9538439936004579,0.06197696505114436,0.8387512573972344,-0.1576840835623443,0.16535712266340852,-0.9558083084411919,0.5130622992292047,0.8151328703388572,-0.7392850150354207,-0.6392835220322013,0.958397685084492,0.03590484568849206,-0.8210677248425782,-0.6456635980866849,-0.1858536507934332,0.14029147522524,-0.2512393859215081,0.7975986851379275,-0.8576886570081115,-0.8824221207760274,-0.4614955522119999,-0.7448286833241582,-0.3694293382577598,-0.16863349312916398,-0.10811297409236431,-0.8088665925897658,0.3769283997826278,0.6984956082887948,-0.4330767900682986,-0.5263927201740444,0.0402572238817811,0.9131820173934102,-0.651310961227864,0.754304098431021,0.7557893553748727,-0.08968939119949937,-0.9291940638795495,-0.3527219258248806,0.6939276759512722,-0.2519988133572042,0.4157446916215122,0.07326002232730389,0.34652121365070343,0.14089687587693334,-0.17201570747420192,0.33437914261594415,0.19765606615692377,-0.20508272107690573,-0.05014971410855651,0.38296142406761646,-0.594646671321243,0.027123089414089918,0.23581254482269287,0.1311759790405631,0.4690395062789321,0.5862259548157454,-0.8155439905822277,-0.880383797455579,0.6762650585733354,-0.774952620267868,0.3688082518056035,0.3845469015650451,-0.17178266495466232,-0.20779215637594461,-0.608064322732389,-0.3352001765742898,0.622923812828958,0.8626772831194103,-0.22276382753625512,0.6584921493194997,-0.838039924390614,0.42948814621195197,0.7589770113117993,0.0658453805372119,-0.335177113302052,0.1131450654938817,0.9300226080231369,-0.9149600709788501,-0.7195486864075065,-0.33422111347317696,-0.7271016472950578,-0.587642656173557,-0.306337168905884,0.9937841934151947,-0.44276323448866606,-0.3652298911474645,-0.6708643338643014,-0.741011512465775,-0.3003787421621382,0.8371567628346384,-0.3073178958147764,0.815628157928586,0.14047202793881297,0.5347390356473625,0.722880638204515,0.37147541157901287,-0.08529826020821929,-0.18013912392780185,-0.3529732949100435,0.9107556301169097,0.037472233176231384,-0.41643114294856787,0.007726484443992376,0.13149609230458736,-0.027687732595950365,0.6501626833342016,-0.3255754495039582,0.29103525122627616,-0.552513484377414,0.3294449523091316,0.526419666595757,0.7800592472776771,-0.03630033973604441,-0.9888316802680492,-0.30453635239973664,0.6200038148090243,-0.872978812083602,-0.6891562547534704,0.2520981663838029,0.28591069392859936,-0.2574317501857877,-0.5605342756025493,-0.08864983078092337,0.36761310370638967,0.013625678606331348,-0.5940015222877264,0.793046279810369,-0.2788980375044048,-0.2842362350784242,-0.3697764831595123,0.6548900008201599,0.675258663482964,-0.40111425099894404,-0.8184726536273956,0.3584940070286393,-0.16840488323941827,-0.19861126923933625,0.08514119451865554,-0.7744895154610276,-0.013267026282846928,0.3163119191303849,0.04141081776469946,0.5621026293374598,-0.608511955011636,0.2993189296685159,0.6759638236835599,0.977890795096755,-0.8951927982270718,0.6145605640485883,0.6177924033254385,-0.6417543399147689,-0.9547993377782404,0.08357551414519548,-0.6311897789128125,-0.4090984193608165,-0.3701868038624525,-0.4871914070099592,-0.11577293602749705,-0.8136138352565467,0.7166375541128218,0.7136057517491281,0.11920322990044951,0.8892357535660267,-0.01347682811319828,-0.7699362454004586,0.41827552020549774,0.562428317964077,0.27126984065398574,0.01612942386418581,0.5798295815475285,-0.5736911818385124,-0.946750960778445,-0.7083947136998177,-0.1653652349486947,0.5279732393100858,0.3229344435967505,0.607287515886128,0.38814761955291033,-0.16702496679499745,0.8681010599248111,-0.30156324338167906,0.6327076056040823,-0.030868181493133307,0.9003384308889508,-0.6513349013403058,0.7230014097876847,0.7310536969453096,0.1557982610538602,-0.04147898592054844,0.09160536201670766,-0.43098666798323393,0.45362290693446994,0.6751941991969943,0.5381823126226664,0.24226605845615268,0.37328165071085095,-0.4943828289397061,-0.2589298989623785,0.8687478513456881,-0.632478563580662,-0.7182782958261669,0.8651632620021701,0.7680973862297833,-0.2251140335574746,0.26716901175677776,-0.7144392388872802,0.3510540761053562,-0.4730093237012625,0.03220345266163349,0.9471761556342244,-0.056703828275203705,0.8309160033240914,0.016062003560364246,-0.9155727382749319,-0.15181370172649622,0.34578233771026134,-0.9526406382210553,-0.29908639658242464,-0.1680899178609252,-0.4207659587264061,0.39955186704173684,-0.8292331770062447,0.4913196535781026,-0.7764049777761102,0.8477445570752025,-0.07499964628368616,-0.15628799283877015,0.44781774235889316,0.7963801147416234,0.7337958174757659,0.25214539002627134,-0.4127615848556161,-0.07623421028256416,-0.07325152447447181,-0.9197185863740742,-0.011516144964843988,0.3675617715343833,0.23940238682553172,-0.8746243533678353,0.9925299347378314,-0.7596250595524907,-0.08897580858319998,0.43264047196134925,0.014052517246454954,-0.9874209747649729,0.5037270337343216,-0.18995507480576634,-0.668710638768971,-0.6637567928992212,0.30695192236453295,0.9941295804455876,0.7929576430469751,-0.1369610377587378,0.6611902574077249,0.7187918000854552,-0.06392794568091631,-0.933120031375438,-0.12955760024487972,-0.8256680616177619,0.4078049138188362,0.31021457677707076,0.9653222262859344,0.513762787450105,0.5245662117376924,-0.010870330035686493,0.631959751714021,-0.38001322839409113,0.6271742656826973,-0.1850272142328322,0.8989057885482907,-0.8300009635277092,-0.13035660842433572,-0.5449408930726349,0.02784519735723734,-0.3969411551952362,0.3510226863436401,0.3971792827360332,0.5807673656381667,-0.9073636783286929,0.34084630804136395,0.18838114943355322,-0.5458157849498093,0.3862667055800557,0.558996451087296,-0.03180539095774293,0.7158846138045192,-0.31153438752517104,0.9982397519052029,0.9828210449777544,0.451417344622314,-0.23957862239331007,-0.4919592668302357,0.6243787482380867,-0.9725984232500196,-0.7185499425977468,0.022831808775663376,0.7280378490686417,0.7532970644533634,0.8006676421500742,0.714444262906909,-0.30082985619083047,-0.7969940430484712,0.34051874559372663,0.8908956069499254,-0.6844375627115369,-0.6406583623029292,0.35811584116891026,-0.8505224948748946,-0.44414955331012607,0.047591465059667826,-0.15443568350747228,0.8852870287373662,-0.024914696346968412,0.74035340314731,0.5465890504419804,0.25946398358792067,-0.17134208418428898,-0.5094912676140666,-0.9682941222563386,0.7722777207382023,-0.920137976296246,-0.6266684434376657,0.3715071496553719,0.1393962618894875,-0.6174637246876955,0.36249408032745123,0.21027996018528938,-0.19283484760671854,0.6248098388314247,-0.8509355909191072,0.3051223987713456,0.3061010637320578,0.5626955539919436,-0.7159248003736138,0.7348657078109682,0.7351901489309967,-0.7933902735821903,-0.45637678913772106,0.7816650127060711,0.9626539875753224,0.22376173455268145,0.12009810050949454,-0.8263863497413695,0.4321321789175272,-0.25226693972945213,-0.8218261669389904,0.36991449538618326,0.6517936615273356,0.2792325965128839,0.3299903334118426,0.7892017052508891,0.4302035407163203,0.7332750232890248,-0.011984910815954208,-0.5131099238060415,0.7210756866261363,0.6457918779924512,-0.5876524825580418,-0.962241546716541,-0.29304897133260965,-0.6288882233202457,-0.4980502952821553,-0.18515867553651333,0.24220431363210082,0.021115743555128574,0.534800001885742,0.8469321019947529,0.13188828201964498,-0.6186765087768435,0.4269223869778216,0.8175919391214848,-0.6489026229828596,-0.16554653411731124,-0.9239433384500444,0.38980230456218123,0.31244331132620573,0.4595906129106879,0.38546900637447834,0.21020191395655274,0.13541889050975442,-0.5576785490848124,-0.08807046199217439,-0.1784051163122058,0.17908301251009107,-0.9461160264909267,-0.34725426603108644,-0.5204174546524882,0.5209651226177812,0.32283908361569047,0.28606521571055055,-0.04101501265540719,0.29011408938094974,-0.7467774674296379,0.779842090792954,-0.9355270559899509,-0.6796277021057904,-0.12280375231057405,-0.10256566200405359,-0.013605966698378325,0.7394964597187936,-0.3842937359586358,0.6106867450289428,0.989179162774235,-0.2038183188997209,0.4624698292464018,-0.46742959413677454,0.6520162196829915,0.8049215734936297,0.5067300978116691,0.937717049382627,0.7462098891846836,0.9851253717206419,-0.8570758323185146,-0.22773998277261853,-0.8068443639203906,-0.8285100515931845,0.8889821995981038,0.5367924980819225,0.48971530981361866,0.12293302733451128,-0.9968941509723663,-0.5799083835445344,0.13230101391673088,0.0506623312830925,-0.9118625330738723,-0.5529822162352502,-0.060710019897669554,-0.8151332251727581,-0.7087554801255465,0.7905871509574354,-0.7326130974106491,-0.6335765779949725,-0.3542425511404872,0.6575946710072458,-0.9081008229404688,0.025091099087148905,0.43517966102808714,0.3426637430675328,-0.029933633748441935,-0.4827122916467488,-0.5124400514177978,-0.21154421102255583,-0.9009259436279535,-0.509845806285739,0.4869547518901527,0.7771724970079958,0.7875002571381629,-0.4915167037397623,0.9221914685331285,-0.958407626952976,-0.1412714347243309,0.46738276490941644,0.4153766888193786,-0.17332110181450844,-0.2983126621693373,-0.12707589380443096,-0.4650622336193919,-0.1959479101933539,0.028553192038089037,-0.6563756195828319,0.234483627602458,-0.815684656612575,-0.005795678123831749,0.2483831117860973,0.4357257620431483,-0.8153636623173952,0.4783336981199682,0.8913119458593428,-0.6757312035188079,-0.7486115600913763,0.7780439537018538,-0.2435271474532783,-0.5210207365453243,-0.7204868337139487,-0.16999274445697665,-0.8263734644278884,0.3174539487808943,0.9521105536259711,-0.9890595129691064,-0.4972102181054652,0.9353657895699143,-0.3263213960453868,-0.8151677129790187,-0.9166574710980058,-0.3988963752053678,0.9810537695884705,-0.22185376565903425,-0.7863145042210817,-0.2854850897565484,-0.07112554972991347,0.5389411570504308,-0.6637525288388133,0.23257001815363765,0.5533578381873667,-0.7595522832125425,-0.8974704165011644,0.8636035579256713,-0.862033988814801,-0.472803907468915,-0.28626025933772326,0.1327565503306687,-0.4225311581976712,-0.8782931338064373,0.4756417558528483,-0.15051253559067845,-0.9276585527695715,0.8373804711736739,-0.7734557939693332,0.8882133546285331,-0.5880548069253564,-0.2535325544886291,0.6877639763988554,0.6447553434409201,-0.1901760706678033,-0.25380780501291156,0.555165275465697,-0.14742381172254682,-0.5879899668507278,-0.8172482270747423,0.058324470184743404,0.905955761205405,0.3893617996945977,0.22381364600732923,-0.9133973377756774,-0.7946369401179254,0.27130498411133885,-0.17264651507139206,-0.8999186111614108,0.8243817696347833,0.4010610752739012,0.01226453809067607,-0.517698616720736,-0.66677042003721,0.9066414930857718,0.5235433988273144,0.9887972767464817,-0.10248427838087082,0.3358767437748611,-0.487865274772048,0.6650929865427315,-0.7738406173884869,-0.5152978072874248,0.6930880565196276,0.009676195215433836,-0.04677877156063914,-0.9782978184521198,0.2378903105854988,0.9874080829322338,-0.30047840252518654,-0.18870976753532887,-0.7292092475108802,-0.8611441911198199,-0.20347201358526945,-0.16894263168796897,0.9111917074769735,0.09994006110355258,-0.891026753000915,-0.3732559331692755,-0.37902857176959515,-0.8970863544382155,-0.0857737916521728,-0.4799783923663199,-0.49213141901418567,0.5420191241428256,0.3352679191157222,-0.24001020099967718,-0.5938754556700587,0.5997408209368587,-0.1571303280070424,0.060690184123814106,-0.08775691874325275,-0.6202374040149152,-0.07884897105395794,-0.38034816598519683,0.2842209110967815,0.014378294814378023,0.9826626218855381,-0.9303238051943481,0.5606367499567568,0.48330007027834654,0.9382294700480998,0.6044223024509847,-0.5024888454936445,0.6615419592708349,-0.09900687634944916,-0.5188122689723969,-0.9489874225109816,-0.35843324195593596,-0.7453902997076511,-0.6416021888144314,0.8268292592838407,-0.42057853704318404,0.9829944698140025,0.5098353251814842,0.160065489821136,0.595641405787319,0.42866673693060875,0.37161359190940857,-0.39931486500427127,0.16830901289358735,-0.8381665041670203,0.7976683960296214,0.4359712922014296,-0.23006050335243344,-0.9794541136361659,-0.8632347364909947,-0.5835051387548447,0.4514041827060282,-0.48324409453198314,-0.4090692913159728,0.11597411660477519,-0.0725548854097724,-0.2704645823687315,0.6197163313627243,-0.8068621284328401,0.9815985318273306,-0.3620224306359887,0.707598761189729,0.35326990438625216,-0.7751036584377289,-0.6217539943754673,-0.31035883631557226,-0.8590538068674505,-0.16832149354740977,-0.6829153457656503,-0.17261428711935878,-0.713781323749572,0.6612519999034703,0.6903655738569796,-0.8960770349949598,-0.40718053793534636,-0.8397726509720087,-0.4053728375583887,0.5448587629944086,-0.9177708681672812,-0.7811911231838167,-0.9505885164253414,-0.5838344595395029,-0.04703481309115887,0.3316640858538449,0.4295962988398969,-0.8494566408917308,-0.1771228974685073,0.4476393209770322,-0.023504246026277542,-0.13581218011677265,-0.3070223517715931,0.0034605152904987335,0.4817834058776498,-0.11361275753006339,-0.5084589715115726,-0.5753863137215376,0.9558645687066019,0.6850926354527473,0.7947621960192919,-0.9517112043686211,0.7134459260851145,-0.004348062910139561,-0.8375269053503871,0.7039368893019855,0.4918815325945616,-0.7718688426539302,-0.8755666059441864,0.4903176627121866,0.25899231620132923,0.1145933149382472,0.9445080040022731,-0.8667104658670723,-0.9802661095745862,-0.13812321703881025,-0.4650373784825206,-0.31328855780884624,0.3834339454770088,0.13425387954339385,0.8575817160308361,-0.6161585091613233,-0.5770027148537338,-0.49303413182497025,0.19700409332290292,-0.5540026887319982,0.053531122859567404,0.08936947304755449,0.2578597762621939,-0.7915644240565598,-0.7337287296541035,0.2855547615326941,0.10402578674256802,0.2505763000808656,0.8554554795846343,-0.4941333197057247,-0.9080140348523855,-0.3021978326141834,-0.08891211403533816,-0.7701758039183915,-0.13849813770502806,0.9102304400876164,-0.39693637331947684,-0.6640472547151148,0.007349343504756689,0.5794089105911553,0.4571890961378813,-0.8056836784817278,0.6652623186819255,-0.9244894566945732,0.8487278227694333,0.6508547896519303,-0.8550507021136582,-0.9335823594592512,0.9707547281868756,0.1610466754063964,-0.15837134467437863,-0.2644789395853877,0.8815407231450081,0.6213817587122321,-0.06013562995940447,-0.3110911473631859,0.15968654351308942,-0.26473373686894774,-0.7208247859962285,-0.9712848989292979,0.1365565015003085,0.8521050126291811,0.25251465244218707,-0.4559390605427325,0.44662394374608994,-0.7239928194321692,0.5225719725713134,0.43786194967105985,-0.45074365055188537,-0.4931778786703944,0.8212127247825265,-0.6694125435315073,0.03350306488573551,-0.7932290746830404,0.9127305019646883,-0.7369807702489197,-0.09967367723584175,0.22465884685516357,0.42403568187728524,-0.12895469600334764,-0.9892549440264702,-0.9075547894462943,-0.2376483748666942,0.5002887938171625,-0.7936818446032703,0.4782679108902812,-0.5289904363453388,0.673097550868988,0.46504019061103463,-0.7026503221131861,0.02372671803459525,-0.4693325567059219,0.6318529564887285,0.4755635536275804,0.4889372126199305,-0.02867955155670643,-0.4770990894176066,0.7086403397843242,-0.6597363674081862,-0.20094348210841417,0.9638257827609777,-0.5475448430515826,-0.4036442693322897,0.7344367229379714,-0.0463952012360096,0.1899859355762601,0.1593910390511155,-0.7182778222486377,-0.07869595009833574,0.5639551370404661,0.27631999971345067,0.31888435361906886,-0.6714985240250826,-0.375846775714308,-0.468522094655782,0.06550589948892593,0.06537445914000273,0.13250648835673928,-0.9203425254672766,0.5420413631945848,0.21636921958997846,-0.03877340257167816,-0.7185419532470405,0.28449309850111604,-0.8938167202286422,0.3980781710706651,0.0708911563269794,-0.6685058828443289,-0.4347220598720014,0.01222426351159811,-0.14107142016291618,-0.6654539499431849,-0.27116610761731863,0.24875801661983132,0.5319906179793179,0.22401921544224024,0.0699681076221168,0.19723207456991076,0.5766782509163022,-0.39607849158346653,0.9187794248573482,-0.6861259555444121,-0.15576876234263182,0.5500023793429136,-0.3713525510393083,-0.5050184172578156,-0.9562778235413134,0.9968258226290345,-0.19514345563948154,-0.5659980922937393,-0.9144852515310049,0.5666831554844975,0.9257091796025634,0.10940507333725691,-0.4767502462491393,0.45524295326322317,0.8416152326390147,0.15207494236528873,0.6209900579415262,-0.44267542008310556,0.6923642056062818,-0.2297201193869114,0.18806029809638858,-0.5165598313324153,0.353412926197052,-0.9478833773173392,0.6817283611744642,-0.5376519914716482,0.1233585998415947,0.6321051656268537,-0.012440614402294159,0.2261464693583548,-0.43878795485943556,0.029924497473984957,-0.25679923268035054,0.9030496357008815,0.5534510454162955,-0.3052200833335519,0.8002219973132014,-0.4084338052198291,0.5946332640014589,-0.5055041089653969,0.7590208128094673,-0.684529478661716,0.5360989300534129,0.2719891029410064,0.7126062815077603,-0.49368879199028015,0.4874356365762651,-0.5261705350130796,0.34869451727718115,-0.9742671842686832,0.7048410708084702,0.5032437033951283,0.015726303216069937,-0.9745093765668571,0.38744908245280385,-0.6843956401571631,0.9443789659999311,-0.7539908126927912,-0.06487571261823177,0.11710948217660189,0.44740368286147714,0.2188577395863831,-0.23282308597117662,0.030342906713485718,-0.6724205883219838,0.5242710295133293,-0.20363846700638533,-0.5823540836572647,-0.5601080995984375,0.6062358766794205,0.9803698458708823,0.1562416236847639,0.6500882860273123,-0.763215858489275,0.19573445664718747,-0.6533702402375638,0.7303175455890596,-0.6455513541586697,0.41925138887017965,0.8870913088321686,0.11094976309686899,0.3666536486707628,-0.04605116555467248,0.5678043132647872,0.5792998871766031,0.38723556976765394,0.8075916436500847,-0.6339480499736965,-0.9000199963338673,0.4794392376206815,0.20716197462752461,0.5754476087167859,0.12484201602637768,0.6960959658026695,-0.0986920353025198,-0.5076008504256606,-0.10346130048856139,-0.5551952896639705,0.7829776057042181,-0.9026881400495768,0.3338414034806192,-0.8979881051927805,-0.40805639373138547,-0.6284980941563845,-0.3456624927930534,0.4104275815188885,0.5965676959604025,-0.23863033717498183,0.6376551655121148,-0.35592537047341466,-0.7672532144933939,-0.22827409952878952,-0.40440977923572063,0.38711855094879866,0.529038280248642,-0.8264327528886497,-0.5149556421674788,0.490135938860476,0.21095785638317466,0.9974493216723204,-0.13373999716714025,0.30733674112707376,0.8371251807548106,0.7750640292651951,0.9749812562949955,0.9878297611139715,0.3269178634509444,-0.8954349323175848,-0.34580636490136385,0.9354280405677855,-0.9077766113914549,0.5536654777824879,-0.46747432742267847,0.79131323331967,-0.5634877453558147,-0.0625947006046772,0.1785486456938088,-0.7921442496590316,0.45033524790778756,0.2725496585480869,0.30284413089975715,-0.282072561327368,-0.46062710881233215,-0.3987475340254605,-0.6566484086215496,-0.17842776235193014,-0.5651881280355155,-0.2681094529107213,0.3937441585585475,0.5939167914912105,-0.03134994022548199,-0.24132944084703922,-0.8902157275006175,0.32310341810807586,-0.3646500911563635,-0.603427445050329,-0.6622721855528653,0.9847261202521622,0.8591341874562204,-0.012842701282352209,0.2602093773894012,0.3105612355284393,-0.47771335020661354,-0.16808481235057116,-0.9436975535936654,0.019168203230947256,-0.22337900754064322,-0.22406115476042032,-0.7795366276986897,0.973160651512444,0.40147901279851794,0.46071348106488585,-0.9732279744930565,-0.22875777259469032,0.5120660420507193,-0.5914150020107627,-0.5001126704737544,-0.06843842705711722,-0.5675279586575925,-0.792476954869926,-0.6950286780484021,0.7177469483576715,0.7434672000817955,-0.7887981589883566,0.28968582348898053,0.36831076396629214,-0.15142225800082088,0.5072945179417729,0.22424843022599816,-0.8899853378534317,-0.11970258969813585,0.6228841664269567,0.8042420297861099,-0.49352322798222303,-0.8944688118062913,-0.11411271151155233,-0.40213013673201203,0.040145534090697765,0.7338512274436653,0.3270877134054899,-0.8175465683452785,-0.029779820702970028,-0.9833735655993223,0.0506381755694747,0.4172350103035569,0.10210624895989895,-0.7696258081123233,-0.38474938785657287,0.6756340311840177,-0.13987860176712275,0.4909664122387767,-0.027468540705740452,0.5139400172047317,-0.450369565282017,-0.14314720267429948,-0.8871544222347438,-0.9322606353089213,-0.35291048558428884,0.5402915789745748,-0.13671906339004636,0.5576333440840244,0.14037619531154633,0.6291778315789998,-0.6350593604147434,-0.2783630760386586,-0.9665515329688787,0.4134520352818072,0.9760225755162537,0.5427582077682018,0.30294307600706816,-0.8577067251317203,-0.4595931344665587,-0.28342919098213315,-0.652360521722585,0.5708375223912299,0.5490336529910564,-0.41703673731535673,0.6162744774483144,-0.28222490986809134,0.49721283838152885,0.4085604646243155,0.6904137902893126,0.8832831084728241,0.2320005651563406,-0.8744099368341267,0.18989011645317078,-0.34554327838122845,-0.6188012845814228,0.8331060772761703,-0.026626315433532,0.8121492792852223,-0.9968156577087939,-0.47317402716726065,-0.6168220238760114,-0.6170784900896251,0.061363165732473135,0.48185507534071803,-0.4011512356810272,-0.4500997830182314,0.8750503989867866,0.15718413051217794,0.17988510243594646,-0.5927722570486367,-0.08790666097775102,-0.7901514391414821,-0.16162458108738065,-0.6284276200458407,0.694062143098563,0.7281499714590609,0.11338836280629039,-0.5495751388370991,0.3702556719072163,-0.0005481638945639133,0.017112706787884235,-0.7083619711920619,-0.2441617390140891,-0.9038751050829887,0.49375430727377534,0.45562253007665277,0.45753811346367,-0.7064221114851534,-0.651912419591099,-0.4075558381155133,-0.3783816290087998,0.343420940451324,-0.1987087712623179,0.5170615985989571,0.9413598477840424,0.10249752784147859,-0.5020025563426316,-0.22948930831626058,-0.41890215082094073,0.7007388714700937,-0.2586221578530967,0.4369710264727473,0.23337004287168384,-0.2806642740033567,-0.8394404612481594,-0.4831968084909022,0.8345334804616868,-0.9029105352237821,-0.12309596221894026,-0.02268272591754794,-0.4727543038316071,0.5816625230945647,-0.1475191912613809,-0.18589452095329762,0.774669642560184,-0.09799596481025219,-0.954177824780345,-0.7290339018218219,0.6466266554780304,0.9536292017437518,0.04397897934541106,-0.9231460397131741,0.6170422611758113,-0.248487233184278,-0.24302917858585715,0.26837691152468324,0.20592003781348467,0.35771068511530757,-0.29960886016488075,-0.15824091900140047,0.8513932405039668,-0.6556647014804184,-0.11903015244752169,0.23539018398150802,0.9990042746067047,0.9424468367360532,-0.2782402830198407,-0.05854744650423527,0.04361444991081953,0.03616751870140433,0.9360416615381837,0.09226198308169842,-0.7645188993774354,0.779242716729641,-0.9428505087271333,-0.5606625881046057,-0.6505952854640782,0.9781536846421659,0.6125911306589842,0.7432857798412442,-0.4887623186223209,-0.891580424271524,-0.589274616446346,-0.17498340737074614,0.6413728799670935,-0.7660696599632502,-0.672209607437253,0.04085278790444136,-0.4106339318677783,-0.8851789440959692,-0.8050963156856596,-0.17814088752493262,-0.9276061453856528,0.6875886740162969,0.4256734261289239,-0.14107420528307557,0.5762616535648704,-0.09314748831093311,-0.8587439670227468,-0.37453370122238994,0.5769297452643514,0.9294360787607729,-0.7974580433219671,-0.8302344908006489,-0.45300979539752007,-0.9326347191818058,0.730065600015223,-0.19888724433258176,-0.1969411508180201,-0.3177277063950896,-0.5096998047083616,0.8721493994817138,0.7083238386549056,-0.41679329751059413,0.9749134383164346,-0.46361092710867524,-0.6659158789552748,-0.17469739587977529,-0.8936440711840987,-0.5049437424167991,-0.586091207806021,-0.40427937638014555,-0.13447690708562732,0.4733937834389508,0.5114169381558895,-0.4696989022195339,0.9804231552407146,-0.2964721373282373,-0.3389291516505182,0.5160129689611495,0.14526356291025877,-0.46188132790848613,-0.47352514276281,0.5843276744708419,-0.6843305784277618,-0.389797895681113,0.6592541825957596,-0.7351672668009996,0.3879219237715006,0.866995990741998,-0.7868306022137403,-0.8879359979182482,-0.6729335403069854,0.1704177246429026,0.04795496165752411,-0.5804448095150292,0.24945631064474583,-0.07270115101709962,0.6265718615613878,0.3714026757515967,0.38206466706469655,0.77127825608477,0.8967380165122449,0.1805607844144106,0.30378355039283633,-0.9860624503344297,0.9627544861286879,-0.7681157542392612,-0.014379989821463823,-0.3772917394526303,-0.32858647871762514,-0.0027911989018321037,0.2869226885959506,0.733574400190264,-0.793450491502881,-0.8842391269281507,-0.7412698920816183,0.5293388483114541,-0.5797603628598154,0.2911442364566028,0.700248250272125,0.7717122668400407,0.21634849067777395,-0.6905394201166928,-0.43236463190987706,0.8819263349287212,-0.9357973565347493,-0.2615531403571367,-0.4234260683879256,-0.8209446002729237,0.860174453817308,0.5262893717736006,0.7091829641722143,-0.6856955960392952,-0.9843755224719644,-0.9328177981078625,0.31596400029957294,-0.36051467061042786,0.5717370468191803,0.15206738281995058,0.9663698500953615,-0.41416729521006346,0.22532928548753262,-0.5647067986428738,0.21668326668441296,0.020447556860744953,-0.9733299938961864,-0.9041818198747933,-0.4188987691886723,-0.49619401851668954,-0.9565370003692806,-0.7829469814896584,-0.6817590300925076,0.002183654811233282,0.8670030576176941,0.6695908792316914,-0.39117528637871146,0.38198669720441103,0.6717753764241934,-0.982705288566649,0.28786572022363544,-0.997362828347832,0.6699168579652905,0.6532519226893783,0.7725209929049015,0.8780449042096734,0.7806813637726009,0.7140088537707925,-0.043796929996460676,0.8485210635699332,0.4877801644615829,-0.08411301532760262,0.654659878462553,0.17045251792296767,-0.8395174159668386,0.977681661490351,-0.8921879441477358,0.7834747480228543,0.2866907366551459,0.6226841546595097,-0.7891707350499928,-0.7875127410516143,-0.8819885477423668,0.3821134655736387,0.32679817639291286,-0.5620499425567687,-0.9613720676861703,0.7201940109953284,-0.8394915210083127,-0.20736170606687665,-0.7639324334450066,-0.8663223115727305,-0.24823059560731053,-0.4667537692002952,-0.47667294228449464,-0.05445176502689719,0.056353338062763214,-0.8089158604852855,-0.037497689947485924,-0.09107169276103377,0.7093761209398508,0.33303143782541156,-0.5948511585593224,0.896021444350481,0.5715955533087254,-0.7048279107548296,0.725582392886281,-0.6954332590103149,0.06849007960408926,-0.33705165376886725,0.4667569510638714,0.8754616118967533,0.6642465582117438,-0.9597298228181899,-0.8012616974301636,0.02946141269057989,-0.48304639058187604,-0.349389998242259,-0.7154127107933164,-0.47949656564742327,-0.5501012820750475,0.8311616028659046,0.28209907887503505,0.4482620945200324,-0.994974275585264,-0.407427113968879,0.0028169630095362663,-0.8279295461252332,-0.9445820702239871,0.33847036166116595,-0.388765272218734,-0.344428988173604,-0.18842139933258295,0.5854651611298323,0.901680457405746,0.854912031441927,0.26550592575222254,-0.7301279986277223,0.05802832171320915,-0.7977265911176801,-0.2332492582499981,0.7874287837184966,0.18790773581713438,-0.7991426168009639,-0.8971907626837492,0.7837346745654941,0.3079602471552789,-0.030535219237208366,-0.5866050478070974,0.7254382777027786,0.0744296433404088,-0.6938529717735946,-0.47180555760860443,-0.9796030852012336,-0.87409239821136,-0.02909314353018999,0.18345754453912377,0.9623720147646964,0.4085800042375922,0.8995592626743019,-0.40193654550239444,-0.9931046394631267,-0.6029398362152278,0.6706268577836454,0.47242962615564466,-0.36533599998801947,0.9675243836827576,-0.2920798994600773,0.1862381617538631,0.24988225987181067,0.8989928443916142,0.653630836866796,-0.04412609850987792,-0.8401996311731637,0.9460651366971433,0.08502270700410008,-0.6044600233435631,-0.5206832615658641,0.6141763743944466,-0.9044874426908791,0.38541268929839134,-0.6692284047603607,-0.8838369543664157,0.32712175231426954,0.2530496399849653,-0.9880821816623211,0.5975792487151921,0.4305414971895516,0.653878984041512,0.7282145926728845,0.5816802135668695,0.6910005193203688,0.9479984068311751,-0.9769116621464491,0.6841773148626089,0.4239518651738763,0.9045798475854099,0.8113648556172848,-0.039339303970336914,0.42398870177567005,0.9271073737181723,0.8086569248698652,-0.5541072930209339,0.35926996916532516,-0.9310347433201969,0.20176824228838086,-0.6936446251347661,0.8959191301837564,0.7029187963344157,0.6831149645149708,-0.20019016414880753,-0.6352302627637982,0.4279151735827327,0.3003228777088225,-0.16218987992033362,0.08637034427374601,-0.3528509116731584,-0.5446834056638181,0.8434199052862823,0.3508359417319298,-0.1993526527658105,0.6665598261170089,0.09665567660704255,-0.001790208276361227,-0.5749830040149391,0.518944529350847,0.35446808859705925,0.1966559994034469,0.21836950071156025,0.73471172247082,0.030579725746065378,0.2478006100282073,0.7437807060778141,0.12462129909545183,0.779478988610208,-0.16618624376133084,0.2611473477445543,-0.05752892326563597,-0.03318322915583849,-0.07744645141065121,-0.1466392637230456,-0.34166608937084675,-0.22066478012129664,-0.7371132825501263,-0.1254870891571045,0.9723436567001045,-0.14049516385421157,-0.556155304890126,0.6611655550077558,0.13516208063811064,0.2805445524863899,0.8447820064611733,0.40279131941497326,-0.04719353141263127,-0.6175866145640612,0.9078586557880044,-0.7425587517209351,0.4508972312323749,0.8754152189940214,0.939495675265789,-0.6315918141044676,0.34651919826865196,0.1815202492289245,0.9924123324453831,-0.8419693699106574,0.5169259309768677,-0.5271625141613185,0.27611523075029254,0.536957798525691,0.15413179574534297,-0.02899651089683175,-0.9388612555339932,-0.8026774344034493,-0.7558891572989523,-0.8092389618977904,0.46485344786196947,-0.02137792482972145,0.17921216366812587,-0.9768794057890773,-0.46398052480071783,-0.23350589256733656,-0.8063077540136874,0.9308862830512226,-0.07216330152004957,0.5703819249756634,-0.42946630623191595,0.35794811975210905,0.3033507359214127,0.46746855322271585,-0.48772352235391736,-0.49814526410773396,0.6922028353437781,0.9839350935071707,-0.8281460129655898,0.0729029793292284,-0.6687747188843787,0.9887488419190049,0.8978222399018705,0.8879977860487998,0.4527473133057356,-0.47818722389638424,-0.39305985206738114,-0.33303059078752995,0.07315383199602365,-0.13716597016900778,0.33676688000559807,-0.7649536859244108,-0.3343655113130808,0.8228222969919443,0.4487756877206266,0.7233568434603512,-0.026448556687682867,0.4770990628749132,-0.5078584449365735,-0.01896347524598241,0.3129416797310114,0.2290207906626165,0.9766618167050183,-0.69238192262128,0.9667198271490633,0.5909342183731496,-0.9161550900898874,-0.9513597185723484,0.9160633091814816,-0.11600007489323616,0.9491530302911997,0.623252872377634,0.7280340837314725,-0.6835037902928889,-0.349546714220196,-0.6733341454528272,-0.06823462806642056,0.7315790844149888,0.738569593988359,-0.6965173832140863,-0.37458251789212227,-0.10813545808196068,-0.2912686192430556,-0.9110233690589666,-0.1680817799642682,0.3966471594758332,-0.6641337489709258,-0.9853183091618121,-0.7106235297396779,-0.36114516854286194,0.5581524246372283,0.8864424359053373,-0.5274185040034354,0.6571885501034558,-0.42953426111489534,0.09325755620375276,0.38075999822467566,0.3603781992569566,0.4391980725340545,-0.4313709936104715,-0.07664331281557679,0.6609022449702024,0.13295449735596776,-0.9174434361048043,-0.8204574417322874,-0.27085276134312153,0.8781522680073977,-0.753597435541451,0.9762465311214328,-0.5950157046318054,0.30688835959881544,0.16897968668490648,-0.4642024519853294,0.3343863575719297,0.881777900736779,0.20793103473261,0.5474176043644547,-0.4008621401153505,0.6251022894866765,0.8472936674952507,0.8514624834060669,0.4448297000490129,0.21153850387781858,0.4424858377315104,-0.5002725324593484,0.9890126585960388,-0.45179057586938143,-0.05385222611948848,0.3237670576199889,-0.6110424348153174,-0.41499117109924555,0.9083283930085599,0.6736029190942645,-0.20183855528011918,-0.0197393954731524,-0.5884998678229749,0.46822441229596734,0.5753637044690549,-0.17302141338586807,0.35898721031844616,-0.7072877711616457,0.46023153886199,-0.7715633241459727,0.825340713839978,-0.8420835551805794,-0.8785677836276591,-0.6792579176835716,0.585172395221889,0.34659462980926037,0.9302881332114339,-0.42852234886959195,-0.4072455484420061,0.8472985732369125,-0.5263276840560138,-0.8783194231800735,-0.36657907301560044,-0.5878857998177409,0.33403107430785894,-0.2765948660671711,0.5971709657460451,-0.518132166005671,-0.7732470370829105,0.2878249753266573,0.8917346941307187,-0.3983882167376578,-0.5755913741886616,0.8850149088539183,-0.6857318258844316,0.5293238507583737,-0.32543374272063375,0.8168575847521424,0.5027609854005277,0.8476255284622312,-0.340942848008126,-0.2964029097929597,0.5507218679413199,-0.2575772562995553,-0.9848519717343152,0.4401116780936718,0.8093953938223422,0.31469566468149424,0.24190429411828518,0.08019123738631606,-0.39702497236430645,0.9450654503889382,0.4836750337854028,-0.176357161719352,0.49905084958299994,-0.7642753222025931,0.7994651598855853,-0.1335102552548051,-0.25028420239686966,0.7260699421167374,0.15517494920641184,-0.28838687436655164,0.6448354604654014,-0.7964154011569917,0.7801143550314009,0.6244533322751522,0.8092055041342974,-0.8278972338885069,-0.956352939363569,0.23004301311448216,-0.43426906503736973,-0.3225927441380918,0.9643291090615094,-0.44556092843413353,0.88997060386464,-0.3449809434823692,0.42939103906974196,-0.4958590343594551,0.19283203408122063,0.8263425640761852,0.46970393043011427,0.8948376728221774,-0.37129708006978035,-0.6143279634416103,0.6759888413362205,0.8628804907202721,-0.13382003922015429,0.19231284223496914,-0.1702181431464851,-0.31885595712810755,0.3291776985861361,0.5605016364715993,-0.3020686791278422,0.43830267852172256,0.14151391806080937,0.4057445786893368,-0.8597155758179724,0.4150468329899013,-0.9833769085817039,0.0005267844535410404,-0.5555496956221759,0.6459057410247624,0.9477094225585461,-0.710507735144347,-0.007812599185854197,0.4056067201308906,0.8339416808448732,-0.21981910103932023,0.812727140262723,-0.4582805088721216,0.8598606255836785,-0.17241665115579963,0.01922558294609189,-0.31907771807163954,0.4076522006653249,-0.5800386322662234,0.47353659523651004,0.6632836274802685,-0.22517433017492294,0.7232308182865381,0.8229819252155721,-0.877488489728421,-0.21633252874016762,-0.8601889638230205,0.09567964309826493,-0.014349306002259254,0.5791863077320158,-0.5515331090427935,-0.5365987159311771,0.8260904615744948,-0.41105940472334623,-0.27107248082756996,-0.8665840146131814,-0.9631955795921385,-0.3698403579182923,0.5129266520962119,-0.20560351107269526,-0.5861246348358691,0.6142518147826195,-0.7293720301240683,0.2812958834692836,-0.3358634249307215,0.9043817520141602,-0.7842445052228868,0.9383914922364056,-0.7365586310625076,0.4890149408020079,0.8900891551747918,-0.12071995437145233,-0.7738311775028706,0.7758919019252062,-0.41954200714826584,0.8997421725653112,0.09709176421165466,-0.5129201235249639,-0.568718015216291,0.3267164686694741,0.6929910280741751,0.34740034211426973,0.042895860970020294,0.459147825371474,-0.561623115092516,-0.6976210935972631,0.8647012766450644,-0.09570913715288043,-0.7793327118270099,0.40855310298502445,-0.37378547759726644,0.600086182821542,-0.6942194607108831,-0.46625976637005806,0.6522369757294655,0.9735646462067962,0.6103267790749669,0.6393697373569012,0.08844311209395528,-0.7566033862531185,-0.9211605815216899,0.7646611235104501,0.7253621942363679,-0.20954074151813984,-0.9165828223340213,-0.4731695125810802,0.009135192725807428,-0.49600999848917127,0.22888537077233195,0.5729204448871315,-0.24233359890058637,-0.04425326129421592,0.17652153642848134,-0.3648470127955079,-0.2336497320793569,0.995822751428932,-0.5538960904814303,-0.44797391816973686,0.22931927675381303,-0.846228311304003,-0.6443913085386157,0.16967220418155193,0.6639197305776179,-0.7874114960432053,-0.48051223950460553,0.5012804190628231,-0.9960884395986795,-0.37555830040946603,-0.8424468524754047,-0.06919971387833357,0.7847640668042004,-0.2889876929111779,0.8356425650417805,-0.8814805722795427,-0.05422205524519086,0.8655308340676129,-0.577237285207957,0.7527739093638957,-0.3012461899779737,0.5516677126288414,-0.4286858821287751,0.4505150527693331,-0.30474321031942964,0.8758596894331276,0.6725650248117745,0.5344248339533806,0.31556878704577684,0.40660136053338647,0.17787072760984302,-0.6625710958614945,0.7621278292499483,0.7118836943991482,0.7570854178629816,-0.4313266412355006,-0.7849045130424201,0.3502011657692492,0.09139530546963215,0.9458201918751001,0.24574442114681005,-0.8682445022277534,-0.38444148702546954,0.469852595590055,-0.34192418307065964,0.4120698873884976,0.8186977016739547,-0.6465057791210711,0.11269208509474993,0.9471973422914743,-0.8884377898648381,-0.21175052132457495,0.046281501185148954,0.34800953045487404,0.7814335306175053,0.703946893569082,0.2388780741021037,-0.037896121852099895,0.13524359837174416,-0.014251151587814093,0.6661164560355246,0.79375339159742,-0.5286535485647619,0.5836939015425742,0.6373508600518107,-0.03875586111098528,-0.8750861645676196,0.6147079709917307,0.7532617370598018,0.7375155217014253,-0.13667723024263978,0.8414007220417261,0.05254546133801341,0.8193817986175418,0.8602325930260122,-0.8707467755302787,-0.38205216033384204,0.4372468423098326,-0.8992305304855108,0.644464148208499,0.8077358645386994,0.9525520908646286,-0.4118198133073747,-0.6408624802716076,-0.49559267703443766,0.103549649938941,-0.2967798952013254,0.3241913253441453,-0.0805173465050757,-0.770990495570004,-0.5888272398151457,0.2565322080627084,0.1708809593692422,0.1771417292766273,0.5948172858916223,0.3608948248438537,-0.20094191562384367,-0.5521633252501488,0.06037384504452348,0.9326191833242774,-0.47961394023150206,-0.9458226417191327,-0.7055341177619994,0.27427036920562387,-0.8137591676786542,0.3644837932661176,0.07025670912116766,0.06946398131549358,-0.7890882827341557,-0.5023077861405909,0.5303309923037887,0.6344696725718677,0.3900416325777769,-0.8753732088953257,0.6394509603269398,0.04934204090386629,-0.7177753145806491,0.929490961600095,0.45105935214087367,0.9342981688678265,-0.7413785783573985,-0.49211979657411575,-0.8617522069253027,-0.2683848920278251,-0.4813064020127058,0.5252011581324041,-0.8163492893800139,0.9161124397069216,0.2692293901927769,0.6853183610364795,-0.9992228066548705,-0.577646195422858,0.18588756350800395,-0.7107948823831975,0.12727582594379783,0.30134947830811143,-0.5696073309518397,-0.6747490004636347,0.37394648790359497,-0.08585865376517177,-0.6238463595509529,-0.5122693362645805,0.6128504681400955,0.8453384670428932,-0.5227935910224915,-0.6521436227485538,0.42422411870211363,0.7860796102322638,-0.8745935950428247,-0.00026581669226288795,-0.42099585197865963,-0.22770694456994534,0.09266259940341115,-0.5823713541030884,0.5354683338664472,0.3250453984364867,0.47785300156101584,0.07652978552505374,-0.6391292726621032,0.8365906188264489,0.1639728876762092,0.1726366262882948,0.9892477164976299,0.6048487676307559,0.9596502580679953,-0.35808821534737945,0.9058333113789558,0.07880976842716336,0.3713950365781784,-0.7668787972070277,0.3595089013688266,0.1563772144727409,0.3956043990328908,0.3850115863606334,0.21360390074551105,0.9827072531916201,-0.7100390712730587,-0.47972891479730606,-0.029459448531270027,-0.5458350107073784,-0.929985860362649,-0.7406714004464447,0.9055548901669681,0.31118903402239084,0.5800071754492819,-0.2518815593793988,-0.19329501828178763,0.27036911994218826,-0.047104474157094955,0.8018288835883141,0.26755791157484055,-0.1269747237674892,0.06216691015288234,-0.06405100366100669,0.1774751292541623,0.8283125925809145,-0.6994910971261561,0.1668978868983686,-0.7168728723190725,-0.15321279224008322,-0.9954141438938677,-0.8053451445885003,-0.8931034961715341,-0.9076206930913031,-0.8622353812679648,0.5420185322873294,0.817584132310003,0.181395354680717,-0.15758364321663976,-0.34432452404871583,-0.5874073309823871,0.8639230909757316,-0.5543851642869413,0.23085339413955808,0.9304798389784992,-0.6924865804612637,0.6169703989289701,0.6577513650991023,0.6692530792206526,-0.2859796010889113,-0.7721218233928084,0.43730319757014513,0.24684520019218326,-0.8998727044090629,0.947009973693639,-0.4740737844258547,-0.5162479099817574,-0.07669896259903908,0.2532211164943874,-0.3557693553157151,0.5671470337547362,-0.44925123266875744,0.4689350319094956,0.6905258139595389,-0.5158742279745638,0.5073973145335913,0.5689805834554136,0.5656408774666488,-0.16427919175475836,-0.5728868427686393,0.27237629471346736,0.31362806307151914,-0.3541743978857994,0.7428262252360582,0.008816496469080448,0.8663618573918939,-0.8778966222889721,-0.2172937304712832,0.01047412445768714,-0.09972964692860842,0.4642638494260609,-0.5100041800178587,0.7402858664281666,-0.8002308681607246,-0.14033940713852644,0.23683352023363113,0.060853247065097094,0.9551083808764815,0.6910036322660744,0.2110255928710103,-0.020351274870336056,0.8019673922099173,0.5398974437266588,-0.07010141294449568,-0.4609925705008209,-0.8248878451995552,0.5691770357079804,-0.6383116743527353,0.8861031658016145,-0.4379421677440405,-0.005943510681390762,0.777292802464217,0.7504414282739162,0.6757848779670894,0.8769132075831294,0.29238179372623563,-0.11102517228573561,0.519269656855613,0.4623582581989467,-0.08532735053449869,0.8628279785625637,0.9887871886603534,-0.47751259012147784,0.6325989156030118,0.7628374453634024,0.9181843036785722,-0.6071078372187912,0.8110635671764612,0.579493201803416,-0.230060541536659,0.5478519969619811,-0.11718665016815066,0.5572555088438094,0.157805438619107,0.03874943591654301,0.04149584798142314,-0.09009050577878952,0.19917761394754052,-0.21678921906277537,0.39027840783819556,-0.7296593654900789,0.37648635171353817,0.5526089076884091,-0.6097590969875455,0.4390984242781997,0.7949382802471519,-0.06706147827208042,-0.6202338743023574,-0.16525528533384204,0.17081192042678595,0.5077284080907702,-0.49861261434853077,-0.7578581743873656,0.05959600117057562,0.7996168448589742,-0.6408304958604276,-0.5455311960540712,-0.693425364792347,-0.5964655536226928,0.32537575205788016,0.8405739837326109,-0.4935567141510546,-0.3965411428362131,-0.8521999977529049,-0.9353162823244929,0.6074209338985384,0.4008894166909158,-0.1208812864497304,-0.7362581621855497,0.8818247658200562,0.2726609744131565,-0.0964538836851716,-0.13714826107025146,0.1733834478072822,-0.3661402347497642,-0.9119012537412345,-0.796256750356406,-0.746643828228116,-0.8609037362039089,-0.3835325171239674,0.08853273605927825,-0.5409902250394225,0.21368471812456846,0.4324748842045665,0.8456572219729424,-0.6539172604680061,-0.9763479521498084,-0.7003572140820324,-0.9377482431009412,0.4888597931712866,0.23941514268517494,-0.19123271526768804,-0.04631353169679642,-0.25876010209321976,-0.3209393545985222,0.698958745226264,-0.15039753541350365,0.2472722353413701,-0.6131783658638597,0.10384636046364903,0.7851634793914855,0.33901337813585997,0.942983157467097,0.4728596960194409,0.5966963013634086,0.008128895424306393,-0.5077170329168439,0.31065119430422783,-0.09012347646057606,0.6456045061349869,-0.8941487213596702,-0.5201756316237152,0.28242856776341796,-0.9317108946852386,-0.226128242444247,-0.623760384041816,0.25651232711970806,0.3143169116228819,-0.8320050304755569,-0.6737086521461606,0.6056612799875438,0.6434857998974621,0.3528683241456747,-0.12866664491593838,0.899503231048584,-0.23459484847262502,-0.7081110272556543,-0.482405552174896,-0.6533862017095089,-0.722396987490356,0.8333090073429048,0.9055747119709849,0.180836359038949,-0.5675745699554682,0.4082942446693778,0.6924590622074902,-0.1735681751742959,-0.41249515349045396,-0.5865173554047942,-0.6327818878926337,0.6684087156318128,-0.46321198903024197,0.03827344300225377,-0.2226461716927588,-0.1987168681807816,0.7039388376288116,-0.2639565905556083,0.8771676332689822,-0.8834382393397391,-0.9243443631567061,-0.30516690155491233,-0.35091351298615336,0.6505921063944697,-0.5691030821762979,-0.010674494318664074,0.1383911627344787,-0.8004352669231594,-0.07941384054720402,0.3380049141123891,-0.452122048009187,-0.8528649639338255,0.9502448225393891,0.7417831872589886,0.9893364612944424,0.20799201354384422,-0.43505008751526475,-0.4665381438098848,-0.4855006639845669,-0.004765740595757961,-0.06811896851286292,0.7144859624095261,-0.13142765685915947,-0.03706421749666333,-0.053126918617635965,-0.7338414508849382,0.17714640265330672,-0.8840522854588926,-0.04474788345396519,0.5442056241445243,0.007280321326106787,0.07036723103374243,0.6377576645463705,-0.7517385077662766,0.43281903490424156,0.3476553875952959,-0.250474464148283,-0.15130782639607787,-0.09209600882604718,0.9841512450948358,0.539494922850281,-0.44243086548522115,-0.12645936105400324,0.4873349308036268,0.3769930503331125,-0.98489785566926,-0.1355565907433629,0.2872299035079777,-0.4611585638485849,0.06716691656038165,0.6865729987621307,-0.47401321586221457,-0.9460780108347535,-0.6970222974196076,0.9052237677387893,0.2351546660065651,0.9510507555678487,0.21393479220569134,0.48987519601359963,-0.7342236945405602,-0.5673788809217513,-0.6021215100772679,-0.9038523240014911,0.02099549351260066,-0.53594432445243,-0.594114066567272,-0.22004542220383883,0.42961250664666295,-0.09775332175195217,0.3542906134389341,-0.4699076642282307,0.03677624883130193,0.44828014774248004,-0.031940026208758354,0.12661734782159328,0.9885861361399293,0.8297875295393169,-0.25497194193303585,-0.07633132999762893,0.19518672162666917,-0.25818524695932865,-0.36373542016372085,0.5341386175714433,0.5847406727261841,-0.6640705103054643,-0.6147816525772214,0.8976872591301799,-0.5393562070094049,0.38172302348539233,-0.18747358722612262,0.292355943005532,-0.7100189398042858,-0.35981797333806753,0.2963378094136715,0.9935645810328424,0.4848009143024683,-0.2009434811770916,-0.6492542666383088,0.6375190583057702,-0.9671304924413562,-0.19561724830418825,0.5067826369777322,-0.710223866160959,0.8522612797096372,-0.10330629022791982,-0.30455806013196707,0.3641760712489486,0.957682294305414,0.03985742013901472,0.27968779718503356,-0.9581671059131622,0.4987859264947474,0.8048351611942053,-0.2832289570942521,-0.6493710866197944,0.1728670815937221,-0.21145376563072205,-0.16334324143826962,-0.1991470567882061,-0.05745245050638914,0.5953736659139395,0.4694292228668928,0.10545462416484952,0.8576553338207304,0.4638898209668696,0.6906416583806276,-0.7321917158551514,-0.27587267151102424,0.5679757483303547,0.8201417196542025,0.4016903415322304,-0.31547579215839505,0.0595490918494761,-0.3345536822453141,0.19902437878772616,0.037019435316324234,0.08431235933676362,0.19552193116396666,-0.6893212315626442,0.34368437295779586,-0.48866453347727656,0.7292828699573874,-0.584463847335428,-0.6182913957163692,-0.6492103547789156,-0.23548402544111013,-0.9924543835222721,0.6044311625882983,0.6294040125794709,-0.6933020809665322,0.5331617370247841,-0.6192700434476137,-0.04918050952255726,-0.27617385098710656,0.13185815745964646,0.18980645947158337,-0.21405139565467834,0.4439986068755388,-0.440555646084249,0.5122746233828366,-0.5903595695272088,0.9414016692899168,-0.32209987100213766,0.9192544487304986,-0.43129452550783753,0.5367888435721397,0.14195146271958947,-0.5441569196991622,0.07813585922122002,-0.8762439917773008,-0.4494100953452289,-0.9807379804551601,0.3278565388172865,0.7047814829275012,-0.8666292447596788,-0.7724134996533394,-0.12145040044561028,0.7923131166025996,-0.3263261620886624,-0.8205046779476106,0.9671323206275702,0.8951104930602014,0.35748131247237325,-0.2235154015943408,0.2695989739149809,-0.7331293351016939,0.06652661459520459,-0.6227782825008035,-0.5823529399931431,0.9442633339203894,0.629767740610987,0.12009814707562327,-0.18169603683054447,0.42664159601554275,-0.6870409492403269,0.7243796652182937,-0.38109019957482815,-0.8859232240356505,-0.18332223873585463,0.6822116090916097,-0.21569917956367135,-0.3768559182062745,0.3151676538400352,0.7059692274779081,0.5806048954837024,-0.7617798466235399,-0.597076469566673,0.4463228336535394,-0.01887018932029605,-0.25651588942855597,0.8083779592998326,0.08460628986358643,-0.7594208838418126,-0.7048868746496737,0.08857541577890515,-0.7591469790786505,0.21777927223592997,0.04581975704059005,-0.4935330916196108,-0.550731458235532,-0.41548020020127296,0.7797080809250474,0.9246086650528014,-0.08691356983035803,0.5823282962664962,0.9795356839895248,0.16559353983029723,0.5622151736170053,-0.1001877230592072,-0.05799527978524566,-0.6261499742977321,0.03382145939394832,0.7570691993460059,0.21203331230208278,0.15472116880118847,-0.048275995533913374,0.23702132515609264,-0.4031773107126355,-0.2745063346810639,0.7742791371420026,0.9837657073512673,-0.08341088285669684,-0.9059703494422138,0.6210655067116022,0.4909985549747944,0.7907676352187991,-0.347498485352844,-0.011821491178125143,0.68204286089167,-0.9487536228261888,0.5731994365341961,-0.5879007522016764,-0.25747628696262836,-0.3157877395860851,-0.2446702034212649,-0.24401403916999698,-0.14956150855869055,0.2558664786629379,0.24269657023251057,0.016713653225451708,-0.8130770628340542,-0.043882951606065035,-0.03907966706901789,0.004910506773740053,-0.6064461190253496,-0.34101370070129633,0.17133166315034032,-0.6074092080816627,-0.511064572725445,0.33866557059809566,0.3820297163911164,-0.3551343996077776,-0.8235037508420646,0.28829960199072957,0.8972333408892155,-0.035945926792919636,-0.7594917407259345,0.18893906567245722,-0.39195349207147956,-0.16023472882807255,-0.7509266580455005,0.649288288783282,0.8988989391364157,0.20032269787043333,-0.4560404783114791,0.12429607892408967,0.6899589020758867,-0.09412214159965515,-0.8863990465179086,-0.5416497802361846,-0.5235453960485756,-0.33733855467289686,-0.7133880970068276,0.5017595952376723,0.8334469785913825,0.6814834652468562,-0.885318205691874,0.05683387070894241,0.9242234830744565,-0.10324428975582123,0.5237416620366275,-0.6745881270617247,-0.1666946280747652,-0.24756120750680566,-0.4447951572947204,0.9252202715724707,0.8652294226922095,0.6771787740290165,-0.8618788942694664,-0.7861848552711308,-0.08625366725027561,0.1805026875808835,-0.6221512742340565,0.8339823307469487,-0.8843022962100804,-0.5326297809369862,0.5866790898144245,0.8833841974847019,0.801876325160265,-0.30517473304644227,-0.27930391347035766,0.46215358562767506,-0.05234976066276431,-0.6940097198821604,-0.19068736862391233,-0.20658835023641586,-0.5970166530460119,0.928619310259819,-0.7403215770609677,-0.27362275030463934,-0.6074232184328139,-0.8480966798961163,-0.23603280866518617,-0.0677900523878634,-0.3738565039820969,0.8805728578008711,0.9810508056543767,-0.46814991580322385,0.8191018849611282,-0.5234138988889754,0.6495236703194678,0.3500514905899763,-0.8705230201594532,0.8389527625404298,-0.969695137348026,-0.7155036092735827,0.424739055801183,0.3700057496316731,-0.4368299152702093,-0.8326376862823963,-0.04312844527885318,0.621807427611202,0.4797754497267306,-0.49233934096992016,0.6593025522306561,-0.9402432264760137,-0.8673311108723283,-0.47368125384673476,0.6976509848609567,0.6635363292880356,-0.7664916533976793,-0.3194927582517266,0.48442802857607603,-0.9896872625686228,0.7033108603209257,-0.24955117888748646,0.24130861042067409,0.7184756440110505,0.7859237282536924,0.9075052286498249,0.10002017393708229,0.13419818924739957,0.6464063255116343,0.4428617460653186,0.5719194929115474,0.3576591284945607,-0.9242294998839498,0.757928925100714,-0.7343315156176686,-0.684772954788059,-0.9594060806557536,-0.7653161860071123,0.9991486417129636,0.46568527165800333,-0.6505749826319516,0.7170221339911222,-0.3123598541133106,-0.8069070926867425,0.2371568838134408,0.31139753805473447,0.31280862307175994,-0.8336767703294754,0.42427394445985556,0.01231327373534441,-0.953505830373615,0.7691117953509092,0.9226740365847945,0.8234773008152843,0.05826568137854338,0.9075664770789444,0.040471095591783524,0.9185989266261458,0.9917114535346627,-0.641327628865838,0.013007903005927801,0.4539088923484087,0.5770506979897618,-0.0447258404456079,-0.2527354131452739,0.8854789626784623,0.13063276698812842,-0.5029037627391517,-0.0900962040759623,0.12375184893608093,-0.11738474760204554,-0.7710121278651059,0.9490363798104227,-0.11368044884875417,0.49374335911124945,-0.6903856438584626,-0.206551362760365,-0.7739383457228541,0.4880976602435112,0.6085054888390005,-0.06100509176030755,-0.11742182588204741,0.23969833040609956,0.8599812211468816,0.39799182722344995,-0.4419585047289729,-0.4834226449020207,0.5856022862717509,0.9469976299442351,-0.08023573504760861,-0.5067861825227737,0.11705900589004159,0.9103894778527319,0.7064394480548799,-0.366848670411855,-0.13347775861620903,-0.7820152193307877,0.6145984861068428,0.40569342439994216,-0.6536390604451299,0.5116355116479099,0.3631341988220811,-0.16202628519386053,0.9523038086481392,-0.0555086862295866,-0.47872457653284073,0.7481022379361093,0.6415002546273172,0.9540633852593601,-0.07631382718682289,-0.5636840481311083,0.7794048199430108,-0.8291292162612081,0.9933102992363274,-0.7169483131729066,-0.7938913232646883,0.6948105306364596,-0.011085198260843754,-0.4486333769746125,-0.5446988851763308,0.3767123050056398,-0.574577821418643,-0.9286006768234074,0.32129203667864203,-0.4279055721126497,0.09749087784439325,0.5979149448685348,0.8931037075817585,-0.2501302380114794,-0.027665169443935156,-0.3821360841393471,0.8431638549081981,0.3107278416864574,-0.5213331854902208,0.37360141426324844,0.228218168951571,0.6404893873259425,0.266368109267205,0.18356266058981419,-0.14766505220904946,-0.06692878529429436,0.06507040048018098,-0.6450400766916573,0.13216493232175708,-0.11156212911009789,0.07324363058432937,-0.9886212535202503,-0.004838644526898861,-0.3479975494556129,-0.3604051796719432,0.12861484196037054,0.604153202380985,0.46734389290213585,-0.9191482081077993,-0.6104426933452487,-0.16163789853453636,-0.7443617838434875,-0.9922778191976249,0.7704937942326069,0.7096274457871914,0.2230429034680128,0.8485578801482916,-0.4786570016294718,0.5884791132993996,0.32818083837628365,0.4110521851107478,0.7267233780585229,-0.4708374785259366,-0.8480924908071756,0.3795483186841011,-0.01425586873665452,0.40189093351364136,-0.5827851532958448,0.9623896214179695,-0.10486128553748131,-0.4046826376579702,0.33680615527555346,0.7531878352165222,-0.8588790963403881,0.4191805589944124,-0.27581909764558077,-0.5958591150119901,0.49842567881569266,-0.4795947619713843,0.670561152510345,0.9135869205929339,-0.16059744590893388,-0.6394369988702238,-0.2523010754957795,0.2844793382100761,0.1783953863196075,0.17177719715982676,0.23068200564011931,-0.3941436419263482,-0.2538934461772442,-0.02613985352218151,-0.061951464507728815,-0.34170782193541527,0.24854646297171712,0.3225424401462078,-0.6185509744100273,0.019240329042077065,0.9536127117462456,0.9897835245355964,0.5531747872009873,-0.5222600516863167,-0.9655431997962296,0.8314220770262182,0.9569772561080754,-0.8477810905314982,-0.31288264505565166,0.10318617150187492,0.5212691589258611,-0.14690769324079156,-0.2948960615321994,0.3011167640797794,-0.7138258311897516,0.0534812118858099,0.13311526086181402,-0.8417229442857206,-0.7975780298002064,0.5604404639452696,-0.38325093872845173,0.656426967587322,-0.7793362331576645,-0.8014281000941992,0.6779849980957806,-0.6043692822568119,0.6045515313744545,-0.8956230753101408,0.9313133088871837,-0.371181673835963,-0.9568284265697002,-0.7422532052733004,0.9574639894999564,-0.012213406153023243,0.8682672432623804,0.7982000377960503,0.7272564824670553,-0.31672947155311704,-0.23947391146793962,0.7457144786603749,0.6852292185649276,-0.5562554793432355,0.881583190523088,-0.9973799902945757,-0.0877264803275466,0.28987739654257894,0.10718001099303365,0.38496311800554395,0.9815542227588594,0.8209680081345141,0.8254182399250567,0.22098808316513896,0.5003986656665802,0.7374056591652334,-0.6884033903479576,0.9299509059637785,-0.08972735889256,0.41037927148863673,0.9013910335488617,0.03436817415058613,-0.03847476374357939,-0.6189380213618279,0.41234450740739703,-0.4263111432082951,0.7026402307674289,0.6359049058519304,0.4696048120968044,-0.4093075371347368,0.5867689703591168,-0.9053583508357406,-0.30758541356772184,0.3998327967710793,0.9262723410502076,0.6796381748281419,0.4890778404660523,-0.08133251778781414,0.5142117836512625,0.01625125203281641,-0.3779412894509733,-0.13197103422135115,0.9815589576028287,-0.7290106136351824,-0.08131558261811733,-0.27381164440885186,0.9977925778366625,0.46572114061564207,0.9889439167454839,-0.8073722277767956,0.033558815252035856,0.10019774595275521,-0.9062685668468475,-0.30361051578074694,-0.6758786495774984,-0.892746718134731,-0.7603775020688772,0.3182246182113886,-0.313693854957819,-0.4593369937501848,-0.38435940025374293,0.5941016264259815,-0.4476314871571958,-0.7492177132517099,0.28588271513581276,-0.8275170372799039,-0.6553272702731192,0.061231831554323435,-0.7190446332097054,0.748149149119854,0.6247923984192312,0.509853947442025,-0.14608371583744884,0.9708863371051848,0.06235047150403261,0.6167903337627649,0.10019219946116209,0.00032517407089471817,-0.9623355949297547,-0.1492722388356924,-0.312621199991554,-0.6183602157980204,-0.238854278344661,0.6535656056366861,-0.034472500905394554,0.31621028762310743,0.23911956092342734,-0.7304445141926408,0.70657465653494,0.8552238494157791,-0.3186322432011366,0.16028358088806272,-0.22234334936365485,-0.7620024997740984,-0.5796596137806773,0.3640484516508877,-0.3714218605309725,0.7859704350121319,0.3715645154006779,-0.7943641943857074,-0.4956485484726727,0.8204554058611393,-0.4049539668485522,0.8190888217650354,-0.9099749936722219,-0.12738177133724093,0.5975717515684664,-0.9523422424681485,-0.6456520492210984,-0.7700930619612336,-0.7619085973128676,0.6499254866503179,-0.9828163641504943,0.00976575119420886,-0.4731314228847623,0.8840432954020798,-0.2891176054254174,0.3014542767778039,-0.7341274763457477,0.3884087773039937,0.7251981319859624,0.8028022875078022,0.7483858466148376,-0.5068157152272761,-0.8594899973832071,0.1363025028258562,0.6442998363636434,0.49552287347614765,-0.6960175069980323,-0.6997687765397131,-0.5250724493525922,-0.9275182336568832,0.8521072496660054,0.5213370774872601,0.673256715759635,-0.5334617053158581,0.23677412373945117,0.7204252257943153,-0.47038387367501855,0.2332057491876185,-0.3125922572799027,-0.8335331683047116,0.5337526765652001,0.8900683578103781,-0.2768625826574862,0.4898431277833879,0.10956193646416068,0.05646811705082655,0.16069666063413024,-0.8983495719730854,0.5055765775032341,0.9284375249408185,0.8703564726747572,0.28121940046548843,-0.6665356275625527,0.7883796012029052,-0.809882600326091,0.3895917278714478,-0.3399402778595686,-0.3179108644835651,-0.013676520437002182,-0.5908882305957377,-0.9300437094643712,-0.7954322122968733,-0.5235060099512339,0.11805659718811512,0.17279297625645995,0.9613447934389114,-0.7257733820006251,0.21606992557644844,-0.06183821987360716,-0.6941567631438375,-0.06945938570424914,-0.20068997703492641,0.9885861836373806,-0.06419051438570023,-0.4495806568302214,-0.929252287838608,0.8854196667671204,0.9986232109367847,-0.43488870142027736,0.28284593019634485,-0.18127032835036516,-0.4186439150944352,-0.27164347376674414,0.592993772123009,-0.46290477318689227,-0.8718656790442765,-0.18642440857365727,0.6833726465702057,0.32006777776405215,-0.9416025341488421,0.8921499149873853,0.5685360454954207,-0.9200028013437986,-0.90037926658988,-0.6245313612744212,-0.8070772141218185,0.8052367768250406,-0.2766465335153043,-0.5835073944181204,-0.4132282859645784,-0.5034926855005324,0.6499293381348252,0.0159980240277946,-0.22800395358353853,-0.7622394422069192,0.45120732579380274,-0.4102269057184458,0.09646747913211584,0.917396551463753,0.15378557704389095,-0.7293280265294015,0.2420419934205711,-0.0691300923936069,0.04609655728563666,-0.14157916139811277,-0.5067432718351483,-0.7141744182445109,-0.432643776293844,-0.18145374674350023,0.8678806442767382,-0.9522938979789615,0.3130652937106788,0.9178541237488389,0.20520213898271322,-0.26639966620132327,0.2596955024637282,0.20889603346586227,0.9316902048885822,0.2772265952080488,0.5009752875193954,-0.857848088722676,-0.2247145394794643,0.1526588937267661,0.035930952057242393,-0.9894098909571767,-0.03693949384614825,0.5965520367026329,0.8504573218524456,0.2938079326413572,-0.16356615209951997,-0.1462873206473887,-0.9949620068073273,-0.8740998702123761,-0.17603723797947168,0.9865548796951771,-0.63124891044572,0.22787275863811374,-0.09149284707382321,0.020742538385093212,-0.6873540617525578,0.3741902681067586,-0.7397292922250926,-0.09584354143589735,-0.7935230769217014,-0.2641275189816952,-0.7221951261162758,-0.20463089365512133,-0.8924899320118129,0.7689256756566465,-0.43663266533985734,0.5027954592369497,-0.0324237709864974,-0.9892313396558166,0.18019997840747237,0.19532429426908493,-0.6852108943276107,0.33552960958331823,-0.4265826102346182,-0.7066384516656399,-0.8988674865104258,0.504656192380935,-0.8250282141380012,-0.16263678343966603,0.48701254464685917,-0.36056028259918094,-0.009809784591197968,0.389544571749866,0.9990682229399681,-0.6494765230454504,-0.9674458634108305,0.35016212379559875,-0.7205184199847281,-0.7462299689650536,0.23686160426586866,-0.8708585961721838,-0.7788387378677726,-0.5998143861070275,0.16056957468390465,-0.45503126084804535,-0.8970189304091036,-0.17791814217343926,-0.5113281984813511,-0.08732343278825283,0.4646911807358265,-0.6963907270692289,-0.3791363472118974,-0.6293204333633184,-0.28823718428611755,-0.4783354662358761,-0.38496885960921645,0.1282233134843409,-0.15699579939246178,-0.9923117249272764,0.42121394304558635,-0.407550897449255,0.7079811226576567,-0.5953136342577636,0.31241709692403674,-0.9451886252500117,0.4764605066739023,-0.3209412139840424,-0.7912036781199276,0.24650271330028772,0.3705157330259681,0.25170508911833167,-0.9447280513122678,-0.06536785699427128,-0.62020384054631,0.44506609020754695,0.20657667005434632,-0.9997810265049338,-0.20362921757623553,-0.9036027346737683,-0.7122663101181388,-0.1021402757614851,-0.4463649266399443,-0.47601880552247167,0.4375858842395246,-0.9603006881661713,0.05744207836687565,0.27308089658617973,-0.39621652802452445,0.09522777842357755,0.8928032321855426,0.28577387845143676,-0.4334464678540826,0.05737672280520201,0.9578009773977101,-0.2588417143560946,0.6676997700706124,-0.7719395901076496,0.8319277539849281,0.4760323781520128,-0.8725087647326291,-0.8677233844064176,-0.43564934423193336,0.7602211995981634,-0.6831392389722168,0.009719614870846272,-0.4933168264105916,0.10723385820165277,0.36371695483103395,0.659722879063338,-0.5122048305347562,0.6219908352941275,-0.4221272338181734,0.857392305508256,0.24712775787338614,-0.18026276724413037,0.27737246872857213,0.48562536388635635,0.7917315382510424,-0.11260024458169937,-0.7657261183485389,-0.886089030187577,0.816751295235008,0.9982692482881248,-0.8377798991277814,0.4151365221478045,-0.8219493101350963,0.5490436991676688,-0.7757196677848697,-0.843921362888068,-0.5968551016412675,-0.10203687939792871,0.8974372865632176,0.19235892919823527,0.7508383253589272,0.6587623390369117,0.011993355583399534,0.9078742251731455,-0.29527373891323805,0.1176722189411521,-0.2632724270224571,-0.4908323669806123,0.24927108408883214,-0.5623925705440342,-0.012116762343794107,0.9187984941527247,-0.8229342605918646,-0.30179153056815267,-0.1954041444696486,-0.773034080862999,0.3906609332188964,0.078261224552989,-0.3822259330190718,0.7845643917098641,0.3552750712260604,-0.9228790160268545,0.9111416707746685,0.14019544376060367,0.4701316594146192,0.7106858864426613,0.5313591291196644,-0.6056677172891796,-0.8663898049853742,0.4414573237299919,0.7477576928213239,-0.9646013523451984,0.5755991521291435,0.5422593443654478,0.9870955813676119,-0.8631391422823071,-0.6721089719794691,-0.050631087739020586,0.8210209081880748,0.9859237615019083,0.6128467875532806,-0.6270761513151228,0.2095206780359149,0.534438450820744,0.042707151267677546,0.8563480209559202,0.9304805481806397,-0.7285364926792681,-0.5153619116172194,0.19614301528781652,-0.08065908402204514,-0.2430442231707275,-0.2900980580598116,-0.5170504157431424,-0.6687801266089082,0.8045692946761847,0.6584350140765309,-0.6644723913632333,-0.5354861658997834,0.9932125322520733,-0.26907216804102063,-0.5915254768915474,-0.7762973974458873,-0.4365678383037448,0.42856505047529936,0.6723956782370806,0.6174842943437397,-0.5081110931932926,-0.02533462969586253,0.9200459271669388,-0.09343589097261429,-0.6616100668907166,-0.8286660402081907,-0.655311141628772,-0.4840374691411853,-0.8146857498213649,0.46688170777633786,0.3595049483701587,-0.4111194028519094,0.20932876644656062,0.3832183894701302,0.0032174019142985344,0.9585275994613767,-0.7782428581267595,-0.9019386232830584,0.18118517193943262,-0.6240151515230536,0.8060568678192794,0.27599237160757184,-0.7794697592034936,0.7223930424079299,-0.5887359315529466,-0.9225567746907473,0.4709084262140095,0.33258047979325056,-0.842758743558079,0.20102595072239637,-0.060583507642149925,-0.6722253197804093,-0.13277581613510847,-0.04848267091438174,-0.19485640665516257,-0.7810567347332835,-0.8034010976552963,-0.9540942786261439,-0.5746257635764778,0.10241274256259203,0.9588334304280579,-0.5684998487122357,-0.29055230924859643,0.7550796563737094,-0.9684150372631848,-0.07748565962538123,-0.034352167043834925,-0.03562119882553816,0.36291340878233314,-0.8010052903555334,0.5790040781721473,0.6392346015200019,0.8581129442900419,0.7578923036344349,0.13900006609037519,0.9888838403858244,0.002306628040969372,0.47785134613513947,-0.5270095937885344,-0.16660339711233974,-0.4540415829978883,-0.9955491730943322,-0.9059943445026875,-0.9644555184058845,0.07568425126373768,-0.49161388305947185,0.4614389571361244,0.7644479535520077,0.9950580932199955,-0.8208471238613129,-0.46012159856036305,0.012777713127434254,-0.9367464119568467,-0.3384850509464741,-0.9430664391256869,0.3362173833884299,-0.4232174218632281,-0.33734558476135135,-0.29658905137330294,0.10522621450945735,-0.3422163873910904,0.8352860854938626,-0.9014062532223761,-0.4132880950346589,-0.9210730097256601,0.8778335675597191,0.6172316819429398,0.22057004878297448,0.23438740987330675,-0.5161603139713407,0.5145283685997128,-0.7688774857670069,0.35743744438514113,-0.47115147579461336,0.25342216715216637,-0.803496340289712,-0.4398310771211982,-0.010908524971455336,0.7344112074933946,-0.08322764188051224,0.7971351398155093,-0.3395130396820605,-0.9979054448194802,0.19779919181019068,0.4158953707665205,0.4070618390105665,-0.7640146147459745,0.2785440254956484,0.35883632861077785,0.22142038960009813,-0.37063562870025635,-0.07036784524098039,0.334888048004359,0.15272488724440336,-0.8359355069696903,-0.022294851951301098,0.17011456610634923,0.46123419469222426,-0.7969498513266444,0.9876149259507656,0.8425569981336594,-0.6979176225140691,0.06702269101515412,0.032166439574211836,-0.6732309111393988,0.9950335645116866,0.9479546281509101,-0.06983875203877687,-0.8089952757582068,-0.445541619323194,-0.3316161520779133,-0.5787970488891006,-0.22620941791683435,-0.8099727900698781,-0.7593513764441013,-0.318184666801244,0.1854696935042739,-0.03776266658678651,0.4223028370179236,-0.7151244417764246,0.1907438114285469,-0.07066045189276338,-0.34553050296381116,0.1394891059026122,0.15955600747838616,0.7431865059770644,0.8012917810119689,-0.5501369088888168,0.5739295072853565,-0.12617293512448668,0.867819968611002,0.1205380791798234,-0.09071977203711867,-0.5856543686240911,0.20364671805873513,-0.07387096341699362,0.863272821996361,-0.6129571837373078,-0.599539864808321,0.18800366763025522,0.9109433558769524,0.20260932249948382,-0.4909389461390674,0.634887324180454,0.12805527774617076,0.21495839906856418,0.579345615580678,0.7795662651769817,0.6375269712880254,-0.7042764709331095,-0.928086182102561,-0.050104770343750715,0.45006948662921786,-0.7078145346604288,-0.5609117513522506,-0.6145918597467244,0.30999436927959323,0.21607776917517185,-0.1942511829547584,0.42765883496031165,-0.2506112875416875,0.8241322576068342,0.8819331889972091,-0.42994827777147293,-0.4509842013940215,-0.03135841619223356,-0.201358029153198,-0.8509292686358094,-0.72555588837713,0.19619829719886184,-0.9654742586426437,-0.9472286798991263,0.8409312209114432,0.7334802970290184,-0.2705441042780876,-0.6041596601717174,-0.8486598911695182,-0.701370710041374,-0.6155434735119343,-0.05412394646555185,0.896284160669893,-0.6447704103775322,-0.2745036822743714,0.7023236015811563,-0.3197214142419398,0.1893642325885594,-0.16086917091161013,-0.47908030776306987,0.1687435870990157,0.29300428833812475,0.6613319320604205,0.07377113774418831,-0.05684298416599631,-0.8745962041430175,0.8800994548946619,-0.36812286637723446,-0.5221301205456257,-0.053321145474910736,-0.6006949585862458,-0.49229494389146566,-0.4203547169454396,-0.9886296396143734,-0.46376340277493,0.859240188729018,-0.9731724634766579,0.4429457923397422,-0.21591855818405747,0.04808464180678129,0.9301692531444132,0.7515322174876928,-0.8501951382495463,-0.5014629811048508,0.5013777422718704,-0.0802511959336698,-0.5385370100848377,-0.8053878513164818,-0.2413871269673109,-0.9834194714203477,0.2502291854470968,-0.09593716263771057,0.35105563420802355,-0.7816931228153408,0.5855229366570711,0.15415307926014066,-0.08044614782556891,-0.5426548440009356,0.18537671770900488,-0.10116683971136808,-0.5164700918830931,0.8113387045450509,0.30880305357277393,-0.8330880291759968,-0.9917340120300651,0.9206490823999047,0.6887021716684103,0.778914122376591,0.06539726722985506,-0.5950288716703653,-0.38224981538951397,-0.09246945008635521,-0.06301205884665251,-0.7682130113244057,0.970336988568306,-0.04489924106746912,0.24600391648709774,-0.32386673707515,0.04828162305057049,0.7532459408976138,-0.24616170627996325,0.9190794182941318,-0.6310205487534404,-0.46744829788804054,-0.13023858843371272,-0.9310425254516304,-0.4235161626711488,-0.48121434869244695,-0.5985263166949153,0.08560987608507276,0.08221013052389026,-0.36178994411602616,0.8099399977363646,-0.9833259908482432,-0.35307077364996076,-0.4281736044213176,-0.4204621808603406,0.12060858029872179,-0.021686770487576723,-0.4878385900519788,0.0876712347380817,-0.9536091005429626,0.8916555503383279,-0.02507233200594783,0.3889142693951726,-0.6416055844165385,0.1082424521446228,0.5241225226782262,0.19476762833073735,0.02504858374595642,-0.17670544469729066,0.193120121024549,-0.6905187810771167,0.09933588095009327,-0.8801913564093411,-0.7325576576404274,-0.7282622633501887,0.8696313216350973,0.9103934019804001,-0.7119685346260667,0.27492391131818295,-0.9031438739039004,-0.6659335228614509,-0.5991800813935697,0.0013882550410926342,0.28083203407004476,0.6625105910934508,0.191659948322922,0.6238678772933781,0.7676330879330635,0.436775051523,0.02215874334797263,-0.12344356440007687,0.575988800264895,-0.26796394074335694,0.19310646783560514,0.7588458806276321,0.461622541770339,-0.7646309370175004,-0.9920331384055316,0.5183077091351151,0.12441177573055029,0.7420808938331902,-0.862155559938401,0.3596601798199117,-0.49196484917774796,-0.2726968340575695,-0.6304983058944345,-0.21073492104187608,0.17481952905654907,0.9081810615025461,0.7210826822556555,-0.18119009491056204,-0.3828055034391582,-0.47750455886125565,-0.7770710652694106,-0.36577175091952085,-0.31321789463981986,-0.26384749729186296,-0.8184433812275529,0.48689820105209947,0.9950302438810468,-0.4096754682250321,-0.5045213969424367,-0.9216518173925579,-0.7784198368899524,-0.2879344904795289,0.3821989269927144,0.7603962551802397,-0.7997690704651177,0.48724311776459217,0.6423051757737994,-0.7376403361558914,0.5649930480867624,0.4182332996279001,-0.03697256185114384,-0.47936395090073347,0.695300551597029,0.7806192529387772,-0.0645461780950427,-0.5218635373748839,-0.34151982236653566,0.5641696136444807,0.8650268567726016,0.5492860767990351,0.2016568393446505,0.26892689894884825,-0.06515893060714006,0.8087579244747758,-0.7947617210447788,0.21286469558253884,0.8271731184795499,0.4120765281841159,0.6516469181515276,-0.2669034036807716,0.21873382246121764,-0.5973492977209389,0.13174844160676003,-0.43157552694901824,-0.6619846769608557,-0.6915196431800723,-0.2513786247000098,-0.5799410371109843,-0.3117543417029083,-0.20358462585136294,-0.0975906103849411,-0.21172325126826763,0.9404133963398635,0.11198282754048705,-0.6707343086600304,0.18496160162612796,0.4709300799295306,0.3721097679808736,-0.950808878056705,0.20048506231978536,-0.08736811205744743,-0.8438256829977036,-0.5436375071294606,-0.8486747746355832,0.15616389317438006,-0.0053757852874696255,0.8348014215007424,0.3443006626330316,0.5395489656366408,-0.25745546957477927,-0.8765337755903602,0.7639559921808541,0.4406030368991196,-0.4772894689813256,0.3877483098767698,-0.5754825295880437,-0.5979173444211483,0.9621567712165415,0.5387409669347107,-0.10178421111777425,-0.9549339790828526,0.9828069689683616,-0.8443970424123108,0.8827597927302122,0.16992832720279694,-0.3202477269805968,-0.3581486181356013,-0.7402089624665678,-0.2624169932678342,-0.2898050700314343,-0.4782771389000118,-0.5987949902191758,0.8988757985644042,-0.6933957147412002,-0.256228756159544,0.5625055297277868,0.6000683209858835,-0.35102286376059055,0.7681848448701203,-0.2858952241949737,0.8904849463142455,0.13216640055179596,0.01725705759599805,-0.6779872491024435,-0.248893897049129,0.6576658370904624,-0.8846634128130972,-0.2289006025530398,0.8830025098286569,0.175559239462018,0.5713373506441712,0.6057735201902688,0.9895053165964782,-0.6877115345560014,0.6521636387333274,-0.17816868610680103,-0.0120434551499784,-0.6352647095918655,-0.6823795353993773,-0.4092307989485562,-0.5485821636393666,-0.7802419308573008,-0.01936971303075552,-0.3279215330258012,-0.05141735868528485,0.12258006678894162,-0.35483954241499305,-0.5051607610657811,-0.47753907134756446,0.9247615425847471,0.5707284770905972,-0.06376004219055176,0.3182214922271669,0.5322396294213831,-0.5799001879058778,0.12031247885897756,-0.9217425524257123,0.043529678136110306,-0.43272980069741607,0.61524145770818,-0.5648786914534867,-0.08268742263317108,-0.3110286178998649,-0.524694676976651,0.8711119857616723,0.4875426944345236,0.14037010492756963,-0.5217304690741003,-0.4694725526496768,0.3004461736418307,-0.3989940402098,0.40853198198601604,-0.41071704449132085,-0.8421010673046112,-0.500667461194098,0.5985865644179285,0.3837901153601706,-0.39063089806586504,0.35388263361528516,-0.01797308586537838,-0.17027108231559396,-0.13232504157349467,0.05641122907400131,0.680905643850565,0.14545875042676926,-0.5693918447941542,0.7385046193376184,-0.17303625540807843,0.09945239825174212,-0.25110944267362356,0.027920006308704615,0.957537692040205,0.46526020765304565,0.8127713170833886,-0.35218806425109506,-0.8891448359936476,-0.732125127222389,-0.44629646884277463,-0.502401314675808,0.05899729300290346,0.8161727236583829,-0.4250037120655179,-0.028194810263812542,-0.21521271485835314,0.9933785446919501,-0.6988172549754381,0.4828190947882831,0.03956828452646732,0.5159017592668533,-0.6308431490324438,0.985828289296478,0.08737230254337192,0.34538840781897306,0.8205746812745929,-0.4126074048690498,0.514125891495496,0.9802734032273293,0.9292805818840861,0.06646818248555064,-0.5728375730104744,-0.4688757471740246,0.183064891025424,0.8062419844791293,0.4910907647572458,-0.06668892223387957,0.445230380166322,-0.45444044983014464,0.7865144945681095,0.09041424095630646,0.026168964337557554,-0.7198421964421868,0.31287593487650156,0.5744836768135428,0.2694339803420007,-0.8028119835071266,0.17546861013397574,-0.7266421280801296,0.03038363764062524,0.870939105283469,0.23009963054209948,0.9055764181539416,0.757442464120686,0.5810513445176184,-0.9592501153238118,-0.4887867756187916,0.8666092706844211,0.3253795662894845,-0.5534393424168229,0.06701178988441825,0.5968609624542296,-0.8482850058935583,-0.5187727110460401,0.5962860397994518,-0.27511546202003956,0.9531925385817885,0.9613673444837332,-0.8049942175857723,-0.2275179591961205,-0.2624126342125237,0.23740720469504595,0.5960718365386128,-0.7030978794209659,-0.34798724856227636,0.03737480193376541,0.7000198466703296,0.4096193965524435,-0.2362419907003641,-0.3783455975353718,-0.6053894888609648,-0.9278627657331526,0.03831086726859212,-0.7169086430221796,0.29400666058063507,-0.4401657278649509,-0.42357476241886616,0.8878385699354112,0.3778676991350949,-0.42843453539535403,-0.1311253714375198,0.7365881460718811,-0.24745554849505424,-0.37977227149531245,0.8348132455721498,0.026193970814347267,-0.7367039294913411,0.3605449334718287,0.5080601116642356,0.48437537671998143,0.49306214414536953,-0.12813615566119552,0.6210099495947361,0.04751842934638262,0.290220626629889,0.2631702069193125,0.5692587154917419,-0.7882834821939468,0.5315295569598675,-0.24237161315977573,-0.7043654914014041,-0.561368708498776,0.3409932884387672,0.8504742081277072,0.2694222745485604,0.5313391480594873,-0.6117794173769653,-0.6994429277256131,0.20638595195487142,0.19438195042312145,-0.5710751847364008,0.15842481330037117,-0.345517304725945,-0.6534768757410347,-0.9987053382210433,0.1786973662674427,-0.5492027360014617,-0.2168106040917337,0.02726363856345415,0.04176283720880747,0.8158153141848743,0.26751886354759336,-0.15779638616368175,-0.8080524415709078,0.9545436007902026,0.2882894454523921,0.7332969410344958,0.29866543179377913,-0.24745418364182115,0.067341776099056,-0.9575614705681801,0.7331971246749163,0.2321501118130982,-0.8287080130539834,0.3408131329342723,-0.867200278211385,0.31401397148147225,-0.4319416983053088,0.29034428019076586,-0.5052247075363994,0.8361280988901854,-0.6211032029241323,-0.0895801349543035,0.3436171435751021,-0.7453241040930152,0.8712682011537254,0.3097702260129154,-0.35886890115216374,-0.4991339650005102,-0.296092601493001,-0.3174650063738227,0.9130633259192109,0.39358756598085165,-0.4700535386800766,0.5881189568899572,0.1196727748028934,0.6546081523410976,-0.6808473500423133,-0.03914425382390618,-0.3490621433593333,0.946868279017508,0.1340543502010405,0.6621143538504839,-0.9296864150092006,-0.02436396013945341,0.21644056774675846,0.9826884553767741,0.49222208093851805,0.6423084908165038,-0.616234767716378,0.024274881929159164,0.9807380228303373,0.24572489829733968,0.29863697197288275,0.7807674673385918,0.2976907454431057,-0.7002080464735627,-0.7871948131360114,-0.5705849262885749,-0.3902027476578951,0.3314027744345367,0.9444364020600915,0.4040722423233092,-0.3949247277341783,-0.8768506762571633,0.9792344365268946,0.3094652923755348,-0.8747131945565343,-0.37834679149091244,0.34816884249448776,-0.7484564301557839,0.923946026712656,0.19992697797715664,0.8955502472817898,-0.4196369778364897,0.2550474423915148,0.974846804048866,0.08523815171793103,-0.2773466375656426,-0.4357876558788121,0.6345458207651973,0.07837540004402399,-0.33764334628358483,0.6173146963119507,0.06311051174998283,-0.07435012655332685,0.5265328865498304,0.5167910763993859,-0.590038959402591,0.7194791594520211,0.1635692734271288,0.8813587799668312,-0.4473686465062201,0.05145877879112959,-0.7841594680212438,0.006907700560986996,0.8784740972332656,-0.9419838227331638,-0.6590150510892272,-0.7468813178129494,0.6384208295494318,-0.6306167342700064,0.8366460716351867,0.7285984251648188,0.8536159861832857,-0.28686404041945934,0.9396695927716792,0.836106498260051,-0.22568788658827543,0.3452358259819448,0.2914453772827983,-0.6705095828510821,0.9216666631400585,0.12846565758809447,0.9256895291619003,-0.11467843316495419,-0.6221309066750109,0.1239108107984066,-0.20398258138448,0.1668859370984137,0.13076624227687716,0.9446945847012103,-0.9816281935200095,0.18961783545091748,0.3297198647633195,0.7240594355389476,0.315016349311918,0.2033880460076034,-0.03379845665767789,-0.7366936942562461,0.3331382446922362,-0.6053758529014885,-0.5134335248731077,-0.344325833953917,0.7080966169014573,-0.8546704621985555,0.3380580390803516,0.0030715609900653362,-0.6594070591963828,-0.31556788366287947,0.46446329448372126,-0.8530245372094214,-0.2622161074541509,-0.940965240355581,0.1881104870699346,-0.13448934815824032,0.36819050647318363,0.0717916777357459,0.5048581468872726,-0.051924208644777536,0.6336723933927715,-0.01654974278062582,-0.9414155604317784,0.49449470127001405,-0.488333510234952,0.3919630232267082,-0.04614506708458066,0.5093216532841325,-0.9640232720412314,-0.22432683082297444,-0.1932322303764522,0.11130758421495557,-0.38155678706243634,-0.523538876324892,0.33552777394652367,0.8216289831325412,0.2034373451024294,-0.7390145529061556,0.7247590371407568,0.8782077468931675,-0.9279180667363107,0.782125489320606,0.8345306478440762,-0.8113880343735218,-0.0454842783510685,0.5458135111257434,0.9472808330319822,0.5450129802338779,-0.7264351043850183,-0.16992928320541978,0.4707836243323982,-0.19407203746959567,-0.6103538167662919,-0.0011658468283712864,0.2816711845807731,0.33171619940549135,-0.7070921803824604,-0.11523021571338177,0.3270887588150799,-0.6647789804264903,-0.32702592806890607,-0.14120869571343064,0.17881543189287186,-0.6225076615810394,-0.07205584784969687,0.30722427647560835,-0.0213921251706779,0.5871489918790758,-0.480060578789562,-0.5450445800088346,-0.1847098832949996,0.8026142851449549,-0.3304906622506678,-0.7353143342770636,-0.8998341197147965,0.8567426493391395,0.34404662111774087,-0.35368796018883586,-0.8509854478761554,0.03656541649252176,0.30179460160434246,0.9988220152445138,0.7551920670084655,0.5146027645096183,0.2313817529939115,0.4607210657559335,-0.07070202054455876,-0.9406397412531078,-0.5671798605471849,-0.409430761821568,-0.29594789911061525,0.4823107412084937,-0.7881626365706325,-0.9356620092876256,-0.5224381117150187,-0.9630614062771201,0.1807220596820116,-0.2708152625709772,-0.009045624174177647,0.2711618775501847,0.37037446442991495,0.863919333089143,0.31382866902276874,-0.06041590590029955,0.38699426129460335,-0.5264537404291332,0.10577207896858454,0.20306340977549553,0.5662676305510104,0.20520868292078376,-0.6546599697321653,0.5788408028893173,0.3255973495543003,-0.4016774380579591,-0.551786704454571,-0.9896547812968493,-0.6343243331648409,-0.7292893268167973,0.3686797060072422,-0.050493404269218445,0.43084882386028767,0.2101144869811833,-0.1250611636787653,-0.09737046016380191,-0.5173345757648349,-0.03532260237261653,-0.6164707732386887,-0.7786985011771321,0.28217857563868165,-0.3432808113284409,-0.0356938261538744,0.1481562638655305,-0.6898033367469907,-0.5276975319720805,0.37014692602679133,-0.9065993605181575,-0.8390423604287207,0.3431835016235709,0.4318429324775934,-0.6051041767932475,0.8575047617778182,0.007492248900234699,0.5037372093647718,0.9400623817928135,-0.28402845934033394,-0.7017042599618435,-0.2440364882349968,-0.7069480856880546,-0.7496940647251904,0.34002975281327963,0.8116817465052009,0.6620314572937787,-0.09341714484617114,0.7925883238203824,-0.6682672994211316,-0.8232936719432473,-0.03492458537220955,0.14291349099949002,0.21245052991434932,0.2847177744843066,-0.05183449713513255,-0.37065184442326427,-0.15522082848474383,-0.367618796415627,-0.9816052257083356,0.5081117358058691,-0.23312749061733484,0.1448050974868238,0.3310827175155282,0.05681041954085231,-0.14365326426923275,0.8473443691618741,-0.8397762556560338,-0.09105872362852097,0.6933465781621635,0.2499589822255075,-0.8881566529162228,0.2889512563124299,-0.7408831492066383,0.43858979642391205,0.1574756158515811,0.8832432418130338,-0.46235905727371573,0.7969810338690877,0.9681630912236869,-0.7327895108610392,0.7395364264957607,0.32420325465500355,0.745487573556602,-0.7443634429946542,-0.25593403121456504,0.47081570886075497,-0.2075137123465538,0.12543995073065162,0.36805747635662556,0.12557465862482786,0.8077169326134026,-0.9496734184212983,-0.026937926653772593,0.823306992650032,-0.3365826951339841,0.5384075245819986,0.5047805816866457,-0.291475482750684,0.7905961242504418,-0.781083564274013,-0.4870541621930897,0.1299809063784778,-0.5033984794281423,-0.9266135399229825,-0.9711275510489941,-0.722314000595361,-0.8522462886758149,0.5438413736410439,0.6167802289128304,0.014486623462289572,-0.862446092069149,0.9878867701627314,0.5431802882812917,-0.7347172577865422,-0.8230823427438736,0.4886935241520405,-0.40276987943798304,-0.5495022088289261,-0.20982859935611486,-0.47798586171120405,-0.98963463306427,-0.6068483232520521,-0.025068167131394148,0.3586896266788244,-0.528573305811733,-0.4813634636811912,-0.2584888143464923,-0.672293777577579,-0.33815781911835074,-0.25857733888551593,0.5600113091059029,0.8764027236029506,-0.023446439765393734,0.9187735542654991,-0.7187850149348378,0.3101795422844589,0.45066054025664926,-0.043268442153930664,0.02311356319114566,-0.8456675014458597,0.5223461613059044,0.5907933316193521,0.7875783825293183,0.7699565761722624,0.0025277305394411087,-0.2474154131487012,-0.6464013969525695,0.14184813853353262,-0.7564839948900044,-0.06471518939360976,-0.4306317623704672,-0.9667654032818973,0.9832015982829034,0.7456720410846174,0.1312277652323246,-0.252393348608166,0.9533647759817541,-0.19950365461409092,-0.347072247415781,0.6062068864703178,0.29365454940125346,0.40029011899605393,-0.6499541699886322,0.26039008516818285,-0.7781492345966399,0.9089133958332241,-0.4189126784913242,0.6677345903590322,-0.6726967385038733,0.9075197973288596,-0.0034010722301900387,0.38619299000129104,0.3766122399829328,0.5430049607530236,-0.22672040155157447,0.5619198279455304,0.15934240818023682,-0.18358252197504044,-0.8256282559596002,-0.6037468099966645,0.5822642021812499,0.993403447791934,-0.5007074670866132,-0.23295135144144297,-0.7120970436371863,-0.9481000769883394,0.47806674102321267,0.519354703836143,-0.6995867914520204,-0.9816944622434676,0.7113245096988976,-0.7059992421418428,0.774961035232991,-0.1602393933571875,-0.18846491305157542,0.9141275999136269,-0.4949040855281055,-0.011391645297408104,0.991364193148911,0.10169330798089504,0.9973294548690319,0.7811826933175325,-0.5607265871949494,0.186647888738662,0.23145723203197122,0.5190057270228863,0.5846723187714815,-0.9279292169958353,-0.1423204131424427,0.305949620436877,0.25147935887798667,-0.27295431261882186,0.24270316492766142,0.7232412751764059,-0.5530392783693969,0.4858003193512559,0.5036248480901122,-0.7956124162301421,-0.3019884480163455,-0.41215709736570716,-0.057198780588805676,-0.8056074497289956,-0.6546441330574453,-0.12268738821148872,0.2438307306729257,-0.8376812050119042,-0.9792048879899085,-0.791155562736094,-0.7982321144081652,0.12970440974459052,0.23558109812438488,-0.46351990243420005,-0.15782463597133756,-0.28348715230822563,0.3279238557443023,0.19338879687711596,-0.6598263448104262,0.4629569835960865,0.42454703198745847,0.9423538180999458,0.5822224370203912,0.905292022973299,-0.10932924598455429,-0.6332025448791683,0.8254816769622266,-0.2150137317366898,0.013781299814581871,-0.7350157634355128,0.40791016025468707,-0.7096438710577786,0.2675246833823621,-0.7587196864187717,0.4684360329993069,-0.7606109669432044,0.306631141807884,-0.4742557602003217,-0.4831601050682366,0.07669348968192935,0.9359801979735494,0.07816955726593733,0.3158614272251725,-0.6261902740225196,0.388944030739367,0.549457507673651,-0.8235942195169628,-0.7506755599752069,-0.2562140985392034,-0.520268983207643,0.5211819279938936,-0.7667284412309527,-0.5397022035904229,-0.18383963126689196,-0.7197048403322697,0.31225858721882105,-0.7938134497962892,0.4402264757081866,0.8823085594922304,-0.3528928542509675,0.5764659312553704,-0.04369716811925173,0.6939533618278801,0.19734631851315498,0.5828258749097586,0.24310834985226393,0.6298570688813925,-0.9440600289963186,-0.5604540887288749,-0.06311744451522827,0.8394637852907181,0.902820891700685,-0.13493676343932748,0.37054271157830954,0.950445560272783,0.125741979572922,-0.3925358825363219,0.17435142677277327,0.04978316929191351,-0.224084478802979,0.5014398512430489,0.5346116963773966,0.8220701636746526,-0.2190218004398048,0.5119731561280787,0.8141861981712282,0.2497270624153316,-0.14244840387254953,-0.8935807710513473,-0.07881747698411345,0.46856393199414015,0.5892676380462945,0.6035855817608535,-0.0016466272063553333,0.9997679954394698,-0.41406419267877936,0.7509365356527269,-0.22376030031591654,-0.20457424828782678,0.09321119543164968,-0.30585973942652345,-0.49184445803985,0.6666191215626895,0.1527639403939247,0.6094771940261126,-0.7886263015680015,0.4636718253605068,-0.5758561007678509,-0.09573510009795427,-0.46589936688542366,-0.10728150606155396,-0.2695517400279641,-0.7787090796045959,-0.44594073155894876,-0.8164056269451976,-0.8583562532439828,0.4748040148988366,-0.23363406350836158,-0.19104476878419518,0.4818283813074231,0.5948573322966695,-0.8388062808662653,0.19911200366914272,0.022633414715528488,-0.7109334701672196,0.6488070064224303,0.35690159536898136,-0.9261548477225006,-0.857736739795655,0.2985792947001755,0.3356385426595807,0.7878568139858544,0.1783411866053939,0.26525690546259284,0.003348591737449169,-0.3899482893757522,-0.7374108145013452,0.8319886345416307,0.19878151826560497,0.39936955412849784,-0.5828929184935987,-0.6187188411131501,-0.4776608981192112,0.22749157482758164,0.3106258134357631,-0.4167573885060847,-0.37624620040878654,-0.5966841229237616,-0.8149931645020843,0.8953926819376647,0.5645686318166554,0.4640060677193105,0.022159667685627937,0.4161132979206741,-0.2438144227489829,0.6635155663825572,-0.05232982151210308,0.7558883903548121,-0.7444350905716419,-0.9629562483169138,0.461476338095963,-0.9375870912335813,-0.3173882341943681,0.8958672471344471,0.9936803667806089,-0.9888858562335372,0.3899958129040897,0.4422580464743078,0.7404129905626178,-0.45769463013857603,0.25125854508951306,-0.3610784146003425,0.4416355872526765,-0.38170496467500925,-0.9939119652844965,-0.166724462993443,-0.9003944960422814,0.02363951876759529,0.25513682467862964,0.8034224440343678,0.8704544501379132,-0.8256622492335737,0.3146999878808856,-0.6473324941471219,0.30724380630999804,-0.7332013379782438,-0.46834989357739687,0.5380313103087246,-0.4531802595593035,-0.6940318872220814,-0.6461295955814421,0.7741437386721373,-0.24728744523599744,-0.609927695710212,-0.5967899090610445,0.037888665683567524,0.4519993350841105,0.2825114903971553,-0.8512624530121684,-0.9934699055738747,0.5079217357560992,-0.850993325933814,-0.11143611557781696,0.618523842189461,0.10593525832518935,0.8086528335697949,0.5747634409926832,0.8645618692971766,-0.853699354454875,0.9086461490951478,0.8210006398148835,-0.08391146315261722,0.5183725305832922,-0.2577261943370104,0.1982299005612731,0.6202545291744173,0.7874553659930825,0.9688663873821497,-0.7561493702232838,-0.8972794502042234,0.8072197516448796,0.08641520980745554,0.04968788335099816,0.4074488412588835,-0.8745896043255925,0.26572644151747227,0.07797267893329263,0.36247125919908285,-0.11151871085166931,-0.7841290859505534,-0.10214254213497043,0.025202712509781122,0.5976392342709005,0.5319322468712926,0.2929160981439054,-0.849337647203356,0.9234441379085183,0.09070656914263964,-0.7584891659207642,-0.6574468179605901,-0.592458545230329,-0.5829645008780062,-0.3351393202319741,0.2579644797369838,-0.14322407776489854,-0.08013437641784549,0.12775500351563096,0.25385966897010803,-0.4938041870482266,0.06786009250208735,-0.24312944244593382,-0.17509446339681745,-0.17921646079048514,-0.05049778753891587,-0.5696345609612763,-0.3788013020530343,0.4242386952973902,0.9725983766838908,0.7777100652456284,-0.40280406549572945,0.4745269799605012,-0.516713528893888,-0.9996001604013145,-0.05678099440410733,0.5072780670598149,-0.1358335013501346,0.14957163017243147,-0.6942922216840088,0.2644885629415512,0.9200921542942524,-0.9917144598439336,-0.3563299993984401,-0.4561851704493165,0.8820532229728997,0.0532930470071733,-0.13853007135912776,0.6959595014341176,0.5374337858520448,0.7716025467962027,0.48241180973127484,-0.9029396455734968,-0.024076898116618395,0.19152987701818347,-0.32532352255657315,-0.8499012915417552,0.1367698833346367,0.2158043161034584,0.9049832187592983,-0.4447923959232867,0.8606157330796123,0.14463243074715137,0.0680227056145668,-0.9554431210272014,-0.35254883440211415,0.4609136125072837,-0.31891469238325953,-0.7421346455812454,-0.45446073031052947,-0.40181741351261735,-0.7983066993765533,0.939946070779115,0.13317717565223575,0.17866560211405158,-0.5649206535890698,0.6073348233476281,-0.5528993192128837,-0.045833304058760405,-0.7397994077764452,0.7135998415760696,-0.855958042666316,-0.6936869630590081,-0.8632435980252922,0.34483143547549844,-0.08886973233893514,-0.9316245098598301,-0.9367028595879674,-0.8336438499391079,0.947737280279398,0.8688873988576233,-0.3104396858252585,0.06307161739096045,0.242991391569376,0.7510395813733339,0.36166392732411623,0.5078980564139783,0.06128107663244009,0.12078220257535577,0.1115734027698636,0.40424927417188883,0.8963417513296008,-0.25112123787403107,-0.21216654172167182,-0.7077907072380185,-0.9261577669531107,-0.06409848341718316,-0.5191566064022481,0.38974071480333805,0.3987610382027924,0.4229788323864341,-0.10005944687873125,0.823587788734585,-0.3136795284226537,0.4573674527928233,-0.7309273118153214,0.7068477510474622,-0.587776514235884,0.7067484287545085,-0.2509744120761752,-0.49458047933876514,-0.8611798412166536,0.2864283798262477,0.3021388896740973,0.7977228160016239,0.9927779799327254,-0.6106616384349763,0.823674030136317,-0.1730831665918231,-0.8668811987154186,-0.20465904287993908,-0.7619303418323398,0.5924320756457746,0.5696965637616813,0.8852065354585648,-0.9658434283919632,-0.6154693923890591,0.11306329676881433,0.7677096356637776,-0.7188071920536458,0.38868255633860826,0.10927870217710733,0.9944151695817709,0.6550935651175678,0.504466091748327,0.30433847196400166,0.9997413195669651,-0.7917589591816068,-0.382482492364943,0.5400151060894132,-0.6992854275740683,-0.6362514575012028,-0.9427690906450152,0.9974507126025856,0.121662856079638,-0.47986075980588794,0.6819918933324516,0.09850810933858156,-0.23312015132978559,-0.2470130301080644,0.6835597860626876,-0.8742813216522336,-0.4050244721584022,0.4864345998503268,-0.6065405285917222,0.6230518715456128,-0.5997251798398793,-0.5367078157141805,0.40696986485272646,-0.10593707021325827,-0.5401593656279147,-0.6047833282500505,0.07468334911391139,0.19161373004317284,0.8887236276641488,0.911701827775687,0.07061935495585203,-0.05424085771664977,0.4171551992185414,-0.32864313339814544,0.27336435252800584,0.37068605748936534,0.10593497985973954,0.8297939198091626,-0.030322419479489326,-0.2542517031542957,0.605164882261306,-0.2506339102983475,-0.30654279328882694,0.9271525456570089,-0.8047570395283401,-0.39980876026675105,-0.2788234315812588,0.4321397705934942,0.3361571691930294,-0.3698824723251164,-0.3468800997361541,-0.6464174911379814,-0.4543644809164107,0.23187137441709638,-0.05920614395290613,0.26081758830696344,-0.12535462388768792,-0.903219984844327,-0.762257463298738,0.7100102524273098,0.024953299667686224,0.7077941526658833,0.512147955596447,0.9138781167566776,-0.7627593837678432,0.6577314571477473,0.02416794141754508,-0.9324496807530522,-0.3338915123604238,0.1648488910868764,-0.7503203465603292,0.3729254608042538,0.9599570692516863,0.8585289954207838,0.6593751139007509,0.8945538541302085,0.26735349791124463,-0.787968487944454,0.558922525960952,-0.9378195242024958,-0.4563688198104501,0.7689211093820632,0.5986085110343993,-0.8780715777538717,-0.8390557365491986,0.03385980287566781,0.05102138128131628,-0.17995286686345935,-0.8416732279583812,-0.5456635588780046,-0.5704386672005057,0.5281661506742239,0.02693893015384674,0.4601856954395771,-0.4367915424518287,0.2679890301078558,0.8410664177499712,-0.5281296907924116,0.5714733949862421,0.17436388367787004,-0.4890801403671503,0.9256344987079501,-0.3097542426548898,0.9198018233291805,-0.2798262555152178,0.7222146703861654,-0.38839768106117845,0.7671929597854614,-0.749366735573858,-0.32776547269895673,-0.37973786471411586,-0.8350695506669581,0.28298751544207335,-0.0337436287663877,0.3378420886583626,-0.532375599257648,0.9089606055058539,-0.03261100361123681,0.9732233691029251,0.11533173825591803,-0.711650122422725,0.14835628820583224,0.4764245324768126,-0.002604974899441004,0.21021169144660234,0.9251700411550701,0.36225360771641135,-0.31480785412713885,-0.23211665451526642,0.7258135946467519,0.37610436603426933,0.8462800648994744,-0.6732255439274013,-0.571139644831419,-0.21046739956364036,-0.5461425143294036,-0.4607449541799724,0.5778665486723185,-0.30721622379496694,0.522998227737844,-0.872209588997066,-0.5207526660524309,0.5272511742077768,-0.30669786408543587,0.2848598840646446,-0.18460553046315908,-0.8251693327911198,-0.5309844948351383,-0.8724347376264632,-0.1012450116686523,-0.6952080819755793,0.7614298472180963,-0.5822052112780511,-0.9844175060279667,-0.5767306052148342,0.7374436487443745,-0.3525398401543498,0.47711342899128795,0.15618877299129963,-0.17287730518728495,-0.9975005267187953,-0.10849578585475683,-0.01662113517522812,0.009101592004299164,-0.5553528508171439,-0.3883458082564175,0.960192667786032,-0.6004205239005387,0.8544129617512226,-0.45300511131063104,-0.8613422974012792,-0.21074817143380642,0.915289135184139,-0.6804305613040924,-0.27294486900791526,0.5455518872477114,-0.1424014000222087,0.9167143790982664,-0.9692553728818893,-0.2651662100106478,0.8429150860756636,0.37907862942665815,0.40396976098418236,0.19564325036481023,-0.22744706692174077,0.6835665805265307,0.30116201331838965,-0.5803629863075912,0.0723882089368999,-0.2695188317447901,-0.8895325493067503,0.499090310651809,0.4110831948928535,-0.4172612586989999,0.057107322383672,0.7189301741309464,-0.37641257513314486,-0.15892896009609103,0.03213351918384433,-0.8560922150500119,-0.31341695226728916,-0.4263132647611201,-0.8570466167293489,-0.9873858927749097,0.1109880618751049,0.7946382346563041,0.8105436526238918,-0.6061019371263683,0.7904042494483292,0.26337086223065853,-0.10364960273727775,-0.3960717460140586,-0.301738774869591,-0.24084522714838386,0.976862404961139,0.3809047192335129,-0.2878200267441571,0.755881569813937,0.14423644542694092,0.7268792702816427,0.9732574224472046,-0.04020842770114541,0.8424004912376404,0.3925499184988439,-0.4230388137511909,-0.10222085239365697,-0.21450079418718815,-0.4291334799490869,-0.21016947319731116,0.08970699785277247,0.5162888607010245,-0.9509412487968802,0.23630294855684042,-0.845080928876996,0.7124047540128231,-0.2486902642995119,0.8017989369109273,0.3079176661558449,-0.9605629718862474,-0.28168148919939995,-0.6198853091336787,0.9041614588350058,-0.180150858592242,-0.05518655851483345,0.7690758821554482,0.28066590474918485,-0.6248610569164157,0.35022521764039993,-0.3929894110187888,-0.20394983561709523,-0.6230118726380169,0.35163297690451145,-0.21889195777475834,0.3346413210965693,-0.5755585473962128,-0.10181268956512213,-0.09057871764525771,-0.7472348371520638,0.9376945369876921,-0.7279604664072394,0.5903997356072068,-0.06090136244893074,0.1960650230757892,0.08781120972707868,0.16660589911043644,-0.9528358820825815,-0.8814378529787064,-0.2624403275549412,0.13647461403161287,-0.5970536293461919,-0.9274652996100485,-0.10602249950170517,0.020043110940605402,-0.3147029411047697,0.8017728379927576,0.7761528664268553,0.4882361311465502,0.1338827721774578,-0.19890083791688085,0.5327926753088832,-0.12481261929497123,-0.4969627633690834,0.7087779617868364,-0.9532717070542276,0.532445180695504,-0.8233261830173433,-0.14689469011500478,0.15116085670888424,0.8659706776961684,-0.14843629952520132,-0.10968029871582985,0.6398074845783412,-0.2748476262204349,0.8314678124152124,0.7956745121628046,-0.46439838083460927,-0.10924479411914945,-0.4967873985879123,-0.29502847976982594,0.7613808186724782,-0.696207026951015,-0.07722489256411791,0.19204580830410123,-0.6339766997843981,-0.2600088403560221,-0.5587933608330786,0.6037956727668643,0.0620638164691627,0.9707295396365225,-0.3363352515734732,0.7632737797684968,-0.9341452913358808,0.7496424247510731,0.11540161538869143,0.09753162646666169,-0.5651353765279055,-0.5797036602161825,0.6872277408838272,-0.15722338622435927,0.6265673730522394,-0.20844552107155323,-0.38973468355834484,-0.5144408852793276,0.02014997834339738,-0.7550683678127825,-0.6564488960430026,0.5264138886705041,0.529797235969454,-0.45147851575165987,0.9718929687514901,-0.5831640777178109,0.13021437544375658,0.6056352090090513,-0.340129348449409,-0.3739364524371922,-0.860186277423054,0.2384721478447318,0.5814269175752997,-0.5134758921340108,-0.4863586239516735,-0.8252576049417257,-0.7212985591031611,0.5239801253192127,0.04469111002981663,0.020905605051666498,-0.7310242014937103,-0.7712635272182524,-0.08568701008334756,0.5041881892830133,-0.9940124582499266,-0.027924418449401855,0.2633827105164528,-0.12183994287624955,0.7076867548748851,-0.6273356438614428,0.23318086517974734,0.6771990940906107,-0.7436036309227347,0.022598755545914173,0.12380756717175245,-0.3613998261280358,-0.6265544882044196,0.7117416355758905,-0.6160421795211732,-0.9936922551132739,0.5345551134087145,0.7415852672420442,0.7370167821645737,-0.693882342427969,0.09675713395699859,-0.505744066555053,0.4133626720868051,0.8993008495308459,-0.4357565310783684,0.4750263951718807,-0.8569090501405299,-0.8693112055771053,0.2776350863277912,0.3383095692843199,-0.21186062460765243,0.5853052781894803,-0.8071833229623735,-0.5351537214592099,0.7190904738381505,-0.4102669828571379,-0.4618018604815006,0.40218617441132665,-0.6975380075164139,-0.4345902884379029,-0.3295590770430863,-0.7105921977199614,-0.9683879278600216,-0.3646575049497187,0.25654829991981387,-0.16166327614337206,0.2872660313732922,0.7169583779759705,0.07322685467079282,-0.5767943682149053,-0.5323159862309694,0.625103650148958,-0.2679509427398443,0.9123172708787024,0.13198252255097032,-0.6426798850297928,-0.9924585707485676,-0.22094691870734096,-0.7705263830721378,-0.4397889240644872,0.4585662744939327,-0.8935706154443324,0.37948314333334565,0.3127062488347292,-0.06030883127823472,-0.17373071843758225,-0.4578041327185929,0.40165408980101347,-0.11640852969139814,-0.41964171128347516,-0.7740863803774118,-0.509066678583622,0.29598466912284493,0.6815440659411252,-0.17090350529178977,0.13886506669223309,-0.3413363811559975,0.00567718967795372,0.625702831428498,-0.10021253256127238,0.5071418778970838,0.5904336660169065,-0.70287940884009,0.42387110693380237,0.12481479998677969,-0.9689783309586346,0.6720184674486518,0.4221946895122528,-0.18653303012251854,0.0817662924528122,0.569941139779985,-0.7068658960051835,-0.14059192268177867,0.19133769813925028,0.3733238442800939,0.10775096667930484,0.2029838841408491,0.29124583676457405,0.6958830375224352,-0.6124697448685765,-0.8705528676509857,-0.009192778263241053,-0.4149549202993512,0.6133782924152911,-0.11154287494719028,-0.7348973359912634,-0.37147064646705985,0.6827282449230552,-0.41598421474918723,0.3817248307168484,0.6285716160200536,-0.3978190370835364,-0.3044093041680753,0.2803422398865223,-0.5293028685264289,-0.961721024941653,-0.477415403816849,0.6373240584507585,0.12113192770630121,0.3556467038579285,-0.15775639843195677,0.3914271122775972,0.7870125286281109,0.4449147335253656,-0.675096036400646,-0.6631702720187604,0.47029422177001834,0.791400293353945,-0.10455971118062735,-0.49586540181189775,0.20704910345375538,0.9325291845016181,-0.7660617432557046,0.7823947952128947,-0.7471003239043057,0.9830674440599978,0.5993279945105314,-0.8178218374960124,0.8935284647159278,0.044891655910760164,0.24999185930937529,-0.3105994532816112,-0.4750661440193653,0.21363274799659848,-0.509165639989078,0.8177166916429996,0.8155017495155334,-0.10420960607007146,-0.5282618142664433,-0.7921310761012137,0.3979837172664702,-0.987013659439981,-0.813099117949605,-0.3907442186027765,-0.20672939298674464,-0.4797655399888754,-0.5195422749966383,-0.5194509387947619,-0.28672178322449327,0.7660763934254646,-0.9078968591056764,0.3319297283887863,0.587796235922724,-0.8109127986244857,-0.9306250177323818,0.3954083528369665,-0.4251069971360266,0.06735541531816125,0.6495595229789615,-0.8856555377133191,0.686570905148983,-0.5381779139861465,0.9261303129605949,0.7479790523648262,-0.7476864419877529,-0.2630230081267655,-0.7522652293555439,0.9978245855309069,0.9336442006751895,0.5745116416364908,0.9765897179022431,0.2715647607110441,0.4958197879604995,-0.15936092333868146,0.5592534556053579,-0.8260693843476474,-0.4960283553227782,0.0012844004668295383,0.21141665801405907,-0.8256989517249167,-0.5125159882009029,-0.879285083618015,0.22850590012967587,-0.980058491230011,0.6547823790460825,0.37385119404643774,0.2623838991858065,0.048730578273534775,-0.35488561214879155,-0.3060637307353318,0.8632802097126842,0.30313609214499593,-0.07193365413695574,0.050037425477057695,0.669992876239121,-0.7093418138101697,-0.1564971385523677,-0.2885839478112757,0.3824634701013565,-0.5104229636490345,0.5976153137162328,-0.4292778284288943,0.08980084070935845,0.8510918309912086,-0.9818812771700323,0.34804688254371285,-0.8894061842001975,-0.9970416892319918,-0.13281747978180647,0.5130015844479203,0.47621182072907686,0.11273088911548257,0.5329176383093,-0.8414541971869767,0.40157320396974683,-0.41217391891404986,0.3050449793227017,0.0743962787091732,0.5485107102431357,0.607351791113615,-0.01589653640985489,-0.6945401858538389,0.6734794648364186,0.38108632247895,-0.1522040506824851,-0.49581987550482154,-0.23316454235464334,0.9712112871930003,-0.9260339275933802,-0.45663629192858934,-0.7024913220666349,-0.03990887850522995,0.5785852372646332,-0.2060085474513471,0.13080316176638007,-0.8208525064401329,0.6259183622896671,-0.8279564930126071,-0.7413340341299772,0.6926035825163126,-0.9540795348584652,-0.6413327865302563,-0.8908868096768856,-0.47464795829728246,0.32531705079600215,-0.13532488094642758,-0.10819351300597191,0.22845712071284652,0.013839103281497955,0.40851608011871576,0.9812702420167625,-0.3490093690343201,0.11779383011162281,-0.18008774472400546,0.6439130455255508,-0.515262954402715,0.30731968907639384,-0.3681368655525148,-0.5408499334007502,0.7681920048780739,-0.5192711092531681,-0.40329563012346625,-0.1149068851955235,-0.9910497553646564,0.5073185311630368,-0.32012841012328863,-0.9030601582489908,0.07837124355137348,-0.4659635704010725,0.8457355233840644,-0.07963523268699646,-0.560924933757633,0.17485488206148148,-0.9473203923553228,0.3055518213659525,0.44576665153726935,-0.656936236191541,0.9285908713936806,0.6598793468438089,-0.30680389842018485,0.2064932333305478,0.22754241852089763,-0.14195448346436024,0.8893583277240396,0.8992562871426344,-0.06997012393549085,-0.362968900706619,0.9073647256009281,-0.022593266796320677,-0.512451212387532,0.8803033335134387,-0.6338722947984934,-0.06179662514477968,-0.6668682456947863,0.9973083911463618,-0.9213882167823613,-0.3299130122177303,0.0820337813347578,-0.05473415646702051,-0.013606072403490543,0.6562141152098775,-0.05795585364103317,0.33966133976355195,-0.7108710128813982,-0.29486211854964495,-0.8439300181344151,0.5101399174891412,-0.6006155530922115,0.5731361410580575,-0.6248194109648466,0.5312197334133089,-0.9709739293903112,0.32596524246037006,-0.5721352002583444,-0.5709871393628418,-0.44920120714232326,-0.8914824775420129,0.13018754310905933,-0.042574447114020586,0.824291025288403,0.6465159929357469,0.45580260548740625,0.2174704084172845,0.9460962261073291,0.9324085749685764,0.9742528866045177,0.006323881447315216,0.09440820384770632,-0.3757808040827513,-0.148613799829036,0.7238511722534895,-0.34032410522922873,-0.4845421677455306,-0.8403549594804645,-0.4972935342229903,-0.18378527741879225,0.8142393929883838,-0.1853096317499876,-0.5680273529142141,-0.7585167731158435,0.29200752498582006,0.6271348600275815,-0.4957480705343187,-0.41612242674455047,-0.5468833977356553,-0.6839011213742197,-0.704741258174181,0.6025557862594724,-0.7484008450992405,0.5707028722390532,0.7771230242215097,0.6486095190048218,0.5784187181852758,-0.3527329871430993,-0.13305017817765474,-0.5388105441816151,0.17573041701689363,0.40033411234617233,-0.04423299478366971,-0.18268354702740908,0.9614649415016174,0.5832347245886922,0.6457391576841474,0.1609377241693437,-0.7602134328335524,0.47840159898623824,-0.6662014364264905,0.993411632720381,-0.5777111011557281,0.635057779494673,0.3112788451835513,-0.2754890266805887,-0.6639388049952686,0.41700829984620214,0.7299922229722142,-0.497253593057394,0.8341489513404667,0.6929724453948438,-0.2825563568621874,-0.32740587601438165,0.7632435909472406,0.5537064759992063,-0.04706723615527153,-0.659214548766613,-0.13200093479827046,-0.14353666454553604,-0.4954770617187023,-0.2910667099058628,0.2629413870163262,0.7854048619046807,0.848934933077544,0.5868552848696709,0.22234428487718105,0.7331522111780941,-0.04203945165500045,0.759151834063232,-0.42022434202954173,0.805407568346709,-0.40805322816595435,0.5872493693605065,0.2427375097759068,0.13258585706353188,0.08945056423544884,-0.26834999583661556,0.20393645903095603,-0.7245568688958883,-0.625501083675772,0.17261891812086105,0.0711290123872459,-0.7016267431899905,-0.22882780246436596,0.8901749551296234,-0.9444739460013807,0.31597011908888817,0.32153246412053704,-0.7724331212230027,-0.5131817990913987,-0.8318046666681767,-0.6760735516436398,-0.9018575889058411,0.7812294028699398,0.8381518400274217,0.7725846981629729,-0.3404623903334141,-0.26183727104216814,-0.3369775586761534,-0.590429290663451,-0.8499655858613551,0.9685370000079274,-0.07163841975852847,0.4806073736399412,0.6009147618897259,-0.05801790300756693,0.9432575535029173,0.6884837169200182,0.7556974091567099,-0.26262994017452,-0.7478995081037283,-0.6245538401417434,-0.30031831096857786,0.5925344936549664,0.6244586184620857,0.3326269434764981,-0.7664061901159585,-0.06860043574124575,-0.3236235328949988,0.5081290700472891,-0.19281789986416698,-0.49389116698876023,0.6434654886834323,0.7615771861746907,0.153771148994565,-0.6633413531817496,0.015128739643841982,-0.4814251563511789,0.6604507728479803,-0.4424990899860859,0.8847959437407553,0.5517080500721931,-0.11015842063352466,0.6622367068193853,-0.607013744302094,-0.7080400846898556,-0.3429818251170218,0.47844249475747347,-0.5942052360624075,0.9748910735361278,0.3820312567986548,-0.9303023484535515,-0.7698742705397308,-0.6599874082021415,0.7577895713038743,0.02492108754813671,-0.5502272360026836,-0.9717274336144328,0.6439322521910071,0.6420858181081712,-0.869393793400377,0.012372334487736225,0.814792463555932,-0.05067547922953963,-0.797094710636884,0.9225686709396541,-0.7909957063384354,-0.7471153726801276,0.3474623099900782,-0.8026427258737385,-0.8240923602133989,0.01629805937409401,-0.2594064115546644,-0.15827865013852715,0.15118512092158198,-0.08662123698741198,0.0495126536116004,-0.48999135475605726,-0.3701354218646884,0.725736387539655,-0.6071456321515143,-0.7716216780245304,-0.6811991492286325,-0.24062301171943545,0.4818642931059003,0.6389790619723499,0.8944959407672286,0.7580696614459157,-0.7912195804528892,0.1917531113140285,-0.9101749500259757,-0.7987882168963552,0.6276169428601861,-0.9919622130692005,0.06203172914683819,0.8593029915355146,0.5281459260731936,-0.2888039145618677,-0.02390896063297987,0.3496211366727948,-0.8266037371940911,-0.7781656561419368,0.7768957321532071,-0.04776863567531109,0.672891438473016,-0.35511635430157185,0.5919005391187966,-0.767925095744431,0.1788582494482398,-0.30789048317819834,-0.27958681993186474,-0.535857429727912,0.05088100675493479,0.7064133672975004,0.26512620644643903,-0.6632066695019603,-0.9583000475540757,0.8925710441544652,0.28217008197680116,-0.6617363323457539,-0.9409083887003362,0.3752016578800976,-0.8194431755691767,-0.11675355164334178,-0.6723186885938048,0.38775515696033835,0.5766560020856559,-0.35688327392563224,-0.11792807187885046,-0.593308262526989,-0.9053355073556304,-0.596235896460712,-0.9499406996183097,0.24127597780898213,-0.648354918230325,0.8552050017751753,-0.5297399521805346,0.9697015178389847,0.739538402762264,-0.5386834903620183,0.9697073143906891,-0.8465385339222848,0.8166835317388177,0.3876458522863686,-0.24548767320811749,0.8573421882465482,-0.44070556154474616,-0.6521890559233725,-0.6346738170832396,-0.7947752741165459,-0.7460661553777754,-0.22249123500660062,0.299950719345361,-0.8133213864639401,-0.3818233315832913,0.3403649888932705,0.025943939108401537,-0.6495523974299431,-0.2581184674054384,-0.013517407234758139,-0.5193903720937669,0.8566758269444108,0.7562907305546105,-0.7882487052120268,-0.14726564893499017,0.5994070270098746,-0.6153098633512855,0.17701070196926594,-0.5977374948561192,0.5459833680652082,-0.673075676895678,0.1962710851803422,-0.5371444188058376,0.5520372199825943,-0.8934039757587016,-0.062474776059389114,-0.6999102691188455,0.8447117367759347,-0.5640304782427847,-0.031228446401655674,0.17840798990800977,-0.7010451885871589,-0.40526305278763175,-0.7678986820392311,-0.17071308614686131,-0.4217463559471071,-0.324320568703115,-0.8955127173103392,0.4438289529643953,-0.6647745841182768,-0.14868611004203558,0.9281598534435034,0.45287064788863063,-0.6151025481522083,-0.018998848740011454,0.5917119579389691,0.31464138301089406,-0.3031931081786752,0.8021018914878368,-0.2770935487933457,0.16311793960630894,0.023688415065407753,-0.9375184951350093,-0.41591583704575896,-0.6722117969766259,-0.36954218428581953,-0.013393230736255646,0.5786425746046007,-0.6068190210498869,0.34891222929582,0.37061724439263344,-0.5875583630986512,0.25787724927067757,0.07152090221643448,-0.9339408646337688,0.4341851123608649,-0.4318739343434572,0.8050515963695943,0.26197109604254365,0.9815150243230164,-0.9590658191591501,-0.494265625718981,0.6019634767435491,-0.03559686942026019,0.1151088890619576,0.03460939135402441,0.1410940564237535,0.7745847776532173,-0.8370084064081311,0.6176328575238585,0.9528939980082214,0.2528570890426636,0.23196471109986305,-0.5258718500845134,-0.8443960249423981,-0.8871506387367845,-0.8460971317254007,0.29152407543733716,0.7944631720893085,-0.8026323737576604,0.8120675608515739,0.5326152285560966,0.6929141506552696,0.10954779433086514,-0.6986623168922961,0.3868790278211236,0.29524218617007136,0.25953671149909496,0.30056410748511553,0.4384905160404742,0.24932956648990512,0.0631809770129621,0.8570300424471498,0.9915073672309518,0.3236429118551314,-0.3620438636280596,-0.026543724816292524,0.3127510640770197,-0.9042125074192882,0.056883118115365505,-0.9710793597623706,-0.7170430468395352,0.6101082996465266,-0.27605635905638337,-0.6259434861131012,0.7971752346493304,0.04976141871884465,-0.9920653919689357,0.9903097213245928,0.6081123501062393,0.2700491161085665,0.7622871058993042,0.8865135610103607,-0.9742838512174785,0.9012993252836168,-0.5486597470007837,0.5447491672821343,0.5575131052173674,-0.6904696691781282,0.08032195828855038,-0.7790815043263137,-0.7434548842720687,0.785693300422281,0.4674333892762661,-0.2845183666795492,0.05497619556263089,0.6443248307332397,0.052578812930732965,0.41700871055945754,-0.01350962370634079,0.3852360434830189,0.9496564734727144,-0.828362719155848,0.36435456573963165,-0.7808566084131598,-0.6251010345295072,-0.2684739734977484,0.32002325262874365,-0.4614193942397833,-0.884212932549417,0.7834144933149219,0.842710861004889,0.9314932660199702,0.18461846793070436,0.17190575320273638,-0.8155382755212486,-0.2678746385499835,0.5670071258209646,0.8149789632298052,0.1392871499992907,0.886281009297818,0.3433062871918082,0.11867249757051468,0.7713321000337601,-0.5852590352296829,0.6397007894702256,0.1013364982791245,-0.5610062256455421,-0.7797337337397039,-0.00963791087269783,-0.3684060489758849,-0.8423525355756283,0.7042260174639523,-0.6298677488230169,0.27005932573229074,0.6640353398397565,0.272587229963392,0.060154546052217484,0.41959107713773847,0.8268422074615955,-0.6229267525486648,0.6008129729889333,0.8622481687925756,-0.21572542190551758,0.4126970279030502,0.2204632582142949,-0.16602515149861574,-0.18508737115189433,0.734259226359427,0.26391849014908075,0.7352052447386086,-0.50523243797943,0.016373871825635433,-0.3864755257964134,-0.5256227771751583,0.262391644064337,-0.588156804908067,0.4282580432482064,0.13052429864183068,-0.21453322609886527,-0.6037889770232141,0.6781629151664674,0.05414957273751497,-0.9348063976503909,0.014791532885283232,0.9542505796998739,0.38192223384976387,0.6172593948431313,-0.5177974617108703,0.40664055943489075,0.6943015311844647,0.5248746885918081,0.6758917728438973,-0.19855607813224196,0.7007263689301908,-0.5021982467733324,-0.7337464964948595,0.12673901207745075,-0.2516574924811721,-0.648877561558038,0.5128585444763303,0.1982525121420622,-0.629593632183969,-0.8214875245466828,0.7230659946799278,0.1088678864762187,0.7675970867276192,0.8279735585674644,0.24355662427842617,-0.10903957346454263,-0.9627532986924052,-0.2679231069050729,-0.8655753727070987,-0.8820062414743006,0.25642580399289727,0.8781391526572406,0.6741490284912288,0.7112753316760063,-0.7800643732771277,0.45621353946626186,0.9651751327328384,0.31373328249901533,-0.6837250092066824,0.8518210537731647,-0.27641967171803117,-0.8592744893394411,0.6161434068344533,-0.7129663876257837,-0.7392009659670293,0.7843091883696616,0.4841727139428258,-0.18482646811753511,0.2486532349139452,-0.6753953867591918,0.30944447917863727,0.5088818776421249,0.6395748676732183,0.5347004677169025,0.9312364417128265,-0.9856696887873113,-0.11911914823576808,-0.5917372032999992,-0.033375633880496025,-0.3652885961346328,0.6929795695468783,0.5722014177590609,0.6375747765414417,0.40207175770774484,-0.337060933932662,-0.49848816730082035,-0.034172091633081436,0.25207311008125544,0.9021271746605635,-0.244673368986696,0.9446495939046144,0.2603265126235783,0.4599281041882932,-0.8626353782601655,0.015101343393325806,-0.8204230424016714,-0.9031401611864567,-0.40240968065336347,0.3756806757301092,0.8910957667976618,-0.3218323243781924,0.09940895717591047,0.9868967276997864,0.9737375867553055,-0.5074829310178757,0.20209307270124555,0.21273528272286057,0.7606974551454186,0.11093289032578468,0.8133480753749609,-0.21573010738939047,-0.25131710711866617,-0.45374716399237514,-0.7672282503917813,-0.14490119041875005,-0.04341064300388098,-0.6350376927293837,-0.680273873731494,-0.4589894157834351,-0.584038230124861,-0.32164110615849495,0.8567760870791972,-0.726458138320595,0.24908210057765245,0.351643078494817,0.5107051306404173,0.9847009503282607,0.00951515231281519,0.10400047479197383,-0.3915443723089993,0.7099451036192477,0.22150506917387247,0.5853232778608799,0.8628829987719655,0.4007679303176701,-0.4646142437122762,-0.2747706538066268,0.10514341201633215,-0.8229720978997648,0.4391099764034152,-0.3006139644421637,0.48662152932956815,-0.6653997716493905,-0.07664460921660066,0.7725575156509876,0.2228616401553154,0.9803756335750222,-0.9597651087678969,0.6169068510644138,-0.5825983537361026,-0.7886879718862474,0.40732123190537095,0.9281549770385027,-0.6917735375463963,0.8079523593187332,-0.6483569638803601,0.8835556712001562,-0.2311588292941451,-0.3037389116361737,0.8339251051656902,-0.13980069383978844,-0.8855920392088592,0.6957984026521444,0.8943509953096509,0.5114527018740773,0.6765761063434184,0.9018925605341792,0.2897027959115803,0.684844137635082,0.9334530751220882,-0.7623752374202013,0.2803196017630398,-0.4071955750696361,-0.8502416796982288,-0.5061936290003359,-0.5118376673199236,-0.692898575682193,0.5885601271875203,0.1401670379564166,-0.6062214015983045,-0.48460747627541423,0.38251791102811694,0.004495205357670784,-0.7495046877302229,-0.5567790581844747,0.5516044874675572,0.23186327470466495,0.5748355765827,0.24980311235412955,-0.9895314597524703,-0.5722020659595728,-0.5076125292107463,-0.2614892623387277,0.7421962064690888,-0.30343041149899364,0.5211288728751242,0.6180930221453309,0.8651054035872221,0.6249507521279156,-0.8463993179611862,0.2705463985912502,0.6516891485080123,-0.7034563459455967,0.22346213134005666,-0.9794998653233051,-0.5667857537046075,-0.1325896237976849,-0.17725418834015727,0.40457978285849094,0.09687231481075287,0.5351297929883003,0.27064523892477155,0.6830457709729671,-0.5542452982626855,-0.6734679285436869,-0.19814182678237557,0.5521360640414059,-0.9696767958812416,-0.9554004841484129,-0.15341112576425076,0.06088048731908202,-0.7476499360054731,-0.9009592882357538,-0.7370841251686215,-0.1943772379308939,0.9026433206163347,-0.5590752372518182,-0.5143300844356418,-0.06698158103972673,-0.1319567458704114,-0.8753401390276849,-0.5540100708603859,-0.13761643692851067,0.3015426229685545,-0.052602315321564674,-0.1562677649781108,-0.8242751089856029,-0.5757759786210954,0.2242330969311297,0.8719452349469066,0.9287402117624879,-0.6907888245768845,-0.26927559170871973,-0.7102612820453942,0.06446949811652303,0.7983752558939159,-0.33634185371920466,0.33188829431310296,0.060418770648539066,-0.5359220667742193,-0.31703822407871485,-0.7257352978922427,0.4588422914966941,0.4942896110005677,-0.5737584135495126,0.061103223357349634,0.14380357833579183,-0.5513867605477571,0.8003568192943931,0.0026177195832133293,-0.8076126514934003,-0.8789895130321383,-0.3471644325181842,-0.008309422992169857,-0.9889975623227656,-0.304448374081403,-0.03559878468513489,-0.3574385973624885,0.021185390185564756,-0.5449339323677123,0.3060374059714377,0.6076687066815794,0.3750314451754093,0.4115525968372822,0.18722478114068508,-0.7167672356590629,-0.8614288833923638,0.8471929696388543,0.21530994959175587,-0.7321119322441518,-0.8048216924071312,0.0709445714019239,0.45180147513747215,0.10799326654523611,-0.8847350138239563,-0.5509707387536764,0.9847161797806621,0.4289729078300297,0.04234441975131631,-0.5562393949367106,0.7982440986670554,-0.0306357741355896,-0.9995195209048688,0.3542736815288663,0.7662115641869605,-0.4891106910072267,0.8076702449470758,0.9489317573606968,-0.1588279800489545,0.6855348753742874,-0.8434231532737613,0.44633122300729156,-0.22054256964474916,0.9211616246029735,0.4748575948178768,-0.2929687537252903,0.5687921829521656,-0.6190561726689339,-0.6753630717284977,0.21158081898465753,0.8605334921739995,-0.24745310377329588,-0.5559073062613606,0.002069022972136736,-0.10122999781742692,0.09852828737348318,0.07955191610381007,0.17818413581699133,-0.8368705967441201,0.42095842072740197,-0.8566864402964711,0.3273841901682317,0.11778280511498451,-0.7513823146000504,-0.6258981404826045,0.5179142784327269,-0.166387558914721,0.16805035341531038,-0.24587655952200294,-0.5416636243462563,-0.5828449307009578,0.1875641536898911,-0.9117628647945821,0.921209990978241,0.5336327785626054,0.31477831630036235,0.08053364418447018,-0.6402914677746594,0.031022324692457914,0.993258323520422,-0.8265622877515852,-0.8453725022263825,0.7301183165982366,0.1957847699522972,0.594144360627979,-0.8197015072219074,-0.9708676706068218,0.9319508746266365,-0.6326474724337459,-0.6131029562093318,0.5865920465439558,-0.12547010136768222,-0.8118128292262554,-0.9195132241584361,0.651549085509032,0.0295615722425282,-0.6693231887184083,0.05537763284519315,-0.8786710379645228,-0.0814492511563003,0.8043192513287067,-0.9015317461453378,-0.27059358544647694,-0.8444716986268759,0.643067751545459,0.7649168535135686,0.13836823822930455,0.4091201783157885,0.19028558768332005,0.6907444130629301,-0.40384540846571326,-0.5992872351780534,0.8232900649309158,-0.11764355981722474,0.9351419541053474,0.45862317690625787,0.07408516341820359,-0.20035228738561273,0.04129530815407634,0.28152406960725784,-0.12146207084879279,0.6007826789282262,0.9282406745478511,0.9995910432189703,-0.8489125347696245,0.926159490365535,0.30790834641084075,-0.7985448301769793,0.25217694882303476,0.7844134289771318,0.6209214311093092,0.9835730791091919,-0.8604852580465376,-0.29239410161972046,0.18109095329418778,-0.42892678966745734,0.9271646155975759,-0.3282243963330984,0.6448858818039298,-0.49068205477669835,0.9856408513151109,-0.5563527848571539,-0.4357477813027799,0.18705902295187116,0.3808977259323001,-0.42088047647848725,0.20041753631085157,-0.4171235370449722,0.07738492451608181,-0.6048151897266507,-0.5147922458127141,-0.739898843690753,-0.9043723586946726,0.514724865090102,-0.3507320526987314,0.6558367512188852,0.616261025890708,-0.30396979628130794,-0.5154652120545506,0.4779215850867331,0.3458461700938642,-0.25751677388325334,-0.46523636020720005,-0.0074197715148329735,-0.3923318386077881,-0.07224677596241236,-0.23733368190005422,0.600949736777693,-0.36495148576796055,0.9393409877084196,-0.3241323744878173,-0.46433217311277986,-0.7163470257073641,-0.9732816237956285,0.9517774893902242,-0.5348302209749818,-0.9046821766532958,0.6500319675542414,-0.19967852486297488,0.6946152648888528,0.5588368787430227,0.4350382941775024,-0.44807521952316165,0.8074626792222261,0.7274085655808449,-0.7659551035612822,0.5239507360383868,-0.5068857059814036,-0.7178276963531971,0.9519181847572327,0.48247296875342727,0.7659199652262032,-0.7497905241325498,0.8182575725950301,0.15273271594196558,-0.6724145417101681,0.49675488471984863,0.9628623430617154,0.2989780087955296,-0.025924495421350002,0.12118374602869153,0.9817052301950753,0.4325320436619222,-0.9157241992652416,0.4910976239480078,0.0562571007758379,0.12766247102990746,0.6488719237968326,-0.43275389494374394,0.919462950900197,0.47509783739224076,-0.16944831749424338,-0.9391375686973333,0.6043961415998638,0.3898928388953209,-0.5842025810852647,0.04258705722168088,-0.8302211528643966,0.39234741078689694,0.5148995551280677,-0.8795219562016428,0.8805841570720077,-0.07104771165177226,-0.7187273916788399,0.1519965212792158,-0.06299083586782217,-0.48736820090562105,-0.20440606772899628,-0.21873230440542102,0.03795201051980257,-0.6128799766302109,-0.8361829104833305,0.3383456254377961,-0.2711874768137932,-0.44090293906629086,-0.9614433217793703,-0.30105136381462216,-0.8607153501361609,0.329811614472419,-0.7856727805919945,0.01084543764591217,-0.6991672334261239,0.9783873655833304,-0.4071595757268369,-0.5868087620474398,0.6696091666817665,0.35067234141752124,0.4183495556935668,0.7526084459386766,-0.510960578918457,-0.5066655832342803,0.8254277007654309,-0.6567710260860622,0.3145699864253402,0.9886653032153845,-0.8088015387766063,0.18119089817628264,-0.938014913816005,-0.8898161486722529,0.4667366142384708,-0.29819452995434403,0.07577505288645625,0.8248777082189918,0.9711720799095929,-0.5119345551356673,-0.09641028242185712,0.2199939377605915,-0.5139994928613305,0.6275570006109774,-0.458130294457078,0.08215899346396327,0.3258310272358358,-0.4159212610684335,-0.4779399330727756,-0.0848497748374939,0.1423967727459967,0.7440102542750537,0.23565917555242777,0.745556072331965,0.4808358936570585,0.005965941119939089,0.23946247063577175,-0.3079228992573917,-0.5625055828131735,0.34450372587889433,0.48728354182094336,0.04282101383432746,0.0058197625912725925,0.47591921547427773,0.4183227024041116,0.1676825894974172,0.14615666726604104,-0.17400244902819395,-0.025565477088093758,0.13584405789151788,0.14503580331802368,-0.8179176417179406,-0.9067415692843497,-0.23313256865367293,0.53312271181494,0.10771846491843462,-0.6457726298831403,-0.16509804921224713,-0.6401216848753393,0.8782606008462608,-0.5324713601730764,-0.4039829010143876,0.5607032761909068,0.8163023623637855,-0.4363620625808835,-0.8304794011637568,0.2121948515996337,0.889073945581913,0.25991988833993673,0.08316482463851571,-0.8432867960073054,0.6449155788868666,0.44835118390619755,-0.00020203366875648499,-0.1109081911854446,0.497294198255986,-0.5740186800248921,0.6265128697268665,0.12959926947951317,-0.5079838586971164,0.4646348934620619,0.4029967561364174,-0.05102816969156265,0.6064647380262613,-0.20614977041259408,-0.9713030247949064,0.6304059950634837,-0.13436732441186905,0.9979395596310496,-0.8683257522061467,0.204155916813761,0.8134797378443182,0.38117619836702943,-0.7340652132406831,0.3568214261904359,0.8329445328563452,0.18025518162176013,-0.13372012740001082,-0.45744524244219065,-0.17356361960992217,0.003504580818116665,0.863735125400126,0.26206199964508414,-0.021742625627666712,0.8015263914130628,0.8623253935948014,-0.5786940106190741,-0.4623150620609522,0.6076427735388279,-0.8815959258936346,-0.9708278011530638,0.6428532828576863,0.7235418856143951,0.6304258801974356,-0.8902996727265418,-0.29173809196799994,-0.6325486321002245,-0.7172929896041751,0.8260834538377821,-0.281349778175354,-0.18882355093955994,-0.7985947700217366,-0.6553746270947158,-0.11993727553635836,-0.28709324775263667,-0.23804621305316687,0.8044585390016437,-0.28676350554451346,0.8688238877803087,-0.09340581763535738,-0.4601270668208599,-0.6236285166814923,0.9618990402668715,0.18508058693259954,0.4271961897611618,0.23981304513290524,0.41751723317429423,-0.8497086712159216,-0.5521464957855642,-0.7455207430757582,0.18335538962855935,0.7437046896666288,0.08533058641478419,-0.8672931515611708,-0.30779908830299973,-0.09993839683011174,0.18287194892764091,0.5133154299110174,-0.6763150133192539,-0.530727016273886,-0.004116827622056007,0.7222336353734136,-0.02876785723492503,0.5844182674773037,-0.8634686945006251,0.05292234243825078,0.31163901882246137,-0.09554000990465283,0.78915093280375,-0.40844120969995856,-0.8779714941047132,-0.6765133789740503,0.10291504953056574,-0.5692133004777133,0.2636075443588197,0.3317407174035907,0.20666586328297853,0.6350093754008412,0.5355512225069106,0.7908339630812407,0.22384346602484584,-0.4460918568074703,0.35695115849375725,0.3077968708239496,-0.19534390466287732,-0.8683989467099309,0.7757764677517116,0.2793448334559798,-0.6616670312359929,-0.7035525739192963,0.3642990435473621,0.5452102441340685,0.35835797479376197,0.182439133990556,-0.07218623533844948,0.3072669939137995,0.4792851381935179,-0.44326355680823326,0.050154543947428465,-0.21196241211146116,-0.43577971076592803,-0.04229887342080474,-0.391425468493253,-0.8040925906971097,0.9539559185504913,-0.8681945009157062,0.3920135721564293,0.47309038508683443,-0.07822227291762829,0.5226644510403275,-0.9818239281885326,0.15178538486361504,0.781571950763464,-0.9995983904227614,-0.8059973558411002,-0.9918822878971696,0.866640446241945,-0.30582077614963055,-0.04831139137968421,0.33185133431106806,0.5675782160833478,0.5151237398386002,0.46438155649229884,0.6368573722429574,0.9356038295663893,0.028432061430066824,-0.6772165927104652,-0.9524252940900624,-0.2952880132943392,-0.14781936770305037,-0.40009839553385973,-0.33498197607696056,-0.9775241701863706,-0.6721952487714589,0.551158300600946,-0.4674918889068067,0.2993286391720176,-0.6140118162147701,0.9317323178984225,0.45319688133895397,0.7311806241050363,0.5679311039857566,0.5642961589619517,-0.7447853540070355,-0.11141342530027032,-0.7895080950111151,0.5685301474295557,-0.1079821172170341,0.6722121112979949,0.9390967334620655,-0.1253508529625833,-0.5273081511259079,-0.6372153167612851,0.015545119531452656,0.2872128267772496,-0.35708317905664444,0.7986722900532186,-0.6009267084300518,-0.8565897466614842,-0.32211116841062903,0.5450752866454422,0.7074200818315148,0.23807739419862628,0.4900627271272242,-0.6037380625493824,-0.12453028839081526,-0.5408974611200392,0.4607124775648117,0.9545821198262274,-0.7525211498141289,-0.5467945612035692,0.7135994751006365,0.253723107278347,0.5741533967666328,0.9524835390038788,0.4238965311087668,0.6803876254707575,-0.314813113771379,0.1882375874556601,0.5056554526090622,-0.5130919832736254,-0.1309526558034122,0.1319200391881168,-0.6358223739080131,0.48924537329003215,-0.27240555826574564,-0.16241391748189926,0.09159954637289047,-0.08516475418582559,0.6481799157336354,0.1732235890813172,0.4849129100330174,-0.26432069623842835,0.4915797021239996,-0.3179777874611318,0.16495300503447652,-0.013706756755709648,-0.8945140484720469,-0.23320662416517735,-0.46579990070313215,0.5142086423002183,0.18682283768430352,0.8348239026963711,0.3784769899211824,-0.38991422206163406,0.13882674649357796,0.3683757237158716,0.9275748021900654,-0.9805576936341822,-0.4136920562013984,0.8576289908960462,0.13171342154964805,0.9800078072585166,0.7310921140015125,0.08565567759796977,-0.948946098331362,0.771992752328515,0.5749536254443228,-0.8151395982131362,-0.47910795360803604,-0.3043892802670598,0.8362479102797806,-0.1623849393799901,0.4150057449005544,0.42747695790603757,-0.0405141357332468,-0.9157590861432254,0.7777840220369399,-0.21380429714918137,0.26041906932368875,-0.39383097318932414,-0.044872963801026344,-0.4363535507582128,-0.6464782557450235,0.5038968282751739,0.6677413620054722,-0.42736546974629164,0.1234400481916964,-0.57587098935619,-0.9759593228809536,0.6205115565098822,0.8316180547699332,0.019418810959905386,0.08467935537919402,-0.9448027680628002,0.2269985075108707,0.9011063231155276,0.5457000648602843,0.5780897792428732,-0.5490706977434456,0.8757053418084979,-0.17433051159605384,-0.004850555211305618,0.304460811894387,-0.11581910820677876,-0.28323576413095,0.8965119780041277,-0.006980331614613533,-0.9510954422876239,-0.046072921715676785,-0.49104439932852983,-0.20129094878211617,-0.03683884209021926,-0.8309704470448196,0.45327064860612154,0.6473101149313152,0.17917051073163748,0.712418217677623,-0.24880753364413977,0.8022152408957481,0.44583547255024314,0.8825392634607852,0.13419040385633707,-0.7258278238587081,-0.5934061189182103,0.8639536201953888,-0.9555167583748698,-0.9155466961674392,-0.4063094272278249,0.1526857428252697,0.7287810239940882,0.25729195261374116,-0.8511498589068651,-0.0056146010756492615,-0.49711689446121454,0.7206475613638759,-0.2468354976736009,0.6078964290209115,0.9902582047507167,0.11252300348132849,0.8288700059056282,0.04941132431849837,-0.5429582647047937,-0.9535687509924173,0.8601067545823753,0.9363158885389566,0.08867702167481184,0.2768864734098315,-0.4735276377759874,-0.9487352068535984,0.25380073580890894,-0.07749871630221605,0.989186454564333,-0.09802700346335769,0.5025234105996788,0.290468642488122,0.0036873845383524895,-0.6362516176886857,0.9588812901638448,0.020322374068200588,0.8319780174642801,0.7906092423945665,-0.8547858009114861,0.03331449022516608,0.3923852043226361,-0.20489806588739157,-0.3951694453135133,0.33918680623173714,0.3549008686095476,0.4890684634447098,0.4368420862592757,-0.8487842245958745,0.11891989456489682,0.783533001318574,-0.20971498638391495,-0.08291626209393144,0.5931544182822108,0.621151999104768,0.4538346119225025,0.40660423366352916,0.767237925902009,-0.16062445100396872,0.732310438528657,0.36784995067864656,0.6331405425444245,0.6583974682725966,0.7579036485403776,-0.788307195995003,0.36216233437880874,-0.31382076162844896,-0.2837054901756346,0.7687496533617377,0.2282060938887298,0.9798249071463943,-0.5908773401752114,-0.8130934708751738,-0.47407880146056414,-0.9218673277646303,0.27446036878973246,-0.8123205322772264,0.13663199078291655,0.26045296574011445,0.6237480705603957,0.19461626606062055,0.7980473088100553,-0.02635299786925316,0.12196742231026292,0.49915793910622597,0.1497971024364233,-0.8101657703518867,-0.5365008031949401,0.5531587572768331,0.9575657076202333,0.5609115371480584,-0.11249107914045453,-0.9171802774071693,0.7791248927824199,-0.8937235460616648,-0.41114080185070634,0.2008922859095037,-0.8913872768171132,0.4363899421878159,0.16404880350455642,-0.8993665701709688,-0.1443446888588369,-0.6698955809697509,0.23773828521370888,-0.8756184745579958,0.8505391129292548,-0.08560671145096421,0.9463058919645846,-0.9457452525384724,-0.11141550587490201,0.1150628156028688,-0.12847528886049986,0.2914624782279134,0.12503946851938963,0.5027051134966314,-0.8449070365168154,0.3784447703510523,-0.23609710996970534,-0.6991404993459582,-0.1451309365220368,-0.195565493311733,0.9189231544733047,0.09609202621504664,0.1383705255575478,0.2969106971286237,-0.508402228821069,-0.2520146914757788,-0.07931922469288111,0.02670683804899454,0.16883915243670344,0.7920874310657382,0.34907807083800435,0.3821846558712423,-0.16405191365629435,0.37359431432560086,-0.9013799373060465,0.6471525263041258,0.8471120200119913,-0.7449215007945895,-0.2137355455197394,-0.32915891567245126,0.21427565114572644,-0.6718242126516998,0.4068947150371969,0.21177667984738946,-0.9484120365232229,0.2627258524298668,-0.8166231922805309,-0.840511136688292,0.3993983422406018,-0.1800479805096984,-0.9544566501863301,0.44649303844198585,-0.39372322149574757,0.8632112559862435,0.13547888258472085,0.41704270895570517,0.6146951019763947,-0.3599534151144326,-0.0949517204426229,-0.9052619859576225,-0.8986751395277679,-0.9959589610807598,0.6389594599604607,0.6587734171189368,-0.359077129047364,-0.11143781617283821,-0.5738796480000019,-0.5225999820977449,-0.23807166330516338,-0.9676819313317537,-0.6446801833808422,-0.8656589831225574,-0.24928827630355954,-0.7038262374699116,-0.4426453011110425,0.7255854909308255,-0.7513650008477271,0.18327409215271473,0.4323529847897589,-0.1448847302235663,-0.07660710718482733,0.2947380575351417,-0.36109945457428694,0.5379270268604159,0.0034468313679099083,-0.8104689540341496,0.15074544539675117,-0.8810905539430678,-0.9219410405494273,0.4447654979303479,0.7529075080528855,0.5076905908063054,0.16088788164779544,-0.30945906043052673,-0.26561763882637024,0.33761059353128076,0.6138145164586604,-0.9561260556802154,0.7103877263143659,-0.6452715266495943,0.46360990637913346,-0.7351729893125594,-0.7545573017559946,0.524187027476728,-0.19542897678911686,0.9554135915823281,-0.460624267347157,0.48537096893414855,-0.5852614818140864,-0.5976316318847239,0.7356963651254773,-0.6228435132652521,-0.9068758734501898,0.07125094020739198,-0.05510383751243353,-0.49408221477642655,-0.3869079863652587,-0.32653846917673945,0.148571303114295,-0.8401539265178144,0.9061366529203951,0.3978854399174452,0.19883378222584724,-0.205008695833385,0.9721531877294183,0.7861828142777085,0.5318680456839502,-0.35083858110010624,0.4135304447263479,0.2851430717855692,-0.6293244464322925,-0.005603897850960493,0.646955736912787,0.7875940948724747,0.2935074991546571,-0.2566462168470025,-0.56391582172364,-0.08147298358380795,-0.9772111321799457,-0.3381973053328693,0.1498730811290443,0.633630660828203,-0.6607481460087001,-0.7904248731210828,-0.1353797004558146,0.9202663176693022,0.7521093781106174,0.2329741921275854,-0.30438408348709345,-0.5764646525494754,-0.9185853595845401,0.09465683717280626,0.7283828658983111,0.004890513140708208,-0.7110668136738241,-0.608549659140408,0.4025735496543348,0.4001025212928653,-0.7027784017845988,-0.4921685541048646,-0.13574270345270634,0.07089667301625013,-0.9140707557089627,0.1524993348866701,0.5286463368684053,-0.721003046259284,0.2090731244534254,0.32934534503147006,-0.8184613981284201,0.4366326476447284,0.11277041397988796,-0.4088726509362459,0.7290959190577269,-0.37382832588627934,0.6551750362850726,0.613323197234422,-0.40630222763866186,-0.6007137708365917,-0.08234369149431586,-0.965151066891849,-0.22325472440570593,-0.6277339602820575,0.00482599064707756,0.1840619551949203,-0.3175526154227555,0.8468482564203441,-0.21697338670492172,-0.5436420580372214,-0.31590002961456776,-0.8094830214977264,0.668774978723377,-0.5552221946418285,-0.19827708788216114,0.026021890342235565,-0.8337367200292647,-0.8044354063458741,-0.2515786881558597,0.39659003959968686,0.44606451597064734,0.41851141955703497,0.09803299373015761,-0.10996954655274749,-0.36503364657983184,-0.6036825627088547,-0.9004489271901548,0.5790105545893312,-0.2637525228783488,-0.5158425397239625,0.34665546705946326,-0.5085339201614261,0.6369701195508242,0.6153529048897326,-0.9513811995275319,-0.9927586377598345,0.6649923687800765,0.2144787311553955,0.4965409734286368,0.7760640876367688,-0.6981042725965381,-0.9650280051864684,0.9690821245312691,-0.8233200004324317,-0.009274506941437721,0.42758385464549065,0.7285654111765325,-0.41160432528704405,-0.8549996446818113,0.18340315949171782,0.23731682356446981,-0.8461174461990595,-0.5724105518311262,-0.7716118055395782,-0.4099653963930905,0.524143903516233,0.18084449879825115,-0.6857832120731473,0.28242461988702416,-0.9943964374251664,-0.29872517054900527,0.9148523807525635,-0.4326357711106539,-0.16054321685805917,-0.9235943611711264,0.00581800052896142,-0.24865672690793872,0.7939389399252832,-0.24705645069479942,-0.7612396134063601,0.9994099144823849,-0.930803943425417,0.10002560960128903,-0.8546326574869454,-0.7826016885228455,0.22517824545502663,0.1255416739732027,0.9384955638088286,0.44336704071611166,-0.9430951671674848,0.4637288749217987,0.5331385228782892,-0.1426879521459341,-0.8540804502554238,-0.5930418013595045,0.57394845969975,-0.4833152899518609,-0.867915126029402,0.37049379758536816,0.7075432101264596,-0.28100899374112487,-0.16475882707163692,-0.8491257335990667,-0.0432718307711184,0.09949676971882582,0.32557150535285473,-0.8529499676078558,0.058155533857643604,-0.7413044334389269,-0.36242194660007954,-0.08022332331165671,0.2457442511804402,-0.22781525226309896,0.08313929056748748,-0.579062179196626,0.685079506598413,0.7750656194984913,-0.2017173357307911,-0.14753438998013735,-0.42577566113322973,0.7769847707822919,0.47606459725648165,-0.5128109003417194,0.670990377664566,-0.7105923863127828,0.2850487744435668,-0.6999801197089255,0.5666456432081759,-0.6574135553091764,-0.5729488055221736,-0.07210394321009517,-0.8891372550278902,-0.812376941088587,0.054522812366485596,0.002643647138029337,0.345904387999326,0.09416243666782975,0.9337351946160197,0.5717600677162409,-0.5250600441358984,0.6440338138490915,0.5988432886078954,-0.9499882804229856,0.6936490414664149,-0.06265419349074364,0.982108520809561,-0.18168465374037623,0.448487282730639,0.8473371928557754,-0.5709554222412407,0.8630885151214898,-0.5386255932971835,-0.5779169206507504,-0.5721898935735226,0.40727211628109217,-0.42291200906038284,-0.0933224018663168,0.10477642016485333,-0.7673771865665913,-0.539286813698709,0.21276764292269945,-0.06745036970824003,-0.7520915325731039,-0.7247958891093731,0.9915924104861915,0.1508009801618755,-0.037547650281339884,0.029848750215023756,-0.5565030430443585,0.45240706019103527,0.21713972836732864,0.33949505211785436,0.3779541184194386,-0.28245948255062103,-0.7937644482590258,0.07333240564912558,0.19115210883319378,-0.4907656288705766,-0.312831015791744,-0.5979761928319931,0.7458887863904238,0.8729274193756282,-0.09096547169610858,0.19195283250883222,0.20735228899866343,0.6506657176651061,-0.6352603044360876,0.27452063048258424,-0.09046604437753558,-0.8391963327303529,0.8029800090007484,0.02603726228699088,0.9538869834505022,0.7252644672989845,-0.6411978872492909,-0.5684885303489864,-0.9628360676579177,0.2731001996435225,0.3444293229840696,0.776920547708869,0.2132884692400694,-0.006456518545746803,0.44484921731054783,-0.887831361964345,0.13111860398203135,0.5396656412631273,0.4964025067165494,0.6238450086675584,0.11798134678974748,-0.4980987790040672,0.12176646757870913,-0.9201753214001656,0.4672518582083285,-0.8171023796312511,-0.46265826979652047,0.12880446901544929,0.6497792485170066,-0.2293250635266304,0.5631017903797328,0.47516066348180175,0.44882805505767465,0.07878283550962806,0.4566305447369814,0.6107276403345168,0.46026297099888325,-0.1519778105430305,0.9049247368238866,0.0036090267822146416,0.9294864851981401,0.4404409369453788,0.4496036381460726,-0.09110304852947593,0.7653566435910761,-0.4803496552631259,0.8994725975207984,0.8592314403504133,0.6709952922537923,-0.6151437442749739,0.10681146616116166,-0.36504922760650516,0.9512428394518793,-0.49965616688132286,-0.7419695896096528,-0.97759560495615,0.3699408695101738,0.3838819391094148,-0.32139742048457265,0.37105473643168807,0.6628629849292338,-0.6119385077618062,0.5717570800334215,-0.9625518755055964,-0.4633394852280617,-0.639931392390281,-0.21598015492781997,0.845299075357616,-0.7626900924369693,-0.9408613876439631,-0.08839583257213235,0.12678010389208794,0.5501054748892784,0.9581964714452624,0.7591043626889586,0.6940885758958757,-0.29294762667268515,-0.9326108847744763,-0.7172362534329295,-0.7005655104294419,0.9816753612831235,-0.03574360068887472,0.17087474558502436,-0.22926753014326096,-0.9096200317144394,0.735715018119663,-0.7314437790773809,-0.1580641153268516,0.019687219988554716,-0.5206723804585636,0.8481130301952362,0.8310437491163611,-0.7532254415564239,0.13662303611636162,-0.12937080208212137,-0.20469529647380114,-0.555637713521719,0.44011593144387007,0.05597400479018688,0.30900754733011127,-0.587381299585104,-0.4784961333498359,0.213523855432868,-0.15310907969251275,-0.7003753748722374,0.09151806030422449,0.1827085455879569,-0.03870880091562867,0.5107123148627579,0.271223699208349,0.6526186326518655,0.444309014827013,-0.807522039860487,-0.6488216733559966,0.34953546104952693,-0.5892182271927595,-0.597962792031467,-0.8412333033047616,-0.8581738849170506,0.8700792598538101,-0.037768565118312836,0.8117658770643175,-0.6832417934201658,0.7836117353290319,-0.9786075055599213,0.6081527513451874,-0.2394598196260631,-0.830251841340214,0.9156980905681849,0.9955906760878861,-0.971885418985039,-0.39549411367625,-0.47844752110540867,0.5440425858832896,-0.7947113648988307,-0.39423974184319377,0.18275850266218185,0.6263667261227965,0.9244263865984976,0.29243740998208523,0.7649870021268725,-0.8292221883311868,0.3875881494022906,0.6801008502952754,0.2515205591917038,0.19092018343508244,0.23215077444911003,0.6980378436855972,-0.817240193951875,0.8569163661450148,0.3534516990184784,-0.0024266899563372135,-0.5022692927159369,-0.9252985161729157,-0.8555638683028519,-0.17156483372673392,0.5618855622597039,0.20502361375838518,-0.17623927537351847,-0.25882761273533106,0.5548423249274492,-0.9523146883584559,-0.19629107462242246,0.0034573813900351524,0.11267422838136554,-0.4075714563950896,-0.5712471567094326,-0.45566950645297766,0.2901227930560708,0.1027352623641491,0.26089860685169697,0.29297960409894586,-0.47631149599328637,0.31674960628151894,0.9043109775520861,0.06764304544776678,0.40321611100807786,0.47937004221603274,0.8266145712696016,0.44565071212127805,0.7953893090598285,-0.46447047172114253,0.16914924792945385,-0.787180888466537,-0.38859525229781866,-0.36142011312767863,-0.09856003103777766,0.37818526942282915,-0.6749005788005888,-0.03800110658630729,0.1062564249150455,0.6297094575129449,-0.2131335730664432,0.021726572420448065,-0.9455106719397008,0.27277834666892886,-0.7727606371045113,0.9083872120827436,-0.22844053665176034,-0.8411206011660397,0.49415688309818506,0.6162351029925048,-0.6144908661954105,-0.23846097895875573,-0.905922946985811,-0.9338229014538229,0.7681635874323547,-0.15466134110465646,0.027733535040169954,0.2666515912860632,-0.3645271034911275,-0.9472416914068162,0.5950161521323025,0.2970725675113499,0.45985536091029644,0.17463171482086182,-0.3600735398940742,0.3366103954613209,0.9940967871807516,0.9869866133667529,0.14481274550780654,-0.9800204117782414,-0.6861814283765852,0.9544393103569746,-0.35730642545968294,-0.1490940498188138,0.8653559414669871,-0.5686922380700707,0.22864086320623755,0.8935775519348681,0.4858403033576906,0.36040732776746154,0.6955584846436977,0.21248254040256143,0.7791763776913285,-0.7227420583367348,-0.5559431198053062,0.09305326035246253,-0.7381747281178832,0.5069102118723094,-0.646734073292464,-0.53541438607499,0.31043857522308826,-0.977653615642339,0.20368823828175664,-0.6601209151558578,-0.8946681702509522,0.9441786371171474,0.42297765891999006,0.7489585191942751,-0.6198702356778085,0.7593003883957863,-0.8313522902317345,-0.2121185171417892,-0.20962749747559428,0.2712459727190435,-0.027225134428590536,0.5306116677820683,0.9636299978010356,-0.9289057441055775,-0.8605785532854497,-0.28229731041938066,0.49781048065051436,-0.853785106446594,-0.002977196127176285,-0.0017146952450275421,0.4903940516524017,-0.6438487046398222,-0.21238886937499046,0.2219854393042624,-0.9111612746492028,0.6968168667517602,-0.861709815915674,-0.09821533132344484,-0.6693226359784603,-0.3496653512120247,-0.1275556031614542,0.7525185132399201,0.4499263591133058,0.17237445479258895,-0.0166006232611835,-0.7232464905828238,0.8636478115804493,-0.673953658901155,-0.21685870457440615,0.8411710318177938,-0.6223838059231639,-0.12750581884756684,-0.025157053489238024,-0.7437191414646804,-0.4919467903673649,-0.41076029324904084,-0.5693217529915273,0.1389740239828825,-0.9721672791056335,0.8364051249809563,-0.27010014839470387,0.12546764314174652,0.07918182387948036,0.9801700389944017,-0.5945077831856906,-0.7155225896276534,-0.5665821526199579,0.6606100546196103,-0.3555091102607548,-0.9025076776742935,0.8315597544424236,-0.8076574294827878,0.6445320257917047,0.7453753328882158,-0.6904390221461654,-0.9909227564930916,0.393954548984766,-0.7675279290415347,-0.7364857736974955,0.9531096229329705,0.3785195518285036,-0.3500267784111202,-0.9486688976176083,-0.8290860103443265,-0.11985363019630313,0.4303622585721314,-0.6013284013606608,-0.9920505830086768,0.756133858114481,-0.6858873292803764,-0.9998102062381804,0.80240897834301,-0.06921468675136566,-0.0018949415534734726,0.21833814959973097,0.885958107188344,0.7524838480167091,-0.6962515949271619,-0.7400261340662837,-0.4298461680300534,-0.2740210355259478,0.31277630338445306,0.30595846800133586,-0.011550181545317173,-0.9539542840793729,-0.308956035412848,-0.3581212814897299,-0.15753098111599684,0.7764160637743771,-0.29213230265304446,-0.734483240172267,-0.8669406231492758,0.7804629825986922,0.14338434860110283,0.6468120841309428,-0.8636235217563808,0.6878134296275675,0.058189176488667727,-0.44051101338118315,-0.015823746100068092,-0.3147774450480938,-0.7323807789944112,-0.12022850615903735,-0.8285239548422396,0.8167737675830722,-0.5608704411424696,0.6871295785531402,0.7002037591300905,-0.5758125237189233,0.004397295881062746,-0.7404572553932667,-0.8345119282603264,-0.23226100439205766,-0.24638839811086655,-0.19748689513653517,-0.9047426441684365,0.5485260332934558,0.17250455543398857,-0.6609567864798009,0.7840630477294326,-0.5922899348661304,0.2951482613570988,0.4536583302542567,0.17340181348845363,-0.7332636178471148,-0.9828044236637652,0.6809092788025737,0.460960126016289,0.7097458713687956,0.6823522145859897,-0.6830337988212705,-0.4719979837536812,0.029131302144378424,0.2762452978640795,-0.5509084975346923,0.36029151547700167,-0.9084178167395294,0.6547457547858357,0.2560534863732755,0.3357796729542315,0.2949481005780399,0.7843677783384919,-0.8157706488855183,-0.9475183137692511,0.7694226885214448,-0.24443039437755942,-0.2980545684695244,0.23337259283289313,0.20073731243610382,0.6082654963247478,0.3131312606856227,0.2613793765194714,0.711829096544534,-0.2294145063497126,-0.7115606996230781,-0.06606030371040106,-0.6316997190006077,0.17351132910698652,0.7136049675755203,-0.08777855569496751,-0.19421866396442056,-0.6755812154151499,0.3565047299489379,0.11980834184214473,0.8828776609152555,0.4638506546616554,-0.7566582807339728,-0.6084031574428082,-0.742051703389734,-0.0047487434931099415,0.3084203633479774,0.05519562866538763,0.688068613409996,0.3169755842536688,-0.12590145459398627,-0.08380061900243163,-0.6885572280734777,0.5565629843622446,-0.5124080548994243,0.2846202850341797,0.09494347684085369,0.35521874111145735,0.4097685827873647,-0.5359800644218922,0.4530515852384269,-0.45231465017423034,-0.8482559537515044,0.7263967539183795,-0.8000808614306152,-0.7945407135412097,0.9380741817876697,-0.9790651528164744,-0.9397026454098523,0.539587720297277,0.021264311857521534,0.7302458034828305,-0.5839740186929703,0.8191963266581297,0.48427067417651415,0.5250031421892345,-0.4890944533981383,0.7578211915679276,-0.8106561452150345,0.9590710937045515,0.10080954199656844,-0.07364814914762974,-0.955293889157474,-0.7663629692979157,-0.8660860517993569,0.43515082309022546,-0.47421085787937045,-0.7681832802481949,-0.3585639363154769,-0.2429505200125277,0.28059279825538397,0.13694740599021316,-0.560553873423487,0.49293032940477133,0.19580328417941928,0.969225094653666,-0.9932843721471727,0.2312667896039784,-0.705689761787653,-0.2775240037590265,0.1987706022337079,0.39068850968033075,0.17832187050953507,0.03704037657007575,0.4834228786639869,-0.8126268996857107,-0.33196327462792397,0.28708655573427677,-0.6847151038236916,0.7165242470800877,0.2990187155082822,0.6058811764232814,0.7063390044495463,-0.401259726844728,-0.6799465185031295,0.6066499846056104,0.844449246302247,0.7747043576091528,0.22166646597906947,-0.33000235678628087,-0.009265488479286432,0.5135992527939379,0.02500354778021574,0.8712544189766049,-0.8791388617828488,0.6422107252292335,-0.03943901229649782,0.7852260023355484,-0.5067586326040328,0.4092922192066908,0.26410174975171685,-0.8365935049951077,-0.8240466332063079,-0.5479704719036818,-0.8498952803201973,0.016019067727029324,0.07324702851474285,-0.18646584544330835,-0.992268524132669,-0.3090442279353738,0.5518282889388502,-0.532357444986701,-0.2048155264928937,0.7558504561893642,0.1811828543432057,-0.3430115031078458,-0.44513312773779035,-0.9631107631139457,0.07969848858192563,0.2690731044858694,0.7822071560658514,-0.2031608852557838,-0.41230606427416205,-0.8521938864141703,0.12771431682631373,-0.6758695323951542,-0.35591197293251753,-0.012309635058045387,0.4667642363347113,0.7204052414745092,0.14791880315169692,-0.11556033976376057,-0.10967645142227411,0.12806917307898402,-0.13684122636914253,0.35257595777511597,0.48461182368919253,-0.8368295193649828,0.8346167108975351,0.42650684621185064,-0.608348835259676,0.16108473995700479,-0.6835672515444458,0.25774019258096814,-0.9675434404052794,-0.6414898275397718,-0.7656823638826609,-0.6204614960588515,0.7834590347483754,-0.2089620279148221,-0.08431873470544815,0.7710157507099211,0.4446884305216372,0.4495232608169317,0.06873981887474656,0.9916819203644991,0.8613227889873087,-0.24756699847057462,0.6359789250418544,0.9127803766168654,-0.132197184022516,0.2861650134436786,-0.0771294217556715,0.7262804079800844,-0.7405535974539816,0.17688930872827768,-0.05890418356284499,0.8769459598697722,-0.2468973770737648,0.15896080387756228,-0.7338887769728899,0.9948448636569083,0.46750698424875736,-0.26629692036658525,0.04600148228928447,-0.7297944091260433,-0.14871260104700923,-0.08821555087342858,0.17438647523522377,-0.8052271446213126,-0.22473124228417873,0.02996152313426137,0.8854464748874307,0.46972915902733803,0.6116738952696323,0.6564916190691292,0.48080063611268997,-0.291088021825999,0.30461515579372644,-0.43342340365052223,-0.26296474132686853,-0.07197772990912199,0.7392550515942276,0.7952203880995512,-0.030782135669142008,-0.8693636185489595,0.9959927797317505,0.733005995862186,-0.8880402352660894,0.7639868594706059,-0.35331023624166846,-0.8780975672416389,-0.1530590197071433,-0.06097746454179287,0.3497797413729131,-0.3247417528182268,-0.2174038989469409,-0.11066396161913872,0.3281708168797195,-0.4983602254651487,-0.5712260007858276,0.38477562461048365,0.2623005728237331,-0.424199849832803,-0.6858636015094817,-0.9026246615685523,-0.7749565276317298,0.23497984651476145,0.8118647788651288,-0.18169678933918476,-0.4524920852854848,0.062186721712350845,0.9485886376351118,-0.7447977624833584,0.6118882545270026,0.28341947635635734,0.38323014695197344,-0.17960209446027875,0.6182845933362842,-0.10966072417795658,0.4393800920806825,0.7607132350094616,-0.505138595122844,0.9491001032292843,-0.9224596824496984,0.07665076944977045,0.39080912759527564,0.21599008655175567,0.7774937776848674,0.716148070525378,-0.8040099749341607,-0.5065135424956679,0.39020365569740534,-0.7771889134310186,-0.04720815923064947,0.5367269003763795,0.6150419153273106,0.40028461441397667,-0.49031111551448703,0.5223393980413675,-0.45899229729548097,0.7676125280559063,-0.7236359403468668,0.9473253176547587,0.013546554371714592,-0.2677791537716985,-0.5741269942373037,-0.7997562424279749,-0.2417219909839332,-0.21352573204785585,0.9622986153699458,-0.8537364997901022,0.9701301320455968,-0.10782538214698434,-0.33650565426796675,0.32881624065339565,0.5744558251462877,-0.42380581982433796,-0.43580916803330183,-0.0031837751157581806,0.5623902105726302,-0.27048392314463854,-0.17197958566248417,-0.2294969093054533,-0.6290492829866707,-0.7742223148234189,0.8810245948843658,-0.7484127976931632,-0.3087606248445809,-0.5293162725865841,0.26551755610853434,0.1618996588513255,-0.6045757145620883,-0.8449554820545018,-0.73953648051247,-0.8385359807871282,0.45251116063445807,0.05027337046340108,-0.5244784718379378,-0.5079239537008107,0.1465835841372609,0.10338953323662281,-0.7945296512916684],"type":"scatter3d"},{"customdata":[["2024-07-25T11:35:06.010000"],["2024-07-25T11:35:07.010000"],["2024-07-25T11:35:08.010000"],["2024-07-25T11:35:09.010000"],["2024-07-25T11:35:10.010000"],["2024-07-25T11:35:11.010000"],["2024-07-25T11:35:12.010000"],["2024-07-25T11:35:13.010000"],["2024-07-25T11:35:14.010000"],["2024-07-25T11:35:15.010000"],["2024-07-25T11:35:16.010000"],["2024-07-25T11:35:17.010000"],["2024-07-25T11:35:18.010000"],["2024-07-25T11:35:19.010000"],["2024-07-25T11:35:20.010000"],["2024-07-25T11:35:21.010000"],["2024-07-25T11:35:22.010000"],["2024-07-25T11:35:23.010000"],["2024-07-25T11:35:24.010000"],["2024-07-25T11:35:25.010000"],["2024-07-25T11:35:26.010000"],["2024-07-25T11:35:27.010000"],["2024-07-25T11:35:28.010000"],["2024-07-25T11:35:29.010000"],["2024-07-25T11:35:30.010000"],["2024-07-25T11:35:31.010000"],["2024-07-25T11:35:32.010000"],["2024-07-25T11:35:33.010000"],["2024-07-25T11:35:34.010000"],["2024-07-25T11:35:35.010000"],["2024-07-25T11:35:36.010000"],["2024-07-25T11:35:37.010000"],["2024-07-25T11:35:38.010000"],["2024-07-25T11:35:39.010000"],["2024-07-25T11:35:40.010000"],["2024-07-25T11:35:41.010000"],["2024-07-25T11:35:42.010000"],["2024-07-25T11:35:43.010000"],["2024-07-25T11:35:44.010000"],["2024-07-25T11:35:45.010000"],["2024-07-25T11:35:46.010000"],["2024-07-25T11:35:47.010000"],["2024-07-25T11:35:48.010000"],["2024-07-25T11:35:49.010000"],["2024-07-25T11:35:50.010000"],["2024-07-25T11:35:51.010000"],["2024-07-25T11:35:52.010000"],["2024-07-25T11:35:53.010000"],["2024-07-25T11:35:54.010000"],["2024-07-25T11:35:55.010000"],["2024-07-25T11:35:56.010000"],["2024-07-25T11:35:57.010000"],["2024-07-25T11:35:58.010000"],["2024-07-25T11:35:59.010000"],["2024-07-25T11:36:00.010000"],["2024-07-25T11:36:01.010000"],["2024-07-25T11:36:02.010000"],["2024-07-25T11:36:03.010000"],["2024-07-25T11:36:04.010000"],["2024-07-25T11:36:05.010000"],["2024-07-25T11:36:06.010000"],["2024-07-25T11:36:07.010000"],["2024-07-25T11:36:08.010000"],["2024-07-25T11:36:09.010000"],["2024-07-25T11:36:10.010000"],["2024-07-25T11:36:11.010000"],["2024-07-25T11:36:12.010000"],["2024-07-25T11:36:13.010000"],["2024-07-25T11:36:14.010000"],["2024-07-25T11:36:15.010000"],["2024-07-25T11:36:16.010000"],["2024-07-25T11:36:17.010000"],["2024-07-25T11:36:18.010000"],["2024-07-25T11:36:19.010000"],["2024-07-25T11:36:20.010000"],["2024-07-25T11:36:21.010000"],["2024-07-25T11:36:22.010000"],["2024-07-25T11:36:23.010000"],["2024-07-25T11:36:24.010000"],["2024-07-25T11:36:25.010000"],["2024-07-25T11:36:26.010000"],["2024-07-25T11:36:27.010000"],["2024-07-25T11:36:28.010000"],["2024-07-25T11:36:29.010000"],["2024-07-25T11:36:30.010000"],["2024-07-25T11:36:31.010000"],["2024-07-25T11:36:32.010000"],["2024-07-25T11:36:33.010000"],["2024-07-25T11:36:34.010000"],["2024-07-25T11:36:35.010000"],["2024-07-25T11:36:36.010000"],["2024-07-25T11:36:37.010000"],["2024-07-25T11:36:38.010000"],["2024-07-25T11:36:39.010000"],["2024-07-25T11:36:40.010000"],["2024-07-25T11:36:41.010000"],["2024-07-25T11:36:42.010000"],["2024-07-25T11:36:43.010000"],["2024-07-25T11:36:44.010000"],["2024-07-25T11:36:45.010000"],["2024-07-25T11:36:46.010000"],["2024-07-25T11:36:47.010000"],["2024-07-25T11:36:48.010000"],["2024-07-25T11:36:49.010000"],["2024-07-25T11:36:50.010000"],["2024-07-25T11:36:51.010000"],["2024-07-25T11:36:52.010000"],["2024-07-25T11:36:53.010000"],["2024-07-25T11:36:54.010000"],["2024-07-25T11:36:55.010000"],["2024-07-25T11:36:56.010000"],["2024-07-25T11:36:57.010000"],["2024-07-25T11:36:58.010000"],["2024-07-25T11:36:59.010000"],["2024-07-25T11:37:00.010000"],["2024-07-25T11:37:01.010000"],["2024-07-25T11:37:02.010000"],["2024-07-25T11:37:03.010000"],["2024-07-25T11:37:04.010000"],["2024-07-25T11:37:05.010000"],["2024-07-25T11:37:06.010000"],["2024-07-25T11:37:07.010000"],["2024-07-25T11:37:08.010000"],["2024-07-25T11:37:09.010000"],["2024-07-25T11:37:10.010000"],["2024-07-25T11:37:11.010000"],["2024-07-25T11:37:12.010000"],["2024-07-25T11:37:13.010000"],["2024-07-25T11:37:14.010000"],["2024-07-25T11:37:15.010000"],["2024-07-25T11:37:16.010000"],["2024-07-25T11:37:17.010000"],["2024-07-25T11:37:18.010000"],["2024-07-25T11:37:19.010000"],["2024-07-25T11:37:20.010000"],["2024-07-25T11:37:21.010000"],["2024-07-25T11:37:22.010000"],["2024-07-25T11:37:23.010000"],["2024-07-25T11:37:24.010000"],["2024-07-25T11:37:25.010000"],["2024-07-25T11:37:26.010000"],["2024-07-25T11:37:27.010000"],["2024-07-25T11:37:28.010000"],["2024-07-25T11:37:29.010000"],["2024-07-25T11:37:30.010000"],["2024-07-25T11:37:31.010000"],["2024-07-25T11:37:32.010000"],["2024-07-25T11:37:33.010000"],["2024-07-25T11:37:34.010000"],["2024-07-25T11:37:35.010000"],["2024-07-25T11:37:36.010000"],["2024-07-25T11:37:37.010000"],["2024-07-25T11:37:38.010000"],["2024-07-25T11:37:39.010000"],["2024-07-25T11:37:40.010000"],["2024-07-25T11:37:41.010000"],["2024-07-25T11:37:42.010000"],["2024-07-25T11:37:43.010000"],["2024-07-25T11:37:44.010000"],["2024-07-25T11:37:45.010000"],["2024-07-25T11:37:46.010000"],["2024-07-25T11:37:47.010000"],["2024-07-25T11:37:48.010000"],["2024-07-25T11:37:49.010000"],["2024-07-25T11:37:50.010000"],["2024-07-25T11:37:51.010000"],["2024-07-25T11:37:52.010000"],["2024-07-25T11:37:53.010000"],["2024-07-25T11:37:54.010000"],["2024-07-25T11:37:55.010000"],["2024-07-25T11:37:56.010000"],["2024-07-25T11:37:57.010000"],["2024-07-25T11:37:58.010000"],["2024-07-25T11:37:59.010000"],["2024-07-25T11:38:00.010000"],["2024-07-25T11:38:01.010000"],["2024-07-25T11:38:02.010000"],["2024-07-25T11:38:03.010000"],["2024-07-25T11:38:04.010000"],["2024-07-25T11:38:05.010000"],["2024-07-25T11:38:06.010000"],["2024-07-25T11:38:07.010000"],["2024-07-25T11:38:08.010000"],["2024-07-25T11:38:09.010000"],["2024-07-25T11:38:10.010000"],["2024-07-25T11:38:11.010000"],["2024-07-25T11:38:12.010000"],["2024-07-25T11:38:13.010000"],["2024-07-25T11:38:14.010000"],["2024-07-25T11:38:15.010000"],["2024-07-25T11:38:16.010000"],["2024-07-25T11:38:17.010000"],["2024-07-25T11:38:18.010000"],["2024-07-25T11:38:19.010000"],["2024-07-25T11:38:20.010000"],["2024-07-25T11:38:21.010000"],["2024-07-25T11:38:22.010000"],["2024-07-25T11:38:23.010000"],["2024-07-25T11:38:24.010000"],["2024-07-25T11:38:25.010000"],["2024-07-25T11:38:26.010000"],["2024-07-25T11:38:27.010000"],["2024-07-25T11:38:28.010000"],["2024-07-25T11:38:29.010000"],["2024-07-25T11:38:30.010000"],["2024-07-25T11:38:31.010000"],["2024-07-25T11:38:32.010000"],["2024-07-25T11:38:33.010000"],["2024-07-25T11:38:34.010000"],["2024-07-25T11:38:35.010000"],["2024-07-25T11:38:36.010000"],["2024-07-25T11:38:37.010000"],["2024-07-25T11:38:38.010000"],["2024-07-25T11:38:39.010000"],["2024-07-25T11:38:40.010000"],["2024-07-25T11:38:41.010000"],["2024-07-25T11:38:42.010000"],["2024-07-25T11:38:43.010000"],["2024-07-25T11:38:44.010000"],["2024-07-25T11:38:45.010000"],["2024-07-25T11:38:46.010000"],["2024-07-25T11:38:47.010000"],["2024-07-25T11:38:48.010000"],["2024-07-25T11:38:49.010000"],["2024-07-25T11:38:50.010000"],["2024-07-25T11:38:51.010000"],["2024-07-25T11:38:52.010000"],["2024-07-25T11:38:53.010000"],["2024-07-25T11:38:54.010000"],["2024-07-25T11:38:55.010000"],["2024-07-25T11:38:56.010000"],["2024-07-25T11:38:57.010000"],["2024-07-25T11:38:58.010000"],["2024-07-25T11:38:59.010000"],["2024-07-25T11:39:00.010000"],["2024-07-25T11:39:01.010000"],["2024-07-25T11:39:02.010000"],["2024-07-25T11:39:03.010000"],["2024-07-25T11:39:04.010000"],["2024-07-25T11:39:05.010000"],["2024-07-25T11:39:06.010000"],["2024-07-25T11:39:07.010000"],["2024-07-25T11:39:08.010000"],["2024-07-25T11:39:09.010000"],["2024-07-25T11:39:10.010000"],["2024-07-25T11:39:11.010000"],["2024-07-25T11:39:12.010000"],["2024-07-25T11:39:13.010000"],["2024-07-25T11:39:14.010000"],["2024-07-25T11:39:15.010000"],["2024-07-25T11:39:16.010000"],["2024-07-25T11:39:17.010000"],["2024-07-25T11:39:18.010000"],["2024-07-25T11:39:19.010000"],["2024-07-25T11:39:20.010000"],["2024-07-25T11:39:21.010000"],["2024-07-25T11:39:22.010000"],["2024-07-25T11:39:23.010000"],["2024-07-25T11:39:24.010000"],["2024-07-25T11:39:25.010000"],["2024-07-25T11:39:26.010000"],["2024-07-25T11:39:27.010000"],["2024-07-25T11:39:28.010000"],["2024-07-25T11:39:29.010000"],["2024-07-25T11:39:30.010000"],["2024-07-25T11:39:31.010000"],["2024-07-25T11:39:32.010000"],["2024-07-25T11:39:33.010000"],["2024-07-25T11:39:34.010000"],["2024-07-25T11:39:35.010000"],["2024-07-25T11:39:36.010000"],["2024-07-25T11:39:37.010000"],["2024-07-25T11:39:38.010000"],["2024-07-25T11:39:39.010000"],["2024-07-25T11:39:40.010000"],["2024-07-25T11:39:41.010000"],["2024-07-25T11:39:42.010000"],["2024-07-25T11:39:43.010000"],["2024-07-25T11:39:44.010000"],["2024-07-25T11:39:45.010000"],["2024-07-25T11:39:46.010000"],["2024-07-25T11:39:47.010000"],["2024-07-25T11:39:48.010000"],["2024-07-25T11:39:49.010000"],["2024-07-25T11:39:50.010000"],["2024-07-25T11:39:51.010000"],["2024-07-25T11:39:52.010000"],["2024-07-25T11:39:53.010000"],["2024-07-25T11:39:54.010000"],["2024-07-25T11:39:55.010000"],["2024-07-25T11:39:56.010000"],["2024-07-25T11:39:57.010000"],["2024-07-25T11:39:58.010000"],["2024-07-25T11:39:59.010000"],["2024-07-25T11:40:00.010000"],["2024-07-25T11:40:01.010000"],["2024-07-25T11:40:02.010000"],["2024-07-25T11:40:03.010000"],["2024-07-25T11:40:04.010000"],["2024-07-25T11:40:05.010000"],["2024-07-25T11:40:06.010000"],["2024-07-25T11:40:07.010000"],["2024-07-25T11:40:08.010000"],["2024-07-25T11:40:09.010000"],["2024-07-25T11:40:10.010000"],["2024-07-25T11:40:11.010000"],["2024-07-25T11:40:12.010000"],["2024-07-25T11:40:13.010000"],["2024-07-25T11:40:14.010000"],["2024-07-25T11:40:15.010000"],["2024-07-25T11:40:16.010000"],["2024-07-25T11:40:17.010000"],["2024-07-25T11:40:18.010000"],["2024-07-25T11:40:19.010000"],["2024-07-25T11:40:20.010000"],["2024-07-25T11:40:21.010000"],["2024-07-25T11:40:22.010000"],["2024-07-25T11:40:23.010000"],["2024-07-25T11:40:24.010000"],["2024-07-25T11:40:25.010000"],["2024-07-25T11:40:26.010000"],["2024-07-25T11:40:27.010000"],["2024-07-25T11:40:28.010000"],["2024-07-25T11:40:29.010000"],["2024-07-25T11:40:30.010000"],["2024-07-25T11:40:31.010000"],["2024-07-25T11:40:32.010000"],["2024-07-25T11:40:33.010000"],["2024-07-25T11:40:34.010000"],["2024-07-25T11:40:35.010000"],["2024-07-25T11:40:36.010000"],["2024-07-25T11:40:37.010000"],["2024-07-25T11:40:38.010000"],["2024-07-25T11:40:39.010000"],["2024-07-25T11:40:40.010000"],["2024-07-25T11:40:41.010000"],["2024-07-25T11:40:42.010000"],["2024-07-25T11:40:43.010000"],["2024-07-25T11:40:44.010000"],["2024-07-25T11:40:45.010000"],["2024-07-25T11:40:46.010000"],["2024-07-25T11:40:47.010000"],["2024-07-25T11:40:48.010000"],["2024-07-25T11:40:49.010000"],["2024-07-25T11:40:50.010000"],["2024-07-25T11:40:51.010000"],["2024-07-25T11:40:52.010000"],["2024-07-25T11:40:53.010000"],["2024-07-25T11:40:54.010000"],["2024-07-25T11:40:55.010000"],["2024-07-25T11:40:56.010000"],["2024-07-25T11:40:57.010000"],["2024-07-25T11:40:58.010000"],["2024-07-25T11:40:59.010000"],["2024-07-25T11:41:00.010000"],["2024-07-25T11:41:01.010000"],["2024-07-25T11:41:02.010000"],["2024-07-25T11:41:03.010000"],["2024-07-25T11:41:04.010000"],["2024-07-25T11:41:05.010000"],["2024-07-25T11:41:06.010000"],["2024-07-25T11:41:07.010000"],["2024-07-25T11:41:08.010000"],["2024-07-25T11:41:09.010000"],["2024-07-25T11:41:10.010000"],["2024-07-25T11:41:11.010000"],["2024-07-25T11:41:12.010000"],["2024-07-25T11:41:13.010000"],["2024-07-25T11:41:14.010000"],["2024-07-25T11:41:15.010000"],["2024-07-25T11:41:16.010000"],["2024-07-25T11:41:17.010000"],["2024-07-25T11:41:18.010000"],["2024-07-25T11:41:19.010000"],["2024-07-25T11:41:20.010000"],["2024-07-25T11:41:21.010000"],["2024-07-25T11:41:22.010000"],["2024-07-25T11:41:23.010000"],["2024-07-25T11:41:24.010000"],["2024-07-25T11:41:25.010000"],["2024-07-25T11:41:26.010000"],["2024-07-25T11:41:27.010000"],["2024-07-25T11:41:28.010000"],["2024-07-25T11:41:29.010000"],["2024-07-25T11:41:30.010000"],["2024-07-25T11:41:31.010000"],["2024-07-25T11:41:32.010000"],["2024-07-25T11:41:33.010000"],["2024-07-25T11:41:34.010000"],["2024-07-25T11:41:35.010000"],["2024-07-25T11:41:36.010000"],["2024-07-25T11:41:37.010000"],["2024-07-25T11:41:38.010000"],["2024-07-25T11:41:39.010000"],["2024-07-25T11:41:40.010000"],["2024-07-25T11:41:41.010000"],["2024-07-25T11:41:42.010000"],["2024-07-25T11:41:43.010000"],["2024-07-25T11:41:44.010000"],["2024-07-25T11:41:45.010000"],["2024-07-25T11:41:46.010000"],["2024-07-25T11:41:47.010000"],["2024-07-25T11:41:48.010000"],["2024-07-25T11:41:49.010000"],["2024-07-25T11:41:50.010000"],["2024-07-25T11:41:51.010000"],["2024-07-25T11:41:52.010000"],["2024-07-25T11:41:53.010000"],["2024-07-25T11:41:54.010000"],["2024-07-25T11:41:55.010000"],["2024-07-25T11:41:56.010000"],["2024-07-25T11:41:57.010000"],["2024-07-25T11:41:58.010000"],["2024-07-25T11:41:59.010000"],["2024-07-25T11:42:00.010000"],["2024-07-25T11:42:01.010000"],["2024-07-25T11:42:02.010000"],["2024-07-25T11:42:03.010000"],["2024-07-25T11:42:04.010000"],["2024-07-25T11:42:05.010000"],["2024-07-25T11:42:06.010000"],["2024-07-25T11:42:07.010000"],["2024-07-25T11:42:08.010000"],["2024-07-25T11:42:09.010000"],["2024-07-25T11:42:10.010000"],["2024-07-25T11:42:11.010000"],["2024-07-25T11:42:12.010000"],["2024-07-25T11:42:13.010000"],["2024-07-25T11:42:14.010000"],["2024-07-25T11:42:15.010000"],["2024-07-25T11:42:16.010000"],["2024-07-25T11:42:17.010000"],["2024-07-25T11:42:18.010000"],["2024-07-25T11:42:19.010000"],["2024-07-25T11:42:20.010000"],["2024-07-25T11:42:21.010000"],["2024-07-25T11:42:22.010000"],["2024-07-25T11:42:23.010000"],["2024-07-25T11:42:24.010000"],["2024-07-25T11:42:25.010000"],["2024-07-25T11:42:26.010000"],["2024-07-25T11:42:27.010000"],["2024-07-25T11:42:28.010000"],["2024-07-25T11:42:29.010000"],["2024-07-25T11:42:30.010000"],["2024-07-25T11:42:31.010000"],["2024-07-25T11:42:32.010000"],["2024-07-25T11:42:33.010000"],["2024-07-25T11:42:34.010000"],["2024-07-25T11:42:35.010000"],["2024-07-25T11:42:36.010000"],["2024-07-25T11:42:37.010000"],["2024-07-25T11:42:38.010000"],["2024-07-25T11:42:39.010000"],["2024-07-25T11:42:40.010000"],["2024-07-25T11:42:41.010000"],["2024-07-25T11:42:42.010000"],["2024-07-25T11:42:43.010000"],["2024-07-25T11:42:44.010000"],["2024-07-25T11:42:45.010000"],["2024-07-25T11:42:46.010000"],["2024-07-25T11:42:47.010000"],["2024-07-25T11:42:48.010000"],["2024-07-25T11:42:49.010000"],["2024-07-25T11:42:50.010000"],["2024-07-25T11:42:51.010000"],["2024-07-25T11:42:52.010000"],["2024-07-25T11:42:53.010000"],["2024-07-25T11:42:54.010000"],["2024-07-25T11:42:55.010000"],["2024-07-25T11:42:56.010000"],["2024-07-25T11:42:57.010000"],["2024-07-25T11:42:58.010000"],["2024-07-25T11:42:59.010000"],["2024-07-25T11:43:00.010000"],["2024-07-25T11:43:01.010000"],["2024-07-25T11:43:02.010000"],["2024-07-25T11:43:03.010000"],["2024-07-25T11:43:04.010000"],["2024-07-25T11:43:05.010000"],["2024-07-25T11:43:06.010000"],["2024-07-25T11:43:07.010000"],["2024-07-25T11:43:08.010000"],["2024-07-25T11:43:09.010000"],["2024-07-25T11:43:10.010000"],["2024-07-25T11:43:11.010000"],["2024-07-25T11:43:12.010000"],["2024-07-25T11:43:13.010000"],["2024-07-25T11:43:14.010000"],["2024-07-25T11:43:15.010000"],["2024-07-25T11:43:16.010000"],["2024-07-25T11:43:17.010000"],["2024-07-25T11:43:18.010000"],["2024-07-25T11:43:19.010000"],["2024-07-25T11:43:20.010000"],["2024-07-25T11:43:21.010000"],["2024-07-25T11:43:22.010000"],["2024-07-25T11:43:23.010000"],["2024-07-25T11:43:24.010000"],["2024-07-25T11:43:25.010000"],["2024-07-25T11:43:26.010000"],["2024-07-25T11:43:27.010000"],["2024-07-25T11:43:28.010000"],["2024-07-25T11:43:29.010000"],["2024-07-25T11:43:30.010000"],["2024-07-25T11:43:31.010000"],["2024-07-25T11:43:32.010000"],["2024-07-25T11:43:33.010000"],["2024-07-25T11:43:34.010000"],["2024-07-25T11:43:35.010000"],["2024-07-25T11:43:36.010000"],["2024-07-25T11:43:37.010000"],["2024-07-25T11:43:38.010000"],["2024-07-25T11:43:39.010000"],["2024-07-25T11:43:40.010000"],["2024-07-25T11:43:41.010000"],["2024-07-25T11:43:42.010000"],["2024-07-25T11:43:43.010000"],["2024-07-25T11:43:44.010000"],["2024-07-25T11:43:45.010000"],["2024-07-25T11:43:46.010000"],["2024-07-25T11:43:47.010000"],["2024-07-25T11:43:48.010000"],["2024-07-25T11:43:49.010000"],["2024-07-25T11:43:50.010000"],["2024-07-25T11:43:51.010000"],["2024-07-25T11:43:52.010000"],["2024-07-25T11:43:53.010000"],["2024-07-25T11:43:54.010000"],["2024-07-25T11:43:55.010000"],["2024-07-25T11:43:56.010000"],["2024-07-25T11:43:57.010000"],["2024-07-25T11:43:58.010000"],["2024-07-25T11:43:59.010000"],["2024-07-25T11:44:00.010000"],["2024-07-25T11:44:01.010000"],["2024-07-25T11:44:02.010000"],["2024-07-25T11:44:03.010000"],["2024-07-25T11:44:04.010000"],["2024-07-25T11:44:05.010000"],["2024-07-25T11:44:06.010000"],["2024-07-25T11:44:07.010000"],["2024-07-25T11:44:08.010000"],["2024-07-25T11:44:09.010000"],["2024-07-25T11:44:10.010000"],["2024-07-25T11:44:11.010000"],["2024-07-25T11:44:12.010000"],["2024-07-25T11:44:13.010000"],["2024-07-25T11:44:14.010000"],["2024-07-25T11:44:15.010000"],["2024-07-25T11:44:16.010000"],["2024-07-25T11:44:17.010000"],["2024-07-25T11:44:18.010000"],["2024-07-25T11:44:19.010000"],["2024-07-25T11:44:20.010000"],["2024-07-25T11:44:21.010000"],["2024-07-25T11:44:22.010000"],["2024-07-25T11:44:23.010000"],["2024-07-25T11:44:24.010000"],["2024-07-25T11:44:25.010000"],["2024-07-25T11:44:26.010000"],["2024-07-25T11:44:27.010000"],["2024-07-25T11:44:28.010000"],["2024-07-25T11:44:29.010000"],["2024-07-25T11:44:30.010000"],["2024-07-25T11:44:31.010000"],["2024-07-25T11:44:32.010000"],["2024-07-25T11:44:33.010000"],["2024-07-25T11:44:34.010000"],["2024-07-25T11:44:35.010000"],["2024-07-25T11:44:36.010000"],["2024-07-25T11:44:37.010000"],["2024-07-25T11:44:38.010000"],["2024-07-25T11:44:39.010000"],["2024-07-25T11:44:40.010000"],["2024-07-25T11:44:41.010000"],["2024-07-25T11:44:42.010000"],["2024-07-25T11:44:43.010000"],["2024-07-25T11:44:44.010000"],["2024-07-25T11:44:45.010000"],["2024-07-25T11:44:46.010000"],["2024-07-25T11:44:47.010000"],["2024-07-25T11:44:48.010000"],["2024-07-25T11:44:49.010000"],["2024-07-25T11:44:50.010000"],["2024-07-25T11:44:51.010000"],["2024-07-25T11:44:52.010000"],["2024-07-25T11:44:53.010000"],["2024-07-25T11:44:54.010000"],["2024-07-25T11:44:55.010000"],["2024-07-25T11:44:56.010000"],["2024-07-25T11:44:57.010000"],["2024-07-25T11:44:58.010000"],["2024-07-25T11:44:59.010000"],["2024-07-25T11:45:00.010000"],["2024-07-25T11:45:01.010000"],["2024-07-25T11:45:02.010000"],["2024-07-25T11:45:03.010000"],["2024-07-25T11:45:04.010000"],["2024-07-25T11:45:05.010000"],["2024-07-25T11:45:06.010000"],["2024-07-25T11:45:07.010000"],["2024-07-25T11:45:08.010000"],["2024-07-25T11:45:09.010000"],["2024-07-25T11:45:10.010000"],["2024-07-25T11:45:11.010000"],["2024-07-25T11:45:12.010000"],["2024-07-25T11:45:13.010000"],["2024-07-25T11:45:14.010000"],["2024-07-25T11:45:15.010000"],["2024-07-25T11:45:16.010000"],["2024-07-25T11:45:17.010000"],["2024-07-25T11:45:18.010000"],["2024-07-25T11:45:19.010000"],["2024-07-25T11:45:20.010000"],["2024-07-25T11:45:21.010000"],["2024-07-25T11:45:22.010000"],["2024-07-25T11:45:23.010000"],["2024-07-25T11:45:24.010000"],["2024-07-25T11:45:25.010000"],["2024-07-25T11:45:26.010000"],["2024-07-25T11:45:27.010000"],["2024-07-25T11:45:28.010000"],["2024-07-25T11:45:29.010000"],["2024-07-25T11:45:30.010000"],["2024-07-25T11:45:31.010000"],["2024-07-25T11:45:32.010000"],["2024-07-25T11:45:33.010000"],["2024-07-25T11:45:34.010000"],["2024-07-25T11:45:35.010000"],["2024-07-25T11:45:36.010000"],["2024-07-25T11:45:37.010000"],["2024-07-25T11:45:38.010000"],["2024-07-25T11:45:39.010000"],["2024-07-25T11:45:40.010000"],["2024-07-25T11:45:41.010000"],["2024-07-25T11:45:42.010000"],["2024-07-25T11:45:43.010000"],["2024-07-25T11:45:44.010000"],["2024-07-25T11:45:45.010000"],["2024-07-25T11:45:46.010000"],["2024-07-25T11:45:47.010000"],["2024-07-25T11:45:48.010000"],["2024-07-25T11:45:49.010000"],["2024-07-25T11:45:50.010000"],["2024-07-25T11:45:51.010000"],["2024-07-25T11:45:52.010000"],["2024-07-25T11:45:53.010000"],["2024-07-25T11:45:54.010000"],["2024-07-25T11:45:55.010000"],["2024-07-25T11:45:56.010000"],["2024-07-25T11:45:57.010000"],["2024-07-25T11:45:58.010000"],["2024-07-25T11:45:59.010000"],["2024-07-25T11:46:00.010000"],["2024-07-25T11:46:01.010000"],["2024-07-25T11:46:02.010000"],["2024-07-25T11:46:03.010000"],["2024-07-25T11:46:04.010000"],["2024-07-25T11:46:05.010000"],["2024-07-25T11:46:06.010000"],["2024-07-25T11:46:07.010000"],["2024-07-25T11:46:08.010000"],["2024-07-25T11:46:09.010000"],["2024-07-25T11:46:10.010000"],["2024-07-25T11:46:11.010000"],["2024-07-25T11:46:12.010000"],["2024-07-25T11:46:13.010000"],["2024-07-25T11:46:14.010000"],["2024-07-25T11:46:15.010000"],["2024-07-25T11:46:16.010000"],["2024-07-25T11:46:17.010000"],["2024-07-25T11:46:18.010000"],["2024-07-25T11:46:19.010000"],["2024-07-25T11:46:20.010000"],["2024-07-25T11:46:21.010000"],["2024-07-25T11:46:22.010000"],["2024-07-25T11:46:23.010000"],["2024-07-25T11:46:24.010000"],["2024-07-25T11:46:25.010000"],["2024-07-25T11:46:26.010000"],["2024-07-25T11:46:27.010000"],["2024-07-25T11:46:28.010000"],["2024-07-25T11:46:29.010000"],["2024-07-25T11:46:30.010000"],["2024-07-25T11:46:31.010000"],["2024-07-25T11:46:32.010000"],["2024-07-25T11:46:33.010000"],["2024-07-25T11:46:34.010000"],["2024-07-25T11:46:35.010000"],["2024-07-25T11:46:36.010000"],["2024-07-25T11:46:37.010000"],["2024-07-25T11:46:38.010000"],["2024-07-25T11:46:39.010000"],["2024-07-25T11:46:40.010000"],["2024-07-25T11:46:41.010000"],["2024-07-25T11:46:42.010000"],["2024-07-25T11:46:43.010000"],["2024-07-25T11:46:44.010000"],["2024-07-25T11:46:45.010000"],["2024-07-25T11:46:46.010000"],["2024-07-25T11:46:47.010000"],["2024-07-25T11:46:48.010000"],["2024-07-25T11:46:49.010000"],["2024-07-25T11:46:50.010000"],["2024-07-25T11:46:51.010000"],["2024-07-25T11:46:52.010000"],["2024-07-25T11:46:53.010000"],["2024-07-25T11:46:54.010000"],["2024-07-25T11:46:55.010000"],["2024-07-25T11:46:56.010000"],["2024-07-25T11:46:57.010000"],["2024-07-25T11:46:58.010000"],["2024-07-25T11:46:59.010000"],["2024-07-25T11:47:00.010000"],["2024-07-25T11:47:01.010000"],["2024-07-25T11:47:02.010000"],["2024-07-25T11:47:03.010000"],["2024-07-25T11:47:04.010000"],["2024-07-25T11:47:05.010000"],["2024-07-25T11:47:06.010000"],["2024-07-25T11:47:07.010000"],["2024-07-25T11:47:08.010000"],["2024-07-25T11:47:09.010000"],["2024-07-25T11:47:10.010000"],["2024-07-25T11:47:11.010000"],["2024-07-25T11:47:12.010000"],["2024-07-25T11:47:13.010000"],["2024-07-25T11:47:14.010000"],["2024-07-25T11:47:15.010000"],["2024-07-25T11:47:16.010000"],["2024-07-25T11:47:17.010000"],["2024-07-25T11:47:18.010000"],["2024-07-25T11:47:19.010000"],["2024-07-25T11:47:20.010000"],["2024-07-25T11:47:21.010000"],["2024-07-25T11:47:22.010000"],["2024-07-25T11:47:23.010000"],["2024-07-25T11:47:24.010000"],["2024-07-25T11:47:25.010000"],["2024-07-25T11:47:26.010000"],["2024-07-25T11:47:27.010000"],["2024-07-25T11:47:28.010000"],["2024-07-25T11:47:29.010000"],["2024-07-25T11:47:30.010000"],["2024-07-25T11:47:31.010000"],["2024-07-25T11:47:32.010000"],["2024-07-25T11:47:33.010000"],["2024-07-25T11:47:34.010000"],["2024-07-25T11:47:35.010000"],["2024-07-25T11:47:36.010000"],["2024-07-25T11:47:37.010000"],["2024-07-25T11:47:38.010000"],["2024-07-25T11:47:39.010000"],["2024-07-25T11:47:40.010000"],["2024-07-25T11:47:41.010000"],["2024-07-25T11:47:42.010000"],["2024-07-25T11:47:43.010000"],["2024-07-25T11:47:44.010000"],["2024-07-25T11:47:45.010000"],["2024-07-25T11:47:46.010000"],["2024-07-25T11:47:47.010000"],["2024-07-25T11:47:48.010000"],["2024-07-25T11:47:49.010000"],["2024-07-25T11:47:50.010000"],["2024-07-25T11:47:51.010000"],["2024-07-25T11:47:52.010000"],["2024-07-25T11:47:53.010000"],["2024-07-25T11:47:54.010000"],["2024-07-25T11:47:55.010000"],["2024-07-25T11:47:56.010000"],["2024-07-25T11:47:57.010000"],["2024-07-25T11:47:58.010000"],["2024-07-25T11:47:59.010000"],["2024-07-25T11:48:00.010000"],["2024-07-25T11:48:01.010000"],["2024-07-25T11:48:02.010000"],["2024-07-25T11:48:03.010000"],["2024-07-25T11:48:04.010000"],["2024-07-25T11:48:05.010000"],["2024-07-25T11:48:06.010000"],["2024-07-25T11:48:07.010000"],["2024-07-25T11:48:08.010000"],["2024-07-25T11:48:09.010000"],["2024-07-25T11:48:10.010000"],["2024-07-25T11:48:11.010000"],["2024-07-25T11:48:12.010000"],["2024-07-25T11:48:13.010000"],["2024-07-25T11:48:14.010000"],["2024-07-25T11:48:15.010000"],["2024-07-25T11:48:16.010000"],["2024-07-25T11:48:17.010000"],["2024-07-25T11:48:18.010000"],["2024-07-25T11:48:19.010000"],["2024-07-25T11:48:20.010000"],["2024-07-25T11:48:21.010000"],["2024-07-25T11:48:22.010000"],["2024-07-25T11:48:23.010000"],["2024-07-25T11:48:24.010000"],["2024-07-25T11:48:25.010000"],["2024-07-25T11:48:26.010000"],["2024-07-25T11:48:27.010000"],["2024-07-25T11:48:28.010000"],["2024-07-25T11:48:29.010000"],["2024-07-25T11:48:30.010000"],["2024-07-25T11:48:31.010000"],["2024-07-25T11:48:32.010000"],["2024-07-25T11:48:33.010000"],["2024-07-25T11:48:34.010000"],["2024-07-25T11:48:35.010000"],["2024-07-25T11:48:36.010000"],["2024-07-25T11:48:37.010000"],["2024-07-25T11:48:38.010000"],["2024-07-25T11:48:39.010000"],["2024-07-25T11:48:40.010000"],["2024-07-25T11:48:41.010000"],["2024-07-25T11:48:42.010000"],["2024-07-25T11:48:43.010000"],["2024-07-25T11:48:44.010000"],["2024-07-25T11:48:45.010000"],["2024-07-25T11:48:46.010000"],["2024-07-25T11:48:47.010000"],["2024-07-25T11:48:48.010000"],["2024-07-25T11:48:49.010000"],["2024-07-25T11:48:50.010000"],["2024-07-25T11:48:51.010000"],["2024-07-25T11:48:52.010000"],["2024-07-25T11:48:53.010000"],["2024-07-25T11:48:54.010000"],["2024-07-25T11:48:55.010000"],["2024-07-25T11:48:56.010000"],["2024-07-25T11:48:57.010000"],["2024-07-25T11:48:58.010000"],["2024-07-25T11:48:59.010000"],["2024-07-25T11:49:00.010000"],["2024-07-25T11:49:01.010000"],["2024-07-25T11:49:02.010000"],["2024-07-25T11:49:03.010000"],["2024-07-25T11:49:04.010000"],["2024-07-25T11:49:05.010000"],["2024-07-25T11:49:06.010000"],["2024-07-25T11:49:07.010000"],["2024-07-25T11:49:08.010000"],["2024-07-25T11:49:09.010000"],["2024-07-25T11:49:10.010000"],["2024-07-25T11:49:11.010000"],["2024-07-25T11:49:12.010000"],["2024-07-25T11:49:13.010000"],["2024-07-25T11:49:14.010000"],["2024-07-25T11:49:15.010000"],["2024-07-25T11:49:16.010000"],["2024-07-25T11:49:17.010000"],["2024-07-25T11:49:18.010000"],["2024-07-25T11:49:19.010000"],["2024-07-25T11:49:20.010000"],["2024-07-25T11:49:21.010000"],["2024-07-25T11:49:22.010000"],["2024-07-25T11:49:23.010000"],["2024-07-25T11:49:24.010000"],["2024-07-25T11:49:25.010000"],["2024-07-25T11:49:26.010000"],["2024-07-25T11:49:27.010000"],["2024-07-25T11:49:28.010000"],["2024-07-25T11:49:29.010000"],["2024-07-25T11:49:30.010000"],["2024-07-25T11:49:31.010000"],["2024-07-25T11:49:32.010000"],["2024-07-25T11:49:33.010000"],["2024-07-25T11:49:34.010000"],["2024-07-25T11:49:35.010000"],["2024-07-25T11:49:36.010000"],["2024-07-25T11:49:37.010000"],["2024-07-25T11:49:38.010000"],["2024-07-25T11:49:39.010000"],["2024-07-25T11:49:40.010000"],["2024-07-25T11:49:41.010000"],["2024-07-25T11:49:42.010000"],["2024-07-25T11:49:43.010000"],["2024-07-25T11:49:44.010000"],["2024-07-25T11:49:45.010000"],["2024-07-25T11:49:46.010000"],["2024-07-25T11:49:47.010000"],["2024-07-25T11:49:48.010000"],["2024-07-25T11:49:49.010000"],["2024-07-25T11:49:50.010000"],["2024-07-25T11:49:51.010000"],["2024-07-25T11:49:52.010000"],["2024-07-25T11:49:53.010000"],["2024-07-25T11:49:54.010000"],["2024-07-25T11:49:55.010000"],["2024-07-25T11:49:56.010000"],["2024-07-25T11:49:57.010000"],["2024-07-25T11:49:58.010000"],["2024-07-25T11:49:59.010000"],["2024-07-25T11:50:00.010000"],["2024-07-25T11:50:01.010000"],["2024-07-25T11:50:02.010000"],["2024-07-25T11:50:03.010000"],["2024-07-25T11:50:04.010000"],["2024-07-25T11:50:05.010000"],["2024-07-25T11:50:06.010000"],["2024-07-25T11:50:07.010000"],["2024-07-25T11:50:08.010000"],["2024-07-25T11:50:09.010000"],["2024-07-25T11:50:10.010000"],["2024-07-25T11:50:11.010000"],["2024-07-25T11:50:12.010000"],["2024-07-25T11:50:13.010000"],["2024-07-25T11:50:14.010000"],["2024-07-25T11:50:15.010000"],["2024-07-25T11:50:16.010000"],["2024-07-25T11:50:17.010000"],["2024-07-25T11:50:18.010000"],["2024-07-25T11:50:19.010000"],["2024-07-25T11:50:20.010000"],["2024-07-25T11:50:21.010000"],["2024-07-25T11:50:22.010000"],["2024-07-25T11:50:23.010000"],["2024-07-25T11:50:24.010000"],["2024-07-25T11:50:25.010000"],["2024-07-25T11:50:26.010000"],["2024-07-25T11:50:27.010000"],["2024-07-25T11:50:28.010000"],["2024-07-25T11:50:29.010000"],["2024-07-25T11:50:30.010000"],["2024-07-25T11:50:31.010000"],["2024-07-25T11:50:32.010000"],["2024-07-25T11:50:33.010000"],["2024-07-25T11:50:34.010000"],["2024-07-25T11:50:35.010000"],["2024-07-25T11:50:36.010000"],["2024-07-25T11:50:37.010000"],["2024-07-25T11:50:38.010000"],["2024-07-25T11:50:39.010000"],["2024-07-25T11:50:40.010000"],["2024-07-25T11:50:41.010000"],["2024-07-25T11:50:42.010000"],["2024-07-25T11:50:43.010000"],["2024-07-25T11:50:44.010000"],["2024-07-25T11:50:45.010000"],["2024-07-25T11:50:46.010000"],["2024-07-25T11:50:47.010000"],["2024-07-25T11:50:48.010000"],["2024-07-25T11:50:49.010000"],["2024-07-25T11:50:50.010000"],["2024-07-25T11:50:51.010000"],["2024-07-25T11:50:52.010000"],["2024-07-25T11:50:53.010000"],["2024-07-25T11:50:54.010000"],["2024-07-25T11:50:55.010000"],["2024-07-25T11:50:56.010000"],["2024-07-25T11:50:57.010000"],["2024-07-25T11:50:58.010000"],["2024-07-25T11:50:59.010000"],["2024-07-25T11:51:00.010000"],["2024-07-25T11:51:01.010000"],["2024-07-25T11:51:02.010000"],["2024-07-25T11:51:03.010000"],["2024-07-25T11:51:04.010000"],["2024-07-25T11:51:05.010000"],["2024-07-25T11:51:06.010000"],["2024-07-25T11:51:07.010000"],["2024-07-25T11:51:08.010000"],["2024-07-25T11:51:09.010000"],["2024-07-25T11:51:10.010000"],["2024-07-25T11:51:11.010000"],["2024-07-25T11:51:12.010000"],["2024-07-25T11:51:13.010000"],["2024-07-25T11:51:14.010000"],["2024-07-25T11:51:15.010000"],["2024-07-25T11:51:16.010000"],["2024-07-25T11:51:17.010000"],["2024-07-25T11:51:18.010000"],["2024-07-25T11:51:19.010000"],["2024-07-25T11:51:20.010000"],["2024-07-25T11:51:21.010000"],["2024-07-25T11:51:22.010000"],["2024-07-25T11:51:23.010000"],["2024-07-25T11:51:24.010000"],["2024-07-25T11:51:25.010000"],["2024-07-25T11:51:26.010000"],["2024-07-25T11:51:27.010000"],["2024-07-25T11:51:28.010000"],["2024-07-25T11:51:29.010000"],["2024-07-25T11:51:30.010000"],["2024-07-25T11:51:31.010000"],["2024-07-25T11:51:32.010000"],["2024-07-25T11:51:33.010000"],["2024-07-25T11:51:34.010000"],["2024-07-25T11:51:35.010000"],["2024-07-25T11:51:36.010000"],["2024-07-25T11:51:37.010000"],["2024-07-25T11:51:38.010000"],["2024-07-25T11:51:39.010000"],["2024-07-25T11:51:40.010000"],["2024-07-25T11:51:41.010000"],["2024-07-25T11:51:42.010000"],["2024-07-25T11:51:43.010000"],["2024-07-25T11:51:44.010000"],["2024-07-25T11:51:45.010000"],["2024-07-25T11:51:46.010000"],["2024-07-25T11:51:47.010000"],["2024-07-25T11:51:48.010000"],["2024-07-25T11:51:49.010000"],["2024-07-25T11:51:50.010000"],["2024-07-25T11:51:51.010000"],["2024-07-25T11:51:52.010000"],["2024-07-25T11:51:53.010000"],["2024-07-25T11:51:54.010000"],["2024-07-25T11:51:55.010000"],["2024-07-25T11:51:56.010000"],["2024-07-25T11:51:57.010000"],["2024-07-25T11:51:58.010000"],["2024-07-25T11:51:59.010000"],["2024-07-25T11:52:00.010000"],["2024-07-25T11:52:01.010000"],["2024-07-25T11:52:02.010000"],["2024-07-25T11:52:03.010000"],["2024-07-25T11:52:04.010000"],["2024-07-25T11:52:05.010000"],["2024-07-25T11:52:06.010000"],["2024-07-25T11:52:07.010000"],["2024-07-25T11:52:08.010000"],["2024-07-25T11:52:09.010000"],["2024-07-25T11:52:10.010000"],["2024-07-25T11:52:11.010000"],["2024-07-25T11:52:12.010000"],["2024-07-25T11:52:13.010000"],["2024-07-25T11:52:14.010000"],["2024-07-25T11:52:15.010000"],["2024-07-25T11:52:16.010000"],["2024-07-25T11:52:17.010000"],["2024-07-25T11:52:18.010000"],["2024-07-25T11:52:19.010000"],["2024-07-25T11:52:20.010000"],["2024-07-25T11:52:21.010000"],["2024-07-25T11:52:22.010000"],["2024-07-25T11:52:23.010000"],["2024-07-25T11:52:24.010000"],["2024-07-25T11:52:25.010000"],["2024-07-25T11:52:26.010000"],["2024-07-25T11:52:27.010000"],["2024-07-25T11:52:28.010000"],["2024-07-25T11:52:29.010000"],["2024-07-25T11:52:30.010000"],["2024-07-25T11:52:31.010000"],["2024-07-25T11:52:32.010000"],["2024-07-25T11:52:33.010000"],["2024-07-25T11:52:34.010000"],["2024-07-25T11:52:35.010000"],["2024-07-25T11:52:36.010000"],["2024-07-25T11:52:37.010000"],["2024-07-25T11:52:38.010000"],["2024-07-25T11:52:39.010000"],["2024-07-25T11:52:40.010000"],["2024-07-25T11:52:41.010000"],["2024-07-25T11:52:42.010000"],["2024-07-25T11:52:43.010000"],["2024-07-25T11:52:44.010000"],["2024-07-25T11:52:45.010000"],["2024-07-25T11:52:46.010000"],["2024-07-25T11:52:47.010000"],["2024-07-25T11:52:48.010000"],["2024-07-25T11:52:49.010000"],["2024-07-25T11:52:50.010000"],["2024-07-25T11:52:51.010000"],["2024-07-25T11:52:52.010000"],["2024-07-25T11:52:53.010000"],["2024-07-25T11:52:54.010000"],["2024-07-25T11:52:55.010000"],["2024-07-25T11:52:56.010000"],["2024-07-25T11:52:57.010000"],["2024-07-25T11:52:58.010000"],["2024-07-25T11:52:59.010000"],["2024-07-25T11:53:00.010000"],["2024-07-25T11:53:01.010000"],["2024-07-25T11:53:02.010000"],["2024-07-25T11:53:03.010000"],["2024-07-25T11:53:04.010000"],["2024-07-25T11:53:05.010000"],["2024-07-25T11:53:06.010000"],["2024-07-25T11:53:07.010000"],["2024-07-25T11:53:08.010000"],["2024-07-25T11:53:09.010000"],["2024-07-25T11:53:10.010000"],["2024-07-25T11:53:11.010000"],["2024-07-25T11:53:12.010000"],["2024-07-25T11:53:13.010000"],["2024-07-25T11:53:14.010000"],["2024-07-25T11:53:15.010000"],["2024-07-25T11:53:16.010000"],["2024-07-25T11:53:17.010000"],["2024-07-25T11:53:18.010000"],["2024-07-25T11:53:19.010000"],["2024-07-25T11:53:20.010000"],["2024-07-25T11:53:21.010000"],["2024-07-25T11:53:22.010000"],["2024-07-25T11:53:23.010000"],["2024-07-25T11:53:24.010000"],["2024-07-25T11:53:25.010000"],["2024-07-25T11:53:26.010000"],["2024-07-25T11:53:27.010000"],["2024-07-25T11:53:28.010000"],["2024-07-25T11:53:29.010000"],["2024-07-25T11:53:30.010000"],["2024-07-25T11:53:31.010000"],["2024-07-25T11:53:32.010000"],["2024-07-25T11:53:33.010000"],["2024-07-25T11:53:34.010000"],["2024-07-25T11:53:35.010000"],["2024-07-25T11:53:36.010000"],["2024-07-25T11:53:37.010000"],["2024-07-25T11:53:38.010000"],["2024-07-25T11:53:39.010000"],["2024-07-25T11:53:40.010000"],["2024-07-25T11:53:41.010000"],["2024-07-25T11:53:42.010000"],["2024-07-25T11:53:43.010000"],["2024-07-25T11:53:44.010000"],["2024-07-25T11:53:45.010000"],["2024-07-25T11:53:46.010000"],["2024-07-25T11:53:47.010000"],["2024-07-25T11:53:48.010000"],["2024-07-25T11:53:49.010000"],["2024-07-25T11:53:50.010000"],["2024-07-25T11:53:51.010000"],["2024-07-25T11:53:52.010000"],["2024-07-25T11:53:53.010000"],["2024-07-25T11:53:54.010000"],["2024-07-25T11:53:55.010000"],["2024-07-25T11:53:56.010000"],["2024-07-25T11:53:57.010000"],["2024-07-25T11:53:58.010000"],["2024-07-25T11:53:59.010000"],["2024-07-25T11:54:00.010000"],["2024-07-25T11:54:01.010000"],["2024-07-25T11:54:02.010000"],["2024-07-25T11:54:03.010000"],["2024-07-25T11:54:04.010000"],["2024-07-25T11:54:05.010000"],["2024-07-25T11:54:06.010000"],["2024-07-25T11:54:07.010000"],["2024-07-25T11:54:08.010000"],["2024-07-25T11:54:09.010000"],["2024-07-25T11:54:10.010000"],["2024-07-25T11:54:11.010000"],["2024-07-25T11:54:12.010000"],["2024-07-25T11:54:13.010000"],["2024-07-25T11:54:14.010000"],["2024-07-25T11:54:15.010000"],["2024-07-25T11:54:16.010000"],["2024-07-25T11:54:17.010000"],["2024-07-25T11:54:18.010000"],["2024-07-25T11:54:19.010000"],["2024-07-25T11:54:20.010000"],["2024-07-25T11:54:21.010000"],["2024-07-25T11:54:22.010000"],["2024-07-25T11:54:23.010000"],["2024-07-25T11:54:24.010000"],["2024-07-25T11:54:25.010000"],["2024-07-25T11:54:26.010000"],["2024-07-25T11:54:27.010000"],["2024-07-25T11:54:28.010000"],["2024-07-25T11:54:29.010000"],["2024-07-25T11:54:30.010000"],["2024-07-25T11:54:31.010000"],["2024-07-25T11:54:32.010000"],["2024-07-25T11:54:33.010000"],["2024-07-25T11:54:34.010000"],["2024-07-25T11:54:35.010000"],["2024-07-25T11:54:36.010000"],["2024-07-25T11:54:37.010000"],["2024-07-25T11:54:38.010000"],["2024-07-25T11:54:39.010000"],["2024-07-25T11:54:40.010000"],["2024-07-25T11:54:41.010000"],["2024-07-25T11:54:42.010000"],["2024-07-25T11:54:43.010000"],["2024-07-25T11:54:44.010000"],["2024-07-25T11:54:45.010000"],["2024-07-25T11:54:46.010000"],["2024-07-25T11:54:47.010000"],["2024-07-25T11:54:48.010000"],["2024-07-25T11:54:49.010000"],["2024-07-25T11:54:50.010000"],["2024-07-25T11:54:51.010000"],["2024-07-25T11:54:52.010000"],["2024-07-25T11:54:53.010000"],["2024-07-25T11:54:54.010000"],["2024-07-25T11:54:55.010000"],["2024-07-25T11:54:56.010000"],["2024-07-25T11:54:57.010000"],["2024-07-25T11:54:58.010000"],["2024-07-25T11:54:59.010000"],["2024-07-25T11:55:00.010000"],["2024-07-25T11:55:01.010000"],["2024-07-25T11:55:02.010000"],["2024-07-25T11:55:03.010000"],["2024-07-25T11:55:04.010000"],["2024-07-25T11:55:05.010000"],["2024-07-25T11:55:06.010000"],["2024-07-25T11:55:07.010000"],["2024-07-25T11:55:08.010000"],["2024-07-25T11:55:09.010000"],["2024-07-25T11:55:10.010000"],["2024-07-25T11:55:11.010000"],["2024-07-25T11:55:12.010000"],["2024-07-25T11:55:13.010000"],["2024-07-25T11:55:14.010000"],["2024-07-25T11:55:15.010000"],["2024-07-25T11:55:16.010000"],["2024-07-25T11:55:17.010000"],["2024-07-25T11:55:18.010000"],["2024-07-25T11:55:19.010000"],["2024-07-25T11:55:20.010000"],["2024-07-25T11:55:21.010000"],["2024-07-25T11:55:22.010000"],["2024-07-25T11:55:23.010000"],["2024-07-25T11:55:24.010000"],["2024-07-25T11:55:25.010000"],["2024-07-25T11:55:26.010000"],["2024-07-25T11:55:27.010000"],["2024-07-25T11:55:28.010000"],["2024-07-25T11:55:29.010000"],["2024-07-25T11:55:30.010000"],["2024-07-25T11:55:31.010000"],["2024-07-25T11:55:32.010000"],["2024-07-25T11:55:33.010000"],["2024-07-25T11:55:34.010000"],["2024-07-25T11:55:35.010000"],["2024-07-25T11:55:36.010000"],["2024-07-25T11:55:37.010000"],["2024-07-25T11:55:38.010000"],["2024-07-25T11:55:39.010000"],["2024-07-25T11:55:40.010000"],["2024-07-25T11:55:41.010000"],["2024-07-25T11:55:42.010000"],["2024-07-25T11:55:43.010000"],["2024-07-25T11:55:44.010000"],["2024-07-25T11:55:45.010000"],["2024-07-25T11:55:46.010000"],["2024-07-25T11:55:47.010000"],["2024-07-25T11:55:48.010000"],["2024-07-25T11:55:49.010000"],["2024-07-25T11:55:50.010000"],["2024-07-25T11:55:51.010000"],["2024-07-25T11:55:52.010000"],["2024-07-25T11:55:53.010000"],["2024-07-25T11:55:54.010000"],["2024-07-25T11:55:55.010000"],["2024-07-25T11:55:56.010000"],["2024-07-25T11:55:57.010000"],["2024-07-25T11:55:58.010000"],["2024-07-25T11:55:59.010000"],["2024-07-25T11:56:00.010000"],["2024-07-25T11:56:01.010000"],["2024-07-25T11:56:02.010000"],["2024-07-25T11:56:03.010000"],["2024-07-25T11:56:04.010000"],["2024-07-25T11:56:05.010000"],["2024-07-25T11:56:06.010000"],["2024-07-25T11:56:07.010000"],["2024-07-25T11:56:08.010000"],["2024-07-25T11:56:09.010000"],["2024-07-25T11:56:10.010000"],["2024-07-25T11:56:11.010000"],["2024-07-25T11:56:12.010000"],["2024-07-25T11:56:13.010000"],["2024-07-25T11:56:14.010000"],["2024-07-25T11:56:15.010000"],["2024-07-25T11:56:16.010000"],["2024-07-25T11:56:17.010000"],["2024-07-25T11:56:18.010000"],["2024-07-25T11:56:19.010000"],["2024-07-25T11:56:20.010000"],["2024-07-25T11:56:21.010000"],["2024-07-25T11:56:22.010000"],["2024-07-25T11:56:23.010000"],["2024-07-25T11:56:24.010000"],["2024-07-25T11:56:25.010000"],["2024-07-25T11:56:26.010000"],["2024-07-25T11:56:27.010000"],["2024-07-25T11:56:28.010000"],["2024-07-25T11:56:29.010000"],["2024-07-25T11:56:30.010000"],["2024-07-25T11:56:31.010000"],["2024-07-25T11:56:32.010000"],["2024-07-25T11:56:33.010000"],["2024-07-25T11:56:34.010000"],["2024-07-25T11:56:35.010000"],["2024-07-25T11:56:36.010000"],["2024-07-25T11:56:37.010000"],["2024-07-25T11:56:38.010000"],["2024-07-25T11:56:39.010000"],["2024-07-25T11:56:40.010000"],["2024-07-25T11:56:41.010000"],["2024-07-25T11:56:42.010000"],["2024-07-25T11:56:43.010000"],["2024-07-25T11:56:44.010000"],["2024-07-25T11:56:45.010000"],["2024-07-25T11:56:46.010000"],["2024-07-25T11:56:47.010000"],["2024-07-25T11:56:48.010000"],["2024-07-25T11:56:49.010000"],["2024-07-25T11:56:50.010000"],["2024-07-25T11:56:51.010000"],["2024-07-25T11:56:52.010000"],["2024-07-25T11:56:53.010000"],["2024-07-25T11:56:54.010000"],["2024-07-25T11:56:55.010000"],["2024-07-25T11:56:56.010000"],["2024-07-25T11:56:57.010000"],["2024-07-25T11:56:58.010000"],["2024-07-25T11:56:59.010000"],["2024-07-25T11:57:00.010000"],["2024-07-25T11:57:01.010000"],["2024-07-25T11:57:02.010000"],["2024-07-25T11:57:03.010000"],["2024-07-25T11:57:04.010000"],["2024-07-25T11:57:05.010000"],["2024-07-25T11:57:06.010000"],["2024-07-25T11:57:07.010000"],["2024-07-25T11:57:08.010000"],["2024-07-25T11:57:09.010000"],["2024-07-25T11:57:10.010000"],["2024-07-25T11:57:11.010000"],["2024-07-25T11:57:12.010000"],["2024-07-25T11:57:13.010000"],["2024-07-25T11:57:14.010000"],["2024-07-25T11:57:15.010000"],["2024-07-25T11:57:16.010000"],["2024-07-25T11:57:17.010000"],["2024-07-25T11:57:18.010000"],["2024-07-25T11:57:19.010000"],["2024-07-25T11:57:20.010000"],["2024-07-25T11:57:21.010000"],["2024-07-25T11:57:22.010000"],["2024-07-25T11:57:23.010000"],["2024-07-25T11:57:24.010000"],["2024-07-25T11:57:25.010000"],["2024-07-25T11:57:26.010000"],["2024-07-25T11:57:27.010000"],["2024-07-25T11:57:28.010000"],["2024-07-25T11:57:29.010000"],["2024-07-25T11:57:30.010000"],["2024-07-25T11:57:31.010000"],["2024-07-25T11:57:32.010000"],["2024-07-25T11:57:33.010000"],["2024-07-25T11:57:34.010000"],["2024-07-25T11:57:35.010000"],["2024-07-25T11:57:36.010000"],["2024-07-25T11:57:37.010000"],["2024-07-25T11:57:38.010000"],["2024-07-25T11:57:39.010000"],["2024-07-25T11:57:40.010000"],["2024-07-25T11:57:41.010000"],["2024-07-25T11:57:42.010000"],["2024-07-25T11:57:43.010000"],["2024-07-25T11:57:44.010000"],["2024-07-25T11:57:45.010000"],["2024-07-25T11:57:46.010000"],["2024-07-25T11:57:47.010000"],["2024-07-25T11:57:48.010000"],["2024-07-25T11:57:49.010000"],["2024-07-25T11:57:50.010000"],["2024-07-25T11:57:51.010000"],["2024-07-25T11:57:52.010000"],["2024-07-25T11:57:53.010000"],["2024-07-25T11:57:54.010000"],["2024-07-25T11:57:55.010000"],["2024-07-25T11:57:56.010000"],["2024-07-25T11:57:57.010000"],["2024-07-25T11:57:58.010000"],["2024-07-25T11:57:59.010000"],["2024-07-25T11:58:00.010000"],["2024-07-25T11:58:01.010000"],["2024-07-25T11:58:02.010000"],["2024-07-25T11:58:03.010000"],["2024-07-25T11:58:04.010000"],["2024-07-25T11:58:05.010000"],["2024-07-25T11:58:06.010000"],["2024-07-25T11:58:07.010000"],["2024-07-25T11:58:08.010000"],["2024-07-25T11:58:09.010000"],["2024-07-25T11:58:10.010000"],["2024-07-25T11:58:11.010000"],["2024-07-25T11:58:12.010000"],["2024-07-25T11:58:13.010000"],["2024-07-25T11:58:14.010000"],["2024-07-25T11:58:15.010000"],["2024-07-25T11:58:16.010000"],["2024-07-25T11:58:17.010000"],["2024-07-25T11:58:18.010000"],["2024-07-25T11:58:19.010000"],["2024-07-25T11:58:20.010000"],["2024-07-25T11:58:21.010000"],["2024-07-25T11:58:22.010000"],["2024-07-25T11:58:23.010000"],["2024-07-25T11:58:24.010000"],["2024-07-25T11:58:25.010000"],["2024-07-25T11:58:26.010000"],["2024-07-25T11:58:27.010000"],["2024-07-25T11:58:28.010000"],["2024-07-25T11:58:29.010000"],["2024-07-25T11:58:30.010000"],["2024-07-25T11:58:31.010000"],["2024-07-25T11:58:32.010000"],["2024-07-25T11:58:33.010000"],["2024-07-25T11:58:34.010000"],["2024-07-25T11:58:35.010000"],["2024-07-25T11:58:36.010000"],["2024-07-25T11:58:37.010000"],["2024-07-25T11:58:38.010000"],["2024-07-25T11:58:39.010000"],["2024-07-25T11:58:40.010000"],["2024-07-25T11:58:41.010000"],["2024-07-25T11:58:42.010000"],["2024-07-25T11:58:43.010000"],["2024-07-25T11:58:44.010000"],["2024-07-25T11:58:45.010000"],["2024-07-25T11:58:46.010000"],["2024-07-25T11:58:47.010000"],["2024-07-25T11:58:48.010000"],["2024-07-25T11:58:49.010000"],["2024-07-25T11:58:50.010000"],["2024-07-25T11:58:51.010000"],["2024-07-25T11:58:52.010000"],["2024-07-25T11:58:53.010000"],["2024-07-25T11:58:54.010000"],["2024-07-25T11:58:55.010000"],["2024-07-25T11:58:56.010000"],["2024-07-25T11:58:57.010000"],["2024-07-25T11:58:58.010000"],["2024-07-25T11:58:59.010000"],["2024-07-25T11:59:00.010000"],["2024-07-25T11:59:01.010000"],["2024-07-25T11:59:02.010000"],["2024-07-25T11:59:03.010000"],["2024-07-25T11:59:04.010000"],["2024-07-25T11:59:05.010000"],["2024-07-25T11:59:06.010000"],["2024-07-25T11:59:07.010000"],["2024-07-25T11:59:08.010000"],["2024-07-25T11:59:09.010000"],["2024-07-25T11:59:10.010000"],["2024-07-25T11:59:11.010000"],["2024-07-25T11:59:12.010000"],["2024-07-25T11:59:13.010000"],["2024-07-25T11:59:14.010000"],["2024-07-25T11:59:15.010000"],["2024-07-25T11:59:16.010000"],["2024-07-25T11:59:17.010000"],["2024-07-25T11:59:18.010000"],["2024-07-25T11:59:19.010000"],["2024-07-25T11:59:20.010000"],["2024-07-25T11:59:21.010000"],["2024-07-25T11:59:22.010000"],["2024-07-25T11:59:23.010000"],["2024-07-25T11:59:24.010000"],["2024-07-25T11:59:25.010000"],["2024-07-25T11:59:26.010000"],["2024-07-25T11:59:27.010000"],["2024-07-25T11:59:28.010000"],["2024-07-25T11:59:29.010000"],["2024-07-25T11:59:30.010000"],["2024-07-25T11:59:31.010000"],["2024-07-25T11:59:32.010000"],["2024-07-25T11:59:33.010000"],["2024-07-25T11:59:34.010000"],["2024-07-25T11:59:35.010000"],["2024-07-25T11:59:36.010000"],["2024-07-25T11:59:37.010000"],["2024-07-25T11:59:38.010000"],["2024-07-25T11:59:39.010000"],["2024-07-25T11:59:40.010000"],["2024-07-25T11:59:41.010000"],["2024-07-25T11:59:42.010000"],["2024-07-25T11:59:43.010000"],["2024-07-25T11:59:44.010000"],["2024-07-25T11:59:45.010000"],["2024-07-25T11:59:46.010000"],["2024-07-25T11:59:47.010000"],["2024-07-25T11:59:48.010000"],["2024-07-25T11:59:49.010000"],["2024-07-25T11:59:50.010000"],["2024-07-25T11:59:51.010000"],["2024-07-25T11:59:52.010000"],["2024-07-25T11:59:53.010000"],["2024-07-25T11:59:54.010000"],["2024-07-25T11:59:55.010000"],["2024-07-25T11:59:56.010000"],["2024-07-25T11:59:57.010000"],["2024-07-25T11:59:58.010000"],["2024-07-25T11:59:59.010000"],["2024-07-25T12:00:00.010000"],["2024-07-25T12:00:01.010000"],["2024-07-25T12:00:02.010000"],["2024-07-25T12:00:03.010000"],["2024-07-25T12:00:04.010000"],["2024-07-25T12:00:05.010000"],["2024-07-25T12:00:06.010000"],["2024-07-25T12:00:07.010000"],["2024-07-25T12:00:08.010000"],["2024-07-25T12:00:09.010000"],["2024-07-25T12:00:10.010000"],["2024-07-25T12:00:11.010000"],["2024-07-25T12:00:12.010000"],["2024-07-25T12:00:13.010000"],["2024-07-25T12:00:14.010000"],["2024-07-25T12:00:15.010000"],["2024-07-25T12:00:16.010000"],["2024-07-25T12:00:17.010000"],["2024-07-25T12:00:18.010000"],["2024-07-25T12:00:19.010000"],["2024-07-25T12:00:20.010000"],["2024-07-25T12:00:21.010000"],["2024-07-25T12:00:22.010000"],["2024-07-25T12:00:23.010000"],["2024-07-25T12:00:24.010000"],["2024-07-25T12:00:25.010000"],["2024-07-25T12:00:26.010000"],["2024-07-25T12:00:27.010000"],["2024-07-25T12:00:28.010000"],["2024-07-25T12:00:29.010000"],["2024-07-25T12:00:30.010000"],["2024-07-25T12:00:31.010000"],["2024-07-25T12:00:32.010000"],["2024-07-25T12:00:33.010000"],["2024-07-25T12:00:34.010000"],["2024-07-25T12:00:35.010000"],["2024-07-25T12:00:36.010000"],["2024-07-25T12:00:37.010000"],["2024-07-25T12:00:38.010000"],["2024-07-25T12:00:39.010000"],["2024-07-25T12:00:40.010000"],["2024-07-25T12:00:41.010000"],["2024-07-25T12:00:42.010000"],["2024-07-25T12:00:43.010000"],["2024-07-25T12:00:44.010000"],["2024-07-25T12:00:45.010000"],["2024-07-25T12:00:46.010000"],["2024-07-25T12:00:47.010000"],["2024-07-25T12:00:48.010000"],["2024-07-25T12:00:49.010000"],["2024-07-25T12:00:50.010000"],["2024-07-25T12:00:51.010000"],["2024-07-25T12:00:52.010000"],["2024-07-25T12:00:53.010000"],["2024-07-25T12:00:54.010000"],["2024-07-25T12:00:55.010000"],["2024-07-25T12:00:56.010000"],["2024-07-25T12:00:57.010000"],["2024-07-25T12:00:58.010000"],["2024-07-25T12:00:59.010000"],["2024-07-25T12:01:00.010000"],["2024-07-25T12:01:01.010000"],["2024-07-25T12:01:02.010000"],["2024-07-25T12:01:03.010000"],["2024-07-25T12:01:04.010000"],["2024-07-25T12:01:05.010000"],["2024-07-25T12:01:06.010000"],["2024-07-25T12:01:07.010000"],["2024-07-25T12:01:08.010000"],["2024-07-25T12:01:09.010000"],["2024-07-25T12:01:10.010000"],["2024-07-25T12:01:11.010000"],["2024-07-25T12:01:12.010000"],["2024-07-25T12:01:13.010000"],["2024-07-25T12:01:14.010000"],["2024-07-25T12:01:15.010000"],["2024-07-25T12:01:16.010000"],["2024-07-25T12:01:17.010000"],["2024-07-25T12:01:18.010000"],["2024-07-25T12:01:19.010000"],["2024-07-25T12:01:20.010000"],["2024-07-25T12:01:21.010000"],["2024-07-25T12:01:22.010000"],["2024-07-25T12:01:23.010000"],["2024-07-25T12:01:24.010000"],["2024-07-25T12:01:25.010000"],["2024-07-25T12:01:26.010000"],["2024-07-25T12:01:27.010000"],["2024-07-25T12:01:28.010000"],["2024-07-25T12:01:29.010000"],["2024-07-25T12:01:30.010000"],["2024-07-25T12:01:31.010000"],["2024-07-25T12:01:32.010000"],["2024-07-25T12:01:33.010000"],["2024-07-25T12:01:34.010000"],["2024-07-25T12:01:35.010000"],["2024-07-25T12:01:36.010000"],["2024-07-25T12:01:37.010000"],["2024-07-25T12:01:38.010000"],["2024-07-25T12:01:39.010000"],["2024-07-25T12:01:40.010000"],["2024-07-25T12:01:41.010000"],["2024-07-25T12:01:42.010000"],["2024-07-25T12:01:43.010000"],["2024-07-25T12:01:44.010000"],["2024-07-25T12:01:45.010000"],["2024-07-25T12:01:46.010000"],["2024-07-25T12:01:47.010000"],["2024-07-25T12:01:48.010000"],["2024-07-25T12:01:49.010000"],["2024-07-25T12:01:50.010000"],["2024-07-25T12:01:51.010000"],["2024-07-25T12:01:52.010000"],["2024-07-25T12:01:53.010000"],["2024-07-25T12:01:54.010000"],["2024-07-25T12:01:55.010000"],["2024-07-25T12:01:56.010000"],["2024-07-25T12:01:57.010000"],["2024-07-25T12:01:58.010000"],["2024-07-25T12:01:59.010000"],["2024-07-25T12:02:00.010000"],["2024-07-25T12:02:01.010000"],["2024-07-25T12:02:02.010000"],["2024-07-25T12:02:03.010000"],["2024-07-25T12:02:04.010000"],["2024-07-25T12:02:05.010000"],["2024-07-25T12:02:06.010000"],["2024-07-25T12:02:07.010000"],["2024-07-25T12:02:08.010000"],["2024-07-25T12:02:09.010000"],["2024-07-25T12:02:10.010000"],["2024-07-25T12:02:11.010000"],["2024-07-25T12:02:12.010000"],["2024-07-25T12:02:13.010000"],["2024-07-25T12:02:14.010000"],["2024-07-25T12:02:15.010000"],["2024-07-25T12:02:16.010000"],["2024-07-25T12:02:17.010000"],["2024-07-25T12:02:18.010000"],["2024-07-25T12:02:19.010000"],["2024-07-25T12:02:20.010000"],["2024-07-25T12:02:21.010000"],["2024-07-25T12:02:22.010000"],["2024-07-25T12:02:23.010000"],["2024-07-25T12:02:24.010000"],["2024-07-25T12:02:25.010000"],["2024-07-25T12:02:26.010000"],["2024-07-25T12:02:27.010000"],["2024-07-25T12:02:28.010000"],["2024-07-25T12:02:29.010000"],["2024-07-25T12:02:30.010000"],["2024-07-25T12:02:31.010000"],["2024-07-25T12:02:32.010000"],["2024-07-25T12:02:33.010000"],["2024-07-25T12:02:34.010000"],["2024-07-25T12:02:35.010000"],["2024-07-25T12:02:36.010000"],["2024-07-25T12:02:37.010000"],["2024-07-25T12:02:38.010000"],["2024-07-25T12:02:39.010000"],["2024-07-25T12:02:40.010000"],["2024-07-25T12:02:41.010000"],["2024-07-25T12:02:42.010000"],["2024-07-25T12:02:43.010000"],["2024-07-25T12:02:44.010000"],["2024-07-25T12:02:45.010000"],["2024-07-25T12:02:46.010000"],["2024-07-25T12:02:47.010000"],["2024-07-25T12:02:48.010000"],["2024-07-25T12:02:49.010000"],["2024-07-25T12:02:50.010000"],["2024-07-25T12:02:51.010000"],["2024-07-25T12:02:52.010000"],["2024-07-25T12:02:53.010000"],["2024-07-25T12:02:54.010000"],["2024-07-25T12:02:55.010000"],["2024-07-25T12:02:56.010000"],["2024-07-25T12:02:57.010000"],["2024-07-25T12:02:58.010000"],["2024-07-25T12:02:59.010000"],["2024-07-25T12:03:00.010000"],["2024-07-25T12:03:01.010000"],["2024-07-25T12:03:02.010000"],["2024-07-25T12:03:03.010000"],["2024-07-25T12:03:04.010000"],["2024-07-25T12:03:05.010000"],["2024-07-25T12:03:06.010000"],["2024-07-25T12:03:07.010000"],["2024-07-25T12:03:08.010000"],["2024-07-25T12:03:09.010000"],["2024-07-25T12:03:10.010000"],["2024-07-25T12:03:11.010000"],["2024-07-25T12:03:12.010000"],["2024-07-25T12:03:13.010000"],["2024-07-25T12:03:14.010000"],["2024-07-25T12:03:15.010000"],["2024-07-25T12:03:16.010000"],["2024-07-25T12:03:17.010000"],["2024-07-25T12:03:18.010000"],["2024-07-25T12:03:19.010000"],["2024-07-25T12:03:20.010000"],["2024-07-25T12:03:21.010000"],["2024-07-25T12:03:22.010000"],["2024-07-25T12:03:23.010000"],["2024-07-25T12:03:24.010000"],["2024-07-25T12:03:25.010000"],["2024-07-25T12:03:26.010000"],["2024-07-25T12:03:27.010000"],["2024-07-25T12:03:28.010000"],["2024-07-25T12:03:29.010000"],["2024-07-25T12:03:30.010000"],["2024-07-25T12:03:31.010000"],["2024-07-25T12:03:32.010000"],["2024-07-25T12:03:33.010000"],["2024-07-25T12:03:34.010000"],["2024-07-25T12:03:35.010000"],["2024-07-25T12:03:36.010000"],["2024-07-25T12:03:37.010000"],["2024-07-25T12:03:38.010000"],["2024-07-25T12:03:39.010000"],["2024-07-25T12:03:40.010000"],["2024-07-25T12:03:41.010000"],["2024-07-25T12:03:42.010000"],["2024-07-25T12:03:43.010000"],["2024-07-25T12:03:44.010000"],["2024-07-25T12:03:45.010000"],["2024-07-25T12:03:46.010000"],["2024-07-25T12:03:47.010000"],["2024-07-25T12:03:48.010000"],["2024-07-25T12:03:49.010000"],["2024-07-25T12:03:50.010000"],["2024-07-25T12:03:51.010000"],["2024-07-25T12:03:52.010000"],["2024-07-25T12:03:53.010000"],["2024-07-25T12:03:54.010000"],["2024-07-25T12:03:55.010000"],["2024-07-25T12:03:56.010000"],["2024-07-25T12:03:57.010000"],["2024-07-25T12:03:58.010000"],["2024-07-25T12:03:59.010000"],["2024-07-25T12:04:00.010000"],["2024-07-25T12:04:01.010000"],["2024-07-25T12:04:02.010000"],["2024-07-25T12:04:03.010000"],["2024-07-25T12:04:04.010000"],["2024-07-25T12:04:05.010000"],["2024-07-25T12:04:06.010000"],["2024-07-25T12:04:07.010000"],["2024-07-25T12:04:08.010000"],["2024-07-25T12:04:09.010000"],["2024-07-25T12:04:10.010000"],["2024-07-25T12:04:11.010000"],["2024-07-25T12:04:12.010000"],["2024-07-25T12:04:13.010000"],["2024-07-25T12:04:14.010000"],["2024-07-25T12:04:15.010000"],["2024-07-25T12:04:16.010000"],["2024-07-25T12:04:17.010000"],["2024-07-25T12:04:18.010000"],["2024-07-25T12:04:19.010000"],["2024-07-25T12:04:20.010000"],["2024-07-25T12:04:21.010000"],["2024-07-25T12:04:22.010000"],["2024-07-25T12:04:23.010000"],["2024-07-25T12:04:24.010000"],["2024-07-25T12:04:25.010000"],["2024-07-25T12:04:26.010000"],["2024-07-25T12:04:27.010000"],["2024-07-25T12:04:28.010000"],["2024-07-25T12:04:29.010000"],["2024-07-25T12:04:30.010000"],["2024-07-25T12:04:31.010000"],["2024-07-25T12:04:32.010000"],["2024-07-25T12:04:33.010000"],["2024-07-25T12:04:34.010000"],["2024-07-25T12:04:35.010000"],["2024-07-25T12:04:36.010000"],["2024-07-25T12:04:37.010000"],["2024-07-25T12:04:38.010000"],["2024-07-25T12:04:39.010000"],["2024-07-25T12:04:40.010000"],["2024-07-25T12:04:41.010000"],["2024-07-25T12:04:42.010000"],["2024-07-25T12:04:43.010000"],["2024-07-25T12:04:44.010000"],["2024-07-25T12:04:45.010000"],["2024-07-25T12:04:46.010000"],["2024-07-25T12:04:47.010000"],["2024-07-25T12:04:48.010000"],["2024-07-25T12:04:49.010000"],["2024-07-25T12:04:50.010000"],["2024-07-25T12:04:51.010000"],["2024-07-25T12:04:52.010000"],["2024-07-25T12:04:53.010000"],["2024-07-25T12:04:54.010000"],["2024-07-25T12:04:55.010000"],["2024-07-25T12:04:56.010000"],["2024-07-25T12:04:57.010000"],["2024-07-25T12:04:58.010000"],["2024-07-25T12:04:59.010000"],["2024-07-25T12:05:00.010000"],["2024-07-25T12:05:01.010000"],["2024-07-25T12:05:02.010000"],["2024-07-25T12:05:03.010000"],["2024-07-25T12:05:04.010000"],["2024-07-25T12:05:05.010000"],["2024-07-25T12:05:06.010000"],["2024-07-25T12:05:07.010000"],["2024-07-25T12:05:08.010000"],["2024-07-25T12:05:09.010000"],["2024-07-25T12:05:10.010000"],["2024-07-25T12:05:11.010000"],["2024-07-25T12:05:12.010000"],["2024-07-25T12:05:13.010000"],["2024-07-25T12:05:14.010000"],["2024-07-25T12:05:15.010000"],["2024-07-25T12:05:16.010000"],["2024-07-25T12:05:17.010000"],["2024-07-25T12:05:18.010000"],["2024-07-25T12:05:19.010000"],["2024-07-25T12:05:20.010000"],["2024-07-25T12:05:21.010000"],["2024-07-25T12:05:22.010000"],["2024-07-25T12:05:23.010000"],["2024-07-25T12:05:24.010000"],["2024-07-25T12:05:25.010000"],["2024-07-25T12:05:26.010000"],["2024-07-25T12:05:27.010000"],["2024-07-25T12:05:28.010000"],["2024-07-25T12:05:29.010000"],["2024-07-25T12:05:30.010000"],["2024-07-25T12:05:31.010000"],["2024-07-25T12:05:32.010000"],["2024-07-25T12:05:33.010000"],["2024-07-25T12:05:34.010000"],["2024-07-25T12:05:35.010000"],["2024-07-25T12:05:36.010000"],["2024-07-25T12:05:37.010000"],["2024-07-25T12:05:38.010000"],["2024-07-25T12:05:39.010000"],["2024-07-25T12:05:40.010000"],["2024-07-25T12:05:41.010000"],["2024-07-25T12:05:42.010000"],["2024-07-25T12:05:43.010000"],["2024-07-25T12:05:44.010000"],["2024-07-25T12:05:45.010000"],["2024-07-25T12:05:46.010000"],["2024-07-25T12:05:47.010000"],["2024-07-25T12:05:48.010000"],["2024-07-25T12:05:49.010000"],["2024-07-25T12:05:50.010000"],["2024-07-25T12:05:51.010000"],["2024-07-25T12:05:52.010000"],["2024-07-25T12:05:53.010000"],["2024-07-25T12:05:54.010000"],["2024-07-25T12:05:55.010000"],["2024-07-25T12:05:56.010000"],["2024-07-25T12:05:57.010000"],["2024-07-25T12:05:58.010000"],["2024-07-25T12:05:59.010000"],["2024-07-25T12:06:00.010000"],["2024-07-25T12:06:01.010000"],["2024-07-25T12:06:02.010000"],["2024-07-25T12:06:03.010000"],["2024-07-25T12:06:04.010000"],["2024-07-25T12:06:05.010000"],["2024-07-25T12:06:06.010000"],["2024-07-25T12:06:07.010000"],["2024-07-25T12:06:08.010000"],["2024-07-25T12:06:09.010000"],["2024-07-25T12:06:10.010000"],["2024-07-25T12:06:11.010000"],["2024-07-25T12:06:12.010000"],["2024-07-25T12:06:13.010000"],["2024-07-25T12:06:14.010000"],["2024-07-25T12:06:15.010000"],["2024-07-25T12:06:16.010000"],["2024-07-25T12:06:17.010000"],["2024-07-25T12:06:18.010000"],["2024-07-25T12:06:19.010000"],["2024-07-25T12:06:20.010000"],["2024-07-25T12:06:21.010000"],["2024-07-25T12:06:22.010000"],["2024-07-25T12:06:23.010000"],["2024-07-25T12:06:24.010000"],["2024-07-25T12:06:25.010000"],["2024-07-25T12:06:26.010000"],["2024-07-25T12:06:27.010000"],["2024-07-25T12:06:28.010000"],["2024-07-25T12:06:29.010000"],["2024-07-25T12:06:30.010000"],["2024-07-25T12:06:31.010000"],["2024-07-25T12:06:32.010000"],["2024-07-25T12:06:33.010000"],["2024-07-25T12:06:34.010000"],["2024-07-25T12:06:35.010000"],["2024-07-25T12:06:36.010000"],["2024-07-25T12:06:37.010000"],["2024-07-25T12:06:38.010000"],["2024-07-25T12:06:39.010000"],["2024-07-25T12:06:40.010000"],["2024-07-25T12:06:41.010000"],["2024-07-25T12:06:42.010000"],["2024-07-25T12:06:43.010000"],["2024-07-25T12:06:44.010000"],["2024-07-25T12:06:45.010000"],["2024-07-25T12:06:46.010000"],["2024-07-25T12:06:47.010000"],["2024-07-25T12:06:48.010000"],["2024-07-25T12:06:49.010000"],["2024-07-25T12:06:50.010000"],["2024-07-25T12:06:51.010000"],["2024-07-25T12:06:52.010000"],["2024-07-25T12:06:53.010000"],["2024-07-25T12:06:54.010000"],["2024-07-25T12:06:55.010000"],["2024-07-25T12:06:56.010000"],["2024-07-25T12:06:57.010000"],["2024-07-25T12:06:58.010000"],["2024-07-25T12:06:59.010000"],["2024-07-25T12:07:00.010000"],["2024-07-25T12:07:01.010000"],["2024-07-25T12:07:02.010000"],["2024-07-25T12:07:03.010000"],["2024-07-25T12:07:04.010000"],["2024-07-25T12:07:05.010000"],["2024-07-25T12:07:06.010000"],["2024-07-25T12:07:07.010000"],["2024-07-25T12:07:08.010000"],["2024-07-25T12:07:09.010000"],["2024-07-25T12:07:10.010000"],["2024-07-25T12:07:11.010000"],["2024-07-25T12:07:12.010000"],["2024-07-25T12:07:13.010000"],["2024-07-25T12:07:14.010000"],["2024-07-25T12:07:15.010000"],["2024-07-25T12:07:16.010000"],["2024-07-25T12:07:17.010000"],["2024-07-25T12:07:18.010000"],["2024-07-25T12:07:19.010000"],["2024-07-25T12:07:20.010000"],["2024-07-25T12:07:21.010000"],["2024-07-25T12:07:22.010000"],["2024-07-25T12:07:23.010000"],["2024-07-25T12:07:24.010000"],["2024-07-25T12:07:25.010000"],["2024-07-25T12:07:26.010000"],["2024-07-25T12:07:27.010000"],["2024-07-25T12:07:28.010000"],["2024-07-25T12:07:29.010000"],["2024-07-25T12:07:30.010000"],["2024-07-25T12:07:31.010000"],["2024-07-25T12:07:32.010000"],["2024-07-25T12:07:33.010000"],["2024-07-25T12:07:34.010000"],["2024-07-25T12:07:35.010000"],["2024-07-25T12:07:36.010000"],["2024-07-25T12:07:37.010000"],["2024-07-25T12:07:38.010000"],["2024-07-25T12:07:39.010000"],["2024-07-25T12:07:40.010000"],["2024-07-25T12:07:41.010000"],["2024-07-25T12:07:42.010000"],["2024-07-25T12:07:43.010000"],["2024-07-25T12:07:44.010000"],["2024-07-25T12:07:45.010000"],["2024-07-25T12:07:46.010000"],["2024-07-25T12:07:47.010000"],["2024-07-25T12:07:48.010000"],["2024-07-25T12:07:49.010000"],["2024-07-25T12:07:50.010000"],["2024-07-25T12:07:51.010000"],["2024-07-25T12:07:52.010000"],["2024-07-25T12:07:53.010000"],["2024-07-25T12:07:54.010000"],["2024-07-25T12:07:55.010000"],["2024-07-25T12:07:56.010000"],["2024-07-25T12:07:57.010000"],["2024-07-25T12:07:58.010000"],["2024-07-25T12:07:59.010000"],["2024-07-25T12:08:00.010000"],["2024-07-25T12:08:01.010000"],["2024-07-25T12:08:02.010000"],["2024-07-25T12:08:03.010000"],["2024-07-25T12:08:04.010000"],["2024-07-25T12:08:05.010000"],["2024-07-25T12:08:06.010000"],["2024-07-25T12:08:07.010000"],["2024-07-25T12:08:08.010000"],["2024-07-25T12:08:09.010000"],["2024-07-25T12:08:10.010000"],["2024-07-25T12:08:11.010000"],["2024-07-25T12:08:12.010000"],["2024-07-25T12:08:13.010000"],["2024-07-25T12:08:14.010000"],["2024-07-25T12:08:15.010000"],["2024-07-25T12:08:16.010000"],["2024-07-25T12:08:17.010000"],["2024-07-25T12:08:18.010000"],["2024-07-25T12:08:19.010000"],["2024-07-25T12:08:20.010000"],["2024-07-25T12:08:21.010000"],["2024-07-25T12:08:22.010000"],["2024-07-25T12:08:23.010000"],["2024-07-25T12:08:24.010000"],["2024-07-25T12:08:25.010000"],["2024-07-25T12:08:26.010000"],["2024-07-25T12:08:27.010000"],["2024-07-25T12:08:28.010000"],["2024-07-25T12:08:29.010000"],["2024-07-25T12:08:30.010000"],["2024-07-25T12:08:31.010000"],["2024-07-25T12:08:32.010000"],["2024-07-25T12:08:33.010000"],["2024-07-25T12:08:34.010000"],["2024-07-25T12:08:35.010000"],["2024-07-25T12:08:36.010000"],["2024-07-25T12:08:37.010000"],["2024-07-25T12:08:38.010000"],["2024-07-25T12:08:39.010000"],["2024-07-25T12:08:40.010000"],["2024-07-25T12:08:41.010000"],["2024-07-25T12:08:42.010000"],["2024-07-25T12:08:43.010000"],["2024-07-25T12:08:44.010000"],["2024-07-25T12:08:45.010000"],["2024-07-25T12:08:46.010000"],["2024-07-25T12:08:47.010000"],["2024-07-25T12:08:48.010000"],["2024-07-25T12:08:49.010000"],["2024-07-25T12:08:50.010000"],["2024-07-25T12:08:51.010000"],["2024-07-25T12:08:52.010000"],["2024-07-25T12:08:53.010000"],["2024-07-25T12:08:54.010000"],["2024-07-25T12:08:55.010000"],["2024-07-25T12:08:56.010000"],["2024-07-25T12:08:57.010000"],["2024-07-25T12:08:58.010000"],["2024-07-25T12:08:59.010000"],["2024-07-25T12:09:00.010000"],["2024-07-25T12:09:01.010000"],["2024-07-25T12:09:02.010000"],["2024-07-25T12:09:03.010000"],["2024-07-25T12:09:04.010000"],["2024-07-25T12:09:05.010000"],["2024-07-25T12:09:06.010000"],["2024-07-25T12:09:07.010000"],["2024-07-25T12:09:08.010000"],["2024-07-25T12:09:09.010000"],["2024-07-25T12:09:10.010000"],["2024-07-25T12:09:11.010000"],["2024-07-25T12:09:12.010000"],["2024-07-25T12:09:13.010000"],["2024-07-25T12:09:14.010000"],["2024-07-25T12:09:15.010000"],["2024-07-25T12:09:16.010000"],["2024-07-25T12:09:17.010000"],["2024-07-25T12:09:18.010000"],["2024-07-25T12:09:19.010000"],["2024-07-25T12:09:20.010000"],["2024-07-25T12:09:21.010000"],["2024-07-25T12:09:22.010000"],["2024-07-25T12:09:23.010000"],["2024-07-25T12:09:24.010000"],["2024-07-25T12:09:25.010000"],["2024-07-25T12:09:26.010000"],["2024-07-25T12:09:27.010000"],["2024-07-25T12:09:28.010000"],["2024-07-25T12:09:29.010000"],["2024-07-25T12:09:30.010000"],["2024-07-25T12:09:31.010000"],["2024-07-25T12:09:32.010000"],["2024-07-25T12:09:33.010000"],["2024-07-25T12:09:34.010000"],["2024-07-25T12:09:35.010000"],["2024-07-25T12:09:36.010000"],["2024-07-25T12:09:37.010000"],["2024-07-25T12:09:38.010000"],["2024-07-25T12:09:39.010000"],["2024-07-25T12:09:40.010000"],["2024-07-25T12:09:41.010000"],["2024-07-25T12:09:42.010000"],["2024-07-25T12:09:43.010000"],["2024-07-25T12:09:44.010000"],["2024-07-25T12:09:45.010000"],["2024-07-25T12:09:46.010000"],["2024-07-25T12:09:47.010000"],["2024-07-25T12:09:48.010000"],["2024-07-25T12:09:49.010000"],["2024-07-25T12:09:50.010000"],["2024-07-25T12:09:51.010000"],["2024-07-25T12:09:52.010000"],["2024-07-25T12:09:53.010000"],["2024-07-25T12:09:54.010000"],["2024-07-25T12:09:55.010000"],["2024-07-25T12:09:56.010000"],["2024-07-25T12:09:57.010000"],["2024-07-25T12:09:58.010000"],["2024-07-25T12:09:59.010000"],["2024-07-25T12:10:00.010000"],["2024-07-25T12:10:01.010000"],["2024-07-25T12:10:02.010000"],["2024-07-25T12:10:03.010000"],["2024-07-25T12:10:04.010000"],["2024-07-25T12:10:05.010000"],["2024-07-25T12:10:06.010000"],["2024-07-25T12:10:07.010000"],["2024-07-25T12:10:08.010000"],["2024-07-25T12:10:09.010000"],["2024-07-25T12:10:10.010000"],["2024-07-25T12:10:11.010000"],["2024-07-25T12:10:12.010000"],["2024-07-25T12:10:13.010000"],["2024-07-25T12:10:14.010000"],["2024-07-25T12:10:15.010000"],["2024-07-25T12:10:16.010000"],["2024-07-25T12:10:17.010000"],["2024-07-25T12:10:18.010000"],["2024-07-25T12:10:19.010000"],["2024-07-25T12:10:20.010000"],["2024-07-25T12:10:21.010000"],["2024-07-25T12:10:22.010000"],["2024-07-25T12:10:23.010000"],["2024-07-25T12:10:24.010000"],["2024-07-25T12:10:25.010000"],["2024-07-25T12:10:26.010000"],["2024-07-25T12:10:27.010000"],["2024-07-25T12:10:28.010000"],["2024-07-25T12:10:29.010000"],["2024-07-25T12:10:30.010000"],["2024-07-25T12:10:31.010000"],["2024-07-25T12:10:32.010000"],["2024-07-25T12:10:33.010000"],["2024-07-25T12:10:34.010000"],["2024-07-25T12:10:35.010000"],["2024-07-25T12:10:36.010000"],["2024-07-25T12:10:37.010000"],["2024-07-25T12:10:38.010000"],["2024-07-25T12:10:39.010000"],["2024-07-25T12:10:40.010000"],["2024-07-25T12:10:41.010000"],["2024-07-25T12:10:42.010000"],["2024-07-25T12:10:43.010000"],["2024-07-25T12:10:44.010000"],["2024-07-25T12:10:45.010000"],["2024-07-25T12:10:46.010000"],["2024-07-25T12:10:47.010000"],["2024-07-25T12:10:48.010000"],["2024-07-25T12:10:49.010000"],["2024-07-25T12:10:50.010000"],["2024-07-25T12:10:51.010000"],["2024-07-25T12:10:52.010000"],["2024-07-25T12:10:53.010000"],["2024-07-25T12:10:54.010000"],["2024-07-25T12:10:55.010000"],["2024-07-25T12:10:56.010000"],["2024-07-25T12:10:57.010000"],["2024-07-25T12:10:58.010000"],["2024-07-25T12:10:59.010000"],["2024-07-25T12:11:00.010000"],["2024-07-25T12:11:01.010000"],["2024-07-25T12:11:02.010000"],["2024-07-25T12:11:03.010000"],["2024-07-25T12:11:04.010000"],["2024-07-25T12:11:05.010000"],["2024-07-25T12:11:06.010000"],["2024-07-25T12:11:07.010000"],["2024-07-25T12:11:08.010000"],["2024-07-25T12:11:09.010000"],["2024-07-25T12:11:10.010000"],["2024-07-25T12:11:11.010000"],["2024-07-25T12:11:12.010000"],["2024-07-25T12:11:13.010000"],["2024-07-25T12:11:14.010000"],["2024-07-25T12:11:15.010000"],["2024-07-25T12:11:16.010000"],["2024-07-25T12:11:17.010000"],["2024-07-25T12:11:18.010000"],["2024-07-25T12:11:19.010000"],["2024-07-25T12:11:20.010000"],["2024-07-25T12:11:21.010000"],["2024-07-25T12:11:22.010000"],["2024-07-25T12:11:23.010000"],["2024-07-25T12:11:24.010000"],["2024-07-25T12:11:25.010000"],["2024-07-25T12:11:26.010000"],["2024-07-25T12:11:27.010000"],["2024-07-25T12:11:28.010000"],["2024-07-25T12:11:29.010000"],["2024-07-25T12:11:30.010000"],["2024-07-25T12:11:31.010000"],["2024-07-25T12:11:32.010000"],["2024-07-25T12:11:33.010000"],["2024-07-25T12:11:34.010000"],["2024-07-25T12:11:35.010000"],["2024-07-25T12:11:36.010000"],["2024-07-25T12:11:37.010000"],["2024-07-25T12:11:38.010000"],["2024-07-25T12:11:39.010000"],["2024-07-25T12:11:40.010000"],["2024-07-25T12:11:41.010000"],["2024-07-25T12:11:42.010000"],["2024-07-25T12:11:43.010000"],["2024-07-25T12:11:44.010000"],["2024-07-25T12:11:45.010000"],["2024-07-25T12:11:46.010000"],["2024-07-25T12:11:47.010000"],["2024-07-25T12:11:48.010000"],["2024-07-25T12:11:49.010000"],["2024-07-25T12:11:50.010000"],["2024-07-25T12:11:51.010000"],["2024-07-25T12:11:52.010000"],["2024-07-25T12:11:53.010000"],["2024-07-25T12:11:54.010000"],["2024-07-25T12:11:55.010000"],["2024-07-25T12:11:56.010000"],["2024-07-25T12:11:57.010000"],["2024-07-25T12:11:58.010000"],["2024-07-25T12:11:59.010000"],["2024-07-25T12:12:00.010000"],["2024-07-25T12:12:01.010000"],["2024-07-25T12:12:02.010000"],["2024-07-25T12:12:03.010000"],["2024-07-25T12:12:04.010000"],["2024-07-25T12:12:05.010000"],["2024-07-25T12:12:06.010000"],["2024-07-25T12:12:07.010000"],["2024-07-25T12:12:08.010000"],["2024-07-25T12:12:09.010000"],["2024-07-25T12:12:10.010000"],["2024-07-25T12:12:11.010000"],["2024-07-25T12:12:12.010000"],["2024-07-25T12:12:13.010000"],["2024-07-25T12:12:14.010000"],["2024-07-25T12:12:15.010000"],["2024-07-25T12:12:16.010000"],["2024-07-25T12:12:17.010000"],["2024-07-25T12:12:18.010000"],["2024-07-25T12:12:19.010000"],["2024-07-25T12:12:20.010000"],["2024-07-25T12:12:21.010000"],["2024-07-25T12:12:22.010000"],["2024-07-25T12:12:23.010000"],["2024-07-25T12:12:24.010000"],["2024-07-25T12:12:25.010000"],["2024-07-25T12:12:26.010000"],["2024-07-25T12:12:27.010000"],["2024-07-25T12:12:28.010000"],["2024-07-25T12:12:29.010000"],["2024-07-25T12:12:30.010000"],["2024-07-25T12:12:31.010000"],["2024-07-25T12:12:32.010000"],["2024-07-25T12:12:33.010000"],["2024-07-25T12:12:34.010000"],["2024-07-25T12:12:35.010000"],["2024-07-25T12:12:36.010000"],["2024-07-25T12:12:37.010000"],["2024-07-25T12:12:38.010000"],["2024-07-25T12:12:39.010000"],["2024-07-25T12:12:40.010000"],["2024-07-25T12:12:41.010000"],["2024-07-25T12:12:42.010000"],["2024-07-25T12:12:43.010000"],["2024-07-25T12:12:44.010000"],["2024-07-25T12:12:45.010000"],["2024-07-25T12:12:46.010000"],["2024-07-25T12:12:47.010000"],["2024-07-25T12:12:48.010000"],["2024-07-25T12:12:49.010000"],["2024-07-25T12:12:50.010000"],["2024-07-25T12:12:51.010000"],["2024-07-25T12:12:52.010000"],["2024-07-25T12:12:53.010000"],["2024-07-25T12:12:54.010000"],["2024-07-25T12:12:55.010000"],["2024-07-25T12:12:56.010000"],["2024-07-25T12:12:57.010000"],["2024-07-25T12:12:58.010000"],["2024-07-25T12:12:59.010000"],["2024-07-25T12:13:00.010000"],["2024-07-25T12:13:01.010000"],["2024-07-25T12:13:02.010000"],["2024-07-25T12:13:03.010000"],["2024-07-25T12:13:04.010000"],["2024-07-25T12:13:05.010000"],["2024-07-25T12:13:06.010000"],["2024-07-25T12:13:07.010000"],["2024-07-25T12:13:08.010000"],["2024-07-25T12:13:09.010000"],["2024-07-25T12:13:10.010000"],["2024-07-25T12:13:11.010000"],["2024-07-25T12:13:12.010000"],["2024-07-25T12:13:13.010000"],["2024-07-25T12:13:14.010000"],["2024-07-25T12:13:15.010000"],["2024-07-25T12:13:16.010000"],["2024-07-25T12:13:17.010000"],["2024-07-25T12:13:18.010000"],["2024-07-25T12:13:19.010000"],["2024-07-25T12:13:20.010000"],["2024-07-25T12:13:21.010000"],["2024-07-25T12:13:22.010000"],["2024-07-25T12:13:23.010000"],["2024-07-25T12:13:24.010000"],["2024-07-25T12:13:25.010000"],["2024-07-25T12:13:26.010000"],["2024-07-25T12:13:27.010000"],["2024-07-25T12:13:28.010000"],["2024-07-25T12:13:29.010000"],["2024-07-25T12:13:30.010000"],["2024-07-25T12:13:31.010000"],["2024-07-25T12:13:32.010000"],["2024-07-25T12:13:33.010000"],["2024-07-25T12:13:34.010000"],["2024-07-25T12:13:35.010000"],["2024-07-25T12:13:36.010000"],["2024-07-25T12:13:37.010000"],["2024-07-25T12:13:38.010000"],["2024-07-25T12:13:39.010000"],["2024-07-25T12:13:40.010000"],["2024-07-25T12:13:41.010000"],["2024-07-25T12:13:42.010000"],["2024-07-25T12:13:43.010000"],["2024-07-25T12:13:44.010000"],["2024-07-25T12:13:45.010000"],["2024-07-25T12:13:46.010000"],["2024-07-25T12:13:47.010000"],["2024-07-25T12:13:48.010000"],["2024-07-25T12:13:49.010000"],["2024-07-25T12:13:50.010000"],["2024-07-25T12:13:51.010000"],["2024-07-25T12:13:52.010000"],["2024-07-25T12:13:53.010000"],["2024-07-25T12:13:54.010000"],["2024-07-25T12:13:55.010000"],["2024-07-25T12:13:56.010000"],["2024-07-25T12:13:57.010000"],["2024-07-25T12:13:58.010000"],["2024-07-25T12:13:59.010000"],["2024-07-25T12:14:00.010000"],["2024-07-25T12:14:01.010000"],["2024-07-25T12:14:02.010000"],["2024-07-25T12:14:03.010000"],["2024-07-25T12:14:04.010000"],["2024-07-25T12:14:05.010000"],["2024-07-25T12:14:06.010000"],["2024-07-25T12:14:07.010000"],["2024-07-25T12:14:08.010000"],["2024-07-25T12:14:09.010000"],["2024-07-25T12:14:10.010000"],["2024-07-25T12:14:11.010000"],["2024-07-25T12:14:12.010000"],["2024-07-25T12:14:13.010000"],["2024-07-25T12:14:14.010000"],["2024-07-25T12:14:15.010000"],["2024-07-25T12:14:16.010000"],["2024-07-25T12:14:17.010000"],["2024-07-25T12:14:18.010000"],["2024-07-25T12:14:19.010000"],["2024-07-25T12:14:20.010000"],["2024-07-25T12:14:21.010000"],["2024-07-25T12:14:22.010000"],["2024-07-25T12:14:23.010000"],["2024-07-25T12:14:24.010000"],["2024-07-25T12:14:25.010000"],["2024-07-25T12:14:26.010000"],["2024-07-25T12:14:27.010000"],["2024-07-25T12:14:28.010000"],["2024-07-25T12:14:29.010000"],["2024-07-25T12:14:30.010000"],["2024-07-25T12:14:31.010000"],["2024-07-25T12:14:32.010000"],["2024-07-25T12:14:33.010000"],["2024-07-25T12:14:34.010000"],["2024-07-25T12:14:35.010000"],["2024-07-25T12:14:36.010000"],["2024-07-25T12:14:37.010000"],["2024-07-25T12:14:38.010000"],["2024-07-25T12:14:39.010000"],["2024-07-25T12:14:40.010000"],["2024-07-25T12:14:41.010000"],["2024-07-25T12:14:42.010000"],["2024-07-25T12:14:43.010000"],["2024-07-25T12:14:44.010000"],["2024-07-25T12:14:45.010000"],["2024-07-25T12:14:46.010000"],["2024-07-25T12:14:47.010000"],["2024-07-25T12:14:48.010000"],["2024-07-25T12:14:49.010000"],["2024-07-25T12:14:50.010000"],["2024-07-25T12:14:51.010000"],["2024-07-25T12:14:52.010000"],["2024-07-25T12:14:53.010000"],["2024-07-25T12:14:54.010000"],["2024-07-25T12:14:55.010000"],["2024-07-25T12:14:56.010000"],["2024-07-25T12:14:57.010000"],["2024-07-25T12:14:58.010000"],["2024-07-25T12:14:59.010000"],["2024-07-25T12:15:00.010000"],["2024-07-25T12:15:01.010000"],["2024-07-25T12:15:02.010000"],["2024-07-25T12:15:03.010000"],["2024-07-25T12:15:04.010000"],["2024-07-25T12:15:05.010000"],["2024-07-25T12:15:06.010000"],["2024-07-25T12:15:07.010000"],["2024-07-25T12:15:08.010000"],["2024-07-25T12:15:09.010000"],["2024-07-25T12:15:10.010000"],["2024-07-25T12:15:11.010000"],["2024-07-25T12:15:12.010000"],["2024-07-25T12:15:13.010000"],["2024-07-25T12:15:14.010000"],["2024-07-25T12:15:15.010000"],["2024-07-25T12:15:16.010000"],["2024-07-25T12:15:17.010000"],["2024-07-25T12:15:18.010000"],["2024-07-25T12:15:19.010000"],["2024-07-25T12:15:20.010000"],["2024-07-25T12:15:21.010000"],["2024-07-25T12:15:22.010000"],["2024-07-25T12:15:23.010000"],["2024-07-25T12:15:24.010000"],["2024-07-25T12:15:25.010000"],["2024-07-25T12:15:26.010000"],["2024-07-25T12:15:27.010000"],["2024-07-25T12:15:28.010000"],["2024-07-25T12:15:29.010000"],["2024-07-25T12:15:30.010000"],["2024-07-25T12:15:31.010000"],["2024-07-25T12:15:32.010000"],["2024-07-25T12:15:33.010000"],["2024-07-25T12:15:34.010000"],["2024-07-25T12:15:35.010000"],["2024-07-25T12:15:36.010000"],["2024-07-25T12:15:37.010000"],["2024-07-25T12:15:38.010000"],["2024-07-25T12:15:39.010000"],["2024-07-25T12:15:40.010000"],["2024-07-25T12:15:41.010000"],["2024-07-25T12:15:42.010000"],["2024-07-25T12:15:43.010000"],["2024-07-25T12:15:44.010000"],["2024-07-25T12:15:45.010000"],["2024-07-25T12:15:46.010000"],["2024-07-25T12:15:47.010000"],["2024-07-25T12:15:48.010000"],["2024-07-25T12:15:49.010000"],["2024-07-25T12:15:50.010000"],["2024-07-25T12:15:51.010000"],["2024-07-25T12:15:52.010000"],["2024-07-25T12:15:53.010000"],["2024-07-25T12:15:54.010000"],["2024-07-25T12:15:55.010000"],["2024-07-25T12:15:56.010000"],["2024-07-25T12:15:57.010000"],["2024-07-25T12:15:58.010000"],["2024-07-25T12:15:59.010000"],["2024-07-25T12:16:00.010000"],["2024-07-25T12:16:01.010000"],["2024-07-25T12:16:02.010000"],["2024-07-25T12:16:03.010000"],["2024-07-25T12:16:04.010000"],["2024-07-25T12:16:05.010000"],["2024-07-25T12:16:06.010000"],["2024-07-25T12:16:07.010000"],["2024-07-25T12:16:08.010000"],["2024-07-25T12:16:09.010000"],["2024-07-25T12:16:10.010000"],["2024-07-25T12:16:11.010000"],["2024-07-25T12:16:12.010000"],["2024-07-25T12:16:13.010000"],["2024-07-25T12:16:14.010000"],["2024-07-25T12:16:15.010000"],["2024-07-25T12:16:16.010000"],["2024-07-25T12:16:17.010000"],["2024-07-25T12:16:18.010000"],["2024-07-25T12:16:19.010000"],["2024-07-25T12:16:20.010000"],["2024-07-25T12:16:21.010000"],["2024-07-25T12:16:22.010000"],["2024-07-25T12:16:23.010000"],["2024-07-25T12:16:24.010000"],["2024-07-25T12:16:25.010000"],["2024-07-25T12:16:26.010000"],["2024-07-25T12:16:27.010000"],["2024-07-25T12:16:28.010000"],["2024-07-25T12:16:29.010000"],["2024-07-25T12:16:30.010000"],["2024-07-25T12:16:31.010000"],["2024-07-25T12:16:32.010000"],["2024-07-25T12:16:33.010000"],["2024-07-25T12:16:34.010000"],["2024-07-25T12:16:35.010000"],["2024-07-25T12:16:36.010000"],["2024-07-25T12:16:37.010000"],["2024-07-25T12:16:38.010000"],["2024-07-25T12:16:39.010000"],["2024-07-25T12:16:40.010000"],["2024-07-25T12:16:41.010000"],["2024-07-25T12:16:42.010000"],["2024-07-25T12:16:43.010000"],["2024-07-25T12:16:44.010000"],["2024-07-25T12:16:45.010000"],["2024-07-25T12:16:46.010000"],["2024-07-25T12:16:47.010000"],["2024-07-25T12:16:48.010000"],["2024-07-25T12:16:49.010000"],["2024-07-25T12:16:50.010000"],["2024-07-25T12:16:51.010000"],["2024-07-25T12:16:52.010000"],["2024-07-25T12:16:53.010000"],["2024-07-25T12:16:54.010000"],["2024-07-25T12:16:55.010000"],["2024-07-25T12:16:56.010000"],["2024-07-25T12:16:57.010000"],["2024-07-25T12:16:58.010000"],["2024-07-25T12:16:59.010000"],["2024-07-25T12:17:00.010000"],["2024-07-25T12:17:01.010000"],["2024-07-25T12:17:02.010000"],["2024-07-25T12:17:03.010000"],["2024-07-25T12:17:04.010000"],["2024-07-25T12:17:05.010000"],["2024-07-25T12:17:06.010000"],["2024-07-25T12:17:07.010000"],["2024-07-25T12:17:08.010000"],["2024-07-25T12:17:09.010000"],["2024-07-25T12:17:10.010000"],["2024-07-25T12:17:11.010000"],["2024-07-25T12:17:12.010000"],["2024-07-25T12:17:13.010000"],["2024-07-25T12:17:14.010000"],["2024-07-25T12:17:15.010000"],["2024-07-25T12:17:16.010000"],["2024-07-25T12:17:17.010000"],["2024-07-25T12:17:18.010000"],["2024-07-25T12:17:19.010000"],["2024-07-25T12:17:20.010000"],["2024-07-25T12:17:21.010000"],["2024-07-25T12:17:22.010000"],["2024-07-25T12:17:23.010000"],["2024-07-25T12:17:24.010000"],["2024-07-25T12:17:25.010000"],["2024-07-25T12:17:26.010000"],["2024-07-25T12:17:27.010000"],["2024-07-25T12:17:28.010000"],["2024-07-25T12:17:29.010000"],["2024-07-25T12:17:30.010000"],["2024-07-25T12:17:31.010000"],["2024-07-25T12:17:32.010000"],["2024-07-25T12:17:33.010000"],["2024-07-25T12:17:34.010000"],["2024-07-25T12:17:35.010000"],["2024-07-25T12:17:36.010000"],["2024-07-25T12:17:37.010000"],["2024-07-25T12:17:38.010000"],["2024-07-25T12:17:39.010000"],["2024-07-25T12:17:40.010000"],["2024-07-25T12:17:41.010000"],["2024-07-25T12:17:42.010000"],["2024-07-25T12:17:43.010000"],["2024-07-25T12:17:44.010000"],["2024-07-25T12:17:45.010000"],["2024-07-25T12:17:46.010000"],["2024-07-25T12:17:47.010000"],["2024-07-25T12:17:48.010000"],["2024-07-25T12:17:49.010000"],["2024-07-25T12:17:50.010000"],["2024-07-25T12:17:51.010000"],["2024-07-25T12:17:52.010000"],["2024-07-25T12:17:53.010000"],["2024-07-25T12:17:54.010000"],["2024-07-25T12:17:55.010000"],["2024-07-25T12:17:56.010000"],["2024-07-25T12:17:57.010000"],["2024-07-25T12:17:58.010000"],["2024-07-25T12:17:59.010000"],["2024-07-25T12:18:00.010000"],["2024-07-25T12:18:01.010000"],["2024-07-25T12:18:02.010000"],["2024-07-25T12:18:03.010000"],["2024-07-25T12:18:04.010000"],["2024-07-25T12:18:05.010000"],["2024-07-25T12:18:06.010000"],["2024-07-25T12:18:07.010000"],["2024-07-25T12:18:08.010000"],["2024-07-25T12:18:09.010000"],["2024-07-25T12:18:10.010000"],["2024-07-25T12:18:11.010000"],["2024-07-25T12:18:12.010000"],["2024-07-25T12:18:13.010000"],["2024-07-25T12:18:14.010000"],["2024-07-25T12:18:15.010000"],["2024-07-25T12:18:16.010000"],["2024-07-25T12:18:17.010000"],["2024-07-25T12:18:18.010000"],["2024-07-25T12:18:19.010000"],["2024-07-25T12:18:20.010000"],["2024-07-25T12:18:21.010000"],["2024-07-25T12:18:22.010000"],["2024-07-25T12:18:23.010000"],["2024-07-25T12:18:24.010000"],["2024-07-25T12:18:25.010000"],["2024-07-25T12:18:26.010000"],["2024-07-25T12:18:27.010000"],["2024-07-25T12:18:28.010000"],["2024-07-25T12:18:29.010000"],["2024-07-25T12:18:30.010000"],["2024-07-25T12:18:31.010000"],["2024-07-25T12:18:32.010000"],["2024-07-25T12:18:33.010000"],["2024-07-25T12:18:34.010000"],["2024-07-25T12:18:35.010000"],["2024-07-25T12:18:36.010000"],["2024-07-25T12:18:37.010000"],["2024-07-25T12:18:38.010000"],["2024-07-25T12:18:39.010000"],["2024-07-25T12:18:40.010000"],["2024-07-25T12:18:41.010000"],["2024-07-25T12:18:42.010000"],["2024-07-25T12:18:43.010000"],["2024-07-25T12:18:44.010000"],["2024-07-25T12:18:45.010000"],["2024-07-25T12:18:46.010000"],["2024-07-25T12:18:47.010000"],["2024-07-25T12:18:48.010000"],["2024-07-25T12:18:49.010000"],["2024-07-25T12:18:50.010000"],["2024-07-25T12:18:51.010000"],["2024-07-25T12:18:52.010000"],["2024-07-25T12:18:53.010000"],["2024-07-25T12:18:54.010000"],["2024-07-25T12:18:55.010000"],["2024-07-25T12:18:56.010000"],["2024-07-25T12:18:57.010000"],["2024-07-25T12:18:58.010000"],["2024-07-25T12:18:59.010000"],["2024-07-25T12:19:00.010000"],["2024-07-25T12:19:01.010000"],["2024-07-25T12:19:02.010000"],["2024-07-25T12:19:03.010000"],["2024-07-25T12:19:04.010000"],["2024-07-25T12:19:05.010000"],["2024-07-25T12:19:06.010000"],["2024-07-25T12:19:07.010000"],["2024-07-25T12:19:08.010000"],["2024-07-25T12:19:09.010000"],["2024-07-25T12:19:10.010000"],["2024-07-25T12:19:11.010000"],["2024-07-25T12:19:12.010000"],["2024-07-25T12:19:13.010000"],["2024-07-25T12:19:14.010000"],["2024-07-25T12:19:15.010000"],["2024-07-25T12:19:16.010000"],["2024-07-25T12:19:17.010000"],["2024-07-25T12:19:18.010000"],["2024-07-25T12:19:19.010000"],["2024-07-25T12:19:20.010000"],["2024-07-25T12:19:21.010000"],["2024-07-25T12:19:22.010000"],["2024-07-25T12:19:23.010000"],["2024-07-25T12:19:24.010000"],["2024-07-25T12:19:25.010000"],["2024-07-25T12:19:26.010000"],["2024-07-25T12:19:27.010000"],["2024-07-25T12:19:28.010000"],["2024-07-25T12:19:29.010000"],["2024-07-25T12:19:30.010000"],["2024-07-25T12:19:31.010000"],["2024-07-25T12:19:32.010000"],["2024-07-25T12:19:33.010000"],["2024-07-25T12:19:34.010000"],["2024-07-25T12:19:35.010000"],["2024-07-25T12:19:36.010000"],["2024-07-25T12:19:37.010000"],["2024-07-25T12:19:38.010000"],["2024-07-25T12:19:39.010000"],["2024-07-25T12:19:40.010000"],["2024-07-25T12:19:41.010000"],["2024-07-25T12:19:42.010000"],["2024-07-25T12:19:43.010000"],["2024-07-25T12:19:44.010000"],["2024-07-25T12:19:45.010000"],["2024-07-25T12:19:46.010000"],["2024-07-25T12:19:47.010000"],["2024-07-25T12:19:48.010000"],["2024-07-25T12:19:49.010000"],["2024-07-25T12:19:50.010000"],["2024-07-25T12:19:51.010000"],["2024-07-25T12:19:52.010000"],["2024-07-25T12:19:53.010000"],["2024-07-25T12:19:54.010000"],["2024-07-25T12:19:55.010000"],["2024-07-25T12:19:56.010000"],["2024-07-25T12:19:57.010000"],["2024-07-25T12:19:58.010000"],["2024-07-25T12:19:59.010000"],["2024-07-25T12:20:00.010000"],["2024-07-25T12:20:01.010000"],["2024-07-25T12:20:02.010000"],["2024-07-25T12:20:03.010000"],["2024-07-25T12:20:04.010000"],["2024-07-25T12:20:05.010000"],["2024-07-25T12:20:06.010000"],["2024-07-25T12:20:07.010000"],["2024-07-25T12:20:08.010000"],["2024-07-25T12:20:09.010000"],["2024-07-25T12:20:10.010000"],["2024-07-25T12:20:11.010000"],["2024-07-25T12:20:12.010000"],["2024-07-25T12:20:13.010000"],["2024-07-25T12:20:14.010000"],["2024-07-25T12:20:15.010000"],["2024-07-25T12:20:16.010000"],["2024-07-25T12:20:17.010000"],["2024-07-25T12:20:18.010000"],["2024-07-25T12:20:19.010000"],["2024-07-25T12:20:20.010000"],["2024-07-25T12:20:21.010000"],["2024-07-25T12:20:22.010000"],["2024-07-25T12:20:23.010000"],["2024-07-25T12:20:24.010000"],["2024-07-25T12:20:25.010000"],["2024-07-25T12:20:26.010000"],["2024-07-25T12:20:27.010000"],["2024-07-25T12:20:28.010000"],["2024-07-25T12:20:29.010000"],["2024-07-25T12:20:30.010000"],["2024-07-25T12:20:31.010000"],["2024-07-25T12:20:32.010000"],["2024-07-25T12:20:33.010000"],["2024-07-25T12:20:34.010000"],["2024-07-25T12:20:35.010000"],["2024-07-25T12:20:36.010000"],["2024-07-25T12:20:37.010000"],["2024-07-25T12:20:38.010000"],["2024-07-25T12:20:39.010000"],["2024-07-25T12:20:40.010000"],["2024-07-25T12:20:41.010000"],["2024-07-25T12:20:42.010000"],["2024-07-25T12:20:43.010000"],["2024-07-25T12:20:44.010000"],["2024-07-25T12:20:45.010000"],["2024-07-25T12:20:46.010000"],["2024-07-25T12:20:47.010000"],["2024-07-25T12:20:48.010000"],["2024-07-25T12:20:49.010000"],["2024-07-25T12:20:50.010000"],["2024-07-25T12:20:51.010000"],["2024-07-25T12:20:52.010000"],["2024-07-25T12:20:53.010000"],["2024-07-25T12:20:54.010000"],["2024-07-25T12:20:55.010000"],["2024-07-25T12:20:56.010000"],["2024-07-25T12:20:57.010000"],["2024-07-25T12:20:58.010000"],["2024-07-25T12:20:59.010000"],["2024-07-25T12:21:00.010000"],["2024-07-25T12:21:01.010000"],["2024-07-25T12:21:02.010000"],["2024-07-25T12:21:03.010000"],["2024-07-25T12:21:04.010000"],["2024-07-25T12:21:05.010000"],["2024-07-25T12:21:06.010000"],["2024-07-25T12:21:07.010000"],["2024-07-25T12:21:08.010000"],["2024-07-25T12:21:09.010000"],["2024-07-25T12:21:10.010000"],["2024-07-25T12:21:11.010000"],["2024-07-25T12:21:12.010000"],["2024-07-25T12:21:13.010000"],["2024-07-25T12:21:14.010000"],["2024-07-25T12:21:15.010000"],["2024-07-25T12:21:16.010000"],["2024-07-25T12:21:17.010000"],["2024-07-25T12:21:18.010000"],["2024-07-25T12:21:19.010000"],["2024-07-25T12:21:20.010000"],["2024-07-25T12:21:21.010000"],["2024-07-25T12:21:22.010000"],["2024-07-25T12:21:23.010000"],["2024-07-25T12:21:24.010000"],["2024-07-25T12:21:25.010000"],["2024-07-25T12:21:26.010000"],["2024-07-25T12:21:27.010000"],["2024-07-25T12:21:28.010000"],["2024-07-25T12:21:29.010000"],["2024-07-25T12:21:30.010000"],["2024-07-25T12:21:31.010000"],["2024-07-25T12:21:32.010000"],["2024-07-25T12:21:33.010000"],["2024-07-25T12:21:34.010000"],["2024-07-25T12:21:35.010000"],["2024-07-25T12:21:36.010000"],["2024-07-25T12:21:37.010000"],["2024-07-25T12:21:38.010000"],["2024-07-25T12:21:39.010000"],["2024-07-25T12:21:40.010000"],["2024-07-25T12:21:41.010000"],["2024-07-25T12:21:42.010000"],["2024-07-25T12:21:43.010000"],["2024-07-25T12:21:44.010000"],["2024-07-25T12:21:45.010000"],["2024-07-25T12:21:46.010000"],["2024-07-25T12:21:47.010000"],["2024-07-25T12:21:48.010000"],["2024-07-25T12:21:49.010000"],["2024-07-25T12:21:50.010000"],["2024-07-25T12:21:51.010000"],["2024-07-25T12:21:52.010000"],["2024-07-25T12:21:53.010000"],["2024-07-25T12:21:54.010000"],["2024-07-25T12:21:55.010000"],["2024-07-25T12:21:56.010000"],["2024-07-25T12:21:57.010000"],["2024-07-25T12:21:58.010000"],["2024-07-25T12:21:59.010000"],["2024-07-25T12:22:00.010000"],["2024-07-25T12:22:01.010000"],["2024-07-25T12:22:02.010000"],["2024-07-25T12:22:03.010000"],["2024-07-25T12:22:04.010000"],["2024-07-25T12:22:05.010000"],["2024-07-25T12:22:06.010000"],["2024-07-25T12:22:07.010000"],["2024-07-25T12:22:08.010000"],["2024-07-25T12:22:09.010000"],["2024-07-25T12:22:10.010000"],["2024-07-25T12:22:11.010000"],["2024-07-25T12:22:12.010000"],["2024-07-25T12:22:13.010000"],["2024-07-25T12:22:14.010000"],["2024-07-25T12:22:15.010000"],["2024-07-25T12:22:16.010000"],["2024-07-25T12:22:17.010000"],["2024-07-25T12:22:18.010000"],["2024-07-25T12:22:19.010000"],["2024-07-25T12:22:20.010000"],["2024-07-25T12:22:21.010000"],["2024-07-25T12:22:22.010000"],["2024-07-25T12:22:23.010000"],["2024-07-25T12:22:24.010000"],["2024-07-25T12:22:25.010000"],["2024-07-25T12:22:26.010000"],["2024-07-25T12:22:27.010000"],["2024-07-25T12:22:28.010000"],["2024-07-25T12:22:29.010000"],["2024-07-25T12:22:30.010000"],["2024-07-25T12:22:31.010000"],["2024-07-25T12:22:32.010000"],["2024-07-25T12:22:33.010000"],["2024-07-25T12:22:34.010000"],["2024-07-25T12:22:35.010000"],["2024-07-25T12:22:36.010000"],["2024-07-25T12:22:37.010000"],["2024-07-25T12:22:38.010000"],["2024-07-25T12:22:39.010000"],["2024-07-25T12:22:40.010000"],["2024-07-25T12:22:41.010000"],["2024-07-25T12:22:42.010000"],["2024-07-25T12:22:43.010000"],["2024-07-25T12:22:44.010000"],["2024-07-25T12:22:45.010000"],["2024-07-25T12:22:46.010000"],["2024-07-25T12:22:47.010000"],["2024-07-25T12:22:48.010000"],["2024-07-25T12:22:49.010000"],["2024-07-25T12:22:50.010000"],["2024-07-25T12:22:51.010000"],["2024-07-25T12:22:52.010000"],["2024-07-25T12:22:53.010000"],["2024-07-25T12:22:54.010000"],["2024-07-25T12:22:55.010000"],["2024-07-25T12:22:56.010000"],["2024-07-25T12:22:57.010000"],["2024-07-25T12:22:58.010000"],["2024-07-25T12:22:59.010000"],["2024-07-25T12:23:00.010000"],["2024-07-25T12:23:01.010000"],["2024-07-25T12:23:02.010000"],["2024-07-25T12:23:03.010000"],["2024-07-25T12:23:04.010000"],["2024-07-25T12:23:05.010000"],["2024-07-25T12:23:06.010000"],["2024-07-25T12:23:07.010000"],["2024-07-25T12:23:08.010000"],["2024-07-25T12:23:09.010000"],["2024-07-25T12:23:10.010000"],["2024-07-25T12:23:11.010000"],["2024-07-25T12:23:12.010000"],["2024-07-25T12:23:13.010000"],["2024-07-25T12:23:14.010000"],["2024-07-25T12:23:15.010000"],["2024-07-25T12:23:16.010000"],["2024-07-25T12:23:17.010000"],["2024-07-25T12:23:18.010000"],["2024-07-25T12:23:19.010000"],["2024-07-25T12:23:20.010000"],["2024-07-25T12:23:21.010000"],["2024-07-25T12:23:22.010000"],["2024-07-25T12:23:23.010000"],["2024-07-25T12:23:24.010000"],["2024-07-25T12:23:25.010000"],["2024-07-25T12:23:26.010000"],["2024-07-25T12:23:27.010000"],["2024-07-25T12:23:28.010000"],["2024-07-25T12:23:29.010000"],["2024-07-25T12:23:30.010000"],["2024-07-25T12:23:31.010000"],["2024-07-25T12:23:32.010000"],["2024-07-25T12:23:33.010000"],["2024-07-25T12:23:34.010000"],["2024-07-25T12:23:35.010000"],["2024-07-25T12:23:36.010000"],["2024-07-25T12:23:37.010000"],["2024-07-25T12:23:38.010000"],["2024-07-25T12:23:39.010000"],["2024-07-25T12:23:40.010000"],["2024-07-25T12:23:41.010000"],["2024-07-25T12:23:42.010000"],["2024-07-25T12:23:43.010000"],["2024-07-25T12:23:44.010000"],["2024-07-25T12:23:45.010000"],["2024-07-25T12:23:46.010000"],["2024-07-25T12:23:47.010000"],["2024-07-25T12:23:48.010000"],["2024-07-25T12:23:49.010000"],["2024-07-25T12:23:50.010000"],["2024-07-25T12:23:51.010000"],["2024-07-25T12:23:52.010000"],["2024-07-25T12:23:53.010000"],["2024-07-25T12:23:54.010000"],["2024-07-25T12:23:55.010000"],["2024-07-25T12:23:56.010000"],["2024-07-25T12:23:57.010000"],["2024-07-25T12:23:58.010000"],["2024-07-25T12:23:59.010000"],["2024-07-25T12:24:00.010000"],["2024-07-25T12:24:01.010000"],["2024-07-25T12:24:02.010000"],["2024-07-25T12:24:03.010000"],["2024-07-25T12:24:04.010000"],["2024-07-25T12:24:05.010000"],["2024-07-25T12:24:06.010000"],["2024-07-25T12:24:07.010000"],["2024-07-25T12:24:08.010000"],["2024-07-25T12:24:09.010000"],["2024-07-25T12:24:10.010000"],["2024-07-25T12:24:11.010000"],["2024-07-25T12:24:12.010000"],["2024-07-25T12:24:13.010000"],["2024-07-25T12:24:14.010000"],["2024-07-25T12:24:15.010000"],["2024-07-25T12:24:16.010000"],["2024-07-25T12:24:17.010000"],["2024-07-25T12:24:18.010000"],["2024-07-25T12:24:19.010000"],["2024-07-25T12:24:20.010000"],["2024-07-25T12:24:21.010000"],["2024-07-25T12:24:22.010000"],["2024-07-25T12:24:23.010000"],["2024-07-25T12:24:24.010000"],["2024-07-25T12:24:25.010000"],["2024-07-25T12:24:26.010000"],["2024-07-25T12:24:27.010000"],["2024-07-25T12:24:28.010000"],["2024-07-25T12:24:29.010000"],["2024-07-25T12:24:30.010000"],["2024-07-25T12:24:31.010000"],["2024-07-25T12:24:32.010000"],["2024-07-25T12:24:33.010000"],["2024-07-25T12:24:34.010000"],["2024-07-25T12:24:35.010000"],["2024-07-25T12:24:36.010000"],["2024-07-25T12:24:37.010000"],["2024-07-25T12:24:38.010000"],["2024-07-25T12:24:39.010000"],["2024-07-25T12:24:40.010000"],["2024-07-25T12:24:41.010000"],["2024-07-25T12:24:42.010000"],["2024-07-25T12:24:43.010000"],["2024-07-25T12:24:44.010000"],["2024-07-25T12:24:45.010000"],["2024-07-25T12:24:46.010000"],["2024-07-25T12:24:47.010000"],["2024-07-25T12:24:48.010000"],["2024-07-25T12:24:49.010000"],["2024-07-25T12:24:50.010000"],["2024-07-25T12:24:51.010000"],["2024-07-25T12:24:52.010000"],["2024-07-25T12:24:53.010000"],["2024-07-25T12:24:54.010000"],["2024-07-25T12:24:55.010000"],["2024-07-25T12:24:56.010000"],["2024-07-25T12:24:57.010000"],["2024-07-25T12:24:58.010000"],["2024-07-25T12:24:59.010000"],["2024-07-25T12:25:00.010000"],["2024-07-25T12:25:01.010000"],["2024-07-25T12:25:02.010000"],["2024-07-25T12:25:03.010000"],["2024-07-25T12:25:04.010000"],["2024-07-25T12:25:05.010000"],["2024-07-25T12:25:06.010000"],["2024-07-25T12:25:07.010000"],["2024-07-25T12:25:08.010000"],["2024-07-25T12:25:09.010000"],["2024-07-25T12:25:10.010000"],["2024-07-25T12:25:11.010000"],["2024-07-25T12:25:12.010000"],["2024-07-25T12:25:13.010000"],["2024-07-25T12:25:14.010000"],["2024-07-25T12:25:15.010000"],["2024-07-25T12:25:16.010000"],["2024-07-25T12:25:17.010000"],["2024-07-25T12:25:18.010000"],["2024-07-25T12:25:19.010000"],["2024-07-25T12:25:20.010000"],["2024-07-25T12:25:21.010000"],["2024-07-25T12:25:22.010000"],["2024-07-25T12:25:23.010000"],["2024-07-25T12:25:24.010000"],["2024-07-25T12:25:25.010000"],["2024-07-25T12:25:26.010000"],["2024-07-25T12:25:27.010000"],["2024-07-25T12:25:28.010000"],["2024-07-25T12:25:29.010000"],["2024-07-25T12:25:30.010000"],["2024-07-25T12:25:31.010000"],["2024-07-25T12:25:32.010000"],["2024-07-25T12:25:33.010000"],["2024-07-25T12:25:34.010000"],["2024-07-25T12:25:35.010000"],["2024-07-25T12:25:36.010000"],["2024-07-25T12:25:37.010000"],["2024-07-25T12:25:38.010000"],["2024-07-25T12:25:39.010000"],["2024-07-25T12:25:40.010000"],["2024-07-25T12:25:41.010000"],["2024-07-25T12:25:42.010000"],["2024-07-25T12:25:43.010000"],["2024-07-25T12:25:44.010000"],["2024-07-25T12:25:45.010000"],["2024-07-25T12:25:46.010000"],["2024-07-25T12:25:47.010000"],["2024-07-25T12:25:48.010000"],["2024-07-25T12:25:49.010000"],["2024-07-25T12:25:50.010000"],["2024-07-25T12:25:51.010000"],["2024-07-25T12:25:52.010000"],["2024-07-25T12:25:53.010000"],["2024-07-25T12:25:54.010000"],["2024-07-25T12:25:55.010000"],["2024-07-25T12:25:56.010000"],["2024-07-25T12:25:57.010000"],["2024-07-25T12:25:58.010000"],["2024-07-25T12:25:59.010000"],["2024-07-25T12:26:00.010000"],["2024-07-25T12:26:01.010000"],["2024-07-25T12:26:02.010000"],["2024-07-25T12:26:03.010000"],["2024-07-25T12:26:04.010000"],["2024-07-25T12:26:05.010000"],["2024-07-25T12:26:06.010000"],["2024-07-25T12:26:07.010000"],["2024-07-25T12:26:08.010000"],["2024-07-25T12:26:09.010000"],["2024-07-25T12:26:10.010000"],["2024-07-25T12:26:11.010000"],["2024-07-25T12:26:12.010000"],["2024-07-25T12:26:13.010000"],["2024-07-25T12:26:14.010000"],["2024-07-25T12:26:15.010000"],["2024-07-25T12:26:16.010000"],["2024-07-25T12:26:17.010000"],["2024-07-25T12:26:18.010000"],["2024-07-25T12:26:19.010000"],["2024-07-25T12:26:20.010000"],["2024-07-25T12:26:21.010000"],["2024-07-25T12:26:22.010000"],["2024-07-25T12:26:23.010000"],["2024-07-25T12:26:24.010000"],["2024-07-25T12:26:25.010000"],["2024-07-25T12:26:26.010000"],["2024-07-25T12:26:27.010000"],["2024-07-25T12:26:28.010000"],["2024-07-25T12:26:29.010000"],["2024-07-25T12:26:30.010000"],["2024-07-25T12:26:31.010000"],["2024-07-25T12:26:32.010000"],["2024-07-25T12:26:33.010000"],["2024-07-25T12:26:34.010000"],["2024-07-25T12:26:35.010000"],["2024-07-25T12:26:36.010000"],["2024-07-25T12:26:37.010000"],["2024-07-25T12:26:38.010000"],["2024-07-25T12:26:39.010000"],["2024-07-25T12:26:40.010000"],["2024-07-25T12:26:41.010000"],["2024-07-25T12:26:42.010000"],["2024-07-25T12:26:43.010000"],["2024-07-25T12:26:44.010000"],["2024-07-25T12:26:45.010000"],["2024-07-25T12:26:46.010000"],["2024-07-25T12:26:47.010000"],["2024-07-25T12:26:48.010000"],["2024-07-25T12:26:49.010000"],["2024-07-25T12:26:50.010000"],["2024-07-25T12:26:51.010000"],["2024-07-25T12:26:52.010000"],["2024-07-25T12:26:53.010000"],["2024-07-25T12:26:54.010000"],["2024-07-25T12:26:55.010000"],["2024-07-25T12:26:56.010000"],["2024-07-25T12:26:57.010000"],["2024-07-25T12:26:58.010000"],["2024-07-25T12:26:59.010000"],["2024-07-25T12:27:00.010000"],["2024-07-25T12:27:01.010000"],["2024-07-25T12:27:02.010000"],["2024-07-25T12:27:03.010000"],["2024-07-25T12:27:04.010000"],["2024-07-25T12:27:05.010000"],["2024-07-25T12:27:06.010000"],["2024-07-25T12:27:07.010000"],["2024-07-25T12:27:08.010000"],["2024-07-25T12:27:09.010000"],["2024-07-25T12:27:10.010000"],["2024-07-25T12:27:11.010000"],["2024-07-25T12:27:12.010000"],["2024-07-25T12:27:13.010000"],["2024-07-25T12:27:14.010000"],["2024-07-25T12:27:15.010000"],["2024-07-25T12:27:16.010000"],["2024-07-25T12:27:17.010000"],["2024-07-25T12:27:18.010000"],["2024-07-25T12:27:19.010000"],["2024-07-25T12:27:20.010000"],["2024-07-25T12:27:21.010000"],["2024-07-25T12:27:22.010000"],["2024-07-25T12:27:23.010000"],["2024-07-25T12:27:24.010000"],["2024-07-25T12:27:25.010000"],["2024-07-25T12:27:26.010000"],["2024-07-25T12:27:27.010000"],["2024-07-25T12:27:28.010000"],["2024-07-25T12:27:29.010000"],["2024-07-25T12:27:30.010000"],["2024-07-25T12:27:31.010000"],["2024-07-25T12:27:32.010000"],["2024-07-25T12:27:33.010000"],["2024-07-25T12:27:34.010000"],["2024-07-25T12:27:35.010000"],["2024-07-25T12:27:36.010000"],["2024-07-25T12:27:37.010000"],["2024-07-25T12:27:38.010000"],["2024-07-25T12:27:39.010000"],["2024-07-25T12:27:40.010000"],["2024-07-25T12:27:41.010000"],["2024-07-25T12:27:42.010000"],["2024-07-25T12:27:43.010000"],["2024-07-25T12:27:44.010000"],["2024-07-25T12:27:45.010000"],["2024-07-25T12:27:46.010000"],["2024-07-25T12:27:47.010000"],["2024-07-25T12:27:48.010000"],["2024-07-25T12:27:49.010000"],["2024-07-25T12:27:50.010000"],["2024-07-25T12:27:51.010000"],["2024-07-25T12:27:52.010000"],["2024-07-25T12:27:53.010000"],["2024-07-25T12:27:54.010000"],["2024-07-25T12:27:55.010000"],["2024-07-25T12:27:56.010000"],["2024-07-25T12:27:57.010000"],["2024-07-25T12:27:58.010000"],["2024-07-25T12:27:59.010000"],["2024-07-25T12:28:00.010000"],["2024-07-25T12:28:01.010000"],["2024-07-25T12:28:02.010000"],["2024-07-25T12:28:03.010000"],["2024-07-25T12:28:04.010000"],["2024-07-25T12:28:05.010000"],["2024-07-25T12:28:06.010000"],["2024-07-25T12:28:07.010000"],["2024-07-25T12:28:08.010000"],["2024-07-25T12:28:09.010000"],["2024-07-25T12:28:10.010000"],["2024-07-25T12:28:11.010000"],["2024-07-25T12:28:12.010000"],["2024-07-25T12:28:13.010000"],["2024-07-25T12:28:14.010000"],["2024-07-25T12:28:15.010000"],["2024-07-25T12:28:16.010000"],["2024-07-25T12:28:17.010000"],["2024-07-25T12:28:18.010000"],["2024-07-25T12:28:19.010000"],["2024-07-25T12:28:20.010000"],["2024-07-25T12:28:21.010000"],["2024-07-25T12:28:22.010000"],["2024-07-25T12:28:23.010000"],["2024-07-25T12:28:24.010000"],["2024-07-25T12:28:25.010000"],["2024-07-25T12:28:26.010000"],["2024-07-25T12:28:27.010000"],["2024-07-25T12:28:28.010000"],["2024-07-25T12:28:29.010000"],["2024-07-25T12:28:30.010000"],["2024-07-25T12:28:31.010000"],["2024-07-25T12:28:32.010000"],["2024-07-25T12:28:33.010000"],["2024-07-25T12:28:34.010000"],["2024-07-25T12:28:35.010000"],["2024-07-25T12:28:36.010000"],["2024-07-25T12:28:37.010000"],["2024-07-25T12:28:38.010000"],["2024-07-25T12:28:39.010000"],["2024-07-25T12:28:40.010000"],["2024-07-25T12:28:41.010000"],["2024-07-25T12:28:42.010000"],["2024-07-25T12:28:43.010000"],["2024-07-25T12:28:44.010000"],["2024-07-25T12:28:45.010000"],["2024-07-25T12:28:46.010000"],["2024-07-25T12:28:47.010000"],["2024-07-25T12:28:48.010000"],["2024-07-25T12:28:49.010000"],["2024-07-25T12:28:50.010000"],["2024-07-25T12:28:51.010000"],["2024-07-25T12:28:52.010000"],["2024-07-25T12:28:53.010000"],["2024-07-25T12:28:54.010000"],["2024-07-25T12:28:55.010000"],["2024-07-25T12:28:56.010000"],["2024-07-25T12:28:57.010000"],["2024-07-25T12:28:58.010000"],["2024-07-25T12:28:59.010000"],["2024-07-25T12:29:00.010000"],["2024-07-25T12:29:01.010000"],["2024-07-25T12:29:02.010000"],["2024-07-25T12:29:03.010000"],["2024-07-25T12:29:04.010000"],["2024-07-25T12:29:05.010000"],["2024-07-25T12:29:06.010000"],["2024-07-25T12:29:07.010000"],["2024-07-25T12:29:08.010000"],["2024-07-25T12:29:09.010000"],["2024-07-25T12:29:10.010000"],["2024-07-25T12:29:11.010000"],["2024-07-25T12:29:12.010000"],["2024-07-25T12:29:13.010000"],["2024-07-25T12:29:14.010000"],["2024-07-25T12:29:15.010000"],["2024-07-25T12:29:16.010000"],["2024-07-25T12:29:17.010000"],["2024-07-25T12:29:18.010000"],["2024-07-25T12:29:19.010000"],["2024-07-25T12:29:20.010000"],["2024-07-25T12:29:21.010000"],["2024-07-25T12:29:22.010000"],["2024-07-25T12:29:23.010000"],["2024-07-25T12:29:24.010000"],["2024-07-25T12:29:25.010000"],["2024-07-25T12:29:26.010000"],["2024-07-25T12:29:27.010000"],["2024-07-25T12:29:28.010000"],["2024-07-25T12:29:29.010000"],["2024-07-25T12:29:30.010000"],["2024-07-25T12:29:31.010000"],["2024-07-25T12:29:32.010000"],["2024-07-25T12:29:33.010000"],["2024-07-25T12:29:34.010000"],["2024-07-25T12:29:35.010000"],["2024-07-25T12:29:36.010000"],["2024-07-25T12:29:37.010000"],["2024-07-25T12:29:38.010000"],["2024-07-25T12:29:39.010000"],["2024-07-25T12:29:40.010000"],["2024-07-25T12:29:41.010000"],["2024-07-25T12:29:42.010000"],["2024-07-25T12:29:43.010000"],["2024-07-25T12:29:44.010000"],["2024-07-25T12:29:45.010000"],["2024-07-25T12:29:46.010000"],["2024-07-25T12:29:47.010000"],["2024-07-25T12:29:48.010000"],["2024-07-25T12:29:49.010000"],["2024-07-25T12:29:50.010000"],["2024-07-25T12:29:51.010000"],["2024-07-25T12:29:52.010000"],["2024-07-25T12:29:53.010000"],["2024-07-25T12:29:54.010000"],["2024-07-25T12:29:55.010000"],["2024-07-25T12:29:56.010000"],["2024-07-25T12:29:57.010000"],["2024-07-25T12:29:58.010000"],["2024-07-25T12:29:59.010000"],["2024-07-25T12:30:00.010000"],["2024-07-25T12:30:01.010000"],["2024-07-25T12:30:02.010000"],["2024-07-25T12:30:03.010000"],["2024-07-25T12:30:04.010000"],["2024-07-25T12:30:05.010000"],["2024-07-25T12:30:06.010000"],["2024-07-25T12:30:07.010000"],["2024-07-25T12:30:08.010000"],["2024-07-25T12:30:09.010000"],["2024-07-25T12:30:10.010000"],["2024-07-25T12:30:11.010000"],["2024-07-25T12:30:12.010000"],["2024-07-25T12:30:13.010000"],["2024-07-25T12:30:14.010000"],["2024-07-25T12:30:15.010000"],["2024-07-25T12:30:16.010000"],["2024-07-25T12:30:17.010000"],["2024-07-25T12:30:18.010000"],["2024-07-25T12:30:19.010000"],["2024-07-25T12:30:20.010000"],["2024-07-25T12:30:21.010000"],["2024-07-25T12:30:22.010000"],["2024-07-25T12:30:23.010000"],["2024-07-25T12:30:24.010000"],["2024-07-25T12:30:25.010000"],["2024-07-25T12:30:26.010000"],["2024-07-25T12:30:27.010000"],["2024-07-25T12:30:28.010000"],["2024-07-25T12:30:29.010000"],["2024-07-25T12:30:30.010000"],["2024-07-25T12:30:31.010000"],["2024-07-25T12:30:32.010000"],["2024-07-25T12:30:33.010000"],["2024-07-25T12:30:34.010000"],["2024-07-25T12:30:35.010000"],["2024-07-25T12:30:36.010000"],["2024-07-25T12:30:37.010000"],["2024-07-25T12:30:38.010000"],["2024-07-25T12:30:39.010000"],["2024-07-25T12:30:40.010000"],["2024-07-25T12:30:41.010000"],["2024-07-25T12:30:42.010000"],["2024-07-25T12:30:43.010000"],["2024-07-25T12:30:44.010000"],["2024-07-25T12:30:45.010000"],["2024-07-25T12:30:46.010000"],["2024-07-25T12:30:47.010000"],["2024-07-25T12:30:48.010000"],["2024-07-25T12:30:49.010000"],["2024-07-25T12:30:50.010000"],["2024-07-25T12:30:51.010000"],["2024-07-25T12:30:52.010000"],["2024-07-25T12:30:53.010000"],["2024-07-25T12:30:54.010000"],["2024-07-25T12:30:55.010000"],["2024-07-25T12:30:56.010000"],["2024-07-25T12:30:57.010000"],["2024-07-25T12:30:58.010000"],["2024-07-25T12:30:59.010000"],["2024-07-25T12:31:00.010000"],["2024-07-25T12:31:01.010000"],["2024-07-25T12:31:02.010000"],["2024-07-25T12:31:03.010000"],["2024-07-25T12:31:04.010000"],["2024-07-25T12:31:05.010000"],["2024-07-25T12:31:06.010000"],["2024-07-25T12:31:07.010000"],["2024-07-25T12:31:08.010000"],["2024-07-25T12:31:09.010000"],["2024-07-25T12:31:10.010000"],["2024-07-25T12:31:11.010000"],["2024-07-25T12:31:12.010000"],["2024-07-25T12:31:13.010000"],["2024-07-25T12:31:14.010000"],["2024-07-25T12:31:15.010000"],["2024-07-25T12:31:16.010000"],["2024-07-25T12:31:17.010000"],["2024-07-25T12:31:18.010000"],["2024-07-25T12:31:19.010000"],["2024-07-25T12:31:20.010000"],["2024-07-25T12:31:21.010000"],["2024-07-25T12:31:22.010000"],["2024-07-25T12:31:23.010000"],["2024-07-25T12:31:24.010000"],["2024-07-25T12:31:25.010000"],["2024-07-25T12:31:26.010000"],["2024-07-25T12:31:27.010000"],["2024-07-25T12:31:28.010000"],["2024-07-25T12:31:29.010000"],["2024-07-25T12:31:30.010000"],["2024-07-25T12:31:31.010000"],["2024-07-25T12:31:32.010000"],["2024-07-25T12:31:33.010000"],["2024-07-25T12:31:34.010000"],["2024-07-25T12:31:35.010000"],["2024-07-25T12:31:36.010000"],["2024-07-25T12:31:37.010000"],["2024-07-25T12:31:38.010000"],["2024-07-25T12:31:39.010000"],["2024-07-25T12:31:40.010000"],["2024-07-25T12:31:41.010000"],["2024-07-25T12:31:42.010000"],["2024-07-25T12:31:43.010000"],["2024-07-25T12:31:44.010000"],["2024-07-25T12:31:45.010000"],["2024-07-25T12:31:46.010000"],["2024-07-25T12:31:47.010000"],["2024-07-25T12:31:48.010000"],["2024-07-25T12:31:49.010000"],["2024-07-25T12:31:50.010000"],["2024-07-25T12:31:51.010000"],["2024-07-25T12:31:52.010000"],["2024-07-25T12:31:53.010000"],["2024-07-25T12:31:54.010000"],["2024-07-25T12:31:55.010000"],["2024-07-25T12:31:56.010000"],["2024-07-25T12:31:57.010000"],["2024-07-25T12:31:58.010000"],["2024-07-25T12:31:59.010000"],["2024-07-25T12:32:00.010000"],["2024-07-25T12:32:01.010000"],["2024-07-25T12:32:02.010000"],["2024-07-25T12:32:03.010000"],["2024-07-25T12:32:04.010000"],["2024-07-25T12:32:05.010000"],["2024-07-25T12:32:06.010000"],["2024-07-25T12:32:07.010000"],["2024-07-25T12:32:08.010000"],["2024-07-25T12:32:09.010000"],["2024-07-25T12:32:10.010000"],["2024-07-25T12:32:11.010000"],["2024-07-25T12:32:12.010000"],["2024-07-25T12:32:13.010000"],["2024-07-25T12:32:14.010000"],["2024-07-25T12:32:15.010000"],["2024-07-25T12:32:16.010000"],["2024-07-25T12:32:17.010000"],["2024-07-25T12:32:18.010000"],["2024-07-25T12:32:19.010000"],["2024-07-25T12:32:20.010000"],["2024-07-25T12:32:21.010000"],["2024-07-25T12:32:22.010000"],["2024-07-25T12:32:23.010000"],["2024-07-25T12:32:24.010000"],["2024-07-25T12:32:25.010000"],["2024-07-25T12:32:26.010000"],["2024-07-25T12:32:27.010000"],["2024-07-25T12:32:28.010000"],["2024-07-25T12:32:29.010000"],["2024-07-25T12:32:30.010000"],["2024-07-25T12:32:31.010000"],["2024-07-25T12:32:32.010000"],["2024-07-25T12:32:33.010000"],["2024-07-25T12:32:34.010000"],["2024-07-25T12:32:35.010000"],["2024-07-25T12:32:36.010000"],["2024-07-25T12:32:37.010000"],["2024-07-25T12:32:38.010000"],["2024-07-25T12:32:39.010000"],["2024-07-25T12:32:40.010000"],["2024-07-25T12:32:41.010000"],["2024-07-25T12:32:42.010000"],["2024-07-25T12:32:43.010000"],["2024-07-25T12:32:44.010000"],["2024-07-25T12:32:45.010000"],["2024-07-25T12:32:46.010000"],["2024-07-25T12:32:47.010000"],["2024-07-25T12:32:48.010000"],["2024-07-25T12:32:49.010000"],["2024-07-25T12:32:50.010000"],["2024-07-25T12:32:51.010000"],["2024-07-25T12:32:52.010000"],["2024-07-25T12:32:53.010000"],["2024-07-25T12:32:54.010000"],["2024-07-25T12:32:55.010000"],["2024-07-25T12:32:56.010000"],["2024-07-25T12:32:57.010000"],["2024-07-25T12:32:58.010000"],["2024-07-25T12:32:59.010000"],["2024-07-25T12:33:00.010000"],["2024-07-25T12:33:01.010000"],["2024-07-25T12:33:02.010000"],["2024-07-25T12:33:03.010000"],["2024-07-25T12:33:04.010000"],["2024-07-25T12:33:05.010000"],["2024-07-25T12:33:06.010000"],["2024-07-25T12:33:07.010000"],["2024-07-25T12:33:08.010000"],["2024-07-25T12:33:09.010000"],["2024-07-25T12:33:10.010000"],["2024-07-25T12:33:11.010000"],["2024-07-25T12:33:12.010000"],["2024-07-25T12:33:13.010000"],["2024-07-25T12:33:14.010000"],["2024-07-25T12:33:15.010000"],["2024-07-25T12:33:16.010000"],["2024-07-25T12:33:17.010000"],["2024-07-25T12:33:18.010000"],["2024-07-25T12:33:19.010000"],["2024-07-25T12:33:20.010000"],["2024-07-25T12:33:21.010000"],["2024-07-25T12:33:22.010000"],["2024-07-25T12:33:23.010000"],["2024-07-25T12:33:24.010000"],["2024-07-25T12:33:25.010000"],["2024-07-25T12:33:26.010000"],["2024-07-25T12:33:27.010000"],["2024-07-25T12:33:28.010000"],["2024-07-25T12:33:29.010000"],["2024-07-25T12:33:30.010000"],["2024-07-25T12:33:31.010000"],["2024-07-25T12:33:32.010000"],["2024-07-25T12:33:33.010000"],["2024-07-25T12:33:34.010000"],["2024-07-25T12:33:35.010000"],["2024-07-25T12:33:36.010000"],["2024-07-25T12:33:37.010000"],["2024-07-25T12:33:38.010000"],["2024-07-25T12:33:39.010000"],["2024-07-25T12:33:40.010000"],["2024-07-25T12:33:41.010000"],["2024-07-25T12:33:42.010000"],["2024-07-25T12:33:43.010000"],["2024-07-25T12:33:44.010000"],["2024-07-25T12:33:45.010000"],["2024-07-25T12:33:46.010000"],["2024-07-25T12:33:47.010000"],["2024-07-25T12:33:48.010000"],["2024-07-25T12:33:49.010000"],["2024-07-25T12:33:50.010000"],["2024-07-25T12:33:51.010000"],["2024-07-25T12:33:52.010000"],["2024-07-25T12:33:53.010000"],["2024-07-25T12:33:54.010000"],["2024-07-25T12:33:55.010000"],["2024-07-25T12:33:56.010000"],["2024-07-25T12:33:57.010000"],["2024-07-25T12:33:58.010000"],["2024-07-25T12:33:59.010000"],["2024-07-25T12:34:00.010000"],["2024-07-25T12:34:01.010000"],["2024-07-25T12:34:02.010000"],["2024-07-25T12:34:03.010000"],["2024-07-25T12:34:04.010000"],["2024-07-25T12:34:05.010000"],["2024-07-25T12:34:06.010000"],["2024-07-25T12:34:07.010000"],["2024-07-25T12:34:08.010000"],["2024-07-25T12:34:09.010000"],["2024-07-25T12:34:10.010000"],["2024-07-25T12:34:11.010000"],["2024-07-25T12:34:12.010000"],["2024-07-25T12:34:13.010000"],["2024-07-25T12:34:14.010000"],["2024-07-25T12:34:15.010000"],["2024-07-25T12:34:16.010000"],["2024-07-25T12:34:17.010000"],["2024-07-25T12:34:18.010000"],["2024-07-25T12:34:19.010000"],["2024-07-25T12:34:20.010000"],["2024-07-25T12:34:21.010000"],["2024-07-25T12:34:22.010000"],["2024-07-25T12:34:23.010000"],["2024-07-25T12:34:24.010000"],["2024-07-25T12:34:25.010000"],["2024-07-25T12:34:26.010000"],["2024-07-25T12:34:27.010000"],["2024-07-25T12:34:28.010000"],["2024-07-25T12:34:29.010000"],["2024-07-25T12:34:30.010000"],["2024-07-25T12:34:31.010000"],["2024-07-25T12:34:32.010000"],["2024-07-25T12:34:33.010000"],["2024-07-25T12:34:34.010000"],["2024-07-25T12:34:35.010000"],["2024-07-25T12:34:36.010000"],["2024-07-25T12:34:37.010000"],["2024-07-25T12:34:38.010000"],["2024-07-25T12:34:39.010000"],["2024-07-25T12:34:40.010000"],["2024-07-25T12:34:41.010000"],["2024-07-25T12:34:42.010000"],["2024-07-25T12:34:43.010000"],["2024-07-25T12:34:44.010000"],["2024-07-25T12:34:45.010000"],["2024-07-25T12:34:46.010000"],["2024-07-25T12:34:47.010000"],["2024-07-25T12:34:48.010000"],["2024-07-25T12:34:49.010000"],["2024-07-25T12:34:50.010000"],["2024-07-25T12:34:51.010000"],["2024-07-25T12:34:52.010000"],["2024-07-25T12:34:53.010000"],["2024-07-25T12:34:54.010000"],["2024-07-25T12:34:55.010000"],["2024-07-25T12:34:56.010000"],["2024-07-25T12:34:57.010000"],["2024-07-25T12:34:58.010000"],["2024-07-25T12:34:59.010000"],["2024-07-25T12:35:00.010000"],["2024-07-25T12:35:01.010000"],["2024-07-25T12:35:02.010000"],["2024-07-25T12:35:03.010000"],["2024-07-25T12:35:04.010000"],["2024-07-25T12:35:05.010000"],["2024-07-25T12:35:06.010000"],["2024-07-25T12:35:07.010000"],["2024-07-25T12:35:08.010000"],["2024-07-25T12:35:09.010000"],["2024-07-25T12:35:10.010000"],["2024-07-25T12:35:11.010000"],["2024-07-25T12:35:12.010000"],["2024-07-25T12:35:13.010000"],["2024-07-25T12:35:14.010000"],["2024-07-25T12:35:15.010000"],["2024-07-25T12:35:16.010000"],["2024-07-25T12:35:17.010000"],["2024-07-25T12:35:18.010000"],["2024-07-25T12:35:19.010000"],["2024-07-25T12:35:20.010000"],["2024-07-25T12:35:21.010000"],["2024-07-25T12:35:22.010000"],["2024-07-25T12:35:23.010000"],["2024-07-25T12:35:24.010000"],["2024-07-25T12:35:25.010000"],["2024-07-25T12:35:26.010000"],["2024-07-25T12:35:27.010000"],["2024-07-25T12:35:28.010000"],["2024-07-25T12:35:29.010000"],["2024-07-25T12:35:30.010000"],["2024-07-25T12:35:31.010000"],["2024-07-25T12:35:32.010000"],["2024-07-25T12:35:33.010000"],["2024-07-25T12:35:34.010000"],["2024-07-25T12:35:35.010000"],["2024-07-25T12:35:36.010000"],["2024-07-25T12:35:37.010000"],["2024-07-25T12:35:38.010000"],["2024-07-25T12:35:39.010000"],["2024-07-25T12:35:40.010000"],["2024-07-25T12:35:41.010000"],["2024-07-25T12:35:42.010000"],["2024-07-25T12:35:43.010000"],["2024-07-25T12:35:44.010000"],["2024-07-25T12:35:45.010000"],["2024-07-25T12:35:46.010000"],["2024-07-25T12:35:47.010000"],["2024-07-25T12:35:48.010000"],["2024-07-25T12:35:49.010000"],["2024-07-25T12:35:50.010000"],["2024-07-25T12:35:51.010000"],["2024-07-25T12:35:52.010000"],["2024-07-25T12:35:53.010000"],["2024-07-25T12:35:54.010000"],["2024-07-25T12:35:55.010000"],["2024-07-25T12:35:56.010000"],["2024-07-25T12:35:57.010000"],["2024-07-25T12:35:58.010000"],["2024-07-25T12:35:59.010000"],["2024-07-25T12:36:00.010000"],["2024-07-25T12:36:01.010000"],["2024-07-25T12:36:02.010000"],["2024-07-25T12:36:03.010000"],["2024-07-25T12:36:04.010000"],["2024-07-25T12:36:05.010000"],["2024-07-25T12:36:06.010000"],["2024-07-25T12:36:07.010000"],["2024-07-25T12:36:08.010000"],["2024-07-25T12:36:09.010000"],["2024-07-25T12:36:10.010000"],["2024-07-25T12:36:11.010000"],["2024-07-25T12:36:12.010000"],["2024-07-25T12:36:13.010000"],["2024-07-25T12:36:14.010000"],["2024-07-25T12:36:15.010000"],["2024-07-25T12:36:16.010000"],["2024-07-25T12:36:17.010000"],["2024-07-25T12:36:18.010000"],["2024-07-25T12:36:19.010000"],["2024-07-25T12:36:20.010000"],["2024-07-25T12:36:21.010000"],["2024-07-25T12:36:22.010000"],["2024-07-25T12:36:23.010000"],["2024-07-25T12:36:24.010000"],["2024-07-25T12:36:25.010000"],["2024-07-25T12:36:26.010000"],["2024-07-25T12:36:27.010000"],["2024-07-25T12:36:28.010000"],["2024-07-25T12:36:29.010000"],["2024-07-25T12:36:30.010000"],["2024-07-25T12:36:31.010000"],["2024-07-25T12:36:32.010000"],["2024-07-25T12:36:33.010000"],["2024-07-25T12:36:34.010000"],["2024-07-25T12:36:35.010000"],["2024-07-25T12:36:36.010000"],["2024-07-25T12:36:37.010000"],["2024-07-25T12:36:38.010000"],["2024-07-25T12:36:39.010000"],["2024-07-25T12:36:40.010000"],["2024-07-25T12:36:41.010000"],["2024-07-25T12:36:42.010000"],["2024-07-25T12:36:43.010000"],["2024-07-25T12:36:44.010000"],["2024-07-25T12:36:45.010000"],["2024-07-25T12:36:46.010000"],["2024-07-25T12:36:47.010000"],["2024-07-25T12:36:48.010000"],["2024-07-25T12:36:49.010000"],["2024-07-25T12:36:50.010000"],["2024-07-25T12:36:51.010000"],["2024-07-25T12:36:52.010000"],["2024-07-25T12:36:53.010000"],["2024-07-25T12:36:54.010000"],["2024-07-25T12:36:55.010000"],["2024-07-25T12:36:56.010000"],["2024-07-25T12:36:57.010000"],["2024-07-25T12:36:58.010000"],["2024-07-25T12:36:59.010000"],["2024-07-25T12:37:00.010000"],["2024-07-25T12:37:01.010000"],["2024-07-25T12:37:02.010000"],["2024-07-25T12:37:03.010000"],["2024-07-25T12:37:04.010000"],["2024-07-25T12:37:05.010000"],["2024-07-25T12:37:06.010000"],["2024-07-25T12:37:07.010000"],["2024-07-25T12:37:08.010000"],["2024-07-25T12:37:09.010000"],["2024-07-25T12:37:10.010000"],["2024-07-25T12:37:11.010000"],["2024-07-25T12:37:12.010000"],["2024-07-25T12:37:13.010000"],["2024-07-25T12:37:14.010000"],["2024-07-25T12:37:15.010000"],["2024-07-25T12:37:16.010000"],["2024-07-25T12:37:17.010000"],["2024-07-25T12:37:18.010000"],["2024-07-25T12:37:19.010000"],["2024-07-25T12:37:20.010000"],["2024-07-25T12:37:21.010000"],["2024-07-25T12:37:22.010000"],["2024-07-25T12:37:23.010000"],["2024-07-25T12:37:24.010000"],["2024-07-25T12:37:25.010000"],["2024-07-25T12:37:26.010000"],["2024-07-25T12:37:27.010000"],["2024-07-25T12:37:28.010000"],["2024-07-25T12:37:29.010000"],["2024-07-25T12:37:30.010000"],["2024-07-25T12:37:31.010000"],["2024-07-25T12:37:32.010000"],["2024-07-25T12:37:33.010000"],["2024-07-25T12:37:34.010000"],["2024-07-25T12:37:35.010000"],["2024-07-25T12:37:36.010000"],["2024-07-25T12:37:37.010000"],["2024-07-25T12:37:38.010000"],["2024-07-25T12:37:39.010000"],["2024-07-25T12:37:40.010000"],["2024-07-25T12:37:41.010000"],["2024-07-25T12:37:42.010000"],["2024-07-25T12:37:43.010000"],["2024-07-25T12:37:44.010000"],["2024-07-25T12:37:45.010000"],["2024-07-25T12:37:46.010000"],["2024-07-25T12:37:47.010000"],["2024-07-25T12:37:48.010000"],["2024-07-25T12:37:49.010000"],["2024-07-25T12:37:50.010000"],["2024-07-25T12:37:51.010000"],["2024-07-25T12:37:52.010000"],["2024-07-25T12:37:53.010000"],["2024-07-25T12:37:54.010000"],["2024-07-25T12:37:55.010000"],["2024-07-25T12:37:56.010000"],["2024-07-25T12:37:57.010000"],["2024-07-25T12:37:58.010000"],["2024-07-25T12:37:59.010000"],["2024-07-25T12:38:00.010000"],["2024-07-25T12:38:01.010000"],["2024-07-25T12:38:02.010000"],["2024-07-25T12:38:03.010000"],["2024-07-25T12:38:04.010000"],["2024-07-25T12:38:05.010000"],["2024-07-25T12:38:06.010000"],["2024-07-25T12:38:07.010000"],["2024-07-25T12:38:08.010000"],["2024-07-25T12:38:09.010000"],["2024-07-25T12:38:10.010000"],["2024-07-25T12:38:11.010000"],["2024-07-25T12:38:12.010000"],["2024-07-25T12:38:13.010000"],["2024-07-25T12:38:14.010000"],["2024-07-25T12:38:15.010000"],["2024-07-25T12:38:16.010000"],["2024-07-25T12:38:17.010000"],["2024-07-25T12:38:18.010000"],["2024-07-25T12:38:19.010000"],["2024-07-25T12:38:20.010000"],["2024-07-25T12:38:21.010000"],["2024-07-25T12:38:22.010000"],["2024-07-25T12:38:23.010000"],["2024-07-25T12:38:24.010000"],["2024-07-25T12:38:25.010000"],["2024-07-25T12:38:26.010000"],["2024-07-25T12:38:27.010000"],["2024-07-25T12:38:28.010000"],["2024-07-25T12:38:29.010000"],["2024-07-25T12:38:30.010000"],["2024-07-25T12:38:31.010000"],["2024-07-25T12:38:32.010000"],["2024-07-25T12:38:33.010000"],["2024-07-25T12:38:34.010000"],["2024-07-25T12:38:35.010000"],["2024-07-25T12:38:36.010000"],["2024-07-25T12:38:37.010000"],["2024-07-25T12:38:38.010000"],["2024-07-25T12:38:39.010000"],["2024-07-25T12:38:40.010000"],["2024-07-25T12:38:41.010000"],["2024-07-25T12:38:42.010000"],["2024-07-25T12:38:43.010000"],["2024-07-25T12:38:44.010000"],["2024-07-25T12:38:45.010000"],["2024-07-25T12:38:46.010000"],["2024-07-25T12:38:47.010000"],["2024-07-25T12:38:48.010000"],["2024-07-25T12:38:49.010000"],["2024-07-25T12:38:50.010000"],["2024-07-25T12:38:51.010000"],["2024-07-25T12:38:52.010000"],["2024-07-25T12:38:53.010000"],["2024-07-25T12:38:54.010000"],["2024-07-25T12:38:55.010000"],["2024-07-25T12:38:56.010000"],["2024-07-25T12:38:57.010000"],["2024-07-25T12:38:58.010000"],["2024-07-25T12:38:59.010000"],["2024-07-25T12:39:00.010000"],["2024-07-25T12:39:01.010000"],["2024-07-25T12:39:02.010000"],["2024-07-25T12:39:03.010000"],["2024-07-25T12:39:04.010000"],["2024-07-25T12:39:05.010000"],["2024-07-25T12:39:06.010000"],["2024-07-25T12:39:07.010000"],["2024-07-25T12:39:08.010000"],["2024-07-25T12:39:09.010000"],["2024-07-25T12:39:10.010000"],["2024-07-25T12:39:11.010000"],["2024-07-25T12:39:12.010000"],["2024-07-25T12:39:13.010000"],["2024-07-25T12:39:14.010000"],["2024-07-25T12:39:15.010000"],["2024-07-25T12:39:16.010000"],["2024-07-25T12:39:17.010000"],["2024-07-25T12:39:18.010000"],["2024-07-25T12:39:19.010000"],["2024-07-25T12:39:20.010000"],["2024-07-25T12:39:21.010000"],["2024-07-25T12:39:22.010000"],["2024-07-25T12:39:23.010000"],["2024-07-25T12:39:24.010000"],["2024-07-25T12:39:25.010000"],["2024-07-25T12:39:26.010000"],["2024-07-25T12:39:27.010000"],["2024-07-25T12:39:28.010000"],["2024-07-25T12:39:29.010000"],["2024-07-25T12:39:30.010000"],["2024-07-25T12:39:31.010000"],["2024-07-25T12:39:32.010000"],["2024-07-25T12:39:33.010000"],["2024-07-25T12:39:34.010000"],["2024-07-25T12:39:35.010000"],["2024-07-25T12:39:36.010000"],["2024-07-25T12:39:37.010000"],["2024-07-25T12:39:38.010000"],["2024-07-25T12:39:39.010000"],["2024-07-25T12:39:40.010000"],["2024-07-25T12:39:41.010000"],["2024-07-25T12:39:42.010000"],["2024-07-25T12:39:43.010000"],["2024-07-25T12:39:44.010000"],["2024-07-25T12:39:45.010000"],["2024-07-25T12:39:46.010000"],["2024-07-25T12:39:47.010000"],["2024-07-25T12:39:48.010000"],["2024-07-25T12:39:49.010000"],["2024-07-25T12:39:50.010000"],["2024-07-25T12:39:51.010000"],["2024-07-25T12:39:52.010000"],["2024-07-25T12:39:53.010000"],["2024-07-25T12:39:54.010000"],["2024-07-25T12:39:55.010000"],["2024-07-25T12:39:56.010000"],["2024-07-25T12:39:57.010000"],["2024-07-25T12:39:58.010000"],["2024-07-25T12:39:59.010000"],["2024-07-25T12:40:00.010000"],["2024-07-25T12:40:01.010000"],["2024-07-25T12:40:02.010000"],["2024-07-25T12:40:03.010000"],["2024-07-25T12:40:04.010000"],["2024-07-25T12:40:05.010000"],["2024-07-25T12:40:06.010000"],["2024-07-25T12:40:07.010000"],["2024-07-25T12:40:08.010000"],["2024-07-25T12:40:09.010000"],["2024-07-25T12:40:10.010000"],["2024-07-25T12:40:11.010000"],["2024-07-25T12:40:12.010000"],["2024-07-25T12:40:13.010000"],["2024-07-25T12:40:14.010000"],["2024-07-25T12:40:15.010000"],["2024-07-25T12:40:16.010000"],["2024-07-25T12:40:17.010000"],["2024-07-25T12:40:18.010000"],["2024-07-25T12:40:19.010000"],["2024-07-25T12:40:20.010000"],["2024-07-25T12:40:21.010000"],["2024-07-25T12:40:22.010000"],["2024-07-25T12:40:23.010000"],["2024-07-25T12:40:24.010000"],["2024-07-25T12:40:25.010000"],["2024-07-25T12:40:26.010000"],["2024-07-25T12:40:27.010000"],["2024-07-25T12:40:28.010000"],["2024-07-25T12:40:29.010000"],["2024-07-25T12:40:30.010000"],["2024-07-25T12:40:31.010000"],["2024-07-25T12:40:32.010000"],["2024-07-25T12:40:33.010000"],["2024-07-25T12:40:34.010000"],["2024-07-25T12:40:35.010000"],["2024-07-25T12:40:36.010000"],["2024-07-25T12:40:37.010000"],["2024-07-25T12:40:38.010000"],["2024-07-25T12:40:39.010000"],["2024-07-25T12:40:40.010000"],["2024-07-25T12:40:41.010000"],["2024-07-25T12:40:42.010000"],["2024-07-25T12:40:43.010000"],["2024-07-25T12:40:44.010000"],["2024-07-25T12:40:45.010000"],["2024-07-25T12:40:46.010000"],["2024-07-25T12:40:47.010000"],["2024-07-25T12:40:48.010000"],["2024-07-25T12:40:49.010000"],["2024-07-25T12:40:50.010000"],["2024-07-25T12:40:51.010000"],["2024-07-25T12:40:52.010000"],["2024-07-25T12:40:53.010000"],["2024-07-25T12:40:54.010000"],["2024-07-25T12:40:55.010000"],["2024-07-25T12:40:56.010000"],["2024-07-25T12:40:57.010000"],["2024-07-25T12:40:58.010000"],["2024-07-25T12:40:59.010000"],["2024-07-25T12:41:00.010000"],["2024-07-25T12:41:01.010000"],["2024-07-25T12:41:02.010000"],["2024-07-25T12:41:03.010000"],["2024-07-25T12:41:04.010000"],["2024-07-25T12:41:05.010000"],["2024-07-25T12:41:06.010000"],["2024-07-25T12:41:07.010000"],["2024-07-25T12:41:08.010000"],["2024-07-25T12:41:09.010000"],["2024-07-25T12:41:10.010000"],["2024-07-25T12:41:11.010000"],["2024-07-25T12:41:12.010000"],["2024-07-25T12:41:13.010000"],["2024-07-25T12:41:14.010000"],["2024-07-25T12:41:15.010000"],["2024-07-25T12:41:16.010000"],["2024-07-25T12:41:17.010000"],["2024-07-25T12:41:18.010000"],["2024-07-25T12:41:19.010000"],["2024-07-25T12:41:20.010000"],["2024-07-25T12:41:21.010000"],["2024-07-25T12:41:22.010000"],["2024-07-25T12:41:23.010000"],["2024-07-25T12:41:24.010000"],["2024-07-25T12:41:25.010000"],["2024-07-25T12:41:26.010000"],["2024-07-25T12:41:27.010000"],["2024-07-25T12:41:28.010000"],["2024-07-25T12:41:29.010000"],["2024-07-25T12:41:30.010000"],["2024-07-25T12:41:31.010000"],["2024-07-25T12:41:32.010000"],["2024-07-25T12:41:33.010000"],["2024-07-25T12:41:34.010000"],["2024-07-25T12:41:35.010000"],["2024-07-25T12:41:36.010000"],["2024-07-25T12:41:37.010000"],["2024-07-25T12:41:38.010000"],["2024-07-25T12:41:39.010000"],["2024-07-25T12:41:40.010000"],["2024-07-25T12:41:41.010000"],["2024-07-25T12:41:42.010000"],["2024-07-25T12:41:43.010000"],["2024-07-25T12:41:44.010000"],["2024-07-25T12:41:45.010000"],["2024-07-25T12:41:46.010000"],["2024-07-25T12:41:47.010000"],["2024-07-25T12:41:48.010000"],["2024-07-25T12:41:49.010000"],["2024-07-25T12:41:50.010000"],["2024-07-25T12:41:51.010000"],["2024-07-25T12:41:52.010000"],["2024-07-25T12:41:53.010000"],["2024-07-25T12:41:54.010000"],["2024-07-25T12:41:55.010000"],["2024-07-25T12:41:56.010000"],["2024-07-25T12:41:57.010000"],["2024-07-25T12:41:58.010000"],["2024-07-25T12:41:59.010000"],["2024-07-25T12:42:00.010000"],["2024-07-25T12:42:01.010000"],["2024-07-25T12:42:02.010000"],["2024-07-25T12:42:03.010000"],["2024-07-25T12:42:04.010000"],["2024-07-25T12:42:05.010000"],["2024-07-25T12:42:06.010000"],["2024-07-25T12:42:07.010000"],["2024-07-25T12:42:08.010000"],["2024-07-25T12:42:09.010000"],["2024-07-25T12:42:10.010000"],["2024-07-25T12:42:11.010000"],["2024-07-25T12:42:12.010000"],["2024-07-25T12:42:13.010000"],["2024-07-25T12:42:14.010000"],["2024-07-25T12:42:15.010000"],["2024-07-25T12:42:16.010000"],["2024-07-25T12:42:17.010000"],["2024-07-25T12:42:18.010000"],["2024-07-25T12:42:19.010000"],["2024-07-25T12:42:20.010000"],["2024-07-25T12:42:21.010000"],["2024-07-25T12:42:22.010000"],["2024-07-25T12:42:23.010000"],["2024-07-25T12:42:24.010000"],["2024-07-25T12:42:25.010000"],["2024-07-25T12:42:26.010000"],["2024-07-25T12:42:27.010000"],["2024-07-25T12:42:28.010000"],["2024-07-25T12:42:29.010000"],["2024-07-25T12:42:30.010000"],["2024-07-25T12:42:31.010000"],["2024-07-25T12:42:32.010000"],["2024-07-25T12:42:33.010000"],["2024-07-25T12:42:34.010000"],["2024-07-25T12:42:35.010000"],["2024-07-25T12:42:36.010000"],["2024-07-25T12:42:37.010000"],["2024-07-25T12:42:38.010000"],["2024-07-25T12:42:39.010000"],["2024-07-25T12:42:40.010000"],["2024-07-25T12:42:41.010000"],["2024-07-25T12:42:42.010000"],["2024-07-25T12:42:43.010000"],["2024-07-25T12:42:44.010000"],["2024-07-25T12:42:45.010000"],["2024-07-25T12:42:46.010000"],["2024-07-25T12:42:47.010000"],["2024-07-25T12:42:48.010000"],["2024-07-25T12:42:49.010000"],["2024-07-25T12:42:50.010000"],["2024-07-25T12:42:51.010000"],["2024-07-25T12:42:52.010000"],["2024-07-25T12:42:53.010000"],["2024-07-25T12:42:54.010000"],["2024-07-25T12:42:55.010000"],["2024-07-25T12:42:56.010000"],["2024-07-25T12:42:57.010000"],["2024-07-25T12:42:58.010000"],["2024-07-25T12:42:59.010000"],["2024-07-25T12:43:00.010000"],["2024-07-25T12:43:01.010000"],["2024-07-25T12:43:02.010000"],["2024-07-25T12:43:03.010000"],["2024-07-25T12:43:04.010000"],["2024-07-25T12:43:05.010000"],["2024-07-25T12:43:06.010000"],["2024-07-25T12:43:07.010000"],["2024-07-25T12:43:08.010000"],["2024-07-25T12:43:09.010000"],["2024-07-25T12:43:10.010000"],["2024-07-25T12:43:11.010000"],["2024-07-25T12:43:12.010000"],["2024-07-25T12:43:13.010000"],["2024-07-25T12:43:14.010000"],["2024-07-25T12:43:15.010000"],["2024-07-25T12:43:16.010000"],["2024-07-25T12:43:17.010000"],["2024-07-25T12:43:18.010000"],["2024-07-25T12:43:19.010000"],["2024-07-25T12:43:20.010000"],["2024-07-25T12:43:21.010000"],["2024-07-25T12:43:22.010000"],["2024-07-25T12:43:23.010000"],["2024-07-25T12:43:24.010000"],["2024-07-25T12:43:25.010000"],["2024-07-25T12:43:26.010000"],["2024-07-25T12:43:27.010000"],["2024-07-25T12:43:28.010000"],["2024-07-25T12:43:29.010000"],["2024-07-25T12:43:30.010000"],["2024-07-25T12:43:31.010000"],["2024-07-25T12:43:32.010000"],["2024-07-25T12:43:33.010000"],["2024-07-25T12:43:34.010000"],["2024-07-25T12:43:35.010000"],["2024-07-25T12:43:36.010000"],["2024-07-25T12:43:37.010000"],["2024-07-25T12:43:38.010000"],["2024-07-25T12:43:39.010000"],["2024-07-25T12:43:40.010000"],["2024-07-25T12:43:41.010000"],["2024-07-25T12:43:42.010000"],["2024-07-25T12:43:43.010000"],["2024-07-25T12:43:44.010000"],["2024-07-25T12:43:45.010000"],["2024-07-25T12:43:46.010000"],["2024-07-25T12:43:47.010000"],["2024-07-25T12:43:48.010000"],["2024-07-25T12:43:49.010000"],["2024-07-25T12:43:50.010000"],["2024-07-25T12:43:51.010000"],["2024-07-25T12:43:52.010000"],["2024-07-25T12:43:53.010000"],["2024-07-25T12:43:54.010000"],["2024-07-25T12:43:55.010000"],["2024-07-25T12:43:56.010000"],["2024-07-25T12:43:57.010000"],["2024-07-25T12:43:58.010000"],["2024-07-25T12:43:59.010000"],["2024-07-25T12:44:00.010000"],["2024-07-25T12:44:01.010000"],["2024-07-25T12:44:02.010000"],["2024-07-25T12:44:03.010000"],["2024-07-25T12:44:04.010000"],["2024-07-25T12:44:05.010000"],["2024-07-25T12:44:06.010000"],["2024-07-25T12:44:07.010000"],["2024-07-25T12:44:08.010000"],["2024-07-25T12:44:09.010000"],["2024-07-25T12:44:10.010000"],["2024-07-25T12:44:11.010000"],["2024-07-25T12:44:12.010000"],["2024-07-25T12:44:13.010000"],["2024-07-25T12:44:14.010000"],["2024-07-25T12:44:15.010000"],["2024-07-25T12:44:16.010000"],["2024-07-25T12:44:17.010000"],["2024-07-25T12:44:18.010000"],["2024-07-25T12:44:19.010000"],["2024-07-25T12:44:20.010000"],["2024-07-25T12:44:21.010000"],["2024-07-25T12:44:22.010000"],["2024-07-25T12:44:23.010000"],["2024-07-25T12:44:24.010000"],["2024-07-25T12:44:25.010000"],["2024-07-25T12:44:26.010000"],["2024-07-25T12:44:27.010000"],["2024-07-25T12:44:28.010000"],["2024-07-25T12:44:29.010000"],["2024-07-25T12:44:30.010000"],["2024-07-25T12:44:31.010000"],["2024-07-25T12:44:32.010000"],["2024-07-25T12:44:33.010000"],["2024-07-25T12:44:34.010000"],["2024-07-25T12:44:35.010000"],["2024-07-25T12:44:36.010000"],["2024-07-25T12:44:37.010000"],["2024-07-25T12:44:38.010000"],["2024-07-25T12:44:39.010000"],["2024-07-25T12:44:40.010000"],["2024-07-25T12:44:41.010000"],["2024-07-25T12:44:42.010000"],["2024-07-25T12:44:43.010000"],["2024-07-25T12:44:44.010000"],["2024-07-25T12:44:45.010000"],["2024-07-25T12:44:46.010000"],["2024-07-25T12:44:47.010000"],["2024-07-25T12:44:48.010000"],["2024-07-25T12:44:49.010000"],["2024-07-25T12:44:50.010000"],["2024-07-25T12:44:51.010000"],["2024-07-25T12:44:52.010000"],["2024-07-25T12:44:53.010000"],["2024-07-25T12:44:54.010000"],["2024-07-25T12:44:55.010000"],["2024-07-25T12:44:56.010000"],["2024-07-25T12:44:57.010000"],["2024-07-25T12:44:58.010000"],["2024-07-25T12:44:59.010000"],["2024-07-25T12:45:00.010000"],["2024-07-25T12:45:01.010000"],["2024-07-25T12:45:02.010000"],["2024-07-25T12:45:03.010000"],["2024-07-25T12:45:04.010000"],["2024-07-25T12:45:05.010000"],["2024-07-25T12:45:06.010000"],["2024-07-25T12:45:07.010000"],["2024-07-25T12:45:08.010000"],["2024-07-25T12:45:09.010000"],["2024-07-25T12:45:10.010000"],["2024-07-25T12:45:11.010000"],["2024-07-25T12:45:12.010000"],["2024-07-25T12:45:13.010000"],["2024-07-25T12:45:14.010000"],["2024-07-25T12:45:15.010000"],["2024-07-25T12:45:16.010000"],["2024-07-25T12:45:17.010000"],["2024-07-25T12:45:18.010000"],["2024-07-25T12:45:19.010000"],["2024-07-25T12:45:20.010000"],["2024-07-25T12:45:21.010000"],["2024-07-25T12:45:22.010000"],["2024-07-25T12:45:23.010000"],["2024-07-25T12:45:24.010000"],["2024-07-25T12:45:25.010000"],["2024-07-25T12:45:26.010000"],["2024-07-25T12:45:27.010000"],["2024-07-25T12:45:28.010000"],["2024-07-25T12:45:29.010000"],["2024-07-25T12:45:30.010000"],["2024-07-25T12:45:31.010000"],["2024-07-25T12:45:32.010000"],["2024-07-25T12:45:33.010000"],["2024-07-25T12:45:34.010000"],["2024-07-25T12:45:35.010000"],["2024-07-25T12:45:36.010000"],["2024-07-25T12:45:37.010000"],["2024-07-25T12:45:38.010000"],["2024-07-25T12:45:39.010000"],["2024-07-25T12:45:40.010000"],["2024-07-25T12:45:41.010000"],["2024-07-25T12:45:42.010000"],["2024-07-25T12:45:43.010000"],["2024-07-25T12:45:44.010000"],["2024-07-25T12:45:45.010000"],["2024-07-25T12:45:46.010000"],["2024-07-25T12:45:47.010000"],["2024-07-25T12:45:48.010000"],["2024-07-25T12:45:49.010000"],["2024-07-25T12:45:50.010000"],["2024-07-25T12:45:51.010000"],["2024-07-25T12:45:52.010000"],["2024-07-25T12:45:53.010000"],["2024-07-25T12:45:54.010000"],["2024-07-25T12:45:55.010000"],["2024-07-25T12:45:56.010000"],["2024-07-25T12:45:57.010000"],["2024-07-25T12:45:58.010000"],["2024-07-25T12:45:59.010000"],["2024-07-25T12:46:00.010000"],["2024-07-25T12:46:01.010000"],["2024-07-25T12:46:02.010000"],["2024-07-25T12:46:03.010000"],["2024-07-25T12:46:04.010000"],["2024-07-25T12:46:05.010000"],["2024-07-25T12:46:06.010000"],["2024-07-25T12:46:07.010000"],["2024-07-25T12:46:08.010000"],["2024-07-25T12:46:09.010000"],["2024-07-25T12:46:10.010000"],["2024-07-25T12:46:11.010000"],["2024-07-25T12:46:12.010000"],["2024-07-25T12:46:13.010000"],["2024-07-25T12:46:14.010000"],["2024-07-25T12:46:15.010000"],["2024-07-25T12:46:16.010000"],["2024-07-25T12:46:17.010000"],["2024-07-25T12:46:18.010000"],["2024-07-25T12:46:19.010000"],["2024-07-25T12:46:20.010000"],["2024-07-25T12:46:21.010000"],["2024-07-25T12:46:22.010000"],["2024-07-25T12:46:23.010000"],["2024-07-25T12:46:24.010000"],["2024-07-25T12:46:25.010000"],["2024-07-25T12:46:26.010000"],["2024-07-25T12:46:27.010000"],["2024-07-25T12:46:28.010000"],["2024-07-25T12:46:29.010000"],["2024-07-25T12:46:30.010000"],["2024-07-25T12:46:31.010000"],["2024-07-25T12:46:32.010000"],["2024-07-25T12:46:33.010000"],["2024-07-25T12:46:34.010000"],["2024-07-25T12:46:35.010000"],["2024-07-25T12:46:36.010000"],["2024-07-25T12:46:37.010000"],["2024-07-25T12:46:38.010000"],["2024-07-25T12:46:39.010000"],["2024-07-25T12:46:40.010000"],["2024-07-25T12:46:41.010000"],["2024-07-25T12:46:42.010000"],["2024-07-25T12:46:43.010000"],["2024-07-25T12:46:44.010000"],["2024-07-25T12:46:45.010000"],["2024-07-25T12:46:46.010000"],["2024-07-25T12:46:47.010000"],["2024-07-25T12:46:48.010000"],["2024-07-25T12:46:49.010000"],["2024-07-25T12:46:50.010000"],["2024-07-25T12:46:51.010000"],["2024-07-25T12:46:52.010000"],["2024-07-25T12:46:53.010000"],["2024-07-25T12:46:54.010000"],["2024-07-25T12:46:55.010000"],["2024-07-25T12:46:56.010000"],["2024-07-25T12:46:57.010000"],["2024-07-25T12:46:58.010000"],["2024-07-25T12:46:59.010000"],["2024-07-25T12:47:00.010000"],["2024-07-25T12:47:01.010000"],["2024-07-25T12:47:02.010000"],["2024-07-25T12:47:03.010000"],["2024-07-25T12:47:04.010000"],["2024-07-25T12:47:05.010000"],["2024-07-25T12:47:06.010000"],["2024-07-25T12:47:07.010000"],["2024-07-25T12:47:08.010000"],["2024-07-25T12:47:09.010000"],["2024-07-25T12:47:10.010000"],["2024-07-25T12:47:11.010000"],["2024-07-25T12:47:12.010000"],["2024-07-25T12:47:13.010000"],["2024-07-25T12:47:14.010000"],["2024-07-25T12:47:15.010000"],["2024-07-25T12:47:16.010000"],["2024-07-25T12:47:17.010000"],["2024-07-25T12:47:18.010000"],["2024-07-25T12:47:19.010000"],["2024-07-25T12:47:20.010000"],["2024-07-25T12:47:21.010000"],["2024-07-25T12:47:22.010000"],["2024-07-25T12:47:23.010000"],["2024-07-25T12:47:24.010000"],["2024-07-25T12:47:25.010000"],["2024-07-25T12:47:26.010000"],["2024-07-25T12:47:27.010000"],["2024-07-25T12:47:28.010000"],["2024-07-25T12:47:29.010000"],["2024-07-25T12:47:30.010000"],["2024-07-25T12:47:31.010000"],["2024-07-25T12:47:32.010000"],["2024-07-25T12:47:33.010000"],["2024-07-25T12:47:34.010000"],["2024-07-25T12:47:35.010000"],["2024-07-25T12:47:36.010000"],["2024-07-25T12:47:37.010000"],["2024-07-25T12:47:38.010000"],["2024-07-25T12:47:39.010000"],["2024-07-25T12:47:40.010000"],["2024-07-25T12:47:41.010000"],["2024-07-25T12:47:42.010000"],["2024-07-25T12:47:43.010000"],["2024-07-25T12:47:44.010000"],["2024-07-25T12:47:45.010000"],["2024-07-25T12:47:46.010000"],["2024-07-25T12:47:47.010000"],["2024-07-25T12:47:48.010000"],["2024-07-25T12:47:49.010000"],["2024-07-25T12:47:50.010000"],["2024-07-25T12:47:51.010000"],["2024-07-25T12:47:52.010000"],["2024-07-25T12:47:53.010000"],["2024-07-25T12:47:54.010000"],["2024-07-25T12:47:55.010000"],["2024-07-25T12:47:56.010000"],["2024-07-25T12:47:57.010000"],["2024-07-25T12:47:58.010000"],["2024-07-25T12:47:59.010000"],["2024-07-25T12:48:00.010000"],["2024-07-25T12:48:01.010000"],["2024-07-25T12:48:02.010000"],["2024-07-25T12:48:03.010000"],["2024-07-25T12:48:04.010000"],["2024-07-25T12:48:05.010000"],["2024-07-25T12:48:06.010000"],["2024-07-25T12:48:07.010000"],["2024-07-25T12:48:08.010000"],["2024-07-25T12:48:09.010000"],["2024-07-25T12:48:10.010000"],["2024-07-25T12:48:11.010000"],["2024-07-25T12:48:12.010000"],["2024-07-25T12:48:13.010000"],["2024-07-25T12:48:14.010000"],["2024-07-25T12:48:15.010000"],["2024-07-25T12:48:16.010000"],["2024-07-25T12:48:17.010000"],["2024-07-25T12:48:18.010000"],["2024-07-25T12:48:19.010000"],["2024-07-25T12:48:20.010000"],["2024-07-25T12:48:21.010000"],["2024-07-25T12:48:22.010000"],["2024-07-25T12:48:23.010000"],["2024-07-25T12:48:24.010000"],["2024-07-25T12:48:25.010000"],["2024-07-25T12:48:26.010000"],["2024-07-25T12:48:27.010000"],["2024-07-25T12:48:28.010000"],["2024-07-25T12:48:29.010000"],["2024-07-25T12:48:30.010000"],["2024-07-25T12:48:31.010000"],["2024-07-25T12:48:32.010000"],["2024-07-25T12:48:33.010000"],["2024-07-25T12:48:34.010000"],["2024-07-25T12:48:35.010000"],["2024-07-25T12:48:36.010000"],["2024-07-25T12:48:37.010000"],["2024-07-25T12:48:38.010000"],["2024-07-25T12:48:39.010000"],["2024-07-25T12:48:40.010000"],["2024-07-25T12:48:41.010000"],["2024-07-25T12:48:42.010000"],["2024-07-25T12:48:43.010000"],["2024-07-25T12:48:44.010000"],["2024-07-25T12:48:45.010000"],["2024-07-25T12:48:46.010000"],["2024-07-25T12:48:47.010000"],["2024-07-25T12:48:48.010000"],["2024-07-25T12:48:49.010000"],["2024-07-25T12:48:50.010000"],["2024-07-25T12:48:51.010000"],["2024-07-25T12:48:52.010000"],["2024-07-25T12:48:53.010000"],["2024-07-25T12:48:54.010000"],["2024-07-25T12:48:55.010000"],["2024-07-25T12:48:56.010000"],["2024-07-25T12:48:57.010000"],["2024-07-25T12:48:58.010000"],["2024-07-25T12:48:59.010000"],["2024-07-25T12:49:00.010000"],["2024-07-25T12:49:01.010000"],["2024-07-25T12:49:02.010000"],["2024-07-25T12:49:03.010000"],["2024-07-25T12:49:04.010000"],["2024-07-25T12:49:05.010000"],["2024-07-25T12:49:06.010000"],["2024-07-25T12:49:07.010000"],["2024-07-25T12:49:08.010000"],["2024-07-25T12:49:09.010000"],["2024-07-25T12:49:10.010000"],["2024-07-25T12:49:11.010000"],["2024-07-25T12:49:12.010000"],["2024-07-25T12:49:13.010000"],["2024-07-25T12:49:14.010000"],["2024-07-25T12:49:15.010000"],["2024-07-25T12:49:16.010000"],["2024-07-25T12:49:17.010000"],["2024-07-25T12:49:18.010000"],["2024-07-25T12:49:19.010000"],["2024-07-25T12:49:20.010000"],["2024-07-25T12:49:21.010000"],["2024-07-25T12:49:22.010000"],["2024-07-25T12:49:23.010000"],["2024-07-25T12:49:24.010000"],["2024-07-25T12:49:25.010000"],["2024-07-25T12:49:26.010000"],["2024-07-25T12:49:27.010000"],["2024-07-25T12:49:28.010000"],["2024-07-25T12:49:29.010000"],["2024-07-25T12:49:30.010000"],["2024-07-25T12:49:31.010000"],["2024-07-25T12:49:32.010000"],["2024-07-25T12:49:33.010000"],["2024-07-25T12:49:34.010000"],["2024-07-25T12:49:35.010000"],["2024-07-25T12:49:36.010000"],["2024-07-25T12:49:37.010000"],["2024-07-25T12:49:38.010000"],["2024-07-25T12:49:39.010000"],["2024-07-25T12:49:40.010000"],["2024-07-25T12:49:41.010000"],["2024-07-25T12:49:42.010000"],["2024-07-25T12:49:43.010000"],["2024-07-25T12:49:44.010000"],["2024-07-25T12:49:45.010000"],["2024-07-25T12:49:46.010000"],["2024-07-25T12:49:47.010000"],["2024-07-25T12:49:48.010000"],["2024-07-25T12:49:49.010000"],["2024-07-25T12:49:50.010000"],["2024-07-25T12:49:51.010000"],["2024-07-25T12:49:52.010000"],["2024-07-25T12:49:53.010000"],["2024-07-25T12:49:54.010000"],["2024-07-25T12:49:55.010000"],["2024-07-25T12:49:56.010000"],["2024-07-25T12:49:57.010000"],["2024-07-25T12:49:58.010000"],["2024-07-25T12:49:59.010000"],["2024-07-25T12:50:00.010000"],["2024-07-25T12:50:01.010000"],["2024-07-25T12:50:02.010000"],["2024-07-25T12:50:03.010000"],["2024-07-25T12:50:04.010000"],["2024-07-25T12:50:05.010000"],["2024-07-25T12:50:06.010000"],["2024-07-25T12:50:07.010000"],["2024-07-25T12:50:08.010000"],["2024-07-25T12:50:09.010000"],["2024-07-25T12:50:10.010000"],["2024-07-25T12:50:11.010000"],["2024-07-25T12:50:12.010000"],["2024-07-25T12:50:13.010000"],["2024-07-25T12:50:14.010000"],["2024-07-25T12:50:15.010000"],["2024-07-25T12:50:16.010000"],["2024-07-25T12:50:17.010000"],["2024-07-25T12:50:18.010000"],["2024-07-25T12:50:19.010000"],["2024-07-25T12:50:20.010000"],["2024-07-25T12:50:21.010000"],["2024-07-25T12:50:22.010000"],["2024-07-25T12:50:23.010000"],["2024-07-25T12:50:24.010000"],["2024-07-25T12:50:25.010000"],["2024-07-25T12:50:26.010000"],["2024-07-25T12:50:27.010000"],["2024-07-25T12:50:28.010000"],["2024-07-25T12:50:29.010000"],["2024-07-25T12:50:30.010000"],["2024-07-25T12:50:31.010000"],["2024-07-25T12:50:32.010000"],["2024-07-25T12:50:33.010000"],["2024-07-25T12:50:34.010000"],["2024-07-25T12:50:35.010000"],["2024-07-25T12:50:36.010000"],["2024-07-25T12:50:37.010000"],["2024-07-25T12:50:38.010000"],["2024-07-25T12:50:39.010000"],["2024-07-25T12:50:40.010000"],["2024-07-25T12:50:41.010000"],["2024-07-25T12:50:42.010000"],["2024-07-25T12:50:43.010000"],["2024-07-25T12:50:44.010000"],["2024-07-25T12:50:45.010000"],["2024-07-25T12:50:46.010000"],["2024-07-25T12:50:47.010000"],["2024-07-25T12:50:48.010000"],["2024-07-25T12:50:49.010000"],["2024-07-25T12:50:50.010000"],["2024-07-25T12:50:51.010000"],["2024-07-25T12:50:52.010000"],["2024-07-25T12:50:53.010000"],["2024-07-25T12:50:54.010000"],["2024-07-25T12:50:55.010000"],["2024-07-25T12:50:56.010000"],["2024-07-25T12:50:57.010000"],["2024-07-25T12:50:58.010000"],["2024-07-25T12:50:59.010000"],["2024-07-25T12:51:00.010000"],["2024-07-25T12:51:01.010000"],["2024-07-25T12:51:02.010000"],["2024-07-25T12:51:03.010000"],["2024-07-25T12:51:04.010000"],["2024-07-25T12:51:05.010000"],["2024-07-25T12:51:06.010000"],["2024-07-25T12:51:07.010000"],["2024-07-25T12:51:08.010000"],["2024-07-25T12:51:09.010000"],["2024-07-25T12:51:10.010000"],["2024-07-25T12:51:11.010000"],["2024-07-25T12:51:12.010000"],["2024-07-25T12:51:13.010000"],["2024-07-25T12:51:14.010000"],["2024-07-25T12:51:15.010000"],["2024-07-25T12:51:16.010000"],["2024-07-25T12:51:17.010000"],["2024-07-25T12:51:18.010000"],["2024-07-25T12:51:19.010000"],["2024-07-25T12:51:20.010000"],["2024-07-25T12:51:21.010000"],["2024-07-25T12:51:22.010000"],["2024-07-25T12:51:23.010000"],["2024-07-25T12:51:24.010000"],["2024-07-25T12:51:25.010000"],["2024-07-25T12:51:26.010000"],["2024-07-25T12:51:27.010000"],["2024-07-25T12:51:28.010000"],["2024-07-25T12:51:29.010000"],["2024-07-25T12:51:30.010000"],["2024-07-25T12:51:31.010000"],["2024-07-25T12:51:32.010000"],["2024-07-25T12:51:33.010000"],["2024-07-25T12:51:34.010000"],["2024-07-25T12:51:35.010000"],["2024-07-25T12:51:36.010000"],["2024-07-25T12:51:37.010000"],["2024-07-25T12:51:38.010000"],["2024-07-25T12:51:39.010000"],["2024-07-25T12:51:40.010000"],["2024-07-25T12:51:41.010000"],["2024-07-25T12:51:42.010000"],["2024-07-25T12:51:43.010000"],["2024-07-25T12:51:44.010000"],["2024-07-25T12:51:45.010000"],["2024-07-25T12:51:46.010000"],["2024-07-25T12:51:47.010000"],["2024-07-25T12:51:48.010000"],["2024-07-25T12:51:49.010000"],["2024-07-25T12:51:50.010000"],["2024-07-25T12:51:51.010000"],["2024-07-25T12:51:52.010000"],["2024-07-25T12:51:53.010000"],["2024-07-25T12:51:54.010000"],["2024-07-25T12:51:55.010000"],["2024-07-25T12:51:56.010000"],["2024-07-25T12:51:57.010000"],["2024-07-25T12:51:58.010000"],["2024-07-25T12:51:59.010000"],["2024-07-25T12:52:00.010000"],["2024-07-25T12:52:01.010000"],["2024-07-25T12:52:02.010000"],["2024-07-25T12:52:03.010000"],["2024-07-25T12:52:04.010000"],["2024-07-25T12:52:05.010000"],["2024-07-25T12:52:06.010000"],["2024-07-25T12:52:07.010000"],["2024-07-25T12:52:08.010000"],["2024-07-25T12:52:09.010000"],["2024-07-25T12:52:10.010000"],["2024-07-25T12:52:11.010000"],["2024-07-25T12:52:12.010000"],["2024-07-25T12:52:13.010000"],["2024-07-25T12:52:14.010000"],["2024-07-25T12:52:15.010000"],["2024-07-25T12:52:16.010000"],["2024-07-25T12:52:17.010000"],["2024-07-25T12:52:18.010000"],["2024-07-25T12:52:19.010000"],["2024-07-25T12:52:20.010000"],["2024-07-25T12:52:21.010000"],["2024-07-25T12:52:22.010000"],["2024-07-25T12:52:23.010000"],["2024-07-25T12:52:24.010000"],["2024-07-25T12:52:25.010000"],["2024-07-25T12:52:26.010000"],["2024-07-25T12:52:27.010000"],["2024-07-25T12:52:28.010000"],["2024-07-25T12:52:29.010000"],["2024-07-25T12:52:30.010000"],["2024-07-25T12:52:31.010000"],["2024-07-25T12:52:32.010000"],["2024-07-25T12:52:33.010000"],["2024-07-25T12:52:34.010000"],["2024-07-25T12:52:35.010000"],["2024-07-25T12:52:36.010000"],["2024-07-25T12:52:37.010000"],["2024-07-25T12:52:38.010000"],["2024-07-25T12:52:39.010000"],["2024-07-25T12:52:40.010000"],["2024-07-25T12:52:41.010000"],["2024-07-25T12:52:42.010000"],["2024-07-25T12:52:43.010000"],["2024-07-25T12:52:44.010000"],["2024-07-25T12:52:45.010000"],["2024-07-25T12:52:46.010000"],["2024-07-25T12:52:47.010000"],["2024-07-25T12:52:48.010000"],["2024-07-25T12:52:49.010000"],["2024-07-25T12:52:50.010000"],["2024-07-25T12:52:51.010000"],["2024-07-25T12:52:52.010000"],["2024-07-25T12:52:53.010000"],["2024-07-25T12:52:54.010000"],["2024-07-25T12:52:55.010000"],["2024-07-25T12:52:56.010000"],["2024-07-25T12:52:57.010000"],["2024-07-25T12:52:58.010000"],["2024-07-25T12:52:59.010000"],["2024-07-25T12:53:00.010000"],["2024-07-25T12:53:01.010000"],["2024-07-25T12:53:02.010000"],["2024-07-25T12:53:03.010000"],["2024-07-25T12:53:04.010000"],["2024-07-25T12:53:05.010000"],["2024-07-25T12:53:06.010000"],["2024-07-25T12:53:07.010000"],["2024-07-25T12:53:08.010000"],["2024-07-25T12:53:09.010000"],["2024-07-25T12:53:10.010000"],["2024-07-25T12:53:11.010000"],["2024-07-25T12:53:12.010000"],["2024-07-25T12:53:13.010000"],["2024-07-25T12:53:14.010000"],["2024-07-25T12:53:15.010000"],["2024-07-25T12:53:16.010000"],["2024-07-25T12:53:17.010000"],["2024-07-25T12:53:18.010000"],["2024-07-25T12:53:19.010000"],["2024-07-25T12:53:20.010000"],["2024-07-25T12:53:21.010000"],["2024-07-25T12:53:22.010000"],["2024-07-25T12:53:23.010000"],["2024-07-25T12:53:24.010000"],["2024-07-25T12:53:25.010000"],["2024-07-25T12:53:26.010000"],["2024-07-25T12:53:27.010000"],["2024-07-25T12:53:28.010000"],["2024-07-25T12:53:29.010000"],["2024-07-25T12:53:30.010000"],["2024-07-25T12:53:31.010000"],["2024-07-25T12:53:32.010000"],["2024-07-25T12:53:33.010000"],["2024-07-25T12:53:34.010000"],["2024-07-25T12:53:35.010000"],["2024-07-25T12:53:36.010000"],["2024-07-25T12:53:37.010000"],["2024-07-25T12:53:38.010000"],["2024-07-25T12:53:39.010000"],["2024-07-25T12:53:40.010000"],["2024-07-25T12:53:41.010000"],["2024-07-25T12:53:42.010000"],["2024-07-25T12:53:43.010000"],["2024-07-25T12:53:44.010000"],["2024-07-25T12:53:45.010000"],["2024-07-25T12:53:46.010000"],["2024-07-25T12:53:47.010000"],["2024-07-25T12:53:48.010000"],["2024-07-25T12:53:49.010000"],["2024-07-25T12:53:50.010000"],["2024-07-25T12:53:51.010000"],["2024-07-25T12:53:52.010000"],["2024-07-25T12:53:53.010000"],["2024-07-25T12:53:54.010000"],["2024-07-25T12:53:55.010000"],["2024-07-25T12:53:56.010000"],["2024-07-25T12:53:57.010000"],["2024-07-25T12:53:58.010000"],["2024-07-25T12:53:59.010000"],["2024-07-25T12:54:00.010000"],["2024-07-25T12:54:01.010000"],["2024-07-25T12:54:02.010000"],["2024-07-25T12:54:03.010000"],["2024-07-25T12:54:04.010000"],["2024-07-25T12:54:05.010000"],["2024-07-25T12:54:06.010000"],["2024-07-25T12:54:07.010000"],["2024-07-25T12:54:08.010000"],["2024-07-25T12:54:09.010000"],["2024-07-25T12:54:10.010000"],["2024-07-25T12:54:11.010000"],["2024-07-25T12:54:12.010000"],["2024-07-25T12:54:13.010000"],["2024-07-25T12:54:14.010000"],["2024-07-25T12:54:15.010000"],["2024-07-25T12:54:16.010000"],["2024-07-25T12:54:17.010000"],["2024-07-25T12:54:18.010000"],["2024-07-25T12:54:19.010000"],["2024-07-25T12:54:20.010000"],["2024-07-25T12:54:21.010000"],["2024-07-25T12:54:22.010000"],["2024-07-25T12:54:23.010000"],["2024-07-25T12:54:24.010000"],["2024-07-25T12:54:25.010000"],["2024-07-25T12:54:26.010000"],["2024-07-25T12:54:27.010000"],["2024-07-25T12:54:28.010000"],["2024-07-25T12:54:29.010000"],["2024-07-25T12:54:30.010000"],["2024-07-25T12:54:31.010000"],["2024-07-25T12:54:32.010000"],["2024-07-25T12:54:33.010000"],["2024-07-25T12:54:34.010000"],["2024-07-25T12:54:35.010000"],["2024-07-25T12:54:36.010000"],["2024-07-25T12:54:37.010000"],["2024-07-25T12:54:38.010000"],["2024-07-25T12:54:39.010000"],["2024-07-25T12:54:40.010000"],["2024-07-25T12:54:41.010000"],["2024-07-25T12:54:42.010000"],["2024-07-25T12:54:43.010000"],["2024-07-25T12:54:44.010000"],["2024-07-25T12:54:45.010000"],["2024-07-25T12:54:46.010000"],["2024-07-25T12:54:47.010000"],["2024-07-25T12:54:48.010000"],["2024-07-25T12:54:49.010000"],["2024-07-25T12:54:50.010000"],["2024-07-25T12:54:51.010000"],["2024-07-25T12:54:52.010000"],["2024-07-25T12:54:53.010000"],["2024-07-25T12:54:54.010000"],["2024-07-25T12:54:55.010000"],["2024-07-25T12:54:56.010000"],["2024-07-25T12:54:57.010000"],["2024-07-25T12:54:58.010000"],["2024-07-25T12:54:59.010000"],["2024-07-25T12:55:00.010000"],["2024-07-25T12:55:01.010000"],["2024-07-25T12:55:02.010000"],["2024-07-25T12:55:03.010000"],["2024-07-25T12:55:04.010000"],["2024-07-25T12:55:05.010000"],["2024-07-25T12:55:06.010000"],["2024-07-25T12:55:07.010000"],["2024-07-25T12:55:08.010000"],["2024-07-25T12:55:09.010000"],["2024-07-25T12:55:10.010000"],["2024-07-25T12:55:11.010000"],["2024-07-25T12:55:12.010000"],["2024-07-25T12:55:13.010000"],["2024-07-25T12:55:14.010000"],["2024-07-25T12:55:15.010000"],["2024-07-25T12:55:16.010000"],["2024-07-25T12:55:17.010000"],["2024-07-25T12:55:18.010000"],["2024-07-25T12:55:19.010000"],["2024-07-25T12:55:20.010000"],["2024-07-25T12:55:21.010000"],["2024-07-25T12:55:22.010000"],["2024-07-25T12:55:23.010000"],["2024-07-25T12:55:24.010000"],["2024-07-25T12:55:25.010000"],["2024-07-25T12:55:26.010000"],["2024-07-25T12:55:27.010000"],["2024-07-25T12:55:28.010000"],["2024-07-25T12:55:29.010000"],["2024-07-25T12:55:30.010000"],["2024-07-25T12:55:31.010000"],["2024-07-25T12:55:32.010000"],["2024-07-25T12:55:33.010000"],["2024-07-25T12:55:34.010000"],["2024-07-25T12:55:35.010000"],["2024-07-25T12:55:36.010000"],["2024-07-25T12:55:37.010000"],["2024-07-25T12:55:38.010000"],["2024-07-25T12:55:39.010000"],["2024-07-25T12:55:40.010000"],["2024-07-25T12:55:41.010000"],["2024-07-25T12:55:42.010000"],["2024-07-25T12:55:43.010000"],["2024-07-25T12:55:44.010000"],["2024-07-25T12:55:45.010000"],["2024-07-25T12:55:46.010000"],["2024-07-25T12:55:47.010000"],["2024-07-25T12:55:48.010000"],["2024-07-25T12:55:49.010000"],["2024-07-25T12:55:50.010000"],["2024-07-25T12:55:51.010000"],["2024-07-25T12:55:52.010000"],["2024-07-25T12:55:53.010000"],["2024-07-25T12:55:54.010000"],["2024-07-25T12:55:55.010000"],["2024-07-25T12:55:56.010000"],["2024-07-25T12:55:57.010000"],["2024-07-25T12:55:58.010000"],["2024-07-25T12:55:59.010000"],["2024-07-25T12:56:00.010000"],["2024-07-25T12:56:01.010000"],["2024-07-25T12:56:02.010000"],["2024-07-25T12:56:03.010000"],["2024-07-25T12:56:04.010000"],["2024-07-25T12:56:05.010000"],["2024-07-25T12:56:06.010000"],["2024-07-25T12:56:07.010000"],["2024-07-25T12:56:08.010000"],["2024-07-25T12:56:09.010000"],["2024-07-25T12:56:10.010000"],["2024-07-25T12:56:11.010000"],["2024-07-25T12:56:12.010000"],["2024-07-25T12:56:13.010000"],["2024-07-25T12:56:14.010000"],["2024-07-25T12:56:15.010000"],["2024-07-25T12:56:16.010000"],["2024-07-25T12:56:17.010000"],["2024-07-25T12:56:18.010000"],["2024-07-25T12:56:19.010000"],["2024-07-25T12:56:20.010000"],["2024-07-25T12:56:21.010000"],["2024-07-25T12:56:22.010000"],["2024-07-25T12:56:23.010000"],["2024-07-25T12:56:24.010000"],["2024-07-25T12:56:25.010000"],["2024-07-25T12:56:26.010000"],["2024-07-25T12:56:27.010000"],["2024-07-25T12:56:28.010000"],["2024-07-25T12:56:29.010000"],["2024-07-25T12:56:30.010000"],["2024-07-25T12:56:31.010000"],["2024-07-25T12:56:32.010000"],["2024-07-25T12:56:33.010000"],["2024-07-25T12:56:34.010000"],["2024-07-25T12:56:35.010000"],["2024-07-25T12:56:36.010000"],["2024-07-25T12:56:37.010000"],["2024-07-25T12:56:38.010000"],["2024-07-25T12:56:39.010000"],["2024-07-25T12:56:40.010000"],["2024-07-25T12:56:41.010000"],["2024-07-25T12:56:42.010000"],["2024-07-25T12:56:43.010000"],["2024-07-25T12:56:44.010000"],["2024-07-25T12:56:45.010000"],["2024-07-25T12:56:46.010000"],["2024-07-25T12:56:47.010000"],["2024-07-25T12:56:48.010000"],["2024-07-25T12:56:49.010000"],["2024-07-25T12:56:50.010000"],["2024-07-25T12:56:51.010000"],["2024-07-25T12:56:52.010000"],["2024-07-25T12:56:53.010000"],["2024-07-25T12:56:54.010000"],["2024-07-25T12:56:55.010000"],["2024-07-25T12:56:56.010000"],["2024-07-25T12:56:57.010000"],["2024-07-25T12:56:58.010000"],["2024-07-25T12:56:59.010000"],["2024-07-25T12:57:00.010000"],["2024-07-25T12:57:01.010000"],["2024-07-25T12:57:02.010000"],["2024-07-25T12:57:03.010000"],["2024-07-25T12:57:04.010000"],["2024-07-25T12:57:05.010000"],["2024-07-25T12:57:06.010000"],["2024-07-25T12:57:07.010000"],["2024-07-25T12:57:08.010000"],["2024-07-25T12:57:09.010000"],["2024-07-25T12:57:10.010000"],["2024-07-25T12:57:11.010000"],["2024-07-25T12:57:12.010000"],["2024-07-25T12:57:13.010000"],["2024-07-25T12:57:14.010000"],["2024-07-25T12:57:15.010000"],["2024-07-25T12:57:16.010000"],["2024-07-25T12:57:17.010000"],["2024-07-25T12:57:18.010000"],["2024-07-25T12:57:19.010000"],["2024-07-25T12:57:20.010000"],["2024-07-25T12:57:21.010000"],["2024-07-25T12:57:22.010000"],["2024-07-25T12:57:23.010000"],["2024-07-25T12:57:24.010000"],["2024-07-25T12:57:25.010000"],["2024-07-25T12:57:26.010000"],["2024-07-25T12:57:27.010000"],["2024-07-25T12:57:28.010000"],["2024-07-25T12:57:29.010000"],["2024-07-25T12:57:30.010000"],["2024-07-25T12:57:31.010000"],["2024-07-25T12:57:32.010000"],["2024-07-25T12:57:33.010000"],["2024-07-25T12:57:34.010000"],["2024-07-25T12:57:35.010000"],["2024-07-25T12:57:36.010000"],["2024-07-25T12:57:37.010000"],["2024-07-25T12:57:38.010000"],["2024-07-25T12:57:39.010000"],["2024-07-25T12:57:40.010000"],["2024-07-25T12:57:41.010000"],["2024-07-25T12:57:42.010000"],["2024-07-25T12:57:43.010000"],["2024-07-25T12:57:44.010000"],["2024-07-25T12:57:45.010000"],["2024-07-25T12:57:46.010000"],["2024-07-25T12:57:47.010000"],["2024-07-25T12:57:48.010000"],["2024-07-25T12:57:49.010000"],["2024-07-25T12:57:50.010000"],["2024-07-25T12:57:51.010000"],["2024-07-25T12:57:52.010000"],["2024-07-25T12:57:53.010000"],["2024-07-25T12:57:54.010000"],["2024-07-25T12:57:55.010000"],["2024-07-25T12:57:56.010000"],["2024-07-25T12:57:57.010000"],["2024-07-25T12:57:58.010000"],["2024-07-25T12:57:59.010000"],["2024-07-25T12:58:00.010000"],["2024-07-25T12:58:01.010000"],["2024-07-25T12:58:02.010000"],["2024-07-25T12:58:03.010000"],["2024-07-25T12:58:04.010000"],["2024-07-25T12:58:05.010000"],["2024-07-25T12:58:06.010000"],["2024-07-25T12:58:07.010000"],["2024-07-25T12:58:08.010000"],["2024-07-25T12:58:09.010000"],["2024-07-25T12:58:10.010000"],["2024-07-25T12:58:11.010000"],["2024-07-25T12:58:12.010000"],["2024-07-25T12:58:13.010000"],["2024-07-25T12:58:14.010000"],["2024-07-25T12:58:15.010000"],["2024-07-25T12:58:16.010000"],["2024-07-25T12:58:17.010000"],["2024-07-25T12:58:18.010000"],["2024-07-25T12:58:19.010000"],["2024-07-25T12:58:20.010000"],["2024-07-25T12:58:21.010000"],["2024-07-25T12:58:22.010000"],["2024-07-25T12:58:23.010000"],["2024-07-25T12:58:24.010000"],["2024-07-25T12:58:25.010000"],["2024-07-25T12:58:26.010000"],["2024-07-25T12:58:27.010000"],["2024-07-25T12:58:28.010000"],["2024-07-25T12:58:29.010000"],["2024-07-25T12:58:30.010000"],["2024-07-25T12:58:31.010000"],["2024-07-25T12:58:32.010000"],["2024-07-25T12:58:33.010000"],["2024-07-25T12:58:34.010000"],["2024-07-25T12:58:35.010000"],["2024-07-25T12:58:36.010000"],["2024-07-25T12:58:37.010000"],["2024-07-25T12:58:38.010000"],["2024-07-25T12:58:39.010000"],["2024-07-25T12:58:40.010000"],["2024-07-25T12:58:41.010000"],["2024-07-25T12:58:42.010000"],["2024-07-25T12:58:43.010000"],["2024-07-25T12:58:44.010000"],["2024-07-25T12:58:45.010000"],["2024-07-25T12:58:46.010000"],["2024-07-25T12:58:47.010000"],["2024-07-25T12:58:48.010000"],["2024-07-25T12:58:49.010000"],["2024-07-25T12:58:50.010000"],["2024-07-25T12:58:51.010000"],["2024-07-25T12:58:52.010000"],["2024-07-25T12:58:53.010000"],["2024-07-25T12:58:54.010000"],["2024-07-25T12:58:55.010000"],["2024-07-25T12:58:56.010000"],["2024-07-25T12:58:57.010000"],["2024-07-25T12:58:58.010000"],["2024-07-25T12:58:59.010000"],["2024-07-25T12:59:00.010000"],["2024-07-25T12:59:01.010000"],["2024-07-25T12:59:02.010000"],["2024-07-25T12:59:03.010000"],["2024-07-25T12:59:04.010000"],["2024-07-25T12:59:05.010000"],["2024-07-25T12:59:06.010000"],["2024-07-25T12:59:07.010000"],["2024-07-25T12:59:08.010000"],["2024-07-25T12:59:09.010000"],["2024-07-25T12:59:10.010000"],["2024-07-25T12:59:11.010000"],["2024-07-25T12:59:12.010000"],["2024-07-25T12:59:13.010000"],["2024-07-25T12:59:14.010000"],["2024-07-25T12:59:15.010000"],["2024-07-25T12:59:16.010000"],["2024-07-25T12:59:17.010000"],["2024-07-25T12:59:18.010000"],["2024-07-25T12:59:19.010000"],["2024-07-25T12:59:20.010000"],["2024-07-25T12:59:21.010000"],["2024-07-25T12:59:22.010000"],["2024-07-25T12:59:23.010000"],["2024-07-25T12:59:24.010000"],["2024-07-25T12:59:25.010000"],["2024-07-25T12:59:26.010000"],["2024-07-25T12:59:27.010000"],["2024-07-25T12:59:28.010000"],["2024-07-25T12:59:29.010000"],["2024-07-25T12:59:30.010000"],["2024-07-25T12:59:31.010000"],["2024-07-25T12:59:32.010000"],["2024-07-25T12:59:33.010000"],["2024-07-25T12:59:34.010000"],["2024-07-25T12:59:35.010000"],["2024-07-25T12:59:36.010000"],["2024-07-25T12:59:37.010000"],["2024-07-25T12:59:38.010000"],["2024-07-25T12:59:39.010000"],["2024-07-25T12:59:40.010000"],["2024-07-25T12:59:41.010000"],["2024-07-25T12:59:42.010000"],["2024-07-25T12:59:43.010000"],["2024-07-25T12:59:44.010000"],["2024-07-25T12:59:45.010000"],["2024-07-25T12:59:46.010000"],["2024-07-25T12:59:47.010000"],["2024-07-25T12:59:48.010000"],["2024-07-25T12:59:49.010000"],["2024-07-25T12:59:50.010000"],["2024-07-25T12:59:51.010000"],["2024-07-25T12:59:52.010000"],["2024-07-25T12:59:53.010000"],["2024-07-25T12:59:54.010000"],["2024-07-25T12:59:55.010000"],["2024-07-25T12:59:56.010000"],["2024-07-25T12:59:57.010000"],["2024-07-25T12:59:58.010000"],["2024-07-25T12:59:59.010000"],["2024-07-25T13:00:00.010000"],["2024-07-25T13:00:01.010000"],["2024-07-25T13:00:02.010000"],["2024-07-25T13:00:03.010000"],["2024-07-25T13:00:04.010000"],["2024-07-25T13:00:05.010000"],["2024-07-25T13:00:06.010000"],["2024-07-25T13:00:07.010000"],["2024-07-25T13:00:08.010000"],["2024-07-25T13:00:09.010000"],["2024-07-25T13:00:10.010000"],["2024-07-25T13:00:11.010000"],["2024-07-25T13:00:12.010000"],["2024-07-25T13:00:13.010000"],["2024-07-25T13:00:14.010000"],["2024-07-25T13:00:15.010000"],["2024-07-25T13:00:16.010000"],["2024-07-25T13:00:17.010000"],["2024-07-25T13:00:18.010000"],["2024-07-25T13:00:19.010000"],["2024-07-25T13:00:20.010000"],["2024-07-25T13:00:21.010000"],["2024-07-25T13:00:22.010000"],["2024-07-25T13:00:23.010000"],["2024-07-25T13:00:24.010000"],["2024-07-25T13:00:25.010000"],["2024-07-25T13:00:26.010000"],["2024-07-25T13:00:27.010000"],["2024-07-25T13:00:28.010000"],["2024-07-25T13:00:29.010000"],["2024-07-25T13:00:30.010000"],["2024-07-25T13:00:31.010000"],["2024-07-25T13:00:32.010000"],["2024-07-25T13:00:33.010000"],["2024-07-25T13:00:34.010000"],["2024-07-25T13:00:35.010000"],["2024-07-25T13:00:36.010000"],["2024-07-25T13:00:37.010000"],["2024-07-25T13:00:38.010000"],["2024-07-25T13:00:39.010000"],["2024-07-25T13:00:40.010000"],["2024-07-25T13:00:41.010000"],["2024-07-25T13:00:42.010000"],["2024-07-25T13:00:43.010000"],["2024-07-25T13:00:44.010000"],["2024-07-25T13:00:45.010000"],["2024-07-25T13:00:46.010000"],["2024-07-25T13:00:47.010000"],["2024-07-25T13:00:48.010000"],["2024-07-25T13:00:49.010000"],["2024-07-25T13:00:50.010000"],["2024-07-25T13:00:51.010000"],["2024-07-25T13:00:52.010000"],["2024-07-25T13:00:53.010000"],["2024-07-25T13:00:54.010000"],["2024-07-25T13:00:55.010000"],["2024-07-25T13:00:56.010000"],["2024-07-25T13:00:57.010000"],["2024-07-25T13:00:58.010000"],["2024-07-25T13:00:59.010000"],["2024-07-25T13:01:00.010000"],["2024-07-25T13:01:01.010000"],["2024-07-25T13:01:02.010000"],["2024-07-25T13:01:03.010000"],["2024-07-25T13:01:04.010000"],["2024-07-25T13:01:05.010000"],["2024-07-25T13:01:06.010000"],["2024-07-25T13:01:07.010000"],["2024-07-25T13:01:08.010000"],["2024-07-25T13:01:09.010000"],["2024-07-25T13:01:10.010000"],["2024-07-25T13:01:11.010000"],["2024-07-25T13:01:12.010000"],["2024-07-25T13:01:13.010000"],["2024-07-25T13:01:14.010000"],["2024-07-25T13:01:15.010000"],["2024-07-25T13:01:16.010000"],["2024-07-25T13:01:17.010000"],["2024-07-25T13:01:18.010000"],["2024-07-25T13:01:19.010000"],["2024-07-25T13:01:20.010000"],["2024-07-25T13:01:21.010000"],["2024-07-25T13:01:22.010000"],["2024-07-25T13:01:23.010000"],["2024-07-25T13:01:24.010000"],["2024-07-25T13:01:25.010000"],["2024-07-25T13:01:26.010000"],["2024-07-25T13:01:27.010000"],["2024-07-25T13:01:28.010000"],["2024-07-25T13:01:29.010000"],["2024-07-25T13:01:30.010000"],["2024-07-25T13:01:31.010000"],["2024-07-25T13:01:32.010000"],["2024-07-25T13:01:33.010000"],["2024-07-25T13:01:34.010000"],["2024-07-25T13:01:35.010000"],["2024-07-25T13:01:36.010000"],["2024-07-25T13:01:37.010000"],["2024-07-25T13:01:38.010000"],["2024-07-25T13:01:39.010000"],["2024-07-25T13:01:40.010000"],["2024-07-25T13:01:41.010000"],["2024-07-25T13:01:42.010000"],["2024-07-25T13:01:43.010000"],["2024-07-25T13:01:44.010000"],["2024-07-25T13:01:45.010000"],["2024-07-25T13:01:46.010000"],["2024-07-25T13:01:47.010000"],["2024-07-25T13:01:48.010000"],["2024-07-25T13:01:49.010000"],["2024-07-25T13:01:50.010000"],["2024-07-25T13:01:51.010000"],["2024-07-25T13:01:52.010000"],["2024-07-25T13:01:53.010000"],["2024-07-25T13:01:54.010000"],["2024-07-25T13:01:55.010000"],["2024-07-25T13:01:56.010000"],["2024-07-25T13:01:57.010000"],["2024-07-25T13:01:58.010000"],["2024-07-25T13:01:59.010000"],["2024-07-25T13:02:00.010000"],["2024-07-25T13:02:01.010000"],["2024-07-25T13:02:02.010000"],["2024-07-25T13:02:03.010000"],["2024-07-25T13:02:04.010000"],["2024-07-25T13:02:05.010000"],["2024-07-25T13:02:06.010000"],["2024-07-25T13:02:07.010000"],["2024-07-25T13:02:08.010000"],["2024-07-25T13:02:09.010000"],["2024-07-25T13:02:10.010000"],["2024-07-25T13:02:11.010000"],["2024-07-25T13:02:12.010000"],["2024-07-25T13:02:13.010000"],["2024-07-25T13:02:14.010000"],["2024-07-25T13:02:15.010000"],["2024-07-25T13:02:16.010000"],["2024-07-25T13:02:17.010000"],["2024-07-25T13:02:18.010000"],["2024-07-25T13:02:19.010000"],["2024-07-25T13:02:20.010000"],["2024-07-25T13:02:21.010000"],["2024-07-25T13:02:22.010000"],["2024-07-25T13:02:23.010000"],["2024-07-25T13:02:24.010000"],["2024-07-25T13:02:25.010000"],["2024-07-25T13:02:26.010000"],["2024-07-25T13:02:27.010000"],["2024-07-25T13:02:28.010000"],["2024-07-25T13:02:29.010000"],["2024-07-25T13:02:30.010000"],["2024-07-25T13:02:31.010000"],["2024-07-25T13:02:32.010000"],["2024-07-25T13:02:33.010000"],["2024-07-25T13:02:34.010000"],["2024-07-25T13:02:35.010000"],["2024-07-25T13:02:36.010000"],["2024-07-25T13:02:37.010000"],["2024-07-25T13:02:38.010000"],["2024-07-25T13:02:39.010000"],["2024-07-25T13:02:40.010000"],["2024-07-25T13:02:41.010000"],["2024-07-25T13:02:42.010000"],["2024-07-25T13:02:43.010000"],["2024-07-25T13:02:44.010000"],["2024-07-25T13:02:45.010000"],["2024-07-25T13:02:46.010000"],["2024-07-25T13:02:47.010000"],["2024-07-25T13:02:48.010000"],["2024-07-25T13:02:49.010000"],["2024-07-25T13:02:50.010000"],["2024-07-25T13:02:51.010000"],["2024-07-25T13:02:52.010000"],["2024-07-25T13:02:53.010000"],["2024-07-25T13:02:54.010000"],["2024-07-25T13:02:55.010000"],["2024-07-25T13:02:56.010000"],["2024-07-25T13:02:57.010000"],["2024-07-25T13:02:58.010000"],["2024-07-25T13:02:59.010000"],["2024-07-25T13:03:00.010000"],["2024-07-25T13:03:01.010000"],["2024-07-25T13:03:02.010000"],["2024-07-25T13:03:03.010000"],["2024-07-25T13:03:04.010000"],["2024-07-25T13:03:05.010000"],["2024-07-25T13:03:06.010000"],["2024-07-25T13:03:07.010000"],["2024-07-25T13:03:08.010000"],["2024-07-25T13:03:09.010000"],["2024-07-25T13:03:10.010000"],["2024-07-25T13:03:11.010000"],["2024-07-25T13:03:12.010000"],["2024-07-25T13:03:13.010000"],["2024-07-25T13:03:14.010000"],["2024-07-25T13:03:15.010000"],["2024-07-25T13:03:16.010000"],["2024-07-25T13:03:17.010000"],["2024-07-25T13:03:18.010000"],["2024-07-25T13:03:19.010000"],["2024-07-25T13:03:20.010000"],["2024-07-25T13:03:21.010000"],["2024-07-25T13:03:22.010000"],["2024-07-25T13:03:23.010000"],["2024-07-25T13:03:24.010000"],["2024-07-25T13:03:25.010000"],["2024-07-25T13:03:26.010000"],["2024-07-25T13:03:27.010000"],["2024-07-25T13:03:28.010000"],["2024-07-25T13:03:29.010000"],["2024-07-25T13:03:30.010000"],["2024-07-25T13:03:31.010000"],["2024-07-25T13:03:32.010000"],["2024-07-25T13:03:33.010000"],["2024-07-25T13:03:34.010000"],["2024-07-25T13:03:35.010000"],["2024-07-25T13:03:36.010000"],["2024-07-25T13:03:37.010000"],["2024-07-25T13:03:38.010000"],["2024-07-25T13:03:39.010000"],["2024-07-25T13:03:40.010000"],["2024-07-25T13:03:41.010000"],["2024-07-25T13:03:42.010000"],["2024-07-25T13:03:43.010000"],["2024-07-25T13:03:44.010000"],["2024-07-25T13:03:45.010000"],["2024-07-25T13:03:46.010000"],["2024-07-25T13:03:47.010000"],["2024-07-25T13:03:48.010000"],["2024-07-25T13:03:49.010000"],["2024-07-25T13:03:50.010000"],["2024-07-25T13:03:51.010000"],["2024-07-25T13:03:52.010000"],["2024-07-25T13:03:53.010000"],["2024-07-25T13:03:54.010000"],["2024-07-25T13:03:55.010000"],["2024-07-25T13:03:56.010000"],["2024-07-25T13:03:57.010000"],["2024-07-25T13:03:58.010000"],["2024-07-25T13:03:59.010000"],["2024-07-25T13:04:00.010000"],["2024-07-25T13:04:01.010000"],["2024-07-25T13:04:02.010000"],["2024-07-25T13:04:03.010000"],["2024-07-25T13:04:04.010000"],["2024-07-25T13:04:05.010000"],["2024-07-25T13:04:06.010000"],["2024-07-25T13:04:07.010000"],["2024-07-25T13:04:08.010000"],["2024-07-25T13:04:09.010000"],["2024-07-25T13:04:10.010000"],["2024-07-25T13:04:11.010000"],["2024-07-25T13:04:12.010000"],["2024-07-25T13:04:13.010000"],["2024-07-25T13:04:14.010000"],["2024-07-25T13:04:15.010000"],["2024-07-25T13:04:16.010000"],["2024-07-25T13:04:17.010000"],["2024-07-25T13:04:18.010000"],["2024-07-25T13:04:19.010000"],["2024-07-25T13:04:20.010000"],["2024-07-25T13:04:21.010000"],["2024-07-25T13:04:22.010000"],["2024-07-25T13:04:23.010000"],["2024-07-25T13:04:24.010000"],["2024-07-25T13:04:25.010000"],["2024-07-25T13:04:26.010000"],["2024-07-25T13:04:27.010000"],["2024-07-25T13:04:28.010000"],["2024-07-25T13:04:29.010000"],["2024-07-25T13:04:30.010000"],["2024-07-25T13:04:31.010000"],["2024-07-25T13:04:32.010000"],["2024-07-25T13:04:33.010000"],["2024-07-25T13:04:34.010000"],["2024-07-25T13:04:35.010000"],["2024-07-25T13:04:36.010000"],["2024-07-25T13:04:37.010000"],["2024-07-25T13:04:38.010000"],["2024-07-25T13:04:39.010000"],["2024-07-25T13:04:40.010000"],["2024-07-25T13:04:41.010000"],["2024-07-25T13:04:42.010000"],["2024-07-25T13:04:43.010000"],["2024-07-25T13:04:44.010000"],["2024-07-25T13:04:45.010000"],["2024-07-25T13:04:46.010000"],["2024-07-25T13:04:47.010000"],["2024-07-25T13:04:48.010000"],["2024-07-25T13:04:49.010000"],["2024-07-25T13:04:50.010000"],["2024-07-25T13:04:51.010000"],["2024-07-25T13:04:52.010000"],["2024-07-25T13:04:53.010000"],["2024-07-25T13:04:54.010000"],["2024-07-25T13:04:55.010000"],["2024-07-25T13:04:56.010000"],["2024-07-25T13:04:57.010000"],["2024-07-25T13:04:58.010000"],["2024-07-25T13:04:59.010000"],["2024-07-25T13:05:00.010000"],["2024-07-25T13:05:01.010000"],["2024-07-25T13:05:02.010000"],["2024-07-25T13:05:03.010000"],["2024-07-25T13:05:04.010000"],["2024-07-25T13:05:05.010000"],["2024-07-25T13:05:06.010000"],["2024-07-25T13:05:07.010000"],["2024-07-25T13:05:08.010000"],["2024-07-25T13:05:09.010000"],["2024-07-25T13:05:10.010000"],["2024-07-25T13:05:11.010000"],["2024-07-25T13:05:12.010000"],["2024-07-25T13:05:13.010000"],["2024-07-25T13:05:14.010000"],["2024-07-25T13:05:15.010000"],["2024-07-25T13:05:16.010000"],["2024-07-25T13:05:17.010000"],["2024-07-25T13:05:18.010000"],["2024-07-25T13:05:19.010000"],["2024-07-25T13:05:20.010000"],["2024-07-25T13:05:21.010000"],["2024-07-25T13:05:22.010000"],["2024-07-25T13:05:23.010000"],["2024-07-25T13:05:24.010000"],["2024-07-25T13:05:25.010000"],["2024-07-25T13:05:26.010000"],["2024-07-25T13:05:27.010000"],["2024-07-25T13:05:28.010000"],["2024-07-25T13:05:29.010000"],["2024-07-25T13:05:30.010000"],["2024-07-25T13:05:31.010000"],["2024-07-25T13:05:32.010000"],["2024-07-25T13:05:33.010000"],["2024-07-25T13:05:34.010000"],["2024-07-25T13:05:35.010000"],["2024-07-25T13:05:36.010000"],["2024-07-25T13:05:37.010000"],["2024-07-25T13:05:38.010000"],["2024-07-25T13:05:39.010000"],["2024-07-25T13:05:40.010000"],["2024-07-25T13:05:41.010000"],["2024-07-25T13:05:42.010000"],["2024-07-25T13:05:43.010000"],["2024-07-25T13:05:44.010000"],["2024-07-25T13:05:45.010000"],["2024-07-25T13:05:46.010000"],["2024-07-25T13:05:47.010000"],["2024-07-25T13:05:48.010000"],["2024-07-25T13:05:49.010000"],["2024-07-25T13:05:50.010000"],["2024-07-25T13:05:51.010000"],["2024-07-25T13:05:52.010000"],["2024-07-25T13:05:53.010000"],["2024-07-25T13:05:54.010000"],["2024-07-25T13:05:55.010000"],["2024-07-25T13:05:56.010000"],["2024-07-25T13:05:57.010000"],["2024-07-25T13:05:58.010000"],["2024-07-25T13:05:59.010000"],["2024-07-25T13:06:00.010000"],["2024-07-25T13:06:01.010000"],["2024-07-25T13:06:02.010000"],["2024-07-25T13:06:03.010000"],["2024-07-25T13:06:04.010000"],["2024-07-25T13:06:05.010000"],["2024-07-25T13:06:06.010000"],["2024-07-25T13:06:07.010000"],["2024-07-25T13:06:08.010000"],["2024-07-25T13:06:09.010000"],["2024-07-25T13:06:10.010000"],["2024-07-25T13:06:11.010000"],["2024-07-25T13:06:12.010000"],["2024-07-25T13:06:13.010000"],["2024-07-25T13:06:14.010000"],["2024-07-25T13:06:15.010000"],["2024-07-25T13:06:16.010000"],["2024-07-25T13:06:17.010000"],["2024-07-25T13:06:18.010000"],["2024-07-25T13:06:19.010000"],["2024-07-25T13:06:20.010000"],["2024-07-25T13:06:21.010000"],["2024-07-25T13:06:22.010000"],["2024-07-25T13:06:23.010000"],["2024-07-25T13:06:24.010000"],["2024-07-25T13:06:25.010000"],["2024-07-25T13:06:26.010000"],["2024-07-25T13:06:27.010000"],["2024-07-25T13:06:28.010000"],["2024-07-25T13:06:29.010000"],["2024-07-25T13:06:30.010000"],["2024-07-25T13:06:31.010000"],["2024-07-25T13:06:32.010000"],["2024-07-25T13:06:33.010000"],["2024-07-25T13:06:34.010000"],["2024-07-25T13:06:35.010000"],["2024-07-25T13:06:36.010000"],["2024-07-25T13:06:37.010000"],["2024-07-25T13:06:38.010000"],["2024-07-25T13:06:39.010000"],["2024-07-25T13:06:40.010000"],["2024-07-25T13:06:41.010000"],["2024-07-25T13:06:42.010000"],["2024-07-25T13:06:43.010000"],["2024-07-25T13:06:44.010000"],["2024-07-25T13:06:45.010000"],["2024-07-25T13:06:46.010000"],["2024-07-25T13:06:47.010000"],["2024-07-25T13:06:48.010000"],["2024-07-25T13:06:49.010000"],["2024-07-25T13:06:50.010000"],["2024-07-25T13:06:51.010000"],["2024-07-25T13:06:52.010000"],["2024-07-25T13:06:53.010000"],["2024-07-25T13:06:54.010000"],["2024-07-25T13:06:55.010000"],["2024-07-25T13:06:56.010000"],["2024-07-25T13:06:57.010000"],["2024-07-25T13:06:58.010000"],["2024-07-25T13:06:59.010000"],["2024-07-25T13:07:00.010000"],["2024-07-25T13:07:01.010000"],["2024-07-25T13:07:02.010000"],["2024-07-25T13:07:03.010000"],["2024-07-25T13:07:04.010000"],["2024-07-25T13:07:05.010000"],["2024-07-25T13:07:06.010000"],["2024-07-25T13:07:07.010000"],["2024-07-25T13:07:08.010000"],["2024-07-25T13:07:09.010000"],["2024-07-25T13:07:10.010000"],["2024-07-25T13:07:11.010000"],["2024-07-25T13:07:12.010000"],["2024-07-25T13:07:13.010000"],["2024-07-25T13:07:14.010000"],["2024-07-25T13:07:15.010000"],["2024-07-25T13:07:16.010000"],["2024-07-25T13:07:17.010000"],["2024-07-25T13:07:18.010000"],["2024-07-25T13:07:19.010000"],["2024-07-25T13:07:20.010000"],["2024-07-25T13:07:21.010000"],["2024-07-25T13:07:22.010000"],["2024-07-25T13:07:23.010000"],["2024-07-25T13:07:24.010000"],["2024-07-25T13:07:25.010000"],["2024-07-25T13:07:26.010000"],["2024-07-25T13:07:27.010000"],["2024-07-25T13:07:28.010000"],["2024-07-25T13:07:29.010000"],["2024-07-25T13:07:30.010000"],["2024-07-25T13:07:31.010000"],["2024-07-25T13:07:32.010000"],["2024-07-25T13:07:33.010000"],["2024-07-25T13:07:34.010000"],["2024-07-25T13:07:35.010000"],["2024-07-25T13:07:36.010000"],["2024-07-25T13:07:37.010000"],["2024-07-25T13:07:38.010000"],["2024-07-25T13:07:39.010000"],["2024-07-25T13:07:40.010000"],["2024-07-25T13:07:41.010000"],["2024-07-25T13:07:42.010000"],["2024-07-25T13:07:43.010000"],["2024-07-25T13:07:44.010000"],["2024-07-25T13:07:45.010000"],["2024-07-25T13:07:46.010000"],["2024-07-25T13:07:47.010000"],["2024-07-25T13:07:48.010000"],["2024-07-25T13:07:49.010000"],["2024-07-25T13:07:50.010000"],["2024-07-25T13:07:51.010000"],["2024-07-25T13:07:52.010000"],["2024-07-25T13:07:53.010000"],["2024-07-25T13:07:54.010000"],["2024-07-25T13:07:55.010000"],["2024-07-25T13:07:56.010000"],["2024-07-25T13:07:57.010000"],["2024-07-25T13:07:58.010000"],["2024-07-25T13:07:59.010000"],["2024-07-25T13:08:00.010000"],["2024-07-25T13:08:01.010000"],["2024-07-25T13:08:02.010000"],["2024-07-25T13:08:03.010000"],["2024-07-25T13:08:04.010000"],["2024-07-25T13:08:05.010000"],["2024-07-25T13:08:06.010000"],["2024-07-25T13:08:07.010000"],["2024-07-25T13:08:08.010000"],["2024-07-25T13:08:09.010000"],["2024-07-25T13:08:10.010000"],["2024-07-25T13:08:11.010000"],["2024-07-25T13:08:12.010000"],["2024-07-25T13:08:13.010000"],["2024-07-25T13:08:14.010000"],["2024-07-25T13:08:15.010000"],["2024-07-25T13:08:16.010000"],["2024-07-25T13:08:17.010000"],["2024-07-25T13:08:18.010000"],["2024-07-25T13:08:19.010000"],["2024-07-25T13:08:20.010000"],["2024-07-25T13:08:21.010000"],["2024-07-25T13:08:22.010000"],["2024-07-25T13:08:23.010000"],["2024-07-25T13:08:24.010000"],["2024-07-25T13:08:25.010000"],["2024-07-25T13:08:26.010000"],["2024-07-25T13:08:27.010000"],["2024-07-25T13:08:28.010000"],["2024-07-25T13:08:29.010000"],["2024-07-25T13:08:30.010000"],["2024-07-25T13:08:31.010000"],["2024-07-25T13:08:32.010000"],["2024-07-25T13:08:33.010000"],["2024-07-25T13:08:34.010000"],["2024-07-25T13:08:35.010000"],["2024-07-25T13:08:36.010000"],["2024-07-25T13:08:37.010000"],["2024-07-25T13:08:38.010000"],["2024-07-25T13:08:39.010000"],["2024-07-25T13:08:40.010000"],["2024-07-25T13:08:41.010000"],["2024-07-25T13:08:42.010000"],["2024-07-25T13:08:43.010000"],["2024-07-25T13:08:44.010000"],["2024-07-25T13:08:45.010000"],["2024-07-25T13:08:46.010000"],["2024-07-25T13:08:47.010000"],["2024-07-25T13:08:48.010000"],["2024-07-25T13:08:49.010000"],["2024-07-25T13:08:50.010000"],["2024-07-25T13:08:51.010000"],["2024-07-25T13:08:52.010000"],["2024-07-25T13:08:53.010000"],["2024-07-25T13:08:54.010000"],["2024-07-25T13:08:55.010000"],["2024-07-25T13:08:56.010000"],["2024-07-25T13:08:57.010000"],["2024-07-25T13:08:58.010000"],["2024-07-25T13:08:59.010000"],["2024-07-25T13:09:00.010000"],["2024-07-25T13:09:01.010000"],["2024-07-25T13:09:02.010000"],["2024-07-25T13:09:03.010000"],["2024-07-25T13:09:04.010000"],["2024-07-25T13:09:05.010000"],["2024-07-25T13:09:06.010000"],["2024-07-25T13:09:07.010000"],["2024-07-25T13:09:08.010000"],["2024-07-25T13:09:09.010000"],["2024-07-25T13:09:10.010000"],["2024-07-25T13:09:11.010000"],["2024-07-25T13:09:12.010000"],["2024-07-25T13:09:13.010000"],["2024-07-25T13:09:14.010000"],["2024-07-25T13:09:15.010000"],["2024-07-25T13:09:16.010000"],["2024-07-25T13:09:17.010000"],["2024-07-25T13:09:18.010000"],["2024-07-25T13:09:19.010000"],["2024-07-25T13:09:20.010000"],["2024-07-25T13:09:21.010000"],["2024-07-25T13:09:22.010000"],["2024-07-25T13:09:23.010000"],["2024-07-25T13:09:24.010000"],["2024-07-25T13:09:25.010000"],["2024-07-25T13:09:26.010000"],["2024-07-25T13:09:27.010000"],["2024-07-25T13:09:28.010000"],["2024-07-25T13:09:29.010000"],["2024-07-25T13:09:30.010000"],["2024-07-25T13:09:31.010000"],["2024-07-25T13:09:32.010000"],["2024-07-25T13:09:33.010000"],["2024-07-25T13:09:34.010000"],["2024-07-25T13:09:35.010000"],["2024-07-25T13:09:36.010000"],["2024-07-25T13:09:37.010000"],["2024-07-25T13:09:38.010000"],["2024-07-25T13:09:39.010000"],["2024-07-25T13:09:40.010000"],["2024-07-25T13:09:41.010000"],["2024-07-25T13:09:42.010000"],["2024-07-25T13:09:43.010000"],["2024-07-25T13:09:44.010000"],["2024-07-25T13:09:45.010000"],["2024-07-25T13:09:46.010000"],["2024-07-25T13:09:47.010000"],["2024-07-25T13:09:48.010000"],["2024-07-25T13:09:49.010000"],["2024-07-25T13:09:50.010000"],["2024-07-25T13:09:51.010000"],["2024-07-25T13:09:52.010000"],["2024-07-25T13:09:53.010000"],["2024-07-25T13:09:54.010000"],["2024-07-25T13:09:55.010000"],["2024-07-25T13:09:56.010000"],["2024-07-25T13:09:57.010000"],["2024-07-25T13:09:58.010000"],["2024-07-25T13:09:59.010000"],["2024-07-25T13:10:00.010000"],["2024-07-25T13:10:01.010000"],["2024-07-25T13:10:02.010000"],["2024-07-25T13:10:03.010000"],["2024-07-25T13:10:04.010000"],["2024-07-25T13:10:05.010000"],["2024-07-25T13:10:06.010000"],["2024-07-25T13:10:07.010000"],["2024-07-25T13:10:08.010000"],["2024-07-25T13:10:09.010000"],["2024-07-25T13:10:10.010000"],["2024-07-25T13:10:11.010000"],["2024-07-25T13:10:12.010000"],["2024-07-25T13:10:13.010000"],["2024-07-25T13:10:14.010000"],["2024-07-25T13:10:15.010000"],["2024-07-25T13:10:16.010000"],["2024-07-25T13:10:17.010000"],["2024-07-25T13:10:18.010000"],["2024-07-25T13:10:19.010000"],["2024-07-25T13:10:20.010000"],["2024-07-25T13:10:21.010000"],["2024-07-25T13:10:22.010000"],["2024-07-25T13:10:23.010000"],["2024-07-25T13:10:24.010000"],["2024-07-25T13:10:25.010000"],["2024-07-25T13:10:26.010000"],["2024-07-25T13:10:27.010000"],["2024-07-25T13:10:28.010000"],["2024-07-25T13:10:29.010000"],["2024-07-25T13:10:30.010000"],["2024-07-25T13:10:31.010000"],["2024-07-25T13:10:32.010000"],["2024-07-25T13:10:33.010000"],["2024-07-25T13:10:34.010000"],["2024-07-25T13:10:35.010000"],["2024-07-25T13:10:36.010000"],["2024-07-25T13:10:37.010000"],["2024-07-25T13:10:38.010000"],["2024-07-25T13:10:39.010000"],["2024-07-25T13:10:40.010000"],["2024-07-25T13:10:41.010000"],["2024-07-25T13:10:42.010000"],["2024-07-25T13:10:43.010000"],["2024-07-25T13:10:44.010000"],["2024-07-25T13:10:45.010000"],["2024-07-25T13:10:46.010000"],["2024-07-25T13:10:47.010000"],["2024-07-25T13:10:48.010000"],["2024-07-25T13:10:49.010000"],["2024-07-25T13:10:50.010000"],["2024-07-25T13:10:51.010000"],["2024-07-25T13:10:52.010000"],["2024-07-25T13:10:53.010000"],["2024-07-25T13:10:54.010000"],["2024-07-25T13:10:55.010000"],["2024-07-25T13:10:56.010000"],["2024-07-25T13:10:57.010000"],["2024-07-25T13:10:58.010000"],["2024-07-25T13:10:59.010000"],["2024-07-25T13:11:00.010000"],["2024-07-25T13:11:01.010000"],["2024-07-25T13:11:02.010000"],["2024-07-25T13:11:03.010000"],["2024-07-25T13:11:04.010000"],["2024-07-25T13:11:05.010000"],["2024-07-25T13:11:06.010000"],["2024-07-25T13:11:07.010000"],["2024-07-25T13:11:08.010000"],["2024-07-25T13:11:09.010000"],["2024-07-25T13:11:10.010000"],["2024-07-25T13:11:11.010000"],["2024-07-25T13:11:12.010000"],["2024-07-25T13:11:13.010000"],["2024-07-25T13:11:14.010000"],["2024-07-25T13:11:15.010000"],["2024-07-25T13:11:16.010000"],["2024-07-25T13:11:17.010000"],["2024-07-25T13:11:18.010000"],["2024-07-25T13:11:19.010000"],["2024-07-25T13:11:20.010000"],["2024-07-25T13:11:21.010000"],["2024-07-25T13:11:22.010000"],["2024-07-25T13:11:23.010000"],["2024-07-25T13:11:24.010000"],["2024-07-25T13:11:25.010000"],["2024-07-25T13:11:26.010000"],["2024-07-25T13:11:27.010000"],["2024-07-25T13:11:28.010000"],["2024-07-25T13:11:29.010000"],["2024-07-25T13:11:30.010000"],["2024-07-25T13:11:31.010000"],["2024-07-25T13:11:32.010000"],["2024-07-25T13:11:33.010000"],["2024-07-25T13:11:34.010000"],["2024-07-25T13:11:35.010000"],["2024-07-25T13:11:36.010000"],["2024-07-25T13:11:37.010000"],["2024-07-25T13:11:38.010000"],["2024-07-25T13:11:39.010000"],["2024-07-25T13:11:40.010000"],["2024-07-25T13:11:41.010000"],["2024-07-25T13:11:42.010000"],["2024-07-25T13:11:43.010000"],["2024-07-25T13:11:44.010000"],["2024-07-25T13:11:45.010000"],["2024-07-25T13:11:46.010000"],["2024-07-25T13:11:47.010000"],["2024-07-25T13:11:48.010000"],["2024-07-25T13:11:49.010000"],["2024-07-25T13:11:50.010000"],["2024-07-25T13:11:51.010000"],["2024-07-25T13:11:52.010000"],["2024-07-25T13:11:53.010000"],["2024-07-25T13:11:54.010000"],["2024-07-25T13:11:55.010000"],["2024-07-25T13:11:56.010000"],["2024-07-25T13:11:57.010000"],["2024-07-25T13:11:58.010000"],["2024-07-25T13:11:59.010000"],["2024-07-25T13:12:00.010000"],["2024-07-25T13:12:01.010000"],["2024-07-25T13:12:02.010000"],["2024-07-25T13:12:03.010000"],["2024-07-25T13:12:04.010000"],["2024-07-25T13:12:05.010000"],["2024-07-25T13:12:06.010000"],["2024-07-25T13:12:07.010000"],["2024-07-25T13:12:08.010000"],["2024-07-25T13:12:09.010000"],["2024-07-25T13:12:10.010000"],["2024-07-25T13:12:11.010000"],["2024-07-25T13:12:12.010000"],["2024-07-25T13:12:13.010000"],["2024-07-25T13:12:14.010000"],["2024-07-25T13:12:15.010000"],["2024-07-25T13:12:16.010000"],["2024-07-25T13:12:17.010000"],["2024-07-25T13:12:18.010000"],["2024-07-25T13:12:19.010000"],["2024-07-25T13:12:20.010000"],["2024-07-25T13:12:21.010000"],["2024-07-25T13:12:22.010000"],["2024-07-25T13:12:23.010000"],["2024-07-25T13:12:24.010000"],["2024-07-25T13:12:25.010000"],["2024-07-25T13:12:26.010000"],["2024-07-25T13:12:27.010000"],["2024-07-25T13:12:28.010000"],["2024-07-25T13:12:29.010000"],["2024-07-25T13:12:30.010000"],["2024-07-25T13:12:31.010000"],["2024-07-25T13:12:32.010000"],["2024-07-25T13:12:33.010000"],["2024-07-25T13:12:34.010000"],["2024-07-25T13:12:35.010000"],["2024-07-25T13:12:36.010000"],["2024-07-25T13:12:37.010000"],["2024-07-25T13:12:38.010000"],["2024-07-25T13:12:39.010000"],["2024-07-25T13:12:40.010000"],["2024-07-25T13:12:41.010000"],["2024-07-25T13:12:42.010000"],["2024-07-25T13:12:43.010000"],["2024-07-25T13:12:44.010000"],["2024-07-25T13:12:45.010000"],["2024-07-25T13:12:46.010000"],["2024-07-25T13:12:47.010000"],["2024-07-25T13:12:48.010000"],["2024-07-25T13:12:49.010000"],["2024-07-25T13:12:50.010000"],["2024-07-25T13:12:51.010000"],["2024-07-25T13:12:52.010000"],["2024-07-25T13:12:53.010000"],["2024-07-25T13:12:54.010000"],["2024-07-25T13:12:55.010000"],["2024-07-25T13:12:56.010000"],["2024-07-25T13:12:57.010000"],["2024-07-25T13:12:58.010000"],["2024-07-25T13:12:59.010000"],["2024-07-25T13:13:00.010000"],["2024-07-25T13:13:01.010000"],["2024-07-25T13:13:02.010000"],["2024-07-25T13:13:03.010000"],["2024-07-25T13:13:04.010000"],["2024-07-25T13:13:05.010000"],["2024-07-25T13:13:06.010000"],["2024-07-25T13:13:07.010000"],["2024-07-25T13:13:08.010000"],["2024-07-25T13:13:09.010000"],["2024-07-25T13:13:10.010000"],["2024-07-25T13:13:11.010000"],["2024-07-25T13:13:12.010000"],["2024-07-25T13:13:13.010000"],["2024-07-25T13:13:14.010000"],["2024-07-25T13:13:15.010000"],["2024-07-25T13:13:16.010000"],["2024-07-25T13:13:17.010000"],["2024-07-25T13:13:18.010000"],["2024-07-25T13:13:19.010000"],["2024-07-25T13:13:20.010000"],["2024-07-25T13:13:21.010000"],["2024-07-25T13:13:22.010000"],["2024-07-25T13:13:23.010000"],["2024-07-25T13:13:24.010000"],["2024-07-25T13:13:25.010000"],["2024-07-25T13:13:26.010000"],["2024-07-25T13:13:27.010000"],["2024-07-25T13:13:28.010000"],["2024-07-25T13:13:29.010000"],["2024-07-25T13:13:30.010000"],["2024-07-25T13:13:31.010000"],["2024-07-25T13:13:32.010000"],["2024-07-25T13:13:33.010000"],["2024-07-25T13:13:34.010000"],["2024-07-25T13:13:35.010000"],["2024-07-25T13:13:36.010000"],["2024-07-25T13:13:37.010000"],["2024-07-25T13:13:38.010000"],["2024-07-25T13:13:39.010000"],["2024-07-25T13:13:40.010000"],["2024-07-25T13:13:41.010000"],["2024-07-25T13:13:42.010000"],["2024-07-25T13:13:43.010000"],["2024-07-25T13:13:44.010000"],["2024-07-25T13:13:45.010000"],["2024-07-25T13:13:46.010000"],["2024-07-25T13:13:47.010000"],["2024-07-25T13:13:48.010000"],["2024-07-25T13:13:49.010000"],["2024-07-25T13:13:50.010000"],["2024-07-25T13:13:51.010000"],["2024-07-25T13:13:52.010000"],["2024-07-25T13:13:53.010000"],["2024-07-25T13:13:54.010000"],["2024-07-25T13:13:55.010000"],["2024-07-25T13:13:56.010000"],["2024-07-25T13:13:57.010000"],["2024-07-25T13:13:58.010000"],["2024-07-25T13:13:59.010000"],["2024-07-25T13:14:00.010000"],["2024-07-25T13:14:01.010000"],["2024-07-25T13:14:02.010000"],["2024-07-25T13:14:03.010000"],["2024-07-25T13:14:04.010000"],["2024-07-25T13:14:05.010000"],["2024-07-25T13:14:06.010000"],["2024-07-25T13:14:07.010000"],["2024-07-25T13:14:08.010000"],["2024-07-25T13:14:09.010000"],["2024-07-25T13:14:10.010000"],["2024-07-25T13:14:11.010000"],["2024-07-25T13:14:12.010000"],["2024-07-25T13:14:13.010000"],["2024-07-25T13:14:14.010000"],["2024-07-25T13:14:15.010000"],["2024-07-25T13:14:16.010000"],["2024-07-25T13:14:17.010000"],["2024-07-25T13:14:18.010000"],["2024-07-25T13:14:19.010000"],["2024-07-25T13:14:20.010000"],["2024-07-25T13:14:21.010000"],["2024-07-25T13:14:22.010000"],["2024-07-25T13:14:23.010000"],["2024-07-25T13:14:24.010000"],["2024-07-25T13:14:25.010000"],["2024-07-25T13:14:26.010000"],["2024-07-25T13:14:27.010000"],["2024-07-25T13:14:28.010000"],["2024-07-25T13:14:29.010000"],["2024-07-25T13:14:30.010000"],["2024-07-25T13:14:31.010000"],["2024-07-25T13:14:32.010000"],["2024-07-25T13:14:33.010000"],["2024-07-25T13:14:34.010000"],["2024-07-25T13:14:35.010000"],["2024-07-25T13:14:36.010000"],["2024-07-25T13:14:37.010000"],["2024-07-25T13:14:38.010000"],["2024-07-25T13:14:39.010000"],["2024-07-25T13:14:40.010000"],["2024-07-25T13:14:41.010000"],["2024-07-25T13:14:42.010000"],["2024-07-25T13:14:43.010000"],["2024-07-25T13:14:44.010000"],["2024-07-25T13:14:45.010000"],["2024-07-25T13:14:46.010000"],["2024-07-25T13:14:47.010000"],["2024-07-25T13:14:48.010000"],["2024-07-25T13:14:49.010000"],["2024-07-25T13:14:50.010000"],["2024-07-25T13:14:51.010000"],["2024-07-25T13:14:52.010000"],["2024-07-25T13:14:53.010000"],["2024-07-25T13:14:54.010000"],["2024-07-25T13:14:55.010000"],["2024-07-25T13:14:56.010000"],["2024-07-25T13:14:57.010000"],["2024-07-25T13:14:58.010000"],["2024-07-25T13:14:59.010000"],["2024-07-25T13:15:00.010000"],["2024-07-25T13:15:01.010000"],["2024-07-25T13:15:02.010000"],["2024-07-25T13:15:03.010000"],["2024-07-25T13:15:04.010000"],["2024-07-25T13:15:05.010000"],["2024-07-25T13:15:06.010000"],["2024-07-25T13:15:07.010000"],["2024-07-25T13:15:08.010000"],["2024-07-25T13:15:09.010000"],["2024-07-25T13:15:10.010000"],["2024-07-25T13:15:11.010000"],["2024-07-25T13:15:12.010000"],["2024-07-25T13:15:13.010000"],["2024-07-25T13:15:14.010000"],["2024-07-25T13:15:15.010000"],["2024-07-25T13:15:16.010000"],["2024-07-25T13:15:17.010000"],["2024-07-25T13:15:18.010000"],["2024-07-25T13:15:19.010000"],["2024-07-25T13:15:20.010000"],["2024-07-25T13:15:21.010000"],["2024-07-25T13:15:22.010000"],["2024-07-25T13:15:23.010000"],["2024-07-25T13:15:24.010000"],["2024-07-25T13:15:25.010000"],["2024-07-25T13:15:26.010000"],["2024-07-25T13:15:27.010000"],["2024-07-25T13:15:28.010000"],["2024-07-25T13:15:29.010000"],["2024-07-25T13:15:30.010000"],["2024-07-25T13:15:31.010000"],["2024-07-25T13:15:32.010000"],["2024-07-25T13:15:33.010000"],["2024-07-25T13:15:34.010000"],["2024-07-25T13:15:35.010000"],["2024-07-25T13:15:36.010000"],["2024-07-25T13:15:37.010000"],["2024-07-25T13:15:38.010000"],["2024-07-25T13:15:39.010000"],["2024-07-25T13:15:40.010000"],["2024-07-25T13:15:41.010000"],["2024-07-25T13:15:42.010000"],["2024-07-25T13:15:43.010000"],["2024-07-25T13:15:44.010000"],["2024-07-25T13:15:45.010000"],["2024-07-25T13:15:46.010000"],["2024-07-25T13:15:47.010000"],["2024-07-25T13:15:48.010000"],["2024-07-25T13:15:49.010000"],["2024-07-25T13:15:50.010000"],["2024-07-25T13:15:51.010000"],["2024-07-25T13:15:52.010000"],["2024-07-25T13:15:53.010000"],["2024-07-25T13:15:54.010000"],["2024-07-25T13:15:55.010000"],["2024-07-25T13:15:56.010000"],["2024-07-25T13:15:57.010000"],["2024-07-25T13:15:58.010000"],["2024-07-25T13:15:59.010000"],["2024-07-25T13:16:00.010000"],["2024-07-25T13:16:01.010000"],["2024-07-25T13:16:02.010000"],["2024-07-25T13:16:03.010000"],["2024-07-25T13:16:04.010000"],["2024-07-25T13:16:05.010000"],["2024-07-25T13:16:06.010000"],["2024-07-25T13:16:07.010000"],["2024-07-25T13:16:08.010000"],["2024-07-25T13:16:09.010000"],["2024-07-25T13:16:10.010000"],["2024-07-25T13:16:11.010000"],["2024-07-25T13:16:12.010000"],["2024-07-25T13:16:13.010000"],["2024-07-25T13:16:14.010000"],["2024-07-25T13:16:15.010000"],["2024-07-25T13:16:16.010000"],["2024-07-25T13:16:17.010000"],["2024-07-25T13:16:18.010000"],["2024-07-25T13:16:19.010000"],["2024-07-25T13:16:20.010000"],["2024-07-25T13:16:21.010000"],["2024-07-25T13:16:22.010000"],["2024-07-25T13:16:23.010000"],["2024-07-25T13:16:24.010000"],["2024-07-25T13:16:25.010000"],["2024-07-25T13:16:26.010000"],["2024-07-25T13:16:27.010000"],["2024-07-25T13:16:28.010000"],["2024-07-25T13:16:29.010000"],["2024-07-25T13:16:30.010000"],["2024-07-25T13:16:31.010000"],["2024-07-25T13:16:32.010000"],["2024-07-25T13:16:33.010000"],["2024-07-25T13:16:34.010000"],["2024-07-25T13:16:35.010000"],["2024-07-25T13:16:36.010000"],["2024-07-25T13:16:37.010000"],["2024-07-25T13:16:38.010000"],["2024-07-25T13:16:39.010000"],["2024-07-25T13:16:40.010000"],["2024-07-25T13:16:41.010000"],["2024-07-25T13:16:42.010000"],["2024-07-25T13:16:43.010000"],["2024-07-25T13:16:44.010000"],["2024-07-25T13:16:45.010000"],["2024-07-25T13:16:46.010000"],["2024-07-25T13:16:47.010000"],["2024-07-25T13:16:48.010000"],["2024-07-25T13:16:49.010000"],["2024-07-25T13:16:50.010000"],["2024-07-25T13:16:51.010000"],["2024-07-25T13:16:52.010000"],["2024-07-25T13:16:53.010000"],["2024-07-25T13:16:54.010000"],["2024-07-25T13:16:55.010000"],["2024-07-25T13:16:56.010000"],["2024-07-25T13:16:57.010000"],["2024-07-25T13:16:58.010000"],["2024-07-25T13:16:59.010000"],["2024-07-25T13:17:00.010000"],["2024-07-25T13:17:01.010000"],["2024-07-25T13:17:02.010000"],["2024-07-25T13:17:03.010000"],["2024-07-25T13:17:04.010000"],["2024-07-25T13:17:05.010000"],["2024-07-25T13:17:06.010000"],["2024-07-25T13:17:07.010000"],["2024-07-25T13:17:08.010000"],["2024-07-25T13:17:09.010000"],["2024-07-25T13:17:10.010000"],["2024-07-25T13:17:11.010000"],["2024-07-25T13:17:12.010000"],["2024-07-25T13:17:13.010000"],["2024-07-25T13:17:14.010000"],["2024-07-25T13:17:15.010000"],["2024-07-25T13:17:16.010000"],["2024-07-25T13:17:17.010000"],["2024-07-25T13:17:18.010000"],["2024-07-25T13:17:19.010000"],["2024-07-25T13:17:20.010000"],["2024-07-25T13:17:21.010000"],["2024-07-25T13:17:22.010000"],["2024-07-25T13:17:23.010000"],["2024-07-25T13:17:24.010000"],["2024-07-25T13:17:25.010000"],["2024-07-25T13:17:26.010000"],["2024-07-25T13:17:27.010000"],["2024-07-25T13:17:28.010000"],["2024-07-25T13:17:29.010000"],["2024-07-25T13:17:30.010000"],["2024-07-25T13:17:31.010000"],["2024-07-25T13:17:32.010000"],["2024-07-25T13:17:33.010000"],["2024-07-25T13:17:34.010000"],["2024-07-25T13:17:35.010000"],["2024-07-25T13:17:36.010000"],["2024-07-25T13:17:37.010000"],["2024-07-25T13:17:38.010000"],["2024-07-25T13:17:39.010000"],["2024-07-25T13:17:40.010000"],["2024-07-25T13:17:41.010000"],["2024-07-25T13:17:42.010000"],["2024-07-25T13:17:43.010000"],["2024-07-25T13:17:44.010000"],["2024-07-25T13:17:45.010000"],["2024-07-25T13:17:46.010000"],["2024-07-25T13:17:47.010000"],["2024-07-25T13:17:48.010000"],["2024-07-25T13:17:49.010000"],["2024-07-25T13:17:50.010000"],["2024-07-25T13:17:51.010000"],["2024-07-25T13:17:52.010000"],["2024-07-25T13:17:53.010000"],["2024-07-25T13:17:54.010000"],["2024-07-25T13:17:55.010000"],["2024-07-25T13:17:56.010000"],["2024-07-25T13:17:57.010000"],["2024-07-25T13:17:58.010000"],["2024-07-25T13:17:59.010000"],["2024-07-25T13:18:00.010000"],["2024-07-25T13:18:01.010000"],["2024-07-25T13:18:02.010000"],["2024-07-25T13:18:03.010000"],["2024-07-25T13:18:04.010000"],["2024-07-25T13:18:05.010000"],["2024-07-25T13:18:06.010000"],["2024-07-25T13:18:07.010000"],["2024-07-25T13:18:08.010000"],["2024-07-25T13:18:09.010000"],["2024-07-25T13:18:10.010000"],["2024-07-25T13:18:11.010000"],["2024-07-25T13:18:12.010000"],["2024-07-25T13:18:13.010000"],["2024-07-25T13:18:14.010000"],["2024-07-25T13:18:15.010000"],["2024-07-25T13:18:16.010000"],["2024-07-25T13:18:17.010000"],["2024-07-25T13:18:18.010000"],["2024-07-25T13:18:19.010000"],["2024-07-25T13:18:20.010000"],["2024-07-25T13:18:21.010000"],["2024-07-25T13:18:22.010000"],["2024-07-25T13:18:23.010000"],["2024-07-25T13:18:24.010000"],["2024-07-25T13:18:25.010000"],["2024-07-25T13:18:26.010000"],["2024-07-25T13:18:27.010000"],["2024-07-25T13:18:28.010000"],["2024-07-25T13:18:29.010000"],["2024-07-25T13:18:30.010000"],["2024-07-25T13:18:31.010000"],["2024-07-25T13:18:32.010000"],["2024-07-25T13:18:33.010000"],["2024-07-25T13:18:34.010000"],["2024-07-25T13:18:35.010000"],["2024-07-25T13:18:36.010000"],["2024-07-25T13:18:37.010000"],["2024-07-25T13:18:38.010000"],["2024-07-25T13:18:39.010000"],["2024-07-25T13:18:40.010000"],["2024-07-25T13:18:41.010000"],["2024-07-25T13:18:42.010000"],["2024-07-25T13:18:43.010000"],["2024-07-25T13:18:44.010000"],["2024-07-25T13:18:45.010000"],["2024-07-25T13:18:46.010000"],["2024-07-25T13:18:47.010000"],["2024-07-25T13:18:48.010000"],["2024-07-25T13:18:49.010000"],["2024-07-25T13:18:50.010000"],["2024-07-25T13:18:51.010000"],["2024-07-25T13:18:52.010000"],["2024-07-25T13:18:53.010000"],["2024-07-25T13:18:54.010000"],["2024-07-25T13:18:55.010000"],["2024-07-25T13:18:56.010000"],["2024-07-25T13:18:57.010000"],["2024-07-25T13:18:58.010000"],["2024-07-25T13:18:59.010000"],["2024-07-25T13:19:00.010000"],["2024-07-25T13:19:01.010000"],["2024-07-25T13:19:02.010000"],["2024-07-25T13:19:03.010000"],["2024-07-25T13:19:04.010000"],["2024-07-25T13:19:05.010000"],["2024-07-25T13:19:06.010000"],["2024-07-25T13:19:07.010000"],["2024-07-25T13:19:08.010000"],["2024-07-25T13:19:09.010000"],["2024-07-25T13:19:10.010000"],["2024-07-25T13:19:11.010000"],["2024-07-25T13:19:12.010000"],["2024-07-25T13:19:13.010000"],["2024-07-25T13:19:14.010000"],["2024-07-25T13:19:15.010000"],["2024-07-25T13:19:16.010000"],["2024-07-25T13:19:17.010000"],["2024-07-25T13:19:18.010000"],["2024-07-25T13:19:19.010000"],["2024-07-25T13:19:20.010000"],["2024-07-25T13:19:21.010000"],["2024-07-25T13:19:22.010000"],["2024-07-25T13:19:23.010000"],["2024-07-25T13:19:24.010000"],["2024-07-25T13:19:25.010000"],["2024-07-25T13:19:26.010000"],["2024-07-25T13:19:27.010000"],["2024-07-25T13:19:28.010000"],["2024-07-25T13:19:29.010000"],["2024-07-25T13:19:30.010000"],["2024-07-25T13:19:31.010000"],["2024-07-25T13:19:32.010000"],["2024-07-25T13:19:33.010000"],["2024-07-25T13:19:34.010000"],["2024-07-25T13:19:35.010000"],["2024-07-25T13:19:36.010000"],["2024-07-25T13:19:37.010000"],["2024-07-25T13:19:38.010000"],["2024-07-25T13:19:39.010000"],["2024-07-25T13:19:40.010000"],["2024-07-25T13:19:41.010000"],["2024-07-25T13:19:42.010000"],["2024-07-25T13:19:43.010000"],["2024-07-25T13:19:44.010000"],["2024-07-25T13:19:45.010000"],["2024-07-25T13:19:46.010000"],["2024-07-25T13:19:47.010000"],["2024-07-25T13:19:48.010000"],["2024-07-25T13:19:49.010000"],["2024-07-25T13:19:50.010000"],["2024-07-25T13:19:51.010000"],["2024-07-25T13:19:52.010000"],["2024-07-25T13:19:53.010000"],["2024-07-25T13:19:54.010000"],["2024-07-25T13:19:55.010000"],["2024-07-25T13:19:56.010000"],["2024-07-25T13:19:57.010000"],["2024-07-25T13:19:58.010000"],["2024-07-25T13:19:59.010000"],["2024-07-25T13:20:00.010000"],["2024-07-25T13:20:01.010000"],["2024-07-25T13:20:02.010000"],["2024-07-25T13:20:03.010000"],["2024-07-25T13:20:04.010000"],["2024-07-25T13:20:05.010000"],["2024-07-25T13:20:06.010000"],["2024-07-25T13:20:07.010000"],["2024-07-25T13:20:08.010000"],["2024-07-25T13:20:09.010000"],["2024-07-25T13:20:10.010000"],["2024-07-25T13:20:11.010000"],["2024-07-25T13:20:12.010000"],["2024-07-25T13:20:13.010000"],["2024-07-25T13:20:14.010000"],["2024-07-25T13:20:15.010000"],["2024-07-25T13:20:16.010000"],["2024-07-25T13:20:17.010000"],["2024-07-25T13:20:18.010000"],["2024-07-25T13:20:19.010000"],["2024-07-25T13:20:20.010000"],["2024-07-25T13:20:21.010000"],["2024-07-25T13:20:22.010000"],["2024-07-25T13:20:23.010000"],["2024-07-25T13:20:24.010000"],["2024-07-25T13:20:25.010000"],["2024-07-25T13:20:26.010000"],["2024-07-25T13:20:27.010000"],["2024-07-25T13:20:28.010000"],["2024-07-25T13:20:29.010000"],["2024-07-25T13:20:30.010000"],["2024-07-25T13:20:31.010000"],["2024-07-25T13:20:32.010000"],["2024-07-25T13:20:33.010000"],["2024-07-25T13:20:34.010000"],["2024-07-25T13:20:35.010000"],["2024-07-25T13:20:36.010000"],["2024-07-25T13:20:37.010000"],["2024-07-25T13:20:38.010000"],["2024-07-25T13:20:39.010000"],["2024-07-25T13:20:40.010000"],["2024-07-25T13:20:41.010000"],["2024-07-25T13:20:42.010000"],["2024-07-25T13:20:43.010000"],["2024-07-25T13:20:44.010000"],["2024-07-25T13:20:45.010000"],["2024-07-25T13:20:46.010000"],["2024-07-25T13:20:47.010000"],["2024-07-25T13:20:48.010000"],["2024-07-25T13:20:49.010000"],["2024-07-25T13:20:50.010000"],["2024-07-25T13:20:51.010000"],["2024-07-25T13:20:52.010000"],["2024-07-25T13:20:53.010000"],["2024-07-25T13:20:54.010000"],["2024-07-25T13:20:55.010000"],["2024-07-25T13:20:56.010000"],["2024-07-25T13:20:57.010000"],["2024-07-25T13:20:58.010000"],["2024-07-25T13:20:59.010000"],["2024-07-25T13:21:00.010000"],["2024-07-25T13:21:01.010000"],["2024-07-25T13:21:02.010000"],["2024-07-25T13:21:03.010000"],["2024-07-25T13:21:04.010000"],["2024-07-25T13:21:05.010000"],["2024-07-25T13:21:06.010000"],["2024-07-25T13:21:07.010000"],["2024-07-25T13:21:08.010000"],["2024-07-25T13:21:09.010000"],["2024-07-25T13:21:10.010000"],["2024-07-25T13:21:11.010000"],["2024-07-25T13:21:12.010000"],["2024-07-25T13:21:13.010000"],["2024-07-25T13:21:14.010000"],["2024-07-25T13:21:15.010000"],["2024-07-25T13:21:16.010000"],["2024-07-25T13:21:17.010000"],["2024-07-25T13:21:18.010000"],["2024-07-25T13:21:19.010000"],["2024-07-25T13:21:20.010000"],["2024-07-25T13:21:21.010000"],["2024-07-25T13:21:22.010000"],["2024-07-25T13:21:23.010000"],["2024-07-25T13:21:24.010000"],["2024-07-25T13:21:25.010000"],["2024-07-25T13:21:26.010000"],["2024-07-25T13:21:27.010000"],["2024-07-25T13:21:28.010000"],["2024-07-25T13:21:29.010000"],["2024-07-25T13:21:30.010000"],["2024-07-25T13:21:31.010000"],["2024-07-25T13:21:32.010000"],["2024-07-25T13:21:33.010000"],["2024-07-25T13:21:34.010000"],["2024-07-25T13:21:35.010000"],["2024-07-25T13:21:36.010000"],["2024-07-25T13:21:37.010000"],["2024-07-25T13:21:38.010000"],["2024-07-25T13:21:39.010000"],["2024-07-25T13:21:40.010000"],["2024-07-25T13:21:41.010000"],["2024-07-25T13:21:42.010000"],["2024-07-25T13:21:43.010000"],["2024-07-25T13:21:44.010000"],["2024-07-25T13:21:45.010000"],["2024-07-25T13:21:46.010000"],["2024-07-25T13:21:47.010000"],["2024-07-25T13:21:48.010000"],["2024-07-25T13:21:49.010000"],["2024-07-25T13:21:50.010000"],["2024-07-25T13:21:51.010000"],["2024-07-25T13:21:52.010000"],["2024-07-25T13:21:53.010000"],["2024-07-25T13:21:54.010000"],["2024-07-25T13:21:55.010000"],["2024-07-25T13:21:56.010000"],["2024-07-25T13:21:57.010000"],["2024-07-25T13:21:58.010000"],["2024-07-25T13:21:59.010000"],["2024-07-25T13:22:00.010000"],["2024-07-25T13:22:01.010000"],["2024-07-25T13:22:02.010000"],["2024-07-25T13:22:03.010000"],["2024-07-25T13:22:04.010000"],["2024-07-25T13:22:05.010000"],["2024-07-25T13:22:06.010000"],["2024-07-25T13:22:07.010000"],["2024-07-25T13:22:08.010000"],["2024-07-25T13:22:09.010000"],["2024-07-25T13:22:10.010000"],["2024-07-25T13:22:11.010000"],["2024-07-25T13:22:12.010000"],["2024-07-25T13:22:13.010000"],["2024-07-25T13:22:14.010000"],["2024-07-25T13:22:15.010000"],["2024-07-25T13:22:16.010000"],["2024-07-25T13:22:17.010000"],["2024-07-25T13:22:18.010000"],["2024-07-25T13:22:19.010000"],["2024-07-25T13:22:20.010000"],["2024-07-25T13:22:21.010000"],["2024-07-25T13:22:22.010000"],["2024-07-25T13:22:23.010000"],["2024-07-25T13:22:24.010000"],["2024-07-25T13:22:25.010000"],["2024-07-25T13:22:26.010000"],["2024-07-25T13:22:27.010000"],["2024-07-25T13:22:28.010000"],["2024-07-25T13:22:29.010000"],["2024-07-25T13:22:30.010000"],["2024-07-25T13:22:31.010000"],["2024-07-25T13:22:32.010000"],["2024-07-25T13:22:33.010000"],["2024-07-25T13:22:34.010000"],["2024-07-25T13:22:35.010000"],["2024-07-25T13:22:36.010000"],["2024-07-25T13:22:37.010000"],["2024-07-25T13:22:38.010000"],["2024-07-25T13:22:39.010000"],["2024-07-25T13:22:40.010000"],["2024-07-25T13:22:41.010000"],["2024-07-25T13:22:42.010000"],["2024-07-25T13:22:43.010000"],["2024-07-25T13:22:44.010000"],["2024-07-25T13:22:45.010000"],["2024-07-25T13:22:46.010000"],["2024-07-25T13:22:47.010000"],["2024-07-25T13:22:48.010000"],["2024-07-25T13:22:49.010000"],["2024-07-25T13:22:50.010000"],["2024-07-25T13:22:51.010000"],["2024-07-25T13:22:52.010000"],["2024-07-25T13:22:53.010000"],["2024-07-25T13:22:54.010000"],["2024-07-25T13:22:55.010000"],["2024-07-25T13:22:56.010000"],["2024-07-25T13:22:57.010000"],["2024-07-25T13:22:58.010000"],["2024-07-25T13:22:59.010000"],["2024-07-25T13:23:00.010000"],["2024-07-25T13:23:01.010000"],["2024-07-25T13:23:02.010000"],["2024-07-25T13:23:03.010000"],["2024-07-25T13:23:04.010000"],["2024-07-25T13:23:05.010000"],["2024-07-25T13:23:06.010000"],["2024-07-25T13:23:07.010000"],["2024-07-25T13:23:08.010000"],["2024-07-25T13:23:09.010000"],["2024-07-25T13:23:10.010000"],["2024-07-25T13:23:11.010000"],["2024-07-25T13:23:12.010000"],["2024-07-25T13:23:13.010000"],["2024-07-25T13:23:14.010000"],["2024-07-25T13:23:15.010000"],["2024-07-25T13:23:16.010000"],["2024-07-25T13:23:17.010000"],["2024-07-25T13:23:18.010000"],["2024-07-25T13:23:19.010000"],["2024-07-25T13:23:20.010000"],["2024-07-25T13:23:21.010000"],["2024-07-25T13:23:22.010000"],["2024-07-25T13:23:23.010000"],["2024-07-25T13:23:24.010000"],["2024-07-25T13:23:25.010000"],["2024-07-25T13:23:26.010000"],["2024-07-25T13:23:27.010000"],["2024-07-25T13:23:28.010000"],["2024-07-25T13:23:29.010000"],["2024-07-25T13:23:30.010000"],["2024-07-25T13:23:31.010000"],["2024-07-25T13:23:32.010000"],["2024-07-25T13:23:33.010000"],["2024-07-25T13:23:34.010000"],["2024-07-25T13:23:35.010000"],["2024-07-25T13:23:36.010000"],["2024-07-25T13:23:37.010000"],["2024-07-25T13:23:38.010000"],["2024-07-25T13:23:39.010000"],["2024-07-25T13:23:40.010000"],["2024-07-25T13:23:41.010000"],["2024-07-25T13:23:42.010000"],["2024-07-25T13:23:43.010000"],["2024-07-25T13:23:44.010000"],["2024-07-25T13:23:45.010000"],["2024-07-25T13:23:46.010000"],["2024-07-25T13:23:47.010000"],["2024-07-25T13:23:48.010000"],["2024-07-25T13:23:49.010000"],["2024-07-25T13:23:50.010000"],["2024-07-25T13:23:51.010000"],["2024-07-25T13:23:52.010000"],["2024-07-25T13:23:53.010000"],["2024-07-25T13:23:54.010000"],["2024-07-25T13:23:55.010000"],["2024-07-25T13:23:56.010000"],["2024-07-25T13:23:57.010000"],["2024-07-25T13:23:58.010000"],["2024-07-25T13:23:59.010000"],["2024-07-25T13:24:00.010000"],["2024-07-25T13:24:01.010000"],["2024-07-25T13:24:02.010000"],["2024-07-25T13:24:03.010000"],["2024-07-25T13:24:04.010000"],["2024-07-25T13:24:05.010000"],["2024-07-25T13:24:06.010000"],["2024-07-25T13:24:07.010000"],["2024-07-25T13:24:08.010000"],["2024-07-25T13:24:09.010000"],["2024-07-25T13:24:10.010000"],["2024-07-25T13:24:11.010000"],["2024-07-25T13:24:12.010000"],["2024-07-25T13:24:13.010000"],["2024-07-25T13:24:14.010000"],["2024-07-25T13:24:15.010000"],["2024-07-25T13:24:16.010000"],["2024-07-25T13:24:17.010000"],["2024-07-25T13:24:18.010000"],["2024-07-25T13:24:19.010000"],["2024-07-25T13:24:20.010000"],["2024-07-25T13:24:21.010000"],["2024-07-25T13:24:22.010000"],["2024-07-25T13:24:23.010000"],["2024-07-25T13:24:24.010000"],["2024-07-25T13:24:25.010000"],["2024-07-25T13:24:26.010000"],["2024-07-25T13:24:27.010000"],["2024-07-25T13:24:28.010000"],["2024-07-25T13:24:29.010000"],["2024-07-25T13:24:30.010000"],["2024-07-25T13:24:31.010000"],["2024-07-25T13:24:32.010000"],["2024-07-25T13:24:33.010000"],["2024-07-25T13:24:34.010000"],["2024-07-25T13:24:35.010000"],["2024-07-25T13:24:36.010000"],["2024-07-25T13:24:37.010000"],["2024-07-25T13:24:38.010000"],["2024-07-25T13:24:39.010000"],["2024-07-25T13:24:40.010000"],["2024-07-25T13:24:41.010000"],["2024-07-25T13:24:42.010000"],["2024-07-25T13:24:43.010000"],["2024-07-25T13:24:44.010000"],["2024-07-25T13:24:45.010000"],["2024-07-25T13:24:46.010000"],["2024-07-25T13:24:47.010000"],["2024-07-25T13:24:48.010000"],["2024-07-25T13:24:49.010000"],["2024-07-25T13:24:50.010000"],["2024-07-25T13:24:51.010000"],["2024-07-25T13:24:52.010000"],["2024-07-25T13:24:53.010000"],["2024-07-25T13:24:54.010000"],["2024-07-25T13:24:55.010000"],["2024-07-25T13:24:56.010000"],["2024-07-25T13:24:57.010000"],["2024-07-25T13:24:58.010000"],["2024-07-25T13:24:59.010000"],["2024-07-25T13:25:00.010000"],["2024-07-25T13:25:01.010000"],["2024-07-25T13:25:02.010000"],["2024-07-25T13:25:03.010000"],["2024-07-25T13:25:04.010000"],["2024-07-25T13:25:05.010000"],["2024-07-25T13:25:06.010000"],["2024-07-25T13:25:07.010000"],["2024-07-25T13:25:08.010000"],["2024-07-25T13:25:09.010000"],["2024-07-25T13:25:10.010000"],["2024-07-25T13:25:11.010000"],["2024-07-25T13:25:12.010000"],["2024-07-25T13:25:13.010000"],["2024-07-25T13:25:14.010000"],["2024-07-25T13:25:15.010000"],["2024-07-25T13:25:16.010000"],["2024-07-25T13:25:17.010000"],["2024-07-25T13:25:18.010000"],["2024-07-25T13:25:19.010000"],["2024-07-25T13:25:20.010000"],["2024-07-25T13:25:21.010000"],["2024-07-25T13:25:22.010000"],["2024-07-25T13:25:23.010000"],["2024-07-25T13:25:24.010000"],["2024-07-25T13:25:25.010000"],["2024-07-25T13:25:26.010000"],["2024-07-25T13:25:27.010000"],["2024-07-25T13:25:28.010000"],["2024-07-25T13:25:29.010000"],["2024-07-25T13:25:30.010000"],["2024-07-25T13:25:31.010000"],["2024-07-25T13:25:32.010000"],["2024-07-25T13:25:33.010000"],["2024-07-25T13:25:34.010000"],["2024-07-25T13:25:35.010000"],["2024-07-25T13:25:36.010000"],["2024-07-25T13:25:37.010000"],["2024-07-25T13:25:38.010000"],["2024-07-25T13:25:39.010000"],["2024-07-25T13:25:40.010000"],["2024-07-25T13:25:41.010000"],["2024-07-25T13:25:42.010000"],["2024-07-25T13:25:43.010000"],["2024-07-25T13:25:44.010000"],["2024-07-25T13:25:45.010000"],["2024-07-25T13:25:46.010000"],["2024-07-25T13:25:47.010000"],["2024-07-25T13:25:48.010000"],["2024-07-25T13:25:49.010000"],["2024-07-25T13:25:50.010000"],["2024-07-25T13:25:51.010000"],["2024-07-25T13:25:52.010000"],["2024-07-25T13:25:53.010000"],["2024-07-25T13:25:54.010000"],["2024-07-25T13:25:55.010000"],["2024-07-25T13:25:56.010000"],["2024-07-25T13:25:57.010000"],["2024-07-25T13:25:58.010000"],["2024-07-25T13:25:59.010000"],["2024-07-25T13:26:00.010000"],["2024-07-25T13:26:01.010000"],["2024-07-25T13:26:02.010000"],["2024-07-25T13:26:03.010000"],["2024-07-25T13:26:04.010000"],["2024-07-25T13:26:05.010000"],["2024-07-25T13:26:06.010000"],["2024-07-25T13:26:07.010000"],["2024-07-25T13:26:08.010000"],["2024-07-25T13:26:09.010000"],["2024-07-25T13:26:10.010000"],["2024-07-25T13:26:11.010000"],["2024-07-25T13:26:12.010000"],["2024-07-25T13:26:13.010000"],["2024-07-25T13:26:14.010000"],["2024-07-25T13:26:15.010000"],["2024-07-25T13:26:16.010000"],["2024-07-25T13:26:17.010000"],["2024-07-25T13:26:18.010000"],["2024-07-25T13:26:19.010000"],["2024-07-25T13:26:20.010000"],["2024-07-25T13:26:21.010000"],["2024-07-25T13:26:22.010000"],["2024-07-25T13:26:23.010000"],["2024-07-25T13:26:24.010000"],["2024-07-25T13:26:25.010000"],["2024-07-25T13:26:26.010000"],["2024-07-25T13:26:27.010000"],["2024-07-25T13:26:28.010000"],["2024-07-25T13:26:29.010000"],["2024-07-25T13:26:30.010000"],["2024-07-25T13:26:31.010000"],["2024-07-25T13:26:32.010000"],["2024-07-25T13:26:33.010000"],["2024-07-25T13:26:34.010000"],["2024-07-25T13:26:35.010000"],["2024-07-25T13:26:36.010000"],["2024-07-25T13:26:37.010000"],["2024-07-25T13:26:38.010000"],["2024-07-25T13:26:39.010000"],["2024-07-25T13:26:40.010000"],["2024-07-25T13:26:41.010000"],["2024-07-25T13:26:42.010000"],["2024-07-25T13:26:43.010000"],["2024-07-25T13:26:44.010000"],["2024-07-25T13:26:45.010000"],["2024-07-25T13:26:46.010000"],["2024-07-25T13:26:47.010000"],["2024-07-25T13:26:48.010000"],["2024-07-25T13:26:49.010000"],["2024-07-25T13:26:50.010000"],["2024-07-25T13:26:51.010000"],["2024-07-25T13:26:52.010000"],["2024-07-25T13:26:53.010000"],["2024-07-25T13:26:54.010000"],["2024-07-25T13:26:55.010000"],["2024-07-25T13:26:56.010000"],["2024-07-25T13:26:57.010000"],["2024-07-25T13:26:58.010000"],["2024-07-25T13:26:59.010000"],["2024-07-25T13:27:00.010000"],["2024-07-25T13:27:01.010000"],["2024-07-25T13:27:02.010000"],["2024-07-25T13:27:03.010000"],["2024-07-25T13:27:04.010000"],["2024-07-25T13:27:05.010000"],["2024-07-25T13:27:06.010000"],["2024-07-25T13:27:07.010000"],["2024-07-25T13:27:08.010000"],["2024-07-25T13:27:09.010000"],["2024-07-25T13:27:10.010000"],["2024-07-25T13:27:11.010000"],["2024-07-25T13:27:12.010000"],["2024-07-25T13:27:13.010000"],["2024-07-25T13:27:14.010000"],["2024-07-25T13:27:15.010000"],["2024-07-25T13:27:16.010000"],["2024-07-25T13:27:17.010000"],["2024-07-25T13:27:18.010000"],["2024-07-25T13:27:19.010000"],["2024-07-25T13:27:20.010000"],["2024-07-25T13:27:21.010000"],["2024-07-25T13:27:22.010000"],["2024-07-25T13:27:23.010000"],["2024-07-25T13:27:24.010000"],["2024-07-25T13:27:25.010000"],["2024-07-25T13:27:26.010000"],["2024-07-25T13:27:27.010000"],["2024-07-25T13:27:28.010000"],["2024-07-25T13:27:29.010000"],["2024-07-25T13:27:30.010000"],["2024-07-25T13:27:31.010000"],["2024-07-25T13:27:32.010000"],["2024-07-25T13:27:33.010000"],["2024-07-25T13:27:34.010000"],["2024-07-25T13:27:35.010000"],["2024-07-25T13:27:36.010000"],["2024-07-25T13:27:37.010000"],["2024-07-25T13:27:38.010000"],["2024-07-25T13:27:39.010000"],["2024-07-25T13:27:40.010000"],["2024-07-25T13:27:41.010000"],["2024-07-25T13:27:42.010000"],["2024-07-25T13:27:43.010000"],["2024-07-25T13:27:44.010000"],["2024-07-25T13:27:45.010000"],["2024-07-25T13:27:46.010000"],["2024-07-25T13:27:47.010000"],["2024-07-25T13:27:48.010000"],["2024-07-25T13:27:49.010000"],["2024-07-25T13:27:50.010000"],["2024-07-25T13:27:51.010000"],["2024-07-25T13:27:52.010000"],["2024-07-25T13:27:53.010000"],["2024-07-25T13:27:54.010000"],["2024-07-25T13:27:55.010000"],["2024-07-25T13:27:56.010000"],["2024-07-25T13:27:57.010000"],["2024-07-25T13:27:58.010000"],["2024-07-25T13:27:59.010000"],["2024-07-25T13:28:00.010000"],["2024-07-25T13:28:01.010000"],["2024-07-25T13:28:02.010000"],["2024-07-25T13:28:03.010000"],["2024-07-25T13:28:04.010000"],["2024-07-25T13:28:05.010000"],["2024-07-25T13:28:06.010000"],["2024-07-25T13:28:07.010000"],["2024-07-25T13:28:08.010000"],["2024-07-25T13:28:09.010000"],["2024-07-25T13:28:10.010000"],["2024-07-25T13:28:11.010000"],["2024-07-25T13:28:12.010000"],["2024-07-25T13:28:13.010000"],["2024-07-25T13:28:14.010000"],["2024-07-25T13:28:15.010000"],["2024-07-25T13:28:16.010000"],["2024-07-25T13:28:17.010000"],["2024-07-25T13:28:18.010000"],["2024-07-25T13:28:19.010000"],["2024-07-25T13:28:20.010000"],["2024-07-25T13:28:21.010000"],["2024-07-25T13:28:22.010000"],["2024-07-25T13:28:23.010000"],["2024-07-25T13:28:24.010000"],["2024-07-25T13:28:25.010000"],["2024-07-25T13:28:26.010000"],["2024-07-25T13:28:27.010000"],["2024-07-25T13:28:28.010000"],["2024-07-25T13:28:29.010000"],["2024-07-25T13:28:30.010000"],["2024-07-25T13:28:31.010000"],["2024-07-25T13:28:32.010000"],["2024-07-25T13:28:33.010000"],["2024-07-25T13:28:34.010000"],["2024-07-25T13:28:35.010000"],["2024-07-25T13:28:36.010000"],["2024-07-25T13:28:37.010000"],["2024-07-25T13:28:38.010000"],["2024-07-25T13:28:39.010000"],["2024-07-25T13:28:40.010000"],["2024-07-25T13:28:41.010000"],["2024-07-25T13:28:42.010000"],["2024-07-25T13:28:43.010000"],["2024-07-25T13:28:44.010000"],["2024-07-25T13:28:45.010000"],["2024-07-25T13:28:46.010000"],["2024-07-25T13:28:47.010000"],["2024-07-25T13:28:48.010000"],["2024-07-25T13:28:49.010000"],["2024-07-25T13:28:50.010000"],["2024-07-25T13:28:51.010000"],["2024-07-25T13:28:52.010000"],["2024-07-25T13:28:53.010000"],["2024-07-25T13:28:54.010000"],["2024-07-25T13:28:55.010000"],["2024-07-25T13:28:56.010000"],["2024-07-25T13:28:57.010000"],["2024-07-25T13:28:58.010000"],["2024-07-25T13:28:59.010000"],["2024-07-25T13:29:00.010000"],["2024-07-25T13:29:01.010000"],["2024-07-25T13:29:02.010000"],["2024-07-25T13:29:03.010000"],["2024-07-25T13:29:04.010000"],["2024-07-25T13:29:05.010000"],["2024-07-25T13:29:06.010000"],["2024-07-25T13:29:07.010000"],["2024-07-25T13:29:08.010000"],["2024-07-25T13:29:09.010000"],["2024-07-25T13:29:10.010000"],["2024-07-25T13:29:11.010000"],["2024-07-25T13:29:12.010000"],["2024-07-25T13:29:13.010000"],["2024-07-25T13:29:14.010000"],["2024-07-25T13:29:15.010000"],["2024-07-25T13:29:16.010000"],["2024-07-25T13:29:17.010000"],["2024-07-25T13:29:18.010000"],["2024-07-25T13:29:19.010000"],["2024-07-25T13:29:20.010000"],["2024-07-25T13:29:21.010000"],["2024-07-25T13:29:22.010000"],["2024-07-25T13:29:23.010000"],["2024-07-25T13:29:24.010000"],["2024-07-25T13:29:25.010000"],["2024-07-25T13:29:26.010000"],["2024-07-25T13:29:27.010000"],["2024-07-25T13:29:28.010000"],["2024-07-25T13:29:29.010000"],["2024-07-25T13:29:30.010000"],["2024-07-25T13:29:31.010000"],["2024-07-25T13:29:32.010000"],["2024-07-25T13:29:33.010000"],["2024-07-25T13:29:34.010000"],["2024-07-25T13:29:35.010000"],["2024-07-25T13:29:36.010000"],["2024-07-25T13:29:37.010000"],["2024-07-25T13:29:38.010000"],["2024-07-25T13:29:39.010000"],["2024-07-25T13:29:40.010000"],["2024-07-25T13:29:41.010000"],["2024-07-25T13:29:42.010000"],["2024-07-25T13:29:43.010000"],["2024-07-25T13:29:44.010000"],["2024-07-25T13:29:45.010000"],["2024-07-25T13:29:46.010000"],["2024-07-25T13:29:47.010000"],["2024-07-25T13:29:48.010000"],["2024-07-25T13:29:49.010000"],["2024-07-25T13:29:50.010000"],["2024-07-25T13:29:51.010000"],["2024-07-25T13:29:52.010000"],["2024-07-25T13:29:53.010000"],["2024-07-25T13:29:54.010000"],["2024-07-25T13:29:55.010000"],["2024-07-25T13:29:56.010000"],["2024-07-25T13:29:57.010000"],["2024-07-25T13:29:58.010000"],["2024-07-25T13:29:59.010000"],["2024-07-25T13:30:00.010000"],["2024-07-25T13:30:01.010000"],["2024-07-25T13:30:02.010000"],["2024-07-25T13:30:03.010000"],["2024-07-25T13:30:04.010000"],["2024-07-25T13:30:05.010000"],["2024-07-25T13:30:06.010000"],["2024-07-25T13:30:07.010000"],["2024-07-25T13:30:08.010000"],["2024-07-25T13:30:09.010000"],["2024-07-25T13:30:10.010000"],["2024-07-25T13:30:11.010000"],["2024-07-25T13:30:12.010000"],["2024-07-25T13:30:13.010000"],["2024-07-25T13:30:14.010000"],["2024-07-25T13:30:15.010000"],["2024-07-25T13:30:16.010000"],["2024-07-25T13:30:17.010000"],["2024-07-25T13:30:18.010000"],["2024-07-25T13:30:19.010000"],["2024-07-25T13:30:20.010000"],["2024-07-25T13:30:21.010000"],["2024-07-25T13:30:22.010000"],["2024-07-25T13:30:23.010000"],["2024-07-25T13:30:24.010000"],["2024-07-25T13:30:25.010000"],["2024-07-25T13:30:26.010000"],["2024-07-25T13:30:27.010000"],["2024-07-25T13:30:28.010000"],["2024-07-25T13:30:29.010000"],["2024-07-25T13:30:30.010000"],["2024-07-25T13:30:31.010000"],["2024-07-25T13:30:32.010000"],["2024-07-25T13:30:33.010000"],["2024-07-25T13:30:34.010000"],["2024-07-25T13:30:35.010000"],["2024-07-25T13:30:36.010000"],["2024-07-25T13:30:37.010000"],["2024-07-25T13:30:38.010000"],["2024-07-25T13:30:39.010000"],["2024-07-25T13:30:40.010000"],["2024-07-25T13:30:41.010000"],["2024-07-25T13:30:42.010000"],["2024-07-25T13:30:43.010000"],["2024-07-25T13:30:44.010000"],["2024-07-25T13:30:45.010000"],["2024-07-25T13:30:46.010000"],["2024-07-25T13:30:47.010000"],["2024-07-25T13:30:48.010000"],["2024-07-25T13:30:49.010000"],["2024-07-25T13:30:50.010000"],["2024-07-25T13:30:51.010000"],["2024-07-25T13:30:52.010000"],["2024-07-25T13:30:53.010000"],["2024-07-25T13:30:54.010000"],["2024-07-25T13:30:55.010000"],["2024-07-25T13:30:56.010000"],["2024-07-25T13:30:57.010000"],["2024-07-25T13:30:58.010000"],["2024-07-25T13:30:59.010000"],["2024-07-25T13:31:00.010000"],["2024-07-25T13:31:01.010000"],["2024-07-25T13:31:02.010000"],["2024-07-25T13:31:03.010000"],["2024-07-25T13:31:04.010000"],["2024-07-25T13:31:05.010000"],["2024-07-25T13:31:06.010000"],["2024-07-25T13:31:07.010000"],["2024-07-25T13:31:08.010000"],["2024-07-25T13:31:09.010000"],["2024-07-25T13:31:10.010000"],["2024-07-25T13:31:11.010000"],["2024-07-25T13:31:12.010000"],["2024-07-25T13:31:13.010000"],["2024-07-25T13:31:14.010000"],["2024-07-25T13:31:15.010000"],["2024-07-25T13:31:16.010000"],["2024-07-25T13:31:17.010000"],["2024-07-25T13:31:18.010000"],["2024-07-25T13:31:19.010000"],["2024-07-25T13:31:20.010000"],["2024-07-25T13:31:21.010000"],["2024-07-25T13:31:22.010000"],["2024-07-25T13:31:23.010000"],["2024-07-25T13:31:24.010000"],["2024-07-25T13:31:25.010000"],["2024-07-25T13:31:26.010000"],["2024-07-25T13:31:27.010000"],["2024-07-25T13:31:28.010000"],["2024-07-25T13:31:29.010000"],["2024-07-25T13:31:30.010000"],["2024-07-25T13:31:31.010000"],["2024-07-25T13:31:32.010000"],["2024-07-25T13:31:33.010000"],["2024-07-25T13:31:34.010000"],["2024-07-25T13:31:35.010000"],["2024-07-25T13:31:36.010000"],["2024-07-25T13:31:37.010000"],["2024-07-25T13:31:38.010000"],["2024-07-25T13:31:39.010000"],["2024-07-25T13:31:40.010000"],["2024-07-25T13:31:41.010000"],["2024-07-25T13:31:42.010000"],["2024-07-25T13:31:43.010000"],["2024-07-25T13:31:44.010000"],["2024-07-25T13:31:45.010000"],["2024-07-25T13:31:46.010000"],["2024-07-25T13:31:47.010000"],["2024-07-25T13:31:48.010000"],["2024-07-25T13:31:49.010000"],["2024-07-25T13:31:50.010000"],["2024-07-25T13:31:51.010000"],["2024-07-25T13:31:52.010000"],["2024-07-25T13:31:53.010000"],["2024-07-25T13:31:54.010000"],["2024-07-25T13:31:55.010000"],["2024-07-25T13:31:56.010000"],["2024-07-25T13:31:57.010000"],["2024-07-25T13:31:58.010000"],["2024-07-25T13:31:59.010000"],["2024-07-25T13:32:00.010000"],["2024-07-25T13:32:01.010000"],["2024-07-25T13:32:02.010000"],["2024-07-25T13:32:03.010000"],["2024-07-25T13:32:04.010000"],["2024-07-25T13:32:05.010000"],["2024-07-25T13:32:06.010000"],["2024-07-25T13:32:07.010000"],["2024-07-25T13:32:08.010000"],["2024-07-25T13:32:09.010000"],["2024-07-25T13:32:10.010000"],["2024-07-25T13:32:11.010000"],["2024-07-25T13:32:12.010000"],["2024-07-25T13:32:13.010000"],["2024-07-25T13:32:14.010000"],["2024-07-25T13:32:15.010000"],["2024-07-25T13:32:16.010000"],["2024-07-25T13:32:17.010000"],["2024-07-25T13:32:18.010000"],["2024-07-25T13:32:19.010000"],["2024-07-25T13:32:20.010000"],["2024-07-25T13:32:21.010000"],["2024-07-25T13:32:22.010000"],["2024-07-25T13:32:23.010000"],["2024-07-25T13:32:24.010000"],["2024-07-25T13:32:25.010000"],["2024-07-25T13:32:26.010000"],["2024-07-25T13:32:27.010000"],["2024-07-25T13:32:28.010000"],["2024-07-25T13:32:29.010000"],["2024-07-25T13:32:30.010000"],["2024-07-25T13:32:31.010000"],["2024-07-25T13:32:32.010000"],["2024-07-25T13:32:33.010000"],["2024-07-25T13:32:34.010000"],["2024-07-25T13:32:35.010000"],["2024-07-25T13:32:36.010000"],["2024-07-25T13:32:37.010000"],["2024-07-25T13:32:38.010000"],["2024-07-25T13:32:39.010000"],["2024-07-25T13:32:40.010000"],["2024-07-25T13:32:41.010000"],["2024-07-25T13:32:42.010000"],["2024-07-25T13:32:43.010000"],["2024-07-25T13:32:44.010000"],["2024-07-25T13:32:45.010000"],["2024-07-25T13:32:46.010000"],["2024-07-25T13:32:47.010000"],["2024-07-25T13:32:48.010000"],["2024-07-25T13:32:49.010000"],["2024-07-25T13:32:50.010000"],["2024-07-25T13:32:51.010000"],["2024-07-25T13:32:52.010000"],["2024-07-25T13:32:53.010000"],["2024-07-25T13:32:54.010000"],["2024-07-25T13:32:55.010000"],["2024-07-25T13:32:56.010000"],["2024-07-25T13:32:57.010000"],["2024-07-25T13:32:58.010000"],["2024-07-25T13:32:59.010000"],["2024-07-25T13:33:00.010000"],["2024-07-25T13:33:01.010000"],["2024-07-25T13:33:02.010000"],["2024-07-25T13:33:03.010000"],["2024-07-25T13:33:04.010000"],["2024-07-25T13:33:05.010000"],["2024-07-25T13:33:06.010000"],["2024-07-25T13:33:07.010000"],["2024-07-25T13:33:08.010000"],["2024-07-25T13:33:09.010000"],["2024-07-25T13:33:10.010000"],["2024-07-25T13:33:11.010000"],["2024-07-25T13:33:12.010000"],["2024-07-25T13:33:13.010000"],["2024-07-25T13:33:14.010000"],["2024-07-25T13:33:15.010000"],["2024-07-25T13:33:16.010000"],["2024-07-25T13:33:17.010000"],["2024-07-25T13:33:18.010000"],["2024-07-25T13:33:19.010000"],["2024-07-25T13:33:20.010000"],["2024-07-25T13:33:21.010000"],["2024-07-25T13:33:22.010000"],["2024-07-25T13:33:23.010000"],["2024-07-25T13:33:24.010000"],["2024-07-25T13:33:25.010000"],["2024-07-25T13:33:26.010000"],["2024-07-25T13:33:27.010000"],["2024-07-25T13:33:28.010000"],["2024-07-25T13:33:29.010000"],["2024-07-25T13:33:30.010000"],["2024-07-25T13:33:31.010000"],["2024-07-25T13:33:32.010000"],["2024-07-25T13:33:33.010000"],["2024-07-25T13:33:34.010000"],["2024-07-25T13:33:35.010000"],["2024-07-25T13:33:36.010000"],["2024-07-25T13:33:37.010000"],["2024-07-25T13:33:38.010000"],["2024-07-25T13:33:39.010000"],["2024-07-25T13:33:40.010000"],["2024-07-25T13:33:41.010000"],["2024-07-25T13:33:42.010000"],["2024-07-25T13:33:43.010000"],["2024-07-25T13:33:44.010000"],["2024-07-25T13:33:45.010000"],["2024-07-25T13:33:46.010000"],["2024-07-25T13:33:47.010000"],["2024-07-25T13:33:48.010000"],["2024-07-25T13:33:49.010000"],["2024-07-25T13:33:50.010000"],["2024-07-25T13:33:51.010000"],["2024-07-25T13:33:52.010000"],["2024-07-25T13:33:53.010000"],["2024-07-25T13:33:54.010000"],["2024-07-25T13:33:55.010000"],["2024-07-25T13:33:56.010000"],["2024-07-25T13:33:57.010000"],["2024-07-25T13:33:58.010000"],["2024-07-25T13:33:59.010000"],["2024-07-25T13:34:00.010000"],["2024-07-25T13:34:01.010000"],["2024-07-25T13:34:02.010000"],["2024-07-25T13:34:03.010000"],["2024-07-25T13:34:04.010000"],["2024-07-25T13:34:05.010000"],["2024-07-25T13:34:06.010000"],["2024-07-25T13:34:07.010000"],["2024-07-25T13:34:08.010000"],["2024-07-25T13:34:09.010000"],["2024-07-25T13:34:10.010000"],["2024-07-25T13:34:11.010000"],["2024-07-25T13:34:12.010000"],["2024-07-25T13:34:13.010000"],["2024-07-25T13:34:14.010000"],["2024-07-25T13:34:15.010000"],["2024-07-25T13:34:16.010000"],["2024-07-25T13:34:17.010000"],["2024-07-25T13:34:18.010000"],["2024-07-25T13:34:19.010000"],["2024-07-25T13:34:20.010000"],["2024-07-25T13:34:21.010000"],["2024-07-25T13:34:22.010000"],["2024-07-25T13:34:23.010000"],["2024-07-25T13:34:24.010000"],["2024-07-25T13:34:25.010000"],["2024-07-25T13:34:26.010000"],["2024-07-25T13:34:27.010000"],["2024-07-25T13:34:28.010000"],["2024-07-25T13:34:29.010000"],["2024-07-25T13:34:30.010000"],["2024-07-25T13:34:31.010000"],["2024-07-25T13:34:32.010000"],["2024-07-25T13:34:33.010000"],["2024-07-25T13:34:34.010000"],["2024-07-25T13:34:35.010000"],["2024-07-25T13:34:36.010000"],["2024-07-25T13:34:37.010000"],["2024-07-25T13:34:38.010000"],["2024-07-25T13:34:39.010000"],["2024-07-25T13:34:40.010000"],["2024-07-25T13:34:41.010000"],["2024-07-25T13:34:42.010000"],["2024-07-25T13:34:43.010000"],["2024-07-25T13:34:44.010000"],["2024-07-25T13:34:45.010000"],["2024-07-25T13:34:46.010000"],["2024-07-25T13:34:47.010000"],["2024-07-25T13:34:48.010000"],["2024-07-25T13:34:49.010000"],["2024-07-25T13:34:50.010000"],["2024-07-25T13:34:51.010000"],["2024-07-25T13:34:52.010000"],["2024-07-25T13:34:53.010000"],["2024-07-25T13:34:54.010000"],["2024-07-25T13:34:55.010000"],["2024-07-25T13:34:56.010000"],["2024-07-25T13:34:57.010000"],["2024-07-25T13:34:58.010000"],["2024-07-25T13:34:59.010000"],["2024-07-25T13:35:00.010000"],["2024-07-25T13:35:01.010000"],["2024-07-25T13:35:02.010000"],["2024-07-25T13:35:03.010000"],["2024-07-25T13:35:04.010000"],["2024-07-25T13:35:05.010000"],["2024-07-25T13:35:06.010000"],["2024-07-25T13:35:07.010000"],["2024-07-25T13:35:08.010000"],["2024-07-25T13:35:09.010000"],["2024-07-25T13:35:10.010000"],["2024-07-25T13:35:11.010000"],["2024-07-25T13:35:12.010000"],["2024-07-25T13:35:13.010000"],["2024-07-25T13:35:14.010000"],["2024-07-25T13:35:15.010000"],["2024-07-25T13:35:16.010000"],["2024-07-25T13:35:17.010000"],["2024-07-25T13:35:18.010000"],["2024-07-25T13:35:19.010000"],["2024-07-25T13:35:20.010000"],["2024-07-25T13:35:21.010000"],["2024-07-25T13:35:22.010000"],["2024-07-25T13:35:23.010000"],["2024-07-25T13:35:24.010000"],["2024-07-25T13:35:25.010000"],["2024-07-25T13:35:26.010000"],["2024-07-25T13:35:27.010000"],["2024-07-25T13:35:28.010000"],["2024-07-25T13:35:29.010000"],["2024-07-25T13:35:30.010000"],["2024-07-25T13:35:31.010000"],["2024-07-25T13:35:32.010000"],["2024-07-25T13:35:33.010000"],["2024-07-25T13:35:34.010000"],["2024-07-25T13:35:35.010000"],["2024-07-25T13:35:36.010000"],["2024-07-25T13:35:37.010000"],["2024-07-25T13:35:38.010000"],["2024-07-25T13:35:39.010000"],["2024-07-25T13:35:40.010000"],["2024-07-25T13:35:41.010000"],["2024-07-25T13:35:42.010000"],["2024-07-25T13:35:43.010000"],["2024-07-25T13:35:44.010000"],["2024-07-25T13:35:45.010000"],["2024-07-25T13:35:46.010000"],["2024-07-25T13:35:47.010000"],["2024-07-25T13:35:48.010000"],["2024-07-25T13:35:49.010000"],["2024-07-25T13:35:50.010000"],["2024-07-25T13:35:51.010000"],["2024-07-25T13:35:52.010000"],["2024-07-25T13:35:53.010000"],["2024-07-25T13:35:54.010000"],["2024-07-25T13:35:55.010000"],["2024-07-25T13:35:56.010000"],["2024-07-25T13:35:57.010000"],["2024-07-25T13:35:58.010000"],["2024-07-25T13:35:59.010000"],["2024-07-25T13:36:00.010000"],["2024-07-25T13:36:01.010000"],["2024-07-25T13:36:02.010000"],["2024-07-25T13:36:03.010000"],["2024-07-25T13:36:04.010000"],["2024-07-25T13:36:05.010000"],["2024-07-25T13:36:06.010000"],["2024-07-25T13:36:07.010000"],["2024-07-25T13:36:08.010000"],["2024-07-25T13:36:09.010000"],["2024-07-25T13:36:10.010000"],["2024-07-25T13:36:11.010000"],["2024-07-25T13:36:12.010000"],["2024-07-25T13:36:13.010000"],["2024-07-25T13:36:14.010000"],["2024-07-25T13:36:15.010000"],["2024-07-25T13:36:16.010000"],["2024-07-25T13:36:17.010000"],["2024-07-25T13:36:18.010000"],["2024-07-25T13:36:19.010000"],["2024-07-25T13:36:20.010000"],["2024-07-25T13:36:21.010000"],["2024-07-25T13:36:22.010000"],["2024-07-25T13:36:23.010000"],["2024-07-25T13:36:24.010000"],["2024-07-25T13:36:25.010000"],["2024-07-25T13:36:26.010000"],["2024-07-25T13:36:27.010000"],["2024-07-25T13:36:28.010000"],["2024-07-25T13:36:29.010000"],["2024-07-25T13:36:30.010000"],["2024-07-25T13:36:31.010000"],["2024-07-25T13:36:32.010000"],["2024-07-25T13:36:33.010000"],["2024-07-25T13:36:34.010000"],["2024-07-25T13:36:35.010000"],["2024-07-25T13:36:36.010000"],["2024-07-25T13:36:37.010000"],["2024-07-25T13:36:38.010000"],["2024-07-25T13:36:39.010000"],["2024-07-25T13:36:40.010000"],["2024-07-25T13:36:41.010000"],["2024-07-25T13:36:42.010000"],["2024-07-25T13:36:43.010000"],["2024-07-25T13:36:44.010000"],["2024-07-25T13:36:45.010000"],["2024-07-25T13:36:46.010000"],["2024-07-25T13:36:47.010000"],["2024-07-25T13:36:48.010000"],["2024-07-25T13:36:49.010000"],["2024-07-25T13:36:50.010000"],["2024-07-25T13:36:51.010000"],["2024-07-25T13:36:52.010000"],["2024-07-25T13:36:53.010000"],["2024-07-25T13:36:54.010000"],["2024-07-25T13:36:55.010000"],["2024-07-25T13:36:56.010000"],["2024-07-25T13:36:57.010000"],["2024-07-25T13:36:58.010000"],["2024-07-25T13:36:59.010000"],["2024-07-25T13:37:00.010000"],["2024-07-25T13:37:01.010000"],["2024-07-25T13:37:02.010000"],["2024-07-25T13:37:03.010000"],["2024-07-25T13:37:04.010000"],["2024-07-25T13:37:05.010000"],["2024-07-25T13:37:06.010000"],["2024-07-25T13:37:07.010000"],["2024-07-25T13:37:08.010000"],["2024-07-25T13:37:09.010000"],["2024-07-25T13:37:10.010000"],["2024-07-25T13:37:11.010000"],["2024-07-25T13:37:12.010000"],["2024-07-25T13:37:13.010000"],["2024-07-25T13:37:14.010000"],["2024-07-25T13:37:15.010000"],["2024-07-25T13:37:16.010000"],["2024-07-25T13:37:17.010000"],["2024-07-25T13:37:18.010000"],["2024-07-25T13:37:19.010000"],["2024-07-25T13:37:20.010000"],["2024-07-25T13:37:21.010000"],["2024-07-25T13:37:22.010000"],["2024-07-25T13:37:23.010000"],["2024-07-25T13:37:24.010000"],["2024-07-25T13:37:25.010000"],["2024-07-25T13:37:26.010000"],["2024-07-25T13:37:27.010000"],["2024-07-25T13:37:28.010000"],["2024-07-25T13:37:29.010000"],["2024-07-25T13:37:30.010000"],["2024-07-25T13:37:31.010000"],["2024-07-25T13:37:32.010000"],["2024-07-25T13:37:33.010000"],["2024-07-25T13:37:34.010000"],["2024-07-25T13:37:35.010000"],["2024-07-25T13:37:36.010000"],["2024-07-25T13:37:37.010000"],["2024-07-25T13:37:38.010000"],["2024-07-25T13:37:39.010000"],["2024-07-25T13:37:40.010000"],["2024-07-25T13:37:41.010000"],["2024-07-25T13:37:42.010000"],["2024-07-25T13:37:43.010000"],["2024-07-25T13:37:44.010000"],["2024-07-25T13:37:45.010000"],["2024-07-25T13:37:46.010000"],["2024-07-25T13:37:47.010000"],["2024-07-25T13:37:48.010000"],["2024-07-25T13:37:49.010000"],["2024-07-25T13:37:50.010000"],["2024-07-25T13:37:51.010000"],["2024-07-25T13:37:52.010000"],["2024-07-25T13:37:53.010000"],["2024-07-25T13:37:54.010000"],["2024-07-25T13:37:55.010000"],["2024-07-25T13:37:56.010000"],["2024-07-25T13:37:57.010000"],["2024-07-25T13:37:58.010000"],["2024-07-25T13:37:59.010000"],["2024-07-25T13:38:00.010000"],["2024-07-25T13:38:01.010000"],["2024-07-25T13:38:02.010000"],["2024-07-25T13:38:03.010000"],["2024-07-25T13:38:04.010000"],["2024-07-25T13:38:05.010000"],["2024-07-25T13:38:06.010000"],["2024-07-25T13:38:07.010000"],["2024-07-25T13:38:08.010000"],["2024-07-25T13:38:09.010000"],["2024-07-25T13:38:10.010000"],["2024-07-25T13:38:11.010000"],["2024-07-25T13:38:12.010000"],["2024-07-25T13:38:13.010000"],["2024-07-25T13:38:14.010000"],["2024-07-25T13:38:15.010000"],["2024-07-25T13:38:16.010000"],["2024-07-25T13:38:17.010000"],["2024-07-25T13:38:18.010000"],["2024-07-25T13:38:19.010000"],["2024-07-25T13:38:20.010000"],["2024-07-25T13:38:21.010000"],["2024-07-25T13:38:22.010000"],["2024-07-25T13:38:23.010000"],["2024-07-25T13:38:24.010000"],["2024-07-25T13:38:25.010000"],["2024-07-25T13:38:26.010000"],["2024-07-25T13:38:27.010000"],["2024-07-25T13:38:28.010000"],["2024-07-25T13:38:29.010000"],["2024-07-25T13:38:30.010000"],["2024-07-25T13:38:31.010000"],["2024-07-25T13:38:32.010000"],["2024-07-25T13:38:33.010000"],["2024-07-25T13:38:34.010000"],["2024-07-25T13:38:35.010000"],["2024-07-25T13:38:36.010000"],["2024-07-25T13:38:37.010000"],["2024-07-25T13:38:38.010000"],["2024-07-25T13:38:39.010000"],["2024-07-25T13:38:40.010000"],["2024-07-25T13:38:41.010000"],["2024-07-25T13:38:42.010000"],["2024-07-25T13:38:43.010000"],["2024-07-25T13:38:44.010000"],["2024-07-25T13:38:45.010000"],["2024-07-25T13:38:46.010000"],["2024-07-25T13:38:47.010000"],["2024-07-25T13:38:48.010000"],["2024-07-25T13:38:49.010000"],["2024-07-25T13:38:50.010000"],["2024-07-25T13:38:51.010000"],["2024-07-25T13:38:52.010000"],["2024-07-25T13:38:53.010000"],["2024-07-25T13:38:54.010000"],["2024-07-25T13:38:55.010000"],["2024-07-25T13:38:56.010000"],["2024-07-25T13:38:57.010000"],["2024-07-25T13:38:58.010000"],["2024-07-25T13:38:59.010000"],["2024-07-25T13:39:00.010000"],["2024-07-25T13:39:01.010000"],["2024-07-25T13:39:02.010000"],["2024-07-25T13:39:03.010000"],["2024-07-25T13:39:04.010000"],["2024-07-25T13:39:05.010000"],["2024-07-25T13:39:06.010000"],["2024-07-25T13:39:07.010000"],["2024-07-25T13:39:08.010000"],["2024-07-25T13:39:09.010000"],["2024-07-25T13:39:10.010000"],["2024-07-25T13:39:11.010000"],["2024-07-25T13:39:12.010000"],["2024-07-25T13:39:13.010000"],["2024-07-25T13:39:14.010000"],["2024-07-25T13:39:15.010000"],["2024-07-25T13:39:16.010000"],["2024-07-25T13:39:17.010000"],["2024-07-25T13:39:18.010000"],["2024-07-25T13:39:19.010000"],["2024-07-25T13:39:20.010000"],["2024-07-25T13:39:21.010000"],["2024-07-25T13:39:22.010000"],["2024-07-25T13:39:23.010000"],["2024-07-25T13:39:24.010000"],["2024-07-25T13:39:25.010000"],["2024-07-25T13:39:26.010000"],["2024-07-25T13:39:27.010000"],["2024-07-25T13:39:28.010000"],["2024-07-25T13:39:29.010000"],["2024-07-25T13:39:30.010000"],["2024-07-25T13:39:31.010000"],["2024-07-25T13:39:32.010000"],["2024-07-25T13:39:33.010000"],["2024-07-25T13:39:34.010000"],["2024-07-25T13:39:35.010000"],["2024-07-25T13:39:36.010000"],["2024-07-25T13:39:37.010000"],["2024-07-25T13:39:38.010000"],["2024-07-25T13:39:39.010000"],["2024-07-25T13:39:40.010000"],["2024-07-25T13:39:41.010000"],["2024-07-25T13:39:42.010000"],["2024-07-25T13:39:43.010000"],["2024-07-25T13:39:44.010000"],["2024-07-25T13:39:45.010000"],["2024-07-25T13:39:46.010000"],["2024-07-25T13:39:47.010000"],["2024-07-25T13:39:48.010000"],["2024-07-25T13:39:49.010000"],["2024-07-25T13:39:50.010000"],["2024-07-25T13:39:51.010000"],["2024-07-25T13:39:52.010000"],["2024-07-25T13:39:53.010000"],["2024-07-25T13:39:54.010000"],["2024-07-25T13:39:55.010000"],["2024-07-25T13:39:56.010000"],["2024-07-25T13:39:57.010000"],["2024-07-25T13:39:58.010000"],["2024-07-25T13:39:59.010000"],["2024-07-25T13:40:00.010000"],["2024-07-25T13:40:01.010000"],["2024-07-25T13:40:02.010000"],["2024-07-25T13:40:03.010000"],["2024-07-25T13:40:04.010000"],["2024-07-25T13:40:05.010000"],["2024-07-25T13:40:06.010000"],["2024-07-25T13:40:07.010000"],["2024-07-25T13:40:08.010000"],["2024-07-25T13:40:09.010000"],["2024-07-25T13:40:10.010000"],["2024-07-25T13:40:11.010000"],["2024-07-25T13:40:12.010000"],["2024-07-25T13:40:13.010000"],["2024-07-25T13:40:14.010000"],["2024-07-25T13:40:15.010000"],["2024-07-25T13:40:16.010000"],["2024-07-25T13:40:17.010000"],["2024-07-25T13:40:18.010000"],["2024-07-25T13:40:19.010000"],["2024-07-25T13:40:20.010000"],["2024-07-25T13:40:21.010000"],["2024-07-25T13:40:22.010000"],["2024-07-25T13:40:23.010000"],["2024-07-25T13:40:24.010000"],["2024-07-25T13:40:25.010000"],["2024-07-25T13:40:26.010000"],["2024-07-25T13:40:27.010000"],["2024-07-25T13:40:28.010000"],["2024-07-25T13:40:29.010000"],["2024-07-25T13:40:30.010000"],["2024-07-25T13:40:31.010000"],["2024-07-25T13:40:32.010000"],["2024-07-25T13:40:33.010000"],["2024-07-25T13:40:34.010000"],["2024-07-25T13:40:35.010000"],["2024-07-25T13:40:36.010000"],["2024-07-25T13:40:37.010000"],["2024-07-25T13:40:38.010000"],["2024-07-25T13:40:39.010000"],["2024-07-25T13:40:40.010000"],["2024-07-25T13:40:41.010000"],["2024-07-25T13:40:42.010000"],["2024-07-25T13:40:43.010000"],["2024-07-25T13:40:44.010000"],["2024-07-25T13:40:45.010000"],["2024-07-25T13:40:46.010000"],["2024-07-25T13:40:47.010000"],["2024-07-25T13:40:48.010000"],["2024-07-25T13:40:49.010000"],["2024-07-25T13:40:50.010000"],["2024-07-25T13:40:51.010000"],["2024-07-25T13:40:52.010000"],["2024-07-25T13:40:53.010000"],["2024-07-25T13:40:54.010000"],["2024-07-25T13:40:55.010000"],["2024-07-25T13:40:56.010000"],["2024-07-25T13:40:57.010000"],["2024-07-25T13:40:58.010000"],["2024-07-25T13:40:59.010000"],["2024-07-25T13:41:00.010000"],["2024-07-25T13:41:01.010000"],["2024-07-25T13:41:02.010000"],["2024-07-25T13:41:03.010000"],["2024-07-25T13:41:04.010000"],["2024-07-25T13:41:05.010000"],["2024-07-25T13:41:06.010000"],["2024-07-25T13:41:07.010000"],["2024-07-25T13:41:08.010000"],["2024-07-25T13:41:09.010000"],["2024-07-25T13:41:10.010000"],["2024-07-25T13:41:11.010000"],["2024-07-25T13:41:12.010000"],["2024-07-25T13:41:13.010000"],["2024-07-25T13:41:14.010000"],["2024-07-25T13:41:15.010000"],["2024-07-25T13:41:16.010000"],["2024-07-25T13:41:17.010000"],["2024-07-25T13:41:18.010000"],["2024-07-25T13:41:19.010000"],["2024-07-25T13:41:20.010000"],["2024-07-25T13:41:21.010000"],["2024-07-25T13:41:22.010000"],["2024-07-25T13:41:23.010000"],["2024-07-25T13:41:24.010000"],["2024-07-25T13:41:25.010000"],["2024-07-25T13:41:26.010000"],["2024-07-25T13:41:27.010000"],["2024-07-25T13:41:28.010000"],["2024-07-25T13:41:29.010000"],["2024-07-25T13:41:30.010000"],["2024-07-25T13:41:31.010000"],["2024-07-25T13:41:32.010000"],["2024-07-25T13:41:33.010000"],["2024-07-25T13:41:34.010000"],["2024-07-25T13:41:35.010000"],["2024-07-25T13:41:36.010000"],["2024-07-25T13:41:37.010000"],["2024-07-25T13:41:38.010000"],["2024-07-25T13:41:39.010000"],["2024-07-25T13:41:40.010000"],["2024-07-25T13:41:41.010000"],["2024-07-25T13:41:42.010000"],["2024-07-25T13:41:43.010000"],["2024-07-25T13:41:44.010000"],["2024-07-25T13:41:45.010000"],["2024-07-25T13:41:46.010000"],["2024-07-25T13:41:47.010000"],["2024-07-25T13:41:48.010000"],["2024-07-25T13:41:49.010000"],["2024-07-25T13:41:50.010000"],["2024-07-25T13:41:51.010000"],["2024-07-25T13:41:52.010000"],["2024-07-25T13:41:53.010000"],["2024-07-25T13:41:54.010000"],["2024-07-25T13:41:55.010000"],["2024-07-25T13:41:56.010000"],["2024-07-25T13:41:57.010000"],["2024-07-25T13:41:58.010000"],["2024-07-25T13:41:59.010000"],["2024-07-25T13:42:00.010000"],["2024-07-25T13:42:01.010000"],["2024-07-25T13:42:02.010000"],["2024-07-25T13:42:03.010000"],["2024-07-25T13:42:04.010000"],["2024-07-25T13:42:05.010000"],["2024-07-25T13:42:06.010000"],["2024-07-25T13:42:07.010000"],["2024-07-25T13:42:08.010000"],["2024-07-25T13:42:09.010000"],["2024-07-25T13:42:10.010000"],["2024-07-25T13:42:11.010000"],["2024-07-25T13:42:12.010000"],["2024-07-25T13:42:13.010000"],["2024-07-25T13:42:14.010000"],["2024-07-25T13:42:15.010000"],["2024-07-25T13:42:16.010000"],["2024-07-25T13:42:17.010000"],["2024-07-25T13:42:18.010000"],["2024-07-25T13:42:19.010000"],["2024-07-25T13:42:20.010000"],["2024-07-25T13:42:21.010000"],["2024-07-25T13:42:22.010000"],["2024-07-25T13:42:23.010000"],["2024-07-25T13:42:24.010000"],["2024-07-25T13:42:25.010000"],["2024-07-25T13:42:26.010000"],["2024-07-25T13:42:27.010000"],["2024-07-25T13:42:28.010000"],["2024-07-25T13:42:29.010000"],["2024-07-25T13:42:30.010000"],["2024-07-25T13:42:31.010000"],["2024-07-25T13:42:32.010000"],["2024-07-25T13:42:33.010000"],["2024-07-25T13:42:34.010000"],["2024-07-25T13:42:35.010000"],["2024-07-25T13:42:36.010000"],["2024-07-25T13:42:37.010000"],["2024-07-25T13:42:38.010000"],["2024-07-25T13:42:39.010000"],["2024-07-25T13:42:40.010000"],["2024-07-25T13:42:41.010000"],["2024-07-25T13:42:42.010000"],["2024-07-25T13:42:43.010000"],["2024-07-25T13:42:44.010000"],["2024-07-25T13:42:45.010000"],["2024-07-25T13:42:46.010000"],["2024-07-25T13:42:47.010000"],["2024-07-25T13:42:48.010000"],["2024-07-25T13:42:49.010000"],["2024-07-25T13:42:50.010000"],["2024-07-25T13:42:51.010000"],["2024-07-25T13:42:52.010000"],["2024-07-25T13:42:53.010000"],["2024-07-25T13:42:54.010000"],["2024-07-25T13:42:55.010000"],["2024-07-25T13:42:56.010000"],["2024-07-25T13:42:57.010000"],["2024-07-25T13:42:58.010000"],["2024-07-25T13:42:59.010000"],["2024-07-25T13:43:00.010000"],["2024-07-25T13:43:01.010000"],["2024-07-25T13:43:02.010000"],["2024-07-25T13:43:03.010000"],["2024-07-25T13:43:04.010000"],["2024-07-25T13:43:05.010000"],["2024-07-25T13:43:06.010000"],["2024-07-25T13:43:07.010000"],["2024-07-25T13:43:08.010000"],["2024-07-25T13:43:09.010000"],["2024-07-25T13:43:10.010000"],["2024-07-25T13:43:11.010000"],["2024-07-25T13:43:12.010000"],["2024-07-25T13:43:13.010000"],["2024-07-25T13:43:14.010000"],["2024-07-25T13:43:15.010000"],["2024-07-25T13:43:16.010000"],["2024-07-25T13:43:17.010000"],["2024-07-25T13:43:18.010000"],["2024-07-25T13:43:19.010000"],["2024-07-25T13:43:20.010000"],["2024-07-25T13:43:21.010000"],["2024-07-25T13:43:22.010000"],["2024-07-25T13:43:23.010000"],["2024-07-25T13:43:24.010000"],["2024-07-25T13:43:25.010000"],["2024-07-25T13:43:26.010000"],["2024-07-25T13:43:27.010000"],["2024-07-25T13:43:28.010000"],["2024-07-25T13:43:29.010000"],["2024-07-25T13:43:30.010000"],["2024-07-25T13:43:31.010000"],["2024-07-25T13:43:32.010000"],["2024-07-25T13:43:33.010000"],["2024-07-25T13:43:34.010000"],["2024-07-25T13:43:35.010000"],["2024-07-25T13:43:36.010000"],["2024-07-25T13:43:37.010000"],["2024-07-25T13:43:38.010000"],["2024-07-25T13:43:39.010000"],["2024-07-25T13:43:40.010000"],["2024-07-25T13:43:41.010000"],["2024-07-25T13:43:42.010000"],["2024-07-25T13:43:43.010000"],["2024-07-25T13:43:44.010000"],["2024-07-25T13:43:45.010000"],["2024-07-25T13:43:46.010000"],["2024-07-25T13:43:47.010000"],["2024-07-25T13:43:48.010000"],["2024-07-25T13:43:49.010000"],["2024-07-25T13:43:50.010000"],["2024-07-25T13:43:51.010000"],["2024-07-25T13:43:52.010000"],["2024-07-25T13:43:53.010000"],["2024-07-25T13:43:54.010000"],["2024-07-25T13:43:55.010000"],["2024-07-25T13:43:56.010000"],["2024-07-25T13:43:57.010000"],["2024-07-25T13:43:58.010000"],["2024-07-25T13:43:59.010000"],["2024-07-25T13:44:00.010000"],["2024-07-25T13:44:01.010000"],["2024-07-25T13:44:02.010000"],["2024-07-25T13:44:03.010000"],["2024-07-25T13:44:04.010000"],["2024-07-25T13:44:05.010000"],["2024-07-25T13:44:06.010000"],["2024-07-25T13:44:07.010000"],["2024-07-25T13:44:08.010000"],["2024-07-25T13:44:09.010000"],["2024-07-25T13:44:10.010000"],["2024-07-25T13:44:11.010000"],["2024-07-25T13:44:12.010000"],["2024-07-25T13:44:13.010000"],["2024-07-25T13:44:14.010000"],["2024-07-25T13:44:15.010000"],["2024-07-25T13:44:16.010000"],["2024-07-25T13:44:17.010000"],["2024-07-25T13:44:18.010000"],["2024-07-25T13:44:19.010000"],["2024-07-25T13:44:20.010000"],["2024-07-25T13:44:21.010000"],["2024-07-25T13:44:22.010000"],["2024-07-25T13:44:23.010000"],["2024-07-25T13:44:24.010000"],["2024-07-25T13:44:25.010000"],["2024-07-25T13:44:26.010000"],["2024-07-25T13:44:27.010000"],["2024-07-25T13:44:28.010000"],["2024-07-25T13:44:29.010000"],["2024-07-25T13:44:30.010000"],["2024-07-25T13:44:31.010000"],["2024-07-25T13:44:32.010000"],["2024-07-25T13:44:33.010000"],["2024-07-25T13:44:34.010000"],["2024-07-25T13:44:35.010000"],["2024-07-25T13:44:36.010000"],["2024-07-25T13:44:37.010000"],["2024-07-25T13:44:38.010000"],["2024-07-25T13:44:39.010000"],["2024-07-25T13:44:40.010000"],["2024-07-25T13:44:41.010000"],["2024-07-25T13:44:42.010000"],["2024-07-25T13:44:43.010000"],["2024-07-25T13:44:44.010000"],["2024-07-25T13:44:45.010000"],["2024-07-25T13:44:46.010000"],["2024-07-25T13:44:47.010000"],["2024-07-25T13:44:48.010000"],["2024-07-25T13:44:49.010000"],["2024-07-25T13:44:50.010000"],["2024-07-25T13:44:51.010000"],["2024-07-25T13:44:52.010000"],["2024-07-25T13:44:53.010000"],["2024-07-25T13:44:54.010000"],["2024-07-25T13:44:55.010000"],["2024-07-25T13:44:56.010000"],["2024-07-25T13:44:57.010000"],["2024-07-25T13:44:58.010000"],["2024-07-25T13:44:59.010000"],["2024-07-25T13:45:00.010000"],["2024-07-25T13:45:01.010000"],["2024-07-25T13:45:02.010000"],["2024-07-25T13:45:03.010000"],["2024-07-25T13:45:04.010000"],["2024-07-25T13:45:05.010000"],["2024-07-25T13:45:06.010000"],["2024-07-25T13:45:07.010000"],["2024-07-25T13:45:08.010000"],["2024-07-25T13:45:09.010000"],["2024-07-25T13:45:10.010000"],["2024-07-25T13:45:11.010000"],["2024-07-25T13:45:12.010000"],["2024-07-25T13:45:13.010000"],["2024-07-25T13:45:14.010000"],["2024-07-25T13:45:15.010000"],["2024-07-25T13:45:16.010000"],["2024-07-25T13:45:17.010000"],["2024-07-25T13:45:18.010000"],["2024-07-25T13:45:19.010000"],["2024-07-25T13:45:20.010000"],["2024-07-25T13:45:21.010000"],["2024-07-25T13:45:22.010000"],["2024-07-25T13:45:23.010000"],["2024-07-25T13:45:24.010000"],["2024-07-25T13:45:25.010000"],["2024-07-25T13:45:26.010000"],["2024-07-25T13:45:27.010000"],["2024-07-25T13:45:28.010000"],["2024-07-25T13:45:29.010000"],["2024-07-25T13:45:30.010000"],["2024-07-25T13:45:31.010000"],["2024-07-25T13:45:32.010000"],["2024-07-25T13:45:33.010000"],["2024-07-25T13:45:34.010000"],["2024-07-25T13:45:35.010000"],["2024-07-25T13:45:36.010000"],["2024-07-25T13:45:37.010000"],["2024-07-25T13:45:38.010000"],["2024-07-25T13:45:39.010000"],["2024-07-25T13:45:40.010000"],["2024-07-25T13:45:41.010000"],["2024-07-25T13:45:42.010000"],["2024-07-25T13:45:43.010000"],["2024-07-25T13:45:44.010000"],["2024-07-25T13:45:45.010000"],["2024-07-25T13:45:46.010000"],["2024-07-25T13:45:47.010000"],["2024-07-25T13:45:48.010000"],["2024-07-25T13:45:49.010000"],["2024-07-25T13:45:50.010000"],["2024-07-25T13:45:51.010000"],["2024-07-25T13:45:52.010000"],["2024-07-25T13:45:53.010000"],["2024-07-25T13:45:54.010000"],["2024-07-25T13:45:55.010000"],["2024-07-25T13:45:56.010000"],["2024-07-25T13:45:57.010000"],["2024-07-25T13:45:58.010000"],["2024-07-25T13:45:59.010000"],["2024-07-25T13:46:00.010000"],["2024-07-25T13:46:01.010000"],["2024-07-25T13:46:02.010000"],["2024-07-25T13:46:03.010000"],["2024-07-25T13:46:04.010000"],["2024-07-25T13:46:05.010000"],["2024-07-25T13:46:06.010000"],["2024-07-25T13:46:07.010000"],["2024-07-25T13:46:08.010000"],["2024-07-25T13:46:09.010000"],["2024-07-25T13:46:10.010000"],["2024-07-25T13:46:11.010000"],["2024-07-25T13:46:12.010000"],["2024-07-25T13:46:13.010000"],["2024-07-25T13:46:14.010000"],["2024-07-25T13:46:15.010000"],["2024-07-25T13:46:16.010000"],["2024-07-25T13:46:17.010000"],["2024-07-25T13:46:18.010000"],["2024-07-25T13:46:19.010000"],["2024-07-25T13:46:20.010000"],["2024-07-25T13:46:21.010000"],["2024-07-25T13:46:22.010000"],["2024-07-25T13:46:23.010000"],["2024-07-25T13:46:24.010000"],["2024-07-25T13:46:25.010000"],["2024-07-25T13:46:26.010000"],["2024-07-25T13:46:27.010000"],["2024-07-25T13:46:28.010000"],["2024-07-25T13:46:29.010000"],["2024-07-25T13:46:30.010000"],["2024-07-25T13:46:31.010000"],["2024-07-25T13:46:32.010000"],["2024-07-25T13:46:33.010000"],["2024-07-25T13:46:34.010000"],["2024-07-25T13:46:35.010000"],["2024-07-25T13:46:36.010000"],["2024-07-25T13:46:37.010000"],["2024-07-25T13:46:38.010000"],["2024-07-25T13:46:39.010000"],["2024-07-25T13:46:40.010000"],["2024-07-25T13:46:41.010000"],["2024-07-25T13:46:42.010000"],["2024-07-25T13:46:43.010000"],["2024-07-25T13:46:44.010000"],["2024-07-25T13:46:45.010000"],["2024-07-25T13:46:46.010000"],["2024-07-25T13:46:47.010000"],["2024-07-25T13:46:48.010000"],["2024-07-25T13:46:49.010000"],["2024-07-25T13:46:50.010000"],["2024-07-25T13:46:51.010000"],["2024-07-25T13:46:52.010000"],["2024-07-25T13:46:53.010000"],["2024-07-25T13:46:54.010000"],["2024-07-25T13:46:55.010000"],["2024-07-25T13:46:56.010000"],["2024-07-25T13:46:57.010000"],["2024-07-25T13:46:58.010000"],["2024-07-25T13:46:59.010000"],["2024-07-25T13:47:00.010000"],["2024-07-25T13:47:01.010000"],["2024-07-25T13:47:02.010000"],["2024-07-25T13:47:03.010000"],["2024-07-25T13:47:04.010000"],["2024-07-25T13:47:05.010000"],["2024-07-25T13:47:06.010000"],["2024-07-25T13:47:07.010000"],["2024-07-25T13:47:08.010000"],["2024-07-25T13:47:09.010000"],["2024-07-25T13:47:10.010000"],["2024-07-25T13:47:11.010000"],["2024-07-25T13:47:12.010000"],["2024-07-25T13:47:13.010000"],["2024-07-25T13:47:14.010000"],["2024-07-25T13:47:15.010000"],["2024-07-25T13:47:16.010000"],["2024-07-25T13:47:17.010000"],["2024-07-25T13:47:18.010000"],["2024-07-25T13:47:19.010000"],["2024-07-25T13:47:20.010000"],["2024-07-25T13:47:21.010000"],["2024-07-25T13:47:22.010000"],["2024-07-25T13:47:23.010000"],["2024-07-25T13:47:24.010000"],["2024-07-25T13:47:25.010000"],["2024-07-25T13:47:26.010000"],["2024-07-25T13:47:27.010000"],["2024-07-25T13:47:28.010000"],["2024-07-25T13:47:29.010000"],["2024-07-25T13:47:30.010000"],["2024-07-25T13:47:31.010000"],["2024-07-25T13:47:32.010000"],["2024-07-25T13:47:33.010000"],["2024-07-25T13:47:34.010000"],["2024-07-25T13:47:35.010000"],["2024-07-25T13:47:36.010000"],["2024-07-25T13:47:37.010000"],["2024-07-25T13:47:38.010000"],["2024-07-25T13:47:39.010000"],["2024-07-25T13:47:40.010000"],["2024-07-25T13:47:41.010000"],["2024-07-25T13:47:42.010000"],["2024-07-25T13:47:43.010000"],["2024-07-25T13:47:44.010000"],["2024-07-25T13:47:45.010000"],["2024-07-25T13:47:46.010000"],["2024-07-25T13:47:47.010000"],["2024-07-25T13:47:48.010000"],["2024-07-25T13:47:49.010000"],["2024-07-25T13:47:50.010000"],["2024-07-25T13:47:51.010000"],["2024-07-25T13:47:52.010000"],["2024-07-25T13:47:53.010000"],["2024-07-25T13:47:54.010000"],["2024-07-25T13:47:55.010000"],["2024-07-25T13:47:56.010000"],["2024-07-25T13:47:57.010000"],["2024-07-25T13:47:58.010000"],["2024-07-25T13:47:59.010000"],["2024-07-25T13:48:00.010000"],["2024-07-25T13:48:01.010000"],["2024-07-25T13:48:02.010000"],["2024-07-25T13:48:03.010000"],["2024-07-25T13:48:04.010000"],["2024-07-25T13:48:05.010000"],["2024-07-25T13:48:06.010000"],["2024-07-25T13:48:07.010000"],["2024-07-25T13:48:08.010000"],["2024-07-25T13:48:09.010000"],["2024-07-25T13:48:10.010000"],["2024-07-25T13:48:11.010000"],["2024-07-25T13:48:12.010000"],["2024-07-25T13:48:13.010000"],["2024-07-25T13:48:14.010000"],["2024-07-25T13:48:15.010000"],["2024-07-25T13:48:16.010000"],["2024-07-25T13:48:17.010000"],["2024-07-25T13:48:18.010000"],["2024-07-25T13:48:19.010000"],["2024-07-25T13:48:20.010000"],["2024-07-25T13:48:21.010000"],["2024-07-25T13:48:22.010000"],["2024-07-25T13:48:23.010000"],["2024-07-25T13:48:24.010000"],["2024-07-25T13:48:25.010000"],["2024-07-25T13:48:26.010000"],["2024-07-25T13:48:27.010000"],["2024-07-25T13:48:28.010000"],["2024-07-25T13:48:29.010000"],["2024-07-25T13:48:30.010000"],["2024-07-25T13:48:31.010000"],["2024-07-25T13:48:32.010000"],["2024-07-25T13:48:33.010000"],["2024-07-25T13:48:34.010000"],["2024-07-25T13:48:35.010000"],["2024-07-25T13:48:36.010000"],["2024-07-25T13:48:37.010000"],["2024-07-25T13:48:38.010000"],["2024-07-25T13:48:39.010000"],["2024-07-25T13:48:40.010000"],["2024-07-25T13:48:41.010000"],["2024-07-25T13:48:42.010000"],["2024-07-25T13:48:43.010000"],["2024-07-25T13:48:44.010000"],["2024-07-25T13:48:45.010000"],["2024-07-25T13:48:46.010000"],["2024-07-25T13:48:47.010000"],["2024-07-25T13:48:48.010000"],["2024-07-25T13:48:49.010000"],["2024-07-25T13:48:50.010000"],["2024-07-25T13:48:51.010000"],["2024-07-25T13:48:52.010000"],["2024-07-25T13:48:53.010000"],["2024-07-25T13:48:54.010000"],["2024-07-25T13:48:55.010000"],["2024-07-25T13:48:56.010000"],["2024-07-25T13:48:57.010000"],["2024-07-25T13:48:58.010000"],["2024-07-25T13:48:59.010000"],["2024-07-25T13:49:00.010000"],["2024-07-25T13:49:01.010000"],["2024-07-25T13:49:02.010000"],["2024-07-25T13:49:03.010000"],["2024-07-25T13:49:04.010000"],["2024-07-25T13:49:05.010000"],["2024-07-25T13:49:06.010000"],["2024-07-25T13:49:07.010000"],["2024-07-25T13:49:08.010000"],["2024-07-25T13:49:09.010000"],["2024-07-25T13:49:10.010000"],["2024-07-25T13:49:11.010000"],["2024-07-25T13:49:12.010000"],["2024-07-25T13:49:13.010000"],["2024-07-25T13:49:14.010000"],["2024-07-25T13:49:15.010000"],["2024-07-25T13:49:16.010000"],["2024-07-25T13:49:17.010000"],["2024-07-25T13:49:18.010000"],["2024-07-25T13:49:19.010000"],["2024-07-25T13:49:20.010000"],["2024-07-25T13:49:21.010000"],["2024-07-25T13:49:22.010000"],["2024-07-25T13:49:23.010000"],["2024-07-25T13:49:24.010000"],["2024-07-25T13:49:25.010000"],["2024-07-25T13:49:26.010000"],["2024-07-25T13:49:27.010000"],["2024-07-25T13:49:28.010000"],["2024-07-25T13:49:29.010000"],["2024-07-25T13:49:30.010000"],["2024-07-25T13:49:31.010000"],["2024-07-25T13:49:32.010000"],["2024-07-25T13:49:33.010000"],["2024-07-25T13:49:34.010000"],["2024-07-25T13:49:35.010000"],["2024-07-25T13:49:36.010000"],["2024-07-25T13:49:37.010000"],["2024-07-25T13:49:38.010000"],["2024-07-25T13:49:39.010000"],["2024-07-25T13:49:40.010000"],["2024-07-25T13:49:41.010000"],["2024-07-25T13:49:42.010000"],["2024-07-25T13:49:43.010000"],["2024-07-25T13:49:44.010000"],["2024-07-25T13:49:45.010000"],["2024-07-25T13:49:46.010000"],["2024-07-25T13:49:47.010000"],["2024-07-25T13:49:48.010000"],["2024-07-25T13:49:49.010000"],["2024-07-25T13:49:50.010000"],["2024-07-25T13:49:51.010000"],["2024-07-25T13:49:52.010000"],["2024-07-25T13:49:53.010000"],["2024-07-25T13:49:54.010000"],["2024-07-25T13:49:55.010000"],["2024-07-25T13:49:56.010000"],["2024-07-25T13:49:57.010000"],["2024-07-25T13:49:58.010000"],["2024-07-25T13:49:59.010000"],["2024-07-25T13:50:00.010000"],["2024-07-25T13:50:01.010000"],["2024-07-25T13:50:02.010000"],["2024-07-25T13:50:03.010000"],["2024-07-25T13:50:04.010000"],["2024-07-25T13:50:05.010000"],["2024-07-25T13:50:06.010000"],["2024-07-25T13:50:07.010000"],["2024-07-25T13:50:08.010000"],["2024-07-25T13:50:09.010000"],["2024-07-25T13:50:10.010000"],["2024-07-25T13:50:11.010000"],["2024-07-25T13:50:12.010000"],["2024-07-25T13:50:13.010000"],["2024-07-25T13:50:14.010000"],["2024-07-25T13:50:15.010000"],["2024-07-25T13:50:16.010000"],["2024-07-25T13:50:17.010000"],["2024-07-25T13:50:18.010000"],["2024-07-25T13:50:19.010000"],["2024-07-25T13:50:20.010000"],["2024-07-25T13:50:21.010000"],["2024-07-25T13:50:22.010000"],["2024-07-25T13:50:23.010000"],["2024-07-25T13:50:24.010000"],["2024-07-25T13:50:25.010000"],["2024-07-25T13:50:26.010000"],["2024-07-25T13:50:27.010000"],["2024-07-25T13:50:28.010000"],["2024-07-25T13:50:29.010000"],["2024-07-25T13:50:30.010000"],["2024-07-25T13:50:31.010000"],["2024-07-25T13:50:32.010000"],["2024-07-25T13:50:33.010000"],["2024-07-25T13:50:34.010000"],["2024-07-25T13:50:35.010000"],["2024-07-25T13:50:36.010000"],["2024-07-25T13:50:37.010000"],["2024-07-25T13:50:38.010000"],["2024-07-25T13:50:39.010000"],["2024-07-25T13:50:40.010000"],["2024-07-25T13:50:41.010000"],["2024-07-25T13:50:42.010000"],["2024-07-25T13:50:43.010000"],["2024-07-25T13:50:44.010000"],["2024-07-25T13:50:45.010000"],["2024-07-25T13:50:46.010000"],["2024-07-25T13:50:47.010000"],["2024-07-25T13:50:48.010000"],["2024-07-25T13:50:49.010000"],["2024-07-25T13:50:50.010000"],["2024-07-25T13:50:51.010000"],["2024-07-25T13:50:52.010000"],["2024-07-25T13:50:53.010000"],["2024-07-25T13:50:54.010000"],["2024-07-25T13:50:55.010000"],["2024-07-25T13:50:56.010000"],["2024-07-25T13:50:57.010000"],["2024-07-25T13:50:58.010000"],["2024-07-25T13:50:59.010000"],["2024-07-25T13:51:00.010000"],["2024-07-25T13:51:01.010000"],["2024-07-25T13:51:02.010000"],["2024-07-25T13:51:03.010000"],["2024-07-25T13:51:04.010000"],["2024-07-25T13:51:05.010000"],["2024-07-25T13:51:06.010000"],["2024-07-25T13:51:07.010000"],["2024-07-25T13:51:08.010000"],["2024-07-25T13:51:09.010000"],["2024-07-25T13:51:10.010000"],["2024-07-25T13:51:11.010000"],["2024-07-25T13:51:12.010000"],["2024-07-25T13:51:13.010000"],["2024-07-25T13:51:14.010000"],["2024-07-25T13:51:15.010000"],["2024-07-25T13:51:16.010000"],["2024-07-25T13:51:17.010000"],["2024-07-25T13:51:18.010000"],["2024-07-25T13:51:19.010000"],["2024-07-25T13:51:20.010000"],["2024-07-25T13:51:21.010000"],["2024-07-25T13:51:22.010000"],["2024-07-25T13:51:23.010000"],["2024-07-25T13:51:24.010000"],["2024-07-25T13:51:25.010000"],["2024-07-25T13:51:26.010000"],["2024-07-25T13:51:27.010000"],["2024-07-25T13:51:28.010000"],["2024-07-25T13:51:29.010000"],["2024-07-25T13:51:30.010000"],["2024-07-25T13:51:31.010000"],["2024-07-25T13:51:32.010000"],["2024-07-25T13:51:33.010000"],["2024-07-25T13:51:34.010000"],["2024-07-25T13:51:35.010000"],["2024-07-25T13:51:36.010000"],["2024-07-25T13:51:37.010000"],["2024-07-25T13:51:38.010000"],["2024-07-25T13:51:39.010000"],["2024-07-25T13:51:40.010000"],["2024-07-25T13:51:41.010000"],["2024-07-25T13:51:42.010000"],["2024-07-25T13:51:43.010000"],["2024-07-25T13:51:44.010000"],["2024-07-25T13:51:45.010000"],["2024-07-25T13:51:46.010000"],["2024-07-25T13:51:47.010000"],["2024-07-25T13:51:48.010000"],["2024-07-25T13:51:49.010000"],["2024-07-25T13:51:50.010000"],["2024-07-25T13:51:51.010000"],["2024-07-25T13:51:52.010000"],["2024-07-25T13:51:53.010000"],["2024-07-25T13:51:54.010000"],["2024-07-25T13:51:55.010000"],["2024-07-25T13:51:56.010000"],["2024-07-25T13:51:57.010000"],["2024-07-25T13:51:58.010000"],["2024-07-25T13:51:59.010000"],["2024-07-25T13:52:00.010000"],["2024-07-25T13:52:01.010000"],["2024-07-25T13:52:02.010000"],["2024-07-25T13:52:03.010000"],["2024-07-25T13:52:04.010000"],["2024-07-25T13:52:05.010000"],["2024-07-25T13:52:06.010000"],["2024-07-25T13:52:07.010000"],["2024-07-25T13:52:08.010000"],["2024-07-25T13:52:09.010000"],["2024-07-25T13:52:10.010000"],["2024-07-25T13:52:11.010000"],["2024-07-25T13:52:12.010000"],["2024-07-25T13:52:13.010000"],["2024-07-25T13:52:14.010000"],["2024-07-25T13:52:15.010000"],["2024-07-25T13:52:16.010000"],["2024-07-25T13:52:17.010000"],["2024-07-25T13:52:18.010000"],["2024-07-25T13:52:19.010000"],["2024-07-25T13:52:20.010000"],["2024-07-25T13:52:21.010000"],["2024-07-25T13:52:22.010000"],["2024-07-25T13:52:23.010000"],["2024-07-25T13:52:24.010000"],["2024-07-25T13:52:25.010000"],["2024-07-25T13:52:26.010000"],["2024-07-25T13:52:27.010000"],["2024-07-25T13:52:28.010000"],["2024-07-25T13:52:29.010000"],["2024-07-25T13:52:30.010000"],["2024-07-25T13:52:31.010000"],["2024-07-25T13:52:32.010000"],["2024-07-25T13:52:33.010000"],["2024-07-25T13:52:34.010000"],["2024-07-25T13:52:35.010000"],["2024-07-25T13:52:36.010000"],["2024-07-25T13:52:37.010000"],["2024-07-25T13:52:38.010000"],["2024-07-25T13:52:39.010000"],["2024-07-25T13:52:40.010000"],["2024-07-25T13:52:41.010000"],["2024-07-25T13:52:42.010000"],["2024-07-25T13:52:43.010000"],["2024-07-25T13:52:44.010000"],["2024-07-25T13:52:45.010000"],["2024-07-25T13:52:46.010000"],["2024-07-25T13:52:47.010000"],["2024-07-25T13:52:48.010000"],["2024-07-25T13:52:49.010000"],["2024-07-25T13:52:50.010000"],["2024-07-25T13:52:51.010000"],["2024-07-25T13:52:52.010000"],["2024-07-25T13:52:53.010000"],["2024-07-25T13:52:54.010000"],["2024-07-25T13:52:55.010000"],["2024-07-25T13:52:56.010000"],["2024-07-25T13:52:57.010000"],["2024-07-25T13:52:58.010000"],["2024-07-25T13:52:59.010000"],["2024-07-25T13:53:00.010000"],["2024-07-25T13:53:01.010000"],["2024-07-25T13:53:02.010000"],["2024-07-25T13:53:03.010000"],["2024-07-25T13:53:04.010000"],["2024-07-25T13:53:05.010000"],["2024-07-25T13:53:06.010000"],["2024-07-25T13:53:07.010000"],["2024-07-25T13:53:08.010000"],["2024-07-25T13:53:09.010000"],["2024-07-25T13:53:10.010000"],["2024-07-25T13:53:11.010000"],["2024-07-25T13:53:12.010000"],["2024-07-25T13:53:13.010000"],["2024-07-25T13:53:14.010000"],["2024-07-25T13:53:15.010000"],["2024-07-25T13:53:16.010000"],["2024-07-25T13:53:17.010000"],["2024-07-25T13:53:18.010000"],["2024-07-25T13:53:19.010000"],["2024-07-25T13:53:20.010000"],["2024-07-25T13:53:21.010000"],["2024-07-25T13:53:22.010000"],["2024-07-25T13:53:23.010000"],["2024-07-25T13:53:24.010000"],["2024-07-25T13:53:25.010000"],["2024-07-25T13:53:26.010000"],["2024-07-25T13:53:27.010000"],["2024-07-25T13:53:28.010000"],["2024-07-25T13:53:29.010000"],["2024-07-25T13:53:30.010000"],["2024-07-25T13:53:31.010000"],["2024-07-25T13:53:32.010000"],["2024-07-25T13:53:33.010000"],["2024-07-25T13:53:34.010000"],["2024-07-25T13:53:35.010000"],["2024-07-25T13:53:36.010000"],["2024-07-25T13:53:37.010000"],["2024-07-25T13:53:38.010000"],["2024-07-25T13:53:39.010000"],["2024-07-25T13:53:40.010000"],["2024-07-25T13:53:41.010000"],["2024-07-25T13:53:42.010000"],["2024-07-25T13:53:43.010000"],["2024-07-25T13:53:44.010000"],["2024-07-25T13:53:45.010000"],["2024-07-25T13:53:46.010000"],["2024-07-25T13:53:47.010000"],["2024-07-25T13:53:48.010000"],["2024-07-25T13:53:49.010000"],["2024-07-25T13:53:50.010000"],["2024-07-25T13:53:51.010000"],["2024-07-25T13:53:52.010000"],["2024-07-25T13:53:53.010000"],["2024-07-25T13:53:54.010000"],["2024-07-25T13:53:55.010000"],["2024-07-25T13:53:56.010000"],["2024-07-25T13:53:57.010000"],["2024-07-25T13:53:58.010000"],["2024-07-25T13:53:59.010000"],["2024-07-25T13:54:00.010000"],["2024-07-25T13:54:01.010000"],["2024-07-25T13:54:02.010000"],["2024-07-25T13:54:03.010000"],["2024-07-25T13:54:04.010000"],["2024-07-25T13:54:05.010000"],["2024-07-25T13:54:06.010000"],["2024-07-25T13:54:07.010000"],["2024-07-25T13:54:08.010000"],["2024-07-25T13:54:09.010000"],["2024-07-25T13:54:10.010000"],["2024-07-25T13:54:11.010000"],["2024-07-25T13:54:12.010000"],["2024-07-25T13:54:13.010000"],["2024-07-25T13:54:14.010000"],["2024-07-25T13:54:15.010000"],["2024-07-25T13:54:16.010000"],["2024-07-25T13:54:17.010000"],["2024-07-25T13:54:18.010000"],["2024-07-25T13:54:19.010000"],["2024-07-25T13:54:20.010000"],["2024-07-25T13:54:21.010000"],["2024-07-25T13:54:22.010000"],["2024-07-25T13:54:23.010000"],["2024-07-25T13:54:24.010000"],["2024-07-25T13:54:25.010000"],["2024-07-25T13:54:26.010000"],["2024-07-25T13:54:27.010000"],["2024-07-25T13:54:28.010000"],["2024-07-25T13:54:29.010000"],["2024-07-25T13:54:30.010000"],["2024-07-25T13:54:31.010000"],["2024-07-25T13:54:32.010000"],["2024-07-25T13:54:33.010000"],["2024-07-25T13:54:34.010000"],["2024-07-25T13:54:35.010000"],["2024-07-25T13:54:36.010000"],["2024-07-25T13:54:37.010000"],["2024-07-25T13:54:38.010000"],["2024-07-25T13:54:39.010000"],["2024-07-25T13:54:40.010000"],["2024-07-25T13:54:41.010000"],["2024-07-25T13:54:42.010000"],["2024-07-25T13:54:43.010000"],["2024-07-25T13:54:44.010000"],["2024-07-25T13:54:45.010000"],["2024-07-25T13:54:46.010000"],["2024-07-25T13:54:47.010000"],["2024-07-25T13:54:48.010000"],["2024-07-25T13:54:49.010000"],["2024-07-25T13:54:50.010000"],["2024-07-25T13:54:51.010000"],["2024-07-25T13:54:52.010000"],["2024-07-25T13:54:53.010000"],["2024-07-25T13:54:54.010000"],["2024-07-25T13:54:55.010000"],["2024-07-25T13:54:56.010000"],["2024-07-25T13:54:57.010000"],["2024-07-25T13:54:58.010000"],["2024-07-25T13:54:59.010000"],["2024-07-25T13:55:00.010000"],["2024-07-25T13:55:01.010000"],["2024-07-25T13:55:02.010000"],["2024-07-25T13:55:03.010000"],["2024-07-25T13:55:04.010000"],["2024-07-25T13:55:05.010000"],["2024-07-25T13:55:06.010000"],["2024-07-25T13:55:07.010000"],["2024-07-25T13:55:08.010000"],["2024-07-25T13:55:09.010000"],["2024-07-25T13:55:10.010000"],["2024-07-25T13:55:11.010000"],["2024-07-25T13:55:12.010000"],["2024-07-25T13:55:13.010000"],["2024-07-25T13:55:14.010000"],["2024-07-25T13:55:15.010000"],["2024-07-25T13:55:16.010000"],["2024-07-25T13:55:17.010000"],["2024-07-25T13:55:18.010000"],["2024-07-25T13:55:19.010000"],["2024-07-25T13:55:20.010000"],["2024-07-25T13:55:21.010000"],["2024-07-25T13:55:22.010000"],["2024-07-25T13:55:23.010000"],["2024-07-25T13:55:24.010000"],["2024-07-25T13:55:25.010000"],["2024-07-25T13:55:26.010000"],["2024-07-25T13:55:27.010000"],["2024-07-25T13:55:28.010000"],["2024-07-25T13:55:29.010000"],["2024-07-25T13:55:30.010000"],["2024-07-25T13:55:31.010000"],["2024-07-25T13:55:32.010000"],["2024-07-25T13:55:33.010000"],["2024-07-25T13:55:34.010000"],["2024-07-25T13:55:35.010000"],["2024-07-25T13:55:36.010000"],["2024-07-25T13:55:37.010000"],["2024-07-25T13:55:38.010000"],["2024-07-25T13:55:39.010000"],["2024-07-25T13:55:40.010000"],["2024-07-25T13:55:41.010000"],["2024-07-25T13:55:42.010000"],["2024-07-25T13:55:43.010000"],["2024-07-25T13:55:44.010000"],["2024-07-25T13:55:45.010000"],["2024-07-25T13:55:46.010000"],["2024-07-25T13:55:47.010000"],["2024-07-25T13:55:48.010000"],["2024-07-25T13:55:49.010000"],["2024-07-25T13:55:50.010000"],["2024-07-25T13:55:51.010000"],["2024-07-25T13:55:52.010000"],["2024-07-25T13:55:53.010000"],["2024-07-25T13:55:54.010000"],["2024-07-25T13:55:55.010000"],["2024-07-25T13:55:56.010000"],["2024-07-25T13:55:57.010000"],["2024-07-25T13:55:58.010000"],["2024-07-25T13:55:59.010000"],["2024-07-25T13:56:00.010000"],["2024-07-25T13:56:01.010000"],["2024-07-25T13:56:02.010000"],["2024-07-25T13:56:03.010000"],["2024-07-25T13:56:04.010000"],["2024-07-25T13:56:05.010000"],["2024-07-25T13:56:06.010000"],["2024-07-25T13:56:07.010000"],["2024-07-25T13:56:08.010000"],["2024-07-25T13:56:09.010000"],["2024-07-25T13:56:10.010000"],["2024-07-25T13:56:11.010000"],["2024-07-25T13:56:12.010000"],["2024-07-25T13:56:13.010000"],["2024-07-25T13:56:14.010000"],["2024-07-25T13:56:15.010000"],["2024-07-25T13:56:16.010000"],["2024-07-25T13:56:17.010000"],["2024-07-25T13:56:18.010000"],["2024-07-25T13:56:19.010000"],["2024-07-25T13:56:20.010000"],["2024-07-25T13:56:21.010000"],["2024-07-25T13:56:22.010000"],["2024-07-25T13:56:23.010000"],["2024-07-25T13:56:24.010000"],["2024-07-25T13:56:25.010000"],["2024-07-25T13:56:26.010000"],["2024-07-25T13:56:27.010000"],["2024-07-25T13:56:28.010000"],["2024-07-25T13:56:29.010000"],["2024-07-25T13:56:30.010000"],["2024-07-25T13:56:31.010000"],["2024-07-25T13:56:32.010000"],["2024-07-25T13:56:33.010000"],["2024-07-25T13:56:34.010000"],["2024-07-25T13:56:35.010000"],["2024-07-25T13:56:36.010000"],["2024-07-25T13:56:37.010000"],["2024-07-25T13:56:38.010000"],["2024-07-25T13:56:39.010000"],["2024-07-25T13:56:40.010000"],["2024-07-25T13:56:41.010000"],["2024-07-25T13:56:42.010000"],["2024-07-25T13:56:43.010000"],["2024-07-25T13:56:44.010000"],["2024-07-25T13:56:45.010000"],["2024-07-25T13:56:46.010000"],["2024-07-25T13:56:47.010000"],["2024-07-25T13:56:48.010000"],["2024-07-25T13:56:49.010000"],["2024-07-25T13:56:50.010000"],["2024-07-25T13:56:51.010000"],["2024-07-25T13:56:52.010000"],["2024-07-25T13:56:53.010000"],["2024-07-25T13:56:54.010000"],["2024-07-25T13:56:55.010000"],["2024-07-25T13:56:56.010000"],["2024-07-25T13:56:57.010000"],["2024-07-25T13:56:58.010000"],["2024-07-25T13:56:59.010000"],["2024-07-25T13:57:00.010000"],["2024-07-25T13:57:01.010000"],["2024-07-25T13:57:02.010000"],["2024-07-25T13:57:03.010000"],["2024-07-25T13:57:04.010000"],["2024-07-25T13:57:05.010000"],["2024-07-25T13:57:06.010000"],["2024-07-25T13:57:07.010000"],["2024-07-25T13:57:08.010000"],["2024-07-25T13:57:09.010000"],["2024-07-25T13:57:10.010000"],["2024-07-25T13:57:11.010000"],["2024-07-25T13:57:12.010000"],["2024-07-25T13:57:13.010000"],["2024-07-25T13:57:14.010000"],["2024-07-25T13:57:15.010000"],["2024-07-25T13:57:16.010000"],["2024-07-25T13:57:17.010000"],["2024-07-25T13:57:18.010000"],["2024-07-25T13:57:19.010000"],["2024-07-25T13:57:20.010000"],["2024-07-25T13:57:21.010000"],["2024-07-25T13:57:22.010000"],["2024-07-25T13:57:23.010000"],["2024-07-25T13:57:24.010000"],["2024-07-25T13:57:25.010000"],["2024-07-25T13:57:26.010000"],["2024-07-25T13:57:27.010000"],["2024-07-25T13:57:28.010000"],["2024-07-25T13:57:29.010000"],["2024-07-25T13:57:30.010000"],["2024-07-25T13:57:31.010000"],["2024-07-25T13:57:32.010000"],["2024-07-25T13:57:33.010000"],["2024-07-25T13:57:34.010000"],["2024-07-25T13:57:35.010000"],["2024-07-25T13:57:36.010000"],["2024-07-25T13:57:37.010000"],["2024-07-25T13:57:38.010000"],["2024-07-25T13:57:39.010000"],["2024-07-25T13:57:40.010000"],["2024-07-25T13:57:41.010000"],["2024-07-25T13:57:42.010000"],["2024-07-25T13:57:43.010000"],["2024-07-25T13:57:44.010000"],["2024-07-25T13:57:45.010000"],["2024-07-25T13:57:46.010000"],["2024-07-25T13:57:47.010000"],["2024-07-25T13:57:48.010000"],["2024-07-25T13:57:49.010000"],["2024-07-25T13:57:50.010000"],["2024-07-25T13:57:51.010000"],["2024-07-25T13:57:52.010000"],["2024-07-25T13:57:53.010000"],["2024-07-25T13:57:54.010000"],["2024-07-25T13:57:55.010000"],["2024-07-25T13:57:56.010000"],["2024-07-25T13:57:57.010000"],["2024-07-25T13:57:58.010000"],["2024-07-25T13:57:59.010000"],["2024-07-25T13:58:00.010000"],["2024-07-25T13:58:01.010000"],["2024-07-25T13:58:02.010000"],["2024-07-25T13:58:03.010000"],["2024-07-25T13:58:04.010000"],["2024-07-25T13:58:05.010000"],["2024-07-25T13:58:06.010000"],["2024-07-25T13:58:07.010000"],["2024-07-25T13:58:08.010000"],["2024-07-25T13:58:09.010000"],["2024-07-25T13:58:10.010000"],["2024-07-25T13:58:11.010000"],["2024-07-25T13:58:12.010000"],["2024-07-25T13:58:13.010000"],["2024-07-25T13:58:14.010000"],["2024-07-25T13:58:15.010000"],["2024-07-25T13:58:16.010000"],["2024-07-25T13:58:17.010000"],["2024-07-25T13:58:18.010000"],["2024-07-25T13:58:19.010000"],["2024-07-25T13:58:20.010000"],["2024-07-25T13:58:21.010000"],["2024-07-25T13:58:22.010000"],["2024-07-25T13:58:23.010000"],["2024-07-25T13:58:24.010000"],["2024-07-25T13:58:25.010000"],["2024-07-25T13:58:26.010000"],["2024-07-25T13:58:27.010000"],["2024-07-25T13:58:28.010000"],["2024-07-25T13:58:29.010000"],["2024-07-25T13:58:30.010000"],["2024-07-25T13:58:31.010000"],["2024-07-25T13:58:32.010000"],["2024-07-25T13:58:33.010000"],["2024-07-25T13:58:34.010000"],["2024-07-25T13:58:35.010000"],["2024-07-25T13:58:36.010000"],["2024-07-25T13:58:37.010000"],["2024-07-25T13:58:38.010000"],["2024-07-25T13:58:39.010000"],["2024-07-25T13:58:40.010000"],["2024-07-25T13:58:41.010000"],["2024-07-25T13:58:42.010000"],["2024-07-25T13:58:43.010000"],["2024-07-25T13:58:44.010000"],["2024-07-25T13:58:45.010000"],["2024-07-25T13:58:46.010000"],["2024-07-25T13:58:47.010000"],["2024-07-25T13:58:48.010000"],["2024-07-25T13:58:49.010000"],["2024-07-25T13:58:50.010000"],["2024-07-25T13:58:51.010000"],["2024-07-25T13:58:52.010000"],["2024-07-25T13:58:53.010000"],["2024-07-25T13:58:54.010000"],["2024-07-25T13:58:55.010000"],["2024-07-25T13:58:56.010000"],["2024-07-25T13:58:57.010000"],["2024-07-25T13:58:58.010000"],["2024-07-25T13:58:59.010000"],["2024-07-25T13:59:00.010000"],["2024-07-25T13:59:01.010000"],["2024-07-25T13:59:02.010000"],["2024-07-25T13:59:03.010000"],["2024-07-25T13:59:04.010000"],["2024-07-25T13:59:05.010000"],["2024-07-25T13:59:06.010000"],["2024-07-25T13:59:07.010000"],["2024-07-25T13:59:08.010000"],["2024-07-25T13:59:09.010000"],["2024-07-25T13:59:10.010000"],["2024-07-25T13:59:11.010000"],["2024-07-25T13:59:12.010000"],["2024-07-25T13:59:13.010000"],["2024-07-25T13:59:14.010000"],["2024-07-25T13:59:15.010000"],["2024-07-25T13:59:16.010000"],["2024-07-25T13:59:17.010000"],["2024-07-25T13:59:18.010000"],["2024-07-25T13:59:19.010000"],["2024-07-25T13:59:20.010000"],["2024-07-25T13:59:21.010000"],["2024-07-25T13:59:22.010000"],["2024-07-25T13:59:23.010000"],["2024-07-25T13:59:24.010000"],["2024-07-25T13:59:25.010000"],["2024-07-25T13:59:26.010000"],["2024-07-25T13:59:27.010000"],["2024-07-25T13:59:28.010000"],["2024-07-25T13:59:29.010000"],["2024-07-25T13:59:30.010000"],["2024-07-25T13:59:31.010000"],["2024-07-25T13:59:32.010000"],["2024-07-25T13:59:33.010000"],["2024-07-25T13:59:34.010000"],["2024-07-25T13:59:35.010000"],["2024-07-25T13:59:36.010000"],["2024-07-25T13:59:37.010000"],["2024-07-25T13:59:38.010000"],["2024-07-25T13:59:39.010000"],["2024-07-25T13:59:40.010000"],["2024-07-25T13:59:41.010000"],["2024-07-25T13:59:42.010000"],["2024-07-25T13:59:43.010000"],["2024-07-25T13:59:44.010000"],["2024-07-25T13:59:45.010000"],["2024-07-25T13:59:46.010000"],["2024-07-25T13:59:47.010000"],["2024-07-25T13:59:48.010000"],["2024-07-25T13:59:49.010000"],["2024-07-25T13:59:50.010000"],["2024-07-25T13:59:51.010000"],["2024-07-25T13:59:52.010000"],["2024-07-25T13:59:53.010000"],["2024-07-25T13:59:54.010000"],["2024-07-25T13:59:55.010000"],["2024-07-25T13:59:56.010000"],["2024-07-25T13:59:57.010000"],["2024-07-25T13:59:58.010000"],["2024-07-25T13:59:59.010000"],["2024-07-25T14:00:00.010000"],["2024-07-25T14:00:01.010000"],["2024-07-25T14:00:02.010000"],["2024-07-25T14:00:03.010000"],["2024-07-25T14:00:04.010000"],["2024-07-25T14:00:05.010000"],["2024-07-25T14:00:06.010000"],["2024-07-25T14:00:07.010000"],["2024-07-25T14:00:08.010000"],["2024-07-25T14:00:09.010000"],["2024-07-25T14:00:10.010000"],["2024-07-25T14:00:11.010000"],["2024-07-25T14:00:12.010000"],["2024-07-25T14:00:13.010000"],["2024-07-25T14:00:14.010000"],["2024-07-25T14:00:15.010000"],["2024-07-25T14:00:16.010000"],["2024-07-25T14:00:17.010000"],["2024-07-25T14:00:18.010000"],["2024-07-25T14:00:19.010000"],["2024-07-25T14:00:20.010000"],["2024-07-25T14:00:21.010000"],["2024-07-25T14:00:22.010000"],["2024-07-25T14:00:23.010000"],["2024-07-25T14:00:24.010000"],["2024-07-25T14:00:25.010000"],["2024-07-25T14:00:26.010000"],["2024-07-25T14:00:27.010000"],["2024-07-25T14:00:28.010000"],["2024-07-25T14:00:29.010000"],["2024-07-25T14:00:30.010000"],["2024-07-25T14:00:31.010000"],["2024-07-25T14:00:32.010000"],["2024-07-25T14:00:33.010000"],["2024-07-25T14:00:34.010000"],["2024-07-25T14:00:35.010000"],["2024-07-25T14:00:36.010000"],["2024-07-25T14:00:37.010000"],["2024-07-25T14:00:38.010000"],["2024-07-25T14:00:39.010000"],["2024-07-25T14:00:40.010000"],["2024-07-25T14:00:41.010000"],["2024-07-25T14:00:42.010000"],["2024-07-25T14:00:43.010000"],["2024-07-25T14:00:44.010000"],["2024-07-25T14:00:45.010000"],["2024-07-25T14:00:46.010000"],["2024-07-25T14:00:47.010000"],["2024-07-25T14:00:48.010000"],["2024-07-25T14:00:49.010000"],["2024-07-25T14:00:50.010000"],["2024-07-25T14:00:51.010000"],["2024-07-25T14:00:52.010000"],["2024-07-25T14:00:53.010000"],["2024-07-25T14:00:54.010000"],["2024-07-25T14:00:55.010000"],["2024-07-25T14:00:56.010000"],["2024-07-25T14:00:57.010000"],["2024-07-25T14:00:58.010000"],["2024-07-25T14:00:59.010000"],["2024-07-25T14:01:00.010000"],["2024-07-25T14:01:01.010000"],["2024-07-25T14:01:02.010000"],["2024-07-25T14:01:03.010000"],["2024-07-25T14:01:04.010000"],["2024-07-25T14:01:05.010000"],["2024-07-25T14:01:06.010000"],["2024-07-25T14:01:07.010000"],["2024-07-25T14:01:08.010000"],["2024-07-25T14:01:09.010000"],["2024-07-25T14:01:10.010000"],["2024-07-25T14:01:11.010000"],["2024-07-25T14:01:12.010000"],["2024-07-25T14:01:13.010000"],["2024-07-25T14:01:14.010000"],["2024-07-25T14:01:15.010000"],["2024-07-25T14:01:16.010000"],["2024-07-25T14:01:17.010000"],["2024-07-25T14:01:18.010000"],["2024-07-25T14:01:19.010000"],["2024-07-25T14:01:20.010000"],["2024-07-25T14:01:21.010000"],["2024-07-25T14:01:22.010000"],["2024-07-25T14:01:23.010000"],["2024-07-25T14:01:24.010000"],["2024-07-25T14:01:25.010000"],["2024-07-25T14:01:26.010000"],["2024-07-25T14:01:27.010000"],["2024-07-25T14:01:28.010000"],["2024-07-25T14:01:29.010000"],["2024-07-25T14:01:30.010000"],["2024-07-25T14:01:31.010000"],["2024-07-25T14:01:32.010000"],["2024-07-25T14:01:33.010000"],["2024-07-25T14:01:34.010000"],["2024-07-25T14:01:35.010000"],["2024-07-25T14:01:36.010000"],["2024-07-25T14:01:37.010000"],["2024-07-25T14:01:38.010000"],["2024-07-25T14:01:39.010000"],["2024-07-25T14:01:40.010000"],["2024-07-25T14:01:41.010000"],["2024-07-25T14:01:42.010000"],["2024-07-25T14:01:43.010000"],["2024-07-25T14:01:44.010000"],["2024-07-25T14:01:45.010000"],["2024-07-25T14:01:46.010000"],["2024-07-25T14:01:47.010000"],["2024-07-25T14:01:48.010000"],["2024-07-25T14:01:49.010000"],["2024-07-25T14:01:50.010000"],["2024-07-25T14:01:51.010000"],["2024-07-25T14:01:52.010000"],["2024-07-25T14:01:53.010000"],["2024-07-25T14:01:54.010000"],["2024-07-25T14:01:55.010000"],["2024-07-25T14:01:56.010000"],["2024-07-25T14:01:57.010000"],["2024-07-25T14:01:58.010000"],["2024-07-25T14:01:59.010000"],["2024-07-25T14:02:00.010000"],["2024-07-25T14:02:01.010000"],["2024-07-25T14:02:02.010000"],["2024-07-25T14:02:03.010000"],["2024-07-25T14:02:04.010000"],["2024-07-25T14:02:05.010000"],["2024-07-25T14:02:06.010000"],["2024-07-25T14:02:07.010000"],["2024-07-25T14:02:08.010000"],["2024-07-25T14:02:09.010000"],["2024-07-25T14:02:10.010000"],["2024-07-25T14:02:11.010000"],["2024-07-25T14:02:12.010000"],["2024-07-25T14:02:13.010000"],["2024-07-25T14:02:14.010000"],["2024-07-25T14:02:15.010000"],["2024-07-25T14:02:16.010000"],["2024-07-25T14:02:17.010000"],["2024-07-25T14:02:18.010000"],["2024-07-25T14:02:19.010000"],["2024-07-25T14:02:20.010000"],["2024-07-25T14:02:21.010000"],["2024-07-25T14:02:22.010000"],["2024-07-25T14:02:23.010000"],["2024-07-25T14:02:24.010000"],["2024-07-25T14:02:25.010000"],["2024-07-25T14:02:26.010000"],["2024-07-25T14:02:27.010000"],["2024-07-25T14:02:28.010000"],["2024-07-25T14:02:29.010000"],["2024-07-25T14:02:30.010000"],["2024-07-25T14:02:31.010000"],["2024-07-25T14:02:32.010000"],["2024-07-25T14:02:33.010000"],["2024-07-25T14:02:34.010000"],["2024-07-25T14:02:35.010000"],["2024-07-25T14:02:36.010000"],["2024-07-25T14:02:37.010000"],["2024-07-25T14:02:38.010000"],["2024-07-25T14:02:39.010000"],["2024-07-25T14:02:40.010000"],["2024-07-25T14:02:41.010000"],["2024-07-25T14:02:42.010000"],["2024-07-25T14:02:43.010000"],["2024-07-25T14:02:44.010000"],["2024-07-25T14:02:45.010000"],["2024-07-25T14:02:46.010000"],["2024-07-25T14:02:47.010000"],["2024-07-25T14:02:48.010000"],["2024-07-25T14:02:49.010000"],["2024-07-25T14:02:50.010000"],["2024-07-25T14:02:51.010000"],["2024-07-25T14:02:52.010000"],["2024-07-25T14:02:53.010000"],["2024-07-25T14:02:54.010000"],["2024-07-25T14:02:55.010000"],["2024-07-25T14:02:56.010000"],["2024-07-25T14:02:57.010000"],["2024-07-25T14:02:58.010000"],["2024-07-25T14:02:59.010000"],["2024-07-25T14:03:00.010000"],["2024-07-25T14:03:01.010000"],["2024-07-25T14:03:02.010000"],["2024-07-25T14:03:03.010000"],["2024-07-25T14:03:04.010000"],["2024-07-25T14:03:05.010000"],["2024-07-25T14:03:06.010000"],["2024-07-25T14:03:07.010000"],["2024-07-25T14:03:08.010000"],["2024-07-25T14:03:09.010000"],["2024-07-25T14:03:10.010000"],["2024-07-25T14:03:11.010000"],["2024-07-25T14:03:12.010000"],["2024-07-25T14:03:13.010000"],["2024-07-25T14:03:14.010000"],["2024-07-25T14:03:15.010000"],["2024-07-25T14:03:16.010000"],["2024-07-25T14:03:17.010000"],["2024-07-25T14:03:18.010000"],["2024-07-25T14:03:19.010000"],["2024-07-25T14:03:20.010000"],["2024-07-25T14:03:21.010000"],["2024-07-25T14:03:22.010000"],["2024-07-25T14:03:23.010000"],["2024-07-25T14:03:24.010000"],["2024-07-25T14:03:25.010000"],["2024-07-25T14:03:26.010000"],["2024-07-25T14:03:27.010000"],["2024-07-25T14:03:28.010000"],["2024-07-25T14:03:29.010000"],["2024-07-25T14:03:30.010000"],["2024-07-25T14:03:31.010000"],["2024-07-25T14:03:32.010000"],["2024-07-25T14:03:33.010000"],["2024-07-25T14:03:34.010000"],["2024-07-25T14:03:35.010000"],["2024-07-25T14:03:36.010000"],["2024-07-25T14:03:37.010000"],["2024-07-25T14:03:38.010000"],["2024-07-25T14:03:39.010000"],["2024-07-25T14:03:40.010000"],["2024-07-25T14:03:41.010000"],["2024-07-25T14:03:42.010000"],["2024-07-25T14:03:43.010000"],["2024-07-25T14:03:44.010000"],["2024-07-25T14:03:45.010000"],["2024-07-25T14:03:46.010000"],["2024-07-25T14:03:47.010000"],["2024-07-25T14:03:48.010000"],["2024-07-25T14:03:49.010000"],["2024-07-25T14:03:50.010000"],["2024-07-25T14:03:51.010000"],["2024-07-25T14:03:52.010000"],["2024-07-25T14:03:53.010000"],["2024-07-25T14:03:54.010000"],["2024-07-25T14:03:55.010000"],["2024-07-25T14:03:56.010000"],["2024-07-25T14:03:57.010000"],["2024-07-25T14:03:58.010000"],["2024-07-25T14:03:59.010000"],["2024-07-25T14:04:00.010000"],["2024-07-25T14:04:01.010000"],["2024-07-25T14:04:02.010000"],["2024-07-25T14:04:03.010000"],["2024-07-25T14:04:04.010000"],["2024-07-25T14:04:05.010000"],["2024-07-25T14:04:06.010000"],["2024-07-25T14:04:07.010000"],["2024-07-25T14:04:08.010000"],["2024-07-25T14:04:09.010000"],["2024-07-25T14:04:10.010000"],["2024-07-25T14:04:11.010000"],["2024-07-25T14:04:12.010000"],["2024-07-25T14:04:13.010000"],["2024-07-25T14:04:14.010000"],["2024-07-25T14:04:15.010000"],["2024-07-25T14:04:16.010000"],["2024-07-25T14:04:17.010000"],["2024-07-25T14:04:18.010000"],["2024-07-25T14:04:19.010000"],["2024-07-25T14:04:20.010000"],["2024-07-25T14:04:21.010000"],["2024-07-25T14:04:22.010000"],["2024-07-25T14:04:23.010000"],["2024-07-25T14:04:24.010000"],["2024-07-25T14:04:25.010000"],["2024-07-25T14:04:26.010000"],["2024-07-25T14:04:27.010000"],["2024-07-25T14:04:28.010000"],["2024-07-25T14:04:29.010000"],["2024-07-25T14:04:30.010000"],["2024-07-25T14:04:31.010000"],["2024-07-25T14:04:32.010000"],["2024-07-25T14:04:33.010000"],["2024-07-25T14:04:34.010000"],["2024-07-25T14:04:35.010000"],["2024-07-25T14:04:36.010000"],["2024-07-25T14:04:37.010000"],["2024-07-25T14:04:38.010000"],["2024-07-25T14:04:39.010000"],["2024-07-25T14:04:40.010000"],["2024-07-25T14:04:41.010000"],["2024-07-25T14:04:42.010000"],["2024-07-25T14:04:43.010000"],["2024-07-25T14:04:44.010000"],["2024-07-25T14:04:45.010000"],["2024-07-25T14:04:46.010000"],["2024-07-25T14:04:47.010000"],["2024-07-25T14:04:48.010000"],["2024-07-25T14:04:49.010000"],["2024-07-25T14:04:50.010000"],["2024-07-25T14:04:51.010000"],["2024-07-25T14:04:52.010000"],["2024-07-25T14:04:53.010000"],["2024-07-25T14:04:54.010000"],["2024-07-25T14:04:55.010000"],["2024-07-25T14:04:56.010000"],["2024-07-25T14:04:57.010000"],["2024-07-25T14:04:58.010000"],["2024-07-25T14:04:59.010000"],["2024-07-25T14:05:00.010000"],["2024-07-25T14:05:01.010000"],["2024-07-25T14:05:02.010000"],["2024-07-25T14:05:03.010000"],["2024-07-25T14:05:04.010000"],["2024-07-25T14:05:05.010000"],["2024-07-25T14:05:06.010000"],["2024-07-25T14:05:07.010000"],["2024-07-25T14:05:08.010000"],["2024-07-25T14:05:09.010000"],["2024-07-25T14:05:10.010000"],["2024-07-25T14:05:11.010000"],["2024-07-25T14:05:12.010000"],["2024-07-25T14:05:13.010000"],["2024-07-25T14:05:14.010000"],["2024-07-25T14:05:15.010000"],["2024-07-25T14:05:16.010000"],["2024-07-25T14:05:17.010000"],["2024-07-25T14:05:18.010000"],["2024-07-25T14:05:19.010000"],["2024-07-25T14:05:20.010000"],["2024-07-25T14:05:21.010000"],["2024-07-25T14:05:22.010000"],["2024-07-25T14:05:23.010000"],["2024-07-25T14:05:24.010000"],["2024-07-25T14:05:25.010000"],["2024-07-25T14:05:26.010000"],["2024-07-25T14:05:27.010000"],["2024-07-25T14:05:28.010000"],["2024-07-25T14:05:29.010000"],["2024-07-25T14:05:30.010000"],["2024-07-25T14:05:31.010000"],["2024-07-25T14:05:32.010000"],["2024-07-25T14:05:33.010000"],["2024-07-25T14:05:34.010000"],["2024-07-25T14:05:35.010000"],["2024-07-25T14:05:36.010000"],["2024-07-25T14:05:37.010000"],["2024-07-25T14:05:38.010000"],["2024-07-25T14:05:39.010000"],["2024-07-25T14:05:40.010000"],["2024-07-25T14:05:41.010000"],["2024-07-25T14:05:42.010000"],["2024-07-25T14:05:43.010000"],["2024-07-25T14:05:44.010000"],["2024-07-25T14:05:45.010000"],["2024-07-25T14:05:46.010000"],["2024-07-25T14:05:47.010000"],["2024-07-25T14:05:48.010000"],["2024-07-25T14:05:49.010000"],["2024-07-25T14:05:50.010000"],["2024-07-25T14:05:51.010000"],["2024-07-25T14:05:52.010000"],["2024-07-25T14:05:53.010000"],["2024-07-25T14:05:54.010000"],["2024-07-25T14:05:55.010000"],["2024-07-25T14:05:56.010000"],["2024-07-25T14:05:57.010000"],["2024-07-25T14:05:58.010000"],["2024-07-25T14:05:59.010000"],["2024-07-25T14:06:00.010000"],["2024-07-25T14:06:01.010000"],["2024-07-25T14:06:02.010000"],["2024-07-25T14:06:03.010000"],["2024-07-25T14:06:04.010000"],["2024-07-25T14:06:05.010000"],["2024-07-25T14:06:06.010000"],["2024-07-25T14:06:07.010000"],["2024-07-25T14:06:08.010000"],["2024-07-25T14:06:09.010000"],["2024-07-25T14:06:10.010000"],["2024-07-25T14:06:11.010000"],["2024-07-25T14:06:12.010000"],["2024-07-25T14:06:13.010000"],["2024-07-25T14:06:14.010000"],["2024-07-25T14:06:15.010000"],["2024-07-25T14:06:16.010000"],["2024-07-25T14:06:17.010000"],["2024-07-25T14:06:18.010000"],["2024-07-25T14:06:19.010000"],["2024-07-25T14:06:20.010000"],["2024-07-25T14:06:21.010000"],["2024-07-25T14:06:22.010000"],["2024-07-25T14:06:23.010000"],["2024-07-25T14:06:24.010000"],["2024-07-25T14:06:25.010000"],["2024-07-25T14:06:26.010000"],["2024-07-25T14:06:27.010000"],["2024-07-25T14:06:28.010000"],["2024-07-25T14:06:29.010000"],["2024-07-25T14:06:30.010000"],["2024-07-25T14:06:31.010000"],["2024-07-25T14:06:32.010000"],["2024-07-25T14:06:33.010000"],["2024-07-25T14:06:34.010000"],["2024-07-25T14:06:35.010000"],["2024-07-25T14:06:36.010000"],["2024-07-25T14:06:37.010000"],["2024-07-25T14:06:38.010000"],["2024-07-25T14:06:39.010000"],["2024-07-25T14:06:40.010000"],["2024-07-25T14:06:41.010000"],["2024-07-25T14:06:42.010000"],["2024-07-25T14:06:43.010000"],["2024-07-25T14:06:44.010000"],["2024-07-25T14:06:45.010000"],["2024-07-25T14:06:46.010000"],["2024-07-25T14:06:47.010000"],["2024-07-25T14:06:48.010000"],["2024-07-25T14:06:49.010000"],["2024-07-25T14:06:50.010000"],["2024-07-25T14:06:51.010000"],["2024-07-25T14:06:52.010000"],["2024-07-25T14:06:53.010000"],["2024-07-25T14:06:54.010000"],["2024-07-25T14:06:55.010000"],["2024-07-25T14:06:56.010000"],["2024-07-25T14:06:57.010000"],["2024-07-25T14:06:58.010000"],["2024-07-25T14:06:59.010000"],["2024-07-25T14:07:00.010000"],["2024-07-25T14:07:01.010000"],["2024-07-25T14:07:02.010000"],["2024-07-25T14:07:03.010000"],["2024-07-25T14:07:04.010000"],["2024-07-25T14:07:05.010000"],["2024-07-25T14:07:06.010000"],["2024-07-25T14:07:07.010000"],["2024-07-25T14:07:08.010000"],["2024-07-25T14:07:09.010000"],["2024-07-25T14:07:10.010000"],["2024-07-25T14:07:11.010000"],["2024-07-25T14:07:12.010000"],["2024-07-25T14:07:13.010000"],["2024-07-25T14:07:14.010000"],["2024-07-25T14:07:15.010000"],["2024-07-25T14:07:16.010000"],["2024-07-25T14:07:17.010000"],["2024-07-25T14:07:18.010000"],["2024-07-25T14:07:19.010000"],["2024-07-25T14:07:20.010000"],["2024-07-25T14:07:21.010000"],["2024-07-25T14:07:22.010000"],["2024-07-25T14:07:23.010000"],["2024-07-25T14:07:24.010000"],["2024-07-25T14:07:25.010000"],["2024-07-25T14:07:26.010000"],["2024-07-25T14:07:27.010000"],["2024-07-25T14:07:28.010000"],["2024-07-25T14:07:29.010000"],["2024-07-25T14:07:30.010000"],["2024-07-25T14:07:31.010000"],["2024-07-25T14:07:32.010000"],["2024-07-25T14:07:33.010000"],["2024-07-25T14:07:34.010000"],["2024-07-25T14:07:35.010000"],["2024-07-25T14:07:36.010000"],["2024-07-25T14:07:37.010000"],["2024-07-25T14:07:38.010000"],["2024-07-25T14:07:39.010000"],["2024-07-25T14:07:40.010000"],["2024-07-25T14:07:41.010000"],["2024-07-25T14:07:42.010000"],["2024-07-25T14:07:43.010000"],["2024-07-25T14:07:44.010000"],["2024-07-25T14:07:45.010000"],["2024-07-25T14:07:46.010000"],["2024-07-25T14:07:47.010000"],["2024-07-25T14:07:48.010000"],["2024-07-25T14:07:49.010000"],["2024-07-25T14:07:50.010000"],["2024-07-25T14:07:51.010000"],["2024-07-25T14:07:52.010000"],["2024-07-25T14:07:53.010000"],["2024-07-25T14:07:54.010000"],["2024-07-25T14:07:55.010000"],["2024-07-25T14:07:56.010000"],["2024-07-25T14:07:57.010000"],["2024-07-25T14:07:58.010000"],["2024-07-25T14:07:59.010000"],["2024-07-25T14:08:00.010000"],["2024-07-25T14:08:01.010000"],["2024-07-25T14:08:02.010000"],["2024-07-25T14:08:03.010000"],["2024-07-25T14:08:04.010000"],["2024-07-25T14:08:05.010000"],["2024-07-25T14:08:06.010000"],["2024-07-25T14:08:07.010000"],["2024-07-25T14:08:08.010000"],["2024-07-25T14:08:09.010000"],["2024-07-25T14:08:10.010000"],["2024-07-25T14:08:11.010000"],["2024-07-25T14:08:12.010000"],["2024-07-25T14:08:13.010000"],["2024-07-25T14:08:14.010000"],["2024-07-25T14:08:15.010000"],["2024-07-25T14:08:16.010000"],["2024-07-25T14:08:17.010000"],["2024-07-25T14:08:18.010000"],["2024-07-25T14:08:19.010000"],["2024-07-25T14:08:20.010000"],["2024-07-25T14:08:21.010000"],["2024-07-25T14:08:22.010000"],["2024-07-25T14:08:23.010000"],["2024-07-25T14:08:24.010000"],["2024-07-25T14:08:25.010000"],["2024-07-25T14:08:26.010000"],["2024-07-25T14:08:27.010000"],["2024-07-25T14:08:28.010000"],["2024-07-25T14:08:29.010000"],["2024-07-25T14:08:30.010000"],["2024-07-25T14:08:31.010000"],["2024-07-25T14:08:32.010000"],["2024-07-25T14:08:33.010000"],["2024-07-25T14:08:34.010000"],["2024-07-25T14:08:35.010000"],["2024-07-25T14:08:36.010000"],["2024-07-25T14:08:37.010000"],["2024-07-25T14:08:38.010000"],["2024-07-25T14:08:39.010000"],["2024-07-25T14:08:40.010000"],["2024-07-25T14:08:41.010000"],["2024-07-25T14:08:42.010000"],["2024-07-25T14:08:43.010000"],["2024-07-25T14:08:44.010000"],["2024-07-25T14:08:45.010000"],["2024-07-25T14:08:46.010000"],["2024-07-25T14:08:47.010000"],["2024-07-25T14:08:48.010000"],["2024-07-25T14:08:49.010000"],["2024-07-25T14:08:50.010000"],["2024-07-25T14:08:51.010000"],["2024-07-25T14:08:52.010000"],["2024-07-25T14:08:53.010000"],["2024-07-25T14:08:54.010000"],["2024-07-25T14:08:55.010000"],["2024-07-25T14:08:56.010000"],["2024-07-25T14:08:57.010000"],["2024-07-25T14:08:58.010000"],["2024-07-25T14:08:59.010000"],["2024-07-25T14:09:00.010000"],["2024-07-25T14:09:01.010000"],["2024-07-25T14:09:02.010000"],["2024-07-25T14:09:03.010000"],["2024-07-25T14:09:04.010000"],["2024-07-25T14:09:05.010000"],["2024-07-25T14:09:06.010000"],["2024-07-25T14:09:07.010000"],["2024-07-25T14:09:08.010000"],["2024-07-25T14:09:09.010000"],["2024-07-25T14:09:10.010000"],["2024-07-25T14:09:11.010000"],["2024-07-25T14:09:12.010000"],["2024-07-25T14:09:13.010000"],["2024-07-25T14:09:14.010000"],["2024-07-25T14:09:15.010000"],["2024-07-25T14:09:16.010000"],["2024-07-25T14:09:17.010000"],["2024-07-25T14:09:18.010000"],["2024-07-25T14:09:19.010000"],["2024-07-25T14:09:20.010000"],["2024-07-25T14:09:21.010000"],["2024-07-25T14:09:22.010000"],["2024-07-25T14:09:23.010000"],["2024-07-25T14:09:24.010000"],["2024-07-25T14:09:25.010000"],["2024-07-25T14:09:26.010000"],["2024-07-25T14:09:27.010000"],["2024-07-25T14:09:28.010000"],["2024-07-25T14:09:29.010000"],["2024-07-25T14:09:30.010000"],["2024-07-25T14:09:31.010000"],["2024-07-25T14:09:32.010000"],["2024-07-25T14:09:33.010000"],["2024-07-25T14:09:34.010000"],["2024-07-25T14:09:35.010000"],["2024-07-25T14:09:36.010000"],["2024-07-25T14:09:37.010000"],["2024-07-25T14:09:38.010000"],["2024-07-25T14:09:39.010000"],["2024-07-25T14:09:40.010000"],["2024-07-25T14:09:41.010000"],["2024-07-25T14:09:42.010000"],["2024-07-25T14:09:43.010000"],["2024-07-25T14:09:44.010000"],["2024-07-25T14:09:45.010000"],["2024-07-25T14:09:46.010000"],["2024-07-25T14:09:47.010000"],["2024-07-25T14:09:48.010000"],["2024-07-25T14:09:49.010000"],["2024-07-25T14:09:50.010000"],["2024-07-25T14:09:51.010000"],["2024-07-25T14:09:52.010000"],["2024-07-25T14:09:53.010000"],["2024-07-25T14:09:54.010000"],["2024-07-25T14:09:55.010000"],["2024-07-25T14:09:56.010000"],["2024-07-25T14:09:57.010000"],["2024-07-25T14:09:58.010000"],["2024-07-25T14:09:59.010000"],["2024-07-25T14:10:00.010000"],["2024-07-25T14:10:01.010000"],["2024-07-25T14:10:02.010000"],["2024-07-25T14:10:03.010000"],["2024-07-25T14:10:04.010000"],["2024-07-25T14:10:05.010000"],["2024-07-25T14:10:06.010000"],["2024-07-25T14:10:07.010000"],["2024-07-25T14:10:08.010000"],["2024-07-25T14:10:09.010000"],["2024-07-25T14:10:10.010000"],["2024-07-25T14:10:11.010000"],["2024-07-25T14:10:12.010000"],["2024-07-25T14:10:13.010000"],["2024-07-25T14:10:14.010000"],["2024-07-25T14:10:15.010000"],["2024-07-25T14:10:16.010000"],["2024-07-25T14:10:17.010000"],["2024-07-25T14:10:18.010000"],["2024-07-25T14:10:19.010000"],["2024-07-25T14:10:20.010000"],["2024-07-25T14:10:21.010000"],["2024-07-25T14:10:22.010000"],["2024-07-25T14:10:23.010000"],["2024-07-25T14:10:24.010000"],["2024-07-25T14:10:25.010000"],["2024-07-25T14:10:26.010000"],["2024-07-25T14:10:27.010000"],["2024-07-25T14:10:28.010000"],["2024-07-25T14:10:29.010000"],["2024-07-25T14:10:30.010000"],["2024-07-25T14:10:31.010000"],["2024-07-25T14:10:32.010000"],["2024-07-25T14:10:33.010000"],["2024-07-25T14:10:34.010000"],["2024-07-25T14:10:35.010000"],["2024-07-25T14:10:36.010000"],["2024-07-25T14:10:37.010000"],["2024-07-25T14:10:38.010000"],["2024-07-25T14:10:39.010000"],["2024-07-25T14:10:40.010000"],["2024-07-25T14:10:41.010000"],["2024-07-25T14:10:42.010000"],["2024-07-25T14:10:43.010000"],["2024-07-25T14:10:44.010000"],["2024-07-25T14:10:45.010000"],["2024-07-25T14:10:46.010000"],["2024-07-25T14:10:47.010000"],["2024-07-25T14:10:48.010000"],["2024-07-25T14:10:49.010000"],["2024-07-25T14:10:50.010000"],["2024-07-25T14:10:51.010000"],["2024-07-25T14:10:52.010000"],["2024-07-25T14:10:53.010000"],["2024-07-25T14:10:54.010000"],["2024-07-25T14:10:55.010000"],["2024-07-25T14:10:56.010000"],["2024-07-25T14:10:57.010000"],["2024-07-25T14:10:58.010000"],["2024-07-25T14:10:59.010000"],["2024-07-25T14:11:00.010000"],["2024-07-25T14:11:01.010000"],["2024-07-25T14:11:02.010000"],["2024-07-25T14:11:03.010000"],["2024-07-25T14:11:04.010000"],["2024-07-25T14:11:05.010000"],["2024-07-25T14:11:06.010000"],["2024-07-25T14:11:07.010000"],["2024-07-25T14:11:08.010000"],["2024-07-25T14:11:09.010000"],["2024-07-25T14:11:10.010000"],["2024-07-25T14:11:11.010000"],["2024-07-25T14:11:12.010000"],["2024-07-25T14:11:13.010000"],["2024-07-25T14:11:14.010000"],["2024-07-25T14:11:15.010000"],["2024-07-25T14:11:16.010000"],["2024-07-25T14:11:17.010000"],["2024-07-25T14:11:18.010000"],["2024-07-25T14:11:19.010000"],["2024-07-25T14:11:20.010000"],["2024-07-25T14:11:21.010000"],["2024-07-25T14:11:22.010000"],["2024-07-25T14:11:23.010000"],["2024-07-25T14:11:24.010000"],["2024-07-25T14:11:25.010000"],["2024-07-25T14:11:26.010000"],["2024-07-25T14:11:27.010000"],["2024-07-25T14:11:28.010000"],["2024-07-25T14:11:29.010000"],["2024-07-25T14:11:30.010000"],["2024-07-25T14:11:31.010000"],["2024-07-25T14:11:32.010000"],["2024-07-25T14:11:33.010000"],["2024-07-25T14:11:34.010000"],["2024-07-25T14:11:35.010000"],["2024-07-25T14:11:36.010000"],["2024-07-25T14:11:37.010000"],["2024-07-25T14:11:38.010000"],["2024-07-25T14:11:39.010000"],["2024-07-25T14:11:40.010000"],["2024-07-25T14:11:41.010000"],["2024-07-25T14:11:42.010000"],["2024-07-25T14:11:43.010000"],["2024-07-25T14:11:44.010000"],["2024-07-25T14:11:45.010000"],["2024-07-25T14:11:46.010000"],["2024-07-25T14:11:47.010000"],["2024-07-25T14:11:48.010000"],["2024-07-25T14:11:49.010000"],["2024-07-25T14:11:50.010000"],["2024-07-25T14:11:51.010000"],["2024-07-25T14:11:52.010000"],["2024-07-25T14:11:53.010000"],["2024-07-25T14:11:54.010000"],["2024-07-25T14:11:55.010000"],["2024-07-25T14:11:56.010000"],["2024-07-25T14:11:57.010000"],["2024-07-25T14:11:58.010000"],["2024-07-25T14:11:59.010000"],["2024-07-25T14:12:00.010000"],["2024-07-25T14:12:01.010000"],["2024-07-25T14:12:02.010000"],["2024-07-25T14:12:03.010000"],["2024-07-25T14:12:04.010000"],["2024-07-25T14:12:05.010000"],["2024-07-25T14:12:06.010000"],["2024-07-25T14:12:07.010000"],["2024-07-25T14:12:08.010000"],["2024-07-25T14:12:09.010000"],["2024-07-25T14:12:10.010000"],["2024-07-25T14:12:11.010000"],["2024-07-25T14:12:12.010000"],["2024-07-25T14:12:13.010000"],["2024-07-25T14:12:14.010000"],["2024-07-25T14:12:15.010000"],["2024-07-25T14:12:16.010000"],["2024-07-25T14:12:17.010000"],["2024-07-25T14:12:18.010000"],["2024-07-25T14:12:19.010000"],["2024-07-25T14:12:20.010000"],["2024-07-25T14:12:21.010000"],["2024-07-25T14:12:22.010000"],["2024-07-25T14:12:23.010000"],["2024-07-25T14:12:24.010000"],["2024-07-25T14:12:25.010000"],["2024-07-25T14:12:26.010000"],["2024-07-25T14:12:27.010000"],["2024-07-25T14:12:28.010000"],["2024-07-25T14:12:29.010000"],["2024-07-25T14:12:30.010000"],["2024-07-25T14:12:31.010000"],["2024-07-25T14:12:32.010000"],["2024-07-25T14:12:33.010000"],["2024-07-25T14:12:34.010000"],["2024-07-25T14:12:35.010000"],["2024-07-25T14:12:36.010000"],["2024-07-25T14:12:37.010000"],["2024-07-25T14:12:38.010000"],["2024-07-25T14:12:39.010000"],["2024-07-25T14:12:40.010000"],["2024-07-25T14:12:41.010000"],["2024-07-25T14:12:42.010000"],["2024-07-25T14:12:43.010000"],["2024-07-25T14:12:44.010000"],["2024-07-25T14:12:45.010000"],["2024-07-25T14:12:46.010000"],["2024-07-25T14:12:47.010000"],["2024-07-25T14:12:48.010000"],["2024-07-25T14:12:49.010000"],["2024-07-25T14:12:50.010000"],["2024-07-25T14:12:51.010000"],["2024-07-25T14:12:52.010000"],["2024-07-25T14:12:53.010000"],["2024-07-25T14:12:54.010000"],["2024-07-25T14:12:55.010000"],["2024-07-25T14:12:56.010000"],["2024-07-25T14:12:57.010000"],["2024-07-25T14:12:58.010000"],["2024-07-25T14:12:59.010000"],["2024-07-25T14:13:00.010000"],["2024-07-25T14:13:01.010000"],["2024-07-25T14:13:02.010000"],["2024-07-25T14:13:03.010000"],["2024-07-25T14:13:04.010000"],["2024-07-25T14:13:05.010000"],["2024-07-25T14:13:06.010000"],["2024-07-25T14:13:07.010000"],["2024-07-25T14:13:08.010000"],["2024-07-25T14:13:09.010000"],["2024-07-25T14:13:10.010000"],["2024-07-25T14:13:11.010000"],["2024-07-25T14:13:12.010000"],["2024-07-25T14:13:13.010000"],["2024-07-25T14:13:14.010000"],["2024-07-25T14:13:15.010000"],["2024-07-25T14:13:16.010000"],["2024-07-25T14:13:17.010000"],["2024-07-25T14:13:18.010000"],["2024-07-25T14:13:19.010000"],["2024-07-25T14:13:20.010000"],["2024-07-25T14:13:21.010000"],["2024-07-25T14:13:22.010000"],["2024-07-25T14:13:23.010000"],["2024-07-25T14:13:24.010000"],["2024-07-25T14:13:25.010000"],["2024-07-25T14:13:26.010000"],["2024-07-25T14:13:27.010000"],["2024-07-25T14:13:28.010000"],["2024-07-25T14:13:29.010000"],["2024-07-25T14:13:30.010000"],["2024-07-25T14:13:31.010000"],["2024-07-25T14:13:32.010000"],["2024-07-25T14:13:33.010000"],["2024-07-25T14:13:34.010000"],["2024-07-25T14:13:35.010000"],["2024-07-25T14:13:36.010000"],["2024-07-25T14:13:37.010000"],["2024-07-25T14:13:38.010000"],["2024-07-25T14:13:39.010000"],["2024-07-25T14:13:40.010000"],["2024-07-25T14:13:41.010000"],["2024-07-25T14:13:42.010000"],["2024-07-25T14:13:43.010000"],["2024-07-25T14:13:44.010000"],["2024-07-25T14:13:45.010000"],["2024-07-25T14:13:46.010000"],["2024-07-25T14:13:47.010000"],["2024-07-25T14:13:48.010000"],["2024-07-25T14:13:49.010000"],["2024-07-25T14:13:50.010000"],["2024-07-25T14:13:51.010000"],["2024-07-25T14:13:52.010000"],["2024-07-25T14:13:53.010000"],["2024-07-25T14:13:54.010000"],["2024-07-25T14:13:55.010000"],["2024-07-25T14:13:56.010000"],["2024-07-25T14:13:57.010000"],["2024-07-25T14:13:58.010000"],["2024-07-25T14:13:59.010000"],["2024-07-25T14:14:00.010000"],["2024-07-25T14:14:01.010000"],["2024-07-25T14:14:02.010000"],["2024-07-25T14:14:03.010000"],["2024-07-25T14:14:04.010000"],["2024-07-25T14:14:05.010000"],["2024-07-25T14:14:06.010000"],["2024-07-25T14:14:07.010000"],["2024-07-25T14:14:08.010000"],["2024-07-25T14:14:09.010000"],["2024-07-25T14:14:10.010000"],["2024-07-25T14:14:11.010000"],["2024-07-25T14:14:12.010000"],["2024-07-25T14:14:13.010000"],["2024-07-25T14:14:14.010000"],["2024-07-25T14:14:15.010000"],["2024-07-25T14:14:16.010000"],["2024-07-25T14:14:17.010000"],["2024-07-25T14:14:18.010000"],["2024-07-25T14:14:19.010000"],["2024-07-25T14:14:20.010000"],["2024-07-25T14:14:21.010000"],["2024-07-25T14:14:22.010000"],["2024-07-25T14:14:23.010000"],["2024-07-25T14:14:24.010000"],["2024-07-25T14:14:25.010000"],["2024-07-25T14:14:26.010000"],["2024-07-25T14:14:27.010000"],["2024-07-25T14:14:28.010000"],["2024-07-25T14:14:29.010000"],["2024-07-25T14:14:30.010000"],["2024-07-25T14:14:31.010000"],["2024-07-25T14:14:32.010000"],["2024-07-25T14:14:33.010000"],["2024-07-25T14:14:34.010000"],["2024-07-25T14:14:35.010000"],["2024-07-25T14:14:36.010000"],["2024-07-25T14:14:37.010000"],["2024-07-25T14:14:38.010000"],["2024-07-25T14:14:39.010000"],["2024-07-25T14:14:40.010000"],["2024-07-25T14:14:41.010000"],["2024-07-25T14:14:42.010000"],["2024-07-25T14:14:43.010000"],["2024-07-25T14:14:44.010000"],["2024-07-25T14:14:45.010000"],["2024-07-25T14:14:46.010000"],["2024-07-25T14:14:47.010000"],["2024-07-25T14:14:48.010000"],["2024-07-25T14:14:49.010000"],["2024-07-25T14:14:50.010000"],["2024-07-25T14:14:51.010000"],["2024-07-25T14:14:52.010000"],["2024-07-25T14:14:53.010000"],["2024-07-25T14:14:54.010000"],["2024-07-25T14:14:55.010000"],["2024-07-25T14:14:56.010000"],["2024-07-25T14:14:57.010000"],["2024-07-25T14:14:58.010000"],["2024-07-25T14:14:59.010000"],["2024-07-25T14:15:00.010000"],["2024-07-25T14:15:01.010000"],["2024-07-25T14:15:02.010000"],["2024-07-25T14:15:03.010000"],["2024-07-25T14:15:04.010000"],["2024-07-25T14:15:05.010000"],["2024-07-25T14:15:06.010000"],["2024-07-25T14:15:07.010000"],["2024-07-25T14:15:08.010000"],["2024-07-25T14:15:09.010000"],["2024-07-25T14:15:10.010000"],["2024-07-25T14:15:11.010000"],["2024-07-25T14:15:12.010000"],["2024-07-25T14:15:13.010000"],["2024-07-25T14:15:14.010000"],["2024-07-25T14:15:15.010000"],["2024-07-25T14:15:16.010000"],["2024-07-25T14:15:17.010000"],["2024-07-25T14:15:18.010000"],["2024-07-25T14:15:19.010000"],["2024-07-25T14:15:20.010000"],["2024-07-25T14:15:21.010000"],["2024-07-25T14:15:22.010000"],["2024-07-25T14:15:23.010000"],["2024-07-25T14:15:24.010000"],["2024-07-25T14:15:25.010000"],["2024-07-25T14:15:26.010000"],["2024-07-25T14:15:27.010000"],["2024-07-25T14:15:28.010000"],["2024-07-25T14:15:29.010000"],["2024-07-25T14:15:30.010000"],["2024-07-25T14:15:31.010000"],["2024-07-25T14:15:32.010000"],["2024-07-25T14:15:33.010000"],["2024-07-25T14:15:34.010000"],["2024-07-25T14:15:35.010000"],["2024-07-25T14:15:36.010000"],["2024-07-25T14:15:37.010000"],["2024-07-25T14:15:38.010000"],["2024-07-25T14:15:39.010000"],["2024-07-25T14:15:40.010000"],["2024-07-25T14:15:41.010000"],["2024-07-25T14:15:42.010000"],["2024-07-25T14:15:43.010000"],["2024-07-25T14:15:44.010000"],["2024-07-25T14:15:45.010000"],["2024-07-25T14:15:46.010000"],["2024-07-25T14:15:47.010000"],["2024-07-25T14:15:48.010000"],["2024-07-25T14:15:49.010000"],["2024-07-25T14:15:50.010000"],["2024-07-25T14:15:51.010000"],["2024-07-25T14:15:52.010000"],["2024-07-25T14:15:53.010000"],["2024-07-25T14:15:54.010000"],["2024-07-25T14:15:55.010000"],["2024-07-25T14:15:56.010000"],["2024-07-25T14:15:57.010000"],["2024-07-25T14:15:58.010000"],["2024-07-25T14:15:59.010000"],["2024-07-25T14:16:00.010000"],["2024-07-25T14:16:01.010000"],["2024-07-25T14:16:02.010000"],["2024-07-25T14:16:03.010000"],["2024-07-25T14:16:04.010000"],["2024-07-25T14:16:05.010000"],["2024-07-25T14:16:06.010000"],["2024-07-25T14:16:07.010000"],["2024-07-25T14:16:08.010000"],["2024-07-25T14:16:09.010000"],["2024-07-25T14:16:10.010000"],["2024-07-25T14:16:11.010000"],["2024-07-25T14:16:12.010000"],["2024-07-25T14:16:13.010000"],["2024-07-25T14:16:14.010000"],["2024-07-25T14:16:15.010000"],["2024-07-25T14:16:16.010000"],["2024-07-25T14:16:17.010000"],["2024-07-25T14:16:18.010000"],["2024-07-25T14:16:19.010000"],["2024-07-25T14:16:20.010000"],["2024-07-25T14:16:21.010000"],["2024-07-25T14:16:22.010000"],["2024-07-25T14:16:23.010000"],["2024-07-25T14:16:24.010000"],["2024-07-25T14:16:25.010000"],["2024-07-25T14:16:26.010000"],["2024-07-25T14:16:27.010000"],["2024-07-25T14:16:28.010000"],["2024-07-25T14:16:29.010000"],["2024-07-25T14:16:30.010000"],["2024-07-25T14:16:31.010000"],["2024-07-25T14:16:32.010000"],["2024-07-25T14:16:33.010000"],["2024-07-25T14:16:34.010000"],["2024-07-25T14:16:35.010000"],["2024-07-25T14:16:36.010000"],["2024-07-25T14:16:37.010000"],["2024-07-25T14:16:38.010000"],["2024-07-25T14:16:39.010000"],["2024-07-25T14:16:40.010000"],["2024-07-25T14:16:41.010000"],["2024-07-25T14:16:42.010000"],["2024-07-25T14:16:43.010000"],["2024-07-25T14:16:44.010000"],["2024-07-25T14:16:45.010000"],["2024-07-25T14:16:46.010000"],["2024-07-25T14:16:47.010000"],["2024-07-25T14:16:48.010000"],["2024-07-25T14:16:49.010000"],["2024-07-25T14:16:50.010000"],["2024-07-25T14:16:51.010000"],["2024-07-25T14:16:52.010000"],["2024-07-25T14:16:53.010000"],["2024-07-25T14:16:54.010000"],["2024-07-25T14:16:55.010000"],["2024-07-25T14:16:56.010000"],["2024-07-25T14:16:57.010000"],["2024-07-25T14:16:58.010000"],["2024-07-25T14:16:59.010000"],["2024-07-25T14:17:00.010000"],["2024-07-25T14:17:01.010000"],["2024-07-25T14:17:02.010000"],["2024-07-25T14:17:03.010000"],["2024-07-25T14:17:04.010000"],["2024-07-25T14:17:05.010000"],["2024-07-25T14:17:06.010000"],["2024-07-25T14:17:07.010000"],["2024-07-25T14:17:08.010000"],["2024-07-25T14:17:09.010000"],["2024-07-25T14:17:10.010000"],["2024-07-25T14:17:11.010000"],["2024-07-25T14:17:12.010000"],["2024-07-25T14:17:13.010000"],["2024-07-25T14:17:14.010000"],["2024-07-25T14:17:15.010000"],["2024-07-25T14:17:16.010000"],["2024-07-25T14:17:17.010000"],["2024-07-25T14:17:18.010000"],["2024-07-25T14:17:19.010000"],["2024-07-25T14:17:20.010000"],["2024-07-25T14:17:21.010000"],["2024-07-25T14:17:22.010000"],["2024-07-25T14:17:23.010000"],["2024-07-25T14:17:24.010000"],["2024-07-25T14:17:25.010000"],["2024-07-25T14:17:26.010000"],["2024-07-25T14:17:27.010000"],["2024-07-25T14:17:28.010000"],["2024-07-25T14:17:29.010000"],["2024-07-25T14:17:30.010000"],["2024-07-25T14:17:31.010000"],["2024-07-25T14:17:32.010000"],["2024-07-25T14:17:33.010000"],["2024-07-25T14:17:34.010000"],["2024-07-25T14:17:35.010000"],["2024-07-25T14:17:36.010000"],["2024-07-25T14:17:37.010000"],["2024-07-25T14:17:38.010000"],["2024-07-25T14:17:39.010000"],["2024-07-25T14:17:40.010000"],["2024-07-25T14:17:41.010000"],["2024-07-25T14:17:42.010000"],["2024-07-25T14:17:43.010000"],["2024-07-25T14:17:44.010000"],["2024-07-25T14:17:45.010000"],["2024-07-25T14:17:46.010000"],["2024-07-25T14:17:47.010000"],["2024-07-25T14:17:48.010000"],["2024-07-25T14:17:49.010000"],["2024-07-25T14:17:50.010000"],["2024-07-25T14:17:51.010000"],["2024-07-25T14:17:52.010000"],["2024-07-25T14:17:53.010000"],["2024-07-25T14:17:54.010000"],["2024-07-25T14:17:55.010000"],["2024-07-25T14:17:56.010000"],["2024-07-25T14:17:57.010000"],["2024-07-25T14:17:58.010000"],["2024-07-25T14:17:59.010000"],["2024-07-25T14:18:00.010000"],["2024-07-25T14:18:01.010000"],["2024-07-25T14:18:02.010000"],["2024-07-25T14:18:03.010000"],["2024-07-25T14:18:04.010000"],["2024-07-25T14:18:05.010000"],["2024-07-25T14:18:06.010000"],["2024-07-25T14:18:07.010000"],["2024-07-25T14:18:08.010000"],["2024-07-25T14:18:09.010000"],["2024-07-25T14:18:10.010000"],["2024-07-25T14:18:11.010000"],["2024-07-25T14:18:12.010000"],["2024-07-25T14:18:13.010000"],["2024-07-25T14:18:14.010000"],["2024-07-25T14:18:15.010000"],["2024-07-25T14:18:16.010000"],["2024-07-25T14:18:17.010000"],["2024-07-25T14:18:18.010000"],["2024-07-25T14:18:19.010000"],["2024-07-25T14:18:20.010000"],["2024-07-25T14:18:21.010000"],["2024-07-25T14:18:22.010000"],["2024-07-25T14:18:23.010000"],["2024-07-25T14:18:24.010000"],["2024-07-25T14:18:25.010000"],["2024-07-25T14:18:26.010000"],["2024-07-25T14:18:27.010000"],["2024-07-25T14:18:28.010000"],["2024-07-25T14:18:29.010000"],["2024-07-25T14:18:30.010000"],["2024-07-25T14:18:31.010000"],["2024-07-25T14:18:32.010000"],["2024-07-25T14:18:33.010000"],["2024-07-25T14:18:34.010000"],["2024-07-25T14:18:35.010000"],["2024-07-25T14:18:36.010000"],["2024-07-25T14:18:37.010000"],["2024-07-25T14:18:38.010000"],["2024-07-25T14:18:39.010000"],["2024-07-25T14:18:40.010000"],["2024-07-25T14:18:41.010000"],["2024-07-25T14:18:42.010000"],["2024-07-25T14:18:43.010000"],["2024-07-25T14:18:44.010000"],["2024-07-25T14:18:45.010000"],["2024-07-25T14:18:46.010000"],["2024-07-25T14:18:47.010000"],["2024-07-25T14:18:48.010000"],["2024-07-25T14:18:49.010000"],["2024-07-25T14:18:50.010000"],["2024-07-25T14:18:51.010000"],["2024-07-25T14:18:52.010000"],["2024-07-25T14:18:53.010000"],["2024-07-25T14:18:54.010000"],["2024-07-25T14:18:55.010000"],["2024-07-25T14:18:56.010000"],["2024-07-25T14:18:57.010000"],["2024-07-25T14:18:58.010000"],["2024-07-25T14:18:59.010000"],["2024-07-25T14:19:00.010000"],["2024-07-25T14:19:01.010000"],["2024-07-25T14:19:02.010000"],["2024-07-25T14:19:03.010000"],["2024-07-25T14:19:04.010000"],["2024-07-25T14:19:05.010000"],["2024-07-25T14:19:06.010000"],["2024-07-25T14:19:07.010000"],["2024-07-25T14:19:08.010000"],["2024-07-25T14:19:09.010000"],["2024-07-25T14:19:10.010000"],["2024-07-25T14:19:11.010000"],["2024-07-25T14:19:12.010000"],["2024-07-25T14:19:13.010000"],["2024-07-25T14:19:14.010000"],["2024-07-25T14:19:15.010000"],["2024-07-25T14:19:16.010000"],["2024-07-25T14:19:17.010000"],["2024-07-25T14:19:18.010000"],["2024-07-25T14:19:19.010000"],["2024-07-25T14:19:20.010000"],["2024-07-25T14:19:21.010000"],["2024-07-25T14:19:22.010000"],["2024-07-25T14:19:23.010000"],["2024-07-25T14:19:24.010000"],["2024-07-25T14:19:25.010000"],["2024-07-25T14:19:26.010000"],["2024-07-25T14:19:27.010000"],["2024-07-25T14:19:28.010000"],["2024-07-25T14:19:29.010000"],["2024-07-25T14:19:30.010000"],["2024-07-25T14:19:31.010000"],["2024-07-25T14:19:32.010000"],["2024-07-25T14:19:33.010000"],["2024-07-25T14:19:34.010000"],["2024-07-25T14:19:35.010000"],["2024-07-25T14:19:36.010000"],["2024-07-25T14:19:37.010000"],["2024-07-25T14:19:38.010000"],["2024-07-25T14:19:39.010000"],["2024-07-25T14:19:40.010000"],["2024-07-25T14:19:41.010000"],["2024-07-25T14:19:42.010000"],["2024-07-25T14:19:43.010000"],["2024-07-25T14:19:44.010000"],["2024-07-25T14:19:45.010000"],["2024-07-25T14:19:46.010000"],["2024-07-25T14:19:47.010000"],["2024-07-25T14:19:48.010000"],["2024-07-25T14:19:49.010000"],["2024-07-25T14:19:50.010000"],["2024-07-25T14:19:51.010000"],["2024-07-25T14:19:52.010000"],["2024-07-25T14:19:53.010000"],["2024-07-25T14:19:54.010000"],["2024-07-25T14:19:55.010000"],["2024-07-25T14:19:56.010000"],["2024-07-25T14:19:57.010000"],["2024-07-25T14:19:58.010000"],["2024-07-25T14:19:59.010000"],["2024-07-25T14:20:00.010000"],["2024-07-25T14:20:01.010000"],["2024-07-25T14:20:02.010000"],["2024-07-25T14:20:03.010000"],["2024-07-25T14:20:04.010000"],["2024-07-25T14:20:05.010000"],["2024-07-25T14:20:06.010000"],["2024-07-25T14:20:07.010000"],["2024-07-25T14:20:08.010000"],["2024-07-25T14:20:09.010000"],["2024-07-25T14:20:10.010000"],["2024-07-25T14:20:11.010000"],["2024-07-25T14:20:12.010000"],["2024-07-25T14:20:13.010000"],["2024-07-25T14:20:14.010000"],["2024-07-25T14:20:15.010000"],["2024-07-25T14:20:16.010000"],["2024-07-25T14:20:17.010000"],["2024-07-25T14:20:18.010000"],["2024-07-25T14:20:19.010000"],["2024-07-25T14:20:20.010000"],["2024-07-25T14:20:21.010000"],["2024-07-25T14:20:22.010000"],["2024-07-25T14:20:23.010000"],["2024-07-25T14:20:24.010000"],["2024-07-25T14:20:25.010000"],["2024-07-25T14:20:26.010000"],["2024-07-25T14:20:27.010000"],["2024-07-25T14:20:28.010000"],["2024-07-25T14:20:29.010000"],["2024-07-25T14:20:30.010000"],["2024-07-25T14:20:31.010000"],["2024-07-25T14:20:32.010000"],["2024-07-25T14:20:33.010000"],["2024-07-25T14:20:34.010000"],["2024-07-25T14:20:35.010000"],["2024-07-25T14:20:36.010000"],["2024-07-25T14:20:37.010000"],["2024-07-25T14:20:38.010000"],["2024-07-25T14:20:39.010000"],["2024-07-25T14:20:40.010000"],["2024-07-25T14:20:41.010000"],["2024-07-25T14:20:42.010000"],["2024-07-25T14:20:43.010000"],["2024-07-25T14:20:44.010000"],["2024-07-25T14:20:45.010000"],["2024-07-25T14:20:46.010000"],["2024-07-25T14:20:47.010000"],["2024-07-25T14:20:48.010000"],["2024-07-25T14:20:49.010000"],["2024-07-25T14:20:50.010000"],["2024-07-25T14:20:51.010000"],["2024-07-25T14:20:52.010000"],["2024-07-25T14:20:53.010000"],["2024-07-25T14:20:54.010000"],["2024-07-25T14:20:55.010000"],["2024-07-25T14:20:56.010000"],["2024-07-25T14:20:57.010000"],["2024-07-25T14:20:58.010000"],["2024-07-25T14:20:59.010000"],["2024-07-25T14:21:00.010000"],["2024-07-25T14:21:01.010000"],["2024-07-25T14:21:02.010000"],["2024-07-25T14:21:03.010000"],["2024-07-25T14:21:04.010000"],["2024-07-25T14:21:05.010000"],["2024-07-25T14:21:06.010000"],["2024-07-25T14:21:07.010000"],["2024-07-25T14:21:08.010000"],["2024-07-25T14:21:09.010000"],["2024-07-25T14:21:10.010000"],["2024-07-25T14:21:11.010000"],["2024-07-25T14:21:12.010000"],["2024-07-25T14:21:13.010000"],["2024-07-25T14:21:14.010000"],["2024-07-25T14:21:15.010000"],["2024-07-25T14:21:16.010000"],["2024-07-25T14:21:17.010000"],["2024-07-25T14:21:18.010000"],["2024-07-25T14:21:19.010000"],["2024-07-25T14:21:20.010000"],["2024-07-25T14:21:21.010000"],["2024-07-25T14:21:22.010000"],["2024-07-25T14:21:23.010000"],["2024-07-25T14:21:24.010000"],["2024-07-25T14:21:25.010000"],["2024-07-25T14:21:26.010000"],["2024-07-25T14:21:27.010000"],["2024-07-25T14:21:28.010000"],["2024-07-25T14:21:29.010000"],["2024-07-25T14:21:30.010000"],["2024-07-25T14:21:31.010000"],["2024-07-25T14:21:32.010000"],["2024-07-25T14:21:33.010000"],["2024-07-25T14:21:34.010000"],["2024-07-25T14:21:35.010000"],["2024-07-25T14:21:36.010000"],["2024-07-25T14:21:37.010000"],["2024-07-25T14:21:38.010000"],["2024-07-25T14:21:39.010000"],["2024-07-25T14:21:40.010000"],["2024-07-25T14:21:41.010000"],["2024-07-25T14:21:42.010000"],["2024-07-25T14:21:43.010000"],["2024-07-25T14:21:44.010000"],["2024-07-25T14:21:45.010000"],["2024-07-25T14:21:46.010000"],["2024-07-25T14:21:47.010000"],["2024-07-25T14:21:48.010000"],["2024-07-25T14:21:49.010000"],["2024-07-25T14:21:50.010000"],["2024-07-25T14:21:51.010000"],["2024-07-25T14:21:52.010000"],["2024-07-25T14:21:53.010000"],["2024-07-25T14:21:54.010000"],["2024-07-25T14:21:55.010000"],["2024-07-25T14:21:56.010000"],["2024-07-25T14:21:57.010000"],["2024-07-25T14:21:58.010000"],["2024-07-25T14:21:59.010000"],["2024-07-25T14:22:00.010000"],["2024-07-25T14:22:01.010000"],["2024-07-25T14:22:02.010000"],["2024-07-25T14:22:03.010000"],["2024-07-25T14:22:04.010000"],["2024-07-25T14:22:05.010000"],["2024-07-25T14:22:06.010000"],["2024-07-25T14:22:07.010000"],["2024-07-25T14:22:08.010000"],["2024-07-25T14:22:09.010000"],["2024-07-25T14:22:10.010000"],["2024-07-25T14:22:11.010000"],["2024-07-25T14:22:12.010000"],["2024-07-25T14:22:13.010000"],["2024-07-25T14:22:14.010000"],["2024-07-25T14:22:15.010000"],["2024-07-25T14:22:16.010000"],["2024-07-25T14:22:17.010000"],["2024-07-25T14:22:18.010000"],["2024-07-25T14:22:19.010000"],["2024-07-25T14:22:20.010000"],["2024-07-25T14:22:21.010000"],["2024-07-25T14:22:22.010000"],["2024-07-25T14:22:23.010000"],["2024-07-25T14:22:24.010000"],["2024-07-25T14:22:25.010000"],["2024-07-25T14:22:26.010000"],["2024-07-25T14:22:27.010000"],["2024-07-25T14:22:28.010000"],["2024-07-25T14:22:29.010000"],["2024-07-25T14:22:30.010000"],["2024-07-25T14:22:31.010000"],["2024-07-25T14:22:32.010000"],["2024-07-25T14:22:33.010000"],["2024-07-25T14:22:34.010000"],["2024-07-25T14:22:35.010000"],["2024-07-25T14:22:36.010000"],["2024-07-25T14:22:37.010000"],["2024-07-25T14:22:38.010000"],["2024-07-25T14:22:39.010000"],["2024-07-25T14:22:40.010000"],["2024-07-25T14:22:41.010000"],["2024-07-25T14:22:42.010000"],["2024-07-25T14:22:43.010000"],["2024-07-25T14:22:44.010000"],["2024-07-25T14:22:45.010000"],["2024-07-25T14:22:46.010000"],["2024-07-25T14:22:47.010000"],["2024-07-25T14:22:48.010000"],["2024-07-25T14:22:49.010000"],["2024-07-25T14:22:50.010000"],["2024-07-25T14:22:51.010000"],["2024-07-25T14:22:52.010000"],["2024-07-25T14:22:53.010000"],["2024-07-25T14:22:54.010000"],["2024-07-25T14:22:55.010000"],["2024-07-25T14:22:56.010000"],["2024-07-25T14:22:57.010000"],["2024-07-25T14:22:58.010000"],["2024-07-25T14:22:59.010000"],["2024-07-25T14:23:00.010000"],["2024-07-25T14:23:01.010000"],["2024-07-25T14:23:02.010000"],["2024-07-25T14:23:03.010000"],["2024-07-25T14:23:04.010000"],["2024-07-25T14:23:05.010000"],["2024-07-25T14:23:06.010000"],["2024-07-25T14:23:07.010000"],["2024-07-25T14:23:08.010000"],["2024-07-25T14:23:09.010000"],["2024-07-25T14:23:10.010000"],["2024-07-25T14:23:11.010000"],["2024-07-25T14:23:12.010000"],["2024-07-25T14:23:13.010000"],["2024-07-25T14:23:14.010000"],["2024-07-25T14:23:15.010000"],["2024-07-25T14:23:16.010000"],["2024-07-25T14:23:17.010000"],["2024-07-25T14:23:18.010000"],["2024-07-25T14:23:19.010000"],["2024-07-25T14:23:20.010000"],["2024-07-25T14:23:21.010000"],["2024-07-25T14:23:22.010000"],["2024-07-25T14:23:23.010000"],["2024-07-25T14:23:24.010000"],["2024-07-25T14:23:25.010000"],["2024-07-25T14:23:26.010000"],["2024-07-25T14:23:27.010000"],["2024-07-25T14:23:28.010000"],["2024-07-25T14:23:29.010000"],["2024-07-25T14:23:30.010000"],["2024-07-25T14:23:31.010000"],["2024-07-25T14:23:32.010000"],["2024-07-25T14:23:33.010000"],["2024-07-25T14:23:34.010000"],["2024-07-25T14:23:35.010000"],["2024-07-25T14:23:36.010000"],["2024-07-25T14:23:37.010000"],["2024-07-25T14:23:38.010000"],["2024-07-25T14:23:39.010000"],["2024-07-25T14:23:40.010000"],["2024-07-25T14:23:41.010000"],["2024-07-25T14:23:42.010000"],["2024-07-25T14:23:43.010000"],["2024-07-25T14:23:44.010000"],["2024-07-25T14:23:45.010000"],["2024-07-25T14:23:46.010000"],["2024-07-25T14:23:47.010000"],["2024-07-25T14:23:48.010000"],["2024-07-25T14:23:49.010000"],["2024-07-25T14:23:50.010000"],["2024-07-25T14:23:51.010000"],["2024-07-25T14:23:52.010000"],["2024-07-25T14:23:53.010000"],["2024-07-25T14:23:54.010000"],["2024-07-25T14:23:55.010000"],["2024-07-25T14:23:56.010000"],["2024-07-25T14:23:57.010000"],["2024-07-25T14:23:58.010000"],["2024-07-25T14:23:59.010000"],["2024-07-25T14:24:00.010000"],["2024-07-25T14:24:01.010000"],["2024-07-25T14:24:02.010000"],["2024-07-25T14:24:03.010000"],["2024-07-25T14:24:04.010000"],["2024-07-25T14:24:05.010000"],["2024-07-25T14:24:06.010000"],["2024-07-25T14:24:07.010000"],["2024-07-25T14:24:08.010000"],["2024-07-25T14:24:09.010000"],["2024-07-25T14:24:10.010000"],["2024-07-25T14:24:11.010000"],["2024-07-25T14:24:12.010000"],["2024-07-25T14:24:13.010000"],["2024-07-25T14:24:14.010000"],["2024-07-25T14:24:15.010000"],["2024-07-25T14:24:16.010000"],["2024-07-25T14:24:17.010000"],["2024-07-25T14:24:18.010000"],["2024-07-25T14:24:19.010000"],["2024-07-25T14:24:20.010000"],["2024-07-25T14:24:21.010000"],["2024-07-25T14:24:22.010000"],["2024-07-25T14:24:23.010000"],["2024-07-25T14:24:24.010000"],["2024-07-25T14:24:25.010000"],["2024-07-25T14:24:26.010000"],["2024-07-25T14:24:27.010000"],["2024-07-25T14:24:28.010000"],["2024-07-25T14:24:29.010000"],["2024-07-25T14:24:30.010000"],["2024-07-25T14:24:31.010000"],["2024-07-25T14:24:32.010000"],["2024-07-25T14:24:33.010000"],["2024-07-25T14:24:34.010000"],["2024-07-25T14:24:35.010000"],["2024-07-25T14:24:36.010000"],["2024-07-25T14:24:37.010000"],["2024-07-25T14:24:38.010000"],["2024-07-25T14:24:39.010000"],["2024-07-25T14:24:40.010000"],["2024-07-25T14:24:41.010000"],["2024-07-25T14:24:42.010000"],["2024-07-25T14:24:43.010000"],["2024-07-25T14:24:44.010000"],["2024-07-25T14:24:45.010000"],["2024-07-25T14:24:46.010000"],["2024-07-25T14:24:47.010000"],["2024-07-25T14:24:48.010000"],["2024-07-25T14:24:49.010000"],["2024-07-25T14:24:50.010000"],["2024-07-25T14:24:51.010000"],["2024-07-25T14:24:52.010000"],["2024-07-25T14:24:53.010000"],["2024-07-25T14:24:54.010000"],["2024-07-25T14:24:55.010000"],["2024-07-25T14:24:56.010000"],["2024-07-25T14:24:57.010000"],["2024-07-25T14:24:58.010000"],["2024-07-25T14:24:59.010000"],["2024-07-25T14:25:00.010000"],["2024-07-25T14:25:01.010000"],["2024-07-25T14:25:02.010000"],["2024-07-25T14:25:03.010000"],["2024-07-25T14:25:04.010000"],["2024-07-25T14:25:05.010000"],["2024-07-25T14:25:06.010000"],["2024-07-25T14:25:07.010000"],["2024-07-25T14:25:08.010000"],["2024-07-25T14:25:09.010000"],["2024-07-25T14:25:10.010000"],["2024-07-25T14:25:11.010000"],["2024-07-25T14:25:12.010000"],["2024-07-25T14:25:13.010000"],["2024-07-25T14:25:14.010000"],["2024-07-25T14:25:15.010000"],["2024-07-25T14:25:16.010000"],["2024-07-25T14:25:17.010000"],["2024-07-25T14:25:18.010000"],["2024-07-25T14:25:19.010000"],["2024-07-25T14:25:20.010000"],["2024-07-25T14:25:21.010000"],["2024-07-25T14:25:22.010000"],["2024-07-25T14:25:23.010000"],["2024-07-25T14:25:24.010000"],["2024-07-25T14:25:25.010000"],["2024-07-25T14:25:26.010000"],["2024-07-25T14:25:27.010000"],["2024-07-25T14:25:28.010000"],["2024-07-25T14:25:29.010000"],["2024-07-25T14:25:30.010000"],["2024-07-25T14:25:31.010000"],["2024-07-25T14:25:32.010000"],["2024-07-25T14:25:33.010000"],["2024-07-25T14:25:34.010000"],["2024-07-25T14:25:35.010000"],["2024-07-25T14:25:36.010000"],["2024-07-25T14:25:37.010000"],["2024-07-25T14:25:38.010000"],["2024-07-25T14:25:39.010000"],["2024-07-25T14:25:40.010000"],["2024-07-25T14:25:41.010000"],["2024-07-25T14:25:42.010000"],["2024-07-25T14:25:43.010000"],["2024-07-25T14:25:44.010000"],["2024-07-25T14:25:45.010000"],["2024-07-25T14:25:46.010000"],["2024-07-25T14:25:47.010000"],["2024-07-25T14:25:48.010000"],["2024-07-25T14:25:49.010000"],["2024-07-25T14:25:50.010000"],["2024-07-25T14:25:51.010000"],["2024-07-25T14:25:52.010000"],["2024-07-25T14:25:53.010000"],["2024-07-25T14:25:54.010000"],["2024-07-25T14:25:55.010000"],["2024-07-25T14:25:56.010000"],["2024-07-25T14:25:57.010000"],["2024-07-25T14:25:58.010000"],["2024-07-25T14:25:59.010000"],["2024-07-25T14:26:00.010000"],["2024-07-25T14:26:01.010000"],["2024-07-25T14:26:02.010000"],["2024-07-25T14:26:03.010000"],["2024-07-25T14:26:04.010000"],["2024-07-25T14:26:05.010000"],["2024-07-25T14:26:06.010000"],["2024-07-25T14:26:07.010000"],["2024-07-25T14:26:08.010000"],["2024-07-25T14:26:09.010000"],["2024-07-25T14:26:10.010000"],["2024-07-25T14:26:11.010000"],["2024-07-25T14:26:12.010000"],["2024-07-25T14:26:13.010000"],["2024-07-25T14:26:14.010000"],["2024-07-25T14:26:15.010000"],["2024-07-25T14:26:16.010000"],["2024-07-25T14:26:17.010000"],["2024-07-25T14:26:18.010000"],["2024-07-25T14:26:19.010000"],["2024-07-25T14:26:20.010000"],["2024-07-25T14:26:21.010000"],["2024-07-25T14:26:22.010000"],["2024-07-25T14:26:23.010000"],["2024-07-25T14:26:24.010000"],["2024-07-25T14:26:25.010000"],["2024-07-25T14:26:26.010000"],["2024-07-25T14:26:27.010000"],["2024-07-25T14:26:28.010000"],["2024-07-25T14:26:29.010000"],["2024-07-25T14:26:30.010000"],["2024-07-25T14:26:31.010000"],["2024-07-25T14:26:32.010000"],["2024-07-25T14:26:33.010000"],["2024-07-25T14:26:34.010000"],["2024-07-25T14:26:35.010000"],["2024-07-25T14:26:36.010000"],["2024-07-25T14:26:37.010000"],["2024-07-25T14:26:38.010000"],["2024-07-25T14:26:39.010000"],["2024-07-25T14:26:40.010000"],["2024-07-25T14:26:41.010000"],["2024-07-25T14:26:42.010000"],["2024-07-25T14:26:43.010000"],["2024-07-25T14:26:44.010000"],["2024-07-25T14:26:45.010000"],["2024-07-25T14:26:46.010000"],["2024-07-25T14:26:47.010000"],["2024-07-25T14:26:48.010000"],["2024-07-25T14:26:49.010000"],["2024-07-25T14:26:50.010000"],["2024-07-25T14:26:51.010000"],["2024-07-25T14:26:52.010000"],["2024-07-25T14:26:53.010000"],["2024-07-25T14:26:54.010000"],["2024-07-25T14:26:55.010000"],["2024-07-25T14:26:56.010000"],["2024-07-25T14:26:57.010000"],["2024-07-25T14:26:58.010000"],["2024-07-25T14:26:59.010000"],["2024-07-25T14:27:00.010000"],["2024-07-25T14:27:01.010000"],["2024-07-25T14:27:02.010000"],["2024-07-25T14:27:03.010000"],["2024-07-25T14:27:04.010000"],["2024-07-25T14:27:05.010000"],["2024-07-25T14:27:06.010000"],["2024-07-25T14:27:07.010000"],["2024-07-25T14:27:08.010000"],["2024-07-25T14:27:09.010000"],["2024-07-25T14:27:10.010000"],["2024-07-25T14:27:11.010000"],["2024-07-25T14:27:12.010000"],["2024-07-25T14:27:13.010000"],["2024-07-25T14:27:14.010000"],["2024-07-25T14:27:15.010000"],["2024-07-25T14:27:16.010000"],["2024-07-25T14:27:17.010000"],["2024-07-25T14:27:18.010000"],["2024-07-25T14:27:19.010000"],["2024-07-25T14:27:20.010000"],["2024-07-25T14:27:21.010000"],["2024-07-25T14:27:22.010000"],["2024-07-25T14:27:23.010000"],["2024-07-25T14:27:24.010000"],["2024-07-25T14:27:25.010000"],["2024-07-25T14:27:26.010000"],["2024-07-25T14:27:27.010000"],["2024-07-25T14:27:28.010000"],["2024-07-25T14:27:29.010000"],["2024-07-25T14:27:30.010000"],["2024-07-25T14:27:31.010000"],["2024-07-25T14:27:32.010000"],["2024-07-25T14:27:33.010000"],["2024-07-25T14:27:34.010000"],["2024-07-25T14:27:35.010000"],["2024-07-25T14:27:36.010000"],["2024-07-25T14:27:37.010000"],["2024-07-25T14:27:38.010000"],["2024-07-25T14:27:39.010000"],["2024-07-25T14:27:40.010000"],["2024-07-25T14:27:41.010000"],["2024-07-25T14:27:42.010000"],["2024-07-25T14:27:43.010000"],["2024-07-25T14:27:44.010000"],["2024-07-25T14:27:45.010000"],["2024-07-25T14:27:46.010000"],["2024-07-25T14:27:47.010000"],["2024-07-25T14:27:48.010000"],["2024-07-25T14:27:49.010000"],["2024-07-25T14:27:50.010000"],["2024-07-25T14:27:51.010000"],["2024-07-25T14:27:52.010000"],["2024-07-25T14:27:53.010000"],["2024-07-25T14:27:54.010000"],["2024-07-25T14:27:55.010000"],["2024-07-25T14:27:56.010000"],["2024-07-25T14:27:57.010000"],["2024-07-25T14:27:58.010000"],["2024-07-25T14:27:59.010000"],["2024-07-25T14:28:00.010000"],["2024-07-25T14:28:01.010000"],["2024-07-25T14:28:02.010000"],["2024-07-25T14:28:03.010000"],["2024-07-25T14:28:04.010000"],["2024-07-25T14:28:05.010000"],["2024-07-25T14:28:06.010000"],["2024-07-25T14:28:07.010000"],["2024-07-25T14:28:08.010000"],["2024-07-25T14:28:09.010000"],["2024-07-25T14:28:10.010000"],["2024-07-25T14:28:11.010000"],["2024-07-25T14:28:12.010000"],["2024-07-25T14:28:13.010000"],["2024-07-25T14:28:14.010000"],["2024-07-25T14:28:15.010000"],["2024-07-25T14:28:16.010000"],["2024-07-25T14:28:17.010000"],["2024-07-25T14:28:18.010000"],["2024-07-25T14:28:19.010000"],["2024-07-25T14:28:20.010000"],["2024-07-25T14:28:21.010000"],["2024-07-25T14:28:22.010000"],["2024-07-25T14:28:23.010000"],["2024-07-25T14:28:24.010000"],["2024-07-25T14:28:25.010000"],["2024-07-25T14:28:26.010000"],["2024-07-25T14:28:27.010000"],["2024-07-25T14:28:28.010000"],["2024-07-25T14:28:29.010000"],["2024-07-25T14:28:30.010000"],["2024-07-25T14:28:31.010000"],["2024-07-25T14:28:32.010000"],["2024-07-25T14:28:33.010000"],["2024-07-25T14:28:34.010000"],["2024-07-25T14:28:35.010000"],["2024-07-25T14:28:36.010000"],["2024-07-25T14:28:37.010000"],["2024-07-25T14:28:38.010000"],["2024-07-25T14:28:39.010000"],["2024-07-25T14:28:40.010000"],["2024-07-25T14:28:41.010000"],["2024-07-25T14:28:42.010000"],["2024-07-25T14:28:43.010000"],["2024-07-25T14:28:44.010000"],["2024-07-25T14:28:45.010000"],["2024-07-25T14:28:46.010000"],["2024-07-25T14:28:47.010000"],["2024-07-25T14:28:48.010000"],["2024-07-25T14:28:49.010000"],["2024-07-25T14:28:50.010000"],["2024-07-25T14:28:51.010000"],["2024-07-25T14:28:52.010000"],["2024-07-25T14:28:53.010000"],["2024-07-25T14:28:54.010000"],["2024-07-25T14:28:55.010000"],["2024-07-25T14:28:56.010000"],["2024-07-25T14:28:57.010000"],["2024-07-25T14:28:58.010000"],["2024-07-25T14:28:59.010000"],["2024-07-25T14:29:00.010000"],["2024-07-25T14:29:01.010000"],["2024-07-25T14:29:02.010000"],["2024-07-25T14:29:03.010000"],["2024-07-25T14:29:04.010000"],["2024-07-25T14:29:05.010000"],["2024-07-25T14:29:06.010000"],["2024-07-25T14:29:07.010000"],["2024-07-25T14:29:08.010000"],["2024-07-25T14:29:09.010000"],["2024-07-25T14:29:10.010000"],["2024-07-25T14:29:11.010000"],["2024-07-25T14:29:12.010000"],["2024-07-25T14:29:13.010000"],["2024-07-25T14:29:14.010000"],["2024-07-25T14:29:15.010000"],["2024-07-25T14:29:16.010000"],["2024-07-25T14:29:17.010000"],["2024-07-25T14:29:18.010000"],["2024-07-25T14:29:19.010000"],["2024-07-25T14:29:20.010000"],["2024-07-25T14:29:21.010000"],["2024-07-25T14:29:22.010000"],["2024-07-25T14:29:23.010000"],["2024-07-25T14:29:24.010000"],["2024-07-25T14:29:25.010000"],["2024-07-25T14:29:26.010000"],["2024-07-25T14:29:27.010000"],["2024-07-25T14:29:28.010000"],["2024-07-25T14:29:29.010000"],["2024-07-25T14:29:30.010000"],["2024-07-25T14:29:31.010000"],["2024-07-25T14:29:32.010000"],["2024-07-25T14:29:33.010000"],["2024-07-25T14:29:34.010000"],["2024-07-25T14:29:35.010000"],["2024-07-25T14:29:36.010000"],["2024-07-25T14:29:37.010000"],["2024-07-25T14:29:38.010000"],["2024-07-25T14:29:39.010000"],["2024-07-25T14:29:40.010000"],["2024-07-25T14:29:41.010000"],["2024-07-25T14:29:42.010000"],["2024-07-25T14:29:43.010000"],["2024-07-25T14:29:44.010000"],["2024-07-25T14:29:45.010000"],["2024-07-25T14:29:46.010000"],["2024-07-25T14:29:47.010000"],["2024-07-25T14:29:48.010000"],["2024-07-25T14:29:49.010000"],["2024-07-25T14:29:50.010000"],["2024-07-25T14:29:51.010000"],["2024-07-25T14:29:52.010000"],["2024-07-25T14:29:53.010000"],["2024-07-25T14:29:54.010000"],["2024-07-25T14:29:55.010000"],["2024-07-25T14:29:56.010000"],["2024-07-25T14:29:57.010000"],["2024-07-25T14:29:58.010000"],["2024-07-25T14:29:59.010000"],["2024-07-25T14:30:00.010000"],["2024-07-25T14:30:01.010000"],["2024-07-25T14:30:02.010000"],["2024-07-25T14:30:03.010000"],["2024-07-25T14:30:04.010000"],["2024-07-25T14:30:05.010000"],["2024-07-25T14:30:06.010000"],["2024-07-25T14:30:07.010000"],["2024-07-25T14:30:08.010000"],["2024-07-25T14:30:09.010000"],["2024-07-25T14:30:10.010000"],["2024-07-25T14:30:11.010000"],["2024-07-25T14:30:12.010000"],["2024-07-25T14:30:13.010000"],["2024-07-25T14:30:14.010000"],["2024-07-25T14:30:15.010000"],["2024-07-25T14:30:16.010000"],["2024-07-25T14:30:17.010000"],["2024-07-25T14:30:18.010000"],["2024-07-25T14:30:19.010000"],["2024-07-25T14:30:20.010000"],["2024-07-25T14:30:21.010000"],["2024-07-25T14:30:22.010000"],["2024-07-25T14:30:23.010000"],["2024-07-25T14:30:24.010000"],["2024-07-25T14:30:25.010000"],["2024-07-25T14:30:26.010000"],["2024-07-25T14:30:27.010000"],["2024-07-25T14:30:28.010000"],["2024-07-25T14:30:29.010000"],["2024-07-25T14:30:30.010000"],["2024-07-25T14:30:31.010000"],["2024-07-25T14:30:32.010000"],["2024-07-25T14:30:33.010000"],["2024-07-25T14:30:34.010000"],["2024-07-25T14:30:35.010000"],["2024-07-25T14:30:36.010000"],["2024-07-25T14:30:37.010000"],["2024-07-25T14:30:38.010000"],["2024-07-25T14:30:39.010000"],["2024-07-25T14:30:40.010000"],["2024-07-25T14:30:41.010000"],["2024-07-25T14:30:42.010000"],["2024-07-25T14:30:43.010000"],["2024-07-25T14:30:44.010000"],["2024-07-25T14:30:45.010000"],["2024-07-25T14:30:46.010000"],["2024-07-25T14:30:47.010000"],["2024-07-25T14:30:48.010000"],["2024-07-25T14:30:49.010000"],["2024-07-25T14:30:50.010000"],["2024-07-25T14:30:51.010000"],["2024-07-25T14:30:52.010000"],["2024-07-25T14:30:53.010000"],["2024-07-25T14:30:54.010000"],["2024-07-25T14:30:55.010000"],["2024-07-25T14:30:56.010000"],["2024-07-25T14:30:57.010000"],["2024-07-25T14:30:58.010000"],["2024-07-25T14:30:59.010000"],["2024-07-25T14:31:00.010000"],["2024-07-25T14:31:01.010000"],["2024-07-25T14:31:02.010000"],["2024-07-25T14:31:03.010000"],["2024-07-25T14:31:04.010000"],["2024-07-25T14:31:05.010000"],["2024-07-25T14:31:06.010000"],["2024-07-25T14:31:07.010000"],["2024-07-25T14:31:08.010000"],["2024-07-25T14:31:09.010000"],["2024-07-25T14:31:10.010000"],["2024-07-25T14:31:11.010000"],["2024-07-25T14:31:12.010000"],["2024-07-25T14:31:13.010000"],["2024-07-25T14:31:14.010000"],["2024-07-25T14:31:15.010000"],["2024-07-25T14:31:16.010000"],["2024-07-25T14:31:17.010000"],["2024-07-25T14:31:18.010000"],["2024-07-25T14:31:19.010000"],["2024-07-25T14:31:20.010000"],["2024-07-25T14:31:21.010000"],["2024-07-25T14:31:22.010000"],["2024-07-25T14:31:23.010000"],["2024-07-25T14:31:24.010000"],["2024-07-25T14:31:25.010000"],["2024-07-25T14:31:26.010000"],["2024-07-25T14:31:27.010000"],["2024-07-25T14:31:28.010000"],["2024-07-25T14:31:29.010000"],["2024-07-25T14:31:30.010000"],["2024-07-25T14:31:31.010000"],["2024-07-25T14:31:32.010000"],["2024-07-25T14:31:33.010000"],["2024-07-25T14:31:34.010000"],["2024-07-25T14:31:35.010000"],["2024-07-25T14:31:36.010000"],["2024-07-25T14:31:37.010000"],["2024-07-25T14:31:38.010000"],["2024-07-25T14:31:39.010000"],["2024-07-25T14:31:40.010000"],["2024-07-25T14:31:41.010000"],["2024-07-25T14:31:42.010000"],["2024-07-25T14:31:43.010000"],["2024-07-25T14:31:44.010000"],["2024-07-25T14:31:45.010000"],["2024-07-25T14:31:46.010000"],["2024-07-25T14:31:47.010000"],["2024-07-25T14:31:48.010000"],["2024-07-25T14:31:49.010000"],["2024-07-25T14:31:50.010000"],["2024-07-25T14:31:51.010000"],["2024-07-25T14:31:52.010000"],["2024-07-25T14:31:53.010000"],["2024-07-25T14:31:54.010000"],["2024-07-25T14:31:55.010000"],["2024-07-25T14:31:56.010000"],["2024-07-25T14:31:57.010000"],["2024-07-25T14:31:58.010000"],["2024-07-25T14:31:59.010000"],["2024-07-25T14:32:00.010000"],["2024-07-25T14:32:01.010000"],["2024-07-25T14:32:02.010000"],["2024-07-25T14:32:03.010000"],["2024-07-25T14:32:04.010000"],["2024-07-25T14:32:05.010000"],["2024-07-25T14:32:06.010000"],["2024-07-25T14:32:07.010000"],["2024-07-25T14:32:08.010000"],["2024-07-25T14:32:09.010000"],["2024-07-25T14:32:10.010000"],["2024-07-25T14:32:11.010000"],["2024-07-25T14:32:12.010000"],["2024-07-25T14:32:13.010000"],["2024-07-25T14:32:14.010000"],["2024-07-25T14:32:15.010000"],["2024-07-25T14:32:16.010000"],["2024-07-25T14:32:17.010000"],["2024-07-25T14:32:18.010000"],["2024-07-25T14:32:19.010000"],["2024-07-25T14:32:20.010000"],["2024-07-25T14:32:21.010000"],["2024-07-25T14:32:22.010000"],["2024-07-25T14:32:23.010000"],["2024-07-25T14:32:24.010000"],["2024-07-25T14:32:25.010000"],["2024-07-25T14:32:26.010000"],["2024-07-25T14:32:27.010000"],["2024-07-25T14:32:28.010000"],["2024-07-25T14:32:29.010000"],["2024-07-25T14:32:30.010000"],["2024-07-25T14:32:31.010000"],["2024-07-25T14:32:32.010000"],["2024-07-25T14:32:33.010000"],["2024-07-25T14:32:34.010000"],["2024-07-25T14:32:35.010000"],["2024-07-25T14:32:36.010000"],["2024-07-25T14:32:37.010000"],["2024-07-25T14:32:38.010000"],["2024-07-25T14:32:39.010000"],["2024-07-25T14:32:40.010000"],["2024-07-25T14:32:41.010000"],["2024-07-25T14:32:42.010000"],["2024-07-25T14:32:43.010000"],["2024-07-25T14:32:44.010000"],["2024-07-25T14:32:45.010000"],["2024-07-25T14:32:46.010000"],["2024-07-25T14:32:47.010000"],["2024-07-25T14:32:48.010000"],["2024-07-25T14:32:49.010000"],["2024-07-25T14:32:50.010000"],["2024-07-25T14:32:51.010000"],["2024-07-25T14:32:52.010000"],["2024-07-25T14:32:53.010000"],["2024-07-25T14:32:54.010000"],["2024-07-25T14:32:55.010000"],["2024-07-25T14:32:56.010000"],["2024-07-25T14:32:57.010000"],["2024-07-25T14:32:58.010000"],["2024-07-25T14:32:59.010000"],["2024-07-25T14:33:00.010000"],["2024-07-25T14:33:01.010000"],["2024-07-25T14:33:02.010000"],["2024-07-25T14:33:03.010000"],["2024-07-25T14:33:04.010000"],["2024-07-25T14:33:05.010000"],["2024-07-25T14:33:06.010000"],["2024-07-25T14:33:07.010000"],["2024-07-25T14:33:08.010000"],["2024-07-25T14:33:09.010000"],["2024-07-25T14:33:10.010000"],["2024-07-25T14:33:11.010000"],["2024-07-25T14:33:12.010000"],["2024-07-25T14:33:13.010000"],["2024-07-25T14:33:14.010000"],["2024-07-25T14:33:15.010000"],["2024-07-25T14:33:16.010000"],["2024-07-25T14:33:17.010000"],["2024-07-25T14:33:18.010000"],["2024-07-25T14:33:19.010000"],["2024-07-25T14:33:20.010000"],["2024-07-25T14:33:21.010000"],["2024-07-25T14:33:22.010000"],["2024-07-25T14:33:23.010000"],["2024-07-25T14:33:24.010000"],["2024-07-25T14:33:25.010000"],["2024-07-25T14:33:26.010000"],["2024-07-25T14:33:27.010000"],["2024-07-25T14:33:28.010000"],["2024-07-25T14:33:29.010000"],["2024-07-25T14:33:30.010000"],["2024-07-25T14:33:31.010000"],["2024-07-25T14:33:32.010000"],["2024-07-25T14:33:33.010000"],["2024-07-25T14:33:34.010000"],["2024-07-25T14:33:35.010000"],["2024-07-25T14:33:36.010000"],["2024-07-25T14:33:37.010000"],["2024-07-25T14:33:38.010000"],["2024-07-25T14:33:39.010000"],["2024-07-25T14:33:40.010000"],["2024-07-25T14:33:41.010000"],["2024-07-25T14:33:42.010000"],["2024-07-25T14:33:43.010000"],["2024-07-25T14:33:44.010000"],["2024-07-25T14:33:45.010000"],["2024-07-25T14:33:46.010000"],["2024-07-25T14:33:47.010000"],["2024-07-25T14:33:48.010000"],["2024-07-25T14:33:49.010000"],["2024-07-25T14:33:50.010000"],["2024-07-25T14:33:51.010000"],["2024-07-25T14:33:52.010000"],["2024-07-25T14:33:53.010000"],["2024-07-25T14:33:54.010000"],["2024-07-25T14:33:55.010000"],["2024-07-25T14:33:56.010000"],["2024-07-25T14:33:57.010000"],["2024-07-25T14:33:58.010000"],["2024-07-25T14:33:59.010000"],["2024-07-25T14:34:00.010000"],["2024-07-25T14:34:01.010000"],["2024-07-25T14:34:02.010000"],["2024-07-25T14:34:03.010000"],["2024-07-25T14:34:04.010000"],["2024-07-25T14:34:05.010000"],["2024-07-25T14:34:06.010000"],["2024-07-25T14:34:07.010000"],["2024-07-25T14:34:08.010000"],["2024-07-25T14:34:09.010000"],["2024-07-25T14:34:10.010000"],["2024-07-25T14:34:11.010000"],["2024-07-25T14:34:12.010000"],["2024-07-25T14:34:13.010000"],["2024-07-25T14:34:14.010000"],["2024-07-25T14:34:15.010000"],["2024-07-25T14:34:16.010000"],["2024-07-25T14:34:17.010000"],["2024-07-25T14:34:18.010000"],["2024-07-25T14:34:19.010000"],["2024-07-25T14:34:20.010000"],["2024-07-25T14:34:21.010000"],["2024-07-25T14:34:22.010000"],["2024-07-25T14:34:23.010000"],["2024-07-25T14:34:24.010000"],["2024-07-25T14:34:25.010000"],["2024-07-25T14:34:26.010000"],["2024-07-25T14:34:27.010000"],["2024-07-25T14:34:28.010000"],["2024-07-25T14:34:29.010000"],["2024-07-25T14:34:30.010000"],["2024-07-25T14:34:31.010000"],["2024-07-25T14:34:32.010000"],["2024-07-25T14:34:33.010000"],["2024-07-25T14:34:34.010000"],["2024-07-25T14:34:35.010000"],["2024-07-25T14:34:36.010000"],["2024-07-25T14:34:37.010000"],["2024-07-25T14:34:38.010000"],["2024-07-25T14:34:39.010000"],["2024-07-25T14:34:40.010000"],["2024-07-25T14:34:41.010000"],["2024-07-25T14:34:42.010000"],["2024-07-25T14:34:43.010000"],["2024-07-25T14:34:44.010000"],["2024-07-25T14:34:45.010000"],["2024-07-25T14:34:46.010000"],["2024-07-25T14:34:47.010000"],["2024-07-25T14:34:48.010000"],["2024-07-25T14:34:49.010000"],["2024-07-25T14:34:50.010000"],["2024-07-25T14:34:51.010000"],["2024-07-25T14:34:52.010000"],["2024-07-25T14:34:53.010000"],["2024-07-25T14:34:54.010000"],["2024-07-25T14:34:55.010000"],["2024-07-25T14:34:56.010000"],["2024-07-25T14:34:57.010000"],["2024-07-25T14:34:58.010000"],["2024-07-25T14:34:59.010000"],["2024-07-25T14:35:00.010000"],["2024-07-25T14:35:01.010000"],["2024-07-25T14:35:02.010000"],["2024-07-25T14:35:03.010000"],["2024-07-25T14:35:04.010000"],["2024-07-25T14:35:05.010000"],["2024-07-25T14:35:06.010000"],["2024-07-25T14:35:07.010000"],["2024-07-25T14:35:08.010000"],["2024-07-25T14:35:09.010000"],["2024-07-25T14:35:10.010000"],["2024-07-25T14:35:11.010000"],["2024-07-25T14:35:12.010000"],["2024-07-25T14:35:13.010000"],["2024-07-25T14:35:14.010000"],["2024-07-25T14:35:15.010000"],["2024-07-25T14:35:16.010000"],["2024-07-25T14:35:17.010000"],["2024-07-25T14:35:18.010000"],["2024-07-25T14:35:19.010000"],["2024-07-25T14:35:20.010000"],["2024-07-25T14:35:21.010000"],["2024-07-25T14:35:22.010000"],["2024-07-25T14:35:23.010000"],["2024-07-25T14:35:24.010000"],["2024-07-25T14:35:25.010000"],["2024-07-25T14:35:26.010000"],["2024-07-25T14:35:27.010000"],["2024-07-25T14:35:28.010000"],["2024-07-25T14:35:29.010000"],["2024-07-25T14:35:30.010000"],["2024-07-25T14:35:31.010000"],["2024-07-25T14:35:32.010000"],["2024-07-25T14:35:33.010000"],["2024-07-25T14:35:34.010000"],["2024-07-25T14:35:35.010000"],["2024-07-25T14:35:36.010000"],["2024-07-25T14:35:37.010000"],["2024-07-25T14:35:38.010000"],["2024-07-25T14:35:39.010000"],["2024-07-25T14:35:40.010000"],["2024-07-25T14:35:41.010000"],["2024-07-25T14:35:42.010000"],["2024-07-25T14:35:43.010000"],["2024-07-25T14:35:44.010000"],["2024-07-25T14:35:45.010000"],["2024-07-25T14:35:46.010000"],["2024-07-25T14:35:47.010000"],["2024-07-25T14:35:48.010000"],["2024-07-25T14:35:49.010000"],["2024-07-25T14:35:50.010000"],["2024-07-25T14:35:51.010000"],["2024-07-25T14:35:52.010000"],["2024-07-25T14:35:53.010000"],["2024-07-25T14:35:54.010000"],["2024-07-25T14:35:55.010000"],["2024-07-25T14:35:56.010000"],["2024-07-25T14:35:57.010000"],["2024-07-25T14:35:58.010000"],["2024-07-25T14:35:59.010000"],["2024-07-25T14:36:00.010000"],["2024-07-25T14:36:01.010000"],["2024-07-25T14:36:02.010000"],["2024-07-25T14:36:03.010000"],["2024-07-25T14:36:04.010000"],["2024-07-25T14:36:05.010000"],["2024-07-25T14:36:06.010000"],["2024-07-25T14:36:07.010000"],["2024-07-25T14:36:08.010000"],["2024-07-25T14:36:09.010000"],["2024-07-25T14:36:10.010000"],["2024-07-25T14:36:11.010000"],["2024-07-25T14:36:12.010000"],["2024-07-25T14:36:13.010000"],["2024-07-25T14:36:14.010000"],["2024-07-25T14:36:15.010000"],["2024-07-25T14:36:16.010000"],["2024-07-25T14:36:17.010000"],["2024-07-25T14:36:18.010000"],["2024-07-25T14:36:19.010000"],["2024-07-25T14:36:20.010000"],["2024-07-25T14:36:21.010000"],["2024-07-25T14:36:22.010000"],["2024-07-25T14:36:23.010000"],["2024-07-25T14:36:24.010000"],["2024-07-25T14:36:25.010000"],["2024-07-25T14:36:26.010000"],["2024-07-25T14:36:27.010000"],["2024-07-25T14:36:28.010000"],["2024-07-25T14:36:29.010000"],["2024-07-25T14:36:30.010000"],["2024-07-25T14:36:31.010000"],["2024-07-25T14:36:32.010000"],["2024-07-25T14:36:33.010000"],["2024-07-25T14:36:34.010000"],["2024-07-25T14:36:35.010000"],["2024-07-25T14:36:36.010000"],["2024-07-25T14:36:37.010000"],["2024-07-25T14:36:38.010000"],["2024-07-25T14:36:39.010000"],["2024-07-25T14:36:40.010000"],["2024-07-25T14:36:41.010000"],["2024-07-25T14:36:42.010000"],["2024-07-25T14:36:43.010000"],["2024-07-25T14:36:44.010000"],["2024-07-25T14:36:45.010000"],["2024-07-25T14:36:46.010000"],["2024-07-25T14:36:47.010000"],["2024-07-25T14:36:48.010000"],["2024-07-25T14:36:49.010000"],["2024-07-25T14:36:50.010000"],["2024-07-25T14:36:51.010000"],["2024-07-25T14:36:52.010000"],["2024-07-25T14:36:53.010000"],["2024-07-25T14:36:54.010000"],["2024-07-25T14:36:55.010000"],["2024-07-25T14:36:56.010000"],["2024-07-25T14:36:57.010000"],["2024-07-25T14:36:58.010000"],["2024-07-25T14:36:59.010000"],["2024-07-25T14:37:00.010000"],["2024-07-25T14:37:01.010000"],["2024-07-25T14:37:02.010000"],["2024-07-25T14:37:03.010000"],["2024-07-25T14:37:04.010000"],["2024-07-25T14:37:05.010000"],["2024-07-25T14:37:06.010000"],["2024-07-25T14:37:07.010000"],["2024-07-25T14:37:08.010000"],["2024-07-25T14:37:09.010000"],["2024-07-25T14:37:10.010000"],["2024-07-25T14:37:11.010000"],["2024-07-25T14:37:12.010000"],["2024-07-25T14:37:13.010000"],["2024-07-25T14:37:14.010000"],["2024-07-25T14:37:15.010000"],["2024-07-25T14:37:16.010000"],["2024-07-25T14:37:17.010000"],["2024-07-25T14:37:18.010000"],["2024-07-25T14:37:19.010000"],["2024-07-25T14:37:20.010000"],["2024-07-25T14:37:21.010000"],["2024-07-25T14:37:22.010000"],["2024-07-25T14:37:23.010000"],["2024-07-25T14:37:24.010000"],["2024-07-25T14:37:25.010000"],["2024-07-25T14:37:26.010000"],["2024-07-25T14:37:27.010000"],["2024-07-25T14:37:28.010000"],["2024-07-25T14:37:29.010000"],["2024-07-25T14:37:30.010000"],["2024-07-25T14:37:31.010000"],["2024-07-25T14:37:32.010000"],["2024-07-25T14:37:33.010000"],["2024-07-25T14:37:34.010000"],["2024-07-25T14:37:35.010000"],["2024-07-25T14:37:36.010000"],["2024-07-25T14:37:37.010000"],["2024-07-25T14:37:38.010000"],["2024-07-25T14:37:39.010000"],["2024-07-25T14:37:40.010000"],["2024-07-25T14:37:41.010000"],["2024-07-25T14:37:42.010000"],["2024-07-25T14:37:43.010000"],["2024-07-25T14:37:44.010000"],["2024-07-25T14:37:45.010000"],["2024-07-25T14:37:46.010000"],["2024-07-25T14:37:47.010000"],["2024-07-25T14:37:48.010000"],["2024-07-25T14:37:49.010000"],["2024-07-25T14:37:50.010000"],["2024-07-25T14:37:51.010000"],["2024-07-25T14:37:52.010000"],["2024-07-25T14:37:53.010000"],["2024-07-25T14:37:54.010000"],["2024-07-25T14:37:55.010000"],["2024-07-25T14:37:56.010000"],["2024-07-25T14:37:57.010000"],["2024-07-25T14:37:58.010000"],["2024-07-25T14:37:59.010000"],["2024-07-25T14:38:00.010000"],["2024-07-25T14:38:01.010000"],["2024-07-25T14:38:02.010000"],["2024-07-25T14:38:03.010000"],["2024-07-25T14:38:04.010000"],["2024-07-25T14:38:05.010000"],["2024-07-25T14:38:06.010000"],["2024-07-25T14:38:07.010000"],["2024-07-25T14:38:08.010000"],["2024-07-25T14:38:09.010000"],["2024-07-25T14:38:10.010000"],["2024-07-25T14:38:11.010000"],["2024-07-25T14:38:12.010000"],["2024-07-25T14:38:13.010000"],["2024-07-25T14:38:14.010000"],["2024-07-25T14:38:15.010000"],["2024-07-25T14:38:16.010000"],["2024-07-25T14:38:17.010000"],["2024-07-25T14:38:18.010000"],["2024-07-25T14:38:19.010000"],["2024-07-25T14:38:20.010000"],["2024-07-25T14:38:21.010000"],["2024-07-25T14:38:22.010000"],["2024-07-25T14:38:23.010000"],["2024-07-25T14:38:24.010000"],["2024-07-25T14:38:25.010000"],["2024-07-25T14:38:26.010000"],["2024-07-25T14:38:27.010000"],["2024-07-25T14:38:28.010000"],["2024-07-25T14:38:29.010000"],["2024-07-25T14:38:30.010000"],["2024-07-25T14:38:31.010000"],["2024-07-25T14:38:32.010000"],["2024-07-25T14:38:33.010000"],["2024-07-25T14:38:34.010000"],["2024-07-25T14:38:35.010000"],["2024-07-25T14:38:36.010000"],["2024-07-25T14:38:37.010000"],["2024-07-25T14:38:38.010000"],["2024-07-25T14:38:39.010000"],["2024-07-25T14:38:40.010000"],["2024-07-25T14:38:41.010000"],["2024-07-25T14:38:42.010000"],["2024-07-25T14:38:43.010000"],["2024-07-25T14:38:44.010000"],["2024-07-25T14:38:45.010000"],["2024-07-25T14:38:46.010000"],["2024-07-25T14:38:47.010000"],["2024-07-25T14:38:48.010000"],["2024-07-25T14:38:49.010000"],["2024-07-25T14:38:50.010000"],["2024-07-25T14:38:51.010000"],["2024-07-25T14:38:52.010000"],["2024-07-25T14:38:53.010000"],["2024-07-25T14:38:54.010000"],["2024-07-25T14:38:55.010000"],["2024-07-25T14:38:56.010000"],["2024-07-25T14:38:57.010000"],["2024-07-25T14:38:58.010000"],["2024-07-25T14:38:59.010000"],["2024-07-25T14:39:00.010000"],["2024-07-25T14:39:01.010000"],["2024-07-25T14:39:02.010000"],["2024-07-25T14:39:03.010000"],["2024-07-25T14:39:04.010000"],["2024-07-25T14:39:05.010000"],["2024-07-25T14:39:06.010000"],["2024-07-25T14:39:07.010000"],["2024-07-25T14:39:08.010000"],["2024-07-25T14:39:09.010000"],["2024-07-25T14:39:10.010000"],["2024-07-25T14:39:11.010000"],["2024-07-25T14:39:12.010000"],["2024-07-25T14:39:13.010000"],["2024-07-25T14:39:14.010000"],["2024-07-25T14:39:15.010000"],["2024-07-25T14:39:16.010000"],["2024-07-25T14:39:17.010000"],["2024-07-25T14:39:18.010000"],["2024-07-25T14:39:19.010000"],["2024-07-25T14:39:20.010000"],["2024-07-25T14:39:21.010000"],["2024-07-25T14:39:22.010000"],["2024-07-25T14:39:23.010000"],["2024-07-25T14:39:24.010000"],["2024-07-25T14:39:25.010000"],["2024-07-25T14:39:26.010000"],["2024-07-25T14:39:27.010000"],["2024-07-25T14:39:28.010000"],["2024-07-25T14:39:29.010000"],["2024-07-25T14:39:30.010000"],["2024-07-25T14:39:31.010000"],["2024-07-25T14:39:32.010000"],["2024-07-25T14:39:33.010000"],["2024-07-25T14:39:34.010000"],["2024-07-25T14:39:35.010000"],["2024-07-25T14:39:36.010000"],["2024-07-25T14:39:37.010000"],["2024-07-25T14:39:38.010000"],["2024-07-25T14:39:39.010000"],["2024-07-25T14:39:40.010000"],["2024-07-25T14:39:41.010000"],["2024-07-25T14:39:42.010000"],["2024-07-25T14:39:43.010000"],["2024-07-25T14:39:44.010000"],["2024-07-25T14:39:45.010000"],["2024-07-25T14:39:46.010000"],["2024-07-25T14:39:47.010000"],["2024-07-25T14:39:48.010000"],["2024-07-25T14:39:49.010000"],["2024-07-25T14:39:50.010000"],["2024-07-25T14:39:51.010000"],["2024-07-25T14:39:52.010000"],["2024-07-25T14:39:53.010000"],["2024-07-25T14:39:54.010000"],["2024-07-25T14:39:55.010000"],["2024-07-25T14:39:56.010000"],["2024-07-25T14:39:57.010000"],["2024-07-25T14:39:58.010000"],["2024-07-25T14:39:59.010000"],["2024-07-25T14:40:00.010000"],["2024-07-25T14:40:01.010000"],["2024-07-25T14:40:02.010000"],["2024-07-25T14:40:03.010000"],["2024-07-25T14:40:04.010000"],["2024-07-25T14:40:05.010000"],["2024-07-25T14:40:06.010000"],["2024-07-25T14:40:07.010000"],["2024-07-25T14:40:08.010000"],["2024-07-25T14:40:09.010000"],["2024-07-25T14:40:10.010000"],["2024-07-25T14:40:11.010000"],["2024-07-25T14:40:12.010000"],["2024-07-25T14:40:13.010000"],["2024-07-25T14:40:14.010000"],["2024-07-25T14:40:15.010000"],["2024-07-25T14:40:16.010000"],["2024-07-25T14:40:17.010000"],["2024-07-25T14:40:18.010000"],["2024-07-25T14:40:19.010000"],["2024-07-25T14:40:20.010000"],["2024-07-25T14:40:21.010000"],["2024-07-25T14:40:22.010000"],["2024-07-25T14:40:23.010000"],["2024-07-25T14:40:24.010000"],["2024-07-25T14:40:25.010000"],["2024-07-25T14:40:26.010000"],["2024-07-25T14:40:27.010000"],["2024-07-25T14:40:28.010000"],["2024-07-25T14:40:29.010000"],["2024-07-25T14:40:30.010000"],["2024-07-25T14:40:31.010000"],["2024-07-25T14:40:32.010000"],["2024-07-25T14:40:33.010000"],["2024-07-25T14:40:34.010000"],["2024-07-25T14:40:35.010000"],["2024-07-25T14:40:36.010000"],["2024-07-25T14:40:37.010000"],["2024-07-25T14:40:38.010000"],["2024-07-25T14:40:39.010000"],["2024-07-25T14:40:40.010000"],["2024-07-25T14:40:41.010000"],["2024-07-25T14:40:42.010000"],["2024-07-25T14:40:43.010000"],["2024-07-25T14:40:44.010000"],["2024-07-25T14:40:45.010000"],["2024-07-25T14:40:46.010000"],["2024-07-25T14:40:47.010000"],["2024-07-25T14:40:48.010000"],["2024-07-25T14:40:49.010000"],["2024-07-25T14:40:50.010000"],["2024-07-25T14:40:51.010000"],["2024-07-25T14:40:52.010000"],["2024-07-25T14:40:53.010000"],["2024-07-25T14:40:54.010000"],["2024-07-25T14:40:55.010000"],["2024-07-25T14:40:56.010000"],["2024-07-25T14:40:57.010000"],["2024-07-25T14:40:58.010000"],["2024-07-25T14:40:59.010000"],["2024-07-25T14:41:00.010000"],["2024-07-25T14:41:01.010000"],["2024-07-25T14:41:02.010000"],["2024-07-25T14:41:03.010000"],["2024-07-25T14:41:04.010000"],["2024-07-25T14:41:05.010000"],["2024-07-25T14:41:06.010000"],["2024-07-25T14:41:07.010000"],["2024-07-25T14:41:08.010000"],["2024-07-25T14:41:09.010000"],["2024-07-25T14:41:10.010000"],["2024-07-25T14:41:11.010000"],["2024-07-25T14:41:12.010000"],["2024-07-25T14:41:13.010000"],["2024-07-25T14:41:14.010000"],["2024-07-25T14:41:15.010000"],["2024-07-25T14:41:16.010000"],["2024-07-25T14:41:17.010000"],["2024-07-25T14:41:18.010000"],["2024-07-25T14:41:19.010000"],["2024-07-25T14:41:20.010000"],["2024-07-25T14:41:21.010000"],["2024-07-25T14:41:22.010000"],["2024-07-25T14:41:23.010000"],["2024-07-25T14:41:24.010000"],["2024-07-25T14:41:25.010000"],["2024-07-25T14:41:26.010000"],["2024-07-25T14:41:27.010000"],["2024-07-25T14:41:28.010000"],["2024-07-25T14:41:29.010000"],["2024-07-25T14:41:30.010000"],["2024-07-25T14:41:31.010000"],["2024-07-25T14:41:32.010000"],["2024-07-25T14:41:33.010000"],["2024-07-25T14:41:34.010000"],["2024-07-25T14:41:35.010000"],["2024-07-25T14:41:36.010000"],["2024-07-25T14:41:37.010000"],["2024-07-25T14:41:38.010000"],["2024-07-25T14:41:39.010000"],["2024-07-25T14:41:40.010000"],["2024-07-25T14:41:41.010000"],["2024-07-25T14:41:42.010000"],["2024-07-25T14:41:43.010000"],["2024-07-25T14:41:44.010000"],["2024-07-25T14:41:45.010000"],["2024-07-25T14:41:46.010000"],["2024-07-25T14:41:47.010000"],["2024-07-25T14:41:48.010000"],["2024-07-25T14:41:49.010000"],["2024-07-25T14:41:50.010000"],["2024-07-25T14:41:51.010000"],["2024-07-25T14:41:52.010000"],["2024-07-25T14:41:53.010000"],["2024-07-25T14:41:54.010000"],["2024-07-25T14:41:55.010000"],["2024-07-25T14:41:56.010000"],["2024-07-25T14:41:57.010000"],["2024-07-25T14:41:58.010000"],["2024-07-25T14:41:59.010000"],["2024-07-25T14:42:00.010000"],["2024-07-25T14:42:01.010000"],["2024-07-25T14:42:02.010000"],["2024-07-25T14:42:03.010000"],["2024-07-25T14:42:04.010000"],["2024-07-25T14:42:05.010000"],["2024-07-25T14:42:06.010000"],["2024-07-25T14:42:07.010000"],["2024-07-25T14:42:08.010000"],["2024-07-25T14:42:09.010000"],["2024-07-25T14:42:10.010000"],["2024-07-25T14:42:11.010000"],["2024-07-25T14:42:12.010000"],["2024-07-25T14:42:13.010000"],["2024-07-25T14:42:14.010000"],["2024-07-25T14:42:15.010000"],["2024-07-25T14:42:16.010000"],["2024-07-25T14:42:17.010000"],["2024-07-25T14:42:18.010000"],["2024-07-25T14:42:19.010000"],["2024-07-25T14:42:20.010000"],["2024-07-25T14:42:21.010000"],["2024-07-25T14:42:22.010000"],["2024-07-25T14:42:23.010000"],["2024-07-25T14:42:24.010000"],["2024-07-25T14:42:25.010000"],["2024-07-25T14:42:26.010000"],["2024-07-25T14:42:27.010000"],["2024-07-25T14:42:28.010000"],["2024-07-25T14:42:29.010000"],["2024-07-25T14:42:30.010000"],["2024-07-25T14:42:31.010000"],["2024-07-25T14:42:32.010000"],["2024-07-25T14:42:33.010000"],["2024-07-25T14:42:34.010000"],["2024-07-25T14:42:35.010000"],["2024-07-25T14:42:36.010000"],["2024-07-25T14:42:37.010000"],["2024-07-25T14:42:38.010000"],["2024-07-25T14:42:39.010000"],["2024-07-25T14:42:40.010000"],["2024-07-25T14:42:41.010000"],["2024-07-25T14:42:42.010000"],["2024-07-25T14:42:43.010000"],["2024-07-25T14:42:44.010000"],["2024-07-25T14:42:45.010000"],["2024-07-25T14:42:46.010000"],["2024-07-25T14:42:47.010000"],["2024-07-25T14:42:48.010000"],["2024-07-25T14:42:49.010000"],["2024-07-25T14:42:50.010000"],["2024-07-25T14:42:51.010000"],["2024-07-25T14:42:52.010000"],["2024-07-25T14:42:53.010000"],["2024-07-25T14:42:54.010000"],["2024-07-25T14:42:55.010000"],["2024-07-25T14:42:56.010000"],["2024-07-25T14:42:57.010000"],["2024-07-25T14:42:58.010000"],["2024-07-25T14:42:59.010000"],["2024-07-25T14:43:00.010000"],["2024-07-25T14:43:01.010000"],["2024-07-25T14:43:02.010000"],["2024-07-25T14:43:03.010000"],["2024-07-25T14:43:04.010000"],["2024-07-25T14:43:05.010000"],["2024-07-25T14:43:06.010000"],["2024-07-25T14:43:07.010000"],["2024-07-25T14:43:08.010000"],["2024-07-25T14:43:09.010000"],["2024-07-25T14:43:10.010000"],["2024-07-25T14:43:11.010000"],["2024-07-25T14:43:12.010000"],["2024-07-25T14:43:13.010000"],["2024-07-25T14:43:14.010000"],["2024-07-25T14:43:15.010000"],["2024-07-25T14:43:16.010000"],["2024-07-25T14:43:17.010000"],["2024-07-25T14:43:18.010000"],["2024-07-25T14:43:19.010000"],["2024-07-25T14:43:20.010000"],["2024-07-25T14:43:21.010000"],["2024-07-25T14:43:22.010000"],["2024-07-25T14:43:23.010000"],["2024-07-25T14:43:24.010000"],["2024-07-25T14:43:25.010000"],["2024-07-25T14:43:26.010000"],["2024-07-25T14:43:27.010000"],["2024-07-25T14:43:28.010000"],["2024-07-25T14:43:29.010000"],["2024-07-25T14:43:30.010000"],["2024-07-25T14:43:31.010000"],["2024-07-25T14:43:32.010000"],["2024-07-25T14:43:33.010000"],["2024-07-25T14:43:34.010000"],["2024-07-25T14:43:35.010000"],["2024-07-25T14:43:36.010000"],["2024-07-25T14:43:37.010000"],["2024-07-25T14:43:38.010000"],["2024-07-25T14:43:39.010000"],["2024-07-25T14:43:40.010000"],["2024-07-25T14:43:41.010000"],["2024-07-25T14:43:42.010000"],["2024-07-25T14:43:43.010000"],["2024-07-25T14:43:44.010000"],["2024-07-25T14:43:45.010000"],["2024-07-25T14:43:46.010000"],["2024-07-25T14:43:47.010000"],["2024-07-25T14:43:48.010000"],["2024-07-25T14:43:49.010000"],["2024-07-25T14:43:50.010000"],["2024-07-25T14:43:51.010000"],["2024-07-25T14:43:52.010000"],["2024-07-25T14:43:53.010000"],["2024-07-25T14:43:54.010000"],["2024-07-25T14:43:55.010000"],["2024-07-25T14:43:56.010000"],["2024-07-25T14:43:57.010000"],["2024-07-25T14:43:58.010000"],["2024-07-25T14:43:59.010000"],["2024-07-25T14:44:00.010000"],["2024-07-25T14:44:01.010000"],["2024-07-25T14:44:02.010000"],["2024-07-25T14:44:03.010000"],["2024-07-25T14:44:04.010000"],["2024-07-25T14:44:05.010000"],["2024-07-25T14:44:06.010000"],["2024-07-25T14:44:07.010000"],["2024-07-25T14:44:08.010000"],["2024-07-25T14:44:09.010000"],["2024-07-25T14:44:10.010000"],["2024-07-25T14:44:11.010000"],["2024-07-25T14:44:12.010000"],["2024-07-25T14:44:13.010000"],["2024-07-25T14:44:14.010000"],["2024-07-25T14:44:15.010000"],["2024-07-25T14:44:16.010000"],["2024-07-25T14:44:17.010000"],["2024-07-25T14:44:18.010000"],["2024-07-25T14:44:19.010000"],["2024-07-25T14:44:20.010000"],["2024-07-25T14:44:21.010000"],["2024-07-25T14:44:22.010000"],["2024-07-25T14:44:23.010000"],["2024-07-25T14:44:24.010000"],["2024-07-25T14:44:25.010000"],["2024-07-25T14:44:26.010000"],["2024-07-25T14:44:27.010000"],["2024-07-25T14:44:28.010000"],["2024-07-25T14:44:29.010000"],["2024-07-25T14:44:30.010000"],["2024-07-25T14:44:31.010000"],["2024-07-25T14:44:32.010000"],["2024-07-25T14:44:33.010000"],["2024-07-25T14:44:34.010000"],["2024-07-25T14:44:35.010000"],["2024-07-25T14:44:36.010000"],["2024-07-25T14:44:37.010000"],["2024-07-25T14:44:38.010000"],["2024-07-25T14:44:39.010000"],["2024-07-25T14:44:40.010000"],["2024-07-25T14:44:41.010000"],["2024-07-25T14:44:42.010000"],["2024-07-25T14:44:43.010000"],["2024-07-25T14:44:44.010000"],["2024-07-25T14:44:45.010000"],["2024-07-25T14:44:46.010000"],["2024-07-25T14:44:47.010000"],["2024-07-25T14:44:48.010000"],["2024-07-25T14:44:49.010000"],["2024-07-25T14:44:50.010000"],["2024-07-25T14:44:51.010000"],["2024-07-25T14:44:52.010000"],["2024-07-25T14:44:53.010000"],["2024-07-25T14:44:54.010000"],["2024-07-25T14:44:55.010000"],["2024-07-25T14:44:56.010000"],["2024-07-25T14:44:57.010000"],["2024-07-25T14:44:58.010000"],["2024-07-25T14:44:59.010000"],["2024-07-25T14:45:00.010000"],["2024-07-25T14:45:01.010000"],["2024-07-25T14:45:02.010000"],["2024-07-25T14:45:03.010000"],["2024-07-25T14:45:04.010000"],["2024-07-25T14:45:05.010000"],["2024-07-25T14:45:06.010000"],["2024-07-25T14:45:07.010000"],["2024-07-25T14:45:08.010000"],["2024-07-25T14:45:09.010000"],["2024-07-25T14:45:10.010000"],["2024-07-25T14:45:11.010000"],["2024-07-25T14:45:12.010000"],["2024-07-25T14:45:13.010000"],["2024-07-25T14:45:14.010000"],["2024-07-25T14:45:15.010000"],["2024-07-25T14:45:16.010000"],["2024-07-25T14:45:17.010000"],["2024-07-25T14:45:18.010000"],["2024-07-25T14:45:19.010000"],["2024-07-25T14:45:20.010000"],["2024-07-25T14:45:21.010000"],["2024-07-25T14:45:22.010000"],["2024-07-25T14:45:23.010000"],["2024-07-25T14:45:24.010000"],["2024-07-25T14:45:25.010000"],["2024-07-25T14:45:26.010000"],["2024-07-25T14:45:27.010000"],["2024-07-25T14:45:28.010000"],["2024-07-25T14:45:29.010000"],["2024-07-25T14:45:30.010000"],["2024-07-25T14:45:31.010000"],["2024-07-25T14:45:32.010000"],["2024-07-25T14:45:33.010000"],["2024-07-25T14:45:34.010000"],["2024-07-25T14:45:35.010000"],["2024-07-25T14:45:36.010000"],["2024-07-25T14:45:37.010000"],["2024-07-25T14:45:38.010000"],["2024-07-25T14:45:39.010000"],["2024-07-25T14:45:40.010000"],["2024-07-25T14:45:41.010000"],["2024-07-25T14:45:42.010000"],["2024-07-25T14:45:43.010000"],["2024-07-25T14:45:44.010000"],["2024-07-25T14:45:45.010000"],["2024-07-25T14:45:46.010000"],["2024-07-25T14:45:47.010000"],["2024-07-25T14:45:48.010000"],["2024-07-25T14:45:49.010000"],["2024-07-25T14:45:50.010000"],["2024-07-25T14:45:51.010000"],["2024-07-25T14:45:52.010000"],["2024-07-25T14:45:53.010000"],["2024-07-25T14:45:54.010000"],["2024-07-25T14:45:55.010000"],["2024-07-25T14:45:56.010000"],["2024-07-25T14:45:57.010000"],["2024-07-25T14:45:58.010000"],["2024-07-25T14:45:59.010000"],["2024-07-25T14:46:00.010000"],["2024-07-25T14:46:01.010000"],["2024-07-25T14:46:02.010000"],["2024-07-25T14:46:03.010000"],["2024-07-25T14:46:04.010000"],["2024-07-25T14:46:05.010000"],["2024-07-25T14:46:06.010000"],["2024-07-25T14:46:07.010000"],["2024-07-25T14:46:08.010000"],["2024-07-25T14:46:09.010000"],["2024-07-25T14:46:10.010000"],["2024-07-25T14:46:11.010000"],["2024-07-25T14:46:12.010000"],["2024-07-25T14:46:13.010000"],["2024-07-25T14:46:14.010000"],["2024-07-25T14:46:15.010000"],["2024-07-25T14:46:16.010000"],["2024-07-25T14:46:17.010000"],["2024-07-25T14:46:18.010000"],["2024-07-25T14:46:19.010000"],["2024-07-25T14:46:20.010000"],["2024-07-25T14:46:21.010000"],["2024-07-25T14:46:22.010000"],["2024-07-25T14:46:23.010000"],["2024-07-25T14:46:24.010000"],["2024-07-25T14:46:25.010000"],["2024-07-25T14:46:26.010000"],["2024-07-25T14:46:27.010000"],["2024-07-25T14:46:28.010000"],["2024-07-25T14:46:29.010000"],["2024-07-25T14:46:30.010000"],["2024-07-25T14:46:31.010000"],["2024-07-25T14:46:32.010000"],["2024-07-25T14:46:33.010000"],["2024-07-25T14:46:34.010000"],["2024-07-25T14:46:35.010000"],["2024-07-25T14:46:36.010000"],["2024-07-25T14:46:37.010000"],["2024-07-25T14:46:38.010000"],["2024-07-25T14:46:39.010000"],["2024-07-25T14:46:40.010000"],["2024-07-25T14:46:41.010000"],["2024-07-25T14:46:42.010000"],["2024-07-25T14:46:43.010000"],["2024-07-25T14:46:44.010000"],["2024-07-25T14:46:45.010000"],["2024-07-25T14:46:46.010000"],["2024-07-25T14:46:47.010000"],["2024-07-25T14:46:48.010000"],["2024-07-25T14:46:49.010000"],["2024-07-25T14:46:50.010000"],["2024-07-25T14:46:51.010000"],["2024-07-25T14:46:52.010000"],["2024-07-25T14:46:53.010000"],["2024-07-25T14:46:54.010000"],["2024-07-25T14:46:55.010000"],["2024-07-25T14:46:56.010000"],["2024-07-25T14:46:57.010000"],["2024-07-25T14:46:58.010000"],["2024-07-25T14:46:59.010000"],["2024-07-25T14:47:00.010000"],["2024-07-25T14:47:01.010000"],["2024-07-25T14:47:02.010000"],["2024-07-25T14:47:03.010000"],["2024-07-25T14:47:04.010000"],["2024-07-25T14:47:05.010000"],["2024-07-25T14:47:06.010000"],["2024-07-25T14:47:07.010000"],["2024-07-25T14:47:08.010000"],["2024-07-25T14:47:09.010000"],["2024-07-25T14:47:10.010000"],["2024-07-25T14:47:11.010000"],["2024-07-25T14:47:12.010000"],["2024-07-25T14:47:13.010000"],["2024-07-25T14:47:14.010000"],["2024-07-25T14:47:15.010000"],["2024-07-25T14:47:16.010000"],["2024-07-25T14:47:17.010000"],["2024-07-25T14:47:18.010000"],["2024-07-25T14:47:19.010000"],["2024-07-25T14:47:20.010000"],["2024-07-25T14:47:21.010000"],["2024-07-25T14:47:22.010000"],["2024-07-25T14:47:23.010000"],["2024-07-25T14:47:24.010000"],["2024-07-25T14:47:25.010000"],["2024-07-25T14:47:26.010000"],["2024-07-25T14:47:27.010000"],["2024-07-25T14:47:28.010000"],["2024-07-25T14:47:29.010000"],["2024-07-25T14:47:30.010000"],["2024-07-25T14:47:31.010000"],["2024-07-25T14:47:32.010000"],["2024-07-25T14:47:33.010000"],["2024-07-25T14:47:34.010000"],["2024-07-25T14:47:35.010000"],["2024-07-25T14:47:36.010000"],["2024-07-25T14:47:37.010000"],["2024-07-25T14:47:38.010000"],["2024-07-25T14:47:39.010000"],["2024-07-25T14:47:40.010000"],["2024-07-25T14:47:41.010000"],["2024-07-25T14:47:42.010000"],["2024-07-25T14:47:43.010000"],["2024-07-25T14:47:44.010000"],["2024-07-25T14:47:45.010000"],["2024-07-25T14:47:46.010000"],["2024-07-25T14:47:47.010000"],["2024-07-25T14:47:48.010000"],["2024-07-25T14:47:49.010000"],["2024-07-25T14:47:50.010000"],["2024-07-25T14:47:51.010000"],["2024-07-25T14:47:52.010000"],["2024-07-25T14:47:53.010000"],["2024-07-25T14:47:54.010000"],["2024-07-25T14:47:55.010000"],["2024-07-25T14:47:56.010000"],["2024-07-25T14:47:57.010000"],["2024-07-25T14:47:58.010000"],["2024-07-25T14:47:59.010000"],["2024-07-25T14:48:00.010000"],["2024-07-25T14:48:01.010000"],["2024-07-25T14:48:02.010000"],["2024-07-25T14:48:03.010000"],["2024-07-25T14:48:04.010000"],["2024-07-25T14:48:05.010000"],["2024-07-25T14:48:06.010000"],["2024-07-25T14:48:07.010000"],["2024-07-25T14:48:08.010000"],["2024-07-25T14:48:09.010000"],["2024-07-25T14:48:10.010000"],["2024-07-25T14:48:11.010000"],["2024-07-25T14:48:12.010000"],["2024-07-25T14:48:13.010000"],["2024-07-25T14:48:14.010000"],["2024-07-25T14:48:15.010000"],["2024-07-25T14:48:16.010000"],["2024-07-25T14:48:17.010000"],["2024-07-25T14:48:18.010000"],["2024-07-25T14:48:19.010000"],["2024-07-25T14:48:20.010000"],["2024-07-25T14:48:21.010000"],["2024-07-25T14:48:22.010000"],["2024-07-25T14:48:23.010000"],["2024-07-25T14:48:24.010000"],["2024-07-25T14:48:25.010000"],["2024-07-25T14:48:26.010000"],["2024-07-25T14:48:27.010000"],["2024-07-25T14:48:28.010000"],["2024-07-25T14:48:29.010000"],["2024-07-25T14:48:30.010000"],["2024-07-25T14:48:31.010000"],["2024-07-25T14:48:32.010000"],["2024-07-25T14:48:33.010000"],["2024-07-25T14:48:34.010000"],["2024-07-25T14:48:35.010000"],["2024-07-25T14:48:36.010000"],["2024-07-25T14:48:37.010000"],["2024-07-25T14:48:38.010000"],["2024-07-25T14:48:39.010000"],["2024-07-25T14:48:40.010000"],["2024-07-25T14:48:41.010000"],["2024-07-25T14:48:42.010000"],["2024-07-25T14:48:43.010000"],["2024-07-25T14:48:44.010000"],["2024-07-25T14:48:45.010000"],["2024-07-25T14:48:46.010000"],["2024-07-25T14:48:47.010000"],["2024-07-25T14:48:48.010000"],["2024-07-25T14:48:49.010000"],["2024-07-25T14:48:50.010000"],["2024-07-25T14:48:51.010000"],["2024-07-25T14:48:52.010000"],["2024-07-25T14:48:53.010000"],["2024-07-25T14:48:54.010000"],["2024-07-25T14:48:55.010000"],["2024-07-25T14:48:56.010000"],["2024-07-25T14:48:57.010000"],["2024-07-25T14:48:58.010000"],["2024-07-25T14:48:59.010000"],["2024-07-25T14:49:00.010000"],["2024-07-25T14:49:01.010000"],["2024-07-25T14:49:02.010000"],["2024-07-25T14:49:03.010000"],["2024-07-25T14:49:04.010000"],["2024-07-25T14:49:05.010000"],["2024-07-25T14:49:06.010000"],["2024-07-25T14:49:07.010000"],["2024-07-25T14:49:08.010000"],["2024-07-25T14:49:09.010000"],["2024-07-25T14:49:10.010000"],["2024-07-25T14:49:11.010000"],["2024-07-25T14:49:12.010000"],["2024-07-25T14:49:13.010000"],["2024-07-25T14:49:14.010000"],["2024-07-25T14:49:15.010000"],["2024-07-25T14:49:16.010000"],["2024-07-25T14:49:17.010000"],["2024-07-25T14:49:18.010000"],["2024-07-25T14:49:19.010000"],["2024-07-25T14:49:20.010000"],["2024-07-25T14:49:21.010000"],["2024-07-25T14:49:22.010000"],["2024-07-25T14:49:23.010000"],["2024-07-25T14:49:24.010000"],["2024-07-25T14:49:25.010000"],["2024-07-25T14:49:26.010000"],["2024-07-25T14:49:27.010000"],["2024-07-25T14:49:28.010000"],["2024-07-25T14:49:29.010000"],["2024-07-25T14:49:30.010000"],["2024-07-25T14:49:31.010000"],["2024-07-25T14:49:32.010000"],["2024-07-25T14:49:33.010000"],["2024-07-25T14:49:34.010000"],["2024-07-25T14:49:35.010000"],["2024-07-25T14:49:36.010000"],["2024-07-25T14:49:37.010000"],["2024-07-25T14:49:38.010000"],["2024-07-25T14:49:39.010000"],["2024-07-25T14:49:40.010000"],["2024-07-25T14:49:41.010000"],["2024-07-25T14:49:42.010000"],["2024-07-25T14:49:43.010000"],["2024-07-25T14:49:44.010000"],["2024-07-25T14:49:45.010000"],["2024-07-25T14:49:46.010000"],["2024-07-25T14:49:47.010000"],["2024-07-25T14:49:48.010000"],["2024-07-25T14:49:49.010000"],["2024-07-25T14:49:50.010000"],["2024-07-25T14:49:51.010000"],["2024-07-25T14:49:52.010000"],["2024-07-25T14:49:53.010000"],["2024-07-25T14:49:54.010000"],["2024-07-25T14:49:55.010000"],["2024-07-25T14:49:56.010000"],["2024-07-25T14:49:57.010000"],["2024-07-25T14:49:58.010000"],["2024-07-25T14:49:59.010000"],["2024-07-25T14:50:00.010000"],["2024-07-25T14:50:01.010000"],["2024-07-25T14:50:02.010000"],["2024-07-25T14:50:03.010000"],["2024-07-25T14:50:04.010000"],["2024-07-25T14:50:05.010000"],["2024-07-25T14:50:06.010000"],["2024-07-25T14:50:07.010000"],["2024-07-25T14:50:08.010000"],["2024-07-25T14:50:09.010000"],["2024-07-25T14:50:10.010000"],["2024-07-25T14:50:11.010000"],["2024-07-25T14:50:12.010000"],["2024-07-25T14:50:13.010000"],["2024-07-25T14:50:14.010000"],["2024-07-25T14:50:15.010000"],["2024-07-25T14:50:16.010000"],["2024-07-25T14:50:17.010000"],["2024-07-25T14:50:18.010000"],["2024-07-25T14:50:19.010000"],["2024-07-25T14:50:20.010000"],["2024-07-25T14:50:21.010000"],["2024-07-25T14:50:22.010000"],["2024-07-25T14:50:23.010000"],["2024-07-25T14:50:24.010000"],["2024-07-25T14:50:25.010000"],["2024-07-25T14:50:26.010000"],["2024-07-25T14:50:27.010000"],["2024-07-25T14:50:28.010000"],["2024-07-25T14:50:29.010000"],["2024-07-25T14:50:30.010000"],["2024-07-25T14:50:31.010000"],["2024-07-25T14:50:32.010000"],["2024-07-25T14:50:33.010000"],["2024-07-25T14:50:34.010000"],["2024-07-25T14:50:35.010000"],["2024-07-25T14:50:36.010000"],["2024-07-25T14:50:37.010000"],["2024-07-25T14:50:38.010000"],["2024-07-25T14:50:39.010000"],["2024-07-25T14:50:40.010000"],["2024-07-25T14:50:41.010000"],["2024-07-25T14:50:42.010000"],["2024-07-25T14:50:43.010000"],["2024-07-25T14:50:44.010000"],["2024-07-25T14:50:45.010000"],["2024-07-25T14:50:46.010000"],["2024-07-25T14:50:47.010000"],["2024-07-25T14:50:48.010000"],["2024-07-25T14:50:49.010000"],["2024-07-25T14:50:50.010000"],["2024-07-25T14:50:51.010000"],["2024-07-25T14:50:52.010000"],["2024-07-25T14:50:53.010000"],["2024-07-25T14:50:54.010000"],["2024-07-25T14:50:55.010000"],["2024-07-25T14:50:56.010000"],["2024-07-25T14:50:57.010000"],["2024-07-25T14:50:58.010000"],["2024-07-25T14:50:59.010000"],["2024-07-25T14:51:00.010000"],["2024-07-25T14:51:01.010000"],["2024-07-25T14:51:02.010000"],["2024-07-25T14:51:03.010000"],["2024-07-25T14:51:04.010000"],["2024-07-25T14:51:05.010000"],["2024-07-25T14:51:06.010000"],["2024-07-25T14:51:07.010000"],["2024-07-25T14:51:08.010000"],["2024-07-25T14:51:09.010000"],["2024-07-25T14:51:10.010000"],["2024-07-25T14:51:11.010000"],["2024-07-25T14:51:12.010000"],["2024-07-25T14:51:13.010000"],["2024-07-25T14:51:14.010000"],["2024-07-25T14:51:15.010000"],["2024-07-25T14:51:16.010000"],["2024-07-25T14:51:17.010000"],["2024-07-25T14:51:18.010000"],["2024-07-25T14:51:19.010000"],["2024-07-25T14:51:20.010000"],["2024-07-25T14:51:21.010000"],["2024-07-25T14:51:22.010000"],["2024-07-25T14:51:23.010000"],["2024-07-25T14:51:24.010000"],["2024-07-25T14:51:25.010000"],["2024-07-25T14:51:26.010000"],["2024-07-25T14:51:27.010000"],["2024-07-25T14:51:28.010000"],["2024-07-25T14:51:29.010000"],["2024-07-25T14:51:30.010000"],["2024-07-25T14:51:31.010000"],["2024-07-25T14:51:32.010000"],["2024-07-25T14:51:33.010000"],["2024-07-25T14:51:34.010000"],["2024-07-25T14:51:35.010000"],["2024-07-25T14:51:36.010000"],["2024-07-25T14:51:37.010000"],["2024-07-25T14:51:38.010000"],["2024-07-25T14:51:39.010000"],["2024-07-25T14:51:40.010000"],["2024-07-25T14:51:41.010000"],["2024-07-25T14:51:42.010000"],["2024-07-25T14:51:43.010000"],["2024-07-25T14:51:44.010000"],["2024-07-25T14:51:45.010000"],["2024-07-25T14:51:46.010000"],["2024-07-25T14:51:47.010000"],["2024-07-25T14:51:48.010000"],["2024-07-25T14:51:49.010000"],["2024-07-25T14:51:50.010000"],["2024-07-25T14:51:51.010000"],["2024-07-25T14:51:52.010000"],["2024-07-25T14:51:53.010000"],["2024-07-25T14:51:54.010000"],["2024-07-25T14:51:55.010000"],["2024-07-25T14:51:56.010000"],["2024-07-25T14:51:57.010000"],["2024-07-25T14:51:58.010000"],["2024-07-25T14:51:59.010000"],["2024-07-25T14:52:00.010000"],["2024-07-25T14:52:01.010000"],["2024-07-25T14:52:02.010000"],["2024-07-25T14:52:03.010000"],["2024-07-25T14:52:04.010000"],["2024-07-25T14:52:05.010000"],["2024-07-25T14:52:06.010000"],["2024-07-25T14:52:07.010000"],["2024-07-25T14:52:08.010000"],["2024-07-25T14:52:09.010000"],["2024-07-25T14:52:10.010000"],["2024-07-25T14:52:11.010000"],["2024-07-25T14:52:12.010000"],["2024-07-25T14:52:13.010000"],["2024-07-25T14:52:14.010000"],["2024-07-25T14:52:15.010000"],["2024-07-25T14:52:16.010000"],["2024-07-25T14:52:17.010000"],["2024-07-25T14:52:18.010000"],["2024-07-25T14:52:19.010000"],["2024-07-25T14:52:20.010000"],["2024-07-25T14:52:21.010000"],["2024-07-25T14:52:22.010000"],["2024-07-25T14:52:23.010000"],["2024-07-25T14:52:24.010000"],["2024-07-25T14:52:25.010000"],["2024-07-25T14:52:26.010000"],["2024-07-25T14:52:27.010000"],["2024-07-25T14:52:28.010000"],["2024-07-25T14:52:29.010000"],["2024-07-25T14:52:30.010000"],["2024-07-25T14:52:31.010000"],["2024-07-25T14:52:32.010000"],["2024-07-25T14:52:33.010000"],["2024-07-25T14:52:34.010000"],["2024-07-25T14:52:35.010000"],["2024-07-25T14:52:36.010000"],["2024-07-25T14:52:37.010000"],["2024-07-25T14:52:38.010000"],["2024-07-25T14:52:39.010000"],["2024-07-25T14:52:40.010000"],["2024-07-25T14:52:41.010000"],["2024-07-25T14:52:42.010000"],["2024-07-25T14:52:43.010000"],["2024-07-25T14:52:44.010000"],["2024-07-25T14:52:45.010000"],["2024-07-25T14:52:46.010000"],["2024-07-25T14:52:47.010000"],["2024-07-25T14:52:48.010000"],["2024-07-25T14:52:49.010000"],["2024-07-25T14:52:50.010000"],["2024-07-25T14:52:51.010000"],["2024-07-25T14:52:52.010000"],["2024-07-25T14:52:53.010000"],["2024-07-25T14:52:54.010000"],["2024-07-25T14:52:55.010000"],["2024-07-25T14:52:56.010000"],["2024-07-25T14:52:57.010000"],["2024-07-25T14:52:58.010000"],["2024-07-25T14:52:59.010000"],["2024-07-25T14:53:00.010000"],["2024-07-25T14:53:01.010000"],["2024-07-25T14:53:02.010000"],["2024-07-25T14:53:03.010000"],["2024-07-25T14:53:04.010000"],["2024-07-25T14:53:05.010000"],["2024-07-25T14:53:06.010000"],["2024-07-25T14:53:07.010000"],["2024-07-25T14:53:08.010000"],["2024-07-25T14:53:09.010000"],["2024-07-25T14:53:10.010000"],["2024-07-25T14:53:11.010000"],["2024-07-25T14:53:12.010000"],["2024-07-25T14:53:13.010000"],["2024-07-25T14:53:14.010000"],["2024-07-25T14:53:15.010000"],["2024-07-25T14:53:16.010000"],["2024-07-25T14:53:17.010000"],["2024-07-25T14:53:18.010000"],["2024-07-25T14:53:19.010000"],["2024-07-25T14:53:20.010000"],["2024-07-25T14:53:21.010000"],["2024-07-25T14:53:22.010000"],["2024-07-25T14:53:23.010000"],["2024-07-25T14:53:24.010000"],["2024-07-25T14:53:25.010000"],["2024-07-25T14:53:26.010000"],["2024-07-25T14:53:27.010000"],["2024-07-25T14:53:28.010000"],["2024-07-25T14:53:29.010000"],["2024-07-25T14:53:30.010000"],["2024-07-25T14:53:31.010000"],["2024-07-25T14:53:32.010000"],["2024-07-25T14:53:33.010000"],["2024-07-25T14:53:34.010000"],["2024-07-25T14:53:35.010000"],["2024-07-25T14:53:36.010000"],["2024-07-25T14:53:37.010000"],["2024-07-25T14:53:38.010000"],["2024-07-25T14:53:39.010000"],["2024-07-25T14:53:40.010000"],["2024-07-25T14:53:41.010000"],["2024-07-25T14:53:42.010000"],["2024-07-25T14:53:43.010000"],["2024-07-25T14:53:44.010000"],["2024-07-25T14:53:45.010000"],["2024-07-25T14:53:46.010000"],["2024-07-25T14:53:47.010000"],["2024-07-25T14:53:48.010000"],["2024-07-25T14:53:49.010000"],["2024-07-25T14:53:50.010000"],["2024-07-25T14:53:51.010000"],["2024-07-25T14:53:52.010000"],["2024-07-25T14:53:53.010000"],["2024-07-25T14:53:54.010000"],["2024-07-25T14:53:55.010000"],["2024-07-25T14:53:56.010000"],["2024-07-25T14:53:57.010000"],["2024-07-25T14:53:58.010000"],["2024-07-25T14:53:59.010000"],["2024-07-25T14:54:00.010000"],["2024-07-25T14:54:01.010000"],["2024-07-25T14:54:02.010000"],["2024-07-25T14:54:03.010000"],["2024-07-25T14:54:04.010000"],["2024-07-25T14:54:05.010000"],["2024-07-25T14:54:06.010000"],["2024-07-25T14:54:07.010000"],["2024-07-25T14:54:08.010000"],["2024-07-25T14:54:09.010000"],["2024-07-25T14:54:10.010000"],["2024-07-25T14:54:11.010000"],["2024-07-25T14:54:12.010000"],["2024-07-25T14:54:13.010000"],["2024-07-25T14:54:14.010000"],["2024-07-25T14:54:15.010000"],["2024-07-25T14:54:16.010000"],["2024-07-25T14:54:17.010000"],["2024-07-25T14:54:18.010000"],["2024-07-25T14:54:19.010000"],["2024-07-25T14:54:20.010000"],["2024-07-25T14:54:21.010000"],["2024-07-25T14:54:22.010000"],["2024-07-25T14:54:23.010000"],["2024-07-25T14:54:24.010000"],["2024-07-25T14:54:25.010000"],["2024-07-25T14:54:26.010000"],["2024-07-25T14:54:27.010000"],["2024-07-25T14:54:28.010000"],["2024-07-25T14:54:29.010000"],["2024-07-25T14:54:30.010000"],["2024-07-25T14:54:31.010000"],["2024-07-25T14:54:32.010000"],["2024-07-25T14:54:33.010000"],["2024-07-25T14:54:34.010000"],["2024-07-25T14:54:35.010000"],["2024-07-25T14:54:36.010000"],["2024-07-25T14:54:37.010000"],["2024-07-25T14:54:38.010000"],["2024-07-25T14:54:39.010000"],["2024-07-25T14:54:40.010000"],["2024-07-25T14:54:41.010000"],["2024-07-25T14:54:42.010000"],["2024-07-25T14:54:43.010000"],["2024-07-25T14:54:44.010000"],["2024-07-25T14:54:45.010000"],["2024-07-25T14:54:46.010000"],["2024-07-25T14:54:47.010000"],["2024-07-25T14:54:48.010000"],["2024-07-25T14:54:49.010000"],["2024-07-25T14:54:50.010000"],["2024-07-25T14:54:51.010000"],["2024-07-25T14:54:52.010000"],["2024-07-25T14:54:53.010000"],["2024-07-25T14:54:54.010000"],["2024-07-25T14:54:55.010000"],["2024-07-25T14:54:56.010000"],["2024-07-25T14:54:57.010000"],["2024-07-25T14:54:58.010000"],["2024-07-25T14:54:59.010000"],["2024-07-25T14:55:00.010000"],["2024-07-25T14:55:01.010000"],["2024-07-25T14:55:02.010000"],["2024-07-25T14:55:03.010000"],["2024-07-25T14:55:04.010000"],["2024-07-25T14:55:05.010000"],["2024-07-25T14:55:06.010000"],["2024-07-25T14:55:07.010000"],["2024-07-25T14:55:08.010000"],["2024-07-25T14:55:09.010000"],["2024-07-25T14:55:10.010000"],["2024-07-25T14:55:11.010000"],["2024-07-25T14:55:12.010000"],["2024-07-25T14:55:13.010000"],["2024-07-25T14:55:14.010000"],["2024-07-25T14:55:15.010000"],["2024-07-25T14:55:16.010000"],["2024-07-25T14:55:17.010000"],["2024-07-25T14:55:18.010000"],["2024-07-25T14:55:19.010000"],["2024-07-25T14:55:20.010000"],["2024-07-25T14:55:21.010000"],["2024-07-25T14:55:22.010000"],["2024-07-25T14:55:23.010000"],["2024-07-25T14:55:24.010000"],["2024-07-25T14:55:25.010000"],["2024-07-25T14:55:26.010000"],["2024-07-25T14:55:27.010000"],["2024-07-25T14:55:28.010000"],["2024-07-25T14:55:29.010000"],["2024-07-25T14:55:30.010000"],["2024-07-25T14:55:31.010000"],["2024-07-25T14:55:32.010000"],["2024-07-25T14:55:33.010000"],["2024-07-25T14:55:34.010000"],["2024-07-25T14:55:35.010000"],["2024-07-25T14:55:36.010000"],["2024-07-25T14:55:37.010000"],["2024-07-25T14:55:38.010000"],["2024-07-25T14:55:39.010000"],["2024-07-25T14:55:40.010000"],["2024-07-25T14:55:41.010000"],["2024-07-25T14:55:42.010000"],["2024-07-25T14:55:43.010000"],["2024-07-25T14:55:44.010000"],["2024-07-25T14:55:45.010000"],["2024-07-25T14:55:46.010000"],["2024-07-25T14:55:47.010000"],["2024-07-25T14:55:48.010000"],["2024-07-25T14:55:49.010000"],["2024-07-25T14:55:50.010000"],["2024-07-25T14:55:51.010000"],["2024-07-25T14:55:52.010000"],["2024-07-25T14:55:53.010000"],["2024-07-25T14:55:54.010000"],["2024-07-25T14:55:55.010000"],["2024-07-25T14:55:56.010000"],["2024-07-25T14:55:57.010000"],["2024-07-25T14:55:58.010000"],["2024-07-25T14:55:59.010000"],["2024-07-25T14:56:00.010000"],["2024-07-25T14:56:01.010000"],["2024-07-25T14:56:02.010000"],["2024-07-25T14:56:03.010000"],["2024-07-25T14:56:04.010000"],["2024-07-25T14:56:05.010000"],["2024-07-25T14:56:06.010000"],["2024-07-25T14:56:07.010000"],["2024-07-25T14:56:08.010000"],["2024-07-25T14:56:09.010000"],["2024-07-25T14:56:10.010000"],["2024-07-25T14:56:11.010000"],["2024-07-25T14:56:12.010000"],["2024-07-25T14:56:13.010000"],["2024-07-25T14:56:14.010000"],["2024-07-25T14:56:15.010000"],["2024-07-25T14:56:16.010000"],["2024-07-25T14:56:17.010000"],["2024-07-25T14:56:18.010000"],["2024-07-25T14:56:19.010000"],["2024-07-25T14:56:20.010000"],["2024-07-25T14:56:21.010000"],["2024-07-25T14:56:22.010000"],["2024-07-25T14:56:23.010000"],["2024-07-25T14:56:24.010000"],["2024-07-25T14:56:25.010000"],["2024-07-25T14:56:26.010000"],["2024-07-25T14:56:27.010000"],["2024-07-25T14:56:28.010000"],["2024-07-25T14:56:29.010000"],["2024-07-25T14:56:30.010000"],["2024-07-25T14:56:31.010000"],["2024-07-25T14:56:32.010000"],["2024-07-25T14:56:33.010000"],["2024-07-25T14:56:34.010000"],["2024-07-25T14:56:35.010000"],["2024-07-25T14:56:36.010000"],["2024-07-25T14:56:37.010000"],["2024-07-25T14:56:38.010000"],["2024-07-25T14:56:39.010000"],["2024-07-25T14:56:40.010000"],["2024-07-25T14:56:41.010000"],["2024-07-25T14:56:42.010000"],["2024-07-25T14:56:43.010000"],["2024-07-25T14:56:44.010000"],["2024-07-25T14:56:45.010000"],["2024-07-25T14:56:46.010000"],["2024-07-25T14:56:47.010000"],["2024-07-25T14:56:48.010000"],["2024-07-25T14:56:49.010000"],["2024-07-25T14:56:50.010000"],["2024-07-25T14:56:51.010000"],["2024-07-25T14:56:52.010000"],["2024-07-25T14:56:53.010000"],["2024-07-25T14:56:54.010000"],["2024-07-25T14:56:55.010000"],["2024-07-25T14:56:56.010000"],["2024-07-25T14:56:57.010000"],["2024-07-25T14:56:58.010000"],["2024-07-25T14:56:59.010000"],["2024-07-25T14:57:00.010000"],["2024-07-25T14:57:01.010000"],["2024-07-25T14:57:02.010000"],["2024-07-25T14:57:03.010000"],["2024-07-25T14:57:04.010000"],["2024-07-25T14:57:05.010000"],["2024-07-25T14:57:06.010000"],["2024-07-25T14:57:07.010000"],["2024-07-25T14:57:08.010000"],["2024-07-25T14:57:09.010000"],["2024-07-25T14:57:10.010000"],["2024-07-25T14:57:11.010000"],["2024-07-25T14:57:12.010000"],["2024-07-25T14:57:13.010000"],["2024-07-25T14:57:14.010000"],["2024-07-25T14:57:15.010000"],["2024-07-25T14:57:16.010000"],["2024-07-25T14:57:17.010000"],["2024-07-25T14:57:18.010000"],["2024-07-25T14:57:19.010000"],["2024-07-25T14:57:20.010000"],["2024-07-25T14:57:21.010000"],["2024-07-25T14:57:22.010000"],["2024-07-25T14:57:23.010000"],["2024-07-25T14:57:24.010000"],["2024-07-25T14:57:25.010000"],["2024-07-25T14:57:26.010000"],["2024-07-25T14:57:27.010000"],["2024-07-25T14:57:28.010000"],["2024-07-25T14:57:29.010000"],["2024-07-25T14:57:30.010000"],["2024-07-25T14:57:31.010000"],["2024-07-25T14:57:32.010000"],["2024-07-25T14:57:33.010000"],["2024-07-25T14:57:34.010000"],["2024-07-25T14:57:35.010000"],["2024-07-25T14:57:36.010000"],["2024-07-25T14:57:37.010000"],["2024-07-25T14:57:38.010000"],["2024-07-25T14:57:39.010000"],["2024-07-25T14:57:40.010000"],["2024-07-25T14:57:41.010000"],["2024-07-25T14:57:42.010000"],["2024-07-25T14:57:43.010000"],["2024-07-25T14:57:44.010000"],["2024-07-25T14:57:45.010000"],["2024-07-25T14:57:46.010000"],["2024-07-25T14:57:47.010000"],["2024-07-25T14:57:48.010000"],["2024-07-25T14:57:49.010000"],["2024-07-25T14:57:50.010000"],["2024-07-25T14:57:51.010000"],["2024-07-25T14:57:52.010000"],["2024-07-25T14:57:53.010000"],["2024-07-25T14:57:54.010000"],["2024-07-25T14:57:55.010000"],["2024-07-25T14:57:56.010000"],["2024-07-25T14:57:57.010000"],["2024-07-25T14:57:58.010000"],["2024-07-25T14:57:59.010000"],["2024-07-25T14:58:00.010000"],["2024-07-25T14:58:01.010000"],["2024-07-25T14:58:02.010000"],["2024-07-25T14:58:03.010000"],["2024-07-25T14:58:04.010000"],["2024-07-25T14:58:05.010000"],["2024-07-25T14:58:06.010000"],["2024-07-25T14:58:07.010000"],["2024-07-25T14:58:08.010000"],["2024-07-25T14:58:09.010000"],["2024-07-25T14:58:10.010000"],["2024-07-25T14:58:11.010000"],["2024-07-25T14:58:12.010000"],["2024-07-25T14:58:13.010000"],["2024-07-25T14:58:14.010000"],["2024-07-25T14:58:15.010000"],["2024-07-25T14:58:16.010000"],["2024-07-25T14:58:17.010000"],["2024-07-25T14:58:18.010000"],["2024-07-25T14:58:19.010000"],["2024-07-25T14:58:20.010000"],["2024-07-25T14:58:21.010000"],["2024-07-25T14:58:22.010000"],["2024-07-25T14:58:23.010000"],["2024-07-25T14:58:24.010000"],["2024-07-25T14:58:25.010000"],["2024-07-25T14:58:26.010000"],["2024-07-25T14:58:27.010000"],["2024-07-25T14:58:28.010000"],["2024-07-25T14:58:29.010000"],["2024-07-25T14:58:30.010000"],["2024-07-25T14:58:31.010000"],["2024-07-25T14:58:32.010000"],["2024-07-25T14:58:33.010000"],["2024-07-25T14:58:34.010000"],["2024-07-25T14:58:35.010000"],["2024-07-25T14:58:36.010000"],["2024-07-25T14:58:37.010000"],["2024-07-25T14:58:38.010000"],["2024-07-25T14:58:39.010000"],["2024-07-25T14:58:40.010000"],["2024-07-25T14:58:41.010000"],["2024-07-25T14:58:42.010000"],["2024-07-25T14:58:43.010000"],["2024-07-25T14:58:44.010000"],["2024-07-25T14:58:45.010000"],["2024-07-25T14:58:46.010000"],["2024-07-25T14:58:47.010000"],["2024-07-25T14:58:48.010000"],["2024-07-25T14:58:49.010000"],["2024-07-25T14:58:50.010000"],["2024-07-25T14:58:51.010000"],["2024-07-25T14:58:52.010000"],["2024-07-25T14:58:53.010000"],["2024-07-25T14:58:54.010000"],["2024-07-25T14:58:55.010000"],["2024-07-25T14:58:56.010000"],["2024-07-25T14:58:57.010000"],["2024-07-25T14:58:58.010000"],["2024-07-25T14:58:59.010000"],["2024-07-25T14:59:00.010000"],["2024-07-25T14:59:01.010000"],["2024-07-25T14:59:02.010000"],["2024-07-25T14:59:03.010000"],["2024-07-25T14:59:04.010000"],["2024-07-25T14:59:05.010000"],["2024-07-25T14:59:06.010000"],["2024-07-25T14:59:07.010000"],["2024-07-25T14:59:08.010000"],["2024-07-25T14:59:09.010000"],["2024-07-25T14:59:10.010000"],["2024-07-25T14:59:11.010000"],["2024-07-25T14:59:12.010000"],["2024-07-25T14:59:13.010000"],["2024-07-25T14:59:14.010000"],["2024-07-25T14:59:15.010000"],["2024-07-25T14:59:16.010000"],["2024-07-25T14:59:17.010000"],["2024-07-25T14:59:18.010000"],["2024-07-25T14:59:19.010000"],["2024-07-25T14:59:20.010000"],["2024-07-25T14:59:21.010000"],["2024-07-25T14:59:22.010000"],["2024-07-25T14:59:23.010000"],["2024-07-25T14:59:24.010000"],["2024-07-25T14:59:25.010000"],["2024-07-25T14:59:26.010000"],["2024-07-25T14:59:27.010000"],["2024-07-25T14:59:28.010000"],["2024-07-25T14:59:29.010000"],["2024-07-25T14:59:30.010000"],["2024-07-25T14:59:31.010000"],["2024-07-25T14:59:32.010000"],["2024-07-25T14:59:33.010000"],["2024-07-25T14:59:34.010000"],["2024-07-25T14:59:35.010000"],["2024-07-25T14:59:36.010000"],["2024-07-25T14:59:37.010000"],["2024-07-25T14:59:38.010000"],["2024-07-25T14:59:39.010000"],["2024-07-25T14:59:40.010000"],["2024-07-25T14:59:41.010000"],["2024-07-25T14:59:42.010000"],["2024-07-25T14:59:43.010000"],["2024-07-25T14:59:44.010000"],["2024-07-25T14:59:45.010000"],["2024-07-25T14:59:46.010000"],["2024-07-25T14:59:47.010000"],["2024-07-25T14:59:48.010000"],["2024-07-25T14:59:49.010000"],["2024-07-25T14:59:50.010000"],["2024-07-25T14:59:51.010000"],["2024-07-25T14:59:52.010000"],["2024-07-25T14:59:53.010000"],["2024-07-25T14:59:54.010000"],["2024-07-25T14:59:55.010000"],["2024-07-25T14:59:56.010000"],["2024-07-25T14:59:57.010000"],["2024-07-25T14:59:58.010000"],["2024-07-25T14:59:59.010000"],["2024-07-25T15:00:00.010000"],["2024-07-25T15:00:01.010000"],["2024-07-25T15:00:02.010000"],["2024-07-25T15:00:03.010000"],["2024-07-25T15:00:04.010000"],["2024-07-25T15:00:05.010000"],["2024-07-25T15:00:06.010000"],["2024-07-25T15:00:07.010000"],["2024-07-25T15:00:08.010000"],["2024-07-25T15:00:09.010000"],["2024-07-25T15:00:10.010000"],["2024-07-25T15:00:11.010000"],["2024-07-25T15:00:12.010000"],["2024-07-25T15:00:13.010000"],["2024-07-25T15:00:14.010000"],["2024-07-25T15:00:15.010000"],["2024-07-25T15:00:16.010000"],["2024-07-25T15:00:17.010000"],["2024-07-25T15:00:18.010000"],["2024-07-25T15:00:19.010000"],["2024-07-25T15:00:20.010000"],["2024-07-25T15:00:21.010000"],["2024-07-25T15:00:22.010000"],["2024-07-25T15:00:23.010000"],["2024-07-25T15:00:24.010000"],["2024-07-25T15:00:25.010000"],["2024-07-25T15:00:26.010000"],["2024-07-25T15:00:27.010000"],["2024-07-25T15:00:28.010000"],["2024-07-25T15:00:29.010000"],["2024-07-25T15:00:30.010000"],["2024-07-25T15:00:31.010000"],["2024-07-25T15:00:32.010000"],["2024-07-25T15:00:33.010000"],["2024-07-25T15:00:34.010000"],["2024-07-25T15:00:35.010000"],["2024-07-25T15:00:36.010000"],["2024-07-25T15:00:37.010000"],["2024-07-25T15:00:38.010000"],["2024-07-25T15:00:39.010000"],["2024-07-25T15:00:40.010000"],["2024-07-25T15:00:41.010000"],["2024-07-25T15:00:42.010000"],["2024-07-25T15:00:43.010000"],["2024-07-25T15:00:44.010000"],["2024-07-25T15:00:45.010000"],["2024-07-25T15:00:46.010000"],["2024-07-25T15:00:47.010000"],["2024-07-25T15:00:48.010000"],["2024-07-25T15:00:49.010000"],["2024-07-25T15:00:50.010000"],["2024-07-25T15:00:51.010000"],["2024-07-25T15:00:52.010000"],["2024-07-25T15:00:53.010000"],["2024-07-25T15:00:54.010000"],["2024-07-25T15:00:55.010000"],["2024-07-25T15:00:56.010000"],["2024-07-25T15:00:57.010000"],["2024-07-25T15:00:58.010000"],["2024-07-25T15:00:59.010000"],["2024-07-25T15:01:00.010000"],["2024-07-25T15:01:01.010000"],["2024-07-25T15:01:02.010000"],["2024-07-25T15:01:03.010000"],["2024-07-25T15:01:04.010000"],["2024-07-25T15:01:05.010000"],["2024-07-25T15:01:06.010000"],["2024-07-25T15:01:07.010000"],["2024-07-25T15:01:08.010000"],["2024-07-25T15:01:09.010000"],["2024-07-25T15:01:10.010000"],["2024-07-25T15:01:11.010000"],["2024-07-25T15:01:12.010000"],["2024-07-25T15:01:13.010000"],["2024-07-25T15:01:14.010000"],["2024-07-25T15:01:15.010000"],["2024-07-25T15:01:16.010000"],["2024-07-25T15:01:17.010000"],["2024-07-25T15:01:18.010000"],["2024-07-25T15:01:19.010000"],["2024-07-25T15:01:20.010000"],["2024-07-25T15:01:21.010000"],["2024-07-25T15:01:22.010000"],["2024-07-25T15:01:23.010000"],["2024-07-25T15:01:24.010000"],["2024-07-25T15:01:25.010000"],["2024-07-25T15:01:26.010000"],["2024-07-25T15:01:27.010000"],["2024-07-25T15:01:28.010000"],["2024-07-25T15:01:29.010000"],["2024-07-25T15:01:30.010000"],["2024-07-25T15:01:31.010000"],["2024-07-25T15:01:32.010000"],["2024-07-25T15:01:33.010000"],["2024-07-25T15:01:34.010000"],["2024-07-25T15:01:35.010000"],["2024-07-25T15:01:36.010000"],["2024-07-25T15:01:37.010000"],["2024-07-25T15:01:38.010000"],["2024-07-25T15:01:39.010000"],["2024-07-25T15:01:40.010000"],["2024-07-25T15:01:41.010000"],["2024-07-25T15:01:42.010000"],["2024-07-25T15:01:43.010000"],["2024-07-25T15:01:44.010000"],["2024-07-25T15:01:45.010000"],["2024-07-25T15:01:46.010000"],["2024-07-25T15:01:47.010000"],["2024-07-25T15:01:48.010000"],["2024-07-25T15:01:49.010000"],["2024-07-25T15:01:50.010000"],["2024-07-25T15:01:51.010000"],["2024-07-25T15:01:52.010000"],["2024-07-25T15:01:53.010000"],["2024-07-25T15:01:54.010000"],["2024-07-25T15:01:55.010000"],["2024-07-25T15:01:56.010000"],["2024-07-25T15:01:57.010000"],["2024-07-25T15:01:58.010000"],["2024-07-25T15:01:59.010000"],["2024-07-25T15:02:00.010000"],["2024-07-25T15:02:01.010000"],["2024-07-25T15:02:02.010000"],["2024-07-25T15:02:03.010000"],["2024-07-25T15:02:04.010000"],["2024-07-25T15:02:05.010000"],["2024-07-25T15:02:06.010000"],["2024-07-25T15:02:07.010000"],["2024-07-25T15:02:08.010000"],["2024-07-25T15:02:09.010000"],["2024-07-25T15:02:10.010000"],["2024-07-25T15:02:11.010000"],["2024-07-25T15:02:12.010000"],["2024-07-25T15:02:13.010000"],["2024-07-25T15:02:14.010000"],["2024-07-25T15:02:15.010000"],["2024-07-25T15:02:16.010000"],["2024-07-25T15:02:17.010000"],["2024-07-25T15:02:18.010000"],["2024-07-25T15:02:19.010000"],["2024-07-25T15:02:20.010000"],["2024-07-25T15:02:21.010000"],["2024-07-25T15:02:22.010000"],["2024-07-25T15:02:23.010000"],["2024-07-25T15:02:24.010000"],["2024-07-25T15:02:25.010000"],["2024-07-25T15:02:26.010000"],["2024-07-25T15:02:27.010000"],["2024-07-25T15:02:28.010000"],["2024-07-25T15:02:29.010000"],["2024-07-25T15:02:30.010000"],["2024-07-25T15:02:31.010000"],["2024-07-25T15:02:32.010000"],["2024-07-25T15:02:33.010000"],["2024-07-25T15:02:34.010000"],["2024-07-25T15:02:35.010000"],["2024-07-25T15:02:36.010000"],["2024-07-25T15:02:37.010000"],["2024-07-25T15:02:38.010000"],["2024-07-25T15:02:39.010000"],["2024-07-25T15:02:40.010000"],["2024-07-25T15:02:41.010000"],["2024-07-25T15:02:42.010000"],["2024-07-25T15:02:43.010000"],["2024-07-25T15:02:44.010000"],["2024-07-25T15:02:45.010000"],["2024-07-25T15:02:46.010000"],["2024-07-25T15:02:47.010000"],["2024-07-25T15:02:48.010000"],["2024-07-25T15:02:49.010000"],["2024-07-25T15:02:50.010000"],["2024-07-25T15:02:51.010000"],["2024-07-25T15:02:52.010000"],["2024-07-25T15:02:53.010000"],["2024-07-25T15:02:54.010000"],["2024-07-25T15:02:55.010000"],["2024-07-25T15:02:56.010000"],["2024-07-25T15:02:57.010000"],["2024-07-25T15:02:58.010000"],["2024-07-25T15:02:59.010000"],["2024-07-25T15:03:00.010000"],["2024-07-25T15:03:01.010000"],["2024-07-25T15:03:02.010000"],["2024-07-25T15:03:03.010000"],["2024-07-25T15:03:04.010000"],["2024-07-25T15:03:05.010000"],["2024-07-25T15:03:06.010000"],["2024-07-25T15:03:07.010000"],["2024-07-25T15:03:08.010000"],["2024-07-25T15:03:09.010000"],["2024-07-25T15:03:10.010000"],["2024-07-25T15:03:11.010000"],["2024-07-25T15:03:12.010000"],["2024-07-25T15:03:13.010000"],["2024-07-25T15:03:14.010000"],["2024-07-25T15:03:15.010000"],["2024-07-25T15:03:16.010000"],["2024-07-25T15:03:17.010000"],["2024-07-25T15:03:18.010000"],["2024-07-25T15:03:19.010000"],["2024-07-25T15:03:20.010000"],["2024-07-25T15:03:21.010000"],["2024-07-25T15:03:22.010000"],["2024-07-25T15:03:23.010000"],["2024-07-25T15:03:24.010000"],["2024-07-25T15:03:25.010000"],["2024-07-25T15:03:26.010000"],["2024-07-25T15:03:27.010000"],["2024-07-25T15:03:28.010000"],["2024-07-25T15:03:29.010000"],["2024-07-25T15:03:30.010000"],["2024-07-25T15:03:31.010000"],["2024-07-25T15:03:32.010000"],["2024-07-25T15:03:33.010000"],["2024-07-25T15:03:34.010000"],["2024-07-25T15:03:35.010000"],["2024-07-25T15:03:36.010000"],["2024-07-25T15:03:37.010000"],["2024-07-25T15:03:38.010000"],["2024-07-25T15:03:39.010000"],["2024-07-25T15:03:40.010000"],["2024-07-25T15:03:41.010000"],["2024-07-25T15:03:42.010000"],["2024-07-25T15:03:43.010000"],["2024-07-25T15:03:44.010000"],["2024-07-25T15:03:45.010000"],["2024-07-25T15:03:46.010000"],["2024-07-25T15:03:47.010000"],["2024-07-25T15:03:48.010000"],["2024-07-25T15:03:49.010000"],["2024-07-25T15:03:50.010000"],["2024-07-25T15:03:51.010000"],["2024-07-25T15:03:52.010000"],["2024-07-25T15:03:53.010000"],["2024-07-25T15:03:54.010000"],["2024-07-25T15:03:55.010000"],["2024-07-25T15:03:56.010000"],["2024-07-25T15:03:57.010000"],["2024-07-25T15:03:58.010000"],["2024-07-25T15:03:59.010000"],["2024-07-25T15:04:00.010000"],["2024-07-25T15:04:01.010000"],["2024-07-25T15:04:02.010000"],["2024-07-25T15:04:03.010000"],["2024-07-25T15:04:04.010000"],["2024-07-25T15:04:05.010000"],["2024-07-25T15:04:06.010000"],["2024-07-25T15:04:07.010000"],["2024-07-25T15:04:08.010000"],["2024-07-25T15:04:09.010000"],["2024-07-25T15:04:10.010000"],["2024-07-25T15:04:11.010000"],["2024-07-25T15:04:12.010000"],["2024-07-25T15:04:13.010000"],["2024-07-25T15:04:14.010000"],["2024-07-25T15:04:15.010000"],["2024-07-25T15:04:16.010000"],["2024-07-25T15:04:17.010000"],["2024-07-25T15:04:18.010000"],["2024-07-25T15:04:19.010000"],["2024-07-25T15:04:20.010000"],["2024-07-25T15:04:21.010000"],["2024-07-25T15:04:22.010000"],["2024-07-25T15:04:23.010000"],["2024-07-25T15:04:24.010000"],["2024-07-25T15:04:25.010000"],["2024-07-25T15:04:26.010000"],["2024-07-25T15:04:27.010000"],["2024-07-25T15:04:28.010000"],["2024-07-25T15:04:29.010000"],["2024-07-25T15:04:30.010000"],["2024-07-25T15:04:31.010000"],["2024-07-25T15:04:32.010000"],["2024-07-25T15:04:33.010000"],["2024-07-25T15:04:34.010000"],["2024-07-25T15:04:35.010000"],["2024-07-25T15:04:36.010000"],["2024-07-25T15:04:37.010000"],["2024-07-25T15:04:38.010000"],["2024-07-25T15:04:39.010000"],["2024-07-25T15:04:40.010000"],["2024-07-25T15:04:41.010000"],["2024-07-25T15:04:42.010000"],["2024-07-25T15:04:43.010000"],["2024-07-25T15:04:44.010000"],["2024-07-25T15:04:45.010000"],["2024-07-25T15:04:46.010000"],["2024-07-25T15:04:47.010000"],["2024-07-25T15:04:48.010000"],["2024-07-25T15:04:49.010000"],["2024-07-25T15:04:50.010000"],["2024-07-25T15:04:51.010000"],["2024-07-25T15:04:52.010000"],["2024-07-25T15:04:53.010000"],["2024-07-25T15:04:54.010000"],["2024-07-25T15:04:55.010000"],["2024-07-25T15:04:56.010000"],["2024-07-25T15:04:57.010000"],["2024-07-25T15:04:58.010000"],["2024-07-25T15:04:59.010000"],["2024-07-25T15:05:00.010000"],["2024-07-25T15:05:01.010000"],["2024-07-25T15:05:02.010000"],["2024-07-25T15:05:03.010000"],["2024-07-25T15:05:04.010000"],["2024-07-25T15:05:05.010000"],["2024-07-25T15:05:06.010000"],["2024-07-25T15:05:07.010000"],["2024-07-25T15:05:08.010000"],["2024-07-25T15:05:09.010000"],["2024-07-25T15:05:10.010000"],["2024-07-25T15:05:11.010000"],["2024-07-25T15:05:12.010000"],["2024-07-25T15:05:13.010000"],["2024-07-25T15:05:14.010000"],["2024-07-25T15:05:15.010000"],["2024-07-25T15:05:16.010000"],["2024-07-25T15:05:17.010000"],["2024-07-25T15:05:18.010000"],["2024-07-25T15:05:19.010000"],["2024-07-25T15:05:20.010000"],["2024-07-25T15:05:21.010000"],["2024-07-25T15:05:22.010000"],["2024-07-25T15:05:23.010000"],["2024-07-25T15:05:24.010000"],["2024-07-25T15:05:25.010000"],["2024-07-25T15:05:26.010000"],["2024-07-25T15:05:27.010000"],["2024-07-25T15:05:28.010000"],["2024-07-25T15:05:29.010000"],["2024-07-25T15:05:30.010000"],["2024-07-25T15:05:31.010000"],["2024-07-25T15:05:32.010000"],["2024-07-25T15:05:33.010000"],["2024-07-25T15:05:34.010000"],["2024-07-25T15:05:35.010000"],["2024-07-25T15:05:36.010000"],["2024-07-25T15:05:37.010000"],["2024-07-25T15:05:38.010000"],["2024-07-25T15:05:39.010000"],["2024-07-25T15:05:40.010000"],["2024-07-25T15:05:41.010000"],["2024-07-25T15:05:42.010000"],["2024-07-25T15:05:43.010000"],["2024-07-25T15:05:44.010000"],["2024-07-25T15:05:45.010000"],["2024-07-25T15:05:46.010000"],["2024-07-25T15:05:47.010000"],["2024-07-25T15:05:48.010000"],["2024-07-25T15:05:49.010000"],["2024-07-25T15:05:50.010000"],["2024-07-25T15:05:51.010000"],["2024-07-25T15:05:52.010000"],["2024-07-25T15:05:53.010000"],["2024-07-25T15:05:54.010000"],["2024-07-25T15:05:55.010000"],["2024-07-25T15:05:56.010000"],["2024-07-25T15:05:57.010000"],["2024-07-25T15:05:58.010000"],["2024-07-25T15:05:59.010000"],["2024-07-25T15:06:00.010000"],["2024-07-25T15:06:01.010000"],["2024-07-25T15:06:02.010000"],["2024-07-25T15:06:03.010000"],["2024-07-25T15:06:04.010000"],["2024-07-25T15:06:05.010000"],["2024-07-25T15:06:06.010000"],["2024-07-25T15:06:07.010000"],["2024-07-25T15:06:08.010000"],["2024-07-25T15:06:09.010000"],["2024-07-25T15:06:10.010000"],["2024-07-25T15:06:11.010000"],["2024-07-25T15:06:12.010000"],["2024-07-25T15:06:13.010000"],["2024-07-25T15:06:14.010000"],["2024-07-25T15:06:15.010000"],["2024-07-25T15:06:16.010000"],["2024-07-25T15:06:17.010000"],["2024-07-25T15:06:18.010000"],["2024-07-25T15:06:19.010000"],["2024-07-25T15:06:20.010000"],["2024-07-25T15:06:21.010000"],["2024-07-25T15:06:22.010000"],["2024-07-25T15:06:23.010000"],["2024-07-25T15:06:24.010000"],["2024-07-25T15:06:25.010000"],["2024-07-25T15:06:26.010000"],["2024-07-25T15:06:27.010000"],["2024-07-25T15:06:28.010000"],["2024-07-25T15:06:29.010000"],["2024-07-25T15:06:30.010000"],["2024-07-25T15:06:31.010000"],["2024-07-25T15:06:32.010000"],["2024-07-25T15:06:33.010000"],["2024-07-25T15:06:34.010000"],["2024-07-25T15:06:35.010000"],["2024-07-25T15:06:36.010000"],["2024-07-25T15:06:37.010000"],["2024-07-25T15:06:38.010000"],["2024-07-25T15:06:39.010000"],["2024-07-25T15:06:40.010000"],["2024-07-25T15:06:41.010000"],["2024-07-25T15:06:42.010000"],["2024-07-25T15:06:43.010000"],["2024-07-25T15:06:44.010000"],["2024-07-25T15:06:45.010000"],["2024-07-25T15:06:46.010000"],["2024-07-25T15:06:47.010000"],["2024-07-25T15:06:48.010000"],["2024-07-25T15:06:49.010000"],["2024-07-25T15:06:50.010000"],["2024-07-25T15:06:51.010000"],["2024-07-25T15:06:52.010000"],["2024-07-25T15:06:53.010000"],["2024-07-25T15:06:54.010000"],["2024-07-25T15:06:55.010000"],["2024-07-25T15:06:56.010000"],["2024-07-25T15:06:57.010000"],["2024-07-25T15:06:58.010000"],["2024-07-25T15:06:59.010000"],["2024-07-25T15:07:00.010000"],["2024-07-25T15:07:01.010000"],["2024-07-25T15:07:02.010000"],["2024-07-25T15:07:03.010000"],["2024-07-25T15:07:04.010000"],["2024-07-25T15:07:05.010000"],["2024-07-25T15:07:06.010000"],["2024-07-25T15:07:07.010000"],["2024-07-25T15:07:08.010000"],["2024-07-25T15:07:09.010000"],["2024-07-25T15:07:10.010000"],["2024-07-25T15:07:11.010000"],["2024-07-25T15:07:12.010000"],["2024-07-25T15:07:13.010000"],["2024-07-25T15:07:14.010000"],["2024-07-25T15:07:15.010000"],["2024-07-25T15:07:16.010000"],["2024-07-25T15:07:17.010000"],["2024-07-25T15:07:18.010000"],["2024-07-25T15:07:19.010000"],["2024-07-25T15:07:20.010000"],["2024-07-25T15:07:21.010000"],["2024-07-25T15:07:22.010000"],["2024-07-25T15:07:23.010000"],["2024-07-25T15:07:24.010000"],["2024-07-25T15:07:25.010000"],["2024-07-25T15:07:26.010000"],["2024-07-25T15:07:27.010000"],["2024-07-25T15:07:28.010000"],["2024-07-25T15:07:29.010000"],["2024-07-25T15:07:30.010000"],["2024-07-25T15:07:31.010000"],["2024-07-25T15:07:32.010000"],["2024-07-25T15:07:33.010000"],["2024-07-25T15:07:34.010000"],["2024-07-25T15:07:35.010000"],["2024-07-25T15:07:36.010000"],["2024-07-25T15:07:37.010000"],["2024-07-25T15:07:38.010000"],["2024-07-25T15:07:39.010000"],["2024-07-25T15:07:40.010000"],["2024-07-25T15:07:41.010000"],["2024-07-25T15:07:42.010000"],["2024-07-25T15:07:43.010000"],["2024-07-25T15:07:44.010000"],["2024-07-25T15:07:45.010000"],["2024-07-25T15:07:46.010000"],["2024-07-25T15:07:47.010000"],["2024-07-25T15:07:48.010000"],["2024-07-25T15:07:49.010000"],["2024-07-25T15:07:50.010000"],["2024-07-25T15:07:51.010000"],["2024-07-25T15:07:52.010000"],["2024-07-25T15:07:53.010000"],["2024-07-25T15:07:54.010000"],["2024-07-25T15:07:55.010000"],["2024-07-25T15:07:56.010000"],["2024-07-25T15:07:57.010000"],["2024-07-25T15:07:58.010000"],["2024-07-25T15:07:59.010000"],["2024-07-25T15:08:00.010000"],["2024-07-25T15:08:01.010000"],["2024-07-25T15:08:02.010000"],["2024-07-25T15:08:03.010000"],["2024-07-25T15:08:04.010000"],["2024-07-25T15:08:05.010000"],["2024-07-25T15:08:06.010000"],["2024-07-25T15:08:07.010000"],["2024-07-25T15:08:08.010000"],["2024-07-25T15:08:09.010000"],["2024-07-25T15:08:10.010000"],["2024-07-25T15:08:11.010000"],["2024-07-25T15:08:12.010000"],["2024-07-25T15:08:13.010000"],["2024-07-25T15:08:14.010000"],["2024-07-25T15:08:15.010000"],["2024-07-25T15:08:16.010000"],["2024-07-25T15:08:17.010000"],["2024-07-25T15:08:18.010000"],["2024-07-25T15:08:19.010000"],["2024-07-25T15:08:20.010000"],["2024-07-25T15:08:21.010000"],["2024-07-25T15:08:22.010000"],["2024-07-25T15:08:23.010000"],["2024-07-25T15:08:24.010000"],["2024-07-25T15:08:25.010000"],["2024-07-25T15:08:26.010000"],["2024-07-25T15:08:27.010000"],["2024-07-25T15:08:28.010000"],["2024-07-25T15:08:29.010000"],["2024-07-25T15:08:30.010000"],["2024-07-25T15:08:31.010000"],["2024-07-25T15:08:32.010000"],["2024-07-25T15:08:33.010000"],["2024-07-25T15:08:34.010000"],["2024-07-25T15:08:35.010000"],["2024-07-25T15:08:36.010000"],["2024-07-25T15:08:37.010000"],["2024-07-25T15:08:38.010000"],["2024-07-25T15:08:39.010000"],["2024-07-25T15:08:40.010000"],["2024-07-25T15:08:41.010000"],["2024-07-25T15:08:42.010000"],["2024-07-25T15:08:43.010000"],["2024-07-25T15:08:44.010000"],["2024-07-25T15:08:45.010000"],["2024-07-25T15:08:46.010000"],["2024-07-25T15:08:47.010000"],["2024-07-25T15:08:48.010000"],["2024-07-25T15:08:49.010000"],["2024-07-25T15:08:50.010000"],["2024-07-25T15:08:51.010000"],["2024-07-25T15:08:52.010000"],["2024-07-25T15:08:53.010000"],["2024-07-25T15:08:54.010000"],["2024-07-25T15:08:55.010000"],["2024-07-25T15:08:56.010000"],["2024-07-25T15:08:57.010000"],["2024-07-25T15:08:58.010000"],["2024-07-25T15:08:59.010000"],["2024-07-25T15:09:00.010000"],["2024-07-25T15:09:01.010000"],["2024-07-25T15:09:02.010000"],["2024-07-25T15:09:03.010000"],["2024-07-25T15:09:04.010000"],["2024-07-25T15:09:05.010000"],["2024-07-25T15:09:06.010000"],["2024-07-25T15:09:07.010000"],["2024-07-25T15:09:08.010000"],["2024-07-25T15:09:09.010000"],["2024-07-25T15:09:10.010000"],["2024-07-25T15:09:11.010000"],["2024-07-25T15:09:12.010000"],["2024-07-25T15:09:13.010000"],["2024-07-25T15:09:14.010000"],["2024-07-25T15:09:15.010000"],["2024-07-25T15:09:16.010000"],["2024-07-25T15:09:17.010000"],["2024-07-25T15:09:18.010000"],["2024-07-25T15:09:19.010000"],["2024-07-25T15:09:20.010000"],["2024-07-25T15:09:21.010000"],["2024-07-25T15:09:22.010000"],["2024-07-25T15:09:23.010000"],["2024-07-25T15:09:24.010000"],["2024-07-25T15:09:25.010000"],["2024-07-25T15:09:26.010000"],["2024-07-25T15:09:27.010000"],["2024-07-25T15:09:28.010000"],["2024-07-25T15:09:29.010000"],["2024-07-25T15:09:30.010000"],["2024-07-25T15:09:31.010000"],["2024-07-25T15:09:32.010000"],["2024-07-25T15:09:33.010000"],["2024-07-25T15:09:34.010000"],["2024-07-25T15:09:35.010000"],["2024-07-25T15:09:36.010000"],["2024-07-25T15:09:37.010000"],["2024-07-25T15:09:38.010000"],["2024-07-25T15:09:39.010000"],["2024-07-25T15:09:40.010000"],["2024-07-25T15:09:41.010000"],["2024-07-25T15:09:42.010000"],["2024-07-25T15:09:43.010000"],["2024-07-25T15:09:44.010000"],["2024-07-25T15:09:45.010000"],["2024-07-25T15:09:46.010000"],["2024-07-25T15:09:47.010000"],["2024-07-25T15:09:48.010000"],["2024-07-25T15:09:49.010000"],["2024-07-25T15:09:50.010000"],["2024-07-25T15:09:51.010000"],["2024-07-25T15:09:52.010000"],["2024-07-25T15:09:53.010000"],["2024-07-25T15:09:54.010000"],["2024-07-25T15:09:55.010000"],["2024-07-25T15:09:56.010000"],["2024-07-25T15:09:57.010000"],["2024-07-25T15:09:58.010000"],["2024-07-25T15:09:59.010000"],["2024-07-25T15:10:00.010000"],["2024-07-25T15:10:01.010000"],["2024-07-25T15:10:02.010000"],["2024-07-25T15:10:03.010000"],["2024-07-25T15:10:04.010000"],["2024-07-25T15:10:05.010000"],["2024-07-25T15:10:06.010000"],["2024-07-25T15:10:07.010000"],["2024-07-25T15:10:08.010000"],["2024-07-25T15:10:09.010000"],["2024-07-25T15:10:10.010000"],["2024-07-25T15:10:11.010000"],["2024-07-25T15:10:12.010000"],["2024-07-25T15:10:13.010000"],["2024-07-25T15:10:14.010000"],["2024-07-25T15:10:15.010000"],["2024-07-25T15:10:16.010000"],["2024-07-25T15:10:17.010000"],["2024-07-25T15:10:18.010000"],["2024-07-25T15:10:19.010000"],["2024-07-25T15:10:20.010000"],["2024-07-25T15:10:21.010000"],["2024-07-25T15:10:22.010000"],["2024-07-25T15:10:23.010000"],["2024-07-25T15:10:24.010000"],["2024-07-25T15:10:25.010000"],["2024-07-25T15:10:26.010000"],["2024-07-25T15:10:27.010000"],["2024-07-25T15:10:28.010000"],["2024-07-25T15:10:29.010000"],["2024-07-25T15:10:30.010000"],["2024-07-25T15:10:31.010000"],["2024-07-25T15:10:32.010000"],["2024-07-25T15:10:33.010000"],["2024-07-25T15:10:34.010000"],["2024-07-25T15:10:35.010000"],["2024-07-25T15:10:36.010000"],["2024-07-25T15:10:37.010000"],["2024-07-25T15:10:38.010000"],["2024-07-25T15:10:39.010000"],["2024-07-25T15:10:40.010000"],["2024-07-25T15:10:41.010000"],["2024-07-25T15:10:42.010000"],["2024-07-25T15:10:43.010000"],["2024-07-25T15:10:44.010000"],["2024-07-25T15:10:45.010000"],["2024-07-25T15:10:46.010000"],["2024-07-25T15:10:47.010000"],["2024-07-25T15:10:48.010000"],["2024-07-25T15:10:49.010000"],["2024-07-25T15:10:50.010000"],["2024-07-25T15:10:51.010000"],["2024-07-25T15:10:52.010000"],["2024-07-25T15:10:53.010000"],["2024-07-25T15:10:54.010000"],["2024-07-25T15:10:55.010000"],["2024-07-25T15:10:56.010000"],["2024-07-25T15:10:57.010000"],["2024-07-25T15:10:58.010000"],["2024-07-25T15:10:59.010000"],["2024-07-25T15:11:00.010000"],["2024-07-25T15:11:01.010000"],["2024-07-25T15:11:02.010000"],["2024-07-25T15:11:03.010000"],["2024-07-25T15:11:04.010000"],["2024-07-25T15:11:05.010000"],["2024-07-25T15:11:06.010000"],["2024-07-25T15:11:07.010000"],["2024-07-25T15:11:08.010000"],["2024-07-25T15:11:09.010000"],["2024-07-25T15:11:10.010000"],["2024-07-25T15:11:11.010000"],["2024-07-25T15:11:12.010000"],["2024-07-25T15:11:13.010000"],["2024-07-25T15:11:14.010000"],["2024-07-25T15:11:15.010000"],["2024-07-25T15:11:16.010000"],["2024-07-25T15:11:17.010000"],["2024-07-25T15:11:18.010000"],["2024-07-25T15:11:19.010000"],["2024-07-25T15:11:20.010000"],["2024-07-25T15:11:21.010000"],["2024-07-25T15:11:22.010000"],["2024-07-25T15:11:23.010000"],["2024-07-25T15:11:24.010000"],["2024-07-25T15:11:25.010000"],["2024-07-25T15:11:26.010000"],["2024-07-25T15:11:27.010000"],["2024-07-25T15:11:28.010000"],["2024-07-25T15:11:29.010000"],["2024-07-25T15:11:30.010000"],["2024-07-25T15:11:31.010000"],["2024-07-25T15:11:32.010000"],["2024-07-25T15:11:33.010000"],["2024-07-25T15:11:34.010000"],["2024-07-25T15:11:35.010000"],["2024-07-25T15:11:36.010000"],["2024-07-25T15:11:37.010000"],["2024-07-25T15:11:38.010000"],["2024-07-25T15:11:39.010000"],["2024-07-25T15:11:40.010000"],["2024-07-25T15:11:41.010000"],["2024-07-25T15:11:42.010000"],["2024-07-25T15:11:43.010000"],["2024-07-25T15:11:44.010000"],["2024-07-25T15:11:45.010000"],["2024-07-25T15:11:46.010000"],["2024-07-25T15:11:47.010000"],["2024-07-25T15:11:48.010000"],["2024-07-25T15:11:49.010000"],["2024-07-25T15:11:50.010000"],["2024-07-25T15:11:51.010000"],["2024-07-25T15:11:52.010000"],["2024-07-25T15:11:53.010000"],["2024-07-25T15:11:54.010000"],["2024-07-25T15:11:55.010000"],["2024-07-25T15:11:56.010000"],["2024-07-25T15:11:57.010000"],["2024-07-25T15:11:58.010000"],["2024-07-25T15:11:59.010000"],["2024-07-25T15:12:00.010000"],["2024-07-25T15:12:01.010000"],["2024-07-25T15:12:02.010000"],["2024-07-25T15:12:03.010000"],["2024-07-25T15:12:04.010000"],["2024-07-25T15:12:05.010000"],["2024-07-25T15:12:06.010000"],["2024-07-25T15:12:07.010000"],["2024-07-25T15:12:08.010000"],["2024-07-25T15:12:09.010000"],["2024-07-25T15:12:10.010000"],["2024-07-25T15:12:11.010000"],["2024-07-25T15:12:12.010000"],["2024-07-25T15:12:13.010000"],["2024-07-25T15:12:14.010000"],["2024-07-25T15:12:15.010000"],["2024-07-25T15:12:16.010000"],["2024-07-25T15:12:17.010000"],["2024-07-25T15:12:18.010000"],["2024-07-25T15:12:19.010000"],["2024-07-25T15:12:20.010000"],["2024-07-25T15:12:21.010000"],["2024-07-25T15:12:22.010000"],["2024-07-25T15:12:23.010000"],["2024-07-25T15:12:24.010000"],["2024-07-25T15:12:25.010000"],["2024-07-25T15:12:26.010000"],["2024-07-25T15:12:27.010000"],["2024-07-25T15:12:28.010000"],["2024-07-25T15:12:29.010000"],["2024-07-25T15:12:30.010000"],["2024-07-25T15:12:31.010000"],["2024-07-25T15:12:32.010000"],["2024-07-25T15:12:33.010000"],["2024-07-25T15:12:34.010000"],["2024-07-25T15:12:35.010000"],["2024-07-25T15:12:36.010000"],["2024-07-25T15:12:37.010000"],["2024-07-25T15:12:38.010000"],["2024-07-25T15:12:39.010000"],["2024-07-25T15:12:40.010000"],["2024-07-25T15:12:41.010000"],["2024-07-25T15:12:42.010000"],["2024-07-25T15:12:43.010000"],["2024-07-25T15:12:44.010000"],["2024-07-25T15:12:45.010000"],["2024-07-25T15:12:46.010000"],["2024-07-25T15:12:47.010000"],["2024-07-25T15:12:48.010000"],["2024-07-25T15:12:49.010000"],["2024-07-25T15:12:50.010000"],["2024-07-25T15:12:51.010000"],["2024-07-25T15:12:52.010000"],["2024-07-25T15:12:53.010000"],["2024-07-25T15:12:54.010000"],["2024-07-25T15:12:55.010000"],["2024-07-25T15:12:56.010000"],["2024-07-25T15:12:57.010000"],["2024-07-25T15:12:58.010000"],["2024-07-25T15:12:59.010000"],["2024-07-25T15:13:00.010000"],["2024-07-25T15:13:01.010000"],["2024-07-25T15:13:02.010000"],["2024-07-25T15:13:03.010000"],["2024-07-25T15:13:04.010000"],["2024-07-25T15:13:05.010000"],["2024-07-25T15:13:06.010000"],["2024-07-25T15:13:07.010000"],["2024-07-25T15:13:08.010000"],["2024-07-25T15:13:09.010000"],["2024-07-25T15:13:10.010000"],["2024-07-25T15:13:11.010000"],["2024-07-25T15:13:12.010000"],["2024-07-25T15:13:13.010000"],["2024-07-25T15:13:14.010000"],["2024-07-25T15:13:15.010000"],["2024-07-25T15:13:16.010000"],["2024-07-25T15:13:17.010000"],["2024-07-25T15:13:18.010000"],["2024-07-25T15:13:19.010000"],["2024-07-25T15:13:20.010000"],["2024-07-25T15:13:21.010000"],["2024-07-25T15:13:22.010000"],["2024-07-25T15:13:23.010000"],["2024-07-25T15:13:24.010000"],["2024-07-25T15:13:25.010000"],["2024-07-25T15:13:26.010000"],["2024-07-25T15:13:27.010000"],["2024-07-25T15:13:28.010000"],["2024-07-25T15:13:29.010000"],["2024-07-25T15:13:30.010000"],["2024-07-25T15:13:31.010000"],["2024-07-25T15:13:32.010000"],["2024-07-25T15:13:33.010000"],["2024-07-25T15:13:34.010000"],["2024-07-25T15:13:35.010000"],["2024-07-25T15:13:36.010000"],["2024-07-25T15:13:37.010000"],["2024-07-25T15:13:38.010000"],["2024-07-25T15:13:39.010000"],["2024-07-25T15:13:40.010000"],["2024-07-25T15:13:41.010000"],["2024-07-25T15:13:42.010000"],["2024-07-25T15:13:43.010000"],["2024-07-25T15:13:44.010000"],["2024-07-25T15:13:45.010000"],["2024-07-25T15:13:46.010000"],["2024-07-25T15:13:47.010000"],["2024-07-25T15:13:48.010000"],["2024-07-25T15:13:49.010000"],["2024-07-25T15:13:50.010000"],["2024-07-25T15:13:51.010000"],["2024-07-25T15:13:52.010000"],["2024-07-25T15:13:53.010000"],["2024-07-25T15:13:54.010000"],["2024-07-25T15:13:55.010000"],["2024-07-25T15:13:56.010000"],["2024-07-25T15:13:57.010000"],["2024-07-25T15:13:58.010000"],["2024-07-25T15:13:59.010000"],["2024-07-25T15:14:00.010000"],["2024-07-25T15:14:01.010000"],["2024-07-25T15:14:02.010000"],["2024-07-25T15:14:03.010000"],["2024-07-25T15:14:04.010000"],["2024-07-25T15:14:05.010000"],["2024-07-25T15:14:06.010000"],["2024-07-25T15:14:07.010000"],["2024-07-25T15:14:08.010000"],["2024-07-25T15:14:09.010000"],["2024-07-25T15:14:10.010000"],["2024-07-25T15:14:11.010000"],["2024-07-25T15:14:12.010000"],["2024-07-25T15:14:13.010000"],["2024-07-25T15:14:14.010000"],["2024-07-25T15:14:15.010000"],["2024-07-25T15:14:16.010000"],["2024-07-25T15:14:17.010000"],["2024-07-25T15:14:18.010000"],["2024-07-25T15:14:19.010000"],["2024-07-25T15:14:20.010000"],["2024-07-25T15:14:21.010000"],["2024-07-25T15:14:22.010000"],["2024-07-25T15:14:23.010000"],["2024-07-25T15:14:24.010000"],["2024-07-25T15:14:25.010000"],["2024-07-25T15:14:26.010000"],["2024-07-25T15:14:27.010000"],["2024-07-25T15:14:28.010000"],["2024-07-25T15:14:29.010000"],["2024-07-25T15:14:30.010000"],["2024-07-25T15:14:31.010000"],["2024-07-25T15:14:32.010000"],["2024-07-25T15:14:33.010000"],["2024-07-25T15:14:34.010000"],["2024-07-25T15:14:35.010000"],["2024-07-25T15:14:36.010000"],["2024-07-25T15:14:37.010000"],["2024-07-25T15:14:38.010000"],["2024-07-25T15:14:39.010000"],["2024-07-25T15:14:40.010000"],["2024-07-25T15:14:41.010000"],["2024-07-25T15:14:42.010000"],["2024-07-25T15:14:43.010000"],["2024-07-25T15:14:44.010000"],["2024-07-25T15:14:45.010000"],["2024-07-25T15:14:46.010000"],["2024-07-25T15:14:47.010000"],["2024-07-25T15:14:48.010000"],["2024-07-25T15:14:49.010000"],["2024-07-25T15:14:50.010000"],["2024-07-25T15:14:51.010000"],["2024-07-25T15:14:52.010000"],["2024-07-25T15:14:53.010000"],["2024-07-25T15:14:54.010000"],["2024-07-25T15:14:55.010000"],["2024-07-25T15:14:56.010000"],["2024-07-25T15:14:57.010000"],["2024-07-25T15:14:58.010000"],["2024-07-25T15:14:59.010000"],["2024-07-25T15:15:00.010000"],["2024-07-25T15:15:01.010000"],["2024-07-25T15:15:02.010000"],["2024-07-25T15:15:03.010000"],["2024-07-25T15:15:04.010000"],["2024-07-25T15:15:05.010000"],["2024-07-25T15:15:06.010000"],["2024-07-25T15:15:07.010000"],["2024-07-25T15:15:08.010000"],["2024-07-25T15:15:09.010000"],["2024-07-25T15:15:10.010000"],["2024-07-25T15:15:11.010000"],["2024-07-25T15:15:12.010000"],["2024-07-25T15:15:13.010000"],["2024-07-25T15:15:14.010000"],["2024-07-25T15:15:15.010000"],["2024-07-25T15:15:16.010000"],["2024-07-25T15:15:17.010000"],["2024-07-25T15:15:18.010000"],["2024-07-25T15:15:19.010000"],["2024-07-25T15:15:20.010000"],["2024-07-25T15:15:21.010000"],["2024-07-25T15:15:22.010000"],["2024-07-25T15:15:23.010000"],["2024-07-25T15:15:24.010000"],["2024-07-25T15:15:25.010000"],["2024-07-25T15:15:26.010000"],["2024-07-25T15:15:27.010000"],["2024-07-25T15:15:28.010000"],["2024-07-25T15:15:29.010000"],["2024-07-25T15:15:30.010000"],["2024-07-25T15:15:31.010000"],["2024-07-25T15:15:32.010000"],["2024-07-25T15:15:33.010000"],["2024-07-25T15:15:34.010000"],["2024-07-25T15:15:35.010000"],["2024-07-25T15:15:36.010000"],["2024-07-25T15:15:37.010000"],["2024-07-25T15:15:38.010000"],["2024-07-25T15:15:39.010000"],["2024-07-25T15:15:40.010000"],["2024-07-25T15:15:41.010000"],["2024-07-25T15:15:42.010000"],["2024-07-25T15:15:43.010000"],["2024-07-25T15:15:44.010000"],["2024-07-25T15:15:45.010000"],["2024-07-25T15:15:46.010000"],["2024-07-25T15:15:47.010000"],["2024-07-25T15:15:48.010000"],["2024-07-25T15:15:49.010000"],["2024-07-25T15:15:50.010000"],["2024-07-25T15:15:51.010000"],["2024-07-25T15:15:52.010000"],["2024-07-25T15:15:53.010000"],["2024-07-25T15:15:54.010000"],["2024-07-25T15:15:55.010000"],["2024-07-25T15:15:56.010000"],["2024-07-25T15:15:57.010000"],["2024-07-25T15:15:58.010000"],["2024-07-25T15:15:59.010000"],["2024-07-25T15:16:00.010000"],["2024-07-25T15:16:01.010000"],["2024-07-25T15:16:02.010000"],["2024-07-25T15:16:03.010000"],["2024-07-25T15:16:04.010000"],["2024-07-25T15:16:05.010000"],["2024-07-25T15:16:06.010000"],["2024-07-25T15:16:07.010000"],["2024-07-25T15:16:08.010000"],["2024-07-25T15:16:09.010000"],["2024-07-25T15:16:10.010000"],["2024-07-25T15:16:11.010000"],["2024-07-25T15:16:12.010000"],["2024-07-25T15:16:13.010000"],["2024-07-25T15:16:14.010000"],["2024-07-25T15:16:15.010000"],["2024-07-25T15:16:16.010000"],["2024-07-25T15:16:17.010000"],["2024-07-25T15:16:18.010000"],["2024-07-25T15:16:19.010000"],["2024-07-25T15:16:20.010000"],["2024-07-25T15:16:21.010000"],["2024-07-25T15:16:22.010000"],["2024-07-25T15:16:23.010000"],["2024-07-25T15:16:24.010000"],["2024-07-25T15:16:25.010000"],["2024-07-25T15:16:26.010000"],["2024-07-25T15:16:27.010000"],["2024-07-25T15:16:28.010000"],["2024-07-25T15:16:29.010000"],["2024-07-25T15:16:30.010000"],["2024-07-25T15:16:31.010000"],["2024-07-25T15:16:32.010000"],["2024-07-25T15:16:33.010000"],["2024-07-25T15:16:34.010000"],["2024-07-25T15:16:35.010000"],["2024-07-25T15:16:36.010000"],["2024-07-25T15:16:37.010000"],["2024-07-25T15:16:38.010000"],["2024-07-25T15:16:39.010000"],["2024-07-25T15:16:40.010000"],["2024-07-25T15:16:41.010000"],["2024-07-25T15:16:42.010000"],["2024-07-25T15:16:43.010000"],["2024-07-25T15:16:44.010000"],["2024-07-25T15:16:45.010000"],["2024-07-25T15:16:46.010000"],["2024-07-25T15:16:47.010000"],["2024-07-25T15:16:48.010000"],["2024-07-25T15:16:49.010000"],["2024-07-25T15:16:50.010000"],["2024-07-25T15:16:51.010000"],["2024-07-25T15:16:52.010000"],["2024-07-25T15:16:53.010000"],["2024-07-25T15:16:54.010000"],["2024-07-25T15:16:55.010000"],["2024-07-25T15:16:56.010000"],["2024-07-25T15:16:57.010000"],["2024-07-25T15:16:58.010000"],["2024-07-25T15:16:59.010000"],["2024-07-25T15:17:00.010000"],["2024-07-25T15:17:01.010000"],["2024-07-25T15:17:02.010000"],["2024-07-25T15:17:03.010000"],["2024-07-25T15:17:04.010000"],["2024-07-25T15:17:05.010000"],["2024-07-25T15:17:06.010000"],["2024-07-25T15:17:07.010000"],["2024-07-25T15:17:08.010000"],["2024-07-25T15:17:09.010000"],["2024-07-25T15:17:10.010000"],["2024-07-25T15:17:11.010000"],["2024-07-25T15:17:12.010000"],["2024-07-25T15:17:13.010000"],["2024-07-25T15:17:14.010000"],["2024-07-25T15:17:15.010000"],["2024-07-25T15:17:16.010000"],["2024-07-25T15:17:17.010000"],["2024-07-25T15:17:18.010000"],["2024-07-25T15:17:19.010000"],["2024-07-25T15:17:20.010000"],["2024-07-25T15:17:21.010000"],["2024-07-25T15:17:22.010000"],["2024-07-25T15:17:23.010000"],["2024-07-25T15:17:24.010000"],["2024-07-25T15:17:25.010000"],["2024-07-25T15:17:26.010000"],["2024-07-25T15:17:27.010000"],["2024-07-25T15:17:28.010000"],["2024-07-25T15:17:29.010000"],["2024-07-25T15:17:30.010000"],["2024-07-25T15:17:31.010000"],["2024-07-25T15:17:32.010000"],["2024-07-25T15:17:33.010000"],["2024-07-25T15:17:34.010000"],["2024-07-25T15:17:35.010000"],["2024-07-25T15:17:36.010000"],["2024-07-25T15:17:37.010000"],["2024-07-25T15:17:38.010000"],["2024-07-25T15:17:39.010000"],["2024-07-25T15:17:40.010000"],["2024-07-25T15:17:41.010000"],["2024-07-25T15:17:42.010000"],["2024-07-25T15:17:43.010000"],["2024-07-25T15:17:44.010000"],["2024-07-25T15:17:45.010000"],["2024-07-25T15:17:46.010000"],["2024-07-25T15:17:47.010000"],["2024-07-25T15:17:48.010000"],["2024-07-25T15:17:49.010000"],["2024-07-25T15:17:50.010000"],["2024-07-25T15:17:51.010000"],["2024-07-25T15:17:52.010000"],["2024-07-25T15:17:53.010000"],["2024-07-25T15:17:54.010000"],["2024-07-25T15:17:55.010000"],["2024-07-25T15:17:56.010000"],["2024-07-25T15:17:57.010000"],["2024-07-25T15:17:58.010000"],["2024-07-25T15:17:59.010000"],["2024-07-25T15:18:00.010000"],["2024-07-25T15:18:01.010000"],["2024-07-25T15:18:02.010000"],["2024-07-25T15:18:03.010000"],["2024-07-25T15:18:04.010000"],["2024-07-25T15:18:05.010000"],["2024-07-25T15:18:06.010000"],["2024-07-25T15:18:07.010000"],["2024-07-25T15:18:08.010000"],["2024-07-25T15:18:09.010000"],["2024-07-25T15:18:10.010000"],["2024-07-25T15:18:11.010000"],["2024-07-25T15:18:12.010000"],["2024-07-25T15:18:13.010000"],["2024-07-25T15:18:14.010000"],["2024-07-25T15:18:15.010000"],["2024-07-25T15:18:16.010000"],["2024-07-25T15:18:17.010000"],["2024-07-25T15:18:18.010000"],["2024-07-25T15:18:19.010000"],["2024-07-25T15:18:20.010000"],["2024-07-25T15:18:21.010000"],["2024-07-25T15:18:22.010000"],["2024-07-25T15:18:23.010000"],["2024-07-25T15:18:24.010000"],["2024-07-25T15:18:25.010000"],["2024-07-25T15:18:26.010000"],["2024-07-25T15:18:27.010000"],["2024-07-25T15:18:28.010000"],["2024-07-25T15:18:29.010000"],["2024-07-25T15:18:30.010000"],["2024-07-25T15:18:31.010000"],["2024-07-25T15:18:32.010000"],["2024-07-25T15:18:33.010000"],["2024-07-25T15:18:34.010000"],["2024-07-25T15:18:35.010000"],["2024-07-25T15:18:36.010000"],["2024-07-25T15:18:37.010000"],["2024-07-25T15:18:38.010000"],["2024-07-25T15:18:39.010000"],["2024-07-25T15:18:40.010000"],["2024-07-25T15:18:41.010000"],["2024-07-25T15:18:42.010000"],["2024-07-25T15:18:43.010000"],["2024-07-25T15:18:44.010000"],["2024-07-25T15:18:45.010000"],["2024-07-25T15:18:46.010000"],["2024-07-25T15:18:47.010000"],["2024-07-25T15:18:48.010000"],["2024-07-25T15:18:49.010000"],["2024-07-25T15:18:50.010000"],["2024-07-25T15:18:51.010000"],["2024-07-25T15:18:52.010000"],["2024-07-25T15:18:53.010000"],["2024-07-25T15:18:54.010000"],["2024-07-25T15:18:55.010000"],["2024-07-25T15:18:56.010000"],["2024-07-25T15:18:57.010000"],["2024-07-25T15:18:58.010000"],["2024-07-25T15:18:59.010000"],["2024-07-25T15:19:00.010000"],["2024-07-25T15:19:01.010000"],["2024-07-25T15:19:02.010000"],["2024-07-25T15:19:03.010000"],["2024-07-25T15:19:04.010000"],["2024-07-25T15:19:05.010000"],["2024-07-25T15:19:06.010000"],["2024-07-25T15:19:07.010000"],["2024-07-25T15:19:08.010000"],["2024-07-25T15:19:09.010000"],["2024-07-25T15:19:10.010000"],["2024-07-25T15:19:11.010000"],["2024-07-25T15:19:12.010000"],["2024-07-25T15:19:13.010000"],["2024-07-25T15:19:14.010000"],["2024-07-25T15:19:15.010000"],["2024-07-25T15:19:16.010000"],["2024-07-25T15:19:17.010000"],["2024-07-25T15:19:18.010000"],["2024-07-25T15:19:19.010000"],["2024-07-25T15:19:20.010000"],["2024-07-25T15:19:21.010000"],["2024-07-25T15:19:22.010000"],["2024-07-25T15:19:23.010000"],["2024-07-25T15:19:24.010000"],["2024-07-25T15:19:25.010000"],["2024-07-25T15:19:26.010000"],["2024-07-25T15:19:27.010000"],["2024-07-25T15:19:28.010000"],["2024-07-25T15:19:29.010000"],["2024-07-25T15:19:30.010000"],["2024-07-25T15:19:31.010000"],["2024-07-25T15:19:32.010000"],["2024-07-25T15:19:33.010000"],["2024-07-25T15:19:34.010000"],["2024-07-25T15:19:35.010000"],["2024-07-25T15:19:36.010000"],["2024-07-25T15:19:37.010000"],["2024-07-25T15:19:38.010000"],["2024-07-25T15:19:39.010000"],["2024-07-25T15:19:40.010000"],["2024-07-25T15:19:41.010000"],["2024-07-25T15:19:42.010000"],["2024-07-25T15:19:43.010000"],["2024-07-25T15:19:44.010000"],["2024-07-25T15:19:45.010000"],["2024-07-25T15:19:46.010000"],["2024-07-25T15:19:47.010000"],["2024-07-25T15:19:48.010000"],["2024-07-25T15:19:49.010000"],["2024-07-25T15:19:50.010000"],["2024-07-25T15:19:51.010000"],["2024-07-25T15:19:52.010000"],["2024-07-25T15:19:53.010000"],["2024-07-25T15:19:54.010000"],["2024-07-25T15:19:55.010000"],["2024-07-25T15:19:56.010000"],["2024-07-25T15:19:57.010000"],["2024-07-25T15:19:58.010000"],["2024-07-25T15:19:59.010000"],["2024-07-25T15:20:00.010000"],["2024-07-25T15:20:01.010000"],["2024-07-25T15:20:02.010000"],["2024-07-25T15:20:03.010000"],["2024-07-25T15:20:04.010000"],["2024-07-25T15:20:05.010000"],["2024-07-25T15:20:06.010000"],["2024-07-25T15:20:07.010000"],["2024-07-25T15:20:08.010000"],["2024-07-25T15:20:09.010000"],["2024-07-25T15:20:10.010000"],["2024-07-25T15:20:11.010000"],["2024-07-25T15:20:12.010000"],["2024-07-25T15:20:13.010000"],["2024-07-25T15:20:14.010000"],["2024-07-25T15:20:15.010000"],["2024-07-25T15:20:16.010000"],["2024-07-25T15:20:17.010000"],["2024-07-25T15:20:18.010000"],["2024-07-25T15:20:19.010000"],["2024-07-25T15:20:20.010000"],["2024-07-25T15:20:21.010000"],["2024-07-25T15:20:22.010000"],["2024-07-25T15:20:23.010000"],["2024-07-25T15:20:24.010000"],["2024-07-25T15:20:25.010000"],["2024-07-25T15:20:26.010000"],["2024-07-25T15:20:27.010000"],["2024-07-25T15:20:28.010000"],["2024-07-25T15:20:29.010000"],["2024-07-25T15:20:30.010000"],["2024-07-25T15:20:31.010000"],["2024-07-25T15:20:32.010000"],["2024-07-25T15:20:33.010000"],["2024-07-25T15:20:34.010000"],["2024-07-25T15:20:35.010000"],["2024-07-25T15:20:36.010000"],["2024-07-25T15:20:37.010000"],["2024-07-25T15:20:38.010000"],["2024-07-25T15:20:39.010000"],["2024-07-25T15:20:40.010000"],["2024-07-25T15:20:41.010000"],["2024-07-25T15:20:42.010000"],["2024-07-25T15:20:43.010000"],["2024-07-25T15:20:44.010000"],["2024-07-25T15:20:45.010000"],["2024-07-25T15:20:46.010000"],["2024-07-25T15:20:47.010000"],["2024-07-25T15:20:48.010000"],["2024-07-25T15:20:49.010000"],["2024-07-25T15:20:50.010000"],["2024-07-25T15:20:51.010000"],["2024-07-25T15:20:52.010000"],["2024-07-25T15:20:53.010000"],["2024-07-25T15:20:54.010000"],["2024-07-25T15:20:55.010000"],["2024-07-25T15:20:56.010000"],["2024-07-25T15:20:57.010000"],["2024-07-25T15:20:58.010000"],["2024-07-25T15:20:59.010000"],["2024-07-25T15:21:00.010000"],["2024-07-25T15:21:01.010000"],["2024-07-25T15:21:02.010000"],["2024-07-25T15:21:03.010000"],["2024-07-25T15:21:04.010000"],["2024-07-25T15:21:05.010000"],["2024-07-25T15:21:06.010000"],["2024-07-25T15:21:07.010000"],["2024-07-25T15:21:08.010000"],["2024-07-25T15:21:09.010000"],["2024-07-25T15:21:10.010000"],["2024-07-25T15:21:11.010000"],["2024-07-25T15:21:12.010000"],["2024-07-25T15:21:13.010000"],["2024-07-25T15:21:14.010000"],["2024-07-25T15:21:15.010000"],["2024-07-25T15:21:16.010000"],["2024-07-25T15:21:17.010000"],["2024-07-25T15:21:18.010000"],["2024-07-25T15:21:19.010000"],["2024-07-25T15:21:20.010000"],["2024-07-25T15:21:21.010000"],["2024-07-25T15:21:22.010000"],["2024-07-25T15:21:23.010000"],["2024-07-25T15:21:24.010000"],["2024-07-25T15:21:25.010000"],["2024-07-25T15:21:26.010000"],["2024-07-25T15:21:27.010000"],["2024-07-25T15:21:28.010000"],["2024-07-25T15:21:29.010000"],["2024-07-25T15:21:30.010000"],["2024-07-25T15:21:31.010000"],["2024-07-25T15:21:32.010000"],["2024-07-25T15:21:33.010000"],["2024-07-25T15:21:34.010000"],["2024-07-25T15:21:35.010000"],["2024-07-25T15:21:36.010000"],["2024-07-25T15:21:37.010000"],["2024-07-25T15:21:38.010000"],["2024-07-25T15:21:39.010000"],["2024-07-25T15:21:40.010000"],["2024-07-25T15:21:41.010000"],["2024-07-25T15:21:42.010000"],["2024-07-25T15:21:43.010000"],["2024-07-25T15:21:44.010000"],["2024-07-25T15:21:45.010000"],["2024-07-25T15:21:46.010000"],["2024-07-25T15:21:47.010000"],["2024-07-25T15:21:48.010000"],["2024-07-25T15:21:49.010000"],["2024-07-25T15:21:50.010000"],["2024-07-25T15:21:51.010000"],["2024-07-25T15:21:52.010000"],["2024-07-25T15:21:53.010000"],["2024-07-25T15:21:54.010000"],["2024-07-25T15:21:55.010000"],["2024-07-25T15:21:56.010000"],["2024-07-25T15:21:57.010000"],["2024-07-25T15:21:58.010000"],["2024-07-25T15:21:59.010000"],["2024-07-25T15:22:00.010000"],["2024-07-25T15:22:01.010000"],["2024-07-25T15:22:02.010000"],["2024-07-25T15:22:03.010000"],["2024-07-25T15:22:04.010000"],["2024-07-25T15:22:05.010000"],["2024-07-25T15:22:06.010000"],["2024-07-25T15:22:07.010000"],["2024-07-25T15:22:08.010000"],["2024-07-25T15:22:09.010000"],["2024-07-25T15:22:10.010000"],["2024-07-25T15:22:11.010000"],["2024-07-25T15:22:12.010000"],["2024-07-25T15:22:13.010000"],["2024-07-25T15:22:14.010000"],["2024-07-25T15:22:15.010000"],["2024-07-25T15:22:16.010000"],["2024-07-25T15:22:17.010000"],["2024-07-25T15:22:18.010000"],["2024-07-25T15:22:19.010000"],["2024-07-25T15:22:20.010000"],["2024-07-25T15:22:21.010000"],["2024-07-25T15:22:22.010000"],["2024-07-25T15:22:23.010000"],["2024-07-25T15:22:24.010000"],["2024-07-25T15:22:25.010000"],["2024-07-25T15:22:26.010000"],["2024-07-25T15:22:27.010000"],["2024-07-25T15:22:28.010000"],["2024-07-25T15:22:29.010000"],["2024-07-25T15:22:30.010000"],["2024-07-25T15:22:31.010000"],["2024-07-25T15:22:32.010000"],["2024-07-25T15:22:33.010000"],["2024-07-25T15:22:34.010000"],["2024-07-25T15:22:35.010000"],["2024-07-25T15:22:36.010000"],["2024-07-25T15:22:37.010000"],["2024-07-25T15:22:38.010000"],["2024-07-25T15:22:39.010000"],["2024-07-25T15:22:40.010000"],["2024-07-25T15:22:41.010000"],["2024-07-25T15:22:42.010000"],["2024-07-25T15:22:43.010000"],["2024-07-25T15:22:44.010000"],["2024-07-25T15:22:45.010000"],["2024-07-25T15:22:46.010000"],["2024-07-25T15:22:47.010000"],["2024-07-25T15:22:48.010000"],["2024-07-25T15:22:49.010000"],["2024-07-25T15:22:50.010000"],["2024-07-25T15:22:51.010000"],["2024-07-25T15:22:52.010000"],["2024-07-25T15:22:53.010000"],["2024-07-25T15:22:54.010000"],["2024-07-25T15:22:55.010000"],["2024-07-25T15:22:56.010000"],["2024-07-25T15:22:57.010000"],["2024-07-25T15:22:58.010000"],["2024-07-25T15:22:59.010000"],["2024-07-25T15:23:00.010000"],["2024-07-25T15:23:01.010000"],["2024-07-25T15:23:02.010000"],["2024-07-25T15:23:03.010000"],["2024-07-25T15:23:04.010000"],["2024-07-25T15:23:05.010000"],["2024-07-25T15:23:06.010000"],["2024-07-25T15:23:07.010000"],["2024-07-25T15:23:08.010000"],["2024-07-25T15:23:09.010000"],["2024-07-25T15:23:10.010000"],["2024-07-25T15:23:11.010000"],["2024-07-25T15:23:12.010000"],["2024-07-25T15:23:13.010000"],["2024-07-25T15:23:14.010000"],["2024-07-25T15:23:15.010000"],["2024-07-25T15:23:16.010000"],["2024-07-25T15:23:17.010000"],["2024-07-25T15:23:18.010000"],["2024-07-25T15:23:19.010000"],["2024-07-25T15:23:20.010000"],["2024-07-25T15:23:21.010000"],["2024-07-25T15:23:22.010000"],["2024-07-25T15:23:23.010000"],["2024-07-25T15:23:24.010000"],["2024-07-25T15:23:25.010000"],["2024-07-25T15:23:26.010000"],["2024-07-25T15:23:27.010000"],["2024-07-25T15:23:28.010000"],["2024-07-25T15:23:29.010000"],["2024-07-25T15:23:30.010000"],["2024-07-25T15:23:31.010000"],["2024-07-25T15:23:32.010000"],["2024-07-25T15:23:33.010000"],["2024-07-25T15:23:34.010000"],["2024-07-25T15:23:35.010000"],["2024-07-25T15:23:36.010000"],["2024-07-25T15:23:37.010000"],["2024-07-25T15:23:38.010000"],["2024-07-25T15:23:39.010000"],["2024-07-25T15:23:40.010000"],["2024-07-25T15:23:41.010000"],["2024-07-25T15:23:42.010000"],["2024-07-25T15:23:43.010000"],["2024-07-25T15:23:44.010000"],["2024-07-25T15:23:45.010000"],["2024-07-25T15:23:46.010000"],["2024-07-25T15:23:47.010000"],["2024-07-25T15:23:48.010000"],["2024-07-25T15:23:49.010000"],["2024-07-25T15:23:50.010000"],["2024-07-25T15:23:51.010000"],["2024-07-25T15:23:52.010000"],["2024-07-25T15:23:53.010000"],["2024-07-25T15:23:54.010000"],["2024-07-25T15:23:55.010000"],["2024-07-25T15:23:56.010000"],["2024-07-25T15:23:57.010000"],["2024-07-25T15:23:58.010000"],["2024-07-25T15:23:59.010000"],["2024-07-25T15:24:00.010000"],["2024-07-25T15:24:01.010000"],["2024-07-25T15:24:02.010000"],["2024-07-25T15:24:03.010000"],["2024-07-25T15:24:04.010000"],["2024-07-25T15:24:05.010000"],["2024-07-25T15:24:06.010000"],["2024-07-25T15:24:07.010000"],["2024-07-25T15:24:08.010000"],["2024-07-25T15:24:09.010000"],["2024-07-25T15:24:10.010000"],["2024-07-25T15:24:11.010000"],["2024-07-25T15:24:12.010000"],["2024-07-25T15:24:13.010000"],["2024-07-25T15:24:14.010000"],["2024-07-25T15:24:15.010000"],["2024-07-25T15:24:16.010000"],["2024-07-25T15:24:17.010000"],["2024-07-25T15:24:18.010000"],["2024-07-25T15:24:19.010000"],["2024-07-25T15:24:20.010000"],["2024-07-25T15:24:21.010000"],["2024-07-25T15:24:22.010000"],["2024-07-25T15:24:23.010000"],["2024-07-25T15:24:24.010000"],["2024-07-25T15:24:25.010000"],["2024-07-25T15:24:26.010000"],["2024-07-25T15:24:27.010000"],["2024-07-25T15:24:28.010000"],["2024-07-25T15:24:29.010000"],["2024-07-25T15:24:30.010000"],["2024-07-25T15:24:31.010000"],["2024-07-25T15:24:32.010000"],["2024-07-25T15:24:33.010000"],["2024-07-25T15:24:34.010000"],["2024-07-25T15:24:35.010000"],["2024-07-25T15:24:36.010000"],["2024-07-25T15:24:37.010000"],["2024-07-25T15:24:38.010000"],["2024-07-25T15:24:39.010000"],["2024-07-25T15:24:40.010000"],["2024-07-25T15:24:41.010000"],["2024-07-25T15:24:42.010000"],["2024-07-25T15:24:43.010000"],["2024-07-25T15:24:44.010000"],["2024-07-25T15:24:45.010000"],["2024-07-25T15:24:46.010000"],["2024-07-25T15:24:47.010000"],["2024-07-25T15:24:48.010000"],["2024-07-25T15:24:49.010000"],["2024-07-25T15:24:50.010000"],["2024-07-25T15:24:51.010000"],["2024-07-25T15:24:52.010000"],["2024-07-25T15:24:53.010000"],["2024-07-25T15:24:54.010000"],["2024-07-25T15:24:55.010000"],["2024-07-25T15:24:56.010000"],["2024-07-25T15:24:57.010000"],["2024-07-25T15:24:58.010000"],["2024-07-25T15:24:59.010000"],["2024-07-25T15:25:00.010000"],["2024-07-25T15:25:01.010000"],["2024-07-25T15:25:02.010000"],["2024-07-25T15:25:03.010000"],["2024-07-25T15:25:04.010000"],["2024-07-25T15:25:05.010000"],["2024-07-25T15:25:06.010000"],["2024-07-25T15:25:07.010000"],["2024-07-25T15:25:08.010000"],["2024-07-25T15:25:09.010000"],["2024-07-25T15:25:10.010000"],["2024-07-25T15:25:11.010000"],["2024-07-25T15:25:12.010000"],["2024-07-25T15:25:13.010000"],["2024-07-25T15:25:14.010000"],["2024-07-25T15:25:15.010000"],["2024-07-25T15:25:16.010000"],["2024-07-25T15:25:17.010000"],["2024-07-25T15:25:18.010000"],["2024-07-25T15:25:19.010000"],["2024-07-25T15:25:20.010000"],["2024-07-25T15:25:21.010000"],["2024-07-25T15:25:22.010000"],["2024-07-25T15:25:23.010000"],["2024-07-25T15:25:24.010000"],["2024-07-25T15:25:25.010000"],["2024-07-25T15:25:26.010000"],["2024-07-25T15:25:27.010000"],["2024-07-25T15:25:28.010000"],["2024-07-25T15:25:29.010000"],["2024-07-25T15:25:30.010000"],["2024-07-25T15:25:31.010000"],["2024-07-25T15:25:32.010000"],["2024-07-25T15:25:33.010000"],["2024-07-25T15:25:34.010000"],["2024-07-25T15:25:35.010000"],["2024-07-25T15:25:36.010000"],["2024-07-25T15:25:37.010000"],["2024-07-25T15:25:38.010000"],["2024-07-25T15:25:39.010000"],["2024-07-25T15:25:40.010000"],["2024-07-25T15:25:41.010000"],["2024-07-25T15:25:42.010000"],["2024-07-25T15:25:43.010000"],["2024-07-25T15:25:44.010000"],["2024-07-25T15:25:45.010000"],["2024-07-25T15:25:46.010000"],["2024-07-25T15:25:47.010000"],["2024-07-25T15:25:48.010000"],["2024-07-25T15:25:49.010000"],["2024-07-25T15:25:50.010000"],["2024-07-25T15:25:51.010000"],["2024-07-25T15:25:52.010000"],["2024-07-25T15:25:53.010000"],["2024-07-25T15:25:54.010000"],["2024-07-25T15:25:55.010000"],["2024-07-25T15:25:56.010000"],["2024-07-25T15:25:57.010000"],["2024-07-25T15:25:58.010000"],["2024-07-25T15:25:59.010000"],["2024-07-25T15:26:00.010000"],["2024-07-25T15:26:01.010000"],["2024-07-25T15:26:02.010000"],["2024-07-25T15:26:03.010000"],["2024-07-25T15:26:04.010000"],["2024-07-25T15:26:05.010000"],["2024-07-25T15:26:06.010000"],["2024-07-25T15:26:07.010000"],["2024-07-25T15:26:08.010000"],["2024-07-25T15:26:09.010000"],["2024-07-25T15:26:10.010000"],["2024-07-25T15:26:11.010000"],["2024-07-25T15:26:12.010000"],["2024-07-25T15:26:13.010000"],["2024-07-25T15:26:14.010000"],["2024-07-25T15:26:15.010000"],["2024-07-25T15:26:16.010000"],["2024-07-25T15:26:17.010000"],["2024-07-25T15:26:18.010000"],["2024-07-25T15:26:19.010000"],["2024-07-25T15:26:20.010000"],["2024-07-25T15:26:21.010000"],["2024-07-25T15:26:22.010000"],["2024-07-25T15:26:23.010000"],["2024-07-25T15:26:24.010000"],["2024-07-25T15:26:25.010000"],["2024-07-25T15:26:26.010000"],["2024-07-25T15:26:27.010000"],["2024-07-25T15:26:28.010000"],["2024-07-25T15:26:29.010000"],["2024-07-25T15:26:30.010000"],["2024-07-25T15:26:31.010000"],["2024-07-25T15:26:32.010000"],["2024-07-25T15:26:33.010000"],["2024-07-25T15:26:34.010000"],["2024-07-25T15:26:35.010000"],["2024-07-25T15:26:36.010000"],["2024-07-25T15:26:37.010000"],["2024-07-25T15:26:38.010000"],["2024-07-25T15:26:39.010000"],["2024-07-25T15:26:40.010000"],["2024-07-25T15:26:41.010000"],["2024-07-25T15:26:42.010000"],["2024-07-25T15:26:43.010000"],["2024-07-25T15:26:44.010000"],["2024-07-25T15:26:45.010000"],["2024-07-25T15:26:46.010000"],["2024-07-25T15:26:47.010000"],["2024-07-25T15:26:48.010000"],["2024-07-25T15:26:49.010000"],["2024-07-25T15:26:50.010000"],["2024-07-25T15:26:51.010000"],["2024-07-25T15:26:52.010000"],["2024-07-25T15:26:53.010000"],["2024-07-25T15:26:54.010000"],["2024-07-25T15:26:55.010000"],["2024-07-25T15:26:56.010000"],["2024-07-25T15:26:57.010000"],["2024-07-25T15:26:58.010000"],["2024-07-25T15:26:59.010000"],["2024-07-25T15:27:00.010000"],["2024-07-25T15:27:01.010000"],["2024-07-25T15:27:02.010000"],["2024-07-25T15:27:03.010000"],["2024-07-25T15:27:04.010000"],["2024-07-25T15:27:05.010000"],["2024-07-25T15:27:06.010000"],["2024-07-25T15:27:07.010000"],["2024-07-25T15:27:08.010000"],["2024-07-25T15:27:09.010000"],["2024-07-25T15:27:10.010000"],["2024-07-25T15:27:11.010000"],["2024-07-25T15:27:12.010000"],["2024-07-25T15:27:13.010000"],["2024-07-25T15:27:14.010000"],["2024-07-25T15:27:15.010000"],["2024-07-25T15:27:16.010000"],["2024-07-25T15:27:17.010000"],["2024-07-25T15:27:18.010000"],["2024-07-25T15:27:19.010000"],["2024-07-25T15:27:20.010000"],["2024-07-25T15:27:21.010000"],["2024-07-25T15:27:22.010000"],["2024-07-25T15:27:23.010000"],["2024-07-25T15:27:24.010000"],["2024-07-25T15:27:25.010000"],["2024-07-25T15:27:26.010000"],["2024-07-25T15:27:27.010000"],["2024-07-25T15:27:28.010000"],["2024-07-25T15:27:29.010000"],["2024-07-25T15:27:30.010000"],["2024-07-25T15:27:31.010000"],["2024-07-25T15:27:32.010000"],["2024-07-25T15:27:33.010000"],["2024-07-25T15:27:34.010000"],["2024-07-25T15:27:35.010000"],["2024-07-25T15:27:36.010000"],["2024-07-25T15:27:37.010000"],["2024-07-25T15:27:38.010000"],["2024-07-25T15:27:39.010000"],["2024-07-25T15:27:40.010000"],["2024-07-25T15:27:41.010000"],["2024-07-25T15:27:42.010000"],["2024-07-25T15:27:43.010000"],["2024-07-25T15:27:44.010000"],["2024-07-25T15:27:45.010000"],["2024-07-25T15:27:46.010000"],["2024-07-25T15:27:47.010000"],["2024-07-25T15:27:48.010000"],["2024-07-25T15:27:49.010000"],["2024-07-25T15:27:50.010000"],["2024-07-25T15:27:51.010000"],["2024-07-25T15:27:52.010000"],["2024-07-25T15:27:53.010000"],["2024-07-25T15:27:54.010000"],["2024-07-25T15:27:55.010000"],["2024-07-25T15:27:56.010000"],["2024-07-25T15:27:57.010000"],["2024-07-25T15:27:58.010000"],["2024-07-25T15:27:59.010000"],["2024-07-25T15:28:00.010000"],["2024-07-25T15:28:01.010000"],["2024-07-25T15:28:02.010000"],["2024-07-25T15:28:03.010000"],["2024-07-25T15:28:04.010000"],["2024-07-25T15:28:05.010000"],["2024-07-25T15:28:06.010000"],["2024-07-25T15:28:07.010000"],["2024-07-25T15:28:08.010000"],["2024-07-25T15:28:09.010000"],["2024-07-25T15:28:10.010000"],["2024-07-25T15:28:11.010000"],["2024-07-25T15:28:12.010000"],["2024-07-25T15:28:13.010000"],["2024-07-25T15:28:14.010000"],["2024-07-25T15:28:15.010000"],["2024-07-25T15:28:16.010000"],["2024-07-25T15:28:17.010000"],["2024-07-25T15:28:18.010000"],["2024-07-25T15:28:19.010000"],["2024-07-25T15:28:20.010000"],["2024-07-25T15:28:21.010000"],["2024-07-25T15:28:22.010000"],["2024-07-25T15:28:23.010000"],["2024-07-25T15:28:24.010000"],["2024-07-25T15:28:25.010000"],["2024-07-25T15:28:26.010000"],["2024-07-25T15:28:27.010000"],["2024-07-25T15:28:28.010000"],["2024-07-25T15:28:29.010000"],["2024-07-25T15:28:30.010000"],["2024-07-25T15:28:31.010000"],["2024-07-25T15:28:32.010000"],["2024-07-25T15:28:33.010000"],["2024-07-25T15:28:34.010000"],["2024-07-25T15:28:35.010000"],["2024-07-25T15:28:36.010000"],["2024-07-25T15:28:37.010000"],["2024-07-25T15:28:38.010000"],["2024-07-25T15:28:39.010000"],["2024-07-25T15:28:40.010000"],["2024-07-25T15:28:41.010000"],["2024-07-25T15:28:42.010000"],["2024-07-25T15:28:43.010000"],["2024-07-25T15:28:44.010000"],["2024-07-25T15:28:45.010000"],["2024-07-25T15:28:46.010000"],["2024-07-25T15:28:47.010000"],["2024-07-25T15:28:48.010000"],["2024-07-25T15:28:49.010000"],["2024-07-25T15:28:50.010000"],["2024-07-25T15:28:51.010000"],["2024-07-25T15:28:52.010000"],["2024-07-25T15:28:53.010000"],["2024-07-25T15:28:54.010000"],["2024-07-25T15:28:55.010000"],["2024-07-25T15:28:56.010000"],["2024-07-25T15:28:57.010000"],["2024-07-25T15:28:58.010000"],["2024-07-25T15:28:59.010000"],["2024-07-25T15:29:00.010000"],["2024-07-25T15:29:01.010000"],["2024-07-25T15:29:02.010000"],["2024-07-25T15:29:03.010000"],["2024-07-25T15:29:04.010000"],["2024-07-25T15:29:05.010000"],["2024-07-25T15:29:06.010000"],["2024-07-25T15:29:07.010000"],["2024-07-25T15:29:08.010000"],["2024-07-25T15:29:09.010000"],["2024-07-25T15:29:10.010000"],["2024-07-25T15:29:11.010000"],["2024-07-25T15:29:12.010000"],["2024-07-25T15:29:13.010000"],["2024-07-25T15:29:14.010000"],["2024-07-25T15:29:15.010000"],["2024-07-25T15:29:16.010000"],["2024-07-25T15:29:17.010000"],["2024-07-25T15:29:18.010000"],["2024-07-25T15:29:19.010000"],["2024-07-25T15:29:20.010000"],["2024-07-25T15:29:21.010000"],["2024-07-25T15:29:22.010000"],["2024-07-25T15:29:23.010000"],["2024-07-25T15:29:24.010000"],["2024-07-25T15:29:25.010000"],["2024-07-25T15:29:26.010000"],["2024-07-25T15:29:27.010000"],["2024-07-25T15:29:28.010000"],["2024-07-25T15:29:29.010000"],["2024-07-25T15:29:30.010000"],["2024-07-25T15:29:31.010000"],["2024-07-25T15:29:32.010000"],["2024-07-25T15:29:33.010000"],["2024-07-25T15:29:34.010000"],["2024-07-25T15:29:35.010000"],["2024-07-25T15:29:36.010000"],["2024-07-25T15:29:37.010000"],["2024-07-25T15:29:38.010000"],["2024-07-25T15:29:39.010000"],["2024-07-25T15:29:40.010000"],["2024-07-25T15:29:41.010000"],["2024-07-25T15:29:42.010000"],["2024-07-25T15:29:43.010000"],["2024-07-25T15:29:44.010000"],["2024-07-25T15:29:45.010000"],["2024-07-25T15:29:46.010000"],["2024-07-25T15:29:47.010000"],["2024-07-25T15:29:48.010000"],["2024-07-25T15:29:49.010000"],["2024-07-25T15:29:50.010000"],["2024-07-25T15:29:51.010000"],["2024-07-25T15:29:52.010000"],["2024-07-25T15:29:53.010000"],["2024-07-25T15:29:54.010000"],["2024-07-25T15:29:55.010000"],["2024-07-25T15:29:56.010000"],["2024-07-25T15:29:57.010000"],["2024-07-25T15:29:58.010000"],["2024-07-25T15:29:59.010000"],["2024-07-25T15:30:00.010000"],["2024-07-25T15:30:01.010000"],["2024-07-25T15:30:02.010000"],["2024-07-25T15:30:03.010000"],["2024-07-25T15:30:04.010000"],["2024-07-25T15:30:05.010000"],["2024-07-25T15:30:06.010000"],["2024-07-25T15:30:07.010000"],["2024-07-25T15:30:08.010000"],["2024-07-25T15:30:09.010000"],["2024-07-25T15:30:10.010000"],["2024-07-25T15:30:11.010000"],["2024-07-25T15:30:12.010000"],["2024-07-25T15:30:13.010000"],["2024-07-25T15:30:14.010000"],["2024-07-25T15:30:15.010000"],["2024-07-25T15:30:16.010000"],["2024-07-25T15:30:17.010000"],["2024-07-25T15:30:18.010000"],["2024-07-25T15:30:19.010000"],["2024-07-25T15:30:20.010000"],["2024-07-25T15:30:21.010000"],["2024-07-25T15:30:22.010000"],["2024-07-25T15:30:23.010000"],["2024-07-25T15:30:24.010000"],["2024-07-25T15:30:25.010000"],["2024-07-25T15:30:26.010000"],["2024-07-25T15:30:27.010000"],["2024-07-25T15:30:28.010000"],["2024-07-25T15:30:29.010000"],["2024-07-25T15:30:30.010000"],["2024-07-25T15:30:31.010000"],["2024-07-25T15:30:32.010000"],["2024-07-25T15:30:33.010000"],["2024-07-25T15:30:34.010000"],["2024-07-25T15:30:35.010000"],["2024-07-25T15:30:36.010000"],["2024-07-25T15:30:37.010000"],["2024-07-25T15:30:38.010000"],["2024-07-25T15:30:39.010000"],["2024-07-25T15:30:40.010000"],["2024-07-25T15:30:41.010000"],["2024-07-25T15:30:42.010000"],["2024-07-25T15:30:43.010000"],["2024-07-25T15:30:44.010000"],["2024-07-25T15:30:45.010000"],["2024-07-25T15:30:46.010000"],["2024-07-25T15:30:47.010000"],["2024-07-25T15:30:48.010000"],["2024-07-25T15:30:49.010000"],["2024-07-25T15:30:50.010000"],["2024-07-25T15:30:51.010000"],["2024-07-25T15:30:52.010000"],["2024-07-25T15:30:53.010000"],["2024-07-25T15:30:54.010000"],["2024-07-25T15:30:55.010000"],["2024-07-25T15:30:56.010000"],["2024-07-25T15:30:57.010000"],["2024-07-25T15:30:58.010000"],["2024-07-25T15:30:59.010000"],["2024-07-25T15:31:00.010000"],["2024-07-25T15:31:01.010000"],["2024-07-25T15:31:02.010000"],["2024-07-25T15:31:03.010000"],["2024-07-25T15:31:04.010000"],["2024-07-25T15:31:05.010000"],["2024-07-25T15:31:06.010000"],["2024-07-25T15:31:07.010000"],["2024-07-25T15:31:08.010000"],["2024-07-25T15:31:09.010000"],["2024-07-25T15:31:10.010000"],["2024-07-25T15:31:11.010000"],["2024-07-25T15:31:12.010000"],["2024-07-25T15:31:13.010000"],["2024-07-25T15:31:14.010000"],["2024-07-25T15:31:15.010000"],["2024-07-25T15:31:16.010000"],["2024-07-25T15:31:17.010000"],["2024-07-25T15:31:18.010000"],["2024-07-25T15:31:19.010000"],["2024-07-25T15:31:20.010000"],["2024-07-25T15:31:21.010000"],["2024-07-25T15:31:22.010000"],["2024-07-25T15:31:23.010000"],["2024-07-25T15:31:24.010000"],["2024-07-25T15:31:25.010000"],["2024-07-25T15:31:26.010000"],["2024-07-25T15:31:27.010000"],["2024-07-25T15:31:28.010000"],["2024-07-25T15:31:29.010000"],["2024-07-25T15:31:30.010000"],["2024-07-25T15:31:31.010000"],["2024-07-25T15:31:32.010000"],["2024-07-25T15:31:33.010000"],["2024-07-25T15:31:34.010000"],["2024-07-25T15:31:35.010000"],["2024-07-25T15:31:36.010000"],["2024-07-25T15:31:37.010000"],["2024-07-25T15:31:38.010000"],["2024-07-25T15:31:39.010000"],["2024-07-25T15:31:40.010000"],["2024-07-25T15:31:41.010000"],["2024-07-25T15:31:42.010000"],["2024-07-25T15:31:43.010000"],["2024-07-25T15:31:44.010000"],["2024-07-25T15:31:45.010000"],["2024-07-25T15:31:46.010000"],["2024-07-25T15:31:47.010000"],["2024-07-25T15:31:48.010000"],["2024-07-25T15:31:49.010000"],["2024-07-25T15:31:50.010000"],["2024-07-25T15:31:51.010000"],["2024-07-25T15:31:52.010000"],["2024-07-25T15:31:53.010000"],["2024-07-25T15:31:54.010000"],["2024-07-25T15:31:55.010000"],["2024-07-25T15:31:56.010000"],["2024-07-25T15:31:57.010000"],["2024-07-25T15:31:58.010000"],["2024-07-25T15:31:59.010000"],["2024-07-25T15:32:00.010000"],["2024-07-25T15:32:01.010000"],["2024-07-25T15:32:02.010000"],["2024-07-25T15:32:03.010000"],["2024-07-25T15:32:04.010000"],["2024-07-25T15:32:05.010000"],["2024-07-25T15:32:06.010000"],["2024-07-25T15:32:07.010000"],["2024-07-25T15:32:08.010000"],["2024-07-25T15:32:09.010000"],["2024-07-25T15:32:10.010000"],["2024-07-25T15:32:11.010000"],["2024-07-25T15:32:12.010000"],["2024-07-25T15:32:13.010000"],["2024-07-25T15:32:14.010000"],["2024-07-25T15:32:15.010000"],["2024-07-25T15:32:16.010000"],["2024-07-25T15:32:17.010000"],["2024-07-25T15:32:18.010000"],["2024-07-25T15:32:19.010000"],["2024-07-25T15:32:20.010000"],["2024-07-25T15:32:21.010000"],["2024-07-25T15:32:22.010000"],["2024-07-25T15:32:23.010000"],["2024-07-25T15:32:24.010000"],["2024-07-25T15:32:25.010000"],["2024-07-25T15:32:26.010000"],["2024-07-25T15:32:27.010000"],["2024-07-25T15:32:28.010000"],["2024-07-25T15:32:29.010000"],["2024-07-25T15:32:30.010000"],["2024-07-25T15:32:31.010000"],["2024-07-25T15:32:32.010000"],["2024-07-25T15:32:33.010000"],["2024-07-25T15:32:34.010000"],["2024-07-25T15:32:35.010000"],["2024-07-25T15:32:36.010000"],["2024-07-25T15:32:37.010000"],["2024-07-25T15:32:38.010000"],["2024-07-25T15:32:39.010000"],["2024-07-25T15:32:40.010000"],["2024-07-25T15:32:41.010000"],["2024-07-25T15:32:42.010000"],["2024-07-25T15:32:43.010000"],["2024-07-25T15:32:44.010000"],["2024-07-25T15:32:45.010000"],["2024-07-25T15:32:46.010000"],["2024-07-25T15:32:47.010000"],["2024-07-25T15:32:48.010000"],["2024-07-25T15:32:49.010000"],["2024-07-25T15:32:50.010000"],["2024-07-25T15:32:51.010000"],["2024-07-25T15:32:52.010000"],["2024-07-25T15:32:53.010000"],["2024-07-25T15:32:54.010000"],["2024-07-25T15:32:55.010000"],["2024-07-25T15:32:56.010000"],["2024-07-25T15:32:57.010000"],["2024-07-25T15:32:58.010000"],["2024-07-25T15:32:59.010000"],["2024-07-25T15:33:00.010000"],["2024-07-25T15:33:01.010000"],["2024-07-25T15:33:02.010000"],["2024-07-25T15:33:03.010000"],["2024-07-25T15:33:04.010000"],["2024-07-25T15:33:05.010000"],["2024-07-25T15:33:06.010000"],["2024-07-25T15:33:07.010000"],["2024-07-25T15:33:08.010000"],["2024-07-25T15:33:09.010000"],["2024-07-25T15:33:10.010000"],["2024-07-25T15:33:11.010000"],["2024-07-25T15:33:12.010000"],["2024-07-25T15:33:13.010000"],["2024-07-25T15:33:14.010000"],["2024-07-25T15:33:15.010000"],["2024-07-25T15:33:16.010000"],["2024-07-25T15:33:17.010000"],["2024-07-25T15:33:18.010000"],["2024-07-25T15:33:19.010000"],["2024-07-25T15:33:20.010000"],["2024-07-25T15:33:21.010000"],["2024-07-25T15:33:22.010000"],["2024-07-25T15:33:23.010000"],["2024-07-25T15:33:24.010000"],["2024-07-25T15:33:25.010000"],["2024-07-25T15:33:26.010000"],["2024-07-25T15:33:27.010000"],["2024-07-25T15:33:28.010000"],["2024-07-25T15:33:29.010000"],["2024-07-25T15:33:30.010000"],["2024-07-25T15:33:31.010000"],["2024-07-25T15:33:32.010000"],["2024-07-25T15:33:33.010000"],["2024-07-25T15:33:34.010000"],["2024-07-25T15:33:35.010000"],["2024-07-25T15:33:36.010000"],["2024-07-25T15:33:37.010000"],["2024-07-25T15:33:38.010000"],["2024-07-25T15:33:39.010000"],["2024-07-25T15:33:40.010000"],["2024-07-25T15:33:41.010000"],["2024-07-25T15:33:42.010000"],["2024-07-25T15:33:43.010000"],["2024-07-25T15:33:44.010000"],["2024-07-25T15:33:45.010000"],["2024-07-25T15:33:46.010000"],["2024-07-25T15:33:47.010000"],["2024-07-25T15:33:48.010000"],["2024-07-25T15:33:49.010000"],["2024-07-25T15:33:50.010000"],["2024-07-25T15:33:51.010000"],["2024-07-25T15:33:52.010000"],["2024-07-25T15:33:53.010000"],["2024-07-25T15:33:54.010000"],["2024-07-25T15:33:55.010000"],["2024-07-25T15:33:56.010000"],["2024-07-25T15:33:57.010000"],["2024-07-25T15:33:58.010000"],["2024-07-25T15:33:59.010000"],["2024-07-25T15:34:00.010000"],["2024-07-25T15:34:01.010000"],["2024-07-25T15:34:02.010000"],["2024-07-25T15:34:03.010000"],["2024-07-25T15:34:04.010000"],["2024-07-25T15:34:05.010000"],["2024-07-25T15:34:06.010000"],["2024-07-25T15:34:07.010000"],["2024-07-25T15:34:08.010000"],["2024-07-25T15:34:09.010000"],["2024-07-25T15:34:10.010000"],["2024-07-25T15:34:11.010000"],["2024-07-25T15:34:12.010000"],["2024-07-25T15:34:13.010000"],["2024-07-25T15:34:14.010000"],["2024-07-25T15:34:15.010000"],["2024-07-25T15:34:16.010000"],["2024-07-25T15:34:17.010000"],["2024-07-25T15:34:18.010000"],["2024-07-25T15:34:19.010000"],["2024-07-25T15:34:20.010000"],["2024-07-25T15:34:21.010000"],["2024-07-25T15:34:22.010000"],["2024-07-25T15:34:23.010000"],["2024-07-25T15:34:24.010000"],["2024-07-25T15:34:25.010000"],["2024-07-25T15:34:26.010000"],["2024-07-25T15:34:27.010000"],["2024-07-25T15:34:28.010000"],["2024-07-25T15:34:29.010000"],["2024-07-25T15:34:30.010000"],["2024-07-25T15:34:31.010000"],["2024-07-25T15:34:32.010000"],["2024-07-25T15:34:33.010000"],["2024-07-25T15:34:34.010000"],["2024-07-25T15:34:35.010000"],["2024-07-25T15:34:36.010000"],["2024-07-25T15:34:37.010000"],["2024-07-25T15:34:38.010000"],["2024-07-25T15:34:39.010000"],["2024-07-25T15:34:40.010000"],["2024-07-25T15:34:41.010000"],["2024-07-25T15:34:42.010000"],["2024-07-25T15:34:43.010000"],["2024-07-25T15:34:44.010000"],["2024-07-25T15:34:45.010000"],["2024-07-25T15:34:46.010000"],["2024-07-25T15:34:47.010000"],["2024-07-25T15:34:48.010000"],["2024-07-25T15:34:49.010000"],["2024-07-25T15:34:50.010000"],["2024-07-25T15:34:51.010000"],["2024-07-25T15:34:52.010000"],["2024-07-25T15:34:53.010000"],["2024-07-25T15:34:54.010000"],["2024-07-25T15:34:55.010000"],["2024-07-25T15:34:56.010000"],["2024-07-25T15:34:57.010000"],["2024-07-25T15:34:58.010000"],["2024-07-25T15:34:59.010000"],["2024-07-25T15:35:00.010000"],["2024-07-25T15:35:01.010000"],["2024-07-25T15:35:02.010000"],["2024-07-25T15:35:03.010000"],["2024-07-25T15:35:04.010000"],["2024-07-25T15:35:05.010000"],["2024-07-25T15:35:06.010000"],["2024-07-25T15:35:07.010000"],["2024-07-25T15:35:08.010000"],["2024-07-25T15:35:09.010000"],["2024-07-25T15:35:10.010000"],["2024-07-25T15:35:11.010000"],["2024-07-25T15:35:12.010000"],["2024-07-25T15:35:13.010000"],["2024-07-25T15:35:14.010000"],["2024-07-25T15:35:15.010000"],["2024-07-25T15:35:16.010000"],["2024-07-25T15:35:17.010000"],["2024-07-25T15:35:18.010000"],["2024-07-25T15:35:19.010000"],["2024-07-25T15:35:20.010000"],["2024-07-25T15:35:21.010000"],["2024-07-25T15:35:22.010000"],["2024-07-25T15:35:23.010000"],["2024-07-25T15:35:24.010000"],["2024-07-25T15:35:25.010000"],["2024-07-25T15:35:26.010000"],["2024-07-25T15:35:27.010000"],["2024-07-25T15:35:28.010000"],["2024-07-25T15:35:29.010000"],["2024-07-25T15:35:30.010000"],["2024-07-25T15:35:31.010000"],["2024-07-25T15:35:32.010000"],["2024-07-25T15:35:33.010000"],["2024-07-25T15:35:34.010000"],["2024-07-25T15:35:35.010000"],["2024-07-25T15:35:36.010000"],["2024-07-25T15:35:37.010000"],["2024-07-25T15:35:38.010000"],["2024-07-25T15:35:39.010000"],["2024-07-25T15:35:40.010000"],["2024-07-25T15:35:41.010000"],["2024-07-25T15:35:42.010000"],["2024-07-25T15:35:43.010000"],["2024-07-25T15:35:44.010000"],["2024-07-25T15:35:45.010000"],["2024-07-25T15:35:46.010000"],["2024-07-25T15:35:47.010000"],["2024-07-25T15:35:48.010000"],["2024-07-25T15:35:49.010000"],["2024-07-25T15:35:50.010000"],["2024-07-25T15:35:51.010000"],["2024-07-25T15:35:52.010000"],["2024-07-25T15:35:53.010000"],["2024-07-25T15:35:54.010000"],["2024-07-25T15:35:55.010000"],["2024-07-25T15:35:56.010000"],["2024-07-25T15:35:57.010000"],["2024-07-25T15:35:58.010000"],["2024-07-25T15:35:59.010000"],["2024-07-25T15:36:00.010000"],["2024-07-25T15:36:01.010000"],["2024-07-25T15:36:02.010000"],["2024-07-25T15:36:03.010000"],["2024-07-25T15:36:04.010000"],["2024-07-25T15:36:05.010000"],["2024-07-25T15:36:06.010000"],["2024-07-25T15:36:07.010000"],["2024-07-25T15:36:08.010000"],["2024-07-25T15:36:09.010000"],["2024-07-25T15:36:10.010000"],["2024-07-25T15:36:11.010000"],["2024-07-25T15:36:12.010000"],["2024-07-25T15:36:13.010000"],["2024-07-25T15:36:14.010000"],["2024-07-25T15:36:15.010000"],["2024-07-25T15:36:16.010000"],["2024-07-25T15:36:17.010000"],["2024-07-25T15:36:18.010000"],["2024-07-25T15:36:19.010000"],["2024-07-25T15:36:20.010000"],["2024-07-25T15:36:21.010000"],["2024-07-25T15:36:22.010000"],["2024-07-25T15:36:23.010000"],["2024-07-25T15:36:24.010000"],["2024-07-25T15:36:25.010000"],["2024-07-25T15:36:26.010000"],["2024-07-25T15:36:27.010000"],["2024-07-25T15:36:28.010000"],["2024-07-25T15:36:29.010000"],["2024-07-25T15:36:30.010000"],["2024-07-25T15:36:31.010000"],["2024-07-25T15:36:32.010000"],["2024-07-25T15:36:33.010000"],["2024-07-25T15:36:34.010000"],["2024-07-25T15:36:35.010000"],["2024-07-25T15:36:36.010000"],["2024-07-25T15:36:37.010000"],["2024-07-25T15:36:38.010000"],["2024-07-25T15:36:39.010000"],["2024-07-25T15:36:40.010000"],["2024-07-25T15:36:41.010000"],["2024-07-25T15:36:42.010000"],["2024-07-25T15:36:43.010000"],["2024-07-25T15:36:44.010000"],["2024-07-25T15:36:45.010000"],["2024-07-25T15:36:46.010000"],["2024-07-25T15:36:47.010000"],["2024-07-25T15:36:48.010000"],["2024-07-25T15:36:49.010000"],["2024-07-25T15:36:50.010000"],["2024-07-25T15:36:51.010000"],["2024-07-25T15:36:52.010000"],["2024-07-25T15:36:53.010000"],["2024-07-25T15:36:54.010000"],["2024-07-25T15:36:55.010000"],["2024-07-25T15:36:56.010000"],["2024-07-25T15:36:57.010000"],["2024-07-25T15:36:58.010000"],["2024-07-25T15:36:59.010000"],["2024-07-25T15:37:00.010000"],["2024-07-25T15:37:01.010000"],["2024-07-25T15:37:02.010000"],["2024-07-25T15:37:03.010000"],["2024-07-25T15:37:04.010000"],["2024-07-25T15:37:05.010000"],["2024-07-25T15:37:06.010000"],["2024-07-25T15:37:07.010000"],["2024-07-25T15:37:08.010000"],["2024-07-25T15:37:09.010000"],["2024-07-25T15:37:10.010000"],["2024-07-25T15:37:11.010000"],["2024-07-25T15:37:12.010000"],["2024-07-25T15:37:13.010000"],["2024-07-25T15:37:14.010000"],["2024-07-25T15:37:15.010000"],["2024-07-25T15:37:16.010000"],["2024-07-25T15:37:17.010000"],["2024-07-25T15:37:18.010000"],["2024-07-25T15:37:19.010000"],["2024-07-25T15:37:20.010000"],["2024-07-25T15:37:21.010000"],["2024-07-25T15:37:22.010000"],["2024-07-25T15:37:23.010000"],["2024-07-25T15:37:24.010000"],["2024-07-25T15:37:25.010000"],["2024-07-25T15:37:26.010000"],["2024-07-25T15:37:27.010000"],["2024-07-25T15:37:28.010000"],["2024-07-25T15:37:29.010000"],["2024-07-25T15:37:30.010000"],["2024-07-25T15:37:31.010000"],["2024-07-25T15:37:32.010000"],["2024-07-25T15:37:33.010000"],["2024-07-25T15:37:34.010000"],["2024-07-25T15:37:35.010000"],["2024-07-25T15:37:36.010000"],["2024-07-25T15:37:37.010000"],["2024-07-25T15:37:38.010000"],["2024-07-25T15:37:39.010000"],["2024-07-25T15:37:40.010000"],["2024-07-25T15:37:41.010000"],["2024-07-25T15:37:42.010000"],["2024-07-25T15:37:43.010000"],["2024-07-25T15:37:44.010000"],["2024-07-25T15:37:45.010000"],["2024-07-25T15:37:46.010000"],["2024-07-25T15:37:47.010000"],["2024-07-25T15:37:48.010000"],["2024-07-25T15:37:49.010000"],["2024-07-25T15:37:50.010000"],["2024-07-25T15:37:51.010000"],["2024-07-25T15:37:52.010000"],["2024-07-25T15:37:53.010000"],["2024-07-25T15:37:54.010000"],["2024-07-25T15:37:55.010000"],["2024-07-25T15:37:56.010000"],["2024-07-25T15:37:57.010000"],["2024-07-25T15:37:58.010000"],["2024-07-25T15:37:59.010000"],["2024-07-25T15:38:00.010000"],["2024-07-25T15:38:01.010000"],["2024-07-25T15:38:02.010000"],["2024-07-25T15:38:03.010000"],["2024-07-25T15:38:04.010000"],["2024-07-25T15:38:05.010000"],["2024-07-25T15:38:06.010000"],["2024-07-25T15:38:07.010000"],["2024-07-25T15:38:08.010000"],["2024-07-25T15:38:09.010000"],["2024-07-25T15:38:10.010000"],["2024-07-25T15:38:11.010000"],["2024-07-25T15:38:12.010000"],["2024-07-25T15:38:13.010000"],["2024-07-25T15:38:14.010000"],["2024-07-25T15:38:15.010000"],["2024-07-25T15:38:16.010000"],["2024-07-25T15:38:17.010000"],["2024-07-25T15:38:18.010000"],["2024-07-25T15:38:19.010000"],["2024-07-25T15:38:20.010000"],["2024-07-25T15:38:21.010000"],["2024-07-25T15:38:22.010000"],["2024-07-25T15:38:23.010000"],["2024-07-25T15:38:24.010000"],["2024-07-25T15:38:25.010000"],["2024-07-25T15:38:26.010000"],["2024-07-25T15:38:27.010000"],["2024-07-25T15:38:28.010000"],["2024-07-25T15:38:29.010000"],["2024-07-25T15:38:30.010000"],["2024-07-25T15:38:31.010000"],["2024-07-25T15:38:32.010000"],["2024-07-25T15:38:33.010000"],["2024-07-25T15:38:34.010000"],["2024-07-25T15:38:35.010000"],["2024-07-25T15:38:36.010000"],["2024-07-25T15:38:37.010000"],["2024-07-25T15:38:38.010000"],["2024-07-25T15:38:39.010000"],["2024-07-25T15:38:40.010000"],["2024-07-25T15:38:41.010000"],["2024-07-25T15:38:42.010000"],["2024-07-25T15:38:43.010000"],["2024-07-25T15:38:44.010000"],["2024-07-25T15:38:45.010000"],["2024-07-25T15:38:46.010000"],["2024-07-25T15:38:47.010000"],["2024-07-25T15:38:48.010000"],["2024-07-25T15:38:49.010000"],["2024-07-25T15:38:50.010000"],["2024-07-25T15:38:51.010000"],["2024-07-25T15:38:52.010000"],["2024-07-25T15:38:53.010000"],["2024-07-25T15:38:54.010000"],["2024-07-25T15:38:55.010000"],["2024-07-25T15:38:56.010000"],["2024-07-25T15:38:57.010000"],["2024-07-25T15:38:58.010000"],["2024-07-25T15:38:59.010000"],["2024-07-25T15:39:00.010000"],["2024-07-25T15:39:01.010000"],["2024-07-25T15:39:02.010000"],["2024-07-25T15:39:03.010000"],["2024-07-25T15:39:04.010000"],["2024-07-25T15:39:05.010000"],["2024-07-25T15:39:06.010000"],["2024-07-25T15:39:07.010000"],["2024-07-25T15:39:08.010000"],["2024-07-25T15:39:09.010000"],["2024-07-25T15:39:10.010000"],["2024-07-25T15:39:11.010000"],["2024-07-25T15:39:12.010000"],["2024-07-25T15:39:13.010000"],["2024-07-25T15:39:14.010000"],["2024-07-25T15:39:15.010000"],["2024-07-25T15:39:16.010000"],["2024-07-25T15:39:17.010000"],["2024-07-25T15:39:18.010000"],["2024-07-25T15:39:19.010000"],["2024-07-25T15:39:20.010000"],["2024-07-25T15:39:21.010000"],["2024-07-25T15:39:22.010000"],["2024-07-25T15:39:23.010000"],["2024-07-25T15:39:24.010000"],["2024-07-25T15:39:25.010000"],["2024-07-25T15:39:26.010000"],["2024-07-25T15:39:27.010000"],["2024-07-25T15:39:28.010000"],["2024-07-25T15:39:29.010000"],["2024-07-25T15:39:30.010000"],["2024-07-25T15:39:31.010000"],["2024-07-25T15:39:32.010000"],["2024-07-25T15:39:33.010000"],["2024-07-25T15:39:34.010000"],["2024-07-25T15:39:35.010000"],["2024-07-25T15:39:36.010000"],["2024-07-25T15:39:37.010000"],["2024-07-25T15:39:38.010000"],["2024-07-25T15:39:39.010000"],["2024-07-25T15:39:40.010000"],["2024-07-25T15:39:41.010000"],["2024-07-25T15:39:42.010000"],["2024-07-25T15:39:43.010000"],["2024-07-25T15:39:44.010000"],["2024-07-25T15:39:45.010000"],["2024-07-25T15:39:46.010000"],["2024-07-25T15:39:47.010000"],["2024-07-25T15:39:48.010000"],["2024-07-25T15:39:49.010000"],["2024-07-25T15:39:50.010000"],["2024-07-25T15:39:51.010000"],["2024-07-25T15:39:52.010000"],["2024-07-25T15:39:53.010000"],["2024-07-25T15:39:54.010000"],["2024-07-25T15:39:55.010000"],["2024-07-25T15:39:56.010000"],["2024-07-25T15:39:57.010000"],["2024-07-25T15:39:58.010000"],["2024-07-25T15:39:59.010000"],["2024-07-25T15:40:00.010000"],["2024-07-25T15:40:01.010000"],["2024-07-25T15:40:02.010000"],["2024-07-25T15:40:03.010000"],["2024-07-25T15:40:04.010000"],["2024-07-25T15:40:05.010000"],["2024-07-25T15:40:06.010000"],["2024-07-25T15:40:07.010000"],["2024-07-25T15:40:08.010000"],["2024-07-25T15:40:09.010000"],["2024-07-25T15:40:10.010000"],["2024-07-25T15:40:11.010000"],["2024-07-25T15:40:12.010000"],["2024-07-25T15:40:13.010000"],["2024-07-25T15:40:14.010000"],["2024-07-25T15:40:15.010000"],["2024-07-25T15:40:16.010000"],["2024-07-25T15:40:17.010000"],["2024-07-25T15:40:18.010000"],["2024-07-25T15:40:19.010000"],["2024-07-25T15:40:20.010000"],["2024-07-25T15:40:21.010000"],["2024-07-25T15:40:22.010000"],["2024-07-25T15:40:23.010000"],["2024-07-25T15:40:24.010000"],["2024-07-25T15:40:25.010000"],["2024-07-25T15:40:26.010000"],["2024-07-25T15:40:27.010000"],["2024-07-25T15:40:28.010000"],["2024-07-25T15:40:29.010000"],["2024-07-25T15:40:30.010000"],["2024-07-25T15:40:31.010000"],["2024-07-25T15:40:32.010000"],["2024-07-25T15:40:33.010000"],["2024-07-25T15:40:34.010000"],["2024-07-25T15:40:35.010000"],["2024-07-25T15:40:36.010000"],["2024-07-25T15:40:37.010000"],["2024-07-25T15:40:38.010000"],["2024-07-25T15:40:39.010000"],["2024-07-25T15:40:40.010000"],["2024-07-25T15:40:41.010000"],["2024-07-25T15:40:42.010000"],["2024-07-25T15:40:43.010000"],["2024-07-25T15:40:44.010000"],["2024-07-25T15:40:45.010000"],["2024-07-25T15:40:46.010000"],["2024-07-25T15:40:47.010000"],["2024-07-25T15:40:48.010000"],["2024-07-25T15:40:49.010000"],["2024-07-25T15:40:50.010000"],["2024-07-25T15:40:51.010000"],["2024-07-25T15:40:52.010000"],["2024-07-25T15:40:53.010000"],["2024-07-25T15:40:54.010000"],["2024-07-25T15:40:55.010000"],["2024-07-25T15:40:56.010000"],["2024-07-25T15:40:57.010000"],["2024-07-25T15:40:58.010000"],["2024-07-25T15:40:59.010000"],["2024-07-25T15:41:00.010000"],["2024-07-25T15:41:01.010000"],["2024-07-25T15:41:02.010000"],["2024-07-25T15:41:03.010000"],["2024-07-25T15:41:04.010000"],["2024-07-25T15:41:05.010000"],["2024-07-25T15:41:06.010000"],["2024-07-25T15:41:07.010000"],["2024-07-25T15:41:08.010000"],["2024-07-25T15:41:09.010000"],["2024-07-25T15:41:10.010000"],["2024-07-25T15:41:11.010000"],["2024-07-25T15:41:12.010000"],["2024-07-25T15:41:13.010000"],["2024-07-25T15:41:14.010000"],["2024-07-25T15:41:15.010000"],["2024-07-25T15:41:16.010000"],["2024-07-25T15:41:17.010000"],["2024-07-25T15:41:18.010000"],["2024-07-25T15:41:19.010000"],["2024-07-25T15:41:20.010000"],["2024-07-25T15:41:21.010000"],["2024-07-25T15:41:22.010000"],["2024-07-25T15:41:23.010000"],["2024-07-25T15:41:24.010000"],["2024-07-25T15:41:25.010000"],["2024-07-25T15:41:26.010000"],["2024-07-25T15:41:27.010000"],["2024-07-25T15:41:28.010000"],["2024-07-25T15:41:29.010000"],["2024-07-25T15:41:30.010000"],["2024-07-25T15:41:31.010000"],["2024-07-25T15:41:32.010000"],["2024-07-25T15:41:33.010000"],["2024-07-25T15:41:34.010000"],["2024-07-25T15:41:35.010000"],["2024-07-25T15:41:36.010000"],["2024-07-25T15:41:37.010000"],["2024-07-25T15:41:38.010000"],["2024-07-25T15:41:39.010000"],["2024-07-25T15:41:40.010000"],["2024-07-25T15:41:41.010000"],["2024-07-25T15:41:42.010000"],["2024-07-25T15:41:43.010000"],["2024-07-25T15:41:44.010000"],["2024-07-25T15:41:45.010000"],["2024-07-25T15:41:46.010000"],["2024-07-25T15:41:47.010000"],["2024-07-25T15:41:48.010000"],["2024-07-25T15:41:49.010000"],["2024-07-25T15:41:50.010000"],["2024-07-25T15:41:51.010000"],["2024-07-25T15:41:52.010000"],["2024-07-25T15:41:53.010000"],["2024-07-25T15:41:54.010000"],["2024-07-25T15:41:55.010000"],["2024-07-25T15:41:56.010000"],["2024-07-25T15:41:57.010000"],["2024-07-25T15:41:58.010000"],["2024-07-25T15:41:59.010000"],["2024-07-25T15:42:00.010000"],["2024-07-25T15:42:01.010000"],["2024-07-25T15:42:02.010000"],["2024-07-25T15:42:03.010000"],["2024-07-25T15:42:04.010000"],["2024-07-25T15:42:05.010000"],["2024-07-25T15:42:06.010000"],["2024-07-25T15:42:07.010000"],["2024-07-25T15:42:08.010000"],["2024-07-25T15:42:09.010000"],["2024-07-25T15:42:10.010000"],["2024-07-25T15:42:11.010000"],["2024-07-25T15:42:12.010000"],["2024-07-25T15:42:13.010000"],["2024-07-25T15:42:14.010000"],["2024-07-25T15:42:15.010000"],["2024-07-25T15:42:16.010000"],["2024-07-25T15:42:17.010000"],["2024-07-25T15:42:18.010000"],["2024-07-25T15:42:19.010000"],["2024-07-25T15:42:20.010000"],["2024-07-25T15:42:21.010000"],["2024-07-25T15:42:22.010000"],["2024-07-25T15:42:23.010000"],["2024-07-25T15:42:24.010000"],["2024-07-25T15:42:25.010000"],["2024-07-25T15:42:26.010000"],["2024-07-25T15:42:27.010000"],["2024-07-25T15:42:28.010000"],["2024-07-25T15:42:29.010000"],["2024-07-25T15:42:30.010000"],["2024-07-25T15:42:31.010000"],["2024-07-25T15:42:32.010000"],["2024-07-25T15:42:33.010000"],["2024-07-25T15:42:34.010000"],["2024-07-25T15:42:35.010000"],["2024-07-25T15:42:36.010000"],["2024-07-25T15:42:37.010000"],["2024-07-25T15:42:38.010000"],["2024-07-25T15:42:39.010000"],["2024-07-25T15:42:40.010000"],["2024-07-25T15:42:41.010000"],["2024-07-25T15:42:42.010000"],["2024-07-25T15:42:43.010000"],["2024-07-25T15:42:44.010000"],["2024-07-25T15:42:45.010000"],["2024-07-25T15:42:46.010000"],["2024-07-25T15:42:47.010000"],["2024-07-25T15:42:48.010000"],["2024-07-25T15:42:49.010000"],["2024-07-25T15:42:50.010000"],["2024-07-25T15:42:51.010000"],["2024-07-25T15:42:52.010000"],["2024-07-25T15:42:53.010000"],["2024-07-25T15:42:54.010000"],["2024-07-25T15:42:55.010000"],["2024-07-25T15:42:56.010000"],["2024-07-25T15:42:57.010000"],["2024-07-25T15:42:58.010000"],["2024-07-25T15:42:59.010000"],["2024-07-25T15:43:00.010000"],["2024-07-25T15:43:01.010000"],["2024-07-25T15:43:02.010000"],["2024-07-25T15:43:03.010000"],["2024-07-25T15:43:04.010000"],["2024-07-25T15:43:05.010000"],["2024-07-25T15:43:06.010000"],["2024-07-25T15:43:07.010000"],["2024-07-25T15:43:08.010000"],["2024-07-25T15:43:09.010000"],["2024-07-25T15:43:10.010000"],["2024-07-25T15:43:11.010000"],["2024-07-25T15:43:12.010000"],["2024-07-25T15:43:13.010000"],["2024-07-25T15:43:14.010000"],["2024-07-25T15:43:15.010000"],["2024-07-25T15:43:16.010000"],["2024-07-25T15:43:17.010000"],["2024-07-25T15:43:18.010000"],["2024-07-25T15:43:19.010000"],["2024-07-25T15:43:20.010000"],["2024-07-25T15:43:21.010000"],["2024-07-25T15:43:22.010000"],["2024-07-25T15:43:23.010000"],["2024-07-25T15:43:24.010000"],["2024-07-25T15:43:25.010000"],["2024-07-25T15:43:26.010000"],["2024-07-25T15:43:27.010000"],["2024-07-25T15:43:28.010000"],["2024-07-25T15:43:29.010000"],["2024-07-25T15:43:30.010000"],["2024-07-25T15:43:31.010000"],["2024-07-25T15:43:32.010000"],["2024-07-25T15:43:33.010000"],["2024-07-25T15:43:34.010000"],["2024-07-25T15:43:35.010000"],["2024-07-25T15:43:36.010000"],["2024-07-25T15:43:37.010000"],["2024-07-25T15:43:38.010000"],["2024-07-25T15:43:39.010000"],["2024-07-25T15:43:40.010000"],["2024-07-25T15:43:41.010000"],["2024-07-25T15:43:42.010000"],["2024-07-25T15:43:43.010000"],["2024-07-25T15:43:44.010000"],["2024-07-25T15:43:45.010000"],["2024-07-25T15:43:46.010000"],["2024-07-25T15:43:47.010000"],["2024-07-25T15:43:48.010000"],["2024-07-25T15:43:49.010000"],["2024-07-25T15:43:50.010000"],["2024-07-25T15:43:51.010000"],["2024-07-25T15:43:52.010000"],["2024-07-25T15:43:53.010000"],["2024-07-25T15:43:54.010000"],["2024-07-25T15:43:55.010000"],["2024-07-25T15:43:56.010000"],["2024-07-25T15:43:57.010000"],["2024-07-25T15:43:58.010000"],["2024-07-25T15:43:59.010000"],["2024-07-25T15:44:00.010000"],["2024-07-25T15:44:01.010000"],["2024-07-25T15:44:02.010000"],["2024-07-25T15:44:03.010000"],["2024-07-25T15:44:04.010000"],["2024-07-25T15:44:05.010000"],["2024-07-25T15:44:06.010000"],["2024-07-25T15:44:07.010000"],["2024-07-25T15:44:08.010000"],["2024-07-25T15:44:09.010000"],["2024-07-25T15:44:10.010000"],["2024-07-25T15:44:11.010000"],["2024-07-25T15:44:12.010000"],["2024-07-25T15:44:13.010000"],["2024-07-25T15:44:14.010000"],["2024-07-25T15:44:15.010000"],["2024-07-25T15:44:16.010000"],["2024-07-25T15:44:17.010000"],["2024-07-25T15:44:18.010000"],["2024-07-25T15:44:19.010000"],["2024-07-25T15:44:20.010000"],["2024-07-25T15:44:21.010000"],["2024-07-25T15:44:22.010000"],["2024-07-25T15:44:23.010000"],["2024-07-25T15:44:24.010000"],["2024-07-25T15:44:25.010000"],["2024-07-25T15:44:26.010000"],["2024-07-25T15:44:27.010000"],["2024-07-25T15:44:28.010000"],["2024-07-25T15:44:29.010000"],["2024-07-25T15:44:30.010000"],["2024-07-25T15:44:31.010000"],["2024-07-25T15:44:32.010000"],["2024-07-25T15:44:33.010000"],["2024-07-25T15:44:34.010000"],["2024-07-25T15:44:35.010000"],["2024-07-25T15:44:36.010000"],["2024-07-25T15:44:37.010000"],["2024-07-25T15:44:38.010000"],["2024-07-25T15:44:39.010000"],["2024-07-25T15:44:40.010000"],["2024-07-25T15:44:41.010000"],["2024-07-25T15:44:42.010000"],["2024-07-25T15:44:43.010000"],["2024-07-25T15:44:44.010000"],["2024-07-25T15:44:45.010000"],["2024-07-25T15:44:46.010000"],["2024-07-25T15:44:47.010000"],["2024-07-25T15:44:48.010000"],["2024-07-25T15:44:49.010000"],["2024-07-25T15:44:50.010000"],["2024-07-25T15:44:51.010000"],["2024-07-25T15:44:52.010000"],["2024-07-25T15:44:53.010000"],["2024-07-25T15:44:54.010000"],["2024-07-25T15:44:55.010000"],["2024-07-25T15:44:56.010000"],["2024-07-25T15:44:57.010000"],["2024-07-25T15:44:58.010000"],["2024-07-25T15:44:59.010000"],["2024-07-25T15:45:00.010000"],["2024-07-25T15:45:01.010000"],["2024-07-25T15:45:02.010000"],["2024-07-25T15:45:03.010000"],["2024-07-25T15:45:04.010000"],["2024-07-25T15:45:05.010000"],["2024-07-25T15:45:06.010000"],["2024-07-25T15:45:07.010000"],["2024-07-25T15:45:08.010000"],["2024-07-25T15:45:09.010000"],["2024-07-25T15:45:10.010000"],["2024-07-25T15:45:11.010000"],["2024-07-25T15:45:12.010000"],["2024-07-25T15:45:13.010000"],["2024-07-25T15:45:14.010000"],["2024-07-25T15:45:15.010000"],["2024-07-25T15:45:16.010000"],["2024-07-25T15:45:17.010000"],["2024-07-25T15:45:18.010000"],["2024-07-25T15:45:19.010000"],["2024-07-25T15:45:20.010000"],["2024-07-25T15:45:21.010000"],["2024-07-25T15:45:22.010000"],["2024-07-25T15:45:23.010000"],["2024-07-25T15:45:24.010000"],["2024-07-25T15:45:25.010000"],["2024-07-25T15:45:26.010000"],["2024-07-25T15:45:27.010000"],["2024-07-25T15:45:28.010000"],["2024-07-25T15:45:29.010000"],["2024-07-25T15:45:30.010000"],["2024-07-25T15:45:31.010000"],["2024-07-25T15:45:32.010000"],["2024-07-25T15:45:33.010000"],["2024-07-25T15:45:34.010000"],["2024-07-25T15:45:35.010000"],["2024-07-25T15:45:36.010000"],["2024-07-25T15:45:37.010000"],["2024-07-25T15:45:38.010000"],["2024-07-25T15:45:39.010000"],["2024-07-25T15:45:40.010000"],["2024-07-25T15:45:41.010000"],["2024-07-25T15:45:42.010000"],["2024-07-25T15:45:43.010000"],["2024-07-25T15:45:44.010000"],["2024-07-25T15:45:45.010000"],["2024-07-25T15:45:46.010000"],["2024-07-25T15:45:47.010000"],["2024-07-25T15:45:48.010000"],["2024-07-25T15:45:49.010000"],["2024-07-25T15:45:50.010000"],["2024-07-25T15:45:51.010000"],["2024-07-25T15:45:52.010000"],["2024-07-25T15:45:53.010000"],["2024-07-25T15:45:54.010000"],["2024-07-25T15:45:55.010000"],["2024-07-25T15:45:56.010000"],["2024-07-25T15:45:57.010000"],["2024-07-25T15:45:58.010000"],["2024-07-25T15:45:59.010000"],["2024-07-25T15:46:00.010000"],["2024-07-25T15:46:01.010000"],["2024-07-25T15:46:02.010000"],["2024-07-25T15:46:03.010000"],["2024-07-25T15:46:04.010000"],["2024-07-25T15:46:05.010000"],["2024-07-25T15:46:06.010000"],["2024-07-25T15:46:07.010000"],["2024-07-25T15:46:08.010000"],["2024-07-25T15:46:09.010000"],["2024-07-25T15:46:10.010000"],["2024-07-25T15:46:11.010000"],["2024-07-25T15:46:12.010000"],["2024-07-25T15:46:13.010000"],["2024-07-25T15:46:14.010000"],["2024-07-25T15:46:15.010000"],["2024-07-25T15:46:16.010000"],["2024-07-25T15:46:17.010000"],["2024-07-25T15:46:18.010000"],["2024-07-25T15:46:19.010000"],["2024-07-25T15:46:20.010000"],["2024-07-25T15:46:21.010000"],["2024-07-25T15:46:22.010000"],["2024-07-25T15:46:23.010000"],["2024-07-25T15:46:24.010000"],["2024-07-25T15:46:25.010000"],["2024-07-25T15:46:26.010000"],["2024-07-25T15:46:27.010000"],["2024-07-25T15:46:28.010000"],["2024-07-25T15:46:29.010000"],["2024-07-25T15:46:30.010000"],["2024-07-25T15:46:31.010000"],["2024-07-25T15:46:32.010000"],["2024-07-25T15:46:33.010000"],["2024-07-25T15:46:34.010000"],["2024-07-25T15:46:35.010000"],["2024-07-25T15:46:36.010000"],["2024-07-25T15:46:37.010000"],["2024-07-25T15:46:38.010000"],["2024-07-25T15:46:39.010000"],["2024-07-25T15:46:40.010000"],["2024-07-25T15:46:41.010000"],["2024-07-25T15:46:42.010000"],["2024-07-25T15:46:43.010000"],["2024-07-25T15:46:44.010000"],["2024-07-25T15:46:45.010000"],["2024-07-25T15:46:46.010000"],["2024-07-25T15:46:47.010000"],["2024-07-25T15:46:48.010000"],["2024-07-25T15:46:49.010000"],["2024-07-25T15:46:50.010000"],["2024-07-25T15:46:51.010000"],["2024-07-25T15:46:52.010000"],["2024-07-25T15:46:53.010000"],["2024-07-25T15:46:54.010000"],["2024-07-25T15:46:55.010000"],["2024-07-25T15:46:56.010000"],["2024-07-25T15:46:57.010000"],["2024-07-25T15:46:58.010000"],["2024-07-25T15:46:59.010000"],["2024-07-25T15:47:00.010000"],["2024-07-25T15:47:01.010000"],["2024-07-25T15:47:02.010000"],["2024-07-25T15:47:03.010000"],["2024-07-25T15:47:04.010000"],["2024-07-25T15:47:05.010000"],["2024-07-25T15:47:06.010000"],["2024-07-25T15:47:07.010000"],["2024-07-25T15:47:08.010000"],["2024-07-25T15:47:09.010000"],["2024-07-25T15:47:10.010000"],["2024-07-25T15:47:11.010000"],["2024-07-25T15:47:12.010000"],["2024-07-25T15:47:13.010000"],["2024-07-25T15:47:14.010000"],["2024-07-25T15:47:15.010000"],["2024-07-25T15:47:16.010000"],["2024-07-25T15:47:17.010000"],["2024-07-25T15:47:18.010000"],["2024-07-25T15:47:19.010000"],["2024-07-25T15:47:20.010000"],["2024-07-25T15:47:21.010000"],["2024-07-25T15:47:22.010000"],["2024-07-25T15:47:23.010000"],["2024-07-25T15:47:24.010000"],["2024-07-25T15:47:25.010000"],["2024-07-25T15:47:26.010000"],["2024-07-25T15:47:27.010000"],["2024-07-25T15:47:28.010000"],["2024-07-25T15:47:29.010000"],["2024-07-25T15:47:30.010000"],["2024-07-25T15:47:31.010000"],["2024-07-25T15:47:32.010000"],["2024-07-25T15:47:33.010000"],["2024-07-25T15:47:34.010000"],["2024-07-25T15:47:35.010000"],["2024-07-25T15:47:36.010000"],["2024-07-25T15:47:37.010000"],["2024-07-25T15:47:38.010000"],["2024-07-25T15:47:39.010000"],["2024-07-25T15:47:40.010000"],["2024-07-25T15:47:41.010000"],["2024-07-25T15:47:42.010000"],["2024-07-25T15:47:43.010000"],["2024-07-25T15:47:44.010000"],["2024-07-25T15:47:45.010000"],["2024-07-25T15:47:46.010000"],["2024-07-25T15:47:47.010000"],["2024-07-25T15:47:48.010000"],["2024-07-25T15:47:49.010000"],["2024-07-25T15:47:50.010000"],["2024-07-25T15:47:51.010000"],["2024-07-25T15:47:52.010000"],["2024-07-25T15:47:53.010000"],["2024-07-25T15:47:54.010000"],["2024-07-25T15:47:55.010000"],["2024-07-25T15:47:56.010000"],["2024-07-25T15:47:57.010000"],["2024-07-25T15:47:58.010000"],["2024-07-25T15:47:59.010000"],["2024-07-25T15:48:00.010000"],["2024-07-25T15:48:01.010000"],["2024-07-25T15:48:02.010000"],["2024-07-25T15:48:03.010000"],["2024-07-25T15:48:04.010000"],["2024-07-25T15:48:05.010000"],["2024-07-25T15:48:06.010000"],["2024-07-25T15:48:07.010000"],["2024-07-25T15:48:08.010000"],["2024-07-25T15:48:09.010000"],["2024-07-25T15:48:10.010000"],["2024-07-25T15:48:11.010000"],["2024-07-25T15:48:12.010000"],["2024-07-25T15:48:13.010000"],["2024-07-25T15:48:14.010000"],["2024-07-25T15:48:15.010000"],["2024-07-25T15:48:16.010000"],["2024-07-25T15:48:17.010000"],["2024-07-25T15:48:18.010000"],["2024-07-25T15:48:19.010000"],["2024-07-25T15:48:20.010000"],["2024-07-25T15:48:21.010000"],["2024-07-25T15:48:22.010000"],["2024-07-25T15:48:23.010000"],["2024-07-25T15:48:24.010000"],["2024-07-25T15:48:25.010000"],["2024-07-25T15:48:26.010000"],["2024-07-25T15:48:27.010000"],["2024-07-25T15:48:28.010000"],["2024-07-25T15:48:29.010000"],["2024-07-25T15:48:30.010000"],["2024-07-25T15:48:31.010000"],["2024-07-25T15:48:32.010000"],["2024-07-25T15:48:33.010000"],["2024-07-25T15:48:34.010000"],["2024-07-25T15:48:35.010000"],["2024-07-25T15:48:36.010000"],["2024-07-25T15:48:37.010000"],["2024-07-25T15:48:38.010000"],["2024-07-25T15:48:39.010000"],["2024-07-25T15:48:40.010000"],["2024-07-25T15:48:41.010000"],["2024-07-25T15:48:42.010000"],["2024-07-25T15:48:43.010000"],["2024-07-25T15:48:44.010000"],["2024-07-25T15:48:45.010000"],["2024-07-25T15:48:46.010000"],["2024-07-25T15:48:47.010000"],["2024-07-25T15:48:48.010000"],["2024-07-25T15:48:49.010000"],["2024-07-25T15:48:50.010000"],["2024-07-25T15:48:51.010000"],["2024-07-25T15:48:52.010000"],["2024-07-25T15:48:53.010000"],["2024-07-25T15:48:54.010000"],["2024-07-25T15:48:55.010000"],["2024-07-25T15:48:56.010000"],["2024-07-25T15:48:57.010000"],["2024-07-25T15:48:58.010000"],["2024-07-25T15:48:59.010000"],["2024-07-25T15:49:00.010000"],["2024-07-25T15:49:01.010000"],["2024-07-25T15:49:02.010000"],["2024-07-25T15:49:03.010000"],["2024-07-25T15:49:04.010000"],["2024-07-25T15:49:05.010000"],["2024-07-25T15:49:06.010000"],["2024-07-25T15:49:07.010000"],["2024-07-25T15:49:08.010000"],["2024-07-25T15:49:09.010000"],["2024-07-25T15:49:10.010000"],["2024-07-25T15:49:11.010000"],["2024-07-25T15:49:12.010000"],["2024-07-25T15:49:13.010000"],["2024-07-25T15:49:14.010000"],["2024-07-25T15:49:15.010000"],["2024-07-25T15:49:16.010000"],["2024-07-25T15:49:17.010000"],["2024-07-25T15:49:18.010000"],["2024-07-25T15:49:19.010000"],["2024-07-25T15:49:20.010000"],["2024-07-25T15:49:21.010000"],["2024-07-25T15:49:22.010000"],["2024-07-25T15:49:23.010000"],["2024-07-25T15:49:24.010000"],["2024-07-25T15:49:25.010000"],["2024-07-25T15:49:26.010000"],["2024-07-25T15:49:27.010000"],["2024-07-25T15:49:28.010000"],["2024-07-25T15:49:29.010000"],["2024-07-25T15:49:30.010000"],["2024-07-25T15:49:31.010000"],["2024-07-25T15:49:32.010000"],["2024-07-25T15:49:33.010000"],["2024-07-25T15:49:34.010000"],["2024-07-25T15:49:35.010000"],["2024-07-25T15:49:36.010000"],["2024-07-25T15:49:37.010000"],["2024-07-25T15:49:38.010000"],["2024-07-25T15:49:39.010000"],["2024-07-25T15:49:40.010000"],["2024-07-25T15:49:41.010000"],["2024-07-25T15:49:42.010000"],["2024-07-25T15:49:43.010000"],["2024-07-25T15:49:44.010000"],["2024-07-25T15:49:45.010000"],["2024-07-25T15:49:46.010000"],["2024-07-25T15:49:47.010000"],["2024-07-25T15:49:48.010000"],["2024-07-25T15:49:49.010000"],["2024-07-25T15:49:50.010000"],["2024-07-25T15:49:51.010000"],["2024-07-25T15:49:52.010000"],["2024-07-25T15:49:53.010000"],["2024-07-25T15:49:54.010000"],["2024-07-25T15:49:55.010000"],["2024-07-25T15:49:56.010000"],["2024-07-25T15:49:57.010000"],["2024-07-25T15:49:58.010000"],["2024-07-25T15:49:59.010000"],["2024-07-25T15:50:00.010000"],["2024-07-25T15:50:01.010000"],["2024-07-25T15:50:02.010000"],["2024-07-25T15:50:03.010000"],["2024-07-25T15:50:04.010000"],["2024-07-25T15:50:05.010000"],["2024-07-25T15:50:06.010000"],["2024-07-25T15:50:07.010000"],["2024-07-25T15:50:08.010000"],["2024-07-25T15:50:09.010000"],["2024-07-25T15:50:10.010000"],["2024-07-25T15:50:11.010000"],["2024-07-25T15:50:12.010000"],["2024-07-25T15:50:13.010000"],["2024-07-25T15:50:14.010000"],["2024-07-25T15:50:15.010000"],["2024-07-25T15:50:16.010000"],["2024-07-25T15:50:17.010000"],["2024-07-25T15:50:18.010000"],["2024-07-25T15:50:19.010000"],["2024-07-25T15:50:20.010000"],["2024-07-25T15:50:21.010000"],["2024-07-25T15:50:22.010000"],["2024-07-25T15:50:23.010000"],["2024-07-25T15:50:24.010000"],["2024-07-25T15:50:25.010000"],["2024-07-25T15:50:26.010000"],["2024-07-25T15:50:27.010000"],["2024-07-25T15:50:28.010000"],["2024-07-25T15:50:29.010000"],["2024-07-25T15:50:30.010000"],["2024-07-25T15:50:31.010000"],["2024-07-25T15:50:32.010000"],["2024-07-25T15:50:33.010000"],["2024-07-25T15:50:34.010000"],["2024-07-25T15:50:35.010000"],["2024-07-25T15:50:36.010000"],["2024-07-25T15:50:37.010000"],["2024-07-25T15:50:38.010000"],["2024-07-25T15:50:39.010000"],["2024-07-25T15:50:40.010000"],["2024-07-25T15:50:41.010000"],["2024-07-25T15:50:42.010000"],["2024-07-25T15:50:43.010000"],["2024-07-25T15:50:44.010000"],["2024-07-25T15:50:45.010000"],["2024-07-25T15:50:46.010000"],["2024-07-25T15:50:47.010000"],["2024-07-25T15:50:48.010000"],["2024-07-25T15:50:49.010000"],["2024-07-25T15:50:50.010000"],["2024-07-25T15:50:51.010000"],["2024-07-25T15:50:52.010000"],["2024-07-25T15:50:53.010000"],["2024-07-25T15:50:54.010000"],["2024-07-25T15:50:55.010000"],["2024-07-25T15:50:56.010000"],["2024-07-25T15:50:57.010000"],["2024-07-25T15:50:58.010000"],["2024-07-25T15:50:59.010000"],["2024-07-25T15:51:00.010000"],["2024-07-25T15:51:01.010000"],["2024-07-25T15:51:02.010000"],["2024-07-25T15:51:03.010000"],["2024-07-25T15:51:04.010000"],["2024-07-25T15:51:05.010000"],["2024-07-25T15:51:06.010000"],["2024-07-25T15:51:07.010000"],["2024-07-25T15:51:08.010000"],["2024-07-25T15:51:09.010000"],["2024-07-25T15:51:10.010000"],["2024-07-25T15:51:11.010000"],["2024-07-25T15:51:12.010000"],["2024-07-25T15:51:13.010000"],["2024-07-25T15:51:14.010000"],["2024-07-25T15:51:15.010000"],["2024-07-25T15:51:16.010000"],["2024-07-25T15:51:17.010000"],["2024-07-25T15:51:18.010000"],["2024-07-25T15:51:19.010000"],["2024-07-25T15:51:20.010000"],["2024-07-25T15:51:21.010000"],["2024-07-25T15:51:22.010000"],["2024-07-25T15:51:23.010000"],["2024-07-25T15:51:24.010000"],["2024-07-25T15:51:25.010000"],["2024-07-25T15:51:26.010000"],["2024-07-25T15:51:27.010000"],["2024-07-25T15:51:28.010000"],["2024-07-25T15:51:29.010000"],["2024-07-25T15:51:30.010000"],["2024-07-25T15:51:31.010000"],["2024-07-25T15:51:32.010000"],["2024-07-25T15:51:33.010000"],["2024-07-25T15:51:34.010000"],["2024-07-25T15:51:35.010000"],["2024-07-25T15:51:36.010000"],["2024-07-25T15:51:37.010000"],["2024-07-25T15:51:38.010000"],["2024-07-25T15:51:39.010000"],["2024-07-25T15:51:40.010000"],["2024-07-25T15:51:41.010000"],["2024-07-25T15:51:42.010000"],["2024-07-25T15:51:43.010000"],["2024-07-25T15:51:44.010000"],["2024-07-25T15:51:45.010000"],["2024-07-25T15:51:46.010000"],["2024-07-25T15:51:47.010000"],["2024-07-25T15:51:48.010000"],["2024-07-25T15:51:49.010000"],["2024-07-25T15:51:50.010000"],["2024-07-25T15:51:51.010000"],["2024-07-25T15:51:52.010000"],["2024-07-25T15:51:53.010000"],["2024-07-25T15:51:54.010000"],["2024-07-25T15:51:55.010000"],["2024-07-25T15:51:56.010000"],["2024-07-25T15:51:57.010000"],["2024-07-25T15:51:58.010000"],["2024-07-25T15:51:59.010000"],["2024-07-25T15:52:00.010000"],["2024-07-25T15:52:01.010000"],["2024-07-25T15:52:02.010000"],["2024-07-25T15:52:03.010000"],["2024-07-25T15:52:04.010000"],["2024-07-25T15:52:05.010000"],["2024-07-25T15:52:06.010000"],["2024-07-25T15:52:07.010000"],["2024-07-25T15:52:08.010000"],["2024-07-25T15:52:09.010000"],["2024-07-25T15:52:10.010000"],["2024-07-25T15:52:11.010000"],["2024-07-25T15:52:12.010000"],["2024-07-25T15:52:13.010000"],["2024-07-25T15:52:14.010000"],["2024-07-25T15:52:15.010000"],["2024-07-25T15:52:16.010000"],["2024-07-25T15:52:17.010000"],["2024-07-25T15:52:18.010000"],["2024-07-25T15:52:19.010000"],["2024-07-25T15:52:20.010000"],["2024-07-25T15:52:21.010000"],["2024-07-25T15:52:22.010000"],["2024-07-25T15:52:23.010000"],["2024-07-25T15:52:24.010000"],["2024-07-25T15:52:25.010000"],["2024-07-25T15:52:26.010000"],["2024-07-25T15:52:27.010000"],["2024-07-25T15:52:28.010000"],["2024-07-25T15:52:29.010000"],["2024-07-25T15:52:30.010000"],["2024-07-25T15:52:31.010000"],["2024-07-25T15:52:32.010000"],["2024-07-25T15:52:33.010000"],["2024-07-25T15:52:34.010000"],["2024-07-25T15:52:35.010000"],["2024-07-25T15:52:36.010000"],["2024-07-25T15:52:37.010000"],["2024-07-25T15:52:38.010000"],["2024-07-25T15:52:39.010000"],["2024-07-25T15:52:40.010000"],["2024-07-25T15:52:41.010000"],["2024-07-25T15:52:42.010000"],["2024-07-25T15:52:43.010000"],["2024-07-25T15:52:44.010000"],["2024-07-25T15:52:45.010000"],["2024-07-25T15:52:46.010000"],["2024-07-25T15:52:47.010000"],["2024-07-25T15:52:48.010000"],["2024-07-25T15:52:49.010000"],["2024-07-25T15:52:50.010000"],["2024-07-25T15:52:51.010000"],["2024-07-25T15:52:52.010000"],["2024-07-25T15:52:53.010000"],["2024-07-25T15:52:54.010000"],["2024-07-25T15:52:55.010000"],["2024-07-25T15:52:56.010000"],["2024-07-25T15:52:57.010000"],["2024-07-25T15:52:58.010000"],["2024-07-25T15:52:59.010000"],["2024-07-25T15:53:00.010000"],["2024-07-25T15:53:01.010000"],["2024-07-25T15:53:02.010000"],["2024-07-25T15:53:03.010000"],["2024-07-25T15:53:04.010000"],["2024-07-25T15:53:05.010000"],["2024-07-25T15:53:06.010000"],["2024-07-25T15:53:07.010000"],["2024-07-25T15:53:08.010000"],["2024-07-25T15:53:09.010000"],["2024-07-25T15:53:10.010000"],["2024-07-25T15:53:11.010000"],["2024-07-25T15:53:12.010000"],["2024-07-25T15:53:13.010000"],["2024-07-25T15:53:14.010000"],["2024-07-25T15:53:15.010000"],["2024-07-25T15:53:16.010000"],["2024-07-25T15:53:17.010000"],["2024-07-25T15:53:18.010000"],["2024-07-25T15:53:19.010000"],["2024-07-25T15:53:20.010000"],["2024-07-25T15:53:21.010000"],["2024-07-25T15:53:22.010000"],["2024-07-25T15:53:23.010000"],["2024-07-25T15:53:24.010000"],["2024-07-25T15:53:25.010000"],["2024-07-25T15:53:26.010000"],["2024-07-25T15:53:27.010000"],["2024-07-25T15:53:28.010000"],["2024-07-25T15:53:29.010000"],["2024-07-25T15:53:30.010000"],["2024-07-25T15:53:31.010000"],["2024-07-25T15:53:32.010000"],["2024-07-25T15:53:33.010000"],["2024-07-25T15:53:34.010000"],["2024-07-25T15:53:35.010000"],["2024-07-25T15:53:36.010000"],["2024-07-25T15:53:37.010000"],["2024-07-25T15:53:38.010000"],["2024-07-25T15:53:39.010000"],["2024-07-25T15:53:40.010000"],["2024-07-25T15:53:41.010000"],["2024-07-25T15:53:42.010000"],["2024-07-25T15:53:43.010000"],["2024-07-25T15:53:44.010000"],["2024-07-25T15:53:45.010000"],["2024-07-25T15:53:46.010000"],["2024-07-25T15:53:47.010000"],["2024-07-25T15:53:48.010000"],["2024-07-25T15:53:49.010000"],["2024-07-25T15:53:50.010000"],["2024-07-25T15:53:51.010000"],["2024-07-25T15:53:52.010000"],["2024-07-25T15:53:53.010000"],["2024-07-25T15:53:54.010000"],["2024-07-25T15:53:55.010000"],["2024-07-25T15:53:56.010000"],["2024-07-25T15:53:57.010000"],["2024-07-25T15:53:58.010000"],["2024-07-25T15:53:59.010000"],["2024-07-25T15:54:00.010000"],["2024-07-25T15:54:01.010000"],["2024-07-25T15:54:02.010000"],["2024-07-25T15:54:03.010000"],["2024-07-25T15:54:04.010000"],["2024-07-25T15:54:05.010000"],["2024-07-25T15:54:06.010000"],["2024-07-25T15:54:07.010000"],["2024-07-25T15:54:08.010000"],["2024-07-25T15:54:09.010000"],["2024-07-25T15:54:10.010000"],["2024-07-25T15:54:11.010000"],["2024-07-25T15:54:12.010000"],["2024-07-25T15:54:13.010000"],["2024-07-25T15:54:14.010000"],["2024-07-25T15:54:15.010000"],["2024-07-25T15:54:16.010000"],["2024-07-25T15:54:17.010000"],["2024-07-25T15:54:18.010000"],["2024-07-25T15:54:19.010000"],["2024-07-25T15:54:20.010000"],["2024-07-25T15:54:21.010000"],["2024-07-25T15:54:22.010000"],["2024-07-25T15:54:23.010000"],["2024-07-25T15:54:24.010000"],["2024-07-25T15:54:25.010000"],["2024-07-25T15:54:26.010000"],["2024-07-25T15:54:27.010000"],["2024-07-25T15:54:28.010000"],["2024-07-25T15:54:29.010000"],["2024-07-25T15:54:30.010000"],["2024-07-25T15:54:31.010000"],["2024-07-25T15:54:32.010000"],["2024-07-25T15:54:33.010000"],["2024-07-25T15:54:34.010000"],["2024-07-25T15:54:35.010000"],["2024-07-25T15:54:36.010000"],["2024-07-25T15:54:37.010000"],["2024-07-25T15:54:38.010000"],["2024-07-25T15:54:39.010000"],["2024-07-25T15:54:40.010000"],["2024-07-25T15:54:41.010000"],["2024-07-25T15:54:42.010000"],["2024-07-25T15:54:43.010000"],["2024-07-25T15:54:44.010000"],["2024-07-25T15:54:45.010000"],["2024-07-25T15:54:46.010000"],["2024-07-25T15:54:47.010000"],["2024-07-25T15:54:48.010000"],["2024-07-25T15:54:49.010000"],["2024-07-25T15:54:50.010000"],["2024-07-25T15:54:51.010000"],["2024-07-25T15:54:52.010000"],["2024-07-25T15:54:53.010000"],["2024-07-25T15:54:54.010000"],["2024-07-25T15:54:55.010000"],["2024-07-25T15:54:56.010000"],["2024-07-25T15:54:57.010000"],["2024-07-25T15:54:58.010000"],["2024-07-25T15:54:59.010000"],["2024-07-25T15:55:00.010000"],["2024-07-25T15:55:01.010000"],["2024-07-25T15:55:02.010000"],["2024-07-25T15:55:03.010000"],["2024-07-25T15:55:04.010000"],["2024-07-25T15:55:05.010000"],["2024-07-25T15:55:06.010000"],["2024-07-25T15:55:07.010000"],["2024-07-25T15:55:08.010000"],["2024-07-25T15:55:09.010000"],["2024-07-25T15:55:10.010000"],["2024-07-25T15:55:11.010000"],["2024-07-25T15:55:12.010000"],["2024-07-25T15:55:13.010000"],["2024-07-25T15:55:14.010000"],["2024-07-25T15:55:15.010000"],["2024-07-25T15:55:16.010000"],["2024-07-25T15:55:17.010000"],["2024-07-25T15:55:18.010000"],["2024-07-25T15:55:19.010000"],["2024-07-25T15:55:20.010000"],["2024-07-25T15:55:21.010000"],["2024-07-25T15:55:22.010000"],["2024-07-25T15:55:23.010000"],["2024-07-25T15:55:24.010000"],["2024-07-25T15:55:25.010000"],["2024-07-25T15:55:26.010000"],["2024-07-25T15:55:27.010000"],["2024-07-25T15:55:28.010000"],["2024-07-25T15:55:29.010000"],["2024-07-25T15:55:30.010000"],["2024-07-25T15:55:31.010000"],["2024-07-25T15:55:32.010000"],["2024-07-25T15:55:33.010000"],["2024-07-25T15:55:34.010000"],["2024-07-25T15:55:35.010000"],["2024-07-25T15:55:36.010000"],["2024-07-25T15:55:37.010000"],["2024-07-25T15:55:38.010000"],["2024-07-25T15:55:39.010000"],["2024-07-25T15:55:40.010000"],["2024-07-25T15:55:41.010000"],["2024-07-25T15:55:42.010000"],["2024-07-25T15:55:43.010000"],["2024-07-25T15:55:44.010000"],["2024-07-25T15:55:45.010000"],["2024-07-25T15:55:46.010000"],["2024-07-25T15:55:47.010000"],["2024-07-25T15:55:48.010000"],["2024-07-25T15:55:49.010000"],["2024-07-25T15:55:50.010000"],["2024-07-25T15:55:51.010000"],["2024-07-25T15:55:52.010000"],["2024-07-25T15:55:53.010000"],["2024-07-25T15:55:54.010000"],["2024-07-25T15:55:55.010000"],["2024-07-25T15:55:56.010000"],["2024-07-25T15:55:57.010000"],["2024-07-25T15:55:58.010000"],["2024-07-25T15:55:59.010000"],["2024-07-25T15:56:00.010000"],["2024-07-25T15:56:01.010000"],["2024-07-25T15:56:02.010000"],["2024-07-25T15:56:03.010000"],["2024-07-25T15:56:04.010000"],["2024-07-25T15:56:05.010000"],["2024-07-25T15:56:06.010000"],["2024-07-25T15:56:07.010000"],["2024-07-25T15:56:08.010000"],["2024-07-25T15:56:09.010000"],["2024-07-25T15:56:10.010000"],["2024-07-25T15:56:11.010000"],["2024-07-25T15:56:12.010000"],["2024-07-25T15:56:13.010000"],["2024-07-25T15:56:14.010000"],["2024-07-25T15:56:15.010000"],["2024-07-25T15:56:16.010000"],["2024-07-25T15:56:17.010000"],["2024-07-25T15:56:18.010000"],["2024-07-25T15:56:19.010000"],["2024-07-25T15:56:20.010000"],["2024-07-25T15:56:21.010000"],["2024-07-25T15:56:22.010000"],["2024-07-25T15:56:23.010000"],["2024-07-25T15:56:24.010000"],["2024-07-25T15:56:25.010000"],["2024-07-25T15:56:26.010000"],["2024-07-25T15:56:27.010000"],["2024-07-25T15:56:28.010000"],["2024-07-25T15:56:29.010000"],["2024-07-25T15:56:30.010000"],["2024-07-25T15:56:31.010000"],["2024-07-25T15:56:32.010000"],["2024-07-25T15:56:33.010000"],["2024-07-25T15:56:34.010000"],["2024-07-25T15:56:35.010000"],["2024-07-25T15:56:36.010000"],["2024-07-25T15:56:37.010000"],["2024-07-25T15:56:38.010000"],["2024-07-25T15:56:39.010000"],["2024-07-25T15:56:40.010000"],["2024-07-25T15:56:41.010000"],["2024-07-25T15:56:42.010000"],["2024-07-25T15:56:43.010000"],["2024-07-25T15:56:44.010000"],["2024-07-25T15:56:45.010000"],["2024-07-25T15:56:46.010000"],["2024-07-25T15:56:47.010000"],["2024-07-25T15:56:48.010000"],["2024-07-25T15:56:49.010000"],["2024-07-25T15:56:50.010000"],["2024-07-25T15:56:51.010000"],["2024-07-25T15:56:52.010000"],["2024-07-25T15:56:53.010000"],["2024-07-25T15:56:54.010000"],["2024-07-25T15:56:55.010000"],["2024-07-25T15:56:56.010000"],["2024-07-25T15:56:57.010000"],["2024-07-25T15:56:58.010000"],["2024-07-25T15:56:59.010000"],["2024-07-25T15:57:00.010000"],["2024-07-25T15:57:01.010000"],["2024-07-25T15:57:02.010000"],["2024-07-25T15:57:03.010000"],["2024-07-25T15:57:04.010000"],["2024-07-25T15:57:05.010000"],["2024-07-25T15:57:06.010000"],["2024-07-25T15:57:07.010000"],["2024-07-25T15:57:08.010000"],["2024-07-25T15:57:09.010000"],["2024-07-25T15:57:10.010000"],["2024-07-25T15:57:11.010000"],["2024-07-25T15:57:12.010000"],["2024-07-25T15:57:13.010000"],["2024-07-25T15:57:14.010000"],["2024-07-25T15:57:15.010000"],["2024-07-25T15:57:16.010000"],["2024-07-25T15:57:17.010000"],["2024-07-25T15:57:18.010000"],["2024-07-25T15:57:19.010000"],["2024-07-25T15:57:20.010000"],["2024-07-25T15:57:21.010000"],["2024-07-25T15:57:22.010000"],["2024-07-25T15:57:23.010000"],["2024-07-25T15:57:24.010000"],["2024-07-25T15:57:25.010000"],["2024-07-25T15:57:26.010000"],["2024-07-25T15:57:27.010000"],["2024-07-25T15:57:28.010000"],["2024-07-25T15:57:29.010000"],["2024-07-25T15:57:30.010000"],["2024-07-25T15:57:31.010000"],["2024-07-25T15:57:32.010000"],["2024-07-25T15:57:33.010000"],["2024-07-25T15:57:34.010000"],["2024-07-25T15:57:35.010000"],["2024-07-25T15:57:36.010000"],["2024-07-25T15:57:37.010000"],["2024-07-25T15:57:38.010000"],["2024-07-25T15:57:39.010000"],["2024-07-25T15:57:40.010000"],["2024-07-25T15:57:41.010000"],["2024-07-25T15:57:42.010000"],["2024-07-25T15:57:43.010000"],["2024-07-25T15:57:44.010000"],["2024-07-25T15:57:45.010000"],["2024-07-25T15:57:46.010000"],["2024-07-25T15:57:47.010000"],["2024-07-25T15:57:48.010000"],["2024-07-25T15:57:49.010000"],["2024-07-25T15:57:50.010000"],["2024-07-25T15:57:51.010000"],["2024-07-25T15:57:52.010000"],["2024-07-25T15:57:53.010000"],["2024-07-25T15:57:54.010000"],["2024-07-25T15:57:55.010000"],["2024-07-25T15:57:56.010000"],["2024-07-25T15:57:57.010000"],["2024-07-25T15:57:58.010000"],["2024-07-25T15:57:59.010000"],["2024-07-25T15:58:00.010000"],["2024-07-25T15:58:01.010000"],["2024-07-25T15:58:02.010000"],["2024-07-25T15:58:03.010000"],["2024-07-25T15:58:04.010000"],["2024-07-25T15:58:05.010000"],["2024-07-25T15:58:06.010000"],["2024-07-25T15:58:07.010000"],["2024-07-25T15:58:08.010000"],["2024-07-25T15:58:09.010000"],["2024-07-25T15:58:10.010000"],["2024-07-25T15:58:11.010000"],["2024-07-25T15:58:12.010000"],["2024-07-25T15:58:13.010000"],["2024-07-25T15:58:14.010000"],["2024-07-25T15:58:15.010000"],["2024-07-25T15:58:16.010000"],["2024-07-25T15:58:17.010000"],["2024-07-25T15:58:18.010000"],["2024-07-25T15:58:19.010000"],["2024-07-25T15:58:20.010000"],["2024-07-25T15:58:21.010000"],["2024-07-25T15:58:22.010000"],["2024-07-25T15:58:23.010000"],["2024-07-25T15:58:24.010000"],["2024-07-25T15:58:25.010000"],["2024-07-25T15:58:26.010000"],["2024-07-25T15:58:27.010000"],["2024-07-25T15:58:28.010000"],["2024-07-25T15:58:29.010000"],["2024-07-25T15:58:30.010000"],["2024-07-25T15:58:31.010000"],["2024-07-25T15:58:32.010000"],["2024-07-25T15:58:33.010000"],["2024-07-25T15:58:34.010000"],["2024-07-25T15:58:35.010000"],["2024-07-25T15:58:36.010000"],["2024-07-25T15:58:37.010000"],["2024-07-25T15:58:38.010000"],["2024-07-25T15:58:39.010000"],["2024-07-25T15:58:40.010000"],["2024-07-25T15:58:41.010000"],["2024-07-25T15:58:42.010000"],["2024-07-25T15:58:43.010000"],["2024-07-25T15:58:44.010000"],["2024-07-25T15:58:45.010000"],["2024-07-25T15:58:46.010000"],["2024-07-25T15:58:47.010000"],["2024-07-25T15:58:48.010000"],["2024-07-25T15:58:49.010000"],["2024-07-25T15:58:50.010000"],["2024-07-25T15:58:51.010000"],["2024-07-25T15:58:52.010000"],["2024-07-25T15:58:53.010000"],["2024-07-25T15:58:54.010000"],["2024-07-25T15:58:55.010000"],["2024-07-25T15:58:56.010000"],["2024-07-25T15:58:57.010000"],["2024-07-25T15:58:58.010000"],["2024-07-25T15:58:59.010000"],["2024-07-25T15:59:00.010000"],["2024-07-25T15:59:01.010000"],["2024-07-25T15:59:02.010000"],["2024-07-25T15:59:03.010000"],["2024-07-25T15:59:04.010000"],["2024-07-25T15:59:05.010000"],["2024-07-25T15:59:06.010000"],["2024-07-25T15:59:07.010000"],["2024-07-25T15:59:08.010000"],["2024-07-25T15:59:09.010000"],["2024-07-25T15:59:10.010000"],["2024-07-25T15:59:11.010000"],["2024-07-25T15:59:12.010000"],["2024-07-25T15:59:13.010000"],["2024-07-25T15:59:14.010000"],["2024-07-25T15:59:15.010000"],["2024-07-25T15:59:16.010000"],["2024-07-25T15:59:17.010000"],["2024-07-25T15:59:18.010000"],["2024-07-25T15:59:19.010000"],["2024-07-25T15:59:20.010000"],["2024-07-25T15:59:21.010000"],["2024-07-25T15:59:22.010000"],["2024-07-25T15:59:23.010000"],["2024-07-25T15:59:24.010000"],["2024-07-25T15:59:25.010000"],["2024-07-25T15:59:26.010000"],["2024-07-25T15:59:27.010000"],["2024-07-25T15:59:28.010000"],["2024-07-25T15:59:29.010000"],["2024-07-25T15:59:30.010000"],["2024-07-25T15:59:31.010000"],["2024-07-25T15:59:32.010000"],["2024-07-25T15:59:33.010000"],["2024-07-25T15:59:34.010000"],["2024-07-25T15:59:35.010000"],["2024-07-25T15:59:36.010000"],["2024-07-25T15:59:37.010000"],["2024-07-25T15:59:38.010000"],["2024-07-25T15:59:39.010000"],["2024-07-25T15:59:40.010000"],["2024-07-25T15:59:41.010000"],["2024-07-25T15:59:42.010000"],["2024-07-25T15:59:43.010000"],["2024-07-25T15:59:44.010000"],["2024-07-25T15:59:45.010000"],["2024-07-25T15:59:46.010000"],["2024-07-25T15:59:47.010000"],["2024-07-25T15:59:48.010000"],["2024-07-25T15:59:49.010000"],["2024-07-25T15:59:50.010000"],["2024-07-25T15:59:51.010000"],["2024-07-25T15:59:52.010000"],["2024-07-25T15:59:53.010000"],["2024-07-25T15:59:54.010000"],["2024-07-25T15:59:55.010000"],["2024-07-25T15:59:56.010000"],["2024-07-25T15:59:57.010000"],["2024-07-25T15:59:58.010000"],["2024-07-25T15:59:59.010000"],["2024-07-25T16:00:00.010000"],["2024-07-25T16:00:01.010000"],["2024-07-25T16:00:02.010000"],["2024-07-25T16:00:03.010000"],["2024-07-25T16:00:04.010000"],["2024-07-25T16:00:05.010000"],["2024-07-25T16:00:06.010000"],["2024-07-25T16:00:07.010000"],["2024-07-25T16:00:08.010000"],["2024-07-25T16:00:09.010000"],["2024-07-25T16:00:10.010000"],["2024-07-25T16:00:11.010000"],["2024-07-25T16:00:12.010000"],["2024-07-25T16:00:13.010000"],["2024-07-25T16:00:14.010000"],["2024-07-25T16:00:15.010000"],["2024-07-25T16:00:16.010000"],["2024-07-25T16:00:17.010000"],["2024-07-25T16:00:18.010000"],["2024-07-25T16:00:19.010000"],["2024-07-25T16:00:20.010000"],["2024-07-25T16:00:21.010000"],["2024-07-25T16:00:22.010000"],["2024-07-25T16:00:23.010000"],["2024-07-25T16:00:24.010000"],["2024-07-25T16:00:25.010000"],["2024-07-25T16:00:26.010000"],["2024-07-25T16:00:27.010000"],["2024-07-25T16:00:28.010000"],["2024-07-25T16:00:29.010000"],["2024-07-25T16:00:30.010000"],["2024-07-25T16:00:31.010000"],["2024-07-25T16:00:32.010000"],["2024-07-25T16:00:33.010000"],["2024-07-25T16:00:34.010000"],["2024-07-25T16:00:35.010000"],["2024-07-25T16:00:36.010000"],["2024-07-25T16:00:37.010000"],["2024-07-25T16:00:38.010000"],["2024-07-25T16:00:39.010000"],["2024-07-25T16:00:40.010000"],["2024-07-25T16:00:41.010000"],["2024-07-25T16:00:42.010000"],["2024-07-25T16:00:43.010000"],["2024-07-25T16:00:44.010000"],["2024-07-25T16:00:45.010000"],["2024-07-25T16:00:46.010000"],["2024-07-25T16:00:47.010000"],["2024-07-25T16:00:48.010000"],["2024-07-25T16:00:49.010000"],["2024-07-25T16:00:50.010000"],["2024-07-25T16:00:51.010000"],["2024-07-25T16:00:52.010000"],["2024-07-25T16:00:53.010000"],["2024-07-25T16:00:54.010000"],["2024-07-25T16:00:55.010000"],["2024-07-25T16:00:56.010000"],["2024-07-25T16:00:57.010000"],["2024-07-25T16:00:58.010000"],["2024-07-25T16:00:59.010000"],["2024-07-25T16:01:00.010000"],["2024-07-25T16:01:01.010000"],["2024-07-25T16:01:02.010000"],["2024-07-25T16:01:03.010000"],["2024-07-25T16:01:04.010000"],["2024-07-25T16:01:05.010000"],["2024-07-25T16:01:06.010000"],["2024-07-25T16:01:07.010000"],["2024-07-25T16:01:08.010000"],["2024-07-25T16:01:09.010000"],["2024-07-25T16:01:10.010000"],["2024-07-25T16:01:11.010000"],["2024-07-25T16:01:12.010000"],["2024-07-25T16:01:13.010000"],["2024-07-25T16:01:14.010000"],["2024-07-25T16:01:15.010000"],["2024-07-25T16:01:16.010000"],["2024-07-25T16:01:17.010000"],["2024-07-25T16:01:18.010000"],["2024-07-25T16:01:19.010000"],["2024-07-25T16:01:20.010000"],["2024-07-25T16:01:21.010000"],["2024-07-25T16:01:22.010000"],["2024-07-25T16:01:23.010000"],["2024-07-25T16:01:24.010000"],["2024-07-25T16:01:25.010000"],["2024-07-25T16:01:26.010000"],["2024-07-25T16:01:27.010000"],["2024-07-25T16:01:28.010000"],["2024-07-25T16:01:29.010000"],["2024-07-25T16:01:30.010000"],["2024-07-25T16:01:31.010000"],["2024-07-25T16:01:32.010000"],["2024-07-25T16:01:33.010000"],["2024-07-25T16:01:34.010000"],["2024-07-25T16:01:35.010000"],["2024-07-25T16:01:36.010000"],["2024-07-25T16:01:37.010000"],["2024-07-25T16:01:38.010000"],["2024-07-25T16:01:39.010000"],["2024-07-25T16:01:40.010000"],["2024-07-25T16:01:41.010000"],["2024-07-25T16:01:42.010000"],["2024-07-25T16:01:43.010000"],["2024-07-25T16:01:44.010000"],["2024-07-25T16:01:45.010000"],["2024-07-25T16:01:46.010000"],["2024-07-25T16:01:47.010000"],["2024-07-25T16:01:48.010000"],["2024-07-25T16:01:49.010000"],["2024-07-25T16:01:50.010000"],["2024-07-25T16:01:51.010000"],["2024-07-25T16:01:52.010000"],["2024-07-25T16:01:53.010000"],["2024-07-25T16:01:54.010000"],["2024-07-25T16:01:55.010000"],["2024-07-25T16:01:56.010000"],["2024-07-25T16:01:57.010000"],["2024-07-25T16:01:58.010000"],["2024-07-25T16:01:59.010000"],["2024-07-25T16:02:00.010000"],["2024-07-25T16:02:01.010000"],["2024-07-25T16:02:02.010000"],["2024-07-25T16:02:03.010000"],["2024-07-25T16:02:04.010000"],["2024-07-25T16:02:05.010000"],["2024-07-25T16:02:06.010000"],["2024-07-25T16:02:07.010000"],["2024-07-25T16:02:08.010000"],["2024-07-25T16:02:09.010000"],["2024-07-25T16:02:10.010000"],["2024-07-25T16:02:11.010000"],["2024-07-25T16:02:12.010000"],["2024-07-25T16:02:13.010000"],["2024-07-25T16:02:14.010000"],["2024-07-25T16:02:15.010000"],["2024-07-25T16:02:16.010000"],["2024-07-25T16:02:17.010000"],["2024-07-25T16:02:18.010000"],["2024-07-25T16:02:19.010000"],["2024-07-25T16:02:20.010000"],["2024-07-25T16:02:21.010000"],["2024-07-25T16:02:22.010000"],["2024-07-25T16:02:23.010000"],["2024-07-25T16:02:24.010000"],["2024-07-25T16:02:25.010000"],["2024-07-25T16:02:26.010000"],["2024-07-25T16:02:27.010000"],["2024-07-25T16:02:28.010000"],["2024-07-25T16:02:29.010000"],["2024-07-25T16:02:30.010000"],["2024-07-25T16:02:31.010000"],["2024-07-25T16:02:32.010000"],["2024-07-25T16:02:33.010000"],["2024-07-25T16:02:34.010000"],["2024-07-25T16:02:35.010000"],["2024-07-25T16:02:36.010000"],["2024-07-25T16:02:37.010000"],["2024-07-25T16:02:38.010000"],["2024-07-25T16:02:39.010000"],["2024-07-25T16:02:40.010000"],["2024-07-25T16:02:41.010000"],["2024-07-25T16:02:42.010000"],["2024-07-25T16:02:43.010000"],["2024-07-25T16:02:44.010000"],["2024-07-25T16:02:45.010000"],["2024-07-25T16:02:46.010000"],["2024-07-25T16:02:47.010000"],["2024-07-25T16:02:48.010000"],["2024-07-25T16:02:49.010000"],["2024-07-25T16:02:50.010000"],["2024-07-25T16:02:51.010000"],["2024-07-25T16:02:52.010000"],["2024-07-25T16:02:53.010000"],["2024-07-25T16:02:54.010000"],["2024-07-25T16:02:55.010000"],["2024-07-25T16:02:56.010000"],["2024-07-25T16:02:57.010000"],["2024-07-25T16:02:58.010000"],["2024-07-25T16:02:59.010000"],["2024-07-25T16:03:00.010000"],["2024-07-25T16:03:01.010000"],["2024-07-25T16:03:02.010000"],["2024-07-25T16:03:03.010000"],["2024-07-25T16:03:04.010000"],["2024-07-25T16:03:05.010000"],["2024-07-25T16:03:06.010000"],["2024-07-25T16:03:07.010000"],["2024-07-25T16:03:08.010000"],["2024-07-25T16:03:09.010000"],["2024-07-25T16:03:10.010000"],["2024-07-25T16:03:11.010000"],["2024-07-25T16:03:12.010000"],["2024-07-25T16:03:13.010000"],["2024-07-25T16:03:14.010000"],["2024-07-25T16:03:15.010000"],["2024-07-25T16:03:16.010000"],["2024-07-25T16:03:17.010000"],["2024-07-25T16:03:18.010000"],["2024-07-25T16:03:19.010000"],["2024-07-25T16:03:20.010000"],["2024-07-25T16:03:21.010000"],["2024-07-25T16:03:22.010000"],["2024-07-25T16:03:23.010000"],["2024-07-25T16:03:24.010000"],["2024-07-25T16:03:25.010000"],["2024-07-25T16:03:26.010000"],["2024-07-25T16:03:27.010000"],["2024-07-25T16:03:28.010000"],["2024-07-25T16:03:29.010000"],["2024-07-25T16:03:30.010000"],["2024-07-25T16:03:31.010000"],["2024-07-25T16:03:32.010000"],["2024-07-25T16:03:33.010000"],["2024-07-25T16:03:34.010000"],["2024-07-25T16:03:35.010000"],["2024-07-25T16:03:36.010000"],["2024-07-25T16:03:37.010000"],["2024-07-25T16:03:38.010000"],["2024-07-25T16:03:39.010000"],["2024-07-25T16:03:40.010000"],["2024-07-25T16:03:41.010000"],["2024-07-25T16:03:42.010000"],["2024-07-25T16:03:43.010000"],["2024-07-25T16:03:44.010000"],["2024-07-25T16:03:45.010000"],["2024-07-25T16:03:46.010000"],["2024-07-25T16:03:47.010000"],["2024-07-25T16:03:48.010000"],["2024-07-25T16:03:49.010000"],["2024-07-25T16:03:50.010000"],["2024-07-25T16:03:51.010000"],["2024-07-25T16:03:52.010000"],["2024-07-25T16:03:53.010000"],["2024-07-25T16:03:54.010000"],["2024-07-25T16:03:55.010000"],["2024-07-25T16:03:56.010000"],["2024-07-25T16:03:57.010000"],["2024-07-25T16:03:58.010000"],["2024-07-25T16:03:59.010000"],["2024-07-25T16:04:00.010000"],["2024-07-25T16:04:01.010000"],["2024-07-25T16:04:02.010000"],["2024-07-25T16:04:03.010000"],["2024-07-25T16:04:04.010000"],["2024-07-25T16:04:05.010000"],["2024-07-25T16:04:06.010000"],["2024-07-25T16:04:07.010000"],["2024-07-25T16:04:08.010000"],["2024-07-25T16:04:09.010000"],["2024-07-25T16:04:10.010000"],["2024-07-25T16:04:11.010000"],["2024-07-25T16:04:12.010000"],["2024-07-25T16:04:13.010000"],["2024-07-25T16:04:14.010000"],["2024-07-25T16:04:15.010000"],["2024-07-25T16:04:16.010000"],["2024-07-25T16:04:17.010000"],["2024-07-25T16:04:18.010000"],["2024-07-25T16:04:19.010000"],["2024-07-25T16:04:20.010000"],["2024-07-25T16:04:21.010000"],["2024-07-25T16:04:22.010000"],["2024-07-25T16:04:23.010000"],["2024-07-25T16:04:24.010000"],["2024-07-25T16:04:25.010000"],["2024-07-25T16:04:26.010000"],["2024-07-25T16:04:27.010000"],["2024-07-25T16:04:28.010000"],["2024-07-25T16:04:29.010000"],["2024-07-25T16:04:30.010000"],["2024-07-25T16:04:31.010000"],["2024-07-25T16:04:32.010000"],["2024-07-25T16:04:33.010000"],["2024-07-25T16:04:34.010000"],["2024-07-25T16:04:35.010000"],["2024-07-25T16:04:36.010000"],["2024-07-25T16:04:37.010000"],["2024-07-25T16:04:38.010000"],["2024-07-25T16:04:39.010000"],["2024-07-25T16:04:40.010000"],["2024-07-25T16:04:41.010000"],["2024-07-25T16:04:42.010000"],["2024-07-25T16:04:43.010000"],["2024-07-25T16:04:44.010000"],["2024-07-25T16:04:45.010000"],["2024-07-25T16:04:46.010000"],["2024-07-25T16:04:47.010000"],["2024-07-25T16:04:48.010000"],["2024-07-25T16:04:49.010000"],["2024-07-25T16:04:50.010000"],["2024-07-25T16:04:51.010000"],["2024-07-25T16:04:52.010000"],["2024-07-25T16:04:53.010000"],["2024-07-25T16:04:54.010000"],["2024-07-25T16:04:55.010000"],["2024-07-25T16:04:56.010000"],["2024-07-25T16:04:57.010000"],["2024-07-25T16:04:58.010000"],["2024-07-25T16:04:59.010000"],["2024-07-25T16:05:00.010000"],["2024-07-25T16:05:01.010000"],["2024-07-25T16:05:02.010000"],["2024-07-25T16:05:03.010000"],["2024-07-25T16:05:04.010000"],["2024-07-25T16:05:05.010000"],["2024-07-25T16:05:06.010000"],["2024-07-25T16:05:07.010000"],["2024-07-25T16:05:08.010000"],["2024-07-25T16:05:09.010000"],["2024-07-25T16:05:10.010000"],["2024-07-25T16:05:11.010000"],["2024-07-25T16:05:12.010000"],["2024-07-25T16:05:13.010000"],["2024-07-25T16:05:14.010000"],["2024-07-25T16:05:15.010000"],["2024-07-25T16:05:16.010000"],["2024-07-25T16:05:17.010000"],["2024-07-25T16:05:18.010000"],["2024-07-25T16:05:19.010000"],["2024-07-25T16:05:20.010000"],["2024-07-25T16:05:21.010000"],["2024-07-25T16:05:22.010000"],["2024-07-25T16:05:23.010000"],["2024-07-25T16:05:24.010000"],["2024-07-25T16:05:25.010000"],["2024-07-25T16:05:26.010000"],["2024-07-25T16:05:27.010000"],["2024-07-25T16:05:28.010000"],["2024-07-25T16:05:29.010000"],["2024-07-25T16:05:30.010000"],["2024-07-25T16:05:31.010000"],["2024-07-25T16:05:32.010000"],["2024-07-25T16:05:33.010000"],["2024-07-25T16:05:34.010000"],["2024-07-25T16:05:35.010000"],["2024-07-25T16:05:36.010000"],["2024-07-25T16:05:37.010000"],["2024-07-25T16:05:38.010000"],["2024-07-25T16:05:39.010000"],["2024-07-25T16:05:40.010000"],["2024-07-25T16:05:41.010000"],["2024-07-25T16:05:42.010000"],["2024-07-25T16:05:43.010000"],["2024-07-25T16:05:44.010000"],["2024-07-25T16:05:45.010000"],["2024-07-25T16:05:46.010000"],["2024-07-25T16:05:47.010000"],["2024-07-25T16:05:48.010000"],["2024-07-25T16:05:49.010000"],["2024-07-25T16:05:50.010000"],["2024-07-25T16:05:51.010000"],["2024-07-25T16:05:52.010000"],["2024-07-25T16:05:53.010000"],["2024-07-25T16:05:54.010000"],["2024-07-25T16:05:55.010000"],["2024-07-25T16:05:56.010000"],["2024-07-25T16:05:57.010000"],["2024-07-25T16:05:58.010000"],["2024-07-25T16:05:59.010000"],["2024-07-25T16:06:00.010000"],["2024-07-25T16:06:01.010000"],["2024-07-25T16:06:02.010000"],["2024-07-25T16:06:03.010000"],["2024-07-25T16:06:04.010000"],["2024-07-25T16:06:05.010000"],["2024-07-25T16:06:06.010000"],["2024-07-25T16:06:07.010000"],["2024-07-25T16:06:08.010000"],["2024-07-25T16:06:09.010000"],["2024-07-25T16:06:10.010000"],["2024-07-25T16:06:11.010000"],["2024-07-25T16:06:12.010000"],["2024-07-25T16:06:13.010000"],["2024-07-25T16:06:14.010000"],["2024-07-25T16:06:15.010000"],["2024-07-25T16:06:16.010000"],["2024-07-25T16:06:17.010000"],["2024-07-25T16:06:18.010000"],["2024-07-25T16:06:19.010000"],["2024-07-25T16:06:20.010000"],["2024-07-25T16:06:21.010000"],["2024-07-25T16:06:22.010000"],["2024-07-25T16:06:23.010000"],["2024-07-25T16:06:24.010000"],["2024-07-25T16:06:25.010000"],["2024-07-25T16:06:26.010000"],["2024-07-25T16:06:27.010000"],["2024-07-25T16:06:28.010000"],["2024-07-25T16:06:29.010000"],["2024-07-25T16:06:30.010000"],["2024-07-25T16:06:31.010000"],["2024-07-25T16:06:32.010000"],["2024-07-25T16:06:33.010000"],["2024-07-25T16:06:34.010000"],["2024-07-25T16:06:35.010000"],["2024-07-25T16:06:36.010000"],["2024-07-25T16:06:37.010000"],["2024-07-25T16:06:38.010000"],["2024-07-25T16:06:39.010000"],["2024-07-25T16:06:40.010000"],["2024-07-25T16:06:41.010000"],["2024-07-25T16:06:42.010000"],["2024-07-25T16:06:43.010000"],["2024-07-25T16:06:44.010000"],["2024-07-25T16:06:45.010000"],["2024-07-25T16:06:46.010000"],["2024-07-25T16:06:47.010000"],["2024-07-25T16:06:48.010000"],["2024-07-25T16:06:49.010000"],["2024-07-25T16:06:50.010000"],["2024-07-25T16:06:51.010000"],["2024-07-25T16:06:52.010000"],["2024-07-25T16:06:53.010000"],["2024-07-25T16:06:54.010000"],["2024-07-25T16:06:55.010000"],["2024-07-25T16:06:56.010000"],["2024-07-25T16:06:57.010000"],["2024-07-25T16:06:58.010000"],["2024-07-25T16:06:59.010000"],["2024-07-25T16:07:00.010000"],["2024-07-25T16:07:01.010000"],["2024-07-25T16:07:02.010000"],["2024-07-25T16:07:03.010000"],["2024-07-25T16:07:04.010000"],["2024-07-25T16:07:05.010000"],["2024-07-25T16:07:06.010000"],["2024-07-25T16:07:07.010000"],["2024-07-25T16:07:08.010000"],["2024-07-25T16:07:09.010000"],["2024-07-25T16:07:10.010000"],["2024-07-25T16:07:11.010000"],["2024-07-25T16:07:12.010000"],["2024-07-25T16:07:13.010000"],["2024-07-25T16:07:14.010000"],["2024-07-25T16:07:15.010000"],["2024-07-25T16:07:16.010000"],["2024-07-25T16:07:17.010000"],["2024-07-25T16:07:18.010000"],["2024-07-25T16:07:19.010000"],["2024-07-25T16:07:20.010000"],["2024-07-25T16:07:21.010000"],["2024-07-25T16:07:22.010000"],["2024-07-25T16:07:23.010000"],["2024-07-25T16:07:24.010000"],["2024-07-25T16:07:25.010000"],["2024-07-25T16:07:26.010000"],["2024-07-25T16:07:27.010000"],["2024-07-25T16:07:28.010000"],["2024-07-25T16:07:29.010000"],["2024-07-25T16:07:30.010000"],["2024-07-25T16:07:31.010000"],["2024-07-25T16:07:32.010000"],["2024-07-25T16:07:33.010000"],["2024-07-25T16:07:34.010000"],["2024-07-25T16:07:35.010000"],["2024-07-25T16:07:36.010000"],["2024-07-25T16:07:37.010000"],["2024-07-25T16:07:38.010000"],["2024-07-25T16:07:39.010000"],["2024-07-25T16:07:40.010000"],["2024-07-25T16:07:41.010000"],["2024-07-25T16:07:42.010000"],["2024-07-25T16:07:43.010000"],["2024-07-25T16:07:44.010000"],["2024-07-25T16:07:45.010000"],["2024-07-25T16:07:46.010000"],["2024-07-25T16:07:47.010000"],["2024-07-25T16:07:48.010000"],["2024-07-25T16:07:49.010000"],["2024-07-25T16:07:50.010000"],["2024-07-25T16:07:51.010000"],["2024-07-25T16:07:52.010000"],["2024-07-25T16:07:53.010000"],["2024-07-25T16:07:54.010000"],["2024-07-25T16:07:55.010000"],["2024-07-25T16:07:56.010000"],["2024-07-25T16:07:57.010000"],["2024-07-25T16:07:58.010000"],["2024-07-25T16:07:59.010000"],["2024-07-25T16:08:00.010000"],["2024-07-25T16:08:01.010000"],["2024-07-25T16:08:02.010000"],["2024-07-25T16:08:03.010000"],["2024-07-25T16:08:04.010000"],["2024-07-25T16:08:05.010000"],["2024-07-25T16:08:06.010000"],["2024-07-25T16:08:07.010000"],["2024-07-25T16:08:08.010000"],["2024-07-25T16:08:09.010000"],["2024-07-25T16:08:10.010000"],["2024-07-25T16:08:11.010000"],["2024-07-25T16:08:12.010000"],["2024-07-25T16:08:13.010000"],["2024-07-25T16:08:14.010000"],["2024-07-25T16:08:15.010000"],["2024-07-25T16:08:16.010000"],["2024-07-25T16:08:17.010000"],["2024-07-25T16:08:18.010000"],["2024-07-25T16:08:19.010000"],["2024-07-25T16:08:20.010000"],["2024-07-25T16:08:21.010000"],["2024-07-25T16:08:22.010000"],["2024-07-25T16:08:23.010000"],["2024-07-25T16:08:24.010000"],["2024-07-25T16:08:25.010000"],["2024-07-25T16:08:26.010000"],["2024-07-25T16:08:27.010000"],["2024-07-25T16:08:28.010000"],["2024-07-25T16:08:29.010000"],["2024-07-25T16:08:30.010000"],["2024-07-25T16:08:31.010000"],["2024-07-25T16:08:32.010000"],["2024-07-25T16:08:33.010000"],["2024-07-25T16:08:34.010000"],["2024-07-25T16:08:35.010000"],["2024-07-25T16:08:36.010000"],["2024-07-25T16:08:37.010000"],["2024-07-25T16:08:38.010000"],["2024-07-25T16:08:39.010000"],["2024-07-25T16:08:40.010000"],["2024-07-25T16:08:41.010000"],["2024-07-25T16:08:42.010000"],["2024-07-25T16:08:43.010000"],["2024-07-25T16:08:44.010000"],["2024-07-25T16:08:45.010000"],["2024-07-25T16:08:46.010000"],["2024-07-25T16:08:47.010000"],["2024-07-25T16:08:48.010000"],["2024-07-25T16:08:49.010000"],["2024-07-25T16:08:50.010000"],["2024-07-25T16:08:51.010000"],["2024-07-25T16:08:52.010000"],["2024-07-25T16:08:53.010000"],["2024-07-25T16:08:54.010000"],["2024-07-25T16:08:55.010000"],["2024-07-25T16:08:56.010000"],["2024-07-25T16:08:57.010000"],["2024-07-25T16:08:58.010000"],["2024-07-25T16:08:59.010000"],["2024-07-25T16:09:00.010000"],["2024-07-25T16:09:01.010000"],["2024-07-25T16:09:02.010000"],["2024-07-25T16:09:03.010000"],["2024-07-25T16:09:04.010000"],["2024-07-25T16:09:05.010000"],["2024-07-25T16:09:06.010000"],["2024-07-25T16:09:07.010000"],["2024-07-25T16:09:08.010000"],["2024-07-25T16:09:09.010000"],["2024-07-25T16:09:10.010000"],["2024-07-25T16:09:11.010000"],["2024-07-25T16:09:12.010000"],["2024-07-25T16:09:13.010000"],["2024-07-25T16:09:14.010000"],["2024-07-25T16:09:15.010000"],["2024-07-25T16:09:16.010000"],["2024-07-25T16:09:17.010000"],["2024-07-25T16:09:18.010000"],["2024-07-25T16:09:19.010000"],["2024-07-25T16:09:20.010000"],["2024-07-25T16:09:21.010000"],["2024-07-25T16:09:22.010000"],["2024-07-25T16:09:23.010000"],["2024-07-25T16:09:24.010000"],["2024-07-25T16:09:25.010000"],["2024-07-25T16:09:26.010000"],["2024-07-25T16:09:27.010000"],["2024-07-25T16:09:28.010000"],["2024-07-25T16:09:29.010000"],["2024-07-25T16:09:30.010000"],["2024-07-25T16:09:31.010000"],["2024-07-25T16:09:32.010000"],["2024-07-25T16:09:33.010000"],["2024-07-25T16:09:34.010000"],["2024-07-25T16:09:35.010000"],["2024-07-25T16:09:36.010000"],["2024-07-25T16:09:37.010000"],["2024-07-25T16:09:38.010000"],["2024-07-25T16:09:39.010000"],["2024-07-25T16:09:40.010000"],["2024-07-25T16:09:41.010000"],["2024-07-25T16:09:42.010000"],["2024-07-25T16:09:43.010000"],["2024-07-25T16:09:44.010000"],["2024-07-25T16:09:45.010000"],["2024-07-25T16:09:46.010000"],["2024-07-25T16:09:47.010000"],["2024-07-25T16:09:48.010000"],["2024-07-25T16:09:49.010000"],["2024-07-25T16:09:50.010000"],["2024-07-25T16:09:51.010000"],["2024-07-25T16:09:52.010000"],["2024-07-25T16:09:53.010000"],["2024-07-25T16:09:54.010000"],["2024-07-25T16:09:55.010000"],["2024-07-25T16:09:56.010000"],["2024-07-25T16:09:57.010000"],["2024-07-25T16:09:58.010000"],["2024-07-25T16:09:59.010000"],["2024-07-25T16:10:00.010000"],["2024-07-25T16:10:01.010000"],["2024-07-25T16:10:02.010000"],["2024-07-25T16:10:03.010000"],["2024-07-25T16:10:04.010000"],["2024-07-25T16:10:05.010000"],["2024-07-25T16:10:06.010000"],["2024-07-25T16:10:07.010000"],["2024-07-25T16:10:08.010000"],["2024-07-25T16:10:09.010000"],["2024-07-25T16:10:10.010000"],["2024-07-25T16:10:11.010000"],["2024-07-25T16:10:12.010000"],["2024-07-25T16:10:13.010000"],["2024-07-25T16:10:14.010000"],["2024-07-25T16:10:15.010000"],["2024-07-25T16:10:16.010000"],["2024-07-25T16:10:17.010000"],["2024-07-25T16:10:18.010000"],["2024-07-25T16:10:19.010000"],["2024-07-25T16:10:20.010000"],["2024-07-25T16:10:21.010000"],["2024-07-25T16:10:22.010000"],["2024-07-25T16:10:23.010000"],["2024-07-25T16:10:24.010000"],["2024-07-25T16:10:25.010000"],["2024-07-25T16:10:26.010000"],["2024-07-25T16:10:27.010000"],["2024-07-25T16:10:28.010000"],["2024-07-25T16:10:29.010000"],["2024-07-25T16:10:30.010000"],["2024-07-25T16:10:31.010000"],["2024-07-25T16:10:32.010000"],["2024-07-25T16:10:33.010000"],["2024-07-25T16:10:34.010000"],["2024-07-25T16:10:35.010000"],["2024-07-25T16:10:36.010000"],["2024-07-25T16:10:37.010000"],["2024-07-25T16:10:38.010000"],["2024-07-25T16:10:39.010000"],["2024-07-25T16:10:40.010000"],["2024-07-25T16:10:41.010000"],["2024-07-25T16:10:42.010000"],["2024-07-25T16:10:43.010000"],["2024-07-25T16:10:44.010000"],["2024-07-25T16:10:45.010000"],["2024-07-25T16:10:46.010000"],["2024-07-25T16:10:47.010000"],["2024-07-25T16:10:48.010000"],["2024-07-25T16:10:49.010000"],["2024-07-25T16:10:50.010000"],["2024-07-25T16:10:51.010000"],["2024-07-25T16:10:52.010000"],["2024-07-25T16:10:53.010000"],["2024-07-25T16:10:54.010000"],["2024-07-25T16:10:55.010000"],["2024-07-25T16:10:56.010000"],["2024-07-25T16:10:57.010000"],["2024-07-25T16:10:58.010000"],["2024-07-25T16:10:59.010000"],["2024-07-25T16:11:00.010000"],["2024-07-25T16:11:01.010000"],["2024-07-25T16:11:02.010000"],["2024-07-25T16:11:03.010000"],["2024-07-25T16:11:04.010000"],["2024-07-25T16:11:05.010000"],["2024-07-25T16:11:06.010000"],["2024-07-25T16:11:07.010000"],["2024-07-25T16:11:08.010000"],["2024-07-25T16:11:09.010000"],["2024-07-25T16:11:10.010000"],["2024-07-25T16:11:11.010000"],["2024-07-25T16:11:12.010000"],["2024-07-25T16:11:13.010000"],["2024-07-25T16:11:14.010000"],["2024-07-25T16:11:15.010000"],["2024-07-25T16:11:16.010000"],["2024-07-25T16:11:17.010000"],["2024-07-25T16:11:18.010000"],["2024-07-25T16:11:19.010000"],["2024-07-25T16:11:20.010000"],["2024-07-25T16:11:21.010000"],["2024-07-25T16:11:22.010000"],["2024-07-25T16:11:23.010000"],["2024-07-25T16:11:24.010000"],["2024-07-25T16:11:25.010000"],["2024-07-25T16:11:26.010000"],["2024-07-25T16:11:27.010000"],["2024-07-25T16:11:28.010000"],["2024-07-25T16:11:29.010000"],["2024-07-25T16:11:30.010000"],["2024-07-25T16:11:31.010000"],["2024-07-25T16:11:32.010000"],["2024-07-25T16:11:33.010000"],["2024-07-25T16:11:34.010000"],["2024-07-25T16:11:35.010000"],["2024-07-25T16:11:36.010000"],["2024-07-25T16:11:37.010000"],["2024-07-25T16:11:38.010000"],["2024-07-25T16:11:39.010000"],["2024-07-25T16:11:40.010000"],["2024-07-25T16:11:41.010000"],["2024-07-25T16:11:42.010000"],["2024-07-25T16:11:43.010000"],["2024-07-25T16:11:44.010000"],["2024-07-25T16:11:45.010000"],["2024-07-25T16:11:46.010000"],["2024-07-25T16:11:47.010000"],["2024-07-25T16:11:48.010000"],["2024-07-25T16:11:49.010000"],["2024-07-25T16:11:50.010000"],["2024-07-25T16:11:51.010000"],["2024-07-25T16:11:52.010000"],["2024-07-25T16:11:53.010000"],["2024-07-25T16:11:54.010000"],["2024-07-25T16:11:55.010000"],["2024-07-25T16:11:56.010000"],["2024-07-25T16:11:57.010000"],["2024-07-25T16:11:58.010000"],["2024-07-25T16:11:59.010000"],["2024-07-25T16:12:00.010000"],["2024-07-25T16:12:01.010000"],["2024-07-25T16:12:02.010000"],["2024-07-25T16:12:03.010000"],["2024-07-25T16:12:04.010000"],["2024-07-25T16:12:05.010000"],["2024-07-25T16:12:06.010000"],["2024-07-25T16:12:07.010000"],["2024-07-25T16:12:08.010000"],["2024-07-25T16:12:09.010000"],["2024-07-25T16:12:10.010000"],["2024-07-25T16:12:11.010000"],["2024-07-25T16:12:12.010000"],["2024-07-25T16:12:13.010000"],["2024-07-25T16:12:14.010000"],["2024-07-25T16:12:15.010000"],["2024-07-25T16:12:16.010000"],["2024-07-25T16:12:17.010000"],["2024-07-25T16:12:18.010000"],["2024-07-25T16:12:19.010000"],["2024-07-25T16:12:20.010000"],["2024-07-25T16:12:21.010000"],["2024-07-25T16:12:22.010000"],["2024-07-25T16:12:23.010000"],["2024-07-25T16:12:24.010000"],["2024-07-25T16:12:25.010000"],["2024-07-25T16:12:26.010000"],["2024-07-25T16:12:27.010000"],["2024-07-25T16:12:28.010000"],["2024-07-25T16:12:29.010000"],["2024-07-25T16:12:30.010000"],["2024-07-25T16:12:31.010000"],["2024-07-25T16:12:32.010000"],["2024-07-25T16:12:33.010000"],["2024-07-25T16:12:34.010000"],["2024-07-25T16:12:35.010000"],["2024-07-25T16:12:36.010000"],["2024-07-25T16:12:37.010000"],["2024-07-25T16:12:38.010000"],["2024-07-25T16:12:39.010000"],["2024-07-25T16:12:40.010000"],["2024-07-25T16:12:41.010000"],["2024-07-25T16:12:42.010000"],["2024-07-25T16:12:43.010000"],["2024-07-25T16:12:44.010000"],["2024-07-25T16:12:45.010000"],["2024-07-25T16:12:46.010000"],["2024-07-25T16:12:47.010000"],["2024-07-25T16:12:48.010000"],["2024-07-25T16:12:49.010000"],["2024-07-25T16:12:50.010000"],["2024-07-25T16:12:51.010000"],["2024-07-25T16:12:52.010000"],["2024-07-25T16:12:53.010000"],["2024-07-25T16:12:54.010000"],["2024-07-25T16:12:55.010000"],["2024-07-25T16:12:56.010000"],["2024-07-25T16:12:57.010000"],["2024-07-25T16:12:58.010000"],["2024-07-25T16:12:59.010000"],["2024-07-25T16:13:00.010000"],["2024-07-25T16:13:01.010000"],["2024-07-25T16:13:02.010000"],["2024-07-25T16:13:03.010000"],["2024-07-25T16:13:04.010000"],["2024-07-25T16:13:05.010000"],["2024-07-25T16:13:06.010000"],["2024-07-25T16:13:07.010000"],["2024-07-25T16:13:08.010000"],["2024-07-25T16:13:09.010000"],["2024-07-25T16:13:10.010000"],["2024-07-25T16:13:11.010000"],["2024-07-25T16:13:12.010000"],["2024-07-25T16:13:13.010000"],["2024-07-25T16:13:14.010000"],["2024-07-25T16:13:15.010000"],["2024-07-25T16:13:16.010000"],["2024-07-25T16:13:17.010000"],["2024-07-25T16:13:18.010000"],["2024-07-25T16:13:19.010000"],["2024-07-25T16:13:20.010000"],["2024-07-25T16:13:21.010000"],["2024-07-25T16:13:22.010000"],["2024-07-25T16:13:23.010000"],["2024-07-25T16:13:24.010000"],["2024-07-25T16:13:25.010000"],["2024-07-25T16:13:26.010000"],["2024-07-25T16:13:27.010000"],["2024-07-25T16:13:28.010000"],["2024-07-25T16:13:29.010000"],["2024-07-25T16:13:30.010000"],["2024-07-25T16:13:31.010000"],["2024-07-25T16:13:32.010000"],["2024-07-25T16:13:33.010000"],["2024-07-25T16:13:34.010000"],["2024-07-25T16:13:35.010000"],["2024-07-25T16:13:36.010000"],["2024-07-25T16:13:37.010000"],["2024-07-25T16:13:38.010000"],["2024-07-25T16:13:39.010000"],["2024-07-25T16:13:40.010000"],["2024-07-25T16:13:41.010000"],["2024-07-25T16:13:42.010000"],["2024-07-25T16:13:43.010000"],["2024-07-25T16:13:44.010000"],["2024-07-25T16:13:45.010000"],["2024-07-25T16:13:46.010000"],["2024-07-25T16:13:47.010000"],["2024-07-25T16:13:48.010000"],["2024-07-25T16:13:49.010000"],["2024-07-25T16:13:50.010000"],["2024-07-25T16:13:51.010000"],["2024-07-25T16:13:52.010000"],["2024-07-25T16:13:53.010000"],["2024-07-25T16:13:54.010000"],["2024-07-25T16:13:55.010000"],["2024-07-25T16:13:56.010000"],["2024-07-25T16:13:57.010000"],["2024-07-25T16:13:58.010000"],["2024-07-25T16:13:59.010000"],["2024-07-25T16:14:00.010000"],["2024-07-25T16:14:01.010000"],["2024-07-25T16:14:02.010000"],["2024-07-25T16:14:03.010000"],["2024-07-25T16:14:04.010000"],["2024-07-25T16:14:05.010000"],["2024-07-25T16:14:06.010000"],["2024-07-25T16:14:07.010000"],["2024-07-25T16:14:08.010000"],["2024-07-25T16:14:09.010000"],["2024-07-25T16:14:10.010000"],["2024-07-25T16:14:11.010000"],["2024-07-25T16:14:12.010000"],["2024-07-25T16:14:13.010000"],["2024-07-25T16:14:14.010000"],["2024-07-25T16:14:15.010000"],["2024-07-25T16:14:16.010000"],["2024-07-25T16:14:17.010000"],["2024-07-25T16:14:18.010000"],["2024-07-25T16:14:19.010000"],["2024-07-25T16:14:20.010000"],["2024-07-25T16:14:21.010000"],["2024-07-25T16:14:22.010000"],["2024-07-25T16:14:23.010000"],["2024-07-25T16:14:24.010000"],["2024-07-25T16:14:25.010000"],["2024-07-25T16:14:26.010000"],["2024-07-25T16:14:27.010000"],["2024-07-25T16:14:28.010000"],["2024-07-25T16:14:29.010000"],["2024-07-25T16:14:30.010000"],["2024-07-25T16:14:31.010000"],["2024-07-25T16:14:32.010000"],["2024-07-25T16:14:33.010000"],["2024-07-25T16:14:34.010000"],["2024-07-25T16:14:35.010000"],["2024-07-25T16:14:36.010000"],["2024-07-25T16:14:37.010000"],["2024-07-25T16:14:38.010000"],["2024-07-25T16:14:39.010000"],["2024-07-25T16:14:40.010000"],["2024-07-25T16:14:41.010000"],["2024-07-25T16:14:42.010000"],["2024-07-25T16:14:43.010000"],["2024-07-25T16:14:44.010000"],["2024-07-25T16:14:45.010000"],["2024-07-25T16:14:46.010000"],["2024-07-25T16:14:47.010000"],["2024-07-25T16:14:48.010000"],["2024-07-25T16:14:49.010000"],["2024-07-25T16:14:50.010000"],["2024-07-25T16:14:51.010000"],["2024-07-25T16:14:52.010000"],["2024-07-25T16:14:53.010000"],["2024-07-25T16:14:54.010000"],["2024-07-25T16:14:55.010000"],["2024-07-25T16:14:56.010000"],["2024-07-25T16:14:57.010000"],["2024-07-25T16:14:58.010000"],["2024-07-25T16:14:59.010000"],["2024-07-25T16:15:00.010000"],["2024-07-25T16:15:01.010000"],["2024-07-25T16:15:02.010000"],["2024-07-25T16:15:03.010000"],["2024-07-25T16:15:04.010000"],["2024-07-25T16:15:05.010000"],["2024-07-25T16:15:06.010000"],["2024-07-25T16:15:07.010000"],["2024-07-25T16:15:08.010000"],["2024-07-25T16:15:09.010000"],["2024-07-25T16:15:10.010000"],["2024-07-25T16:15:11.010000"],["2024-07-25T16:15:12.010000"],["2024-07-25T16:15:13.010000"],["2024-07-25T16:15:14.010000"],["2024-07-25T16:15:15.010000"],["2024-07-25T16:15:16.010000"],["2024-07-25T16:15:17.010000"],["2024-07-25T16:15:18.010000"],["2024-07-25T16:15:19.010000"],["2024-07-25T16:15:20.010000"],["2024-07-25T16:15:21.010000"],["2024-07-25T16:15:22.010000"],["2024-07-25T16:15:23.010000"],["2024-07-25T16:15:24.010000"],["2024-07-25T16:15:25.010000"],["2024-07-25T16:15:26.010000"],["2024-07-25T16:15:27.010000"],["2024-07-25T16:15:28.010000"],["2024-07-25T16:15:29.010000"],["2024-07-25T16:15:30.010000"],["2024-07-25T16:15:31.010000"],["2024-07-25T16:15:32.010000"],["2024-07-25T16:15:33.010000"],["2024-07-25T16:15:34.010000"],["2024-07-25T16:15:35.010000"],["2024-07-25T16:15:36.010000"],["2024-07-25T16:15:37.010000"],["2024-07-25T16:15:38.010000"],["2024-07-25T16:15:39.010000"],["2024-07-25T16:15:40.010000"],["2024-07-25T16:15:41.010000"],["2024-07-25T16:15:42.010000"],["2024-07-25T16:15:43.010000"],["2024-07-25T16:15:44.010000"],["2024-07-25T16:15:45.010000"],["2024-07-25T16:15:46.010000"],["2024-07-25T16:15:47.010000"],["2024-07-25T16:15:48.010000"],["2024-07-25T16:15:49.010000"],["2024-07-25T16:15:50.010000"],["2024-07-25T16:15:51.010000"],["2024-07-25T16:15:52.010000"],["2024-07-25T16:15:53.010000"],["2024-07-25T16:15:54.010000"],["2024-07-25T16:15:55.010000"],["2024-07-25T16:15:56.010000"],["2024-07-25T16:15:57.010000"],["2024-07-25T16:15:58.010000"],["2024-07-25T16:15:59.010000"],["2024-07-25T16:16:00.010000"],["2024-07-25T16:16:01.010000"],["2024-07-25T16:16:02.010000"],["2024-07-25T16:16:03.010000"],["2024-07-25T16:16:04.010000"],["2024-07-25T16:16:05.010000"],["2024-07-25T16:16:06.010000"],["2024-07-25T16:16:07.010000"],["2024-07-25T16:16:08.010000"],["2024-07-25T16:16:09.010000"],["2024-07-25T16:16:10.010000"],["2024-07-25T16:16:11.010000"],["2024-07-25T16:16:12.010000"],["2024-07-25T16:16:13.010000"],["2024-07-25T16:16:14.010000"],["2024-07-25T16:16:15.010000"],["2024-07-25T16:16:16.010000"],["2024-07-25T16:16:17.010000"],["2024-07-25T16:16:18.010000"],["2024-07-25T16:16:19.010000"],["2024-07-25T16:16:20.010000"],["2024-07-25T16:16:21.010000"],["2024-07-25T16:16:22.010000"],["2024-07-25T16:16:23.010000"],["2024-07-25T16:16:24.010000"],["2024-07-25T16:16:25.010000"],["2024-07-25T16:16:26.010000"],["2024-07-25T16:16:27.010000"],["2024-07-25T16:16:28.010000"],["2024-07-25T16:16:29.010000"],["2024-07-25T16:16:30.010000"],["2024-07-25T16:16:31.010000"],["2024-07-25T16:16:32.010000"],["2024-07-25T16:16:33.010000"],["2024-07-25T16:16:34.010000"],["2024-07-25T16:16:35.010000"],["2024-07-25T16:16:36.010000"],["2024-07-25T16:16:37.010000"],["2024-07-25T16:16:38.010000"],["2024-07-25T16:16:39.010000"],["2024-07-25T16:16:40.010000"],["2024-07-25T16:16:41.010000"],["2024-07-25T16:16:42.010000"],["2024-07-25T16:16:43.010000"],["2024-07-25T16:16:44.010000"],["2024-07-25T16:16:45.010000"],["2024-07-25T16:16:46.010000"],["2024-07-25T16:16:47.010000"],["2024-07-25T16:16:48.010000"],["2024-07-25T16:16:49.010000"],["2024-07-25T16:16:50.010000"],["2024-07-25T16:16:51.010000"],["2024-07-25T16:16:52.010000"],["2024-07-25T16:16:53.010000"],["2024-07-25T16:16:54.010000"],["2024-07-25T16:16:55.010000"],["2024-07-25T16:16:56.010000"],["2024-07-25T16:16:57.010000"],["2024-07-25T16:16:58.010000"],["2024-07-25T16:16:59.010000"],["2024-07-25T16:17:00.010000"],["2024-07-25T16:17:01.010000"],["2024-07-25T16:17:02.010000"],["2024-07-25T16:17:03.010000"],["2024-07-25T16:17:04.010000"],["2024-07-25T16:17:05.010000"],["2024-07-25T16:17:06.010000"],["2024-07-25T16:17:07.010000"],["2024-07-25T16:17:08.010000"],["2024-07-25T16:17:09.010000"],["2024-07-25T16:17:10.010000"],["2024-07-25T16:17:11.010000"],["2024-07-25T16:17:12.010000"],["2024-07-25T16:17:13.010000"],["2024-07-25T16:17:14.010000"],["2024-07-25T16:17:15.010000"],["2024-07-25T16:17:16.010000"],["2024-07-25T16:17:17.010000"],["2024-07-25T16:17:18.010000"],["2024-07-25T16:17:19.010000"],["2024-07-25T16:17:20.010000"],["2024-07-25T16:17:21.010000"],["2024-07-25T16:17:22.010000"],["2024-07-25T16:17:23.010000"],["2024-07-25T16:17:24.010000"],["2024-07-25T16:17:25.010000"],["2024-07-25T16:17:26.010000"],["2024-07-25T16:17:27.010000"],["2024-07-25T16:17:28.010000"],["2024-07-25T16:17:29.010000"],["2024-07-25T16:17:30.010000"],["2024-07-25T16:17:31.010000"],["2024-07-25T16:17:32.010000"],["2024-07-25T16:17:33.010000"],["2024-07-25T16:17:34.010000"],["2024-07-25T16:17:35.010000"],["2024-07-25T16:17:36.010000"],["2024-07-25T16:17:37.010000"],["2024-07-25T16:17:38.010000"],["2024-07-25T16:17:39.010000"],["2024-07-25T16:17:40.010000"],["2024-07-25T16:17:41.010000"],["2024-07-25T16:17:42.010000"],["2024-07-25T16:17:43.010000"],["2024-07-25T16:17:44.010000"],["2024-07-25T16:17:45.010000"],["2024-07-25T16:17:46.010000"],["2024-07-25T16:17:47.010000"],["2024-07-25T16:17:48.010000"],["2024-07-25T16:17:49.010000"],["2024-07-25T16:17:50.010000"],["2024-07-25T16:17:51.010000"],["2024-07-25T16:17:52.010000"],["2024-07-25T16:17:53.010000"],["2024-07-25T16:17:54.010000"],["2024-07-25T16:17:55.010000"],["2024-07-25T16:17:56.010000"],["2024-07-25T16:17:57.010000"],["2024-07-25T16:17:58.010000"],["2024-07-25T16:17:59.010000"],["2024-07-25T16:18:00.010000"],["2024-07-25T16:18:01.010000"],["2024-07-25T16:18:02.010000"],["2024-07-25T16:18:03.010000"],["2024-07-25T16:18:04.010000"],["2024-07-25T16:18:05.010000"],["2024-07-25T16:18:06.010000"],["2024-07-25T16:18:07.010000"],["2024-07-25T16:18:08.010000"],["2024-07-25T16:18:09.010000"],["2024-07-25T16:18:10.010000"],["2024-07-25T16:18:11.010000"],["2024-07-25T16:18:12.010000"],["2024-07-25T16:18:13.010000"],["2024-07-25T16:18:14.010000"],["2024-07-25T16:18:15.010000"],["2024-07-25T16:18:16.010000"],["2024-07-25T16:18:17.010000"],["2024-07-25T16:18:18.010000"],["2024-07-25T16:18:19.010000"],["2024-07-25T16:18:20.010000"],["2024-07-25T16:18:21.010000"],["2024-07-25T16:18:22.010000"],["2024-07-25T16:18:23.010000"],["2024-07-25T16:18:24.010000"],["2024-07-25T16:18:25.010000"],["2024-07-25T16:18:26.010000"],["2024-07-25T16:18:27.010000"],["2024-07-25T16:18:28.010000"],["2024-07-25T16:18:29.010000"],["2024-07-25T16:18:30.010000"],["2024-07-25T16:18:31.010000"],["2024-07-25T16:18:32.010000"],["2024-07-25T16:18:33.010000"],["2024-07-25T16:18:34.010000"],["2024-07-25T16:18:35.010000"],["2024-07-25T16:18:36.010000"],["2024-07-25T16:18:37.010000"],["2024-07-25T16:18:38.010000"],["2024-07-25T16:18:39.010000"],["2024-07-25T16:18:40.010000"],["2024-07-25T16:18:41.010000"],["2024-07-25T16:18:42.010000"],["2024-07-25T16:18:43.010000"],["2024-07-25T16:18:44.010000"],["2024-07-25T16:18:45.010000"],["2024-07-25T16:18:46.010000"],["2024-07-25T16:18:47.010000"],["2024-07-25T16:18:48.010000"],["2024-07-25T16:18:49.010000"],["2024-07-25T16:18:50.010000"],["2024-07-25T16:18:51.010000"],["2024-07-25T16:18:52.010000"],["2024-07-25T16:18:53.010000"],["2024-07-25T16:18:54.010000"],["2024-07-25T16:18:55.010000"],["2024-07-25T16:18:56.010000"],["2024-07-25T16:18:57.010000"],["2024-07-25T16:18:58.010000"],["2024-07-25T16:18:59.010000"],["2024-07-25T16:19:00.010000"],["2024-07-25T16:19:01.010000"],["2024-07-25T16:19:02.010000"],["2024-07-25T16:19:03.010000"],["2024-07-25T16:19:04.010000"],["2024-07-25T16:19:05.010000"],["2024-07-25T16:19:06.010000"],["2024-07-25T16:19:07.010000"],["2024-07-25T16:19:08.010000"],["2024-07-25T16:19:09.010000"],["2024-07-25T16:19:10.010000"],["2024-07-25T16:19:11.010000"],["2024-07-25T16:19:12.010000"],["2024-07-25T16:19:13.010000"],["2024-07-25T16:19:14.010000"],["2024-07-25T16:19:15.010000"],["2024-07-25T16:19:16.010000"],["2024-07-25T16:19:17.010000"],["2024-07-25T16:19:18.010000"],["2024-07-25T16:19:19.010000"],["2024-07-25T16:19:20.010000"],["2024-07-25T16:19:21.010000"],["2024-07-25T16:19:22.010000"],["2024-07-25T16:19:23.010000"],["2024-07-25T16:19:24.010000"],["2024-07-25T16:19:25.010000"],["2024-07-25T16:19:26.010000"],["2024-07-25T16:19:27.010000"],["2024-07-25T16:19:28.010000"],["2024-07-25T16:19:29.010000"],["2024-07-25T16:19:30.010000"],["2024-07-25T16:19:31.010000"],["2024-07-25T16:19:32.010000"],["2024-07-25T16:19:33.010000"],["2024-07-25T16:19:34.010000"],["2024-07-25T16:19:35.010000"],["2024-07-25T16:19:36.010000"],["2024-07-25T16:19:37.010000"],["2024-07-25T16:19:38.010000"],["2024-07-25T16:19:39.010000"],["2024-07-25T16:19:40.010000"],["2024-07-25T16:19:41.010000"],["2024-07-25T16:19:42.010000"],["2024-07-25T16:19:43.010000"],["2024-07-25T16:19:44.010000"],["2024-07-25T16:19:45.010000"],["2024-07-25T16:19:46.010000"],["2024-07-25T16:19:47.010000"],["2024-07-25T16:19:48.010000"],["2024-07-25T16:19:49.010000"],["2024-07-25T16:19:50.010000"],["2024-07-25T16:19:51.010000"],["2024-07-25T16:19:52.010000"],["2024-07-25T16:19:53.010000"],["2024-07-25T16:19:54.010000"],["2024-07-25T16:19:55.010000"],["2024-07-25T16:19:56.010000"],["2024-07-25T16:19:57.010000"],["2024-07-25T16:19:58.010000"],["2024-07-25T16:19:59.010000"],["2024-07-25T16:20:00.010000"],["2024-07-25T16:20:01.010000"],["2024-07-25T16:20:02.010000"],["2024-07-25T16:20:03.010000"],["2024-07-25T16:20:04.010000"],["2024-07-25T16:20:05.010000"],["2024-07-25T16:20:06.010000"],["2024-07-25T16:20:07.010000"],["2024-07-25T16:20:08.010000"],["2024-07-25T16:20:09.010000"],["2024-07-25T16:20:10.010000"],["2024-07-25T16:20:11.010000"],["2024-07-25T16:20:12.010000"],["2024-07-25T16:20:13.010000"],["2024-07-25T16:20:14.010000"],["2024-07-25T16:20:15.010000"],["2024-07-25T16:20:16.010000"],["2024-07-25T16:20:17.010000"],["2024-07-25T16:20:18.010000"],["2024-07-25T16:20:19.010000"],["2024-07-25T16:20:20.010000"],["2024-07-25T16:20:21.010000"],["2024-07-25T16:20:22.010000"],["2024-07-25T16:20:23.010000"],["2024-07-25T16:20:24.010000"],["2024-07-25T16:20:25.010000"],["2024-07-25T16:20:26.010000"],["2024-07-25T16:20:27.010000"],["2024-07-25T16:20:28.010000"],["2024-07-25T16:20:29.010000"],["2024-07-25T16:20:30.010000"],["2024-07-25T16:20:31.010000"],["2024-07-25T16:20:32.010000"],["2024-07-25T16:20:33.010000"],["2024-07-25T16:20:34.010000"],["2024-07-25T16:20:35.010000"],["2024-07-25T16:20:36.010000"],["2024-07-25T16:20:37.010000"],["2024-07-25T16:20:38.010000"],["2024-07-25T16:20:39.010000"],["2024-07-25T16:20:40.010000"],["2024-07-25T16:20:41.010000"],["2024-07-25T16:20:42.010000"],["2024-07-25T16:20:43.010000"],["2024-07-25T16:20:44.010000"],["2024-07-25T16:20:45.010000"],["2024-07-25T16:20:46.010000"],["2024-07-25T16:20:47.010000"],["2024-07-25T16:20:48.010000"],["2024-07-25T16:20:49.010000"],["2024-07-25T16:20:50.010000"],["2024-07-25T16:20:51.010000"],["2024-07-25T16:20:52.010000"],["2024-07-25T16:20:53.010000"],["2024-07-25T16:20:54.010000"],["2024-07-25T16:20:55.010000"],["2024-07-25T16:20:56.010000"],["2024-07-25T16:20:57.010000"],["2024-07-25T16:20:58.010000"],["2024-07-25T16:20:59.010000"],["2024-07-25T16:21:00.010000"],["2024-07-25T16:21:01.010000"],["2024-07-25T16:21:02.010000"],["2024-07-25T16:21:03.010000"],["2024-07-25T16:21:04.010000"],["2024-07-25T16:21:05.010000"],["2024-07-25T16:21:06.010000"],["2024-07-25T16:21:07.010000"],["2024-07-25T16:21:08.010000"],["2024-07-25T16:21:09.010000"],["2024-07-25T16:21:10.010000"],["2024-07-25T16:21:11.010000"],["2024-07-25T16:21:12.010000"],["2024-07-25T16:21:13.010000"],["2024-07-25T16:21:14.010000"],["2024-07-25T16:21:15.010000"],["2024-07-25T16:21:16.010000"],["2024-07-25T16:21:17.010000"],["2024-07-25T16:21:18.010000"],["2024-07-25T16:21:19.010000"],["2024-07-25T16:21:20.010000"],["2024-07-25T16:21:21.010000"],["2024-07-25T16:21:22.010000"],["2024-07-25T16:21:23.010000"],["2024-07-25T16:21:24.010000"],["2024-07-25T16:21:25.010000"],["2024-07-25T16:21:26.010000"],["2024-07-25T16:21:27.010000"],["2024-07-25T16:21:28.010000"],["2024-07-25T16:21:29.010000"],["2024-07-25T16:21:30.010000"],["2024-07-25T16:21:31.010000"],["2024-07-25T16:21:32.010000"],["2024-07-25T16:21:33.010000"],["2024-07-25T16:21:34.010000"],["2024-07-25T16:21:35.010000"],["2024-07-25T16:21:36.010000"],["2024-07-25T16:21:37.010000"],["2024-07-25T16:21:38.010000"],["2024-07-25T16:21:39.010000"],["2024-07-25T16:21:40.010000"],["2024-07-25T16:21:41.010000"],["2024-07-25T16:21:42.010000"],["2024-07-25T16:21:43.010000"],["2024-07-25T16:21:44.010000"],["2024-07-25T16:21:45.010000"],["2024-07-25T16:21:46.010000"],["2024-07-25T16:21:47.010000"],["2024-07-25T16:21:48.010000"],["2024-07-25T16:21:49.010000"],["2024-07-25T16:21:50.010000"],["2024-07-25T16:21:51.010000"],["2024-07-25T16:21:52.010000"],["2024-07-25T16:21:53.010000"],["2024-07-25T16:21:54.010000"],["2024-07-25T16:21:55.010000"],["2024-07-25T16:21:56.010000"],["2024-07-25T16:21:57.010000"],["2024-07-25T16:21:58.010000"],["2024-07-25T16:21:59.010000"],["2024-07-25T16:22:00.010000"],["2024-07-25T16:22:01.010000"],["2024-07-25T16:22:02.010000"],["2024-07-25T16:22:03.010000"],["2024-07-25T16:22:04.010000"],["2024-07-25T16:22:05.010000"],["2024-07-25T16:22:06.010000"],["2024-07-25T16:22:07.010000"],["2024-07-25T16:22:08.010000"],["2024-07-25T16:22:09.010000"],["2024-07-25T16:22:10.010000"],["2024-07-25T16:22:11.010000"],["2024-07-25T16:22:12.010000"],["2024-07-25T16:22:13.010000"],["2024-07-25T16:22:14.010000"],["2024-07-25T16:22:15.010000"],["2024-07-25T16:22:16.010000"],["2024-07-25T16:22:17.010000"],["2024-07-25T16:22:18.010000"],["2024-07-25T16:22:19.010000"],["2024-07-25T16:22:20.010000"],["2024-07-25T16:22:21.010000"],["2024-07-25T16:22:22.010000"],["2024-07-25T16:22:23.010000"],["2024-07-25T16:22:24.010000"],["2024-07-25T16:22:25.010000"],["2024-07-25T16:22:26.010000"],["2024-07-25T16:22:27.010000"],["2024-07-25T16:22:28.010000"],["2024-07-25T16:22:29.010000"],["2024-07-25T16:22:30.010000"],["2024-07-25T16:22:31.010000"],["2024-07-25T16:22:32.010000"],["2024-07-25T16:22:33.010000"],["2024-07-25T16:22:34.010000"],["2024-07-25T16:22:35.010000"],["2024-07-25T16:22:36.010000"],["2024-07-25T16:22:37.010000"],["2024-07-25T16:22:38.010000"],["2024-07-25T16:22:39.010000"],["2024-07-25T16:22:40.010000"],["2024-07-25T16:22:41.010000"],["2024-07-25T16:22:42.010000"],["2024-07-25T16:22:43.010000"],["2024-07-25T16:22:44.010000"],["2024-07-25T16:22:45.010000"],["2024-07-25T16:22:46.010000"],["2024-07-25T16:22:47.010000"],["2024-07-25T16:22:48.010000"],["2024-07-25T16:22:49.010000"],["2024-07-25T16:22:50.010000"],["2024-07-25T16:22:51.010000"],["2024-07-25T16:22:52.010000"],["2024-07-25T16:22:53.010000"],["2024-07-25T16:22:54.010000"],["2024-07-25T16:22:55.010000"],["2024-07-25T16:22:56.010000"],["2024-07-25T16:22:57.010000"],["2024-07-25T16:22:58.010000"],["2024-07-25T16:22:59.010000"],["2024-07-25T16:23:00.010000"],["2024-07-25T16:23:01.010000"],["2024-07-25T16:23:02.010000"],["2024-07-25T16:23:03.010000"],["2024-07-25T16:23:04.010000"],["2024-07-25T16:23:05.010000"],["2024-07-25T16:23:06.010000"],["2024-07-25T16:23:07.010000"],["2024-07-25T16:23:08.010000"],["2024-07-25T16:23:09.010000"],["2024-07-25T16:23:10.010000"],["2024-07-25T16:23:11.010000"],["2024-07-25T16:23:12.010000"],["2024-07-25T16:23:13.010000"],["2024-07-25T16:23:14.010000"],["2024-07-25T16:23:15.010000"],["2024-07-25T16:23:16.010000"],["2024-07-25T16:23:17.010000"],["2024-07-25T16:23:18.010000"],["2024-07-25T16:23:19.010000"],["2024-07-25T16:23:20.010000"],["2024-07-25T16:23:21.010000"],["2024-07-25T16:23:22.010000"],["2024-07-25T16:23:23.010000"],["2024-07-25T16:23:24.010000"],["2024-07-25T16:23:25.010000"],["2024-07-25T16:23:26.010000"],["2024-07-25T16:23:27.010000"],["2024-07-25T16:23:28.010000"],["2024-07-25T16:23:29.010000"],["2024-07-25T16:23:30.010000"],["2024-07-25T16:23:31.010000"],["2024-07-25T16:23:32.010000"],["2024-07-25T16:23:33.010000"],["2024-07-25T16:23:34.010000"],["2024-07-25T16:23:35.010000"],["2024-07-25T16:23:36.010000"],["2024-07-25T16:23:37.010000"],["2024-07-25T16:23:38.010000"],["2024-07-25T16:23:39.010000"],["2024-07-25T16:23:40.010000"],["2024-07-25T16:23:41.010000"],["2024-07-25T16:23:42.010000"],["2024-07-25T16:23:43.010000"],["2024-07-25T16:23:44.010000"],["2024-07-25T16:23:45.010000"],["2024-07-25T16:23:46.010000"],["2024-07-25T16:23:47.010000"],["2024-07-25T16:23:48.010000"],["2024-07-25T16:23:49.010000"],["2024-07-25T16:23:50.010000"],["2024-07-25T16:23:51.010000"],["2024-07-25T16:23:52.010000"],["2024-07-25T16:23:53.010000"],["2024-07-25T16:23:54.010000"],["2024-07-25T16:23:55.010000"],["2024-07-25T16:23:56.010000"],["2024-07-25T16:23:57.010000"],["2024-07-25T16:23:58.010000"],["2024-07-25T16:23:59.010000"],["2024-07-25T16:24:00.010000"],["2024-07-25T16:24:01.010000"],["2024-07-25T16:24:02.010000"],["2024-07-25T16:24:03.010000"],["2024-07-25T16:24:04.010000"],["2024-07-25T16:24:05.010000"],["2024-07-25T16:24:06.010000"],["2024-07-25T16:24:07.010000"],["2024-07-25T16:24:08.010000"],["2024-07-25T16:24:09.010000"],["2024-07-25T16:24:10.010000"],["2024-07-25T16:24:11.010000"],["2024-07-25T16:24:12.010000"],["2024-07-25T16:24:13.010000"],["2024-07-25T16:24:14.010000"],["2024-07-25T16:24:15.010000"],["2024-07-25T16:24:16.010000"],["2024-07-25T16:24:17.010000"],["2024-07-25T16:24:18.010000"],["2024-07-25T16:24:19.010000"],["2024-07-25T16:24:20.010000"],["2024-07-25T16:24:21.010000"],["2024-07-25T16:24:22.010000"],["2024-07-25T16:24:23.010000"],["2024-07-25T16:24:24.010000"],["2024-07-25T16:24:25.010000"],["2024-07-25T16:24:26.010000"],["2024-07-25T16:24:27.010000"],["2024-07-25T16:24:28.010000"],["2024-07-25T16:24:29.010000"],["2024-07-25T16:24:30.010000"],["2024-07-25T16:24:31.010000"],["2024-07-25T16:24:32.010000"],["2024-07-25T16:24:33.010000"],["2024-07-25T16:24:34.010000"],["2024-07-25T16:24:35.010000"],["2024-07-25T16:24:36.010000"],["2024-07-25T16:24:37.010000"],["2024-07-25T16:24:38.010000"],["2024-07-25T16:24:39.010000"],["2024-07-25T16:24:40.010000"],["2024-07-25T16:24:41.010000"],["2024-07-25T16:24:42.010000"],["2024-07-25T16:24:43.010000"],["2024-07-25T16:24:44.010000"],["2024-07-25T16:24:45.010000"],["2024-07-25T16:24:46.010000"],["2024-07-25T16:24:47.010000"],["2024-07-25T16:24:48.010000"],["2024-07-25T16:24:49.010000"],["2024-07-25T16:24:50.010000"],["2024-07-25T16:24:51.010000"],["2024-07-25T16:24:52.010000"],["2024-07-25T16:24:53.010000"],["2024-07-25T16:24:54.010000"],["2024-07-25T16:24:55.010000"],["2024-07-25T16:24:56.010000"],["2024-07-25T16:24:57.010000"],["2024-07-25T16:24:58.010000"],["2024-07-25T16:24:59.010000"],["2024-07-25T16:25:00.010000"],["2024-07-25T16:25:01.010000"],["2024-07-25T16:25:02.010000"],["2024-07-25T16:25:03.010000"],["2024-07-25T16:25:04.010000"],["2024-07-25T16:25:05.010000"],["2024-07-25T16:25:06.010000"],["2024-07-25T16:25:07.010000"],["2024-07-25T16:25:08.010000"],["2024-07-25T16:25:09.010000"],["2024-07-25T16:25:10.010000"],["2024-07-25T16:25:11.010000"],["2024-07-25T16:25:12.010000"],["2024-07-25T16:25:13.010000"],["2024-07-25T16:25:14.010000"],["2024-07-25T16:25:15.010000"],["2024-07-25T16:25:16.010000"],["2024-07-25T16:25:17.010000"],["2024-07-25T16:25:18.010000"],["2024-07-25T16:25:19.010000"],["2024-07-25T16:25:20.010000"],["2024-07-25T16:25:21.010000"],["2024-07-25T16:25:22.010000"],["2024-07-25T16:25:23.010000"],["2024-07-25T16:25:24.010000"],["2024-07-25T16:25:25.010000"],["2024-07-25T16:25:26.010000"],["2024-07-25T16:25:27.010000"],["2024-07-25T16:25:28.010000"],["2024-07-25T16:25:29.010000"],["2024-07-25T16:25:30.010000"],["2024-07-25T16:25:31.010000"],["2024-07-25T16:25:32.010000"],["2024-07-25T16:25:33.010000"],["2024-07-25T16:25:34.010000"],["2024-07-25T16:25:35.010000"],["2024-07-25T16:25:36.010000"],["2024-07-25T16:25:37.010000"],["2024-07-25T16:25:38.010000"],["2024-07-25T16:25:39.010000"],["2024-07-25T16:25:40.010000"],["2024-07-25T16:25:41.010000"],["2024-07-25T16:25:42.010000"],["2024-07-25T16:25:43.010000"],["2024-07-25T16:25:44.010000"],["2024-07-25T16:25:45.010000"],["2024-07-25T16:25:46.010000"],["2024-07-25T16:25:47.010000"],["2024-07-25T16:25:48.010000"],["2024-07-25T16:25:49.010000"],["2024-07-25T16:25:50.010000"],["2024-07-25T16:25:51.010000"],["2024-07-25T16:25:52.010000"],["2024-07-25T16:25:53.010000"],["2024-07-25T16:25:54.010000"],["2024-07-25T16:25:55.010000"],["2024-07-25T16:25:56.010000"],["2024-07-25T16:25:57.010000"],["2024-07-25T16:25:58.010000"],["2024-07-25T16:25:59.010000"],["2024-07-25T16:26:00.010000"],["2024-07-25T16:26:01.010000"],["2024-07-25T16:26:02.010000"],["2024-07-25T16:26:03.010000"],["2024-07-25T16:26:04.010000"],["2024-07-25T16:26:05.010000"],["2024-07-25T16:26:06.010000"],["2024-07-25T16:26:07.010000"],["2024-07-25T16:26:08.010000"],["2024-07-25T16:26:09.010000"],["2024-07-25T16:26:10.010000"],["2024-07-25T16:26:11.010000"],["2024-07-25T16:26:12.010000"],["2024-07-25T16:26:13.010000"],["2024-07-25T16:26:14.010000"],["2024-07-25T16:26:15.010000"],["2024-07-25T16:26:16.010000"],["2024-07-25T16:26:17.010000"],["2024-07-25T16:26:18.010000"],["2024-07-25T16:26:19.010000"],["2024-07-25T16:26:20.010000"],["2024-07-25T16:26:21.010000"],["2024-07-25T16:26:22.010000"],["2024-07-25T16:26:23.010000"],["2024-07-25T16:26:24.010000"],["2024-07-25T16:26:25.010000"],["2024-07-25T16:26:26.010000"],["2024-07-25T16:26:27.010000"],["2024-07-25T16:26:28.010000"],["2024-07-25T16:26:29.010000"],["2024-07-25T16:26:30.010000"],["2024-07-25T16:26:31.010000"],["2024-07-25T16:26:32.010000"],["2024-07-25T16:26:33.010000"],["2024-07-25T16:26:34.010000"],["2024-07-25T16:26:35.010000"],["2024-07-25T16:26:36.010000"],["2024-07-25T16:26:37.010000"],["2024-07-25T16:26:38.010000"],["2024-07-25T16:26:39.010000"],["2024-07-25T16:26:40.010000"],["2024-07-25T16:26:41.010000"],["2024-07-25T16:26:42.010000"],["2024-07-25T16:26:43.010000"],["2024-07-25T16:26:44.010000"],["2024-07-25T16:26:45.010000"],["2024-07-25T16:26:46.010000"],["2024-07-25T16:26:47.010000"],["2024-07-25T16:26:48.010000"],["2024-07-25T16:26:49.010000"],["2024-07-25T16:26:50.010000"],["2024-07-25T16:26:51.010000"],["2024-07-25T16:26:52.010000"],["2024-07-25T16:26:53.010000"],["2024-07-25T16:26:54.010000"],["2024-07-25T16:26:55.010000"],["2024-07-25T16:26:56.010000"],["2024-07-25T16:26:57.010000"],["2024-07-25T16:26:58.010000"],["2024-07-25T16:26:59.010000"],["2024-07-25T16:27:00.010000"],["2024-07-25T16:27:01.010000"],["2024-07-25T16:27:02.010000"],["2024-07-25T16:27:03.010000"],["2024-07-25T16:27:04.010000"],["2024-07-25T16:27:05.010000"],["2024-07-25T16:27:06.010000"],["2024-07-25T16:27:07.010000"],["2024-07-25T16:27:08.010000"],["2024-07-25T16:27:09.010000"],["2024-07-25T16:27:10.010000"],["2024-07-25T16:27:11.010000"],["2024-07-25T16:27:12.010000"],["2024-07-25T16:27:13.010000"],["2024-07-25T16:27:14.010000"],["2024-07-25T16:27:15.010000"],["2024-07-25T16:27:16.010000"],["2024-07-25T16:27:17.010000"],["2024-07-25T16:27:18.010000"],["2024-07-25T16:27:19.010000"],["2024-07-25T16:27:20.010000"],["2024-07-25T16:27:21.010000"],["2024-07-25T16:27:22.010000"],["2024-07-25T16:27:23.010000"],["2024-07-25T16:27:24.010000"],["2024-07-25T16:27:25.010000"],["2024-07-25T16:27:26.010000"],["2024-07-25T16:27:27.010000"],["2024-07-25T16:27:28.010000"],["2024-07-25T16:27:29.010000"],["2024-07-25T16:27:30.010000"],["2024-07-25T16:27:31.010000"],["2024-07-25T16:27:32.010000"],["2024-07-25T16:27:33.010000"],["2024-07-25T16:27:34.010000"],["2024-07-25T16:27:35.010000"],["2024-07-25T16:27:36.010000"],["2024-07-25T16:27:37.010000"],["2024-07-25T16:27:38.010000"],["2024-07-25T16:27:39.010000"],["2024-07-25T16:27:40.010000"],["2024-07-25T16:27:41.010000"],["2024-07-25T16:27:42.010000"],["2024-07-25T16:27:43.010000"],["2024-07-25T16:27:44.010000"],["2024-07-25T16:27:45.010000"],["2024-07-25T16:27:46.010000"],["2024-07-25T16:27:47.010000"],["2024-07-25T16:27:48.010000"],["2024-07-25T16:27:49.010000"],["2024-07-25T16:27:50.010000"],["2024-07-25T16:27:51.010000"],["2024-07-25T16:27:52.010000"],["2024-07-25T16:27:53.010000"],["2024-07-25T16:27:54.010000"],["2024-07-25T16:27:55.010000"],["2024-07-25T16:27:56.010000"],["2024-07-25T16:27:57.010000"],["2024-07-25T16:27:58.010000"],["2024-07-25T16:27:59.010000"],["2024-07-25T16:28:00.010000"],["2024-07-25T16:28:01.010000"],["2024-07-25T16:28:02.010000"],["2024-07-25T16:28:03.010000"],["2024-07-25T16:28:04.010000"],["2024-07-25T16:28:05.010000"],["2024-07-25T16:28:06.010000"],["2024-07-25T16:28:07.010000"],["2024-07-25T16:28:08.010000"],["2024-07-25T16:28:09.010000"],["2024-07-25T16:28:10.010000"],["2024-07-25T16:28:11.010000"],["2024-07-25T16:28:12.010000"],["2024-07-25T16:28:13.010000"],["2024-07-25T16:28:14.010000"],["2024-07-25T16:28:15.010000"],["2024-07-25T16:28:16.010000"],["2024-07-25T16:28:17.010000"],["2024-07-25T16:28:18.010000"],["2024-07-25T16:28:19.010000"],["2024-07-25T16:28:20.010000"],["2024-07-25T16:28:21.010000"],["2024-07-25T16:28:22.010000"],["2024-07-25T16:28:23.010000"],["2024-07-25T16:28:24.010000"],["2024-07-25T16:28:25.010000"],["2024-07-25T16:28:26.010000"],["2024-07-25T16:28:27.010000"],["2024-07-25T16:28:28.010000"],["2024-07-25T16:28:29.010000"],["2024-07-25T16:28:30.010000"],["2024-07-25T16:28:31.010000"],["2024-07-25T16:28:32.010000"],["2024-07-25T16:28:33.010000"],["2024-07-25T16:28:34.010000"],["2024-07-25T16:28:35.010000"],["2024-07-25T16:28:36.010000"],["2024-07-25T16:28:37.010000"],["2024-07-25T16:28:38.010000"],["2024-07-25T16:28:39.010000"],["2024-07-25T16:28:40.010000"],["2024-07-25T16:28:41.010000"],["2024-07-25T16:28:42.010000"],["2024-07-25T16:28:43.010000"],["2024-07-25T16:28:44.010000"],["2024-07-25T16:28:45.010000"],["2024-07-25T16:28:46.010000"],["2024-07-25T16:28:47.010000"],["2024-07-25T16:28:48.010000"],["2024-07-25T16:28:49.010000"],["2024-07-25T16:28:50.010000"],["2024-07-25T16:28:51.010000"],["2024-07-25T16:28:52.010000"],["2024-07-25T16:28:53.010000"],["2024-07-25T16:28:54.010000"],["2024-07-25T16:28:55.010000"],["2024-07-25T16:28:56.010000"],["2024-07-25T16:28:57.010000"],["2024-07-25T16:28:58.010000"],["2024-07-25T16:28:59.010000"],["2024-07-25T16:29:00.010000"],["2024-07-25T16:29:01.010000"],["2024-07-25T16:29:02.010000"],["2024-07-25T16:29:03.010000"],["2024-07-25T16:29:04.010000"],["2024-07-25T16:29:05.010000"],["2024-07-25T16:29:06.010000"],["2024-07-25T16:29:07.010000"],["2024-07-25T16:29:08.010000"],["2024-07-25T16:29:09.010000"],["2024-07-25T16:29:10.010000"],["2024-07-25T16:29:11.010000"],["2024-07-25T16:29:12.010000"],["2024-07-25T16:29:13.010000"],["2024-07-25T16:29:14.010000"],["2024-07-25T16:29:15.010000"],["2024-07-25T16:29:16.010000"],["2024-07-25T16:29:17.010000"],["2024-07-25T16:29:18.010000"],["2024-07-25T16:29:19.010000"],["2024-07-25T16:29:20.010000"],["2024-07-25T16:29:21.010000"],["2024-07-25T16:29:22.010000"],["2024-07-25T16:29:23.010000"],["2024-07-25T16:29:24.010000"],["2024-07-25T16:29:25.010000"],["2024-07-25T16:29:26.010000"],["2024-07-25T16:29:27.010000"],["2024-07-25T16:29:28.010000"],["2024-07-25T16:29:29.010000"],["2024-07-25T16:29:30.010000"],["2024-07-25T16:29:31.010000"],["2024-07-25T16:29:32.010000"],["2024-07-25T16:29:33.010000"],["2024-07-25T16:29:34.010000"],["2024-07-25T16:29:35.010000"],["2024-07-25T16:29:36.010000"],["2024-07-25T16:29:37.010000"],["2024-07-25T16:29:38.010000"],["2024-07-25T16:29:39.010000"],["2024-07-25T16:29:40.010000"],["2024-07-25T16:29:41.010000"],["2024-07-25T16:29:42.010000"],["2024-07-25T16:29:43.010000"],["2024-07-25T16:29:44.010000"],["2024-07-25T16:29:45.010000"],["2024-07-25T16:29:46.010000"],["2024-07-25T16:29:47.010000"],["2024-07-25T16:29:48.010000"],["2024-07-25T16:29:49.010000"],["2024-07-25T16:29:50.010000"],["2024-07-25T16:29:51.010000"],["2024-07-25T16:29:52.010000"],["2024-07-25T16:29:53.010000"],["2024-07-25T16:29:54.010000"],["2024-07-25T16:29:55.010000"],["2024-07-25T16:29:56.010000"],["2024-07-25T16:29:57.010000"],["2024-07-25T16:29:58.010000"],["2024-07-25T16:29:59.010000"],["2024-07-25T16:30:00.010000"],["2024-07-25T16:30:01.010000"],["2024-07-25T16:30:02.010000"],["2024-07-25T16:30:03.010000"],["2024-07-25T16:30:04.010000"],["2024-07-25T16:30:05.010000"],["2024-07-25T16:30:06.010000"],["2024-07-25T16:30:07.010000"],["2024-07-25T16:30:08.010000"],["2024-07-25T16:30:09.010000"],["2024-07-25T16:30:10.010000"],["2024-07-25T16:30:11.010000"],["2024-07-25T16:30:12.010000"],["2024-07-25T16:30:13.010000"],["2024-07-25T16:30:14.010000"],["2024-07-25T16:30:15.010000"],["2024-07-25T16:30:16.010000"],["2024-07-25T16:30:17.010000"],["2024-07-25T16:30:18.010000"],["2024-07-25T16:30:19.010000"],["2024-07-25T16:30:20.010000"],["2024-07-25T16:30:21.010000"],["2024-07-25T16:30:22.010000"],["2024-07-25T16:30:23.010000"],["2024-07-25T16:30:24.010000"],["2024-07-25T16:30:25.010000"],["2024-07-25T16:30:26.010000"],["2024-07-25T16:30:27.010000"],["2024-07-25T16:30:28.010000"],["2024-07-25T16:30:29.010000"],["2024-07-25T16:30:30.010000"],["2024-07-25T16:30:31.010000"],["2024-07-25T16:30:32.010000"],["2024-07-25T16:30:33.010000"],["2024-07-25T16:30:34.010000"],["2024-07-25T16:30:35.010000"],["2024-07-25T16:30:36.010000"],["2024-07-25T16:30:37.010000"],["2024-07-25T16:30:38.010000"],["2024-07-25T16:30:39.010000"],["2024-07-25T16:30:40.010000"],["2024-07-25T16:30:41.010000"],["2024-07-25T16:30:42.010000"],["2024-07-25T16:30:43.010000"],["2024-07-25T16:30:44.010000"],["2024-07-25T16:30:45.010000"],["2024-07-25T16:30:46.010000"],["2024-07-25T16:30:47.010000"],["2024-07-25T16:30:48.010000"],["2024-07-25T16:30:49.010000"],["2024-07-25T16:30:50.010000"],["2024-07-25T16:30:51.010000"],["2024-07-25T16:30:52.010000"],["2024-07-25T16:30:53.010000"],["2024-07-25T16:30:54.010000"],["2024-07-25T16:30:55.010000"],["2024-07-25T16:30:56.010000"],["2024-07-25T16:30:57.010000"],["2024-07-25T16:30:58.010000"],["2024-07-25T16:30:59.010000"],["2024-07-25T16:31:00.010000"],["2024-07-25T16:31:01.010000"],["2024-07-25T16:31:02.010000"],["2024-07-25T16:31:03.010000"],["2024-07-25T16:31:04.010000"],["2024-07-25T16:31:05.010000"],["2024-07-25T16:31:06.010000"],["2024-07-25T16:31:07.010000"],["2024-07-25T16:31:08.010000"],["2024-07-25T16:31:09.010000"],["2024-07-25T16:31:10.010000"],["2024-07-25T16:31:11.010000"],["2024-07-25T16:31:12.010000"],["2024-07-25T16:31:13.010000"],["2024-07-25T16:31:14.010000"],["2024-07-25T16:31:15.010000"],["2024-07-25T16:31:16.010000"],["2024-07-25T16:31:17.010000"],["2024-07-25T16:31:18.010000"],["2024-07-25T16:31:19.010000"],["2024-07-25T16:31:20.010000"],["2024-07-25T16:31:21.010000"],["2024-07-25T16:31:22.010000"],["2024-07-25T16:31:23.010000"],["2024-07-25T16:31:24.010000"],["2024-07-25T16:31:25.010000"],["2024-07-25T16:31:26.010000"],["2024-07-25T16:31:27.010000"],["2024-07-25T16:31:28.010000"],["2024-07-25T16:31:29.010000"],["2024-07-25T16:31:30.010000"],["2024-07-25T16:31:31.010000"],["2024-07-25T16:31:32.010000"],["2024-07-25T16:31:33.010000"],["2024-07-25T16:31:34.010000"],["2024-07-25T16:31:35.010000"],["2024-07-25T16:31:36.010000"],["2024-07-25T16:31:37.010000"],["2024-07-25T16:31:38.010000"],["2024-07-25T16:31:39.010000"],["2024-07-25T16:31:40.010000"],["2024-07-25T16:31:41.010000"],["2024-07-25T16:31:42.010000"],["2024-07-25T16:31:43.010000"],["2024-07-25T16:31:44.010000"],["2024-07-25T16:31:45.010000"],["2024-07-25T16:31:46.010000"],["2024-07-25T16:31:47.010000"],["2024-07-25T16:31:48.010000"],["2024-07-25T16:31:49.010000"],["2024-07-25T16:31:50.010000"],["2024-07-25T16:31:51.010000"],["2024-07-25T16:31:52.010000"],["2024-07-25T16:31:53.010000"],["2024-07-25T16:31:54.010000"],["2024-07-25T16:31:55.010000"],["2024-07-25T16:31:56.010000"],["2024-07-25T16:31:57.010000"],["2024-07-25T16:31:58.010000"],["2024-07-25T16:31:59.010000"],["2024-07-25T16:32:00.010000"],["2024-07-25T16:32:01.010000"],["2024-07-25T16:32:02.010000"],["2024-07-25T16:32:03.010000"],["2024-07-25T16:32:04.010000"],["2024-07-25T16:32:05.010000"],["2024-07-25T16:32:06.010000"],["2024-07-25T16:32:07.010000"],["2024-07-25T16:32:08.010000"],["2024-07-25T16:32:09.010000"],["2024-07-25T16:32:10.010000"],["2024-07-25T16:32:11.010000"],["2024-07-25T16:32:12.010000"],["2024-07-25T16:32:13.010000"],["2024-07-25T16:32:14.010000"],["2024-07-25T16:32:15.010000"],["2024-07-25T16:32:16.010000"],["2024-07-25T16:32:17.010000"],["2024-07-25T16:32:18.010000"],["2024-07-25T16:32:19.010000"],["2024-07-25T16:32:20.010000"],["2024-07-25T16:32:21.010000"],["2024-07-25T16:32:22.010000"],["2024-07-25T16:32:23.010000"],["2024-07-25T16:32:24.010000"],["2024-07-25T16:32:25.010000"],["2024-07-25T16:32:26.010000"],["2024-07-25T16:32:27.010000"],["2024-07-25T16:32:28.010000"],["2024-07-25T16:32:29.010000"],["2024-07-25T16:32:30.010000"],["2024-07-25T16:32:31.010000"],["2024-07-25T16:32:32.010000"],["2024-07-25T16:32:33.010000"],["2024-07-25T16:32:34.010000"],["2024-07-25T16:32:35.010000"],["2024-07-25T16:32:36.010000"],["2024-07-25T16:32:37.010000"],["2024-07-25T16:32:38.010000"],["2024-07-25T16:32:39.010000"],["2024-07-25T16:32:40.010000"],["2024-07-25T16:32:41.010000"],["2024-07-25T16:32:42.010000"],["2024-07-25T16:32:43.010000"],["2024-07-25T16:32:44.010000"],["2024-07-25T16:32:45.010000"],["2024-07-25T16:32:46.010000"],["2024-07-25T16:32:47.010000"],["2024-07-25T16:32:48.010000"],["2024-07-25T16:32:49.010000"],["2024-07-25T16:32:50.010000"],["2024-07-25T16:32:51.010000"],["2024-07-25T16:32:52.010000"],["2024-07-25T16:32:53.010000"],["2024-07-25T16:32:54.010000"],["2024-07-25T16:32:55.010000"],["2024-07-25T16:32:56.010000"],["2024-07-25T16:32:57.010000"],["2024-07-25T16:32:58.010000"],["2024-07-25T16:32:59.010000"],["2024-07-25T16:33:00.010000"],["2024-07-25T16:33:01.010000"],["2024-07-25T16:33:02.010000"],["2024-07-25T16:33:03.010000"],["2024-07-25T16:33:04.010000"],["2024-07-25T16:33:05.010000"],["2024-07-25T16:33:06.010000"],["2024-07-25T16:33:07.010000"],["2024-07-25T16:33:08.010000"],["2024-07-25T16:33:09.010000"],["2024-07-25T16:33:10.010000"],["2024-07-25T16:33:11.010000"],["2024-07-25T16:33:12.010000"],["2024-07-25T16:33:13.010000"],["2024-07-25T16:33:14.010000"],["2024-07-25T16:33:15.010000"],["2024-07-25T16:33:16.010000"],["2024-07-25T16:33:17.010000"],["2024-07-25T16:33:18.010000"],["2024-07-25T16:33:19.010000"],["2024-07-25T16:33:20.010000"],["2024-07-25T16:33:21.010000"],["2024-07-25T16:33:22.010000"],["2024-07-25T16:33:23.010000"],["2024-07-25T16:33:24.010000"],["2024-07-25T16:33:25.010000"],["2024-07-25T16:33:26.010000"],["2024-07-25T16:33:27.010000"],["2024-07-25T16:33:28.010000"],["2024-07-25T16:33:29.010000"],["2024-07-25T16:33:30.010000"],["2024-07-25T16:33:31.010000"],["2024-07-25T16:33:32.010000"],["2024-07-25T16:33:33.010000"],["2024-07-25T16:33:34.010000"],["2024-07-25T16:33:35.010000"],["2024-07-25T16:33:36.010000"],["2024-07-25T16:33:37.010000"],["2024-07-25T16:33:38.010000"],["2024-07-25T16:33:39.010000"],["2024-07-25T16:33:40.010000"],["2024-07-25T16:33:41.010000"],["2024-07-25T16:33:42.010000"],["2024-07-25T16:33:43.010000"],["2024-07-25T16:33:44.010000"],["2024-07-25T16:33:45.010000"],["2024-07-25T16:33:46.010000"],["2024-07-25T16:33:47.010000"],["2024-07-25T16:33:48.010000"],["2024-07-25T16:33:49.010000"],["2024-07-25T16:33:50.010000"],["2024-07-25T16:33:51.010000"],["2024-07-25T16:33:52.010000"],["2024-07-25T16:33:53.010000"],["2024-07-25T16:33:54.010000"],["2024-07-25T16:33:55.010000"],["2024-07-25T16:33:56.010000"],["2024-07-25T16:33:57.010000"],["2024-07-25T16:33:58.010000"],["2024-07-25T16:33:59.010000"],["2024-07-25T16:34:00.010000"],["2024-07-25T16:34:01.010000"],["2024-07-25T16:34:02.010000"],["2024-07-25T16:34:03.010000"],["2024-07-25T16:34:04.010000"],["2024-07-25T16:34:05.010000"],["2024-07-25T16:34:06.010000"],["2024-07-25T16:34:07.010000"],["2024-07-25T16:34:08.010000"],["2024-07-25T16:34:09.010000"],["2024-07-25T16:34:10.010000"],["2024-07-25T16:34:11.010000"],["2024-07-25T16:34:12.010000"],["2024-07-25T16:34:13.010000"],["2024-07-25T16:34:14.010000"],["2024-07-25T16:34:15.010000"],["2024-07-25T16:34:16.010000"],["2024-07-25T16:34:17.010000"],["2024-07-25T16:34:18.010000"],["2024-07-25T16:34:19.010000"],["2024-07-25T16:34:20.010000"],["2024-07-25T16:34:21.010000"],["2024-07-25T16:34:22.010000"],["2024-07-25T16:34:23.010000"],["2024-07-25T16:34:24.010000"],["2024-07-25T16:34:25.010000"],["2024-07-25T16:34:26.010000"],["2024-07-25T16:34:27.010000"],["2024-07-25T16:34:28.010000"],["2024-07-25T16:34:29.010000"],["2024-07-25T16:34:30.010000"],["2024-07-25T16:34:31.010000"],["2024-07-25T16:34:32.010000"],["2024-07-25T16:34:33.010000"],["2024-07-25T16:34:34.010000"],["2024-07-25T16:34:35.010000"],["2024-07-25T16:34:36.010000"],["2024-07-25T16:34:37.010000"],["2024-07-25T16:34:38.010000"],["2024-07-25T16:34:39.010000"],["2024-07-25T16:34:40.010000"],["2024-07-25T16:34:41.010000"],["2024-07-25T16:34:42.010000"],["2024-07-25T16:34:43.010000"],["2024-07-25T16:34:44.010000"],["2024-07-25T16:34:45.010000"],["2024-07-25T16:34:46.010000"],["2024-07-25T16:34:47.010000"],["2024-07-25T16:34:48.010000"],["2024-07-25T16:34:49.010000"],["2024-07-25T16:34:50.010000"],["2024-07-25T16:34:51.010000"],["2024-07-25T16:34:52.010000"],["2024-07-25T16:34:53.010000"],["2024-07-25T16:34:54.010000"],["2024-07-25T16:34:55.010000"],["2024-07-25T16:34:56.010000"],["2024-07-25T16:34:57.010000"],["2024-07-25T16:34:58.010000"],["2024-07-25T16:34:59.010000"],["2024-07-25T16:35:00.010000"],["2024-07-25T16:35:01.010000"],["2024-07-25T16:35:02.010000"],["2024-07-25T16:35:03.010000"],["2024-07-25T16:35:04.010000"],["2024-07-25T16:35:05.010000"],["2024-07-25T16:35:06.010000"],["2024-07-25T16:35:07.010000"],["2024-07-25T16:35:08.010000"],["2024-07-25T16:35:09.010000"],["2024-07-25T16:35:10.010000"],["2024-07-25T16:35:11.010000"],["2024-07-25T16:35:12.010000"],["2024-07-25T16:35:13.010000"],["2024-07-25T16:35:14.010000"],["2024-07-25T16:35:15.010000"],["2024-07-25T16:35:16.010000"],["2024-07-25T16:35:17.010000"],["2024-07-25T16:35:18.010000"],["2024-07-25T16:35:19.010000"],["2024-07-25T16:35:20.010000"],["2024-07-25T16:35:21.010000"],["2024-07-25T16:35:22.010000"],["2024-07-25T16:35:23.010000"],["2024-07-25T16:35:24.010000"],["2024-07-25T16:35:25.010000"],["2024-07-25T16:35:26.010000"],["2024-07-25T16:35:27.010000"],["2024-07-25T16:35:28.010000"],["2024-07-25T16:35:29.010000"],["2024-07-25T16:35:30.010000"],["2024-07-25T16:35:31.010000"],["2024-07-25T16:35:32.010000"],["2024-07-25T16:35:33.010000"],["2024-07-25T16:35:34.010000"],["2024-07-25T16:35:35.010000"],["2024-07-25T16:35:36.010000"],["2024-07-25T16:35:37.010000"],["2024-07-25T16:35:38.010000"],["2024-07-25T16:35:39.010000"],["2024-07-25T16:35:40.010000"],["2024-07-25T16:35:41.010000"],["2024-07-25T16:35:42.010000"],["2024-07-25T16:35:43.010000"],["2024-07-25T16:35:44.010000"],["2024-07-25T16:35:45.010000"],["2024-07-25T16:35:46.010000"],["2024-07-25T16:35:47.010000"],["2024-07-25T16:35:48.010000"],["2024-07-25T16:35:49.010000"],["2024-07-25T16:35:50.010000"],["2024-07-25T16:35:51.010000"],["2024-07-25T16:35:52.010000"],["2024-07-25T16:35:53.010000"],["2024-07-25T16:35:54.010000"],["2024-07-25T16:35:55.010000"],["2024-07-25T16:35:56.010000"],["2024-07-25T16:35:57.010000"],["2024-07-25T16:35:58.010000"],["2024-07-25T16:35:59.010000"],["2024-07-25T16:36:00.010000"],["2024-07-25T16:36:01.010000"],["2024-07-25T16:36:02.010000"],["2024-07-25T16:36:03.010000"],["2024-07-25T16:36:04.010000"],["2024-07-25T16:36:05.010000"],["2024-07-25T16:36:06.010000"],["2024-07-25T16:36:07.010000"],["2024-07-25T16:36:08.010000"],["2024-07-25T16:36:09.010000"],["2024-07-25T16:36:10.010000"],["2024-07-25T16:36:11.010000"],["2024-07-25T16:36:12.010000"],["2024-07-25T16:36:13.010000"],["2024-07-25T16:36:14.010000"],["2024-07-25T16:36:15.010000"],["2024-07-25T16:36:16.010000"],["2024-07-25T16:36:17.010000"],["2024-07-25T16:36:18.010000"],["2024-07-25T16:36:19.010000"],["2024-07-25T16:36:20.010000"],["2024-07-25T16:36:21.010000"],["2024-07-25T16:36:22.010000"],["2024-07-25T16:36:23.010000"],["2024-07-25T16:36:24.010000"],["2024-07-25T16:36:25.010000"],["2024-07-25T16:36:26.010000"],["2024-07-25T16:36:27.010000"],["2024-07-25T16:36:28.010000"],["2024-07-25T16:36:29.010000"],["2024-07-25T16:36:30.010000"],["2024-07-25T16:36:31.010000"],["2024-07-25T16:36:32.010000"],["2024-07-25T16:36:33.010000"],["2024-07-25T16:36:34.010000"],["2024-07-25T16:36:35.010000"],["2024-07-25T16:36:36.010000"],["2024-07-25T16:36:37.010000"],["2024-07-25T16:36:38.010000"],["2024-07-25T16:36:39.010000"],["2024-07-25T16:36:40.010000"],["2024-07-25T16:36:41.010000"],["2024-07-25T16:36:42.010000"],["2024-07-25T16:36:43.010000"],["2024-07-25T16:36:44.010000"],["2024-07-25T16:36:45.010000"],["2024-07-25T16:36:46.010000"],["2024-07-25T16:36:47.010000"],["2024-07-25T16:36:48.010000"],["2024-07-25T16:36:49.010000"],["2024-07-25T16:36:50.010000"],["2024-07-25T16:36:51.010000"],["2024-07-25T16:36:52.010000"],["2024-07-25T16:36:53.010000"],["2024-07-25T16:36:54.010000"],["2024-07-25T16:36:55.010000"],["2024-07-25T16:36:56.010000"],["2024-07-25T16:36:57.010000"],["2024-07-25T16:36:58.010000"],["2024-07-25T16:36:59.010000"],["2024-07-25T16:37:00.010000"],["2024-07-25T16:37:01.010000"],["2024-07-25T16:37:02.010000"],["2024-07-25T16:37:03.010000"],["2024-07-25T16:37:04.010000"],["2024-07-25T16:37:05.010000"],["2024-07-25T16:37:06.010000"],["2024-07-25T16:37:07.010000"],["2024-07-25T16:37:08.010000"],["2024-07-25T16:37:09.010000"],["2024-07-25T16:37:10.010000"],["2024-07-25T16:37:11.010000"],["2024-07-25T16:37:12.010000"],["2024-07-25T16:37:13.010000"],["2024-07-25T16:37:14.010000"],["2024-07-25T16:37:15.010000"],["2024-07-25T16:37:16.010000"],["2024-07-25T16:37:17.010000"],["2024-07-25T16:37:18.010000"],["2024-07-25T16:37:19.010000"],["2024-07-25T16:37:20.010000"],["2024-07-25T16:37:21.010000"],["2024-07-25T16:37:22.010000"],["2024-07-25T16:37:23.010000"],["2024-07-25T16:37:24.010000"],["2024-07-25T16:37:25.010000"],["2024-07-25T16:37:26.010000"],["2024-07-25T16:37:27.010000"],["2024-07-25T16:37:28.010000"],["2024-07-25T16:37:29.010000"],["2024-07-25T16:37:30.010000"],["2024-07-25T16:37:31.010000"],["2024-07-25T16:37:32.010000"],["2024-07-25T16:37:33.010000"],["2024-07-25T16:37:34.010000"],["2024-07-25T16:37:35.010000"],["2024-07-25T16:37:36.010000"],["2024-07-25T16:37:37.010000"],["2024-07-25T16:37:38.010000"],["2024-07-25T16:37:39.010000"],["2024-07-25T16:37:40.010000"],["2024-07-25T16:37:41.010000"],["2024-07-25T16:37:42.010000"],["2024-07-25T16:37:43.010000"],["2024-07-25T16:37:44.010000"],["2024-07-25T16:37:45.010000"],["2024-07-25T16:37:46.010000"],["2024-07-25T16:37:47.010000"],["2024-07-25T16:37:48.010000"],["2024-07-25T16:37:49.010000"],["2024-07-25T16:37:50.010000"],["2024-07-25T16:37:51.010000"],["2024-07-25T16:37:52.010000"],["2024-07-25T16:37:53.010000"],["2024-07-25T16:37:54.010000"],["2024-07-25T16:37:55.010000"],["2024-07-25T16:37:56.010000"],["2024-07-25T16:37:57.010000"],["2024-07-25T16:37:58.010000"],["2024-07-25T16:37:59.010000"],["2024-07-25T16:38:00.010000"],["2024-07-25T16:38:01.010000"],["2024-07-25T16:38:02.010000"],["2024-07-25T16:38:03.010000"],["2024-07-25T16:38:04.010000"],["2024-07-25T16:38:05.010000"],["2024-07-25T16:38:06.010000"],["2024-07-25T16:38:07.010000"],["2024-07-25T16:38:08.010000"],["2024-07-25T16:38:09.010000"],["2024-07-25T16:38:10.010000"],["2024-07-25T16:38:11.010000"],["2024-07-25T16:38:12.010000"],["2024-07-25T16:38:13.010000"],["2024-07-25T16:38:14.010000"],["2024-07-25T16:38:15.010000"],["2024-07-25T16:38:16.010000"],["2024-07-25T16:38:17.010000"],["2024-07-25T16:38:18.010000"],["2024-07-25T16:38:19.010000"],["2024-07-25T16:38:20.010000"],["2024-07-25T16:38:21.010000"],["2024-07-25T16:38:22.010000"],["2024-07-25T16:38:23.010000"],["2024-07-25T16:38:24.010000"],["2024-07-25T16:38:25.010000"],["2024-07-25T16:38:26.010000"],["2024-07-25T16:38:27.010000"],["2024-07-25T16:38:28.010000"],["2024-07-25T16:38:29.010000"],["2024-07-25T16:38:30.010000"],["2024-07-25T16:38:31.010000"],["2024-07-25T16:38:32.010000"],["2024-07-25T16:38:33.010000"],["2024-07-25T16:38:34.010000"],["2024-07-25T16:38:35.010000"],["2024-07-25T16:38:36.010000"],["2024-07-25T16:38:37.010000"],["2024-07-25T16:38:38.010000"],["2024-07-25T16:38:39.010000"],["2024-07-25T16:38:40.010000"],["2024-07-25T16:38:41.010000"],["2024-07-25T16:38:42.010000"],["2024-07-25T16:38:43.010000"],["2024-07-25T16:38:44.010000"],["2024-07-25T16:38:45.010000"],["2024-07-25T16:38:46.010000"],["2024-07-25T16:38:47.010000"],["2024-07-25T16:38:48.010000"],["2024-07-25T16:38:49.010000"],["2024-07-25T16:38:50.010000"],["2024-07-25T16:38:51.010000"],["2024-07-25T16:38:52.010000"],["2024-07-25T16:38:53.010000"],["2024-07-25T16:38:54.010000"],["2024-07-25T16:38:55.010000"],["2024-07-25T16:38:56.010000"],["2024-07-25T16:38:57.010000"],["2024-07-25T16:38:58.010000"],["2024-07-25T16:38:59.010000"],["2024-07-25T16:39:00.010000"],["2024-07-25T16:39:01.010000"],["2024-07-25T16:39:02.010000"],["2024-07-25T16:39:03.010000"],["2024-07-25T16:39:04.010000"],["2024-07-25T16:39:05.010000"],["2024-07-25T16:39:06.010000"],["2024-07-25T16:39:07.010000"],["2024-07-25T16:39:08.010000"],["2024-07-25T16:39:09.010000"],["2024-07-25T16:39:10.010000"],["2024-07-25T16:39:11.010000"],["2024-07-25T16:39:12.010000"],["2024-07-25T16:39:13.010000"],["2024-07-25T16:39:14.010000"],["2024-07-25T16:39:15.010000"],["2024-07-25T16:39:16.010000"],["2024-07-25T16:39:17.010000"],["2024-07-25T16:39:18.010000"],["2024-07-25T16:39:19.010000"],["2024-07-25T16:39:20.010000"],["2024-07-25T16:39:21.010000"],["2024-07-25T16:39:22.010000"],["2024-07-25T16:39:23.010000"],["2024-07-25T16:39:24.010000"],["2024-07-25T16:39:25.010000"],["2024-07-25T16:39:26.010000"],["2024-07-25T16:39:27.010000"],["2024-07-25T16:39:28.010000"],["2024-07-25T16:39:29.010000"],["2024-07-25T16:39:30.010000"],["2024-07-25T16:39:31.010000"],["2024-07-25T16:39:32.010000"],["2024-07-25T16:39:33.010000"],["2024-07-25T16:39:34.010000"],["2024-07-25T16:39:35.010000"],["2024-07-25T16:39:36.010000"],["2024-07-25T16:39:37.010000"],["2024-07-25T16:39:38.010000"],["2024-07-25T16:39:39.010000"],["2024-07-25T16:39:40.010000"],["2024-07-25T16:39:41.010000"],["2024-07-25T16:39:42.010000"],["2024-07-25T16:39:43.010000"],["2024-07-25T16:39:44.010000"],["2024-07-25T16:39:45.010000"],["2024-07-25T16:39:46.010000"],["2024-07-25T16:39:47.010000"],["2024-07-25T16:39:48.010000"],["2024-07-25T16:39:49.010000"],["2024-07-25T16:39:50.010000"],["2024-07-25T16:39:51.010000"],["2024-07-25T16:39:52.010000"],["2024-07-25T16:39:53.010000"],["2024-07-25T16:39:54.010000"],["2024-07-25T16:39:55.010000"],["2024-07-25T16:39:56.010000"],["2024-07-25T16:39:57.010000"],["2024-07-25T16:39:58.010000"],["2024-07-25T16:39:59.010000"],["2024-07-25T16:40:00.010000"],["2024-07-25T16:40:01.010000"],["2024-07-25T16:40:02.010000"],["2024-07-25T16:40:03.010000"],["2024-07-25T16:40:04.010000"],["2024-07-25T16:40:05.010000"],["2024-07-25T16:40:06.010000"],["2024-07-25T16:40:07.010000"],["2024-07-25T16:40:08.010000"],["2024-07-25T16:40:09.010000"],["2024-07-25T16:40:10.010000"],["2024-07-25T16:40:11.010000"],["2024-07-25T16:40:12.010000"],["2024-07-25T16:40:13.010000"],["2024-07-25T16:40:14.010000"],["2024-07-25T16:40:15.010000"],["2024-07-25T16:40:16.010000"],["2024-07-25T16:40:17.010000"],["2024-07-25T16:40:18.010000"],["2024-07-25T16:40:19.010000"],["2024-07-25T16:40:20.010000"],["2024-07-25T16:40:21.010000"],["2024-07-25T16:40:22.010000"],["2024-07-25T16:40:23.010000"],["2024-07-25T16:40:24.010000"],["2024-07-25T16:40:25.010000"],["2024-07-25T16:40:26.010000"],["2024-07-25T16:40:27.010000"],["2024-07-25T16:40:28.010000"],["2024-07-25T16:40:29.010000"],["2024-07-25T16:40:30.010000"],["2024-07-25T16:40:31.010000"],["2024-07-25T16:40:32.010000"],["2024-07-25T16:40:33.010000"],["2024-07-25T16:40:34.010000"],["2024-07-25T16:40:35.010000"],["2024-07-25T16:40:36.010000"],["2024-07-25T16:40:37.010000"],["2024-07-25T16:40:38.010000"],["2024-07-25T16:40:39.010000"],["2024-07-25T16:40:40.010000"],["2024-07-25T16:40:41.010000"],["2024-07-25T16:40:42.010000"],["2024-07-25T16:40:43.010000"],["2024-07-25T16:40:44.010000"],["2024-07-25T16:40:45.010000"],["2024-07-25T16:40:46.010000"],["2024-07-25T16:40:47.010000"],["2024-07-25T16:40:48.010000"],["2024-07-25T16:40:49.010000"],["2024-07-25T16:40:50.010000"],["2024-07-25T16:40:51.010000"],["2024-07-25T16:40:52.010000"],["2024-07-25T16:40:53.010000"],["2024-07-25T16:40:54.010000"],["2024-07-25T16:40:55.010000"],["2024-07-25T16:40:56.010000"],["2024-07-25T16:40:57.010000"],["2024-07-25T16:40:58.010000"],["2024-07-25T16:40:59.010000"],["2024-07-25T16:41:00.010000"],["2024-07-25T16:41:01.010000"],["2024-07-25T16:41:02.010000"],["2024-07-25T16:41:03.010000"],["2024-07-25T16:41:04.010000"],["2024-07-25T16:41:05.010000"],["2024-07-25T16:41:06.010000"],["2024-07-25T16:41:07.010000"],["2024-07-25T16:41:08.010000"],["2024-07-25T16:41:09.010000"],["2024-07-25T16:41:10.010000"],["2024-07-25T16:41:11.010000"],["2024-07-25T16:41:12.010000"],["2024-07-25T16:41:13.010000"],["2024-07-25T16:41:14.010000"],["2024-07-25T16:41:15.010000"],["2024-07-25T16:41:16.010000"],["2024-07-25T16:41:17.010000"],["2024-07-25T16:41:18.010000"],["2024-07-25T16:41:19.010000"],["2024-07-25T16:41:20.010000"],["2024-07-25T16:41:21.010000"],["2024-07-25T16:41:22.010000"],["2024-07-25T16:41:23.010000"],["2024-07-25T16:41:24.010000"],["2024-07-25T16:41:25.010000"],["2024-07-25T16:41:26.010000"],["2024-07-25T16:41:27.010000"],["2024-07-25T16:41:28.010000"],["2024-07-25T16:41:29.010000"],["2024-07-25T16:41:30.010000"],["2024-07-25T16:41:31.010000"],["2024-07-25T16:41:32.010000"],["2024-07-25T16:41:33.010000"],["2024-07-25T16:41:34.010000"],["2024-07-25T16:41:35.010000"],["2024-07-25T16:41:36.010000"],["2024-07-25T16:41:37.010000"],["2024-07-25T16:41:38.010000"],["2024-07-25T16:41:39.010000"],["2024-07-25T16:41:40.010000"],["2024-07-25T16:41:41.010000"],["2024-07-25T16:41:42.010000"],["2024-07-25T16:41:43.010000"],["2024-07-25T16:41:44.010000"],["2024-07-25T16:41:45.010000"],["2024-07-25T16:41:46.010000"],["2024-07-25T16:41:47.010000"],["2024-07-25T16:41:48.010000"],["2024-07-25T16:41:49.010000"],["2024-07-25T16:41:50.010000"],["2024-07-25T16:41:51.010000"],["2024-07-25T16:41:52.010000"],["2024-07-25T16:41:53.010000"],["2024-07-25T16:41:54.010000"],["2024-07-25T16:41:55.010000"],["2024-07-25T16:41:56.010000"],["2024-07-25T16:41:57.010000"],["2024-07-25T16:41:58.010000"],["2024-07-25T16:41:59.010000"],["2024-07-25T16:42:00.010000"],["2024-07-25T16:42:01.010000"],["2024-07-25T16:42:02.010000"],["2024-07-25T16:42:03.010000"],["2024-07-25T16:42:04.010000"],["2024-07-25T16:42:05.010000"],["2024-07-25T16:42:06.010000"],["2024-07-25T16:42:07.010000"],["2024-07-25T16:42:08.010000"],["2024-07-25T16:42:09.010000"],["2024-07-25T16:42:10.010000"],["2024-07-25T16:42:11.010000"],["2024-07-25T16:42:12.010000"],["2024-07-25T16:42:13.010000"],["2024-07-25T16:42:14.010000"],["2024-07-25T16:42:15.010000"],["2024-07-25T16:42:16.010000"],["2024-07-25T16:42:17.010000"],["2024-07-25T16:42:18.010000"],["2024-07-25T16:42:19.010000"],["2024-07-25T16:42:20.010000"],["2024-07-25T16:42:21.010000"],["2024-07-25T16:42:22.010000"],["2024-07-25T16:42:23.010000"],["2024-07-25T16:42:24.010000"],["2024-07-25T16:42:25.010000"],["2024-07-25T16:42:26.010000"],["2024-07-25T16:42:27.010000"],["2024-07-25T16:42:28.010000"],["2024-07-25T16:42:29.010000"],["2024-07-25T16:42:30.010000"],["2024-07-25T16:42:31.010000"],["2024-07-25T16:42:32.010000"],["2024-07-25T16:42:33.010000"],["2024-07-25T16:42:34.010000"],["2024-07-25T16:42:35.010000"],["2024-07-25T16:42:36.010000"],["2024-07-25T16:42:37.010000"],["2024-07-25T16:42:38.010000"],["2024-07-25T16:42:39.010000"],["2024-07-25T16:42:40.010000"],["2024-07-25T16:42:41.010000"],["2024-07-25T16:42:42.010000"],["2024-07-25T16:42:43.010000"],["2024-07-25T16:42:44.010000"],["2024-07-25T16:42:45.010000"],["2024-07-25T16:42:46.010000"],["2024-07-25T16:42:47.010000"],["2024-07-25T16:42:48.010000"],["2024-07-25T16:42:49.010000"],["2024-07-25T16:42:50.010000"],["2024-07-25T16:42:51.010000"],["2024-07-25T16:42:52.010000"],["2024-07-25T16:42:53.010000"],["2024-07-25T16:42:54.010000"],["2024-07-25T16:42:55.010000"],["2024-07-25T16:42:56.010000"],["2024-07-25T16:42:57.010000"],["2024-07-25T16:42:58.010000"],["2024-07-25T16:42:59.010000"],["2024-07-25T16:43:00.010000"],["2024-07-25T16:43:01.010000"],["2024-07-25T16:43:02.010000"],["2024-07-25T16:43:03.010000"],["2024-07-25T16:43:04.010000"],["2024-07-25T16:43:05.010000"],["2024-07-25T16:43:06.010000"],["2024-07-25T16:43:07.010000"],["2024-07-25T16:43:08.010000"],["2024-07-25T16:43:09.010000"],["2024-07-25T16:43:10.010000"],["2024-07-25T16:43:11.010000"],["2024-07-25T16:43:12.010000"],["2024-07-25T16:43:13.010000"],["2024-07-25T16:43:14.010000"],["2024-07-25T16:43:15.010000"],["2024-07-25T16:43:16.010000"],["2024-07-25T16:43:17.010000"],["2024-07-25T16:43:18.010000"],["2024-07-25T16:43:19.010000"],["2024-07-25T16:43:20.010000"],["2024-07-25T16:43:21.010000"],["2024-07-25T16:43:22.010000"],["2024-07-25T16:43:23.010000"],["2024-07-25T16:43:24.010000"],["2024-07-25T16:43:25.010000"],["2024-07-25T16:43:26.010000"],["2024-07-25T16:43:27.010000"],["2024-07-25T16:43:28.010000"],["2024-07-25T16:43:29.010000"],["2024-07-25T16:43:30.010000"],["2024-07-25T16:43:31.010000"],["2024-07-25T16:43:32.010000"],["2024-07-25T16:43:33.010000"],["2024-07-25T16:43:34.010000"],["2024-07-25T16:43:35.010000"],["2024-07-25T16:43:36.010000"],["2024-07-25T16:43:37.010000"],["2024-07-25T16:43:38.010000"],["2024-07-25T16:43:39.010000"],["2024-07-25T16:43:40.010000"],["2024-07-25T16:43:41.010000"],["2024-07-25T16:43:42.010000"],["2024-07-25T16:43:43.010000"],["2024-07-25T16:43:44.010000"],["2024-07-25T16:43:45.010000"],["2024-07-25T16:43:46.010000"],["2024-07-25T16:43:47.010000"],["2024-07-25T16:43:48.010000"],["2024-07-25T16:43:49.010000"],["2024-07-25T16:43:50.010000"],["2024-07-25T16:43:51.010000"],["2024-07-25T16:43:52.010000"],["2024-07-25T16:43:53.010000"],["2024-07-25T16:43:54.010000"],["2024-07-25T16:43:55.010000"],["2024-07-25T16:43:56.010000"],["2024-07-25T16:43:57.010000"],["2024-07-25T16:43:58.010000"],["2024-07-25T16:43:59.010000"],["2024-07-25T16:44:00.010000"],["2024-07-25T16:44:01.010000"],["2024-07-25T16:44:02.010000"],["2024-07-25T16:44:03.010000"],["2024-07-25T16:44:04.010000"],["2024-07-25T16:44:05.010000"],["2024-07-25T16:44:06.010000"],["2024-07-25T16:44:07.010000"],["2024-07-25T16:44:08.010000"],["2024-07-25T16:44:09.010000"],["2024-07-25T16:44:10.010000"],["2024-07-25T16:44:11.010000"],["2024-07-25T16:44:12.010000"],["2024-07-25T16:44:13.010000"],["2024-07-25T16:44:14.010000"],["2024-07-25T16:44:15.010000"],["2024-07-25T16:44:16.010000"],["2024-07-25T16:44:17.010000"],["2024-07-25T16:44:18.010000"],["2024-07-25T16:44:19.010000"],["2024-07-25T16:44:20.010000"],["2024-07-25T16:44:21.010000"],["2024-07-25T16:44:22.010000"],["2024-07-25T16:44:23.010000"],["2024-07-25T16:44:24.010000"],["2024-07-25T16:44:25.010000"],["2024-07-25T16:44:26.010000"],["2024-07-25T16:44:27.010000"],["2024-07-25T16:44:28.010000"],["2024-07-25T16:44:29.010000"],["2024-07-25T16:44:30.010000"],["2024-07-25T16:44:31.010000"],["2024-07-25T16:44:32.010000"],["2024-07-25T16:44:33.010000"],["2024-07-25T16:44:34.010000"],["2024-07-25T16:44:35.010000"],["2024-07-25T16:44:36.010000"],["2024-07-25T16:44:37.010000"],["2024-07-25T16:44:38.010000"],["2024-07-25T16:44:39.010000"],["2024-07-25T16:44:40.010000"],["2024-07-25T16:44:41.010000"],["2024-07-25T16:44:42.010000"],["2024-07-25T16:44:43.010000"],["2024-07-25T16:44:44.010000"],["2024-07-25T16:44:45.010000"],["2024-07-25T16:44:46.010000"],["2024-07-25T16:44:47.010000"],["2024-07-25T16:44:48.010000"],["2024-07-25T16:44:49.010000"],["2024-07-25T16:44:50.010000"],["2024-07-25T16:44:51.010000"],["2024-07-25T16:44:52.010000"],["2024-07-25T16:44:53.010000"],["2024-07-25T16:44:54.010000"],["2024-07-25T16:44:55.010000"],["2024-07-25T16:44:56.010000"],["2024-07-25T16:44:57.010000"],["2024-07-25T16:44:58.010000"],["2024-07-25T16:44:59.010000"],["2024-07-25T16:45:00.010000"],["2024-07-25T16:45:01.010000"],["2024-07-25T16:45:02.010000"],["2024-07-25T16:45:03.010000"],["2024-07-25T16:45:04.010000"],["2024-07-25T16:45:05.010000"],["2024-07-25T16:45:06.010000"],["2024-07-25T16:45:07.010000"],["2024-07-25T16:45:08.010000"],["2024-07-25T16:45:09.010000"],["2024-07-25T16:45:10.010000"],["2024-07-25T16:45:11.010000"],["2024-07-25T16:45:12.010000"],["2024-07-25T16:45:13.010000"],["2024-07-25T16:45:14.010000"],["2024-07-25T16:45:15.010000"],["2024-07-25T16:45:16.010000"],["2024-07-25T16:45:17.010000"],["2024-07-25T16:45:18.010000"],["2024-07-25T16:45:19.010000"],["2024-07-25T16:45:20.010000"],["2024-07-25T16:45:21.010000"],["2024-07-25T16:45:22.010000"],["2024-07-25T16:45:23.010000"],["2024-07-25T16:45:24.010000"],["2024-07-25T16:45:25.010000"],["2024-07-25T16:45:26.010000"],["2024-07-25T16:45:27.010000"],["2024-07-25T16:45:28.010000"],["2024-07-25T16:45:29.010000"],["2024-07-25T16:45:30.010000"],["2024-07-25T16:45:31.010000"],["2024-07-25T16:45:32.010000"],["2024-07-25T16:45:33.010000"],["2024-07-25T16:45:34.010000"],["2024-07-25T16:45:35.010000"],["2024-07-25T16:45:36.010000"],["2024-07-25T16:45:37.010000"],["2024-07-25T16:45:38.010000"],["2024-07-25T16:45:39.010000"],["2024-07-25T16:45:40.010000"],["2024-07-25T16:45:41.010000"],["2024-07-25T16:45:42.010000"],["2024-07-25T16:45:43.010000"],["2024-07-25T16:45:44.010000"],["2024-07-25T16:45:45.010000"],["2024-07-25T16:45:46.010000"],["2024-07-25T16:45:47.010000"],["2024-07-25T16:45:48.010000"],["2024-07-25T16:45:49.010000"],["2024-07-25T16:45:50.010000"],["2024-07-25T16:45:51.010000"],["2024-07-25T16:45:52.010000"],["2024-07-25T16:45:53.010000"],["2024-07-25T16:45:54.010000"],["2024-07-25T16:45:55.010000"],["2024-07-25T16:45:56.010000"],["2024-07-25T16:45:57.010000"],["2024-07-25T16:45:58.010000"],["2024-07-25T16:45:59.010000"],["2024-07-25T16:46:00.010000"],["2024-07-25T16:46:01.010000"],["2024-07-25T16:46:02.010000"],["2024-07-25T16:46:03.010000"],["2024-07-25T16:46:04.010000"],["2024-07-25T16:46:05.010000"],["2024-07-25T16:46:06.010000"],["2024-07-25T16:46:07.010000"],["2024-07-25T16:46:08.010000"],["2024-07-25T16:46:09.010000"],["2024-07-25T16:46:10.010000"],["2024-07-25T16:46:11.010000"],["2024-07-25T16:46:12.010000"],["2024-07-25T16:46:13.010000"],["2024-07-25T16:46:14.010000"],["2024-07-25T16:46:15.010000"],["2024-07-25T16:46:16.010000"],["2024-07-25T16:46:17.010000"],["2024-07-25T16:46:18.010000"],["2024-07-25T16:46:19.010000"],["2024-07-25T16:46:20.010000"],["2024-07-25T16:46:21.010000"],["2024-07-25T16:46:22.010000"],["2024-07-25T16:46:23.010000"],["2024-07-25T16:46:24.010000"],["2024-07-25T16:46:25.010000"],["2024-07-25T16:46:26.010000"],["2024-07-25T16:46:27.010000"],["2024-07-25T16:46:28.010000"],["2024-07-25T16:46:29.010000"],["2024-07-25T16:46:30.010000"],["2024-07-25T16:46:31.010000"],["2024-07-25T16:46:32.010000"],["2024-07-25T16:46:33.010000"],["2024-07-25T16:46:34.010000"],["2024-07-25T16:46:35.010000"],["2024-07-25T16:46:36.010000"],["2024-07-25T16:46:37.010000"],["2024-07-25T16:46:38.010000"],["2024-07-25T16:46:39.010000"],["2024-07-25T16:46:40.010000"],["2024-07-25T16:46:41.010000"],["2024-07-25T16:46:42.010000"],["2024-07-25T16:46:43.010000"],["2024-07-25T16:46:44.010000"],["2024-07-25T16:46:45.010000"],["2024-07-25T16:46:46.010000"],["2024-07-25T16:46:47.010000"],["2024-07-25T16:46:48.010000"],["2024-07-25T16:46:49.010000"],["2024-07-25T16:46:50.010000"],["2024-07-25T16:46:51.010000"],["2024-07-25T16:46:52.010000"],["2024-07-25T16:46:53.010000"],["2024-07-25T16:46:54.010000"],["2024-07-25T16:46:55.010000"],["2024-07-25T16:46:56.010000"],["2024-07-25T16:46:57.010000"],["2024-07-25T16:46:58.010000"],["2024-07-25T16:46:59.010000"],["2024-07-25T16:47:00.010000"],["2024-07-25T16:47:01.010000"],["2024-07-25T16:47:02.010000"],["2024-07-25T16:47:03.010000"],["2024-07-25T16:47:04.010000"],["2024-07-25T16:47:05.010000"],["2024-07-25T16:47:06.010000"],["2024-07-25T16:47:07.010000"],["2024-07-25T16:47:08.010000"],["2024-07-25T16:47:09.010000"],["2024-07-25T16:47:10.010000"],["2024-07-25T16:47:11.010000"],["2024-07-25T16:47:12.010000"],["2024-07-25T16:47:13.010000"],["2024-07-25T16:47:14.010000"],["2024-07-25T16:47:15.010000"],["2024-07-25T16:47:16.010000"],["2024-07-25T16:47:17.010000"],["2024-07-25T16:47:18.010000"],["2024-07-25T16:47:19.010000"],["2024-07-25T16:47:20.010000"],["2024-07-25T16:47:21.010000"],["2024-07-25T16:47:22.010000"],["2024-07-25T16:47:23.010000"],["2024-07-25T16:47:24.010000"],["2024-07-25T16:47:25.010000"],["2024-07-25T16:47:26.010000"],["2024-07-25T16:47:27.010000"],["2024-07-25T16:47:28.010000"],["2024-07-25T16:47:29.010000"],["2024-07-25T16:47:30.010000"],["2024-07-25T16:47:31.010000"],["2024-07-25T16:47:32.010000"],["2024-07-25T16:47:33.010000"],["2024-07-25T16:47:34.010000"],["2024-07-25T16:47:35.010000"],["2024-07-25T16:47:36.010000"],["2024-07-25T16:47:37.010000"],["2024-07-25T16:47:38.010000"],["2024-07-25T16:47:39.010000"],["2024-07-25T16:47:40.010000"],["2024-07-25T16:47:41.010000"],["2024-07-25T16:47:42.010000"],["2024-07-25T16:47:43.010000"],["2024-07-25T16:47:44.010000"],["2024-07-25T16:47:45.010000"],["2024-07-25T16:47:46.010000"],["2024-07-25T16:47:47.010000"],["2024-07-25T16:47:48.010000"],["2024-07-25T16:47:49.010000"],["2024-07-25T16:47:50.010000"],["2024-07-25T16:47:51.010000"],["2024-07-25T16:47:52.010000"],["2024-07-25T16:47:53.010000"],["2024-07-25T16:47:54.010000"],["2024-07-25T16:47:55.010000"],["2024-07-25T16:47:56.010000"],["2024-07-25T16:47:57.010000"],["2024-07-25T16:47:58.010000"],["2024-07-25T16:47:59.010000"],["2024-07-25T16:48:00.010000"],["2024-07-25T16:48:01.010000"],["2024-07-25T16:48:02.010000"],["2024-07-25T16:48:03.010000"],["2024-07-25T16:48:04.010000"],["2024-07-25T16:48:05.010000"],["2024-07-25T16:48:06.010000"],["2024-07-25T16:48:07.010000"],["2024-07-25T16:48:08.010000"],["2024-07-25T16:48:09.010000"],["2024-07-25T16:48:10.010000"],["2024-07-25T16:48:11.010000"],["2024-07-25T16:48:12.010000"],["2024-07-25T16:48:13.010000"],["2024-07-25T16:48:14.010000"],["2024-07-25T16:48:15.010000"],["2024-07-25T16:48:16.010000"],["2024-07-25T16:48:17.010000"],["2024-07-25T16:48:18.010000"],["2024-07-25T16:48:19.010000"],["2024-07-25T16:48:20.010000"],["2024-07-25T16:48:21.010000"],["2024-07-25T16:48:22.010000"],["2024-07-25T16:48:23.010000"],["2024-07-25T16:48:24.010000"],["2024-07-25T16:48:25.010000"],["2024-07-25T16:48:26.010000"],["2024-07-25T16:48:27.010000"],["2024-07-25T16:48:28.010000"],["2024-07-25T16:48:29.010000"],["2024-07-25T16:48:30.010000"],["2024-07-25T16:48:31.010000"],["2024-07-25T16:48:32.010000"],["2024-07-25T16:48:33.010000"],["2024-07-25T16:48:34.010000"],["2024-07-25T16:48:35.010000"],["2024-07-25T16:48:36.010000"],["2024-07-25T16:48:37.010000"],["2024-07-25T16:48:38.010000"],["2024-07-25T16:48:39.010000"],["2024-07-25T16:48:40.010000"],["2024-07-25T16:48:41.010000"],["2024-07-25T16:48:42.010000"],["2024-07-25T16:48:43.010000"],["2024-07-25T16:48:44.010000"],["2024-07-25T16:48:45.010000"],["2024-07-25T16:48:46.010000"],["2024-07-25T16:48:47.010000"],["2024-07-25T16:48:48.010000"],["2024-07-25T16:48:49.010000"],["2024-07-25T16:48:50.010000"],["2024-07-25T16:48:51.010000"],["2024-07-25T16:48:52.010000"],["2024-07-25T16:48:53.010000"],["2024-07-25T16:48:54.010000"],["2024-07-25T16:48:55.010000"],["2024-07-25T16:48:56.010000"],["2024-07-25T16:48:57.010000"],["2024-07-25T16:48:58.010000"],["2024-07-25T16:48:59.010000"],["2024-07-25T16:49:00.010000"],["2024-07-25T16:49:01.010000"],["2024-07-25T16:49:02.010000"],["2024-07-25T16:49:03.010000"],["2024-07-25T16:49:04.010000"],["2024-07-25T16:49:05.010000"],["2024-07-25T16:49:06.010000"],["2024-07-25T16:49:07.010000"],["2024-07-25T16:49:08.010000"],["2024-07-25T16:49:09.010000"],["2024-07-25T16:49:10.010000"],["2024-07-25T16:49:11.010000"],["2024-07-25T16:49:12.010000"],["2024-07-25T16:49:13.010000"],["2024-07-25T16:49:14.010000"],["2024-07-25T16:49:15.010000"],["2024-07-25T16:49:16.010000"],["2024-07-25T16:49:17.010000"],["2024-07-25T16:49:18.010000"],["2024-07-25T16:49:19.010000"],["2024-07-25T16:49:20.010000"],["2024-07-25T16:49:21.010000"],["2024-07-25T16:49:22.010000"],["2024-07-25T16:49:23.010000"],["2024-07-25T16:49:24.010000"],["2024-07-25T16:49:25.010000"],["2024-07-25T16:49:26.010000"],["2024-07-25T16:49:27.010000"],["2024-07-25T16:49:28.010000"],["2024-07-25T16:49:29.010000"],["2024-07-25T16:49:30.010000"],["2024-07-25T16:49:31.010000"],["2024-07-25T16:49:32.010000"],["2024-07-25T16:49:33.010000"],["2024-07-25T16:49:34.010000"],["2024-07-25T16:49:35.010000"],["2024-07-25T16:49:36.010000"],["2024-07-25T16:49:37.010000"],["2024-07-25T16:49:38.010000"],["2024-07-25T16:49:39.010000"],["2024-07-25T16:49:40.010000"],["2024-07-25T16:49:41.010000"],["2024-07-25T16:49:42.010000"],["2024-07-25T16:49:43.010000"],["2024-07-25T16:49:44.010000"],["2024-07-25T16:49:45.010000"],["2024-07-25T16:49:46.010000"],["2024-07-25T16:49:47.010000"],["2024-07-25T16:49:48.010000"],["2024-07-25T16:49:49.010000"],["2024-07-25T16:49:50.010000"],["2024-07-25T16:49:51.010000"],["2024-07-25T16:49:52.010000"],["2024-07-25T16:49:53.010000"],["2024-07-25T16:49:54.010000"],["2024-07-25T16:49:55.010000"],["2024-07-25T16:49:56.010000"],["2024-07-25T16:49:57.010000"],["2024-07-25T16:49:58.010000"],["2024-07-25T16:49:59.010000"],["2024-07-25T16:50:00.010000"],["2024-07-25T16:50:01.010000"],["2024-07-25T16:50:02.010000"],["2024-07-25T16:50:03.010000"],["2024-07-25T16:50:04.010000"],["2024-07-25T16:50:05.010000"],["2024-07-25T16:50:06.010000"],["2024-07-25T16:50:07.010000"],["2024-07-25T16:50:08.010000"],["2024-07-25T16:50:09.010000"],["2024-07-25T16:50:10.010000"],["2024-07-25T16:50:11.010000"],["2024-07-25T16:50:12.010000"],["2024-07-25T16:50:13.010000"],["2024-07-25T16:50:14.010000"],["2024-07-25T16:50:15.010000"],["2024-07-25T16:50:16.010000"],["2024-07-25T16:50:17.010000"],["2024-07-25T16:50:18.010000"],["2024-07-25T16:50:19.010000"],["2024-07-25T16:50:20.010000"],["2024-07-25T16:50:21.010000"],["2024-07-25T16:50:22.010000"],["2024-07-25T16:50:23.010000"],["2024-07-25T16:50:24.010000"],["2024-07-25T16:50:25.010000"],["2024-07-25T16:50:26.010000"],["2024-07-25T16:50:27.010000"],["2024-07-25T16:50:28.010000"],["2024-07-25T16:50:29.010000"],["2024-07-25T16:50:30.010000"],["2024-07-25T16:50:31.010000"],["2024-07-25T16:50:32.010000"],["2024-07-25T16:50:33.010000"],["2024-07-25T16:50:34.010000"],["2024-07-25T16:50:35.010000"],["2024-07-25T16:50:36.010000"],["2024-07-25T16:50:37.010000"],["2024-07-25T16:50:38.010000"],["2024-07-25T16:50:39.010000"],["2024-07-25T16:50:40.010000"],["2024-07-25T16:50:41.010000"],["2024-07-25T16:50:42.010000"],["2024-07-25T16:50:43.010000"],["2024-07-25T16:50:44.010000"],["2024-07-25T16:50:45.010000"],["2024-07-25T16:50:46.010000"],["2024-07-25T16:50:47.010000"],["2024-07-25T16:50:48.010000"],["2024-07-25T16:50:49.010000"],["2024-07-25T16:50:50.010000"],["2024-07-25T16:50:51.010000"],["2024-07-25T16:50:52.010000"],["2024-07-25T16:50:53.010000"],["2024-07-25T16:50:54.010000"],["2024-07-25T16:50:55.010000"],["2024-07-25T16:50:56.010000"],["2024-07-25T16:50:57.010000"],["2024-07-25T16:50:58.010000"],["2024-07-25T16:50:59.010000"],["2024-07-25T16:51:00.010000"],["2024-07-25T16:51:01.010000"],["2024-07-25T16:51:02.010000"],["2024-07-25T16:51:03.010000"],["2024-07-25T16:51:04.010000"],["2024-07-25T16:51:05.010000"],["2024-07-25T16:51:06.010000"],["2024-07-25T16:51:07.010000"],["2024-07-25T16:51:08.010000"],["2024-07-25T16:51:09.010000"],["2024-07-25T16:51:10.010000"],["2024-07-25T16:51:11.010000"],["2024-07-25T16:51:12.010000"],["2024-07-25T16:51:13.010000"],["2024-07-25T16:51:14.010000"],["2024-07-25T16:51:15.010000"],["2024-07-25T16:51:16.010000"],["2024-07-25T16:51:17.010000"],["2024-07-25T16:51:18.010000"],["2024-07-25T16:51:19.010000"],["2024-07-25T16:51:20.010000"],["2024-07-25T16:51:21.010000"],["2024-07-25T16:51:22.010000"],["2024-07-25T16:51:23.010000"],["2024-07-25T16:51:24.010000"],["2024-07-25T16:51:25.010000"],["2024-07-25T16:51:26.010000"],["2024-07-25T16:51:27.010000"],["2024-07-25T16:51:28.010000"],["2024-07-25T16:51:29.010000"],["2024-07-25T16:51:30.010000"],["2024-07-25T16:51:31.010000"],["2024-07-25T16:51:32.010000"],["2024-07-25T16:51:33.010000"],["2024-07-25T16:51:34.010000"],["2024-07-25T16:51:35.010000"],["2024-07-25T16:51:36.010000"],["2024-07-25T16:51:37.010000"],["2024-07-25T16:51:38.010000"],["2024-07-25T16:51:39.010000"],["2024-07-25T16:51:40.010000"],["2024-07-25T16:51:41.010000"],["2024-07-25T16:51:42.010000"],["2024-07-25T16:51:43.010000"],["2024-07-25T16:51:44.010000"],["2024-07-25T16:51:45.010000"],["2024-07-25T16:51:46.010000"],["2024-07-25T16:51:47.010000"],["2024-07-25T16:51:48.010000"],["2024-07-25T16:51:49.010000"],["2024-07-25T16:51:50.010000"],["2024-07-25T16:51:51.010000"],["2024-07-25T16:51:52.010000"],["2024-07-25T16:51:53.010000"],["2024-07-25T16:51:54.010000"],["2024-07-25T16:51:55.010000"],["2024-07-25T16:51:56.010000"],["2024-07-25T16:51:57.010000"],["2024-07-25T16:51:58.010000"],["2024-07-25T16:51:59.010000"],["2024-07-25T16:52:00.010000"],["2024-07-25T16:52:01.010000"],["2024-07-25T16:52:02.010000"],["2024-07-25T16:52:03.010000"],["2024-07-25T16:52:04.010000"],["2024-07-25T16:52:05.010000"],["2024-07-25T16:52:06.010000"],["2024-07-25T16:52:07.010000"],["2024-07-25T16:52:08.010000"],["2024-07-25T16:52:09.010000"],["2024-07-25T16:52:10.010000"],["2024-07-25T16:52:11.010000"],["2024-07-25T16:52:12.010000"],["2024-07-25T16:52:13.010000"],["2024-07-25T16:52:14.010000"],["2024-07-25T16:52:15.010000"],["2024-07-25T16:52:16.010000"],["2024-07-25T16:52:17.010000"],["2024-07-25T16:52:18.010000"],["2024-07-25T16:52:19.010000"],["2024-07-25T16:52:20.010000"],["2024-07-25T16:52:21.010000"],["2024-07-25T16:52:22.010000"],["2024-07-25T16:52:23.010000"],["2024-07-25T16:52:24.010000"],["2024-07-25T16:52:25.010000"],["2024-07-25T16:52:26.010000"],["2024-07-25T16:52:27.010000"],["2024-07-25T16:52:28.010000"],["2024-07-25T16:52:29.010000"],["2024-07-25T16:52:30.010000"],["2024-07-25T16:52:31.010000"],["2024-07-25T16:52:32.010000"],["2024-07-25T16:52:33.010000"],["2024-07-25T16:52:34.010000"],["2024-07-25T16:52:35.010000"],["2024-07-25T16:52:36.010000"],["2024-07-25T16:52:37.010000"],["2024-07-25T16:52:38.010000"],["2024-07-25T16:52:39.010000"],["2024-07-25T16:52:40.010000"],["2024-07-25T16:52:41.010000"],["2024-07-25T16:52:42.010000"],["2024-07-25T16:52:43.010000"],["2024-07-25T16:52:44.010000"],["2024-07-25T16:52:45.010000"],["2024-07-25T16:52:46.010000"],["2024-07-25T16:52:47.010000"],["2024-07-25T16:52:48.010000"],["2024-07-25T16:52:49.010000"],["2024-07-25T16:52:50.010000"],["2024-07-25T16:52:51.010000"],["2024-07-25T16:52:52.010000"],["2024-07-25T16:52:53.010000"],["2024-07-25T16:52:54.010000"],["2024-07-25T16:52:55.010000"],["2024-07-25T16:52:56.010000"],["2024-07-25T16:52:57.010000"],["2024-07-25T16:52:58.010000"],["2024-07-25T16:52:59.010000"],["2024-07-25T16:53:00.010000"],["2024-07-25T16:53:01.010000"],["2024-07-25T16:53:02.010000"],["2024-07-25T16:53:03.010000"],["2024-07-25T16:53:04.010000"],["2024-07-25T16:53:05.010000"],["2024-07-25T16:53:06.010000"],["2024-07-25T16:53:07.010000"],["2024-07-25T16:53:08.010000"],["2024-07-25T16:53:09.010000"],["2024-07-25T16:53:10.010000"],["2024-07-25T16:53:11.010000"],["2024-07-25T16:53:12.010000"],["2024-07-25T16:53:13.010000"],["2024-07-25T16:53:14.010000"],["2024-07-25T16:53:15.010000"],["2024-07-25T16:53:16.010000"],["2024-07-25T16:53:17.010000"],["2024-07-25T16:53:18.010000"],["2024-07-25T16:53:19.010000"],["2024-07-25T16:53:20.010000"],["2024-07-25T16:53:21.010000"],["2024-07-25T16:53:22.010000"],["2024-07-25T16:53:23.010000"],["2024-07-25T16:53:24.010000"],["2024-07-25T16:53:25.010000"],["2024-07-25T16:53:26.010000"],["2024-07-25T16:53:27.010000"],["2024-07-25T16:53:28.010000"],["2024-07-25T16:53:29.010000"],["2024-07-25T16:53:30.010000"],["2024-07-25T16:53:31.010000"],["2024-07-25T16:53:32.010000"],["2024-07-25T16:53:33.010000"],["2024-07-25T16:53:34.010000"],["2024-07-25T16:53:35.010000"],["2024-07-25T16:53:36.010000"],["2024-07-25T16:53:37.010000"],["2024-07-25T16:53:38.010000"],["2024-07-25T16:53:39.010000"],["2024-07-25T16:53:40.010000"],["2024-07-25T16:53:41.010000"],["2024-07-25T16:53:42.010000"],["2024-07-25T16:53:43.010000"],["2024-07-25T16:53:44.010000"],["2024-07-25T16:53:45.010000"],["2024-07-25T16:53:46.010000"],["2024-07-25T16:53:47.010000"],["2024-07-25T16:53:48.010000"],["2024-07-25T16:53:49.010000"],["2024-07-25T16:53:50.010000"],["2024-07-25T16:53:51.010000"],["2024-07-25T16:53:52.010000"],["2024-07-25T16:53:53.010000"],["2024-07-25T16:53:54.010000"],["2024-07-25T16:53:55.010000"],["2024-07-25T16:53:56.010000"],["2024-07-25T16:53:57.010000"],["2024-07-25T16:53:58.010000"],["2024-07-25T16:53:59.010000"],["2024-07-25T16:54:00.010000"],["2024-07-25T16:54:01.010000"],["2024-07-25T16:54:02.010000"],["2024-07-25T16:54:03.010000"],["2024-07-25T16:54:04.010000"],["2024-07-25T16:54:05.010000"],["2024-07-25T16:54:06.010000"],["2024-07-25T16:54:07.010000"],["2024-07-25T16:54:08.010000"],["2024-07-25T16:54:09.010000"],["2024-07-25T16:54:10.010000"],["2024-07-25T16:54:11.010000"],["2024-07-25T16:54:12.010000"],["2024-07-25T16:54:13.010000"],["2024-07-25T16:54:14.010000"],["2024-07-25T16:54:15.010000"],["2024-07-25T16:54:16.010000"],["2024-07-25T16:54:17.010000"],["2024-07-25T16:54:18.010000"],["2024-07-25T16:54:19.010000"],["2024-07-25T16:54:20.010000"],["2024-07-25T16:54:21.010000"],["2024-07-25T16:54:22.010000"],["2024-07-25T16:54:23.010000"],["2024-07-25T16:54:24.010000"],["2024-07-25T16:54:25.010000"],["2024-07-25T16:54:26.010000"],["2024-07-25T16:54:27.010000"],["2024-07-25T16:54:28.010000"],["2024-07-25T16:54:29.010000"],["2024-07-25T16:54:30.010000"],["2024-07-25T16:54:31.010000"],["2024-07-25T16:54:32.010000"],["2024-07-25T16:54:33.010000"],["2024-07-25T16:54:34.010000"],["2024-07-25T16:54:35.010000"],["2024-07-25T16:54:36.010000"],["2024-07-25T16:54:37.010000"],["2024-07-25T16:54:38.010000"],["2024-07-25T16:54:39.010000"],["2024-07-25T16:54:40.010000"],["2024-07-25T16:54:41.010000"],["2024-07-25T16:54:42.010000"],["2024-07-25T16:54:43.010000"],["2024-07-25T16:54:44.010000"],["2024-07-25T16:54:45.010000"],["2024-07-25T16:54:46.010000"],["2024-07-25T16:54:47.010000"],["2024-07-25T16:54:48.010000"],["2024-07-25T16:54:49.010000"],["2024-07-25T16:54:50.010000"],["2024-07-25T16:54:51.010000"],["2024-07-25T16:54:52.010000"],["2024-07-25T16:54:53.010000"],["2024-07-25T16:54:54.010000"],["2024-07-25T16:54:55.010000"],["2024-07-25T16:54:56.010000"],["2024-07-25T16:54:57.010000"],["2024-07-25T16:54:58.010000"],["2024-07-25T16:54:59.010000"],["2024-07-25T16:55:00.010000"],["2024-07-25T16:55:01.010000"],["2024-07-25T16:55:02.010000"],["2024-07-25T16:55:03.010000"],["2024-07-25T16:55:04.010000"],["2024-07-25T16:55:05.010000"],["2024-07-25T16:55:06.010000"],["2024-07-25T16:55:07.010000"],["2024-07-25T16:55:08.010000"],["2024-07-25T16:55:09.010000"],["2024-07-25T16:55:10.010000"],["2024-07-25T16:55:11.010000"],["2024-07-25T16:55:12.010000"],["2024-07-25T16:55:13.010000"],["2024-07-25T16:55:14.010000"],["2024-07-25T16:55:15.010000"],["2024-07-25T16:55:16.010000"],["2024-07-25T16:55:17.010000"],["2024-07-25T16:55:18.010000"],["2024-07-25T16:55:19.010000"],["2024-07-25T16:55:20.010000"],["2024-07-25T16:55:21.010000"],["2024-07-25T16:55:22.010000"],["2024-07-25T16:55:23.010000"],["2024-07-25T16:55:24.010000"],["2024-07-25T16:55:25.010000"],["2024-07-25T16:55:26.010000"],["2024-07-25T16:55:27.010000"],["2024-07-25T16:55:28.010000"],["2024-07-25T16:55:29.010000"],["2024-07-25T16:55:30.010000"],["2024-07-25T16:55:31.010000"],["2024-07-25T16:55:32.010000"],["2024-07-25T16:55:33.010000"],["2024-07-25T16:55:34.010000"],["2024-07-25T16:55:35.010000"],["2024-07-25T16:55:36.010000"],["2024-07-25T16:55:37.010000"],["2024-07-25T16:55:38.010000"],["2024-07-25T16:55:39.010000"],["2024-07-25T16:55:40.010000"],["2024-07-25T16:55:41.010000"],["2024-07-25T16:55:42.010000"],["2024-07-25T16:55:43.010000"],["2024-07-25T16:55:44.010000"],["2024-07-25T16:55:45.010000"],["2024-07-25T16:55:46.010000"],["2024-07-25T16:55:47.010000"],["2024-07-25T16:55:48.010000"],["2024-07-25T16:55:49.010000"],["2024-07-25T16:55:50.010000"],["2024-07-25T16:55:51.010000"],["2024-07-25T16:55:52.010000"],["2024-07-25T16:55:53.010000"],["2024-07-25T16:55:54.010000"],["2024-07-25T16:55:55.010000"],["2024-07-25T16:55:56.010000"],["2024-07-25T16:55:57.010000"],["2024-07-25T16:55:58.010000"],["2024-07-25T16:55:59.010000"],["2024-07-25T16:56:00.010000"],["2024-07-25T16:56:01.010000"],["2024-07-25T16:56:02.010000"],["2024-07-25T16:56:03.010000"],["2024-07-25T16:56:04.010000"],["2024-07-25T16:56:05.010000"],["2024-07-25T16:56:06.010000"],["2024-07-25T16:56:07.010000"],["2024-07-25T16:56:08.010000"],["2024-07-25T16:56:09.010000"],["2024-07-25T16:56:10.010000"],["2024-07-25T16:56:11.010000"],["2024-07-25T16:56:12.010000"],["2024-07-25T16:56:13.010000"],["2024-07-25T16:56:14.010000"],["2024-07-25T16:56:15.010000"],["2024-07-25T16:56:16.010000"],["2024-07-25T16:56:17.010000"],["2024-07-25T16:56:18.010000"],["2024-07-25T16:56:19.010000"],["2024-07-25T16:56:20.010000"],["2024-07-25T16:56:21.010000"],["2024-07-25T16:56:22.010000"],["2024-07-25T16:56:23.010000"],["2024-07-25T16:56:24.010000"],["2024-07-25T16:56:25.010000"],["2024-07-25T16:56:26.010000"],["2024-07-25T16:56:27.010000"],["2024-07-25T16:56:28.010000"],["2024-07-25T16:56:29.010000"],["2024-07-25T16:56:30.010000"],["2024-07-25T16:56:31.010000"],["2024-07-25T16:56:32.010000"],["2024-07-25T16:56:33.010000"],["2024-07-25T16:56:34.010000"],["2024-07-25T16:56:35.010000"],["2024-07-25T16:56:36.010000"],["2024-07-25T16:56:37.010000"],["2024-07-25T16:56:38.010000"],["2024-07-25T16:56:39.010000"],["2024-07-25T16:56:40.010000"],["2024-07-25T16:56:41.010000"],["2024-07-25T16:56:42.010000"],["2024-07-25T16:56:43.010000"],["2024-07-25T16:56:44.010000"],["2024-07-25T16:56:45.010000"],["2024-07-25T16:56:46.010000"],["2024-07-25T16:56:47.010000"],["2024-07-25T16:56:48.010000"],["2024-07-25T16:56:49.010000"],["2024-07-25T16:56:50.010000"],["2024-07-25T16:56:51.010000"],["2024-07-25T16:56:52.010000"],["2024-07-25T16:56:53.010000"],["2024-07-25T16:56:54.010000"],["2024-07-25T16:56:55.010000"],["2024-07-25T16:56:56.010000"],["2024-07-25T16:56:57.010000"],["2024-07-25T16:56:58.010000"],["2024-07-25T16:56:59.010000"],["2024-07-25T16:57:00.010000"],["2024-07-25T16:57:01.010000"],["2024-07-25T16:57:02.010000"],["2024-07-25T16:57:03.010000"],["2024-07-25T16:57:04.010000"],["2024-07-25T16:57:05.010000"],["2024-07-25T16:57:06.010000"],["2024-07-25T16:57:07.010000"],["2024-07-25T16:57:08.010000"],["2024-07-25T16:57:09.010000"],["2024-07-25T16:57:10.010000"],["2024-07-25T16:57:11.010000"],["2024-07-25T16:57:12.010000"],["2024-07-25T16:57:13.010000"],["2024-07-25T16:57:14.010000"],["2024-07-25T16:57:15.010000"],["2024-07-25T16:57:16.010000"],["2024-07-25T16:57:17.010000"],["2024-07-25T16:57:18.010000"],["2024-07-25T16:57:19.010000"],["2024-07-25T16:57:20.010000"],["2024-07-25T16:57:21.010000"],["2024-07-25T16:57:22.010000"],["2024-07-25T16:57:23.010000"],["2024-07-25T16:57:24.010000"],["2024-07-25T16:57:25.010000"],["2024-07-25T16:57:26.010000"],["2024-07-25T16:57:27.010000"],["2024-07-25T16:57:28.010000"],["2024-07-25T16:57:29.010000"],["2024-07-25T16:57:30.010000"],["2024-07-25T16:57:31.010000"],["2024-07-25T16:57:32.010000"],["2024-07-25T16:57:33.010000"],["2024-07-25T16:57:34.010000"],["2024-07-25T16:57:35.010000"],["2024-07-25T16:57:36.010000"],["2024-07-25T16:57:37.010000"],["2024-07-25T16:57:38.010000"],["2024-07-25T16:57:39.010000"],["2024-07-25T16:57:40.010000"],["2024-07-25T16:57:41.010000"],["2024-07-25T16:57:42.010000"],["2024-07-25T16:57:43.010000"],["2024-07-25T16:57:44.010000"],["2024-07-25T16:57:45.010000"],["2024-07-25T16:57:46.010000"],["2024-07-25T16:57:47.010000"],["2024-07-25T16:57:48.010000"],["2024-07-25T16:57:49.010000"],["2024-07-25T16:57:50.010000"],["2024-07-25T16:57:51.010000"],["2024-07-25T16:57:52.010000"],["2024-07-25T16:57:53.010000"],["2024-07-25T16:57:54.010000"],["2024-07-25T16:57:55.010000"],["2024-07-25T16:57:56.010000"],["2024-07-25T16:57:57.010000"],["2024-07-25T16:57:58.010000"],["2024-07-25T16:57:59.010000"],["2024-07-25T16:58:00.010000"],["2024-07-25T16:58:01.010000"],["2024-07-25T16:58:02.010000"],["2024-07-25T16:58:03.010000"],["2024-07-25T16:58:04.010000"],["2024-07-25T16:58:05.010000"],["2024-07-25T16:58:06.010000"],["2024-07-25T16:58:07.010000"],["2024-07-25T16:58:08.010000"],["2024-07-25T16:58:09.010000"],["2024-07-25T16:58:10.010000"],["2024-07-25T16:58:11.010000"],["2024-07-25T16:58:12.010000"],["2024-07-25T16:58:13.010000"],["2024-07-25T16:58:14.010000"],["2024-07-25T16:58:15.010000"],["2024-07-25T16:58:16.010000"],["2024-07-25T16:58:17.010000"],["2024-07-25T16:58:18.010000"],["2024-07-25T16:58:19.010000"],["2024-07-25T16:58:20.010000"],["2024-07-25T16:58:21.010000"],["2024-07-25T16:58:22.010000"],["2024-07-25T16:58:23.010000"],["2024-07-25T16:58:24.010000"],["2024-07-25T16:58:25.010000"],["2024-07-25T16:58:26.010000"],["2024-07-25T16:58:27.010000"],["2024-07-25T16:58:28.010000"],["2024-07-25T16:58:29.010000"],["2024-07-25T16:58:30.010000"],["2024-07-25T16:58:31.010000"],["2024-07-25T16:58:32.010000"],["2024-07-25T16:58:33.010000"],["2024-07-25T16:58:34.010000"],["2024-07-25T16:58:35.010000"],["2024-07-25T16:58:36.010000"],["2024-07-25T16:58:37.010000"],["2024-07-25T16:58:38.010000"],["2024-07-25T16:58:39.010000"],["2024-07-25T16:58:40.010000"],["2024-07-25T16:58:41.010000"],["2024-07-25T16:58:42.010000"],["2024-07-25T16:58:43.010000"],["2024-07-25T16:58:44.010000"],["2024-07-25T16:58:45.010000"],["2024-07-25T16:58:46.010000"],["2024-07-25T16:58:47.010000"],["2024-07-25T16:58:48.010000"],["2024-07-25T16:58:49.010000"],["2024-07-25T16:58:50.010000"],["2024-07-25T16:58:51.010000"],["2024-07-25T16:58:52.010000"],["2024-07-25T16:58:53.010000"],["2024-07-25T16:58:54.010000"],["2024-07-25T16:58:55.010000"],["2024-07-25T16:58:56.010000"],["2024-07-25T16:58:57.010000"],["2024-07-25T16:58:58.010000"],["2024-07-25T16:58:59.010000"],["2024-07-25T16:59:00.010000"],["2024-07-25T16:59:01.010000"],["2024-07-25T16:59:02.010000"],["2024-07-25T16:59:03.010000"],["2024-07-25T16:59:04.010000"],["2024-07-25T16:59:05.010000"],["2024-07-25T16:59:06.010000"],["2024-07-25T16:59:07.010000"],["2024-07-25T16:59:08.010000"],["2024-07-25T16:59:09.010000"],["2024-07-25T16:59:10.010000"],["2024-07-25T16:59:11.010000"],["2024-07-25T16:59:12.010000"],["2024-07-25T16:59:13.010000"],["2024-07-25T16:59:14.010000"],["2024-07-25T16:59:15.010000"],["2024-07-25T16:59:16.010000"],["2024-07-25T16:59:17.010000"],["2024-07-25T16:59:18.010000"],["2024-07-25T16:59:19.010000"],["2024-07-25T16:59:20.010000"],["2024-07-25T16:59:21.010000"],["2024-07-25T16:59:22.010000"],["2024-07-25T16:59:23.010000"],["2024-07-25T16:59:24.010000"],["2024-07-25T16:59:25.010000"],["2024-07-25T16:59:26.010000"],["2024-07-25T16:59:27.010000"],["2024-07-25T16:59:28.010000"],["2024-07-25T16:59:29.010000"],["2024-07-25T16:59:30.010000"],["2024-07-25T16:59:31.010000"],["2024-07-25T16:59:32.010000"],["2024-07-25T16:59:33.010000"],["2024-07-25T16:59:34.010000"],["2024-07-25T16:59:35.010000"],["2024-07-25T16:59:36.010000"],["2024-07-25T16:59:37.010000"],["2024-07-25T16:59:38.010000"],["2024-07-25T16:59:39.010000"],["2024-07-25T16:59:40.010000"],["2024-07-25T16:59:41.010000"],["2024-07-25T16:59:42.010000"],["2024-07-25T16:59:43.010000"],["2024-07-25T16:59:44.010000"],["2024-07-25T16:59:45.010000"],["2024-07-25T16:59:46.010000"],["2024-07-25T16:59:47.010000"],["2024-07-25T16:59:48.010000"],["2024-07-25T16:59:49.010000"],["2024-07-25T16:59:50.010000"],["2024-07-25T16:59:51.010000"],["2024-07-25T16:59:52.010000"],["2024-07-25T16:59:53.010000"],["2024-07-25T16:59:54.010000"],["2024-07-25T16:59:55.010000"],["2024-07-25T16:59:56.010000"],["2024-07-25T16:59:57.010000"],["2024-07-25T16:59:58.010000"],["2024-07-25T16:59:59.010000"],["2024-07-25T17:00:00.010000"],["2024-07-25T17:00:01.010000"],["2024-07-25T17:00:02.010000"],["2024-07-25T17:00:03.010000"],["2024-07-25T17:00:04.010000"],["2024-07-25T17:00:05.010000"],["2024-07-25T17:00:06.010000"],["2024-07-25T17:00:07.010000"],["2024-07-25T17:00:08.010000"],["2024-07-25T17:00:09.010000"],["2024-07-25T17:00:10.010000"],["2024-07-25T17:00:11.010000"],["2024-07-25T17:00:12.010000"],["2024-07-25T17:00:13.010000"],["2024-07-25T17:00:14.010000"],["2024-07-25T17:00:15.010000"],["2024-07-25T17:00:16.010000"],["2024-07-25T17:00:17.010000"],["2024-07-25T17:00:18.010000"],["2024-07-25T17:00:19.010000"],["2024-07-25T17:00:20.010000"],["2024-07-25T17:00:21.010000"],["2024-07-25T17:00:22.010000"],["2024-07-25T17:00:23.010000"],["2024-07-25T17:00:24.010000"],["2024-07-25T17:00:25.010000"],["2024-07-25T17:00:26.010000"],["2024-07-25T17:00:27.010000"],["2024-07-25T17:00:28.010000"],["2024-07-25T17:00:29.010000"],["2024-07-25T17:00:30.010000"],["2024-07-25T17:00:31.010000"],["2024-07-25T17:00:32.010000"],["2024-07-25T17:00:33.010000"],["2024-07-25T17:00:34.010000"],["2024-07-25T17:00:35.010000"],["2024-07-25T17:00:36.010000"],["2024-07-25T17:00:37.010000"],["2024-07-25T17:00:38.010000"],["2024-07-25T17:00:39.010000"],["2024-07-25T17:00:40.010000"],["2024-07-25T17:00:41.010000"],["2024-07-25T17:00:42.010000"],["2024-07-25T17:00:43.010000"],["2024-07-25T17:00:44.010000"],["2024-07-25T17:00:45.010000"],["2024-07-25T17:00:46.010000"],["2024-07-25T17:00:47.010000"],["2024-07-25T17:00:48.010000"],["2024-07-25T17:00:49.010000"],["2024-07-25T17:00:50.010000"],["2024-07-25T17:00:51.010000"],["2024-07-25T17:00:52.010000"],["2024-07-25T17:00:53.010000"],["2024-07-25T17:00:54.010000"],["2024-07-25T17:00:55.010000"],["2024-07-25T17:00:56.010000"],["2024-07-25T17:00:57.010000"],["2024-07-25T17:00:58.010000"],["2024-07-25T17:00:59.010000"],["2024-07-25T17:01:00.010000"],["2024-07-25T17:01:01.010000"],["2024-07-25T17:01:02.010000"],["2024-07-25T17:01:03.010000"],["2024-07-25T17:01:04.010000"],["2024-07-25T17:01:05.010000"],["2024-07-25T17:01:06.010000"],["2024-07-25T17:01:07.010000"],["2024-07-25T17:01:08.010000"],["2024-07-25T17:01:09.010000"],["2024-07-25T17:01:10.010000"],["2024-07-25T17:01:11.010000"],["2024-07-25T17:01:12.010000"],["2024-07-25T17:01:13.010000"],["2024-07-25T17:01:14.010000"],["2024-07-25T17:01:15.010000"],["2024-07-25T17:01:16.010000"],["2024-07-25T17:01:17.010000"],["2024-07-25T17:01:18.010000"],["2024-07-25T17:01:19.010000"],["2024-07-25T17:01:20.010000"],["2024-07-25T17:01:21.010000"],["2024-07-25T17:01:22.010000"],["2024-07-25T17:01:23.010000"],["2024-07-25T17:01:24.010000"],["2024-07-25T17:01:25.010000"],["2024-07-25T17:01:26.010000"],["2024-07-25T17:01:27.010000"],["2024-07-25T17:01:28.010000"],["2024-07-25T17:01:29.010000"],["2024-07-25T17:01:30.010000"],["2024-07-25T17:01:31.010000"],["2024-07-25T17:01:32.010000"],["2024-07-25T17:01:33.010000"],["2024-07-25T17:01:34.010000"],["2024-07-25T17:01:35.010000"],["2024-07-25T17:01:36.010000"],["2024-07-25T17:01:37.010000"],["2024-07-25T17:01:38.010000"],["2024-07-25T17:01:39.010000"],["2024-07-25T17:01:40.010000"],["2024-07-25T17:01:41.010000"],["2024-07-25T17:01:42.010000"],["2024-07-25T17:01:43.010000"],["2024-07-25T17:01:44.010000"],["2024-07-25T17:01:45.010000"],["2024-07-25T17:01:46.010000"],["2024-07-25T17:01:47.010000"],["2024-07-25T17:01:48.010000"],["2024-07-25T17:01:49.010000"],["2024-07-25T17:01:50.010000"],["2024-07-25T17:01:51.010000"],["2024-07-25T17:01:52.010000"],["2024-07-25T17:01:53.010000"],["2024-07-25T17:01:54.010000"],["2024-07-25T17:01:55.010000"],["2024-07-25T17:01:56.010000"],["2024-07-25T17:01:57.010000"],["2024-07-25T17:01:58.010000"],["2024-07-25T17:01:59.010000"],["2024-07-25T17:02:00.010000"],["2024-07-25T17:02:01.010000"],["2024-07-25T17:02:02.010000"],["2024-07-25T17:02:03.010000"],["2024-07-25T17:02:04.010000"],["2024-07-25T17:02:05.010000"],["2024-07-25T17:02:06.010000"],["2024-07-25T17:02:07.010000"],["2024-07-25T17:02:08.010000"],["2024-07-25T17:02:09.010000"],["2024-07-25T17:02:10.010000"],["2024-07-25T17:02:11.010000"],["2024-07-25T17:02:12.010000"],["2024-07-25T17:02:13.010000"],["2024-07-25T17:02:14.010000"],["2024-07-25T17:02:15.010000"],["2024-07-25T17:02:16.010000"],["2024-07-25T17:02:17.010000"],["2024-07-25T17:02:18.010000"],["2024-07-25T17:02:19.010000"],["2024-07-25T17:02:20.010000"],["2024-07-25T17:02:21.010000"],["2024-07-25T17:02:22.010000"],["2024-07-25T17:02:23.010000"],["2024-07-25T17:02:24.010000"],["2024-07-25T17:02:25.010000"],["2024-07-25T17:02:26.010000"],["2024-07-25T17:02:27.010000"],["2024-07-25T17:02:28.010000"],["2024-07-25T17:02:29.010000"],["2024-07-25T17:02:30.010000"],["2024-07-25T17:02:31.010000"],["2024-07-25T17:02:32.010000"],["2024-07-25T17:02:33.010000"],["2024-07-25T17:02:34.010000"],["2024-07-25T17:02:35.010000"],["2024-07-25T17:02:36.010000"],["2024-07-25T17:02:37.010000"],["2024-07-25T17:02:38.010000"],["2024-07-25T17:02:39.010000"],["2024-07-25T17:02:40.010000"],["2024-07-25T17:02:41.010000"],["2024-07-25T17:02:42.010000"],["2024-07-25T17:02:43.010000"],["2024-07-25T17:02:44.010000"],["2024-07-25T17:02:45.010000"],["2024-07-25T17:02:46.010000"],["2024-07-25T17:02:47.010000"],["2024-07-25T17:02:48.010000"],["2024-07-25T17:02:49.010000"],["2024-07-25T17:02:50.010000"],["2024-07-25T17:02:51.010000"],["2024-07-25T17:02:52.010000"],["2024-07-25T17:02:53.010000"],["2024-07-25T17:02:54.010000"],["2024-07-25T17:02:55.010000"],["2024-07-25T17:02:56.010000"],["2024-07-25T17:02:57.010000"],["2024-07-25T17:02:58.010000"],["2024-07-25T17:02:59.010000"],["2024-07-25T17:03:00.010000"],["2024-07-25T17:03:01.010000"],["2024-07-25T17:03:02.010000"],["2024-07-25T17:03:03.010000"],["2024-07-25T17:03:04.010000"],["2024-07-25T17:03:05.010000"],["2024-07-25T17:03:06.010000"],["2024-07-25T17:03:07.010000"],["2024-07-25T17:03:08.010000"],["2024-07-25T17:03:09.010000"],["2024-07-25T17:03:10.010000"],["2024-07-25T17:03:11.010000"],["2024-07-25T17:03:12.010000"],["2024-07-25T17:03:13.010000"],["2024-07-25T17:03:14.010000"],["2024-07-25T17:03:15.010000"],["2024-07-25T17:03:16.010000"],["2024-07-25T17:03:17.010000"],["2024-07-25T17:03:18.010000"],["2024-07-25T17:03:19.010000"],["2024-07-25T17:03:20.010000"],["2024-07-25T17:03:21.010000"],["2024-07-25T17:03:22.010000"],["2024-07-25T17:03:23.010000"],["2024-07-25T17:03:24.010000"],["2024-07-25T17:03:25.010000"],["2024-07-25T17:03:26.010000"],["2024-07-25T17:03:27.010000"],["2024-07-25T17:03:28.010000"],["2024-07-25T17:03:29.010000"],["2024-07-25T17:03:30.010000"],["2024-07-25T17:03:31.010000"],["2024-07-25T17:03:32.010000"],["2024-07-25T17:03:33.010000"],["2024-07-25T17:03:34.010000"],["2024-07-25T17:03:35.010000"],["2024-07-25T17:03:36.010000"],["2024-07-25T17:03:37.010000"],["2024-07-25T17:03:38.010000"],["2024-07-25T17:03:39.010000"],["2024-07-25T17:03:40.010000"],["2024-07-25T17:03:41.010000"],["2024-07-25T17:03:42.010000"],["2024-07-25T17:03:43.010000"],["2024-07-25T17:03:44.010000"],["2024-07-25T17:03:45.010000"],["2024-07-25T17:03:46.010000"],["2024-07-25T17:03:47.010000"],["2024-07-25T17:03:48.010000"],["2024-07-25T17:03:49.010000"],["2024-07-25T17:03:50.010000"],["2024-07-25T17:03:51.010000"],["2024-07-25T17:03:52.010000"],["2024-07-25T17:03:53.010000"],["2024-07-25T17:03:54.010000"],["2024-07-25T17:03:55.010000"],["2024-07-25T17:03:56.010000"],["2024-07-25T17:03:57.010000"],["2024-07-25T17:03:58.010000"],["2024-07-25T17:03:59.010000"],["2024-07-25T17:04:00.010000"],["2024-07-25T17:04:01.010000"],["2024-07-25T17:04:02.010000"],["2024-07-25T17:04:03.010000"],["2024-07-25T17:04:04.010000"],["2024-07-25T17:04:05.010000"],["2024-07-25T17:04:06.010000"],["2024-07-25T17:04:07.010000"],["2024-07-25T17:04:08.010000"],["2024-07-25T17:04:09.010000"],["2024-07-25T17:04:10.010000"],["2024-07-25T17:04:11.010000"],["2024-07-25T17:04:12.010000"],["2024-07-25T17:04:13.010000"],["2024-07-25T17:04:14.010000"],["2024-07-25T17:04:15.010000"],["2024-07-25T17:04:16.010000"],["2024-07-25T17:04:17.010000"],["2024-07-25T17:04:18.010000"],["2024-07-25T17:04:19.010000"],["2024-07-25T17:04:20.010000"],["2024-07-25T17:04:21.010000"],["2024-07-25T17:04:22.010000"],["2024-07-25T17:04:23.010000"],["2024-07-25T17:04:24.010000"],["2024-07-25T17:04:25.010000"],["2024-07-25T17:04:26.010000"],["2024-07-25T17:04:27.010000"],["2024-07-25T17:04:28.010000"],["2024-07-25T17:04:29.010000"],["2024-07-25T17:04:30.010000"],["2024-07-25T17:04:31.010000"],["2024-07-25T17:04:32.010000"],["2024-07-25T17:04:33.010000"],["2024-07-25T17:04:34.010000"],["2024-07-25T17:04:35.010000"],["2024-07-25T17:04:36.010000"],["2024-07-25T17:04:37.010000"],["2024-07-25T17:04:38.010000"],["2024-07-25T17:04:39.010000"],["2024-07-25T17:04:40.010000"],["2024-07-25T17:04:41.010000"],["2024-07-25T17:04:42.010000"],["2024-07-25T17:04:43.010000"],["2024-07-25T17:04:44.010000"],["2024-07-25T17:04:45.010000"],["2024-07-25T17:04:46.010000"],["2024-07-25T17:04:47.010000"],["2024-07-25T17:04:48.010000"],["2024-07-25T17:04:49.010000"],["2024-07-25T17:04:50.010000"],["2024-07-25T17:04:51.010000"],["2024-07-25T17:04:52.010000"],["2024-07-25T17:04:53.010000"],["2024-07-25T17:04:54.010000"],["2024-07-25T17:04:55.010000"],["2024-07-25T17:04:56.010000"],["2024-07-25T17:04:57.010000"],["2024-07-25T17:04:58.010000"],["2024-07-25T17:04:59.010000"],["2024-07-25T17:05:00.010000"],["2024-07-25T17:05:01.010000"],["2024-07-25T17:05:02.010000"],["2024-07-25T17:05:03.010000"],["2024-07-25T17:05:04.010000"],["2024-07-25T17:05:05.010000"],["2024-07-25T17:05:06.010000"],["2024-07-25T17:05:07.010000"],["2024-07-25T17:05:08.010000"],["2024-07-25T17:05:09.010000"],["2024-07-25T17:05:10.010000"],["2024-07-25T17:05:11.010000"],["2024-07-25T17:05:12.010000"],["2024-07-25T17:05:13.010000"],["2024-07-25T17:05:14.010000"],["2024-07-25T17:05:15.010000"],["2024-07-25T17:05:16.010000"],["2024-07-25T17:05:17.010000"],["2024-07-25T17:05:18.010000"],["2024-07-25T17:05:19.010000"],["2024-07-25T17:05:20.010000"],["2024-07-25T17:05:21.010000"],["2024-07-25T17:05:22.010000"],["2024-07-25T17:05:23.010000"],["2024-07-25T17:05:24.010000"],["2024-07-25T17:05:25.010000"],["2024-07-25T17:05:26.010000"],["2024-07-25T17:05:27.010000"],["2024-07-25T17:05:28.010000"],["2024-07-25T17:05:29.010000"],["2024-07-25T17:05:30.010000"],["2024-07-25T17:05:31.010000"],["2024-07-25T17:05:32.010000"],["2024-07-25T17:05:33.010000"],["2024-07-25T17:05:34.010000"],["2024-07-25T17:05:35.010000"],["2024-07-25T17:05:36.010000"],["2024-07-25T17:05:37.010000"],["2024-07-25T17:05:38.010000"],["2024-07-25T17:05:39.010000"],["2024-07-25T17:05:40.010000"],["2024-07-25T17:05:41.010000"],["2024-07-25T17:05:42.010000"],["2024-07-25T17:05:43.010000"],["2024-07-25T17:05:44.010000"],["2024-07-25T17:05:45.010000"],["2024-07-25T17:05:46.010000"],["2024-07-25T17:05:47.010000"],["2024-07-25T17:05:48.010000"],["2024-07-25T17:05:49.010000"],["2024-07-25T17:05:50.010000"],["2024-07-25T17:05:51.010000"],["2024-07-25T17:05:52.010000"],["2024-07-25T17:05:53.010000"],["2024-07-25T17:05:54.010000"],["2024-07-25T17:05:55.010000"],["2024-07-25T17:05:56.010000"],["2024-07-25T17:05:57.010000"],["2024-07-25T17:05:58.010000"],["2024-07-25T17:05:59.010000"],["2024-07-25T17:06:00.010000"],["2024-07-25T17:06:01.010000"],["2024-07-25T17:06:02.010000"],["2024-07-25T17:06:03.010000"],["2024-07-25T17:06:04.010000"],["2024-07-25T17:06:05.010000"],["2024-07-25T17:06:06.010000"],["2024-07-25T17:06:07.010000"],["2024-07-25T17:06:08.010000"],["2024-07-25T17:06:09.010000"],["2024-07-25T17:06:10.010000"],["2024-07-25T17:06:11.010000"],["2024-07-25T17:06:12.010000"],["2024-07-25T17:06:13.010000"],["2024-07-25T17:06:14.010000"],["2024-07-25T17:06:15.010000"],["2024-07-25T17:06:16.010000"],["2024-07-25T17:06:17.010000"],["2024-07-25T17:06:18.010000"],["2024-07-25T17:06:19.010000"],["2024-07-25T17:06:20.010000"],["2024-07-25T17:06:21.010000"],["2024-07-25T17:06:22.010000"],["2024-07-25T17:06:23.010000"],["2024-07-25T17:06:24.010000"],["2024-07-25T17:06:25.010000"],["2024-07-25T17:06:26.010000"],["2024-07-25T17:06:27.010000"],["2024-07-25T17:06:28.010000"],["2024-07-25T17:06:29.010000"],["2024-07-25T17:06:30.010000"],["2024-07-25T17:06:31.010000"],["2024-07-25T17:06:32.010000"],["2024-07-25T17:06:33.010000"],["2024-07-25T17:06:34.010000"],["2024-07-25T17:06:35.010000"],["2024-07-25T17:06:36.010000"],["2024-07-25T17:06:37.010000"],["2024-07-25T17:06:38.010000"],["2024-07-25T17:06:39.010000"],["2024-07-25T17:06:40.010000"],["2024-07-25T17:06:41.010000"],["2024-07-25T17:06:42.010000"],["2024-07-25T17:06:43.010000"],["2024-07-25T17:06:44.010000"],["2024-07-25T17:06:45.010000"],["2024-07-25T17:06:46.010000"],["2024-07-25T17:06:47.010000"],["2024-07-25T17:06:48.010000"],["2024-07-25T17:06:49.010000"],["2024-07-25T17:06:50.010000"],["2024-07-25T17:06:51.010000"],["2024-07-25T17:06:52.010000"],["2024-07-25T17:06:53.010000"],["2024-07-25T17:06:54.010000"],["2024-07-25T17:06:55.010000"],["2024-07-25T17:06:56.010000"],["2024-07-25T17:06:57.010000"],["2024-07-25T17:06:58.010000"],["2024-07-25T17:06:59.010000"],["2024-07-25T17:07:00.010000"],["2024-07-25T17:07:01.010000"],["2024-07-25T17:07:02.010000"],["2024-07-25T17:07:03.010000"],["2024-07-25T17:07:04.010000"],["2024-07-25T17:07:05.010000"],["2024-07-25T17:07:06.010000"],["2024-07-25T17:07:07.010000"],["2024-07-25T17:07:08.010000"],["2024-07-25T17:07:09.010000"],["2024-07-25T17:07:10.010000"],["2024-07-25T17:07:11.010000"],["2024-07-25T17:07:12.010000"],["2024-07-25T17:07:13.010000"],["2024-07-25T17:07:14.010000"],["2024-07-25T17:07:15.010000"],["2024-07-25T17:07:16.010000"],["2024-07-25T17:07:17.010000"],["2024-07-25T17:07:18.010000"],["2024-07-25T17:07:19.010000"],["2024-07-25T17:07:20.010000"],["2024-07-25T17:07:21.010000"],["2024-07-25T17:07:22.010000"],["2024-07-25T17:07:23.010000"],["2024-07-25T17:07:24.010000"],["2024-07-25T17:07:25.010000"],["2024-07-25T17:07:26.010000"],["2024-07-25T17:07:27.010000"],["2024-07-25T17:07:28.010000"],["2024-07-25T17:07:29.010000"],["2024-07-25T17:07:30.010000"],["2024-07-25T17:07:31.010000"],["2024-07-25T17:07:32.010000"],["2024-07-25T17:07:33.010000"],["2024-07-25T17:07:34.010000"],["2024-07-25T17:07:35.010000"],["2024-07-25T17:07:36.010000"],["2024-07-25T17:07:37.010000"],["2024-07-25T17:07:38.010000"],["2024-07-25T17:07:39.010000"],["2024-07-25T17:07:40.010000"],["2024-07-25T17:07:41.010000"],["2024-07-25T17:07:42.010000"],["2024-07-25T17:07:43.010000"],["2024-07-25T17:07:44.010000"],["2024-07-25T17:07:45.010000"],["2024-07-25T17:07:46.010000"],["2024-07-25T17:07:47.010000"],["2024-07-25T17:07:48.010000"],["2024-07-25T17:07:49.010000"],["2024-07-25T17:07:50.010000"],["2024-07-25T17:07:51.010000"],["2024-07-25T17:07:52.010000"],["2024-07-25T17:07:53.010000"],["2024-07-25T17:07:54.010000"],["2024-07-25T17:07:55.010000"],["2024-07-25T17:07:56.010000"],["2024-07-25T17:07:57.010000"],["2024-07-25T17:07:58.010000"],["2024-07-25T17:07:59.010000"],["2024-07-25T17:08:00.010000"],["2024-07-25T17:08:01.010000"],["2024-07-25T17:08:02.010000"],["2024-07-25T17:08:03.010000"],["2024-07-25T17:08:04.010000"],["2024-07-25T17:08:05.010000"],["2024-07-25T17:08:06.010000"],["2024-07-25T17:08:07.010000"],["2024-07-25T17:08:08.010000"],["2024-07-25T17:08:09.010000"],["2024-07-25T17:08:10.010000"],["2024-07-25T17:08:11.010000"],["2024-07-25T17:08:12.010000"],["2024-07-25T17:08:13.010000"],["2024-07-25T17:08:14.010000"],["2024-07-25T17:08:15.010000"],["2024-07-25T17:08:16.010000"],["2024-07-25T17:08:17.010000"],["2024-07-25T17:08:18.010000"],["2024-07-25T17:08:19.010000"],["2024-07-25T17:08:20.010000"],["2024-07-25T17:08:21.010000"],["2024-07-25T17:08:22.010000"],["2024-07-25T17:08:23.010000"],["2024-07-25T17:08:24.010000"],["2024-07-25T17:08:25.010000"],["2024-07-25T17:08:26.010000"],["2024-07-25T17:08:27.010000"],["2024-07-25T17:08:28.010000"],["2024-07-25T17:08:29.010000"],["2024-07-25T17:08:30.010000"],["2024-07-25T17:08:31.010000"],["2024-07-25T17:08:32.010000"],["2024-07-25T17:08:33.010000"],["2024-07-25T17:08:34.010000"],["2024-07-25T17:08:35.010000"],["2024-07-25T17:08:36.010000"],["2024-07-25T17:08:37.010000"],["2024-07-25T17:08:38.010000"],["2024-07-25T17:08:39.010000"],["2024-07-25T17:08:40.010000"],["2024-07-25T17:08:41.010000"],["2024-07-25T17:08:42.010000"],["2024-07-25T17:08:43.010000"],["2024-07-25T17:08:44.010000"],["2024-07-25T17:08:45.010000"],["2024-07-25T17:08:46.010000"],["2024-07-25T17:08:47.010000"],["2024-07-25T17:08:48.010000"],["2024-07-25T17:08:49.010000"],["2024-07-25T17:08:50.010000"],["2024-07-25T17:08:51.010000"],["2024-07-25T17:08:52.010000"],["2024-07-25T17:08:53.010000"],["2024-07-25T17:08:54.010000"],["2024-07-25T17:08:55.010000"],["2024-07-25T17:08:56.010000"],["2024-07-25T17:08:57.010000"],["2024-07-25T17:08:58.010000"],["2024-07-25T17:08:59.010000"],["2024-07-25T17:09:00.010000"],["2024-07-25T17:09:01.010000"],["2024-07-25T17:09:02.010000"],["2024-07-25T17:09:03.010000"],["2024-07-25T17:09:04.010000"],["2024-07-25T17:09:05.010000"],["2024-07-25T17:09:06.010000"],["2024-07-25T17:09:07.010000"],["2024-07-25T17:09:08.010000"],["2024-07-25T17:09:09.010000"],["2024-07-25T17:09:10.010000"],["2024-07-25T17:09:11.010000"],["2024-07-25T17:09:12.010000"],["2024-07-25T17:09:13.010000"],["2024-07-25T17:09:14.010000"],["2024-07-25T17:09:15.010000"],["2024-07-25T17:09:16.010000"],["2024-07-25T17:09:17.010000"],["2024-07-25T17:09:18.010000"],["2024-07-25T17:09:19.010000"],["2024-07-25T17:09:20.010000"],["2024-07-25T17:09:21.010000"],["2024-07-25T17:09:22.010000"],["2024-07-25T17:09:23.010000"],["2024-07-25T17:09:24.010000"],["2024-07-25T17:09:25.010000"],["2024-07-25T17:09:26.010000"],["2024-07-25T17:09:27.010000"],["2024-07-25T17:09:28.010000"],["2024-07-25T17:09:29.010000"],["2024-07-25T17:09:30.010000"],["2024-07-25T17:09:31.010000"],["2024-07-25T17:09:32.010000"],["2024-07-25T17:09:33.010000"],["2024-07-25T17:09:34.010000"],["2024-07-25T17:09:35.010000"],["2024-07-25T17:09:36.010000"],["2024-07-25T17:09:37.010000"],["2024-07-25T17:09:38.010000"],["2024-07-25T17:09:39.010000"],["2024-07-25T17:09:40.010000"],["2024-07-25T17:09:41.010000"],["2024-07-25T17:09:42.010000"],["2024-07-25T17:09:43.010000"],["2024-07-25T17:09:44.010000"],["2024-07-25T17:09:45.010000"],["2024-07-25T17:09:46.010000"],["2024-07-25T17:09:47.010000"],["2024-07-25T17:09:48.010000"],["2024-07-25T17:09:49.010000"],["2024-07-25T17:09:50.010000"],["2024-07-25T17:09:51.010000"],["2024-07-25T17:09:52.010000"],["2024-07-25T17:09:53.010000"],["2024-07-25T17:09:54.010000"],["2024-07-25T17:09:55.010000"],["2024-07-25T17:09:56.010000"],["2024-07-25T17:09:57.010000"],["2024-07-25T17:09:58.010000"],["2024-07-25T17:09:59.010000"],["2024-07-25T17:10:00.010000"],["2024-07-25T17:10:01.010000"],["2024-07-25T17:10:02.010000"],["2024-07-25T17:10:03.010000"],["2024-07-25T17:10:04.010000"],["2024-07-25T17:10:05.010000"],["2024-07-25T17:10:06.010000"],["2024-07-25T17:10:07.010000"],["2024-07-25T17:10:08.010000"],["2024-07-25T17:10:09.010000"],["2024-07-25T17:10:10.010000"],["2024-07-25T17:10:11.010000"],["2024-07-25T17:10:12.010000"],["2024-07-25T17:10:13.010000"],["2024-07-25T17:10:14.010000"],["2024-07-25T17:10:15.010000"],["2024-07-25T17:10:16.010000"],["2024-07-25T17:10:17.010000"],["2024-07-25T17:10:18.010000"],["2024-07-25T17:10:19.010000"],["2024-07-25T17:10:20.010000"],["2024-07-25T17:10:21.010000"],["2024-07-25T17:10:22.010000"],["2024-07-25T17:10:23.010000"],["2024-07-25T17:10:24.010000"],["2024-07-25T17:10:25.010000"],["2024-07-25T17:10:26.010000"],["2024-07-25T17:10:27.010000"],["2024-07-25T17:10:28.010000"],["2024-07-25T17:10:29.010000"],["2024-07-25T17:10:30.010000"],["2024-07-25T17:10:31.010000"],["2024-07-25T17:10:32.010000"],["2024-07-25T17:10:33.010000"],["2024-07-25T17:10:34.010000"],["2024-07-25T17:10:35.010000"],["2024-07-25T17:10:36.010000"],["2024-07-25T17:10:37.010000"],["2024-07-25T17:10:38.010000"],["2024-07-25T17:10:39.010000"],["2024-07-25T17:10:40.010000"],["2024-07-25T17:10:41.010000"],["2024-07-25T17:10:42.010000"],["2024-07-25T17:10:43.010000"],["2024-07-25T17:10:44.010000"],["2024-07-25T17:10:45.010000"],["2024-07-25T17:10:46.010000"],["2024-07-25T17:10:47.010000"],["2024-07-25T17:10:48.010000"],["2024-07-25T17:10:49.010000"],["2024-07-25T17:10:50.010000"],["2024-07-25T17:10:51.010000"],["2024-07-25T17:10:52.010000"],["2024-07-25T17:10:53.010000"],["2024-07-25T17:10:54.010000"],["2024-07-25T17:10:55.010000"],["2024-07-25T17:10:56.010000"],["2024-07-25T17:10:57.010000"],["2024-07-25T17:10:58.010000"],["2024-07-25T17:10:59.010000"],["2024-07-25T17:11:00.010000"],["2024-07-25T17:11:01.010000"],["2024-07-25T17:11:02.010000"],["2024-07-25T17:11:03.010000"],["2024-07-25T17:11:04.010000"],["2024-07-25T17:11:05.010000"],["2024-07-25T17:11:06.010000"],["2024-07-25T17:11:07.010000"],["2024-07-25T17:11:08.010000"],["2024-07-25T17:11:09.010000"],["2024-07-25T17:11:10.010000"],["2024-07-25T17:11:11.010000"],["2024-07-25T17:11:12.010000"],["2024-07-25T17:11:13.010000"],["2024-07-25T17:11:14.010000"],["2024-07-25T17:11:15.010000"],["2024-07-25T17:11:16.010000"],["2024-07-25T17:11:17.010000"],["2024-07-25T17:11:18.010000"],["2024-07-25T17:11:19.010000"],["2024-07-25T17:11:20.010000"],["2024-07-25T17:11:21.010000"],["2024-07-25T17:11:22.010000"],["2024-07-25T17:11:23.010000"],["2024-07-25T17:11:24.010000"],["2024-07-25T17:11:25.010000"],["2024-07-25T17:11:26.010000"],["2024-07-25T17:11:27.010000"],["2024-07-25T17:11:28.010000"],["2024-07-25T17:11:29.010000"],["2024-07-25T17:11:30.010000"],["2024-07-25T17:11:31.010000"],["2024-07-25T17:11:32.010000"],["2024-07-25T17:11:33.010000"],["2024-07-25T17:11:34.010000"],["2024-07-25T17:11:35.010000"],["2024-07-25T17:11:36.010000"],["2024-07-25T17:11:37.010000"],["2024-07-25T17:11:38.010000"],["2024-07-25T17:11:39.010000"],["2024-07-25T17:11:40.010000"],["2024-07-25T17:11:41.010000"],["2024-07-25T17:11:42.010000"],["2024-07-25T17:11:43.010000"],["2024-07-25T17:11:44.010000"],["2024-07-25T17:11:45.010000"],["2024-07-25T17:11:46.010000"],["2024-07-25T17:11:47.010000"],["2024-07-25T17:11:48.010000"],["2024-07-25T17:11:49.010000"],["2024-07-25T17:11:50.010000"],["2024-07-25T17:11:51.010000"],["2024-07-25T17:11:52.010000"],["2024-07-25T17:11:53.010000"],["2024-07-25T17:11:54.010000"],["2024-07-25T17:11:55.010000"],["2024-07-25T17:11:56.010000"],["2024-07-25T17:11:57.010000"],["2024-07-25T17:11:58.010000"],["2024-07-25T17:11:59.010000"],["2024-07-25T17:12:00.010000"],["2024-07-25T17:12:01.010000"],["2024-07-25T17:12:02.010000"],["2024-07-25T17:12:03.010000"],["2024-07-25T17:12:04.010000"],["2024-07-25T17:12:05.010000"],["2024-07-25T17:12:06.010000"],["2024-07-25T17:12:07.010000"],["2024-07-25T17:12:08.010000"],["2024-07-25T17:12:09.010000"],["2024-07-25T17:12:10.010000"],["2024-07-25T17:12:11.010000"],["2024-07-25T17:12:12.010000"],["2024-07-25T17:12:13.010000"],["2024-07-25T17:12:14.010000"],["2024-07-25T17:12:15.010000"],["2024-07-25T17:12:16.010000"],["2024-07-25T17:12:17.010000"],["2024-07-25T17:12:18.010000"],["2024-07-25T17:12:19.010000"],["2024-07-25T17:12:20.010000"],["2024-07-25T17:12:21.010000"],["2024-07-25T17:12:22.010000"],["2024-07-25T17:12:23.010000"],["2024-07-25T17:12:24.010000"],["2024-07-25T17:12:25.010000"],["2024-07-25T17:12:26.010000"],["2024-07-25T17:12:27.010000"],["2024-07-25T17:12:28.010000"],["2024-07-25T17:12:29.010000"],["2024-07-25T17:12:30.010000"],["2024-07-25T17:12:31.010000"],["2024-07-25T17:12:32.010000"],["2024-07-25T17:12:33.010000"],["2024-07-25T17:12:34.010000"],["2024-07-25T17:12:35.010000"],["2024-07-25T17:12:36.010000"],["2024-07-25T17:12:37.010000"],["2024-07-25T17:12:38.010000"],["2024-07-25T17:12:39.010000"],["2024-07-25T17:12:40.010000"],["2024-07-25T17:12:41.010000"],["2024-07-25T17:12:42.010000"],["2024-07-25T17:12:43.010000"],["2024-07-25T17:12:44.010000"],["2024-07-25T17:12:45.010000"],["2024-07-25T17:12:46.010000"],["2024-07-25T17:12:47.010000"],["2024-07-25T17:12:48.010000"],["2024-07-25T17:12:49.010000"],["2024-07-25T17:12:50.010000"],["2024-07-25T17:12:51.010000"],["2024-07-25T17:12:52.010000"],["2024-07-25T17:12:53.010000"],["2024-07-25T17:12:54.010000"],["2024-07-25T17:12:55.010000"],["2024-07-25T17:12:56.010000"],["2024-07-25T17:12:57.010000"],["2024-07-25T17:12:58.010000"],["2024-07-25T17:12:59.010000"],["2024-07-25T17:13:00.010000"],["2024-07-25T17:13:01.010000"],["2024-07-25T17:13:02.010000"],["2024-07-25T17:13:03.010000"],["2024-07-25T17:13:04.010000"],["2024-07-25T17:13:05.010000"],["2024-07-25T17:13:06.010000"],["2024-07-25T17:13:07.010000"],["2024-07-25T17:13:08.010000"],["2024-07-25T17:13:09.010000"],["2024-07-25T17:13:10.010000"],["2024-07-25T17:13:11.010000"],["2024-07-25T17:13:12.010000"],["2024-07-25T17:13:13.010000"],["2024-07-25T17:13:14.010000"],["2024-07-25T17:13:15.010000"],["2024-07-25T17:13:16.010000"],["2024-07-25T17:13:17.010000"],["2024-07-25T17:13:18.010000"],["2024-07-25T17:13:19.010000"],["2024-07-25T17:13:20.010000"],["2024-07-25T17:13:21.010000"],["2024-07-25T17:13:22.010000"],["2024-07-25T17:13:23.010000"],["2024-07-25T17:13:24.010000"],["2024-07-25T17:13:25.010000"],["2024-07-25T17:13:26.010000"],["2024-07-25T17:13:27.010000"],["2024-07-25T17:13:28.010000"],["2024-07-25T17:13:29.010000"],["2024-07-25T17:13:30.010000"],["2024-07-25T17:13:31.010000"],["2024-07-25T17:13:32.010000"],["2024-07-25T17:13:33.010000"],["2024-07-25T17:13:34.010000"],["2024-07-25T17:13:35.010000"],["2024-07-25T17:13:36.010000"],["2024-07-25T17:13:37.010000"],["2024-07-25T17:13:38.010000"],["2024-07-25T17:13:39.010000"],["2024-07-25T17:13:40.010000"],["2024-07-25T17:13:41.010000"],["2024-07-25T17:13:42.010000"],["2024-07-25T17:13:43.010000"],["2024-07-25T17:13:44.010000"],["2024-07-25T17:13:45.010000"],["2024-07-25T17:13:46.010000"],["2024-07-25T17:13:47.010000"],["2024-07-25T17:13:48.010000"],["2024-07-25T17:13:49.010000"],["2024-07-25T17:13:50.010000"],["2024-07-25T17:13:51.010000"],["2024-07-25T17:13:52.010000"],["2024-07-25T17:13:53.010000"],["2024-07-25T17:13:54.010000"],["2024-07-25T17:13:55.010000"],["2024-07-25T17:13:56.010000"],["2024-07-25T17:13:57.010000"],["2024-07-25T17:13:58.010000"],["2024-07-25T17:13:59.010000"],["2024-07-25T17:14:00.010000"],["2024-07-25T17:14:01.010000"],["2024-07-25T17:14:02.010000"],["2024-07-25T17:14:03.010000"],["2024-07-25T17:14:04.010000"],["2024-07-25T17:14:05.010000"],["2024-07-25T17:14:06.010000"],["2024-07-25T17:14:07.010000"],["2024-07-25T17:14:08.010000"],["2024-07-25T17:14:09.010000"],["2024-07-25T17:14:10.010000"],["2024-07-25T17:14:11.010000"],["2024-07-25T17:14:12.010000"],["2024-07-25T17:14:13.010000"],["2024-07-25T17:14:14.010000"],["2024-07-25T17:14:15.010000"],["2024-07-25T17:14:16.010000"],["2024-07-25T17:14:17.010000"],["2024-07-25T17:14:18.010000"],["2024-07-25T17:14:19.010000"],["2024-07-25T17:14:20.010000"],["2024-07-25T17:14:21.010000"],["2024-07-25T17:14:22.010000"],["2024-07-25T17:14:23.010000"],["2024-07-25T17:14:24.010000"],["2024-07-25T17:14:25.010000"],["2024-07-25T17:14:26.010000"],["2024-07-25T17:14:27.010000"],["2024-07-25T17:14:28.010000"],["2024-07-25T17:14:29.010000"],["2024-07-25T17:14:30.010000"],["2024-07-25T17:14:31.010000"],["2024-07-25T17:14:32.010000"],["2024-07-25T17:14:33.010000"],["2024-07-25T17:14:34.010000"],["2024-07-25T17:14:35.010000"],["2024-07-25T17:14:36.010000"],["2024-07-25T17:14:37.010000"],["2024-07-25T17:14:38.010000"],["2024-07-25T17:14:39.010000"],["2024-07-25T17:14:40.010000"],["2024-07-25T17:14:41.010000"],["2024-07-25T17:14:42.010000"],["2024-07-25T17:14:43.010000"],["2024-07-25T17:14:44.010000"],["2024-07-25T17:14:45.010000"],["2024-07-25T17:14:46.010000"],["2024-07-25T17:14:47.010000"],["2024-07-25T17:14:48.010000"],["2024-07-25T17:14:49.010000"],["2024-07-25T17:14:50.010000"],["2024-07-25T17:14:51.010000"],["2024-07-25T17:14:52.010000"],["2024-07-25T17:14:53.010000"],["2024-07-25T17:14:54.010000"],["2024-07-25T17:14:55.010000"],["2024-07-25T17:14:56.010000"],["2024-07-25T17:14:57.010000"],["2024-07-25T17:14:58.010000"],["2024-07-25T17:14:59.010000"],["2024-07-25T17:15:00.010000"],["2024-07-25T17:15:01.010000"],["2024-07-25T17:15:02.010000"],["2024-07-25T17:15:03.010000"],["2024-07-25T17:15:04.010000"],["2024-07-25T17:15:05.010000"],["2024-07-25T17:15:06.010000"],["2024-07-25T17:15:07.010000"],["2024-07-25T17:15:08.010000"],["2024-07-25T17:15:09.010000"],["2024-07-25T17:15:10.010000"],["2024-07-25T17:15:11.010000"],["2024-07-25T17:15:12.010000"],["2024-07-25T17:15:13.010000"],["2024-07-25T17:15:14.010000"],["2024-07-25T17:15:15.010000"],["2024-07-25T17:15:16.010000"],["2024-07-25T17:15:17.010000"],["2024-07-25T17:15:18.010000"],["2024-07-25T17:15:19.010000"],["2024-07-25T17:15:20.010000"],["2024-07-25T17:15:21.010000"],["2024-07-25T17:15:22.010000"],["2024-07-25T17:15:23.010000"],["2024-07-25T17:15:24.010000"],["2024-07-25T17:15:25.010000"],["2024-07-25T17:15:26.010000"],["2024-07-25T17:15:27.010000"],["2024-07-25T17:15:28.010000"],["2024-07-25T17:15:29.010000"],["2024-07-25T17:15:30.010000"],["2024-07-25T17:15:31.010000"],["2024-07-25T17:15:32.010000"],["2024-07-25T17:15:33.010000"],["2024-07-25T17:15:34.010000"],["2024-07-25T17:15:35.010000"],["2024-07-25T17:15:36.010000"],["2024-07-25T17:15:37.010000"],["2024-07-25T17:15:38.010000"],["2024-07-25T17:15:39.010000"],["2024-07-25T17:15:40.010000"],["2024-07-25T17:15:41.010000"],["2024-07-25T17:15:42.010000"],["2024-07-25T17:15:43.010000"],["2024-07-25T17:15:44.010000"],["2024-07-25T17:15:45.010000"],["2024-07-25T17:15:46.010000"],["2024-07-25T17:15:47.010000"],["2024-07-25T17:15:48.010000"],["2024-07-25T17:15:49.010000"],["2024-07-25T17:15:50.010000"],["2024-07-25T17:15:51.010000"],["2024-07-25T17:15:52.010000"],["2024-07-25T17:15:53.010000"],["2024-07-25T17:15:54.010000"],["2024-07-25T17:15:55.010000"],["2024-07-25T17:15:56.010000"],["2024-07-25T17:15:57.010000"],["2024-07-25T17:15:58.010000"],["2024-07-25T17:15:59.010000"],["2024-07-25T17:16:00.010000"],["2024-07-25T17:16:01.010000"],["2024-07-25T17:16:02.010000"],["2024-07-25T17:16:03.010000"],["2024-07-25T17:16:04.010000"],["2024-07-25T17:16:05.010000"],["2024-07-25T17:16:06.010000"],["2024-07-25T17:16:07.010000"],["2024-07-25T17:16:08.010000"],["2024-07-25T17:16:09.010000"],["2024-07-25T17:16:10.010000"],["2024-07-25T17:16:11.010000"],["2024-07-25T17:16:12.010000"],["2024-07-25T17:16:13.010000"],["2024-07-25T17:16:14.010000"],["2024-07-25T17:16:15.010000"],["2024-07-25T17:16:16.010000"],["2024-07-25T17:16:17.010000"],["2024-07-25T17:16:18.010000"],["2024-07-25T17:16:19.010000"],["2024-07-25T17:16:20.010000"],["2024-07-25T17:16:21.010000"],["2024-07-25T17:16:22.010000"],["2024-07-25T17:16:23.010000"],["2024-07-25T17:16:24.010000"],["2024-07-25T17:16:25.010000"],["2024-07-25T17:16:26.010000"],["2024-07-25T17:16:27.010000"],["2024-07-25T17:16:28.010000"],["2024-07-25T17:16:29.010000"],["2024-07-25T17:16:30.010000"],["2024-07-25T17:16:31.010000"],["2024-07-25T17:16:32.010000"],["2024-07-25T17:16:33.010000"],["2024-07-25T17:16:34.010000"],["2024-07-25T17:16:35.010000"],["2024-07-25T17:16:36.010000"],["2024-07-25T17:16:37.010000"],["2024-07-25T17:16:38.010000"],["2024-07-25T17:16:39.010000"],["2024-07-25T17:16:40.010000"],["2024-07-25T17:16:41.010000"],["2024-07-25T17:16:42.010000"],["2024-07-25T17:16:43.010000"],["2024-07-25T17:16:44.010000"],["2024-07-25T17:16:45.010000"],["2024-07-25T17:16:46.010000"],["2024-07-25T17:16:47.010000"],["2024-07-25T17:16:48.010000"],["2024-07-25T17:16:49.010000"],["2024-07-25T17:16:50.010000"],["2024-07-25T17:16:51.010000"],["2024-07-25T17:16:52.010000"],["2024-07-25T17:16:53.010000"],["2024-07-25T17:16:54.010000"],["2024-07-25T17:16:55.010000"],["2024-07-25T17:16:56.010000"],["2024-07-25T17:16:57.010000"],["2024-07-25T17:16:58.010000"],["2024-07-25T17:16:59.010000"],["2024-07-25T17:17:00.010000"],["2024-07-25T17:17:01.010000"],["2024-07-25T17:17:02.010000"],["2024-07-25T17:17:03.010000"],["2024-07-25T17:17:04.010000"],["2024-07-25T17:17:05.010000"],["2024-07-25T17:17:06.010000"],["2024-07-25T17:17:07.010000"],["2024-07-25T17:17:08.010000"],["2024-07-25T17:17:09.010000"],["2024-07-25T17:17:10.010000"],["2024-07-25T17:17:11.010000"],["2024-07-25T17:17:12.010000"],["2024-07-25T17:17:13.010000"],["2024-07-25T17:17:14.010000"],["2024-07-25T17:17:15.010000"],["2024-07-25T17:17:16.010000"],["2024-07-25T17:17:17.010000"],["2024-07-25T17:17:18.010000"],["2024-07-25T17:17:19.010000"],["2024-07-25T17:17:20.010000"],["2024-07-25T17:17:21.010000"],["2024-07-25T17:17:22.010000"],["2024-07-25T17:17:23.010000"],["2024-07-25T17:17:24.010000"],["2024-07-25T17:17:25.010000"],["2024-07-25T17:17:26.010000"],["2024-07-25T17:17:27.010000"],["2024-07-25T17:17:28.010000"],["2024-07-25T17:17:29.010000"],["2024-07-25T17:17:30.010000"],["2024-07-25T17:17:31.010000"],["2024-07-25T17:17:32.010000"],["2024-07-25T17:17:33.010000"],["2024-07-25T17:17:34.010000"],["2024-07-25T17:17:35.010000"],["2024-07-25T17:17:36.010000"],["2024-07-25T17:17:37.010000"],["2024-07-25T17:17:38.010000"],["2024-07-25T17:17:39.010000"],["2024-07-25T17:17:40.010000"],["2024-07-25T17:17:41.010000"],["2024-07-25T17:17:42.010000"],["2024-07-25T17:17:43.010000"],["2024-07-25T17:17:44.010000"],["2024-07-25T17:17:45.010000"],["2024-07-25T17:17:46.010000"],["2024-07-25T17:17:47.010000"],["2024-07-25T17:17:48.010000"],["2024-07-25T17:17:49.010000"],["2024-07-25T17:17:50.010000"],["2024-07-25T17:17:51.010000"],["2024-07-25T17:17:52.010000"],["2024-07-25T17:17:53.010000"],["2024-07-25T17:17:54.010000"],["2024-07-25T17:17:55.010000"],["2024-07-25T17:17:56.010000"],["2024-07-25T17:17:57.010000"],["2024-07-25T17:17:58.010000"],["2024-07-25T17:17:59.010000"],["2024-07-25T17:18:00.010000"],["2024-07-25T17:18:01.010000"],["2024-07-25T17:18:02.010000"],["2024-07-25T17:18:03.010000"],["2024-07-25T17:18:04.010000"],["2024-07-25T17:18:05.010000"],["2024-07-25T17:18:06.010000"],["2024-07-25T17:18:07.010000"],["2024-07-25T17:18:08.010000"],["2024-07-25T17:18:09.010000"],["2024-07-25T17:18:10.010000"],["2024-07-25T17:18:11.010000"],["2024-07-25T17:18:12.010000"],["2024-07-25T17:18:13.010000"],["2024-07-25T17:18:14.010000"],["2024-07-25T17:18:15.010000"],["2024-07-25T17:18:16.010000"],["2024-07-25T17:18:17.010000"],["2024-07-25T17:18:18.010000"],["2024-07-25T17:18:19.010000"],["2024-07-25T17:18:20.010000"],["2024-07-25T17:18:21.010000"],["2024-07-25T17:18:22.010000"],["2024-07-25T17:18:23.010000"],["2024-07-25T17:18:24.010000"],["2024-07-25T17:18:25.010000"],["2024-07-25T17:18:26.010000"],["2024-07-25T17:18:27.010000"],["2024-07-25T17:18:28.010000"],["2024-07-25T17:18:29.010000"],["2024-07-25T17:18:30.010000"],["2024-07-25T17:18:31.010000"],["2024-07-25T17:18:32.010000"],["2024-07-25T17:18:33.010000"],["2024-07-25T17:18:34.010000"],["2024-07-25T17:18:35.010000"],["2024-07-25T17:18:36.010000"],["2024-07-25T17:18:37.010000"],["2024-07-25T17:18:38.010000"],["2024-07-25T17:18:39.010000"],["2024-07-25T17:18:40.010000"],["2024-07-25T17:18:41.010000"],["2024-07-25T17:18:42.010000"],["2024-07-25T17:18:43.010000"],["2024-07-25T17:18:44.010000"],["2024-07-25T17:18:45.010000"],["2024-07-25T17:18:46.010000"],["2024-07-25T17:18:47.010000"],["2024-07-25T17:18:48.010000"],["2024-07-25T17:18:49.010000"],["2024-07-25T17:18:50.010000"],["2024-07-25T17:18:51.010000"],["2024-07-25T17:18:52.010000"],["2024-07-25T17:18:53.010000"],["2024-07-25T17:18:54.010000"],["2024-07-25T17:18:55.010000"],["2024-07-25T17:18:56.010000"],["2024-07-25T17:18:57.010000"],["2024-07-25T17:18:58.010000"],["2024-07-25T17:18:59.010000"],["2024-07-25T17:19:00.010000"],["2024-07-25T17:19:01.010000"],["2024-07-25T17:19:02.010000"],["2024-07-25T17:19:03.010000"],["2024-07-25T17:19:04.010000"],["2024-07-25T17:19:05.010000"],["2024-07-25T17:19:06.010000"],["2024-07-25T17:19:07.010000"],["2024-07-25T17:19:08.010000"],["2024-07-25T17:19:09.010000"],["2024-07-25T17:19:10.010000"],["2024-07-25T17:19:11.010000"],["2024-07-25T17:19:12.010000"],["2024-07-25T17:19:13.010000"],["2024-07-25T17:19:14.010000"],["2024-07-25T17:19:15.010000"],["2024-07-25T17:19:16.010000"],["2024-07-25T17:19:17.010000"],["2024-07-25T17:19:18.010000"],["2024-07-25T17:19:19.010000"],["2024-07-25T17:19:20.010000"],["2024-07-25T17:19:21.010000"],["2024-07-25T17:19:22.010000"],["2024-07-25T17:19:23.010000"],["2024-07-25T17:19:24.010000"],["2024-07-25T17:19:25.010000"],["2024-07-25T17:19:26.010000"],["2024-07-25T17:19:27.010000"],["2024-07-25T17:19:28.010000"],["2024-07-25T17:19:29.010000"],["2024-07-25T17:19:30.010000"],["2024-07-25T17:19:31.010000"],["2024-07-25T17:19:32.010000"],["2024-07-25T17:19:33.010000"],["2024-07-25T17:19:34.010000"],["2024-07-25T17:19:35.010000"],["2024-07-25T17:19:36.010000"],["2024-07-25T17:19:37.010000"],["2024-07-25T17:19:38.010000"],["2024-07-25T17:19:39.010000"],["2024-07-25T17:19:40.010000"],["2024-07-25T17:19:41.010000"],["2024-07-25T17:19:42.010000"],["2024-07-25T17:19:43.010000"],["2024-07-25T17:19:44.010000"],["2024-07-25T17:19:45.010000"],["2024-07-25T17:19:46.010000"],["2024-07-25T17:19:47.010000"],["2024-07-25T17:19:48.010000"],["2024-07-25T17:19:49.010000"],["2024-07-25T17:19:50.010000"],["2024-07-25T17:19:51.010000"],["2024-07-25T17:19:52.010000"],["2024-07-25T17:19:53.010000"],["2024-07-25T17:19:54.010000"],["2024-07-25T17:19:55.010000"],["2024-07-25T17:19:56.010000"],["2024-07-25T17:19:57.010000"],["2024-07-25T17:19:58.010000"],["2024-07-25T17:19:59.010000"],["2024-07-25T17:20:00.010000"],["2024-07-25T17:20:01.010000"],["2024-07-25T17:20:02.010000"],["2024-07-25T17:20:03.010000"],["2024-07-25T17:20:04.010000"],["2024-07-25T17:20:05.010000"],["2024-07-25T17:20:06.010000"],["2024-07-25T17:20:07.010000"],["2024-07-25T17:20:08.010000"],["2024-07-25T17:20:09.010000"],["2024-07-25T17:20:10.010000"],["2024-07-25T17:20:11.010000"],["2024-07-25T17:20:12.010000"],["2024-07-25T17:20:13.010000"],["2024-07-25T17:20:14.010000"],["2024-07-25T17:20:15.010000"],["2024-07-25T17:20:16.010000"],["2024-07-25T17:20:17.010000"],["2024-07-25T17:20:18.010000"],["2024-07-25T17:20:19.010000"],["2024-07-25T17:20:20.010000"],["2024-07-25T17:20:21.010000"],["2024-07-25T17:20:22.010000"],["2024-07-25T17:20:23.010000"],["2024-07-25T17:20:24.010000"],["2024-07-25T17:20:25.010000"],["2024-07-25T17:20:26.010000"],["2024-07-25T17:20:27.010000"],["2024-07-25T17:20:28.010000"],["2024-07-25T17:20:29.010000"],["2024-07-25T17:20:30.010000"],["2024-07-25T17:20:31.010000"],["2024-07-25T17:20:32.010000"],["2024-07-25T17:20:33.010000"],["2024-07-25T17:20:34.010000"],["2024-07-25T17:20:35.010000"],["2024-07-25T17:20:36.010000"],["2024-07-25T17:20:37.010000"],["2024-07-25T17:20:38.010000"],["2024-07-25T17:20:39.010000"],["2024-07-25T17:20:40.010000"],["2024-07-25T17:20:41.010000"],["2024-07-25T17:20:42.010000"],["2024-07-25T17:20:43.010000"],["2024-07-25T17:20:44.010000"],["2024-07-25T17:20:45.010000"],["2024-07-25T17:20:46.010000"],["2024-07-25T17:20:47.010000"],["2024-07-25T17:20:48.010000"],["2024-07-25T17:20:49.010000"],["2024-07-25T17:20:50.010000"],["2024-07-25T17:20:51.010000"],["2024-07-25T17:20:52.010000"],["2024-07-25T17:20:53.010000"],["2024-07-25T17:20:54.010000"],["2024-07-25T17:20:55.010000"],["2024-07-25T17:20:56.010000"],["2024-07-25T17:20:57.010000"],["2024-07-25T17:20:58.010000"],["2024-07-25T17:20:59.010000"],["2024-07-25T17:21:00.010000"],["2024-07-25T17:21:01.010000"],["2024-07-25T17:21:02.010000"],["2024-07-25T17:21:03.010000"],["2024-07-25T17:21:04.010000"],["2024-07-25T17:21:05.010000"],["2024-07-25T17:21:06.010000"],["2024-07-25T17:21:07.010000"],["2024-07-25T17:21:08.010000"],["2024-07-25T17:21:09.010000"],["2024-07-25T17:21:10.010000"],["2024-07-25T17:21:11.010000"],["2024-07-25T17:21:12.010000"],["2024-07-25T17:21:13.010000"],["2024-07-25T17:21:14.010000"],["2024-07-25T17:21:15.010000"],["2024-07-25T17:21:16.010000"],["2024-07-25T17:21:17.010000"],["2024-07-25T17:21:18.010000"],["2024-07-25T17:21:19.010000"],["2024-07-25T17:21:20.010000"],["2024-07-25T17:21:21.010000"],["2024-07-25T17:21:22.010000"],["2024-07-25T17:21:23.010000"],["2024-07-25T17:21:24.010000"],["2024-07-25T17:21:25.010000"],["2024-07-25T17:21:26.010000"],["2024-07-25T17:21:27.010000"],["2024-07-25T17:21:28.010000"],["2024-07-25T17:21:29.010000"],["2024-07-25T17:21:30.010000"],["2024-07-25T17:21:31.010000"],["2024-07-25T17:21:32.010000"],["2024-07-25T17:21:33.010000"],["2024-07-25T17:21:34.010000"],["2024-07-25T17:21:35.010000"],["2024-07-25T17:21:36.010000"],["2024-07-25T17:21:37.010000"],["2024-07-25T17:21:38.010000"],["2024-07-25T17:21:39.010000"],["2024-07-25T17:21:40.010000"],["2024-07-25T17:21:41.010000"],["2024-07-25T17:21:42.010000"],["2024-07-25T17:21:43.010000"],["2024-07-25T17:21:44.010000"],["2024-07-25T17:21:45.010000"],["2024-07-25T17:21:46.010000"],["2024-07-25T17:21:47.010000"],["2024-07-25T17:21:48.010000"],["2024-07-25T17:21:49.010000"],["2024-07-25T17:21:50.010000"],["2024-07-25T17:21:51.010000"],["2024-07-25T17:21:52.010000"],["2024-07-25T17:21:53.010000"],["2024-07-25T17:21:54.010000"],["2024-07-25T17:21:55.010000"],["2024-07-25T17:21:56.010000"],["2024-07-25T17:21:57.010000"],["2024-07-25T17:21:58.010000"],["2024-07-25T17:21:59.010000"],["2024-07-25T17:22:00.010000"],["2024-07-25T17:22:01.010000"],["2024-07-25T17:22:02.010000"],["2024-07-25T17:22:03.010000"],["2024-07-25T17:22:04.010000"],["2024-07-25T17:22:05.010000"],["2024-07-25T17:22:06.010000"],["2024-07-25T17:22:07.010000"],["2024-07-25T17:22:08.010000"],["2024-07-25T17:22:09.010000"],["2024-07-25T17:22:10.010000"],["2024-07-25T17:22:11.010000"],["2024-07-25T17:22:12.010000"],["2024-07-25T17:22:13.010000"],["2024-07-25T17:22:14.010000"],["2024-07-25T17:22:15.010000"],["2024-07-25T17:22:16.010000"],["2024-07-25T17:22:17.010000"],["2024-07-25T17:22:18.010000"],["2024-07-25T17:22:19.010000"],["2024-07-25T17:22:20.010000"],["2024-07-25T17:22:21.010000"],["2024-07-25T17:22:22.010000"],["2024-07-25T17:22:23.010000"],["2024-07-25T17:22:24.010000"],["2024-07-25T17:22:25.010000"],["2024-07-25T17:22:26.010000"],["2024-07-25T17:22:27.010000"],["2024-07-25T17:22:28.010000"],["2024-07-25T17:22:29.010000"],["2024-07-25T17:22:30.010000"],["2024-07-25T17:22:31.010000"],["2024-07-25T17:22:32.010000"],["2024-07-25T17:22:33.010000"],["2024-07-25T17:22:34.010000"],["2024-07-25T17:22:35.010000"],["2024-07-25T17:22:36.010000"],["2024-07-25T17:22:37.010000"],["2024-07-25T17:22:38.010000"],["2024-07-25T17:22:39.010000"],["2024-07-25T17:22:40.010000"],["2024-07-25T17:22:41.010000"],["2024-07-25T17:22:42.010000"],["2024-07-25T17:22:43.010000"],["2024-07-25T17:22:44.010000"],["2024-07-25T17:22:45.010000"],["2024-07-25T17:22:46.010000"],["2024-07-25T17:22:47.010000"],["2024-07-25T17:22:48.010000"],["2024-07-25T17:22:49.010000"],["2024-07-25T17:22:50.010000"],["2024-07-25T17:22:51.010000"],["2024-07-25T17:22:52.010000"],["2024-07-25T17:22:53.010000"],["2024-07-25T17:22:54.010000"],["2024-07-25T17:22:55.010000"],["2024-07-25T17:22:56.010000"],["2024-07-25T17:22:57.010000"],["2024-07-25T17:22:58.010000"],["2024-07-25T17:22:59.010000"],["2024-07-25T17:23:00.010000"],["2024-07-25T17:23:01.010000"],["2024-07-25T17:23:02.010000"],["2024-07-25T17:23:03.010000"],["2024-07-25T17:23:04.010000"],["2024-07-25T17:23:05.010000"],["2024-07-25T17:23:06.010000"],["2024-07-25T17:23:07.010000"],["2024-07-25T17:23:08.010000"],["2024-07-25T17:23:09.010000"],["2024-07-25T17:23:10.010000"],["2024-07-25T17:23:11.010000"],["2024-07-25T17:23:12.010000"],["2024-07-25T17:23:13.010000"],["2024-07-25T17:23:14.010000"],["2024-07-25T17:23:15.010000"],["2024-07-25T17:23:16.010000"],["2024-07-25T17:23:17.010000"],["2024-07-25T17:23:18.010000"],["2024-07-25T17:23:19.010000"],["2024-07-25T17:23:20.010000"],["2024-07-25T17:23:21.010000"],["2024-07-25T17:23:22.010000"],["2024-07-25T17:23:23.010000"],["2024-07-25T17:23:24.010000"],["2024-07-25T17:23:25.010000"],["2024-07-25T17:23:26.010000"],["2024-07-25T17:23:27.010000"],["2024-07-25T17:23:28.010000"],["2024-07-25T17:23:29.010000"],["2024-07-25T17:23:30.010000"],["2024-07-25T17:23:31.010000"],["2024-07-25T17:23:32.010000"],["2024-07-25T17:23:33.010000"],["2024-07-25T17:23:34.010000"],["2024-07-25T17:23:35.010000"],["2024-07-25T17:23:36.010000"],["2024-07-25T17:23:37.010000"],["2024-07-25T17:23:38.010000"],["2024-07-25T17:23:39.010000"],["2024-07-25T17:23:40.010000"],["2024-07-25T17:23:41.010000"],["2024-07-25T17:23:42.010000"],["2024-07-25T17:23:43.010000"],["2024-07-25T17:23:44.010000"],["2024-07-25T17:23:45.010000"],["2024-07-25T17:23:46.010000"],["2024-07-25T17:23:47.010000"],["2024-07-25T17:23:48.010000"],["2024-07-25T17:23:49.010000"],["2024-07-25T17:23:50.010000"],["2024-07-25T17:23:51.010000"],["2024-07-25T17:23:52.010000"],["2024-07-25T17:23:53.010000"],["2024-07-25T17:23:54.010000"],["2024-07-25T17:23:55.010000"],["2024-07-25T17:23:56.010000"],["2024-07-25T17:23:57.010000"],["2024-07-25T17:23:58.010000"],["2024-07-25T17:23:59.010000"],["2024-07-25T17:24:00.010000"],["2024-07-25T17:24:01.010000"],["2024-07-25T17:24:02.010000"],["2024-07-25T17:24:03.010000"],["2024-07-25T17:24:04.010000"],["2024-07-25T17:24:05.010000"],["2024-07-25T17:24:06.010000"],["2024-07-25T17:24:07.010000"],["2024-07-25T17:24:08.010000"],["2024-07-25T17:24:09.010000"],["2024-07-25T17:24:10.010000"],["2024-07-25T17:24:11.010000"],["2024-07-25T17:24:12.010000"],["2024-07-25T17:24:13.010000"],["2024-07-25T17:24:14.010000"],["2024-07-25T17:24:15.010000"],["2024-07-25T17:24:16.010000"],["2024-07-25T17:24:17.010000"],["2024-07-25T17:24:18.010000"],["2024-07-25T17:24:19.010000"],["2024-07-25T17:24:20.010000"],["2024-07-25T17:24:21.010000"],["2024-07-25T17:24:22.010000"],["2024-07-25T17:24:23.010000"],["2024-07-25T17:24:24.010000"],["2024-07-25T17:24:25.010000"],["2024-07-25T17:24:26.010000"],["2024-07-25T17:24:27.010000"],["2024-07-25T17:24:28.010000"],["2024-07-25T17:24:29.010000"],["2024-07-25T17:24:30.010000"],["2024-07-25T17:24:31.010000"],["2024-07-25T17:24:32.010000"],["2024-07-25T17:24:33.010000"],["2024-07-25T17:24:34.010000"],["2024-07-25T17:24:35.010000"],["2024-07-25T17:24:36.010000"],["2024-07-25T17:24:37.010000"],["2024-07-25T17:24:38.010000"],["2024-07-25T17:24:39.010000"],["2024-07-25T17:24:40.010000"],["2024-07-25T17:24:41.010000"],["2024-07-25T17:24:42.010000"],["2024-07-25T17:24:43.010000"],["2024-07-25T17:24:44.010000"],["2024-07-25T17:24:45.010000"],["2024-07-25T17:24:46.010000"],["2024-07-25T17:24:47.010000"],["2024-07-25T17:24:48.010000"],["2024-07-25T17:24:49.010000"],["2024-07-25T17:24:50.010000"],["2024-07-25T17:24:51.010000"],["2024-07-25T17:24:52.010000"],["2024-07-25T17:24:53.010000"],["2024-07-25T17:24:54.010000"],["2024-07-25T17:24:55.010000"],["2024-07-25T17:24:56.010000"],["2024-07-25T17:24:57.010000"],["2024-07-25T17:24:58.010000"],["2024-07-25T17:24:59.010000"],["2024-07-25T17:25:00.010000"],["2024-07-25T17:25:01.010000"],["2024-07-25T17:25:02.010000"],["2024-07-25T17:25:03.010000"],["2024-07-25T17:25:04.010000"],["2024-07-25T17:25:05.010000"],["2024-07-25T17:25:06.010000"],["2024-07-25T17:25:07.010000"],["2024-07-25T17:25:08.010000"],["2024-07-25T17:25:09.010000"],["2024-07-25T17:25:10.010000"],["2024-07-25T17:25:11.010000"],["2024-07-25T17:25:12.010000"],["2024-07-25T17:25:13.010000"],["2024-07-25T17:25:14.010000"],["2024-07-25T17:25:15.010000"],["2024-07-25T17:25:16.010000"],["2024-07-25T17:25:17.010000"],["2024-07-25T17:25:18.010000"],["2024-07-25T17:25:19.010000"],["2024-07-25T17:25:20.010000"],["2024-07-25T17:25:21.010000"],["2024-07-25T17:25:22.010000"],["2024-07-25T17:25:23.010000"],["2024-07-25T17:25:24.010000"],["2024-07-25T17:25:25.010000"],["2024-07-25T17:25:26.010000"],["2024-07-25T17:25:27.010000"],["2024-07-25T17:25:28.010000"],["2024-07-25T17:25:29.010000"],["2024-07-25T17:25:30.010000"],["2024-07-25T17:25:31.010000"],["2024-07-25T17:25:32.010000"],["2024-07-25T17:25:33.010000"],["2024-07-25T17:25:34.010000"],["2024-07-25T17:25:35.010000"],["2024-07-25T17:25:36.010000"],["2024-07-25T17:25:37.010000"],["2024-07-25T17:25:38.010000"],["2024-07-25T17:25:39.010000"],["2024-07-25T17:25:40.010000"],["2024-07-25T17:25:41.010000"],["2024-07-25T17:25:42.010000"],["2024-07-25T17:25:43.010000"],["2024-07-25T17:25:44.010000"],["2024-07-25T17:25:45.010000"],["2024-07-25T17:25:46.010000"],["2024-07-25T17:25:47.010000"],["2024-07-25T17:25:48.010000"],["2024-07-25T17:25:49.010000"],["2024-07-25T17:25:50.010000"],["2024-07-25T17:25:51.010000"],["2024-07-25T17:25:52.010000"],["2024-07-25T17:25:53.010000"],["2024-07-25T17:25:54.010000"],["2024-07-25T17:25:55.010000"],["2024-07-25T17:25:56.010000"],["2024-07-25T17:25:57.010000"],["2024-07-25T17:25:58.010000"],["2024-07-25T17:25:59.010000"],["2024-07-25T17:26:00.010000"],["2024-07-25T17:26:01.010000"],["2024-07-25T17:26:02.010000"],["2024-07-25T17:26:03.010000"],["2024-07-25T17:26:04.010000"],["2024-07-25T17:26:05.010000"],["2024-07-25T17:26:06.010000"],["2024-07-25T17:26:07.010000"],["2024-07-25T17:26:08.010000"],["2024-07-25T17:26:09.010000"],["2024-07-25T17:26:10.010000"],["2024-07-25T17:26:11.010000"],["2024-07-25T17:26:12.010000"],["2024-07-25T17:26:13.010000"],["2024-07-25T17:26:14.010000"],["2024-07-25T17:26:15.010000"],["2024-07-25T17:26:16.010000"],["2024-07-25T17:26:17.010000"],["2024-07-25T17:26:18.010000"],["2024-07-25T17:26:19.010000"],["2024-07-25T17:26:20.010000"],["2024-07-25T17:26:21.010000"],["2024-07-25T17:26:22.010000"],["2024-07-25T17:26:23.010000"],["2024-07-25T17:26:24.010000"],["2024-07-25T17:26:25.010000"],["2024-07-25T17:26:26.010000"],["2024-07-25T17:26:27.010000"],["2024-07-25T17:26:28.010000"],["2024-07-25T17:26:29.010000"],["2024-07-25T17:26:30.010000"],["2024-07-25T17:26:31.010000"],["2024-07-25T17:26:32.010000"],["2024-07-25T17:26:33.010000"],["2024-07-25T17:26:34.010000"],["2024-07-25T17:26:35.010000"],["2024-07-25T17:26:36.010000"],["2024-07-25T17:26:37.010000"],["2024-07-25T17:26:38.010000"],["2024-07-25T17:26:39.010000"],["2024-07-25T17:26:40.010000"],["2024-07-25T17:26:41.010000"],["2024-07-25T17:26:42.010000"],["2024-07-25T17:26:43.010000"],["2024-07-25T17:26:44.010000"],["2024-07-25T17:26:45.010000"],["2024-07-25T17:26:46.010000"],["2024-07-25T17:26:47.010000"],["2024-07-25T17:26:48.010000"],["2024-07-25T17:26:49.010000"],["2024-07-25T17:26:50.010000"],["2024-07-25T17:26:51.010000"],["2024-07-25T17:26:52.010000"],["2024-07-25T17:26:53.010000"],["2024-07-25T17:26:54.010000"],["2024-07-25T17:26:55.010000"],["2024-07-25T17:26:56.010000"],["2024-07-25T17:26:57.010000"],["2024-07-25T17:26:58.010000"],["2024-07-25T17:26:59.010000"],["2024-07-25T17:27:00.010000"],["2024-07-25T17:27:01.010000"],["2024-07-25T17:27:02.010000"],["2024-07-25T17:27:03.010000"],["2024-07-25T17:27:04.010000"],["2024-07-25T17:27:05.010000"],["2024-07-25T17:27:06.010000"],["2024-07-25T17:27:07.010000"],["2024-07-25T17:27:08.010000"],["2024-07-25T17:27:09.010000"],["2024-07-25T17:27:10.010000"],["2024-07-25T17:27:11.010000"],["2024-07-25T17:27:12.010000"],["2024-07-25T17:27:13.010000"],["2024-07-25T17:27:14.010000"],["2024-07-25T17:27:15.010000"],["2024-07-25T17:27:16.010000"],["2024-07-25T17:27:17.010000"],["2024-07-25T17:27:18.010000"],["2024-07-25T17:27:19.010000"],["2024-07-25T17:27:20.010000"],["2024-07-25T17:27:21.010000"],["2024-07-25T17:27:22.010000"],["2024-07-25T17:27:23.010000"],["2024-07-25T17:27:24.010000"],["2024-07-25T17:27:25.010000"],["2024-07-25T17:27:26.010000"],["2024-07-25T17:27:27.010000"],["2024-07-25T17:27:28.010000"],["2024-07-25T17:27:29.010000"],["2024-07-25T17:27:30.010000"],["2024-07-25T17:27:31.010000"],["2024-07-25T17:27:32.010000"],["2024-07-25T17:27:33.010000"],["2024-07-25T17:27:34.010000"],["2024-07-25T17:27:35.010000"],["2024-07-25T17:27:36.010000"],["2024-07-25T17:27:37.010000"],["2024-07-25T17:27:38.010000"],["2024-07-25T17:27:39.010000"],["2024-07-25T17:27:40.010000"],["2024-07-25T17:27:41.010000"],["2024-07-25T17:27:42.010000"],["2024-07-25T17:27:43.010000"],["2024-07-25T17:27:44.010000"],["2024-07-25T17:27:45.010000"],["2024-07-25T17:27:46.010000"],["2024-07-25T17:27:47.010000"],["2024-07-25T17:27:48.010000"],["2024-07-25T17:27:49.010000"],["2024-07-25T17:27:50.010000"],["2024-07-25T17:27:51.010000"],["2024-07-25T17:27:52.010000"],["2024-07-25T17:27:53.010000"],["2024-07-25T17:27:54.010000"],["2024-07-25T17:27:55.010000"],["2024-07-25T17:27:56.010000"],["2024-07-25T17:27:57.010000"],["2024-07-25T17:27:58.010000"],["2024-07-25T17:27:59.010000"],["2024-07-25T17:28:00.010000"],["2024-07-25T17:28:01.010000"],["2024-07-25T17:28:02.010000"],["2024-07-25T17:28:03.010000"],["2024-07-25T17:28:04.010000"],["2024-07-25T17:28:05.010000"],["2024-07-25T17:28:06.010000"],["2024-07-25T17:28:07.010000"],["2024-07-25T17:28:08.010000"],["2024-07-25T17:28:09.010000"],["2024-07-25T17:28:10.010000"],["2024-07-25T17:28:11.010000"],["2024-07-25T17:28:12.010000"],["2024-07-25T17:28:13.010000"],["2024-07-25T17:28:14.010000"],["2024-07-25T17:28:15.010000"],["2024-07-25T17:28:16.010000"],["2024-07-25T17:28:17.010000"],["2024-07-25T17:28:18.010000"],["2024-07-25T17:28:19.010000"],["2024-07-25T17:28:20.010000"],["2024-07-25T17:28:21.010000"],["2024-07-25T17:28:22.010000"],["2024-07-25T17:28:23.010000"],["2024-07-25T17:28:24.010000"],["2024-07-25T17:28:25.010000"],["2024-07-25T17:28:26.010000"],["2024-07-25T17:28:27.010000"],["2024-07-25T17:28:28.010000"],["2024-07-25T17:28:29.010000"],["2024-07-25T17:28:30.010000"],["2024-07-25T17:28:31.010000"],["2024-07-25T17:28:32.010000"],["2024-07-25T17:28:33.010000"],["2024-07-25T17:28:34.010000"],["2024-07-25T17:28:35.010000"],["2024-07-25T17:28:36.010000"],["2024-07-25T17:28:37.010000"],["2024-07-25T17:28:38.010000"],["2024-07-25T17:28:39.010000"],["2024-07-25T17:28:40.010000"],["2024-07-25T17:28:41.010000"],["2024-07-25T17:28:42.010000"],["2024-07-25T17:28:43.010000"],["2024-07-25T17:28:44.010000"],["2024-07-25T17:28:45.010000"],["2024-07-25T17:28:46.010000"],["2024-07-25T17:28:47.010000"],["2024-07-25T17:28:48.010000"],["2024-07-25T17:28:49.010000"],["2024-07-25T17:28:50.010000"],["2024-07-25T17:28:51.010000"],["2024-07-25T17:28:52.010000"],["2024-07-25T17:28:53.010000"],["2024-07-25T17:28:54.010000"],["2024-07-25T17:28:55.010000"],["2024-07-25T17:28:56.010000"],["2024-07-25T17:28:57.010000"],["2024-07-25T17:28:58.010000"],["2024-07-25T17:28:59.010000"],["2024-07-25T17:29:00.010000"],["2024-07-25T17:29:01.010000"],["2024-07-25T17:29:02.010000"],["2024-07-25T17:29:03.010000"],["2024-07-25T17:29:04.010000"],["2024-07-25T17:29:05.010000"],["2024-07-25T17:29:06.010000"],["2024-07-25T17:29:07.010000"],["2024-07-25T17:29:08.010000"],["2024-07-25T17:29:09.010000"],["2024-07-25T17:29:10.010000"],["2024-07-25T17:29:11.010000"],["2024-07-25T17:29:12.010000"],["2024-07-25T17:29:13.010000"],["2024-07-25T17:29:14.010000"],["2024-07-25T17:29:15.010000"],["2024-07-25T17:29:16.010000"],["2024-07-25T17:29:17.010000"],["2024-07-25T17:29:18.010000"],["2024-07-25T17:29:19.010000"],["2024-07-25T17:29:20.010000"],["2024-07-25T17:29:21.010000"],["2024-07-25T17:29:22.010000"],["2024-07-25T17:29:23.010000"],["2024-07-25T17:29:24.010000"],["2024-07-25T17:29:25.010000"],["2024-07-25T17:29:26.010000"],["2024-07-25T17:29:27.010000"],["2024-07-25T17:29:28.010000"],["2024-07-25T17:29:29.010000"],["2024-07-25T17:29:30.010000"],["2024-07-25T17:29:31.010000"],["2024-07-25T17:29:32.010000"],["2024-07-25T17:29:33.010000"],["2024-07-25T17:29:34.010000"],["2024-07-25T17:29:35.010000"],["2024-07-25T17:29:36.010000"],["2024-07-25T17:29:37.010000"],["2024-07-25T17:29:38.010000"],["2024-07-25T17:29:39.010000"],["2024-07-25T17:29:40.010000"],["2024-07-25T17:29:41.010000"],["2024-07-25T17:29:42.010000"],["2024-07-25T17:29:43.010000"],["2024-07-25T17:29:44.010000"],["2024-07-25T17:29:45.010000"],["2024-07-25T17:29:46.010000"],["2024-07-25T17:29:47.010000"],["2024-07-25T17:29:48.010000"],["2024-07-25T17:29:49.010000"],["2024-07-25T17:29:50.010000"],["2024-07-25T17:29:51.010000"],["2024-07-25T17:29:52.010000"],["2024-07-25T17:29:53.010000"],["2024-07-25T17:29:54.010000"],["2024-07-25T17:29:55.010000"],["2024-07-25T17:29:56.010000"],["2024-07-25T17:29:57.010000"],["2024-07-25T17:29:58.010000"],["2024-07-25T17:29:59.010000"],["2024-07-25T17:30:00.010000"],["2024-07-25T17:30:01.010000"],["2024-07-25T17:30:02.010000"],["2024-07-25T17:30:03.010000"],["2024-07-25T17:30:04.010000"],["2024-07-25T17:30:05.010000"],["2024-07-25T17:30:06.010000"],["2024-07-25T17:30:07.010000"],["2024-07-25T17:30:08.010000"],["2024-07-25T17:30:09.010000"],["2024-07-25T17:30:10.010000"],["2024-07-25T17:30:11.010000"],["2024-07-25T17:30:12.010000"],["2024-07-25T17:30:13.010000"],["2024-07-25T17:30:14.010000"],["2024-07-25T17:30:15.010000"],["2024-07-25T17:30:16.010000"],["2024-07-25T17:30:17.010000"],["2024-07-25T17:30:18.010000"],["2024-07-25T17:30:19.010000"],["2024-07-25T17:30:20.010000"],["2024-07-25T17:30:21.010000"],["2024-07-25T17:30:22.010000"],["2024-07-25T17:30:23.010000"],["2024-07-25T17:30:24.010000"],["2024-07-25T17:30:25.010000"],["2024-07-25T17:30:26.010000"],["2024-07-25T17:30:27.010000"],["2024-07-25T17:30:28.010000"],["2024-07-25T17:30:29.010000"],["2024-07-25T17:30:30.010000"],["2024-07-25T17:30:31.010000"],["2024-07-25T17:30:32.010000"],["2024-07-25T17:30:33.010000"],["2024-07-25T17:30:34.010000"],["2024-07-25T17:30:35.010000"],["2024-07-25T17:30:36.010000"],["2024-07-25T17:30:37.010000"],["2024-07-25T17:30:38.010000"],["2024-07-25T17:30:39.010000"],["2024-07-25T17:30:40.010000"],["2024-07-25T17:30:41.010000"],["2024-07-25T17:30:42.010000"],["2024-07-25T17:30:43.010000"],["2024-07-25T17:30:44.010000"],["2024-07-25T17:30:45.010000"],["2024-07-25T17:30:46.010000"],["2024-07-25T17:30:47.010000"],["2024-07-25T17:30:48.010000"],["2024-07-25T17:30:49.010000"],["2024-07-25T17:30:50.010000"],["2024-07-25T17:30:51.010000"],["2024-07-25T17:30:52.010000"],["2024-07-25T17:30:53.010000"],["2024-07-25T17:30:54.010000"],["2024-07-25T17:30:55.010000"],["2024-07-25T17:30:56.010000"],["2024-07-25T17:30:57.010000"],["2024-07-25T17:30:58.010000"],["2024-07-25T17:30:59.010000"],["2024-07-25T17:31:00.010000"],["2024-07-25T17:31:01.010000"],["2024-07-25T17:31:02.010000"],["2024-07-25T17:31:03.010000"],["2024-07-25T17:31:04.010000"],["2024-07-25T17:31:05.010000"],["2024-07-25T17:31:06.010000"],["2024-07-25T17:31:07.010000"],["2024-07-25T17:31:08.010000"],["2024-07-25T17:31:09.010000"],["2024-07-25T17:31:10.010000"],["2024-07-25T17:31:11.010000"],["2024-07-25T17:31:12.010000"],["2024-07-25T17:31:13.010000"],["2024-07-25T17:31:14.010000"],["2024-07-25T17:31:15.010000"],["2024-07-25T17:31:16.010000"],["2024-07-25T17:31:17.010000"],["2024-07-25T17:31:18.010000"],["2024-07-25T17:31:19.010000"],["2024-07-25T17:31:20.010000"],["2024-07-25T17:31:21.010000"],["2024-07-25T17:31:22.010000"],["2024-07-25T17:31:23.010000"],["2024-07-25T17:31:24.010000"],["2024-07-25T17:31:25.010000"],["2024-07-25T17:31:26.010000"],["2024-07-25T17:31:27.010000"],["2024-07-25T17:31:28.010000"],["2024-07-25T17:31:29.010000"],["2024-07-25T17:31:30.010000"],["2024-07-25T17:31:31.010000"],["2024-07-25T17:31:32.010000"],["2024-07-25T17:31:33.010000"],["2024-07-25T17:31:34.010000"],["2024-07-25T17:31:35.010000"],["2024-07-25T17:31:36.010000"],["2024-07-25T17:31:37.010000"],["2024-07-25T17:31:38.010000"],["2024-07-25T17:31:39.010000"],["2024-07-25T17:31:40.010000"],["2024-07-25T17:31:41.010000"],["2024-07-25T17:31:42.010000"],["2024-07-25T17:31:43.010000"],["2024-07-25T17:31:44.010000"],["2024-07-25T17:31:45.010000"],["2024-07-25T17:31:46.010000"],["2024-07-25T17:31:47.010000"],["2024-07-25T17:31:48.010000"],["2024-07-25T17:31:49.010000"],["2024-07-25T17:31:50.010000"],["2024-07-25T17:31:51.010000"],["2024-07-25T17:31:52.010000"],["2024-07-25T17:31:53.010000"],["2024-07-25T17:31:54.010000"],["2024-07-25T17:31:55.010000"],["2024-07-25T17:31:56.010000"],["2024-07-25T17:31:57.010000"],["2024-07-25T17:31:58.010000"],["2024-07-25T17:31:59.010000"],["2024-07-25T17:32:00.010000"],["2024-07-25T17:32:01.010000"],["2024-07-25T17:32:02.010000"],["2024-07-25T17:32:03.010000"],["2024-07-25T17:32:04.010000"],["2024-07-25T17:32:05.010000"],["2024-07-25T17:32:06.010000"],["2024-07-25T17:32:07.010000"],["2024-07-25T17:32:08.010000"],["2024-07-25T17:32:09.010000"],["2024-07-25T17:32:10.010000"],["2024-07-25T17:32:11.010000"],["2024-07-25T17:32:12.010000"],["2024-07-25T17:32:13.010000"],["2024-07-25T17:32:14.010000"],["2024-07-25T17:32:15.010000"],["2024-07-25T17:32:16.010000"],["2024-07-25T17:32:17.010000"],["2024-07-25T17:32:18.010000"],["2024-07-25T17:32:19.010000"],["2024-07-25T17:32:20.010000"],["2024-07-25T17:32:21.010000"],["2024-07-25T17:32:22.010000"],["2024-07-25T17:32:23.010000"],["2024-07-25T17:32:24.010000"],["2024-07-25T17:32:25.010000"],["2024-07-25T17:32:26.010000"],["2024-07-25T17:32:27.010000"],["2024-07-25T17:32:28.010000"],["2024-07-25T17:32:29.010000"],["2024-07-25T17:32:30.010000"],["2024-07-25T17:32:31.010000"],["2024-07-25T17:32:32.010000"],["2024-07-25T17:32:33.010000"],["2024-07-25T17:32:34.010000"],["2024-07-25T17:32:35.010000"],["2024-07-25T17:32:36.010000"],["2024-07-25T17:32:37.010000"],["2024-07-25T17:32:38.010000"],["2024-07-25T17:32:39.010000"],["2024-07-25T17:32:40.010000"],["2024-07-25T17:32:41.010000"],["2024-07-25T17:32:42.010000"],["2024-07-25T17:32:43.010000"],["2024-07-25T17:32:44.010000"],["2024-07-25T17:32:45.010000"],["2024-07-25T17:32:46.010000"],["2024-07-25T17:32:47.010000"],["2024-07-25T17:32:48.010000"],["2024-07-25T17:32:49.010000"],["2024-07-25T17:32:50.010000"],["2024-07-25T17:32:51.010000"],["2024-07-25T17:32:52.010000"],["2024-07-25T17:32:53.010000"],["2024-07-25T17:32:54.010000"],["2024-07-25T17:32:55.010000"],["2024-07-25T17:32:56.010000"],["2024-07-25T17:32:57.010000"],["2024-07-25T17:32:58.010000"],["2024-07-25T17:32:59.010000"],["2024-07-25T17:33:00.010000"],["2024-07-25T17:33:01.010000"],["2024-07-25T17:33:02.010000"],["2024-07-25T17:33:03.010000"],["2024-07-25T17:33:04.010000"],["2024-07-25T17:33:05.010000"],["2024-07-25T17:33:06.010000"],["2024-07-25T17:33:07.010000"],["2024-07-25T17:33:08.010000"],["2024-07-25T17:33:09.010000"],["2024-07-25T17:33:10.010000"],["2024-07-25T17:33:11.010000"],["2024-07-25T17:33:12.010000"],["2024-07-25T17:33:13.010000"],["2024-07-25T17:33:14.010000"],["2024-07-25T17:33:15.010000"],["2024-07-25T17:33:16.010000"],["2024-07-25T17:33:17.010000"],["2024-07-25T17:33:18.010000"],["2024-07-25T17:33:19.010000"],["2024-07-25T17:33:20.010000"],["2024-07-25T17:33:21.010000"],["2024-07-25T17:33:22.010000"],["2024-07-25T17:33:23.010000"],["2024-07-25T17:33:24.010000"],["2024-07-25T17:33:25.010000"],["2024-07-25T17:33:26.010000"],["2024-07-25T17:33:27.010000"],["2024-07-25T17:33:28.010000"],["2024-07-25T17:33:29.010000"],["2024-07-25T17:33:30.010000"],["2024-07-25T17:33:31.010000"],["2024-07-25T17:33:32.010000"],["2024-07-25T17:33:33.010000"],["2024-07-25T17:33:34.010000"],["2024-07-25T17:33:35.010000"],["2024-07-25T17:33:36.010000"],["2024-07-25T17:33:37.010000"],["2024-07-25T17:33:38.010000"],["2024-07-25T17:33:39.010000"],["2024-07-25T17:33:40.010000"],["2024-07-25T17:33:41.010000"],["2024-07-25T17:33:42.010000"],["2024-07-25T17:33:43.010000"],["2024-07-25T17:33:44.010000"],["2024-07-25T17:33:45.010000"],["2024-07-25T17:33:46.010000"],["2024-07-25T17:33:47.010000"],["2024-07-25T17:33:48.010000"],["2024-07-25T17:33:49.010000"],["2024-07-25T17:33:50.010000"],["2024-07-25T17:33:51.010000"],["2024-07-25T17:33:52.010000"],["2024-07-25T17:33:53.010000"],["2024-07-25T17:33:54.010000"],["2024-07-25T17:33:55.010000"],["2024-07-25T17:33:56.010000"],["2024-07-25T17:33:57.010000"],["2024-07-25T17:33:58.010000"],["2024-07-25T17:33:59.010000"],["2024-07-25T17:34:00.010000"],["2024-07-25T17:34:01.010000"],["2024-07-25T17:34:02.010000"],["2024-07-25T17:34:03.010000"],["2024-07-25T17:34:04.010000"],["2024-07-25T17:34:05.010000"],["2024-07-25T17:34:06.010000"],["2024-07-25T17:34:07.010000"],["2024-07-25T17:34:08.010000"],["2024-07-25T17:34:09.010000"],["2024-07-25T17:34:10.010000"],["2024-07-25T17:34:11.010000"],["2024-07-25T17:34:12.010000"],["2024-07-25T17:34:13.010000"],["2024-07-25T17:34:14.010000"],["2024-07-25T17:34:15.010000"],["2024-07-25T17:34:16.010000"],["2024-07-25T17:34:17.010000"],["2024-07-25T17:34:18.010000"],["2024-07-25T17:34:19.010000"],["2024-07-25T17:34:20.010000"],["2024-07-25T17:34:21.010000"],["2024-07-25T17:34:22.010000"],["2024-07-25T17:34:23.010000"],["2024-07-25T17:34:24.010000"],["2024-07-25T17:34:25.010000"],["2024-07-25T17:34:26.010000"],["2024-07-25T17:34:27.010000"],["2024-07-25T17:34:28.010000"],["2024-07-25T17:34:29.010000"],["2024-07-25T17:34:30.010000"],["2024-07-25T17:34:31.010000"],["2024-07-25T17:34:32.010000"],["2024-07-25T17:34:33.010000"],["2024-07-25T17:34:34.010000"],["2024-07-25T17:34:35.010000"],["2024-07-25T17:34:36.010000"],["2024-07-25T17:34:37.010000"],["2024-07-25T17:34:38.010000"],["2024-07-25T17:34:39.010000"],["2024-07-25T17:34:40.010000"],["2024-07-25T17:34:41.010000"],["2024-07-25T17:34:42.010000"],["2024-07-25T17:34:43.010000"],["2024-07-25T17:34:44.010000"],["2024-07-25T17:34:45.010000"],["2024-07-25T17:34:46.010000"],["2024-07-25T17:34:47.010000"],["2024-07-25T17:34:48.010000"],["2024-07-25T17:34:49.010000"],["2024-07-25T17:34:50.010000"],["2024-07-25T17:34:51.010000"],["2024-07-25T17:34:52.010000"],["2024-07-25T17:34:53.010000"],["2024-07-25T17:34:54.010000"],["2024-07-25T17:34:55.010000"],["2024-07-25T17:34:56.010000"],["2024-07-25T17:34:57.010000"],["2024-07-25T17:34:58.010000"],["2024-07-25T17:34:59.010000"],["2024-07-25T17:35:00.010000"],["2024-07-25T17:35:01.010000"],["2024-07-25T17:35:02.010000"],["2024-07-25T17:35:03.010000"],["2024-07-25T17:35:04.010000"],["2024-07-25T17:35:05.010000"]],"hovertemplate":"color=6\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"6","line":{"color":"#FF6692","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"6","scene":"scene","showlegend":true,"x":[-0.7915504486300051,-0.680606004782021,-0.5181407225318253,-0.23173290444537997,0.6545295426622033,-0.07533798133954406,-0.059135016053915024,0.9466356388293207,0.696190073620528,0.12485176790505648,0.18029538029804826,-0.7333265389315784,0.6354080010205507,0.3445208561606705,0.23925946559756994,-0.4193042041733861,0.33713012048974633,-0.01640814868733287,0.25077351089566946,-0.2704113028012216,0.986232147552073,-0.06328309047967196,0.3186702076345682,-0.9076330265961587,-0.7219925932586193,0.7085215859115124,-0.14792027324438095,0.24481482384726405,-0.5737742148339748,0.5343494303524494,0.5837818430736661,-0.2588046807795763,-0.1726242359727621,-0.8413262451067567,0.19335206551477313,0.7873607887886465,0.7535182633437216,-0.39691354567185044,0.2661682483740151,0.3638366484083235,0.13356685684993863,0.8096564458683133,0.35015307320281863,0.4893153943121433,-0.1342483307234943,-0.5208162516355515,0.4989133388735354,0.823130922857672,-0.7126156073063612,-0.08765454823151231,-0.8576685739681125,-0.7217455059289932,0.3996750353835523,0.266694569028914,0.5801738202571869,-0.8784169903956354,0.1318145990371704,0.5076483646407723,0.9041938213631511,-0.8164667999371886,-0.7104347292333841,-0.05023280763998628,0.7427465403452516,-0.23559786891564727,-0.9223815663717687,-0.8926978530362248,-0.06505435053259134,0.7472490309737623,0.9881786587648094,-0.6235539326444268,-0.8507889448665082,0.889711404684931,-0.6602726941928267,0.4398148409090936,0.8748895647004247,0.13625861471518874,0.6323044458404183,0.6555520570836961,0.4394429833628237,0.4285571966320276,-0.8052635155618191,-0.35248487861827016,-0.2097708755172789,0.5628453870303929,-0.04253369150683284,0.22567245364189148,0.024721436202526093,-0.5788278426043689,-0.7350836149416864,0.22970805456861854,0.39913246175274253,0.08033560868352652,0.7076869267039001,-0.12602894427254796,-0.42561762500554323,-0.9862685259431601,-0.3443685038946569,0.02889825403690338,0.8960256283171475,-0.12909453874453902,0.6974637964740396,-0.08502658223733306,-0.9248170489445329,0.04055686527863145,0.1769275856204331,0.2123080948367715,0.4313694881275296,0.0729888859204948,-0.7083613104186952,0.05563666019588709,-0.5147438561543822,0.7260320512577891,-0.3239001929759979,-0.9253426101058722,0.7469041445292532,-0.043275360483676195,-0.7426333231851459,0.15890386886894703,0.8277730322442949,0.8641784815117717,-0.274848566390574,-0.7556469831615686,-0.7566555715166032,-0.08496985584497452,0.1572209084406495,0.7534846398048103,-0.9538986799307168,0.31386473355814815,-0.20050310855731368,-0.38748677307739854,-0.48696562787517905,0.6646446823142469,0.824961063452065,0.6444715466350317,0.897383461240679,0.943514434620738,0.8347189696505666,0.23884622985497117,-0.40564049128443,-0.5417130719870329,0.42447663797065616,0.9490562053397298,-0.8264227318577468,0.7086134715937078,0.9932613968849182,0.18427774030715227,-0.38011319329962134,-0.06626060698181391,0.18219864694401622,0.5203409777022898,-0.4098478062078357,0.6558741969056427,0.48432367434725165,-0.2779045202769339,-0.5005698343738914,0.42542258696630597,-0.42468156944960356,-0.9379706811159849,0.5552256898954511,-0.24356530979275703,-0.019868871197104454,0.6671560746617615,0.3098959168419242,-0.18683721171692014,-0.8625106909312308,-0.17481179302558303,0.6537872469052672,-0.8777894135564566,-0.5356381861492991,0.046614950988441706,0.6994054275564849,-0.45050955889746547,-0.9041268941946328,0.5670089870691299,-0.9063516524620354,0.9901692247949541,-0.6999090700410306,0.7708213236182928,-0.9575015055015683,0.24115652265027165,0.781795131508261,0.1618992672301829,-0.2455549999140203,0.42575485119596124,0.6806737892329693,0.10203470150008798,-0.5128235192969441,0.2584513952024281,-0.22847997723147273,-0.44231567112728953,-0.7122273445129395,0.6053489516489208,-0.551242982968688,-0.762123906519264,-0.6083332179114223,0.9786564507521689,-0.6493716053664684,-0.6023875758983195,0.3680859520100057,0.5894532445818186,0.5319968624971807,-0.9615716096013784,0.9188096267171204,-0.36157456738874316,0.05608020490035415,0.5239562438800931,0.5212499033659697,-0.10870585218071938,-0.8078003418631852,-0.4790373952127993,-0.6639607413671911,0.2365612224675715,0.01780225010588765,0.029015142004936934,-0.4918525037355721,-0.8149329023435712,-0.2188675021752715,-0.14572025137022138,-0.6714056711643934,-0.07848883187398314,-0.31252145441249013,0.7509642434306443,0.5130139663815498,0.8557360908016562,0.2523895180784166,0.5524749141186476,-0.3198247733525932,-0.7698138398118317,0.2740075341425836,0.19215133832767606,-0.21644028695300221,-0.7139866668730974,-0.5776786003261805,-0.3876666589640081,-0.05784030770882964,0.7554084099829197,-0.4178031818009913,-0.6141982199624181,-0.39716874761506915,-0.9718249468132854,-0.6841645445674658,0.10700604831799865,-0.043605095241218805,0.8543531764298677,-0.4338149563409388,0.07510386174544692,0.09611565060913563,0.07772507984191179,0.2716413987800479,0.7905908594839275,0.09391435561701655,-0.7996480050496757,0.23714696802198887,-0.3173359576612711,-0.2647050032392144,-0.7487238612957299,0.04768895637243986,0.10646295826882124,0.14047262025997043,-0.890604224987328,-0.7829494928009808,0.21612449595704675,0.22267295653000474,0.8428939026780427,-0.8750070068053901,-0.035981536377221346,-0.9930116846226156,0.7652048976160586,-0.8193844775669277,-0.9757390217855573,-0.1421790928579867,0.14807914895936847,0.4003452747128904,-0.6735212183557451,-0.5240970095619559,0.7830812186002731,-0.5877853417769074,0.5394619144499302,0.28742855321615934,0.17703181691467762,0.9093975834548473,0.4022464044392109,-0.38565437169745564,0.5638394081033766,-0.753271927125752,-0.13785503106191754,-0.5522828716784716,0.07339469157159328,0.8590150815434754,-0.7754052127711475,0.6846977486275136,0.8203395400196314,0.22167666302993894,-0.8230026159435511,0.26568421768024564,0.9935343218967319,0.21817514719441533,0.4712937637232244,0.15014073764905334,-0.10118450969457626,-0.5144781558774412,0.30237598065286875,-0.09288621647283435,-0.12932715797796845,0.8304145289584994,-0.6680262978188694,0.1297014751471579,0.03332134149968624,0.6430687080137432,0.6569624426774681,0.09872009744867682,-0.7009989013895392,-0.14161821966990829,0.5295936786569655,0.2906854818575084,0.21357744373381138,0.31722512748092413,0.6600610250607133,0.7930866563692689,0.46190120652318,0.7751964842900634,-0.543678208719939,-0.356550803873688,-0.2627794207073748,-0.10437242640182376,-0.041498609352856874,0.4436759324744344,0.9615969420410693,-0.7032065275125206,-0.294820963870734,-0.40488342894241214,-0.9619715302251279,0.3184750294312835,0.08602624852210283,0.7012811806052923,-0.6351555469445884,0.8102908246219158,0.16038888599723577,0.7801803038455546,-0.14941954147070646,0.3148817396722734,-0.511209798976779,-0.531492056325078,0.8651843541301787,-0.12042957870289683,0.06302518397569656,0.950375254265964,0.7103961491957307,0.19456733018159866,-0.23683189321309328,0.9779593572020531,-0.4960698005743325,-0.9562186244875193,-0.04477496491745114,0.410681773442775,-0.33897234546020627,-0.9284660639241338,-0.6226956727914512,0.6962880254723132,-0.8827792215161026,0.516117837280035,-0.9514235337264836,-0.5358981424942613,-0.6703265332616866,-0.8317804737016559,-0.3922251076437533,0.3315020469017327,-0.22826126124709845,0.23780688410624862,0.2829200178384781,0.650975791271776,0.17940163426101208,0.5140471295453608,0.3844696842133999,-0.8756487360224128,-0.9354217052459717,-0.22733172588050365,-0.6020021382719278,-0.3749986309558153,-0.6316382731311023,-0.1406007050536573,-0.15240022912621498,0.7628777446225286,-0.29879363579675555,0.9128608712926507,0.9684621812775731,0.7852328512817621,-0.8463886245153844,-0.8877881113439798,0.384296344127506,0.33036435302346945,-0.6427873610518873,-0.8925249055027962,0.7871438660658896,0.992993697989732,0.3426964934915304,0.4959329767152667,0.46315531618893147,-0.181932486128062,-0.044910731725394726,-0.11168101569637656,0.8580431994050741,0.8734294380992651,-0.6803349577821791,-0.6434475132264197,-0.3964689653366804,0.7059642216190696,-0.10692136269062757,0.9367672819644213,0.706132264342159,0.8107492802664638,-0.32035836949944496,0.7373232166282833,-0.8841582415625453,-0.4450274156406522,0.1401402596384287,-0.6283229500986636,-0.4067320334725082,-0.9107678518630564,-0.25362084386870265,-0.12157947337254882,-0.33482717303559184,0.08491236856207252,-0.11148750595748425,0.7614757190458477,0.916136309504509,-0.2377346083521843,0.32429309049621224,-0.11283603776246309,0.08400640077888966,-0.7349586095660925,0.8667216897010803,0.011248893104493618,0.2797957803122699,-0.42059624986723065,-0.7471945309080184,0.7696468597277999,-0.6238285931758583,-0.06787700112909079,0.20775090297684073,-0.37863813899457455,-0.12724435003474355,0.5021435460075736,-0.9717335938476026,-0.903334494214505,-0.5156882787123322,0.6047206497751176,0.06270821765065193,-0.38525024708360434,-0.3603638424538076,0.3406356549821794,-0.010346387978643179,-0.377821805421263,-0.15833631716668606,-0.935535135678947,0.6372769949957728,0.3765770443715155,0.6677636434324086,-0.9991311682388186,0.48760734824463725,-0.862944167573005,0.6208985075354576,0.8222117447294295,0.06102910079061985,0.890697686932981,0.16654797410592437,0.5810775174759328,-0.12068558484315872,0.7628785218112171,0.03310780460014939,0.5211691898293793,-0.12135998206213117,-0.17795242881402373,0.6647095428779721,0.6297585219144821,-0.9697453598491848,0.34509522654116154,0.2849810877814889,0.5573529312387109,-0.804319822229445,0.1463263053447008,0.32156209694221616,-0.8321559219621122,-0.5867597223259509,0.3177646389231086,-0.39155642967671156,0.5946071231737733,-0.2535427729599178,-0.8065241500735283,-0.41247766790911555,0.8308424283750355,0.5705904886126518,0.1700147301889956,0.06238362705335021,0.17262116447091103,0.2292256779037416,-0.5423902100883424,-0.9363826406188309,-0.1610355256125331,-0.26610965467989445,-0.19882985623553395,0.8080780780874193,0.06473272573202848,-0.624016220215708,-0.20746737625449896,0.14805120695382357,-0.5122840711846948,-0.06431478774175048,-0.499331081751734,-0.9695744961500168,-0.8893680567853153,-0.3525660312734544,0.8080379921011627,0.8239524438977242,-0.327977841719985,0.1558188791386783,0.3072904869914055,-0.3371946569532156,0.27353893779218197,0.6530124805867672,-0.710462034214288,0.9207143783569336,-0.10494390362873673,0.2536383718252182,-0.4494839496910572,-0.9607220431789756,-0.3901087208651006,0.6295758578926325,-0.854836845304817,0.8436130443587899,0.8726211949251592,0.9869697196409106,0.2840127684175968,0.8065761239267886,-0.9976296811364591,0.21257868269458413,0.48726759338751435,0.9024348864331841,-0.23940559942275286,0.4275235999375582,-0.6479144459590316,0.8696342087350786,-0.8855798044241965,-0.34329159324988723,-0.16427453607320786,-0.6893866015598178,0.5156514537520707,0.35738820116966963,0.40846130531281233,0.9928398234769702,-0.37071528704836965,-0.14781442983075976,0.9198326696641743,0.6105775320902467,-0.6404886008240283,-0.23701387736946344,-0.5320604154840112,0.883444934617728,-0.05353888822719455,-0.20702007599174976,0.08232766482979059,-0.2948771114461124,0.6278485707007349,0.2578953271731734,0.3701825807802379,0.5093911872245371,0.35527957044541836,0.1627241661772132,0.2633741362951696,-0.23039529146626592,-0.6803131666965783,0.4990244912914932,-0.17764955991879106,-0.562069468665868,-0.2745366501621902,0.5121350777335465,0.49309797398746014,0.23563565965741873,-0.801907782908529,0.28863630862906575,0.4834544127807021,0.7475059241987765,0.6060729040764272,0.8446115273982286,-0.05507760029286146,0.602374339941889,0.08440322009846568,-0.38412909395992756,-0.43429409991949797,-0.016632447484880686,-0.7200706647709012,-0.2171095898374915,-0.36758810095489025,0.3079130328260362,0.8033312307670712,0.38783658016473055,-0.6933775846846402,-0.5208674073219299,-0.44065360026434064,-0.06385717261582613,0.013761467300355434,0.8566617434844375,-0.9915247354656458,-0.5291919279843569,0.2520836186595261,0.688750232104212,-0.13925535790622234,-0.6816504234448075,-0.7889596670866013,0.8389813927933574,0.024066343437880278,-0.7623713514767587,0.10780073329806328,0.9499137410894036,-0.21157460799440742,0.8605044409632683,0.6445050947368145,0.47045931266620755,-0.3753424477763474,-0.8935008947737515,-0.3261880800127983,-0.3702023313380778,-0.9932177402079105,0.9157352028414607,-0.39591346960514784,-0.401546040084213,0.4697797829285264,0.4724862780421972,0.24144324101507664,0.6314167082309723,-0.8523004031740129,-0.8218217445537448,-0.22411882830783725,-0.6164344917051494,-0.5217121364548802,-0.8290820233523846,0.34070083731785417,0.20712414244189858,-0.8029427072033286,-0.2933963565155864,0.379483028780669,-0.0848830109462142,0.543477819301188,0.5118106049485505,-0.4403333836235106,0.7717519663274288,0.8265866446308792,0.0483437511138618,0.19927229871973395,0.2508992343209684,-0.038758581038564444,0.2668859423138201,-0.07932004472240806,-0.5931495064869523,0.5480232867412269,0.0904693347401917,0.29943029675632715,-0.23083619540557265,-0.15020226780325174,0.21066854940727353,-0.08503951830789447,-0.31412405241280794,0.8569000670686364,-0.6403250456787646,0.7545920624397695,-0.6302690859884024,-0.4868356087245047,-0.7294412171468139,0.17235249606892467,0.23174898605793715,-0.5979499109089375,-0.6560813765972853,-0.9503115601837635,0.010199934244155884,-0.04809698835015297,-0.6011360655538738,-0.05087882652878761,0.8309149453416467,-0.24367239093407989,0.16179809113964438,0.08142353408038616,-0.323104705195874,0.7617352451197803,-0.015689887572079897,-0.4627268952317536,0.8132247268222272,0.5004967218264937,0.3473740736953914,-0.1085138856433332,0.2894801450893283,-0.31405978463590145,-0.15782961109653115,-0.2031339993700385,-0.16997005371376872,-0.8159210416488349,0.7627855255268514,0.8563243323005736,0.21924046240746975,-0.7475270363502204,0.699157684110105,0.1828763848170638,-0.9202831941656768,-0.1717681111767888,-0.8844523136503994,0.42438851576298475,-0.5581059623509645,0.2635302194394171,0.8917303932830691,-0.20223467657342553,-0.3337178248912096,-0.3541454686783254,0.9217908815480769,0.3850405034609139,0.3156650452874601,-0.015262535773217678,-0.952939064707607,0.7015134235844016,-0.12006036099046469,0.7129936050623655,-0.9263009391725063,-0.21991080651059747,0.28424345050007105,0.7073440728709102,-0.17811033222824335,-0.41194431809708476,-0.9558282089419663,-0.2404506760649383,0.11820428166538477,0.6188908480107784,-0.07194649241864681,0.3654785491526127,-0.2104775388725102,-0.5220990115776658,0.30741409957408905,0.32740512769669294,0.01265758229419589,-0.6014107866212726,-0.46700489660725,0.1764260777272284,-0.1481050392612815,-0.9001532760448754,0.46798451198264956,0.4242035634815693,0.304313481785357,0.6424600607715547,0.12687721196562052,0.044593864120543,-0.5049440683797002,-0.2498658881522715,0.9723797705955803,-0.512742810882628,-0.5577421011403203,-0.0579811311326921,-0.2828130549751222,0.8963890275917947,0.04503666143864393,-0.5015033283270895,-0.25732713425531983,-0.9176135212182999,0.27498759189620614,-0.8640041914768517,0.5257587311789393,-0.6244522635824978,0.2741394923068583,-0.4521414451301098,0.4957523010671139,0.30739359138533473,0.22382505191490054,0.9919256875291467,-0.7346348268911242,-0.9997646221891046,-0.1583193140104413,-0.984845538623631,-0.37923866603523493,0.15663952752947807,0.40231786388903856,0.20494701201096177,0.20188359776511788,-0.13069782918319106,0.03466155054047704,-0.1939958706498146,0.5140964295715094,-0.6730934795923531,-0.6196660520508885,0.42276723124086857,0.055711546912789345,0.7186886765994132,-0.2889423444867134,-0.5865643629804254,-0.8047828716225922,0.16959154745563865,0.7025022227317095,0.9226021850481629,-0.3830098626203835,0.5016010547988117,0.18424718780443072,0.14642722671851516,0.05726031633093953,-0.2023506537079811,0.02331676334142685,0.023355450481176376,0.37396837398409843,-0.6732293535023928,-0.9847569330595434,0.27137591503560543,-0.7446476342156529,-0.8005608622916043,-0.36470224522054195,-0.7952850600704551,0.10707600601017475,-0.5896605346351862,0.8396841348148882,0.1342014530673623,0.4828167245723307,-0.9527425491251051,-0.9602392562665045,0.40445106057450175,0.01851543877273798,0.962725053075701,-0.70483228424564,-0.5820296495221555,-0.15041708946228027,0.03806773480027914,0.8231935733929276,-0.9602578552439809,0.19336840603500605,0.11142203025519848,-0.8626304669305682,-0.6894500493071973,-0.7831005430780351,0.9315998624078929,0.5653255945071578,0.5669004716910422,-0.9670342491008341,0.6223228969611228,-0.054588159546256065,-0.31148992385715246,-0.7963910307735205,0.7933504856191576,-0.6896355394273996,0.5964564783498645,0.005127124488353729,-0.7386036859825253,-0.9756949068978429,-0.37094765482470393,-0.012589221354573965,0.36947966320440173,0.6993012819439173,-0.5747368219308555,-0.5943255047313869,0.38749581295996904,-0.9831309663131833,-0.4825769132003188,0.652157589327544,0.006367347668856382,-0.9025250822305679,0.7618557261303067,0.8340046438388526,0.05937978206202388,0.3154139523394406,0.800821584649384,-0.16717631136998534,-0.0626592948101461,0.6509392145089805,-0.34824351221323013,0.03710526926442981,-0.708065431099385,-0.910897409543395,-0.12624735478311777,0.6459447299130261,0.6294929045252502,0.9443214898929,0.43223909800872207,-0.4373770337551832,-0.7057995032519102,0.8051307275891304,0.6573247746564448,-0.6399133121594787,0.31137320026755333,-0.10327181871980429,-0.8615481499582529,0.44130387203767896,-0.5908697065897286,-0.08153797825798392,0.5278863520361483,-0.04315901733934879,-0.8857748075388372,-0.6087657464668155,0.14242001855745912,0.19152098568156362,-0.17703914549201727,-0.7297431472688913,-0.3103053108789027,0.8206309489905834,-0.14803489251062274,0.24408017052337527,-0.08578074304386973,0.24475541105493903,-0.6525329109281301,0.23477807315066457,-0.987634442280978,0.5184028097428381,0.3256726134568453,-0.6668512369506061,-0.17397695360705256,0.2679628627374768,0.6302414140664041,0.30967469746246934,0.3241574754938483,-0.0892605627886951,-0.2875216114334762,-0.9719710308127105,0.8561838893219829,-0.9660999444313347,0.2822404452599585,0.7609443301334977,-0.3539759679697454,0.9666846450418234,0.433398577850312,0.6742920381948352,-0.3227819954045117,-0.5493462448939681,0.5370866060256958,-0.7498096800409257,0.3007981958799064,0.9187563862651587,-0.6859007040038705,0.8031028583645821,-0.6961922063492239,0.8164699734188616,0.49060077173635364,-0.8535954137332737,-0.7221481511369348,-0.24682215228676796,-0.6206954792141914,0.9106344534084201,0.3188817519694567,0.8747976324521005,-0.13181409798562527,0.7774091851897538,0.780065753031522,0.0012765624560415745,0.8926245435141027,0.7640986759215593,-0.6728751310147345,0.11828153906390071,0.5011198841966689,0.2550012175925076,0.5435531600378454,-0.6867540562525392,-0.6485675810836256,0.8499285238794982,-0.12613135064020753,-0.5096375872381032,-0.03632259462028742,0.12823517015203834,-0.928805940784514,0.3496937667950988,-0.15615096827968955,-0.8818170931190252,0.9556483635678887,0.677631143014878,-0.9440980087965727,-0.38835778972133994,-0.4993657576851547,0.9832585630938411,-0.7950399313122034,0.7438587602227926,-0.6127658253535628,-0.9933056375011802,0.17162544466555119,-0.7824976914562285,0.16685259528458118,0.005961680319160223,0.5410647862590849,-0.9599695140495896,0.07583618070930243,0.37958488799631596,0.9821540978737175,0.7237379620783031,0.6208572662435472,0.6668987921439111,-0.42561952443793416,0.019072904717177153,0.06138093862682581,0.3725515049882233,0.0675749508664012,-0.23485599644482136,0.40697953198105097,-0.14491793513298035,-0.8147217286750674,-0.8017716486938298,0.9457653556019068,-0.39779259683564305,0.12473649112507701,-0.8389909453690052,-0.214378850068897,0.7563248840160668,-0.3755823504179716,-0.5166376698762178,0.5901860161684453,0.3131050649099052,-0.08249286701902747,-0.5172270014882088,-0.09680487075820565,-0.9247626257129014,-0.7327022175304592,0.5059698265977204,-0.46120917657390237,-0.9942435035482049,-0.780287413392216,0.8379202773794532,-0.1713264654390514,0.6080370177514851,-0.25330071430653334,-0.11033520568162203,0.8999840742908418,-0.13988042622804642,0.0588823021389544,-0.4066153489984572,-0.06557345949113369,-0.9774177325889468,-0.08248361619189382,-0.8867314644157887,-0.18022841727361083,0.5018475232645869,0.2552974936552346,0.29385646991431713,0.08047845168039203,0.36513027269393206,-0.2547920155338943,0.8013229602947831,0.9018284124322236,0.6512586241587996,-0.5523211061954498,0.07795547368004918,-0.7785986107774079,-0.17025984870269895,-0.590022484306246,0.47028780402615666,0.8557579452171922,-0.0393410986289382,-0.5517600006423891,-0.7104361946694553,0.8250707518309355,-0.436754503287375,0.1457782289944589,-0.49734788201749325,0.6797533920034766,-0.7919944212771952,-0.9202434346079826,0.984365844167769,-0.2522693113423884,-0.5243939845822752,0.2697199499234557,-0.14397125225514174,-0.4235916011966765,-0.39955183770507574,0.6617425624281168,0.6296756812371314,-0.23254511645063758,-0.9927008184604347,0.7838445724919438,-0.04716512328013778,0.2108834101818502,0.16963285394012928,-0.49681503837928176,0.6270220563746989,-0.10657631326466799,-0.9692426430992782,0.8601298541761935,0.3616769351065159,0.32871043449267745,-0.02923148265108466,-0.09317925432696939,-0.329261161852628,-0.19074105890467763,0.403680810239166,-0.1684728809632361,0.6834171307273209,0.05902079213410616,0.6864343779161572,-0.10667509259656072,-0.699593311175704,0.6322011584416032,-0.6110472762957215,-0.6542694340460002,-0.9493027217686176,-0.021892554592341185,-0.9150126874446869,0.9421996865421534,-0.2463364088907838,0.8788728481158614,0.6893334775231779,-0.3883085669949651,0.5924636693671346,0.028101691976189613,0.4818450571037829,0.5452682361938059,-0.4008805355988443,0.4945209361612797,-0.9174297559075058,-0.26707522105425596,0.11944294068962336,-0.8278645612299442,-0.9481942066922784,0.7359710587188601,-0.18840380059555173,-0.44561821362003684,-0.19885961711406708,0.4873950961045921,-0.9205815456807613,0.011591499205678701,0.013936901930719614,-0.3230433580465615,-0.8502537081949413,0.39504848839715123,-0.39587426045909524,-0.8357073557563126,-0.1823531216941774,0.3029929311014712,-0.5599392387084663,0.919986454769969,-0.5861145402304828,-0.04801653977483511,0.09629825968295336,0.8258340698666871,-0.3933261325582862,0.4111727406270802,0.005427496507763863,0.19754878152161837,-0.38929637474939227,-0.28578820498660207,-0.09422099823132157,0.7281983555294573,-0.9188847076147795,0.6829335088841617,0.048769818153232336,0.43971860874444246,0.3118858556263149,0.40770828584209085,-0.6625186428427696,-0.14045907650142908,-0.22112561110407114,0.263249175157398,-0.12923863576725125,0.3594223400577903,-0.1725876466371119,-0.16687083337455988,0.045937327202409506,-0.6819434440694749,-0.39302104199305177,0.5896877967752516,-0.3470322568900883,0.40740068117156625,-0.8939533294178545,-0.26331293489784,-0.783438126090914,-0.20716772554442286,0.41411645291373134,0.3757262919098139,0.4202239643782377,0.26539867417886853,0.10548105230554938,0.2827330990694463,0.400391333270818,0.03138399589806795,0.5783236883580685,-0.48304513562470675,0.5450499719008803,0.2568652802146971,-0.7477460466325283,-0.9737735316157341,-0.36987504782155156,0.19275497691705823,-0.7089895429089665,-0.10964090377092361,-0.43805672228336334,0.5242569572292268,-0.8104888587258756,-0.8485608389601111,-0.7833432741463184,0.9615658912807703,0.9423616053536534,0.5047770710662007,-0.030713302083313465,0.8987599383108318,-0.5460185930132866,0.1271745255216956,0.8275508983060718,-0.4253805857151747,0.5575720383785665,-0.7441808129660785,-0.6720354249700904,0.9211165830492973,0.7485285634174943,-0.2576690446585417,-0.5448218169622123,-0.9389794217422605,0.8118397556245327,0.4778294563293457,0.8693924327380955,0.7144495733082294,-0.5573377613909543,-0.15020887413993478,-0.9842722145840526,-0.21983964648097754,-0.9181980122812092,-0.5409386437386274,-0.5436689537018538,0.8015130716376007,-0.10219056392088532,0.0724759865552187,-0.9111396390944719,0.3426182884722948,0.27123129600659013,-0.0771800009533763,-0.8265911429189146,-0.26617509312927723,-0.5641353861428797,-0.25528956204652786,-0.878741045948118,0.8505133306607604,-0.7722589890472591,0.5258786957710981,-0.6682653296738863,0.6026850044727325,0.0758401257917285,-0.4814433725550771,0.9059131415560842,0.869356922339648,-0.2364826137199998,-0.04336321307346225,0.19087985949590802,0.41288811108097434,0.3603676981292665,0.200123593211174,0.6944692824035883,0.08140847086906433,0.8623197469860315,0.335553303360939,-0.6579744475893676,-0.6913195946253836,-0.11133362213149667,0.34797201585024595,0.047324675135314465,0.8011312182061374,-0.6694627534598112,-0.2916270741261542,0.5734014194458723,0.8400911930948496,-0.37524152360856533,-0.6388076054863632,0.6778070977889001,0.09962087962776423,0.7036271132528782,0.1030596811324358,0.006844853516668081,-0.9876332725398242,-0.12742991000413895,0.6320155723951757,-0.049954360350966454,-0.6852971836924553,0.03004125226289034,-0.174725656863302,-0.5847063399851322,0.6622760291211307,0.7474642600864172,0.8559269919060171,0.7540575750172138,0.007896217051893473,-0.6144389389082789,0.822284328751266,0.6730646919459105,0.4959009736776352,-0.8804622245952487,0.2773271449841559,0.08164284517988563,-0.904041098896414,-0.7896040226332843,-0.10448833229020238,-0.8876226786524057,-0.8938248916529119,0.6078078616410494,0.9766284027136862,0.17343625845387578,0.7776602408848703,0.5417366693727672,0.5485710250213742,-0.26738457661122084,-0.6874390561133623,-0.20179416798055172,-0.4181566573679447,-0.6008204137906432,0.36983300372958183,-0.05334911169484258,-0.9310689591802657,0.4762200112454593,-0.37461715238168836,-0.7143937051296234,-0.2556754373945296,0.639958927873522,0.15813606837764382,0.6497579887509346,0.24059143289923668,-0.9488862217403948,-0.8364738398231566,-0.08820680854842067,-0.34489854937419295,-0.8810919467359781,-0.7957337419502437,0.42463622288778424,0.793874585069716,0.8280954114161432,0.8312034159898758,-0.5732496702112257,0.2285216124728322,0.6684498097747564,-0.15824670996516943,0.9729620208963752,-0.08643191633746028,0.5820876881480217,-0.5660245288163424,-0.13042372791096568,-0.8322186898440123,0.42644755309447646,-0.46685552783310413,0.5370343700051308,0.3133878535591066,0.5492389569990337,0.15174908144399524,0.7372137820348144,-0.8945027566514909,0.711334397085011,0.39785232301801443,0.8585382746532559,-0.661901818588376,-0.07103038625791669,-0.842517152428627,-0.5751710599288344,0.12003661133348942,0.13253806717693806,-0.3682629531249404,0.39463436137884855,-0.20552641013637185,-0.8937006560154259,0.0736546739935875,0.15102277463302016,0.2761852378025651,-0.34395107068121433,0.18107427237555385,0.11543342750519514,-0.11532461224123836,-0.28947250731289387,0.825400956440717,0.8168513267301023,0.37703669257462025,-0.6837579538114369,-0.8499015597626567,-0.4313867436721921,0.33842315012589097,0.28353424556553364,0.9345987094566226,-0.36630300991237164,0.48248034808784723,0.5961535638198256,0.5448916512541473,0.9149409355595708,-0.9452534904703498,-0.789044430013746,-0.3421056577935815,-0.1108732963912189,0.5099076936021447,-0.059351031202822924,0.47490329621359706,-0.10122998524457216,-0.188113899435848,-0.7917688926681876,0.8902564495801926,-0.2398029244504869,0.2347528194077313,-0.7324232584796846,0.5009667612612247,-0.9272829866968095,0.09624182712286711,-0.9307054760865867,0.9878067481331527,0.6691560139879584,-0.7764553665183485,-0.02581383055076003,0.6903558815829456,0.07470253389328718,-0.9781493209302425,0.35862758103758097,0.15833023842424154,-0.9397737486287951,-0.9027486345730722,-0.7124100546352565,-0.5182971926406026,0.5104196853935719,0.11549388524144888,-0.10852599982172251,-0.985981356818229,0.28017155220732093,-0.22390826232731342,0.17372903786599636,-0.25670181680470705,0.6637998814694583,-0.3568707392551005,-0.22253646003082395,-0.2439279709942639,-0.4343033912591636,-0.2419088026508689,0.8505309987813234,-0.10109735280275345,0.7136920122429729,0.41732392041012645,-0.740457012783736,0.22489010356366634,0.9672578256577253,0.8686351496726274,0.14396093226969242,0.3393926010467112,-0.877551244571805,-0.5387842813506722,0.9398053605109453,-0.6596865365281701,-0.5833830339834094,-0.20162509195506573,-0.8285344252362847,-0.410859155934304,0.45137934060767293,-0.2540152654983103,-0.9872309830971062,-0.31620713835582137,0.7370169535279274,0.9869103138335049,0.5733856414444745,0.9383631097152829,0.3411459121853113,0.1706632594577968,-0.7039026976563036,0.7818177100270987,-0.4468012801371515,-0.48126624478027225,0.6408282038755715,0.4395303358323872,0.7291865721344948,-0.7477932167239487,-0.9202310051769018,0.28030567010864615,-0.27490607975050807,0.4710369906388223,-0.9733257410116494,0.1034766212105751,0.03164861584082246,0.9220316172577441,0.7278894982300699,-0.5415885332040489,0.8899375218898058,-0.9994697729125619,0.43974884087219834,-0.19023021776229143,-0.6030473420396447,0.4303496447391808,-0.31928161438554525,-0.14195486763492227,-0.9382158336229622,0.8836067244410515,0.7956885802559555,0.1875638011842966,0.7049007941968739,0.9542556530795991,-0.047929514199495316,-0.446821307297796,0.03800956625491381,-0.4295919695869088,-0.1964009115472436,-0.4843006399460137,0.07470286963507533,0.09490076405927539,0.2956381542608142,0.2798385685309768,-0.8669397616758943,-0.5570760266855359,-0.8938473169691861,0.19748697290197015,-0.22519081365317106,-0.5273650977760553,-0.85357486596331,0.6625112518668175,-0.08718819683417678,0.5318586868233979,-0.1929188664071262,0.4082634039223194,-0.8652772339992225,0.26892431546002626,0.8397888853214681,-0.8182432451285422,-0.03162400657311082,-0.8664007266052067,0.2875451226718724,-0.9576544053852558,0.4006525967270136,-0.7974017192609608,0.9639056455343962,-0.17268905648961663,-0.6182639505714178,-0.9125181352719665,0.23922739550471306,-0.33532098587602377,-0.016335572581738234,0.7768097324296832,-0.13170488458126783,0.09822209645062685,-0.01625176379457116,0.10284104757010937,-0.20574129791930318,0.09102083090692759,0.518040060531348,0.5000297809019685,-0.7346889837644994,0.9390482306480408,-0.8681337609887123,-0.2651969799771905,-0.529771517496556,0.14948584884405136,-0.668565253727138,0.1578322183340788,-0.8592557585798204,-0.805978262796998,-0.5695853610523045,0.7503447625786066,-0.4568749866448343,0.07906278315931559,-0.7802368416450918,0.11647063819691539,0.47802321799099445,-0.5210297307930887,0.12418341217562556,-0.486129246186465,0.9649946494027972,-0.5054932236671448,0.9242163025774062,-0.7153954314999282,-0.09365067351609468,-0.3001172882504761,0.6951758530922234,-0.08938869601115584,-0.05134423775598407,-0.8676209063269198,-0.7671829587779939,0.5726578771136701,-0.40577904088422656,-0.8040641001425683,-0.5829398650676012,0.8843035204336047,-0.33989180577918887,0.8250676249153912,-0.9000184899196029,-0.47908169170841575,0.04458275064826012,-0.22806695755571127,-0.24953662557527423,0.8494852646254003,0.4956587152555585,-0.6676987600512803,0.2562508643604815,-0.5780747411772609,0.43944252328947186,-0.893026648554951,-0.6394554190337658,0.3602271624840796,0.7727249362505972,-0.0011168462224304676,-0.07524034520611167,-0.8907566596753895,-0.5151024512015283,-0.34055114118382335,-0.4889220488257706,0.262040626257658,0.734302319586277,-0.3369058114476502,-0.4337674770504236,0.9712781594134867,-0.6221546470187604,0.7725526979193091,-0.8417626763693988,-0.8207931239157915,-0.6525099347345531,0.15505312103778124,0.8784887124784291,-0.0714688734151423,-0.7892133337445557,0.4509413135237992,0.7491407748311758,0.5926777073182166,-0.5094108269549906,-0.46031129313632846,-0.3588030878454447,0.7108547436073422,0.6291082561947405,-0.8282849481329322,0.2044480969198048,-0.9244369696825743,0.26891183154657483,0.010468368418514729,0.22846411727368832,0.5365891777910292,-0.394393109716475,-0.8226532181724906,-0.7579559274017811,0.3020190871320665,-0.20240600407123566,-0.4723067209124565,-0.9611582104116678,-0.591590085066855,-0.6879906798712909,-0.6976811368949711,0.32364757684990764,0.27422667061910033,0.7743390570394695,-0.719624281860888,0.2528855283744633,-0.32438070653006434,-0.40136951906606555,-0.4608416757546365,0.5207425714470446,-0.6188085088506341,-0.9524922939017415,-0.6172762918286026,-0.9991679969243705,0.5350781441666186,0.8883101190440357,-0.14893604209646583,0.859489862807095,0.8256094139069319,-0.6100834044627845,-0.8803298780694604,0.041791107039898634,0.2828056709840894,0.21634093020111322,-0.43869357788935304,-0.7418297599069774,0.2972248215228319,-0.08753193076699972,-0.7544445511884987,-0.6018218584358692,-0.3520411024801433,0.13083067629486322,0.43741969438269734,-0.8951323754154146,0.15062783285975456,0.40428569447249174,0.39873284474015236,0.6076308223418891,-0.22112726978957653,0.8763312269002199,0.45006364630535245,0.32338227052241564,0.5780878933146596,-0.1708602332510054,0.13532879063859582,0.788238538429141,-0.41054084803909063,-0.36207611206918955,0.31405000062659383,0.7314535821788013,0.6820831852965057,0.3128415709361434,-0.8927768399007618,-0.28406235529109836,-0.9270112989470363,-0.3340619895607233,0.6145902955904603,-0.17020697332918644,0.30083255795761943,-0.3946717847138643,0.21400977997109294,-0.016639078501611948,0.247463742736727,0.2295442563481629,0.006833837367594242,-0.06717921560630202,-0.18547846376895905,0.08823182014748454,0.04026183718815446,-0.7099185641855001,0.6255376785993576,-0.6080432394519448,0.9176570549607277,0.3472143546678126,0.992284650914371,-0.5879419432021677,0.4221500279381871,0.871944678016007,-0.8922162065282464,-0.46284604724496603,0.8209874550811946,-0.42121184803545475,0.0493652056902647,0.17937262309715152,-0.5319723188877106,-0.38673447584733367,-0.2267211377620697,-0.20826853020116687,0.2828547586686909,-0.0752225206233561,-0.9851064663380384,0.6295957886613905,0.9758002278394997,-0.3941316148266196,0.6908290712162852,0.3081231997348368,-0.5720435790717602,0.5914088292047381,-0.8894099351018667,-0.7252663080580533,0.8058035452850163,0.025530732236802578,-0.8060906063765287,-0.7533704405650496,0.8755686357617378,-0.580486505292356,0.5653434614650905,-0.5233690156601369,-0.39347210759297013,0.4048927924595773,0.8986973487772048,-0.6283380202949047,0.16271351044997573,-0.051641982048749924,-0.4695246545597911,-0.46648825891315937,0.34006704902276397,0.04362973850220442,-0.7068234477192163,-0.21960354875773191,-0.0025598686188459396,-0.9875798770226538,-0.7740030544809997,0.10706223361194134,-0.07511006062850356,-0.22326273657381535,-0.7305329386144876,-0.05970084294676781,0.7250818167813122,0.06468018796294928,-0.9147373139858246,-0.19658481050282717,-0.1639089616946876,0.10426418855786324,0.06957548949867487,-0.20508170267567039,-0.241635384503752,0.9172489596530795,0.44428933085873723,-0.1426646844483912,0.8784385551698506,-0.9318058039061725,-0.850241279695183,0.9539844882674515,-0.7912457608617842,0.9179971716366708,0.8461427725851536,-0.34926676051691175,-0.26427770033478737,0.3845070246607065,0.036359203048050404,0.8406275366432965,-0.16097954707220197,-0.9978015832602978,-0.06182974576950073,0.27661146502941847,0.984637901186943,0.2757522650063038,0.4313073861412704,-0.48347061639651656,0.8583774566650391,-0.15448794094845653,0.8709779693745077,-0.208948346786201,0.4087987639941275,0.289091557264328,0.16708610858768225,-0.11910482728853822,-0.45745842112228274,-0.846649126149714,-0.5708668888546526,-0.32042763847857714,0.06068982882425189,0.2548798453062773,-0.32010411424562335,0.7024167538620532,0.8264666073955595,-0.3317804206162691,0.5356813669204712,-0.4749464653432369,-0.8616305058822036,0.11705489084124565,-0.9137069685384631,0.9944291738793254,-0.8367656273767352,-0.031881813891232014,-0.39037731708958745,-0.6002273443154991,-0.7610389613546431,-0.4949765452183783,-0.6695091081783175,-0.25044749211519957,-0.1742074810899794,-0.7272966676391661,-0.024026325903832912,-0.5831335699185729,-0.22248165169730783,-0.5666850665584207,-0.6999340276233852,0.2596990051679313,-0.6746142194606364,0.37437924509868026,0.8762059076689184,0.5953580713830888,0.4021571706980467,0.8307575508952141,-0.04860517056658864,0.37622843449935317,-0.6025269534438848,0.6429036590270698,-0.18200686434283853,0.7853130735456944,-0.9035364403389394,-0.2575035411864519,0.422184179071337,-0.9595711543224752,-0.12196046439930797,0.43105739122256637,0.42857997538521886,0.5718246959149837,-0.5850753909908235,0.2828990872949362,-0.3415123880840838,0.613240547478199,-0.6263475827872753,-0.16939490381628275,-0.5412480127997696,-0.7067259969189763,0.782571617513895,0.2654702430590987,-0.5953811844810843,0.23719487385824323,-0.3301668455824256,-0.6470347321592271,-0.4060091534629464,0.7931960187852383,0.03565785242244601,-0.3165689632296562,0.9226643745787442,0.5793516491539776,0.2683741948567331,0.689919785130769,0.2810237812809646,0.09820568189024925,-0.9405360561795533,-0.4625896238721907,0.8111138488166034,-0.5550326216034591,0.3178370031528175,-0.144132771063596,0.19686051923781633,0.40692798839882016,-0.37186751747503877,0.5073468135669827,0.9438772425055504,0.21123333182185888,-0.5254664472304285,-0.5045973360538483,0.11891913274303079,-0.1390878683887422,-0.16729035275056958,-0.8754077735356987,0.4628095761872828,0.48407578747719526,-0.9461814393289387,-0.10754140093922615,-0.3353284168988466,0.28911215253174305,-0.21162214316427708,0.3577064615674317,-0.15899415034800768,-0.680152575019747,-0.5469957333989441,0.45351521857082844,-0.5429976223967969,-0.4422172228805721,0.9556322149001062,0.8660652190446854,0.2793373456224799,0.05564981093630195,-0.2990634450688958,-0.7428795667365193,0.7521451967768371,0.2445253157056868,0.4074660539627075,0.871296230237931,0.1828375505283475,-0.13282119063660502,0.6782539915293455,-0.31472412310540676,-0.5809385715983808,-0.4920306671410799,-0.6676855278201401,0.030622491147369146,0.8549143536947668,-0.430816906504333,-0.22256150376051664,0.7580943736247718,0.7202860470861197,0.6494900793768466,0.0885989130474627,0.5357125806622207,-0.15667109284549952,0.33510412322357297,-0.9489675285294652,0.788820100016892,0.24860006757080555,0.1857198099605739,0.684720337856561,0.23378507839515805,0.28994222870096564,-0.40545661048963666,0.7192059075459838,0.7000379483215511,-0.5308270617388189,-0.4704850227572024,-0.09919789712876081,-0.5876051615923643,-0.45814645662903786,-0.2978846188634634,0.03763677831739187,-0.6212476142682135,-0.9681301983073354,0.6800899254158139,0.16377619141712785,0.9891704958863556,-0.11710603535175323,0.8747984445653856,0.671198180411011,-0.34523321129381657,-0.695820536930114,-0.2470151181332767,0.7536234855651855,0.033832051791250706,-0.07724249036982656,0.0074222213588654995,-0.8672162108123302,0.9553290959447622,-0.07967520924285054,0.02302534691989422,-0.35040351608768106,-0.4450597600080073,0.12287583341822028,-0.21687339525669813,-0.29852184327319264,0.7288248520344496,-0.20285164704546332,-0.8680883767083287,0.9735141070559621,-0.0781050375662744,-0.4093656246550381,0.6612412645481527,0.6370458165183663,0.6368635492399335,-0.009048526175320148,0.24441772373393178,-0.20993505185469985,-0.3762977751903236,-0.2072871932759881,0.6150881708599627,-0.15645614126697183,-0.08064044592902064,0.18180302577093244,0.6225148695521057,-0.7560178688727319,0.889762997161597,0.07557099871337414,0.8584346668794751,-0.5018908749334514,-0.43824596935883164,0.7294790493324399,-0.9722246904857457,-0.3654678459279239,0.8948022830300033,0.5124663608148694,-0.32827582163736224,-0.5037424531765282,0.9280457040295005,0.19018715154379606,0.2534666140563786,-0.8896098588593304,-0.8228823621757329,0.2601870121434331,0.9229684146121144,-0.33585268538445234,-0.6810658276081085,0.870264071971178,-0.8358646011911333,0.13893862115219235,0.5595066528767347,-0.9063893719576299,0.43222410744056106,0.4813820840790868,0.8564400570467114,0.36588022438809276,-0.8342275992035866,0.5203015375882387,0.0945208421908319,0.6763852597214282,0.022433774080127478,0.46484386874362826,-0.09856021963059902,-0.8669803431257606,0.5580030870623887,0.5081879231147468,0.31287148455157876,-0.7388277943246067,-0.7627113377675414,0.18124844646081328,0.07100898120552301,-0.20664117578417063,-0.9871095726266503,0.7378167156130075,0.19441932952031493,0.9948775805532932,0.987562719732523,0.15960752917453647,0.903750806581229,-0.44782549049705267,-0.7559022279456258,-0.04999705543741584,-0.5050639645196497,0.5425797570496798,-0.11927088536322117,0.5045467503368855,0.5730309654027224,-0.1791676259599626,-0.5624131476506591,-0.6004412034526467,-0.5550014143809676,-0.6531451330520213,0.8604689459316432,0.022995281498879194,-0.1546226986683905,0.8111120969988406,0.5134050073102117,-0.7900638757273555,-0.10289645614102483,0.3449522340670228,-0.5260956394486129,0.06925787730142474,-0.5225772056728601,-0.3667398109100759,0.11951585393399,-0.7368010357022285,-0.41927647357806563,0.35310824029147625,-0.23761563980951905,-0.4304441441781819,0.3050564294680953,-0.6063430807553232,-0.4269479438662529,0.7216808740049601,-0.6837572986260056,-0.7384044411592185,-0.9666151474229991,0.8655271590687335,-0.6200612457469106,-0.1058931672014296,-0.1190444934181869,0.44517500791698694,0.10337095148861408,0.8576611252501607,0.16068740282207727,0.8314571985974908,-0.5467539643868804,-0.02785248914733529,0.8647024617530406,-0.747637677937746,-0.1801270367577672,-0.5529476883821189,-0.544547482393682,-0.7866802620701492,0.7641857150010765,0.26341482531279325,0.7172589744441211,0.6797056230716407,-0.8512228834442794,-0.29019343899562955,0.5618004323914647,-0.28293203096836805,-0.5162111320532858,0.19303921004757285,-0.4373781131580472,0.06581609975546598,-0.044379782397300005,-0.4171957331709564,0.4811322567984462,-0.7097823591902852,0.3049052865244448,-0.18273865059018135,-0.884974223561585,0.2533744079992175,-0.36762317921966314,0.36512622609734535,0.7479937253519893,-0.22667938331142068,0.6475691511295736,-0.7404795521870255,-0.93059864314273,0.553697943687439,-0.10386497993022203,0.49289920227602124,-0.6008537788875401,-0.6893092701211572,-0.3848258447833359,-0.8504692572169006,-0.5821144841611385,0.38607684057205915,-0.9281456144526601,0.7415247424505651,-0.9866970325820148,0.25432122172787786,-0.24132245359942317,-0.6769084269180894,0.5849566613323987,0.2835251968353987,0.5183406919240952,0.6061435602605343,0.5630833129398525,0.3390344977378845,-0.4812761568464339,0.36548319226130843,-0.0353247974999249,-0.6147524840198457,-0.8799932347610593,-0.14135271357372403,0.13604941498488188,0.08365220855921507,0.5688447090797126,0.781401373911649,0.5781580721959472,0.6043990054167807,0.1706465957686305,-0.5460443021729589,0.8887800467200577,-0.5140177765861154,0.5789437214843929,-0.8518723165616393,-0.2702565314248204,-0.32011057576164603,-0.5680689257569611,-0.21391141833737493,-0.4003385533578694,0.027229456696659327,0.8653498622588813,0.32446860149502754,0.7800749992020428,-0.14502935437485576,0.13840795448049903,0.7497586747631431,-0.4678473868407309,-0.5697196749970317,-0.11869351658970118,-0.6834381255321205,0.03396471496671438,0.41248290752992034,-0.21230662986636162,0.1529492549598217,0.723431047052145,-0.1467527961358428,-0.7849565739743412,0.4673486417159438,0.04429846489802003,0.7257255148142576,0.5983104924671352,-0.12978029204532504,0.20745219103991985,-0.13969517778605223,0.9914799714460969,0.6542370785027742,-0.7097638621926308,0.13882249407470226,0.9628786654211581,0.7700643837451935,0.6132398280315101,-0.7046382571570575,-0.6026362855918705,-0.7624598615802824,0.658219909761101,-0.13797179097309709,0.5084788920357823,0.43174696108326316,-0.3476168601773679,-0.9883956084959209,0.16595324221998453,0.620679582003504,-0.01354635739699006,-0.244521779473871,-0.7053851187229156,-0.910793961957097,-0.5593145526945591,0.8892997885122895,-0.08608539309352636,0.7000203733332455,-0.43596110539510846,0.5080942464992404,-0.3344098199158907,-0.7347803297452629,-0.30041327653452754,-0.05652646720409393,-0.1121230642311275,-0.4607549924403429,-0.6850337646901608,0.9022915428504348,0.09084264654666185,-0.01054184976965189,0.9046352747827768,0.5437837182544172,-0.28893630718812346,-0.03539820294827223,0.4186645122244954,-0.8498483523726463,0.6366054997779429,0.5086540263146162,0.023206823971122503,-0.22726194839924574,0.2070243083871901,-0.45648198714479804,-0.45693652844056487,-0.4872311274521053,-0.67810617107898,-0.6967698624357581,0.10256132250651717,0.8254951923154294,-0.42181237414479256,0.9487945539876819,0.7749485014937818,-0.25229839514940977,-0.3716267659328878,-0.9453835934400558,-0.2584490464068949,0.2510596616193652,0.2440878665074706,-0.6884209183044732,-0.49390719970688224,-0.24828638648614287,-0.11621423019096255,-0.731988962739706,0.6223466200754046,0.9358020992949605,-0.36657312186434865,-0.5752067361027002,-0.6273138280957937,-0.23026963789016008,-0.5257396455854177,0.10755408369004726,0.4592837109230459,0.6894548186101019,-0.20423680217936635,0.18267474370077252,-0.2419945658184588,0.08707604464143515,-0.7294163624756038,0.07753672730177641,-0.765150954015553,-0.46507489774376154,0.9245016449131072,-0.8855637391097844,0.25187799241393805,0.7743356497958302,0.5158960083499551,0.791395962703973,-0.21383067779242992,-0.4988870336674154,0.8013473283499479,0.8707058420404792,-0.6983536058105528,0.7514613494277,-0.9927265360020101,0.7409573886543512,-0.20965003548189998,0.2624523239210248,0.8438146207481623,0.36317016556859016,-0.37988527677953243,0.14707682095468044,0.3846234930679202,-0.6404529302380979,0.7008080924861133,0.21126840729266405,-0.6066452972590923,-0.4619280034676194,0.7994404183700681,0.5298920553177595,-0.6351584829390049,0.7657066667452455,-0.49733778834342957,0.21429798193275928,-0.4212092598900199,-0.2782940757460892,0.280958644580096,-0.10550529742613435,-0.9358938443474472,0.4254369060508907,0.0417072013951838,-0.49001532699912786,0.4781119148246944,-0.7243492361158133,-0.7655864898115396,-0.2263264381326735,0.44643360702320933,0.9219063450582325,0.4589563421905041,-0.031836118549108505,0.06580421887338161,-0.21914063533768058,-0.00638452498242259,0.6557713178917766,0.07344849407672882,0.14012040570378304,0.6553046642802656,0.19129635719582438,0.43302602181211114,0.034665722865611315,-0.6258629993535578,0.615839013364166,-0.9300477025099099,-0.43713394878432155,-0.19666647678241134,-0.06836914736777544,-0.4286229135468602,-0.7539295577444136,0.21891511511057615,0.8482429482974112,-0.4153584805317223,-0.8777436628006399,-0.9812500192783773,-0.7084782388992608,-0.46771344169974327,-0.6029264908283949,0.9823148129507899,-0.09173882380127907,0.2350506717339158,0.6355341458693147,-0.42843292839825153,-0.36885544657707214,0.19312443025410175,-0.31175738433375955,-0.7877200362272561,-0.9572243383154273,0.936451115179807,-0.6587383048608899,-0.6722548459656537,0.34117621555924416,-0.9240319561213255,-0.43910778407007456,0.23982824059203267,-0.5008250768296421,0.4713628562167287,0.6180477682501078,-0.8132503111846745,0.47877444978803396,0.34014560654759407,-0.16553271282464266,0.33892939100041986,0.7177830766886473,0.013391241896897554,-0.14126547751948237,-0.334749533329159,-0.26981591479852796,-0.9903597137890756,-0.7107637557201087,0.8114176294766366,0.5791165567934513,-0.4250776353292167,-0.514721698127687,0.14250343618914485,-0.43778703873977065,-0.8871169635094702,0.1489993087016046,0.22463846066966653,0.6687831711024046,0.9490990852937102,0.5383976544253528,-0.8443234437145293,0.6487108035944402,-0.13873059069737792,0.7362793739885092,0.662449860945344,-0.2797594927251339,0.11257536429911852,0.3956978786736727,-0.9000216107815504,0.41374153550714254,-0.500985027756542,0.6865518623962998,-0.5468567577190697,-0.9616738865152001,-0.7173278187401593,-0.7957373890094459,-0.948149680159986,0.6854919977486134,-0.744878922123462,-0.603424287866801,-0.9394155479967594,0.9276664862409234,-0.6036877422593534,0.2540552280843258,0.24962482042610645,-0.992222813423723,0.8821127493865788,0.17658024560660124,-0.4716873485594988,-0.9374879994429648,0.1821439848281443,-0.2754386719316244,0.9362072837539017,-0.9491026136092842,-0.563991526607424,-0.8337369672954082,-0.7180958045646548,-0.9258491657674313,0.4395851902663708,0.9292603707872331,-0.10954396985471249,0.8936405959539115,-0.11539525631815195,0.8223121194168925,-0.2926343875005841,-0.2333693178370595,0.35666753351688385,-0.728407668415457,-0.7074774075299501,-0.07904142513871193,-0.027791442815214396,-0.11838971683755517,-0.5411067032255232,-0.4187128650955856,-0.3896484635770321,0.25709634460508823,0.10209941491484642,0.8405365669168532,-0.8984586172737181,-0.039460699539631605,-0.10199407488107681,0.8745747348293662,-0.761594211217016,0.6395456902682781,0.6066604549996555,0.46329348627477884,0.5161638921126723,0.7263738373294473,0.8166706515476108,-0.672828153707087,-0.561945500317961,0.9005128741264343,-0.07415616326034069,0.4491539401933551,0.8792565329931676,-0.5390589600428939,0.4673883789218962,0.21922389324754477,-0.8823495451360941,0.967219153419137,-0.4050728976726532,-0.024814709089696407,0.37650477048009634,0.33999245427548885,0.313567150849849,0.37277104845270514,-0.22748919250443578,0.09707266790792346,-0.0362550113350153,-0.13853468233719468,-0.9265965675003827,0.06846970925107598,0.7597297867760062,0.8013333673588932,0.8187946234829724,0.9687808733433485,-0.776258883997798,0.022003453224897385,0.4291265313513577,0.7175489054061472,0.289230115711689,0.9727018591947854,0.24691693391650915,0.8336591380648315,0.6188149368390441,-0.14049559459090233,-0.710111846216023,-0.810298406984657,-0.8795634936541319,-0.19260791083797812,0.09500572504475713,0.9253814057447016,0.2814856395125389,0.21957859164103866,-0.15904803574085236,0.7626705928705633,-0.6678050509653986,-0.056698141153901815,0.2671813634224236,-0.5392597112804651,-0.18710941076278687,0.9444794016890228,-0.6730900476686656,-0.6326163234189153,-0.7147862045094371,-0.21408230159431696,-0.8365173344500363,-0.812565722502768,-0.9068977222777903,-0.41841041995212436,0.9170954688452184,-0.6941429525613785,-0.8344684960320592,0.1152402670122683,0.6394932633265853,0.44268094236031175,0.2904930105432868,-0.05365440621972084,-0.07063392456620932,-0.2655004602856934,-0.8626617528498173,-0.9340407210402191,0.3694032300263643,0.2050526193343103,0.8489940762519836,-0.055967684369534254,-0.6895835096947849,0.4332746444270015,0.3397828391753137,0.3775338432751596,-0.09282555989921093,-0.07345425803214312,0.6339321588166058,0.83656189404428,0.21058926032856107,-0.5699067548848689,0.0907234475016594,-0.8060541842132807,0.4253725605085492,0.5631283824332058,0.05791166378185153,0.3458524099551141,0.09208717290312052,-0.21133714402094483,-0.34786211559548974,-0.5812672236934304,0.8002459751442075,0.23199694557115436,-0.2849217359907925,0.969702975358814,0.7008147547021508,0.20482024597004056,-0.4213900314643979,-0.06373637076467276,0.1555969244800508,0.24686696100980043,0.4845426622778177,0.9066280759871006,0.6492438553832471,-0.5364143354818225,0.40023681335151196,-0.2103294818662107,0.7207218292169273,0.19553485279902816,0.9614644488319755,0.406100339256227,0.7648562407121062,0.05939142731949687,-0.11813183268532157,-0.6075691422447562,0.09048323845490813,-0.15988948568701744,0.9441904039122164,-0.39552837470546365,0.6854839017614722,-0.8686440233141184,-0.054059652611613274,0.12531773373484612,0.6823321534320712,-0.9661338059231639,-0.693095269612968,0.4759331252425909,-0.2281751437112689,-0.9451231095008552,0.09818133804947138,0.24556318717077374,0.48668184131383896,0.5112043134868145,-0.35219894675537944,0.8440319430083036,0.6435156338848174,0.9375170790590346,-0.5556437391787767,0.16378789953887463,-0.27703271387144923,-0.5309120523743331,0.7043531336821616,-0.9358472903259099,0.9838658794760704,-0.22388033382594585,0.9692532764747739,0.5667898268438876,0.6599749447777867,0.5794832617975771,-0.9539540228433907,-0.6639656578190625,0.5482570063322783,0.55010742880404,0.5788642857223749,-0.04140059370547533,0.39590333541855216,0.2733358680270612,-0.21627683378756046,-0.8267272962257266,-0.7545818220824003,0.9571691667661071,-0.341913437936455,0.2716014860197902,-0.2953514470718801,-0.7390470467507839,0.4962363662198186,0.1695593148469925,0.8785588615573943,0.6281385188922286,0.7755187032744288,0.3178416849114001,-0.5633019520901144,-0.5297035682015121,-0.0015890225768089294,0.863731240388006,-0.5079868221655488,0.34546838514506817,0.14341899286955595,0.3433197741396725,0.9363794461824,-0.10126722091808915,-0.2832909566350281,0.6507959682494402,-0.10481893457472324,-0.6935699474997818,0.07534906128421426,-0.16803360311314464,-0.17680399445816875,-0.38460989855229855,-0.027649473398923874,0.4447378381155431,-0.24060285510495305,0.8912301240488887,-0.03029581345617771,0.7437931480817497,0.45249168341979384,-0.07875447999686003,0.011357033625245094,0.9882383015938103,-0.8694473216310143,-0.8920466122217476,-0.6229457654990256,-0.9289088970981538,0.9682297818362713,-0.6634488087147474,0.04602818237617612,0.1520606940612197,0.6417794460430741,-0.12211526045575738,-0.4106190353631973,-0.6639325693249702,0.959058113861829,-0.16669267835095525,0.24627832183614373,-0.5929862554185092,-0.010373468045145273,-0.8366207526996732,0.7400321317836642,0.41748741967603564,-0.6927487086504698,0.8939598631113768,0.15132794622331858,-0.5461276043206453,-0.11128663551062346,-0.6194898318499327,0.7729038326069713,-0.17290542647242546,-0.7780973063781857,0.8848306364379823,-0.05713755451142788,-0.6629521688446403,-0.6964009338989854,-0.5180399757809937,-0.3434139550663531,-0.936232571490109,0.3742318828590214,-0.5828183968551457,-0.9032823382876813,-0.7358528790064156,-0.694767159409821,0.8898884118534625,-0.5698587144725025,0.3013261742889881,-0.9400689946487546,-0.6536637130193412,-0.5688450885936618,0.25687094079330564,0.27507836977019906,0.66548016294837,0.823819927405566,-0.975802824832499,-0.3997057434171438,0.2779458723962307,0.40335299307480454,-0.9166836338117719,-0.8934567626565695,-0.8906888188794255,-0.30319055635482073,0.17562087439000607,0.7908869222737849,-0.23810181627050042,0.6309695006348193,-0.7181228110566735,-0.7817581933923066,0.9174821865744889,-0.49587899446487427,0.858485943172127,0.85417969385162,0.46576250810176134,0.44279876397922635,-0.5327723789960146,0.8029099749401212,0.327641979791224,0.8494904111139476,-0.8412147527560592,-0.6507076076231897,0.5255881687626243,0.2843326348811388,-0.9555309521965683,-0.028728571254760027,0.66216902108863,0.3273951653391123,0.5229959688149393,0.4102627132087946,-0.8245202545076609,-0.27526005217805505,-0.4864093465730548,0.05736086517572403,0.33773130318149924,-0.9192954949103296,0.45815235702320933,0.08296495908871293,-0.00854334281757474,0.5008041514083743,-0.16937186243012547,-0.22570706205442548,-0.4490153547376394,-0.5284625804051757,0.7854310809634626,0.09057606803253293,0.9524392108432949,0.9352042716927826,0.22816946730017662,0.4545546039007604,0.2522352207452059,0.7280448228120804,0.7662379122339189,-0.8685434712097049,-0.2125139362178743,-0.12816587695851922,-0.023258071392774582,0.49675728380680084,-0.4860212388448417,-0.7000371352769434,-0.6780938408337533,0.7980856634676456,0.22620362741872668,0.7945169033482671,0.3997008432634175,0.548164720647037,0.031277998350560665,-0.23898787330836058,-0.6311686839908361,0.653980600181967,0.8092537419870496,0.7286806250922382,-0.8138528186827898,0.6309000663459301,0.06710289651528001,-0.8692314242944121,0.3627400971017778,0.33718228293582797,0.13164508901536465,-0.4506170186214149,0.39182697841897607,0.690194926224649,-0.22858715802431107,0.7788514536805451,0.9189378507435322,0.20009276550263166,-0.45452061388641596,0.529182355850935,0.045284118968993425,-0.5130872284062207,-0.4114705673418939,-0.19493261957541108,-0.46432391460984945,0.8080608351156116,-0.08248569536954165,-0.22928293887525797,0.3374784803017974,0.6958545581437647,0.3186296094208956,0.32735287630930543,0.025502928998321295,-0.23440998326987028,0.4674329119734466,-0.28624427132308483,0.8018941502086818,0.5863197604194283,0.4629917307756841,-0.7234019823372364,0.42816196382045746,0.12611697474494576,-0.7192863659001887,-0.5573567836545408,0.46447240607813,0.6460106014274061,0.6702759903855622,0.8197535811923444,0.020313361659646034,0.8976382166147232,0.5240361741743982,-0.614980713929981,-0.6376141365617514,0.894078126642853,-0.3607404613867402,0.9588858839124441,0.9870334290899336,0.15800220798701048,0.3201020322740078,-0.9475786667317152,0.569867814425379,0.6478390274569392,-0.11125511210411787,-0.2678050519898534,-0.1791674429550767,0.6625331663526595,0.29998963326215744,0.6527690845541656,-0.27893531834706664,-0.16092859022319317,-0.01578358095139265,-0.30373904947191477,0.11884798295795918,-0.4570269612595439,-0.6207582619972527,0.9631226686760783,-0.43734591640532017,-0.9284635381773114,-0.7179869334213436,-0.8620795919559896,-0.7661123056896031,-0.406770518515259,-0.40422681253403425,0.332970704883337,0.2374376216903329,0.6193471481092274,-0.018579771276563406,-0.10190319595858455,0.9106407654471695,0.14514048770070076,0.6787295560352504,0.030105387791991234,0.39533055387437344,-0.7536603449843824,0.5031517813913524,-0.16943356581032276,0.23123010573908687,-0.4279662258923054,-0.0012534097768366337,0.5312228407710791,0.5934726325795054,0.0051997206173837185,-0.49337549321353436,-0.3973109037615359,-0.4879455389454961,0.04010340850800276,-0.0383326280862093,-0.32113537983968854,0.12039643293246627,0.20996049139648676,0.3144366890192032,0.42531541222706437,-0.5990115576423705,0.773023996502161,-0.34227996738627553,0.9749069423414767,-0.6205280451104045,-0.4275630097836256,0.4480374902486801,-0.012183531653136015,-0.3860463295131922,-0.6425827080383897,0.1792653282172978,0.6686031296849251,-0.9631091714836657,0.2611120673827827,-0.43650291906669736,0.2512429538182914,0.6726591987535357,-0.0863184086047113,-0.6881272452883422,0.5983178010210395,-0.5716130952350795,0.7000723639503121,-0.2650709440931678,0.2576270177960396,0.22346319258213043,0.3206403888761997,0.5385270388796926,0.5069511998444796,-0.42945666890591383,0.5514743044041097,-0.8964433851651847,0.9868210190907121,-0.38409933540970087,-0.3310854812152684,0.6046788319945335,0.6206348496489227,0.44422685680910945,-0.3412346872501075,-0.0049749999307096004,0.2570657329633832,-0.03264677710831165,-0.39796692971140146,-0.477412479929626,0.7443227577023208,0.7091467892751098,0.8647824763320386,-0.6246238211169839,0.18249649042263627,0.2933973856270313,0.11483782855793834,0.13973973877727985,-0.4753980911336839,0.47221316397190094,-0.18106992775574327,0.8702313369140029,-0.33856173139065504,0.049883811734616756,-0.052587173879146576,-0.9852756387554109,0.4163953382521868,-0.07449717493727803,0.8188380640931427,-0.22892040852457285,0.4900490380823612,-0.1242471425794065,-0.2962808897718787,-0.9727697460912168,0.4428183510899544,0.7020972473546863,0.8276512809097767,0.3245046488009393,0.8417032598517835,-0.7164930496364832,0.8378528757020831,0.8602589289657772,0.6058580917306244,0.6561629348434508,0.9733069962821901,-0.8691063323058188,0.20328898774459958,0.9190493286587298,0.5897782775573432,0.8055661804974079,0.6711642425507307,0.5530853061936796,-0.8497034669853747,0.2136252843774855,0.8437866708263755,0.3281035893596709,0.06664157006889582,-0.7763643856160343,0.7634755684994161,0.21296586329117417,-0.5298966825939715,-0.7802931708283722,0.2804693840444088,-0.8639980754815042,-0.09945655008777976,0.4718422801233828,0.2482532295398414,0.9969855640083551,-0.31659126142039895,0.15017331996932626,-0.09807458287104964,0.0028924839571118355,0.07911952631548047,-0.4876262526959181,0.7375806742347777,-0.8058174652978778,0.6251042098738253,-0.26235105842351913,0.7196696870960295,0.24509568512439728,0.8696477124467492,-0.9302907506935298,0.47029984183609486,-0.21652764501050115,-0.84413385624066,-0.642929402180016,0.4257098017260432,-0.31638141395524144,0.6024833382107317,0.1510404171422124,-0.7206305591389537,-0.7069305940531194,-0.6188570517115295,0.5596512667834759,-0.9566956646740437,-0.7159580565057695,-0.13561113830655813,-0.5825342931784689,0.041055322624742985,0.11265030968934298,-0.8676128666847944,0.23402595706284046,-0.8032005461864173,-0.7186713409610093,-0.1292002466507256,0.7453133375383914,-0.9413068359717727,-0.6716736191883683,0.023323644883930683,0.20839092321693897,0.5224609430879354,0.631424720864743,-0.7683592149987817,0.4990204321220517,-0.38125554472208023,-0.8110709222964942,-0.5213787583634257,0.2684961184859276,-0.3770116507075727,-0.7745693880133331,0.7133005959913135,0.7844588123261929,0.728648099116981,-0.6110312445089221,-0.8237501694820821,0.5442704921588302,-0.28918724693357944,-0.49009283585473895,-0.4941003695130348,0.9270974956452847,-0.10220249509438872,0.6099580121226609,-0.8700886857695878,-0.6882260353304446,-0.990917993709445,0.8368666148744524,0.6530025792308152,0.350621628575027,-0.3717886433005333,-0.7179272794164717,0.34716576850041747,-0.178569623734802,0.6693896800279617,-0.1137573104351759,-0.13988492032513022,-0.5581735246814787,-0.6420784783549607,0.724634766113013,-0.5186492395587265,-0.6197766736149788,-0.025356209836900234,-0.19629541505128145,-0.4428528621792793,0.03242144361138344,-0.48905941657721996,0.7572087738662958,0.06773975398391485,0.46366389002650976,-0.7495998842641711,0.4668006794527173,-0.07155925687402487,0.6541930357925594,-0.24367122910916805,-0.9968826845288277,0.5301807187497616,0.7329553458839655,-0.38626876659691334,0.33637607004493475,-0.7127124075777829,-0.5234630545601249,0.7254968066699803,-0.39812578400596976,0.8359543206170201,-0.5738914660178125,0.30536383064463735,0.7243373710662127,-0.14992556301876903,0.46326568722724915,-0.5443317550234497,-0.6322601633146405,-0.878294107504189,-0.4601628943346441,-0.47867991076782346,-0.3281024997122586,0.19664240395650268,0.541658157017082,-0.35510344384238124,-0.8959061237983406,0.470040581189096,0.20813497621566057,-0.7761252061463892,-0.7988577042706311,-0.9597283541224897,-0.9774499507620931,0.8106153020635247,0.6029890370555222,-0.44818223314359784,0.07982299383729696,0.8034523469395936,-0.18700061878189445,-0.5611622496508062,0.46403301414102316,-0.8845783905126154,-0.4015885414555669,-0.1580855972133577,0.12408310873433948,0.42820323118939996,0.8211176274344325,-0.6043942756950855,-0.9730377616360784,0.611398252658546,0.07198512461036444,0.127094151917845,-0.7077931775711477,0.4116562739945948,-0.2706265887245536,-0.9701114688068628,0.2507360903546214,0.08658059220761061,0.9162996192462742,0.2695338628254831,-0.6845896230079234,-0.10551749635487795,-0.36971508292481303,0.9411438168026507,0.45316305197775364,0.2859943858347833,-0.7241159663535655,0.09313015639781952,-0.7659561950713396,-0.2810388570651412,0.01038372190669179,-0.5630326955579221,-0.604619774967432,-0.31473525054752827,-0.4053398850373924,-0.7298795925453305,-0.1322156200185418,-0.16151585849002004,-0.7270872946828604,-0.2494563558138907,0.6140981991775334,0.06615741783753037,-0.9001794829964638,-0.23246848862618208,-0.35728382878005505,-0.8266683588735759,0.1130829663015902,-0.6440291968174279,0.27183042047545314,-0.7223246926441789,0.322089490480721,0.709878237452358,0.569712997879833,0.04549007164314389,-0.9757848107255995,0.3647382156923413,0.6508982558734715,-0.8169081583619118,0.8742485800758004,0.5812629498541355,-0.9896348970942199,-0.2943517961539328,0.6646788385696709,0.20642344374209642,0.23019749904051423,0.45327892107889056,0.8741584932431579,-0.30798718659207225,0.872010288760066,0.7247114372439682,-0.8840207769535482,0.5629684529267251,-0.36878613755106926,0.5715157072991133,0.25889256689697504,-0.7079677493311465,-0.9694154034368694,-0.47510380763560534,0.6696064793504775,0.3499562069773674,0.4611448277719319,-0.9360342184081674,-0.8991868109442294,-0.8008542074821889,0.7709139748476446,0.9644549745135009,-0.751045040320605,0.5987597242929041,-0.16950951144099236,-0.3145157084800303,0.11293079284951091,0.005416794214397669,-0.8738165660761297,-0.7924189763143659,-0.1794508509337902,-0.4323281431570649,0.16837280429899693,-0.15684681991115212,0.12094791885465384,0.5137265515513718,-0.4731526980176568,0.7897151345387101,-0.27400045981630683,-0.7134795458987355,-0.037815050687640905,0.06630563270300627,0.8360906667076051,-0.02580257225781679,0.6024728142656386,-0.08997202664613724,-0.43958243168890476,0.6278339372947812,0.7874508532695472,0.32085317419841886,-0.5003068973310292,-0.07858458766713738,0.7249372331425548,0.053583705332130194,-0.15711430832743645,-0.32846611365675926,0.8492714469321072,0.5524133066646755,-0.9792601661756635,0.44256206462159753,-0.8662019991315901,0.5398030504584312,0.5578552382066846,0.5503021981567144,0.8273092340677977,-0.06945441383868456,-0.20498037384822965,0.6627716477960348,-0.28417030442506075,-0.20982146495953202,0.5719410483725369,-0.5100540472194552,0.38958452781662345,0.7999002579599619,-0.5673145027831197,0.2207222580909729,0.2729266262613237,-0.774538267403841,-0.5883154501207173,0.6713270484469831,0.4314877516590059,-0.42901219753548503,-0.8409457826055586,-0.8898489200510085,-0.7510282192379236,-0.14939029794186354,0.2523843962699175,-0.1344258594326675,0.7011571512557566,-0.14846436958760023,-0.7374803889542818,-0.5649160495959222,0.0019212495535612106,0.22551639843732119,-0.7131919763050973,0.36461052764207125,0.8444123938679695,0.5124922045506537,-0.8809341238811612,-0.8892788821831346,-0.04491196107119322,-0.37986919889226556,0.21698588179424405,-0.3493561716750264,0.701755509711802,-0.8095086547546089,0.15996622666716576,-0.6961567928083241,-0.47239159792661667,-0.112086639739573,0.28702591406181455,-0.8377894363366067,0.9239029567688704,0.2849306222051382,0.3648874321952462,-0.8878128719516098,0.7435634676367044,0.33874748880043626,0.8986388314515352,0.851231056265533,-0.6020577363669872,-0.42530701449140906,0.33686748053878546,-0.46525460574775934,0.4463706174865365,0.8993400037288666,0.3095486699603498,0.21392296580597758,0.1645713341422379,-0.4522385401651263,-0.35777617059648037,-0.8206998552195728,0.5359340538270772,0.15569678600877523,-0.46618952695280313,0.863009877037257,-0.9483898361213505,0.6470718644559383,0.6036586170084774,-0.02123136119917035,-0.5618324088864028,0.24882453167811036,0.9464003471657634,0.9924217970110476,0.4790699533186853,-0.6498408135958016,-0.6380810751579702,0.5447226138785481,-0.9722035401500762,-0.016352643724530935,0.1355721801519394,0.7690288233570755,0.21702641109004617,0.580601891502738,0.4050434334203601,0.9699176768772304,-0.3003079015761614,-0.6537063117139041,-0.08697078004479408,0.10367660550400615,0.832608278375119,0.04353871988132596,0.955908867996186,-0.7325786035507917,0.9973555007018149,-0.3259497000835836,-0.9306538314558566,0.37652820302173495,0.12376255448907614,-0.3474303502589464,-0.3579502138309181,-0.34438207279890776,0.14506792090833187,0.13192674750462174,0.9904762972146273,0.07409835048019886,0.5074148252606392,0.6076285219751298,-0.3289741603657603,0.7350493189878762,0.8550931736826897,-0.48970687156543136,0.13273419113829732,-0.9774546241387725,-0.14524611923843622,0.826580582652241,-0.21854181727394462,-0.08683423232287169,-0.5999327674508095,-0.1641803104430437,0.19608758902177215,0.20829856535419822,0.6226390623487532,0.4617260415107012,0.5248565371148288,-0.24417503830045462,-0.3139420496299863,0.18561088806018233,0.20081444922834635,0.6471803742460907,0.5454474417492747,0.3322539939545095,-0.061611748300492764,-0.4913365473039448,-0.5697468393482268,0.9129736525937915,-0.9309170637279749,-0.6460967627353966,0.19677776424214244,0.7087340531870723,0.4842511126771569,-0.45447579910978675,-0.5150691205635667,0.6908525861799717,0.59160111611709,0.7897495948709548,0.27896976796910167,-0.42384445387870073,-0.5711467023938894,0.9352784072980285,-0.33390087354928255,0.558370525483042,-0.9473694893531501,-0.7507371231913567,0.6072870269417763,-0.19112987956032157,0.7970874197781086,0.49797700345516205,0.8677101456560194,0.32887459080666304,-0.8000711407512426,-0.6616121004335582,0.5333401057869196,-0.20944253355264664,-0.9965660474263132,-0.6092804539948702,-0.2524038227275014,0.8184916670434177,0.8348124008625746,0.08367276657372713,-0.3954225117340684,0.34543039835989475,-0.5144065413624048,0.862814131192863,-0.40866269869729877,-0.6676046061329544,-0.6735560083761811,0.3153430810198188,0.47105784388259053,-0.44789185747504234,0.03866634797304869,0.3917008643038571,0.7360414019785821,-0.4764736988581717,0.4071041918359697,-0.3167437631636858,0.2232715878635645,-0.6320820818655193,0.47894591325894,0.6703109894879162,0.8222389644943178,0.7535510160960257,-0.3556846883147955,0.42327085928991437,-0.40357859805226326,0.10971287870779634,0.000851812306791544,-0.614533354062587,-0.5734589681960642,-0.7928213560953736,0.3876891992986202,-0.8568939217366278,0.3002203335054219,-0.34575142664834857,-0.08622921723872423,-0.6018452481366694,-0.20469872141256928,-0.2109260419383645,-0.09197707287967205,-0.39037235639989376,-0.6916208318434656,-0.32846046751365066,-0.08287758799269795,-0.6106055383570492,0.8883779011666775,-0.34643569495528936,-0.5682951947674155,0.39202382741495967,0.8479220075532794,0.1906891344115138,0.3782159970141947,0.6016317158937454,0.36164511600509286,-0.9531754022464156,0.10533295851200819,-0.3937002853490412,0.38872036058455706,0.016492688562721014,-0.34255065070465207,0.12383682979270816,0.588038926012814,-0.6758082075975835,0.9169697789475322,0.9568704064004123,0.5760609521530569,-0.3225118676200509,0.19416775135323405,0.2364186653867364,0.1997967534698546,-0.4290322926826775,0.031430944334715605,0.5972905941307545,-0.6942991055548191,0.7296690293587744,-0.9260501931421459,-0.8422381412237883,-0.8900652560405433,-0.33593399729579687,-0.5314144385047257,0.8848606911487877,0.01850046217441559,0.13922877330332994,0.8824031255207956,0.31478978460654616,-0.3912184573709965,0.43657798413187265,0.7147422591224313,0.9186545414850116,0.34033435536548495,-0.4589678728953004,0.7007458610460162,-0.6036649127490819,0.7061274414882064,0.06416403921321034,-0.014804965816438198,0.9234165316447616,-0.2734891679137945,-0.19787634490057826,0.5082690962590277,-0.8886460140347481,0.4500896646641195,-0.9352805283851922,0.9454904366284609,0.011342606041580439,0.2053169677965343,-0.11104695359244943,0.11776984576135874,-0.5548094995319843,0.9125148863531649,0.9557794285938144,-0.37430986016988754,0.6718484228476882,-0.47470781579613686,0.2664956268854439,0.42024013167247176,0.41645408794283867,-0.818371728528291,0.22636663680896163,0.7030025632120669,-0.2752037229947746,-0.810610219836235,0.6193610364571214,0.033645014744251966,-0.2917425180785358,0.3362530404701829,0.07591904746368527,-0.631712278816849,0.8849053387530148,-0.5046235811896622,-0.8023944403976202,0.7394485361874104,0.6624194919131696,-0.5968140601180494,-0.7703952803276479,-0.8649496375583112,0.7971404800191522,-0.4429041570983827,0.9066155767068267,-0.44144600816071033,-0.9209545459598303,0.3602229938842356,0.5569287873804569,0.4338232483714819,-0.9249523766338825,0.08739967970177531,-0.8747821552678943,-0.3774749496951699,-0.7367302463389933,0.09491548920050263,0.022950187791138887,-0.574653519783169,0.32069279067218304,0.1603992572054267,0.8320478117093444,-0.2837090753018856,-0.503188016358763,-0.6264588027261198,0.7055084803141654,0.043494452722370625,0.006930470000952482,0.5290341190993786,-0.9476518952287734,-0.11382901901379228,-0.6929137329570949,-0.42108580423519015,-0.4209081162698567,0.6149731143377721,0.17826384073123336,-0.19676737673580647,-0.24709099112078547,0.79598687030375,0.3838243577629328,0.7798314606770873,0.6754594836384058,0.7745602880604565,0.8433833885937929,-0.9630442410707474,0.06672409921884537,0.7559385770000517,-0.35570600954815745,-0.5482714506797493,0.9008046896196902,0.5186319351196289,-0.267633356153965,-0.909175528679043,-0.5661967522464693,0.4437566171400249,0.836424998473376,-0.6016455618664622,0.24604991963133216,-0.9634125935845077,-0.9845863422378898,0.1665195287205279,-0.05725075723603368,-0.31054641027003527,0.5725285294465721,0.5734526705928147,-0.9812461431138217,-0.6303683752194047,-0.6641366248950362,0.32381743658334017,0.034874056465923786,-0.5091483243741095,0.13592410599812865,-0.8409396628849208,0.27254188479855657,0.7366405827924609,-0.3276242814026773,0.9020043569616973,-0.2357683004811406,-0.3032621946185827,-0.25222668005153537,-0.8351520034484565,0.4581001652404666,0.012275588233023882,0.2971704597584903,0.9476777771487832,0.11998962378129363,0.9856784217990935,0.665078095626086,-0.9262652383185923,0.8613533074967563,0.4116361392661929,0.5085404668934643,0.7607754962518811,-0.35296746622771025,-0.42447469709441066,-0.5741377756930888,0.34512731339782476,0.7287654364481568,0.48003520211204886,-0.4678260488435626,-0.8037299551069736,-0.6341802561655641,0.5089907418005168,0.08058263687416911,-0.41377325961366296,0.18213993264362216,0.47172270249575377,-0.2402594843879342,0.8681279104202986,-0.03336815116927028,0.18951368145644665,-0.017508046701550484,-0.8892627041786909,-0.8747537592425942,0.2169085657224059,0.34138513542711735,-0.3197833262383938,-0.5100100124254823,-0.47527539962902665,-0.586013862863183,-0.5876318430528045,-0.28395561361685395,-0.9365346627309918,-0.6465621385723352,-0.9305284256115556,0.4985821833834052,-0.9944389518350363,0.9468905190005898,0.41637159744277596,0.4892103197053075,0.3245127913542092,-0.6615555319003761,-0.6217125505208969,0.7245350340381265,0.9146337267011404,-0.6389751965180039,0.7214099033735693,-0.16115630278363824,-0.9929587175138295,-0.7998559325933456,-0.11059627449139953,0.4781835675239563,0.2019336256198585,-0.5438511250540614,0.15887006698176265,0.5364433191716671,-0.7467563757672906,0.3357045971788466,-0.5314156319946051,0.8322069691494107,0.7691987343132496,-0.7824874119833112,0.8453590334393084,0.49953021109104156,-0.40304857213050127,-0.22636821633204818,0.9616992752999067,0.4667811864055693,0.9541700044646859,-0.2562505449168384,0.9652136121876538,0.30804384779185057,0.15499422373250127,0.6685089780949056,0.8338776719756424,-0.5436186799779534,-0.0324156922288239,0.596975106280297,-0.8501425990834832,-0.8972821519710124,-0.9518216042779386,-0.9548512040637434,-0.7483973382040858,0.5841302121989429,-0.18784947227686644,-0.32011168263852596,0.16284849168732762,0.5266411514021456,-0.1733741369098425,0.24766568234190345,-0.020900691393762827,0.42975554149597883,-0.16935404855757952,0.26331284921616316,0.23355486243963242,0.1837990041822195,-0.6897491067647934,0.5459286640398204,-0.30756967049092054,0.2816196591593325,-0.6836300622671843,0.6653017671778798,-0.6304160859435797,-0.5960544529370964,0.816058047581464,0.25592859648168087,0.895888308994472,-0.2984453975223005,0.3122234526090324,-0.017657406628131866,-0.3360727461986244,0.6206802665255964,-0.8272384568117559,-0.27695944532752037,-0.3890946260653436,-0.6032745759002864,-0.4502111002802849,-0.3497105776332319,-0.6537990011274815,-0.8459694553166628,-0.1512574339285493,-0.3790839700959623,0.000765589065849781,0.9749368098564446,-0.2553640571422875,-0.5329125062562525,-0.8318814700469375,0.2514257002621889,-0.49686627089977264,-0.9978701630607247,-0.8167894496582448,-0.5677821170538664,0.7584460666403174,0.08058074209839106,-0.22786502446979284,-0.9436097936704755,0.016951024066656828,0.4947041659615934,-0.7275198041461408,0.1498692324385047,0.25521594239398837,0.17237000772729516,-0.33126655081287026,-0.626012793276459,0.45813402719795704,-0.8370217951014638,-0.19300528848543763,-0.08334670355543494,0.5514794001355767,0.8555579171516001,-0.7705808621831238,-0.9680772898718715,-0.12422781530767679,0.07499170675873756,0.2823210791684687,0.11345562804490328,-0.7144243349321187,-0.5074943597428501,-0.21529733669012785,0.5989040229469538,-0.2587746363133192,-0.5080727846361697,-0.5656350427307189,0.8914031344465911,0.31991196563467383,0.7974005928263068,0.5539928670041263,0.13819449953734875,0.6543729864060879,-0.6597257419489324,-0.6944566708989441,-0.5837353961542249,-0.9874379117973149,-0.8105193022638559,0.3041877159848809,-0.36695456225425005,-0.4089325424283743,-0.2747214767150581,0.4090800266712904,0.27298138616606593,0.2717695622704923,0.860794423148036,-0.46017311327159405,-0.49706278555095196,0.5734628173522651,0.6540111475624144,0.2847833880223334,0.1111248591914773,-0.07193234609439969,-0.8088763193227351,-0.7126136478036642,0.9887233981862664,0.38487158296629786,-0.6506325248628855,0.139849201310426,-0.6326192817650735,0.8685617703013122,0.8682584748603404,0.018779525067657232,0.17003774596378207,-0.9149330705404282,-0.015279976651072502,0.41719077387824655,-0.3390661017037928,0.2173342532478273,0.042340817395597696,-0.8671708172187209,-0.32698372891172767,0.3362565264105797,0.2505138129927218,0.6055288263596594,-0.07282956968992949,0.42282440047711134,-0.6700622206553817,0.8470727764070034,-0.9827455510385334,0.8408396025188267,0.9178464859724045,0.6063902149908245,-0.4682823633775115,-0.8273029481060803,0.8106607114896178,0.5106372414156795,0.6262147165834904,0.9907448929734528,0.9306450122967362,-0.6879639439284801,-0.04639102425426245,0.44656767742708325,0.21285813255235553,-0.22261378169059753,-0.3323315102607012,-0.23879860620945692,0.45552085852250457,-0.53300795936957,-0.24347150418907404,0.42566414503380656,0.7737809102982283,-0.00957546615973115,-0.2691494897007942,-0.4382640919648111,0.7511512883938849,0.6358611835166812,-0.6837327494286001,-0.5803211783058941,0.5077962414361537,-0.20665403688326478,-0.0824278611689806,-0.9267145465128124,-0.6069285697303712,-0.5987990763969719,-0.05173953343182802,-0.26942414604127407,0.3936378285288811,-0.26901606237515807,0.9123382903635502,0.7443039626814425,-0.6487702075392008,-0.03862731857225299,0.42218009382486343,-0.4756103022955358,-0.6715921885333955,-0.2797905597835779,0.6002684403210878,0.6279929475858808,0.9324491317383945,0.3161284155212343,0.8932611783966422,0.6529895383864641,0.4253474688157439,0.3999770977534354,0.5222343509085476,0.9881602358072996,0.9428571467287838,-0.9616033076308668,-0.4797812248580158,0.4816348687745631,0.021882115863263607,0.8830664502456784,-0.23143448261544108,0.593929547816515,-0.8651726208627224,-0.984099730849266,-0.5580319538712502,0.5030230125412345,0.787517755292356,-0.6353944796137512,0.20740392478182912,0.986787629313767,0.7414819365367293,-0.2099829763174057,0.3092892705462873,-0.10592577187344432,-0.8108154474757612,-0.2839920646511018,0.6041629901155829,-0.2608039234764874,0.8084078151732683,0.9441988659091294,0.3957672151736915,-0.17880713939666748,0.29526680475100875,0.22071593441069126,-0.4201530618593097,0.23525168234482408,0.7609840198419988,-0.6384986937046051,0.3093997319228947,-0.2515945234335959,-0.3070885082706809,-0.9016526374034584,-0.4420338268391788,0.2855369886383414,0.6592378183268011,0.6943379295989871,-0.48076304653659463,0.5869523626752198,-0.8147463533096015,-0.5724561656825244,-0.674423941411078,0.5863401065580547,0.09664383623749018,0.7229199768044055,0.9582962961867452,-0.35377254988998175,0.3606567597016692,-0.5584821924567223,0.28299185913056135,0.3768505831249058,0.38187732733786106,0.26678183767944574,0.5305114728398621,0.7675182628445327,0.5871599735692143,-0.21269758557900786,-0.2150873770006001,-0.16202686028555036,-0.10773020517081022,0.6452554259449244,0.6836591982282698,-0.32809077901765704,-0.5336600565351546,0.40334048913791776,-0.9703780561685562,0.17387618916109204,0.8445368283428252,-0.23392885457724333,-0.8054092787206173,-0.3061092025600374,0.0745971193537116,-0.0479704556055367,0.3767573805525899,-0.8467231849208474,0.8012688211165369,0.1096881995908916,0.7804148867726326,-0.3516155960969627,-0.4127107304520905,-0.5636536069214344,0.6420222539454699,0.36006774194538593,0.434360031504184,-0.7222216906957328,-0.701475037727505,-0.11354589834809303,-0.4450313998386264,0.04516525100916624,-0.9245494338683784,-0.5574511871673167,-0.6898938808590174,0.6679514702409506,0.33460481744259596,-0.35536041343584657,-0.2886638077907264,0.4478805526159704,0.7901201425120234,-0.7449975283816457,-0.8457870380952954,-0.07909257197752595,-0.5472489902749658,-0.5650470377877355,0.15383569849655032,-0.32657288247719407,0.423225287348032,0.6444366187788546,-0.5510068004950881,-0.4676664802245796,-0.43276739958673716,-0.21606592228636146,0.692082314286381,0.1794155607931316,-0.9538899185135961,0.33595116855576634,-0.7699941359460354,0.6978807393461466,-0.500230626668781,-0.4653183529153466,0.0015068957582116127,0.21880753571167588,0.17855127155780792,-0.6428634840995073,-0.6843359717167914,0.9528455920517445,-0.8734642723575234,0.35712534142658114,-0.8038047412410378,0.6650166651234031,0.8352315654046834,0.7826712024398148,-0.47235294291749597,0.902316253632307,-0.31287263007834554,0.31908345548436046,-0.4884067974053323,0.5957590937614441,-0.6890995260328054,-0.4146243426948786,-0.021063569001853466,0.9075795337557793,0.6481082239188254,0.2346475669182837,0.8617718145251274,0.16545247472822666,-0.29078026209026575,-0.893296028021723,-0.09298024792224169,0.9595223856158555,-0.5065197153016925,0.32291771611198783,-0.17485022405162454,-0.11607387568801641,-0.7861829507164657,0.7198512768372893,0.00044738268479704857,-0.4400365040637553,0.3140009678900242,0.13118630461394787,0.9609511783346534,0.84660027269274,0.17588416719809175,-0.7897553299553692,-0.29101299308240414,0.9379490977153182,0.9369856086559594,-0.6302416920661926,-0.9019175823777914,-0.35404107300564647,-0.6461450788192451,-0.015239077620208263,0.2826452641747892,0.1197393680922687,0.34387107007205486,0.9426313838921487,0.6821554843336344,0.7623024438507855,-0.24231695430353284,-0.2099924124777317,0.6613808674737811,-0.6903149653226137,-0.4898726074025035,0.9488889160566032,-0.625241803470999,0.07678151689469814,0.36401729891076684,-0.11131534585729241,0.03587724035605788,-0.9090040503069758,-0.8382558040320873,-0.18271549651399255,-0.9421909051015973,0.06941469479352236,-0.8371089394204319,0.6666746656410396,0.3529867292381823,-0.07017650129273534,-0.7425058516673744,-0.5314968158490956,-0.9673176542855799,-0.7581689828075469,-0.9021478365175426,-0.974058342166245,-0.9504927946254611,-0.7108855601400137,0.917709797155112,-0.8828639476560056,0.9783021495677531,-0.8676128904335201,-0.06878351187333465,-0.1127654924057424,-0.036832316778600216,0.6110803601332009,0.16851596208289266,-0.6729290010407567,0.4426392330788076,0.6519330237060785,-0.9988219938240945,-0.6080882386304438,0.23202091455459595,-0.623099606949836,-0.7775047034956515,0.5943829459138215,-0.8812748580239713,0.8940199846401811,0.6857128641568124,-0.09510153159499168,-0.9030420258641243,0.9978056950494647,-0.10828634910285473,-0.7225672020576894,0.0595724992454052,-0.4668801440857351,-0.05244841054081917,-0.9198195044882596,0.4820354678668082,0.8493096525780857,-0.20307350112125278,-0.197553142439574,0.5620299684815109,-0.7832240425050259,-0.5544694666750729,0.9205589485354722,-0.9014289388433099,0.2658963515423238,-0.8067849609069526,-0.765307673253119,0.34295186307281256,-0.08932631136849523,0.8439702722243965,0.0296474052593112,0.8875966966152191,-0.7572966194711626,-0.45411450043320656,0.2604362494312227,-0.6878053611144423,-0.699451370164752,-0.40630082273855805,-0.2190688904374838,-0.64169753016904,-0.7062645456753671,0.48356196377426386,0.1300187367014587,-0.6513239620253444,0.36693290062248707,-0.2623658971861005,0.921793372835964,-0.1631914102472365,0.5151096074841917,0.9977990835905075,0.6626138049177825,0.07409430993720889,-0.3705232902429998,0.10745655233040452,0.817955382168293,0.9283668156713247,0.8116936776787043,0.05542069161310792,-0.47993753803893924,-0.7455477607436478,0.9208817756734788,0.5925418301485479,-0.5396627057343721,0.3522683563642204,-0.4843743075616658,-0.4978703763335943,-0.6505050458945334,-0.23491296358406544,-0.3726213276386261,0.09349789004772902,0.08528767060488462,0.9302159263752401,-0.6066404008306563,0.47057334752753377,-0.3127645757049322,0.43559157801792026,-0.4982184385880828,-0.9752555559389293,0.05240109981968999,-0.005592274013906717,0.2654429408721626,0.15486623300239444,-0.5345130097121,0.2705826018936932,0.7986929612234235,0.5165168754756451,-0.7486019697971642,0.6356869130395353,-0.07612995337694883,-0.7959515331313014,-0.05474153021350503,-0.5472133033908904,0.8821330219507217,-0.251075426582247,0.346266558393836,0.8538529854267836,0.8736541727557778,-0.9224638310261071,-0.6764183132909238,0.16948664607480168,0.3298775884322822,0.8678824761882424,0.7308672550134361,0.29828671319410205,0.646940790116787,0.6052109017036855,0.5225670351646841,0.42877562064677477,-0.766764763277024,-0.6404544156976044,-0.9014838431030512,0.8481430700048804,-0.2614261810667813,0.13239022810012102,-0.5401306357234716,0.5249296464025974,0.6820268398150802,-0.7402381524443626,0.8408892848528922,0.3247560723684728,-0.01691972929984331,-0.6922043603844941,-0.875443983823061,-0.10222203517332673,0.17302114283666015,-0.32098117796704173,0.2902461742050946,-0.3017644351348281,-0.9250650382600725,-0.44646268198266625,-0.11765357619151473,0.5864145420491695,0.7768788626417518,-0.6942733228206635,0.9327774397097528,0.14908717712387443,0.5823053866624832,-0.7204857277683914,0.30799822928383946,0.2940881769172847,-0.607792551163584,0.39042510744184256,-0.8324389709159732,0.7157805575989187,0.5809105378575623,-0.001006857492029667,0.2967907665297389,0.6095373169519007,-0.10985436802729964,0.34029253479093313,-0.4542428767308593,0.7066355384886265,-0.9698390406556427,0.20049284864217043,-0.6674020276404917,0.8241160274483263,0.8568064980208874,0.060018499847501516,0.4371164860203862,0.9240585495717824,0.2532734884880483,-0.4184132469817996,-0.8777762223035097,-0.5637915167026222,-0.2386564793996513,0.7909504328854382,-0.05866795312613249,-0.3504693633876741,-0.6406422141008079,0.8333126869983971,0.5115786246024072,-0.06354120094329119,0.5945226601324975,-0.8620540401898324,-0.33423158386722207,0.04664664249867201,-0.428597419988364,0.07302179839462042,0.3518892372958362,-0.5708181974478066,0.20978914946317673,-0.39573357393965125,-0.15651582088321447,0.2766126780770719,0.23665916174650192,0.1645860467106104,-0.9210105477832258,-0.9695355324074626,-0.01673143170773983,-0.6803358690813184,0.5824486678466201,0.06200913339853287,-0.20056031551212072,-0.1542635108344257,0.6363583323545754,0.31690057506784797,-0.06618876336142421,-0.6695393328554928,0.39461110765114427,0.8501751394942403,0.4678479437716305,-0.054335538763552904,-0.867260729894042,0.1508896304294467,0.9575154879130423,-0.4615054791793227,0.7501435084268451,-0.6648125448264182,-0.31604749895632267,-0.5784050193615258,0.9418661119416356,-0.1997084985487163,-0.6374090956524014,0.8669742965139449,0.2586259082891047,-0.1575953345745802,-0.4585839817300439,-0.03387671057134867,-0.11187017383053899,-0.16184276342391968,-0.2508357372134924,-0.3352999221533537,0.36104165483266115,-0.044227609410881996,0.507768171839416,-0.12095420574769378,-0.7495805565267801,0.13864803267642856,0.06860662251710892,-0.5146658872254193,-0.171837973408401,0.28063995530828834,-0.7128482609987259,-0.3628031499683857,0.5928594637662172,-0.11538435611873865,0.46858436381444335,0.5972159933298826,-0.38950813189148903,-0.7745626121759415,-0.23292806325480342,0.9469512477517128,-0.18218853417783976,0.9449734506197274,0.38523780601099133,-0.13103514816612005,0.10852338233962655,0.9822836653329432,-0.18808992998674512,0.7327700359746814,0.35736379446461797,-0.02387956576421857,-0.6243780362419784,-0.8441859488375485,0.9097652076743543,-0.8347844961099327,0.5948800062760711,-0.43147511407732964,0.9151942753233016,0.09505246672779322,-0.15789739973843098,0.2277171704918146,0.4762942329980433,0.4896012106910348,-0.8368376847356558,-0.2773799477145076,-0.013574999291449785,0.004953763447701931,-0.6467415955848992,0.4672475731931627,0.4796434696763754,0.5226383530534804,-0.7407078193500638,-0.21427962463349104,-0.3354394962079823,-0.8145157108083367,-0.8830089597031474,-0.03791434410959482,-0.9536357708275318,0.31301839370280504,0.19178347615525126,0.8685058802366257,-0.8615783425047994,0.17325630644336343,-0.986772651784122,0.004242198076099157,0.8981037675403059,-0.3534870818257332,-0.8473960375413299,-0.5294399871490896,0.2578192544169724,0.4757331945002079,0.6086746705695987,0.9638664829544723,0.4367772741243243,0.45602417225018144,-0.6389386164955795,0.4962410209700465,0.09001696994528174,0.9087316705845296,-0.6832767967134714,-0.4278136887587607,-0.7911558523774147,-0.0196498385630548,0.6439490593038499,-0.16674335207790136,0.30040876287966967,-0.8618850237689912,0.42989820847287774,0.1991465138271451,-0.8641892755404115,0.5382202519103885,-0.49939538491889834,-0.25425130734220147,-0.8945609931834042,0.516593829728663,-0.1552786622196436,0.7229082705453038,-0.8110100175254047,-0.4058352280408144,-0.6884007975459099,-0.6390663757920265,-0.006682723294943571,-0.11774478806182742,0.5190853648819029,0.7762357885949314,-0.2726501487195492,0.903077355120331,0.2712951861321926,0.6556767225265503,0.849749194458127,0.4156381906941533,0.47182864556089044,0.9313275250606239,-0.6871425616554916,-0.9935999917797744,-0.6790787978097796,-0.5856090462766588,-0.28032461926341057,0.3715177904814482,0.2720866543240845,0.42538921162486076,-0.3916614060290158,-0.76109947450459,-0.3331031068228185,0.6107374164275825,-0.6041520508006215,-0.26233823457732797,0.004714326933026314,0.24016603361815214,0.26750464644283056,-0.04449936235323548,0.7499457104131579,0.4630274916999042,0.02751750173047185,-0.743574833497405,-0.6040137601085007,-0.7710640416480601,-0.17455483321100473,-0.42433474212884903,0.5035842731595039,-0.043657044880092144,-0.6704372288659215,-0.3001210046932101,-0.4341145162470639,-0.059941604267805815,0.8707725857384503,0.6278056153096259,0.7039647591300309,-0.39976651314646006,-0.7090322002768517,-0.9043189217336476,0.27108636032789946,0.17717993911355734,0.7426336370408535,0.9557795971632004,0.08649393590167165,-0.03720194427296519,0.6642647134140134,-0.48343998566269875,0.5681723174639046,0.5542409298941493,0.849911677185446,0.10819317121058702,-0.4053825819864869,-0.4805474067106843,-0.008996618911623955,0.2868358939886093,-0.30683179246261716,0.5463962079957128,0.20747198536992073,-0.41967545356601477,-0.45017199870198965,0.42119621159508824,0.20934372209012508,-0.5320379291661084,0.024214971344918013,-0.9762941538356245,-0.7201310689561069,-0.8887444473803043,-0.727265143301338,-0.9946886850520968,0.7255476978607476,-0.4475994692184031,-0.17079337080940604,0.9198980377987027,0.8729860261082649,-0.5288128168322146,-0.33823145600035787,0.6512270220555365,-0.6069537177681923,-0.18511321814730763,-0.28818722628057003,0.11131407367065549,0.6955324122682214,-0.27370954351499677,-0.6223967066034675,0.1737613696604967,0.38753265561535954,-0.05872396053746343,-0.0032950425520539284,-0.3715000646188855,0.05482981959357858,0.11954280128702521,0.8577211028896272,0.29825516417622566,-0.4495971626602113,0.11791505105793476,-0.5591603303328156,0.6631720880977809,0.65358891710639,0.9199491455219686,-0.6759353261440992,0.0890259649604559,-0.008977403864264488,-0.7830860847607255,-0.5681268209591508,0.31898579467087984,-0.2897175308316946,-0.012225235812366009,0.027401172555983067,-0.9157486720941961,0.2080763434059918,-0.5322387400083244,-0.8640563702210784,-0.7874638033099473,-0.6378979664295912,0.7462518368847668,0.8546021552756429,-0.38802300253883004,0.4866627142764628,0.33746964018791914,-0.5359623418189585,0.5880394680425525,-0.1272136541083455,0.6723042707890272,0.5931786741130054,0.7193498434498906,-0.9037751094438136,0.7050186754204333,-0.8682183176279068,-0.8393240016885102,-0.6758769587613642,-0.5928528467193246,-0.07059205416589975,0.24343135813251138,0.907896401360631,0.018162508495151997,-0.8286749878898263,-0.21027926821261644,0.4562813304364681,-0.9333857102319598,0.901008965447545,-0.860676514916122,0.4278294648975134,-0.865287993568927,-0.78147117421031,0.41523056058213115,0.2093171733431518,0.6098686819896102,-0.34571588644757867,-0.3070771754719317,-0.4755146522074938,-0.7600073032081127,-0.6711947000585496,-0.2061067777685821,-0.6474021482281387,0.8680899366736412,0.5816456652246416,-0.1001193798147142,-0.5684710703790188,0.8862617812119424,0.5190216032788157,-0.6765622948296368,-0.5231287782080472,0.27749384799972177,0.18955238163471222,0.9103182894177735,-0.16818172577768564,0.12442519422620535,-0.44204040290787816,0.4382858914323151,0.4328238279558718,-0.07777676591649652,-0.9466125913895667,-0.3948679128661752,0.15923119289800525,-0.35803208453580737,-0.806582716293633,0.9667668053880334,-0.7556916899047792,0.1819531279616058,0.6183532099239528,0.6409037075936794,-0.09700307343155146,-0.5776507304981351,0.03458191221579909,-0.0953963166102767,0.817901864182204,0.986767424736172,-0.8752678455784917,-0.9355965503491461,-0.6702491324394941,0.17561707086861134,-0.7265403144992888,0.23183937883004546,0.19042974524199963,0.350988213904202,0.8376459674909711,0.054721110966056585,-0.9453191934153438,0.13846176164224744,-0.24985179584473372,-0.7956109219230711,0.29025903856381774,-0.32840118696913123,-0.7830673563294113,0.908420208375901,-0.36780606023967266,0.2604338815435767,-0.08495521824806929,0.10695301741361618,-0.353625631891191,-0.17225486459210515,0.19080678606405854,-0.9768981854431331,-0.4076548400335014,0.09358409000560641,0.20589655544608831,0.048376163467764854,-0.17598068388178945,-0.4582228008657694,-0.09478730615228415,0.4633924509398639,-0.032411759719252586,-0.624124291818589,-0.8073550267145038,0.4585676440037787,-0.31072027096524835,-0.9918977967463434,0.4494585101492703,0.6567083979025483,-0.8057037736289203,-0.4576331004500389,-0.754302438814193,-0.3731337864883244,0.2768131070770323,0.4330576276406646,0.7888477789238095,-0.5173150529153645,0.7750161397270858,-0.9280238691717386,-0.24262323323637247,-0.7373613733798265,0.09973112400621176,-0.24368382897228003,-0.31172631587833166,0.6550284987315536,0.6587374294176698,0.5587858762592077,-0.7585778590291739,0.8092110869474709,-0.870626799762249,-0.7721238494850695,0.528784123249352,0.31014990201219916,0.15943187940865755,0.46823589131236076,-0.8518739826977253,-0.6073485938832164,-0.533188606146723,0.9513076767325401,-0.7523078611120582,-0.5520508964546025,-0.5626613423228264,-0.13506296463310719,-0.16169349197298288,-0.19201721483841538,0.09203414479270577,0.6296956869773567,0.9754095268435776,-0.8911847635172307,0.6912060542963445,-0.09407557686790824,-0.5052497531287372,0.45700840279459953,-0.651552511844784,-0.6044175731949508,-0.006206790450960398,-0.8439534190110862,0.0705061717890203,-0.758042560890317,-0.05652943393215537,0.7050890647806227,-0.2613792750053108,0.057017732411623,0.5295859430916607,0.8910640520043671,0.031162959057837725,0.029865301214158535,-0.41020094603300095,-0.5816572746261954,0.29218240082263947,0.7898193611763418,0.6591447372920811,-0.4935677037574351,0.6128545105457306,0.026380458381026983,-0.027845732867717743,-0.4416727591305971,0.520409690681845,0.5837843455374241,0.18412600085139275,-0.15479272743687034,-0.46975356061011553,-0.24294985132291913,-0.14070443157106638,0.6554675227962434,0.2413974949158728,-0.04112184699624777,-0.7600515927188098,-0.22220193594694138,0.0897333505563438,-0.2589419190771878,-0.6980536575429142,0.048540734220296144,0.20609513157978654,0.5286471182480454,-0.25372547609731555,-0.022514102049171925,-0.2989294552244246,0.603664624504745,0.8365859426558018,-0.044167273212224245,0.4863930158317089,0.47106705605983734,0.34860153310000896,-0.7512353812344372,0.974643686786294,0.4084706660360098,-0.37659730250015855,-0.5777688035741448,-0.057533799670636654,0.5944392150267959,0.09363290388137102,0.7542639002203941,0.10105415107682347,-0.6054641054943204,0.4658276364207268,-0.11715593794360757,-0.32384755043312907,-0.41490317322313786,-0.2624597754329443,0.285446684807539,-0.1472609480842948,-0.7985942596569657,0.478173959068954,-0.37576298462226987,0.7037030896171927,-0.12805902352556586,-0.5884673367254436,0.5752556370571256,-0.47527986438944936,0.7078177849762142,0.8140676412731409,0.8792726192623377,-0.5768661051988602,-0.31203002016991377,0.09525282215327024,-0.008074927143752575,-0.41186896432191133,0.8782330458052456,0.7087411456741393,-0.8303748448379338,0.9415320283733308,0.47611126070842147,0.9357220786623657,-0.9794679372571409,0.07455211970955133,-0.809325700160116,-0.43826157320290804,0.3876765384338796,0.7350776009261608,0.9961861562915146,0.5963376588188112,0.9267279016785324,0.3833721587434411,-0.9557780767790973,0.06157324090600014,-0.9594101901166141,0.4107009619474411,-0.862334162928164,-0.7576695331372321,-0.2937427475117147,-0.32149922475218773,0.9545866441912949,0.5836791996844113,-0.7679999945685267,0.015734714921563864,0.8950357958674431,-0.8638156033121049,-0.878827509470284,-0.23319563455879688,-0.12772010965272784,0.6177710294723511,0.897667255718261,-0.7114991466514766,-0.31472909543663263,0.27279530744999647,-0.9076167866587639,0.07981302123516798,0.37032778561115265,-0.23668309533968568,0.006235314533114433,0.2694069133140147,-0.6455856058746576,-0.5975600071251392,-0.8794949459843338,0.17206893395632505,0.08317198930308223,-0.9516920954920352,0.8998516947031021,-0.31194411125034094,-0.7210929021239281,-0.6218978972174227,0.349932752083987,0.6266758181154728,0.808921579271555,0.2946697170846164,-0.6842858665622771,-0.8098117229528725,0.8299111211672425,0.4725963887758553,-0.9878740916028619,0.19726995332166553,0.6286433860659599,-0.4859732841141522,0.6070049572736025,0.8412390262819827,-0.44194479938596487,0.5366719751618803,0.08977928990498185,0.9515807419084013,-0.44183768704533577,0.3500676592811942,0.8264947733841836,0.5825005508959293,-0.11153041757643223,-0.8759323731064796,-0.45176950423046947,0.07515181181952357,0.027553705498576164,0.600745412055403,-0.7090798732824624,0.19983607716858387,-0.5566286244429648,-0.4299873705022037,0.07692205952480435,0.3925807294435799,0.545831230469048,-0.19554654834792018,0.7372486307285726,-0.2667425163090229,-0.6310870200395584,0.7671297970227897,0.4722185540013015,-0.2689621774479747,0.5084827085956931,-0.194757086224854,-0.18446830846369267,0.5663901749067008,-0.7596254469826818,-0.913363141939044,0.6980039435438812,0.9636395731940866,-0.8282905388623476,-0.14224984869360924,-0.3701778659597039,0.6517861657775939,0.817217213101685,-0.0856726081110537,0.33570388285443187,0.14833672065287828,-0.07024291576817632,0.27728954749181867,-0.7573444335721433,-0.7473649065941572,0.10361354146152735,-0.4179907604120672,-0.15674049593508244,0.3232597503811121,-0.03600567253306508,-0.8222367623820901,0.6536334780976176,-0.6913975500501692,-0.0481298235245049,0.8343802010640502,0.9771972429007292,0.12143618334084749,0.5724040167406201,-0.6959588956087828,-0.9058084972202778,-0.478218499571085,0.4182732361368835,-0.8202221430838108,-0.4632694572210312,0.6867359890602529,-0.9757967283949256,-0.5509690041653812,0.6543952035717666,-0.9923823713324964,0.6081197690218687,-0.8679472021758556,0.2450541635043919,-0.6598869264125824,-0.3473963709548116,0.6198117099702358,0.5008483054116368,-0.2006675605662167,-0.8298719339072704,-0.14339917665347457,-0.21356218261644244,-0.23256468400359154,0.7495912914164364,-0.7660595760680735,-0.041256950702518225,0.8834606506861746,-0.015105136204510927,-0.9428745526820421,-0.9811861580237746,-0.9589672386646271,0.11887690797448158,-0.5774988629855216,0.5527113038115203,0.7713424768298864,-0.8002220396883786,0.4633746240288019,0.8244880777783692,0.8250244213268161,0.26241889456287026,-0.7463954081758857,0.6259810719639063,0.8002678453922272,0.8585395743139088,0.4366474309936166,0.761904826387763,-0.5304363244213164,-0.5203167153522372,0.06755685852840543,0.03049662197008729,-0.3168672127649188,-0.531023649033159,0.46457233373075724,-0.4633247321471572,-0.6388154765591025,-0.8167199133895338,-0.017847696784883738,0.5486671347171068,-0.5153807955794036,0.4927999759092927,0.6049273684620857,-0.4390273322351277,0.10230930987745523,-0.13845641631633043,0.3749000942334533,0.29964370047673583,0.2596301673911512,-0.28085337579250336,-0.8647247487679124,0.8680631527677178,-0.14783014496788383,-0.3437030529603362,0.09920571092516184,-0.9032106446102262,0.30520382057875395,-0.37442424753680825,-0.7033595689572394,-0.6944741937331855,-0.7451597526669502,-0.0863202391192317,0.9141359850764275,-0.11540492530912161,0.8972766259685159,-0.2228915267623961,0.052204353269189596,-0.16415178962051868,0.8842890709638596,-0.18029186315834522,-0.0940200425684452,0.7284802421927452,0.02173896785825491,-0.10864685894921422,0.950613608583808,0.5929022706113756,0.7795943566597998,0.47135447105392814,0.018963860347867012,0.846556874923408,0.650813817512244,0.995981965214014,0.9858863935805857,-0.8388907774351537,0.45325993839651346,0.07756559131667018,0.6723576840013266,0.9446252277120948,-0.3028001501224935,0.2649399982765317,0.5614071134477854,-0.17863907013088465,0.27503163181245327,0.8970047496259212,-0.37635443452745676,0.7544034630991518,-0.9024189137853682,0.5095342984423041,0.015958755742758512,-0.3345169178210199,0.5904718078672886,-0.21637963969260454,0.9969134461134672,0.9357233047485352,-0.11204374115914106,-0.04714187188073993,-0.7250645738095045,-0.014099881052970886,0.1761928885243833,0.17832959722727537,0.26914457231760025,0.9466247353702784,0.10731390304863453,-0.8296894282102585,-0.7771355812437832,-0.1292200437746942,-0.13911538617685437,0.6221741638146341,-0.3817572211846709,-0.4607702698558569,-0.36911011580377817,-0.31467505171895027,-0.5050511294975877,-0.1749324523843825,0.7802644008770585,-0.8141090543940663,0.07719230093061924,-0.1869907076470554,-0.28181412257254124,-0.6599861546419561,-0.20373866660520434,-0.43959942646324635,-0.3064189008437097,0.9101081630215049,0.40974805410951376,-0.7232510908506811,-0.7229498014785349,0.9311487935483456,-0.4010036326944828,-0.37859116308391094,0.2119148806668818,0.5511858239769936,-0.2644679006189108,-0.6604802613146603,0.39244678942486644,0.9458023286424577,-0.5249948459677398,-0.3310637418180704,0.7695437697693706,0.10252406727522612,-0.8212963296100497,-0.048653712030500174,-0.7625687844119966,-0.05807531299069524,0.8086798014119267,-0.5859683807939291,-0.9031651983968914,0.9581715832464397,0.3743142965249717,-0.9636382460594177,0.5823859544470906,-0.9239986413158476,0.18275164812803268,-0.3241714760661125,0.5062465313822031,-0.3118494269438088,-0.9844177532941103,-0.5072767841629684,-0.180159667506814,0.698116272687912,-0.2507895869202912,-0.9459564797580242,-0.14677375415340066,-0.33641539327800274,0.7941617295145988,-0.9159042979590595,0.7367569040507078,-0.9016676330938935,-0.49869397515431046,0.7190750907175243,0.31522636860609055,0.714601615909487,-0.41195515962317586,0.49852451821789145,-0.45379843190312386,-0.5520642357878387,0.022574977949261665,-0.2534286375157535,-0.316885101608932,-0.2301583127118647,-0.516055837739259,-0.515797265805304,0.5893321023322642,-0.633086297661066,0.33093091379851103,0.8766308352351189,0.548001941293478,-0.773616305552423,0.6087130713276565,0.3473521266132593,0.05558273149654269,0.6523409327492118,0.4995838995091617,-0.8699230435304344,-0.5996013903059065,0.09076162055134773,-0.9852406005375087,-0.6551640005782247,0.8428823379799724,0.8721930366009474,0.5094868787564337,0.8387327161617577,0.9463750696741045,0.5021939557045698,-0.6280584279447794,0.8141509052366018,0.38593910727649927,0.5937684066593647,-0.77826420776546,-0.8893156815320253,-0.8813433898612857,0.037157648243010044,-0.8031739499419928,0.3156953789293766,-0.7861063755117357,-0.5920290062204003,-0.3957693111151457,-0.5342621696181595,0.6609756811521947,-0.620318453758955,0.5264726937748492,0.1410071598365903,-0.3663347167894244,-0.5616685547865927,0.5074645839631557,-0.8525400655344129,0.44916658382862806,0.4918031394481659,0.8107781731523573,0.24191108671948314,-0.29364368971437216,-0.220894914586097,0.0707315974868834,-0.7501158374361694,-0.03826540522277355,-0.4957370515912771,-0.06470601819455624,-0.3318157405592501,0.3326859883964062,-0.19895381620153785,-0.9143073153682053,0.6880893255583942,-0.5571048054844141,0.47515667183324695,-0.600398181937635,0.19498976273462176,-0.795859529171139,0.9527688445523381,0.01310889981687069,0.015890211332589388,-0.2929217224009335,0.917776953894645,-0.5254369722679257,0.11790712922811508,0.9855665913783014,-0.848392813000828,-0.5447094300761819,-0.7713835663162172,-0.42088334541767836,-0.3536736029200256,-0.11441011726856232,0.036726529244333506,0.7150921099819243,0.3162090568803251,-0.8080971017479897,-0.38072587875649333,-0.17111313482746482,0.41508769849315286,0.4323334260843694,0.9595618471503258,-0.5625050216913223,-0.3781809704378247,0.7252187519334257,0.9285983555018902,0.22453437792137265,-0.5691966353915632,0.8478902224451303,-0.8432092028670013,-0.1770760351791978,0.3094331561587751,-0.3069098172709346,0.886982181109488,0.19904085248708725,0.5199334351345897,-0.3353073881007731,0.4077187557704747,0.5209383335895836,-0.1851280452683568,-0.6284577450715005,0.40965964645147324,0.6106769051402807,0.020585766062140465,0.6354077407158911,-0.5261673089116812,-0.670879093464464,0.38814736995846033,-0.2765152622014284,-0.7513263849541545,-0.30690199322998524,-0.9508779719471931,0.4664510181173682,0.7404136760160327,0.009608215186744928,0.48103815969079733,0.34354433324187994,0.5993858226574957,-0.7237203712575138,-0.19663141993805766,-0.5957863656803966,-0.8188120047561824,0.09445481514558196,0.27765953540802,0.03623409569263458,-0.6310549871996045,0.2771172719076276,0.27025650395080447,-0.7360098911449313,0.7465758086182177,-0.2580201243981719,-0.42576226964592934,-0.7089715148322284,0.41798892756924033,0.3312212242744863,-0.3414931697770953,-0.31863934360444546,-0.7750714998692274,-0.10519124707207084,0.0717910761013627,-0.4846419859677553,0.11423606052994728,-0.7201760178431869,-0.3961755405180156,0.1314460807479918,0.7875601621344686,-0.48430631030350924,0.08462216565385461,-0.5660591465421021,0.3650635532103479,-0.835010186303407,-0.2513735140673816,0.2690445682965219,-0.8967833467759192,-0.9167026849463582,0.8850299175828695,0.1570023214444518,0.2792146517895162,-0.6018729275092483,0.11549088731408119,0.9490972086787224,0.6882229130715132,-0.11018355842679739,-0.25687070563435555,-0.6221386734396219,0.727507475297898,-0.30428103264421225,0.11581264343112707,-0.8614290491677821,-0.3772813407704234,-0.41218490432947874,0.738681654445827,-0.9001386607997119,-0.5991397681646049,-0.3760121604427695,-0.8294334621168673,-0.35140859335660934,-0.6407934101298451,0.05571611691266298,0.5845026653259993,0.29953891737386584,0.6959666777402163,0.11509638139978051,-0.10858463542535901,0.05484714452177286,-0.9080452779307961,0.02728689694777131,-0.9243592116981745,0.7276347163133323,0.5158492531627417,-0.48838501889258623,0.5136012458242476,0.5830042115412652,0.9576194668188691,-0.2208504844456911,0.9934248775243759,-0.1647865455597639,0.47274511121213436,-0.07593462290242314,-0.24205307429656386,0.9570210184901953,-0.7130210651084781,0.7969171651639044,0.8792094890959561,0.14101041667163372,0.3414121023379266,0.3330701026134193,-0.4077793122269213,0.6737785479053855,-0.6530986079014838,-0.2984282271936536,-0.5599488164298236,-0.9657793389633298,-0.9618822885677218,0.5390668832696974,-0.8313764594495296,-0.7705663167871535,0.06224987143650651,0.1777142770588398,0.11789566557854414,0.7168984347954392,-0.025694021955132484,0.3822693591937423,0.29672552878037095,-0.7615239154547453,-0.4654918513260782,-0.9890027698129416,0.27799432538449764,0.9565348350442946,0.3222387614659965,0.029013125225901604,-0.61692466866225,-0.14641304640099406,0.23231471609324217,-0.18091441877186298,-0.5088590085506439,0.9983641924336553,-0.4330358491279185,-0.7700646007433534,0.9419647422619164,0.3425159421749413,-0.9182052570395172,0.46048542531207204,-0.001137640792876482,-0.6150003666989505,0.8947896966710687,-0.6448080646805465,0.5892218095250428,-0.28244826244190335,-0.8905384046956897,-0.295898565556854,0.6940769981592894,-0.930111825466156,0.4165392480790615,0.11312492797151208,0.8552872813306749,0.3880676948465407,0.20055804448202252,0.07678989041596651,-0.5544489654712379,0.6597519037313759,0.31150950910523534,-0.529354986269027,-0.7421933021396399,-0.9532355000264943,0.8657678426243365,0.527550261002034,0.36389672523364425,-0.017154117580503225,0.19004612369462848,0.5708132251165807,0.11453086230903864,0.9305946608074009,-0.1898089381866157,0.18634028546512127,0.663010461255908,-0.3398549258708954,0.6514022378250957,0.2322722445242107,0.7018128926865757,0.05164418136700988,-0.0671392073854804,0.45440459018573165,0.4324749605730176,0.2164351469837129,0.1641951804049313,-0.9850418185815215,-0.3132866956293583,-0.20090530486777425,0.2766821435652673,0.2155360714532435,-0.8096095314249396,0.2335081691853702,0.2592591904103756,-0.47839350765571,0.38008890207856894,-0.26051109144464135,-0.1462317663244903,-0.7329554874449968,0.6580872479826212,-0.3980435924604535,-0.9131849901750684,0.5850070165470243,-0.3914497303776443,0.927114405669272,-0.5714485328644514,-0.5479433611035347,0.6281679412350059,-0.7840239470824599,-0.2924370621331036,-0.6156387622468174,-0.8944101631641388,0.9719981742091477,-0.4701022286899388,-0.8439976000227034,0.2955720694735646,-0.6068620691075921,-0.21350852865725756,-0.16098082903772593,0.5092144510708749,0.9894460309296846,-0.12568055419251323,0.11292822565883398,-0.3333842712454498,0.09550164034590125,-0.22884949063882232,-0.5223970054648817,0.2914711497724056,-0.01447418937459588,-0.9885195144452155,-0.2006315174512565,-0.14658731315284967,0.6683718296699226,-0.42387186316773295,0.3698792406357825,-0.8941361578181386,0.778543146327138,0.6460846932604909,0.6615442121401429,0.8503610086627305,-0.3130840416997671,-0.10639210138469934,-0.4216115903109312,-0.14240655861794949,-0.2757072183303535,-0.7788284295238554,-0.2613394735381007,-0.6606772923842072,-0.2117591444402933,0.32332890341058373,-0.4306070706807077,0.6105258800089359,0.012971964664757252,-0.3399639609269798,0.02728468691930175,-0.9712955723516643,0.2976702912710607,-0.7739732176996768,0.2588603035546839,0.44189276173710823,0.056089967023581266,-0.5233665858395398,0.6304980111308396,0.4410499227233231,0.1790667879395187,0.4585586083121598,-0.9809016906656325,0.717142699752003,0.704118728172034,-0.3453407110646367,0.7318846508860588,0.027372237294912338,0.6223713457584381,-0.6973985093645751,-0.6691899048164487,0.5318264681845903,0.19592466205358505,-0.41888149827718735,-0.3144391532987356,0.06489283358678222,0.5224129119887948,0.9362645950168371,0.9251406341791153,0.887640398927033,0.6203038459643722,-0.8312264545820653,-0.7300879368558526,0.14000097010284662,-0.2924996162764728,0.3484646696597338,-0.7469438603147864,0.5409333459101617,-0.8952506259083748,0.3793500722385943,-0.19157899310812354,0.6341838603839278,0.5691969231702387,0.27742428705096245,-0.1386582124978304,-0.6220257193781435,-0.5389148071408272,-0.38084768084809184,0.9312448995187879,0.6816668282262981,0.37644437048584223,-0.0707941516302526,-0.1361008775420487,-0.4872436551377177,0.2470534611493349,-0.8018768923357129,0.16552703035995364,0.2949582263827324,0.6374716772697866,0.6470977459102869,0.7509150458499789,-0.5582794300280511,0.534162153955549,-0.8907984453253448,-0.24439640855416656,-0.9314797320403159,0.19272128166630864,-0.6938541694544256,-0.9017736981622875,0.8801499302498996,-0.9997825445607305,0.49100029934197664,0.4630907420068979,-0.37012857710942626,0.3033560239709914,0.15483813174068928,-0.280860070604831,-0.6745204785838723,0.09965663589537144,0.6824604291468859,-0.8616713620722294,-0.8041071542538702,0.4547399552538991,-0.4456888157874346,-0.1956692892126739,-0.09816852165386081,0.3731907671317458,0.7456820020452142,-0.7418153849430382,-0.18949757236987352,0.999133350327611,-0.10513109806925058,-0.3683591247536242,0.6187377655878663,-0.28556311083957553,-0.2834800696000457,0.317552347201854,-0.7827319344505668,0.04991630278527737,0.6015583998523653,0.03829393209889531,-0.296332071069628,0.041493555065244436,-0.5135280806571245,0.5056363972835243,-0.21629141503944993,0.090132893063128,-0.5364411077462137,-0.7873103437013924,0.15955779468640685,0.23128136061131954,0.5340501321479678,0.5623133848421276,-0.1711961841210723,0.5958689763210714,0.8614098974503577,0.07845334568992257,0.1849906942807138,-0.30618974193930626,0.01165769575163722,0.05990108335390687,-0.8897477705031633,0.17859788751229644,-0.026493248995393515,0.43757093185558915,-0.3609342612326145,-0.4707198506221175,-0.7008297396823764,-0.22090446297079325,-0.8135483874939382,-0.9425775213167071,-0.9191468604840338,0.8566685309633613,0.42709346720948815,0.2844828199595213,0.33177580405026674,-0.5542797944508493,-0.04094186192378402,-0.6913233608938754,-0.01649007247760892,0.7004912081174552,-0.21556701371446252,-0.8530104788951576,-0.4200548594817519,-0.8435188154689968,0.277098196092993,-0.16948615852743387,0.07285993918776512,0.7727319374680519,-0.1557888276875019,0.2440866082906723,-0.12806408619508147,-0.7423707735724747,0.9332160106860101,-0.3521204157732427,-0.6484497128985822,0.21948719071224332,-0.5817802110686898,0.5635800412856042,-0.47632469795644283,-0.6955880951136351,-0.39842381654307246,0.8972592516802251,-0.19193164492025971,0.9243362261913717,0.9370070607401431,-0.5661764848046005,-0.44752194732427597,0.5883561442606151,-0.7681876225396991,0.26163904182612896,-0.5063557857647538,0.3886568653397262,0.5339644383639097,-0.3363970103673637,-0.7775459974072874,-0.4554055640473962,-0.704018207732588,-0.6659506154246628,-0.3981334432028234,0.5722634214907885,0.7797739021480083,-0.57884312979877,-0.7652514134533703,0.4538697674870491,-0.758068481925875,0.12122928211465478,-0.18136035185307264,-0.09256393555551767,-0.7616241318173707,-0.40661936113610864,0.7641038605943322,0.0516988355666399,-0.7295105862431228,-0.7976588471792638,-0.14939455408602953,-0.8372553973458707,0.6152169420383871,0.9199713724665344,0.7456279559992254,0.40379761392250657,0.11721080634742975,-0.8155768252909184,0.8886049552820623,0.9305337406694889,0.12085665063932538,-0.3216104176826775,-0.4881856977008283,-0.40701635740697384,-0.9606256880797446,0.26060903491452336,0.44269290240481496,-0.20683755306527019,-0.0611126315779984,-0.7388169993646443,-0.05100959865376353,-0.2962724077515304,-0.6612473758868873,-0.18718614988029003,0.23835895350202918,-0.0883507514372468,0.2788064735941589,0.13519651303067803,0.7179982205852866,-0.4570593060925603,0.3778925142250955,-0.5848237350583076,0.2601285018026829,-0.07120442949235439,-0.8026379714719951,0.35498712537810206,0.269264112226665,0.8757212460041046,-0.2808394464664161,-0.20258062751963735,0.5106024956330657,-0.9686226132325828,0.31797109078615904,0.9105530800297856,-0.4514658469706774,-0.9061555732041597,-0.7765088737942278,-0.9007660504430532,-0.01351921632885933,-0.562936507165432,-0.521750773768872,-0.6151007781736553,0.05728349555283785,0.13011469412595034,0.2197953062132001,-0.44343589385971427,0.4755367091856897,-0.027167901396751404,-0.5630536233074963,-0.5157383154146373,0.717957719694823,0.5922193643637002,-0.31401737267151475,0.31303864903748035,0.5971081564202905,-0.5237921052612364,-0.4283640384674072,0.6001306856051087,0.8619988281279802,0.7262574913911521,0.5162161127664149,-0.6979103279300034,-0.9804081651382148,-0.7732711895368993,-0.7337948316708207,-0.9279090282507241,-0.892656346783042,0.8491236278787255,-0.8787490343675017,-0.7245432231575251,-0.7253108439035714,-0.22841647919267416,0.9988727560266852,-0.5120271141640842,0.6924039940349758,-0.508848151192069,0.6804069308564067,0.3940234053879976,0.6998738944530487,0.2565127951093018,-0.3444311721250415,-7.021287456154823e-05,-0.09631501184776425,0.8094376446679235,0.7849448290653527,-0.5200592298060656,0.010717617347836494,-0.5294387293979526,0.49456749530509114,0.2298783715814352,0.30405400367453694,0.22619579127058387,0.9397922386415303,0.9349184357561171,-0.9170865807682276,-0.7521453276276588,-0.43562823766842484,-0.11085989372804761,0.46405768720433116,0.6377855530008674,-0.7266955035738647,0.3587350551970303,0.7730729100294411,-0.6543245571665466,-0.6047592046670616,-0.4767758250236511,0.18050401657819748,-0.3522973214276135,-0.461189785040915,-0.07454503979533911,0.5471482519060373,0.01950234966352582,0.05319174937903881,-0.4710011803545058,0.506871207151562,0.3869086690247059,0.4656886709854007,-0.0008895620703697205,0.44052067771553993,0.7619079416617751,-0.4792756838724017,0.8509555202908814,-0.5641240840777755,0.41829369543120265,-0.1419072155840695,0.6796645727008581,-0.07213988015428185,0.5609370805323124,0.769884237088263,0.6355676706880331,0.938869038131088,0.6413047998212278,-0.20965056121349335,0.5260769072920084,-0.35921162040904164,-0.271290329284966,0.0976874316111207,-0.7861504219472408,-0.8858124013058841,-0.7586743179708719,-0.8301405259408057,-0.06349322013556957,0.4308705781586468,0.9400815470144153,-0.8348184153437614,0.4675360373221338,-0.42627671267837286,0.3493452547118068,0.3625898282043636,-0.4978278102353215,-0.4541703830473125,0.8586139986291528,-0.8689075284637511,0.5558451530523598,0.9756068126298487,0.06548350490629673,-0.5582019085995853,0.42269908310845494,-0.789366917219013,-0.4845344158820808,0.046364034060388803,0.30873726261779666,-0.8935531713068485,-0.03302185796201229,-0.6679253098554909,-0.9082159870304167,0.08009716449305415,-0.6318047759123147,0.7142887623049319,0.6109483540058136,-0.15437613846734166,0.07306705228984356,0.8313496713526547,-0.05176576506346464,0.9757005237042904,0.36903119878843427,0.8903698804788291,0.20626285625621676,0.401774316560477,-0.6438584011048079,-0.3085046480409801,0.5440310328267515,0.7575049200095236,0.37663726741448045,0.9545956952497363,-0.664571282453835,-0.9294283734634519,0.5064908391796052,0.17694828333333135,0.007897603325545788,0.12634607823565602,-0.6231938390992582,-0.19379853270947933,0.45852764789015055,-0.19354832638055086,0.8568392787128687,-0.10188347706571221,0.824608142953366,0.005437730345875025,-0.9294091989286244,0.37651557475328445,-0.9948306572623551,-0.9120924174785614,0.4560728264041245,-0.4589864620938897,0.6194827947765589,-0.15549911838024855,-0.6870206114836037,-0.07543391408398747,0.18776101199910045,0.862302775029093,-0.33572719898074865,0.6878327801823616,0.7104208166711032,-0.27595967054367065,0.7597026582807302,0.8303496935404837,-0.8557580839842558,0.5090643833391368,-0.3306531207635999,-0.26136390306055546,0.8348856093361974,-0.6833525863476098,-0.03607891174033284,0.8103804597631097,-0.29153377283364534,-0.9882062082178891,0.04380262643098831,-0.8678882177919149,-0.5941729368641973,0.2525766515173018,0.2153495759703219,0.25409750873222947,-0.5226021693088114,0.0513108791783452,0.7561624306254089,-0.9449673085473478,0.15548322722315788,0.4012667089700699,-0.37212904915213585,0.5215918687172234,-0.09853094816207886,-0.8066757405176759,-0.14005330670624971,-0.8412709459662437,-0.6016369564458728,-0.7994941067881882,0.7808069409802556,0.4760059048421681,-0.35502166114747524,0.10681515419855714,0.9432390797883272,-0.06654089502990246,-0.24468469200655818,-0.24635726679116488,-0.06762743182480335,-0.7144523444585502,0.6935252873227,-0.8855141596868634,-0.7085666903294623,-0.47312867315486073,0.3737778435461223,-0.23322089947760105,0.8856536336243153,0.5678483424708247,0.17668524850159883,-0.6486125569790602,0.4916363353841007,-0.6411621482111514,0.6699244691990316,0.12978678476065397,-0.33442896604537964,-0.8618809375911951,-0.4693274232558906,-0.9683484993875027,0.9349180054850876,0.7453206828795373,-0.0917935511097312,0.29699324490502477,-0.2524839253164828,-0.21101469080895185,-0.9318464063107967,-0.5695998156443238,0.2073835921473801,-0.3957088552415371,0.9838283066637814,0.3736264770850539,0.8519826573319733,-0.2148730824701488,-0.36318820621818304,-0.13196031097322702,0.8102828436531126,-0.06775325676426291,0.8652619491331279,-0.334711083676666,0.4393963194452226,-0.22503220196813345,0.9876561397686601,0.44488265505060554,0.42790648713707924,0.4688534098677337,0.813072370365262,0.4542610254138708,0.8034104215912521,-0.4258234822191298,0.8595051211304963,-0.287951466627419,0.4591781157068908,0.38848762260749936,-0.48713580751791596,-0.9331225692294538,0.23968319268897176,0.22690662182867527,0.266754399985075,0.6063360944390297,0.564910956658423,0.549682954326272,-0.26873281691223383,0.35185547173023224,0.39738211315125227,-0.10755005571991205,-0.41518220910802484,-0.0785645367577672,-0.3678543409332633,-0.9447016878984869,-0.8916534725576639,0.9142979299649596,-0.14938284223899245,-0.9217672306112945,0.6702992948703468,0.8466585772112012,0.8653827193193138,0.4551591891795397,-0.2516096499748528,-0.8338299198076129,-0.9214266673661768,0.5179632469080389,-0.023852758575230837,-0.7769195409491658,-0.40918906684964895,-0.8384225615300238,0.6218788987025619,0.6256210198625922,0.4101461688987911,0.13910116348415613,-0.6977096502669156,0.09337440971285105,-0.4198975143954158,0.8005105159245431,0.5960746882483363,-0.7357318103313446,-0.10542779648676515,0.9416536167263985,-0.2810425371862948,-0.7764597437344491,0.19683175440877676,0.06912919227033854,0.2674477891996503,-0.9993532001972198,0.8967391839250922,0.9297755151055753,-0.6575147481635213,-0.55349988816306,-0.3101191888563335,0.1537705371156335,-0.08227775059640408,0.516965719871223,0.5406038048677146,0.928017231170088,0.3010123474523425,-0.0004201647825539112,-0.513545760884881,0.08949851803481579,0.043504674918949604,0.28007911052554846,-0.1902979896403849,-0.8140674359165132,0.9575050668790936,0.7011612835340202,0.6395267215557396,0.31516546616330743,-0.322775945533067,-0.015340310987085104,-0.466306671500206,0.608349940739572,0.1645835409872234,-0.055456941947340965,0.3851671596057713,-0.049389193300157785,-0.2874527731910348,0.20043527893722057,0.12479726178571582,0.6908561736345291,0.8376072742976248,-0.22207924677059054,-0.6440854487009346,-0.46699677454307675,0.07805441785603762,-0.5108428448438644,-0.7802423159591854,0.4258609153330326,0.6647068136371672,0.709902455098927,0.6745240958407521,0.09415528504177928,-0.5101169678382576,-0.39939677668735385,0.7951940698549151,0.6031582672148943,0.9679092094302177,0.11918869521468878,0.7260407172143459,-0.670806020963937,-0.20337375160306692,0.8776822136715055,-0.08779302099719644,0.0487000634893775,-0.8763968059793115,-0.3123724823817611,-0.4782569445669651,0.32336599472910166,0.9169529778882861,0.8989720037207007,0.22808042028918862,0.2145406543277204,0.4082387243397534,0.2268792395479977,-0.08155521098524332,0.3578429468907416,-0.974608585704118,0.6210631593130529,0.9622482159174979,0.6573810866102576,0.18368220888078213,0.861196715850383,0.6627210956066847,-0.2648413786664605,-0.027915860526263714,-0.7368748490698636,0.76681769778952,-0.13976959930732846,-0.37579214200377464,-0.7789697293192148,0.5034912768751383,-0.9156399872153997,0.8863468985073268,-0.8646278916858137,-0.5534423128701746,0.17902800347656012,-0.6182240322232246,-0.24689177237451077,0.0031409375369548798,-0.3326787892729044,-0.3922263216227293,0.14391779759898782,-0.6102057313546538,-0.6492265211418271,0.7570269494317472,-0.2337478268891573,0.35108403535559773,-0.8557880241423845,-0.10462645720690489,-0.9583160071633756,-0.1904607960022986,0.2278402140364051,-0.17715137172490358,0.576172495726496,0.19201711378991604,0.701774722430855,-0.3880829899571836,-0.22882302990183234,0.10815649153664708,-0.1742993611842394,0.09457443933933973,-0.06576694780960679,-0.6909128529950976,0.9510681168176234,-0.5597994984127581,-0.9931212179362774,0.5604112925939262,0.3951347917318344,0.10113363852724433,-0.1984683400951326,-0.088131467346102,0.29274178110063076,-0.11746965209022164,0.1909850831143558,-0.4830065374262631,0.518902137875557,-0.8044024701230228,-0.15119562158361077,0.055814535822719336,-0.8211266845464706,0.7336571612395346,0.014062706846743822,0.633617056068033,0.4739872319623828,-0.991829028353095,0.4937817812897265,-0.4725076896138489,0.25511314161121845,-0.512535179965198,0.9392837784253061,0.4778170003555715,-0.41484638303518295,-0.7398655312135816,0.719710486009717,0.6094933398999274,-0.023291652090847492,-0.5566700673662126,0.11700441315770149,-0.6688094572164118,-0.19135031523182988,-0.9324538242071867,0.8466643672436476,0.6168940840288997,-0.4793872367590666,-0.27702212799340487,0.9588329438120127,0.2963985842652619,-0.40392168052494526,0.5093905455432832,-0.9127847240306437,-0.2936719576828182,0.7151036877185106,-0.016252473928034306,0.49233801383525133,0.08755312860012054,0.20849817479029298,-0.6555233164690435,-0.7515137423761189,0.8067960678599775,-0.47265601996332407,-0.8990379073657095,-0.5775581817142665,0.4904840188100934,-0.7498415703885257,-0.9381471443921328,0.4299483369104564,-0.24167429702356458,-0.45880614360794425,0.9652749449014664,0.054421206936240196,-0.42965252045542,0.5513348197564483,0.8653026074171066,0.36542848916724324,-0.10694052278995514,-0.8488029958680272,0.3576724473387003,-0.26956256944686174,-0.5137635143473744,-0.18102748692035675,-0.9866229193285108,-0.8849532552994788,-0.6753436112776399,-0.514288064558059,-0.7480997829698026,0.6775843016803265,-0.029055850114673376,0.036608961410820484,-0.07570076314732432,-0.27206232165917754,-0.578592867590487,-0.8167750332504511,0.2601085603237152,-0.14128649281337857,0.7904914706014097,-0.6141531383618712,0.6765282680280507,-0.059931181371212006,0.3537574550136924,-0.8307695123367012,-0.9497083639726043,0.4935227590613067,-0.8778684819117188,0.9481854336336255,0.5436419420875609,-0.07987803081050515,-0.5610594712197781,0.0895850001834333,-0.6120489053428173,0.7721670777536929,0.9181971498765051,-0.8504310701973736,-0.06021935446187854,-0.7438651551492512,0.18147222697734833,0.9494717535562813,0.4134717620909214,0.24020056705921888,-0.1887511294335127,-0.3716142172925174,0.16179941082373261,0.4880528631620109,-0.1779258120805025,-0.9417606401257217,-0.3112252647988498,0.07760025328025222,-0.46822715317830443,-0.5872109802439809,0.990226183552295,0.02523147827014327,0.30838053999468684,-0.9135735146701336,0.48054178105667233,-0.5568830724805593,-0.44575840700417757,-0.4704865776002407,0.056128816679120064,-0.6018725358881056,0.9747224696911871,-0.49686037795618176,0.7552914596162736,-0.28110385593026876,0.5775138414464891,0.5633993265219033,-0.5627597700804472,-0.9259791686199605,-0.9896408603526652,-0.5661693494766951,0.5985165070742369,-0.3109198655001819,0.6839962056837976,-0.6546929702162743,0.8955973018892109,-0.9902181318029761,-0.9268334219232202,0.30625693779438734,-0.5089296433143318,-0.6241907579824328,-0.40561379166319966,-0.06582097243517637,0.4005079725757241,0.9319953713566065,0.5830765124410391,0.2677436866797507,0.5950142745859921,-0.7556728133931756,-0.46535860328003764,-0.3275198368355632,0.08323324797675014,-0.3956030709668994,0.11351140541955829,-0.8721319558098912,-0.5780409974977374,0.9961866158992052,-0.8599013746716082,-0.27482319762930274,-0.31039546336978674,0.5981405624188483,0.9619898796081543,0.5357783609069884,-0.932922541629523,0.276948822196573,0.01409979397431016,-0.5503856590948999,-0.5357520035468042,-0.5979487467557192,0.3088312856853008,0.7669996269978583,0.849320787936449,0.7319236416369677,-0.6614647004753351,-0.09061343967914581,-0.5908321514725685,0.4148448840714991,-0.7486538914963603,0.1847344278357923,0.8425640473142266,0.27515029488131404,0.539328127168119,-0.7095286850817502,0.3270391095429659,-0.4185867141932249,-0.9726714957505465,0.24017802719026804,0.621230652090162,-0.6378337191417813,-0.06482484331354499,-0.3172830422408879,-0.9684736412018538,0.8329486018046737,-0.8096777759492397,0.13517859112471342,0.6314147058874369,0.18770198104903102,-0.09309241315349936,-0.5300961751490831,-0.2566167530603707,-0.7484565260820091,0.7134310444816947,-0.3671058313921094,-0.21581427473574877,-0.4097306141629815,0.5786955812945962,-0.15724117076024413,-0.025043231435120106,-0.6605305760167539,-0.32041627960279584,-0.016264110803604126,0.6814632220193744,0.217081387527287,-0.5717483493499458,-0.351389046292752,0.7758454154245555,0.9585893764160573,0.662407563533634,0.7415660195983946,0.8248209930025041,0.6331081506796181,0.32554695336148143,-0.6202425039373338,0.7128773396834731,-0.6306682717986405,0.5115958051756024,0.5961726815439761,-0.6349623231217265,-0.03981862682849169,-0.569988249335438,0.36703791562467813,0.38985505187883973,-0.4739506896585226,0.2701944182626903,-0.15746758272871375,0.09792964858934283,0.517668703570962,-0.8607276673428714,0.944830204360187,-0.5787715571932495,-0.04746320238336921,-0.14886762527748942,-0.9079731176607311,-0.4384926427155733,0.33677307050675154,0.37196760764345527,0.9347908599302173,-0.6991543946787715,0.18546751607209444,0.21190986782312393,-0.012159475591033697,-0.8627407411113381,-0.04239115258678794,0.18144608242437243,0.19770943699404597,-0.3662758790887892,0.9704111977480352,0.1585087226703763,0.772850101813674,0.9599787434563041,-0.890894134528935,0.21491455798968673,-0.2508618226274848,-0.3410405209288001,-0.6971121151000261,-0.6029222281649709,0.9172143214382231,-0.947134664747864,-0.6628376594744623,-0.7236719974316657,-0.6930258725769818,-0.3578169522807002,0.31696382304653525,-0.10120039945468307,-0.7225106004625559,-0.28972412645816803,0.8178480705246329,0.3912509586662054,0.01870913291350007,-0.3535468280315399,-0.21055918186903,-0.6781619638204575,-0.4678350458852947,0.39478394063189626,0.8992084600031376,-0.2985535943880677,-0.45165463630110025,-0.13062289403751493,0.3665898572653532,-0.42032501846551895,0.6802746430039406,0.17387446528300643,0.2407097895629704,-0.10124448966234922,0.19442008389160037,0.4643515916541219,-0.21326185623183846,0.7411508075892925,-0.8582181134261191,-0.7981012077070773,-0.31117035867646337,-0.9697198341600597,-0.538913473021239,-0.4409085651859641,0.2127758450806141,0.22128128958866,-0.4787072245962918,0.6989767453633249,-0.3940787110477686,0.024963789619505405,0.2855306281708181,-0.0692837075330317,-0.3618727708235383,0.8297729934565723,0.5639316504821181,-0.05010001128539443,-0.18334098579362035,0.37514608167111874,0.5943114184774458,-0.18489946192130446,-0.5753712081350386,0.31960708601400256,0.2236130707897246,-0.7772294296883047,-0.8774888119660318,0.20390220871195197,0.12744513154029846,-0.8456907882355154,-0.48346097487956285,0.6821705624461174,-0.9095441685058177,-0.9282866320572793,0.8411212451756,-0.15441441955044866,-0.40598562732338905,0.3841784866526723,0.23047631746158004,0.10334110772237182,0.16213303990662098,-0.44314729887992144,0.3193909893743694,-0.8597057331353426,0.1629387023858726,0.748105644248426,0.5996957430616021,0.4177292054519057,0.6076532886363566,0.7717184065841138,0.6218637507408857,-0.29305377462878823,0.995908095035702,-0.29847328877076507,-0.9892355375923216,-0.9052299265749753,0.1869216300547123,-0.27465068688616157,-0.4841331196948886,0.696843040175736,0.9952525203116238,-0.06750102946534753,0.6898256670683622,-0.5986170070245862,-0.23643848951905966,0.23088670894503593,-0.03437594324350357,0.12965822825208306,-0.6347012119367719,0.872278586961329,-0.38378608878701925,0.49195876717567444,-0.5418564188294113,-0.90682159550488,-0.1622899081557989,0.3361605778336525,0.3477105316706002,0.8987529771402478,-0.07007463369518518,0.011198976077139378,0.36490972619503736,0.7553263120353222,-0.29875648813322186,0.7798846019431949,-0.15015684394165874,-0.7133956984616816,0.049380474258214235,-0.8079859004355967,-0.7432141392491758,0.46070504700765014,0.012817392125725746,-0.14864145033061504,0.6083505186252296,-0.3680019862949848,-0.9838154190219939,0.9011157057248056,0.6800553393550217,0.13092187698930502,0.806873885449022,0.3405866730026901,0.1751655414700508,0.05313449678942561,-0.1956001752987504,0.11425113910809159,-0.32131610438227654,0.9239032687619328,-0.4872119794599712,0.16414361400529742,-0.5602934155613184,0.5150555805303156,-0.132349100895226,-0.8237816407345235,-0.7984296814538538,-0.8429514025337994,-0.4249111437238753,0.13504308043047786,0.7080515874549747,0.7414954826235771,0.5059014107100666,0.20364310778677464,-0.04416846204549074,0.5556948487646878,0.5535136829130352,-0.6968048647977412,-0.001904582604765892,-0.6566309169866145,-0.6539971558377147,-0.08886891789734364,-0.5274275662377477,-0.25353604601696134,-0.5969505156390369,-0.09013099176809192,-0.44149289932101965,-0.16515050129964948,0.62757647363469,-0.35719706816598773,-0.31211651116609573,0.00436850031837821,0.24511223705485463,-0.719420266803354,0.9444735734723508,-0.37073933565989137,0.1380455493927002,-0.35466221580281854,-0.7709216424264014,0.5191888050176203,-0.8054356398060918,0.08952585235238075,0.16774242045357823,-0.4773561446927488,-0.9063383056782186,0.8911837288178504,0.27548879897221923,-0.14975356264039874,0.3719418621622026,-0.19934891536831856,0.44860359793528914,-0.3562627397477627,0.8463854743167758,-0.8063798560760915,-0.3663142919540405,-0.6213243394158781,-0.03522320697084069,-0.07968592224642634,-0.1111624538898468,-0.15898377867415547,-0.8622342688031495,-0.2271591005846858,0.8515399591997266,-0.1665956643410027,0.623633268289268,0.5367664438672364,0.7232647612690926,-0.22941698599606752,-0.43850978137925267,-0.2659819978289306,-0.7944610542617738,-0.11579495295882225,0.06373176397755742,-0.35562293184921145,0.7876482480205595,0.44384846556931734,0.7596838870085776,-0.1382210934534669,0.9778756746090949,-0.1781893242150545,-0.7767176302149892,-0.6618139576166868,0.7220569439232349,0.22437974624335766,-0.9209547457285225,0.029904878232628107,-0.933690547477454,0.11793226096779108,-0.059660338796675205,-0.019241010770201683,0.3507811869494617,0.48305770196020603,-0.4198221890255809,0.982011376414448,-0.3684904365800321,-0.8946677199564874,-0.1294084945693612,0.9726431369781494,-0.2843257011845708,0.45529749896377325,0.6703330059535801,0.1690546260215342,-0.13190770708024502,0.24319721246138215,0.5587633517570794,0.6520095020532608,-0.16926715476438403,0.9095648820511997,-0.29684055084362626,-0.5585526158101857,-0.529421522282064,-0.32780351396650076,0.017442832235246897,0.11119916243478656,0.5653610718436539,0.7722350163385272,0.7710045464336872,0.368935689330101,-0.15476152626797557,-0.5545936208218336,0.22066319547593594,-0.06732432404533029,-0.04739418253302574,0.6395279667340219,0.6606047786772251,0.38180884905159473,-0.09218427445739508,-0.9470864734612405,0.441593830473721,0.5842462880536914,0.8816098957322538,0.7580828429199755,0.8344518598169088,0.6245767609216273,-0.9167687254957855,0.34790866216644645,-0.45134932128712535,-0.9637066521681845,0.7621010108850896,0.27007230883464217,-0.13486564392223954,0.8055948573164642,-0.174520974047482,0.8898586235009134,0.8030387824401259,0.7869650856591761,-0.237261607311666,0.541653118096292,0.026991032529622316,0.3348828027956188,-0.3305103238672018,0.40434129908680916,0.3386533227749169,-0.9306148090399802,-0.3006076803430915,-0.4547746046446264,0.5666500879451632,-0.09690241515636444,0.8221919247880578,-0.9766778605990112,-0.42823369801044464,0.20201031723991036,0.1555802682414651,-0.9059151452966034,0.7728393054567277,0.1583727807737887,0.8544959016144276,0.05796681810170412,-0.9618956120684743,-0.8357951915822923,-0.7931458703242242,-0.6263755923137069,0.4489680100232363,-0.44946882082149386,0.2615914852358401,0.5189788276329637,0.8926012408919632,-0.02257966762408614,0.5992962284944952,-0.65489725722,0.24475078517571092,-0.33819707157090306,-0.06965508032590151,-0.7449229056946933,-0.8354222043417394,0.23284411616623402,0.2604517089203,-0.5456542749889195,0.23827754519879818,0.166791670024395,0.6305404864251614,-0.4825934930704534,0.417532479390502,-0.05172827746719122,-0.6338752377778292,-0.08331232517957687,-0.510809316765517,-0.8904477776959538,0.23470487911254168,-0.04482418531551957,0.7464738166891038,0.3538497774861753,-0.45535333221778274,-0.09019259037449956,0.5188408028334379,-0.8433235646225512,0.29031250812113285,-0.5740925539284945,0.5696158539503813,0.13438825495541096,0.45330436434596777,0.7006959784775972,-0.16307560680434108,-0.7367338743060827,-0.33504106802865863,-0.28490665974095464,-0.24277657084167004,0.10988021222874522,-0.31710008811205626,0.356378429569304,-0.28986775036901236,-0.9806412686593831,-0.5963371992111206,0.5335052614100277,0.7940282006748021,-0.5290509411133826,0.9404999231919646,-0.4436648874543607,-0.7565510207787156,-0.21319589437916875,0.7154320245608687,-0.5321019631810486,-0.38748948089778423,-0.2440927834250033,-0.057737805880606174,0.6375014744699001,0.6528323423117399,0.22861862974241376,-0.9055289765819907,0.8888330636546016,0.8436613921076059,0.6469239238649607,-0.6662404560483992,-0.48590987687930465,-0.015588974114507437,0.8405030043795705,-0.9082396803423762,0.09409104008227587,0.5331979626789689,0.6249590874649584,0.06813696026802063,0.3332856302149594,0.8762834859080613,-0.386360842268914,0.7370618158020079,0.906175653450191,-0.5504490411840379,-0.8458577156998217,-0.3815843788906932,0.6931753843091428,0.06990358838811517,-0.05720872478559613,0.6236251024529338,-0.2691420349292457,-0.25935858162119985,-0.5058585871011019,0.057828993536531925,-0.03930189739912748,0.7300307615660131,-0.4415023014880717,0.6803619908168912,-0.012677991297096014,-0.1969017731025815,0.8341012476012111,-0.7653560787439346,0.08625731011852622,-0.39068830013275146,0.08495192974805832,-0.6920552314259112,-0.619139420799911,-0.7636368465609848,0.6137086115777493,0.45396096678450704,-0.3375631012022495,0.6651825201697648,-0.9771287241019309,0.73298643482849,0.7428149655461311,-0.3536378717981279,-0.9603300527669489,0.6741771786473691,-0.7860714760608971,-0.12951600505039096,-0.29081779811531305,0.6211517006158829,0.3751132502220571,-0.13024210836738348,0.5944177461788058,-0.4204371804371476,-0.48987883795052767,-0.15341513603925705,-0.4503684062510729,-0.8037217310629785,-0.23162182560190558,-0.6682021962478757,0.5027809818275273,-0.4907147940248251,0.3654604312032461,0.03429738897830248,-0.6684245350770652,-0.771242524497211,-0.5656234640628099,0.5140934903174639,0.724200738593936,-0.22630053106695414,-0.32910818699747324,0.7802312914282084,0.0281048403121531,0.756094257812947,-0.8886429439298809,0.4349338188767433,-0.5726328850723803,-0.17878901259973645,0.2631966439075768,0.13501693028956652,0.36197197064757347,0.042698225006461143,0.01873105578124523,-0.5750843328423798,0.9891515639610589,-0.8882390009239316,0.7526555480435491,0.40382189163938165,-0.7873633322305977,0.800973005592823,0.6992243169806898,-0.5492827934212983,0.19150412129238248,-0.2523767640814185,0.9369914755225182,0.04397420072928071,-0.8688467969186604,0.4856358766555786,-0.0029848353005945683,0.5399635620415211,-0.5763138863258064,0.2683932175859809,0.5186566985212266,-0.2310282620601356,0.848010775167495,-0.9048590688034892,-0.04025203315541148,0.5569850648753345,0.677781387232244,-0.7534047975204885,0.8470672508701682,0.4380106688477099,-0.09032466448843479,-0.30112788965925574,-0.9802737548016012,0.44551314134150743,0.8583397357724607,-0.6061681169085205,0.2643210026435554,-0.4407878569327295,-0.6072888411581516,-0.9567383932881057,0.6680395305156708,0.0446460978128016,-0.11148486286401749,-0.2472449573688209,-0.2901484505273402,0.5492409467697144,-0.4556916644796729,-0.534149160142988,0.12109260773286223,-0.9883578047156334,0.7249090322293341,-0.5062867845408618,0.353914697188884,0.21097655082121491,0.9420706410892308,-0.7692909352481365,-0.8843586198054254,-0.48550605960190296,0.37871423782780766,-0.46131404722109437,0.7388537833467126,0.2673249109648168,0.35227566258981824,0.07302829390391707,-0.6850619525648654,-0.2815757510252297,0.8975212853401899,-0.34485713858157396,0.2595297605730593,-0.30835705110803246,-0.6721486710011959,-0.22590800328180194,0.514076299034059,-0.8760545761324465,0.08156248740851879,-0.11173327034339309,-0.019271560478955507,0.41165189631283283,0.35880092391744256,0.858161604963243,-0.7848034403286874,-0.7481598020531237,0.9795130244456232,-0.7197283357381821,-0.5091203250922263,0.7047008676454425,0.38269579969346523,0.486171159427613,0.7501951484009624,-0.9427393674850464,-0.9281014907173812,-0.08937502279877663,0.19652586011216044,0.8382474244572222,-0.4656927930191159,-0.8854565052315593,0.3642884627915919,0.5338017530739307,-0.43614409677684307,-0.7288942160084844,0.471563664264977,0.8263788972981274,0.05840349290519953,0.687528750859201,-0.8607152854092419,-0.9979523848742247,-0.42169368686154485,-0.35012004850432277,-0.8120742226019502,0.8725627888925374,-0.8060815492644906,-0.05873748008161783,-0.10218495735898614,-0.14144014986231923,0.04594353912398219,-0.0008306168019771576,0.12239793688058853,-0.6324266334995627,0.11534177092835307,-0.07425370160490274,-0.4116054247133434,0.04307274892926216,0.09666989929974079,-0.8871632409282029,0.18834957759827375,0.5327367633581161,-0.6044615576975048,0.3458995255641639,0.7035667249001563,-0.29135830141603947,0.5164546980522573,-0.9183300556614995,0.04637234192341566,0.98936702683568,0.7633438389748335,0.008546320255845785,0.8157175648957491,-0.715398482978344,0.12331047561019659,-0.2861853213980794,-0.7455027787946165,0.5120027842931449,0.9693825789727271,0.6682550115510821,0.07553570717573166,0.38287994591519237,-0.6042151432484388,-0.04388036718592048,0.6258136727847159,-0.2379178204573691,-0.3005428393371403,0.18607533117756248,0.06491337949410081,-0.9888656348921359,0.8615403310395777,-0.2769038239493966,-0.3916850765235722,-0.3192719998769462,-0.3412839835509658,0.45096523268148303,0.950334093067795,-0.09032832458615303,-0.8819809979759157,-0.8261954113841057,0.21237869933247566,-0.9931841194629669,0.5471151522360742,0.9272607089951634,0.9931736285798252,-0.3413433190435171,-0.5835955888032913,-0.20859706215560436,0.08804096467792988,-0.8565841154195368,0.5797077897004783,0.5947969281114638,0.9739903365261853,-0.14103460917249322,-0.8233606605790555,0.4551923405379057,0.5822731745429337,0.6713423323817551,-0.6459741271100938,0.10790843423455954,0.07823462691158056,-0.19476498011499643,-0.9834213992580771,-0.7470774645917118,-0.01337339449673891,0.8151955720968544,-0.5476185982115567,0.19273823034018278,-0.6838980484753847,0.5151359480805695,0.523638320621103,0.8412675615400076,-0.9061392531730235,-0.6528463321737945,0.3047624393366277,0.9869685806334019,-0.33918434008955956,0.0710583464242518,0.8926907330751419,-0.8660022332333028,-0.33530691219493747,-0.9051000168547034,-0.37614117888733745,-0.4169354476034641,-0.8061764081940055,-0.26747123384848237,0.7036069952882826,-0.3088572062551975,-0.6122922259382904,-0.19976749271154404,-0.16917117917910218,0.6159719922579825,0.44672893919050694,0.1200335812754929,-0.7889666319824755,0.5676908162422478,0.8257259386591613,0.2984487903304398,-0.17751650605350733,0.6830740352161229,-0.22810268308967352,0.023073294200003147,-0.3056596461683512,-0.0452730655670166,-0.18749550823122263,0.4450635532848537,0.7577633401378989,-0.9118155557662249,0.6543643935583532,0.6285476102493703,-0.4556674933992326,-0.10874959174543619,-0.5737064136192203,0.10410686861723661,0.8169459975324571,0.042734351474791765,-0.38691467558965087,0.9794288016855717,-0.8383376081474125,0.22683247551321983,0.22458850126713514,0.0346493199467659,-0.49614572525024414,-0.8603225070983171,0.856578974518925,0.9386291280388832,-0.693334155716002,-0.3083393801935017,0.10821360861882567,0.5107558243907988,0.8328046882525086,-0.10054342029616237,-0.5513552990742028,0.7802059003151953,0.7397110727615654,-0.6631351592950523,0.45444018533453345,-0.21233016019687057,-0.07714865589514375,0.1863868273794651,0.07170904334634542,-0.25076609943062067,0.3609771188348532,-0.5514031113125384,-0.8152899350970984,0.42342097125947475,-0.2037908025085926,0.5273878462612629,0.25931506464257836,-0.13973125210031867,0.9040464018471539,-0.8915863218717277,-0.6623722580261528,-0.7508513256907463,-0.3450785023160279,-0.9300559493713081,-0.05666767759248614,-0.8372653932310641,-0.4237939636223018,0.9942314368672669,-0.891660125926137,-0.9600329124368727,0.6403751149773598,0.5877061588689685,0.3659432092681527,0.530303112231195,0.1860138475894928,0.4623269820585847,-0.9997941199690104,-0.8853290593251586,0.7829338661395013,0.004800219554454088,0.24117307690903544,0.5806568693369627,0.6931312130764127,0.19628875888884068,0.3533796174451709,0.6710182400420308,0.7459226506762207,0.5729757165536284,-0.4765012008138001,0.529208708088845,-0.6103983465582132,0.9962213402613997,-0.09060987969860435,-0.9269819362089038,-0.9868404464796185,0.44818857870996,-0.2801796798594296,0.006205920595675707,-0.5468678385950625,0.8368436279706657,0.5497094443999231,-0.5626034559682012,-0.6348653617314994,-0.9912926605902612,-0.8468983834609389,0.5491129523143172,-0.7948801736347377,-0.4076006831601262,0.6880597393028438,-0.14786802092567086,0.8820146410726011,0.6979865310713649,0.5591277298517525,-0.05888511473312974,0.9455441567115486,-0.3554914095439017,-0.5673155030235648,-0.3980458197183907,0.3310381113551557,0.6624822528101504,0.5544300777837634,-0.9785196594893932,-0.6847275788895786,-0.4804335399530828,0.8294896809384227,0.19319708878174424,0.7777780732139945,-0.6517842351458967,-0.24371237587183714,-0.8827792820520699,0.5019868537783623,-0.9752532453276217,0.9281427976675332,0.850166586227715,0.14565421780571342,-0.15164972702041268,-0.012925568502396345,0.2180797317996621,0.4886465552262962,0.08676875801756978,0.4129271782003343,0.4981961022131145,0.18259865138679743,0.4235154241323471,0.9055424989201128,-0.17826496809720993,-0.6386158517561853,-0.46795204374939203,-0.6262255609035492,0.9624063209630549,0.27087509306147695,-0.19578147120773792,-0.3491080114617944,0.26919417921453714,0.978961827699095,-0.46129692578688264,0.05729106767103076,-0.7161801238544285,0.6026929910294712,0.6345783872529864,-0.8884464995935559,0.3422940573655069,0.6909955539740622,-0.6552750496193767,0.8676205324009061,0.11100476793944836,-0.03000287665054202,-0.09691580897197127,-0.819834107067436,-0.16756718093529344,0.4311564094386995,0.9809774234890938,-0.7015722398646176,-0.6203043172135949,0.7479522181674838,0.16402666363865137,0.988607732579112,-0.6722466945648193,0.5526168970391154,0.7614985187537968,0.8630774705670774,-0.209576026070863,0.11052603041753173,0.9213941739872098,0.14841515431180596,-0.6534995390102267,0.771185808815062,-0.5440707430243492,-0.17657919134944677,-0.3594529633410275,-0.4191223201341927,0.6411769860424101,-0.40970760956406593,-0.1934456704184413,-0.30027986876666546,0.4909125757403672,0.7723415861837566,0.40224343491718173,0.38307150918990374,-0.3312137071043253,-0.7666135639883578,0.15225232858210802,-0.10496976925060153,-0.8706838893704116,0.4389173430390656,-0.28615901060402393,0.5386071433313191,-0.43456550780683756,0.8361529787071049,0.35607572877779603,0.5494002937339246,0.8051086943596601,0.42595171369612217,0.30107473069801927,-0.32802345883101225,-0.8198328004218638,0.007772543933242559,0.4825950241647661,0.7741810181178153,0.7259912937879562,0.3453129748813808,-0.47693057358264923,0.8103673858568072,0.5259870984591544,-0.7093386971391737,-0.9191962638869882,0.8169580288231373,-0.351855899207294,0.0012290212325751781,0.030970607418566942,-0.0314371595159173,0.10718188574537635,0.9964236705563962,-0.9235220649279654,-0.7148164096288383,-0.5603814399801195,0.1603968390263617,0.37163839722052217,-0.5505902813747525,0.7672653356567025,-0.40308655239641666,0.9117665435187519,-0.2642430355772376,-0.6064356765709817,0.7601573169231415,0.8447172036394477,0.2154119429178536,-0.3155641504563391,0.645667776465416,-0.18991892552003264,0.06967071024700999,0.6286918367259204,0.5746200270950794,-0.3365167696028948,0.2591793732717633,0.10871863598003983,-0.6548354323022068,0.8278273674659431,-0.6926927692256868,-0.027752821799367666,0.8585482812486589,-0.1600783164612949,0.6399903949350119,0.5036873533390462,0.16345486231148243,-0.39079670840874314,-0.6826414605602622,0.5067999642342329,-0.09121093293651938,-0.7858597291633487,-0.28030161978676915,-0.43109610537067056,-0.238170325756073,-0.052002690732479095,-0.7868408104404807,-0.5371318641118705,-0.8451841273345053,-0.9364364487119019,-0.11102259252220392,0.1769542214460671,0.24056912818923593,-0.10818452946841717,-0.15319159999489784,-0.03852186305448413,-0.8493891865946352,0.9899061936885118,-0.40393151342868805,-0.6394162797369063,-0.44542973255738616,0.5754265529103577,-0.7007502685301006,-0.8652821332216263,-0.9301403062418103,-0.29289331566542387,0.23340738844126463,-0.04554726695641875,0.9120975099503994,0.44424022641032934,-0.7445749663747847,-0.6074300459586084,-0.49747132789343596,0.3876123409718275,0.8327988195233047,-0.5089635164476931,-0.5640707034617662,0.14378515863791108,0.1347111682407558,-0.477656957693398,0.9153419374488294,-0.2633016933687031,0.021783222444355488,-0.38527408661320806,0.3567148200236261,-0.6187773770652711,0.4269483210518956,0.9052811292931437,-0.26476141065359116,0.6591945602558553,-0.9588813963346183,-0.3348155179992318,0.04072749521583319,-0.6014235015027225,0.6027231854386628,0.17939317924901843,-0.88341353693977,0.7961457734927535,-0.9008814948610961,0.8414056762121618,0.8951643700711429,-0.23844927828758955,-0.5877982904203236,0.7135620168410242,0.03642150713130832,0.41093543637543917,0.11199398012831807,0.054858554154634476,0.6167377009987831,-0.08805239573121071,-0.08614277839660645,0.7385926996357739,0.1259330054745078,0.3104752884246409,-0.0039441511034965515,0.8921323269605637,-0.28127044485881925,0.3171726348809898,0.8078107023611665,-0.06794637022539973,0.940133957657963,-0.9552206043154001,0.26286498876288533,-0.6470171492546797,0.494342855643481,-0.10997324250638485,0.4084813562221825,0.391757445409894,-0.9604389239102602,0.47898969193920493,0.11032864591106772,-0.09780414402484894,-0.018413844518363476,-0.043418983928859234,0.4169787443242967,0.6589472959749401,0.6747852573171258,-0.8379095704294741,-0.4782575494609773,-0.1620116215199232,-0.879789702128619,0.7384391333907843,-0.362349349539727,-0.028738772962242365,0.4465928287245333,0.5409419918432832,0.016603110823780298,-0.49316379614174366,0.5670542549341917,0.5250348751433194,0.5408684918656945,0.5903527624905109,-0.8567521488294005,0.2529721511527896,0.21140604931861162,0.9659135001711547,0.6806813930161297,0.26649588206782937,-0.2545855729840696,-0.9579205675981939,0.731441586278379,-0.19375413795933127,-0.4118293025530875,-0.305755618494004,0.15317618940025568,-0.6163055300712585,-0.5884242281317711,-0.8548794290982187,-0.6394211733713746,-0.6449965788051486,-0.1188165070489049,0.9691713973879814,0.34377306094393134,0.25054083950817585,-0.952312957495451,0.20885717077180743,-0.7256889929994941,0.7916592545807362,-0.7046919674612582,0.844161874614656,-0.7670814204029739,0.9602097026072443,0.93954146374017,0.9476202726364136,0.9563796063885093,0.8652229639701545,-0.028075610753148794,-0.5221414533443749,-0.5583064095117152,0.33758418494835496,-0.5927928346209228,-0.878159393556416,-0.7955871573649347,0.9542937031947076,-0.3390862951055169,-0.26065436704084277,0.23309749830514193,0.8750337031669915,-0.9699128782376647,0.38292691158130765,-0.8190405080094934,-0.8424283773638308,0.8417710419744253,-0.6700293947942555,-0.6169654661789536,0.24341537803411484,-0.20384996617212892,0.05687676277011633,-0.4343420919030905,0.00771492812782526,0.2877430566586554,-0.8884418443776667,-0.9227477326057851,-0.7199277374893427,-0.9964898834004998,0.17796059092506766,0.6940784505568445,-0.424805065151304,-0.7797509925439954,-0.28516112361103296,0.6083175609819591,0.35483770724385977,-0.688909079413861,0.5638739429414272,-0.10306055983528495,-0.8100260715000331,-0.22507188143208623,-0.526215048506856,0.39081426011398435,0.34183269739151,-0.5907310876064003,-0.4078090526163578,-0.19371305406093597,0.9671567692421377,-0.8058451791293919,0.09246562235057354,-0.6378982807509601,-0.8666515327058733,-0.47038664435967803,0.06175707187503576,-0.287423481233418,-0.5163259436376393,0.5329017983749509,0.036947229877114296,-0.8587733618915081,0.279646550770849,-0.8764945175498724,0.21112582692876458,0.1213685511611402,-0.40519628720358014,-0.3854263494722545,-0.8658411926589906,-0.9496648660860956,0.8775970726273954,0.3268090677447617,-0.7848503687418997,-0.8730864361859858,0.5584906842559576,0.2130010286346078,0.11694433959200978,0.7034352882765234,0.8312380835413933,-0.6939032133668661,-0.5488360170274973,0.32817620784044266,0.23226577695459127,0.9801316419616342,0.2972733131609857,0.6202906090766191,0.6504133986309171,-0.07305942010134459,0.26230150600895286,0.916127691976726,-0.12829150119796395,-0.1891309884376824,0.10615979367867112,-0.14843785762786865,-0.833041476085782,-0.8038388835266232,-0.8969231182709336,0.01577471662312746,-0.9892819230444729,-0.2693702084943652,-0.9600730366073549,-0.016980156768113375,0.18441274762153625,0.7876840024255216,-0.6319946795701981,-0.32914643082767725,-0.1718867770396173,0.3536522281356156,0.4563786732032895,0.6278034686110914,-0.7999234357848763,0.48367422772571445,0.5641063526272774,0.9269432192668319,0.4161532982252538,0.9336420195177197,0.9011089662089944,0.7510926178656518,-0.9092224561609328,-0.0745304231531918,0.7413022513501346,0.8186839893460274,-0.6190806301310658,-0.8524440438486636,0.40768047887831926,-0.5038438523188233,-0.39644341729581356,0.8938219537958503,-0.2836748557165265,-0.1723992065526545,0.2517189420759678,0.48991069197654724,0.040760413743555546,-0.3972014603205025,0.6721397759392858,-0.43783176178112626,0.8493568925186992,0.9348172363825142,0.30905155977234244,-0.49922948610037565,-0.7887054602615535,-0.14862608071416616,-0.775707894936204,-0.8631614330224693,0.43724007345736027,0.34446691861376166,-0.003624566365033388,0.8004728271625936,0.7616618787869811,0.8958882219158113,-0.44524723663926125,-0.6417639176361263,-0.6211240282282233,-0.26822905568405986,0.7074713236652315,-0.9835358704440296,0.6511114398017526,-0.24424380622804165,0.40258121583610773,-0.015121566597372293,0.7014290476217866,0.7129490212537348,0.5170529070310295,-0.2866486134007573,-0.6377814435400069,0.5037722485139966,0.6639285027049482,0.9606808829121292,-0.52031707810238,0.2674932461231947,-0.5764008625410497,-0.20001395884901285,-0.5279758735559881,0.03803231520578265,0.7907487549819052,0.1844094842672348,-0.4026133860461414,-0.9926520818844438,-0.3566412408836186,-0.9915848667733371,-0.18197861034423113,0.00800631195306778,-0.3617308749817312,0.8255941113457084,0.5741534731350839,0.31678010476753116,0.0063390894792973995,0.18450811970978975,0.9034987408667803,0.36418463941663504,-0.9969889866188169,-0.561075032223016,0.018762341234833002,-0.9259067759849131,-0.8579787029884756,-0.4042807328514755,0.4960796204395592,0.3063559695146978,0.292396972887218,-0.30956737184897065,0.8218835373409092,-0.12264227494597435,-0.5281475982628763,-0.5924596874974668,-0.4399740621447563,-0.8454395355656743,-0.17039833450689912,0.140389712061733,0.2328908327035606,0.051866595167666674,-0.2696288633160293,0.3493538601323962,0.17855725577101111,0.6656228080391884,0.5700433510355651,0.3195505877956748,-0.23548562731593847,0.9219670030288398,0.16445555025711656,0.5628726715222001,-0.9494443689472973,-0.12317201681435108,-0.8973439326509833,0.9908519806340337,0.7895889799110591,-0.7930726786144078,0.5691143469884992,-0.9620161573402584,-0.7498213551007211,0.19020102825015783,0.06008036294952035,-0.7808599839918315,0.9257840858772397,-0.5410191044211388,-0.7030036146752536,-0.7187660690397024,-0.552344212308526,-0.0046821823343634605,0.328214131295681,-0.934936152305454,-0.6230030050501227,-0.2732343035750091,0.422155287116766,-0.47879661386832595,0.6236221888102591,0.4201843240298331,-0.29096785048022866,-0.542312815785408,-0.4122437322512269,0.0034867525100708008,-0.1404377087019384,-0.7623157240450382,-0.14288913132622838,-0.7944318861700594,0.4607928595505655,0.39253914169967175,-0.4465733813121915,-0.35172419948503375,-0.22548559308052063,-0.6935299090109766,-0.9603861314244568,0.43046139599755406,0.7342163627035916,0.9463850148022175,-0.8360472382046282,-0.0445709521882236,0.7448365734890103,0.9836391406133771,-0.8086729762144387,-0.44231911236420274,-0.33866474498063326,-0.17563767218962312,0.44402351416647434,0.07735152589157224,-0.8218538756482303,0.915499962400645,0.048685481771826744,0.5036492082290351,0.13915388425812125,-0.9178305142559111,0.3375532412901521,-0.04673808254301548,0.606485724914819,0.5193506376817822,-0.505622920114547,-0.5123721524141729,0.234659634064883,-0.36500024795532227,0.9896906288340688,-0.1493364511989057,-0.5484276372008026,-0.8782826336100698,0.9327731360681355,-0.20800512749701738,0.981232684571296,-0.7529654838144779,-0.9940680786967278,0.5188697967678308,0.2415206842124462,0.024287715554237366,-0.9835846088826656,-0.13822899293154478,0.07688267668709159,-0.16596992406994104,-0.7484278008341789,-0.7656974499113858,-0.12578436313197017,-0.07557365298271179,-0.23143653897568583,0.1944825374521315,0.1059990911744535,0.10816616471856833,-0.9158533634617925,0.20456331549212337,0.15456467773765326,-0.0746303228661418,-0.7355472045019269,-0.6585150551982224,-0.1715893722139299,-0.9196838391944766,0.8829761990346014,0.3823650754056871,-0.9230165765620768,-0.4974373523145914,-0.39368564216420054,0.050998044200241566,-0.19847513129934669,-0.3097884808667004,0.3749300525523722,-0.07169471122324467,-0.46592491306364536,0.7500577154569328,-0.1413780120201409,-0.43339203856885433,-0.07555496320128441,0.696229312568903,0.22270281706005335,-0.9923368562012911,-0.2814447907730937,-0.4805333544500172,-0.03440325893461704,0.4410982704721391,-0.17923260666429996,0.33086138730868697,0.15477064112201333,0.22400994319468737,0.8582478766329587,0.27622071374207735,0.7599918418563902,-0.21717702178284526,0.3217145539820194,-0.6870123511180282,0.6551816845312715,-0.017292675096541643,-0.2296849642880261,-0.5474947327747941,-0.7123600314371288,-0.8482470246963203,-0.7595073962584138,-0.11673582857474685,-0.939585558604449,-0.25753466691821814,-0.24650359619408846,-0.19331861473619938,0.7073736605234444,-0.8818491050042212,0.6823427169583738,0.8123640748672187,0.1628451137803495,-0.7884573698975146,0.14047581749036908,-0.7214631694369018,-0.1431021369062364,0.8874573279172182,0.34676756942644715,-0.08851461997255683,0.66224355250597,-0.020394726656377316,-0.4294176083058119,-0.06820425391197205,-0.021414075046777725,0.6779960542917252,0.9268546234816313,0.2324208365753293,0.6825354103930295,0.27020788798108697,-0.4537409283220768,-0.2480685105547309,0.5937843043357134,0.7424468635581434,-0.1943577011115849,-0.49636067263782024,0.12818858306854963,0.3859737920574844,-0.17800610233098269,0.9433346344158053,-0.2790036923252046,-0.19959641667082906,-0.318914582952857,0.21606591437011957,0.4677898841910064,-0.9464249284937978,0.6033856486901641,0.6347730308771133,0.6730460789985955,0.5525101278908551,0.08599164104089141,0.4694093861617148,0.524248662404716,-0.9935698350891471,-0.07689725887030363,0.8053818489424884,-0.8038446032442153,0.5679924464784563,-0.3899578503333032,0.8549760696478188,-0.6059999978169799,-0.07176818838343024,0.10923422500491142,0.9442310864105821,-0.8485908205620944,-0.6315613738261163,0.397816794924438,0.3507256335578859,-0.2759802332147956,-0.0430924566462636,0.17223126953467727,0.8167693135328591,-0.13430575793609023,-0.7733103381469846,0.46531061735004187,0.07674814015626907,-0.27986234426498413,-0.0908708949573338,-0.9995151371695101,0.948281039018184,0.32968956185504794,0.24819629220291972,-0.5312992460094392,0.03850720310583711,-0.886758609674871,0.057559691835194826,-0.9968362399376929,0.4485359247773886,-0.2879160181619227,0.4790710317902267,-0.7477775136940181,0.19905417133122683,-0.31411795038729906,-0.6574129862710834,0.20393686927855015,-0.5151968132704496,-0.6155613497830927,-0.15781666059046984,-0.09087279671803117,-0.4535228149034083,0.8743814760819077,-0.15680181700736284,0.40607639076188207,-0.538051881827414,-0.7759066405706108,0.9733632332645357,-0.0768848224543035,0.2563689057715237,-0.5096920914947987,-0.4136449806392193,0.7573414081707597,0.6222434570081532,-0.753268311265856,-0.15775578888133168,-0.11989112105220556,-0.6767750908620656,0.4835123741067946,0.8200579741969705,-0.5084675308316946,-0.07254972215741873,0.2925859270617366,-0.5223031854256988,-0.500272429548204,-0.2855314426124096,-0.5506306276656687,-0.3066676026210189,-0.23564362665638328,-0.6446184432134032,-0.6755210403352976,0.012195337563753128,-0.20189271122217178,-0.8516729124821723,-0.45824106968939304,0.12036698590964079,-0.7631900822743773,-0.662376070395112,-0.2092583649791777,-0.9728129054419696,-0.06881430419161916,0.699473942629993,-0.11232850281521678,-0.2245145603083074,-0.5610350486822426,-0.5357931815087795,0.7136094910092652,0.2001318377442658,-0.5726341027766466,0.2650401210412383,0.41916370764374733,-0.3331936043687165,0.9809285053052008,-0.44681113632395864,-0.7273701052181423,0.21404478140175343,-0.002549390308558941,-0.16414652345702052,0.5541037153452635,0.4301749700680375,-0.4050700990483165,-0.18867585342377424,-0.34945736080408096,-0.05070728762075305,0.36121160676702857,-0.35633914452046156,0.6393020157702267,0.562274175696075,-0.9979717489331961,-0.0645438926294446,-0.8984114076010883,-0.28597261058166623,0.5457824300974607,0.915927967056632,0.9019132275134325,0.11931170430034399,-0.3403341555967927,0.32373835192993283,0.4356879615224898,-0.704336951021105,0.7840639888308942,0.7919705994427204,0.9525227909907699,0.491631883662194,0.15343073988333344,-0.3691982366144657,0.5219340170733631,-0.9875743198208511,-0.7887937873601913,-0.6244746753945947,0.10911359963938594,-0.9040460428223014,-0.09803167404606938,-0.630654473323375,0.8915417096577585,0.26265643490478396,-0.9714733180589974,-0.3552246899344027,0.2307764245197177,-0.05106678931042552,0.2854850706644356,0.8088879287242889,0.800540491938591,0.4843074297532439,0.792195612564683,0.2658535339869559,-0.038501851726323366,-0.5516870156861842,0.9825381608679891,-0.1930859461426735,-0.33829454192891717,0.20384368486702442,-0.8270205981098115,-0.3213489786721766,0.5805173688568175,-0.5941431527025998,0.9677401813678443,-0.23148790374398232,0.2945398623123765,0.9564296626485884,-0.4219206040725112,-0.45712972385808825,0.7606269833631814,-0.7801905837841332,0.05452440120279789,0.90279845520854,0.8994165016338229,0.5304294959641993,0.0723998392932117,-0.9846443305723369,-0.23240101849660277,-0.5489950436167419,0.4637799318879843,0.18240993469953537,-0.8249010504223406,-0.2774213347584009,-0.31789761781692505,0.5337513638660312,0.3304278375580907,0.5481245475821197,-0.22472108760848641,-0.8883891929872334,0.2590025346726179,0.63095300225541,0.8889198927208781,0.7550306767225266,0.9319303068332374,-0.05364615470170975,0.750138274859637,-0.026296643540263176,-0.11661759577691555,-0.5507920007221401,0.9409625753760338,0.2733441130258143,-0.3356850924901664,-0.4280565953813493,-0.5406241454184055,0.17538554687052965,0.6410334706306458,0.4959821351803839,-0.21809014026075602,0.8680102601647377,-0.4276725873351097,-0.33204667875543237,-0.6742031867615879,-0.8835948947817087,0.6799516407772899,-0.34499847143888474,-0.05604696227237582,-0.6762000271119177,0.41703438106924295,-0.44242207426577806,-0.9376480714417994,0.41646343283355236,-0.05281619122251868,0.17199336551129818,0.15545597951859236,0.8017797768115997,-0.5066118887625635,0.3963604918681085,-0.21857544966042042,-0.5265177548862994,-0.42042108392342925,-0.9436619346961379,-0.25797697389498353,0.6034749369136989,0.07315573561936617,0.31707495357841253,-0.262991723138839,0.29710964346304536,0.19698233297094703,-0.5750885279849172,-0.9730749330483377,0.9815924409776926,0.46293269703164697,-0.5258317752741277,0.405747277662158,-0.61353620281443,0.6913884459063411,0.2764286077581346,0.12218448938801885,-0.58742750948295,-0.5545663675293326,0.3345667324028909,-0.7973717860877514,0.09047525282949209,0.5469156298786402,0.7213727822527289,-0.5741702099330723,-0.07423202367499471,0.43113933596760035,0.6488521997816861,-0.9253886281512678,0.10448749689385295,-0.8009639144875109,0.023117335978895426,-0.3215829133987427,0.2638037749566138,-0.34254877222701907,-0.9863298037089407,0.30641424702480435,0.1401163642294705,0.15903819538652897,-0.08301650825887918,0.47136191418394446,-0.029619213193655014,0.9180693100206554,-0.25984247913584113,0.5147838448174298,0.6543465540744364,0.08557622600346804,-0.11106380820274353,-0.7237757793627679,-0.9201073315925896,0.7980750924907625,-0.6460375944152474,-0.06923311576247215,0.0017090127803385258,0.14259019074961543,0.04922093125060201,-0.11124681122601032,-0.8033154024742544,0.3622220722027123,0.8116532852873206,-0.757735779043287,-0.41096026450395584,0.32839341927319765,-0.5361944283358753,-0.5455263024196029,0.9811010356061161,0.8286654548719525,0.11967061134055257,-0.35501055093482137,0.44061181182041764,0.7488215598277748,-0.1801570300012827,-0.7238781866617501,-0.24059442151337862,-0.6878142165951431,-0.40224526822566986,-0.17448592139407992,0.045027697924524546,-0.8819629005156457,0.3213731572031975,-0.18274845788255334,0.5622469033114612,0.2880242164246738,0.982476472388953,0.41697535617277026,-0.9968305313959718,0.6915836585685611,-0.08718027174472809,0.4379130615852773,0.3581019784323871,-0.7752571417950094,-0.6111747203394771,0.8204310121946037,0.28909244341775775,-0.1326881144195795,0.28674383368343115,0.7446977128274739,-0.5380017631687224,-0.27577710803598166,-0.8140434618107975,0.5377098568715155,0.49599639512598515,0.6347021721303463,0.5413033454678953,-0.5554750026203692,-0.14723304798826575,0.029065649025142193,0.9189051105640829,-0.01698044640943408,-0.9567232141271234,-0.06509859068319201,-0.450471309479326,-0.971911511849612,-0.187614600174129,0.5239599226042628,0.5460836957208812,0.9093770040199161,-0.02861043345183134,-0.12761646462604403,-0.9249627953395247,-0.14172322349622846,-0.9874739423394203,-0.036535583436489105,0.5170576274394989,0.03964196005836129,-0.4102438287809491,-0.9093474731780589,0.9300097092054784,-0.5890966011211276,-0.9123938814736903,0.6659327303059399,0.5575298774056137,-0.9857583357952535,-0.10170952416956425,0.07339649926871061,-0.17964764591306448,0.10872330982238054,0.5277122603729367,0.5500909797847271,-0.9439729955047369,0.8087692824192345,0.28924904484301805,-0.12471453053876758,0.6586397239007056,0.5448866542428732,0.6731466446071863,-0.9951581698842347,-0.40492921648547053,-0.5863406108692288,0.5702647217549384,-0.1587948463857174,0.5133571922779083,-0.27530031464993954,-0.5626337509602308,-0.2875515422783792,-0.004213687498122454,-0.008220869582146406,-0.10057605942711234,-0.864131486043334,-0.48690079618245363,0.9373549367301166,0.7266786508262157,-0.0722439419478178,-0.4426582073792815,-0.030844539403915405,0.19473171513527632,0.29187792679294944,0.7768999640829861,0.703544438816607,-0.282347459346056,0.4107053051702678,0.3890996044501662,-0.17215499933809042,0.49686348950490355,0.7438359037041664,-0.33587890304625034,-0.14317435771226883,0.5868069976568222,-0.6404359918087721,-0.5623248592019081,0.9382485402747989,-0.2718087215907872,0.8237103242427111,-0.06521374313160777,-0.4704101583920419,0.8284120368771255,-0.16708971606567502,0.21444074204191566,-0.5102314492687583,0.7371526742354035,0.9777094991877675,0.5913179842755198,-0.28287491435185075,0.3075350373983383,0.2895847181789577,0.527713930234313,0.024855054914951324,0.349508345592767,-0.12466251105070114,0.008545935619622469,0.7629095418378711,0.04106008540838957,-0.744650284294039,0.028013000264763832,0.8980984990485013,0.5103333489969373,0.08427887363359332,-0.8750689653679729,-0.7792685749009252,-0.34112647036090493,-0.013090051244944334,0.8243458303622901,0.9931583264842629,-0.6563949743285775,0.9615732170641422,-0.8380761598236859,0.39623413933441043,-0.46283733332529664,0.2854003217071295,0.1666781734675169,-0.765314388088882,-0.12678741989657283,-0.9786464176140726,0.3112927544862032,0.2511064652353525,-0.6909584333188832,0.2550644394941628,0.4392783991061151,0.5071037015877664,0.1959574557840824,0.025155580136924982,-0.8460555570200086,-0.026928185485303402,0.8174926727078855,-0.5208974233828485,-0.8871780596673489,-0.8674228265881538,0.8830339182168245,-0.09352966165170074,-0.001776107121258974,0.6221415805630386,-0.3370249271392822,0.8114727600477636,-0.7862350684590638,-0.6303561027161777,0.7530052866786718,0.680498962290585,0.9621813190169632,0.6283371667377651,-0.20251891249790788,0.7408326580189168,-0.7954397313296795,0.5246434006839991,-0.5001448290422559,-0.8231092235073447,-0.23066481854766607,0.31737037003040314,-0.3367353440262377,0.544941651634872,-0.5732858232222497,-0.8485231450758874,0.38051465759053826,0.41580014023929834,-0.5406891796737909,0.6801692289300263,-0.4858208163641393,-0.01875748671591282,0.10909010050818324,-0.4926886223256588,-0.6565316137857735,-0.7822382259182632,-0.7074193200096488,0.9439382697455585,0.1665391568094492,-0.8171940958127379,-0.48526480002328753,-0.49751779343932867,0.6976541671901941,0.16569521557539701,0.7507759369909763,-0.2881557368673384,0.2160714422352612,0.28967344481498003,-0.05041083274409175,0.5664654313586652,-0.2596937767229974,-0.7440992365591228,-0.46010737400501966,-0.2817662754096091,0.3574780160561204,0.8356339302845299,-0.31079531693831086,-0.39122929656878114,-0.843734189402312,0.6667380388826132,-0.3389034168794751,0.3389289570041001,-0.32326648104935884,0.16576626850292087,0.5648779566399753,-0.12291126418858767,0.7545046773739159,-0.2677607825025916,-0.26495065819472075,0.3614536039531231,0.5805229200050235,0.018366222269833088,-0.11312771402299404,0.3046944309026003,0.5836417176760733,-0.2480149334296584,-0.12653153017163277,0.9936358681879938,0.9158737789839506,-0.5418176120147109,-0.5680599370971322,0.23495831666514277,0.8076325906440616,0.6867594174109399,0.4844967480748892,0.3683494324795902,0.2521871170029044,0.3586063622497022,-0.1698815538547933,0.6846043127588928,-0.026445784606039524,-0.2557804398238659,0.6797459102235734,-0.4772163424640894,-0.473267191555351,0.4641729989089072,0.15155942738056183,-0.4641846502199769,-0.9377046744339168,0.6580959553830326,0.23456538608297706,-0.7978072012774646,-0.4330824236385524,0.8448558310046792,0.55754479393363,0.564545149449259,0.053945962339639664,-0.24620311707258224,0.26374041149392724,0.41432894207537174,0.41698797745630145,-0.04408152122050524,-0.3715871861204505,0.1940050907433033,0.5498129255138338,-0.9996482939459383,0.8458711779676378,-0.014442072715610266,-0.375196972861886,-0.03654101165011525,0.24047086155042052,0.6234348211437464,-0.706175958737731,0.1946670664474368,-0.9336855225265026,0.04368021944537759,-0.7276884000748396,-0.3992642052471638,0.172850688919425,-0.9602443743497133,-0.8796865688636899,-0.1254853610880673,-0.6146567920222878,0.43682719953358173,-0.47203114489093423,0.555266878567636,0.5577215980738401,0.5284597165882587,0.029545062221586704,-0.9917989242821932,-0.6756930090487003,0.3759191953577101,0.4197392291389406,0.27903814520686865,0.7781091397628188,-0.04656134871765971,0.7949726209044456,-0.968557087238878,-0.12086056638509035,-0.11130597395822406,0.38361858716234565,0.8556706639938056,-0.7845419580116868,-0.38594516972079873,-0.5720205884426832,0.7811816441826522,-0.4695616620592773,0.22772802039980888,-0.5374486362561584,-0.835950038395822,-0.5389115498401225,-0.04181124037131667,0.5442766877822578,-0.9563079471699893,0.513219649437815,0.6710588475689292,-0.6877463697455823,-0.23740813322365284,0.8466828223317862,0.4306067666038871,-0.017120552714914083,-0.2933607609011233,0.34365443140268326,-0.14191033644601703,-0.7118303594179451,0.025523925665766,-0.9953148635104299,0.08619493478909135,-0.7144941361621022,-0.5083603039383888,-0.9548767767846584,0.7139504202641547,-0.39113137405365705,0.5841075233183801,0.21490035904571414,0.0009414223022758961,0.5771468156017363,-0.9630748932249844,-0.1921502472832799,0.5199634050950408,0.24149553943425417,0.2526739863678813,0.7073175027035177,0.152872524689883,-0.46084056701511145,-0.4271345268934965,0.5385520523414016,0.47196578187868,-0.11690488457679749,-0.42568964837118983,0.8234724448993802,0.8091903389431536,-0.8882134589366615,-0.9548275554552674,0.2156494753435254,-0.5981852803379297,0.823206715285778,0.4912933576852083,0.09917822387069464,-0.2732375143095851,0.9466504245065153,-0.9771481459029019,-0.2802909780293703,-0.06267741369083524,0.48382025212049484,-0.2020053919404745,-0.22146929195150733,-0.4060223354026675,-0.5284401560202241,0.3071612720377743,-0.08441686537116766,-0.8904566392302513,0.9680798258632421,-0.9042638684622943,0.029307196848094463,-0.38411617325618863,0.5001691533252597,0.90071608312428,0.5710319955833256,-0.15979131450876594,0.9270173194818199,-0.2003268119879067,-0.46456554532051086,-0.718836831394583,-0.4757793080061674,0.9527317872270942,0.6723957527428865,-0.6638934365473688,0.529448255430907,0.04304370982572436,-0.8901590844616294,0.3249013344757259,0.8257547519169748,0.05662775132805109,-0.9764895024709404,-0.9287578826770186,0.6176205049268901,-0.5875034905038774,0.12009843857958913,0.3086101063527167,-0.5278249536640942,-0.8325796793214977,-0.743970095179975,-0.2130678202956915,-0.27132349787279963,0.18062820145860314,-0.006122526712715626,-0.696530123706907,-0.6654728595167398,0.8591541014611721,0.7819051258265972,0.5776724144816399,-0.7795282793231308,0.18851072248071432,0.04085052292793989,-0.6705841748043895,-0.002100919373333454,-0.4947900269180536,0.9496186799369752,-0.14443761250004172,-0.22093557193875313,-0.6439763521775603,-0.20549879549071193,0.9317767512984574,-0.7583379638381302,0.4269499322399497,0.3656757799908519,-0.8603675975464284,-0.7101672790013254,0.0794817223213613,-0.0161269698292017,-0.4279943178407848,-0.42189791006967425,-0.29821660788729787,0.09414071030914783,-0.40202508540824056,-0.7837954284623265,0.293848080560565,-0.22319361474364996,0.6153379767201841,-0.6101991478353739,-0.728889302816242,-0.15133221773430705,0.2180257965810597,-0.7777771269902587,-0.23040605848655105,0.10331933293491602,-0.41017287503927946,0.10912599042057991,0.4613426486030221,0.674601218663156,-0.6729053785093129,0.17846764903515577,0.8266566339880228,0.06105584977194667,0.13522881036624312,0.277970417868346,0.016443295404314995,0.46664847573265433,-0.3825848922133446,-0.5141423414461315,-0.6841877633705735,0.7294602892361581,0.04754870291799307,-0.619139077141881,-0.4880823693238199,0.8188478015363216,-0.9911140506155789,-0.7434872328303754,-0.6971218381077051,-0.8344292379915714,0.9546094150282443,0.9990101787261665,0.4392229379154742,0.11999541008844972,0.02887648157775402,-0.6652405229397118,-0.7360517978668213,0.2303657685406506,0.40555915934965014,-0.2311243056319654,0.5734139364212751,-0.6260924208909273,0.2880476932041347,-0.008626516442745924,0.7151786363683641,0.16482200752943754,-0.4072384708561003,-0.2637078878469765,0.3656782675534487,0.5554441804997623,-0.35812718188390136,-0.4617731645703316,-0.904160974547267,0.9947026828303933,0.19917936716228724,-0.6536111747846007,0.514361007604748,-0.6383059774525464,-0.5213010031729937,0.6069967886433005,-0.006192502565681934,0.8592953193001449,0.46495181787759066,-0.5877684238366783,-0.7349225692451,-0.8284878106787801,0.6924809501506388,0.9417895199730992,0.2155299880541861,0.6972580468282104,0.43990823114290833,-0.13830926083028316,0.9698935733176768,0.05976133281365037,-0.8765341904945672,0.7194005544297397,0.36065015383064747,0.2692939415574074,-0.3044576710090041,-0.26769999880343676,0.7050809781067073,0.41860130382701755,0.8107329974882305,0.6481662704609334,0.501180877443403,-0.9649470923468471,0.18323772633448243,0.31149577628821135,0.23552122293040156,0.5659984280355275,-0.16624287655577064,-0.21290086535736918,0.40147313522174954,-0.37070776941254735,-0.07759721344336867,0.36819352908059955,-0.13833988178521395,-0.5155117916874588,0.3146919747814536,-0.6489121629856527,0.1994323469698429,-0.2492755395360291,0.04167935624718666,-0.8516430603340268,-0.3670697696506977,-0.5220218137837946,0.8225556435063481,-0.46074533089995384,-0.04007181152701378,-0.4894154383800924,0.4762350474484265,-0.6958970972336829,0.44096317514777184,0.6525018359534442,-0.2971707256510854,0.2695721974596381,-0.32401059893891215,0.6669967472553253,-0.8763257008977234,0.6394084496423602,-0.8701033061370254,-0.09798565926030278,-0.8855898468755186,0.21707952581346035,-0.1307628806680441,0.2950519286096096,-0.36910621309652925,0.3556525791063905,0.6819625026546419,-0.0524607696570456,0.4282690272666514,0.31677381321787834,-0.2518022325821221,0.32041775016114116,0.2875998951494694,-0.1410960666835308,0.9728098534978926,-0.49126615887507796,-0.02765072090551257,-0.3547767363488674,0.8838278143666685,-0.6715241498313844,0.36349779181182384,0.7292482927441597,-0.03532423451542854,-0.00146480742841959,-0.3859370774589479,0.20953256450593472,-0.45151812210679054,0.9071008618921041,-0.9397605895064771,-0.09050523303449154,0.47487379098311067,0.3429376343265176,0.955743748228997,-0.712282638065517,-0.6140788705088198,0.2514957394450903,-0.5545159955509007,0.5528229093179107,0.2543625049293041,-0.03969733463600278,-0.46034639701247215,-0.39822706719860435,-0.5433249608613551,-0.6698694592341781,-0.8594767916947603,-0.34926326340064406,0.7264239457435906,0.46185139939188957,-0.041924677323549986,0.8336855620145798,0.02073653368279338,-0.8092997744679451,0.10249162744730711,0.24334231484681368,-0.2077343976125121,-0.5129224248230457,-0.6467300015501678,0.061573261860758066,0.2647473942488432,-0.14532734965905547,-0.46386414486914873,0.11482181772589684,0.5302762701176107,-0.3723483136855066,-0.7531066467054188,-0.027412249706685543,0.7760941251181066,0.5917474189773202,-0.07489003287628293,-0.6307675880379975,-0.16599902277812362,-0.45721553126350045,-0.40519086131826043,-0.907925852574408,0.25934762647375464,0.6632701526395977,-0.5564903728663921,0.7946573081426322,-0.6993974749930203,0.9618671364150941,0.03346469393000007,0.020822303369641304,-0.12585854809731245,0.1288042664527893,0.6963217929005623,-0.7854832136072218,0.6156985675916076,0.9449624749831855,0.21026680851355195,0.9786901730112731,0.5112143526785076,-0.12245410354807973,-0.5203527705743909,0.0711251930333674,0.2978029935620725,-0.559605454094708,0.469539443962276,0.709286195691675,-0.3157000169157982,-0.710717991925776,-0.28481960389763117,0.08937743166461587,-0.77961145946756,0.20347388787195086,-0.5796284801326692,0.08914790907874703,-0.10075927106663585,-0.4348269868642092,0.8278416385874152,-0.6030644201673567,-0.08232182543724775,-0.05220842454582453,0.09589976537972689,-0.9962425217963755,0.3482452384196222,0.42472030129283667,-0.5663349623791873,-0.9477877612225711,0.5567923481576145,0.36861697444692254,0.7470064265653491,-0.7064815983176231,0.8726073284633458,-0.48594975052401423,0.15041919006034732,0.7268844707868993,0.8204190004616976,0.027292151004076004,0.4392343070358038,0.3267820440232754,-0.6013328731060028,-0.5631557805463672,-0.06589529709890485,0.6920853205956519,0.23737583635374904,-0.3403461715206504,0.8745740377344191,0.6687614689581096,-0.029853361193090677,0.09833543561398983,0.7721047666855156,0.9420866938307881,0.9654639842920005,-0.581691631115973,0.5374675495550036,-0.08775126235559583,0.7583029475063086,0.6995807695202529,0.9940503998659551,-0.9694008459337056,0.5884696780703962,-0.07937343791127205,-0.3103098445571959,-0.7549861934967339,-0.6431622998788953,0.10474661784246564,0.08167824242264032,0.2624323288910091,-0.18788328161463141,0.46965817734599113,0.538587186485529,-0.8207993013784289,-0.01940738596022129,-0.8911816128529608,-0.26596463192254305,0.31221817759796977,0.19039540365338326,-0.3823041426949203,-0.8659842847846448,0.036761374678462744,-0.542165492195636,0.31570068560540676,-0.37021268298849463,0.5819863514043391,0.930659148376435,0.007990355603396893,-0.8082621521316469,0.20468629291281104,-0.6289503085426986,-0.6695926054380834,0.13453910453245044,-0.7646260056644678,0.7831288957968354,0.41969567723572254,-0.6613222318701446,-0.006064488552510738,-0.05375280184671283,-0.5582630708813667,0.4769538468681276,0.42666173027828336,-0.6404889314435422,-0.4321733536198735,-0.7513562049716711,0.6420903806574643,0.8958582826890051,-0.746564953122288,-0.08214887138456106,0.6082470794208348,0.7225009175017476,-0.5974678206257522,-0.5716225230135024,0.940345314797014,0.807494911365211,0.7626902563497424,0.37038732320070267,0.24470664467662573,-0.6021298463456333,0.8910287264734507,-0.005079241469502449,0.02894692588597536,-0.9724492295645177,-0.862951104529202,0.5580850229598582,0.11526110023260117,-0.1706449487246573,-0.6021188432350755,-0.980581484735012,0.06462453352287412,-0.3524946947582066,-0.596678760368377,0.4806135781109333,0.703210515435785,-0.6755289700813591,0.15739691630005836,0.6801020065322518,-0.37280286755412817,0.1857020864263177,-0.4681409988552332,0.10614771489053965,-0.08007976179942489,0.9674889431335032,-0.6010566442273557,0.6834076615050435,-0.7691848091781139,-0.9759314097464085,-0.9613326000981033,-0.5356636610813439,-0.7099708495661616,0.9367462787777185,0.2376637770794332,-0.05251463782042265,0.7158236564137042,0.18509097024798393,-0.572806001175195,0.7195623405277729,0.5808651223778725,-0.007390601560473442,-0.40519588673487306,-0.9275626833550632,-0.07604291057214141,-0.8375771003775299,-0.9453489664010704,0.6592642669565976,0.5224935756996274,0.41977614955976605,-0.5943851391784847,-0.859148086514324,-0.24853366566821933,-0.21168887708336115,0.5262252166867256,0.6312101646326482,0.7866900148801506,0.8903359821997583,0.25812626304104924,0.6235456056892872,-0.8189360448159277,0.9389137243852019,0.8538360451348126,-0.02527962578460574,0.04426679201424122,0.7046820651739836,0.7281599990092218,0.05247812485322356,-0.5419233124703169,0.8231106544844806,-0.4464170504361391,-0.2606672253459692,0.6805881899781525,0.9450759426690638,0.31551138311624527,-0.1227096738293767,-0.07330804783850908,0.9251559595577419,0.13042259262874722,-0.2769342730753124,-0.1599773266352713,-0.20748167391866446,0.28164567425847054,-0.5114908246323466,-0.18710641330108047,0.8149105370976031,-0.5535714118741453,0.8393578478135169,-0.22692254185676575,0.3014526474289596,-0.5539716617204249,0.46989890979602933,0.834363142028451,-0.23957344889640808,0.7091658860445023,0.8853265400975943,0.6978831221349537,0.5118386866524816,-0.6869678623043001,0.3743565808981657,0.5883463630452752,0.17948375176638365,-0.11293557798489928,-0.3947268044576049,-0.8351310514844954,-0.3184520686045289,0.694701777305454,-0.7925916141830385,0.8714125943370163,-0.9561888338066638,-0.9041410288773477,0.9504252723418176,-0.0372112188488245,0.6628076126798987,-0.7814728557132185,0.9384828512556851,0.0038302657194435596,-0.6098387180827558,-0.26353757781907916,-0.9218323966488242,-0.9380015162751079,0.41677387710660696,-0.5187451909296215,-0.8350256457924843,0.7009398411028087,-0.5983005589805543,0.7858156384900212,0.7616957486607134,-0.36672770231962204,-0.847564599942416,0.8508234140463173,-0.39577971305698156,-0.2956934794783592,-0.992527490016073,-0.8385138744488358,0.27363502560183406,0.5738343009725213,0.3387301107868552,-0.9882307224906981,-0.09112521586939692,-0.23614460788667202,0.24780799122527242,-0.23659857641905546,0.2017429657280445,0.4308286141604185,-0.8587886597961187,-0.6572656845673919,0.00015668198466300964,-0.03395792469382286,0.7253225278109312,0.8716257605701685,-0.38910252088680863,-0.015582235995680094,0.8309621131047606,-0.37343014776706696,-0.9795625200495124,0.9421799960546196,0.984872592613101,-0.3253289768472314,-0.4095765855163336,0.5212923986837268,-0.20865054475143552,-0.6769141624681652,-0.12470011319965124,0.8928694296628237,0.25561387836933136,0.8018129970878363,0.23813365725800395,0.3924618037417531,0.28436156176030636,-0.0466911057010293,0.4021265101619065,-0.1476355344057083,-0.9096990353427827,-0.9218345358967781,0.2046017199754715,0.036134383641183376,0.8273295569233596,-0.12217647908255458,0.3842998156324029,-0.4294157982803881,-0.602959010284394,-0.017088386695832014,-0.9714361964724958,0.7534032613039017,0.24256910802796483,-0.3771801353432238,0.8547662030905485,-0.605452174320817,0.29202171275392175,0.5234635206870735,0.7209786516614258,0.9349199403077364,-0.921319262124598,0.38391171442344785,0.04696720838546753,0.7413265942595899,-0.1090091266669333,0.5947420452721417,-0.3957994934171438,0.3907107678242028,0.7691589081659913,0.7580396616831422,-0.8317447146400809,-0.23891237657517195,-0.9886106769554317,-0.4575802846811712,0.3855472397990525,0.6019240994937718,0.920891220215708,-0.37707752641290426,0.32163174031302333,-0.43648501951247454,-0.8274617814458907,-0.0741576012223959,-0.17032314045354724,-0.4494730578735471,-0.023436674382537603,-0.3955473625101149,-0.5181487742811441,0.0036098347045481205,-0.8786241263151169,-0.6367406710051,0.6888205241411924,0.050005586352199316,0.5935422442853451,0.7411152883432806,0.16443650564178824,-0.24129176093265414,0.7665353394113481,0.6324466192163527,0.9071089695207775,-0.9133038776926696,0.2190422066487372,0.562041643075645,-0.40144060738384724,-0.2725319634191692,0.9909356334246695,0.0189290763810277,0.8481929306872189,0.7763110850937665,0.40978826442733407,0.6403599665500224,-0.43638333212584257,0.7807062556967139,0.3928043767809868,0.5674475426785648,-0.9275528783909976,0.7876179753802717,0.13362699979916215,-0.6908799987286329,0.12360232509672642,-0.7476979847997427,0.21895615803077817,-0.022161963861435652,-0.18875565798953176,-0.3100925642065704,-0.4297435749322176,0.20825852127745748,-0.1438525589182973,0.25590421771630645,-0.3126614773645997,0.07212428702041507,0.6392170349135995,0.985542063601315,-0.7523451498709619,0.10733004286885262,0.20352095924317837,-0.0925143170170486,0.8782540946267545,-0.551839204505086,-0.157369215041399,0.6334884301759303,0.057998028583824635,0.2202374953776598,0.28746972559019923,0.8612396586686373,-0.7847308316268027,-0.7182056759484112,0.5642999070696533,0.5451171537861228,-0.817755937576294,-0.1731850360520184,-0.8797113443724811,-0.2237363257445395,0.6328755947761238,0.21059946110472083,-0.13959605246782303,0.048421391285955906,0.046835776418447495,0.9244550266303122,0.9826878188177943,-0.24058225518092513,0.5587501493282616,-0.189849145244807,0.7003793539479375,0.6969302198849618,-0.3666594820097089,0.7798884892836213,-0.25705459900200367,-0.21492370776832104,0.8106620330363512,0.025820548180490732,-0.04358206735923886,0.9016920477151871,-0.05171135254204273,0.6586500341072679,-0.0523960767313838,0.790011249948293,-0.25898690475150943,0.9180590510368347,0.5612270049750805,-0.12485531298443675,-0.18415812496095896,0.6172574255615473,0.4830040605738759,0.1979967849329114,0.4187135514803231,-0.44433775125071406,-0.8853800427168608,-0.042383743450045586,0.37820934131741524,-0.2951377620920539,0.3888664375990629,0.678868711926043,0.842190379742533,0.0721398894675076,-0.9770642314106226,-0.46728324983268976,-0.1912312861531973,0.7978373686783016,0.24991854187101126,-0.7786615313962102,-0.14607139537110925,-0.027714662719517946,0.8576938239857554,-0.5457771308720112,0.7976387124508619,-0.399054195266217,0.23246518336236477,-0.878303203266114,0.15739292046055198,0.438411065377295,-0.9686460974626243,-0.9659272460266948,0.21066315658390522,0.11437669908627868,0.06928265979513526,0.6113058170303702,-0.33981845900416374,0.19166154181584716,0.3786415671929717,-0.5523608759976923,-0.691715125925839,0.8807995482347906,0.6192514607682824,-0.031603017821908,0.9032979062758386,0.02425542101264,-0.1460492187179625,-0.2786528295837343,0.24294918915256858,0.6908888937905431,-0.6907164785079658,-0.24367265263572335,0.920049169100821,0.6820568661205471,0.9695016709156334,-0.7495649508200586,0.1473169862292707,0.4095919830724597,0.6594769954681396,-0.24375593103468418,-0.20364251965656877,-0.8218453777953982,0.12808615900576115,-0.3545162109658122,-0.6673058867454529,0.5432589231058955,-0.3915246156975627,-0.2849318874068558,-0.5581393991596997,-0.43740067444741726,-0.7928375056944788,0.8512072060257196,-0.2549887206405401,0.7052225521765649,-0.7733947862870991,0.7126086512580514,-0.22789570037275553,-0.8376149954274297,0.8412818890064955,0.18960612919181585,0.47459239047020674,-0.02189790876582265,0.7468216768465936,-0.6826985403895378,-0.3044365015812218,-0.5742565649561584,-0.2885271515697241,-0.10845715831965208,-0.3915911219082773,0.441068088170141,0.5139090875163674,-0.5005485666915774,0.2817178242839873,0.24427294125780463,0.5231447466649115,-0.6247669938020408,-0.5012176604941487,0.16598963737487793,-0.0683238678611815,0.25786910578608513,-0.3660999406129122,0.3230660017579794,0.836397698149085,-0.586534715257585,0.3151164036244154,-0.741241677198559,-0.7138011739589274,0.2741568358615041,-0.9931853045709431,-0.6564602260477841,-0.12847832357510924,0.402283804025501,0.7845561099238694,-0.5368813029490411,0.8347563371062279,-0.7032456360757351,0.7250790866091847,0.7773817027918994,0.626848803833127,-0.33034924045205116,-0.6533549437299371,-0.41949679190292954,-0.9259012290276587,-0.1221797033213079,-0.65862807771191,-0.6780666345730424,0.8101189024746418,0.7740660812705755,-0.35418896190822124,-0.006553058046847582,-0.554983152076602,0.37661877321079373,0.9012837065383792,-0.6646907748654485,-0.22241944167762995,0.0399103881791234,-0.5918642841279507,-0.28094770293682814,-0.37303224485367537,-0.343617033213377,0.48376154340803623,-0.46321955136954784,-0.9871338196098804,0.26675191707909107,-0.5879419166594744,-0.570047261659056,-0.8392932033166289,-0.4739193143323064,-0.912945109885186,0.8306612581945956,-0.7635751506313682,-0.8254713681526482,-0.9194367025047541,0.3739860192872584,-0.2917843349277973,-0.9683271152898669,0.2437478620558977,0.27960048196837306,0.2741911830380559,0.5364210610277951,0.9565927279181778,-0.47053432231768966,-0.10964222950860858,-0.17375200614333153,0.5635894956067204,0.30377819621935487,-0.832215204834938,0.8462164327502251,-0.6866643032990396,-0.07145676901564002,0.06986343860626221,0.527518255636096,-0.647702463902533,-0.3224025061354041,0.6272849137894809,-0.6337038525380194,-0.7275356566533446,-0.8938665967434645,-0.7672034897841513,-0.3244452551007271,-0.47215295769274235,0.2844521217048168,-0.010018705390393734,0.9270929167978466,-0.4988798266276717,-0.5875394032336771,-0.24438884388655424,-0.9957235534675419,0.7686546556651592,-0.14562820130959153,-0.05518589122220874,0.5284278336912394,0.6425968864932656,-0.4883889714255929,-0.6666724872775376,-0.9394894386641681,-0.6183499973267317,0.16421543154865503,-0.7085056430660188,0.2130757588893175,-0.8025772641412914,-0.5638555400073528,0.7754917666316032,-0.9985664519481361,-0.3051787787117064,-0.3407637169584632,0.3718124534934759,0.24023267067968845,-0.3910268107429147,0.4906145175918937,-0.2457806491293013,-0.049431048799306154,0.27714825700968504,-0.8550970302894711,-0.9960824246518314,-0.6833859947510064,0.9272352578118443,-0.010696874465793371,-0.2003175439313054,-0.2557889362797141,0.29171619238331914,0.7494950382970273,-0.8819040465168655,0.8948403135873377,-0.5607804469764233,0.8787705413997173,-0.0146407769061625,-0.902358066290617,0.8989113736897707,-0.32052779849618673,0.9934348128736019,0.4584856992587447,-0.3859571688808501,-0.1984574473462999,0.7086919178254902,0.469701352994889,0.2253877641633153,0.3190467874519527,-0.5417103641666472,0.9260757965967059,-0.2566878767684102,-0.9314546436071396,-0.0779061964713037,0.6100196619518101,0.10164145613089204,0.6938422722741961,-0.5226442054845393,0.5846312781795859,-0.07132702320814133,0.04625295987352729,-0.1615119227208197,-0.3442914439365268,0.5072132959030569,0.31626433227211237,0.09421074111014605,0.9408516036346555,0.28678537998348475,0.6587850684300065,-0.40402060141786933,-0.24487024871632457,-0.41609041299670935,0.25065627600997686,0.2730613858439028,-0.5184303410351276,-0.6153441844508052,-0.6415723608806729,-0.8998874030075967,-0.9727428006008267,0.9744698163121939,0.07333460031077266,0.07903478993102908,-0.36806105729192495,0.054473480209708214,-0.17989002261310816,-0.5476785153150558,0.31081055710092187,-0.726734584197402,0.4065611488185823,0.014978743623942137,0.31953530106693506,0.5493788877502084,0.4384332983754575,0.05159173160791397,-0.3776442273519933,0.7692209519445896,0.036265780217945576,-0.8886519139632583,0.25766259245574474,-0.43528807163238525,-0.7204377287998796,0.6313672633841634,-0.1651599952019751,-0.8762309518642724,0.23654887173324823,0.7377795367501676,0.9968121107667685,0.7409964976832271,-0.1894595422782004,-0.3106467300094664,-0.5829451838508248,-0.567484034691006,-0.8793031540699303,-0.8451028494164348,-0.9737024083733559,0.5195187074132264,0.7444819081574678,-0.33729488402605057,0.1782468925230205,-0.5440896176733077,0.6847702087834477,-0.6212802464142442,0.9372761202976108,-0.42283933889120817,-0.6697060070000589,0.964296720456332,0.8736808975227177,0.9478733083233237,0.2796487119048834,-0.05650235526263714,-0.04802085040137172,0.2774448301643133,-0.4683392448350787,0.9986180625855923,-0.5085847959853709,-0.39409664925187826,-0.9575215503573418,-0.29883758164942265,-0.31246537482365966,0.2798239695839584,-0.37560904072597623,-0.2679466991685331,0.8277634950354695,0.09085810510441661,0.7776340916752815,-0.47882352117449045,-0.899058137089014,0.9950112677179277,0.13387764943763614,0.37953323125839233,-0.0754705099388957,0.1952043971978128,-0.987919514067471,-0.808090053498745,0.17658512387424707,0.060392004903405905,-0.55513282911852,-0.7552065281197429,0.08716614358127117,-0.7095443210564554,-0.1762878280133009,0.7543109226971865,0.5926440972834826,0.9899045564234257,-0.15485985111445189,-0.44714053766801953,-0.2001940468326211,-0.4166077175177634,-0.3580508283339441,0.8734846054576337,-0.8633677223697305,0.6990835755132139,0.1354620116762817,0.9477505516260862,-0.03340533748269081,-0.3900952097028494,0.6651521269232035,0.14274565456435084,-0.7647993108257651,-0.210281765088439,-0.43177990010008216,0.09000620990991592,-0.5102701261639595,0.31796527514234185,-0.37093700421974063,-0.988663915079087,0.2902483609504998,0.9689361341297626,0.4241701732389629,-0.33247748343274,-0.7254162020981312,0.391955332364887,0.303061549551785,-0.8046459010802209,0.7390920538455248,-0.4691608459688723,0.6563804517500103,-0.9886576407589018,-0.6063409536145627,0.8536515636369586,-0.72379683656618,-0.47970676561817527,-0.3042308553121984,0.11814111564308405,0.05692930053919554,-0.17067067930474877,0.6169835762120783,-0.6469417815096676,-0.3361652777530253,0.7766675809398293,-0.3661729753948748,-0.9913713559508324,-0.7986485613510013,-0.3058834429830313,-0.9028078252449632,-0.8389694946818054,-0.8922102195210755,-0.2692042551934719,-0.09146987413987517,0.3396205371245742,-0.7243146877735853,0.5666581839323044,0.5407830723561347,-0.1687564472667873,-0.4638555208221078,0.08939017774537206,0.712645894382149,0.7801133156754076,0.898743205703795,0.4719870542176068,-0.9177770162932575,0.8598523046821356,0.05749970767647028,-0.5506705977022648,-0.473791990429163,0.3400917542167008,0.8103408380411565,0.2711279927752912,0.19665360264480114,-0.9635924561880529,-0.7516433885321021,-0.3354659494943917,0.8660648902878165,0.3148371526040137,-0.085467045661062,0.03183409431949258,-0.1489572678692639,-0.21058360254392028,-0.5843373094685376,0.9464350361377001,0.15192205552011728,0.1833867458626628,0.5961810564622283,0.9667265182361007,0.6572854360565543,0.1258700266480446,0.3921949858777225,-0.3021163083612919,0.1903617512434721,-0.7499705692753196,-0.9386044195853174,0.4988712118938565,-0.35718005802482367,-0.18396481405943632,0.5388670978136361,-0.5349171995185316,0.7402408472262323,-0.31715115951374173,-0.7050349777564406,0.7180943274870515,-0.10076068993657827,0.8982784575782716,0.3539764587767422,0.7328493795357645,0.2022863421589136,-0.450056707020849,0.4662648867815733,-0.13350257463753223,-0.17501021409407258,0.7955644470639527,-0.9360706834122539,0.7997799669392407,-0.8231077236123383,-0.5241025043651462,-0.5149980261921883,0.2630410799756646,-0.8556956998072565,-0.7833639709278941,-0.5962835191749036,-0.32558108773082495,-0.9276898968964815,-0.6060413257218897,0.4890532889403403,0.14088825229555368,-0.0167558123357594,0.47079239739105105,-0.20941822975873947,0.8311368115246296,-0.6548614427447319,-0.3776208912022412,-0.6337352516129613,0.9107116432860494,-0.48592289770022035,0.45149111095815897,-0.18339832266792655,-0.20480200741440058,-0.36965906945988536,-0.5837934343144298,-0.9662707629613578,-0.8538569714874029,-0.40720656560733914,-0.28618097910657525,0.7461552894674242,0.32924579409882426,0.9685191423632205,0.7518603168427944,-0.8550223140046,-0.3771232361905277,0.21975097758695483,-0.5899884128011763,-0.9624051302671432,-0.59380998974666,-0.007793675176799297,-0.747416821308434,0.20812571048736572,-0.67227569129318,-0.9797687521204352,0.564114096108824,-0.9615482119843364,0.5321060782298446,-0.15082433400675654,0.5287502985447645,0.9212011736817658,0.15667408611625433,0.19856037432327867,0.061421097721904516,-0.17108187964186072,0.437997467815876,0.6128866272047162,0.07527783792465925,-0.030530482064932585,-0.1887912922538817,0.6716662556864321,0.26939688669517636,-0.14148131059482694,0.8565040533430874,0.9330211170017719,-0.4987983978353441,-0.13713894365355372,-0.032991659827530384,0.6137450477108359,-0.3220963650383055,0.3363150544464588,0.32785455184057355,-0.05091862427070737,0.7039779610931873,-0.0892352145165205,0.2255737935192883,0.7994235651567578,-0.19808562798425555,0.6084190770052373,-0.8482633116655052,0.05354723101481795,0.9967915210872889,0.7785247969441116,0.7340934216044843,-0.44441514555364847,0.36727063404396176,-0.4916770849376917,0.08395803533494473,-0.35797083657234907,0.6864218856208026,0.27802002476528287,-0.8514713863842189,-0.7346653784625232,-0.9391020387411118,-0.2299007112160325,0.5979607258923352,0.5169810736551881,0.32520871702581644,0.1615631696768105,0.7169508836232126,-0.5559357381425798,-0.34146874863654375,0.11780774127691984,0.46993769239634275,0.7578343730419874,-0.8486364865675569,-0.0031882459297776222,-0.15261724824085832,-0.4888964449055493,-0.3869041674770415,-0.22564743785187602,0.870710592251271,-0.5397955784574151,-0.11338911950588226,-0.45345339039340615,-0.31330637680366635,-0.7388375354930758,-0.3547619371674955,0.5153699056245387,0.7584883919917047,0.24116648640483618,0.1793141346424818,-0.71726128552109,0.4405698534101248,-0.5855459100566804,0.3667025906033814,-0.8869493920356035,0.7680152175016701,0.2551850965246558,0.7353809899650514,0.4446792434900999,0.3257800559513271,0.1670848112553358,-0.07911419775336981,0.9811701248399913,0.671737726777792,0.8850200944580138,-0.4191369619220495,0.7336151911877096,0.7943754740990698,0.40843345783650875,0.18699034955352545,0.849190064240247,0.7126778904348612,-0.5882288459688425,-0.05202154628932476,-0.17587630450725555,0.5329017671756446,-0.8258560029789805,0.9298395551741123,0.4338213396258652,0.6092623011209071,0.9969559186138213,0.14736748952418566,-0.8951854021288455,0.7220850363373756,0.3885205080732703,-0.5896681961603463,-0.7035092432051897,-0.8559160549193621,-0.319106737151742,-0.6865813112817705,0.6313243960030377,0.08163858996704221,-0.23775703832507133,0.7592428023926914,-0.46473065577447414,0.9028409132733941,0.7596850194968283,-0.8929369580000639,-0.5228952169418335,-0.9928490580059588,-0.060267623513936996,0.5955459433607757,-0.29779225401580334,-0.328433730173856,0.6957027954049408,0.586159901227802,-0.3975644432939589,0.9491027947515249,0.41636920627206564,0.6825693193823099,0.2113650399260223,-0.35650444496423006,0.42773753637447953,-0.9096196186728776,-0.5786429843865335,0.361629880964756,-0.405162310693413,0.3061590422876179,-0.5297160847112536,0.6613497426733375,-0.3086276133544743,0.0903756944462657,0.4382541268132627,-0.6631055185571313,0.6673123929649591,-0.43610225059092045,0.7054707622155547,-0.9944140976294875,-0.5005977465771139,0.15153386536985636,0.4636743953451514,-0.9828292285092175,0.58114691125229,0.9572888412512839,-0.40642137406393886,0.494126888923347,-0.8920151307247579,-0.11735570151358843,0.8573721861466765,-0.7860583551228046,0.5865064347162843,-0.5031455429270864,-0.9502761708572507,-0.14990941481664777,-0.3165334756486118,0.9420702694915235,-0.8822283949702978,0.029676236677914858,-0.10935744270682335,0.9064254979602993,-0.8729407261125743,0.018762015271931887,0.6688481974415481,-0.37497987784445286,-0.4291252321563661,-0.5036834347993135,-0.2056888584047556,0.09827190823853016,0.20052020298317075,0.22896986547857523,0.045521251391619444,-0.19229484722018242,0.7278988994657993,-0.03578037675470114,-0.2613337393850088,0.44693108135834336,-0.7879129564389586,-0.23616153001785278,-0.6781586473807693,0.6552771413698792,0.08651450043544173,0.4140397640876472,-0.12343266047537327,-0.17905633663758636,0.3958178358152509,0.11872442485764623,-0.1637338255532086,0.3511043442413211,-0.9964248049072921,-0.49919274542480707,-0.24104938190430403,0.7828324339352548,-0.21759866550564766,-0.33390516554936767,0.3901926460675895,-0.7408291110768914,-0.039413705468177795,-0.3964847349561751,-0.6126416153274477,-0.40078043611720204,0.4314542184583843,-0.5012164241634309,-0.3877626722678542,-0.12555034551769495,-0.6571546392515302,0.8523001372814178,-0.3179802945815027,0.832770780660212,-0.10890442272648215,-0.5154820503666997,0.7852783827111125,0.5634404784068465,0.9987844377756119,0.2963050571270287,-0.9140025689266622,0.4516845000907779,-0.0363159510307014,-0.36747361021116376,-0.07200180320069194,-0.8699693833477795,0.4419094445183873,0.4117043288424611,0.7646579220890999,-0.9476147009991109,-0.4437269773334265,-0.9999822750687599,0.18982596322894096,0.623390359338373,-0.6759285912849009,0.8889343389309943,-0.4320608736015856,0.8410075958818197,-0.522505717817694,0.29932957189157605,-0.25228430377319455,0.9832961275242269,0.09513037791475654,0.8239053012803197,-0.5604021619074047,0.0593390348367393,0.9152812464162707,-0.5291734295897186,-0.6830346677452326,0.3506295420229435,0.6450775186531246,-0.9291735272854567,-0.43135532876476645,-0.003506322856992483,0.6749469614587724,-0.6442172634415329,0.09786756802350283,-0.8594443784095347,0.20081698056310415,0.27534308936446905,0.9544347943738103,0.16967003233730793,-0.6709031299687922,-0.15903252270072699,0.9766411571763456,-0.008864908013492823,-0.610889429692179,-0.8744535790756345,0.39571487344801426,-0.07443078374490142,0.049438545014709234,0.7225405774079263,-0.5897688278928399,0.8381143249571323,0.04046502709388733,-0.45385319786146283,0.33091500168666244,0.10535369766876101,0.2163194678723812,-0.17500440310686827,-0.08063645334914327,-0.803567233029753,-0.32951594423502684,0.904119367711246,-0.035960313864052296,0.37220712611451745,0.6666251020506024,-0.03554393025115132,0.5026911706663668,-0.11269319849088788,0.68242272362113,-0.4603523542173207,-0.2203775611706078,-0.2203270122408867,0.5271976529620588,0.0803780541755259,-0.8773159948177636,-0.5916202091611922,0.3709577270783484,-0.7377410074695945,-0.8100600088946521,0.17067420948296785,-0.2690359838306904,-0.20096233347430825,-0.42399942595511675,0.43554235016927123,0.7792082778178155,-0.5318943038582802,0.30954674910753965,-0.5064378208480775,-0.7916968874633312,-0.2575888358987868,-0.5905595845542848,0.30886420188471675,0.9157111053355038,-0.02811601059511304,-0.1283312845043838,-0.7764857425354421,0.6808410859666765,0.026479211635887623,-0.6884229956194758,-0.5303242807276547,0.4228872675448656,0.06451182253658772,-0.0021203714422881603,0.618217471987009,-0.19776227278634906,-0.1761842453852296,-0.6039550937712193,-0.5195944746956229,0.47699014842510223,-0.4388559884391725,-0.01829363824799657,-0.5773274772800505,-0.6839150045998394,0.7155689303763211,-0.7709020553156734,-0.09303670609369874,-0.3158564930781722,-0.23641366232186556,-0.24175022961571813,-0.49071655608713627,-0.09896093001589179,-0.25854017259553075,0.27936473954468966,0.8689857264980674,0.2216929574497044,-0.7609480922110379,-0.3679703217931092,0.45460652466863394,-0.7628565272316337,0.29296605940908194,-0.4791838047094643,0.30809275852516294,0.6336508211679757,0.2006446197628975,-0.506788203958422,0.8694311352446675,0.1998064834624529,-0.9700748599134386,0.8478874391876161,-0.9603015407919884,-0.15137227764353156,-0.028525248169898987,-0.13000726327300072,-0.545364260673523,0.2815879574045539,0.6095774732530117,-0.8829481368884444,0.9358210894279182,-0.19301402242854238,-0.7139419503509998,0.3661312125623226,0.4546919190324843,0.27917417883872986,-0.623325752094388,-0.6294748485088348,0.31886897096410394,0.9688942031934857,0.2993107223883271,0.4159538415260613,0.34568982664495707,0.8099420880898833,-0.3918448775075376,-0.8332471661269665,-0.92457923758775,-0.8337355223484337,0.5683686598204076,-0.8765164809301496,-0.6543699847534299,-0.6030186945572495,-0.6480513755232096,-0.420495574362576,-0.19860247895121574,-0.7326866965740919,0.05733631644397974,-0.34919624868780375,-0.20424546720460057,0.945737527217716,-0.30117743695154786,0.874640850815922,-0.9569601034745574,0.06385752558708191,0.6969147343188524,0.39788667671382427,0.027774013578891754,0.38205923419445753,-0.6384589830413461,0.6279576877132058,0.7117016986012459,-0.8897487451322377,0.23247383954003453,-0.19478096161037683,0.07393803540617228,-0.13263674871996045,-0.989362632855773,-0.4281419957987964,-0.46841057669371367,-0.5623672632500529,-0.8760640015825629,0.5177585389465094,-0.6011419049464166,0.4756507072597742,-0.8038791655562818,-0.07046364387497306,-0.6929743336513638,-0.9663663911633193,0.7509534959681332,0.11800500517711043,0.02048561628907919,0.20525161316618323,-0.574176125228405,0.27559770783409476,0.5525624332949519,0.4454100546427071,-0.5582065908238292,0.5150155751034617,-0.4789514043368399,-0.6346382130868733,0.5454309089109302,0.7589720650576055,-0.09302045591175556,0.33576175617054105,0.2779316045343876,-0.953382195904851,-0.3235939648002386,-0.7738188630901277,-0.4988601072691381,-0.1143300854600966,0.7065403419546783,-0.4753861171193421,-0.9038138841278851,-0.0045942021533846855,0.027209237683564425,0.7022789823822677,-0.3791691898368299,-0.9080234966240823,-0.9799699140712619,0.8475500652566552,-0.8013871689327061,-0.7517729164101183,-0.49481320567429066,0.2037670430727303,-0.8719351440668106,-0.012025909032672644,0.03602228779345751,0.7460016449913383,0.4168544989079237,-0.5897963978350163,0.04821377480402589,0.04293230967596173,-0.408219066914171,-0.15961025701835752,-0.6825414774939418,-0.8809945974498987,0.2379261665046215,0.43287467677146196,0.826796333771199,0.11235035862773657,0.5065463734790683,-0.9912086045369506,-0.7245788625441492,0.24574736645445228,0.302901282440871,-0.718240397516638,-0.7419229396618903,0.4795915032736957,0.27330598048865795,0.2249876568093896,0.7347922008484602,0.21408497728407383,-0.16318225814029574,0.3329579886049032,-0.9418077156879008,0.787168862298131,0.46880933083593845,0.06957408785820007,-0.22584995813667774,0.250650969799608,-0.3051844695582986,0.5017240210436285,-0.4141207435168326,-0.950752217322588,0.5299337254837155,0.46584491478279233,0.61645124014467,0.5806624819524586,0.06433181976899505,-0.3943138998001814,0.3095470638945699,0.34475318947806954,0.9493596139363945,-0.3938261498697102,0.5958254323340952,-0.10773351788520813,0.2366910045966506,0.5807275241240859,0.7470346237532794,-0.039105444215238094,-0.49742816016077995,0.542663898319006,0.25699437875300646,0.9944613953121006,-0.8589289211668074,-0.15636157197877765,-0.022214706521481276,-0.2872591186314821,0.3928993782028556,-0.015170290134847164,-0.4798719803802669,-0.2990381643176079,0.9585703010670841,-0.6859278734773397,0.5817857226356864,-0.277265090495348,0.6411332082934678,-0.756656052544713,0.5453611188568175,-0.5936948815360665,-0.25330894673243165,0.8916977141052485,0.6565046617761254,-0.024852486327290535,-0.2759668091312051,0.7620783825404942,-0.8508342709392309,-0.5342840049415827,-0.5733912503346801,-0.5061458228155971,0.8265174073167145,-0.026581693440675735,0.45520289754495025,-0.3567816182039678,0.38198348227888346,-0.8162949094548821,0.21569519862532616,0.07908285828307271,-0.16178196063265204,0.6885858355090022,0.6648011370562017,-0.1655875281430781,0.4188506342470646,-0.33858762215822935,0.8646296123042703,-0.8346986952237785,0.5626732581295073,-0.6214935146272182,0.6848074938170612,-0.310759574174881,-0.21583917317911983,0.2614503656513989,0.9958048239350319,0.9711658214218915,-0.042125274892896414,0.6610802202485502,0.27562863426283,-0.4846973177045584,-0.3024503318592906,0.31225999305024743,0.05872602295130491,-0.5550783397629857,0.6551647800952196,-0.9603143576532602,0.451778881251812,-0.2578444224782288,0.6620059031993151,-0.35188381979241967,0.2635323880240321,-0.8524270346388221,0.3385744234547019,-0.7067077308893204,-0.5556274550035596,-0.6984232421964407,-0.627060538623482,0.2842049514874816,0.25706493807956576,0.8142356402240694,0.9261535191908479,-0.6016563260927796,0.17704204376786947,-0.9461273769848049,-0.5657123732380569,-0.8077107425779104,0.2258526706136763,-0.15520145185291767,0.992400832939893,0.6860176804475486,-0.7293948638252914,-0.5258627948351204,-0.773358081933111,-0.7756428164429963,0.8101086425594985,-0.5996912894770503,-0.6016613626852632,0.4825210007838905,0.0875585712492466,-0.19829724729061127,-0.4622047636657953,0.7100830036215484,0.9206168414093554,0.9198827156797051,-0.7863372238352895,0.9677242371253669,-0.6699430919252336,0.2791878106072545,-0.15984944812953472,-0.016561495140194893,-0.4644480259157717,-0.764975561760366,-0.6603669244796038,-0.3307750206440687,-0.8277545748278499,-0.8658855725079775,-0.23524271743372083,-0.34147281385958195,0.1468055616132915,-0.8559227474033833,0.02958482364192605,-0.6485781697556376,0.3648038459941745,0.4459333214908838,0.9077253923751414,-0.682452698238194,-0.932799275033176,0.1519257235340774,0.4344486608169973,-0.6772835655137897,-0.2495046374388039,0.5181504092179239,-0.4124867273494601,0.6677316878922284,-0.27763193752616644,0.390393391251564,-0.313996899407357,0.58607745077461,-0.7168921907432377,-0.5577045669779181,0.6585649605840445,0.22977335890755057,-0.22709849337115884,-0.8759643910452724,-0.27071834448724985,-0.34238890232518315,-0.8913055709563196,-0.618812242988497,-0.5319795971736312,-0.915698928758502,0.2624636832624674,0.8089877418242395,0.6001096782274544,-0.28337603621184826,0.2022768147289753,-0.8779482780955732,0.6167409317567945,-0.5303647359833121,0.37919506384059787,0.2422555284574628,-0.1039631413295865,-0.5231791120022535,0.3174625183455646,-0.9988667969591916,0.9401274798437953,-0.9225409966893494,-0.627664050552994,0.6866432684473693,-0.7381867193616927,-0.8363450709730387,-0.3703481862321496,0.27769685816019773,-0.44437615014612675,-0.5905112200416625,-0.9694838309660554,-0.7023432990536094,0.3527126321569085,0.708714528940618,0.8124143066816032,0.9551601931452751,0.6593445958569646,-0.8502759258262813,-0.9702548454515636,0.10974283469840884,0.36870101373642683,-0.04199961060658097,0.7118991347961128,0.6137212114408612,-0.14099583495408297,-0.7463473211973906,0.3534683519974351,0.6293210405856371,0.10683289822191,-0.8080612951889634,-0.25344711681827903,0.4420032203197479,0.3098173919133842,0.169369509909302,0.9470961722545326,0.7982826787047088,-0.07350041111931205,-0.9517738702706993,-0.9648679113015532,-0.972632591612637,-0.6952916504815221,0.3192884516902268,0.7578777717426419,0.3817432364448905,0.6792973182164133,0.6386595349758863,-0.6906424076296389,-0.4289055299013853,0.7267903154715896,0.7426056140102446,0.31559449154883623,-0.7560709151439369,-0.8439504336565733,0.8318015476688743,-0.3893610658124089,-0.9184295102022588,-0.12751709390431643,0.2010709522292018,0.8593596145510674,0.3417471838183701,0.13694253657013178,-0.5484939124435186,0.9452921375632286,-0.3107345774769783,-0.17982875416055322,-0.331559288315475,-0.6657468089833856,-0.24319237330928445,-0.5182448527775705,-0.7801865050569177,0.856177591253072,0.693147427868098,0.8230896475724876,-0.47092685382813215,0.04083629883825779,0.6923181503079832,-0.9949863939546049,0.49935055850073695,0.8452623435296118,0.19898490700870752,0.248033597599715,-0.00981235085055232,0.817290058825165,0.0575968399643898,0.30351038137450814,-0.6303336876444519,-0.45991094782948494,0.8345940876752138,0.011025674641132355,-0.3548120269551873,0.8690274637192488,-0.0740480930544436,-0.4630202380940318,-0.28487719036638737,-0.21453358326107264,-0.22726955823600292,-0.05779961263760924,-0.4157814704813063,0.07913323491811752,0.1495973444543779,0.09141814429312944,-0.3382725636474788,-0.15557938301935792,0.20693837152794003,0.7803008775226772,-0.1794928228482604,0.27513395762071013,0.17515961453318596,0.8101107119582593,0.9749852810055017,-0.4960386427119374,-0.026780695654451847,0.5832399716600776,-0.8563337298110127,-0.6741050090640783,0.5455955290235579,0.9747504238039255,0.522238586563617,0.5153894415125251,-0.7195514249615371,-0.986150742508471,0.821962364949286,0.8001435287296772,-0.42538300482556224,0.28937601344659925,-0.7413985677994788,0.2716565756127238,0.09523568488657475,-0.7817744789645076,-0.6572998627088964,-0.4345109397545457,0.6459589912556112,0.3226165003143251,-0.9109415817074478,-0.6975575485266745,0.6027333131060004,0.6756123169325292,0.15215386962518096,0.12280261842533946,-0.01570843579247594,-0.3636655369773507,-0.34344954462721944,-0.678241787943989,0.4188253581523895,0.6890236791223288,0.7890528873540461,-0.9355970122851431,-0.5529291937127709,-0.9417250547558069,-0.6305555454455316,0.5672633615322411,-0.5572988595813513,-0.049931091256439686,-0.8083457332104445,-0.3460164894349873,-0.9154604994691908,0.8129234621301293,0.9266204354353249,-0.010544650256633759,-0.9695447008125484,-0.2734087398275733,-0.8732785070315003,0.6430204692296684,0.729377725161612,-0.4728960543870926,-0.3386166077107191,0.5140649490058422,-0.9487003022804856,-0.02017185278236866,0.4385317009873688,-0.854030872695148,0.2135880058631301,-0.512547958176583,-0.2293250635266304,-0.014889967627823353,0.3107580039650202,0.04460462694987655,-0.8518822188489139,0.3093159548006952,0.9405455910600722,-0.3966906168498099,-0.5793061745353043,-0.16698500467464328,0.9048749138601124,-0.5494564552791417,0.5061587719246745,-0.9858231907710433,0.5807333025150001,0.15625540260225534,-0.9671361646614969,0.11185022396966815,0.5733596878126264,-0.7386188018135726,-0.5673502711579204,-0.039498947095125914,-0.9721296322531998,0.5171248521655798,0.31901282723993063,-0.29927444783970714,-0.13508070539683104,-0.7325493022799492,0.22146458737552166,0.05243119550868869,-0.22531392285600305,0.43950451677665114,0.5706662726588547,0.4718396859243512,-0.5515955975279212,0.9964764802716672,0.5652989936061203,0.5433555841445923,-0.40894619142636657,0.6717211622744799,0.534041534177959,0.33945797104388475,-0.9756700340658426,-0.7674367083236575,-0.08017697557806969,0.006092750001698732,-0.3884215261787176,-0.3633381752297282,0.6545738619752228,-0.5288990484550595,0.6934404242783785,0.6500080549158156,0.4755465663038194,-0.7756093177013099,-0.0977288051508367,0.8572382745333016,-0.24355738563463092,0.8148758197203279,0.16429522400721908,0.1708833323791623,0.5096752708777785,0.940908519551158,0.029034828767180443,-0.12801839131861925,-0.08766734600067139,0.1240352587774396,0.058746770955622196,-0.49396351631730795,0.695434688590467,-0.441991051658988,-0.39331002440303564,0.7324369205161929,-0.7814296642318368,0.9662655484862626,-0.6657674261368811,0.9939522845670581,-0.8903052834793925,-0.3968119043856859,-0.8046326930634677,-0.692212623078376,0.882321685552597,0.9833307699300349,0.44039048720151186,0.5531831746920943,0.1641077594831586,-0.0866429922170937,-0.07710568467155099,0.42391555570065975,0.9839704479090869,-0.5796353872865438,0.05441269604489207,-0.46140010794624686,0.8867936902679503,0.06133251544088125,-0.458082580473274,-0.10070878081023693,-0.3294128733687103,-0.35407853592187166,-0.7889479552395642,0.5691283997148275,-0.9099645279347897,-0.23060978157445788,-0.849642344750464,-0.5430748825892806,-0.5231574513018131,-0.894202568102628,0.6247805221937597,-0.045990563463419676,0.022755183279514313,0.9833097462542355,-0.16885041957721114,-0.978386573959142,-0.6303964466787875,0.684185509569943,-0.060629351530224085,0.5214766436256468,-0.6576526644639671,-0.9213026440702379,-0.7834713174961507,-0.21664514346048236,0.05721949506551027,0.409760853741318,-0.942330848891288,0.11182159697636962,0.7100088051520288,0.5117487078532577,0.9471706696785986,0.503149292897433,0.7877277410589159,0.3058569962158799,-0.7580706272274256,-0.6473720404319465,0.8261250387877226,0.6376266172155738,0.11819134326651692,-0.6872909371741116,-0.6476197242736816,0.7231482309289277,-0.943900556769222,-0.34908826649188995,0.5858636945486069,-0.6778315473347902,-0.8672221680171788,-0.03398417215794325,0.47809049440547824,0.7317800326272845,0.9974286584183574,-0.4535523853264749,-0.6459487704560161,0.9046932877972722,0.8738367790356278,-0.47238852037116885,0.3514187652617693,0.7809412060305476,0.16872850293293595,-0.867328932043165,-0.6399060897529125,0.11009432608261704,0.5533836320973933,-0.9240621710196137,-0.4428222640417516,0.3316645734012127,0.40969820925965905,0.23911271942779422,0.4664645125158131,-0.41664387192577124,-0.5299165821634233,-0.8897921820171177,0.053735398687422276,0.9730398086830974,0.14043253287672997,0.5218034326098859,-0.07275125198066235,-0.3091727211140096,-0.49234840739518404,-0.6261930586770177,-0.6836111871525645,0.29052381543442607,0.17278629774227738,-0.5110175316222012,0.38628712948411703,-0.3433747119270265,0.14920709654688835,0.9244696511887014,-0.7694569975137711,-0.8275682660751045,0.14668229361996055,-0.05331367999315262,0.04339964734390378,-0.8757635843940079,0.6541817616671324,0.5656996536999941,0.18672710098326206,-0.6160155260004103,-0.5919801341369748,0.5908604920841753,0.4484254876151681,-0.686299154534936,0.7771644378080964,0.33078294387087226,-0.39871878270059824,-0.4732895134948194,0.6725873011164367,0.5684220814146101,-0.15396364964544773,-0.33653348218649626,-0.41830637864768505,0.3685874044895172,-0.6564613152295351,0.8972746976651251,-0.8390628211200237,-0.346133747138083,-0.3810954261571169,4.907604306936264e-05,-0.5882559712044895,-0.10785212134942412,0.20967373717576265,0.373495161999017,0.42861385410651565,0.580189379863441,-0.9199611260555685,-0.9404629003256559,-0.5361700928770006,0.16627373453229666,-0.8746004663407803,0.04739928292110562,-0.41644619405269623,0.13638350646942854,0.5383325857110322,-0.03229616116732359,0.6419977424666286,0.29472346883267164,-0.6615809248760343,-0.554130238480866,0.4882334256544709,0.4936868008226156,0.5565206529572606,-0.4253331804648042,-0.9731234991922975,0.5787383443675935,0.38431559735909104,-0.44061510264873505,-0.8272589845582843,0.19997474923729897,-0.8582461141049862,0.6623626961372793,-0.5459818406961858,0.6260570459999144,0.425136380828917,0.29218607814982533,0.3458554041571915,0.4499197886325419,-0.7912128283642232,-0.04970290046185255,-0.04176328470930457,0.46361323399469256,-0.2996955052949488,-0.8461403236724436,0.5516202468425035,-0.03798095649108291,0.0680975136347115,-0.33515667263418436,-0.08705037692561746,0.3951970646157861,0.2684641913510859,-0.6643735277466476,0.5755166686140001,0.4274869845248759,0.0063629355281591415,-0.5961656840518117,-0.1289991526864469,-0.38092835573479533,-0.9580564401112497,0.032397286500781775,0.3112737815827131,-0.7415766399353743,-0.9971415251493454,-0.23725341632962227,0.30513029731810093,-0.630375842563808,0.7520666318014264,-0.40478708734735847,0.10684288060292602,0.26781271444633603,0.5469181565567851,0.36486178170889616,-0.27405289746820927,0.950825085863471,0.9082899424247444,-0.3036998803727329,-0.7859119111672044,-0.25730706937611103,0.6890612319111824,0.746491058729589,0.94424943998456,0.3024347829632461,0.3447184143587947,-0.45158995781093836,0.8321720003150403,-0.9453528607264161,-0.5732243801467121,-0.4383497745729983,-0.2128317658789456,-0.6948435241356492,-0.15277407970279455,-0.5944521483033895,-0.18877845769748092,0.8859345186501741,-0.7072690511122346,0.8769845650531352,0.036742794793099165,-0.32149925269186497,-0.5059064347296953,0.8438473637215793,-0.9846346960403025,-0.966073508374393,-0.8242898127064109,0.23790339566767216,0.19333616457879543,-0.6119487746618688,0.07721670437604189,0.9932800317183137,0.9467930817045271,0.586112686432898,-0.2675489690154791,0.31014335807412863,0.4167661531828344,-0.30925457878038287,0.6184644969180226,-0.9111399743705988,0.003647472709417343,-0.6669286200776696,0.27118557319045067,-0.2243601055815816,-0.43509039701893926,-0.8909569750539958,0.6974495858885348,-0.01476920722052455,-0.49946319591253996,-0.5700546586886048,-0.041951203253120184,-0.7396607710979879,-0.13375568203628063,-0.47925297217443585,0.36076668929308653,-0.8123026369139552,-0.27137136971578,0.6561642503365874,-0.3611417501233518,-0.31488122837617993,0.20476061571389437,-0.432542912196368,0.5849779774434865,0.35399116203188896,-0.9145610937848687,-0.5774732017889619,0.558610447216779,0.19819945469498634,0.3179650316014886,0.3014192176051438,-0.831347425468266,-0.013799355830997229,0.6820490434765816,0.5517662540078163,-0.4855693941935897,0.7536882343702018,0.7617705636657774,-0.9437849591486156,-0.5419872938655317,-0.1305375243537128,-0.9513802672736347,-0.1680613635107875,0.805921548511833,0.8862922382541001,-0.06868337234482169,-0.8568835849873722,-0.25701616890728474,0.3019059575162828,-0.09743179474025965,-0.12849874375388026,0.06093609053641558,-0.5162021792493761,0.5323941446840763,-0.5222755577415228,-0.013971512671560049,-0.03673213720321655,-0.4999929456971586,-0.39922694582492113,-0.8890291093848646,0.6311670583672822,0.5362335094250739,0.8284337483346462,0.09900443535298109,-0.9418198633939028,-0.7235721684992313,-0.38728610472753644,0.8278166092932224,-0.11922016320750117,0.2969081508927047,0.26899850461632013,-0.9583043237216771,0.28495871368795633,0.6443363442085683,0.2785483184270561,-0.5409226617775857,-0.41731669567525387,-0.4083894621580839,0.19307552790269256,-0.9514924879185855,0.8412832827307284,0.6083415946923196,0.7722407560795546,-0.7013605013489723,-0.1785831837914884,-0.7149278819561005,0.8965844856575131,-0.39551366912201047,0.1661095037125051,0.9430632283911109,-0.1532065342180431,-0.13171225227415562,-0.9199127880856395,0.9160024602897465,0.07756932359188795,-0.9110055244527757,-0.28724057087674737,-0.686489025130868,0.7212482579052448,0.8812497220933437,-0.20026309182867408,0.9291043123230338,0.233216455206275,-0.37671658489853144,0.855878968257457,0.9210399105213583,0.23874124744907022,-0.2375791030935943,-0.6515066577121615,0.3050498398952186,0.6622832505963743,0.9674587650224566,-0.3797423713840544,-0.8153642271645367,-0.6426702360622585,0.9514631447382271,0.13091458193957806,-0.7404315699823201,-0.6408037724904716,-0.3971863784827292,0.6449697762727737,0.3900540415197611,0.3597059394232929,0.0876355106011033,0.4008464189246297,-0.9664382506161928,-0.46831211633980274,-0.5228066709823906,-0.5830900850705802,0.4791400753892958,-0.4564665616489947,-0.042419553734362125,0.7567255767062306,0.2654026276431978,0.7379132742062211,-0.560262615326792,0.7774374764412642,-0.22553074033930898,0.62695342162624,0.7851243875920773,-0.7631097664125264,-0.006214396562427282,0.10273224068805575,-0.7561915353871882,0.17400401178747416,-0.11785917263478041,-0.9248876245692372,-0.5158022218383849,-0.33245620131492615,0.6483299992978573,0.5473616295494139,0.17287896014750004,-0.989362710621208,-0.2124745245091617,0.2694567861035466,-0.027012184727936983,-0.46565758157521486,-0.3946794760413468,-0.9486796823330224,-0.39278428303077817,-0.4375755935907364,0.22279369877651334,0.37022347608581185,0.29782962752506137,-0.39529748540371656,0.5408475352451205,0.9956832658499479,-0.2806336726062,-0.1843638652935624,-0.35500577557832,0.8243305534124374,-0.05139823816716671,0.23828358482569456,0.686353831551969,0.804921118542552,-0.32585605420172215,-0.8351838742382824,-0.80232920544222,0.4714909289032221,-0.038713449612259865,-0.6882588653825223,-0.8329485757276416,0.10554385278373957,-0.8905490823090076,-0.5341213280335069,0.8868966973386705,-0.5996700469404459,-0.8909920803271234,0.345326344948262,-0.35124804778024554,0.8686726344749331,0.14961226703599095,0.9685178291983902,0.7411898644641042,-0.4505481575615704,-0.11147039569914341,-0.3834641366265714,0.13706764299422503,-0.4310985514894128,0.42397961439564824,0.3412766633555293,-0.3845078330487013,0.30363384122028947,0.5836247098632157,-0.10134444292634726,-0.6725378879345953,-0.8165156124159694,0.9821942588314414,-0.9475976848043501,0.0604511215351522,-0.2580870883539319,0.7321096807718277,-0.18212092109024525,-0.24134402442723513,0.03372945403680205,-0.4675181186757982,-0.03613955993205309,0.3575586178340018,0.6912921364419162,0.26139732589945197,-0.25515698455274105,0.4979682727716863,-0.3480335487984121,0.09802875015884638,0.7069117175415158,-0.6615380854345858,0.0814003492705524,-0.8098188042640686,0.7791157276369631,-0.30586492735892534,-0.3258349639363587,-0.4101458564400673,-0.09202665649354458,0.8798551904037595,-0.6545479535125196,-0.7603891165927052,0.6743329768069088,-0.5559524414129555,0.05578349158167839,-0.032218046952039,-0.5956008504144847,0.8923414498567581,0.5782122300006449,-0.66733443364501,0.08296456979587674,0.8076643436215818,-0.11394620034843683,0.25452510360628366,0.5331260161474347,-0.406738790217787,0.07638509152457118,0.033838553354144096,0.18019213993102312,-0.7309524556621909,0.7080495022237301,0.10648416634649038,-0.3011318016797304,-0.2720232359133661,-0.9655291065573692,-0.5857498561963439,-0.9937804634682834,-0.5911124395206571,0.16133782966062427,-0.6301968293264508,0.7427719864062965,0.15376558154821396,0.22732556704431772,-0.8141762050800025,0.7305578575469553,0.6873238026164472,0.11853774124756455,-0.7527550854720175,0.14225058630108833,0.3277173466049135,0.3039875766262412,-0.04750484740361571,-0.4968184633180499,-0.5044633531942964,0.3634591526351869,0.2621328057721257,-0.6306801252067089,0.7399734845384955,-0.26875867089256644,-0.7763404394499958,-0.8601227891631424,-0.8572775428183377,-0.6102082612924278,-0.22301770327612758,0.41103916382417083,0.8553339820355177,-0.07274099998176098,0.7151461029425263,0.6066334703937173,-0.7356679076328874,0.552663475740701,0.8177156252786517,-0.7635514554567635,-0.39805101230740547,0.8126688268966973,-0.8908200031146407,0.7912973747588694,-0.48339243046939373,0.49937292793765664,0.0741593586280942,-0.9237340781837702,0.31679314421489835,-0.28554551349952817,0.24903473211452365,-0.4099364788271487,0.8091103252954781,0.8857824499718845,0.1519260946661234,0.17131988471373916,-0.7090251380577683,-0.04416772024706006,-0.650960645172745,0.9074325934052467,0.13739704666659236,0.3588114404119551,-0.5575332567095757,0.882302422542125,0.9792075366713107,0.2189800040796399,0.9260813766159117,0.6544013684615493,0.19113847706466913,-0.9438070524483919,-0.6707005547359586,0.21151910768821836,0.45725929643958807,0.20993038965389132,0.19593638367950916,0.7120307460427284,-0.45967572974041104,0.20345867238938808,0.8799941139295697,0.061775210313498974,0.8456249344162643,-0.19171794829890132,0.513547545298934,-0.0075618731789290905,-0.44469098560512066,-0.4687123433686793,0.42943025194108486,0.7722440934740007,0.08802976319566369,0.6328212530352175,-0.42269060015678406,-0.9022856247611344,-0.3222044971771538,0.17506346153095365,0.02890352252870798,-0.15073347510769963,0.6693015163764358,-0.7310003554448485,-0.5381235904060304,0.7842792510055006,-0.30111725395545363,0.9308652831241488,-0.709446657449007,0.9683556463569403,-0.4539980054832995,-0.7757792077027261,-0.38658569334074855,0.4675735644996166,0.22980549186468124,-0.2332795993424952,0.26428091106936336,0.07276131026446819,-0.6568536134436727,-0.7130218297243118,-0.0690512116998434,0.22835439536720514,0.46389695489779115,-0.68658381793648,0.9153540502302349,-0.3003405830822885,0.3444675146602094,0.7319877715781331,-0.4866159791126847,0.7322595003060997,0.17328067170456052,-0.02857648115605116,-0.8589359857141972,-0.14151841681450605,-0.6300270413048565,-0.6404685960151255,0.7055732570588589,0.21820168057456613,0.6091770413331687,-0.3211627653799951,0.29325301200151443,-0.5302823069505394,-0.3166770935058594,0.02035476081073284,0.6154403011314571,-0.6656228941865265,-0.031849872786551714,0.5050951899029315,-0.914475288707763,-0.3900858904235065,-0.3290164456702769,-0.4357827459461987,-0.684673513751477,0.9148707883432508,0.3209364269860089,-0.5394862522371113,-0.32717136573046446,-0.4505571937188506,-0.956976868212223,-0.43605079082772136,0.5614795191213489,0.0639831661246717,0.7282088417559862,0.9995638118125498,-0.9461289118044078,0.02210514945909381,-0.8098254115320742,0.32498946879059076,0.11517690913751721,-0.7799642784520984,0.22194314328953624,-0.8859455934725702,-0.6127295703627169,-0.17469139862805605,0.29680473869666457,-0.28520922269672155,-0.5810190979391336,-0.25897308997809887,-0.5198470731265843,-0.2505137110128999,0.4831544728949666,-0.7626914577558637,-0.10388638498261571,0.7193716401234269,-0.3080058521591127,-0.12878029560670257,-0.41004384588450193,0.44157170644029975,-0.6986640589311719,0.8628572090528905,-0.27684866078197956,0.37057771533727646,-0.38176992209628224,-0.5845154244452715,-0.8808659710921347,0.1504568960517645,0.4350637882016599,0.8514535198919475,-0.559761852491647,0.906542438082397,0.36081791715696454,-0.9845303203910589,0.11530080763623118,-0.31817192398011684,0.5557520636357367,0.029915301129221916,0.7337213181890547,0.7995944204740226,0.49643701780587435,-0.30530391400679946,-0.3398582534864545,0.4340718719176948,0.28170527052134275,0.30906792264431715,-0.10777555871754885,-0.26682050339877605,0.4199478751979768,0.5890874401666224,0.7105589876882732,-0.007498488761484623,0.08295161230489612,-0.5837601460516453,0.15205584559589624,-0.6862982474267483,0.690874854568392,-0.2721893140114844,-0.6049367929808795,-0.8855229732580483,0.08321978710591793,-0.26700752740725875,-0.8211073968559504,0.6201302786357701,0.19928389694541693,-0.07094492902979255,-0.9611412892118096,0.16338585736230016,-0.9921253169886768,0.7269425760023296,-0.11129485117271543,-0.5210217805579305,0.7104114755056798,-0.2024176218546927,-0.13850382156670094,0.5986875365488231,-0.7740321564488113,-0.1365220844745636,0.3336511100642383,0.6829276410862803,0.25320056546479464,0.4925180687569082,0.3246296402066946,-0.21732214838266373,-0.8029046319425106,0.5711159780621529,0.6049561379477382,-0.11413714895024896,-0.3639419535174966,0.8774162689223886,0.25672326888889074,0.8511971291154623,0.7809021291323006,-0.1677949083968997,-0.2427417067810893,-0.3542130524292588,-0.6556683904491365,0.37851767940446734,-0.5044162552803755,0.6114922682754695,0.3402158156968653,0.5391468643210828,-0.644619143102318,0.41794993123039603,0.4956759503111243,-0.4957630783319473,0.13522534957155585,0.04527614125981927,-0.8253005337901413,0.7768411529250443,-0.7184841269627213,-0.5425865086726844,-0.8869959469884634,0.37389847030863166,-0.8776361788623035,0.7005941262468696,0.9098584833554924,-0.82807796029374,-0.9676307388581336,-0.20612485567107797,0.5599579527042806,-0.07489956123754382,0.20251125236973166,-0.4892286816611886,-0.6962412758730352,0.6937254229560494,0.40491076139733195,0.5449820011854172,-0.5045752031728625,0.6381408772431314,0.8840269604697824,-0.5582156511954963,0.5985468616709113,0.7272286796942353,0.384262983687222,0.006981400307267904,0.20517489360645413,0.9783554193563759,0.2435274003073573,0.2584563782438636,-0.5202446165494621,-0.1756874155253172,-0.7091577057726681,0.11839454900473356,0.3840930499136448,0.7337208390235901,-0.8165144096128643,-0.16472083842381835,0.5436706617474556,0.42269405582919717,-0.267976937815547,0.8695818334817886,-0.7612148630432785,0.6339456508867443,-0.15099786641076207,0.9143586386926472,0.5486346487887204,0.5618429039604962,0.2816711184568703,0.6686938744969666,-0.9034637319855392,0.8478693831712008,0.08310229796916246,-0.44949993630871177,-0.8858201261609793,0.3145996076054871,0.8270260584540665,0.15113500598818064,0.6971832304261625,-0.9902485348284245,0.16823509568348527,0.19544112123548985,-0.06246637785807252,0.9653565362095833,0.5421654186211526,0.506048530805856,0.057378650177270174,0.9443887560628355,0.25028136279433966,0.12339239148423076,-0.2105284472927451,-0.12142449710518122,-0.22925533493980765,0.8891545203514397,0.4205232015810907,-0.34359570778906345,-0.8252077377401292,0.7782580065540969,0.9740008059889078,-0.27427794970571995,0.5578411337919533,0.5757618974894285,-0.9478238043375313,0.1130443592555821,0.8139690491370857,-0.7339975475333631,-0.5492759775370359,0.4375436585396528,-0.08502755872905254,-0.7127862703055143,0.796031029894948,-0.92742033675313,-0.6826932546682656,0.6136453780345619,0.3595092250034213,-0.7776684183627367,-0.41304289968684316,-0.4367049178108573,-0.8670783522538841,0.43837648443877697,-0.6448495625518262,-0.5170617490075529,-0.6606282880529761,0.09601816814392805,-0.9361527017317712,0.9555345918051898,0.9403558932244778,0.7875181888230145,0.14022030541673303,0.7609160742722452,0.9607614325359464,0.16071604192256927,0.5106182578019798,0.27501084050163627,0.4066432029940188,0.32128546107560396,-0.24965933477506042,-0.2211562767624855,-0.38637093221768737,-0.8830753676593304,-0.7847146801650524,-0.5633117971010506,-0.692383274435997,0.0065248990431427956,-0.3730433904565871,-0.128233109600842,0.09473897004500031,-0.04390881443396211,0.31333798775449395,0.22514180559664965,-0.5792897650972009,-0.16024893941357732,0.1556797306984663,-0.3810052708722651,0.840013419277966,0.9382184813730419,-0.764793808106333,-0.7966779349371791,-0.2394738346338272,-0.029078363440930843,-0.33004665095359087,-0.7674656789749861,0.6275138310156763,0.8148559234105051,-0.857631350401789,-0.9480846272781491,0.2250591958872974,-0.09881014935672283,-0.7582790479063988,-0.6157404235564172,0.6800063136033714,-0.04284477373585105,-0.5700082429684699,-0.9261582079343498,-0.4278976321220398,-0.9206211683340371,-0.3335177763365209,0.2551810769364238,0.6420345944352448,0.024917719420045614,-0.33385567646473646,-0.37776507856324315,-0.6143151852302253,0.776417532004416,0.5823612702079117,-0.1256292755715549,-0.38560626516118646,0.7028345544822514,-0.32666667737066746,0.7140492522157729,-0.0958530162461102,-0.40523317316547036,0.9563859617337584,0.6623960654251277,0.831253161188215,-0.845189165789634,0.20275118434801698,-0.005864845123142004,0.5591992922127247,-0.49457094771787524,-0.923897473141551,0.5558428941294551,0.42281296756118536,-0.954153414350003,-0.4445608863607049,-0.5751409041695297,-0.39963073236867785,0.3610409307293594,-0.8131085052154958,-0.4462289451621473,0.48344899201765656,0.3641061233356595,-0.5609066314063966,-0.4142993986606598,0.10622545378282666,-0.2817135863006115,-0.7366558350622654,0.17505304422229528,0.8613549489527941,0.9459889526478946,0.5406482643447816,0.8866190863773227,0.2672248324379325,0.10557146836072206,-0.7873440394178033,-0.10730310389772058,0.18345084274187684,0.6052952874451876,-0.4840536038391292,-0.5853804042562842,-0.11949821887537837,-0.29053231608122587,0.1106939073652029,0.2658278583548963,0.7891356088221073,0.07013963581994176,0.5394054385833442,-0.263086068443954,0.08167938562110066,-0.19437560951337218,-0.10410000290721655,-0.8531458997167647,0.7035642615519464,-0.7044684458523989,-0.5540068550035357,0.10937601933255792,-0.8929105587303638,-0.6345310136675835,0.4834816702641547,-0.41142174787819386,-0.13748469296842813,-0.4255517488345504,0.4681078647263348,0.5288309054449201,0.16097804391756654,-0.5799863743595779,-0.2374765002168715,-0.18137405486777425,-0.36040323274210095,-0.8593231397680938,-0.600100033916533,0.7587593668140471,-0.7411850350908935,0.4194239219650626,-0.5740136941894889,-0.1868876265361905,-0.5678517869673669,0.36899788631126285,0.601355504244566,0.42400454776361585,-0.7619745209813118,0.41624440299347043,0.8948110933415592,0.6212049783207476,0.4676487990655005,-0.7298549748957157,0.43948550848290324,0.06456028437241912,0.9247871516272426,-0.8686281852424145,0.37221303256228566,-0.06935482658445835,-0.1891198423691094,-0.07721251016482711,-0.3318772865459323,-0.40008615236729383,0.19110314873978496,0.25005378341302276,-0.672811487223953,0.5808645044453442,0.46005445625633,0.06510137720033526,0.24509062618017197,-0.3302594185806811,0.5694451611489058,-0.515729249920696,0.15253181802108884,-0.624824311118573,0.44289935240522027,-0.00406224001199007,0.8356127473525703,-0.33009242871776223,-0.9061330379918218,-0.29623357532545924,0.37965477583929896,-0.7891651405952871,0.13966160733252764,0.18185379495844245,0.17074338579550385,-0.8377772546373308,0.806072757113725,-0.8377877264283597,0.4129711319692433,-0.9754326762631536,-0.09082452254369855,-0.09260609559714794,-0.8381140036508441,-0.26286116521805525,0.7417323398403823,-0.7896222798153758,0.23619544226676226,0.34679127112030983,-0.32693018997088075,-0.17060256004333496,-0.8744690604507923,0.6439303266815841,0.4507430540397763,0.4028614000417292,-0.0435101636685431,-0.032314873300492764,0.6322921952232718,-0.7796620125882328,-0.8313288008794188,0.3344958326779306,0.7574487323872745,0.20030591636896133,0.08112200908362865,-0.6892194002866745,-0.13151955977082253,-0.7498442581854761,0.5426597250625491,0.43607687298208475,0.503077429253608,-0.20996981533244252,0.511978184338659,-0.94929518410936,0.22546076448634267,-0.16351993847638369,-0.8176632011309266,0.7946256645955145,-0.025714472867548466,0.08447798062115908,0.2129764282144606,0.6587546556256711,0.7651213528588414,-0.022874243557453156,-0.10340440785512328,-0.044034138321876526,-0.3986932625994086,-0.3742312337271869,-0.531259753741324,-0.8702237941324711,0.9439913588576019,0.014154652133584023,-0.9273164034821093,-0.1846017437055707,-0.9325131201185286,0.19929705979302526,-0.5390083715319633,-0.9943511136807501,0.42369512654840946,0.19458348816260695,0.21720084873959422,0.96793466899544,-0.29596135625615716,-0.5597583195194602,-0.7312636799179018,0.1952859633602202,0.9540714407339692,-0.1098622614517808,-0.1764631075784564,-0.8613690282218158,-0.26475708233192563,-0.4403536110185087,-0.0346619407646358,0.9514415888115764,-0.7090801163576543,-0.35179585218429565,0.8273224211297929,-0.732988397590816,-0.5806650370359421,0.8696191259659827,0.677636512555182,-0.20661239605396986,-0.9452597959898412,-0.6896416754461825,0.812802198342979,0.7449958617798984,0.3212838629260659,0.339569210074842,-0.5435628048144281,0.954938699491322,0.04939805902540684,0.3935328680090606,-0.7375387833453715,0.07858506357297301,0.410492530092597,0.8053141497075558,-0.298365272115916,-0.5093089397996664,0.7323456294834614,-0.8035194864496589,0.9235473205335438,-0.7379523441195488,0.3702045725658536,0.8189383265562356,0.18073363415896893,0.548472658265382,0.43885628040879965,0.35956227546557784,-0.4396857493557036,0.9170513828285038,-0.3290386535227299,0.8322516940534115,-0.3665692671202123,0.3555920356884599,-0.827933416236192,0.2530669718980789,0.5482182060368359,0.26182213285937905,0.9880367093719542,0.3951762290671468,-0.19556357339024544,0.6973703973926604,-0.6580783692188561,-0.37877831142395735,0.25939870718866587,-0.8230387158691883,0.7625744086690247,-0.10274314833804965,0.5927534806542099,0.9758173571899533,0.6320127774961293,-0.45598720852285624,-0.6465400853194296,-0.9456173456273973,-0.45894311740994453,0.1846619015559554,0.47850743029266596,0.6837407541461289,0.5200213110074401,0.8139446610584855,0.5151827344670892,-0.26304893055930734,-0.2454261346720159,0.027801109943538904,-0.5149047649465501,0.28868371015414596,-0.8348040785640478,0.46670430013909936,0.6911807358264923,0.25709941191598773,0.18436941551044583,-0.929482186678797,0.9396383841522038,-0.6431470881216228,-0.47865579510107636,0.941246357280761,0.6914126994088292,0.14431132236495614,0.2817752016708255,-0.7024624436162412,0.25178057746961713,-0.37159053748473525,0.7174166613258421,0.2499375380575657,-0.33232597168534994,0.7614317769184709,0.272671380545944,-0.5715741664171219,-0.026411439757794142,0.5468479017727077,-0.5364105710759759,0.6831197259016335,0.6595468204468489,0.5570769007317722,0.1333301393315196,-0.15470620803534985,0.24293786846101284,0.07948808372020721,0.48865992669016123,-0.8546665296889842,-0.2814038610085845,0.767239750828594,-0.8669437770731747,-0.44275965355336666,-0.8085633688606322,0.08507238933816552,-0.8477706615813076,-0.10829043854027987,0.2777057155035436,0.12268340075388551,0.551521809771657,0.9796447507105768,-0.8241804791614413,0.5392909697256982,0.18048199359327555,-0.3843995872884989,-0.21031870506703854,0.7230822965502739,-0.09320133971050382,-0.15740400878712535,0.07866283506155014,-0.4523460827767849,0.4807161041535437,0.6355391880497336,-0.40602549258619547,0.9282136410474777,-0.13077433733269572,-0.32307207863777876,0.00920402817428112,0.854359248187393,0.553822438698262,-0.6883558500558138,-0.8040481409989297,-0.1403700546361506,0.42843883018940687,-0.229506426025182,0.9303641375154257,-0.8215582896955311,0.9515263456851244,-0.035731976851820946,0.9276411128230393,0.9228656175546348,-0.04960933653637767,-0.6231499826535583,-0.2739385385066271,-0.6818695622496307,-0.795722943264991,0.7142670145258307,0.2423044885508716,-0.8229373288340867,0.4839811255224049,-0.39905928121879697,-0.9244141583330929,-0.6347910892218351,-0.11643340205773711,-0.4178850422613323,0.8273240947164595,-0.8987360531464219,0.342796862591058,0.997675973456353,0.06847575213760138,-0.14839891763404012,-0.34979202412068844,-0.9028600044548512,0.4647711645811796,0.19769091811031103,0.39515436673536897,-0.7337977979332209,-0.8606563294306397,0.9673972465097904,-0.8065189002081752,0.46888671768829226,0.2416858095675707,-0.04554067924618721,-0.36299893260002136,0.14712288929149508,0.7159161833114922,0.19110152823850513,-0.6047414168715477,0.31767756352201104,0.6175057794898748,-0.7610047925263643,0.37491947831586003,-0.5898293042555451,0.920741394162178,-0.962653691880405,-0.251558187417686,-0.7452714922837913,-0.5717035448178649,0.22865984169766307,0.35528199560940266,0.8936206880025566,0.6911138258874416,-0.525291062425822,0.7913111448287964,0.7579929954372346,-0.6367612504400313,0.5678172139450908,-0.5107983993366361,0.16130609484389424,-0.5612704176455736,0.43288217252120376,-0.15194187127053738,0.587778496555984,-0.12887023109942675,-0.6081312140449882,0.48747194232419133,-0.6913306363858283,0.35211960785090923,0.6258643865585327,-0.9553930894471705,-0.7018839963711798,0.17104633525013924,0.6116934828460217,-0.8231774684973061,-0.41682777367532253,0.506836605258286,-0.5694107664749026,0.5337868896313012,-0.07105601020157337,-0.8191185058094561,-0.8600570657290518,-0.9528294391930103,-0.6818040651269257,-0.3855381296016276,-0.061395099852234125,0.7638702867552638,-0.02796168252825737,0.10016867704689503,-0.0955781820230186,-0.3930027852766216,0.11148086842149496,0.788716902025044,-0.9412310151383281,0.6578700453974307,-0.1851981650106609,-0.33866219967603683,0.06450924230739474,-0.8658374380320311,0.9592936355620623,-0.6340163578279316,0.22958515724167228,-0.5968709737062454,0.9724078685976565,-0.7143402392975986,-0.5456734457984567,0.7377285012044013,-0.8216775064356625,-0.8089089123532176,0.5269113145768642,0.3377577168866992,0.34448900585994124,0.9077186016365886,-0.23632694222033024,-0.5364018650725484,-0.7717136186547577,0.6139080449938774,-0.21068326756358147,-0.4036876317113638,-0.3791554784402251,0.7670285548083484,0.8977625044062734,-0.5049982154741883,-0.11747981328517199,-0.4047427838668227,-0.14392206678166986,0.734601856674999,-0.8450699704699218,0.08617602800950408,0.2850303971208632,-0.11409356165677309,-0.2863654247485101,0.533336085267365,-0.1458039367571473,-0.4933755323290825,0.6107053020969033,-0.2074100524187088,-0.9781362633220851,0.7615860677324235,0.9011683077551425,-0.5179640804417431,0.6955276913940907,0.5844519454985857,-0.45882768277078867,0.5247369725257158,-0.7358514559455216,0.34346100967377424,0.7668736474588513,-0.9420408518053591,0.5401389943435788,-0.21305287536233664,0.33703076327219605,-0.38310338417068124,0.9614268373697996,0.12065598322078586,-0.29394610365852714,0.7125324960798025,-0.031299923080950975,-0.9192927996627986,-0.5342493560165167,0.4396909852512181,-0.631843336392194,0.7971355705522001,-0.35890157194808125,-0.17416295781731606,0.3590439008548856,0.6940054865553975,0.10029794787988067,-0.10183444153517485,0.33092064317315817,0.667796344961971,-0.2525066644884646,-0.3849796033464372,-0.5966376182623208,0.38036879105493426,0.36217018542811275,-0.17526145465672016,0.3858480043709278,0.6234955172985792,0.3047657539136708,0.09513035835698247,-0.8128812480717897,-0.9295639405027032,-0.04181187925860286,0.5021788473241031,0.274018288590014,-0.9117073458619416,-0.1776435561478138,0.9298773044720292,0.22263681376352906,0.4683837741613388,-0.9163654809817672,-0.11867740657180548,0.6755835791118443,0.12124823732301593,-0.15332733048126101,0.8424296430312097,0.27239969139918685,0.5126466271467507,0.8035197928547859,-0.5494874604046345,0.6658770060166717,0.12877078680321574,0.16867217794060707,-0.19215895142406225,-0.9493822255171835,0.8208253472112119,0.7830841136164963,0.8962692371569574,0.5951409200206399,-0.02197175705805421,-0.876176371704787,-0.9533267454244196,-0.785892775747925,-0.32378726871684194,-0.4452575230970979,0.08776639821007848,-0.9282815922051668,-0.9402701770886779,-0.39255923265591264,-0.7413110928609967,-0.18430950259789824,0.7251214175485075,-0.22954342514276505,0.07073308946564794,-0.3252690206281841,0.3494025287218392,0.26299237878993154,0.3679153244011104,0.1072348952293396,-0.8067421442829072,-0.07087345886975527,0.6153610749170184,0.4358172928914428,0.7696132264100015,-0.22483191452920437,-0.6257087620906532,0.9650766104459763,-0.6310907923616469,-0.8698420878499746,-0.10546046309173107,-0.3641816503368318,-0.23576747113838792,-0.14369331439957023,0.9063678388483822,-0.46804939955472946,-0.9630131074227393,-0.2475414238870144,-0.5870341374538839,0.5736731463111937,-0.3637326853349805,0.034048909321427345,0.5558320758864284,0.818297500256449,0.5569602311588824,-0.22072310280054808,0.2626309101469815,0.607842524535954,-0.6296170265413821,-0.4632102753967047,0.7553790998645127,-0.16287909215316176,0.33812110172584653,-0.5448903306387365,0.672871389426291,0.6205559428781271,0.37899270514026284,0.3719012220390141,-0.4178694128058851,0.6280681453645229,0.4339654487557709,-0.7183366985991597,0.4338781530968845,0.3775250520557165,0.9509635083377361,0.40938025806099176,-0.711617334280163,-0.7134652039967477,-0.8883611406199634,-0.4583321800455451,-0.13318804325535893,0.7972651226446033,-0.8285603909753263,0.7626845389604568,0.3171604876406491,0.2713433033786714,-0.1917004263959825,-0.3806953630410135,0.27202496072277427,-0.5272960695438087,0.4041136158630252,0.8092418876476586,-0.07239222899079323,-0.42154659563675523,-0.8360654166899621,-0.8705780897289515,0.8595299771986902,-0.9862148663960397,-0.22889806563034654,-0.04955843649804592,0.929129846394062,0.5479112970642745,-0.3612286988645792,0.9995187106542289,-0.7047734968364239,-0.8008644529618323,-0.7578928079456091,0.7427217490039766,-0.14367388654500246,-0.5740450476296246,0.0418008784763515,-0.9725311538204551,-0.9817490293644369,0.05986907426267862,0.39276688918471336,-0.3370196567848325,0.6948879058472812,0.0674931681714952,-0.6172636179253459,0.7394951041787863,-0.3647069688886404,0.987346671987325,0.34041067538782954,0.8470190172083676,0.1970645277760923,0.9528041034936905,-0.04698500921949744,0.7787030134350061,0.36426404817029834,0.06709587248042226,0.5264250878244638,-0.6299643493257463,0.10607808781787753,-0.37862122850492597,-0.8191529349423945,-0.12223425880074501,-0.8681262210011482,0.38486615801230073,-0.829387856181711,-0.5229045148007572,0.5875988900661469,-0.7689435137435794,0.039454438257962465,0.0327522256411612,-0.6583905830048025,-0.6286816368810833,-0.10449817776679993,0.8844877728261054,-0.31449080212041736,-0.16997260227799416,-0.8829970946535468,-0.733379662502557,0.6191767072305083,-0.0004595639184117317,0.31594713078811765,0.5095913521945477,0.2862879349850118,0.32399962469935417,-0.6654606610536575,-0.42055560648441315,0.8443566742353141,0.9240171238780022,0.5942910728044808,0.20379777299240232,-0.8969112411141396,-0.3254514103755355,0.8321794592775404,0.473998264875263,-0.18411866715177894,-0.1398145784623921,-0.3894302654080093,0.19271979620680213,0.12120754783973098,-0.8478478188626468,0.7577901524491608,-0.33638658188283443,0.8300061570480466,0.6245748591609299,-0.9104667496867478,-0.13682743487879634,0.6863650903105736,0.6614456437528133,0.4011850953102112,-0.866181812249124,0.652091761585325,0.9584012324921787,0.7596634551882744,0.600892476271838,-0.43060645274817944,0.11670616175979376,-0.5158540196716785,-0.07792998012155294,0.369720000308007,0.204728324431926,-0.5225197691470385,0.16590871568769217,-0.5847116988152266,0.33620500890538096,-0.8265342293307185,0.47156944777816534,0.08659173361957073,0.6377147454768419,0.8161805979907513,0.541227416601032,-0.01578929740935564,0.5637462441809475,-0.6419027331285179,-0.7087653656490147,0.9496268001385033,0.36691155890002847,0.29031002474948764,-0.7822427311912179,0.4535573902539909,0.9377791890874505,-0.17340608360245824,-0.5607787282206118,0.4387198630720377,0.5108857238665223,0.8978058751672506,0.842529536690563,0.9947497807443142,-0.46656162943691015,-0.8287321021780372,-0.4052930320613086,0.5178880132734776,-0.3927213726565242,0.7164057265035808,-0.9031997346319258,0.9268098385073245,-0.39183224737644196,0.5153625546954572,0.30543681094422936,0.5167794218286872,0.8763428032398224,-0.4732163609005511,-0.568299688398838,-0.9444021335802972,-0.7036360166966915,-0.8274647081270814,0.3396218162961304,-0.7576322122476995,-0.3948591882362962,0.7664278689771891,0.1788882208056748,-0.7398531991057098,0.048070716205984354,-0.019469643011689186,0.2173908925615251,0.07681631296873093,0.5208904854953289,-0.3659106893464923,0.047699118964374065,0.8882321938872337,-0.1107473555020988,-0.7789184879511595,-0.6411960837431252,-0.7985920100472867,-0.09461546968668699,0.7811997164972126,-0.028810469899326563,0.2998069724999368,0.04832974961027503,-0.2128768595866859,-0.027693822979927063,-0.023784860037267208,0.9546497808769345,-0.08230763580650091,0.1511727380566299,-0.20982701517641544,-0.42141974857077,0.7779157678596675,-0.8605827270075679,0.46915132785215974,-0.5158759714104235,-0.1029862123541534,-0.9458205103874207,0.8542521013878286,0.12816123943775892,0.6936998232267797,-0.47831913689151406,0.11788553511723876,-0.1752124037593603,-0.6796571617014706,0.28413517121225595,0.11983149824663997,-0.5602003149688244,0.3196373973041773,0.8944511516019702,-0.9658650471828878,0.9790971791371703,-0.9442808898165822,0.1731605059467256,0.6601380980573595,-0.2102234773337841,0.8852667617611587,0.474067154340446,-0.5162953636609018,-0.8665567152202129,0.3604472344741225,0.5365372397936881,0.3228241321630776,0.9436936592683196,-0.22693540574982762,0.9133086041547358,-0.7958401357755065,-0.7664720229804516,-0.7298849257640541,0.978006006218493,0.002203981392085552,-0.29187628999352455,-0.49964103009551764,-0.06458979891613126,0.6968982177786529,-0.7385287536308169,0.8717397879809141,-0.3004541234113276,0.7203211118467152,0.8993655699305236,0.6334047317504883,-0.43431046651676297,-0.1992388484068215,-0.6263107368722558,0.9455098723992705,0.40223181433975697,-0.4953737845644355,0.6646231589838862,0.18965813284739852,-0.9091431112028658,0.6258451067842543,0.5436828043311834,-0.6210011625662446,-0.23583090584725142,0.8144064592197537,0.6297418065369129,0.5326400198973715,0.0746837230399251,-0.9229074330069125,0.4590866742655635,0.5146935423836112,0.21695466712117195,0.4650684129446745,0.5051671280525625,-0.7316784812137485,-0.4796271319501102,0.49937324598431587,-0.07611383777111769,0.6887312312610447,-0.35996036138385534,-0.6735992734320462,-0.508499052375555,0.541372325271368,-0.23759138584136963,-0.9486617995426059,-0.2754454188980162,0.8613539836369455,0.42303629592061043,0.28180901426821947,0.5516369924880564,-0.7405310240574181,0.025367266964167356,-0.47466906253248453,0.5766572374850512,0.3793568522669375,0.7173038264736533,0.80440115602687,-0.08603394543752074,0.06592602003365755,0.6834960891865194,-0.5749626187607646,-0.2986436588689685,-0.6878885091282427,0.8622328378260136,-0.44598459312692285,0.048702838364988565,-0.36666807718575,-0.5496116206049919,-0.8470978331752121,-0.03487582691013813,0.11727481242269278,-0.2692719092592597,-0.020406766794621944,-0.12928243167698383,0.6621741820126772,0.2217653295956552,0.9729043133556843,0.31081086164340377,0.35509777488186955,-0.2797590931877494,0.9762263954617083,0.8037600736133754,-0.3919194592162967,0.29100957000628114,-0.35406261729076505,0.6419837293215096,0.3102435991168022,0.6049600564874709,-0.8272341010160744,0.7401597420684993,0.3068868489935994,-0.42353458935394883,0.21101822145283222,0.7398935174569488,-0.0733645660802722,0.9883196852169931,-0.5477560576982796,0.7285642120987177,0.5854816241189837,0.5396128119900823,-0.5506389732472599,-0.616126258391887,-0.53487539710477,0.744715865701437,-0.26651747431606054,-0.7473359676077962,0.05802601110190153,-0.6127566294744611,0.5837000329047441,-0.5661455010995269,-0.6132035716436803,0.355957321356982,-0.5684887990355492,0.045349201653152704,0.807996307965368,0.7807730934582651,-0.8631210061721504,-0.7658581975847483,0.27856115717440844,0.6036519231274724,-0.07595367962494493,0.7240544455125928,0.7499978514388204,0.3137130350805819,-0.14328281907364726,-0.49738665390759706,-0.4149758368730545,-0.6372675024904311,0.8026227680966258,-0.07509287679567933,-0.4387447042390704,-0.33158077532425523,0.5689948927611113,0.3910113777965307,-0.6991491159424186,-0.4319769600406289,0.0856690020300448,-0.6038702474907041,0.818384856916964,-0.15937481774017215,0.0805427017621696,0.803397745359689,0.23233860032632947,0.13643524516373873,-0.6538305701687932,-0.09823098313063383,-0.24083616863936186,-0.9687946299090981,-0.08783545019105077,0.4465574244968593,-0.27849579881876707,-0.5438391729258001,-0.8993868641555309,0.5077417772263288,0.9917201516218483,-0.3988895178772509,0.8444550125859678,-0.05483456701040268,-0.7432812871411443,0.8893428416922688,-0.3813371411524713,-0.16291168611496687,0.4169627605006099,0.23328834399580956,-0.3207294079475105,-0.5766420857980847,0.7070902637206018,0.12930342089384794,0.3639156031422317,0.5218751989305019,-0.4591233734972775,-0.8018128876574337,-0.9715060703456402,0.7575335786677897,0.4220489850267768,-0.30464343074709177,-0.1851106001995504,0.6956229959614575,0.7289724736474454,0.7328354464843869,0.4580966206267476,0.9515117267146707,-0.9590674350038171,-0.4435242833569646,0.23512068716809154,0.10056207235902548,0.2997281877323985,0.0034772949293255806,0.46398865757510066,-0.22669730661436915,0.4146441174671054,0.042455908842384815,-0.5223588570952415,0.3782016080804169,0.39363370509818196,-0.8782609729096293,-0.714619982521981,-0.9653740199282765,0.7829982717521489,-0.9503163252957165,-0.021154312882572412,0.08701601484790444,0.5212988164275885,0.41558479052037,-0.847599221393466,0.5641322834417224,-0.3883905834518373,0.8867420298047364,0.057450718246400356,0.9313150690868497,-0.8225015103816986,-0.0818470916710794,-0.07822427386417985,-0.4333329489454627,-0.639107599388808,-0.4388551930896938,0.12933003576472402,0.9035440953448415,-0.810129904653877,0.49957578256726265,-0.8321973849087954,0.5482400367036462,0.41136732371523976,-0.36889487924054265,-0.004460676107555628,0.15699487552046776,0.9146224297583103,0.6728134709410369,0.942290146369487,-0.6934767551720142,-0.25056167319417,-0.045977727975696325,-0.05233453866094351,-0.6491987174376845,-0.7683789920993149,0.3392810206860304,0.9953153287060559,-0.4125589285977185,0.1654344741255045,0.5395104670897126,-0.4842055509798229,0.35541592771187425,-0.6960746692493558,-0.06670817360281944,0.4483804404735565,-0.5619492554105818,-0.8488558726385236,0.5458549289032817,-0.9286964079365134,0.6935626794584095,-0.1272466774098575,-0.6077988278120756,-0.9739101929590106,0.45512512139976025,0.8200996411032975,0.7157670930027962,-0.9395426795817912,-0.9905738574452698,-0.2843313994817436,-0.215006984770298,0.2400520178489387,-0.7737243911251426,0.15206760028377175,0.38422768749296665,0.11906429845839739,-0.7550862403586507,0.7845704085193574,-0.11622986616566777,0.12730903550982475,-0.3588668364100158,0.9604963082820177,-0.205000308342278,-0.6264163362793624,-0.5072558522224426,-0.9706654311157763,0.13831204501911998,-0.8230004077777267,-0.10375113459303975,0.3552183201536536,-0.5605287225916982,-0.4859598553739488,-0.7879221574403346,0.9746813620440662,0.701368689071387,0.7553665274754167,0.22732573747634888,0.8162911022081971,0.4450040962547064,-0.7335720490664244,0.8561404179781675,-0.5297273714095354,-0.6194214401766658,0.3702656398527324,-0.18714225944131613,0.5584326679818332,-0.8418103563599288,0.8629660354927182,0.6443895874544978,-0.59244275232777,-0.1331103784032166,-0.8707778053358197,-0.9838962201029062,0.6344532780349255,-0.7113468344323337,0.8743578824214637,0.5051761376671493,-0.3775410824455321,-0.1225042836740613,0.19976560631766915,0.12269431725144386,0.6382677294313908,-0.10936189815402031,-0.9949291790835559,-0.8837128612212837,0.7820438994094729,-0.7168041556142271,0.9489735658280551,-0.15693373885005713,-0.08280022628605366,-0.24514539493247867,-0.9258275660686195,0.6188816074281931,-0.48795699840411544,0.07317528920248151,-0.9290164760313928,0.8991720215417445,-0.38923561526462436,-0.1540333479642868,-0.5930394981987774,0.8028847766108811,0.33410619106143713,0.03614454437047243,-0.4669662993401289,-0.05123179452493787,-0.6717403321526945,0.0286519811488688,-0.9407141995616257,0.8921113288961351,0.38676054356619716,0.534114764072001,-0.8656838797032833,-0.9490204616449773,0.0035836240276694298,0.5194318750873208,0.8645666469819844,-0.14875469962134957,-0.267534373793751,-0.26678147027269006,-0.2326559699140489,0.40338926296681166,0.31920745922252536,-0.7255619666539133,-0.794756437651813,-0.30105786258354783,0.9759513549506664,0.8488125437870622,0.0577891506254673,0.9398966981098056,-0.5760372462682426,0.7276839558035135,0.002021530643105507,0.9645706242881715,0.7761178961955011,0.14691831590607762,-0.10512125585228205,-0.5387731264345348,0.2914737369865179,0.6386399231851101,0.47157807275652885,0.7187896445393562,0.7629310772754252,0.0515727661550045,0.2393231326714158,-0.972334030084312,-0.8965919050388038,-0.3667881232686341,0.011511622462421656,-0.5210225572809577,-0.21606364380568266,0.4464959339238703,-0.9652489917352796,0.2708152146078646,-0.9642439987510443,-0.18874884909018874,-0.4967017872259021,0.26497431891039014,0.8417473393492401,-0.5665624113753438,-0.4260531160980463,-0.546819319948554,-0.755560670979321,-0.5405597146600485,0.7814674410037696,-0.28502746764570475,0.18405420938506722,-0.5991374221630394,-0.6607914236374199,-0.35870328126475215,0.7519244602881372,-0.880392974242568,0.3503196598030627,-0.31838437309488654,-0.4286868334747851,-0.9244038900360465,0.994714068248868,-0.7733179219067097,0.13982956018298864,0.6208800543099642,-0.5898558353073895,-0.5554524227045476,0.12635983526706696,0.5752796134911478,0.9366241716779768,0.23030811455100775,0.41183828422799706,-0.2826411579735577,-0.5291539235040545,-0.804013785906136,-0.6012341543100774,0.5435063452459872,-0.4974642223678529,-0.31326253106817603,0.2501298161223531,-0.16383238043636084,-0.6864455342292786,-0.24044045945629478,-0.0068544652312994,0.7527200593613088,-0.8233651639893651,-0.3829712732695043,0.9700373657979071,0.7949904594570398,0.3592623104341328,-0.5152634717524052,-0.3024117983877659,0.07522997818887234,0.27606735471636057,0.7418173705227673,-0.13967397157102823,0.14609508076682687,0.1749159563332796,0.06485542142763734,0.8376323040574789,0.548062632791698,-0.04884191229939461,-0.3002953710965812,-0.1997793661430478,-0.15932763228192925,-0.886763955000788,0.00865714717656374,-0.35963106201961637,-0.05482242023572326,-0.1454122648574412,-0.06354597955942154,0.35281683690845966,-0.8120705424807966,0.7709245216101408,-0.8538701538927853,0.11973240738734603,0.009945019613951445,0.7612940138205886,0.37700670398771763,0.8288670694455504,-0.612049509305507,-0.8768967064097524,0.9038605983369052,0.7748673306778073,0.39512093365192413,-0.7038711975328624,0.01665201596915722,0.3813787065446377,-0.4506979491561651,0.9122892706654966,0.330762249417603,-0.8786965156905353,0.28164668707177043,-0.2624241807498038,0.24318435974419117,0.6310606515035033,-0.2746178484521806,0.3514543352648616,0.5617307480424643,-0.868654262740165,0.6397272376343608,-0.6237144200131297,0.317965978756547,-0.6237934930250049,0.06578093999996781,0.8766741347499192,0.9712626943364739,-0.31729676201939583,0.26944228122010827,0.11354435235261917,-0.1614775680936873,0.7072306531481445,-0.92539266590029,0.6765159112401307,0.8070074175484478,0.38533377926796675,0.4911103369668126,0.7116099679842591,0.07226555049419403,0.4357235673815012,-0.7104928782209754,0.9015734740532935,-0.5021056095138192,0.7082719872705638,-0.5493997558951378,0.8262088475748897,0.8725019367411733,0.5849723946303129,-0.5088875601068139,-0.8560083657503128,0.580716407392174,0.1502523310482502,-0.662176575511694,0.0027244198136031628,-0.520162446424365,0.4996357993222773,-0.8052424471825361,0.7456139852292836,0.9724179799668491,0.3769298424012959,-0.5802555875852704,-0.506107943598181,-0.33357177302241325,-0.04647747240960598,0.4011193299666047,0.385504899546504,-0.24057849310338497,-0.15904894284904003,0.5748972478322685,0.3245139424689114,0.7429683096706867,0.8570794654078782,-0.55729163531214,0.2641831338405609,0.2907913695089519,0.04012770298868418,-0.134273880161345,0.6479462613351643,-0.00468884501606226,-0.19211696600541472,-0.15969788236543536,0.9560287338681519,-0.9472752027213573,-0.7663722648285329,-0.7979975380003452,0.11265165125951171,-0.49498432502150536,-0.7294999742880464,0.5189528623595834,-0.6966491811908782,0.9934808961115777,-0.19438472855836153,-0.062130264937877655,0.6982369530014694,-0.6838386687450111,0.4433887619525194,-0.4485085760243237,0.2664799727499485,-0.7026461395435035,-0.6282049235887825,0.89809690695256,-0.452864991966635,0.5581280458718538,-0.8826263882219791,0.8508709836751223,-0.9828191753476858,0.3548648222349584,-0.7432257723994553,0.7481366419233382,-0.37716400157660246,-0.4341576639562845,-0.03656176524236798,0.9151212270371616,-0.23127377266064286,-0.2860963619314134,-0.18369342060759664,0.7450577123090625,0.8076660591177642,0.8087486368604004,-0.6002382528968155,0.6580705242231488,0.7697478635236621,0.6242318046279252,-0.3616555300541222,-0.5018394496291876,0.23525029374286532,0.07306665368378162,-0.7972346292808652,-0.3206064230762422,-0.11895008571445942,-0.47870974242687225,-0.6840997943654656,0.8066608216613531,0.5288390782661736,0.2884503132663667,0.8165527223609388,0.4024068512953818,-0.8382146912626922,-0.4121646420098841,0.9179204544052482,0.6566270859912038,0.9792511407285929,-0.017490067053586245,-0.7834719819948077,0.08646882837638259,0.7328133461996913,0.8350176056846976,-0.19811624707654119,-0.8726510410197079,-0.9632594073191285,-0.7122237263247371,0.9674238483421504,-0.6997469305060804,-0.994190831668675,-0.5830529010854661,-0.4191763950511813,-0.43450637720525265,-0.9541369853541255,0.3868275252170861,-0.5961142438463867,-0.5950703183189034,-0.5410168170928955,-0.8193408087827265,0.8334994846954942,0.16506959544494748,-0.097511428873986,-0.740602133795619,-0.5303823538124561,0.6287861615419388,-0.23368309531360865,0.1525634629651904,0.9489745344035327,0.9802580680698156,0.8952103392221034,-0.7009697342291474,-0.48270778032019734,-0.9026470389217138,-0.5666009266860783,0.8039328106679022,0.9435075121000409,0.10880246572196484,-0.5398890012875199,-0.9028363274410367,0.06087884260341525,-0.9930144655518234,-0.42513947654515505,0.7106773904524744,0.739593175239861,-0.19907397450879216,0.7171367690898478,-0.5777589287608862,-0.23479642160236835,-0.9326053569093347,0.8318755333311856,0.41957812244072556,0.2881368473172188,-0.5067118308506906,0.24732101382687688,-0.09998876415193081,-0.5594221809878945,-0.5182256428524852,-0.6073779943399131,0.6717863096855581,-0.35599779384210706,-0.2888781069777906,0.20990400994196534,-0.6248051994480193,-0.6555220270529389,0.4949404741637409,0.4080714676529169,-0.3619937994517386,-0.8589282603934407,0.2407083548605442,-0.6214145715348423,0.4281702218577266,-0.9002618370577693,0.25454437639564276,-0.40895509999245405,-0.2125026169233024,0.864324850961566,0.7116307616233826,0.7492617797106504,-0.5457447473891079,0.9735604785382748,-0.09633615240454674,0.35564967105165124,-0.4240389596670866,0.7762697613798082,-0.7439464596100152,0.8318977798335254,0.8444756367243826,0.9094839096069336,-0.9065331015735865,-0.7965640351176262,-0.3792427880689502,0.3423887542448938,-0.9749493831768632,-0.7345493044704199,0.5519931493327022,0.19391133589670062,-0.18727194657549262,-0.77908397000283,0.44485632702708244,-0.3469787137582898,-0.5726317721419036,0.6522809551097453,-0.10836514458060265,-0.852817649487406,0.4236973524093628,0.5208674510940909,-0.9640925484709442,0.5575254838913679,0.7252430142834783,0.42522052163258195,0.28364526480436325,-0.821129226591438,-0.7151689985767007,-0.12893159175291657,-0.5585944089107215,0.15292548155412078,-0.3179375040344894,-0.02924144733697176,0.9186276597902179,0.16938690235838294,0.1301640858873725,0.8518788698129356,-0.9307003356516361,-0.9150927350856364,0.6677398127503693,-0.2195093994960189,0.5905883754603565,0.6321526141837239,0.6507416726090014,0.4848081646487117,0.8901412659324706,0.10948593448847532,0.6048482358455658,0.6951211728155613,0.462345858104527,-0.5590805169194937,-0.6524036014452577,0.955952936783433,-0.3243309943936765,0.8999835369177163,0.41718221828341484,0.4789442722685635,0.5969204856082797,0.11350359441712499,0.09867476159706712,-0.8983408184722066,-0.12737312633544207,0.6574326395057142,0.4117999216541648,0.47057077242061496,0.878443734254688,0.4921833095140755,-0.4604413015767932,0.31673229578882456,0.5118190031498671,-0.4170202757231891,-0.5119031788781285,-0.5132455858401954,0.5956008909270167,0.3243572977371514,-0.29924434376880527,0.7446511960588396,0.2679440239444375,0.41629669023677707,-0.8925958010368049,-0.15042657312005758,0.724111913703382,-0.8489694576710463,0.9480574671179056,-0.4614035179838538,-0.7967053093016148,-0.32879161555320024,-0.8119128323160112,-0.6789880525320768,-0.3088440955616534,0.6731656105257571,-0.603821984026581,0.9970225049182773,-0.9406565660610795,0.4354514549486339,-0.03388971509411931,-0.39674375811591744,0.8816719413734972,0.36933507584035397,0.5668262620456517,-0.9449167395941913,0.1510114255361259,0.7369685438461602,-0.1755375750362873,0.8559602173045278,-0.5407753502950072,0.39650794165208936,-0.09181888494640589,-0.43201202852651477,-0.006150274537503719,-0.7662779204547405,0.20643092412501574,0.0042306664399802685,0.0253933509811759,-0.4269102546386421,0.6079973727464676,0.6515728305093944,0.5333056543022394,0.4867929257452488,-0.4252337133511901,-0.8539062268100679,-0.8862601732835174,-0.9313138131983578,-0.8932657488621771,-0.535906164906919,-0.5652880221605301,-0.5400984175503254,0.8719181464985013,0.0027999579906463623,0.8382623675279319,-0.776145416777581,-0.5737586286850274,-0.03697115182876587,-0.9775442313402891,0.4562863730825484,0.07101434096693993,-0.19871488166972995,0.45232627587392926,0.9265735102817416,0.8046489707194269,0.26181574165821075,-0.0072714476846158504,-0.05028595868498087,0.20163981709629297,0.4628480328246951,0.3609667965210974,0.10103752184659243,-0.15782393794506788,0.15915036154910922,0.9283052273094654,0.5941768870688975,-0.23640489811077714,0.5063673607073724,-0.8328968975692987,0.2589600021019578,-0.1009875712916255,0.6571645182557404,0.19099245686084032,0.44621706008911133,-0.09982148092240095,-0.7236960069276392,-0.21203054673969746,-0.7332012760452926,-0.09019762743264437,-0.35459885746240616,-0.38176074251532555,0.13037130096927285,0.45953741716220975,-0.8336358964443207,-0.324524724856019,-0.8396352408453822,-0.6832279046066105,0.930672740098089,-0.9869407434016466,-0.9220725246705115,0.33139837021008134,-0.643994755577296,-0.7413141583092511,-0.11790406750515103,0.049003795720636845,-0.8919328274205327,0.8362846495583653,-0.9630990475416183,0.40555095253512263,-0.04877902893349528,0.8592720068991184,0.5263787680305541,-0.2170457150787115,-0.6696874261833727,-0.6510342452675104,-0.3516434351913631,-0.7064235401339829,-0.9529403150081635,0.56807518331334,-0.3143689166754484,-0.47936743358150125,-0.3136040912941098,-0.8597716675139964,0.869909340981394,0.3082338464446366,0.8334366111084819,0.5261421012692153,-0.27861111983656883,-0.6682844012975693,-0.7993858689442277,-0.799576407764107,-0.11493138922378421,-0.606412841938436,-0.1668321299366653,0.3149753622710705,0.2459395951591432,-0.5832939194515347,0.7866107109002769,0.24546512262895703,-0.8210570500232279,0.35129677318036556,-0.1990099367685616,-0.05192921869456768,0.04948762711137533,-0.8721393160521984,-0.00019847648218274117,0.15491680428385735,0.4170437711291015,-0.3931064116768539,-0.6994670424610376,-0.33891010843217373,0.8950165049172938,0.7904978711158037,-0.6880500544793904,0.8552049458958209,0.4757684972137213,0.6215276550501585,0.4096528305672109,0.292999941855669,-0.3566089803352952,-0.07641520537436008,-0.46905573830008507,0.8076618178747594,-0.8533060899935663,-0.5277707721106708,0.6881254692561924,-0.9772619353607297,-0.9387195552699268,0.47070090286433697,-0.14627342345193028,0.23731572087854147,-0.9119214839302003,0.12124591181054711,0.8662447207607329,-0.28943832870572805,-0.12944543454796076,-0.07457435177639127,-0.5499523156322539,-0.5770679442211986,0.6753102517686784,-0.4352699900045991,0.5841252165846527,0.8670174786821008,-0.19055773317813873,-0.8454845505766571,0.04978522518649697,0.3505165381357074,-0.34608969278633595,-0.9936757986433804,-0.857215263415128,0.5030893851071596,-0.2946084924042225,-0.32616861863061786,0.5612649596296251,0.30469129234552383,-0.7873819144442677,-0.5190328909084201,-0.029206983745098114,0.8308929484337568,0.24274052819237113,-0.7366812331601977,0.4071753416210413,0.15733158821240067,0.7608319399878383,0.33081631688401103,0.15382099337875843,0.11146685481071472,0.5432568988762796,-0.3859777981415391,0.43610353069379926,0.38792872289195657,0.6484350240789354,0.9901544582098722,0.5825840150937438,-0.5268689747899771,0.2055577076971531,-0.11068622441962361,0.15393957123160362,0.4681228809058666,-0.636679204646498,-0.6305157737806439,-0.04227593960240483,-0.929114836268127,-0.26219854410737753,0.5151363499462605,-0.41976945754140615,-0.9196418547071517,-0.3345545162446797,0.5147943682968616,-0.23382203420624137,-0.42979563446715474,-0.3182690469548106,0.062375924084335566,-0.6563238585367799,0.47323568910360336,0.868048301897943,0.07706231204792857,0.5878466730937362,-0.5255697052925825,0.46489508589729667,0.39618696039542556,-0.7175480863079429,0.19156736554577947,-0.5597616676241159,-0.4922981238923967,0.19425330078229308,-0.863979950081557,-0.15485472092404962,0.9497622488997877,-0.7637512953951955,-0.07342056138440967,-0.33248267276212573,0.5113477725535631,-0.27332227397710085,0.2718897880986333,-0.7110598902218044,0.5897401319816709,-0.0824615815654397,-0.1632964489981532,-0.22856406401842833,0.7403861996717751,0.49295144248753786,0.07498781476169825,-0.7644334761425853,-0.8480720985680819,-0.14648221153765917,-0.8001211425289512,-0.21854239143431187,0.8208708013407886,-0.2097970643080771,-0.13667877251282334,-0.10324326623231173,0.5772923193871975,0.02913973806425929,-0.953946185298264,-0.08344892086461186,0.010969969909638166,0.042974678333848715,0.19667581096291542,-0.4651247262954712,-0.43148505920544267,-0.29608591459691525,-0.11126606678590178,0.5546783446334302,0.5326309115625918,-0.5914837699383497,-0.40880208974704146,0.34178938949480653,0.4686035462655127,-0.26642205798998475,0.09984577633440495,0.8853682330809534,0.1534422943368554,-0.5839920635335147,-0.301741533447057,0.08704532589763403,-0.20035870280116796,0.6421677614562213,0.9339852561242878,0.6968730818480253,-0.9666203525848687,-0.8785175113007426,0.8254246404394507,0.6128968046978116,-0.5946201821789145,-0.07470664568245411,-0.19137408304959536,-0.7155952285975218,0.2577834501862526,0.21235482627525926,0.017027223948389292,0.382187164388597,-0.2964437212795019,-0.8148837187327445,0.043779600877314806,-0.3209412763826549,-0.0493934266269207,-0.1401604195125401,-0.6222908264026046,-0.1724374215118587,0.1193306758068502,0.27232557721436024,-0.7826017597690225,0.1768349469639361,0.4877687329426408,-0.06797340419143438,-0.3800305943004787,-0.7882730653509498,-0.2861325847916305,0.5410096747800708,-0.1928541618399322,-0.7715318687260151,0.8734606048092246,-0.5348081146366894,-0.33284202171489596,-0.601117689628154,0.21456591924652457,-0.5153915314003825,0.2688223239965737,0.13344425056129694,-0.19315413339063525,0.8273776406422257,-0.823018291965127,-0.38936508633196354,0.4207964581437409,-0.16493390873074532,0.05894149839878082,0.8512235931120813,0.7428762400522828,0.4544343906454742,0.7870528069324791,-0.7688824981451035,-0.9746897392906249,-0.7727098274044693,0.930584026966244,0.6737085720524192,-0.9977316255681217,0.39507098216563463,0.753745679743588,0.7612434588372707,0.1299785114824772,0.27747500967234373,0.3330028671771288,-0.8448854284361005,0.40557366190478206,0.06329220905900002,-0.3689385633915663,-0.691759591922164,-0.9671317562460899,0.09275477705523372,-0.3653573961928487,0.26399671332910657,0.23044492257758975,-0.4319139523431659,-0.28669154131785035,-0.6849786741659045,-0.5963639495894313,-0.9783431859686971,-0.7061132164672017,-0.06784938275814056,-0.8397127506323159,-0.2760657239705324,0.7874923092313111,-0.9970555361360312,-0.7884908164851367,-0.10507759964093566,0.8526881956495345,-0.4345754748210311,0.14612040994688869,-0.14070222806185484,-0.799857234582305,0.31340883346274495,-0.7242772071622312,-0.5589975486509502,0.1630155323073268,-0.015297809150069952,-0.3776784180663526,0.6738143903203309,0.7140519376844168,0.5385909760370851,-0.5554891363717616,0.5816319640725851,-0.09335965104401112,-0.022488789167255163,0.3013387112878263,0.9200028283521533,-0.16359402565285563,0.3820803430862725,0.7354898857884109,-0.5330187305808067,-0.8175272205844522,-0.006292399950325489,0.01659296965226531,-0.38474091049283743,-0.2849130006507039,0.5747844688594341,-0.45330135291442275,0.027539418078958988,0.6209201645106077,-0.13908539805561304,-0.7004342121072114,0.9070106106810272,-0.03495236951857805,0.7465191148221493,0.585295470431447,-0.3253032108768821,-0.4271965827792883,-0.04393934831023216,-0.4944683099165559,-0.22668034909293056,0.4007319831289351,-0.9564420050010085,0.799874453805387,0.6442881412804127,0.20940185617655516,-0.09204996330663562,-0.32139174779877067,-0.6002234411425889,0.3092292440123856,0.17831457359716296,-0.05797592643648386,-0.5179692981764674,0.8015975267626345,0.3906637183390558,0.4472976364195347,0.12861301051452756,0.36015661992132664,0.903307487256825,-0.6238781902939081,0.9367918581701815,-0.38130497885867953,0.9971002908423543,0.5911124856211245,0.9315109420567751,-0.34594769682735205,-0.23372331215068698,-0.607538940384984,0.5282927821390331,-0.6296219900250435,-0.9103689296171069,-0.8113429546356201,-0.16517419600859284,0.24497416522353888,-0.12521929293870926,-0.29553556302562356,-0.7088968446478248,0.5666626254096627,0.0874403566122055,0.3369313492439687,-0.5874703009612858,0.5971605791710317,-0.3430016846396029,0.3821234912611544,0.2202795003540814,-0.0012887599878013134,-0.4391174139454961,0.9906688765622675,0.8573575369082391,-0.6583545682951808,-0.7767215836793184,-0.3493434372358024,-0.12590230768546462,0.01035298639908433,0.6805780371651053,0.8599817114882171,0.17922733118757606,0.5506579638458788,0.418391730170697,0.7336801360361278,-0.06267241761088371,-0.25946343084797263,0.8874275833368301,0.6490635611116886,-0.9062023856677115,-0.8675415930338204,0.5399697925895452,0.6696452992036939,0.7678302335552871,-0.7627080962993205,-0.7215657401829958,0.029404016211628914,0.5344005385413766,-0.42538235476240516,0.29924047365784645,0.2753949202597141,0.6824911325238645,0.6969331982545555,0.0761888506822288,-0.6081625022925436,0.13463272107765079,0.5793053330853581,0.7880069478414953,0.5672916737385094,0.6738083623349667,-0.9812852293252945,0.8908630819059908,-0.7207778207957745,-0.047739462461322546,-0.35448148660361767,-0.6541066649369895,0.1566241616383195,0.5633930428884923,0.6032386724837124,-0.21127167157828808,-0.883790725376457,0.8028684286400676,0.4700444173067808,0.7263185447081923,0.35143245197832584,-0.9480333104729652,0.40971572510898113,-0.36547883367165923,-0.40509301517158747,-0.24258457170799375,-0.9666913156397641,0.9568639397621155,0.07249018223956227,-0.3201483488082886,0.4636766957119107,-0.5347154107876122,0.9706510412506759,-0.7325858450494707,0.6801926069892943,-0.6491042519919574,-0.6648465553298593,-0.3969322796911001,-0.7671845867298543,0.46066095074638724,-0.9647011305205524,-0.1102970028296113,0.27421611035242677,0.009426783304661512,-0.02965142810717225,-0.7708510514348745,0.6149527453817427,-0.11903198016807437,0.9599230848252773,0.5903291734866798,0.09899914963170886,0.2724162256345153,-0.7639021361246705,0.9055767613463104,-0.1636198596097529,-0.6723176459781826,0.5091534606181085,-0.2871893849223852,0.42051024083048105,-0.38742981804534793,0.6301281554624438,-0.10811843816190958,-0.9856354198418558,-0.5134839210659266,-0.3056260999292135,0.9038228392601013,-0.6790189910680056,0.8075491096824408,0.8689401187002659,-0.014129593502730131,-0.7607815968804061,-0.8054261519573629,-0.7286700368858874,0.8492423393763602,-0.17455512192100286,0.8590864618308842,-0.6371125625446439,0.31873890617862344,-0.4851975799538195,0.0683956309221685,0.24843746284022927,-0.64119853079319,0.4923284286633134,-0.2258454943075776,-0.8358472404070199,-0.32891590101644397,-0.1533006625249982,-0.5260421466082335,-0.5504890670999885,0.7528376635164022,-0.8890635864809155,0.33965201396495104,0.4224557117559016,-0.8603711514733732,-0.18053908925503492,-0.881689477711916,-0.7589238663204014,0.8555927993729711,-0.8820677995681763,0.6512305778451264,-0.0817794632166624,0.9595858133397996,-0.61950160888955,0.6530613270588219,0.23713894793763757,0.6456227609887719,-0.013386983890086412,-0.7262391266413033,0.4503351370804012,0.9623050685040653,-0.7609419031068683,0.26723228534683585,0.8773099100217223,-0.5763435768894851,-0.7442305111326277,-0.16898587346076965,-0.44938265765085816,0.5995153556577861,-0.295161500107497,-0.9651847393251956,-0.41314695216715336,0.09904231503605843,0.06674507446587086,0.9173605116084218,0.5824478804133832,0.37238089134916663,0.76564214611426,-0.8841179488226771,-0.9150302978232503,-0.9004716533236206,0.9291390408761799,0.030297362711280584,0.9375502001494169,-0.4262994658201933,0.30423043947666883,0.7313068476505578,0.0703829606063664,0.2904999344609678,-0.1393521884456277,-0.9366452689282596,0.4101606598123908,-0.5192176066339016,-0.009686501696705818,-0.9967837794683874,0.8639004277065396,-0.24982401030138135,0.21659816382452846,-0.6724823997355998,0.9454015265218914,-0.19724294962361455,0.17834767000749707,-0.8307141978293657,-0.3328852984122932,-0.15661966195330024,-0.3549961429089308,0.11200606869533658,-0.8166001047939062,-0.270365827716887,-0.49188249185681343,-0.5206494140438735,-0.9075264609418809,0.4075048575177789,0.21774912998080254,-0.926521435379982,0.5258532678708434,-0.17416955111548305,-0.7083269800059497,0.3113232981413603,0.14031373895704746,0.9483685046434402,0.5236585852690041,-0.16548877069726586,0.9201939729973674,0.0055947331711649895,-0.23961393628269434,-0.3479498908855021,-0.9718357510864735,0.8054370759055018,-0.5901902839541435,-0.11509613320231438,-0.21956035727635026,-0.7817011880688369,-0.7993959789164364,-0.12489122105762362,0.0570661504752934,0.2370715131983161,0.7596177528612316,0.8770409417338669,-0.002627717796713114,-0.30815857741981745,-0.5439248871989548,-0.6879650074988604,-0.8949432298541069,0.07093877624720335,0.26630522683262825,0.5209996700286865,0.3579389676451683,-0.8574565583840013,-0.15440192772075534,0.7248711711727083,0.10899287881329656,0.7399172261357307,-0.5016376464627683,-0.7617742260918021,-0.8788577890954912,-0.45453415298834443,0.09455042984336615,0.6820851154625416,-0.4253993174061179,0.39589837566018105,0.8839720916002989,-0.8760460242629051,-0.9468235988169909,0.47951380256563425,-0.07738721510395408,0.48755151173099875,0.47745489701628685,-0.5528955310583115,-0.863137676846236,-0.9857933400198817,-0.8580450722947717,-0.11324712680652738,-0.7379703209735453,-0.7909142514690757,0.4284203480929136,0.975128707010299,-0.006060325540602207,-0.31766000762581825,0.18279934022575617,-0.49223324470221996,0.1627388852648437,-0.12865082686766982,-0.23857448250055313,-0.038888470735400915,-0.5785095179453492,0.7054764083586633,0.13298491993919015,0.37276114290580153,-0.8431058637797832,-0.3416968733072281,-0.4601719412021339,0.08158190315589309,-0.26361033134162426,0.3093204330652952,0.9888504194095731,0.5998840290121734,0.5142848482355475,0.5545673500746489,-0.2639116602949798,-0.00581001490354538,0.6333577046170831,-0.8680347735062242,-0.08134925365447998,-0.7670654808171093,0.7364172544330359,-0.5622831145301461,-0.9811742072924972,-0.1311722374521196,0.6697822813875973,0.25794267654418945,-0.12434089696034789,-0.10116231022402644,-0.9147710856050253,0.38457794580608606,0.9996692086569965,-0.5592952193692327,0.8504639705643058,0.6706952918320894,-0.07833444373682141,-0.4956526989117265,0.4217189596965909,0.4520822851918638,0.9620773233473301,0.7768385992385447,-0.22696033073589206,-0.9521776796318591,0.6902897390536964,-0.4164816262200475,-0.7971337265335023,-0.7621940616518259,-0.17789431754499674,0.45907085901126266,0.1295474166981876,-0.507785520516336,0.06689045252278447,-0.3188980594277382,-0.22164461156353354,-0.8482223739847541,0.8708292790688574,-0.6688211974687874,0.06296833045780659,-0.7293089372105896,0.08820960065349936,0.5241135489195585,0.3798392373137176,0.7146262670867145,0.6911548259668052,0.17876139283180237,-0.30801349924877286,0.34219944244250655,-0.24849262880161405,-0.6916637672111392,-0.8813808271661401,-0.10412829928100109,-0.22968624252825975,-0.9338483703322709,0.8934421767480671,0.27613205881789327,0.06833718437701464,-0.4350128290243447,0.035294645465910435,-0.08542292658239603,0.20414525223895907,-0.8258280665613711,0.12463335413485765,-0.9899214883334935,0.028097916394472122,0.7746415250003338,0.29820386273786426,-0.848455750849098,0.9236344094388187,0.22466614749282598,-0.7646464384160936,-0.7410750347189605,0.7182039488106966,-0.31790513917803764,0.32636453304439783,0.6231475565582514,-0.8632569094188511,0.774800100363791,-0.6378803513944149,-0.4028451298363507,0.24937959341332316,0.6637678728438914,-0.8387738135643303,-0.029416550416499376,0.7079221690073609,-0.8162697413936257,0.5898417485877872,0.03948230389505625,-0.17696488928049803,0.715879415627569,-0.9178076339885592,0.6824937439523637,-0.013872635550796986,-0.30532893957570195,0.12841289350762963,-0.059242754708975554,-0.6497745863161981,-0.44656140357255936,0.9046531622298062,-0.5562407593242824,0.24886976275593042,0.24858019733801484,0.05059230839833617,0.0036632055416703224,-0.8337456961162388,0.36467387108132243,0.517055825330317,0.5655589620582759,0.9230144093744457,0.2423582230694592,0.6092488514259458,-0.36275378661230206,-0.5740046878345311,-0.2397952270694077,0.46413605380803347,0.8306256383657455,0.5181443826295435,0.22647956851869822,-0.32056401716545224,0.4323567468672991,0.9556313091889024,0.4387759752571583,0.44309857208281755,0.8098956309258938,0.28920106356963515,-0.5302383117377758,0.38563948310911655,-0.8075015270151198,-0.9861761857755482,0.6328902011737227,-0.7387286573648453,0.2979829520918429,-0.2369863148778677,-0.5785801936872303,-0.9175183214247227,-0.9825899880379438,-0.1683867834508419,-0.2753771631978452,-0.100090894382447,0.16164311114698648,0.4341896753758192,0.3076062295585871,-0.5564392497763038,0.15049422392621636,0.545690234284848,0.80320795904845,0.4390781591646373,0.9774682060815394,-0.014074636623263359,0.6011458742432296,-0.4845647872425616,0.7304711597971618,0.8051368594169617,-0.4981366363354027,-0.9684738656505942,-0.801800852175802,-0.3735392647795379,-0.7188102337531745,-0.545722748618573,-0.5433975257910788,-0.3303652899339795,-0.2995356493629515,0.3181299795396626,-0.23407303588464856,-0.31956368731334805,-0.5056543597020209,0.09000428766012192,0.8336671530269086,-0.27871261117979884,-0.20464399829506874,-0.7020253697410226,0.1930088670924306,0.7971043726429343,-0.71830376656726,-0.1641642339527607,0.11974960658699274,-0.6187689607031643,-0.8242072369903326,0.7212729626335204,0.24865958141162992,0.3865901231765747,-0.445394491776824,0.21259348280727863,0.32453793613240123,-0.6045963251963258,-0.5186389437876642,0.5268490598537028,0.4441289771348238,0.48073284048587084,0.6452134950086474,-0.4501652312465012,0.465085222851485,-0.14816119335591793,-0.22429307969287038,0.4542195526883006,0.8838489558547735,0.22661046963185072,0.6253401865251362,0.48530906718224287,0.39835098246112466,-0.13593425787985325,0.5884888670407236,0.03668742487207055,0.39909259090200067,0.16030764300376177,0.9386804858222604,-0.6322553716599941,0.4997675847262144,-0.8960884427651763,-0.920634230133146,0.6684650648385286,0.8213037992827594,0.28473511012271047,0.819434764329344,0.965305283665657,0.5819191234186292,0.09756956342607737,0.18715599365532398,0.11941927019506693,-0.5360371894203126,0.5624932502396405,-0.7621754510328174,0.09228447778150439,-0.9283339926041663,0.19442703621461987,0.6661236518993974,0.0032578827813267708,-0.07549929106608033,-0.9999722330830991,-0.31907224655151367,0.3011361281387508,0.457923814188689,-0.9782029781490564,-0.19962456123903394,-0.5429406971670687,0.49119650246575475,0.3591576814651489,-0.34648380475118756,0.20776105858385563,0.8692105007357895,0.21698258956894279,-0.9969879775308073,-0.6321168374270201,-0.7114783399738371,0.29709214996546507,0.735582560300827,-0.787395357619971,0.5133660580031574,-0.07449188129976392,-0.9174370942637324,-0.059383471962064505,-0.8477401626296341,-0.8659070702269673,-0.22161602973937988,-0.3492658990435302,0.18618497252464294,-0.2961151022464037,-0.8942678375169635,-0.9414748074486852,-0.3659409713000059,0.07776830717921257,0.2708782432600856,0.3812824273481965,0.8537693256512284,0.037047012243419886,-0.4784989394247532,-0.36008521681651473,-0.4461430963128805,0.6677446076646447,0.4261050340719521,0.9242193680256605,-0.05558936158195138,0.5344992950558662,0.37549205776304007,0.6476406236179173,-0.870372608769685,-0.3336959579028189,-0.28668616246432066,-0.5086396690458059,-0.8932234114035964,-0.07683304324746132,-0.5761042339727283,0.8555245432071388,-0.4917431427165866,0.07626066263765097,0.8621244165115058,0.13094789674505591,-0.5980272796005011,0.7373116170056164,0.4626725590787828,0.6156147052533925,0.5389094655402005,0.8368333871476352,0.7815126567147672,0.9813718590885401,-0.2880275398492813,-0.5301529210992157,0.7922721370123327,0.3111915090121329,-0.28262046026065946,0.12051912350580096,-0.3645370453596115,0.5055115497671068,-0.45887986198067665,-0.1026215092279017,0.823758807964623,0.8459643041715026,0.9535966217517853,-0.14247563621029258,0.6244572936557233,-0.4447406348772347,0.34044162882491946,-0.5414059963077307,0.8615197874605656,-0.7462547793984413,0.6627761502750218,-0.7153801252134144,-0.19089955324307084,0.7968913782387972,-0.06689136801287532,-0.2857400313951075,0.3237925339490175,-0.5175366722978652,0.48259684443473816,0.45670169312506914,0.5188418384641409,-0.18191781593486667,0.20730913477018476,0.31699012871831656,0.026824702508747578,-0.6508742878213525,-0.5116806933656335,-0.8624402070418,0.5344313657842577,0.8803549916483462,-0.6871540122665465,0.8507095598615706,0.4247356755658984,-0.20204636035487056,-0.25274693919345737,-0.1443861834704876,0.037036426831036806,-0.18188729044049978,0.6999410167336464,-0.1846582842990756,0.8723831623792648,0.4963244558311999,0.36964514805004,0.9164466471411288,-0.5310541936196387,0.9287397493608296,-0.5876868064515293,-0.07205275865271688,-0.007242627441883087,0.12371371313929558,-0.855047632008791,-0.9753300729207695,-0.7761807623319328,0.09232234209775925,-0.2856113840825856,0.9823868204839528,0.13458086363971233,-0.49771559378132224,-0.5142505313269794,0.3936342145316303,-0.21856399485841393,-0.3515864494256675,0.49533649208024144,-0.48058390943333507,0.006647379603236914,-0.13917177077382803,0.09427073132246733,0.3239894788712263,0.5308077898807824,-0.9689616002142429,0.2515873936936259,0.6833520722575486,0.2509463122114539,0.6151803252287209,-0.762866738718003,0.47122855111956596,0.8185577662661672,-0.4962418247014284,0.8109546420164406,-0.27492309268563986,-0.5862358268350363,0.9840522496961057,-0.4672176497988403,0.957229059189558,-0.6586920428089797,-0.4398742327466607,0.07056146301329136,-0.589685554150492,-0.6061683027073741,0.7997489767149091,0.7183056869544089,0.4435680662281811,0.5100787235423923,-0.09862917009741068,-0.6527584888972342,-0.6568262507207692,0.8015137412585318,0.5988215832039714,0.6078518121503294,-0.07163067953661084,-0.6219449257478118,0.43004034366458654,0.2743555922061205,0.655271396972239,-0.6243567825295031,0.5221822219900787,-0.9957247297279537,0.7912550494074821,-0.3207916379906237,-0.28406986594200134,-0.09940910525619984,0.7184561751782894,-0.10798184433951974,0.4066758593544364,0.09473656490445137,0.147569774184376,0.8729326748289168,0.9911580504849553,-0.1282805260270834,0.08669487806037068,-0.8502136012539268,-0.42504458129405975,-0.1859769127331674,0.7783197006210685,-0.7998200212605298,-0.447253901977092,0.584455412812531,-0.46605210145935416,0.5421261191368103,0.2659942642785609,-0.9538719533011317,-0.17286903643980622,0.11375746643170714,0.3157947906292975,-0.20251346239820123,-0.8508831718936563,-0.9301036219112575,-0.6731254337355494,-0.5450419052504003,0.6782166752964258,0.7698035519570112,-0.2666799193248153,-0.221894602291286,0.9725403636693954,-0.5952243050560355,-0.9951137979514897,-0.13516698079183698,0.796302190516144,-0.6330732023343444,0.9141704021021724,0.4422462237998843,0.3794021550565958,0.5600918629206717,-0.5237042154185474,-0.5488267987966537,-0.5108153880573809,0.970649782102555,-0.20482630049809813,-0.012144676875323057,-0.21827230649068952,-0.02925659390166402,0.9230000018142164,0.9546687589026988,0.11992228077724576,-0.7654026295058429,-0.6661667828448117,0.10971945151686668,-0.8298016795888543,0.09046220127493143,0.9672065177001059,-0.7369196866638958,0.19874622812494636,-0.275888251606375,0.24142328882589936,-0.7601663125678897,-0.645298583433032,-0.8419283269904554,-0.6884677289053798,-0.4905342999845743,-0.8667364208959043,0.4181091897189617,-0.2097706524655223,-0.9291628943756223,0.7233453788794577,-0.4463739567436278,0.4919866402633488,0.7708595199510455,-0.18680871976539493,-0.4755316963419318,0.25358027406036854,-0.9235066901892424,-0.825123090762645,-0.8946674289181828,0.0970212914980948,0.28664863808080554,-0.07716238452121615,-0.6494811489246786,0.6054303487762809,-0.2175077684223652,0.865645685698837,0.4494367898441851,0.6153235277161002,0.20502319699153304,-0.9319538907147944,-0.8715840457007289,-0.5349635891616344,0.758375714533031,0.24385185120627284,0.11868079146370292,-0.7049955716356635,-0.5165208037942648,0.6406204993836582,0.6647000261582434,0.867088483646512,-0.2578774564899504,0.9834391893818974,0.9964042757637799,-0.6869937963783741,-0.9553028526715934,-0.01856340980157256,-0.5627773487940431,-0.5558869508095086,0.3559520384296775,0.005926238372921944,0.4090586840175092,0.532851867377758,-0.07285997876897454,-0.4142279252409935,-0.9229427399113774,0.4272146155126393,-0.6143617974594235,0.592715663369745,-0.8657322735525668,-0.3726509725674987,0.9719549701549113,0.841159108094871,-0.2194627313874662,-0.8023356208577752,-0.3614204255864024,0.04862186824902892,-0.6458927057683468,-0.32488943077623844,-0.7344152005389333,0.9331164821051061,-0.44403139036148787,-0.9656213321723044,-0.016612043604254723,0.2637854106724262,-0.6031112060882151,-0.9354031323455274,0.4596812133677304,-0.05194905120879412,-0.22480461234226823,0.7186666931957006,-0.17131383484229445,-0.3550712736323476,-0.8597260070964694,-0.08387441420927644,0.38053355645388365,0.38259586226195097,0.4484351668506861,-0.3467446230351925,-0.19508018577471375,0.6171485255472362,-0.297604548279196,-0.5154145397245884,0.32704757573083043,0.8958230828866363,0.4169600741006434,0.7772420281544328,-0.9843307319097221,0.7514288448728621,0.2951380633749068,-0.16113129444420338,0.4965694616548717,-0.12381374090909958,-0.77035071561113,-0.07792810490354896,0.7329425076022744,-0.4919462017714977,0.43205482698976994,-0.5498989834450185,-0.9339979598298669,-0.8786357785575092,0.5661097024567425,-0.041046572383493185,0.8878722325898707,0.3583445022813976,0.47728783218190074,0.9848294164985418,-0.2455267272889614,0.7303644907660782,0.6421493734233081,-0.35043013049289584,-0.8333936929702759,-0.720711677800864,-0.6679498595185578,0.5543452566489577,0.9864683924242854,0.9655380728654563,0.32356941141188145,0.04886335786432028,-0.010065081063657999,-0.1133293635211885,-0.8548584333620965,-0.5765851270407438,0.7750700004398823,-0.9530076012015343,-0.1771756368689239,-0.48904042365029454,0.09744001179933548,0.31229971162974834,-0.7688280139118433,-0.48543858574703336,0.6034785378724337,-0.945236096624285,-0.2646278589963913,0.7834016694687307,0.8716087639331818,-0.16119251167401671,-0.9172606053762138,-0.3200819883495569,-0.5346243735402822,-0.8755910666659474,0.8316143690608442,-0.7917421469464898,0.511033951304853,-0.044465890154242516,-0.09951555449515581,-0.718666304834187,0.009728696662932634,-0.8969786334782839,-0.8638057415373623,-0.8471554000861943,-0.7557779871858656,0.7130044079385698,0.6757052950561047,0.5353198619559407,-0.22206297889351845,0.8311361451633275,-0.7949721720069647,-0.30469011003151536,-0.005450619384646416,-0.13775501865893602,-0.8870056471787393,-0.21831423323601484,0.3401742014102638,0.4912562919780612,-0.10522855073213577,0.035913946107029915,0.18938155798241496,-0.5527221038937569,-0.7741995071992278,-0.15675018774345517,0.5020333263091743,-0.18598564993590117,0.31758360657840967,0.043281585443764925,-0.1022005919367075,0.5316320178098977,0.8533090138807893,-0.8752623801119626,0.44356793351471424,0.3028358989395201,-0.6571440063416958,-0.8778540538623929,-0.316767695825547,-0.696253985632211,0.939134313724935,-0.04901776323094964,-0.6723708217032254,0.8660908164456487,-0.6203451035544276,-0.05280275642871857,-0.704825830180198,0.01697271689772606,0.8772610877640545,-0.48988111689686775,0.12301755044609308,0.08432773966342211,-0.324051006231457,0.9616598361171782,0.9767335606738925,0.8012523781508207,0.5779437003657222,-0.7813017899170518,0.17577517917379737,0.24306414369493723,0.8342724204994738,-0.11470345687121153,-0.7245343448594213,-0.8083693124353886,0.06563815474510193,-0.7086778525263071,-0.5871789553202689,0.7447396516799927,-0.2929074140265584,0.23078752122819424,-0.5215598251670599,-0.6363710253499448,-0.31053918739780784,0.2946995343081653,-0.77631517034024,-0.36419388838112354,-0.05165466945618391,-0.48313357727602124,0.010222349781543016,0.20148686226457357,0.5691721797920763,0.32309411372989416,-0.8718962990678847,0.616419536061585,0.7582528735511005,-0.454920606687665,0.8097272887825966,0.25100243370980024,-0.3818831224925816,-0.5286893886514008,-0.48753927554935217,-0.9997689640149474,-0.8233841909095645,0.023354944307357073,-0.9995504207909107,-0.9915614509955049,-0.898060608189553,-0.27765593165531754,0.7642221627756953,-0.59261708939448,0.32138497568666935,-0.6894614808261395,-0.7321684816852212,0.2343139024451375,0.5497911684215069,0.9639243567362428,-0.8782466584816575,0.27154327323660254,-0.6268369294703007,0.7054846733808517,-0.5887738796882331,0.8245924543589354,0.16707600373774767,0.4839291055686772,0.722910494543612,0.0841185343451798,-0.1221118550747633,-0.3500855886377394,0.6158778290264308,0.6174622029066086,0.7346818596124649,0.7985351118259132,-0.21377466386184096,0.7265447145327926,0.8318308456800878,-0.564991885330528,-0.9301915192045271,0.6135896784253418,0.9743882296606898,-0.6463424516841769,0.26690899580717087,0.09726429264992476,-0.8122818237170577,-0.5605201837606728,0.20642944099381566,0.3217706517316401,-0.4450953798368573,0.0719079771079123,0.24783490039408207,-0.9964750865474343,-0.18810627469792962,-0.10302337538450956,-0.6775315292179585,-0.5864464496262372,-0.27034291299059987,-0.31554831890389323,0.2150217010639608,-0.6997135882265866,0.48492974461987615,-0.9776307321153581,-0.7570901489816606,0.1855146256275475,-0.15315297292545438,-0.13958657439798117,0.4723178646527231,0.7330148685723543,0.11070782970637083,-0.40915831085294485,0.4956063418649137,0.9645250630564988,0.5578886000439525,-0.4602160369977355,-0.013310367707163095,-0.7012856514193118,0.7602524315007031,-0.02527699200436473,0.8027322236448526,0.7470958949998021,-0.9502530391328037,0.9627349027432501,-0.3174861753359437,0.8710309877060354,0.4067577924579382,0.8432640475220978,-0.1196147627197206,0.8044041520915926,-0.36363061238080263,0.2937549715861678,-0.4459958365187049,0.8736777352169156,-0.1327094598673284,-0.00823028152808547,-0.534786528442055,-0.07033034460619092,0.3606620253995061,-0.8582209735177457,-0.47893536696210504,0.8918698104098439,-0.2124111228622496,-0.8900644425302744,0.4374074717052281,-0.9163756319321692,0.04656306700780988,0.17542921658605337,-0.18683925038203597,0.10413122829049826,0.05854053795337677,0.6941886292770505,-0.6809746325016022,-0.09862834680825472,0.27970122871920466,-0.25338714430108666,0.04799016611650586,0.09879566077142954,0.6521124676801264,-0.43122888868674636,-0.2394235203973949,0.2819630145095289,0.3847917253151536,-0.3301092558540404,-0.8474440854042768,-0.012701149564236403,0.4412316884845495,-0.9575452683493495,0.6103381789289415,-0.2092396137304604,0.9725370854139328,-0.7611327921040356,-0.8821705421432853,-0.18633735878393054,0.02516224142163992,-0.3800638015381992,0.7451478838920593,-0.7877965550869703,-0.36535246204584837,-0.8374163936823606,0.15934480400756001,0.3390893214382231,-0.9867857536301017,-0.17305207112804055,-0.860519818495959,0.2667333520948887,0.6888870908878744,-0.5579112200066447,0.697964848484844,-0.26128445705398917,0.5153351062908769,-0.3884168239310384,0.42269839253276587,-0.2516419882886112,0.27787975361570716,-0.7707024151459336,0.29735361644998193,-0.798806041944772,0.08210523752495646,-0.20959159405902028,0.5453966949135065,-0.016220907215029,-0.8792013744823635,0.3746663695201278,0.18213621992617846,0.2724813832901418,-0.45628227619454265,0.735377558041364,-0.16762580256909132,-0.533762154635042,-0.3548694937489927,-0.37870194111019373,0.7244599158875644,0.8957352782599628,-0.5457745930179954,0.8446094882674515,0.3781268298625946,-0.7316247317939997,0.7224259828217328,-0.5627358639612794,-0.8608446060679853,0.7458170680329204,-0.8092231662012637,0.37511955900117755,-0.6312272916547954,-0.7591775176115334,-0.5812745480798185,0.8571573719382286,-0.26950304536148906,-0.25117091834545135,0.650956301484257,0.932683739811182,0.8585167867131531,-0.953005189076066,0.1652342714369297,-0.9403978832997382,0.2506097611039877,-0.335568533744663,-0.025166025385260582,0.8849883410148323,0.429873610381037,-0.5474279108457267,-0.7063150354661047,0.21714998269453645,-0.7788797286339104,0.8255600575357676,0.5487133879214525,0.11890925699844956,0.19558426924049854,0.5022682058624923,0.5147602618671954,0.6689778324216604,-0.27400975534692407,0.9568708250299096,-0.6911302250809968,-0.9225375289097428,0.9599687103182077,-0.3769311453215778,0.4778447998687625,0.20304281450808048,-0.888683479744941,0.4841232253238559,0.8678054246120155,0.7830908079631627,0.5873528080992401,0.4763102135621011,-0.725900708232075,-0.867869627662003,0.11502777086570859,-0.44574054703116417,0.4101596111431718,-0.8020846480503678,0.3833731417544186,-0.9654526831582189,-0.6626591002568603,-0.27018460677936673,-0.37292455649003386,-0.13591847196221352,0.5157599984668195,-0.4622084526345134,-0.0040803649462759495,-0.618411164265126,-0.28450406715273857,-0.17138557974249125,-0.7557729813270271,-0.08021053299307823,-0.5750761139206588,-0.35631624795496464,-0.052212371956557035,-0.7196936407126486,-0.6343352375552058,0.6433966038748622,0.40121522173285484,0.5107180099003017,-0.7529154792428017,-0.9660336589440703,-0.7054480104707181,0.8806242323480546,0.273668531794101,-0.6406866065226495,-0.1899080853909254,0.8608949827030301,0.14690565736964345,0.8904139338992536,-0.6302607282996178,-0.8986764475703239,-0.8458236833103001,-0.26655762922018766,-0.6699734288267791,-0.153694539796561,0.201032274402678,-0.6866510156542063,-0.6423892676830292,0.7393394229002297,-0.3449599980376661,-0.014069439843297005,0.2551783951930702,0.2981893294490874,-0.18171629356220365,0.7403002460487187,-0.025493600871413946,-0.8617766033858061,0.21640167571604252,0.8260695738717914,0.6587673402391374,0.6187040037475526,-0.885398652870208,0.357157779391855,0.5639401650987566,0.3234738362953067,0.22461963444948196,-0.8255317532457411,0.9126828643493354,0.3390104197897017,0.7831779681146145,-0.18782309209927917,0.906213462818414,0.33232764806598425,0.8580257664434612,-0.3466622899286449,-0.7872468740679324,0.020530589390546083,-0.08863265113905072,-0.08850977616384625,-0.011413754429668188,0.09745662054046988,-0.5545330797322094,0.8028863770887256,-0.7260327013209462,0.1729482114315033,-0.23545094020664692,0.2781547522172332,-0.3280099453404546,-0.5503759342245758,-0.22624403424561024,0.8315199841745198,0.9519722042605281,-0.9172744019888341,-0.7550570531748235,0.9363845554180443,0.07940019434317946,0.029828177765011787,0.16963797342032194,0.18772917333990335,-0.9317516908049583,0.7891623703762889,0.25292974105104804,-0.1324494001455605,0.2989322463981807,-0.6983114471659064,0.2628527241759002,0.15581818064674735,0.09650614345446229,0.8903424851596355,0.2846622238866985,0.10320429131388664,0.49568370589986444,-0.4274402759037912,-0.4613355924375355,-0.5458926595747471,-0.22411799058318138,-0.40097733633592725,0.3278613705188036,0.6924197990447283,-0.765954252332449,0.8616779400035739,0.8967898534610868,0.4305595252662897,0.1457229577936232,0.030370939057320356,0.4492163104005158,-0.5533422916196287,0.08901834487915039,0.5854833307676017,-0.5608162879943848,-0.4258026611059904,0.2396239899098873,0.801152337808162,-0.24011248350143433,-0.70491176052019,0.6994780553504825,0.30382751813158393,0.4854015950113535,-0.6905258623883128,-0.7920495746657252,-0.9550149259157479,-0.012767387088388205,0.2999500660225749,-0.3943383451551199,-0.05795280821621418,0.2797477706335485,0.48058462562039495,0.43719646893441677,-0.19508210942149162,-0.992077867500484,0.9438691334798932,0.8183157406747341,-0.4798329961486161,0.8790517840534449,0.9853189066052437,0.13951651519164443,-0.2557689188979566,0.911983959376812,0.1429561022669077,-0.6576163857243955,-0.6681534489616752,-0.6059585139155388,0.09168073022738099,0.9911437933333218,0.41702822176739573,0.85428616264835,0.7902758815325797,-0.7183216148987412,-0.48284495435655117,-0.7399324206635356,-0.035955661442130804,-0.4997198027558625,-0.291562395170331,-0.24154228949919343,-0.5959990480914712,0.9766595396213233,0.9222650220617652,-0.2007476920261979,0.03927674703299999,0.37036163872107863,0.9118779907003045,-0.4188839183188975,0.9752832651138306,0.8432695185765624,-0.699521420057863,0.7797595001757145,-0.3593259076587856,-0.7160624349489808,-0.9661928117275238,0.27844051038846374,-0.5400118390098214,-0.4867351436987519,-0.6997679742053151,-0.5660454258322716,0.5413460414856672,0.8928924235515296,-0.7788283764384687,0.885708523914218,0.3616656414233148,0.1824685065075755,0.9838274773210287,-0.4582581906579435,0.6392196863889694,-0.64974933443591,-0.438416441436857,-0.39617846673354506,0.9074933072552085,0.19737682025879622,-0.6036004638299346,-0.6449217270128429,0.8037541722878814,0.34107643039897084,0.7523949006572366,-0.47872515255585313,0.9570231330581009,0.42502876138314605,-0.9002810684032738,-0.6189909004606307,0.2757982430048287,0.570663791615516,-0.17300742911174893,-0.39731988590210676,0.022867331746965647,0.5774117652326822,0.9013788602314889,-0.9299107263796031,0.4514195052906871,-0.5647365218028426,0.24715322069823742,0.7908184668049216,-0.7788453912362456,0.3074913574382663,0.5896093244664371,-0.43978378223255277,0.7040508817881346,0.967397534288466,-0.00975755462422967,0.7980123399756849,0.9433200503699481,-0.30452105961740017,0.9948648777790368,0.0655002654530108,-0.2535131387412548,0.6911819633096457,-0.848522899672389,0.015825462993234396,0.7193680903874338,-0.5689093205146492,-0.1165975984185934,-0.6092977998778224,0.42258250061422586,0.21614290727302432,0.5024573635309935,-0.5005458192899823,0.4900073567405343,0.2574418126605451,-0.9057075176388025,-0.8930817791260779,-0.21839946787804365,0.786462782882154,-0.31764388736337423,-0.8689063307829201,-0.16551393549889326,-0.6616484648548067,0.6066493755206466,0.6046902546659112,-0.9941652663983405,0.45048038847744465,-0.09613289823755622,-0.6194478757679462,-0.6935343029908836,0.9130263510160148,-0.9912997176870704,0.7748007159680128,0.9967564917169511,-0.46942511945962906,0.04507369128987193,-0.9333080286160111,0.3254944132640958,-0.5196234909817576,-0.853972025681287,-0.06333076022565365,0.9169503357261419,0.009500379674136639,0.2879085377790034,-0.8622601362876594,-0.6463750461116433,-0.3512906990945339,-0.22723453911021352,0.5004088906571269,-0.9534805668517947,0.48511611903086305,-0.7875432772561908,0.5045545329339802,-0.20535700395703316,-0.024416730273514986,0.8298139828257263,0.019930026028305292,0.5995643110945821,0.4102919395081699,0.7229591202922165,0.36083049699664116,-0.7181441378779709,-0.4143211208283901,0.3984721708111465,0.3604081473313272,-0.33583900425583124,-0.25596210453659296,0.37127092480659485,0.30599036160856485,0.3813679520972073,-0.8131131422705948,0.049026567954570055,0.2163178799673915,-0.557864248752594,0.7559988936409354,0.1691470523364842,-0.890949270222336,-0.6139627639204264,-0.9180571408942342,-0.9917609277181327,0.2272435505874455,0.8040377181023359,-0.720734307076782,0.7867235508747399,0.1383513594046235,0.10384813416749239,-0.9997601113282144,-0.5378943155519664,-0.8813981511630118,-0.8044906039722264,-0.7600422552786767,-0.03960984852164984,0.7941728858277202,-0.9596703131683171,0.8090072944760323,-0.3030894440598786,-0.6697921599261463,0.8302406454458833,-0.5426099193282425,0.8939009066671133,0.03198404377326369,-0.5615357952192426,0.04022011021152139,-0.4811044163070619,0.8434157781302929,0.1178186247125268,-0.36534151155501604,0.33512260718271136,0.433188796043396,-0.7497141058556736,-0.8322934214957058,-0.6633756468072534,0.4950285409577191,0.8865460553206503,-0.624811252579093,-0.35613440116867423,-0.8573940410278738,0.36279189633205533,0.6542998249642551,-0.480498356744647,-0.531824569683522,0.5640574572607875,0.20273908413946629,0.3779480312950909,-0.09584635775536299,-0.48330320650711656,-0.9718555645085871,0.7927268659695983,-0.3018106687813997,0.9177554077468812,0.11347490455955267,0.9348377864807844,0.7840221817605197,0.817482078447938,-0.18718174379318953,0.9420183780603111,0.3797386144287884,0.7186885569244623,0.18393910257145762,-0.38225577771663666,0.5384094114415348,-0.3638575500808656,-0.8404733794741333,0.6459171050228179,-0.8328897003084421,-0.02744244458153844,-0.7125218841247261,-0.34682707814499736,0.04063470475375652,-0.8506342377513647,0.10124667920172215,-0.05898722214624286,0.0978232235647738,-0.5984744350425899,0.4488141839392483,0.4621127094142139,0.5635193553753197,0.1310480060055852,0.5426148907281458,-0.3702638391405344,0.9509806833229959,-0.2936451621353626,-0.6682193111628294,0.5196294416673481,-0.8592178365215659,-0.7768807844258845,-0.5534124341793358,0.6142208077944815,0.38911537639796734,-0.8859595595858991,0.5605570860207081,0.01518178079277277,-0.7625501151196659,0.4340038076043129,0.5912398672662675,-0.15711437119171023,-0.3031055978499353,0.8234357461333275,-0.30220675515010953,-0.33447943488135934,-0.5951553364284337,0.6602080981247127,-0.6744562555104494,-0.9777344800531864,-0.5689296582713723,0.08003052929416299,-0.15913292253389955,-0.36047223024070263,0.39243948832154274,-0.05113644106313586,0.25018686009570956,-0.9248378439806402,-0.1151046883314848,-0.99085340090096,0.058881939854472876,0.37565442454069853,0.9910498601384461,-0.9644410153850913,-0.938907238189131,0.12915068538859487,0.4684375645592809,-0.3557481234893203,-0.6473188702948391,-0.9516996033489704,0.9500323557294905,0.015911365393549204,-0.26066580740734935,-0.3730928306467831,0.5392092182300985,0.8579386416822672,-0.5574193145148456,0.18978717736899853,-0.8688766793347895,0.5421328758820891,-0.8365408075042069,0.8900048197247088,0.8374272282235324,-0.8624735893681645,-0.8294936157763004,0.45501885330304503,-0.2296414882875979,-0.5844901911914349,0.8125028316862881,-0.48428460862487555,0.41771949362009764,0.2244533016346395,0.06382830953225493,-0.5167723274789751,0.6492906333878636,0.34350661002099514,0.2969661457464099,-0.8364032828249037,0.5460854703560472,0.014846178237348795,0.5693383570760489,0.474821291398257,-0.9075848259963095,0.3422745964489877,0.9181743483059108,-0.701528443954885,0.6680194400250912,-0.23690158547833562,0.42952005425468087,0.6385938772000372,-0.8466380122117698,0.05546698300167918,0.07795631419867277,-0.5452707321383059,0.5606612372212112,-0.5877503389492631,0.7669950732961297,0.5529329357668757,0.592434867285192,-0.3272428675554693,-0.9757883287966251,0.8547352803871036,-0.40716798789799213,-0.03487447928637266,0.9450555457733572,-0.23227851884439588,-0.9468640778213739,-0.777763313613832,0.587028294801712,-0.1351986383087933,-0.8595332647673786,0.84083387022838,0.3827649694867432,0.8388148080557585,-0.9428001465275884,-0.5055915452539921,-0.025386390276253223,0.10958210891112685,-0.16251185396686196,-0.5044010346755385,-0.7740290616638958,0.8444560221396387,0.033140172716230154,0.03415625961497426,0.4360622470267117,-0.21112476149573922,-0.11708069127053022,-0.1983788851648569,-0.5874750968068838,-0.5394137524999678,0.6355325360782444,-0.26873135613277555,0.8608531742356718,0.05434573441743851,0.13775516208261251,0.0059148091822862625,0.0486037852242589,0.18176282942295074,0.6749643548391759,-0.4408927308395505,-0.5508295884355903,-0.8771311631426215,0.7637766622938216,0.4551676297560334,0.2288632825948298,-0.9275341397151351,0.17585928225889802,0.028244278393685818,-0.05081163998693228,0.11134786810725927,-0.8807645835913718,-0.0523529895581305,0.9335498558357358,-0.6922261440195143,0.6952773137018085,0.5482325805351138,-0.5627866084687412,0.981065992731601,0.552367880474776,-0.057889390271157026,-0.32129587046802044,0.25021234061568975,-0.3731078985147178,-0.3659328306093812,0.3589396239258349,0.12188776209950447,-0.3163272254168987,0.7694586608558893,-0.442201494704932,0.07294145785272121,0.7809193157590926,0.6678200992755592,0.15495095448568463,-0.948289392516017,0.8155786483548582,-0.16516030812636018,-0.18312004348263144,0.1277530612424016,0.014246901031583548,0.49044797802343965,0.12763212528079748,0.1356215183623135,-0.7145161344669759,-0.8333934168331325,-0.2957115569151938,-0.5938557013869286,-0.4397476948797703,-0.2587759727612138,-0.9391163075342774,0.38749120431020856,-0.7116276090964675,0.13117088191211224,0.3339907848276198,-0.06181656336411834,0.7210127292200923,0.22618117788806558,0.09659302467480302,0.45174265233799815,-0.01767587848007679,-0.7598630054853857,-0.6825675582513213,-0.6682248972356319,-0.7428625128231943,0.6509586730971932,-0.09197618486359715,0.6214244826696813,-0.7909541362896562,0.179594237357378,-0.8576730079948902,0.44290227722376585,-0.48431333526968956,0.5728376000188291,-0.9166973736137152,-0.8458517831750214,0.8082373710349202,-0.03901467565447092,-0.5931700579822063,-0.16284353798255324,-0.0497912997379899,-0.21766410488635302,-0.23446800746023655,-0.04477061703801155,0.04421555623412132,0.8737458069808781,-0.6173392860218883,-0.9220918496139348,0.7675864547491074,0.2275122911669314,0.9872968941926956,0.6331996130757034,-0.47374181915074587,0.3274597665295005,-0.8455688641406596,0.08658516639843583,-0.7782340259291232,0.42080170940607786,-0.7868605675175786,0.9647031077183783,0.40467279544100165,0.9894569986499846,-0.160593640524894,0.806187383364886,0.6664587096311152,0.6874879542738199,-0.7429119255393744,-0.3022977923974395,0.474672922398895,-0.927621828392148,0.8641254953108728,0.5730570461601019,-0.3285595769993961,-0.04350573103874922,-0.2567232376895845,-0.30685006314888597,0.5763538526371121,0.546069448813796,0.15235680108889937,-0.9418442221358418,0.9043573513627052,0.636902030557394,0.18287554197013378,0.8184648430906236,-0.22218934074044228,-0.02431367663666606,-0.16830532113090158,-0.15733858989551663,-0.2919262684881687,-0.549716797657311,-0.6027547088451684,-0.20728787733241916,0.8236796678975224,-0.34710033843293786,0.9521980211138725,-0.776609989348799,-0.8541527581401169,0.7704938533715904,0.11796861793845892,0.7089429087936878,-0.9341180487535894,-0.4402169091627002,-0.3184800948947668,0.8241361360996962,0.7744409679435194,-0.10092706372961402,-0.54822165844962,-0.8126339628361166,0.18780780443921685,-0.5900314310565591,0.1790978559292853,0.8247073763050139,-0.4629738391377032,0.7461391035467386,-0.9822237715125084,-0.2258255435153842,0.6700749131850898,-0.03046827157959342,-0.7105406252667308,0.4329161252826452,-0.18284665700048208,0.7195465904660523,0.4373264219611883,0.18505073431879282,-0.40498030418530107,0.2062864126637578,-0.0981719964183867,0.5675468174740672,0.1701261647976935,-0.3088400447741151,0.30977334547787905,0.8305309354327619,-0.05518545629456639,0.34927830332890153,-0.2590050916187465,0.6667500138282776,0.7612975961528718,-0.03485861653462052,-0.579533081036061,0.9361280938610435,0.1530687641352415,-0.6962529704906046,-0.2398645174689591,-0.8498384966515005,0.16715429304167628,0.9105627764947712,-0.3151997420936823,0.9351480598561466,-0.437712580896914,-0.6872280077077448,-0.5442728186026216,0.5683949645608664,-0.7142165200784802,0.6979233822785318,-0.6502259541302919,-0.3166313129477203,0.3799404571764171,-0.4897915720939636,0.9051869763061404,0.6466842968948185,-0.9877232760190964,0.5059870220720768,0.17061957623809576,0.5825195633806288,0.6889024712145329,0.3785519194789231,0.04005687264725566,0.8632808546535671,0.4981576972641051,-0.2664390499703586,0.7185092899017036,0.030106235295534134,-0.5453912150114775,-0.14007788244634867,-0.26884821709245443,0.8776573864743114,-0.977226588409394,-0.933645676355809,0.367178026586771,0.44721853360533714,0.4309959043748677,0.7002019127830863,-0.35277536045759916,0.9791337624192238,0.3773033060133457,0.9726238823495805,-0.1779505806043744,-0.8963865013793111,0.2041612546890974,-0.7440396728925407,0.5086312205530703,-0.74153071641922,-0.4300774154253304,-0.36978199938312173,-0.47000952111557126,-0.03021438093855977,-0.9420999572612345,0.05279172910377383,0.5209440109319985,-0.2813788680359721,-0.47450670413672924,0.23100986471399665,-0.08721300587058067,-0.1355969524011016,0.9948682957328856,-0.09691560221835971,0.636321421712637,0.7373690875247121,0.03935854136943817,-0.5487693049944937,-0.23147508315742016,0.9583077454008162,-0.34041330218315125,0.9925721394829452,0.015014443080872297,0.5434806090779603,-0.8481017099693418,0.2778478334657848,-0.16709543811157346,0.22970664594322443,-0.2854663347825408,0.2812654096633196,0.019825118593871593,0.006599684711545706,0.8856250080280006,0.8523629261180758,-0.4647095901891589,0.1250564819201827,0.3692478146404028,0.8792493548244238,0.2398102176375687,-0.9284208128228784,0.362057879101485,-0.7884930190630257,-0.17567263171076775,0.8825805117376149,0.5400738446041942,0.6842823312617838,0.8144511422142386,-0.567852174397558,-0.12316790781915188,-0.6666258540935814,-0.5979147148318589,0.9561693058349192,-0.2760142395272851,0.3519379775971174,-0.05013305274769664,0.8659311761148274,0.8811799320392311,0.6496201027184725,0.39438823238015175,0.3111364943906665,-0.7366567957215011,-0.7339652236551046,0.2832200829870999,0.5340312356129289,0.03498650761321187,0.4522594390437007,0.24504284048452973,0.34614735236391425,0.7188503770157695,-0.5323868184350431,0.03364336397498846,0.47594270249828696,0.34748787619173527,0.3738179076462984,-0.3756593391299248,-0.9490307671949267,-0.7729937313124537,-0.71645806171,-0.1141020730137825,-0.8437476479448378,-0.39946099231019616,-0.16006251936778426,0.45587412640452385,-0.7351148123852909,-0.5794757469557226,-0.6758592003025115,0.5424220031127334,-0.12376654660329223,0.48973916936665773,0.05486356047913432,-0.9816516856662929,0.4693239782936871,-0.9211326292715967,-0.5751590463332832,0.012714617885649204,0.6660408852621913,-0.935658507514745,-0.6025526542216539,-0.9417930888012052,0.6891152295283973,0.3934126910753548,0.7701228032819927,0.7302642455324531,0.7748876954428852,-0.5926237259991467,-0.48347947048023343,0.8436180949211121,-0.2079527131281793,-0.4930402869358659,-0.2442447799257934,0.052521064411848783,-0.5382448504678905,-0.35196886444464326,0.20030480436980724,0.4731659600511193,0.6842020531184971,0.8330092844553292,-0.2604445992037654,-0.20363749377429485,0.7184553961269557,-0.4550537634640932,0.9591718283481896,-0.7140987333841622,0.8516895459033549,-0.6037128679454327,0.6502405069768429,-0.910591185092926,-0.9848829000256956,0.018416807521134615,-0.2531379172578454,0.18366259429603815,-0.2787362323142588,-0.3783005550503731,-0.9218052159994841,0.3272272772155702,-0.9134359578602016,-0.5040538106113672,-0.007760366424918175,0.7484869374893606,-0.6506793745793402,-0.18085475824773312,-0.17410481441766024,-0.1374676483683288,-0.5286348261870444,0.4677967643365264,0.5552905080839992,0.19898894196376204,0.4582766769453883,0.346506018191576,-0.8955251188017428,-0.246613675262779,-0.3589150416664779,-0.43412776198238134,-0.8590498934499919,-0.6810604892671108,-0.27212095260620117,-0.761413631029427,0.847243023570627,0.2049207049421966,-0.5369407841935754,0.5827406058087945,0.4645826746709645,-0.8416421301662922,0.9988229079172015,-0.7502040169201791,0.4330130573362112,-0.9521024110727012,0.5392672116868198,-0.4604664477519691,-0.20222988305613399,0.7131466236896813,-0.923459523357451,0.626550727058202,0.8317810785956681,-0.6703046443872154,-0.3162040216848254,-0.9592651664279401,0.8381277094595134,-0.1274474412202835,0.6487074950709939,0.012012666556984186,-0.9979596016928554,0.10306288069114089,0.37070153281092644,-0.9001737600192428,0.03042146610096097,-0.5146289081312716,-0.717505965847522,-0.8759442819282413,-0.42760326946154237,-0.13172839349135756,0.40814263513311744,-0.9573594382964075,-0.38350278744474053,0.40713888173922896,-0.6401665681041777,-0.30121911549940705,0.7945347307249904,0.16043926496058702,0.5748314689844847,0.512913248501718,-0.24482613056898117,0.3795150532387197,0.5747957308776677,-0.25826762337237597,-0.692629515659064,-0.3877420760691166,0.6201535956934094,0.37605999410152435,-0.919734887778759,0.6780148851685226,0.6775032668374479,-0.5400681807659566,0.5580767272040248,-0.824197762645781,-0.2757667675614357,-0.4084208351559937,-0.9619425809942186,0.6002549631521106,-0.7893036520108581,0.2057044138200581,0.3057727268896997,-0.4719421388581395,-0.612318018451333,-0.8350694174878299,0.3952988376840949,-0.20852132979780436,0.1683456706814468,-0.9204772938974202,-0.9710872862488031,0.07078331150114536,-0.3981008087284863,0.9254589625634253,0.7436976241879165,0.24390161177143455,-0.4693612102419138,0.5761476927436888,0.6315742614679039,-0.990136134903878,0.8025031266734004,0.22878087544813752,-0.5256996192038059,-0.4138303785584867,0.6192901297472417,0.6775791915133595,-0.7294905073940754,0.09067957382649183,0.658996086101979,0.3998113931156695,0.22021463885903358,0.5887719001621008,-0.2047115247696638,0.7618942074477673,0.453038627281785,0.09180098259821534,0.3220786042511463,-0.4036682229489088,0.1971554202027619,0.9531684597022831,-0.7125845937989652,-0.4961142451502383,-0.18744325544685125,0.5263602607883513,-0.23693715268746018,-0.8986849011853337,0.6631576963700354,-0.3356419843621552,-0.11820156965404749,-0.2017152663320303,-0.33396884612739086,-0.871512200217694,-0.26623337529599667,-0.4037599074654281,0.30842951918020844,0.6825651121325791,0.14205636270344257,0.5604501650668681,0.648389411624521,0.9584643617272377,-0.45169011037796736,0.08594487188383937,0.009383720811456442,0.8416478559374809,0.5300271790474653,0.3585222135297954,-0.15412777988240123,0.4645998547784984,0.20524670323356986,0.10280999261885881,0.8653038921765983,-0.7947097434662282,0.34042288456112146,0.20796971954405308,-0.6331652482040226,0.35811470868065953,-0.31034973496571183,0.14158151019364595,0.7595887635834515,-0.8453241093084216,0.8282751278020442,-0.8226522305049002,-0.15132172964513302,-0.4455890692770481,0.6171684889122844,0.7792135886847973,-0.7858261335641146,0.06840267218649387,-0.4323780778795481,-0.5361397201195359,0.055714848916977644,-0.2553669731132686,0.79275843501091,-0.19761756714433432,-0.8114215228706598,0.12299734493717551,0.9066871674731374,0.31202136212959886,0.5942291212268174,0.4531453410163522,0.5741855837404728,-0.14185037882998586,0.36777482321485877,-0.15585395973175764,-0.6611096146516502,-0.3236983292736113,0.3151025604456663,0.9157608728855848,0.31749127246439457,-0.7497714697383344,-0.7665932164527476,0.9380964506417513,0.4554411731660366,-0.39182115998119116,-0.7809293060563505,0.5386342308484018,0.8316918159835041,-0.45886531053110957,-0.20437346817925572,-0.01585124572739005,0.8187237926758826,-0.26382260536774993,-0.9597462643869221,0.8748305412009358,-0.3926766156218946,0.043516342993825674,0.35670543648302555,0.2684349250048399,-0.20656795799732208,0.20294756209477782,0.8387154033407569,0.35859677102416754,0.7244998086243868,-0.31336617190390825,0.1997526390478015,-0.7871888889931142,-0.9573816703632474,-0.7848646426573396,0.7790477657690644,0.08399355644360185,-0.6441387105733156,0.7742175352759659,-0.03521346440538764,0.7644082494080067,0.4027671171352267,-0.41101356828585267,0.7820570729672909,-0.846109302714467,-0.9924734500236809,0.7618590099737048,-0.25868333177641034,0.043863130267709494,0.4669007593765855,-0.005099837202578783,0.03048602445051074,-0.2580982414074242,0.6163476468063891,-0.48111937334761024,-0.6687270435504615,-0.3431953261606395,0.15807368559762836,0.3959981524385512,-0.5687413094565272,-0.20921741891652346,0.8870382183231413,0.7708048694767058,-0.5137492129579186,-0.11453208699822426,0.9325427417643368,-0.593688830267638,-0.12242024578154087,0.2332556159235537,-0.25502578541636467,0.3602109970524907,-0.2491778302937746,0.02246852172538638,0.30419829906895757,-0.11359022790566087,-0.4227109286002815,0.34120849054306746,-0.18623639922589064,-0.5074574053287506,-0.3454016190953553,0.9291375502943993,0.7782970699481666,-0.3985779173672199,0.4433714314363897,-0.16214503720402718,0.9663130715489388,-0.7394884489476681,-0.794991007540375,-0.4677374088205397,0.028425696305930614,-0.9766667298972607,0.06869335193186998,0.28399647818878293,-0.9547045626677573,-0.6734695546329021,0.5586854913271964,0.18570635514333844,0.09405418112874031,0.7655076049268246,-0.26838346337899566,-0.6803619996644557,0.21719963336363435,-0.6754178516566753,-0.40753761725500226,-0.8799769235774875,0.4084208896383643,-0.6273375656455755,-0.8787557659670711,0.09384809480980039,-0.5689542996697128,0.22602394642308354,0.24815214052796364,-0.33026146050542593,-0.22968203155323863,-0.10326882312074304,0.07486845925450325,0.4786729090847075,0.5963446861132979,0.2551260907202959,-0.858629398047924,-0.8280331483110785,0.47962905187159777,0.8679715795442462,0.07587337540462613,-0.43367151310667396,0.9512033774517477,-0.7228226214647293,0.8316781013272703,-0.2507429188117385,0.1326035582460463,-0.2522244704887271,0.1403439287096262,-0.7386567536741495,-0.022312075830996037,-0.4310929561033845,0.8830695929937065,-0.955347269307822,0.3619204624556005,-0.010500639211386442,0.9711473691277206,-0.530533182900399,0.07894050516188145,0.10742682218551636,0.9459243859164417,-0.5388310519047081,0.889732918702066,-0.9786133798770607,0.1684455987997353,0.3094910243526101,0.43115283735096455,-0.9035356352105737,-0.7193241696804762,-0.6011030641384423,0.5246506631374359,-0.13826545840129256,0.5690885609947145,-0.9840574054978788,0.19562014006078243,0.19435750786215067,-0.8771190219558775,0.3029827568680048,-0.3821189058944583,0.45980483293533325,-0.5774310082197189,0.3142292997799814,0.593330989126116,-0.5826090122573078,-0.39443707512691617,0.4941394980996847,0.8023163042962551,0.9932047175243497,-0.6218453017063439,0.7563122971914709,0.8453040588647127,0.27418843377381563,-0.41932753240689635,-0.04410523781552911,-0.4643571740016341,-0.23240251699462533,-0.24633411038666964,-0.10858381958678365,-0.2956094341352582,0.5947221075184643,0.587196858599782,0.8070483328774571,-0.42197973327711225,0.25606283359229565,-0.5757306385785341,0.23493902990594506,-0.00784263527020812,-0.5294975391589105,0.8262802818790078,0.5736762885935605,0.7403785702772439,0.2629538797773421,0.4442828390747309,-0.01768536865711212,-0.7804304771125317,-0.4832130568102002,-0.7961857677437365,-0.13016109634190798,0.3029381432570517,-0.9133099694736302,-0.9137971717864275,0.37427030550315976,-0.11632369225844741,-0.8910005618818104,-0.7043988388031721,0.984760383144021,-0.3161401585675776,-0.7882787459529936,-0.7119626188650727,0.8324237833730876,-0.6049880692735314,0.4817128339782357,-0.022313327994197607,-0.8003032538108528,0.8959434824064374,-0.07065272703766823,0.37950391275808215,-0.4724192298017442,-0.5931992367841303,-0.8392442120239139,-0.5886555104516447,0.996986121404916,0.09788407431915402,-0.6434422396123409,-0.2481153472326696,-0.8353967317380011,0.5552956638857722,-0.49576105270534754,0.40182148944586515,0.7877223617397249,-0.4103408111259341,-0.6073167570866644,-0.8403231389820576,-0.7408712054602802,0.0061622788198292255,0.15016008401289582,0.14306999696418643,-0.746804135851562,0.7973379143513739,-0.039142708759754896,0.35451685171574354,-0.06882946379482746,0.3599511971697211,0.6827770676463842,0.6355800074525177,0.06572253676131368,-0.005889272782951593,0.20454128552228212,-0.14434147952124476,-0.1407598447985947,-0.5104868388734758,0.3875833721831441,0.1568245473317802,0.2701556636020541,0.40073589282110333,0.7641113954596221,-0.5448484532535076,0.23028298327699304,-0.7137124938890338,-0.4353265352547169,-0.7190927462652326,0.1489123422652483,0.4449207494035363,-0.32234422536566854,-0.5159330172464252,-0.6254874970763922,0.4464167943224311,0.7100117267109454,-0.6998299495317042,0.7840787586756051,0.19012210238724947,0.46984420670196414,0.08689281856641173,0.6124482904560864,0.45886168722063303,0.2873757095076144,-0.20826992811635137,-0.9624053025618196,-0.6724473061040044,0.6211185287684202,0.30009178444743156,-0.35512980353087187,0.3126429207623005,-0.9898742991499603,0.335124387871474,-0.8089585225097835,0.6384511832147837,-0.09600458340719342,0.09127794206142426,-0.965758640319109,0.31875196658074856,-0.6967763979919255,0.28344679716974497,0.25843922002241015,0.8248247010633349,-0.22742509515956044,-0.28434893675148487,0.5024162442423403,-0.3608904150314629,0.5160037251189351,0.4680552273057401,0.799675228074193,-0.09609967237338424,-0.7457663640379906,-0.17549851955845952,0.21745761157944798,-0.39416956435889006,0.9375841896981001,0.909179366659373,-0.5729442490264773,0.9655527677386999,-0.24188585951924324,0.7390357051044703,0.6233772533014417,0.04811877850443125,0.5791140804067254,0.411524192430079,0.12872773315757513,-0.9503252864815295,0.12465415429323912,0.8338027372956276,-0.8381248018704355,-0.5809264159761369,-0.4633579608052969,0.06322370143607259,-0.7890252722427249,0.6463471134193242,-0.6145141585730016,0.7043262799270451,0.9579453505575657,-0.69503955822438,-0.2536143381148577,0.5046361307613552,0.560468761716038,-0.31734447041526437,-0.505374507047236,0.2178128780797124,0.8443816229701042,-0.6399825159460306,0.698925691191107,0.41154961939901114,-0.8962695016525686,0.37673966167494655,-0.020625473000109196,-0.027701524551957846,0.25108684226870537,-0.9476832523941994,0.82915721507743,0.29834575206041336,-0.18779246183112264,-0.21581901889294386,-0.7003536522388458,0.10400540567934513,-0.9090441237203777,-0.9874838818795979,0.20526547683402896,0.9253366976045072,-0.49278923915699124,-0.8490071161650121,-0.5045158141292632,-0.19074437022209167,-0.2784766615368426,-0.33814092772081494,-0.5597148262895644,0.7875126558355987,0.9208974693901837,-0.4333307594060898,-0.26418839301913977,0.7972275917418301,0.7396209659054875,0.7373645519837737,-0.9723069546744227,-0.03075512684881687,0.3916510292328894,-0.5813525780104101,-0.5020652762614191,0.5982046937569976,0.8328781141899526,-0.5048033129423857,-0.6280074859969318,0.6880013290792704,0.4929249892011285,-0.3203625874593854,0.7323741670697927,0.6690722308121622,0.3314556139521301,-0.5689375167712569,-0.9611502685584128,0.7571897092275321,-0.5870313602499664,-0.8029614584520459,0.9750800901092589,-0.9079283862374723,-0.012111596297472715,0.7419429998844862,-0.04010252142325044,0.9150942168198526,-0.9465363109484315,0.3838629010133445,0.3978686686605215,0.5825706729665399,0.8600471001118422,-0.9390751854516566,0.08669885946437716,0.721156669780612,-0.11195601476356387,-0.9949111491441727,0.572938228957355,-0.8663832903839648,-0.01945073576644063,0.6003230540081859,-0.9040639037266374,0.362682675011456,-0.4728344576433301,-0.9331610114313662,-0.8277308288961649,0.8739331080578268,-0.6083474028855562,0.4386015720665455,-0.8467833152972162,0.6278200708329678,-0.889381168410182,0.7578502614051104,-0.5125974803231657,0.32963663060218096,-0.9151433696970344,-0.5392258376814425,-0.11602707114070654,-0.8966490989550948,-0.7493110126815736,-0.7391945039853454,0.30251763900741935,0.8825639742426574,0.14648528583347797,0.3557470105588436,-0.826676573138684,-0.9493763782083988,-0.5962834195233881,0.33735243836417794,0.9755394291132689,0.886793817859143,0.3913938873447478,-0.21619111858308315,0.8520256467163563,0.21056974958628416,0.26676976028829813,0.7449561473913491,0.5073553863912821,-0.4987012045457959,0.38266068836674094,-0.2919251173734665,0.6329158530570567,0.8648817171342671,-0.801258981693536,0.7355248634703457,-0.2749886834062636,0.453988716006279,-0.20833394397050142,0.41055531334131956,0.19408125802874565,0.6589305032975972,0.15379113191738725,0.6133247381076217,0.706937094219029,0.13536013243719935,-0.3154657306149602,0.3897974477149546,-0.917817794252187,-0.671922224573791,0.15725106233730912,0.28351030871272087,0.5379610955715179,-0.14676507469266653,-0.24722079234197736,-0.19121881248429418,0.6973262424580753,0.5362332100048661,-0.9604571270756423,0.2118875328451395,0.4891791073605418,-0.65161766204983,-0.706705957185477,0.22950183134526014,0.9783864254131913,0.7164318361319602,0.41308883391320705,0.19838333735242486,-0.6932902266271412,0.909189316444099,-0.8266924610361457,-0.2678797640837729,-0.27043561078608036,0.2399545330554247,0.3842300926335156,0.13522318191826344,0.7585756769403815,0.23239891370758414,-0.32263806089758873,-0.43566732946783304,-0.3126670038327575,-0.638836735393852,-0.20422118343412876,0.2775170230306685,-0.5777331222780049,-0.19686038373038173,-0.8691503242589533,-0.59696258418262,0.6498607913963497,0.43088876362890005,0.6735947094857693,0.13109054556116462,0.2219704994931817,0.6348644243553281,-0.7893613181076944,-0.3438043650239706,-0.7634553429670632,0.029630610719323158,0.8315873751416802,0.8233605837449431,-0.9129911074414849,0.4603671096265316,-0.8689143462106586,-0.5653642807155848,-0.30540636787191033,-0.9679837161675096,0.9348621335811913,0.3477879511192441,-0.8746465286239982,-0.2979488237760961,0.2553044334053993,0.10913815023377538,0.7857503457926214,0.7856735116802156,0.6697515952400863,0.2744634407572448,-0.07430893369019032,0.5410089753568172,-0.5831596800126135,-0.1400142116472125,-0.7292818278074265,0.9029698316007853,0.01814873656257987,0.5832780161872506,0.4848409714177251,0.3914284589700401,0.6354789221659303,-0.6388226659037173,0.44659360125660896,-0.041989253368228674,0.28255324019119143,-0.47341162944212556,-0.9658037819899619,0.8621185887604952,-0.1523063206113875,0.13755654823035002,0.9081953186541796,-0.9622958642430604,0.2249109959229827,0.6350728529505432,0.32323655812069774,-0.15168205462396145,0.8059411547146738,-0.18549416214227676,0.5470418594777584,-0.6267697988077998,-0.6162620969116688,-0.4348866059444845,-0.7409053882583976,-0.6309084049426019,0.24343567434698343,-0.48479175474494696,0.3945538285188377,-0.26130643021315336,0.8329111952334642,0.42593813547864556,0.06720143277198076,0.9101643641479313,0.44132531341165304,-0.5290026161819696,0.33263407787308097,0.8682169411331415,0.06223195558413863,0.6359171797521412,-0.13454954139888287,-0.06378024071455002,-0.6583221885375679,0.2474287231452763,0.10817642975598574,0.4443277637474239,-0.8239958756603301,-0.14756668591871858,0.8551051584072411,0.04960868461057544,-0.7040997385047376,0.14457441540434957,-0.9794642082415521,0.03648976795375347,-0.18061432521790266,-0.029177413787692785,0.44444988388568163,0.4570746389217675,-0.372629817109555,-0.32461239071562886,0.24517664453014731,0.6019643801264465,0.5601659719832242,0.2726962836459279,0.1087412410415709,0.3831435772590339,0.9817351610399783,0.48840609891340137,0.42822281550616026,-0.22152952617034316,0.6246982230804861,0.7610197952017188,-0.15048473281785846,-0.7808734076097608,0.23807711992412806,0.019680051133036613,0.1310049225576222,0.9975559678860009,-0.2503013461828232,-0.43566716043278575,-0.3824832304380834,0.05928461253643036,0.14599886629730463,0.37994694197550416,-0.7611317010596395,-0.558243933133781,-0.44328743079677224,-0.8759555006399751,0.35309369256719947,0.7270803358405828,-0.22985634114593267,0.5535183879546821,0.850204641930759,0.002404510974884033,-0.9613644368946552,-0.49545791698619723,0.44185202615335584,-0.24567278800532222,0.8296518330462277,-0.005567739252001047,-0.6548467632383108,0.8312090942636132,-0.36252967175096273,-0.2529686144553125,-0.5022830348461866,0.4693630915135145,0.173766965046525,0.04201291827484965,-0.7925795316696167,0.5356719950214028,0.7512594577856362,-0.046815240290015936,-0.28537722071632743,0.0015905993059277534,-0.3437508107163012,0.5232322164811194,-0.18797057960182428,0.38705507246777415,-0.8961042524315417,0.6240507052280009,-0.8738688356243074,0.8798854905180633,-0.6737910346128047,0.9091289844363928,-0.5551591007970273,0.34980141930282116,0.9566897330805659,0.03116775769740343,-0.7325588222593069,-0.09995683189481497,-0.9189741094596684,0.7815433396026492,-0.8729927036911249,0.018319424707442522,-0.834538203664124,0.654067755676806,0.6849818807095289,-0.9999768096022308,-0.5203991048038006,0.8391826180741191,-0.22091842954978347,-0.9553096336312592,-0.6116378111764789,0.7958405143581331,0.5881907809525728,-0.7599231409840286,0.530014150775969,0.7417101333849132,0.592604314442724,-0.6736170114018023,0.5453711533918977,0.8674190281890333,0.4684945307672024,0.577820420730859,-0.4509667921811342,0.9090290293097496,-0.4168485589325428,-0.9075641524977982,-0.8080088649876416,-0.38268782244995236,0.31538081588223577,-0.21919826325029135,-0.6707884971983731,0.19985262723639607,0.48604658618569374,-0.4114616774022579,-0.9564228369854391,0.9676900017075241,0.3414365192875266,0.8222852377220988,0.818863180000335,-0.02612916799262166,-0.5408688616007566,0.4150608852505684,0.8899444588460028,-0.1674909028224647,0.3159646554850042,-0.8092002836056054,-0.3269988326355815,0.9134139306843281,0.6397097716107965,-0.28657965920865536,-0.7537288777530193,-0.07334530912339687,-0.4597580609843135,-0.1587818036787212,-0.568345011677593,0.5320432060398161,-0.3298051948659122,0.6575092300772667,-0.3906498388387263,0.9694173983298242,0.7873942395672202,0.9380196938291192,0.9966761968098581,-0.9938222612254322,0.2790550631470978,-0.20819794572889805,-0.9031295184977353,0.9789293119683862,0.24708886351436377,0.9832928590476513,0.5152327921241522,0.3737584655173123,-0.6877785227261484,0.9560603331774473,-0.19161092629656196,-0.32557213120162487,0.3664433597587049,0.5287405415438116,-0.965611191932112,-0.27576274145394564,-0.7840038612484932,0.5315527287311852,-0.39676117803901434,0.7359696011990309,0.03543525654822588,-0.6075361198745668,0.3303385325707495,0.7938270242884755,-0.7094114720821381,-0.48392700077965856,-0.3121739784255624,0.5566521612927318,-0.8538954462856054,-0.752666134852916,-0.6086205057799816,0.29172175377607346,0.64958601212129,-0.014178190845996141,0.5907611139118671,0.32987759122624993,0.06890376145020127,-0.594019329175353,0.7757935002446175,-0.5140207777731121,-0.5075063202530146,0.8307316885329783,0.334996716119349,0.7468664306215942,-0.8066567117348313,-0.35301737021654844,-0.24852073658257723,-0.5488162077963352,0.7091452279128134,-0.300232726149261,-0.030505711678415537,-0.28449663845822215,0.019362543243914843,-0.44071089988574386,0.553273004014045,-0.34308076091110706,-0.22947169188410044,-0.15570352040231228,0.9792776135727763,-0.7078401087783277,0.0491151325404644,0.6642286097630858,0.9609929635189474,0.24473201390355825,0.9736027563922107,0.26146970177069306,0.7649395703338087,-0.7598021579906344,0.18762496719136834,-0.1793612763285637,0.718766690697521,0.8746420694515109,-0.6502199862152338,-0.6233304748311639,0.03116756211966276,0.8699940866790712,0.5814988957718015,0.645780289079994,-0.3221700103022158,-0.2820388968102634,0.7245932589285076,-0.18602965353056788,0.5291190231218934,0.9527810164727271,-0.8150532967410982,0.2990006641484797,0.32510748133063316,-0.1003891546279192,0.7370506357401609,-0.5038411291316152,-0.09294943884015083,0.6897647744044662,0.6876394501887262,-0.002375745214521885,0.024082432501018047,0.7191868526861072,0.24195446074008942,0.6473455158993602,0.592674751766026,-0.8756239297799766,-0.04006763780489564,0.5949669848196208,-0.4102204358205199,0.32867447240278125,-0.6458250521682203,0.36493029864504933,0.6449805535376072,0.07655167486518621,0.3075783895328641,-0.15557505330070853,0.5953830694779754,0.7850676225498319,0.9671917068772018,-0.17821780359372497,-0.32807348761707544,-0.61661406327039,0.3725409214384854,0.09845727356150746,0.7101242849603295,0.7251324681565166,-0.02627807017415762,-0.4407913023605943,-0.021701894234865904,0.48566593788564205,0.5371033851988614,0.7919051228091121,-0.7296315818093717,-0.3992269295267761,0.23807619651779532,0.23781762598082423,-0.9695857563056052,-0.9584773839451373,0.5931954402476549,0.9430480911396444,-0.7471988289617002,-0.42062394553795457,-0.20990151586011052,-0.9529793565161526,-0.8647342277690768,0.779388768132776,0.8165612709708512,0.7173158535733819,0.3539712782949209,0.7808885280974209,-0.45930507173761725,0.44021704606711864,-0.8888580808416009,-0.9233093578368425,0.2019692617468536,0.3827483467757702,0.12339108716696501,0.3854051614180207,-0.7408808711916208,0.3780494756065309,0.05133305583149195,0.7274865279905498,-0.06275132298469543,-0.16094399569556117,-0.4131405334919691,-0.03201779676601291,-0.08789304876700044,0.4009308167733252,0.8959640231914818,-0.10060752695426345,-0.775482518132776,-0.4645294090732932,0.90837671328336,0.923066986259073,0.17815820313990116,-0.22187248477712274,-0.7390822540037334,0.03596078185364604,-0.34546655928716063,-0.005388197023421526,0.6185287940315902,-0.5444747572764754,-0.5916466698981822,0.10212565027177334,-0.9102126257494092,-0.3204519785940647,0.12440048344433308,-0.11911626439541578,-0.17768274853006005,-0.426737570669502,-0.14163506031036377,0.5283726556226611,0.11005674442276359,-0.10233969567343593,-0.2696165293455124,-0.48561665741726756,-0.3979052100330591,-0.5565782259218395,-0.1100060073658824,0.612550110090524,-0.5646743141114712,-0.8355159698985517,0.26384434243664145,-0.8568551768548787,-0.6935542924329638,0.6723002819344401,-0.5242223981767893,-0.9627956999465823,0.919685507658869,0.7593419440090656,0.9845806243829429,-0.8359378897584975,-0.01802749466150999,-0.9760755333118141,-0.5911356876604259,0.18577495077624917,0.9063605517148972,0.26646929513663054,0.24669826263561845,-0.13674506219103932,0.20070084370672703,0.1227263561449945,-0.9330984288826585,0.49307894380763173,-0.4155244645662606,0.7569494321942329,0.43369940435513854,-0.646584315225482,-0.8816358698531985,0.325482205953449,0.11655792128294706,0.23567268997430801,-0.4841868984512985,-0.7969805202446878,0.8278764728456736,0.787481093313545,-0.8007532153278589,0.7904910338111222,0.8778242152184248,-0.9853923376649618,-0.08425833703950047,0.06745768012478948,0.12275964766740799,-0.6532433400861919,-0.954583965241909,0.5630158358253539,0.6071241162717342,0.4327783342450857,0.21247321786358953,0.8759586475789547,0.9684143648482859,-0.3781970851123333,-0.5255454843863845,-0.2830769126303494,0.3204881218262017,-0.49462235905230045,-0.08583496930077672,0.40654320642352104,0.8017478566616774,-0.6323239556513727,-0.12532623205333948,-0.9968394893221557,0.5638254806399345,0.9688703073188663,-0.5131924892775714,-0.5108346412889659,0.47517265379428864,0.6773205427452922,-0.10943785263225436,0.03289717435836792,0.3007167116738856,-0.4447773890569806,0.6209447882138193,0.5769858444109559,0.487500143237412,-0.6094416114501655,-0.025573520455509424,0.9231233056634665,0.6924155098386109,0.667985615786165,0.7356597892940044,-0.1595483561977744,0.09916426986455917,0.34714333713054657,-0.0865716808475554,-0.6068294108845294,-0.8149765338748693,0.7718041404150426,0.7476121871732175,0.8233539941720665,-0.7840199768543243,-0.8335178871639073,-0.8064176668412983,0.5256926217116416,0.9633760428987443,0.9737621005624533,-0.5207424601539969,-0.19311504159122705,0.8675213493406773,0.23158619040623307,0.22667405009269714,0.11505521135404706,-0.7816170388832688,0.44310481613501906,0.7686412166804075,-0.11277915863320231,-0.6743567804805934,0.6219736933708191,0.41877613589167595,-0.3517964123748243,0.673005954362452,0.6690497850067914,-0.45756557723507285,0.312231860589236,0.44638319639489055,0.9287128364667296,0.3334228079766035,0.04417734593153,0.6001527062617242,0.04954760707914829,-0.9664434897713363,0.9457718012854457,-0.39755262481048703,0.8026724387891591,-0.3104018457233906,0.05945289647206664,-0.247286731377244,-0.008703290484845638,-0.5986295263282955,0.7357327872887254,-0.8192004011943936,0.39553283574059606,-0.6002258653752506,0.5567527525126934,-0.8294041864573956,-0.23011869611218572,-0.33923481591045856,-0.0017274655401706696,-0.7459969874471426,-0.26971710100769997,-0.20014856616035104,0.737603950779885,-0.8257672134786844,0.36983279371634126,0.5611320328898728,0.8587591988034546,0.19648288702592254,0.051115300972014666,-0.3764465688727796,-0.4297723574563861,0.022276188246905804,0.6241719760000706,-0.7572232936508954,-0.33282149164006114,0.5277360258623958,0.5529864351265132,-0.5440516639500856,-0.24011787213385105,0.32314691226929426,-0.30727026145905256,0.7110699410550296,-0.9154243767261505,0.248889135196805,0.6142377024516463,-0.5799747509881854,0.8425578344613314,-0.9494608966633677,-0.5338574326597154,0.5052366433665156,0.6138068367727101,0.3638354195281863,0.3099271450191736,0.3058545859530568,-0.24268996436148882,0.5950179006904364,-0.1908731027506292,0.13217227859422565,0.35539098642766476,-0.5331226191483438,0.15469871647655964,-0.08878384158015251,-0.7616536347195506,0.10458130901679397,-0.4788887929171324,0.5035527148284018,-0.5397159596905112,0.5431618797592819,0.0912239090539515,-0.09006674028933048,0.14759578183293343,-0.9466568692587316,-0.5836467398330569,0.3576360554434359,0.6237014611251652,-0.20063592959195375,0.8559690052643418,0.36170075414702296,0.5540402191691101,0.9146652277559042,0.9039787733927369,-0.5513472971506417,0.9144312399439514,-0.7022843742743134,-0.2165164607577026,-0.8213689513504505,-0.06056699715554714,-0.8962407629005611,-0.29765489464625716,0.42294602980837226,-0.5590028190053999,0.4455008185468614,-0.3952932059764862,0.9128306736238301,0.47315447218716145,-0.023296720813959837,0.10612373519688845,0.010326267220079899,-0.5399137199856341,0.5805203239433467,0.48565706377848983,-0.2971156067214906,0.540436364710331,0.9352180403657258,-0.45828677993267775,0.8851616154424846,-0.6936999694444239,-0.5061247125267982,-0.8030783301219344,0.8037004275247455,0.6614077715203166,0.820910298731178,0.8922708528116345,0.31730484450235963,0.6134014572016895,-0.07755614910274744,-0.11442034784704447,-0.1252926397137344,-0.3419457343406975,0.34850200498476624,-0.29244393669068813,-0.6945084072649479,-0.11369176860898733,-0.5998836262151599,-0.45759663078933954,0.0430178539827466,-0.8277734820730984,0.18452238896861672,-0.3063920233398676,0.6167804743163288,-0.7828143797814846,0.8405905496329069,-0.15814361767843366,0.9438753370195627,0.28769029350951314,-0.2653394159860909,0.21948068402707577,0.31084826216101646,-0.13251748494803905,0.4952145959250629,0.4831005297601223,0.5743379998020828,-0.09640142368152738,0.15410776296630502,-0.6926326118409634,0.7537315874360502,0.4575903369113803,-0.82904834439978,0.1381880547851324,0.296313411090523,0.1746515715494752,-0.9016403909772635,-0.29539084481075406,0.06880035810172558,-0.1262883977033198,-0.23907712567597628,0.9576388518325984,-0.035345908254384995,-0.08871155977249146,-0.4116780390031636,-0.29962722351774573,-0.4143663556315005,-0.3448180896230042,-0.031007084995508194,0.9820329728536308,0.6020661112852395,-0.29998540924862027,-0.48125056084245443,-0.32674995344132185,-0.5947473207488656,-0.25074231484904885,-0.5319562209770083,-0.22265526186674833,0.46434582863003016,-0.8164075859822333,-0.6740169464610517,-0.24271662859246135,0.3472849898971617,-0.8099965588189662,0.337971736676991,0.13984180008992553,-0.7269700490869582,-0.7898198273032904,0.6349237081594765,0.21616786113008857,0.8019239013083279,0.485704040620476,-0.9948879778385162,0.023001051507890224,-0.40951769007369876,0.7830053851939738,-0.31714485958218575,-0.7005563429556787,-0.16579612530767918,-0.9427941176109016,-0.06992881000041962,0.8432410014793277,-0.7751965261995792,-0.9765247693285346,-0.7831763015128672,-0.8338113902136683,0.3544110436923802,0.8352728202007711,0.2874868856742978,-0.42519618244841695,-0.7371393577195704,-0.2280012876726687,-0.40540883783251047,0.10081650782376528,0.39392060181126,0.06881758151575923,0.8804645794443786,-0.46379743982106447,0.8185495627112687,-0.9730448955669999,-0.24048796389251947,0.7511373185552657,0.17238821927458048,-0.13476195745170116,0.989220708142966,0.5726812831126153,0.3740466283634305,-0.2888406836427748,0.5877594649791718,-0.22364644799381495,0.35691303154453635,-0.8528490224853158,0.2799614490941167,0.31296963104978204,0.3278764998540282,0.09501305595040321,0.3663378651253879,0.3452405766583979,0.5336440773680806,0.5193153684958816,-0.38822415890172124,0.5410636798478663,-0.37230665469542146,0.29545560386031866,0.9852778539061546,-0.21410563588142395,-0.29776971554383636,0.8633405645377934,-0.06839347304776311,-0.1485473052598536,-0.11111267283558846,-0.2622895357199013,0.1669900007545948,0.6747668306343257,-0.4861298860050738,0.20549553725868464,-0.38186963461339474,0.7812374802306294,-0.16799087403342128,-0.4448709124699235,-0.8847022857517004,0.6776244812645018,-0.16540090925991535,-0.8064181664958596,-0.642609435133636,-0.201396478805691,0.9237729958258569,-0.584540250711143,0.4925611480139196,-0.07476301491260529,-0.9587482702918351,-0.8705524117685854,-0.5861098626628518,0.2824669727124274,0.6671566059812903,0.1082194116897881,0.5820131106302142,-0.4833863414824009,0.24115933291614056,-0.7508392357267439,-0.45865828450769186,0.4902942436747253,-0.34961782675236464,-0.00038150977343320847,-0.02744464296847582,-0.611917928326875,0.25672429986298084,-0.24690470611676574,-0.5979970013722777,-0.48590966360643506,-0.8364105224609375,-0.6427365322597325,-0.5157474773004651,0.36482278630137444,-0.6470154761336744,-0.11871260264888406,-0.04224389046430588,0.49772487534210086,-0.9855475318618119,0.367445457726717,-0.9249383071437478,-0.5088506368920207,0.7996033984236419,0.628696714527905,0.19779213424772024,0.9273120108991861,-0.07399149099364877,-0.36935586435720325,0.5727703087031841,-0.4996093977242708,-0.402205228805542,-0.2959561236202717,0.11993041401728988,0.3155651055276394,0.07908812398090959,0.038366022054106,-0.8009332725778222,-0.6972588771022856,-0.35658442275598645,-0.6605755719356239,-0.5873948512598872,-0.2592625878751278,-0.4488339968957007,-0.20024211704730988,0.5352325835265219,-0.10629949439316988,-0.8473595813848078,0.041530807968229055,0.7032445673830807,-0.2378984149545431,0.6982522453181446,0.48602202255278826,-0.36550276912748814,-0.8981549465097487,-0.2769091399386525,-0.2738767652772367,0.5593801122158766,0.7473236359655857,0.9444275978021324,-0.8280956321395934,-0.04546027211472392,0.4054729491472244,0.9843376409262419,0.6683558775112033,0.24601524602621794,-0.8122994964942336,0.7786070983856916,0.39828014140948653,-0.5761630283668637,-0.6901243138127029,0.91593461856246,-0.5945772733539343,-0.7952631921507418,0.7213520365767181,0.19405273022130132,-0.21850448194891214,-0.22026472305878997,0.5108040506020188,-0.48195131681859493,-0.6167392330244184,-0.5555250938050449,-0.7042635809630156,-0.1987705547362566,0.07272978965193033,-0.5483503700233996,0.43721895618364215,-0.7810612968169153,0.13529163505882025,-0.4911386938765645,-0.7555095045827329,-0.7545238854363561,-0.6598276635631919,0.7662940244190395,0.24465481843799353,-0.6342248138971627,0.6314402939751744,0.0886825080960989,0.08873455133289099,-0.7626623436808586,0.05645528482273221,-0.1850888510234654,0.4023833046667278,0.18218403728678823,-0.3805955331772566,-0.6076020537875593,-0.6269129938445985,-0.9958947352133691,0.7554335580207407,0.03600949374958873,-0.5756256985478103,0.6968952524475753,-0.5507194525562227,0.5844406615942717,0.9814430079422891,-0.674797578714788,0.45026185968890786,0.3545496165752411,0.1427331413142383,-0.6403601914644241,-0.1803738852031529,0.6333616375923157,0.593797076959163,-0.8530041095800698,-0.20896417135372758,-0.3476014160551131,-0.21063007228076458,-0.8350081387907267,0.11655279342085123,-0.7116550682112575,0.858678050339222,0.945178878493607,-0.36528397584334016,-0.7463663988746703,-0.7520138453692198,0.9546999773010612,0.06512559950351715,-0.7697558961808681,0.8542563440278172,-0.8934993804432452,0.7075194497592747,-0.21510332031175494,-0.963992674369365,-0.026740070432424545,-0.9719236302189529,-0.0014815488830208778,0.44195402320474386,0.6706495299004018,0.2351684425957501,0.5543828029185534,0.6814227309077978,0.1580614037811756,0.5805728822015226,0.3003553356975317,0.9549575727432966,-0.33320915047079325,-0.7941781529225409,-0.15834032325074077,0.48527586832642555,0.17042186856269836,0.4992010332643986,0.6407848917879164,0.3452416453510523,0.7359183328226209,0.49049855023622513,-0.4609391023404896,-0.41700860392302275,-0.5951081425882876,-0.9423267310485244,0.17953374376520514,0.1956393402069807,-0.1196639952249825,0.7229285994544625,-0.09956891415640712,0.07121113548055291,-0.27719886507838964,0.6525545949116349,0.621434009168297,0.5579653214663267,0.39955735858529806,0.28644924936816096,0.3281553741544485,0.6903874529525638,0.37893558386713266,-0.7037986530922353,0.4972790605388582,0.2277845162898302,0.2067833193577826,0.29901876859366894,-0.055197786539793015,-0.9790957006625831,-0.8131425147876143,0.5035016448237002,-0.9806398386135697,-0.11444531241431832,0.4308365127071738,0.22876709466800094,0.6833112007007003,0.6455605258233845,-0.6666470328345895,-0.9955442501232028,-0.4210894210264087,-0.6099742250517011,0.2614136803895235,-0.6434301952831447,-0.47338706254959106,0.3454216909594834,0.4437114535830915,-0.9483122024685144,-0.9986506481654942,-0.9386033858172596,0.23560909554362297,-0.1236615409143269,0.46019058721140027,-0.047238951083272696,0.206113759893924,-0.565193829126656,-0.5475134337320924,-0.7978711067698896,0.5189479626715183,0.9051959533244371,0.45261980779469013,-0.13723970763385296,-0.3257223744876683,-0.8172661983408034,-0.24814205709844828,-0.7368950629606843,0.7794138551689684,0.5013764286413789,0.7401388697326183,0.8310112250037491,-0.26007520593702793,0.5829154667444527,0.38239447260275483,0.7969371122308075,-0.5715557876974344,0.3322849660180509,0.7199152503162622,0.26524238707497716,-0.055659434758126736,0.7282758844085038,-0.4141052532941103,0.20350856240838766,0.8244862863793969,0.4665830093435943,-0.3923155115917325,0.23570333374664187,0.13460852717980742,0.1915560937486589,0.44892506627365947,0.28958774032071233,-0.7300981171429157,0.12190049374476075,-0.9349513254128397,0.534937746822834,-0.9414271116256714,-0.34115102514624596,-0.3386495728045702,0.2616558722220361,0.6413791542872787,-0.6685047377832234,0.741446303203702,0.6643021521158516,0.9005972859449685,0.88389294128865,0.7780244764871895,-0.8605335615575314,0.6008116030134261,-0.8610292305238545,0.347213726490736,0.11321316519752145,0.1969427391886711,0.5411137007176876,0.11792514007538557,-0.15603145258501172,0.5531412004493177,-0.42486868472769856,0.2096261689439416,0.41084970347583294,0.00548929488286376,-0.7202828722074628,0.5735190925188363,-0.7408941183239222,0.04724358953535557,-0.7688078922219574,0.04491085093468428,0.15701349824666977,-0.2252653418108821,-0.8683941476047039,-0.7135150087997317,0.40247866651043296,0.9529184610582888,0.8248131088912487,0.9995208545587957,-0.161524617113173,0.34547532396391034,0.4606940811499953,0.2949182656593621,0.5455870651639998,0.4048483716323972,-0.025716076605021954,0.8269834234379232,0.7730788714252412,-0.7345643416047096,-0.9658160819672048,-0.15504357451573014,-0.5966256884858012,-0.6349225863814354,0.5083844684995711,0.6686039087362587,0.8950707581825554,0.12422175193205476,-0.8752700807526708,-0.014863263815641403,-0.9923115498386323,-0.023500375915318727,0.078743199352175,0.374785125721246,-0.175735745113343,-0.08253517420962453,-0.11870050802826881,0.10663146991282701,-0.8391513330861926,0.8565290640108287,0.11538770468905568,0.08073121309280396,-0.9475418324582279,0.8273509507998824,-0.002017504069954157,-0.7228238950483501,-0.9371520467102528,-0.3845587600953877,0.8759623863734305,-0.5265355259180069,-0.10202295938506722,-0.7745470469817519,0.17549804830923676,0.37070021871477365,0.39138068025931716,-0.17095418134704232,0.9357023444026709,-0.00741327740252018,-0.610899112187326,-0.5478518302552402,-0.5587328900583088,0.7843324053101242,-0.11383693851530552,0.5367458215914667,0.26214577490463853,0.4049548776820302,0.6027673874050379,0.43922456726431847,0.9658818417228758,-0.9957463191822171,0.7060141484253109,-0.6650902931578457,-0.9606578387320042,0.1910706707276404,0.03723352402448654,-0.984890999738127,-0.7153009744361043,0.2875251262448728,-0.6347376490011811,0.3458737595938146,0.6260962863452733,0.42896863631904125,-0.049580926075577736,-0.23694431642070413,-0.1969242701306939,0.8013074472546577,0.621274302713573,-0.3348905313760042,0.2224388038739562,-0.6057243491522968,0.24246082035824656,-0.7751486557535827,0.8925479147583246,0.23988107033073902,0.9710261942818761,-0.5341437691822648,-0.5580221731215715,0.6899365559220314,-0.293265491258353,0.6313667283393443,0.14350704103708267,-0.9486176795326173,-0.12977615045383573,-0.6478594844229519,0.3608522666618228,-0.37220966909080744,-0.7936254655942321,0.055389259941875935,-0.3901134356856346,-0.6367775248363614,-0.23619664274156094,-0.7738917754031718,-0.684430762194097,-0.852746675722301,-0.5082492246292531,0.4463764722459018,0.37305368250235915,-0.07302388921380043,0.07570859231054783,0.9138516527600586,-0.9234165824018419,-0.03318370413035154,-0.17189583694562316,0.14516247669234872,0.3163738325238228,-0.5407691029831767,-0.2937489841133356,0.9202424744144082,-0.6948132594116032,0.7719954247586429,-0.49728492787107825,-0.24021098762750626,-0.6313099805265665,-0.04005592409521341,-0.5146974842064083,-0.5481810881756246,0.8927779076620936,-0.47552293725311756,0.17756594391539693,0.022304746322333813,-0.7582136951386929,-0.8712821989320219,-0.35913359886035323,0.5175559069029987,-0.9788334807381034,0.1792318243533373,0.6171969221904874,-0.7835342357866466,0.7381396908313036,0.8102531917393208,-0.4991906834766269,0.5617793244309723,0.08106177346780896,0.3094811998307705,-0.8719677631743252,0.5287176063284278,0.40639393823221326,0.8166268789209425,-0.42735167732462287,0.565090378280729,0.27758284844458103,0.2983785909600556,0.28334088809788227,-0.7793012610636652,-0.8980535953305662,-0.7331561180762947,-0.8830743106082082,-0.3970220638439059,0.8860672349110246,0.5587343075312674,0.08791207848116755,-0.24673085054382682,0.29397988971322775,0.9254883155226707,-0.368145945481956,0.3345443778671324,-0.9478211454115808,-0.08304093359038234,0.3250680956989527,-0.8363831122405827,-0.5951424269005656,0.14693161798641086,0.4460217054001987,0.45436454843729734,0.7808924047276378,0.032732231076806784,0.21499675326049328,0.45536723732948303,-0.3285500481724739,0.48946775449439883,-0.821740472689271,-0.9281967775896192,-0.5658464338630438,0.6937506962567568,0.9188805310986936,-0.29102218663319945,-0.2395679452456534,0.06545484019443393,0.26136889308691025,-0.023008713498711586,-0.9791657235473394,-0.6043478227220476,0.7871564333327115,0.9241230227053165,-0.1106906495988369,-0.6046002730727196,-0.38317012786865234,0.21784193208441138,-0.062459411565214396,0.30361747834831476,0.8772241869010031,-0.5009961305186152,0.26966198440641165,0.39560093684121966,-0.4545913888141513,-0.7184341470710933,-0.3174037244170904,-0.10903186351060867,0.8834512555040419,-0.030363887082785368,0.6309704608283937,-0.28268608497455716,-0.7548531237989664,-0.4568119067698717,-0.5031480132602155,0.2998688197694719,0.7325699734501541,0.9785293266177177,-0.7735390262678266,0.7022679024375975,-0.4121009837836027,0.652874980121851,-0.5860044369474053,-0.7528932970017195,0.15573660237714648,0.5728457006625831,0.06506042182445526,0.8817772157490253,0.3142800433561206,-0.32958352100104094,0.25658454094082117,0.3237561071291566,0.6858471580781043,-0.20218763779848814,0.946129082236439,-0.25452418299391866,0.836626076605171,0.6899695680476725,-0.018414405174553394,-0.6251012273132801,0.02885610982775688,0.5575895304791629,-0.9405012247152627,0.5173089597374201,-0.49157894495874643,0.800980756059289,-0.8063107407651842,-0.5310371280647814,0.31835340708494186,0.42487157555297017,-0.2423660927452147,0.07719686860218644,-0.3174003791064024,0.04825631016865373,-0.6444232459180057,-0.03500369377434254,-0.6089211818762124,0.37127020210027695,-0.21279892465099692,-0.39519285736605525,-0.4235427202656865,0.5947969928383827,0.32679133443161845,-0.8838909124024212,-0.7473355825059116,-0.7885685856454074,0.04661935567855835,-0.30868486780673265,0.16027809400111437,0.8102905093692243,-0.7093769265338778,0.6933602490462363,-0.2475262605585158,-0.43755505606532097,0.9147093747742474,0.7483353978022933,0.7849170914851129,-0.08325409656390548,0.4352118382230401,0.6072920500300825,-0.5175535539165139,-0.17656545992940664,0.5903221629559994,0.4730478790588677,0.18993622018024325,-0.21291000908240676,0.45542028872296214,-0.04419378098100424,-0.41224682377651334,-0.9151694620959461,0.9959186622872949,-0.19546623528003693,-0.2233695420436561,0.05307634919881821,0.5156984706409276,0.5085857422091067,0.24540366884320974,0.2876543430611491,0.7319913394749165,0.5412330734543502,0.9027490210719407,-0.6908209202811122,0.845978042576462,-0.188749885186553,0.169834746979177,0.7486579776741564,0.11054421355947852,0.1714548678137362,0.8089772127568722,0.4528438444249332,-0.48565039737150073,-0.3936000415123999,0.5131218577735126,-0.8626694078557193,-0.8479434880428016,0.7482770318165421,-0.6374319144524634,0.6291611245833337,-0.8831136291846633,0.8717391947284341,-0.7884241701103747,-0.3726822561584413,0.7845743182115257,-0.6394507861696184,-0.5786813404411077,0.5030784071423113,0.30223973374813795,0.9069354278035462,0.5494751203805208,0.538355125579983,0.3606121907941997,0.1466573323123157,-0.1862023314461112,0.6483200248330832,-0.9958703895099461,-0.9533846261911094,-0.4820655188523233,0.7755390014499426,-0.3536444418132305,-0.9552606800571084,0.11871003033593297,-0.6852109539322555,0.6797804194502532,-0.31397359538823366,-0.23739645536988974,-0.9764214907772839,-0.6170135475695133,-0.17575369449332356,-0.8306599436327815,0.2637423612177372,-0.5561077413149178,0.245485317427665,-0.3692382196895778,0.764202434103936,0.26999281626194715,0.8332327269017696,-0.9362954427488148,0.43156278785318136,-0.07574697257950902,0.8304055384360254,0.3432008675299585,-0.7486407742835581,0.7109960266388953,-0.822608741465956,0.44653025874868035,0.05609943671151996,-0.02688387455418706,-0.7128791534341872,-0.09849177300930023,-0.17322160815820098,-0.33411366073414683,0.06557536171749234,-0.8239948223344982,-0.6063177650794387,0.6242023836821318,-0.012678933795541525,-0.7824130854569376,0.0955756870098412,-0.7182619366794825,0.30723788775503635,0.2982455948367715,-0.6344226873479784,0.9192491821013391,-0.7461172915063798,0.1963643655180931,-0.779341590590775,0.18373574363067746,0.12093109916895628,0.33693839609622955,-0.105143534950912,-0.7684389553032815,0.2937902230769396,0.16753385914489627,-0.5701875002123415,-0.10231425054371357,0.16939374106004834,0.26210039108991623,-0.1404633019119501,0.1338557219132781,0.4094759812578559,0.40876022446900606,-0.46615565102547407,-0.8069056360982358,-0.2276626960374415,-0.42870596423745155,0.3612506212666631,0.10765525978058577,0.9033141937106848,0.6371000595390797,0.44932100689038634,0.5572308297269046,0.7162227281369269,-0.7496049306355417,0.8595002288930118,-0.005855426657944918,0.5189789687283337,0.8571701855398715,0.43187415413558483,-0.06031947722658515,-0.9129498740658164,0.7923820661380887,-0.38314435677602887,0.9060733821243048,0.324908500071615,0.19792615063488483,-0.9697855277918279,-0.09594032447785139,0.20517249265685678,-0.7991311107762158,-0.7081174566410482,-0.437232696916908,0.13285293197259307,-0.9271042970940471,-0.6981427487917244,-0.3482556133531034,0.28389518056064844,0.8182160276919603,0.9750101841054857,0.687777005136013,-0.4120911415666342,-0.45385389868170023,-0.19240404665470123,-0.7898748400621116,-0.3273249538615346,0.3584343995898962,-0.8601121632382274,-0.7316267699934542,-0.6907923365943134,-0.9341988442465663,0.8912533335387707,0.9784175208769739,0.5685336864553392,-0.45852054562419653,0.3322944501414895,0.7665164200589061,0.7666882667690516,-0.8762638191692531,-0.379514382686466,-0.5308790975250304,-0.6691606845706701,0.8777438094839454,-0.7741019106470048,0.2302838689647615,0.5695421998389065,-0.9297041776590049,-0.7119432571344078,-0.8934841332957149,0.9911937625147402,-0.10555695602670312,-0.21110030449926853,0.17788710724562407,0.5448025222867727,-0.24138297885656357,-0.6317114746198058,-0.4975324394181371,0.9453629064373672,0.7255050684325397,-0.7526236139237881,-0.8317910763435066,0.2166949943639338,0.9727217690087855,0.1517871036194265,0.24310802295804024,0.5071675512008369,-0.22612747689709067,-0.4868427882902324,-0.4443466211669147,-0.08095613867044449,-0.5710821049287915,-0.7685552597977221,-0.21713537070900202,-0.4667030842974782,-0.6608405248261988,0.47751509957015514,-0.2905797893181443,-0.3171854196116328,-0.1467859297990799,-0.2958552078343928,0.40807703137397766,0.5423539727926254,0.22688236134126782,-0.6751948846504092,0.5879179495386779,-0.9700906770303845,-0.2973620011471212,0.26623167283833027,0.6420775572769344,0.7196002467535436,-0.39761492842808366,0.25898149190470576,0.5641970178112388,-0.7642337754368782,-0.5448543475940824,-0.7482676808722317,-0.13362257415428758,-0.9525668853893876,0.6802815599367023,0.15169312013313174,-0.7897585900500417,-0.20487383473664522,0.7641654522158206,-0.10737313935533166,0.2653917926363647,0.47213043412193656,-0.883119189646095,0.11124314507469535,-0.17637663008645177,0.5528091690503061,0.7199094174429774,-0.996878553647548,0.16627520183101296,-0.7703637639060616,-0.5994789553806186,0.7484227730892599,0.8228833004832268,-0.10781874833628535,0.02146612387150526,-0.8764627291820943,-0.8252824326045811,-0.513626208063215,0.3912041103467345,0.31865519750863314,-0.5042945849709213,-0.19815405271947384,0.11866921791806817,0.9138823971152306,-0.017568569164723158,0.753992619458586,-0.7880287854932249,-0.46606942592188716,-0.10088561149314046,-0.39136689016595483,0.5035439608618617,-0.49404642125591636,-0.11207625269889832,0.14692991878837347,0.3891564388759434,-0.7859483044594526,-0.5017039305530488,-0.46549221547320485,0.08320049243047833,-0.23461688729003072,0.8653407469391823,-0.25403448194265366,-0.7174890893511474,-0.5597975738346577,-0.7249656459316611,0.9697986240498722,-0.12426957627758384,0.058171721175312996,0.8961609387770295,0.5673698051832616,-0.7533916356042027,-0.6918977247551084,-0.530295732896775,-0.4672601385973394,-0.5893241339363158,0.03651277208700776,0.5877190339379013,0.259641888551414,0.5543295862153172,-0.47984651755541563,-0.620933189522475,-0.19623310770839453,0.1950526158325374,0.9996616118587554,0.10100029734894633,-0.44922596495598555,0.7388356225565076,-0.27276360848918557,0.799291402567178,0.1244966727681458,0.29173329193145037,0.47089811973273754,-0.4989978149533272,-0.33479966409504414,0.3793729026801884,0.6724427486769855,-0.4432245525531471,0.511322224047035,0.9285805732943118,0.20791647909209132,-0.9427174646407366,-0.860882458742708,0.5268862601369619,-0.005229730624705553,0.10273453127592802,0.6813624589703977,0.3201602487824857,-0.8265995397232473,0.5636148839257658,0.6924743610434234,0.10000501340255141,0.9266506731510162,0.024016690906137228,-0.5036778161302209,-0.5421923156827688,0.8183852485381067,0.9185140635818243,-0.08492013532668352,0.3284374373033643,-0.8751023318618536,-0.7730775969102979,0.29187124129384756,0.44770127022638917,-0.8967401217669249,-0.8583798315376043,0.3184384247288108,0.8940003230236471,-0.22012917045503855,-0.1768324482254684,0.9242476248182356,0.8046112251468003,0.07463932363316417,-0.7833540444262326,0.0024752384051680565,0.4751074290834367,-0.2676460617221892,0.35839709732681513,-0.3931315653026104,0.21919959504157305,0.8757117795757949,0.27151059405878186,-0.1260206145234406,0.13264528242871165,0.05594817968085408,-0.519326385576278,-0.11022633407264948,0.5898600402288139,-0.04686652356758714,0.5861657653003931,0.2248335275799036,-0.463234122376889,-0.11414697021245956,-0.26589289912953973,-0.5267010987736285,-0.21420673606917262,-0.4045410775579512,-0.0046868943609297276,0.31186406686902046,-0.7910673366859555,-0.05073934979736805,0.276063269469887,-0.30840550689026713,-0.5599744780920446,-0.04559360910207033,-0.8476768601685762,-0.8421135442331433,0.6821628767065704,-0.271909954957664,-0.14814292639493942,0.6402535480447114,0.887389290612191,-0.7446281691081822,0.39885983848944306,-0.9223179970867932,-0.7529508764855564,0.8088584714569151,-0.6529926983639598,0.30765567580237985,-0.07915691565722227,0.8798286411911249,-0.9336656853556633,0.6802210165187716,0.04235367150977254,-0.34825438586995006,-0.11673836270347238,-0.07857861556112766,0.9921469539403915,-0.3408275372348726,-0.814763780683279,0.144737942609936,0.8446769239380956,-0.4965832787565887,-0.7242965325713158,-0.2910164832137525,0.5061149280518293,0.42484033294022083,0.14677233342081308,-0.27918111672624946,0.0749639212153852,-0.015704451128840446,0.7765392637811601,-0.5367180639877915,-0.8052185289561749,-0.23123433673754334,-0.028805641923099756,-0.9311926141381264,0.5455821380019188,-0.2802848150022328,-0.8688440253026783,-0.7474344004876912,-0.6430275985039771,-0.05010567279532552,0.5474507003091276,-0.6281749648042023,-0.0826685419306159,0.45823008427396417,-0.3956915885210037,-0.8190113739110529,0.5203996784985065,0.27005475433543324,0.31538408948108554,0.46988781820982695,0.7350298785604537,-0.17927695158869028,-0.07944042095914483,-0.5735650770366192,-0.6566991708241403,-0.3389617158100009,-0.20851828483864665,-0.23182805627584457,-0.1993840243667364,-0.42245817510411143,-0.9325935863889754,-0.18303042696788907,0.713708764873445,0.5316199623048306,-0.1623353697359562,0.8750055613927543,0.9809400555677712,-0.1705471621826291,0.16569345723837614,-0.1362139480188489,-0.48684596363455057,-0.2030662507750094,-0.99650774942711,-0.030403243377804756,0.43359569599851966,-0.34327275585383177,0.016283614560961723,0.7863857606425881,-0.0498166992329061,0.2944894265383482,0.382010898552835,0.6390135926194489,-0.5505253174342215,-0.21981189539656043,-0.871671425178647,-0.12403080286458135,-0.8112403284758329,-0.6379603524692357,-0.1373113407753408,-0.595963544677943,-0.02850796328857541,-0.8606665572151542,0.5691885906271636,-0.9435775903984904,-0.16542563354596496,0.3406024924479425,0.32406329875811934,-0.04631624836474657,-0.8464128877967596,-0.6656559752300382,-0.2924756486900151,0.7373619694262743,0.5371562577784061,-0.5970611860975623,-0.3928636843338609,0.772592346649617,-0.29672696627676487,0.25319894403219223,0.4651889521628618,0.9276910554617643,0.21890363050624728,-0.14264702005311847,-0.050588774494826794,-0.6029175636358559,-0.6326588192023337,-0.06554124737158418,-0.12279211403802037,0.06515597039833665,0.3499750695191324,-0.8035940336994827,-0.9342567985877395,-0.6737774866633117,0.31187971867620945,-0.4482994875870645,0.34608476888388395,0.824297022074461,0.2320233746431768,0.5342202917672694,-0.6231321017257869,0.1775594656355679,-0.13126563327386975,0.5481304419226944,0.22211595298722386,-0.4729834692552686,-0.5199715215712786,0.19572579115629196,0.581901902332902,-0.718610948882997,-0.6177065460942686,0.4414840159006417,0.05739001743495464,0.32543610502034426,0.4662050176411867,-0.12542862724512815,0.5991566572338343,-0.18402377888560295,-0.7898853705264628,0.8775141043588519,-0.02900867722928524,0.824616551399231,0.9100459800101817,0.42312176059931517,0.8708405042998493,-0.6441617980599403,-0.6422504065558314,-0.29836002457886934,-0.522033411078155,0.7789837131276727,0.3509270725771785,0.6129930056631565,-0.10341760283336043,0.08929437818005681,0.5984809040091932,0.8543235161341727,0.19521012576296926,-0.49586477503180504,-0.40214543230831623,-0.6279313554987311,0.12276648916304111,-0.9307195832952857,0.33225000090897083,0.5923209940083325,-0.8251780108548701,-0.5493702385574579,0.7280271933414042,0.22414881503209472,0.785636670421809,-0.5816278727725148,-0.8434006869792938,-0.16686180233955383,-0.8918865495361388,0.07595876790583134,-0.4000323978252709,0.618262832518667,0.18222735496237874,-0.1835714834742248,0.93215870577842,0.8152823927812278,-0.25571375666186213,-0.5246401340700686,0.7601998383179307,-0.6068786671385169,-0.08295739069581032,0.04586648056283593,0.8887618444859982,-0.7683370178565383,0.7334744408726692,0.17438475834205747,0.901560218539089,0.46726727206259966,0.41977941477671266,0.2812211085110903,-0.8402289259247482,0.6162778045982122,0.35027910443022847,0.23263497883453965,0.5041779205203056,0.9099048813804984,0.5064082681201398,0.46761179342865944,0.6317140120081604,0.8892480432987213,-0.6419665599241853,-0.9566136547364295,0.2967235567048192,0.8543790807016194,-0.8551531690172851,0.9969834005460143,0.21247662883251905,-0.8193422830663621,-0.17844638088718057,0.2531156078912318,0.12799517856910825,0.6903092791326344,0.47636543586850166,0.39829618064686656,0.531478681601584,0.12174193933606148,0.3591361101716757,0.4937426196411252,0.03665302228182554,0.9276124108582735,0.8200176889076829,-0.29690961400046945,0.8397375089116395,-0.056414008140563965,-0.519552820827812,0.4295314881019294,-0.9128407035022974,0.30337632773444057,-0.33037010207772255,0.3769340831786394,0.9078384041786194,0.7208905755542219,0.8931994196027517,0.5037851226516068,-0.24015708453953266,-0.7278862618841231,-0.054574026726186275,0.6969751352444291,-0.18130229553207755,-0.9481384018436074,0.521631290204823,-0.63961665565148,-0.12190958857536316,0.3046296611428261,0.8705166792497039,-0.2641959828324616,-0.027360841631889343,-0.7677582814358175,-0.8972080065868795,0.9499667868949473,0.2808464909903705,0.9648943678475916,0.4875917127355933,0.06988044362515211,-0.8695206213742495,0.3057663654908538,0.464292798191309,-0.15117190033197403,-0.45928666554391384,0.14055828331038356,-0.3770863306708634,-0.6848505046218634,-0.4471992929466069,-0.08447930496186018,-0.33941396698355675,0.5402525062672794,0.6641830462031066,-0.8570462935604155,-0.3801702633500099,0.1384207927621901,0.31711841002106667,0.314484226051718,0.39899144787341356,-0.08784342044964433,0.5880811172537506,0.459676175378263,0.7257972089573741,-0.13228074088692665,-0.6191160944290459,0.8641612599603832,0.941966244019568,0.8980454746633768,0.7952838237397373,0.12967060785740614,0.6188695095479488,0.8091212175786495,0.5287147625349462,0.43704413203522563,0.30848560854792595,-0.8003700962290168,0.8394406735897064,0.8215946457348764,-0.043468973599374294,0.6942503377795219,-0.8336032326333225,0.30920727737247944,0.9083384540863335,-0.23907169001176953,-0.45063339406624436,0.08510399097576737,0.6401004632934928,0.7040501399897039,-0.05870029050856829,-0.7625773157924414,-0.6490347129292786,0.21408853074535728,-0.8932119854725897,-0.921891797799617,0.585817345418036,-0.6332777384668589,-0.4765106583945453,-0.6381635395810008,0.15919239865615964,-0.09007181040942669,-0.6807275279425085,-0.21754876244813204,-0.37443896336480975,-0.16258490970358253,-0.9460462923161685,0.7716621761210263,0.8952614334411919,0.9204131029546261,-0.08172212913632393,0.540325915440917,0.4105697381310165,0.8562615807168186,0.8308932422660291,0.3871268439106643,-0.9227149900980294,0.9996312316507101,0.6986350305378437,0.8222461482509971,0.3238855227828026,-0.7766828150488436,-0.4399147047661245,0.19111924385651946,-0.9536003712564707,-0.6093417941592634,-0.7894730246625841,0.9139651115983725,0.8067524754442275,0.591380022931844,-0.5898923645727336,0.7168920142576098,-0.3733501578681171,0.9364749998785555,-0.5843843328766525,-0.7872147527523339,0.3681366923265159,-0.16955570690333843,-0.37165886955335736,-0.3083532117307186,0.5066639753058553,-0.6432720725424588,-0.21046913415193558,0.0565704177133739,0.49952471954748034,0.5931798676028848,0.8188982014544308,0.5940894042141736,0.939923154655844,0.05652530025690794,-0.581774961668998,0.6856410466134548,0.7829824155196548,0.926495193503797,-0.8664995157159865,0.16089488845318556,0.7510616010986269,-0.7040594690479338,-0.5141449756920338,-0.5315342997200787,0.6384076098911464,0.6413292246870697,0.6566841625608504,0.6292533129453659,-0.5235665366053581,-0.9435836337506771,-0.37089726282283664,-0.6699839006178081,-0.5357984737493098,0.08737194025889039,0.6724398429505527,0.23422910645604134,0.5429352968931198,0.5179088721051812,-0.3500107266008854,0.06048226682469249,-0.7328056818805635,-0.07870061742141843,0.3010085178539157,0.7909593842923641,-0.07484699226915836,-0.7763766655698419,0.28747739596292377,0.6165389260277152,0.3272600960917771,0.3604249283671379,-0.29514358937740326,0.15794253116473556,-0.3741746270097792,0.5580999394878745,0.867067585233599,-0.3325959178619087,-0.5639416160993278,0.6395124783739448,0.12771148514002562,0.8198970090597868,-0.1339860917069018,0.7659686398692429,-0.5947406785562634,0.8649117723107338,0.8019744604825974,0.607328015845269,-0.10091973934322596,0.7069355989806354,-0.45901016937568784,0.3101117708720267,-0.09303684812039137,0.4697809526696801,-0.5981586151756346,-0.7420532288961112,-0.8121587261557579,-0.3893669522367418,0.30061935214325786,-0.5345914727076888,-0.28657352551817894,0.8906864230521023,-0.7260952955111861,-0.059571584686636925,0.6330842771567404,-0.4100739033892751,-0.41645396407693624,0.2012521275319159,0.23988725384697318,0.3227423648349941,0.6908204546198249,-0.7259722012095153,-0.07464414788410068,-0.050272857304662466,-0.8783046705648303,0.7918445072136819,0.9085471490398049,0.907929599750787,-0.816045411862433,-0.24668211257085204,-0.4526978409849107,0.3629462611861527,0.10705815022811294,-0.2060530288144946,-0.32009767508134246,0.8846095679327846,0.5321756042540073,-0.9056220822967589,0.34413581574335694,0.3059366615489125,0.9148113210685551,-0.3512864853255451,0.5116900498978794,0.12258799094706774,-0.12488507805392146,-0.19279048033058643,-0.1851750947535038,-0.587796707637608,-0.9196874229237437,0.41041602892801166,-0.8928868677467108,0.27640863601118326,0.9650151981040835,-0.4222399154677987,0.10951731540262699,-0.6265551378019154,-0.45363448560237885,-0.03149206005036831,0.9309778194874525,-0.3945935294032097,-0.9914955929853022,0.3927984549663961,0.9477741923183203,0.5479232715442777,0.013453781604766846,-0.7502890708856285,0.3014343846589327,-0.22152584791183472,-0.4003835371695459,-0.47720476193353534,0.07433226751163602,-0.5763567727990448,0.2936296337284148,-0.8155552316457033,-0.6014655423350632,-0.7733926032669842,0.28774298867210746,0.17149323457852006,0.16312711918726563,-0.013862885534763336,0.1282852729782462,0.23811955051496625,-0.18173868115991354,0.11213983176276088,0.2520343721844256,0.7278753453865647,0.1861006449908018,-0.5065130693838,-0.0074544339440763,-0.7789622582495213,0.9980422994121909,0.8126694103702903,-0.028465015348047018,0.7512969123199582,0.4722815086133778,-0.2619023253209889,-0.26099222525954247,-0.06959011126309633,0.003983794711530209,0.5905727921053767,-0.21759584126994014,-0.17766402242705226,-0.5222368049435318,0.6841537789441645,-0.8171630022116005,-0.6144668664783239,0.06664490792900324,0.9258657917380333,0.3118272125720978,0.4727391782216728,-0.15797460824251175,-0.9660938638262451,-0.019598049111664295,0.5056962431408465,-0.013350762892514467,0.012384057976305485,-0.8977870205417275,0.9558925894089043,0.7121713585220277,-0.4839787408709526,-0.18140744883567095,0.5339207402430475,0.3327067159116268,0.02709288615733385,0.7156466138549149,0.10299937939271331,-0.6276710503734648,-0.4625227563083172,-0.5349332871846855,0.2932213437743485,0.3074973104521632,0.1292426735162735,-0.6481964127160609,-0.1611238196492195,-0.3099784506484866,-0.7919625164940953,0.4214830216951668,-0.9820728665217757,-0.17319000931456685,0.9571030894294381,-0.4653675705194473,0.7708682413212955,0.08261450519785285,-0.49856891855597496,0.7214910187758505,-0.11463563609868288,-0.05479774344712496,0.6668456373736262,-0.5447939704172313,-0.6763762515038252,-0.3680436462163925,-0.9747500028461218,0.7379610016942024,0.4211768819950521,-0.0442300452850759,0.5476046060211957,0.8966311914846301,0.7434300230816007,0.983875603415072,-0.7384975827299058,-0.41734275594353676,-0.3049473697319627,0.4664281480945647,-0.3388784588314593,0.9112250828184187,0.6220923368819058,-0.593906422611326,0.08487336756661534,-0.47654649522155523,-0.927709617651999,0.18860514648258686,0.8018976422026753,0.6344108255580068,-0.5631440333090723,-0.6493816082365811,0.7768039247021079,-0.35645182291045785,0.04255375172942877,0.3666012790054083,0.8057768614962697,-0.3678782326169312,0.579130609985441,-0.2615649146027863,-0.9112820313312113,-0.7834696373902261,0.20455604745075107,0.4350933451205492,-0.9764545764774084,0.41924590384587646,-0.5895943236537278,-0.33604610664770007,0.9298429461196065,0.6502770860679448,0.5712497350759804,0.26216894993558526,0.6774444025941193,-0.9859920055605471,-0.3788640717975795,0.6175584183074534,-0.6282236096449196,-0.3425760348327458,0.2441761358641088,0.9445877489633858,-0.21169026475399733,0.4526536944322288,0.3354280744679272,-0.7234135624021292,0.3122864617034793,-0.8232210050337017,-0.303675496019423,-0.7170282732695341,0.5185528798028827,0.0023917797952890396,0.723622809164226,-0.08899647276848555,-0.35579129913821816,0.9431831813417375,-0.32749042054638267,-0.09138039732351899,0.6550428192131221,0.40279080253094435,0.18965480150654912,-0.062383366748690605,0.05169383157044649,-0.940582153853029,-0.7317463373765349,0.17014233255758882,-0.12482489692047238,-0.4582273648120463,0.8278791569173336,-0.14091363083571196,-0.3684710660018027,-0.1566820591688156,0.7886366010643542,-0.6464891256764531,0.7517542918212712,-0.7049963558092713,-0.17904269555583596,-0.5193887245841324,0.3475460824556649,0.7815817659720778,0.8178082425147295,-0.7743837130255997,0.6856237011961639,-0.8205436919815838,-0.9811554960906506,-0.45471088495105505,0.9634463274851441,-0.281705386005342,-0.030950402840971947,-0.6112804319709539,-0.8461089488118887,-0.9304794417694211,-0.0058996849693357944,0.7974651949480176,-0.523022873327136,-0.6124168070964515,0.3229988166131079,-0.33769672363996506,-0.6767773847095668,0.9440576625056565,-0.9716528537683189,0.1072925548069179,0.24644447723403573,-0.3733615721575916,0.5371157671324909,0.1376014817506075,0.8792483797296882,-0.5962680755183101,-0.07706968067213893,-0.41119539737701416,0.07493746047839522,0.802425192669034,-0.7227685819379985,-0.5869130399078131,0.5230767615139484,-0.8456075522117317,-0.02261473285034299,-0.01280515268445015,0.42663113307207823,0.34210575744509697,-0.9288834538310766,-0.6570248366333544,0.9593295343220234,-0.12448068428784609,-0.30090528074651957,-0.5726262885145843,-0.244540611281991,-0.589322226587683,-0.42363088158890605,-0.6565501247532666,0.8472306141629815,-0.9574761055409908,-0.4109158297069371,0.35275317216292024,0.008223649580031633,0.5632688719779253,-0.20387595985084772,-0.2823299951851368,-0.6876910519786179,0.9819467714987695,0.05800804402679205,0.20628197258338332,0.8843887909315526,-0.7285912889055908,0.3278174754232168,-0.3889626581221819,-0.9044650080613792,0.9063306506723166,0.29041977087035775,-0.6785392570309341,-0.30715572414919734,0.24375012004747987,0.11417234037071466,-0.9578524040989578,0.07536666747182608,0.24542825063690543,-0.6305091772228479,0.26721970783546567,-0.8333635427989066,0.9632512414827943,-0.3503142613917589,0.5201094918884337,0.9738558041863143,-0.7635923395864666,0.30827403999865055,0.6624435242265463,0.659959664568305,0.8477360052056611,-0.2135228468105197,-0.09693115204572678,-0.9605547543615103,-0.8378934403881431,-0.5562323103658855,-0.7269119499251246,0.0030230265110731125,0.8187341163866222,-0.21528354985639453,-0.007851028814911842,0.28191777504980564,-0.5816603577695787,-0.9502074760384858,0.5771345859393477,-0.5036193025298417,-0.027997026685625315,-0.97434440581128,0.05476893577724695,-0.9761664411053061,0.7084762398153543,0.22165093617513776,-0.9189497935585678,-0.6950458069331944,0.7703814576379955,0.8173544863238931,0.0234484295360744,0.28612517286092043,0.823804322630167,-0.43848586129024625,-0.8291723290458322,0.6990369283594191,0.541556715965271,-0.5045245899818838,0.48063785396516323,0.7429250353015959,0.5565316723659635,-0.013600401114672422,0.24739713594317436,0.9199200407601893,0.07420205464586616,-0.49748019920662045,-0.9236793909221888,0.009198515675961971,-0.6043258439749479,-0.12243100674822927,-0.2603023196570575,-0.90536052826792,-0.785900310613215,0.6470848922617733,-0.5455700969323516,-0.6944471001625061,0.9011448989622295,0.5918337772600353,-0.6627826471813023,-0.7116862130351365,0.2864920827560127,-0.7842938187532127,-0.46628036396577954,0.6914034085348248,0.5715553378686309,0.18236038135364652,0.9781713839620352,-0.09788348479196429,-0.9041564548388124,0.04969813581556082,-0.2882301500067115,-0.9473756826482713,-0.22820297116413713,-0.25569248013198376,0.30438409466296434,0.32930667139589787,0.019113962538540363,0.7461753059178591,-0.10558420279994607,0.18064057221636176,-0.5976733919233084,-0.07174551533535123,0.41950809862464666,0.09779802849516273,-0.9071826036088169,0.5332705713808537,0.7954920353367925,0.2621028395369649,0.6845141057856381,-0.752180244307965,-0.5854117777198553,0.018588473089039326,-0.9349081325344741,-0.14394665323197842,0.7780571151524782,-0.012389690149575472,0.8865428892895579,-0.6707997252233326,0.11708852462470531,0.4965581791475415,0.22083467710763216,0.3873506048694253,-0.5606049057096243,-0.818407422862947,-0.3092059320770204,0.47463095001876354,0.16214385954663157,-0.6304815150797367,0.8899108842015266,-0.564358813688159,0.7634809082373977,-0.5567756332457066,-0.6802329709753394,-0.23599446564912796,-0.8094430677592754,0.06543196504935622,-0.7170818657614291,-0.29936121171340346,0.28008479019626975,0.6117279338650405,-0.3665179223753512,-0.2590421321801841,-0.1324409330263734,0.11560087464749813,-0.9658271754160523,0.9061189475469291,0.1825170055963099,0.7239341819658875,0.9932679338380694,0.47355770878493786,0.7710903468541801,-0.27244532760232687,-0.26905357278883457,-0.5614959187805653,0.9222931563854218,-0.13886933168396354,-0.042812352534383535,0.6823177374899387,-0.4777963091619313,0.3347348212264478,0.6820017704740167,0.316650846041739,-0.22480517765507102,0.8078951924107969,0.5158403129316866,-0.2115361038595438,-0.2187727033160627,0.19860300654545426,-0.6067245411686599,-0.15548116341233253,-0.6925714490935206,-0.2298836763948202,0.10007126443088055,0.09582397062331438,0.8189822984859347,0.5110070249065757,0.8433096134103835,-0.09006861271336675,0.11436373740434647,-0.0603217389434576,0.7647385951131582,0.38418034836649895,-0.31106031127274036,0.023210966028273106,0.9627648857422173,-0.3767679943703115,0.33221818320453167,0.2902691075578332,0.23673279723152518,-0.11097997846081853,-0.37822106294333935,-0.46395855490118265,0.7301703812554479,-0.00639634532853961,-0.3019126155413687,-0.0013905945234000683,0.7745738159865141,-0.6393328397534788,0.12633263086900115,-0.015879168640822172,0.18533791229128838,-0.6513831485062838,0.993599392939359,0.1583720282651484,0.17592789232730865,0.3445886578410864,0.4678080081939697,-0.3731134096160531,0.40617202129215,-0.7902711303904653,-0.8973417123779655,-0.5633313823491335,0.6817992399446666,0.8989878809079528,-0.13795378524810076,-0.5350572783499956,-0.28377589862793684,-0.824939891230315,0.42613177513703704,0.6878196178004146,-0.49402717826887965,0.7859485712833703,0.30941691156476736,-0.5932657867670059,-0.9414188247174025,-0.602569546084851,-0.06353207631036639,-0.0921894945204258,-0.2856445196084678,-0.3345654276199639,-0.981283457018435,-0.2262343429028988,0.20906495628878474,0.60324452444911,-0.5398178328759968,-0.7492140498943627,0.6683272640220821,-0.9616428180597723,0.9772952180355787,0.021879986859858036,-0.5446225693449378,-0.05195900425314903,0.09740229696035385,0.5632262234576046,-0.5742379706352949,-0.7826531995087862,0.3054491779766977,0.9062907062470913,-0.8127973400987685,0.2993343211710453,-0.7026002132333815,-0.8135472186841071,0.42823103722184896,-0.41387741127982736,0.09774708654731512,-0.07432126766070724,0.6231829044409096,-0.36862569861114025,-0.5038689346984029,0.47905190428718925,-0.5352336750365794,0.19421573961153626,0.6096211755648255,0.36937722004950047,-0.9558082581497729,-0.7430495428852737,-0.496681559830904,-0.2798498417250812,0.18051697639748454,-0.35503976326435804,-0.8320002760738134,0.9867490427568555,0.9371235854923725,0.08394946297630668,-0.3500833371654153,0.7902806550264359,-0.47331845900043845,0.6244395128451288,-0.6899234633892775,-0.9661630070768297,0.21460696076974273,0.3502223268151283,-0.6554025178775191,0.22614959347993135,0.654572747182101,0.3951091729104519,0.550628668628633,0.0958447540178895,-0.6550644794479012,0.7787854131311178,0.07498045731335878,-0.08901670202612877,0.5048894807696342,-0.45070462534204125,0.3633738779462874,0.26295807119458914,-0.5080280033871531,0.9122818047180772,-0.27057480439543724,0.10183760244399309,-0.8188522029668093,0.6156604983843863,-0.8298269980587065,0.23989100754261017,-0.6292284359224141,0.6162946573458612,-0.42123469384387136,-0.987599020358175,0.6734483763575554,0.703850754071027,-0.9469792288728058,0.10958954971283674,0.5071707856841385,0.12776790093630552,-0.6730393851175904,0.45907709980383515,-0.7008881294168532,0.1996558797545731,-0.7052203500643373,0.3368544578552246,-0.7999846222810447,0.7038717241957784,0.05934279132634401,-0.6661050766706467,-0.019094069488346577,0.8246186948381364,0.6029672040604055,0.3429728662595153,0.21326487325131893,-0.31847012508660555,0.2604058119468391,-0.44450067402794957,0.3582465099170804,0.15860550897195935,0.8106521186418831,0.20880971336737275,-0.33203917322680354,0.8830858427099884,0.8988241832703352,-0.8330303928814828,-0.847387243527919,0.4742160220630467,0.8711911644786596,-0.41035674745216966,-0.22292359685525298,-0.9468662748113275,-0.2515905690379441,0.5077593573369086,-0.01325892098248005,0.8705802937038243,0.4398694233968854,0.45437723957002163,0.4244147287681699,0.28544179117307067,-0.920947658829391,-0.2777906428091228,0.23154611699283123,-0.8247572253458202,-0.6049519833177328,0.5709885023534298,0.02062063617631793,0.40280943643301725,-0.25317932246252894,-0.28193769743666053,-0.8612121040932834,0.6123706777580082,0.5890393378213048,-0.6990816364996135,-0.31571583030745387,0.16040483582764864,0.5145748388022184,0.43892390420660377,-0.02082464750856161,-0.2997727473266423,-0.19965698709711432,-0.40048275515437126,-0.3250318472273648,0.6459576692432165,0.5571861839853227,-0.6861745738424361,-0.18787574116140604,-0.9226059624925256,-0.9809931018389761,-0.5958164115436375,0.40756314992904663,-0.9541487558744848,-0.5547552378848195,0.26510651176795363,0.9385882704518735,-0.9313604570925236,0.09210817748680711,0.7607060554437339,0.8930686255916953,0.20245492411777377,-0.4582739258185029,-0.6312361131422222,0.9062617002055049,-0.9816846344619989,-0.789250778965652,-0.0468716761097312,0.9967851620167494,-0.5225822874344885,0.8789909495972097,0.5553513709455729,0.8584126522764564,0.5882603358477354,-0.2502241646870971,-0.2311604549176991,0.6957987481728196,-0.8958424441516399,-0.08784394199028611,0.564656819216907,0.26431203074753284,0.7817739946767688,0.3128586853854358,0.6655096905305982,0.05987871950492263,-0.04060029983520508,-0.47848365269601345,-0.0920342868193984,-0.44764555618166924,0.5009303349070251,0.9010421894490719,-0.28680842742323875,-0.9760238169692457,0.3723453297279775,0.8071228298358619,0.2685622335411608,0.6092006587423384,-0.5108590750023723,0.22141066286712885,-0.16001146752387285,0.6098506893031299,0.8401746181771159,-0.20566827803850174,0.5319736627861857,0.5731631708331406,-0.695638851262629,-0.9703351091593504,-0.3534046267159283,-0.8454949087463319,-0.5139675731770694,0.2787537509575486,0.42778508458286524,-0.5298563879914582,0.4804387232288718,0.6372133018448949,-0.25004403153434396,-0.18200432090088725,0.7123444844037294,-0.014845639001578093,-0.4643425256945193,0.24883816437795758,0.8749702274799347,-0.25578570598736405,0.8112220456823707,0.8326765038073063,-0.5181870562955737,0.9898982862941921,-0.9216915224678814,-0.9408257971517742,-0.985457559581846,-0.5727704833261669,-0.03822934301570058,0.08832317776978016,0.3060401165857911,-0.22849200246855617,-0.9348794342949986,0.17160323774442077,0.4721073084510863,-0.32155844708904624,-0.8494195435196161,-0.286461578682065,-0.49831653432920575,0.03774533839896321,-0.19959731865674257,-0.8354093679226935,-0.3766227476298809,0.8235732773318887,-0.3585786810144782,0.6358248409815133,0.0391394617035985,-0.7696745889261365,0.8588168513961136,-0.920230689458549,0.6643732506781816,-0.3305937107652426,-0.3026307914406061,0.5271464586257935,-0.9454302145168185,-0.597838553134352,0.49873950937762856,-0.3580116047523916,0.7795252767391503,0.5724746324121952,-0.8678263290785253,0.7544520106166601,-0.9351018816232681,0.17670150473713875,-0.46059318678453565,0.542326576076448,0.5545497462153435,-0.057158906012773514,0.6482909028418362,0.902158563490957,0.28063433384522796,0.7768711927346885,0.28132652398198843,0.13349986914545298,-0.6081744115799665,0.848536416888237,-0.3045950052328408,0.9351217937655747,0.026815087534487247,-0.9316257773898542,-0.47127922577783465,0.9796403483487666,0.0883562071248889,-0.41536355670541525,-0.22127440944314003,-0.07054252736270428,0.4483881196938455,0.35730099491775036,0.739162293728441,0.6699225842021406,-0.6139438892714679,0.5742791877128184,0.4487497420050204,-0.6412794659845531,-0.47270689671859145,-0.17376503627747297,0.4232985461130738,-0.5864786491729319,0.2112480024807155,0.28918915754184127,-0.25083529856055975,0.22125024814158678,-0.7286775964312255,-0.418016754090786,0.620622665155679,-0.6014074571430683,0.278506388887763,0.7784754927270114,-0.0497090551070869,0.635263450909406,-0.6331722000613809,-0.5244713537395,0.018128428142517805,0.3101816796697676,0.7682897257618606,-0.02218590397387743,0.531850625295192,0.4168145237490535,0.25867602368816733,0.24052455136552453,-0.56564586982131,0.5744806001894176,-0.9687083130702376,-0.3047836539335549,-0.5970232510007918,0.7842755918391049,-0.34353362722322345,0.3042496843263507,0.8357699001207948,-0.4072066470980644,0.6006102748215199,0.6319637293927372,0.447662356775254,0.3521455586887896,0.8406215952709317,0.5624106954783201,-0.8790316861122847,0.8328647739253938,-0.3113531353883445,-0.5585577893070877,0.15480885840952396,-0.21771518932655454,-0.7634964897297323,-0.38797589391469955,0.30515907471999526,0.5775468228384852,-0.08046192023903131,-0.5619372949004173,0.10293861432000995,-0.6019213618710637,0.5571075030602515,-0.7730007800273597,0.9321432830765843,-0.7078364924527705,0.35509010730311275,0.18335880618542433,0.1744697205722332,-0.16648906003683805,0.3271456458605826,0.01905415439978242,-0.29322035796940327,0.2983957966789603,-0.6097259749658406,0.6225911290384829,-0.6237336690537632,-0.39473935635760427,0.5282993642613292,-0.6487097898498178,0.4668129375204444,0.5141233108006418,0.8565290123224258,0.6417309809476137,0.31644242722541094,0.6144531229510903,0.2951672486960888,-0.00842597708106041,-0.0665474976412952,-0.13817774644121528,-0.9676781194284558,0.6301382398232818,0.09177095955237746,0.28099586069583893,0.7899953927844763,0.24891738314181566,-0.061394435819238424,0.6164381830021739,-0.31018980080261827,0.823284151032567,0.6905719619244337,0.6790208318270743,-0.20903385849669576,-0.0018914034590125084,0.5334528153762221,-0.4009052230976522,0.6042259610258043,0.39967293897643685,-0.04827028699219227,0.2215531263500452,0.012257339432835579,-0.9779432183131576,-0.9445375632494688,0.09897547215223312,-0.071118522901088,-0.6549451136961579,0.6996841272339225,0.09910754719749093,-0.6684860549867153,0.8154889838770032,0.2238391344435513,0.8375815926119685,0.6720744916237891,0.5847686682827771,0.37938734283670783,0.8305800552479923,0.6771525889635086,-0.32270703790709376,0.5184499872848392,0.767458513379097,-0.9981517996639013,-0.5951411668211222,0.6083373860456049,0.4721996490843594,0.7449033837765455,-0.8105913046747446,-0.9503193870186806,0.6483786832541227,-0.1768334493972361,-0.9953263020142913,0.37962382286787033,-0.13828213512897491,0.8100630701519549,-0.06318538868799806,-0.5222214483655989,0.6133814612403512,-0.8909720224328339,0.7832335182465613,-0.6532609211280942,0.7129057976417243,0.5344005627557635,-0.4547831476666033,-0.30700118420645595,-0.12185283098369837,0.8430871041491628,-0.9351101983338594,-0.8152146120555699,0.3059296733699739,-0.08108446560800076,0.7298111342824996,0.07181699993088841,0.5307402680628002,-0.033011465799063444,0.9162679645232856,-0.32629257580265403,-0.016834157053381205,0.9187158783897758,0.729277113918215,0.860229205340147,0.311667846981436,-0.8438009736128151,0.8801844166591763,0.2093265186995268,-0.045082022435963154,0.4801654242910445,-0.23031675769016147,0.3257539835758507,0.14690803131088614,-0.3500493639148772,0.5214805323630571,0.6171248485334218,0.6965954219922423,-0.7533956500701606,0.7688983767293394,0.08917006198316813,-0.8139284835197031,0.2075126157142222,-0.31175545789301395,-0.20077707385644317,0.765065283048898,0.31062662322074175,-0.9406015276908875,0.8392141382209957,-0.03926020907238126,-0.29925877088680863,0.7855962570756674,-0.8110129311680794,0.7662836923263967,0.8325596447102726,-0.3649846906773746,-0.3601306499913335,0.15848830761387944,-0.9614017042331398,-0.8954005353152752,0.6102187428623438,-0.12887189909815788,0.19690297730267048,-0.14168947329744697,0.22019375441595912,0.2584941079840064,-0.6248323204927146,0.18189355451613665,0.8996950960718095,-0.441020286642015,-0.5229934910312295,0.3025910477153957,-0.07415032759308815,-0.41281372122466564,-0.5702548618428409,0.06636262824758887,-0.29617819422855973,0.9790054061450064,-0.7177427080459893,-0.9774799346923828,-0.21503756381571293,0.5491273780353367,0.4649314093403518,0.02030824590474367,0.3460196633823216,0.9151414851658046,-0.27433252008631825,0.7737014605663717,0.6942532723769546,0.21237505553290248,-0.8157941144891083,-0.9406601809896529,-0.1291650077328086,-0.918231057934463,0.6277652480639517,-0.40379696572199464,-0.36007434083148837,0.9028804232366383,0.9083570004440844,-0.6337697859853506,-0.00035845255479216576,0.7925866167061031,0.5517246602103114,-0.8973114360123873,0.2925710226409137,-0.42518483148887753,0.47203260008245707,0.8386850408278406,-0.76782057993114,-0.08580523123964667,0.7938462840393186,-0.1729366723448038,0.8627739404328167,0.2291694087907672,-0.1890571233816445,-0.6808781130239367,-0.9306618240661919,-0.762509714346379,0.6260267379693687,0.6833073566667736,0.4073878116905689,0.4534620218910277,0.6459928378462791,-0.7473127180710435,-0.948874106630683,-0.9297666857019067,0.729754560161382,-0.6370817981660366,0.024852382019162178,0.6665031011216342,0.4210302624851465,-0.20241323579102755,-0.03957305056974292,0.893203882034868,0.498341872356832,0.45175682893022895,0.515133757609874,-0.7188182105310261,0.40367296105250716,-0.30904999328777194,-0.9004252208396792,-0.7999141598120332,-0.4813985601067543,0.3351460141129792,0.9976324671879411,0.02109910687431693,0.04362234426662326,-0.9937824090011418,-0.5279849614016712,-0.7999307801946998,0.8916833209805191,0.3459409177303314,-0.46500812377780676,0.8758265268988907,0.9097988256253302,0.4320191643200815,0.919613188598305,-0.9642160381190479,-0.8384499056264758,0.2650755364447832,0.9487526742741466,-0.4626422110013664,-0.27997005358338356,0.95082948775962,-0.8766451575793326,0.04141739057376981,0.5520662385970354,0.6791959833353758,0.16995783103629947,-0.5344014666043222,-0.14132959907874465,0.28222984820604324,-0.8528804006054997,-0.2714079930447042,0.4307865663431585,0.2942130761221051,0.7751931138336658,-0.6215132963843644,0.33741069305688143,0.6584718693047762,0.3167571774683893,-0.5212181764654815,-0.657633988186717,0.9583259616047144,-0.33624892635270953,0.4874413893558085,-0.9535699561238289,-0.21200228855013847,0.19151876866817474,0.7830118918791413,0.04390301089733839,-0.021515713538974524,-0.5309941661544144,-0.9292829325422645,-0.2072311001829803,-0.004001025576144457,-0.4755592839792371,-0.36432106839492917,-0.8298814822919667,-0.6471904837526381,-0.5962562337517738,0.13962109899148345,0.8072671643458307,0.09971897816285491,-0.8739400659687817,-0.5766156259924173,0.986962869297713,-0.8810174260288477,-0.6970864525064826,0.12774375826120377,0.44544539088383317,-0.34818958630785346,-0.4855172331444919,0.29341117152944207,0.7038853913545609,0.1734280977398157,-0.3308114712126553,0.2234896724112332,-0.11886441335082054,-0.7795625673606992,-0.5847413595765829,-0.2612594095990062,0.28368844371289015,-0.4119752589613199,-0.8824692037887871,0.42741768015548587,0.25210597598925233,0.6114794109016657,0.9894594112411141,0.11270566191524267,0.6410038527101278,0.2922922605648637,-0.32253890205174685,0.8683244693093002,-0.9926466601900756,-0.8694297848269343,0.7318426859565079,-0.026475792285054922,-0.693524609785527,0.9453468681313097,-0.2067004065029323,-0.6930418848060071,0.1608655913732946,-0.05560113163664937,0.7961209830828011,0.9271744368597865,0.3763766004703939,-0.3597501921467483,0.1770145148038864,0.8862333158031106,0.017208756878972054,-0.5664911475032568,-0.13182212179526687,0.20613920642063022,0.962047235108912,-0.7901001055724919,-0.3204235164448619,-0.44913461757823825,0.4076461084187031,-0.5670857802033424,0.8323784987442195,0.18155495449900627,0.6780475387349725,0.552576289512217,-0.3940846319310367,-0.12415162846446037,-0.3688288717530668,0.5002092565409839,0.5401831329800189,-0.1506626456975937,0.09678802127018571,0.8238054057583213,0.7295775143429637,-0.7696108147501945,0.12618395034223795,-0.5879661659710109,-0.5471568806096911,-0.8762684063985944,-0.4302349369972944,-0.18920017732307315,0.9698462411761284,-0.16260929172858596,-0.40299666253849864,-0.007813725620508194,-0.5743350172415376,0.290935346391052,0.02895751455798745,0.8098439727909863,0.9877233966253698,0.5131656429730356,-0.5229109260253608,0.34628882771357894,-0.02072825562208891,-0.05601294385269284,-0.23802268039435148,0.9289093618281186,-0.42620305297896266,0.055143054109066725,-0.17234881268814206,-0.501524243503809,0.6142743439413607,-0.5989761292003095,0.9344870168715715,0.20104514248669147,0.7263264604844153,-0.9033718444406986,0.3012657444924116,-0.6597777367569506,-0.2701100390404463,0.6425949521362782,0.30103203002363443,-0.7896078852936625,0.10749474633485079,-0.8922243546694517,-0.5092349732294679,0.16997112473472953,0.3138777040876448,0.6468069236725569,0.9258599267341197,-0.7085420526564121,-0.7945618377998471,-0.23104538954794407,-0.650395218282938,-0.6881127846427262,0.6610286529175937,0.5745919849723577,-0.8473798157647252,0.5204723812639713,0.2950794822536409,-0.7443123306147754,0.308393114246428,-0.05944032408297062,-0.1901981346309185,-0.6452839095145464,-0.3466734723187983,0.8539256728254259,-0.6449475213885307,0.6973516182042658,-0.934724654071033,0.41936522349715233,0.5484342412091792,-0.11054384661838412,0.8565464932471514,0.2665558038279414,-0.6355239236727357,0.1399100753478706,-0.6361639690585434,-0.7894746009260416,-0.43464612727984786,-0.5895116184838116,0.1459566648118198,-0.5168151934631169,0.4578295103274286,0.872374689206481,0.7078168038278818,-0.9616055483929813,-0.5691754668951035,0.8028183900751173,-0.8172708218917251,-0.007316086441278458,-0.4367854152806103,-0.8692200342193246,-0.3702178653329611,0.2576058339327574,-0.1767763765528798,-0.045077354181557894,-0.4324539457447827,-0.2728812536224723,-0.5776544692926109,-0.20733514381572604,-0.011581726837903261,0.7682755296118557,0.6602315618656576,-0.43867089599370956,0.28501218697056174,-0.8153172382153571,-0.19539301004260778,-0.9008773947134614,-0.4188646050170064,0.22832831740379333,-0.582269667647779,-0.39781224448233843,-0.68961585406214,0.731234042905271,0.5813292036764324,0.4544013384729624,0.6608615778386593,-0.28705487260594964,0.8198989722877741,-0.062328857369720936,0.9087338484823704,0.8313280837610364,0.946086426731199,-0.46613916801288724,-0.6813607905060053,-0.4780591973103583,0.4567416710779071,-0.19342652335762978,-0.0174768203869462,0.8529418134130538,-0.6149143911898136,-0.351606217212975,-0.15011798636987805,0.8162058610469103,-0.9668093584477901,-0.23470009863376617,0.9603178263641894,-0.14808676205575466,-0.45472595654428005,0.695750460959971,-0.8948575546965003,0.044171471148729324,0.008184370584785938,0.004884312395006418,0.9627277893014252,0.33627336379140615,0.10345438215881586,0.10393808782100677,0.2678665677085519,0.49128062929958105,-0.5509868403896689,-0.7503535966388881,-0.8972376314923167,-0.45176876336336136,-0.02163274958729744,-0.9205351271666586,0.5602189833298326,0.1638810820877552,-0.544785057194531,-0.37558595230802894,-0.2962886360473931,0.9838004615157843,-0.26565473852679133,0.8957441844977438,-0.8393219942227006,0.7908524135127664,0.2334204618819058,-0.20614506769925356,0.5385686866939068,-0.1485447776503861,0.5392600516788661,-0.01646347250789404,0.8301380313932896,0.2934322892688215,-0.8332973765209317,0.12440543668344617,0.5615944447927177,-0.16778141353279352,0.74654455576092,-0.812483660876751,0.040177879855036736,-0.049478012137115,0.48766073072329164,0.9143299306742847,0.4377152840606868,0.9566422463394701,-0.8378348047845066,-0.29552387492731214,0.7551317508332431,-0.731621615588665,0.3913143607787788,-0.04499171348288655,-0.9492307989858091,-0.6325076883658767,-0.4306848347187042,-0.31184578128159046,-0.5772812492214143,-0.08605032647028565,-0.6816721288487315,-0.25660213688388467,-0.10407771868631244,0.7682058019563556,-0.9550658371299505,0.05148173775523901,-0.6240419531241059,0.9895587339997292,0.24992076214402914,-0.33509144792333245,-0.42605148907750845,0.034144043922424316,0.6502857492305338,0.46292825834825635,-0.265203095972538,-0.3869478707201779,-0.18437777878716588,-0.5280619156546891,0.8187974374741316,0.16527589643374085,-0.47841951344162226,0.6656057657673955,0.6800153055228293,0.6361492942087352,-0.8298511751927435,0.37073094164952636,-0.12012969888746738,0.29686739249154925,-0.5263932920061052,-0.23159865476191044,0.3556873584166169,0.41886863438412547,0.05819905363023281,0.37487717252224684,0.8404492661356926,0.6536474940367043,0.08923030924052,0.3167627500370145,0.5381324514746666,-0.4558495176024735,-0.27855081390589476,-0.8316043838858604,-0.7101803063414991,0.023573195096105337,0.008777995128184557,0.4313380280509591,-0.29185218503698707,-0.8107404224574566,0.038782402873039246,0.5328144803643227,-0.27582922764122486,0.4779532444663346,-0.05891031865030527,0.31741503439843655,-0.028387198690325022,-0.14140611421316862,-0.21381540456786752,0.7806979231536388,0.958862179890275,0.8524451265111566,0.8995997929014266,-0.45998131996020675,-0.9338924083858728,0.7407274125143886,-0.703819917049259,0.269912154879421,-0.24883158458396792,-0.29958784068003297,-0.2805368867702782,0.7409275942482054,0.40932637359946966,0.028742939699441195,0.23170653730630875,0.01482831360772252,0.7687233360484242,-0.00019920291379094124,-0.25081313122063875,-0.2713027554564178,0.2499916204251349,0.3223204226233065,-0.8865051339380443,-0.5970952990464866,0.1991489534266293,0.8071407396346331,-0.46124168671667576,0.48704957496374846,0.4616970056667924,-0.34908998059108853,-0.4014962394721806,0.866355471778661,0.9895103597082198,0.8262704885564744,0.5937439617700875,0.06267274310812354,0.3550525442697108,0.7604231829755008,0.0789032494649291,0.2886664210818708,0.42802442610263824,-0.35033402824774384,0.15884394850581884,0.18971421336755157,0.32421716628596187,-0.06794369267299771,-0.38217435544356704,0.5165611882694066,0.48039574502035975,-0.9542636857368052,0.5054354425519705,-0.041099467780441046,-0.5457684732973576,-0.3032309953123331,-0.990884960629046,-0.7527327570132911,-0.7524800184182823,-0.8697216003201902,-0.7882769959978759,-0.6869405615143478,0.4126484403386712,0.880009523127228,0.8610523771494627,-0.5145723805762827,0.6816610624082386,-0.7370163975283504,-0.47011943673714995,-0.047304351814091206,-0.1614111503586173,0.38329604361206293,0.50195671338588,-0.391340896487236,0.03330414975062013,0.6417592857033014,-0.7140278317965567,-0.5926392753608525,0.16106261452659965,0.4615493603050709,0.543595623690635,-0.4456910169683397,0.8887185556814075,-0.9166600937023759,0.9024725155904889,-0.6828948054462671,0.386930619366467,0.8006559507921338,-0.65805091150105,0.5009430954232812,-0.1931953551247716,-0.6743345675058663,-0.8251749114133418,-0.46976946759968996,-0.9410112756304443,-0.8580740769393742,0.1634314232505858,-0.22183008026331663,-0.730903834104538,-0.3227132544852793,-0.03239107923582196,0.5840227324515581,-0.3009969322010875,0.43176025338470936,0.16566329915076494,-0.8160756230354309,-0.7863468499854207,0.16378407552838326,-0.8069489235058427,-0.7267299084924161,0.8902898766100407,0.9783765589818358,-0.4284794074483216,-0.39570757281035185,0.28170116478577256,0.6710239415988326,0.26326624350622296,0.5038902210071683,0.864538143388927,-0.06347178155556321,-0.8509451276622713,-0.9990938329137862,-0.8736229497008026,0.10198489809408784,-0.7333438550122082,0.4920106972567737,-0.3513804222457111,-0.15611714823171496,0.9973247889429331,-0.2977827228605747,0.6323909177444875,-0.9213701314292848,0.004090944305062294,-0.7634015521034598,-0.9219709876924753,0.5845036241225898,-0.7363253789953887,-0.20024199225008488,-0.8282754169777036,-0.8916552471928298,0.08769149333238602,0.11499748472124338,-0.6724957274273038,0.41649749921634793,0.5255508264526725,-0.6066136988811195,-0.402925796341151,0.652770827524364,-0.35099601931869984,0.0022783176973462105,0.31008748337626457,-0.6223806962370872,0.9441865086555481,0.5552286324091256,0.8274335581809282,0.864597893320024,0.5416189595125616,0.5803816658444703,0.9355199346318841,-0.8918829085305333,-0.9232727182097733,-0.7099021365866065,-0.9922584956511855,0.730608943849802,-0.06203731847926974,0.8889275807887316,-0.20870352443307638,-0.3237847229465842,-0.8308064634911716,0.03247904730960727,0.13646939489990473,-0.5004663541913033,0.7326533235609531,0.37344792345538735,-0.32506214128807187,-0.21728540491312742,0.20934367319568992,0.24861158384010196,0.3644476421177387,-0.9571456839330494,-0.11923919757828116,0.4347035028040409,0.46072400314733386,-0.11340187583118677,-0.8389272866770625,-0.7655721991322935,0.5556997125968337,-0.4771745204925537,0.7252492010593414,0.9222590555436909,-0.8345374781638384,0.4447987745516002,0.9942409880459309,0.27857204573228955,0.6868524611927569,-0.6951671689748764,-0.39079022454097867,0.47709248727187514,-0.8572669690474868,-0.32342999428510666,0.5657818615436554,-0.3704504040069878,-0.9461413063108921,-0.7830899050459266,0.897081415168941,0.21284078946337104,-0.7370233284309506,0.0702412654645741,0.8054772443138063,-0.7604074119590223,0.7916489006020129,0.745718217920512,0.9395002229139209,0.4407931314781308,0.8136149784550071,-0.3912869459018111,-0.24370069336146116,-0.004508265759795904,0.9066790072247386,-0.2020875895395875,-0.9289133050478995,-0.8180473307147622,0.2708505033515394,-0.6656961305998266,0.7081341468729079,-0.5225866553373635,0.7386812716722488,0.7314001847989857,0.7188214510679245,-0.7336058490909636,0.4036958022043109,0.0325845037586987,-0.6227603177540004,-0.6309577962383628,-0.8223798666149378,0.11516178352758288,0.4486180697567761,-0.39212182397022843,-0.3476134743541479,0.13067394588142633,0.6645823414437473,-0.719701508525759,-0.3498722855001688,0.1800658032298088,0.4555662269704044,-0.17733282269909978,0.9465281520970166,0.46251481864601374,0.5783315384760499,-0.42680893559008837,-0.6472368980757892,-0.29751559207215905,0.23053097492083907,0.7273163157515228,-0.872214759234339,0.8734973557293415,0.855358419008553,0.2260279986076057,-0.4403831078670919,0.4800309678539634,-0.546070967335254,-0.36394916009157896,0.16054774820804596,0.9228176134638488,-0.2927851928398013,0.3480125949718058,0.809500870294869,0.14293890632689,-0.5560818840749562,0.26434476487338543,0.2911855955608189,-0.778970954939723,0.5549371377564967,-0.44295897195115685,0.9583315113559365,0.731943754479289,0.49789552530273795,-0.7780851125717163,-0.09537279652431607,0.6212088572792709,-0.8867616946808994,-0.9672129135578871,-0.0892957360483706,-0.7088764845393598,0.2859378349967301,-0.24999253312125802,-0.3524332046508789,0.5046918974258006,0.6882880749180913,0.34756726771593094,-0.9457520744763315,-0.9684746637940407,0.24407428177073598,0.7187190428376198,0.3161551747471094,0.6250791717320681,0.11813370836898685,-0.13025577273219824,-0.45932002225890756,-0.16331591783091426,0.4001904893666506,0.14818071201443672,-0.24544931296259165,-0.47207439644262195,-0.015589145012199879,0.2590790563262999,-0.89660021988675,-0.4557085996493697,0.6807602136395872,-0.18997222743928432,0.28812596667557955,0.09927483228966594,-0.2626077951863408,-0.0049722157418727875,0.8705158703960478,0.3869328456930816,-0.4192575253546238,0.33015323895961046,0.2671774351038039,-0.974548920057714,0.05091341258957982,0.2653192179277539,0.893112578894943,0.6632314957678318,0.6594395926222205,-0.00333941588178277,0.1899108593352139,0.46579174092039466,-0.14369542011991143,0.15723158325999975,0.4195893690921366,0.5599129418842494,0.749195949640125,-0.6088120662607253,0.5800015754066408,-0.3351747412234545,-0.39210800593718886,-0.33895394997671247,0.9989974671043456,0.43398677837103605,0.5495491283945739,-0.764871378429234,-0.734298855997622,-0.699472613632679,0.5421419464983046,-0.027395804412662983,0.04874228872358799,0.6206306163221598,-0.48996761022135615,-0.5686937510035932,0.7439212491735816,0.8096038582734764,0.558637517504394,-0.6670115417800844,0.40832618437707424,0.2356887785717845,0.4617855832912028,0.933247156906873,0.2639903142116964,-0.1983499564230442,-0.24523500492796302,-0.6489340006373823,0.15706576220691204,0.6468334789387882,0.07783113699406385,0.07358667999505997,0.22952887834981084,-0.06507627898827195,-0.04357261396944523,-0.43421091651543975,0.09006981365382671,0.11351948836818337,-0.5499934619292617,-0.5097467340528965,-0.2703856136649847,-0.9121789168566465,-0.8999411799013615,0.05951745808124542,-0.06000143475830555,0.3777721347287297,-0.46063863579183817,-0.020111620891839266,0.8897508219815791,-0.39484459767118096,-0.6565751135349274,-0.9074932085350156,0.28392106806859374,-0.9898919519037008,-0.9196620904840529,-0.3182852785103023,0.3240152094513178,-0.13175212731584907,0.1139333457686007,0.3069684384390712,0.42441259417682886,0.665974791161716,-0.5372557723894715,-0.10229619406163692,0.1261933441273868,0.2670443197712302,-0.26029903581365943,0.46764873014763,0.2271795840933919,-0.06873188260942698,0.1809696378186345,0.5843309815973043,0.03774848394095898,0.08109344961121678,-0.22270204173400998,0.4167762133292854,0.8387700472958386,-0.582981186453253,-0.9681674735620618,0.315555214881897,-0.4440093217417598,-0.5733109568245709,0.4355087820440531,-0.8804067955352366,0.6385436118580401,0.8462938000448048,-0.1018699798732996,-0.081436054315418,-0.5175879620946944,-0.8648991202935576,-0.41085075261071324,0.05718274600803852,0.254923680331558,0.5214899033308029,-0.564823464024812,-0.5671250992454588,0.05550068058073521,-0.3224419439211488,0.3877328084781766,0.8907924597151577,0.12641453044489026,-0.8416823949664831,0.9564489750191569,0.8366991123184562,-0.5698224855586886,-0.8362175212241709,0.9102057758718729,0.7432311926968396,0.5763583886437118,0.025206405203789473,-0.6586613417603076,-0.7763367029838264,0.20443449215963483,-0.8425935166887939,0.6812729267403483,0.20572648383677006,0.9968265104107559,0.8194350320845842,0.31160957692191005,-0.9866814455017447,0.8857675548642874,-0.7404484953731298,-0.9069556393660605,-0.7110113287344575,-0.797913876362145,-0.9446169012226164,0.4131978088989854,0.7962280134670436,0.08486672956496477,-0.4941794304177165,-0.7598518738523126,-0.6394858006387949,-0.6993548911996186,-0.39542309707030654,0.6826476389542222,0.015244816429913044,0.5335046160034835,0.12008531671017408,0.7376991836354136,0.9986281045712531,-0.343476630281657,-0.33316156128421426,0.20999881951138377,0.0657537616789341,-0.24093300197273493,-0.7421299279667437,-0.04972015507519245,0.3869673488661647,0.6719908067025244,0.9477768340148032,-0.6905188299715519,-0.4696747870184481,-0.5301767978817225,-0.5177378784865141,-0.07752047991380095,0.5870822202414274,0.45184033876284957,-0.42800298565998673,0.2777012004517019,0.9879456055350602,0.16910800384357572,-0.608449446503073,-0.08877407247200608,-0.9551573102362454,-0.23746921867132187,-0.8151813228614628,-0.6279467833228409,-0.7488057403825223,-0.49176184460520744,-0.5117040323093534,0.3117962568067014,0.3801111136563122,0.7247808868996799,0.7035748399794102,0.795502214692533,-0.23125101812183857,-0.49990616040304303,-0.672889961861074,0.06813965272158384,-0.9682300984859467,-0.709371630102396,-0.07575751142576337,0.9729926735162735,0.9522135080769658,-0.4228759203106165,-0.4624154777266085,-0.4774399711750448,-0.38396491715684533,-0.5434464262798429,0.06552933435887098,-0.9229682255536318,0.8517258339561522,0.1848200331442058,0.6562953540123999,0.742879165802151,-0.8191087851300836,-0.3393969084136188,0.5972374682314694,0.4991211602464318,-0.27051433036103845,-0.18954984797164798,0.40962283266708255,-0.8727175202220678,0.4091571760363877,-0.2674474804662168,-0.6192028066143394,-0.3816270106472075,-0.80317965708673,0.6247882419265807,0.09354936797171831,0.3114511086605489,0.9891439327038825,0.0472067603841424,-0.4016613024286926,-0.6069779377430677,-0.5707478569820523,0.9961675689555705,0.3786363615654409,0.943121480755508,-0.15311538986861706,0.38998852390795946,-0.27128701843321323,0.6467763329856098,-0.9126287628896534,0.020402473863214254,0.639928687363863,-0.03451226418837905,-0.8884497289545834,0.3785732318647206,-0.11864725966006517,0.6041840091347694,0.8155990047380328,0.6359973074868321,0.3914205599576235,0.6380138709209859,0.026853390969336033,0.7760766744613647,-0.8901418391615152,-0.7088318495079875,0.9054661416448653,-0.6315456884913146,-0.07489800499752164,-0.32883135695010424,0.8733533532358706,-0.8661504508927464,0.6547984289936721,0.7022788929753006,0.4366963589563966,0.8121114689856768,-0.2407957874238491,0.7346988823264837,-0.538633428979665,0.0094619644805789,0.1812209882773459,0.9802347631193697,0.09060833649709821,-0.468381870072335,-0.22502671089023352,-0.24828085862100124,-0.26204825565218925,-0.4985865536145866,0.18509045895189047,0.12135149212554097,-0.7322503430768847,0.3772613643668592,-0.6005549132823944,-0.3912866860628128,-0.4422260792925954,0.24282878823578358,-0.8439822811633348,-0.7571820453740656,-0.6755175958387554,0.9608716838993132,-0.755493848118931,0.25949628883972764,-0.18468496669083834,0.029423943255096674,0.3218564004637301,0.03117385134100914,0.7276421994902194,0.013159811031073332,-0.10956988856196404,0.04254326689988375,0.7429769458249211,-0.8144622067920864,-0.6485142740420997,0.013229789678007364,0.9891859912313521,0.9897699342109263,0.056684504728764296,0.523204353172332,0.3913320563733578,-0.741243545897305,0.36989579908549786,-0.22871414525434375,-0.7166585647501051,0.23896434577181935,-0.8591109034605324,-0.7124861543998122,-0.2578594731166959,0.1804934241808951,-0.4836550452746451,0.44879798125475645,0.8876015883870423,0.3069270849227905,0.33796187536790967,0.4706646972335875,-0.8183942446485162,-0.9763591280207038,-0.8201740575022995,0.8837748873047531,-0.5604531215503812,0.2801466337405145,-0.16369621502235532,0.1457431041635573,0.39581932639703155,0.6017695502378047,0.5747311431914568,-0.3948004595004022,-0.29437698563560843,-0.2360319155268371,0.12936225067824125,0.8581194300204515,0.7319857780821621,0.38303095009177923,-0.07051022630184889,-0.4377597477287054,-0.6960729900747538,0.09599715005606413,-0.12718486692756414,0.20328704174607992,0.9167319182306528,0.8926244135946035,-0.17326513258740306,-0.18067112006247044,-0.5234550568275154,-0.046585545875132084,-0.6958678802475333,-0.6654407382011414,-0.17019464634358883,0.27005508821457624,0.4686222695745528,-0.0066527328453958035,-0.8039604839868844,-0.3860050574876368,-0.060746935196220875,-0.8850344200618565,0.5618759640492499,0.6099585355259478,-0.16117654088884592,-0.15289751486852765,-0.9184638536535203,0.30463253939524293,0.5578564805909991,-0.1517264018766582,0.645622898824513,-0.9493386941030622,-0.20450076460838318,0.3492552302777767,0.42493558768182993,0.8777598813176155,-0.2801556293852627,0.6083834292367101,-0.10912806447595358,-0.9842020724900067,0.6035136384889483,0.4703503646887839,0.6874304981902242,-0.3071661563590169,-0.4309273879043758,0.6598281851038337,-0.10448792949318886,-0.9746678578667343,-0.8118483447469771,-0.9973168182186782,0.08123275497928262,0.43308992218226194,-0.09354105778038502,-0.9197567333467305,0.2696594432927668,-0.6570197916589677,-0.2106889681890607,0.05924381921067834,-0.6628324259072542,-0.5388193861581385,0.031231919303536415,-0.7001866805367172,-0.3730916529893875,-0.8687570379115641,-0.43128552893176675,0.36917760502547026,-0.5259284260682762,-0.6046182517893612,0.6522302688099444,0.28066710056737065,-0.8793830256909132,0.3223339468240738,0.19537319662049413,-0.6338595254346728,0.9845134383067489,-0.9482957343570888,0.46787884971126914,0.3897506217472255,0.02106334501877427,-0.012375277001410723,0.48810513224452734,-0.34176595648750663,0.8724763314239681,0.13212062139064074,0.4445764976553619,-0.0375370210967958,0.7436159010976553,-0.08164700306952,-0.8528219489380717,0.7092057657428086,0.5019217324443161,-0.8600840680301189,-0.7790929288603365,0.31447070837020874,-0.8029992785304785,-0.42518812883645296,-0.8916132720187306,0.29266141075640917,-0.7003766316920519,0.8017388875596225,-0.4424862824380398,-0.22127000149339437,0.6784781338647008,-0.13461472699418664,-0.5728809298016131,-0.7483324450440705,-0.4825995797291398,-0.4733198885805905,0.7931088334880769,-0.21722756465896964,-0.7530601220205426,0.767550656106323,0.46719780936837196,0.17233192874118686,-0.3460346572101116,-0.38070462131872773,0.7160849291831255,0.12668818980455399,-0.9574697809293866,0.5615426497533917,0.31085983011871576,0.24929528450593352,-0.3655198412016034,-0.806886806152761,0.1582119376398623,-0.9206525133922696,0.640795445535332,0.9014041814953089,0.42405650252476335,0.7280801171436906,-0.1785471555776894,0.1039899904280901,-0.22008087439462543,-0.9286411041393876,0.5863052578642964,0.8242203732952476,0.7533672745339572,0.5342766470275819,-0.3285003541968763,-0.553683512378484,0.9783842801116407,0.9920214172452688,-0.39781896211206913,0.8765031830407679,0.600254712626338,0.5881418427452445,0.8487890972755849,-0.8789550834335387,-0.3849833379499614,0.3404318690299988,0.0819460703060031,-0.758746262639761,0.2074031992815435,0.5456995591521263,0.3110613701865077,-0.33145275665447116,-0.41315297642722726,-0.4867059029638767,0.43458754383027554,0.730183167848736,-0.5891488105989993,0.164079028647393,-0.48916846280917525,-0.27355653373524547,0.12735847663134336,-0.7818367844447494,-0.5998050044290721,0.4753058208152652,-0.018318944610655308,0.4150047851726413,-0.19466486992314458,0.18589152628555894,-0.7911859434098005,-0.23788565583527088,0.4711134247481823,0.33786306343972683,0.26506991777569056,0.36686411686241627,-0.9580404427833855,0.7242864188738167,-0.17242793226614594,0.6240808977745473,0.8656576192006469,0.6488569648936391,-0.9686545808799565,0.6623930707573891,0.0351353888399899,0.6697537670843303,0.0466032475233078,-0.5952122621238232,0.4192170384339988,-0.8662068131379783,0.48026077961549163,-0.03506578179076314,0.6041830680333078,-0.11368786543607712,0.6129620717838407,-0.21528970962390304,-0.5891080019064248,0.49864453729242086,-0.3088068454526365,0.4807333294302225,-0.06779157370328903,0.0639020805247128,0.23073476227000356,-0.6148880063556135,-0.41453281976282597,0.3422755957581103,-0.2556494763121009,-0.509055795148015,0.90908013144508,-0.6265271985903382,0.048486178275197744,-0.9891907307319343,-0.5099589833989739,0.27824305836111307,0.08334140293300152,-0.8229514239355922,0.7265515876933932,-0.8742057154886425,-0.6909775068052113,-0.910157052334398,0.9503466407768428,0.9452218376100063,0.6709030186757445,-0.4534570360556245,0.6797521314583719,-0.1084767784923315,-0.3181498399935663,-0.8427131837233901,-0.480350224301219,-0.34517637453973293,-0.9720953633077443,0.3535981858149171,-0.7361972550861537,0.10201199539005756,-0.4800376556813717,-0.2812996576540172,-0.7632784433662891,-0.7194678918458521,-0.30534100951626897,0.31615290604531765,0.3539920011535287,-0.9221209399402142,-0.48893335089087486,0.07954051671549678,0.08003780152648687,-0.4244487574324012,-0.3148445002734661,0.7264515431597829,0.5158848939463496,0.40092647168785334,-0.943242134526372,0.29617625335231423,0.6935913264751434,-0.9449995723553002,-0.5663965572603047,-0.9109459556639194,0.9418292460031807,-0.8385696313343942,0.9679596498608589,-0.6003498663194478,-0.23367566848173738,-0.2891910308972001,0.22791515104472637,0.9642692836932838,-0.5372601207345724,0.37103439029306173,0.3245598338544369,0.7474346193484962,0.6189045556820929,0.15449239127337933,0.9377760873176157,-0.6196932485327125,-0.7949851374141872,0.2845754325389862,0.023653583601117134,-0.4103851765394211,-0.895336652174592,-0.7638391498476267,-0.26439454266801476,0.7743124905973673,0.7231260691769421,0.6596413073129952,-0.42203086987137794,-0.31392540503293276,0.3886773083359003,-0.6714041321538389,0.24141231272369623,0.14940238371491432,0.45658204099163413,-0.9455472370609641,0.7735209125094116,-0.33099803095683455,-0.6596969850361347,-0.9254742269404233,-0.9307424882426858,-0.37281244108453393,0.464716924354434,0.2828791537322104,-0.5941350855864584,-0.7841138080693781,-0.4100288674235344,-0.9982623076066375,-0.35815776931121945,0.4645584039390087,-0.5837675565853715,-0.400260291993618,-0.4134342069737613,0.9616597769781947,0.9515078216791153,-0.2787982835434377,-0.18521238211542368,-0.21823323518037796,-0.6185881332494318,0.8264494314789772,-0.6242448873817921,0.47437970666214824,-0.713575191795826,-0.8616372589021921,0.04945434909313917,-0.03290923358872533,-0.6188698248006403,0.941928488202393,-0.7788065462373197,-0.9464968275278807,-0.17031900398433208,0.6265765982680023,-0.5162344533018768,0.5369136151857674,-0.08025663951411843,0.9182359310798347,-0.135401738807559,-0.9774497770704329,0.1365411770530045,0.6325142672285438,-0.5709247346967459,-0.7026060712523758,-0.4790917136706412,0.07484833197668195,0.20520667359232903,-0.1520782015286386,-0.9192710462957621,0.5658872122876346,-0.3732582814991474,-0.9405517941340804,-0.05819974560290575,0.5904102372005582,-0.7540705110877752,-0.3243833598680794,-0.2391630783677101,0.6500575970858335,0.6865362767130136,0.012649060226976871,0.26818071492016315,0.9251364301890135,-0.926187883131206,0.3333233818411827,0.6348928660154343,-0.3042204789817333,0.8921970305964351,-0.4684042586013675,-0.9788074954412878,0.5278401249088347,0.9845945164561272,-0.5517361084930599,-0.8825401240028441,0.5074092079885304,0.6013618824072182,0.00045500369742512703,0.657128763385117,0.19764864770695567,0.3298007366247475,-0.8136500581167638,-0.2913682642392814,-0.09260762948542833,-0.14529642229899764,-0.7216671630740166,0.3065105495043099,0.8782726963981986,-0.30453914031386375,-0.5003349147737026,0.4300454230979085,-0.6719415606930852,0.6354428334161639,-0.13851972296833992,0.8149288878776133,0.5343890292569995,0.14680793834850192,0.5041836085729301,-0.9882833547890186,0.5470587410964072,0.8116102055646479,-0.35591708263382316,-0.5196269652806222,-0.5543236592784524,-0.12775488989427686,0.4235911606810987,-0.9957801993004978,0.7780938157811761,0.4657226190902293,-0.3731579892337322,-0.4360069050453603,0.8723659534007311,0.7098894659429789,0.2686916780658066,-0.31242244550958276,-0.4760639010928571,0.7300917166285217,0.6197699047625065,0.4339457512833178,-0.3257833165116608,0.9979072054848075,-0.7551545845344663,-0.901191723998636,0.10386752523481846,-0.22276850463822484,-0.5658078128471971,-0.3155176597647369,0.3804144598543644,0.8810271718539298,-0.795802871696651,0.5495277550071478,-0.44660299364477396,0.2873753407038748,0.17775947926566005,-0.5945885591208935,0.2105953898280859,-0.775654876139015,-0.7285242485813797,0.39009411772713065,-0.9584224480204284,-0.6159706329926848,0.9192954530008137,-0.11222996329888701,0.4522297205403447,-0.5070550111122429,-0.7622844786383212,-0.7749277953989804,0.2592276865616441,0.23348858579993248,-0.867755186278373,0.3138701128773391,-0.4303779564797878,-0.715607747901231,-0.15443115448579192,-0.43522986210882664,0.20854958100244403,-0.3233774686232209,0.6297628520987928,0.7549357856623828,-0.19285006262362003,-0.25227905297651887,0.6297028041444719,-0.7568516419269145,-0.8332010582089424,-0.5835062805563211,-0.5000827079638839,0.021927017252892256,0.13879016414284706,-0.4031893191859126,0.06660371366888285,-0.11505176965147257,0.1336977882310748,0.15813551796600223,-0.31185136223211884,-0.5652642413042486,0.28507283376529813,0.0003296276554465294,0.6592988362535834,0.06123859528452158,-0.053512643091380596,0.2209506849758327,0.5673684645444155,0.727261979598552,0.050772830843925476,0.742330533452332,0.33727847784757614,0.8730842475779355,-0.21369311725720763,-0.6728260410018265,-0.29457817040383816,-0.41071506263688207,0.14153410494327545,-0.27486364217475057,-0.7774269324727356,0.7715578889474273,0.818305887747556,0.396155902184546,0.6859101857990026,-0.806476834230125,-0.46569269616156816,-0.25359496660530567,0.3748039030469954,-0.06844722898676991,-0.9625109182670712,0.5126238991506398],"y":[0.5718131023459136,0.29982986953109503,0.3479788340628147,0.7270562699995935,-0.2806576923467219,0.30607123021036386,0.29967496916651726,0.5115964347496629,-0.6165591324679554,-0.6824753936380148,-0.7112867166288197,0.06369307171553373,0.7850242652930319,0.7340133185498416,-0.5785059882327914,0.15429519396275282,-0.38911585323512554,-0.9630714096128941,0.8230626541189849,0.5780277573503554,-0.4871971062384546,0.5172373247332871,0.7279437500983477,0.09198371088132262,-0.09389133611693978,0.277626596391201,-0.03708816645666957,-0.3848128872923553,-0.6231043264269829,0.24642218789085746,-0.8629336752928793,-0.10952661652117968,0.14411641703918576,0.07808721298351884,0.10801769327372313,-0.34915743255987763,0.2250324273481965,-0.7234847834333777,0.47994265193119645,-0.39182192645967007,0.1534302937798202,-0.5904172845184803,0.6199159934185445,0.7261541178449988,-0.062425349839031696,0.8826271719299257,0.7691329247318208,0.545548630412668,0.2725908625870943,0.6849923394620419,-0.8694595177657902,0.9546569786034524,0.578846481628716,-0.9099466735497117,0.017570727039128542,0.009858679492026567,0.220203110948205,-0.5957290451042354,-0.5351920211687684,0.12241571629419923,-0.16023713583126664,0.5771889882162213,-0.4183011925779283,0.8432435798458755,0.39237810345366597,0.8491394147276878,0.6937657445669174,0.7583489716053009,0.5522420201450586,-0.6880783252418041,-0.30882185557857156,-0.8934532646089792,-0.5608144463039935,0.19160844339057803,-0.8572944304905832,-0.4754327731207013,-0.23733622068539262,0.26801084680482745,-0.7712198719382286,-0.4119672356173396,0.764686540234834,-0.15479057002812624,0.8138686157763004,0.6190893510356545,0.28718800004571676,-0.1142318737693131,-0.73066600644961,-0.5010680663399398,0.37106861639767885,-0.397697523701936,0.4535781075246632,-0.0874382583424449,0.34489194164052606,-0.21859170123934746,0.493647466879338,-0.0471979402936995,0.6536851557902992,0.575516318436712,0.3217685534618795,0.6473008785396814,0.2549262079410255,-0.09829430095851421,0.8088288926519454,-0.6509964289143682,0.4138445910066366,0.04231940023601055,0.8844649181701243,0.7731340657919645,0.6387521103024483,0.88574173534289,0.7437519887462258,0.04138576937839389,0.13587849540635943,0.7234095968306065,0.13086032215505838,0.17150355223566294,0.22610416449606419,-0.1813210155814886,-0.33339102705940604,0.9480066411197186,-0.31614129059016705,-0.765148694626987,0.2765962481498718,-0.7586387661285698,0.3059267569333315,-0.6798854367807508,0.8827767665497959,0.5120957721956074,0.3970443606376648,0.9805399286560714,-0.45968213537707925,0.35466167889535427,0.7638353030197322,0.3911509867757559,-0.25448704417794943,-0.16039518918842077,-0.4067345936782658,-0.8864460038021207,-0.10669431556016207,-0.0628626556135714,0.4571426999755204,0.30395639361813664,-0.16918418742716312,-0.30017997743561864,-0.6974901128560305,-0.6776601257734001,-0.5988609874621034,0.8317110352218151,0.5854646214284003,-0.5114199430681765,0.6299035982228816,0.4875357230193913,0.13787545589730144,-0.06618671165779233,-0.28440977400168777,-0.37140121404081583,0.42173053743317723,-0.5497643798589706,-0.6325607290491462,-0.2674575187265873,-0.9819937204010785,0.8354068575426936,0.6486753663048148,0.25541900377720594,0.5681293006055057,0.9209794574417174,0.3304931875318289,-0.5687409192323685,-0.6623105308972299,0.11475401325151324,0.9074261970818043,0.5837223902344704,-0.31800012523308396,0.4966656183823943,0.8978478633798659,-0.8605025252327323,-0.6016309885308146,-0.9751816098578274,0.1825161511078477,-0.2840251377783716,-0.5425836462527514,0.92087133647874,-0.49029357777908444,-0.6485088216140866,-0.8020593887194991,0.23951528733596206,-0.5334016080014408,0.46353207854554057,-0.17779319966211915,-0.6560049937106669,-0.8544862987473607,-0.06639504572376609,-0.05161314271390438,-0.5516986036673188,0.7142319297417998,-0.34803576162084937,0.7420886820182204,0.9733837428502738,0.4565878165885806,0.8743767929263413,-0.4900819733738899,0.28551814425736666,-0.6277637779712677,-0.20295673748478293,0.2634107465855777,0.5805539577268064,-0.5735851884819567,-0.22069772332906723,-0.017528753262013197,0.5481610987335443,-0.3344190660864115,-0.36461175652220845,-0.70087322127074,0.9744229782372713,0.8827633196488023,0.18085582135245204,0.8437579087913036,0.36580036440864205,0.28856360958889127,-0.34043678687885404,-0.14842956606298685,0.8095282460562885,-0.8276933720335364,0.11369401542469859,0.6966679254546762,0.02678781794384122,0.11676304740831256,0.936907690949738,0.7453527534380555,-0.699283626396209,-0.8906700685620308,0.015920153353363276,0.6460712687112391,-0.6347856014035642,0.44627205142751336,-0.5918981651775539,0.03732613194733858,0.9029891970567405,-0.28173515293747187,0.7376326927915215,-0.908735032659024,0.5299744685180485,-0.5859123258851469,0.6994048869237304,-0.5611040056683123,0.5314393192529678,0.3730052784085274,0.33753146417438984,0.4259758945554495,-0.6326854038052261,-0.08732319483533502,-0.6139932330697775,0.6856888518668711,-0.7163379960693419,0.5007036780007184,-0.5727619864046574,0.5160583099350333,0.8526417557150126,-0.7591633768752217,0.025760200805962086,0.49617507169023156,-0.8028811123222113,-0.6312783900648355,0.9180472111329436,0.5295286066830158,0.9214775688014925,0.8742900555953383,0.2504042722284794,-0.49098478723317385,0.8947284491732717,-0.804069101344794,0.6508191623724997,-0.5430003586225212,-0.75116734392941,-0.3827056232839823,0.8985670520924032,0.3755077635869384,0.3107410594820976,-0.3211667202413082,-0.8082112791016698,0.9133734963834286,0.639569207560271,-0.2321715373545885,0.6414521238766611,-0.43527560168877244,0.17120081698521972,0.8591941269114614,0.5134543920867145,-0.7647697636857629,-0.2075343714095652,-0.6286450088955462,-0.2739896271377802,0.18067144555971026,0.11152245989069343,0.3759692255407572,0.4728399463929236,0.9623774490319192,-0.08627441478893161,0.43517211033031344,-0.4227696009911597,0.3282087300904095,-0.46785659808665514,0.8371313433162868,-0.0503243263810873,0.29892703890800476,0.3711200915277004,-0.208453347440809,-0.7618040116503835,0.04517954075708985,0.659519731067121,0.2973080202937126,-0.49029323598369956,-0.25856649223715067,-0.9377021207474172,-0.40750376507639885,0.4724364043213427,-0.04751463606953621,0.5666143777780235,0.36732402443885803,-0.5276047922670841,-0.10821879655122757,0.4354831539094448,0.48141017789021134,0.7328713992610574,0.9921792377717793,0.41850688215345144,0.3333918210119009,-0.7170946099795401,-0.954254268668592,0.5663025416433811,0.9662472200579941,0.7190618235617876,0.5365842087194324,0.08306651283055544,0.05365279829129577,-0.41458402248099446,0.3310267999768257,0.7173715066164732,-0.355962420348078,-0.24242186127230525,0.30165404779836535,-0.9412751351483166,-0.2747151907533407,-0.5882112472318113,-0.8637675787322223,-0.9747386327944696,-0.5458774794824421,0.11497136671096087,-0.8567592967301607,0.4252956425771117,-0.4850318441167474,-0.40937148965895176,-0.15430332953110337,0.27010143687948585,0.13275770470499992,0.6317651327699423,0.04948153020814061,0.9293395946733654,-0.3553922534920275,-0.4699062895961106,-0.9928945531137288,0.6157738189212978,0.5590984933078289,0.8586822561919689,0.7165877213701606,-0.14147744420915842,0.9028713954612613,-0.4425001130439341,-0.7198870261199772,0.1191372498869896,0.502695323433727,-0.6816737418994308,0.2333385581150651,0.20830414909869432,-0.2236202829517424,-0.24965758668258786,0.2753873891197145,0.17754611046984792,0.551264604087919,0.7215659646317363,0.4703466594219208,0.4829614479094744,0.2961953296326101,0.532932823523879,0.35527239413931966,-0.6237264056690037,-0.20730743510648608,-0.3934925012290478,0.32207516860216856,-0.3045025416649878,-0.3446504743769765,0.41867571836337447,-0.41472473461180925,0.7454444402828813,-0.4473585612140596,0.1517967116087675,0.5172487874515355,0.5459237569011748,-0.14970861840993166,-0.8699287730269134,0.21338545298203826,0.922637898940593,0.06158340582624078,0.9603010122664273,-0.18658247776329517,-0.9683945183642209,0.17037735506892204,-0.49112352123484015,-0.6004634173586965,0.3904238101094961,-0.17325943196192384,-0.7309313942678273,-0.44766783993691206,0.5571993668563664,0.2076154425740242,-0.2555655254982412,0.38361715292558074,-0.3113783048465848,-0.34208347368985415,0.5380795085802674,0.1644415557384491,-0.09129713848233223,-0.48457685951143503,0.71520955581218,0.47887734696269035,-0.5672445269301534,-0.7127761072479188,-0.3679057308472693,-0.3813026500865817,0.7210767166689038,0.8052966771647334,0.8202969189733267,-0.38170333951711655,-0.5145800951868296,0.6301209209486842,-0.9575449242256582,-0.981056094635278,-0.12737521016970277,0.5849505313672125,0.7291233064606786,0.05849519977346063,-0.03368233609944582,-0.7591448347084224,-0.04534807475283742,-0.10515136597678065,0.9707463323138654,0.180194151122123,-0.522699118591845,-0.9716057744808495,0.16127685690298676,0.48562897043302655,0.5122694871388376,0.8346331580542028,-0.5344592584297061,-0.9548009759746492,-0.5650802147574723,-0.9689299818128347,0.949458266608417,-0.06227851938456297,0.17103438265621662,0.6977709527127445,-0.6008296180516481,0.04956362955272198,-0.5860582641325891,-0.15502596274018288,0.8393309405073524,-0.9416405470110476,0.463499937672168,-0.022148508578538895,0.2342151622287929,-0.473948095459491,0.11344771925359964,-0.41573324892669916,0.929394512437284,-0.14172513922676444,-0.09543987363576889,0.36372165149077773,0.1219799080863595,-0.09073899406939745,-0.8915002234280109,0.1647807378321886,0.101925996132195,-0.737071352545172,0.9544957648031414,0.6473233411088586,-0.44983951980248094,0.073003058321774,0.6878216289915144,0.33914502803236246,-0.9935058592818677,-0.9025255562737584,0.554986176546663,0.9883688986301422,-0.03475383250042796,-0.795653591863811,-0.453198051545769,-0.3962117345072329,0.130378479603678,0.20017473679035902,0.897343972697854,-0.8642890914343297,0.007749715819954872,0.09292565053328872,0.8062668130733073,-0.08654304360970855,-0.02664504898712039,-0.40621010586619377,0.9103588736616075,-0.7889004372991621,0.2921910644508898,0.6662213006056845,0.495271906722337,0.21904002642259002,0.14146671118214726,-0.711684278678149,-0.5887252651154995,0.49190266244113445,0.25233155163004994,-0.7443057708442211,0.5596667663194239,-0.9881606912240386,-0.41725900024175644,0.36616009566932917,0.9078511954285204,0.14653355767950416,0.4230382153764367,0.7093393444083631,0.22971957735717297,-0.9292831746861339,-0.44382911873981357,0.806813801638782,0.6949375588446856,0.39773670258000493,-0.30176137341186404,-0.9590314459055662,-0.7522085225209594,-0.7645783554762602,0.6172525463625789,0.3776035946793854,-0.8287405059672892,0.5593407182022929,-0.572335269767791,-0.17489210423082113,-0.8831253098323941,-0.838058618362993,0.13604183634743094,0.6767595065757632,-0.19344942132011056,-0.8668543263338506,-0.16748905880376697,-0.45366306509822607,-0.244261902756989,-0.3444667235016823,-0.0061462633311748505,-0.23648132290691137,-0.7139477697201073,-0.0686085931956768,0.8601588942110538,0.2979912827722728,0.8427907396107912,-0.8558083646930754,-0.7465233723632991,-0.8851662133820355,-0.8904728437773883,-0.13565496169030666,-0.7373784524388611,-0.06158687453716993,-0.38890607189387083,-0.09805008256807923,-0.4363517449237406,0.724714320152998,0.7373165008611977,-0.3289891858585179,-0.42517200019210577,0.8940719873644412,0.1917578768916428,0.4285995261743665,-0.13449358334764838,-0.8073455370031297,0.3335319524630904,-0.718494432978332,0.7045713891275227,0.12481065513566136,-0.4538188739679754,0.8832010040059686,-0.7303870487958193,0.46861123759299517,0.07302004471421242,0.6427008523605764,-0.023785382974892855,-0.5851062252186239,0.8827025485225022,0.678661051671952,0.6361075807362795,-0.15479247085750103,0.5485687358304858,-0.2849041656590998,0.5370985870249569,-0.4411086649633944,0.013541489839553833,-0.020767142064869404,0.3758547627367079,-0.47534975269809365,0.9179538683965802,0.722624758258462,-0.12995059648528695,-0.6748902755789459,0.734370734076947,-0.8403042759746313,0.524340053088963,-0.6753948694095016,-0.5383629142306745,0.4138672836124897,-0.7299392614513636,-0.8164788261055946,0.04434388130903244,0.06035198597237468,-0.9200500990264118,0.5376013056375086,0.24104214925318956,0.9495706828311086,-0.9706987859681249,0.4383898857049644,-0.791446341201663,0.44900591438636184,-0.8749943436123431,0.7250649370253086,-0.7048567486926913,0.9519326630979776,-0.02418204676359892,-0.6301077152602375,0.9285228466615081,-0.057603685185313225,-0.8521514791063964,-0.972017721273005,-0.7401753626763821,-0.47364117996767163,0.6789657049812376,-0.16263466980308294,-0.04148963280022144,-0.6313627250492573,-0.633788242470473,-0.6308783362619579,-0.6776021090336144,0.5955015453509986,0.02130460273474455,-0.7563229813240469,-0.16048273257911205,-0.5566616901196539,-0.3395762383006513,0.7985127242282033,0.498487061355263,0.32594140712171793,-0.13453936064615846,0.604495678562671,0.6919058565981686,0.8445027093403041,-0.08318126667290926,0.05935765663161874,-0.24584115389734507,-0.8733241683803499,-0.4226397033780813,0.7012839377857745,-0.40498149022459984,0.49215788021683693,-0.21842910489067435,0.34730825992301106,-0.45898959040641785,0.5976812038570642,0.2304133102297783,0.24520313646644354,-0.9883692245930433,-0.463875365909189,-0.028064947575330734,-0.8934151600115001,-0.7922491617500782,0.8403771505691111,-0.5440054317004979,0.6428700080141425,-0.9621264664456248,0.069760010112077,-0.40843193512409925,-0.7320039207115769,-0.5438536927103996,-0.033329932019114494,-0.5319685223512352,-0.7214200617745519,-0.4349332791753113,-0.5631474661640823,-0.25570170721039176,-0.34759499598294497,0.05148489912971854,0.6085688970051706,-0.67159573873505,-0.12809227500110865,0.2110200305469334,-0.9339910950511694,-0.3552893646992743,0.06518757529556751,-0.7567206593230367,0.08931954903528094,0.27870879089459777,0.158497825730592,-0.4993459819816053,-0.7825829274952412,0.3147544218227267,-0.3733770572580397,0.7702822340652347,0.7504391837865114,0.7593326214700937,0.08266782434657216,-0.41880706092342734,-0.5154574499465525,0.6323452503420413,0.05821934016421437,0.09373158914968371,-0.9118251008912921,-0.7377686784602702,0.5077962200157344,-0.5619964408688247,0.08870188752189279,0.6774898404255509,0.6733359475620091,0.8253121101297438,0.38439483381807804,0.5025249663740396,-0.7435510437935591,-0.6036200425587595,-0.39399327151477337,0.2191718379035592,0.9807830373756588,-0.6974475514143705,0.9393263589590788,-0.29169942205771804,0.7812443808652461,0.7523816674947739,-0.10427324287593365,0.3353833951987326,0.33471802808344364,-0.12809423683211207,0.9477806463837624,0.9594402541406453,-0.49456393625587225,-0.7328941053710878,-0.8024499230086803,-0.9501962941139936,-0.6998487976379693,-0.5184994721785188,0.7938805855810642,0.583142526447773,0.7157496591098607,0.9687820510007441,0.6345599726773798,0.7541637583635747,-0.8031219481490552,0.31474927300587296,-0.53108841041103,-0.5524680274538696,0.4195150239393115,0.5512431319803,0.843480437528342,0.734800941310823,0.32835540222004056,0.24610873591154814,0.33664181362837553,-0.9427429330535233,0.5991987562738359,-0.5756121221929789,-0.32206052355468273,0.17957812594249845,0.8931170436553657,-0.8099460317753255,-0.5540396440774202,0.8938685078173876,-0.2102137627080083,0.02159733371809125,-0.6721469569019973,-0.3973979032598436,0.7055596099235117,0.4896071427501738,0.9861150528304279,-0.7759199850261211,0.7414463455788791,0.6409686831757426,0.06428964110091329,0.5068977763876319,0.6737864385358989,-0.30810853326693177,-0.3703160802833736,0.03623656649142504,0.342676046770066,0.7606965019367635,-0.5080034038983285,0.9352773865684867,0.2294734651222825,-0.5410176999866962,-0.3630657773464918,-0.9834972331300378,0.8048911988735199,0.25084894616156816,-0.7913187546655536,0.23427684791386127,0.41187370009720325,-0.21373058762401342,-0.5291993096470833,0.8075732444413006,-0.9403639961965382,-0.23238973738625646,0.2497724825516343,-0.7325028320774436,0.23714232351630926,-0.6427701064385474,0.30901279812678695,-0.8496317933313549,0.7056440738961101,0.4292884273454547,-0.8731368593871593,-0.8532626172527671,0.5548076070845127,-0.5429457477293909,0.8741083415225148,0.7194111850112677,-0.6165635641664267,0.08669394487515092,0.3351925159804523,-0.8965253671631217,-0.5808059186674654,-0.8288308558985591,-0.038970719557255507,-0.8666490847244859,0.5123297655954957,0.8572713416069746,0.7521996395662427,0.9725398616865277,0.30576144298538566,-0.8196777235716581,0.9478359147906303,0.789015868678689,0.23180694319307804,-0.7841356797143817,0.45274277217686176,0.14716496504843235,0.17768650082871318,0.8106167740188539,-0.05613929685205221,0.8715514959767461,0.4059636318124831,0.5712987682782114,-0.36932530254125595,0.02514692395925522,-0.04121039668098092,-0.7810332025401294,0.12902867514640093,-0.10492340242490172,-0.9106539199128747,0.027594481594860554,0.9390764157287776,-0.6271479604765773,0.7397713661193848,0.3325283913873136,0.9832883980125189,0.1400563078932464,0.11217660875990987,-0.5271563422866166,0.5278044743463397,0.7244790201075375,0.048309487756341696,-0.5907689114101231,-0.26179402926936746,0.734525220002979,-0.29004283668473363,0.8723590043373406,0.026446424890309572,0.9317265246063471,0.9849737100303173,0.23210571380332112,-0.18040238413959742,-0.04724819399416447,0.8249563490971923,-0.8270042622461915,0.40399426547810435,0.4195380392484367,-0.7463942398317158,-0.9032066212967038,-0.5988162714056671,-0.2743644183501601,-0.16661041229963303,0.08402074966579676,0.5177184739150107,0.45353933423757553,-0.2523465920239687,0.9366682143881917,0.1097283405251801,-0.10689434641972184,0.5323998956009746,0.5774426786229014,-0.6497740694321692,-0.9440276226960123,0.33536707796156406,-0.35700636822730303,0.8147432277910411,-0.8254312071949244,-0.8100311080925167,-0.9337556106038392,-0.14153477875515819,-0.03233040729537606,0.40510964347049594,-0.10645648371428251,-0.3404057021252811,-0.9457735256291926,-0.6269372934475541,0.9556660898961127,0.8138581402599812,0.7997379889711738,-0.27361719915643334,-0.33139415085315704,0.320029079914093,0.3680231748148799,-0.12322656903415918,-0.035057160537689924,0.8194222655147314,-0.6591379186138511,0.8234716318547726,0.5945623684674501,0.1227278090082109,0.7846473697572947,-0.9915199340321124,-0.15848645521327853,-0.9216547724790871,-0.7216628724709153,0.010506805963814259,-0.31543412851169705,0.3773577846586704,-0.8918319060467184,0.674097559414804,-0.5802041180431843,0.9438968361355364,-0.15717769926413894,0.304373050108552,0.5964591023512185,-0.6268138187006116,0.11658383905887604,0.6602678117342293,-0.7645946890115738,0.012455296237021685,0.33678908506408334,-0.8563750493340194,0.8399180909618735,-0.46423445316031575,0.0980127495713532,0.7755232881754637,0.22187683125957847,-0.06516036856919527,-0.37546918261796236,0.538758747279644,-0.5243424344807863,-0.27472700411453843,-0.876485962420702,-0.15498248534277081,-0.5878210542723536,0.011106112506240606,0.9581323699094355,-0.6396386297419667,-0.2514886208809912,-0.41453762957826257,-0.21561721386387944,0.6406445563770831,0.5575281279161572,-0.4655302446335554,-0.06942718802019954,-0.21102490788325667,0.7638489254750311,-0.9802043405361474,0.6114092948846519,0.7973899971693754,0.04609067412093282,0.7026525544933975,0.07933586277067661,0.11779349204152822,-0.2494722311384976,0.21897817170247436,0.6409718398936093,-0.907046081032604,-0.4546458823606372,0.2587896157056093,-0.3757273433730006,0.207503292709589,-0.9750682539306581,-0.2739500845782459,-0.7502419454976916,0.8259787908755243,-0.8957625599578023,0.8810414280742407,0.7544161267578602,0.4428729098290205,0.28347013611346483,0.834198113065213,-0.005997598171234131,0.05667461734265089,-0.07881989469751716,-0.2733164420351386,0.3412355510517955,0.908802323974669,-0.612587783485651,0.03358516609296203,0.09600228676572442,-0.2316025346517563,-0.9541335850954056,-0.49078723322600126,-0.22309848526492715,0.014401856809854507,0.03281824989244342,-0.6213703462854028,0.7286827364005148,-0.2842287886887789,-0.2779898187145591,-0.26778212934732437,0.4581536492332816,0.790935349650681,-0.9796939161606133,0.24118864675983787,0.8096109703183174,-0.7881133356131613,0.7515064277686179,0.06921351654455066,0.24239889066666365,0.23230198910459876,-0.5644553629681468,0.9901187587529421,-0.8516064528375864,-0.32831481005996466,0.08981149084866047,-0.32774586603045464,0.4024204877205193,0.5778988129459321,0.9501169133000076,0.29547594487667084,0.8728269664570689,0.5096587613224983,0.9264578642323613,0.6901078806258738,0.852242867462337,0.06976857036352158,-0.6141807273961604,-0.8613070328719914,0.27324831718578935,0.8966551497578621,-0.707283713389188,0.6866730097681284,-0.20325775211676955,0.0771772637963295,-0.06128144171088934,-0.21874088048934937,0.3929431429132819,0.5055222697556019,-0.9531022105365992,0.3371017179451883,-0.24614842794835567,-0.8809009664691985,0.7483425480313599,0.046048803720623255,0.6894844905473292,-0.017401676159352064,0.5714604496024549,-0.009212350007146597,0.2525991490110755,-0.9280477953143418,0.5860007088631392,0.5055650542490184,-0.28714798111468554,-0.998820970300585,0.4998396625742316,-0.09259530203416944,0.8257577619515359,-0.9131390955299139,-0.5874779908917844,0.4889037013053894,-0.3265890828333795,0.2131050145253539,0.055241094902157784,0.8331302176229656,-0.058403678238391876,-0.5903461272828281,-0.3161940071731806,0.8558162413537502,-0.7854635594412684,0.6482975166290998,-0.7434638268314302,-0.2609712053090334,0.10402514226734638,-0.6842351076193154,0.23354313988238573,0.6625172751955688,0.4872192698530853,-0.4438373507000506,0.19756636070087552,-0.40763122821226716,-0.43433193676173687,-0.4423132473602891,-0.055195293854922056,0.9632430444471538,-0.5730829993262887,-0.07688502408564091,0.710112142842263,0.742294839117676,-0.0528080346994102,-0.8485125545412302,0.3339066389016807,-0.4015971003100276,0.5162260439246893,0.2515606405213475,-0.5881686024367809,0.9175373567268252,-0.4912697859108448,0.0758491768501699,-0.11279623210430145,-0.03604170633479953,0.14717422518879175,-0.10286956513300538,-0.1663463688455522,-0.9072791039943695,0.822764165699482,0.9649554905481637,0.4457290912978351,-0.5158442473039031,-0.9503197753801942,0.44950379338115454,0.6586418822407722,-0.6976145510561764,-0.30422668578103185,-0.0014234920963644981,0.6938974438235164,-0.6712940819561481,0.10042827669531107,0.17666270537301898,-0.5420743455179036,0.5314155165106058,0.42818649346008897,-0.02130051562562585,-0.07822858542203903,0.7498316010460258,0.5878768865950406,-0.28748965449631214,-0.16775622451677918,-0.1296799425035715,-0.5728437970392406,-0.34132198756560683,0.3708692672662437,0.7771577350795269,0.5096191866323352,0.07267774920910597,0.3415147769264877,-0.7276146053336561,-0.9737967671826482,0.5556344641372561,0.4587797559797764,-0.14128375751897693,0.5882704989053309,0.5747659094631672,0.7777214255183935,0.6072262218222022,-0.9274467122741044,-0.6058462089858949,0.07192903477698565,-0.9465984012931585,0.03537007048726082,-0.17634594812989235,0.36432202672585845,0.6344349435530603,0.9529234278015792,-0.49279223941266537,-0.4852721905335784,0.845668385270983,-0.38016730919480324,0.5058066551573575,-0.2731590885668993,-0.28837363375350833,-0.5380562236532569,-0.9168704268522561,-0.8926874031312764,0.6768471277318895,-0.669766956474632,0.22760602785274386,0.8803521832451224,0.07690420281141996,-0.7063690586946905,0.48504519928246737,0.0881221117451787,0.5611839173361659,0.3640580493956804,0.021384108811616898,-0.10152468085289001,-0.7950920537114143,0.2817317242734134,0.309390882961452,0.8939593303948641,-0.5304852896369994,-0.26849229680374265,0.14765290776267648,-0.823541549500078,-0.40563895646482706,-0.47070407681167126,0.49711607955396175,0.005724582355469465,-0.1905004484578967,0.9770905589684844,0.628473736345768,-0.10053437715396285,0.4616912277415395,-0.045924630016088486,0.785615096334368,-0.695876413024962,-0.7447300385683775,0.33051698422059417,-0.9393267780542374,0.8775082207284868,0.6485050171613693,-0.31683118315413594,0.7340839183889329,-0.3875086773186922,-0.42842919286340475,-0.3011992536485195,0.6708934335038066,-0.12675053719431162,0.7816468775272369,0.5925172539427876,0.6275273403152823,0.9077041172422469,0.7722282609902322,-0.7870636126026511,-0.7202859483659267,0.6288183480501175,0.7762501868419349,0.5831128074787557,-0.7272477699443698,0.8153615342453122,0.6528058862313628,0.8751733559183776,-0.06914547458291054,0.9058425119146705,0.4463729257695377,0.10940938396379352,-0.4182849987410009,0.7180712702684104,0.37320380564779043,0.28725738916546106,-0.4748911145143211,-0.6289093540981412,0.694335610140115,-0.6279219002462924,-0.9585918383672833,-0.8681749682873487,-0.6878397455438972,-0.9349695541895926,0.27560763200744987,0.6795218391343951,-0.4936480727046728,0.30216061510145664,0.31041122507303953,0.695804804097861,-0.4352996665984392,-0.2627208447083831,-0.7880999497137964,0.056177420541644096,0.03792415792122483,0.7621520729735494,0.1497975834645331,-0.1854641535319388,-0.2123703919351101,-0.530172775965184,-0.6710313986986876,0.02099692402407527,0.22317354893311858,0.23459103889763355,-0.6539381206966937,-0.7537011234089732,-0.957824386190623,0.053867354057729244,0.705268825404346,0.7563851145096123,-0.5635677743703127,0.9810295421630144,0.5627891439944506,-0.9395140470005572,-0.1967226699925959,0.12841712217777967,-0.8542211707681417,0.007797546684741974,0.11823276523500681,-0.26878218445926905,0.5408529466949403,0.6184454676695168,-0.6640232033096254,-0.904133508913219,-0.6053359331563115,-0.8543385481461883,-0.9347689370624721,-0.06716749258339405,-0.3809285815805197,-0.6539298486895859,-0.9950835383497179,-0.8298856252804399,0.9040129701606929,0.9660931681282818,-0.732917346060276,0.31228135572746396,0.9285734491422772,0.9594437978230417,0.4249286730773747,0.7415797095745802,0.9777711061760783,0.1318785692565143,-0.6116867400705814,-0.1312853549607098,-0.6063504330813885,0.5535933221690357,0.2158713648095727,-0.11061848886311054,-0.29476281721144915,-0.16899546515196562,0.7112368042580783,-0.39261092199012637,0.723369566258043,-0.27845008252188563,0.8721869746223092,0.978337203618139,-0.062370271887630224,-0.8236036109738052,-0.062208086252212524,0.8991534751839936,-0.2683678832836449,-0.08188764052465558,-0.530868009198457,-0.2759137242101133,-0.40226496290415525,0.3813368249684572,-0.736367229372263,0.6257222308777273,-0.5080130212008953,-0.3353798985481262,0.5106355990283191,0.22281260369345546,-0.8330981456674635,-0.32932865619659424,-0.510567064397037,-0.7766250427812338,-0.572951028123498,-0.08423965610563755,-0.10050535062327981,0.25308466935530305,0.9005492669530213,0.4977038446813822,0.05470266845077276,0.3303620694205165,-0.9393805689178407,-0.7179958680644631,-0.8612385769374669,0.8073335965164006,-0.9141449653543532,0.6492024785839021,0.8216568850912154,0.8375561963766813,-0.9048490766435862,-0.28701693285256624,0.47363624861463904,0.1058158609084785,0.6841369844041765,0.9418303496204317,0.5454858704470098,-0.5778486197814345,0.0004383777268230915,0.3060748823918402,-0.2139618401415646,0.6916087581776083,-0.0018468620255589485,-0.8193214144557714,-0.08876710059121251,-0.4030155776999891,0.4590719426050782,0.8924050265923142,0.17425942281261086,0.032631149515509605,0.8271202654577792,0.6618417068384588,0.008990990929305553,0.02711458271369338,0.7968756915070117,0.975960087031126,0.8243344966322184,0.2913839421235025,0.20488940877839923,0.6969253527931869,0.21384215354919434,-0.8079388453625143,-0.39159899577498436,0.3622000953182578,0.6654809615574777,0.2573526822961867,-0.1795803694985807,-0.45280389161780477,0.03187977196648717,0.09553648205474019,0.5306099662557244,-0.3550328207202256,-0.8126911986619234,0.4177697030827403,-0.7525813174434006,-0.30056824162602425,0.6485469532199204,-0.03521076310425997,-0.7918434389866889,0.4828514554537833,0.6628791159018874,-0.7918660240247846,0.007746171206235886,-0.41642735432833433,-0.6350495931692421,-0.6761523522436619,-0.7199322408996522,-0.40189619874581695,0.5779893877916038,-0.786220979411155,-0.5960211637429893,0.7745626526884735,0.025050543248653412,0.44904579780995846,0.0059305340982973576,-0.548918079584837,0.10618689144030213,-0.7596915639005601,-0.20927754184231162,0.258604378439486,-0.44614348374307156,-0.2323635215871036,-0.09407376172021031,0.5706414133310318,-0.9643431934528053,-0.48600446758791804,-0.05276359571143985,0.45293071726337075,0.5492553608492017,-0.7191042983904481,-0.05221674079075456,-0.13351039169356227,-0.41910700080916286,0.3924420401453972,0.20590823516249657,-0.8278279048390687,0.21587570616975427,-0.21368665201589465,0.053348639979958534,-0.431418573949486,-0.43848257465288043,-0.3341189017519355,-0.17321622790768743,-0.5034663113765419,0.8117309245280921,0.20626109139993787,0.6778296818956733,0.29281062772497535,0.7872276362031698,0.9579734294675291,-0.21788574568927288,-0.8629434946924448,0.17493079183623195,-0.7703445670194924,-0.8276247135363519,0.5530730402097106,0.9266201537102461,-0.8294525276869535,-0.03912313189357519,0.32825839472934604,0.8558091362938285,-0.48767440347000957,-0.05880053387954831,0.9323194003663957,-0.5353407729417086,0.7505317479372025,0.6695881653577089,0.5473975320346653,-0.5403626128099859,-0.884379057213664,0.6276255501434207,0.008477180730551481,-0.8519263830967247,0.6024198783561587,0.8992105796933174,-0.7119894097559154,-0.5926815918646753,0.5726254959590733,0.7500418177805841,0.1926825363188982,0.2640832755714655,-0.2987289219163358,0.2429167735390365,-0.0378682017326355,0.031069785822182894,0.04417482577264309,-0.8932279222644866,0.39399108989164233,-0.21052261162549257,-0.8625018829479814,-0.005914061330258846,-0.16773909982293844,-0.8950369982048869,0.867069726344198,-0.649959160014987,-0.06496177474036813,0.40409383177757263,0.07987097697332501,0.2648810250684619,-0.5376459388062358,-0.18688772479072213,-0.2773822653107345,-0.11046056216582656,-0.9971086038276553,0.4914867770858109,0.8110066382214427,-0.014080352615565062,-0.6514290114864707,0.6296884571202099,0.07192377792671323,0.016940284054726362,-0.3887854954227805,-0.059495359659194946,0.561497291084379,-0.017827563919126987,-0.8290132842957973,-0.484111700206995,-0.4873535018414259,0.9358661565929651,0.7554246243089437,0.8517292658798397,-0.3402891382575035,0.8111188411712646,0.6715371967293322,0.8914299188181758,0.7630952787585557,0.4882627874612808,-0.7262722831219435,-0.3247635089792311,0.9598879883997142,0.9302059118635952,-0.5154162421822548,-0.3634221972897649,-0.1104144798591733,-0.09289560234174132,-0.9080937053076923,0.6661367025226355,-0.36681676795706153,-0.547725532669574,-0.2820650669746101,-0.45503743551671505,0.7426695725880563,-0.06592700025066733,0.6754848104901612,-0.8068826105445623,-0.06639771116897464,0.28621839126572013,-0.9005344198085368,-0.15465171029791236,-0.4290296407416463,0.42462859908118844,0.9290809384547174,-0.9791503618471324,0.07006915612146258,-0.5567020904272795,0.3589769937098026,0.4459138582460582,0.6418815827928483,-0.46208585426211357,0.16400265414267778,-0.540913232602179,0.16148476349189878,0.5048107919283211,0.3296634587459266,-0.22226068191230297,-0.7033536424860358,-0.4138460587710142,0.47881996305659413,-0.8445518757216632,0.9294860102236271,-0.377174103166908,0.06165364244952798,-0.28683197777718306,-0.7088741967454553,0.84691002080217,0.9309701127931476,0.14367889985442162,0.9159242967143655,0.5967385708354414,0.7642706772312522,-0.7040869393385947,-0.9842322636395693,0.9192388118244708,0.39842280372977257,0.42236602772027254,-0.8332294970750809,0.05814620014280081,-0.13372426247224212,-0.7708497536368668,-0.6841211547143757,0.8862603548914194,0.4738575676456094,0.1996120517142117,-0.1902861837297678,0.7760113887488842,-0.43913409067317843,0.47868498181924224,0.6344946576282382,0.07723853271454573,-0.530873307492584,0.45867817336693406,-0.4494145745411515,0.7674745377153158,-0.4908043332397938,-0.4238013788126409,-0.8689660155214369,0.41714340541511774,-0.3432812700048089,-0.29909027833491564,0.1561701986938715,0.42180828051641583,0.9054944333620369,-0.6055080364458263,0.6185061135329306,0.5534891374409199,-0.4094445970840752,0.9220634852536023,-0.1503362199291587,0.6381262713111937,0.7985690622590482,-0.8666080529801548,-0.7001143675297499,-0.9518525428138673,0.10420070076361299,-0.47710102470591664,-0.45371811743825674,-0.11346220830455422,0.8636583616025746,0.5169658670201898,-0.954988126643002,0.49070586217567325,-0.18640328012406826,-0.012006242293864489,0.3125972137786448,-0.5078902142122388,-0.594356460031122,0.3151943306438625,-0.6322472668252885,-0.47021274361759424,-0.6149744680151343,0.33857566909864545,0.9660166730172932,0.9776313677430153,-0.3464262909255922,-0.14846593234688044,0.5056284265592694,0.4262679615058005,-0.07765077101066709,-0.017603070475161076,0.0450265402905643,0.680047154892236,-0.214827342890203,-0.8369116680696607,0.030563721898943186,-0.416555960662663,-0.7274676305241883,-0.33770389296114445,0.38489492051303387,-0.042206836864352226,0.3472285815514624,-0.7272137301042676,-0.9398633777163923,0.4351491299457848,0.010735275223851204,0.48119839606806636,-0.3254796704277396,0.49685576884076,0.9705844288691878,-0.6156730935908854,0.4953276081942022,0.5638215746730566,0.5918546374887228,-0.8865549433976412,-0.5566710624843836,0.2967843213118613,0.04336795164272189,-0.6253640111535788,0.08220076374709606,-0.26339282700791955,0.5347755360417068,-0.24251639051362872,0.5854463512077928,-0.7297718622721732,0.8762698862701654,-0.4898740374483168,0.9839850878342986,0.9710869039408863,-0.39244412491098046,-0.43744432320818305,0.5257585607469082,0.14587598759680986,-0.24775096727535129,0.5461686872877181,0.3467990164645016,-0.1925211544148624,-0.755232420284301,-0.7017141464166343,-0.8138837683945894,0.15389939956367016,-0.05463646678254008,-0.340322386007756,-0.6982197766192257,0.3950464050285518,0.07440621731802821,-0.09195310389623046,-0.6524332510307431,0.8649788848124444,-0.12494018534198403,0.6675029117614031,-0.9630861971527338,0.16604768810793757,0.957931908313185,0.8435117620974779,-0.6306109502911568,0.37304670410230756,0.0324185467325151,0.4238855503499508,-0.3720648898743093,0.9344178992323577,0.7912348243407905,0.19387810165062547,-0.7094799568876624,0.3494741814211011,0.6597084454260767,-0.4071856364607811,0.6418794491328299,-0.9735755603760481,0.3580831387080252,0.567705484572798,-0.11472366377711296,-0.056271097622811794,0.21357093239203095,0.8579025114886463,-0.6138940281234682,-0.7919355691410601,0.07085423916578293,0.6618799334391952,-0.6305938307195902,-0.2814554567448795,-0.4674561470746994,0.4693068712949753,-0.7580866748467088,-0.32074741180986166,0.7194733070209622,-0.12729914486408234,0.28892187448218465,-0.35757129453122616,-0.6814780761487782,-0.9715082081966102,-0.04056005505844951,0.2651261370629072,-0.48816988803446293,-0.8933160626329482,-0.37168714217841625,0.26787244575098157,0.4588341102935374,-0.7952862656675279,-0.3033423079177737,0.9998868200927973,-0.581310314591974,-0.873026623390615,0.04431873979046941,0.7291504601016641,-0.39845511643216014,-0.3444527955725789,0.4557882444933057,0.34345731418579817,0.5333131090737879,-0.8215728541836143,0.7777169025503099,-0.09492865344509482,0.7616639379411936,-0.6090718819759786,0.479766511823982,0.5161806880496442,0.1127692093141377,-0.9977695881389081,0.2158658904954791,-0.02143543539568782,0.7301020412705839,-0.6979180704802275,-0.9664398264139891,-0.07169472519308329,0.39034523675218225,-0.8419617330655456,0.31217864574864507,0.013674209825694561,-0.06344106467440724,-0.847559614572674,0.7181017356924713,-0.49771710205823183,-0.2181389587931335,-0.9888999429531395,0.8146847845055163,0.7556895557790995,-0.6025400506332517,-0.4343411368317902,0.5924180848523974,0.7500487701036036,0.05288900155574083,-0.16288721188902855,-0.07450465811416507,0.9728528577834368,-0.8125518481247127,-0.03658747673034668,0.06821497995406389,-0.5144591457210481,-0.6441643019206822,0.21352415019646287,0.7955913455225527,-0.32576556224375963,-0.8676227238029242,0.16545418137684464,0.6469860980287194,0.9044410465285182,-0.9897042675875127,0.47159358905628324,0.8399130045436323,-0.16164694912731647,-0.355965081602335,-0.46950500225648284,-0.5845905710011721,0.701172009576112,0.6888927491381764,0.5168349351733923,0.4175211670808494,-0.2805396136827767,-0.6141033368185163,0.6804224015213549,-0.1774476980790496,0.09540778724476695,0.5494809341616929,0.9764689300209284,0.8669044156558812,-0.761242211330682,0.6618885537609458,0.4844676065258682,0.19922644179314375,-0.3165716575458646,-0.24349891999736428,0.76147879101336,0.30269994447007775,0.9769405145198107,0.9028492192737758,-0.6547626587562263,0.06275747762992978,-0.19228526903316379,-0.17340618697926402,0.024356884881854057,-0.35829980950802565,-0.7474928158335388,0.09023496462032199,-0.6927598095498979,-0.09839714271947742,-0.8712551430799067,0.014400340616703033,-0.2666028616949916,0.7862838320434093,-0.4970523570664227,0.18426188919693232,0.06438532611355186,-0.26544018974527717,-0.4038794613443315,0.6264672828838229,-0.4830684117041528,0.8396276035346091,-0.21645665168762207,-0.7918200297281146,-0.2697056704200804,-0.30501952208578587,-0.9273478537797928,-0.9061753274872899,-0.35297296941280365,-0.3713059052824974,0.33545649517327547,-0.9125364366918802,0.3147905240766704,0.13345824601128697,0.3321697642095387,-0.6109266700223088,0.6312096132896841,-0.27118624560534954,-0.466580449603498,0.04756711842492223,0.39799500489607453,0.040660190396010876,-0.8057356444187462,-0.09792249882593751,0.17032448248937726,0.8058489151299,0.7723444164730608,0.49612470250576735,0.18890616996213794,0.5499663730151951,0.9421784058213234,0.4476294554769993,-0.8031836515292525,0.6629527607001364,0.08324942784383893,-0.606648629065603,-0.03565864125266671,0.6137371985241771,-0.3368112030439079,-0.2304561659693718,0.018144951201975346,-0.22263042628765106,0.9196628676727414,0.07561665261164308,0.3022951651364565,-0.5210196520201862,-0.25566537817940116,-0.27678073244169354,-0.8670639293268323,0.6485899118706584,0.7030227724462748,0.5235310401767492,-0.28419626131653786,0.4783351575024426,-0.20876622339710593,0.18573418445885181,-0.9223372465930879,0.712208827957511,0.17139128036797047,0.21438570180907845,-0.2135696136392653,0.76686230301857,-0.8223223155364394,0.7034343676641583,-0.41576564172282815,-0.20970266312360764,0.7453711135312915,-0.5791731830686331,-0.39625782473012805,-0.7454953347332776,-0.7993991640396416,-0.04547013575211167,0.336939693428576,0.8762049563229084,-0.7834940771572292,-0.20951329777017236,-0.8697957675904036,-0.9582034265622497,0.09983600629493594,0.6221347474493086,0.5865588402375579,0.18438603775575757,0.2722532763145864,-0.8484967309050262,-0.6365724601782858,-0.07519487850368023,-0.501213840674609,-0.4896050514653325,-0.7762461984530091,-0.8671277547255158,-0.23359200498089194,0.9503156333230436,0.08820264553651214,-0.40850639808923006,0.5324999913573265,-0.689432492479682,-0.047261268366128206,-0.06807129457592964,0.8291232665069401,-0.9136223895475268,-0.16696027293801308,0.07407501759007573,-0.1778606134466827,0.9478145502507687,-0.31769512593746185,-0.5161666050553322,0.4411765234544873,-0.9699016683734953,-0.01803626073524356,-0.31017052894458175,-0.39979966823011637,0.5441548214294016,0.9617517003789544,-0.8767293402925134,-0.2607520534656942,-0.5151255712844431,0.1679393518716097,-0.16785491909831762,-0.8317286353558302,0.1961870901286602,0.7503690863959491,0.8155221370980144,0.9752618665806949,-0.6575193610042334,0.7641038103029132,0.12444108817726374,0.6971050379797816,-0.5451928973197937,-0.5070577645674348,-0.4805399812757969,-0.911650316324085,0.5746927922591567,-0.9553640205413103,-0.173440869897604,0.6230642925947905,-0.566307024564594,-0.9312107171863317,-0.6379290940240026,-0.9891241043806076,0.1860538707114756,0.852221701759845,-0.10523124411702156,-0.1309627890586853,-0.31094597605988383,0.7220171866938472,-0.06800550781190395,0.8405467886477709,0.0062058293260633945,-0.08957184106111526,-0.8786402777768672,-0.35043549444526434,0.3367514107376337,0.5416194656863809,-0.8671208242885768,0.5421996382065117,0.38855090737342834,0.33925124490633607,0.780916849616915,0.5418487614952028,0.4229995836503804,0.07973803766071796,0.5928336381912231,0.7892859247513115,-0.47351399017497897,0.98872732790187,0.3865666124038398,-0.2632815595716238,-0.799233503639698,0.5191439841873944,0.4650036576204002,-0.06352269649505615,0.200268997810781,-0.8699911679141223,0.9296665000729263,-0.08573157340288162,-0.30961600923910737,-0.7694369573146105,0.5433031637221575,-0.782595188356936,0.3989011333324015,0.607667921576649,-0.44002786558121443,0.9706547283567488,0.8408841420896351,-0.21181081654503942,0.9096185606904328,-0.5792137682437897,-0.06669991835951805,0.526183842215687,-0.9324028892442584,-0.008774606510996819,-0.9449499258771539,-0.4785402570851147,-0.5235599782317877,-0.11526605626568198,0.7015067497268319,-0.21458630077540874,-0.9427162948995829,-0.5504239271394908,0.05438559828326106,-0.8726276839151978,-0.8968016388826072,-0.07154178619384766,0.6636191578581929,-0.7400573594495654,-0.3011698625050485,0.875960401725024,0.963251993060112,-0.2609093673527241,-0.29983693547546864,0.8040415248833597,-0.26687385933473706,0.3245741412974894,0.36542662186548114,0.8081744401715696,0.3796256398782134,0.7917283098213375,0.8422167492099106,0.15357201779261231,-0.38629305362701416,0.5515970666892827,-0.6512386174872518,0.1171692032366991,0.08996985713019967,-0.2797439186833799,0.1366625796072185,-0.6573166348971426,0.17750648688524961,-0.42805608082562685,-0.8235992812551558,-0.10733044985681772,0.7640481325797737,0.9609852759167552,0.9504832900129259,-0.5490510752424598,-0.685774200130254,0.7048061406239867,-0.9028826444409788,-0.08854046789929271,0.17664997838437557,0.6156289675273001,-0.026860959827899933,0.6258689831010997,0.7766515724360943,0.7014831625856459,0.12076577451080084,-0.044907552655786276,0.8363791145384312,-0.5514552956447005,-0.034861390478909016,-0.8355589699931443,0.49222353333607316,0.8580333408899605,-0.25763454753905535,-0.8476979294791818,0.20999235194176435,0.6987156555987895,-0.6705773076973855,-0.42195355938747525,0.6722693867050111,-0.7601270074956119,0.47581358905881643,-0.7037428142502904,-0.3442617356777191,-0.3974760212004185,-0.41271960735321045,0.9054667335003614,-0.13115126034244895,0.6902937567792833,0.18537359917536378,0.37099082954227924,0.9896824872121215,-0.9026202671229839,-0.170002237893641,-0.4043432935141027,-0.7148671913892031,0.530919136479497,0.56967748189345,-0.7847301480360329,0.29449246544390917,-0.2584486729465425,-0.28615864273160696,0.960236425511539,-0.0001735985279083252,0.3604892371222377,0.1238905405625701,-0.010325129609555006,0.22327409917488694,0.36433640867471695,0.11743385717272758,-0.45246470207348466,0.20580792799592018,-0.6403941279277205,-0.9849006505683064,0.14619177486747503,0.1403866703622043,-0.11671418836340308,0.03766602789983153,0.2516643521375954,0.6047180867753923,-0.5253273164853454,0.11686813738197088,-0.5312847923487425,-0.9466624702326953,0.05591235077008605,-0.1542349737137556,0.3952014953829348,-0.9433141741901636,-0.9437622241675854,0.5025035683065653,-0.27927767345681787,-0.8467739797197282,0.7986118379049003,-0.4193728771060705,0.5723486826755106,0.0150068998336792,-0.9523164639249444,0.59618752123788,0.24328295327723026,-0.9189482512883842,-0.6664403770118952,0.9308412736281753,0.010937733575701714,0.045516740530729294,0.8877422162331641,0.9541488126851618,-0.45492222672328353,-0.21428811457008123,0.49635251704603434,0.8439660659059882,-0.8538643717765808,-0.3996371030807495,-0.763577064499259,-0.47766946349292994,-0.6188852204941213,0.9279275573790073,-0.9231517221778631,0.011813617777079344,-0.39422554848715663,0.9075576248578727,-0.8811703431420028,-0.00779753178358078,-0.7617306276224554,-0.32117512449622154,-0.826443581841886,0.6545865344814956,-0.7708803000859916,-0.5591762396506965,-0.526513374876231,0.051834086421877146,0.5645002825185657,-0.5928396135568619,-0.5229194848798215,0.6773006333969533,0.14334296947345138,0.678754617460072,0.5590536501258612,0.234985311049968,-0.5941167697310448,0.7315962603315711,-0.30510167963802814,0.20155687304213643,-0.5262761390767992,0.16037263628095388,0.4934638449922204,0.6149676623754203,-0.8496150537393987,0.691543500404805,0.26034740870818496,-0.40123735927045345,-0.26927497144788504,0.8838822469115257,-0.4489534944295883,-0.6548446477390826,-0.6074686162173748,-0.12035933928564191,0.6612868611700833,-0.7445117831230164,-0.47253008373081684,-0.35860899463295937,0.41396020725369453,-0.4543774644844234,-0.710499620065093,-0.18702588370069861,-0.3091155905276537,0.07278928812593222,-0.5089901313185692,0.21404020581394434,-0.5641179094091058,0.8233890156261623,-0.852777311578393,-0.6222608420066535,-0.11898541264235973,0.028585494030267,0.1190770948305726,-0.5234443075023592,-0.6061508269049227,0.4920870214700699,0.4617875972762704,0.13615403836593032,0.9848601296544075,-0.7319624107331038,0.8873284156434238,0.07060335017740726,0.7400834304280579,-0.36058591213077307,-0.6914743101224303,0.8129865662194788,-0.13769137766212225,0.20335960434749722,0.4379581194370985,0.5355779780074954,0.941324383020401,-0.7295196219347417,0.45909322146326303,-0.7476022527553141,0.11086638923734426,0.9073353745043278,0.23247741535305977,0.7789404047653079,0.7013087938539684,0.6056509362533689,0.2989212884567678,0.4944621017202735,-0.29714200645685196,-0.15070311585441232,0.23510636994615197,0.482843070756644,-0.4814622006379068,0.7475904091261327,-0.7228276375681162,0.08350575948134065,0.0072845821268856525,0.7152527240104973,0.9027781821787357,0.014764687977731228,0.11332613602280617,-0.4707831717096269,0.7769518601708114,0.02098031807690859,-0.19809798803180456,0.7405627155676484,0.33887223480269313,0.583892600145191,0.823775100056082,-0.09345691557973623,0.8825740930624306,0.49829275254160166,0.7795892562717199,-0.23306729551404715,-0.8444331716746092,0.33489957684651017,-0.8929137573577464,0.48037788923829794,-0.035367893520742655,0.8582005421631038,-0.30224928073585033,0.24077172949910164,0.3985982555896044,0.3862217194400728,0.2075101095251739,0.7074572560377419,-0.3358608381822705,0.11832240968942642,0.8438959703780711,-0.47125410940498114,-0.0920918919146061,0.5890438985079527,0.0772560597397387,-0.008906371425837278,-0.7259625988081098,-0.7290110681205988,0.5597389899194241,-0.04734130343422294,-0.23234238661825657,0.7871542307548225,0.03475628746673465,-0.9630685462616384,-0.9540644930675626,0.7208603252656758,-0.7950356933288276,-0.4657384934835136,0.19581490196287632,0.3375133089721203,0.22297812812030315,0.15735488291829824,0.6827270365320146,-0.7711546714417636,-0.4416016638278961,-0.12637728499248624,-0.31381226936355233,0.8774994472041726,0.7348708906210959,-0.7203824855387211,-0.36345548601821065,-0.1253942265175283,0.13698680978268385,-0.800929669290781,-0.4037298858165741,-0.8436851347796619,-0.13560936320573092,-0.0029187584295868874,-0.48688821122050285,-0.5410222020000219,0.3816815484315157,0.35257513215765357,-0.9270209609530866,-0.6027216813527048,-0.9408247261308134,-0.6285795201547444,0.10836137225851417,0.7071009855717421,0.8606296060606837,0.618886913638562,-0.44042111467570066,0.8732120785862207,0.5529204178601503,-0.7566430470906198,-0.6071001486852765,0.06365120224654675,-0.9686702517792583,-0.24228552030399442,0.05603042524307966,0.36886799428611994,-0.5400498518720269,0.2120169484987855,0.44709841487929225,-0.7736044996418059,0.7386499843560159,-0.9494787650182843,0.6129818479530513,-0.9597286926582456,-0.03915075259283185,-0.934534355532378,-0.43896703887730837,0.3645743876695633,0.7236002017743886,-0.6052460339851677,0.906273468863219,0.16354434750974178,0.9248091890476644,-0.5688107605092227,0.48396137403324246,0.396961722522974,0.39059763960540295,0.9890658697113395,-0.07692202599719167,-0.2722059362567961,-0.8472343059256673,-0.8696209406480193,-0.7460939628072083,0.8093275278806686,0.3771486459299922,-0.6634944472461939,-0.2566127716563642,0.8489387244917452,-0.9952860353514552,0.871719784103334,0.792792655993253,-0.0530056175775826,-0.7306050318293273,-0.6181118818931282,-0.48320019990205765,0.5522500872612,0.5036402838304639,-0.8943247152492404,0.3817863059230149,0.6320533184334636,0.2522368826903403,-0.08764902129769325,0.21351656038314104,0.5969743202440441,-0.14931922499090433,0.914307797793299,0.3747355923987925,-0.12526364205405116,0.73105243826285,-0.24344623181968927,0.6705443756654859,0.2407618430443108,-0.4113785312511027,-0.35111991642042994,-0.9455957282334566,0.4440869214013219,-0.9669865733012557,0.8259659796021879,0.7299373326823115,-0.5056066014803946,-0.2011469742283225,-0.43515681428834796,0.8823272860608995,0.6065332819707692,-0.9869752302765846,0.3506562300026417,-0.995673690456897,0.004170180298388004,-0.5330649358220398,0.5598496720194817,0.6085057589225471,0.3802406187169254,0.5012334454804659,0.3007211834192276,-0.10695300390943885,-0.24302955577149987,0.14680176740512252,-0.6419271198101342,-0.8130710376426578,0.9461270873434842,-0.16381317237392068,-0.38813820853829384,0.46963986475020647,0.5328991203568876,0.09770979965105653,-0.7842027810402215,-0.32985901227220893,0.9349997201934457,0.8349777837283909,0.03336073039099574,-0.557341402862221,0.735353659838438,0.5852118926122785,-0.040031572338193655,0.4772795937024057,0.40899878181517124,0.054856933653354645,0.11637249542400241,-0.4313003905117512,0.4693290898576379,-0.7349197561852634,-0.5585202937945724,0.7678849450312555,0.8806514502502978,-0.9146179188974202,-0.731807800475508,0.9527873680926859,0.7956676110625267,0.011786582879722118,-0.04451338900253177,0.15462781861424446,-0.30111160036176443,-0.8348420122638345,-0.10791154392063618,-0.44246363639831543,0.691162439994514,0.33233770448714495,0.5996145727112889,0.9432771736755967,0.10830822493880987,0.7411332023330033,-0.08668218646198511,0.9695787909440696,-0.07738257013261318,-0.7952909325249493,-0.630016831215471,-0.2910248623229563,0.6784238466061652,-0.9411592758260667,-0.6535897562280297,0.8092449405230582,-0.05996800493448973,-0.9400496194139123,-0.6442137332633138,0.49803164321929216,0.5196353239007294,0.7422518255189061,0.25133420526981354,0.6721814074553549,0.5070816199295223,0.7265930566936731,0.2903590020723641,0.3367510596290231,0.5549924909137189,0.5145823517814279,-0.5971223651431501,0.18662772700190544,0.8036885363981128,0.37234760634601116,0.695797928608954,-0.3976645227521658,-0.2498863162472844,0.7865092726424336,0.27308896370232105,0.3950655199587345,-0.08732071099802852,0.9869258436374366,-0.0710203549824655,-0.510184608399868,-0.14754414791241288,0.13727153651416302,-0.43895642552524805,-0.27370751928538084,-0.7441565128974617,0.31068640761077404,-0.12593891704455018,0.8836501105688512,0.812786381226033,0.4919046605937183,-0.14807034330442548,0.4593222173862159,0.0113198421895504,0.8207934107631445,0.4804336712695658,0.42153766890987754,0.981074164621532,-0.5870893578976393,-0.7278835028409958,0.038261532317847013,0.3064455329440534,0.11461587948724627,-0.794464307371527,-0.7341611697338521,-0.08541060145944357,-0.2316778600215912,0.9321655435487628,0.22149359481409192,0.45869057485833764,-0.6682720580138266,0.7892856448888779,-0.05817247461527586,-0.6115837451070547,0.22924546105787158,0.6280192076228559,0.6782027645967901,0.686242563650012,-0.8427970786578953,-0.9238271908834577,-0.4289573193527758,-0.01386923249810934,-0.7215239088982344,0.14441865123808384,0.8168514496646821,-0.03401858685538173,0.3840894433669746,0.1746885241009295,-0.21752840280532837,0.2783549763262272,0.7251921710558236,0.2657634406350553,0.33110461104661226,0.5700642354786396,0.6653038882650435,0.7640898153185844,0.6300046630203724,-0.715613926295191,-0.8916053273715079,-0.3935447409749031,-0.8913674177601933,0.4570729243569076,-0.7626507021486759,0.1460926104336977,-0.4329111366532743,0.40690287481993437,0.42390297818928957,-0.4242383665405214,0.8531809994019568,-0.16686698654666543,0.1473349300213158,0.6938270558603108,0.3686853009276092,-0.973443164024502,-0.9352213367819786,-0.2750801653601229,0.959632970392704,-0.520506985951215,0.2610532636754215,-0.7257391205057502,0.6122584994882345,0.7949711354449391,-0.4013784369453788,-0.8164439173415303,-0.8915138631127775,0.8221944505348802,0.36242996202781796,-0.7386438543908298,0.7769629578106105,-0.5057047046720982,-0.5184326530434191,-0.857686722651124,0.3406046577729285,0.8749958388507366,-0.7937404690310359,-0.41140024829655886,0.3835387551225722,-0.7919783820398152,0.8010850073769689,0.45897191716358066,-0.6914523742161691,0.8776310472749174,0.6005688677541912,-0.11507204733788967,0.5966703006997705,0.07535587390884757,-0.6683666300959885,-0.14008585829287767,0.8946621743962169,-0.07017789501696825,0.09332985430955887,0.2844204045832157,-0.17764342110604048,0.31358636915683746,0.6445371489971876,0.18080335156992078,0.9190264409407973,0.16659940127283335,-0.9386981297284365,-0.3203736413270235,0.5937914252281189,0.6795621276833117,-0.34283037669956684,-0.15697644045576453,-0.9129878068342805,-0.5389149193651974,-0.5658390121534467,0.6103855958208442,0.17350767785683274,-0.8848079522140324,-0.7894478118978441,-0.11845489963889122,0.2836475013755262,-0.024545392487198114,-0.41175562934949994,0.6501017077825963,-0.1250920258462429,-0.21578973904252052,-0.4443805105984211,-0.9603704130277038,-0.6391796399839222,-0.9614451709203422,0.5307257259264588,-0.20199349476024508,0.24430002365261316,-0.6903444221243262,-0.7863703356124461,-0.3621692289598286,-0.4517121044918895,0.28927383944392204,-0.33985321410000324,-0.6150497356429696,-0.06200139783322811,0.33891133312135935,0.6660019909031689,-0.29255379689857364,0.30287044448778033,0.9498108690604568,0.43540653260424733,-0.5730945197865367,0.8912156098522246,-0.59093709429726,0.9807718354277313,-0.8778833011165261,0.413121669087559,-0.9837612062692642,0.6598607338964939,0.4978942545130849,-0.5804401864297688,-0.3742271172814071,-0.2733357837423682,0.5719867506995797,0.14242251589894295,0.3895811727270484,-0.9551196093671024,0.4723568595945835,-0.9730730340816081,-0.021296878345310688,0.9836416468024254,0.6669693989679217,-0.8093681274913251,-0.5806125430390239,0.1608162266202271,0.6273473077453673,0.331768496427685,0.5396363097243011,-0.6316036004573107,0.40317580103874207,0.2412446392700076,0.9934377274475992,0.11427946481853724,0.48908771201968193,-0.4048460489138961,0.6326366071589291,0.5679525500163436,0.45398930599913,0.7830224819481373,0.9182638628408313,-0.9760885168798268,-0.8209407539106905,0.0680890022777021,-0.8053374695591629,0.5237457654438913,0.3687604102306068,-0.5222536609508097,-0.1775879985652864,0.13765895320102572,-0.6775448052212596,0.38090998446568847,-0.7342887502163649,-0.8270969786681235,-0.5395535035058856,-0.6114442804828286,-0.14835779974237084,-0.25022496096789837,0.32434537494555116,0.678653840906918,-0.8711618585512042,0.010309772565960884,-0.8784631723538041,0.15409101359546185,-0.08665876416489482,-0.5238587353378534,0.9702007761225104,0.39077647030353546,-0.4456264991313219,-0.5740795000456274,-0.8489188007079065,0.2102365531027317,-0.5005878061056137,-0.43025980331003666,0.7792730880901217,0.5083254431374371,0.33308129804208875,-0.1818679296411574,-0.755820591468364,0.362805281765759,0.9194145062938333,0.2308778311125934,-0.03651935700327158,0.21378175634890795,0.7101106410846114,-0.7217219029553235,-0.3771198191680014,0.2043771157041192,-0.016799809876829386,0.16834878735244274,-0.6884047533385456,0.436698358040303,0.7371676196344197,0.9247217145748436,-0.1061588921584189,0.8545629177242517,-0.46223660092800856,0.3692239122465253,-0.675832208711654,0.1400633491575718,0.6488905125297606,0.7360963700339198,-0.3983705574646592,-0.7352321804501116,-0.5504852263256907,-0.4011041158810258,-0.9725380856543779,-0.7588629866950214,0.38282352639362216,-0.16539772553369403,0.820539512205869,0.3278951505199075,0.04425492649897933,-0.7597665833309293,-0.5581849860027432,0.43227798119187355,-0.7734564659185708,-0.3457621610723436,0.7288993122056127,0.2710922039113939,-0.5559752159751952,-0.39036309253424406,0.6266227518208325,-0.7111841021105647,-0.5010639745742083,-0.44513193471357226,-0.1221290766261518,0.7633456136099994,0.21722990227863193,-0.32435149140655994,-0.35367918107658625,0.9643698111176491,0.6627955287694931,0.571014016866684,-0.6305307461880147,-0.4133310099132359,0.7989182430319488,-0.43923899438232183,0.6659505600109696,-0.35528458189219236,-0.2986963549628854,-0.19669950986281037,-0.18461170326918364,0.7548270528204739,0.7974260719493032,-0.15957391634583473,-0.26787951635196805,-0.45007150480523705,-0.34260493656620383,-0.8164191991090775,0.984378928784281,0.7583744102157652,-0.8355066571384668,-0.025418641045689583,0.20863260561600327,0.4217884438112378,-0.2994326581247151,0.9570575654506683,0.3277782234363258,0.09366852650418878,-0.2913822643458843,-0.21870810678228736,0.40951057709753513,0.5526188570074737,0.9627078915946186,-0.9812284545041621,-0.40811080811545253,0.042602930683642626,0.4141631512902677,0.942651444580406,-0.5398356500081718,-0.8477725144475698,0.06659096432849765,0.3924868665635586,0.2799281137995422,0.10528363101184368,-0.502395885065198,-0.38696869695559144,-0.4733192678540945,0.9707071981392801,-0.06245128344744444,0.20828936947509646,-0.916678199544549,-0.28722809720784426,0.16744975140318274,0.08911067713052034,-0.03796725859865546,-0.8099481402896345,-0.8006339389830828,-0.40314123360440135,-0.9019161504693329,-0.3121798322536051,0.6201260183006525,-0.278267003595829,0.44883252400904894,0.6421187948435545,0.8717392333783209,-0.7823120011016726,-0.15859582368284464,-0.8535617566667497,0.6738284290768206,-0.12813754891976714,0.361351422034204,0.43049678346142173,-0.07443533046171069,0.3972718045115471,-0.5732815722003579,-0.6720354636199772,0.18188416585326195,-0.09931680653244257,-0.22186291916295886,0.8535913499072194,-0.9876336329616606,0.5520590059459209,-0.736792806070298,-0.9666076959110796,-0.39637708757072687,-0.2804167438298464,0.6148581318557262,0.24266659608110785,0.8364085257053375,0.24134970642626286,-0.6666927938349545,0.5083821793086827,-0.4414069140329957,-0.3063148008659482,0.4033810649998486,-0.1373448702506721,-0.7402427638880908,0.05077116237953305,0.3253781870007515,-0.4743538801558316,-0.914659125264734,0.5668138959445059,0.9355195891112089,-0.3753813896328211,0.4206967488862574,-0.005945258308202028,-0.3334376127459109,0.227291124407202,-0.2626694766804576,-0.29998455150052905,-0.5687839523889124,-0.1258960491977632,0.5316050318069756,0.13949445774778724,0.9444883856922388,-0.3406176515854895,0.938981045037508,-0.8326720651239157,-0.3432661280967295,0.9803223828785121,0.7876240247860551,0.5369377466849983,0.6934260530397296,0.5900532226078212,-0.10995098296552896,-0.8463675179518759,-0.27255365578457713,-0.6643418283201754,0.724645032081753,0.8872719360515475,0.8899367018602788,0.7896125190891325,-0.5009772046469152,-0.5875873505137861,0.40976718440651894,-0.8751990105956793,-0.7446767799556255,-0.47534110583364964,0.4107887987047434,0.7348076971247792,0.374284952878952,0.9196417960338295,-0.2626089798286557,0.15166993299499154,0.817235535942018,-0.4607172543182969,-0.6404628497548401,0.7996639609336853,-0.2096383306197822,0.4483217182569206,-0.8531822310760617,-0.3732795570977032,0.9081410933285952,-0.9239702853374183,-0.4347715452313423,-0.02855116268619895,-0.548807367682457,0.03534410707652569,-0.2321294671855867,0.9382618744857609,0.1212132633663714,0.6928842482157052,-0.9413622249849141,-0.4456138303503394,-0.809145943261683,0.5888770781457424,-0.9699508044868708,-0.012859672773629427,-0.3357854811474681,0.9856120650656521,-0.4134064610116184,-0.8785554505884647,0.37566058803349733,-0.5264617907814682,-0.5405775750987232,0.3487562285736203,-0.5916982227936387,-0.5347452778369188,0.5120617737993598,0.17806148156523705,-0.07258922653272748,-0.46754844626411796,-0.20614401623606682,-0.6554839159362018,0.06570602906867862,-0.9747230964712799,-0.38346154848113656,-0.7244484913535416,-0.07894125580787659,0.5404996308498085,0.1073741503059864,0.8271155846305192,0.0787644307129085,-0.22119911713525653,-0.901328188367188,-0.7770907329395413,0.13711373740807176,-0.53422159422189,-0.7921763295307755,0.5670210486277938,0.5926977409981191,0.33582571474835277,-0.9924083412624896,0.3112843898124993,0.49322045175358653,-0.18585411179810762,0.3961631287820637,-0.19037874741479754,-0.3394026458263397,0.9500064826570451,-0.48985015554353595,0.8540925267152488,0.6540536563843489,0.572676301933825,0.45093966368585825,-0.8468763511627913,-0.7048552394844592,0.07374941511079669,-0.5200410336256027,0.7271941909566522,-0.9620094485580921,0.9292032518424094,0.462809085380286,-0.5009460998699069,-0.8236185112036765,0.21147781098261476,-0.7278532041236758,-0.26590155716985464,-0.6209168955683708,0.16694099362939596,-0.7148285657167435,0.6707462668418884,0.42289643501862884,0.7758037564344704,-0.9279659148305655,0.8067560819908977,-0.24559114314615726,0.2216326273046434,-0.4182645585387945,0.23355644568800926,0.40823447331786156,0.7353710271418095,-0.32387357065454125,0.13054056791588664,0.12487559532746673,0.6804864937439561,-0.09417125396430492,-0.962166819255799,-0.4529454419389367,0.2881466788239777,0.8998257550410926,0.8081907671876252,-0.5172373186796904,-0.812559996265918,-0.04848595103248954,0.3490405441261828,-0.9135786783881485,0.43474548775702715,-0.5845655878074467,0.6634348020888865,-0.5946091641671956,0.40124316420406103,0.5646450635977089,-0.9745227741077542,-0.9220848609693348,-0.1381807536818087,0.5727952867746353,0.2847133530303836,0.387115444522351,0.8694103718735278,0.6368977301754057,-0.5518366969190538,0.3099477239884436,-0.07155770529061556,0.7823563311249018,0.30930859968066216,0.4290647297166288,0.9628637917339802,-0.5113264448009431,0.9044019421562552,0.6253106193616986,-0.4242880237288773,0.611132291611284,0.25828536599874496,-0.3206522921100259,0.7572349943220615,0.3401647787541151,0.5874774768017232,-0.4289129306562245,-0.5860130684450269,-0.3386331801302731,-0.5665735732764006,-0.14114944450557232,0.5503925629891455,0.135917155072093,0.21367869898676872,0.538453321903944,-0.2633621790446341,-0.8070859028957784,0.27525147842243314,0.5687006283551455,-0.9111500610597432,-0.8186707301065326,-0.2171653788536787,-0.9325033645145595,-0.23055542958900332,-0.2599109732545912,0.6101983087137341,-0.3970685675740242,0.24303384171798825,-0.5273248576559126,0.7761680018156767,0.7017449047416449,-0.7567534246481955,0.8356037749908864,-0.8243385585956275,0.0796986510977149,0.7512843050062656,0.43385865772143006,-0.5103938556276262,0.35434805788099766,0.8085774905048311,-0.7822409998625517,0.3722865949384868,0.6687007541768253,-0.2351815029978752,-0.693228027317673,0.5730604417622089,-0.7117657186463475,-0.7254781392402947,0.5354377487674356,0.01145363599061966,-0.4305465086363256,0.1804509572684765,0.6015146193094552,0.5307676000520587,-0.725632581859827,0.20032569766044617,0.04362215753644705,-0.5712173227220774,0.08344854088500142,-0.07508604554459453,0.6054739244282246,0.44024959206581116,-0.3557011764496565,-0.6206086445599794,-0.901511843316257,0.2797019495628774,-0.6385135040618479,-0.47242704685777426,-0.8720437586307526,0.8400718634948134,0.9151475108228624,0.04245398286730051,-0.5916215176694095,-0.9953390951268375,0.32933636475354433,-0.5149422935210168,0.24391518672928214,-0.6457706606015563,-0.8388604065403342,0.10726314876228571,-0.5040400489233434,-0.7919976660050452,-0.05381111754104495,0.006135253235697746,0.428086188621819,-0.04829566180706024,0.6133671132847667,0.41587014496326447,-0.3531920863315463,-0.7511871103197336,-0.4193604150786996,-0.4589894050732255,0.5632428932003677,-0.9007449699565768,0.2804654212668538,-0.580417001619935,0.2045691255480051,0.2671903814189136,-0.3760521998628974,-0.17591484496369958,0.7175025125034153,0.6531187542714179,0.7981121935881674,0.9902327717281878,-0.047590131871402264,-0.2822013455443084,0.49984225956723094,-0.35967625584453344,-0.02179421577602625,-0.7383970050141215,0.06448357133194804,-0.9060963192023337,0.9282994088716805,0.4506306145340204,-0.2507394994609058,0.5179036376066506,0.383718503639102,-0.29831608617678285,-0.4823352321982384,0.6921011027880013,-0.48268313938751817,-0.10197668056935072,0.03343463968485594,-0.3344728793017566,-0.6494884327985346,-0.82478959672153,0.0503645152784884,-0.7135168150998652,0.9221270433627069,0.967664691619575,-0.11620434140786529,0.04204117925837636,0.30985285248607397,0.4164448492228985,0.5400489615276456,0.3986993310973048,-0.9135813796892762,0.20412063412368298,-0.4429702600464225,0.9383274405263364,0.04737225780263543,0.1353418636135757,0.15355984354391694,-0.14639819040894508,-0.7390932803973556,0.6699370089918375,0.12585028959438205,-0.15537306247279048,0.5547645376063883,-0.4792769276537001,0.7387760635465384,-0.8809907296672463,0.9131768373772502,0.02283585863187909,-0.01648640213534236,-0.035373724065721035,0.3586813001893461,0.9965788098052144,-0.38275564229115844,-0.510664826259017,-0.48755414970219135,0.5363581432029605,0.9900751658715308,-0.0946410745382309,0.009267791174352169,-0.5738595128059387,0.6631895620375872,-0.4266946823336184,0.32464139349758625,-0.21878293622285128,-0.6375728170387447,-0.9987833173945546,0.38172143464908004,-0.06574642471969128,-0.045691028237342834,-0.4550850270316005,-0.7993223811499774,0.6525677777826786,-0.6195670999586582,0.7131996359676123,0.05788993835449219,0.7850043708458543,0.18124394165351987,-0.04656783677637577,-0.9489581417292356,-0.4056813786737621,0.7775276433676481,-0.876472189091146,-0.9201176553033292,0.37376917200163007,0.8145977016538382,0.9753502937965095,0.6062783449888229,0.5015942119061947,0.5370001187548041,0.9416610719636083,-0.7775358422659338,0.619793753605336,0.18044925993308425,-0.6673550815321505,0.1710625309497118,0.3039176077581942,-0.26850737165659666,-0.2971383142285049,0.5831630057655275,-0.5106746591627598,-0.8097560377791524,0.48376696510240436,0.743722090497613,-0.8431590995751321,-0.3603760665282607,0.2580938986502588,0.005481332074850798,0.25277026696130633,0.43708615889772773,-0.06973446952179074,0.024347432423382998,-0.6884059454314411,-0.204956928268075,-0.594775433652103,-0.9278160822577775,0.8044683542102575,-0.05712789809331298,0.18681597197428346,-0.6055354820564389,0.7853164076805115,-0.20243991212919354,-0.598016154486686,0.5997160752303898,-0.3728969767689705,-0.6001606653444469,-0.1238334490917623,-0.5670942086726427,-0.7487586745992303,-0.9605749840848148,-0.9176035183481872,0.5817605843767524,0.3758343802765012,0.20697086118161678,-0.8359788209199905,0.14116830145940185,0.4282274506986141,0.4515986922197044,0.429285803809762,-0.4456339469179511,0.11691620759665966,0.48602719558402896,-0.28159262193366885,0.37464087503030896,0.120057238265872,-0.11253651464357972,0.5250004762783647,-0.9859615643508732,-0.6545670828782022,0.8726362935267389,-0.532826067879796,-0.8806762984022498,0.760810982901603,0.19308257661759853,0.9390693535096943,0.1778244930319488,0.5183378136716783,0.870513285510242,0.7542791771702468,0.40038798144087195,-0.5581712080165744,-0.5999087942764163,-0.08835189323872328,-0.363391085062176,0.8076566681265831,-0.5590056511573493,0.14299970725551248,-0.6268701259978116,-0.7629957096651196,0.08349387673661113,0.757757116574794,-0.5098441881127656,0.42764068907126784,-0.5827726423740387,-0.8576742564328015,0.9414545656181872,0.6530454936437309,0.3130447259172797,0.30376193951815367,0.04450857639312744,-0.1507261609658599,-0.2573445965535939,-0.8471546159125865,0.5564637379720807,-0.4769477886147797,-0.4960647108964622,0.4954325961880386,0.5607054326683283,0.6647938243113458,-0.04104428552091122,-0.6829152996651828,-0.15020820405334234,0.8016497786156833,0.8779122354462743,-0.1154995234683156,-0.7840592879801989,0.3403437687084079,0.6611355440691113,-0.3802237962372601,-0.525106058921665,0.24972603749483824,0.27429308369755745,0.3299682610668242,0.6434043147601187,-0.9413813529536128,0.7885045860894024,0.4106311360374093,-0.6396057973615825,-0.8593904408626258,0.309308179654181,0.06238238234072924,0.585344968829304,-0.6215679878368974,-0.3672539200633764,0.4313409077003598,0.32359499437734485,-0.9720392995513976,-0.9987039738334715,-0.6858670483343303,0.6557449554093182,-0.168517978861928,-0.9936086125671864,0.5794720132835209,-0.5143919214606285,-0.05411039385944605,-0.8315781564451754,-0.2487861355766654,-0.9063774426467717,-0.09026562981307507,-0.2689699693582952,-0.5282941218465567,0.9951318679377437,0.92448985343799,0.6004299107007682,-0.3960163537412882,0.2566105183213949,0.09396057715639472,0.6901130480691791,0.565781042445451,0.2749399128369987,0.12926880549639463,0.15327703580260277,-0.369883781298995,-0.5547968246974051,0.7990077631548047,0.9253144357353449,0.6293528671376407,-0.6631862474605441,0.7288049203343689,-0.023896971717476845,0.5968234757892787,0.8462888901121914,-0.6516269613057375,-0.35480207297950983,0.5546414358541369,-0.013054207898676395,0.8915906795300543,-0.5293395291082561,0.9702223124913871,0.6405312963761389,-0.1987831573933363,-0.5234742606990039,0.26392466854304075,-0.6143485438078642,0.4155403939075768,-0.09259048756211996,-0.1762533439323306,-0.8448463995009661,0.7273942166939378,0.648669839836657,0.6128421667963266,-0.8151137572713196,0.7318187830969691,-0.7881209873594344,-0.25386283826082945,0.11001923913136125,-0.6731472574174404,0.03693229705095291,-0.4422199302352965,-0.7491154046729207,0.6156345810741186,-0.13733566738665104,0.5498213227838278,0.8880587774328887,-0.5864555709995329,0.38083297945559025,-0.8409346975386143,-0.19861066853627563,-0.9415824399329722,-0.1261830455623567,-0.9044111757539213,-0.7005124911665916,-0.3233725856989622,-0.46000918420031667,0.31965461233630776,-0.7416857606731355,0.8248702469281852,-0.2537154611200094,-0.030109537299722433,0.16112043429166079,0.6447660266421735,-0.5733216688968241,0.28912971168756485,-0.36214649816975,-0.3600321915000677,-0.39239290403202176,0.5404479005374014,0.7642987403087318,-0.06635281536728144,-0.9343908303417265,-0.03138021333143115,0.49699371634051204,0.964949132874608,-0.527802356518805,0.19314313121140003,0.25289395870640874,0.8776067746803164,-0.5015194746665657,0.7876809146255255,-0.547128810081631,-0.7900020531378686,-0.11671613249927759,0.403791606426239,0.15960160130634904,0.09501188108697534,0.2658307580277324,-0.24836784740909934,0.9429914015345275,0.9819684424437582,-0.5579321826808155,0.7639035256579518,0.5343006327748299,0.8228325573727489,0.3166636014357209,0.6288302470929921,-0.5166209493763745,-0.22858587326481938,0.4484086995944381,0.9532161233946681,-0.2580440999008715,-0.9460301212966442,0.72810816206038,-0.7256753873080015,-0.9756078976206481,-0.9245373359881341,-0.4278633906506002,0.3291312609799206,-0.6771410317160189,-0.8536115703172982,-0.8743000510148704,0.8579685185104609,-0.7713011563755572,0.6515040653757751,0.8909484436735511,0.862608281429857,-0.03828714927658439,-0.3422917351126671,0.40528615145012736,0.3934887512587011,-0.985927757807076,0.28368655731901526,0.11433062748983502,0.0021658558398485184,0.24186790455132723,0.9624539124779403,0.5560218757018447,-0.9859116594307125,0.7114807176403701,-0.6938739055767655,0.7441565911285579,0.13597990991547704,-0.49001400731503963,-0.7943889172747731,-0.27181982761248946,0.531556760892272,0.2522433577105403,-0.5411180513910949,0.1269567715935409,0.49798187147825956,-0.9239639760926366,-0.2204024395905435,-0.738498967140913,0.7499547763727605,0.6416101483628154,-0.4431780846789479,0.7006223271600902,-0.3219223767518997,-0.45056310947984457,0.7118692840449512,0.802505417726934,0.7678511627018452,-0.6762626683339477,0.9621219923719764,-0.007909886538982391,-0.4655937501229346,-0.9864068818278611,-0.7693776497617364,0.4121300131082535,0.8697889866307378,0.6802319367416203,0.14622864592820406,-0.36018273141235113,0.01946487696841359,0.10552627872675657,-0.934490027371794,0.9536684490740299,-0.6490097506903112,-0.3160064173862338,0.08992785075679421,-0.3463304163888097,0.8056900287047029,0.6627493342384696,0.8524039681069553,-0.23909063218161464,0.3114654440432787,0.10995231987908483,-0.8751294943504035,0.3141481503844261,0.4117753473110497,0.927860040217638,0.8878992460668087,-0.5235093277879059,0.09350324841216207,-0.7359071597456932,0.6581265782006085,0.7310264967381954,0.7394087607972324,-0.3147252509370446,-0.3678476973436773,0.0008230814710259438,-0.8977674492634833,0.890007137786597,0.24268689146265388,0.6984043507836759,0.7167724980972707,0.12975940108299255,-0.4055274040438235,-0.2973959851078689,-0.552904486656189,0.4277252326719463,-0.08346970146521926,0.5448233922943473,0.6259897672571242,0.01012521144002676,-0.6464400123804808,-0.5463226018473506,-0.5609187814407051,-0.9348191330209374,0.07513034995645285,-0.6113665425218642,-0.2285024644806981,0.9609290361404419,0.8003681772388518,-0.5364946811459959,0.36399014201015234,-0.936574106104672,-0.09101166110485792,-0.6382210943847895,-0.05657154833897948,0.6869775746017694,-0.6812580716796219,-0.46215222543105483,0.4139197482727468,-0.9667216720990837,0.9840282206423581,-0.6557693923823535,-0.38271972769871354,-0.9378954754211009,0.6402200181037188,0.6679937168955803,-0.7688831267878413,0.03416517283767462,-0.539432215038687,-0.5371285988949239,0.31374446069821715,-0.5328693161718547,-0.8916876898147166,-0.07863947656005621,0.7636893480084836,0.26783747179433703,0.9812823506072164,0.03708592476323247,0.8595468536950648,0.0015022540464997292,-0.7239017267711461,0.08890070533379912,0.38558770809322596,0.6746419556438923,0.9335958799347281,-0.3631952260620892,0.6061069183051586,-0.10580261936411262,-0.6130982902832329,0.04112732969224453,-0.5863211886025965,-0.5209677210077643,0.1126522645354271,0.9553026440553367,0.7051104730926454,0.9743021675385535,-0.37862574541941285,0.04126395983621478,0.42216276517137885,0.8519469848833978,0.09195473976433277,-0.36421036487445235,-0.08144709281623363,0.9526961105875671,0.9710977957583964,-0.6654252931475639,-0.16640185052528977,0.39048321079462767,0.01560642383992672,0.8923689918592572,0.6776909329928458,0.2370517081581056,0.32215461088344455,-0.061753617599606514,0.49793702736496925,0.7595214559696615,0.21050236700102687,0.4170243553817272,0.08574798936024308,0.7762987744063139,-0.11470600124448538,-0.47087251860648394,0.517334736417979,0.16560117108747363,0.07143495697528124,0.7019627788104117,0.9320372422225773,0.08437518822029233,0.07287687761709094,0.10658755665645003,-0.6965029127895832,0.897088838275522,0.06431136233732104,-0.09226373536512256,0.42923853639513254,0.1060402886942029,0.24148886231705546,-0.24297890486195683,0.1040432839654386,0.6079207640141249,0.608529890421778,-0.20881203329190612,-0.08176643028855324,0.3880669455975294,-0.9350148234516382,0.984379499219358,0.4875848931260407,-0.4919442757964134,0.9028161489404738,-0.8075953796505928,0.2357963565737009,-0.23179581156000495,-0.887031355407089,0.4585580243729055,0.9397820513695478,0.8824301054701209,0.9350117817521095,0.19245251780375838,-0.17889860784634948,-0.5519848824478686,-0.9851179476827383,0.7923397831618786,-0.35037132911384106,-0.8627614225260913,0.1720165740698576,0.14070635242387652,0.5072288671508431,0.19877448258921504,-0.9525587516836822,0.29374885745346546,-0.51167061785236,0.1939851944334805,-0.23149993270635605,0.6732421442866325,-0.5269935014657676,-0.897285109385848,-0.12098643695935607,-0.358266603667289,0.6097640278749168,0.7026795824058354,0.44056800892576575,-0.6312752161175013,0.2490302729420364,-0.7718994333408773,-0.15075167268514633,0.7318704198114574,0.8128690104931593,0.1663940860889852,-0.8367202263325453,-0.8298972169868648,-0.4240056346170604,-0.6873714262619615,-0.9207496871240437,0.5687919054180384,0.34023024048656225,-0.3347050240263343,0.5411986601538956,0.24121603602543473,0.5683887167833745,-0.7513442821800709,0.17065804777666926,0.02217134367674589,-0.9517405461519957,0.09430808620527387,-0.3348596077412367,-0.10776428645476699,-0.95981565117836,0.3773606838658452,-0.9416719353757799,0.5780753595754504,-0.5493813380599022,-0.8665098054334521,0.7678320449776947,-0.6717110145837069,0.4939324758015573,-0.9228767575696111,-0.06922160927206278,-0.7958978144451976,0.5145260710269213,-0.44542494183406234,-0.20014392584562302,-0.11673620017245412,-0.024154174607247114,-0.3316734959371388,0.1393436286598444,-0.7865176498889923,0.9712585476227105,0.5057281740009785,0.9828963512554765,0.16427844762802124,0.4792586867697537,0.7637562896125019,-0.4456955543719232,0.2593476492911577,0.3143253759481013,0.9448899757117033,0.09872302692383528,0.8740407484583557,0.031686301808804274,0.6708347066305578,0.38754670368507504,-0.17525075189769268,0.8129995036870241,-0.5770935509353876,-0.3819174552336335,-0.5087494365870953,0.9426583265885711,-0.1023915484547615,-0.2611302249133587,0.8576550967991352,-0.9284085258841515,0.8000967553816736,-0.517472259234637,-0.7902879687026143,-0.779963624663651,0.7065687347203493,-0.0517718680202961,0.6890769610181451,0.6994579988531768,-0.0690336381085217,-0.7584252720698714,-0.6093198573216796,0.3181328703649342,0.13924670638516545,-0.9734923974610865,-0.9562797020189464,-0.7901344927959144,-0.027280811220407486,-0.7839431627653539,0.48252548463642597,-0.11056952411308885,0.751345491502434,0.6975350580178201,0.18931647296994925,-0.16033630399033427,-0.3311235341243446,0.5359243080019951,0.15021416265517473,0.07325796270743012,-0.8440836374647915,-0.5567074692808092,-0.5810364023782313,0.326963247731328,0.37797959335148335,-0.12347638513892889,0.28963619004935026,0.04976200545206666,-0.3503314405679703,-0.7993627754040062,-0.004103292245417833,0.17717332439497113,-0.5415114630013704,-0.26470737950876355,-0.8614924568682909,0.8981489771977067,0.7526096892543137,-0.5454480266198516,-0.4292003195732832,-0.9306938522495329,0.0799816963262856,-0.13741673715412617,-0.04379200330004096,0.04610880836844444,-0.8739212336950004,-0.9861715314909816,0.7955563892610371,-0.07107473164796829,0.5508184395730495,-0.3973231757991016,-0.5980945387855172,-0.5154102989472449,0.23110776161774993,0.2345783468335867,-0.0879086540080607,-0.4530311063863337,0.22371807182207704,-0.37589128594845533,-0.8202222180552781,0.4465676797553897,0.5198610820807517,0.14112039329484105,-0.548458990175277,-0.46478679310530424,-0.8399308542720973,0.28763579204678535,0.682398340664804,0.7016920186579227,0.10762392589822412,0.05968952504917979,-0.8935941094532609,0.6954402066767216,-0.6509478171356022,-0.4196873642504215,-0.16119932988658547,-0.2535679545253515,-0.36652753548696637,0.8954544304870069,-0.46979134855791926,-0.3712469395250082,0.43412251817062497,0.6211259625852108,-0.09786496916785836,0.27920654648914933,0.6446214504539967,0.8518971898593009,0.30019848980009556,0.044136458076536655,0.4557070340961218,-0.1848099445924163,0.339855027385056,0.3909557946026325,-0.053862595465034246,-0.45586409978568554,-0.6911195144057274,-0.6259910645894706,-0.348694218788296,0.6740393568761647,-0.5015607420355082,0.601037603802979,-0.9827598105184734,-0.8587280451320112,-0.5337564442306757,0.6853756350465119,-0.6095460546202958,0.08461215766146779,0.22899494506418705,-0.32958838483318686,0.8362320866435766,-0.478705745190382,-0.19760714750736952,-0.6987016191706061,0.6213764306157827,0.9882337544113398,0.4211297412402928,-0.6675612898543477,0.5154921286739409,-0.2784973536618054,-0.6993632917292416,-0.14969892241060734,-0.34593888046219945,0.46699371188879013,0.7537905154749751,0.8994375434704125,0.867499444168061,0.6177312950603664,-0.8508686269633472,0.8413482932373881,0.39094886975362897,0.29489995539188385,-0.6170644713565707,0.38948103319853544,0.7965381764806807,-0.346132580190897,0.031139524653553963,-0.829690401442349,-0.13686980959028006,0.9606315731070936,-0.6160067091695964,0.48555700993165374,-0.3898615059442818,-0.3248219736851752,0.8665044815279543,0.9164792387746274,0.2512451149523258,-0.6053564730100334,0.7304253983311355,0.7525334404781461,0.533759044483304,-0.18594630947336555,0.6672221263870597,-0.15636703511700034,0.4050320624373853,-0.05942321941256523,0.9279964044690132,0.5361715592443943,0.39285915391519666,0.8055340670980513,-0.42539794417098165,0.49243418546393514,-0.5224495329894125,-0.8546133814379573,-0.8178144590929151,0.20003847870975733,0.6402515568770468,-0.5310157337225974,0.10342219471931458,0.7447645026259124,0.3982404922135174,0.5438589281402528,-0.028056939132511616,-0.2792473239824176,-0.13610852928832173,-0.9688115161843598,-0.7469716463238001,-0.5631605861708522,0.18289801944047213,0.5524425320327282,-0.7872527497820556,-0.9770416459068656,-0.5836144494824111,0.9189982623793185,-0.48196921264752746,-0.32017248403280973,0.17000020341947675,0.8130880268290639,-0.8502714456990361,0.5758541324175894,-0.30237735668197274,0.17428667843341827,0.24010340217500925,-0.599775250069797,-0.36461195861920714,0.17746034217998385,-0.3571391380392015,0.5617880607023835,0.14335014764219522,-0.15151686500757933,0.45882856752723455,-0.6943060508929193,0.1169447610154748,-0.8667188002727926,-0.5602113460190594,0.2155141099356115,0.20890113292261958,0.9889363157562912,-0.47794474149122834,-0.01675032451748848,-0.4470349485054612,0.7609413303434849,0.4345997963100672,-0.04328021686524153,0.8379917414858937,-0.6087790871970356,0.7508081533014774,0.9673605277203023,-0.04510347358882427,-0.4600690589286387,0.48035811074078083,0.6350132832303643,0.6518244044855237,0.954568731598556,0.18009894900023937,0.7321023670956492,0.38090391876176,-0.9689316102303565,0.12281005317345262,0.6774574480950832,-0.9736197581514716,-0.8961541838943958,0.6452180217020214,-0.17171967215836048,0.09642533957958221,-0.044816878624260426,0.40941210091114044,-0.7231764737516642,-0.4854564415290952,-0.21674971235916018,0.9704709579236805,0.4718788634054363,0.4677152493968606,-0.8293686057440937,-0.6736541548743844,-0.37087395088747144,0.6122906687669456,-0.6510113151744008,-0.7271693972870708,0.33630746975541115,-0.8190778703428805,-0.10837555537000299,0.6906389794312418,0.27202680660411716,-0.8839082350023091,-0.14665373135358095,0.6301568057388067,0.34958487190306187,-0.6906126770190895,-0.30904498836025596,0.3769180001690984,-0.6616989118047059,0.22385795833542943,0.9775163643062115,-0.226900823879987,-0.46243445854634047,-0.8752727233804762,0.38697165437042713,-0.09221585607156157,0.8605950465425849,-0.18708367785438895,-0.7380473231896758,-0.5888453163206577,-0.7471959022805095,0.5662239347584546,0.8025778941810131,-0.22367284260690212,0.5794389951042831,-0.36119399731978774,-0.4956802809610963,-0.5122233866713941,0.2978120855987072,0.7543008592911065,0.5282759983092546,0.6638609347864985,0.6211013747379184,0.8647406571544707,0.0023689311929047108,0.8932698336429894,-0.9728676760569215,0.21643118932843208,0.35422767186537385,-0.1697050342336297,-0.3348080972209573,0.5734614972025156,-0.8276970717124641,-0.8693678164854646,-0.9894751436077058,0.5314395329914987,0.6580850929021835,-0.09771968424320221,0.9106782926246524,-0.6122519127093256,-0.9830057010985911,0.7512501985765994,-0.7744090589694679,0.4026239812374115,0.5641083470545709,-0.1555014494806528,0.3324960111640394,-0.6057302323170006,-0.7133126533590257,-0.7327276365831494,0.40684463270008564,0.15312060620635748,-0.39094737404957414,0.7815019050613046,-0.9857306298799813,0.5279853562824428,0.9234366370365024,-0.6715410766191781,-0.3379008821211755,0.31981355557218194,0.11830457160249352,0.9377666590735316,-0.11796467006206512,0.23905165353789926,0.1870357058942318,-0.4190202788449824,0.550512115471065,0.5322721404954791,-0.10447485372424126,0.45457379100844264,-0.30099937319755554,-0.8695270675234497,0.8975324770435691,-0.17462927429005504,-0.16116381669417024,0.4569102330133319,-0.0561605766415596,-0.2973593845963478,0.6673316415399313,-0.830908396281302,-0.0017095445655286312,-0.33637137804180384,-0.5436785649508238,-0.839215190615505,0.9523736075498164,-0.7838128753937781,0.3634940544143319,0.08919605752453208,0.2856792723760009,-0.7380258664488792,-0.9707173355855048,-0.6967666731216013,-0.5893395110033453,0.6186628146097064,-0.8345015323720872,-0.4035650840960443,0.31671858485788107,-0.7567809983156621,-0.5661051096394658,0.7266481248661876,0.24229907570406795,-0.5179168772883713,-0.9196153138764203,0.5738586694933474,0.16348783811554313,0.42363386414945126,0.01412834133952856,0.8894086917862296,-0.8231426370330155,0.6816599499434233,-0.17767872102558613,0.1701166215352714,-0.7240617899224162,-0.8640709212049842,-0.7170100449584424,0.44415121246129274,-0.18242436600849032,0.6784568466246128,0.033552979584783316,0.24445300875231624,-0.7642664574086666,-0.4080132548697293,-0.5490736649371684,0.4469984732568264,-0.1856258143670857,-0.6590195223689079,-0.8934369650669396,0.4086561119183898,-0.22124136425554752,0.9557993379421532,-0.6824788125231862,0.5881522404961288,0.9010155466385186,0.6067619090899825,-0.6305135525763035,0.5559732806868851,0.09067401476204395,0.7294622445479035,0.5528727872297168,0.8889309456571937,0.052648940589278936,-0.6119174375198781,-0.0035310895182192326,0.5413418961688876,0.25004057260230184,-0.2689534891396761,0.2961790603585541,0.6727455239742994,0.9887755657546222,-0.6953359385952353,0.6576653504744172,0.757638577837497,0.4518503178842366,-0.173756901640445,-0.8976884628646076,-0.5757449371740222,-0.4278392754495144,-0.21592592960223556,-0.670059303753078,0.09668585797771811,-0.2617595521733165,-0.9223299045115709,0.050717526115477085,-0.4739100239239633,-0.09513224894180894,0.10538437776267529,0.5468183998018503,-0.9659104137681425,-0.9794793059118092,0.019478411879390478,0.5305946515873075,-0.8701202003285289,0.41398391500115395,-0.6301844217814505,0.23833396239206195,-0.46386462450027466,-0.3650639201514423,-0.9533570627681911,0.7578415982425213,0.438825570512563,0.9059098944999278,-0.3235216597095132,0.5024033156223595,-0.7947845896705985,-0.7158077349886298,0.3768784492276609,0.8044575052335858,0.005567217245697975,0.8448954899795353,-0.26056755566969514,-0.9312195368111134,-0.83328623091802,-0.8075356697663665,-0.49708587722852826,-0.8838730813004076,0.548399702180177,0.14983789762482047,-0.8967154999263585,0.4741083513945341,0.18496843054890633,0.5709539945237339,-0.7310154535807669,0.04100149916484952,-0.8131931773386896,-0.4502766840159893,-0.92966188210994,-0.49285872653126717,0.3285307316109538,0.37284049298614264,-0.41411589039489627,-0.8248493783175945,-0.4756887424737215,0.9605573252774775,0.9051644834689796,0.9624772882089019,0.04826897941529751,-0.025609427131712437,0.9101544213481247,-0.8796149352565408,-0.4230980514548719,-0.9015053939074278,0.13590610306710005,-0.046067104674875736,0.40085300523787737,0.1287749377079308,0.4177389442920685,-0.9902043975889683,-0.7124063046649098,-0.1977773066610098,0.1734113823622465,0.9607237209565938,-0.6345485574565828,-0.7795871472917497,0.9142648954875767,0.9360030889511108,-0.5794629510492086,0.2543603372760117,0.1523599922657013,-0.4526255549862981,0.6070890026167035,-0.8406704599037766,-0.8634844170883298,0.7136520859785378,-0.8040555603802204,0.6947028688155115,-0.17204069113358855,-0.1379133202135563,0.34457844449207187,0.5485120266675949,-0.9518206603825092,0.9738721661269665,0.940094452816993,-0.5814612023532391,0.04189097275957465,-0.025488584768027067,0.7639768798835576,-0.54402656853199,0.8189226798713207,0.4246980776078999,0.5366436578333378,-0.9667816711589694,0.25500872638076544,-0.5965779549442232,0.09828543290495872,-0.601025013718754,-0.44954262766987085,-0.9321116977371275,-0.7912290031090379,-0.12758923089131713,0.036486719734966755,-0.9324796488508582,-0.4250741936266422,0.875471065286547,0.40955410385504365,0.5954590290784836,-0.5012346552684903,0.4046874297782779,0.51787702832371,0.32472437992691994,0.20499292435124516,0.8083149828016758,-0.11703629978001118,-0.13237550156190991,-0.47606009198352695,-0.4205207172781229,-0.6639712150208652,-0.6277633407153189,0.8206122824922204,0.021026112139225006,0.5082317711785436,0.2832057955674827,0.7046347865834832,0.1514855702407658,-0.42599722649902105,0.9791779983788729,-0.5245086988434196,-0.745947556104511,0.0835441262461245,0.023215961642563343,0.3981644744053483,0.6358210211619735,0.5097209988161922,0.03944874135777354,-0.5284746615216136,0.5117110158316791,0.05680632498115301,-0.8879455267451704,0.0457029715180397,0.20244557550176978,0.9590877462178469,-0.31771475821733475,0.7819497785530984,-0.7941981088370085,-0.15368720469996333,0.15535141713917255,0.5324158268049359,-0.26785558089613914,-0.744859610684216,-0.8766700443811715,0.824730574619025,0.45837731519714,0.39936731988564134,-0.7921935715712607,0.06138509139418602,0.9896759553812444,-0.5434874556958675,-0.5895037683658302,0.8475842531770468,-0.18034293968230486,-0.22578941797837615,-0.5049259620718658,0.38162493659183383,-0.6882967241108418,0.6651424337178469,0.7739363531582057,0.9343185662291944,-0.4297974668443203,-0.6182341845706105,0.05900791147723794,-0.12208176823332906,0.8289442672394216,0.09616019437089562,0.04432104900479317,0.38148897234350443,0.6575099537149072,-0.32254893193021417,0.7419328228570521,-0.14463490527123213,0.42658333480358124,-0.5074888840317726,-0.031430382281541824,-0.8536344948224723,-0.41377706406638026,-0.13141740020364523,-0.7482790760695934,-0.6037470404990017,0.8168328767642379,0.23641525767743587,0.09915858879685402,-0.6188278910703957,0.07431328389793634,0.8329520248807967,-0.2456107921898365,0.64025415526703,-0.8030733200721443,0.9534575995057821,0.5211268765851855,-0.801326013635844,0.6118643367663026,-0.5605862741358578,-0.16158790700137615,-0.3084725122898817,-0.3261713273823261,0.09326496487483382,-0.42828305903822184,-0.9927754667587578,0.759066657628864,0.43016364984214306,-0.7822636445052922,-0.2609529453329742,-0.604918978177011,0.28635911969468,0.7168674105778337,-0.8405612870119512,-0.30162293650209904,0.15036115515977144,-0.789072694722563,-0.9327387623488903,0.9296768107451499,-0.7958191186189651,0.031850874889642,-0.8934709825553,-0.9124508909881115,0.3795085232704878,-0.540623152628541,0.42597857397049665,0.0456569972448051,-0.9318094132468104,0.7887543858960271,-0.9518191828392446,-0.7059963089413941,-0.40188082167878747,0.1501944507472217,-0.01612939266487956,0.07200226467102766,-0.6841080551967025,-0.20996558014303446,-0.9920897516421974,0.6723640155978501,-0.7810776182450354,0.622697914019227,0.10287684528157115,0.3472499279305339,0.3336455184035003,-0.6986748985946178,0.2845155610702932,0.6690325066447258,0.3064342038705945,-0.8360469411127269,0.15960843674838543,0.23729288298636675,0.28346309857442975,-0.4577488391660154,-0.2584575121290982,0.4995975154452026,0.8732248032465577,0.4625433054752648,-0.999546920415014,-0.1294642253778875,0.38620864506810904,-0.2212183908559382,0.4768140814267099,0.1154928975738585,-0.035312050487846136,-0.07193458965048194,-0.549422912299633,-0.26928066881373525,0.7576198941096663,0.3553446168079972,0.9478234853595495,0.07078767195343971,0.36343522276729345,0.15400309208780527,-0.9387515457347035,0.18390587018802762,0.7367859710939229,0.04433817695826292,0.6188518949784338,0.5568547938019037,0.4547535190358758,-0.18845316721126437,-0.9683051789179444,-0.05091354297474027,0.19362766994163394,-0.7691365801729262,-0.4545338237658143,0.6908519235439599,0.5020705331116915,-0.15097054606303573,-0.963152882643044,-0.359520907048136,-0.8057614886201918,-0.9277671091258526,0.5302712498232722,0.6150309746153653,0.36575790401548147,-0.6521428115665913,0.25254263915121555,0.9908859673887491,-0.27741497196257114,0.15918535832315683,0.7147538810968399,-0.9480913709849119,0.3248449102975428,0.7267600451596081,-0.09969283081591129,0.5862386105582118,-0.5041333017870784,0.28779214061796665,-0.32883794512599707,-0.45270856842398643,0.6822134219110012,0.45165009424090385,-0.891076962929219,-0.06614864896982908,-0.5006913896650076,-0.3881707335822284,-0.11980729131028056,0.9678824981674552,-0.9220263552851975,-0.688951182179153,0.031552063301205635,-0.986327426508069,-0.3214614177122712,0.6474909107200801,0.3095659534446895,-0.615880411118269,0.9872259586118162,0.35697764065116644,0.10373120149597526,-0.26378605980426073,-0.8474649325944483,0.9637886784039438,0.0847648298367858,-0.483020709361881,0.5911327465437353,0.20814403146505356,0.6991385431028903,0.49437846755608916,0.543663140386343,0.6378060327842832,0.18498159712180495,0.6312003661878407,-0.8531281668692827,0.34030881989747286,-0.3772689700126648,0.4312094389460981,-0.983924818225205,-0.013519763015210629,0.022811850532889366,0.6617349563166499,-0.7628006590530276,0.5482031404972076,-0.08948601502925158,-0.16209611762315035,-0.6727401656098664,0.11962029803544283,0.9350534481927752,-0.1462600608356297,-0.6688286233693361,-0.7235544961877167,0.879521728027612,0.6844369191676378,-0.00824811914935708,0.6878875507973135,-0.7869001463986933,-0.3958524279296398,-0.03193478658795357,-0.31226829439401627,-0.05321509437635541,0.7669285954907537,-0.9119091876782477,-0.5492656286805868,-0.3837842238135636,-0.47838292131200433,-0.2132838019169867,-0.4427625359967351,0.24423692375421524,-0.505877586081624,0.4908479554578662,-0.6881666206754744,-0.40214718552306294,0.05339791905134916,0.4209939115680754,0.16444064769893885,-0.4356852099299431,0.0831529051065445,-0.3258324912749231,0.33756608329713345,0.9901792709715664,0.50148766906932,-0.1945788743905723,-0.9063275898806751,-0.07385736284777522,-0.3344024899415672,0.8707866123877466,0.2671440578997135,0.8106355452910066,-0.03637374611571431,0.489137836266309,0.6458389656618237,-0.4381044148467481,0.7251943359151483,0.8240590272471309,0.7860409892164171,-0.8235834562219679,-0.27852036943659186,0.6751060960814357,0.16939489776268601,-0.40574363712221384,-0.16252522356808186,0.4126930395141244,0.7939879521727562,-0.7152243708260357,-0.5644994089379907,-0.030806010589003563,-0.6391791747882962,-0.08929511811584234,-0.875513912178576,0.08826457755640149,-0.8399871028959751,0.14603027421981096,-0.8769123791716993,-0.4579303888604045,-0.1432546484284103,0.5766765656881034,0.6497150845825672,-0.8244101260788739,0.9718243866227567,0.7593544074334204,0.19075418403372169,-0.982760826125741,-0.10771464882418513,-0.40564313624054193,-0.40691844653338194,0.5119651718996465,-0.17180958297103643,-0.8860631179995835,-0.5020086294971406,0.3641688344068825,0.12023095088079572,-0.5581146301701665,0.673634986858815,-0.905720922164619,0.8698749337345362,-0.3539130645804107,-0.2907493822276592,0.13873526360839605,0.8441701009869576,-0.5303035606630147,0.9913718304596841,0.5028318320401013,-0.43086730130016804,0.13552038837224245,-0.4985604099929333,0.5731831998564303,0.8105337163433433,-0.7501568957231939,0.30900946678593755,0.15657429723069072,-0.18191997148096561,-0.6313215312547982,-0.019548466429114342,-0.6484399461187422,0.9923457466065884,0.5845399252139032,-0.6573224361054599,-0.9071762291714549,-0.5503855366259813,0.8888350566849113,-0.7437076889909804,0.6584656205959618,0.6133314012549818,-0.349874269682914,0.7244663792662323,-0.6014504092745483,-0.9192155445925891,-0.27901555644348264,0.8575985389761627,0.6655409769155085,-0.8892394751310349,-0.47270896239206195,0.14325313223525882,0.3270661449059844,0.04505251394584775,-0.7546200389042497,-0.504509812220931,0.222788963932544,0.9579537962563336,-0.5401304396800697,0.8376367194578052,0.14388488605618477,0.6596736377105117,-0.7936496394686401,0.8438778836280107,0.7804332580417395,-0.7891789618879557,0.9279785500839353,-0.8679786459542811,0.5872087120078504,-0.8002429832704365,0.14727104268968105,0.32160943653434515,-0.25012852530926466,0.9692699094302952,-0.46629387978464365,-0.1571233281865716,-0.11193426325917244,-0.1583813140168786,0.14940629992634058,0.8561893468722701,-0.8073852439410985,-0.08796780975535512,-0.4026981261558831,0.2806449728086591,-0.8878409657627344,0.36952752619981766,0.8363240207545459,0.04466054728254676,-0.948622046969831,-0.649163284804672,-0.4313699370250106,0.5786113636568189,-0.6494049807079136,0.7134185405448079,0.7373885228298604,0.05140324076637626,-0.7392683629877865,0.2759136315435171,0.49916789401322603,0.1483460827730596,-0.14492506301030517,-0.3562970859929919,0.3706100657582283,-0.7098527941852808,0.9470487837679684,0.9845904819667339,0.4271037084981799,0.6259727198630571,0.45482208393514156,-0.05526434350758791,-0.12047941656783223,-0.00048420485109090805,-0.6037515345960855,-0.44171642046421766,-0.9051561690866947,0.7107869694009423,0.03640426881611347,-0.2809456395916641,0.15271165082231164,-0.8350484995171428,-0.9360876362770796,-0.025319316890090704,0.35075716534629464,-0.21732469787821174,-0.4326525847427547,-0.11604574928060174,-0.27790039824321866,-0.8016047291457653,0.702249304857105,-0.06335573270916939,0.988162930123508,0.5999365453608334,0.5805609906092286,-0.24700526939705014,0.016547744162380695,0.8474338026717305,-0.8009460605680943,0.6236125510185957,0.23975989455357194,-0.23316510301083326,0.340041799005121,0.9833955815993249,-0.25019206292927265,-0.36386539041996,-0.9790080352686346,-0.8098250981420279,0.9634114638902247,-0.9553223932161927,-0.5376372477039695,0.7985391011461616,-0.8267383761703968,-0.18525282386690378,0.8874477124772966,0.6228394820354879,0.7118225181475282,-0.5423895646817982,0.19069692539051175,-0.9715981879271567,0.11083843791857362,0.8306673560291529,-0.9865128472447395,-0.6776097342371941,-0.8264482542872429,-0.2943009161390364,-0.26444312650710344,-0.861158243380487,0.0257814503274858,-0.8815545681864023,-0.9948597578331828,-0.9226137138903141,0.8561611417680979,0.17347325664013624,-0.6134375645779073,-0.23909785971045494,-0.011540565639734268,-0.8983181989751756,-0.6890755398198962,-0.12932313606142998,0.3582320800051093,0.46818038867786527,-0.21745960414409637,-0.9344990658573806,0.5477747870609164,0.613464284222573,-0.09153997618705034,-0.8338615917600691,-0.5415960270911455,-0.8281739884987473,-0.07912513893097639,0.3100805743597448,0.5867653293535113,-0.1401037578471005,-0.22617432568222284,0.023401559330523014,0.6697726906277239,-0.1728924964554608,-0.8499628864228725,0.04911252623423934,0.1293916399590671,0.7592069506645203,-0.5005722469650209,0.0048525831662118435,0.7014476568438113,-0.22774298395961523,-0.43511499324813485,0.2625587289221585,-0.48891464434564114,-0.20040656393393874,-0.6267039184458554,0.5613471097312868,0.5350843332707882,0.9989450676366687,-0.7113377936184406,0.3655096613802016,-0.6374320867471397,0.9155275346711278,-0.2081347187049687,-0.28846453223377466,0.12173818470910192,-0.9248745548538864,-0.6511453632265329,0.607101371511817,-0.13202480040490627,0.057974220253527164,0.42094890400767326,0.9246218730695546,-0.5899160131812096,-0.9122326588258147,0.5835577687248588,-0.5199558739550412,0.10765878763049841,-0.13936215825378895,-0.5491657061502337,-0.6792855742387474,0.8422445608302951,-0.4062682492658496,-0.22295394679531455,0.34964342089369893,-0.6070325439795852,-0.22453799471259117,0.6629058592952788,-0.6900339615531266,-0.6562814777716994,0.4107535616494715,0.3636426832526922,0.36687834840267897,-0.46330263279378414,-0.0506951417773962,0.539695727173239,0.4075638302601874,0.9786872928962111,0.5489276479929686,0.7158565502613783,0.37624025205150247,-0.17055171355605125,-0.9474174357019365,0.7434694352559745,-0.5453095943666995,0.4505653865635395,-0.11896010674536228,-0.6959111476317048,0.6161531452089548,-0.190365647431463,0.38379225553944707,0.06831872276961803,-0.04644475830718875,0.24184617772698402,-0.5871878103353083,-0.06388116115704179,0.8590396358631551,-0.41491021355614066,-0.8476109527982771,0.48915872257202864,-0.5289347828365862,-0.3371736160479486,-0.15939400345087051,-0.08611527783796191,0.7816639426164329,-0.14998400071635842,0.3269216315820813,-0.2546392288058996,0.11458286503329873,-0.7913157967850566,0.8570515317842364,-0.7702980367466807,-0.09185628592967987,-0.03889417601749301,-0.19525165390223265,-0.7219234402291477,0.1311725457198918,-0.4671520567499101,-0.802598481066525,0.0878567872568965,-0.41871985141187906,0.7460893550887704,0.5800836007110775,0.18926632776856422,0.9675272940658033,0.8005244266241789,0.803888167720288,0.7452610530890524,0.9596513486467302,-0.8954483945854008,-0.9574944796040654,-0.7996739498339593,0.8196862693876028,-0.07765052793547511,0.24188544088974595,-0.9032288319431245,0.5401122416369617,-0.2759592025540769,0.8476914153434336,-0.5121894348412752,-0.6683296672999859,0.8877277872525156,-0.2560797594487667,0.6817283304408193,0.5595945930108428,0.8686806280165911,0.8208723543211818,0.5462407218292356,0.36384806875139475,0.7772466074675322,0.30179737973958254,-0.7162059424445033,0.6010881490074098,-0.2731079291552305,0.41599351167678833,0.17747722659260035,0.9634256064891815,0.17389233084395528,0.2810277040116489,0.8381159701384604,-0.423926446121186,-0.6649095434695482,-0.33028939040377736,0.6642280779778957,0.3318809629417956,0.277506697922945,0.1467573414556682,0.5667097517289221,0.4917743937112391,-0.7907383288256824,-0.5341851874254644,-0.319305500946939,0.38763633696362376,0.7396625899709761,0.650528569240123,0.9781633266247809,0.8298305594362319,-0.4524791310541332,0.29821632895618677,0.9424792076461017,-0.6127076437696815,-0.6694562793709338,-0.633765100967139,-0.07769305538386106,-0.40810433123260736,0.5446416200138628,-0.17434938810765743,-0.914643781259656,-0.7416936391964555,-0.9161584167741239,0.2848464734852314,-0.8931021327152848,-0.09375719353556633,-0.9487346755340695,-0.5266602193005383,0.09108379948884249,-0.9189482214860618,0.8168774279765785,0.9958662381395698,-0.8874275786802173,0.8338248925283551,0.5385196348652244,0.32849849527701735,-0.8707506903447211,0.4558051093481481,-0.0964916879311204,0.2110138339921832,0.5397567367181182,0.4769798768684268,-0.06348148640245199,0.550373402889818,0.9424309888854623,0.47516128793358803,0.6369688506238163,0.39753679232671857,0.5175662622787058,-0.5773679707199335,-0.7567650540731847,-0.25245464500039816,-0.6452511483803391,0.15868411678820848,0.8082025018520653,-0.9188728923909366,-0.9959410931915045,-0.8301987168379128,-0.7326569790020585,-0.40380822494626045,0.45825562346726656,-0.09148010285571218,0.20625084079802036,0.6091482788324356,0.14720992604270577,0.8753603673540056,0.6959164747968316,0.28950768429785967,0.5972442193888128,-0.912675887811929,-0.6518939738161862,0.17546194233000278,0.04981872718781233,-0.7584899412468076,0.3397540766745806,-0.42482976196333766,-0.6668985132128,0.4832038669846952,-0.700412527192384,0.5729359672404826,-0.0012503713369369507,0.2773832157254219,-0.9925705222412944,0.2709248219616711,0.25301635079085827,-0.15295556746423244,0.27746594650670886,0.16357050463557243,0.7680140207521617,0.8189139477908611,-0.01717447955161333,-0.22483477741479874,0.5493642278015614,-0.4312332784757018,-0.08350563701242208,-0.6094051790423691,0.9626888097263873,0.06722077960148454,0.20861214771866798,0.5333301364444196,0.012770378962159157,0.9905269010923803,-0.6826924327760935,-0.06399579020217061,0.8000872223637998,0.37759076058864594,-0.42172355204820633,0.30791199998930097,-0.635485652834177,0.5260736383497715,0.9899901817552745,-0.4241076810285449,-0.7806932907551527,-0.3124488261528313,0.247744036372751,0.8967623426578939,-0.9160454222001135,-0.4518960448913276,-0.8910320047289133,0.8936862726695836,0.5322745908051729,-0.9352262378670275,-0.5338484859094024,0.3712811414152384,0.28866964811459184,-0.3921324713155627,-0.42899943608790636,-0.39405036298558116,0.7099959938786924,-0.03708892734721303,-0.322285623755306,0.5380490608513355,0.6075156512670219,0.8692841036245227,0.469152944162488,0.874365845695138,0.3649050574749708,-0.469137467443943,-0.6571642933413386,0.2543686693534255,0.4371096990071237,0.4814854087308049,0.4835580005310476,0.6509646303020418,0.15454504219815135,-0.8377046505920589,0.8402872462756932,0.9008625117130578,-0.9723989516496658,-0.6280422918498516,-0.22293872945010662,-0.5557742291130126,0.29277300368994474,0.6685923277400434,0.2798936073668301,-0.750554773490876,-0.6967707071453333,-0.8498143455944955,-0.9988912902772427,-0.7103725364431739,0.7135389298200607,0.9102549781091511,0.1464985921047628,-0.5230868272483349,0.7466610390692949,-0.01864168932661414,0.05101554887369275,0.5322850858792663,-0.1374303624033928,-0.5344850840047002,0.2299382472410798,0.5308760059997439,0.9702072874642909,0.7615263853222132,0.3704631570726633,-0.7258409704081714,0.2962455782108009,-0.06170212524011731,0.08212887961417437,0.2777909920550883,0.03560121217742562,0.42880868911743164,-0.1427625142969191,0.5278225285001099,-0.13253124989569187,0.7691211961209774,0.9414673107676208,-0.5076946415938437,0.2889830209314823,-0.47463285084813833,0.2821735362522304,-0.9720009579323232,-0.24392450600862503,-0.823673986364156,-0.6857101321220398,0.9991096453741193,0.1747530298307538,0.6942565948702395,-0.5780405723489821,-0.23992863483726978,-0.9921518717892468,-0.1818212433718145,0.8415899593383074,-0.9403935661539435,-0.8100294889882207,0.0878038895316422,0.7352591934613883,-0.590612062253058,0.09576489962637424,-0.8512538690119982,0.34228715766221285,-0.11908425204455853,0.6739830337464809,0.9166388856247067,0.26513779861852527,0.7153633777052164,-0.06216256879270077,0.4685912923887372,0.6563769383355975,0.14790841517969966,0.20930927153676748,0.2531165089458227,0.5371972853317857,0.46030369959771633,-0.9041211549192667,0.08831820636987686,0.8159416490234435,-0.06125840963795781,0.016626727301627398,-0.4397789165377617,0.3763619791716337,-0.7138347532600164,0.5818488975055516,0.18848086474463344,-0.007138098124414682,0.6227755923755467,0.3573084636591375,0.468452216591686,-0.28055718494579196,-0.9591881879605353,0.757835790514946,0.07014032127335668,-0.12943727802485228,-0.569705895613879,0.6016946998424828,0.9319615038111806,-0.7358847144059837,0.12059276923537254,-0.560730058234185,0.059874703641980886,0.5681872791610658,-0.251178331207484,0.8655804041773081,0.16961226845160127,-0.010873229708522558,0.6559347119182348,0.08458375744521618,0.3069424978457391,0.8193869832903147,0.3759225606918335,0.38956725411117077,-0.23760334122925997,0.9741571946069598,-0.17057217750698328,0.9766269312240183,0.7806445709429681,-0.48823672253638506,-0.5582381309941411,0.7437276039272547,0.7696669129654765,-0.12617196096107364,-0.6114653153344989,0.8269538544118404,0.9630369893275201,0.5539907901547849,0.10813837544992566,-0.6360733225010335,-0.048652044497430325,-0.999310361687094,0.5945068001747131,-0.0007528029382228851,0.8810439016669989,-0.08417202485725284,-0.26966817304491997,0.5740720788016915,0.7002346441149712,-0.9947971496731043,0.7484962148591876,0.9604412070475519,-0.4380197133868933,0.15738069638609886,0.513142267242074,0.11435048701241612,-0.9904319229535758,-0.9544165721163154,0.9992991290055215,-0.2920149192214012,0.513147447258234,-0.9526804448105395,-0.43171079410240054,0.33497691666707397,-0.43102381797507405,0.2759229801595211,-0.5980539028532803,-0.6171435690484941,-0.5371235581114888,-0.3787808455526829,-0.3562691444531083,-0.17197923036292195,-0.2976243095472455,-0.1670146705582738,0.48652652697637677,0.11953522404655814,0.549838908482343,-0.43617442017421126,0.1549761975184083,0.006536588072776794,0.16578415036201477,0.4730318449437618,0.0663808579556644,0.8175098863430321,-0.4312563347630203,-0.8455783682875335,0.19087299844250083,0.9369010962545872,0.08437414187937975,0.0910003068856895,-0.7772843488492072,0.07746832491829991,-0.9160600989125669,0.46456560073420405,-0.594813134521246,0.9225905165076256,0.19929993525147438,-0.5322570349089801,0.22170468792319298,-0.6553115770220757,0.6579652037471533,0.8153794524259865,-0.37690206430852413,-0.8863765043206513,-0.5524274776689708,0.956422823946923,-0.6356356060132384,-0.8258470022119582,0.49148591374978423,-0.10848832596093416,0.7275274908170104,0.09194380138069391,0.45330662885680795,0.3653253628872335,0.9019590714015067,-0.46910423040390015,0.1684632678516209,0.8750145630910993,0.8095526196993887,0.3130905870348215,0.7989800223149359,0.9601095863617957,-0.6653422145172954,-0.4742857292294502,-0.238407869823277,0.0879789013415575,0.9853707537986338,0.8685173667035997,-0.7665847134776413,0.030546792317181826,-0.6526342500001192,-0.5411137090995908,-0.09389494825154543,0.3740605525672436,-0.44862869242206216,-0.9580712197348475,-0.1805664007551968,-0.685376850888133,0.03205604758113623,-0.5106301587074995,0.728974805213511,0.5669512585736811,0.9118928099051118,0.5492130033671856,0.44007503194734454,0.4091263352893293,0.5713762817904353,0.2991651105694473,-0.736114657483995,0.9613281958736479,-0.8712003529071808,0.9034569878131151,0.6942845438607037,0.08412727061659098,0.25300689367577434,-0.360154309310019,0.9070239122956991,-0.6584342974238098,-0.20798147935420275,0.4367960374802351,0.0057599544525146484,0.5970328915864229,0.5167038426734507,-0.5847017443738878,-0.643209031317383,0.13007785519585013,0.031180971767753363,0.1805735263042152,-0.12706547370180488,0.3886611806228757,0.6608617282472551,0.992604048922658,0.9930650009773672,0.7518850583583117,-0.7328538740985096,0.14045089855790138,0.16037978883832693,0.08780350629240274,-0.49281061021611094,-0.5623477576300502,0.8173666340298951,-0.41186453914269805,-0.5139796994626522,-0.4067835728637874,0.8700751177966595,-0.4066827758215368,0.6307165352627635,0.9573270827531815,-0.6718787020072341,-0.7331915805116296,0.2282293983735144,-0.35154790384694934,-0.2494278997182846,-0.8845068123191595,-0.3534763753414154,-0.9616158767603338,0.4099837322719395,0.36045361775904894,0.7828691503964365,-0.9798279260285199,0.8375200796872377,-0.2943304032087326,0.8775970777496696,0.275012269616127,-0.4578163316473365,-0.2997599164955318,0.9515029969625175,0.14358771312981844,0.5220912150107324,-0.9269074709154665,0.9382890411652625,-0.4112739502452314,0.6991798337548971,0.7820784696377814,-0.9426143229939044,-0.9606656339019537,-0.5795804220251739,-0.9405308663845062,0.7624291512183845,-0.5057606608606875,-0.33629576535895467,-0.5001595285721123,-0.41394205996766686,0.868425274733454,-0.5908102807588875,-0.7268524719402194,-0.6590505433268845,0.2289810753427446,-0.01601544627919793,-0.5709960167296231,-0.21919023292139173,-0.3666881718672812,-0.58277950854972,-0.02052657725289464,-0.17390180099755526,-0.2831824845634401,-0.818518209271133,0.8631446952931583,0.42811727384105325,0.2243103962391615,0.7009496404789388,-0.8853604169562459,-0.0683663715608418,-0.6734459009021521,-0.21650657430291176,-0.3951470353640616,-0.37497625732794404,-0.30386400083079934,-0.6618049475364387,0.7228448009118438,-0.42909149220213294,0.7503132917918265,-0.5067864703014493,0.9986056848429143,-0.4451982039026916,0.9805720746517181,-0.026545068714767694,-0.14101863093674183,0.10505516827106476,0.49141667783260345,-0.9662439939565957,0.7737582582049072,0.24536409694701433,-0.30571348825469613,-0.8400447741150856,-0.8887442369014025,-0.5098455841653049,-0.06071636779233813,0.9052119138650596,0.2650917083956301,-0.044684440828859806,-0.17094676289707422,0.9814448421820998,0.36376758571714163,0.14113499969244003,-0.2875291407108307,0.4429382272064686,-0.0408208891749382,-0.407372557092458,-0.25710171600803733,0.10288033029064536,-0.8468458689749241,0.20804530614987016,-0.5695147188380361,0.30683806352317333,-0.006675908342003822,-0.814823851455003,-0.550300563685596,-0.4834126131609082,0.47972536785528064,0.2088930974714458,0.4258118639700115,0.8614324992522597,0.7088923761621118,0.567395684774965,-0.19662907253950834,-0.3930163746699691,0.5202351952902973,0.6709766476415098,-0.04926434252411127,0.09075611410662532,-0.8202947829850018,0.2065158113837242,0.694160089828074,-0.2851951099000871,-0.5857108142226934,0.9842412895523012,0.2633286970667541,0.24657408660277724,-0.22355646127834916,0.35395336896181107,-0.9396270425058901,-0.15380693087354302,-0.15592937357723713,0.09950746968388557,0.11018610093742609,0.6714758472517133,0.24314467376098037,0.9069034140557051,-0.4016822944395244,0.1183970239944756,0.5883678458631039,-0.742855831515044,-0.3798740301281214,-0.7177213802933693,0.591523134149611,-0.5273019140586257,-0.7511561922729015,-0.81574736116454,0.4982116357423365,-0.2934577311389148,0.9929059334099293,0.6730578844435513,-0.8073408440686762,-0.046423078048974276,-0.6824747044593096,0.9247764274477959,-0.5944030452519655,-0.47502164309844375,0.6844280189834535,-0.920569434762001,0.7247952497564256,-0.6927378247492015,0.5067947087809443,0.5247163670137525,-0.19733191281557083,0.12383637949824333,-0.6751876077614725,-0.34869399946182966,-0.6193539048545063,-0.6777410800568759,0.6602174416184425,-0.98005838599056,0.3426223094575107,-0.2633304218761623,-0.08053352637216449,0.5385678643360734,0.22757170582190156,-0.9406031495891511,-0.7564296093769372,-0.8067977824248374,0.02071138611063361,-0.24104277417063713,-0.6268773484043777,0.8674327344633639,0.5205974066630006,0.8694552495144308,0.38360632536932826,-0.9602009602822363,0.07402591174468398,-0.16033036820590496,0.8867291938513517,0.3599872225895524,0.6915376484394073,-0.5092154084704816,-0.9151870934292674,0.8752643298357725,-0.4531606356613338,-0.49835853883996606,0.9250985942780972,0.056337535846978426,0.02376944338902831,0.5502078621648252,0.12450298247858882,0.7627219259738922,-0.13907584780827165,0.1700269365683198,0.9846472288481891,-0.9199745678342879,0.6591244097799063,0.9391417065635324,-0.9079372338019311,0.1348530394025147,0.9796689320355654,0.3809426426887512,0.8065164680592716,-0.7584532634355128,-0.1405246858485043,0.5015214951708913,-0.23027862142771482,-0.06822984712198377,0.7601690930314362,-0.2790232435800135,-0.06693172780796885,-0.009737251326441765,0.5891853277571499,-0.03127264371141791,0.5038914610631764,0.7643204294145107,-0.2539788568392396,0.37209200393408537,0.7006001560948789,0.07275961898267269,-0.768907985650003,-0.610829399432987,0.12547730933874846,0.39757440984249115,-0.24527861550450325,-0.30013248743489385,-0.4892598297446966,0.9254306731745601,-0.18916145339608192,0.608989120926708,-0.9110426064580679,0.3866002312861383,-0.9616998359560966,0.3449196624569595,0.38499084720388055,-0.3154001054354012,-0.68441416695714,0.8583586337044835,0.4399031847715378,-0.7093744124285877,0.4136574687436223,0.7608736795373261,-0.7409913092851639,-0.8396417619660497,-0.3872406827285886,0.0660686013288796,-0.13791611464694142,-0.47166617773473263,-0.8638670975342393,0.42810380551964045,0.6713734134100378,0.9449852406978607,-0.8248183177784085,-0.6351000405848026,-0.05446393461897969,-0.138544334564358,-0.9280141005292535,-0.9400920076295733,-0.3268514387309551,0.2815557704307139,-0.14397720666602254,0.13192361500114202,-0.959158587269485,-0.7252894849516451,0.5498178410343826,0.5089951371774077,-0.9345910861156881,-0.038828035816550255,0.7548734955489635,0.9354388127103448,0.38743590004742146,0.5645423056557775,0.8395062130875885,0.6630556811578572,0.8432488837279379,-0.6134795979596674,0.8815943049266934,-0.48279267409816384,-0.5215244139544666,0.07809789991006255,-0.5523294983431697,-0.2478478755801916,0.04279215633869171,-0.15780895669013262,0.8355769896879792,0.19839107571169734,0.5034267795272171,0.4915302670560777,-0.35344047704711556,-0.5323726204223931,-0.3284566435031593,0.1997102377936244,-0.2553023677319288,-0.32250597374513745,-0.9524202891625464,-0.5162661811336875,0.8923503230325878,0.7063649357296526,-0.1263520447537303,-0.7305507599376142,-0.078200105112046,0.15765963634476066,0.6999804200604558,0.23711038520559669,-0.46963095385581255,-0.41580827347934246,0.5358195095323026,0.9651772882789373,-0.9718411625362933,-0.7840615841560066,-0.25308469496667385,-0.8049937165342271,-0.20867284666746855,-0.14340695086866617,0.839944917242974,-0.954584235791117,-0.28905036579817533,-0.2501163184642792,-0.009094014763832092,-0.9391133827157319,-0.04834319557994604,0.40379866724833846,0.6887820474803448,0.6264552567154169,0.5050064497627318,0.20602441299706697,0.4677869244478643,0.36747565818950534,-0.21778130158782005,-0.053184359800070524,0.5631760563701391,-0.9411169490776956,0.06101514119654894,0.2854176852852106,-0.6190449208952487,-0.982851404696703,-0.9098020503297448,0.11673385929316282,-0.7260734117589891,0.7070070351473987,0.20922604901716113,0.11458777263760567,0.36785186268389225,-0.5034068892709911,0.9507106211967766,0.10521871643140912,-0.41677825106307864,-0.40278335800394416,-0.3530631442554295,0.5123137445189059,0.4136708718724549,-0.4313927162438631,0.6504727620631456,-0.6984875211492181,-0.3811120823957026,-0.9103269865736365,0.2986463848501444,0.43976843170821667,-0.9030298688448966,-0.11229376401752234,-0.16325181862339377,0.7647371659986675,-0.6601760163903236,-0.7282262658700347,0.6798960035666823,-0.17183542903512716,-0.046006168238818645,-0.16981442365795374,-0.9699727124534547,-0.4220552002079785,0.6341452272608876,0.01621810533106327,0.5743635115213692,0.21040012128651142,-0.7294627795927227,0.061104790307581425,0.6747142155654728,-0.6655205814167857,0.8226892012171447,0.9086310965940356,0.19511537160724401,0.6660303669050336,0.7794021908193827,0.39478808641433716,-0.5964810894802213,-0.8777647516690195,-0.2732958812266588,0.9674700167961419,0.39096613554283977,-0.20333522418513894,0.8820591457188129,0.9467124342918396,0.6343065351247787,0.8036280036903918,0.14112211111932993,-0.2766738492064178,0.5151608670130372,0.2563067115843296,-0.3792839450761676,-0.6326047908514738,-0.5960841034539044,0.5856552659533918,-0.7953486978076398,-0.04912094213068485,0.7451773844659328,0.19565394800156355,0.7578583341091871,-0.48278381722047925,-0.6740491944365203,-0.9777011456899345,-0.01485411822795868,0.4506489089690149,0.5238478854298592,-0.7266655880957842,-0.935128022916615,-0.9654398942366242,0.1717017269693315,-0.9977971124462783,0.5173160657286644,-0.9420668454840779,0.6411999454721808,0.7909152181819081,-0.15803204802796245,-0.8879450708627701,-0.015378236304968596,-0.065323940012604,0.7530987723730505,0.4924654853530228,-0.37113999109715223,0.3269815733656287,-0.9451581928879023,0.9883703468367457,0.25316750537604094,0.8157811858691275,-0.31984987994655967,-0.13161308225244284,0.20751100033521652,0.8648946494795382,-0.0017787255346775055,-0.32220494095236063,-0.273676254786551,-0.4700136994943023,0.27080582780763507,-0.25783790182322264,-0.6948037832044065,0.4637216478586197,0.25613772263750434,-0.6028796336613595,0.22246136516332626,-0.03785671293735504,0.39934027567505836,-0.2776248501613736,-0.8395518264733255,0.72068179724738,0.14082529349252582,0.40959454979747534,-0.7822415875270963,0.06348899751901627,-0.5962782981805503,0.8922216622158885,0.8047053860500455,0.15283327363431454,0.3429396045394242,-0.4862929699011147,-0.33996705850586295,-0.5551223619841039,-0.9605389055795968,-0.34750380320474505,-0.11078562634065747,-0.31652800738811493,0.7090006987564266,0.886294792406261,0.6946240137331188,-0.5712756267748773,0.5840947176329792,-0.7006397526711226,-0.015419555827975273,0.9690731214359403,0.46696615125983953,-0.7679500374943018,0.980999949388206,-0.29084175173193216,-0.13573338789865375,-0.15595412254333496,0.16091850399971008,0.019638587720692158,0.2870505591854453,-0.3346999119967222,0.36241255095228553,-0.18298586923629045,0.03064524009823799,-0.7796440818347037,0.6707012029364705,0.006862114183604717,-0.7538827182725072,-0.827411996666342,-0.32848238525912166,0.10642365925014019,-0.11381565313786268,-0.8928823038004339,0.28417839016765356,0.8971134284511209,0.5182307343930006,0.08700482314452529,-0.28043240681290627,0.9970522150397301,0.17599621834233403,0.3806700077839196,-0.5064000096172094,-0.8191395574249327,0.6623579440638423,0.6321714106015861,-0.3195692249573767,-0.45614198315888643,0.5235242592170835,-0.038411215879023075,-0.5433782185427845,-0.04171141562983394,-0.6902392078191042,0.7592584132216871,-0.9374312474392354,-0.22482763649895787,-0.5118257068097591,-0.6272768937051296,0.960203911177814,-0.37835479294881225,-0.3246234329417348,0.8797906273975968,0.23727643862366676,0.645824225153774,0.2683320711366832,0.22506476659327745,0.35694178473204374,0.9137309012003243,-0.6134642409160733,-0.7256180313415825,0.7748492998071015,0.282622504979372,0.8124488173052669,-0.16110710753127933,0.5507915862835944,-0.24883720744401217,-0.6012466810643673,0.2836169842630625,-0.799295567907393,-0.5570023888722062,-0.8380776671692729,-0.49784571724012494,0.6060564951039851,0.2706346926279366,0.3095064046792686,-0.9709845432080328,-0.34970996202901006,-0.7220790493302047,-0.15264031430706382,0.7200444377958775,-0.9184990599751472,-0.4641994251869619,0.6314204884693027,-0.3731600334867835,0.5308180586434901,0.15174918668344617,-0.21172536769881845,0.3688558447174728,-0.21947018569335341,0.8587095220573246,-0.9612368401139975,-0.5830858866684139,-0.896995690651238,0.29505606833845377,0.4011538801714778,-0.1591288112103939,0.9167638188228011,-0.7704632258974016,0.5214971136301756,0.6764486273750663,0.3884318028576672,0.5462372517213225,-0.05762308742851019,-0.1838457533158362,0.8088990836404264,-0.6107793319970369,0.17807690799236298,-0.2626086762174964,-0.9491305779665709,0.6326085482724011,-0.5924332421272993,-0.5736021236516535,0.4896445767953992,-0.741454582195729,0.7725062193349004,0.18283056700602174,0.5276530082337558,0.8271186635829508,-0.1937903454527259,-0.26599383307620883,0.30088985012844205,0.02327762683853507,0.17506315931677818,-0.912966875359416,-0.8179144063033164,-0.13547218404710293,0.3372887601144612,-0.7183554451912642,0.6781649105250835,-0.14268680661916733,0.22192159807309508,-0.8144421810284257,-0.5448744278401136,0.41876398492604494,0.280449578538537,0.6459179469384253,-0.017617561854422092,-0.04839695431292057,0.9532478679902852,0.61518330918625,0.8086573979817331,0.8609472047537565,-0.6676136297173798,-0.7204423677176237,-0.7474717469885945,0.21119325049221516,-0.12696455884724855,-0.6265087877400219,-0.7459039897657931,-0.9090251973830163,-0.1802544523961842,-0.7194060068577528,0.10103649040684104,0.6467580697499216,0.19773013750091195,-0.5906287818215787,0.9637517468072474,0.1111717694438994,0.3059080168604851,-0.14763790043070912,0.026926789432764053,-0.028661778662353754,-0.028521139174699783,0.35074902419000864,-0.8894789698533714,-0.5247039133682847,-0.12591103510931134,-0.6902971589006484,-0.9217478604987264,0.4028304545208812,0.7115427767857909,-0.9548306814394891,0.33837583335116506,-0.40389743167907,0.45530814956873655,-0.03492211410775781,0.7513672444038093,0.4959509172476828,0.8376733311451972,0.9096889165230095,0.8653892185539007,-0.04049103939905763,0.6551596815697849,0.8493992341682315,0.11124964663758874,-0.0017095287330448627,0.29166695568710566,0.500065338332206,-0.6423689443618059,-0.588928668294102,0.5807377677410841,-0.673832023050636,0.7032476309686899,0.7801589323207736,0.4160070433281362,0.6869230340234935,0.8216714500449598,-0.7163722310215235,-0.3837917549535632,-0.8294876930303872,0.26788822934031487,-0.8827902660705149,0.8642974197864532,-0.08805176988244057,0.10145253222435713,-0.7779641305096447,-0.7342928200960159,-0.702839610632509,-0.9528430560603738,0.8945732889696956,0.43393750954419374,0.6566342115402222,-0.4097169004380703,0.4263914474286139,-0.3380392952822149,0.23509523179382086,-0.1780526228249073,0.7222558874636889,0.11087391618639231,-0.7072931346483529,0.6669630268588662,-0.43494072603061795,0.6868776050396264,0.6197085580788553,0.9892005654983222,-0.1387989087961614,-0.5943201114423573,-0.20734008960425854,-0.7697049514390528,-0.18945415318012238,0.4644601857289672,-0.4261628962121904,0.4604609105736017,-0.6251759547740221,0.5994708891957998,0.733236400410533,0.45792170939967036,0.08457094617187977,-0.8789122169837356,-0.21287543140351772,-0.6991317593492568,-0.411229211371392,0.6989973727613688,-0.5361402663402259,-0.9723481731489301,-0.2868421538732946,-0.41075858287513256,-0.8207277324981987,-0.11419606441631913,0.8195011815987527,0.586346457246691,0.6612062114290893,0.712621402926743,0.7848236081190407,-0.31961423717439175,0.9056058549322188,-0.08618638012558222,0.1344956369139254,-0.7694690097123384,0.3941410952247679,0.5236193239688873,-0.1353308241814375,0.5515243276022375,-0.24530554004013538,0.6275545693933964,-0.49127814546227455,0.24242620496079326,0.8651150725781918,-0.13832388585433364,0.585849454626441,-0.2834516023285687,-0.5419117822311819,0.05749703664332628,-0.4579975437372923,-0.4416489074937999,-0.6656578383408487,0.8947985442355275,-0.5203884071670473,-0.024641951080411673,0.723408093675971,0.7808920568786561,-0.7991997175849974,0.2894787024706602,0.6361653860658407,0.836222245823592,-0.9118796396069229,-0.569177720695734,0.0324677606113255,-0.13997843395918608,-0.9639533506706357,0.02983437990769744,0.5315154124982655,-0.654134345240891,0.7395766023546457,0.20461243344470859,-0.06599237769842148,0.40446882136166096,-0.5468917195685208,-0.13364855060353875,-0.9492085631936789,-0.6506299590691924,0.4443159489892423,0.18829687451943755,-0.3336490895599127,0.668588706292212,-0.6112995771691203,0.9432412181049585,0.6979760536924005,0.5717243254184723,0.42813758878037333,0.5001741913147271,0.021115860901772976,-0.515894781332463,0.3329152255319059,-0.29864025628194213,0.5121914846822619,0.7466821181587875,0.7536773281171918,0.7214798917993903,-0.044900482054799795,0.21498798159882426,-0.6567899314686656,0.8724355520680547,0.43634949065744877,-0.013793432153761387,-0.2079810220748186,0.03694294113665819,-0.7944261152297258,-0.7825227938592434,-0.5364815266802907,0.10419356310740113,-0.8461759649217129,0.491483889054507,0.3683894299902022,0.7545115160755813,-0.21909981733188033,-0.32323584519326687,-0.36678584897890687,-0.010769763961434364,-0.6170217641629279,-0.052870082668960094,-0.25028233975172043,-0.38307269709184766,-0.42879784666001797,-0.265982897952199,-0.5864877044223249,-0.47861788189038634,0.538411995396018,0.8618896291591227,0.08916222443804145,0.4510251977480948,0.47231182735413313,0.8004063675180078,0.8172025620006025,0.11746671609580517,0.06642016302794218,-0.8326835483312607,-0.6242463085800409,0.374378175009042,-0.3581476407125592,0.11637796740978956,0.5789418197236955,0.21848423406481743,0.04627864062786102,0.8237158944830298,0.19226977927610278,-0.6069759381935,-0.06063976138830185,0.1462090671993792,0.8616081876680255,-0.2687160409986973,-0.7824626569636166,0.7761919847689569,-0.5904190447181463,0.7047060951590538,-0.1400964166969061,0.5343386712484062,-0.005436303559690714,0.3596856873482466,-0.3113620621152222,-0.6420396938920021,-0.9409089870750904,-0.4160744035616517,0.49506382178515196,-0.8379692123271525,-0.6433109287172556,0.9706083168275654,-0.36355324601754546,0.045177582651376724,-0.3785344413481653,-0.39168222108855844,-0.8071201886050403,0.009268215391784906,-0.4846364101395011,-0.6438331305980682,-0.591519602574408,0.7414979157038033,-0.011634986381977797,0.487043300177902,-0.16622210759669542,0.0637616328895092,-0.10368691105395555,-0.6336182644590735,-0.0021141255274415016,-0.37706987373530865,-0.507177671417594,-0.38156741950660944,0.9758558194153011,0.9163139620795846,0.5061240270733833,0.7452288204804063,0.20735482452437282,-0.578137188218534,-0.8987896400503814,0.053355636075139046,0.9005520609207451,0.1541824545711279,-0.015360857360064983,0.8059514812193811,-0.12326698331162333,0.7615782273933291,-0.21876975614577532,-0.27166321966797113,-0.23842985462397337,-0.4780814298428595,-0.7795920637436211,0.6899387338198721,-0.556269085034728,-0.8419665889814496,0.6792325861752033,-0.8961958410218358,0.5833926117047668,0.6759856347925961,-0.2664892105385661,-0.9859480690211058,0.5991608682088554,-0.12084382493048906,0.26274843933060765,0.9371965378522873,-0.7042257282882929,0.08313514897599816,-0.0639454829506576,0.22655375953763723,0.7696286379359663,-0.29515538923442364,0.9984941305592656,0.113920743111521,0.10707883443683386,0.05505328066647053,-0.8071899437345564,0.6691579353064299,0.4210110893473029,-0.8168061366304755,0.4129234729334712,0.5416074171662331,0.20013366406783462,0.9005097774788737,0.46577502274885774,-0.611828001216054,-0.5750113441608846,0.5170922442339361,-0.03348054736852646,-0.5908560678362846,-0.00023360131308436394,0.4167238539084792,-0.4272034498862922,-0.9191761799156666,-0.9989289375953376,-0.41473857080563903,-0.5406417734920979,0.6916533084586263,-0.7057368094101548,0.6853684759698808,-0.22793923551216722,0.31039753509685397,-0.6116195446811616,0.20585249550640583,0.23826340725645423,-0.9184665437787771,-0.733808140270412,-0.501147142611444,-0.15182413812726736,0.5805676910094917,-0.27240002574399114,0.22335887188091874,0.6486738575622439,0.5848519993014634,-0.11357987765222788,-0.6317183077335358,-0.9169780942611396,0.5077482452616096,-0.9348733378574252,-0.7790784141980112,0.1688303011469543,-0.2958623403683305,-0.6347402054816484,0.6009454494342208,0.47144616628065705,-0.9894248428754508,-0.2271537845954299,0.12698897067457438,0.9734286274760962,0.1690256241708994,-0.5394592988304794,-0.9052208634093404,-0.9169758721254766,-0.3813206162303686,0.22983488999307156,0.77126444876194,0.02711682114750147,-0.9306285986676812,0.9099104385823011,0.7215484310872853,-0.3743702950887382,-0.1244158772751689,0.927103151101619,0.2317544762045145,-0.3803984294645488,0.6073920386843383,-0.002934714313596487,0.3511992786079645,0.49098620656877756,0.973724253475666,-0.7628360209055245,-0.9757746439427137,-0.761432449799031,0.6834216010756791,-0.7062877025455236,-0.8405127162113786,-0.11099306773394346,0.7446239134296775,-0.49336564540863037,0.9679821729660034,0.8653159230016172,-0.8233911981806159,-0.29541585594415665,0.5988516611978412,0.5043377964757383,-0.8108880445361137,-0.9397716508246958,-0.5453552026301622,-0.12421343568712473,-0.4009483805857599,0.016139655373990536,-0.8985327649861574,-0.4531645216047764,-0.9849202898330986,0.7027279352769256,0.8534620869904757,-0.33955605421215296,0.1843918478116393,0.6770088351331651,-0.19710989110171795,0.44591274950653315,-0.6959292492829263,0.21958425687626004,0.9544605510309339,0.8343310165219009,0.023081766441464424,-0.750581000931561,0.0574765307828784,-0.5712033906020224,-0.21179085038602352,-0.008017436135560274,0.7613517590798438,-0.2765432456508279,0.5649461555294693,0.9796927790157497,-0.34123008232563734,0.9681689306162298,0.2580831707455218,0.650646595750004,0.7956378618255258,0.4776264256797731,0.6240037218667567,-0.8107075379230082,0.15141385747119784,0.49249133188277483,-0.6769037540070713,-0.8271254636347294,-0.7649945402517915,0.33865204686298966,0.5829336955212057,-0.9208736312575638,0.07057510921731591,-0.8791045593097806,-0.4095891769975424,-0.30485517531633377,0.31112512992694974,-0.011084957048296928,0.15039030741900206,0.6604653215035796,0.06422507157549262,-0.4906564839184284,-0.2847478543408215,0.7630984419956803,-0.9320632400922477,0.11880379868671298,-0.8678113501518965,0.2084223199635744,-0.010541817639023066,-0.20613804133608937,0.09058329416438937,-0.803007937502116,0.1345454752445221,0.014833744615316391,0.7742812116630375,0.8609043881297112,0.627637563738972,0.3375052660703659,0.2708956548012793,-0.7392272930592299,-0.6688213814049959,0.9298280826769769,0.10419015912339091,-0.7618888458237052,-0.8672371627762914,0.7611231515184045,0.4460486136376858,0.7935081268660724,-0.5527306785807014,-0.13006411911919713,-0.8707733782939613,0.6566488519310951,0.6458979118615389,0.802834449801594,-0.27562011405825615,-0.5779481641948223,0.8738862900063396,0.015335121657699347,-0.34981262497603893,0.9510924303904176,0.6129149803891778,-0.09188946476206183,0.1544468947686255,0.4334515039809048,-0.36580568784847856,-0.21720956405624747,0.6369630107656121,-0.3237561611458659,-0.1292382823303342,0.39710020646452904,0.6466103638522327,0.584129307884723,0.07898484356701374,-0.7311249328777194,0.6492587435059249,-0.02781352773308754,0.08621763158589602,-0.7714383099228144,0.9433950926177204,0.7260461817495525,0.21398496581241488,-0.39284309977665544,0.6354156085290015,-0.6279410957358778,0.9635307490825653,0.9524271301925182,0.7264369162730873,0.6053297794423997,-0.4320697388611734,-0.4319741204380989,0.2097893967293203,-0.900255975779146,-0.3160083759576082,-0.4571132925339043,0.7490111170336604,0.011903440114110708,0.8810426662676036,0.5406616241671145,0.3079822356812656,-0.502359299454838,-0.9107357324101031,0.14914783742278814,0.2268472439609468,-0.8954913942143321,-0.5358694563619792,0.24610969750210643,0.40857378439977765,0.3706952375359833,-0.02581617934629321,0.824123346246779,-0.5951535571366549,0.579887846019119,-0.84246780956164,-0.2737068319693208,-0.2656265161931515,0.2051228596828878,0.6830774550326169,0.4951844750903547,0.8899358878843486,0.9083065763115883,0.3898367970250547,-0.45701369689777493,0.5667615556158125,0.4798688730224967,0.51097617065534,0.0749181779101491,0.6354310782626271,0.8018570397980511,0.2403023554943502,0.1937099671922624,0.6961930864490569,0.3815146656706929,-0.7012418550439179,0.4085181434638798,-0.27722626086324453,0.1503826598636806,-0.7361551285721362,0.7375339362770319,0.9823003336787224,0.88691276172176,-0.9784235311672091,-0.5132340011186898,-0.13937942450866103,-0.20936576183885336,0.4250108520500362,-0.8678155899979174,-0.9362759762443602,-0.39154821587726474,0.2475652820430696,-0.9102827841416001,0.3394213770516217,-0.2613689387217164,0.44962479220703244,0.42174922628328204,0.9405221873894334,-0.8465789188630879,0.9381180554628372,0.4767494760453701,-0.8968417313881218,-0.5614835196174681,-0.8277070638723671,0.6545128114521503,0.8042407985776663,0.5776822394691408,0.9573821169324219,0.8274815636686981,-0.8012256412766874,0.1112489216029644,-0.7601285432465374,0.6402506083250046,0.8047212013043463,0.5598714286461473,0.724296486005187,0.9455097280442715,-0.57994753587991,0.22383042331784964,0.21717216353863478,-0.43199990363791585,-0.8639783393591642,0.3529650461860001,-0.6268640630878508,-0.27313815196976066,-0.7204495798796415,0.5577572351321578,-0.4786120215430856,-0.6607421808876097,-0.18375567765906453,-0.49293685937300324,0.6501188268885016,0.6396108665503561,-0.23957061348482966,0.8172008502297103,0.6933647799305618,0.909510760102421,-0.17151416884735227,-0.10228003282099962,-0.792803002987057,-0.41231583105400205,-0.3190834568813443,-0.3369599664583802,-0.003992786165326834,-0.3377053691074252,0.5883041061460972,0.9075008160434663,-0.9028097274713218,0.7254312164150178,0.055984411388635635,-0.7524812696501613,0.24303197441622615,-0.7652715346775949,0.6183444922789931,-0.7370357671752572,0.7327800947241485,0.03507041372358799,0.01503319013863802,0.9348570010624826,-0.7091168579645455,0.7238237969577312,-0.35145058296620846,-0.98289182363078,0.2750846645794809,0.8104576719924808,-0.7639959501102567,-0.9500829824246466,0.09343699784949422,-0.09791838610544801,0.01031194906681776,-0.8132887212559581,0.1409571268595755,-0.9973844299092889,0.45559049397706985,0.23445740435272455,-0.5959644741378725,-0.4572787471115589,-0.0070800152607262135,-0.6256255023181438,0.03780214209109545,0.34850450372323394,-0.563855835236609,0.8691294281743467,-0.4159263437613845,-0.8562016957439482,0.12618694687262177,-0.9209130769595504,0.614423586986959,-0.10150704113766551,-0.27407287480309606,-0.5681458874605596,-0.663793420419097,-0.2838572417385876,-0.38572439597919583,-0.28388625709339976,-0.5747645981609821,0.9944676584564149,-0.7488340716809034,0.7722116569057107,-0.30058353720232844,0.9419132731854916,-0.8177303420379758,-0.00023980392143130302,0.8863307046703994,0.10592031618580222,0.7258528750389814,0.5724823982454836,-0.15296276984736323,-0.505134813953191,0.2748570288531482,0.7294701123610139,-0.4864394795149565,0.05270595848560333,-0.6749830651097,-0.0984043637290597,-0.05231257202103734,0.8275480158627033,-0.30992657504975796,0.7981276391074061,0.5685020941309631,0.6376840947195888,-0.1617443603463471,0.7931374730542302,0.5163836320862174,0.48661952652037144,-0.17045534448698163,-0.5069714668206871,-0.8449258399195969,-0.5346089727245271,0.674823772162199,0.846843755338341,-0.4268554002046585,-0.6749626751989126,-0.11526907840743661,0.3777408483438194,0.1778016434982419,-0.5758990873582661,-0.31313508935272694,0.05110957007855177,0.9612151021137834,0.9774636756628752,-0.8021297887898982,0.8370654578320682,-0.5163239128887653,0.9633438601158559,-0.3516978807747364,-0.49461534479632974,0.6714440598152578,0.0031716586090624332,0.22746741026639938,-0.7308354643173516,0.4600044274702668,-0.9625682183541358,0.3861431125551462,-0.3452453715726733,-0.2461233977228403,-0.12659390084445477,-0.13292916305363178,-0.3425932410173118,0.1884155496954918,-0.019317191559821367,0.3685045181773603,0.7761555714532733,0.9568771105259657,-0.08867815602570772,0.48885895730927587,0.801778799854219,-0.8665823638439178,-0.2116069057956338,-0.9651742177084088,-0.8726207059808075,-0.8328475803136826,-0.3301008655689657,0.5731759639456868,-0.40278303949162364,0.5106112393550575,0.31682782154530287,0.3577819154597819,-0.3793607787229121,0.01360468054190278,-0.22940746182575822,0.326434628572315,0.31542321760207415,0.916175315156579,-0.4350772802717984,-0.005916799418628216,-0.9093101327307522,-0.31389770237728953,-0.46574984351173043,0.0411352152004838,-0.7298297989182174,-0.6881436444818974,0.7719018463976681,0.156749848742038,0.6200362294912338,0.6872880756855011,0.7813924648799002,-0.5352509734220803,-0.6396593181416392,-0.9592208196409047,-0.7009951784275472,-0.450345850083977,0.6301842001266778,0.005257753189653158,0.619461530353874,0.666778031270951,-0.9911769577302039,-0.6332585620693862,0.29048812901601195,0.7570481654256582,0.20722631411626935,0.24475064128637314,0.7571855173446238,0.27307612216100097,-0.13015932915732265,-0.46157510858029127,0.3969040126539767,0.6177621870301664,-0.5707066124305129,0.6916436478495598,-0.48370275693014264,-0.12909425422549248,0.08659151196479797,0.728090385440737,0.6875366661697626,0.011507071554660797,-0.6845741039142013,0.3984822276979685,-0.6556193642318249,-0.8167736222967505,0.6993950996547937,-0.8816948086023331,-0.5499584008939564,0.36961756832897663,-0.11777156917378306,-0.5504281506873667,-0.8838140680454671,-0.21558718429878354,-0.3835035916417837,-0.8649515360593796,0.25609541684389114,-0.2798633608035743,0.4868125421926379,-0.22632049582898617,0.4945563646033406,0.18381966231390834,0.7520617372356355,0.8024063967168331,0.6521540898829699,0.11198229249566793,0.7188783646561205,-0.7844787733629346,0.5561587642878294,-0.08618053421378136,-0.5617804704234004,0.3971950621344149,0.8355408045463264,-0.33855802984908223,0.9930685898289084,-0.6534701827913523,0.7815751084126532,0.8720532339066267,-0.11361932475119829,0.8571201283484697,0.35122279683128,0.9062680313363671,0.6041233628056943,-0.16125271329656243,-0.2538146902807057,-0.03539823880419135,0.16493867617100477,0.28247385239228606,-0.4399866978637874,0.23560296138748527,0.6499584787525237,-0.7724355785176158,-0.02903233328834176,-0.22129129711538553,0.022494882345199585,0.9400847069919109,-0.7544680680148304,0.2078154538758099,-0.26482679415494204,0.5906106303445995,0.5127816083841026,0.3093810039572418,-0.0352315423078835,0.13219496002420783,0.180111113935709,-0.9091227017343044,0.30639752978459,0.10756954969838262,0.9019570671953261,-0.6039831712841988,0.3054913282394409,-0.1017501619644463,-0.47644689958542585,0.9759688125923276,-0.5490167126990855,-0.9913167916238308,0.24240683857351542,0.4740912914276123,0.18188870046287775,-0.2071622284129262,0.3482100935652852,-0.1638574479147792,-0.17293071001768112,-0.9606232764199376,-0.7220814730972052,0.39612993504852057,0.49614431662485003,-0.4561827131547034,-0.4510729038156569,0.2967903157696128,-0.36222360702231526,-0.29068963835015893,-0.3554362333379686,0.6871088994666934,-0.746315480209887,-0.8138990141451359,0.8369511049240828,0.8096054554916918,0.505609589163214,-0.3456341056153178,0.9280867902562022,-0.9123757248744369,0.1473691095598042,0.8294658875092864,-0.653570753056556,0.12747036293148994,0.6749192052520812,0.1142198839224875,-0.12974402122199535,-0.9498646697029471,0.03760418901219964,0.45514118717983365,0.5091069345362484,-0.4551462805829942,0.42143802903592587,0.3124409965239465,0.9974625972099602,0.7292405338957906,-0.18586468882858753,-0.8019097414799035,0.5912056681700051,-0.7737362161278725,-0.9025779315270483,-0.45274025201797485,-0.7465341449715197,-0.0627818126231432,0.9393840194679797,0.7067204904742539,0.5575031777843833,-0.25719713512808084,0.6405969099141657,0.2908015917055309,0.23385206144303083,-0.43357708491384983,0.8120194314979017,0.7900692936964333,0.9711399106308818,-0.23376007098704576,-0.03332062438130379,-0.10206148074939847,0.9717258978635073,0.5385132129304111,0.38293479615822434,0.981525435578078,0.6024083578959107,0.4583710068836808,0.7831723531708121,0.9073637374676764,-0.6776234954595566,-0.09578523645177484,-0.23117467435076833,0.28903738502413034,0.45290236733853817,-0.32033935049548745,-0.46702476125210524,-0.16409621154889464,-0.9702133433893323,0.42536276252940297,-0.7870925408788025,0.795777284540236,-0.030906142201274633,0.7225985396653414,0.7821499370038509,-0.3082864019088447,-0.18911758856847882,-0.8523734309710562,0.528222304303199,0.6986481370404363,-0.8796959850005805,0.6120456699281931,-0.878097734414041,0.647869014646858,-0.4998757941648364,0.4853968913666904,0.39879642706364393,0.14903335506096482,0.38510092068463564,0.8992978702299297,0.9679651241749525,0.6656700586900115,0.22385586611926556,0.6156923184171319,0.7568763964809477,-0.6977791492827237,-0.5577353062108159,-0.5431930995546281,-0.13902928726747632,-0.9130677557550371,-0.06811439339071512,0.7070435523055494,0.5224223313853145,0.8712271698750556,0.2327450946904719,-0.5744520872831345,0.6603097910992801,0.9721502009779215,-0.40400250535458326,-0.9761747037991881,0.6294181710109115,-0.23215066781267524,0.1434407038614154,0.33876668103039265,0.12036551395431161,0.4597931308671832,-0.28648192482069135,-0.6554125491529703,-0.8514274028129876,-0.41342419339343905,-0.48594531463459134,0.30034285318106413,0.9593518134206533,0.23580470262095332,0.788161444477737,0.10342859663069248,-0.3295100755058229,0.9129616022109985,0.9861997594125569,-0.6230085543356836,0.932270206976682,-0.5198935228399932,-0.9843969717621803,0.8915071371011436,-0.604916603770107,0.8940497958101332,0.4399032765068114,0.9030881091021001,-0.8000748851336539,0.4272651798091829,-0.4637423902750015,-0.2222624863497913,0.5477680112235248,-0.040696131996810436,-0.3199098166078329,0.6000969796441495,-0.2818656135350466,-0.5613642116077244,0.967150881420821,-0.6808495223522186,0.7588957585394382,0.24643168691545725,0.5743516450747848,-0.09815035155043006,0.5375041621737182,-0.09085957054048777,0.23588229855522513,0.665211078710854,-0.06822921754792333,-0.13154223607853055,0.7247389685362577,-0.6839206423610449,-0.7012055171653628,0.18020108295604587,0.538042489439249,0.9712803289294243,0.19465377647429705,0.8069626353681087,-0.6468992461450398,0.9765895423479378,0.4165410972200334,-0.9365834919735789,-0.4927844116464257,0.5268431948497891,-0.6219068341888487,-0.2047732202336192,0.4813241930678487,-0.9876718707382679,-0.06361430510878563,-0.6075051152147353,-0.18068150943145156,-0.15622984012588859,-0.01907847449183464,-0.7623206996358931,-0.3692374397069216,-0.8230327642522752,0.4783329227939248,0.7048544301651418,-0.484337342903018,0.11249134643003345,0.07720531243830919,0.3344172057695687,0.23110127216205,0.6660145842470229,0.7712250901386142,-0.26101619377732277,0.08529585879296064,-0.03253786079585552,0.5160015597939491,0.47664983151480556,0.8148089521564543,-0.1683450248092413,-0.32559615187346935,-0.1564434003084898,0.22892876854166389,-0.9862833004444838,-0.5397751769050956,-0.6929968986660242,0.2491158195771277,0.7416621181182563,0.13646711828187108,0.7420362490229309,-0.008126633241772652,0.9879846372641623,0.7196557768620551,0.5364923821762204,0.02670988906174898,0.7208014014177024,-0.13278493424877524,-0.1720699965953827,-0.26707784458994865,0.02869565784931183,-0.6503639919683337,-0.2092846017330885,-0.8741874378174543,-0.36067104060202837,0.3151057339273393,0.8208026778884232,-0.9681580304168165,-0.5201518340036273,-0.9997020135633647,-0.11038931692019105,-0.7700271201319993,0.7686806358397007,0.8397100791335106,-0.515626207459718,-0.5280152689665556,-0.17348533682525158,-0.8954450869932771,0.3350047026760876,-0.8906524968333542,-0.4251873018220067,0.7166296634823084,0.7671330594457686,0.751390881370753,0.16556893195956945,-0.0647601755335927,-0.7446619151160121,0.4595189606770873,-0.1822036844678223,0.8585437703877687,-0.8580897031351924,0.4839632357470691,-0.043777747079730034,-0.45895381504669785,-0.3556172475218773,0.14323663711547852,0.8607911365106702,-0.08432489773258567,0.7019741465337574,0.3549063941463828,0.7915167305618525,-0.06293892161920667,0.7280922932550311,0.0625325352884829,0.44673361955210567,-0.23290661862120032,-0.5376851931214333,0.9965085024014115,0.3737306958064437,0.9244534005410969,-0.38195024989545345,-0.30034106643870473,-0.8465254902839661,0.1754453736357391,0.5264115738682449,0.5756527441553771,0.22115588048473,-0.6903481725603342,0.792983753606677,-0.21922097029164433,0.6309475069865584,-0.8164080269634724,0.7011794121935964,0.5626377640292048,-0.0382443075068295,0.7499041915871203,-0.4527107812464237,0.13937437860295177,0.9415081162005663,0.7544190441258252,0.7381222397089005,0.4521692097187042,0.8452424970455468,-0.7673227065242827,0.9595911474898458,0.694146890193224,-0.02967938780784607,-0.6347142998129129,-0.14437873475253582,-0.5030276109464467,-0.4260501842945814,0.08264117687940598,-0.6714892033487558,-0.4139008894562721,0.948455261066556,0.2905831285752356,0.8829061649739742,-0.5232485928572714,-0.8108756756410003,-0.7877837060950696,0.9825102332979441,0.3146188696846366,0.9290258390828967,0.527553562540561,0.7250422602519393,-0.7609637579880655,-0.4533701315522194,0.9045046251267195,-0.4175291145220399,0.18051642132923007,0.05951230600476265,-0.5497791105881333,0.34316875971853733,-0.9280003518797457,-0.4748749155551195,0.8346228976733983,-0.30261415243148804,-0.18429244309663773,-0.45371072413399816,-0.5773208164609969,-0.9577993950806558,0.6828318405896425,0.6968028014525771,0.37897040229290724,-0.7076249518431723,0.3896373603492975,-0.11654979782178998,-0.14316870784386992,0.12414467195048928,-0.3110905960202217,-0.3292832258157432,-0.2679529436863959,-0.11137124756351113,0.8853415534831583,-0.7035211743786931,0.8655161680653691,0.27054336853325367,0.5696358261629939,-0.0913249677978456,-0.5576326847076416,0.40587304113432765,-0.4489874206483364,0.11401179386302829,-0.7743787937797606,0.7266873549669981,0.8928206572309136,0.887005599681288,-0.2718433663249016,0.3710913001559675,0.18199328007176518,0.31839524721726775,0.610238024033606,0.2507934239692986,0.35285733453929424,-0.10544467624276876,-0.3204016420058906,-0.06372029148042202,0.2766963103786111,0.08579470496624708,-0.5097353160381317,0.9584814817644656,0.6078526843339205,-0.14302457962185144,-0.40227941470220685,0.1042559971101582,0.27079546824097633,-0.8741330085322261,0.18244105484336615,-0.8283054200001061,-0.8741754358634353,0.09259714232757688,-0.07053846027702093,0.5818039230071008,0.019152332562953234,-0.6519699087366462,0.6156506156548858,0.8546836222521961,0.9311259654350579,-0.24839414935559034,0.5339831421151757,-0.8252782262861729,-0.6079877289012074,0.6763857849873602,-0.46527410252019763,0.7941741067916155,0.5828632572665811,-0.6863900208845735,0.8422454525716603,-0.8186813527718186,-0.42033311212435365,0.25605779234319925,0.44352968502789736,-0.7999045611359179,0.7343760579824448,0.10397426737472415,-0.9617257094942033,0.4951484613120556,0.32876190869137645,-0.9049732745625079,0.026759513653814793,0.7729465342126787,-0.8170598968863487,-0.229104015044868,-0.20270950626581907,-0.859766854904592,0.6360454140231013,0.6505995760671794,0.9423684943467379,-0.43849150836467743,0.12856005178764462,-0.20872046006843448,-0.7574803591705859,-0.5632603182457387,0.8587758741341531,-0.23820796981453896,0.8288250509649515,0.6968537890352309,0.5746929170563817,0.6133362343534827,-0.6159980185329914,-0.8732669572345912,-0.3879026542417705,-0.9850658737123013,0.29016088834032416,-0.11230450915172696,0.8985191266983747,-0.7843044269829988,0.39972573053091764,-0.9116470352746546,0.225472129881382,0.45615773741155863,0.004178868141025305,0.19433085713535547,-0.3100270237773657,-0.05901697650551796,-0.5889099878259003,0.513843750115484,-0.4037293535657227,0.3532894654199481,-0.6181320431642234,0.5422286204993725,0.9638409246690571,0.3295127605088055,0.3039790876209736,0.1679039178416133,0.7686982937157154,0.44536556070670485,-0.4159924522973597,0.2741723656654358,0.593188573140651,0.5019056275486946,-0.4482906488701701,0.5242989347316325,-0.19090044870972633,-0.8814767636358738,0.39445066498592496,0.12927071563899517,0.772239962592721,-0.0034956256859004498,-0.24853895558044314,-0.18757917452603579,-0.9628822207450867,-0.843595621176064,0.9131945963017642,0.3717231657356024,-0.8289098916575313,0.9446126548573375,-0.8169864364899695,-0.5193953542038798,0.532803223002702,-0.6113579636439681,-0.36154326563701034,0.9816875774413347,0.9896141393110156,-0.9044261234812438,0.07511943159624934,-0.0754523309879005,0.07285414077341557,0.5537732145749032,-0.4739439757540822,0.5239174165762961,0.7269706632941961,0.6487762071192265,-0.6335133002139628,0.7230282188393176,-0.7000632011331618,-0.15302634285762906,-0.829896888229996,-0.38034683652222157,0.2732316176407039,0.0923133441247046,0.35945259500294924,-0.3952498701401055,-0.9282744321972132,0.3833828652277589,0.5557065429165959,-0.5184747101739049,0.04795632977038622,-0.6644943626597524,-0.8482105722650886,-0.3816355736926198,-0.8701774594374001,0.06896404596045613,0.058503422886133194,0.6749356808140874,-0.9908686554990709,0.16552778147161007,-0.9898825180716813,-0.981473186518997,0.6995899635367095,0.21710528852418065,0.4881334719248116,-0.45143540808930993,0.08352131396532059,-0.03174434043467045,-0.9284071130678058,0.42398671340197325,-0.6282486999407411,0.04630049550905824,0.42686719726771116,0.058796774595975876,-0.5588362370617688,0.5447495863772929,0.36668206518515944,-0.14003630355000496,0.0872164610773325,-0.9546088837087154,0.8725430425256491,0.7407004507258534,-0.15745549462735653,-0.9529061079956591,0.06493224250152707,-0.05166290095075965,-0.6141010923311114,0.4674282078631222,-0.2973338244482875,0.4589411257766187,-0.8960580485872924,-0.7803017175756395,-0.7254112726077437,-0.4049822171218693,-0.6905069686472416,-0.005475766956806183,-0.8117700573056936,0.691217050421983,-0.942954383790493,0.9178970362991095,-0.49235050613060594,0.0249306783080101,0.7969324965961277,0.780191661324352,-0.07372596533969045,0.32241237349808216,0.21040517976507545,-0.7383575858548284,0.5081473477184772,0.7259145844727755,-0.9845824199728668,-0.6636858806014061,0.8066576803103089,-0.6029660520143807,0.7104578386060894,0.6167497388087213,0.7641498227603734,-0.68399971537292,-0.6521187736652792,-0.27721759490668774,-0.8461729865521193,-0.4527577571570873,-0.5232291831634939,0.4685994405299425,-0.6473324378021061,0.708786359988153,-0.1557024889625609,0.8638926167041063,0.9665659926831722,0.9551224973984063,-0.506779792252928,0.19329718593508005,-0.31816134974360466,0.7133004190400243,-0.5353542044758797,0.12872410425916314,0.28641849430277944,0.3793621431104839,0.39503413159400225,-0.8568593682721257,0.09331131912767887,-0.48443100648000836,0.7765888227149844,-0.628513750154525,0.33182554179802537,-0.3222741517238319,0.2885329592972994,-0.5810437039472163,0.9531257776543498,0.186383418738842,0.47547476226463914,0.7027687076479197,-0.3161811609752476,0.5220206021331251,-0.3040510299615562,0.5880394568666816,0.6881598280742764,-0.22908139321953058,-0.3449371927417815,-0.9532102071680129,-0.8607439347542822,0.5844518295489252,0.26283580157905817,-0.26724156318232417,-0.5137059995904565,0.7112172855995595,0.41176904598250985,0.2649195841513574,-0.3265660274773836,-0.6750289113260806,-0.5926344213075936,-0.9688083990477026,0.774506420828402,-0.39170269295573235,-0.3482561223208904,-0.049641084391623735,0.6559806973673403,0.2181338844820857,-0.8245873879641294,-0.9537466857582331,0.8400382329709828,-0.37573852576315403,0.052404392044991255,-0.16342814452946186,-0.6018751794472337,0.020277753937989473,-0.2248479537665844,-0.7680290890857577,-0.005875800270587206,0.1767033883370459,0.9699384272098541,-0.7692737118341029,0.1743250461295247,-0.4719821563921869,-0.5332409115508199,0.06897973828017712,-0.8748208079487085,0.062420666217803955,-0.1479687076061964,-0.5100079705007374,-0.5085633569397032,-0.3769973055459559,-0.7950866692699492,-0.08127709198743105,0.564087672624737,-0.22604499012231827,-0.21462996723130345,0.7012769840657711,0.46265271166339517,0.009182120207697153,0.5872838729992509,0.8837567395530641,0.29924105387181044,-0.7385030663572252,-0.1562399691902101,-0.6889225095510483,-0.21418299060314894,-0.5660558333620429,0.5238942536525428,0.022414573468267918,-0.3400969239883125,0.8786903098225594,0.13052648212760687,-0.607588978484273,-0.23243753798305988,0.7620001188479364,0.24333252431824803,0.8648140616714954,-0.7738275374285877,-0.9346533692441881,0.24924359377473593,-0.8559370515868068,-0.2459353469312191,-0.24664115952327847,-0.07628271775320172,0.1234243935905397,0.32469222135841846,0.9742409596219659,-0.6010081106796861,0.3484907723031938,-0.4949136469513178,-0.3464395431801677,0.4608170227147639,0.8630778323858976,0.26843039132654667,-0.021465418860316277,0.13869555667042732,-0.8918585600331426,-0.17405234137549996,-0.17672234121710062,-0.5951059516519308,0.5137693048454821,-0.5755660417489707,-0.9921518773771822,0.8992378362454474,0.16564209619536996,-0.5365947810932994,-0.9096399266272783,0.638107554987073,-0.7839983482845128,-0.8501107590273023,0.5935277971439064,-0.8829000894911587,-0.31256575509905815,0.8165099462494254,0.9935536687262356,-0.7460489082150161,-0.9913019076921046,0.3058603764511645,-0.45132536068558693,0.11293268529698253,-0.609813520219177,0.38176914025098085,0.13212434854358435,0.24564781738445163,-0.5474350200966001,0.632935309316963,0.8328584092669189,-0.7780707855708897,-0.13580821314826608,-0.8731346083804965,-0.81918735941872,0.32530773943290114,-0.6059897262603045,0.06369028380140662,0.14734811754897237,0.5706098382361233,-0.556869812309742,-0.5618907301686704,-0.5623221504501998,0.8410315355286002,-0.036606356501579285,-0.1848989869467914,0.7465337160974741,-0.4187241424806416,-0.2633076445199549,0.9339346708729863,0.5403690980747342,-0.42469476675614715,0.6955156126059592,-0.27662844583392143,-0.975127165671438,-0.6264331266283989,0.9687020238488913,0.4884791593067348,-0.9516451759263873,0.06098055001348257,0.30047290632501245,-0.07339236978441477,-0.8075073952786624,-0.19440737087279558,0.49442161712795496,-0.5279949139803648,0.8132765665650368,0.3791084326803684,0.6178659619763494,0.006337370257824659,-0.2476114435121417,-0.5629021022468805,-0.7862034672871232,-0.9148346656002104,0.8494184883311391,0.1753486953675747,-0.8121872851625085,0.8104160451330245,-0.3486542799510062,0.5706157106906176,0.15879582380875945,0.11520939180627465,-0.49750907626003027,-0.918811937328428,-0.3765150918625295,0.5516118733212352,-0.4675870109349489,0.5637720692902803,0.6940536531619728,-0.7121346034109592,0.3335853349417448,0.03692561341449618,0.07855921005830169,0.1888809739612043,-0.24132494907826185,0.9822136615402997,0.2983135562390089,0.18096876563504338,-0.33589982613921165,-0.22715188236907125,0.2710989094339311,0.7824750705622137,0.14138414291664958,-0.2771644168533385,-0.36328734923154116,-0.5531488466076553,0.31332566728815436,-0.885585097130388,0.8035956704989076,-0.8977722027339041,-0.665475923102349,0.18722571618855,-0.4344905372709036,0.7500513205304742,-0.15811851853504777,-0.757520395796746,-0.010053680278360844,0.30097505589947104,0.9394003991037607,0.3657953292131424,-0.051744607742875814,0.5460684923455119,0.18765413062646985,-0.28447232535108924,0.18680975679308176,-0.37616542587056756,-0.24773274408653378,-0.019508393481373787,0.5894674086011946,-0.35681553836911917,0.5484026726335287,-0.915205302182585,0.11838980112224817,0.8903397344984114,0.51175995497033,0.11087736301124096,-0.44216747814789414,-0.01884206710383296,-0.47653365042060614,0.9265776569955051,0.9430876723490655,-0.6416703178547323,0.5107234371826053,0.8504733718000352,-0.22002668911591172,0.7891866620630026,0.4953968711197376,0.7031359509564936,-0.8630133029073477,0.08422379940748215,-0.08535068621858954,0.7963916528970003,-0.15051529463380575,-0.13000563345849514,0.5549887549132109,-0.4063862659968436,0.7267408706247807,0.013566355686634779,0.9013268505223095,0.2651932751759887,0.765805066563189,-0.02952052839100361,0.717480406165123,-0.0178187214769423,0.6474984576925635,-0.7252625776454806,-0.9341438142582774,-0.2482467503286898,-0.7982796360738575,0.8705339897423983,-0.6700992472469807,0.44442435586825013,0.7850691564381123,-0.7970541631802917,-0.24536588042974472,-0.5413471790961921,-0.6799582429230213,-0.3376654926687479,0.14945229375734925,0.9560449267737567,0.20223177643492818,0.5398292164318264,0.03507512807846069,0.3273142781108618,-0.5931135816499591,-0.5596684361808002,-0.9691376965492964,0.3054801723919809,-0.7068465291522443,0.21222615987062454,0.6926260078325868,-0.4163837800733745,-0.08092081779614091,0.11558415042236447,-0.801443500444293,0.8045251499861479,-0.5922568868845701,-0.30375522561371326,-0.6810838025994599,-0.3815366430208087,-0.44020167691633105,-0.4795782398432493,-0.12912897020578384,0.5131799886003137,0.11935756728053093,-0.1692398744635284,0.756745079997927,-0.030841742176562548,0.0006445790641009808,0.6510075284168124,0.20077932812273502,0.5569983259774745,0.384815854486078,-0.6944558587856591,-0.9162816447205842,-0.43283998034894466,-0.8982826988212764,0.4560724017210305,-0.43017218774184585,0.1995077091269195,-0.5437736953608692,-0.3950381288304925,0.39675855403766036,0.013878320343792439,-0.8801562646403909,0.8924832851625979,0.9454686129465699,-0.07394236326217651,0.5420172079466283,0.3524032416753471,0.19986676424741745,-0.8684983495622873,-0.4457996324636042,0.40261440305039287,0.2971074250526726,-0.9787914929911494,-0.051472864113748074,-0.4604414775967598,0.38603553595021367,-0.8282994870096445,0.561059114523232,0.6144917947240174,-0.6927244188264012,0.5648322836495936,0.8309418265707791,0.9018682311289012,-0.6141228568740189,0.5949004357680678,0.3284276225604117,0.9124404923059046,0.7907609739340842,-0.6159777650609612,0.5851848470047116,0.4072644510306418,0.34838353376835585,0.3882291819900274,-0.6030505248345435,-0.2094316310249269,-0.13525367388501763,-0.8314001364633441,-0.37102772295475006,-0.48243736708536744,0.7786578685045242,-0.08613251242786646,0.14491152623668313,0.8549360129982233,0.3403734159655869,0.9318998595699668,0.4128222307190299,-0.6536652911454439,-0.011657847557216883,0.6991671528667212,0.622455878648907,-0.894392394926399,0.2224153890274465,-0.24858140153810382,-0.3612271132878959,-0.3960063108243048,-0.41743548354133964,-0.037786510307341814,0.4630377716384828,-0.03900126786902547,-0.8754496821202338,0.8851965442299843,0.7246619281359017,-0.8484594323672354,-0.6317265802063048,-0.9557170774787664,-0.8731710873544216,-0.9026698218658566,-0.3541833767667413,-0.577297056093812,-0.08441145438700914,0.6517244335263968,-0.6545415502041578,0.8540514442138374,0.8627402307465672,-0.4172901208512485,-0.3725729458965361,-0.7996668829582632,-0.6376284589059651,0.8794252630323172,0.6951344860717654,-0.48658867040649056,-0.16152595775201917,-0.018277364317327738,-0.2208618689328432,-0.5211051311343908,0.5532190171070397,0.9267810978926718,0.2758064866065979,0.1402477454394102,0.5517077730037272,-0.5638232664205134,0.8738870723173022,0.6129605229943991,0.18018236942589283,-0.47146946331486106,0.6981676779687405,0.8014549873769283,0.7822800590656698,-0.7771233203820884,0.8488580570556223,0.16779872309416533,0.20912700472399592,0.8306575873866677,0.12514493195340037,0.32905893586575985,-0.3572778753004968,-0.8427641643211246,0.17205351078882813,0.16089559299871325,-0.23618059372529387,0.3410749603062868,0.37749898014590144,0.4427288076840341,0.15998389991000295,0.5426706806756556,-0.11712141474708915,0.6815489875152707,0.8483825623989105,0.6104839853942394,0.2566202343441546,-0.7846220573410392,-0.05978123098611832,-0.3871982921846211,-0.8320860848762095,0.7680381741374731,0.848819999024272,-0.5711574922315776,0.666886402759701,-0.6669602040201426,-0.678141116630286,0.45701003773137927,0.7958722119219601,-0.7844359604641795,-0.28019543131813407,-0.7464921963401139,0.8494777716696262,-0.6729863011278212,0.2184260068461299,-0.5280918194912374,-0.7124724672175944,0.6972387889400125,-0.38663075445219874,-0.41476570442318916,-0.02040264941751957,0.7622316381894052,-0.703492549713701,0.4561440791003406,-0.957439087331295,0.6230228650383651,-0.06118251569569111,0.721433084923774,0.2268381672911346,-0.10818007541820407,0.082180708181113,-0.6870372942648828,0.776089393068105,-0.8382650585845113,-0.5389576493762434,0.5430870703421533,-0.02049486478790641,-0.83092011930421,-0.13278801087290049,-0.9440904036164284,0.49276957800611854,-0.8356999293901026,-0.7004990386776626,-0.12042487878352404,-0.15890326164662838,0.7801467478275299,0.04892599768936634,-0.9593338947743177,0.7457674476318061,0.18087485246360302,0.2786399847827852,-0.736278286203742,0.48875387758016586,0.5256031742319465,-0.804907429497689,0.4228982958011329,-0.14974220329895616,0.8544895215891302,0.611030075699091,0.9814709606580436,-0.20775424595922232,-0.44840102177113295,0.9555960218422115,0.1843258668668568,-0.5131724025122821,0.6394330253824592,0.09305828250944614,-0.9111116877757013,-0.26093556778505445,-0.1656616092659533,-0.713943260256201,0.24585652304813266,-0.5459722052328289,-0.16388449585065246,0.313974647782743,0.3810625048354268,-0.05373803013935685,0.4729543887078762,-0.9654020923189819,0.48017287347465754,0.49242662778124213,0.20041248202323914,0.10312028555199504,-0.05993395438417792,-0.5301290769129992,-0.13337874971330166,0.7863641483709216,-0.46904340805485845,0.8147461600601673,-0.6766835623420775,-0.2454681033268571,0.18405279330909252,0.011537810787558556,0.010799083393067122,0.6238817432895303,-0.9685113360174,0.7992860204540193,-0.32010580971837044,0.45565735502168536,-0.4300978537648916,0.21809727977961302,-0.3358742012642324,0.5908320536836982,-0.3007551268674433,0.7697106618434191,-0.7388565801084042,-0.26866705529391766,-0.043446789495646954,-0.23330974113196135,0.2246210710145533,-0.8895899127237499,-0.5431140544824302,-0.8678933288902044,0.21322582149878144,-0.627858997322619,-0.7515712431631982,0.991339907515794,-0.987926188390702,0.32092556776478887,-0.8244286514818668,0.4661955116316676,-0.9432404818944633,-0.8576797773130238,0.9518477194942534,-0.605614673346281,0.2455990370362997,0.26882769679650664,0.749819862190634,-0.7521482282318175,-0.40978432539850473,-0.06984488852322102,0.0698379916138947,0.17432414693757892,-0.14929287787526846,0.11327056773006916,-0.29972272692248225,0.3282507541589439,-0.11141915852203965,-0.044684452936053276,-0.30939963227137923,-0.6668256064876914,-0.0741069563664496,-0.3414443307556212,0.49677843507379293,-0.45315989200025797,-0.5542258690111339,0.35309278778731823,0.9745120657607913,-0.25833627488464117,-0.6058697951957583,0.715579413343221,-0.08526509068906307,-0.3969149882905185,-0.19121144199743867,0.23078944720327854,-0.3943808935582638,-0.9442272214218974,0.07650044281035662,-0.5310018509626389,0.490537584759295,-0.7872859532944858,0.5210471972823143,-0.5080366609618068,-0.6333763576112688,-0.26099692611023784,0.16354093234986067,0.26680902345106006,-0.8472450687550008,-0.02313020220026374,-0.0414479561150074,-0.18609747663140297,-0.25699130073189735,-0.58806491503492,-0.24665538407862186,0.7747828643769026,0.7520566987805068,-0.31822839053347707,0.8557293419726193,0.7238081628456712,-0.6391377234831452,0.549956766422838,-0.21007328061386943,-0.6901143477298319,-0.8435635310597718,0.839427578728646,-0.9266497478820384,-0.45759135484695435,-0.7312653162516654,0.7336480035446584,-0.7384441010653973,0.205000554677099,0.3201067764312029,0.05386786721646786,0.5248821647837758,-0.4888872974552214,0.2088092342019081,0.7905779578723013,-0.3566564293578267,-0.6688351100310683,0.9101459216326475,-0.8140348549932241,-0.6600266150198877,0.5712560224346817,0.20688217552378774,-0.6255884082056582,-0.9575354806147516,-0.7458411869592965,-0.9490246437489986,-0.4831925304606557,-0.6326322634704411,0.16863526264205575,-0.8946689553558826,0.9622470419853926,-0.32049761107191443,0.9118401557207108,0.4794118623249233,-0.538933995179832,-0.012779731303453445,-0.5258281342685223,-0.16828264947980642,-0.7911614128388464,-0.17454705154523253,-0.9619508231990039,0.6862948592752218,-0.02224137634038925,-0.47666735108941793,0.40102053713053465,0.7524506342597306,-0.04985757637768984,0.7807415928691626,0.38667071470990777,-0.6693676742725074,-0.4097208580933511,-0.9607616188004613,0.8761227950453758,0.5822661588899791,-0.8389996215701103,0.46244125440716743,-0.7963038696907461,-0.4570138957351446,-0.4188082762993872,0.3488947241567075,0.560557197779417,0.2183650266379118,0.08783150650560856,-0.05093731451779604,0.3154390421696007,0.3108704681508243,-0.9728297991678119,0.5249405545182526,-0.5404951372183859,0.5532544362358749,-0.2817547442391515,-0.36269204085692763,0.2193383825942874,-0.5919468058273196,0.27234520111232996,0.42579161329194903,-0.6424758993089199,-0.6429302296601236,0.7942500370554626,-0.1767864441499114,0.855499922297895,0.9235652321949601,0.14378819102421403,0.28049876168370247,-0.25893852673470974,-0.9001297373324633,0.5786881912499666,0.8505814122036099,-0.6598792942240834,0.6469562067650259,-0.6045655161142349,0.7702042362652719,0.7998119490221143,0.24060872942209244,0.08701612800359726,-0.033535178285092115,0.4956593969836831,0.6621192139573395,0.712297429330647,-0.48820097697898746,0.18650629092007875,0.022172299679368734,0.5254394058138132,-0.13437144923955202,0.647029020357877,0.040912408381700516,-0.04689572937786579,0.6284927441738546,0.6525186393409967,0.5552100259810686,0.7298947651870549,0.41984077356755733,-0.3511361749842763,-0.7552227722480893,-0.003492114134132862,0.11097412277013063,0.04328818153589964,0.1485380711965263,-0.19573053997009993,-0.9038148000836372,0.784104504622519,-0.19334886642172933,0.9480471787974238,0.4772213911637664,0.7252808674238622,-0.9870405355468392,-0.496422600466758,0.7939506452530622,0.5499388421885669,0.3966571753844619,-0.9737187894061208,-0.8137066541239619,0.651302196085453,0.5418047746643424,0.14531313395127654,0.8668984523974359,0.8487764080055058,0.7925845929421484,0.9892785283736885,0.42546096025034785,-0.37423045467585325,0.2375320866703987,-0.3409922937862575,-0.7005359046161175,-0.7702419506385922,-0.13862314727157354,0.528760779183358,0.3816031673923135,-0.949338142760098,0.08839724445715547,-0.7565969531424344,-0.5027098008431494,0.5560034532099962,-0.040533721912652254,0.32145249005407095,0.14304258255288005,-0.014122058171778917,-0.026237982790917158,-0.2780070975422859,-0.6747949509881437,0.816859164275229,0.10440076095983386,-0.9359090132638812,-0.22562643187120557,-0.7480163215659559,-0.6790185049176216,0.204454995226115,-0.8070582528598607,-0.93864840362221,0.9620060594752431,0.5404151142574847,-0.2636442272923887,0.028227949980646372,-0.22540909191593528,-0.11029596766456962,-0.804813195951283,-0.44601685740053654,0.00926367798820138,-0.5999483740888536,0.0503028417006135,-0.7143477066420019,-0.00016487017273902893,0.4234329047612846,0.9729633023962379,0.845026339404285,-0.25434079580008984,-0.46476104902103543,0.47840609680861235,0.9118151441216469,0.3009585696272552,0.09411667194217443,-0.7716769902035594,-0.07107202522456646,0.7772445869632065,0.5345776556059718,-0.8836446171626449,0.2268544607795775,-0.5640688855201006,0.02294348878785968,0.595659903716296,0.919884046074003,-0.2487916825339198,-0.035339595284312963,0.8189774681814015,-0.08779701869934797,-0.2009893199428916,0.11463821399956942,0.1551533187739551,-0.11961227562278509,0.07568514626473188,0.11575401248410344,-0.39234461821615696,0.05455315066501498,0.00992593914270401,0.6241818275302649,0.5548308468423784,-0.6392507595010102,-0.021300256717950106,0.7218172624707222,-0.3098536557517946,-0.4440006986260414,-0.3506948873400688,-0.9223439288325608,0.34184638876467943,-0.6850676164031029,0.5909775523468852,0.6938441102392972,-0.7996432646177709,-0.18806960992515087,-0.40516976779326797,0.13175051053985953,0.5749070700258017,0.06510172178968787,0.21868923725560308,-0.9532046588137746,0.9303404451347888,0.48039840208366513,-0.4303730777464807,-0.7752774627879262,0.49767714459449053,-0.9970450517721474,-0.9170093652792275,-0.0994230373762548,-0.6899578305892646,-0.4020210886374116,0.21031888155266643,0.5833399780094624,0.773369753267616,0.7960186847485602,0.9307698993943632,0.34913451317697763,-0.19737327238544822,0.5252630016766489,0.42947837291285396,0.6609613951295614,-0.5766098401509225,-0.5281393174082041,-0.164834703784436,-0.7029172973707318,-0.8848485900089145,-0.6877948185428977,-0.3289449424482882,-0.4165462818928063,0.967880860902369,-0.7330712615512311,-0.9860417922027409,-0.7653979505412281,0.596739184577018,0.3898911802098155,-0.742994287982583,0.13418544549494982,0.8933635177090764,0.3792588757351041,0.8041522614657879,0.7734486572444439,0.17764638597145677,0.2627576235681772,0.5292042973451316,0.36103045009076595,-0.3407415980473161,0.6670780843123794,-0.963957101572305,-0.8928904263302684,-0.35894946940243244,0.8728622570633888,0.45235147094354033,0.203422699123621,0.6269040843471885,-0.465068771969527,0.5593841378577054,-0.6915445527993143,0.40794517006725073,-0.637701315805316,-0.37641197303310037,0.8630161033943295,0.00037829019129276276,-0.1605027848854661,-0.489319815300405,0.3168612904846668,-0.31063058599829674,0.008783406112343073,-0.7447523847222328,0.3744119773618877,-0.022523027379065752,-0.5051923403516412,0.9983021491207182,-0.701593448407948,-0.7325337408110499,0.1836977880448103,-0.6925707678310573,-0.6467394069768488,-0.3563589355908334,0.3030389156192541,-0.33841771073639393,-0.20800580875948071,0.6016371669247746,0.5168299428187311,0.5484259258955717,0.26849008118733764,0.33675838401541114,-0.9617062290199101,0.6097425785847008,0.8938947459682822,-0.7975888019427657,-0.8150688037276268,-0.32067613303661346,-0.06400771951302886,-0.5953966020606458,0.5241779531352222,-0.9361038682982326,0.5390509832650423,-0.810800077393651,0.9822963220067322,-0.19355943286791444,0.46972503513097763,-0.41965780034661293,0.6137027004733682,0.26540434546768665,0.2716007265262306,0.05058676516637206,-0.222663976252079,0.49761828687042,-0.9142155684530735,-0.024445165414363146,-0.6209725015796721,-0.48500561248511076,0.6526226648129523,0.8798784059472382,-0.6066800290718675,-0.43173468159511685,-0.901981795206666,-0.7330824276432395,0.7093335860408843,0.9212236553430557,-0.5883799656294286,0.42344725877046585,-0.09435868402943015,0.9259240571409464,0.9580977596342564,-0.2723911884240806,-0.3851023386232555,-0.12404670706018806,-0.36259237490594387,-0.19709454849362373,0.30433135060593486,-0.14677996095269918,-0.6051059821620584,-0.061008731834590435,-0.4208410973660648,-0.6560220746323466,-0.9981808960437775,0.961246766615659,-0.3914538463577628,0.17951607517898083,-0.8919853908009827,-0.7600448606535792,-0.8542915456928313,-0.9631704376079142,0.2851330009289086,0.9264155016280711,-0.7532285675406456,-0.8946309946477413,0.32087814807891846,-0.6980171175673604,-0.7453165906481445,0.6071883030235767,-0.16535390028730035,-0.168701175134629,0.33354144636541605,0.16526604210957885,-0.17622584756463766,-0.5468942681327462,-0.07205078098922968,-0.012913224752992392,-0.4871931867673993,0.763402265496552,-0.8665701188147068,0.1242636889219284,0.7695157960988581,-0.5375578426755965,-0.05443239910528064,-0.6460525216534734,-0.146244578063488,-0.8991033146157861,0.43759071035310626,-0.6069257622584701,-0.16405103961005807,0.5411251178011298,0.37850734405219555,0.08227454079315066,-0.2184338355436921,0.1895813187584281,0.8046817881986499,0.9239282449707389,-0.09560904977843165,0.017598994076251984,-0.8131028721109033,-0.9319252325221896,0.21242753509432077,0.9560465519316494,-0.5474528898485005,-0.7538025928661227,0.8856730423867702,0.1840692893601954,0.018585525918751955,-0.5026022894307971,-0.6541296048089862,-0.021678577177226543,0.5321357492357492,-0.29904672037810087,-0.2734009427949786,0.38908013701438904,0.14312327420338988,-0.19207600969821215,0.861738704610616,-0.4958960930816829,-0.2716742497868836,-0.5124343731440604,-0.38772325264289975,-0.8404042134061456,-0.20077926572412252,0.4825928648933768,-0.33562376629561186,0.4890927243977785,-0.7884381539188325,0.4405977432616055,-0.3649600469507277,-0.042277834843844175,0.019658805802464485,0.037745867390185595,0.12905622692778707,-0.8656348492950201,0.7409445736557245,-0.8248728029429913,-0.8748033563606441,0.015501654706895351,0.5659127030521631,0.1607111976481974,0.4783177594654262,0.16604775236919522,-0.9069361197762191,0.8441325896419585,0.23446289543062449,-0.3727949932217598,-0.9167820205911994,-0.3075159271247685,0.5804263111203909,-0.9862457155250013,-0.7162644155323505,-0.2157786567695439,0.1966655282303691,0.1828856486827135,-0.8698281794786453,-0.7934870733879507,0.011407462414354086,-0.9910639394074678,0.6211525206454098,0.6124099148437381,0.1691781016997993,-0.07039443589746952,0.1351058641448617,-0.20923068653792143,-0.2969641680829227,-0.14764534262940288,-0.06611995166167617,0.813101330306381,-0.6394829056225717,0.7868489450775087,0.9860074138268828,0.23085138341411948,0.8864348670467734,0.27668396662920713,0.9316101847216487,-0.33313572220504284,-0.38316052546724677,0.09627512656152248,0.13292767526581883,0.5143522527068853,0.2039824789389968,0.21696125296875834,-0.7652268968522549,0.1575504126958549,0.42031302489340305,0.08880243171006441,-0.9855366549454629,0.1330635161139071,-0.6370302881114185,0.12128826370462775,0.07515344768762589,-0.26653501857072115,-0.9610261199995875,0.08604705333709717,-0.5369227407500148,0.5628668498247862,0.6141145033761859,0.4060159968212247,0.8602681495249271,0.37772480910643935,-0.1061150236055255,-0.2641032701358199,-0.3369135232642293,0.713163900654763,-0.3831855352036655,0.7975424658507109,0.036949869710952044,0.6316332663409412,0.5747464899905026,-0.8917189119383693,-0.6573362816125154,-0.7756031779572368,-0.3128585387021303,-0.7072761077433825,-0.17423998331651092,0.9169108755886555,-0.5294246813282371,-0.07830377575010061,-0.9509756290353835,-0.1795559930615127,0.29961991077288985,0.8998317830264568,0.12260509701445699,0.9572531781159341,-0.03595986217260361,-0.756762582808733,-0.9360517649911344,-0.6106746420264244,-0.2609396427869797,0.9084258014336228,-0.650049171410501,0.06687205797061324,0.030183034483343363,-0.1147647793404758,0.7846537306904793,-0.1695525711402297,0.2605166411958635,0.8816087893210351,0.0037963432259857655,-0.7001872090622783,0.9652794897556305,-0.5272586061619222,-0.1568669220432639,0.32139915181323886,-0.8284350298345089,-0.1205691765062511,-0.29420741461217403,-0.7253334233537316,-0.12159343203529716,0.2172285122796893,-0.0773444501683116,-0.8797778799198568,0.7423222898505628,0.7192828035913408,0.40943831903859973,-0.33308323938399553,-0.3655686886049807,0.6644184095785022,-0.13298229314386845,-0.37830477580428123,-0.8446364011615515,-0.800111357588321,0.32143924897536635,-0.6862766980193555,0.6913313763216138,-0.5573147898539901,0.5673252600245178,0.21278913365677,-0.11020074272528291,0.20394730288535357,-0.20687565580010414,-0.39882301073521376,-0.635772199369967,-0.8467660485766828,0.7256649676710367,-0.7635705936700106,0.08190479269251227,-0.5688253613188863,0.6927429931238294,-0.07418191200122237,0.034351793583482504,-0.6249942192807794,-0.8577791256830096,0.5984098012559116,0.927193651907146,0.06346521619707346,-0.6684634727425873,-0.8864177828654647,0.9799414929002523,0.28814456751570106,0.617210591211915,-0.3541623977944255,0.6906188488937914,-0.5664707240648568,-0.18627376528456807,0.4297915301285684,-0.06548874545842409,0.5198668278753757,0.1571729970164597,-0.9347122022882104,-0.602127249352634,0.46624018298462033,-0.15842860471457243,0.5796883897855878,-0.1682020453736186,-0.4763895398937166,0.972771427128464,-0.007932043634355068,-0.0642534582875669,-0.9252071473747492,-0.8620711741968989,0.8487375108525157,-0.2852799925021827,-0.7589208581484854,-0.052723703905940056,-0.9288893854245543,-0.5453696083277464,-0.0018151509575545788,0.63607814675197,0.011555541772395372,-0.26648762403056026,-0.7828449667431414,-0.7548128645867109,0.3148060548119247,-0.2755012074485421,-0.9026791206561029,-0.41047513112425804,-0.6602989258244634,0.21861626533791423,0.9781343531794846,-0.9058741936460137,0.328929016366601,0.6249190787784755,-0.6558250696398318,-0.7295251437462866,0.6918060169555247,0.4865574692375958,-0.2974425000138581,0.9449586388655007,0.9879395328462124,0.5843293224461377,0.3767920262180269,0.037986316718161106,0.6814704779535532,-0.14936361694708467,-0.12567942449823022,0.9104314474388957,0.974873477127403,-0.2734651658684015,0.7181645007804036,-0.11338342446833849,0.09923196909949183,-0.3255964950658381,-0.806994448415935,0.029394381679594517,-0.7869115914218128,0.953073532320559,-0.8922290736809373,-0.9525696765631437,-0.31643484625965357,-0.4461599667556584,0.7074846606701612,-0.04442327003926039,0.45080646872520447,0.7722523249685764,-0.41363057354465127,-0.7143427296541631,0.3264210685156286,0.975809105206281,0.71997035946697,0.9734071949496865,0.6058611092157662,0.3843032452277839,0.12632704433053732,0.9226945242844522,0.5294732442125678,-0.6190299834124744,0.5507570030167699,0.0508064073510468,0.5764644630253315,-0.726675468031317,-0.37498582480475307,-0.24726991541683674,-0.9476285227574408,-0.005548094864934683,0.9366532103158534,0.16314863739535213,-0.8436944712884724,-0.3757033282890916,-0.8035218459554017,0.23310283571481705,-0.6482013980858028,0.05535647692158818,0.5564668229781091,0.4440484498627484,0.7316946806386113,0.561706677544862,0.18069999804720283,-0.9423975511454046,0.20791943510994315,0.3051036964170635,-0.19851946597918868,-0.27838354790583253,0.10695670498535037,0.18166166031733155,0.5424308800138533,-0.5824864055030048,-0.46906919963657856,-0.5898067890666425,0.9992871726863086,0.42541926307603717,0.3412550943903625,-0.6773299742490053,0.01567347114905715,-0.5939034414477646,0.06074955966323614,0.6470942944288254,0.7247510347515345,0.8785170447081327,0.589780324138701,0.10858159372583032,0.7864268478006124,0.35543153202161193,0.638933545909822,-0.025409757159650326,-0.31661849841475487,-0.4305660459212959,-0.18457888765260577,-0.5521512888371944,-0.8474314259365201,-0.42066397378221154,0.9754122914746404,0.3310565631836653,0.8003493258729577,-0.25918986182659864,-0.2592090438120067,-0.4297210699878633,-0.491502336692065,-0.6305224779061973,-0.688049070071429,0.534186979290098,0.4900278667919338,0.3230975898914039,-0.4542422592639923,-0.2862377059645951,-0.7598974425345659,0.34053543861955404,0.3718175417743623,-0.10947590228170156,0.08928997721523046,0.6491197226569057,0.3798656528815627,0.951402225997299,-0.9904857771471143,-0.08045163564383984,0.17499816045165062,0.5713472715578973,-0.47561081498861313,-0.33494737232103944,0.5934056523256004,0.6658678511157632,-0.735855984967202,-0.1122834300622344,0.45330598670989275,-0.6385168796405196,0.22858965815976262,0.40718373097479343,-0.7442503734491765,0.29728217609226704,-0.02338361833244562,0.5659130127169192,0.6631547757424414,-0.30158535204827785,0.5186091004870832,0.682904589921236,0.31552076479420066,0.826847888994962,0.685972798615694,0.6834489558823407,-0.5977322272956371,-0.4553066245280206,-0.38872323650866747,0.7649403405375779,-0.9621278177946806,0.25818436965346336,-0.9849018692038953,-0.017970130778849125,0.28171453112736344,0.08552763843908906,-0.2148583377711475,0.41334044747054577,0.6422321530990303,0.0920461155474186,-0.9291262784972787,0.050036854576319456,-0.4374372400343418,-0.16595624992623925,-0.01682553393766284,0.07224156334996223,-0.791734526399523,0.3411617586389184,-0.9340163106098771,-0.2068832558579743,0.2242745840921998,-0.3213030965998769,0.7617767630144954,-0.06442304234951735,0.8819982600398362,0.48940872913226485,-0.15042118821293116,0.21064190473407507,-0.558016327675432,-0.23858163924887776,0.1674061743542552,-0.6984851136803627,-0.2316474816761911,-0.8741522207856178,0.9717719801701605,0.08028449444100261,0.30289708031341434,-0.7223291052505374,-0.9938226123340428,0.8340904321521521,0.13822148274630308,-0.9926565317437053,0.47945203445851803,-0.7781300735659897,-0.3523746160790324,-0.672009986359626,-0.7769036768004298,-0.664447461720556,0.4690319267101586,0.5964340274222195,-0.015056492295116186,-0.3930376349017024,-0.5065890876576304,-0.24862797651439905,-0.7056030626408756,0.32499287836253643,0.7532854592427611,-0.23009088402613997,0.37873070128262043,-0.8846780778840184,-0.33362215105444193,-0.9464305373840034,-0.7066922937519848,0.2365833050571382,-0.44212024845182896,-0.9192152391187847,0.45813925797119737,-0.93890265468508,0.10472021671012044,-0.12489903438836336,0.5119697875343263,-0.5978723997250199,0.33299254020676017,0.07789088925346732,-0.7505357759073377,0.2263656542636454,-0.648475004825741,-0.6292606899514794,-0.5473322137258947,-0.6523524285294116,-0.5844927001744509,0.24299780000001192,-0.15071721887215972,-0.30359648168087006,0.21237998502328992,0.0908243521116674,0.44647054467350245,0.1825533420778811,0.39942675782367587,-0.8241790519095957,0.505988210439682,0.29373632138594985,0.5859082150273025,-0.706418402493,0.6307282606139779,-0.21872129291296005,0.30189215019345284,0.05612966511398554,0.5223169298842549,0.4349278719164431,-0.033223296981304884,0.5439116111956537,0.6064131879247725,-0.3231698628515005,0.4050453510135412,0.5859370674006641,-0.816146255005151,0.8353872811421752,0.35202126670628786,-0.9021837753243744,0.11005534417927265,-0.46104979421943426,-0.554236488416791,-0.4989864733070135,-0.6770928022451699,-0.948493872769177,0.976643655449152,-0.08324299333617091,0.5566577836871147,0.0747083299793303,-0.6968860165216029,0.7241930048912764,0.9730338654480875,-0.3791408333927393,0.0663604699075222,0.6746715842746198,-0.5968750338070095,0.5567751345224679,0.7241157428361475,-0.900707483291626,0.6384697919711471,-0.8286379296332598,-0.09720629127696157,0.2293390636332333,0.3824089881964028,-0.8624172429554164,0.08302783966064453,0.8951956364326179,0.08706814283505082,-0.0544519959948957,-0.256254521664232,0.2014348041266203,-0.6076330156065524,0.33072960702702403,-0.8424794753082097,0.5396982501260936,0.7591056516394019,-0.3532471531070769,0.6144607458263636,0.4143404085189104,-0.6539085558615625,-0.8353554485365748,-0.11638471158221364,-0.9171565291471779,-0.17977063823491335,0.7111658626236022,-0.24383118655532598,-0.4009841959923506,-0.9733184860087931,0.9868220281787217,0.03505375795066357,0.5677330107428133,-0.6724122022278607,0.04804663173854351,-0.7730641006492078,-0.5429483223706484,0.2544308239594102,0.7107824678532779,0.1275949808768928,0.6741913128644228,-0.35425112675875425,-0.6615970907732844,0.21604705089703202,0.797205057926476,-0.09940067352727056,-0.10136828292161226,0.5495091509073973,0.8672823011875153,-0.3266059486195445,0.6022146763280034,-0.6306342296302319,0.5080756316892803,0.8821411463432014,-0.05748247355222702,-0.6887740828096867,-0.1313653765246272,-0.029421390034258366,0.6091963397338986,-0.3020287826657295,-0.5148844025097787,0.13586063217371702,0.46436317916959524,-0.7980978698469698,-0.39320447109639645,-0.8199386578053236,0.830906072165817,0.7150490903295577,0.8464940427802503,-0.6550078778527677,-0.3817435042001307,0.9286781060509384,-0.21060826303437352,-0.03329757368192077,0.3188737779855728,0.1313506211154163,-0.6062275595031679,-0.14019030751660466,0.07160647306591272,0.12019379390403628,-0.13697458896785975,0.8023756295442581,0.1093183271586895,0.4191674212925136,0.9660881161689758,-0.9644740545190871,-0.9705297192558646,-0.8719021882861853,0.6312430961988866,-0.516917688306421,0.41396016627550125,0.34870774345472455,-0.4341295608319342,-0.014834971632808447,-0.009590791072696447,-0.6180137163028121,0.23203183384612203,0.6802150495350361,-0.9113647872582078,-0.7185020679607987,-0.4945689090527594,0.05556586151942611,0.32063023652881384,0.9730628072284162,0.5815851241350174,0.5165370008908212,0.04971669381484389,0.9885437958873808,-0.5207088589668274,0.6741461525671184,-0.8977361586876214,-0.5650176629424095,0.5881371228024364,-0.20033087488263845,-0.4334764005616307,0.030798092484474182,0.4663484846241772,-0.4923943830654025,0.5222881836816669,-0.1684675202704966,0.5109476167708635,0.15315683418884873,-0.5494612636975944,-0.7344315312802792,0.41092229075729847,-0.8154633236117661,-0.252243350725621,0.6135720992460847,0.7646921086125076,-0.8441243739798665,-0.8180117015726864,0.4727426706813276,-0.8226185389794409,-0.4796559941023588,-0.21216263715177774,-0.9626999041065574,-0.07378976512700319,-0.9784179115667939,-0.6848411145620048,0.3539788764901459,0.21314954478293657,0.6266265157610178,0.6524453274905682,0.732290564570576,-0.12062052451074123,0.506300097797066,0.17544557573273778,-0.03208528272807598,0.22241586074233055,-0.0017466829158365726,0.14160969574004412,-0.3889598618261516,0.34805519925430417,0.7567524942569435,-0.6396601055748761,0.10217940388247371,0.10262212716042995,0.8348353994078934,0.40705974167212844,-0.8806338575668633,0.029513769783079624,-0.4898901884444058,0.3777726059779525,-0.45185708487406373,0.19031296018511057,0.7314849668182433,0.7657145736739039,-0.6048424849286675,-0.28616866702213883,-0.13938957219943404,-0.45085291704162955,0.8496752833016217,0.6258422420360148,0.9137624213472009,-0.35654900036752224,0.31435145949944854,0.4197753956541419,-0.05304831499233842,-0.2811838989146054,-0.9979138718917966,0.4857978532090783,0.2503454494290054,-0.10501337237656116,0.9456863477826118,0.15787381026893854,-0.7256870274432003,-0.2931421068497002,0.7244895198382437,-0.20062874723225832,0.27816333854570985,-0.8816611007787287,-0.7695119883865118,0.2725791269913316,0.20382997952401638,0.21145218843594193,0.23659893358126283,0.34046064922586083,-0.5404082480818033,0.15208890568464994,-0.765916955191642,-0.06586465053260326,-0.06115978071466088,0.4154494237154722,-0.35046067647635937,-0.6359395724721253,0.07690030103549361,-0.6708627785556018,-0.45608191657811403,0.05189919611439109,-0.5775747611187398,0.9705688869580626,0.5274265557527542,-0.555264862254262,0.30148194590583444,-0.8907529241405427,-0.312637060880661,0.033182122744619846,0.31553950998932123,-0.1255787257105112,-0.1316033392213285,0.5405419887974858,0.9568385831080377,0.9978113169781864,-0.5761865815147758,0.350042668171227,0.4001497933641076,-0.1085514035075903,-0.20419784355908632,-0.491923660505563,0.15269834361970425,-0.5094317588955164,0.15620273491367698,-0.38179261796176434,-0.9073265790939331,-0.1276900409720838,-0.5716821826063097,0.5369192585349083,0.22570234863087535,-0.6371690942905843,-0.07477313000708818,0.1807063426822424,-0.05090771522372961,0.1040876591578126,-0.20736014703288674,-0.2710284488275647,0.08639479661360383,0.4887552550062537,0.9204330150969326,-0.27378234174102545,0.6613978655077517,-0.7147950599901378,0.07149664219468832,0.1306232437491417,-0.6789183458313346,-0.7516021919436753,-0.8763628448359668,-0.8595329872332513,-0.5299969208426774,0.4792448119260371,0.04917555255815387,0.08230718830600381,0.09755226224660873,-0.6818386716768146,0.213507242500782,-0.10249180905520916,0.5107421507127583,-0.37177423806861043,-0.6670624879188836,0.42666143411770463,-0.5662625348195434,0.34889845876023173,0.47537803277373314,-0.2677495190873742,0.6824145442806184,0.9833603235892951,-0.8280162550508976,-0.7479211497120559,0.5584472627379,0.8335503796115518,0.2189496816135943,0.45504982117563486,0.31966738030314445,0.8738443092443049,0.9541182806715369,0.7476675482466817,-0.662229873239994,-0.6861560647375882,0.4183977022767067,-0.1075741657987237,-0.4084818819537759,0.7248125900514424,0.8991525042802095,0.7242258531041443,-0.9878204446285963,0.35941245686262846,0.6388489897362888,-0.6037518116645515,0.10057210689410567,0.7452842709608376,-0.901133744046092,0.31391671765595675,-0.82909404207021,-0.14458866184577346,0.12261148681864142,-0.8168686046265066,-0.3479761607013643,-0.2855600267648697,0.3279010490514338,-0.5429606405086815,-0.34122799057513475,-0.3690551519393921,-0.9678228413686156,0.0634667188860476,0.4565514912828803,0.7217266838997602,-0.1804976067505777,-0.30049809208139777,0.20467850426211953,-0.37643502885475755,0.6367427986115217,0.9259696961380541,-0.336135292891413,0.05220495443791151,-0.001605442725121975,-0.8760355324484408,-0.08740900829434395,-0.14128823392093182,-0.9457225007936358,-0.6346046254038811,-0.6870578527450562,0.8453245130367577,-0.8929513972252607,0.855571408290416,-0.1598161463625729,0.8016808005049825,-0.7610588460229337,0.5916493129916489,0.4958921237848699,0.07650512270629406,-0.48223584750667214,0.9018650124780834,0.897817530669272,0.8624022551812232,0.7929279282689095,-0.8684138925746083,0.8311875034123659,0.8095449884422123,-0.35786090325564146,0.22020413121208549,-0.8157836287282407,-0.2954208175651729,0.39539165375754237,0.7680077748373151,-0.9012268716469407,-0.42644235864281654,0.09016701206564903,-0.5691322954371572,0.7967501496896148,-0.7430339008569717,-0.20427104039117694,0.18725526705384254,0.9062274652533233,0.547852489631623,0.3248760914430022,-0.9047164628282189,0.19634911324828863,0.970465877559036,0.48676740750670433,0.3062763945199549,0.35820640390738845,0.5995453279465437,0.728424213360995,-0.9896980719640851,-0.4304341566748917,0.7959455936215818,-0.9506315663456917,0.9995187157765031,0.7105007003992796,0.6084578754380345,0.05820164829492569,0.9268565168604255,0.6039100210182369,-0.8011669367551804,-0.7424003956839442,0.31580046005547047,0.07104096561670303,0.9952725451439619,0.28362422343343496,0.19516727607697248,0.558502699714154,0.985110099427402,-0.6865422301925719,-0.3203762611374259,-0.7822339362464845,-0.6188810761086643,-0.8943330361507833,0.915001752320677,-0.6954790116287768,-0.7461085040122271,0.7078967727720737,0.7314855214208364,-0.4690358699299395,-0.3575579170137644,0.9015309023670852,-0.10036598891019821,-0.2187811047770083,-0.7587506538257003,-0.3799988371320069,0.0192007957957685,0.5795418997295201,0.7394675104878843,-0.5806661839596927,-0.4262744318693876,0.32855404494330287,0.5339203057810664,-0.6051553734578192,-0.5502874054946005,-0.19055755529552698,-0.3806591331958771,0.8347656200639904,0.048184949439018965,-0.20352171128615737,0.3335804585367441,-0.2499596532434225,-0.9945542518980801,0.2583781206049025,-0.1509203976020217,-0.601477600634098,-0.41447466146200895,-0.37170481542125344,0.463861680123955,-0.3061580993235111,0.8765126490034163,0.05144504178315401,0.20281515503302217,-0.9720496414229274,-0.26984789967536926,-0.6303366851061583,-0.9210915458388627,0.8811421794816852,0.36207362124696374,0.1167049459181726,0.6516180695034564,0.01640774868428707,-0.21867119055241346,-0.2956816414371133,0.445222401060164,0.5226184572093189,-0.9805140527896583,0.6863149600103498,0.5320189232006669,-0.2955924137495458,0.6810280997306108,-0.5361229823902249,0.8872599583119154,-0.9443511604331434,-0.6788130416534841,-0.5112231066450477,-0.5442863088101149,0.12493006000295281,-0.6309842430055141,0.30750802531838417,0.41241768607869744,0.5916117932647467,-0.4573683529160917,0.25771519634872675,0.17825498478487134,0.6350740985944867,0.47055149637162685,-0.09218312846496701,-0.021701107267290354,0.7791191767901182,-0.7673319904133677,0.3823998444713652,0.007728088181465864,-0.5949502983130515,0.08392192982137203,-0.11863403441384435,0.0418185917660594,0.5980889429338276,0.5439767786301672,-0.06250621285289526,0.07772801397368312,-0.9040412926115096,-0.13550008228048682,-0.9139725430868566,0.590688415337354,-0.41811820352450013,0.5777030680328608,0.8194185430184007,0.025409843772649765,0.832603270187974,0.41786204650998116,0.283807760104537,-0.6015406609512866,-0.7243211008608341,-0.9458661912940443,-0.17083655297756195,-0.7466862644068897,-0.4506721803918481,-0.5381029699929059,0.2292922125197947,-0.13884086534380913,-0.6313198283314705,-0.8263879488222301,-0.8793328697793186,0.8775118980556726,-0.8359347125515342,-0.12622603820636868,0.8606769484467804,-0.8152954434044659,0.5226532868109643,-0.0673664198257029,-0.7589871361851692,-0.4086863212287426,-0.32469797087833285,-0.7567343427799642,0.5131720546633005,0.5897909901104867,0.46156407753005624,-0.7180341971106827,-0.9858268881216645,-0.576970397029072,0.15521809086203575,0.7596322856843472,0.5936060990206897,0.5196378617547452,-0.37327692843973637,-0.9574158219620585,0.2381872059777379,0.248882791493088,-0.9888259009458125,-0.36748916609212756,0.45474324142560363,-0.7022001068107784,-0.5074174026958644,-0.24242019886150956,-0.7244892418384552,0.7163088112138212,0.242852836381644,0.5925499494187534,-0.2761489353142679,-0.07427012920379639,-0.3476004237309098,0.8584758252836764,-0.34179104771465063,-0.8165460228919983,0.8258040118962526,-0.7861470603384078,-0.6967570446431637,-0.3520961096510291,-0.34064436657354236,0.5305811245925725,0.31262126471847296,-0.20127594796940684,-0.5685012931935489,0.5059234094806015,-0.777873728889972,-0.7341985618695617,0.9839649358764291,-0.8051028214395046,-0.9038405274040997,-0.2277468671090901,0.48031557630747557,0.8707931507378817,0.24358097137883306,-0.24326491449028254,-0.5575627931393683,0.6415215358138084,0.4390479400753975,-0.5610811575315893,-0.43655011942610145,-0.3382124905474484,-0.35434043733403087,0.10472845053300261,-0.2460517273284495,-0.7853163466788828,0.14133787108585238,0.05164937628433108,0.36675749300047755,-0.37014269549399614,-0.981244137044996,-0.1995162721723318,0.35341254714876413,-0.9374684151262045,-0.7706403681077063,0.39099807664752007,0.6475761123001575,-0.8617806849069893,-0.06884796405211091,-0.9174517611972988,0.5833641421049833,0.3314068438485265,0.243271314073354,0.6479472909122705,-0.0706117176450789,-0.13565586553886533,0.552791690453887,0.34486203501001,0.9591668942011893,-0.04399451706558466,-0.11517033632844687,-0.8080096733756363,-0.3963937917724252,0.6726073757745326,0.9305575243197381,-0.6917434404604137,0.6068790359422565,0.31839517783373594,0.32741727121174335,0.2529363567009568,0.29404784506186843,-0.6478185816667974,-0.7195491176098585,-0.30747480876743793,-0.3036092100664973,0.5040462287142873,0.37986597372218966,-0.20825010119006038,0.1083316677249968,-0.9675742601975799,-0.32163691986352205,0.5413858518004417,-0.6698758318088949,-0.6234291843138635,-0.4336695917882025,-0.508288826327771,-0.7572099938988686,0.5765777402557433,-0.19089304422959685,-0.48395183542743325,0.18398915184661746,-0.8345047128386796,-0.6749160294421017,0.3466510442085564,0.8029032344929874,-0.6076576486229897,-0.300981265027076,-0.7751071793027222,0.767934893257916,-0.2786554251797497,0.541350650601089,-0.8760716915130615,-0.6397454724647105,0.460467335768044,0.7239820682443678,0.7022498319856822,-0.303537480533123,-0.5362065560184419,0.36585276247933507,0.43810240272432566,-0.5812565675005317,0.7221790007315576,-0.6529346234165132,-0.22073677135631442,0.010373369324952364,-0.3456142679788172,0.4808780555613339,0.4248086800798774,0.4183660722337663,-0.6771332700736821,-0.5135251861065626,-0.7841446069069207,0.5844332589767873,-0.10353339975699782,-0.8008643924258649,-0.4400634518824518,0.17859494127333164,0.05539850937202573,0.3251969567500055,-0.5528006325475872,0.33924883557483554,-0.43009708914905787,0.016144161112606525,-0.10789875779300928,-0.765136203262955,0.6733595514670014,0.4364215428940952,0.6551076709292829,-0.6361102513037622,0.5035356455482543,0.5609062938019633,-0.6787798553705215,-0.6850789338350296,0.46610728884115815,0.5835304711945355,0.6624948554672301,0.3376915892586112,0.8596821883693337,0.400049049872905,0.9111755643971264,-0.7345983358100057,0.9535664333961904,-0.8996452298015356,-0.4977544550783932,0.3949439972639084,0.8733318797312677,-0.5224750158376992,0.331044842954725,-0.3252815967425704,0.14999568089842796,0.508004488889128,-0.0324445441365242,-0.8365604928694665,-0.690474031958729,0.8626196370460093,-0.9389446773566306,-0.6955562825314701,0.519361003767699,-0.9489205586723983,-0.06115434505045414,-0.16971251787617803,0.13821972720324993,0.5422755959443748,0.014554237946867943,0.9077342953532934,0.42690108343958855,-0.14726480282843113,-0.24244880070909858,-0.4864557087421417,0.1870889449492097,-0.3023068867623806,-0.30232136556878686,-0.9700525808148086,-0.4657449247315526,0.3951351153664291,-0.6887959497980773,0.08679895335808396,0.9964624019339681,0.7631737743504345,-0.07834783382713795,0.844611975364387,0.29267432214692235,-0.3478418388403952,0.27186664612963796,0.38744590198621154,0.7171786944381893,-0.4483877210877836,0.47537502413615584,0.07378777675330639,0.35057450411841273,-0.6532708727754653,0.4714344819076359,-0.6471546147949994,0.303610987495631,-0.6234499574638903,-0.48205047845840454,0.6318394732661545,0.044600588735193014,-0.9113736231811345,-0.48822912760078907,0.2383018834516406,-0.028269041795283556,-0.2240295074880123,0.7283472390845418,-0.3850734648294747,0.7593253115192056,-0.5471798041835427,-0.40319275250658393,-0.03271637810394168,0.9307432118803263,0.4313053581863642,-0.2145715495571494,0.4344926248304546,-0.45497794821858406,-0.613567378371954,0.15708163613453507,-0.7367854719050229,-0.6040205815806985,0.7112060035578907,0.010780197568237782,0.6385256783105433,0.4617279996164143,0.30652591912075877,-0.9697330142371356,0.4299772218801081,0.8634462733753026,0.5552741549909115,0.777590548619628,0.44982576789334416,0.9288079533725977,0.7261714828200638,0.10064072022214532,-0.9349692426621914,0.1872980808839202,0.9411736070178449,0.8511294410564005,0.2511430992744863,-0.775942109990865,-0.8457142408005893,0.09223655704408884,0.11741811083629727,-0.5723036821000278,0.17706455197185278,-0.8715642681345344,-0.4221772928722203,0.6953579103574157,0.5355847873724997,0.11367537640035152,0.9416771633550525,-0.2384316404350102,-0.8211526004597545,0.19285520818084478,0.09142703516408801,0.8987977332435548,-0.24905840121209621,-0.07370296772569418,0.5829086001031101,0.8714478113688529,-0.8671175227500498,-0.8160275057889521,0.5780256520956755,-0.8855021963827312,0.2823318145237863,0.5688672065734863,-0.44915312808007,-0.2217210135422647,-0.18387147737666965,0.648285255767405,0.6126460111699998,-0.4172159261070192,0.05768790654838085,0.021389368921518326,0.7243959824554622,0.2971784109249711,0.166588650085032,-0.24582390440627933,-0.3950538979843259,-0.20361238485202193,-0.6614356669597328,-0.2024971446953714,0.2658925512805581,-0.475059115793556,0.3592330398969352,-0.5731259905733168,0.8088222877122462,-0.5742697473615408,0.7008047415874898,-0.6419425327330828,0.5561454752460122,0.8696580836549401,-0.24967162683606148,-0.05009960802271962,0.7260715221054852,-0.10375773441046476,-0.27790199033915997,-0.23164991522207856,0.16748075187206268,-0.10837378865107894,0.4680706476792693,-0.829892466776073,-0.822956376709044,0.4651093347929418,0.07572160055860877,0.004598017316311598,-0.09975224640220404,-0.6077419649809599,0.9565360392443836,-0.3751561273820698,-0.9209173647686839,-0.11887052608653903,-0.9833191921934485,-0.4869252685457468,-0.3542238296940923,-0.46441200375556946,-0.307869809679687,0.4209611741825938,-0.02845611935481429,-0.3563878661952913,-0.9438887042924762,-0.7646918296813965,0.7608908917754889,0.6560260150581598,0.215110476128757,0.6317109386436641,0.19271733332425356,-0.22831390472128987,-0.4253720729611814,0.7731485040858388,-0.4433484976179898,-0.599053205922246,0.6566162742674351,-0.2722190269269049,-0.921194982714951,0.1198930130340159,0.5195138296112418,-0.14629683317616582,0.06284002680331469,0.10581347066909075,0.15893785376101732,-0.9709908487275243,0.02374202897772193,-0.09209979139268398,-0.7322423127479851,0.7398744244128466,0.4517214694060385,0.9194443831220269,-0.6526182587258518,0.5975784929469228,0.74093660665676,-0.9044067808426917,-0.0849857940338552,0.12956912256777287,-0.30370872328057885,0.6894220043905079,0.47060093516483903,-0.30427875835448503,-0.8152311160229146,0.5858882092870772,0.6228696955367923,0.9799491325393319,-0.8961863066069782,-0.3231901549734175,0.4493334158323705,0.21429044287651777,-0.5392460688017309,-0.4661101559177041,-0.8912174259312451,-0.11311616096645594,-0.9665772560983896,-0.9393266122788191,-0.410066528711468,-0.7979100542142987,-0.40363379707559943,0.7788746226578951,0.4870058875530958,0.7354931733570993,0.23966941609978676,0.6512812320142984,0.000994713045656681,0.24297517212107778,0.06701282830908895,0.6631459128111601,0.15450558066368103,-0.9871082399040461,0.0646609584800899,0.6038485318422318,0.01872057467699051,-0.06858569476753473,-0.09375176159664989,-0.025124175008386374,0.8688993668183684,-0.5515707181766629,0.45370433293282986,-0.006203393451869488,0.08002194156870246,0.35632516257464886,0.9116339650936425,0.8704021875746548,0.11454918049275875,-0.6288377204909921,0.3448749305680394,-0.9106473890133202,-0.8263053721748292,0.7921079397201538,0.3790163090452552,-0.351798499468714,0.41422907216474414,0.3990432256832719,0.04487780062481761,-0.09359252359718084,-0.7845906997099519,0.14780343882739544,-0.991655146703124,-0.18411816377192736,-0.35404692543670535,-0.4892327538691461,-0.629413808695972,-0.7452964033000171,0.8043603822588921,-0.04755605012178421,0.4565079612657428,0.3118388415314257,0.9577991412952542,0.4048837008886039,0.8249237271957099,-0.7623061323538423,-0.31248877849429846,-0.4142413418740034,0.5224224980920553,-0.8251505587249994,-0.46742298314347863,-0.39412659546360373,-0.5202988190576434,0.2429070216603577,0.8168735592626035,0.8318960345350206,0.8867889763787389,0.7499224911443889,0.6333315586671233,-0.9834780576638877,0.27843753062188625,-0.0991847780533135,-0.5508301500231028,-0.8858925299718976,-0.7352013629861176,-0.16111370408907533,0.6111545385792851,-0.08753766305744648,-0.0719174281693995,-0.868802166543901,0.74655252834782,0.8180902991443872,0.4941391455940902,0.6965762753970921,-0.9109807470813394,0.5462617101147771,0.45094571309164166,0.23240198008716106,0.18521840032190084,-0.8761052382178605,-0.3569588619284332,0.1821102872490883,0.12123451242223382,-0.2540305759757757,0.058972136583179235,0.8683008896186948,-0.9199932687915862,0.9589511472731829,0.3461248418316245,0.4852022076956928,0.5338568687438965,0.3626283360645175,-0.09305457165464759,0.11151967430487275,-0.3298837565816939,0.7345798397436738,0.9873846480622888,0.1957879001274705,0.7318238164298236,0.2984545803628862,-0.524125016760081,-0.7772266548126936,0.9145688400603831,-0.932563257869333,-0.2768237851560116,-0.7364847916178405,0.12560235289856791,-0.24699977599084377,-0.960887901019305,0.25958541268482804,0.8647991851903498,-0.8541425275616348,-0.07462062733247876,0.4306557038798928,0.005736478604376316,-0.0027286182157695293,-0.3576047783717513,0.3600143282674253,0.08613464422523975,-0.5065398323349655,0.9929348663426936,0.8457645261660218,0.39808828802779317,-0.6645449823699892,0.06418950762599707,-0.14715928584337234,0.4378069001249969,-0.23215270647779107,0.7530123358592391,0.7719857981428504,-0.05621607229113579,0.17720394814386964,-0.5865789181552827,0.11763785174116492,0.9373366292566061,-0.883652308024466,0.4520140187814832,0.6659339698962867,-0.9682040913030505,0.33554343320429325,-0.8433164465241134,0.6846564915031195,-0.7176471524871886,-0.7177218701690435,0.10277622658759356,-0.27021305449306965,-0.6833652858622372,-0.7415658356621861,0.9823016966693103,0.8115498824045062,0.8611842575483024,0.6973750027827919,0.6260164622217417,0.31513724429532886,-0.015290981158614159,0.5555241350084543,-0.3176331748254597,-0.331750825047493,-0.4726919075474143,0.38557439064607024,-0.84043826488778,-0.9966070773079991,0.34514683950692415,0.9535079323686659,0.40442475862801075,0.8961865091696382,0.8337466712109745,0.636828385759145,-0.8227336308918893,0.9011158500798047,0.7428419371135533,-0.4583309683948755,0.8816593163646758,-0.9079315015114844,-0.6816596407443285,0.4654018124565482,-0.21014016075059772,0.13252619002014399,-0.25668556382879615,0.5986132849939167,-0.6732586310245097,0.6040815403684974,-0.8205567831173539,0.9981052186340094,-0.6758851082995534,-0.7874783091247082,0.7514822660014033,-0.24785167491063476,-0.1584834842942655,-0.423698415979743,-0.280270648188889,0.09245739877223969,-0.6061643161810935,-0.08951887721195817,-0.4674197817221284,0.034343576058745384,-0.6420366591773927,-0.8345986218191683,-0.8761574551463127,-0.8453342779539526,-0.2292529959231615,0.4732596636749804,0.5324977971613407,-0.8603324424475431,-0.4214452663436532,0.29051854368299246,-0.7970106122083962,0.4342810967937112,0.7307588490657508,0.8868052545003593,0.38105921214446425,-0.9988764547742903,0.6430265847593546,0.8842086759395897,0.32667275657877326,0.6028410061262548,0.7881698403507471,-0.8529392369091511,0.8655152264982462,0.4890640084631741,-0.9288773885928094,-0.6767665888182819,0.3837127978913486,0.7087308363988996,0.6479377700015903,-0.5282248938456178,-0.6440131389535964,0.11750243790447712,0.6335705053061247,0.37552071548998356,0.9654407617636025,0.08869449375197291,-0.2640363438986242,-0.8542514066211879,-0.3358150674030185,0.9981575706042349,-0.9758532140403986,-0.5232827733270824,-0.2671874104999006,-0.4401509761810303,0.08985528582707047,0.21652672067284584,0.2671853634528816,-0.9841409618966281,0.20232824934646487,0.8215891513973475,0.5323509993031621,-0.8393906303681433,0.8394752275198698,0.6531905769370496,-0.7566537233069539,0.4871075958944857,-0.24628370208665729,-0.12836714601144195,0.31253356160596013,0.21250819321721792,-0.17110473243519664,0.4472216172143817,-0.9530924190767109,0.5925445123575628,0.9241535440087318,0.6316485139541328,0.37557017989456654,0.4924745806492865,0.9597298908047378,-0.6241901684552431,-0.7206677030771971,-0.17113746562972665,0.14121807739138603,0.9234207435511053,0.10864529851824045,-0.9189496031031013,0.49860615376383066,0.6136442250572145,0.11930440133437514,-0.2912119557149708,0.8303315285593271,0.4278407362289727,0.01088772900402546,-0.3565207342617214,-0.1456884047947824,0.8151253028772771,0.5760813313536346,-0.8421829878352582,0.9032762232236564,0.5999567904509604,-0.35294329514726996,-0.15417004423215985,0.7929780995473266,0.02386805322021246,0.37108961399644613,0.556055748835206,-0.5862339604645967,-0.19563783332705498,-0.9131763614714146,0.8295897338539362,-0.7903121723793447,0.15342113049700856,0.5305588087067008,-0.24698112439364195,-0.017893550917506218,-0.846277124248445,0.2986319260671735,-0.5254216026514769,0.9337641643360257,0.5413609864190221,0.12972135096788406,-0.362576172221452,-0.27187881246209145,-0.5296961227431893,0.42055605351924896,0.6376720266416669,-0.15519680036231875,0.0343789947219193,-0.5283970297314227,0.7782059712335467,-0.39280030271038413,0.33294684579595923,0.6209374857135117,0.8245165925472975,-0.7955634514801204,0.6037592180073261,-0.9277314050123096,0.45687592681497335,0.3633363419212401,0.106318105943501,0.9906257772818208,0.7303956816904247,0.8471166542731225,0.6219703853130341,-0.010490106884390116,-0.1352519285865128,-0.8024409548379481,0.5232318616472185,-0.6817504242062569,0.9297950910404325,0.46681382320821285,-0.16278726886957884,-0.8312055952847004,-0.01032479340210557,-0.9010044122114778,0.9583468823693693,0.5419859196990728,0.1835336433723569,0.7958716819994152,-0.859349962323904,0.22939324332401156,0.903027989435941,0.5395043129101396,-0.9517523311078548,0.9687299178913236,-0.5818466143682599,-0.05203698994591832,0.6793995201587677,0.990971933118999,-0.6821453063748777,-0.9589410023763776,0.7157926820218563,-0.04044418968260288,-0.15705743804574013,-0.016055901534855366,0.27727513294667006,-0.13901014160364866,-0.1314395321533084,-0.6782217444851995,-0.603336411062628,0.9260609936900437,0.9514146251603961,-0.5505724805407226,-0.2465385152027011,0.19536652276292443,0.574111464433372,0.299704235047102,0.3868563938885927,0.1665316871367395,0.6324218516238034,0.2611948153935373,-0.06645509041845798,-0.8416078640148044,0.2086218879558146,0.18060243455693126,-0.5079137096181512,0.8442091355100274,0.49797358363866806,0.2529537780210376,-0.9374389890581369,0.6475554956123233,0.7783368933014572,0.16665812768042088,0.017869595903903246,-0.9477249872870743,0.5302764354273677,-0.8702145512215793,0.9708943981677294,-0.43063633143901825,0.23047107551246881,-0.8467851872555912,-0.8881499785929918,0.5033715013414621,-0.976940777618438,0.9214289332740009,0.17403126088902354,-0.48490524338558316,0.7981556616723537,0.32758846832439303,-0.5153710264712572,0.288913912139833,0.7936442261561751,0.6616457826457918,0.22637742944061756,0.7088157162070274,0.7423967132344842,0.17519213538616896,0.15546654677018523,-0.45035755494609475,0.2997182793915272,-0.5957026309333742,0.07875122176483274,0.33567896811291575,-0.3173770643770695,0.014664018992334604,-0.2600530060008168,0.32161868549883366,0.959293439052999,0.3399657169356942,-0.12958560278639197,0.9549927078187466,0.7057577967643738,0.9232379058375955,0.07757084118202329,0.4672265872359276,0.6311880978755653,-0.4759988524019718,0.9785101455636322,-0.47559601720422506,0.24385495716705918,0.8742004279047251,-0.03426651703193784,0.7743118787184358,-0.4274159059859812,-0.12700316356495023,0.9421574315056205,0.10117295803502202,-0.8670678669586778,-0.3561860709451139,0.8280218527652323,-0.548685843590647,-0.5747020994313061,0.2329504112713039,0.20484787411987782,-0.5704638748429716,0.9684723541140556,-0.49897643411532044,-0.9681978821754456,0.7792799724265933,0.49754358641803265,-0.2821592497639358,-0.7765256050042808,0.4859845070168376,0.9160303766839206,-0.38874620432034135,0.9294574158266187,0.8554398333653808,0.9325774237513542,0.7900970731861889,0.22585019003599882,-0.8746315538883209,0.8899707817472517,0.7728897724300623,0.37840135022997856,0.7453380147926509,-0.04519456438720226,-0.4137034835293889,0.9602401088923216,-0.6209807139821351,0.5349796069785953,0.7492283689789474,-0.5176161536946893,0.4242390198633075,-0.7132859495468438,-0.4087505326606333,-0.05018243519589305,0.9038091753609478,0.7583722416311502,0.6924508810043335,-0.6521999849937856,-0.3064764169976115,0.5469956444576383,0.8018175908364356,-0.15329875005409122,-0.030364721082150936,-0.6138157146051526,0.2233508895151317,0.29626085329800844,0.5182417533360422,0.08172967890277505,-0.4042644677683711,0.6548026972450316,-0.9839436234906316,-0.015112964436411858,-0.41926342993974686,-0.11819825833663344,-0.9830059721134603,0.08804901503026485,-0.5131571837700903,-0.959239149466157,0.40157461538910866,0.41903079906478524,-0.9595308229327202,0.2000312195159495,0.1994531899690628,0.2337126978673041,0.648506828583777,0.5707083949819207,0.08682215865701437,0.3602583548054099,0.13527528010308743,0.31467726081609726,0.6637870389968157,0.29997668135911226,-0.847534547559917,-0.5161816668696702,-0.500980107113719,-0.23401533486321568,0.4459976558573544,-0.5956314662471414,0.4637285410426557,0.48592411912977695,-0.4917271537706256,0.31598558835685253,-0.6303051980212331,0.7017524824477732,0.6786511028185487,0.7124929637648165,0.6011606282554567,-0.805471885483712,0.61778828734532,-0.43745967326685786,0.9500853987410665,0.2071426585316658,0.2615449824370444,-0.7240792131051421,-0.1619857307523489,-0.8227627188898623,0.6940379808656871,-0.314545844681561,-0.4667431437410414,0.5487195136956871,-0.9959405828267336,-0.814654482062906,-0.9727434827946126,-0.9217334222048521,-0.2833095407113433,0.3469917578622699,-0.9700985779054463,-0.028503103647381067,-0.5206908495165408,-0.49146354012191296,-0.6092223972082138,-0.3113449919037521,0.6164822545833886,0.11790639394894242,-0.20501479785889387,0.5568991294130683,-0.015904194675385952,0.2593132979236543,-0.1208668602630496,-0.9295242903754115,-0.9637454147450626,-0.11398555897176266,0.42676200438290834,0.8517974154092371,-0.011108297389000654,0.38707034522667527,0.5106012616306543,-0.3436235790140927,0.43502419348806143,-0.27599427942186594,-0.8579288590699434,-0.8089678715914488,0.8948878129012883,0.5236788536421955,0.18043790198862553,0.6851300396956503,0.10229069460183382,-0.6893532481044531,-0.4044614708982408,0.35378343239426613,0.7984445584006608,0.8966465843841434,0.23947696015238762,-0.8795888489112258,0.4166111717931926,0.4836686230264604,-0.11328867916017771,0.8898689704947174,-0.18062320444732904,0.7502873446792364,0.11427901685237885,0.40419696597382426,0.7296154494397342,-0.5977826481685042,0.9381369641050696,-0.9603866441175342,-0.620802802965045,0.07499634334817529,0.7563934102654457,0.9180415975861251,0.23298348765820265,0.8270223396830261,0.14547432260587811,-0.3249817509204149,-0.5627031740732491,-0.8311839043162763,-0.19341747602447867,0.8962841341271996,0.6538191749714315,-0.9710872890427709,0.9356130412779748,0.3996967729181051,0.5844383765943348,0.22310908045619726,0.2104084501042962,0.8683460643514991,-0.9221229506656528,0.9123868518508971,0.3432830208912492,-0.6125284978188574,-0.3210419388487935,0.9629864930175245,-0.18683160468935966,0.9930538740009069,0.7203265740536153,0.8353417385369539,-0.12632474629208446,0.4908245000988245,0.6552289482206106,-0.4897089935839176,-0.11227773688733578,-0.14602088229730725,-0.18324638344347477,-0.07897335523739457,0.5642860238440335,0.4257364431396127,-0.5800134567543864,0.09561834670603275,0.5251776217482984,0.21190210338681936,-0.7931490601040423,-0.9584214715287089,-0.7775995847769082,0.669371793512255,-0.9601129260845482,0.001440458931028843,0.24859267473220825,0.9973824578337371,0.3628127765841782,0.1725721419788897,0.43781468318775296,0.17106263153254986,0.7338133128359914,-0.9097477300092578,0.8277521734125912,-0.5611443445086479,-0.20447595044970512,-0.04625997971743345,0.624240952078253,-0.6903881649486721,-0.9431583755649626,0.28284166334196925,-0.6802227888256311,-0.2532539493404329,0.001439015381038189,0.09609265066683292,0.42109593795612454,0.5334814595989883,0.853078561834991,-0.8522302890196443,0.13627822091802955,-0.5093658799305558,-0.7840521815232933,-0.7010968010872602,-0.9094580006785691,-0.3034443352371454,0.5442207418382168,-0.3110418883152306,0.00916508724913001,0.5953384954482317,-0.20149086834862828,0.21503556845709682,-0.49732636334374547,-0.44813028117641807,-0.7172969542443752,-0.4979503769427538,-0.7836438342928886,-0.5002676798030734,0.0429159733466804,0.3207282410003245,-0.1079072505235672,-0.5409851809963584,0.9756419188342988,0.19082619016990066,-0.8633882696740329,-0.232855174690485,-0.7868019309826195,0.48176931822672486,0.9568522195331752,0.644995454698801,-0.353140935767442,0.09345181565731764,0.5548641486093402,0.9462629207409918,-0.33096557948738337,0.678064941894263,-0.7599543547257781,0.23971351888030767,0.9817890538834035,0.12608621595427394,-0.5247163344174623,-0.7113474537618458,0.048452538438141346,-0.4875321672298014,0.31666070362553,-0.8034547008574009,-0.9305327339097857,0.2029716926626861,-0.02413073554635048,0.4831391992047429,0.6534093506634235,-0.41286591719835997,0.07777806231752038,0.4291294142603874,0.6550833554938436,-0.9343949533067644,-0.210154979955405,-0.9504661695100367,0.427391798235476,0.87057696422562,-0.9430162287317216,0.601411234587431,0.253159471321851,-0.8534445543773472,0.8117054253816605,0.7867104392498732,-0.2760547515936196,0.8604705235920846,0.10234527196735144,-0.6244078613817692,-0.39895213721320033,-0.8050967054441571,0.49060944095253944,-0.6466874713078141,-0.5294666886329651,-0.1665786886587739,-0.17203329782932997,0.6465632533654571,0.500372068490833,0.9057904067449272,0.19126150757074356,0.6100182752124965,0.7647579535841942,-0.20772788021713495,-0.41424548625946045,0.1793948612175882,0.9446928594261408,-0.913739578332752,0.1670164242386818,-0.24161925027146935,0.559393416158855,-0.12251754431053996,0.04648921499028802,0.717322510201484,0.6762860231101513,-0.3115425198338926,-0.8583677671849728,0.0846348931081593,0.3348850244656205,0.8983969371765852,0.7038222579285502,-0.10517874546349049,-0.08901355694979429,-0.11969421384856105,0.23374616215005517,0.10397110879421234,0.6142951371148229,-0.29390663001686335,0.7427682927809656,-0.7555183949880302,0.4774976228363812,-0.0822350550442934,-0.35068870801478624,0.3663908550515771,-0.4353744578547776,-0.033694623969495296,-0.3310664086602628,0.20362095767632127,0.24451020266860723,0.3753559645265341,-0.6382320299744606,0.5696319206617773,-0.26732476614415646,-0.05998657364398241,0.10738143185153604,-0.06842880882322788,0.04292784258723259,-0.08221741858869791,0.9264166969805956,-0.26807327196002007,0.8310482790693641,-0.7890009013935924,-0.6761486777104437,0.9538542116060853,0.04333423310890794,-0.9663329292088747,-0.3485054951161146,0.2411933671683073,-0.5122874705120921,-0.7007919158786535,0.27784315310418606,-0.1946940552443266,0.4292381228879094,-0.46286177169531584,-0.348697149194777,-0.4446791256777942,0.6407525488175452,-0.9762127078138292,-0.7005743412300944,-0.8176506222225726,-0.48312785383313894,-0.3373764553107321,0.43041969696059823,-0.891919725574553,-0.8931596968322992,0.025733104441314936,0.03800680581480265,0.3747044485062361,0.12944350391626358,0.9217777801677585,0.7618140992708504,0.32608390785753727,0.4339802749454975,-0.2363223540596664,-0.7196529409848154,-0.15452360128983855,-0.11322664003819227,-0.8848720481619239,-0.7148878928273916,0.13098109606653452,-0.4501368016935885,0.2540379948914051,0.15123106772080064,0.9613049207255244,0.8329913597553968,-0.11399732483550906,0.47358473343774676,0.7548562423326075,-0.0002975473180413246,-0.062077532056719065,-0.43886068649590015,-0.990378899499774,-0.8046919601038098,-0.49485219456255436,0.5144623932428658,0.7540643587708473,0.1387798972427845,-0.6335534192621708,0.320096168667078,-0.49590037716552615,-0.27624812070280313,0.08426839765161276,0.39824726385995746,-0.5917434166185558,0.553567067719996,0.4638702473603189,0.7720230864360929,-0.07250281283631921,0.013745804782956839,-0.11500604916363955,0.35177166340872645,0.4670838196761906,-0.9296316946856678,0.2989293932914734,-0.35757930390536785,0.002358458936214447,0.11774397874251008,0.17960231471806765,0.12128064222633839,0.12150568189099431,-0.9711108794435859,-0.7171977558173239,-0.654670680873096,-0.4126882986165583,-0.7050448264926672,0.8711824747733772,0.4119231030344963,-0.16488278144970536,0.3003619541414082,-0.2067576190456748,0.8336913334205747,0.6452949494123459,0.984763182234019,-0.2739390139468014,-0.9467456596903503,0.5103748594410717,0.5312994341365993,-0.8933261390775442,0.27149113779887557,-0.36275757662951946,0.4477860378101468,0.5282613192684948,0.9692689338698983,-0.8612443432211876,-0.35330246575176716,0.6203193520195782,0.7985603306442499,-0.27882645511999726,0.6544887674972415,-0.5370118753053248,-0.012998415622860193,0.554965250659734,-0.8742398447357118,-0.12004046002402902,0.02215975522994995,-0.19127731584012508,-0.7453143647871912,-0.2115422817878425,-0.884334962349385,0.3786772429011762,0.5270507531240582,-0.4521825183182955,0.39504749327898026,-0.11507691815495491,0.26258829748257995,-0.39389581605792046,0.5510232648812234,0.7938457634299994,0.0011745495721697807,0.016959631349891424,-0.5391199844889343,0.8243007538840175,0.145115883089602,-0.7207038183696568,0.3574393386952579,-0.40191919868811965,-0.5955247543752193,-0.5830206577666104,-0.8367300643585622,-0.21926428517326713,-0.14333066437393427,0.5890678255818784,0.8082279339432716,-0.1621447578072548,-0.1139904735609889,-0.322558986954391,-0.9327985444106162,-0.8543298630975187,0.4168347679078579,-0.20544734876602888,0.4439844097942114,0.8355483906343579,-0.7254589842632413,0.17512124171480536,-0.28706384263932705,-0.13198690116405487,-0.7259064516983926,-0.6317214942537248,-0.8646207498386502,-0.671769087202847,0.6325139407999814,-0.19817938841879368,0.027847612276673317,0.28077897476032376,-0.2085234308615327,0.2416208661161363,0.0022170329466462135,0.35122029297053814,0.7918090526945889,-0.9501548646949232,-0.2791665247641504,0.030643914360553026,-0.5841780831106007,-0.9585966416634619,0.3013003612868488,-0.2981425402686,0.8966579614207149,0.6316871088929474,-0.6917033013887703,-0.7718383851461112,-0.38342193188145757,0.5244117653928697,0.18476391350850463,0.12861720705404878,0.59608687274158,0.892970388289541,-0.6630199877545238,0.9416752336546779,-0.41058204462751746,-0.6300023272633553,-0.5403540362603962,0.3634069478139281,-0.45046529173851013,0.6569895558059216,-0.4497229689732194,-0.6503580799326301,-0.9815520863048732,-0.7131889369338751,0.20627182023599744,-0.21361618116497993,0.050572846084833145,-0.40694016590714455,0.5506738610565662,0.4937656493857503,-0.8949428359046578,0.44842597050592303,0.03396599646657705,-0.7061288557015359,-0.6577628506347537,-0.724631221499294,0.6423992849886417,0.6431807880289853,0.2246512216515839,-0.20554020069539547,-0.9878339315764606,-0.977058685850352,0.38007398089393973,0.13955014199018478,-0.26550894416868687,-0.45109004713594913,-0.48007941944524646,-0.6454673991538584,-0.5205221311189234,-0.040876719169318676,-0.10923095745965838,0.1826425064355135,0.8609331068582833,-0.912484903819859,-0.35717521514743567,-0.44288020581007004,0.5224163345992565,0.48216930916532874,-0.679143687710166,0.506645165849477,-0.2052680915221572,0.3903017798438668,0.3577013253234327,-0.6381165077909827,0.7141560986638069,-0.8956698374822736,-0.3056637831032276,0.054974858183413744,-0.782910795416683,0.7905608392320573,-0.36418284196406603,0.39539171755313873,-0.7469057948328555,-0.9280723137781024,-0.8822046187706292,0.44744576094672084,0.9728603861294687,0.5829513394273818,0.21761692874133587,-0.534138759598136,0.08365216990932822,0.3844832917675376,-0.37925852183252573,-0.10709498915821314,-0.8246279289014637,0.842534210998565,0.43296436220407486,-0.9034250937402248,-0.7265033288858831,-0.3814465538598597,-0.7525734533555806,-0.6929295482113957,-0.9943306059576571,-0.1976160304620862,0.9886349039152265,-0.7059079436585307,0.7485921960324049,0.8634992726147175,0.4508615965023637,0.5325696389190853,-0.09412764711305499,0.9853345025330782,-0.6553916549310088,-0.6945863733999431,-0.18445573607459664,0.3165618791244924,-0.1455149413086474,0.49816519068554044,-0.08277515368536115,0.48216615710407495,0.6364299482665956,-0.24510026071220636,0.9128147647716105,-0.13649916695430875,-0.8891375358216465,-0.18940019886940718,0.4439979982562363,0.1777715808711946,-0.8824416459538043,-0.3078867793083191,0.17383674019947648,0.6853342978283763,-0.828879785258323,-0.9180068150162697,-0.047315544448792934,0.7362486543133855,0.15896057849749923,0.15594518324360251,-0.9428964429534972,0.9040932157076895,-0.297163306735456,0.13642781134694815,0.19650526996701956,0.4728425373323262,0.42226286558434367,0.5511902198195457,-0.37040751008316875,-0.7990315603092313,-0.8402417292818427,0.9273237874731421,0.5637858770787716,0.8867457681335509,0.9215415911749005,0.9778356924653053,-0.7692672582343221,-0.4219529405236244,0.7318420116789639,-0.2566811880096793,-0.6652220697142184,-0.4310743799433112,-0.12718879990279675,-0.5173079771921039,-0.3845296516083181,0.8955255821347237,0.4681184641085565,0.2248990391381085,0.2388326763175428,-0.3120469180867076,0.5017578438855708,-0.9803934791125357,0.40194461727514863,-0.07290895003825426,-0.6117407977581024,0.1614465839229524,0.9743575393222272,0.45111433090642095,-0.46889740508049726,-0.9172379397787154,0.5350684388540685,0.042667143512517214,0.7325405539013445,0.761760544963181,-0.7083298559300601,0.7345910216681659,-0.3030938943848014,0.569943149574101,0.18229694943875074,-0.4614388905465603,0.1805608356371522,0.5735939634032547,0.6867111097089946,-0.7859890284016728,-0.9542963076382875,-0.20010036509484053,-0.4811786701902747,0.610737559851259,0.5952723785303533,-0.9115023259073496,-0.11865973984822631,-0.6664955941960216,-0.6764654875732958,-0.1698577655479312,-0.9184694667346776,0.643500694539398,-0.7811633818782866,-0.7523152651265264,0.939525309484452,0.46354756411165,0.9366560718044639,0.8612925698980689,0.8065705616027117,0.2296144743449986,-0.4001500871963799,-0.5920419367030263,0.4582419437356293,-0.4798172959126532,-0.08450997760519385,-0.39046137873083353,-0.9380202796310186,-0.9070325032807887,-0.9974224492907524,-0.01695655146613717,0.5441139284521341,0.6321905995719135,-0.6101459604687989,-0.9371394761838019,0.08373534912243485,0.8702213950455189,0.1864775735884905,-0.4524082303978503,-0.8765249070711434,-0.3645053803920746,0.7481965627521276,-0.6927249939180911,0.5078200125135481,0.1975164609029889,0.46138669876381755,0.5523644299246371,0.7874498944729567,-0.31213042233139277,-0.1232309709303081,0.07479296764358878,-0.6010482339188457,-0.07092548487707973,0.3581287320703268,0.8122956021688879,-0.5121303107589483,0.5649901279248297,0.567660323344171,0.31972413090988994,-0.6007013628259301,0.187044529709965,0.97982505755499,-0.6132859126664698,0.003431187476962805,-0.031170088332146406,0.8140007620677352,-0.2212417139671743,-0.435319010168314,-0.9750362662598491,0.3762506674975157,0.5582031020894647,-0.5348181207664311,0.24703736044466496,-0.0855788504704833,0.5679572648368776,-0.4549788683652878,-0.21009590290486813,-0.15181103441864252,-0.04751799860969186,-0.7108725234866142,0.15316255297511816,0.9410191993229091,0.043614791706204414,-0.7097366573289037,-0.2812267579138279,0.07437871675938368,-0.15737393265590072,0.1957025700248778,0.5041338573209941,0.42994084395468235,0.7032082015648484,-0.8436454371549189,0.20033150678500533,0.24876085156574845,0.3934032586403191,-0.02166642202064395,-0.7295251619070768,0.9575988221913576,0.5573633196763694,0.5512114763259888,-0.6616117805242538,0.4582083481363952,0.19907122384756804,-0.9152747159823775,-0.14786684419959784,-0.9091643374413252,-0.07564993994310498,-0.16836764849722385,-0.12703190883621573,0.2929029488004744,-0.055624798871576786,-0.9526171218603849,-0.6877525667659938,-0.143646907992661,-0.838438939768821,0.5732607115060091,-0.455272669903934,0.044018082320690155,-0.9052916802465916,-0.726163549348712,-0.4177635284140706,-0.7645978233776987,0.33955199737101793,0.4323882982134819,0.3968943511135876,-0.9618631941266358,-0.4146862318739295,0.012284681666642427,0.9474872420541942,-0.16614122036844492,-0.6720961965620518,0.6134023908525705,0.6412939759902656,-0.13980115298181772,0.20497509511187673,-0.6478807679377496,0.9238664950244129,-0.009591339621692896,0.6790441670455039,-0.5925152995623648,0.9954746668227017,-0.6261671367101371,0.4761046627536416,0.7812743880786002,0.3883322956971824,-0.24644514778628945,-0.830446929205209,0.8465961599722505,-0.3293059798888862,0.8086524899117649,0.10901684686541557,-0.16527306521311402,-0.6365853934548795,-0.42215694347396493,0.5939119444228709,-0.31307763047516346,0.16184438858181238,0.01811762386932969,0.15232391096651554,-0.5943588558584452,0.5691197132691741,0.5408678795211017,-0.761026777792722,-0.4125021183863282,-0.3198490892536938,0.9179856074042618,0.425821827724576,0.8231520708650351,0.5493305041454732,-0.24572792975232005,0.9924038434401155,0.052272820845246315,-0.36008503986522555,0.1961510656401515,-0.5676728179678321,0.7755916910246015,0.019062031526118517,0.7200493882410228,0.024580458644777536,-0.2598688811995089,0.5840604673139751,-0.6371029932051897,-0.6113330642692745,0.3708101846277714,-0.23312813602387905,-0.5713061755523086,-0.02097852434962988,-0.9592684041708708,-0.6531219654716551,0.7819038098677993,0.6790843708440661,-0.20158409234136343,-0.16027890471741557,-0.7307093422859907,0.15326546225696802,0.9352325717918575,-0.09327516937628388,0.05394979240372777,0.9520752634853125,-0.2903317464515567,0.9244805569760501,0.5638019517064095,0.0371859734877944,0.9875147789716721,0.9713109554722905,-0.9983366318047047,0.43259970424696803,0.23476083995774388,-0.4225702132098377,-0.44420176930725574,0.1467066677287221,-0.08515689428895712,-0.4452141490764916,0.009397171437740326,0.8765433398075402,-0.912900026421994,-0.9053613347932696,0.05415757978335023,0.5406909105367959,-0.8777317223139107,0.27354273898527026,-0.1812811722047627,0.06812223326414824,-0.4391452157869935,0.9978210628032684,-0.26437765592709184,0.6303828558884561,-0.17817880352959037,-0.09612030629068613,0.6625850521959364,0.9648958090692759,-0.2861885200254619,-0.6394821335561574,0.14049290399998426,0.3430131562054157,0.6690521594136953,0.47759038489311934,-0.4069737331010401,-0.9812782392837107,-0.29054857790470123,-0.9572535613551736,0.10424957005307078,0.6199492989107966,0.682982490863651,-0.612202406860888,0.39716771012172103,-0.9425900750793517,-0.34327774308621883,-0.22647864697501063,0.7112533682957292,-0.5252995337359607,0.464892964810133,-0.032343707513064146,-0.6305314805358648,0.40219256142154336,-0.1460189581848681,0.763804268091917,0.36984991608187556,-0.11741811223328114,0.8876659828238189,0.3779693548567593,-0.5107234246097505,-0.767186850309372,0.5200772960670292,-0.9579205377958715,0.5686427233740687,-0.9351170756854117,-0.2685887166298926,-0.21263974159955978,0.5023927874863148,0.29400448920205235,0.5351878120563924,0.03139688307419419,-0.9135932330973446,-0.6250563492067158,-0.03281073737889528,-0.38735425658524036,-0.5492389313876629,-0.6332149375230074,0.41318909730762243,0.01051478460431099,0.10901215067133307,0.9731550277210772,0.7885685772635043,-0.30894406978040934,-0.4706879546865821,-0.20294767385348678,-0.35809375206008554,0.5905046239495277,-0.7092042854055762,0.9484240156598389,0.426929818931967,-0.860308485571295,-0.058710758574306965,-0.5521962512284517,0.7946688593365252,-0.251637214794755,0.5481752213090658,-0.8629465852864087,-0.26108396984636784,-0.37366204569116235,-0.08682990120723844,0.11168905068188906,0.5661903657019138,-0.6237774211913347,-0.7885579480789602,0.6240423149429262,0.5212283045984805,-0.6694776746444404,0.3068923372775316,0.35233468655496836,0.9988723392598331,0.29465747624635696,0.38222465571016073,0.9335987321101129,-0.23810770409181714,0.7251305119134486,-0.9181653615087271,-0.48553437553346157,-0.6178253693506122,-0.8009484517388046,0.47023793682456017,-0.1070277071557939,-0.2673089955933392,0.5803402476012707,0.4510484957136214,-0.03180785523727536,0.04870740929618478,0.6770269451662898,-0.3578939102590084,0.7689933246001601,-0.008734528440982103,0.6149859977886081,-0.6360533479601145,0.21001986414194107,-0.9791178796440363,0.8681307323276997,-0.8156942040659487,-0.27444400964304805,0.9675015639513731,0.698252712842077,-0.7920643333345652,-0.9976298827677965,0.6467884611338377,-0.3940423368476331,0.6819902146235108,-0.8780497787520289,-0.48558811424300075,-0.7209483543410897,0.33740681037306786,-0.11846150131896138,-0.7433535731397569,0.033263600431382656,-0.49821535078808665,0.009241798892617226,0.30993355717509985,-0.948018872179091,0.761146878823638,-0.7309260750189424,-0.04499675193801522,-0.5246692704968154,-0.5046497327275574,0.09340274473652244,-0.36305157421156764,0.5886315410025418,-0.9352864441461861,-0.9929963410831988,-0.4067700579762459,0.2966584274545312,0.5354502089321613,0.252346845343709,0.020682604983448982,-0.6864507575519383,-0.4049377953633666,-0.6233950285241008,-0.912685071118176,-0.04282969934865832,-0.17631506733596325,-0.7233199179172516,0.26738287042826414,0.647161734290421,0.07264547143131495,0.7248014016076922,-0.2956504472531378,-0.4191598631441593,-0.45358669431880116,-0.32347485423088074,0.49468940682709217,-0.667668663430959,-0.1363804885186255,0.08059114962816238,0.5248106340877712,0.8865370196290314,-0.7568113394081593,-0.2518205991946161,-0.40334956953302026,0.40474823117256165,0.084856943693012,-0.18828883999958634,-0.6528248679824173,0.2318747346289456,0.4386247266083956,0.807242903392762,0.6524763703346252,-0.09770550997927785,-0.2715218416415155,-0.24556603329256177,0.7076135952956975,0.2981075714342296,-0.6656208080239594,-0.12751233763992786,-0.45331396954134107,0.638151899445802,-0.11673207860440016,0.44754860270768404,0.46737324027344584,0.49097267631441355,0.09205097798258066,0.4310823413543403,-0.31696754787117243,-0.2861199197359383,0.4955920735374093,-0.9399346266873181,-0.1021672822535038,-0.8889190093614161,0.2549462732858956,0.6584363831207156,0.3621372920460999,-0.8356061871163547,-0.1897203424014151,-0.523774110712111,-0.07895048148930073,0.6113642482087016,0.35492832120507956,-0.5536107025109231,0.4201423083432019,-0.7368393340148032,-0.19440856343135238,0.012414144352078438,-0.5832541454583406,0.7586234272457659,-0.6041782042011619,0.23530420660972595,0.06655066553503275,-0.1666014725342393,0.49603986041620374,0.32697880920022726,-0.7685990058816969,0.7902311850339174,0.4509525862522423,-0.48940508998930454,-0.3770574224181473,-0.49795225681737065,0.017213058657944202,0.7628225469961762,-0.26723869191482663,0.9082025103271008,-0.31803494272753596,-0.7201523464173079,-0.16900026286020875,-0.2789950338192284,0.7077792440541089,-0.26162161119282246,-0.5191149031743407,-0.9060828210785985,-0.045909675769507885,0.49261996941640973,-0.16501888073980808,-0.6309920633211732,-0.3312317575328052,-0.9158362331800163,-0.039770913776010275,0.355095686390996,0.9621699564158916,-0.8487250241450965,0.16156080225482583,0.5905189830809832,-0.4725311999209225,-0.5224394737742841,-0.3968208972364664,0.7528915330767632,-0.12242971267551184,0.5109331123530865,0.6786530502140522,0.7837584321387112,-0.43975180201232433,0.8217376791872084,0.06637829961255193,-0.6340823615901172,0.5957547100260854,-0.6179722752422094,-0.16888020606711507,-0.2831763019785285,0.3975273072719574,-0.38223252817988396,-0.9925453830510378,-0.8823807178996503,0.4088896536268294,-0.4707907382398844,-0.8316060351207852,-0.9270738917402923,-0.1761914505623281,-0.6782322865910828,-0.6730491323396564,0.8987921639345586,0.5657781600020826,0.4113840884529054,-0.4707355475984514,0.4555063680745661,0.40618175314739347,0.5910136182792485,-0.744868733920157,-0.7342223105952144,0.5191985396668315,-0.29256334295496345,0.3739033821038902,-0.7477156673558056,-0.07655290188267827,0.467945272102952,-0.19365839753299952,0.20633911108598113,0.07873061625286937,-0.6159119363874197,-0.4799139662645757,0.08125638077035546,-0.5398858361877501,0.7106648306362331,-0.7865157974883914,-0.7425068002194166,-0.009700921829789877,0.19413552014157176,-0.030035053845494986,-0.16456744587048888,0.27395997755229473,0.9325890014879405,-0.30146861588582397,-0.2659378070384264,0.02970824809744954,-0.6922834971919656,0.28958548605442047,-0.6698666475713253,0.5155609310604632,-0.17719219950959086,0.24964696262031794,-0.8331462140195072,-0.8494767351076007,0.6531207170337439,-0.8627089285291731,0.6363249025307596,-0.6379111064597964,-0.2298742886632681,0.18564493069425225,-0.3557396079413593,-0.9687360571697354,0.5983747867867351,0.4251398299820721,-0.5785845452919602,0.6694544199854136,0.47730732150375843,0.0708429804071784,0.8826481164433062,0.8006991157308221,0.03390437224879861,-0.016965954564511776,-0.053617008961737156,0.5483593372628093,-0.4519574148580432,0.09670144552364945,0.1772960778325796,-0.8450679047964513,-0.5920647541061044,-0.9345077564939857,0.7718329457566142,-0.8426007702946663,0.5402369969524443,0.6498165265657008,-0.16729188384488225,-0.6596292434260249,-0.639930494595319,-0.7278695032000542,0.6806231937371194,-0.3815828994847834,-0.9674489167518914,0.19961844151839614,-0.17150375805795193,0.6471419758163393,0.8524612095206976,-0.9012789172120392,-0.979484791867435,0.15951468236744404,0.3478487217798829,0.6036760634742677,-0.16699574701488018,-0.399042637553066,0.9902993333525956,-0.24027321441099048,0.3365287147462368,0.38912517903372645,-0.5488751605153084,0.6195305339060724,0.8715212824754417,0.9957665610127151,-0.5203596828505397,-0.17232578340917826,-0.9230742650106549,0.9757928475737572,-0.4224600759334862,-0.30972615303471684,-0.38714198349043727,-0.27953495271503925,0.4661102001555264,0.32527581276372075,0.14408901892602444,-0.5249666031450033,-0.6253699166700244,0.7658243291079998,-0.35914988117292523,0.9538359306752682,0.8287400747649372,-0.3033100455068052,0.526696729939431,-0.5652346359565854,-0.712164893746376,0.8779182429425418,-0.1223975969478488,0.7923133764415979,-0.9460820313543081,0.3363858791999519,-0.8035838520154357,0.8372415755875409,-0.8737365351989865,-0.3291689739562571,0.9779267669655383,-0.03602458396926522,0.7845937754027545,-0.3592619667761028,-0.7370200678706169,-0.4766779886558652,-0.5165345659479499,0.07757154386490583,-0.20161419734358788,0.08964453544467688,0.656360580585897,0.6118489885702729,0.08888360764831305,-0.2345636673271656,0.9777760449796915,0.7934962539002299,-0.44563469802960753,-0.8191306754015386,-0.044282684568315744,-0.5037704017013311,-0.3460488133132458,-0.360306691378355,-0.35104392282664776,0.42643482610583305,-0.038883589673787355,-0.4828345915302634,0.30096614453941584,-0.6390194683335721,-0.8940320578403771,-0.9592890669591725,-0.6166282072663307,0.8233757698908448,0.5732001136057079,-0.47098633693531156,0.12927859695628285,-0.90311294561252,0.13310727989301085,-0.1986107132397592,-0.5403505791909993,-0.7343772305175662,0.9271831274963915,0.07782468665391207,-0.7975808037444949,0.4261878542602062,-0.9955745623447001,0.7682415014132857,0.7511678296141326,0.30658069299533963,-0.7124960636720061,0.8520371727645397,-0.18115312233567238,0.31376478588208556,-0.8836741945706308,0.018616362940520048,0.11115140793845057,-0.09320373833179474,-0.4835059978067875,-0.2599663366563618,-0.4479020764119923,-0.910013250540942,-0.8326101740822196,-0.9442450134083629,0.8464192291721702,-0.001142236404120922,0.40394227718934417,-0.8011968825012445,-0.47158094169571996,0.4888187595643103,0.10976351425051689,-0.4140159054659307,0.581658985465765,0.20840097637847066,-0.371461795642972,-0.07811186695471406,-0.2898813094943762,-0.12831854168325663,0.5655103651806712,0.7996100881136954,-0.42433429416269064,0.18063279520720243,-0.4080944648012519,-0.3640959025360644,0.1579988286830485,-0.5623146803118289,0.6105034272186458,-0.6161877084523439,0.1903323596343398,0.6253965650685132,0.5976890050806105,-0.11552309477701783,0.29180388431996107,-0.9872276806272566,-0.18842666782438755,0.7142999921925366,-0.2967830984853208,0.15605362970381975,0.19735032133758068,0.35215395875275135,0.9271162487566471,-0.23468822985887527,0.12363848742097616,-0.8414364419877529,-0.974281117785722,-0.8195581771433353,0.1723803598433733,0.4827453875914216,-0.5248215445317328,0.47405788535252213,0.7119307708926499,0.08916410058736801,-0.6748964674770832,0.7091820421628654,-0.5250354004092515,0.10958505002781749,0.06841341918334365,0.9167766268365085,-0.8201895342208445,-0.7867976520210505,-0.9956813766621053,0.29330998193472624,-0.6152955018915236,-0.5466197426430881,-0.06274736998602748,-0.6136737018823624,-0.5771849295124412,0.7462285463698208,-0.671286175493151,0.6189143671654165,0.7993649179115891,0.518111327663064,-0.4026840440928936,0.37117682164534926,0.3408915810286999,0.07500605890527368,0.690136615652591,0.6325722020119429,-0.3076954921707511,0.42509765224531293,-0.17557895882055163,-0.8388177766464651,0.22531262645497918,-0.7630032557062805,0.5381156005896628,0.04314237320795655,-0.04168435977771878,-0.969938256777823,-0.4636584986001253,-0.3295288453809917,0.8296857615932822,0.7185085299424827,-0.4428462223149836,0.5560144162736833,0.9100679107941687,-0.6039000069722533,-0.6597995534539223,-0.0913136750459671,0.4055761410854757,0.07026782259345055,0.5130982315167785,0.44371245289221406,-0.973306693136692,-0.05801136698573828,0.5630792211741209,-0.4760396727360785,0.5494520547799766,-0.4572673109360039,0.8265497889369726,0.4091644771397114,-0.46068785712122917,0.20596841676160693,-0.9264035229571164,0.8671057377941906,0.024103219155222178,-0.2492996728979051,0.24489449756219983,0.35734170861542225,0.0897524282336235,0.9176753335632384,-0.34325547236949205,-0.11457648035138845,0.7391678453423083,0.1908229379914701,0.09266308415681124,-0.2991269468329847,-0.43732817051932216,0.26649113185703754,-0.21094976691529155,-0.9695539209060371,0.734919642098248,-0.5034860302694142,-0.3058881564065814,-0.2862579491920769,0.26494738599285483,-0.10978009551763535,0.5542514072731137,-0.23787476401776075,0.3955879742279649,0.3317393255420029,0.6980358706787229,-0.8464158251881599,-0.4737471058033407,-0.45212396793067455,0.7626568404957652,0.17249415023252368,0.8207691083662212,-0.00548905972391367,-0.30234865099191666,0.6932754013687372,0.3396329772658646,0.22655646782368422,-0.9148485218174756,0.0009384062141180038,-0.3426402476616204,0.9064340479671955,0.05782159836962819,-0.6384729016572237,-0.23219454055652022,0.27843753015622497,-0.07569219078868628,-0.877797500230372,0.3494031005539,-0.3008409682661295,-0.5152011616155505,-0.39934708923101425,0.5488281399011612,-0.09086776990443468,-0.39597589801996946,0.03607363440096378,-0.38980406522750854,-0.6264391802251339,0.44714633375406265,0.1108450978063047,-0.025893947575241327,-0.044298002030700445,0.2034426061436534,-0.8456969135440886,-0.25939725479111075,-0.23357127280905843,0.7042317427694798,0.46322980197146535,-0.09101008996367455,-0.30182258505374193,-0.1315124169923365,-0.5408673319034278,-0.8352390667423606,0.5566841452382505,0.3740191604010761,0.5743194511160254,-0.23606165358796716,0.8379050060175359,-0.44089598255231977,-0.17053322913125157,-0.13749828469008207,-0.5333555773831904,-0.6749549158848822,-0.3855932140722871,-0.5576888737268746,0.501132866833359,0.6045971494168043,-0.4144804375246167,-0.5284239612519741,-0.513089822139591,-0.7699356554076076,0.11029090778902173,-0.09674492478370667,-0.8677191357128322,-0.9206662913784385,0.5697356346063316,-0.10031105298548937,0.7714177803136408,0.058281727600842714,-0.6062191938981414,0.28591925790533423,-0.5531879626214504,-0.32542963698506355,-0.0699399677105248,0.5045718383044004,0.5333672324195504,0.8664014902897179,-0.6514165718108416,0.4152044178918004,-0.5716854957863688,0.4363147169351578,-0.0934142149053514,0.013082807883620262,0.6013753651641309,-0.8144412832334638,0.14799603074789047,-0.7764762467704713,0.3953830427490175,0.8237206828780472,0.9809568161144853,0.3977014534175396,0.6943192942999303,0.1867712172679603,0.17040667729452252,-0.376607661601156,-0.8727488159202039,-0.5460761561989784,0.9441576083190739,0.7265129564329982,0.38172806007787585,0.09495058609172702,0.12008840637281537,-0.029702222906053066,0.6636593719013035,0.2310228766873479,0.10547089483588934,-0.3454434764571488,-0.9342687162570655,0.6148697952739894,0.30890763411298394,0.3235638551414013,0.8319648625329137,-0.49626884050667286,-0.12340062530711293,-0.3801545472815633,-0.05370741104707122,0.8663885919377208,0.05297839129343629,-0.9851710768416524,-0.8767426125705242,0.9816273455508053,0.6828448777087033,-0.8330045500770211,0.8439034884795547,-0.6116140633821487,0.1267884038388729,-0.6456896620802581,0.6055276608094573,-0.054373365826904774,0.2398790162988007,0.17264623614028096,0.12474030861631036,0.9350009826011956,-0.4423131621442735,-0.7405179389752448,0.6220945753157139,-0.09375389153137803,-0.8467619228176773,-0.8211457128636539,-0.4661534847691655,0.793317373842001,-0.6994787710718811,0.5668244031257927,-0.6709421915002167,0.00315102469176054,0.02498147403821349,-0.39027493447065353,-0.5403470182791352,-0.477167721837759,0.7633021338842809,-0.9069039179012179,0.9099995293654501,0.548285807017237,-0.9873527949675918,0.3890491630882025,0.6178287044167519,0.7996078077703714,-0.049389257561415434,-0.9867786900140345,0.44581263652071357,-0.5194026962853968,-0.6690155295655131,-0.163722466211766,-0.8037789068184793,0.48096245247870684,0.25028082402423024,0.3418112816289067,0.857804702129215,-0.6214480735361576,-0.5298014199361205,-0.7318988223560154,0.9924072911962867,0.8028825474902987,-0.7433640128001571,0.11312036821618676,0.8122659125365317,0.9596767080947757,-0.7136163832619786,0.6067348183132708,-0.03952749678865075,0.5158154028467834,-0.7490210956893861,0.8284149551764131,-0.4508438827469945,0.14342773891985416,-0.7685260339640081,-0.8187547088600695,-0.42247873079031706,-0.004243764560669661,-0.16451614070683718,0.7278784373775125,-0.5025530741550028,0.5010530045256019,0.6549522308632731,0.41565388394519687,-0.9553441605530679,0.5917372023686767,0.8372606071643531,0.9595957971177995,0.12043949589133263,0.22467618435621262,-0.5161241926252842,-0.08598703565075994,0.4414854673668742,-0.1816571238450706,0.4076312789693475,-0.03628854267299175,-0.19921474577859044,0.6717342147603631,0.2695090430788696,-0.17178467847406864,-0.03519047424197197,0.8123963582329452,-0.25211244728416204,0.4053510525263846,0.9089763266965747,-0.4037701697088778,0.6439149286597967,0.5634908978827298,-0.5116561069153249,-0.32901761308312416,0.7434921716339886,0.5996924787759781,0.10814825259149075,0.009094539564102888,-0.28940344974398613,0.2342301863245666,-0.06658123526722193,-0.8935855715535581,-0.06696676602587104,-0.6622447082772851,0.9248807523399591,-0.7259028698317707,0.4309849231503904,0.06920187640935183,0.2079111603088677,0.5302389394491911,-0.7402269099839032,-0.7195746055804193,0.7462696256116033,0.5768448668532073,-0.4336929372511804,0.8460411899723113,-0.6193386605009437,0.9797220146283507,-0.6691458229906857,0.8912268900312483,-0.21389323566108942,-0.7288100305013359,0.4077831404283643,0.3154920297674835,-0.14173490274697542,-0.9219889496453106,-0.9367930418811738,-0.7799113821238279,0.4461172460578382,-0.8397837420925498,-0.8053963351994753,-0.09135957900434732,0.8282644678838551,-0.4853454283438623,0.012790625914931297,0.40211817203089595,0.34104727813974023,-0.23666965309530497,0.13278526859357953,0.6421690853312612,0.2507083606906235,0.09896575147286057,-0.3282256191596389,-0.2812525271438062,-0.06971012055873871,-0.26274985214695334,-0.11295056995004416,-0.3241078504361212,0.7428983063437045,-0.41285807359963655,-0.06862176023423672,-0.33244944317266345,0.7410719371400774,-0.8143602297641337,-0.6251072972081602,-0.47752158995717764,-0.1983056766912341,-0.41138596553355455,0.9541534180752933,0.7027903385460377,0.29396324791014194,-0.1787836803123355,0.46603413578122854,0.23045587493106723,-0.12673437455669045,-0.4526804708875716,-0.9298921343870461,0.7101924843154848,-0.9614563114009798,0.7402620632201433,0.3854223662056029,-0.7451257659122348,-0.8614795780740678,0.1909574018791318,-0.03740939171984792,-0.8218572423793375,-0.4715547156520188,-0.24755618255585432,-0.30171773908659816,-0.6163097000680864,-0.9153428063727915,0.6899530114606023,-0.3650339753367007,-0.5179618876427412,0.8403851687908173,0.15722520556300879,0.7377980938181281,0.9652281031012535,0.7837884407490492,0.8375029875896871,0.07301449729129672,-0.36513158213347197,-0.10183458030223846,-0.9975988115184009,-0.5073291291482747,0.970392890740186,-0.3214678820222616,-0.620693318080157,0.19057880388572812,-0.8608056115917861,-0.5011882288381457,0.7907854043878615,-0.4298217403702438,-0.06551610212773085,0.5631257393397391,-0.970637358725071,0.11060102470219135,-0.2953967577777803,0.44686628319323063,0.43695178255438805,0.001494911964982748,0.8408995005302131,-0.6413552579469979,-0.10979734407737851,0.5391958560794592,0.7198785888031125,-0.841881618835032,-0.8245526258833706,0.22066052723675966,0.04947825288400054,-0.825685610063374,-0.40425223344936967,0.025037424638867378,-0.5243738405406475,-0.08877540985122323,-0.8056485517881811,0.47366435546427965,-0.10260496148839593,0.3575645931996405,-0.7675160504877567,-0.14381654700264335,0.8790545891970396,-0.7480952753685415,-0.8945834147743881,-0.6237784326076508,-0.3660492543131113,-0.7281550643965602,-0.33104108832776546,0.9807682237587869,0.842265167273581,0.22573733422905207,0.3974220589734614,-0.629771598149091,-0.62259786343202,0.7831201078370214,0.27187012461945415,0.7992992494255304,0.7575956587679684,0.44097599340602756,-0.5866456204093993,-0.9418561356142163,0.05280142230913043,0.08179839188233018,-0.6291881431825459,-0.34157893853262067,0.5236653867177665,-0.7381575363688171,-0.2682515471242368,-0.8673844188451767,0.12007779302075505,-0.14105620235204697,0.8519261409528553,-0.3528803801164031,0.6609202371910214,-0.38536291336640716,0.8100860049016774,0.47054425813257694,-0.9282980896532536,0.7943856273777783,-0.8003652323968709,-0.723523166961968,0.43388276547193527,0.12470013462007046,-0.8470143228769302,0.011554055847227573,-0.8385250177234411,-0.7990228147245944,0.718126161955297,-0.7222106819972396,-0.12216374184936285,0.7774461647495627,0.9883705037645996,0.49121713638305664,-0.4773189085535705,-0.5421670717187226,-0.5020501837134361,0.17335226014256477,0.5946902558207512,0.9564092089422047,0.37395791430026293,0.5555170844309032,0.4325940334238112,-0.12849489878863096,-0.9656351278536022,-0.5176424663513899,-0.7129740356467664,-0.8970496323890984,-0.12477258034050465,0.2953052381053567,0.5006080470047891,0.5939284092746675,0.8663554880768061,0.04200999764725566,0.08996327687054873,-0.27507493179291487,0.2592979148030281,-0.04377831472083926,0.32885790104046464,-0.017039102967828512,-0.21715386537835002,0.0035805427469313145,-0.21849618898704648,0.1416135225445032,-0.8140242588706315,-0.24657868687063456,-0.15166430221870542,-0.40984933357685804,0.2383753852918744,-0.5659417901188135,-0.48161916015669703,-0.13480745488777757,-0.11833843123167753,-0.7264509359374642,0.27298753894865513,0.962563309352845,-0.3635932873003185,-0.3993473472073674,-0.1943803522735834,-0.5605758749879897,-0.08840648317709565,0.0028594904579222202,-0.5819496931508183,-0.5596730299293995,0.5990306353196502,-0.2720173974521458,0.17225441290065646,-0.7408364191651344,-0.47354596946388483,-0.6051059826277196,0.9173360019922256,0.7551341014914215,-0.9432248012162745,0.029093457385897636,-0.23088591312989593,-0.6679432056844234,-0.5437465780414641,-0.010945849120616913,-0.9256346696056426,0.2874184865504503,-0.07193773472681642,0.7554959640838206,0.5164788262918591,0.7163534280844033,0.8733186633326113,-0.8962151133455336,-0.4761928138323128,-0.758001774083823,-0.6281957449391484,-0.87226209230721,0.6356690018437803,-0.23526607500389218,0.30484046833589673,0.6659591817297041,0.9647528766654432,-0.843551751691848,-0.061995727475732565,-0.9111364767886698,-0.40817089658230543,-0.06526204850524664,-0.47689084336161613,0.719380043912679,-0.4433828052133322,-0.13025761023163795,0.08027444360777736,0.03091182466596365,-0.8444190882146358,0.6541283377446234,0.2784946858882904,0.2870628763921559,-0.9684493876993656,-0.46222668420523405,-0.08055660082027316,-0.259196444414556,-0.11217216309159994,0.6438196711242199,0.03945823619142175,-0.9115041107870638,-0.7034847987815738,-0.7693651677109301,-0.8785779131576419,0.566785525996238,0.52837980305776,-0.742550399620086,0.14861492533236742,-0.4508570358157158,0.25240363413468003,-0.6686251251958311,-0.5501563735306263,-0.7805738318711519,-0.3363671060651541,0.4097366607747972,-0.7708853548392653,-0.12226180266588926,-0.9936977713368833,-0.9975413507781923,-0.9210883965715766,0.7987092435359955,0.8073481502942741,0.6004192158579826,0.9861356825567782,-0.7020517974160612,0.2601361181586981,-0.2222639648243785,0.5464554280042648,-0.14687429647892714,0.3979435102082789,-0.29386286390945315,0.4292160738259554,0.401290291454643,0.8452749052084982,-0.16999888001009822,0.0629059043712914,0.5164949847385287,0.003258257173001766,-0.6165314889512956,0.9568799128755927,0.8406596565619111,-0.22696452075615525,0.26415179250761867,-0.07316756155341864,0.06994743878021836,0.3598118433728814,-0.4571330244652927,0.8008254403248429,-0.0631653699092567,-0.49098825734108686,-0.8766268524341285,-0.5277194855734706,-0.6203224891796708,-0.5429254393093288,0.667698010802269,-0.9351906343363225,-0.8552094274200499,-0.9060096414759755,0.746881518047303,-0.9943167073652148,0.9800922265276313,0.3653725632466376,0.6748013119213283,0.9364341921173036,0.27618034882470965,0.17860018089413643,0.9249702990055084,0.9065730394795537,-0.7077378667891026,0.7570402016863227,-0.4838119982741773,-0.04767877236008644,-0.16319164587184787,0.3000925574451685,-0.3667150530964136,-0.6796315172687173,-0.5772330244071782,-0.6711346753872931,-0.36065586004406214,-0.2296460848301649,0.604743798263371,-0.1117244097404182,-0.33795249182730913,-0.5726692830212414,0.5395194669254124,0.02117845695465803,0.9657973474822938,-0.08750538807362318,0.47950224624946713,0.9825233686715364,0.7834590589627624,0.6195047828368843,0.20071036228910089,-0.21056086756289005,0.48159853322431445,-0.9488347102887928,-0.48259349120780826,0.6274414700455964,-0.20107219321653247,0.5545078790746629,0.9259507516399026,-0.9591325353831053,0.5366307673975825,-0.9724512961693108,-0.2652812139131129,0.1949260695837438,-0.24296570010483265,0.35040841717272997,0.22714134911075234,-0.9934383244253695,0.9275474091991782,0.5473712389357388,0.9304199190810323,0.10188013967126608,0.49784218007698655,-0.6570123280398548,-0.156668565236032,0.43026743130758405,-0.964562482200563,-0.11723344586789608,-0.05130730755627155,-0.41802948946133256,-0.3397552566602826,-0.835671634413302,-0.02361626597121358,-0.4065578724257648,-0.7965587028302252,0.3200015304610133,0.04832532722502947,0.31631095241755247,0.7714366703294218,0.08728812402114272,-0.07253075297921896,0.5610355250537395,0.3149799876846373,0.05370504409074783,0.29678423423320055,0.15125236520543694,0.7461408297531307,-0.3415062320418656,-0.36343322647735476,-0.8584243375808001,0.7617512661963701,-0.9623882961459458,-0.469082938041538,0.892818542663008,0.11001651594415307,-0.7853223304264247,0.19318368891254067,-0.6081372583284974,0.017804191447794437,-0.47942943312227726,0.8613671688362956,0.7262370344251394,-0.28843293990939856,0.27521124109625816,-0.3611855339258909,-0.649434810038656,-0.24142438592389226,-0.5999833731912076,0.15104796085506678,0.8392701693810523,0.6442560702562332,0.9814575728960335,-0.43153332779183984,0.45207218592986465,0.1382016707211733,0.7808890570886433,-0.867416325956583,-0.009213199373334646,0.3937755925580859,-0.23847425635904074,0.8022185321897268,-0.2331009996123612,-0.7413684083148837,-0.46501270961016417,-0.883004569914192,-0.41874253237619996,-0.26867667119950056,-0.6725600049830973,0.8357779197394848,-0.4960471261292696,0.883058694191277,0.2333065620623529,0.8530811355449259,0.2911459715105593,0.3203438054770231,0.3353683101013303,-0.10098675033077598,-0.5059998705983162,0.5881175165995955,-0.7694145338609815,-0.358276329934597,0.4639707156457007,-0.21080469153821468,-0.1263231080956757,-0.724136121571064,0.3445397252216935,-0.5973792187869549,-0.048834022134542465,-0.23406037455424666,-0.8542616842314601,-0.4844895782880485,-0.36119372909888625,-0.21005091769620776,-0.7865636693313718,-0.11890265578404069,0.4187959637492895,0.9544622427783906,0.9640587344765663,0.7898510219529271,0.6991980522871017,0.7583856540732086,-0.0491276322863996,0.09275913005694747,-0.9151920271106064,-0.7859358191490173,-0.06547599658370018,-0.5021823178976774,-0.8462241287343204,-0.5175166893750429,-0.7512852814979851,0.9283727663569152,0.8977729235775769,-0.6274737315252423,0.4239354394376278,-0.6484145820140839,-0.8504888084717095,-0.7421327447518706,-0.28112301183864474,-0.6555363233201206,0.12920526368543506,-0.8798336684703827,0.6720072417519987,-0.21867404598742723,0.987465784419328,0.9996693474240601,-0.42554737953469157,-0.24473324604332447,0.8444249811582267,0.3244242640212178,-0.5537014156579971,0.40406342362985015,-0.15808556275442243,-0.7079324154183269,0.35352521343156695,0.4522633361630142,0.219724602997303,-0.4248098898679018,-0.37689813133329153,-0.387133551761508,-0.24181021517142653,-0.9948268970474601,0.5709447422996163,0.5915141277946532,-0.9919122140854597,0.19501091679558158,0.17104903142899275,0.7014644141308963,0.3269548313692212,0.009491523262113333,-0.3278439617715776,-0.9600753388367593,0.5556588312610984,-0.7963190828450024,0.015524794347584248,0.39287528535351157,0.7357860114425421,0.09420158667489886,0.647908363956958,0.4912211443297565,-0.989001695998013,-0.4611364877782762,0.43236371921375394,-0.726847663987428,-0.8742039129137993,0.8431173688732088,-0.2418041992932558,-0.8275436884723604,-0.9675570256076753,-0.30653435131534934,0.3780097863636911,0.8836656166240573,-0.3497960823588073,0.6215996001847088,-0.7502893446944654,0.02798948483541608,0.8836814155802131,0.19043685216456652,-0.8104638773947954,0.6248443061485887,-0.3025603578425944,0.4406578131020069,0.6177430981770158,-0.7318861512467265,-0.6784606617875397,-0.8352929139509797,-0.17629017820581794,0.730503037571907,0.058312623761594296,-0.1993445623666048,0.25167850498110056,-0.398795529268682,0.6488435082137585,-0.6450713849626482,0.1329409359022975,-0.8850242705084383,0.38051231671124697,0.14842547196894884,-0.38535422272980213,-0.9450165536254644,0.8833042439073324,0.09895328525453806,-0.4819182399660349,0.012995136436074972,0.6624803673475981,0.02595387026667595,-0.6382733411155641,0.4019559230655432,-0.6196425594389439,-0.28262309078127146,0.40985351894050837,-0.8435449302196503,0.508786513004452,0.12714984733611345,-0.9326337077654898,0.38872636016458273,0.07226654049009085,-0.6380081749521196,0.17568608932197094,0.38375906785950065,-0.8513257182203233,0.2026110840961337,0.602927855681628,-0.10814855434000492,0.6257125879637897,-0.6926596332341433,-0.3478698586113751,0.5136705189943314,-0.3575420822016895,-0.5800407826900482,-0.7618805528618395,-0.3913136296905577,-0.2781057911925018,-0.532469448633492,-0.9244769471697509,-0.31881877360865474,-0.8449462312273681,-0.47403778275474906,0.12931699492037296,0.4192729350179434,-0.13844275986775756,-0.3785302606411278,-0.6642811032943428,0.5899929944425821,0.9906856385059655,0.8136846255511045,0.036544662434607744,0.12290619220584631,0.3162894048728049,-0.6605296405032277,-0.39158994797617197,0.8083066851831973,0.09233822906389832,0.3097751853056252,0.800402426160872,0.8502502045594156,-0.14535857178270817,-0.18839177442714572,0.9814976407214999,-0.8031361270695925,-0.42194426618516445,-0.5485616480000317,0.9837161679752171,0.5958362622186542,-0.7048798548057675,-0.13884132029488683,0.9012869726866484,-0.3551213867031038,0.670014486182481,-0.5355664421804249,0.3158845421858132,-0.01905228942632675,-0.5040708160959184,-0.7513355701230466,0.07156538823619485,-0.19711710372939706,0.3188715558499098,-0.7123838877305388,-0.08210223959758878,0.4818517700769007,-0.5864154943265021,-0.7548918086104095,0.06392569979652762,-0.448494010604918,0.011129310820251703,0.6511339666321874,0.9498046194203198,0.9378085969947278,0.813144501298666,0.7400253410451114,0.4350857185199857,0.44531408604234457,0.2509057382121682,0.24039406189695,-0.5631434777751565,0.9023934807628393,-0.7233694535680115,0.43344599148258567,0.1123072998598218,0.5653217434883118,0.10394282639026642,-0.5475919749587774,-0.7785661900416017,0.7196426764130592,0.9069256554357708,-0.489968781825155,0.8652750751934946,-0.7534059123136103,-0.20170850632712245,0.13367120129987597,-0.9049655180424452,0.5750292525626719,-0.5331186503171921,0.8572457595728338,0.9786701248958707,0.3448032676242292,0.926448707934469,0.9867701050825417,0.683164631947875,0.7413189066573977,-0.7185485837981105,0.8231609622016549,-0.7624393193982542,-0.9113961700350046,-0.7993255537003279,0.004474560264497995,0.052759856916964054,-0.5733685684390366,0.8020386714488268,-0.6928250333294272,0.6353107891045511,0.1326014124788344,-0.6312583228573203,-0.9376048208214343,0.6629222864285111,0.5659402823075652,-0.8490428407676518,-0.2339239353314042,-0.5122815272770822,-0.3155411914922297,-0.5515714455395937,0.07865353394299746,0.42624793387949467,-0.5606736573390663,-0.2680241814814508,-0.2545656361617148,0.09388441918417811,-0.9397364272736013,-0.27142357220873237,-0.3322929907590151,-0.9656106564216316,-0.03707386553287506,-0.0868472270667553,0.8497087568975985,0.7353497301228344,0.5863140001893044,-0.6555577595718205,0.24220806965604424,-0.17525978246703744,0.6724835587665439,-0.17944733798503876,0.7796683982014656,-0.6081050513312221,-0.5434001265093684,0.7259796024300158,0.8495243894867599,-0.1134412894025445,-0.04736063117161393,0.5640040095895529,0.09674899838864803,-0.2540132696740329,0.4162098094820976,0.09367988258600235,-0.4241823977790773,-0.5273133660666645,0.7509453576058149,0.5946632567793131,0.5483845267444849,0.8674806947819889,0.568782308138907,0.5241953767836094,-0.5534953139722347,-0.48603134835138917,0.3023585779592395,0.7284429203718901,-0.6187914288602769,0.9892999869771302,-0.6600594609044492,-0.8808886739425361,0.12400645203888416,0.03430515853688121,-0.863230331800878,-0.36537111131474376,-0.5492708319798112,0.12838991452008486,-0.16376679576933384,0.13254194892942905,-0.12034901091828942,-0.22419725498184562,-0.30683225207030773,-0.5593885062262416,-0.4354064166545868,-0.773152575828135,0.59490682836622,0.9872828139923513,-0.19440376525744796,0.9333470980636775,0.9324520216323435,-0.8831565752625465,-0.25476118084043264,0.1899501639418304,0.47477556904777884,-0.980645049829036,-0.39643419394269586,-0.15055096801370382,0.8373701763339341,0.4678414133377373,0.7249093218706548,0.7638887958601117,-0.33168972469866276,-0.2694300184957683,0.21189824445173144,-0.3964471356011927,-0.33895508712157607,-0.4010082078166306,0.2732066847383976,0.18389770481735468,0.33802160574123263,-0.7462978134863079,-0.8509656991809607,-0.513385958969593,0.2670419570058584,-0.2903315066359937,0.297453077044338,0.29476759070530534,-0.6801212085410953,-0.8123039975762367,-0.7931056567467749,-0.5403118850663304,0.828256365377456,0.22329225996509194,-0.48125997511669993,0.9727644538506866,0.4682058575563133,0.39066007593646646,0.6685167229734361,-0.9844064079225063,0.022798724472522736,0.3717882172204554,-0.35827334271743894,0.5235199206508696,0.007938580121845007,-0.06704689422622323,0.9710070420987904,0.04538152599707246,-0.34211553912609816,-0.05262582004070282,-0.09219894232228398,-0.12143276911228895,0.9870023960247636,0.5973556376993656,0.7473666989244521,0.9741705930791795,-0.9947118391282856,-0.01380655961111188,0.16144276643171906,0.5473328218795359,0.6903307801112533,0.364065348636359,0.144616125151515,0.8667130721732974,-0.41193386958912015,0.43850109726190567,0.008775319904088974,0.6922342386096716,0.6752908285707235,0.9804819924756885,-0.4725624737329781,-0.375084416475147,0.11619929177686572,-0.25271124485880136,0.35552338883280754,0.02915407530963421,0.6021207147277892,-0.8677557958289981,-0.038323663640767336,0.7872782438062131,0.8829990890808403,-0.14741933485493064,0.9367708410136402,-0.06493493495509028,0.5875657969154418,-0.16063165524974465,-0.7185837123543024,0.9449523319490254,-0.5282296543009579,0.6815578881651163,-0.026729987002909184,0.6543512777425349,0.941996484529227,-0.18344204174354672,-0.02171418210491538,0.29834076622501016,0.052518493961542845,-0.029306320939213037,0.7975286962464452,0.6934939855709672,0.9690706748515368,0.09896927094087005,-0.37604019744321704,-0.8995398827828467,0.6099087442271411,-0.34695644630119205,0.33797141909599304,0.5834184978157282,-0.2814354938454926,-0.6482203518971801,0.02589772781357169,0.8821048908866942,0.10374488076195121,0.14949136599898338,-0.4235273734666407,-0.6697291997261345,-0.004216325469315052,0.6293914797715843,-0.4789265710860491,-0.6852127793245018,-0.5032110000029206,-0.33456950914114714,-0.9315052609890699,-0.4649093491025269,-0.8832108359783888,0.0772373341023922,-0.5384114747866988,0.514248269610107,-0.20024818880483508,0.7529146010056138,-0.8473045914433897,0.2590227909386158,-0.9491106690838933,0.7504760110750794,0.23146825702860951,0.9275726298801601,-0.9969290373846889,-0.4377263127826154,0.49140588007867336,-0.18478290969505906,0.4074873737990856,0.7153764134272933,0.9030145066790283,-0.6622521230019629,-0.9364488567225635,-0.3224985939450562,-0.6903678243979812,0.005611559376120567,-0.9902754053473473,-0.7466249521821737,-0.9348101252689958,0.7704922840930521,0.06879892386496067,-0.978730259463191,-0.7973739122971892,0.08217576425522566,-0.6470994888804853,-0.7874076026491821,-0.2941231494769454,-0.742588933557272,-0.9064625380560756,-0.9122113259509206,0.49466128228232265,-0.5722522335126996,-0.6885872865095735,0.9495131662115455,0.7254211800172925,-0.4633138687349856,0.9873343571089208,-0.9063687729649246,0.7745592938736081,0.5965866879560053,-0.7177988952025771,-0.7736260956153274,-0.41193917114287615,0.09014364471659064,0.6239731963723898,-0.7739756177179515,-0.7778527694754303,0.3472478212788701,-0.5063027259893715,0.9732626406475902,0.47367769572883844,0.09918196266517043,0.5820250613614917,-0.6284513752907515,0.5047135092318058,-0.3142151911742985,0.3844256387092173,0.6920800348743796,-0.9727957616560161,0.11815213831141591,-0.16585766524076462,0.947661142796278,-0.513442593626678,-0.9335858630947769,0.9741505295969546,0.1573776826262474,0.7023652782663703,-0.4545932332985103,0.6557137286290526,0.9607240129262209,0.6200205818749964,-0.465628155041486,0.617981425486505,-0.1294903107918799,0.9877347373403609,0.5212523867376149,-0.2852408108301461,0.30469473311677575,-0.978378411848098,-0.8641561912372708,0.5713069681078196,-0.9168408694677055,0.9238535142503679,-0.5267458758316934,0.18195346742868423,-0.21993024880066514,-0.3018033690750599,0.4893811182118952,0.2571118092164397,-0.46341893589124084,-0.6429778928868473,-0.02272573485970497,-0.36281365575268865,-0.44539131224155426,0.7117067440412939,-0.3244260451756418,0.1825959333218634,0.6093412390910089,-0.2889112322591245,0.014998884405940771,-0.09995434805750847,-0.4480719598941505,-0.24387215543538332,-0.9782055905088782,-0.9838220640085638,0.909510899335146,0.5381407015956938,0.11425657849758863,0.3042042227461934,-0.8581191804260015,0.4314095312729478,-0.6963767907582223,0.9399408246390522,0.6962288776412606,-0.07507581962272525,0.7851408547721803,-0.6413093702867627,-0.5741343311965466,-0.49686578661203384,-0.920022220350802,-0.7469152179546654,0.241057095117867,0.8558810465037823,0.1628301404416561,0.5237495652399957,-0.03589925682172179,0.9053417760878801,-0.6896519549190998,0.14219389762729406,-0.06632460234686732,0.31851958483457565,-0.9340986832976341,-0.5495528839528561,-0.4596921196207404,-0.6753235179930925,0.30098922923207283,-0.6201352528296411,0.8329861769452691,0.6778876720927656,0.3243160997517407,0.5440265103243291,-0.2103306045755744,0.6638902868144214,0.5096203191205859,0.7844068133272231,-0.9017108408734202,-0.2755092750303447,0.9404720515012741,0.19030250096693635,0.10559372277930379,0.4245778056792915,0.3575693592429161,-0.371021144092083,-0.25032015098258853,-0.5326508199796081,0.5151218939572573,-0.6101664896123111,-0.002454446628689766,0.9390871431678534,0.9429123969748616,0.42145291110500693,-0.6775342370383441,0.8099698927253485,-0.2519473317079246,0.5912825972773135,0.08153268229216337,-0.9804254909977317,-0.9007331407628953,0.1653841594234109,-0.5509456172585487,-0.7774119153618813,0.7566696470603347,-0.6799196880310774,-0.11406872374936938,-0.6821276433765888,-0.17569078039377928,0.17130581010133028,0.3755546770989895,-0.20853626588359475,0.08211798686534166,-0.021807145792990923,0.672952011693269,0.30560456588864326,-0.3005829593166709,0.7546274824999273,0.9518183832988143,-0.21930431900545955,-0.403170348610729,-0.6848160992376506,-0.4314118232578039,-0.13984431140124798,-0.8074839632026851,0.24752192990854383,-0.6276096692308784,-0.7910261848010123,0.21524155931547284,0.6568944351747632,-0.30275346199050546,-0.4129709075205028,0.9444676479324698,-0.9855464845895767,-0.588448743801564,0.46598646976053715,0.47109796293079853,-0.7938511013053358,-0.6581867011263967,-0.42062262119725347,0.2536719888448715,-0.006932051852345467,-0.5082747815176845,0.6394903212785721,0.9974509608000517,-0.9849968575872481,0.9745626226067543,-0.1352667179889977,-0.3590915040113032,-0.06609641714021564,-0.39825806813314557,-0.7749242200516164,-0.7097553759813309,0.20514727337285876,-0.9120892705395818,-0.6753954743035138,0.39924054918810725,0.5766931837424636,-0.9633833076804876,0.6823160690255463,0.5315915537066758,0.5760031049139798,0.6195563524961472,-0.22957736859098077,0.10170144680887461,-0.8428554851561785,-0.23576896637678146,-0.7922278097830713,-0.8117509349249303,0.6558993835933506,-0.19302655570209026,0.048477296717464924,-0.12859771493822336,-0.997054566629231,0.6595327821560204,-0.9046355015598238,-0.6254013725556433,0.835668733343482,-0.1943620159290731,0.24439983954653144,-0.5011145174503326,-0.5774013940244913,0.7488347510807216,0.32271346589550376,0.14892074558883905,0.4152282360009849,-0.6609595599584281,0.6101537188515067,0.09474024316295981,-0.7091104267165065,-0.07292893156409264,0.8642142335884273,0.6756455912254751,-0.9603870157152414,0.14547140756621957,0.38443376356735826,0.8149434486404061,0.07747372472658753,-0.44501445814967155,-0.7494980059564114,-0.5975154843181372,-0.3484610612504184,-0.30897508282214403,-0.7019499111920595,-0.16015384811908007,0.30586094642058015,-0.9783420194871724,0.43127039493992925,-0.7707319590263069,0.14141279505565763,-0.26974591612815857,0.7776853847317398,-0.7206279989331961,0.7448381246067584,-0.87117527006194,0.8425911460071802,0.721922374330461,-0.5550292730331421,-0.9637343315407634,-0.12028626538813114,0.5450024879537523,0.8420941890217364,0.5542642963118851,-0.2578873950988054,-0.11447752546519041,0.5772702964022756,-0.12572608375921845,-0.22325444174930453,0.6981281512416899,0.6584555525332689,0.3961669919081032,-0.7203435651026666,-0.8600020254962146,-0.5633857967332006,-0.8073632912710309,0.7527058622799814,0.5918864198029041,-0.9045051471330225,-0.32813028804957867,0.5407181670889258,-0.5610232353210449,0.3226824514567852,-0.4483107691630721,0.4605899974703789,0.22308774525299668,0.9794573718681931,-0.928908749949187,-0.14656529668718576,0.03814137075096369,-0.6847478211857378,0.24614843958988786,-0.4577907915227115,-0.6211935221217573,0.8111201408319175,0.9504653811454773,0.6947834803722799,-0.2319396361708641,-0.1002351837232709,0.07945572445169091,-0.36565135698765516,-0.9691774328239262,-0.03243416594341397,-0.46790130250155926,0.7171541159041226,-0.2808206072077155,0.8798758680932224,-0.2539742784574628,0.08419275796040893,0.898302732501179,0.1343752215616405,0.18350305128842592,0.9538700799457729,-0.09120412264019251,-0.29013175517320633,-0.14352055126801133,-0.13835258223116398,-0.21841527288779616,-0.47391318157315254,-0.5970854801125824,-0.6562204868532717,-0.7016467712819576,0.2186938445083797,-0.5406410796567798,0.4662599042057991,0.519154844339937,0.21268620807677507,0.22981669614091516,-0.8921795221976936,0.7553449175320566,0.07719086529687047,0.7428022120147943,-0.6651402832940221,0.7081063520163298,-0.8085759035311639,0.9718407588079572,-0.1415747795253992,0.9289984623901546,0.5780825302936137,-0.3174136676825583,0.648368916939944,-0.5116636846214533,-0.8641383093781769,-0.2464400241151452,0.31686853151768446,0.11316411104053259,-0.7905558994971216,0.37134322989732027,0.07492744689807296,-0.09563838690519333,0.9805779824964702,0.8769664745777845,-0.8982403702102602,0.2996601704508066,-0.19325251132249832,-0.285890085157007,-0.1795506882481277,0.2523823967203498,0.025755336973816156,0.4351000599563122,-0.4530104575678706,-0.2059221426025033,0.3598279729485512,0.5220392178744078,0.06575659336522222,-0.08521350659430027,0.20653616916388273,0.22749906359240413,0.5954390526749194,0.4352060556411743,0.5204071616753936,0.6496188174933195,-0.7367327841930091,-0.6118505080230534,-0.17957558995112777,-0.6698541347868741,0.5893068565055728,0.436363588552922,-0.4818700519390404,-0.23155988845974207,0.1423655659891665,0.971986020449549,-0.41043872525915504,0.7708887802436948,-0.6080550248734653,0.6602122113108635,0.9131891708821058,0.52321503078565,0.4108350505121052,0.6157259708270431,0.5446122298017144,0.1791941113770008,0.33200691547244787,-0.6398849249817431,0.955456345807761,-0.4988756678067148,-0.021363068372011185,0.8301467369310558,-0.7012327639386058,-0.752698783762753,-0.8135126084089279,-0.6017686193808913,-0.8188805468380451,0.03922001412138343,-0.8864964400418103,-0.10913050407543778,-0.007893887348473072,-0.06084719952195883,0.7887343331240118,0.9189432426355779,0.12787872506305575,0.6348358299583197,-0.47004375513643026,0.36273951549082994,0.2802187050692737,-0.6689696991816163,-0.37367035960778594,0.3546920488588512,0.2667539119720459,-0.43745939526706934,-0.5519057177007198,0.6640462880022824,-0.00373171828687191,0.6094836718402803,-0.3514388748444617,0.6680751550011337,0.09279945213347673,-0.1819480201229453,-0.9741211542859674,-0.8998796138912439,-0.8714926457032561,0.2487068995833397,0.9626039899885654,0.902014056686312,-0.3412623731419444,-0.6333284573629498,0.4610495171509683,-0.015973782166838646,-0.8639480420388281,0.27798439282923937,0.008971089962869883,-0.755688504781574,0.9171228841878474,0.684057189617306,-0.7103796093724668,-0.006635115947574377,0.1048566005192697,-0.4692829637788236,-0.8583500743843615,-0.928787867538631,0.8597057526931167,-0.6867552283219993,0.5184700540266931,-0.8445577751845121,0.9209405924193561,0.03308114781975746,0.4288445790298283,0.6533412369899452,0.6700857048854232,-0.41486693685874343,-0.8359964615665376,-0.5033037983812392,-0.3601471334695816,0.05929765664041042,-0.974053596612066,0.06024708831682801,-0.9912553052417934,-0.8808685760013759,0.9689257405698299,-0.6602215552702546,0.4210355319082737,0.22171046771109104,0.2583144772797823,0.4552316004410386,-0.868378491140902,0.08662783121690154,-0.6405983436852694,0.762261894531548,-0.01926521025598049,-0.769840775988996,0.6083090556785464,0.7261759778484702,0.0337291220203042,-0.6015149978920817,-0.886599175632,0.16236973833292723,-0.9753168625757098,-0.8354104100726545,-0.05099334102123976,0.6871335981413722,-0.9801642051897943,-0.6645167428068817,-0.24950817180797458,-0.5273144235834479,0.1277322918176651,-0.6990909934975207,0.5898357448168099,-0.4273555129766464,-0.38964716251939535,0.5061574741266668,0.39267094945535064,0.9498744341544807,0.9512745849788189,-0.8110412275418639,0.28827235801145434,-0.9341405741870403,-0.7523127505555749,0.6255824407562613,-0.348445831798017,0.6305344244465232,-0.4313473547808826,-0.764881020411849,-0.7610568213276565,-0.5096373162232339,-0.13171186111867428,0.23747117863968015,-0.5557472156360745,0.8569606449455023,0.7134432666935027,-0.2127593131735921,0.3066221447661519,0.8071582391858101,0.6885755658149719,0.3871480883099139,0.9448148193769157,0.9720258517190814,-0.7551442314870656,0.31673104921355844,0.002566574141383171,-0.5000416063703597,0.049658115953207016,-0.3858422380872071,-0.10449209017679095,0.46769713005051017,-0.2404807461425662,0.7696495032869279,0.5461507863365114,-0.866537026129663,0.9899818650446832,-0.3159911585971713,0.8917116466909647,-0.00224055303260684,0.23884931625798345,-0.14674134273082018,0.7995448210276663,0.16421554051339626,-0.11846595257520676,-0.7019834644161165,0.959380463231355,0.3595514730550349,0.5040041129104793,0.6213813852518797,0.10399303352460265,0.5961984898895025,-0.7904220377095044,0.6023108824156225,0.28479498950764537,0.14079975429922342,0.845118610188365,0.5474375733174384,-0.7275473978370428,-0.5085840625688434,0.9058922259137034,-0.5004810569807887,-0.019517111126333475,0.927144278306514,0.8174206796102226,0.9778046905994415,0.7916018022224307,-0.8141033700667322,-0.9625550876371562,-0.8982848958112299,-0.5425431453622878,0.5016531557776034,-0.1899738060310483,-0.48978022299706936,-0.02436976833269,-0.857696392107755,0.5591640491038561,0.6570453969761729,-0.9507961110211909,-0.6821579290553927,0.6693605040200055,0.8684566668234766,-0.20465780515223742,0.7502856305800378,0.6152135152369738,-0.44128143647685647,-0.955894990824163,-0.5436608716845512,0.014912778045982122,0.6623642914928496,-0.7265515858307481,-0.6083912514150143,0.26057833107188344,-0.7071133092977107,0.8706184234470129,-0.4497435144148767,0.321838635019958,0.36306518595665693,-0.3434445015154779,-0.3686178307980299,0.282137265894562,0.04617542400956154,0.3169590746983886,0.5907941521145403,-0.7223330400884151,0.14638376235961914,-0.3894540132023394,0.1623529614880681,0.7845803461968899,-0.32686891546472907,0.9847987284883857,-0.5087394681759179,-0.4996372642926872,0.8697591950185597,-0.5772466729395092,-0.711010679602623,0.2675821981392801,0.6875508665107191,-0.005976421292871237,0.8559678085148335,-0.5364722362719476,0.9591384609229863,-0.24126689368858933,-0.7812994010746479,-0.7171267964877188,0.8806341802701354,0.22473473148420453,0.19681726349517703,0.10792367625981569,0.11675350274890661,0.9690171200782061,-0.22977905347943306,-0.2244238923303783,-0.24890647875145078,-0.8949066419154406,0.046153558418154716,-0.5404783841222525,0.5251222369261086,-0.12934654718264937,0.47734147775918245,0.48093951400369406,-0.9266105098649859,-0.4260700885206461,0.48632377572357655,-0.4863696382381022,0.3010742338374257,-0.7971909451298416,-0.06963005103170872,-0.20633312221616507,0.07777406461536884,0.19128856202587485,0.23089721845462918,0.3972208257764578,-0.4060083352960646,0.3286697594448924,-0.6959942248649895,-0.23954827059060335,0.8049773452803493,0.3750564497895539,0.24560547061264515,0.2843718286603689,0.9656929727643728,0.7268272186629474,0.3776907194405794,-0.13661371544003487,0.21305408980697393,-0.7194593073800206,0.3298049606382847,-0.9605917409062386,-0.8877680692821741,0.20561272092163563,-0.5277529102750123,0.27903312956914306,0.2704121791757643,-0.27310245484113693,0.5253155487589538,-0.8267881395295262,-0.5913931732065976,0.5745599032379687,0.23881051084026694,0.5462816418148577,-0.37357623875141144,-0.5702012982219458,0.7861446891911328,0.366513061337173,0.1998215913772583,0.9678464690223336,-0.4744428019039333,-0.5157469515688717,-0.053769188933074474,-0.4070267817005515,-0.6308489302173257,0.8901723437011242,-0.816676861140877,-0.9315495756454766,-0.8943915930576622,0.20159624656662345,0.9839138016104698,0.4957819697447121,-0.8158251298591495,0.20827790955081582,0.4116548136807978,-0.8498107572086155,-0.07379293208941817,0.06578384293243289,-0.4758362271822989,0.34494961984455585,0.5167289804667234,-0.05605954071506858,-0.05578607181087136,-0.1909991968423128,0.3694960819557309,-0.3451284649781883,0.9730952112004161,0.6597459628246725,0.8875519051216543,-0.8993366272188723,-0.2088623335584998,-0.9621739592403173,0.8658323218114674,0.29522206587716937,-0.9248105324804783,-0.6968465591780841,-0.38197062304243445,0.17833065520972013,0.9347177166491747,0.03717249911278486,-0.12177830934524536,0.2984114666469395,0.7803428559564054,-0.6205643150024116,0.2595009910874069,0.908505470957607,-0.7125462852418423,-0.5415252526290715,-0.8943034829571843,0.9124794593080878,-0.5971628096885979,-0.0988077693618834,-0.6302267969585955,0.4307016399689019,0.8651268510147929,-0.09200901677832007,-0.39809361891821027,-0.7526907478459179,0.44627291429787874,0.49764143442735076,0.005647534504532814,0.5147342011332512,0.4126666341908276,-0.8032560446299613,-0.3987627197057009,-0.9008909035474062,0.6132050361484289,-0.7816309416666627,0.31150340661406517,-0.7213073167949915,-0.627071195282042,-0.7554337559267879,0.024857712909579277,0.8971384442411363,0.5064870826900005,0.8425282202661037,-0.9461347670294344,0.4270191341638565,0.9477215334773064,-0.9620770257897675,0.5916267754510045,0.5830538235604763,-0.8870195210911334,0.48143066093325615,0.3548102546483278,-0.9608800495043397,0.9543480463325977,0.6519203414209187,0.4805805739015341,0.4959507007151842,-0.6225867313332856,0.2431978746317327,0.11772879306226969,-0.09641935769468546,-0.24693565489724278,-0.23612501844763756,0.9638423454016447,0.1540104104205966,-0.08413300476968288,0.5885186055675149,-0.8610630468465388,0.3334730574861169,-0.38531264709308743,0.9722744938917458,0.5235951510258019,0.892928063403815,0.034894077107310295,0.7112355520948768,-0.5699332091026008,0.23004534328356385,-0.023071835283190012,-0.6930231880396605,0.3106901650317013,-0.5980406873859465,0.7057070564478636,-0.030831677373498678,0.5408088029362261,-0.004745224956423044,0.8563505914062262,-0.5686055733822286,-0.10046033607795835,0.4657474630512297,-0.2377478526905179,-0.9672137601301074,0.1851482791826129,-0.23846430517733097,0.4281480638310313,-0.07588347420096397,-0.5343209900893271,0.013473414350301027,-0.22752142325043678,0.11833887221291661,0.27553774509578943,-0.1573451734147966,-0.11082160007208586,-0.28862219071015716,-0.4162477608770132,-0.9025913840159774,-0.8792201369069517,0.5299318181350827,-0.5866074301302433,0.16445096069946885,-0.7273990493267775,0.3186724935658276,-0.08400633791461587,-0.5089415591210127,-0.23788175731897354,0.9175492925569415,0.6757790106348693,-0.24806366953998804,-0.33805703138932586,0.8935355064459145,0.8471901789307594,-0.6082738200202584,0.8025442599318922,0.987237349152565,0.0016020783223211765,-0.996690668631345,-0.7312483652494848,-0.695329746697098,0.126398547552526,0.9188589644618332,0.2224728842265904,-0.40035493904724717,-0.9232744248583913,-0.17612833390012383,0.26651140535250306,-0.3010762589983642,0.4434067290276289,-0.3230061517097056,0.21784480707719922,0.20599778043106198,-0.7786858137696981,0.7699656593613327,-0.620565515011549,-0.8087737965397537,0.7755860723555088,0.010409246198832989,0.1402491359040141,0.9889500527642667,-0.8170556360855699,0.08262303518131375,0.6684360145591199,0.3393709445372224,0.22235328005626798,0.5081087327562273,0.033175372052937746,0.9554350264370441,0.10075150057673454,-0.3586415466852486,-0.3094149259850383,0.16781885782256722,0.7406256394460797,-0.4127027806825936,-0.5668337708339095,-0.9660014561377466,-0.2915998552925885,0.655738387722522,0.634483341127634,-0.9980879300273955,0.5251753921620548,-0.10537977376952767,-0.07225796906277537,-0.30466323578730226,-0.37967829778790474,0.80867207236588,0.4812694936990738,-0.9200005498714745,-0.4295271812006831,0.9607790904119611,0.8312299391254783,0.19297096272930503,0.48457492096349597,-0.37485763477161527,0.05016394564881921,-0.10053859325125813,0.3367803664878011,0.7169907409697771,-0.4983386490494013,-0.9368086699396372,0.9804134485311806,-0.25242869881913066,0.17121439753100276,-0.8579023466445506,-0.40126683143898845,0.2505372790619731,0.8840642515569925,0.6602266714908183,0.26868061255663633,0.14484625728800893,-0.731391211040318,-0.49467720789834857,0.4513291488401592,0.29283606773242354,-0.39006375009194016,-0.10174943460151553,-0.28239210322499275,0.6646890556439757,0.643541204277426,0.07272370159626007,-0.17026277258992195,-0.4253052594140172,0.2636864921078086,-0.11523656686767936,-0.38791144033893943,0.5558826131746173,-0.8754418115131557,0.15651601646095514,-0.5328248958103359,-0.3049987065605819,-0.8728850078769028,0.741856527980417,0.788635203614831,0.36714682867750525,-0.9120988752692938,-0.26545755425468087,0.1718750628642738,-0.6107161859981716,0.19518712209537625,0.12699263636022806,0.9255125964991748,-0.013079831376671791,0.5646151001565158,-0.9158480050973594,-0.6865744725801051,0.17856705095618963,-0.18247193191200495,-0.07199172396212816,-0.5396515531465411,-0.9729797490872443,-0.25923079857602715,0.5977037916891277,-0.2746836827136576,0.976423030719161,-0.7950899438001215,-0.8927298812195659,0.16039705090224743,-0.36594589287415147,0.9963554185815156,0.8563646604306996,-0.021058693062514067,-0.7400995036587119,-0.6735506518743932,0.6380566018633544,-0.5494743813760579,0.5561589165590703,-0.7610151637345552,0.6423524944111705,-0.7082387288101017,0.38739866483956575,0.3447663546539843,0.11645529605448246,-0.20307928044348955,-0.07999726058915257,0.05116746528074145,-0.2874225853011012,-0.11469578556716442,0.9330660831183195,0.05292665585875511,0.7392314681783319,-0.9791719019412994,-0.8831399818882346,-0.6791106262244284,0.9859298677183688,0.8827015641145408,-0.2761221188120544,-0.46431939397007227,0.3679974493570626,-0.44128928892314434,-0.3258245578035712,-0.8557666190899909,-0.18723475746810436,0.8583545223809779,0.9268989493139088,-0.7010392947122455,0.6848596213385463,-0.16404455294832587,0.327869878616184,0.2593287155032158,0.5994011522270739,0.2729790690355003,0.5263270796276629,-0.6362788970582187,0.44775781128555536,-0.19520911667495966,-0.6776288319379091,0.9992895191535354,-0.1519962651655078,0.7889681034721434,-0.8726154686883092,0.9086952218785882,-0.30198052572086453,0.6839976580813527,0.8071015290915966,-0.3868670756928623,0.7577944025397301,-0.3337767072953284,-0.6633323994465172,0.31404567090794444,0.28689342085272074,0.1276181824505329,-0.5082601853646338,0.2601204216480255,-0.17360755382105708,-0.22075456148013473,-0.49985777772963047,-0.39401184022426605,-0.15161312138661742,0.5868110093288124,0.5931772170588374,-0.5628202706575394,-0.4819766287691891,-0.4807786284945905,0.22489793272688985,0.5498468964360654,-0.1320269131101668,0.1874927137978375,0.12281941063702106,0.32499215565621853,-0.9370574834756553,-0.5999459652230144,0.6020855559036136,-0.9261487531475723,0.7967931483872235,0.8220779639668763,-0.19862932804971933,-0.40776858665049076,-0.9923566109500825,0.3072831276804209,-0.7474044319242239,-0.8918027393519878,-0.40689240768551826,0.4784204107709229,-0.8242847071960568,0.6064610714092851,0.05065140267834067,-0.6893887207843363,-0.6437370851635933,0.0044969781301915646,0.4252751120366156,0.2208452350459993,-0.005189906805753708,-0.8781516803428531,0.3787185978144407,-0.4975473857484758,-0.9247437100857496,-0.7978163929656148,-0.9285733890719712,-0.79512435849756,-0.9011559477075934,0.35727930488064885,0.8969907234422863,0.5314970361068845,-0.7330278540030122,-0.9670251696370542,0.6827714657410979,-0.25097362231463194,0.6494787721894681,-0.053797471802681684,0.6094676125794649,0.10865966975688934,0.7263788734562695,0.31440601544454694,0.5144503549672663,0.6291534090414643,0.9946168195456266,-0.8122421251609921,-0.40651126904413104,0.18868831172585487,0.6840582117438316,0.46056897938251495,-0.9280010126531124,-0.4763034423813224,0.4881731756031513,-0.7889969414100051,-0.7955216695554554,-0.8496998599730432,-0.5981855057179928,0.3686117301695049,-0.8386332248337567,-0.17395271640270948,0.3360326671972871,0.5489574153907597,-0.1837879098020494,0.6342768459580839,0.5443376754410565,0.9534879792481661,-0.36221394315361977,-0.19943347992375493,0.542515832465142,0.842510080896318,-0.83422966953367,-0.282409327570349,-0.7305802907794714,-0.1819110387004912,-0.7894757608883083,0.3329943330027163,0.01039556646719575,0.7962730373255908,-0.8492236053571105,0.5201191864907742,-0.647812242154032,-0.802452985662967,0.2809426165185869,-0.6183648416772485,0.3168123089708388,0.13964611710980535,-0.04926985129714012,0.5039758416824043,0.09970144834369421,0.4310203604400158,-0.33280448662117124,-0.4579917984083295,-0.2991247298195958,-0.35398013005033135,1.812167465686798e-05,-0.7255874793045223,-0.522681338712573,-0.2505437755025923,0.45572816766798496,0.8132900702767074,-0.17930569779127836,0.5601563365198672,0.6623495644889772,-0.5926316026598215,-0.21866305265575647,-0.8524039750918746,0.9419803465716541,-0.2759888102300465,0.4211051701568067,-0.8327323445118964,0.3737692041322589,0.3230014881119132,-0.5479646679013968,0.46237480407580733,0.6513376291841269,0.25304443668574095,-0.13461275631561875,0.474934876896441,-0.2803118280135095,0.6697203693911433,0.40101357689127326,-0.8242313959635794,0.21393150137737393,-0.27005971409380436,-0.025761430151760578,-0.3338127378374338,-0.3225833694450557,-0.5646809786558151,0.6502062068320811,-0.46096904342994094,-0.44749074522405863,-0.2518498720601201,0.5198817444033921,0.4815668286755681,0.4760237871669233,0.46222357731312513,0.8769536917097867,-0.7406663098372519,0.6600002362392843,-0.6255097212269902,-0.031895673368126154,0.9443392548710108,-0.2242627334780991,-0.26017689099535346,0.28455124609172344,0.9245524080470204,0.025485706981271505,0.7181964870542288,0.8580134608782828,0.6710764737799764,0.6393117806874216,0.9652403714135289,-0.8968225722201169,-0.4196591400541365,-0.0764593780040741,0.8976817815564573,-0.16146064596250653,-0.1120486157014966,-0.3875757879577577,-0.41037173895165324,0.3421931182965636,-0.9519297368824482,-0.8744939863681793,0.5360959358513355,0.9174925154075027,0.19408360496163368,-0.11006524786353111,0.9450938338413835,-0.4606100586242974,-0.2266462128609419,0.11749181617051363,-0.7231016093865037,0.7282934789545834,0.378798492718488,0.7261924645863473,-0.3244472430087626,-0.6641934830695391,-0.6692383820191026,0.9511890141293406,-0.39060741616413,0.3893019501119852,0.017587135080248117,0.8056861627846956,0.52841752814129,-0.38938473258167505,0.419583928771317,0.6122989091090858,0.4033357547596097,-0.4792670728638768,0.7365485108457506,-0.10024004615843296,0.15472479024901986,0.5420752828940749,0.907271696254611,-0.10208256402984262,0.1985959685407579,0.7994436388835311,0.9222829090431333,-0.2506269905716181,0.14893147069960833,0.12676857924088836,0.8168985955417156,0.5933075197972357,-0.7866301047615707,0.5548833622597158,-0.5279021337628365,-0.5726446793414652,-0.701936854980886,0.8661598516628146,0.498034012503922,0.8339754124172032,-0.3937875363044441,0.8437255555763841,-0.048938133753836155,-0.8834546823054552,0.3928128443658352,0.3400006894953549,-0.49822675064206123,-0.5595991364680231,0.9819707912392914,0.31278778379783034,0.34521025512367487,0.2504325332120061,0.41062347358092666,0.5175027051009238,-0.27309868950396776,0.1143912523984909,0.4461192009039223,-0.47044122451916337,0.5187551868148148,-0.170138253364712,0.5048218416050076,-0.9150226414203644,-0.4183308188803494,-0.04089454980567098,0.30141925113275647,-0.6880206991918385,0.7385593745857477,-0.6747226491570473,-0.5989982080645859,0.6705718832090497,-0.9270127736963332,0.8912225002422929,0.1566217541694641,-0.8243915247730911,-0.7135060294531286,0.274710432626307,-0.1477611232548952,0.39043104788288474,0.7454766533337533,0.25335334055125713,0.5237529105506837,0.09161542356014252,-0.9324888582341373,0.35993257304653525,-0.0363028310239315,-0.1826811134815216,0.4900952954776585,-0.202489182818681,0.2527708779089153,0.1089934716001153,-0.2828116933815181,-0.09669642429798841,-0.44695353182032704,-0.3680917634628713,0.2287004147656262,-0.10925884684547782,-0.09784203302115202,0.8388336854986846,0.8207097654230893,0.9097176534123719,-0.3992916587740183,0.12996181147173047,-0.9792482745833695,-0.3464607773348689,-0.21571643883362412,-0.43671090714633465,-0.7526810565032065,0.8878153702244163,0.7321467734873295,0.2179432841949165,0.03185030212625861,0.5628112182021141,0.0501862158998847,0.7802039682865143,0.48496134113520384,0.692516237962991,-0.4375042552128434,-0.8456642739474773,0.03643918177112937,-0.6827660016715527,-0.27776778023689985,-0.40905768191441894,-0.24479623744264245,0.30650942027568817,-0.5830629402771592,0.468163940589875,-0.8201943254098296,-0.8978077303618193,0.21292891772463918,0.24417720176279545,-0.10475679533556104,-0.9240582557395101,-0.3779362551867962,0.9227647930383682,0.6295042391866446,0.9703329391777515,-0.09505484905093908,0.2652782220393419,-0.6892406805418432,0.7817956134676933,-0.7631297828629613,-0.5279861320741475,-0.6211034976877272,0.49176222598180175,-0.7897367584519088,0.3651668978855014,-0.32565791672095656,-0.7248592060059309,0.7111907047219574,-0.3972021727822721,0.17953602829948068,-0.2331412797793746,0.7272080718539655,-0.42239693086594343,-0.5862843249924481,-0.0745614324696362,0.7625670544803143,-0.7396655222401023,-0.6890862653963268,-0.8186461362056434,-0.044193190056830645,-0.29174619633704424,0.2995775914750993,0.28064231388270855,0.16620528930798173,0.21724086487665772,0.02335394825786352,0.34850234910845757,-0.4774851808324456,-0.5727689885534346,-0.6647098306566477,0.8318393952213228,-0.3046833095140755,-0.40500127989798784,-0.4544115592725575,-0.6522566126659513,-0.921288182027638,0.9098868081346154,-0.4039195850491524,-0.26933929650112987,0.07711372245103121,0.7663115225732327,0.7154180202633142,0.6339797019027174,0.5491186347790062,0.10095449490472674,-0.4057966680265963,-0.12777919881045818,-0.22878350084647536,0.37603422440588474,0.14131072629243135,0.8099549054168165,-0.49917986476793885,0.657888984773308,-0.6226327181793749,-0.7807214600034058,-0.45783471409231424,0.5708155361935496,0.8213602588512003,0.8131435015238822,0.7234866535291076,0.21814835676923394,0.6358813494443893,0.4305673185735941,0.48053093487396836,-0.44527028454467654,0.1467287065461278,-0.8755693691782653,-0.47108124243095517,0.2928977902047336,-0.04018802335485816,-0.11458396026864648,0.9799701445735991,0.6532164001837373,0.8881358127109706,0.7299232832156122,0.6500930804759264,0.1001309440471232,0.1839085635729134,-0.7357466020621359,-0.38715304899960756,0.10865058563649654,-0.9544910001568496,0.5943036125972867,-0.14199223183095455,0.776472223456949,0.20786755112931132,-0.6138586895540357,-0.5150859807617962,-0.5551535906270146,-0.19456887803971767,0.17042661178857088,0.5462584956549108,-0.6869405093602836,0.7891549859195948,-0.7441737530753016,-0.3310122457332909,0.8738057557493448,-0.9904281571507454,0.465708895586431,0.5288359383121133,0.8324266863055527,-0.18308659689500928,-0.9192700353451073,0.9858595631085336,0.3194202883169055,-0.23190143844112754,0.10518780210986733,-0.2062540058977902,-0.3941025263629854,0.5736526879481971,-0.9710177318193018,-0.8752854964695871,-0.17899596877396107,-0.42921942099928856,0.12594062322750688,0.7418713048100471,0.3174492884427309,0.392386669293046,0.6265049003995955,-0.4685967010445893,-0.6734288251027465,0.44216961646452546,0.3360120374709368,0.4485423266887665,-0.3504873104393482,0.550526627805084,-0.7213125294074416,0.9324540216475725,0.6042530345730484,0.3423348921351135,-0.7601554961875081,0.9467198206111789,-0.48381032748147845,-0.017396893817931414,-0.12042820174247026,-0.9109016084112227,-0.9170149103738368,-0.8571042292751372,0.08871803293004632,0.0807179007679224,0.08123548422008753,0.7614819221198559,0.8265762482769787,0.6773885483853519,-0.6970987766981125,-0.7630522046238184,-0.04330626642331481,-0.4662037193775177,0.6624551243148744,-0.8212354420684278,-0.9437130745500326,0.05233992636203766,0.7196131669916213,-0.014174333307892084,-0.3411646904423833,0.2667727372609079,-0.3176713353022933,-0.1030658152885735,0.2512224707752466,-0.5518342470750213,0.31037740176543593,-0.47513016359880567,0.4147497769445181,0.9681919077411294,0.40869652666151524,-0.819246110972017,-0.6626479551196098,-0.14445482660084963,0.8257819646969438,-0.6853248123079538,0.6107247876934707,-0.8399519431404769,0.11838716641068459,0.30864006746560335,-0.14949339674785733,-0.7255227696150541,0.6639024103060365,-0.1570131303742528,0.3269347199238837,-0.7449944582767785,-0.8873205818235874,-0.5263060345314443,-0.9958470389246941,0.1890939064323902,-0.27535492228344083,-0.17050847969949245,0.7505202554166317,0.25424237409606576,0.5471652373671532,-0.8337259939871728,0.707787427585572,0.27090987004339695,-0.19898528885096312,0.2976988242007792,0.23061392735689878,0.878163215238601,0.2962478189729154,-0.47389857843518257,-0.894383448176086,-0.4038621950894594,0.8224504245445132,-0.8075105105526745,0.9836756638251245,0.76637800084427,-0.6487261666916311,0.5297636482864618,-0.2652261625044048,0.36029251338914037,-0.9561021300032735,0.181688635610044,-0.9111914448440075,0.6778703299351037,0.3264134079217911,0.07052882201969624,0.14265902433544397,0.620443039573729,-0.1482420307584107,0.13177037984132767,-0.5060302470810711,-0.9098595306277275,-0.48698455980047584,0.5076322597451508,-0.46608965983614326,-0.31739570619538426,-0.7542543979361653,-0.0342857763171196,0.6081374976783991,-0.007599662523716688,-0.6431924100033939,-0.5587041722610593,-0.783385741058737,0.32823308696970344,-0.7347018094733357,0.3247652412392199,0.27497020177543163,0.303564396686852,-0.9418070395477116,0.17891522916033864,0.23891880502924323,-0.32094924431294203,0.3501195488497615,0.11631068540737033,-0.3371866187080741,-0.8913668124005198,0.8067516307346523,-0.8001143848523498,-0.3821171885356307,0.4444246874190867,0.8123359070159495,-0.48363488959148526,-0.5404650368727744,0.8209225577302277,0.35958258574828506,0.42597161466255784,0.8509806492365897,0.7305177859961987,0.11025653500109911,0.34553037863224745,-0.6615118179470301,0.7071917504072189,-0.7255563894286752,0.3399093593470752,-0.023067768663167953,-0.011369981337338686,-0.8957902537658811,-0.3842376577667892,0.8499448522925377,-0.10242933500558138,0.002007797360420227,-0.8585455375723541,0.028074072673916817,-0.9049467807635665,0.49385966546833515,-0.6464144559577107,0.9172986070625484,-0.4377545891329646,0.3347982633858919,0.0792034505866468,0.977288949303329,-0.43013543263077736,-0.3324533551931381,-0.06295309541746974,0.1508820648305118,-0.6193054867908359,0.6368995141237974,-0.5653226496651769,-0.01460768561810255,0.6207404714077711,0.562351384665817,-0.1949751558713615,-0.09557819552719593,0.035312334541231394,0.7837649211287498,-0.16350374137982726,-0.18935944279655814,0.7581440042704344,-0.3792639244347811,0.09253551810979843,0.43143541226163507,0.5184660656377673,0.5920208636671305,0.3243334819562733,-0.6197729147970676,-0.6159273008815944,0.4988594171591103,-0.74598767189309,0.02931811334565282,0.1761407107114792,-0.15262124501168728,-0.5662015560083091,-0.9540533400140703,-0.706004158128053,-0.35921672359108925,0.5185715304687619,-0.49767808616161346,0.498932670801878,-0.6759848217479885,-0.927365149371326,0.960443593095988,-0.6055085072293878,-0.06386842904612422,-0.24220730969682336,0.1368712610565126,0.42680788738653064,0.9511244613677263,0.08791471738368273,-0.11590583389624953,0.10314451297745109,0.24915706366300583,-0.9242459586821496,0.5071624568663538,0.2676929868757725,-0.9748717928305268,0.11176651529967785,-0.8243392128497362,-0.843813294544816,-0.16800115816295147,-0.46134726610034704,0.19033197220414877,-0.9270490524359047,0.2950574718415737,-0.8598777456209064,0.8387157148681581,0.1253396118991077,0.7923510828986764,-0.7795592984184623,-0.09852514648810029,-0.2846544748172164,0.16815668251365423,0.24843733105808496,-0.07764564733952284,0.2915021223016083,0.6221536649391055,-0.11207425128668547,-0.9386200453154743,-0.609296165406704,-0.5617543654516339,0.028861238155514002,0.9202491696923971,-0.8285932182334363,-0.5524957412853837,0.5402069562114775,0.01046447129920125,-0.04878014652058482,-0.16981385834515095,0.861364952288568,-0.3641047882847488,-0.6350688305683434,0.17716044513508677,0.6678617182187736,-0.20717284316197038,-0.09203780209645629,-0.20568646304309368,0.27447399869561195,-0.6686958074569702,0.9805804672650993,0.10554288467392325,-0.33285599248483777,-0.7809584685601294,-0.8800728251226246,0.10104728024452925,0.782755390740931,-0.42331215599551797,-0.12205065228044987,-0.5320346001535654,0.47380281845107675,0.6376932300627232,-0.7461521816439927,-0.6909313653595746,0.3928791652433574,0.12275602109730244,0.1539631295017898,0.2592959594912827,0.8533482239581645,-0.6529250056482852,0.402963615488261,0.3851222819648683,-0.7323628910817206,-0.007104967255145311,0.09296927554532886,0.645152875687927,0.8379894401878119,0.9318360951729119,-0.43387827929109335,0.5425761826336384,0.606874156743288,0.9809464234858751,0.5405679284594953,0.4969286387786269,-0.06776713579893112,0.26630943175405264,0.43284841533750296,0.04115821607410908,-0.6783380312845111,0.6856592702679336,-0.4857054711319506,0.9684286452829838,0.774363259319216,-0.1505515710450709,-0.23979457980021834,-0.9459577505476773,-0.04311436414718628,-0.2835435685701668,0.6332954200915992,-0.22897882526740432,-0.8891929858364165,0.4466179204173386,0.054036411456763744,0.13995574275031686,0.006653688848018646,0.4233424826525152,-0.27839664462953806,-0.6611910141073167,-0.05858645122498274,-0.9140602955594659,0.5454763011075556,-0.7431923868134618,-0.7786021768115461,-0.8816462424583733,0.7438824847340584,0.5194468898698688,0.1375183747150004,0.4076150837354362,-0.7688640579581261,0.8623684016056359,-0.9781190236099064,-0.005190480966120958,0.7380256187170744,-0.5190073070116341,0.8915913091041148,0.11036706017330289,0.339483430609107,-0.585436609108001,-0.018932103645056486,0.011965765617787838,-0.49298280104994774,-0.6474981466308236,0.7615045374259353,-0.7418534602038562,-0.23681572917848825,-0.30029239831492305,0.9819117314182222,0.005256271455436945,0.24122720304876566,0.4362423620186746,0.6956241591833532,-0.15983418794348836,-0.13888483541086316,0.690509928856045,0.8766587749123573,0.5895067011006176,-0.4652112117037177,0.22606633976101875,-0.8108935803174973,0.14943793741986156,-0.7567753498442471,0.2059826636686921,-0.7810552059672773,-0.3095780829899013,-0.26838134601712227,-0.9638137314468622,-0.6632687249220908,-0.7862891894765198,0.37427281122654676,-0.7922726944088936,0.8959106835536659,0.29093709494918585,0.8395247492007911,-0.20269679883494973,0.08489391067996621,-0.24840183788910508,-0.6612947015091777,-0.7345564137212932,-0.37435642443597317,-0.6300178407691419,0.4730605795048177,0.7714220229536295,-0.4923805594444275,0.6519634490832686,0.4849835797213018,0.7317712549120188,-0.2579450770281255,0.23571539297699928,-0.33069741632789373,-0.05880753044039011,0.6988534145057201,-0.9306654212996364,0.9006016794592142,-0.9104010323062539,-0.9594719167798758,0.2345967390574515,-0.7865343652665615,0.5372742447070777,0.7178794690407813,0.33468694565817714,-0.6792325116693974,-0.6189456982538104,0.28878409042954445,0.6829140726476908,-0.14001218974590302,-0.7258035349659622,0.45206460217013955,0.753176256082952,-0.7815269869752228,-0.6490372675471008,-0.6640538023784757,-0.8673380026593804,0.12025096174329519,0.7391587654128671,0.7512555066496134,0.5679031563922763,0.5640425365418196,-0.6099841222167015,-0.5624344162642956,0.2680541332811117,0.6362326620146632,0.6682503586634994,-0.46443283557891846,-0.3830522643402219,0.5615898687392473,0.004052384290844202,-0.26972164446488023,0.8416114565916359,0.883752609603107,0.8967272629961371,0.7786744404584169,-0.7856435244902968,-0.5443386570550501,-0.687190801370889,0.1627664710395038,-0.415508481208235,0.34192276932299137,-0.557455156929791,-0.4822832136414945,0.4888156736269593,-0.5163720916025341,-0.3986004712060094,0.48096700944006443,-0.8749747732654214,-0.873008435126394,-0.5670657283626497,-0.8810401605442166,0.12191690737381577,-0.11705124471336603,-0.9110637865960598,-0.5493780476972461,0.5881221117451787,0.6168232834897935,0.9102292116731405,0.8728182283230126,-0.3144242097623646,-0.4195340843871236,-0.7218716447241604,0.13854426704347134,0.5342913847416639,-0.1388243492692709,-0.6210263441316783,-0.8297633631154895,-0.6810397147201002,0.5860283426009119,-0.4513027356006205,0.18497951375320554,0.16935126623138785,-0.306721955537796,0.844056939240545,-0.01853209361433983,0.24007988348603249,0.14165792660787702,0.9601253909058869,0.572816900908947,-0.040192760061472654,-0.07305218186229467,0.5309175634756684,-0.08164417603984475,0.6457755942828953,0.5976460045203567,0.13529615849256516,0.9694745517335832,0.5885839443653822,0.5924109658226371,0.5795230055227876,0.61731345532462,0.5293888901360333,-0.6193589521571994,-0.040308674331754446,0.3522179354913533,0.7880117916502059,-0.6607689931988716,-0.7133275526575744,-0.26992464577779174,-0.24245608132332563,0.21075831167399883,0.3646388021297753,0.9905065027996898,-0.7500946493819356,-0.02457021875306964,0.12482224404811859,0.05966806970536709,-0.18790189269930124,-0.7444752608425915,0.13271349715068936,0.6683040927164257,0.2489417865872383,-0.7092952029779553,-0.6462094467133284,-0.25551227619871497,0.6042324183508754,-0.4180334177799523,0.7136221872642636,-0.056808614172041416,0.0741225597448647,0.9134841053746641,-0.3837653803639114,0.027783009223639965,0.3804643680341542,0.44338596845045686,-0.10977624449878931,0.25966340536251664,-0.5903533832170069,0.8622529427520931,-0.24909818591549993,-0.3677550540305674,-0.5325003680773079,0.4526807074435055,0.12741190800443292,-0.57799534779042,0.6491533797234297,-0.6032360177487135,-0.2930657737888396,-0.6524505992420018,-0.9446042953059077,-0.46381842577829957,-0.3113612337037921,0.7232074686326087,-0.3125518667511642,0.9772767657414079,-0.7522893059067428,0.4772885274142027,-0.2344928253442049,-0.7024162062443793,0.41048551676794887,0.2893188246525824,0.1785067766904831,-0.04075030004605651,-0.5491612264886498,-0.5597276352345943,0.6286898483522236,0.7178455111570656,-0.286331691313535,0.7223513778299093,0.20133196841925383,0.023961971048265696,-0.5074358428828418,-0.05577416019514203,0.694732207339257,-0.8345634965226054,0.5469305487349629,-0.7380088865756989,-0.6681905016303062,0.0888656578026712,0.23188744252547622,0.026334555353969336,-0.6733575966209173,0.4444390134885907,0.8644217494875193,0.1708479574881494,-0.396026867441833,0.8574101007543504,-0.1432020184583962,-0.1903513129800558,0.11699822545051575,-0.9409362953156233,-0.5607505128718913,0.7792307729832828,0.7070837519131601,-0.8375174277462065,0.9704150361940265,-0.16939426911994815,0.9718057671561837,0.5416961023584008,-0.2455121693201363,0.2261930969543755,-0.03691628249362111,0.5470493859611452,0.9813186223618686,0.6481015123426914,-0.47707916935905814,-0.08900232193991542,-0.4367475202307105,0.09478172613307834,-0.7776907393708825,0.2598546352237463,-0.38756880443543196,-0.39140272978693247,-0.020667975768446922,-0.08170365309342742,0.34738353732973337,0.3849926255643368,-0.2736408244818449,0.6608998216688633,-0.0784945129416883,-0.437540540471673,0.7130267177708447,-0.9485952290706336,0.15942228445783257,0.2709362721070647,-0.5320830345153809,0.9992632367648184,0.9351442563347518,0.29873365769162774,0.5180143970064819,-0.8722233534790576,-0.1261578225530684,-0.843705655541271,-0.2968086041510105,-0.2094785594381392,-0.422581572085619,-0.7531265029683709,-0.8084750268608332,-0.03731485968455672,-0.611540446523577,0.06971537787467241,-0.39659257838502526,-0.03616206767037511,0.1337498864158988,-0.4809733242727816,0.44948464538902044,-0.8084635403938591,-0.9156550127081573,0.3280363976955414,0.7496857619844377,0.14471412124112248,0.16917488677427173,0.9115486242808402,0.6751797385513783,-0.7672437410801649,-0.4355023964308202,-0.8584585771895945,-0.1535904803313315,0.5612502880394459,-0.16925567481666803,0.8285186062566936,0.845667777583003,0.5745607079006732,-0.8158585228957236,0.7696214350871742,-0.6663580927997828,-0.2534671342000365,0.2605576911009848,0.746367790736258,-0.2994501148350537,0.09711651410907507,-0.20916946232318878,0.584955261554569,-0.6939596468582749,0.04691828368231654,-0.9195559383369982,-0.6905454900115728,-0.10746488440781832,-0.36614302080124617,-0.8339945962652564,0.09698492754250765,0.3646281799301505,0.6958839488215744,-0.2506061038002372,-0.6205959804356098,0.6359898936934769,-0.8523231302388012,0.4627500455826521,0.6378308865241706,-0.4299140712246299,-0.4229870392009616,0.3831370393745601,0.1432731356471777,-0.35220301896333694,0.41533784847706556,-0.8309396668337286,0.06255393661558628,0.9489599573425949,-0.5206603826954961,-0.19159909198060632,0.6040943139232695,0.5839153099805117,0.791538396384567,-0.23405338870361447,0.6026033605448902,0.2828373908996582,-0.8159220251254737,0.4163882187567651,-0.4641828197054565,-0.7052344437688589,-0.46961890207603574,0.8959565507248044,-0.3199575995095074,-0.752854089718312,-0.4742771699093282,0.974495820235461,0.6987928040325642,0.9310271549038589,0.7483221138827503,0.9787162053398788,-0.3850474329665303,0.23476106487214565,0.12560501415282488,0.338350482750684,0.5171313537284732,-0.8528338824398816,0.030971848871558905,-0.4593290574848652,0.525313600897789,-0.7756986510939896,-0.19163717096671462,0.8806906440295279,-0.3080536425113678,0.5031194374896586,-0.0062339711003005505,0.6866773208603263,0.7889062906615436,0.8997656260617077,0.6617371244356036,-0.5704671866260469,0.8387093613855541,-0.44722421746701,0.3214633814059198,0.3957691085524857,-0.6415532901883125,0.864409095607698,0.5483056386001408,-0.7080971794202924,-0.2766534322872758,-0.6114656920544803,0.8082441375590861,0.5662331501953304,0.9512056512758136,-0.9720353009179235,-0.8101904634386301,0.8723236555233598,0.42413646215572953,-0.23123263800516725,0.645976529456675,-0.9243376888334751,0.37051160726696253,0.7155641815625131,-0.8620491120964289,-0.7666121581569314,0.2834791587665677,-0.1549399201758206,0.7851715041324496,-0.5146855153143406,0.8817548546940088,0.5052060876041651,0.09867664659395814,0.4615287706255913,-0.8806586069986224,0.25343152740970254,-0.8479983131401241,-0.07240489637479186,0.5737426071427763,0.7940917140804231,-0.37311728904023767,-0.734260281547904,0.19494288321584463,-0.9417551946826279,-0.4583646636456251,-0.6868671104311943,0.15815475909039378,-0.8597702966071665,-0.8172363471239805,0.7849478451535106,0.21757722878828645,0.2489410531707108,-0.7488307016901672,0.5399580216035247,0.6058703092858195,0.8287407485768199,0.19010014086961746,0.03075166419148445,0.994876928627491,0.2097008698619902,-0.8384854346513748,0.48085288936272264,-0.7597776302136481,-0.1255446830764413,0.15907575841993093,0.3271573232486844,-0.2619067681953311,-0.6757245175540447,-0.742180934175849,-0.757486064452678,-0.5920728072524071,-0.15474568353965878,0.3452938161790371,-0.18927339557558298,-0.022306510247290134,0.3082539327442646,0.08958726143464446,0.2646168814972043,-0.363051135558635,0.1452505774796009,0.7015943275764585,-0.8004417582415044,0.44704158045351505,0.7922562598250806,-0.5378528595902026,0.8784710448235273,-0.38689997885376215,-0.5759165650233626,-0.4490592433139682,0.7288543125614524,-0.1135392407886684,0.6747676166705787,-0.7636002050712705,0.16785736940801144,-0.3475574664771557,-0.6136510497890413,-0.17729716887697577,-0.5132437418214977,0.4058743049390614,0.4079938465729356,0.9769546245224774,-0.15247113583609462,-0.08958641299977899,-0.4350304054096341,-0.8230757345445454,-0.07434067921712995,-0.8237015688791871,-0.9767279266379774,-0.4300222983583808,-0.26815497037023306,0.8224843386560678,-0.44047493347898126,0.018089029472321272,0.4698748658411205,-0.8463945877738297,0.7266259263269603,-0.4193506673909724,0.896853054407984,0.45029311068356037,0.5223643681965768,-0.6262413458898664,-0.6696226964704692,0.7003543335013092,0.6946018785238266,0.5742135033942759,0.26359689608216286,0.4166445233859122,0.06575774680823088,0.5193251678720117,-0.1764783775433898,-0.1267720479518175,0.38534966483712196,0.816229397431016,-0.14395884657278657,0.4177430528216064,-0.6208556862547994,0.27712404867634177,0.4124642563983798,-0.3446308309212327,0.030290647875517607,0.8417739355936646,0.17236103676259518,0.9966444838792086,0.8568293745629489,0.354056506883353,0.4147445587441325,-0.5071290703490376,-0.6439144872128963,0.545119502581656,0.9117522998712957,0.1790999616496265,-0.7949959775432944,0.03742092475295067,-0.1578559591434896,0.15726160071790218,0.7255616984330118,0.7304131365381181,0.22833593608811498,-0.960676419083029,-0.29032012494280934,-0.7676460444927216,0.4227981208823621,-0.45781505247578025,-0.9136054376140237,-0.633865409065038,0.6632280666381121,-0.08813483268022537,-0.07717663375660777,-0.5479955077171326,-0.9229684229940176,0.024353339802473783,0.17352723563089967,0.19354958459734917,0.6042848234064877,-0.8839802728034556,0.39916757540777326,-0.5389421232976019,0.7953739617951214,-0.6162169808521867,-0.03582960041239858,-0.1048634322360158,0.6003803364001215,0.6893145251087844,0.23312232783064246,-0.1988738183863461,0.1591953383758664,-0.8657190948724747,-0.8407555869780481,-0.8731558164581656,-0.607429045252502,0.7383563001640141,0.7026610891334713,0.17816295567899942,-0.5060349949635565,0.5035933386534452,0.9333959026262164,0.0918087586760521,0.7097890833392739,-0.8921188414096832,0.20114274695515633,-0.531953495927155,-0.9107014411129057,0.619912859518081,-0.6283238362520933,-0.7217641095630825,-0.26929399743676186,-0.061576363164931536,-0.8571039764210582,0.658067939337343,-0.6466531245969236,-0.353762055747211,-0.688826622441411,0.005170139018446207,-0.24833022756502032,-0.8871340397745371,-0.3253069664351642,-0.23049243353307247,-0.46056658774614334,-0.27227744087576866,0.7451295256614685,-0.20010925456881523,0.7413093140348792,-0.5191204072907567,0.09102319646626711,0.31841974845156074,0.8388642151840031,-0.7097924258559942,0.5417091734707355,0.36875411309301853,-0.672687734477222,-0.719476870726794,0.936405791901052,-0.9647155874408782,0.2903576367534697,-0.7601087153889239,-0.42544199200347066,0.5209321342408657,0.23963617766276002,-0.3940674476325512,-0.4495245721191168,-0.324658929836005,-0.9378029969520867,0.2656212863512337,0.06870849383994937,0.6492757583037019,0.8056812849827111,-0.3872379926033318,-0.850711920298636,-0.7293660794384778,-0.055459377355873585,0.6858672434464097,0.47137741604819894,0.11430645221844316,-0.6228186856023967,-0.6974765481427312,0.4045511274598539,-0.29946364369243383,0.5593234882690012,0.6594400140456855,-0.8303889697417617,-0.2901590261608362,-0.8433914100751281,-0.7496127020567656,-0.4086854364722967,0.19522556057199836,0.14296303829178214,0.15119921788573265,-0.8994789673015475,0.9567877072840929,-0.880116680637002,0.9899892723187804,0.43943291902542114,0.5345836859196424,-0.2866349187679589,0.24324243236333132,-0.2570052184164524,-0.2819824805483222,-0.6245914362370968,0.06983277015388012,-0.07606841344386339,-0.4454467985779047,-0.14492937363684177,-0.3863065605983138,0.2843989240936935,0.520913606043905,-0.6922761187888682,0.2178240930661559,0.4055778835900128,-0.7745359940454364,-0.45272467471659184,0.8508378565311432,0.5792135028168559,0.4814826538786292,0.37210427038371563,0.22991524962708354,-0.5342203318141401,-0.1322488822042942,0.21616778010502458,-0.6499124774709344,-0.5368752516806126,-0.5617227451875806,-0.03869887441396713,0.2659808751195669,0.05133056500926614,-0.3265424333512783,0.0219916719943285,-0.6129557061940432,-0.5316020576283336,-0.5988821927458048,0.2752067241817713,0.19517638674005866,0.7675255532376468,-0.9851424284279346,-0.3882678826339543,-0.5585607010871172,-0.6538435434922576,0.9725944050587714,0.6474293097853661,-0.04398344736546278,0.606100186239928,-0.05481662740930915,-0.4871236444450915,0.4878494469448924,-0.007808885537087917,-0.9458725671283901,0.16072842245921493,-0.4850399810820818,-0.1619221931323409,-0.96970966598019,-0.048031934071332216,0.9055722644552588,0.5886524305678904,-0.4786766963079572,0.7964129424653947,-0.7969035217538476,-0.9580847923643887,0.15906424494460225,0.35678893560543656,-0.8232023539021611,0.36697344202548265,-0.41015341272577643,0.22672497248277068,0.0053596398793160915,0.0772580485790968,-0.3593237171880901,-0.7312349542044103,0.9649796551093459,-0.3812960973009467,-0.1430213158018887,0.25734525406733155,-0.6029546982608736,-0.08719168743118644,0.43111483938992023,0.7524278247728944,-0.7686391589231789,0.19063005642965436,-0.4387850407510996,0.9904419076628983,0.07868541404604912,0.9727115510031581,-0.27731381403282285,0.8182218256406486,0.498734547290951,0.7056018188595772,0.26054361974820495,-0.06820677453652024,0.5270035862922668,-0.902780148666352,0.17850591242313385,-0.20209032483398914,-0.8627671836875379,-0.04141045920550823,-0.30478886887431145,-0.23472651513293386,-0.7105143098160625,0.5638417755253613,0.3229380967095494,-0.3237454225309193,0.6542539806105196,0.07989596109837294,0.3352284557186067,0.9362934636883438,-0.0456191124394536,0.8655822817236185,-0.042106639593839645,-0.5919526559300721,-0.9431467475369573,0.7646192526444793,0.1618384257890284,0.8715858878567815,0.32842645794153214,0.4394106538966298,0.6550197037868202,-0.7478261855430901,-0.42169403238222003,0.460457821842283,-0.684460979886353,-0.3135408298112452,0.17112203454598784,0.9034833419136703,-0.8289351244457066,0.4979629158042371,-0.7828432475216687,-0.22787328995764256,-0.8576346286572516,-0.2523735323920846,0.696586936712265,0.714140648022294,-0.9622085192240775,0.2443366525694728,-0.3067761594429612,-0.3328494196757674,-0.4694542936049402,0.2409051530994475,-0.827461367007345,0.1765543557703495,0.7487741350196302,-0.37428826419636607,-0.9785405020229518,0.3913100375793874,-0.9792059832252562,-0.5741595621220767,-0.738513546064496,-0.13381748599931598,-0.6657699053175747,0.554860414005816,0.993450996465981,0.48403875483199954,0.04889529570937157,0.7378683132119477,0.5765441590920091,-0.9116654046811163,0.5558042689226568,0.7743112300522625,0.5040547070093453,-0.1844324986450374,0.9391742665320635,-0.11221012938767672,0.5602067937143147,-0.6948366123251617,-0.029393154196441174,0.9772596759721637,-0.9333075163885951,0.6017828108742833,0.28504896676167846,-0.4595660693012178,-0.6606728374026716,-0.27846989734098315,0.6523036286234856,0.6865022643469274,-0.9107320024631917,0.27308206213638186,0.8362216213718057,0.8891412229277194,-0.6110822740010917,-0.754106399603188,-0.23216236289590597,0.23718792805448174,0.8401384768076241,-0.150680314283818,0.49685841193422675,0.0830767978914082,-0.7664206377230585,0.7751988479867578,-0.8083018688485026,0.5111281555145979,0.7829592442139983,-0.6684686159715056,0.9217887716367841,-0.9329358795657754,-0.8579985839314759,0.4853319600224495,0.5150884664617479,0.18835114082321525,0.4559569261036813,0.5386846824549139,0.4110286934301257,0.7291813553310931,-0.6278683422133327,-0.25960292387753725,-0.8439286919310689,-0.16193963214755058,-0.2984568369574845,0.7151181120425463,-0.800344402436167,-0.5681548281572759,-0.21847674762830138,0.6014582952484488,-0.3383136698976159,0.11326528200879693,0.2897027926519513,-0.2380773201584816,-0.9319959082640707,-0.7886934000998735,-0.324326709844172,-0.5579350967891514,-0.8591128499247134,0.042410333175212145,-0.01301767909899354,0.2462578983977437,-0.8833611169829965,-0.15207284362986684,0.10148585913702846,0.39898026967421174,-0.2485198685899377,-0.09341391362249851,0.07788215996697545,-0.9261169014498591,0.6633066418580711,0.3650635629892349,0.534754085354507,-0.058788910042494535,0.9151153299026191,-0.4220583192072809,0.9323239452205598,-0.2703643376007676,-0.274749968200922,0.4012892795726657,-0.7213687817566097,-0.8228201507590711,0.46771142166107893,0.3222559420391917,-0.5702272732742131,0.4108977117575705,0.47959041502326727,-0.9825644916854799,0.8706990610808134,-0.044895756989717484,-0.47129543451592326,0.26718875020742416,-0.6370452623814344,0.4662633375264704,0.6073193857446313,-0.4569204752333462,0.03417145740240812,0.8900919095613062,-0.8261184832081199,-0.47705135913565755,-0.007793127093464136,-0.6728825643658638,0.4844425208866596,-0.8205991415306926,-0.024289419874548912,0.014176566619426012,0.6555097694508731,-0.37600431591272354,0.8393602469004691,0.955706394277513,-0.03596402471885085,0.3808687827549875,-0.6762458914890885,0.3910612897016108,-0.20768570248037577,-0.7570889117196202,0.7158588385209441,-0.9575853128917515,-0.9736207122914493,-0.2196639021858573,-0.7821644158102572,-0.6283650514669716,-0.36175301717594266,0.7017085440456867,0.7869038879871368,0.9557116315700114,0.6171102761290967,-0.6725704548880458,0.8575099562294781,0.8732340335845947,-0.7006730791181326,0.8380900309421122,-0.9293063557706773,0.5652222600765526,-0.8027452831156552,-0.11835200665518641,0.9608761263079941,-0.294481267221272,0.8584690550342202,-0.015011617913842201,0.2750114952214062,0.7812670338898897,-0.24161667143926024,-0.7560852020978928,0.04004141082987189,0.8594769346527755,-0.2987971007823944,-0.3070083172060549,0.6636677011847496,0.05494578508660197,0.18202623864635825,0.7413261332549155,0.9711094698868692,-0.0720075755380094,-0.5441475249826908,0.6611737171187997,0.31356802955269814,-0.14785656379535794,0.8746721330098808,-0.7064138306304812,-0.9032235033810139,0.6115972381085157,0.35319308191537857,0.8740873942151666,0.11479687364771962,0.10056107491254807,0.6894571678712964,0.40974008198827505,-0.816976947709918,0.9428070457652211,0.7211293810978532,0.08716871635988355,-0.1128577021881938,-0.5929196956567466,0.26867138128727674,0.5143588492646813,0.050199470948427916,-0.003667728044092655,0.06389111699536443,-0.6414654040709138,0.6247434918768704,0.6742702629417181,-0.6025369251146913,0.8066692259162664,0.025581687223166227,0.8952874718233943,-0.068534174002707,-0.22427429677918553,0.7261111210100353,0.968548416160047,-0.8676878800615668,-0.7065776870585978,0.9756570756435394,0.15817118901759386,-0.3307175994850695,-0.6779536795802414,-0.48254163283854723,0.8158039106056094,0.7318202443420887,0.3171281395480037,-0.7298020273447037,0.35536453407257795,-0.38564979610964656,-0.33027299540117383,-0.3772440035827458,0.5942382807843387,0.6040441677905619,0.1623768866993487,-0.4036293807439506,-0.4914668989367783,-0.7719613532535732,-0.372735143173486,-0.6396950669586658,-0.3270187680609524,0.850027337204665,0.35300626512616873,-0.5745173241011798,-0.008823808748275042,0.8735844604671001,-0.011148791760206223,-0.21814640192314982,-0.4482486913911998,0.7057669200003147,0.10011492390185595,-0.30891798017546535,0.7420775508508086,-0.7047674772329628,-0.867604544851929,-0.2458137613721192,-0.5977734178304672,0.190320847555995,-0.8011728851124644,-0.8768394384533167,0.762156100012362,-0.20708908000960946,-0.3492834665812552,0.23493243847042322,0.8906707563437521,-0.06810076767578721,-0.9585040770471096,0.7247867034748197,-0.10167500143870711,0.18110426096245646,0.11243082024157047,-0.5010991510935128,0.42745321104303,-0.9721175385639071,0.6596034686081111,-0.7904023043811321,0.19277178449556231,-0.053853216115385294,0.25407227873802185,-0.952745056245476,0.9673120891675353,0.7209621951915324,0.47584431944414973,0.36279860185459256,0.6110133551992476,-0.4748607096262276,0.5762503887526691,0.7910793353803456,0.3556617768481374,0.9398381188511848,0.16452524298802018,0.6394907333888113,-0.3498044293373823,-0.8573048645630479,0.08798631513491273,0.33387275226414204,0.6959452647715807,0.7453724560327828,-0.8411097680218518,0.4620535336434841,-0.033392665442079306,-0.5884870407171547,-0.8817158685997128,0.4131488180719316,-0.02267419220879674,-0.6226707240566611,0.937265140004456,-0.46645758021622896,-0.8782616592943668,0.3953601224347949,0.5157573111355305,-0.9738045069389045,0.6452240329235792,0.7702436181716621,-0.5369946048595011,-0.5840447307564318,0.06740021146833897,-0.4804351762868464,-0.5837361537851393,-0.8258364694193006,0.05918452702462673,-0.34561259765177965,-0.6589212412945926,0.15816935244947672,-0.25052901124581695,0.005443061236292124,0.33006146317347884,0.2693698429502547,0.8204417652450502,0.5931204198859632,0.8278105221688747,-0.4069388718344271,0.691296452190727,-0.5398104009218514,-0.3697477071546018,-0.6799343870952725,0.17591765988618135,0.401831463444978,-0.7497915546409786,-0.613848586101085,0.21983365342020988,-0.647059852257371,0.798556427937001,-0.1017242562957108,-0.31933915708214045,-0.14663767162710428,-0.21606396278366446,0.34884458174929023,0.43279966805130243,0.8961796751245856,0.49241951713338494,-0.2573146806098521,-0.4852187712676823,-0.7631559423170984,-0.17327564908191562,0.08488809457048774,0.16144729731604457,-0.341828640550375,0.17528678243979812,0.7828351920470595,-0.02362492075189948,0.7344191060401499,-0.8945006150752306,0.826038084924221,0.45874824561178684,0.834739051759243,-0.6075572310946882,-0.1846112897619605,-0.6622268659994006,-0.8068840154446661,-0.3427516180090606,-0.8152574356645346,0.8845875286497176,0.5974893029779196,-0.7873482210561633,0.10560000548139215,0.33303771493956447,-0.8806242318823934,0.7303295158781111,0.7227778998203576,0.5544639560393989,0.030304510612040758,-0.8396402481012046,-0.4987491127103567,0.8557155104354024,-0.030478509608656168,0.7460918668657541,-0.7858410039916635,0.29778822185471654,0.38858050759881735,-0.960693396627903,0.5925873494707048,-0.19025378674268723,0.8875212906859815,0.39517712825909257,-0.39015302574262023,-0.09353745589032769,0.5318065453320742,-0.0647020386531949,0.6244826363399625,-0.419940737541765,0.7334751416929066,-0.5806242348626256,-0.11078649386763573,0.9230069415643811,-0.7867868570610881,0.4404744962230325,-0.5101174497976899,-0.5000837394036353,-0.7465388816781342,0.2889490253292024,-0.07493752846494317,0.5923367640934885,-0.5217385664582253,0.7638207110576332,0.49004792608320713,0.12341606942936778,-0.8824810716323555,0.1295133614912629,-0.6277983416803181,0.6633365605957806,0.23256588447839022,-0.16684315260499716,0.30092627415433526,0.4212621753104031,0.8497899752110243,0.5428734617307782,0.6927119200117886,0.028491124510765076,-0.6277472143992782,0.5862168571911752,0.3986791572533548,0.41119014471769333,0.729443705175072,-0.8898710696958005,0.2800846714526415,-0.757541841827333,0.046750773675739765,0.2028650352731347,0.25938610965386033,0.40191842429339886,-0.051957232877612114,-0.43314372655004263,-0.9683061204850674,0.42955669993534684,0.7495675361715257,0.5930095817893744,-0.7482476946897805,-0.07965265493839979,-0.6960808071307838,-0.5074419812299311,-0.24968987749889493,0.6949244900606573,-0.8426845483481884,-0.39808353735134006,-0.06035992503166199,0.9647738169878721,0.7151210494339466,-0.42695288686081767,-0.2853022087365389,-0.4692325768992305,-0.1649130997247994,0.6641604718752205,0.03607686469331384,-0.34243999142199755,0.7741180909797549,-0.7834628261625767,-0.547103906981647,-0.610767493955791,-0.8695992170833051,0.8548262240365148,-0.41331152617931366,0.37907962827011943,0.0686533679254353,0.7791269440203905,-0.09757194109261036,-0.6591563750989735,0.7241156110540032,-0.3473426322452724,-0.34043491957709193,-0.579185925424099,-0.6739054578356445,-0.6077909246087074,-0.7158910445868969,-0.521751225925982,-0.9220451936125755,0.9308008025400341,0.47261415515094995,-0.9758284422568977,-0.6322484677657485,0.4069845057092607,-0.5189421460963786,0.8132593664340675,0.4824354173615575,-0.8549600723199546,0.5309725133702159,-0.0635823723860085,-0.05838183965533972,-0.23317719530314207,0.08550081588327885,0.652934177313,-0.6743164658546448,0.4066664702259004,-0.9729456254281104,-0.7716227918863297,0.21763331070542336,-0.6692060371860862,0.8400148851796985,-0.6103960257023573,-0.3209902332164347,-0.7040296117775142,-0.7727848035283387,-0.00024995673447847366,0.033260651398450136,-0.5129340654239058,-0.18211762933060527,0.7294636010192335,0.583431355189532,0.2920788871124387,0.11740919249132276,0.04462246224284172,0.046813213266432285,-0.3746138457208872,-0.9624294568784535,0.42890938092023134,0.5881144828163087,0.9880643170326948,-0.8581783561967313,0.6436777096241713,0.5324570741504431,-0.45623803324997425,0.7997504812665284,0.26023276848718524,-0.6366119291633368,-0.6153102880343795,-0.05374319711700082,0.6179369809105992,0.8051994876004755,-0.009738514199852943,0.9901307406835258,0.9080338221974671,-0.24847058486193419,-0.9471914526075125,-0.32463971711695194,-0.9523343681357801,0.9946730439551175,0.9586789505556226,-0.038967161905020475,0.15701694320887327,-0.8226245595142245,-0.32181262457743287,-0.06389281060546637,0.40402334788814187,-0.9188498677685857,-0.8096075667999685,-0.15066849999129772,-0.9139003274030983,-0.967873411718756,0.2881426285021007,-0.1864417940378189,-0.5729236220940948,0.8704677689820528,-0.3359879036433995,-0.6858232980594039,0.38545192778110504,-0.7797818165272474,-0.9620569716207683,0.7898823544383049,-0.12073956662788987,0.4711384028196335,0.40043670358136296,0.632183498237282,0.5842013857327402,-0.4709213264286518,0.5380560820922256,-0.15813024062663317,-0.8909878586418927,0.8427960332483053,0.9349981360137463,-0.47732276236638427,-0.9442848991602659,-0.9882073570042849,0.7901022848673165,-0.12674626056104898,0.8515057465992868,0.9661549562588334,-0.3795598652213812,-0.662559324875474,-0.9860312389209867,0.5951147289015353,0.8390974840149283,-0.9841785090975463,0.12076291907578707,-0.7227283553220332,0.6702150558121502,-0.10283158672973514,0.15251038502901793,-0.5646057710982859,0.8435155884362757,0.6313048778101802,-0.7909059748053551,-0.958118362352252,0.8277724948711693,0.993036259431392,0.13273216225206852,0.8660966483876109,0.5342256831936538,-0.7711016810499132,0.36792020313441753,-0.5090095726773143,0.8523455392569304,0.5159982210025191,-0.3691751705482602,-0.47903400333598256,-0.7106917891651392,0.48645351827144623,0.023985368199646473,0.9625465124845505,-0.3323259181343019,-0.19987422553822398,-0.16998864198103547,-0.42233004700392485,0.93259561015293,0.582046031486243,-0.8667128123342991,0.6392079321667552,0.7362244878895581,0.2863670187070966,-0.40832015965133905,-0.28260285733267665,-0.36283624451607466,-0.758416136726737,-0.9420470097102225,0.9764675875194371,-0.02686877828091383,0.7968195732682943,-0.3199333902448416,-0.3909567636437714,0.6315511423163116,-0.3160257674753666,0.6124439011327922,-0.4668876933865249,-0.21434647729620337,-0.3891260586678982,0.16533850971609354,0.38222494861111045,0.10547344898805022,0.816366667393595,0.5096042100340128,-0.6733874203637242,-0.26877632224932313,-0.6194553803652525,-0.6245554550550878,-0.2046816903166473,-0.8386433911509812,0.09131361171603203,0.16052066208794713,0.0010553160682320595,0.8252836582250893,-0.3212361130863428,0.7754345899447799,0.45045416755601764,-0.7482754099182785,0.36174718057736754,0.18550471309572458,-0.6745048523880541,-0.8738199360668659,0.4801009991206229,-0.8041106476448476,0.2746192035265267,-0.911912499461323,0.1512791677378118,-0.6279121385887265,-0.9498509191907942,0.45612045424059033,-0.6483018412254751,0.3570162788964808,-0.8026110674254596,0.5360556947998703,-0.08425729256123304,0.057492501102387905,0.19993119314312935,-0.23646175442263484,0.9124947087839246,0.33352199336513877,0.4418663908727467,-0.08149642311036587,0.7185201174579561,-0.02836302388459444,-0.8171536163426936,-0.2876800368539989,-0.29838325874879956,-0.5465657659806311,0.6723132650367916,0.5942014609463513,0.8621763563714921,-0.3743053530342877,-0.4313797880895436,-0.8840456642210484,0.3929453711025417,-0.6129782968200743,-0.9875395903363824,0.4751727464608848,0.8058590404689312,0.9776371577754617,-0.9888888755813241,-0.5768334944732487,0.16665517399087548,0.9978478555567563,0.8745444822125137,-0.9811207219026983,0.49883008375763893,0.6603669403120875,0.8582760281860828,-0.5224464489147067,0.5131656532175839,-0.04277925193309784,0.9873895891942084,0.5660789804533124,0.6292577390559018,0.17486307164654136,0.9884955864399672,-0.5892947507090867,0.35392216639593244,0.0849656742066145,0.7839237712323666,0.15846437169238925,-0.4223864981904626,-0.31904733180999756,-0.045987417455762625,-0.19303633039817214,-0.5997911817394197,0.7259179791435599,-0.7491494636051357,0.7377111972309649,0.41382703417912126,0.7089719702489674,-0.7370443711988628,-0.6600913815200329,0.9283171128481627,0.6852857759222388,0.32987301237881184,-0.4398648254573345,-0.10358992777764797,-0.7514881533570588,0.5779570913873613,0.27785694506019354,0.12323682848364115,0.41107745841145515,-0.4645994151942432,0.10814813617616892,0.1402705404907465,-0.9565601325593889,0.3181609767489135,-0.014330636244267225,0.6258380343206227,-0.7262947196140885,0.583295735064894,0.34361520502716303,0.8118638610467315,-0.7696077777072787,0.08190008578822017,0.376230092253536,0.9090533340349793,-0.6143539678305387,-0.9329057577997446,-0.700545955915004,-0.1400198289193213,0.6993499458767474,-0.8221779991872609,0.29885674454271793,0.006165696773678064,0.7468880205415189,0.924586043227464,0.15125764021649957,0.3913928489200771,0.9653607071377337,0.7671153978444636,-0.34177370090037584,-0.2883535851724446,-0.2873513214290142,-0.04381930408999324,0.06172260642051697,-0.7358833802863955,-0.332575686275959,-0.9690351127646863,0.5714632952585816,-0.8752807234413922,-0.763954855967313,-0.5599872074089944,-0.8340815221890807,-0.49922488955780864,0.8374093701131642,0.6198194660246372,0.9615028304979205,-0.0103142773732543,-0.517986012622714,-0.6968148988671601,-0.5761023540981114,-0.7086172113195062,-0.7202365170232952,-0.9048722423613071,-0.2956138248555362,0.16079577011987567,-0.1955428863875568,-0.6502193631604314,0.24829549016430974,-0.9404866434633732,0.8457220266573131,0.23462605848908424,0.7111335177905858,-0.3272106726653874,0.5490129478275776,0.32878359826281667,0.8166415416635573,0.7986025679856539,-0.8480954640544951,-0.02484174631536007,0.3766698781400919,0.6542467516846955,-0.017629433888942003,0.936228568200022,-0.2236949405632913,0.017340460792183876,0.9855923866853118,0.8395662568509579,0.20935232378542423,0.010177034884691238,-0.912326714489609,0.9000288145616651,0.6606142455711961,-0.15173127874732018,-0.8365942873060703,-0.29018817748874426,0.09759300295263529,0.5101855848915875,-0.6980008413083851,0.7784398859366775,-0.8481359467841685,0.5979142361320555,0.7723715007305145,-0.19723116839304566,-0.8029564376920462,-0.43770129792392254,0.9502117154188454,0.34734933404251933,-0.3313291403464973,0.24846110818907619,-0.1160427606664598,-0.557870052754879,0.9783417405560613,-0.24374483060091734,0.529910618904978,-0.4426125241443515,-0.5424127723090351,-0.10705261863768101,0.6681227847002447,0.32843028753995895,0.6409418159164488,0.32661097357049584,-0.5128486906178296,-0.7917175800539553,0.32986534386873245,0.6090209474787116,0.22679275460541248,0.17209081957116723,0.4524573110975325,-0.26791574945673347,-0.9704938787035644,-0.726230027154088,0.04198844125494361,-0.6925030653364956,0.2407800336368382,0.7318906136788428,-0.7636857023462653,0.3053717026486993,-0.3855517851188779,-0.4792670700699091,-0.3159398715943098,-0.39840079145506024,0.9692726843059063,-0.9101961525157094,0.41522201988846064,-0.7618281096220016,0.1275931317359209,-0.6077920771203935,-0.05064909812062979,-0.7412923667579889,-0.36346845095977187,0.9268096853047609,-0.15722150588408113,0.33862998289987445,-0.0903424359858036,-0.7621151534840465,0.4673492815345526,-0.5776690347120166,0.47284948639571667,-0.5802134494297206,0.7606866369023919,-0.671995373442769,-0.796672257129103,0.17273181676864624,-0.47230324195697904,-0.95326814847067,0.8186125284992158,0.03806924168020487,0.6390263149514794,0.9751775078475475,0.17088962579146028,0.25018887780606747,0.1521336678415537,-0.5373927326872945,-0.799207781907171,0.8333031889051199,0.8316702474839985,0.45185231417417526,0.046006279066205025,0.11886516772210598,0.7976315738633275,-0.08684843871742487,0.8291963199153543,-0.34999036975204945,0.40345954429358244,-0.14674615068361163,-0.3248304445296526,-0.9909727983176708,-0.4267718284390867,-0.8394465576857328,-0.2518782867118716,0.8976533706299961,-0.5330790290609002,-0.7925938568077981,0.022442099638283253,0.6710314373485744,0.9422981357201934,0.5826797015033662,-0.0550974914804101,0.6896638874895871,-0.3154463302344084,0.6395965209230781,0.45630478765815496,0.8513945327140391,0.8873318270780146,0.23593620909377933,-0.47005279967561364,-0.040108936838805676,0.15197381656616926,0.40263242460787296,-0.3863115143030882,0.03276724647730589,-0.8292036750353873,-0.7987032383680344,0.1767687974497676,-0.061386320274323225,-0.14145109243690968,0.2889746236614883,0.3192925644107163,0.23262779181823134,0.016457174438983202,-0.3705372856929898,-0.998249932192266,-0.6302302987314761,0.737742988858372,0.4877085923217237,0.9717599572613835,-0.10151804657652974,0.6904016276821494,0.7905434011481702,0.5634398176334798,-0.45793043402954936,0.6100985216908157,-0.5454164519906044,0.9102780339308083,0.039721000008285046,-0.7421164703555405,-0.014821657445281744,0.09553673677146435,-0.034689003601670265,-0.7131391782313585,0.08755290834233165,-0.3627078467980027,-0.7001136778853834,0.11251530051231384,-0.2603480783291161,0.9082408370450139,-0.2921726116910577,-0.6947755329310894,0.43882478307932615,0.3178748534992337,-0.4178136740811169,-0.31441353214904666,-0.7823040029034019,0.8865509438328445,0.9121820526197553,0.16398751316592097,0.529054251499474,0.8044591834768653,-0.9156088680028915,0.447869467549026,0.12730553420260549,0.019367368891835213,0.7189097236841917,-0.9667644067667425,-0.26100192265585065,-0.5931649003177881,-0.10144916409626603,0.8513931375928223,0.17487802170217037,0.4241296690888703,0.1355704669840634,-0.8274634554982185,0.021598512772470713,-0.01848731329664588,0.9873857777565718,0.7368227955885231,-0.2793273054994643,-0.3077041474170983,-0.621603349223733,0.060687314718961716,0.38392182858660817,0.825040637049824,-0.4261088175699115,0.4116426189430058,-0.6635823133401573,0.33801569510251284,-0.2859558342024684,0.48166066966950893,0.4260953147895634,-0.6989201162941754,0.7466068593785167,-0.5671423440799117,0.6430154731497169,-0.8502181442454457,-0.4374470408074558,0.026726063806563616,0.12075109034776688,-0.5809779525734484,0.08202101988717914,-0.3423514007590711,-0.9667436019517481,0.9141963897272944,0.9121283707208931,0.06611126754432917,0.1577333933673799,-0.34401000617071986,0.911394708789885,-0.6301488871686161,0.9516857527196407,-0.07195998961105943,0.274383578915149,0.25896617490798235,0.23598174424842,-0.87880700500682,-0.19437833223491907,-0.8812524662353098,0.4861322068609297,-0.7731521823443472,-0.8655181401409209,-0.908242299221456,0.5029793553985655,-0.9714461769908667,0.41272427048534155,0.37198431696742773,-0.6188026205636561,-0.28128123097121716,-0.7312111905775964,-0.2534450190141797,0.06424336601048708,-0.10645290557295084,-0.70788001595065,-0.753518873360008,0.43252884270623326,0.5961329755373299,-0.8536501829512417,-0.5333058894611895,-0.9549978207796812,0.44320204528048635,-0.35426553012803197,-0.20798134105280042,0.6702747689560056,0.4006077377125621,0.22122348984703422,-0.7394465343095362,0.6258199368603528,0.04980483232066035,-0.8479533311910927,0.6882029939442873,-0.11900551384314895,0.04596422612667084,-0.6067216135561466,-0.13707630010321736,-0.47183000948280096,0.490876963827759,-0.16740943863987923,-0.2338071158155799,-0.6405215105041862,-0.1852241181768477,0.8505657548084855,-0.1765556656755507,-0.45279227336868644,0.6405399185605347,-0.6490216567181051,0.6795313670299947,0.4100352944806218,-0.9870528019964695,-0.1124724973924458,-0.06732308957725763,0.30108364997431636,-0.896305825561285,0.37684822641313076,0.11743472702801228,0.44936459651216865,-0.7473716218955815,0.7259186799637973,-0.017348353285342455,-0.1760349301621318,-0.3331877780146897,-0.31355291744694114,-0.29744590586051345,-0.18576551415026188,0.7312388173304498,-0.09979911521077156,-0.5116177038289607,0.122527364641428,0.2776539162732661,0.9792915992438793,-0.12594797322526574,0.14532196335494518,0.49514405988156796,-0.45769410440698266,0.7360604987479746,-0.7983558308333158,-0.9841725905425847,0.9487420879304409,-0.42734591476619244,-0.8576091541908681,-0.8291238760575652,0.6021315474063158,0.30890508042648435,-0.6254492211155593,0.11531763477250934,0.04556369176134467,-0.8391373567283154,-0.4885960971005261,-0.00194249814376235,-0.866132062394172,-0.22194765228778124,-0.5305916010402143,-0.7649769796989858,0.7899538059718907,0.7931056087836623,0.569143280852586,-0.9163965713232756,-0.8297793371602893,-0.17472426127642393,-0.1192511455155909,0.2150879199616611,0.9838280202820897,0.6835160315968096,0.4408527477644384,-0.22801171196624637,-0.7584926094859838,0.9861414530314505,-0.22587138414382935,0.8658185950480402,0.23535279231145978,-0.8279232839122415,-0.36700189812108874,0.5222314246930182,-0.4006002298556268,0.6251617148518562,-0.4964567548595369,-0.9303171052597463,0.6916839159093797,-0.6417093356139958,0.5037879338487983,-0.12359515810385346,-0.029181604739278555,0.26832203520461917,-0.8360413289628923,0.5242812978103757,-0.3241684013046324,-0.41203091153874993,-0.5686175511218607,0.013279636390507221,-0.6375018628314137,-0.5672723529860377,0.7462631156668067,0.6333595309406519,-0.9748655310831964,0.05034168902784586,-0.8262700419872999,-0.49812216171994805,0.2783560738898814,0.9713900904171169,-0.43449500342831016,0.2609608229249716,0.9561272584833205,0.40523347491398454,0.5179905914701521,0.7989914231002331,-0.8601946202106774,-0.3735267110168934,0.3108345502987504,-0.8757049022242427,0.12057492462918162,0.5356484870426357,0.9510550806298852,-0.4877284299582243,-0.10574529366567731,-0.7372652641497552,-0.6090471809729934,-0.5486725466325879,0.6486757108941674,-0.5109428940340877,-0.4355058828368783,-0.4582275180146098,0.16110308188945055,0.0677821678109467,-0.2765631848014891,-0.3153064181096852,-0.7423905404284596,-0.2192153804935515,-0.9500787723809481,0.14024533471092582,0.23494677059352398,0.7110935025848448,0.9915886712260544,0.5425667082890868,0.9254163149744272,-0.42251616064459085,-0.4937055795453489,0.20052392547950149,-0.5036070058122277,-0.557580147869885,0.65749128209427,0.05988199869170785,0.0016399826854467392,-0.2002119654789567,-0.0818936969153583,0.12429590849205852,0.2597765210084617,-0.666995519772172,-0.7717848075553775,-0.6663361713290215,-0.27937335101887584,0.8096478208899498,-0.9592283172532916,0.1341991345398128,0.32706825667992234,-0.8007476050406694,0.3300301735289395,0.4254578812979162,0.3601143257692456,0.7284822165966034,-0.7165935751982033,0.20372017053887248,0.48744397098198533,0.16068545961752534,-0.8537039156071842,0.20737811597064137,-0.23539824364706874,0.8420234196819365,0.4917571162804961,-0.4462910392321646,-0.8786574015393853,-0.4048262257128954,0.7062089690007269,-0.5199047336354852,0.9106263462454081,-0.5375083503313363,0.12050033453851938,-0.34705249639227986,-0.18094874871894717,0.5350755639374256,0.3743012147024274,-0.2128363768570125,0.729794742539525,-0.16488390555605292,-0.14736212138086557,-0.5081491838209331,-0.8266811575740576,0.7637713272124529,-0.4445363753475249,0.88007384352386,0.9943719119764864,0.9837052249349654,-0.7461801609024405,0.5673375409096479,0.39772397093474865,-0.7011558744125068,-0.6388230905868113,-0.8784189550206065,-0.8066774057224393,-0.4651788529008627,0.8715180223807693,0.8095054468140006,0.5694831977598369,0.552275569178164,-0.8710688515566289,0.32008300721645355,-0.5943302814848721,-0.17663310281932354,0.028215616941452026,-0.09149529598653316,-0.14089625282213092,-0.5048418487422168,-0.9818937848322093,-0.19994190195575356,0.6661312826909125,0.0880927350372076,0.9896121430210769,0.5782339344732463,-0.8217774224467576,-0.300669782795012,0.16721215937286615,0.011742033064365387,0.17709808284416795,-0.6003394587896764,0.8740304633975029,0.012688193004578352,-0.654128126334399,0.9729889798909426,0.7931197108700871,0.1809568414464593,0.8911089752800763,-0.728284343611449,-0.31241710064932704,0.7590665747411549,-0.2698944490402937,0.3143569454550743,0.02691834233701229,0.5184395997785032,-0.05808059452101588,0.0829253070987761,-0.06863048439845443,-0.8439564229920506,0.056307682767510414,0.7275551175698638,0.03021007776260376,-0.7327597546391189,-0.8714372864924371,-0.27823206782341003,0.5436508217826486,0.8850986585021019,0.3959153341129422,-0.08447044203057885,0.7389944815076888,-0.03055302333086729,-0.30621365178376436,0.3714208253659308,0.3905685003846884,0.2717708586715162,-0.7104735020548105,0.7610972304828465,-0.14642860926687717,0.09806719562038779,-0.5399883314967155,-0.85894889337942,0.5279613002203405,0.6810631756670773,0.0736330091021955,-0.39201587066054344,0.5128850038163364,-0.05192602938041091,0.5706345136277378,-0.7785333683714271,0.29876737482845783,-0.9046945367008448,0.48076291708275676,0.9627723367884755,0.4777751457877457,0.7101465938612819,-0.44761965749785304,0.7723886398598552,-0.8253356022760272,-0.2975392136722803,0.14889694564044476,0.6797461975365877,-0.38580564642325044,-0.026760288514196873,-0.9885262744501233,-0.934864285402,0.5733675612136722,0.5772679820656776,0.6032948573119938,0.9380037132650614,-0.6170464255847037,-0.21068925596773624,0.4144574557431042,-0.04483605781570077,0.7570344726555049,-0.041119600646197796,0.7287685517221689,0.6857298268005252,0.1260202950797975,-0.8577250768430531,-0.8954550316557288,-0.9314592867158353,0.9173918534070253,0.8391100787557662,-0.45606493670493364,0.12358441855758429,0.26878837309777737,0.8142537986859679,0.8253748337738216,-0.38950912235304713,-0.6155965458601713,-0.69876270275563,0.7969450848177075,-0.03134374972432852,0.968698606826365,-0.6663607591763139,0.6464226953685284,0.5180469700135291,-0.1929447865113616,-0.9197609662078321,-0.5280269864015281,0.8735583033412695,0.7731896075420082,0.5258333901874721,-0.8732347642071545,-0.9292818023823202,-0.3850812208838761,-0.47355007426813245,0.7804964720271528,-0.2613469953648746,0.4356395644135773,-0.32072298508137465,-0.12868371326476336,0.8803484314121306,-0.44981618924066424,-0.8651104946620762,-0.8591998973861337,-0.008319666609168053,-0.04305685264989734,-0.05362614244222641,0.8555708080530167,-0.8436555634252727,-0.1645635706372559,0.1381095154210925,0.8250086731277406,-0.08549532573670149,-0.006409438792616129,0.8196693598292768,-0.4029362974688411,-0.14496455900371075,-0.5105207245796919,0.6988618285395205,-0.024230862502008677,0.43299995455890894,0.7869903715327382,-0.674940241035074,0.42949032923206687,-0.703898492269218,-0.614912626799196,-0.5054834526963532,0.8571493965573609,0.11455376679077744,-0.403620436321944,-0.8484690613113344,0.5957101085223258,0.5760477278381586,0.2748201512731612,-0.3464696519076824,-0.9875010922551155,-0.010942671913653612,-0.23318810667842627,0.9964143820106983,-0.35034747002646327,-0.7606335994787514,-0.32527817972004414,-0.5345305106602609,-0.9236831278540194,0.5224721976555884,0.07423076219856739,-0.2268110648728907,-0.2718386477790773,-0.10735587263479829,0.7617618162184954,-0.30267391400411725,0.7391039025969803,-0.9608466397039592,-0.10459982929751277,-0.8569534765556455,0.8246906506828964,-0.6920694676227868,-0.9633845686912537,0.9945662426762283,-0.6542703420855105,-0.4955180212855339,-0.7277008770033717,-0.002687355037778616,-0.038085782434791327,-0.7794102458283305,0.6626533167436719,0.15259984135627747,-0.4334508227184415,-0.3629693575203419,0.7842078683897853,-0.2728891568258405,0.03351688664406538,-0.007361686788499355,-0.21466459706425667,-0.47930214973166585,-0.5420382949523628,0.5747166746295989,-0.02621948393061757,0.29499313002452254,-0.39946436509490013,0.5618676887825131,-0.0568491043522954,0.21011078311130404,0.19773019989952445,-0.5136059988290071,0.2667553089559078,0.2060857154428959,0.26533270720392466,0.4433104572817683,-0.3447618340142071,-0.8382323537953198,-0.6537093254737556,-0.44676688546314836,-0.9261829569004476,-0.23087018262594938,-0.9066764544695616,-0.36103664711117744,-0.6376219596713781,0.29730619210749865,0.15902175894007087,0.8332063150592148,0.8090289658866823,-0.8506932351738214,-0.3644950492307544,0.12502307258546352,-0.455314327031374,-0.5495682936161757,0.15220298990607262,-0.2892015748657286,0.5156278111971915,0.5837361542508006,-0.7743935822509229,0.20720138354226947,-0.7047090814448893,-0.8760944153182209,0.06783000798895955,0.9938993202522397,-0.5077753732912242,-0.5562613690271974,-0.032377499621361494,0.892442474141717,0.9333052076399326,0.9912927355617285,-0.8592644426971674,-0.8712815847247839,-0.17309161322191358,-0.4190256749279797,0.7103933012112975,-0.7963052298873663,0.5731796808540821,-0.21790480380877852,-0.5011738333851099,-0.7447006753645837,0.9692418780177832,0.09749447274953127,0.7399642770178616,-0.7075442308560014,-0.7765186955220997,-0.07353515038266778,-0.33082510624080896,-0.7911645420826972,0.10751439025625587,0.9943422530777752,0.9627599380910397,0.3850095830857754,0.03797486051917076,0.6535422494634986,-0.8409496820531785,-0.7288559023290873,-0.4421119075268507,-0.8193856184370816,-0.23467340506613255,0.3009446798823774,0.11184224858880043,0.878545131534338,-0.6973696360364556,-0.8544984990730882,-0.41384979756549,0.8596691424027085,0.748896268196404,-0.8909540460444987,-0.8963704355992377,-0.7046084883622825,-0.4992777546867728,0.9211734146811068,-0.8769303113222122,-0.08634704863652587,0.019536848179996014,0.752596665173769,-0.9125499282963574,0.6556978235021234,-0.9273342271335423,0.6752702812664211,-0.7747245403006673,-0.8579114843159914,0.41849601408466697,0.516195307020098,-0.13083019480109215,-0.4272364638745785,-0.5806840029545128,-0.19930471619591117,0.8389473361894488,-0.6610630159266293,-0.19147135596722364,0.7892838628031313,0.9380186749622226,0.6017013275995851,0.14132466120645404,-0.5137779307551682,0.2757872589863837,-0.10214940644800663,-0.9657549443654716,-0.782891035079956,0.5740695409476757,-0.03031746158376336,0.9242742848582566,-0.31129871495068073,0.3402272081002593,-0.9097159639932215,0.7081723334267735,0.5031841797754169,0.007846697233617306,0.43911323323845863,0.8103514132089913,-0.015891767106950283,-0.606322128791362,0.2612250130623579,0.9666923908516765,-0.1274427780881524,-0.32041095243766904,0.47986806044355035,-0.584286040160805,-0.7803215947933495,0.44143626373261213,0.9448966546915472,-0.36247906601056457,0.800368751399219,-0.43448773212730885,-0.932996975723654,0.4136762358248234,0.15843362407758832,0.3280858090147376,0.40536807104945183,-0.009168588556349277,0.5697083207778633,0.5468394877389073,0.3377557615749538,-0.561639241874218,0.18228056747466326,-0.9703936874866486,0.5417892513796687,-0.32509550591930747,-0.18088976154103875,0.30882640555500984,-0.8266826448962092,0.6586892032064497,0.5505949961952865,0.8671728274784982,-0.692334667313844,0.6269027343951166,0.26304779993370175,-0.21942141093313694,-0.5696954019367695,-0.7061001542024314,0.25329169956967235,0.5975171346217394,0.7106497217901051,-0.6123014860786498,-0.24479109002277255,0.27967087598517537,0.7501987940631807,-0.5182120837271214,-0.9469990050420165,0.6907024951651692,0.832479355391115,0.6102494774386287,0.11320114601403475,0.33007574873045087,0.5211340221576393,0.5884461612440646,-0.8740104078315198,-0.6620071511715651,0.09417046746239066,0.3908945661969483,0.11314691137522459,0.07107816357165575,0.8830541898496449,-0.4253465267829597,-0.023893872275948524,0.4423723262734711,0.6004108372144401,0.7394505343399942,0.8322839704342186,0.8448394876904786,-0.5230595325119793,0.4118265728466213,0.2190858582034707,0.2810011929832399,0.24917619582265615,-0.8219413990154862,-0.31321077374741435,-0.23764589754864573,0.1357156033627689,-0.14780832547694445,0.3771656402386725,-0.5190693717449903,0.19601101707667112,0.8712213793769479,-0.673767123837024,-0.29393819253891706,0.8221680261194706,-0.2111947569064796,0.36290688486769795,-0.5066626663319767,-0.7142865909263492,0.25138748344033957,-0.2186555308289826,0.8136832383461297,0.04713596310466528,-0.15025981422513723,-0.05322343669831753,0.7935746372677386,0.8366901557892561,0.4055709522217512,0.6691095815040171,-0.4174507949501276,0.1398525619879365,0.8236257242970169,0.21175213996320963,-0.009818880818784237,0.7929613864980638,0.032266778871417046,0.3710593655705452,0.01890264404937625,0.7229385641403496,-0.4712687390856445,0.5729993833228946,-0.7710935571230948,0.7281939550302923,-0.41836742870509624,0.7399204536341131,-0.8828247119672596,-0.6806583912111819,-0.4081806866452098,0.16780867986381054,-0.3629481210373342,0.7675884161144495,0.6768576982431114,-0.28881155559793115,-0.6844690921716392,-0.4003157215192914,0.5257380651310086,-0.8919605449773371,-0.2030362323857844,-0.05902223568409681,-0.027692885603755713,0.08832386881113052,-0.5556235671974719,0.21113275736570358,-0.921864926815033,-0.44039111491292715,-0.4563209037296474,-0.43640533136203885,-0.6179135898128152,0.03134003048762679,-0.5212124702520669,-0.6024881144985557,0.05185909615829587,0.35967851150780916,-0.6206564861349761,-0.834614749532193,-0.5666289706714451,-0.873169235419482,0.22926328796893358,-0.17240752605721354,-0.2549275625497103,-0.891402633395046,-0.6991847893223166,0.2231821659952402,-0.8496784181334078,-0.25843312265351415,-0.8141943784430623,-0.9715153723955154,-0.33979924162849784,-0.046394674107432365,0.45163626223802567,-0.7273464468307793,-0.3422093652188778,-0.858783395960927,-0.5183988329954445,0.9616996827535331,0.18317603413015604,0.47228400968015194,0.047074285335838795,-0.4558643759228289,-0.40591689851135015,-0.5256038615480065,-0.03955231187865138,0.6090971515513957,-0.8687391649000347,0.5029084756970406,0.21744499588385224,0.6943227536976337,0.7441413849592209,-0.275942447129637,0.9724117512814701,-0.5526187089271843,-0.5628282260149717,-0.6498552840203047,-0.5521633788011968,-0.6771695083007216,-0.5813855957239866,0.961425353307277,0.13701214594766498,-0.24066368909552693,0.9868265357799828,-0.49468274554237723,0.04991372022777796,-0.8819595971144736,0.2255611764267087,-0.44253708701580763,0.43587200436741114,-0.10618271911516786,0.7612785929813981,-0.9319781111553311,0.06190153630450368,-0.537490239366889,0.38127479050308466,-0.5450507723726332,-0.6597582162357867,-0.0963604124262929,-0.8671358348801732,0.42318576527759433,-0.7512401537969708,-0.5670877946540713,0.1398527454584837,-0.6412463518790901,0.3244844335131347,-0.26648572366684675,-0.9096457227133214,0.002652327995747328,-0.22438448341563344,-0.03724997863173485,-0.7962438929826021,-0.1514331349171698,-0.904615112580359,0.02544633112847805,0.38761330768465996,-0.09801114862784743,0.8685074248351157,0.36191443586722016,0.9959720093756914,0.7095162267796695,0.7303149872459471,-0.7106411545537412,-0.5082340575754642,-0.7228390830568969,0.4742450909689069,0.64911724999547,0.9462165455333889,0.6252022683620453,-0.9416941534727812,0.11766547290608287,0.402843130286783,-0.631691450253129,0.7509779017418623,0.8574515078216791,0.5211586146615446,-0.36863356083631516,0.6358796157874167,0.66373051982373,-0.350816089194268,-0.7123440187424421,-0.7686596135608852,-0.12207773327827454,0.9430932425893843,-0.5665706531144679,-0.8420033063739538,0.06573600089177489,0.4373386218212545,-0.06383943324908614,0.18904913496226072,-0.5612324243411422,-0.9755462445318699,-0.8991052405908704,-0.6367673664353788,0.45775470696389675,0.8012632196769118,-0.8516127937473357,0.8569317115470767,0.5415027886629105,0.06775561021640897,-0.5747935767285526,-0.5299123176373541,0.6096058967523277,0.9600068936124444,-0.9805154125206172,-0.11906542675569654,-0.5908724498003721,-0.9795999214984477,0.8024248089641333,0.9862068356014788,-0.35073593724519014,0.37199705047532916,-0.6373904463835061,0.22572760004550219,0.5441918266005814,-0.5491509572602808,0.12342710234224796,-0.390649929177016,0.5568955559283495,-0.17531267367303371,-0.8339409395121038,0.7100658481940627,-0.8323329286649823,-0.8656203588470817,0.3115316438488662,0.48665249813348055,-0.5423685731366277,0.5887478343211114,-0.35122500313445926,0.7763726655393839,-0.8589762765914202,0.9934173934161663,0.35066030267626047,-0.5784949804656208,-0.3027407433837652,0.36356563260778785,0.09895743010565639,0.871187602635473,-0.7448980882763863,-0.3862218256108463,-0.493905505631119,0.6756585133261979,0.04775547794997692,0.002912196796387434,-0.49550001975148916,0.05875617126002908,0.12306164437904954,0.8276603440754116,-0.39631043234840035,0.5751308067701757,0.7355836373753846,0.5068222284317017,-0.6245468249544501,0.3267874955199659,-0.6300238943658769,0.8665769430808723,0.3705496140755713,-0.18618207843974233,-0.39930880768224597,-0.8379922513850033,0.9647879730910063,-0.796735696028918,-0.4085999159142375,-0.3552274261601269,-0.20103579387068748,-0.7709672614000738,0.528220968786627,-0.15715540386736393,-0.33879164326936007,-0.5812056520953774,-0.1348007214255631,-0.6941065578721464,-0.44537830958142877,-0.24409587495028973,-0.10426792036741972,-0.3779293023981154,0.23152675805613399,-0.5660862461663783,-0.32324811071157455,-0.14370100619271398,0.7667323951609433,-0.6989777204580605,-0.24367271456867456,-0.9969301363453269,-0.38863180577754974,0.40478850016370416,-0.07704775780439377,-0.150962567422539,-0.14039032813161612,-0.47032049717381597,-0.5759514048695564,0.7442134176380932,0.7411451190710068,-0.06251887511461973,-0.5256922282278538,0.6538702468387783,0.052223054226487875,0.42284917877987027,0.254410978872329,0.6179961119778454,0.749255585949868,0.6330148074775934,-0.6346046263352036,0.6417021565139294,-0.9106774707324803,0.8450963674113154,-0.4328873981721699,0.7550066956318915,-0.9003655570559204,-0.4972222847864032,-0.42595821246504784,0.8387085474096239,0.8227831330150366,0.8781073386780918,0.9142673583701253,0.1255813529714942,0.10501746041700244,0.6581760058179498,0.6903406213968992,-0.13840798940509558,0.2095269006676972,0.5814122851006687,0.36235305946320295,-0.376044190954417,0.19690079893916845,-0.5828392100520432,0.4289437038823962,-0.37014623871073127,-0.3498531077057123,0.4070446230471134,0.9375126804225147,0.28705554362386465,-0.24052915163338184,-0.27768594212830067,-0.8686627699062228,-0.504897075239569,0.3998776194639504,0.26137813413515687,0.7680302932858467,0.3447705782018602,-0.16097755264490843,-0.06890270626172423,-0.597357090562582,0.495001002214849,0.19331325590610504,-0.6304170554503798,-0.5506342831067741,-0.7733997572213411,-0.6702407416887581,-0.6399030741304159,-0.280845636036247,0.48736943677067757,-0.8361716093495488,-0.44471822772175074,0.7766332817263901,-0.7236685361713171,-0.9283136776648462,-0.9724272564053535,0.2151714521460235,0.041574150789529085,-0.3926308434456587,0.5232414347119629,0.2708926131017506,-0.1287526898086071,0.5583440205082297,-0.8321178834885359,-0.6309366570785642,-0.6424993905238807,0.36992313945665956,0.5931096011772752,-0.465053369756788,0.7542860172688961,0.4634235454723239,-0.6356670982204378,-0.1593808070756495,-0.7353511317633092,-0.23760477965697646,0.8207107516936958,-0.2333430196158588,0.6000605802983046,0.08842816855758429,-0.6570001528598368,-0.9606255679391325,0.9573976886458695,-0.09168522665277123,-0.8904513251036406,0.24966982007026672,0.9798962576314807,0.666782742831856,-0.5065454030409455,-0.08364064991474152,0.7331957262940705,-0.17241599829867482,-0.012586766388267279,0.003028134349733591,0.43645977368578315,-0.5365779991261661,-0.9654514081776142,-0.5928200385533273,-0.6929228925146163,-0.6233476186171174,0.5744366124272346,0.5152730699628592,-0.9528764863498509,0.6624329453334212,0.1730093597434461,-0.9111340194940567,0.6003252542577684,0.2420184356160462,-0.5834071701392531,0.795909199398011,-0.2845120248384774,0.6615876783616841,0.8450425905175507,0.37597909662872553,0.1334166768938303,0.4271271717734635,-0.23749622981995344,-0.6351135829463601,-0.7878723470494151,-0.6864363849163055,0.4922678451985121,0.26246290979906917,0.2473708731122315,-0.09343368327245116,-0.6256728093139827,-0.24381609680131078,-0.21164221689105034,0.9508806788362563,-0.31678992230445147,-0.41985204443335533,-0.35088868951424956,-0.22042813152074814,0.011871952097862959,-0.20708484388887882,0.6208557495847344,-0.6560940574854612,0.21950201876461506,-0.5240342835895717,-0.2037278269417584,-0.19365328503772616,0.48344788467511535,-0.3764301738701761,0.9577550906687975,0.46659601805731654,-0.9499734658747911,0.4464200478978455,-0.01715938188135624,-0.33872291166335344,0.5693211518228054,0.6785499807447195,-0.43953137192875147,0.34053100692108274,-0.8235387215390801,0.7222360889427364,0.46767397271469235,0.012454666197299957,0.25035949144512415,-0.5921806860715151,0.042454021982848644,-0.1871670908294618,-0.09007746865972877,-0.5808586562052369,-0.8022892083972692,-0.5726591059938073,-0.9835828393697739,0.5822914028540254,0.2228731894865632,0.7975161937065423,-0.15355982072651386,-0.8066913112998009,0.4079218124970794,0.36949088610708714,-0.19195899926126003,-0.09462679922580719,0.2510565067641437,-0.582800938282162,0.5079288105480373,-0.20221400586888194,0.948699195869267,-0.29839042806997895,-0.10383658017963171,0.8131046271882951,-0.5199370323680341,0.8767292317934334,-0.7970781582407653,0.1562142027541995,0.16569094313308597,0.938758360221982,0.42894732719287276,-0.08188673155382276,0.888643289450556,-0.002299631480127573,0.7730138963088393,-0.3264760095626116,-0.1878111595287919,0.572334379889071,0.2683708448894322,-0.5621569254435599,0.4955628626048565,0.9096798556856811,-0.09096868708729744,-0.6370367673225701,0.9508762704208493,-0.5505622867494822,-0.4606123170815408,-0.8772934321314096,-0.015519144013524055,-0.8610673169605434,0.7670878772623837,0.5064407717436552,-0.14954076148569584,-0.9498134138993919,0.8911302462220192,0.39651062805205584,-0.6696569812484086,0.8300241399556398,0.047133959364145994,0.27702222391963005,-0.7593334834091365,0.19102005753666162,-0.011730614118278027,-0.22068604500964284,0.40895111532881856,-0.41489167464897037,-0.35871915658935905,-0.6119609526358545,-0.08292236039415002,0.33042351622134447,0.2288437052629888,0.30023860232904553,-0.8572422475554049,0.2624248149804771,-0.4145738813094795,-0.21735171088948846,-0.04835518263280392,-0.3861717628315091,0.7624285477213562,0.8208986688405275,-0.8448484567925334,0.6239582300186157,-0.5627623237669468,0.42468189680948853,-0.01565691363066435,0.6746333120390773,-0.7829309892840683,0.15277100447565317,-0.507638385053724,-0.21778841130435467,-0.974934199359268,-0.25715833995491266,-0.6783267669379711,-0.5409250776283443,-0.8895348086953163,0.5595574919134378,-0.8489469769410789,-0.4428422409109771,-0.16280094161629677,-0.9750702315941453,-0.7910655410960317,-0.9912510085850954,-0.5537398881278932,-0.6207810812629759,0.22488305484876037,-0.7383764879778028,0.301938864402473,0.7458646185696125,-0.8813054813072085,0.7965192180126905,-0.6510664741508663,0.7839711126871407,0.09877277771010995,0.6880556880496442,0.21938054403290153,0.03471541218459606,0.07777573447674513,-0.06147739104926586,-0.4614130281843245,0.7611645306460559,-0.29688722314313054,0.7995232231914997,-0.5133417057804763,-0.38030830258503556,0.8131646863184869,-0.8681894526816905,0.8857912397943437,-0.937085734680295,0.24360849987715483,0.036436825059354305,-0.04661280335858464,0.15596271259710193,0.10933188209310174,0.8398790396749973,0.4591327914968133,0.2438436714001,-0.5424016239121556,0.7782215354964137,0.7875635330565274,0.9580884324386716,-0.41149085061624646,-0.28957410156726837,-0.30106264166533947,-0.5983224725350738,-0.9352733450941741,0.15241896407678723,-0.7725238325074315,-0.7842759592458606,0.6097692609764636,0.3854787074960768,-0.04231746215373278,0.3639833605848253,-0.231611720751971,-0.7290443750098348,-0.1715683899819851,-0.22131664585322142,0.0704487138427794,-0.9200222720392048,0.3960844245739281,0.9079329618252814,-0.08565205754712224,-0.5858214814215899,0.38557414477691054,-0.2911558775231242,0.9426194680854678,-0.8716344158165157,-0.2932850047945976,0.2582395803183317,-0.5642835330218077,0.32726303627714515,-0.7461094651371241,-0.7331489818170667,-0.5227240198291838,-0.045627647545188665,-0.34826567862182856,0.20423466200008988,-0.9952727304771543,-0.43311215145513415,0.9089829283766448,-0.8335448512807488,0.8031766484491527,-0.4189389329403639,-0.9205792509019375,-0.700725813396275,0.050574279855936766,0.5782264512963593,0.1289014401845634,0.8815341624431312,0.7050272952765226,0.7248941604048014,0.43259591422975063,-0.5681674117222428,0.11316078947857022,0.7130127958953381,0.3078913604840636,-0.5712497103959322,-0.5114421369507909,-0.1502789743244648,-0.36404193565249443,0.9885145938023925,0.8370830165222287,0.927208362147212,0.028674482833594084,0.6395116173662245,-0.4408958530984819,0.5409707557410002,-0.43336864234879613,-0.3803527099080384,-0.18795770918950438,0.7452092762105167,-0.6904332218691707,0.4162568273022771,-0.9608336607925594,0.9460387458093464,0.3382023433223367,-0.9259639177471399,0.6753255520015955,0.6047932277433574,0.006656280718743801,-0.12593618780374527,0.5465041501447558,-0.2507014125585556,-0.116176285315305,-0.7316694012843072,0.1681270278058946,-0.1488471799530089,-0.9588536457158625,0.1470844717696309,0.10887625208124518,0.11410860577598214,0.06116282334551215,-0.4463301124051213,-0.3747024475596845,0.5143298525363207,-0.5454836850985885,0.7533615892753005,0.20394290518015623,0.9693497032858431,0.48997648479416966,0.27321443893015385,-0.28768853982910514,-0.024710622616112232,-0.4764721356332302,0.684071215800941,0.697018678765744,-0.4438828849233687,0.9954323014244437,-0.16018424276262522,0.26706625800579786,-0.024920723401010036,0.8459861353039742,0.6576399221085012,0.4123374465852976,0.7065477487631142,0.19067153939977288,0.7848555967211723,0.6213215389288962,-0.8352722781710327,-0.6510240486823022,-0.18295077560469508,0.8788499315269291,0.8941875407472253,-0.2763040643185377,-0.07479203585535288,-0.8855334017425776,-0.0853995718061924,-0.703682619612664,-0.5043659750372171,0.4886084860190749,0.9521142840385437,0.0777625166811049,-0.4497926183976233,-0.98511664243415,-0.06827539252117276,0.3840821129269898,-0.690588123165071,0.4526179884560406,0.8587398873642087,0.8148687514476478,-0.8227547314018011,-0.6341233844868839,-0.9202840714715421,-0.5503220506943762,0.5116043132729828,-0.5748578435741365,0.5927349394187331,0.6237269388511777,-0.25668827863410115,-0.43292753072455525,0.8434040495194495,-0.3285176190547645,0.40249886363744736,0.7489062626846135,-0.6065106405876577,-0.6110545243136585,0.6719315969385207,-0.08301676576957107,0.6821042792871594,0.6872360869310796,-0.33562487084418535,0.13065251475200057,0.519665664061904,-0.27726513985544443,0.8204091778025031,-0.19245401164516807,0.9018818959593773,0.35690291691571474,-0.8978512715548277,0.37260264018550515,0.4533682302571833,0.5118314577266574,-0.21635533683001995,-0.18788598151877522,-0.21344200195744634,0.08934842422604561,0.5724584651179612,0.5069899335503578,0.292771621607244,0.4274413180537522,0.5753053929656744,0.00840246444568038,-0.05682441685348749,0.9926733798347414,0.6393405455164611,-0.992748771328479,-0.5884637860581279,0.13851314364001155,-0.22664018534123898,-0.3393850945867598,-0.1582115413621068,-0.05345614207908511,-0.7656177845783532,-0.1695230663754046,0.8423172323964536,-0.773773932363838,0.5214746394194663,0.10535926884040236,-0.9048446086235344,0.3922573854215443,-0.4816686133854091,0.2333139698021114,0.852318577002734,0.2250309195369482,0.9603944784030318,-0.8146972977556288,-0.795518004335463,0.8461691425181925,-0.8265379224903882,-0.8515102164819837,0.8031320837326348,0.3781297458335757,-0.9723660326562822,0.8834464577957988,-0.616020621266216,0.0062564159743487835,0.7327172625809908,0.09184966050088406,-0.5079260226339102,0.4935706229880452,-0.6477078050374985,0.07624957710504532,0.6605913792736828,-0.3110322551801801,0.20119299413636327,-0.7245864402502775,-0.5006235232576728,-0.5602529505267739,-0.7204750012606382,-0.5416981810703874,0.16142591461539268,-0.9061408350244164,-0.24534106766805053,-0.2600637706927955,-0.3610667265020311,0.6812323406338692,-0.7720675161108375,0.0010884026996791363,0.6721316170878708,-0.5000902810133994,-0.39316164376214147,0.6716235955245793,0.35080478386953473,0.3066821643151343,0.3036175398156047,-0.37961002718657255,-0.42999399453401566,0.30697566736489534,-0.06514784693717957,-0.9633817649446428,-0.946861831471324,-0.9086184175685048,0.6281454963609576,-0.16436477238312364,0.6406286130659282,-0.23202346172183752,-0.1673596128821373,0.2952217706479132,0.3724043327383697,-0.28173165675252676,0.3690480892546475,-0.08167935535311699,-0.08678447920829058,-0.7347000911831856,0.06321475747972727,0.5569672482088208,-0.026166816242039204,0.5835229959338903,0.11192725412547588,0.9616011632606387,-0.05494434479624033,0.8177126958034933,-0.9661326524801552,-0.29225260159000754,-0.4603664339520037,0.8766670818440616,-0.6410135854966938,-0.6720057311467826,-0.1548071512952447,0.10708431666716933,0.19385443395003676,0.2306652464903891,0.841757922898978,0.8425354529172182,-0.5107262339442968,0.1024190578609705,0.9711693432182074,0.5653858254663646,-0.6213009171187878,0.1689424030482769,-0.34659034851938486,-0.6465106140822172,-0.20854050759226084,-0.052346344105899334,-0.6888653035275638,-0.5226936894468963,0.6332968515343964,-0.6640847302041948,-0.20988868130370975,0.04895765986293554,0.6550708054564893,0.8868547840975225,0.0709597640670836,0.7019988615065813,0.9540886338800192,0.757419042289257,-0.23186571383848786,-0.32932046614587307,0.6999544990248978,0.8484053639695048,0.6836987328715622,-0.844986077863723,-0.5264888359233737,0.9362765792757273,-0.9492553090676665,0.676279217004776,0.6068617752753198,0.7597002522088587,-0.05457117920741439,0.875524281989783,0.9950657258741558,-0.2892984701320529,-0.5621993318200111,0.2747279815375805,-0.8662541499361396,0.6736768642440438,0.2532684011384845,0.0006096074357628822,-0.16063691722229123,0.2056262898258865,-0.9293540031649172,0.6478069806471467,0.8194311470724642,-0.36600045720115304,-0.44595600105822086,0.6710136812180281,0.4018274387344718,-0.2873342679813504,-0.9252435700036585,0.34226509975269437,0.5832979250699282,-0.0004912163130939007,0.19092546263709664,0.7410625158809125,0.46025336161255836,0.8773822383955121,0.8952329531311989,-0.606688863132149,0.5140568758361042,-0.7884771609678864,-0.23713570972904563,0.17254182696342468,-0.02519185747951269,0.8197536785155535,-0.1522478824481368,0.8452276131138206,0.31159803457558155,-0.5243444447405636,-0.5734466938301921,0.23499443754553795,0.9000990958884358,-0.263072463683784,0.42433969071134925,0.13360837381333113,0.7965963762253523,-0.556330967694521,-0.46553423115983605,0.9678965229541063,-0.2195923370309174,0.30878197168931365,0.10514787072315812,-0.06869092537090182,0.3000282561406493,-0.8018822772428393,-0.8823859398253262,-0.8690935969352722,-0.6518142274580896,0.5627101240679622,0.25238421838730574,-0.8284386298619211,-0.954702272079885,-0.20028429850935936,0.3232602900825441,-0.5908087883144617,0.7688947818242013,0.3444397686980665,0.23682952718809247,0.19200582429766655,0.7958417371846735,-0.6666991389356554,-0.5134963626042008,-0.5271759130991995,0.46466780733317137,0.2281044451519847,0.5065475981682539,-0.17734762374311686,-0.2629696629010141,-0.21626805188134313,0.39110579434782267,0.4442467815242708,0.7694818126037717,0.7966156806796789,-0.16711464058607817,-0.1501045497134328,0.3463467382825911,0.1248867018148303,-0.6108085848391056,-0.7214411804452538,0.4512331811711192,-0.7229883316904306,-0.20281552150845528,-0.664828977547586,0.25418614922091365,0.6894401321187615,0.738372465595603,0.8442094018682837,0.34596081683412194,-0.04874632926657796,0.2875946410931647,0.7495829714462161,0.27231017872691154,-0.9470382076688111,0.3709163670428097,-0.5162665620446205,-0.8071849285624921,0.10764289367944002,0.8538733664900064,0.7111550779081881,0.84259287500754,0.006562993861734867,-0.5549841290339828,0.9758599768392742,-0.2966808686032891,0.7477217768318951,-0.5817062868736684,-0.5438008629716933,-0.04581732535734773,-0.19985575787723064,0.01525665307417512,0.964391524437815,0.41443974105641246,0.7801640606485307,-0.9043195014819503,-0.15737702744081616,-0.2145367986522615,-0.04412369383499026,0.7860231474041939,-0.34223855566233397,0.8269971790723503,-0.49618961522355676,-0.32401828188449144,-0.133910171687603,-0.02771651279181242,-0.7691323822364211,0.9796939347870648,0.34919774904847145,0.22864131443202496,-0.6102103441953659,0.1339045581407845,-0.0071593960747122765,0.45740134082734585,-0.44472213042899966,0.20951649639755487,0.1694141486659646,-0.36141018755733967,0.4323840495198965,-0.38538988726213574,0.9306295495480299,0.7940986594185233,0.539220558013767,-0.2107058041729033,0.10353805962949991,0.12292484939098358,0.43903445918112993,0.38880443200469017,0.5976820886135101,-0.48843804374337196,0.46432748483493924,0.6175460936501622,0.9065175564028323,-0.615122839808464,0.17167129926383495,-0.4641525698825717,-0.8606601478531957,0.8609334570355713,0.3166319401934743,0.21865522442385554,-0.09449488809332252,0.9713676269166172,-0.9033922855742276,-0.2457134728319943,-0.12047798652201891,-0.5455999230034649,0.6669072275981307,-0.49632343649864197,-0.18196167517453432,0.6324008321389556,0.7123277969658375,0.8543513673357666,-0.8826247132383287,-0.13309316663071513,0.4917422770522535,-0.10249126749113202,0.43656271044164896,-0.6488125235773623,-0.994655610062182,-0.545637724455446,0.6287967921234667,0.45596036640927196,0.6532052992843091,0.5552060203626752,0.2516442472115159,-0.9523978838697076,-0.6380336619913578,-0.010502547025680542,-0.9857353651896119,-0.9085861425846815,-0.35312854358926415,0.34065876761451364,0.5918577294796705,0.5755955339409411,0.9156229319050908,0.4263809472322464,0.9272159063257277,-0.22619775542989373,0.023513125255703926,-0.6780151166021824,-0.051279384177178144,0.6032259804196656,0.24695364758372307,0.4298773561604321,0.2880415488034487,-0.10939126275479794,-0.9587859851308167,0.49087270302698016,0.1495582233183086,0.6640584208071232,-0.00124435406178236,-0.4489506329409778,0.10859251115471125,0.9994502156041563,0.5290850172750652,-0.6686100759543478,-0.8429399724118412,0.23699091700837016,0.4357223492115736,-0.5448535331524909,0.5028501357883215,0.32418338721618056,0.055490618105977774,-0.42495246045291424,-0.017130544409155846,0.6694484325125813,0.8635868718847632,-0.5883203791454434,-0.14134205086156726,-0.1175745646469295,-0.02147466130554676,0.01067333109676838,0.710425250697881,0.07311984617263079,-0.048603287898004055,0.11575449770316482,0.12478579254820943,0.03241883497685194,0.9362591817043722,-0.16978374170139432,-0.5732432543300092,0.861918865237385,0.2990089585073292,0.5395751274190843,0.37266993522644043,-0.09130867663770914,0.04002139763906598,-0.4456045161932707,0.046384777408093214,0.23519976856186986,-0.9655773998238146,0.5280204829759896,-0.9832305232994258,0.16705026337876916,-0.709911912214011,-0.07211556239053607,-0.5673119979910553,-0.13262430019676685,0.31956116994842887,-0.728449247777462,-0.5802389727905393,-0.3514573657885194,0.07940159877762198,-0.09067279286682606,-0.1420088466256857,-0.5154497753828764,-0.82299327198416,-0.26983477640897036,0.5302139241248369,0.5951691986992955,0.41368891671299934,0.6724723721854389,0.399479947052896,-0.8120554806664586,-0.16453900327906013,-0.01098840544000268,0.5010096817277372,-0.29917431343346834,-0.5210596201941371,-0.7209972799755633,-0.9605511575937271,-0.5167546351440251,-0.3042856971733272,-0.02103809779509902,-0.7097114948555827,0.5081607783213258,0.09088332718238235,-0.27109790220856667,0.7778633390553296,0.12547975778579712,-0.28028827579692006,-0.5705683818086982,-0.8896410427987576,0.9703190089203417,0.7060502800159156,-0.10770738963037729,0.48598350770771503,0.2309808786958456,0.37523084226995707,0.38827307149767876,0.8267743708565831,0.3976264256052673,0.7380871344357729,0.6946918787434697,-0.71659986814484,-0.2655414240434766,0.9244845472276211,-0.6459602261893451,0.2285547647625208,0.09026696113869548,0.4727122369222343,0.25549932941794395,-0.947456652764231,-0.12759478064253926,-0.6058028521947563,-0.7957618623040617,-0.9470831071957946,0.9573497730307281,0.8467762800864875,0.28949267556890845,-0.7968770079314709,0.502267187461257,0.48297696793451905,-0.3704226054251194,0.30027516605332494,0.13200778746977448,0.44789404748007655,0.8660427327267826,-0.24958498124033213,-0.6645245961844921,0.22077153902500868,-0.42201433377340436,0.6522476640529931,-0.4939280981197953,-0.17670797742903233,0.5444474667310715,-0.39117601746693254,0.2504965583793819,0.8846524930559099,-0.008912134449928999,-0.5933105777949095,0.601033098064363,-0.8029147973284125,0.605127573478967,0.2987476452253759,0.7435491685755551,0.7159867747686803,0.6832837495021522,-0.3799646203406155,-0.4736379417590797,-0.3706053444184363,-0.7012720662169158,0.21367444563657045,-0.7715722876600921,-0.13028230611234903,0.14318280201405287,0.08942620875313878,-0.1653481968678534,0.3056290652602911,0.1609678603708744,0.42825583927333355,0.3934354819357395,0.2974354736506939,0.4256322546862066,-0.1599411591887474,-0.18907828675583005,0.32888146257027984,-0.25965968193486333,-0.3058065678924322,-0.9611142305657268,-0.22199699096381664,-0.13425947725772858,-0.8735472611151636,0.25373112643137574,0.16987061547115445,-0.35811390168964863,0.29603316774591804,0.2200144394300878,-0.650331309530884,0.18642180180177093,0.43447772739455104,-0.6707127285189927,0.15762696601450443,-0.6718037505634129,0.7745250682346523,0.47628817334771156,-0.1280198721215129,-0.2812513168901205,-0.3734491295181215,-0.4486128552816808,0.7217298494651914,-0.25064606266096234,-0.9722244828008115,0.9190898020751774,-0.27836541133001447,-0.42668818589299917,0.9198891394771636,-0.48984535736963153,0.12324829446151853,-0.5426838626153767,-0.5371307954192162,-0.013752717059105635,0.5338084539398551,-0.6532385121099651,-0.010336781851947308,0.9176159990020096,-0.3112687775865197,-0.13195212511345744,-0.6647748150862753,0.04061832604929805,0.2798626897856593,-0.5910773747600615,0.14633431332185864,0.4067062120884657,-0.37530043674632907,-0.5472542750649154,-0.8534489581361413,-0.8818733571097255,-0.32949458342045546,-0.8808275028131902,-0.6905943104065955,-0.841961428988725,-0.16304822964593768,0.1506345523521304,0.6948999939486384,0.2561381901614368,-0.8926651263609529,0.5544307301752269,-0.2780749285593629,0.1692369906231761,-0.7362537467852235,-0.5144329681061208,0.7945179734379053,0.7752559990622103,0.921168071217835,-0.07244962826371193,0.21489551849663258,-0.695933900307864,-0.1793259414844215,-0.6686586108990014,0.9986544707790017,-0.3964029233902693,-0.9013536721467972,0.1576414187438786,-0.3179150256328285,-0.7536943354643881,0.5237097926437855,-0.09601510083302855,0.4938162877224386,-0.19001931743696332,0.06790813198313117,-0.4582467465661466,0.12617918755859137,0.8515799203887582,-0.6677045673131943,0.764844826888293,0.8878052560612559,-0.5713093648664653,0.7663458175957203,-0.1640846272930503,0.21814817562699318,0.8974388651549816,-0.27417833218351007,0.38820139272138476,-0.8459274633787572,-0.5375591283664107,-0.20772219076752663,0.9481987589970231,0.34680823888629675,-0.2380851712077856,0.8308902280405164,0.6875485340133309,-0.44460361590608954,0.012705579865723848,0.33854083344340324,-0.9624429424293339,0.2797568370588124,0.6981785260140896,-0.2649940331466496,-0.5312301311641932,-0.035887117963284254,-0.9148594290018082,-0.2778022079728544,0.6275155982002616,0.21029388811439276,0.32048199186101556,-0.3995747431181371,0.6456690263003111,-0.1580930957570672,0.5301286987960339,0.8854492139071226,0.11338018020614982,0.4592406889423728,0.5963308527134359,-0.40382635314017534,0.10697901155799627,0.6330226259306073,0.22198139922693372,-0.22773494897410274,0.35079003497958183,-0.058913087006658316,-0.11869561159983277,-0.9320852281525731,-0.8021113323047757,0.6046189763583243,0.011836824007332325,-0.9517393633723259,-0.42141732247546315,0.8668566225096583,0.22208418184891343,-0.7074570190161467,0.3478938094340265,-0.7351266359910369,-0.7707309555262327,-0.8901024339720607,-0.563269171398133,-0.28822327172383666,0.10156952450051904,0.9321601954288781,0.7230799058452249,-0.33003142569214106,0.49822173500433564,-0.2953692711889744,-0.9656000281684101,0.6363477022387087,-0.5901614762842655,-0.27879226114600897,0.9112971564754844,-0.2860884489491582,0.46329453820362687,0.663785164244473,-0.34732733853161335,0.16993118403479457,-0.015126013197004795,0.7385059986263514,0.9150907332077622,0.4936257819645107,0.4688358320854604,-0.20788533426821232,0.8133782995864749,0.4901634603738785,-0.3206738834269345,0.584566745441407,0.6802751044742763,0.7582928081974387,-0.3501715590246022,0.8203488988801837,-0.11611496703699231,-0.6926713730208576,-0.7391819139011204,-0.2577533111907542,0.1438222615979612,-0.3322773762047291,-0.35524633852764964,-0.38899308955296874,-0.3360393703915179,0.5942576979286969,-0.6254890845157206,0.27319440478459,0.3000007853843272,0.674640994053334,0.7000333429314196,0.9729702663607895,-0.8341627162881196,-0.07181071164086461,0.22051691310480237,-0.2934556361287832,0.05223929136991501,0.4857099992223084,-0.4865045454353094,0.3305057156831026,0.8304998208768666,0.9243566798977554,-0.790971253067255,0.024823942221701145,-0.15941082872450352,0.5730457357130945,0.05906407069414854,0.9396265782415867,-0.9546197359450161,0.5194492386654019,0.02674945304170251,0.9058940559625626,0.2082607476040721,-0.0471351514570415,-0.26594185503199697,-0.1609183973632753,0.32069860585033894,-0.9030217318795621,0.7988304938189685,0.5116215944290161,-0.42560323514044285,0.47211099648848176,0.6547822603024542,0.24490372464060783,-0.23391022253781557,0.2670560753904283,0.553700870834291,0.23869013180956244,0.19629471888765693,0.7634518379345536,-0.9719297015108168,-0.9788336721248925,-0.23789979424327612,-0.05112364515662193,0.12005831161513925,-0.08413589559495449,-0.6243596603162587,0.647333012893796,-0.09032732527703047,0.17544117430225015,0.2764997729100287,-0.20573809649795294,0.6271030004136264,0.08300479780882597,-0.978065986186266,0.15382974967360497,-0.6861227913759649,0.6690116743557155,-0.9861498679965734,0.0806242236867547,0.7160067320801318,0.1778697115369141,0.7156022367998958,0.12584919156506658,-0.31978406431153417,0.9332252428866923,0.3782161087729037,0.059354179073125124,0.35756920324638486,-0.2351371143013239,0.658064829185605,0.8106321287341416,0.5072565651498735,0.3992725177668035,-0.1347761987708509,-0.7291250415146351,0.6442335085012019,0.45752728218212724,-0.8149415939114988,0.7602495066821575,0.8163777906447649,-0.5033581648021936,0.1691384674049914,-0.31099064089357853,-0.0442271395586431,0.7896862477064133,0.3836118630133569,0.388492900878191,-0.9208790971897542,0.4171705641783774,-0.42025547893717885,0.9519416629336774,-0.9377024243585765,0.6955327508039773,0.10751590458676219,-0.4711059741675854,-0.8653133399784565,-0.6369443219155073,-0.2201155717484653,0.1728100422769785,-0.43490729527547956,0.42641454841941595,0.9903913545422256,0.7062736786901951,-0.5248998613096774,-0.4588300655595958,0.3270850535482168,0.4883168013766408,-0.9328991631045938,0.023129910230636597,-0.3668324030004442,-0.5737716336734593,0.10874189669266343,-0.6346928188577294,-0.8962682131677866,0.6371733597479761,-0.5045967269688845,0.3289406024850905,-0.8505516615696251,-0.08096084650605917,0.3529199748300016,0.35024568997323513,-0.7398430500179529,0.018639643676579,-0.5959934713318944,-0.3948319274932146,-0.6681218245066702,0.6179930986836553,0.001670608762651682,0.5858337664976716,0.9380006403662264,0.21445526275783777,0.4661256647668779,0.1192285604774952,0.39614883018657565,-0.031832567881792784,-0.5231670229695737,-0.4841327089816332,-0.19652506336569786,-0.24353061616420746,-0.15586179960519075,-0.537590169813484,0.971159209497273,0.43398423306643963,0.8719888157211244,-0.0011840672232210636,0.3514666627161205,0.9207651694305241,0.3993746223859489,0.7868053377605975,0.10710657853633165,-0.9291822509840131,0.36303873220458627,-0.804776253644377,0.31082974979653955,0.15539482468739152,-0.8187957140617073,-0.21738876681774855,-0.09040307393297553,0.7590038315393031,0.992243988905102,-0.5621418431401253,0.17897616978734732,0.8335949722677469,0.9683271921239793,0.717321521602571,-0.22991226892918348,0.695154070854187,0.24416115786880255,0.6775999064557254,0.3204243746586144,0.6732881325297058,0.45475552463904023,-0.6496078092604876,-0.1792520359158516,-0.041747160255908966,0.423142927698791,-0.33515725238248706,0.5828579515218735,-0.5162905249744654,-0.13466374343261123,-0.47138666082173586,-0.8065953045152128,-0.2259117616340518,-0.8015853352844715,0.36971266521140933,0.693518737796694,-0.7354699987918139,0.6303871995769441,-0.9317260677926242,-0.6581192403100431,-0.036777238827198744,0.8530206084251404,0.8509522811509669,-0.7956232014112175,0.5140612726099789,0.7225817600265145,0.9377573570236564,-0.7425496685318649,-0.5876760501414537,0.35991350933909416,0.9012687685899436,0.6882435204461217,0.8123088348656893,0.23617325210943818,0.3425315720960498,0.18614033423364162,0.2279929518699646,-0.2448016069829464,-0.5285967369563878,0.4042530213482678,0.3937005759216845,-0.6380641274154186,-0.1370694343931973,-0.261871790047735,-0.6777734044007957,-0.24372342182323337,-0.3846127004362643,0.0035887975245714188,-0.27135413885116577,0.3223032848909497,0.8047612099908292,-0.397225278429687,0.5623442581854761,0.007684290409088135,-0.01197965070605278,-0.2695217467844486,0.7085035932250321,0.7168135559186339,0.9043214805424213,-0.6962185436859727,-0.13643296342343092,-0.18677253648638725,0.049825108144432306,0.015236816368997097,-0.056706251576542854,0.3175848978571594,0.25280531542375684,0.682224300224334,-0.02791657391935587,-0.9634129325859249,0.6652015917934477,0.8584159035235643,-0.3132427353411913,0.8204983165487647,-0.2132541355676949,-0.028426323551684618,-0.42058481741696596,-0.11963718896731734,0.8007235946133733,-0.09248373098671436,0.5955785461701453,0.948070349637419,0.428466459736228,0.3626672034151852,-0.5599703756161034,0.23972807778045535,0.19662289461120963,-0.6087009059265256,-0.6593353622592986,0.9673011074773967,0.869014298543334,0.8347817487083375,0.3133235168643296,-0.43099013483151793,0.9325223295018077,0.28902225475758314,0.5552359241992235,-0.4958337191492319,0.5694459988735616,0.18484550714492798,-0.2837933599948883,0.03302121860906482,0.445502907037735,-0.8198194736614823,0.26783732511103153,0.2866368046961725,0.49269207939505577,0.09494538977742195,-0.17054338799789548,0.8601905149407685,0.8960168268531561,-0.917107789311558,-0.9081217320635915,0.9399913246743381,0.2722528548911214,-0.4619635622948408,0.6267646150663495,0.08158267987892032,-0.2121927491389215,0.9962932816706598,0.28963281819596887,0.08884165296331048,-0.08835146157070994,0.410188224632293,-0.8053550403565168,0.4631231976673007,0.2384225381538272,0.6483354563824832,0.3147930703125894,0.33268778026103973,-0.5691332295536995,-0.04761422146111727,0.9689156599342823,-0.35211318591609597,0.035561074037104845,-0.7506411140784621,0.3274845243431628,-0.9042914849705994,0.5481928461231291,-0.0038002030923962593,0.32977824890986085,0.24528186162933707,-0.48492941865697503,0.4782113884575665,-0.5547076514922082,0.16832581022754312,0.664411548525095,0.9315720391459763,-0.7817621226422489,0.9272969947196543,-0.341773834079504,-0.10971113061532378,-0.09744200063869357,0.4942357358522713,-0.8208972620777786,-0.3185899592936039,0.3843170260079205,-0.45094305789098144,0.1719986880198121,0.3720877906307578,0.3706540120765567,0.6482648020610213,-0.8274466996081173,0.4243049439974129,0.5016453410498798,-0.1339504779316485,0.7584136808291078,0.500568128656596,-0.9955053594894707,0.2327321576885879,-0.7065334543585777,0.9901890764012933,-0.7810399713926017,0.2955722501501441,-0.948467446025461,0.5556167727336287,0.7342437081970274,0.9078800496645272,0.009203324560075998,-0.708063408266753,-0.12669243849813938,0.24933025566861033,-0.5844921739771962,-0.93568927468732,0.8461805433034897,0.9109260831028223,-0.06847371300682425,-0.6604319009929895,0.20474962331354618,0.35906574968248606,0.43867552606388927,0.9692377401515841,-0.07532987045124173,-0.7548069544136524,0.3266078317537904,-0.528455875813961,0.023623290471732616,-0.6113603883422911,0.5965874744579196,-0.5791807300411165,-0.7879177117720246,0.7504667732864618,0.3340667290613055,-0.20819742558524013,0.9675763440318406,0.9873899295926094,0.7137002637609839,-0.8625580216757953,-0.5359862647019327,0.5638241842389107,-0.6132376492023468,0.6820429461076856,0.9877348826266825,0.9412002889439464,-0.5729715856723487,-0.4252719674259424,0.9059051773510873,0.2053792499937117,0.15405031573027372,-0.7777393632568419,-0.029836005996912718,-0.3574496344663203,0.7670028354041278,-0.189285677857697,0.011335017625242472,-0.13575248746201396,-0.5346567216329277,0.5479568634182215,-0.8378335312008858,-0.24312420887872577,0.7889497126452625,-0.2119018048979342,-0.6934732049703598,-0.27666424633935094,-0.020866884384304285,-0.658223741222173,-0.529074470512569,0.3161423527635634,-0.5977043989114463,-0.250389295630157,0.30496965255588293,0.29892130149528384,-0.30070974258705974,-0.5598539472557604,-0.0362446429207921,-0.05944734672084451,-0.33958027837798,-0.3720910740084946,0.7200554376468062,0.906598262488842,-0.6635528248734772,-0.11098380340263247,-0.6480923937633634,-0.23756335629150271,-0.7501387456431985,-0.37344014178961515,0.7985338736325502,-0.7753237625584006,-0.23387730633839965,0.9715304230339825,0.172644910402596,-0.17469623452052474,0.1581964548677206,-0.13718166761100292,0.22993195615708828,-0.7476215707138181,-0.6698429216630757,0.6319857109338045,-0.5638633701018989,-0.9328056387603283,-0.6273840158246458,-0.473798253107816,-0.2868747850880027,0.05260791443288326,-0.7335045142099261,-0.6350178667344153,-0.4959321767091751,-0.721233669668436,-0.417667449451983,0.5185549682937562,-0.24440641421824694,0.9426496718078852,0.5234299865551293,-0.2854017415083945,0.38939737901091576,0.3124557426199317,-0.37148628756403923,0.2961912886239588,-0.7696529044769704,0.08694523386657238,-0.7977202907204628,-0.7367708720266819,-0.7059390749782324,-0.14820929942652583,0.29635727033019066,-0.2874746327288449,0.36071457574144006,0.7747589810751379,-0.20031794998794794,0.6516225803643465,-0.6686091194860637,0.1773311668075621,0.855797091498971,0.15647497726604342,0.2805535919032991,-0.9005847927182913,-0.8005656404420733,-0.034109882079064846,-0.8484981395304203,0.05688857939094305,0.6952698533423245,0.2794027114287019,-0.11221974762156606,-0.194023416377604,0.5714985253289342,-0.7348019517958164,0.5359215117059648,-0.5236585871316493,-0.44247048208490014,0.6480070832185447,-0.006394549272954464,-0.4318043370731175,-0.7312258393503726,0.7703475174494088,-0.1703273723833263,-0.11048804502934217,0.9918970130383968,-0.284775928594172,0.1282366504892707,-0.40322448359802365,0.9169778670184314,0.3097522919997573,0.36050568195059896,0.5612696786411107,-0.6109213926829398,0.868243919685483,0.06839382462203503,0.1988178426399827,-0.05585227580741048,-0.566183511633426,-0.8882505530491471,-0.6803289391100407,-0.35017661890015006,0.45495453057810664,0.00659388629719615,0.21044318424537778,-0.22227302892133594,-0.8676405362784863,-0.7996698068454862,-0.11190108954906464,0.540319652762264,0.5594057939015329,0.2654041452333331,0.8062510164454579,0.3646721551194787,-0.5731284404173493,0.28890929371118546,0.04681437974795699,-0.8423280091956258,-0.48256195709109306,-0.748434612993151,-0.0571655766107142,0.5610600584186614,-0.9440356465056539,0.16514075407758355,-0.005931885913014412,0.41928277909755707,0.40537768695503473,-0.5696385018527508,-0.7158847372047603,-0.5503967930562794,-0.6434324937872589,-0.8961372831836343,-0.6245748992078006,0.6780759999528527,0.047294977121055126,-0.7699959883466363,0.24473232496529818,0.1964144380763173,0.04866567859426141,-0.9782276088371873,0.6053694556467235,0.450829254463315,0.05908648343756795,0.36609200621023774,-0.3273130492307246,0.3643411248922348,-0.1707241116091609,0.4143512579612434,0.18983365315943956,0.08387037320062518,0.9327533384785056,-0.946917787194252,0.5661867237649858,-0.17289811605587602,0.19201181875541806,0.3757120156660676,-0.08690854674205184,-0.8545465469360352,0.3893710542470217,-0.45187454111874104,-0.9608787838369608,0.4171331417746842,-0.519792222417891,0.9762603910639882,-0.8772686952725053,0.3197300862520933,0.47502490831539035,0.40727856755256653,-0.11714710341766477,-0.8706584414467216,0.14958101511001587,0.2953687058761716,-0.09449331974610686,0.02267521107569337,0.6623075716197491,0.2565360418520868,0.5043938490562141,0.05995508376508951,-0.8063789941370487,-0.4905549082905054,-0.46979756047949195,0.4005301147699356,-0.003734853118658066,0.7834521904587746,0.3174279388040304,0.3321689171716571,-0.4151329193264246,-0.9916397612541914,-0.7260568398050964,0.9782950067892671,-0.09871463570743799,0.5373943871818483,0.26741519710049033,0.23192505352199078,0.44009179435670376,-0.5399728058837354,0.2867183070629835,-0.48423092858865857,-0.8806354803964496,-0.2664150968194008,0.5825954107567668,0.6164856120012701,-0.8891488020308316,-0.030527883674949408,-0.7794729112647474,0.6870823525823653,0.39833268988877535,-0.6206814153119922,0.40926490630954504,0.7907252484001219,-0.532836296595633,-0.5938511760905385,-0.162004501093179,0.7193411169573665,0.03048856696113944,-0.997580457944423,0.04727272177115083,0.9172258973121643,-0.7825154131278396,-0.1445889533497393,-0.8463403931818902,0.005689839832484722,0.909819652326405,-0.36562415724620223,-0.24157346691936255,-0.17945156153291464,0.8967583156190813,-0.35486962692812085,-0.2682787785306573,0.6733797355554998,-0.49226447055116296,-0.565585461910814,0.8482908429577947,-0.7739498135633767,0.5350336665287614,0.018916606903076172,0.6178177744150162,0.530434359330684,-0.8051551529206336,0.6106957928277552,0.2193337995558977,-0.07617593044415116,-0.22858437057584524,0.8168749553151429,-0.6782411560416222,-0.5398597582243383,-0.08863141061738133,-0.6679564476944506,0.9154266398400068,-0.59465087717399,0.9192486102692783,-0.38940150244161487,0.42515895888209343,0.19221243169158697,-0.21635347232222557,0.7560166982002556,0.5150210270658135,-0.9112551733851433,-0.0734595344401896,-0.4029150321148336,-0.5062803514301777,0.30832594400271773,0.7907915748655796,-0.31025825906544924,-0.6128995502367616,0.9610779616050422,-0.3803382031619549,0.6489734146744013,-0.5019269422627985,0.04709911206737161,0.15982374921441078,0.011079991701990366,0.7743129483424127,-0.9255226249806583,-0.4876290294341743,0.5244650328531861,-0.2700232579372823,0.8453118959441781,-0.7932719411328435,0.06602086639031768,0.3203396522440016,-0.7534934859722853,-0.6032307557761669,-0.9519797968678176,-0.5525725660845637,0.250991468783468,-0.5952781210653484,0.11010750057175756,0.6769550195895135,-0.8413256644271314,0.3392740096896887,0.007590779569000006,-0.8043799139559269,-0.16865487210452557,0.46022557001560926,0.8443160345777869,0.46420719288289547,0.15442592604085803,0.888905328232795,0.030173477716743946,0.5299501474946737,0.2606423362158239,0.9072773214429617,0.6879753363318741,0.5632529589347541,-0.27905721263960004,-0.9091633055359125,0.32332682190462947,0.933279191609472,-0.4894861946813762,0.1712997923605144,-0.04685581708326936,0.1467661140486598,0.020388911943882704,-0.9976239055395126,0.5971088418737054,-0.6015635938383639,0.960497620049864,0.6802864675410092,0.3114720140583813,-0.152348589617759,0.13149795914068818,0.893309198319912,-0.9321369081735611,0.26126236747950315,0.35555714648216963,0.9435328906401992,-0.6285065510310233,-0.3380789076909423,0.16944208089262247,0.09644996793940663,0.9254236062988639,-0.8933825362473726,0.5395084409974515,0.12615811824798584,-0.9725111043080688,0.22155643859878182,0.3592172213830054,0.7419270733371377,-0.5184663645923138,0.10410365927964449,-0.3467293460853398,0.2158587002195418,0.03219709498807788,-0.18594325333833694,0.858447952196002,0.016787357162684202,-0.36834719218313694,-0.9416667819023132,-0.970825913362205,-0.72295779036358,0.2048260672017932,-0.8968422757461667,-0.8653284371830523,-0.4289944740012288,0.3778231106698513,0.2788193649612367,0.1029990054666996,0.5163746234029531,0.3763602399267256,0.39191683288663626,-0.693482203874737,0.7040484589524567,0.054724066983908415,-0.8648610939271748,-0.8258317052386701,0.09860107721760869,-0.9965699827298522,-0.4266666639596224,-0.6600244757719338,-0.4430239503271878,-0.7180131943896413,0.8733113119378686,0.8407991090789437,-0.5746786529198289,-0.7344558886252344,-0.3902258472517133,0.6790151251479983,0.9981755972839892,0.9695032020099461,0.5819496656768024,-0.5044231074862182,0.8886748007498682,0.7723002107813954,-0.6626081052236259,0.036134574096649885,0.7560236351564527,-0.9558525900356472,-0.7196799581870437,-0.1679163845255971,0.5315306363627315,0.8055528975091875,-0.24041300499811769,0.7025852459482849,-0.975916635710746,-0.8591534518636763,0.38844805816188455,0.9513583262450993,-0.9266194659285247,1.9778497517108917e-05,-0.8795482809655368,0.11155305616557598,0.954703853931278,-0.7914205719716847,-0.8812966425903141,0.7554238527081907,0.3325240914709866,0.8780551655218005,-0.3277002200484276,0.8616480850614607,0.6310596619732678,-0.8227711990475655,-0.6763255861587822,0.22157544177025557,0.9812523555010557,0.3195029739290476,-0.19357511028647423,-0.7943612784147263,-0.24105234816670418,-0.8210239256732166,0.382216258905828,-0.9537842036224902,0.9200241714715958,0.7335318834520876,0.07586528081446886,0.06949790101498365,0.10296561243012547,0.2381206713616848,-0.5236978665925562,-0.4633747851476073,-0.24486040323972702,-0.6393468412570655,-0.30743586644530296,-0.24221138888970017,-0.051315836142748594,0.555990086402744,-0.2997313910163939,0.31046219961717725,-0.6607627863995731,0.04868442751467228,-0.8603596701286733,-0.9710775725543499,0.7682888763956726,-0.6043796329759061,0.5609831395559013,0.9778426955454051,0.7456303969956934,0.7018029070459306,0.17398572713136673,-0.4636706034652889,-0.5322859422303736,-0.7183712520636618,-0.5575936790555716,-0.11632317816838622,-0.1511622527614236,-0.9499976965598762,0.7639087215065956,-0.5668313903734088,0.17874069465324283,0.9926487798802555,0.18389428965747356,-0.11178840603679419,-0.8710693339817226,-0.29258278384804726,0.1997891440987587,-0.7613655142486095,0.3214195007458329,-0.14782795403152704,0.3009120491333306,-0.7581490352749825,-0.07879321556538343,-0.1490812269039452,0.27028330275788903,0.7215719940140843,-0.7066466812975705,-0.22549987770617008,-0.23981349170207977,-0.25849727913737297,0.08728234050795436,0.7284611430950463,0.5977376531809568,-0.16087371623143554,0.25544504169374704,-0.6920175752602518,-0.2128471164032817,-0.6800350360572338,0.6729337093420327,0.6488853697665036,0.1426432365551591,-0.42568140802904963,-0.8500612042844296,-0.2464926945976913,-0.30643489165231586,-0.3251977488398552,-0.6278291656635702,0.09012365806847811,-0.827229046728462,0.5288792243227363,-0.9422124838456511,-0.47967410599812865,-0.8206515042111278,-0.9324033837765455,0.30167974811047316,0.20788932451978326,-0.684535825625062,-0.5144708883017302,-0.012047469150274992,-0.763167577330023,-0.6707828305661678,0.7793594603426754,0.13571003871038556,0.05856742803007364,-0.5535049689933658,-0.11254428746178746,-0.39422603184357285,-0.2576146833598614,0.4926220108754933,-0.17358393082395196,-0.6908533661626279,0.3571144216693938,0.6550350617617369,0.7675421382300556,-0.316259837243706,0.26349694235250354,-0.23763585509732366,-0.8609375786036253,0.29882030561566353,0.22410671459510922,-0.19489355850964785,0.17189943557605147,0.547199307475239,-0.18854617234319448,0.6951187755912542,0.36247702734544873,0.061105718836188316,-0.27159603172913194,0.43137732427567244,-0.031220661476254463,0.20155000546947122,-0.15018701180815697,0.7511281245388091,0.9714716603048146,-0.8323363233357668,-0.6714918813668191,0.346481513697654,0.7931104185990989,0.6759731895290315,-0.4000090090557933,-0.4855774422176182,0.7034972873516381,0.7055777399800718,-0.7255135076120496,0.4919589734636247,0.00018968107178807259,0.02713919524103403,-0.20061221439391375,-0.7550509488210082,-0.3669219701550901,0.1522147529758513,0.4752523498609662,-0.3104621418751776,0.6550454725511372,-0.9085796833969653,0.7583215115591884,-0.5596539499238133,0.5733107449486852,0.5868298700079322,-0.9638098296709359,0.7498852550052106,0.890036700759083,0.043371668085455894,0.8500680164434016,0.7841188716702163,-0.39755441155284643,0.5778588531538844,-0.29996483540162444,0.897932066116482,-0.3922079694457352,-0.11049348255619407,-0.31892910972237587,-0.01572921872138977,-0.8321058256551623,-0.6878823973238468,0.7219560532830656,0.5199594483710825,0.1837883391417563,-0.033159549813717604,0.5692148981615901,-0.6517508141696453,0.2539298157207668,0.5977258738130331,0.12030507205054164,0.5142685766331851,-0.22075532376766205,0.38715515099465847,0.0034800684079527855,0.40217939391732216,0.3458417598158121,0.8243643455207348,-0.9548908327706158,-0.96962915873155,0.669748486019671,-0.640668660402298,-0.3847112925723195,0.13396923849359155,-0.10618744976818562,-0.79484080709517,-0.7379405559040606,-0.27255332795903087,-0.07650338998064399,0.4460481181740761,0.6730917585082352,0.6510758316144347,-0.9783085230737925,-0.1398379229940474,0.6292373994365335,0.5594079410657287,0.18239747174084187,-0.3216836331412196,-0.7819637623615563,0.684962335973978,-0.6201021582819521,-0.9415375608950853,-0.9034327324479818,0.7516783773899078,0.9279052196070552,-0.6534152873791754,-0.4626834178343415,-0.8251674990169704,0.694258926436305,-0.9437639806419611,0.583526685833931,-0.5611887616105378,-0.6936399019323289,-0.29729256872087717,0.9529621279798448,-0.5308168125338852,0.7464375225827098,0.5198432984761894,-0.7064822996035218,0.05268429825082421,-0.7845914582721889,0.922388986684382,0.1100680474191904,-0.2999298512004316,0.18343421816825867,-0.6270436951890588,0.7235902016982436,-0.9284379282034934,0.10896568885073066,0.8363002589903772,-0.28945772210136056,-0.24363045394420624,0.6946824928745627,-0.5730413636192679,-0.27897689305245876,-0.6314176446758211,0.8410231880843639,-0.509333876427263,-0.5348098445683718,-0.20009577739983797,0.37886847788468003,-0.8830425897613168,0.5366678619757295,0.27423631912097335,0.6017685420811176,-0.31277691619470716,0.9792006216011941,-0.2546671791933477,-0.7606890141032636,-0.5259910514578223,0.9802494351752102,0.1702424604445696,-0.7788699478842318,0.8885912694968283,-0.6036530020646751,-0.8423496223986149,0.13841661904007196,0.01762608764693141,-0.31169697269797325,-0.6886295517906547,-0.5019154604524374,0.35860523534938693,-0.6230792663991451,-0.37229564413428307,-0.6410447107627988,-0.37454697489738464,-0.24109773989766836,0.22231360524892807,-0.46818435844033957,0.1875684941187501,-0.6784247360192239,0.38538619922474027,-0.0903604133054614,-0.7623713142238557,-0.5173851582221687,0.6147620915435255,0.414346216712147,-0.01255604438483715,0.569244047626853,0.5998034630902112,-0.08370505506172776,0.9333017524331808,0.3121540271677077,0.4633124847896397,0.5526461387053132,-0.49166056467220187,-0.8588639223016798,0.7952994601801038,0.7677775355987251,0.8811962008476257,-0.4511513262987137,-0.8977077873423696,0.25446372339501977,0.6783376797102392,-0.10834331857040524,0.8741897405125201,0.41398967523127794,0.15485554281622171,-0.19990462390705943,0.47756282426416874,-0.46604990493506193,0.9150566644966602,0.9012320539914072,-0.8778464370407164,0.758865098003298,0.5846665808930993,0.7350841811858118,-0.5142431808635592,0.7158450265415013,-0.5231511248275638,0.5215442986227572,-0.000332830473780632,0.7111536879092455,0.18105000257492065,-0.5024102316237986,0.11302926577627659,0.947620949242264,0.021973577793687582,0.40866119507700205,-0.6171448267996311,0.10824123490601778,0.9567943937145174,-0.03048075409606099,-0.5502534946426749,-0.34453109093010426,0.19572229636833072,-0.9396270564757288,0.01586052728816867,0.46564229717478156,-0.24970291554927826,0.8964108442887664,-0.5466902949847281,-0.9609470763243735,0.9853127542883158,0.08807847090065479,-0.17824493162333965,-0.15839363727718592,-0.5514211831614375,0.07539228908717632,0.3899886552244425,0.3361845347099006,0.9187942338176072,-0.10198270762339234,-0.831475512124598,-0.28229232085868716,0.9970593331381679,0.9352813749574125,-0.634873223491013,-0.4421062162145972,-0.2123374561779201,0.6623652274720371,-0.03263628529384732,0.7697348613291979,0.1547213038429618,-0.22807791596278548,0.6254168129526079,0.310999043751508,0.20801325049251318,-0.10963642131537199,-0.8974128891713917,-0.41997227212414145,0.618360223248601,0.4859579522162676,-0.7348577417433262,-0.3365617133677006,-0.6330510964617133,0.3952522100880742,0.1959669180214405,0.35719326278194785,0.9382435735315084,0.292940319981426,0.3524574744515121,0.24219439458101988,-0.747837997507304,0.6672008601017296,0.9696473525837064,-0.3009723173454404,0.20259277103468776,-0.19473941903561354,-0.02317123580724001,-0.8238184219226241,-0.7721849828958511,-0.5122262313961983,-0.4107655338011682,0.31638475181534886,-0.20480016246438026,-0.9270882001146674,0.3267807140946388,0.5895912707783282,-0.25822926638647914,0.7978053097613156,-0.7399097210727632,0.16964580910280347,-0.9384757485240698,-0.21889815805479884,0.4378400803543627,-0.5055455756373703,-0.09704860439524055,0.22434375062584877,0.6101701543666422,0.33461898658424616,-0.37006230652332306,0.013680712785571814,0.19962293421849608,0.6092844074591994,-0.6742294738069177,0.2889183610677719,-0.6966974316164851,-0.11795453727245331,-0.25749841099604964,-0.7943397467024624,-0.9974486953578889,-0.30239625461399555,-0.8958424534648657,-0.5951960608363152,0.13411799119785428,-0.9910870855674148,-0.8371907314285636,0.6772128297016025,-0.8094276026822627,-0.6351835336536169,0.3739497731439769,-0.683549661654979,0.559394973795861,-0.8702389178797603,-0.8620196175761521,0.8707583844661713,-0.7538273050449789,0.06093764351680875,0.7893125363625586,-0.4987831534817815,-0.365677856374532,-0.743849569465965,-0.18609500816091895,0.08672956936061382,-0.7249550684355199,0.7089878912083805,-0.32001318549737334,-0.3231669790111482,0.6741201817058027,-0.7235628543421626,-0.011306594591587782,0.5082969511859119,-0.060688757337629795,-0.06421113247051835,0.12338025728240609,-0.5982947200536728,-0.8437528591603041,-0.4149215882644057,-0.7505777264013886,0.48856480373069644,0.18968877429142594,0.49776682211086154,-0.8502687797881663,-0.22056988021358848,0.7612774865701795,0.9141678409650922,0.8774759280495346,0.962362180929631,-0.5060204472392797,0.1549409250728786,-0.31687917886301875,0.9329054933041334,-0.9533561039716005,-0.1668510725721717,0.3486759243533015,-0.8345930138602853,-0.03471910720691085,-0.9539905535057187,0.5078110340982676,-0.9157142569310963,0.8421586463227868,-0.3507583406753838,0.8641578764654696,0.7132875258103013,0.09584113582968712,0.42598617542535067,0.677293177228421,-0.10086770728230476,0.8241126942448318,-0.272168954834342,0.02805212652310729,-0.6905760015361011,-0.34507223311811686,0.12756852060556412,0.8762575914151967,0.5973416925407946,0.9066289444454014,-0.24933004099875689,0.4699924923479557,-0.767576593440026,-0.29313940834254026,-0.8131238804198802,-0.8155118278227746,-0.6689495113678277,-0.20796486362814903,0.8917039311490953,0.7269967277534306,0.4965115017257631,0.417848554905504,-0.35629078233614564,-0.777377282269299,-0.28525028517469764,-0.6320719360373914,-0.17816570680588484,0.9421828351914883,-0.4672355237416923,-0.1461176984012127,0.060602341778576374,-0.08274880796670914,0.9779546353965998,0.4140005214139819,0.3827356547117233,-0.9497959134168923,0.17132516065612435,0.7417420619167387,-0.2532675261609256,-0.8567455485463142,-0.0938715417869389,-0.6362729351967573,0.6148359668441117,-0.6910858829505742,-0.4458065126091242,0.23302914667874575,-0.741161874961108,0.6440044827759266,-0.3570673493668437,0.1693094177171588,-0.7237747283652425,-0.08920572232455015,0.21156179485842586,0.9509491180069745,0.6116951056756079,0.010209324304014444,0.9858565521426499,0.4130819416604936,0.4578587356954813,-0.7124552465975285,-0.8167450414039195,-0.23869683127850294,-0.8966937209479511,-0.7467623562552035,-0.961154808755964,0.5423038927838206,0.3940478730946779,-0.39405305217951536,-0.5665457383729517,-0.8282318077981472,-0.38310205517336726,0.40478883357718587,0.6813644776120782,0.37398768635466695,-0.601152952760458,0.003152572549879551,-0.99757613055408,0.05694498587399721,0.79911233112216,0.8171100928448141,-0.17159370984882116,0.3828463712707162,-0.02244605077430606,0.11179681262001395,-0.5703435041941702,-0.13419244345277548,-0.7427906105294824,0.7133276117965579,0.31296290550380945,0.6277517308481038,-0.8380774171091616,0.5390898725017905,-0.16775687271729112,0.9699696907773614,0.9733998151496053,-0.6594703495502472,-0.5177455614320934,0.6255117310211062,-0.16288992809131742,0.20347892679274082,-0.8797386777587235,-0.9041957668960094,-0.6091610630974174,-0.743377645034343,0.17039934964850545,-0.7822911110706627,0.5977931651286781,0.22322984226047993,0.2301579532213509,0.41875739162787795,-0.4193481826223433,-0.8525115847587585,-0.3844727878458798,-0.6032844288274646,0.09323929669335485,0.7961471513845026,-0.354181922506541,0.43767063366249204,-0.8654254931025207,0.4552331422455609,-0.4511540257371962,-0.8751365793868899,-0.348632637411356,-0.03024332458153367,0.6810018555261195,-0.5675200200639665,-0.7525408803485334,0.5757546434178948,-0.10408315621316433,-0.9559357408434153,-0.4787118937820196,0.4280426357872784,0.9907124126330018,0.9209232954308391,-0.7993635376915336,0.3070526858791709,0.21187905268743634,-0.9741819314658642,0.2531363908201456,0.254189585801214,0.44366444647312164,0.918311205226928,-0.35074856225401163,0.6124514024704695,-0.6550263962708414,-0.10789384273812175,0.3241057898849249,-0.9194178129546344,-0.37946859607473016,0.9360023066401482,-0.024608378298580647,0.6583228823728859,0.6974618062376976,-0.8031942886300385,-0.8788833944126964,0.6457414883188903,0.576107922475785,0.7943324684165418,-0.9370018565095961,-0.4882538504898548,-0.5527278329245746,0.21386725595220923,-0.3085371279157698,-0.2644632109440863,-0.039208536967635155,-0.11405923729762435,0.07480848440900445,0.3707299022935331,0.24517013551667333,0.26187744410708547,-0.027558923698961735,-0.497152007650584,-0.6838354389183223,-0.5885024173185229,0.5797826084308326,0.13986518699675798,0.21110846241936088,-0.8514312938787043,-0.20851878775283694,0.08719220058992505,0.8153514093719423,0.17205550614744425,-0.13537793001160026,0.38481163745746017,0.4090421814471483,0.6327079562470317,0.05231183534488082,-0.9115833886899054,0.12721276469528675,0.7332103033550084,0.3819841993972659,0.8563815886154771,-0.7749245413579047,-0.13810580456629395,0.7370039029046893,0.37154043512418866,0.7764402413740754,-0.35401762556284666,0.7849669437855482,-0.9369529159739614,-0.376253648661077,0.39080169703811407,0.7215452222153544,0.2513006697408855,-0.12507337238639593,-0.7261663293465972,-0.2804977735504508,-0.0010491283610463142,-0.3900281419046223,-0.4773441283032298,-0.4489790708757937,-0.19380604941397905,0.5875883880071342,-0.27627625362947583,-0.44224956491962075,-0.9229413755238056,0.9971386017277837,0.2681249836459756,0.7770422678440809,0.2144067562185228,0.11828650301322341,-0.5724291284568608,0.45603987807407975,-0.35901124589145184,0.46722122514620423,-0.5254481309093535,-0.7674481510184705,-0.6235569650307298,-0.6395222111605108,-0.7850973475724459,0.6299740062095225,0.6170374322682619,0.5489465878345072,-0.5918647423386574,0.076348174829036,0.4267707038670778,0.09105761768296361,-0.7956107151694596,0.5822997591458261,0.9135997625999153,-0.7392600360326469,0.3672565892338753,0.766209373716265,-0.34472009213641286,0.6282290108501911,-0.11204405408352613,0.691061963327229,-0.6058446085080504,-0.7768787825480103,-0.26214712113142014,-0.21581074269488454,0.45216132141649723,0.28200016589835286,-0.03683795686811209,0.47208558302372694,-0.06531094806268811,0.7856470844708383,0.009473609272390604,-0.344340099953115,0.30145292868837714,-0.7497666636481881,-0.3062128974124789,-0.6260948763228953,-0.848243763204664,0.3847175701521337,0.4409809857606888,-0.1714749108068645,-0.8432587003335357,0.40057901199907064,0.805884312838316,0.6626525241881609,0.7408837983384728,0.11927340645343065,-0.6124475067481399,0.7685410813428462,-0.9404342384077609,0.6311182617209852,0.08550736913457513,0.26286756061017513,0.017395365983247757,-0.41643789457157254,-0.5899831908755004,0.4135784571990371,-0.3542546024546027,-0.8213536534458399,0.19142634235322475,-0.8752832864411175,0.37802847754210234,0.9624648219905794,0.6020109974779189,0.04159672884270549,0.8437784728594124,-0.3149131629616022,-0.12769673764705658,-0.2424344695173204,-0.6806625230237842,0.8327681021764874,-0.16756161488592625,-0.3141204286366701,0.3242456712760031,-0.5729789077304304,0.144724162761122,0.5901654311455786,0.1422525942325592,0.06166412075981498,-0.17877207463607192,-0.6484972140751779,0.6205462920479476,-0.17052262416109443,-0.11286341212689877,-0.45994310500100255,0.34276683162897825,0.6123997215181589,0.6971038626506925,-0.8899036450311542,-0.6629208205267787,-0.2941766274161637,0.9032842121087015,-0.8947105621919036,0.7031759666278958,0.2606453262269497,-0.8716043327003717,-0.5944466684013605,0.012967093382030725,0.9508850532583892,0.11998469894751906,-0.20736416894942522,-0.3978618439286947,0.07204796466976404,0.22919319197535515,0.4575189584866166,-0.5249345540069044,-0.15392817417159677,0.7083663130179048,-0.7036327635869384,-0.3962178761139512,0.9863118417561054,-0.14761647069826722,0.016129580792039633,-0.3930635070428252,0.8334730346687138,-0.3489545490592718,-0.06575731234624982,-0.9505947851575911,-0.40890066185966134,0.3714898806065321,0.9709833231754601,-0.02113406779244542,-0.6584390033967793,-0.3196656913496554,0.12925910856574774,-0.4982383381575346,-0.13040111446753144,0.7247315910644829,-0.48482794826850295,0.46927702194079757,-0.9851341447792947,0.9202566081658006,-0.09173415508121252,0.8662773193791509,0.08557175192981958,-0.6538008949719369,0.2581579461693764,-0.8026184304617345,0.2658171011134982,0.9914579270407557,-0.23572579165920615,-0.32812501303851604,-0.7261000606231391,-0.07211583061143756,-0.3715089187026024,-0.3836060594767332,0.5887570711784065,-0.4950181799940765,-0.476345791015774,0.9478642479516566,-0.6472607804462314,0.6889262245967984,-0.8867089888080955,-0.1786338402889669,-0.9669568627141416,-0.450189761351794,-0.6925376197323203,-0.2842968446202576,-0.026226087007671595,0.779470372479409,0.30233772145584226,-0.6347726476378739,-0.7941902405582368,0.05797807592898607,0.3852476142346859,0.17981825023889542,-0.920825697015971,-0.09731114329770207,-0.8620682144537568,0.6260755537077785,-0.2814812194555998,0.8068153476342559,0.3560710824094713,-0.8352995309978724,0.8550196904689074,0.9181316369213164,0.643611996434629,-0.4864126304164529,-0.5044530858285725,0.4060957757756114,-0.1155745992437005,0.07013306673616171,-0.39947624830529094,0.27529118582606316,0.11851781513541937,-0.4815797759220004,-0.8882425059564412,0.12210235139355063,0.16810617316514254,0.9828363694250584,0.035545021295547485,-0.8020938984118402,0.6466094548813999,0.14514103438705206,0.7886098474264145,-0.35292299184948206,-0.633473209105432,-0.045758905820548534,-0.4451221860945225,0.6225899131968617,-0.9443829087540507,0.10364844696596265,0.251142387278378,0.6674591843038797,0.7584287547506392,0.9147120174020529,0.4603696772828698,0.8416178151965141,0.14886819012463093,-0.5419771065935493,0.9626703336834908,-0.4914131313562393,0.05482944333925843,-0.5090786190703511,-0.6342613068409264,0.8738336376845837,-0.8307890966534615,0.10201643826439977,0.8198111639358103,0.5156642636284232,-0.48652545269578695,0.9853409538045526,0.6714563267305493,0.16908555710688233,0.5679953601211309,-0.16304058767855167,0.6740002599544823,-0.48074175976216793,-0.7619702187366784,-0.9726537759415805,-0.6740784486755729,0.029218200128525496,0.5948256379924715,-0.021344617009162903,0.27337991585955024,-0.7435173220001161,0.18547967495396733,0.3909557918086648,-0.5024257847107947,0.21952711371704936,0.8353825430385768,0.6493773898109794,0.15483734104782343,-0.2603490073233843,0.767590275965631,0.800382629968226,-0.12634814530611038,-0.18396848859265447,0.47594453766942024,0.6643770765513182,0.9516220767982304,0.9042697292752564,0.5909553575329483,-0.5584849338047206,-0.7543908539228141,0.37295333156362176,0.16432785848155618,-0.040851044934242964,-0.9650728083215654,0.39067300828173757,-0.5333286374807358,-0.5013232356868684,-0.6114567476324737,-0.6754863327369094,-0.34723324747756124,0.14242289727553725,0.5246238936670125,0.7835203716531396,0.5502238213084638,0.2092150212265551,0.7667498425580561,0.44817623356357217,-0.7408110233955085,0.7017988166771829,0.2762396736070514,0.8901341422460973,0.4496256052516401,-0.03895969968289137,0.23594539146870375,0.021774569991976023,-0.16977720335125923,-0.9731407728977501,0.04682082775980234,-0.22278788359835744,0.5448161782696843,-0.6450448976829648,0.4765877122990787,-0.9860059260390699,0.8238157634623349,-0.33812949899584055,-0.5750953885726631,-0.33843043772503734,-0.5458222343586385,0.6456723678857088,0.9351830300875008,0.35270897950977087,-0.6341701373457909,-0.17721586721017957,-0.17832139180973172,-0.9842880046926439,-0.4932963321916759,0.2949687712825835,-0.6087215119041502,-0.34823315776884556,-0.3376508904621005,0.5322849825024605,-0.6676398855634034,-0.47966278716921806,-0.5245764097198844,0.2571846120990813,-0.8877802509814501,-0.8242523777298629,0.7194199003279209,0.44792177621275187,0.9743214813061059,-0.37401947658509016,-0.15011639706790447,0.6188886691816151,-0.3832599022425711,-0.7974963570013642,-0.21373801631852984,-0.8515411778353155,-0.38547166669741273,0.6676850318908691,-0.6256399233825505,-0.980982453096658,0.14075350062921643,-0.7663654247298837,-0.5620049564167857,0.37293904880061746,0.7399199171923101,-0.6101756351999938,0.0804257052950561,0.14949494693428278,0.5380074679851532,0.2537613594904542,0.062337609473615885,-0.28143299696967006,-0.6313971858471632,-0.8322261990979314,0.708418189547956,-0.3567543560639024,0.6228712908923626,-0.46093390230089426,0.616762041579932,-0.5019853366538882,0.7381774038076401,0.33821515180170536,-0.1478460319340229,-0.2920625531114638,-0.8001602250151336,-0.6562507953494787,-0.9364397241733968,0.5983397266827524,-0.09145958628505468,-0.021912462078034878,0.26617669872939587,-0.8802822809666395,0.06938790623098612,-0.6379043785855174,-0.9829466887749732,-0.5666608111932874,0.12601472903043032,-0.9210950331762433,0.5467335735447705,0.9994797166436911,0.019494675565510988,-0.6631365958601236,0.7523932899348438,-0.8320608292706311,0.4572248295880854,0.046326748095452785,0.0408939179033041,0.8460940970107913,0.015215183142572641,0.6033395524136722,0.05050377734005451,-0.43948412546887994,-0.56873475946486,-0.9780482505448163,0.019214464351534843,0.0806207824498415,-0.6540265195071697,-0.9643039056099951,-0.7483843732625246,-0.9060118370689452,0.411010367795825,-0.9851304944604635,-0.3271784954704344,0.4043451859615743,-0.6731318733654916,-0.5763362105935812,-0.34743684995919466,0.05807717517018318,-0.3716590399853885,-0.6068131988868117,0.42179851746186614,-0.3247850746847689,0.674820548389107,0.18153235968202353,0.42462727427482605,0.015800480265170336,0.3972871406003833,-0.6551390057429671,0.4352073296904564,-0.13137078005820513,0.20631111226975918,0.9044425678439438,0.4119098628871143,-0.18822169955819845,-0.7394664622843266,-0.9756686175242066,0.3761348887346685,0.26064528664574027,-0.5334535432048142,0.9087955043651164,0.30049165012314916,0.8438771069049835,-0.038711757864803076,-0.6778092905879021,-0.1555120456032455,0.10049817012622952,-0.7759444806724787,-0.2179292207583785,-0.2903911070898175,0.22408154280856252,0.7852366059087217,0.8886431152932346,0.8339613806456327,-0.6284881224855781,-0.6819529170170426,0.8655711263418198,-0.176742531824857,0.1470971698872745,0.12142788944765925,-0.26730894297361374,-0.4466696744784713,-0.4196255342103541,0.588715563993901,-0.7514602257870138,0.8384387316182256,-0.15751002356410027,-0.15983659960329533,0.49942375998944044,-0.41240988159552217,0.6309287282638252,0.7541299844160676,-0.4448162531480193,-0.7744866469874978,-0.8353845733217895,-0.17329644924029708,-0.053145688492804766,-0.4196840990334749,-0.7830872433260083,-0.3315900322049856,-0.20259016240015626,-0.09664429491385818,0.5590896429494023,-0.5188651769421995,0.9836914208717644,-0.9520430858246982,-0.16114368522539735,-0.5904941256158054,0.5854366589337587,-0.8625743370503187,0.36033639777451754,-0.6283602463081479,0.6207616538740695,-0.5100182984024286,0.6636386010795832,-0.5855269487947226,0.17416303930804133,-0.6313296328298748,0.8089473014697433,-0.9117734124884009,0.6699511539191008,-0.9423333606682718,-0.8168821539729834,0.7415370279923081,0.8810159685090184,0.13334066979587078,0.33367841923609376,-0.9729653839021921,0.8150242096744478,0.7336208163760602,-0.41739160660654306,0.19188807206228375,-0.8246484370902181,0.14654027065262198,-0.7214615065604448,0.9771315106190741,0.11394495517015457,-0.5516984453424811,0.4408440007828176,-0.7865586057305336,0.9750987878069282,-0.5388906262814999,0.6648697950877249,-0.454816747456789,0.22904550656676292,0.9994575046002865,0.02917540492489934,-0.3927082121372223,-0.3584734359756112,0.30061995470896363,0.26230924343690276,0.9923210218548775,-0.6052069989964366,-0.4571246444247663,0.009323015809059143,-0.8218933138996363,-0.8555193259380758,-0.25013007037341595,0.34638685919344425,0.7389193139970303,0.12522143265232444,-0.32849981589242816,0.3246788810938597,0.3435260462574661,-0.78738913545385,-0.8664227505214512,0.8628868572413921,-0.5963372117839754,-0.47015864169225097,-0.5746952383778989,0.9320454737171531,-0.03770330036059022,-0.02014775713905692,0.7654412691481411,-0.3272496243007481,0.7555196546018124,-0.6533943605609238,0.6399724571965635,0.18673502374440432,0.3025693092495203,0.2559966444969177,0.2864791313186288,-0.05288951098918915,-0.3530870801769197,0.12045153044164181,-0.488953672349453,0.1818492696620524,0.21799189364537597,-0.7489220183342695,-0.12135204672813416,0.521961007732898,-0.818955599796027,0.13955341093242168,0.8133703744970262,-0.3453249717131257,0.8860670602880418,-0.5579684264957905,0.3282184461131692,-0.1342496951110661,0.6583261140622199,-0.4057415444403887,0.7494360920973122,0.8705987562425435,-0.053053284995257854,-0.5095458347350359,0.6241739955730736,-0.6022334997542202,-0.4280404304154217,0.3867775658145547,0.03869095956906676,-0.5330332918092608,0.648956224322319,-0.5872267559170723,-0.6508441679179668,-0.842874463647604,-0.05797372432425618,-0.06827236013486981,-0.9292933233082294,0.6022533350624144,-0.12161780102178454,0.18943059584125876,0.46243805484846234,0.20008304761722684,-0.543727511074394,0.5594627750106156,-0.44654558040201664,0.43986724643036723,-0.9717303849756718,-0.6945782285183668,0.6636328808963299,0.8929375614970922,0.2281356225721538,-0.6501383292488754,-0.463272157125175,-0.9462689873762429,0.8577288058586419,-0.6459298450499773,0.2188852932304144,-0.978928386233747,0.2746633901260793,0.9116439335048199,-0.7661756332963705,-0.9284463259391487,0.9631546251475811,-0.9419376640580595,-0.36047243885695934,-0.9968263739719987,-0.3105712910182774,-0.766728273127228,-0.5438746688887477,0.0644363509491086,-0.668482537381351,0.4025695603340864,0.5476895929314196,-0.7900426262058318,-0.4837380056269467,-0.8021710985340178,0.42447469709441066,0.4225959023460746,-0.782583546359092,0.403105775360018,0.17546449322253466,0.008985686115920544,-0.4964829096570611,-0.9520089165307581,-0.7379858875647187,0.24346550600603223,-0.983660685364157,-0.7196835284121335,0.6058708294294775,0.09856995055451989,-0.5156701258383691,0.5091524850577116,-0.8291935087181628,0.40157601702958345,-0.15754130529239774,-0.25697535602375865,0.7678018431179225,-0.09932143753394485,0.19985446659848094,0.11205238895490766,-0.629172220826149,0.10736554767936468,-0.9124631122685969,-0.27744711516425014,0.3577760672196746,0.7989255059510469,0.3995758225210011,-0.46815297612920403,0.6613268381915987,0.48618678841739893,-0.9001541417092085,-0.8884020494297147,0.4130347641184926,0.984196363016963,0.7798974951729178,-0.8033185987733305,0.1864641117863357,0.5061447531916201,0.17928844736889005,-0.9106209934689105,0.8192426837049425,0.5443354505114257,0.7026687716133893,0.8631129339337349,-0.25838923593983054,-0.009521902538836002,0.5624163947068155,-0.33284646878018975,0.5008155894465744,0.3911966057494283,0.26101246709004045,0.7613888005726039,0.2221582680940628,-0.03359621251001954,0.021336146630346775,-0.7821319079957902,-0.5335928723216057,-0.3216375936754048,0.6415727105922997,-0.8253482868894935,0.05326177505776286,0.8751592980697751,-0.4222095338627696,0.3289834097959101,-0.4593663434498012,0.19394979160279036,0.6059651453979313,0.8049442023038864,-0.026869239285588264,0.1278670895844698,0.521852598991245,-0.06633892003446817,-0.23313427018001676,-0.37217008136212826,0.03918950725346804,0.3351383814588189,0.3695475785061717,-0.8934247121214867,-0.3815182629041374,0.2485681315883994,0.7570341341197491,0.7052783411927521,-0.37207556003704667,0.7705557686276734,-0.15372725669294596,-0.32391506899148226,0.4067938970401883,0.7721890560351312,-0.531386736780405,0.897621423471719,-0.6987261660397053,-0.5675445292145014,0.2680442645214498,0.14721599593758583,0.8784710755571723,0.7568854670971632,0.697139011695981,0.09775464702397585,-0.304627641569823,0.7493398888036609,-0.8439920558594167,0.5385175561532378,0.2516830824315548,0.1335395253263414,0.43651899974793196,-0.03147241612896323,-0.43191754166036844,-0.4379716473631561,-0.5732825445011258,-0.859463328961283,0.40427726367488503,-0.46102326083928347,-0.9528400138951838,-0.604271455667913,0.32393693551421165,0.899472972843796,-0.5435957103036344,0.2790103820152581,0.6099251201376319,-0.7639448437839746,-0.16671872092410922,-0.10665981704369187,-0.3439929923042655,-0.33436801424250007,0.2012060838751495,-0.5163031020201743,0.46690376242622733,-0.4670710051432252,0.5606207782402635,0.883533216547221,-0.2803717562928796,-0.5214679553173482,0.5785132041200995,-0.9379523126408458,0.5359196197241545,0.08919371198862791,-8.319923654198647e-05,-0.16810688888654113,0.9534813752397895,0.7615333730354905,0.6705696652643383,0.7974504241719842,0.47431557765230536,0.28901337599381804,-0.2073180517181754,0.286995941773057,-0.16162936948239803,0.2740635578520596,0.37894372176378965,-0.5614197752438486,-0.8986878516152501,-0.9461675803177059,0.8532666596584022,0.036146922037005424,0.612534855492413,0.04300925461575389,0.4300554837100208,-0.21956401551142335,0.4158891625702381,0.07013659598305821,0.2213148563168943,0.5150612839497626,0.35797489481046796,-0.887465750798583,-0.9430013573728502,-0.9032297218218446,-0.6500747841782868,-0.060274374671280384,-0.1687859008088708,0.14379299758002162,-0.14906835788860917,0.22885954659432173,0.21082356572151184,0.09891914390027523,0.06131736375391483,0.8036656677722931,-0.7017678436823189,0.10904445219784975,-0.2716268450021744,0.5546843432821333,0.5467623006552458,-0.5692955618724227,0.932790394872427,0.5774955321103334,0.11256344290450215,0.9125281837768853,0.11736526619642973,0.3362294998951256,-0.5607169177383184,0.16039614519104362,0.7197781135328114,0.6152611072175205,-0.9707814231514931,-0.37463519303128123,-0.3796750819310546,-0.5252966792322695,0.3142678360454738,-0.6532610193826258,-0.9444113010540605,0.5157078807242215,0.6270300345495343,0.7859402415342629,0.8530858014710248,-0.7975746253505349,0.17800165200605989,-0.20266944402828813,-0.5299573768861592,-0.4932749131694436,-0.004780449438840151,0.8327769432216883,0.33120846515521407,-0.8859976311214268,0.08550588460639119,-0.7386825266294181,0.11506987735629082,-0.553202151786536,0.898816529661417,-0.3014398659579456,-0.192280653398484,0.6065622963942587,-0.0763331986963749,0.5408167084679008,-0.15015192003920674,0.09427151922136545,0.24267939943820238,-0.7013536202721298,-0.9475172287784517,0.9549982571043074,0.9829783225432038,-0.8758886833675206,0.13214315799996257,-0.7784272162243724,0.20641333237290382,0.7930631269700825,0.1640481543727219,-0.9930937783792615,-0.6099216784350574,-0.2942473189905286,0.23196248663589358,0.5918212742544711,-0.8607647959142923,-0.636724270414561,-0.4851453294977546,0.6547942692413926,-0.838849363848567,-0.9303285405039787,-0.886631844099611,-0.20027480693534017,0.019161392468959093,-0.5533621786162257,-0.6940841809846461,0.2333021815866232,0.1564500411041081,-0.36117420764639974,-0.5400936771184206,-0.7726492416113615,0.2279045064933598,0.423488381318748,0.1426359391771257,-0.4474047562107444,-0.8348128474317491,0.5020831292495131,0.24711445160210133,0.848080737516284,0.6756199849769473,-0.3068077228963375,0.07766965962946415,0.8041173508390784,-0.40667575038969517,0.5606206892989576,0.31617750227451324,0.32541748555377126,0.2944753682240844,-0.4890197799541056,0.5822805278003216,-0.006701488979160786,0.8165620849467814,-0.654085511341691,0.11923055583611131,0.9600409623235464,0.444657722953707,-0.5256619928404689,0.7849535695277154,-0.5637239189818501,-0.05571404891088605,0.7765738950110972,0.5462178005836904,-0.37792268907651305,-0.4769534752704203,0.2809379925020039,0.0017479555681347847,0.22557419957593083,0.03225215012207627,-0.4851227840408683,0.9865295528434217,0.6727433213964105,0.03802175913006067,0.9941038144752383,0.010509807150810957,0.5385970273055136,-0.7482664533890784,-0.7967806844972074,-0.1400501448661089,0.6614469266496599,0.6259858445264399,0.8404410374350846,0.9711325517855585,-0.3734007515013218,0.9808499151840806,-0.36997237196192145,-0.37940571922808886,-0.783363725990057,-0.9746267390437424,-0.9581367229111493,0.6707270215265453,-0.8173778541386127,-0.8138307626359165],"z":[0.8813552907668054,-0.4295170549303293,-0.11168582178652287,-0.398555098567158,0.3656348926015198,-0.45380275091156363,0.49244203325361013,0.47814687294885516,0.589329095557332,-0.6917563700117171,0.7599722295999527,0.28035244392231107,0.1819757828488946,0.5764358509331942,0.8958032010123134,-0.3204184980131686,0.7030503200367093,-0.8200861886143684,0.5275470879860222,0.4321751627139747,-0.7473879759199917,-0.17178195295855403,0.39439384266734123,-0.2117865444160998,-0.9645283063873649,-0.3261854285374284,0.8720827181823552,0.9231652286835015,0.49528311751782894,0.38891402864828706,-0.4064917336218059,-0.5050504333339632,0.34095754148438573,0.6319705001078546,0.1876302370801568,-0.9191122818738222,0.023345467168837786,-0.4314441829919815,0.061303178779780865,0.2867483515292406,-0.0942454501055181,0.5057752830907702,-0.6382860406301916,0.6640797778964043,0.6522176871076226,-0.16888422332704067,0.1337795928120613,0.5070778871886432,0.5300318631343544,0.42959781596437097,-0.3840388595126569,0.7410914367064834,-0.7863522069528699,0.10659599862992764,0.9650639039464295,0.18233922868967056,0.035139165353029966,0.5070584546774626,0.8019707542844117,-0.7886716169305146,0.22049514390528202,0.04641215177252889,0.9224636447615921,0.10185100696980953,0.8101113205775619,0.8784779882989824,0.8307095891796052,0.7761642853729427,-0.8163099028170109,-0.7850928097032011,0.3424410978332162,0.7085496694780886,-0.5636959681287408,-0.25606529228389263,0.16213001077994704,0.44269789289683104,0.9870523903518915,-0.5689351535402238,-0.6122343535535038,0.4189849621616304,0.2878277967683971,0.6238983110524714,0.38621565233916044,-0.3693994148634374,-0.8163454062305391,-0.07995641697198153,-0.01466560922563076,-0.8822273877449334,-0.7079357113689184,0.6719155297614634,0.3906274721957743,-0.12928721401840448,0.7693832507357001,-0.49358060490339994,0.6611795416101813,-0.6892733951099217,-0.24360643839463592,0.192927579395473,0.14412908256053925,-0.24371808487921953,-0.6247111582197249,0.8725989456288517,0.4347962369211018,-0.20050725666806102,-0.9176132879219949,0.08966371091082692,-0.3129448243416846,0.8341915099881589,0.6791321178898215,-0.9175921413116157,-0.8162779076956213,-0.519509831443429,-0.25308378133922815,-0.777327383402735,-0.9878454520367086,-0.7524740933440626,0.5659431214444339,0.168043015524745,-0.40555078350007534,0.08226901013404131,-0.2504345951601863,-0.3375798324123025,-0.8565567629411817,-0.41765289194881916,-0.46975843282416463,0.17739809397608042,-0.5259055402129889,-0.5706074773333967,-0.333469120785594,-0.3963306723162532,0.7047384055331349,0.7848518807440996,-0.9384722136892378,-0.7992940512485802,-0.8929648003540933,-0.0187606830149889,0.8246847465634346,-0.5985192894004285,-0.20451354375109076,-0.5855234577320516,0.21455545723438263,-0.7000489961355925,0.865148798096925,0.019236546009778976,-0.7514289231039584,0.16673843935132027,-0.18832112662494183,0.7403527381829917,-0.8196258498355746,0.7370452135801315,-0.1399509971961379,-0.8007093700580299,-0.08681983919814229,-0.11239023320376873,0.7351711448282003,-0.32385523431003094,-0.43292184453457594,0.15647668857127428,-0.07172092096880078,-0.9786373758688569,-0.9785613785497844,0.15772853838279843,0.3679389515891671,0.5710754408501089,-0.7082399870269,-0.8972411579452455,-0.2540006744675338,0.30024826899170876,-0.5383652695454657,-0.168956748675555,0.8496111845597625,0.029579732101410627,0.9426846913993359,0.49003270687535405,-0.2352849319577217,0.007974452339112759,0.12092993082478642,-0.765088097192347,0.9302011486142874,0.02238698536530137,0.2793885148130357,0.6504943924956024,0.45937785040587187,-0.9376994930207729,-0.808036410715431,-0.1769118388183415,0.806488314177841,0.6718261269852519,-0.9751451439224184,-0.8617009376175702,-0.15530646964907646,0.1664223875850439,0.8100758073851466,0.07644610479474068,-0.3099771640263498,0.9212314593605697,0.9892861205153167,-0.8867757124826312,0.40987020591273904,-0.7066023196093738,0.6924838498234749,-0.7836040449328721,-0.3854929502122104,0.766264102421701,0.2524520708248019,-0.9467968824319541,-0.7629033420234919,-0.4549127477221191,-0.19770508725196123,0.26241531781852245,0.8891187817789614,0.4748697504401207,0.8443155596032739,0.03397484216839075,-0.2259326041676104,0.48217060742899776,0.6925615975633264,0.3647805699147284,-0.9220071630552411,-0.40866286866366863,-0.1997155575081706,0.7013296405784786,0.990232543554157,0.6331959874369204,-0.7599711786024272,0.46899897092953324,-0.9565691770985723,-0.5656379284337163,0.7864681980572641,-0.32262028893455863,-0.3228159751743078,0.120500722900033,0.8535142978653312,0.06015617959201336,0.30867241928353906,0.6538498094305396,-0.7216088767163455,-0.47299154940992594,-0.44458327163010836,0.28392287716269493,-0.6740220868960023,0.2197477542795241,0.09813448321074247,-0.22692432859912515,-0.42373359482735395,0.7469104719348252,0.5398841784335673,-0.271084051579237,-0.49601571122184396,0.9444059859961271,0.6047901911661029,-0.9260524259880185,0.3326804982498288,-0.5972773041576147,0.8392437864094973,-0.2455477616749704,-0.8430477301590145,-0.4864318850450218,0.6044472367502749,-0.9031192464753985,-0.1649278230033815,-0.9593900158070028,-0.022026061546057463,0.8410746320150793,-0.45312125887721777,-0.021155137568712234,0.4433749308809638,-0.33194537553936243,0.6126886061392725,-0.5448338207788765,0.14799640187993646,-0.8938934444449842,-0.16712014004588127,0.1604221467860043,-0.039912131149321795,-0.6174981324002147,-0.2238801741041243,0.5313861044123769,-0.22908519487828016,-0.8720060093328357,0.7652039458043873,0.6116025960072875,0.19428643491119146,-0.6144476952031255,0.45304929791018367,-0.5268952241167426,-0.6901193880476058,0.5686443443410099,-0.10801649885252118,-0.5341224470175803,-0.856240910012275,-0.15863336669281125,-0.8050028295256197,-0.6240640175528824,-0.27132855355739594,-0.16654509771615267,0.6935305767692626,-0.36409378750249743,0.10029065096750855,0.821247614454478,0.6472601592540741,0.6993289426900446,0.31219069054350257,0.09860777435824275,0.5678192214109004,0.023001134861260653,0.5044969329610467,-0.4806531621143222,-0.9476415561512113,0.5915231164544821,0.9955536215566099,0.990048733074218,0.539111246354878,-0.5114527964033186,-0.2358544343151152,0.8363194484263659,0.2963176113553345,-0.6715706628747284,0.7037211735732853,-0.6499765980988741,0.051023122388869524,-0.12403198564425111,-0.7316968175582588,-0.05539376987144351,-0.0544061241671443,0.6015646033920348,0.4266292084939778,0.8011625679209828,-0.5123100425116718,-0.6000227029435337,0.7786280903965235,0.009055041242390871,-0.06238800846040249,0.744690612424165,-0.83452262962237,0.617752774618566,-0.8761637071147561,0.6181103964336216,0.4690613215789199,-0.42109930282458663,0.03167633758857846,0.49177677277475595,-0.7653340911492705,0.5185044375248253,0.8050894974730909,-0.5768890641629696,-0.31420009955763817,0.7481293259188533,-0.6755622485652566,0.8503348650410771,-0.8671911079436541,0.8720379890874028,-0.20647748606279492,-0.1638410473242402,0.2319059818983078,0.3125385930761695,0.11317491764202714,0.2681256006471813,0.9804599499329925,0.012843767646700144,-0.8844954753294587,-0.5601516319438815,0.3301182668656111,0.8363631716929376,-0.06377133075147867,0.44953487534075975,-0.5276087503880262,0.36450528306886554,0.5236431490629911,-0.22093632956966758,-0.7108196597546339,-0.9352681362070143,0.1299484889023006,-0.5073306099511683,-0.6477029323577881,-0.22208544984459877,0.6750458250753582,-0.6805270770564675,-0.1995248394086957,0.48118263855576515,0.7252955846488476,-0.07571097882464528,-0.7690563169308007,0.517640613950789,0.7136074011214077,-0.24315527686849236,0.7652190844528377,0.2916085864417255,0.6137921274639666,0.7098310543224216,0.5328943743370473,-0.48968976084142923,-0.8982489295303822,-0.8178233033977449,0.9990691039711237,0.5428892602212727,0.8404695312492549,0.3019823939539492,0.8334241211414337,-0.3568615010008216,0.1391072361730039,0.8006155020557344,-0.8839063462801278,0.9821334583684802,-0.47304468927904963,0.02595421625301242,-0.7275353851728141,-0.9612684953026474,0.42040264746174216,0.11711128614842892,0.8716232879087329,0.43706560088321567,-0.12937030848115683,0.8908567330799997,0.8050216776318848,0.9245975399389863,0.11205759178847075,-0.08761778986081481,0.5801735077984631,-0.38040548376739025,-0.3277390478178859,-0.17181264190003276,-0.3819486303254962,-0.41573025891557336,0.03319623973220587,-0.5652204658836126,0.3815133557654917,-0.5390674299560487,-0.08116924110800028,-0.567681991495192,0.10038612643256783,0.22910731937736273,0.6064826799556613,0.5406537638045847,-0.6531888698227704,0.3942214399576187,-0.9770018914714456,0.251334595028311,0.8520757700316608,-0.529201262164861,-0.6684673358686268,0.5225734226405621,0.846850108820945,-0.43648900743573904,0.03274216130375862,0.22452041087672114,-0.9736159932799637,0.6447690990753472,-0.28894043900072575,-0.09260830609127879,-0.624154896941036,-0.7938546845689416,0.8014033869840205,0.2470720699056983,-0.18950651912018657,0.7647088803350925,-0.771284013055265,-0.995327721349895,-0.8198748277500272,0.0023494064807891846,0.8320082472637296,0.4683310207910836,-0.9441643548198044,-0.4046196863055229,0.35556413792073727,0.8638293761759996,0.27780338982120156,-0.25700171245262027,0.5516394171863794,0.2932626917026937,-0.8297941936179996,-0.5717642460949719,0.49083342077210546,-0.07335954438894987,-0.12939393194392323,0.4999887333251536,0.3599541652947664,-0.10091153206303716,-0.5121753793209791,-0.09343973454087973,-0.7959312377497554,0.42576202750205994,-0.00916532939299941,-0.2907104268670082,-0.7175250658765435,-0.4973973408341408,-0.6977461883798242,0.3886224781163037,0.1503217197023332,-0.5680693984031677,-0.3272108971141279,0.7603303277865052,0.7824625293724239,-0.8787270747125149,-0.968095741700381,-0.6048090229742229,-0.9510305463336408,-0.07422451442107558,0.4613628713414073,0.6397226448170841,0.953994357958436,0.47251752438023686,-0.6866273861378431,0.4564626384526491,-0.9214059868827462,-0.8737767236307263,-0.19288164330646396,0.9995412738062441,0.925180965103209,0.21523055946454406,-0.5091773685999215,-0.3262530150823295,-0.9911348926834762,0.97061264840886,0.0714446734637022,-0.10933529259636998,0.6478994293138385,-0.8562977872788906,0.0021154703572392464,-0.10047417273744941,0.7262136088684201,0.7359884683974087,-0.17597551923245192,-0.5950576085597277,0.7955274414271116,0.832163427490741,0.9535655635409057,0.3098574550822377,-0.24597287038341165,0.963348317425698,0.3429815419949591,0.45279402332380414,-0.4778207605704665,-0.38131970819085836,-0.27647477062419057,-0.19445933867245913,-0.7593726324848831,-0.1618089503608644,-0.9677887111902237,-0.9049243927001953,-0.40932998061180115,0.11582257552072406,0.4984970949590206,-0.93663235520944,-0.5295752217061818,-0.10385479731485248,-0.9719758108258247,0.804201397113502,-0.9886696287430823,-0.5619975454173982,0.3766476484015584,-0.6434531644918025,-0.28751572500914335,0.8004514197818935,-0.9808731381781399,-0.6628085486590862,-0.5308532081544399,0.5453913006931543,-0.12623333558440208,0.3237502765841782,-0.9872966445982456,0.7179167112335563,-0.37282228423282504,0.5489419167861342,0.7854848951101303,-0.8622713941149414,-0.22920192824676633,0.633439414203167,-0.6002303715795279,0.24260728619992733,0.37354369601234794,0.33885458996519446,0.8208962883800268,-0.6765052475966513,-0.1876134965568781,-0.1002209996804595,0.7164511228911579,0.8845867901109159,0.000414953101426363,-0.4086907389573753,0.648829001467675,0.133239827118814,0.831676481757313,0.06968328636139631,-0.644462232477963,-0.32951966067776084,-0.023020315915346146,-0.9448326313868165,-0.6711225532926619,0.38229744182899594,0.7751851784996688,-0.17835008446127176,0.33249326376244426,0.39621098153293133,-0.5026861098594964,-0.01205422030761838,-0.972361771389842,0.9228692152537405,-0.4099628967233002,-0.2692612842656672,0.9692103443667293,0.18055046303197742,0.11627956898882985,0.48538018483668566,0.597386387642473,0.5927682081237435,0.8553257486782968,0.7228481145575643,-0.5356135400943458,-0.8111904235556722,-0.3711108067072928,0.26693646144121885,0.8607912422157824,0.3813524693250656,0.9019870096817613,0.5977746490389109,0.39509123424068093,0.7989725139923394,0.6784200202673674,-0.960908470209688,-0.9995150044560432,0.33789551816880703,0.01139032980427146,0.937461017165333,0.8979169055819511,-0.30991131067276,-0.26748854760080576,0.01282239006832242,-0.709753938484937,-0.3885696488432586,-0.31527018640190363,-0.712423755787313,-0.15094576962292194,-0.6601249617524445,0.9394999099895358,-0.31674909964203835,0.2483094660565257,-0.29949739295989275,-0.7117671044543386,0.4165646587498486,0.3863179995678365,-0.9085799907334149,0.9172397800721228,-0.22354139341041446,0.9424977051094174,0.6459792945533991,0.4828490111976862,-0.17459477530792356,-0.09823803091421723,-0.9822621806524694,0.6810649144463241,0.41943017672747374,0.9125019358471036,-0.8856187276542187,0.9906371333636343,-0.5981445731595159,-0.0699168611317873,0.2816766160540283,0.6837830794975162,0.3529571006074548,0.5872452757321298,-0.005697046406567097,-0.16406036633998156,0.3599483696743846,-0.9593554139137268,0.38563784258440137,-0.4762686458416283,-0.06083885161206126,0.7432485027238727,0.740412421990186,0.4271672423928976,-0.2893639225512743,0.4824925111606717,-0.45509134186431766,0.24015120696276426,0.07462948514148593,-0.4707595342770219,-0.18810421507805586,-0.6259568687528372,-0.7145281741395593,-0.43130567390471697,0.8255246770568192,0.46786954440176487,0.29367375606670976,0.5209778966382146,0.0943549801595509,-0.8313044281676412,-0.6504758554510772,0.33688165433704853,0.8875668710097671,0.8116888082586229,-0.23276892909780145,-0.5626417500898242,0.7216004300862551,-0.7583617242053151,-0.9768007192760706,-0.40366910910233855,0.38319084933027625,0.9572146371938288,-0.6722614131867886,-0.6609368920326233,0.34559992980211973,0.9326656074263155,-0.7635400709696114,-0.20531695848330855,-0.16917584603652358,-0.8372973287478089,-0.0621537477709353,-0.703257791697979,-0.568011627998203,0.488536196295172,0.5787194343283772,0.7348385448567569,-0.41520520532503724,-0.38500600261613727,-0.47255685506388545,0.08668507123365998,0.23494831239804626,0.6862756935879588,-0.44607653468847275,-0.6634882888756692,-0.3142659477889538,-0.3376661790534854,-0.5816051312722266,-0.32267702743411064,0.9309328338131309,0.4809076804667711,-0.8855497059412301,-0.4777158200740814,0.8977519595064223,0.6832221611402929,-0.05630979314446449,-0.009247875772416592,0.47305542044341564,-0.22283615777269006,-0.013030908536165953,0.6902480977587402,0.790748530998826,-0.22712109610438347,-0.3804490612819791,-0.3145816926844418,0.6510618031024933,-0.36992140766233206,-0.26042967941612005,-0.36949390079826117,0.4995331522077322,-0.924170455429703,0.3680288973264396,0.23798780236393213,0.9025725978426635,-0.21399065293371677,0.20034170243889093,-0.15294916974380612,-0.8022332293912768,-0.23375130351632833,0.29404270136728883,0.173379460349679,-0.7851271093823016,0.6993484012782574,-0.8218760904856026,-0.212119045201689,-0.2941828742623329,0.9763016952201724,0.9009292433038354,0.5618986743502319,0.4126047077588737,0.4865298783406615,-0.4676994369365275,0.7832560329698026,0.32880208920687437,-0.1076068626716733,-0.9129011570475996,0.4840875035151839,-0.5729256016202271,-0.49715369287878275,-0.17908961651846766,0.5924121583811939,0.18314260803163052,0.3538852003403008,-0.08049961691722274,-0.18708371743559837,-0.2652088524773717,-0.06993470015004277,-0.9943128400482237,0.401599467266351,0.45822412613779306,-0.6788393892347813,-0.26964096585288644,0.5653691426850855,-0.3354033469222486,0.6484805722720921,0.8226612331345677,0.6229578224010766,-0.21452087862417102,-0.4839345165528357,0.3485311381518841,0.8878598073497415,-0.5351665383204818,0.806803563144058,0.47678482020273805,0.6410133969038725,-0.012623750139027834,0.5268222228623927,-0.8674834608100355,0.43830596283078194,-0.30751423351466656,-0.4124811813235283,0.9312879466451705,-0.769566289614886,0.3542429665103555,0.5655769067816436,0.29797460744157434,-0.8881740854121745,-0.3769712704233825,-0.2696030926890671,0.2034330447204411,0.06589916907250881,-0.16645632265135646,0.15733801433816552,-0.7353492076508701,0.35421292344108224,-0.8053780114278197,-0.039842425379902124,-0.1993032698519528,0.41201740968972445,0.7766357059590518,-0.6802066038362682,-0.5182464313693345,0.779193305876106,0.43085957737639546,-0.2079144506715238,0.28250441001728177,0.6842271252535284,-0.6046880790963769,-0.8718518046662211,0.3240823387168348,0.4908212819136679,-0.604846921749413,0.9236967116594315,0.7776249321177602,0.824042787309736,0.37679027719423175,-0.9832737310789526,-0.40151551738381386,-0.7176357894204557,-0.28271192591637373,0.688063089735806,0.5268763457424939,-0.42183354031294584,0.1971867880783975,-0.6082524098455906,0.6075877957046032,-0.9612255059182644,0.5447286972776055,0.7216356117278337,-0.34730152506381273,0.24311172123998404,0.4076941558159888,-0.7249418315477669,0.3734088437631726,-0.128974967636168,0.08019272517412901,-2.611568197607994e-05,0.9429145948961377,-0.8990897848270833,-0.9534102198667824,0.7537312135100365,-0.34671332128345966,-0.17968899989500642,-0.3758664894849062,0.3304946394637227,0.7833152464590967,-0.4351838007569313,-0.6862193173728883,0.9902851800434291,-0.8166191978380084,0.652945164591074,0.2618671008385718,-0.7597224926576018,0.5255179954692721,0.13069586176425219,0.4398204260505736,-0.856494712177664,-0.09094743942841887,0.9339770823717117,-0.17049766890704632,-0.5878345584496856,0.07940828893333673,-0.5787244872190058,-0.39863285049796104,0.36232294514775276,-0.850384724792093,-0.13042996870353818,0.5908158360980451,0.3149453205987811,0.9307443746365607,0.004114097915589809,-0.7080559898167849,0.7252292516641319,-0.46212029457092285,0.9865077761933208,0.3871227325871587,0.6363577684387565,-0.39450740767642856,-0.25560898752883077,0.5747843659482896,0.25358583219349384,-0.5855593485757709,0.3146955808624625,-0.6351156667806208,0.20551025494933128,0.507562612183392,0.8367853653617203,0.20432857796549797,-0.19165181135758758,-0.6117096529342234,0.6696477858349681,-0.06891353987157345,-0.9603961454704404,0.5068545304238796,-0.2966338489204645,0.3324303412809968,-0.03595493547618389,-0.3360217800363898,0.41004963079467416,-0.5564024266786873,-0.5689554042182863,-0.8586278446018696,0.2011837475001812,0.20447222236543894,-0.5798884024843574,-0.07084290497004986,-0.22349926363676786,-0.6964046666398644,-0.9144930960610509,-0.2088688537478447,-0.7576963389292359,0.07332749152556062,-0.38926716800779104,-0.022931778337806463,0.8048209324479103,0.1810665731318295,-0.3261115988716483,0.27608540607616305,0.22551261400803924,0.5163080208003521,-0.16722116945311427,-0.870614139828831,-0.513854518532753,0.10036761965602636,-0.5907504633069038,-0.9784038877114654,-0.8111781533807516,-0.525418268982321,-0.6811824142932892,0.9366813180968165,-0.3312734281644225,0.6256800293922424,0.06600450770929456,0.3904065629467368,-0.284467744641006,-0.1441596602089703,-0.555224743206054,0.9374408982694149,-0.2954855472780764,0.12495007272809744,0.9217197764664888,-0.23050381941720843,0.028978072106838226,-0.7613194002769887,0.09446253022179008,-0.5775229437276721,0.4938955996185541,-0.3538645878434181,0.3700994639657438,-0.985193227417767,0.7345940070226789,-0.3079561232589185,0.06914827646687627,-0.3685859558172524,0.5545371631160378,-0.1395494733005762,-0.7465714798308909,-0.29158767918124795,0.23110729362815619,0.8238690826110542,0.4511332167312503,0.9798465096391737,0.7522706179879606,0.3151316326111555,-0.3052427298389375,0.3120849751867354,0.6980048841796815,0.8653498627245426,0.8261539852246642,0.8492403095588088,-0.8291571442969143,-0.9289330476894975,0.7801072699949145,-0.4938716380856931,-0.896322965156287,0.6891229995526373,-0.40606021881103516,-0.8320620995946229,-0.4899174855090678,-0.07812481326982379,-0.274051699321717,0.5675794151611626,0.3733667843043804,-0.29203401412814856,0.7831780854612589,-0.28400247683748603,0.7693604123778641,0.3362745875492692,-0.9893179964274168,-0.30089980317279696,0.5110479486174881,0.8459160029888153,0.767052220646292,-0.8504120991565287,-0.6257307925261557,-0.2792179733514786,0.2775604245252907,-0.13153672125190496,0.3174218568019569,0.7548096491955221,-0.32609843648970127,-0.0024842415004968643,0.4007292571477592,0.44723355304449797,-0.23449126817286015,0.06117273215204477,-0.17286823550239205,0.9217150383628905,0.2254199585877359,0.6072918833233416,0.585076691582799,0.8634047880768776,-0.7184794610366225,-0.6150712636299431,-0.19534514285624027,-0.1954023432917893,0.06704165739938617,-0.15467973006889224,0.770742001477629,-0.739633234217763,-0.5465139853768051,-0.30655629839748144,0.22468383330851793,-0.12510466668754816,-0.5769854849204421,0.11744385166093707,-0.47176420083269477,0.4652689415961504,-0.516294895671308,-0.6237063552252948,0.7483075154013932,-0.6758079938590527,-0.6689111548475921,0.32728799525648355,-0.16404997510835528,-0.4672456053085625,0.3339771800674498,0.6478239223361015,0.1480562104843557,0.39098355965688825,-0.1336201257072389,0.1659212508238852,-0.8605501228012145,0.564578864723444,0.5473017045296729,0.6377943851985037,0.8733580633997917,-0.21823824383318424,-0.7563930475153029,0.5438843835145235,-0.026646269019693136,-0.9805027209222317,-0.4320288938470185,-0.1389082153327763,-0.4343942813575268,0.19344379799440503,0.8283223956823349,-0.4616425377316773,-0.6748614287935197,0.03408917738124728,0.25375504279509187,0.6375553598627448,0.5037264251150191,0.8234998844563961,0.7416036734357476,-0.09746168740093708,0.7209791257046163,-0.0686325659044087,-0.794883078429848,0.9093747111037374,-0.5302439914084971,0.6704169954173267,0.0848301574587822,0.7841708515770733,0.8149930811487138,-0.6151895043440163,0.8426603749394417,0.008105763234198093,0.4951655096374452,-0.6218172363005579,-0.5131995901465416,0.0029532858170568943,0.8753394447267056,-0.19021502509713173,-0.1274363766424358,-0.9012424135580659,-0.2803789200261235,-0.7685173293575644,0.06213643494993448,0.24770908523350954,-0.7018414088524878,0.407660286873579,-0.12308127526193857,-0.5718976301141083,0.23725757049396634,-0.8326735044829547,-0.6912584146484733,0.37463408848270774,0.091692172922194,0.26105378940701485,-0.797560955863446,-0.2994218720123172,0.642745632212609,0.4064314509741962,-0.34402624145150185,-0.21773016406223178,0.30126085272058845,0.022218466736376286,0.05453267972916365,-0.7259713681414723,-0.041838116478174925,0.11941990861669183,0.49524451280012727,0.3842719942331314,0.8846572921611369,-0.7953793038614094,0.1940833581611514,-0.602032545953989,-0.8369609946385026,0.9090231722220778,0.8961160453036427,-0.4105522567406297,0.1956633497029543,-0.009704139549285173,0.04331961739808321,-0.9129539397545159,0.28357026167213917,-0.3305768654681742,0.4157931199297309,0.5523749371059239,-0.33466178365051746,-0.09203173173591495,-0.5861357417888939,0.8735029436647892,0.47397061018273234,-0.8772695977240801,0.12915540905669332,-0.6271654898300767,-0.3040466569364071,-0.9041811702772975,-0.508397666271776,0.41562618128955364,-0.20413810200989246,0.2816360080614686,0.17606926150619984,0.6000881600193679,-0.2842565895989537,-0.14748581405729055,0.17304970836266875,-0.8486728281714022,0.5928700650110841,-0.19305429933592677,0.3257671557366848,-0.5076436372473836,0.03460959205403924,-0.25967147620394826,-0.8505169441923499,-0.4397154254838824,0.6012512343004346,0.7628482137806714,-0.7480364353395998,-0.2695931848138571,-0.8833765480667353,0.30722173769026995,-0.4969641463831067,-0.883025721181184,0.9905668557621539,-0.6204922888427973,0.3133256509900093,0.17959535541012883,-0.7352042114362121,0.47621786640957,-0.4145568124949932,-0.7889759126119316,-0.30743251042440534,-0.9487904314883053,-0.27919010492041707,0.7180177574045956,0.741532598156482,0.08786833938211203,-0.6763859041966498,-0.055654444731771946,-0.8644419563934207,0.834189189132303,0.44928058981895447,0.123393967282027,0.09409921243786812,0.607261965982616,0.43189920764416456,-0.7534939427860081,-0.4055458679795265,-0.9065119405277073,-0.12486797664314508,0.5329621527343988,0.04218456894159317,0.003745436202734709,0.587673800997436,0.8902528709731996,-0.7427303143776953,0.39882181538268924,-0.9886242905631661,-0.30729280784726143,0.6029552067629993,-0.008230395149439573,0.4923597201704979,0.6014537308365107,0.8488979889079928,-0.6331224958412349,-0.3679977497085929,0.6538407541811466,-0.24630673229694366,-0.3716897019185126,-0.9780089762061834,0.8873560070060194,-0.1783456881530583,0.408500995952636,-0.9292273805476725,-0.8599542560987175,-0.07465143222361803,-0.027600660920143127,0.01858863653615117,-0.2629650686867535,-0.20763637078925967,0.31579901510849595,0.113972298335284,-0.5359302591532469,0.9080012948252261,0.1078754742629826,0.3246666113846004,-0.5673706312663853,0.8314758301712573,0.16803661920130253,-0.24187623942270875,0.14546395931392908,0.637227707542479,-0.9109774311073124,-0.7801967021077871,-0.7448290381580591,0.45935812033712864,0.6755444551818073,0.7151549076661468,0.8358488120138645,-0.32678686594590545,-0.6875711013562977,-0.8910604366101325,0.6301453355699778,0.7126865922473371,0.8981528268195689,-0.8332105102017522,0.8812311608344316,-0.5815534382127225,-0.7367043029516935,-0.9987346390262246,-0.39251441694796085,-0.9957043291069567,-0.18255869671702385,-0.6631130655296147,-0.8221723521128297,-0.24101297184824944,0.02554477658122778,0.06230880646035075,-0.5640272367745638,-0.1264542955905199,-0.1485346658155322,0.7761923456564546,0.8736357358284295,-0.055602266918867826,-0.6260743625462055,-0.770449738483876,0.017025970853865147,-0.12225578213110566,0.5726925539784133,-0.9629040420986712,-0.3790845079347491,0.784719041083008,0.798331955447793,0.3005356281064451,-0.6638389229774475,-0.0880904239602387,0.8497172053903341,0.3105177632533014,0.4969833414070308,-0.4886545748449862,-0.6467432589270175,-0.3284142059274018,-0.369661517906934,-0.6535383155569434,-0.005584962200373411,-0.956977866590023,0.4704420673660934,0.8963299635797739,-0.8255267944186926,-0.7517256885766983,0.8421396920457482,-0.8621557205915451,-0.29833335615694523,0.38854047609493136,0.5334392543882132,-0.15677981777116656,0.7170342309400439,0.3363125268369913,-0.07638714322820306,0.8573396089486778,-0.9980102409608662,-0.7381043168716133,-0.9313650843687356,0.33832060918211937,0.24327524844557047,0.5082443342544138,0.6274426956661046,-0.96164146438241,-0.5716199465095997,0.06919889291748405,-0.7501684832386672,-0.1550832623615861,-0.006769081577658653,0.45407015224918723,-0.83880017651245,-0.917200852651149,0.8355844095349312,-0.9933776198886335,-0.13210925599560142,0.10581270838156343,0.6891142660751939,-0.1303742416203022,0.28618699219077826,0.25763579783961177,-0.18185382476076484,-0.5364657426252961,0.16183100594207644,0.297121262177825,-0.030537507496774197,0.7914411914534867,-0.10848888335749507,-0.15353679563850164,-0.49429598078131676,-0.9987861760891974,-0.3003429346717894,-0.10800491319969296,-0.1185733713209629,0.10929518193006516,-0.7878600941039622,0.7880573938600719,-0.8772383504547179,0.7542655868455768,-0.4215380111709237,-0.47142111230641603,-0.3535433765500784,-0.0679661906324327,-0.8636842910200357,0.4364163940772414,0.3930560192093253,-0.3509170259349048,-0.5262869172729552,0.7308915928006172,0.8206932959146798,0.5759525508619845,0.6695422176271677,0.11358389118686318,-0.09868672210723162,0.6618807190097868,-0.4088238039985299,-0.11088381009176373,0.4971249420195818,0.01444305945187807,0.6476390594616532,0.9947902439162135,0.5405393927358091,0.46802623104304075,0.6503862761892378,0.4369858894497156,0.0007887636311352253,0.041996118146926165,0.12248952174559236,0.39373692916706204,-0.8214801764115691,-0.022080257534980774,0.8740549460053444,0.9590501743368804,0.5325896046124399,0.7746021905913949,0.6138598620891571,0.34344452898949385,0.35859207855537534,-0.08558529475703835,-0.9539870987646282,0.38856987887993455,0.5415012091398239,0.9002747526392341,0.29794614715501666,-0.4759922241792083,0.10278475983068347,-0.8133382871747017,-0.6145161399617791,-0.4152719881385565,0.2627006941474974,-0.7419616049155593,0.13012581132352352,0.33874589251354337,0.6904937531799078,-0.9585847738198936,-0.9173877867870033,-0.002856422681361437,-0.3131558275781572,-0.6350151873193681,-0.8379015396349132,0.5136715257540345,0.8757602768018842,-0.9963899911381304,-0.6810236913152039,-0.45213109301403165,0.8513643476180732,0.994766887743026,-0.12431604415178299,-0.024211931508034468,0.17029658844694495,-0.35329264402389526,0.5500738141126931,0.9486365565098822,-0.24662911286577582,0.2410992095246911,-0.9627371639944613,0.8588900282047689,0.4685678584501147,-0.46877249237149954,-0.5495848911814392,-0.8119254312478006,-0.00018817279487848282,-0.8280051429755986,0.7583082942292094,-0.4122057566419244,0.43660037452355027,0.00826468551531434,-0.2571990378201008,-0.14854035526514053,0.3766801469027996,-0.5356277725659311,-0.271569715347141,-0.8970825714059174,0.6364563936367631,-0.5498283267952502,0.538298025727272,-0.8817784758284688,-0.9707159637473524,-0.47892567282542586,0.32862853491678834,0.7689064727164805,-0.29319247184321284,0.3200827953405678,-0.18704455206170678,0.48922806372866035,-0.5788142676465213,0.47807375248521566,0.21813845820724964,0.4934793282300234,-0.8332450124435127,0.11520733777433634,-0.5531816971488297,-0.7940338286571205,-0.8601895556785166,-0.9529994302429259,-0.31493752356618643,0.6080494779162109,0.8000112855806947,-0.9855397837236524,-0.6425562682561576,-0.7658013529144228,-0.3077243026345968,-0.511484055314213,-0.3172865305095911,-0.9369424371980131,-0.3916971432045102,-0.9349591601639986,0.9183222074061632,-0.3278301344253123,-0.8305839942768216,0.7780338367447257,0.5736225829459727,0.8265966670587659,-0.9801838994026184,-0.4019497469998896,-0.9269852787256241,0.3759123650379479,0.6710816235281527,0.8749787174165249,-0.028685681521892548,-0.3369446755386889,-0.297769573982805,0.5753463190048933,0.1533911949954927,0.8490185332484543,-0.14019654178991914,-0.9882061840035021,0.2132422304712236,0.3862637747079134,0.02970699453726411,0.13395148236304522,-0.12853297544643283,-0.632782343775034,0.43158655473962426,0.6087823272682726,0.6589622981846333,0.2846310371533036,-0.8826891034841537,-0.934587421361357,0.8180881855078042,-0.14219952002167702,0.7593169137835503,0.3177822376601398,0.2465210841037333,0.16821903409436345,0.5276590338908136,0.09314040467143059,0.09557306487113237,-0.9899265863932669,0.6588530098088086,-0.2692485749721527,-0.5069217318668962,-0.45259359339252114,0.17276747850701213,0.41633472265675664,0.07889888854697347,0.8603814034722745,-0.627634400036186,0.5987742156721652,0.1619581920094788,-0.8032474578358233,-0.05949297687038779,0.06466361414641142,-0.34598915837705135,-0.03046717308461666,0.737430150154978,0.8198986672796309,0.2792721502482891,0.2163935201242566,0.5742971454747021,-0.2740998901426792,0.3295550695620477,0.07829602668061852,0.9343579402193427,0.704563987441361,0.18346167774870992,-0.4908820823766291,-0.5669786385260522,-0.2893476546742022,-0.3426759303547442,-0.6142388340085745,-0.26599223678931594,-0.0003392430953681469,0.5949883577413857,0.7723655384033918,0.32262818282470107,-0.2363596404902637,0.38341370271518826,0.734851801302284,0.34208894753828645,0.20465817395597696,0.6121559226885438,-0.5710871848277748,-0.4838889609090984,-0.8294387147761881,-0.4674454587511718,0.17228551674634218,0.7919349917210639,0.8665885296650231,0.3320755548775196,-0.46745494147762656,0.6436961805447936,0.5992495925165713,0.273477123118937,-0.6599144227802753,0.6433655135333538,-0.9470657557249069,0.9653837694786489,-0.9135144278407097,-0.11879710340872407,-0.7867568600922823,-0.33145267562940717,0.16354175796732306,0.9701989176683128,-0.06028437986969948,-0.7329105832614005,0.31900284392759204,-0.026686469558626413,0.9421541178599,0.6752021820284426,-0.8127759243361652,0.17108236765488982,-0.7016423051245511,-0.7023106347769499,-0.13582666963338852,0.16817211266607046,-0.05527967819944024,-0.7440526811406016,0.4875289830379188,-0.7280316022224724,0.4836721830070019,0.39548155339434743,-0.13872106838971376,0.893219567835331,-0.3711029323749244,0.19921738049015403,0.970155926886946,-0.34361457265913486,0.24678683700039983,0.03578907810151577,-0.19047264847904444,-0.4929340686649084,-0.7163118338212371,0.9528560126200318,0.4591698278672993,-0.32256144331768155,-0.7527468404732645,-0.4010485280305147,-0.45164585020393133,0.46285904198884964,-0.69781943410635,-0.5208286237902939,0.46460934029892087,0.36871813517063856,0.20452128443866968,-0.73748793406412,-0.7060436960309744,-0.6588476886972785,0.1345994407311082,0.6321559143252671,0.5054547470062971,-0.6335807242430747,-0.6063931290991604,0.28118604561313987,0.12546490598469973,0.0040848515927791595,-0.9861700185574591,0.8596570109948516,-0.871754867490381,-0.9788276897743344,-0.9553849971853197,-0.19381866650655866,-0.3424517367966473,0.8394108456559479,-0.30076921870931983,-0.26816635811701417,0.5203802529722452,0.026032795663923025,-0.6176189850084484,-0.6666597430594265,-0.46516121504828334,-0.6352568375878036,0.772013874258846,-0.9692431818693876,-0.6392910596914589,-0.9891554545611143,-0.8115625684149563,0.8499665507115424,0.27779097063466907,0.3690987406298518,0.952697076369077,-0.9490379183553159,-0.7015483221039176,0.47732124337926507,0.4478087052702904,-0.18601965764537454,-0.5826568524353206,0.5607387623749673,-0.7798762605525553,0.7815365642309189,0.9219040144234896,-0.6329074711538851,-0.7646305789239705,0.5821638708002865,-0.9320337795652449,0.2712184628471732,0.36816897988319397,0.04530946072191,-0.47350189508870244,-0.4466573162935674,-0.4492398193106055,-0.49714689422398806,-0.541876002214849,-0.43704226333647966,0.9140583095140755,0.9235534607432783,-0.33818434830754995,-0.1607467676512897,-0.5607088436372578,0.5015151323750615,0.44179190834984183,0.9332720856182277,0.8760997992940247,0.8398200888186693,-0.8229879313148558,0.6903064427897334,-0.8942980244755745,-0.4311348581686616,-0.04140490386635065,0.8111955113708973,-0.24754820298403502,-0.2174451588653028,-0.20353711256757379,0.6786576942540705,0.8671165499836206,-0.980467121116817,0.222064605448395,-0.5824731634929776,0.851597242988646,-0.7053723852150142,-0.25214147893711925,0.3487114105373621,-0.24787066457793117,0.03471581591293216,0.8919003354385495,-0.9034519214183092,-0.6038313116878271,-0.973947312682867,0.6957089607603848,-0.6594018470495939,0.25490499986335635,-0.9287235918454826,0.5885710227303207,-0.06561666401103139,-0.2520299148745835,-0.20857097022235394,-0.3744545979425311,0.7933231671340764,-0.6232708161696792,-0.4658421752974391,-0.21706787031143904,0.6118372618220747,-0.18167548906058073,0.9744333066046238,0.7802037815563381,0.4966283361427486,-0.9496681275777519,0.6256369100883603,0.4418809674680233,-0.7362205251120031,0.3509340463206172,0.18852922832593322,0.2834578356705606,0.6031007128767669,-0.8117248103953898,-0.9853320163674653,0.398621691390872,-0.6222659670747817,-0.7377704307436943,-0.898741711396724,-0.778199483640492,-0.709633344784379,0.36532391607761383,0.28790899412706494,-0.9437923263758421,0.9963925397023559,-0.8796918713487685,-0.8793634129688144,-0.9378773062489927,-0.21283067855983973,-0.13259735982865095,0.27914511412382126,0.784914290998131,-0.6831620316952467,0.24033871293067932,-0.7533293487504125,-0.23089036997407675,0.2315742364153266,0.07863443344831467,-0.7834435282275081,-0.3391457758843899,-0.2541866130195558,0.8479361846111715,0.2686040196567774,-0.7914088717661798,-0.8663245849311352,0.7626284537836909,-0.3661373099312186,0.4668413600884378,-0.14408762799575925,-0.7629290823824704,0.41018904000520706,-0.044843051582574844,0.062345060519874096,-0.3065915531478822,-0.3582276785746217,0.41995435021817684,0.42250521667301655,-0.47170015051960945,0.028747207950800657,-0.8249136349186301,-0.2487689834088087,0.24685085518285632,-0.21064952854067087,-0.2973710517399013,0.6480827056802809,-0.7437320458702743,-0.41893173940479755,0.1799645940773189,0.19627687986940145,0.12605213513597846,-0.5079132211394608,-0.9433696763589978,-0.7505347756668925,-0.06313570961356163,0.7343235262669623,-0.9976263116113842,0.268101982306689,0.4218982639722526,-0.4540686425752938,0.26756933238357306,0.3766915216110647,0.2263386733829975,0.04404988558962941,0.522305001039058,-0.20422259625047445,-0.013237182516604662,-0.3575935694389045,-0.19972063973546028,0.8256768332794309,-0.8554666098207235,-0.43053393065929413,-0.9212990272790194,-0.40996717056259513,-0.4976321291178465,-0.8274116418324411,-0.4629393839277327,-0.18226094637066126,-0.16253456799313426,-0.5752482060343027,-0.807156945578754,-0.014080224093049765,-0.6586927780881524,0.246032633818686,0.3690710151568055,-0.012268682941794395,-0.8318590759299695,0.7600957080721855,-0.6937801693566144,0.6882542129606009,-0.6427603419870138,0.025437642354518175,0.8508234932087362,-0.9002680121921003,0.2640303294174373,0.8561139525845647,0.5562606384046376,0.021593253128230572,-0.5075839497148991,0.832423250656575,0.8919327869080007,-0.4157281215302646,0.6979404934681952,0.8917121286503971,-0.6394935394637287,0.4817334162071347,-0.40409872960299253,-0.6673119980841875,0.6627046247012913,-0.37271462427452207,-0.6737882904708385,-0.7216506195254624,-0.6240869536995888,-0.3166729500517249,-0.11690680030733347,-0.8060808279551566,-0.6354482853785157,-0.04188059689477086,-0.07049536611884832,-0.43224361119791865,-0.9498901893384755,0.5245400378480554,0.7687727017328143,0.8259259108453989,0.12724336609244347,-0.5042851069010794,-0.8669926919974387,0.03231662651523948,-0.1798947909846902,0.7876826031133533,0.8352673454210162,0.1835356168448925,0.4358266689814627,-0.49693147046491504,0.24007750116288662,-0.4581777169369161,0.5708957286551595,0.9317872677929699,0.8283485886640847,-0.3485684981569648,0.8861746471375227,0.0029148845933377743,0.7637002603150904,-0.38019334245473146,0.06431650929152966,-0.3444963041692972,-0.43599652079865336,-0.053193728905171156,0.2396726398728788,0.8380083600059152,0.682191897649318,0.4859077516011894,-0.9133535092696548,-0.32573053427040577,0.006541254464536905,0.33453677129000425,-0.025302391033619642,0.6016642753966153,-0.8158083893358707,0.4633065536618233,0.560392749030143,-0.02113230526447296,0.7945933435112238,0.5316141061484814,-0.3978020525537431,-0.08981604129076004,0.47680492931976914,0.14611417148262262,0.10360288806259632,0.4591362806968391,0.9105683602392673,0.972469134721905,0.1559844478033483,0.8006295869126916,-0.052210729103535414,-0.9374914532527328,-0.646844600327313,-0.4589962321333587,-0.3641874473541975,0.15497167455032468,-0.740455623716116,0.42086508497595787,0.4363637659698725,0.6888469979166985,-0.05611275462433696,0.8306709663011134,-0.6030341628938913,-0.028894552029669285,0.05952254543080926,0.08625232009217143,0.06860116962343454,-0.3511082725599408,0.9057880030013621,0.13309069396927953,-0.013523093424737453,-0.4967757663689554,0.4058318161405623,0.9831477939151227,-0.7467838497832417,0.4467924707569182,0.09875507839024067,-0.13160238415002823,0.3925649323500693,-0.6585377063602209,-0.49547411780804396,0.28059630282223225,-0.37985408026725054,-0.3348130821250379,-0.8172244359739125,-0.5209608310833573,-0.7482019057497382,-0.924811799544841,0.52867486840114,-0.6374684735201299,0.9706106204539537,-0.0505310776643455,-0.9448349843733013,-0.5524492990225554,0.6562145389616489,-0.7044500880874693,-0.027567621786147356,-0.06379998428747058,-0.12168268067762256,-0.5791247775778174,0.5690863914787769,-0.32659571524709463,0.02713214885443449,0.1666091843508184,0.2298066564835608,-0.7221321468241513,0.8851750385947526,0.07561136595904827,0.20999215310439467,-0.9220084873959422,0.7443685340695083,-0.48705621901899576,-0.6805013902485371,0.7668825956061482,0.7661295728757977,0.2272699219174683,0.51608248334378,-0.3696470819413662,0.8143493910320103,0.2945326380431652,0.6644253223203123,-0.22121437592431903,0.9464915995486081,0.9770303927361965,-0.8704586466774344,-0.09125891979783773,-0.6320555182173848,0.370383960660547,-0.27527053374797106,0.015272679273039103,-0.08434402057901025,-0.03637871332466602,-0.0001583462581038475,-0.6994080012664199,0.9136322429403663,0.5508992169052362,0.824850907549262,-0.8803925178945065,-0.7431476744823158,-0.6803893409669399,0.2990113436244428,0.12671295600011945,-0.01052531460300088,0.32121895253658295,0.7651263303123415,0.8064314899966121,-0.631933141965419,-0.4460556418634951,-0.1619664723984897,-0.3818416614085436,0.460762279573828,-0.6981075317598879,0.14935575844720006,0.9890318014658988,-0.2916236645542085,-0.6670066267251968,-0.7806327887810767,-0.6989122559316456,-0.24850600585341454,-0.2614296558313072,-0.8099034740589559,-0.9642689032480121,-0.07811949122697115,0.20565786445513368,0.9680558531545103,-0.7743035834282637,-0.016669846139848232,0.8100990895181894,0.02499954355880618,0.4805992073379457,0.26447003381326795,0.866971428040415,-0.7560218153521419,-0.5837582866661251,-0.5688215182162821,0.29859020933508873,-0.11203004978597164,0.47675129026174545,0.4060959559865296,0.7575774728320539,0.7814024612307549,0.7233448401093483,0.030813359655439854,-0.344142978079617,-0.7763543440960348,-0.43231517169624567,0.346859363373369,-0.9381007067859173,-0.694434077013284,-0.0787757420912385,-0.15678421035408974,-0.9898767797276378,0.1961698210798204,-0.7909560459665954,-0.4446591814048588,-0.3248945842497051,0.6348101929761469,-0.22126952838152647,-0.9116401649080217,-0.5649503204040229,-0.5530925025232136,-0.06923178303986788,-0.943576374091208,-0.40103624016046524,-0.9651870457455516,0.1871415115892887,-0.03190489998087287,-0.36617589369416237,-0.2627475424669683,0.22907335916534066,-0.03517972771078348,-0.5001779226586223,0.3251767214387655,-0.6904380829073489,-0.7586352759972215,-0.1639560810290277,0.1992326993495226,0.4596391418017447,-0.6469142776913941,0.5158828906714916,-0.8458009148016572,-0.031041222158819437,-0.8658920475281775,-0.8410790110938251,-0.8046248131431639,-0.24054566072300076,-0.8542368309572339,0.291601384524256,-0.5422699525952339,0.36079244408756495,-0.7326029292307794,0.8733336082659662,0.2344359871931374,0.16877091070637107,0.027198811527341604,0.003388039767742157,0.5313308904878795,-0.11333772633224726,0.6688249814324081,0.9033147804439068,-0.5745070558041334,-0.9441385599784553,0.33386029303073883,-0.8374288356862962,-0.9797175475396216,-0.713334190659225,0.23918898776173592,0.0820931876078248,-0.9015179518610239,-0.8088919525034726,-0.18980328552424908,-0.5854428494349122,-0.4512122883461416,-0.40573889994993806,0.8513806811533868,0.6688402942381799,-0.28799506835639477,0.7119109253399074,-0.9762979568913579,-0.9113497394137084,0.26250673132017255,-0.7109313905239105,0.17588971462100744,-0.37731142714619637,0.223351389169693,0.726781873498112,-0.9907646421343088,0.5432279827073216,-0.13186721224337816,-0.020034542307257652,-0.3359308051876724,0.5095750219188631,-0.9285123930312693,0.38888918003067374,-0.7708140565082431,-0.8141939602792263,0.6008377694524825,0.8623974043875933,-0.6782973278313875,0.6858158656395972,0.7565677422098815,-0.6330884941853583,-0.5569420931860805,0.2789988312870264,0.5020421519875526,0.9058679104782641,-0.6304043950513005,0.6294455262832344,0.7582831787876785,-0.3016446284018457,-0.3304590107873082,0.7270546448417008,-0.705765537917614,-0.8371883351355791,-0.5819030050188303,-0.6474549337290227,-0.03922650497406721,-0.16889982158318162,-0.24107128474861383,0.5514143551699817,-0.35798289999365807,0.04511302663013339,0.28161544632166624,0.3191093127243221,-0.532910278532654,0.49581499956548214,-0.6055831620469689,0.49288523802533746,-0.35270137153565884,0.03432812914252281,-0.8452272834256291,0.3435045229271054,0.010395440738648176,-0.18342957878485322,-0.23468349082395434,0.10546538978815079,0.5473236432299018,-0.45697369799017906,-0.002059164922684431,-0.22670992044731975,-0.30760460533201694,0.6561174574308097,0.839401931501925,0.18931569578126073,-0.01721943262964487,-0.49794120714068413,-0.322158295661211,0.10511757573112845,0.621492322999984,0.0653328257612884,0.6805644598789513,-0.12072343239560723,0.01817210577428341,0.8642304679378867,-0.24522000085562468,0.718849774915725,-0.43667257158085704,-0.836553196888417,-0.4717799462378025,0.6169367185793817,-0.20922502921894193,-0.9026303002610803,-0.03553229570388794,0.4095542118884623,-0.1789087555371225,0.01399780809879303,-0.18129410175606608,0.6349355718120933,0.028856322169303894,0.830409110058099,-0.2562720491550863,0.39102538395673037,0.579924956895411,-0.23297067498788238,-0.219704229850322,0.28141114581376314,-0.9442580160684884,0.10845034010708332,0.8208607886917889,-0.28605005238205194,0.9163240175694227,0.6596527239307761,-0.08245056448504329,-0.9412571457214653,0.8141356790438294,-0.7119306474924088,0.04529008222743869,0.8650141865946352,0.6008380316197872,-0.1288550035096705,-0.41199185885488987,-0.9403240764513612,-0.5356012634001672,0.21520705102011561,-0.5115932342596352,-0.05814800038933754,-0.7050863127224147,-0.7236348143778741,-0.5012133712880313,-0.4425294017419219,0.26301636872813106,-0.5491251391358674,-0.1124542192555964,-0.4099224740639329,-0.19447174668312073,0.9012516564689577,-0.7121792323887348,-0.7040525958873332,0.2586983246728778,-0.5803926074877381,0.18635902553796768,0.6627353308722377,-0.30033731972798705,-0.8626558124087751,-0.8082697242498398,0.5072893765754998,0.44744060141965747,-0.06392385112121701,0.6742060845717788,0.6729345922358334,0.5613348437473178,0.10311340261250734,-0.6491604973562062,-0.7649939418770373,-0.6604026895947754,-0.4490481964312494,-0.890542957931757,0.8725755647756159,-0.9424709393642843,0.4061423479579389,0.8027865500189364,0.2918970752507448,0.5833973647095263,-0.5639699744060636,-0.4453568197786808,-0.5140197738073766,-0.5329661746509373,-0.956399243324995,0.8410766189917922,-0.169565896037966,-0.8755916557274759,0.9159106854349375,0.09498072927817702,0.7432688879780471,-0.9755638665519655,-0.9623520923778415,-0.19419293757528067,0.9384876820258796,-0.7784322826191783,-0.4990174360573292,0.6693707313388586,0.8470615725964308,0.7906371355056763,0.920085143763572,0.2631479846313596,0.6353083369322121,0.9204602469690144,0.6387691874988377,0.23695179913192987,-0.2618992319330573,-0.05704074027016759,-0.5977805331349373,0.19150075176730752,-0.7633487568236887,-0.11814153753221035,-0.1966923768632114,0.2445252132602036,0.2898692535236478,0.0647629676386714,-0.02695154631510377,-0.8906364534050226,-0.2849847082979977,0.806649989914149,0.44561946811154485,-0.7382427854463458,0.9933145367540419,-0.12430018372833729,-0.12348209274932742,0.399114191532135,-0.8936991523951292,-0.7648495300672948,0.5543323829770088,-0.5660074804909527,-0.9037827979773283,-0.052563789300620556,0.9573725173249841,0.5830817059613764,-0.5185856823809445,-0.5961530529893935,0.03016820689663291,-0.898295293096453,0.25198436714708805,0.6553216045722365,-0.3288273401558399,0.24624582985416055,0.6018694639205933,0.4398366566747427,-0.3108036578632891,0.3803803510963917,0.4323795307427645,-0.6199931390583515,0.35811793990433216,-0.6774057927541435,0.7805969906039536,-0.09963114513084292,0.21359650371596217,-0.9735384257510304,-0.3811598648317158,-0.8508432316593826,0.736915931571275,-0.7199227949604392,0.7305854819715023,-0.09806172829121351,-0.44701155461370945,0.7545949295163155,0.07065780041739345,-0.3767532152123749,-0.38986921310424805,0.2255140352062881,-0.03491334617137909,0.1795270126312971,0.9872335288673639,0.6261860285885632,-0.3950139102526009,-0.8928892002440989,-0.6146481055766344,0.4683308186940849,0.9035530113615096,-0.8978609908372164,-0.6823733639903367,0.8148269485682249,-0.4861572468653321,0.8494555531069636,0.6464190939441323,-0.09159067878499627,0.20449428260326385,-0.8097230130806565,-0.18461573729291558,-0.9399081156589091,-0.17373030027374625,0.6635429109446704,-0.30040100356563926,0.6049347608350217,-0.4691787543706596,-0.3698980691842735,0.6957704531960189,0.04631859855726361,0.4205610021017492,-0.3491729120723903,0.4159858450293541,-0.5306882909499109,0.9701868211850524,0.986745742149651,-0.9215520042926073,-0.9906180538237095,0.9206196703016758,-0.6429679794237018,0.8706371374428272,-0.14734118431806564,-0.7332697501406074,-0.5364251188002527,0.5297151962295175,0.9077052446082234,-0.11837118165567517,0.20055325841531157,-0.42847806122154,0.11999879963696003,0.697275884449482,0.27360826171934605,0.13933831080794334,-0.9572128797881305,-0.9420023434795439,-0.426625513471663,0.44666377641260624,-0.07565338537096977,0.4900730228982866,0.05658519919961691,0.4697554102167487,-0.7819995414465666,0.8259096127003431,0.09224987030029297,-0.6317083211615682,-0.6402833522297442,-0.6874099741689861,0.3862228407524526,-0.9440936553291976,0.5427569807507098,-0.7856743354350328,0.6566744870506227,0.8458854798227549,-0.20223529310896993,0.6816364605911076,-0.6971213361248374,-0.1537312539294362,-0.5976447206921875,0.6194806066341698,-0.746677037794143,0.9255956523120403,-0.012170256581157446,0.13820090936496854,0.6427275654859841,0.7289832998067141,0.1364164063706994,-0.7639556401409209,0.3985114577226341,-0.2983179558068514,0.002664902713149786,-0.2584211644716561,0.7840683464892209,-0.23922142293304205,-0.40040886076167226,0.18487367313355207,-0.9881236548535526,-0.15962917543947697,-0.2589809806086123,0.7151129925623536,0.46214493038132787,-0.21641588024795055,-0.33984214114025235,-0.6561284037306905,-0.3045962881296873,-0.02700175391510129,0.9377173851244152,-0.26453290740028024,-0.23116724798455834,0.0709923580288887,0.052683434914797544,-0.05716449348255992,0.33044730639085174,-0.16090719820931554,0.4173651901073754,0.07387257134541869,-0.46035235514864326,0.8634054935537279,-0.9103405843488872,0.35014757001772523,0.18685446167364717,0.7076436541974545,-0.9752635923214257,0.6119945873506367,0.8041792195290327,-0.18225579662248492,-0.4928079438395798,-0.7620960879139602,0.8188755265437067,-0.26330331806093454,-0.10753980744630098,0.7215656507760286,-0.8684495557099581,0.6454423805698752,-0.46117938635870814,0.2955493899062276,0.5647992021404207,0.5416849101893604,-0.5919741396792233,0.5052394410595298,-0.22382461046800017,-0.5343245696276426,0.6352150747552514,-0.6448725112713873,-0.9137147455476224,-0.7259393944405019,0.6788262985646725,-0.6473841206170619,-0.8592741582542658,-0.5673280488699675,0.7370002348907292,0.575557439122349,0.41646846337243915,0.8882968556135893,0.9142871997319162,0.03528340486809611,0.8684165389277041,-0.6718247192911804,-0.5981846689246595,0.9506921079009771,0.9686040277592838,-0.31644755182787776,0.5033135409466922,0.01624331809580326,0.05943580809980631,-0.17012247303500772,-0.5571646830067039,-0.7240855228155851,-0.9677328122779727,-0.5929781515151262,-0.5661710426211357,-0.2567746238783002,-0.7523046028800309,-0.413574758451432,0.44426061771810055,0.6083336849696934,-0.5535361371003091,0.9843638795427978,-0.5622069179080427,0.9604013687931001,-0.058052302338182926,-0.01055541355162859,-0.7511974470689893,-0.7531532626599073,0.3694180962629616,0.1243729367852211,0.40420295065268874,-0.9250673777423799,-0.10873551247641444,-0.30235964665189385,0.7837887359783053,-0.5861120135523379,0.29043455282226205,-0.868630685377866,0.06171744130551815,-0.3294153711758554,0.6302437060512602,-0.1616278146393597,0.6150324423797429,0.1419276762753725,0.07600211817771196,-0.9353753849864006,0.44029888696968555,-0.5407163593918085,0.31673977244645357,-0.014664024114608765,0.8794027217663825,0.12371206562966108,0.17538290098309517,-0.43171218782663345,0.3971603368408978,0.5750304786488414,0.04430795926600695,0.7371520139276981,-0.23463453957810998,-0.4517280152067542,0.17283730302006006,0.46345474384725094,-0.8191927205771208,0.7522696666419506,-0.8134137890301645,0.21449420554563403,-0.6205288683995605,0.18316521542146802,-0.5777072226628661,0.28362468583509326,-0.09660104755312204,-0.6342781842686236,0.3721937448717654,0.12461375165730715,0.7481934409588575,0.1048717419616878,0.3391920030117035,-0.9979944070801139,0.6081137140281498,-0.34560970216989517,0.5572600373998284,0.700253393035382,-0.7926241075620055,0.5157176894135773,-0.6933799856342375,-0.005509624723345041,0.011219041422009468,-0.33634567772969604,-0.2485663052648306,-0.32451952155679464,0.22119376063346863,0.5627191127277911,0.7595184105448425,0.1242234380915761,-0.8661663508974016,0.018288350198417902,-0.02637712750583887,0.7339573758654296,0.4629267733544111,0.8408179930411279,-0.09539869567379355,-0.7949777692556381,0.938772760797292,0.012161318212747574,0.6088472893461585,0.4352175956591964,-0.10892134299501777,-0.06280389009043574,-0.5920023969374597,0.6544071920216084,0.11834250390529633,0.8504982409067452,-0.19331125263124704,0.957993870601058,-0.6089559919200838,0.3291046218946576,-0.2263053134083748,-0.756785255856812,-0.029197467025369406,-0.1710766451433301,0.6655325135216117,-0.05243634060025215,0.3321668137796223,-0.5422842423431575,0.2126970668323338,0.42959650652483106,-0.5546739376150072,0.9364031329751015,-0.7330641024746001,0.700134011451155,0.43739062640815973,-0.5004232963547111,0.11913884012028575,-0.017540537286549807,0.7835275917313993,-0.28540336387231946,-0.05009249644353986,-0.41811357205733657,-0.9777415911667049,0.40535028418526053,0.8438628702424467,0.5288299676030874,0.14776062685996294,-0.35033990535885096,0.9245917052030563,-0.16085142269730568,-0.558554491493851,-0.05865855002775788,0.7632805733010173,-0.9672129922546446,0.27129566529765725,-0.17823778837919235,-0.19292994774878025,-0.287055985070765,-0.3448185403831303,0.739066778216511,0.9980022036470473,-0.5345546682365239,-0.9323245384730399,-0.08924613520503044,0.005161125212907791,-0.4214047295972705,-0.22809887444600463,-0.3448733724653721,-0.7964014364406466,-0.6761007811874151,-0.14094816939905286,0.6583138923160732,0.3224000735208392,0.5366352293640375,0.46834587259218097,0.2274325853213668,-0.8804968786425889,0.7680397196672857,0.3735418189316988,-0.8381513385102153,0.36070303758606315,-0.6867750831879675,-0.7421136731281877,-0.9232495157048106,0.328086725436151,-0.29622770519927144,0.5585230397991836,-0.33871252182871103,0.78297168482095,0.32414213195443153,-0.13872752478346229,-0.8662565522827208,0.4641813146881759,0.802371165715158,0.09279407653957605,0.3138779145665467,0.8356653265655041,-0.9712937846779823,0.15158462105318904,-0.29607033357024193,0.30084351962432265,-0.8954149624332786,-0.6669156113639474,0.5480651324614882,0.4859024453908205,-0.4249616451561451,0.45576793141663074,0.31489482847973704,0.35014381539076567,-0.5850689210928977,0.5205482607707381,0.9907160163857043,0.7996408636681736,-0.16952907852828503,-0.2733264295384288,-0.5468728882260621,0.6969807236455381,0.8399138720706105,-0.2904600128531456,-0.2927285055629909,-0.40767684020102024,-0.8270561029203236,-0.6386143155395985,0.9498934797011316,-0.08544247085228562,-0.2095387177541852,0.5619354113005102,-0.8711925828829408,0.10656594159081578,0.04698041686788201,-0.41197325149551034,0.09172676177695394,0.6134298164397478,0.7164815673604608,-0.3162189410068095,-0.9999696193262935,-0.3676289999857545,-0.8170177163556218,0.8943232684396207,-0.9648702507838607,0.6475921315141022,-0.763990490231663,-0.40830202074721456,-0.680648441426456,-0.8094759359955788,0.9664769498631358,0.04671812569722533,0.6454938668757677,-0.14976964052766562,-0.06891695642843843,0.8978516538627446,-0.7616512132808566,0.9424739135429263,0.7448626980185509,0.6543565099127591,-0.8008275586180389,-0.1620610561221838,0.3379600797779858,-0.1607904965057969,0.03516994835808873,0.8290501292794943,-0.11351546365767717,-0.4807886709459126,0.7108038710430264,-0.3382139690220356,-0.6966043566353619,0.5956608392298222,0.24558775266632438,-0.6958788684569299,-0.4957566848024726,-0.9363343282602727,0.42180557176470757,-0.5800188547000289,0.5061072967946529,0.08844567183405161,-0.7944677248597145,-0.7918943520635366,-0.2460252153687179,-0.5498523125424981,0.9588247877545655,0.35231079161167145,-0.8107537254691124,-0.91602319246158,0.575248823966831,0.7074651741422713,-0.6381064504384995,0.9628323232755065,0.942126533947885,-0.37593169463798404,0.12446014955639839,0.7830763212405145,0.7764321248978376,-0.8851518235169351,-0.7632873449474573,0.28445332776755095,0.23055988177657127,0.06580999121069908,-0.752787362318486,-0.13193842209875584,0.8151048398576677,0.5375971659086645,0.49156119441613555,0.588566071819514,0.32103148102760315,-0.3702558083459735,0.6709892265498638,0.7486864025704563,0.04579612519592047,0.7057621972635388,-0.28747026436030865,-0.07399084931239486,0.1952776275575161,0.7939466922543943,-0.1427930467762053,-0.5139206843450665,0.9870785251259804,0.41543268505483866,-0.18357183458283544,0.9610262927599251,0.3174153519794345,-0.19500201661139727,-0.8993984195403755,0.8647734676487744,0.07423428911715746,0.8020650409162045,0.948666307143867,0.4283764245919883,0.13375310553237796,-0.6313147637993097,-0.5503619736991823,0.5715064336545765,-0.19334112294018269,-0.21363132959231734,-0.16523198178038,0.10355624696239829,-0.20056094648316503,-0.059572821483016014,0.8787653828039765,-0.3248951518908143,-0.6404991582967341,0.6990169994533062,0.17067422065883875,0.32021530671045184,-0.5186858428642154,-0.032547266222536564,-0.39337192103266716,0.933832764159888,0.5539891705848277,-0.04208000935614109,-0.7166774985380471,-0.20153884775936604,-0.6133934943936765,-0.16518842102959752,0.013553614262491465,0.16297637950628996,0.7394724562764168,0.43851972185075283,-0.2492280676960945,-0.918416440486908,-0.4083576104603708,-0.13235308974981308,-0.5961309284903109,-0.46654053777456284,-0.6932965493761003,-0.6514314110390842,0.28607895597815514,0.12293317494913936,0.9750375668518245,-0.14408281818032265,0.11721540009602904,0.43484465684741735,-0.23656168626621366,-0.1981178317219019,0.6139640430919826,0.9677067613229156,0.6666608541272581,-0.710444641765207,0.06069708848372102,-0.8666569250635803,0.2755066673271358,-0.8682627859525383,0.020885254722088575,0.07431749626994133,-0.5544257159344852,-0.38000590028241277,0.16084640379995108,0.20263148890808225,-0.6039802539162338,-0.8283703280612826,-0.19923050189390779,0.8712721997871995,0.6494649644009769,0.9992329939268529,-0.6894720471464097,0.15690373117104173,0.5974463447928429,-0.22967894282191992,0.49131016433238983,-0.0374543946236372,-0.9283848349004984,-0.9268766799941659,0.6744588664732873,-0.837707859929651,-0.3871830557473004,0.6211462705396116,-0.6838055746629834,-0.8157058632932603,-0.20652225567027926,0.8623794387094676,0.11112783988937736,-0.45383646711707115,0.8747495305724442,0.10340325254946947,-0.9563122587278485,-0.50516048213467,-0.28916745027527213,0.6026276736520231,-0.8526729745790362,0.387786362785846,-0.5921646552160382,0.8210391281172633,-0.6493648746982217,-0.3383875130675733,0.8369713872671127,-0.04123579757288098,-0.5031452276743948,0.8560667946003377,0.6481608264148235,0.2330074906349182,-0.11405205633491278,0.24708615988492966,-0.717791361734271,-0.17487917188555002,0.1965659586712718,-0.27877871273085475,0.41580201778560877,0.4778026584535837,0.45769439823925495,0.21891200728714466,0.8678946401923895,-0.17055383510887623,0.2866494730114937,0.13509621936827898,0.02693068841472268,-0.8053809651173651,-0.5335154770873487,-0.12753992807120085,0.5214792490005493,-0.9293941739015281,0.4887006697244942,-0.13979092007502913,-0.9782429039478302,0.8755544209852815,-0.4175529717467725,-0.20327775087207556,0.9296221625991166,-0.474444558378309,-0.6250385125167668,-0.8281827522441745,0.6443481273017824,-0.37308023357763886,-0.06692392006516457,-0.5224706474691629,-0.6930917273275554,0.7173162726685405,0.4925869167782366,0.5354386712424457,0.4292191588319838,0.6789546879008412,0.01598700089380145,-0.7694251895882189,0.3223745967261493,0.13290490442886949,-0.6400652560405433,0.6255091903731227,-0.25054754270240664,-0.3473819000646472,-0.8651256165467203,0.5437453431077302,0.08739362098276615,-0.7154495818540454,-0.14104303577914834,0.6366437021642923,0.7564833811484277,-0.02588836709037423,0.11896957736462355,-0.7279081922024488,-0.7581541468389332,-0.4425742491148412,-0.15878575248643756,0.26375136291608214,0.5807297118008137,0.6557497205212712,-0.1328874514438212,-0.6591403973288834,-0.7650404288433492,-0.8587736166082323,-0.7290071449242532,0.5391304534859955,0.7595909843221307,0.007565338164567947,-0.5035724751651287,-0.5852472693659365,-0.8906879033893347,0.757325588259846,-0.4305047602392733,-0.18867283640429378,0.13248456688597798,0.3370571886189282,0.021370599046349525,-0.2114586983807385,-0.0502977785654366,-0.7397639737464488,0.8556138253770769,-0.16507165972143412,-0.34260408906266093,0.7249580253846943,0.9668068974278867,0.9414040897972882,-0.8254998149350286,0.8702359083108604,-0.3761678277514875,-0.3167839404195547,-0.6738209258764982,0.9826822271570563,0.738742577843368,0.9309106445871294,0.8728884966112673,-0.22184417117387056,0.9206910035572946,-0.8176309778355062,-0.23036358272656798,-0.5864169704727829,-0.36076941480860114,0.7421625782735646,-0.8351045493036509,-0.7679796540178359,-0.7784729697741568,-0.1403311723843217,0.843886555172503,0.289150788448751,0.0592109733261168,-0.9700537039898336,-0.9794525918550789,0.5256993980146945,-0.9815895953215659,0.8292415151372552,-0.5928369173780084,0.4788571740500629,0.3211489007808268,-0.4072812991216779,0.46500425366684794,0.4805345395579934,-0.9667993737384677,-0.5714903781190515,0.7605310552753508,-0.21913872985169291,0.09994925651699305,-0.3453954625874758,0.11151055665686727,-0.9232061929069459,0.5974930576048791,0.07483518309891224,-0.917507775593549,0.05115594156086445,-0.026677506044507027,-0.44065525894984603,-0.5440556099638343,0.47932650055736303,0.6342323427088559,-0.8115820973180234,-0.666223191190511,-0.6476056077517569,0.22234265878796577,-0.3000245811417699,-0.8300366052426398,0.6974469400011003,-0.7666579489596188,0.7613195972517133,-0.3079006178304553,0.2944962754845619,-0.5290074152871966,-0.5298862862400711,0.8754135337658226,-0.3978388663381338,0.11723217368125916,-0.7093722252175212,-0.5241878693923354,-0.19835581351071596,0.39246249524876475,-0.6687751337885857,0.3276996975764632,-0.5726148369722068,0.41743651451542974,0.026716498658061028,0.2324124206788838,-0.6878971280530095,-0.002473060507327318,-0.8577234330587089,0.6250058645382524,-0.5617669797502458,-0.5639351326972246,-0.3069777535274625,-0.038807449862360954,0.7615043330006301,0.2362265083938837,-0.4447550205513835,0.17962689697742462,-0.3484877562150359,0.7645547282882035,-0.2938372646458447,0.19645177898928523,0.8673765710555017,0.45640167500823736,-0.5244412878528237,0.9213293860666454,0.9742664536461234,-0.09341163607314229,-0.007700460031628609,-0.3565814280882478,-0.8052371549420059,0.634983042255044,-0.05545936385169625,-0.9718144778162241,0.8952596830204129,-0.2653353693895042,-0.4120547203347087,0.171586018987,0.43965242616832256,0.5482550514861941,-0.1285486053675413,0.7670784830115736,-0.20356373116374016,-0.3348039276897907,-0.8970289635472,-0.7219871068373322,0.11403489718213677,0.980491042137146,0.15139355789870024,0.48886548914015293,0.7871916801668704,0.33397495141252875,0.02092708507552743,-0.9828702323138714,-0.9119033669121563,-0.8534801360219717,0.3112404546700418,0.6767679159529507,0.13680241163820028,-0.22567891236394644,0.6271217092871666,0.5039362357929349,-0.3986958246678114,-0.7540874029509723,-0.2859818949364126,-0.026266131550073624,-0.9098073486238718,0.3842578367330134,0.857049023732543,-0.05191476456820965,0.6230235053226352,0.2142239362001419,0.837087974883616,-0.8441168386489153,0.7169815716333687,0.46569149335846305,-0.9126794198527932,-0.6794467740692198,0.9288506787270308,0.9488673373125494,0.4020847384817898,0.13223980693146586,0.8365053250454366,-0.3943553944118321,-0.024284270592033863,0.6847192361019552,0.0683988812379539,0.6249390784651041,0.9588989922776818,0.06439505517482758,-0.858356720302254,0.07379453629255295,-0.24575080070644617,0.1345650223083794,0.28355010226368904,-0.5065149264410138,-0.36131653003394604,-0.12837974121794105,0.9351897714659572,-0.16310153668746352,0.4417688138782978,-0.6763151157647371,-0.29704155307263136,-0.2905557961203158,0.40595156652852893,-0.2657103077508509,0.5181267443113029,0.014676221180707216,-0.6593453483656049,-0.8791653169319034,0.4412596058100462,-0.790487214922905,-0.08236475754529238,-0.6937129870057106,-0.5168003882281482,-0.5527803432196379,-0.04124296363443136,0.08653258671984076,-0.34787169145420194,0.6892218985594809,-0.859927746001631,0.10502005601301789,-0.8542068777605891,-0.4181968104094267,0.750217238906771,-0.37970831990242004,0.30488888220861554,0.6046525072306395,0.9306032685562968,0.9113643909804523,0.5055565033107996,0.7888843636028469,-0.7175173247233033,-0.32752208318561316,0.20763821341097355,-0.2752733901143074,0.8336158306337893,0.8346067336387932,-0.136170141864568,-0.6092153238132596,0.36691322131082416,-0.7018234157003462,-0.41347262635827065,-0.2842509439215064,-0.6976025737822056,-0.2915057367645204,-0.7615178930573165,0.5993745825253427,-0.6400691461749375,-0.019870558753609657,-0.01415643421933055,0.11642379034310579,0.6750484541989863,0.5106611466035247,0.8539598830975592,-0.06996345147490501,-0.6100374730303884,-0.5223773419857025,0.916942541487515,0.36259605549275875,-0.5969993667677045,-0.6843496863730252,-0.5023806155659258,0.9283921830356121,-0.04421924753114581,-0.37322509521618485,0.1980841476470232,-0.23586699645966291,-0.1232878896407783,0.09858805080875754,-0.14804877620190382,0.9667534646578133,-0.5154207730665803,-0.14660396985709667,-0.4411534331738949,0.4287821031175554,-0.8427173462696373,-0.4475544039160013,0.3886190773919225,0.6058699572458863,0.6253600041382015,-0.7792983124963939,0.6699855625629425,0.633036179933697,-0.5592823107726872,0.16504476917907596,-0.7008029869757593,-0.06950917234644294,-0.3308372809551656,0.10610063979402184,0.15099254762753844,0.27806214336305857,-0.29096199851483107,0.2453001355752349,-0.46800025552511215,-0.38011658983305097,0.8978219097480178,-0.31853489438071847,0.8902718177996576,0.8803900857456028,-0.1462622405961156,-0.09757729014381766,-0.41373783722519875,0.3542115422897041,0.2996101276949048,0.8549409373663366,0.6165935350582004,-0.1368667110800743,0.11624762322753668,0.3276417297311127,0.8383443364873528,-0.7540664933621883,-0.2995628039352596,-0.940852283500135,-0.21616065921261907,0.704951876308769,0.18946846015751362,-0.36821505753323436,-0.2279432574287057,-0.2545412559993565,0.7846934073604643,-0.6336256763897836,0.6584734618663788,-0.6496877120807767,-0.5764695699326694,0.20183658506721258,0.12181675573810935,-0.6081459610722959,0.9393993685953319,0.1007160167209804,-0.7696101167239249,0.7642181692644954,0.7057350263930857,0.14671648014336824,-0.004531417042016983,0.48480999656021595,-0.1582092847675085,-0.3799242014065385,-0.4244533786550164,-0.9550163536332548,0.31648957170546055,-0.40226061223074794,0.8068648730404675,-0.11663790373131633,-0.8645632527768612,-0.9522086651995778,0.12564374972134829,0.9931826894171536,0.43004376720637083,-0.973651445005089,-0.06083655310794711,0.6412862963043153,0.06544866226613522,0.30675816955044866,0.49869520170614123,-0.8849018183536828,0.5572978239506483,-0.20673797139897943,-0.38266466511413455,-0.5097792367450893,-0.8033598307520151,-0.31938137020915747,0.25689666671678424,0.39562099147588015,-0.6504965121857822,-0.7659909669309855,0.7870512995868921,0.02671652613207698,0.7415923899970949,0.22372167510911822,-0.02153224963694811,-0.7781968316994607,-0.17523039085790515,0.8676718566566706,-0.5650735008530319,0.7375673498027027,0.6898819203488529,0.4016503426246345,-0.5070692114531994,-0.9059902518056333,-0.4364213924854994,0.5694987941533327,-0.4788641049526632,-0.46501453686505556,-0.6477185604162514,-0.8037439561448991,-0.6560191931203008,-0.012989915907382965,0.5375141380354762,-0.020415528677403927,0.7135536074638367,0.8859403342939913,0.17089266050606966,-0.23635865794494748,0.6418293658643961,-0.6969608701765537,-0.6552078332751989,0.9698708988726139,0.16416286723688245,0.10934431478381157,0.750016126781702,-0.246715203858912,-0.7817956246435642,0.6163731697015464,0.38001219742000103,-0.42055325116962194,-0.9404164138250053,0.9020349434576929,0.3082331493496895,-0.3032265645451844,-0.18361779348924756,-0.17674401914700866,-0.3591304193250835,0.9866029541008174,-0.27652106201276183,-0.24453165102750063,-0.18353106454014778,-0.6015443271026015,-0.7531456220895052,0.9134965287521482,0.8042194684967399,0.13285352056846023,0.8282139995135367,-0.5744386133737862,0.28740196442231536,-0.7110896613448858,-0.7348835654556751,-0.7930889306589961,-0.8394007715396583,0.14300815388560295,0.6713716443628073,-0.4020474492572248,0.24063951708376408,-0.5994959832169116,-0.8743600267916918,-0.9047482679598033,0.5867320708930492,-0.9529849272221327,0.8805424454621971,0.913209936581552,-0.8260720064863563,-0.6406954592093825,-0.9242933401837945,-0.7130356822162867,0.24171280628070235,0.18871382111683488,0.4465638562105596,0.13192032743245363,-0.4548501227982342,-0.7162679610773921,-0.3200566661544144,0.9396659787744284,-0.7964111678302288,-0.2727232538163662,-0.7804335285909474,-0.008790947496891022,0.36276618484407663,-0.13054584432393312,-0.8907200540415943,-0.919780230615288,-0.277505602221936,-0.38480056961998343,-0.598005935549736,-0.23349336255341768,-0.2895147940143943,0.3934744377620518,0.24752903869375587,-0.5923555204644799,0.6028726450167596,-0.7824520990252495,-0.7896641516126692,0.06881017331033945,0.575499159283936,0.010977981146425009,-0.6288791713304818,0.7807015129365027,0.6057428400963545,-0.32524256920441985,0.8575255665928125,0.7348637692630291,-0.16145966900512576,0.5873196730390191,-0.516639135312289,0.029225426260381937,0.8752961242571473,0.924136673565954,0.4339998564682901,0.02345280349254608,0.48805704805999994,0.18021715199574828,-0.26855063531547785,0.08851177850738168,0.31070262985304,0.22946219285950065,-0.0037563014775514603,0.8825490092858672,0.21379140205681324,0.5509815383702517,-0.2540073390118778,0.15902187023311853,-0.010163659695535898,-0.33783958246931434,0.4529156405478716,-0.2672255211509764,-0.7316367486491799,0.2831153469160199,0.3600891479291022,0.011741518042981625,0.12674184888601303,0.8589435089379549,-0.3313379413448274,0.07928636576980352,0.6034641130827367,0.06335493456572294,0.014285936020314693,-0.11484694946557283,0.2697466700337827,-0.468913862016052,-0.6231299708597362,0.3579460349865258,0.10821645660325885,0.1889493428170681,-0.6422316264361143,-0.8482409319840372,0.25962427351623774,0.2580379289574921,-0.3867707625031471,0.8482622881419957,-0.10626714257523417,0.6329746642149985,0.1644885684363544,-0.8231284767389297,0.6649841372855008,-0.4123705509118736,0.2858786848373711,0.5268988404422998,-0.46448391769081354,-0.017111380584537983,-0.16030026553198695,0.7404604842886329,0.32637622579932213,-0.5048204306513071,0.6959481681697071,0.9551300434395671,0.9603956304490566,0.7017217557877302,-0.22966878535225987,-0.10703549114987254,0.6929831174202263,-0.09842297807335854,-0.5069429129362106,0.23342331917956471,0.42208997532725334,-0.2127347975037992,0.9747488610446453,-0.1886187568306923,-0.41813474567607045,-0.48283251840621233,0.2154061202891171,-0.2606820575892925,0.7427044049836695,0.7850648970343173,-0.2209936915896833,-0.15629886742681265,0.5490274475887418,-0.4346693460829556,-0.6318359179422259,-0.3709363006055355,0.14662144193425775,-0.12135539716109633,0.24131417321041226,-0.9475296200253069,-0.24993651174008846,-0.41857368405908346,-0.4772579208947718,-0.08513484615832567,-0.868226645514369,-0.7086449493654072,0.5817108564078808,-0.15561314206570387,-0.24508086731657386,0.5792088764719665,0.8340434785932302,0.8823432386852801,-0.804455962497741,0.1469531557522714,-0.825768462382257,-0.2521241162903607,0.8795676296576858,-0.6413487065583467,0.15063724108040333,-0.7707365658134222,0.06457950500771403,0.774295317940414,0.9109434555284679,0.732507408130914,-0.3850667979568243,-0.09158490970730782,-0.3275546170771122,-0.004839399363845587,-0.9699426437728107,-0.22538237925618887,-0.21863252483308315,-0.833282632753253,0.05719617521390319,-0.3325552218593657,0.6429242701269686,0.49957948876544833,-0.9532725550234318,-0.25905832136049867,0.12038893718272448,0.9755966709926724,0.6206854227930307,-0.9115210329182446,0.06337210349738598,0.8158709714189172,-0.5676594935357571,0.1433254824951291,0.8971970020793378,0.7372554498724639,0.07534789992496371,0.3132297075353563,-0.2604288887232542,-0.6882173521444201,0.6777789001353085,0.7006379114463925,0.9580301726236939,0.3617915762588382,-0.09738060273230076,-0.411608814727515,-0.013426537625491619,0.30446152994409204,-0.32710727816447616,-0.4293638081289828,0.3599269241094589,0.8121248576790094,0.5082549098879099,-0.7129097618162632,0.30309598706662655,-0.3335491316393018,-0.04863175377249718,-0.5665426915511489,0.6061169123277068,0.9580160826444626,-0.48456803197041154,0.8803273686207831,-0.9534840108826756,-0.36020144959911704,0.40059864427894354,0.3275360055267811,0.38826588075608015,0.39626835752278566,-0.1947663021273911,-0.27519790455698967,0.3529787752777338,0.106743183452636,-0.7929415064863861,-0.4357858360745013,-0.0729316296055913,-0.7456803903914988,-0.3563808319158852,-0.20589000498875976,0.029321415349841118,0.7673657489940524,-0.9329559537582099,0.5919204293750226,0.5921235261484981,-0.9349018507637084,-0.5960841933265328,0.8328482885845006,0.29878103779628873,0.8758686180226505,0.7366837789304554,0.4686456467024982,0.3122069947421551,-0.8759705033153296,0.810455562081188,-0.06442457577213645,0.7058994364924729,-0.823009517043829,0.18443110212683678,0.5746218226850033,-0.11362459789961576,-0.8210704601369798,-0.6694628396071494,-0.0125510785728693,0.5129129835404456,-0.6618462190963328,-0.3710337355732918,0.04368223203346133,0.8091247780248523,-0.11994498549029231,-0.3977135024033487,-0.5347860236652195,-0.46902531711384654,-0.9093488734215498,0.9212523498572409,-0.0232612076215446,-0.6573062348179519,0.4200783930718899,0.5375430760905147,-0.9508773577399552,-0.20653454354032874,0.9244469585828483,0.14304479397833347,-0.5264053805731237,-0.15789036778733134,0.7904137414880097,0.9281668476760387,0.7102965069934726,-0.7377621727064252,-0.05327186593785882,0.21274534100666642,-0.4294295012950897,0.8399078897200525,-0.2974358503706753,-0.946464597247541,-0.8143200082704425,-0.5796570954844356,0.565850852522999,-0.30544655676931143,0.20530169224366546,0.8159770355559886,-0.5333579126745462,-0.913548166397959,0.520839917473495,-0.5187927624210715,0.017727237660437822,-0.17697313148528337,0.6223320784047246,-0.1371323959901929,-0.9110961281694472,0.291208618786186,-0.2987792887724936,0.6547400346025825,0.8906411537900567,-0.9053384615108371,-0.3647047155536711,0.9056301079690456,0.006136207841336727,0.03103659488260746,-0.7390790446661413,-0.19695277232676744,-0.6378380348905921,0.3559686946682632,0.9532536114566028,-0.10603753523901105,-0.7617815304547548,-0.7816590573638678,0.07683218130841851,-0.4776822398416698,0.49026472074911,0.979437904432416,-0.547613091301173,-0.615813473239541,-0.4980123247951269,-0.8341060327365994,-0.21540006529539824,0.7466597417369485,0.01967993937432766,-0.8993577742949128,0.6075782501138747,-0.7790289311669767,-0.714694723021239,-0.37079984322190285,-0.2414923799224198,-0.5056663299910724,-0.7181431031785905,-0.7865424915216863,0.40630893129855394,0.9234461640007794,-0.27181595005095005,0.25125250266864896,-0.16961735766381025,-0.31547086499631405,-0.21572947409003973,-0.580038495361805,-0.4322647429071367,-0.3507558526471257,0.8481406532227993,0.5392355052754283,0.5310715404339135,-0.12921859230846167,-0.5154001512564719,-0.9355162153951824,0.30828207451850176,-0.2636766289360821,-0.48498543724417686,0.18360176449641585,-0.7382070193998516,0.9518279302865267,0.4488755324855447,0.16370207769796252,-0.9339763154275715,0.9314647386781871,0.12882223213091493,-0.26035639736801386,-0.5872851121239364,-0.2502096677199006,-0.7757241535000503,0.6458200719207525,-0.39620295260101557,0.5174880432896316,-0.2760494574904442,-0.29028224665671587,0.718694721814245,0.7794624157249928,-0.13895541429519653,0.5310127953998744,-0.3453223039396107,0.5083603896200657,-0.8800621009431779,-0.8483150051906705,-0.6345893633551896,0.5402338108979166,0.7283234824426472,-0.08098415331915021,0.3129941914230585,0.22817461984232068,0.837759483139962,0.6105006532743573,0.5916235507465899,-0.4614150831475854,0.6647389396093786,0.571286553516984,-0.06596026290208101,-0.6930891615338624,0.7966473125852644,-0.04919946799054742,-0.7635758584365249,-0.7697649942710996,0.5849814331158996,-0.24186098063364625,-0.12252199929207563,-0.810169740114361,-0.47815133119001985,-0.2641943655908108,0.8709224099293351,0.656855973880738,0.023603192530572414,0.7999066142365336,0.005524270236492157,-0.6969473892822862,-0.1893894369713962,-0.9307357822544873,0.5648632189258933,0.5222876095212996,-0.8887585988268256,-0.5917227137833834,-0.47574841789901257,0.30941839562729,-0.7561162817291915,0.42153953947126865,0.674027734901756,-0.8277461198158562,-0.26201200438663363,-0.35361796198412776,0.031466794200241566,0.08862610952928662,0.8681343751959503,0.3963196617551148,0.21438738284632564,-0.7717123366892338,0.9676364422775805,-0.31820515310391784,-0.9987715627066791,0.3727622018195689,0.7939372593536973,-0.5009258827194571,-0.39379852125421166,-0.06596393510699272,-0.5303383665159345,-0.962023404892534,-0.09047724446281791,-0.4764478369615972,0.26730833668261766,-0.9755643978714943,0.026470532175153494,0.7072096709161997,-0.6986079644411802,0.06650813901796937,-0.9091419004835188,0.4510964280925691,0.7553773592226207,-0.27454280434176326,0.6605650084093213,0.455631080083549,0.23179981904104352,-0.7293575070798397,0.4947875989601016,0.9405770474113524,0.5332553684711456,-0.07867235271260142,0.9441461670212448,0.5714014270342886,0.9217876386828721,0.223832197021693,0.8912797491066158,0.0033478564582765102,-0.4184472211636603,0.12408206798136234,0.234794395044446,0.7086158930324018,-0.1771948952227831,0.9789005415514112,-0.10463929176330566,-0.694354095030576,-0.9206161363981664,0.044942351058125496,-0.8476962307468057,-0.7385814362205565,-0.6943486062809825,0.0228103450499475,-0.15624901000410318,0.18480896251276135,0.8249939912930131,0.2699268641881645,0.28256334038451314,-0.2879644245840609,-0.744981212541461,0.9264812818728387,-0.9076219089329243,0.426095737144351,0.522121137008071,0.7992130238562822,0.48732782853767276,0.9670686302706599,-0.7690069489181042,0.20511316414922476,0.6599857932887971,-0.7932524625211954,-0.3347484371624887,-0.1083688740618527,0.5675465110689402,0.747020423412323,-0.4415615922771394,-0.32292094081640244,-0.8761889380402863,0.3193594547919929,-0.5688944319263101,0.38539961678907275,0.16325041837990284,0.20634668273851275,0.9235011204145849,-0.9704967155121267,-0.7124393805861473,0.057053414173424244,0.6026650504209101,-0.4697215873748064,-0.24573690677061677,-0.037895155139267445,-0.6110335476696491,0.4033897859044373,0.479688354767859,0.6224063117988408,0.2832008129917085,-0.6857137084007263,-0.8704704847186804,-0.18793348968029022,0.030446833465248346,0.5127582335844636,-0.15955556137487292,-0.8489151098765433,-0.3422219189815223,-0.624115165323019,0.8953252965584397,0.6418825220316648,-0.15911274356767535,-0.12998034711927176,-0.15860656695440412,0.1431747288443148,-0.5905365664511919,-0.9352153870277107,0.47448661690577865,0.4708616193383932,-0.5499391970224679,-0.3879967173561454,-0.8845035331323743,-0.0009164493530988693,-0.6017562667839229,-0.5597813231870532,0.07092977315187454,-0.10345270484685898,-0.8157607479952276,0.7727943556383252,-0.6932432311587036,-0.7861330811865628,0.13920670468360186,-0.07965742750093341,0.9280917160212994,-0.7510919403284788,0.8028160613030195,0.914830335881561,-0.08976171305403113,0.6292375307530165,0.31746349995955825,-0.3046916965395212,-0.31118495808914304,-0.41959785390645266,-0.6779638980515301,0.38523987820371985,-0.7104534916579723,0.9157608258537948,-0.5871015409938991,0.015367023181170225,-0.021678763441741467,-0.24103041691705585,-0.2439603628590703,-0.9535266258753836,0.9072125190868974,-0.9259352344088256,-0.9737251368351281,0.07897775899618864,0.3992146896198392,0.9279471072368324,0.20562620647251606,-0.29071192536503077,0.8957758359611034,-0.005125520750880241,0.022470133379101753,0.9649515589699149,0.44613528065383434,-0.34071743953973055,0.16165822790935636,-0.8215547045692801,-0.28179085394367576,-0.58087467122823,0.8248543781228364,0.5232403986155987,0.42487158440053463,-0.7012085500173271,0.09285953128710389,-0.9607003103010356,-0.7853650539182127,0.5661405897699296,-0.17775249294936657,0.19316571205854416,0.032283768989145756,0.19195235054939985,-0.8655597534961998,0.9956832146272063,0.10023917257785797,0.45391564862802625,0.9661453748121858,-0.827268198132515,0.0965879550203681,0.42455536825582385,0.40336019080132246,0.6932188598439097,-0.841381749138236,-0.7971499497070909,0.15085592167451978,-0.4682779023423791,0.038676540832966566,-0.21166575094684958,-0.5826851492747664,-0.525249962694943,-0.6350314673036337,0.4471632703207433,-0.6125580007210374,0.19864151114597917,-0.5667856014333665,0.33671247866004705,0.6043278025463223,-0.783536524977535,-0.6961251902393997,0.5720706614665687,0.9818554376251996,-0.391585614066571,-0.6191406892612576,0.706546988338232,0.4713899400085211,-0.7177944048307836,-0.06270899390801787,0.6170840468257666,-0.892590775154531,0.5725926673039794,-0.47104797698557377,-0.6957065355964005,-0.16150689590722322,-0.09539274778217077,-0.46626136638224125,0.6798499911092222,0.0024375994689762592,-0.1800178298726678,0.3931478662416339,0.7984767416492105,0.7157895830459893,0.5642239567823708,-0.1432041055522859,-0.20498229702934623,0.888281271327287,-0.14504095679149032,0.07578640477731824,-0.13124292064458132,-0.06623966945335269,0.44340700795874,-0.13010956719517708,-0.242858680896461,-0.21710009267553687,0.6811150601133704,0.1673776414245367,-0.29188113706186414,-0.2435426814481616,-0.3297353438101709,0.3796927398070693,-0.5482582403346896,0.15576544031500816,-0.8099749372340739,0.04777023661881685,-0.8388125323690474,-0.6125394445843995,-0.5785775282420218,-0.6103646075353026,0.09161560097709298,-0.3141874326393008,-0.38707591965794563,-0.8089212868362665,-0.41741422982886434,-0.5804270808584988,-0.8180576879531145,0.25729056540876627,0.44159434270113707,-0.5031658876687288,0.14437257125973701,0.9989196937531233,-0.14743178663775325,-0.2124620508402586,0.11830217344686389,0.5149018126539886,-0.9658059030771255,-0.15768008260056376,0.23910585790872574,0.5766632445156574,0.2877841927111149,-0.9845772469416261,0.12661853665485978,-0.9244264322333038,0.8332749861292541,0.30768550699576735,0.9105629539117217,0.16074668476358056,-0.7230814611539245,-0.5574806085787714,-0.20905391359701753,0.9387717111967504,0.18477802257984877,0.5072250519879162,-0.5013001235201955,-0.16516123432666063,0.9135415223427117,-0.7638281430117786,-0.03253974113613367,0.5761638935655355,0.41018552193418145,-0.07714176923036575,-0.39777088118717074,-0.7359395362436771,0.570726066827774,-0.9212379865348339,0.5575730535201728,-0.31122125033289194,-0.08051112806424499,-0.2988743130117655,-0.8422136176377535,-0.670810901094228,-0.9551116349175572,-0.2640577186830342,0.08404841274023056,0.2885656706057489,-0.2634940454736352,0.6911608972586691,-0.028227944392710924,0.44904053024947643,-0.3604249069467187,0.881592882797122,-0.9167742398567498,0.34258618485182524,-0.03896704036742449,0.46335181780159473,0.13075973698869348,-0.9709068620577455,-0.9450131854973733,0.701614533085376,0.28156439680606127,-0.8799987975507975,0.21091263694688678,0.5911742923781276,-0.045281756203621626,0.2165056890808046,0.23556157713755965,-0.9626911948435009,-0.1603597179055214,0.7019381271675229,-0.1824516337364912,0.5924172936938703,-0.9133672593161464,-0.30896815098822117,-0.013237353414297104,0.29114434076473117,0.6828159904107451,-0.2893431126140058,-0.0963588422164321,-0.02640543971210718,0.3964960635639727,0.3743595592677593,-0.8622270175255835,-0.05102350655943155,-0.1319029969163239,0.07756850123405457,0.5409149257466197,-0.564561827108264,0.5562780471518636,0.45621443819254637,-0.25717829121276736,0.724691241979599,-0.7889580195769668,0.815814376808703,0.16601530462503433,-0.21663532266393304,-0.7047620699740946,0.7016094140708447,-0.2128917039372027,0.910966326482594,-0.7303142235614359,0.6251050867140293,-0.10358925024047494,-0.5811322331428528,-0.27843449683859944,0.05705963680520654,-0.07727611158043146,-0.6508816801942885,-0.36342159239575267,-0.7943220878951252,0.15856277663260698,-0.8742034970782697,-0.3376912376843393,0.13524935161694884,-0.9755764496512711,-0.9455872154794633,-0.2889409177005291,-0.8305272930301726,-0.16585991764441133,0.8464748556725681,-0.2608039630576968,-0.9370071096345782,0.7381925852969289,-0.8542659594677389,-0.9084708439186215,0.27365951193496585,-0.5180128123611212,-0.1255199476145208,0.6179828206077218,0.27575293043628335,-0.0850292076356709,0.8378640040755272,-0.1456933538429439,-0.7461232445202768,0.299090298358351,0.3310931478627026,-0.8322996110655367,0.7891864259727299,-0.003385786898434162,0.9567644177004695,-0.7206502016633749,-0.8736699433065951,0.8102730205282569,0.44796612905338407,-0.3083449797704816,0.7587830717675388,0.999028252903372,-0.26626894949004054,0.48376505682244897,0.6086224648170173,-0.2007027636282146,0.34611609717831016,-0.8241966255009174,0.8945737285539508,-0.5940782553516328,0.6283444962464273,-0.3323700246401131,-0.07708794204518199,-0.8393544186837971,-0.31730226520448923,-0.3603511876426637,0.05295838415622711,-0.3579168990254402,0.6165175032801926,-0.9905157648026943,0.43903894489631057,0.87411656556651,0.19497199589386582,0.8007773775607347,-0.04602570552378893,0.46933000860735774,-0.29910401068627834,-0.332303324714303,-0.29363653622567654,0.9755429718643427,-0.2775759561918676,-0.4572560586966574,-0.8035308523103595,0.6096135224215686,-0.997821094468236,0.07419116282835603,0.5317822610959411,-0.12789920764043927,-0.7999640102498233,-0.9950311901047826,0.6120648682117462,0.07464504335075617,-0.5058009279891849,-0.5949847344309092,0.4951332127675414,0.5990215158089995,0.8385787545703351,0.05884048109874129,-0.8415946965105832,0.9449745682068169,0.0918526272289455,0.3698436804115772,-0.3479364882223308,-0.3702361141331494,-0.47913684928789735,-0.9662934620864689,-0.33797297114506364,-0.2468710350804031,0.8689058697782457,-0.8611400872468948,0.5569269936531782,-0.48465916980057955,-0.6169914281927049,0.7857065116986632,0.4259103639051318,-0.24948224099352956,0.8634967673569918,-0.06057183304801583,0.6933533591218293,0.018606579862535,0.8140382296405733,-0.08160209516063333,0.7822548202238977,-0.5804124232381582,0.4313412606716156,-0.20642607286572456,-0.694189056288451,0.09562843106687069,0.9636735087260604,-0.2512373928911984,0.843180850148201,-0.1049329568631947,0.8663096353411674,0.024107232224196196,-0.6294082831591368,0.363987956661731,0.22379553597420454,-0.6103744651190937,-0.1141546587459743,-0.43770802300423384,0.27449367567896843,0.809533977881074,0.4658884103409946,-0.10000296495854855,-0.5490804240107536,0.350854660384357,-0.4907951755449176,0.004366659093648195,-0.2457522857002914,0.4590775673277676,-0.803387759719044,-0.37914014933630824,0.7058424362912774,0.5747089935466647,-0.8101618364453316,-0.7077037896960974,-0.21396218612790108,-0.649015327449888,-0.1419190876185894,-0.45658190827816725,0.17722072172909975,0.15615716762840748,-0.9942321544513106,-0.7568982308730483,-0.5595914097502828,0.5657761408947408,0.3301743636839092,-0.5874446202069521,-0.326552031096071,-0.9330093464814126,-0.20700259041041136,-0.7970191370695829,-0.019948391243815422,-0.8618240836076438,0.23419204633682966,-0.2557185962796211,0.03001284785568714,0.5690125552937388,0.8147444440983236,0.3898212113417685,0.5430903122760355,0.10325998114421964,-0.024849726352840662,0.08251408953219652,-0.2630263944156468,0.8581174002029002,-0.6462334399111569,-0.5848709139972925,0.17685316689312458,-0.3986224178224802,0.5593925951980054,0.2271221000701189,0.5788492206484079,0.723937623668462,-0.12706909095868468,-0.4156638225540519,-0.6788046443834901,-0.5313352732919157,-0.36401498271152377,0.3098410083912313,-0.1277108290232718,-0.6597590399906039,-0.22919801156967878,-0.2136401329189539,0.44249921990558505,-0.3604744873009622,0.8970279875211418,0.6742367991246283,0.5003704139962792,-0.10103422868996859,-0.7453205832280219,-0.4582383590750396,0.13812862429767847,0.9301136848516762,0.6596702779643238,0.11834082053974271,-0.8386074788868427,-0.3504994693212211,0.7403726489283144,0.38985387794673443,0.9373448411934078,-0.10928142117336392,-0.46697340020909905,0.8734761225059628,-0.02246014541015029,0.011142523493617773,-0.6122459294274449,-0.6811805865727365,0.1685393387451768,-0.9135216129943728,0.7488009189255536,0.07072117459028959,-0.6938868691213429,-0.9511225558817387,-0.8480890411883593,-0.1517190234735608,-0.8333119987510145,0.44768720166757703,0.18920598179101944,-0.6936078276485205,-0.08134168526157737,0.37757201911881566,0.23838082794100046,-0.6024015001021326,0.5545283765532076,-0.3215837497264147,-0.7213877481408417,-0.6370665808208287,0.01892756763845682,0.6016732221469283,-0.26923570362851024,-0.9704573145136237,-0.4393129046075046,-0.7812342578545213,0.4166032252833247,0.7725547552108765,0.9909110371954739,-0.5556869893334806,0.15069862501695752,0.3295803042128682,-0.21997948363423347,0.11645983392372727,0.7403640542179346,0.32477042730897665,0.15732560167089105,0.18432636698707938,0.48752355901524425,0.2552050817757845,0.34237279649823904,-0.3295202851295471,0.9364372487179935,-0.12114200042560697,-0.44812724040821195,0.2257243487983942,-0.20333755295723677,0.7574004018679261,-0.3625940843485296,0.5413650977425277,-0.06575768254697323,-0.6518492279574275,0.00016255537047982216,-0.1334117641672492,0.39943967293947935,0.8732723877765238,-0.8912454331293702,0.6860786112956703,-0.02509951824322343,0.44085523625835776,-0.40032028686255217,0.8174298885278404,-0.7151456265710294,0.9027355327270925,0.9917007549665868,0.1785515770316124,-0.957106813788414,0.20196771994233131,-0.23446178575977683,0.9691805504262447,-0.7244217614643276,0.8182117040269077,-0.2292764699086547,0.955282396171242,0.9000109052285552,0.6320567377842963,0.8459542864002287,-0.2051036935299635,0.000533735379576683,0.1578960595652461,-0.8542443118058145,-0.173152772244066,-0.38700789911672473,-0.39494305942207575,0.44747771602123976,-0.4079999658279121,0.7245053597725928,0.9712610938586295,0.20820415625348687,0.5094981747679412,-0.28055746713653207,-0.2176582245156169,0.011401239316910505,-0.7299493895843625,0.6709044128656387,-0.489503416698426,-0.921654848381877,0.9500246443785727,-0.5533001972362399,-0.7506869784556329,-0.31307661440223455,0.2104399437084794,-0.22557606920599937,0.6012608679011464,0.7034840350970626,-0.2816671901382506,0.6281204181723297,-0.8757798094302416,0.917848045937717,-0.4861675803549588,0.42757561104372144,0.09439316112548113,-0.03934637550264597,0.515741603448987,0.21294823428615928,0.4211807856336236,0.5071857469156384,0.8742607734166086,0.5862819538451731,-0.035593482200056314,0.6549831926822662,-0.8891538931056857,0.40425504790619016,-0.4952760902233422,0.07784306770190597,0.516319231595844,-0.3712987992912531,-0.08132054284214973,0.0801207646727562,-0.40821036556735635,-0.8536328766494989,-0.11568817403167486,-0.8925369861535728,-0.0147248231805861,0.9546505571343005,0.5996167082339525,-0.9258449384942651,0.8248642073012888,-0.6381572298705578,-0.21793619357049465,-0.5558769907802343,0.6618414013646543,0.6775233875960112,-0.2136144358664751,-0.6916555599309504,-0.00587023701518774,0.4032768695615232,-0.455188665073365,-0.1868298170156777,-0.46515869349241257,0.594052619766444,0.5568273742683232,0.923465377651155,0.20269394293427467,-0.3953631892800331,-0.18679860793054104,0.5967843071557581,0.7363764150068164,0.7562701473943889,-0.7981479321606457,-0.6259962785989046,-0.12056865403428674,0.679173172917217,-0.4876994234509766,-0.07513822661712766,0.44395999796688557,0.24958187621086836,0.5072291842661798,0.17897809343412519,-0.80851636454463,0.25589296175166965,-0.856376436073333,-0.5563903264701366,0.9516066974028945,0.9680481911636889,-0.461740649305284,-0.42683629132807255,-0.6329389601014555,0.4726278563030064,0.8273145710118115,-0.45562259247526526,0.6221094480715692,0.6326490500941873,-0.08934600371867418,-0.9247238715179265,0.6369469072669744,-0.6213085032068193,0.5980990114621818,0.3418567809276283,0.4378331610932946,-0.24062980571761727,0.29000425105914474,0.8185400953516364,-0.7915706532076001,0.5234098793007433,0.7861912311054766,-0.2967151701450348,0.21647700481116772,0.8039919435977936,0.9117119330912828,0.8623711634427309,-0.19972960371524096,-0.6458764285780489,0.8245693403296173,0.45380127243697643,0.12531708646565676,-0.6699490430764854,0.3698992212302983,0.5372343114577234,0.41435876907780766,0.11969012953341007,-0.9819415961392224,0.8814312629401684,0.8798165651969612,-0.05558939650654793,0.21257750038057566,0.4432182442396879,-0.3264630832709372,0.3054175889119506,-0.9420362105593085,0.16099282400682569,0.2716020317748189,0.755565841216594,-0.7237240974791348,0.6770373634062707,-0.19707023445516825,0.053993417881429195,-0.7421149937435985,-0.911678718868643,0.35833903308957815,0.35237261140719056,0.846256438177079,0.454989870544523,-0.05230997363105416,-0.8102191761136055,-0.28740318957716227,-0.7023309846408665,-0.4674467942677438,0.9443532023578882,-0.3275521043688059,-0.8142447066493332,-0.8916007401421666,-0.9130229675211012,-0.030881563667207956,0.5935454438440502,-0.38929552864283323,0.6371217672713101,-0.9413044708780944,0.036225488409399986,0.1416824134066701,0.47288838354870677,0.7770610442385077,-0.4647224461659789,0.4679484427906573,0.594376212451607,0.4480422125197947,0.7498860908672214,0.9961952781304717,0.1417700662277639,0.4528154409490526,-0.20718082692474127,0.28830768167972565,-0.1457151467911899,-0.20617414405569434,0.26779723539948463,0.4581716894172132,-0.2384077636525035,0.8250727658160031,-0.1500694970600307,0.10726017598062754,-0.43573998752981424,0.6982693960890174,-0.31493738340213895,-0.8564296197146177,0.16062799748033285,-0.17961778677999973,-0.9044456742703915,0.2528901780024171,-0.819183558691293,0.9508832483552396,-0.4709685770794749,-0.8937114980071783,0.8547915746457875,-0.644172647036612,0.39258945966139436,0.20538140088319778,-0.5760024446062744,-0.28479856066405773,-0.649311535526067,-0.2810427979566157,0.8676836928352714,0.5475909546948969,0.9271656358614564,-0.4030351205728948,-0.8046402516774833,-0.28973277285695076,-0.7478576977737248,-0.11591664934530854,-0.9159861751832068,0.7772637591697276,-0.9698426709510386,0.21383782383054495,0.5247388780117035,0.46714325714856386,0.4616949325427413,0.525080622639507,0.0816153259947896,0.8889300776645541,0.13050134852528572,-0.3549410575069487,-0.88607969135046,-0.5561765371821821,0.05715009896084666,0.250785568729043,0.5185866616666317,-0.08160461392253637,0.2733421945013106,0.2516241632401943,0.42350954143330455,-0.28837835928425193,0.54968291381374,-0.09241970255970955,-0.8298182203434408,0.3549619116820395,0.37469864170998335,0.6525930501520634,0.4285919186659157,-0.9830774278379977,0.9255976364947855,-0.6219950467348099,-0.3158288453705609,-0.522933213505894,0.7319990866817534,0.33924890495836735,0.2828944372013211,-0.371722212061286,-0.8903489517979324,0.9610300646163523,-0.7889547795057297,0.5277511328458786,0.7434258162975311,0.5046085636131465,-0.849387894384563,-0.4425933789461851,0.9305449924431741,0.06467125518247485,-0.11689138738438487,0.5909790932200849,-0.03224911727011204,0.4047382562421262,-0.06492199841886759,-0.6250214874744415,-0.9616109826602042,-0.14648377057164907,0.9643748700618744,-0.49797813361510634,0.5670184176415205,-0.8478127126581967,0.6118275318294764,0.6112423483282328,-0.9993376852944493,0.36462390841916203,-0.18347343476489186,0.5072527443990111,-0.7215096773579717,0.6280337921343744,0.89194181188941,0.6758008878678083,-0.27318133506923914,-0.3863084693439305,-0.7690094150602818,0.5470211734063923,-0.16833448084071279,-0.7515220483765006,-0.11495437286794186,0.887285100761801,0.31857435312122107,-0.8802291406318545,0.051230146549642086,0.10546968877315521,0.1255537997931242,0.5526726949028671,-0.38620041450485587,-0.7915715957060456,0.26528986217454076,0.7052388465963304,-0.16887178411707282,0.5191039564087987,0.0442234743386507,0.6479535666294396,0.6651628254912794,0.20925709884613752,-0.831890628207475,0.46821384597569704,0.3166863829828799,0.16256292117759585,-0.22216700622811913,-0.05040918756276369,0.7861573193222284,0.0032422123476862907,0.4319001156836748,0.2787868822924793,0.02156240399926901,-0.03306874493137002,0.8232817286625504,-0.14953942084684968,-0.3412932939827442,0.20729382801800966,0.8518219087272882,-0.9909127471037209,0.4893913925625384,-0.4804190550930798,-0.26415639417245984,0.23869738914072514,-0.8651076802052557,-0.0921948878094554,-0.5204376047477126,0.35373901994898915,-0.5899820630438626,0.8916748068295419,-0.8305195705033839,-0.18152343248948455,-0.9846330676227808,-0.17485062405467033,-0.7870450932532549,0.5070569100789726,-0.22696664044633508,-0.17592291068285704,0.3029927732422948,-0.6308351685293019,-0.21128926519304514,-0.9563299617730081,-0.36631363071501255,0.2680390728637576,0.3505696849897504,-0.23940106993541121,-0.03015788784250617,-0.46953196404501796,0.335104001685977,0.6138306651264429,-0.12478396110236645,0.3464784752577543,0.1471417867578566,-0.2886050809174776,0.6529659954831004,-0.17688367143273354,-0.8483527433127165,0.42733230954036117,-0.42577863531187177,0.18499951902776957,-0.23230357188731432,0.7502901069819927,0.4996680496260524,0.6283111581578851,0.8698747493326664,0.3146504773758352,-0.8721397672779858,-0.9461719463579357,0.7483945842832327,-0.4157909993082285,0.4310894482769072,0.022387890610843897,0.13201531767845154,0.7890075189061463,0.7086529238149524,0.6665209452621639,0.6506328233517706,0.3054332840256393,-0.7636936269700527,-0.35843873070552945,-0.6159997279755771,0.1706926478073001,-0.19259693520143628,0.6040029167197645,-0.27144362358376384,-0.21120499446988106,0.21921479096636176,-0.869008154142648,-0.3475249158218503,-0.30076479027047753,-0.5769287464208901,0.844937021844089,0.0021674116142094135,0.8623900152742863,0.650895357131958,-0.9184486591257155,0.3565107025206089,0.7196712004952133,-0.34359673457220197,0.5354928560554981,0.9058656808920205,0.45029451698064804,-0.2810928653925657,0.6729253786616027,-0.2548576598055661,-0.9693942479789257,-0.630979968700558,0.14098449610173702,-0.6085819797590375,0.678960585501045,-0.8389484970830381,-0.09120674664154649,0.446572151966393,-0.6814073417335749,-0.8599614500999451,0.17783836741000414,-0.7977517158724368,0.8200905583798885,0.17711599450558424,0.3282022476196289,0.7715906007215381,0.08399033034220338,0.6729594911448658,-0.24491928052157164,0.30448761163279414,-0.23159640468657017,-0.3324608514085412,0.1982689443975687,-0.7609525881707668,0.717836725525558,0.28693893551826477,0.975445703137666,0.5823141033761203,0.5213124235160649,-0.7999607869423926,-0.9708716166205704,-0.17336235661059618,-0.17481263354420662,-0.4479703917168081,0.01688746828585863,0.5647720135748386,0.27512598084285855,0.7327830879949033,-0.6246525645256042,-0.28820493165403605,0.009376375004649162,0.23587525030598044,-0.11252042697742581,-0.3627139334566891,0.6125233597122133,0.22079339437186718,-0.41422945354133844,-0.817641768604517,-0.21815874427556992,0.40699617890641093,-0.721240570768714,0.5066382302902639,0.043394452426582575,0.8621042752638459,-0.2591960928402841,-0.20238789962604642,-0.7449749009683728,-0.8487852280959487,-0.7943592029623687,-0.13162876898422837,0.7014079801738262,-0.9447854850441217,0.9211922665126622,0.9255513376556337,-0.5070691602304578,-0.3614837690256536,-0.04680689191445708,-0.6843177028931677,-0.45336679089814425,0.43815012043341994,0.05007793381810188,-0.3175599086098373,0.31562329875305295,0.31719916546717286,-0.11194629315286875,-0.5999254840426147,0.6307708108797669,0.6948063904419541,-0.22531227162107825,0.27501484798267484,-0.465935995336622,-0.2721413215622306,0.5640393616631627,0.7087158570066094,0.19108540238812566,-0.3785066404379904,-0.49363844795152545,0.539624241180718,-0.6477471068501472,-0.2978222561068833,0.9951551160775125,-0.6307210931554437,0.5270773847587407,-0.9621411771513522,0.8897731397300959,0.9357051649130881,-0.5498473918996751,0.9120510560460389,-0.03844190062955022,0.10432844888418913,0.9930398790165782,0.048765487503260374,0.6685972018167377,-0.5569102256558836,0.8250550273805857,-0.5494372574612498,-0.6762379072606564,-0.09310863493010402,0.8645125017501414,-0.9357296079397202,0.4188801380805671,-0.8845062186010182,0.5824616239406168,0.5996877178549767,-0.9727131458930671,-0.08276455011218786,0.27356445929035544,0.543864126317203,-0.418080510571599,-0.05821506632491946,0.6829152535647154,-0.13241997780278325,-0.11313595762476325,-0.3177093677222729,-0.8217867105267942,0.9095307965762913,-0.9569596201181412,-0.2288420288823545,-0.022465165704488754,-0.581091670319438,0.40009303018450737,-0.6727054291404784,0.26176142506301403,0.8156676152721047,-0.663803440053016,0.89401302812621,-0.7420252724550664,0.08857177523896098,-0.5090593751519918,0.6781360283493996,0.10020545776933432,0.802613568957895,-0.3073895154520869,-0.8842906043864787,-0.5714077991433442,-0.7595016127452254,-0.603671305347234,-0.6976150400005281,0.17211092822253704,-0.9122463329695165,-0.6284315753728151,0.0693044220097363,-0.34852390782907605,0.2983484701253474,0.4061782155185938,-0.6606598636135459,0.25707780197262764,-0.6896405592560768,-0.14875141391530633,-0.17621151451021433,-0.7723958143033087,0.9554246906191111,-0.7658104998990893,-0.5082924040034413,-0.3486414453946054,0.24571552593261003,0.3377890703268349,0.478502803016454,0.43902447586879134,-0.4508020463399589,0.23802011413499713,-0.05635001277551055,0.8809762950986624,0.7064976887777448,-0.8880858249031007,0.23382850643247366,0.5267007215879858,-0.43685783026739955,-0.4651033221744001,-0.7226950181648135,-0.8960777260363102,-0.01864563999697566,-0.6890217028558254,-0.40811249939724803,0.8708255412057042,-0.24057218013331294,0.8448362229391932,-0.47496949089691043,0.4812264130450785,-0.9199871267192066,-0.20404759654775262,-0.285081357229501,0.6130392402410507,-0.3674286403693259,0.731113291811198,-0.7462077718228102,-0.5780817004851997,-0.8476087357848883,0.30749538354575634,0.5401105713099241,-0.6448825863189995,-0.8756947596557438,-0.5859028166159987,-0.6875278651714325,0.1553146722726524,0.5158599480055273,0.42960593616589904,-0.3027807460166514,-0.1204461301676929,-0.059254106134176254,0.4195517674088478,-0.4891749070957303,-0.8536020265892148,0.03738006157800555,-0.6728301686234772,0.18567135510966182,-0.9890268733724952,-0.6594825903885067,-0.36788501124829054,-0.2300485190935433,-0.20542191248387098,0.37420836044475436,0.6332085309550166,-0.34911131765693426,-0.719160417560488,-0.5164081011898816,-0.999675942119211,0.08292295364663005,0.21142012579366565,0.12412694888189435,-0.7588673890568316,0.7808119244873524,-0.057619855273514986,0.088495425414294,0.23668261570855975,-0.38480807188898325,0.6199401416815817,-0.3917473880574107,-0.750518602784723,-0.7208546549081802,-0.7358407177962363,-0.5084005687385798,0.6578308893367648,0.7641029846854508,0.2537718270905316,-0.17551348451524973,-0.867882794700563,-0.8548215068876743,-0.4522937638685107,-0.03383609186857939,-0.2730669374577701,-0.03758351830765605,-0.9473840738646686,-0.5527698467485607,0.42223511449992657,-0.8370639383792877,-0.8602949054911733,-0.6636621151119471,0.39164819847792387,0.9365267748944461,0.32807917846366763,0.6152562224306166,0.5646184221841395,0.2837475663982332,-0.478597120847553,0.8984230314381421,0.42575917299836874,-0.31534115551039577,0.5312062245793641,-0.9185032569803298,-0.967252001632005,-0.9993714615702629,0.9551215935498476,0.6101367762312293,-0.10339572047814727,0.9204239882528782,-0.6316810795105994,-0.8032124126330018,-0.41740220598876476,0.47470816038548946,-0.5987461810000241,-0.7745166323147714,0.7616617199964821,0.9727402967400849,-0.7339384956285357,-0.056025526486337185,0.3074322142638266,-0.0465840520337224,0.5729244388639927,-0.4979189061559737,0.5497538303025067,0.5583518757484853,-0.2238540011458099,0.9495285912416875,-0.4626279594376683,-0.4988674898631871,-0.09734586859121919,-0.6234328025020659,-0.6060331626795232,-0.9969512936659157,0.5869478406384587,-0.05218413705006242,-0.44713585171848536,0.4078527921810746,-0.13090240629389882,0.16739180637523532,0.6741332272067666,0.37393899308517575,-0.08569909073412418,0.7100177616812289,-0.8048705058172345,0.9188577034510672,0.9290722738951445,0.774732023011893,-0.26058091409504414,0.8926601875573397,-0.0750569230876863,0.17810543812811375,0.20722280256450176,0.013944641221314669,0.8648118730634451,0.8554334230720997,0.28552624909207225,0.28132928162813187,-0.22969189379364252,0.881535311229527,-0.5299366894178092,0.7918002302758396,-0.6281487788073719,0.5238245544023812,0.06349854683503509,0.7140514287166297,-0.5980171505361795,0.2654509707354009,-0.9444744009524584,0.8257348015904427,0.9534796476364136,-0.8320797621272504,-0.14726034784689546,0.11504093557596207,0.7778927870094776,-0.40988100320100784,-0.8281485429033637,0.22239196533337235,0.7318023750558496,-0.629964439664036,-0.27666943380609155,0.18711001286283135,-0.4499790286645293,0.03956850804388523,0.8619437995366752,0.8399961763061583,-0.05991114675998688,0.8610928580164909,-0.7845911891199648,-0.9911257033236325,-0.9910172130912542,0.7624011617153883,0.10434956755489111,-0.49620682187378407,-0.8556216303259134,-0.03093244507908821,-0.9932954413816333,0.2675654022023082,0.18549701943993568,-0.8377146683633327,0.9995901975780725,0.059017750434577465,0.6294445376843214,-0.9110983274877071,0.29435115959495306,0.5490456237457693,-0.8293241793289781,-0.3407723717391491,0.7527684066444635,0.14271170739084482,-0.7370054954662919,0.09957713587209582,0.3563580526970327,0.1472467640414834,0.014304481446743011,0.9758043391630054,0.23406780697405338,-0.6541767013259232,-0.5033735539764166,0.10043956339359283,0.6311338623054326,-0.7803052794188261,-0.7213004436343908,-0.6070422446355224,-0.2184920753352344,0.02279624529182911,-0.023802785202860832,0.7043947950005531,0.881515490822494,0.21724406350404024,-0.8394911326467991,0.014532219152897596,-0.3365437458269298,0.15557212522253394,0.26290794694796205,-0.17321834107860923,-0.3289100066758692,-0.4179176730103791,0.31626022700220346,-0.22620503092184663,0.8330333065241575,0.3307582731358707,-0.10061234002932906,0.7595356372185051,-0.28539210092276335,-0.5723996288143098,-0.5153623535297811,0.6004036297090352,0.26898684026673436,0.6210034885443747,-0.9418822727166116,0.3244909611530602,0.020205247681587934,0.489484294783324,-0.1587277171202004,-0.21810158994048834,-0.15784989204257727,-0.8583944523707032,-0.9774014661088586,-0.5265375599265099,-0.7981862127780914,0.5290810042060912,0.6443696576170623,-0.5049967193044722,-0.12175291031599045,0.5606882092542946,-0.16499669197946787,0.30801236163824797,-0.8688528523780406,-0.7269027489237487,0.042795768938958645,-0.6786954407580197,-0.579131780192256,-0.030557849444448948,-0.975783331785351,0.8702718527056277,-0.8874312145635486,-0.6049729590304196,0.8916964079253376,-0.9565930720418692,0.7776608085259795,-0.9226605822332203,-0.5414123586378992,0.9878751039505005,-0.8065660041756928,0.30137557489797473,0.4076049090363085,0.7765058893710375,0.17473887745290995,-0.29410861944779754,0.42310055578127503,0.5731766042299569,-0.43028139090165496,-0.9950390770100057,-0.6491511319763958,0.08418998820707202,0.7314603510312736,-0.280345989856869,-0.2881500795483589,-0.3723380765877664,0.7468805308453739,-0.23865394433960319,0.1024302626028657,0.711875225417316,-0.40181231778115034,0.25082618091255426,0.024172044824808836,0.23112969426438212,-0.2417140514589846,-0.3393530617468059,-0.6909882598556578,-0.31667609326541424,0.04356797970831394,0.35882986802607775,0.4328530062921345,0.2478177770972252,-0.8080231891945004,0.7492065113037825,-0.28476320393383503,-0.022914698347449303,-0.6504177553579211,-0.8412595097906888,-0.9282084652222693,0.2919504614546895,-0.6125001730397344,0.7519922880455852,-0.2082153968513012,-0.9584171092137694,0.9281443157233298,0.911645547952503,0.8781293500214815,-0.6299801394343376,-0.9590360345318913,-0.20527567202225327,0.04725585412234068,-0.2817738652229309,-0.09351401077583432,-0.25364723708480597,-0.7178041352890432,-0.3758303513750434,0.8257838501594961,-0.16398613713681698,0.2624182873405516,0.4767882446758449,0.15531628858298063,-0.535744559019804,-0.5237443395890296,-0.02019732305780053,0.20415375148877501,0.6909713931381702,-0.40709372563287616,-0.6548374351114035,0.09047913644462824,-0.22203615307807922,-0.692932796664536,0.2216262319125235,0.2334250258281827,-0.9053351515904069,-0.5059254881925881,0.5644644256681204,-0.7438206197693944,0.7940257592126727,0.5331790219061077,0.6546979667618871,0.2488772296346724,-0.5132603016681969,0.8539799586869776,0.3388435998931527,0.4405128648504615,0.30105708353221416,-0.3459271602332592,0.8341206065379083,0.16399427317082882,0.36849514581263065,-0.9029260817915201,-0.5120795890688896,0.9587809955701232,0.6479482809081674,-0.6513977213762701,0.8385753128677607,0.2840925073251128,-0.18406990356743336,0.9838399174623191,-0.009148810524493456,-0.21990108536556363,0.8984998553059995,0.0534508409909904,-0.17842772090807557,0.4938540649600327,0.33771219849586487,-0.36911782110109925,-0.10368286818265915,-0.7489804713986814,0.49772105924785137,0.587626647669822,-0.12135494267567992,0.2916957000270486,-0.8179455711506307,0.05261440156027675,-0.14400689676404,-0.9945886651985347,-0.4979204530827701,-0.6812447812408209,-0.027831317856907845,-0.4141439558006823,0.26817497657611966,0.31406839611008763,-0.764641001354903,0.9396200072951615,-0.024781558196991682,-0.7331822137348354,0.6317804669961333,-0.08620961382985115,-0.2784752710722387,-0.8812264548614621,0.029671634081751108,0.45435028756037354,0.42806264478713274,-0.7515894402749836,-0.5190241471864283,-0.23532155668362975,0.9777238015085459,0.3200410408899188,-0.4327554563060403,-0.8669843077659607,-0.6414991789497435,0.7463595462031662,-0.10781372338533401,0.8129522698000073,-0.8430339810438454,-0.6802556165494025,0.8849442908540368,-0.045632025226950645,0.3967030830681324,0.5396480653434992,-0.6792322560213506,0.5511835007928312,0.9468133402988315,0.9436395047232509,0.6172117167152464,0.783424670342356,-0.9380166116170585,-0.0887842932716012,0.49685808224603534,0.2405939046293497,0.7660636156797409,0.10419799387454987,0.755080932751298,0.8561886232346296,0.38853150606155396,0.8983480418100953,-0.5063599850982428,-0.5432101520709693,-0.10868920665234327,-0.904931646771729,-0.9159974125213921,0.21129922149702907,0.145259871147573,0.700566272251308,0.28833536291494966,-0.6878326642327011,-0.6826822673901916,-0.28366058226674795,0.7234834604896605,-0.6269796653650701,-0.9938334254547954,0.365637241397053,0.7144870357587934,-0.7938308245502412,-0.37626527110114694,-0.9332734602503479,-0.9108852474018931,0.08292168378829956,0.7490250063128769,0.5207156594842672,0.16873312974348664,-0.08515131426975131,0.37148992344737053,0.9242148171178997,-0.41917429491877556,-0.9045538436621428,0.3910238309763372,-0.28783744340762496,0.6602049539797008,-0.005068631377071142,0.03506070747971535,0.6190260937437415,-0.5449467780999839,0.432317110709846,0.9298486965708435,-0.1587859303690493,0.21619303850457072,0.17139871045947075,0.0306117981672287,0.9847902497276664,-0.6602674731984735,0.714355465490371,0.3285792204551399,0.5956990397535264,0.47124306950718164,-0.7155955261550844,0.6359390611760318,-0.2435497329570353,0.29580012429505587,-0.7869870942085981,-0.7963903723284602,-0.028547952882945538,-0.03721755836158991,-0.0794085101224482,-0.045018346048891544,-0.9736595591530204,0.4435506099835038,0.5635228492319584,-0.5714668491855264,0.8940262268297374,0.6285851462744176,-0.5752190710045397,-0.3628448494710028,-0.0992398806847632,0.44227624824270606,0.7163585615344346,0.8367931288667023,0.9983386234380305,-0.8677042196504772,0.1583766103722155,0.976601296570152,-0.9487115079537034,-0.14663184341043234,-0.42079667933285236,0.7922317641787231,0.24289452843368053,-0.054759406950324774,0.3440485564060509,0.5013591689057648,0.14747019158676267,0.16816440410912037,0.0156715358607471,-0.3970593521371484,0.8462685137055814,-0.42131379432976246,0.017355300020426512,0.013723078649491072,0.5922923516482115,-0.9770611668936908,-0.2729748459532857,0.9494491741061211,-0.6543463105335832,-0.06713515101000667,-0.9995529521256685,0.7360699474811554,0.5192854278720915,0.25177486473694444,-0.4163146773353219,-0.5398442507721484,0.32870269333943725,-0.99268082017079,0.7514030621387064,0.6982634151354432,0.11582282558083534,0.8276357436552644,-0.8200187291949987,-0.767827179748565,0.5828484361991286,0.04750821366906166,-0.9036626829765737,0.03586516762152314,0.49430052377283573,0.8355307071469724,0.23142440896481276,0.9578333920799196,-0.5823098830878735,-0.22776118526235223,-0.9192193411290646,-0.024449967313557863,-0.5150205255486071,-0.040772403590381145,0.23807573644444346,0.7853889586403966,0.46048380667343736,0.6567673715762794,-0.003438914194703102,0.6344774151220918,-0.9369609197601676,-0.6573767624795437,0.15155067620798945,0.36024402314797044,-0.7288431050255895,-0.21750682685524225,-0.21847230335697532,-0.6487184320576489,-0.8331508953124285,0.7984710405580699,-0.21320914011448622,-0.3646440082229674,0.7839364563114941,-0.18832575622946024,-0.3453301661647856,-0.1080639474093914,0.11197795625776052,-0.8190153441391885,-0.8881693417206407,-0.15163736371323466,0.5550472480244935,-0.1724211247637868,-0.4186233812943101,0.08348365826532245,-0.4857481815852225,0.5374566973187029,0.863832104485482,0.039731438271701336,-0.47684115124866366,0.844942219555378,0.07612114353105426,0.06526905717328191,0.36890774592757225,-0.7719353139400482,-0.33317873533815145,-0.06903589237481356,-0.08692815573886037,-0.38473616214469075,0.47286276845261455,0.6368842953816056,0.7015360798686743,0.32483359379693866,0.20356491534039378,-0.13417113572359085,0.7447160989977419,-0.832604318857193,-0.633603647351265,-0.873302586376667,0.5021489323116839,0.9627981060184538,-0.1360606667585671,0.1637419555336237,0.18092566262930632,0.3291028938256204,0.0792370461858809,0.024843321181833744,0.02713082591071725,-0.720316531136632,-0.5203143921680748,-0.9162559732794762,-0.08206283068284392,-0.4292937130667269,-0.6969856293871999,0.3661101353354752,-0.5635414649732411,0.5517421728000045,0.4730050475336611,-0.1733298166655004,0.6575352656655014,-0.5330449650064111,0.017508683260530233,-0.04239122895523906,-0.07024137396365404,-0.8102277461439371,0.6518550738692284,-0.2610485777258873,-0.9687568889930844,-0.5977514102123678,0.3883285243064165,-0.8568271570838988,0.31758252205327153,0.7420175615698099,0.4987173085100949,-0.7970045646652579,-0.2627640566788614,-0.3770977556705475,0.06329311616718769,0.49501177622005343,0.5868035140447319,-0.7681815256364644,-0.4417019081301987,-0.5977201322093606,-0.877602334599942,-0.9588058670051396,0.15252160979434848,-0.2129339799284935,0.39013983588665724,0.15269883768633008,0.8769755722023547,0.8211476383730769,-0.9685580767691135,0.7654268257319927,0.8407894847914577,0.25840752152726054,-0.9556421348825097,0.34559757774695754,-0.9678589110262692,-0.43702214723452926,-0.8940817946568131,-0.876882784999907,-0.32865463430061936,-0.9538626410067081,-0.2811734895221889,-0.4824283611960709,0.4013242437504232,0.2710679923184216,-0.5267385602928698,-0.9231820530258119,0.14271734794601798,0.028388725593686104,0.5498138200491667,-0.1306841243058443,-0.6509740310721099,0.5330071710050106,0.9140122490935028,0.804163180757314,-0.7991444990038872,0.7950348476879299,-0.9898115741088986,0.03794243838638067,0.4093365496955812,-0.6850921590812504,-0.5342311700806022,0.47833129158243537,-0.547265537083149,-0.7082303455099463,-0.8963027722202241,-0.36213494278490543,0.4556355196982622,0.13594492943957448,0.810204389039427,-0.9335122304037213,-0.7134152031503618,-0.8999131512828171,-0.9445535158738494,0.6745391534641385,0.6593921161256731,-0.46836319006979465,-0.5560904643498361,-0.005464276764541864,-0.8697768710553646,-0.9005474098958075,0.47626126976683736,0.9781020805239677,0.36138575058430433,-0.8338875011540949,0.8283761632628739,0.6906152409501374,-0.05518294498324394,-0.0981769417412579,-0.7678092666901648,0.5506440796889365,0.14506732020527124,0.09248833823949099,0.807261323556304,-0.7374212448485196,0.8523524664342403,-0.3746510283090174,-0.6643598875962198,0.786038463935256,0.029197339434176683,0.1196730281226337,-0.9353193189017475,0.018501236103475094,-0.35156796174123883,0.746802709531039,-0.4248997257091105,-0.2636068081483245,-0.4918806911446154,-0.000135169830173254,-0.1676527955569327,0.28720965376123786,-0.936500069219619,0.06262528570368886,0.8892999826930463,0.10614143405109644,-0.5449680211022496,0.3607972511090338,0.2751731197349727,0.22049891017377377,-0.4835650846362114,0.6478654500097036,0.5839076773263514,0.9364805039949715,0.032750936690717936,-0.6754936543293297,-0.33608410600572824,0.900597854051739,-0.24622771423310041,0.511394995264709,0.8646945394575596,-0.2847862127237022,-0.038794418796896935,0.14112978475168347,-0.24173148348927498,-0.8698133248835802,-0.8397815353237092,0.36913852067664266,-0.2912058159708977,-0.4097184152342379,-0.4598272079601884,0.6873220009729266,0.35615398548543453,0.24555395264178514,-0.28541470179334283,0.33490852545946836,0.3773639537394047,-0.8907066415995359,-0.8355775601230562,-0.929254440125078,-0.8654824788682163,0.9437723886221647,0.9366436647251248,-0.24020145693793893,-0.6544835870154202,-0.8596386145800352,0.5202138093300164,0.5895920074544847,-0.08322228863835335,0.8498698454350233,0.9368314407765865,-0.29873213497921824,0.4199907034635544,-0.9240317828953266,-0.9460352477617562,0.24161377269774675,0.20663226209580898,-0.9174196505919099,-0.4881297699175775,-0.7233133940026164,-0.4218865418806672,-0.23098299792036414,-0.06206550123170018,0.06074609514325857,0.04714559717103839,-0.45741648180410266,0.4520094934850931,-0.7726917834952474,-0.8658863389864564,-0.4203448467887938,-0.3358255410566926,0.777002617251128,0.7688013250008225,-0.27360850758850574,0.36599307833239436,0.7382950522005558,0.7775420751422644,-0.559511621017009,-0.8224963871762156,0.8635282232426107,-0.9421718423254788,0.6196764442138374,-0.25115553336218,0.9914505956694484,0.6984366234391928,-0.506019992288202,0.5114715155214071,0.434419734403491,-0.3760033892467618,0.6838423660956323,0.07405199063941836,0.9871207261458039,-0.2328291991725564,-0.6736613907851279,-0.9344923309981823,0.8533322336152196,0.566424508113414,-0.8826232510618865,-0.7312274258583784,0.34131483314558864,-0.023640822153538465,0.7723817005753517,-0.24389537004753947,0.06120938202366233,0.3465303494594991,0.15449906047433615,-0.9052479271776974,0.24019562546163797,-0.4197172084823251,-0.7035378436557949,0.9052067114971578,-0.5002121971920133,-0.22465969529002905,-0.3383932835422456,0.6031412738375366,0.7069815178401768,-0.3853869051672518,-0.144628316629678,-0.5762214050628245,-0.519930281676352,-0.15050432784482837,-0.15016677835956216,-0.26593658654019237,0.5244886786676943,-0.8324379422701895,0.7465752055868506,0.018958280328661203,-0.6897096084430814,-0.9730474781244993,-0.9639804526232183,-0.491608077660203,0.3547999197617173,0.6813283311203122,0.2710362826474011,0.9806352420710027,0.9988181432709098,-0.9116679355502129,-0.4168096510693431,-0.49001023219898343,-0.001453495118767023,-0.9645120892673731,-0.22806820692494512,-0.5186780244112015,-0.11067021917551756,0.8317797733470798,0.7141517512500286,-0.67676110425964,0.10457833809778094,-0.6288067353889346,0.43401574110612273,-0.43705227551981807,-0.5519921607337892,-0.5219489224255085,-0.8948448901064694,-0.9753081342205405,-0.055720822885632515,-0.9309142446145415,-0.2887398530729115,-0.6703927088528872,0.29475754778832197,-0.8226372017525136,0.47467880928888917,-0.8021572669968009,0.03428521333262324,0.42906665708869696,0.1638829573057592,0.5881601236760616,0.6890062121674418,0.5997488512657583,-0.46264386363327503,0.3196090469136834,-0.3153772293590009,0.7977655986323953,0.9634899967350066,-0.9866139595396817,-0.8818278941325843,-0.32766101136803627,0.15655886381864548,-0.8440878069959581,0.8408447504043579,-0.864546081982553,-0.737357777543366,-0.6959945657290518,-0.7885944838635623,-0.41768140299245715,0.31039313739165664,-0.7855615615844727,0.24493788089603186,0.9288415601477027,0.5886191674508154,-0.5219094250351191,-0.09736129734665155,-0.8744038008153439,0.3469914090819657,-0.6523320646956563,-0.46672011306509376,0.1968192607164383,0.2494435142725706,0.9927218412049115,0.3786800494417548,0.399885518476367,-0.8607467780821025,0.8307495024055243,-0.29439768847078085,0.07883916981518269,0.05098706344142556,0.8131649335846305,0.796106637455523,-0.6829957338050008,-0.5098291086032987,-0.8921472225338221,0.23609627597033978,0.8395684026181698,-0.8016487862914801,0.25581070967018604,0.7130772620439529,-0.7319484455510974,-0.9127954840660095,0.935221841558814,0.8972182380966842,-0.47089354740455747,0.5526980995200574,0.3746574050746858,0.13883817242458463,0.005735231097787619,-0.16281901532784104,-0.04019518569111824,0.03275957191362977,-0.6094603016972542,-0.5500368690118194,-0.14895390765741467,0.5007165400311351,0.3234333507716656,-0.705582641530782,0.6545223346911371,0.29752557538449764,0.7416103887371719,0.9370191157795489,-0.5640408019535244,0.6763066067360342,0.6828136183321476,-0.1298514986410737,-0.33506897650659084,-0.440121924970299,-0.46803301153704524,0.10920075653120875,-0.6541488985531032,0.2574273352511227,0.9453880456276238,0.8303306112065911,0.08990002796053886,0.5698303799144924,0.7842835588380694,-0.1737609412521124,0.4296781732700765,-0.4138433262705803,0.7452954682521522,-0.30041333055123687,0.39072883734479547,-0.06029765401035547,0.4282386233098805,-0.45958696538582444,-0.11690231645479798,-0.8475782801397145,-0.884191770106554,0.6968744858168066,-0.8282467401586473,0.7370383208617568,-0.3790007093921304,-0.87929399125278,0.820972042158246,0.4647507122717798,-0.8650594484061003,-0.6667534308508039,0.24133262876421213,-0.9212448098696768,0.45668990118429065,0.11536233965307474,0.09726616134867072,0.7195083871483803,0.5449773748405278,-0.9052991648204625,0.5499856323003769,0.1435229992493987,-0.3477474329993129,-0.8565211584791541,-0.007890458684414625,-0.3896407410502434,-0.4897847338579595,-0.28670943435281515,-0.42619688156992197,-0.6667361385188997,-0.5756480502896011,-0.8750778767280281,0.34423440881073475,0.8076040013693273,0.4106514514423907,0.6545680733397603,-0.7236073529347777,-0.23752213642001152,0.6601834832690656,0.10217490792274475,-0.17481333995237947,0.43903307942673564,-0.5632469686679542,-0.5538113065995276,0.6923377099446952,-0.7150951358489692,0.3557103374041617,-0.595504863653332,-0.6100216512568295,0.22441000072285533,0.4777002530172467,-0.6220120480284095,0.9487466136924922,0.8816240117885172,-0.6322128949686885,0.2775050653144717,-0.17358135106042027,0.9125580531544983,0.784749573096633,-0.7996441661380231,0.06898435158655047,-0.2096192268654704,0.535943060182035,-0.36052675219252706,0.5652662268839777,0.06813043495640159,-0.41011891700327396,0.6031643664464355,-0.8732346538454294,0.3293320005759597,-0.20765034947544336,-0.43373764865100384,-0.7458448489196599,0.2272029398009181,-0.3298638057895005,0.7526322770863771,0.8184784869663417,0.39025464141741395,-0.9275288889184594,-0.5015674997121096,0.766441916115582,0.27171139046549797,0.2545618964359164,-0.5401494619436562,-0.3180539426393807,-0.14173902617767453,-0.3534281044267118,-0.14285867661237717,0.7947843410074711,0.6509882505051792,-0.574047383852303,-0.7173309037461877,-0.20176298031583428,0.5348501773551106,0.1703513478860259,0.1620806585997343,0.6308630467392504,-0.005141287110745907,0.9204723103903234,0.9222420519217849,-0.7518251221626997,0.6783220982179046,0.9006235850974917,-0.06146794557571411,-0.8853711816482246,0.3355964454822242,0.8048485731706023,-0.7418863298371434,0.11462343065068126,0.7348083355464041,-0.16875934367999434,0.091701565310359,0.21463442128151655,0.6770508452318609,-0.6012841099873185,-0.4975449447520077,-0.515970513690263,-0.7135827247984707,0.22803983883932233,0.9190234253183007,-0.5308610210195184,0.268203878775239,-0.7307566530071199,-0.7211101758293808,-0.6434156182222068,0.6870649438351393,0.69185178168118,0.9900115365162492,0.39225780637934804,0.5781609006226063,-0.5100515964441001,-0.20005744276568294,0.5925644133239985,0.037262205965816975,0.3858890705741942,-0.7416099417023361,0.9082376998849213,0.9853885495103896,0.8499832497909665,-0.9331357860937715,-0.31797882495447993,-0.4185080942697823,0.9229184496216476,0.48074717866256833,-0.7150822458788753,-0.8103626221418381,-0.7716018022038043,-0.18417060188949108,0.14085744321346283,-0.7184929829090834,-0.5897813476622105,-0.685152520891279,0.4694894440472126,-0.28016242664307356,-0.2778912908397615,-0.2808110727928579,0.852858625818044,-0.5056047388352454,-0.9162635975517333,-0.4292295053601265,-0.38933265628293157,0.6108213472180068,0.5063779992051423,-0.18521126499399543,0.5967265204526484,0.33384794648736715,0.07960302894935012,0.7652021679095924,0.9962169448845088,0.8889298280701041,0.07410208182409406,0.2698293109424412,0.8222414036281407,0.8625558773055673,0.29491250216960907,-0.20371027570217848,-0.08603344624862075,0.18827987788245082,-0.2945169280283153,0.9703172300942242,0.7970700827427208,-0.9606956704519689,0.3906156118027866,-0.6272071418352425,-0.48014950985088944,-0.7833525543101132,0.095484409481287,0.021447154227644205,0.9285497204400599,0.6431666142307222,0.2952731577679515,0.06955112144351006,0.422386207152158,0.9914265745319426,0.867225157096982,0.5516778724268079,0.7859389479272068,-0.6984912203624845,-0.5243825372308493,-0.65444295713678,-0.07734511652961373,0.8932615420781076,-0.24645553203299642,0.5689804637804627,0.20287904841825366,-0.9772462421096861,-0.8647618526592851,-0.03229409456253052,0.16541722882539034,-0.976776166819036,-0.05161199998110533,-0.6336264698766172,-0.49434872809797525,-0.9591134018264711,-0.3827910013496876,0.36030128272250295,-0.7770788492634892,-0.7016902472823858,0.24380418565124273,-0.8402344528585672,-0.28950103698298335,-0.3061202522367239,0.9642241508699954,0.9949134937487543,-0.22074120352044702,0.6965970285236835,-0.47369945887476206,0.9330954886972904,0.5408823303878307,0.7855434031225741,0.4507574802264571,0.23686266830191016,0.5591461285948753,0.5218505477532744,-0.28645167546346784,0.4574531246908009,-0.5426675416529179,-0.16184263350442052,0.849210592918098,0.9378008204512298,0.35630230884999037,0.7002620697021484,0.39908064901828766,-0.012802657671272755,-0.90692715998739,-0.8164934748783708,-0.3697995594702661,0.4909712444059551,0.23285643057897687,0.5440894961357117,0.8000785619951785,-0.09704376803711057,0.37026229267939925,-0.14363065222278237,0.39091793540865183,-0.046132396906614304,-0.514711756259203,0.6715872581116855,-0.9588781408965588,-0.26307415356859565,0.5962924561463296,-0.6410292219370604,0.7096543810330331,0.8840713948011398,-0.7512115621939301,0.43242753855884075,-0.6662929905578494,-0.2986650154925883,-0.10281886998564005,0.7585000745020807,0.8828731752000749,-0.8987290826626122,0.9700616225600243,-0.9221565304324031,-0.4460720312781632,-0.7161570177413523,0.42305696988478303,-0.74511030735448,0.7539719049818814,0.7769334483891726,-0.2154379370622337,0.9836650732904673,-0.03691261773929,-0.6081944196484983,-0.6512876362539828,-0.7002659942954779,0.5564252543263137,-0.7863537697121501,0.5771710565313697,0.7810616986826062,0.10602571070194244,0.023210108280181885,-0.0535005503334105,-0.7381832893006504,0.3398732589557767,-0.24388426402583718,-0.8966630036011338,0.7897933479398489,-0.18721665209159255,0.24206460500136018,0.7320754094980657,0.741412500385195,-0.2078793542459607,0.051354116294533014,0.09600202227011323,0.1355318077839911,0.8218658319674432,-0.20921646105125546,-0.39993372978642583,0.8237811867147684,0.24024262558668852,-0.9734052810817957,-0.7866147281602025,0.23675859021022916,0.2069283751770854,-0.13450058782473207,-0.1279413145966828,-0.9072712538763881,-0.4413749515078962,0.9388518123887479,0.7403332320973277,-0.7772586424835026,0.79216343536973,-0.7009763373062015,0.9452321175485849,-0.05624084733426571,0.5084548001177609,0.3606395968236029,-0.7654206994920969,0.6303850347176194,-0.8504331042058766,0.6393333952873945,-0.7931072441861033,-0.4498120998032391,0.183469673153013,0.28460450703278184,-0.802490065805614,0.9371988731436431,0.6655373997054994,0.28436548775061965,-0.7836468098685145,0.961602489463985,-0.7320992755703628,0.907675854396075,-0.6868941425345838,0.5260280929505825,-0.5840987553820014,0.13952931249514222,-0.20178381353616714,0.4319935254752636,0.07952520530670881,0.8794863875955343,0.35068671172484756,0.16279884008690715,-0.9908197009935975,0.145732959266752,0.8814636552706361,-0.16072394605726004,-0.061728422064334154,0.515796912368387,0.915844380389899,0.7188677885569632,0.6908871931955218,-0.1627045669592917,-0.8189680576324463,-0.253511103335768,0.6359376115724444,-0.5955110723152757,0.1125319330021739,0.36488808784633875,-0.32685619220137596,0.0013359244912862778,0.7475926135666668,0.35060577001422644,-0.6066673686727881,0.02370775444433093,-0.2371076736599207,0.9670310877263546,-0.775649409275502,0.7115494147874415,-0.3101262068375945,-0.55843420419842,-0.8017508452758193,0.7406992148607969,-0.37257186602801085,-0.008923534769564867,0.46479617757722735,-0.3193184747360647,0.7631704611703753,-0.0714179896749556,0.2089707674458623,0.8450864967890084,-0.07777859596535563,0.635616950225085,-0.8555413926951587,0.7147399382665753,-0.30676832841709256,0.31344756204634905,0.09559054300189018,-0.024219836108386517,-0.41596210841089487,0.10791345546022058,0.41209323005750775,-0.8045236864127219,0.17932386882603168,-0.7667784243822098,-0.328163945581764,0.6222486183978617,0.6813841005787253,0.8237711782567203,0.6488609598018229,-0.3651905804872513,-0.40975631959736347,-0.7632370865903795,0.5110099432058632,0.6655425862409174,0.20426684152334929,0.396799563895911,-0.46659206924960017,0.310250137001276,-0.892009531147778,0.7100544073618948,-0.8906163698993623,0.20689645037055016,-0.43451712001115084,0.6142568592913449,0.9235285483300686,-0.6855568736791611,-0.14689464773982763,0.24647214962169528,-0.27220526803284883,0.9372194949537516,0.28214398631826043,0.6657800730317831,0.5269029755145311,-0.5145538207143545,-0.5658304733224213,-0.07548782648518682,0.6998268752358854,0.8485091757029295,-0.8992248978465796,-0.8925495282746851,0.8042774507775903,0.8397091887891293,0.9676337940618396,-0.7639188161119819,0.6528137605637312,0.6093720644712448,-0.5699834879487753,0.32637739880010486,-0.5740905944257975,-0.8522158949635923,-0.48124748887494206,0.6076118531636894,-0.5320478547364473,0.4442694610916078,0.7419329765252769,-0.12498192442581058,-0.8246309170499444,0.5499555487185717,-0.49109630892053246,0.707358683925122,0.6097494130954146,0.8030427489429712,-0.7920924783684313,-0.3753637303598225,-0.6987236314453185,0.910811341367662,-0.23361306730657816,0.41681191232055426,-0.15015575662255287,0.5904967021197081,0.05749982316046953,0.6486871228553355,0.19591753464192152,0.4484316958114505,0.5530226156115532,0.26247862447053194,0.4573023449629545,0.3624206753447652,0.8880812777206302,0.046907161828130484,-0.74537304462865,-0.9384963712655008,-0.5616309577599168,0.15247068693861365,-0.1429814868606627,-0.733955838251859,-0.18485674634575844,0.3337991004809737,0.38039477495476604,-0.6027228524908423,-0.29630112648010254,0.9298493321985006,0.50745769450441,0.2676261463202536,-0.4729925855062902,-0.7075878386385739,0.19071882590651512,0.6195319355465472,-0.8206378640606999,-0.9481968032196164,0.632156502455473,0.5234519820660353,0.6255264761857688,-0.5354967284947634,-0.22880392987281084,0.5755653609521687,-0.8359312112443149,-0.06928706541657448,-0.8683945736847818,-0.5809004306793213,0.7293155225925148,0.6166047621518373,0.42183927027508616,-0.7751003107987344,-0.9305403660982847,0.04579231096431613,0.23162629874423146,-0.05312787229195237,-0.1352143893018365,0.4468880011700094,0.6101582357659936,0.5165235097520053,0.7110227541998029,-0.1275802287273109,-0.9603668595664203,-0.3924310151487589,0.08821391174569726,-0.3400491741485894,-0.9655621089041233,-0.42086909525096416,-0.18147194664925337,0.08408885402604938,-0.5208371453918517,0.6800026288256049,0.4636723743751645,0.09431465994566679,0.3399825943633914,0.3533400953747332,0.9693795540370047,-0.5723145748488605,-0.7450661608017981,-0.22774893091991544,0.3461726810783148,-0.40837041893973947,-0.010278640314936638,0.7267772243358195,-0.24348801421001554,-0.22274258034303784,0.3527974374592304,0.531753349583596,-0.8465902698226273,0.7847575885243714,-0.3640343020670116,-0.35498953564092517,0.8370913797989488,-0.5591366891749203,0.7200735597871244,0.0018458138220012188,-0.7557529415935278,0.3119002846069634,0.8407536712475121,0.7540934085845947,0.4769593025557697,-0.7890149811282754,0.6312004551291466,0.2408043066971004,0.6169345118105412,0.8937309877946973,-0.0876174746081233,-0.26292763371020555,0.08351500146090984,0.05316980183124542,0.6863233279436827,-0.743554875254631,-0.8466596524231136,0.6886477144435048,-0.9999728063121438,-0.20399208134040236,-0.17781492415815592,-0.8399849105626345,0.032936845906078815,-0.48396010836586356,0.01987424260005355,0.68692815490067,-0.5286890119314194,-0.7114862212911248,-0.3490931778214872,-0.9926205356605351,0.043987348675727844,-0.17650723597034812,-0.9111867882311344,-0.9234854010865092,-0.056683748960494995,0.7322332421317697,0.5546343140304089,0.20558445062488317,0.7832040088251233,0.13752818573266268,-0.650454425252974,0.8311446537263691,0.5977424420416355,0.8485889979638159,0.266583395190537,0.5616024825721979,-0.7175597888417542,-0.06593750463798642,-0.08183331834152341,-0.946850229986012,0.3814797764644027,-0.049017255660146475,-0.17561131296679378,0.6532128043472767,0.6567537747323513,0.5125394109636545,-0.7794276983477175,0.2523600892163813,-0.6915320595726371,0.8574874103069305,-0.16903746500611305,0.8196909497492015,0.804765067063272,0.9518348374404013,-0.40309455757960677,0.9170014187693596,0.5185040701180696,0.6287194136530161,0.01833574939519167,-0.7054460775107145,0.7438287730328739,0.3995455545373261,0.048739518504589796,0.5559310992248356,-0.6072661550715566,-0.9753094548359513,0.908352239523083,0.09475332638248801,0.796790111809969,0.7443053522147238,0.08835528464987874,0.8478432865813375,-0.8949104025959969,0.1855824813246727,-0.1523424698971212,0.37874445086345077,0.4301775870844722,0.9603329189121723,-0.9503563465550542,-0.7965053902007639,0.40537715423852205,-0.6772849825210869,-0.8994085337035358,0.9815702866762877,0.5695532308891416,-0.9405844989232719,0.10930074844509363,0.2598057766444981,-0.3943524551577866,0.14584397338330746,-0.3279827907681465,0.5701459031552076,-0.43876888509839773,0.6617891509085894,-0.7348590912297368,0.35672718472778797,0.9361452963203192,-0.16361554060131311,-0.834587131626904,0.0535975294187665,0.8075935756787658,0.3051433293148875,0.9533554632216692,0.8752141459845006,-0.7668784791603684,0.897681119851768,0.41594481375068426,0.559780290350318,-0.39106631511822343,0.575138624291867,-0.07106443261727691,-0.8837950015440583,-0.3064297237433493,0.13405023328959942,0.06476998468860984,-0.10342780919745564,0.6680520488880575,-0.2769799320958555,0.390521336812526,-0.471380228176713,0.9412652533501387,0.19527479680255055,-0.5734724318608642,0.34691713098436594,0.5847340673208237,0.8481436460278928,-0.511799440253526,-0.6266751820221543,-0.9484218680299819,0.4434244744479656,-0.6523468131199479,-0.4801908116787672,0.35121612809598446,-0.609444547444582,-0.5736754047684371,-0.9118786328472197,0.22343301493674517,0.263457162771374,-0.45682160602882504,0.5587850003503263,-0.18861868418753147,0.27309243893250823,0.49297223845496774,-0.7926128203980625,0.005586353130638599,0.5178212053142488,-0.991417745128274,0.3237033477053046,0.018115354236215353,-0.5712486556731164,0.5835029138252139,0.04787351517006755,0.1806950718164444,0.48358875466510653,0.21145733632147312,0.7472194349393249,0.4146712436340749,-0.32527231937274337,-0.15915241977199912,0.07137739704921842,-0.7282632850110531,-0.7954738195985556,0.5036019696854055,0.464212323538959,0.23849395010620356,0.9162092604674399,0.6043251249939203,0.9489933452568948,-0.15300270868465304,0.46651819348335266,-0.8278763052076101,0.9368793088942766,-0.5171944852918386,-0.9514950532466173,0.4948074738495052,0.684287809766829,0.2509680138900876,0.6017074552364647,0.6299051609821618,-0.925164045765996,0.3149039284326136,-0.9808833431452513,0.19757356913760304,-0.0846196268685162,0.19947846606373787,0.6474893940612674,0.46977728651836514,-0.32381463749334216,0.38170954678207636,0.8061291836202145,0.6809479892253876,-0.41655724542215466,0.11805782560259104,0.45814015762880445,0.6030941149219871,-0.2746412209235132,-0.028112155850976706,-0.32036401284858584,0.26641650730744004,0.043989359866827726,0.16367641277611256,-0.4030552050098777,0.9935331805609167,0.2431164402514696,-0.2997776735574007,-0.995662609115243,-0.9006927297450602,0.8727113627828658,-0.7910091010853648,0.9240479907020926,0.5285910083912313,0.5490605132654309,-0.9364744294434786,0.2010369449853897,-0.21487922919914126,0.1505196881480515,-0.6932607148773968,-0.03402132773771882,-0.06762426206842065,0.5569734764285386,-0.5251426617614925,0.5065271416679025,0.6001289836131036,0.40882669435814023,-0.8104389882646501,-0.15025115991011262,0.7884140321984887,-0.9700245899148285,0.751249770168215,0.916536517906934,-0.869244275148958,-0.34975964901968837,0.36319654854014516,0.7685451288707554,0.856588882394135,0.18284516409039497,0.5325336218811572,-0.44371149875223637,-0.6992985475808382,0.5327284689992666,-0.020879601128399372,0.367725464515388,0.23755025025457144,0.19670702423900366,-0.9763881186954677,-0.19423410622403026,0.6050367723219097,0.9667192446067929,-0.9137807884253561,-0.8701082370243967,-0.46876701805740595,-0.524290079716593,0.45960234850645065,0.766379825770855,-0.6822551786899567,-0.4278803616762161,-0.01943501876667142,-0.28455723403021693,0.7042903071269393,0.5630588131025434,0.8220147830434144,0.3291721222922206,0.9494414632208645,-0.5673782345838845,-0.2296090922318399,-0.29208484990522265,0.03330616373568773,0.5181048610247672,0.7595417606644332,0.47770186560228467,-0.9364637257531285,-0.16023640846833587,-0.9427638314664364,-0.9182605464011431,0.6269386769272387,-0.037267192266881466,-0.7407260425388813,0.5491448771208525,0.45793948881328106,-0.8927255570888519,0.9488514605909586,0.6224070978350937,-0.581080517731607,0.6141330930404365,0.8170238425955176,-0.218552949372679,-0.990919484756887,-0.5328017715364695,0.48454933799803257,-0.8383562648668885,0.21459917211905122,0.8559823101386428,-0.6929165404289961,-0.6095744408667088,-0.11790448799729347,0.3926072707399726,0.37070881482213736,0.2041925168596208,-0.7515114713460207,-0.18437954550608993,-0.8778715161606669,0.5072372280992568,0.4488867209292948,-0.5527675519697368,0.027200148906558752,-0.7231043740175664,0.8599624000489712,0.2708898726850748,-0.3957459689117968,-0.821202979888767,-0.6753209452144802,0.6737923072651029,0.8489328734576702,0.3668899876065552,-0.812921226490289,0.11486648488789797,-0.4065621066838503,0.8128938525915146,0.8478231811895967,0.630713869817555,-0.5531239025294781,0.30804661102592945,-0.39041606429964304,-0.14049348514527082,0.6002859282307327,0.4224274572916329,0.7954405341297388,-0.5634958087466657,0.7639987119473517,-0.9599214331246912,-0.6047441055998206,0.34061649441719055,-0.42875697929412127,-0.8977978588081896,-0.12724747275933623,-0.026976259890943766,-0.06363106425851583,0.7434520395472646,-0.9858363098464906,0.18155234958976507,0.896113317925483,0.6463424786925316,-0.9611679366789758,-0.5251419292762876,-0.694020226597786,-0.7060806644149125,0.07623046031221747,-0.2862455933354795,0.8847035872749984,0.45699665788561106,-0.6072619305923581,-0.6818717252463102,-0.9765885397791862,-0.7920046951621771,-0.4615588877350092,-0.08234597044065595,-0.7769816229119897,0.6271588448435068,-0.15956069435924292,0.8999827490188181,-0.398831345140934,0.20019162818789482,0.5327049372717738,0.6851498857140541,0.7392466077581048,-0.01595955202355981,-0.822244321461767,0.9061630787327886,-0.16072639636695385,0.3068795227445662,0.3868948328308761,0.24388657789677382,0.1778428591787815,0.44332643365487456,-0.9076330945827067,-0.5269786897115409,-0.5953830108046532,0.8592903963290155,0.7034434326924384,-0.26543509494513273,0.8000613478943706,-0.2431541751138866,-0.5008607092313468,-0.5446033785119653,-0.9822303014807403,0.9289994961582124,-0.30661717522889376,-0.04710056120529771,0.46677966648712754,-0.718145455699414,-0.30478087859228253,0.7036896194331348,0.463779563549906,-0.4835121729411185,-0.22990587260574102,0.9126814035698771,-0.7029842087067664,-0.606940258294344,0.4753991444595158,0.14280722942203283,0.43606557603925467,0.2769734221510589,-0.22294791555032134,-0.09656399162486196,-0.04153648344799876,0.9003393123857677,0.4656764306128025,-0.351560543756932,-0.14364162599667907,-0.760735500138253,0.7284708442166448,0.14655082765966654,-0.2973210606724024,-0.8546615336090326,-0.9712023469619453,0.7239175792783499,-0.15466123912483454,-0.37666671350598335,0.6521826684474945,-0.9521458535455167,0.6767951683141291,-0.8554045069031417,0.4159912196919322,0.5002185292541981,-0.9248068979941308,-0.053247525822371244,-0.32131324615329504,-0.03518188884481788,0.3032474513165653,-0.22471193270757794,-0.7536080963909626,-0.6493817078880966,-0.15291814738884568,0.8236762168817222,-0.13673024019226432,-0.4293829733505845,0.9244072618894279,-0.0946658537723124,-0.2557010534219444,0.6822120482102036,-0.8125666114501655,0.47510020481422544,-0.6213500243611634,-0.8521782536990941,0.019952200818806887,-0.6599729647859931,0.366055098362267,0.1947621600702405,0.5000573806464672,-0.036205647978931665,0.3860703562386334,0.344707521609962,0.016227141488343477,0.9408702701330185,-0.6304601868614554,-0.28784725069999695,-0.6542454208247364,-0.03278745152056217,-0.9533449746668339,-0.7284455457702279,0.8266365430317819,-0.6540100043639541,0.3384966333396733,0.15732348803430796,0.8321913639083505,0.9324072794988751,0.26524404948577285,0.20596442092210054,-0.3510244474746287,-0.8668472617864609,-0.9261638978496194,0.5731763853691518,-0.4638436990790069,-0.783794870134443,0.45509362732991576,0.0677036577835679,0.36698973551392555,-0.05829077027738094,0.698592257220298,-0.24499939195811749,-0.8756859176792204,0.9259015284478664,0.1716947085224092,-0.24747767392545938,0.6137981591746211,-0.5266845501028001,-0.22799312975257635,-0.1740887458436191,-0.037446357775479555,-0.19652556674554944,-0.7616273066960275,0.3270851420238614,0.5418956321664155,-0.17314203456044197,0.9568718723021448,-0.3001664807088673,0.5886530582793057,0.3731214120052755,0.13850513193756342,0.6715426067821681,-0.5324289961718023,-0.024326727259904146,0.6290392852388322,0.6089658592827618,0.11633126484230161,-0.8623693329282105,0.23734089080244303,-0.8252510381862521,-0.4589960710145533,0.4947177362628281,0.5766217112541199,-0.6627882006578147,0.49795302702113986,0.494757323525846,0.40332147758454084,0.4765273267403245,0.18485643109306693,-0.9681595242582262,-0.5248340801335871,-0.001577703282237053,0.29115443630144,-0.22618234204128385,0.652566441334784,0.5324129080399871,-0.6966387289576232,0.2625598283484578,-0.1971261166036129,-0.7358633223921061,0.20566984126344323,-0.2159821013920009,0.884558011777699,-0.7194296200759709,-0.6985218543559313,-0.6380571653135121,0.7695398898795247,-0.7630648915655911,0.35522407479584217,-0.732086275704205,-0.3726966744288802,0.21049854764714837,0.34323603520169854,0.780621828045696,0.01883688336238265,0.00608852319419384,0.6395323826000094,0.8004557304084301,0.7143065426498652,0.21125692501664162,0.4093363145366311,0.7961024418473244,-0.6699303719215095,-0.7460590926930308,0.390141193754971,0.07351584965363145,-0.998631828930229,-0.9313069796189666,0.8968418836593628,-0.5716684497892857,0.32249576644971967,-0.37359177228063345,0.5028429040685296,-0.17598505038768053,-0.7232283800840378,0.0964758163318038,0.5494913151487708,0.8315547672100365,-0.3573579387739301,0.47061485098674893,-0.8446489959023893,0.9460212360136211,-0.6531046088784933,-0.5703934668563306,-0.9744083220139146,0.20925242640078068,0.552928642835468,-0.9202598882839084,0.18659012392163277,0.8848709864541888,0.9064471512101591,-0.6593196461908519,0.9016240374185145,0.8018481452018023,0.5057678357698023,-2.7449335902929306e-05,-0.39982105093076825,-0.24967440450564027,-0.400013355538249,0.41940142726525664,-0.11614845506846905,-0.3804216915741563,0.6500336779281497,-0.4668028620071709,0.6069181119091809,-0.5526123400777578,-0.31580732855945826,-0.9882640540599823,0.027335182763636112,0.2223572637885809,0.29356375662609935,-0.10026359977200627,-0.09221162088215351,0.9252191544510424,0.6158226192928851,-0.7691041952930391,0.6704169185832143,0.14027493353933096,0.506596362683922,-0.6384384115226567,-0.5384828061796725,0.9593464294448495,0.003161765169352293,0.260710378177464,-0.979622891638428,-0.2507131276652217,0.7623714380897582,0.6512779016047716,-0.942065532784909,0.22554487269371748,-0.5625025033950806,0.888253781478852,0.32951552839949727,0.904024844057858,-0.0550906709395349,0.34661938110366464,0.5229748855344951,-0.8580305292271078,-0.7055216701701283,-0.5365392011590302,-0.23367787338793278,-0.5273245987482369,-0.22853279346600175,0.2988112298771739,0.06581403408199549,-0.5418738457374275,-0.7090195221826434,0.501711851451546,-0.4490948598831892,-0.930074785836041,-0.8945994088426232,0.4139775428920984,-0.10036804573610425,0.9158151471056044,0.6395347397774458,0.9750241599977016,-0.6374550689943135,0.441522560082376,-0.15866834623739123,-0.8252937602810562,-0.07464554300531745,-0.809884533751756,0.9732312923297286,-0.31180278258398175,-0.6512766955420375,-0.9107631207443774,0.47406280878931284,0.6292702779173851,0.5649912757799029,-0.9355248459614813,-0.66848333645612,-0.012043106369674206,0.9062838861718774,0.23609776236116886,0.3212961368262768,-0.7024943707510829,-0.37476442102342844,0.0017508510500192642,-0.98428915720433,0.7642583376727998,-0.9301349478773773,0.27271841326728463,-0.6237029484473169,-0.031642631627619267,0.15268002450466156,0.9957050834782422,0.451844924595207,-0.3434553127735853,0.20769369136542082,-0.6011976785957813,0.4662857772782445,-0.06832941016182303,-0.23370570410043,-0.1868591234087944,0.632884718477726,0.6900209840387106,-0.994911705609411,0.7735457168892026,-0.12093961099162698,0.47606681380420923,-0.7848036698997021,-0.8603744516149163,0.9126223879866302,0.1128031206317246,0.09508091397583485,0.5897131003439426,-0.37120641442015767,0.7610152857378125,-0.17409588117152452,0.040565635077655315,-0.07905838126316667,0.07646808493882418,0.9252702691592276,-0.20741715980693698,-0.7066504461690784,0.799544361885637,-0.06542862439528108,-0.3322463217191398,0.4828075342811644,-0.03990713832899928,-0.6001158342696726,0.7072421894408762,0.985612322576344,-0.3284492124803364,0.39017472183331847,0.4190420373342931,0.21789346123114228,0.6971655795350671,-0.8946393392980099,-0.1918626851402223,-0.4392252052202821,-0.69239392131567,0.9774555792100728,0.3618652857840061,-0.5874599334783852,0.4371684528887272,0.6217774385586381,0.36853052536025643,0.9044639049097896,0.09817559365183115,0.8177563627250493,-0.2004316719248891,-0.3710161345079541,-0.9279224965721369,0.3910889392718673,-0.2744434564374387,-0.6749944761395454,0.30120059195905924,0.4440587549470365,-0.7447917177341878,0.6752968053333461,0.8694590930826962,0.6613876121118665,-0.8464483739808202,-0.5426307586021721,0.14264412596821785,-0.14355180179700255,-0.7171128490008414,-0.022220682352781296,-0.8726177713833749,-0.6924026752822101,-0.716597197111696,-0.23519825097173452,0.6218056185171008,-0.1946673896163702,0.11553951865062118,0.30027887877076864,-0.27111688861623406,-0.8463932126760483,0.19176794029772282,0.5739649352617562,0.17073563439771533,0.28351488430052996,-0.6258331784047186,0.7466783104464412,-0.41630447981879115,0.9904356873594224,0.8710766108706594,-0.9443372311070561,-0.7843666453845799,-0.6987185599282384,0.8494057999923825,0.8471535486169159,-0.5696889152750373,0.47087122686207294,0.1356294360011816,0.4812523131258786,0.5310971396975219,0.7610329021699727,-0.8303882605396211,-0.7818911541253328,0.11510489787906408,0.4229060313664377,0.2739867623895407,-0.25307875219732523,-0.6992193288169801,-0.09117596084252,-0.7733951173722744,0.5639603240415454,0.6114948713220656,-0.37238554237410426,0.19624521490186453,-0.09307989245280623,0.2557961610145867,0.7419613697566092,-0.6969032562337816,-0.0800069235265255,0.7681094277650118,0.4402980376034975,-0.15587523253634572,-0.7766649252735078,0.5326760308817029,-0.3606959152966738,-0.6594147109426558,-0.4790129093453288,0.16638066433370113,0.35867237858474255,-0.9903791416436434,-0.7500322102569044,0.8458239384926856,-0.12519515492022038,-0.6441085687838495,0.6697557740844786,0.27937533985823393,-0.6964351963251829,-0.2562929312698543,-0.3882136167958379,0.7360408948734403,-0.51131228543818,-0.8853142899461091,-0.7636420987546444,0.09177661873400211,-0.3218943695537746,0.7798907281830907,-0.9534790334291756,-0.7575530889444053,0.42995062842965126,-0.9474875451996922,-0.8063539224676788,0.33998814318329096,-0.7397691486403346,-0.516897710505873,-0.5899076135829091,-0.30887533351778984,0.05851451028138399,0.6371110207401216,0.7726922743022442,-0.013037338387221098,-0.6447460544295609,-0.9997240984812379,0.7543619531206787,0.18882122356444597,-0.4493357869796455,0.7513069231063128,0.851528987288475,0.31244723312556744,-0.03035981673747301,0.9261322966776788,0.11650400049984455,0.8494753525592387,0.3429573765024543,-0.7356096361763775,-0.9092568154446781,-0.23737192759290338,0.41376320412382483,0.8573361318558455,0.6829374106600881,0.4171215267851949,-0.34228245075792074,0.43771157693117857,-0.46978178434073925,-0.17243513278663158,0.27826879313215613,-0.3330930550582707,-0.5337386815808713,0.8545985729433596,0.8128464338369668,-0.8672726885415614,-0.6539507685229182,-0.5166021715849638,0.7030376438051462,0.6097280057147145,0.6175454217009246,0.7071952866390347,0.7117501054890454,-0.3692368883639574,-0.1486561275087297,0.21273631136864424,-0.4817254892550409,0.7703681313432753,-0.1548440777696669,0.5243101599626243,0.04862884199246764,-0.8264123350381851,-0.23122327821329236,0.24686491070315242,-0.5327026741579175,0.21624743333086371,0.4816837818361819,-0.6108712842687964,0.5481944042257965,-0.5584667795337737,-0.5849345652386546,-0.9908159002661705,-0.6013538143597543,0.12463773880153894,-0.6977280974388123,0.462213687133044,-0.5750354155898094,-0.10743768699467182,0.33522851625457406,-0.7924914937466383,0.1961885360069573,0.025082094594836235,-0.41833241237327456,0.7042760220356286,0.39038251899182796,-0.9859946416690946,0.8990545310080051,0.19126564683392644,-0.8758658212609589,0.7197613357566297,-0.8831846280954778,0.44142186688259244,-0.9410057356581092,-0.44498858600854874,0.7490359852090478,-0.9173972420394421,0.6723112943582237,-0.8363759494386613,-0.799554084893316,0.5715858708135784,-0.9295108988881111,-0.6203097021207213,-0.8099886081181467,0.029893409460783005,-0.5471698134206235,-0.9102128087542951,0.3081380454823375,-0.51213094079867,0.6974272974766791,0.9702953645028174,-0.47842010390013456,0.502214384265244,-0.8120194473303854,-0.149914076551795,-0.7702596639283001,0.799863435793668,-0.8444975269958377,-0.02924372162669897,-0.6989300595596433,-0.8271434241905808,-0.15761261200532317,0.8986024484038353,-0.9985420326702297,0.546211046166718,-0.8134827245958149,-0.3515595211647451,-0.6605660989880562,0.608715106267482,0.14895333908498287,-0.9700640956871212,0.9950798144564033,0.23571023484691978,-0.17639726493507624,0.8965638787485659,0.7112423246726394,0.10328107187524438,0.09664320014417171,0.16444485122337937,0.5177645753137767,-0.13820470357313752,-0.17060420382767916,-0.230503732804209,-0.2528663785196841,0.9802527097053826,0.5128938290290534,-0.4468042510561645,0.43190545542165637,0.6381205776706338,0.5901684863492846,-0.40257210843265057,-0.7455532159656286,0.7821783013641834,0.48454334679991007,-0.5582153238356113,0.32757972925901413,0.2733706417493522,0.3902399493381381,0.763983778655529,0.3351220851764083,-0.24245075974613428,0.3715198924764991,-0.9810740286484361,-0.2078850381076336,0.5134660881012678,-0.6786719057708979,0.14916977239772677,0.26787641691043973,-0.9318543164990842,-0.2522107898257673,0.4047056478448212,0.35949800768867135,-0.04129718150943518,-0.00804059999063611,-0.26292208209633827,-0.25975059205666184,0.26185086090117693,-0.264996828045696,-0.942343836184591,-0.3267394653521478,-0.7004392296075821,-0.46063528349623084,-0.8889681333675981,0.933065879624337,-0.3346679350361228,-0.45396873401477933,0.07307395851239562,-0.08053503884002566,-0.4323854008689523,-0.5712895072065294,-0.8727063732221723,-0.1180316973477602,-0.5883162524551153,0.05360476952046156,0.0031483578495681286,0.9541063839569688,0.30455167312175035,0.4592140126042068,-0.23319437354803085,0.7947012609802186,0.21658242773264647,-0.4986842633225024,-0.524851156398654,0.5876813917420805,-0.5811444190330803,0.1369398576207459,-0.8353114575147629,0.8320887028239667,-0.13932301197201014,-0.521030425094068,0.35207705572247505,-0.47454373026266694,-0.5849333964288235,0.5121251665987074,0.22681809403002262,0.918081346899271,0.28152104932814837,0.6873249970376492,-0.2649312447756529,0.07327189669013023,0.6605821722187102,0.933724217582494,-0.9975566966459155,-0.050443755462765694,0.9517759126611054,-0.5751387807540596,0.16296125389635563,0.20098710106685758,-0.5971315796487033,-0.48302478110417724,0.2999582765623927,0.817276967689395,-0.6114276270382106,-0.10483317170292139,0.24625597894191742,0.5517589580267668,0.07742834324017167,0.9086189465597272,-0.4120624251663685,0.7599478731863201,0.8612329340539873,0.35564442770555615,-0.7963937153108418,0.728751237038523,0.012556618079543114,0.9012636789120734,-0.46291353134438396,-0.9290854656137526,0.9032296645455062,0.22475878428667784,0.20494023710489273,-0.711589768063277,-0.7396559361368418,0.13336189836263657,-0.4672641144134104,0.3099248092621565,0.26411942671984434,-0.568390837404877,-0.7785898991860449,0.22560545895248652,0.39121114695444703,0.33315880689769983,0.45063727302476764,-0.9988425937481225,-0.8091327487491071,-0.6419642902910709,0.9172509657219052,0.12015875056385994,0.6788873830810189,-0.4434894039295614,-0.9176370287314057,0.5781631367281079,-0.00939989136531949,0.6764517151750624,0.48683633003383875,-0.09227792220190167,-0.8868480729870498,0.06518038641661406,0.9066499983891845,0.130722651258111,-0.5426023653708398,0.4993279683403671,-0.412266343832016,0.9567086449824274,-0.282675095833838,0.33724462101235986,-0.12265628948807716,-0.7637367462739348,-0.06018505338579416,-0.8777351728640497,0.4195324652828276,-0.522647641133517,-0.517926674336195,0.897851082496345,0.733035929966718,-0.8590512843802571,0.2883038646541536,0.29909299733117223,-0.10116801643744111,-0.4492666255682707,0.9587060292251408,0.770895367488265,-0.374053321313113,-0.4495227634906769,-0.3180166785605252,0.7319561159238219,0.09594739275053144,-0.4588531283661723,0.5335838976316154,0.1646891413256526,-0.9029140071943402,-0.4903200254775584,0.9679342154413462,0.6168759576976299,-0.46486995927989483,-0.28039465518668294,0.7101810905151069,-0.22813679743558168,-0.2503101918846369,-0.8640907490625978,-0.8366512623615563,-0.2790738376788795,0.8080524941906333,-0.9025681805796921,0.06973639596253633,-0.09348552813753486,-0.9607391208410263,0.9717059563845396,0.08769502816721797,-0.614907312206924,0.9369561932981014,-0.3095431565307081,-0.18618287984281778,-0.02619789680466056,0.3382328422740102,0.6599621889181435,0.7619441235437989,0.5596175221726298,0.49629176408052444,-0.8982226382941008,0.6514577870257199,-0.23960855044424534,-0.2675669603049755,-0.563095391727984,0.4943746691569686,-0.8481800579465926,-0.01259252242743969,-0.4613623912446201,0.4182961960323155,-0.42506197607144713,0.9082453702576458,0.08044991828501225,-0.47395543893799186,0.4912456632591784,-0.751202879473567,0.7347132805734873,-0.6991214496083558,-0.00036033568903803825,-0.5396740669384599,0.10096144676208496,-0.8335976870730519,-0.5668821767903864,0.8259710990823805,-0.18789265304803848,-0.6080926046706736,0.19980777939781547,-0.4825404230505228,-0.2819670094177127,0.8149776998907328,0.5531850564293563,0.07286941492930055,-0.17749330308288336,-0.5650637578219175,-0.132242226973176,-0.6769518814980984,0.5811066888272762,0.39037882909178734,-0.9319425751455128,0.25085910921916366,0.08275261940434575,0.9381510713137686,-0.40052966261282563,-0.7432842389680445,-0.9662410505115986,-0.4306084271520376,-0.15426204120740294,-0.4778120284900069,0.1889190045185387,0.7958896812051535,0.46084878174588084,-0.004115926567465067,-0.32910630479454994,0.03683048207312822,0.049625924322754145,0.623600005172193,-0.9228817336261272,-0.38220584858208895,0.5397284510545433,0.25075925793498755,-0.3490471011027694,0.4149133418686688,-0.26409313175827265,-0.045969185419380665,0.05399268586188555,-0.5434575146064162,0.04639002541080117,-0.5488174008205533,0.7435129899531603,0.5439438968896866,0.816702916752547,-0.5909153772518039,0.8827940276823938,-0.7444754322059453,-0.17186359968036413,0.7418402126058936,-0.7838229420594871,0.26305494690313935,0.21148729417473078,-0.8082838640548289,0.36814113706350327,-0.22619279054924846,-0.1720635062083602,0.5187682276591659,0.6659784195944667,-0.876298557035625,-0.1663797413930297,-0.8150836648419499,0.602728717494756,0.7746775997802615,0.6090720039792359,0.29277326771989465,0.903302765917033,0.30898689618334174,0.5513083804398775,-0.05794911691918969,-0.03502056049183011,-0.3022584463469684,-0.6493728021159768,0.5933432499878109,-0.04056551121175289,-0.6470298557542264,-0.46861816849559546,-0.6973941288888454,-0.1038935394026339,0.9069964676164091,0.48879396729171276,0.017067006323486567,0.8964996943250299,-0.8726296508684754,-0.864587620832026,0.4452080465853214,-0.06274020951241255,-0.4512209719978273,0.2818788839504123,0.9250261322595179,-0.3317265906371176,0.48816909082233906,-0.9614070914685726,0.3103304929099977,0.17974136117845774,0.22263643657788634,0.10852986434474587,0.07289705239236355,-0.7354736672714353,-0.44236916303634644,0.13095539947971702,-0.18792766984552145,0.7064597252756357,0.30286738742142916,0.9819168969988823,-0.989706255029887,0.6595771815627813,-0.6272439113818109,0.47754482738673687,0.8210923648439348,0.07833122834563255,0.0626472532749176,0.5920594059862196,0.27740225149318576,-0.7328911758959293,-0.590433964971453,0.008013471495360136,-0.27349291974678636,-0.905151394661516,-0.7034989944659173,-0.42958361795172095,0.41817177506163716,-0.4796405481174588,-0.37145037902519107,-0.6857543224468827,-0.23917870223522186,0.4848727062344551,-0.07325035566464067,-0.9184049130417407,-0.6731858756393194,-0.40372918639332056,-0.8854566095396876,-0.3194537879899144,-0.24700478091835976,-0.3861005241051316,0.6797772864811122,-0.34145968267694116,0.24757331097498536,-0.3805040689185262,-0.7670536451041698,-0.2547280313447118,-0.832892008125782,0.9966111308895051,0.8277321676723659,-0.8502251906320453,0.5561198215000331,-0.39800476655364037,0.3921860712580383,-0.37925286311656237,-0.5356803047470748,-0.47919560549780726,-0.587825546041131,-0.13811165001243353,-0.4368351469747722,0.29386678198352456,0.847021461930126,-0.6810044809244573,0.5451016225852072,-0.22052477300167084,0.09991611866280437,-0.4907359713688493,0.20559750963002443,-0.30031140986829996,0.17066145548596978,-0.7548254509456456,-0.6674891337752342,-0.8145222249440849,0.7918748636730015,0.1439162390306592,-0.7043149969540536,-0.5747479842975736,-0.637758968397975,0.9076260607689619,0.5045730755664408,0.20829826686531305,0.54071882693097,0.8824846348725259,0.09101063618436456,-0.6972579499706626,-0.3274452146142721,0.9308169498108327,-0.414737309794873,0.44350301241502166,0.5753980129957199,-0.2711194991134107,-0.16511545237153769,0.18822526093572378,0.24617791222408414,0.8996701641008258,0.8261381182819605,-0.5030032149516046,-0.9628171557560563,0.13500832999125123,-0.964611042290926,0.47180138248950243,0.31354058627039194,-0.8140981267206371,-0.409355400595814,0.06920840358361602,-0.8906572656705976,-0.26008392218500376,-0.7705523180775344,-0.8477136329747736,-0.17990753194317222,0.38764393236488104,0.48971360037103295,0.48222541622817516,-0.5323678217828274,0.07698232773691416,-0.9356206860393286,-0.009927595965564251,-0.21208381839096546,0.5814797375351191,0.6463158135302365,0.7433419339358807,-0.8877157159149647,0.5997281228192151,-0.47088414104655385,0.5130821107886732,0.622553092893213,0.4746071514673531,0.41815432719886303,-0.902491909917444,0.3638441152870655,-0.9960838463157415,-0.44028095807880163,0.7065001409500837,-0.7438054927624762,0.058748877607285976,0.8024039953015745,0.9934958689846098,0.8311307309195399,-0.07158643705770373,-0.8410457600839436,0.8046914706937969,0.8508530403487384,-0.3686918173916638,-0.871646705083549,-0.6758932783268392,-0.3379700602963567,-0.148424387909472,0.9879216346889734,-0.06323982123285532,0.6272684205323458,0.2874229555018246,-0.9363649254664779,-0.34110489394515753,-0.8928881068713963,-0.0005778130143880844,0.9056530385278165,0.44563557067885995,0.22607243852689862,0.8483839319087565,-0.3774931877851486,-0.24725468270480633,-0.31945074489340186,0.6189321358688176,-0.015886302571743727,0.2518992694094777,-0.26688009733334184,0.9292685030959547,-0.49238125141710043,-0.5026200274005532,-0.9571584304794669,0.5910866274498403,-0.6165317259728909,0.6219070837832987,-0.7878974690102041,-0.2940207561478019,-0.3229680578224361,0.849565296433866,0.9016182837076485,0.33051900658756495,-0.7864164412021637,-0.7478409977629781,0.6478996477089822,-0.6104393689893186,0.9073999742977321,-0.8667046553455293,-0.8230404676869512,-0.14463173039257526,0.5705252373591065,0.35627549700438976,0.0810483954846859,-0.6900794310495257,-0.7466494026593864,0.6215753173455596,-0.6145437313243747,-0.23100867727771401,-0.10425027459859848,-0.506658177357167,-0.958623583894223,-0.4747922671958804,-0.9960410119965672,-0.6433252771385014,0.6837960514239967,-0.3322127149440348,0.4215193376876414,-0.4815017683431506,-0.06458229571580887,-0.44481606129556894,-0.8075972450897098,0.785230852663517,0.8632385609671474,-0.41789035173133016,0.5188968172296882,-0.8908553458750248,0.24881708342581987,0.9759962395764887,-0.08891645539551973,0.7341916388832033,0.5485698543488979,0.7683497853577137,0.10939792450517416,-0.9220394026488066,-0.09490225929766893,0.6045755720697343,-0.0051221782341599464,0.9861701810732484,-0.5267825401388109,-0.505670661572367,0.45545357605442405,0.6092581260018051,-0.8131741555407643,0.06926089245826006,-0.8743513892404735,0.7621704437769949,0.038450848776847124,-0.24273461382836103,-0.5113706081174314,0.7750228266231716,0.47653591772541404,0.5725227422080934,0.7804047144018114,-0.034855985548347235,0.9655201975256205,-0.6788851623423398,0.06008629035204649,0.5578396916389465,0.9895588541403413,-0.945840388070792,0.8774870382621884,-0.6990843298844993,0.9958739033900201,-0.646684939507395,-0.36367732007056475,-0.6649128617718816,0.7190989754162729,-0.8602787042036653,-0.8898602705448866,-0.5089174974709749,-0.37729154247790575,0.7143781729973853,-0.31377032678574324,0.14827752951532602,-0.19695937680080533,-0.6533048301935196,0.44282192597165704,-0.5964406309649348,0.37909156223759055,-0.13087116135284305,-0.10327772842720151,0.23777200933545828,-0.1453904416412115,0.062113683205097914,-0.7449424210935831,0.7102504456415772,-0.5496050375513732,0.8000346049666405,-0.8091185977682471,-0.11014743614941835,0.32362747425213456,-0.7902693441137671,0.657769684214145,0.20463212113827467,-0.7046877099201083,-0.6968625551089644,0.8463583737611771,0.4420036622323096,-0.7811202500015497,-0.5036690928973258,0.7567170881666243,0.568725700955838,-0.9085396467708051,-0.9433651389554143,-0.35027359798550606,0.3026212495751679,-0.5151854567229748,0.4416495873592794,-0.8527113134041429,-0.09329007100313902,-0.7485034200362861,-0.47631482081487775,-0.4051006198860705,-0.06533076474443078,-0.9895185497589409,0.5685927304439247,0.5036563356406987,-0.6935458057560027,0.2624059892259538,-0.05351602379232645,0.9761484703049064,0.4949159035459161,0.39017424499616027,0.6225580456666648,0.3155259503982961,0.9618591195903718,0.4190028067678213,-0.36928263073787093,0.7264246148988605,0.8437248971313238,0.07428015489131212,0.1902380478568375,0.3693808983080089,0.4310988523066044,0.061006080359220505,0.545028340537101,0.06108875386416912,0.32037570513784885,0.0014372244477272034,0.02746926574036479,0.083211166318506,-0.9264823142439127,-0.6269809808582067,0.12926990445703268,0.21832102769985795,-0.8717088061384857,-0.28969386499375105,0.49715149961411953,-0.45975441485643387,-0.6778248432092369,-0.5943439053371549,0.884099701885134,0.8973628687672317,0.45514389825984836,-0.18331410642713308,0.13618624256923795,-0.9863569219596684,0.8020592695102096,0.009242391679435968,-0.6951192277483642,0.8962202854454517,-0.9631211399100721,-0.4771850733086467,-0.9075914844870567,-0.44712756248191,-0.3673646319657564,-0.3045187103562057,-0.2710002395324409,0.26693150913342834,0.31959419790655375,0.8305559987202287,-0.30380138475447893,0.05799402063712478,-0.674595630262047,-0.6593780391849577,0.2286102450452745,-0.48409496946260333,-0.8368088756687939,0.6051731440238655,0.5976418587379158,-0.7632942590862513,0.8907734514214098,0.36896477174013853,0.2145420708693564,-0.9645075835287571,0.10307056969031692,-0.21487505780532956,-0.5828977786004543,0.870600804220885,0.5271232374943793,-0.8510235212743282,0.7831448139622808,0.14723278116434813,-0.37677577789872885,-0.30030058650299907,0.45859466725960374,0.9228789312765002,0.3113195816986263,0.822215661406517,-0.8689350932836533,-0.7598050660453737,-0.6378857716917992,0.3147587403655052,-0.023080215323716402,0.7731647454202175,0.13387442845851183,0.10400042682886124,0.9135553208179772,0.9880557074211538,-0.269496938213706,-0.38944194139912724,-0.7923546638339758,-0.04397201165556908,0.8662118189968169,0.6268714019097388,-0.12850761506706476,-0.06728616543114185,-0.6437415075488389,0.1784935211762786,0.30569184478372335,-0.22677789721637964,-0.36032990273088217,-0.9429898140951991,0.580032772384584,-0.25451025972142816,-0.9157968019135296,-0.0012175915762782097,-0.9502255036495626,-0.8403982194140553,-0.23639597231522202,-0.589531677775085,0.05328828142955899,0.871597932651639,0.28664767974987626,-0.4173541204072535,0.038581153843551874,0.938641200773418,-0.7257069190964103,0.7813712116330862,-0.11820275150239468,0.07699492294341326,0.4021768979728222,0.2587400395423174,0.9193738880567253,-0.2005567247979343,0.7653876319527626,0.5321290246210992,-0.5065324679017067,-0.2962710545398295,0.7393851806409657,-0.9173241998068988,0.4857558524236083,-0.6949516916647553,-0.5692578805610538,0.4768288051709533,0.3737059999257326,0.6802858388982713,-0.30497140251100063,-0.4402028298936784,-0.10669580101966858,-0.2846138826571405,0.9564972389489412,-0.34883097605779767,-0.48025728948414326,-0.6354090557433665,0.5178540907800198,-0.12378198746591806,-0.8852429217658937,-0.8040586300194263,0.41231912979856133,0.12328232871368527,0.5863142013549805,-0.10123305255547166,0.9871934652328491,0.4551338949240744,0.565861985553056,0.5694883791729808,-0.65324298851192,0.5476631228812039,-0.45401256810873747,-0.7923737894743681,-0.05098673282191157,0.11378065589815378,0.8391916137188673,0.25258867582306266,-0.5440235356800258,-0.8227092972956598,0.9202827299013734,0.9810424358583987,-0.04181818105280399,-0.3816972319036722,0.8914021058008075,0.2958801742643118,-0.892310799099505,0.22396124061197042,0.07367077562958002,-0.09714328125119209,-0.8270510346628726,0.37511376524344087,-0.7167971688322723,0.9258985230699182,-0.019767397083342075,-0.01295064203441143,0.47098595974966884,-0.5170284998603165,0.9851757055148482,-0.3232186287641525,0.21280069835484028,-0.22569728875532746,0.5744710564613342,-0.22038470627740026,-0.299971838016063,0.45928319497033954,0.28516039764508605,-0.3369739833287895,-0.45663385139778256,0.7668729489669204,0.09096398204565048,-0.9194697001948953,-0.9208149053156376,-0.22021452151238918,0.636993208900094,0.9893333883956075,-0.49366494826972485,-0.02582279173657298,-0.920399873983115,0.1486874776892364,0.9780352623201907,0.9628712218254805,-0.6419679559767246,-0.18247311701998115,-0.17687481315806508,0.5008037430234253,0.03122737305238843,0.9303100891411304,-0.03366108890622854,-0.7749621011316776,0.9797248467803001,-0.043721180874854326,0.8002176224254072,0.23795604752376676,0.44443661626428366,-0.1035879123955965,0.93520562723279,-0.9108662740327418,-0.818670925218612,-0.05797075666487217,0.6791507638990879,-0.024955077096819878,0.45079439878463745,-0.8731484008021653,-0.19175685802474618,-0.6995631433092058,-0.17694087605923414,-0.389514297246933,-0.839359347242862,-0.4235448194667697,-0.8112491685897112,0.7425956246443093,-0.6688852105289698,0.16131258429959416,-0.39092082576826215,-0.3650635522790253,0.7333007166162133,0.08874653046950698,0.9563587983138859,-0.9585854383185506,0.9096826235763729,-0.9156658123247325,0.31885474640876055,0.07820036122575402,0.1055089789442718,0.5642076758667827,-0.25004266994073987,0.4969907742924988,-0.09053970035165548,-0.86526152305305,-0.8236567219719291,0.5912780617363751,0.8210487011820078,-0.6752784941345453,0.6196452947333455,-0.18185248458757997,0.5620040241628885,0.11887183412909508,0.23847090220078826,-0.6294152587652206,0.11334790475666523,0.7307506748475134,0.13695019949227571,-0.6737082647159696,0.3483853815123439,0.2182399039156735,-0.9685871656984091,-0.2759274085983634,-0.8584300666116178,-0.5780488760210574,0.7121857139281929,-0.7187680387869477,0.604519831482321,0.6545270546339452,0.3666299586184323,-0.753419189248234,-0.8711380278691649,-0.0122831417247653,0.5208656028844416,0.3525430439040065,0.3144048978574574,-0.4565771259367466,-0.8254979900084436,-0.3339077956043184,-0.6184384902007878,0.8342267633415759,-0.040057200007140636,-0.11787893762812018,-0.6011322075501084,0.7091441676020622,0.9457899490371346,-0.13681491930037737,-0.8151008598506451,-0.5893802298232913,-0.05932833859696984,0.369372833520174,-0.35840117326006293,-0.14795428747311234,-0.43581929756328464,0.09657128574326634,0.3055787021294236,-0.20735986065119505,-0.8652176605537534,0.9806127180345356,-0.36107923462986946,0.09781918814405799,0.5033381143584847,0.6146761211566627,0.6787607939913869,-0.357464789878577,0.114045484457165,-0.4591239746659994,0.7770836143754423,0.41334617603570223,-0.1701182876713574,-0.7434786902740598,0.8826205795630813,0.9562153783626854,-0.8256879937835038,0.26423852890729904,-0.2082920134998858,-0.1342695001512766,-0.08723379438742995,-0.3280094568617642,0.5594952385872602,0.550703875720501,-0.8485401859506965,0.8574261832982302,-0.006026795599609613,0.4572003926150501,-0.09383593266829848,-0.668261774815619,0.5626510381698608,-0.2583220233209431,-0.5613592667505145,0.9292500363662839,0.4813417010009289,-0.8453283747658134,-0.42785754846408963,-0.1030389154329896,0.8577972492203116,0.13141881301999092,-0.1450123661197722,0.33976083574816585,0.2541781850159168,-0.12682837946340442,-0.5812719357199967,0.6700225258246064,-0.4694855804555118,0.30007703928276896,0.4746894920244813,0.23599778907373548,-0.0967935030348599,-0.701587378513068,0.37755593471229076,-0.34068358270451427,0.28516192827373743,0.33790981071069837,-0.3872945015318692,0.02431614138185978,-0.8773877187632024,-0.48961198702454567,-0.03995219198986888,-0.252418608404696,-0.4375450164079666,-0.6097832983359694,0.1565748411230743,-0.06714060483500361,0.06708104768767953,0.9102563126944005,0.9958561016246676,-0.5295913075096905,0.22537566907703876,-0.2410864382982254,0.35545774828642607,0.23488419316709042,0.26070856396108866,-0.9198020440526307,0.2484584767371416,-0.6061968882568181,0.8948150645010173,-0.46355432318523526,0.3205857207067311,0.6584743615239859,0.9246116448193789,0.6821100902743638,-0.7914424468763173,-0.7385213798843324,-0.5396623201668262,0.5174299972131848,0.39195487136021256,0.5434551369398832,-0.07947399793192744,-0.7254508477635682,-0.05380595661699772,-0.7970748753286898,-0.3518781312741339,0.13120288960635662,-0.5182919357903302,0.025077047757804394,-0.38438325794413686,-0.4471851666457951,-0.12100433418527246,-0.23751410003751516,0.5401623258367181,0.7553581818938255,0.03550401562824845,0.5899781594052911,-0.8239313792437315,-0.5408904659561813,-0.4558047279715538,-0.09451610036194324,0.22379997838288546,0.6105716708116233,0.8410731814801693,0.8660093070939183,0.32504042191430926,-0.9510113410651684,0.5913027296774089,0.6647042473778129,0.3263076301664114,-0.03581148944795132,0.22220190335065126,-0.8767769080586731,-0.902808181475848,0.6825643661431968,0.14571438170969486,-0.8993783751502633,0.7145025837235153,-0.7848348035477102,0.1393203022889793,0.65354935079813,0.5236124778166413,-0.22655083611607552,0.7236263086088002,-0.11610542144626379,-0.8103965483605862,-0.876142873428762,-0.5912463208660483,0.6425224165432155,0.3128793863579631,0.5357788722030818,-0.9192843507044017,-0.938463965896517,0.4876728840172291,0.9487420655786991,0.4575803386978805,-0.28118442138656974,-0.38442509854212403,-0.7649176442064345,0.6335528050549328,-0.3721783026121557,0.08399175945669413,-0.5041410373523831,0.3710941136814654,0.7625521183945239,-0.14738818118348718,0.3478307933546603,-0.595262470189482,0.29427858581766486,0.2655343394726515,0.1976493364199996,0.9523424729704857,-0.5696288887411356,-0.5474583227187395,-0.63408606313169,-0.14920185040682554,-0.9115619515068829,0.8600136144086719,-0.07516261748969555,0.4480693372897804,0.15179705852642655,0.9567781607620418,-0.8164046471938491,-0.8712516641244292,0.623747366014868,0.8297525444068015,-0.41448441334068775,0.5944838002324104,0.07787107536569238,0.843165289144963,-0.5155262937769294,0.9919306463561952,0.5437016971409321,0.8165243449620903,-0.7838446092791855,0.99496383452788,-0.8725184821523726,0.33081513782963157,-0.5400490197353065,-0.8530652695335448,0.5221356218680739,-0.5759999924339354,-0.7357744202017784,0.4718271675519645,0.18538608541712165,-0.19115770887583494,-0.06736181117594242,0.4765788414515555,0.6917787287384272,-0.4822447313927114,-0.2511643241159618,-0.7017127932049334,0.164890562184155,-0.740163957234472,0.5249371649697423,0.4931427761912346,0.24556146189570427,-0.7711634514853358,-0.05456912284716964,0.9268073625862598,0.9239297294989228,0.5917189912870526,-0.8548995400778949,0.41945100389420986,0.6924049747176468,0.04701516451314092,0.9828478503040969,0.16782917780801654,0.5706723285838962,0.8233045167289674,-0.7161587798036635,0.11324585322290659,-0.6293249418959022,0.7240675073117018,-0.48520026123151183,-0.9713481473736465,-0.10425843810662627,0.7289921278133988,0.40941361617296934,-0.8838853272609413,0.3618581718765199,0.6482086535543203,0.4338006880134344,0.3665380012243986,-0.3862356459721923,-0.9729191749356687,-0.7313763368874788,-0.08328598504886031,0.7420338783413172,0.8126923777163029,0.1451445510610938,0.905821752268821,-0.6823947778902948,-0.510959739331156,-0.34799525514245033,-0.9164247568696737,-0.705935011152178,-0.17600786499679089,0.7215788774192333,-0.3463182901032269,-0.6217574537731707,0.5644308179616928,-0.8613748801872134,-0.570069411303848,-0.3927691299468279,-0.2881045616231859,-0.1949412846006453,0.805046193767339,-0.6022439459338784,0.7895100372843444,-0.4486233964562416,0.35936100827530026,0.5781306782737374,0.8258565668947995,0.4592711767181754,0.8224683003500104,0.16703648772090673,-0.47426438285037875,-0.5006992854177952,0.2958489735610783,0.9603414391167462,-0.8269892316311598,-0.910686475224793,0.04240341717377305,-0.7267158241011202,0.5468013654462993,-0.8965072445571423,-0.8765860279090703,0.10073721781373024,-0.42067620158195496,-0.6165996296331286,0.5998667008243501,-0.37187718134373426,0.3474493445828557,0.7617926681414247,-0.6023058886639774,-0.004055927041918039,0.48643901431933045,0.1484432965517044,-0.5952355396002531,0.5927744982764125,-0.4081709855236113,-0.8082224703393877,-0.533025627490133,-0.15429396647959948,-0.877542925067246,-0.9297508569434285,-0.1225125933997333,0.9525346318259835,0.2061777845956385,0.8073889221996069,-0.910300531424582,-0.046457795426249504,-0.47784780338406563,0.40469637187197804,-0.45961521612480283,0.3675345894880593,0.9251754037104547,0.022025137674063444,0.828516467474401,-0.9206018382683396,-0.16104842722415924,0.836955149192363,-0.6454858854413033,-0.7708115708082914,-0.3428468541242182,0.4391126180998981,0.5092845526523888,0.1791028520092368,0.48781063221395016,-0.38413693755865097,-0.6167822540737689,0.6355098430067301,-0.8400460109114647,-0.16910948045551777,0.25393135426566005,0.2759886379353702,-0.2526353467255831,-0.05034866742789745,0.46687803277745843,0.5681158718653023,0.8242105105891824,0.7824905626475811,-0.22758199041709304,-0.4150201641023159,0.7619009679183364,-0.9217120963148773,-0.6032906882464886,-0.6397694018669426,0.04649630235508084,-0.002658650279045105,-0.7741084382869303,-0.48103704024106264,0.11926765600219369,0.7152422606013715,0.38295577047392726,-0.7173929600976408,0.4418057161383331,-0.8896324243396521,-0.9817296792753041,0.23706565890461206,-0.6421258426271379,0.35923957312479615,-0.14017217885702848,-0.9480197709053755,0.010368671733886003,-0.36601391760632396,0.8552831136621535,0.2666703015565872,-0.15098163299262524,0.19329141872003675,0.8611149503849447,-0.5094162588939071,0.8911362616345286,-0.7447180831804872,0.9095862694084644,-0.07560534309595823,0.5185470846481621,0.022639472037553787,-0.6189107219688594,0.8009649715386331,-0.34002582961693406,-0.662173236720264,-0.2985184481367469,0.7759797591716051,-0.7274844711646438,-0.3841435299254954,-0.047600334510207176,0.22949861641973257,0.9510120181366801,-0.7073981864377856,0.22057029139250517,-0.5865076463669538,0.9743780177086592,0.8105127271264791,-0.2611588593572378,0.008757865987718105,-0.6412627822719514,0.7299624839797616,0.5897189918905497,-0.9784766426309943,0.6011563851498067,0.35383651312440634,0.031990583054721355,0.4081265772692859,-0.6042943489737809,-0.29460329422727227,-0.47690813709050417,-0.1749264243990183,-0.7038815775886178,-0.5017208810895681,0.9725672518834472,0.11484172334894538,-0.47373016783967614,-0.4537127367220819,0.5060306489467621,0.5280104079283774,0.5291049196384847,-0.14893224649131298,0.06603518780320883,0.1542647061869502,0.04533115215599537,0.23950690170750022,-0.9430676773190498,-0.8036665627732873,0.3524009916000068,0.5382187580689788,-0.7753764567896724,0.21571249328553677,-0.5806482969783247,-0.973858320619911,0.06787945702672005,-0.2845033654011786,-0.762719638645649,-0.8070129943080246,0.9094596421346068,-0.3763668010942638,-0.7605415391735733,0.5713189602829516,-0.8844045251607895,0.6785761849023402,-0.13793665869161487,0.532455968670547,-0.20718443114310503,-0.8288857317529619,0.10338108846917748,0.6696752081625164,-0.7806520713493228,-0.7860301146283746,0.034363355953246355,0.6485454207286239,-0.9389085490256548,0.5561618874780834,-0.2892156597226858,0.33353316411376,-0.2098337048664689,0.17737953504547477,0.17065954999998212,-0.6852256855927408,0.26145216869190335,0.7543420982547104,-0.5732199000194669,0.0890116193331778,0.14647122658789158,-0.13848963472992182,0.19690607814118266,-0.8714856142178178,0.33592236088588834,0.004317102022469044,-0.26157764066010714,-0.37665791157633066,0.6845166962593794,0.9634782201610506,-0.21794477384537458,0.7804696392267942,0.5377135900780559,-0.6447409531101584,0.36202252842485905,-0.6041126283816993,-0.24519467912614346,0.8860808624885976,0.027810894418507814,-0.8659539455547929,0.7110480614937842,-0.0989183452911675,-0.20690707629546523,-0.7249778839759529,0.5339976237155497,-0.09264797624200583,-0.5231120768003166,-0.2137964847497642,-0.7150792325846851,-0.37584945606067777,-0.8790375078096986,0.39859875943511724,-0.5051790452562273,-0.08759260410442948,-0.28529547713696957,-0.20178090268746018,-0.6024439819157124,0.9096867591142654,-0.6161342808045447,-0.12156845768913627,0.7977572921663523,-0.7553426246158779,-0.3103810506872833,0.7248978172428906,0.6689284294843674,-0.9759996845386922,0.13396876445040107,-0.9942281558178365,-0.2052334719337523,0.6828435827046633,-0.15539818536490202,0.6806682641617954,-0.9979064017534256,-0.3575926790945232,-0.3900608695112169,-0.5435496116988361,0.7470359923318028,-0.04562083212658763,-0.5340226073749363,0.49414524203166366,0.02430480159819126,-0.025334214325994253,-0.8961125104688108,-0.14725284837186337,-0.4831801503896713,0.054152723867446184,0.47673701820895076,-0.5630778181366622,-0.8658783617429435,-0.9239145675674081,0.6123427925631404,-0.8151495824567974,-0.007678214926272631,-0.5278567322529852,-0.5920658335089684,-0.9117265455424786,0.6990481694228947,-0.06514275865629315,0.8724019289948046,0.47484631836414337,-0.752252237405628,0.19045608676970005,-0.948362865485251,-0.8817403055727482,0.18022688571363688,0.015857288613915443,0.47953142365440726,-0.28098116535693407,-0.8243924179114401,-0.673215005081147,-0.24970024591311812,-0.8398891990073025,-0.3339594849385321,0.8417686000466347,-0.9508387790992856,-0.2138444664888084,-0.6452850182540715,0.7883205353282392,-0.1337997163645923,-0.681551250629127,-0.6562327207066119,-0.9559526685625315,-0.7102771610952914,-0.7254668991081417,-0.11135539133101702,-0.2810081271454692,0.3234935915097594,-0.22994107473641634,-0.661313961725682,-0.19171589985489845,0.9974638004787266,0.2466596607118845,-0.4610652709379792,0.11203133733943105,0.8236703090369701,0.4950650283135474,-0.9101626109331846,0.8309705960564315,0.2994326679036021,0.05406139371916652,-0.8131098104640841,0.6984780225902796,-0.9351433073170483,0.04839079175144434,0.1500682719051838,0.19011062383651733,0.7163017210550606,0.9409349602647126,-0.9179390422068536,0.8007526956498623,-0.5898240678943694,0.5004995851777494,-0.2772610834799707,0.29456301778554916,0.3764843409880996,-0.5607580826617777,0.7081007161177695,-0.39393087523058057,0.021821412723511457,-0.6853589755482972,-0.2627248023636639,0.2815572489053011,0.17132372176274657,-0.36347331339493394,-0.679016349837184,-0.24023356614634395,-0.8443401847034693,0.8040015613660216,0.4773594834841788,0.7573349727317691,-0.4017089754343033,0.8657586644403636,-0.9629773702472448,0.2357769962400198,-0.4330482557415962,0.3016675771214068,-0.1195696359500289,-0.5597812454216182,-0.7796442257240415,0.6506002973765135,0.7083731913007796,-0.9915636032819748,0.15109956031665206,-0.09329787455499172,0.650585834402591,-0.1250414364039898,-0.33339354069903493,0.42125636152923107,0.8170073321089149,-0.3109611729159951,-0.06356251006945968,-0.23567743925377727,-0.5953620704822242,0.2562630479224026,0.9852251498959959,0.5021383473649621,0.3552511828020215,0.7277230047620833,0.8073465721681714,-0.11412256630137563,-0.6196362380869687,-0.03165405476465821,0.4153893757611513,0.3530503041110933,-0.6386190932244062,-0.8008667323738337,-0.16899258457124233,-0.9559645326808095,-0.4731615949422121,-0.24013044219464064,-0.01437386590987444,-0.23906137561425567,0.4213899280875921,-0.8712435867637396,-0.30402957601472735,-0.8049499224871397,0.2818669374100864,-0.9577652527950704,-0.7623517299070954,-0.3999055656604469,0.7164678415283561,0.40227718092501163,-0.3509072717279196,-0.5167097095400095,0.3215636983513832,0.9652777523733675,-0.27266857819631696,0.35130157275125384,0.03586783166974783,-0.14284743275493383,0.3931481479667127,0.14454414788633585,0.7939253216609359,0.9007760821841657,-0.011044787243008614,0.40696823224425316,0.09501866763457656,-0.45789519557729363,0.5399175425991416,-0.9839133648201823,-0.08800287125632167,0.7094165459275246,-0.925915758125484,-0.9220685437321663,0.8807776388712227,0.1244758190587163,-0.3331125141121447,-0.4585009110160172,-0.5514157940633595,0.7522726231254637,0.6334876785986125,0.7751109376549721,0.08500916138291359,0.9421105505898595,0.8202757276594639,0.7035171138122678,0.20232623955234885,-0.5512867551296949,0.41329562244936824,0.8517596963793039,-0.8658242067322135,0.8166703386232257,0.13398014334961772,0.22549196798354387,0.8752630082890391,-0.12492873333394527,0.9371854146011174,0.5362288109026849,0.41278224624693394,0.10187368979677558,-0.9547699629329145,-0.6484686196781695,0.904845911078155,0.9473535744473338,0.6751049254089594,0.41700327955186367,0.5668047778308392,0.5120512824505568,-0.12226917361840606,-0.12320592161267996,-0.055412969551980495,0.14103216817602515,0.8820634498260915,-0.5569023550488055,0.7502574576064944,0.5358293852768838,-0.8755749040283263,-0.49656145228073,0.13240853371098638,0.08534764358773828,-0.04437863267958164,-0.3446866567246616,0.9059293195605278,-0.4107489753514528,-0.26297693233937025,-0.7144669597037137,-0.6840242454782128,-0.47156822215765715,-0.24490408971905708,0.6131709641776979,0.5024597765877843,0.6972830584272742,0.446941161993891,0.43641941295936704,0.12961419438943267,-0.4944548415951431,-0.3143797414377332,-0.394436979200691,0.7036394393071532,-0.7961368430405855,0.19999701902270317,-0.3986069783568382,-0.9303672383539379,-0.5663312012329698,0.18510025972500443,0.43310961965471506,-0.12280280515551567,0.3377077332697809,0.0790207707323134,-0.7061966522596776,0.06115372572094202,-0.9722848390229046,0.058457852341234684,0.6417381428182125,0.8502812986262143,0.6415555668063462,-0.654806247446686,-0.04116807738319039,0.8037098399363458,0.2540911100804806,-0.995231821667403,0.7596494499593973,0.9647775394842029,0.8200999516993761,0.5420463695190847,0.5608485317789018,-0.5090502453967929,0.49413095926865935,0.8922786768525839,0.30029417760670185,0.8359781233593822,-0.33230764465406537,-0.8606088771484792,0.3007348105311394,0.07547523034736514,-0.7569031780585647,-0.516593371052295,0.9870508946478367,0.2696445588953793,-0.7730077030137181,0.6932699889875948,-0.407684535253793,-0.9539484675042331,-0.7595467888750136,-0.23426362965255976,0.7592642512172461,0.14893306978046894,-0.37416992941871285,0.5819195415824652,0.37276149867102504,-0.7947797104716301,-0.8099221345037222,-0.23287616576999426,-0.9530895752832294,0.031033712904900312,0.5310178562067449,-0.8889763643965125,0.9888877929188311,0.7906600562855601,-0.4378526727668941,0.21560893906280398,-0.3123038727790117,-0.03950083069503307,0.8198639531619847,-0.2006497154943645,0.5345467408187687,0.5937469084747136,0.0672011454589665,0.09084064560011029,0.6349574206396937,-0.5954972198233008,0.8700509001500905,0.8841099091805518,-0.7273249216377735,0.4897222798317671,-0.7944694147445261,-0.3133282922208309,0.6603107834234834,-0.3066375092603266,-0.10844845743849874,0.5683715981431305,0.5793130272068083,0.4483895949088037,0.24421849707141519,0.4940077532082796,0.5035186889581382,-0.6243168977089226,0.6682558818720281,-0.774089006241411,-0.7978643570095301,-0.6152223185636103,0.08848113426938653,-0.5864465674385428,-0.3855492193251848,-0.2306612143293023,0.9485212010331452,0.05905712768435478,-0.12160475831478834,-0.36253626877442,-0.23937271907925606,-0.6780068753287196,-0.6480599553324282,-0.7420349884778261,0.7448509428650141,0.3420185539871454,0.7037102412432432,0.5304395710118115,0.005764791741967201,0.8157346239313483,0.743569920770824,0.9929087273776531,-0.757687914185226,-0.6889476510696113,0.7319759838283062,0.6103067398071289,0.6480511426925659,0.8712211661040783,0.13444695435464382,-0.7543480335734785,0.2698198347352445,0.40413882536813617,-0.11768347909674048,0.16741610458120704,-0.24275674298405647,0.4102395405061543,-0.9924056283198297,-0.017187808640301228,-0.9559957948513329,0.7045164797455072,-0.8192563797347248,-0.9265523902140558,-0.06562442844733596,-0.8677093898877501,0.8258908023126423,-0.8129290649667382,0.6818345650099218,-0.0017654430121183395,0.17615241929888725,0.7145090326666832,0.40623630117625,0.7102226661518216,0.45120543148368597,0.4066511020064354,0.40201876033097506,-0.14177684159949422,0.0018828804604709148,-0.7357436302118003,0.6874204156920314,0.9237151839770377,-0.19282869156450033,0.2844614740461111,0.7178675858303905,-0.05943933269008994,-0.8902894509956241,0.8446801509708166,-0.42665603291243315,-0.14597065979614854,-0.610067508649081,0.3458864404819906,0.8515020343475044,-0.24049473088234663,-0.7207808992825449,-0.32768266508355737,-0.06731290509924293,0.22400884749367833,0.6444715894758701,-0.6099494872614741,0.5865596337243915,-0.2312215999700129,-0.16662331204861403,0.5441427789628506,0.054392131976783276,0.22761439019814134,0.9704128466546535,0.2691936925984919,0.33829677756875753,0.15170018002390862,-0.3452225034125149,0.22136347647756338,-0.4661950161680579,0.06266371347010136,-0.7998717976734042,-0.981025003362447,0.10101051861420274,0.2321279663592577,-0.3140909387730062,-0.8755846810527146,-0.851359830237925,0.725189866963774,-0.1994873182848096,0.16128212213516235,0.8967444496229291,-0.2623747317120433,-0.7726227487437427,-0.7980316835455596,0.08859818801283836,-0.7396158962510526,-0.08972791954874992,-0.04011678462848067,-0.22848344407975674,0.2962640915066004,0.8895725631155074,-0.755889150314033,-0.5929546090774238,0.9845835235901177,-0.39733770629391074,-0.4926154720596969,0.7198180626146495,-0.639190019108355,-0.4836686044000089,-0.5605837409384549,-0.41389269940555096,-0.05827440181747079,0.5866794274188578,-0.6965492330491543,0.2869293186813593,0.041201227344572544,0.19322825828567147,-0.11585994949564338,0.047500330954790115,0.7699149549007416,-0.8480878965929151,0.6862792088650167,-0.5887593170627952,-0.7595731965266168,0.8537130104377866,0.5536341117694974,0.6784911472350359,-0.052802929654717445,-0.5033473209477961,-0.6341736153699458,-0.26406289357692003,0.9981897049583495,-0.920321149751544,-0.10477800341323018,-0.04182384302839637,-0.03802049811929464,0.7574762152507901,-0.6058679125271738,0.7599400319159031,0.5959624783135951,-0.4016246213577688,-0.42739975033327937,-0.5822246694006026,-0.5691560166887939,0.7539462624117732,0.8702103355899453,-0.37815000489354134,-0.8989998330362141,0.610490211751312,0.12512731598690152,-0.2763571119867265,-0.1666920194402337,-0.6846255487762392,-0.20327231055125594,-0.8183889002539217,0.9966524369083345,0.7873069168999791,0.18428912619128823,0.8314705896191299,0.14322278881445527,-0.1582340393215418,0.2178136482834816,-0.9739855579100549,-0.24926248332485557,0.515906753949821,0.9155974583700299,-0.3955901167355478,0.8107879860326648,0.059949906542897224,0.5242714304476976,-0.010208417661488056,-0.6706744330003858,0.3991405414417386,0.7831847020424902,-0.6621261923573911,0.08618219755589962,-0.997520302888006,-0.821771721355617,-0.129061930347234,0.7193417632952332,-0.4768655439838767,0.6627753591164947,0.7527442770078778,0.6239523845724761,0.9438907681033015,-0.7274274863302708,-0.760511392261833,-0.2838343041948974,-0.545418078545481,-0.7055901666171849,-0.7568354280665517,0.897916201967746,0.5004597324877977,0.0550961229018867,0.8325326004996896,0.4966032365337014,-0.909969987347722,-0.8739113407209516,-0.16494656493887305,0.18065694347023964,0.21941023087128997,0.1848335680551827,0.02205971907824278,-0.9329677023924887,-0.25852147582918406,0.05615263618528843,0.726308808196336,0.8859604792669415,0.7006746334955096,-0.98908901354298,-0.9323776378296316,0.36220483761280775,-0.04368940042331815,-0.47181663010269403,0.7567583257332444,-0.7057919013313949,-0.8847067719325423,0.5892088855616748,-0.889547630213201,-0.256495070643723,0.3161449246108532,0.290914474055171,0.16763932490721345,-0.3455907804891467,0.11824116809293628,-0.4009787840768695,-0.1270790179260075,0.2672402556054294,-0.2839180799201131,0.6840123096480966,0.45302082039415836,-0.16005385015159845,0.9854324380867183,0.8681666888296604,-0.931194581091404,-0.25722367549315095,-0.8639400061219931,-0.5873953234404325,-0.5913620856590569,-0.05912860296666622,-0.7884824010543525,0.1813356364145875,0.8882029578089714,0.900593304540962,0.23498355550691485,0.04046152997761965,-0.03897045785561204,-0.5971164139918983,-0.8117964076809585,0.9401328517124057,-0.5019326987676322,-0.4741989211179316,-0.17118751956149936,0.3932374604046345,0.8651192490942776,0.38172688661143184,0.4066341803409159,0.09612886421382427,-0.5894240797497332,-0.10199010465294123,0.6689938236959279,0.46236448967829347,0.9612029734998941,-0.06121033290401101,0.6461414420045912,0.22806461481377482,0.761297435965389,-0.1857142481021583,-0.6335550681687891,-0.8264971603639424,0.0696300296112895,0.29031815752387047,0.21066321525722742,0.6818978912197053,0.7357681901194155,-0.10849601961672306,-0.826151367276907,-0.439428779296577,0.8875102307647467,0.23622311605140567,-0.1578958728350699,0.8931022393517196,0.7375920326448977,0.8197389934211969,-0.8993515460751951,-0.08663009805604815,0.35045922826975584,-0.0771118188276887,-0.17542008589953184,-0.47337524965405464,0.00016890186816453934,-0.39869853807613254,0.9084851713851094,0.8112046946771443,-0.48505674907937646,0.23506428254768252,-0.748356269672513,0.5296385041438043,-0.9367697220295668,-0.6487499214708805,-0.1561288982629776,0.8856733702123165,0.7803589096292853,-0.9202346839010715,0.37767883064225316,0.7768636341206729,-0.9162124982103705,0.18926446186378598,-0.42752370052039623,-0.7868725047446787,0.4302490777336061,0.7905180668458343,0.30655175168067217,0.7163805915042758,0.5210377206094563,0.852545689791441,-0.3046052362769842,0.8104821960441768,-0.7287708134390414,-0.08874834282323718,0.8346763155423105,0.016601935029029846,-0.30794273084029555,0.5153824896551669,0.34779540775343776,0.7282667797990143,0.9027695250697434,0.14228229457512498,0.6105262744240463,0.1880329353734851,0.46042365208268166,-0.6454445067793131,0.06240312708541751,-0.4219141574576497,0.09589634323492646,-0.8270077803172171,0.7336452668532729,-0.839991107583046,-0.11798001080751419,0.9108405346050858,0.7748450445942581,0.26787003921344876,0.9173098234459758,0.1328766392543912,0.35904819425195456,-0.4673819704912603,-0.0233312314376235,-0.46533672977238894,0.36000279569998384,0.018104156479239464,-0.5604202416725457,-0.948670004028827,0.37688092375174165,-0.9929067781195045,0.628795525059104,-0.03549291519448161,-0.659710839856416,0.07215680321678519,-0.6944611323997378,0.249883649405092,-0.30000080866739154,-0.4086758536286652,-0.7618859354406595,0.7302285917103291,0.9221613658592105,-0.6543477480299771,0.2986707235686481,-0.6893359203822911,-0.8488068520091474,-0.8682800186797976,-0.445999454241246,-0.7738265893422067,-0.6530062085948884,0.8233193191699684,-0.8550586113706231,-0.15726174181327224,0.28796826023608446,-0.4707475365139544,0.529600081499666,-0.49276776146143675,-0.1648352863267064,0.49584535835310817,-0.5877793380059302,0.8408673526719213,-0.044687730725854635,-0.16907125106081367,0.33877982990816236,0.11785708647221327,-0.5765683464705944,0.9652719143778086,-0.9152423432096839,-0.9221284883096814,0.12018341245129704,-0.29259610502049327,0.15613861102610826,0.6085764043964446,-0.8702827547676861,0.06859282031655312,-0.9329841039143503,0.7254368928261101,0.7427555248141289,0.5530159957706928,0.3436267236247659,-0.76413221238181,-0.23053240776062012,-0.764837983995676,0.6425677631050348,0.07150009833276272,-0.9829626600258052,-0.4801780073903501,0.3696334473788738,0.36606820207089186,-0.3871375652961433,0.41378804622218013,-0.25486976047977805,-0.445762419141829,-0.599513640627265,-0.8231816245242953,0.7074925140477717,-0.1379896686412394,0.5542877721600235,-0.2737785973586142,0.0013698735274374485,0.8082147459499538,0.9610400325618684,0.9195824218913913,-0.4408773691393435,0.4221567125059664,0.9202094678767025,0.9722422091290355,0.29367611603811383,0.05588124645873904,-0.4199097380042076,-0.7935952278785408,-0.15729860868304968,0.2095336108468473,0.20500941900536418,-0.3230566377751529,0.24166668765246868,-0.28821903094649315,0.3640924566425383,-0.9185550180263817,0.8068913449533284,0.8695804323069751,0.3568416996859014,-0.6594253946095705,0.7435279181227088,0.7721444698981941,0.6199981034733355,0.2504779943265021,0.1678877486847341,-0.970496634952724,-0.3984539667144418,0.6497767176479101,-0.0036360006779432297,0.30840941704809666,0.09960942761972547,-0.006435219664126635,0.8945512445643544,0.2397406455129385,0.0882434961386025,-0.3299767253920436,-0.7820138093084097,0.9232646841555834,0.4263473036698997,-0.5095826117321849,0.24120093556120992,-0.9229325507767498,0.944222395773977,0.5973918763920665,-0.6885499274358153,0.8841288611292839,0.2651722189038992,-0.44922345504164696,0.029125559609383345,-0.4977063238620758,0.6927403747104108,0.5389624517410994,-0.014969777781516314,-0.06421397486701608,0.8226148788817227,0.0425532259978354,-0.36318987840786576,-0.7703446689993143,0.6144445766694844,-0.81045485381037,0.19933007564395666,0.46008949959650636,-0.8741137282922864,0.08805081900209188,-0.049741735216230154,0.5977091351523995,-0.2380263563245535,0.9205517102964222,-0.8632798688486218,0.8461110489442945,-0.08081728033721447,-0.8007000791840255,0.09255681140348315,-0.09177000960335135,0.16993425181135535,0.787007522303611,-0.6371821435168386,-0.4096366544254124,-0.8651917474344373,-0.6902977149002254,0.5816179364919662,0.33854815736413,0.6726598055101931,0.2737043178640306,0.25977502623572946,-0.6549982288852334,-0.6711016087792814,-0.7691396167501807,0.8263545059598982,0.520255436655134,-0.31655769096687436,0.5565984542481601,-0.14854983985424042,-0.61167305521667,0.6326585612259805,-0.44917382718995214,0.1307292995043099,-0.3039840180426836,0.8527294145897031,-0.4619838409125805,0.6170626832172275,0.08045163378119469,0.41710928827524185,-0.8535510418005288,0.5437257443554699,-0.833616663236171,-0.592070899438113,-0.2668415461666882,-0.5762470662593842,0.07570446329191327,0.31001359689980745,0.8583192084915936,0.6889892756007612,0.7632545665837824,0.15075257187709212,0.2535605910234153,-0.9683679225854576,0.5386704877018929,0.8834852208383381,0.9700294807553291,0.8843501410447061,0.049092394299805164,0.2423973479308188,-0.45214286306872964,-0.20984408957883716,-0.6074866130948067,0.7426048256456852,-0.9048810550011694,-0.8796845306642354,-0.5775904525071383,0.7054216959513724,0.7214727709069848,0.05512856971472502,-0.6391200204379857,-0.1501616146415472,0.014831714797765017,-0.06177900079637766,-0.31024273950606585,-0.9612746327184141,-0.4270856501534581,-0.23651212872937322,-0.8245310815982521,-0.8636944056488574,0.9616884174756706,0.7827118709683418,0.3371446109376848,0.034117985516786575,0.377703167963773,0.030989899300038815,-0.639625592622906,0.1870449553243816,-0.6633907300420105,0.6807329300791025,0.8887911294586957,0.8688539396971464,0.3037676988169551,-0.8637903644703329,0.5202931496314704,-0.5733620412647724,-0.030316965654492378,-0.11818482493981719,-0.8167363349348307,-0.6855224994942546,0.3678253907710314,0.35096465423703194,-0.1302048214711249,0.12574364617466927,-0.2291855737566948,-0.5782329570502043,0.39085821714252234,0.3164700730703771,0.3478320040740073,0.26463839691132307,-0.9419365110807121,0.45338088646531105,0.9919218961149454,-0.8996273269876838,0.9208037578500807,0.3521404508501291,0.7516459934413433,-0.19787334464490414,0.41745210671797395,-0.9653370720334351,0.22183278482407331,0.47246300615370274,0.5543284732848406,0.45827153138816357,0.7937006871215999,-0.5741382846608758,0.5728580355644226,-0.39525867672637105,-0.12241128971800208,-0.5331854573450983,0.8807839062064886,-0.5454687080346048,-0.8480288679711521,-0.17113199830055237,-0.1389186242595315,0.6228630035184324,-0.9669102700427175,0.7988873454742134,0.7399006383493543,0.05943420482799411,0.2928495076484978,0.9540651417337358,0.8816954372450709,0.14307150291278958,0.5516656963154674,-0.6226355116814375,-0.7944575874134898,0.14211313566192985,-0.3622783147729933,-0.42820962937548757,0.6295395847409964,-0.3199843247421086,0.4656856460496783,-0.432303405366838,-0.07166812475770712,0.45433419989421964,0.37462280970066786,0.45661188615486026,-0.10528724081814289,0.6436556163243949,0.9099966613575816,0.14000113075599074,-0.1797331222333014,-0.03186751017346978,-0.48852117732167244,0.6479138541035354,0.7518884865567088,0.08829391095787287,-0.38033452257514,0.25175733864307404,-0.7007091157138348,0.6653728657402098,-0.3015477345325053,0.1735837529413402,-0.375867472961545,-0.6102192136459053,-0.7105720844119787,0.05512821674346924,-0.3628841773606837,-0.16866128658875823,0.9831467415206134,0.7226070165634155,-0.29975864943116903,0.2253543846309185,-0.20798562839627266,-0.220652446616441,0.023368057794868946,0.009573433082550764,0.060412101447582245,-0.6425176323391497,0.6388549264520407,0.4745242646895349,-0.6537343463860452,-0.48368251975625753,-0.5841479580849409,0.8406506450846791,-0.7874605138786137,0.4057575250044465,-0.1479344549588859,-0.7610789244063199,-0.9279855280183256,-0.4547524587251246,0.055529679637402296,0.8604384269565344,-0.1230926476418972,0.7103812443092465,0.819053468760103,-0.9035371150821447,-0.03901750082150102,-0.12257422367110848,0.6662920517846942,0.71350770117715,-0.9316324354149401,0.05123674916103482,0.3225279455073178,-0.544225191231817,-0.37097351672127843,-0.940632488578558,-0.8167074769735336,-0.15706335846334696,-0.464786465279758,-0.34978095395490527,0.18711856240406632,0.23191305715590715,-0.9698604759760201,0.02402076730504632,-0.49553878232836723,-0.9854876138269901,0.11953892977908254,0.4061985667794943,0.3272126689553261,0.2760302503593266,0.1473214253783226,-0.19921392807736993,-0.5463047870434821,-0.8282980523072183,0.3162818537093699,0.6113159297965467,-0.156971232034266,-0.48886058339849114,0.5896124085411429,-0.666652939748019,0.5627335156314075,0.41196582140401006,-0.8530788677744567,0.09110967023298144,-0.2777241519652307,0.057448902167379856,0.715386145748198,-0.6376912305131555,0.5309192850254476,0.7197534260340035,-0.9501047767698765,0.9115128233097494,0.69779815338552,-0.8414311003871262,-0.6790081337094307,0.4465896640904248,0.3208440472371876,0.24934041872620583,-0.5425560679286718,-0.9987173867411911,0.056676650419831276,0.5048103840090334,0.2303164997138083,-0.4804858500137925,0.8150136331096292,0.843800057657063,0.13765587098896503,0.7410757690668106,-0.823257511947304,0.49180757673457265,0.5357789685949683,-0.5042604175396264,-0.8041707570664585,-0.8993955883197486,0.8986483737826347,-0.10339309275150299,0.47787406435236335,0.21903659449890256,0.9113047188147902,0.699488409794867,0.40008804574608803,-0.7652000430971384,0.44314644718542695,-0.06539422553032637,0.2618087334558368,0.9904301543720067,-0.5512635614722967,-0.5675579127855599,-0.5076151820831001,0.24694678513333201,0.8844109368510544,0.5802583079785109,0.13191487733274698,0.859222439583391,0.1877637575380504,0.7035118914209306,0.5484551102854311,0.31825570203363895,-0.3664559288881719,0.5119630815461278,0.811091988813132,0.3860559989698231,-0.8225231599062681,-0.2204766315408051,-0.07291440479457378,-0.2872833628207445,-0.4402888803742826,0.5531216636300087,-0.5098236231133342,-0.5257168114185333,-0.04138150066137314,0.7252772939391434,-0.6808490729890764,0.5123840472660959,-0.8331230627372861,0.11302439961582422,0.5610210550948977,-0.022919819690287113,-0.7072481662034988,-0.7173802778124809,0.028900121338665485,0.9640481900423765,0.7857587467879057,0.6969086392782629,0.44542659539729357,0.2166659659706056,0.8058666810393333,-0.12347543612122536,-0.9534392324276268,0.8842216520570219,-0.7683359431102872,-0.478706153575331,0.9355350187979639,0.7530542574822903,0.21164091117680073,-0.8936681495979428,0.01781536638736725,-0.9839313277043402,-0.7943081026896834,0.030614972580224276,0.2428197404369712,-0.13486523600295186,-0.21802172577008605,0.7548282057978213,0.4957856321707368,-0.33900040201842785,0.022911001462489367,0.13392568100243807,-0.8289701212197542,-0.284391799941659,0.24806564766913652,-0.49491088511422276,-0.7561415107920766,-0.052294306457042694,0.8223625267855823,-0.19579198537394404,-0.2923580938950181,0.3182068755850196,0.4754983736202121,0.6324989823624492,0.3310730252414942,0.4804550432600081,0.7975258911028504,0.9642142574302852,0.6479590809904039,0.3553916532546282,0.09778939932584763,-0.9159497781656682,-0.2500978223979473,-0.7550071771256626,-0.20484810648486018,-0.9358107470907271,0.4802204417064786,0.7431997312232852,-0.6524882675148547,-0.31879293033853173,0.17592094372957945,-0.5824084957130253,-0.4372159861959517,-0.5343479700386524,-0.9140585078857839,-0.7837745137512684,0.29163304390385747,0.4672789624892175,-0.24799067480489612,-0.4327310393564403,-0.4012320777401328,0.1574731981381774,0.16477753315120935,-0.4245659401640296,-0.826705270446837,0.4340033642947674,0.5190607160329819,-0.9706855206750333,-0.730834529735148,0.4762571477331221,0.4172625057399273,0.12262072041630745,-0.08941875211894512,0.06369226379320025,-0.8099425369873643,0.2129194769077003,0.7458779555745423,0.98493367806077,0.7232081918045878,-0.4415707057341933,-0.6936375815421343,-0.3200047570280731,0.47541885636746883,0.91257637552917,0.19741547061130404,0.13040711265057325,0.37239393638446927,-0.3115324890241027,0.12895553279668093,-0.12613010872155428,-0.8562679439783096,-0.2767986529506743,-0.260479592718184,-0.9861318096518517,-0.1313963020220399,-0.6578247430734336,-0.28958457615226507,0.05276752449572086,0.6533635808154941,0.27639609994366765,-0.6935835517942905,0.22476499434560537,0.5969179016537964,0.7071332223713398,0.4250404657796025,0.46629578806459904,-0.49892756063491106,-0.5192490853369236,0.7659540874883533,-0.6006632372736931,-0.8432551203295588,0.895004908554256,0.1889731092378497,-0.44530491530895233,-0.3064578580670059,-0.7604293790645897,-0.3259372669272125,0.10711756674572825,0.9426226718351245,0.7597991270013154,0.796737109310925,0.49118315847590566,-0.83203293569386,0.38805510057136416,-0.57832266157493,-0.24469135701656342,0.0167352301068604,-0.36583275720477104,-0.41819876013323665,-0.24871340952813625,-0.6869650781154633,0.26463021896779537,0.5605519246309996,0.7241055918857455,0.4654883621260524,-0.9174920003861189,-0.07698357151821256,-0.29886527080088854,0.2855144622735679,0.22013394441455603,-0.01808948442339897,-0.1070442907512188,0.642210301477462,0.26712278788909316,0.4926701229996979,-0.8518091388978064,0.062244787346571684,-0.4050920959562063,0.8058978109620512,-0.7798257204703987,0.8274779133498669,0.33382551139220595,-0.9713716376572847,-0.20730328187346458,0.4529404267668724,-0.39869156619533896,-0.7554237912409008,-0.3172459094785154,-0.7171071479097009,0.8553801123052835,0.21423347061499953,0.9652093918994069,0.623782358597964,0.33761276258155704,0.004415575880557299,0.06609986303374171,-0.4003945696167648,0.7978850174695253,0.9341255081817508,0.046199620235711336,0.6656429506838322,0.09563861228525639,0.6053277901373804,0.1459191837348044,0.44020159961655736,-0.9065401963889599,0.7826968925073743,0.7555116536095738,-0.7063716030679643,-0.7095595244318247,0.0660675810649991,-0.48790454352274537,0.8625390981324017,0.9609866891987622,0.5948785245418549,0.16606828151270747,-0.5450964388437569,-0.23411444434896111,0.9696142957545817,-0.6506741447374225,0.5016304655000567,-0.3173402836546302,0.08388466481119394,-0.2616004045121372,0.5158125180751085,-0.7178190001286566,-0.3953652405180037,-0.6916929157450795,0.3721881462261081,-0.5887590600177646,-0.6466434192843735,-0.13237205427139997,-0.3658861741423607,0.8673076829873025,0.9929455961100757,0.49827615451067686,0.883114262484014,-0.35291151283308864,0.40665135672315955,-0.19957349076867104,0.051645762752741575,0.7610542657785118,0.2870551263913512,-0.6195835694670677,0.20291445637121797,0.6717097517102957,0.4367137481458485,0.2088513313792646,0.19126761285588145,-0.09332557674497366,-0.9417500169947743,-0.24252048367634416,0.18257493479177356,0.13368147099390626,0.8713336721993983,0.5944194570183754,0.03852322930470109,-0.021036287304013968,0.15983337396755815,0.02097209682688117,-0.9671888104639947,0.5503787123598158,0.10648581758141518,0.19810107816010714,-0.06729391403496265,0.12807636195793748,0.3585803988389671,-0.2654639515094459,0.9749766597524285,-0.445096418261528,0.5828513465821743,0.5514434282667935,0.6393885067664087,-0.533358964137733,0.2492171684280038,0.07921499898657203,-0.37706857128068805,0.8539725481532514,-0.44578244304284453,0.48972267704084516,0.6513835457153618,0.10587067808955908,0.03450952796265483,0.9419517242349684,-0.3558889930136502,0.6810633200220764,-0.9685886944644153,0.8784445002675056,-0.8392611918970942,0.6099087800830603,-0.4145849859341979,-0.5519479694776237,0.6706614964641631,0.4997689053416252,-0.24636729946359992,0.4194257287308574,0.7868642918765545,0.484167052898556,-0.5705271582119167,0.41239404072985053,0.7030279482714832,-0.28159054461866617,0.3157291039824486,0.7766500329598784,0.4919407218694687,0.5150690227746964,0.11923288786783814,-0.4275848329998553,0.15237616654485464,-0.9541423693299294,-0.5551353269256651,0.48122702119871974,-0.42875376902520657,-0.6710901781916618,0.47186564607545733,-0.00667712464928627,0.8658375013619661,0.5677509880624712,-0.1148016331717372,-0.5481617394834757,0.40489906445145607,0.433435064740479,0.6818813597783446,0.4754152116365731,0.10445202235132456,-0.5576101122424006,0.7596828904934227,0.09327529603615403,0.06956410501152277,0.26754896668717265,-0.7441670619882643,-0.3906615781597793,0.31842807959765196,-0.7064816835336387,0.48957712668925524,0.08496155543252826,-0.4497426366433501,0.5850575896911323,0.9497816455550492,0.6985980598255992,-0.17502354318276048,-0.9263284387998283,0.12543722242116928,-0.1519275726750493,0.1348845767788589,-0.2449755184352398,0.05507910577580333,0.03694163542240858,0.4627690236084163,-0.5918901534751058,0.9549047974869609,-0.9316053623333573,0.17104588728398085,0.6505573582835495,0.7950629312545061,-0.07013326045125723,0.3689208198338747,-0.46433502435684204,0.20919072721153498,-0.7619040128774941,0.8507334017194808,-0.07893910119310021,-0.42095196433365345,0.024747241288423538,-0.9187494707293808,-0.9600852932780981,-0.4382896749302745,-0.9610238969326019,-0.5283808684907854,-0.25654064817354083,0.028401187621057034,0.2333797779865563,0.9271250241436064,-0.8593601258471608,-0.3216548762284219,0.3917797659523785,0.9296789821237326,-0.31924123875796795,-0.5580011643469334,-0.2609453317709267,-0.628963537979871,0.08646598597988486,-0.5635688127949834,-0.38680386124178767,0.7973055569455028,0.05380817502737045,-0.026324469596147537,0.9433963955380023,-0.6503104353323579,0.953388286754489,-0.2967073484323919,-0.4904266078956425,-0.3916804054751992,0.8012756411917508,0.5587960863485932,0.6808611704036593,-0.22917298506945372,-0.4811993967741728,0.09570590872317553,0.018630252685397863,0.5348259168677032,0.7690761424601078,0.589814302045852,0.17077273363247514,0.7318117804825306,-0.11529266415163875,-0.42535004764795303,0.24945292342454195,-0.42822185484692454,0.6515259020961821,0.5452789096161723,0.8486265079118311,0.8963003847748041,-0.6661097425967455,0.7300065979361534,0.40581144159659743,0.02081854548305273,-0.22346030129119754,0.32665125001221895,0.9627356855198741,-0.5950298588722944,-0.430858938023448,0.8274757573381066,0.3578179758042097,-0.3988781585358083,0.20070075569674373,0.8624652912840247,0.6625117156654596,0.7248862995766103,-0.6819914393126965,0.025816073641180992,0.020138761028647423,0.7564333244226873,-0.5782213089987636,-0.09273573756217957,0.2420266498811543,0.48429009038954973,0.48384370608255267,0.8886510930024087,-0.04588025761768222,0.03110020374879241,-0.4102701642550528,-0.6849659369327128,-0.2543804286979139,-0.38557822443544865,0.5884393826127052,0.9679802814498544,-0.6173410890623927,-0.9581770417280495,0.7100522457621992,-0.11886496935039759,0.3857324202544987,0.653711489867419,-0.7684055655263364,0.3268054467625916,-0.726786055136472,0.3154489854350686,-0.5361696467734873,-0.18636677460744977,-0.3193782027810812,-0.3557240255177021,-0.6376994741149247,-0.7151475227437913,-0.5563438371755183,0.6659879176877439,-0.23124924674630165,-0.3480896526016295,-0.12989182164892554,0.004969193134456873,0.045069125946611166,-0.5077619352377951,0.04676432255655527,-0.6872137477621436,0.17982837930321693,0.3425762918777764,0.008450723718851805,-0.227326397318393,0.028259296901524067,-0.5992216882295907,0.8350727753713727,0.10463001485913992,0.5643409923650324,0.29622997948899865,0.10391720943152905,-0.511779042892158,-0.5803519729524851,0.7739331219345331,0.2959131821990013,-0.38979819556698203,0.04295000294223428,-0.6863743201829493,-0.5813467651605606,0.7565197814255953,0.9720641016028821,-0.38252306962385774,0.8931155144236982,-0.20827221078798175,-0.4338306924328208,0.6988619402982295,0.42010188288986683,0.017723008058965206,-0.24210913479328156,0.08204942522570491,-0.45621112920343876,0.08662265725433826,0.7672374350950122,0.19547833455726504,0.5279712453484535,0.9734376375563443,-0.9128516335040331,-0.6271365121938288,-0.05924764135852456,0.830412037204951,0.6757492353208363,-0.04993758536875248,-0.019258232787251472,0.49286786699667573,-0.763755866792053,0.16641917498782277,0.7040892075747252,0.7320912992581725,-0.03443235671147704,0.5708079063333571,-0.6689565284177661,0.015552629251033068,-0.3452911479398608,-0.5540590900927782,-0.9824559492990375,0.9784366870298982,0.6879524337127805,-0.8793021803721786,0.257607183419168,-0.7109705293551087,0.014565248973667622,0.8576549640856683,-0.5576863391324878,0.008386923465877771,-0.41210539173334837,-0.8111583674326539,0.4827260193414986,-0.851098801009357,-0.4038150948472321,-0.9208476268686354,-0.9478320688940585,-0.5125700882636011,-0.025988236535340548,-0.04133587796241045,-0.8816049476154149,0.07663912326097488,0.44657355453819036,0.2870495361275971,-0.7236759490333498,-0.7565454966388643,-0.19879017118364573,0.6744081024080515,0.6189164924435318,0.6474663442932069,-0.9606138551607728,-0.8740704492665827,-0.14876816933974624,-0.6584082995541394,-0.9461445333436131,0.01758339488878846,-0.4863623040728271,0.9229051219299436,0.2826858521439135,-0.9243108360096812,-0.5899947709403932,0.8307662988081574,-0.7026938209310174,0.26072687562555075,0.12192471046000719,-0.37106196163222194,0.3427071929909289,-0.08039690228179097,0.6249195872806013,-0.20818740176036954,0.8551259376108646,-0.8057851404882967,-0.1113685816526413,0.9076551608741283,0.049672309309244156,-0.07823432981967926,0.7379008196294308,-0.18809427879750729,0.7277542217634618,-0.7937719356268644,0.5986022064462304,-0.2890124833211303,-0.7389939371496439,0.9814328141510487,-0.5706528876908123,-0.5360615733079612,0.7197712827473879,0.714741918258369,-0.423017593100667,-0.6449652370065451,-0.712301510386169,0.7282665353268385,-0.7353269746527076,-0.8169324514456093,0.12854116363450885,-0.4670803374610841,0.46937671629711986,0.17274248832836747,0.7621314562857151,-0.9069927050732076,0.41464625485241413,-0.44135117856785655,0.3600487266667187,-0.3041627751663327,-0.25946542154997587,0.5073728794232011,-0.15578422602266073,0.9272195654921234,0.08093535155057907,0.7061780332587659,-0.05790486931800842,-0.03769399784505367,-0.385501810349524,0.3595654726959765,0.1790782711468637,-0.5455774790607393,-0.837249640841037,-0.05442406889051199,0.015291417483240366,-0.43342724721878767,0.45909730810672045,-0.6967422622255981,-0.8422392476350069,-0.9122669133357704,0.8543513515032828,0.29280330846086144,0.39081577211618423,-0.6402088832110167,0.7150823283009231,-0.48606006894260645,0.46770319109782577,-0.6701561524532735,0.5385666382499039,0.2770099099725485,0.12606626143679023,0.6484738676808774,-0.37747779255732894,-0.3128393264487386,0.4636469166725874,0.6913756779395044,-0.038227385841310024,0.5792068284936249,0.5598834468983114,0.03585541807115078,0.5063709886744618,0.839827146846801,-0.646724954713136,-0.6026470684446394,0.53893052181229,-0.11179516976699233,0.7956133261322975,-0.7877262504771352,0.5655213631689548,0.18138503516092896,0.007577051874250174,-0.405219076666981,0.008762744721025229,-0.22019908716902137,0.3212072039023042,0.5140735264867544,-0.44353275187313557,0.38998528523370624,-0.305726807564497,-0.7547367420047522,0.34738113544881344,0.36757070617750287,-0.24075581738725305,-0.20294925197958946,-0.802064417861402,-0.6035533812828362,0.5296180346049368,-0.12228329991921782,0.8293026923201978,-0.29498928505927324,0.4922181824222207,-0.5431724339723587,-0.27349047642201185,0.23299584770575166,-0.858306871727109,0.004860150162130594,0.7207607976160944,0.49104757560417056,-0.37687083380296826,-0.6633846019394696,0.11338367220014334,-0.45110107539221644,-0.38485656632110476,-0.2519631814211607,-0.9165482316166162,0.6271419720724225,-0.8635640540160239,0.7705472772940993,-0.5024680644273758,0.7895254665054381,-0.05664926581084728,-0.07838666625320911,0.7463743784464896,0.7489753724075854,0.22460743226110935,-0.5314960069954395,-0.8533707670867443,0.5338621437549591,-0.41863792249932885,-0.13055238034576178,0.6258494299836457,0.48425404680892825,-0.8593005370348692,-0.42529601138085127,-0.48081409372389317,-0.3249609535560012,-0.03627523174509406,0.5727021829225123,0.14960259106010199,0.448867988307029,0.14948428142815828,-0.4296490144915879,-0.05008112080395222,0.934500687289983,0.7924488405697048,-0.8221725770272315,0.8667078632861376,0.9277968131937087,0.8015040415339172,0.2959629353135824,-0.7037370977923274,0.7390549187548459,-0.9885051492601633,0.3332516006194055,0.8477349923923612,0.2760914149694145,-0.5912905829027295,-0.7866756375879049,0.19977723248302937,-0.323409435339272,-0.27051068050786853,0.792329587507993,0.3461229866370559,-0.59136867756024,-0.10874332068488002,0.8721764544025064,-0.4231221661902964,0.6578868976794183,0.6950177359394729,-0.7968175881542265,-0.6695371055975556,-0.32183484407141805,-0.07959091663360596,0.8918430237099528,-0.13896169140934944,0.6698480034247041,-0.3335580718703568,0.9208422591909766,0.7080628420226276,-0.0964015326462686,0.12685975478962064,0.322010297793895,0.02861348632723093,-0.5670561459846795,0.9413858465850353,-0.18414001120254397,0.10156714962795377,-0.5126968971453607,-0.5440861582756042,-0.8188801100477576,0.944397090934217,0.21408207481727004,-0.48287561209872365,-0.006215641275048256,-0.27674675360322,-0.9580005328170955,-0.6699499571695924,-0.45341320475563407,-0.43057925160974264,-0.029300251975655556,-0.04834486171603203,-0.5245716450735927,-0.2963190022855997,-0.24250397132709622,0.4983444856479764,0.6974237440153956,0.3630560110323131,-0.9678690354339778,0.09028019057586789,-0.2198200379498303,0.5208334266208112,-0.2816923577338457,0.07443201448768377,0.31766431126743555,-0.5618767053820193,-0.9048886597156525,-0.8275112891569734,-0.07022039592266083,-0.8058270220644772,-0.9430984947830439,-0.8224449502304196,0.12699309410527349,-0.3450506869703531,-0.010485546663403511,-0.631263236515224,0.2261456297710538,0.36992126889526844,0.7941939476877451,0.8317477689124644,0.4614061866886914,0.7195734549313784,-0.4002061723731458,-0.6094794911332428,0.6578395343385637,-0.5258990414440632,0.16005770210176706,0.05437360377982259,-0.7797564542852342,-0.08950338931754231,-0.6186737576499581,0.376254100818187,0.48347349278628826,0.21500410605221987,0.9864879539236426,-0.039874028880149126,-0.9279295331798494,0.8403708282858133,-0.5979892029426992,-0.6529071573168039,-0.268818290438503,0.27712717605754733,-0.32393800653517246,-0.29897602600976825,0.9378275596536696,0.8580544544383883,-0.19712209748104215,0.6673809210769832,0.64251793269068,0.6744499169290066,0.935059960000217,-0.7540045073255897,-0.2598869763314724,-0.14419037755578756,-0.2569171320647001,-0.630252358969301,-0.6735741635784507,-0.5640134196728468,0.5130278547294438,-0.9657177184708416,-0.09512308612465858,0.9289763402193785,-0.8132262541912496,-0.6810222850181162,0.1210541189648211,0.9165180274285376,0.2763625914230943,-0.9255290748551488,0.10022658295929432,-0.9328273106366396,0.8884358955547214,0.0539412647485733,0.7935921857133508,-0.7385388505645096,-0.5899893408641219,-0.23260452365502715,-0.004579504486173391,0.4209011122584343,-0.2647388526238501,0.9258048972114921,-0.8429552502930164,-0.16503091575577855,0.6205375683493912,0.47240263037383556,0.1910679512657225,0.03411056101322174,0.5120267234742641,0.48349192179739475,0.8431413182988763,0.9459045976400375,0.9099411484785378,0.3237966229207814,-0.5914574572816491,-0.863211362157017,0.3357710293494165,0.24151293467730284,-0.05525930831208825,-0.6153981341049075,0.49391624378040433,-0.7594190910458565,0.3761061211116612,0.8431345508433878,-0.892661134712398,0.09789054514840245,0.7461425410583615,0.6161824255250394,0.8198266266845167,0.6624596621841192,-0.1700961529277265,-0.5281866602599621,0.3048420660197735,0.0163255394436419,0.7990827667526901,-0.8035026723518968,-0.5821176497265697,-0.26123626297339797,0.1464653634466231,0.9356971392408013,-0.8717944207601249,-0.5711074201390147,0.6445249677635729,0.9328115675598383,-0.8500381307676435,0.007174374535679817,-0.7528381464071572,0.7257026210427284,-0.6340147908776999,-0.3247944647446275,0.032127062790095806,-0.05640982696786523,0.5270484597422183,0.12710823211818933,0.8329498926177621,0.22678406396880746,0.647116903681308,-0.7415812201797962,0.14610231574624777,0.23518755147233605,-0.45056562684476376,-0.3718416481278837,-0.8433926911093295,0.7511343890801072,-0.0867274017073214,0.829520842526108,0.6598488064482808,0.9120517047122121,-0.7184281670488417,0.2801138814538717,-0.4782209456898272,0.7031421042047441,0.14501076890155673,-0.2706368607468903,0.4704451123252511,0.9734474066644907,0.9039862072095275,-0.8369947704486549,-0.26548688020557165,-0.8344057388603687,-0.03948710346594453,0.5768190319649875,-0.376363686285913,0.8852922255173326,0.15871111815795302,-0.5806693695485592,-0.05881039006635547,0.30074384110048413,-0.27870621997863054,0.9190315948799253,-0.6486712223850191,0.7089969739317894,-0.929876268375665,0.5236738449893892,0.5892539196647704,-0.14601179817691445,0.535149481613189,-0.9976493320427835,0.5249158311635256,0.9642256991937757,0.3193244794383645,0.2829184578731656,-0.014889649115502834,0.6640082946978509,-0.16770894639194012,-0.15722927171736956,0.5842864969745278,-0.9712280333042145,0.8460843283683062,0.8369314139708877,0.6722648525610566,0.1585155171342194,-0.8592083360999823,-0.6984873968176544,-0.8801274583674967,0.3358528916724026,0.9425491322763264,0.9567205272614956,-0.5517063816078007,0.2044972670264542,0.8524229126051068,-0.8073580414056778,0.8400264037773013,0.8571594697423279,0.6241276664659381,0.6246841712854803,0.6839931877329946,0.29064860893413424,0.6721549700014293,-0.5377437891438603,-0.5428282781504095,0.956965553574264,0.5673697753809392,0.7623172733001411,0.9431036966852844,0.6499929768033326,0.9564648373052478,-0.4621678553521633,-0.25782233802601695,-0.7926543117500842,-0.24006678396835923,-0.7458164761774242,0.9136932352557778,-0.7603252343833447,0.35979828890413046,0.006662226747721434,-0.38934139674529433,-0.01734916213899851,0.15891327522695065,0.28141137585043907,-0.24609551345929503,0.8570564864203334,0.6173410122282803,-0.7590506440028548,0.001828107051551342,0.45607004733756185,-0.10746207926422358,0.6220111306756735,-0.7551519512198865,0.7278455579653382,-0.5260498654097319,-0.14795218594372272,-0.1867471355944872,0.3864730931818485,0.13130850112065673,-0.0726505545899272,-0.12524028215557337,-0.7901020655408502,0.7526380801573396,-0.5861912062391639,0.15032384591177106,0.4767680917866528,0.9104528743773699,0.31477235862985253,-0.8630312797613442,-0.18419329589232802,0.13749239360913634,0.8861928102560341,-0.8757824222557247,-0.10966190602630377,-0.03059342922642827,-0.24887241516262293,-0.49421636248007417,-0.05360735487192869,-0.30372339114546776,0.3588994233869016,0.4751784368418157,0.10958930384367704,0.8107625376433134,0.591156370472163,-0.4484269362874329,-0.21086430409923196,0.6603161124512553,-0.156644054222852,0.03998934896662831,-0.7597353449091315,0.511304474901408,0.8906612433493137,0.03945364337414503,0.6859242180362344,0.43283404177054763,-0.5870437235571444,-0.9972245027311146,-0.1668926253914833,0.41359312646090984,0.930972901172936,0.19440267933532596,0.6801506076008081,-0.5837260987609625,-0.7847585980780423,-0.9744690507650375,-0.2872760216705501,0.5205633169971406,-0.5070378729142249,-0.6682349112816155,-0.409958241507411,0.275493779219687,-0.12917840294539928,0.30212400993332267,-0.09799473732709885,0.8371572801843286,0.4799363003112376,0.7376755434088409,-0.13936785329133272,0.9420487200841308,-0.03006070340052247,-0.9221593369729817,-0.5346215474419296,0.04783216584473848,0.01709845382720232,0.757483848836273,0.4680509767495096,0.3761077728122473,-0.7505014110356569,0.03474131366237998,-0.8548946701921523,0.6149980714544654,-0.5849476922303438,-0.750791581813246,0.33961027627810836,0.5299761481583118,0.9195280517451465,0.7169933076947927,0.9951467053033412,0.03166661178693175,0.09815260069444776,-0.8526171445846558,-0.5771586000919342,-0.19584036339074373,-0.5370326219126582,-0.8863833690993488,-0.6045089391991496,-0.16341620031744242,0.8483044160529971,0.30486096628010273,0.6520660412497818,0.4353381064720452,-0.17748311534523964,0.8532885215245187,0.898860557936132,-0.3070447617210448,0.2804448986425996,-0.744941383600235,0.16507703019306064,0.9668477429077029,-0.5842595519497991,0.013220724184066057,-0.6660053483210504,-0.8402099628001451,-0.40006112586706877,0.8086269008927047,0.8422789359465241,0.4970055758021772,0.4244727762416005,0.9008831698447466,-0.7463708384893835,-0.40208409866318107,-0.1968184756115079,0.06477077305316925,0.3366217231377959,0.060247084591537714,0.2995498455129564,0.9945793286897242,-0.7791257216595113,0.6040942878462374,-0.8083027242682874,0.05319743463769555,-0.846170695964247,0.7514408575370908,0.7774589136242867,-0.8255732981488109,-0.2461587656289339,0.13759936019778252,0.3753841486759484,-0.05231486912816763,0.009587788954377174,0.5440530627965927,-0.007542980834841728,-0.5198155278339982,-0.2676617964170873,0.8798468760214746,-0.3092682179994881,-0.40184638323262334,-0.7299652947112918,-0.7746878284960985,0.6704065022058785,0.07599567389115691,0.9177076048217714,0.44764032447710633,0.5170102491974831,-0.945855360943824,0.04966067476198077,-0.7705610441043973,-0.175275435205549,0.10418798122555017,-0.7747864951379597,0.8721597860567272,0.6710469941608608,0.1464266083203256,-0.5498034250922501,0.24906212696805596,0.551448090467602,-0.21203581616282463,0.7258263835683465,-0.598355139605701,-0.04125581635162234,0.006341061554849148,-0.4202150162309408,0.1130217295140028,0.6082425229251385,0.812713467516005,-0.18711834028363228,-0.050077810417860746,0.5692619327455759,-0.9891309239901602,0.04429066879674792,-0.17545127728953958,0.7734212963841856,-0.7181409015320241,0.2523214351385832,-0.145570014603436,0.5227327272295952,-0.9715955872088671,0.9346607131883502,0.16306778555735946,0.472862895578146,0.7404811452142894,-0.7844290691427886,-0.5439553088508546,0.7707896055653691,-0.5771251334808767,-0.8601840222254395,0.5107124499045312,0.31619448168203235,-0.4305522539652884,0.5106001258827746,0.07070601591840386,0.665933976881206,-0.5271244454197586,-0.8781627849675715,-0.4558406323194504,0.20437409356236458,0.6607164796441793,-0.6681570960208774,0.8981076190248132,0.1267149532213807,-0.06654222263023257,-0.43056104658171535,-0.5906173870898783,0.7142296684905887,0.0863928534090519,-0.8924438864924014,0.7718197088688612,0.5434320452623069,0.9449763293378055,0.4705912135541439,0.3906252789311111,-0.09855956491082907,0.353991084266454,0.9466031715273857,0.13688406208530068,0.4481739425100386,0.8332565207965672,-0.5713086356408894,0.34904770413413644,-0.14217116869986057,-0.7836042828857899,-0.8592894221656024,0.04805169999599457,-0.12369015207514167,-0.18535661650821567,-0.764332499820739,0.08127793064340949,-0.9161094836890697,0.0520588462240994,-0.6978132831864059,-0.37138722790405154,0.85034065740183,0.48611807683482766,0.31773255253210664,-0.727726393379271,-0.38338526524603367,0.23433887213468552,0.5348643106408417,-0.5119011839851737,-0.912594782654196,0.8581240894272923,-0.24254475673660636,-0.33487698854878545,0.8614662340842187,0.5966737237758934,0.14768642652779818,0.5635623829439282,-0.17307366337627172,-0.015227479860186577,0.67343606101349,0.2008093069307506,0.14810306625440717,0.9233012357726693,0.8980766925960779,0.42760350136086345,0.3440516428090632,0.12099168170243502,0.952705733012408,0.08606023341417313,0.3859191630035639,0.7993321903049946,0.6271676146425307,-0.3784314808435738,-0.6121662021614611,-0.1083016493357718,-0.8878684779629111,0.8619289086200297,-0.610248351469636,-0.4240926895290613,-0.9244008013047278,-0.6321496199816465,-0.6667117225006223,-0.26004232466220856,0.91152074187994,-0.5666482415981591,-0.9293955150060356,-0.7914786101318896,0.2581437546759844,0.034208669792860746,-0.3881167499348521,-0.5322284433059394,0.19559986982494593,-0.13958549173548818,-0.4852431113831699,0.1639680596999824,-0.5002452568151057,0.03267588745802641,0.3521110159344971,0.12869801884517074,0.7286311169154942,-0.6961449808441103,-0.027804328594356775,-0.5346573842689395,0.48738872772082686,0.7641307450830936,0.2932147020474076,-0.8728566062636673,0.8740379372611642,-0.687412844505161,0.40246459003537893,0.2009510458447039,0.8002999103628099,-0.23299014661461115,-0.5052772932685912,0.503355526831001,-0.29938384564593434,0.8720724117010832,-0.47487259889021516,0.42870129365473986,0.9507797043770552,0.7706160638481379,0.6479806206189096,0.445783331990242,-0.0003554900176823139,0.0969222947023809,0.34661900345236063,0.6124026770703495,0.20757952891290188,-0.4610960935242474,-0.470820470713079,-0.11487587774172425,0.7595981173217297,-0.9607819165103137,-0.27335264906287193,0.09114259714260697,-0.36019878508523107,-0.6962791704572737,0.34022478433325887,-0.7861657440662384,0.9433133495040238,-0.19777058670297265,-0.6091414825059474,0.8514654990285635,0.4454585979692638,0.6627156296744943,0.44672915944829583,0.40099390828981996,0.11368616530671716,0.08458414673805237,0.5821795118972659,0.9664097866043448,0.52754758996889,-0.9216841049492359,0.6575942705385387,-0.17105686198920012,0.21949202055111527,0.57820909563452,-0.8719404973089695,-0.3922662176191807,-0.08288833918049932,0.6107299048453569,0.9149951278232038,-0.7851535021327436,-0.2716170670464635,-0.6848069252446294,-0.352325864136219,-0.48289899807423353,0.11980254435911775,0.19467052351683378,0.22128451708704233,0.7053901753388345,0.9411897673271596,-0.7563682799227536,0.6082954490557313,0.4927328508347273,-0.5760387759655714,0.11107440665364265,0.38885260187089443,0.6570299067534506,0.0373900355771184,0.7674751654267311,-0.4841966559179127,0.06781712546944618,-0.7614135267212987,-0.6132243191823363,0.4108662693761289,-0.017069212161004543,0.849727020598948,0.7335978052578866,0.2026737155392766,-0.7709852284751832,0.5722831045277417,0.964189572725445,0.21336722699925303,-0.2587057244963944,-0.32117495965212584,0.2840379443950951,-0.0017960076220333576,-0.09251368418335915,0.8171225865371525,-0.4662976060062647,-0.9648679532110691,0.25504255993291736,0.24176073540002108,0.904947750736028,0.37578738294541836,-0.9560839948244393,-0.039289843291044235,-0.5760420579463243,-0.7669718591496348,0.38195178378373384,0.9535158085636795,0.21987919183447957,-0.39357989467680454,0.5262585384771228,0.47444179374724627,0.09000298706814647,-0.5443856585770845,0.5886886697262526,0.3165277559310198,0.29455056926235557,-0.919873776845634,0.10261789802461863,0.05721434624865651,-0.11311700288206339,0.42784786643460393,-0.7718560043722391,0.9090903354808688,-0.009078213479369879,0.48320850171148777,0.5041298931464553,0.4602982006035745,-0.18722368171438575,-0.4906621421687305,0.8449538424611092,-0.020076959393918514,0.9728570114821196,0.1476718639023602,-0.5943778059445322,0.9997254041954875,-0.16007545264437795,0.8442828636616468,0.9626536187715828,-0.30246808286756277,-0.48726616194471717,-0.16486085671931505,0.43326589884236455,0.3864551945589483,-0.5224952921271324,-0.46871166164055467,0.0253663407638669,0.6674729161895812,0.27535431319847703,0.8717768513597548,0.15232224157080054,-0.7169199995696545,-0.4193650665692985,0.24665468791499734,-0.5324407359585166,-0.8691871054470539,-0.8844321048818529,0.6586024421267211,0.0011243540793657303,-0.6862649726681411,-0.8053371161222458,0.16334613133221865,0.5654705567285419,-0.1578720328398049,-0.677409399766475,-0.7629786655306816,-0.9184342655353248,-0.900309644639492,-0.06808948051184416,-0.4194906912744045,-0.2668510410003364,-0.8741114814765751,-0.6254924419336021,0.15014703525230289,-0.1295013423077762,-0.4824287686496973,0.050859213806688786,-0.19051325181499124,-0.6172803030349314,0.858271453063935,-0.779593963176012,-0.18797092558816075,-0.31818858766928315,0.6431069257669151,0.977360743097961,0.3045247755944729,-0.42091967491433024,0.0019729724153876305,-0.1808030940592289,0.39432093454524875,0.29703624872490764,-0.2494621961377561,-0.7903417996130884,-0.6925348099321127,0.12196914106607437,-0.6751863374374807,0.12476972956210375,0.48643607273697853,-0.5187476049177349,-0.5088099874556065,0.2175278658978641,-0.5861826888285577,-0.24865083675831556,-0.5001583504490554,-0.6427515586838126,0.7571196770295501,0.4667645809240639,0.614265232346952,-0.5591822485439479,-0.3328417167067528,0.12267574109137058,0.2901257984340191,-0.11698308726772666,0.6875872975215316,-0.5365612702444196,0.07656760793179274,-0.7409521723166108,-0.20147799607366323,-0.4000220000743866,0.6742766769602895,0.22654410172253847,-0.04359694570302963,-0.0850207032635808,-0.4630049066618085,0.24371065152809024,-0.2891964865848422,0.8665500665083528,-0.3193126474507153,-0.4933195514604449,-0.8448270740918815,-0.01163378031924367,-0.9567855382338166,0.8083361182361841,-0.5616074092686176,0.348370558116585,-0.6525183953344822,-0.4050987930968404,-0.027346914168447256,-0.158977541141212,-0.6182048204354942,-0.5725160161964595,0.8732977951876819,0.1139583489857614,0.5605427138507366,0.5548338936641812,0.4363205460831523,0.5290516586974263,0.030001065228134394,0.30236772913485765,-0.12028099875897169,0.4876816957257688,-0.08044434385374188,-0.7725384547375143,-0.6288042301312089,0.6064165695570409,-0.08661081502214074,-0.7246417198330164,0.7013468374498188,-0.027429158333688974,-0.6351982355117798,0.8094577384181321,-0.5166912605054677,-0.4095937544479966,0.3403122187592089,-0.014183159917593002,0.9714447818696499,-0.49267725460231304,-0.9468069477006793,-0.28886242490261793,0.061270846519619226,-0.10297464299947023,0.1940228189341724,-0.39891901053488255,0.33966858638450503,-0.5020212326198816,-0.21030905842781067,-0.6916845617815852,-0.0076321507804095745,-0.3003899729810655,0.44613953586667776,-0.3978520566597581,-0.7145228609442711,0.30196742294356227,0.6916348626837134,0.7893448998220265,0.15106753166764975,0.06108056986704469,-0.01129779638722539,-0.18308016005903482,0.2547425180673599,-0.4095137300901115,0.5639175353571773,0.8788366559892893,0.4551464654505253,-0.9056915836408734,0.9962793309241533,-0.22529808804392815,0.6191645842045546,-0.6560935014858842,-0.1408591205254197,0.4974174560047686,-0.2429120596498251,-0.31474525667726994,0.3648015335202217,0.9420499377883971,-0.5641704620793462,0.16216660989448428,-0.7614611717872322,-0.5133661697618663,0.24465371994301677,0.47629449237138033,0.7607288276776671,0.14820453291758895,-0.6058743637986481,0.5106017617508769,-0.8729180512018502,0.6170641612261534,-0.26819060277193785,0.3534818054176867,0.8632580619305372,0.36354302428662777,-0.04134530760347843,0.668895916081965,0.4616577089764178,-0.1528273089788854,0.5236471053212881,0.5237886589020491,-0.043248772621154785,0.18048328254371881,0.11456617154181004,-0.715250329580158,0.011995593085885048,-0.860962734092027,-0.15206985687837005,0.1371551868505776,-0.7914176802150905,0.1343365372158587,-0.04769546212628484,-0.9973548999987543,0.8640525159426033,0.6830875263549387,-0.37046862207353115,-0.06350081646814942,-0.853726854082197,0.14428270561620593,-0.8169510755687952,-0.10700778104364872,-0.9117777589708567,-0.6581272087059915,-0.944325658492744,0.38947165897116065,-0.4992529838345945,-0.5783195178955793,0.07330200774595141,-0.5450778994709253,0.15692029567435384,0.3497780403122306,-0.6942242663353682,-0.6472918977960944,0.6933326059952378,0.45614450611174107,-0.6419694684445858,-0.6287619583308697,0.25416811741888523,0.31408831430599093,-0.8840400814078748,-0.10640374710783362,-0.5717658721841872,-0.04632989643141627,0.07129049161449075,-0.25942221470177174,0.7470711981877685,-0.9200829807668924,-0.22205499932169914,-0.2941271816380322,0.5420256587676704,-0.8828272228129208,0.5968714752234519,0.5376798869110644,-0.6531684659421444,-0.8324907934293151,0.25531398318707943,-0.19692849600687623,0.2540618497878313,-0.9498161943629384,-0.7148554343730211,0.8519878964871168,-0.2578025944530964,0.8947338704019785,0.9837857512757182,-0.2972813411615789,0.7403579019010067,0.13897929666563869,0.4971386049874127,-0.2604618677869439,0.09271466545760632,-0.371602438390255,0.6586723453365266,-0.051894211675971746,0.07242298545315862,0.7108130534179509,0.7109851893037558,-0.4999615093693137,0.2744125588797033,-0.054818641394376755,0.7362850760109723,-0.6976793687790632,0.7314671277999878,-0.05100732855498791,0.7859823713079095,-0.6972678420133889,-0.32678890414536,0.6763251265510917,0.47671489091590047,0.910039012786001,-0.31433470733463764,-0.11208295496180654,0.052777917589992285,-0.42476143874228,0.7148632826283574,0.3174258447252214,0.5138636017218232,-0.724570803809911,0.2968221604824066,-0.8156952890567482,0.5457416451536119,-0.8029563897289336,-0.7901017935946584,0.6640584748238325,0.2399937086738646,-0.49824820226058364,0.7734421179629862,0.9090558984316885,0.6790914074517787,-0.015304808504879475,-0.027669886127114296,-0.8606983334757388,0.48218467831611633,0.37836450850591063,0.008584131486713886,-0.17446691915392876,-0.7012066170573235,0.29610848939046264,-0.7325636688619852,-0.24318963289260864,-0.7059695576317608,-0.2193384226411581,0.7509069978259504,0.8163965595886111,0.2531556994654238,0.1627943366765976,0.6463293069973588,-0.2884470750577748,-0.5190085871145129,0.7202333165332675,0.6092038122005761,0.1310265650972724,-0.4299474637955427,-0.848116145003587,0.171013199724257,0.3556287745013833,-0.7943914895877242,-0.8081941604614258,-0.005619441624730825,-0.7680607624351978,0.14005318516865373,-0.794920904096216,-0.03192339139059186,-0.6727214241400361,-0.44070912804454565,0.9340135087259114,-0.5239974483847618,0.6506498297676444,0.6733588580973446,0.6746521983295679,-0.22178283287212253,0.8485542186535895,0.4765552394092083,-0.5483372332528234,0.5820653885602951,-0.3632632875815034,-0.6009891885332763,0.8408361645415425,0.805564927868545,0.07211831025779247,-0.6322421166114509,0.07445044163614511,-0.7582803452387452,0.6847117710858583,-0.8120692744851112,0.7706773262470961,-0.0023671570234000683,-0.47029010858386755,-0.03386349277570844,-0.8719925587065518,-0.6810548133216798,-0.21331357676535845,-0.6106630517169833,-0.45896942261606455,0.2761836238205433,0.9177661901339889,0.06591126089915633,-0.29737845342606306,0.8636511103250086,-0.9645706084556878,0.8351015374064445,-0.9683491517789662,0.4650724804960191,0.8883192297071218,0.7917301151901484,0.7477809302508831,0.9046364338137209,-0.5941080888733268,0.027523154858499765,0.6311371484771371,-0.3148190826177597,0.3293873439542949,-0.9009204367175698,-0.3582684160210192,-0.009827611967921257,0.5560588827356696,0.6404372793622315,-0.28520534792914987,0.8974823392927647,0.1507329698652029,0.8774226275272667,0.38608278427273035,0.054625578224658966,-0.027179833501577377,0.7957970346324146,0.633759475313127,0.9429677184671164,0.48244754783809185,-0.7258744253776968,0.6447947579436004,0.1603818153962493,0.40653687343001366,0.9070821343921125,0.7836179193109274,-0.45552682457491755,0.3942192131653428,0.52779675507918,0.9623627560213208,-0.21820923266932368,-0.4683134169317782,-0.22113976068794727,-0.002219588030129671,0.9217884088866413,0.8863043421879411,0.5098460712470114,-0.24292281735688448,0.8097589062526822,0.9460394149646163,-0.424720321316272,-0.7275286582298577,0.8423679620027542,0.2398203439079225,0.7309420467354357,-0.9609546852298081,-0.9906471548601985,0.9256896246224642,0.18964829063042998,-0.9268902139738202,0.26329009840264916,0.4736085035838187,0.9452408645302057,-0.6384579725563526,0.45182837825268507,0.3425884088501334,0.08701145881786942,-0.2724954104050994,-0.15919344685971737,-0.10174204083159566,0.11977805476635695,-0.6371099385432899,0.9655504934489727,0.03141322452574968,0.754522945266217,0.06839985586702824,-0.5286029535345733,-0.003190515097230673,0.2563616153784096,0.4125871080905199,-0.6691377982497215,-0.9595281165093184,-0.4852149956859648,0.34659667778760195,0.34769066888839006,-0.04188508866354823,-0.3207526938058436,0.6178798219189048,-0.5808513732627034,0.3988090632483363,0.6729066693224013,0.6787670571357012,-0.6607411596924067,-0.6051686056889594,-0.07314516976475716,-0.31242787651717663,0.9101963937282562,-0.8879246981814504,0.5104942605830729,-0.4781549787148833,0.7951312367804348,-0.8472188576124609,0.436493038199842,-0.9456680146977305,0.3618429019115865,0.2264399896375835,0.8322305381298065,-0.9924688595347106,-0.5717669194564223,0.13571276841685176,-0.4145211963914335,-0.34949414851143956,0.6048019058071077,0.5273946756497025,-0.08007169282063842,-0.41967980144545436,-0.3457655464299023,0.13383188098669052,0.0808353484608233,0.07358937384560704,0.8072172217071056,0.38898116583004594,-0.06968780886381865,0.6415789858438075,-0.7469251537695527,-0.576607421040535,0.2614245084114373,-0.7563273538835347,0.7996304943226278,-0.9695463855750859,-0.7205152260139585,0.009564456064254045,0.12246004212647676,-0.38523773243650794,0.5749181071296334,0.14093950018286705,0.8033280470408499,0.16804017452523112,-0.9867881680838764,0.5026020160876215,-0.5847238972783089,-0.5768859456293285,-0.8574460139498115,0.2067795409820974,0.08511979458853602,0.5877121044322848,0.7988635753281415,0.8414589772000909,-0.11711526801809669,-0.9535260288976133,0.37424897076562047,0.6591518763452768,-0.5171425375156105,-0.8625561790540814,0.9173711147159338,0.18256818875670433,0.8035005861893296,0.7864287807606161,0.97997020278126,0.36106246896088123,0.5449889814481139,0.7570106186904013,0.5409815637394786,0.012933673337101936,-0.9577272511087358,-0.1816716007888317,0.686183906160295,0.4847835726104677,0.5914453393779695,-0.5799888879992068,0.12890269327908754,-0.5282293483614922,-0.3660426973365247,-0.7690033903345466,-0.2387730167247355,-0.5605744472704828,-0.6728783119469881,-0.0914251385256648,0.5563706723041832,-0.5515441983006895,0.30805095937103033,-0.8554956279695034,-0.6662855120375752,-0.3575132489204407,0.5074862758629024,0.5709525626152754,0.9235676769167185,0.3376290015876293,0.6735265622846782,0.5753139671869576,-0.6474223453551531,-0.7538748122751713,0.7561981403268874,-0.7374221095815301,0.18463758658617735,0.8143903962336481,0.7376613216474652,-0.5982962693087757,-0.469669368583709,0.3268061797134578,-0.43037811992689967,0.059130695182830095,-0.09725569793954492,-0.7347974954172969,-0.5253845970146358,0.6241229590959847,-0.45160627411678433,0.3730892832390964,0.19521394511684775,0.09355262853205204,-0.0812703943811357,0.006314591970294714,-0.5871445289812982,0.1470988728106022,-0.41375903273001313,-0.6970548518002033,0.5228325687348843,0.52275255555287,-0.44541463162750006,0.33046369161456823,-0.6496859760954976,-0.5836801812984049,-0.3357457369565964,0.6782701760530472,-0.8855676050297916,-0.0319840582087636,0.4582467535510659,0.36896492820233107,0.29409659281373024,-0.4923868137411773,0.14307647570967674,-0.8473491230979562,-0.4167713141068816,0.022542778868228197,-0.506353089120239,0.8763966918922961,-0.9903494440950453,0.8883593557402492,-0.9066151948645711,0.26347899716347456,0.9784738621674478,-0.16979570174589753,0.38636899599805474,0.7956310585141182,0.5345491301268339,0.40803910652175546,0.13794957241043448,-0.023413244634866714,0.13641380798071623,-0.31336994422599673,-0.3545203167013824,-0.7652319795452058,-0.7216693130321801,-0.22827586391940713,0.8829084811732173,-0.5358174191787839,-0.20278659043833613,-0.48226367635652423,0.21799773024395108,-0.5457371165975928,-0.5211532139219344,0.6837337980978191,-0.4461547792889178,0.8462727144360542,0.37123154383152723,-0.6786035257391632,-0.7096286537125707,-0.7778278402984142,-0.9033715189434588,-0.05085559980943799,0.12901520309969783,0.45384272187948227,0.3442377997562289,-0.25035146018490195,0.43302949517965317,-0.6670347913168371,0.573080759961158,0.19285924267023802,-0.292728825006634,0.21404322376474738,-0.23435928160324693,-0.06221776036545634,-0.8778899451717734,-0.41827098838984966,0.8785405149683356,0.3579726107418537,0.1214681058190763,0.525444298516959,0.7739008027128875,0.9529450642876327,0.22722650319337845,-0.5884640016593039,-0.7548493938520551,0.886258511338383,-0.458423709962517,0.8441833718679845,0.8314882130362093,-0.08093271311372519,-0.4439963651821017,-0.8300961903296411,-0.5498183160088956,-0.05298756342381239,-0.19996328139677644,-0.36046932451426983,-0.13826692197471857,0.9537646784447134,-0.433442123234272,-0.5172100788913667,-0.6002098103053868,-0.812524170614779,0.7933300132863224,-0.17754431487992406,-0.24085299903526902,-0.023558691143989563,0.5132040688768029,-0.7145023522898555,0.22601307136937976,-0.7679877700284123,-0.4700648342259228,-0.09170261258259416,0.19870696729049087,-0.5835216757841408,0.7712840735912323,0.9314634650945663,-0.06945455865934491,0.7685065241530538,0.41408429108560085,-0.2908111484721303,0.19147615414112806,-0.10069109592586756,0.028877816163003445,0.8329000165686011,-0.5424184994772077,-0.7730592326261103,0.7642056089825928,0.8706372594460845,-0.5275089675560594,-0.4241861402988434,0.8488284647464752,-0.8179190461523831,-0.9937737002037466,-0.9866212564520538,-0.21690137824043632,0.06037220871075988,-0.8837749133817852,0.7277113902382553,-0.3248214051127434,0.9906548014841974,0.31269828975200653,0.36583765782415867,0.16433007502928376,0.4997790865600109,0.848129257094115,0.9652200383134186,-0.0011756722815334797,0.07310111867263913,-0.5508270668797195,-0.49477016273885965,-0.9409798067063093,-0.5597905833274126,-0.9007259863428771,0.8768574697896838,-0.9608048805966973,0.9570436673238873,0.1314002238214016,-0.08927543088793755,-0.2600804273970425,0.8857729258015752,-0.32302875630557537,-0.7073082108981907,0.9742784714326262,-0.39328693971037865,-0.6378129138611257,0.5119356047362089,-0.7100014206953347,-0.33828355092555285,-0.8957802527584136,-0.9177004010416567,0.22031602915376425,0.24501547822728753,0.29026265582069755,0.30732471961528063,-0.13132874900475144,0.9750574971549213,-0.8242243621498346,-0.20084194839000702,-0.6779492134228349,-0.509078259114176,0.7391318730078638,0.4160723746754229,-0.7856426737271249,-0.5666460758075118,-0.043482976499944925,0.81329674879089,-0.29171678237617016,0.774495888967067,-0.3135608220472932,0.8843681723810732,0.8405440854839981,0.26475953916087747,-0.66396812396124,0.9534675586037338,0.5495288595557213,0.5450671468861401,0.16333100525662303,-0.829868275206536,-0.07270494336262345,-0.13342133443802595,-0.5634509678930044,0.12015818804502487,0.5459318817593157,0.435102129355073,0.817493122536689,0.3086470072157681,-0.039518199395388365,-0.42894556326791644,0.13192594377323985,-0.3995317807421088,0.2425364521332085,0.21322124684229493,-0.4893157961778343,0.910818568430841,0.6818531677126884,-0.07189228245988488,-0.3200346529483795,0.47474537091329694,-0.035297113470733166,-0.526352858170867,0.36286887526512146,-0.6219801590777934,0.4499162589199841,-0.8736636741086841,0.40193548100069165,0.3854683800600469,-0.43660435266792774,-0.6645645261742175,0.24305233592167497,0.7926845271140337,0.3179528689943254,0.6697679837234318,0.7379951202310622,-0.45175015833228827,-0.6500659449957311,0.005325764883309603,-0.06188670499250293,-0.6944491090252995,-0.41024133609607816,0.47705763624981046,-0.25414616661146283,-0.4469167203642428,-0.8361525116488338,-0.4287297651171684,0.6502062506042421,-0.2870591515675187,-0.19046966265887022,-0.07283685123547912,-0.01351161627098918,-0.8752647573128343,-0.31560510490089655,0.3859820826910436,-0.22146238246932626,0.510905543807894,-0.9784548613242805,0.7395500550046563,-0.6311329966410995,-0.41413328936323524,-0.47241256246343255,0.6768023096956313,0.8691812921315432,0.5364920985884964,-0.08728547301143408,0.8551531401462853,-0.7263563587330282,0.5477788737043738,-0.6271461746655405,0.4395920601673424,0.20265466766431928,0.4334457954391837,-0.8133380506187677,0.1972098839469254,0.4781940523535013,0.3255165019072592,0.8049860605970025,0.672601880505681,-0.025972554460167885,0.6690936149097979,-0.6960676624439657,-0.39034771639853716,0.32528943149372935,-0.8732743794098496,0.4108747518621385,-0.5211731418967247,0.33492177119478583,0.36066722171381116,-0.08968490175902843,0.2754165828227997,-0.15413287840783596,0.6886425376869738,-0.3451211987994611,-0.7562923314981163,0.8524860497564077,-0.9778459025546908,-0.21866504522040486,-0.08673816407099366,-0.2573294620960951,-0.8129534483887255,-0.9843419534154236,-0.1299488157965243,0.8533619986847043,-0.7279707957059145,-0.7945601334795356,0.5745931952260435,0.4334707367233932,0.007051604799926281,0.4139887182973325,0.9190394547767937,0.793570214882493,-0.40787541633471847,0.8808693271130323,0.7717140782624483,0.5765383620746434,0.41845119977369905,-0.17382208025082946,-0.8429240854457021,-0.9057194110937417,0.8292257604189217,0.5938182892277837,-0.9089238061569631,0.26030757324770093,0.17707885336130857,0.6543138329870999,-0.5315662203356624,0.2689765142276883,-0.6599205499514937,-0.9609485869295895,-0.21916090045124292,-0.21672715060412884,-0.22451640106737614,-0.8609608365222812,0.010725339874625206,0.5076992986723781,-0.2695748917758465,-0.7001688764430583,-0.8606248330324888,0.9974491037428379,-0.9347644913941622,-0.029310935642570257,0.8767521125264466,-0.7259437660686672,0.05175515590235591,-0.9509483389556408,0.9148399098776281,-0.07258492149412632,0.8614840959198773,-0.09661484835669398,-0.7079963134601712,0.447311372961849,-0.6076793977990746,-0.17155172303318977,-0.09896007785573602,-0.20919027645140886,0.26996862702071667,0.5696059274487197,-0.4299909584224224,-0.12406116910278797,0.27392604434862733,0.9424688369035721,-0.11408269731327891,0.5137596256099641,0.8245726772584021,-0.9641525745391846,0.7688404726795852,-0.6735568619333208,0.49510599626228213,-0.8933222782798111,-0.41042801085859537,-0.09219552250579,-0.30821140110492706,-0.6438086316920817,-0.4547067633830011,0.30396404722705483,-0.6279080915264785,-0.17288655322045088,-0.9188726772554219,0.3880099677480757,0.877804699819535,-0.4591326154768467,-0.44934858940541744,-0.13549358863383532,0.9879697128199041,-0.7419114951044321,-0.34548391588032246,0.3679689788259566,-0.4829451651312411,-0.930141631513834,0.4900318826548755,0.9362049596384168,0.9254606226459146,-0.4435920906253159,0.3319705845788121,-0.6432341388426721,-0.7185698710381985,-0.7597767445258796,-0.8835562616586685,-0.7374894157983363,0.15862346859648824,0.282290309201926,-0.9678448000922799,-0.22913589654490352,0.4500960176810622,-0.993744078092277,-0.8785598566755652,-0.23267814191058278,0.12237920286133885,0.5955254542641342,0.8161301165819168,0.16022968897596002,-0.9741333862766623,-0.42498845094814897,-0.31050207978114486,-0.2905725440941751,-0.6143005862832069,0.870035910513252,0.4838210358284414,0.4395615989342332,-0.27248701453208923,0.5271781599149108,0.9068667222745717,-0.27960082655772567,-0.5057551213540137,-0.6056564045138657,-0.3088096082210541,0.4853222877718508,0.205641214735806,-0.5998514024540782,0.8113468624651432,-0.9568156669847667,-0.5246636946685612,-0.14248565165326,-0.5696348645724356,0.04778190283104777,0.3749492228962481,-0.7744230958633125,0.17672426579520106,-0.833196381572634,0.23000811086967587,-0.055855332873761654,-0.9738973174244165,0.24792712647467852,0.3886041189543903,0.5623600068502128,-0.8942409213632345,-0.5227569146081805,0.6951173190027475,-0.057408356573432684,0.3170858002267778,-0.8890311117284,0.4400778850540519,-0.653452584054321,0.23970088455826044,0.08594312192872167,-0.6411838047206402,-0.7788914274424314,-0.30846372386440635,-0.377768246922642,-0.9348208429291844,-0.17248232755810022,0.7143223937600851,-0.06035975134000182,0.6122496887110174,-0.3418356538750231,0.4259790787473321,0.9176351199857891,-0.11045486060902476,-0.21938947215676308,-0.6315242168493569,-0.5352966906502843,-0.5316179641522467,0.9945660904049873,-0.553695316426456,-0.9477954618632793,0.6501207165420055,-0.39726682705804706,-0.6380832241848111,0.033898981753736734,-0.4288961454294622,0.9030876248143613,-0.7481506010517478,0.41288767801597714,-0.8914410597644746,-0.7270769225433469,-0.7458636914379895,0.07535834470763803,0.5792198572307825,0.7824976006522775,0.36362467613071203,-0.8646361320279539,-0.3791934894397855,-0.24548622593283653,0.4969353722408414,-0.18736986722797155,-0.9633503723889589,-0.6531233936548233,-0.48299661418423057,0.07130619790405035,0.7906887345016003,-0.3156662988476455,-0.39151212153956294,-0.21631478844210505,0.7829737672582269,0.46935951337218285,0.5385916531085968,0.9259920842014253,0.8851804160512984,0.5079653509892523,-0.21427891170606017,0.8562206556089222,0.8267191052436829,-0.9859376228414476,-0.35644287383183837,-0.33700293162837625,0.22447075182572007,0.7524306774139404,0.7619131496176124,0.16835944866761565,0.24144944734871387,-0.4851918634958565,-0.16193676041439176,-0.6663806736469269,-0.09325767401605844,0.3923172834329307,0.35579255735501647,-0.5203284206800163,0.055485120974481106,0.13612007023766637,0.12861907808110118,0.7114011431112885,-0.8542545814998448,0.6731574069708586,-0.5507878987118602,-0.9619957655668259,-0.5563458055257797,0.8898734981194139,0.22713024960830808,0.1293722167611122,0.36416638316586614,0.7534552495926619,0.8665027497336268,-0.24451847979798913,0.483153872191906,-0.8674990935251117,-0.8864898132160306,0.03240572474896908,0.6361759253777564,-0.10685357358306646,0.8031255067326128,0.39041039533913136,0.46835665218532085,-0.26611679373309016,-0.28910965006798506,0.032224223017692566,-0.24209498101845384,0.3893758957274258,0.20022439444437623,-0.956057405564934,-0.6470119585283101,0.3168393177911639,-0.2894624932669103,0.17069567926228046,0.7318674414418638,-0.7430089493282139,0.9549838243983686,0.37719737086445093,0.46707251109182835,0.8737894562073052,-0.16028768010437489,0.6802097242325544,0.36455668043345213,-0.41178354527801275,0.4112027268856764,0.8153756777755916,-0.019550282508134842,0.9787999899126589,0.9566626939922571,0.6886641047894955,-0.6311491471715271,0.2100526075810194,-0.6272804834879935,0.41823258763179183,-0.07175294915214181,-0.2730549410916865,0.23541162675246596,0.8395269955508411,0.9710908089764416,0.9124966324307024,0.6562056471593678,-0.7070126449689269,0.1069833105430007,0.15403907606378198,0.34866978600621223,0.028555783443152905,-0.13989312574267387,-0.7785256905481219,-0.7730317730456591,0.23725231550633907,-0.9198323641903698,-0.7978468486107886,-0.7325154803693295,-0.72947090677917,0.0645699817687273,-0.36214251117780805,-0.1401006975211203,0.11145598627626896,-0.274725547991693,0.20819231402128935,-0.2280861851759255,-0.6269283341243863,0.8992806612513959,0.0027601872570812702,0.5931229470297694,-0.40597474994137883,0.03665924072265625,-0.7588946805335581,-0.8721346571110189,0.34874005801975727,-0.9723537070676684,-0.3591163121163845,0.01780033577233553,-0.1569836614653468,-0.588943867944181,-0.002469504252076149,0.7200801372528076,0.18032329995185137,-0.5903299232013524,0.5215124692767859,-0.08430849900469184,-0.9336312809027731,0.5505676190368831,-0.2346320329234004,-0.0735223051160574,0.8912215130403638,0.9380021211691201,0.9501123330555856,0.28359519550576806,0.1627458375878632,0.7640056312084198,-0.2538696061819792,0.9587888391688466,0.7451098379679024,-0.054921493865549564,-0.37848540116101503,0.0016177715733647346,0.7902109464630485,-0.7220662850886583,-0.5675180749967694,-0.12170711206272244,-0.6519099622964859,0.6332384315319359,0.14547281712293625,-0.34363144915550947,0.3993570161983371,-0.14834169996902347,-0.18916593492031097,-0.7800895064137876,-0.8454556590877473,0.015816694125533104,0.8426494430750608,-0.5933956285007298,-0.8709859852679074,0.3858379330486059,0.8259509010240436,0.9841666012071073,0.8389118732884526,0.4598394436761737,-0.6707685887813568,0.40189624950289726,-0.9207401084713638,-0.5192354745231569,-0.46085443207994103,0.6138990418985486,-0.6905750245787203,0.20036963373422623,-0.6509596849791706,-0.14718218334019184,0.5271738618612289,0.6924775992520154,-0.10873427940532565,-0.133165561594069,0.9193989001214504,-0.25503012305125594,-0.1466912697069347,-0.8316206354647875,-0.8795745428651571,-0.2685209531337023,-0.3635387481190264,0.15225459448993206,-0.3100830325856805,0.26406074222177267,-0.6725391168147326,-0.27203471725806594,-0.3553193835541606,0.7355449264869094,-0.2990639298222959,-0.058009423315525055,0.4071103394962847,-0.7716162446886301,-0.38065348006784916,0.4155410872772336,-0.2724039279855788,0.11940173013135791,-0.8549023740924895,0.500280948355794,0.07714526820927858,0.24372043693438172,-0.41533187171444297,-0.200144509319216,0.2336884099058807,-0.5016524367965758,0.21983748488128185,-0.7383520747534931,-0.48302158480510116,-0.7737184455618262,0.09525035182014108,-0.48550113942474127,0.20157759170979261,-0.2634582999162376,0.24026334146037698,0.28811918711289763,0.6045918026939034,-0.9623161386698484,0.2518189512193203,0.32732304045930505,0.24984379718080163,-0.639498284086585,-0.43168813874945045,0.08259684732183814,0.5630241609178483,-0.21693358244374394,0.2555807032622397,0.19611402647569776,-0.4975155908614397,-0.9871318899095058,0.1869911141693592,0.7691959114745259,0.332231015432626,-0.5360089871101081,-0.1588528584688902,-0.6524029364809394,-0.1958380094729364,0.88433433836326,-0.8355168192647398,-0.7386075402610004,0.6984347072429955,-0.9405384445562959,-0.8860295573249459,-0.8460034863092005,-0.1237094416283071,0.8488873518072069,-0.7634086017496884,-0.9439360345713794,0.6382317659445107,-0.49655370553955436,0.8050677999854088,-0.7351290374062955,-0.30759648559615016,0.10000596335157752,0.292747191619128,0.010988278314471245,0.7196876951493323,-0.8681943477131426,-0.9927432020194829,0.03315143473446369,0.9650714891031384,-0.6092971693724394,0.34320378629490733,0.6396532948128879,0.4883890333585441,0.2837236891500652,0.5072434623725712,0.11236172588542104,-0.9938879362307489,0.527846819255501,0.42791131464764476,-0.48756910720840096,0.9017842221073806,0.13466009963303804,-0.4044640650972724,-0.12640754645690322,0.02893253182992339,0.6212462494149804,0.18068609619513154,0.7950507709756494,0.061574936378747225,-0.5360179622657597,-0.5958790397271514,-0.9707007384859025,-0.8256003153510392,0.13742625480517745,0.09979006694629788,0.06852885847911239,0.16136900847777724,-0.7795680644921958,0.6412324705161154,-0.24008663231506944,0.848665529396385,-0.4049802399240434,0.9770927573554218,-0.16403335751965642,-0.22755307471379638,0.8082046154886484,-0.15756844030693173,-0.4349169246852398,0.11439212365075946,0.19052639929577708,0.7899294304661453,0.7552859871648252,-0.6872992031276226,-0.3358446559868753,-0.6880851434543729,-0.6733359755016863,-0.7175059630535543,-0.03220510529354215,-0.3575489819049835,-0.8417022437788546,-0.2201795931905508,0.3076456789858639,0.29614377254620194,-0.6184787228703499,0.5502708056010306,-0.563935985788703,-0.8426034403964877,0.35779603756964207,-0.9506529299542308,0.13899519946426153,-0.37474405858665705,0.9151594694703817,0.916360451374203,0.09310243465006351,-0.5867828303016722,0.4917086800560355,0.18993866723030806,0.3942324398085475,-0.8529053386300802,-0.32964045787230134,-0.23886671289801598,-0.5039133657701313,-0.9509832402691245,0.2660713940858841,-0.4455266520380974,-0.014385233633220196,0.4438699590973556,-0.6689473711885512,-0.09764124732464552,-0.002643261570483446,-0.12128718802705407,-0.713456948287785,-0.6738065779209137,-0.5029492327012122,0.0761117534711957,0.5251499051228166,-0.81500209774822,-0.6545197842642665,-0.1718144384212792,0.772725960239768,-0.875666509848088,0.7866750177927315,-0.6019311416894197,-0.8081756993196905,-0.2270778496749699,0.08585492894053459,0.9791635954752564,-0.03852829337120056,0.8002434931695461,-0.7298764134757221,-0.2277181725949049,0.552451950032264,0.65774199180305,0.00042047956958413124,-0.23132241889834404,-0.7837652629241347,0.9938370794989169,-0.9489412810653448,-0.5120014864951372,0.4475135854445398,-0.2731047528795898,-0.3403314524330199,0.9768552742898464,-0.14708612905815244,-0.3712212089449167,0.8691768357530236,0.48060284182429314,0.09496238641440868,0.5222102240659297,-0.9093988561071455,0.4157361453399062,-0.6734404065646231,-0.380206823348999,-0.6546732867136598,0.08415790414437652,0.8988798107020557,-0.29216013429686427,0.3086844994686544,0.41673290682956576,0.7017724555917084,0.42859719041734934,0.7776473159901798,-0.9357994683086872,0.41782845510169864,0.9307286124676466,-0.5691204364411533,-0.5164317660965025,0.279084550216794,-0.8214577692560852,0.2863793992437422,0.876647817902267,-0.0357709233649075,-0.44469266943633556,0.17179175047203898,0.5043183951638639,-0.5215264717116952,0.7205975605174899,0.48957287333905697,0.15750937210395932,0.6597462333738804,-0.21860632067546248,-0.8384501994587481,0.36802635760977864,0.8459560954943299,0.46255335211753845,0.5589027754031122,0.698298477102071,-0.11289020022377372,-0.9640655778348446,-0.7135931570082903,-0.7644185707904398,0.4633361850865185,-0.8284529130905867,-0.6509351641871035,-0.8491319417953491,0.3148757806047797,-0.8183146822266281,0.4673437331803143,-0.3520499696023762,0.6544787990860641,0.6535269692540169,0.5158147406764328,0.4683176060207188,0.1341478917747736,0.9727901993319392,0.3442493383772671,-0.6776888463646173,-0.538810976780951,-0.389877968467772,0.8568917452357709,0.6331418193876743,0.8418384552933276,0.6088515617884696,0.899204982444644,0.38363086339086294,0.3992268079891801,0.5248139011673629,0.30378040159121156,0.8370059244334698,-0.43732804246246815,0.3384482371620834,-0.013533922843635082,0.20907960692420602,-0.4712732173502445,0.9830271764658391,-0.302021911367774,-0.08979682484641671,-0.709305889904499,0.21889655804261565,-0.5803728648461401,-0.8727548811584711,-0.9635355547070503,-0.4475382170639932,0.00453539052978158,0.10554494289681315,0.49146647192537785,0.24821077613160014,-0.7558901305310428,0.7761941598728299,0.012670078314840794,0.42965357936918736,-0.8098521181382239,-0.25165005261078477,-0.7192175895906985,-0.4494097391143441,0.9003731836564839,0.8091092747636139,-0.2950338823720813,-0.9509963346645236,-0.741659932769835,0.5991202271543443,0.04361906135454774,0.6703599207103252,-0.595523611176759,0.7170263319276273,-0.8820514813996851,-0.9406498963944614,0.602634861599654,0.20293644443154335,0.2704878328368068,0.33885169541463256,-0.1967118475586176,0.7210230804048479,0.2094482476823032,0.7929025464691222,-0.988498211838305,0.1967571103014052,0.6806736905127764,0.32493290212005377,-0.2994783348403871,0.8982333913445473,-0.9007709845900536,0.8637875663116574,0.2644318602979183,0.6541705061681569,-0.1348253688775003,0.623866920825094,0.9702609442174435,-0.5153837371617556,-0.4685422694310546,0.7468608384951949,-0.08813130483031273,-0.03191718179732561,0.9233587654307485,-0.6731771640479565,-0.8847160716541111,0.5641557383351028,0.804080490488559,-0.39062586333602667,0.7151619396172464,0.10384271619841456,-0.8920832825824618,-0.49119321070611477,0.3577394401654601,-0.05729188723489642,0.8801607359200716,-0.21768760029226542,-0.7030814806930721,0.8072168929502368,-0.30163149256259203,-0.23604448745027184,-0.25768645852804184,0.2224828228354454,0.07513589458540082,-0.9911825144663453,-0.9335168860852718,0.0108332852832973,-0.3609214066527784,-0.35855781054124236,0.22452065953984857,0.24297839822247624,-0.5083689009770751,-0.8172232490032911,-0.8905408079735935,0.5965102543123066,-0.283909322693944,-0.1685800072737038,0.9152720691636205,0.09902991820126772,0.05746807577088475,0.501924179494381,-0.9174618814140558,-0.33001139387488365,0.13419715547934175,0.5557342767715454,0.4563584793359041,-0.9593576653860509,-0.6516814269125462,-0.8298435411415994,-0.9764138795435429,0.6992622911930084,-0.8600583551451564,0.3329726574011147,-0.6957379635423422,-0.4266597619280219,-0.5768667822703719,0.31677317759022117,-0.6239092661999166,0.34810636145994067,-0.021008767653256655,-0.8710482241585851,0.43189498875290155,-0.9284366862848401,0.32452524872496724,-0.6677922131493688,-0.5012395782396197,-0.9890190977603197,0.1454195063561201,0.16567554557695985,-0.7215074789710343,-0.7098134164698422,0.07365326443687081,0.30128322495147586,0.17564681684598327,-0.3766731577925384,-0.8225707379169762,-0.08518435014411807,0.39945044182240963,0.34012123197317123,-0.9819008810445666,-0.28529674001038074,-0.4111264212988317,0.966135632712394,0.08505394402891397,0.9564697942696512,0.848125483840704,0.10726674739271402,-0.37404139852151275,0.8572830138728023,-0.15437947446480393,0.9502801760099828,-0.8155751014128327,0.5986980432644486,0.0593204777687788,0.25035788118839264,0.8063020994886756,0.9645648035220802,0.4338641823269427,0.5870852246880531,0.18401915626600385,0.35201207362115383,-0.6440155720338225,-0.15269367909058928,-0.22739598341286182,-0.5517625850625336,-0.9344516405835748,0.35077511752024293,-0.7508505708537996,0.6757162264548242,-0.03206932544708252,0.006766920443624258,0.38000511610880494,0.23890504147857428,-0.703459364362061,0.1120347366668284,0.8267806963995099,0.37463946687057614,0.6793688368052244,-0.7924557491205633,0.04394020466133952,0.38976779766380787,0.8838586802594364,0.685005372390151,-0.4566554967314005,-0.5147305056452751,-0.28179321298375726,0.901487662922591,-0.985643885564059,-0.8433061949908733,-0.608306145761162,0.21876898128539324,0.6158221350051463,0.3654257282614708,0.44598866906017065,0.24413911998271942,0.1245655701495707,0.7573416545055807,-0.9139848165214062,-0.6535170651040971,-0.917724059894681,-0.907337156124413,0.3982844529673457,0.0665627927519381,0.3979051811620593,-0.452260781545192,0.09221721440553665,0.21091979928314686,0.3156539718620479,0.34190199384465814,-0.7156123975291848,0.4733008681796491,-0.22555655799806118,0.5870450134389102,-0.8536308356560767,0.9577357270754874,0.23755865870043635,-0.40178206749260426,-0.9823461514897645,-0.2052413118071854,0.7511313776485622,-0.3071963586844504,-0.6454380373470485,0.9726264760829508,0.9452627329155803,-0.38663495518267155,-0.030649108346551657,0.993442049715668,0.5938342344015837,0.38876639027148485,-0.23049474228173494,0.24462189385667443,-0.49910934595391154,0.8330429950729012,0.04181456286460161,0.18471089750528336,-0.6263495115563273,-0.4897190872579813,0.8203873080201447,0.2964660990983248,-0.2791065704077482,-0.015059805009514093,-0.5401454623788595,0.8639273764565587,-0.41031076991930604,0.8584991400130093,0.04518700484186411,0.4358050669543445,-0.30455665523186326,-0.2751512466929853,-0.08325088350102305,0.19893102208152413,0.4716161019168794,-0.13123241066932678,-0.9907725593075156,0.8983723167330027,-0.0689357714727521,-0.2175832805223763,-0.8992879665456712,-0.7411056444980204,-0.7875606273300946,0.7806973732076585,-0.8324726861901581,0.3344385898672044,0.6577409575693309,-0.8780491719953716,-0.45216386020183563,-0.014108269941061735,0.1735606542788446,0.6166625837795436,0.1443605530075729,-0.5386571977287531,0.7922390233725309,-0.12200372898951173,-0.8355802036821842,0.32768674567341805,-0.30057140719145536,0.25932745542377234,0.7866212907247245,-0.7328227972611785,0.2939998214133084,0.10456330608576536,0.7843505605123937,-0.984552551060915,0.20078881876543164,-0.6165854409337044,-0.09137353673577309,-0.8328528697602451,0.9209551392123103,-0.6611487362533808,-0.1112432163208723,-0.007332151290029287,0.20409651473164558,-0.32838444504886866,-0.817373932339251,0.6696390653960407,-0.8388615967705846,-0.8502340810373425,-0.35854319855570793,0.7814029389992356,-0.47901499597355723,-0.9650004305876791,-0.1937701585702598,-0.5115286172367632,0.9478267342783511,0.037823169492185116,-0.4524445217102766,-0.5633443295955658,0.8803826221264899,0.00915969768539071,-0.2910547046922147,0.9246406429447234,-0.38257842510938644,0.9412827659398317,0.7887143879197538,0.5347476094029844,0.13350031012669206,0.5516102868132293,0.8305380935780704,0.3199927667155862,-0.37075092224404216,0.888424719683826,-0.6191589701920748,0.928493935149163,0.7094148271717131,0.21638842672109604,0.2912879576906562,0.35899104038253427,0.7295938106253743,-0.6641285358928144,-0.4060269147157669,-0.5369809903204441,0.5148098012432456,0.19406076660379767,0.01558105368167162,0.0025278390385210514,-0.5291364542208612,0.3393542096018791,-0.17003461439162493,0.3979064649902284,-0.30169209744781256,-0.7470677634701133,-0.9010736341588199,-0.11532060895115137,0.08309941319748759,-0.7986719575710595,0.48645211663097143,0.7822742518037558,-0.304017539601773,0.3693687729537487,0.7936011184938252,0.873036662582308,-0.6528354897163808,0.6748057790100574,0.4712415379472077,-0.28001071233302355,0.05920786364004016,-0.9996366314589977,-0.4341248869895935,-0.7096661366522312,-0.3845007442869246,-0.5209832866676152,-0.6009507807902992,0.08238860499113798,0.6326934220269322,0.013040116056799889,0.3487025499343872,0.2309908987954259,0.22061141394078732,-0.4207443608902395,0.7746026832610369,0.7480194051750004,0.4155660877004266,0.965950237121433,0.894740856718272,0.8733914466574788,0.22096211276948452,-0.7543051545508206,0.26859297696501017,-0.24916715966537595,-0.6617521420121193,0.4979977644979954,-0.5987348672933877,-0.5138498288579285,-0.8868340691551566,0.2193283373489976,-0.5265598674304783,-0.6767966472543776,-0.6407034522853792,-0.35378070175647736,0.18154445616528392,-0.15735207684338093,-0.634126968216151,-0.8286856431514025,0.19513205206021667,-0.36942388536408544,0.9593646414577961,0.5696956077590585,-0.7428193455561996,0.4865385782904923,0.2495500291697681,0.14619329292327166,-0.9641526765190065,0.747822371777147,-0.06121369218453765,0.1491195266135037,-0.35336922481656075,0.985427307896316,-0.21271318709477782,-0.7056892118416727,-0.3430356499738991,-0.7987249745056033,-0.9426505216397345,0.7172675188630819,-0.5029070200398564,0.792658451013267,0.44673922797665,0.1677822694182396,-0.07300325762480497,-0.6372715975157917,0.9361535930074751,-0.032973230350762606,-0.8500340734608471,-0.8034286750480533,-0.9564276216551661,0.29707251489162445,0.25565164955332875,0.9551684642210603,-0.3072532210499048,0.822299734223634,0.2245127190835774,-0.4883546680212021,-0.6609808672219515,-0.554412973113358,0.683797494508326,-0.21973616164177656,0.6134883007034659,-0.23177377367392182,-0.9305784390307963,0.8132956163026392,-0.303868037648499,-0.6292639477178454,-0.2595892082899809,0.7470118002966046,0.6641524778679013,0.8469639671966434,0.4433893752284348,0.6602152148261666,0.43074103351682425,0.8934117839671671,-0.6830300404690206,0.5343264662660658,0.9599529285915196,-0.18188832513988018,-0.10009720409289002,0.09963700827211142,0.9492453136481345,0.9800484022125602,0.6616334533318877,-0.7051709094084799,0.5597425494343042,-0.3563769245520234,0.9542338834144175,-0.778816657140851,-0.9274573875591159,0.038876309990882874,0.3011703439988196,-0.31006360426545143,0.7556864861398935,-0.8027689927257597,-0.5667744125239551,-0.6106551946140826,0.09671103255823255,-0.42992077115923166,-0.3011515042744577,0.7902562976814806,-0.8827123637311161,0.716223313473165,0.28705702209845185,-0.27701513282954693,-0.1494696638546884,0.4055030602030456,-0.2666259128600359,0.5331149608828127,-0.13130239443853498,0.9440882061608136,0.4037921600975096,-0.8647965639829636,-0.47693281434476376,0.3320560441352427,0.7340353410691023,0.3126755622215569,-0.7607291052117944,0.25935455737635493,-0.44405227340757847,0.4367975452914834,-0.675323233474046,-0.5785892456769943,0.6200462565757334,0.3245786167681217,-0.2082222606986761,-0.34296619798988104,-0.3908248748630285,-0.7495164913125336,0.21206954307854176,-0.1366971032693982,-0.08455923432484269,-0.8718400127254426,-0.4871022878214717,0.004157755058258772,0.6091326442547143,-0.4690274349413812,0.7246791827492416,-0.22921944828704,0.7221725219860673,0.5356451808474958,-0.6267052609473467,-0.8888415792025626,-0.07388434698805213,0.05922115361317992,-0.7468734499998391,0.42643623799085617,-0.352018351200968,0.9719483354128897,0.6590521722100675,0.5854927911423147,0.020881710574030876,0.4015007195994258,0.04024858959019184,0.10249755950644612,-0.5122855100780725,-0.34042618703097105,-0.7272019432857633,-0.4431228516623378,0.35125537402927876,0.26664262916892767,0.8200135291554034,-0.37455340940505266,0.13755560480058193,-0.3394833793863654,-0.8980222516693175,-0.9705145228654146,0.4214118244126439,0.0996766840107739,0.3945195931009948,-0.9854701720178127,0.6364804892800748,0.21367939049378037,0.5955600216984749,-0.8991586486808956,0.5239726849831641,-0.4598762057721615,0.24116201233118773,0.5456673442386091,0.09064468042925,-0.6571206012740731,-0.4945522453635931,0.37962575629353523,0.46915361704304814,0.31862956285476685,-0.5341278729029,0.4891594718210399,-0.6689127674326301,-0.9012742671184242,0.6160396905615926,0.8547027041204274,-0.7521731206215918,0.47190353786572814,-0.2735156458802521,0.9317605649121106,-0.16953979339450598,0.630225779954344,-0.4727104124613106,-0.822980111464858,0.635958518832922,-0.0625862292945385,0.8573673036880791,0.9204361666925251,0.9760574540123343,0.3408677279949188,0.8349057710729539,0.6067625414580107,-0.2495487337000668,-0.13624918414279819,0.16103543434292078,0.00844291364774108,0.6897930530831218,-0.06507613090798259,-0.9126409012824297,-0.39900045515969396,-0.02032290631905198,-0.8164919796399772,-0.8212110064923763,0.9887609160505235,0.25058797700330615,-0.6828152905218303,0.5608525020070374,-0.806190874427557,-0.582106058485806,0.0938978330232203,-0.6525400006212294,0.038526789750903845,0.8735900186002254,0.3141906252130866,-0.26210947008803487,-0.39413587050512433,0.5433796481229365,0.8221169598400593,0.36067052418366075,-0.09767803642898798,-0.6791910813190043,-0.8458460252732038,-0.8888333509676158,-0.2590088238939643,0.2606787639670074,-0.41908674500882626,-0.37593880482017994,-0.36774798203259706,-0.99623067304492,-0.6457202779129148,0.10809461772441864,-0.5717931692488492,-0.24709470523521304,-0.21378255635499954,-0.14217794314026833,-0.37406039191409945,0.2530803228728473,0.029685955494642258,-0.8301056241616607,0.19003788474947214,-0.044945838395506144,0.6882959948852658,0.4074449739418924,0.2292030449025333,0.7169007663615048,0.6138768987730145,0.5107055688276887,-0.5659082448109984,0.9341581873595715,0.08286716043949127,-0.5639090472832322,-0.9050381425768137,-0.569288844242692,-0.2647386658936739,-0.4313708087429404,-0.5705573135055602,0.2775009283795953,0.3683158103376627,-0.14652602700516582,0.9254023651592433,0.15389200719073415,-0.4550235867500305,-0.7942533819004893,-0.8566721663810313,0.7894793539308012,0.7798995026387274,0.380204557441175,0.1555334753356874,0.8280341881327331,0.1922034383751452,-0.5084610437043011,0.13247545808553696,0.4209300596266985,-0.9658275321125984,-0.49927322333678603,0.8306935774162412,0.5221353201195598,0.005735253915190697,0.7153225019574165,0.46761814318597317,0.18543868092820048,-0.4406953095458448,-0.7271590046584606,-0.3391996785067022,-0.46235514525324106,-0.7626564200036228,0.09295027330517769,-0.517222517170012,0.30890736309811473,-0.09202881436794996,-0.45354916295036674,0.49307873379439116,0.22161978343501687,-0.18807163694873452,-0.13368524704128504,0.7538369349204004,-0.7779814167879522,0.5071443999186158,0.7524053044617176,0.6946360408328474,0.9173857495188713,0.5465164268389344,0.6577440854161978,0.26106414711102843,-0.44062725780531764,0.7054987819865346,-0.21968820737674832,0.2811605604365468,-0.8045430057682097,-0.7235740544274449,-0.3058486436493695,-0.3351062433794141,-0.9608614118769765,0.9693926749750972,-0.512548599857837,-0.05778330052271485,-0.3027167464606464,0.48556549148634076,0.3958501862362027,-0.5133473323658109,0.4323262204416096,-0.7655086852610111,-0.02490517683327198,0.2123068505898118,-0.5564463585615158,-0.6235800795257092,-0.8160891481675208,-0.44906249130144715,-0.8157749469392002,-0.8865455440245569,-0.4949051118455827,0.23273770418018103,0.07032220903784037,-0.015467396005988121,0.41660329094156623,0.9424609658308327,0.17505421908572316,-0.8106748457066715,-0.004898253362625837,-0.9618808422237635,0.2921874839812517,0.11778103187680244,-0.7854430563747883,-0.1974107618443668,0.24418213637545705,0.5424711345694959,-0.37179289292544127,0.24460044596344233,0.9149932879954576,-0.7024283548817039,0.23893923731520772,-0.9240138879977167,-0.713142626453191,-0.6409944551996887,-0.9112852457910776,0.2625698009505868,0.1752177425660193,0.15367771219462156,0.18348519457504153,-0.8294274909421802,0.8072078884579241,-0.007433700375258923,0.8365397984161973,-0.5758415074087679,0.9388716733083129,0.4778651921078563,-0.3112679682672024,-0.8956396179273725,0.48198597645387053,0.9168937248177826,-0.1690838849171996,-0.5739987906999886,-0.0011713644489645958,-0.12511536804959178,0.782600627746433,-0.5316712763160467,0.788034806959331,0.1161976745352149,-0.22985181910917163,-0.9770487025380135,-0.24220728455111384,0.5322132622823119,0.6677227960899472,-0.2236865689046681,0.539368016179651,-0.8534093610942364,-0.9630807307548821,0.03663133783265948,0.1760055972263217,-0.0033242437057197094,-0.3165410803630948,0.437763184774667,0.6855909158475697,0.09367095679044724,0.2707139956764877,0.11436792323365808,-0.14757771510630846,-0.8893274487927556,0.32949397386983037,0.3417394054122269,0.5231717093847692,0.9823744492605329,0.059856944251805544,-0.16163156228139997,0.9385420898906887,0.3513588192872703,0.7597949453629553,-0.08458332810550928,-0.009881675709038973,0.1882065525278449,0.86807970283553,0.09665822517126799,0.45410675602033734,0.5810175044462085,0.26737703243270516,-0.33183536026626825,-0.6340706534683704,0.7626031874679029,0.03126309113577008,-0.5201498251408339,0.2625841377303004,0.4317813911475241,0.7898072963580489,-0.13178538531064987,-0.7638660753145814,0.5734664960764349,0.2370445616543293,0.4814380295574665,-0.9726123083382845,0.8767737206071615,-0.966613323893398,-0.06509934784844518,-0.199614810757339,-0.56651073647663,0.7569609400816262,0.39693759148940444,-0.09392844326794147,-0.7295835553668439,0.9909335649572313,0.13819472771137953,0.2787445308640599,-0.21135648805648088,0.5544840265065432,-0.6018847362138331,0.7864950643852353,-0.4494158527813852,0.7463040403090417,-0.5362059148028493,-0.271247994620353,-0.028061849996447563,-0.5637457058764994,0.721213755197823,-0.8741102572530508,0.6088785664178431,-0.5519348187372088,0.9214444891549647,-0.4457549354992807,-0.5236468897201121,-0.8706885213032365,0.2883547986857593,-0.11916547222062945,-0.6373254642821848,0.24035683600232005,-0.446405827999115,-0.278130239341408,-0.3134841211140156,0.8540183906443417,0.01314277620986104,0.5355680361390114,0.376703392714262,-0.34804176818579435,-0.5815833951346576,0.8870415277779102,-0.655826750677079,0.8713409923948348,0.9479634133167565,0.9111667997203767,0.12985185952857137,-0.9692252846434712,-0.3148319674655795,-0.2944490616209805,0.3066781866364181,-0.20023572212085128,0.8285312899388373,-0.8919775923714042,0.40035205613821745,-0.36784528195858,0.7666177516803145,0.7005103258416057,-0.8131421580910683,-0.7222422752529383,0.9226629044860601,-0.5345720946788788,0.060323606710880995,-0.8918217634782195,-0.16733498591929674,0.15615332778543234,0.06491232989355922,-0.2947800667025149,0.5669768680818379,-0.5864225337281823,-0.020302610471844673,-0.8978225425817072,0.20591164892539382,0.8707223464734852,0.49505463847890496,-0.27114282501861453,0.06040393654257059,-0.5532469898462296,0.3701913929544389,0.1866113319993019,-0.11486812820658088,0.07154453732073307,-0.5636890232563019,0.1138256941922009,0.008727360516786575,0.38811231357976794,-0.3991413488984108,0.4293551677837968,-0.7596650533378124,0.16887846030294895,-0.12547477427870035,-0.04394617397338152,0.31297207716852427,0.9879871122539043,0.5851614498533309,-0.8288780632428825,0.8519700556062162,-0.7220236831344664,-0.4082461055368185,0.4334835894405842,-0.5612385915592313,-0.6201290399767458,-0.1134898136369884,0.5212681661359966,-0.6375574208796024,0.38314274325966835,-0.8314582286402583,0.39472392899915576,0.2584373885765672,0.5133820581249893,0.7576027205213904,0.8743949057534337,-0.12296187737956643,-0.43997219298034906,0.17428763769567013,0.22330634854733944,0.5523252175189555,0.8331795721314847,0.4268097630701959,0.5349796791560948,0.5349570619873703,0.1243020067922771,-0.07208801293745637,-0.26872274838387966,0.2367853820323944,0.45439037727192044,-0.40206088265404105,0.6438496145419776,-0.7236372609622777,-0.8694755183532834,-0.45676358696073294,0.3742126449942589,-0.8303784034214914,0.2880096361041069,0.1639797817915678,0.8190939938649535,0.3412192864343524,-0.23954054713249207,0.6729284576140344,-0.7918168492615223,-0.39418492559343576,-0.1353834685869515,0.8680028202943504,0.4396238215267658,-0.14245912665501237,0.30996798258274794,-0.9276795759797096,-0.2864639041945338,0.42749008582904935,0.6729341964237392,-0.10473008407279849,0.9995945016853511,-0.522724668495357,0.26341166300699115,0.04117791587486863,0.8195014926604927,0.16853068303316832,0.9565504821948707,-0.2941078203730285,-0.13138584280386567,0.260808227583766,-0.8915099650621414,-0.011467132717370987,0.1337705128826201,-0.06402492383494973,0.9865204710513353,0.5160765750333667,-0.30303639359772205,-0.4745710790157318,0.8054001508280635,0.01735093630850315,-0.48637706181034446,0.36983240069821477,-0.9119423520751297,-0.04831970203667879,-0.5887454408220947,0.38183191465213895,0.6915507195517421,0.6102204541675746,0.7626785142347217,-0.6061000637710094,0.6000116965733469,-0.910962357185781,0.6382475602440536,-0.3963308217935264,-0.6529407491907477,-0.3549067135900259,0.18708780268207192,-0.9793174350634217,0.9229986215941608,-0.11802291870117188,0.573706500697881,-0.05224250489845872,0.735606178175658,-0.46955699985846877,-0.35632477095350623,-0.1023113951086998,-0.782680394127965,-0.6483044247142971,-0.11370050441473722,-0.47445962065830827,0.2945542107336223,-0.5854585003107786,-0.9656528043560684,0.022164862602949142,-0.40120476577430964,0.08968455763533711,-0.11204369738698006,-0.6199775161221623,-0.1124862302094698,0.5144373802468181,0.3722262172959745,0.6095574228093028,0.6091297250241041,0.11254038382321596,0.4342028056271374,-0.2467631008476019,0.6217505093663931,0.641148020979017,0.27249649027362466,0.9025560510344803,-0.5630329712294042,-0.611886172555387,-0.9904238334856927,0.5694778482429683,-0.9486543121747673,0.042090078350156546,0.8377928035333753,-0.023011215962469578,-0.3108179266564548,-0.0680642151273787,-0.3629661765880883,-0.5072015034966171,-0.08109291177242994,0.8262362401001155,-0.7337332335300744,0.43791183503344655,0.488557250238955,0.805994279216975,-0.13301642145961523,-0.006361922714859247,0.7487820954993367,0.804325407370925,0.7206692975014448,0.11863643815740943,-0.5053717447444797,-0.866511938162148,0.4167081452906132,0.24458837416023016,0.6109712542966008,0.7740737795829773,0.5546943438239396,-0.6421688818372786,-0.4386492264457047,0.6018535951152444,-0.10262815980240703,0.9069027937948704,-0.7758600739762187,0.7244174061343074,0.3874379862099886,0.9346097484230995,0.3057277863845229,0.03812533337622881,-0.4585365359671414,0.312580325640738,0.7331944913603365,0.7457048548385501,0.18972261063754559,-0.2646745587699115,-0.0665553449653089,-0.4974679355509579,-0.05481729516759515,-0.010485819540917873,0.8912914353422821,-0.8480052002705634,-0.7174864285625517,0.10058424156159163,-0.25935578998178244,-0.38679713709279895,-0.1308433902449906,-0.38101346557959914,-0.8572981199249625,-0.23758273664861917,-0.8705537202768028,0.04042529547587037,0.3366215010173619,0.903771550860256,-0.5593172772787511,-0.11226666253060102,-0.2388604087755084,-0.14690183848142624,-0.1450649444013834,0.0724461767822504,-0.0010931477881968021,-0.832662008702755,0.29015530459582806,-0.5785943944938481,0.28541208105161786,-0.6676488625817001,0.12418775027617812,-0.8275875221006572,0.23696702253073454,-0.9544196650385857,0.6958781303837895,0.340165329631418,0.7375961006619036,0.1268455288372934,-0.8563978485763073,-0.8422470819205046,-0.41297945426777005,-0.8065074859187007,0.11929179076105356,-0.13083038665354252,-0.5381160420365632,-0.5068548386916518,-0.35098502319306135,0.7981603164225817,-0.7809990397654474,-0.658782301004976,0.8285853276029229,-0.6289069545455277,0.45066917687654495,0.8905877568759024,0.6314996955916286,0.3109506256878376,0.628382224123925,-0.4106169515289366,-0.2801339575089514,0.9229025351814926,-0.7833919851109385,0.012767417822033167,-0.7045952714979649,-0.9695152589119971,-0.6730222851037979,-0.8115596105344594,0.5913752736523747,0.23371458472684026,0.677933800034225,0.05361898196861148,-0.9238230059854686,0.3164953412488103,0.2898795469664037,-0.25092522613704205,-0.6034926590509713,-0.03408516850322485,-0.5754430028609931,0.6329110977239907,0.0549453841522336,-0.7551991050131619,0.5969300158321857,0.6868049302138388,-0.3245389452204108,0.9360708412714303,-0.9255166943185031,-0.9179173619486392,0.14856028836220503,-0.5139625873416662,0.8440433819778264,-0.0056083425879478455,-0.12876104470342398,0.8249219642020762,0.4158085775561631,-0.27361257607117295,0.20963043114170432,-0.2134195575490594,0.9833504585549235,-0.7258435967378318,0.07777026761323214,-0.671666347887367,0.7622294402681291,0.28368462482467294,0.14270106237381697,-0.40813910448923707,-0.5025165602564812,0.7847273657098413,-0.5034550270065665,0.49724309192970395,0.17795340903103352,0.32582748075947165,-0.07023524632677436,-0.3727742852643132,-0.8879678971134126,-0.9489242215640843,-0.59917236212641,0.240399903152138,-0.7322002407163382,-0.041721866466104984,-0.5552931162528694,0.8297093128785491,0.27946341363713145,-0.5668303528800607,-0.315134662669152,0.23071445478126407,0.8510472127236426,0.11679542623460293,-0.6010905955918133,-0.9831019127741456,-0.8946460443548858,-0.8071976620703936,0.1878059096634388,0.2786229238845408,-0.8739305729977787,0.16218138672411442,-0.22092173341661692,0.8084259731695056,-0.7503527384251356,0.650339163839817,0.8967355000786483,0.9579550372436643,0.210628901142627,0.2895908923819661,0.6440261090174317,-0.04635459836572409,-0.907233948353678,0.6774250436574221,-0.8768756352365017,-0.5541794328019023,0.5335698546841741,0.4225308019667864,-0.04289965005591512,0.6775647522881627,0.7402537995949388,0.3464331175200641,-0.3097571092657745,0.03147023497149348,-0.5009985296055675,0.706732913851738,0.43076829239726067,-0.06575944181531668,0.4890887374058366,0.215134690515697,0.214538280852139,0.6884454688988626,-0.9774459996260703,0.37911077262833714,0.9960777992382646,0.9042149437591434,-0.4652477470226586,-0.8438260713592172,-0.7653544824570417,0.32908289367333055,-0.6503608929924667,0.9918784666806459,0.3380417004227638,0.2013264331035316,0.6603179341182113,0.6337805050425231,0.9492336972616613,0.7731322520412505,0.572173795197159,-0.44191160844638944,0.24033341370522976,0.41226460924372077,0.020643146242946386,-0.7853543618693948,-0.07719938457012177,-0.5665373732335865,0.5547159598208964,-0.1003874046728015,-0.7192953862249851,0.9140531104058027,0.8825868414714932,0.32935013994574547,0.21349280048161745,0.12305418308824301,-0.5697460123337805,-0.02452850015833974,0.06537464680150151,-0.7066206345334649,-0.6883728746324778,0.5540189165621996,-0.9182885815389454,0.5348397283814847,-0.38737953500822186,0.6289873463101685,-0.5517694391310215,0.6327711474150419,0.4662299323827028,-0.08902322174981236,-0.3855724553577602,-0.46001744642853737,0.32409492041915655,-0.09397967625409365,-0.48005383322015405,0.33609139872714877,0.5686241290532053,0.9436239842325449,-0.25422643031924963,-0.438110189512372,0.5042555658146739,0.3120925296097994,-0.05561066744849086,-0.05405639251694083,-0.6072993222624063,-0.17417851742357016,-0.8159820069558918,0.401742750313133,-0.06433254666626453,0.19359760219231248,0.6638171426020563,-0.015644621104002,-0.16987226298078895,-0.8864247724413872,-0.05350765632465482,0.6075670756399632,0.41296919994056225,0.6696258308365941,-0.17598078213632107,-0.4888221980072558,-0.2033170242793858,-0.5210440657101572,0.7840683269314468,-0.2104678307659924,0.8246175460517406,0.4331820160150528,0.3415888734161854,0.6791123175062239,0.6035622451454401,-0.228906090836972,0.2575355311855674,-0.22073567053303123,-0.6818079710938036,0.6360681457445025,-0.12230705376714468,0.06775243300944567,-0.44804381718859076,-0.5894379946403205,-0.23745736852288246,-0.7039438583888113,0.6435744981281459,-0.27035741694271564,0.17103814333677292,0.315607737749815,0.30721081513911486,-0.5150471460074186,0.15476885112002492,-0.34135325625538826,0.11161826178431511,-0.9849132806994021,0.2912955479696393,-0.30865728156641126,0.9366636937484145,0.5983504839241505,-0.9367750869132578,-0.5589527999982238,0.16033712262287736,0.0340285524725914,-0.8993889410048723,0.9528305102139711,0.24619262525811791,-0.21295177517458797,-0.33258032985031605,-0.9701860239729285,0.025062397588044405,0.29205100517719984,0.762408615089953,0.9691005735658109,-0.2519353162497282,-0.9408243508078158,0.4726292695850134,0.6015441124327481,-0.8069838704541326,-0.16851620096713305,0.6937082363292575,0.4353644400835037,0.3303325492888689,-0.8745995233766735,-0.7970032370649278,-0.5757480277679861,-0.11753768939524889,-0.5927791302092373,-0.7959570004604757,0.06307329330593348,-0.9603716880083084,-0.979644319973886,0.9981277561746538,0.3026822288520634,0.9954610364511609,0.5495693981647491,-0.3217486930079758,-0.6600419040769339,0.9514111117459834,0.4662084123119712,0.4837415716610849,-0.9716740823350847,-0.7502068607136607,-0.14431335916742682,0.6871285736560822,-0.2568613919429481,0.7656267243437469,0.11650081351399422,-0.36742907715961337,0.2922049383632839,0.8864542157389224,0.3521022223867476,0.28390683978796005,-0.8975648325867951,0.6708549819886684,0.13243128918111324,0.9296175763010979,-0.10270690126344562,0.18380257906392217,-0.8283330928534269,0.7982788444496691,0.20658183004707098,0.2392279040068388,-0.2364606261253357,-0.11022953921929002,0.27378028398379683,0.03492346638813615,0.48290283884853125,-0.06908148340880871,0.968371429014951,0.1059408294968307,-0.6310025174170732,0.6054185386747122,-0.08405840722844005,0.17868187138810754,0.6938695241697133,0.32773280795663595,-0.008202435914427042,0.8033908735960722,0.21213347651064396,0.9163927179761231,-0.24419635813683271,-0.9271605075336993,-0.4026709711179137,-0.4705174556002021,0.4083025944419205,0.3287249570712447,0.9521660436876118,-0.8965531848371029,-0.271744747646153,0.8177364272996783,-0.5855610887520015,-0.44614157686010003,0.401465498842299,-0.7543951370753348,-0.40243049152195454,-0.10453201737254858,0.7641598670743406,0.11555078579112887,0.02472935477271676,0.49305582139641047,-0.4909181436523795,-0.3904986996203661,-0.8973118364810944,-0.5514230476692319,0.5568910525180399,0.1537231346592307,0.43840578151866794,-0.6619332605041564,-0.6619968917220831,0.6126217287965119,0.380185866728425,-0.698917050845921,-0.5071473442949355,0.5732836253009737,0.03840647963806987,0.30650408333167434,0.6592446248978376,0.5818754155188799,-0.38791291788220406,0.15437607280910015,-0.6364404461346567,-0.4746951409615576,-0.24758098693564534,-0.26347024785354733,-0.5819661361165345,-0.4605769640766084,0.3320694542489946,-0.9191006310284138,0.6201322018168867,-0.4195259679108858,0.9120143605396152,-0.646807448938489,0.251542039681226,0.14337935065850616,0.7006874233484268,0.13940379256382585,0.2586998166516423,-0.7624768014065921,0.2530225720256567,-0.12750267935916781,-0.26588218100368977,-0.3156169564463198,-0.02905300911515951,-0.5553919360972941,-0.5937922624871135,0.4983879807405174,0.010047262068837881,-0.21374306036159396,0.5234489412978292,0.3611768838018179,-0.4524278389289975,0.9242861354723573,-0.3244333169423044,0.520574539899826,-0.9803695590235293,0.7507779570296407,-0.32902118004858494,-0.8107265294529498,0.04289705399423838,0.5912237884476781,-0.7923157005570829,0.1815857319161296,0.6817656001076102,-0.5220647775568068,0.733143731020391,0.8328878358006477,-0.10612460551783442,0.3973146225325763,-0.5578663623891771,0.44375812262296677,0.8763400712050498,0.8770892638713121,-0.6503750090487301,-0.49241545610129833,0.1204774877987802,0.6078119645826519,0.004343679640442133,0.05658176774159074,-0.19232971407473087,-0.9916945877484977,0.9098945148289204,0.9127049469389021,0.5096607487648726,0.06578069040551782,0.8720675157383084,0.2052859659306705,0.6560896076261997,-0.2685816357843578,0.8193498719483614,0.7975487913936377,-0.5530861606821418,0.4176252596080303,0.6802126253023744,0.03725019283592701,0.189796295017004,-0.2260028412565589,0.6801516469568014,0.4365650867111981,0.42332757730036974,-0.41332704527303576,0.6193991014733911,0.02185902278870344,-0.3355545559898019,-0.5686269560828805,0.44420294370502234,-0.20963325863704085,-0.46075612772256136,-0.2389441686682403,-0.8470446774736047,-0.8059192965738475,-0.3525496511720121,0.013874988071620464,0.5701157269068062,-0.7691237819381058,0.2656029546633363,-0.21250073378905654,-0.47285765828564763,-0.13116392772644758,-0.9723000815138221,0.6412586229853332,0.5758624421432614,0.8209981466643512,-0.1593395615927875,0.47720541851595044,-0.46531816897913814,-0.2371284100227058,-0.5903282091021538,0.08698259340599179,-0.0836321753449738,0.1209831484593451,-0.34738834435120225,-0.8950110822916031,0.14242586959153414,0.5607324079610407,-0.655082824639976,0.7264667516574264,0.888985148165375,0.08384948503226042,0.10224171029403806,0.29576285602524877,-0.7984770475886762,0.6209118021652102,0.9416247392073274,0.583783763460815,0.5209506205283105,-0.8686322867870331,-0.9781083576381207,-0.7759580039419234,0.5264127026312053,0.32193942833691835,0.5793009442277253,0.7522082617506385,-0.04033183725550771,-0.9306452493183315,-0.8054666318930686,0.47295652981847525,-0.1355110527947545,0.6225720006041229,0.31268528709188104,-0.7946985107846558,0.4543738728389144,-0.6444250945933163,-0.5288155525922775,0.2585208839736879,-0.9422745215706527,-0.34334899578243494,0.8033730732277036,0.6086589354090393,-0.7974562235176563,0.020765759982168674,-0.13359200302511454,-0.9827849320136011,-0.4022514056414366,-0.029195205308496952,0.37717601004987955,0.32283370569348335,-0.4170881547033787,-0.5388761628419161,-0.020807217806577682,-0.4978868751786649,0.5690625491552055,-0.5602096458896995,0.7309778351336718,0.1973562203347683,0.10746495518833399,0.40035156020894647,-0.5636065979488194,0.9574350919574499,-0.5812705648131669,-0.1144311660900712,0.18267722660675645,0.7940515098161995,-0.3115963735617697,0.9777650702744722,-0.49705968191847205,0.9807517090812325,-0.8149711564183235,0.12672607647255063,0.6206037290394306,0.1879311501979828,0.10800660913810134,-0.4283039756119251,-0.376844166778028,0.969052198342979,-0.8123493986204267,-0.5421716375276446,-0.8229156397283077,-0.05170526262372732,0.4190579545684159,0.2932526362128556,-0.49713570391759276,0.37927647260949016,-0.6195620405487716,0.39479843247681856,0.7695724279619753,0.3952366653829813,-0.5801449175924063,0.21563441073521972,0.040992327500134706,-0.6447768793441355,0.750860657542944,0.5098242298699915,-0.3712663077749312,0.17510899668559432,-0.1313201724551618,0.6422523874789476,-0.7894915034994483,0.6500259768217802,-0.29110367270186543,0.646893847733736,-0.8461820441298187,-0.05704707279801369,0.9524337411858141,0.34096548799425364,-0.025729436427354813,0.915953547693789,-0.5474537229165435,0.13120832294225693,0.5948099666275084,0.9434722661972046,0.05020932853221893,0.25272131664678454,-0.03810036228969693,0.5599996359087527,0.27322058472782373,0.33610358741134405,0.24829295184463263,0.5612026141025126,0.6589701417833567,0.40485315257683396,-0.7835873072035611,-0.9459622832946479,-0.27547884080559015,-0.6184811629354954,0.49244593922048807,-0.24484486738219857,0.5347247528843582,-0.4196787690743804,-0.46443595830351114,-0.9245363962836564,0.23107693577185273,0.10108189005404711,-0.5469763879664242,0.9812382268719375,-0.8638351447880268,0.9816530183888972,-0.6472519775852561,-0.5898950244300067,0.9311693380586803,-0.7347758910618722,-0.45438467478379607,-0.1499707391485572,-0.5745219909586012,0.3794459435157478,0.3934074444696307,0.4708574446849525,-0.24169547948986292,0.6075154929421842,0.9799079443328083,0.5928734545595944,-0.8729140688665211,0.6770116034895182,0.8134436416439712,0.5591019308194518,0.5984239899553359,0.07185909058898687,0.5859954743646085,0.7736181425862014,0.915443570818752,0.7918020142242312,-0.9053371278569102,-0.48893422866240144,0.6000856142491102,-0.01595564093440771,-0.2600259683094919,0.09821904357522726,0.13185644149780273,0.5089951092377305,-0.8105384227819741,-0.6329657468013465,0.018261587247252464,0.5206853821873665,-0.24561409279704094,-0.826648305170238,-0.646016021259129,-0.10769367590546608,0.3487748201005161,0.087262446526438,-0.8057974521070719,-0.1462520402856171,0.7749878987669945,0.6681456612423062,0.8516899864189327,0.46107789035886526,-0.5993803413584828,-0.7227825508452952,-0.12069226242601871,0.1393108214251697,-0.5571541623212397,-0.5310440240427852,-0.12543656397610903,-0.7538650049827993,-0.6719536948949099,-0.5093790469691157,-0.7693743673153222,0.03258364042267203,0.2766363602131605,-0.29929278045892715,0.38629852002486587,-0.31845773104578257,-0.27251155115664005,-0.14109301753342152,-0.7444189796224236,-0.2900922251865268,0.27098632464185357,-0.033691754564642906,0.5964846285060048,0.21642288751900196,0.6052321116439998,-0.6667882995679975,0.7547089522704482,-0.38213507225736976,0.8172782962210476,0.732445334084332,-0.38160237250849605,-0.3542375764809549,0.31220285687595606,-0.7707441002130508,0.7182068978436291,-0.992797214537859,0.37925651110708714,-0.18150441022589803,0.3367674737237394,-0.6052099470980465,-0.792425318621099,0.9157667038962245,-0.34058551024645567,0.40653293300420046,-0.37732669711112976,0.5734284385107458,-0.5390895032323897,0.4719107123091817,0.1031370759010315,-0.6711244410835207,0.4933984726667404,-0.8939485349692404,0.9405257706530392,-0.370156763587147,-0.2533584083430469,-0.19341652933508158,-0.578134071547538,-0.7219086708500981,-0.7469510310329497,0.003373132087290287,-0.0601080609485507,-0.145305628888309,-0.276651160325855,-0.49907208885997534,0.07731033163145185,-0.9793043765239418,-0.015352771151810884,-0.5085029201582074,0.7114076726138592,0.22601716499775648,0.6196586131118238,-0.03714072797447443,0.30447825184091926,0.7257868265733123,0.04326545912772417,-0.12886136677116156,0.8366794930770993,0.7304987837560475,-0.018693494144827127,-0.1185757196508348,-0.0405236785300076,0.3848631759174168,0.19723093416541815,0.5770286358892918,0.3075826112180948,0.7477054442279041,-0.8723009675741196,0.6746107907965779,-0.11462935712188482,0.9467154718004167,-0.5871736602857709,0.008559849113225937,-0.2936874949373305,-0.7103945687413216,0.5146153047680855,-0.5547925340943038,-0.5809095613658428,0.032270928379148245,-0.2560794590972364,-0.6905782357789576,0.549333933275193,-0.36934609804302454,-0.13226550444960594,-0.23283217661082745,-0.7547039347700775,-0.5096367807127535,0.08292693318799138,-0.30135743552818894,-0.8915297850035131,0.16880912147462368,-0.7522180695086718,0.8169867591932416,0.005305129569023848,0.14207504130899906,-0.2355436417274177,0.8837675312533975,0.1928500854410231,0.9232649877667427,0.4522056207060814,0.3412840645760298,-0.30509999254718423,0.4394083647057414,0.7411083080805838,0.3572249091230333,0.4080015397630632,0.42909034714102745,-0.42382065998390317,-0.5795278684236109,-0.9735601311549544,0.06449564453214407,-0.10170615836977959,-0.054355820175260305,-0.268551975954324,0.6993347248062491,0.22832296648994088,-0.9837441858835518,0.7888738261535764,-0.1413879212923348,-0.7119534802623093,-0.3452634885907173,-0.007519906386733055,0.9096977226436138,-0.5611833683215082,0.22803422203287482,-0.2562961238436401,-0.033854539040476084,-0.9366908534429967,-0.030622900929301977,0.7457700041122735,-0.934523998759687,0.8430382260121405,-0.9705892316997051,0.9113948843441904,-0.24354405933991075,-0.7329401075839996,0.5176961207762361,0.532247653696686,0.7050119172781706,-0.13596273865550756,0.6023527658544481,-0.5763790109194815,0.44662050157785416,0.2346883425489068,0.544911255594343,0.3531895922496915,0.8946640151552856,0.05017928034067154,-0.43055231403559446,0.3147093243896961,-0.8108890536241233,0.6644628001376987,-0.011796541046351194,-0.3316322606988251,-0.4258061540313065,0.5967030180618167,0.2705351538024843,-0.1353266485966742,0.8230291013605893,-0.9124628659337759,-0.9416108094155788,0.2877396224066615,-0.2540443050675094,0.07574930042028427,0.2518753674812615,-0.2810938390903175,0.3708831313997507,-0.18385293055325747,0.6246241698972881,0.2863123551942408,-0.26082742726430297,-0.4000106365419924,-0.05447592493146658,-0.42925360053777695,-0.6193964267149568,0.3206230835057795,-0.3206832092255354,-0.6274238871410489,-0.7906880439259112,-0.363224427215755,-0.6885672709904611,-0.050888174679130316,-0.7911636624485254,-0.8030426506884396,0.2173861674964428,-0.20853642327710986,0.9332194896414876,-0.33310386119410396,0.22727394243702292,-0.8262230455875397,-0.8025525105185807,0.7414071718230844,0.37680221628397703,-0.4542696909047663,0.28430104348808527,0.23409481858834624,0.5299256229773164,0.6888664532452822,-0.6134876948781312,0.3201272338628769,0.2555669555440545,0.40953032905235887,0.49236172065138817,0.6127226604148746,0.5753193832933903,0.4935008501634002,-0.5289966445416212,0.4897934626787901,0.7415336985141039,-0.5400561280548573,0.03372965659946203,0.8682948467321694,0.6715568816289306,0.35153408255428076,-0.7450294233858585,-0.42130546970292926,-0.8000387707725167,-0.3913087355904281,-0.2843951126560569,0.7523311842232943,0.285774830263108,0.4121533674187958,0.6022285548970103,0.5467576324008405,-0.9352049771696329,0.9905771072953939,0.8099076277576387,0.41197456419467926,-0.7561891446821392,-0.9277092949487269,0.6526028621010482,-0.9622051692567766,0.6541206128895283,-0.364014346152544,-0.07899831049144268,-0.5075800474733114,0.09796714456751943,0.5575912524946034,-0.706204948015511,0.7138143419288099,-0.11978257168084383,-0.7022426468320191,0.45470144785940647,-0.8729093428701162,-0.10044666612520814,0.3869887478649616,0.9289953531697392,-0.6200209851376712,-0.43428905541077256,-0.45940835354849696,0.8779345685616136,0.3058041213080287,0.28342849016189575,-0.6031863507814705,-0.48691012524068356,-0.46889350190758705,0.935920821968466,-0.6429099971428514,0.5888327173888683,0.10958576062694192,-0.7850421136245131,0.5706183877773583,0.6627665152773261,0.5731419753283262,0.8323926636949182,-0.08459334215149283,-0.5695762517862022,-0.15225692139938474,-0.5367755638435483,-0.32098633516579866,-0.15578004671260715,-0.9547277241945267,-0.37431724090129137,0.41848506731912494,0.8767977352254093,0.3223151541315019,0.31188650894910097,-0.6427752212621272,-0.7898127273656428,-0.2622864432632923,-0.7772959540598094,-0.4161430587992072,0.1189518878236413,0.6858030711300671,-0.21711522853001952,0.6428042575716972,-0.26803458016365767,-0.06353004183620214,-0.9816491911187768,-0.16963210562244058,-0.2428481113165617,-0.663160178810358,0.19872582284733653,0.11252927174791694,-0.550830296240747,-0.2670729961246252,-0.16001988062635064,0.05588074726983905,-0.4437098535709083,-0.4440725543536246,-0.9833992752246559,-0.13918338902294636,-0.736239708494395,-0.24592978274449706,0.014231835026293993,0.5577769470401108,-0.06265977025032043,0.27293099323287606,0.3484658501110971,-0.6752856988459826,-0.784229853656143,-0.15763789461925626,0.3975002532824874,0.45161276077851653,0.382112305611372,-0.1281061922200024,0.5943907187320292,0.4896916914731264,-0.8820743737742305,-0.34864330664277077,0.8124262047931552,0.35651029320433736,0.2709951284341514,0.9501007585786283,-0.07957562012597919,0.5860506212338805,-0.5327290175482631,0.6426276485435665,0.8549134805798531,-0.33661719923838973,-0.09988583717495203,-0.7858355925418437,0.34549454553052783,0.21840379619970918,-0.9400442270562053,0.29400702845305204,0.8004521001130342,-0.3981198314577341,0.38903435971587896,-0.7904890435747802,-0.5709937708452344,-0.4258368448354304,-0.611024942714721,0.7159374225884676,-0.5958767477422953,-0.948414508253336,-0.5697730733081698,0.25038728257641196,0.7496646824292839,-0.5308207012712955,0.7514507295563817,0.5571137210354209,-0.62965137232095,-0.3499158238992095,0.9813879649154842,-0.5256128069013357,0.8571407925337553,-0.11458181031048298,0.8615262066014111,-0.2524054916575551,0.6278050811961293,-0.3915267433039844,-0.5939813298173249,0.3770050401799381,0.9978650924749672,0.02006012247875333,-0.3957034810446203,0.7154465327039361,0.3870384534820914,0.19222684390842915,-0.9776038597337902,0.6668762820772827,-0.5392401958815753,0.14307693671435118,0.8281135498546064,0.5415971330367029,0.25221115490421653,-0.10762845864519477,-0.774285763502121,-0.2711343253031373,-0.01782152336090803,0.9291912703774869,-0.4567331336438656,-0.0164062874391675,0.6832664865069091,-0.713860378600657,-0.2082319655455649,-0.15021925698965788,0.341345074120909,0.6494495905935764,-0.5643981248140335,0.28971809102222323,0.780036655254662,0.1010721456259489,0.6259728423319757,0.6166940131224692,0.3993041040375829,-0.025485411286354065,-0.3895368273369968,-0.6361438897438347,-0.04773038299754262,0.1492414283566177,-0.7171142073348165,0.8583197724074125,0.6095170057378709,0.7976968004368246,-0.6930578043684363,-0.5160088674165308,0.6344746612012386,0.8069770522415638,-0.02459398517385125,0.23269206006079912,-0.10533935017883778,0.7495860876515508,0.8855985165573657,-0.6193638481199741,0.03360858280211687,0.8420595941133797,0.9221316343173385,0.028091668151319027,0.3455016608349979,-0.624820938333869,-0.4712298330850899,0.33519004797562957,-0.171667636372149,-0.4537817994132638,0.5291119944304228,-0.32141989609226584,0.09811834106221795,-0.23205934138968587,-0.33523851120844483,-0.6021050321869552,-0.32956348545849323,-0.6213710769079626,-0.035226395819336176,-0.6559460060670972,-0.3226617225445807,0.31536905374377966,0.5934741613455117,0.08513037906959653,-0.572246128693223,-0.2878819992765784,-0.963468877132982,-0.38056486332789063,0.884757149964571,-0.9088774672709405,-0.05103086633607745,0.8692280044779181,-0.46037293085828424,0.1906126164831221,0.28260994609445333,0.19871084298938513,-0.36450251657515764,0.4459055424667895,-0.6914378781802952,0.7050751224160194,-0.3179485364817083,-0.9900511279702187,-0.4182178135961294,0.6420925259590149,-0.29851754289120436,0.3287399630062282,-0.4954920574091375,-0.19010771857574582,0.5191109962761402,-0.3178460099734366,0.5683831702917814,-0.07924998877570033,-0.573275656439364,0.3633381985127926,0.21316071320325136,-0.6257995069026947,-0.3419136987067759,-0.141479785554111,0.24009474692866206,0.052608799654990435,-0.9551342548802495,0.11436229757964611,-0.9683171347714961,-0.1497848746366799,0.5636822544038296,-0.42087435023859143,-0.18553412333130836,-0.11157691897824407,-0.828146702144295,-0.9544733092188835,0.47861594799906015,-0.5486319717019796,0.5778131801635027,0.23953849263489246,-0.7274065273813903,0.29370320308953524,0.061172621324658394,-0.7666941005736589,-0.7843518555164337,0.4056356498040259,0.1532081039622426,-0.3136310884729028,0.34261997137218714,-0.5527313342317939,-0.8787126261740923,0.5585166197270155,0.532797850202769,0.729251307900995,0.6614771042950451,0.8736067600548267,0.8595079686492682,-0.4263776163570583,0.4976545162498951,0.20594102889299393,0.6989273736253381,0.9151943870820105,0.5910141575150192,0.3817948675714433,-0.20270633231848478,0.22385865775868297,-0.9171362230554223,-0.4400541801005602,0.9775129710324109,-0.8722051326185465,-0.5958202620968223,0.546247536316514,-0.8701640050858259,-0.7642734735272825,0.8800470624119043,-0.3036632970906794,0.2915827422402799,-0.3004973130300641,0.9818332530558109,-0.8194217882119119,0.5365705997683108,-0.47942669363692403,-0.11940834298729897,-0.520248279441148,0.038746156729757786,0.7137132897041738,0.45358887780457735,0.8425528747029603,0.04688651440665126,-0.2733297483064234,-0.12167922360822558,0.5167988385073841,0.8780143428593874,-0.7066959282383323,0.7900971858762205,-0.27547958912327886,0.24194429675117135,-0.8562719984911382,-0.2911800863221288,-0.9057391537353396,-0.8847728283144534,0.8479664018377662,-0.6498556826263666,-0.851384584326297,0.6319312807172537,-0.29186189686879516,-0.7685128524899483,-0.9443424153141677,-0.505522436928004,0.3974423832260072,0.6825154917314649,0.5936183664016426,0.4449592470191419,-0.267544686794281,-0.6373382247984409,0.6704091690480709,-0.5019905534572899,-0.9359275787137449,-0.04941767221316695,-0.765331853646785,-0.5887263282202184,0.6799550256691873,-0.06748086074367166,0.5744437729008496,0.5859395461156964,-0.8035100041888654,-0.02391610713675618,0.49514008732512593,0.9024507524445653,-0.4222432686947286,0.5986324539408088,0.6693032020702958,-0.643665871117264,0.25777721544727683,-0.45860969042405486,0.7193635897710919,-0.17566941631957889,-0.40247441036626697,-0.5983013641089201,0.3182701664045453,-0.8795878160744905,0.014899841509759426,-0.5836951141245663,0.2749752141535282,0.27619541389867663,0.14039432257413864,0.3058108324185014,0.6504679634235799,0.8216584706678987,0.4907684442587197,-0.3589467671699822,0.7018714100122452,0.07647490687668324,0.061251234263181686,-0.8826555549167097,0.48865800630301237,0.10630481783300638,0.411120283883065,0.29512634174898267,-0.5854746685363352,0.10116088297218084,0.8615046897903085,-0.4661729345098138,-0.6498150331899524,0.6183070023544133,-0.2862110682763159,-0.7158998586237431,0.6226422660984099,0.11771371075883508,0.5896998872049153,-0.18640707712620497,0.09114783303812146,0.14942473731935024,0.6259678611531854,0.6848854031413794,0.09916806407272816,0.4597858297638595,0.9392561558634043,-0.8450388535857201,-0.3602738156914711,-0.8819997338578105,0.4952576868236065,0.9868728155270219,-0.2980268970131874,-0.7859931709244847,-0.09869497176259756,0.8973278487101197,0.3833786738105118,0.7578752879053354,0.4377250000834465,-0.6823862362653017,0.4784406116232276,-0.8973640720359981,-0.13629196444526315,-0.599238227121532,-0.5372858266346157,-0.967310406267643,-0.863039125688374,0.013264982961118221,-0.1583572872914374,0.5361701212823391,-0.7140621053986251,-0.7235770639963448,-0.3662665029987693,0.21137079736217856,0.16576738515868783,-0.17022832529619336,-0.045223770663142204,0.6658995826728642,0.9489964079111814,0.2593994098715484,0.19369177985936403,0.4741920228116214,0.3223223965615034,0.588932438287884,0.975351688452065,-0.8722495683468878,0.1403573681600392,-0.22147564636543393,0.5851022764109075,-0.44159001065418124,0.47457403130829334,-0.2868403708562255,0.21186011703684926,-0.5449434323236346,0.867532238829881,0.9422237579710782,0.12000581156462431,-0.7308872826397419,0.5049996124580503,0.2736093853600323,0.19868247071281075,-0.8168022632598877,-0.45050925808027387,-0.5029475395567715,0.2641452709212899,0.10559541033580899,-0.13823918346315622,-0.7581122792325914,-0.9447854137979448,-0.9570598052814603,0.4827599795535207,-0.8516717595048249,0.19092916790395975,0.6322572329081595,0.30680141830816865,-0.2887284364551306,0.32370145432651043,-0.9228533068671823,-0.5817981925792992,-0.5002736523747444,-0.30345721216872334,-0.9937511803582311,0.24900023732334375,-0.8817111519165337,-0.5582720576785505,0.5578850880265236,-0.4330443744547665,-0.026086954399943352,0.8691430925391614,-0.4869197369553149,-0.603704497218132,-0.5575174614787102,-0.3215305358171463,0.9376417091116309,-0.28686184855178,-0.01596855791285634,0.9035074692219496,-0.37096989899873734,0.5480453795753419,-0.16059976164251566,0.4512426359578967,-0.20591147616505623,-0.5119747309945524,-0.04601936135441065,-0.8633907847106457,0.36765284091234207,-0.4321030196733773,-0.192389908246696,-0.18430523620918393,-0.308666106313467,-0.22162917908281088,-0.8496694411151111,-0.9322574278339744,0.9241888760589063,0.5505715166218579,0.6743993489071727,-0.09441598365083337,-0.0946088396012783,-0.3463329919613898,0.06691059144213796,-0.34321824042126536,0.24760859878733754,0.990493721794337,-0.25191993173211813,-0.13957108929753304,-0.025640299078077078,0.36291358852759004,0.34751415019854903,-0.46990411076694727,-0.05442245537415147,-0.04073524521663785,0.32293100468814373,-0.8174731438048184,0.6366951083764434,-0.5610007159411907,0.39385953173041344,0.8904261635616422,-0.16153290681540966,-0.315873590297997,-0.9468559394590557,-0.7275372077710927,0.5053946785628796,-0.7511833338066936,-0.44624320371076465,-0.8898220551200211,-0.9193628383800387,-0.6307927598245442,0.8482880769297481,0.6656296020373702,-0.021172811742872,-0.44151518819853663,0.15551528614014387,-0.759820974431932,-0.4626960102468729,-0.28742054710164666,-0.22289255540817976,0.4547601188533008,-0.8112957468256354,0.7540103951469064,0.6322294063866138,-0.9601023774594069,0.5010017994791269,-0.46324658254161477,-0.016264421865344048,0.8877223068848252,0.8021689476445317,0.5661271004937589,-0.3893795358017087,-0.6628057439811528,-0.8851175238378346,0.8656002157367766,-0.37275225576013327,-0.8195744068361819,-0.02983527584001422,-0.5292418645694852,0.1372908097691834,-0.18781613651663065,-0.07897128164768219,-0.06019033491611481,0.8917300626635551,0.7332954672165215,-0.3443305166438222,-0.15794520638883114,0.7153184888884425,-0.9810350923798978,-0.4258402925916016,-0.008040818385779858,0.4045502208173275,-0.9199859164655209,0.9927002764306962,-0.5207475079223514,-0.04103476647287607,0.9024711451493204,0.9479032685048878,0.516005520708859,0.26883449451997876,-0.625000907573849,-0.893030805978924,-0.3368179788812995,0.9928118949756026,-0.7098855609074235,-0.5968177230097353,0.3798858863301575,-0.485227236058563,-0.872830799780786,0.22185586020350456,-0.2721446552313864,0.42621886217966676,-0.15413819020614028,0.3715787655673921,-0.8307470865547657,-0.24126524664461613,0.9285056651569903,-0.22919832123443484,-0.27598426723852754,-0.9650007043965161,-0.8341594501398504,-0.16626667464151978,0.0728745455853641,-0.06510897586122155,0.944136424921453,0.29760322999209166,-0.18955395882949233,-0.8720333729870617,-0.9001652472652495,0.8354462739080191,0.3108082073740661,0.9047876535914838,0.9110211557708681,-0.36889083916321397,0.4285600367002189,0.9975136751309037,0.45729732885956764,0.623707233928144,0.33732679300010204,-0.23346308572217822,-0.7436562702059746,0.9078934006392956,0.41934887133538723,0.1842766315676272,-0.21686894539743662,0.7142172609455884,0.6591725377365947,0.5738669601269066,0.565473381895572,-0.6328618191182613,-0.01066978508606553,-0.9879969828762114,0.15350357070565224,0.2599388933740556,-0.8074650811031461,0.7411584788933396,-0.6995516321621835,-0.5113599374890327,-0.8362343390472233,0.5300818304531276,-0.6590037713758647,-0.4625416425988078,-0.863998759072274,-0.8922828654758632,-0.5455867392010987,0.8969542845152318,0.2820248552598059,-0.017413482069969177,0.8600390148349106,0.448893160559237,-0.018779790494590998,-0.23145092092454433,-0.885487322229892,-0.2365871760994196,0.2885371898300946,-0.9434397569857538,0.29532330529764295,-0.4865914760157466,0.19265622971579432,-0.5611685458570719,0.09231150103732944,0.43972458643838763,-0.15954542579129338,-0.2666886751540005,0.5095999906770885,0.923576776869595,0.7520368732511997,-0.03221707418560982,0.6571183833293617,0.770398021209985,0.3292998280376196,-0.46798343351110816,-0.5364695740863681,-0.7868967400863767,-0.07305845618247986,-0.08000000286847353,0.8700441415421665,0.8699216349050403,-0.8819632097147405,0.2799713653512299,-0.13814656296744943,0.10256752511486411,0.9513223897665739,0.4638642631471157,-0.4802242652513087,-0.5837167832069099,-0.8459125733934343,-0.6882551768794656,-0.38610839657485485,0.31447932962328196,0.3831439008936286,0.09010235546156764,0.7043982376344502,0.6571583803743124,-0.9798161284998059,-0.19206298841163516,0.6335906833410263,-0.13046699902042747,-0.14824708830565214,0.041884046979248524,0.252086263615638,-0.3881034245714545,-0.3344801398925483,-0.6054104752838612,-0.9009035499766469,-0.4410030385479331,-0.055073454044759274,-0.8854990941472352,-0.28410511277616024,0.7817776692099869,0.2080773483030498,-0.5534193082712591,0.614827474579215,0.21386440144851804,-0.42909427220001817,0.3670402243733406,-0.48953170888125896,-0.21814915630966425,0.24065761920064688,0.6654851520434022,-0.7204340687021613,-0.6388719510287046,-0.2762203845195472,-0.15014780219644308,0.06205271929502487,-0.8011256484314799,-0.2515273904427886,0.6640350334346294,0.8659074977040291,0.39178000716492534,0.9587266002781689,0.9836104731075466,-0.7719877120107412,-0.5908647119067609,-0.6079301703721285,0.9073158740065992,-0.6036439291201532,-0.5919365109875798,-0.7304927380755544,-0.8553575426340103,0.389056003652513,0.7477163318544626,0.8561331504024565,-0.513636059127748,0.29384730849415064,-0.7708473154343665,0.7271133805625141,0.5695190825499594,0.19811360770836473,-0.4911002665758133,0.430724882055074,0.5786710218526423,0.8438713406212628,0.6692455932497978,-0.588107330724597,-0.7613987810909748,-0.05978541821241379,-0.5950429583899677,0.4317292980849743,-0.49240142619237304,0.7268044594675303,-0.8164555323310196,-0.8015932766720653,-0.07661343505606055,0.6731350356712937,0.8143484336324036,-0.10319155314937234,-0.3077430631965399,0.8495257911272347,0.044006417505443096,0.09466910921037197,0.8311474481597543,-0.21230200538411736,0.7481411881744862,-0.39860867289826274,0.057660230435431004,0.25402811774984,0.6930757546797395,0.08725850516930223,-0.01508253626525402,0.7831224394030869,-0.6681399550288916,0.5998901426792145,0.7942442307248712,-0.9169374303892255,0.3616819866001606,0.5604722118005157,0.45803036261349916,0.29759462736546993,0.7379959961399436,0.602295215241611,0.674886635504663,0.5093494327738881,0.71976129245013,0.5047325985506177,-0.20991795929148793,0.34316839883103967,0.009360643103718758,0.58941495930776,-0.3474490628577769,0.5149685619398952,-0.5955079635605216,-0.9615534585900605,0.6198318311944604,0.9422233547084033,0.06008590757846832,0.16451483638957143,0.46265952568501234,0.017952632624655962,-0.7702809851616621,-0.6671424577943981,-0.06296847015619278,0.7529279356822371,0.28205101657658815,0.29525933088734746,-0.507632008753717,-0.7919489392079413,-0.4112923820503056,0.5621140194125473,-0.20918627409264445,0.9955862243659794,0.7105359323322773,-0.9348855018615723,0.2628009421750903,0.9773344774730504,0.7824129611253738,-0.3029531608335674,-0.48536168737336993,-0.870443765539676,-0.5766663197427988,-0.9251603288576007,-0.8273062687367201,0.4305894789285958,-0.6714031118899584,0.4506824645213783,0.9935427731834352,0.08414965076372027,-0.8154307883232832,0.3403381039388478,0.9611578499898314,-0.6986144371330738,-0.1783122941851616,-0.6868903506547213,-0.2577242045663297,0.6573161026462913,-0.8948941151611507,-0.16217752965167165,-0.07692259782925248,-0.14603843679651618,0.6133768069557846,-0.11680294526740909,0.06799999857321382,-0.3956992360763252,-0.7615348189137876,-0.14666010439395905,0.6235467465594411,-0.6531758308410645,-0.39414110127836466,-0.054791136644780636,-0.40830218978226185,-0.6318575483746827,0.5749663827009499,-0.6193423047661781,-0.12938770186156034,-0.8463204009458423,-0.1925013461150229,-0.9670537183992565,-0.18599256919696927,-0.7529432573355734,-0.4000556180253625,-0.02279112208634615,-0.8403310463763773,0.8017048491165042,0.5363834202289581,0.10775697603821754,0.7534633502364159,0.9546504961326718,-0.9982268423773348,-0.7066727634519339,-0.019208783749490976,-0.3398623187094927,-0.6781816962175071,0.6468626237474382,0.5374337290413678,-0.5152745586819947,-0.11171323666349053,-0.13706752425059676,0.6241132523864508,0.8565234541893005,-0.5320012434385717,0.4959468417800963,-0.8477071346715093,0.9164978130720556,-0.3720047422684729,-0.45725180162116885,-0.15799798583611846,-0.8888217881321907,0.12506061233580112,-0.48844951018691063,0.521661831997335,0.6192775014787912,0.2605879711918533,-0.6149114086292684,-0.3034450374543667,-0.4304447155445814,0.08307508658617735,0.11538069881498814,-0.2613250291906297,0.13250164967030287,0.34137642849236727,0.12115832325071096,0.7642059284262359,0.7752645523287356,0.8254508525133133,0.6496237237006426,-0.41402660496532917,0.06699140882119536,0.7583165764808655,-0.515324329957366,0.21117052156478167,-0.8590085753239691,-0.275385953951627,0.07025103271007538,-0.8961111991666257,0.5530971032567322,0.5296408995054662,0.8135695299133658,-0.39888725988566875,0.9579151682555676,-0.26520965760573745,0.1921774372458458,-0.531899384688586,-0.42086163349449635,0.4923918289132416,-0.8642407404258847,-0.3832006277516484,0.11688445694744587,0.34752968372777104,-0.8784895706921816,-0.5959409265778959,-0.5476828878745437,0.06253249384462833,0.06566048180684447,-0.1941581005230546,-0.07035971339792013,-0.37463640328496695,-0.7617147471755743,0.947392679285258,0.8723145881667733,-0.7295717364177108,0.36140019865706563,-0.3910438031889498,-0.9375263159163296,-0.7628123266622424,0.5992788723669946,0.19882157258689404,-0.4773018783889711,0.47018869034945965,-0.8446952765807509,0.11542515503242612,0.6340608154423535,0.4653561571612954,0.6051039146259427,-0.17560170777142048,-0.6806185427121818,-0.27187255304306746,0.26354744331911206,-0.5349930739030242,0.8690121318213642,0.9941539424471557,0.9853336154483259,-0.4324358110316098,0.3886562646366656,0.944105482660234,-0.15892993099987507,0.8909761710092425,-0.9678593068383634,0.6076570595614612,0.5948078162036836,-0.25588803831487894,-0.25822486309334636,-0.6287282253615558,-0.9037769031710923,-0.39900190755724907,0.10259634861722589,-0.6850701770745218,0.6363483634777367,-0.18044326081871986,0.6787206721492112,0.7796491305343807,-0.48660908499732614,-0.005529723595827818,-0.3534554401412606,0.5623453864827752,-0.09525830578058958,-0.5937515767291188,0.9941722750663757,0.9573307298123837,0.13955873297527432,0.514516752678901,-0.8060664739459753,-0.7997100106440485,-0.469551261048764,-0.05532528692856431,-0.6138873170129955,-0.23194656148552895,-0.535559396725148,-0.16930790524929762,0.9244058532640338,-0.05725547391921282,0.16477832477539778,0.47851258190348744,-0.5206782734021544,0.3557553570717573,0.22529881726950407,-0.3087511812336743,-0.1349524213001132,-0.3591327350586653,0.6102041504345834,-0.7087560002692044,-0.040717936120927334,0.29413460195064545,0.42056092992424965,0.8699938324280083,0.3490563086234033,-0.3400122653692961,-0.2754127481020987,-0.1416284372098744,-0.2017492805607617,0.036297427490353584,0.33794751251116395,0.758386944886297,0.4600165351293981,0.46908192802220583,0.8709183884784579,0.14302061591297388,0.8930829195305705,-0.8089467929676175,0.2829042309895158,0.02731442265212536,-0.3219133159145713,-0.6986387241631746,0.628912397660315,0.9339765124022961,-0.24297246523201466,0.0073580374009907246,-0.9256537309847772,-0.8893424049019814,-0.9391899141483009,-0.3316169152967632,-0.4705095440149307,-0.2519290605559945,0.24619108065962791,0.33573732851073146,-0.5017132447101176,-0.36699926340952516,0.5525624863803387,-0.4643085105344653,-0.06630323734134436,-0.3786087571643293,0.4640334756113589,0.24496262054890394,-0.16190333245322108,0.5206881235353649,-0.9601068482734263,0.05929367616772652,-0.8358249454759061,0.78108747350052,0.8891945146024227,-0.9576879488304257,-0.8971635540947318,-0.028525512665510178,0.08228687942028046,0.995497508905828,-0.04976117331534624,0.2274373061954975,0.9846929297782481,0.5641057454049587,0.016851703636348248,0.6551238331012428,0.6152082257904112,-0.4020504574291408,-0.48262785747647285,-0.5793897639960051,0.845233813393861,-0.5163416671566665,-0.5167689407244325,-0.061494308058172464,0.6135876369662583,-0.8848232566379011,0.3073401553556323,0.4922114945948124,-0.7266149511560798,0.28296753484755754,0.7471035104244947,0.9644131204113364,-0.11184461554512382,-0.957254501990974,0.8065310954116285,0.727234962861985,0.9616006277501583,-0.6599155250005424,0.09010808588936925,-0.624841304961592,0.02586790779605508,-0.20420095650479198,0.017924359533935785,-0.5291571551933885,-0.6236919020302594,-0.9759834734722972,-0.547284490428865,0.16244827676564455,0.3954377565532923,0.2762806201353669,0.36404312774538994,-0.15133446780964732,-0.5029745884239674,0.35230075661092997,0.09556620242074132,0.7034490834921598,-0.4806221704930067,-0.6666012364439666,0.26002882374450564,-0.6982048358768225,0.7346859108656645,0.18368425872176886,0.1526944856159389,0.8786357729695737,0.6764099611900747,0.3445728491060436,-0.69571283319965,-0.8320190021768212,0.5841128323227167,-0.10171575052663684,-0.27035363484174013,-0.44529431872069836,0.23629978159442544,0.8433477990329266,0.5215938650071621,-0.5052422685548663,-0.5896572596393526,-0.6108172591775656,0.5910479198209941,0.3806692427024245,-0.9125717654824257,0.8328995881602168,-0.647743814624846,-0.02341462392359972,0.07266931794583797,-0.7405660785734653,-0.095049440395087,-0.652147714048624,0.3722180649638176,0.3702873894944787,0.6621448369696736,-0.7898035980761051,0.3627072791568935,0.6804727925918996,0.19064003182575107,-0.8085256749764085,0.7454626527614892,0.9543223637156188,0.7863581120036542,0.21531758829951286,-0.8622506237588823,-0.4048580783419311,-0.9747080728411674,-0.6490679359994829,0.6054323981516063,0.8358026081696153,0.5982633614912629,-0.1805693763308227,0.9091294072568417,0.28614670829847455,-0.7792252409271896,-0.5716495625674725,-0.6380372568964958,0.42789324605837464,-0.919027607422322,-0.4341814103536308,-0.21750328922644258,-0.10575797129422426,0.3756338404491544,-0.34382183849811554,-0.08460857253521681,0.3192102308385074,0.9728664048016071,-0.7058947579935193,-0.6568398787640035,0.9051140188239515,-0.5563145978376269,-0.8346874713897705,-0.6306305932812393,-0.455058001447469,0.8565385220572352,-0.11133826756849885,-0.285814399830997,-0.5684335883706808,-0.9364924086257815,0.20927428314462304,0.7673252830281854,-0.24335389537736773,0.1336975102312863,0.3593671773560345,0.9425076059997082,-0.32027633488178253,-0.739791679661721,-0.10122297378256917,-0.41131619876250625,-0.5509979859925807,-0.017441282514482737,-0.5212345798499882,0.02564694732427597,0.02042757859453559,0.7968641025945544,0.3961834590882063,-0.7568496717140079,-0.013846276793628931,-0.03478609211742878,-0.009602205827832222,-0.9528811471536756,0.05135141219943762,0.9484006995335221,0.9848353206180036,0.5339714181609452,0.25668992986902595,-0.22746729291975498,0.1021062359213829,0.3164804829284549,-0.045401659328490496,0.05545885534957051,0.2784936586394906,0.8915485106408596,-0.7274556127376854,-0.7904686648398638,-0.8799438197165728,0.814729087986052,-0.9373513828031719,0.46028553461655974,0.7171692168340087,-0.8051608679816127,-0.888871812261641,-0.11824601609259844,0.16876221727579832,0.7150123449973762,0.3880340922623873,0.036294224206358194,-0.829939688090235,-0.8018338363617659,-0.19438884081318974,-0.6562065752223134,-0.03517637588083744,-0.7340250359848142,0.8259158236905932,0.8962838766165078,-0.001200564205646515,0.21531357942149043,-0.27409139927476645,0.2834014636464417,-0.7339151143096387,-0.7476535681635141,0.2119091502390802,-0.1922219074331224,0.09779178583994508,-0.4881788967177272,0.984323700889945,-0.8254323503933847,0.05036703031510115,-0.001994078978896141,-0.6545995804481208,0.7183434921316803,0.7925189952366054,-0.8247877028770745,-0.8498244592919946,-0.10372137743979692,-0.29892556415870786,0.21899503795430064,0.3247742564417422,0.8369868360459805,-0.22893427591770887,-0.4512347150593996,0.820288504473865,0.0634354162029922,0.4040184603072703,-0.13963213190436363,-0.09784822072833776,-0.7296079872176051,0.5668065855279565,0.6259646182879806,-0.06807227153331041,-0.5580328106880188,-0.8512306739576161,0.143920567817986,-0.6738281007856131,0.546706079505384,0.7724360697902739,-0.5295905810780823,-0.46736445743590593,-0.5251007289625704,0.002719771582633257,-0.527680195402354,-0.47049334924668074,0.3405947107821703,-0.3727288618683815,-0.1760218683630228,-0.9650464793667197,-0.8041710206307471,0.2425925014540553,0.640375126618892,0.060416216030716896,0.847778266761452,0.5780604123137891,0.6999650965444744,-0.9806853183545172,-0.6336293737404048,-0.6246762038208544,0.8829264487139881,0.7570463065057993,-0.610431338660419,-0.4886777959764004,0.6577784586697817,-0.8714438267052174,-0.06537686055526137,0.3783290139399469,0.5065458905883133,0.03224525786936283,-0.8642222238704562,-0.7774791019037366,0.6223611328750849,-0.07606833428144455,0.20232012355700135,-0.8731308407150209,0.6689042178913951,-0.14560431381687522,0.9241217896342278,-0.08760748244822025,-0.18971728580072522,-0.1117085418663919,-0.3611784712411463,-0.5560644110664725,0.9179761903360486,0.024474899750202894,-0.387435061391443,0.1147997286170721,-0.3347109276801348,-0.9925784417428076,0.7843321422114968,0.6940209181047976,0.9942120481282473,-0.10560902347788215,0.59668940724805,-0.5131055945530534,-0.899209180381149,-0.4157457812689245,0.5810741898603737,-0.14870795607566833,-0.09638101002201438,-0.03672221349552274,0.6624356075190008,0.11661254661157727,-0.9448559852316976,0.7173505323007703,0.28245276026427746,0.44583651749417186,0.06132121849805117,-0.002281344495713711,0.8854656517505646,0.39324406208470464,-0.6107229804620147,0.6350019676610827,0.6849645371548831,0.6172390356659889,-0.40235973289236426,0.12538740085437894,-0.29469918040558696,0.7335921260528266,-0.009485633578151464,-0.8502863426692784,-0.5998383848927915,0.7460611923597753,-0.7341947820968926,0.30920811276882887,-0.6882061720825732,-0.3285168153233826,0.9867710843682289,-0.3366605592891574,-0.6436138954013586,0.555826801341027,0.31585452565923333,0.3823805912397802,0.6893244474194944,-0.821397413033992,0.42518425825983286,0.5059900782071054,0.018966078758239746,-0.8793677850626409,0.038899675477296114,0.4027949278242886,-0.6383845303207636,0.07614027662202716,0.7614284339360893,0.8736175210215151,0.6552092712372541,-0.0020471764728426933,-0.059983992483466864,0.21118514146655798,0.6232879497110844,0.17988123279064894,-0.19295401126146317,-0.5778724374249578,-0.9626354523934424,0.9366272953338921,-0.9147174255922437,0.5999599560163915,-0.027297222055494785,-0.22833104617893696,0.8322630692273378,0.7351749772205949,0.8544609053060412,-0.9266184973530471,-0.11344224726781249,0.9275057353079319,0.09415624430403113,0.9862701711244881,-0.40231139212846756,0.9078680938109756,0.7424406558275223,-0.861752494238317,-0.1493162759579718,-0.27543761068955064,-0.9968398064374924,-0.03190946206450462,-0.21975114941596985,0.2068592580035329,-0.41268180264160037,0.5515648536384106,0.4880167436785996,0.1770492671057582,0.522379273083061,0.4913155944086611,0.22876964276656508,-0.696758946403861,0.10407899459823966,0.27072110772132874,0.5317773586139083,-0.2787949098274112,0.2725497120991349,-0.9222977766767144,-0.09723548265174031,0.008770651184022427,-0.8118930398486555,0.8468893216922879,0.26357129449024796,0.49569306522607803,0.9811462769284844,0.43647099006921053,-0.799219942651689,-0.46049157436937094,0.5401671761646867,-0.10111049842089415,-0.10251030279323459,-0.6229952969588339,0.9064641003496945,0.6134931999258697,-0.18705298006534576,0.1384436241351068,-0.3319753799587488,0.9553768085315824,-0.5194781236350536,0.13791498681530356,0.8101903675124049,-0.5325017618015409,-0.5307712103240192,-0.012583769857883453,0.433167333714664,-0.9741108352318406,0.034308942034840584,-0.7808982208371162,-0.48266384843736887,0.05545091815292835,0.7604311434552073,-0.8438393543474376,0.399820429738611,-0.13459839252755046,0.8154521947726607,0.24237623484805226,0.6266606641001999,0.6675197323784232,0.023180044256150723,0.21978452987968922,0.4326686495915055,-0.6570196086540818,0.18171074241399765,-0.5567572880536318,-0.9241793560795486,0.25803068187087774,-0.2642193417996168,-0.3421806013211608,-0.1961114350706339,0.10548124276101589,-0.6686720387078822,-0.794995044823736,-0.07760161999613047,0.027725956868380308,0.9141432996839285,0.7103154403157532,0.03214798029512167,0.045722173526883125,0.3838174291886389,-0.06511159799993038,0.45495763700455427,0.7578002754598856,0.8490950488485396,-0.11837474443018436,0.828846347052604,0.707399558275938,-0.40053980704396963,-0.2371166734956205,-0.3894965830259025,0.6434726356528699,0.21972867287695408,-0.3546400247141719,0.9442524872720242,-0.18066567135974765,0.4843343188986182,-0.43902682000771165,-0.4346336470916867,0.050929703284054995,0.04533280711621046,0.5413090051151812,0.19964088639244437,0.4851031615398824,-0.12878925306722522,-0.6892581339925528,0.4622270674444735,0.3074835459701717,0.4427386522293091,-0.026249578688293695,-0.7366965594701469,-0.144126967061311,-0.4780418607406318,-0.6658739750273526,-0.5140025988221169,0.10817865841090679,-0.9847244173288345,0.0691077965311706,0.6651210160925984,0.21921541076153517,0.8968687024898827,-0.8805855722166598,-0.595509719569236,0.386336806230247,-0.8038420001976192,0.48880381789058447,-0.29181854985654354,-0.8415606268681586,0.15036301035434008,-0.5107617266476154,-0.5377556919120252,0.9783102292567492,-0.5000448278151453,-0.15794715518131852,0.37868255004286766,-0.5840712864883244,-0.3229880281724036,-0.5702461726032197,-0.6548421583138406,-0.12425439339131117,-0.8911785199306905,-0.5621548774652183,-0.5355468466877937,-0.794779300224036,0.8151861103251576,-0.5291122463531792,-0.19492950243875384,0.2042990573681891,0.06173691479489207,-0.004982854705303907,-0.7477494855411351,-0.20486719068139791,0.0845341682434082,0.14218499278649688,0.6049027610570192,-0.17452121153473854,-0.9492159150540829,-0.5171192968264222,-0.1598836467601359,-0.6492127790115774,0.363623867277056,0.5112623455934227,-0.6852335212752223,-0.9900073269382119,-0.07701597735285759,-0.503173356410116,-0.3086651745252311,0.8708569398149848,0.5182106620632112,-0.9808374238200486,-0.3461639820598066,0.6773241967894137,-0.9726376212202013,-0.1598378629423678,0.2780001130886376,-0.17366189369931817,0.2912860382348299,-0.8631394430994987,-0.3130927146412432,0.8686075215227902,-0.27873433707281947,0.05841299565508962,0.11595706176012754,-0.8317473828792572,-0.20576740568503737,0.7104144552722573,0.4151704697869718,-0.08278392162173986,0.45923066418617964,-0.5524110328406096,0.2414339086972177,0.7976053724996746,-0.8018951043486595,0.6918500126339495,0.21503934357315302,0.489465756341815,0.9941064403392375,-0.16225199028849602,0.16935867676511407,0.8458926230669022,-0.820272752083838,-0.5648666676133871,0.3437844174914062,0.043904115445911884,-0.2183323185890913,-0.38242072658613324,-0.828552957624197,0.5408894107677042,-0.9487461894750595,0.7126542385667562,-0.7605327027849853,-0.3816538956016302,-0.30067139118909836,0.14867019187659025,-0.0197478118352592,0.9516622591763735,0.9768729079514742,-0.7615589867345989,0.32315201684832573,0.1008987557142973,-0.9593345788307488,-0.26480965688824654,-0.15774458227679133,-0.8259091852232814,-0.9057295103557408,-0.9004560266621411,0.24359650211408734,-0.8171707494184375,-0.44697446236386895,0.9564250432886183,0.31084621557965875,-0.21839258214458823,0.5415150579065084,-0.03771717566996813,0.7424112716689706,-0.2051326110959053,-0.6413739593699574,0.03000817121937871,-0.207499532494694,0.8202048535458744,0.2906041839160025,0.40357972914353013,0.7689444059506059,0.44908150332048535,0.7664745394140482,-0.4774375376291573,-0.47619402036070824,-0.24813841981813312,-0.31311468314379454,-0.5546655477955937,0.23105330346152186,0.25276369508355856,-0.9130651107989252,-0.7957755816169083,0.9580453876405954,-0.7671998366713524,0.09295407775789499,0.1468810481019318,-0.08624191163107753,-0.10042010713368654,-0.298354250844568,-0.018389889504760504,0.3325934763997793,-0.3449364094994962,-0.2360230926424265,0.6178365349769592,-0.37991240061819553,-0.3594013541005552,-0.7397084217518568,0.9935983084142208,-0.2670403174124658,0.9817061931826174,-0.06622326280921698,-0.4476516852155328,-0.13075716560706496,0.9816103712655604,-0.3077139211818576,0.79463433008641,0.09269294422119856,0.20571945095434785,-0.1209990931674838,-0.5776870981790125,-0.7370874579064548,0.6634013070724905,-0.6915341704152524,0.5899332715198398,-0.13126740138977766,0.8038478535600007,-0.7073060902766883,0.18785348674282432,-0.7427102699875832,-0.6422247746959329,-0.024420089554041624,-0.830590290017426,-0.19318032450973988,-0.32150470605120063,0.8960145656019449,-0.7006927616894245,0.74285993212834,0.34380521485581994,0.4595690732821822,-0.3500081179663539,0.15567447477951646,-0.25084596360102296,0.5040408768691123,0.06934512592852116,-0.5937142688781023,0.21979217883199453,-0.8352562412619591,0.6882406654767692,0.5943792769685388,-0.4209509203210473,-0.5942981480620801,0.35640777880325913,-0.9681815109215677,-0.3921276326291263,0.6867571682669222,0.048044716473668814,-0.8409412698820233,-0.5671608252450824,-0.7190081248991191,-0.4728363761678338,-0.002947316039353609,-0.7808766141533852,-0.9588969661854208,0.5621286509558558,-0.5122535987757146,0.9153124731965363,0.26397314900532365,0.8895893255248666,0.27076567662879825,-0.4370863544754684,0.7272957572713494,-0.19833670230582356,-0.3714111312292516,0.35501181753352284,-0.013453514315187931,-0.0007254192605614662,-0.19458110071718693,0.1473390208557248,0.44090334605425596,-0.8389998828060925,0.010031968355178833,-0.6419356474652886,-0.9454002976417542,-0.9867861559614539,0.6354561042971909,-0.18736813077703118,0.7028698809444904,0.7703233016654849,0.29963100561872125,-0.8247025259770453,-0.3329258137382567,-0.9132093894295394,0.615855366922915,-0.6761102606542408,-0.845652244053781,0.513967381324619,-0.7365678385831416,0.4889788902364671,-0.6866608262062073,0.4098222069442272,0.7240334167145193,0.7311599324457347,0.4390273713506758,-0.49569565104320645,-0.9930224129930139,-0.912273561116308,0.5515328366309404,-0.5060324701480567,0.40758493449538946,-0.08632915280759335,0.43888972140848637,0.9279010724276304,-0.4264398538507521,0.15014240145683289,-0.9551865430548787,0.9532188554294407,0.5304784956388175,-0.4527426138520241,-0.49218115769326687,0.6843915423378348,-0.1252977312542498,0.6251679984852672,0.4796588928438723,0.5839550793170929,-0.8614278114400804,0.016802229452878237,-0.2561012487858534,-0.15478013828396797,0.23403253965079784,0.8884272426366806,0.058192694559693336,0.25473402719944715,0.43552018888294697,-0.5404620240442455,-0.48757836828008294,0.3392713931389153,-0.08089655684307218,-0.13026744220405817,0.8424822613596916,-0.5385902994312346,-0.5569346253760159,0.6736808796413243,-0.17001117952167988,0.7388171479105949,-0.36855027778074145,0.4337029615417123,-0.8609213549643755,0.7146125235594809,0.695430594496429,-0.5261838003061712,-0.552790011279285,-0.6612536399625242,0.14084996469318867,-0.34039248805493116,-0.9347048755735159,0.5676479279063642,0.8056149329058826,-0.31007532123476267,0.170941308606416,0.7567342389374971,-0.8837469103746116,-0.5518892551772296,-0.8684149603359401,0.5867056669667363,-0.684756207279861,-0.11780714709311724,0.8160914559848607,0.2599865007214248,-0.8648184724152088,0.7488112705759704,-0.0944595979526639,-0.7977115293033421,0.3248707321472466,0.14690662594512105,0.003109646961092949,0.9402345097623765,0.6088552600704134,-0.23329719994217157,-0.8963517644442618,-0.9832817036658525,-0.9252823451533914,-0.7768315761350095,0.2797432644292712,0.7084628930315375,0.2621211875230074,-0.7712243692949414,-0.11757136229425669,-0.1023229961283505,0.4678436294198036,-0.20019987085834146,0.40432459954172373,0.12958418857306242,-0.24733437364920974,-0.1582629457116127,-0.9021329223178327,0.3807855756022036,-0.05201770318672061,0.5955973514355719,-0.2232730332762003,-0.8273638328537345,-0.15301120234653354,-0.7732935487292707,0.09784734761342406,-0.2155744368210435,-0.7955861506052315,-0.9807608802802861,-0.027808092068880796,0.5646076668053865,0.5768770533613861,-0.9000474554486573,0.23569254484027624,0.5035112863406539,-0.20882663875818253,0.16205231752246618,-0.7843865682370961,-0.31521039362996817,0.1490005161613226,0.32017461908981204,0.9855254739522934,-0.19047104148194194,-0.3431056970730424,-0.8294707234017551,-0.040358954574912786,0.6122103026136756,0.9864115342497826,-0.7538714143447578,-0.6153591661714017,-0.5830743908882141,-0.24756630416959524,-0.9807836501859128,-0.5764275318942964,0.152811280451715,0.6580556225962937,-0.21140487864613533,0.960334736853838,0.4981489502824843,-0.7973849638365209,0.5916683152318001,-0.27118612406775355,0.7461389726959169,-0.4429664867930114,0.6982540600001812,0.11993613885715604,-0.05842660367488861,0.20741622569039464,-0.37958025094121695,0.9798170253634453,0.4273600629530847,-0.010106665082275867,-0.45463096955791116,0.4711637073196471,-0.7638014182448387,-0.8023475119844079,0.6012760885059834,-0.2305382383055985,0.8897022823803127,-0.7505004750564694,0.8486413978971541,0.6322813699953258,-0.7422539624385536,-0.8207687484100461,-0.560346859972924,0.037225082982331514,0.13470264431089163,0.6480752672068775,-0.27842020662501454,-0.8940905942581594,0.3328776122070849,0.5845244727097452,0.0025662286207079887,-0.937842782586813,0.02093183482065797,0.3511878242716193,0.12514795130118728,0.4725142582319677,0.3171584401279688,-0.6515562878921628,-0.5561154135502875,0.26223254995420575,-0.7403361415490508,0.8566297898069024,-0.49567853659391403,0.3017537146806717,-0.8678465774282813,-0.22314730379730463,0.39581463718786836,-0.10429486446082592,0.9977883803658187,0.5625912337563932,-0.5751235871575773,0.8580980966798961,0.2195826629176736,0.9410795546136796,-0.06450142432004213,0.9299502591602504,0.14960688911378384,0.4161814609542489,-0.515911708585918,-0.1497799507342279,-0.812036796938628,0.5085458741523325,0.476661863271147,-0.032230403274297714,-0.19204455194994807,0.9048596168868244,0.16030885698273778,0.007113441359251738,-0.7864217264577746,-0.2173203402198851,-0.3219213578850031,-0.7495516468770802,0.9118740689009428,0.9089193698018789,-0.42848474020138383,-0.9553898693993688,0.8066252749413252,-0.7845627479255199,-0.6215800712816417,-0.9559607226401567,0.26039085490629077,-0.6263208161108196,-0.9202057919465005,-0.29091477347537875,-0.8054554220288992,-0.2237305543385446,0.8335225344635546,0.49864763859659433,0.3640036704018712,0.7849438418634236,-0.9947549975477159,0.12515125097706914,0.827848200686276,0.444479264318943,-0.8194919414818287,0.5000011818483472,-0.37155998405069113,0.22247892525047064,-0.6819836422801018,0.7740338379517198,0.31138771399855614,-0.40148382680490613,-0.9757357533089817,0.02641194872558117,0.6809608777984977,-0.16979942517355084,-0.5286737205460668,0.4574962956830859,-0.7283989069983363,0.318190845195204,0.2586109568364918,-0.6278164070099592,-0.31227457616478205,0.8696676688268781,0.6851187064312398,-0.8714154176414013,0.4485024646855891,-0.09274639654904604,0.703182484023273,-0.7528561064973474,-0.7674722052179277,-0.6644264897331595,0.7589238546788692,0.16573503846302629,-0.4393571405671537,-0.6698323525488377,-0.9985014265403152,-0.14032981544733047,0.27438587695360184,0.4448085487820208,0.15803985856473446,0.4386975127272308,0.8455330319702625,-0.8852538326755166,0.4986622901633382,0.49280290910974145,-0.8669552840292454,0.4964414928108454,-0.8776676901616156,-0.9965526536107063,-0.46349116275087,-0.22391310380771756,0.4260679008439183,-0.11473337095230818,0.4822007049806416,-0.09494005190208554,0.5738785988651216,0.869189805816859,-0.36229030368849635,-0.6108888294547796,0.5764787020161748,0.6692848633974791,0.3326633828692138,-0.9440661519765854,0.7781458599492908,-0.9136728351004422,-0.821270024869591,-0.8695373618975282,-0.6898602717556059,-0.7428744425997138,0.018935193307697773,-0.9810060416348279,0.09284433489665389,0.8789100418798625,0.7828313019126654,-0.3379954448901117,-0.2507944400422275,0.45774064818397164,-0.6547759547829628,0.9481939510442317,0.6440323833376169,0.3894325941801071,-0.7762671313248575,0.33322833850979805,-0.19846444390714169,0.8109675189480186,0.7604548376984894,0.4428526069968939,0.7541126259602606,-0.9845623490400612,-0.7788244276307523,0.7950934311375022,-0.40704126795753837,0.7233654838055372,-0.35916512832045555,0.3314899099059403,-0.7917542359791696,-0.042533982545137405,-0.0909029683098197,0.858033315744251,-0.8860525419004261,0.7356346063315868,0.5194333363324404,0.36225256556645036,-0.3989916117861867,-0.7405309407040477,0.5171028226613998,-0.21968376310542226,0.17920317081734538,-0.06590191833674908,-0.3349476377479732,-0.8046028758399189,0.32381104631349444,0.9950766242109239,-0.8763054260052741,-0.8517785957083106,-0.3974130433052778,0.4816969884559512,0.2985116923227906,0.8547687032260001,-0.1413776557892561,0.5034638666547835,0.9122488354332745,-0.6081303497776389,-0.29637894267216325,0.10926074953749776,0.9374734149314463,-0.9063286948949099,-0.32071557082235813,-0.08616329915821552,-0.9629433890804648,0.49011357920244336,0.10944688227027655,0.7704370855353773,0.10011117439717054,0.20344110624864697,-0.577419909182936,-0.05870118411257863,-0.10533862747251987,-0.5330235878936946,0.05339000327512622,-0.6968249855563045,-0.6100652553141117,-0.8504450377076864,-0.39656247291713953,-0.6392113943584263,0.5373346088454127,-0.19906840939074755,-0.08418504893779755,0.7589109241962433,0.07078726124018431,0.24915067106485367,-0.1497652567923069,-0.012232220731675625,0.8541841176338494,0.05892825871706009,0.9939819262363017,-0.5031347740441561,0.7437471873126924,-0.875875505618751,0.5406341142952442,0.28096112981438637,-0.8651250172406435,0.5118492627516389,-0.06380045041441917,-0.3473492464981973,-0.502161699347198,0.07240396086126566,-0.8348364611156285,-0.01535417465493083,-0.7451380635611713,-0.9936000178568065,-0.004927330184727907,-0.4693044940941036,-0.2610778408125043,0.0546298255212605,0.4304480622522533,0.9700121604837477,-0.9396431683562696,0.7510306308977306,0.08807803457602859,-0.04898520279675722,0.4150761212222278,0.08094208687543869,-0.460153354331851,-0.0795505247078836,0.8670993568375707,0.5352593874558806,0.10169864678755403,-0.19965987419709563,-0.44614306185394526,0.39854370383545756,-0.01300376420840621,-0.03258386626839638,-0.08392022689804435,-0.27713413117453456,0.8856211453676224,-0.8368129329755902,0.14387150248512626,0.8795229317620397,-0.007733508944511414,0.9235537541098893,0.021633075084537268,0.061795280780643225,0.15385739272460341,-0.01389119727537036,-0.87751050805673,0.7331949779763818,0.09680944960564375,0.7656086087226868,0.0812527583912015,0.7535196919925511,-0.549442651681602,0.6799690732732415,-0.7026219666004181,-0.872139697894454,-0.0012047160416841507,0.05605121189728379,-0.09236282017081976,0.9687468418851495,0.6661604582332075,-0.012896262109279633,0.799751068931073,0.543757360894233,-0.9386194720864296,0.3137164185754955,0.35356418415904045,0.9676469913683832,-0.13381759310141206,0.8899767799302936,0.20836597215384245,0.6539272079244256,0.2256302060559392,-0.22456834791228175,0.44906954374164343,-0.8996180165559053,-0.5488111390732229,0.8032349492423236,0.3544678930193186,-0.8383955741301179,0.41276025073602796,-0.3630736875347793,-0.2351760589517653,0.0027421084232628345,0.1944128111936152,0.20211464073508978,-0.7540666703134775,-0.0018174913711845875,-0.811275830026716,0.9465360082685947,0.7165606911294162,-0.6099160653539002,0.4874626104719937,-0.7255053240805864,-0.6258182683959603,-0.9222310199402273,0.8674010746181011,-0.3048496493138373,-0.5048821354284883,0.39903615787625313,0.9645455470308661,-0.2566332430578768,-0.45810295129194856,-0.8748289616778493,0.9605216784402728,-0.1891793729737401,0.9590878421440721,-0.7988449274562299,-0.7693392881192267,-0.14908390073105693,0.2945000142790377,0.06499159801751375,0.8412018003873527,0.7680999343283474,0.9419222082942724,-0.44676088402047753,0.3273450084961951,0.8084798189811409,0.06526077445596457,-0.8288595927879214,-0.2679721745662391,-0.42789497412741184,-0.525984441395849,0.33799796598032117,-0.3798272805288434,-0.7914733123034239,-0.7079330193810165,0.33587124245241284,0.03349056700244546,-0.7722503975965083,0.26502864016219974,-0.45334551110863686,-0.23505687760189176,0.7817020751535892,0.9907901673577726,-0.8902361621148884,0.8539343671873212,0.368018118198961,0.7473828550428152,0.6395464679226279,0.07455514976754785,-0.24847077019512653,-0.042898322455585,-0.21901792101562023,-0.06825261982157826,-0.3603155012242496,-0.4828528664074838,-0.42727929865941405,0.0860597426071763,-0.6132679642178118,0.9438066929578781,-0.5381277487613261,0.31280918046832085,-0.7270639422349632,-0.2432658621110022,-0.2201800448819995,-0.528783448971808,-0.9261946459300816,-0.3357554576359689,-0.0013608066365122795,-0.6597255389206111,0.30600155843421817,-0.418934450019151,0.87703773425892,-0.22539482126012444,-0.6055708890780807,-0.2060173535719514,0.7340168608352542,-0.7951584341935813,0.912775207310915,0.49015813833102584,0.9833147409372032,-0.47733380692079663,0.20359647646546364,0.09777897642925382,0.09595495089888573,-0.5849977764301002,0.4952619709074497,0.7280220361426473,-0.06851463159546256,-0.017851002980023623,0.6299213753081858,-0.3119536619633436,-0.98701639380306,-0.5231240964494646,0.003355246502906084,-0.3518817559815943,0.5604446204379201,-0.9911432471126318,-0.31942202569916844,-0.8686894308775663,0.45346939098089933,-0.1699540512636304,0.2764042285270989,-0.9906476153992116,0.19601363968104124,-0.6696105385199189,-0.860427490901202,-0.3504792219027877,-0.9830989758484066,0.36386170983314514,-0.6262053833343089,-0.7976312292739749,0.2321391231380403,-0.5152120529673994,-0.8873244156129658,-0.653069700114429,0.9329549879767001,0.2675210782326758,-0.6379304598085582,-0.8314126953482628,-0.8929647104814649,-0.397765657864511,-0.9444663990288973,-0.38236174872145057,0.16861422965303063,-0.6642399551346898,-0.9411736410111189,-0.9113320540636778,-0.09393088705837727,-0.2384389517828822,0.23275353014469147,-0.9506172956898808,-0.03919821372255683,-0.3630669224075973,0.6998904584906995,0.1166371707804501,-0.712552651297301,0.48948253970593214,-0.1824590233154595,0.5139954197220504,-0.0618475042283535,0.2996406788006425,-0.09528514696285129,0.49106410797685385,0.11394701711833477,-0.19238486606627703,0.002167019061744213,-0.21330211870372295,0.5513108754530549,-0.9902002830058336,0.8945050430484116,0.8064460605382919,-0.8812019755132496,-0.20220222976058722,-0.5888150865212083,-0.575854254886508,0.4982332210056484,0.11416948959231377,0.5212240647524595,-0.48791111167520285,-0.9907536758109927,-0.48305038129910827,0.7132766703143716,-0.8054992649704218,-0.7772607295773923,0.9484139927662909,0.7841290500946343,-0.2931533553637564,-0.013856216799467802,-0.7009230838157237,0.7094274344854057,-0.8900648127309978,-0.11418484756723046,0.9085966809652746,-0.8151148171164095,-0.1053371331654489,-0.05206756433472037,-0.11949037667363882,0.2282274654135108,-0.7118508811108768,-0.2746822675690055,0.15610794769600034,0.7555339559912682,-0.8810065137222409,-0.40453051682561636,-0.2646456817165017,-0.6210310468450189,0.0382527164183557,0.7991151441819966,0.6789263631217182,-0.12031147815287113,0.33823264949023724,-0.019316868390887976,-0.04832146828994155,0.9174671778455377,-0.16101199900731444,-0.8143959930166602,0.22110429452732205,0.016251579858362675,0.6483785747550428,0.8648347412236035,0.7915966608561575,0.4473940571770072,0.7560835280455649,-0.9475799323990941,-0.33008124493062496,0.4983946196734905,0.8000755342654884,0.0940209818072617,-0.20116581302136183,0.08701894851401448,-0.7567470753565431,-0.13136260258033872,0.030797194223850965,-0.8261208506301045,-0.739817466121167,-0.22791350726038218,0.21362341474741697,0.2680525965988636,0.31447720155119896,-0.12085933005437255,-0.8454266642220318,0.7393865305930376,0.8508484801277518,0.09209255548194051,0.634809719864279,-0.9787131426855922,0.0601372248493135,-0.6023958600126207,0.25452864868566394,0.2204724494367838,0.7897654650732875,-0.7748694634065032,-0.45087324921041727,-0.6631920137442648,0.3833597991615534,-0.22272853599861264,0.6384301646612585,0.164002591278404,0.5491030612029135,0.9848068957217038,0.3078934671357274,0.08736858423799276,-0.6073578461073339,0.7434676811099052,0.9285561861470342,-0.5704918717965484,-0.5125442207790911,0.5818353667855263,-0.6618486260995269,0.09174386691302061,0.5984574710018933,-0.5220909384079278,-0.3959699356928468,0.6350795272737741,-0.965284151956439,0.9452325464226305,-0.11939449468627572,-0.6711192596703768,-0.5496629234403372,0.9582081302069128,-0.865206831600517,-0.38533970015123487,-0.8765492048114538,0.010936737060546875,0.2015705402009189,-0.6130622117780149,-0.4726219600997865,0.5666229254566133,-0.12507077306509018,-0.1864125207066536,-0.521420921664685,0.10950575023889542,-0.46764729637652636,0.280565420165658,0.8748666010797024,0.8255534498021007,0.9680610303767025,0.79423454310745,-0.031581057235598564,0.39768409077078104,-0.9013987514190376,-0.37650887155905366,0.36309620505198836,0.7234379416331649,-0.8522418555803597,0.7304671434685588,0.11606549192219973,-0.762954346369952,-0.5314583410508931,-0.886834604665637,0.5531788123771548,-0.9135466166771948,0.9515165602788329,-0.9632916175760329,-0.987855460960418,0.9141678097657859,0.9718884364701807,0.7627350725233555,-0.4346948373131454,-0.6441519800573587,0.3217286919243634,-0.6934580942615867,0.7435668269172311,-0.5835826545953751,-0.7211364889517426,0.43696259381249547,0.9922331990674138,-0.09759345557540655,-0.7394772842526436,0.054379232693463564,-0.4177199508994818,-0.680404799990356,-0.7241495833732188,0.26533756870776415,-0.3041954035870731,-0.7260292083956301,0.25126721803098917,0.6844170605763793,0.35047891549766064,0.06421301001682878,0.9796253833919764,-0.26076026260852814,-0.6834216066636145,-0.269955241587013,-0.3856430761516094,0.12279286421835423,0.9377481839619577,0.6177098350599408,-0.6164944907650352,-0.9834925066679716,-0.233494495972991,-0.4451434197835624,-0.06020978186279535,-0.7260033912025392,0.9195768390782177,-0.7721127113327384,0.9133787914179265,0.7895547230727971,-0.9211704041808844,0.3109100628644228,-0.9848444247618318,0.09655361017212272,-0.5342357759363949,0.24645757535472512,-0.6053281561471522,-0.664091500453651,-0.639246329665184,0.5713926670141518,-0.982834957074374,0.720310065895319,0.46462011709809303,0.8117179074324667,-0.25600390089675784,0.33487343275919557,-0.8255509692244232,0.4541910868138075,0.7067411104217172,-0.8194340914487839,-0.6242523724213243,0.30400837305933237,-0.5164366639219224,0.18089909991249442,-0.6689608572050929,0.8399278856813908,0.02477598050609231,-0.3515685396268964,-0.5454427185468376,-0.315274297259748,-0.14012320199981332,-0.4431323828175664,0.07020128704607487,0.7230918542481959,-0.7706420128233731,0.8907129364088178,-0.021556894294917583,0.22128524305298924,-0.5073927440680563,-0.23726845672354102,0.38281450094655156,0.6852304488420486,0.010002277325838804,-0.4668503678403795,0.6336290827021003,0.40049452520906925,-0.4827080345712602,0.23775847721844912,0.37117050774395466,0.48065814282745123,0.25962346978485584,-0.25967553444206715,-0.004705866798758507,-0.23619780642911792,-0.5662827417254448,-0.4306270284578204,0.6162374597042799,0.017305798828601837,0.6216262564994395,0.3883203878067434,-0.9954968062229455,-0.4724707496352494,-0.5997039140202105,-0.5080856108106673,-0.16205374710261822,0.34452834632247686,-0.0912937126122415,0.33456021593883634,0.8336055292747915,-0.8586543910205364,-0.3273618738166988,0.5146127822808921,0.8754653935320675,-0.5073731653392315,0.7419539811089635,0.14758962811902165,0.8337329803034663,0.9630810050293803,0.6474209148436785,0.9310114667750895,-0.5730787715874612,-0.07425930723547935,0.8484428785741329,0.6089882645756006,0.1604279624298215,-0.48081741482019424,0.6850099363364279,0.5659117312170565,-0.020499010104686022,-0.3283513537608087,0.7832237989641726,-0.10971861472353339,0.6108017317019403,-0.11293581640347838,-0.4725304776802659,-0.7658611638471484,0.44268868677318096,-0.9113708352670074,-0.6601712619885802,-0.5926018189638853,0.5126573136076331,0.5172064006328583,0.3959072972647846,0.6164575382135808,-0.32452604034915566,-0.45824640430510044,-0.880314638838172,-0.36844545882195234,0.19998078793287277,-0.7553739827126265,0.8566121850162745,-0.9570568213239312,0.5057108807377517,-0.21664259722456336,-0.8044271431863308,0.9722869140096009,0.24367406545206904,-0.6852599903941154,0.4985538446344435,-0.18615703145042062,0.8987851748242974,-0.9205603934824467,0.5782117871567607,-0.9718907028436661,-0.32075116131454706,0.7497510518878698,0.9986667213961482,-0.9393398677930236,-0.3308788347057998,-0.8138464069925249,-0.2518515754491091,0.5454132501035929,-0.2027337634935975,0.4842135547660291,-0.5129849393852055,-0.7258693785406649,-0.7174325510859489,-0.8754452769644558,-0.6864881245419383,0.011584513820707798,-0.49097576551139355,-0.5490883961319923,0.7646918222308159,-0.4783511175774038,-0.7656741691753268,0.3827976770699024,-0.18013444542884827,-0.25685538351535797,-0.8266994007863104,-0.3677155487239361,0.8094437792897224,0.2952432441525161,-0.7810152005404234,0.7256088531576097,-0.9823080422356725,-0.563808532897383,-0.0822952319867909,0.6987406704574823,0.7494581188075244,0.9474915112368762,-0.5131463557481766,0.539840426761657,0.8933059936389327,-0.565088895149529,-0.7287924317643046,0.3710980983451009,-0.3197405347600579,-0.7935209097340703,-0.03900138335302472,-0.33274499187245965,0.19644005363807082,-0.1855952087789774,-0.701969032175839,0.9234896977432072,0.692586537450552,0.6656925273127854,-0.7691711848601699,0.783645695541054,0.2377339289523661,0.0858293347992003,-0.12081168312579393,0.02653380250558257,-0.08848846750333905,0.8256268477998674,0.19849847815930843,0.7139631775207818,-0.2630525007843971,0.6457849703729153,0.5598074053414166,0.7385926195420325,-0.8416313417255878,0.8069022749550641,0.2622792851179838,-0.01638416899368167,0.7851351727731526,-0.34576717391610146,-0.25598087906837463,-0.7703184457495809,0.2531888852827251,0.38913507107645273,-0.08199363527819514,-0.45354303158819675,0.9990160241723061,0.9448903035372496,-0.543491592630744,-0.9044836773537099,0.8700538268312812,-0.4101428962312639,0.28161047119647264,0.8937282683327794,0.5933277932927012,-0.49297771975398064,0.15714133065193892,-0.8429162818938494,-0.32662395015358925,0.8938797898590565,-0.4203013591468334,0.3544888258911669,0.3754488821141422,0.33018305664882064,0.8394213602878153,-0.694892643019557,0.5382436355575919,-0.6078792419284582,0.38547075306996703,-0.04583590477705002,0.22464948846027255,0.5017342371866107,0.8549632444046438,0.44702872168272734,-0.2816503490321338,-0.3153222822584212,0.9839338767342269,-0.8046175912022591,-0.9265494039282203,0.7509792814962566,-0.4666991299018264,0.7764047370292246,0.3557437490671873,-0.5950383585877717,0.7900895052589476,0.2719484129920602,0.6028615958057344,-0.0088085294701159,0.777754292357713,0.24642174364998937,-0.8111884146928787,-0.1202362235635519,0.7523304168134928,0.4395432258024812,0.24453985458239913,0.8928369744680822,0.22864528046920896,-0.3876960636116564,0.36677712434902787,0.1554658063687384,0.6045530335977674,0.025778834708034992,0.2297497815452516,-0.1373210116289556,0.85999870672822,0.050622804556041956,0.8382911114022136,-0.9498986979015172,-0.8219837117940187,-0.30120349349454045,0.38391429651528597,-0.43754664761945605,0.16265370231121778,0.23903920501470566,0.06672344449907541,0.6538371709175408,0.10073179146274924,-0.13990284595638514,0.7816835343837738,-0.261935580521822,-0.3588539380580187,-0.09844372095540166,0.8747879853472114,0.5917210825718939,0.5529012242332101,-0.8384813056327403,0.021851648576557636,-0.3190641039982438,-0.3083711168728769,0.7946947934105992,0.06307819997891784,-0.7073916373774409,-0.2308482606895268,-0.23853624518960714,-0.905845473986119,0.39859566651284695,-0.667119808960706,-0.11895562522113323,0.16070390725508332,0.10215511033311486,0.9199506109580398,0.067405023612082,0.6764937145635486,0.1183986202813685,0.47707598423585296,-0.6486701346002519,0.34831068059429526,-0.306321163661778,-0.5795268407091498,0.3363352809101343,0.03696562955155969,0.7012311359867454,-0.12462371261790395,-0.10329645359888673,-0.8781594266183674,0.365419021807611,-0.1251975973136723,0.5986048593185842,0.09393273293972015,0.3027568580582738,-0.90815071715042,0.2532648700289428,0.43620016565546393,0.4743275376968086,0.744181479793042,0.795174899045378,0.7386770392768085,-0.8888799296692014,-0.6112616797909141,-0.6564069003798068,-0.511728074401617,0.6808002931065857,-0.3223347207531333,0.4978741044178605,0.4823486693203449,-0.21615074947476387,0.580488748382777,-0.7321877237409353,0.4673270061612129,-0.7357300552539527,0.14752455707639456,0.0804900280199945,-0.9008978591300547,-0.5929572801105678,0.0055856225080788136,0.21156034246087074,-0.6359405512921512,0.9360633115284145,0.3593220738694072,-0.6636453405953944,0.8613291759975255,-0.3766097309999168,-0.9543495457619429,0.5382695430889726,-0.9636891637928784,0.48864716151729226,0.35651213582605124,0.17426164774224162,-0.42868143832311034,0.8800562131218612,0.9648214862681925,-0.9837790802121162,0.8509184699505568,-0.16251403419300914,0.9087790055200458,0.5837251674383879,0.9495944008231163,-0.15539264772087336,0.7293297899886966,-0.9138059141114354,-0.11098128324374557,-0.9874749495647848,-0.9188662297092378,-0.06136531662195921,-0.0309762773104012,-0.24096951354295015,0.9168244148604572,0.8602005015127361,0.04396576387807727,-0.17985155433416367,-0.5966862179338932,-0.7276888624764979,0.45045660017058253,0.04551946837455034,-0.037615726701915264,0.7983427792787552,-0.6204076022841036,0.833008412271738,-0.8450694940984249,-0.6552061545662582,-0.9740519784390926,0.5001201210543513,0.036236478481441736,-0.6774796205572784,0.5122246262617409,-0.2044527200050652,-0.2046430422924459,0.02226481167599559,-0.49254400189965963,0.2510771187953651,0.7913390975445509,0.9948681192472577,-0.1657331488095224,-0.9513323428109288,0.7463762760162354,-0.6886369450949132,0.5320736165158451,-0.8894466059282422,-0.20082383789122105,-0.6868177629075944,-0.2925292272120714,0.9739930629730225,0.36263314727693796,-0.18505757441744208,0.19807167071849108,-0.9886074862442911,0.1174468258395791,-0.6766669023782015,-0.17167423758655787,0.13744584703817964,-0.19630971876904368,-0.6677173371426761,0.6874055545777082,-0.08683109562844038,-0.6556101329624653,-0.7681217598728836,-0.3486312930472195,0.2390591586008668,0.6748032909817994,0.8746407548896968,0.7583465445786715,0.06702721491456032,0.8450444065965712,0.6332004866562784,0.8632998764514923,0.04693159367889166,0.7889143615029752,0.20943698287010193,0.4011154156178236,-0.9856447144411504,0.07440773211419582,0.6422046585939825,0.049706023186445236,-0.22588851023465395,-0.546676890924573,0.3926881607621908,-0.19329156819730997,-0.6869786782190204,-0.13007322885096073,0.598196308594197,-0.6792120155878365,-0.4092793585732579,-0.5821448531933129,-0.6025969157926738,0.3781378506682813,-0.5423301546834409,-0.49147222377359867,-0.969481036067009,0.8752344259992242,0.42391271609812975,-0.9555481877177954,-0.29819160467013717,0.8089411472901702,-0.9046392771415412,0.12650072574615479,0.39166572503745556,0.20489689148962498,0.7177969976328313,0.3554158126935363,-0.2750497367233038,0.06092356611043215,-0.382117317058146,-0.12082626624032855,0.4227002961561084,0.2698799376375973,0.7763827168382704,-0.8052119272761047,-0.514898226596415,0.9369057677686214,-0.22409638995304704,-0.5270140976645052,-0.6186319626867771,-0.4691669922322035,0.9783684564754367,0.0019699051044881344,-0.6635752976872027,-0.46634633373469114,-0.9392044069245458,0.9228980075567961,0.4551368961110711,0.03130700392648578,0.3871169723570347,-0.013363315258175135,-0.20806159125640988,-0.9043746199458838,0.694880832452327,-0.7963597243651748,0.528860311023891,0.40452788351103663,-0.25516488729044795,-0.7047896720468998,0.7670434322208166,-0.7991805784404278,-0.7982153063639998,0.08032529568299651,-0.9715127828530967,0.633710500318557,0.6577706537209451,-0.887623970862478,0.20898539060726762,0.16436703456565738,-0.831813613884151,0.9405996752902865,-0.9236095091328025,0.739288920070976,-0.5295375380665064,-0.16675932379439473,0.9886904954910278,0.04801456118002534,-0.1615203581750393,-0.07481607981026173,0.006603243760764599,0.16691899904981256,-0.33118236996233463,0.382290159817785,-0.5274106450378895,-0.7919800379313529,0.3725823084823787,0.7335470877587795,0.6698494832962751,0.7635424570180476,0.07243046723306179,-0.314724110532552,-0.43051138520240784,-0.8518338189460337,-0.32576166186481714,-0.1568828416056931,0.08950662054121494,0.32639678893610835,0.4660904328338802,0.376367577817291,0.19966515759006143,0.32144032744690776,-0.1826342511922121,-0.40760016022250056,-0.57235805131495,-0.23164074681699276,-0.5639693136326969,0.5842525567859411,0.3620905466377735,0.16819267347455025,-0.9906943426467478,0.01804300444200635,0.661536798812449,0.0265071545727551,-0.2340699741616845,-0.7396710747852921,-0.18000834621489048,-0.2908754851669073,0.10168185876682401,-0.15066032065078616,-0.30659478018060327,0.8338331198319793,-0.7546881577000022,-0.10815430618822575,-0.9505980657413602,-0.5904077347368002,-0.8241994450800121,-0.8170600985176861,-0.21891607251018286,0.9281640728004277,0.32126108137890697,-0.1936726700514555,-0.7337772022001445,0.37381952814757824,-0.19385884888470173,-0.813469575252384,0.9067166987806559,-0.13564210711047053,0.48066483112052083,-0.7025443711318076,0.11112463474273682,0.6879538986831903,0.6513823019340634,-0.45357360038906336,0.819672164041549,-0.4440101133659482,-0.08524800604209304,-0.8470634007826447,0.3615857814438641,0.5247257798910141,-0.9649616414681077,0.4777537900954485,-0.0840337397530675,-0.04577044816687703,-0.12342106271535158,-0.1786973299458623,-0.010057132225483656,-0.48822989827021956,-0.8801244283095002,-0.8273496059700847,-0.7850823905318975,0.8377255839295685,0.4552690531127155,-0.3340294789522886,-0.001918497495353222,-0.15550881065428257,-0.3335837204940617,0.5920283319428563,-0.12394991097971797,0.8451000452041626,-0.47111359471455216,0.18581873690709472,0.7017347514629364,-0.08823435055091977,-0.9845205349847674,0.9522827030159533,-0.7679999591782689,-0.894335116725415,-0.8690945953130722,0.06661314936354756,0.9900366482324898,-0.6848021205514669,-0.5617602341808379,-0.8205310860648751,0.5747311282902956,0.9564453419297934,0.7155048255808651,0.9649862977676094,0.8306979830376804,0.6165300612337887,-0.9182621715590358,0.2791988276876509,0.2753474544733763,-0.3945328085683286,0.9398136441595852,-0.38072577118873596,-0.9729796829633415,-0.7888308120891452,-0.8112848638556898,-0.2853800458833575,0.5441632131114602,0.38073314633220434,0.07159241335466504,0.7606254816055298,-0.9344736109487712,0.682725131046027,-0.06827638437971473,-0.008407988119870424,-0.42594888526946306,0.49323908472433686,-0.2413329449482262,0.08815322909504175,-0.6146641275845468,0.9130875249393284,-0.21135564986616373,-0.5779949612915516,-0.35610086377710104,0.47961777774617076,-0.9392878995276988,-0.20519215054810047,-0.5892151785083115,-0.6189808663912117,0.07841681968420744,0.40258515579625964,0.8869038335978985,-0.3937722542323172,0.7914798948913813,-0.7040132489055395,-0.5569465393200517,-0.2724184859544039,-0.19476290652528405,-0.5383850284852087,-0.1427412503398955,0.6989963464438915,0.4660848556086421,-0.2073007971048355,0.7838110281154513,-0.28083860548213124,-0.7934865560382605,-0.43668857496231794,-0.8528463016264141,0.599792764056474,-0.8822510903701186,-0.1687901192344725,0.8639639210887253,0.9179626107215881,0.37508015567436814,-0.5264695528894663,0.48643072228878736,-0.3711813995614648,0.02175034675747156,0.10593668883666396,0.20441136043518782,0.510387594345957,0.6523594437167048,-0.29943836061283946,-0.5601868657395244,0.0729511147364974,0.5326220719143748,0.7193013499490917,-0.05972373951226473,0.8511565127409995,-0.5651285811327398,-0.013342712074518204,0.46778342965990305,0.21585250459611416,0.4623417155817151,-0.4420167077332735,-0.8472769814543426,-0.04745447961613536,0.6894730441272259,0.4790138630196452,-0.11606602231040597,-0.0646565081551671,0.9037922560237348,-0.6503783883526921,0.557029212359339,0.9372940212488174,-0.24059459986165166,-0.757779021281749,-0.678771860897541,-0.28051369450986385,0.6562798041850328,-0.7190499985590577,-0.5215041125193238,0.29698855616152287,0.8303179848007858,0.13292855210602283,0.08308267267420888,0.8737532864324749,-0.09064922714605927,-0.7786838673055172,0.590163947083056,-0.5159783512353897,0.3331354525871575,0.4609936554916203,0.4568562447093427,0.26247962517663836,0.41230066679418087,-0.21839313954114914,-0.07058394607156515,-0.3158476953394711,0.9913213807158172,-0.6534842415712774,0.16449222387745976,-0.057542866095900536,-0.2607440375722945,-0.265559206251055,0.7579480111598969,-0.8600170915015042,-0.5515584303066134,-0.331481094006449,-0.3095603114925325,0.017058401834219694,0.3527049748227,-0.26841003354638815,-0.3709833645261824,-0.16617893474176526,-0.3076132512651384,0.41966448491439223,0.06541133671998978,0.11109266709536314,0.8694461765699089,0.8984849867410958,-0.33093296783044934,-0.6240857206285,-0.6578278839588165,0.027706122491508722,-0.5194737622514367,-0.8179101017303765,-0.40370493149384856,-0.3956191395409405,-0.580036471132189,0.7798325596377254,0.9655327890068293,0.003959150053560734,-0.25357384653761983,0.6354030976071954,-0.9789506741799414,-0.470143283251673,-0.9773343037813902,0.8503762539476156,-0.9414262813515961,-0.9836092535406351,0.21011473424732685,-0.37820253567770123,0.669848118443042,0.5080124740488827,-0.7221634299494326,-0.443008950445801,-0.621106387116015,-0.18885227153077722,0.34015954099595547,0.419256710447371,0.3192619294859469,-0.5114498836919665,-0.8440113007090986,-0.8408691068179905,0.08150991750881076,0.9455840936861932,-0.3204745026305318,-0.8602501661516726,-0.6787156709469855,-0.951794218737632,-0.8765499042347074,0.0619318000972271,-0.9670126433484256,0.16003634314984083,0.02438859362155199,-0.8834155015647411,0.06880975933745503,-0.8933122996240854,-0.33713075844570994,0.31999807991087437,-0.6537818824872375,-0.3122407775372267,-0.8299302002415061,-0.620434729848057,0.9802799629978836,0.7306998902931809,0.010577540379017591,-0.09298443235456944,0.9849890931509435,-0.804884625133127,0.9132338091731071,-0.8793136142194271,-0.6490204012952745,0.20526756020262837,0.9164184471592307,-0.22662866814062,0.42320978455245495,0.619559548329562,0.2159250397235155,0.5168317053467035,-0.8684560968540609,-0.7212710189633071,0.6491025961004198,0.09366664942353964,-0.975663099437952,0.3389616762287915,0.3318469310179353,0.24362115655094385,-0.9731116290204227,-0.05524406582117081,0.8459090669639409,-0.1455399007536471,0.8484325762838125,0.053713031113147736,0.9958725706674159,-0.2510539796203375,0.9310845113359392,-0.09146686783060431,0.5695510958321393,0.30802554776892066,-0.8914342578500509,0.5584862329997122,-0.003979270812124014,0.011579879559576511,-0.20227416837587953,-0.025039258878678083,0.5329135227948427,-0.773675630800426,0.10950989834964275,0.19966155430302024,0.03351623145863414,0.2288738456554711,0.25078354915603995,-0.6737150996923447,0.028724197763949633,-0.9145984980277717,0.7276262938976288,-0.5287556205876172,0.11790261836722493,-0.8221190623007715,0.9377131415531039,0.8395940666086972,-0.48199232667684555,0.5179651258513331,-0.012998092453926802,0.7409700849093497,0.7569596124812961,-0.8400040497072041,0.781271108891815,-0.917309807613492,-0.5181033345870674,0.9498820994049311,-0.5985798430629075,-0.6161433989182115,0.48472868045791984,-0.84069665055722,-0.2017885111272335,-0.48017299780622125,0.7156755598261952,-0.47685194201767445,-0.9660701462998986,0.18321764608845115,-0.376621107570827,-0.7920396327972412,-0.29840773809701204,-0.8731338242068887,-0.28405590495094657,0.3695911015383899,-0.566889631561935,-0.3670650268904865,-0.9051071060821414,0.5458199046552181,0.4251564107835293,0.3853611722588539,0.23625187948346138,0.06765498034656048,0.4585802685469389,-0.8877629707567394,0.5656391247175634,-0.26747218426316977,-0.9403887325897813,0.46908497950062156,0.08129262737929821,0.786304366774857,0.22754894057288766,-0.4802261656150222,0.027300605550408363,0.14804924139752984,-0.13987545017153025,0.25585692981258035,0.20013764826580882,-0.4102873303927481,0.5443105762824416,-0.9424838861450553,-0.5947043634951115,-0.1840131338685751,0.30649377359077334,-0.15563299041241407,-0.06840710900723934,-0.21817726688459516,-0.7511456240899861,-0.2515194695442915,0.9480346068739891,-0.42661030450835824,-0.9375884486362338,-0.871738076210022,-0.9030861486680806,0.12036152323707938,0.0218950929120183,-0.4125054939649999,-0.5670560784637928,0.9565984113141894,-0.7670159852132201,-0.10025588469579816,0.7280452479608357,0.5375226181931794,-0.7733568036928773,-0.2468813071027398,0.643507981672883,0.2803308768197894,-0.41376850567758083,-0.9595552831888199,-0.8398757204413414,-0.2757930513471365,0.7397477142512798,-0.796913851518184,-0.2540836175903678,0.6593930069357157,-0.6356865181587636,-0.38038345240056515,-0.7107313703745604,-0.41172184655442834,-0.1586736412718892,8.703349158167839e-05,0.4632913311943412,0.17275766795501113,0.004938898608088493,-0.8707021498121321,-0.004997088108211756,-0.28264972986653447,-0.7946853241883218,-0.9881009892560542,-0.9718906176276505,0.595856124535203,0.18410257948562503,-0.7975302333943546,-0.25889928126707673,0.19888419285416603,0.37512157391756773,0.0420459546148777,0.8079806114546955,-0.11013105511665344,0.6063985577784479,-0.04928505374118686,-0.30223981896415353,-0.39340555388480425,-0.4993699947372079,-0.22537053981795907,0.08873837348073721,-0.9686989085748792,0.268031173851341,-0.621876232791692,-0.09929076163098216,-0.3233248949982226,-0.1341757569462061,0.1794292009435594,-0.036374923307448626,0.29215280851349235,0.9241541814990342,0.7544890358112752,0.6438171458430588,-0.9756486588157713,-0.5817635348066688,0.21079783514142036,-0.5894927140325308,0.5004257140681148,0.9483729526400566,0.1311328075826168,-0.2201657104305923,0.31356166722252965,0.7088996823877096,-0.49241348914802074,0.16985741956159472,0.44909962080419064,0.36442696675658226,-0.10894148331135511,0.5588657418265939,-0.45532138319686055,-0.6815399066545069,-0.38203710690140724,-0.04236485995352268,0.23580145044252276,-0.4993144003674388,-0.5984366778284311,-0.9499304131604731,0.28693917812779546,0.36823172867298126,-0.34477111976593733,0.3406124575994909,0.01015722332522273,-0.5885324724949896,0.30398602271452546,0.11887813592329621,-0.8919543181546032,-0.40179257886484265,0.764342023525387,0.18419581046327949,-0.01132560707628727,-0.919542814604938,0.7889849273487926,-0.7760378583334386,-0.7541182297281921,-0.41801744839176536,0.1861611558124423,-0.10808530449867249,0.6522080600261688,-0.36605743411928415,-0.25508974539116025,0.8817230737768114,0.4049408147111535,0.5723645193502307,0.3062429563142359,-0.8447278118692338,0.39434788143262267,0.026493125595152378,0.5177020383998752,-0.25757908588275313,0.38844391191378236,-0.3948797984048724,0.47731578815728426,0.3298379434272647,-0.891622506082058,0.7027932647615671,0.061202915385365486,0.8385244687087834,0.5257577775046229,-0.9489178596995771,0.02822681749239564,-0.7321360665373504,0.848888423293829,-0.37264232244342566,-0.1791200488805771,0.7270755651406944,0.9630409306846559,-0.7977591706439853,-0.0664141639135778,0.41366077959537506,0.1021251492202282,0.008514680434018373,0.12585784634575248,0.2545720571652055,-0.4803458503447473,-0.1921950918622315,-0.3270644601434469,-0.9233282441273332,0.7877011774107814,-0.18247663602232933,-0.5028749755583704,-0.0728344852104783,-0.38973891269415617,0.9730815081857145,-0.0791253698989749,-0.5740308263339102,0.7844335190020502,-0.19969664374366403,0.10730630485340953,-0.6699958937242627,-0.563130852766335,0.7960463496856391,-0.40182742243632674,-0.5363317183218896,0.042836740147322416,-0.25607002805918455,-0.5599117344245315,0.48653954500332475,-0.9938208684325218,-0.6090976558625698,0.6982998624444008,-0.37547449860721827,-0.43831835594028234,-0.07662269892171025,0.08479062933474779,-0.5334377437829971,0.37803014321252704,0.23894249089062214,0.6202401081100106,-0.19275095080956817,-0.43306264327839017,0.08189222309738398,-0.3096100310795009,0.5930933165363967,0.4669770123437047,0.8385376846417785,-0.6545661971904337,-0.07300071232020855,-0.13111540442332625,-0.7615352193824947,0.6787804844789207,-0.9442811431363225,-0.37776368390768766,0.7334641283378005,0.1142486771568656,-0.7433195817284286,-0.28344539646059275,0.46449909964576364,0.7368217357434332,0.0927830901928246,0.9275864623486996,0.18392201606184244,-0.1482284450903535,0.4131069416180253,-0.7718592202290893,-0.25755253061652184,0.7419939278624952,-0.6170350168831646,0.8711155410856009,-0.3325703633017838,-0.2798920553177595,0.7598573016002774,0.3481554565951228,-0.3215343588963151,0.46166181610897183,-0.5836089910008013,-0.3696477538906038,0.40888532157987356,0.13177940668538213,0.6446991413831711,0.8853066163137555,-0.7535418150946498,0.7536229775287211,0.1735051954165101,-0.43689609318971634,-0.6758054103702307,-0.2967651104554534,-0.7433695569634438,0.4046879573725164,0.3785631572827697,0.4149636337533593,-0.2610171400010586,0.7283919835463166,-0.4336631274782121,-0.6112332525663078,0.3856142773292959,-0.6152162440121174,0.5741558652371168,0.6448346273973584,0.7009344180114567,-0.20124466018751264,0.33715152414515615,0.5147831658832729,0.48064424376934767,-0.9629274285398424,0.6379643729887903,-0.9768591704778373,-0.20708864415064454,-0.4604723541997373,-0.08976354217156768,0.03584194276481867,0.6698267199099064,-0.6086292462423444,0.34757435508072376,0.23231973545625806,0.15419467724859715,-0.8268944900482893,0.3014884330332279,0.8147019110620022,0.6777905984781682,0.05770857632160187,-0.7207756265997887,-0.22379477648064494,0.6872205785475671,-0.03690306283533573,0.2017374187707901,-0.6193382916972041,-0.9611502555198967,0.5103991664946079,-0.3096431437879801,-0.22991644125431776,0.3871756633743644,0.9280667207203805,0.5867998297326267,-0.22819588566198945,-0.10804366832599044,-0.03347812965512276,-0.6629000464454293,-0.7839096910320222,0.12546618096530437,0.21928907511755824,-0.9121258542872965,0.4493611929938197,0.2380680381320417,-0.880080500151962,-0.3623903007246554,-0.9236000832170248,-0.7765908823348582,-0.31292649870738387,-0.691727327182889,-0.20845300098881125,0.7228641635738313,0.1149852741509676,-0.6984649677760899,-0.23699110466986895,0.4800394484773278,-0.5739787705242634,0.6095032473094761,-0.9899768899194896,0.6813327171839774,-0.7788505125790834,-0.33138197660446167,0.2674845331348479,0.6037579798139632,0.6757395886816084,0.031750783789902925,-0.4886769172735512,0.936816371511668,0.3623029119335115,0.17899321811273694,0.10537524288520217,0.6990528390742838,-0.11289932578802109,-0.7601239611394703,-0.2982617155648768,0.2855836651287973,0.3512617745436728,0.6049494883045554,-0.569414627738297,0.7565051740966737,0.5987681965343654,0.8803239651024342,-0.7165746614336967,-0.4054620238021016,0.3222288708202541,-0.372449045535177,0.035015254747122526,0.8154320549219847,0.10171045269817114,0.75424167746678,-0.3100341516546905,-0.3014269294217229,0.13518327055498958,-0.8388859494589269,0.2989308154210448,-0.5038261613808572,0.3789102300070226,0.80466387886554,0.7809519907459617,0.5276711396872997,0.9143091291189194,0.30016985442489386,-0.42692792089655995,-0.033744491171091795,-0.2425750163383782,-0.9719288591295481,0.7186354156583548,-0.46469349320977926,-0.9194361106492579,-0.595502246171236,0.15044421656057239,0.053265361580997705,0.6012457925826311,-0.5281007657758892,-0.33106302423402667,-0.14523275615647435,0.9898619330488145,-0.9590848716907203,0.1822667750529945,0.3742978721857071,0.9385721464641392,0.8408825900405645,-0.8864596746861935,-0.29207933600991964,0.8319500684738159,-0.06652400083839893,-0.6004355573095381,0.01269351877272129,0.376093409024179,0.14873158000409603,-0.3017935114912689,-0.6983735859394073,0.45622733049094677,0.8779770694673061,0.23849433241412044,-0.43921199394389987,0.477997905574739,0.86881741322577,0.963226200081408,0.34495377633720636,-0.047124124597758055,-0.2899067592807114,0.02407640451565385,0.46540165366604924,0.09351081447675824,0.7023965888656676,-0.08071657223626971,-0.9009903930127621,-0.17976457392796874,0.05721121048554778,0.24429605109617114,-0.974513491615653,-0.8092189379967749,0.604780743829906,0.17745574889704585,0.5501111298799515,0.845810666680336,-0.7686953828670084,0.3892370820976794,0.8037945944815874,-0.23042865749448538,0.47560912324115634,-0.6489012129604816,-0.8218892170116305,0.38386457320302725,-0.49512374913319945,0.5280299508012831,-0.3360827676951885,0.7351400349289179,0.19061975879594684,-0.31295357178896666,-0.3813307867385447,0.4096644907258451,0.23495545098558068,0.26983459619805217,0.12483163084834814,0.9326762692071497,0.02305657835677266,0.9219044367782772,0.06592205725610256,-0.7747588730417192,0.2118999445810914,0.9881328823976219,0.08068017056211829,-0.42369808722287416,-0.39240721613168716,-0.17643338162451982,0.8884594421833754,-0.8892192905768752,-0.9757663677446544,0.8972075278870761,0.34132088581100106,-0.010243230499327183,-0.9844581056386232,-0.6766865542158484,-0.6805913159623742,0.46995533211156726,0.9665157473646104,-0.012646375223994255,-0.7757254024036229,-0.40569455549120903,-0.6077436646446586,0.14797439659014344,-0.2869012067094445,0.024594032671302557,-0.9608134687878191,0.5641325251199305,-0.0889917416498065,-0.930374066811055,-0.9524470278993249,-0.9722044826485217,-0.8297287770546973,0.7217663303017616,-0.35283249942585826,0.43339421693235636,0.29358230670914054,-0.29372840840369463,0.42469892790541053,-0.13234603265300393,-0.7219915878959,-0.5710909888148308,-0.7487220759503543,-0.21564273862168193,-0.15020993910729885,-0.290907506365329,-0.5463765859603882,0.5523194400593638,0.6840508035384119,-0.6377997086383402,0.8454184108413756,0.3266253313049674,-0.5488709677010775,0.30550141213461757,-0.37583418656140566,-0.6639876649715006,-0.15174918808043003,0.7322105737403035,0.5089249010197818,-0.8183349655009806,0.38087737560272217,0.6719097718596458,0.3604491292499006,-0.20035914797335863,0.7446082616224885,-0.8439519144594669,-0.5505849509499967,-0.9791573444381356,0.1764423754066229,0.8507991819642484,0.14872336108237505,-0.9450108390301466,-0.06889857444912195,0.5294210449792445,-0.779632456600666,0.25670900335535407,-0.5166194350458682,-0.6173720867373049,0.009183111600577831,-0.6874968926422298,-0.6078876783140004,-0.41996616777032614,0.8427515244111419,0.6699214759282768,-0.9830207829363644,-0.41590557619929314,-0.11296152183786035,-0.5922836591489613,-0.4121916964650154,0.3563224491663277,-0.6941249668598175,0.6639159033074975,-0.5464699668809772,0.8580229361541569,-0.5889641181565821,0.7599638612009585,-0.058297313284128904,-0.1662029568105936,-0.4333252739161253,-0.4714437210932374,0.10972685227170587,0.29352506063878536,0.1770201246254146,0.36860703118145466,-0.4643478221260011,0.8180002016015351,-0.6529014012776315,-0.7332588685676455,-0.8015744131989777,-0.2517329338006675,0.9394472185522318,-0.3880967707373202,-0.22599269123747945,0.21837343974038959,0.7463999730534852,-0.5449544587172568,-0.07835341477766633,0.4772623055614531,-0.5965250171720982,0.11250582337379456,0.3490476505830884,0.558160332031548,-0.7619546288624406,0.7498674215748906,-0.06991883926093578,0.44372832775115967,0.7573421741835773,0.22615647036582232,0.5076298131607473,-0.9999895631335676,0.8314045961014926,-0.9229425489902496,0.5893446337431669,-0.42848332738503814,0.11829726165160537,-0.5619231853634119,-0.06018399819731712,0.24977663159370422,0.06804358586668968,0.14465139620006084,0.016293637920171022,-0.6223904974758625,-0.6395876281894743,-0.7726220968179405,0.734187685418874,-0.07126274332404137,0.49545925902202725,0.5580692091025412,-0.8767070369794965,-0.23907835921272635,0.3865225841291249,-0.02993802633136511,0.20192583417519927,-0.9063147618435323,-0.00297216372564435,-0.1470765876583755,0.0071422019973397255,-0.46670934464782476,-0.2634332668967545,0.5967156067490578,0.3778357985429466,0.6068149614147842,-0.32799812452867627,-0.888231236487627,0.6325417151674628,-0.3170594680123031,0.3990937704220414,0.7662320178933442,0.5158753180876374,-0.34541897708550096,0.21928939502686262,-0.39916184497997165,-0.18406293401494622,0.15392542677000165,0.9316830704919994,0.9912577662616968,0.9342356808483601,0.9236566331237555,0.3415103489533067,-0.5673532076179981,-0.1716451491229236,0.9496201938018203,-0.13813055539503694,0.7647383161820471,0.6981031806208193,-0.10120677435770631,0.571300994604826,0.5878202319145203,-0.4664499191567302,-0.5393382594920695,0.29177785385400057,-0.5795999220572412,0.9572397996671498,0.7214882927946746,-0.15114897722378373,0.10018838569521904,-0.2737979292869568,0.14297538623213768,0.0006838752888143063,-0.7497697309590876,0.28189679235219955,-0.9884429476223886,-0.8072981075383723,-0.9833276676945388,0.6029423493891954,0.2951231487095356,-0.31298808101564646,0.47837654687464237,0.5536763384006917,0.6413188609294593,0.7655017557553947,-0.4591528279706836,-0.16927008237689734,-0.9050105083733797,-0.5860106088221073,-0.16962545784190297,0.3436771035194397,0.07709792628884315,0.41142021818086505,0.8667710581794381,0.5595497405156493,-0.8832873832434416,-0.519016673322767,-0.9451116342097521,-0.965624778997153,-0.20115226553753018,-0.9125572871416807,-0.8150788061320782,-0.345667592715472,0.419319243170321,-0.6003647530451417,-0.9049783116206527,0.3238298478536308,0.3285245359875262,-0.1408450431190431,-0.9585548243485391,0.10125261265784502,0.12132518319413066,-0.724783243611455,0.38234091829508543,0.7055517206899822,0.2988661271519959,-0.9077095943503082,0.696898193564266,0.16314578102901578,-0.44637426268309355,0.32537494879215956,-0.3419704739935696,-0.7081177746877074,0.7145623499527574,0.14174211770296097,0.8423477844335139,0.5712749073281884,0.7642943463288248,-0.019108153879642487,0.9412500057369471,-0.9102734620682895,-0.5213606301695108,-0.5171213881112635,0.6864092466421425,0.2662127949297428,0.05561544420197606,0.5743379476480186,-0.18266687588766217,-0.48759791860356927,0.6823417460545897,0.4016242306679487,-0.3224851465784013,0.8006613804027438,-0.3207833911292255,-0.015330101829022169,-0.39652756229043007,0.4224148695357144,0.922411372885108,-0.8710214104503393,0.09969085874035954,-0.45147958071902394,-0.2976769981905818,0.5670814765617251,0.6120670405216515,0.5797013631090522,0.8854441638104618,-0.898993369191885,0.5107775521464646,0.7498215888626873,0.4333722637966275,0.7672935859300196,-0.41750076692551374,0.20275528077036142,0.3663980755954981,0.925911602564156,-0.8372702179476619,0.9466657186858356,-0.047110993415117264,0.5007987427525222,0.006264402065426111,0.07039989531040192,-0.02817956730723381,0.15918856440111995,0.9708676016889513,0.061717210337519646,-0.38390356255695224,-0.9305259203538299,0.15153538947924972,0.9373879069462419,-0.33687631879001856,-0.9826778233982623,-0.38776966743171215,-0.9787546237930655,0.45093815866857767,-0.29660454858094454,-0.7088253600522876,-0.6143921418115497,-0.59850651351735,0.43538322392851114,-0.5667765699326992,-0.8876651618629694,0.7783893141895533,-0.4491969677619636,-0.28357488801702857,0.5064652790315449,0.34480999410152435,-0.10088696284219623,-0.3607069430872798,0.513934291433543,0.6159309903159738,-0.8224542289972305,-0.2467365488409996,-0.18341240053996444,-0.5529733505100012,0.3808297598734498,-0.6353980763815343,0.8301769918762147,0.6688019223511219,-0.3937619086354971,-0.4837210401892662,0.08370634401217103,-0.9319054088555276,-0.08991123316809535,-0.13990036258473992,-0.025210879743099213,-0.11668283632025123,-0.45432127034291625,0.6836002115160227,-0.08447158755734563,0.8084106612950563,0.5719820717349648,0.9832611531019211,-0.6298887324519455,0.5749848098494112,0.91204888606444,0.6328865275718272,-0.3791327616199851,0.04695825604721904,0.4518762198276818,0.8960191966034472,-0.48879179591313004,-0.07998280739411712,0.9465048396959901,0.11673050094395876,0.507708159275353,-0.7780811153352261,0.9439490055665374,-0.676591585855931,0.16978975804522634,-0.679679261520505,-0.17723323265090585,0.2765081273391843,-0.3747298396192491,-0.4865164584480226,0.9562193369492888,-0.9151421068236232,0.8028972670435905,-0.6439022021368146,0.9658860899507999,0.9849287248216569,-0.4720719736069441,0.0752888941206038,0.4422923675738275,0.12434793170541525,0.8014997718855739,0.2969167889095843,-0.015887845307588577,-0.5648235944099724,-0.35412610648199916,0.29676156723871827,0.6279937676154077,-0.7969533707946539,-0.033936803229153156,0.29572085523977876,0.06279355427250266,-0.01844130828976631,0.7028266997076571,0.4659756636247039,0.7355833756737411,0.9160747053101659,-0.4597607124596834,-0.5030594537965953,0.5235248608514667,0.2413941789418459,-0.8795211045071483,-0.6453560115769506,0.80301547748968,0.9031252423301339,0.0049429964274168015,-0.6235669092275202,0.11070343758910894,-0.9990614927373827,0.6107497485354543,-0.7153850444592535,0.8973033996298909,0.05797301419079304,-0.5981114450842142,0.6502133351750672,-0.6900657736696303,-0.981625996530056,-0.1884650457650423,-0.21060748305171728,0.24450370576232672,-0.351593442261219,-0.17435387894511223,-0.2481386694125831,0.038789153564721346,-0.438319802749902,0.9791432889178395,0.2858143341727555,0.3136293296702206,0.9675454306416214,-0.31508239498361945,-0.5428663776256144,-0.7970107533037663,0.009063138160854578,-0.3006072617135942,0.32557890098541975,-0.8505641482770443,-0.6322398353368044,0.5524039184674621,0.7453649789094925,-0.9280676180496812,-0.09982371563091874,-0.4952717493288219,-0.7637230488471687,0.5806308332830667,-0.09685500897467136,-0.27133944164961576,-0.7298180526122451,-0.42516065668314695,0.5624877428635955,-0.5277808597311378,-0.6899638311006129,-0.5753709143027663,-0.6313310810364783,-0.8871396030299366,-0.18595431093126535,0.5956664532423019,0.5151542290113866,0.008047247771173716,-0.9523194069042802,-0.3399590770713985,0.8304700134322047,0.578181748278439,-0.44247990380972624,0.20133576402440667,-0.666681305039674,-0.08182424679398537,0.2781922137364745,-0.6482032565400004,-0.9768403535708785,-0.6338449460454285,0.11254328535869718,0.2853898606263101,-0.1451384574174881,-0.8033333197236061,-0.9706679177470505,0.5416733007878065,0.7308871578425169,0.30846734251827,0.06922600930556655,-0.8381912121549249,0.31278818706050515,-0.4671438825316727,-0.20493943244218826,0.7546666236594319,-0.1021834178827703,0.5481997462920845,0.2728356998413801,0.41518385522067547,0.48600773606449366,-0.0483777723275125,0.3611423638649285,0.7401421312242746,0.9563434207811952,-0.3509891382418573,-0.288519028108567,-0.8565372028388083,0.29995267605409026,-0.33161813765764236,0.682490399107337,0.44527983013540506,0.30418935883790255,0.8230995973572135,-0.048992492724210024,-0.42050631530582905,-0.9611589601263404,0.4436238994821906,0.8347351904958487,0.8917698818258941,-0.9278742549940944,0.5925218844786286,0.7023209342733026,-0.5507864593528211,0.1061579305678606,-0.6116735539399087,-0.41267602844163775,-0.9059947514906526,0.41338094137609005,0.236212941352278,-0.25530819362029433,-0.6808547782711685,0.8276445199735463,-0.2506011491641402,-0.26154768699780107,0.11688109440729022,0.5368005190975964,0.07538422057405114,-0.26712917955592275,-0.48710832465440035,0.24863622151315212,0.7006457666866481,0.4679843266494572,0.8362211175262928,0.5091155213303864,-0.30928277922794223,-0.8951181471347809,-0.04228799184784293,-0.145178091712296,0.7150996318086982,-0.575007249135524,-0.6269821571186185,-0.22157051879912615,0.3782082460820675,0.8746802369132638,0.03464578650891781,-0.5369463618844748,-0.7303072940558195,0.5309278410859406,-0.06470779189839959,0.1747423461638391,0.408348404802382,0.8467220417223871,-0.022373230662196875,-0.7828625999391079,0.8304199790582061,-0.6024565524421632,0.5960321719758213,0.003817175514996052,-0.2653019055724144,0.14743901416659355,-0.17391311516985297,-0.11700063664466143,-0.952463602181524,0.6617988254874945,-0.7032725973986089,0.420808847527951,0.5322936973534524,-0.6452858969569206,0.43916697101667523,0.5601220754906535,-0.8612030120566487,-0.770906419493258,0.7680851989425719,0.28907041903585196,-0.46598638221621513,-0.3269327054731548,-0.2268605064600706,-0.40259774727746844,-0.20699390536174178,0.6881524282507598,-0.8132004868239164,-0.07949775364249945,0.09424715582281351,-0.6972637749277055,-0.40350768342614174,-0.9301075879484415,-0.47463483922183514,-0.39963302575051785,-0.6559801315888762,-0.4997399630956352,-0.41948411287739873,0.09405348915606737,0.08057764265686274,-0.678334026131779,-0.0068811532109975815,-0.4832778312265873,-0.8704026890918612,-0.6655452311970294,-0.639600130263716,0.1657414911314845,-0.6474223770201206,0.3689636583440006,-0.06006169458851218,-0.13837621826678514,0.616870160214603,-0.5316388187929988,0.7453629192896187,0.8609353699721396,0.2852789191529155,0.38232871145009995,0.5804260019212961,-0.9754248075187206,0.6493967003189027,-0.6984040117822587,-0.4982100585475564,0.31202118610963225,0.42802319303154945,0.8261500401422381,-0.14105972833931446,-0.6032778299413621,-0.6041318844072521,-0.8456697249785066,-0.3408821551129222,-0.9679651772603393,-0.8056029393337667,0.0675116591155529,0.15830504056066275,-0.23215666273608804,-0.914833802729845,-0.5337232956662774,-0.17402417538687587,0.5092653529718518,-0.954955832567066,0.22339590592309833,0.3635291773825884,0.5833743470720947,-0.329829134978354,0.2364059155806899,-0.39143505599349737,-0.6166013455949724,0.1449520904570818,-0.006305026356130838,-0.4266556026414037,0.7278739539906383,0.14318070141598582,-0.18443161947652698,-0.19549271650612354,-0.4817678271792829,-0.9711754024028778,0.25519678089767694,0.45222752913832664,-0.7621378642506897,-0.030933584552258253,0.4528236296027899,0.02599839260801673,-0.16691711405292153,0.684554401319474,0.7465804205276072,-0.8901120196096599,-0.0026296190917491913,-0.6827304777689278,-0.8060557059943676,0.18647301103919744,0.7093763616867363,-0.8438686956651509,-0.07180823246017098,0.7823458174243569,-0.6390543784946203,-0.3750737486407161,-0.7094682222232223,0.3413382275030017,-0.008515855763107538,-0.4840915994718671,-0.8940987046808004,-0.38947377260774374,-0.2997496109455824,0.43162726191803813,0.6618239157833159,0.9011503057554364,0.9478404433466494,-0.05072210822254419,0.8874381990171969,-0.054554400499910116,0.5162905543111265,0.879775763489306,0.32473169872537255,-0.22317743115127087,-0.527045214548707,-0.6217728070914745,-0.3596103652380407,-0.450619047973305,0.8596752332523465,0.008381960913538933,0.5645182551816106,0.6720457607880235,-0.4971436723135412,0.16098682302981615,0.22291066823527217,0.23819294618442655,-0.7309598131105304,0.519689173437655,0.0626316387206316,0.4078445117920637,-0.833688682410866,0.6722166957333684,-0.6458719782531261,-0.49177847476676106,-0.6639242032542825,-0.33516488736495376,0.15310017205774784,-0.0795963010750711,-0.36138949962332845,-0.5347533579915762,-0.2902621612884104,-0.21410874789580703,-0.6924666306003928,0.914352566935122,-0.9105212492868304,0.6590126757510006,-0.2200698466040194,-0.8043472720310092,0.7517352518625557,-0.08576423535123467,-0.06526964344084263,0.3424324756488204,0.7086727269925177,0.6692369994707406,-0.747412137221545,0.3083664705045521,-0.4815384070388973,0.8363325484097004,-0.41155884275212884,0.6783236279152334,-0.7516359784640372,0.6383892237208784,-0.4497073106467724,-0.3367347251623869,-0.40062909899279475,0.4835116951726377,-0.5740442546084523,0.7300550127401948,0.774082344956696,-0.2431739615276456,0.47910135611891747,-0.5381806991063058,-0.7690893653780222,0.6298947255127132,-0.37212775694206357,0.49209067039191723,-0.6715813572518528,0.9411499183624983,-0.9926869119517505,0.12352019594982266,0.8534986549057066,-0.3475049566477537,0.6597533272579312,-0.7226515305228531,-0.2529036975465715,0.05925120273604989,0.05280464980751276,0.29322914965450764,0.20848751720041037,-0.18740291986614466,-0.916868222411722,-0.5619367496110499,-0.4990011299960315,-0.19332512933760881,0.9236874557100236,-0.9820181904360652,-0.8276456976309419,-0.214384276419878,-0.5100635718554258,0.10094832582399249,0.8414017795585096,-0.825802069157362,-0.2931262985803187,0.8383998917415738,-0.504699444398284,-0.6647910638712347,0.4123691259883344,0.054294582922011614,-0.2049306519329548,0.6441557961516082,-0.8266179603524506,0.26141443056985736,0.969837405718863,0.4864211888052523,-0.6630463185720146,-0.06537785101681948,0.06456439150497317,0.7417370746843517,-0.5661200517788529,0.3441219120286405,-0.22436898993328214,0.021445997525006533,-0.9424647749401629,-0.7852668575942516,0.3467537355609238,0.4562781252898276,-0.2362867994233966,-0.9430358554236591,0.546051430515945,0.32872219709679484,-0.6356314369477332,-0.4528627758845687,0.591793340165168,0.8254615357145667,0.6699585374444723,0.5914859478361905,-0.1528006512671709,0.9113141065463424,0.030238988809287548,-0.9012588653713465,0.6780480490997434,0.7885862537659705,0.6251620864495635,-0.6454281909391284,0.9518838357180357,-0.9790035109035671,-0.5605596136301756,-0.49294552486389875,0.6739071290940046,-0.39309031376615167,-0.3541732728481293,0.10894501954317093,0.7898610434494913,0.8316876613534987,0.7030394403263927,0.2060831319540739,-0.8296454814262688,-0.21344683971256018,-0.30029616225510836,0.23328035324811935,-0.09020133269950747,0.39418777683749795,0.21121473284438252,0.6941042426042259,-0.806977472268045,0.11272290721535683,-0.5471356376074255,-0.9342330400831997,-0.5726819206029177,0.8483252287842333,0.6486845281906426,0.2755840038880706,0.33407499454915524,0.7046847422607243,-0.24530763179063797,-0.23031302448362112,0.17558459332212806,-0.11797826085239649,0.022483293432742357,-0.11067860201001167,-0.3798716044984758,0.39747591968625784,-0.03848441829904914,-0.9762076935730875,-0.8807442216202617,0.8218302759341896,-0.592043861746788,0.1818848834373057,-0.822244122158736,-0.3023695102892816,-0.4064677990972996,0.500696659553796,-0.09791116742417216,0.3035610821098089,0.304614853579551,0.95118025271222,-0.31442342698574066,0.8759537902660668,-0.8106838362291455,0.3151824953965843,-0.5823509483598173,0.7693368904292583,-0.06309291208162904,-0.04669127054512501,-0.12265222007408738,-0.9023827775381505,0.3879053839482367,-0.49309923592954874,0.7640497013926506,-0.5411833790130913,0.5519066145643592,0.02199148526415229,0.48452719347551465,-0.29994506342336535,-0.4477243749424815,-0.05156505107879639,0.5366292055696249,0.9924683421850204,0.783716928679496,0.9776150877587497,0.17863864032551646,0.1865818714722991,0.49222639249637723,-0.6128960191272199,-0.16136944852769375,0.009264832828193903,0.16113050188869238,-0.07624176470562816,0.12976981373503804,-0.9959258851595223,0.2829514490440488,0.41713262256234884,0.990636829752475,-0.3447609907016158,0.5020697182044387,0.12704160856083035,-0.2781591732054949,-0.509514425881207,0.8905065930448472,0.5549023495987058,-0.15129945240914822,-0.8996279113925993,-0.7521835323423147,-0.9778571389615536,0.4862723774276674,0.7831681119278073,0.7463202397339046,0.7019615401513875,-0.7348015266470611,0.5083395629189909,0.5736150620505214,0.5873791114427149,-0.4493533009663224,0.37623998709023,0.24229515390470624,-0.9248473383486271,-0.6365258661098778,-0.9624432963319123,-0.0731474757194519,0.11979772616177797,-0.9052228694781661,-0.7531404802575707,-0.07230665581300855,-0.5387945869006217,-0.38923601619899273,0.8187888585962355,-0.6179149164818227,0.3644114318303764,-0.14826074661687016,-0.22616975381970406,0.1667092153802514,0.26365617476403713,0.4843682339414954,-0.5177394794300199,-0.6408782294020057,-0.32329134549945593,0.24736391892656684,0.06137178046628833,0.8625830495730042,0.9354543494991958,-0.7882983218878508,-0.5598992230370641,-0.682908620685339,-0.9289368321187794,-0.20883212378248572,-0.5280573447234929,-0.7974922526627779,0.38728163624182343,0.11055580945685506,0.971766369882971,-0.3932746760547161,-0.9929184983484447,-0.49209568882361054,-0.8831541556864977,0.8198149199597538,0.5689119026064873,-0.6311265393160284,0.1637390390969813,0.8707785634323955,0.9242997970432043,-0.8046115674078465,0.8465007678605616,0.7853508475236595,-0.08705081464722753,-0.9850492826662958,-0.39020168455317616,-0.5701609682291746,-0.7293630791828036,-0.9907081429846585,-0.215101373847574,-0.6677498216740787,0.5137113225646317,-0.8767421077936888,-0.04357069497928023,0.5045354114845395,0.019978879019618034,0.882417434360832,-0.026731146965175867,0.8898605722934008,-0.11804783204570413,-0.865325874183327,-0.17968358658254147,-0.13761622970923781,-0.8389369533397257,-0.34513559471815825,-0.938049788121134,0.5283255409449339,0.0654140068218112,-0.9492480116896331,-0.42033238988369703,-0.5865921354852617,0.1409116294234991,0.5220349342562258,0.6547799739055336,0.44068684009835124,0.4866918991319835,-0.5577723262831569,0.7036935277283192,0.7279131440445781,-0.0753454752266407,0.9474941999651492,-0.9593788948841393,0.8757062321528792,-0.543941231444478,0.6351002659648657,0.37161823036149144,0.01770075038075447,-0.7922323946841061,-0.3999767559580505,-0.9359273323789239,-0.730574622284621,-0.4072057823650539,0.42714263359084725,-0.2052446510642767,-0.10768664861097932,-0.7123727272264659,-0.5144378538243473,0.7571998103521764,0.41682808566838503,-0.7055586809292436,-0.3784939362667501,-0.6421998720616102,0.7905266708694398,-0.4928657510317862,-0.26429599709808826,0.444934890139848,-0.9144378313794732,0.2638060785830021,0.035887830425053835,-0.17327187303453684,-0.1401749043725431,0.44228098541498184,0.13943647406995296,0.8326764162629843,-0.6587945641949773,0.9205946824513376,0.11508724745362997,0.396983714774251,-0.32392278825864196,-0.9281757068820298,0.3597130961716175,0.5811190553940833,0.6944914604537189,0.4518693024292588,-0.9950148826465011,-0.5368610713630915,-0.7034816858358681,0.8413830217905343,0.8211708995513618,-0.23149617575109005,-0.6202011769637465,0.10229819966480136,0.5194505634717643,0.05181058868765831,0.9279072093777359,0.4539204640313983,0.3749789413996041,0.9625892289914191,-0.6885173162445426,0.26008313754573464,0.10197358299046755,-0.4329460063017905,0.7581360558979213,-0.9572466071695089,0.4887125645764172,0.698609332088381,0.3908504657447338,-0.13879869040101767,0.3824851172976196,0.6794032524339855,-0.9265587739646435,-0.7817417485639453,0.7774008898995817,-0.4358455706387758,0.6325723244808614,0.10808693617582321,0.5263368324376643,-0.5375817315652966,-0.14209546241909266,0.7077148808166385,-0.5732414717786014,-0.8649740191176534,0.5971616907045245,-0.3932466865517199,0.9975292254239321,0.3575756913051009,-0.5976166240870953,0.00623449357226491,0.3657928956672549,0.9046932179480791,-0.18889594729989767,0.7662905212491751,0.31240678019821644,0.028384706936776638,0.021077048499137163,0.9505432392470539,-0.10402274131774902,0.8032901082187891,-0.8723612423054874,0.4063475546427071,-0.8384093404747546,-0.7899026861414313,-0.21336824679747224,0.6355199138633907,0.05091878119856119,0.5567359472624958,-0.852825537789613,-0.15977885946631432,-0.9724449790082872,-0.8941022986546159,-0.8196799228899181,-0.9597610146738589,0.9778288989327848,0.7162139471620321,0.7128011183813214,0.3546007117256522,0.09239715663716197,-0.4822773770429194,0.3623179402202368,-0.8453255710192025,0.3228898160159588,-0.024502375163137913,-0.1546974629163742,-0.752368567045778,0.25677217496559024,-0.9264197791926563,0.20072687976062298,0.5443696845322847,0.8057653531432152,-0.4974160832352936,-0.08873046189546585,-0.1057600905187428,-0.9850117051973939,0.4663126701489091,0.8429664177820086,0.8955638431943953,-0.6354416701942682,-0.798519769217819,-0.31838870514184237,-0.7706474657170475,-0.4241171758621931,-0.9188080034218729,0.9448755607008934,-0.7578441998921335,0.3063783119432628,-0.5736876227892935,0.7793989079073071,-0.8343700552359223,-0.3150057983584702,0.687321724370122,-0.91546974144876,0.40074967220425606,-0.005180918145924807,-0.8592664962634444,-0.7231484516523778,-0.3307078261859715,0.694320400711149,-0.674337231554091,-0.6007848312146962,0.7527452725917101,0.7107374197803438,-0.1405170694924891,-0.123579828068614,-0.8790542832575738,0.7977371495217085,0.26016381615772843,0.6169092198833823,0.48617955995723605,-0.7856971262954175,-0.6583894840441644,0.7554524224251509,-0.001544811762869358,0.5106620052829385,0.6950098285451531,-0.12358962511643767,0.7900923728011549,-0.13863660162314773,-0.3121585799381137,0.9198065502569079,0.7776027317158878,0.8179851551540196,0.7075461833737791,0.2489073951728642,-0.3253080635331571,0.5859205611050129,0.26245316909626126,-0.3121494371443987,-0.9225320457480848,0.7081473204307258,-0.07499156938865781,0.6956635862588882,-0.7512410059571266,0.052329855505377054,-0.94747642474249,0.19407099951058626,-0.47960021952167153,0.0022374754771590233,0.6950107589364052,-0.5745150856673717,-0.5650297310203314,0.8575857896357775,0.7346305106766522,0.3952273577451706,-0.14150730334222317,-0.021505473647266626,-0.5495286197401583,-0.6479704468511045,-0.42164449905976653,-0.37027472211048007,0.9372864528559148,-0.27694262098520994,0.5739606921561062,-0.2701321500353515,0.05035224882885814,0.6355824316851795,-0.7099887891672552,-0.1136725852265954,-0.14278129767626524,-0.6928701857104897,0.25523462798446417,0.29797986382618546,0.026727432385087013,-0.5509626516140997,0.09297579852864146,-0.11603446258231997,-0.0574864218942821,-0.2720719203352928,0.2287936806678772,-0.6939921225421131,0.589539629407227,0.27517328318208456,0.18195911403745413,0.48615783685818315,0.3631804487667978,0.38828683784231544,-0.7827997477725148,0.5852626478299499,0.1397919454611838,-0.6193039719946682,-0.5734389363788068,-0.27387233497574925,-0.13843571348115802,-0.18010618397966027,-0.9154603062197566,-0.4752430166117847,-0.3677528635598719,-0.6367590292356908,0.09882642468437552,0.1383881322108209,0.8503627222962677,-0.8553584916517138,-0.06066051172092557,-0.24338059313595295,-0.15599973173812032,0.29880007775500417,0.9818859118968248,-0.3423986122943461,0.5035225073806942,-0.737903599627316,-0.5740730063989758,0.11625317484140396,-0.8335923035629094,0.796116276178509,-0.4169794823974371,-0.011524109169840813,0.15466516418382525,0.5736433421261609,-0.8029798148199916,0.4240792663767934,-0.3167101154103875,-0.5010457262396812,0.6477259290404618,0.736041413154453,0.5564970881678164,0.9808877478353679,0.19732808927074075,0.5938059487380087,0.7136103911325336,0.08055000100284815,-0.3093256871215999,-0.787367507815361,-0.8410033164545894,-0.7738773385062814,-0.1358821727335453,-0.43461799155920744,0.7889614226296544,-0.8342526978813112,0.22332903230562806,0.5619140155613422,-0.009077479597181082,-0.044928763061761856,-0.9940189691260457,-0.8310485035181046,-0.4353805724531412,-0.31696529500186443,-0.7775133620016277,0.7701321421191096,-0.9323516087606549,-0.3619370930828154,-0.4408451053313911,-0.08554197940975428,0.03606435190886259,-0.9543843907304108,-0.023520336486399174,0.43052178667858243,0.9613845716230571,0.5180380749516189,0.9503492875955999,-0.894270857796073,0.7863560388796031,0.9662454500794411,-0.6078119478188455,0.5639874837361276,-0.39933797297999263,-0.8542436910793185,0.6342382193543017,0.9561038697138429,0.3744826945476234,0.9007385279983282,0.9584161629900336,0.8634653012268245,0.2546613938175142,0.6127112009562552,-0.8346367874182761,-0.5243577044457197,0.5255407895892859,0.4772808817215264,0.09830409800633788,-0.26296982634812593,0.9847246510908008,-0.8726354576647282,0.3014003108255565,0.14136820705607533,-0.10208925418555737,0.31515688728541136,0.27910379553213716,0.5860065808519721,-0.056063419207930565,-0.1617895127274096,-0.968859164044261,0.08052709326148033,0.014737439807504416,-0.9030302292667329,-0.8143494417890906,0.9981395131908357,0.10192962875589728,-0.2534473417326808,-0.19745919900014997,-0.42103009717538953,-0.08155976189300418,-0.059924956411123276,-0.674052756279707,-0.6607664437033236,0.035871080588549376,0.9113427335396409,0.019743771757930517,-0.17241525650024414,-0.36098732193931937,-0.20225700875744224,-0.7948614829219878,-0.9238047664985061,-0.9068846092559397,-0.6516638649627566,0.9894746788777411,0.6677847867831588,0.367233254481107,0.4971391041763127,-0.980247893370688,0.9114257860928774,-0.8502231161110103,0.6210230020806193,0.7753182700835168,0.8281319797970355,-0.4307889458723366,0.6829871186055243,-0.7094317763112485,0.0017709825187921524,-0.8919839984737337,-0.14949614787474275,0.2148757977411151,-0.036197017412632704,0.5894510787911713,0.08833203138783574,-0.10438782861456275,-0.9496807968243957,0.5279326415620744,-0.2846280434168875,-0.2348213423974812,-0.36815847363322973,-0.2271793931722641,-0.08105734968557954,0.21643994934856892,-0.6265919059514999,0.1298366766422987,0.015946630388498306,-0.7184505090117455,0.4323914870619774,-0.2623957945033908,0.5673409146256745,0.15467197820544243,0.23050826089456677,-0.6874939319677651,-0.6319973454810679,-0.7487094546668231,-0.4290787363424897,0.7377100046724081,-0.01496531767770648,0.14019817020744085,-0.7636638772673905,-0.7640531021170318,0.3295372393913567,0.7780958181247115,-0.39077090425416827,-0.3009844468906522,0.44889254309237003,-0.5008160229772329,-0.84206661907956,0.29656155640259385,0.4873973182402551,0.31947509851306677,0.14097231067717075,0.9718097303994,-0.1824895734898746,-0.2433605119585991,0.5265953196212649,0.24119353108108044,0.1200649868696928,0.9686514497734606,0.5020395792089403,0.22454332560300827,-0.44965554727241397,-0.12236792920157313,0.39724275236949325,-0.5690326974727213,-0.305713617708534,-0.08445851970463991,-0.8615745971910655,-0.9619567478075624,0.4965329905971885,-0.9035944766364992,-0.6476509678177536,0.18274230463430285,0.5530507992953062,-0.5448605897836387,0.4465015600435436,0.027645442634820938,0.6632444276474416,-0.2820548596791923,0.567751606926322,-0.7276287460699677,0.4368983586318791,-0.23245114274322987,0.4128103284165263,-0.4101171181537211,0.11020915070548654,0.638159004971385,-0.4312849505804479,0.32128017069771886,-0.6459595342166722,0.5632462510839105,-0.9478357620537281,-0.7559223398566246,-0.9383353125303984,0.08390760142356157,0.5825294381938875,-0.5286333006806672,-0.7017795164138079,0.7032846356742084,0.31084818905219436,-0.8241583276540041,0.6123392046429217,0.37295527942478657,-0.18671646248549223,0.5545829171314836,-0.40547818783670664,0.29202787624672055,-0.5714984284713864,0.08797645568847656,0.23461655573919415,0.27476252568885684,0.06129814265295863,0.8494443031959236,0.7321868636645377,0.9101723963394761,0.3160821129567921,-0.3843785277567804,0.9379274472594261,-0.653546002227813,-0.45032181730493903,0.23834382416680455,0.13212092220783234,0.9348673541098833,0.0673234430141747,-0.9095685905776918,0.4748876402154565,0.2380203357897699,-0.15028756018728018,-0.9741322612389922,0.2888182746246457,0.9320626500993967,0.3370441454462707,-0.3939132899977267,0.6107073375023901,-0.21441307291388512,-0.06270415894687176,-0.2212952538393438,-0.16431039199233055,-0.1680574188940227,0.05171689484268427,0.09429540578275919,0.08350580232217908,-0.6419441946782172,-0.7536724382080138,0.5220499476417899,0.0503561501391232,0.4533980432897806,-0.021311450749635696,0.7797085922211409,0.4878734014928341,0.29226458724588156,-0.028190279379487038,-0.17787660704925656,0.8414005092345178,-0.9372777128592134,0.7224185303784907,-0.45371710369363427,-0.5538232140243053,-0.6931351199746132,-0.03303386550396681,0.9951681359671056,-0.30777622340247035,-0.8307163771241903,0.3325318438000977,-0.9417577236890793,0.7988037033937871,0.9676326704211533,0.6745594777166843,0.6954236417077482,-0.6688157436437905,0.7780057117342949,-0.9082109876908362,0.7923350683413446,-0.6050758664496243,0.7457346343435347,-0.21111718052998185,0.34088549204170704,0.7566849105060101,-0.21981163416057825,-0.9244608022272587,0.9280706462450325,-0.279270107857883,-0.316107795573771,0.01560516795143485,-0.8018599571660161,-0.005791826639324427,-0.302649294026196,-0.5060754506848752,-0.7737846677191556,-0.509098791051656,-0.9500267328694463,-0.4292160435579717,0.3164751953445375,0.2244045650586486,0.2707496243529022,0.11412652349099517,-0.7586487741209567,-0.07207845989614725,-0.43231132440268993,0.3563180584460497,0.9649189040064812,-0.07900641253218055,-0.456816790625453,-0.47053286526352167,0.7385961138643324,0.6491016703657806,-0.3785951929166913,-0.44080288195982575,-0.3818867648951709,0.4822486317716539,0.10626078024506569,0.5229671695269644,-0.0015892037190496922,0.7362057911232114,-0.9252365422435105,0.4777854704298079,0.8871457166969776,0.08264719136059284,0.2613255209289491,0.7474447558633983,-0.4207456698641181,0.8559138565324247,0.0013643335551023483,0.9421353559009731,0.7379574766382575,-0.7035446050576866,-0.2962710759602487,-0.2613561153411865,0.19732093811035156,0.48935826029628515,0.3654239997267723,-0.7194600142538548,-0.13705736631527543,0.640106319449842,0.10931097529828548,-0.043689392041414976,-0.020591368433088064,-0.7351749422959983,-0.017727405298501253,0.3122263178229332,0.019100992940366268,-0.9274303698912263,-0.682694130577147,0.9425560478121042,-0.527490037959069,-0.6216204650700092,-0.8337158090434968,0.11432271962985396,0.37243625009432435,-0.48910760413855314,-0.4062946876510978,-0.053819164633750916,0.8061841414310038,-0.047799344174563885,-0.7048856560140848,-0.8120855046436191,0.9965700944885612,-0.16954545304179192,0.3492638459429145,0.0765890278853476,-0.4354183925315738,0.7994574494659901,-0.3487305985763669,-0.8429549988359213,-0.7946614064276218,-0.7337871855124831,0.04778316104784608,0.6079900590702891,0.021407151129096746,-0.6905807983130217,0.6501254155300558,0.4679207275621593,0.6566457613371313,0.943837019149214,0.4132476029917598,0.24925024760887027,0.6483383057639003,0.5609472505748272,-0.3783799302764237,-0.5991422277875245,0.36189937498420477,0.9768523531965911,0.446225609164685,-0.8127032532356679,0.8175038304179907,-0.8180060163140297,-0.21795242931693792,0.747552108950913,0.8550818604417145,-0.6819162238389254,-0.8895594654604793,-0.6408873181790113,-0.05853370437398553,-0.6615772568620741,0.018754867371171713,0.3142033671028912,-0.2631658837199211,-0.738823245279491,-0.17326968116685748,0.9143907246179879,-0.6776982713490725,-0.6896573663689196,0.6724791475571692,0.30339539516717196,0.7537756524980068,-0.5268647293560207,0.2043627300299704,0.1547626219689846,-0.46571126859635115,-0.18867286061868072,0.592761252541095,-0.6397701958194375,-0.8974876771681011,0.47332377824932337,0.21528828190639615,-0.14380378974601626,0.747140584513545,-0.7393607352860272,-0.17618910735473037,-0.3460465958341956,0.8724338207393885,0.6672717807814479,-0.7946957522071898,-0.9151937318965793,0.16307190898805857,-0.4245111858472228,-0.020317303016781807,0.8526622871868312,-0.8805894157849252,0.18714631348848343,0.5711481003090739,-0.9121965877711773,0.22708114981651306,0.16620876779779792,0.3723291731439531,0.6548428339883685,-0.04031571513041854,-0.2567359581589699,-0.3118096897378564,0.748536195140332,-0.5616618720814586,0.7529158131219447,0.9382702796719968,0.6244109086692333,0.320109186694026,0.3599550360813737,-0.47574414405971766,0.5849203146062791,-0.22965027764439583,0.6986383311450481,0.16580417985096574,0.2775673698633909,-0.5170450010336936,-0.5663769864477217,-0.6185236135497689,0.650057409889996,-0.4655437939800322,-0.8166208770126104,-0.4661862454377115,0.7459547189064324,0.04358046129345894,-0.0977837685495615,-0.4711017832159996,0.41225641779601574,-0.08935680706053972,-0.23817572556436062,0.12148693203926086,-0.25935403164476156,0.43860863521695137,-0.43342131190001965,0.3147786473855376,-0.777853874489665,-0.01977150607854128,-0.2798679177649319,-0.9103952436707914,0.720256982371211,0.6310380510985851,0.3488869182765484,-0.07092362083494663,0.1493169735185802,-0.9642074527218938,0.8315643933601677,-0.31203312845900655,-0.6590722589753568,0.7767984634265304,-0.6646495475433767,0.16832011472433805,-0.01808930281549692,-0.5352774057537317,-0.6420000218786299,0.28486002050340176,0.7756776665337384,-0.7829510001465678,0.07505988702178001,0.5734122884459794,0.3113293908536434,0.7814027913846076,0.04969623638316989,-0.3394036302343011,0.38464611303061247,0.7626623385585845,-0.7441429258324206,-0.9996476219967008,-0.044713747687637806,-0.46610374422743917,0.44334403425455093,-0.28739542374387383,0.9027711767703295,0.14058817690238357,0.8616828713566065,-0.16516398545354605,-0.9708172813989222,-0.6649312078952789,-0.03463838715106249,0.06303780153393745,-0.9937810287810862,0.7691018194891512,-0.2232982120476663,-0.7474610763601959,0.03250437742099166,-0.5282983221113682,0.451338788960129,-0.9354237453080714,-0.21322512673214078,-0.9401899543590844,0.6742228455841541,-0.26191083434969187,0.6945104100741446,-0.24313021916896105,0.4631755747832358,-0.4019564208574593,0.22324782237410545,0.036262699868530035,0.8503334377892315,-0.38649721443653107,0.6587515994906425,-0.19313331646844745,0.48481303453445435,0.9196891938336194,-0.531457765493542,-0.18941487139090896,-0.08018784550949931,0.9851219491101801,-0.8818913912400603,0.27829451439902186,-0.9608335145749152,0.8896817192435265,-0.707288830075413,-0.9629908562637866,-0.34412112832069397,-0.9774960372596979,-0.18374628201127052,-0.6325701870955527,0.22798783192411065,0.20980559010058641,0.6145870038308203,-0.8114346861839294,0.8555591236799955,0.21918143145740032,0.4063580301590264,0.8465895126573741,0.1067367335781455,0.8087077583186328,0.09043957339599729,0.8014444131404161,0.05700391484424472,0.5931805311702192,0.3181282035075128,-0.25058871135115623,-0.6682896744459867,0.030081594828516245,0.9344319654628634,0.7798286587931216,-0.9445003545843065,0.15072797425091267,0.30963293742388487,0.4932677634060383,0.31892146496102214,-0.15156629122793674,0.7061663828790188,0.9557389658875763,0.02849474409595132,-0.29294998990371823,-0.09190852101892233,-0.8166867168620229,0.4570457339286804,-0.8134389477781951,0.23566634766757488,0.6485318727791309,-0.38788633700460196,0.7452903580851853,-0.1307503473944962,-0.4182125674560666,0.7814902584068477,0.560422376729548,0.5667288508266211,0.902426062617451,-0.12669830722734332,-0.3217531139962375,0.71458918787539,-0.20881186239421368,-0.3415419990196824,0.7278652619570494,0.6844101333990693,-0.8725720187649131,-0.8733978997915983,0.3334672600030899,-0.6751614240929484,-0.17291572550311685,-0.9672677582129836,-0.09765459224581718,-0.5348783507943153,-0.750734250061214,-0.40249873185530305,0.3299283990636468,-0.0006160265766084194,-0.9619580456055701,-0.19379231706261635,-0.3813817286863923,0.6125639770179987,-0.14309744630008936,-0.28839092142879963,-0.8714303490705788,0.22125542489811778,-0.4976246557198465,0.12144955433905125,0.18699277378618717,-0.9201229936443269,0.11314141005277634,-0.5394634362310171,-0.046494736801832914,-0.42849785974249244,0.506346145644784,0.06583047471940517,0.47707833442837,-0.8711602627299726,-0.19689434254541993,0.6953955125063658,-0.329433583188802,0.6483377194963396,-0.8017078773118556,-0.994590625166893,0.0012570167891681194,-0.038691666442900896,-0.32683886168524623,-0.7435393291525543,0.5606606658548117,0.9462674451060593,-0.3634878844022751,0.22924948576837778,-0.6491334717720747,-0.4506090055219829,-0.051769998390227556,0.4912855080328882,-0.9559363517910242,0.1709368289448321,-0.9858821230009198,-0.21097831474617124,-0.12351555144414306,-0.6536351968534291,-0.6529653687030077,-0.34594204649329185,-0.7081328430213034,0.4984565465711057,-0.0232991436496377,-0.1795649854466319,-0.028413130901753902,0.4359864457510412,0.15843071835115552,-0.30167720559984446,-0.27503686118870974,0.9018979142419994,0.42778465896844864,-0.49182268464937806,-0.5987855968996882,0.7354262522421777,0.7541259392164648,0.9442196129821241,-0.20865846378728747,0.5531255933456123,0.2308212025091052,-0.9124953621067107,0.9401416159234941,-0.8487001471221447,-0.7703979955986142,0.39196431124582887,0.8888136022724211,0.778863372746855,-0.7648201915435493,-0.8529755501076579,0.09940230334177613,0.9190687667578459,-0.6272313608787954,-0.6805858090519905,-0.002149346750229597,0.16245047189295292,0.35585355246439576,-0.8537279525771737,-0.7848799265921116,-0.42960365302860737,-0.2903397139161825,-0.9039543378166854,0.5079648527316749,0.701868565287441,-0.4327560653910041,-0.46479728212580085,-0.035428912844508886,-0.2999069718644023,-0.27996911527588964,-0.659988165833056,-0.7449961835518479,0.9784161229617894,-0.2104689567349851,0.4867071737535298,0.31980065861716866,-0.8757717031985521,-0.951963088940829,0.6683822968043387,0.6064336216077209,0.5206997920759022,-0.7706487723626196,-0.6336374520324171,-0.38174290396273136,-0.6098363916389644,0.5130157470703125,0.5459146779030561,-0.8015910610556602,0.7832280420698225,-0.22714537708088756,0.6323380256071687,-0.1282006879337132,0.0022404268383979797,-0.3920094706118107,-0.4567460152320564,0.38598599191755056,0.06602209061384201,-0.9478560551069677,0.24900922644883394,-0.65363101195544,0.5313237244263291,0.42758476128801703,-0.9845585725270212,-0.6563545218668878,-0.2857534624636173,-0.8748139664530754,-0.139583689160645,0.9144016322679818,-0.5491925901733339,-0.3395547135733068,0.7224852410145104,0.31609561713412404,0.10341517953202128,-0.42402036115527153,0.9396608071401715,-0.9212804147973657,-0.7552266344428062,-0.9450943334959447,-0.5850812550634146,0.7652345052920282,-0.03352470323443413,0.8689250708557665,0.9603330283425748,-0.5770273352973163,-0.14007575158029795,0.7157618664205074,0.08700498985126615,0.31092486437410116,0.5112228854559362,-0.705875541549176,-0.15814027469605207,-0.43664256343618035,0.28858946915715933,0.6093213795684278,0.19476043758913875,0.2747216057032347,0.7855764399282634,0.1873487699776888,-0.8260477175936103,0.6724552251398563,-0.16545879002660513,0.7200573915615678,-0.6979010468348861,-0.4106726641766727,0.8661971194669604,-0.31018840754404664,0.2468683710321784,-0.2743257498368621,-0.37730812653899193,-0.8866608147509396,0.9584734048694372,-0.3735710484907031,0.646958096884191,-0.5798406000249088,-0.31630630837753415,-0.7748919646255672,-0.30041224556043744,0.1344275763258338,-0.020464616362005472,-0.08596700709313154,0.9060325897298753,-0.8299806485883892,0.841103607788682,-0.5691939298994839,0.9265760318376124,0.5603492073714733,-0.049428705126047134,0.832023894879967,0.6231138338334858,0.6996176629327238,0.6753474599681795,-0.60316027328372,0.9087103735655546,-0.0828111981973052,0.1637172563932836,0.535025570075959,-0.15182972745969892,-0.688492183573544,-0.26304208068177104,-0.4617154961451888,0.5293734762817621,-0.9851182606071234,0.6008218033239245,-0.12026000395417213,0.8118608579970896,-0.2725965525023639,0.6868671332485974,-0.5092696808278561,-0.02786226011812687,0.871335634496063,-0.7730150977149606,0.8990113250911236,-0.5157293346710503,0.9229004555381835,0.4397363793104887,0.9088553017936647,0.9322447958402336,0.6427915343083441,-0.46687168162316084,-0.9448789809830487,0.2062950050458312,0.017401349265128374,0.033707591239362955,-0.9765337430872023,0.3639481910504401,-0.41123049799352884,-0.8067318028770387,0.4626022865995765,0.7623147033154964,-0.4904746077954769,-0.21016193833202124,0.4830919774249196,0.44240000285208225,0.9616842167451978,0.21988111454993486,0.8158292355947196,0.5481857699342072,0.5351887932047248,0.6213185368105769,0.6945623713545501,0.3981398455798626,-0.10468090372160077,-0.31240712059661746,0.7326297541148961,0.6988258794881403,0.7365083945915103,-0.898448989726603,-0.8866953211836517,-0.32450819108635187,0.06832157354801893,0.5363989383913577,0.17886587465181947,-0.41972895059734583,-0.12793695041909814,0.8828499363735318,-0.1404556934721768,-0.24382228963077068,-0.3042715387418866,0.9074988383799791,-0.39316019881516695,-0.6094103390350938,-0.6860084584914148,0.9933343008160591,-0.4206817955709994,0.39050289057195187,-0.035907038021832705,-0.7664343672804534,-0.37136544194072485,-0.07431361265480518,-0.037536023650318384,-0.5711613963358104,0.23219105089083314,0.018344630487263203,0.6178814759477973,-0.911820222157985,-0.8979497635737062,0.8129117400385439,-0.5187721052207053,-0.9892979506403208,0.38893095031380653,0.6817679833620787,-0.27020966866984963,0.5922068557702005,-0.37415721267461777,0.7155697830021381,0.6028294544667006,-0.5963649563491344,-0.8650563266128302,0.9480290417559445,0.5297616752795875,0.29482911294326186,0.3134069424122572,0.9609026834368706,0.6693721241317689,0.2054160381667316,0.45197500567883253,0.47313665272668004,0.5430019539780915,0.909615732729435,0.7264750674366951,-0.1022742954082787,0.9519036966376007,-0.5037317182868719,0.12587931007146835,-0.45379612362012267,0.1677000392228365,-0.07378822797909379,0.8863732921890914,-0.5917775649577379,0.08922136900946498,-0.812532911542803,-0.8609219482168555,-0.9392519569955766,-0.38436926901340485,0.3896086192689836,0.5140596884302795,0.93879838520661,0.40021662041544914,-0.09904182236641645,-0.9842864591628313,0.43157865945249796,0.6688182139769197,0.46197435120120645,-0.7949137580581009,0.1930286488495767,0.69077517837286,0.28612724179401994,-0.7866024505347013,0.8085229573771358,0.003350295592099428,-0.5326627851463854,0.39111435506492853,0.32647686963900924,0.017557842656970024,0.25347513146698475,0.039108055643737316,0.6473944084718823,-0.029577822890132666,0.8426835611462593,0.24715182418003678,0.45054824743419886,-0.6893058400601149,-0.1348489192314446,-0.17008295701816678,0.43325651437044144,0.46896953508257866,-0.21838977187871933,-0.9161483021453023,-0.0983123229816556,0.34443071112036705,0.20126669947057962,-0.5150493206456304,0.6576111279428005,0.030542260501533747,0.4526121732778847,0.6349453451111913,-0.8219096823595464,-0.7045239331200719,-0.2729182909242809,0.4060005904175341,0.5596621241420507,0.026105620432645082,0.6033625365234911,0.15439938753843307,-0.8939269199036062,0.6462233536876738,-0.45271897269412875,0.9976254776120186,0.4807209256105125,-0.40093881683424115,0.5788438240997493,-0.5837991181761026,-0.4850492859259248,-0.2968485476449132,-0.3290479010902345,0.3981172009371221,0.5520447664894164,0.46388375433161855,-0.11043389001861215,0.13290111953392625,-0.9190313187427819,0.6978706656955183,-0.6566957770846784,-0.8158046896569431,0.7706537707708776,0.5172306085005403,0.20016204100102186,0.032640116289258,-0.6731838951818645,-0.779846862424165,-0.3807182675227523,-0.964289543684572,-0.8963903211988509,0.3700144961476326,-0.5537472255527973,-0.10667978785932064,-0.2654387219808996,-0.39910832280293107,0.5263053714297712,-0.5268013398163021,0.23692899057641625,-0.09616247098892927,0.7915914538316429,-0.2992922752164304,-0.9538385388441384,0.719831379596144,-0.5573479789309204,0.9148110547102988,0.4761547651141882,0.21489624958485365,0.511219184845686,-0.8651515068486333,0.417484609875828,0.6068908371962607,0.15488254744559526,-0.4526761961169541,-0.33825421845540404,-0.937553308904171,0.13899846374988556,0.9968626298941672,0.06712991464883089,-0.46158146345987916,0.6661930317059159,0.912003037519753,-0.0985464733093977,0.8889746456407011,-0.9320122548379004,-0.7896807249635458,0.6656789439730346,0.26494478713721037,0.1309381239116192,-0.5170164797455072,0.5744159650057554,-0.41519042663276196,0.7199624530039728,0.8653876683674753,0.7031027222983539,-0.03891961509361863,-0.28477271599695086,0.16714642196893692,0.9400199665687978,-0.7265613246709108,-0.022180153988301754,-0.6802492369897664,-0.08303125575184822,-0.12285876646637917],"type":"scatter3d"},{"customdata":[["2024-07-25T17:35:06.010000"],["2024-07-25T17:35:07.010000"],["2024-07-25T17:35:08.010000"],["2024-07-25T17:35:09.010000"],["2024-07-25T17:35:10.010000"],["2024-07-25T17:35:11.010000"],["2024-07-25T17:35:12.010000"],["2024-07-25T17:35:13.010000"],["2024-07-25T17:35:14.010000"],["2024-07-25T17:35:15.010000"],["2024-07-25T17:35:16.010000"],["2024-07-25T17:35:17.010000"],["2024-07-25T17:35:18.010000"],["2024-07-25T17:35:19.010000"],["2024-07-25T17:35:20.010000"],["2024-07-25T17:35:21.010000"],["2024-07-25T17:35:22.010000"],["2024-07-25T17:35:23.010000"],["2024-07-25T17:35:24.010000"],["2024-07-25T17:35:25.010000"],["2024-07-25T17:35:26.010000"],["2024-07-25T17:35:27.010000"],["2024-07-25T17:35:28.010000"],["2024-07-25T17:35:29.010000"],["2024-07-25T17:35:30.010000"],["2024-07-25T17:35:31.010000"],["2024-07-25T17:35:32.010000"],["2024-07-25T17:35:33.010000"],["2024-07-25T17:35:34.010000"],["2024-07-25T17:35:35.010000"],["2024-07-25T17:35:36.010000"],["2024-07-25T17:35:37.010000"],["2024-07-25T17:35:38.010000"],["2024-07-25T17:35:39.010000"],["2024-07-25T17:35:40.010000"],["2024-07-25T17:35:41.010000"],["2024-07-25T17:35:42.010000"],["2024-07-25T17:35:43.010000"],["2024-07-25T17:35:44.010000"],["2024-07-25T17:35:45.010000"],["2024-07-25T17:35:46.010000"],["2024-07-25T17:35:47.010000"],["2024-07-25T17:35:48.010000"],["2024-07-25T17:35:49.010000"],["2024-07-25T17:35:50.010000"],["2024-07-25T17:35:51.010000"],["2024-07-25T17:35:52.010000"],["2024-07-25T17:35:53.010000"],["2024-07-25T17:35:54.010000"],["2024-07-25T17:35:55.010000"],["2024-07-25T17:35:56.010000"],["2024-07-25T17:35:57.010000"],["2024-07-25T17:35:58.010000"],["2024-07-25T17:35:59.010000"],["2024-07-25T17:36:00.010000"],["2024-07-25T17:36:01.010000"],["2024-07-25T17:36:02.010000"],["2024-07-25T17:36:03.010000"],["2024-07-25T17:36:04.010000"],["2024-07-25T17:36:05.010000"],["2024-07-25T17:36:06.010000"],["2024-07-25T17:36:07.010000"],["2024-07-25T17:36:08.010000"],["2024-07-25T17:36:09.010000"],["2024-07-25T17:36:10.010000"],["2024-07-25T17:36:11.010000"],["2024-07-25T17:36:12.010000"],["2024-07-25T17:36:13.010000"],["2024-07-25T17:36:14.010000"],["2024-07-25T17:36:15.010000"],["2024-07-25T17:36:16.010000"],["2024-07-25T17:36:17.010000"],["2024-07-25T17:36:18.010000"],["2024-07-25T17:36:19.010000"],["2024-07-25T17:36:20.010000"],["2024-07-25T17:36:21.010000"],["2024-07-25T17:36:22.010000"],["2024-07-25T17:36:23.010000"],["2024-07-25T17:36:24.010000"],["2024-07-25T17:36:25.010000"],["2024-07-25T17:36:26.010000"],["2024-07-25T17:36:27.010000"],["2024-07-25T17:36:28.010000"],["2024-07-25T17:36:29.010000"],["2024-07-25T17:36:30.010000"],["2024-07-25T17:36:31.010000"],["2024-07-25T17:36:32.010000"],["2024-07-25T17:36:33.010000"],["2024-07-25T17:36:34.010000"],["2024-07-25T17:36:35.010000"],["2024-07-25T17:36:36.010000"],["2024-07-25T17:36:37.010000"],["2024-07-25T17:36:38.010000"],["2024-07-25T17:36:39.010000"],["2024-07-25T17:36:40.010000"],["2024-07-25T17:36:41.010000"],["2024-07-25T17:36:42.010000"],["2024-07-25T17:36:43.010000"],["2024-07-25T17:36:44.010000"],["2024-07-25T17:36:45.010000"],["2024-07-25T17:36:46.010000"],["2024-07-25T17:36:47.010000"],["2024-07-25T17:36:48.010000"],["2024-07-25T17:36:49.010000"],["2024-07-25T17:36:50.010000"],["2024-07-25T17:36:51.010000"],["2024-07-25T17:36:52.010000"],["2024-07-25T17:36:53.010000"],["2024-07-25T17:36:54.010000"],["2024-07-25T17:36:55.010000"],["2024-07-25T17:36:56.010000"],["2024-07-25T17:36:57.010000"],["2024-07-25T17:36:58.010000"],["2024-07-25T17:36:59.010000"],["2024-07-25T17:37:00.010000"],["2024-07-25T17:37:01.010000"],["2024-07-25T17:37:02.010000"],["2024-07-25T17:37:03.010000"],["2024-07-25T17:37:04.010000"],["2024-07-25T17:37:05.010000"],["2024-07-25T17:37:06.010000"],["2024-07-25T17:37:07.010000"],["2024-07-25T17:37:08.010000"],["2024-07-25T17:37:09.010000"],["2024-07-25T17:37:10.010000"],["2024-07-25T17:37:11.010000"],["2024-07-25T17:37:12.010000"],["2024-07-25T17:37:13.010000"],["2024-07-25T17:37:14.010000"],["2024-07-25T17:37:15.010000"],["2024-07-25T17:37:16.010000"],["2024-07-25T17:37:17.010000"],["2024-07-25T17:37:18.010000"],["2024-07-25T17:37:19.010000"],["2024-07-25T17:37:20.010000"],["2024-07-25T17:37:21.010000"],["2024-07-25T17:37:22.010000"],["2024-07-25T17:37:23.010000"],["2024-07-25T17:37:24.010000"],["2024-07-25T17:37:25.010000"],["2024-07-25T17:37:26.010000"],["2024-07-25T17:37:27.010000"],["2024-07-25T17:37:28.010000"],["2024-07-25T17:37:29.010000"],["2024-07-25T17:37:30.010000"],["2024-07-25T17:37:31.010000"],["2024-07-25T17:37:32.010000"],["2024-07-25T17:37:33.010000"],["2024-07-25T17:37:34.010000"],["2024-07-25T17:37:35.010000"],["2024-07-25T17:37:36.010000"],["2024-07-25T17:37:37.010000"],["2024-07-25T17:37:38.010000"],["2024-07-25T17:37:39.010000"],["2024-07-25T17:37:40.010000"],["2024-07-25T17:37:41.010000"],["2024-07-25T17:37:42.010000"],["2024-07-25T17:37:43.010000"],["2024-07-25T17:37:44.010000"],["2024-07-25T17:37:45.010000"],["2024-07-25T17:37:46.010000"],["2024-07-25T17:37:47.010000"],["2024-07-25T17:37:48.010000"],["2024-07-25T17:37:49.010000"],["2024-07-25T17:37:50.010000"],["2024-07-25T17:37:51.010000"],["2024-07-25T17:37:52.010000"],["2024-07-25T17:37:53.010000"],["2024-07-25T17:37:54.010000"],["2024-07-25T17:37:55.010000"],["2024-07-25T17:37:56.010000"],["2024-07-25T17:37:57.010000"],["2024-07-25T17:37:58.010000"],["2024-07-25T17:37:59.010000"],["2024-07-25T17:38:00.010000"],["2024-07-25T17:38:01.010000"],["2024-07-25T17:38:02.010000"],["2024-07-25T17:38:03.010000"],["2024-07-25T17:38:04.010000"],["2024-07-25T17:38:05.010000"],["2024-07-25T17:38:06.010000"],["2024-07-25T17:38:07.010000"],["2024-07-25T17:38:08.010000"],["2024-07-25T17:38:09.010000"],["2024-07-25T17:38:10.010000"],["2024-07-25T17:38:11.010000"],["2024-07-25T17:38:12.010000"],["2024-07-25T17:38:13.010000"],["2024-07-25T17:38:14.010000"],["2024-07-25T17:38:15.010000"],["2024-07-25T17:38:16.010000"],["2024-07-25T17:38:17.010000"],["2024-07-25T17:38:18.010000"],["2024-07-25T17:38:19.010000"],["2024-07-25T17:38:20.010000"],["2024-07-25T17:38:21.010000"],["2024-07-25T17:38:22.010000"],["2024-07-25T17:38:23.010000"],["2024-07-25T17:38:24.010000"],["2024-07-25T17:38:25.010000"],["2024-07-25T17:38:26.010000"],["2024-07-25T17:38:27.010000"],["2024-07-25T17:38:28.010000"],["2024-07-25T17:38:29.010000"],["2024-07-25T17:38:30.010000"],["2024-07-25T17:38:31.010000"],["2024-07-25T17:38:32.010000"],["2024-07-25T17:38:33.010000"],["2024-07-25T17:38:34.010000"],["2024-07-25T17:38:35.010000"],["2024-07-25T17:38:36.010000"],["2024-07-25T17:38:37.010000"],["2024-07-25T17:38:38.010000"],["2024-07-25T17:38:39.010000"],["2024-07-25T17:38:40.010000"],["2024-07-25T17:38:41.010000"],["2024-07-25T17:38:42.010000"],["2024-07-25T17:38:43.010000"],["2024-07-25T17:38:44.010000"],["2024-07-25T17:38:45.010000"],["2024-07-25T17:38:46.010000"],["2024-07-25T17:38:47.010000"],["2024-07-25T17:38:48.010000"],["2024-07-25T17:38:49.010000"],["2024-07-25T17:38:50.010000"],["2024-07-25T17:38:51.010000"],["2024-07-25T17:38:52.010000"],["2024-07-25T17:38:53.010000"],["2024-07-25T17:38:54.010000"],["2024-07-25T17:38:55.010000"],["2024-07-25T17:38:56.010000"],["2024-07-25T17:38:57.010000"],["2024-07-25T17:38:58.010000"],["2024-07-25T17:38:59.010000"],["2024-07-25T17:39:00.010000"],["2024-07-25T17:39:01.010000"],["2024-07-25T17:39:02.010000"],["2024-07-25T17:39:03.010000"],["2024-07-25T17:39:04.010000"],["2024-07-25T17:39:05.010000"],["2024-07-25T17:39:06.010000"],["2024-07-25T17:39:07.010000"],["2024-07-25T17:39:08.010000"],["2024-07-25T17:39:09.010000"],["2024-07-25T17:39:10.010000"],["2024-07-25T17:39:11.010000"],["2024-07-25T17:39:12.010000"],["2024-07-25T17:39:13.010000"],["2024-07-25T17:39:14.010000"],["2024-07-25T17:39:15.010000"],["2024-07-25T17:39:16.010000"],["2024-07-25T17:39:17.010000"],["2024-07-25T17:39:18.010000"],["2024-07-25T17:39:19.010000"],["2024-07-25T17:39:20.010000"],["2024-07-25T17:39:21.010000"],["2024-07-25T17:39:22.010000"],["2024-07-25T17:39:23.010000"],["2024-07-25T17:39:24.010000"],["2024-07-25T17:39:25.010000"],["2024-07-25T17:39:26.010000"],["2024-07-25T17:39:27.010000"],["2024-07-25T17:39:28.010000"],["2024-07-25T17:39:29.010000"],["2024-07-25T17:39:30.010000"],["2024-07-25T17:39:31.010000"],["2024-07-25T17:39:32.010000"],["2024-07-25T17:39:33.010000"],["2024-07-25T17:39:34.010000"],["2024-07-25T17:39:35.010000"],["2024-07-25T17:39:36.010000"],["2024-07-25T17:39:37.010000"],["2024-07-25T17:39:38.010000"],["2024-07-25T17:39:39.010000"],["2024-07-25T17:39:40.010000"],["2024-07-25T17:39:41.010000"],["2024-07-25T17:39:42.010000"],["2024-07-25T17:39:43.010000"],["2024-07-25T17:39:44.010000"],["2024-07-25T17:39:45.010000"],["2024-07-25T17:39:46.010000"],["2024-07-25T17:39:47.010000"],["2024-07-25T17:39:48.010000"],["2024-07-25T17:39:49.010000"],["2024-07-25T17:39:50.010000"],["2024-07-25T17:39:51.010000"],["2024-07-25T17:39:52.010000"],["2024-07-25T17:39:53.010000"],["2024-07-25T17:39:54.010000"],["2024-07-25T17:39:55.010000"],["2024-07-25T17:39:56.010000"],["2024-07-25T17:39:57.010000"],["2024-07-25T17:39:58.010000"],["2024-07-25T17:39:59.010000"],["2024-07-25T17:40:00.010000"],["2024-07-25T17:40:01.010000"],["2024-07-25T17:40:02.010000"],["2024-07-25T17:40:03.010000"],["2024-07-25T17:40:04.010000"],["2024-07-25T17:40:05.010000"],["2024-07-25T17:40:06.010000"],["2024-07-25T17:40:07.010000"],["2024-07-25T17:40:08.010000"],["2024-07-25T17:40:09.010000"],["2024-07-25T17:40:10.010000"],["2024-07-25T17:40:11.010000"],["2024-07-25T17:40:12.010000"],["2024-07-25T17:40:13.010000"],["2024-07-25T17:40:14.010000"],["2024-07-25T17:40:15.010000"],["2024-07-25T17:40:16.010000"],["2024-07-25T17:40:17.010000"],["2024-07-25T17:40:18.010000"],["2024-07-25T17:40:19.010000"],["2024-07-25T17:40:20.010000"],["2024-07-25T17:40:21.010000"],["2024-07-25T17:40:22.010000"],["2024-07-25T17:40:23.010000"],["2024-07-25T17:40:24.010000"],["2024-07-25T17:40:25.010000"],["2024-07-25T17:40:26.010000"],["2024-07-25T17:40:27.010000"],["2024-07-25T17:40:28.010000"],["2024-07-25T17:40:29.010000"],["2024-07-25T17:40:30.010000"],["2024-07-25T17:40:31.010000"],["2024-07-25T17:40:32.010000"],["2024-07-25T17:40:33.010000"],["2024-07-25T17:40:34.010000"],["2024-07-25T17:40:35.010000"],["2024-07-25T17:40:36.010000"],["2024-07-25T17:40:37.010000"],["2024-07-25T17:40:38.010000"],["2024-07-25T17:40:39.010000"],["2024-07-25T17:40:40.010000"],["2024-07-25T17:40:41.010000"],["2024-07-25T17:40:42.010000"],["2024-07-25T17:40:43.010000"],["2024-07-25T17:40:44.010000"],["2024-07-25T17:40:45.010000"],["2024-07-25T17:40:46.010000"],["2024-07-25T17:40:47.010000"],["2024-07-25T17:40:48.010000"],["2024-07-25T17:40:49.010000"],["2024-07-25T17:40:50.010000"],["2024-07-25T17:40:51.010000"],["2024-07-25T17:40:52.010000"],["2024-07-25T17:40:53.010000"],["2024-07-25T17:40:54.010000"],["2024-07-25T17:40:55.010000"],["2024-07-25T17:40:56.010000"],["2024-07-25T17:40:57.010000"],["2024-07-25T17:40:58.010000"],["2024-07-25T17:40:59.010000"],["2024-07-25T17:41:00.010000"],["2024-07-25T17:41:01.010000"],["2024-07-25T17:41:02.010000"],["2024-07-25T17:41:03.010000"],["2024-07-25T17:41:04.010000"],["2024-07-25T17:41:05.010000"],["2024-07-25T17:41:06.010000"],["2024-07-25T17:41:07.010000"],["2024-07-25T17:41:08.010000"],["2024-07-25T17:41:09.010000"],["2024-07-25T17:41:10.010000"],["2024-07-25T17:41:11.010000"],["2024-07-25T17:41:12.010000"],["2024-07-25T17:41:13.010000"],["2024-07-25T17:41:14.010000"],["2024-07-25T17:41:15.010000"],["2024-07-25T17:41:16.010000"],["2024-07-25T17:41:17.010000"],["2024-07-25T17:41:18.010000"],["2024-07-25T17:41:19.010000"],["2024-07-25T17:41:20.010000"],["2024-07-25T17:41:21.010000"],["2024-07-25T17:41:22.010000"],["2024-07-25T17:41:23.010000"],["2024-07-25T17:41:24.010000"],["2024-07-25T17:41:25.010000"],["2024-07-25T17:41:26.010000"],["2024-07-25T17:41:27.010000"],["2024-07-25T17:41:28.010000"],["2024-07-25T17:41:29.010000"],["2024-07-25T17:41:30.010000"],["2024-07-25T17:41:31.010000"],["2024-07-25T17:41:32.010000"],["2024-07-25T17:41:33.010000"],["2024-07-25T17:41:34.010000"],["2024-07-25T17:41:35.010000"],["2024-07-25T17:41:36.010000"],["2024-07-25T17:41:37.010000"],["2024-07-25T17:41:38.010000"],["2024-07-25T17:41:39.010000"],["2024-07-25T17:41:40.010000"],["2024-07-25T17:41:41.010000"],["2024-07-25T17:41:42.010000"],["2024-07-25T17:41:43.010000"],["2024-07-25T17:41:44.010000"],["2024-07-25T17:41:45.010000"],["2024-07-25T17:41:46.010000"],["2024-07-25T17:41:47.010000"],["2024-07-25T17:41:48.010000"],["2024-07-25T17:41:49.010000"],["2024-07-25T17:41:50.010000"],["2024-07-25T17:41:51.010000"],["2024-07-25T17:41:52.010000"],["2024-07-25T17:41:53.010000"],["2024-07-25T17:41:54.010000"],["2024-07-25T17:41:55.010000"],["2024-07-25T17:41:56.010000"],["2024-07-25T17:41:57.010000"],["2024-07-25T17:41:58.010000"],["2024-07-25T17:41:59.010000"],["2024-07-25T17:42:00.010000"],["2024-07-25T17:42:01.010000"],["2024-07-25T17:42:02.010000"],["2024-07-25T17:42:03.010000"],["2024-07-25T17:42:04.010000"],["2024-07-25T17:42:05.010000"],["2024-07-25T17:42:06.010000"],["2024-07-25T17:42:07.010000"],["2024-07-25T17:42:08.010000"],["2024-07-25T17:42:09.010000"],["2024-07-25T17:42:10.010000"],["2024-07-25T17:42:11.010000"],["2024-07-25T17:42:12.010000"],["2024-07-25T17:42:13.010000"],["2024-07-25T17:42:14.010000"],["2024-07-25T17:42:15.010000"],["2024-07-25T17:42:16.010000"],["2024-07-25T17:42:17.010000"],["2024-07-25T17:42:18.010000"],["2024-07-25T17:42:19.010000"],["2024-07-25T17:42:20.010000"],["2024-07-25T17:42:21.010000"],["2024-07-25T17:42:22.010000"],["2024-07-25T17:42:23.010000"],["2024-07-25T17:42:24.010000"],["2024-07-25T17:42:25.010000"],["2024-07-25T17:42:26.010000"],["2024-07-25T17:42:27.010000"],["2024-07-25T17:42:28.010000"],["2024-07-25T17:42:29.010000"],["2024-07-25T17:42:30.010000"],["2024-07-25T17:42:31.010000"],["2024-07-25T17:42:32.010000"],["2024-07-25T17:42:33.010000"],["2024-07-25T17:42:34.010000"],["2024-07-25T17:42:35.010000"],["2024-07-25T17:42:36.010000"],["2024-07-25T17:42:37.010000"],["2024-07-25T17:42:38.010000"],["2024-07-25T17:42:39.010000"],["2024-07-25T17:42:40.010000"],["2024-07-25T17:42:41.010000"],["2024-07-25T17:42:42.010000"],["2024-07-25T17:42:43.010000"],["2024-07-25T17:42:44.010000"],["2024-07-25T17:42:45.010000"],["2024-07-25T17:42:46.010000"],["2024-07-25T17:42:47.010000"],["2024-07-25T17:42:48.010000"],["2024-07-25T17:42:49.010000"],["2024-07-25T17:42:50.010000"],["2024-07-25T17:42:51.010000"],["2024-07-25T17:42:52.010000"],["2024-07-25T17:42:53.010000"],["2024-07-25T17:42:54.010000"],["2024-07-25T17:42:55.010000"],["2024-07-25T17:42:56.010000"],["2024-07-25T17:42:57.010000"],["2024-07-25T17:42:58.010000"],["2024-07-25T17:42:59.010000"],["2024-07-25T17:43:00.010000"],["2024-07-25T17:43:01.010000"],["2024-07-25T17:43:02.010000"],["2024-07-25T17:43:03.010000"],["2024-07-25T17:43:04.010000"],["2024-07-25T17:43:05.010000"],["2024-07-25T17:43:06.010000"],["2024-07-25T17:43:07.010000"],["2024-07-25T17:43:08.010000"],["2024-07-25T17:43:09.010000"],["2024-07-25T17:43:10.010000"],["2024-07-25T17:43:11.010000"],["2024-07-25T17:43:12.010000"],["2024-07-25T17:43:13.010000"],["2024-07-25T17:43:14.010000"],["2024-07-25T17:43:15.010000"],["2024-07-25T17:43:16.010000"],["2024-07-25T17:43:17.010000"],["2024-07-25T17:43:18.010000"],["2024-07-25T17:43:19.010000"],["2024-07-25T17:43:20.010000"],["2024-07-25T17:43:21.010000"],["2024-07-25T17:43:22.010000"],["2024-07-25T17:43:23.010000"],["2024-07-25T17:43:24.010000"],["2024-07-25T17:43:25.010000"],["2024-07-25T17:43:26.010000"],["2024-07-25T17:43:27.010000"],["2024-07-25T17:43:28.010000"],["2024-07-25T17:43:29.010000"],["2024-07-25T17:43:30.010000"],["2024-07-25T17:43:31.010000"],["2024-07-25T17:43:32.010000"],["2024-07-25T17:43:33.010000"],["2024-07-25T17:43:34.010000"],["2024-07-25T17:43:35.010000"],["2024-07-25T17:43:36.010000"],["2024-07-25T17:43:37.010000"],["2024-07-25T17:43:38.010000"],["2024-07-25T17:43:39.010000"],["2024-07-25T17:43:40.010000"],["2024-07-25T17:43:41.010000"],["2024-07-25T17:43:42.010000"],["2024-07-25T17:43:43.010000"],["2024-07-25T17:43:44.010000"],["2024-07-25T17:43:45.010000"],["2024-07-25T17:43:46.010000"],["2024-07-25T17:43:47.010000"],["2024-07-25T17:43:48.010000"],["2024-07-25T17:43:49.010000"],["2024-07-25T17:43:50.010000"],["2024-07-25T17:43:51.010000"],["2024-07-25T17:43:52.010000"],["2024-07-25T17:43:53.010000"],["2024-07-25T17:43:54.010000"],["2024-07-25T17:43:55.010000"],["2024-07-25T17:43:56.010000"],["2024-07-25T17:43:57.010000"],["2024-07-25T17:43:58.010000"],["2024-07-25T17:43:59.010000"],["2024-07-25T17:44:00.010000"],["2024-07-25T17:44:01.010000"],["2024-07-25T17:44:02.010000"],["2024-07-25T17:44:03.010000"],["2024-07-25T17:44:04.010000"],["2024-07-25T17:44:05.010000"],["2024-07-25T17:44:06.010000"],["2024-07-25T17:44:07.010000"],["2024-07-25T17:44:08.010000"],["2024-07-25T17:44:09.010000"],["2024-07-25T17:44:10.010000"],["2024-07-25T17:44:11.010000"],["2024-07-25T17:44:12.010000"],["2024-07-25T17:44:13.010000"],["2024-07-25T17:44:14.010000"],["2024-07-25T17:44:15.010000"],["2024-07-25T17:44:16.010000"],["2024-07-25T17:44:17.010000"],["2024-07-25T17:44:18.010000"],["2024-07-25T17:44:19.010000"],["2024-07-25T17:44:20.010000"],["2024-07-25T17:44:21.010000"],["2024-07-25T17:44:22.010000"],["2024-07-25T17:44:23.010000"],["2024-07-25T17:44:24.010000"],["2024-07-25T17:44:25.010000"],["2024-07-25T17:44:26.010000"],["2024-07-25T17:44:27.010000"],["2024-07-25T17:44:28.010000"],["2024-07-25T17:44:29.010000"],["2024-07-25T17:44:30.010000"],["2024-07-25T17:44:31.010000"],["2024-07-25T17:44:32.010000"],["2024-07-25T17:44:33.010000"],["2024-07-25T17:44:34.010000"],["2024-07-25T17:44:35.010000"],["2024-07-25T17:44:36.010000"],["2024-07-25T17:44:37.010000"],["2024-07-25T17:44:38.010000"],["2024-07-25T17:44:39.010000"],["2024-07-25T17:44:40.010000"],["2024-07-25T17:44:41.010000"],["2024-07-25T17:44:42.010000"],["2024-07-25T17:44:43.010000"],["2024-07-25T17:44:44.010000"],["2024-07-25T17:44:45.010000"],["2024-07-25T17:44:46.010000"],["2024-07-25T17:44:47.010000"],["2024-07-25T17:44:48.010000"],["2024-07-25T17:44:49.010000"],["2024-07-25T17:44:50.010000"],["2024-07-25T17:44:51.010000"],["2024-07-25T17:44:52.010000"],["2024-07-25T17:44:53.010000"],["2024-07-25T17:44:54.010000"],["2024-07-25T17:44:55.010000"],["2024-07-25T17:44:56.010000"],["2024-07-25T17:44:57.010000"],["2024-07-25T17:44:58.010000"],["2024-07-25T17:44:59.010000"],["2024-07-25T17:45:00.010000"],["2024-07-25T17:45:01.010000"],["2024-07-25T17:45:02.010000"],["2024-07-25T17:45:03.010000"],["2024-07-25T17:45:04.010000"],["2024-07-25T17:45:05.010000"],["2024-07-25T17:45:06.010000"],["2024-07-25T17:45:07.010000"],["2024-07-25T17:45:08.010000"],["2024-07-25T17:45:09.010000"],["2024-07-25T17:45:10.010000"],["2024-07-25T17:45:11.010000"],["2024-07-25T17:45:12.010000"],["2024-07-25T17:45:13.010000"],["2024-07-25T17:45:14.010000"],["2024-07-25T17:45:15.010000"],["2024-07-25T17:45:16.010000"],["2024-07-25T17:45:17.010000"],["2024-07-25T17:45:18.010000"],["2024-07-25T17:45:19.010000"],["2024-07-25T17:45:20.010000"],["2024-07-25T17:45:21.010000"],["2024-07-25T17:45:22.010000"],["2024-07-25T17:45:23.010000"],["2024-07-25T17:45:24.010000"],["2024-07-25T17:45:25.010000"],["2024-07-25T17:45:26.010000"],["2024-07-25T17:45:27.010000"],["2024-07-25T17:45:28.010000"],["2024-07-25T17:45:29.010000"],["2024-07-25T17:45:30.010000"],["2024-07-25T17:45:31.010000"],["2024-07-25T17:45:32.010000"],["2024-07-25T17:45:33.010000"],["2024-07-25T17:45:34.010000"],["2024-07-25T17:45:35.010000"],["2024-07-25T17:45:36.010000"],["2024-07-25T17:45:37.010000"],["2024-07-25T17:45:38.010000"],["2024-07-25T17:45:39.010000"],["2024-07-25T17:45:40.010000"],["2024-07-25T17:45:41.010000"],["2024-07-25T17:45:42.010000"],["2024-07-25T17:45:43.010000"],["2024-07-25T17:45:44.010000"],["2024-07-25T17:45:45.010000"],["2024-07-25T17:45:46.010000"],["2024-07-25T17:45:47.010000"],["2024-07-25T17:45:48.010000"],["2024-07-25T17:45:49.010000"],["2024-07-25T17:45:50.010000"],["2024-07-25T17:45:51.010000"],["2024-07-25T17:45:52.010000"],["2024-07-25T17:45:53.010000"],["2024-07-25T17:45:54.010000"],["2024-07-25T17:45:55.010000"],["2024-07-25T17:45:56.010000"],["2024-07-25T17:45:57.010000"],["2024-07-25T17:45:58.010000"],["2024-07-25T17:45:59.010000"],["2024-07-25T17:46:00.010000"],["2024-07-25T17:46:01.010000"],["2024-07-25T17:46:02.010000"],["2024-07-25T17:46:03.010000"],["2024-07-25T17:46:04.010000"],["2024-07-25T17:46:05.010000"],["2024-07-25T17:46:06.010000"],["2024-07-25T17:46:07.010000"],["2024-07-25T17:46:08.010000"],["2024-07-25T17:46:09.010000"],["2024-07-25T17:46:10.010000"],["2024-07-25T17:46:11.010000"],["2024-07-25T17:46:12.010000"],["2024-07-25T17:46:13.010000"],["2024-07-25T17:46:14.010000"],["2024-07-25T17:46:15.010000"],["2024-07-25T17:46:16.010000"],["2024-07-25T17:46:17.010000"],["2024-07-25T17:46:18.010000"],["2024-07-25T17:46:19.010000"],["2024-07-25T17:46:20.010000"],["2024-07-25T17:46:21.010000"],["2024-07-25T17:46:22.010000"],["2024-07-25T17:46:23.010000"],["2024-07-25T17:46:24.010000"],["2024-07-25T17:46:25.010000"],["2024-07-25T17:46:26.010000"],["2024-07-25T17:46:27.010000"],["2024-07-25T17:46:28.010000"],["2024-07-25T17:46:29.010000"],["2024-07-25T17:46:30.010000"],["2024-07-25T17:46:31.010000"],["2024-07-25T17:46:32.010000"],["2024-07-25T17:46:33.010000"],["2024-07-25T17:46:34.010000"],["2024-07-25T17:46:35.010000"],["2024-07-25T17:46:36.010000"],["2024-07-25T17:46:37.010000"],["2024-07-25T17:46:38.010000"],["2024-07-25T17:46:39.010000"],["2024-07-25T17:46:40.010000"],["2024-07-25T17:46:41.010000"],["2024-07-25T17:46:42.010000"],["2024-07-25T17:46:43.010000"],["2024-07-25T17:46:44.010000"],["2024-07-25T17:46:45.010000"],["2024-07-25T17:46:46.010000"],["2024-07-25T17:46:47.010000"],["2024-07-25T17:46:48.010000"],["2024-07-25T17:46:49.010000"],["2024-07-25T17:46:50.010000"],["2024-07-25T17:46:51.010000"],["2024-07-25T17:46:52.010000"],["2024-07-25T17:46:53.010000"],["2024-07-25T17:46:54.010000"],["2024-07-25T17:46:55.010000"],["2024-07-25T17:46:56.010000"],["2024-07-25T17:46:57.010000"],["2024-07-25T17:46:58.010000"],["2024-07-25T17:46:59.010000"],["2024-07-25T17:47:00.010000"],["2024-07-25T17:47:01.010000"],["2024-07-25T17:47:02.010000"],["2024-07-25T17:47:03.010000"],["2024-07-25T17:47:04.010000"],["2024-07-25T17:47:05.010000"],["2024-07-25T17:47:06.010000"],["2024-07-25T17:47:07.010000"],["2024-07-25T17:47:08.010000"],["2024-07-25T17:47:09.010000"],["2024-07-25T17:47:10.010000"],["2024-07-25T17:47:11.010000"],["2024-07-25T17:47:12.010000"],["2024-07-25T17:47:13.010000"],["2024-07-25T17:47:14.010000"],["2024-07-25T17:47:15.010000"],["2024-07-25T17:47:16.010000"],["2024-07-25T17:47:17.010000"],["2024-07-25T17:47:18.010000"],["2024-07-25T17:47:19.010000"],["2024-07-25T17:47:20.010000"],["2024-07-25T17:47:21.010000"],["2024-07-25T17:47:22.010000"],["2024-07-25T17:47:23.010000"],["2024-07-25T17:47:24.010000"],["2024-07-25T17:47:25.010000"],["2024-07-25T17:47:26.010000"],["2024-07-25T17:47:27.010000"],["2024-07-25T17:47:28.010000"],["2024-07-25T17:47:29.010000"],["2024-07-25T17:47:30.010000"],["2024-07-25T17:47:31.010000"],["2024-07-25T17:47:32.010000"],["2024-07-25T17:47:33.010000"],["2024-07-25T17:47:34.010000"],["2024-07-25T17:47:35.010000"],["2024-07-25T17:47:36.010000"],["2024-07-25T17:47:37.010000"],["2024-07-25T17:47:38.010000"],["2024-07-25T17:47:39.010000"],["2024-07-25T17:47:40.010000"],["2024-07-25T17:47:41.010000"],["2024-07-25T17:47:42.010000"],["2024-07-25T17:47:43.010000"],["2024-07-25T17:47:44.010000"],["2024-07-25T17:47:45.010000"],["2024-07-25T17:47:46.010000"],["2024-07-25T17:47:47.010000"],["2024-07-25T17:47:48.010000"],["2024-07-25T17:47:49.010000"],["2024-07-25T17:47:50.010000"],["2024-07-25T17:47:51.010000"],["2024-07-25T17:47:52.010000"],["2024-07-25T17:47:53.010000"],["2024-07-25T17:47:54.010000"],["2024-07-25T17:47:55.010000"],["2024-07-25T17:47:56.010000"],["2024-07-25T17:47:57.010000"],["2024-07-25T17:47:58.010000"],["2024-07-25T17:47:59.010000"],["2024-07-25T17:48:00.010000"],["2024-07-25T17:48:01.010000"],["2024-07-25T17:48:02.010000"],["2024-07-25T17:48:03.010000"],["2024-07-25T17:48:04.010000"],["2024-07-25T17:48:05.010000"],["2024-07-25T17:48:06.010000"],["2024-07-25T17:48:07.010000"],["2024-07-25T17:48:08.010000"],["2024-07-25T17:48:09.010000"],["2024-07-25T17:48:10.010000"],["2024-07-25T17:48:11.010000"],["2024-07-25T17:48:12.010000"],["2024-07-25T17:48:13.010000"],["2024-07-25T17:48:14.010000"],["2024-07-25T17:48:15.010000"],["2024-07-25T17:48:16.010000"],["2024-07-25T17:48:17.010000"],["2024-07-25T17:48:18.010000"],["2024-07-25T17:48:19.010000"],["2024-07-25T17:48:20.010000"],["2024-07-25T17:48:21.010000"],["2024-07-25T17:48:22.010000"],["2024-07-25T17:48:23.010000"],["2024-07-25T17:48:24.010000"],["2024-07-25T17:48:25.010000"],["2024-07-25T17:48:26.010000"],["2024-07-25T17:48:27.010000"],["2024-07-25T17:48:28.010000"],["2024-07-25T17:48:29.010000"],["2024-07-25T17:48:30.010000"],["2024-07-25T17:48:31.010000"],["2024-07-25T17:48:32.010000"],["2024-07-25T17:48:33.010000"],["2024-07-25T17:48:34.010000"],["2024-07-25T17:48:35.010000"],["2024-07-25T17:48:36.010000"],["2024-07-25T17:48:37.010000"],["2024-07-25T17:48:38.010000"],["2024-07-25T17:48:39.010000"],["2024-07-25T17:48:40.010000"],["2024-07-25T17:48:41.010000"],["2024-07-25T17:48:42.010000"],["2024-07-25T17:48:43.010000"],["2024-07-25T17:48:44.010000"],["2024-07-25T17:48:45.010000"],["2024-07-25T17:48:46.010000"],["2024-07-25T17:48:47.010000"],["2024-07-25T17:48:48.010000"],["2024-07-25T17:48:49.010000"],["2024-07-25T17:48:50.010000"],["2024-07-25T17:48:51.010000"],["2024-07-25T17:48:52.010000"],["2024-07-25T17:48:53.010000"],["2024-07-25T17:48:54.010000"],["2024-07-25T17:48:55.010000"],["2024-07-25T17:48:56.010000"],["2024-07-25T17:48:57.010000"],["2024-07-25T17:48:58.010000"],["2024-07-25T17:48:59.010000"],["2024-07-25T17:49:00.010000"],["2024-07-25T17:49:01.010000"],["2024-07-25T17:49:02.010000"],["2024-07-25T17:49:03.010000"],["2024-07-25T17:49:04.010000"],["2024-07-25T17:49:05.010000"],["2024-07-25T17:49:06.010000"],["2024-07-25T17:49:07.010000"],["2024-07-25T17:49:08.010000"],["2024-07-25T17:49:09.010000"],["2024-07-25T17:49:10.010000"],["2024-07-25T17:49:11.010000"],["2024-07-25T17:49:12.010000"],["2024-07-25T17:49:13.010000"],["2024-07-25T17:49:14.010000"],["2024-07-25T17:49:15.010000"],["2024-07-25T17:49:16.010000"],["2024-07-25T17:49:17.010000"],["2024-07-25T17:49:18.010000"],["2024-07-25T17:49:19.010000"],["2024-07-25T17:49:20.010000"],["2024-07-25T17:49:21.010000"],["2024-07-25T17:49:22.010000"],["2024-07-25T17:49:23.010000"],["2024-07-25T17:49:24.010000"],["2024-07-25T17:49:25.010000"],["2024-07-25T17:49:26.010000"],["2024-07-25T17:49:27.010000"],["2024-07-25T17:49:28.010000"],["2024-07-25T17:49:29.010000"],["2024-07-25T17:49:30.010000"],["2024-07-25T17:49:31.010000"],["2024-07-25T17:49:32.010000"],["2024-07-25T17:49:33.010000"],["2024-07-25T17:49:34.010000"],["2024-07-25T17:49:35.010000"],["2024-07-25T17:49:36.010000"],["2024-07-25T17:49:37.010000"],["2024-07-25T17:49:38.010000"],["2024-07-25T17:49:39.010000"],["2024-07-25T17:49:40.010000"],["2024-07-25T17:49:41.010000"],["2024-07-25T17:49:42.010000"],["2024-07-25T17:49:43.010000"],["2024-07-25T17:49:44.010000"],["2024-07-25T17:49:45.010000"],["2024-07-25T17:49:46.010000"],["2024-07-25T17:49:47.010000"],["2024-07-25T17:49:48.010000"],["2024-07-25T17:49:49.010000"],["2024-07-25T17:49:50.010000"],["2024-07-25T17:49:51.010000"],["2024-07-25T17:49:52.010000"],["2024-07-25T17:49:53.010000"],["2024-07-25T17:49:54.010000"],["2024-07-25T17:49:55.010000"],["2024-07-25T17:49:56.010000"],["2024-07-25T17:49:57.010000"],["2024-07-25T17:49:58.010000"],["2024-07-25T17:49:59.010000"],["2024-07-25T17:50:00.010000"],["2024-07-25T17:50:01.010000"],["2024-07-25T17:50:02.010000"],["2024-07-25T17:50:03.010000"],["2024-07-25T17:50:04.010000"],["2024-07-25T17:50:05.010000"],["2024-07-25T17:50:06.010000"],["2024-07-25T17:50:07.010000"],["2024-07-25T17:50:08.010000"],["2024-07-25T17:50:09.010000"],["2024-07-25T17:50:10.010000"],["2024-07-25T17:50:11.010000"],["2024-07-25T17:50:12.010000"],["2024-07-25T17:50:13.010000"],["2024-07-25T17:50:14.010000"],["2024-07-25T17:50:15.010000"],["2024-07-25T17:50:16.010000"],["2024-07-25T17:50:17.010000"],["2024-07-25T17:50:18.010000"],["2024-07-25T17:50:19.010000"],["2024-07-25T17:50:20.010000"],["2024-07-25T17:50:21.010000"],["2024-07-25T17:50:22.010000"],["2024-07-25T17:50:23.010000"],["2024-07-25T17:50:24.010000"],["2024-07-25T17:50:25.010000"],["2024-07-25T17:50:26.010000"],["2024-07-25T17:50:27.010000"],["2024-07-25T17:50:28.010000"],["2024-07-25T17:50:29.010000"],["2024-07-25T17:50:30.010000"],["2024-07-25T17:50:31.010000"],["2024-07-25T17:50:32.010000"],["2024-07-25T17:50:33.010000"],["2024-07-25T17:50:34.010000"],["2024-07-25T17:50:35.010000"],["2024-07-25T17:50:36.010000"],["2024-07-25T17:50:37.010000"],["2024-07-25T17:50:38.010000"],["2024-07-25T17:50:39.010000"],["2024-07-25T17:50:40.010000"],["2024-07-25T17:50:41.010000"],["2024-07-25T17:50:42.010000"],["2024-07-25T17:50:43.010000"],["2024-07-25T17:50:44.010000"],["2024-07-25T17:50:45.010000"],["2024-07-25T17:50:46.010000"],["2024-07-25T17:50:47.010000"],["2024-07-25T17:50:48.010000"],["2024-07-25T17:50:49.010000"],["2024-07-25T17:50:50.010000"],["2024-07-25T17:50:51.010000"],["2024-07-25T17:50:52.010000"],["2024-07-25T17:50:53.010000"],["2024-07-25T17:50:54.010000"],["2024-07-25T17:50:55.010000"],["2024-07-25T17:50:56.010000"],["2024-07-25T17:50:57.010000"],["2024-07-25T17:50:58.010000"],["2024-07-25T17:50:59.010000"],["2024-07-25T17:51:00.010000"],["2024-07-25T17:51:01.010000"],["2024-07-25T17:51:02.010000"],["2024-07-25T17:51:03.010000"],["2024-07-25T17:51:04.010000"],["2024-07-25T17:51:05.010000"],["2024-07-25T17:51:06.010000"],["2024-07-25T17:51:07.010000"],["2024-07-25T17:51:08.010000"],["2024-07-25T17:51:09.010000"],["2024-07-25T17:51:10.010000"],["2024-07-25T17:51:11.010000"],["2024-07-25T17:51:12.010000"],["2024-07-25T17:51:13.010000"],["2024-07-25T17:51:14.010000"],["2024-07-25T17:51:15.010000"],["2024-07-25T17:51:16.010000"],["2024-07-25T17:51:17.010000"],["2024-07-25T17:51:18.010000"],["2024-07-25T17:51:19.010000"],["2024-07-25T17:51:20.010000"],["2024-07-25T17:51:21.010000"],["2024-07-25T17:51:22.010000"],["2024-07-25T17:51:23.010000"],["2024-07-25T17:51:24.010000"],["2024-07-25T17:51:25.010000"],["2024-07-25T17:51:26.010000"],["2024-07-25T17:51:27.010000"],["2024-07-25T17:51:28.010000"],["2024-07-25T17:51:29.010000"],["2024-07-25T17:51:30.010000"],["2024-07-25T17:51:31.010000"],["2024-07-25T17:51:32.010000"],["2024-07-25T17:51:33.010000"],["2024-07-25T17:51:34.010000"],["2024-07-25T17:51:35.010000"],["2024-07-25T17:51:36.010000"],["2024-07-25T17:51:37.010000"],["2024-07-25T17:51:38.010000"],["2024-07-25T17:51:39.010000"],["2024-07-25T17:51:40.010000"],["2024-07-25T17:51:41.010000"],["2024-07-25T17:51:42.010000"],["2024-07-25T17:51:43.010000"],["2024-07-25T17:51:44.010000"],["2024-07-25T17:51:45.010000"],["2024-07-25T17:51:46.010000"],["2024-07-25T17:51:47.010000"],["2024-07-25T17:51:48.010000"],["2024-07-25T17:51:49.010000"],["2024-07-25T17:51:50.010000"],["2024-07-25T17:51:51.010000"],["2024-07-25T17:51:52.010000"],["2024-07-25T17:51:53.010000"],["2024-07-25T17:51:54.010000"],["2024-07-25T17:51:55.010000"],["2024-07-25T17:51:56.010000"],["2024-07-25T17:51:57.010000"],["2024-07-25T17:51:58.010000"],["2024-07-25T17:51:59.010000"],["2024-07-25T17:52:00.010000"],["2024-07-25T17:52:01.010000"],["2024-07-25T17:52:02.010000"],["2024-07-25T17:52:03.010000"],["2024-07-25T17:52:04.010000"],["2024-07-25T17:52:05.010000"],["2024-07-25T17:52:06.010000"],["2024-07-25T17:52:07.010000"],["2024-07-25T17:52:08.010000"],["2024-07-25T17:52:09.010000"],["2024-07-25T17:52:10.010000"],["2024-07-25T17:52:11.010000"],["2024-07-25T17:52:12.010000"],["2024-07-25T17:52:13.010000"],["2024-07-25T17:52:14.010000"],["2024-07-25T17:52:15.010000"],["2024-07-25T17:52:16.010000"],["2024-07-25T17:52:17.010000"],["2024-07-25T17:52:18.010000"],["2024-07-25T17:52:19.010000"],["2024-07-25T17:52:20.010000"],["2024-07-25T17:52:21.010000"],["2024-07-25T17:52:22.010000"],["2024-07-25T17:52:23.010000"],["2024-07-25T17:52:24.010000"],["2024-07-25T17:52:25.010000"],["2024-07-25T17:52:26.010000"],["2024-07-25T17:52:27.010000"],["2024-07-25T17:52:28.010000"],["2024-07-25T17:52:29.010000"],["2024-07-25T17:52:30.010000"],["2024-07-25T17:52:31.010000"],["2024-07-25T17:52:32.010000"],["2024-07-25T17:52:33.010000"],["2024-07-25T17:52:34.010000"],["2024-07-25T17:52:35.010000"],["2024-07-25T17:52:36.010000"],["2024-07-25T17:52:37.010000"],["2024-07-25T17:52:38.010000"],["2024-07-25T17:52:39.010000"],["2024-07-25T17:52:40.010000"],["2024-07-25T17:52:41.010000"],["2024-07-25T17:52:42.010000"],["2024-07-25T17:52:43.010000"],["2024-07-25T17:52:44.010000"],["2024-07-25T17:52:45.010000"],["2024-07-25T17:52:46.010000"],["2024-07-25T17:52:47.010000"],["2024-07-25T17:52:48.010000"],["2024-07-25T17:52:49.010000"],["2024-07-25T17:52:50.010000"],["2024-07-25T17:52:51.010000"],["2024-07-25T17:52:52.010000"],["2024-07-25T17:52:53.010000"],["2024-07-25T17:52:54.010000"],["2024-07-25T17:52:55.010000"],["2024-07-25T17:52:56.010000"],["2024-07-25T17:52:57.010000"],["2024-07-25T17:52:58.010000"],["2024-07-25T17:52:59.010000"],["2024-07-25T17:53:00.010000"],["2024-07-25T17:53:01.010000"],["2024-07-25T17:53:02.010000"],["2024-07-25T17:53:03.010000"],["2024-07-25T17:53:04.010000"],["2024-07-25T17:53:05.010000"],["2024-07-25T17:53:06.010000"],["2024-07-25T17:53:07.010000"],["2024-07-25T17:53:08.010000"],["2024-07-25T17:53:09.010000"],["2024-07-25T17:53:10.010000"],["2024-07-25T17:53:11.010000"],["2024-07-25T17:53:12.010000"],["2024-07-25T17:53:13.010000"],["2024-07-25T17:53:14.010000"],["2024-07-25T17:53:15.010000"],["2024-07-25T17:53:16.010000"],["2024-07-25T17:53:17.010000"],["2024-07-25T17:53:18.010000"],["2024-07-25T17:53:19.010000"],["2024-07-25T17:53:20.010000"],["2024-07-25T17:53:21.010000"],["2024-07-25T17:53:22.010000"],["2024-07-25T17:53:23.010000"],["2024-07-25T17:53:24.010000"],["2024-07-25T17:53:25.010000"],["2024-07-25T17:53:26.010000"],["2024-07-25T17:53:27.010000"],["2024-07-25T17:53:28.010000"],["2024-07-25T17:53:29.010000"],["2024-07-25T17:53:30.010000"],["2024-07-25T17:53:31.010000"],["2024-07-25T17:53:32.010000"],["2024-07-25T17:53:33.010000"],["2024-07-25T17:53:34.010000"],["2024-07-25T17:53:35.010000"],["2024-07-25T17:53:36.010000"],["2024-07-25T17:53:37.010000"],["2024-07-25T17:53:38.010000"],["2024-07-25T17:53:39.010000"],["2024-07-25T17:53:40.010000"],["2024-07-25T17:53:41.010000"],["2024-07-25T17:53:42.010000"],["2024-07-25T17:53:43.010000"],["2024-07-25T17:53:44.010000"],["2024-07-25T17:53:45.010000"],["2024-07-25T17:53:46.010000"],["2024-07-25T17:53:47.010000"],["2024-07-25T17:53:48.010000"],["2024-07-25T17:53:49.010000"],["2024-07-25T17:53:50.010000"],["2024-07-25T17:53:51.010000"],["2024-07-25T17:53:52.010000"],["2024-07-25T17:53:53.010000"],["2024-07-25T17:53:54.010000"],["2024-07-25T17:53:55.010000"],["2024-07-25T17:53:56.010000"],["2024-07-25T17:53:57.010000"],["2024-07-25T17:53:58.010000"],["2024-07-25T17:53:59.010000"],["2024-07-25T17:54:00.010000"],["2024-07-25T17:54:01.010000"],["2024-07-25T17:54:02.010000"],["2024-07-25T17:54:03.010000"],["2024-07-25T17:54:04.010000"],["2024-07-25T17:54:05.010000"],["2024-07-25T17:54:06.010000"],["2024-07-25T17:54:07.010000"],["2024-07-25T17:54:08.010000"],["2024-07-25T17:54:09.010000"],["2024-07-25T17:54:10.010000"],["2024-07-25T17:54:11.010000"],["2024-07-25T17:54:12.010000"],["2024-07-25T17:54:13.010000"],["2024-07-25T17:54:14.010000"],["2024-07-25T17:54:15.010000"],["2024-07-25T17:54:16.010000"],["2024-07-25T17:54:17.010000"],["2024-07-25T17:54:18.010000"],["2024-07-25T17:54:19.010000"],["2024-07-25T17:54:20.010000"],["2024-07-25T17:54:21.010000"],["2024-07-25T17:54:22.010000"],["2024-07-25T17:54:23.010000"],["2024-07-25T17:54:24.010000"],["2024-07-25T17:54:25.010000"],["2024-07-25T17:54:26.010000"],["2024-07-25T17:54:27.010000"],["2024-07-25T17:54:28.010000"],["2024-07-25T17:54:29.010000"],["2024-07-25T17:54:30.010000"],["2024-07-25T17:54:31.010000"],["2024-07-25T17:54:32.010000"],["2024-07-25T17:54:33.010000"],["2024-07-25T17:54:34.010000"],["2024-07-25T17:54:35.010000"],["2024-07-25T17:54:36.010000"],["2024-07-25T17:54:37.010000"],["2024-07-25T17:54:38.010000"],["2024-07-25T17:54:39.010000"],["2024-07-25T17:54:40.010000"],["2024-07-25T17:54:41.010000"],["2024-07-25T17:54:42.010000"],["2024-07-25T17:54:43.010000"],["2024-07-25T17:54:44.010000"],["2024-07-25T17:54:45.010000"],["2024-07-25T17:54:46.010000"],["2024-07-25T17:54:47.010000"],["2024-07-25T17:54:48.010000"],["2024-07-25T17:54:49.010000"],["2024-07-25T17:54:50.010000"],["2024-07-25T17:54:51.010000"],["2024-07-25T17:54:52.010000"],["2024-07-25T17:54:53.010000"],["2024-07-25T17:54:54.010000"],["2024-07-25T17:54:55.010000"],["2024-07-25T17:54:56.010000"],["2024-07-25T17:54:57.010000"],["2024-07-25T17:54:58.010000"],["2024-07-25T17:54:59.010000"],["2024-07-25T17:55:00.010000"],["2024-07-25T17:55:01.010000"],["2024-07-25T17:55:02.010000"],["2024-07-25T17:55:03.010000"],["2024-07-25T17:55:04.010000"],["2024-07-25T17:55:05.010000"],["2024-07-25T17:55:06.010000"],["2024-07-25T17:55:07.010000"],["2024-07-25T17:55:08.010000"],["2024-07-25T17:55:09.010000"],["2024-07-25T17:55:10.010000"],["2024-07-25T17:55:11.010000"],["2024-07-25T17:55:12.010000"],["2024-07-25T17:55:13.010000"],["2024-07-25T17:55:14.010000"],["2024-07-25T17:55:15.010000"],["2024-07-25T17:55:16.010000"],["2024-07-25T17:55:17.010000"],["2024-07-25T17:55:18.010000"],["2024-07-25T17:55:19.010000"],["2024-07-25T17:55:20.010000"],["2024-07-25T17:55:21.010000"],["2024-07-25T17:55:22.010000"],["2024-07-25T17:55:23.010000"],["2024-07-25T17:55:24.010000"],["2024-07-25T17:55:25.010000"],["2024-07-25T17:55:26.010000"],["2024-07-25T17:55:27.010000"],["2024-07-25T17:55:28.010000"],["2024-07-25T17:55:29.010000"],["2024-07-25T17:55:30.010000"],["2024-07-25T17:55:31.010000"],["2024-07-25T17:55:32.010000"],["2024-07-25T17:55:33.010000"],["2024-07-25T17:55:34.010000"],["2024-07-25T17:55:35.010000"],["2024-07-25T17:55:36.010000"],["2024-07-25T17:55:37.010000"],["2024-07-25T17:55:38.010000"],["2024-07-25T17:55:39.010000"],["2024-07-25T17:55:40.010000"],["2024-07-25T17:55:41.010000"],["2024-07-25T17:55:42.010000"],["2024-07-25T17:55:43.010000"],["2024-07-25T17:55:44.010000"],["2024-07-25T17:55:45.010000"],["2024-07-25T17:55:46.010000"],["2024-07-25T17:55:47.010000"],["2024-07-25T17:55:48.010000"],["2024-07-25T17:55:49.010000"],["2024-07-25T17:55:50.010000"],["2024-07-25T17:55:51.010000"],["2024-07-25T17:55:52.010000"],["2024-07-25T17:55:53.010000"],["2024-07-25T17:55:54.010000"],["2024-07-25T17:55:55.010000"],["2024-07-25T17:55:56.010000"],["2024-07-25T17:55:57.010000"],["2024-07-25T17:55:58.010000"],["2024-07-25T17:55:59.010000"],["2024-07-25T17:56:00.010000"],["2024-07-25T17:56:01.010000"],["2024-07-25T17:56:02.010000"],["2024-07-25T17:56:03.010000"],["2024-07-25T17:56:04.010000"],["2024-07-25T17:56:05.010000"],["2024-07-25T17:56:06.010000"],["2024-07-25T17:56:07.010000"],["2024-07-25T17:56:08.010000"],["2024-07-25T17:56:09.010000"],["2024-07-25T17:56:10.010000"],["2024-07-25T17:56:11.010000"],["2024-07-25T17:56:12.010000"],["2024-07-25T17:56:13.010000"],["2024-07-25T17:56:14.010000"],["2024-07-25T17:56:15.010000"],["2024-07-25T17:56:16.010000"],["2024-07-25T17:56:17.010000"],["2024-07-25T17:56:18.010000"],["2024-07-25T17:56:19.010000"],["2024-07-25T17:56:20.010000"],["2024-07-25T17:56:21.010000"],["2024-07-25T17:56:22.010000"],["2024-07-25T17:56:23.010000"],["2024-07-25T17:56:24.010000"],["2024-07-25T17:56:25.010000"],["2024-07-25T17:56:26.010000"],["2024-07-25T17:56:27.010000"],["2024-07-25T17:56:28.010000"],["2024-07-25T17:56:29.010000"],["2024-07-25T17:56:30.010000"],["2024-07-25T17:56:31.010000"],["2024-07-25T17:56:32.010000"],["2024-07-25T17:56:33.010000"],["2024-07-25T17:56:34.010000"],["2024-07-25T17:56:35.010000"],["2024-07-25T17:56:36.010000"],["2024-07-25T17:56:37.010000"],["2024-07-25T17:56:38.010000"],["2024-07-25T17:56:39.010000"],["2024-07-25T17:56:40.010000"],["2024-07-25T17:56:41.010000"],["2024-07-25T17:56:42.010000"],["2024-07-25T17:56:43.010000"],["2024-07-25T17:56:44.010000"],["2024-07-25T17:56:45.010000"],["2024-07-25T17:56:46.010000"],["2024-07-25T17:56:47.010000"],["2024-07-25T17:56:48.010000"],["2024-07-25T17:56:49.010000"],["2024-07-25T17:56:50.010000"],["2024-07-25T17:56:51.010000"],["2024-07-25T17:56:52.010000"],["2024-07-25T17:56:53.010000"],["2024-07-25T17:56:54.010000"],["2024-07-25T17:56:55.010000"],["2024-07-25T17:56:56.010000"],["2024-07-25T17:56:57.010000"],["2024-07-25T17:56:58.010000"],["2024-07-25T17:56:59.010000"],["2024-07-25T17:57:00.010000"],["2024-07-25T17:57:01.010000"],["2024-07-25T17:57:02.010000"],["2024-07-25T17:57:03.010000"],["2024-07-25T17:57:04.010000"],["2024-07-25T17:57:05.010000"],["2024-07-25T17:57:06.010000"],["2024-07-25T17:57:07.010000"],["2024-07-25T17:57:08.010000"],["2024-07-25T17:57:09.010000"],["2024-07-25T17:57:10.010000"],["2024-07-25T17:57:11.010000"],["2024-07-25T17:57:12.010000"],["2024-07-25T17:57:13.010000"],["2024-07-25T17:57:14.010000"],["2024-07-25T17:57:15.010000"],["2024-07-25T17:57:16.010000"],["2024-07-25T17:57:17.010000"],["2024-07-25T17:57:18.010000"],["2024-07-25T17:57:19.010000"],["2024-07-25T17:57:20.010000"],["2024-07-25T17:57:21.010000"],["2024-07-25T17:57:22.010000"],["2024-07-25T17:57:23.010000"],["2024-07-25T17:57:24.010000"],["2024-07-25T17:57:25.010000"],["2024-07-25T17:57:26.010000"],["2024-07-25T17:57:27.010000"],["2024-07-25T17:57:28.010000"],["2024-07-25T17:57:29.010000"],["2024-07-25T17:57:30.010000"],["2024-07-25T17:57:31.010000"],["2024-07-25T17:57:32.010000"],["2024-07-25T17:57:33.010000"],["2024-07-25T17:57:34.010000"],["2024-07-25T17:57:35.010000"],["2024-07-25T17:57:36.010000"],["2024-07-25T17:57:37.010000"],["2024-07-25T17:57:38.010000"],["2024-07-25T17:57:39.010000"],["2024-07-25T17:57:40.010000"],["2024-07-25T17:57:41.010000"],["2024-07-25T17:57:42.010000"],["2024-07-25T17:57:43.010000"],["2024-07-25T17:57:44.010000"],["2024-07-25T17:57:45.010000"],["2024-07-25T17:57:46.010000"],["2024-07-25T17:57:47.010000"],["2024-07-25T17:57:48.010000"],["2024-07-25T17:57:49.010000"],["2024-07-25T17:57:50.010000"],["2024-07-25T17:57:51.010000"],["2024-07-25T17:57:52.010000"],["2024-07-25T17:57:53.010000"],["2024-07-25T17:57:54.010000"],["2024-07-25T17:57:55.010000"],["2024-07-25T17:57:56.010000"],["2024-07-25T17:57:57.010000"],["2024-07-25T17:57:58.010000"],["2024-07-25T17:57:59.010000"],["2024-07-25T17:58:00.010000"],["2024-07-25T17:58:01.010000"],["2024-07-25T17:58:02.010000"],["2024-07-25T17:58:03.010000"],["2024-07-25T17:58:04.010000"],["2024-07-25T17:58:05.010000"],["2024-07-25T17:58:06.010000"],["2024-07-25T17:58:07.010000"],["2024-07-25T17:58:08.010000"],["2024-07-25T17:58:09.010000"],["2024-07-25T17:58:10.010000"],["2024-07-25T17:58:11.010000"],["2024-07-25T17:58:12.010000"],["2024-07-25T17:58:13.010000"],["2024-07-25T17:58:14.010000"],["2024-07-25T17:58:15.010000"],["2024-07-25T17:58:16.010000"],["2024-07-25T17:58:17.010000"],["2024-07-25T17:58:18.010000"],["2024-07-25T17:58:19.010000"],["2024-07-25T17:58:20.010000"],["2024-07-25T17:58:21.010000"],["2024-07-25T17:58:22.010000"],["2024-07-25T17:58:23.010000"],["2024-07-25T17:58:24.010000"],["2024-07-25T17:58:25.010000"],["2024-07-25T17:58:26.010000"],["2024-07-25T17:58:27.010000"],["2024-07-25T17:58:28.010000"],["2024-07-25T17:58:29.010000"],["2024-07-25T17:58:30.010000"],["2024-07-25T17:58:31.010000"],["2024-07-25T17:58:32.010000"],["2024-07-25T17:58:33.010000"],["2024-07-25T17:58:34.010000"],["2024-07-25T17:58:35.010000"],["2024-07-25T17:58:36.010000"],["2024-07-25T17:58:37.010000"],["2024-07-25T17:58:38.010000"],["2024-07-25T17:58:39.010000"],["2024-07-25T17:58:40.010000"],["2024-07-25T17:58:41.010000"],["2024-07-25T17:58:42.010000"],["2024-07-25T17:58:43.010000"],["2024-07-25T17:58:44.010000"],["2024-07-25T17:58:45.010000"],["2024-07-25T17:58:46.010000"],["2024-07-25T17:58:47.010000"],["2024-07-25T17:58:48.010000"],["2024-07-25T17:58:49.010000"],["2024-07-25T17:58:50.010000"],["2024-07-25T17:58:51.010000"],["2024-07-25T17:58:52.010000"],["2024-07-25T17:58:53.010000"],["2024-07-25T17:58:54.010000"],["2024-07-25T17:58:55.010000"],["2024-07-25T17:58:56.010000"],["2024-07-25T17:58:57.010000"],["2024-07-25T17:58:58.010000"],["2024-07-25T17:58:59.010000"],["2024-07-25T17:59:00.010000"],["2024-07-25T17:59:01.010000"],["2024-07-25T17:59:02.010000"],["2024-07-25T17:59:03.010000"],["2024-07-25T17:59:04.010000"],["2024-07-25T17:59:05.010000"],["2024-07-25T17:59:06.010000"],["2024-07-25T17:59:07.010000"],["2024-07-25T17:59:08.010000"],["2024-07-25T17:59:09.010000"],["2024-07-25T17:59:10.010000"],["2024-07-25T17:59:11.010000"],["2024-07-25T17:59:12.010000"],["2024-07-25T17:59:13.010000"],["2024-07-25T17:59:14.010000"],["2024-07-25T17:59:15.010000"],["2024-07-25T17:59:16.010000"],["2024-07-25T17:59:17.010000"],["2024-07-25T17:59:18.010000"],["2024-07-25T17:59:19.010000"],["2024-07-25T17:59:20.010000"],["2024-07-25T17:59:21.010000"],["2024-07-25T17:59:22.010000"],["2024-07-25T17:59:23.010000"],["2024-07-25T17:59:24.010000"],["2024-07-25T17:59:25.010000"],["2024-07-25T17:59:26.010000"],["2024-07-25T17:59:27.010000"],["2024-07-25T17:59:28.010000"],["2024-07-25T17:59:29.010000"],["2024-07-25T17:59:30.010000"],["2024-07-25T17:59:31.010000"],["2024-07-25T17:59:32.010000"],["2024-07-25T17:59:33.010000"],["2024-07-25T17:59:34.010000"],["2024-07-25T17:59:35.010000"],["2024-07-25T17:59:36.010000"],["2024-07-25T17:59:37.010000"],["2024-07-25T17:59:38.010000"],["2024-07-25T17:59:39.010000"],["2024-07-25T17:59:40.010000"],["2024-07-25T17:59:41.010000"],["2024-07-25T17:59:42.010000"],["2024-07-25T17:59:43.010000"],["2024-07-25T17:59:44.010000"],["2024-07-25T17:59:45.010000"],["2024-07-25T17:59:46.010000"],["2024-07-25T17:59:47.010000"],["2024-07-25T17:59:48.010000"],["2024-07-25T17:59:49.010000"],["2024-07-25T17:59:50.010000"],["2024-07-25T17:59:51.010000"],["2024-07-25T17:59:52.010000"],["2024-07-25T17:59:53.010000"],["2024-07-25T17:59:54.010000"],["2024-07-25T17:59:55.010000"],["2024-07-25T17:59:56.010000"],["2024-07-25T17:59:57.010000"],["2024-07-25T17:59:58.010000"],["2024-07-25T17:59:59.010000"],["2024-07-25T18:00:00.010000"],["2024-07-25T18:00:01.010000"],["2024-07-25T18:00:02.010000"],["2024-07-25T18:00:03.010000"],["2024-07-25T18:00:04.010000"],["2024-07-25T18:00:05.010000"],["2024-07-25T18:00:06.010000"],["2024-07-25T18:00:07.010000"],["2024-07-25T18:00:08.010000"],["2024-07-25T18:00:09.010000"],["2024-07-25T18:00:10.010000"],["2024-07-25T18:00:11.010000"],["2024-07-25T18:00:12.010000"],["2024-07-25T18:00:13.010000"],["2024-07-25T18:00:14.010000"],["2024-07-25T18:00:15.010000"],["2024-07-25T18:00:16.010000"],["2024-07-25T18:00:17.010000"],["2024-07-25T18:00:18.010000"],["2024-07-25T18:00:19.010000"],["2024-07-25T18:00:20.010000"],["2024-07-25T18:00:21.010000"],["2024-07-25T18:00:22.010000"],["2024-07-25T18:00:23.010000"],["2024-07-25T18:00:24.010000"],["2024-07-25T18:00:25.010000"],["2024-07-25T18:00:26.010000"],["2024-07-25T18:00:27.010000"],["2024-07-25T18:00:28.010000"],["2024-07-25T18:00:29.010000"],["2024-07-25T18:00:30.010000"],["2024-07-25T18:00:31.010000"],["2024-07-25T18:00:32.010000"],["2024-07-25T18:00:33.010000"],["2024-07-25T18:00:34.010000"],["2024-07-25T18:00:35.010000"],["2024-07-25T18:00:36.010000"],["2024-07-25T18:00:37.010000"],["2024-07-25T18:00:38.010000"],["2024-07-25T18:00:39.010000"],["2024-07-25T18:00:40.010000"],["2024-07-25T18:00:41.010000"],["2024-07-25T18:00:42.010000"],["2024-07-25T18:00:43.010000"],["2024-07-25T18:00:44.010000"],["2024-07-25T18:00:45.010000"],["2024-07-25T18:00:46.010000"],["2024-07-25T18:00:47.010000"],["2024-07-25T18:00:48.010000"],["2024-07-25T18:00:49.010000"],["2024-07-25T18:00:50.010000"],["2024-07-25T18:00:51.010000"],["2024-07-25T18:00:52.010000"],["2024-07-25T18:00:53.010000"],["2024-07-25T18:00:54.010000"],["2024-07-25T18:00:55.010000"],["2024-07-25T18:00:56.010000"],["2024-07-25T18:00:57.010000"],["2024-07-25T18:00:58.010000"],["2024-07-25T18:00:59.010000"],["2024-07-25T18:01:00.010000"],["2024-07-25T18:01:01.010000"],["2024-07-25T18:01:02.010000"],["2024-07-25T18:01:03.010000"],["2024-07-25T18:01:04.010000"],["2024-07-25T18:01:05.010000"],["2024-07-25T18:01:06.010000"],["2024-07-25T18:01:07.010000"],["2024-07-25T18:01:08.010000"],["2024-07-25T18:01:09.010000"],["2024-07-25T18:01:10.010000"],["2024-07-25T18:01:11.010000"],["2024-07-25T18:01:12.010000"],["2024-07-25T18:01:13.010000"],["2024-07-25T18:01:14.010000"],["2024-07-25T18:01:15.010000"],["2024-07-25T18:01:16.010000"],["2024-07-25T18:01:17.010000"],["2024-07-25T18:01:18.010000"],["2024-07-25T18:01:19.010000"],["2024-07-25T18:01:20.010000"],["2024-07-25T18:01:21.010000"],["2024-07-25T18:01:22.010000"],["2024-07-25T18:01:23.010000"],["2024-07-25T18:01:24.010000"],["2024-07-25T18:01:25.010000"],["2024-07-25T18:01:26.010000"],["2024-07-25T18:01:27.010000"],["2024-07-25T18:01:28.010000"],["2024-07-25T18:01:29.010000"],["2024-07-25T18:01:30.010000"],["2024-07-25T18:01:31.010000"],["2024-07-25T18:01:32.010000"],["2024-07-25T18:01:33.010000"],["2024-07-25T18:01:34.010000"],["2024-07-25T18:01:35.010000"],["2024-07-25T18:01:36.010000"],["2024-07-25T18:01:37.010000"],["2024-07-25T18:01:38.010000"],["2024-07-25T18:01:39.010000"],["2024-07-25T18:01:40.010000"],["2024-07-25T18:01:41.010000"],["2024-07-25T18:01:42.010000"],["2024-07-25T18:01:43.010000"],["2024-07-25T18:01:44.010000"],["2024-07-25T18:01:45.010000"],["2024-07-25T18:01:46.010000"],["2024-07-25T18:01:47.010000"],["2024-07-25T18:01:48.010000"],["2024-07-25T18:01:49.010000"],["2024-07-25T18:01:50.010000"],["2024-07-25T18:01:51.010000"],["2024-07-25T18:01:52.010000"],["2024-07-25T18:01:53.010000"],["2024-07-25T18:01:54.010000"],["2024-07-25T18:01:55.010000"],["2024-07-25T18:01:56.010000"],["2024-07-25T18:01:57.010000"],["2024-07-25T18:01:58.010000"],["2024-07-25T18:01:59.010000"],["2024-07-25T18:02:00.010000"],["2024-07-25T18:02:01.010000"],["2024-07-25T18:02:02.010000"],["2024-07-25T18:02:03.010000"],["2024-07-25T18:02:04.010000"],["2024-07-25T18:02:05.010000"],["2024-07-25T18:02:06.010000"],["2024-07-25T18:02:07.010000"],["2024-07-25T18:02:08.010000"],["2024-07-25T18:02:09.010000"],["2024-07-25T18:02:10.010000"],["2024-07-25T18:02:11.010000"],["2024-07-25T18:02:12.010000"],["2024-07-25T18:02:13.010000"],["2024-07-25T18:02:14.010000"],["2024-07-25T18:02:15.010000"],["2024-07-25T18:02:16.010000"],["2024-07-25T18:02:17.010000"],["2024-07-25T18:02:18.010000"],["2024-07-25T18:02:19.010000"],["2024-07-25T18:02:20.010000"],["2024-07-25T18:02:21.010000"],["2024-07-25T18:02:22.010000"],["2024-07-25T18:02:23.010000"],["2024-07-25T18:02:24.010000"],["2024-07-25T18:02:25.010000"],["2024-07-25T18:02:26.010000"],["2024-07-25T18:02:27.010000"],["2024-07-25T18:02:28.010000"],["2024-07-25T18:02:29.010000"],["2024-07-25T18:02:30.010000"],["2024-07-25T18:02:31.010000"],["2024-07-25T18:02:32.010000"],["2024-07-25T18:02:33.010000"],["2024-07-25T18:02:34.010000"],["2024-07-25T18:02:35.010000"],["2024-07-25T18:02:36.010000"],["2024-07-25T18:02:37.010000"],["2024-07-25T18:02:38.010000"],["2024-07-25T18:02:39.010000"],["2024-07-25T18:02:40.010000"],["2024-07-25T18:02:41.010000"],["2024-07-25T18:02:42.010000"],["2024-07-25T18:02:43.010000"],["2024-07-25T18:02:44.010000"],["2024-07-25T18:02:45.010000"],["2024-07-25T18:02:46.010000"],["2024-07-25T18:02:47.010000"],["2024-07-25T18:02:48.010000"],["2024-07-25T18:02:49.010000"],["2024-07-25T18:02:50.010000"],["2024-07-25T18:02:51.010000"],["2024-07-25T18:02:52.010000"],["2024-07-25T18:02:53.010000"],["2024-07-25T18:02:54.010000"],["2024-07-25T18:02:55.010000"],["2024-07-25T18:02:56.010000"],["2024-07-25T18:02:57.010000"],["2024-07-25T18:02:58.010000"],["2024-07-25T18:02:59.010000"],["2024-07-25T18:03:00.010000"],["2024-07-25T18:03:01.010000"],["2024-07-25T18:03:02.010000"],["2024-07-25T18:03:03.010000"],["2024-07-25T18:03:04.010000"],["2024-07-25T18:03:05.010000"],["2024-07-25T18:03:06.010000"],["2024-07-25T18:03:07.010000"],["2024-07-25T18:03:08.010000"],["2024-07-25T18:03:09.010000"],["2024-07-25T18:03:10.010000"],["2024-07-25T18:03:11.010000"],["2024-07-25T18:03:12.010000"],["2024-07-25T18:03:13.010000"],["2024-07-25T18:03:14.010000"],["2024-07-25T18:03:15.010000"],["2024-07-25T18:03:16.010000"],["2024-07-25T18:03:17.010000"],["2024-07-25T18:03:18.010000"],["2024-07-25T18:03:19.010000"],["2024-07-25T18:03:20.010000"],["2024-07-25T18:03:21.010000"],["2024-07-25T18:03:22.010000"],["2024-07-25T18:03:23.010000"],["2024-07-25T18:03:24.010000"],["2024-07-25T18:03:25.010000"],["2024-07-25T18:03:26.010000"],["2024-07-25T18:03:27.010000"],["2024-07-25T18:03:28.010000"],["2024-07-25T18:03:29.010000"],["2024-07-25T18:03:30.010000"],["2024-07-25T18:03:31.010000"],["2024-07-25T18:03:32.010000"],["2024-07-25T18:03:33.010000"],["2024-07-25T18:03:34.010000"],["2024-07-25T18:03:35.010000"],["2024-07-25T18:03:36.010000"],["2024-07-25T18:03:37.010000"],["2024-07-25T18:03:38.010000"],["2024-07-25T18:03:39.010000"],["2024-07-25T18:03:40.010000"],["2024-07-25T18:03:41.010000"],["2024-07-25T18:03:42.010000"],["2024-07-25T18:03:43.010000"],["2024-07-25T18:03:44.010000"],["2024-07-25T18:03:45.010000"],["2024-07-25T18:03:46.010000"],["2024-07-25T18:03:47.010000"],["2024-07-25T18:03:48.010000"],["2024-07-25T18:03:49.010000"],["2024-07-25T18:03:50.010000"],["2024-07-25T18:03:51.010000"],["2024-07-25T18:03:52.010000"],["2024-07-25T18:03:53.010000"],["2024-07-25T18:03:54.010000"],["2024-07-25T18:03:55.010000"],["2024-07-25T18:03:56.010000"],["2024-07-25T18:03:57.010000"],["2024-07-25T18:03:58.010000"],["2024-07-25T18:03:59.010000"],["2024-07-25T18:04:00.010000"],["2024-07-25T18:04:01.010000"],["2024-07-25T18:04:02.010000"],["2024-07-25T18:04:03.010000"],["2024-07-25T18:04:04.010000"],["2024-07-25T18:04:05.010000"],["2024-07-25T18:04:06.010000"],["2024-07-25T18:04:07.010000"],["2024-07-25T18:04:08.010000"],["2024-07-25T18:04:09.010000"],["2024-07-25T18:04:10.010000"],["2024-07-25T18:04:11.010000"],["2024-07-25T18:04:12.010000"],["2024-07-25T18:04:13.010000"],["2024-07-25T18:04:14.010000"],["2024-07-25T18:04:15.010000"],["2024-07-25T18:04:16.010000"],["2024-07-25T18:04:17.010000"],["2024-07-25T18:04:18.010000"],["2024-07-25T18:04:19.010000"],["2024-07-25T18:04:20.010000"],["2024-07-25T18:04:21.010000"],["2024-07-25T18:04:22.010000"],["2024-07-25T18:04:23.010000"],["2024-07-25T18:04:24.010000"],["2024-07-25T18:04:25.010000"],["2024-07-25T18:04:26.010000"],["2024-07-25T18:04:27.010000"],["2024-07-25T18:04:28.010000"],["2024-07-25T18:04:29.010000"],["2024-07-25T18:04:30.010000"],["2024-07-25T18:04:31.010000"],["2024-07-25T18:04:32.010000"],["2024-07-25T18:04:33.010000"],["2024-07-25T18:04:34.010000"],["2024-07-25T18:04:35.010000"],["2024-07-25T18:04:36.010000"],["2024-07-25T18:04:37.010000"],["2024-07-25T18:04:38.010000"],["2024-07-25T18:04:39.010000"],["2024-07-25T18:04:40.010000"],["2024-07-25T18:04:41.010000"],["2024-07-25T18:04:42.010000"],["2024-07-25T18:04:43.010000"],["2024-07-25T18:04:44.010000"],["2024-07-25T18:04:45.010000"],["2024-07-25T18:04:46.010000"],["2024-07-25T18:04:47.010000"],["2024-07-25T18:04:48.010000"],["2024-07-25T18:04:49.010000"],["2024-07-25T18:04:50.010000"],["2024-07-25T18:04:51.010000"],["2024-07-25T18:04:52.010000"],["2024-07-25T18:04:53.010000"],["2024-07-25T18:04:54.010000"],["2024-07-25T18:04:55.010000"],["2024-07-25T18:04:56.010000"],["2024-07-25T18:04:57.010000"],["2024-07-25T18:04:58.010000"],["2024-07-25T18:04:59.010000"],["2024-07-25T18:05:00.010000"],["2024-07-25T18:05:01.010000"],["2024-07-25T18:05:02.010000"],["2024-07-25T18:05:03.010000"],["2024-07-25T18:05:04.010000"],["2024-07-25T18:05:05.010000"],["2024-07-25T18:05:06.010000"],["2024-07-25T18:05:07.010000"],["2024-07-25T18:05:08.010000"],["2024-07-25T18:05:09.010000"],["2024-07-25T18:05:10.010000"],["2024-07-25T18:05:11.010000"],["2024-07-25T18:05:12.010000"],["2024-07-25T18:05:13.010000"],["2024-07-25T18:05:14.010000"],["2024-07-25T18:05:15.010000"],["2024-07-25T18:05:16.010000"],["2024-07-25T18:05:17.010000"],["2024-07-25T18:05:18.010000"],["2024-07-25T18:05:19.010000"],["2024-07-25T18:05:20.010000"],["2024-07-25T18:05:21.010000"],["2024-07-25T18:05:22.010000"],["2024-07-25T18:05:23.010000"],["2024-07-25T18:05:24.010000"],["2024-07-25T18:05:25.010000"],["2024-07-25T18:05:26.010000"],["2024-07-25T18:05:27.010000"],["2024-07-25T18:05:28.010000"],["2024-07-25T18:05:29.010000"],["2024-07-25T18:05:30.010000"],["2024-07-25T18:05:31.010000"],["2024-07-25T18:05:32.010000"],["2024-07-25T18:05:33.010000"],["2024-07-25T18:05:34.010000"],["2024-07-25T18:05:35.010000"],["2024-07-25T18:05:36.010000"],["2024-07-25T18:05:37.010000"],["2024-07-25T18:05:38.010000"],["2024-07-25T18:05:39.010000"],["2024-07-25T18:05:40.010000"],["2024-07-25T18:05:41.010000"],["2024-07-25T18:05:42.010000"],["2024-07-25T18:05:43.010000"],["2024-07-25T18:05:44.010000"],["2024-07-25T18:05:45.010000"],["2024-07-25T18:05:46.010000"],["2024-07-25T18:05:47.010000"],["2024-07-25T18:05:48.010000"],["2024-07-25T18:05:49.010000"],["2024-07-25T18:05:50.010000"],["2024-07-25T18:05:51.010000"],["2024-07-25T18:05:52.010000"],["2024-07-25T18:05:53.010000"],["2024-07-25T18:05:54.010000"],["2024-07-25T18:05:55.010000"],["2024-07-25T18:05:56.010000"],["2024-07-25T18:05:57.010000"],["2024-07-25T18:05:58.010000"],["2024-07-25T18:05:59.010000"],["2024-07-25T18:06:00.010000"],["2024-07-25T18:06:01.010000"],["2024-07-25T18:06:02.010000"],["2024-07-25T18:06:03.010000"],["2024-07-25T18:06:04.010000"],["2024-07-25T18:06:05.010000"],["2024-07-25T18:06:06.010000"],["2024-07-25T18:06:07.010000"],["2024-07-25T18:06:08.010000"],["2024-07-25T18:06:09.010000"],["2024-07-25T18:06:10.010000"],["2024-07-25T18:06:11.010000"],["2024-07-25T18:06:12.010000"],["2024-07-25T18:06:13.010000"],["2024-07-25T18:06:14.010000"],["2024-07-25T18:06:15.010000"],["2024-07-25T18:06:16.010000"],["2024-07-25T18:06:17.010000"],["2024-07-25T18:06:18.010000"],["2024-07-25T18:06:19.010000"],["2024-07-25T18:06:20.010000"],["2024-07-25T18:06:21.010000"],["2024-07-25T18:06:22.010000"],["2024-07-25T18:06:23.010000"],["2024-07-25T18:06:24.010000"],["2024-07-25T18:06:25.010000"],["2024-07-25T18:06:26.010000"],["2024-07-25T18:06:27.010000"],["2024-07-25T18:06:28.010000"],["2024-07-25T18:06:29.010000"],["2024-07-25T18:06:30.010000"],["2024-07-25T18:06:31.010000"],["2024-07-25T18:06:32.010000"],["2024-07-25T18:06:33.010000"],["2024-07-25T18:06:34.010000"],["2024-07-25T18:06:35.010000"],["2024-07-25T18:06:36.010000"],["2024-07-25T18:06:37.010000"],["2024-07-25T18:06:38.010000"],["2024-07-25T18:06:39.010000"],["2024-07-25T18:06:40.010000"],["2024-07-25T18:06:41.010000"],["2024-07-25T18:06:42.010000"],["2024-07-25T18:06:43.010000"],["2024-07-25T18:06:44.010000"],["2024-07-25T18:06:45.010000"],["2024-07-25T18:06:46.010000"],["2024-07-25T18:06:47.010000"],["2024-07-25T18:06:48.010000"],["2024-07-25T18:06:49.010000"],["2024-07-25T18:06:50.010000"],["2024-07-25T18:06:51.010000"],["2024-07-25T18:06:52.010000"],["2024-07-25T18:06:53.010000"],["2024-07-25T18:06:54.010000"],["2024-07-25T18:06:55.010000"],["2024-07-25T18:06:56.010000"],["2024-07-25T18:06:57.010000"],["2024-07-25T18:06:58.010000"],["2024-07-25T18:06:59.010000"],["2024-07-25T18:07:00.010000"],["2024-07-25T18:07:01.010000"],["2024-07-25T18:07:02.010000"],["2024-07-25T18:07:03.010000"],["2024-07-25T18:07:04.010000"],["2024-07-25T18:07:05.010000"],["2024-07-25T18:07:06.010000"],["2024-07-25T18:07:07.010000"],["2024-07-25T18:07:08.010000"],["2024-07-25T18:07:09.010000"],["2024-07-25T18:07:10.010000"],["2024-07-25T18:07:11.010000"],["2024-07-25T18:07:12.010000"],["2024-07-25T18:07:13.010000"],["2024-07-25T18:07:14.010000"],["2024-07-25T18:07:15.010000"],["2024-07-25T18:07:16.010000"],["2024-07-25T18:07:17.010000"],["2024-07-25T18:07:18.010000"],["2024-07-25T18:07:19.010000"],["2024-07-25T18:07:20.010000"],["2024-07-25T18:07:21.010000"],["2024-07-25T18:07:22.010000"],["2024-07-25T18:07:23.010000"],["2024-07-25T18:07:24.010000"],["2024-07-25T18:07:25.010000"],["2024-07-25T18:07:26.010000"],["2024-07-25T18:07:27.010000"],["2024-07-25T18:07:28.010000"],["2024-07-25T18:07:29.010000"],["2024-07-25T18:07:30.010000"],["2024-07-25T18:07:31.010000"],["2024-07-25T18:07:32.010000"],["2024-07-25T18:07:33.010000"],["2024-07-25T18:07:34.010000"],["2024-07-25T18:07:35.010000"],["2024-07-25T18:07:36.010000"],["2024-07-25T18:07:37.010000"],["2024-07-25T18:07:38.010000"],["2024-07-25T18:07:39.010000"],["2024-07-25T18:07:40.010000"],["2024-07-25T18:07:41.010000"],["2024-07-25T18:07:42.010000"],["2024-07-25T18:07:43.010000"],["2024-07-25T18:07:44.010000"],["2024-07-25T18:07:45.010000"],["2024-07-25T18:07:46.010000"],["2024-07-25T18:07:47.010000"],["2024-07-25T18:07:48.010000"],["2024-07-25T18:07:49.010000"],["2024-07-25T18:07:50.010000"],["2024-07-25T18:07:51.010000"],["2024-07-25T18:07:52.010000"],["2024-07-25T18:07:53.010000"],["2024-07-25T18:07:54.010000"],["2024-07-25T18:07:55.010000"],["2024-07-25T18:07:56.010000"],["2024-07-25T18:07:57.010000"],["2024-07-25T18:07:58.010000"],["2024-07-25T18:07:59.010000"],["2024-07-25T18:08:00.010000"],["2024-07-25T18:08:01.010000"],["2024-07-25T18:08:02.010000"],["2024-07-25T18:08:03.010000"],["2024-07-25T18:08:04.010000"],["2024-07-25T18:08:05.010000"],["2024-07-25T18:08:06.010000"],["2024-07-25T18:08:07.010000"],["2024-07-25T18:08:08.010000"],["2024-07-25T18:08:09.010000"],["2024-07-25T18:08:10.010000"],["2024-07-25T18:08:11.010000"],["2024-07-25T18:08:12.010000"],["2024-07-25T18:08:13.010000"],["2024-07-25T18:08:14.010000"],["2024-07-25T18:08:15.010000"],["2024-07-25T18:08:16.010000"],["2024-07-25T18:08:17.010000"],["2024-07-25T18:08:18.010000"],["2024-07-25T18:08:19.010000"],["2024-07-25T18:08:20.010000"],["2024-07-25T18:08:21.010000"],["2024-07-25T18:08:22.010000"],["2024-07-25T18:08:23.010000"],["2024-07-25T18:08:24.010000"],["2024-07-25T18:08:25.010000"],["2024-07-25T18:08:26.010000"],["2024-07-25T18:08:27.010000"],["2024-07-25T18:08:28.010000"],["2024-07-25T18:08:29.010000"],["2024-07-25T18:08:30.010000"],["2024-07-25T18:08:31.010000"],["2024-07-25T18:08:32.010000"],["2024-07-25T18:08:33.010000"],["2024-07-25T18:08:34.010000"],["2024-07-25T18:08:35.010000"],["2024-07-25T18:08:36.010000"],["2024-07-25T18:08:37.010000"],["2024-07-25T18:08:38.010000"],["2024-07-25T18:08:39.010000"],["2024-07-25T18:08:40.010000"],["2024-07-25T18:08:41.010000"],["2024-07-25T18:08:42.010000"],["2024-07-25T18:08:43.010000"],["2024-07-25T18:08:44.010000"],["2024-07-25T18:08:45.010000"],["2024-07-25T18:08:46.010000"],["2024-07-25T18:08:47.010000"],["2024-07-25T18:08:48.010000"],["2024-07-25T18:08:49.010000"],["2024-07-25T18:08:50.010000"],["2024-07-25T18:08:51.010000"],["2024-07-25T18:08:52.010000"],["2024-07-25T18:08:53.010000"],["2024-07-25T18:08:54.010000"],["2024-07-25T18:08:55.010000"],["2024-07-25T18:08:56.010000"],["2024-07-25T18:08:57.010000"],["2024-07-25T18:08:58.010000"],["2024-07-25T18:08:59.010000"],["2024-07-25T18:09:00.010000"],["2024-07-25T18:09:01.010000"],["2024-07-25T18:09:02.010000"],["2024-07-25T18:09:03.010000"],["2024-07-25T18:09:04.010000"],["2024-07-25T18:09:05.010000"],["2024-07-25T18:09:06.010000"],["2024-07-25T18:09:07.010000"],["2024-07-25T18:09:08.010000"],["2024-07-25T18:09:09.010000"],["2024-07-25T18:09:10.010000"],["2024-07-25T18:09:11.010000"],["2024-07-25T18:09:12.010000"],["2024-07-25T18:09:13.010000"],["2024-07-25T18:09:14.010000"],["2024-07-25T18:09:15.010000"],["2024-07-25T18:09:16.010000"],["2024-07-25T18:09:17.010000"],["2024-07-25T18:09:18.010000"],["2024-07-25T18:09:19.010000"],["2024-07-25T18:09:20.010000"],["2024-07-25T18:09:21.010000"],["2024-07-25T18:09:22.010000"],["2024-07-25T18:09:23.010000"],["2024-07-25T18:09:24.010000"],["2024-07-25T18:09:25.010000"],["2024-07-25T18:09:26.010000"],["2024-07-25T18:09:27.010000"],["2024-07-25T18:09:28.010000"],["2024-07-25T18:09:29.010000"],["2024-07-25T18:09:30.010000"],["2024-07-25T18:09:31.010000"],["2024-07-25T18:09:32.010000"],["2024-07-25T18:09:33.010000"],["2024-07-25T18:09:34.010000"],["2024-07-25T18:09:35.010000"],["2024-07-25T18:09:36.010000"],["2024-07-25T18:09:37.010000"],["2024-07-25T18:09:38.010000"],["2024-07-25T18:09:39.010000"],["2024-07-25T18:09:40.010000"],["2024-07-25T18:09:41.010000"],["2024-07-25T18:09:42.010000"],["2024-07-25T18:09:43.010000"],["2024-07-25T18:09:44.010000"],["2024-07-25T18:09:45.010000"],["2024-07-25T18:09:46.010000"],["2024-07-25T18:09:47.010000"],["2024-07-25T18:09:48.010000"],["2024-07-25T18:09:49.010000"],["2024-07-25T18:09:50.010000"],["2024-07-25T18:09:51.010000"],["2024-07-25T18:09:52.010000"],["2024-07-25T18:09:53.010000"],["2024-07-25T18:09:54.010000"],["2024-07-25T18:09:55.010000"],["2024-07-25T18:09:56.010000"],["2024-07-25T18:09:57.010000"],["2024-07-25T18:09:58.010000"],["2024-07-25T18:09:59.010000"],["2024-07-25T18:10:00.010000"],["2024-07-25T18:10:01.010000"],["2024-07-25T18:10:02.010000"],["2024-07-25T18:10:03.010000"],["2024-07-25T18:10:04.010000"],["2024-07-25T18:10:05.010000"],["2024-07-25T18:10:06.010000"],["2024-07-25T18:10:07.010000"],["2024-07-25T18:10:08.010000"],["2024-07-25T18:10:09.010000"],["2024-07-25T18:10:10.010000"],["2024-07-25T18:10:11.010000"],["2024-07-25T18:10:12.010000"],["2024-07-25T18:10:13.010000"],["2024-07-25T18:10:14.010000"],["2024-07-25T18:10:15.010000"],["2024-07-25T18:10:16.010000"],["2024-07-25T18:10:17.010000"],["2024-07-25T18:10:18.010000"],["2024-07-25T18:10:19.010000"],["2024-07-25T18:10:20.010000"],["2024-07-25T18:10:21.010000"],["2024-07-25T18:10:22.010000"],["2024-07-25T18:10:23.010000"],["2024-07-25T18:10:24.010000"],["2024-07-25T18:10:25.010000"],["2024-07-25T18:10:26.010000"],["2024-07-25T18:10:27.010000"],["2024-07-25T18:10:28.010000"],["2024-07-25T18:10:29.010000"],["2024-07-25T18:10:30.010000"],["2024-07-25T18:10:31.010000"],["2024-07-25T18:10:32.010000"],["2024-07-25T18:10:33.010000"],["2024-07-25T18:10:34.010000"],["2024-07-25T18:10:35.010000"],["2024-07-25T18:10:36.010000"],["2024-07-25T18:10:37.010000"],["2024-07-25T18:10:38.010000"],["2024-07-25T18:10:39.010000"],["2024-07-25T18:10:40.010000"],["2024-07-25T18:10:41.010000"],["2024-07-25T18:10:42.010000"],["2024-07-25T18:10:43.010000"],["2024-07-25T18:10:44.010000"],["2024-07-25T18:10:45.010000"],["2024-07-25T18:10:46.010000"],["2024-07-25T18:10:47.010000"],["2024-07-25T18:10:48.010000"],["2024-07-25T18:10:49.010000"],["2024-07-25T18:10:50.010000"],["2024-07-25T18:10:51.010000"],["2024-07-25T18:10:52.010000"],["2024-07-25T18:10:53.010000"],["2024-07-25T18:10:54.010000"],["2024-07-25T18:10:55.010000"],["2024-07-25T18:10:56.010000"],["2024-07-25T18:10:57.010000"],["2024-07-25T18:10:58.010000"],["2024-07-25T18:10:59.010000"],["2024-07-25T18:11:00.010000"],["2024-07-25T18:11:01.010000"],["2024-07-25T18:11:02.010000"],["2024-07-25T18:11:03.010000"],["2024-07-25T18:11:04.010000"],["2024-07-25T18:11:05.010000"],["2024-07-25T18:11:06.010000"],["2024-07-25T18:11:07.010000"],["2024-07-25T18:11:08.010000"],["2024-07-25T18:11:09.010000"],["2024-07-25T18:11:10.010000"],["2024-07-25T18:11:11.010000"],["2024-07-25T18:11:12.010000"],["2024-07-25T18:11:13.010000"],["2024-07-25T18:11:14.010000"],["2024-07-25T18:11:15.010000"],["2024-07-25T18:11:16.010000"],["2024-07-25T18:11:17.010000"],["2024-07-25T18:11:18.010000"],["2024-07-25T18:11:19.010000"],["2024-07-25T18:11:20.010000"],["2024-07-25T18:11:21.010000"],["2024-07-25T18:11:22.010000"],["2024-07-25T18:11:23.010000"],["2024-07-25T18:11:24.010000"],["2024-07-25T18:11:25.010000"],["2024-07-25T18:11:26.010000"],["2024-07-25T18:11:27.010000"],["2024-07-25T18:11:28.010000"],["2024-07-25T18:11:29.010000"],["2024-07-25T18:11:30.010000"],["2024-07-25T18:11:31.010000"],["2024-07-25T18:11:32.010000"],["2024-07-25T18:11:33.010000"],["2024-07-25T18:11:34.010000"],["2024-07-25T18:11:35.010000"],["2024-07-25T18:11:36.010000"],["2024-07-25T18:11:37.010000"],["2024-07-25T18:11:38.010000"],["2024-07-25T18:11:39.010000"],["2024-07-25T18:11:40.010000"],["2024-07-25T18:11:41.010000"],["2024-07-25T18:11:42.010000"],["2024-07-25T18:11:43.010000"],["2024-07-25T18:11:44.010000"],["2024-07-25T18:11:45.010000"],["2024-07-25T18:11:46.010000"],["2024-07-25T18:11:47.010000"],["2024-07-25T18:11:48.010000"],["2024-07-25T18:11:49.010000"],["2024-07-25T18:11:50.010000"],["2024-07-25T18:11:51.010000"],["2024-07-25T18:11:52.010000"],["2024-07-25T18:11:53.010000"],["2024-07-25T18:11:54.010000"],["2024-07-25T18:11:55.010000"],["2024-07-25T18:11:56.010000"],["2024-07-25T18:11:57.010000"],["2024-07-25T18:11:58.010000"],["2024-07-25T18:11:59.010000"],["2024-07-25T18:12:00.010000"],["2024-07-25T18:12:01.010000"],["2024-07-25T18:12:02.010000"],["2024-07-25T18:12:03.010000"],["2024-07-25T18:12:04.010000"],["2024-07-25T18:12:05.010000"],["2024-07-25T18:12:06.010000"],["2024-07-25T18:12:07.010000"],["2024-07-25T18:12:08.010000"],["2024-07-25T18:12:09.010000"],["2024-07-25T18:12:10.010000"],["2024-07-25T18:12:11.010000"],["2024-07-25T18:12:12.010000"],["2024-07-25T18:12:13.010000"],["2024-07-25T18:12:14.010000"],["2024-07-25T18:12:15.010000"],["2024-07-25T18:12:16.010000"],["2024-07-25T18:12:17.010000"],["2024-07-25T18:12:18.010000"],["2024-07-25T18:12:19.010000"],["2024-07-25T18:12:20.010000"],["2024-07-25T18:12:21.010000"],["2024-07-25T18:12:22.010000"],["2024-07-25T18:12:23.010000"],["2024-07-25T18:12:24.010000"],["2024-07-25T18:12:25.010000"],["2024-07-25T18:12:26.010000"],["2024-07-25T18:12:27.010000"],["2024-07-25T18:12:28.010000"],["2024-07-25T18:12:29.010000"],["2024-07-25T18:12:30.010000"],["2024-07-25T18:12:31.010000"],["2024-07-25T18:12:32.010000"],["2024-07-25T18:12:33.010000"],["2024-07-25T18:12:34.010000"],["2024-07-25T18:12:35.010000"],["2024-07-25T18:12:36.010000"],["2024-07-25T18:12:37.010000"],["2024-07-25T18:12:38.010000"],["2024-07-25T18:12:39.010000"],["2024-07-25T18:12:40.010000"],["2024-07-25T18:12:41.010000"],["2024-07-25T18:12:42.010000"],["2024-07-25T18:12:43.010000"],["2024-07-25T18:12:44.010000"],["2024-07-25T18:12:45.010000"],["2024-07-25T18:12:46.010000"],["2024-07-25T18:12:47.010000"],["2024-07-25T18:12:48.010000"],["2024-07-25T18:12:49.010000"],["2024-07-25T18:12:50.010000"],["2024-07-25T18:12:51.010000"],["2024-07-25T18:12:52.010000"],["2024-07-25T18:12:53.010000"],["2024-07-25T18:12:54.010000"],["2024-07-25T18:12:55.010000"],["2024-07-25T18:12:56.010000"],["2024-07-25T18:12:57.010000"],["2024-07-25T18:12:58.010000"],["2024-07-25T18:12:59.010000"],["2024-07-25T18:13:00.010000"],["2024-07-25T18:13:01.010000"],["2024-07-25T18:13:02.010000"],["2024-07-25T18:13:03.010000"],["2024-07-25T18:13:04.010000"],["2024-07-25T18:13:05.010000"],["2024-07-25T18:13:06.010000"],["2024-07-25T18:13:07.010000"],["2024-07-25T18:13:08.010000"],["2024-07-25T18:13:09.010000"],["2024-07-25T18:13:10.010000"],["2024-07-25T18:13:11.010000"],["2024-07-25T18:13:12.010000"],["2024-07-25T18:13:13.010000"],["2024-07-25T18:13:14.010000"],["2024-07-25T18:13:15.010000"],["2024-07-25T18:13:16.010000"],["2024-07-25T18:13:17.010000"],["2024-07-25T18:13:18.010000"],["2024-07-25T18:13:19.010000"],["2024-07-25T18:13:20.010000"],["2024-07-25T18:13:21.010000"],["2024-07-25T18:13:22.010000"],["2024-07-25T18:13:23.010000"],["2024-07-25T18:13:24.010000"],["2024-07-25T18:13:25.010000"],["2024-07-25T18:13:26.010000"],["2024-07-25T18:13:27.010000"],["2024-07-25T18:13:28.010000"],["2024-07-25T18:13:29.010000"],["2024-07-25T18:13:30.010000"],["2024-07-25T18:13:31.010000"],["2024-07-25T18:13:32.010000"],["2024-07-25T18:13:33.010000"],["2024-07-25T18:13:34.010000"],["2024-07-25T18:13:35.010000"],["2024-07-25T18:13:36.010000"],["2024-07-25T18:13:37.010000"],["2024-07-25T18:13:38.010000"],["2024-07-25T18:13:39.010000"],["2024-07-25T18:13:40.010000"],["2024-07-25T18:13:41.010000"],["2024-07-25T18:13:42.010000"],["2024-07-25T18:13:43.010000"],["2024-07-25T18:13:44.010000"],["2024-07-25T18:13:45.010000"],["2024-07-25T18:13:46.010000"],["2024-07-25T18:13:47.010000"],["2024-07-25T18:13:48.010000"],["2024-07-25T18:13:49.010000"],["2024-07-25T18:13:50.010000"],["2024-07-25T18:13:51.010000"],["2024-07-25T18:13:52.010000"],["2024-07-25T18:13:53.010000"],["2024-07-25T18:13:54.010000"],["2024-07-25T18:13:55.010000"],["2024-07-25T18:13:56.010000"],["2024-07-25T18:13:57.010000"],["2024-07-25T18:13:58.010000"],["2024-07-25T18:13:59.010000"],["2024-07-25T18:14:00.010000"],["2024-07-25T18:14:01.010000"],["2024-07-25T18:14:02.010000"],["2024-07-25T18:14:03.010000"],["2024-07-25T18:14:04.010000"],["2024-07-25T18:14:05.010000"],["2024-07-25T18:14:06.010000"],["2024-07-25T18:14:07.010000"],["2024-07-25T18:14:08.010000"],["2024-07-25T18:14:09.010000"],["2024-07-25T18:14:10.010000"],["2024-07-25T18:14:11.010000"],["2024-07-25T18:14:12.010000"],["2024-07-25T18:14:13.010000"],["2024-07-25T18:14:14.010000"],["2024-07-25T18:14:15.010000"],["2024-07-25T18:14:16.010000"],["2024-07-25T18:14:17.010000"],["2024-07-25T18:14:18.010000"],["2024-07-25T18:14:19.010000"],["2024-07-25T18:14:20.010000"],["2024-07-25T18:14:21.010000"],["2024-07-25T18:14:22.010000"],["2024-07-25T18:14:23.010000"],["2024-07-25T18:14:24.010000"],["2024-07-25T18:14:25.010000"],["2024-07-25T18:14:26.010000"],["2024-07-25T18:14:27.010000"],["2024-07-25T18:14:28.010000"],["2024-07-25T18:14:29.010000"],["2024-07-25T18:14:30.010000"],["2024-07-25T18:14:31.010000"],["2024-07-25T18:14:32.010000"],["2024-07-25T18:14:33.010000"],["2024-07-25T18:14:34.010000"],["2024-07-25T18:14:35.010000"],["2024-07-25T18:14:36.010000"],["2024-07-25T18:14:37.010000"],["2024-07-25T18:14:38.010000"],["2024-07-25T18:14:39.010000"],["2024-07-25T18:14:40.010000"],["2024-07-25T18:14:41.010000"],["2024-07-25T18:14:42.010000"],["2024-07-25T18:14:43.010000"],["2024-07-25T18:14:44.010000"],["2024-07-25T18:14:45.010000"],["2024-07-25T18:14:46.010000"],["2024-07-25T18:14:47.010000"],["2024-07-25T18:14:48.010000"],["2024-07-25T18:14:49.010000"],["2024-07-25T18:14:50.010000"],["2024-07-25T18:14:51.010000"],["2024-07-25T18:14:52.010000"],["2024-07-25T18:14:53.010000"],["2024-07-25T18:14:54.010000"],["2024-07-25T18:14:55.010000"],["2024-07-25T18:14:56.010000"],["2024-07-25T18:14:57.010000"],["2024-07-25T18:14:58.010000"],["2024-07-25T18:14:59.010000"],["2024-07-25T18:15:00.010000"],["2024-07-25T18:15:01.010000"],["2024-07-25T18:15:02.010000"],["2024-07-25T18:15:03.010000"],["2024-07-25T18:15:04.010000"],["2024-07-25T18:15:05.010000"],["2024-07-25T18:15:06.010000"],["2024-07-25T18:15:07.010000"],["2024-07-25T18:15:08.010000"],["2024-07-25T18:15:09.010000"],["2024-07-25T18:15:10.010000"],["2024-07-25T18:15:11.010000"],["2024-07-25T18:15:12.010000"],["2024-07-25T18:15:13.010000"],["2024-07-25T18:15:14.010000"],["2024-07-25T18:15:15.010000"],["2024-07-25T18:15:16.010000"],["2024-07-25T18:15:17.010000"],["2024-07-25T18:15:18.010000"],["2024-07-25T18:15:19.010000"],["2024-07-25T18:15:20.010000"],["2024-07-25T18:15:21.010000"],["2024-07-25T18:15:22.010000"],["2024-07-25T18:15:23.010000"],["2024-07-25T18:15:24.010000"],["2024-07-25T18:15:25.010000"],["2024-07-25T18:15:26.010000"],["2024-07-25T18:15:27.010000"],["2024-07-25T18:15:28.010000"],["2024-07-25T18:15:29.010000"],["2024-07-25T18:15:30.010000"],["2024-07-25T18:15:31.010000"],["2024-07-25T18:15:32.010000"],["2024-07-25T18:15:33.010000"],["2024-07-25T18:15:34.010000"],["2024-07-25T18:15:35.010000"],["2024-07-25T18:15:36.010000"],["2024-07-25T18:15:37.010000"],["2024-07-25T18:15:38.010000"],["2024-07-25T18:15:39.010000"],["2024-07-25T18:15:40.010000"],["2024-07-25T18:15:41.010000"],["2024-07-25T18:15:42.010000"],["2024-07-25T18:15:43.010000"],["2024-07-25T18:15:44.010000"],["2024-07-25T18:15:45.010000"],["2024-07-25T18:15:46.010000"],["2024-07-25T18:15:47.010000"],["2024-07-25T18:15:48.010000"],["2024-07-25T18:15:49.010000"],["2024-07-25T18:15:50.010000"],["2024-07-25T18:15:51.010000"],["2024-07-25T18:15:52.010000"],["2024-07-25T18:15:53.010000"],["2024-07-25T18:15:54.010000"],["2024-07-25T18:15:55.010000"],["2024-07-25T18:15:56.010000"],["2024-07-25T18:15:57.010000"],["2024-07-25T18:15:58.010000"],["2024-07-25T18:15:59.010000"],["2024-07-25T18:16:00.010000"],["2024-07-25T18:16:01.010000"],["2024-07-25T18:16:02.010000"],["2024-07-25T18:16:03.010000"],["2024-07-25T18:16:04.010000"],["2024-07-25T18:16:05.010000"],["2024-07-25T18:16:06.010000"],["2024-07-25T18:16:07.010000"],["2024-07-25T18:16:08.010000"],["2024-07-25T18:16:09.010000"],["2024-07-25T18:16:10.010000"],["2024-07-25T18:16:11.010000"],["2024-07-25T18:16:12.010000"],["2024-07-25T18:16:13.010000"],["2024-07-25T18:16:14.010000"],["2024-07-25T18:16:15.010000"],["2024-07-25T18:16:16.010000"],["2024-07-25T18:16:17.010000"],["2024-07-25T18:16:18.010000"],["2024-07-25T18:16:19.010000"],["2024-07-25T18:16:20.010000"],["2024-07-25T18:16:21.010000"],["2024-07-25T18:16:22.010000"],["2024-07-25T18:16:23.010000"],["2024-07-25T18:16:24.010000"],["2024-07-25T18:16:25.010000"],["2024-07-25T18:16:26.010000"],["2024-07-25T18:16:27.010000"],["2024-07-25T18:16:28.010000"],["2024-07-25T18:16:29.010000"],["2024-07-25T18:16:30.010000"],["2024-07-25T18:16:31.010000"],["2024-07-25T18:16:32.010000"],["2024-07-25T18:16:33.010000"],["2024-07-25T18:16:34.010000"],["2024-07-25T18:16:35.010000"],["2024-07-25T18:16:36.010000"],["2024-07-25T18:16:37.010000"],["2024-07-25T18:16:38.010000"],["2024-07-25T18:16:39.010000"],["2024-07-25T18:16:40.010000"],["2024-07-25T18:16:41.010000"],["2024-07-25T18:16:42.010000"],["2024-07-25T18:16:43.010000"],["2024-07-25T18:16:44.010000"],["2024-07-25T18:16:45.010000"],["2024-07-25T18:16:46.010000"],["2024-07-25T18:16:47.010000"],["2024-07-25T18:16:48.010000"],["2024-07-25T18:16:49.010000"],["2024-07-25T18:16:50.010000"],["2024-07-25T18:16:51.010000"],["2024-07-25T18:16:52.010000"],["2024-07-25T18:16:53.010000"],["2024-07-25T18:16:54.010000"],["2024-07-25T18:16:55.010000"],["2024-07-25T18:16:56.010000"],["2024-07-25T18:16:57.010000"],["2024-07-25T18:16:58.010000"],["2024-07-25T18:16:59.010000"],["2024-07-25T18:17:00.010000"],["2024-07-25T18:17:01.010000"],["2024-07-25T18:17:02.010000"],["2024-07-25T18:17:03.010000"],["2024-07-25T18:17:04.010000"],["2024-07-25T18:17:05.010000"],["2024-07-25T18:17:06.010000"],["2024-07-25T18:17:07.010000"],["2024-07-25T18:17:08.010000"],["2024-07-25T18:17:09.010000"],["2024-07-25T18:17:10.010000"],["2024-07-25T18:17:11.010000"],["2024-07-25T18:17:12.010000"],["2024-07-25T18:17:13.010000"],["2024-07-25T18:17:14.010000"],["2024-07-25T18:17:15.010000"],["2024-07-25T18:17:16.010000"],["2024-07-25T18:17:17.010000"],["2024-07-25T18:17:18.010000"],["2024-07-25T18:17:19.010000"],["2024-07-25T18:17:20.010000"],["2024-07-25T18:17:21.010000"],["2024-07-25T18:17:22.010000"],["2024-07-25T18:17:23.010000"],["2024-07-25T18:17:24.010000"],["2024-07-25T18:17:25.010000"],["2024-07-25T18:17:26.010000"],["2024-07-25T18:17:27.010000"],["2024-07-25T18:17:28.010000"],["2024-07-25T18:17:29.010000"],["2024-07-25T18:17:30.010000"],["2024-07-25T18:17:31.010000"],["2024-07-25T18:17:32.010000"],["2024-07-25T18:17:33.010000"],["2024-07-25T18:17:34.010000"],["2024-07-25T18:17:35.010000"],["2024-07-25T18:17:36.010000"],["2024-07-25T18:17:37.010000"],["2024-07-25T18:17:38.010000"],["2024-07-25T18:17:39.010000"],["2024-07-25T18:17:40.010000"],["2024-07-25T18:17:41.010000"],["2024-07-25T18:17:42.010000"],["2024-07-25T18:17:43.010000"],["2024-07-25T18:17:44.010000"],["2024-07-25T18:17:45.010000"],["2024-07-25T18:17:46.010000"],["2024-07-25T18:17:47.010000"],["2024-07-25T18:17:48.010000"],["2024-07-25T18:17:49.010000"],["2024-07-25T18:17:50.010000"],["2024-07-25T18:17:51.010000"],["2024-07-25T18:17:52.010000"],["2024-07-25T18:17:53.010000"],["2024-07-25T18:17:54.010000"],["2024-07-25T18:17:55.010000"],["2024-07-25T18:17:56.010000"],["2024-07-25T18:17:57.010000"],["2024-07-25T18:17:58.010000"],["2024-07-25T18:17:59.010000"],["2024-07-25T18:18:00.010000"],["2024-07-25T18:18:01.010000"],["2024-07-25T18:18:02.010000"],["2024-07-25T18:18:03.010000"],["2024-07-25T18:18:04.010000"],["2024-07-25T18:18:05.010000"],["2024-07-25T18:18:06.010000"],["2024-07-25T18:18:07.010000"],["2024-07-25T18:18:08.010000"],["2024-07-25T18:18:09.010000"],["2024-07-25T18:18:10.010000"],["2024-07-25T18:18:11.010000"],["2024-07-25T18:18:12.010000"],["2024-07-25T18:18:13.010000"],["2024-07-25T18:18:14.010000"],["2024-07-25T18:18:15.010000"],["2024-07-25T18:18:16.010000"],["2024-07-25T18:18:17.010000"],["2024-07-25T18:18:18.010000"],["2024-07-25T18:18:19.010000"],["2024-07-25T18:18:20.010000"],["2024-07-25T18:18:21.010000"],["2024-07-25T18:18:22.010000"],["2024-07-25T18:18:23.010000"],["2024-07-25T18:18:24.010000"],["2024-07-25T18:18:25.010000"],["2024-07-25T18:18:26.010000"],["2024-07-25T18:18:27.010000"],["2024-07-25T18:18:28.010000"],["2024-07-25T18:18:29.010000"],["2024-07-25T18:18:30.010000"],["2024-07-25T18:18:31.010000"],["2024-07-25T18:18:32.010000"],["2024-07-25T18:18:33.010000"],["2024-07-25T18:18:34.010000"],["2024-07-25T18:18:35.010000"],["2024-07-25T18:18:36.010000"],["2024-07-25T18:18:37.010000"],["2024-07-25T18:18:38.010000"],["2024-07-25T18:18:39.010000"],["2024-07-25T18:18:40.010000"],["2024-07-25T18:18:41.010000"],["2024-07-25T18:18:42.010000"],["2024-07-25T18:18:43.010000"],["2024-07-25T18:18:44.010000"],["2024-07-25T18:18:45.010000"],["2024-07-25T18:18:46.010000"],["2024-07-25T18:18:47.010000"],["2024-07-25T18:18:48.010000"],["2024-07-25T18:18:49.010000"],["2024-07-25T18:18:50.010000"],["2024-07-25T18:18:51.010000"],["2024-07-25T18:18:52.010000"],["2024-07-25T18:18:53.010000"],["2024-07-25T18:18:54.010000"],["2024-07-25T18:18:55.010000"],["2024-07-25T18:18:56.010000"],["2024-07-25T18:18:57.010000"],["2024-07-25T18:18:58.010000"],["2024-07-25T18:18:59.010000"],["2024-07-25T18:19:00.010000"],["2024-07-25T18:19:01.010000"],["2024-07-25T18:19:02.010000"],["2024-07-25T18:19:03.010000"],["2024-07-25T18:19:04.010000"],["2024-07-25T18:19:05.010000"],["2024-07-25T18:19:06.010000"],["2024-07-25T18:19:07.010000"],["2024-07-25T18:19:08.010000"],["2024-07-25T18:19:09.010000"],["2024-07-25T18:19:10.010000"],["2024-07-25T18:19:11.010000"],["2024-07-25T18:19:12.010000"],["2024-07-25T18:19:13.010000"],["2024-07-25T18:19:14.010000"],["2024-07-25T18:19:15.010000"],["2024-07-25T18:19:16.010000"],["2024-07-25T18:19:17.010000"],["2024-07-25T18:19:18.010000"],["2024-07-25T18:19:19.010000"],["2024-07-25T18:19:20.010000"],["2024-07-25T18:19:21.010000"],["2024-07-25T18:19:22.010000"],["2024-07-25T18:19:23.010000"],["2024-07-25T18:19:24.010000"],["2024-07-25T18:19:25.010000"],["2024-07-25T18:19:26.010000"],["2024-07-25T18:19:27.010000"],["2024-07-25T18:19:28.010000"],["2024-07-25T18:19:29.010000"],["2024-07-25T18:19:30.010000"],["2024-07-25T18:19:31.010000"],["2024-07-25T18:19:32.010000"],["2024-07-25T18:19:33.010000"],["2024-07-25T18:19:34.010000"],["2024-07-25T18:19:35.010000"],["2024-07-25T18:19:36.010000"],["2024-07-25T18:19:37.010000"],["2024-07-25T18:19:38.010000"],["2024-07-25T18:19:39.010000"],["2024-07-25T18:19:40.010000"],["2024-07-25T18:19:41.010000"],["2024-07-25T18:19:42.010000"],["2024-07-25T18:19:43.010000"],["2024-07-25T18:19:44.010000"],["2024-07-25T18:19:45.010000"],["2024-07-25T18:19:46.010000"],["2024-07-25T18:19:47.010000"],["2024-07-25T18:19:48.010000"],["2024-07-25T18:19:49.010000"],["2024-07-25T18:19:50.010000"],["2024-07-25T18:19:51.010000"],["2024-07-25T18:19:52.010000"],["2024-07-25T18:19:53.010000"],["2024-07-25T18:19:54.010000"],["2024-07-25T18:19:55.010000"],["2024-07-25T18:19:56.010000"],["2024-07-25T18:19:57.010000"],["2024-07-25T18:19:58.010000"],["2024-07-25T18:19:59.010000"],["2024-07-25T18:20:00.010000"],["2024-07-25T18:20:01.010000"],["2024-07-25T18:20:02.010000"],["2024-07-25T18:20:03.010000"],["2024-07-25T18:20:04.010000"],["2024-07-25T18:20:05.010000"],["2024-07-25T18:20:06.010000"],["2024-07-25T18:20:07.010000"],["2024-07-25T18:20:08.010000"],["2024-07-25T18:20:09.010000"],["2024-07-25T18:20:10.010000"],["2024-07-25T18:20:11.010000"],["2024-07-25T18:20:12.010000"],["2024-07-25T18:20:13.010000"],["2024-07-25T18:20:14.010000"],["2024-07-25T18:20:15.010000"],["2024-07-25T18:20:16.010000"],["2024-07-25T18:20:17.010000"],["2024-07-25T18:20:18.010000"],["2024-07-25T18:20:19.010000"],["2024-07-25T18:20:20.010000"],["2024-07-25T18:20:21.010000"],["2024-07-25T18:20:22.010000"],["2024-07-25T18:20:23.010000"],["2024-07-25T18:20:24.010000"],["2024-07-25T18:20:25.010000"],["2024-07-25T18:20:26.010000"],["2024-07-25T18:20:27.010000"],["2024-07-25T18:20:28.010000"],["2024-07-25T18:20:29.010000"],["2024-07-25T18:20:30.010000"],["2024-07-25T18:20:31.010000"],["2024-07-25T18:20:32.010000"],["2024-07-25T18:20:33.010000"],["2024-07-25T18:20:34.010000"],["2024-07-25T18:20:35.010000"],["2024-07-25T18:20:36.010000"],["2024-07-25T18:20:37.010000"],["2024-07-25T18:20:38.010000"],["2024-07-25T18:20:39.010000"],["2024-07-25T18:20:40.010000"],["2024-07-25T18:20:41.010000"],["2024-07-25T18:20:42.010000"],["2024-07-25T18:20:43.010000"],["2024-07-25T18:20:44.010000"],["2024-07-25T18:20:45.010000"],["2024-07-25T18:20:46.010000"],["2024-07-25T18:20:47.010000"],["2024-07-25T18:20:48.010000"],["2024-07-25T18:20:49.010000"],["2024-07-25T18:20:50.010000"],["2024-07-25T18:20:51.010000"],["2024-07-25T18:20:52.010000"],["2024-07-25T18:20:53.010000"],["2024-07-25T18:20:54.010000"],["2024-07-25T18:20:55.010000"],["2024-07-25T18:20:56.010000"],["2024-07-25T18:20:57.010000"],["2024-07-25T18:20:58.010000"],["2024-07-25T18:20:59.010000"],["2024-07-25T18:21:00.010000"],["2024-07-25T18:21:01.010000"],["2024-07-25T18:21:02.010000"],["2024-07-25T18:21:03.010000"],["2024-07-25T18:21:04.010000"],["2024-07-25T18:21:05.010000"],["2024-07-25T18:21:06.010000"],["2024-07-25T18:21:07.010000"],["2024-07-25T18:21:08.010000"],["2024-07-25T18:21:09.010000"],["2024-07-25T18:21:10.010000"],["2024-07-25T18:21:11.010000"],["2024-07-25T18:21:12.010000"],["2024-07-25T18:21:13.010000"],["2024-07-25T18:21:14.010000"],["2024-07-25T18:21:15.010000"],["2024-07-25T18:21:16.010000"],["2024-07-25T18:21:17.010000"],["2024-07-25T18:21:18.010000"],["2024-07-25T18:21:19.010000"],["2024-07-25T18:21:20.010000"],["2024-07-25T18:21:21.010000"],["2024-07-25T18:21:22.010000"],["2024-07-25T18:21:23.010000"],["2024-07-25T18:21:24.010000"],["2024-07-25T18:21:25.010000"],["2024-07-25T18:21:26.010000"],["2024-07-25T18:21:27.010000"],["2024-07-25T18:21:28.010000"],["2024-07-25T18:21:29.010000"],["2024-07-25T18:21:30.010000"],["2024-07-25T18:21:31.010000"],["2024-07-25T18:21:32.010000"],["2024-07-25T18:21:33.010000"],["2024-07-25T18:21:34.010000"],["2024-07-25T18:21:35.010000"],["2024-07-25T18:21:36.010000"],["2024-07-25T18:21:37.010000"],["2024-07-25T18:21:38.010000"],["2024-07-25T18:21:39.010000"],["2024-07-25T18:21:40.010000"],["2024-07-25T18:21:41.010000"],["2024-07-25T18:21:42.010000"],["2024-07-25T18:21:43.010000"],["2024-07-25T18:21:44.010000"],["2024-07-25T18:21:45.010000"],["2024-07-25T18:21:46.010000"],["2024-07-25T18:21:47.010000"],["2024-07-25T18:21:48.010000"],["2024-07-25T18:21:49.010000"],["2024-07-25T18:21:50.010000"],["2024-07-25T18:21:51.010000"],["2024-07-25T18:21:52.010000"],["2024-07-25T18:21:53.010000"],["2024-07-25T18:21:54.010000"],["2024-07-25T18:21:55.010000"],["2024-07-25T18:21:56.010000"],["2024-07-25T18:21:57.010000"],["2024-07-25T18:21:58.010000"],["2024-07-25T18:21:59.010000"],["2024-07-25T18:22:00.010000"],["2024-07-25T18:22:01.010000"],["2024-07-25T18:22:02.010000"],["2024-07-25T18:22:03.010000"],["2024-07-25T18:22:04.010000"],["2024-07-25T18:22:05.010000"],["2024-07-25T18:22:06.010000"],["2024-07-25T18:22:07.010000"],["2024-07-25T18:22:08.010000"],["2024-07-25T18:22:09.010000"],["2024-07-25T18:22:10.010000"],["2024-07-25T18:22:11.010000"],["2024-07-25T18:22:12.010000"],["2024-07-25T18:22:13.010000"],["2024-07-25T18:22:14.010000"],["2024-07-25T18:22:15.010000"],["2024-07-25T18:22:16.010000"],["2024-07-25T18:22:17.010000"],["2024-07-25T18:22:18.010000"],["2024-07-25T18:22:19.010000"],["2024-07-25T18:22:20.010000"],["2024-07-25T18:22:21.010000"],["2024-07-25T18:22:22.010000"],["2024-07-25T18:22:23.010000"],["2024-07-25T18:22:24.010000"],["2024-07-25T18:22:25.010000"],["2024-07-25T18:22:26.010000"],["2024-07-25T18:22:27.010000"],["2024-07-25T18:22:28.010000"],["2024-07-25T18:22:29.010000"],["2024-07-25T18:22:30.010000"],["2024-07-25T18:22:31.010000"],["2024-07-25T18:22:32.010000"],["2024-07-25T18:22:33.010000"],["2024-07-25T18:22:34.010000"],["2024-07-25T18:22:35.010000"],["2024-07-25T18:22:36.010000"],["2024-07-25T18:22:37.010000"],["2024-07-25T18:22:38.010000"],["2024-07-25T18:22:39.010000"],["2024-07-25T18:22:40.010000"],["2024-07-25T18:22:41.010000"],["2024-07-25T18:22:42.010000"],["2024-07-25T18:22:43.010000"],["2024-07-25T18:22:44.010000"],["2024-07-25T18:22:45.010000"],["2024-07-25T18:22:46.010000"],["2024-07-25T18:22:47.010000"],["2024-07-25T18:22:48.010000"],["2024-07-25T18:22:49.010000"],["2024-07-25T18:22:50.010000"],["2024-07-25T18:22:51.010000"],["2024-07-25T18:22:52.010000"],["2024-07-25T18:22:53.010000"],["2024-07-25T18:22:54.010000"],["2024-07-25T18:22:55.010000"],["2024-07-25T18:22:56.010000"],["2024-07-25T18:22:57.010000"],["2024-07-25T18:22:58.010000"],["2024-07-25T18:22:59.010000"],["2024-07-25T18:23:00.010000"],["2024-07-25T18:23:01.010000"],["2024-07-25T18:23:02.010000"],["2024-07-25T18:23:03.010000"],["2024-07-25T18:23:04.010000"],["2024-07-25T18:23:05.010000"],["2024-07-25T18:23:06.010000"],["2024-07-25T18:23:07.010000"],["2024-07-25T18:23:08.010000"],["2024-07-25T18:23:09.010000"],["2024-07-25T18:23:10.010000"],["2024-07-25T18:23:11.010000"],["2024-07-25T18:23:12.010000"],["2024-07-25T18:23:13.010000"],["2024-07-25T18:23:14.010000"],["2024-07-25T18:23:15.010000"],["2024-07-25T18:23:16.010000"],["2024-07-25T18:23:17.010000"],["2024-07-25T18:23:18.010000"],["2024-07-25T18:23:19.010000"],["2024-07-25T18:23:20.010000"],["2024-07-25T18:23:21.010000"],["2024-07-25T18:23:22.010000"],["2024-07-25T18:23:23.010000"],["2024-07-25T18:23:24.010000"],["2024-07-25T18:23:25.010000"],["2024-07-25T18:23:26.010000"],["2024-07-25T18:23:27.010000"],["2024-07-25T18:23:28.010000"],["2024-07-25T18:23:29.010000"],["2024-07-25T18:23:30.010000"],["2024-07-25T18:23:31.010000"],["2024-07-25T18:23:32.010000"],["2024-07-25T18:23:33.010000"],["2024-07-25T18:23:34.010000"],["2024-07-25T18:23:35.010000"],["2024-07-25T18:23:36.010000"],["2024-07-25T18:23:37.010000"],["2024-07-25T18:23:38.010000"],["2024-07-25T18:23:39.010000"],["2024-07-25T18:23:40.010000"],["2024-07-25T18:23:41.010000"],["2024-07-25T18:23:42.010000"],["2024-07-25T18:23:43.010000"],["2024-07-25T18:23:44.010000"],["2024-07-25T18:23:45.010000"],["2024-07-25T18:23:46.010000"],["2024-07-25T18:23:47.010000"],["2024-07-25T18:23:48.010000"],["2024-07-25T18:23:49.010000"],["2024-07-25T18:23:50.010000"],["2024-07-25T18:23:51.010000"],["2024-07-25T18:23:52.010000"],["2024-07-25T18:23:53.010000"],["2024-07-25T18:23:54.010000"],["2024-07-25T18:23:55.010000"],["2024-07-25T18:23:56.010000"],["2024-07-25T18:23:57.010000"],["2024-07-25T18:23:58.010000"],["2024-07-25T18:23:59.010000"],["2024-07-25T18:24:00.010000"],["2024-07-25T18:24:01.010000"],["2024-07-25T18:24:02.010000"],["2024-07-25T18:24:03.010000"],["2024-07-25T18:24:04.010000"],["2024-07-25T18:24:05.010000"],["2024-07-25T18:24:06.010000"],["2024-07-25T18:24:07.010000"],["2024-07-25T18:24:08.010000"],["2024-07-25T18:24:09.010000"],["2024-07-25T18:24:10.010000"],["2024-07-25T18:24:11.010000"],["2024-07-25T18:24:12.010000"],["2024-07-25T18:24:13.010000"],["2024-07-25T18:24:14.010000"],["2024-07-25T18:24:15.010000"],["2024-07-25T18:24:16.010000"],["2024-07-25T18:24:17.010000"],["2024-07-25T18:24:18.010000"],["2024-07-25T18:24:19.010000"],["2024-07-25T18:24:20.010000"],["2024-07-25T18:24:21.010000"],["2024-07-25T18:24:22.010000"],["2024-07-25T18:24:23.010000"],["2024-07-25T18:24:24.010000"],["2024-07-25T18:24:25.010000"],["2024-07-25T18:24:26.010000"],["2024-07-25T18:24:27.010000"],["2024-07-25T18:24:28.010000"],["2024-07-25T18:24:29.010000"],["2024-07-25T18:24:30.010000"],["2024-07-25T18:24:31.010000"],["2024-07-25T18:24:32.010000"],["2024-07-25T18:24:33.010000"],["2024-07-25T18:24:34.010000"],["2024-07-25T18:24:35.010000"],["2024-07-25T18:24:36.010000"],["2024-07-25T18:24:37.010000"],["2024-07-25T18:24:38.010000"],["2024-07-25T18:24:39.010000"],["2024-07-25T18:24:40.010000"],["2024-07-25T18:24:41.010000"],["2024-07-25T18:24:42.010000"],["2024-07-25T18:24:43.010000"],["2024-07-25T18:24:44.010000"],["2024-07-25T18:24:45.010000"],["2024-07-25T18:24:46.010000"],["2024-07-25T18:24:47.010000"],["2024-07-25T18:24:48.010000"],["2024-07-25T18:24:49.010000"],["2024-07-25T18:24:50.010000"],["2024-07-25T18:24:51.010000"],["2024-07-25T18:24:52.010000"],["2024-07-25T18:24:53.010000"],["2024-07-25T18:24:54.010000"],["2024-07-25T18:24:55.010000"],["2024-07-25T18:24:56.010000"],["2024-07-25T18:24:57.010000"],["2024-07-25T18:24:58.010000"],["2024-07-25T18:24:59.010000"],["2024-07-25T18:25:00.010000"],["2024-07-25T18:25:01.010000"],["2024-07-25T18:25:02.010000"],["2024-07-25T18:25:03.010000"],["2024-07-25T18:25:04.010000"],["2024-07-25T18:25:05.010000"],["2024-07-25T18:25:06.010000"],["2024-07-25T18:25:07.010000"],["2024-07-25T18:25:08.010000"],["2024-07-25T18:25:09.010000"],["2024-07-25T18:25:10.010000"],["2024-07-25T18:25:11.010000"],["2024-07-25T18:25:12.010000"],["2024-07-25T18:25:13.010000"],["2024-07-25T18:25:14.010000"],["2024-07-25T18:25:15.010000"],["2024-07-25T18:25:16.010000"],["2024-07-25T18:25:17.010000"],["2024-07-25T18:25:18.010000"],["2024-07-25T18:25:19.010000"],["2024-07-25T18:25:20.010000"],["2024-07-25T18:25:21.010000"],["2024-07-25T18:25:22.010000"],["2024-07-25T18:25:23.010000"],["2024-07-25T18:25:24.010000"],["2024-07-25T18:25:25.010000"],["2024-07-25T18:25:26.010000"],["2024-07-25T18:25:27.010000"],["2024-07-25T18:25:28.010000"],["2024-07-25T18:25:29.010000"],["2024-07-25T18:25:30.010000"],["2024-07-25T18:25:31.010000"],["2024-07-25T18:25:32.010000"],["2024-07-25T18:25:33.010000"],["2024-07-25T18:25:34.010000"],["2024-07-25T18:25:35.010000"],["2024-07-25T18:25:36.010000"],["2024-07-25T18:25:37.010000"],["2024-07-25T18:25:38.010000"],["2024-07-25T18:25:39.010000"],["2024-07-25T18:25:40.010000"],["2024-07-25T18:25:41.010000"],["2024-07-25T18:25:42.010000"],["2024-07-25T18:25:43.010000"],["2024-07-25T18:25:44.010000"],["2024-07-25T18:25:45.010000"],["2024-07-25T18:25:46.010000"],["2024-07-25T18:25:47.010000"],["2024-07-25T18:25:48.010000"],["2024-07-25T18:25:49.010000"],["2024-07-25T18:25:50.010000"],["2024-07-25T18:25:51.010000"],["2024-07-25T18:25:52.010000"],["2024-07-25T18:25:53.010000"],["2024-07-25T18:25:54.010000"],["2024-07-25T18:25:55.010000"],["2024-07-25T18:25:56.010000"],["2024-07-25T18:25:57.010000"],["2024-07-25T18:25:58.010000"],["2024-07-25T18:25:59.010000"],["2024-07-25T18:26:00.010000"],["2024-07-25T18:26:01.010000"],["2024-07-25T18:26:02.010000"],["2024-07-25T18:26:03.010000"],["2024-07-25T18:26:04.010000"],["2024-07-25T18:26:05.010000"],["2024-07-25T18:26:06.010000"],["2024-07-25T18:26:07.010000"],["2024-07-25T18:26:08.010000"],["2024-07-25T18:26:09.010000"],["2024-07-25T18:26:10.010000"],["2024-07-25T18:26:11.010000"],["2024-07-25T18:26:12.010000"],["2024-07-25T18:26:13.010000"],["2024-07-25T18:26:14.010000"],["2024-07-25T18:26:15.010000"],["2024-07-25T18:26:16.010000"],["2024-07-25T18:26:17.010000"],["2024-07-25T18:26:18.010000"],["2024-07-25T18:26:19.010000"],["2024-07-25T18:26:20.010000"],["2024-07-25T18:26:21.010000"],["2024-07-25T18:26:22.010000"],["2024-07-25T18:26:23.010000"],["2024-07-25T18:26:24.010000"],["2024-07-25T18:26:25.010000"],["2024-07-25T18:26:26.010000"],["2024-07-25T18:26:27.010000"],["2024-07-25T18:26:28.010000"],["2024-07-25T18:26:29.010000"],["2024-07-25T18:26:30.010000"],["2024-07-25T18:26:31.010000"],["2024-07-25T18:26:32.010000"],["2024-07-25T18:26:33.010000"],["2024-07-25T18:26:34.010000"],["2024-07-25T18:26:35.010000"],["2024-07-25T18:26:36.010000"],["2024-07-25T18:26:37.010000"],["2024-07-25T18:26:38.010000"],["2024-07-25T18:26:39.010000"],["2024-07-25T18:26:40.010000"],["2024-07-25T18:26:41.010000"],["2024-07-25T18:26:42.010000"],["2024-07-25T18:26:43.010000"],["2024-07-25T18:26:44.010000"],["2024-07-25T18:26:45.010000"],["2024-07-25T18:26:46.010000"],["2024-07-25T18:26:47.010000"],["2024-07-25T18:26:48.010000"],["2024-07-25T18:26:49.010000"],["2024-07-25T18:26:50.010000"],["2024-07-25T18:26:51.010000"],["2024-07-25T18:26:52.010000"],["2024-07-25T18:26:53.010000"],["2024-07-25T18:26:54.010000"],["2024-07-25T18:26:55.010000"],["2024-07-25T18:26:56.010000"],["2024-07-25T18:26:57.010000"],["2024-07-25T18:26:58.010000"],["2024-07-25T18:26:59.010000"],["2024-07-25T18:27:00.010000"],["2024-07-25T18:27:01.010000"],["2024-07-25T18:27:02.010000"],["2024-07-25T18:27:03.010000"],["2024-07-25T18:27:04.010000"],["2024-07-25T18:27:05.010000"],["2024-07-25T18:27:06.010000"],["2024-07-25T18:27:07.010000"],["2024-07-25T18:27:08.010000"],["2024-07-25T18:27:09.010000"],["2024-07-25T18:27:10.010000"],["2024-07-25T18:27:11.010000"],["2024-07-25T18:27:12.010000"],["2024-07-25T18:27:13.010000"],["2024-07-25T18:27:14.010000"],["2024-07-25T18:27:15.010000"],["2024-07-25T18:27:16.010000"],["2024-07-25T18:27:17.010000"],["2024-07-25T18:27:18.010000"],["2024-07-25T18:27:19.010000"],["2024-07-25T18:27:20.010000"],["2024-07-25T18:27:21.010000"],["2024-07-25T18:27:22.010000"],["2024-07-25T18:27:23.010000"],["2024-07-25T18:27:24.010000"],["2024-07-25T18:27:25.010000"],["2024-07-25T18:27:26.010000"],["2024-07-25T18:27:27.010000"],["2024-07-25T18:27:28.010000"],["2024-07-25T18:27:29.010000"],["2024-07-25T18:27:30.010000"],["2024-07-25T18:27:31.010000"],["2024-07-25T18:27:32.010000"],["2024-07-25T18:27:33.010000"],["2024-07-25T18:27:34.010000"],["2024-07-25T18:27:35.010000"],["2024-07-25T18:27:36.010000"],["2024-07-25T18:27:37.010000"],["2024-07-25T18:27:38.010000"],["2024-07-25T18:27:39.010000"],["2024-07-25T18:27:40.010000"],["2024-07-25T18:27:41.010000"],["2024-07-25T18:27:42.010000"],["2024-07-25T18:27:43.010000"],["2024-07-25T18:27:44.010000"],["2024-07-25T18:27:45.010000"],["2024-07-25T18:27:46.010000"],["2024-07-25T18:27:47.010000"],["2024-07-25T18:27:48.010000"],["2024-07-25T18:27:49.010000"],["2024-07-25T18:27:50.010000"],["2024-07-25T18:27:51.010000"],["2024-07-25T18:27:52.010000"],["2024-07-25T18:27:53.010000"],["2024-07-25T18:27:54.010000"],["2024-07-25T18:27:55.010000"],["2024-07-25T18:27:56.010000"],["2024-07-25T18:27:57.010000"],["2024-07-25T18:27:58.010000"],["2024-07-25T18:27:59.010000"],["2024-07-25T18:28:00.010000"],["2024-07-25T18:28:01.010000"],["2024-07-25T18:28:02.010000"],["2024-07-25T18:28:03.010000"],["2024-07-25T18:28:04.010000"],["2024-07-25T18:28:05.010000"],["2024-07-25T18:28:06.010000"],["2024-07-25T18:28:07.010000"],["2024-07-25T18:28:08.010000"],["2024-07-25T18:28:09.010000"],["2024-07-25T18:28:10.010000"],["2024-07-25T18:28:11.010000"],["2024-07-25T18:28:12.010000"],["2024-07-25T18:28:13.010000"],["2024-07-25T18:28:14.010000"],["2024-07-25T18:28:15.010000"],["2024-07-25T18:28:16.010000"],["2024-07-25T18:28:17.010000"],["2024-07-25T18:28:18.010000"],["2024-07-25T18:28:19.010000"],["2024-07-25T18:28:20.010000"],["2024-07-25T18:28:21.010000"],["2024-07-25T18:28:22.010000"],["2024-07-25T18:28:23.010000"],["2024-07-25T18:28:24.010000"],["2024-07-25T18:28:25.010000"],["2024-07-25T18:28:26.010000"],["2024-07-25T18:28:27.010000"],["2024-07-25T18:28:28.010000"],["2024-07-25T18:28:29.010000"],["2024-07-25T18:28:30.010000"],["2024-07-25T18:28:31.010000"],["2024-07-25T18:28:32.010000"],["2024-07-25T18:28:33.010000"],["2024-07-25T18:28:34.010000"],["2024-07-25T18:28:35.010000"],["2024-07-25T18:28:36.010000"],["2024-07-25T18:28:37.010000"],["2024-07-25T18:28:38.010000"],["2024-07-25T18:28:39.010000"],["2024-07-25T18:28:40.010000"],["2024-07-25T18:28:41.010000"],["2024-07-25T18:28:42.010000"],["2024-07-25T18:28:43.010000"],["2024-07-25T18:28:44.010000"],["2024-07-25T18:28:45.010000"],["2024-07-25T18:28:46.010000"],["2024-07-25T18:28:47.010000"],["2024-07-25T18:28:48.010000"],["2024-07-25T18:28:49.010000"],["2024-07-25T18:28:50.010000"],["2024-07-25T18:28:51.010000"],["2024-07-25T18:28:52.010000"],["2024-07-25T18:28:53.010000"],["2024-07-25T18:28:54.010000"],["2024-07-25T18:28:55.010000"],["2024-07-25T18:28:56.010000"],["2024-07-25T18:28:57.010000"],["2024-07-25T18:28:58.010000"],["2024-07-25T18:28:59.010000"],["2024-07-25T18:29:00.010000"],["2024-07-25T18:29:01.010000"],["2024-07-25T18:29:02.010000"],["2024-07-25T18:29:03.010000"],["2024-07-25T18:29:04.010000"],["2024-07-25T18:29:05.010000"],["2024-07-25T18:29:06.010000"],["2024-07-25T18:29:07.010000"],["2024-07-25T18:29:08.010000"],["2024-07-25T18:29:09.010000"],["2024-07-25T18:29:10.010000"],["2024-07-25T18:29:11.010000"],["2024-07-25T18:29:12.010000"],["2024-07-25T18:29:13.010000"],["2024-07-25T18:29:14.010000"],["2024-07-25T18:29:15.010000"],["2024-07-25T18:29:16.010000"],["2024-07-25T18:29:17.010000"],["2024-07-25T18:29:18.010000"],["2024-07-25T18:29:19.010000"],["2024-07-25T18:29:20.010000"],["2024-07-25T18:29:21.010000"],["2024-07-25T18:29:22.010000"],["2024-07-25T18:29:23.010000"],["2024-07-25T18:29:24.010000"],["2024-07-25T18:29:25.010000"],["2024-07-25T18:29:26.010000"],["2024-07-25T18:29:27.010000"],["2024-07-25T18:29:28.010000"],["2024-07-25T18:29:29.010000"],["2024-07-25T18:29:30.010000"],["2024-07-25T18:29:31.010000"],["2024-07-25T18:29:32.010000"],["2024-07-25T18:29:33.010000"],["2024-07-25T18:29:34.010000"],["2024-07-25T18:29:35.010000"],["2024-07-25T18:29:36.010000"],["2024-07-25T18:29:37.010000"],["2024-07-25T18:29:38.010000"],["2024-07-25T18:29:39.010000"],["2024-07-25T18:29:40.010000"],["2024-07-25T18:29:41.010000"],["2024-07-25T18:29:42.010000"],["2024-07-25T18:29:43.010000"],["2024-07-25T18:29:44.010000"],["2024-07-25T18:29:45.010000"],["2024-07-25T18:29:46.010000"],["2024-07-25T18:29:47.010000"],["2024-07-25T18:29:48.010000"],["2024-07-25T18:29:49.010000"],["2024-07-25T18:29:50.010000"],["2024-07-25T18:29:51.010000"],["2024-07-25T18:29:52.010000"],["2024-07-25T18:29:53.010000"],["2024-07-25T18:29:54.010000"],["2024-07-25T18:29:55.010000"],["2024-07-25T18:29:56.010000"],["2024-07-25T18:29:57.010000"],["2024-07-25T18:29:58.010000"],["2024-07-25T18:29:59.010000"],["2024-07-25T18:30:00.010000"],["2024-07-25T18:30:01.010000"],["2024-07-25T18:30:02.010000"],["2024-07-25T18:30:03.010000"],["2024-07-25T18:30:04.010000"],["2024-07-25T18:30:05.010000"],["2024-07-25T18:30:06.010000"],["2024-07-25T18:30:07.010000"],["2024-07-25T18:30:08.010000"],["2024-07-25T18:30:09.010000"],["2024-07-25T18:30:10.010000"],["2024-07-25T18:30:11.010000"],["2024-07-25T18:30:12.010000"],["2024-07-25T18:30:13.010000"],["2024-07-25T18:30:14.010000"],["2024-07-25T18:30:15.010000"],["2024-07-25T18:30:16.010000"],["2024-07-25T18:30:17.010000"],["2024-07-25T18:30:18.010000"],["2024-07-25T18:30:19.010000"],["2024-07-25T18:30:20.010000"],["2024-07-25T18:30:21.010000"],["2024-07-25T18:30:22.010000"],["2024-07-25T18:30:23.010000"],["2024-07-25T18:30:24.010000"],["2024-07-25T18:30:25.010000"],["2024-07-25T18:30:26.010000"],["2024-07-25T18:30:27.010000"],["2024-07-25T18:30:28.010000"],["2024-07-25T18:30:29.010000"],["2024-07-25T18:30:30.010000"],["2024-07-25T18:30:31.010000"],["2024-07-25T18:30:32.010000"],["2024-07-25T18:30:33.010000"],["2024-07-25T18:30:34.010000"],["2024-07-25T18:30:35.010000"],["2024-07-25T18:30:36.010000"],["2024-07-25T18:30:37.010000"],["2024-07-25T18:30:38.010000"],["2024-07-25T18:30:39.010000"],["2024-07-25T18:30:40.010000"],["2024-07-25T18:30:41.010000"],["2024-07-25T18:30:42.010000"],["2024-07-25T18:30:43.010000"],["2024-07-25T18:30:44.010000"],["2024-07-25T18:30:45.010000"],["2024-07-25T18:30:46.010000"],["2024-07-25T18:30:47.010000"],["2024-07-25T18:30:48.010000"],["2024-07-25T18:30:49.010000"],["2024-07-25T18:30:50.010000"],["2024-07-25T18:30:51.010000"],["2024-07-25T18:30:52.010000"],["2024-07-25T18:30:53.010000"],["2024-07-25T18:30:54.010000"],["2024-07-25T18:30:55.010000"],["2024-07-25T18:30:56.010000"],["2024-07-25T18:30:57.010000"],["2024-07-25T18:30:58.010000"],["2024-07-25T18:30:59.010000"],["2024-07-25T18:31:00.010000"],["2024-07-25T18:31:01.010000"],["2024-07-25T18:31:02.010000"],["2024-07-25T18:31:03.010000"],["2024-07-25T18:31:04.010000"],["2024-07-25T18:31:05.010000"],["2024-07-25T18:31:06.010000"],["2024-07-25T18:31:07.010000"],["2024-07-25T18:31:08.010000"],["2024-07-25T18:31:09.010000"],["2024-07-25T18:31:10.010000"],["2024-07-25T18:31:11.010000"],["2024-07-25T18:31:12.010000"],["2024-07-25T18:31:13.010000"],["2024-07-25T18:31:14.010000"],["2024-07-25T18:31:15.010000"],["2024-07-25T18:31:16.010000"],["2024-07-25T18:31:17.010000"],["2024-07-25T18:31:18.010000"],["2024-07-25T18:31:19.010000"],["2024-07-25T18:31:20.010000"],["2024-07-25T18:31:21.010000"],["2024-07-25T18:31:22.010000"],["2024-07-25T18:31:23.010000"],["2024-07-25T18:31:24.010000"],["2024-07-25T18:31:25.010000"],["2024-07-25T18:31:26.010000"],["2024-07-25T18:31:27.010000"],["2024-07-25T18:31:28.010000"],["2024-07-25T18:31:29.010000"],["2024-07-25T18:31:30.010000"],["2024-07-25T18:31:31.010000"],["2024-07-25T18:31:32.010000"],["2024-07-25T18:31:33.010000"],["2024-07-25T18:31:34.010000"],["2024-07-25T18:31:35.010000"],["2024-07-25T18:31:36.010000"],["2024-07-25T18:31:37.010000"],["2024-07-25T18:31:38.010000"],["2024-07-25T18:31:39.010000"],["2024-07-25T18:31:40.010000"],["2024-07-25T18:31:41.010000"],["2024-07-25T18:31:42.010000"],["2024-07-25T18:31:43.010000"],["2024-07-25T18:31:44.010000"],["2024-07-25T18:31:45.010000"],["2024-07-25T18:31:46.010000"],["2024-07-25T18:31:47.010000"],["2024-07-25T18:31:48.010000"],["2024-07-25T18:31:49.010000"],["2024-07-25T18:31:50.010000"],["2024-07-25T18:31:51.010000"],["2024-07-25T18:31:52.010000"],["2024-07-25T18:31:53.010000"],["2024-07-25T18:31:54.010000"],["2024-07-25T18:31:55.010000"],["2024-07-25T18:31:56.010000"],["2024-07-25T18:31:57.010000"],["2024-07-25T18:31:58.010000"],["2024-07-25T18:31:59.010000"],["2024-07-25T18:32:00.010000"],["2024-07-25T18:32:01.010000"],["2024-07-25T18:32:02.010000"],["2024-07-25T18:32:03.010000"],["2024-07-25T18:32:04.010000"],["2024-07-25T18:32:05.010000"],["2024-07-25T18:32:06.010000"],["2024-07-25T18:32:07.010000"],["2024-07-25T18:32:08.010000"],["2024-07-25T18:32:09.010000"],["2024-07-25T18:32:10.010000"],["2024-07-25T18:32:11.010000"],["2024-07-25T18:32:12.010000"],["2024-07-25T18:32:13.010000"],["2024-07-25T18:32:14.010000"],["2024-07-25T18:32:15.010000"],["2024-07-25T18:32:16.010000"],["2024-07-25T18:32:17.010000"],["2024-07-25T18:32:18.010000"],["2024-07-25T18:32:19.010000"],["2024-07-25T18:32:20.010000"],["2024-07-25T18:32:21.010000"],["2024-07-25T18:32:22.010000"],["2024-07-25T18:32:23.010000"],["2024-07-25T18:32:24.010000"],["2024-07-25T18:32:25.010000"],["2024-07-25T18:32:26.010000"],["2024-07-25T18:32:27.010000"],["2024-07-25T18:32:28.010000"],["2024-07-25T18:32:29.010000"],["2024-07-25T18:32:30.010000"],["2024-07-25T18:32:31.010000"],["2024-07-25T18:32:32.010000"],["2024-07-25T18:32:33.010000"],["2024-07-25T18:32:34.010000"],["2024-07-25T18:32:35.010000"],["2024-07-25T18:32:36.010000"],["2024-07-25T18:32:37.010000"],["2024-07-25T18:32:38.010000"],["2024-07-25T18:32:39.010000"],["2024-07-25T18:32:40.010000"],["2024-07-25T18:32:41.010000"],["2024-07-25T18:32:42.010000"],["2024-07-25T18:32:43.010000"],["2024-07-25T18:32:44.010000"],["2024-07-25T18:32:45.010000"],["2024-07-25T18:32:46.010000"],["2024-07-25T18:32:47.010000"],["2024-07-25T18:32:48.010000"],["2024-07-25T18:32:49.010000"],["2024-07-25T18:32:50.010000"],["2024-07-25T18:32:51.010000"],["2024-07-25T18:32:52.010000"],["2024-07-25T18:32:53.010000"],["2024-07-25T18:32:54.010000"],["2024-07-25T18:32:55.010000"],["2024-07-25T18:32:56.010000"],["2024-07-25T18:32:57.010000"],["2024-07-25T18:32:58.010000"],["2024-07-25T18:32:59.010000"],["2024-07-25T18:33:00.010000"],["2024-07-25T18:33:01.010000"],["2024-07-25T18:33:02.010000"],["2024-07-25T18:33:03.010000"],["2024-07-25T18:33:04.010000"],["2024-07-25T18:33:05.010000"],["2024-07-25T18:33:06.010000"],["2024-07-25T18:33:07.010000"],["2024-07-25T18:33:08.010000"],["2024-07-25T18:33:09.010000"],["2024-07-25T18:33:10.010000"],["2024-07-25T18:33:11.010000"],["2024-07-25T18:33:12.010000"],["2024-07-25T18:33:13.010000"],["2024-07-25T18:33:14.010000"],["2024-07-25T18:33:15.010000"],["2024-07-25T18:33:16.010000"],["2024-07-25T18:33:17.010000"],["2024-07-25T18:33:18.010000"],["2024-07-25T18:33:19.010000"],["2024-07-25T18:33:20.010000"],["2024-07-25T18:33:21.010000"],["2024-07-25T18:33:22.010000"],["2024-07-25T18:33:23.010000"],["2024-07-25T18:33:24.010000"],["2024-07-25T18:33:25.010000"],["2024-07-25T18:33:26.010000"],["2024-07-25T18:33:27.010000"],["2024-07-25T18:33:28.010000"],["2024-07-25T18:33:29.010000"],["2024-07-25T18:33:30.010000"],["2024-07-25T18:33:31.010000"],["2024-07-25T18:33:32.010000"],["2024-07-25T18:33:33.010000"],["2024-07-25T18:33:34.010000"],["2024-07-25T18:33:35.010000"],["2024-07-25T18:33:36.010000"],["2024-07-25T18:33:37.010000"],["2024-07-25T18:33:38.010000"],["2024-07-25T18:33:39.010000"],["2024-07-25T18:33:40.010000"],["2024-07-25T18:33:41.010000"],["2024-07-25T18:33:42.010000"],["2024-07-25T18:33:43.010000"],["2024-07-25T18:33:44.010000"],["2024-07-25T18:33:45.010000"],["2024-07-25T18:33:46.010000"],["2024-07-25T18:33:47.010000"],["2024-07-25T18:33:48.010000"],["2024-07-25T18:33:49.010000"],["2024-07-25T18:33:50.010000"],["2024-07-25T18:33:51.010000"],["2024-07-25T18:33:52.010000"],["2024-07-25T18:33:53.010000"],["2024-07-25T18:33:54.010000"],["2024-07-25T18:33:55.010000"],["2024-07-25T18:33:56.010000"],["2024-07-25T18:33:57.010000"],["2024-07-25T18:33:58.010000"],["2024-07-25T18:33:59.010000"],["2024-07-25T18:34:00.010000"],["2024-07-25T18:34:01.010000"],["2024-07-25T18:34:02.010000"],["2024-07-25T18:34:03.010000"],["2024-07-25T18:34:04.010000"],["2024-07-25T18:34:05.010000"],["2024-07-25T18:34:06.010000"],["2024-07-25T18:34:07.010000"],["2024-07-25T18:34:08.010000"],["2024-07-25T18:34:09.010000"],["2024-07-25T18:34:10.010000"],["2024-07-25T18:34:11.010000"],["2024-07-25T18:34:12.010000"],["2024-07-25T18:34:13.010000"],["2024-07-25T18:34:14.010000"],["2024-07-25T18:34:15.010000"],["2024-07-25T18:34:16.010000"],["2024-07-25T18:34:17.010000"],["2024-07-25T18:34:18.010000"],["2024-07-25T18:34:19.010000"],["2024-07-25T18:34:20.010000"],["2024-07-25T18:34:21.010000"],["2024-07-25T18:34:22.010000"],["2024-07-25T18:34:23.010000"],["2024-07-25T18:34:24.010000"],["2024-07-25T18:34:25.010000"],["2024-07-25T18:34:26.010000"],["2024-07-25T18:34:27.010000"],["2024-07-25T18:34:28.010000"],["2024-07-25T18:34:29.010000"],["2024-07-25T18:34:30.010000"],["2024-07-25T18:34:31.010000"],["2024-07-25T18:34:32.010000"],["2024-07-25T18:34:33.010000"],["2024-07-25T18:34:34.010000"],["2024-07-25T18:34:35.010000"],["2024-07-25T18:34:36.010000"],["2024-07-25T18:34:37.010000"],["2024-07-25T18:34:38.010000"],["2024-07-25T18:34:39.010000"],["2024-07-25T18:34:40.010000"],["2024-07-25T18:34:41.010000"],["2024-07-25T18:34:42.010000"],["2024-07-25T18:34:43.010000"],["2024-07-25T18:34:44.010000"],["2024-07-25T18:34:45.010000"],["2024-07-25T18:34:46.010000"],["2024-07-25T18:34:47.010000"],["2024-07-25T18:34:48.010000"],["2024-07-25T18:34:49.010000"],["2024-07-25T18:34:50.010000"],["2024-07-25T18:34:51.010000"],["2024-07-25T18:34:52.010000"],["2024-07-25T18:34:53.010000"],["2024-07-25T18:34:54.010000"],["2024-07-25T18:34:55.010000"],["2024-07-25T18:34:56.010000"],["2024-07-25T18:34:57.010000"],["2024-07-25T18:34:58.010000"],["2024-07-25T18:34:59.010000"],["2024-07-25T18:35:00.010000"],["2024-07-25T18:35:01.010000"],["2024-07-25T18:35:02.010000"],["2024-07-25T18:35:03.010000"],["2024-07-25T18:35:04.010000"],["2024-07-25T18:35:05.010000"],["2024-07-25T18:35:06.010000"],["2024-07-25T18:35:07.010000"],["2024-07-25T18:35:08.010000"],["2024-07-25T18:35:09.010000"],["2024-07-25T18:35:10.010000"],["2024-07-25T18:35:11.010000"],["2024-07-25T18:35:12.010000"],["2024-07-25T18:35:13.010000"],["2024-07-25T18:35:14.010000"],["2024-07-25T18:35:15.010000"],["2024-07-25T18:35:16.010000"],["2024-07-25T18:35:17.010000"],["2024-07-25T18:35:18.010000"],["2024-07-25T18:35:19.010000"],["2024-07-25T18:35:20.010000"],["2024-07-25T18:35:21.010000"],["2024-07-25T18:35:22.010000"],["2024-07-25T18:35:23.010000"],["2024-07-25T18:35:24.010000"],["2024-07-25T18:35:25.010000"],["2024-07-25T18:35:26.010000"],["2024-07-25T18:35:27.010000"],["2024-07-25T18:35:28.010000"],["2024-07-25T18:35:29.010000"],["2024-07-25T18:35:30.010000"],["2024-07-25T18:35:31.010000"],["2024-07-25T18:35:32.010000"],["2024-07-25T18:35:33.010000"],["2024-07-25T18:35:34.010000"],["2024-07-25T18:35:35.010000"],["2024-07-25T18:35:36.010000"],["2024-07-25T18:35:37.010000"],["2024-07-25T18:35:38.010000"],["2024-07-25T18:35:39.010000"],["2024-07-25T18:35:40.010000"],["2024-07-25T18:35:41.010000"],["2024-07-25T18:35:42.010000"],["2024-07-25T18:35:43.010000"],["2024-07-25T18:35:44.010000"],["2024-07-25T18:35:45.010000"],["2024-07-25T18:35:46.010000"],["2024-07-25T18:35:47.010000"],["2024-07-25T18:35:48.010000"],["2024-07-25T18:35:49.010000"],["2024-07-25T18:35:50.010000"],["2024-07-25T18:35:51.010000"],["2024-07-25T18:35:52.010000"],["2024-07-25T18:35:53.010000"],["2024-07-25T18:35:54.010000"],["2024-07-25T18:35:55.010000"],["2024-07-25T18:35:56.010000"],["2024-07-25T18:35:57.010000"],["2024-07-25T18:35:58.010000"],["2024-07-25T18:35:59.010000"],["2024-07-25T18:36:00.010000"],["2024-07-25T18:36:01.010000"],["2024-07-25T18:36:02.010000"],["2024-07-25T18:36:03.010000"],["2024-07-25T18:36:04.010000"],["2024-07-25T18:36:05.010000"],["2024-07-25T18:36:06.010000"],["2024-07-25T18:36:07.010000"],["2024-07-25T18:36:08.010000"],["2024-07-25T18:36:09.010000"],["2024-07-25T18:36:10.010000"],["2024-07-25T18:36:11.010000"],["2024-07-25T18:36:12.010000"],["2024-07-25T18:36:13.010000"],["2024-07-25T18:36:14.010000"],["2024-07-25T18:36:15.010000"],["2024-07-25T18:36:16.010000"],["2024-07-25T18:36:17.010000"],["2024-07-25T18:36:18.010000"],["2024-07-25T18:36:19.010000"],["2024-07-25T18:36:20.010000"],["2024-07-25T18:36:21.010000"],["2024-07-25T18:36:22.010000"],["2024-07-25T18:36:23.010000"],["2024-07-25T18:36:24.010000"],["2024-07-25T18:36:25.010000"],["2024-07-25T18:36:26.010000"],["2024-07-25T18:36:27.010000"],["2024-07-25T18:36:28.010000"],["2024-07-25T18:36:29.010000"],["2024-07-25T18:36:30.010000"],["2024-07-25T18:36:31.010000"],["2024-07-25T18:36:32.010000"],["2024-07-25T18:36:33.010000"],["2024-07-25T18:36:34.010000"],["2024-07-25T18:36:35.010000"],["2024-07-25T18:36:36.010000"],["2024-07-25T18:36:37.010000"],["2024-07-25T18:36:38.010000"],["2024-07-25T18:36:39.010000"],["2024-07-25T18:36:40.010000"],["2024-07-25T18:36:41.010000"],["2024-07-25T18:36:42.010000"],["2024-07-25T18:36:43.010000"],["2024-07-25T18:36:44.010000"],["2024-07-25T18:36:45.010000"],["2024-07-25T18:36:46.010000"],["2024-07-25T18:36:47.010000"],["2024-07-25T18:36:48.010000"],["2024-07-25T18:36:49.010000"],["2024-07-25T18:36:50.010000"],["2024-07-25T18:36:51.010000"],["2024-07-25T18:36:52.010000"],["2024-07-25T18:36:53.010000"],["2024-07-25T18:36:54.010000"],["2024-07-25T18:36:55.010000"],["2024-07-25T18:36:56.010000"],["2024-07-25T18:36:57.010000"],["2024-07-25T18:36:58.010000"],["2024-07-25T18:36:59.010000"],["2024-07-25T18:37:00.010000"],["2024-07-25T18:37:01.010000"],["2024-07-25T18:37:02.010000"],["2024-07-25T18:37:03.010000"],["2024-07-25T18:37:04.010000"],["2024-07-25T18:37:05.010000"],["2024-07-25T18:37:06.010000"],["2024-07-25T18:37:07.010000"],["2024-07-25T18:37:08.010000"],["2024-07-25T18:37:09.010000"],["2024-07-25T18:37:10.010000"],["2024-07-25T18:37:11.010000"],["2024-07-25T18:37:12.010000"],["2024-07-25T18:37:13.010000"],["2024-07-25T18:37:14.010000"],["2024-07-25T18:37:15.010000"],["2024-07-25T18:37:16.010000"],["2024-07-25T18:37:17.010000"],["2024-07-25T18:37:18.010000"],["2024-07-25T18:37:19.010000"],["2024-07-25T18:37:20.010000"],["2024-07-25T18:37:21.010000"],["2024-07-25T18:37:22.010000"],["2024-07-25T18:37:23.010000"],["2024-07-25T18:37:24.010000"],["2024-07-25T18:37:25.010000"],["2024-07-25T18:37:26.010000"],["2024-07-25T18:37:27.010000"],["2024-07-25T18:37:28.010000"],["2024-07-25T18:37:29.010000"],["2024-07-25T18:37:30.010000"],["2024-07-25T18:37:31.010000"],["2024-07-25T18:37:32.010000"],["2024-07-25T18:37:33.010000"],["2024-07-25T18:37:34.010000"],["2024-07-25T18:37:35.010000"],["2024-07-25T18:37:36.010000"],["2024-07-25T18:37:37.010000"],["2024-07-25T18:37:38.010000"],["2024-07-25T18:37:39.010000"],["2024-07-25T18:37:40.010000"],["2024-07-25T18:37:41.010000"],["2024-07-25T18:37:42.010000"],["2024-07-25T18:37:43.010000"],["2024-07-25T18:37:44.010000"],["2024-07-25T18:37:45.010000"],["2024-07-25T18:37:46.010000"],["2024-07-25T18:37:47.010000"],["2024-07-25T18:37:48.010000"],["2024-07-25T18:37:49.010000"],["2024-07-25T18:37:50.010000"],["2024-07-25T18:37:51.010000"],["2024-07-25T18:37:52.010000"],["2024-07-25T18:37:53.010000"],["2024-07-25T18:37:54.010000"],["2024-07-25T18:37:55.010000"],["2024-07-25T18:37:56.010000"],["2024-07-25T18:37:57.010000"],["2024-07-25T18:37:58.010000"],["2024-07-25T18:37:59.010000"],["2024-07-25T18:38:00.010000"],["2024-07-25T18:38:01.010000"],["2024-07-25T18:38:02.010000"],["2024-07-25T18:38:03.010000"],["2024-07-25T18:38:04.010000"],["2024-07-25T18:38:05.010000"],["2024-07-25T18:38:06.010000"],["2024-07-25T18:38:07.010000"],["2024-07-25T18:38:08.010000"],["2024-07-25T18:38:09.010000"],["2024-07-25T18:38:10.010000"],["2024-07-25T18:38:11.010000"],["2024-07-25T18:38:12.010000"],["2024-07-25T18:38:13.010000"],["2024-07-25T18:38:14.010000"],["2024-07-25T18:38:15.010000"],["2024-07-25T18:38:16.010000"],["2024-07-25T18:38:17.010000"],["2024-07-25T18:38:18.010000"],["2024-07-25T18:38:19.010000"],["2024-07-25T18:38:20.010000"],["2024-07-25T18:38:21.010000"],["2024-07-25T18:38:22.010000"],["2024-07-25T18:38:23.010000"],["2024-07-25T18:38:24.010000"],["2024-07-25T18:38:25.010000"],["2024-07-25T18:38:26.010000"],["2024-07-25T18:38:27.010000"],["2024-07-25T18:38:28.010000"],["2024-07-25T18:38:29.010000"],["2024-07-25T18:38:30.010000"],["2024-07-25T18:38:31.010000"],["2024-07-25T18:38:32.010000"],["2024-07-25T18:38:33.010000"],["2024-07-25T18:38:34.010000"],["2024-07-25T18:38:35.010000"],["2024-07-25T18:38:36.010000"],["2024-07-25T18:38:37.010000"],["2024-07-25T18:38:38.010000"],["2024-07-25T18:38:39.010000"],["2024-07-25T18:38:40.010000"],["2024-07-25T18:38:41.010000"],["2024-07-25T18:38:42.010000"],["2024-07-25T18:38:43.010000"],["2024-07-25T18:38:44.010000"],["2024-07-25T18:38:45.010000"],["2024-07-25T18:38:46.010000"],["2024-07-25T18:38:47.010000"],["2024-07-25T18:38:48.010000"],["2024-07-25T18:38:49.010000"],["2024-07-25T18:38:50.010000"],["2024-07-25T18:38:51.010000"],["2024-07-25T18:38:52.010000"],["2024-07-25T18:38:53.010000"],["2024-07-25T18:38:54.010000"],["2024-07-25T18:38:55.010000"],["2024-07-25T18:38:56.010000"],["2024-07-25T18:38:57.010000"],["2024-07-25T18:38:58.010000"],["2024-07-25T18:38:59.010000"],["2024-07-25T18:39:00.010000"],["2024-07-25T18:39:01.010000"],["2024-07-25T18:39:02.010000"],["2024-07-25T18:39:03.010000"],["2024-07-25T18:39:04.010000"],["2024-07-25T18:39:05.010000"],["2024-07-25T18:39:06.010000"],["2024-07-25T18:39:07.010000"],["2024-07-25T18:39:08.010000"],["2024-07-25T18:39:09.010000"],["2024-07-25T18:39:10.010000"],["2024-07-25T18:39:11.010000"],["2024-07-25T18:39:12.010000"],["2024-07-25T18:39:13.010000"],["2024-07-25T18:39:14.010000"],["2024-07-25T18:39:15.010000"],["2024-07-25T18:39:16.010000"],["2024-07-25T18:39:17.010000"],["2024-07-25T18:39:18.010000"],["2024-07-25T18:39:19.010000"],["2024-07-25T18:39:20.010000"],["2024-07-25T18:39:21.010000"],["2024-07-25T18:39:22.010000"],["2024-07-25T18:39:23.010000"],["2024-07-25T18:39:24.010000"],["2024-07-25T18:39:25.010000"],["2024-07-25T18:39:26.010000"],["2024-07-25T18:39:27.010000"],["2024-07-25T18:39:28.010000"],["2024-07-25T18:39:29.010000"],["2024-07-25T18:39:30.010000"],["2024-07-25T18:39:31.010000"],["2024-07-25T18:39:32.010000"],["2024-07-25T18:39:33.010000"],["2024-07-25T18:39:34.010000"],["2024-07-25T18:39:35.010000"],["2024-07-25T18:39:36.010000"],["2024-07-25T18:39:37.010000"],["2024-07-25T18:39:38.010000"],["2024-07-25T18:39:39.010000"],["2024-07-25T18:39:40.010000"],["2024-07-25T18:39:41.010000"],["2024-07-25T18:39:42.010000"],["2024-07-25T18:39:43.010000"],["2024-07-25T18:39:44.010000"],["2024-07-25T18:39:45.010000"],["2024-07-25T18:39:46.010000"],["2024-07-25T18:39:47.010000"],["2024-07-25T18:39:48.010000"],["2024-07-25T18:39:49.010000"],["2024-07-25T18:39:50.010000"],["2024-07-25T18:39:51.010000"],["2024-07-25T18:39:52.010000"],["2024-07-25T18:39:53.010000"],["2024-07-25T18:39:54.010000"],["2024-07-25T18:39:55.010000"],["2024-07-25T18:39:56.010000"],["2024-07-25T18:39:57.010000"],["2024-07-25T18:39:58.010000"],["2024-07-25T18:39:59.010000"],["2024-07-25T18:40:00.010000"],["2024-07-25T18:40:01.010000"],["2024-07-25T18:40:02.010000"],["2024-07-25T18:40:03.010000"],["2024-07-25T18:40:04.010000"],["2024-07-25T18:40:05.010000"],["2024-07-25T18:40:06.010000"],["2024-07-25T18:40:07.010000"],["2024-07-25T18:40:08.010000"],["2024-07-25T18:40:09.010000"],["2024-07-25T18:40:10.010000"],["2024-07-25T18:40:11.010000"],["2024-07-25T18:40:12.010000"],["2024-07-25T18:40:13.010000"],["2024-07-25T18:40:14.010000"],["2024-07-25T18:40:15.010000"],["2024-07-25T18:40:16.010000"],["2024-07-25T18:40:17.010000"],["2024-07-25T18:40:18.010000"],["2024-07-25T18:40:19.010000"],["2024-07-25T18:40:20.010000"],["2024-07-25T18:40:21.010000"],["2024-07-25T18:40:22.010000"],["2024-07-25T18:40:23.010000"],["2024-07-25T18:40:24.010000"],["2024-07-25T18:40:25.010000"],["2024-07-25T18:40:26.010000"],["2024-07-25T18:40:27.010000"],["2024-07-25T18:40:28.010000"],["2024-07-25T18:40:29.010000"],["2024-07-25T18:40:30.010000"],["2024-07-25T18:40:31.010000"],["2024-07-25T18:40:32.010000"],["2024-07-25T18:40:33.010000"],["2024-07-25T18:40:34.010000"],["2024-07-25T18:40:35.010000"],["2024-07-25T18:40:36.010000"],["2024-07-25T18:40:37.010000"],["2024-07-25T18:40:38.010000"],["2024-07-25T18:40:39.010000"],["2024-07-25T18:40:40.010000"],["2024-07-25T18:40:41.010000"],["2024-07-25T18:40:42.010000"],["2024-07-25T18:40:43.010000"],["2024-07-25T18:40:44.010000"],["2024-07-25T18:40:45.010000"],["2024-07-25T18:40:46.010000"],["2024-07-25T18:40:47.010000"],["2024-07-25T18:40:48.010000"],["2024-07-25T18:40:49.010000"],["2024-07-25T18:40:50.010000"],["2024-07-25T18:40:51.010000"],["2024-07-25T18:40:52.010000"],["2024-07-25T18:40:53.010000"],["2024-07-25T18:40:54.010000"],["2024-07-25T18:40:55.010000"],["2024-07-25T18:40:56.010000"],["2024-07-25T18:40:57.010000"],["2024-07-25T18:40:58.010000"],["2024-07-25T18:40:59.010000"],["2024-07-25T18:41:00.010000"],["2024-07-25T18:41:01.010000"],["2024-07-25T18:41:02.010000"],["2024-07-25T18:41:03.010000"],["2024-07-25T18:41:04.010000"],["2024-07-25T18:41:05.010000"],["2024-07-25T18:41:06.010000"],["2024-07-25T18:41:07.010000"],["2024-07-25T18:41:08.010000"],["2024-07-25T18:41:09.010000"],["2024-07-25T18:41:10.010000"],["2024-07-25T18:41:11.010000"],["2024-07-25T18:41:12.010000"],["2024-07-25T18:41:13.010000"],["2024-07-25T18:41:14.010000"],["2024-07-25T18:41:15.010000"],["2024-07-25T18:41:16.010000"],["2024-07-25T18:41:17.010000"],["2024-07-25T18:41:18.010000"],["2024-07-25T18:41:19.010000"],["2024-07-25T18:41:20.010000"],["2024-07-25T18:41:21.010000"],["2024-07-25T18:41:22.010000"],["2024-07-25T18:41:23.010000"],["2024-07-25T18:41:24.010000"],["2024-07-25T18:41:25.010000"],["2024-07-25T18:41:26.010000"],["2024-07-25T18:41:27.010000"],["2024-07-25T18:41:28.010000"],["2024-07-25T18:41:29.010000"],["2024-07-25T18:41:30.010000"],["2024-07-25T18:41:31.010000"],["2024-07-25T18:41:32.010000"],["2024-07-25T18:41:33.010000"],["2024-07-25T18:41:34.010000"],["2024-07-25T18:41:35.010000"],["2024-07-25T18:41:36.010000"],["2024-07-25T18:41:37.010000"],["2024-07-25T18:41:38.010000"],["2024-07-25T18:41:39.010000"],["2024-07-25T18:41:40.010000"],["2024-07-25T18:41:41.010000"],["2024-07-25T18:41:42.010000"],["2024-07-25T18:41:43.010000"],["2024-07-25T18:41:44.010000"],["2024-07-25T18:41:45.010000"],["2024-07-25T18:41:46.010000"],["2024-07-25T18:41:47.010000"],["2024-07-25T18:41:48.010000"],["2024-07-25T18:41:49.010000"],["2024-07-25T18:41:50.010000"],["2024-07-25T18:41:51.010000"],["2024-07-25T18:41:52.010000"],["2024-07-25T18:41:53.010000"],["2024-07-25T18:41:54.010000"],["2024-07-25T18:41:55.010000"],["2024-07-25T18:41:56.010000"],["2024-07-25T18:41:57.010000"],["2024-07-25T18:41:58.010000"],["2024-07-25T18:41:59.010000"],["2024-07-25T18:42:00.010000"],["2024-07-25T18:42:01.010000"],["2024-07-25T18:42:02.010000"],["2024-07-25T18:42:03.010000"],["2024-07-25T18:42:04.010000"],["2024-07-25T18:42:05.010000"],["2024-07-25T18:42:06.010000"],["2024-07-25T18:42:07.010000"],["2024-07-25T18:42:08.010000"],["2024-07-25T18:42:09.010000"],["2024-07-25T18:42:10.010000"],["2024-07-25T18:42:11.010000"],["2024-07-25T18:42:12.010000"],["2024-07-25T18:42:13.010000"],["2024-07-25T18:42:14.010000"],["2024-07-25T18:42:15.010000"],["2024-07-25T18:42:16.010000"],["2024-07-25T18:42:17.010000"],["2024-07-25T18:42:18.010000"],["2024-07-25T18:42:19.010000"],["2024-07-25T18:42:20.010000"],["2024-07-25T18:42:21.010000"],["2024-07-25T18:42:22.010000"],["2024-07-25T18:42:23.010000"],["2024-07-25T18:42:24.010000"],["2024-07-25T18:42:25.010000"],["2024-07-25T18:42:26.010000"],["2024-07-25T18:42:27.010000"],["2024-07-25T18:42:28.010000"],["2024-07-25T18:42:29.010000"],["2024-07-25T18:42:30.010000"],["2024-07-25T18:42:31.010000"],["2024-07-25T18:42:32.010000"],["2024-07-25T18:42:33.010000"],["2024-07-25T18:42:34.010000"],["2024-07-25T18:42:35.010000"],["2024-07-25T18:42:36.010000"],["2024-07-25T18:42:37.010000"],["2024-07-25T18:42:38.010000"],["2024-07-25T18:42:39.010000"],["2024-07-25T18:42:40.010000"],["2024-07-25T18:42:41.010000"],["2024-07-25T18:42:42.010000"],["2024-07-25T18:42:43.010000"],["2024-07-25T18:42:44.010000"],["2024-07-25T18:42:45.010000"],["2024-07-25T18:42:46.010000"],["2024-07-25T18:42:47.010000"],["2024-07-25T18:42:48.010000"],["2024-07-25T18:42:49.010000"],["2024-07-25T18:42:50.010000"],["2024-07-25T18:42:51.010000"],["2024-07-25T18:42:52.010000"],["2024-07-25T18:42:53.010000"],["2024-07-25T18:42:54.010000"],["2024-07-25T18:42:55.010000"],["2024-07-25T18:42:56.010000"],["2024-07-25T18:42:57.010000"],["2024-07-25T18:42:58.010000"],["2024-07-25T18:42:59.010000"],["2024-07-25T18:43:00.010000"],["2024-07-25T18:43:01.010000"],["2024-07-25T18:43:02.010000"],["2024-07-25T18:43:03.010000"],["2024-07-25T18:43:04.010000"],["2024-07-25T18:43:05.010000"],["2024-07-25T18:43:06.010000"],["2024-07-25T18:43:07.010000"],["2024-07-25T18:43:08.010000"],["2024-07-25T18:43:09.010000"],["2024-07-25T18:43:10.010000"],["2024-07-25T18:43:11.010000"],["2024-07-25T18:43:12.010000"],["2024-07-25T18:43:13.010000"],["2024-07-25T18:43:14.010000"],["2024-07-25T18:43:15.010000"],["2024-07-25T18:43:16.010000"],["2024-07-25T18:43:17.010000"],["2024-07-25T18:43:18.010000"],["2024-07-25T18:43:19.010000"],["2024-07-25T18:43:20.010000"],["2024-07-25T18:43:21.010000"],["2024-07-25T18:43:22.010000"],["2024-07-25T18:43:23.010000"],["2024-07-25T18:43:24.010000"],["2024-07-25T18:43:25.010000"],["2024-07-25T18:43:26.010000"],["2024-07-25T18:43:27.010000"],["2024-07-25T18:43:28.010000"],["2024-07-25T18:43:29.010000"],["2024-07-25T18:43:30.010000"],["2024-07-25T18:43:31.010000"],["2024-07-25T18:43:32.010000"],["2024-07-25T18:43:33.010000"],["2024-07-25T18:43:34.010000"],["2024-07-25T18:43:35.010000"],["2024-07-25T18:43:36.010000"],["2024-07-25T18:43:37.010000"],["2024-07-25T18:43:38.010000"],["2024-07-25T18:43:39.010000"],["2024-07-25T18:43:40.010000"],["2024-07-25T18:43:41.010000"],["2024-07-25T18:43:42.010000"],["2024-07-25T18:43:43.010000"],["2024-07-25T18:43:44.010000"],["2024-07-25T18:43:45.010000"],["2024-07-25T18:43:46.010000"],["2024-07-25T18:43:47.010000"],["2024-07-25T18:43:48.010000"],["2024-07-25T18:43:49.010000"],["2024-07-25T18:43:50.010000"],["2024-07-25T18:43:51.010000"],["2024-07-25T18:43:52.010000"],["2024-07-25T18:43:53.010000"],["2024-07-25T18:43:54.010000"],["2024-07-25T18:43:55.010000"],["2024-07-25T18:43:56.010000"],["2024-07-25T18:43:57.010000"],["2024-07-25T18:43:58.010000"],["2024-07-25T18:43:59.010000"],["2024-07-25T18:44:00.010000"],["2024-07-25T18:44:01.010000"],["2024-07-25T18:44:02.010000"],["2024-07-25T18:44:03.010000"],["2024-07-25T18:44:04.010000"],["2024-07-25T18:44:05.010000"],["2024-07-25T18:44:06.010000"],["2024-07-25T18:44:07.010000"],["2024-07-25T18:44:08.010000"],["2024-07-25T18:44:09.010000"],["2024-07-25T18:44:10.010000"],["2024-07-25T18:44:11.010000"],["2024-07-25T18:44:12.010000"],["2024-07-25T18:44:13.010000"],["2024-07-25T18:44:14.010000"],["2024-07-25T18:44:15.010000"],["2024-07-25T18:44:16.010000"],["2024-07-25T18:44:17.010000"],["2024-07-25T18:44:18.010000"],["2024-07-25T18:44:19.010000"],["2024-07-25T18:44:20.010000"],["2024-07-25T18:44:21.010000"],["2024-07-25T18:44:22.010000"],["2024-07-25T18:44:23.010000"],["2024-07-25T18:44:24.010000"],["2024-07-25T18:44:25.010000"],["2024-07-25T18:44:26.010000"],["2024-07-25T18:44:27.010000"],["2024-07-25T18:44:28.010000"],["2024-07-25T18:44:29.010000"],["2024-07-25T18:44:30.010000"],["2024-07-25T18:44:31.010000"],["2024-07-25T18:44:32.010000"],["2024-07-25T18:44:33.010000"],["2024-07-25T18:44:34.010000"],["2024-07-25T18:44:35.010000"],["2024-07-25T18:44:36.010000"],["2024-07-25T18:44:37.010000"],["2024-07-25T18:44:38.010000"],["2024-07-25T18:44:39.010000"],["2024-07-25T18:44:40.010000"],["2024-07-25T18:44:41.010000"],["2024-07-25T18:44:42.010000"],["2024-07-25T18:44:43.010000"],["2024-07-25T18:44:44.010000"],["2024-07-25T18:44:45.010000"],["2024-07-25T18:44:46.010000"],["2024-07-25T18:44:47.010000"],["2024-07-25T18:44:48.010000"],["2024-07-25T18:44:49.010000"],["2024-07-25T18:44:50.010000"],["2024-07-25T18:44:51.010000"],["2024-07-25T18:44:52.010000"],["2024-07-25T18:44:53.010000"],["2024-07-25T18:44:54.010000"],["2024-07-25T18:44:55.010000"],["2024-07-25T18:44:56.010000"],["2024-07-25T18:44:57.010000"],["2024-07-25T18:44:58.010000"],["2024-07-25T18:44:59.010000"],["2024-07-25T18:45:00.010000"],["2024-07-25T18:45:01.010000"],["2024-07-25T18:45:02.010000"],["2024-07-25T18:45:03.010000"],["2024-07-25T18:45:04.010000"],["2024-07-25T18:45:05.010000"],["2024-07-25T18:45:06.010000"],["2024-07-25T18:45:07.010000"],["2024-07-25T18:45:08.010000"],["2024-07-25T18:45:09.010000"],["2024-07-25T18:45:10.010000"],["2024-07-25T18:45:11.010000"],["2024-07-25T18:45:12.010000"],["2024-07-25T18:45:13.010000"],["2024-07-25T18:45:14.010000"],["2024-07-25T18:45:15.010000"],["2024-07-25T18:45:16.010000"],["2024-07-25T18:45:17.010000"],["2024-07-25T18:45:18.010000"],["2024-07-25T18:45:19.010000"],["2024-07-25T18:45:20.010000"],["2024-07-25T18:45:21.010000"],["2024-07-25T18:45:22.010000"],["2024-07-25T18:45:23.010000"],["2024-07-25T18:45:24.010000"],["2024-07-25T18:45:25.010000"],["2024-07-25T18:45:26.010000"],["2024-07-25T18:45:27.010000"],["2024-07-25T18:45:28.010000"],["2024-07-25T18:45:29.010000"],["2024-07-25T18:45:30.010000"],["2024-07-25T18:45:31.010000"],["2024-07-25T18:45:32.010000"],["2024-07-25T18:45:33.010000"],["2024-07-25T18:45:34.010000"],["2024-07-25T18:45:35.010000"],["2024-07-25T18:45:36.010000"],["2024-07-25T18:45:37.010000"],["2024-07-25T18:45:38.010000"],["2024-07-25T18:45:39.010000"],["2024-07-25T18:45:40.010000"],["2024-07-25T18:45:41.010000"],["2024-07-25T18:45:42.010000"],["2024-07-25T18:45:43.010000"],["2024-07-25T18:45:44.010000"],["2024-07-25T18:45:45.010000"],["2024-07-25T18:45:46.010000"],["2024-07-25T18:45:47.010000"],["2024-07-25T18:45:48.010000"],["2024-07-25T18:45:49.010000"],["2024-07-25T18:45:50.010000"],["2024-07-25T18:45:51.010000"],["2024-07-25T18:45:52.010000"],["2024-07-25T18:45:53.010000"],["2024-07-25T18:45:54.010000"],["2024-07-25T18:45:55.010000"],["2024-07-25T18:45:56.010000"],["2024-07-25T18:45:57.010000"],["2024-07-25T18:45:58.010000"],["2024-07-25T18:45:59.010000"],["2024-07-25T18:46:00.010000"],["2024-07-25T18:46:01.010000"],["2024-07-25T18:46:02.010000"],["2024-07-25T18:46:03.010000"],["2024-07-25T18:46:04.010000"],["2024-07-25T18:46:05.010000"],["2024-07-25T18:46:06.010000"],["2024-07-25T18:46:07.010000"],["2024-07-25T18:46:08.010000"],["2024-07-25T18:46:09.010000"],["2024-07-25T18:46:10.010000"],["2024-07-25T18:46:11.010000"],["2024-07-25T18:46:12.010000"],["2024-07-25T18:46:13.010000"],["2024-07-25T18:46:14.010000"],["2024-07-25T18:46:15.010000"],["2024-07-25T18:46:16.010000"],["2024-07-25T18:46:17.010000"],["2024-07-25T18:46:18.010000"],["2024-07-25T18:46:19.010000"],["2024-07-25T18:46:20.010000"],["2024-07-25T18:46:21.010000"],["2024-07-25T18:46:22.010000"],["2024-07-25T18:46:23.010000"],["2024-07-25T18:46:24.010000"],["2024-07-25T18:46:25.010000"],["2024-07-25T18:46:26.010000"],["2024-07-25T18:46:27.010000"],["2024-07-25T18:46:28.010000"],["2024-07-25T18:46:29.010000"],["2024-07-25T18:46:30.010000"],["2024-07-25T18:46:31.010000"],["2024-07-25T18:46:32.010000"],["2024-07-25T18:46:33.010000"],["2024-07-25T18:46:34.010000"],["2024-07-25T18:46:35.010000"],["2024-07-25T18:46:36.010000"],["2024-07-25T18:46:37.010000"],["2024-07-25T18:46:38.010000"],["2024-07-25T18:46:39.010000"],["2024-07-25T18:46:40.010000"],["2024-07-25T18:46:41.010000"],["2024-07-25T18:46:42.010000"],["2024-07-25T18:46:43.010000"],["2024-07-25T18:46:44.010000"],["2024-07-25T18:46:45.010000"],["2024-07-25T18:46:46.010000"],["2024-07-25T18:46:47.010000"],["2024-07-25T18:46:48.010000"],["2024-07-25T18:46:49.010000"],["2024-07-25T18:46:50.010000"],["2024-07-25T18:46:51.010000"],["2024-07-25T18:46:52.010000"],["2024-07-25T18:46:53.010000"],["2024-07-25T18:46:54.010000"],["2024-07-25T18:46:55.010000"],["2024-07-25T18:46:56.010000"],["2024-07-25T18:46:57.010000"],["2024-07-25T18:46:58.010000"],["2024-07-25T18:46:59.010000"],["2024-07-25T18:47:00.010000"],["2024-07-25T18:47:01.010000"],["2024-07-25T18:47:02.010000"],["2024-07-25T18:47:03.010000"],["2024-07-25T18:47:04.010000"],["2024-07-25T18:47:05.010000"],["2024-07-25T18:47:06.010000"],["2024-07-25T18:47:07.010000"],["2024-07-25T18:47:08.010000"],["2024-07-25T18:47:09.010000"],["2024-07-25T18:47:10.010000"],["2024-07-25T18:47:11.010000"],["2024-07-25T18:47:12.010000"],["2024-07-25T18:47:13.010000"],["2024-07-25T18:47:14.010000"],["2024-07-25T18:47:15.010000"],["2024-07-25T18:47:16.010000"],["2024-07-25T18:47:17.010000"],["2024-07-25T18:47:18.010000"],["2024-07-25T18:47:19.010000"],["2024-07-25T18:47:20.010000"],["2024-07-25T18:47:21.010000"],["2024-07-25T18:47:22.010000"],["2024-07-25T18:47:23.010000"],["2024-07-25T18:47:24.010000"],["2024-07-25T18:47:25.010000"],["2024-07-25T18:47:26.010000"],["2024-07-25T18:47:27.010000"],["2024-07-25T18:47:28.010000"],["2024-07-25T18:47:29.010000"],["2024-07-25T18:47:30.010000"],["2024-07-25T18:47:31.010000"],["2024-07-25T18:47:32.010000"],["2024-07-25T18:47:33.010000"],["2024-07-25T18:47:34.010000"],["2024-07-25T18:47:35.010000"],["2024-07-25T18:47:36.010000"],["2024-07-25T18:47:37.010000"],["2024-07-25T18:47:38.010000"],["2024-07-25T18:47:39.010000"],["2024-07-25T18:47:40.010000"],["2024-07-25T18:47:41.010000"],["2024-07-25T18:47:42.010000"],["2024-07-25T18:47:43.010000"],["2024-07-25T18:47:44.010000"],["2024-07-25T18:47:45.010000"],["2024-07-25T18:47:46.010000"],["2024-07-25T18:47:47.010000"],["2024-07-25T18:47:48.010000"],["2024-07-25T18:47:49.010000"],["2024-07-25T18:47:50.010000"],["2024-07-25T18:47:51.010000"],["2024-07-25T18:47:52.010000"],["2024-07-25T18:47:53.010000"],["2024-07-25T18:47:54.010000"],["2024-07-25T18:47:55.010000"],["2024-07-25T18:47:56.010000"],["2024-07-25T18:47:57.010000"],["2024-07-25T18:47:58.010000"],["2024-07-25T18:47:59.010000"],["2024-07-25T18:48:00.010000"],["2024-07-25T18:48:01.010000"],["2024-07-25T18:48:02.010000"],["2024-07-25T18:48:03.010000"],["2024-07-25T18:48:04.010000"],["2024-07-25T18:48:05.010000"],["2024-07-25T18:48:06.010000"],["2024-07-25T18:48:07.010000"],["2024-07-25T18:48:08.010000"],["2024-07-25T18:48:09.010000"],["2024-07-25T18:48:10.010000"],["2024-07-25T18:48:11.010000"],["2024-07-25T18:48:12.010000"],["2024-07-25T18:48:13.010000"],["2024-07-25T18:48:14.010000"],["2024-07-25T18:48:15.010000"],["2024-07-25T18:48:16.010000"],["2024-07-25T18:48:17.010000"],["2024-07-25T18:48:18.010000"],["2024-07-25T18:48:19.010000"],["2024-07-25T18:48:20.010000"],["2024-07-25T18:48:21.010000"],["2024-07-25T18:48:22.010000"],["2024-07-25T18:48:23.010000"],["2024-07-25T18:48:24.010000"],["2024-07-25T18:48:25.010000"],["2024-07-25T18:48:26.010000"],["2024-07-25T18:48:27.010000"],["2024-07-25T18:48:28.010000"],["2024-07-25T18:48:29.010000"],["2024-07-25T18:48:30.010000"],["2024-07-25T18:48:31.010000"],["2024-07-25T18:48:32.010000"],["2024-07-25T18:48:33.010000"],["2024-07-25T18:48:34.010000"],["2024-07-25T18:48:35.010000"],["2024-07-25T18:48:36.010000"],["2024-07-25T18:48:37.010000"],["2024-07-25T18:48:38.010000"],["2024-07-25T18:48:39.010000"],["2024-07-25T18:48:40.010000"],["2024-07-25T18:48:41.010000"],["2024-07-25T18:48:42.010000"],["2024-07-25T18:48:43.010000"],["2024-07-25T18:48:44.010000"],["2024-07-25T18:48:45.010000"],["2024-07-25T18:48:46.010000"],["2024-07-25T18:48:47.010000"],["2024-07-25T18:48:48.010000"],["2024-07-25T18:48:49.010000"],["2024-07-25T18:48:50.010000"],["2024-07-25T18:48:51.010000"],["2024-07-25T18:48:52.010000"],["2024-07-25T18:48:53.010000"],["2024-07-25T18:48:54.010000"],["2024-07-25T18:48:55.010000"],["2024-07-25T18:48:56.010000"],["2024-07-25T18:48:57.010000"],["2024-07-25T18:48:58.010000"],["2024-07-25T18:48:59.010000"],["2024-07-25T18:49:00.010000"],["2024-07-25T18:49:01.010000"],["2024-07-25T18:49:02.010000"],["2024-07-25T18:49:03.010000"],["2024-07-25T18:49:04.010000"],["2024-07-25T18:49:05.010000"],["2024-07-25T18:49:06.010000"],["2024-07-25T18:49:07.010000"],["2024-07-25T18:49:08.010000"],["2024-07-25T18:49:09.010000"],["2024-07-25T18:49:10.010000"],["2024-07-25T18:49:11.010000"],["2024-07-25T18:49:12.010000"],["2024-07-25T18:49:13.010000"],["2024-07-25T18:49:14.010000"],["2024-07-25T18:49:15.010000"],["2024-07-25T18:49:16.010000"],["2024-07-25T18:49:17.010000"],["2024-07-25T18:49:18.010000"],["2024-07-25T18:49:19.010000"],["2024-07-25T18:49:20.010000"],["2024-07-25T18:49:21.010000"],["2024-07-25T18:49:22.010000"],["2024-07-25T18:49:23.010000"],["2024-07-25T18:49:24.010000"],["2024-07-25T18:49:25.010000"],["2024-07-25T18:49:26.010000"],["2024-07-25T18:49:27.010000"],["2024-07-25T18:49:28.010000"],["2024-07-25T18:49:29.010000"],["2024-07-25T18:49:30.010000"],["2024-07-25T18:49:31.010000"],["2024-07-25T18:49:32.010000"],["2024-07-25T18:49:33.010000"],["2024-07-25T18:49:34.010000"],["2024-07-25T18:49:35.010000"],["2024-07-25T18:49:36.010000"],["2024-07-25T18:49:37.010000"],["2024-07-25T18:49:38.010000"],["2024-07-25T18:49:39.010000"],["2024-07-25T18:49:40.010000"],["2024-07-25T18:49:41.010000"],["2024-07-25T18:49:42.010000"],["2024-07-25T18:49:43.010000"],["2024-07-25T18:49:44.010000"],["2024-07-25T18:49:45.010000"],["2024-07-25T18:49:46.010000"],["2024-07-25T18:49:47.010000"],["2024-07-25T18:49:48.010000"],["2024-07-25T18:49:49.010000"],["2024-07-25T18:49:50.010000"],["2024-07-25T18:49:51.010000"],["2024-07-25T18:49:52.010000"],["2024-07-25T18:49:53.010000"],["2024-07-25T18:49:54.010000"],["2024-07-25T18:49:55.010000"],["2024-07-25T18:49:56.010000"],["2024-07-25T18:49:57.010000"],["2024-07-25T18:49:58.010000"],["2024-07-25T18:49:59.010000"],["2024-07-25T18:50:00.010000"],["2024-07-25T18:50:01.010000"],["2024-07-25T18:50:02.010000"],["2024-07-25T18:50:03.010000"],["2024-07-25T18:50:04.010000"],["2024-07-25T18:50:05.010000"],["2024-07-25T18:50:06.010000"],["2024-07-25T18:50:07.010000"],["2024-07-25T18:50:08.010000"],["2024-07-25T18:50:09.010000"],["2024-07-25T18:50:10.010000"],["2024-07-25T18:50:11.010000"],["2024-07-25T18:50:12.010000"],["2024-07-25T18:50:13.010000"],["2024-07-25T18:50:14.010000"],["2024-07-25T18:50:15.010000"],["2024-07-25T18:50:16.010000"],["2024-07-25T18:50:17.010000"],["2024-07-25T18:50:18.010000"],["2024-07-25T18:50:19.010000"],["2024-07-25T18:50:20.010000"],["2024-07-25T18:50:21.010000"],["2024-07-25T18:50:22.010000"],["2024-07-25T18:50:23.010000"],["2024-07-25T18:50:24.010000"],["2024-07-25T18:50:25.010000"],["2024-07-25T18:50:26.010000"],["2024-07-25T18:50:27.010000"],["2024-07-25T18:50:28.010000"],["2024-07-25T18:50:29.010000"],["2024-07-25T18:50:30.010000"],["2024-07-25T18:50:31.010000"],["2024-07-25T18:50:32.010000"],["2024-07-25T18:50:33.010000"],["2024-07-25T18:50:34.010000"],["2024-07-25T18:50:35.010000"],["2024-07-25T18:50:36.010000"],["2024-07-25T18:50:37.010000"],["2024-07-25T18:50:38.010000"],["2024-07-25T18:50:39.010000"],["2024-07-25T18:50:40.010000"],["2024-07-25T18:50:41.010000"],["2024-07-25T18:50:42.010000"],["2024-07-25T18:50:43.010000"],["2024-07-25T18:50:44.010000"],["2024-07-25T18:50:45.010000"],["2024-07-25T18:50:46.010000"],["2024-07-25T18:50:47.010000"],["2024-07-25T18:50:48.010000"],["2024-07-25T18:50:49.010000"],["2024-07-25T18:50:50.010000"],["2024-07-25T18:50:51.010000"],["2024-07-25T18:50:52.010000"],["2024-07-25T18:50:53.010000"],["2024-07-25T18:50:54.010000"],["2024-07-25T18:50:55.010000"],["2024-07-25T18:50:56.010000"],["2024-07-25T18:50:57.010000"],["2024-07-25T18:50:58.010000"],["2024-07-25T18:50:59.010000"],["2024-07-25T18:51:00.010000"],["2024-07-25T18:51:01.010000"],["2024-07-25T18:51:02.010000"],["2024-07-25T18:51:03.010000"],["2024-07-25T18:51:04.010000"],["2024-07-25T18:51:05.010000"],["2024-07-25T18:51:06.010000"],["2024-07-25T18:51:07.010000"],["2024-07-25T18:51:08.010000"],["2024-07-25T18:51:09.010000"],["2024-07-25T18:51:10.010000"],["2024-07-25T18:51:11.010000"],["2024-07-25T18:51:12.010000"],["2024-07-25T18:51:13.010000"],["2024-07-25T18:51:14.010000"],["2024-07-25T18:51:15.010000"],["2024-07-25T18:51:16.010000"],["2024-07-25T18:51:17.010000"],["2024-07-25T18:51:18.010000"],["2024-07-25T18:51:19.010000"],["2024-07-25T18:51:20.010000"],["2024-07-25T18:51:21.010000"],["2024-07-25T18:51:22.010000"],["2024-07-25T18:51:23.010000"],["2024-07-25T18:51:24.010000"],["2024-07-25T18:51:25.010000"],["2024-07-25T18:51:26.010000"],["2024-07-25T18:51:27.010000"],["2024-07-25T18:51:28.010000"],["2024-07-25T18:51:29.010000"],["2024-07-25T18:51:30.010000"],["2024-07-25T18:51:31.010000"],["2024-07-25T18:51:32.010000"],["2024-07-25T18:51:33.010000"],["2024-07-25T18:51:34.010000"],["2024-07-25T18:51:35.010000"],["2024-07-25T18:51:36.010000"],["2024-07-25T18:51:37.010000"],["2024-07-25T18:51:38.010000"],["2024-07-25T18:51:39.010000"],["2024-07-25T18:51:40.010000"],["2024-07-25T18:51:41.010000"],["2024-07-25T18:51:42.010000"],["2024-07-25T18:51:43.010000"],["2024-07-25T18:51:44.010000"],["2024-07-25T18:51:45.010000"],["2024-07-25T18:51:46.010000"],["2024-07-25T18:51:47.010000"],["2024-07-25T18:51:48.010000"],["2024-07-25T18:51:49.010000"],["2024-07-25T18:51:50.010000"],["2024-07-25T18:51:51.010000"],["2024-07-25T18:51:52.010000"],["2024-07-25T18:51:53.010000"],["2024-07-25T18:51:54.010000"],["2024-07-25T18:51:55.010000"],["2024-07-25T18:51:56.010000"],["2024-07-25T18:51:57.010000"],["2024-07-25T18:51:58.010000"],["2024-07-25T18:51:59.010000"],["2024-07-25T18:52:00.010000"],["2024-07-25T18:52:01.010000"],["2024-07-25T18:52:02.010000"],["2024-07-25T18:52:03.010000"],["2024-07-25T18:52:04.010000"],["2024-07-25T18:52:05.010000"],["2024-07-25T18:52:06.010000"],["2024-07-25T18:52:07.010000"],["2024-07-25T18:52:08.010000"],["2024-07-25T18:52:09.010000"],["2024-07-25T18:52:10.010000"],["2024-07-25T18:52:11.010000"],["2024-07-25T18:52:12.010000"],["2024-07-25T18:52:13.010000"],["2024-07-25T18:52:14.010000"],["2024-07-25T18:52:15.010000"],["2024-07-25T18:52:16.010000"],["2024-07-25T18:52:17.010000"],["2024-07-25T18:52:18.010000"],["2024-07-25T18:52:19.010000"],["2024-07-25T18:52:20.010000"],["2024-07-25T18:52:21.010000"],["2024-07-25T18:52:22.010000"],["2024-07-25T18:52:23.010000"],["2024-07-25T18:52:24.010000"],["2024-07-25T18:52:25.010000"],["2024-07-25T18:52:26.010000"],["2024-07-25T18:52:27.010000"],["2024-07-25T18:52:28.010000"],["2024-07-25T18:52:29.010000"],["2024-07-25T18:52:30.010000"],["2024-07-25T18:52:31.010000"],["2024-07-25T18:52:32.010000"],["2024-07-25T18:52:33.010000"],["2024-07-25T18:52:34.010000"],["2024-07-25T18:52:35.010000"],["2024-07-25T18:52:36.010000"],["2024-07-25T18:52:37.010000"],["2024-07-25T18:52:38.010000"],["2024-07-25T18:52:39.010000"],["2024-07-25T18:52:40.010000"],["2024-07-25T18:52:41.010000"],["2024-07-25T18:52:42.010000"],["2024-07-25T18:52:43.010000"],["2024-07-25T18:52:44.010000"],["2024-07-25T18:52:45.010000"],["2024-07-25T18:52:46.010000"],["2024-07-25T18:52:47.010000"],["2024-07-25T18:52:48.010000"],["2024-07-25T18:52:49.010000"],["2024-07-25T18:52:50.010000"],["2024-07-25T18:52:51.010000"],["2024-07-25T18:52:52.010000"],["2024-07-25T18:52:53.010000"],["2024-07-25T18:52:54.010000"],["2024-07-25T18:52:55.010000"],["2024-07-25T18:52:56.010000"],["2024-07-25T18:52:57.010000"],["2024-07-25T18:52:58.010000"],["2024-07-25T18:52:59.010000"],["2024-07-25T18:53:00.010000"],["2024-07-25T18:53:01.010000"],["2024-07-25T18:53:02.010000"],["2024-07-25T18:53:03.010000"],["2024-07-25T18:53:04.010000"],["2024-07-25T18:53:05.010000"],["2024-07-25T18:53:06.010000"],["2024-07-25T18:53:07.010000"],["2024-07-25T18:53:08.010000"],["2024-07-25T18:53:09.010000"],["2024-07-25T18:53:10.010000"],["2024-07-25T18:53:11.010000"],["2024-07-25T18:53:12.010000"],["2024-07-25T18:53:13.010000"],["2024-07-25T18:53:14.010000"],["2024-07-25T18:53:15.010000"],["2024-07-25T18:53:16.010000"],["2024-07-25T18:53:17.010000"],["2024-07-25T18:53:18.010000"],["2024-07-25T18:53:19.010000"],["2024-07-25T18:53:20.010000"],["2024-07-25T18:53:21.010000"],["2024-07-25T18:53:22.010000"],["2024-07-25T18:53:23.010000"],["2024-07-25T18:53:24.010000"],["2024-07-25T18:53:25.010000"],["2024-07-25T18:53:26.010000"],["2024-07-25T18:53:27.010000"],["2024-07-25T18:53:28.010000"],["2024-07-25T18:53:29.010000"],["2024-07-25T18:53:30.010000"],["2024-07-25T18:53:31.010000"],["2024-07-25T18:53:32.010000"],["2024-07-25T18:53:33.010000"],["2024-07-25T18:53:34.010000"],["2024-07-25T18:53:35.010000"],["2024-07-25T18:53:36.010000"],["2024-07-25T18:53:37.010000"],["2024-07-25T18:53:38.010000"],["2024-07-25T18:53:39.010000"],["2024-07-25T18:53:40.010000"],["2024-07-25T18:53:41.010000"],["2024-07-25T18:53:42.010000"],["2024-07-25T18:53:43.010000"],["2024-07-25T18:53:44.010000"],["2024-07-25T18:53:45.010000"],["2024-07-25T18:53:46.010000"],["2024-07-25T18:53:47.010000"],["2024-07-25T18:53:48.010000"],["2024-07-25T18:53:49.010000"],["2024-07-25T18:53:50.010000"],["2024-07-25T18:53:51.010000"],["2024-07-25T18:53:52.010000"],["2024-07-25T18:53:53.010000"],["2024-07-25T18:53:54.010000"],["2024-07-25T18:53:55.010000"],["2024-07-25T18:53:56.010000"],["2024-07-25T18:53:57.010000"],["2024-07-25T18:53:58.010000"],["2024-07-25T18:53:59.010000"],["2024-07-25T18:54:00.010000"],["2024-07-25T18:54:01.010000"],["2024-07-25T18:54:02.010000"],["2024-07-25T18:54:03.010000"],["2024-07-25T18:54:04.010000"],["2024-07-25T18:54:05.010000"],["2024-07-25T18:54:06.010000"],["2024-07-25T18:54:07.010000"],["2024-07-25T18:54:08.010000"],["2024-07-25T18:54:09.010000"],["2024-07-25T18:54:10.010000"],["2024-07-25T18:54:11.010000"],["2024-07-25T18:54:12.010000"],["2024-07-25T18:54:13.010000"],["2024-07-25T18:54:14.010000"],["2024-07-25T18:54:15.010000"],["2024-07-25T18:54:16.010000"],["2024-07-25T18:54:17.010000"],["2024-07-25T18:54:18.010000"],["2024-07-25T18:54:19.010000"],["2024-07-25T18:54:20.010000"],["2024-07-25T18:54:21.010000"],["2024-07-25T18:54:22.010000"],["2024-07-25T18:54:23.010000"],["2024-07-25T18:54:24.010000"],["2024-07-25T18:54:25.010000"],["2024-07-25T18:54:26.010000"],["2024-07-25T18:54:27.010000"],["2024-07-25T18:54:28.010000"],["2024-07-25T18:54:29.010000"],["2024-07-25T18:54:30.010000"],["2024-07-25T18:54:31.010000"],["2024-07-25T18:54:32.010000"],["2024-07-25T18:54:33.010000"],["2024-07-25T18:54:34.010000"],["2024-07-25T18:54:35.010000"],["2024-07-25T18:54:36.010000"],["2024-07-25T18:54:37.010000"],["2024-07-25T18:54:38.010000"],["2024-07-25T18:54:39.010000"],["2024-07-25T18:54:40.010000"],["2024-07-25T18:54:41.010000"],["2024-07-25T18:54:42.010000"],["2024-07-25T18:54:43.010000"],["2024-07-25T18:54:44.010000"],["2024-07-25T18:54:45.010000"],["2024-07-25T18:54:46.010000"],["2024-07-25T18:54:47.010000"],["2024-07-25T18:54:48.010000"],["2024-07-25T18:54:49.010000"],["2024-07-25T18:54:50.010000"],["2024-07-25T18:54:51.010000"],["2024-07-25T18:54:52.010000"],["2024-07-25T18:54:53.010000"],["2024-07-25T18:54:54.010000"],["2024-07-25T18:54:55.010000"],["2024-07-25T18:54:56.010000"],["2024-07-25T18:54:57.010000"],["2024-07-25T18:54:58.010000"],["2024-07-25T18:54:59.010000"],["2024-07-25T18:55:00.010000"],["2024-07-25T18:55:01.010000"],["2024-07-25T18:55:02.010000"],["2024-07-25T18:55:03.010000"],["2024-07-25T18:55:04.010000"],["2024-07-25T18:55:05.010000"],["2024-07-25T18:55:06.010000"],["2024-07-25T18:55:07.010000"],["2024-07-25T18:55:08.010000"],["2024-07-25T18:55:09.010000"],["2024-07-25T18:55:10.010000"],["2024-07-25T18:55:11.010000"],["2024-07-25T18:55:12.010000"],["2024-07-25T18:55:13.010000"],["2024-07-25T18:55:14.010000"],["2024-07-25T18:55:15.010000"],["2024-07-25T18:55:16.010000"],["2024-07-25T18:55:17.010000"],["2024-07-25T18:55:18.010000"],["2024-07-25T18:55:19.010000"],["2024-07-25T18:55:20.010000"],["2024-07-25T18:55:21.010000"],["2024-07-25T18:55:22.010000"],["2024-07-25T18:55:23.010000"],["2024-07-25T18:55:24.010000"],["2024-07-25T18:55:25.010000"],["2024-07-25T18:55:26.010000"],["2024-07-25T18:55:27.010000"],["2024-07-25T18:55:28.010000"],["2024-07-25T18:55:29.010000"],["2024-07-25T18:55:30.010000"],["2024-07-25T18:55:31.010000"],["2024-07-25T18:55:32.010000"],["2024-07-25T18:55:33.010000"],["2024-07-25T18:55:34.010000"],["2024-07-25T18:55:35.010000"],["2024-07-25T18:55:36.010000"],["2024-07-25T18:55:37.010000"],["2024-07-25T18:55:38.010000"],["2024-07-25T18:55:39.010000"],["2024-07-25T18:55:40.010000"],["2024-07-25T18:55:41.010000"],["2024-07-25T18:55:42.010000"],["2024-07-25T18:55:43.010000"],["2024-07-25T18:55:44.010000"],["2024-07-25T18:55:45.010000"],["2024-07-25T18:55:46.010000"],["2024-07-25T18:55:47.010000"],["2024-07-25T18:55:48.010000"],["2024-07-25T18:55:49.010000"],["2024-07-25T18:55:50.010000"],["2024-07-25T18:55:51.010000"],["2024-07-25T18:55:52.010000"],["2024-07-25T18:55:53.010000"],["2024-07-25T18:55:54.010000"],["2024-07-25T18:55:55.010000"],["2024-07-25T18:55:56.010000"],["2024-07-25T18:55:57.010000"],["2024-07-25T18:55:58.010000"],["2024-07-25T18:55:59.010000"],["2024-07-25T18:56:00.010000"],["2024-07-25T18:56:01.010000"],["2024-07-25T18:56:02.010000"],["2024-07-25T18:56:03.010000"],["2024-07-25T18:56:04.010000"],["2024-07-25T18:56:05.010000"],["2024-07-25T18:56:06.010000"],["2024-07-25T18:56:07.010000"],["2024-07-25T18:56:08.010000"],["2024-07-25T18:56:09.010000"],["2024-07-25T18:56:10.010000"],["2024-07-25T18:56:11.010000"],["2024-07-25T18:56:12.010000"],["2024-07-25T18:56:13.010000"],["2024-07-25T18:56:14.010000"],["2024-07-25T18:56:15.010000"],["2024-07-25T18:56:16.010000"],["2024-07-25T18:56:17.010000"],["2024-07-25T18:56:18.010000"],["2024-07-25T18:56:19.010000"],["2024-07-25T18:56:20.010000"],["2024-07-25T18:56:21.010000"],["2024-07-25T18:56:22.010000"],["2024-07-25T18:56:23.010000"],["2024-07-25T18:56:24.010000"],["2024-07-25T18:56:25.010000"],["2024-07-25T18:56:26.010000"],["2024-07-25T18:56:27.010000"],["2024-07-25T18:56:28.010000"],["2024-07-25T18:56:29.010000"],["2024-07-25T18:56:30.010000"],["2024-07-25T18:56:31.010000"],["2024-07-25T18:56:32.010000"],["2024-07-25T18:56:33.010000"],["2024-07-25T18:56:34.010000"],["2024-07-25T18:56:35.010000"],["2024-07-25T18:56:36.010000"],["2024-07-25T18:56:37.010000"],["2024-07-25T18:56:38.010000"],["2024-07-25T18:56:39.010000"],["2024-07-25T18:56:40.010000"],["2024-07-25T18:56:41.010000"],["2024-07-25T18:56:42.010000"],["2024-07-25T18:56:43.010000"],["2024-07-25T18:56:44.010000"],["2024-07-25T18:56:45.010000"],["2024-07-25T18:56:46.010000"],["2024-07-25T18:56:47.010000"],["2024-07-25T18:56:48.010000"],["2024-07-25T18:56:49.010000"],["2024-07-25T18:56:50.010000"],["2024-07-25T18:56:51.010000"],["2024-07-25T18:56:52.010000"],["2024-07-25T18:56:53.010000"],["2024-07-25T18:56:54.010000"],["2024-07-25T18:56:55.010000"],["2024-07-25T18:56:56.010000"],["2024-07-25T18:56:57.010000"],["2024-07-25T18:56:58.010000"],["2024-07-25T18:56:59.010000"],["2024-07-25T18:57:00.010000"],["2024-07-25T18:57:01.010000"],["2024-07-25T18:57:02.010000"],["2024-07-25T18:57:03.010000"],["2024-07-25T18:57:04.010000"],["2024-07-25T18:57:05.010000"],["2024-07-25T18:57:06.010000"],["2024-07-25T18:57:07.010000"],["2024-07-25T18:57:08.010000"],["2024-07-25T18:57:09.010000"],["2024-07-25T18:57:10.010000"],["2024-07-25T18:57:11.010000"],["2024-07-25T18:57:12.010000"],["2024-07-25T18:57:13.010000"],["2024-07-25T18:57:14.010000"],["2024-07-25T18:57:15.010000"],["2024-07-25T18:57:16.010000"],["2024-07-25T18:57:17.010000"],["2024-07-25T18:57:18.010000"],["2024-07-25T18:57:19.010000"],["2024-07-25T18:57:20.010000"],["2024-07-25T18:57:21.010000"],["2024-07-25T18:57:22.010000"],["2024-07-25T18:57:23.010000"],["2024-07-25T18:57:24.010000"],["2024-07-25T18:57:25.010000"],["2024-07-25T18:57:26.010000"],["2024-07-25T18:57:27.010000"],["2024-07-25T18:57:28.010000"],["2024-07-25T18:57:29.010000"],["2024-07-25T18:57:30.010000"],["2024-07-25T18:57:31.010000"],["2024-07-25T18:57:32.010000"],["2024-07-25T18:57:33.010000"],["2024-07-25T18:57:34.010000"],["2024-07-25T18:57:35.010000"],["2024-07-25T18:57:36.010000"],["2024-07-25T18:57:37.010000"],["2024-07-25T18:57:38.010000"],["2024-07-25T18:57:39.010000"],["2024-07-25T18:57:40.010000"],["2024-07-25T18:57:41.010000"],["2024-07-25T18:57:42.010000"],["2024-07-25T18:57:43.010000"],["2024-07-25T18:57:44.010000"],["2024-07-25T18:57:45.010000"],["2024-07-25T18:57:46.010000"],["2024-07-25T18:57:47.010000"],["2024-07-25T18:57:48.010000"],["2024-07-25T18:57:49.010000"],["2024-07-25T18:57:50.010000"],["2024-07-25T18:57:51.010000"],["2024-07-25T18:57:52.010000"],["2024-07-25T18:57:53.010000"],["2024-07-25T18:57:54.010000"],["2024-07-25T18:57:55.010000"],["2024-07-25T18:57:56.010000"],["2024-07-25T18:57:57.010000"],["2024-07-25T18:57:58.010000"],["2024-07-25T18:57:59.010000"],["2024-07-25T18:58:00.010000"],["2024-07-25T18:58:01.010000"],["2024-07-25T18:58:02.010000"],["2024-07-25T18:58:03.010000"],["2024-07-25T18:58:04.010000"],["2024-07-25T18:58:05.010000"],["2024-07-25T18:58:06.010000"],["2024-07-25T18:58:07.010000"],["2024-07-25T18:58:08.010000"],["2024-07-25T18:58:09.010000"],["2024-07-25T18:58:10.010000"],["2024-07-25T18:58:11.010000"],["2024-07-25T18:58:12.010000"],["2024-07-25T18:58:13.010000"],["2024-07-25T18:58:14.010000"],["2024-07-25T18:58:15.010000"],["2024-07-25T18:58:16.010000"],["2024-07-25T18:58:17.010000"],["2024-07-25T18:58:18.010000"],["2024-07-25T18:58:19.010000"],["2024-07-25T18:58:20.010000"],["2024-07-25T18:58:21.010000"],["2024-07-25T18:58:22.010000"],["2024-07-25T18:58:23.010000"],["2024-07-25T18:58:24.010000"],["2024-07-25T18:58:25.010000"],["2024-07-25T18:58:26.010000"],["2024-07-25T18:58:27.010000"],["2024-07-25T18:58:28.010000"],["2024-07-25T18:58:29.010000"],["2024-07-25T18:58:30.010000"],["2024-07-25T18:58:31.010000"],["2024-07-25T18:58:32.010000"],["2024-07-25T18:58:33.010000"],["2024-07-25T18:58:34.010000"],["2024-07-25T18:58:35.010000"],["2024-07-25T18:58:36.010000"],["2024-07-25T18:58:37.010000"],["2024-07-25T18:58:38.010000"],["2024-07-25T18:58:39.010000"],["2024-07-25T18:58:40.010000"],["2024-07-25T18:58:41.010000"],["2024-07-25T18:58:42.010000"],["2024-07-25T18:58:43.010000"],["2024-07-25T18:58:44.010000"],["2024-07-25T18:58:45.010000"],["2024-07-25T18:58:46.010000"],["2024-07-25T18:58:47.010000"],["2024-07-25T18:58:48.010000"],["2024-07-25T18:58:49.010000"],["2024-07-25T18:58:50.010000"],["2024-07-25T18:58:51.010000"],["2024-07-25T18:58:52.010000"],["2024-07-25T18:58:53.010000"],["2024-07-25T18:58:54.010000"],["2024-07-25T18:58:55.010000"],["2024-07-25T18:58:56.010000"],["2024-07-25T18:58:57.010000"],["2024-07-25T18:58:58.010000"],["2024-07-25T18:58:59.010000"],["2024-07-25T18:59:00.010000"],["2024-07-25T18:59:01.010000"],["2024-07-25T18:59:02.010000"],["2024-07-25T18:59:03.010000"],["2024-07-25T18:59:04.010000"],["2024-07-25T18:59:05.010000"],["2024-07-25T18:59:06.010000"],["2024-07-25T18:59:07.010000"],["2024-07-25T18:59:08.010000"],["2024-07-25T18:59:09.010000"],["2024-07-25T18:59:10.010000"],["2024-07-25T18:59:11.010000"],["2024-07-25T18:59:12.010000"],["2024-07-25T18:59:13.010000"],["2024-07-25T18:59:14.010000"],["2024-07-25T18:59:15.010000"],["2024-07-25T18:59:16.010000"],["2024-07-25T18:59:17.010000"],["2024-07-25T18:59:18.010000"],["2024-07-25T18:59:19.010000"],["2024-07-25T18:59:20.010000"],["2024-07-25T18:59:21.010000"],["2024-07-25T18:59:22.010000"],["2024-07-25T18:59:23.010000"],["2024-07-25T18:59:24.010000"],["2024-07-25T18:59:25.010000"],["2024-07-25T18:59:26.010000"],["2024-07-25T18:59:27.010000"],["2024-07-25T18:59:28.010000"],["2024-07-25T18:59:29.010000"],["2024-07-25T18:59:30.010000"],["2024-07-25T18:59:31.010000"],["2024-07-25T18:59:32.010000"],["2024-07-25T18:59:33.010000"],["2024-07-25T18:59:34.010000"],["2024-07-25T18:59:35.010000"],["2024-07-25T18:59:36.010000"],["2024-07-25T18:59:37.010000"],["2024-07-25T18:59:38.010000"],["2024-07-25T18:59:39.010000"],["2024-07-25T18:59:40.010000"],["2024-07-25T18:59:41.010000"],["2024-07-25T18:59:42.010000"],["2024-07-25T18:59:43.010000"],["2024-07-25T18:59:44.010000"],["2024-07-25T18:59:45.010000"],["2024-07-25T18:59:46.010000"],["2024-07-25T18:59:47.010000"],["2024-07-25T18:59:48.010000"],["2024-07-25T18:59:49.010000"],["2024-07-25T18:59:50.010000"],["2024-07-25T18:59:51.010000"],["2024-07-25T18:59:52.010000"],["2024-07-25T18:59:53.010000"],["2024-07-25T18:59:54.010000"],["2024-07-25T18:59:55.010000"],["2024-07-25T18:59:56.010000"],["2024-07-25T18:59:57.010000"],["2024-07-25T18:59:58.010000"],["2024-07-25T18:59:59.010000"],["2024-07-25T19:00:00.010000"],["2024-07-25T19:00:01.010000"],["2024-07-25T19:00:02.010000"],["2024-07-25T19:00:03.010000"],["2024-07-25T19:00:04.010000"],["2024-07-25T19:00:05.010000"],["2024-07-25T19:00:06.010000"],["2024-07-25T19:00:07.010000"],["2024-07-25T19:00:08.010000"],["2024-07-25T19:00:09.010000"],["2024-07-25T19:00:10.010000"],["2024-07-25T19:00:11.010000"],["2024-07-25T19:00:12.010000"],["2024-07-25T19:00:13.010000"],["2024-07-25T19:00:14.010000"],["2024-07-25T19:00:15.010000"],["2024-07-25T19:00:16.010000"],["2024-07-25T19:00:17.010000"],["2024-07-25T19:00:18.010000"],["2024-07-25T19:00:19.010000"],["2024-07-25T19:00:20.010000"],["2024-07-25T19:00:21.010000"],["2024-07-25T19:00:22.010000"],["2024-07-25T19:00:23.010000"],["2024-07-25T19:00:24.010000"],["2024-07-25T19:00:25.010000"],["2024-07-25T19:00:26.010000"],["2024-07-25T19:00:27.010000"],["2024-07-25T19:00:28.010000"],["2024-07-25T19:00:29.010000"],["2024-07-25T19:00:30.010000"],["2024-07-25T19:00:31.010000"],["2024-07-25T19:00:32.010000"],["2024-07-25T19:00:33.010000"],["2024-07-25T19:00:34.010000"],["2024-07-25T19:00:35.010000"],["2024-07-25T19:00:36.010000"],["2024-07-25T19:00:37.010000"],["2024-07-25T19:00:38.010000"],["2024-07-25T19:00:39.010000"],["2024-07-25T19:00:40.010000"],["2024-07-25T19:00:41.010000"],["2024-07-25T19:00:42.010000"],["2024-07-25T19:00:43.010000"],["2024-07-25T19:00:44.010000"],["2024-07-25T19:00:45.010000"],["2024-07-25T19:00:46.010000"],["2024-07-25T19:00:47.010000"],["2024-07-25T19:00:48.010000"],["2024-07-25T19:00:49.010000"],["2024-07-25T19:00:50.010000"],["2024-07-25T19:00:51.010000"],["2024-07-25T19:00:52.010000"],["2024-07-25T19:00:53.010000"],["2024-07-25T19:00:54.010000"],["2024-07-25T19:00:55.010000"],["2024-07-25T19:00:56.010000"],["2024-07-25T19:00:57.010000"],["2024-07-25T19:00:58.010000"],["2024-07-25T19:00:59.010000"],["2024-07-25T19:01:00.010000"],["2024-07-25T19:01:01.010000"],["2024-07-25T19:01:02.010000"],["2024-07-25T19:01:03.010000"],["2024-07-25T19:01:04.010000"],["2024-07-25T19:01:05.010000"],["2024-07-25T19:01:06.010000"],["2024-07-25T19:01:07.010000"],["2024-07-25T19:01:08.010000"],["2024-07-25T19:01:09.010000"],["2024-07-25T19:01:10.010000"],["2024-07-25T19:01:11.010000"],["2024-07-25T19:01:12.010000"],["2024-07-25T19:01:13.010000"],["2024-07-25T19:01:14.010000"],["2024-07-25T19:01:15.010000"],["2024-07-25T19:01:16.010000"],["2024-07-25T19:01:17.010000"],["2024-07-25T19:01:18.010000"],["2024-07-25T19:01:19.010000"],["2024-07-25T19:01:20.010000"],["2024-07-25T19:01:21.010000"],["2024-07-25T19:01:22.010000"],["2024-07-25T19:01:23.010000"],["2024-07-25T19:01:24.010000"],["2024-07-25T19:01:25.010000"],["2024-07-25T19:01:26.010000"],["2024-07-25T19:01:27.010000"],["2024-07-25T19:01:28.010000"],["2024-07-25T19:01:29.010000"],["2024-07-25T19:01:30.010000"],["2024-07-25T19:01:31.010000"],["2024-07-25T19:01:32.010000"],["2024-07-25T19:01:33.010000"],["2024-07-25T19:01:34.010000"],["2024-07-25T19:01:35.010000"],["2024-07-25T19:01:36.010000"],["2024-07-25T19:01:37.010000"],["2024-07-25T19:01:38.010000"],["2024-07-25T19:01:39.010000"],["2024-07-25T19:01:40.010000"],["2024-07-25T19:01:41.010000"],["2024-07-25T19:01:42.010000"],["2024-07-25T19:01:43.010000"],["2024-07-25T19:01:44.010000"],["2024-07-25T19:01:45.010000"],["2024-07-25T19:01:46.010000"],["2024-07-25T19:01:47.010000"],["2024-07-25T19:01:48.010000"],["2024-07-25T19:01:49.010000"],["2024-07-25T19:01:50.010000"],["2024-07-25T19:01:51.010000"],["2024-07-25T19:01:52.010000"],["2024-07-25T19:01:53.010000"],["2024-07-25T19:01:54.010000"],["2024-07-25T19:01:55.010000"],["2024-07-25T19:01:56.010000"],["2024-07-25T19:01:57.010000"],["2024-07-25T19:01:58.010000"],["2024-07-25T19:01:59.010000"],["2024-07-25T19:02:00.010000"],["2024-07-25T19:02:01.010000"],["2024-07-25T19:02:02.010000"],["2024-07-25T19:02:03.010000"],["2024-07-25T19:02:04.010000"],["2024-07-25T19:02:05.010000"],["2024-07-25T19:02:06.010000"],["2024-07-25T19:02:07.010000"],["2024-07-25T19:02:08.010000"],["2024-07-25T19:02:09.010000"],["2024-07-25T19:02:10.010000"],["2024-07-25T19:02:11.010000"],["2024-07-25T19:02:12.010000"],["2024-07-25T19:02:13.010000"],["2024-07-25T19:02:14.010000"],["2024-07-25T19:02:15.010000"],["2024-07-25T19:02:16.010000"],["2024-07-25T19:02:17.010000"],["2024-07-25T19:02:18.010000"],["2024-07-25T19:02:19.010000"],["2024-07-25T19:02:20.010000"],["2024-07-25T19:02:21.010000"],["2024-07-25T19:02:22.010000"],["2024-07-25T19:02:23.010000"],["2024-07-25T19:02:24.010000"],["2024-07-25T19:02:25.010000"],["2024-07-25T19:02:26.010000"],["2024-07-25T19:02:27.010000"],["2024-07-25T19:02:28.010000"],["2024-07-25T19:02:29.010000"],["2024-07-25T19:02:30.010000"],["2024-07-25T19:02:31.010000"],["2024-07-25T19:02:32.010000"],["2024-07-25T19:02:33.010000"],["2024-07-25T19:02:34.010000"],["2024-07-25T19:02:35.010000"],["2024-07-25T19:02:36.010000"],["2024-07-25T19:02:37.010000"],["2024-07-25T19:02:38.010000"],["2024-07-25T19:02:39.010000"],["2024-07-25T19:02:40.010000"],["2024-07-25T19:02:41.010000"],["2024-07-25T19:02:42.010000"],["2024-07-25T19:02:43.010000"],["2024-07-25T19:02:44.010000"],["2024-07-25T19:02:45.010000"],["2024-07-25T19:02:46.010000"],["2024-07-25T19:02:47.010000"],["2024-07-25T19:02:48.010000"],["2024-07-25T19:02:49.010000"],["2024-07-25T19:02:50.010000"],["2024-07-25T19:02:51.010000"],["2024-07-25T19:02:52.010000"],["2024-07-25T19:02:53.010000"],["2024-07-25T19:02:54.010000"],["2024-07-25T19:02:55.010000"],["2024-07-25T19:02:56.010000"],["2024-07-25T19:02:57.010000"],["2024-07-25T19:02:58.010000"],["2024-07-25T19:02:59.010000"],["2024-07-25T19:03:00.010000"],["2024-07-25T19:03:01.010000"],["2024-07-25T19:03:02.010000"],["2024-07-25T19:03:03.010000"],["2024-07-25T19:03:04.010000"],["2024-07-25T19:03:05.010000"],["2024-07-25T19:03:06.010000"],["2024-07-25T19:03:07.010000"],["2024-07-25T19:03:08.010000"],["2024-07-25T19:03:09.010000"],["2024-07-25T19:03:10.010000"],["2024-07-25T19:03:11.010000"],["2024-07-25T19:03:12.010000"],["2024-07-25T19:03:13.010000"],["2024-07-25T19:03:14.010000"],["2024-07-25T19:03:15.010000"],["2024-07-25T19:03:16.010000"],["2024-07-25T19:03:17.010000"],["2024-07-25T19:03:18.010000"],["2024-07-25T19:03:19.010000"],["2024-07-25T19:03:20.010000"],["2024-07-25T19:03:21.010000"],["2024-07-25T19:03:22.010000"],["2024-07-25T19:03:23.010000"],["2024-07-25T19:03:24.010000"],["2024-07-25T19:03:25.010000"],["2024-07-25T19:03:26.010000"],["2024-07-25T19:03:27.010000"],["2024-07-25T19:03:28.010000"],["2024-07-25T19:03:29.010000"],["2024-07-25T19:03:30.010000"],["2024-07-25T19:03:31.010000"],["2024-07-25T19:03:32.010000"],["2024-07-25T19:03:33.010000"],["2024-07-25T19:03:34.010000"],["2024-07-25T19:03:35.010000"],["2024-07-25T19:03:36.010000"],["2024-07-25T19:03:37.010000"],["2024-07-25T19:03:38.010000"],["2024-07-25T19:03:39.010000"],["2024-07-25T19:03:40.010000"],["2024-07-25T19:03:41.010000"],["2024-07-25T19:03:42.010000"],["2024-07-25T19:03:43.010000"],["2024-07-25T19:03:44.010000"],["2024-07-25T19:03:45.010000"],["2024-07-25T19:03:46.010000"],["2024-07-25T19:03:47.010000"],["2024-07-25T19:03:48.010000"],["2024-07-25T19:03:49.010000"],["2024-07-25T19:03:50.010000"],["2024-07-25T19:03:51.010000"],["2024-07-25T19:03:52.010000"],["2024-07-25T19:03:53.010000"],["2024-07-25T19:03:54.010000"],["2024-07-25T19:03:55.010000"],["2024-07-25T19:03:56.010000"],["2024-07-25T19:03:57.010000"],["2024-07-25T19:03:58.010000"],["2024-07-25T19:03:59.010000"],["2024-07-25T19:04:00.010000"],["2024-07-25T19:04:01.010000"],["2024-07-25T19:04:02.010000"],["2024-07-25T19:04:03.010000"],["2024-07-25T19:04:04.010000"],["2024-07-25T19:04:05.010000"],["2024-07-25T19:04:06.010000"],["2024-07-25T19:04:07.010000"],["2024-07-25T19:04:08.010000"],["2024-07-25T19:04:09.010000"],["2024-07-25T19:04:10.010000"],["2024-07-25T19:04:11.010000"],["2024-07-25T19:04:12.010000"],["2024-07-25T19:04:13.010000"],["2024-07-25T19:04:14.010000"],["2024-07-25T19:04:15.010000"],["2024-07-25T19:04:16.010000"],["2024-07-25T19:04:17.010000"],["2024-07-25T19:04:18.010000"],["2024-07-25T19:04:19.010000"],["2024-07-25T19:04:20.010000"],["2024-07-25T19:04:21.010000"],["2024-07-25T19:04:22.010000"],["2024-07-25T19:04:23.010000"],["2024-07-25T19:04:24.010000"],["2024-07-25T19:04:25.010000"],["2024-07-25T19:04:26.010000"],["2024-07-25T19:04:27.010000"],["2024-07-25T19:04:28.010000"],["2024-07-25T19:04:29.010000"],["2024-07-25T19:04:30.010000"],["2024-07-25T19:04:31.010000"],["2024-07-25T19:04:32.010000"],["2024-07-25T19:04:33.010000"],["2024-07-25T19:04:34.010000"],["2024-07-25T19:04:35.010000"],["2024-07-25T19:04:36.010000"],["2024-07-25T19:04:37.010000"],["2024-07-25T19:04:38.010000"],["2024-07-25T19:04:39.010000"],["2024-07-25T19:04:40.010000"],["2024-07-25T19:04:41.010000"],["2024-07-25T19:04:42.010000"],["2024-07-25T19:04:43.010000"],["2024-07-25T19:04:44.010000"],["2024-07-25T19:04:45.010000"],["2024-07-25T19:04:46.010000"],["2024-07-25T19:04:47.010000"],["2024-07-25T19:04:48.010000"],["2024-07-25T19:04:49.010000"],["2024-07-25T19:04:50.010000"],["2024-07-25T19:04:51.010000"],["2024-07-25T19:04:52.010000"],["2024-07-25T19:04:53.010000"],["2024-07-25T19:04:54.010000"],["2024-07-25T19:04:55.010000"],["2024-07-25T19:04:56.010000"],["2024-07-25T19:04:57.010000"],["2024-07-25T19:04:58.010000"],["2024-07-25T19:04:59.010000"],["2024-07-25T19:05:00.010000"],["2024-07-25T19:05:01.010000"],["2024-07-25T19:05:02.010000"],["2024-07-25T19:05:03.010000"],["2024-07-25T19:05:04.010000"],["2024-07-25T19:05:05.010000"],["2024-07-25T19:05:06.010000"],["2024-07-25T19:05:07.010000"],["2024-07-25T19:05:08.010000"],["2024-07-25T19:05:09.010000"],["2024-07-25T19:05:10.010000"],["2024-07-25T19:05:11.010000"],["2024-07-25T19:05:12.010000"],["2024-07-25T19:05:13.010000"],["2024-07-25T19:05:14.010000"],["2024-07-25T19:05:15.010000"],["2024-07-25T19:05:16.010000"],["2024-07-25T19:05:17.010000"],["2024-07-25T19:05:18.010000"],["2024-07-25T19:05:19.010000"],["2024-07-25T19:05:20.010000"],["2024-07-25T19:05:21.010000"],["2024-07-25T19:05:22.010000"],["2024-07-25T19:05:23.010000"],["2024-07-25T19:05:24.010000"],["2024-07-25T19:05:25.010000"],["2024-07-25T19:05:26.010000"],["2024-07-25T19:05:27.010000"],["2024-07-25T19:05:28.010000"],["2024-07-25T19:05:29.010000"],["2024-07-25T19:05:30.010000"],["2024-07-25T19:05:31.010000"],["2024-07-25T19:05:32.010000"],["2024-07-25T19:05:33.010000"],["2024-07-25T19:05:34.010000"],["2024-07-25T19:05:35.010000"],["2024-07-25T19:05:36.010000"],["2024-07-25T19:05:37.010000"],["2024-07-25T19:05:38.010000"],["2024-07-25T19:05:39.010000"],["2024-07-25T19:05:40.010000"],["2024-07-25T19:05:41.010000"],["2024-07-25T19:05:42.010000"],["2024-07-25T19:05:43.010000"],["2024-07-25T19:05:44.010000"],["2024-07-25T19:05:45.010000"],["2024-07-25T19:05:46.010000"],["2024-07-25T19:05:47.010000"],["2024-07-25T19:05:48.010000"],["2024-07-25T19:05:49.010000"],["2024-07-25T19:05:50.010000"],["2024-07-25T19:05:51.010000"],["2024-07-25T19:05:52.010000"],["2024-07-25T19:05:53.010000"],["2024-07-25T19:05:54.010000"],["2024-07-25T19:05:55.010000"],["2024-07-25T19:05:56.010000"],["2024-07-25T19:05:57.010000"],["2024-07-25T19:05:58.010000"],["2024-07-25T19:05:59.010000"],["2024-07-25T19:06:00.010000"],["2024-07-25T19:06:01.010000"],["2024-07-25T19:06:02.010000"],["2024-07-25T19:06:03.010000"],["2024-07-25T19:06:04.010000"],["2024-07-25T19:06:05.010000"],["2024-07-25T19:06:06.010000"],["2024-07-25T19:06:07.010000"],["2024-07-25T19:06:08.010000"],["2024-07-25T19:06:09.010000"],["2024-07-25T19:06:10.010000"],["2024-07-25T19:06:11.010000"],["2024-07-25T19:06:12.010000"],["2024-07-25T19:06:13.010000"],["2024-07-25T19:06:14.010000"],["2024-07-25T19:06:15.010000"],["2024-07-25T19:06:16.010000"],["2024-07-25T19:06:17.010000"],["2024-07-25T19:06:18.010000"],["2024-07-25T19:06:19.010000"],["2024-07-25T19:06:20.010000"],["2024-07-25T19:06:21.010000"],["2024-07-25T19:06:22.010000"],["2024-07-25T19:06:23.010000"],["2024-07-25T19:06:24.010000"],["2024-07-25T19:06:25.010000"],["2024-07-25T19:06:26.010000"],["2024-07-25T19:06:27.010000"],["2024-07-25T19:06:28.010000"],["2024-07-25T19:06:29.010000"],["2024-07-25T19:06:30.010000"],["2024-07-25T19:06:31.010000"],["2024-07-25T19:06:32.010000"],["2024-07-25T19:06:33.010000"],["2024-07-25T19:06:34.010000"],["2024-07-25T19:06:35.010000"],["2024-07-25T19:06:36.010000"],["2024-07-25T19:06:37.010000"],["2024-07-25T19:06:38.010000"],["2024-07-25T19:06:39.010000"],["2024-07-25T19:06:40.010000"],["2024-07-25T19:06:41.010000"],["2024-07-25T19:06:42.010000"],["2024-07-25T19:06:43.010000"],["2024-07-25T19:06:44.010000"],["2024-07-25T19:06:45.010000"],["2024-07-25T19:06:46.010000"],["2024-07-25T19:06:47.010000"],["2024-07-25T19:06:48.010000"],["2024-07-25T19:06:49.010000"],["2024-07-25T19:06:50.010000"],["2024-07-25T19:06:51.010000"],["2024-07-25T19:06:52.010000"],["2024-07-25T19:06:53.010000"],["2024-07-25T19:06:54.010000"],["2024-07-25T19:06:55.010000"],["2024-07-25T19:06:56.010000"],["2024-07-25T19:06:57.010000"],["2024-07-25T19:06:58.010000"],["2024-07-25T19:06:59.010000"],["2024-07-25T19:07:00.010000"],["2024-07-25T19:07:01.010000"],["2024-07-25T19:07:02.010000"],["2024-07-25T19:07:03.010000"],["2024-07-25T19:07:04.010000"],["2024-07-25T19:07:05.010000"],["2024-07-25T19:07:06.010000"],["2024-07-25T19:07:07.010000"],["2024-07-25T19:07:08.010000"],["2024-07-25T19:07:09.010000"],["2024-07-25T19:07:10.010000"],["2024-07-25T19:07:11.010000"],["2024-07-25T19:07:12.010000"],["2024-07-25T19:07:13.010000"],["2024-07-25T19:07:14.010000"],["2024-07-25T19:07:15.010000"],["2024-07-25T19:07:16.010000"],["2024-07-25T19:07:17.010000"],["2024-07-25T19:07:18.010000"],["2024-07-25T19:07:19.010000"],["2024-07-25T19:07:20.010000"],["2024-07-25T19:07:21.010000"],["2024-07-25T19:07:22.010000"],["2024-07-25T19:07:23.010000"],["2024-07-25T19:07:24.010000"],["2024-07-25T19:07:25.010000"],["2024-07-25T19:07:26.010000"],["2024-07-25T19:07:27.010000"],["2024-07-25T19:07:28.010000"],["2024-07-25T19:07:29.010000"],["2024-07-25T19:07:30.010000"],["2024-07-25T19:07:31.010000"],["2024-07-25T19:07:32.010000"],["2024-07-25T19:07:33.010000"],["2024-07-25T19:07:34.010000"],["2024-07-25T19:07:35.010000"],["2024-07-25T19:07:36.010000"],["2024-07-25T19:07:37.010000"],["2024-07-25T19:07:38.010000"],["2024-07-25T19:07:39.010000"],["2024-07-25T19:07:40.010000"],["2024-07-25T19:07:41.010000"],["2024-07-25T19:07:42.010000"],["2024-07-25T19:07:43.010000"],["2024-07-25T19:07:44.010000"],["2024-07-25T19:07:45.010000"],["2024-07-25T19:07:46.010000"],["2024-07-25T19:07:47.010000"],["2024-07-25T19:07:48.010000"],["2024-07-25T19:07:49.010000"],["2024-07-25T19:07:50.010000"],["2024-07-25T19:07:51.010000"],["2024-07-25T19:07:52.010000"],["2024-07-25T19:07:53.010000"],["2024-07-25T19:07:54.010000"],["2024-07-25T19:07:55.010000"],["2024-07-25T19:07:56.010000"],["2024-07-25T19:07:57.010000"],["2024-07-25T19:07:58.010000"],["2024-07-25T19:07:59.010000"],["2024-07-25T19:08:00.010000"],["2024-07-25T19:08:01.010000"],["2024-07-25T19:08:02.010000"],["2024-07-25T19:08:03.010000"],["2024-07-25T19:08:04.010000"],["2024-07-25T19:08:05.010000"],["2024-07-25T19:08:06.010000"],["2024-07-25T19:08:07.010000"],["2024-07-25T19:08:08.010000"],["2024-07-25T19:08:09.010000"],["2024-07-25T19:08:10.010000"],["2024-07-25T19:08:11.010000"],["2024-07-25T19:08:12.010000"],["2024-07-25T19:08:13.010000"],["2024-07-25T19:08:14.010000"],["2024-07-25T19:08:15.010000"],["2024-07-25T19:08:16.010000"],["2024-07-25T19:08:17.010000"],["2024-07-25T19:08:18.010000"],["2024-07-25T19:08:19.010000"],["2024-07-25T19:08:20.010000"],["2024-07-25T19:08:21.010000"],["2024-07-25T19:08:22.010000"],["2024-07-25T19:08:23.010000"],["2024-07-25T19:08:24.010000"],["2024-07-25T19:08:25.010000"],["2024-07-25T19:08:26.010000"],["2024-07-25T19:08:27.010000"],["2024-07-25T19:08:28.010000"],["2024-07-25T19:08:29.010000"],["2024-07-25T19:08:30.010000"],["2024-07-25T19:08:31.010000"],["2024-07-25T19:08:32.010000"],["2024-07-25T19:08:33.010000"],["2024-07-25T19:08:34.010000"],["2024-07-25T19:08:35.010000"],["2024-07-25T19:08:36.010000"],["2024-07-25T19:08:37.010000"],["2024-07-25T19:08:38.010000"],["2024-07-25T19:08:39.010000"],["2024-07-25T19:08:40.010000"],["2024-07-25T19:08:41.010000"],["2024-07-25T19:08:42.010000"],["2024-07-25T19:08:43.010000"],["2024-07-25T19:08:44.010000"],["2024-07-25T19:08:45.010000"],["2024-07-25T19:08:46.010000"],["2024-07-25T19:08:47.010000"],["2024-07-25T19:08:48.010000"],["2024-07-25T19:08:49.010000"],["2024-07-25T19:08:50.010000"],["2024-07-25T19:08:51.010000"],["2024-07-25T19:08:52.010000"],["2024-07-25T19:08:53.010000"],["2024-07-25T19:08:54.010000"],["2024-07-25T19:08:55.010000"],["2024-07-25T19:08:56.010000"],["2024-07-25T19:08:57.010000"],["2024-07-25T19:08:58.010000"],["2024-07-25T19:08:59.010000"],["2024-07-25T19:09:00.010000"],["2024-07-25T19:09:01.010000"],["2024-07-25T19:09:02.010000"],["2024-07-25T19:09:03.010000"],["2024-07-25T19:09:04.010000"],["2024-07-25T19:09:05.010000"],["2024-07-25T19:09:06.010000"],["2024-07-25T19:09:07.010000"],["2024-07-25T19:09:08.010000"],["2024-07-25T19:09:09.010000"],["2024-07-25T19:09:10.010000"],["2024-07-25T19:09:11.010000"],["2024-07-25T19:09:12.010000"],["2024-07-25T19:09:13.010000"],["2024-07-25T19:09:14.010000"],["2024-07-25T19:09:15.010000"],["2024-07-25T19:09:16.010000"],["2024-07-25T19:09:17.010000"],["2024-07-25T19:09:18.010000"],["2024-07-25T19:09:19.010000"],["2024-07-25T19:09:20.010000"],["2024-07-25T19:09:21.010000"],["2024-07-25T19:09:22.010000"],["2024-07-25T19:09:23.010000"],["2024-07-25T19:09:24.010000"],["2024-07-25T19:09:25.010000"],["2024-07-25T19:09:26.010000"],["2024-07-25T19:09:27.010000"],["2024-07-25T19:09:28.010000"],["2024-07-25T19:09:29.010000"],["2024-07-25T19:09:30.010000"],["2024-07-25T19:09:31.010000"],["2024-07-25T19:09:32.010000"],["2024-07-25T19:09:33.010000"],["2024-07-25T19:09:34.010000"],["2024-07-25T19:09:35.010000"],["2024-07-25T19:09:36.010000"],["2024-07-25T19:09:37.010000"],["2024-07-25T19:09:38.010000"],["2024-07-25T19:09:39.010000"],["2024-07-25T19:09:40.010000"],["2024-07-25T19:09:41.010000"],["2024-07-25T19:09:42.010000"],["2024-07-25T19:09:43.010000"],["2024-07-25T19:09:44.010000"],["2024-07-25T19:09:45.010000"],["2024-07-25T19:09:46.010000"],["2024-07-25T19:09:47.010000"],["2024-07-25T19:09:48.010000"],["2024-07-25T19:09:49.010000"],["2024-07-25T19:09:50.010000"],["2024-07-25T19:09:51.010000"],["2024-07-25T19:09:52.010000"],["2024-07-25T19:09:53.010000"],["2024-07-25T19:09:54.010000"],["2024-07-25T19:09:55.010000"],["2024-07-25T19:09:56.010000"],["2024-07-25T19:09:57.010000"],["2024-07-25T19:09:58.010000"],["2024-07-25T19:09:59.010000"],["2024-07-25T19:10:00.010000"],["2024-07-25T19:10:01.010000"],["2024-07-25T19:10:02.010000"],["2024-07-25T19:10:03.010000"],["2024-07-25T19:10:04.010000"],["2024-07-25T19:10:05.010000"],["2024-07-25T19:10:06.010000"],["2024-07-25T19:10:07.010000"],["2024-07-25T19:10:08.010000"],["2024-07-25T19:10:09.010000"],["2024-07-25T19:10:10.010000"],["2024-07-25T19:10:11.010000"],["2024-07-25T19:10:12.010000"],["2024-07-25T19:10:13.010000"],["2024-07-25T19:10:14.010000"],["2024-07-25T19:10:15.010000"],["2024-07-25T19:10:16.010000"],["2024-07-25T19:10:17.010000"],["2024-07-25T19:10:18.010000"],["2024-07-25T19:10:19.010000"],["2024-07-25T19:10:20.010000"],["2024-07-25T19:10:21.010000"],["2024-07-25T19:10:22.010000"],["2024-07-25T19:10:23.010000"],["2024-07-25T19:10:24.010000"],["2024-07-25T19:10:25.010000"],["2024-07-25T19:10:26.010000"],["2024-07-25T19:10:27.010000"],["2024-07-25T19:10:28.010000"],["2024-07-25T19:10:29.010000"],["2024-07-25T19:10:30.010000"],["2024-07-25T19:10:31.010000"],["2024-07-25T19:10:32.010000"],["2024-07-25T19:10:33.010000"],["2024-07-25T19:10:34.010000"],["2024-07-25T19:10:35.010000"],["2024-07-25T19:10:36.010000"],["2024-07-25T19:10:37.010000"],["2024-07-25T19:10:38.010000"],["2024-07-25T19:10:39.010000"],["2024-07-25T19:10:40.010000"],["2024-07-25T19:10:41.010000"],["2024-07-25T19:10:42.010000"],["2024-07-25T19:10:43.010000"],["2024-07-25T19:10:44.010000"],["2024-07-25T19:10:45.010000"],["2024-07-25T19:10:46.010000"],["2024-07-25T19:10:47.010000"],["2024-07-25T19:10:48.010000"],["2024-07-25T19:10:49.010000"],["2024-07-25T19:10:50.010000"],["2024-07-25T19:10:51.010000"],["2024-07-25T19:10:52.010000"],["2024-07-25T19:10:53.010000"],["2024-07-25T19:10:54.010000"],["2024-07-25T19:10:55.010000"],["2024-07-25T19:10:56.010000"],["2024-07-25T19:10:57.010000"],["2024-07-25T19:10:58.010000"],["2024-07-25T19:10:59.010000"],["2024-07-25T19:11:00.010000"],["2024-07-25T19:11:01.010000"],["2024-07-25T19:11:02.010000"],["2024-07-25T19:11:03.010000"],["2024-07-25T19:11:04.010000"],["2024-07-25T19:11:05.010000"],["2024-07-25T19:11:06.010000"],["2024-07-25T19:11:07.010000"],["2024-07-25T19:11:08.010000"],["2024-07-25T19:11:09.010000"],["2024-07-25T19:11:10.010000"],["2024-07-25T19:11:11.010000"],["2024-07-25T19:11:12.010000"],["2024-07-25T19:11:13.010000"],["2024-07-25T19:11:14.010000"],["2024-07-25T19:11:15.010000"],["2024-07-25T19:11:16.010000"],["2024-07-25T19:11:17.010000"],["2024-07-25T19:11:18.010000"],["2024-07-25T19:11:19.010000"],["2024-07-25T19:11:20.010000"],["2024-07-25T19:11:21.010000"],["2024-07-25T19:11:22.010000"],["2024-07-25T19:11:23.010000"],["2024-07-25T19:11:24.010000"],["2024-07-25T19:11:25.010000"],["2024-07-25T19:11:26.010000"],["2024-07-25T19:11:27.010000"],["2024-07-25T19:11:28.010000"],["2024-07-25T19:11:29.010000"],["2024-07-25T19:11:30.010000"],["2024-07-25T19:11:31.010000"],["2024-07-25T19:11:32.010000"],["2024-07-25T19:11:33.010000"],["2024-07-25T19:11:34.010000"],["2024-07-25T19:11:35.010000"],["2024-07-25T19:11:36.010000"],["2024-07-25T19:11:37.010000"],["2024-07-25T19:11:38.010000"],["2024-07-25T19:11:39.010000"],["2024-07-25T19:11:40.010000"],["2024-07-25T19:11:41.010000"],["2024-07-25T19:11:42.010000"],["2024-07-25T19:11:43.010000"],["2024-07-25T19:11:44.010000"],["2024-07-25T19:11:45.010000"],["2024-07-25T19:11:46.010000"],["2024-07-25T19:11:47.010000"],["2024-07-25T19:11:48.010000"],["2024-07-25T19:11:49.010000"],["2024-07-25T19:11:50.010000"],["2024-07-25T19:11:51.010000"],["2024-07-25T19:11:52.010000"],["2024-07-25T19:11:53.010000"],["2024-07-25T19:11:54.010000"],["2024-07-25T19:11:55.010000"],["2024-07-25T19:11:56.010000"],["2024-07-25T19:11:57.010000"],["2024-07-25T19:11:58.010000"],["2024-07-25T19:11:59.010000"],["2024-07-25T19:12:00.010000"],["2024-07-25T19:12:01.010000"],["2024-07-25T19:12:02.010000"],["2024-07-25T19:12:03.010000"],["2024-07-25T19:12:04.010000"],["2024-07-25T19:12:05.010000"],["2024-07-25T19:12:06.010000"],["2024-07-25T19:12:07.010000"],["2024-07-25T19:12:08.010000"],["2024-07-25T19:12:09.010000"],["2024-07-25T19:12:10.010000"],["2024-07-25T19:12:11.010000"],["2024-07-25T19:12:12.010000"],["2024-07-25T19:12:13.010000"],["2024-07-25T19:12:14.010000"],["2024-07-25T19:12:15.010000"],["2024-07-25T19:12:16.010000"],["2024-07-25T19:12:17.010000"],["2024-07-25T19:12:18.010000"],["2024-07-25T19:12:19.010000"],["2024-07-25T19:12:20.010000"],["2024-07-25T19:12:21.010000"],["2024-07-25T19:12:22.010000"],["2024-07-25T19:12:23.010000"],["2024-07-25T19:12:24.010000"],["2024-07-25T19:12:25.010000"],["2024-07-25T19:12:26.010000"],["2024-07-25T19:12:27.010000"],["2024-07-25T19:12:28.010000"],["2024-07-25T19:12:29.010000"],["2024-07-25T19:12:30.010000"],["2024-07-25T19:12:31.010000"],["2024-07-25T19:12:32.010000"],["2024-07-25T19:12:33.010000"],["2024-07-25T19:12:34.010000"],["2024-07-25T19:12:35.010000"],["2024-07-25T19:12:36.010000"],["2024-07-25T19:12:37.010000"],["2024-07-25T19:12:38.010000"],["2024-07-25T19:12:39.010000"],["2024-07-25T19:12:40.010000"],["2024-07-25T19:12:41.010000"],["2024-07-25T19:12:42.010000"],["2024-07-25T19:12:43.010000"],["2024-07-25T19:12:44.010000"],["2024-07-25T19:12:45.010000"],["2024-07-25T19:12:46.010000"],["2024-07-25T19:12:47.010000"],["2024-07-25T19:12:48.010000"],["2024-07-25T19:12:49.010000"],["2024-07-25T19:12:50.010000"],["2024-07-25T19:12:51.010000"],["2024-07-25T19:12:52.010000"],["2024-07-25T19:12:53.010000"],["2024-07-25T19:12:54.010000"],["2024-07-25T19:12:55.010000"],["2024-07-25T19:12:56.010000"],["2024-07-25T19:12:57.010000"],["2024-07-25T19:12:58.010000"],["2024-07-25T19:12:59.010000"],["2024-07-25T19:13:00.010000"],["2024-07-25T19:13:01.010000"],["2024-07-25T19:13:02.010000"],["2024-07-25T19:13:03.010000"],["2024-07-25T19:13:04.010000"],["2024-07-25T19:13:05.010000"],["2024-07-25T19:13:06.010000"],["2024-07-25T19:13:07.010000"],["2024-07-25T19:13:08.010000"],["2024-07-25T19:13:09.010000"],["2024-07-25T19:13:10.010000"],["2024-07-25T19:13:11.010000"],["2024-07-25T19:13:12.010000"],["2024-07-25T19:13:13.010000"],["2024-07-25T19:13:14.010000"],["2024-07-25T19:13:15.010000"],["2024-07-25T19:13:16.010000"],["2024-07-25T19:13:17.010000"],["2024-07-25T19:13:18.010000"],["2024-07-25T19:13:19.010000"],["2024-07-25T19:13:20.010000"],["2024-07-25T19:13:21.010000"],["2024-07-25T19:13:22.010000"],["2024-07-25T19:13:23.010000"],["2024-07-25T19:13:24.010000"],["2024-07-25T19:13:25.010000"],["2024-07-25T19:13:26.010000"],["2024-07-25T19:13:27.010000"],["2024-07-25T19:13:28.010000"],["2024-07-25T19:13:29.010000"],["2024-07-25T19:13:30.010000"],["2024-07-25T19:13:31.010000"],["2024-07-25T19:13:32.010000"],["2024-07-25T19:13:33.010000"],["2024-07-25T19:13:34.010000"],["2024-07-25T19:13:35.010000"],["2024-07-25T19:13:36.010000"],["2024-07-25T19:13:37.010000"],["2024-07-25T19:13:38.010000"],["2024-07-25T19:13:39.010000"],["2024-07-25T19:13:40.010000"],["2024-07-25T19:13:41.010000"],["2024-07-25T19:13:42.010000"],["2024-07-25T19:13:43.010000"],["2024-07-25T19:13:44.010000"],["2024-07-25T19:13:45.010000"],["2024-07-25T19:13:46.010000"],["2024-07-25T19:13:47.010000"],["2024-07-25T19:13:48.010000"],["2024-07-25T19:13:49.010000"],["2024-07-25T19:13:50.010000"],["2024-07-25T19:13:51.010000"],["2024-07-25T19:13:52.010000"],["2024-07-25T19:13:53.010000"],["2024-07-25T19:13:54.010000"],["2024-07-25T19:13:55.010000"],["2024-07-25T19:13:56.010000"],["2024-07-25T19:13:57.010000"],["2024-07-25T19:13:58.010000"],["2024-07-25T19:13:59.010000"],["2024-07-25T19:14:00.010000"],["2024-07-25T19:14:01.010000"],["2024-07-25T19:14:02.010000"],["2024-07-25T19:14:03.010000"],["2024-07-25T19:14:04.010000"],["2024-07-25T19:14:05.010000"],["2024-07-25T19:14:06.010000"],["2024-07-25T19:14:07.010000"],["2024-07-25T19:14:08.010000"],["2024-07-25T19:14:09.010000"],["2024-07-25T19:14:10.010000"],["2024-07-25T19:14:11.010000"],["2024-07-25T19:14:12.010000"],["2024-07-25T19:14:13.010000"],["2024-07-25T19:14:14.010000"],["2024-07-25T19:14:15.010000"],["2024-07-25T19:14:16.010000"],["2024-07-25T19:14:17.010000"],["2024-07-25T19:14:18.010000"],["2024-07-25T19:14:19.010000"],["2024-07-25T19:14:20.010000"],["2024-07-25T19:14:21.010000"],["2024-07-25T19:14:22.010000"],["2024-07-25T19:14:23.010000"],["2024-07-25T19:14:24.010000"],["2024-07-25T19:14:25.010000"],["2024-07-25T19:14:26.010000"],["2024-07-25T19:14:27.010000"],["2024-07-25T19:14:28.010000"],["2024-07-25T19:14:29.010000"],["2024-07-25T19:14:30.010000"],["2024-07-25T19:14:31.010000"],["2024-07-25T19:14:32.010000"],["2024-07-25T19:14:33.010000"],["2024-07-25T19:14:34.010000"],["2024-07-25T19:14:35.010000"],["2024-07-25T19:14:36.010000"],["2024-07-25T19:14:37.010000"],["2024-07-25T19:14:38.010000"],["2024-07-25T19:14:39.010000"],["2024-07-25T19:14:40.010000"],["2024-07-25T19:14:41.010000"],["2024-07-25T19:14:42.010000"],["2024-07-25T19:14:43.010000"],["2024-07-25T19:14:44.010000"],["2024-07-25T19:14:45.010000"],["2024-07-25T19:14:46.010000"],["2024-07-25T19:14:47.010000"],["2024-07-25T19:14:48.010000"],["2024-07-25T19:14:49.010000"],["2024-07-25T19:14:50.010000"],["2024-07-25T19:14:51.010000"],["2024-07-25T19:14:52.010000"],["2024-07-25T19:14:53.010000"],["2024-07-25T19:14:54.010000"],["2024-07-25T19:14:55.010000"],["2024-07-25T19:14:56.010000"],["2024-07-25T19:14:57.010000"],["2024-07-25T19:14:58.010000"],["2024-07-25T19:14:59.010000"],["2024-07-25T19:15:00.010000"],["2024-07-25T19:15:01.010000"],["2024-07-25T19:15:02.010000"],["2024-07-25T19:15:03.010000"],["2024-07-25T19:15:04.010000"],["2024-07-25T19:15:05.010000"],["2024-07-25T19:15:06.010000"],["2024-07-25T19:15:07.010000"],["2024-07-25T19:15:08.010000"],["2024-07-25T19:15:09.010000"],["2024-07-25T19:15:10.010000"],["2024-07-25T19:15:11.010000"],["2024-07-25T19:15:12.010000"],["2024-07-25T19:15:13.010000"],["2024-07-25T19:15:14.010000"],["2024-07-25T19:15:15.010000"],["2024-07-25T19:15:16.010000"],["2024-07-25T19:15:17.010000"],["2024-07-25T19:15:18.010000"],["2024-07-25T19:15:19.010000"],["2024-07-25T19:15:20.010000"],["2024-07-25T19:15:21.010000"],["2024-07-25T19:15:22.010000"],["2024-07-25T19:15:23.010000"],["2024-07-25T19:15:24.010000"],["2024-07-25T19:15:25.010000"],["2024-07-25T19:15:26.010000"],["2024-07-25T19:15:27.010000"],["2024-07-25T19:15:28.010000"],["2024-07-25T19:15:29.010000"],["2024-07-25T19:15:30.010000"],["2024-07-25T19:15:31.010000"],["2024-07-25T19:15:32.010000"],["2024-07-25T19:15:33.010000"],["2024-07-25T19:15:34.010000"],["2024-07-25T19:15:35.010000"],["2024-07-25T19:15:36.010000"],["2024-07-25T19:15:37.010000"],["2024-07-25T19:15:38.010000"],["2024-07-25T19:15:39.010000"],["2024-07-25T19:15:40.010000"],["2024-07-25T19:15:41.010000"],["2024-07-25T19:15:42.010000"],["2024-07-25T19:15:43.010000"],["2024-07-25T19:15:44.010000"],["2024-07-25T19:15:45.010000"],["2024-07-25T19:15:46.010000"],["2024-07-25T19:15:47.010000"],["2024-07-25T19:15:48.010000"],["2024-07-25T19:15:49.010000"],["2024-07-25T19:15:50.010000"],["2024-07-25T19:15:51.010000"],["2024-07-25T19:15:52.010000"],["2024-07-25T19:15:53.010000"],["2024-07-25T19:15:54.010000"],["2024-07-25T19:15:55.010000"],["2024-07-25T19:15:56.010000"],["2024-07-25T19:15:57.010000"],["2024-07-25T19:15:58.010000"],["2024-07-25T19:15:59.010000"],["2024-07-25T19:16:00.010000"],["2024-07-25T19:16:01.010000"],["2024-07-25T19:16:02.010000"],["2024-07-25T19:16:03.010000"],["2024-07-25T19:16:04.010000"],["2024-07-25T19:16:05.010000"],["2024-07-25T19:16:06.010000"],["2024-07-25T19:16:07.010000"],["2024-07-25T19:16:08.010000"],["2024-07-25T19:16:09.010000"],["2024-07-25T19:16:10.010000"],["2024-07-25T19:16:11.010000"],["2024-07-25T19:16:12.010000"],["2024-07-25T19:16:13.010000"],["2024-07-25T19:16:14.010000"],["2024-07-25T19:16:15.010000"],["2024-07-25T19:16:16.010000"],["2024-07-25T19:16:17.010000"],["2024-07-25T19:16:18.010000"],["2024-07-25T19:16:19.010000"],["2024-07-25T19:16:20.010000"],["2024-07-25T19:16:21.010000"],["2024-07-25T19:16:22.010000"],["2024-07-25T19:16:23.010000"],["2024-07-25T19:16:24.010000"],["2024-07-25T19:16:25.010000"],["2024-07-25T19:16:26.010000"],["2024-07-25T19:16:27.010000"],["2024-07-25T19:16:28.010000"],["2024-07-25T19:16:29.010000"],["2024-07-25T19:16:30.010000"],["2024-07-25T19:16:31.010000"],["2024-07-25T19:16:32.010000"],["2024-07-25T19:16:33.010000"],["2024-07-25T19:16:34.010000"],["2024-07-25T19:16:35.010000"],["2024-07-25T19:16:36.010000"],["2024-07-25T19:16:37.010000"],["2024-07-25T19:16:38.010000"],["2024-07-25T19:16:39.010000"],["2024-07-25T19:16:40.010000"],["2024-07-25T19:16:41.010000"],["2024-07-25T19:16:42.010000"],["2024-07-25T19:16:43.010000"],["2024-07-25T19:16:44.010000"],["2024-07-25T19:16:45.010000"],["2024-07-25T19:16:46.010000"],["2024-07-25T19:16:47.010000"],["2024-07-25T19:16:48.010000"],["2024-07-25T19:16:49.010000"],["2024-07-25T19:16:50.010000"],["2024-07-25T19:16:51.010000"],["2024-07-25T19:16:52.010000"],["2024-07-25T19:16:53.010000"],["2024-07-25T19:16:54.010000"],["2024-07-25T19:16:55.010000"],["2024-07-25T19:16:56.010000"],["2024-07-25T19:16:57.010000"],["2024-07-25T19:16:58.010000"],["2024-07-25T19:16:59.010000"],["2024-07-25T19:17:00.010000"],["2024-07-25T19:17:01.010000"],["2024-07-25T19:17:02.010000"],["2024-07-25T19:17:03.010000"],["2024-07-25T19:17:04.010000"],["2024-07-25T19:17:05.010000"],["2024-07-25T19:17:06.010000"],["2024-07-25T19:17:07.010000"],["2024-07-25T19:17:08.010000"],["2024-07-25T19:17:09.010000"],["2024-07-25T19:17:10.010000"],["2024-07-25T19:17:11.010000"],["2024-07-25T19:17:12.010000"],["2024-07-25T19:17:13.010000"],["2024-07-25T19:17:14.010000"],["2024-07-25T19:17:15.010000"],["2024-07-25T19:17:16.010000"],["2024-07-25T19:17:17.010000"],["2024-07-25T19:17:18.010000"],["2024-07-25T19:17:19.010000"],["2024-07-25T19:17:20.010000"],["2024-07-25T19:17:21.010000"],["2024-07-25T19:17:22.010000"],["2024-07-25T19:17:23.010000"],["2024-07-25T19:17:24.010000"],["2024-07-25T19:17:25.010000"],["2024-07-25T19:17:26.010000"],["2024-07-25T19:17:27.010000"],["2024-07-25T19:17:28.010000"],["2024-07-25T19:17:29.010000"],["2024-07-25T19:17:30.010000"],["2024-07-25T19:17:31.010000"],["2024-07-25T19:17:32.010000"],["2024-07-25T19:17:33.010000"],["2024-07-25T19:17:34.010000"],["2024-07-25T19:17:35.010000"],["2024-07-25T19:17:36.010000"],["2024-07-25T19:17:37.010000"],["2024-07-25T19:17:38.010000"],["2024-07-25T19:17:39.010000"],["2024-07-25T19:17:40.010000"],["2024-07-25T19:17:41.010000"],["2024-07-25T19:17:42.010000"],["2024-07-25T19:17:43.010000"],["2024-07-25T19:17:44.010000"],["2024-07-25T19:17:45.010000"],["2024-07-25T19:17:46.010000"],["2024-07-25T19:17:47.010000"],["2024-07-25T19:17:48.010000"],["2024-07-25T19:17:49.010000"],["2024-07-25T19:17:50.010000"],["2024-07-25T19:17:51.010000"],["2024-07-25T19:17:52.010000"],["2024-07-25T19:17:53.010000"],["2024-07-25T19:17:54.010000"],["2024-07-25T19:17:55.010000"],["2024-07-25T19:17:56.010000"],["2024-07-25T19:17:57.010000"],["2024-07-25T19:17:58.010000"],["2024-07-25T19:17:59.010000"],["2024-07-25T19:18:00.010000"],["2024-07-25T19:18:01.010000"],["2024-07-25T19:18:02.010000"],["2024-07-25T19:18:03.010000"],["2024-07-25T19:18:04.010000"],["2024-07-25T19:18:05.010000"],["2024-07-25T19:18:06.010000"],["2024-07-25T19:18:07.010000"],["2024-07-25T19:18:08.010000"],["2024-07-25T19:18:09.010000"],["2024-07-25T19:18:10.010000"],["2024-07-25T19:18:11.010000"],["2024-07-25T19:18:12.010000"],["2024-07-25T19:18:13.010000"],["2024-07-25T19:18:14.010000"],["2024-07-25T19:18:15.010000"],["2024-07-25T19:18:16.010000"],["2024-07-25T19:18:17.010000"],["2024-07-25T19:18:18.010000"],["2024-07-25T19:18:19.010000"],["2024-07-25T19:18:20.010000"],["2024-07-25T19:18:21.010000"],["2024-07-25T19:18:22.010000"],["2024-07-25T19:18:23.010000"],["2024-07-25T19:18:24.010000"],["2024-07-25T19:18:25.010000"],["2024-07-25T19:18:26.010000"],["2024-07-25T19:18:27.010000"],["2024-07-25T19:18:28.010000"],["2024-07-25T19:18:29.010000"],["2024-07-25T19:18:30.010000"],["2024-07-25T19:18:31.010000"],["2024-07-25T19:18:32.010000"],["2024-07-25T19:18:33.010000"],["2024-07-25T19:18:34.010000"],["2024-07-25T19:18:35.010000"],["2024-07-25T19:18:36.010000"],["2024-07-25T19:18:37.010000"],["2024-07-25T19:18:38.010000"],["2024-07-25T19:18:39.010000"],["2024-07-25T19:18:40.010000"],["2024-07-25T19:18:41.010000"],["2024-07-25T19:18:42.010000"],["2024-07-25T19:18:43.010000"],["2024-07-25T19:18:44.010000"],["2024-07-25T19:18:45.010000"],["2024-07-25T19:18:46.010000"],["2024-07-25T19:18:47.010000"],["2024-07-25T19:18:48.010000"],["2024-07-25T19:18:49.010000"],["2024-07-25T19:18:50.010000"],["2024-07-25T19:18:51.010000"],["2024-07-25T19:18:52.010000"],["2024-07-25T19:18:53.010000"],["2024-07-25T19:18:54.010000"],["2024-07-25T19:18:55.010000"],["2024-07-25T19:18:56.010000"],["2024-07-25T19:18:57.010000"],["2024-07-25T19:18:58.010000"],["2024-07-25T19:18:59.010000"],["2024-07-25T19:19:00.010000"],["2024-07-25T19:19:01.010000"],["2024-07-25T19:19:02.010000"],["2024-07-25T19:19:03.010000"],["2024-07-25T19:19:04.010000"],["2024-07-25T19:19:05.010000"],["2024-07-25T19:19:06.010000"],["2024-07-25T19:19:07.010000"],["2024-07-25T19:19:08.010000"],["2024-07-25T19:19:09.010000"],["2024-07-25T19:19:10.010000"],["2024-07-25T19:19:11.010000"],["2024-07-25T19:19:12.010000"],["2024-07-25T19:19:13.010000"],["2024-07-25T19:19:14.010000"],["2024-07-25T19:19:15.010000"],["2024-07-25T19:19:16.010000"],["2024-07-25T19:19:17.010000"],["2024-07-25T19:19:18.010000"],["2024-07-25T19:19:19.010000"],["2024-07-25T19:19:20.010000"],["2024-07-25T19:19:21.010000"],["2024-07-25T19:19:22.010000"],["2024-07-25T19:19:23.010000"],["2024-07-25T19:19:24.010000"],["2024-07-25T19:19:25.010000"],["2024-07-25T19:19:26.010000"],["2024-07-25T19:19:27.010000"],["2024-07-25T19:19:28.010000"],["2024-07-25T19:19:29.010000"],["2024-07-25T19:19:30.010000"],["2024-07-25T19:19:31.010000"],["2024-07-25T19:19:32.010000"],["2024-07-25T19:19:33.010000"],["2024-07-25T19:19:34.010000"],["2024-07-25T19:19:35.010000"],["2024-07-25T19:19:36.010000"],["2024-07-25T19:19:37.010000"],["2024-07-25T19:19:38.010000"],["2024-07-25T19:19:39.010000"],["2024-07-25T19:19:40.010000"],["2024-07-25T19:19:41.010000"],["2024-07-25T19:19:42.010000"],["2024-07-25T19:19:43.010000"],["2024-07-25T19:19:44.010000"],["2024-07-25T19:19:45.010000"],["2024-07-25T19:19:46.010000"],["2024-07-25T19:19:47.010000"],["2024-07-25T19:19:48.010000"],["2024-07-25T19:19:49.010000"],["2024-07-25T19:19:50.010000"],["2024-07-25T19:19:51.010000"],["2024-07-25T19:19:52.010000"],["2024-07-25T19:19:53.010000"],["2024-07-25T19:19:54.010000"],["2024-07-25T19:19:55.010000"],["2024-07-25T19:19:56.010000"],["2024-07-25T19:19:57.010000"],["2024-07-25T19:19:58.010000"],["2024-07-25T19:19:59.010000"],["2024-07-25T19:20:00.010000"],["2024-07-25T19:20:01.010000"],["2024-07-25T19:20:02.010000"],["2024-07-25T19:20:03.010000"],["2024-07-25T19:20:04.010000"],["2024-07-25T19:20:05.010000"],["2024-07-25T19:20:06.010000"],["2024-07-25T19:20:07.010000"],["2024-07-25T19:20:08.010000"],["2024-07-25T19:20:09.010000"],["2024-07-25T19:20:10.010000"],["2024-07-25T19:20:11.010000"],["2024-07-25T19:20:12.010000"],["2024-07-25T19:20:13.010000"],["2024-07-25T19:20:14.010000"],["2024-07-25T19:20:15.010000"],["2024-07-25T19:20:16.010000"],["2024-07-25T19:20:17.010000"],["2024-07-25T19:20:18.010000"],["2024-07-25T19:20:19.010000"],["2024-07-25T19:20:20.010000"],["2024-07-25T19:20:21.010000"],["2024-07-25T19:20:22.010000"],["2024-07-25T19:20:23.010000"],["2024-07-25T19:20:24.010000"],["2024-07-25T19:20:25.010000"],["2024-07-25T19:20:26.010000"],["2024-07-25T19:20:27.010000"],["2024-07-25T19:20:28.010000"],["2024-07-25T19:20:29.010000"],["2024-07-25T19:20:30.010000"],["2024-07-25T19:20:31.010000"],["2024-07-25T19:20:32.010000"],["2024-07-25T19:20:33.010000"],["2024-07-25T19:20:34.010000"],["2024-07-25T19:20:35.010000"],["2024-07-25T19:20:36.010000"],["2024-07-25T19:20:37.010000"],["2024-07-25T19:20:38.010000"],["2024-07-25T19:20:39.010000"],["2024-07-25T19:20:40.010000"],["2024-07-25T19:20:41.010000"],["2024-07-25T19:20:42.010000"],["2024-07-25T19:20:43.010000"],["2024-07-25T19:20:44.010000"],["2024-07-25T19:20:45.010000"],["2024-07-25T19:20:46.010000"],["2024-07-25T19:20:47.010000"],["2024-07-25T19:20:48.010000"],["2024-07-25T19:20:49.010000"],["2024-07-25T19:20:50.010000"],["2024-07-25T19:20:51.010000"],["2024-07-25T19:20:52.010000"],["2024-07-25T19:20:53.010000"],["2024-07-25T19:20:54.010000"],["2024-07-25T19:20:55.010000"],["2024-07-25T19:20:56.010000"],["2024-07-25T19:20:57.010000"],["2024-07-25T19:20:58.010000"],["2024-07-25T19:20:59.010000"],["2024-07-25T19:21:00.010000"],["2024-07-25T19:21:01.010000"],["2024-07-25T19:21:02.010000"],["2024-07-25T19:21:03.010000"],["2024-07-25T19:21:04.010000"],["2024-07-25T19:21:05.010000"],["2024-07-25T19:21:06.010000"],["2024-07-25T19:21:07.010000"],["2024-07-25T19:21:08.010000"],["2024-07-25T19:21:09.010000"],["2024-07-25T19:21:10.010000"],["2024-07-25T19:21:11.010000"],["2024-07-25T19:21:12.010000"],["2024-07-25T19:21:13.010000"],["2024-07-25T19:21:14.010000"],["2024-07-25T19:21:15.010000"],["2024-07-25T19:21:16.010000"],["2024-07-25T19:21:17.010000"],["2024-07-25T19:21:18.010000"],["2024-07-25T19:21:19.010000"],["2024-07-25T19:21:20.010000"],["2024-07-25T19:21:21.010000"],["2024-07-25T19:21:22.010000"],["2024-07-25T19:21:23.010000"],["2024-07-25T19:21:24.010000"],["2024-07-25T19:21:25.010000"],["2024-07-25T19:21:26.010000"],["2024-07-25T19:21:27.010000"],["2024-07-25T19:21:28.010000"],["2024-07-25T19:21:29.010000"],["2024-07-25T19:21:30.010000"],["2024-07-25T19:21:31.010000"],["2024-07-25T19:21:32.010000"],["2024-07-25T19:21:33.010000"],["2024-07-25T19:21:34.010000"],["2024-07-25T19:21:35.010000"],["2024-07-25T19:21:36.010000"],["2024-07-25T19:21:37.010000"],["2024-07-25T19:21:38.010000"],["2024-07-25T19:21:39.010000"],["2024-07-25T19:21:40.010000"],["2024-07-25T19:21:41.010000"],["2024-07-25T19:21:42.010000"],["2024-07-25T19:21:43.010000"],["2024-07-25T19:21:44.010000"],["2024-07-25T19:21:45.010000"],["2024-07-25T19:21:46.010000"],["2024-07-25T19:21:47.010000"],["2024-07-25T19:21:48.010000"],["2024-07-25T19:21:49.010000"],["2024-07-25T19:21:50.010000"],["2024-07-25T19:21:51.010000"],["2024-07-25T19:21:52.010000"],["2024-07-25T19:21:53.010000"],["2024-07-25T19:21:54.010000"],["2024-07-25T19:21:55.010000"],["2024-07-25T19:21:56.010000"],["2024-07-25T19:21:57.010000"],["2024-07-25T19:21:58.010000"],["2024-07-25T19:21:59.010000"],["2024-07-25T19:22:00.010000"],["2024-07-25T19:22:01.010000"],["2024-07-25T19:22:02.010000"],["2024-07-25T19:22:03.010000"],["2024-07-25T19:22:04.010000"],["2024-07-25T19:22:05.010000"],["2024-07-25T19:22:06.010000"],["2024-07-25T19:22:07.010000"],["2024-07-25T19:22:08.010000"],["2024-07-25T19:22:09.010000"],["2024-07-25T19:22:10.010000"],["2024-07-25T19:22:11.010000"],["2024-07-25T19:22:12.010000"],["2024-07-25T19:22:13.010000"],["2024-07-25T19:22:14.010000"],["2024-07-25T19:22:15.010000"],["2024-07-25T19:22:16.010000"],["2024-07-25T19:22:17.010000"],["2024-07-25T19:22:18.010000"],["2024-07-25T19:22:19.010000"],["2024-07-25T19:22:20.010000"],["2024-07-25T19:22:21.010000"],["2024-07-25T19:22:22.010000"],["2024-07-25T19:22:23.010000"],["2024-07-25T19:22:24.010000"],["2024-07-25T19:22:25.010000"],["2024-07-25T19:22:26.010000"],["2024-07-25T19:22:27.010000"],["2024-07-25T19:22:28.010000"],["2024-07-25T19:22:29.010000"],["2024-07-25T19:22:30.010000"],["2024-07-25T19:22:31.010000"],["2024-07-25T19:22:32.010000"],["2024-07-25T19:22:33.010000"],["2024-07-25T19:22:34.010000"],["2024-07-25T19:22:35.010000"],["2024-07-25T19:22:36.010000"],["2024-07-25T19:22:37.010000"],["2024-07-25T19:22:38.010000"],["2024-07-25T19:22:39.010000"],["2024-07-25T19:22:40.010000"],["2024-07-25T19:22:41.010000"],["2024-07-25T19:22:42.010000"],["2024-07-25T19:22:43.010000"],["2024-07-25T19:22:44.010000"],["2024-07-25T19:22:45.010000"],["2024-07-25T19:22:46.010000"],["2024-07-25T19:22:47.010000"],["2024-07-25T19:22:48.010000"],["2024-07-25T19:22:49.010000"],["2024-07-25T19:22:50.010000"],["2024-07-25T19:22:51.010000"],["2024-07-25T19:22:52.010000"],["2024-07-25T19:22:53.010000"],["2024-07-25T19:22:54.010000"],["2024-07-25T19:22:55.010000"],["2024-07-25T19:22:56.010000"],["2024-07-25T19:22:57.010000"],["2024-07-25T19:22:58.010000"],["2024-07-25T19:22:59.010000"],["2024-07-25T19:23:00.010000"],["2024-07-25T19:23:01.010000"],["2024-07-25T19:23:02.010000"],["2024-07-25T19:23:03.010000"],["2024-07-25T19:23:04.010000"],["2024-07-25T19:23:05.010000"],["2024-07-25T19:23:06.010000"],["2024-07-25T19:23:07.010000"],["2024-07-25T19:23:08.010000"],["2024-07-25T19:23:09.010000"],["2024-07-25T19:23:10.010000"],["2024-07-25T19:23:11.010000"],["2024-07-25T19:23:12.010000"],["2024-07-25T19:23:13.010000"],["2024-07-25T19:23:14.010000"],["2024-07-25T19:23:15.010000"],["2024-07-25T19:23:16.010000"],["2024-07-25T19:23:17.010000"],["2024-07-25T19:23:18.010000"],["2024-07-25T19:23:19.010000"],["2024-07-25T19:23:20.010000"],["2024-07-25T19:23:21.010000"],["2024-07-25T19:23:22.010000"],["2024-07-25T19:23:23.010000"],["2024-07-25T19:23:24.010000"],["2024-07-25T19:23:25.010000"],["2024-07-25T19:23:26.010000"],["2024-07-25T19:23:27.010000"],["2024-07-25T19:23:28.010000"],["2024-07-25T19:23:29.010000"],["2024-07-25T19:23:30.010000"],["2024-07-25T19:23:31.010000"],["2024-07-25T19:23:32.010000"],["2024-07-25T19:23:33.010000"],["2024-07-25T19:23:34.010000"],["2024-07-25T19:23:35.010000"],["2024-07-25T19:23:36.010000"],["2024-07-25T19:23:37.010000"],["2024-07-25T19:23:38.010000"],["2024-07-25T19:23:39.010000"],["2024-07-25T19:23:40.010000"],["2024-07-25T19:23:41.010000"],["2024-07-25T19:23:42.010000"],["2024-07-25T19:23:43.010000"],["2024-07-25T19:23:44.010000"],["2024-07-25T19:23:45.010000"],["2024-07-25T19:23:46.010000"],["2024-07-25T19:23:47.010000"],["2024-07-25T19:23:48.010000"],["2024-07-25T19:23:49.010000"],["2024-07-25T19:23:50.010000"],["2024-07-25T19:23:51.010000"],["2024-07-25T19:23:52.010000"],["2024-07-25T19:23:53.010000"],["2024-07-25T19:23:54.010000"],["2024-07-25T19:23:55.010000"],["2024-07-25T19:23:56.010000"],["2024-07-25T19:23:57.010000"],["2024-07-25T19:23:58.010000"],["2024-07-25T19:23:59.010000"],["2024-07-25T19:24:00.010000"],["2024-07-25T19:24:01.010000"],["2024-07-25T19:24:02.010000"],["2024-07-25T19:24:03.010000"],["2024-07-25T19:24:04.010000"],["2024-07-25T19:24:05.010000"],["2024-07-25T19:24:06.010000"],["2024-07-25T19:24:07.010000"],["2024-07-25T19:24:08.010000"],["2024-07-25T19:24:09.010000"],["2024-07-25T19:24:10.010000"],["2024-07-25T19:24:11.010000"],["2024-07-25T19:24:12.010000"],["2024-07-25T19:24:13.010000"],["2024-07-25T19:24:14.010000"],["2024-07-25T19:24:15.010000"],["2024-07-25T19:24:16.010000"],["2024-07-25T19:24:17.010000"],["2024-07-25T19:24:18.010000"],["2024-07-25T19:24:19.010000"],["2024-07-25T19:24:20.010000"],["2024-07-25T19:24:21.010000"],["2024-07-25T19:24:22.010000"],["2024-07-25T19:24:23.010000"],["2024-07-25T19:24:24.010000"],["2024-07-25T19:24:25.010000"],["2024-07-25T19:24:26.010000"],["2024-07-25T19:24:27.010000"],["2024-07-25T19:24:28.010000"],["2024-07-25T19:24:29.010000"],["2024-07-25T19:24:30.010000"],["2024-07-25T19:24:31.010000"],["2024-07-25T19:24:32.010000"],["2024-07-25T19:24:33.010000"],["2024-07-25T19:24:34.010000"],["2024-07-25T19:24:35.010000"],["2024-07-25T19:24:36.010000"],["2024-07-25T19:24:37.010000"],["2024-07-25T19:24:38.010000"],["2024-07-25T19:24:39.010000"],["2024-07-25T19:24:40.010000"],["2024-07-25T19:24:41.010000"],["2024-07-25T19:24:42.010000"],["2024-07-25T19:24:43.010000"],["2024-07-25T19:24:44.010000"],["2024-07-25T19:24:45.010000"],["2024-07-25T19:24:46.010000"],["2024-07-25T19:24:47.010000"],["2024-07-25T19:24:48.010000"],["2024-07-25T19:24:49.010000"],["2024-07-25T19:24:50.010000"],["2024-07-25T19:24:51.010000"],["2024-07-25T19:24:52.010000"],["2024-07-25T19:24:53.010000"],["2024-07-25T19:24:54.010000"],["2024-07-25T19:24:55.010000"],["2024-07-25T19:24:56.010000"],["2024-07-25T19:24:57.010000"],["2024-07-25T19:24:58.010000"],["2024-07-25T19:24:59.010000"],["2024-07-25T19:25:00.010000"],["2024-07-25T19:25:01.010000"],["2024-07-25T19:25:02.010000"],["2024-07-25T19:25:03.010000"],["2024-07-25T19:25:04.010000"],["2024-07-25T19:25:05.010000"],["2024-07-25T19:25:06.010000"],["2024-07-25T19:25:07.010000"],["2024-07-25T19:25:08.010000"],["2024-07-25T19:25:09.010000"],["2024-07-25T19:25:10.010000"],["2024-07-25T19:25:11.010000"],["2024-07-25T19:25:12.010000"],["2024-07-25T19:25:13.010000"],["2024-07-25T19:25:14.010000"],["2024-07-25T19:25:15.010000"],["2024-07-25T19:25:16.010000"],["2024-07-25T19:25:17.010000"],["2024-07-25T19:25:18.010000"],["2024-07-25T19:25:19.010000"],["2024-07-25T19:25:20.010000"],["2024-07-25T19:25:21.010000"],["2024-07-25T19:25:22.010000"],["2024-07-25T19:25:23.010000"],["2024-07-25T19:25:24.010000"],["2024-07-25T19:25:25.010000"],["2024-07-25T19:25:26.010000"],["2024-07-25T19:25:27.010000"],["2024-07-25T19:25:28.010000"],["2024-07-25T19:25:29.010000"],["2024-07-25T19:25:30.010000"],["2024-07-25T19:25:31.010000"],["2024-07-25T19:25:32.010000"],["2024-07-25T19:25:33.010000"],["2024-07-25T19:25:34.010000"],["2024-07-25T19:25:35.010000"],["2024-07-25T19:25:36.010000"],["2024-07-25T19:25:37.010000"],["2024-07-25T19:25:38.010000"],["2024-07-25T19:25:39.010000"],["2024-07-25T19:25:40.010000"],["2024-07-25T19:25:41.010000"],["2024-07-25T19:25:42.010000"],["2024-07-25T19:25:43.010000"],["2024-07-25T19:25:44.010000"],["2024-07-25T19:25:45.010000"],["2024-07-25T19:25:46.010000"],["2024-07-25T19:25:47.010000"],["2024-07-25T19:25:48.010000"],["2024-07-25T19:25:49.010000"],["2024-07-25T19:25:50.010000"],["2024-07-25T19:25:51.010000"],["2024-07-25T19:25:52.010000"],["2024-07-25T19:25:53.010000"],["2024-07-25T19:25:54.010000"],["2024-07-25T19:25:55.010000"],["2024-07-25T19:25:56.010000"],["2024-07-25T19:25:57.010000"],["2024-07-25T19:25:58.010000"],["2024-07-25T19:25:59.010000"],["2024-07-25T19:26:00.010000"],["2024-07-25T19:26:01.010000"],["2024-07-25T19:26:02.010000"],["2024-07-25T19:26:03.010000"],["2024-07-25T19:26:04.010000"],["2024-07-25T19:26:05.010000"],["2024-07-25T19:26:06.010000"],["2024-07-25T19:26:07.010000"],["2024-07-25T19:26:08.010000"],["2024-07-25T19:26:09.010000"],["2024-07-25T19:26:10.010000"],["2024-07-25T19:26:11.010000"],["2024-07-25T19:26:12.010000"],["2024-07-25T19:26:13.010000"],["2024-07-25T19:26:14.010000"],["2024-07-25T19:26:15.010000"],["2024-07-25T19:26:16.010000"],["2024-07-25T19:26:17.010000"],["2024-07-25T19:26:18.010000"],["2024-07-25T19:26:19.010000"],["2024-07-25T19:26:20.010000"],["2024-07-25T19:26:21.010000"],["2024-07-25T19:26:22.010000"],["2024-07-25T19:26:23.010000"],["2024-07-25T19:26:24.010000"],["2024-07-25T19:26:25.010000"],["2024-07-25T19:26:26.010000"],["2024-07-25T19:26:27.010000"],["2024-07-25T19:26:28.010000"],["2024-07-25T19:26:29.010000"],["2024-07-25T19:26:30.010000"],["2024-07-25T19:26:31.010000"],["2024-07-25T19:26:32.010000"],["2024-07-25T19:26:33.010000"],["2024-07-25T19:26:34.010000"],["2024-07-25T19:26:35.010000"],["2024-07-25T19:26:36.010000"],["2024-07-25T19:26:37.010000"],["2024-07-25T19:26:38.010000"],["2024-07-25T19:26:39.010000"],["2024-07-25T19:26:40.010000"],["2024-07-25T19:26:41.010000"],["2024-07-25T19:26:42.010000"],["2024-07-25T19:26:43.010000"],["2024-07-25T19:26:44.010000"],["2024-07-25T19:26:45.010000"],["2024-07-25T19:26:46.010000"],["2024-07-25T19:26:47.010000"],["2024-07-25T19:26:48.010000"],["2024-07-25T19:26:49.010000"],["2024-07-25T19:26:50.010000"],["2024-07-25T19:26:51.010000"],["2024-07-25T19:26:52.010000"],["2024-07-25T19:26:53.010000"],["2024-07-25T19:26:54.010000"],["2024-07-25T19:26:55.010000"],["2024-07-25T19:26:56.010000"],["2024-07-25T19:26:57.010000"],["2024-07-25T19:26:58.010000"],["2024-07-25T19:26:59.010000"],["2024-07-25T19:27:00.010000"],["2024-07-25T19:27:01.010000"],["2024-07-25T19:27:02.010000"],["2024-07-25T19:27:03.010000"],["2024-07-25T19:27:04.010000"],["2024-07-25T19:27:05.010000"],["2024-07-25T19:27:06.010000"],["2024-07-25T19:27:07.010000"],["2024-07-25T19:27:08.010000"],["2024-07-25T19:27:09.010000"],["2024-07-25T19:27:10.010000"],["2024-07-25T19:27:11.010000"],["2024-07-25T19:27:12.010000"],["2024-07-25T19:27:13.010000"],["2024-07-25T19:27:14.010000"],["2024-07-25T19:27:15.010000"],["2024-07-25T19:27:16.010000"],["2024-07-25T19:27:17.010000"],["2024-07-25T19:27:18.010000"],["2024-07-25T19:27:19.010000"],["2024-07-25T19:27:20.010000"],["2024-07-25T19:27:21.010000"],["2024-07-25T19:27:22.010000"],["2024-07-25T19:27:23.010000"],["2024-07-25T19:27:24.010000"],["2024-07-25T19:27:25.010000"],["2024-07-25T19:27:26.010000"],["2024-07-25T19:27:27.010000"],["2024-07-25T19:27:28.010000"],["2024-07-25T19:27:29.010000"],["2024-07-25T19:27:30.010000"],["2024-07-25T19:27:31.010000"],["2024-07-25T19:27:32.010000"],["2024-07-25T19:27:33.010000"],["2024-07-25T19:27:34.010000"],["2024-07-25T19:27:35.010000"],["2024-07-25T19:27:36.010000"],["2024-07-25T19:27:37.010000"],["2024-07-25T19:27:38.010000"],["2024-07-25T19:27:39.010000"],["2024-07-25T19:27:40.010000"],["2024-07-25T19:27:41.010000"],["2024-07-25T19:27:42.010000"],["2024-07-25T19:27:43.010000"],["2024-07-25T19:27:44.010000"],["2024-07-25T19:27:45.010000"],["2024-07-25T19:27:46.010000"],["2024-07-25T19:27:47.010000"],["2024-07-25T19:27:48.010000"],["2024-07-25T19:27:49.010000"],["2024-07-25T19:27:50.010000"],["2024-07-25T19:27:51.010000"],["2024-07-25T19:27:52.010000"],["2024-07-25T19:27:53.010000"],["2024-07-25T19:27:54.010000"],["2024-07-25T19:27:55.010000"],["2024-07-25T19:27:56.010000"],["2024-07-25T19:27:57.010000"],["2024-07-25T19:27:58.010000"],["2024-07-25T19:27:59.010000"],["2024-07-25T19:28:00.010000"],["2024-07-25T19:28:01.010000"],["2024-07-25T19:28:02.010000"],["2024-07-25T19:28:03.010000"],["2024-07-25T19:28:04.010000"],["2024-07-25T19:28:05.010000"],["2024-07-25T19:28:06.010000"],["2024-07-25T19:28:07.010000"],["2024-07-25T19:28:08.010000"],["2024-07-25T19:28:09.010000"],["2024-07-25T19:28:10.010000"],["2024-07-25T19:28:11.010000"],["2024-07-25T19:28:12.010000"],["2024-07-25T19:28:13.010000"],["2024-07-25T19:28:14.010000"],["2024-07-25T19:28:15.010000"],["2024-07-25T19:28:16.010000"],["2024-07-25T19:28:17.010000"],["2024-07-25T19:28:18.010000"],["2024-07-25T19:28:19.010000"],["2024-07-25T19:28:20.010000"],["2024-07-25T19:28:21.010000"],["2024-07-25T19:28:22.010000"],["2024-07-25T19:28:23.010000"],["2024-07-25T19:28:24.010000"],["2024-07-25T19:28:25.010000"],["2024-07-25T19:28:26.010000"],["2024-07-25T19:28:27.010000"],["2024-07-25T19:28:28.010000"],["2024-07-25T19:28:29.010000"],["2024-07-25T19:28:30.010000"],["2024-07-25T19:28:31.010000"],["2024-07-25T19:28:32.010000"],["2024-07-25T19:28:33.010000"],["2024-07-25T19:28:34.010000"],["2024-07-25T19:28:35.010000"],["2024-07-25T19:28:36.010000"],["2024-07-25T19:28:37.010000"],["2024-07-25T19:28:38.010000"],["2024-07-25T19:28:39.010000"],["2024-07-25T19:28:40.010000"],["2024-07-25T19:28:41.010000"],["2024-07-25T19:28:42.010000"],["2024-07-25T19:28:43.010000"],["2024-07-25T19:28:44.010000"],["2024-07-25T19:28:45.010000"],["2024-07-25T19:28:46.010000"],["2024-07-25T19:28:47.010000"],["2024-07-25T19:28:48.010000"],["2024-07-25T19:28:49.010000"],["2024-07-25T19:28:50.010000"],["2024-07-25T19:28:51.010000"],["2024-07-25T19:28:52.010000"],["2024-07-25T19:28:53.010000"],["2024-07-25T19:28:54.010000"],["2024-07-25T19:28:55.010000"],["2024-07-25T19:28:56.010000"],["2024-07-25T19:28:57.010000"],["2024-07-25T19:28:58.010000"],["2024-07-25T19:28:59.010000"],["2024-07-25T19:29:00.010000"],["2024-07-25T19:29:01.010000"],["2024-07-25T19:29:02.010000"],["2024-07-25T19:29:03.010000"],["2024-07-25T19:29:04.010000"],["2024-07-25T19:29:05.010000"],["2024-07-25T19:29:06.010000"],["2024-07-25T19:29:07.010000"],["2024-07-25T19:29:08.010000"],["2024-07-25T19:29:09.010000"],["2024-07-25T19:29:10.010000"],["2024-07-25T19:29:11.010000"],["2024-07-25T19:29:12.010000"],["2024-07-25T19:29:13.010000"],["2024-07-25T19:29:14.010000"],["2024-07-25T19:29:15.010000"],["2024-07-25T19:29:16.010000"],["2024-07-25T19:29:17.010000"],["2024-07-25T19:29:18.010000"],["2024-07-25T19:29:19.010000"],["2024-07-25T19:29:20.010000"],["2024-07-25T19:29:21.010000"],["2024-07-25T19:29:22.010000"],["2024-07-25T19:29:23.010000"],["2024-07-25T19:29:24.010000"],["2024-07-25T19:29:25.010000"],["2024-07-25T19:29:26.010000"],["2024-07-25T19:29:27.010000"],["2024-07-25T19:29:28.010000"],["2024-07-25T19:29:29.010000"],["2024-07-25T19:29:30.010000"],["2024-07-25T19:29:31.010000"],["2024-07-25T19:29:32.010000"],["2024-07-25T19:29:33.010000"],["2024-07-25T19:29:34.010000"],["2024-07-25T19:29:35.010000"],["2024-07-25T19:29:36.010000"],["2024-07-25T19:29:37.010000"],["2024-07-25T19:29:38.010000"],["2024-07-25T19:29:39.010000"],["2024-07-25T19:29:40.010000"],["2024-07-25T19:29:41.010000"],["2024-07-25T19:29:42.010000"],["2024-07-25T19:29:43.010000"],["2024-07-25T19:29:44.010000"],["2024-07-25T19:29:45.010000"],["2024-07-25T19:29:46.010000"],["2024-07-25T19:29:47.010000"],["2024-07-25T19:29:48.010000"],["2024-07-25T19:29:49.010000"],["2024-07-25T19:29:50.010000"],["2024-07-25T19:29:51.010000"],["2024-07-25T19:29:52.010000"],["2024-07-25T19:29:53.010000"],["2024-07-25T19:29:54.010000"],["2024-07-25T19:29:55.010000"],["2024-07-25T19:29:56.010000"],["2024-07-25T19:29:57.010000"],["2024-07-25T19:29:58.010000"],["2024-07-25T19:29:59.010000"],["2024-07-25T19:30:00.010000"],["2024-07-25T19:30:01.010000"],["2024-07-25T19:30:02.010000"],["2024-07-25T19:30:03.010000"],["2024-07-25T19:30:04.010000"],["2024-07-25T19:30:05.010000"],["2024-07-25T19:30:06.010000"],["2024-07-25T19:30:07.010000"],["2024-07-25T19:30:08.010000"],["2024-07-25T19:30:09.010000"],["2024-07-25T19:30:10.010000"],["2024-07-25T19:30:11.010000"],["2024-07-25T19:30:12.010000"],["2024-07-25T19:30:13.010000"],["2024-07-25T19:30:14.010000"],["2024-07-25T19:30:15.010000"],["2024-07-25T19:30:16.010000"],["2024-07-25T19:30:17.010000"],["2024-07-25T19:30:18.010000"],["2024-07-25T19:30:19.010000"],["2024-07-25T19:30:20.010000"],["2024-07-25T19:30:21.010000"],["2024-07-25T19:30:22.010000"],["2024-07-25T19:30:23.010000"],["2024-07-25T19:30:24.010000"],["2024-07-25T19:30:25.010000"],["2024-07-25T19:30:26.010000"],["2024-07-25T19:30:27.010000"],["2024-07-25T19:30:28.010000"],["2024-07-25T19:30:29.010000"],["2024-07-25T19:30:30.010000"],["2024-07-25T19:30:31.010000"],["2024-07-25T19:30:32.010000"],["2024-07-25T19:30:33.010000"],["2024-07-25T19:30:34.010000"],["2024-07-25T19:30:35.010000"],["2024-07-25T19:30:36.010000"],["2024-07-25T19:30:37.010000"],["2024-07-25T19:30:38.010000"],["2024-07-25T19:30:39.010000"],["2024-07-25T19:30:40.010000"],["2024-07-25T19:30:41.010000"],["2024-07-25T19:30:42.010000"],["2024-07-25T19:30:43.010000"],["2024-07-25T19:30:44.010000"],["2024-07-25T19:30:45.010000"],["2024-07-25T19:30:46.010000"],["2024-07-25T19:30:47.010000"],["2024-07-25T19:30:48.010000"],["2024-07-25T19:30:49.010000"],["2024-07-25T19:30:50.010000"],["2024-07-25T19:30:51.010000"],["2024-07-25T19:30:52.010000"],["2024-07-25T19:30:53.010000"],["2024-07-25T19:30:54.010000"],["2024-07-25T19:30:55.010000"],["2024-07-25T19:30:56.010000"],["2024-07-25T19:30:57.010000"],["2024-07-25T19:30:58.010000"],["2024-07-25T19:30:59.010000"],["2024-07-25T19:31:00.010000"],["2024-07-25T19:31:01.010000"],["2024-07-25T19:31:02.010000"],["2024-07-25T19:31:03.010000"],["2024-07-25T19:31:04.010000"],["2024-07-25T19:31:05.010000"],["2024-07-25T19:31:06.010000"],["2024-07-25T19:31:07.010000"],["2024-07-25T19:31:08.010000"],["2024-07-25T19:31:09.010000"],["2024-07-25T19:31:10.010000"],["2024-07-25T19:31:11.010000"],["2024-07-25T19:31:12.010000"],["2024-07-25T19:31:13.010000"],["2024-07-25T19:31:14.010000"],["2024-07-25T19:31:15.010000"],["2024-07-25T19:31:16.010000"],["2024-07-25T19:31:17.010000"],["2024-07-25T19:31:18.010000"],["2024-07-25T19:31:19.010000"],["2024-07-25T19:31:20.010000"],["2024-07-25T19:31:21.010000"],["2024-07-25T19:31:22.010000"],["2024-07-25T19:31:23.010000"],["2024-07-25T19:31:24.010000"],["2024-07-25T19:31:25.010000"],["2024-07-25T19:31:26.010000"],["2024-07-25T19:31:27.010000"],["2024-07-25T19:31:28.010000"],["2024-07-25T19:31:29.010000"],["2024-07-25T19:31:30.010000"],["2024-07-25T19:31:31.010000"],["2024-07-25T19:31:32.010000"],["2024-07-25T19:31:33.010000"],["2024-07-25T19:31:34.010000"],["2024-07-25T19:31:35.010000"],["2024-07-25T19:31:36.010000"],["2024-07-25T19:31:37.010000"],["2024-07-25T19:31:38.010000"],["2024-07-25T19:31:39.010000"],["2024-07-25T19:31:40.010000"],["2024-07-25T19:31:41.010000"],["2024-07-25T19:31:42.010000"],["2024-07-25T19:31:43.010000"],["2024-07-25T19:31:44.010000"],["2024-07-25T19:31:45.010000"],["2024-07-25T19:31:46.010000"],["2024-07-25T19:31:47.010000"],["2024-07-25T19:31:48.010000"],["2024-07-25T19:31:49.010000"],["2024-07-25T19:31:50.010000"],["2024-07-25T19:31:51.010000"],["2024-07-25T19:31:52.010000"],["2024-07-25T19:31:53.010000"],["2024-07-25T19:31:54.010000"],["2024-07-25T19:31:55.010000"],["2024-07-25T19:31:56.010000"],["2024-07-25T19:31:57.010000"],["2024-07-25T19:31:58.010000"],["2024-07-25T19:31:59.010000"],["2024-07-25T19:32:00.010000"],["2024-07-25T19:32:01.010000"],["2024-07-25T19:32:02.010000"],["2024-07-25T19:32:03.010000"],["2024-07-25T19:32:04.010000"],["2024-07-25T19:32:05.010000"],["2024-07-25T19:32:06.010000"],["2024-07-25T19:32:07.010000"],["2024-07-25T19:32:08.010000"],["2024-07-25T19:32:09.010000"],["2024-07-25T19:32:10.010000"],["2024-07-25T19:32:11.010000"],["2024-07-25T19:32:12.010000"],["2024-07-25T19:32:13.010000"],["2024-07-25T19:32:14.010000"],["2024-07-25T19:32:15.010000"],["2024-07-25T19:32:16.010000"],["2024-07-25T19:32:17.010000"],["2024-07-25T19:32:18.010000"],["2024-07-25T19:32:19.010000"],["2024-07-25T19:32:20.010000"],["2024-07-25T19:32:21.010000"],["2024-07-25T19:32:22.010000"],["2024-07-25T19:32:23.010000"],["2024-07-25T19:32:24.010000"],["2024-07-25T19:32:25.010000"],["2024-07-25T19:32:26.010000"],["2024-07-25T19:32:27.010000"],["2024-07-25T19:32:28.010000"],["2024-07-25T19:32:29.010000"],["2024-07-25T19:32:30.010000"],["2024-07-25T19:32:31.010000"],["2024-07-25T19:32:32.010000"],["2024-07-25T19:32:33.010000"],["2024-07-25T19:32:34.010000"],["2024-07-25T19:32:35.010000"],["2024-07-25T19:32:36.010000"],["2024-07-25T19:32:37.010000"],["2024-07-25T19:32:38.010000"],["2024-07-25T19:32:39.010000"],["2024-07-25T19:32:40.010000"],["2024-07-25T19:32:41.010000"],["2024-07-25T19:32:42.010000"],["2024-07-25T19:32:43.010000"],["2024-07-25T19:32:44.010000"],["2024-07-25T19:32:45.010000"],["2024-07-25T19:32:46.010000"],["2024-07-25T19:32:47.010000"],["2024-07-25T19:32:48.010000"],["2024-07-25T19:32:49.010000"],["2024-07-25T19:32:50.010000"],["2024-07-25T19:32:51.010000"],["2024-07-25T19:32:52.010000"],["2024-07-25T19:32:53.010000"],["2024-07-25T19:32:54.010000"],["2024-07-25T19:32:55.010000"],["2024-07-25T19:32:56.010000"],["2024-07-25T19:32:57.010000"],["2024-07-25T19:32:58.010000"],["2024-07-25T19:32:59.010000"],["2024-07-25T19:33:00.010000"],["2024-07-25T19:33:01.010000"],["2024-07-25T19:33:02.010000"],["2024-07-25T19:33:03.010000"],["2024-07-25T19:33:04.010000"],["2024-07-25T19:33:05.010000"],["2024-07-25T19:33:06.010000"],["2024-07-25T19:33:07.010000"],["2024-07-25T19:33:08.010000"],["2024-07-25T19:33:09.010000"],["2024-07-25T19:33:10.010000"],["2024-07-25T19:33:11.010000"],["2024-07-25T19:33:12.010000"],["2024-07-25T19:33:13.010000"],["2024-07-25T19:33:14.010000"],["2024-07-25T19:33:15.010000"],["2024-07-25T19:33:16.010000"],["2024-07-25T19:33:17.010000"],["2024-07-25T19:33:18.010000"],["2024-07-25T19:33:19.010000"],["2024-07-25T19:33:20.010000"],["2024-07-25T19:33:21.010000"],["2024-07-25T19:33:22.010000"],["2024-07-25T19:33:23.010000"],["2024-07-25T19:33:24.010000"],["2024-07-25T19:33:25.010000"],["2024-07-25T19:33:26.010000"],["2024-07-25T19:33:27.010000"],["2024-07-25T19:33:28.010000"],["2024-07-25T19:33:29.010000"],["2024-07-25T19:33:30.010000"],["2024-07-25T19:33:31.010000"],["2024-07-25T19:33:32.010000"],["2024-07-25T19:33:33.010000"],["2024-07-25T19:33:34.010000"],["2024-07-25T19:33:35.010000"],["2024-07-25T19:33:36.010000"],["2024-07-25T19:33:37.010000"],["2024-07-25T19:33:38.010000"],["2024-07-25T19:33:39.010000"],["2024-07-25T19:33:40.010000"],["2024-07-25T19:33:41.010000"],["2024-07-25T19:33:42.010000"],["2024-07-25T19:33:43.010000"],["2024-07-25T19:33:44.010000"],["2024-07-25T19:33:45.010000"],["2024-07-25T19:33:46.010000"],["2024-07-25T19:33:47.010000"],["2024-07-25T19:33:48.010000"],["2024-07-25T19:33:49.010000"],["2024-07-25T19:33:50.010000"],["2024-07-25T19:33:51.010000"],["2024-07-25T19:33:52.010000"],["2024-07-25T19:33:53.010000"],["2024-07-25T19:33:54.010000"],["2024-07-25T19:33:55.010000"],["2024-07-25T19:33:56.010000"],["2024-07-25T19:33:57.010000"],["2024-07-25T19:33:58.010000"],["2024-07-25T19:33:59.010000"],["2024-07-25T19:34:00.010000"],["2024-07-25T19:34:01.010000"],["2024-07-25T19:34:02.010000"],["2024-07-25T19:34:03.010000"],["2024-07-25T19:34:04.010000"],["2024-07-25T19:34:05.010000"],["2024-07-25T19:34:06.010000"],["2024-07-25T19:34:07.010000"],["2024-07-25T19:34:08.010000"],["2024-07-25T19:34:09.010000"],["2024-07-25T19:34:10.010000"],["2024-07-25T19:34:11.010000"],["2024-07-25T19:34:12.010000"],["2024-07-25T19:34:13.010000"],["2024-07-25T19:34:14.010000"],["2024-07-25T19:34:15.010000"],["2024-07-25T19:34:16.010000"],["2024-07-25T19:34:17.010000"],["2024-07-25T19:34:18.010000"],["2024-07-25T19:34:19.010000"],["2024-07-25T19:34:20.010000"],["2024-07-25T19:34:21.010000"],["2024-07-25T19:34:22.010000"],["2024-07-25T19:34:23.010000"],["2024-07-25T19:34:24.010000"],["2024-07-25T19:34:25.010000"],["2024-07-25T19:34:26.010000"],["2024-07-25T19:34:27.010000"],["2024-07-25T19:34:28.010000"],["2024-07-25T19:34:29.010000"],["2024-07-25T19:34:30.010000"],["2024-07-25T19:34:31.010000"],["2024-07-25T19:34:32.010000"],["2024-07-25T19:34:33.010000"],["2024-07-25T19:34:34.010000"],["2024-07-25T19:34:35.010000"],["2024-07-25T19:34:36.010000"],["2024-07-25T19:34:37.010000"],["2024-07-25T19:34:38.010000"],["2024-07-25T19:34:39.010000"],["2024-07-25T19:34:40.010000"],["2024-07-25T19:34:41.010000"],["2024-07-25T19:34:42.010000"],["2024-07-25T19:34:43.010000"],["2024-07-25T19:34:44.010000"],["2024-07-25T19:34:45.010000"],["2024-07-25T19:34:46.010000"],["2024-07-25T19:34:47.010000"],["2024-07-25T19:34:48.010000"],["2024-07-25T19:34:49.010000"],["2024-07-25T19:34:50.010000"],["2024-07-25T19:34:51.010000"],["2024-07-25T19:34:52.010000"],["2024-07-25T19:34:53.010000"],["2024-07-25T19:34:54.010000"],["2024-07-25T19:34:55.010000"],["2024-07-25T19:34:56.010000"],["2024-07-25T19:34:57.010000"],["2024-07-25T19:34:58.010000"],["2024-07-25T19:34:59.010000"],["2024-07-25T19:35:00.010000"],["2024-07-25T19:35:01.010000"],["2024-07-25T19:35:02.010000"],["2024-07-25T19:35:03.010000"],["2024-07-25T19:35:04.010000"],["2024-07-25T19:35:05.010000"],["2024-07-25T19:35:06.010000"],["2024-07-25T19:35:07.010000"],["2024-07-25T19:35:08.010000"],["2024-07-25T19:35:09.010000"],["2024-07-25T19:35:10.010000"],["2024-07-25T19:35:11.010000"],["2024-07-25T19:35:12.010000"],["2024-07-25T19:35:13.010000"],["2024-07-25T19:35:14.010000"],["2024-07-25T19:35:15.010000"],["2024-07-25T19:35:16.010000"],["2024-07-25T19:35:17.010000"],["2024-07-25T19:35:18.010000"],["2024-07-25T19:35:19.010000"],["2024-07-25T19:35:20.010000"],["2024-07-25T19:35:21.010000"],["2024-07-25T19:35:22.010000"],["2024-07-25T19:35:23.010000"],["2024-07-25T19:35:24.010000"],["2024-07-25T19:35:25.010000"],["2024-07-25T19:35:26.010000"],["2024-07-25T19:35:27.010000"],["2024-07-25T19:35:28.010000"],["2024-07-25T19:35:29.010000"],["2024-07-25T19:35:30.010000"],["2024-07-25T19:35:31.010000"],["2024-07-25T19:35:32.010000"],["2024-07-25T19:35:33.010000"],["2024-07-25T19:35:34.010000"],["2024-07-25T19:35:35.010000"],["2024-07-25T19:35:36.010000"],["2024-07-25T19:35:37.010000"],["2024-07-25T19:35:38.010000"],["2024-07-25T19:35:39.010000"],["2024-07-25T19:35:40.010000"],["2024-07-25T19:35:41.010000"],["2024-07-25T19:35:42.010000"],["2024-07-25T19:35:43.010000"],["2024-07-25T19:35:44.010000"],["2024-07-25T19:35:45.010000"],["2024-07-25T19:35:46.010000"],["2024-07-25T19:35:47.010000"],["2024-07-25T19:35:48.010000"],["2024-07-25T19:35:49.010000"],["2024-07-25T19:35:50.010000"],["2024-07-25T19:35:51.010000"],["2024-07-25T19:35:52.010000"],["2024-07-25T19:35:53.010000"],["2024-07-25T19:35:54.010000"],["2024-07-25T19:35:55.010000"],["2024-07-25T19:35:56.010000"],["2024-07-25T19:35:57.010000"],["2024-07-25T19:35:58.010000"],["2024-07-25T19:35:59.010000"],["2024-07-25T19:36:00.010000"],["2024-07-25T19:36:01.010000"],["2024-07-25T19:36:02.010000"],["2024-07-25T19:36:03.010000"],["2024-07-25T19:36:04.010000"],["2024-07-25T19:36:05.010000"],["2024-07-25T19:36:06.010000"],["2024-07-25T19:36:07.010000"],["2024-07-25T19:36:08.010000"],["2024-07-25T19:36:09.010000"],["2024-07-25T19:36:10.010000"],["2024-07-25T19:36:11.010000"],["2024-07-25T19:36:12.010000"],["2024-07-25T19:36:13.010000"],["2024-07-25T19:36:14.010000"],["2024-07-25T19:36:15.010000"],["2024-07-25T19:36:16.010000"],["2024-07-25T19:36:17.010000"],["2024-07-25T19:36:18.010000"],["2024-07-25T19:36:19.010000"],["2024-07-25T19:36:20.010000"],["2024-07-25T19:36:21.010000"],["2024-07-25T19:36:22.010000"],["2024-07-25T19:36:23.010000"],["2024-07-25T19:36:24.010000"],["2024-07-25T19:36:25.010000"],["2024-07-25T19:36:26.010000"],["2024-07-25T19:36:27.010000"],["2024-07-25T19:36:28.010000"],["2024-07-25T19:36:29.010000"],["2024-07-25T19:36:30.010000"],["2024-07-25T19:36:31.010000"],["2024-07-25T19:36:32.010000"],["2024-07-25T19:36:33.010000"],["2024-07-25T19:36:34.010000"],["2024-07-25T19:36:35.010000"],["2024-07-25T19:36:36.010000"],["2024-07-25T19:36:37.010000"],["2024-07-25T19:36:38.010000"],["2024-07-25T19:36:39.010000"],["2024-07-25T19:36:40.010000"],["2024-07-25T19:36:41.010000"],["2024-07-25T19:36:42.010000"],["2024-07-25T19:36:43.010000"],["2024-07-25T19:36:44.010000"],["2024-07-25T19:36:45.010000"],["2024-07-25T19:36:46.010000"],["2024-07-25T19:36:47.010000"],["2024-07-25T19:36:48.010000"],["2024-07-25T19:36:49.010000"],["2024-07-25T19:36:50.010000"],["2024-07-25T19:36:51.010000"],["2024-07-25T19:36:52.010000"],["2024-07-25T19:36:53.010000"],["2024-07-25T19:36:54.010000"],["2024-07-25T19:36:55.010000"],["2024-07-25T19:36:56.010000"],["2024-07-25T19:36:57.010000"],["2024-07-25T19:36:58.010000"],["2024-07-25T19:36:59.010000"],["2024-07-25T19:37:00.010000"],["2024-07-25T19:37:01.010000"],["2024-07-25T19:37:02.010000"],["2024-07-25T19:37:03.010000"],["2024-07-25T19:37:04.010000"],["2024-07-25T19:37:05.010000"],["2024-07-25T19:37:06.010000"],["2024-07-25T19:37:07.010000"],["2024-07-25T19:37:08.010000"],["2024-07-25T19:37:09.010000"],["2024-07-25T19:37:10.010000"],["2024-07-25T19:37:11.010000"],["2024-07-25T19:37:12.010000"],["2024-07-25T19:37:13.010000"],["2024-07-25T19:37:14.010000"],["2024-07-25T19:37:15.010000"],["2024-07-25T19:37:16.010000"],["2024-07-25T19:37:17.010000"],["2024-07-25T19:37:18.010000"],["2024-07-25T19:37:19.010000"],["2024-07-25T19:37:20.010000"],["2024-07-25T19:37:21.010000"],["2024-07-25T19:37:22.010000"],["2024-07-25T19:37:23.010000"],["2024-07-25T19:37:24.010000"],["2024-07-25T19:37:25.010000"],["2024-07-25T19:37:26.010000"],["2024-07-25T19:37:27.010000"],["2024-07-25T19:37:28.010000"],["2024-07-25T19:37:29.010000"],["2024-07-25T19:37:30.010000"],["2024-07-25T19:37:31.010000"],["2024-07-25T19:37:32.010000"],["2024-07-25T19:37:33.010000"],["2024-07-25T19:37:34.010000"],["2024-07-25T19:37:35.010000"],["2024-07-25T19:37:36.010000"],["2024-07-25T19:37:37.010000"],["2024-07-25T19:37:38.010000"],["2024-07-25T19:37:39.010000"],["2024-07-25T19:37:40.010000"],["2024-07-25T19:37:41.010000"],["2024-07-25T19:37:42.010000"],["2024-07-25T19:37:43.010000"],["2024-07-25T19:37:44.010000"],["2024-07-25T19:37:45.010000"],["2024-07-25T19:37:46.010000"],["2024-07-25T19:37:47.010000"],["2024-07-25T19:37:48.010000"],["2024-07-25T19:37:49.010000"],["2024-07-25T19:37:50.010000"],["2024-07-25T19:37:51.010000"],["2024-07-25T19:37:52.010000"],["2024-07-25T19:37:53.010000"],["2024-07-25T19:37:54.010000"],["2024-07-25T19:37:55.010000"],["2024-07-25T19:37:56.010000"],["2024-07-25T19:37:57.010000"],["2024-07-25T19:37:58.010000"],["2024-07-25T19:37:59.010000"],["2024-07-25T19:38:00.010000"],["2024-07-25T19:38:01.010000"],["2024-07-25T19:38:02.010000"],["2024-07-25T19:38:03.010000"],["2024-07-25T19:38:04.010000"],["2024-07-25T19:38:05.010000"],["2024-07-25T19:38:06.010000"],["2024-07-25T19:38:07.010000"],["2024-07-25T19:38:08.010000"],["2024-07-25T19:38:09.010000"],["2024-07-25T19:38:10.010000"],["2024-07-25T19:38:11.010000"],["2024-07-25T19:38:12.010000"],["2024-07-25T19:38:13.010000"],["2024-07-25T19:38:14.010000"],["2024-07-25T19:38:15.010000"],["2024-07-25T19:38:16.010000"],["2024-07-25T19:38:17.010000"],["2024-07-25T19:38:18.010000"],["2024-07-25T19:38:19.010000"],["2024-07-25T19:38:20.010000"],["2024-07-25T19:38:21.010000"],["2024-07-25T19:38:22.010000"],["2024-07-25T19:38:23.010000"],["2024-07-25T19:38:24.010000"],["2024-07-25T19:38:25.010000"],["2024-07-25T19:38:26.010000"],["2024-07-25T19:38:27.010000"],["2024-07-25T19:38:28.010000"],["2024-07-25T19:38:29.010000"],["2024-07-25T19:38:30.010000"],["2024-07-25T19:38:31.010000"],["2024-07-25T19:38:32.010000"],["2024-07-25T19:38:33.010000"],["2024-07-25T19:38:34.010000"],["2024-07-25T19:38:35.010000"],["2024-07-25T19:38:36.010000"],["2024-07-25T19:38:37.010000"],["2024-07-25T19:38:38.010000"],["2024-07-25T19:38:39.010000"],["2024-07-25T19:38:40.010000"],["2024-07-25T19:38:41.010000"],["2024-07-25T19:38:42.010000"],["2024-07-25T19:38:43.010000"],["2024-07-25T19:38:44.010000"],["2024-07-25T19:38:45.010000"],["2024-07-25T19:38:46.010000"],["2024-07-25T19:38:47.010000"],["2024-07-25T19:38:48.010000"],["2024-07-25T19:38:49.010000"],["2024-07-25T19:38:50.010000"],["2024-07-25T19:38:51.010000"],["2024-07-25T19:38:52.010000"],["2024-07-25T19:38:53.010000"],["2024-07-25T19:38:54.010000"],["2024-07-25T19:38:55.010000"],["2024-07-25T19:38:56.010000"],["2024-07-25T19:38:57.010000"],["2024-07-25T19:38:58.010000"],["2024-07-25T19:38:59.010000"],["2024-07-25T19:39:00.010000"],["2024-07-25T19:39:01.010000"],["2024-07-25T19:39:02.010000"],["2024-07-25T19:39:03.010000"],["2024-07-25T19:39:04.010000"],["2024-07-25T19:39:05.010000"],["2024-07-25T19:39:06.010000"],["2024-07-25T19:39:07.010000"],["2024-07-25T19:39:08.010000"],["2024-07-25T19:39:09.010000"],["2024-07-25T19:39:10.010000"],["2024-07-25T19:39:11.010000"],["2024-07-25T19:39:12.010000"],["2024-07-25T19:39:13.010000"],["2024-07-25T19:39:14.010000"],["2024-07-25T19:39:15.010000"],["2024-07-25T19:39:16.010000"],["2024-07-25T19:39:17.010000"],["2024-07-25T19:39:18.010000"],["2024-07-25T19:39:19.010000"],["2024-07-25T19:39:20.010000"],["2024-07-25T19:39:21.010000"],["2024-07-25T19:39:22.010000"],["2024-07-25T19:39:23.010000"],["2024-07-25T19:39:24.010000"],["2024-07-25T19:39:25.010000"],["2024-07-25T19:39:26.010000"],["2024-07-25T19:39:27.010000"],["2024-07-25T19:39:28.010000"],["2024-07-25T19:39:29.010000"],["2024-07-25T19:39:30.010000"],["2024-07-25T19:39:31.010000"],["2024-07-25T19:39:32.010000"],["2024-07-25T19:39:33.010000"],["2024-07-25T19:39:34.010000"],["2024-07-25T19:39:35.010000"],["2024-07-25T19:39:36.010000"],["2024-07-25T19:39:37.010000"],["2024-07-25T19:39:38.010000"],["2024-07-25T19:39:39.010000"],["2024-07-25T19:39:40.010000"],["2024-07-25T19:39:41.010000"],["2024-07-25T19:39:42.010000"],["2024-07-25T19:39:43.010000"],["2024-07-25T19:39:44.010000"],["2024-07-25T19:39:45.010000"],["2024-07-25T19:39:46.010000"],["2024-07-25T19:39:47.010000"],["2024-07-25T19:39:48.010000"],["2024-07-25T19:39:49.010000"],["2024-07-25T19:39:50.010000"],["2024-07-25T19:39:51.010000"],["2024-07-25T19:39:52.010000"],["2024-07-25T19:39:53.010000"],["2024-07-25T19:39:54.010000"],["2024-07-25T19:39:55.010000"],["2024-07-25T19:39:56.010000"],["2024-07-25T19:39:57.010000"],["2024-07-25T19:39:58.010000"],["2024-07-25T19:39:59.010000"],["2024-07-25T19:40:00.010000"],["2024-07-25T19:40:01.010000"],["2024-07-25T19:40:02.010000"],["2024-07-25T19:40:03.010000"],["2024-07-25T19:40:04.010000"],["2024-07-25T19:40:05.010000"],["2024-07-25T19:40:06.010000"],["2024-07-25T19:40:07.010000"],["2024-07-25T19:40:08.010000"],["2024-07-25T19:40:09.010000"],["2024-07-25T19:40:10.010000"],["2024-07-25T19:40:11.010000"],["2024-07-25T19:40:12.010000"],["2024-07-25T19:40:13.010000"],["2024-07-25T19:40:14.010000"],["2024-07-25T19:40:15.010000"],["2024-07-25T19:40:16.010000"],["2024-07-25T19:40:17.010000"],["2024-07-25T19:40:18.010000"],["2024-07-25T19:40:19.010000"],["2024-07-25T19:40:20.010000"],["2024-07-25T19:40:21.010000"],["2024-07-25T19:40:22.010000"],["2024-07-25T19:40:23.010000"],["2024-07-25T19:40:24.010000"],["2024-07-25T19:40:25.010000"],["2024-07-25T19:40:26.010000"],["2024-07-25T19:40:27.010000"],["2024-07-25T19:40:28.010000"],["2024-07-25T19:40:29.010000"],["2024-07-25T19:40:30.010000"],["2024-07-25T19:40:31.010000"],["2024-07-25T19:40:32.010000"],["2024-07-25T19:40:33.010000"],["2024-07-25T19:40:34.010000"],["2024-07-25T19:40:35.010000"],["2024-07-25T19:40:36.010000"],["2024-07-25T19:40:37.010000"],["2024-07-25T19:40:38.010000"],["2024-07-25T19:40:39.010000"],["2024-07-25T19:40:40.010000"],["2024-07-25T19:40:41.010000"],["2024-07-25T19:40:42.010000"],["2024-07-25T19:40:43.010000"],["2024-07-25T19:40:44.010000"],["2024-07-25T19:40:45.010000"],["2024-07-25T19:40:46.010000"],["2024-07-25T19:40:47.010000"],["2024-07-25T19:40:48.010000"],["2024-07-25T19:40:49.010000"],["2024-07-25T19:40:50.010000"],["2024-07-25T19:40:51.010000"],["2024-07-25T19:40:52.010000"],["2024-07-25T19:40:53.010000"],["2024-07-25T19:40:54.010000"],["2024-07-25T19:40:55.010000"],["2024-07-25T19:40:56.010000"],["2024-07-25T19:40:57.010000"],["2024-07-25T19:40:58.010000"],["2024-07-25T19:40:59.010000"],["2024-07-25T19:41:00.010000"],["2024-07-25T19:41:01.010000"],["2024-07-25T19:41:02.010000"],["2024-07-25T19:41:03.010000"],["2024-07-25T19:41:04.010000"],["2024-07-25T19:41:05.010000"],["2024-07-25T19:41:06.010000"],["2024-07-25T19:41:07.010000"],["2024-07-25T19:41:08.010000"],["2024-07-25T19:41:09.010000"],["2024-07-25T19:41:10.010000"],["2024-07-25T19:41:11.010000"],["2024-07-25T19:41:12.010000"],["2024-07-25T19:41:13.010000"],["2024-07-25T19:41:14.010000"],["2024-07-25T19:41:15.010000"],["2024-07-25T19:41:16.010000"],["2024-07-25T19:41:17.010000"],["2024-07-25T19:41:18.010000"],["2024-07-25T19:41:19.010000"],["2024-07-25T19:41:20.010000"],["2024-07-25T19:41:21.010000"],["2024-07-25T19:41:22.010000"],["2024-07-25T19:41:23.010000"],["2024-07-25T19:41:24.010000"],["2024-07-25T19:41:25.010000"],["2024-07-25T19:41:26.010000"],["2024-07-25T19:41:27.010000"],["2024-07-25T19:41:28.010000"],["2024-07-25T19:41:29.010000"],["2024-07-25T19:41:30.010000"],["2024-07-25T19:41:31.010000"],["2024-07-25T19:41:32.010000"],["2024-07-25T19:41:33.010000"],["2024-07-25T19:41:34.010000"],["2024-07-25T19:41:35.010000"],["2024-07-25T19:41:36.010000"],["2024-07-25T19:41:37.010000"],["2024-07-25T19:41:38.010000"],["2024-07-25T19:41:39.010000"],["2024-07-25T19:41:40.010000"],["2024-07-25T19:41:41.010000"],["2024-07-25T19:41:42.010000"],["2024-07-25T19:41:43.010000"],["2024-07-25T19:41:44.010000"],["2024-07-25T19:41:45.010000"],["2024-07-25T19:41:46.010000"],["2024-07-25T19:41:47.010000"],["2024-07-25T19:41:48.010000"],["2024-07-25T19:41:49.010000"],["2024-07-25T19:41:50.010000"],["2024-07-25T19:41:51.010000"],["2024-07-25T19:41:52.010000"],["2024-07-25T19:41:53.010000"],["2024-07-25T19:41:54.010000"],["2024-07-25T19:41:55.010000"],["2024-07-25T19:41:56.010000"],["2024-07-25T19:41:57.010000"],["2024-07-25T19:41:58.010000"],["2024-07-25T19:41:59.010000"],["2024-07-25T19:42:00.010000"],["2024-07-25T19:42:01.010000"],["2024-07-25T19:42:02.010000"],["2024-07-25T19:42:03.010000"],["2024-07-25T19:42:04.010000"],["2024-07-25T19:42:05.010000"],["2024-07-25T19:42:06.010000"],["2024-07-25T19:42:07.010000"],["2024-07-25T19:42:08.010000"],["2024-07-25T19:42:09.010000"],["2024-07-25T19:42:10.010000"],["2024-07-25T19:42:11.010000"],["2024-07-25T19:42:12.010000"],["2024-07-25T19:42:13.010000"],["2024-07-25T19:42:14.010000"],["2024-07-25T19:42:15.010000"],["2024-07-25T19:42:16.010000"],["2024-07-25T19:42:17.010000"],["2024-07-25T19:42:18.010000"],["2024-07-25T19:42:19.010000"],["2024-07-25T19:42:20.010000"],["2024-07-25T19:42:21.010000"],["2024-07-25T19:42:22.010000"],["2024-07-25T19:42:23.010000"],["2024-07-25T19:42:24.010000"],["2024-07-25T19:42:25.010000"],["2024-07-25T19:42:26.010000"],["2024-07-25T19:42:27.010000"],["2024-07-25T19:42:28.010000"],["2024-07-25T19:42:29.010000"],["2024-07-25T19:42:30.010000"],["2024-07-25T19:42:31.010000"],["2024-07-25T19:42:32.010000"],["2024-07-25T19:42:33.010000"],["2024-07-25T19:42:34.010000"],["2024-07-25T19:42:35.010000"],["2024-07-25T19:42:36.010000"],["2024-07-25T19:42:37.010000"],["2024-07-25T19:42:38.010000"],["2024-07-25T19:42:39.010000"],["2024-07-25T19:42:40.010000"],["2024-07-25T19:42:41.010000"],["2024-07-25T19:42:42.010000"],["2024-07-25T19:42:43.010000"],["2024-07-25T19:42:44.010000"],["2024-07-25T19:42:45.010000"],["2024-07-25T19:42:46.010000"],["2024-07-25T19:42:47.010000"],["2024-07-25T19:42:48.010000"],["2024-07-25T19:42:49.010000"],["2024-07-25T19:42:50.010000"],["2024-07-25T19:42:51.010000"],["2024-07-25T19:42:52.010000"],["2024-07-25T19:42:53.010000"],["2024-07-25T19:42:54.010000"],["2024-07-25T19:42:55.010000"],["2024-07-25T19:42:56.010000"],["2024-07-25T19:42:57.010000"],["2024-07-25T19:42:58.010000"],["2024-07-25T19:42:59.010000"],["2024-07-25T19:43:00.010000"],["2024-07-25T19:43:01.010000"],["2024-07-25T19:43:02.010000"],["2024-07-25T19:43:03.010000"],["2024-07-25T19:43:04.010000"],["2024-07-25T19:43:05.010000"],["2024-07-25T19:43:06.010000"],["2024-07-25T19:43:07.010000"],["2024-07-25T19:43:08.010000"],["2024-07-25T19:43:09.010000"],["2024-07-25T19:43:10.010000"],["2024-07-25T19:43:11.010000"],["2024-07-25T19:43:12.010000"],["2024-07-25T19:43:13.010000"],["2024-07-25T19:43:14.010000"],["2024-07-25T19:43:15.010000"],["2024-07-25T19:43:16.010000"],["2024-07-25T19:43:17.010000"],["2024-07-25T19:43:18.010000"],["2024-07-25T19:43:19.010000"],["2024-07-25T19:43:20.010000"],["2024-07-25T19:43:21.010000"],["2024-07-25T19:43:22.010000"],["2024-07-25T19:43:23.010000"],["2024-07-25T19:43:24.010000"],["2024-07-25T19:43:25.010000"],["2024-07-25T19:43:26.010000"],["2024-07-25T19:43:27.010000"],["2024-07-25T19:43:28.010000"],["2024-07-25T19:43:29.010000"],["2024-07-25T19:43:30.010000"],["2024-07-25T19:43:31.010000"],["2024-07-25T19:43:32.010000"],["2024-07-25T19:43:33.010000"],["2024-07-25T19:43:34.010000"],["2024-07-25T19:43:35.010000"],["2024-07-25T19:43:36.010000"],["2024-07-25T19:43:37.010000"],["2024-07-25T19:43:38.010000"],["2024-07-25T19:43:39.010000"],["2024-07-25T19:43:40.010000"],["2024-07-25T19:43:41.010000"],["2024-07-25T19:43:42.010000"],["2024-07-25T19:43:43.010000"],["2024-07-25T19:43:44.010000"],["2024-07-25T19:43:45.010000"],["2024-07-25T19:43:46.010000"],["2024-07-25T19:43:47.010000"],["2024-07-25T19:43:48.010000"],["2024-07-25T19:43:49.010000"],["2024-07-25T19:43:50.010000"],["2024-07-25T19:43:51.010000"],["2024-07-25T19:43:52.010000"],["2024-07-25T19:43:53.010000"],["2024-07-25T19:43:54.010000"],["2024-07-25T19:43:55.010000"],["2024-07-25T19:43:56.010000"],["2024-07-25T19:43:57.010000"],["2024-07-25T19:43:58.010000"],["2024-07-25T19:43:59.010000"],["2024-07-25T19:44:00.010000"],["2024-07-25T19:44:01.010000"],["2024-07-25T19:44:02.010000"],["2024-07-25T19:44:03.010000"],["2024-07-25T19:44:04.010000"],["2024-07-25T19:44:05.010000"],["2024-07-25T19:44:06.010000"],["2024-07-25T19:44:07.010000"],["2024-07-25T19:44:08.010000"],["2024-07-25T19:44:09.010000"],["2024-07-25T19:44:10.010000"],["2024-07-25T19:44:11.010000"],["2024-07-25T19:44:12.010000"],["2024-07-25T19:44:13.010000"],["2024-07-25T19:44:14.010000"],["2024-07-25T19:44:15.010000"],["2024-07-25T19:44:16.010000"],["2024-07-25T19:44:17.010000"],["2024-07-25T19:44:18.010000"],["2024-07-25T19:44:19.010000"],["2024-07-25T19:44:20.010000"],["2024-07-25T19:44:21.010000"],["2024-07-25T19:44:22.010000"],["2024-07-25T19:44:23.010000"],["2024-07-25T19:44:24.010000"],["2024-07-25T19:44:25.010000"],["2024-07-25T19:44:26.010000"],["2024-07-25T19:44:27.010000"],["2024-07-25T19:44:28.010000"],["2024-07-25T19:44:29.010000"],["2024-07-25T19:44:30.010000"],["2024-07-25T19:44:31.010000"],["2024-07-25T19:44:32.010000"],["2024-07-25T19:44:33.010000"],["2024-07-25T19:44:34.010000"],["2024-07-25T19:44:35.010000"],["2024-07-25T19:44:36.010000"],["2024-07-25T19:44:37.010000"],["2024-07-25T19:44:38.010000"],["2024-07-25T19:44:39.010000"],["2024-07-25T19:44:40.010000"],["2024-07-25T19:44:41.010000"],["2024-07-25T19:44:42.010000"],["2024-07-25T19:44:43.010000"],["2024-07-25T19:44:44.010000"],["2024-07-25T19:44:45.010000"],["2024-07-25T19:44:46.010000"],["2024-07-25T19:44:47.010000"],["2024-07-25T19:44:48.010000"],["2024-07-25T19:44:49.010000"],["2024-07-25T19:44:50.010000"],["2024-07-25T19:44:51.010000"],["2024-07-25T19:44:52.010000"],["2024-07-25T19:44:53.010000"],["2024-07-25T19:44:54.010000"],["2024-07-25T19:44:55.010000"],["2024-07-25T19:44:56.010000"],["2024-07-25T19:44:57.010000"],["2024-07-25T19:44:58.010000"],["2024-07-25T19:44:59.010000"],["2024-07-25T19:45:00.010000"],["2024-07-25T19:45:01.010000"],["2024-07-25T19:45:02.010000"],["2024-07-25T19:45:03.010000"],["2024-07-25T19:45:04.010000"],["2024-07-25T19:45:05.010000"],["2024-07-25T19:45:06.010000"],["2024-07-25T19:45:07.010000"],["2024-07-25T19:45:08.010000"],["2024-07-25T19:45:09.010000"],["2024-07-25T19:45:10.010000"],["2024-07-25T19:45:11.010000"],["2024-07-25T19:45:12.010000"],["2024-07-25T19:45:13.010000"],["2024-07-25T19:45:14.010000"],["2024-07-25T19:45:15.010000"],["2024-07-25T19:45:16.010000"],["2024-07-25T19:45:17.010000"],["2024-07-25T19:45:18.010000"],["2024-07-25T19:45:19.010000"],["2024-07-25T19:45:20.010000"],["2024-07-25T19:45:21.010000"],["2024-07-25T19:45:22.010000"],["2024-07-25T19:45:23.010000"],["2024-07-25T19:45:24.010000"],["2024-07-25T19:45:25.010000"],["2024-07-25T19:45:26.010000"],["2024-07-25T19:45:27.010000"],["2024-07-25T19:45:28.010000"],["2024-07-25T19:45:29.010000"],["2024-07-25T19:45:30.010000"],["2024-07-25T19:45:31.010000"],["2024-07-25T19:45:32.010000"],["2024-07-25T19:45:33.010000"],["2024-07-25T19:45:34.010000"],["2024-07-25T19:45:35.010000"],["2024-07-25T19:45:36.010000"],["2024-07-25T19:45:37.010000"],["2024-07-25T19:45:38.010000"],["2024-07-25T19:45:39.010000"],["2024-07-25T19:45:40.010000"],["2024-07-25T19:45:41.010000"],["2024-07-25T19:45:42.010000"],["2024-07-25T19:45:43.010000"],["2024-07-25T19:45:44.010000"],["2024-07-25T19:45:45.010000"],["2024-07-25T19:45:46.010000"],["2024-07-25T19:45:47.010000"],["2024-07-25T19:45:48.010000"],["2024-07-25T19:45:49.010000"],["2024-07-25T19:45:50.010000"],["2024-07-25T19:45:51.010000"],["2024-07-25T19:45:52.010000"],["2024-07-25T19:45:53.010000"],["2024-07-25T19:45:54.010000"],["2024-07-25T19:45:55.010000"],["2024-07-25T19:45:56.010000"],["2024-07-25T19:45:57.010000"],["2024-07-25T19:45:58.010000"],["2024-07-25T19:45:59.010000"],["2024-07-25T19:46:00.010000"],["2024-07-25T19:46:01.010000"],["2024-07-25T19:46:02.010000"],["2024-07-25T19:46:03.010000"],["2024-07-25T19:46:04.010000"],["2024-07-25T19:46:05.010000"],["2024-07-25T19:46:06.010000"],["2024-07-25T19:46:07.010000"],["2024-07-25T19:46:08.010000"],["2024-07-25T19:46:09.010000"],["2024-07-25T19:46:10.010000"],["2024-07-25T19:46:11.010000"],["2024-07-25T19:46:12.010000"],["2024-07-25T19:46:13.010000"],["2024-07-25T19:46:14.010000"],["2024-07-25T19:46:15.010000"],["2024-07-25T19:46:16.010000"],["2024-07-25T19:46:17.010000"],["2024-07-25T19:46:18.010000"],["2024-07-25T19:46:19.010000"],["2024-07-25T19:46:20.010000"],["2024-07-25T19:46:21.010000"],["2024-07-25T19:46:22.010000"],["2024-07-25T19:46:23.010000"],["2024-07-25T19:46:24.010000"],["2024-07-25T19:46:25.010000"],["2024-07-25T19:46:26.010000"],["2024-07-25T19:46:27.010000"],["2024-07-25T19:46:28.010000"],["2024-07-25T19:46:29.010000"],["2024-07-25T19:46:30.010000"],["2024-07-25T19:46:31.010000"],["2024-07-25T19:46:32.010000"],["2024-07-25T19:46:33.010000"],["2024-07-25T19:46:34.010000"],["2024-07-25T19:46:35.010000"],["2024-07-25T19:46:36.010000"],["2024-07-25T19:46:37.010000"],["2024-07-25T19:46:38.010000"],["2024-07-25T19:46:39.010000"],["2024-07-25T19:46:40.010000"],["2024-07-25T19:46:41.010000"],["2024-07-25T19:46:42.010000"],["2024-07-25T19:46:43.010000"],["2024-07-25T19:46:44.010000"],["2024-07-25T19:46:45.010000"],["2024-07-25T19:46:46.010000"],["2024-07-25T19:46:47.010000"],["2024-07-25T19:46:48.010000"],["2024-07-25T19:46:49.010000"],["2024-07-25T19:46:50.010000"],["2024-07-25T19:46:51.010000"],["2024-07-25T19:46:52.010000"],["2024-07-25T19:46:53.010000"],["2024-07-25T19:46:54.010000"],["2024-07-25T19:46:55.010000"],["2024-07-25T19:46:56.010000"],["2024-07-25T19:46:57.010000"],["2024-07-25T19:46:58.010000"],["2024-07-25T19:46:59.010000"],["2024-07-25T19:47:00.010000"],["2024-07-25T19:47:01.010000"],["2024-07-25T19:47:02.010000"],["2024-07-25T19:47:03.010000"],["2024-07-25T19:47:04.010000"],["2024-07-25T19:47:05.010000"],["2024-07-25T19:47:06.010000"],["2024-07-25T19:47:07.010000"],["2024-07-25T19:47:08.010000"],["2024-07-25T19:47:09.010000"],["2024-07-25T19:47:10.010000"],["2024-07-25T19:47:11.010000"],["2024-07-25T19:47:12.010000"],["2024-07-25T19:47:13.010000"],["2024-07-25T19:47:14.010000"],["2024-07-25T19:47:15.010000"],["2024-07-25T19:47:16.010000"],["2024-07-25T19:47:17.010000"],["2024-07-25T19:47:18.010000"],["2024-07-25T19:47:19.010000"],["2024-07-25T19:47:20.010000"],["2024-07-25T19:47:21.010000"],["2024-07-25T19:47:22.010000"],["2024-07-25T19:47:23.010000"],["2024-07-25T19:47:24.010000"],["2024-07-25T19:47:25.010000"],["2024-07-25T19:47:26.010000"],["2024-07-25T19:47:27.010000"],["2024-07-25T19:47:28.010000"],["2024-07-25T19:47:29.010000"],["2024-07-25T19:47:30.010000"],["2024-07-25T19:47:31.010000"],["2024-07-25T19:47:32.010000"],["2024-07-25T19:47:33.010000"],["2024-07-25T19:47:34.010000"],["2024-07-25T19:47:35.010000"],["2024-07-25T19:47:36.010000"],["2024-07-25T19:47:37.010000"],["2024-07-25T19:47:38.010000"],["2024-07-25T19:47:39.010000"],["2024-07-25T19:47:40.010000"],["2024-07-25T19:47:41.010000"],["2024-07-25T19:47:42.010000"],["2024-07-25T19:47:43.010000"],["2024-07-25T19:47:44.010000"],["2024-07-25T19:47:45.010000"],["2024-07-25T19:47:46.010000"],["2024-07-25T19:47:47.010000"],["2024-07-25T19:47:48.010000"],["2024-07-25T19:47:49.010000"],["2024-07-25T19:47:50.010000"],["2024-07-25T19:47:51.010000"],["2024-07-25T19:47:52.010000"],["2024-07-25T19:47:53.010000"],["2024-07-25T19:47:54.010000"],["2024-07-25T19:47:55.010000"],["2024-07-25T19:47:56.010000"],["2024-07-25T19:47:57.010000"],["2024-07-25T19:47:58.010000"],["2024-07-25T19:47:59.010000"],["2024-07-25T19:48:00.010000"],["2024-07-25T19:48:01.010000"],["2024-07-25T19:48:02.010000"],["2024-07-25T19:48:03.010000"],["2024-07-25T19:48:04.010000"],["2024-07-25T19:48:05.010000"],["2024-07-25T19:48:06.010000"],["2024-07-25T19:48:07.010000"],["2024-07-25T19:48:08.010000"],["2024-07-25T19:48:09.010000"],["2024-07-25T19:48:10.010000"],["2024-07-25T19:48:11.010000"],["2024-07-25T19:48:12.010000"],["2024-07-25T19:48:13.010000"],["2024-07-25T19:48:14.010000"],["2024-07-25T19:48:15.010000"],["2024-07-25T19:48:16.010000"],["2024-07-25T19:48:17.010000"],["2024-07-25T19:48:18.010000"],["2024-07-25T19:48:19.010000"],["2024-07-25T19:48:20.010000"],["2024-07-25T19:48:21.010000"],["2024-07-25T19:48:22.010000"],["2024-07-25T19:48:23.010000"],["2024-07-25T19:48:24.010000"],["2024-07-25T19:48:25.010000"],["2024-07-25T19:48:26.010000"],["2024-07-25T19:48:27.010000"],["2024-07-25T19:48:28.010000"],["2024-07-25T19:48:29.010000"],["2024-07-25T19:48:30.010000"],["2024-07-25T19:48:31.010000"],["2024-07-25T19:48:32.010000"],["2024-07-25T19:48:33.010000"],["2024-07-25T19:48:34.010000"],["2024-07-25T19:48:35.010000"],["2024-07-25T19:48:36.010000"],["2024-07-25T19:48:37.010000"],["2024-07-25T19:48:38.010000"],["2024-07-25T19:48:39.010000"],["2024-07-25T19:48:40.010000"],["2024-07-25T19:48:41.010000"],["2024-07-25T19:48:42.010000"],["2024-07-25T19:48:43.010000"],["2024-07-25T19:48:44.010000"],["2024-07-25T19:48:45.010000"],["2024-07-25T19:48:46.010000"],["2024-07-25T19:48:47.010000"],["2024-07-25T19:48:48.010000"],["2024-07-25T19:48:49.010000"],["2024-07-25T19:48:50.010000"],["2024-07-25T19:48:51.010000"],["2024-07-25T19:48:52.010000"],["2024-07-25T19:48:53.010000"],["2024-07-25T19:48:54.010000"],["2024-07-25T19:48:55.010000"],["2024-07-25T19:48:56.010000"],["2024-07-25T19:48:57.010000"],["2024-07-25T19:48:58.010000"],["2024-07-25T19:48:59.010000"],["2024-07-25T19:49:00.010000"],["2024-07-25T19:49:01.010000"],["2024-07-25T19:49:02.010000"],["2024-07-25T19:49:03.010000"],["2024-07-25T19:49:04.010000"],["2024-07-25T19:49:05.010000"],["2024-07-25T19:49:06.010000"],["2024-07-25T19:49:07.010000"],["2024-07-25T19:49:08.010000"],["2024-07-25T19:49:09.010000"],["2024-07-25T19:49:10.010000"],["2024-07-25T19:49:11.010000"],["2024-07-25T19:49:12.010000"],["2024-07-25T19:49:13.010000"],["2024-07-25T19:49:14.010000"],["2024-07-25T19:49:15.010000"],["2024-07-25T19:49:16.010000"],["2024-07-25T19:49:17.010000"],["2024-07-25T19:49:18.010000"],["2024-07-25T19:49:19.010000"],["2024-07-25T19:49:20.010000"],["2024-07-25T19:49:21.010000"],["2024-07-25T19:49:22.010000"],["2024-07-25T19:49:23.010000"],["2024-07-25T19:49:24.010000"],["2024-07-25T19:49:25.010000"],["2024-07-25T19:49:26.010000"],["2024-07-25T19:49:27.010000"],["2024-07-25T19:49:28.010000"],["2024-07-25T19:49:29.010000"],["2024-07-25T19:49:30.010000"],["2024-07-25T19:49:31.010000"],["2024-07-25T19:49:32.010000"],["2024-07-25T19:49:33.010000"],["2024-07-25T19:49:34.010000"],["2024-07-25T19:49:35.010000"],["2024-07-25T19:49:36.010000"],["2024-07-25T19:49:37.010000"],["2024-07-25T19:49:38.010000"],["2024-07-25T19:49:39.010000"],["2024-07-25T19:49:40.010000"],["2024-07-25T19:49:41.010000"],["2024-07-25T19:49:42.010000"],["2024-07-25T19:49:43.010000"],["2024-07-25T19:49:44.010000"],["2024-07-25T19:49:45.010000"],["2024-07-25T19:49:46.010000"],["2024-07-25T19:49:47.010000"],["2024-07-25T19:49:48.010000"],["2024-07-25T19:49:49.010000"],["2024-07-25T19:49:50.010000"],["2024-07-25T19:49:51.010000"],["2024-07-25T19:49:52.010000"],["2024-07-25T19:49:53.010000"],["2024-07-25T19:49:54.010000"],["2024-07-25T19:49:55.010000"],["2024-07-25T19:49:56.010000"],["2024-07-25T19:49:57.010000"],["2024-07-25T19:49:58.010000"],["2024-07-25T19:49:59.010000"],["2024-07-25T19:50:00.010000"],["2024-07-25T19:50:01.010000"],["2024-07-25T19:50:02.010000"],["2024-07-25T19:50:03.010000"],["2024-07-25T19:50:04.010000"],["2024-07-25T19:50:05.010000"],["2024-07-25T19:50:06.010000"],["2024-07-25T19:50:07.010000"],["2024-07-25T19:50:08.010000"],["2024-07-25T19:50:09.010000"],["2024-07-25T19:50:10.010000"],["2024-07-25T19:50:11.010000"],["2024-07-25T19:50:12.010000"],["2024-07-25T19:50:13.010000"],["2024-07-25T19:50:14.010000"],["2024-07-25T19:50:15.010000"],["2024-07-25T19:50:16.010000"],["2024-07-25T19:50:17.010000"],["2024-07-25T19:50:18.010000"],["2024-07-25T19:50:19.010000"],["2024-07-25T19:50:20.010000"],["2024-07-25T19:50:21.010000"],["2024-07-25T19:50:22.010000"],["2024-07-25T19:50:23.010000"],["2024-07-25T19:50:24.010000"],["2024-07-25T19:50:25.010000"],["2024-07-25T19:50:26.010000"],["2024-07-25T19:50:27.010000"],["2024-07-25T19:50:28.010000"],["2024-07-25T19:50:29.010000"],["2024-07-25T19:50:30.010000"],["2024-07-25T19:50:31.010000"],["2024-07-25T19:50:32.010000"],["2024-07-25T19:50:33.010000"],["2024-07-25T19:50:34.010000"],["2024-07-25T19:50:35.010000"],["2024-07-25T19:50:36.010000"],["2024-07-25T19:50:37.010000"],["2024-07-25T19:50:38.010000"],["2024-07-25T19:50:39.010000"],["2024-07-25T19:50:40.010000"],["2024-07-25T19:50:41.010000"],["2024-07-25T19:50:42.010000"],["2024-07-25T19:50:43.010000"],["2024-07-25T19:50:44.010000"],["2024-07-25T19:50:45.010000"],["2024-07-25T19:50:46.010000"],["2024-07-25T19:50:47.010000"],["2024-07-25T19:50:48.010000"],["2024-07-25T19:50:49.010000"],["2024-07-25T19:50:50.010000"],["2024-07-25T19:50:51.010000"],["2024-07-25T19:50:52.010000"],["2024-07-25T19:50:53.010000"],["2024-07-25T19:50:54.010000"],["2024-07-25T19:50:55.010000"],["2024-07-25T19:50:56.010000"],["2024-07-25T19:50:57.010000"],["2024-07-25T19:50:58.010000"],["2024-07-25T19:50:59.010000"],["2024-07-25T19:51:00.010000"],["2024-07-25T19:51:01.010000"],["2024-07-25T19:51:02.010000"],["2024-07-25T19:51:03.010000"],["2024-07-25T19:51:04.010000"],["2024-07-25T19:51:05.010000"],["2024-07-25T19:51:06.010000"],["2024-07-25T19:51:07.010000"],["2024-07-25T19:51:08.010000"],["2024-07-25T19:51:09.010000"],["2024-07-25T19:51:10.010000"],["2024-07-25T19:51:11.010000"],["2024-07-25T19:51:12.010000"],["2024-07-25T19:51:13.010000"],["2024-07-25T19:51:14.010000"],["2024-07-25T19:51:15.010000"],["2024-07-25T19:51:16.010000"],["2024-07-25T19:51:17.010000"],["2024-07-25T19:51:18.010000"],["2024-07-25T19:51:19.010000"],["2024-07-25T19:51:20.010000"],["2024-07-25T19:51:21.010000"],["2024-07-25T19:51:22.010000"],["2024-07-25T19:51:23.010000"],["2024-07-25T19:51:24.010000"],["2024-07-25T19:51:25.010000"],["2024-07-25T19:51:26.010000"],["2024-07-25T19:51:27.010000"],["2024-07-25T19:51:28.010000"],["2024-07-25T19:51:29.010000"],["2024-07-25T19:51:30.010000"],["2024-07-25T19:51:31.010000"],["2024-07-25T19:51:32.010000"],["2024-07-25T19:51:33.010000"],["2024-07-25T19:51:34.010000"],["2024-07-25T19:51:35.010000"],["2024-07-25T19:51:36.010000"],["2024-07-25T19:51:37.010000"],["2024-07-25T19:51:38.010000"],["2024-07-25T19:51:39.010000"],["2024-07-25T19:51:40.010000"],["2024-07-25T19:51:41.010000"],["2024-07-25T19:51:42.010000"],["2024-07-25T19:51:43.010000"],["2024-07-25T19:51:44.010000"],["2024-07-25T19:51:45.010000"],["2024-07-25T19:51:46.010000"],["2024-07-25T19:51:47.010000"],["2024-07-25T19:51:48.010000"],["2024-07-25T19:51:49.010000"],["2024-07-25T19:51:50.010000"],["2024-07-25T19:51:51.010000"],["2024-07-25T19:51:52.010000"],["2024-07-25T19:51:53.010000"],["2024-07-25T19:51:54.010000"],["2024-07-25T19:51:55.010000"],["2024-07-25T19:51:56.010000"],["2024-07-25T19:51:57.010000"],["2024-07-25T19:51:58.010000"],["2024-07-25T19:51:59.010000"],["2024-07-25T19:52:00.010000"],["2024-07-25T19:52:01.010000"],["2024-07-25T19:52:02.010000"],["2024-07-25T19:52:03.010000"],["2024-07-25T19:52:04.010000"],["2024-07-25T19:52:05.010000"],["2024-07-25T19:52:06.010000"],["2024-07-25T19:52:07.010000"],["2024-07-25T19:52:08.010000"],["2024-07-25T19:52:09.010000"],["2024-07-25T19:52:10.010000"],["2024-07-25T19:52:11.010000"],["2024-07-25T19:52:12.010000"],["2024-07-25T19:52:13.010000"],["2024-07-25T19:52:14.010000"],["2024-07-25T19:52:15.010000"],["2024-07-25T19:52:16.010000"],["2024-07-25T19:52:17.010000"],["2024-07-25T19:52:18.010000"],["2024-07-25T19:52:19.010000"],["2024-07-25T19:52:20.010000"],["2024-07-25T19:52:21.010000"],["2024-07-25T19:52:22.010000"],["2024-07-25T19:52:23.010000"],["2024-07-25T19:52:24.010000"],["2024-07-25T19:52:25.010000"],["2024-07-25T19:52:26.010000"],["2024-07-25T19:52:27.010000"],["2024-07-25T19:52:28.010000"],["2024-07-25T19:52:29.010000"],["2024-07-25T19:52:30.010000"],["2024-07-25T19:52:31.010000"],["2024-07-25T19:52:32.010000"],["2024-07-25T19:52:33.010000"],["2024-07-25T19:52:34.010000"],["2024-07-25T19:52:35.010000"],["2024-07-25T19:52:36.010000"],["2024-07-25T19:52:37.010000"],["2024-07-25T19:52:38.010000"],["2024-07-25T19:52:39.010000"],["2024-07-25T19:52:40.010000"],["2024-07-25T19:52:41.010000"],["2024-07-25T19:52:42.010000"],["2024-07-25T19:52:43.010000"],["2024-07-25T19:52:44.010000"],["2024-07-25T19:52:45.010000"],["2024-07-25T19:52:46.010000"],["2024-07-25T19:52:47.010000"],["2024-07-25T19:52:48.010000"],["2024-07-25T19:52:49.010000"],["2024-07-25T19:52:50.010000"],["2024-07-25T19:52:51.010000"],["2024-07-25T19:52:52.010000"],["2024-07-25T19:52:53.010000"],["2024-07-25T19:52:54.010000"],["2024-07-25T19:52:55.010000"],["2024-07-25T19:52:56.010000"],["2024-07-25T19:52:57.010000"],["2024-07-25T19:52:58.010000"],["2024-07-25T19:52:59.010000"],["2024-07-25T19:53:00.010000"],["2024-07-25T19:53:01.010000"],["2024-07-25T19:53:02.010000"],["2024-07-25T19:53:03.010000"],["2024-07-25T19:53:04.010000"],["2024-07-25T19:53:05.010000"],["2024-07-25T19:53:06.010000"],["2024-07-25T19:53:07.010000"],["2024-07-25T19:53:08.010000"],["2024-07-25T19:53:09.010000"],["2024-07-25T19:53:10.010000"],["2024-07-25T19:53:11.010000"],["2024-07-25T19:53:12.010000"],["2024-07-25T19:53:13.010000"],["2024-07-25T19:53:14.010000"],["2024-07-25T19:53:15.010000"],["2024-07-25T19:53:16.010000"],["2024-07-25T19:53:17.010000"],["2024-07-25T19:53:18.010000"],["2024-07-25T19:53:19.010000"],["2024-07-25T19:53:20.010000"],["2024-07-25T19:53:21.010000"],["2024-07-25T19:53:22.010000"],["2024-07-25T19:53:23.010000"],["2024-07-25T19:53:24.010000"],["2024-07-25T19:53:25.010000"],["2024-07-25T19:53:26.010000"],["2024-07-25T19:53:27.010000"],["2024-07-25T19:53:28.010000"],["2024-07-25T19:53:29.010000"],["2024-07-25T19:53:30.010000"],["2024-07-25T19:53:31.010000"],["2024-07-25T19:53:32.010000"],["2024-07-25T19:53:33.010000"],["2024-07-25T19:53:34.010000"],["2024-07-25T19:53:35.010000"],["2024-07-25T19:53:36.010000"],["2024-07-25T19:53:37.010000"],["2024-07-25T19:53:38.010000"],["2024-07-25T19:53:39.010000"],["2024-07-25T19:53:40.010000"],["2024-07-25T19:53:41.010000"],["2024-07-25T19:53:42.010000"],["2024-07-25T19:53:43.010000"],["2024-07-25T19:53:44.010000"],["2024-07-25T19:53:45.010000"],["2024-07-25T19:53:46.010000"],["2024-07-25T19:53:47.010000"],["2024-07-25T19:53:48.010000"],["2024-07-25T19:53:49.010000"],["2024-07-25T19:53:50.010000"],["2024-07-25T19:53:51.010000"],["2024-07-25T19:53:52.010000"],["2024-07-25T19:53:53.010000"],["2024-07-25T19:53:54.010000"],["2024-07-25T19:53:55.010000"],["2024-07-25T19:53:56.010000"],["2024-07-25T19:53:57.010000"],["2024-07-25T19:53:58.010000"],["2024-07-25T19:53:59.010000"],["2024-07-25T19:54:00.010000"],["2024-07-25T19:54:01.010000"],["2024-07-25T19:54:02.010000"],["2024-07-25T19:54:03.010000"],["2024-07-25T19:54:04.010000"],["2024-07-25T19:54:05.010000"],["2024-07-25T19:54:06.010000"],["2024-07-25T19:54:07.010000"],["2024-07-25T19:54:08.010000"],["2024-07-25T19:54:09.010000"],["2024-07-25T19:54:10.010000"],["2024-07-25T19:54:11.010000"],["2024-07-25T19:54:12.010000"],["2024-07-25T19:54:13.010000"],["2024-07-25T19:54:14.010000"],["2024-07-25T19:54:15.010000"],["2024-07-25T19:54:16.010000"],["2024-07-25T19:54:17.010000"],["2024-07-25T19:54:18.010000"],["2024-07-25T19:54:19.010000"],["2024-07-25T19:54:20.010000"],["2024-07-25T19:54:21.010000"],["2024-07-25T19:54:22.010000"],["2024-07-25T19:54:23.010000"],["2024-07-25T19:54:24.010000"],["2024-07-25T19:54:25.010000"],["2024-07-25T19:54:26.010000"],["2024-07-25T19:54:27.010000"],["2024-07-25T19:54:28.010000"],["2024-07-25T19:54:29.010000"],["2024-07-25T19:54:30.010000"],["2024-07-25T19:54:31.010000"],["2024-07-25T19:54:32.010000"],["2024-07-25T19:54:33.010000"],["2024-07-25T19:54:34.010000"],["2024-07-25T19:54:35.010000"],["2024-07-25T19:54:36.010000"],["2024-07-25T19:54:37.010000"],["2024-07-25T19:54:38.010000"],["2024-07-25T19:54:39.010000"],["2024-07-25T19:54:40.010000"],["2024-07-25T19:54:41.010000"],["2024-07-25T19:54:42.010000"],["2024-07-25T19:54:43.010000"],["2024-07-25T19:54:44.010000"],["2024-07-25T19:54:45.010000"],["2024-07-25T19:54:46.010000"],["2024-07-25T19:54:47.010000"],["2024-07-25T19:54:48.010000"],["2024-07-25T19:54:49.010000"],["2024-07-25T19:54:50.010000"],["2024-07-25T19:54:51.010000"],["2024-07-25T19:54:52.010000"],["2024-07-25T19:54:53.010000"],["2024-07-25T19:54:54.010000"],["2024-07-25T19:54:55.010000"],["2024-07-25T19:54:56.010000"],["2024-07-25T19:54:57.010000"],["2024-07-25T19:54:58.010000"],["2024-07-25T19:54:59.010000"],["2024-07-25T19:55:00.010000"],["2024-07-25T19:55:01.010000"],["2024-07-25T19:55:02.010000"],["2024-07-25T19:55:03.010000"],["2024-07-25T19:55:04.010000"],["2024-07-25T19:55:05.010000"],["2024-07-25T19:55:06.010000"],["2024-07-25T19:55:07.010000"],["2024-07-25T19:55:08.010000"],["2024-07-25T19:55:09.010000"],["2024-07-25T19:55:10.010000"],["2024-07-25T19:55:11.010000"],["2024-07-25T19:55:12.010000"],["2024-07-25T19:55:13.010000"],["2024-07-25T19:55:14.010000"],["2024-07-25T19:55:15.010000"],["2024-07-25T19:55:16.010000"],["2024-07-25T19:55:17.010000"],["2024-07-25T19:55:18.010000"],["2024-07-25T19:55:19.010000"],["2024-07-25T19:55:20.010000"],["2024-07-25T19:55:21.010000"],["2024-07-25T19:55:22.010000"],["2024-07-25T19:55:23.010000"],["2024-07-25T19:55:24.010000"],["2024-07-25T19:55:25.010000"],["2024-07-25T19:55:26.010000"],["2024-07-25T19:55:27.010000"],["2024-07-25T19:55:28.010000"],["2024-07-25T19:55:29.010000"],["2024-07-25T19:55:30.010000"],["2024-07-25T19:55:31.010000"],["2024-07-25T19:55:32.010000"],["2024-07-25T19:55:33.010000"],["2024-07-25T19:55:34.010000"],["2024-07-25T19:55:35.010000"],["2024-07-25T19:55:36.010000"],["2024-07-25T19:55:37.010000"],["2024-07-25T19:55:38.010000"],["2024-07-25T19:55:39.010000"],["2024-07-25T19:55:40.010000"],["2024-07-25T19:55:41.010000"],["2024-07-25T19:55:42.010000"],["2024-07-25T19:55:43.010000"],["2024-07-25T19:55:44.010000"],["2024-07-25T19:55:45.010000"],["2024-07-25T19:55:46.010000"],["2024-07-25T19:55:47.010000"],["2024-07-25T19:55:48.010000"],["2024-07-25T19:55:49.010000"],["2024-07-25T19:55:50.010000"],["2024-07-25T19:55:51.010000"],["2024-07-25T19:55:52.010000"],["2024-07-25T19:55:53.010000"],["2024-07-25T19:55:54.010000"],["2024-07-25T19:55:55.010000"],["2024-07-25T19:55:56.010000"],["2024-07-25T19:55:57.010000"],["2024-07-25T19:55:58.010000"],["2024-07-25T19:55:59.010000"],["2024-07-25T19:56:00.010000"],["2024-07-25T19:56:01.010000"],["2024-07-25T19:56:02.010000"],["2024-07-25T19:56:03.010000"],["2024-07-25T19:56:04.010000"],["2024-07-25T19:56:05.010000"],["2024-07-25T19:56:06.010000"],["2024-07-25T19:56:07.010000"],["2024-07-25T19:56:08.010000"],["2024-07-25T19:56:09.010000"],["2024-07-25T19:56:10.010000"],["2024-07-25T19:56:11.010000"],["2024-07-25T19:56:12.010000"],["2024-07-25T19:56:13.010000"],["2024-07-25T19:56:14.010000"],["2024-07-25T19:56:15.010000"],["2024-07-25T19:56:16.010000"],["2024-07-25T19:56:17.010000"],["2024-07-25T19:56:18.010000"],["2024-07-25T19:56:19.010000"],["2024-07-25T19:56:20.010000"],["2024-07-25T19:56:21.010000"],["2024-07-25T19:56:22.010000"],["2024-07-25T19:56:23.010000"],["2024-07-25T19:56:24.010000"],["2024-07-25T19:56:25.010000"],["2024-07-25T19:56:26.010000"],["2024-07-25T19:56:27.010000"],["2024-07-25T19:56:28.010000"],["2024-07-25T19:56:29.010000"],["2024-07-25T19:56:30.010000"],["2024-07-25T19:56:31.010000"],["2024-07-25T19:56:32.010000"],["2024-07-25T19:56:33.010000"],["2024-07-25T19:56:34.010000"],["2024-07-25T19:56:35.010000"],["2024-07-25T19:56:36.010000"],["2024-07-25T19:56:37.010000"],["2024-07-25T19:56:38.010000"],["2024-07-25T19:56:39.010000"],["2024-07-25T19:56:40.010000"],["2024-07-25T19:56:41.010000"],["2024-07-25T19:56:42.010000"],["2024-07-25T19:56:43.010000"],["2024-07-25T19:56:44.010000"],["2024-07-25T19:56:45.010000"],["2024-07-25T19:56:46.010000"],["2024-07-25T19:56:47.010000"],["2024-07-25T19:56:48.010000"],["2024-07-25T19:56:49.010000"],["2024-07-25T19:56:50.010000"],["2024-07-25T19:56:51.010000"],["2024-07-25T19:56:52.010000"],["2024-07-25T19:56:53.010000"],["2024-07-25T19:56:54.010000"],["2024-07-25T19:56:55.010000"],["2024-07-25T19:56:56.010000"],["2024-07-25T19:56:57.010000"],["2024-07-25T19:56:58.010000"],["2024-07-25T19:56:59.010000"],["2024-07-25T19:57:00.010000"],["2024-07-25T19:57:01.010000"],["2024-07-25T19:57:02.010000"],["2024-07-25T19:57:03.010000"],["2024-07-25T19:57:04.010000"],["2024-07-25T19:57:05.010000"],["2024-07-25T19:57:06.010000"],["2024-07-25T19:57:07.010000"],["2024-07-25T19:57:08.010000"],["2024-07-25T19:57:09.010000"],["2024-07-25T19:57:10.010000"],["2024-07-25T19:57:11.010000"],["2024-07-25T19:57:12.010000"],["2024-07-25T19:57:13.010000"],["2024-07-25T19:57:14.010000"],["2024-07-25T19:57:15.010000"],["2024-07-25T19:57:16.010000"],["2024-07-25T19:57:17.010000"],["2024-07-25T19:57:18.010000"],["2024-07-25T19:57:19.010000"],["2024-07-25T19:57:20.010000"],["2024-07-25T19:57:21.010000"],["2024-07-25T19:57:22.010000"],["2024-07-25T19:57:23.010000"],["2024-07-25T19:57:24.010000"],["2024-07-25T19:57:25.010000"],["2024-07-25T19:57:26.010000"],["2024-07-25T19:57:27.010000"],["2024-07-25T19:57:28.010000"],["2024-07-25T19:57:29.010000"],["2024-07-25T19:57:30.010000"],["2024-07-25T19:57:31.010000"],["2024-07-25T19:57:32.010000"],["2024-07-25T19:57:33.010000"],["2024-07-25T19:57:34.010000"],["2024-07-25T19:57:35.010000"],["2024-07-25T19:57:36.010000"],["2024-07-25T19:57:37.010000"],["2024-07-25T19:57:38.010000"],["2024-07-25T19:57:39.010000"],["2024-07-25T19:57:40.010000"],["2024-07-25T19:57:41.010000"],["2024-07-25T19:57:42.010000"],["2024-07-25T19:57:43.010000"],["2024-07-25T19:57:44.010000"],["2024-07-25T19:57:45.010000"],["2024-07-25T19:57:46.010000"],["2024-07-25T19:57:47.010000"],["2024-07-25T19:57:48.010000"],["2024-07-25T19:57:49.010000"],["2024-07-25T19:57:50.010000"],["2024-07-25T19:57:51.010000"],["2024-07-25T19:57:52.010000"],["2024-07-25T19:57:53.010000"],["2024-07-25T19:57:54.010000"],["2024-07-25T19:57:55.010000"],["2024-07-25T19:57:56.010000"],["2024-07-25T19:57:57.010000"],["2024-07-25T19:57:58.010000"],["2024-07-25T19:57:59.010000"],["2024-07-25T19:58:00.010000"],["2024-07-25T19:58:01.010000"],["2024-07-25T19:58:02.010000"],["2024-07-25T19:58:03.010000"],["2024-07-25T19:58:04.010000"],["2024-07-25T19:58:05.010000"],["2024-07-25T19:58:06.010000"],["2024-07-25T19:58:07.010000"],["2024-07-25T19:58:08.010000"],["2024-07-25T19:58:09.010000"],["2024-07-25T19:58:10.010000"],["2024-07-25T19:58:11.010000"],["2024-07-25T19:58:12.010000"],["2024-07-25T19:58:13.010000"],["2024-07-25T19:58:14.010000"],["2024-07-25T19:58:15.010000"],["2024-07-25T19:58:16.010000"],["2024-07-25T19:58:17.010000"],["2024-07-25T19:58:18.010000"],["2024-07-25T19:58:19.010000"],["2024-07-25T19:58:20.010000"],["2024-07-25T19:58:21.010000"],["2024-07-25T19:58:22.010000"],["2024-07-25T19:58:23.010000"],["2024-07-25T19:58:24.010000"],["2024-07-25T19:58:25.010000"],["2024-07-25T19:58:26.010000"],["2024-07-25T19:58:27.010000"],["2024-07-25T19:58:28.010000"],["2024-07-25T19:58:29.010000"],["2024-07-25T19:58:30.010000"],["2024-07-25T19:58:31.010000"],["2024-07-25T19:58:32.010000"],["2024-07-25T19:58:33.010000"],["2024-07-25T19:58:34.010000"],["2024-07-25T19:58:35.010000"],["2024-07-25T19:58:36.010000"],["2024-07-25T19:58:37.010000"],["2024-07-25T19:58:38.010000"],["2024-07-25T19:58:39.010000"],["2024-07-25T19:58:40.010000"],["2024-07-25T19:58:41.010000"],["2024-07-25T19:58:42.010000"],["2024-07-25T19:58:43.010000"],["2024-07-25T19:58:44.010000"],["2024-07-25T19:58:45.010000"],["2024-07-25T19:58:46.010000"],["2024-07-25T19:58:47.010000"],["2024-07-25T19:58:48.010000"],["2024-07-25T19:58:49.010000"],["2024-07-25T19:58:50.010000"],["2024-07-25T19:58:51.010000"],["2024-07-25T19:58:52.010000"],["2024-07-25T19:58:53.010000"],["2024-07-25T19:58:54.010000"],["2024-07-25T19:58:55.010000"],["2024-07-25T19:58:56.010000"],["2024-07-25T19:58:57.010000"],["2024-07-25T19:58:58.010000"],["2024-07-25T19:58:59.010000"],["2024-07-25T19:59:00.010000"],["2024-07-25T19:59:01.010000"],["2024-07-25T19:59:02.010000"],["2024-07-25T19:59:03.010000"],["2024-07-25T19:59:04.010000"],["2024-07-25T19:59:05.010000"],["2024-07-25T19:59:06.010000"],["2024-07-25T19:59:07.010000"],["2024-07-25T19:59:08.010000"],["2024-07-25T19:59:09.010000"],["2024-07-25T19:59:10.010000"],["2024-07-25T19:59:11.010000"],["2024-07-25T19:59:12.010000"],["2024-07-25T19:59:13.010000"],["2024-07-25T19:59:14.010000"],["2024-07-25T19:59:15.010000"],["2024-07-25T19:59:16.010000"],["2024-07-25T19:59:17.010000"],["2024-07-25T19:59:18.010000"],["2024-07-25T19:59:19.010000"],["2024-07-25T19:59:20.010000"],["2024-07-25T19:59:21.010000"],["2024-07-25T19:59:22.010000"],["2024-07-25T19:59:23.010000"],["2024-07-25T19:59:24.010000"],["2024-07-25T19:59:25.010000"],["2024-07-25T19:59:26.010000"],["2024-07-25T19:59:27.010000"],["2024-07-25T19:59:28.010000"],["2024-07-25T19:59:29.010000"],["2024-07-25T19:59:30.010000"],["2024-07-25T19:59:31.010000"],["2024-07-25T19:59:32.010000"],["2024-07-25T19:59:33.010000"],["2024-07-25T19:59:34.010000"],["2024-07-25T19:59:35.010000"],["2024-07-25T19:59:36.010000"],["2024-07-25T19:59:37.010000"],["2024-07-25T19:59:38.010000"],["2024-07-25T19:59:39.010000"],["2024-07-25T19:59:40.010000"],["2024-07-25T19:59:41.010000"],["2024-07-25T19:59:42.010000"],["2024-07-25T19:59:43.010000"],["2024-07-25T19:59:44.010000"],["2024-07-25T19:59:45.010000"],["2024-07-25T19:59:46.010000"],["2024-07-25T19:59:47.010000"],["2024-07-25T19:59:48.010000"],["2024-07-25T19:59:49.010000"],["2024-07-25T19:59:50.010000"],["2024-07-25T19:59:51.010000"],["2024-07-25T19:59:52.010000"],["2024-07-25T19:59:53.010000"],["2024-07-25T19:59:54.010000"],["2024-07-25T19:59:55.010000"],["2024-07-25T19:59:56.010000"],["2024-07-25T19:59:57.010000"],["2024-07-25T19:59:58.010000"],["2024-07-25T19:59:59.010000"],["2024-07-25T20:00:00.010000"],["2024-07-25T20:00:01.010000"],["2024-07-25T20:00:02.010000"],["2024-07-25T20:00:03.010000"],["2024-07-25T20:00:04.010000"],["2024-07-25T20:00:05.010000"],["2024-07-25T20:00:06.010000"],["2024-07-25T20:00:07.010000"],["2024-07-25T20:00:08.010000"],["2024-07-25T20:00:09.010000"],["2024-07-25T20:00:10.010000"],["2024-07-25T20:00:11.010000"],["2024-07-25T20:00:12.010000"],["2024-07-25T20:00:13.010000"],["2024-07-25T20:00:14.010000"],["2024-07-25T20:00:15.010000"],["2024-07-25T20:00:16.010000"],["2024-07-25T20:00:17.010000"],["2024-07-25T20:00:18.010000"],["2024-07-25T20:00:19.010000"],["2024-07-25T20:00:20.010000"],["2024-07-25T20:00:21.010000"],["2024-07-25T20:00:22.010000"],["2024-07-25T20:00:23.010000"],["2024-07-25T20:00:24.010000"],["2024-07-25T20:00:25.010000"],["2024-07-25T20:00:26.010000"],["2024-07-25T20:00:27.010000"],["2024-07-25T20:00:28.010000"],["2024-07-25T20:00:29.010000"],["2024-07-25T20:00:30.010000"],["2024-07-25T20:00:31.010000"],["2024-07-25T20:00:32.010000"],["2024-07-25T20:00:33.010000"],["2024-07-25T20:00:34.010000"],["2024-07-25T20:00:35.010000"],["2024-07-25T20:00:36.010000"],["2024-07-25T20:00:37.010000"],["2024-07-25T20:00:38.010000"],["2024-07-25T20:00:39.010000"],["2024-07-25T20:00:40.010000"],["2024-07-25T20:00:41.010000"],["2024-07-25T20:00:42.010000"],["2024-07-25T20:00:43.010000"],["2024-07-25T20:00:44.010000"],["2024-07-25T20:00:45.010000"],["2024-07-25T20:00:46.010000"],["2024-07-25T20:00:47.010000"],["2024-07-25T20:00:48.010000"],["2024-07-25T20:00:49.010000"],["2024-07-25T20:00:50.010000"],["2024-07-25T20:00:51.010000"],["2024-07-25T20:00:52.010000"],["2024-07-25T20:00:53.010000"],["2024-07-25T20:00:54.010000"],["2024-07-25T20:00:55.010000"],["2024-07-25T20:00:56.010000"],["2024-07-25T20:00:57.010000"],["2024-07-25T20:00:58.010000"],["2024-07-25T20:00:59.010000"],["2024-07-25T20:01:00.010000"],["2024-07-25T20:01:01.010000"],["2024-07-25T20:01:02.010000"],["2024-07-25T20:01:03.010000"],["2024-07-25T20:01:04.010000"],["2024-07-25T20:01:05.010000"],["2024-07-25T20:01:06.010000"],["2024-07-25T20:01:07.010000"],["2024-07-25T20:01:08.010000"],["2024-07-25T20:01:09.010000"],["2024-07-25T20:01:10.010000"],["2024-07-25T20:01:11.010000"],["2024-07-25T20:01:12.010000"],["2024-07-25T20:01:13.010000"],["2024-07-25T20:01:14.010000"],["2024-07-25T20:01:15.010000"],["2024-07-25T20:01:16.010000"],["2024-07-25T20:01:17.010000"],["2024-07-25T20:01:18.010000"],["2024-07-25T20:01:19.010000"],["2024-07-25T20:01:20.010000"],["2024-07-25T20:01:21.010000"],["2024-07-25T20:01:22.010000"],["2024-07-25T20:01:23.010000"],["2024-07-25T20:01:24.010000"],["2024-07-25T20:01:25.010000"],["2024-07-25T20:01:26.010000"],["2024-07-25T20:01:27.010000"],["2024-07-25T20:01:28.010000"],["2024-07-25T20:01:29.010000"],["2024-07-25T20:01:30.010000"],["2024-07-25T20:01:31.010000"],["2024-07-25T20:01:32.010000"],["2024-07-25T20:01:33.010000"],["2024-07-25T20:01:34.010000"],["2024-07-25T20:01:35.010000"],["2024-07-25T20:01:36.010000"],["2024-07-25T20:01:37.010000"],["2024-07-25T20:01:38.010000"],["2024-07-25T20:01:39.010000"],["2024-07-25T20:01:40.010000"],["2024-07-25T20:01:41.010000"],["2024-07-25T20:01:42.010000"],["2024-07-25T20:01:43.010000"],["2024-07-25T20:01:44.010000"],["2024-07-25T20:01:45.010000"],["2024-07-25T20:01:46.010000"],["2024-07-25T20:01:47.010000"],["2024-07-25T20:01:48.010000"],["2024-07-25T20:01:49.010000"],["2024-07-25T20:01:50.010000"],["2024-07-25T20:01:51.010000"],["2024-07-25T20:01:52.010000"],["2024-07-25T20:01:53.010000"],["2024-07-25T20:01:54.010000"],["2024-07-25T20:01:55.010000"],["2024-07-25T20:01:56.010000"],["2024-07-25T20:01:57.010000"],["2024-07-25T20:01:58.010000"],["2024-07-25T20:01:59.010000"],["2024-07-25T20:02:00.010000"],["2024-07-25T20:02:01.010000"],["2024-07-25T20:02:02.010000"],["2024-07-25T20:02:03.010000"],["2024-07-25T20:02:04.010000"],["2024-07-25T20:02:05.010000"],["2024-07-25T20:02:06.010000"],["2024-07-25T20:02:07.010000"],["2024-07-25T20:02:08.010000"],["2024-07-25T20:02:09.010000"],["2024-07-25T20:02:10.010000"],["2024-07-25T20:02:11.010000"],["2024-07-25T20:02:12.010000"],["2024-07-25T20:02:13.010000"],["2024-07-25T20:02:14.010000"],["2024-07-25T20:02:15.010000"],["2024-07-25T20:02:16.010000"],["2024-07-25T20:02:17.010000"],["2024-07-25T20:02:18.010000"],["2024-07-25T20:02:19.010000"],["2024-07-25T20:02:20.010000"],["2024-07-25T20:02:21.010000"],["2024-07-25T20:02:22.010000"],["2024-07-25T20:02:23.010000"],["2024-07-25T20:02:24.010000"],["2024-07-25T20:02:25.010000"],["2024-07-25T20:02:26.010000"],["2024-07-25T20:02:27.010000"],["2024-07-25T20:02:28.010000"],["2024-07-25T20:02:29.010000"],["2024-07-25T20:02:30.010000"],["2024-07-25T20:02:31.010000"],["2024-07-25T20:02:32.010000"],["2024-07-25T20:02:33.010000"],["2024-07-25T20:02:34.010000"],["2024-07-25T20:02:35.010000"],["2024-07-25T20:02:36.010000"],["2024-07-25T20:02:37.010000"],["2024-07-25T20:02:38.010000"],["2024-07-25T20:02:39.010000"],["2024-07-25T20:02:40.010000"],["2024-07-25T20:02:41.010000"],["2024-07-25T20:02:42.010000"],["2024-07-25T20:02:43.010000"],["2024-07-25T20:02:44.010000"],["2024-07-25T20:02:45.010000"],["2024-07-25T20:02:46.010000"],["2024-07-25T20:02:47.010000"],["2024-07-25T20:02:48.010000"],["2024-07-25T20:02:49.010000"],["2024-07-25T20:02:50.010000"],["2024-07-25T20:02:51.010000"],["2024-07-25T20:02:52.010000"],["2024-07-25T20:02:53.010000"],["2024-07-25T20:02:54.010000"],["2024-07-25T20:02:55.010000"],["2024-07-25T20:02:56.010000"],["2024-07-25T20:02:57.010000"],["2024-07-25T20:02:58.010000"],["2024-07-25T20:02:59.010000"],["2024-07-25T20:03:00.010000"],["2024-07-25T20:03:01.010000"],["2024-07-25T20:03:02.010000"],["2024-07-25T20:03:03.010000"],["2024-07-25T20:03:04.010000"],["2024-07-25T20:03:05.010000"],["2024-07-25T20:03:06.010000"],["2024-07-25T20:03:07.010000"],["2024-07-25T20:03:08.010000"],["2024-07-25T20:03:09.010000"],["2024-07-25T20:03:10.010000"],["2024-07-25T20:03:11.010000"],["2024-07-25T20:03:12.010000"],["2024-07-25T20:03:13.010000"],["2024-07-25T20:03:14.010000"],["2024-07-25T20:03:15.010000"],["2024-07-25T20:03:16.010000"],["2024-07-25T20:03:17.010000"],["2024-07-25T20:03:18.010000"],["2024-07-25T20:03:19.010000"],["2024-07-25T20:03:20.010000"],["2024-07-25T20:03:21.010000"],["2024-07-25T20:03:22.010000"],["2024-07-25T20:03:23.010000"],["2024-07-25T20:03:24.010000"],["2024-07-25T20:03:25.010000"],["2024-07-25T20:03:26.010000"],["2024-07-25T20:03:27.010000"],["2024-07-25T20:03:28.010000"],["2024-07-25T20:03:29.010000"],["2024-07-25T20:03:30.010000"],["2024-07-25T20:03:31.010000"],["2024-07-25T20:03:32.010000"],["2024-07-25T20:03:33.010000"],["2024-07-25T20:03:34.010000"],["2024-07-25T20:03:35.010000"],["2024-07-25T20:03:36.010000"],["2024-07-25T20:03:37.010000"],["2024-07-25T20:03:38.010000"],["2024-07-25T20:03:39.010000"],["2024-07-25T20:03:40.010000"],["2024-07-25T20:03:41.010000"],["2024-07-25T20:03:42.010000"],["2024-07-25T20:03:43.010000"],["2024-07-25T20:03:44.010000"],["2024-07-25T20:03:45.010000"],["2024-07-25T20:03:46.010000"],["2024-07-25T20:03:47.010000"],["2024-07-25T20:03:48.010000"],["2024-07-25T20:03:49.010000"],["2024-07-25T20:03:50.010000"],["2024-07-25T20:03:51.010000"],["2024-07-25T20:03:52.010000"],["2024-07-25T20:03:53.010000"],["2024-07-25T20:03:54.010000"],["2024-07-25T20:03:55.010000"],["2024-07-25T20:03:56.010000"],["2024-07-25T20:03:57.010000"],["2024-07-25T20:03:58.010000"],["2024-07-25T20:03:59.010000"],["2024-07-25T20:04:00.010000"],["2024-07-25T20:04:01.010000"],["2024-07-25T20:04:02.010000"],["2024-07-25T20:04:03.010000"],["2024-07-25T20:04:04.010000"],["2024-07-25T20:04:05.010000"],["2024-07-25T20:04:06.010000"],["2024-07-25T20:04:07.010000"],["2024-07-25T20:04:08.010000"],["2024-07-25T20:04:09.010000"],["2024-07-25T20:04:10.010000"],["2024-07-25T20:04:11.010000"],["2024-07-25T20:04:12.010000"],["2024-07-25T20:04:13.010000"],["2024-07-25T20:04:14.010000"],["2024-07-25T20:04:15.010000"],["2024-07-25T20:04:16.010000"],["2024-07-25T20:04:17.010000"],["2024-07-25T20:04:18.010000"],["2024-07-25T20:04:19.010000"],["2024-07-25T20:04:20.010000"],["2024-07-25T20:04:21.010000"],["2024-07-25T20:04:22.010000"],["2024-07-25T20:04:23.010000"],["2024-07-25T20:04:24.010000"],["2024-07-25T20:04:25.010000"],["2024-07-25T20:04:26.010000"],["2024-07-25T20:04:27.010000"],["2024-07-25T20:04:28.010000"],["2024-07-25T20:04:29.010000"],["2024-07-25T20:04:30.010000"],["2024-07-25T20:04:31.010000"],["2024-07-25T20:04:32.010000"],["2024-07-25T20:04:33.010000"],["2024-07-25T20:04:34.010000"],["2024-07-25T20:04:35.010000"],["2024-07-25T20:04:36.010000"],["2024-07-25T20:04:37.010000"],["2024-07-25T20:04:38.010000"],["2024-07-25T20:04:39.010000"],["2024-07-25T20:04:40.010000"],["2024-07-25T20:04:41.010000"],["2024-07-25T20:04:42.010000"],["2024-07-25T20:04:43.010000"],["2024-07-25T20:04:44.010000"],["2024-07-25T20:04:45.010000"],["2024-07-25T20:04:46.010000"],["2024-07-25T20:04:47.010000"],["2024-07-25T20:04:48.010000"],["2024-07-25T20:04:49.010000"],["2024-07-25T20:04:50.010000"],["2024-07-25T20:04:51.010000"],["2024-07-25T20:04:52.010000"],["2024-07-25T20:04:53.010000"],["2024-07-25T20:04:54.010000"],["2024-07-25T20:04:55.010000"],["2024-07-25T20:04:56.010000"],["2024-07-25T20:04:57.010000"],["2024-07-25T20:04:58.010000"],["2024-07-25T20:04:59.010000"],["2024-07-25T20:05:00.010000"],["2024-07-25T20:05:01.010000"],["2024-07-25T20:05:02.010000"],["2024-07-25T20:05:03.010000"],["2024-07-25T20:05:04.010000"],["2024-07-25T20:05:05.010000"],["2024-07-25T20:05:06.010000"],["2024-07-25T20:05:07.010000"],["2024-07-25T20:05:08.010000"],["2024-07-25T20:05:09.010000"],["2024-07-25T20:05:10.010000"],["2024-07-25T20:05:11.010000"],["2024-07-25T20:05:12.010000"],["2024-07-25T20:05:13.010000"],["2024-07-25T20:05:14.010000"],["2024-07-25T20:05:15.010000"],["2024-07-25T20:05:16.010000"],["2024-07-25T20:05:17.010000"],["2024-07-25T20:05:18.010000"],["2024-07-25T20:05:19.010000"],["2024-07-25T20:05:20.010000"],["2024-07-25T20:05:21.010000"],["2024-07-25T20:05:22.010000"],["2024-07-25T20:05:23.010000"],["2024-07-25T20:05:24.010000"],["2024-07-25T20:05:25.010000"],["2024-07-25T20:05:26.010000"],["2024-07-25T20:05:27.010000"],["2024-07-25T20:05:28.010000"],["2024-07-25T20:05:29.010000"],["2024-07-25T20:05:30.010000"],["2024-07-25T20:05:31.010000"],["2024-07-25T20:05:32.010000"],["2024-07-25T20:05:33.010000"],["2024-07-25T20:05:34.010000"],["2024-07-25T20:05:35.010000"],["2024-07-25T20:05:36.010000"],["2024-07-25T20:05:37.010000"],["2024-07-25T20:05:38.010000"],["2024-07-25T20:05:39.010000"],["2024-07-25T20:05:40.010000"],["2024-07-25T20:05:41.010000"],["2024-07-25T20:05:42.010000"],["2024-07-25T20:05:43.010000"],["2024-07-25T20:05:44.010000"],["2024-07-25T20:05:45.010000"],["2024-07-25T20:05:46.010000"],["2024-07-25T20:05:47.010000"],["2024-07-25T20:05:48.010000"],["2024-07-25T20:05:49.010000"],["2024-07-25T20:05:50.010000"],["2024-07-25T20:05:51.010000"],["2024-07-25T20:05:52.010000"],["2024-07-25T20:05:53.010000"],["2024-07-25T20:05:54.010000"],["2024-07-25T20:05:55.010000"],["2024-07-25T20:05:56.010000"],["2024-07-25T20:05:57.010000"],["2024-07-25T20:05:58.010000"],["2024-07-25T20:05:59.010000"],["2024-07-25T20:06:00.010000"],["2024-07-25T20:06:01.010000"],["2024-07-25T20:06:02.010000"],["2024-07-25T20:06:03.010000"],["2024-07-25T20:06:04.010000"],["2024-07-25T20:06:05.010000"],["2024-07-25T20:06:06.010000"],["2024-07-25T20:06:07.010000"],["2024-07-25T20:06:08.010000"],["2024-07-25T20:06:09.010000"],["2024-07-25T20:06:10.010000"],["2024-07-25T20:06:11.010000"],["2024-07-25T20:06:12.010000"],["2024-07-25T20:06:13.010000"],["2024-07-25T20:06:14.010000"],["2024-07-25T20:06:15.010000"],["2024-07-25T20:06:16.010000"],["2024-07-25T20:06:17.010000"],["2024-07-25T20:06:18.010000"],["2024-07-25T20:06:19.010000"],["2024-07-25T20:06:20.010000"],["2024-07-25T20:06:21.010000"],["2024-07-25T20:06:22.010000"],["2024-07-25T20:06:23.010000"],["2024-07-25T20:06:24.010000"],["2024-07-25T20:06:25.010000"],["2024-07-25T20:06:26.010000"],["2024-07-25T20:06:27.010000"],["2024-07-25T20:06:28.010000"],["2024-07-25T20:06:29.010000"],["2024-07-25T20:06:30.010000"],["2024-07-25T20:06:31.010000"],["2024-07-25T20:06:32.010000"],["2024-07-25T20:06:33.010000"],["2024-07-25T20:06:34.010000"],["2024-07-25T20:06:35.010000"],["2024-07-25T20:06:36.010000"],["2024-07-25T20:06:37.010000"],["2024-07-25T20:06:38.010000"],["2024-07-25T20:06:39.010000"],["2024-07-25T20:06:40.010000"],["2024-07-25T20:06:41.010000"],["2024-07-25T20:06:42.010000"],["2024-07-25T20:06:43.010000"],["2024-07-25T20:06:44.010000"],["2024-07-25T20:06:45.010000"],["2024-07-25T20:06:46.010000"],["2024-07-25T20:06:47.010000"],["2024-07-25T20:06:48.010000"],["2024-07-25T20:06:49.010000"],["2024-07-25T20:06:50.010000"],["2024-07-25T20:06:51.010000"],["2024-07-25T20:06:52.010000"],["2024-07-25T20:06:53.010000"],["2024-07-25T20:06:54.010000"],["2024-07-25T20:06:55.010000"],["2024-07-25T20:06:56.010000"],["2024-07-25T20:06:57.010000"],["2024-07-25T20:06:58.010000"],["2024-07-25T20:06:59.010000"],["2024-07-25T20:07:00.010000"],["2024-07-25T20:07:01.010000"],["2024-07-25T20:07:02.010000"],["2024-07-25T20:07:03.010000"],["2024-07-25T20:07:04.010000"],["2024-07-25T20:07:05.010000"],["2024-07-25T20:07:06.010000"],["2024-07-25T20:07:07.010000"],["2024-07-25T20:07:08.010000"],["2024-07-25T20:07:09.010000"],["2024-07-25T20:07:10.010000"],["2024-07-25T20:07:11.010000"],["2024-07-25T20:07:12.010000"],["2024-07-25T20:07:13.010000"],["2024-07-25T20:07:14.010000"],["2024-07-25T20:07:15.010000"],["2024-07-25T20:07:16.010000"],["2024-07-25T20:07:17.010000"],["2024-07-25T20:07:18.010000"],["2024-07-25T20:07:19.010000"],["2024-07-25T20:07:20.010000"],["2024-07-25T20:07:21.010000"],["2024-07-25T20:07:22.010000"],["2024-07-25T20:07:23.010000"],["2024-07-25T20:07:24.010000"],["2024-07-25T20:07:25.010000"],["2024-07-25T20:07:26.010000"],["2024-07-25T20:07:27.010000"],["2024-07-25T20:07:28.010000"],["2024-07-25T20:07:29.010000"],["2024-07-25T20:07:30.010000"],["2024-07-25T20:07:31.010000"],["2024-07-25T20:07:32.010000"],["2024-07-25T20:07:33.010000"],["2024-07-25T20:07:34.010000"],["2024-07-25T20:07:35.010000"],["2024-07-25T20:07:36.010000"],["2024-07-25T20:07:37.010000"],["2024-07-25T20:07:38.010000"],["2024-07-25T20:07:39.010000"],["2024-07-25T20:07:40.010000"],["2024-07-25T20:07:41.010000"],["2024-07-25T20:07:42.010000"],["2024-07-25T20:07:43.010000"],["2024-07-25T20:07:44.010000"],["2024-07-25T20:07:45.010000"],["2024-07-25T20:07:46.010000"],["2024-07-25T20:07:47.010000"],["2024-07-25T20:07:48.010000"],["2024-07-25T20:07:49.010000"],["2024-07-25T20:07:50.010000"],["2024-07-25T20:07:51.010000"],["2024-07-25T20:07:52.010000"],["2024-07-25T20:07:53.010000"],["2024-07-25T20:07:54.010000"],["2024-07-25T20:07:55.010000"],["2024-07-25T20:07:56.010000"],["2024-07-25T20:07:57.010000"],["2024-07-25T20:07:58.010000"],["2024-07-25T20:07:59.010000"],["2024-07-25T20:08:00.010000"],["2024-07-25T20:08:01.010000"],["2024-07-25T20:08:02.010000"],["2024-07-25T20:08:03.010000"],["2024-07-25T20:08:04.010000"],["2024-07-25T20:08:05.010000"],["2024-07-25T20:08:06.010000"],["2024-07-25T20:08:07.010000"],["2024-07-25T20:08:08.010000"],["2024-07-25T20:08:09.010000"],["2024-07-25T20:08:10.010000"],["2024-07-25T20:08:11.010000"],["2024-07-25T20:08:12.010000"],["2024-07-25T20:08:13.010000"],["2024-07-25T20:08:14.010000"],["2024-07-25T20:08:15.010000"],["2024-07-25T20:08:16.010000"],["2024-07-25T20:08:17.010000"],["2024-07-25T20:08:18.010000"],["2024-07-25T20:08:19.010000"],["2024-07-25T20:08:20.010000"],["2024-07-25T20:08:21.010000"],["2024-07-25T20:08:22.010000"],["2024-07-25T20:08:23.010000"],["2024-07-25T20:08:24.010000"],["2024-07-25T20:08:25.010000"],["2024-07-25T20:08:26.010000"],["2024-07-25T20:08:27.010000"],["2024-07-25T20:08:28.010000"],["2024-07-25T20:08:29.010000"],["2024-07-25T20:08:30.010000"],["2024-07-25T20:08:31.010000"],["2024-07-25T20:08:32.010000"],["2024-07-25T20:08:33.010000"],["2024-07-25T20:08:34.010000"],["2024-07-25T20:08:35.010000"],["2024-07-25T20:08:36.010000"],["2024-07-25T20:08:37.010000"],["2024-07-25T20:08:38.010000"],["2024-07-25T20:08:39.010000"],["2024-07-25T20:08:40.010000"],["2024-07-25T20:08:41.010000"],["2024-07-25T20:08:42.010000"],["2024-07-25T20:08:43.010000"],["2024-07-25T20:08:44.010000"],["2024-07-25T20:08:45.010000"],["2024-07-25T20:08:46.010000"],["2024-07-25T20:08:47.010000"],["2024-07-25T20:08:48.010000"],["2024-07-25T20:08:49.010000"],["2024-07-25T20:08:50.010000"],["2024-07-25T20:08:51.010000"],["2024-07-25T20:08:52.010000"],["2024-07-25T20:08:53.010000"],["2024-07-25T20:08:54.010000"],["2024-07-25T20:08:55.010000"],["2024-07-25T20:08:56.010000"],["2024-07-25T20:08:57.010000"],["2024-07-25T20:08:58.010000"],["2024-07-25T20:08:59.010000"],["2024-07-25T20:09:00.010000"],["2024-07-25T20:09:01.010000"],["2024-07-25T20:09:02.010000"],["2024-07-25T20:09:03.010000"],["2024-07-25T20:09:04.010000"],["2024-07-25T20:09:05.010000"],["2024-07-25T20:09:06.010000"],["2024-07-25T20:09:07.010000"],["2024-07-25T20:09:08.010000"],["2024-07-25T20:09:09.010000"],["2024-07-25T20:09:10.010000"],["2024-07-25T20:09:11.010000"],["2024-07-25T20:09:12.010000"],["2024-07-25T20:09:13.010000"],["2024-07-25T20:09:14.010000"],["2024-07-25T20:09:15.010000"],["2024-07-25T20:09:16.010000"],["2024-07-25T20:09:17.010000"],["2024-07-25T20:09:18.010000"],["2024-07-25T20:09:19.010000"],["2024-07-25T20:09:20.010000"],["2024-07-25T20:09:21.010000"],["2024-07-25T20:09:22.010000"],["2024-07-25T20:09:23.010000"],["2024-07-25T20:09:24.010000"],["2024-07-25T20:09:25.010000"],["2024-07-25T20:09:26.010000"],["2024-07-25T20:09:27.010000"],["2024-07-25T20:09:28.010000"],["2024-07-25T20:09:29.010000"],["2024-07-25T20:09:30.010000"],["2024-07-25T20:09:31.010000"],["2024-07-25T20:09:32.010000"],["2024-07-25T20:09:33.010000"],["2024-07-25T20:09:34.010000"],["2024-07-25T20:09:35.010000"],["2024-07-25T20:09:36.010000"],["2024-07-25T20:09:37.010000"],["2024-07-25T20:09:38.010000"],["2024-07-25T20:09:39.010000"],["2024-07-25T20:09:40.010000"],["2024-07-25T20:09:41.010000"],["2024-07-25T20:09:42.010000"],["2024-07-25T20:09:43.010000"],["2024-07-25T20:09:44.010000"],["2024-07-25T20:09:45.010000"],["2024-07-25T20:09:46.010000"],["2024-07-25T20:09:47.010000"],["2024-07-25T20:09:48.010000"],["2024-07-25T20:09:49.010000"],["2024-07-25T20:09:50.010000"],["2024-07-25T20:09:51.010000"],["2024-07-25T20:09:52.010000"],["2024-07-25T20:09:53.010000"],["2024-07-25T20:09:54.010000"],["2024-07-25T20:09:55.010000"],["2024-07-25T20:09:56.010000"],["2024-07-25T20:09:57.010000"],["2024-07-25T20:09:58.010000"],["2024-07-25T20:09:59.010000"],["2024-07-25T20:10:00.010000"],["2024-07-25T20:10:01.010000"],["2024-07-25T20:10:02.010000"],["2024-07-25T20:10:03.010000"],["2024-07-25T20:10:04.010000"],["2024-07-25T20:10:05.010000"],["2024-07-25T20:10:06.010000"],["2024-07-25T20:10:07.010000"],["2024-07-25T20:10:08.010000"],["2024-07-25T20:10:09.010000"],["2024-07-25T20:10:10.010000"],["2024-07-25T20:10:11.010000"],["2024-07-25T20:10:12.010000"],["2024-07-25T20:10:13.010000"],["2024-07-25T20:10:14.010000"],["2024-07-25T20:10:15.010000"],["2024-07-25T20:10:16.010000"],["2024-07-25T20:10:17.010000"],["2024-07-25T20:10:18.010000"],["2024-07-25T20:10:19.010000"],["2024-07-25T20:10:20.010000"],["2024-07-25T20:10:21.010000"],["2024-07-25T20:10:22.010000"],["2024-07-25T20:10:23.010000"],["2024-07-25T20:10:24.010000"],["2024-07-25T20:10:25.010000"],["2024-07-25T20:10:26.010000"],["2024-07-25T20:10:27.010000"],["2024-07-25T20:10:28.010000"],["2024-07-25T20:10:29.010000"],["2024-07-25T20:10:30.010000"],["2024-07-25T20:10:31.010000"],["2024-07-25T20:10:32.010000"],["2024-07-25T20:10:33.010000"],["2024-07-25T20:10:34.010000"],["2024-07-25T20:10:35.010000"],["2024-07-25T20:10:36.010000"],["2024-07-25T20:10:37.010000"],["2024-07-25T20:10:38.010000"],["2024-07-25T20:10:39.010000"],["2024-07-25T20:10:40.010000"],["2024-07-25T20:10:41.010000"],["2024-07-25T20:10:42.010000"],["2024-07-25T20:10:43.010000"],["2024-07-25T20:10:44.010000"],["2024-07-25T20:10:45.010000"],["2024-07-25T20:10:46.010000"],["2024-07-25T20:10:47.010000"],["2024-07-25T20:10:48.010000"],["2024-07-25T20:10:49.010000"],["2024-07-25T20:10:50.010000"],["2024-07-25T20:10:51.010000"],["2024-07-25T20:10:52.010000"],["2024-07-25T20:10:53.010000"],["2024-07-25T20:10:54.010000"],["2024-07-25T20:10:55.010000"],["2024-07-25T20:10:56.010000"],["2024-07-25T20:10:57.010000"],["2024-07-25T20:10:58.010000"],["2024-07-25T20:10:59.010000"],["2024-07-25T20:11:00.010000"],["2024-07-25T20:11:01.010000"],["2024-07-25T20:11:02.010000"],["2024-07-25T20:11:03.010000"],["2024-07-25T20:11:04.010000"],["2024-07-25T20:11:05.010000"],["2024-07-25T20:11:06.010000"],["2024-07-25T20:11:07.010000"],["2024-07-25T20:11:08.010000"],["2024-07-25T20:11:09.010000"],["2024-07-25T20:11:10.010000"],["2024-07-25T20:11:11.010000"],["2024-07-25T20:11:12.010000"],["2024-07-25T20:11:13.010000"],["2024-07-25T20:11:14.010000"],["2024-07-25T20:11:15.010000"],["2024-07-25T20:11:16.010000"],["2024-07-25T20:11:17.010000"],["2024-07-25T20:11:18.010000"],["2024-07-25T20:11:19.010000"],["2024-07-25T20:11:20.010000"],["2024-07-25T20:11:21.010000"],["2024-07-25T20:11:22.010000"],["2024-07-25T20:11:23.010000"],["2024-07-25T20:11:24.010000"],["2024-07-25T20:11:25.010000"],["2024-07-25T20:11:26.010000"],["2024-07-25T20:11:27.010000"],["2024-07-25T20:11:28.010000"],["2024-07-25T20:11:29.010000"],["2024-07-25T20:11:30.010000"],["2024-07-25T20:11:31.010000"],["2024-07-25T20:11:32.010000"],["2024-07-25T20:11:33.010000"],["2024-07-25T20:11:34.010000"],["2024-07-25T20:11:35.010000"],["2024-07-25T20:11:36.010000"],["2024-07-25T20:11:37.010000"],["2024-07-25T20:11:38.010000"],["2024-07-25T20:11:39.010000"],["2024-07-25T20:11:40.010000"],["2024-07-25T20:11:41.010000"],["2024-07-25T20:11:42.010000"],["2024-07-25T20:11:43.010000"],["2024-07-25T20:11:44.010000"],["2024-07-25T20:11:45.010000"],["2024-07-25T20:11:46.010000"],["2024-07-25T20:11:47.010000"],["2024-07-25T20:11:48.010000"],["2024-07-25T20:11:49.010000"],["2024-07-25T20:11:50.010000"],["2024-07-25T20:11:51.010000"],["2024-07-25T20:11:52.010000"],["2024-07-25T20:11:53.010000"],["2024-07-25T20:11:54.010000"],["2024-07-25T20:11:55.010000"],["2024-07-25T20:11:56.010000"],["2024-07-25T20:11:57.010000"],["2024-07-25T20:11:58.010000"],["2024-07-25T20:11:59.010000"],["2024-07-25T20:12:00.010000"],["2024-07-25T20:12:01.010000"],["2024-07-25T20:12:02.010000"],["2024-07-25T20:12:03.010000"],["2024-07-25T20:12:04.010000"],["2024-07-25T20:12:05.010000"],["2024-07-25T20:12:06.010000"],["2024-07-25T20:12:07.010000"],["2024-07-25T20:12:08.010000"],["2024-07-25T20:12:09.010000"],["2024-07-25T20:12:10.010000"],["2024-07-25T20:12:11.010000"],["2024-07-25T20:12:12.010000"],["2024-07-25T20:12:13.010000"],["2024-07-25T20:12:14.010000"],["2024-07-25T20:12:15.010000"],["2024-07-25T20:12:16.010000"],["2024-07-25T20:12:17.010000"],["2024-07-25T20:12:18.010000"],["2024-07-25T20:12:19.010000"],["2024-07-25T20:12:20.010000"],["2024-07-25T20:12:21.010000"],["2024-07-25T20:12:22.010000"],["2024-07-25T20:12:23.010000"],["2024-07-25T20:12:24.010000"],["2024-07-25T20:12:25.010000"],["2024-07-25T20:12:26.010000"],["2024-07-25T20:12:27.010000"],["2024-07-25T20:12:28.010000"],["2024-07-25T20:12:29.010000"],["2024-07-25T20:12:30.010000"],["2024-07-25T20:12:31.010000"],["2024-07-25T20:12:32.010000"],["2024-07-25T20:12:33.010000"],["2024-07-25T20:12:34.010000"],["2024-07-25T20:12:35.010000"],["2024-07-25T20:12:36.010000"],["2024-07-25T20:12:37.010000"],["2024-07-25T20:12:38.010000"],["2024-07-25T20:12:39.010000"],["2024-07-25T20:12:40.010000"],["2024-07-25T20:12:41.010000"],["2024-07-25T20:12:42.010000"],["2024-07-25T20:12:43.010000"],["2024-07-25T20:12:44.010000"],["2024-07-25T20:12:45.010000"],["2024-07-25T20:12:46.010000"],["2024-07-25T20:12:47.010000"],["2024-07-25T20:12:48.010000"],["2024-07-25T20:12:49.010000"],["2024-07-25T20:12:50.010000"],["2024-07-25T20:12:51.010000"],["2024-07-25T20:12:52.010000"],["2024-07-25T20:12:53.010000"],["2024-07-25T20:12:54.010000"],["2024-07-25T20:12:55.010000"],["2024-07-25T20:12:56.010000"],["2024-07-25T20:12:57.010000"],["2024-07-25T20:12:58.010000"],["2024-07-25T20:12:59.010000"],["2024-07-25T20:13:00.010000"],["2024-07-25T20:13:01.010000"],["2024-07-25T20:13:02.010000"],["2024-07-25T20:13:03.010000"],["2024-07-25T20:13:04.010000"],["2024-07-25T20:13:05.010000"],["2024-07-25T20:13:06.010000"],["2024-07-25T20:13:07.010000"],["2024-07-25T20:13:08.010000"],["2024-07-25T20:13:09.010000"],["2024-07-25T20:13:10.010000"],["2024-07-25T20:13:11.010000"],["2024-07-25T20:13:12.010000"],["2024-07-25T20:13:13.010000"],["2024-07-25T20:13:14.010000"],["2024-07-25T20:13:15.010000"],["2024-07-25T20:13:16.010000"],["2024-07-25T20:13:17.010000"],["2024-07-25T20:13:18.010000"],["2024-07-25T20:13:19.010000"],["2024-07-25T20:13:20.010000"],["2024-07-25T20:13:21.010000"],["2024-07-25T20:13:22.010000"],["2024-07-25T20:13:23.010000"],["2024-07-25T20:13:24.010000"],["2024-07-25T20:13:25.010000"],["2024-07-25T20:13:26.010000"],["2024-07-25T20:13:27.010000"],["2024-07-25T20:13:28.010000"],["2024-07-25T20:13:29.010000"],["2024-07-25T20:13:30.010000"],["2024-07-25T20:13:31.010000"],["2024-07-25T20:13:32.010000"],["2024-07-25T20:13:33.010000"],["2024-07-25T20:13:34.010000"],["2024-07-25T20:13:35.010000"],["2024-07-25T20:13:36.010000"],["2024-07-25T20:13:37.010000"],["2024-07-25T20:13:38.010000"],["2024-07-25T20:13:39.010000"],["2024-07-25T20:13:40.010000"],["2024-07-25T20:13:41.010000"],["2024-07-25T20:13:42.010000"],["2024-07-25T20:13:43.010000"],["2024-07-25T20:13:44.010000"],["2024-07-25T20:13:45.010000"],["2024-07-25T20:13:46.010000"],["2024-07-25T20:13:47.010000"],["2024-07-25T20:13:48.010000"],["2024-07-25T20:13:49.010000"],["2024-07-25T20:13:50.010000"],["2024-07-25T20:13:51.010000"],["2024-07-25T20:13:52.010000"],["2024-07-25T20:13:53.010000"],["2024-07-25T20:13:54.010000"],["2024-07-25T20:13:55.010000"],["2024-07-25T20:13:56.010000"],["2024-07-25T20:13:57.010000"],["2024-07-25T20:13:58.010000"],["2024-07-25T20:13:59.010000"],["2024-07-25T20:14:00.010000"],["2024-07-25T20:14:01.010000"],["2024-07-25T20:14:02.010000"],["2024-07-25T20:14:03.010000"],["2024-07-25T20:14:04.010000"],["2024-07-25T20:14:05.010000"],["2024-07-25T20:14:06.010000"],["2024-07-25T20:14:07.010000"],["2024-07-25T20:14:08.010000"],["2024-07-25T20:14:09.010000"],["2024-07-25T20:14:10.010000"],["2024-07-25T20:14:11.010000"],["2024-07-25T20:14:12.010000"],["2024-07-25T20:14:13.010000"],["2024-07-25T20:14:14.010000"],["2024-07-25T20:14:15.010000"],["2024-07-25T20:14:16.010000"],["2024-07-25T20:14:17.010000"],["2024-07-25T20:14:18.010000"],["2024-07-25T20:14:19.010000"],["2024-07-25T20:14:20.010000"],["2024-07-25T20:14:21.010000"],["2024-07-25T20:14:22.010000"],["2024-07-25T20:14:23.010000"],["2024-07-25T20:14:24.010000"],["2024-07-25T20:14:25.010000"],["2024-07-25T20:14:26.010000"],["2024-07-25T20:14:27.010000"],["2024-07-25T20:14:28.010000"],["2024-07-25T20:14:29.010000"],["2024-07-25T20:14:30.010000"],["2024-07-25T20:14:31.010000"],["2024-07-25T20:14:32.010000"],["2024-07-25T20:14:33.010000"],["2024-07-25T20:14:34.010000"],["2024-07-25T20:14:35.010000"],["2024-07-25T20:14:36.010000"],["2024-07-25T20:14:37.010000"],["2024-07-25T20:14:38.010000"],["2024-07-25T20:14:39.010000"],["2024-07-25T20:14:40.010000"],["2024-07-25T20:14:41.010000"],["2024-07-25T20:14:42.010000"],["2024-07-25T20:14:43.010000"],["2024-07-25T20:14:44.010000"],["2024-07-25T20:14:45.010000"],["2024-07-25T20:14:46.010000"],["2024-07-25T20:14:47.010000"],["2024-07-25T20:14:48.010000"],["2024-07-25T20:14:49.010000"],["2024-07-25T20:14:50.010000"],["2024-07-25T20:14:51.010000"],["2024-07-25T20:14:52.010000"],["2024-07-25T20:14:53.010000"],["2024-07-25T20:14:54.010000"],["2024-07-25T20:14:55.010000"],["2024-07-25T20:14:56.010000"],["2024-07-25T20:14:57.010000"],["2024-07-25T20:14:58.010000"],["2024-07-25T20:14:59.010000"],["2024-07-25T20:15:00.010000"],["2024-07-25T20:15:01.010000"],["2024-07-25T20:15:02.010000"],["2024-07-25T20:15:03.010000"],["2024-07-25T20:15:04.010000"],["2024-07-25T20:15:05.010000"],["2024-07-25T20:15:06.010000"],["2024-07-25T20:15:07.010000"],["2024-07-25T20:15:08.010000"],["2024-07-25T20:15:09.010000"],["2024-07-25T20:15:10.010000"],["2024-07-25T20:15:11.010000"],["2024-07-25T20:15:12.010000"],["2024-07-25T20:15:13.010000"],["2024-07-25T20:15:14.010000"],["2024-07-25T20:15:15.010000"],["2024-07-25T20:15:16.010000"],["2024-07-25T20:15:17.010000"],["2024-07-25T20:15:18.010000"],["2024-07-25T20:15:19.010000"],["2024-07-25T20:15:20.010000"],["2024-07-25T20:15:21.010000"],["2024-07-25T20:15:22.010000"],["2024-07-25T20:15:23.010000"],["2024-07-25T20:15:24.010000"],["2024-07-25T20:15:25.010000"],["2024-07-25T20:15:26.010000"],["2024-07-25T20:15:27.010000"],["2024-07-25T20:15:28.010000"],["2024-07-25T20:15:29.010000"],["2024-07-25T20:15:30.010000"],["2024-07-25T20:15:31.010000"],["2024-07-25T20:15:32.010000"],["2024-07-25T20:15:33.010000"],["2024-07-25T20:15:34.010000"],["2024-07-25T20:15:35.010000"],["2024-07-25T20:15:36.010000"],["2024-07-25T20:15:37.010000"],["2024-07-25T20:15:38.010000"],["2024-07-25T20:15:39.010000"],["2024-07-25T20:15:40.010000"],["2024-07-25T20:15:41.010000"],["2024-07-25T20:15:42.010000"],["2024-07-25T20:15:43.010000"],["2024-07-25T20:15:44.010000"],["2024-07-25T20:15:45.010000"],["2024-07-25T20:15:46.010000"],["2024-07-25T20:15:47.010000"],["2024-07-25T20:15:48.010000"],["2024-07-25T20:15:49.010000"],["2024-07-25T20:15:50.010000"],["2024-07-25T20:15:51.010000"],["2024-07-25T20:15:52.010000"],["2024-07-25T20:15:53.010000"],["2024-07-25T20:15:54.010000"],["2024-07-25T20:15:55.010000"],["2024-07-25T20:15:56.010000"],["2024-07-25T20:15:57.010000"],["2024-07-25T20:15:58.010000"],["2024-07-25T20:15:59.010000"],["2024-07-25T20:16:00.010000"],["2024-07-25T20:16:01.010000"],["2024-07-25T20:16:02.010000"],["2024-07-25T20:16:03.010000"],["2024-07-25T20:16:04.010000"],["2024-07-25T20:16:05.010000"],["2024-07-25T20:16:06.010000"],["2024-07-25T20:16:07.010000"],["2024-07-25T20:16:08.010000"],["2024-07-25T20:16:09.010000"],["2024-07-25T20:16:10.010000"],["2024-07-25T20:16:11.010000"],["2024-07-25T20:16:12.010000"],["2024-07-25T20:16:13.010000"],["2024-07-25T20:16:14.010000"],["2024-07-25T20:16:15.010000"],["2024-07-25T20:16:16.010000"],["2024-07-25T20:16:17.010000"],["2024-07-25T20:16:18.010000"],["2024-07-25T20:16:19.010000"],["2024-07-25T20:16:20.010000"],["2024-07-25T20:16:21.010000"],["2024-07-25T20:16:22.010000"],["2024-07-25T20:16:23.010000"],["2024-07-25T20:16:24.010000"],["2024-07-25T20:16:25.010000"],["2024-07-25T20:16:26.010000"],["2024-07-25T20:16:27.010000"],["2024-07-25T20:16:28.010000"],["2024-07-25T20:16:29.010000"],["2024-07-25T20:16:30.010000"],["2024-07-25T20:16:31.010000"],["2024-07-25T20:16:32.010000"],["2024-07-25T20:16:33.010000"],["2024-07-25T20:16:34.010000"],["2024-07-25T20:16:35.010000"],["2024-07-25T20:16:36.010000"],["2024-07-25T20:16:37.010000"],["2024-07-25T20:16:38.010000"],["2024-07-25T20:16:39.010000"],["2024-07-25T20:16:40.010000"],["2024-07-25T20:16:41.010000"],["2024-07-25T20:16:42.010000"],["2024-07-25T20:16:43.010000"],["2024-07-25T20:16:44.010000"],["2024-07-25T20:16:45.010000"],["2024-07-25T20:16:46.010000"],["2024-07-25T20:16:47.010000"],["2024-07-25T20:16:48.010000"],["2024-07-25T20:16:49.010000"],["2024-07-25T20:16:50.010000"],["2024-07-25T20:16:51.010000"],["2024-07-25T20:16:52.010000"],["2024-07-25T20:16:53.010000"],["2024-07-25T20:16:54.010000"],["2024-07-25T20:16:55.010000"],["2024-07-25T20:16:56.010000"],["2024-07-25T20:16:57.010000"],["2024-07-25T20:16:58.010000"],["2024-07-25T20:16:59.010000"],["2024-07-25T20:17:00.010000"],["2024-07-25T20:17:01.010000"],["2024-07-25T20:17:02.010000"],["2024-07-25T20:17:03.010000"],["2024-07-25T20:17:04.010000"],["2024-07-25T20:17:05.010000"],["2024-07-25T20:17:06.010000"],["2024-07-25T20:17:07.010000"],["2024-07-25T20:17:08.010000"],["2024-07-25T20:17:09.010000"],["2024-07-25T20:17:10.010000"],["2024-07-25T20:17:11.010000"],["2024-07-25T20:17:12.010000"],["2024-07-25T20:17:13.010000"],["2024-07-25T20:17:14.010000"],["2024-07-25T20:17:15.010000"],["2024-07-25T20:17:16.010000"],["2024-07-25T20:17:17.010000"],["2024-07-25T20:17:18.010000"],["2024-07-25T20:17:19.010000"],["2024-07-25T20:17:20.010000"],["2024-07-25T20:17:21.010000"],["2024-07-25T20:17:22.010000"],["2024-07-25T20:17:23.010000"],["2024-07-25T20:17:24.010000"],["2024-07-25T20:17:25.010000"],["2024-07-25T20:17:26.010000"],["2024-07-25T20:17:27.010000"],["2024-07-25T20:17:28.010000"],["2024-07-25T20:17:29.010000"],["2024-07-25T20:17:30.010000"],["2024-07-25T20:17:31.010000"],["2024-07-25T20:17:32.010000"],["2024-07-25T20:17:33.010000"],["2024-07-25T20:17:34.010000"],["2024-07-25T20:17:35.010000"],["2024-07-25T20:17:36.010000"],["2024-07-25T20:17:37.010000"],["2024-07-25T20:17:38.010000"],["2024-07-25T20:17:39.010000"],["2024-07-25T20:17:40.010000"],["2024-07-25T20:17:41.010000"],["2024-07-25T20:17:42.010000"],["2024-07-25T20:17:43.010000"],["2024-07-25T20:17:44.010000"],["2024-07-25T20:17:45.010000"],["2024-07-25T20:17:46.010000"],["2024-07-25T20:17:47.010000"],["2024-07-25T20:17:48.010000"],["2024-07-25T20:17:49.010000"],["2024-07-25T20:17:50.010000"],["2024-07-25T20:17:51.010000"],["2024-07-25T20:17:52.010000"],["2024-07-25T20:17:53.010000"],["2024-07-25T20:17:54.010000"],["2024-07-25T20:17:55.010000"],["2024-07-25T20:17:56.010000"],["2024-07-25T20:17:57.010000"],["2024-07-25T20:17:58.010000"],["2024-07-25T20:17:59.010000"],["2024-07-25T20:18:00.010000"],["2024-07-25T20:18:01.010000"],["2024-07-25T20:18:02.010000"],["2024-07-25T20:18:03.010000"],["2024-07-25T20:18:04.010000"],["2024-07-25T20:18:05.010000"],["2024-07-25T20:18:06.010000"],["2024-07-25T20:18:07.010000"],["2024-07-25T20:18:08.010000"],["2024-07-25T20:18:09.010000"],["2024-07-25T20:18:10.010000"],["2024-07-25T20:18:11.010000"],["2024-07-25T20:18:12.010000"],["2024-07-25T20:18:13.010000"],["2024-07-25T20:18:14.010000"],["2024-07-25T20:18:15.010000"],["2024-07-25T20:18:16.010000"],["2024-07-25T20:18:17.010000"],["2024-07-25T20:18:18.010000"],["2024-07-25T20:18:19.010000"],["2024-07-25T20:18:20.010000"],["2024-07-25T20:18:21.010000"],["2024-07-25T20:18:22.010000"],["2024-07-25T20:18:23.010000"],["2024-07-25T20:18:24.010000"],["2024-07-25T20:18:25.010000"],["2024-07-25T20:18:26.010000"],["2024-07-25T20:18:27.010000"],["2024-07-25T20:18:28.010000"],["2024-07-25T20:18:29.010000"],["2024-07-25T20:18:30.010000"],["2024-07-25T20:18:31.010000"],["2024-07-25T20:18:32.010000"],["2024-07-25T20:18:33.010000"],["2024-07-25T20:18:34.010000"],["2024-07-25T20:18:35.010000"],["2024-07-25T20:18:36.010000"],["2024-07-25T20:18:37.010000"],["2024-07-25T20:18:38.010000"],["2024-07-25T20:18:39.010000"],["2024-07-25T20:18:40.010000"],["2024-07-25T20:18:41.010000"],["2024-07-25T20:18:42.010000"],["2024-07-25T20:18:43.010000"],["2024-07-25T20:18:44.010000"],["2024-07-25T20:18:45.010000"],["2024-07-25T20:18:46.010000"],["2024-07-25T20:18:47.010000"],["2024-07-25T20:18:48.010000"],["2024-07-25T20:18:49.010000"],["2024-07-25T20:18:50.010000"],["2024-07-25T20:18:51.010000"],["2024-07-25T20:18:52.010000"],["2024-07-25T20:18:53.010000"],["2024-07-25T20:18:54.010000"],["2024-07-25T20:18:55.010000"],["2024-07-25T20:18:56.010000"],["2024-07-25T20:18:57.010000"],["2024-07-25T20:18:58.010000"],["2024-07-25T20:18:59.010000"],["2024-07-25T20:19:00.010000"],["2024-07-25T20:19:01.010000"],["2024-07-25T20:19:02.010000"],["2024-07-25T20:19:03.010000"],["2024-07-25T20:19:04.010000"],["2024-07-25T20:19:05.010000"],["2024-07-25T20:19:06.010000"],["2024-07-25T20:19:07.010000"],["2024-07-25T20:19:08.010000"],["2024-07-25T20:19:09.010000"],["2024-07-25T20:19:10.010000"],["2024-07-25T20:19:11.010000"],["2024-07-25T20:19:12.010000"],["2024-07-25T20:19:13.010000"],["2024-07-25T20:19:14.010000"],["2024-07-25T20:19:15.010000"],["2024-07-25T20:19:16.010000"],["2024-07-25T20:19:17.010000"],["2024-07-25T20:19:18.010000"],["2024-07-25T20:19:19.010000"],["2024-07-25T20:19:20.010000"],["2024-07-25T20:19:21.010000"],["2024-07-25T20:19:22.010000"],["2024-07-25T20:19:23.010000"],["2024-07-25T20:19:24.010000"],["2024-07-25T20:19:25.010000"],["2024-07-25T20:19:26.010000"],["2024-07-25T20:19:27.010000"],["2024-07-25T20:19:28.010000"],["2024-07-25T20:19:29.010000"],["2024-07-25T20:19:30.010000"],["2024-07-25T20:19:31.010000"],["2024-07-25T20:19:32.010000"],["2024-07-25T20:19:33.010000"],["2024-07-25T20:19:34.010000"],["2024-07-25T20:19:35.010000"],["2024-07-25T20:19:36.010000"],["2024-07-25T20:19:37.010000"],["2024-07-25T20:19:38.010000"],["2024-07-25T20:19:39.010000"],["2024-07-25T20:19:40.010000"],["2024-07-25T20:19:41.010000"],["2024-07-25T20:19:42.010000"],["2024-07-25T20:19:43.010000"],["2024-07-25T20:19:44.010000"],["2024-07-25T20:19:45.010000"],["2024-07-25T20:19:46.010000"],["2024-07-25T20:19:47.010000"],["2024-07-25T20:19:48.010000"],["2024-07-25T20:19:49.010000"],["2024-07-25T20:19:50.010000"],["2024-07-25T20:19:51.010000"],["2024-07-25T20:19:52.010000"],["2024-07-25T20:19:53.010000"],["2024-07-25T20:19:54.010000"],["2024-07-25T20:19:55.010000"],["2024-07-25T20:19:56.010000"],["2024-07-25T20:19:57.010000"],["2024-07-25T20:19:58.010000"],["2024-07-25T20:19:59.010000"],["2024-07-25T20:20:00.010000"],["2024-07-25T20:20:01.010000"],["2024-07-25T20:20:02.010000"],["2024-07-25T20:20:03.010000"],["2024-07-25T20:20:04.010000"],["2024-07-25T20:20:05.010000"],["2024-07-25T20:20:06.010000"],["2024-07-25T20:20:07.010000"],["2024-07-25T20:20:08.010000"],["2024-07-25T20:20:09.010000"],["2024-07-25T20:20:10.010000"],["2024-07-25T20:20:11.010000"],["2024-07-25T20:20:12.010000"],["2024-07-25T20:20:13.010000"],["2024-07-25T20:20:14.010000"],["2024-07-25T20:20:15.010000"],["2024-07-25T20:20:16.010000"],["2024-07-25T20:20:17.010000"],["2024-07-25T20:20:18.010000"],["2024-07-25T20:20:19.010000"],["2024-07-25T20:20:20.010000"],["2024-07-25T20:20:21.010000"],["2024-07-25T20:20:22.010000"],["2024-07-25T20:20:23.010000"],["2024-07-25T20:20:24.010000"],["2024-07-25T20:20:25.010000"],["2024-07-25T20:20:26.010000"],["2024-07-25T20:20:27.010000"],["2024-07-25T20:20:28.010000"],["2024-07-25T20:20:29.010000"],["2024-07-25T20:20:30.010000"],["2024-07-25T20:20:31.010000"],["2024-07-25T20:20:32.010000"],["2024-07-25T20:20:33.010000"],["2024-07-25T20:20:34.010000"],["2024-07-25T20:20:35.010000"],["2024-07-25T20:20:36.010000"],["2024-07-25T20:20:37.010000"],["2024-07-25T20:20:38.010000"],["2024-07-25T20:20:39.010000"],["2024-07-25T20:20:40.010000"],["2024-07-25T20:20:41.010000"],["2024-07-25T20:20:42.010000"],["2024-07-25T20:20:43.010000"],["2024-07-25T20:20:44.010000"],["2024-07-25T20:20:45.010000"],["2024-07-25T20:20:46.010000"],["2024-07-25T20:20:47.010000"],["2024-07-25T20:20:48.010000"],["2024-07-25T20:20:49.010000"],["2024-07-25T20:20:50.010000"],["2024-07-25T20:20:51.010000"],["2024-07-25T20:20:52.010000"],["2024-07-25T20:20:53.010000"],["2024-07-25T20:20:54.010000"],["2024-07-25T20:20:55.010000"],["2024-07-25T20:20:56.010000"],["2024-07-25T20:20:57.010000"],["2024-07-25T20:20:58.010000"],["2024-07-25T20:20:59.010000"],["2024-07-25T20:21:00.010000"],["2024-07-25T20:21:01.010000"],["2024-07-25T20:21:02.010000"],["2024-07-25T20:21:03.010000"],["2024-07-25T20:21:04.010000"],["2024-07-25T20:21:05.010000"],["2024-07-25T20:21:06.010000"],["2024-07-25T20:21:07.010000"],["2024-07-25T20:21:08.010000"],["2024-07-25T20:21:09.010000"],["2024-07-25T20:21:10.010000"],["2024-07-25T20:21:11.010000"],["2024-07-25T20:21:12.010000"],["2024-07-25T20:21:13.010000"],["2024-07-25T20:21:14.010000"],["2024-07-25T20:21:15.010000"],["2024-07-25T20:21:16.010000"],["2024-07-25T20:21:17.010000"],["2024-07-25T20:21:18.010000"],["2024-07-25T20:21:19.010000"],["2024-07-25T20:21:20.010000"],["2024-07-25T20:21:21.010000"],["2024-07-25T20:21:22.010000"],["2024-07-25T20:21:23.010000"],["2024-07-25T20:21:24.010000"],["2024-07-25T20:21:25.010000"],["2024-07-25T20:21:26.010000"],["2024-07-25T20:21:27.010000"],["2024-07-25T20:21:28.010000"],["2024-07-25T20:21:29.010000"],["2024-07-25T20:21:30.010000"],["2024-07-25T20:21:31.010000"],["2024-07-25T20:21:32.010000"],["2024-07-25T20:21:33.010000"],["2024-07-25T20:21:34.010000"],["2024-07-25T20:21:35.010000"],["2024-07-25T20:21:36.010000"],["2024-07-25T20:21:37.010000"],["2024-07-25T20:21:38.010000"],["2024-07-25T20:21:39.010000"],["2024-07-25T20:21:40.010000"],["2024-07-25T20:21:41.010000"],["2024-07-25T20:21:42.010000"],["2024-07-25T20:21:43.010000"],["2024-07-25T20:21:44.010000"],["2024-07-25T20:21:45.010000"],["2024-07-25T20:21:46.010000"],["2024-07-25T20:21:47.010000"],["2024-07-25T20:21:48.010000"],["2024-07-25T20:21:49.010000"],["2024-07-25T20:21:50.010000"],["2024-07-25T20:21:51.010000"],["2024-07-25T20:21:52.010000"],["2024-07-25T20:21:53.010000"],["2024-07-25T20:21:54.010000"],["2024-07-25T20:21:55.010000"],["2024-07-25T20:21:56.010000"],["2024-07-25T20:21:57.010000"],["2024-07-25T20:21:58.010000"],["2024-07-25T20:21:59.010000"],["2024-07-25T20:22:00.010000"],["2024-07-25T20:22:01.010000"],["2024-07-25T20:22:02.010000"],["2024-07-25T20:22:03.010000"],["2024-07-25T20:22:04.010000"],["2024-07-25T20:22:05.010000"],["2024-07-25T20:22:06.010000"],["2024-07-25T20:22:07.010000"],["2024-07-25T20:22:08.010000"],["2024-07-25T20:22:09.010000"],["2024-07-25T20:22:10.010000"],["2024-07-25T20:22:11.010000"],["2024-07-25T20:22:12.010000"],["2024-07-25T20:22:13.010000"],["2024-07-25T20:22:14.010000"],["2024-07-25T20:22:15.010000"],["2024-07-25T20:22:16.010000"],["2024-07-25T20:22:17.010000"],["2024-07-25T20:22:18.010000"],["2024-07-25T20:22:19.010000"],["2024-07-25T20:22:20.010000"],["2024-07-25T20:22:21.010000"],["2024-07-25T20:22:22.010000"],["2024-07-25T20:22:23.010000"],["2024-07-25T20:22:24.010000"],["2024-07-25T20:22:25.010000"],["2024-07-25T20:22:26.010000"],["2024-07-25T20:22:27.010000"],["2024-07-25T20:22:28.010000"],["2024-07-25T20:22:29.010000"],["2024-07-25T20:22:30.010000"],["2024-07-25T20:22:31.010000"],["2024-07-25T20:22:32.010000"],["2024-07-25T20:22:33.010000"],["2024-07-25T20:22:34.010000"],["2024-07-25T20:22:35.010000"],["2024-07-25T20:22:36.010000"],["2024-07-25T20:22:37.010000"],["2024-07-25T20:22:38.010000"],["2024-07-25T20:22:39.010000"],["2024-07-25T20:22:40.010000"],["2024-07-25T20:22:41.010000"],["2024-07-25T20:22:42.010000"],["2024-07-25T20:22:43.010000"],["2024-07-25T20:22:44.010000"],["2024-07-25T20:22:45.010000"],["2024-07-25T20:22:46.010000"],["2024-07-25T20:22:47.010000"],["2024-07-25T20:22:48.010000"],["2024-07-25T20:22:49.010000"],["2024-07-25T20:22:50.010000"],["2024-07-25T20:22:51.010000"],["2024-07-25T20:22:52.010000"],["2024-07-25T20:22:53.010000"],["2024-07-25T20:22:54.010000"],["2024-07-25T20:22:55.010000"],["2024-07-25T20:22:56.010000"],["2024-07-25T20:22:57.010000"],["2024-07-25T20:22:58.010000"],["2024-07-25T20:22:59.010000"],["2024-07-25T20:23:00.010000"],["2024-07-25T20:23:01.010000"],["2024-07-25T20:23:02.010000"],["2024-07-25T20:23:03.010000"],["2024-07-25T20:23:04.010000"],["2024-07-25T20:23:05.010000"],["2024-07-25T20:23:06.010000"],["2024-07-25T20:23:07.010000"],["2024-07-25T20:23:08.010000"],["2024-07-25T20:23:09.010000"],["2024-07-25T20:23:10.010000"],["2024-07-25T20:23:11.010000"],["2024-07-25T20:23:12.010000"],["2024-07-25T20:23:13.010000"],["2024-07-25T20:23:14.010000"],["2024-07-25T20:23:15.010000"],["2024-07-25T20:23:16.010000"],["2024-07-25T20:23:17.010000"],["2024-07-25T20:23:18.010000"],["2024-07-25T20:23:19.010000"],["2024-07-25T20:23:20.010000"],["2024-07-25T20:23:21.010000"],["2024-07-25T20:23:22.010000"],["2024-07-25T20:23:23.010000"],["2024-07-25T20:23:24.010000"],["2024-07-25T20:23:25.010000"],["2024-07-25T20:23:26.010000"],["2024-07-25T20:23:27.010000"],["2024-07-25T20:23:28.010000"],["2024-07-25T20:23:29.010000"],["2024-07-25T20:23:30.010000"],["2024-07-25T20:23:31.010000"],["2024-07-25T20:23:32.010000"],["2024-07-25T20:23:33.010000"],["2024-07-25T20:23:34.010000"],["2024-07-25T20:23:35.010000"],["2024-07-25T20:23:36.010000"],["2024-07-25T20:23:37.010000"],["2024-07-25T20:23:38.010000"],["2024-07-25T20:23:39.010000"],["2024-07-25T20:23:40.010000"],["2024-07-25T20:23:41.010000"],["2024-07-25T20:23:42.010000"],["2024-07-25T20:23:43.010000"],["2024-07-25T20:23:44.010000"],["2024-07-25T20:23:45.010000"],["2024-07-25T20:23:46.010000"],["2024-07-25T20:23:47.010000"],["2024-07-25T20:23:48.010000"],["2024-07-25T20:23:49.010000"],["2024-07-25T20:23:50.010000"],["2024-07-25T20:23:51.010000"],["2024-07-25T20:23:52.010000"],["2024-07-25T20:23:53.010000"],["2024-07-25T20:23:54.010000"],["2024-07-25T20:23:55.010000"],["2024-07-25T20:23:56.010000"],["2024-07-25T20:23:57.010000"],["2024-07-25T20:23:58.010000"],["2024-07-25T20:23:59.010000"],["2024-07-25T20:24:00.010000"],["2024-07-25T20:24:01.010000"],["2024-07-25T20:24:02.010000"],["2024-07-25T20:24:03.010000"],["2024-07-25T20:24:04.010000"],["2024-07-25T20:24:05.010000"],["2024-07-25T20:24:06.010000"],["2024-07-25T20:24:07.010000"],["2024-07-25T20:24:08.010000"],["2024-07-25T20:24:09.010000"],["2024-07-25T20:24:10.010000"],["2024-07-25T20:24:11.010000"],["2024-07-25T20:24:12.010000"],["2024-07-25T20:24:13.010000"],["2024-07-25T20:24:14.010000"],["2024-07-25T20:24:15.010000"],["2024-07-25T20:24:16.010000"],["2024-07-25T20:24:17.010000"],["2024-07-25T20:24:18.010000"],["2024-07-25T20:24:19.010000"],["2024-07-25T20:24:20.010000"],["2024-07-25T20:24:21.010000"],["2024-07-25T20:24:22.010000"],["2024-07-25T20:24:23.010000"],["2024-07-25T20:24:24.010000"],["2024-07-25T20:24:25.010000"],["2024-07-25T20:24:26.010000"],["2024-07-25T20:24:27.010000"],["2024-07-25T20:24:28.010000"],["2024-07-25T20:24:29.010000"],["2024-07-25T20:24:30.010000"],["2024-07-25T20:24:31.010000"],["2024-07-25T20:24:32.010000"],["2024-07-25T20:24:33.010000"],["2024-07-25T20:24:34.010000"],["2024-07-25T20:24:35.010000"],["2024-07-25T20:24:36.010000"],["2024-07-25T20:24:37.010000"],["2024-07-25T20:24:38.010000"],["2024-07-25T20:24:39.010000"],["2024-07-25T20:24:40.010000"],["2024-07-25T20:24:41.010000"],["2024-07-25T20:24:42.010000"],["2024-07-25T20:24:43.010000"],["2024-07-25T20:24:44.010000"],["2024-07-25T20:24:45.010000"],["2024-07-25T20:24:46.010000"],["2024-07-25T20:24:47.010000"],["2024-07-25T20:24:48.010000"],["2024-07-25T20:24:49.010000"],["2024-07-25T20:24:50.010000"],["2024-07-25T20:24:51.010000"],["2024-07-25T20:24:52.010000"],["2024-07-25T20:24:53.010000"],["2024-07-25T20:24:54.010000"],["2024-07-25T20:24:55.010000"],["2024-07-25T20:24:56.010000"],["2024-07-25T20:24:57.010000"],["2024-07-25T20:24:58.010000"],["2024-07-25T20:24:59.010000"],["2024-07-25T20:25:00.010000"],["2024-07-25T20:25:01.010000"],["2024-07-25T20:25:02.010000"],["2024-07-25T20:25:03.010000"],["2024-07-25T20:25:04.010000"],["2024-07-25T20:25:05.010000"],["2024-07-25T20:25:06.010000"],["2024-07-25T20:25:07.010000"],["2024-07-25T20:25:08.010000"],["2024-07-25T20:25:09.010000"],["2024-07-25T20:25:10.010000"],["2024-07-25T20:25:11.010000"],["2024-07-25T20:25:12.010000"],["2024-07-25T20:25:13.010000"],["2024-07-25T20:25:14.010000"],["2024-07-25T20:25:15.010000"],["2024-07-25T20:25:16.010000"],["2024-07-25T20:25:17.010000"],["2024-07-25T20:25:18.010000"],["2024-07-25T20:25:19.010000"],["2024-07-25T20:25:20.010000"],["2024-07-25T20:25:21.010000"],["2024-07-25T20:25:22.010000"],["2024-07-25T20:25:23.010000"],["2024-07-25T20:25:24.010000"],["2024-07-25T20:25:25.010000"],["2024-07-25T20:25:26.010000"],["2024-07-25T20:25:27.010000"],["2024-07-25T20:25:28.010000"],["2024-07-25T20:25:29.010000"],["2024-07-25T20:25:30.010000"],["2024-07-25T20:25:31.010000"],["2024-07-25T20:25:32.010000"],["2024-07-25T20:25:33.010000"],["2024-07-25T20:25:34.010000"],["2024-07-25T20:25:35.010000"],["2024-07-25T20:25:36.010000"],["2024-07-25T20:25:37.010000"],["2024-07-25T20:25:38.010000"],["2024-07-25T20:25:39.010000"],["2024-07-25T20:25:40.010000"],["2024-07-25T20:25:41.010000"],["2024-07-25T20:25:42.010000"],["2024-07-25T20:25:43.010000"],["2024-07-25T20:25:44.010000"],["2024-07-25T20:25:45.010000"],["2024-07-25T20:25:46.010000"],["2024-07-25T20:25:47.010000"],["2024-07-25T20:25:48.010000"],["2024-07-25T20:25:49.010000"],["2024-07-25T20:25:50.010000"],["2024-07-25T20:25:51.010000"],["2024-07-25T20:25:52.010000"],["2024-07-25T20:25:53.010000"],["2024-07-25T20:25:54.010000"],["2024-07-25T20:25:55.010000"],["2024-07-25T20:25:56.010000"],["2024-07-25T20:25:57.010000"],["2024-07-25T20:25:58.010000"],["2024-07-25T20:25:59.010000"],["2024-07-25T20:26:00.010000"],["2024-07-25T20:26:01.010000"],["2024-07-25T20:26:02.010000"],["2024-07-25T20:26:03.010000"],["2024-07-25T20:26:04.010000"],["2024-07-25T20:26:05.010000"],["2024-07-25T20:26:06.010000"],["2024-07-25T20:26:07.010000"],["2024-07-25T20:26:08.010000"],["2024-07-25T20:26:09.010000"],["2024-07-25T20:26:10.010000"],["2024-07-25T20:26:11.010000"],["2024-07-25T20:26:12.010000"],["2024-07-25T20:26:13.010000"],["2024-07-25T20:26:14.010000"],["2024-07-25T20:26:15.010000"],["2024-07-25T20:26:16.010000"],["2024-07-25T20:26:17.010000"],["2024-07-25T20:26:18.010000"],["2024-07-25T20:26:19.010000"],["2024-07-25T20:26:20.010000"],["2024-07-25T20:26:21.010000"],["2024-07-25T20:26:22.010000"],["2024-07-25T20:26:23.010000"],["2024-07-25T20:26:24.010000"],["2024-07-25T20:26:25.010000"],["2024-07-25T20:26:26.010000"],["2024-07-25T20:26:27.010000"],["2024-07-25T20:26:28.010000"],["2024-07-25T20:26:29.010000"],["2024-07-25T20:26:30.010000"],["2024-07-25T20:26:31.010000"],["2024-07-25T20:26:32.010000"],["2024-07-25T20:26:33.010000"],["2024-07-25T20:26:34.010000"],["2024-07-25T20:26:35.010000"],["2024-07-25T20:26:36.010000"],["2024-07-25T20:26:37.010000"],["2024-07-25T20:26:38.010000"],["2024-07-25T20:26:39.010000"],["2024-07-25T20:26:40.010000"],["2024-07-25T20:26:41.010000"],["2024-07-25T20:26:42.010000"],["2024-07-25T20:26:43.010000"],["2024-07-25T20:26:44.010000"],["2024-07-25T20:26:45.010000"],["2024-07-25T20:26:46.010000"],["2024-07-25T20:26:47.010000"],["2024-07-25T20:26:48.010000"],["2024-07-25T20:26:49.010000"],["2024-07-25T20:26:50.010000"],["2024-07-25T20:26:51.010000"],["2024-07-25T20:26:52.010000"],["2024-07-25T20:26:53.010000"],["2024-07-25T20:26:54.010000"],["2024-07-25T20:26:55.010000"],["2024-07-25T20:26:56.010000"],["2024-07-25T20:26:57.010000"],["2024-07-25T20:26:58.010000"],["2024-07-25T20:26:59.010000"],["2024-07-25T20:27:00.010000"],["2024-07-25T20:27:01.010000"],["2024-07-25T20:27:02.010000"],["2024-07-25T20:27:03.010000"],["2024-07-25T20:27:04.010000"],["2024-07-25T20:27:05.010000"],["2024-07-25T20:27:06.010000"],["2024-07-25T20:27:07.010000"],["2024-07-25T20:27:08.010000"],["2024-07-25T20:27:09.010000"],["2024-07-25T20:27:10.010000"],["2024-07-25T20:27:11.010000"],["2024-07-25T20:27:12.010000"],["2024-07-25T20:27:13.010000"],["2024-07-25T20:27:14.010000"],["2024-07-25T20:27:15.010000"],["2024-07-25T20:27:16.010000"],["2024-07-25T20:27:17.010000"],["2024-07-25T20:27:18.010000"],["2024-07-25T20:27:19.010000"],["2024-07-25T20:27:20.010000"],["2024-07-25T20:27:21.010000"],["2024-07-25T20:27:22.010000"],["2024-07-25T20:27:23.010000"],["2024-07-25T20:27:24.010000"],["2024-07-25T20:27:25.010000"],["2024-07-25T20:27:26.010000"],["2024-07-25T20:27:27.010000"],["2024-07-25T20:27:28.010000"],["2024-07-25T20:27:29.010000"],["2024-07-25T20:27:30.010000"],["2024-07-25T20:27:31.010000"],["2024-07-25T20:27:32.010000"],["2024-07-25T20:27:33.010000"],["2024-07-25T20:27:34.010000"],["2024-07-25T20:27:35.010000"],["2024-07-25T20:27:36.010000"],["2024-07-25T20:27:37.010000"],["2024-07-25T20:27:38.010000"],["2024-07-25T20:27:39.010000"],["2024-07-25T20:27:40.010000"],["2024-07-25T20:27:41.010000"],["2024-07-25T20:27:42.010000"],["2024-07-25T20:27:43.010000"],["2024-07-25T20:27:44.010000"],["2024-07-25T20:27:45.010000"],["2024-07-25T20:27:46.010000"],["2024-07-25T20:27:47.010000"],["2024-07-25T20:27:48.010000"],["2024-07-25T20:27:49.010000"],["2024-07-25T20:27:50.010000"],["2024-07-25T20:27:51.010000"],["2024-07-25T20:27:52.010000"],["2024-07-25T20:27:53.010000"],["2024-07-25T20:27:54.010000"],["2024-07-25T20:27:55.010000"],["2024-07-25T20:27:56.010000"],["2024-07-25T20:27:57.010000"],["2024-07-25T20:27:58.010000"],["2024-07-25T20:27:59.010000"],["2024-07-25T20:28:00.010000"],["2024-07-25T20:28:01.010000"],["2024-07-25T20:28:02.010000"],["2024-07-25T20:28:03.010000"],["2024-07-25T20:28:04.010000"],["2024-07-25T20:28:05.010000"],["2024-07-25T20:28:06.010000"],["2024-07-25T20:28:07.010000"],["2024-07-25T20:28:08.010000"],["2024-07-25T20:28:09.010000"],["2024-07-25T20:28:10.010000"],["2024-07-25T20:28:11.010000"],["2024-07-25T20:28:12.010000"],["2024-07-25T20:28:13.010000"],["2024-07-25T20:28:14.010000"],["2024-07-25T20:28:15.010000"],["2024-07-25T20:28:16.010000"],["2024-07-25T20:28:17.010000"],["2024-07-25T20:28:18.010000"],["2024-07-25T20:28:19.010000"],["2024-07-25T20:28:20.010000"],["2024-07-25T20:28:21.010000"],["2024-07-25T20:28:22.010000"],["2024-07-25T20:28:23.010000"],["2024-07-25T20:28:24.010000"],["2024-07-25T20:28:25.010000"],["2024-07-25T20:28:26.010000"],["2024-07-25T20:28:27.010000"],["2024-07-25T20:28:28.010000"],["2024-07-25T20:28:29.010000"],["2024-07-25T20:28:30.010000"],["2024-07-25T20:28:31.010000"],["2024-07-25T20:28:32.010000"],["2024-07-25T20:28:33.010000"],["2024-07-25T20:28:34.010000"],["2024-07-25T20:28:35.010000"],["2024-07-25T20:28:36.010000"],["2024-07-25T20:28:37.010000"],["2024-07-25T20:28:38.010000"],["2024-07-25T20:28:39.010000"],["2024-07-25T20:28:40.010000"],["2024-07-25T20:28:41.010000"],["2024-07-25T20:28:42.010000"],["2024-07-25T20:28:43.010000"],["2024-07-25T20:28:44.010000"],["2024-07-25T20:28:45.010000"],["2024-07-25T20:28:46.010000"],["2024-07-25T20:28:47.010000"],["2024-07-25T20:28:48.010000"],["2024-07-25T20:28:49.010000"],["2024-07-25T20:28:50.010000"],["2024-07-25T20:28:51.010000"],["2024-07-25T20:28:52.010000"],["2024-07-25T20:28:53.010000"],["2024-07-25T20:28:54.010000"],["2024-07-25T20:28:55.010000"],["2024-07-25T20:28:56.010000"],["2024-07-25T20:28:57.010000"],["2024-07-25T20:28:58.010000"],["2024-07-25T20:28:59.010000"],["2024-07-25T20:29:00.010000"],["2024-07-25T20:29:01.010000"],["2024-07-25T20:29:02.010000"],["2024-07-25T20:29:03.010000"],["2024-07-25T20:29:04.010000"],["2024-07-25T20:29:05.010000"],["2024-07-25T20:29:06.010000"],["2024-07-25T20:29:07.010000"],["2024-07-25T20:29:08.010000"],["2024-07-25T20:29:09.010000"],["2024-07-25T20:29:10.010000"],["2024-07-25T20:29:11.010000"],["2024-07-25T20:29:12.010000"],["2024-07-25T20:29:13.010000"],["2024-07-25T20:29:14.010000"],["2024-07-25T20:29:15.010000"],["2024-07-25T20:29:16.010000"],["2024-07-25T20:29:17.010000"],["2024-07-25T20:29:18.010000"],["2024-07-25T20:29:19.010000"],["2024-07-25T20:29:20.010000"],["2024-07-25T20:29:21.010000"],["2024-07-25T20:29:22.010000"],["2024-07-25T20:29:23.010000"],["2024-07-25T20:29:24.010000"],["2024-07-25T20:29:25.010000"],["2024-07-25T20:29:26.010000"],["2024-07-25T20:29:27.010000"],["2024-07-25T20:29:28.010000"],["2024-07-25T20:29:29.010000"],["2024-07-25T20:29:30.010000"],["2024-07-25T20:29:31.010000"],["2024-07-25T20:29:32.010000"],["2024-07-25T20:29:33.010000"],["2024-07-25T20:29:34.010000"],["2024-07-25T20:29:35.010000"],["2024-07-25T20:29:36.010000"],["2024-07-25T20:29:37.010000"],["2024-07-25T20:29:38.010000"],["2024-07-25T20:29:39.010000"],["2024-07-25T20:29:40.010000"],["2024-07-25T20:29:41.010000"],["2024-07-25T20:29:42.010000"],["2024-07-25T20:29:43.010000"],["2024-07-25T20:29:44.010000"],["2024-07-25T20:29:45.010000"],["2024-07-25T20:29:46.010000"],["2024-07-25T20:29:47.010000"],["2024-07-25T20:29:48.010000"],["2024-07-25T20:29:49.010000"],["2024-07-25T20:29:50.010000"],["2024-07-25T20:29:51.010000"],["2024-07-25T20:29:52.010000"],["2024-07-25T20:29:53.010000"],["2024-07-25T20:29:54.010000"],["2024-07-25T20:29:55.010000"],["2024-07-25T20:29:56.010000"],["2024-07-25T20:29:57.010000"],["2024-07-25T20:29:58.010000"],["2024-07-25T20:29:59.010000"],["2024-07-25T20:30:00.010000"],["2024-07-25T20:30:01.010000"],["2024-07-25T20:30:02.010000"],["2024-07-25T20:30:03.010000"],["2024-07-25T20:30:04.010000"],["2024-07-25T20:30:05.010000"],["2024-07-25T20:30:06.010000"],["2024-07-25T20:30:07.010000"],["2024-07-25T20:30:08.010000"],["2024-07-25T20:30:09.010000"],["2024-07-25T20:30:10.010000"],["2024-07-25T20:30:11.010000"],["2024-07-25T20:30:12.010000"],["2024-07-25T20:30:13.010000"],["2024-07-25T20:30:14.010000"],["2024-07-25T20:30:15.010000"],["2024-07-25T20:30:16.010000"],["2024-07-25T20:30:17.010000"],["2024-07-25T20:30:18.010000"],["2024-07-25T20:30:19.010000"],["2024-07-25T20:30:20.010000"],["2024-07-25T20:30:21.010000"],["2024-07-25T20:30:22.010000"],["2024-07-25T20:30:23.010000"],["2024-07-25T20:30:24.010000"],["2024-07-25T20:30:25.010000"],["2024-07-25T20:30:26.010000"],["2024-07-25T20:30:27.010000"],["2024-07-25T20:30:28.010000"],["2024-07-25T20:30:29.010000"],["2024-07-25T20:30:30.010000"],["2024-07-25T20:30:31.010000"],["2024-07-25T20:30:32.010000"],["2024-07-25T20:30:33.010000"],["2024-07-25T20:30:34.010000"],["2024-07-25T20:30:35.010000"],["2024-07-25T20:30:36.010000"],["2024-07-25T20:30:37.010000"],["2024-07-25T20:30:38.010000"],["2024-07-25T20:30:39.010000"],["2024-07-25T20:30:40.010000"],["2024-07-25T20:30:41.010000"],["2024-07-25T20:30:42.010000"],["2024-07-25T20:30:43.010000"],["2024-07-25T20:30:44.010000"],["2024-07-25T20:30:45.010000"],["2024-07-25T20:30:46.010000"],["2024-07-25T20:30:47.010000"],["2024-07-25T20:30:48.010000"],["2024-07-25T20:30:49.010000"],["2024-07-25T20:30:50.010000"],["2024-07-25T20:30:51.010000"],["2024-07-25T20:30:52.010000"],["2024-07-25T20:30:53.010000"],["2024-07-25T20:30:54.010000"],["2024-07-25T20:30:55.010000"],["2024-07-25T20:30:56.010000"],["2024-07-25T20:30:57.010000"],["2024-07-25T20:30:58.010000"],["2024-07-25T20:30:59.010000"],["2024-07-25T20:31:00.010000"],["2024-07-25T20:31:01.010000"],["2024-07-25T20:31:02.010000"],["2024-07-25T20:31:03.010000"],["2024-07-25T20:31:04.010000"],["2024-07-25T20:31:05.010000"],["2024-07-25T20:31:06.010000"],["2024-07-25T20:31:07.010000"],["2024-07-25T20:31:08.010000"],["2024-07-25T20:31:09.010000"],["2024-07-25T20:31:10.010000"],["2024-07-25T20:31:11.010000"],["2024-07-25T20:31:12.010000"],["2024-07-25T20:31:13.010000"],["2024-07-25T20:31:14.010000"],["2024-07-25T20:31:15.010000"],["2024-07-25T20:31:16.010000"],["2024-07-25T20:31:17.010000"],["2024-07-25T20:31:18.010000"],["2024-07-25T20:31:19.010000"],["2024-07-25T20:31:20.010000"],["2024-07-25T20:31:21.010000"],["2024-07-25T20:31:22.010000"],["2024-07-25T20:31:23.010000"],["2024-07-25T20:31:24.010000"],["2024-07-25T20:31:25.010000"],["2024-07-25T20:31:26.010000"],["2024-07-25T20:31:27.010000"],["2024-07-25T20:31:28.010000"],["2024-07-25T20:31:29.010000"],["2024-07-25T20:31:30.010000"],["2024-07-25T20:31:31.010000"],["2024-07-25T20:31:32.010000"],["2024-07-25T20:31:33.010000"],["2024-07-25T20:31:34.010000"],["2024-07-25T20:31:35.010000"],["2024-07-25T20:31:36.010000"],["2024-07-25T20:31:37.010000"],["2024-07-25T20:31:38.010000"],["2024-07-25T20:31:39.010000"],["2024-07-25T20:31:40.010000"],["2024-07-25T20:31:41.010000"],["2024-07-25T20:31:42.010000"],["2024-07-25T20:31:43.010000"],["2024-07-25T20:31:44.010000"],["2024-07-25T20:31:45.010000"],["2024-07-25T20:31:46.010000"],["2024-07-25T20:31:47.010000"],["2024-07-25T20:31:48.010000"],["2024-07-25T20:31:49.010000"],["2024-07-25T20:31:50.010000"],["2024-07-25T20:31:51.010000"],["2024-07-25T20:31:52.010000"],["2024-07-25T20:31:53.010000"],["2024-07-25T20:31:54.010000"],["2024-07-25T20:31:55.010000"],["2024-07-25T20:31:56.010000"],["2024-07-25T20:31:57.010000"],["2024-07-25T20:31:58.010000"],["2024-07-25T20:31:59.010000"],["2024-07-25T20:32:00.010000"],["2024-07-25T20:32:01.010000"],["2024-07-25T20:32:02.010000"],["2024-07-25T20:32:03.010000"],["2024-07-25T20:32:04.010000"],["2024-07-25T20:32:05.010000"],["2024-07-25T20:32:06.010000"],["2024-07-25T20:32:07.010000"],["2024-07-25T20:32:08.010000"],["2024-07-25T20:32:09.010000"],["2024-07-25T20:32:10.010000"],["2024-07-25T20:32:11.010000"],["2024-07-25T20:32:12.010000"],["2024-07-25T20:32:13.010000"],["2024-07-25T20:32:14.010000"],["2024-07-25T20:32:15.010000"],["2024-07-25T20:32:16.010000"],["2024-07-25T20:32:17.010000"],["2024-07-25T20:32:18.010000"],["2024-07-25T20:32:19.010000"],["2024-07-25T20:32:20.010000"],["2024-07-25T20:32:21.010000"],["2024-07-25T20:32:22.010000"],["2024-07-25T20:32:23.010000"],["2024-07-25T20:32:24.010000"],["2024-07-25T20:32:25.010000"],["2024-07-25T20:32:26.010000"],["2024-07-25T20:32:27.010000"],["2024-07-25T20:32:28.010000"],["2024-07-25T20:32:29.010000"],["2024-07-25T20:32:30.010000"],["2024-07-25T20:32:31.010000"],["2024-07-25T20:32:32.010000"],["2024-07-25T20:32:33.010000"],["2024-07-25T20:32:34.010000"],["2024-07-25T20:32:35.010000"],["2024-07-25T20:32:36.010000"],["2024-07-25T20:32:37.010000"],["2024-07-25T20:32:38.010000"],["2024-07-25T20:32:39.010000"],["2024-07-25T20:32:40.010000"],["2024-07-25T20:32:41.010000"],["2024-07-25T20:32:42.010000"],["2024-07-25T20:32:43.010000"],["2024-07-25T20:32:44.010000"],["2024-07-25T20:32:45.010000"],["2024-07-25T20:32:46.010000"],["2024-07-25T20:32:47.010000"],["2024-07-25T20:32:48.010000"],["2024-07-25T20:32:49.010000"],["2024-07-25T20:32:50.010000"],["2024-07-25T20:32:51.010000"],["2024-07-25T20:32:52.010000"],["2024-07-25T20:32:53.010000"],["2024-07-25T20:32:54.010000"],["2024-07-25T20:32:55.010000"],["2024-07-25T20:32:56.010000"],["2024-07-25T20:32:57.010000"],["2024-07-25T20:32:58.010000"],["2024-07-25T20:32:59.010000"],["2024-07-25T20:33:00.010000"],["2024-07-25T20:33:01.010000"],["2024-07-25T20:33:02.010000"],["2024-07-25T20:33:03.010000"],["2024-07-25T20:33:04.010000"],["2024-07-25T20:33:05.010000"],["2024-07-25T20:33:06.010000"],["2024-07-25T20:33:07.010000"],["2024-07-25T20:33:08.010000"],["2024-07-25T20:33:09.010000"],["2024-07-25T20:33:10.010000"],["2024-07-25T20:33:11.010000"],["2024-07-25T20:33:12.010000"],["2024-07-25T20:33:13.010000"],["2024-07-25T20:33:14.010000"],["2024-07-25T20:33:15.010000"],["2024-07-25T20:33:16.010000"],["2024-07-25T20:33:17.010000"],["2024-07-25T20:33:18.010000"],["2024-07-25T20:33:19.010000"],["2024-07-25T20:33:20.010000"],["2024-07-25T20:33:21.010000"],["2024-07-25T20:33:22.010000"],["2024-07-25T20:33:23.010000"],["2024-07-25T20:33:24.010000"],["2024-07-25T20:33:25.010000"],["2024-07-25T20:33:26.010000"],["2024-07-25T20:33:27.010000"],["2024-07-25T20:33:28.010000"],["2024-07-25T20:33:29.010000"],["2024-07-25T20:33:30.010000"],["2024-07-25T20:33:31.010000"],["2024-07-25T20:33:32.010000"],["2024-07-25T20:33:33.010000"],["2024-07-25T20:33:34.010000"],["2024-07-25T20:33:35.010000"],["2024-07-25T20:33:36.010000"],["2024-07-25T20:33:37.010000"],["2024-07-25T20:33:38.010000"],["2024-07-25T20:33:39.010000"],["2024-07-25T20:33:40.010000"],["2024-07-25T20:33:41.010000"],["2024-07-25T20:33:42.010000"],["2024-07-25T20:33:43.010000"],["2024-07-25T20:33:44.010000"],["2024-07-25T20:33:45.010000"],["2024-07-25T20:33:46.010000"],["2024-07-25T20:33:47.010000"],["2024-07-25T20:33:48.010000"],["2024-07-25T20:33:49.010000"],["2024-07-25T20:33:50.010000"],["2024-07-25T20:33:51.010000"],["2024-07-25T20:33:52.010000"],["2024-07-25T20:33:53.010000"],["2024-07-25T20:33:54.010000"],["2024-07-25T20:33:55.010000"],["2024-07-25T20:33:56.010000"],["2024-07-25T20:33:57.010000"],["2024-07-25T20:33:58.010000"],["2024-07-25T20:33:59.010000"],["2024-07-25T20:34:00.010000"],["2024-07-25T20:34:01.010000"],["2024-07-25T20:34:02.010000"],["2024-07-25T20:34:03.010000"],["2024-07-25T20:34:04.010000"],["2024-07-25T20:34:05.010000"],["2024-07-25T20:34:06.010000"],["2024-07-25T20:34:07.010000"],["2024-07-25T20:34:08.010000"],["2024-07-25T20:34:09.010000"],["2024-07-25T20:34:10.010000"],["2024-07-25T20:34:11.010000"],["2024-07-25T20:34:12.010000"],["2024-07-25T20:34:13.010000"],["2024-07-25T20:34:14.010000"],["2024-07-25T20:34:15.010000"],["2024-07-25T20:34:16.010000"],["2024-07-25T20:34:17.010000"],["2024-07-25T20:34:18.010000"],["2024-07-25T20:34:19.010000"],["2024-07-25T20:34:20.010000"],["2024-07-25T20:34:21.010000"],["2024-07-25T20:34:22.010000"],["2024-07-25T20:34:23.010000"],["2024-07-25T20:34:24.010000"],["2024-07-25T20:34:25.010000"],["2024-07-25T20:34:26.010000"],["2024-07-25T20:34:27.010000"],["2024-07-25T20:34:28.010000"],["2024-07-25T20:34:29.010000"],["2024-07-25T20:34:30.010000"],["2024-07-25T20:34:31.010000"],["2024-07-25T20:34:32.010000"],["2024-07-25T20:34:33.010000"],["2024-07-25T20:34:34.010000"],["2024-07-25T20:34:35.010000"],["2024-07-25T20:34:36.010000"],["2024-07-25T20:34:37.010000"],["2024-07-25T20:34:38.010000"],["2024-07-25T20:34:39.010000"],["2024-07-25T20:34:40.010000"],["2024-07-25T20:34:41.010000"],["2024-07-25T20:34:42.010000"],["2024-07-25T20:34:43.010000"],["2024-07-25T20:34:44.010000"],["2024-07-25T20:34:45.010000"],["2024-07-25T20:34:46.010000"],["2024-07-25T20:34:47.010000"],["2024-07-25T20:34:48.010000"],["2024-07-25T20:34:49.010000"],["2024-07-25T20:34:50.010000"],["2024-07-25T20:34:51.010000"],["2024-07-25T20:34:52.010000"],["2024-07-25T20:34:53.010000"],["2024-07-25T20:34:54.010000"],["2024-07-25T20:34:55.010000"],["2024-07-25T20:34:56.010000"],["2024-07-25T20:34:57.010000"],["2024-07-25T20:34:58.010000"],["2024-07-25T20:34:59.010000"],["2024-07-25T20:35:00.010000"],["2024-07-25T20:35:01.010000"],["2024-07-25T20:35:02.010000"],["2024-07-25T20:35:03.010000"],["2024-07-25T20:35:04.010000"],["2024-07-25T20:35:05.010000"],["2024-07-25T20:35:06.010000"],["2024-07-25T20:35:07.010000"],["2024-07-25T20:35:08.010000"],["2024-07-25T20:35:09.010000"],["2024-07-25T20:35:10.010000"],["2024-07-25T20:35:11.010000"],["2024-07-25T20:35:12.010000"],["2024-07-25T20:35:13.010000"],["2024-07-25T20:35:14.010000"],["2024-07-25T20:35:15.010000"],["2024-07-25T20:35:16.010000"],["2024-07-25T20:35:17.010000"],["2024-07-25T20:35:18.010000"],["2024-07-25T20:35:19.010000"],["2024-07-25T20:35:20.010000"],["2024-07-25T20:35:21.010000"],["2024-07-25T20:35:22.010000"],["2024-07-25T20:35:23.010000"],["2024-07-25T20:35:24.010000"],["2024-07-25T20:35:25.010000"],["2024-07-25T20:35:26.010000"],["2024-07-25T20:35:27.010000"],["2024-07-25T20:35:28.010000"],["2024-07-25T20:35:29.010000"],["2024-07-25T20:35:30.010000"],["2024-07-25T20:35:31.010000"],["2024-07-25T20:35:32.010000"],["2024-07-25T20:35:33.010000"],["2024-07-25T20:35:34.010000"],["2024-07-25T20:35:35.010000"],["2024-07-25T20:35:36.010000"],["2024-07-25T20:35:37.010000"],["2024-07-25T20:35:38.010000"],["2024-07-25T20:35:39.010000"],["2024-07-25T20:35:40.010000"],["2024-07-25T20:35:41.010000"],["2024-07-25T20:35:42.010000"],["2024-07-25T20:35:43.010000"],["2024-07-25T20:35:44.010000"],["2024-07-25T20:35:45.010000"],["2024-07-25T20:35:46.010000"],["2024-07-25T20:35:47.010000"],["2024-07-25T20:35:48.010000"],["2024-07-25T20:35:49.010000"],["2024-07-25T20:35:50.010000"],["2024-07-25T20:35:51.010000"],["2024-07-25T20:35:52.010000"],["2024-07-25T20:35:53.010000"],["2024-07-25T20:35:54.010000"],["2024-07-25T20:35:55.010000"],["2024-07-25T20:35:56.010000"],["2024-07-25T20:35:57.010000"],["2024-07-25T20:35:58.010000"],["2024-07-25T20:35:59.010000"],["2024-07-25T20:36:00.010000"],["2024-07-25T20:36:01.010000"],["2024-07-25T20:36:02.010000"],["2024-07-25T20:36:03.010000"],["2024-07-25T20:36:04.010000"],["2024-07-25T20:36:05.010000"],["2024-07-25T20:36:06.010000"],["2024-07-25T20:36:07.010000"],["2024-07-25T20:36:08.010000"],["2024-07-25T20:36:09.010000"],["2024-07-25T20:36:10.010000"],["2024-07-25T20:36:11.010000"],["2024-07-25T20:36:12.010000"],["2024-07-25T20:36:13.010000"],["2024-07-25T20:36:14.010000"],["2024-07-25T20:36:15.010000"],["2024-07-25T20:36:16.010000"],["2024-07-25T20:36:17.010000"],["2024-07-25T20:36:18.010000"],["2024-07-25T20:36:19.010000"],["2024-07-25T20:36:20.010000"],["2024-07-25T20:36:21.010000"],["2024-07-25T20:36:22.010000"],["2024-07-25T20:36:23.010000"],["2024-07-25T20:36:24.010000"],["2024-07-25T20:36:25.010000"],["2024-07-25T20:36:26.010000"],["2024-07-25T20:36:27.010000"],["2024-07-25T20:36:28.010000"],["2024-07-25T20:36:29.010000"],["2024-07-25T20:36:30.010000"],["2024-07-25T20:36:31.010000"],["2024-07-25T20:36:32.010000"],["2024-07-25T20:36:33.010000"],["2024-07-25T20:36:34.010000"],["2024-07-25T20:36:35.010000"],["2024-07-25T20:36:36.010000"],["2024-07-25T20:36:37.010000"],["2024-07-25T20:36:38.010000"],["2024-07-25T20:36:39.010000"],["2024-07-25T20:36:40.010000"],["2024-07-25T20:36:41.010000"],["2024-07-25T20:36:42.010000"],["2024-07-25T20:36:43.010000"],["2024-07-25T20:36:44.010000"],["2024-07-25T20:36:45.010000"],["2024-07-25T20:36:46.010000"],["2024-07-25T20:36:47.010000"],["2024-07-25T20:36:48.010000"],["2024-07-25T20:36:49.010000"],["2024-07-25T20:36:50.010000"],["2024-07-25T20:36:51.010000"],["2024-07-25T20:36:52.010000"],["2024-07-25T20:36:53.010000"],["2024-07-25T20:36:54.010000"],["2024-07-25T20:36:55.010000"],["2024-07-25T20:36:56.010000"],["2024-07-25T20:36:57.010000"],["2024-07-25T20:36:58.010000"],["2024-07-25T20:36:59.010000"],["2024-07-25T20:37:00.010000"],["2024-07-25T20:37:01.010000"],["2024-07-25T20:37:02.010000"],["2024-07-25T20:37:03.010000"],["2024-07-25T20:37:04.010000"],["2024-07-25T20:37:05.010000"],["2024-07-25T20:37:06.010000"],["2024-07-25T20:37:07.010000"],["2024-07-25T20:37:08.010000"],["2024-07-25T20:37:09.010000"],["2024-07-25T20:37:10.010000"],["2024-07-25T20:37:11.010000"],["2024-07-25T20:37:12.010000"],["2024-07-25T20:37:13.010000"],["2024-07-25T20:37:14.010000"],["2024-07-25T20:37:15.010000"],["2024-07-25T20:37:16.010000"],["2024-07-25T20:37:17.010000"],["2024-07-25T20:37:18.010000"],["2024-07-25T20:37:19.010000"],["2024-07-25T20:37:20.010000"],["2024-07-25T20:37:21.010000"],["2024-07-25T20:37:22.010000"],["2024-07-25T20:37:23.010000"],["2024-07-25T20:37:24.010000"],["2024-07-25T20:37:25.010000"],["2024-07-25T20:37:26.010000"],["2024-07-25T20:37:27.010000"],["2024-07-25T20:37:28.010000"],["2024-07-25T20:37:29.010000"],["2024-07-25T20:37:30.010000"],["2024-07-25T20:37:31.010000"],["2024-07-25T20:37:32.010000"],["2024-07-25T20:37:33.010000"],["2024-07-25T20:37:34.010000"],["2024-07-25T20:37:35.010000"],["2024-07-25T20:37:36.010000"],["2024-07-25T20:37:37.010000"],["2024-07-25T20:37:38.010000"],["2024-07-25T20:37:39.010000"],["2024-07-25T20:37:40.010000"],["2024-07-25T20:37:41.010000"],["2024-07-25T20:37:42.010000"],["2024-07-25T20:37:43.010000"],["2024-07-25T20:37:44.010000"],["2024-07-25T20:37:45.010000"],["2024-07-25T20:37:46.010000"],["2024-07-25T20:37:47.010000"],["2024-07-25T20:37:48.010000"],["2024-07-25T20:37:49.010000"],["2024-07-25T20:37:50.010000"],["2024-07-25T20:37:51.010000"],["2024-07-25T20:37:52.010000"],["2024-07-25T20:37:53.010000"],["2024-07-25T20:37:54.010000"],["2024-07-25T20:37:55.010000"],["2024-07-25T20:37:56.010000"],["2024-07-25T20:37:57.010000"],["2024-07-25T20:37:58.010000"],["2024-07-25T20:37:59.010000"],["2024-07-25T20:38:00.010000"],["2024-07-25T20:38:01.010000"],["2024-07-25T20:38:02.010000"],["2024-07-25T20:38:03.010000"],["2024-07-25T20:38:04.010000"],["2024-07-25T20:38:05.010000"],["2024-07-25T20:38:06.010000"],["2024-07-25T20:38:07.010000"],["2024-07-25T20:38:08.010000"],["2024-07-25T20:38:09.010000"],["2024-07-25T20:38:10.010000"],["2024-07-25T20:38:11.010000"],["2024-07-25T20:38:12.010000"],["2024-07-25T20:38:13.010000"],["2024-07-25T20:38:14.010000"],["2024-07-25T20:38:15.010000"],["2024-07-25T20:38:16.010000"],["2024-07-25T20:38:17.010000"],["2024-07-25T20:38:18.010000"],["2024-07-25T20:38:19.010000"],["2024-07-25T20:38:20.010000"],["2024-07-25T20:38:21.010000"],["2024-07-25T20:38:22.010000"],["2024-07-25T20:38:23.010000"],["2024-07-25T20:38:24.010000"],["2024-07-25T20:38:25.010000"],["2024-07-25T20:38:26.010000"],["2024-07-25T20:38:27.010000"],["2024-07-25T20:38:28.010000"],["2024-07-25T20:38:29.010000"],["2024-07-25T20:38:30.010000"],["2024-07-25T20:38:31.010000"],["2024-07-25T20:38:32.010000"],["2024-07-25T20:38:33.010000"],["2024-07-25T20:38:34.010000"],["2024-07-25T20:38:35.010000"],["2024-07-25T20:38:36.010000"],["2024-07-25T20:38:37.010000"],["2024-07-25T20:38:38.010000"],["2024-07-25T20:38:39.010000"],["2024-07-25T20:38:40.010000"],["2024-07-25T20:38:41.010000"],["2024-07-25T20:38:42.010000"],["2024-07-25T20:38:43.010000"],["2024-07-25T20:38:44.010000"],["2024-07-25T20:38:45.010000"],["2024-07-25T20:38:46.010000"],["2024-07-25T20:38:47.010000"],["2024-07-25T20:38:48.010000"],["2024-07-25T20:38:49.010000"],["2024-07-25T20:38:50.010000"],["2024-07-25T20:38:51.010000"],["2024-07-25T20:38:52.010000"],["2024-07-25T20:38:53.010000"],["2024-07-25T20:38:54.010000"],["2024-07-25T20:38:55.010000"],["2024-07-25T20:38:56.010000"],["2024-07-25T20:38:57.010000"],["2024-07-25T20:38:58.010000"],["2024-07-25T20:38:59.010000"],["2024-07-25T20:39:00.010000"],["2024-07-25T20:39:01.010000"],["2024-07-25T20:39:02.010000"],["2024-07-25T20:39:03.010000"],["2024-07-25T20:39:04.010000"],["2024-07-25T20:39:05.010000"],["2024-07-25T20:39:06.010000"],["2024-07-25T20:39:07.010000"],["2024-07-25T20:39:08.010000"],["2024-07-25T20:39:09.010000"],["2024-07-25T20:39:10.010000"],["2024-07-25T20:39:11.010000"],["2024-07-25T20:39:12.010000"],["2024-07-25T20:39:13.010000"],["2024-07-25T20:39:14.010000"],["2024-07-25T20:39:15.010000"],["2024-07-25T20:39:16.010000"],["2024-07-25T20:39:17.010000"],["2024-07-25T20:39:18.010000"],["2024-07-25T20:39:19.010000"],["2024-07-25T20:39:20.010000"],["2024-07-25T20:39:21.010000"],["2024-07-25T20:39:22.010000"],["2024-07-25T20:39:23.010000"],["2024-07-25T20:39:24.010000"],["2024-07-25T20:39:25.010000"],["2024-07-25T20:39:26.010000"],["2024-07-25T20:39:27.010000"],["2024-07-25T20:39:28.010000"],["2024-07-25T20:39:29.010000"],["2024-07-25T20:39:30.010000"],["2024-07-25T20:39:31.010000"],["2024-07-25T20:39:32.010000"],["2024-07-25T20:39:33.010000"],["2024-07-25T20:39:34.010000"],["2024-07-25T20:39:35.010000"],["2024-07-25T20:39:36.010000"],["2024-07-25T20:39:37.010000"],["2024-07-25T20:39:38.010000"],["2024-07-25T20:39:39.010000"],["2024-07-25T20:39:40.010000"],["2024-07-25T20:39:41.010000"],["2024-07-25T20:39:42.010000"],["2024-07-25T20:39:43.010000"],["2024-07-25T20:39:44.010000"],["2024-07-25T20:39:45.010000"],["2024-07-25T20:39:46.010000"],["2024-07-25T20:39:47.010000"],["2024-07-25T20:39:48.010000"],["2024-07-25T20:39:49.010000"],["2024-07-25T20:39:50.010000"],["2024-07-25T20:39:51.010000"],["2024-07-25T20:39:52.010000"],["2024-07-25T20:39:53.010000"],["2024-07-25T20:39:54.010000"],["2024-07-25T20:39:55.010000"],["2024-07-25T20:39:56.010000"],["2024-07-25T20:39:57.010000"],["2024-07-25T20:39:58.010000"],["2024-07-25T20:39:59.010000"],["2024-07-25T20:40:00.010000"],["2024-07-25T20:40:01.010000"],["2024-07-25T20:40:02.010000"],["2024-07-25T20:40:03.010000"],["2024-07-25T20:40:04.010000"],["2024-07-25T20:40:05.010000"],["2024-07-25T20:40:06.010000"],["2024-07-25T20:40:07.010000"],["2024-07-25T20:40:08.010000"],["2024-07-25T20:40:09.010000"],["2024-07-25T20:40:10.010000"],["2024-07-25T20:40:11.010000"],["2024-07-25T20:40:12.010000"],["2024-07-25T20:40:13.010000"],["2024-07-25T20:40:14.010000"],["2024-07-25T20:40:15.010000"],["2024-07-25T20:40:16.010000"],["2024-07-25T20:40:17.010000"],["2024-07-25T20:40:18.010000"],["2024-07-25T20:40:19.010000"],["2024-07-25T20:40:20.010000"],["2024-07-25T20:40:21.010000"],["2024-07-25T20:40:22.010000"],["2024-07-25T20:40:23.010000"],["2024-07-25T20:40:24.010000"],["2024-07-25T20:40:25.010000"],["2024-07-25T20:40:26.010000"],["2024-07-25T20:40:27.010000"],["2024-07-25T20:40:28.010000"],["2024-07-25T20:40:29.010000"],["2024-07-25T20:40:30.010000"],["2024-07-25T20:40:31.010000"],["2024-07-25T20:40:32.010000"],["2024-07-25T20:40:33.010000"],["2024-07-25T20:40:34.010000"],["2024-07-25T20:40:35.010000"],["2024-07-25T20:40:36.010000"],["2024-07-25T20:40:37.010000"],["2024-07-25T20:40:38.010000"],["2024-07-25T20:40:39.010000"],["2024-07-25T20:40:40.010000"],["2024-07-25T20:40:41.010000"],["2024-07-25T20:40:42.010000"],["2024-07-25T20:40:43.010000"],["2024-07-25T20:40:44.010000"],["2024-07-25T20:40:45.010000"],["2024-07-25T20:40:46.010000"],["2024-07-25T20:40:47.010000"],["2024-07-25T20:40:48.010000"],["2024-07-25T20:40:49.010000"],["2024-07-25T20:40:50.010000"],["2024-07-25T20:40:51.010000"],["2024-07-25T20:40:52.010000"],["2024-07-25T20:40:53.010000"],["2024-07-25T20:40:54.010000"],["2024-07-25T20:40:55.010000"],["2024-07-25T20:40:56.010000"],["2024-07-25T20:40:57.010000"],["2024-07-25T20:40:58.010000"],["2024-07-25T20:40:59.010000"],["2024-07-25T20:41:00.010000"],["2024-07-25T20:41:01.010000"],["2024-07-25T20:41:02.010000"],["2024-07-25T20:41:03.010000"],["2024-07-25T20:41:04.010000"],["2024-07-25T20:41:05.010000"],["2024-07-25T20:41:06.010000"],["2024-07-25T20:41:07.010000"],["2024-07-25T20:41:08.010000"],["2024-07-25T20:41:09.010000"],["2024-07-25T20:41:10.010000"],["2024-07-25T20:41:11.010000"],["2024-07-25T20:41:12.010000"],["2024-07-25T20:41:13.010000"],["2024-07-25T20:41:14.010000"],["2024-07-25T20:41:15.010000"],["2024-07-25T20:41:16.010000"],["2024-07-25T20:41:17.010000"],["2024-07-25T20:41:18.010000"],["2024-07-25T20:41:19.010000"],["2024-07-25T20:41:20.010000"],["2024-07-25T20:41:21.010000"],["2024-07-25T20:41:22.010000"],["2024-07-25T20:41:23.010000"],["2024-07-25T20:41:24.010000"],["2024-07-25T20:41:25.010000"],["2024-07-25T20:41:26.010000"],["2024-07-25T20:41:27.010000"],["2024-07-25T20:41:28.010000"],["2024-07-25T20:41:29.010000"],["2024-07-25T20:41:30.010000"],["2024-07-25T20:41:31.010000"],["2024-07-25T20:41:32.010000"],["2024-07-25T20:41:33.010000"],["2024-07-25T20:41:34.010000"],["2024-07-25T20:41:35.010000"],["2024-07-25T20:41:36.010000"],["2024-07-25T20:41:37.010000"],["2024-07-25T20:41:38.010000"],["2024-07-25T20:41:39.010000"],["2024-07-25T20:41:40.010000"],["2024-07-25T20:41:41.010000"],["2024-07-25T20:41:42.010000"],["2024-07-25T20:41:43.010000"],["2024-07-25T20:41:44.010000"],["2024-07-25T20:41:45.010000"],["2024-07-25T20:41:46.010000"],["2024-07-25T20:41:47.010000"],["2024-07-25T20:41:48.010000"],["2024-07-25T20:41:49.010000"],["2024-07-25T20:41:50.010000"],["2024-07-25T20:41:51.010000"],["2024-07-25T20:41:52.010000"],["2024-07-25T20:41:53.010000"],["2024-07-25T20:41:54.010000"],["2024-07-25T20:41:55.010000"],["2024-07-25T20:41:56.010000"],["2024-07-25T20:41:57.010000"],["2024-07-25T20:41:58.010000"],["2024-07-25T20:41:59.010000"],["2024-07-25T20:42:00.010000"],["2024-07-25T20:42:01.010000"],["2024-07-25T20:42:02.010000"],["2024-07-25T20:42:03.010000"],["2024-07-25T20:42:04.010000"],["2024-07-25T20:42:05.010000"],["2024-07-25T20:42:06.010000"],["2024-07-25T20:42:07.010000"],["2024-07-25T20:42:08.010000"],["2024-07-25T20:42:09.010000"],["2024-07-25T20:42:10.010000"],["2024-07-25T20:42:11.010000"],["2024-07-25T20:42:12.010000"],["2024-07-25T20:42:13.010000"],["2024-07-25T20:42:14.010000"],["2024-07-25T20:42:15.010000"],["2024-07-25T20:42:16.010000"],["2024-07-25T20:42:17.010000"],["2024-07-25T20:42:18.010000"],["2024-07-25T20:42:19.010000"],["2024-07-25T20:42:20.010000"],["2024-07-25T20:42:21.010000"],["2024-07-25T20:42:22.010000"],["2024-07-25T20:42:23.010000"],["2024-07-25T20:42:24.010000"],["2024-07-25T20:42:25.010000"],["2024-07-25T20:42:26.010000"],["2024-07-25T20:42:27.010000"],["2024-07-25T20:42:28.010000"],["2024-07-25T20:42:29.010000"],["2024-07-25T20:42:30.010000"],["2024-07-25T20:42:31.010000"],["2024-07-25T20:42:32.010000"],["2024-07-25T20:42:33.010000"],["2024-07-25T20:42:34.010000"],["2024-07-25T20:42:35.010000"],["2024-07-25T20:42:36.010000"],["2024-07-25T20:42:37.010000"],["2024-07-25T20:42:38.010000"],["2024-07-25T20:42:39.010000"],["2024-07-25T20:42:40.010000"],["2024-07-25T20:42:41.010000"],["2024-07-25T20:42:42.010000"],["2024-07-25T20:42:43.010000"],["2024-07-25T20:42:44.010000"],["2024-07-25T20:42:45.010000"],["2024-07-25T20:42:46.010000"],["2024-07-25T20:42:47.010000"],["2024-07-25T20:42:48.010000"],["2024-07-25T20:42:49.010000"],["2024-07-25T20:42:50.010000"],["2024-07-25T20:42:51.010000"],["2024-07-25T20:42:52.010000"],["2024-07-25T20:42:53.010000"],["2024-07-25T20:42:54.010000"],["2024-07-25T20:42:55.010000"],["2024-07-25T20:42:56.010000"],["2024-07-25T20:42:57.010000"],["2024-07-25T20:42:58.010000"],["2024-07-25T20:42:59.010000"],["2024-07-25T20:43:00.010000"],["2024-07-25T20:43:01.010000"],["2024-07-25T20:43:02.010000"],["2024-07-25T20:43:03.010000"],["2024-07-25T20:43:04.010000"],["2024-07-25T20:43:05.010000"],["2024-07-25T20:43:06.010000"],["2024-07-25T20:43:07.010000"],["2024-07-25T20:43:08.010000"],["2024-07-25T20:43:09.010000"],["2024-07-25T20:43:10.010000"],["2024-07-25T20:43:11.010000"],["2024-07-25T20:43:12.010000"],["2024-07-25T20:43:13.010000"],["2024-07-25T20:43:14.010000"],["2024-07-25T20:43:15.010000"],["2024-07-25T20:43:16.010000"],["2024-07-25T20:43:17.010000"],["2024-07-25T20:43:18.010000"],["2024-07-25T20:43:19.010000"],["2024-07-25T20:43:20.010000"],["2024-07-25T20:43:21.010000"],["2024-07-25T20:43:22.010000"],["2024-07-25T20:43:23.010000"],["2024-07-25T20:43:24.010000"],["2024-07-25T20:43:25.010000"],["2024-07-25T20:43:26.010000"],["2024-07-25T20:43:27.010000"],["2024-07-25T20:43:28.010000"],["2024-07-25T20:43:29.010000"],["2024-07-25T20:43:30.010000"],["2024-07-25T20:43:31.010000"],["2024-07-25T20:43:32.010000"],["2024-07-25T20:43:33.010000"],["2024-07-25T20:43:34.010000"],["2024-07-25T20:43:35.010000"],["2024-07-25T20:43:36.010000"],["2024-07-25T20:43:37.010000"],["2024-07-25T20:43:38.010000"],["2024-07-25T20:43:39.010000"],["2024-07-25T20:43:40.010000"],["2024-07-25T20:43:41.010000"],["2024-07-25T20:43:42.010000"],["2024-07-25T20:43:43.010000"],["2024-07-25T20:43:44.010000"],["2024-07-25T20:43:45.010000"],["2024-07-25T20:43:46.010000"],["2024-07-25T20:43:47.010000"],["2024-07-25T20:43:48.010000"],["2024-07-25T20:43:49.010000"],["2024-07-25T20:43:50.010000"],["2024-07-25T20:43:51.010000"],["2024-07-25T20:43:52.010000"],["2024-07-25T20:43:53.010000"],["2024-07-25T20:43:54.010000"],["2024-07-25T20:43:55.010000"],["2024-07-25T20:43:56.010000"],["2024-07-25T20:43:57.010000"],["2024-07-25T20:43:58.010000"],["2024-07-25T20:43:59.010000"],["2024-07-25T20:44:00.010000"],["2024-07-25T20:44:01.010000"],["2024-07-25T20:44:02.010000"],["2024-07-25T20:44:03.010000"],["2024-07-25T20:44:04.010000"],["2024-07-25T20:44:05.010000"],["2024-07-25T20:44:06.010000"],["2024-07-25T20:44:07.010000"],["2024-07-25T20:44:08.010000"],["2024-07-25T20:44:09.010000"],["2024-07-25T20:44:10.010000"],["2024-07-25T20:44:11.010000"],["2024-07-25T20:44:12.010000"],["2024-07-25T20:44:13.010000"],["2024-07-25T20:44:14.010000"],["2024-07-25T20:44:15.010000"],["2024-07-25T20:44:16.010000"],["2024-07-25T20:44:17.010000"],["2024-07-25T20:44:18.010000"],["2024-07-25T20:44:19.010000"],["2024-07-25T20:44:20.010000"],["2024-07-25T20:44:21.010000"],["2024-07-25T20:44:22.010000"],["2024-07-25T20:44:23.010000"],["2024-07-25T20:44:24.010000"],["2024-07-25T20:44:25.010000"],["2024-07-25T20:44:26.010000"],["2024-07-25T20:44:27.010000"],["2024-07-25T20:44:28.010000"],["2024-07-25T20:44:29.010000"],["2024-07-25T20:44:30.010000"],["2024-07-25T20:44:31.010000"],["2024-07-25T20:44:32.010000"],["2024-07-25T20:44:33.010000"],["2024-07-25T20:44:34.010000"],["2024-07-25T20:44:35.010000"],["2024-07-25T20:44:36.010000"],["2024-07-25T20:44:37.010000"],["2024-07-25T20:44:38.010000"],["2024-07-25T20:44:39.010000"],["2024-07-25T20:44:40.010000"],["2024-07-25T20:44:41.010000"],["2024-07-25T20:44:42.010000"],["2024-07-25T20:44:43.010000"],["2024-07-25T20:44:44.010000"],["2024-07-25T20:44:45.010000"],["2024-07-25T20:44:46.010000"],["2024-07-25T20:44:47.010000"],["2024-07-25T20:44:48.010000"],["2024-07-25T20:44:49.010000"],["2024-07-25T20:44:50.010000"],["2024-07-25T20:44:51.010000"],["2024-07-25T20:44:52.010000"],["2024-07-25T20:44:53.010000"],["2024-07-25T20:44:54.010000"],["2024-07-25T20:44:55.010000"],["2024-07-25T20:44:56.010000"],["2024-07-25T20:44:57.010000"],["2024-07-25T20:44:58.010000"],["2024-07-25T20:44:59.010000"],["2024-07-25T20:45:00.010000"],["2024-07-25T20:45:01.010000"],["2024-07-25T20:45:02.010000"],["2024-07-25T20:45:03.010000"],["2024-07-25T20:45:04.010000"],["2024-07-25T20:45:05.010000"],["2024-07-25T20:45:06.010000"],["2024-07-25T20:45:07.010000"],["2024-07-25T20:45:08.010000"],["2024-07-25T20:45:09.010000"],["2024-07-25T20:45:10.010000"],["2024-07-25T20:45:11.010000"],["2024-07-25T20:45:12.010000"],["2024-07-25T20:45:13.010000"],["2024-07-25T20:45:14.010000"],["2024-07-25T20:45:15.010000"],["2024-07-25T20:45:16.010000"],["2024-07-25T20:45:17.010000"],["2024-07-25T20:45:18.010000"],["2024-07-25T20:45:19.010000"],["2024-07-25T20:45:20.010000"],["2024-07-25T20:45:21.010000"],["2024-07-25T20:45:22.010000"],["2024-07-25T20:45:23.010000"],["2024-07-25T20:45:24.010000"],["2024-07-25T20:45:25.010000"],["2024-07-25T20:45:26.010000"],["2024-07-25T20:45:27.010000"],["2024-07-25T20:45:28.010000"],["2024-07-25T20:45:29.010000"],["2024-07-25T20:45:30.010000"],["2024-07-25T20:45:31.010000"],["2024-07-25T20:45:32.010000"],["2024-07-25T20:45:33.010000"],["2024-07-25T20:45:34.010000"],["2024-07-25T20:45:35.010000"],["2024-07-25T20:45:36.010000"],["2024-07-25T20:45:37.010000"],["2024-07-25T20:45:38.010000"],["2024-07-25T20:45:39.010000"],["2024-07-25T20:45:40.010000"],["2024-07-25T20:45:41.010000"],["2024-07-25T20:45:42.010000"],["2024-07-25T20:45:43.010000"],["2024-07-25T20:45:44.010000"],["2024-07-25T20:45:45.010000"],["2024-07-25T20:45:46.010000"],["2024-07-25T20:45:47.010000"],["2024-07-25T20:45:48.010000"],["2024-07-25T20:45:49.010000"],["2024-07-25T20:45:50.010000"],["2024-07-25T20:45:51.010000"],["2024-07-25T20:45:52.010000"],["2024-07-25T20:45:53.010000"],["2024-07-25T20:45:54.010000"],["2024-07-25T20:45:55.010000"],["2024-07-25T20:45:56.010000"],["2024-07-25T20:45:57.010000"],["2024-07-25T20:45:58.010000"],["2024-07-25T20:45:59.010000"],["2024-07-25T20:46:00.010000"],["2024-07-25T20:46:01.010000"],["2024-07-25T20:46:02.010000"],["2024-07-25T20:46:03.010000"],["2024-07-25T20:46:04.010000"],["2024-07-25T20:46:05.010000"],["2024-07-25T20:46:06.010000"],["2024-07-25T20:46:07.010000"],["2024-07-25T20:46:08.010000"],["2024-07-25T20:46:09.010000"],["2024-07-25T20:46:10.010000"],["2024-07-25T20:46:11.010000"],["2024-07-25T20:46:12.010000"],["2024-07-25T20:46:13.010000"],["2024-07-25T20:46:14.010000"],["2024-07-25T20:46:15.010000"],["2024-07-25T20:46:16.010000"],["2024-07-25T20:46:17.010000"],["2024-07-25T20:46:18.010000"],["2024-07-25T20:46:19.010000"],["2024-07-25T20:46:20.010000"],["2024-07-25T20:46:21.010000"],["2024-07-25T20:46:22.010000"],["2024-07-25T20:46:23.010000"],["2024-07-25T20:46:24.010000"],["2024-07-25T20:46:25.010000"],["2024-07-25T20:46:26.010000"],["2024-07-25T20:46:27.010000"],["2024-07-25T20:46:28.010000"],["2024-07-25T20:46:29.010000"],["2024-07-25T20:46:30.010000"],["2024-07-25T20:46:31.010000"],["2024-07-25T20:46:32.010000"],["2024-07-25T20:46:33.010000"],["2024-07-25T20:46:34.010000"],["2024-07-25T20:46:35.010000"],["2024-07-25T20:46:36.010000"],["2024-07-25T20:46:37.010000"],["2024-07-25T20:46:38.010000"],["2024-07-25T20:46:39.010000"],["2024-07-25T20:46:40.010000"],["2024-07-25T20:46:41.010000"],["2024-07-25T20:46:42.010000"],["2024-07-25T20:46:43.010000"],["2024-07-25T20:46:44.010000"],["2024-07-25T20:46:45.010000"],["2024-07-25T20:46:46.010000"],["2024-07-25T20:46:47.010000"],["2024-07-25T20:46:48.010000"],["2024-07-25T20:46:49.010000"],["2024-07-25T20:46:50.010000"],["2024-07-25T20:46:51.010000"],["2024-07-25T20:46:52.010000"],["2024-07-25T20:46:53.010000"],["2024-07-25T20:46:54.010000"],["2024-07-25T20:46:55.010000"],["2024-07-25T20:46:56.010000"],["2024-07-25T20:46:57.010000"],["2024-07-25T20:46:58.010000"],["2024-07-25T20:46:59.010000"],["2024-07-25T20:47:00.010000"],["2024-07-25T20:47:01.010000"],["2024-07-25T20:47:02.010000"],["2024-07-25T20:47:03.010000"],["2024-07-25T20:47:04.010000"],["2024-07-25T20:47:05.010000"],["2024-07-25T20:47:06.010000"],["2024-07-25T20:47:07.010000"],["2024-07-25T20:47:08.010000"],["2024-07-25T20:47:09.010000"],["2024-07-25T20:47:10.010000"],["2024-07-25T20:47:11.010000"],["2024-07-25T20:47:12.010000"],["2024-07-25T20:47:13.010000"],["2024-07-25T20:47:14.010000"],["2024-07-25T20:47:15.010000"],["2024-07-25T20:47:16.010000"],["2024-07-25T20:47:17.010000"],["2024-07-25T20:47:18.010000"],["2024-07-25T20:47:19.010000"],["2024-07-25T20:47:20.010000"],["2024-07-25T20:47:21.010000"],["2024-07-25T20:47:22.010000"],["2024-07-25T20:47:23.010000"],["2024-07-25T20:47:24.010000"],["2024-07-25T20:47:25.010000"],["2024-07-25T20:47:26.010000"],["2024-07-25T20:47:27.010000"],["2024-07-25T20:47:28.010000"],["2024-07-25T20:47:29.010000"],["2024-07-25T20:47:30.010000"],["2024-07-25T20:47:31.010000"],["2024-07-25T20:47:32.010000"],["2024-07-25T20:47:33.010000"],["2024-07-25T20:47:34.010000"],["2024-07-25T20:47:35.010000"],["2024-07-25T20:47:36.010000"],["2024-07-25T20:47:37.010000"],["2024-07-25T20:47:38.010000"],["2024-07-25T20:47:39.010000"],["2024-07-25T20:47:40.010000"],["2024-07-25T20:47:41.010000"],["2024-07-25T20:47:42.010000"],["2024-07-25T20:47:43.010000"],["2024-07-25T20:47:44.010000"],["2024-07-25T20:47:45.010000"],["2024-07-25T20:47:46.010000"],["2024-07-25T20:47:47.010000"],["2024-07-25T20:47:48.010000"],["2024-07-25T20:47:49.010000"],["2024-07-25T20:47:50.010000"],["2024-07-25T20:47:51.010000"],["2024-07-25T20:47:52.010000"],["2024-07-25T20:47:53.010000"],["2024-07-25T20:47:54.010000"],["2024-07-25T20:47:55.010000"],["2024-07-25T20:47:56.010000"],["2024-07-25T20:47:57.010000"],["2024-07-25T20:47:58.010000"],["2024-07-25T20:47:59.010000"],["2024-07-25T20:48:00.010000"],["2024-07-25T20:48:01.010000"],["2024-07-25T20:48:02.010000"],["2024-07-25T20:48:03.010000"],["2024-07-25T20:48:04.010000"],["2024-07-25T20:48:05.010000"],["2024-07-25T20:48:06.010000"],["2024-07-25T20:48:07.010000"],["2024-07-25T20:48:08.010000"],["2024-07-25T20:48:09.010000"],["2024-07-25T20:48:10.010000"],["2024-07-25T20:48:11.010000"],["2024-07-25T20:48:12.010000"],["2024-07-25T20:48:13.010000"],["2024-07-25T20:48:14.010000"],["2024-07-25T20:48:15.010000"],["2024-07-25T20:48:16.010000"],["2024-07-25T20:48:17.010000"],["2024-07-25T20:48:18.010000"],["2024-07-25T20:48:19.010000"],["2024-07-25T20:48:20.010000"],["2024-07-25T20:48:21.010000"],["2024-07-25T20:48:22.010000"],["2024-07-25T20:48:23.010000"],["2024-07-25T20:48:24.010000"],["2024-07-25T20:48:25.010000"],["2024-07-25T20:48:26.010000"],["2024-07-25T20:48:27.010000"],["2024-07-25T20:48:28.010000"],["2024-07-25T20:48:29.010000"],["2024-07-25T20:48:30.010000"],["2024-07-25T20:48:31.010000"],["2024-07-25T20:48:32.010000"],["2024-07-25T20:48:33.010000"],["2024-07-25T20:48:34.010000"],["2024-07-25T20:48:35.010000"],["2024-07-25T20:48:36.010000"],["2024-07-25T20:48:37.010000"],["2024-07-25T20:48:38.010000"],["2024-07-25T20:48:39.010000"],["2024-07-25T20:48:40.010000"],["2024-07-25T20:48:41.010000"],["2024-07-25T20:48:42.010000"],["2024-07-25T20:48:43.010000"],["2024-07-25T20:48:44.010000"],["2024-07-25T20:48:45.010000"],["2024-07-25T20:48:46.010000"],["2024-07-25T20:48:47.010000"],["2024-07-25T20:48:48.010000"],["2024-07-25T20:48:49.010000"],["2024-07-25T20:48:50.010000"],["2024-07-25T20:48:51.010000"],["2024-07-25T20:48:52.010000"],["2024-07-25T20:48:53.010000"],["2024-07-25T20:48:54.010000"],["2024-07-25T20:48:55.010000"],["2024-07-25T20:48:56.010000"],["2024-07-25T20:48:57.010000"],["2024-07-25T20:48:58.010000"],["2024-07-25T20:48:59.010000"],["2024-07-25T20:49:00.010000"],["2024-07-25T20:49:01.010000"],["2024-07-25T20:49:02.010000"],["2024-07-25T20:49:03.010000"],["2024-07-25T20:49:04.010000"],["2024-07-25T20:49:05.010000"],["2024-07-25T20:49:06.010000"],["2024-07-25T20:49:07.010000"],["2024-07-25T20:49:08.010000"],["2024-07-25T20:49:09.010000"],["2024-07-25T20:49:10.010000"],["2024-07-25T20:49:11.010000"],["2024-07-25T20:49:12.010000"],["2024-07-25T20:49:13.010000"],["2024-07-25T20:49:14.010000"],["2024-07-25T20:49:15.010000"],["2024-07-25T20:49:16.010000"],["2024-07-25T20:49:17.010000"],["2024-07-25T20:49:18.010000"],["2024-07-25T20:49:19.010000"],["2024-07-25T20:49:20.010000"],["2024-07-25T20:49:21.010000"],["2024-07-25T20:49:22.010000"],["2024-07-25T20:49:23.010000"],["2024-07-25T20:49:24.010000"],["2024-07-25T20:49:25.010000"],["2024-07-25T20:49:26.010000"],["2024-07-25T20:49:27.010000"],["2024-07-25T20:49:28.010000"],["2024-07-25T20:49:29.010000"],["2024-07-25T20:49:30.010000"],["2024-07-25T20:49:31.010000"],["2024-07-25T20:49:32.010000"],["2024-07-25T20:49:33.010000"],["2024-07-25T20:49:34.010000"],["2024-07-25T20:49:35.010000"],["2024-07-25T20:49:36.010000"],["2024-07-25T20:49:37.010000"],["2024-07-25T20:49:38.010000"],["2024-07-25T20:49:39.010000"],["2024-07-25T20:49:40.010000"],["2024-07-25T20:49:41.010000"],["2024-07-25T20:49:42.010000"],["2024-07-25T20:49:43.010000"],["2024-07-25T20:49:44.010000"],["2024-07-25T20:49:45.010000"],["2024-07-25T20:49:46.010000"],["2024-07-25T20:49:47.010000"],["2024-07-25T20:49:48.010000"],["2024-07-25T20:49:49.010000"],["2024-07-25T20:49:50.010000"],["2024-07-25T20:49:51.010000"],["2024-07-25T20:49:52.010000"],["2024-07-25T20:49:53.010000"],["2024-07-25T20:49:54.010000"],["2024-07-25T20:49:55.010000"],["2024-07-25T20:49:56.010000"],["2024-07-25T20:49:57.010000"],["2024-07-25T20:49:58.010000"],["2024-07-25T20:49:59.010000"],["2024-07-25T20:50:00.010000"],["2024-07-25T20:50:01.010000"],["2024-07-25T20:50:02.010000"],["2024-07-25T20:50:03.010000"],["2024-07-25T20:50:04.010000"],["2024-07-25T20:50:05.010000"],["2024-07-25T20:50:06.010000"],["2024-07-25T20:50:07.010000"],["2024-07-25T20:50:08.010000"],["2024-07-25T20:50:09.010000"],["2024-07-25T20:50:10.010000"],["2024-07-25T20:50:11.010000"],["2024-07-25T20:50:12.010000"],["2024-07-25T20:50:13.010000"],["2024-07-25T20:50:14.010000"],["2024-07-25T20:50:15.010000"],["2024-07-25T20:50:16.010000"],["2024-07-25T20:50:17.010000"],["2024-07-25T20:50:18.010000"],["2024-07-25T20:50:19.010000"],["2024-07-25T20:50:20.010000"],["2024-07-25T20:50:21.010000"],["2024-07-25T20:50:22.010000"],["2024-07-25T20:50:23.010000"],["2024-07-25T20:50:24.010000"],["2024-07-25T20:50:25.010000"],["2024-07-25T20:50:26.010000"],["2024-07-25T20:50:27.010000"],["2024-07-25T20:50:28.010000"],["2024-07-25T20:50:29.010000"],["2024-07-25T20:50:30.010000"],["2024-07-25T20:50:31.010000"],["2024-07-25T20:50:32.010000"],["2024-07-25T20:50:33.010000"],["2024-07-25T20:50:34.010000"],["2024-07-25T20:50:35.010000"],["2024-07-25T20:50:36.010000"],["2024-07-25T20:50:37.010000"],["2024-07-25T20:50:38.010000"],["2024-07-25T20:50:39.010000"],["2024-07-25T20:50:40.010000"],["2024-07-25T20:50:41.010000"],["2024-07-25T20:50:42.010000"],["2024-07-25T20:50:43.010000"],["2024-07-25T20:50:44.010000"],["2024-07-25T20:50:45.010000"],["2024-07-25T20:50:46.010000"],["2024-07-25T20:50:47.010000"],["2024-07-25T20:50:48.010000"],["2024-07-25T20:50:49.010000"],["2024-07-25T20:50:50.010000"],["2024-07-25T20:50:51.010000"],["2024-07-25T20:50:52.010000"],["2024-07-25T20:50:53.010000"],["2024-07-25T20:50:54.010000"],["2024-07-25T20:50:55.010000"],["2024-07-25T20:50:56.010000"],["2024-07-25T20:50:57.010000"],["2024-07-25T20:50:58.010000"],["2024-07-25T20:50:59.010000"],["2024-07-25T20:51:00.010000"],["2024-07-25T20:51:01.010000"],["2024-07-25T20:51:02.010000"],["2024-07-25T20:51:03.010000"],["2024-07-25T20:51:04.010000"],["2024-07-25T20:51:05.010000"],["2024-07-25T20:51:06.010000"],["2024-07-25T20:51:07.010000"],["2024-07-25T20:51:08.010000"],["2024-07-25T20:51:09.010000"],["2024-07-25T20:51:10.010000"],["2024-07-25T20:51:11.010000"],["2024-07-25T20:51:12.010000"],["2024-07-25T20:51:13.010000"],["2024-07-25T20:51:14.010000"],["2024-07-25T20:51:15.010000"],["2024-07-25T20:51:16.010000"],["2024-07-25T20:51:17.010000"],["2024-07-25T20:51:18.010000"],["2024-07-25T20:51:19.010000"],["2024-07-25T20:51:20.010000"],["2024-07-25T20:51:21.010000"],["2024-07-25T20:51:22.010000"],["2024-07-25T20:51:23.010000"],["2024-07-25T20:51:24.010000"],["2024-07-25T20:51:25.010000"],["2024-07-25T20:51:26.010000"],["2024-07-25T20:51:27.010000"],["2024-07-25T20:51:28.010000"],["2024-07-25T20:51:29.010000"],["2024-07-25T20:51:30.010000"],["2024-07-25T20:51:31.010000"],["2024-07-25T20:51:32.010000"],["2024-07-25T20:51:33.010000"],["2024-07-25T20:51:34.010000"],["2024-07-25T20:51:35.010000"],["2024-07-25T20:51:36.010000"],["2024-07-25T20:51:37.010000"],["2024-07-25T20:51:38.010000"],["2024-07-25T20:51:39.010000"],["2024-07-25T20:51:40.010000"],["2024-07-25T20:51:41.010000"],["2024-07-25T20:51:42.010000"],["2024-07-25T20:51:43.010000"],["2024-07-25T20:51:44.010000"],["2024-07-25T20:51:45.010000"],["2024-07-25T20:51:46.010000"],["2024-07-25T20:51:47.010000"],["2024-07-25T20:51:48.010000"],["2024-07-25T20:51:49.010000"],["2024-07-25T20:51:50.010000"],["2024-07-25T20:51:51.010000"],["2024-07-25T20:51:52.010000"],["2024-07-25T20:51:53.010000"],["2024-07-25T20:51:54.010000"],["2024-07-25T20:51:55.010000"],["2024-07-25T20:51:56.010000"],["2024-07-25T20:51:57.010000"],["2024-07-25T20:51:58.010000"],["2024-07-25T20:51:59.010000"],["2024-07-25T20:52:00.010000"],["2024-07-25T20:52:01.010000"],["2024-07-25T20:52:02.010000"],["2024-07-25T20:52:03.010000"],["2024-07-25T20:52:04.010000"],["2024-07-25T20:52:05.010000"],["2024-07-25T20:52:06.010000"],["2024-07-25T20:52:07.010000"],["2024-07-25T20:52:08.010000"],["2024-07-25T20:52:09.010000"],["2024-07-25T20:52:10.010000"],["2024-07-25T20:52:11.010000"],["2024-07-25T20:52:12.010000"],["2024-07-25T20:52:13.010000"],["2024-07-25T20:52:14.010000"],["2024-07-25T20:52:15.010000"],["2024-07-25T20:52:16.010000"],["2024-07-25T20:52:17.010000"],["2024-07-25T20:52:18.010000"],["2024-07-25T20:52:19.010000"],["2024-07-25T20:52:20.010000"],["2024-07-25T20:52:21.010000"],["2024-07-25T20:52:22.010000"],["2024-07-25T20:52:23.010000"],["2024-07-25T20:52:24.010000"],["2024-07-25T20:52:25.010000"],["2024-07-25T20:52:26.010000"],["2024-07-25T20:52:27.010000"],["2024-07-25T20:52:28.010000"],["2024-07-25T20:52:29.010000"],["2024-07-25T20:52:30.010000"],["2024-07-25T20:52:31.010000"],["2024-07-25T20:52:32.010000"],["2024-07-25T20:52:33.010000"],["2024-07-25T20:52:34.010000"],["2024-07-25T20:52:35.010000"],["2024-07-25T20:52:36.010000"],["2024-07-25T20:52:37.010000"],["2024-07-25T20:52:38.010000"],["2024-07-25T20:52:39.010000"],["2024-07-25T20:52:40.010000"],["2024-07-25T20:52:41.010000"],["2024-07-25T20:52:42.010000"],["2024-07-25T20:52:43.010000"],["2024-07-25T20:52:44.010000"],["2024-07-25T20:52:45.010000"],["2024-07-25T20:52:46.010000"],["2024-07-25T20:52:47.010000"],["2024-07-25T20:52:48.010000"],["2024-07-25T20:52:49.010000"],["2024-07-25T20:52:50.010000"],["2024-07-25T20:52:51.010000"],["2024-07-25T20:52:52.010000"],["2024-07-25T20:52:53.010000"],["2024-07-25T20:52:54.010000"],["2024-07-25T20:52:55.010000"],["2024-07-25T20:52:56.010000"],["2024-07-25T20:52:57.010000"],["2024-07-25T20:52:58.010000"],["2024-07-25T20:52:59.010000"],["2024-07-25T20:53:00.010000"],["2024-07-25T20:53:01.010000"],["2024-07-25T20:53:02.010000"],["2024-07-25T20:53:03.010000"],["2024-07-25T20:53:04.010000"],["2024-07-25T20:53:05.010000"],["2024-07-25T20:53:06.010000"],["2024-07-25T20:53:07.010000"],["2024-07-25T20:53:08.010000"],["2024-07-25T20:53:09.010000"],["2024-07-25T20:53:10.010000"],["2024-07-25T20:53:11.010000"],["2024-07-25T20:53:12.010000"],["2024-07-25T20:53:13.010000"],["2024-07-25T20:53:14.010000"],["2024-07-25T20:53:15.010000"],["2024-07-25T20:53:16.010000"],["2024-07-25T20:53:17.010000"],["2024-07-25T20:53:18.010000"],["2024-07-25T20:53:19.010000"],["2024-07-25T20:53:20.010000"],["2024-07-25T20:53:21.010000"],["2024-07-25T20:53:22.010000"],["2024-07-25T20:53:23.010000"],["2024-07-25T20:53:24.010000"],["2024-07-25T20:53:25.010000"],["2024-07-25T20:53:26.010000"],["2024-07-25T20:53:27.010000"],["2024-07-25T20:53:28.010000"],["2024-07-25T20:53:29.010000"],["2024-07-25T20:53:30.010000"],["2024-07-25T20:53:31.010000"],["2024-07-25T20:53:32.010000"],["2024-07-25T20:53:33.010000"],["2024-07-25T20:53:34.010000"],["2024-07-25T20:53:35.010000"],["2024-07-25T20:53:36.010000"],["2024-07-25T20:53:37.010000"],["2024-07-25T20:53:38.010000"],["2024-07-25T20:53:39.010000"],["2024-07-25T20:53:40.010000"],["2024-07-25T20:53:41.010000"],["2024-07-25T20:53:42.010000"],["2024-07-25T20:53:43.010000"],["2024-07-25T20:53:44.010000"],["2024-07-25T20:53:45.010000"],["2024-07-25T20:53:46.010000"],["2024-07-25T20:53:47.010000"],["2024-07-25T20:53:48.010000"],["2024-07-25T20:53:49.010000"],["2024-07-25T20:53:50.010000"],["2024-07-25T20:53:51.010000"],["2024-07-25T20:53:52.010000"],["2024-07-25T20:53:53.010000"],["2024-07-25T20:53:54.010000"],["2024-07-25T20:53:55.010000"],["2024-07-25T20:53:56.010000"],["2024-07-25T20:53:57.010000"],["2024-07-25T20:53:58.010000"],["2024-07-25T20:53:59.010000"],["2024-07-25T20:54:00.010000"],["2024-07-25T20:54:01.010000"],["2024-07-25T20:54:02.010000"],["2024-07-25T20:54:03.010000"],["2024-07-25T20:54:04.010000"],["2024-07-25T20:54:05.010000"],["2024-07-25T20:54:06.010000"],["2024-07-25T20:54:07.010000"],["2024-07-25T20:54:08.010000"],["2024-07-25T20:54:09.010000"],["2024-07-25T20:54:10.010000"],["2024-07-25T20:54:11.010000"],["2024-07-25T20:54:12.010000"],["2024-07-25T20:54:13.010000"],["2024-07-25T20:54:14.010000"],["2024-07-25T20:54:15.010000"],["2024-07-25T20:54:16.010000"],["2024-07-25T20:54:17.010000"],["2024-07-25T20:54:18.010000"],["2024-07-25T20:54:19.010000"],["2024-07-25T20:54:20.010000"],["2024-07-25T20:54:21.010000"],["2024-07-25T20:54:22.010000"],["2024-07-25T20:54:23.010000"],["2024-07-25T20:54:24.010000"],["2024-07-25T20:54:25.010000"],["2024-07-25T20:54:26.010000"],["2024-07-25T20:54:27.010000"],["2024-07-25T20:54:28.010000"],["2024-07-25T20:54:29.010000"],["2024-07-25T20:54:30.010000"],["2024-07-25T20:54:31.010000"],["2024-07-25T20:54:32.010000"],["2024-07-25T20:54:33.010000"],["2024-07-25T20:54:34.010000"],["2024-07-25T20:54:35.010000"],["2024-07-25T20:54:36.010000"],["2024-07-25T20:54:37.010000"],["2024-07-25T20:54:38.010000"],["2024-07-25T20:54:39.010000"],["2024-07-25T20:54:40.010000"],["2024-07-25T20:54:41.010000"],["2024-07-25T20:54:42.010000"],["2024-07-25T20:54:43.010000"],["2024-07-25T20:54:44.010000"],["2024-07-25T20:54:45.010000"],["2024-07-25T20:54:46.010000"],["2024-07-25T20:54:47.010000"],["2024-07-25T20:54:48.010000"],["2024-07-25T20:54:49.010000"],["2024-07-25T20:54:50.010000"],["2024-07-25T20:54:51.010000"],["2024-07-25T20:54:52.010000"],["2024-07-25T20:54:53.010000"],["2024-07-25T20:54:54.010000"],["2024-07-25T20:54:55.010000"],["2024-07-25T20:54:56.010000"],["2024-07-25T20:54:57.010000"],["2024-07-25T20:54:58.010000"],["2024-07-25T20:54:59.010000"],["2024-07-25T20:55:00.010000"],["2024-07-25T20:55:01.010000"],["2024-07-25T20:55:02.010000"],["2024-07-25T20:55:03.010000"],["2024-07-25T20:55:04.010000"],["2024-07-25T20:55:05.010000"],["2024-07-25T20:55:06.010000"],["2024-07-25T20:55:07.010000"],["2024-07-25T20:55:08.010000"],["2024-07-25T20:55:09.010000"],["2024-07-25T20:55:10.010000"],["2024-07-25T20:55:11.010000"],["2024-07-25T20:55:12.010000"],["2024-07-25T20:55:13.010000"],["2024-07-25T20:55:14.010000"],["2024-07-25T20:55:15.010000"],["2024-07-25T20:55:16.010000"],["2024-07-25T20:55:17.010000"],["2024-07-25T20:55:18.010000"],["2024-07-25T20:55:19.010000"],["2024-07-25T20:55:20.010000"],["2024-07-25T20:55:21.010000"],["2024-07-25T20:55:22.010000"],["2024-07-25T20:55:23.010000"],["2024-07-25T20:55:24.010000"],["2024-07-25T20:55:25.010000"],["2024-07-25T20:55:26.010000"],["2024-07-25T20:55:27.010000"],["2024-07-25T20:55:28.010000"],["2024-07-25T20:55:29.010000"],["2024-07-25T20:55:30.010000"],["2024-07-25T20:55:31.010000"],["2024-07-25T20:55:32.010000"],["2024-07-25T20:55:33.010000"],["2024-07-25T20:55:34.010000"],["2024-07-25T20:55:35.010000"],["2024-07-25T20:55:36.010000"],["2024-07-25T20:55:37.010000"],["2024-07-25T20:55:38.010000"],["2024-07-25T20:55:39.010000"],["2024-07-25T20:55:40.010000"],["2024-07-25T20:55:41.010000"],["2024-07-25T20:55:42.010000"],["2024-07-25T20:55:43.010000"],["2024-07-25T20:55:44.010000"],["2024-07-25T20:55:45.010000"],["2024-07-25T20:55:46.010000"],["2024-07-25T20:55:47.010000"],["2024-07-25T20:55:48.010000"],["2024-07-25T20:55:49.010000"],["2024-07-25T20:55:50.010000"],["2024-07-25T20:55:51.010000"],["2024-07-25T20:55:52.010000"],["2024-07-25T20:55:53.010000"],["2024-07-25T20:55:54.010000"],["2024-07-25T20:55:55.010000"],["2024-07-25T20:55:56.010000"],["2024-07-25T20:55:57.010000"],["2024-07-25T20:55:58.010000"],["2024-07-25T20:55:59.010000"],["2024-07-25T20:56:00.010000"],["2024-07-25T20:56:01.010000"],["2024-07-25T20:56:02.010000"],["2024-07-25T20:56:03.010000"],["2024-07-25T20:56:04.010000"],["2024-07-25T20:56:05.010000"],["2024-07-25T20:56:06.010000"],["2024-07-25T20:56:07.010000"],["2024-07-25T20:56:08.010000"],["2024-07-25T20:56:09.010000"],["2024-07-25T20:56:10.010000"],["2024-07-25T20:56:11.010000"],["2024-07-25T20:56:12.010000"],["2024-07-25T20:56:13.010000"],["2024-07-25T20:56:14.010000"],["2024-07-25T20:56:15.010000"],["2024-07-25T20:56:16.010000"],["2024-07-25T20:56:17.010000"],["2024-07-25T20:56:18.010000"],["2024-07-25T20:56:19.010000"],["2024-07-25T20:56:20.010000"],["2024-07-25T20:56:21.010000"],["2024-07-25T20:56:22.010000"],["2024-07-25T20:56:23.010000"],["2024-07-25T20:56:24.010000"],["2024-07-25T20:56:25.010000"],["2024-07-25T20:56:26.010000"],["2024-07-25T20:56:27.010000"],["2024-07-25T20:56:28.010000"],["2024-07-25T20:56:29.010000"],["2024-07-25T20:56:30.010000"],["2024-07-25T20:56:31.010000"],["2024-07-25T20:56:32.010000"],["2024-07-25T20:56:33.010000"],["2024-07-25T20:56:34.010000"],["2024-07-25T20:56:35.010000"],["2024-07-25T20:56:36.010000"],["2024-07-25T20:56:37.010000"],["2024-07-25T20:56:38.010000"],["2024-07-25T20:56:39.010000"],["2024-07-25T20:56:40.010000"],["2024-07-25T20:56:41.010000"],["2024-07-25T20:56:42.010000"],["2024-07-25T20:56:43.010000"],["2024-07-25T20:56:44.010000"],["2024-07-25T20:56:45.010000"],["2024-07-25T20:56:46.010000"],["2024-07-25T20:56:47.010000"],["2024-07-25T20:56:48.010000"],["2024-07-25T20:56:49.010000"],["2024-07-25T20:56:50.010000"],["2024-07-25T20:56:51.010000"],["2024-07-25T20:56:52.010000"],["2024-07-25T20:56:53.010000"],["2024-07-25T20:56:54.010000"],["2024-07-25T20:56:55.010000"],["2024-07-25T20:56:56.010000"],["2024-07-25T20:56:57.010000"],["2024-07-25T20:56:58.010000"],["2024-07-25T20:56:59.010000"],["2024-07-25T20:57:00.010000"],["2024-07-25T20:57:01.010000"],["2024-07-25T20:57:02.010000"],["2024-07-25T20:57:03.010000"],["2024-07-25T20:57:04.010000"],["2024-07-25T20:57:05.010000"],["2024-07-25T20:57:06.010000"],["2024-07-25T20:57:07.010000"],["2024-07-25T20:57:08.010000"],["2024-07-25T20:57:09.010000"],["2024-07-25T20:57:10.010000"],["2024-07-25T20:57:11.010000"],["2024-07-25T20:57:12.010000"],["2024-07-25T20:57:13.010000"],["2024-07-25T20:57:14.010000"],["2024-07-25T20:57:15.010000"],["2024-07-25T20:57:16.010000"],["2024-07-25T20:57:17.010000"],["2024-07-25T20:57:18.010000"],["2024-07-25T20:57:19.010000"],["2024-07-25T20:57:20.010000"],["2024-07-25T20:57:21.010000"],["2024-07-25T20:57:22.010000"],["2024-07-25T20:57:23.010000"],["2024-07-25T20:57:24.010000"],["2024-07-25T20:57:25.010000"],["2024-07-25T20:57:26.010000"],["2024-07-25T20:57:27.010000"],["2024-07-25T20:57:28.010000"],["2024-07-25T20:57:29.010000"],["2024-07-25T20:57:30.010000"],["2024-07-25T20:57:31.010000"],["2024-07-25T20:57:32.010000"],["2024-07-25T20:57:33.010000"],["2024-07-25T20:57:34.010000"],["2024-07-25T20:57:35.010000"],["2024-07-25T20:57:36.010000"],["2024-07-25T20:57:37.010000"],["2024-07-25T20:57:38.010000"],["2024-07-25T20:57:39.010000"],["2024-07-25T20:57:40.010000"],["2024-07-25T20:57:41.010000"],["2024-07-25T20:57:42.010000"],["2024-07-25T20:57:43.010000"],["2024-07-25T20:57:44.010000"],["2024-07-25T20:57:45.010000"],["2024-07-25T20:57:46.010000"],["2024-07-25T20:57:47.010000"],["2024-07-25T20:57:48.010000"],["2024-07-25T20:57:49.010000"],["2024-07-25T20:57:50.010000"],["2024-07-25T20:57:51.010000"],["2024-07-25T20:57:52.010000"],["2024-07-25T20:57:53.010000"],["2024-07-25T20:57:54.010000"],["2024-07-25T20:57:55.010000"],["2024-07-25T20:57:56.010000"],["2024-07-25T20:57:57.010000"],["2024-07-25T20:57:58.010000"],["2024-07-25T20:57:59.010000"],["2024-07-25T20:58:00.010000"],["2024-07-25T20:58:01.010000"],["2024-07-25T20:58:02.010000"],["2024-07-25T20:58:03.010000"],["2024-07-25T20:58:04.010000"],["2024-07-25T20:58:05.010000"],["2024-07-25T20:58:06.010000"],["2024-07-25T20:58:07.010000"],["2024-07-25T20:58:08.010000"],["2024-07-25T20:58:09.010000"],["2024-07-25T20:58:10.010000"],["2024-07-25T20:58:11.010000"],["2024-07-25T20:58:12.010000"],["2024-07-25T20:58:13.010000"],["2024-07-25T20:58:14.010000"],["2024-07-25T20:58:15.010000"],["2024-07-25T20:58:16.010000"],["2024-07-25T20:58:17.010000"],["2024-07-25T20:58:18.010000"],["2024-07-25T20:58:19.010000"],["2024-07-25T20:58:20.010000"],["2024-07-25T20:58:21.010000"],["2024-07-25T20:58:22.010000"],["2024-07-25T20:58:23.010000"],["2024-07-25T20:58:24.010000"],["2024-07-25T20:58:25.010000"],["2024-07-25T20:58:26.010000"],["2024-07-25T20:58:27.010000"],["2024-07-25T20:58:28.010000"],["2024-07-25T20:58:29.010000"],["2024-07-25T20:58:30.010000"],["2024-07-25T20:58:31.010000"],["2024-07-25T20:58:32.010000"],["2024-07-25T20:58:33.010000"],["2024-07-25T20:58:34.010000"],["2024-07-25T20:58:35.010000"],["2024-07-25T20:58:36.010000"],["2024-07-25T20:58:37.010000"],["2024-07-25T20:58:38.010000"],["2024-07-25T20:58:39.010000"],["2024-07-25T20:58:40.010000"],["2024-07-25T20:58:41.010000"],["2024-07-25T20:58:42.010000"],["2024-07-25T20:58:43.010000"],["2024-07-25T20:58:44.010000"],["2024-07-25T20:58:45.010000"],["2024-07-25T20:58:46.010000"],["2024-07-25T20:58:47.010000"],["2024-07-25T20:58:48.010000"],["2024-07-25T20:58:49.010000"],["2024-07-25T20:58:50.010000"],["2024-07-25T20:58:51.010000"],["2024-07-25T20:58:52.010000"],["2024-07-25T20:58:53.010000"],["2024-07-25T20:58:54.010000"],["2024-07-25T20:58:55.010000"],["2024-07-25T20:58:56.010000"],["2024-07-25T20:58:57.010000"],["2024-07-25T20:58:58.010000"],["2024-07-25T20:58:59.010000"],["2024-07-25T20:59:00.010000"],["2024-07-25T20:59:01.010000"],["2024-07-25T20:59:02.010000"],["2024-07-25T20:59:03.010000"],["2024-07-25T20:59:04.010000"],["2024-07-25T20:59:05.010000"],["2024-07-25T20:59:06.010000"],["2024-07-25T20:59:07.010000"],["2024-07-25T20:59:08.010000"],["2024-07-25T20:59:09.010000"],["2024-07-25T20:59:10.010000"],["2024-07-25T20:59:11.010000"],["2024-07-25T20:59:12.010000"],["2024-07-25T20:59:13.010000"],["2024-07-25T20:59:14.010000"],["2024-07-25T20:59:15.010000"],["2024-07-25T20:59:16.010000"],["2024-07-25T20:59:17.010000"],["2024-07-25T20:59:18.010000"],["2024-07-25T20:59:19.010000"],["2024-07-25T20:59:20.010000"],["2024-07-25T20:59:21.010000"],["2024-07-25T20:59:22.010000"],["2024-07-25T20:59:23.010000"],["2024-07-25T20:59:24.010000"],["2024-07-25T20:59:25.010000"],["2024-07-25T20:59:26.010000"],["2024-07-25T20:59:27.010000"],["2024-07-25T20:59:28.010000"],["2024-07-25T20:59:29.010000"],["2024-07-25T20:59:30.010000"],["2024-07-25T20:59:31.010000"],["2024-07-25T20:59:32.010000"],["2024-07-25T20:59:33.010000"],["2024-07-25T20:59:34.010000"],["2024-07-25T20:59:35.010000"],["2024-07-25T20:59:36.010000"],["2024-07-25T20:59:37.010000"],["2024-07-25T20:59:38.010000"],["2024-07-25T20:59:39.010000"],["2024-07-25T20:59:40.010000"],["2024-07-25T20:59:41.010000"],["2024-07-25T20:59:42.010000"],["2024-07-25T20:59:43.010000"],["2024-07-25T20:59:44.010000"],["2024-07-25T20:59:45.010000"],["2024-07-25T20:59:46.010000"],["2024-07-25T20:59:47.010000"],["2024-07-25T20:59:48.010000"],["2024-07-25T20:59:49.010000"],["2024-07-25T20:59:50.010000"],["2024-07-25T20:59:51.010000"],["2024-07-25T20:59:52.010000"],["2024-07-25T20:59:53.010000"],["2024-07-25T20:59:54.010000"],["2024-07-25T20:59:55.010000"],["2024-07-25T20:59:56.010000"],["2024-07-25T20:59:57.010000"],["2024-07-25T20:59:58.010000"],["2024-07-25T20:59:59.010000"],["2024-07-25T21:00:00.010000"],["2024-07-25T21:00:01.010000"],["2024-07-25T21:00:02.010000"],["2024-07-25T21:00:03.010000"],["2024-07-25T21:00:04.010000"],["2024-07-25T21:00:05.010000"],["2024-07-25T21:00:06.010000"],["2024-07-25T21:00:07.010000"],["2024-07-25T21:00:08.010000"],["2024-07-25T21:00:09.010000"],["2024-07-25T21:00:10.010000"],["2024-07-25T21:00:11.010000"],["2024-07-25T21:00:12.010000"],["2024-07-25T21:00:13.010000"],["2024-07-25T21:00:14.010000"],["2024-07-25T21:00:15.010000"],["2024-07-25T21:00:16.010000"],["2024-07-25T21:00:17.010000"],["2024-07-25T21:00:18.010000"],["2024-07-25T21:00:19.010000"],["2024-07-25T21:00:20.010000"],["2024-07-25T21:00:21.010000"],["2024-07-25T21:00:22.010000"],["2024-07-25T21:00:23.010000"],["2024-07-25T21:00:24.010000"],["2024-07-25T21:00:25.010000"],["2024-07-25T21:00:26.010000"],["2024-07-25T21:00:27.010000"],["2024-07-25T21:00:28.010000"],["2024-07-25T21:00:29.010000"],["2024-07-25T21:00:30.010000"],["2024-07-25T21:00:31.010000"],["2024-07-25T21:00:32.010000"],["2024-07-25T21:00:33.010000"],["2024-07-25T21:00:34.010000"],["2024-07-25T21:00:35.010000"],["2024-07-25T21:00:36.010000"],["2024-07-25T21:00:37.010000"],["2024-07-25T21:00:38.010000"],["2024-07-25T21:00:39.010000"],["2024-07-25T21:00:40.010000"],["2024-07-25T21:00:41.010000"],["2024-07-25T21:00:42.010000"],["2024-07-25T21:00:43.010000"],["2024-07-25T21:00:44.010000"],["2024-07-25T21:00:45.010000"],["2024-07-25T21:00:46.010000"],["2024-07-25T21:00:47.010000"],["2024-07-25T21:00:48.010000"],["2024-07-25T21:00:49.010000"],["2024-07-25T21:00:50.010000"],["2024-07-25T21:00:51.010000"],["2024-07-25T21:00:52.010000"],["2024-07-25T21:00:53.010000"],["2024-07-25T21:00:54.010000"],["2024-07-25T21:00:55.010000"],["2024-07-25T21:00:56.010000"],["2024-07-25T21:00:57.010000"],["2024-07-25T21:00:58.010000"],["2024-07-25T21:00:59.010000"],["2024-07-25T21:01:00.010000"],["2024-07-25T21:01:01.010000"],["2024-07-25T21:01:02.010000"],["2024-07-25T21:01:03.010000"],["2024-07-25T21:01:04.010000"],["2024-07-25T21:01:05.010000"],["2024-07-25T21:01:06.010000"],["2024-07-25T21:01:07.010000"],["2024-07-25T21:01:08.010000"],["2024-07-25T21:01:09.010000"],["2024-07-25T21:01:10.010000"],["2024-07-25T21:01:11.010000"],["2024-07-25T21:01:12.010000"],["2024-07-25T21:01:13.010000"],["2024-07-25T21:01:14.010000"],["2024-07-25T21:01:15.010000"],["2024-07-25T21:01:16.010000"],["2024-07-25T21:01:17.010000"],["2024-07-25T21:01:18.010000"],["2024-07-25T21:01:19.010000"],["2024-07-25T21:01:20.010000"],["2024-07-25T21:01:21.010000"],["2024-07-25T21:01:22.010000"],["2024-07-25T21:01:23.010000"],["2024-07-25T21:01:24.010000"],["2024-07-25T21:01:25.010000"],["2024-07-25T21:01:26.010000"],["2024-07-25T21:01:27.010000"],["2024-07-25T21:01:28.010000"],["2024-07-25T21:01:29.010000"],["2024-07-25T21:01:30.010000"],["2024-07-25T21:01:31.010000"],["2024-07-25T21:01:32.010000"],["2024-07-25T21:01:33.010000"],["2024-07-25T21:01:34.010000"],["2024-07-25T21:01:35.010000"],["2024-07-25T21:01:36.010000"],["2024-07-25T21:01:37.010000"],["2024-07-25T21:01:38.010000"],["2024-07-25T21:01:39.010000"],["2024-07-25T21:01:40.010000"],["2024-07-25T21:01:41.010000"],["2024-07-25T21:01:42.010000"],["2024-07-25T21:01:43.010000"],["2024-07-25T21:01:44.010000"],["2024-07-25T21:01:45.010000"],["2024-07-25T21:01:46.010000"],["2024-07-25T21:01:47.010000"],["2024-07-25T21:01:48.010000"],["2024-07-25T21:01:49.010000"],["2024-07-25T21:01:50.010000"],["2024-07-25T21:01:51.010000"],["2024-07-25T21:01:52.010000"],["2024-07-25T21:01:53.010000"],["2024-07-25T21:01:54.010000"],["2024-07-25T21:01:55.010000"],["2024-07-25T21:01:56.010000"],["2024-07-25T21:01:57.010000"],["2024-07-25T21:01:58.010000"],["2024-07-25T21:01:59.010000"],["2024-07-25T21:02:00.010000"],["2024-07-25T21:02:01.010000"],["2024-07-25T21:02:02.010000"],["2024-07-25T21:02:03.010000"],["2024-07-25T21:02:04.010000"],["2024-07-25T21:02:05.010000"],["2024-07-25T21:02:06.010000"],["2024-07-25T21:02:07.010000"],["2024-07-25T21:02:08.010000"],["2024-07-25T21:02:09.010000"],["2024-07-25T21:02:10.010000"],["2024-07-25T21:02:11.010000"],["2024-07-25T21:02:12.010000"],["2024-07-25T21:02:13.010000"],["2024-07-25T21:02:14.010000"],["2024-07-25T21:02:15.010000"],["2024-07-25T21:02:16.010000"],["2024-07-25T21:02:17.010000"],["2024-07-25T21:02:18.010000"],["2024-07-25T21:02:19.010000"],["2024-07-25T21:02:20.010000"],["2024-07-25T21:02:21.010000"],["2024-07-25T21:02:22.010000"],["2024-07-25T21:02:23.010000"],["2024-07-25T21:02:24.010000"],["2024-07-25T21:02:25.010000"],["2024-07-25T21:02:26.010000"],["2024-07-25T21:02:27.010000"],["2024-07-25T21:02:28.010000"],["2024-07-25T21:02:29.010000"],["2024-07-25T21:02:30.010000"],["2024-07-25T21:02:31.010000"],["2024-07-25T21:02:32.010000"],["2024-07-25T21:02:33.010000"],["2024-07-25T21:02:34.010000"],["2024-07-25T21:02:35.010000"],["2024-07-25T21:02:36.010000"],["2024-07-25T21:02:37.010000"],["2024-07-25T21:02:38.010000"],["2024-07-25T21:02:39.010000"],["2024-07-25T21:02:40.010000"],["2024-07-25T21:02:41.010000"],["2024-07-25T21:02:42.010000"],["2024-07-25T21:02:43.010000"],["2024-07-25T21:02:44.010000"],["2024-07-25T21:02:45.010000"],["2024-07-25T21:02:46.010000"],["2024-07-25T21:02:47.010000"],["2024-07-25T21:02:48.010000"],["2024-07-25T21:02:49.010000"],["2024-07-25T21:02:50.010000"],["2024-07-25T21:02:51.010000"],["2024-07-25T21:02:52.010000"],["2024-07-25T21:02:53.010000"],["2024-07-25T21:02:54.010000"],["2024-07-25T21:02:55.010000"],["2024-07-25T21:02:56.010000"],["2024-07-25T21:02:57.010000"],["2024-07-25T21:02:58.010000"],["2024-07-25T21:02:59.010000"],["2024-07-25T21:03:00.010000"],["2024-07-25T21:03:01.010000"],["2024-07-25T21:03:02.010000"],["2024-07-25T21:03:03.010000"],["2024-07-25T21:03:04.010000"],["2024-07-25T21:03:05.010000"],["2024-07-25T21:03:06.010000"],["2024-07-25T21:03:07.010000"],["2024-07-25T21:03:08.010000"],["2024-07-25T21:03:09.010000"],["2024-07-25T21:03:10.010000"],["2024-07-25T21:03:11.010000"],["2024-07-25T21:03:12.010000"],["2024-07-25T21:03:13.010000"],["2024-07-25T21:03:14.010000"],["2024-07-25T21:03:15.010000"],["2024-07-25T21:03:16.010000"],["2024-07-25T21:03:17.010000"],["2024-07-25T21:03:18.010000"],["2024-07-25T21:03:19.010000"],["2024-07-25T21:03:20.010000"],["2024-07-25T21:03:21.010000"],["2024-07-25T21:03:22.010000"],["2024-07-25T21:03:23.010000"],["2024-07-25T21:03:24.010000"],["2024-07-25T21:03:25.010000"],["2024-07-25T21:03:26.010000"],["2024-07-25T21:03:27.010000"],["2024-07-25T21:03:28.010000"],["2024-07-25T21:03:29.010000"],["2024-07-25T21:03:30.010000"],["2024-07-25T21:03:31.010000"],["2024-07-25T21:03:32.010000"],["2024-07-25T21:03:33.010000"],["2024-07-25T21:03:34.010000"],["2024-07-25T21:03:35.010000"],["2024-07-25T21:03:36.010000"],["2024-07-25T21:03:37.010000"],["2024-07-25T21:03:38.010000"],["2024-07-25T21:03:39.010000"],["2024-07-25T21:03:40.010000"],["2024-07-25T21:03:41.010000"],["2024-07-25T21:03:42.010000"],["2024-07-25T21:03:43.010000"],["2024-07-25T21:03:44.010000"],["2024-07-25T21:03:45.010000"],["2024-07-25T21:03:46.010000"],["2024-07-25T21:03:47.010000"],["2024-07-25T21:03:48.010000"],["2024-07-25T21:03:49.010000"],["2024-07-25T21:03:50.010000"],["2024-07-25T21:03:51.010000"],["2024-07-25T21:03:52.010000"],["2024-07-25T21:03:53.010000"],["2024-07-25T21:03:54.010000"],["2024-07-25T21:03:55.010000"],["2024-07-25T21:03:56.010000"],["2024-07-25T21:03:57.010000"],["2024-07-25T21:03:58.010000"],["2024-07-25T21:03:59.010000"],["2024-07-25T21:04:00.010000"],["2024-07-25T21:04:01.010000"],["2024-07-25T21:04:02.010000"],["2024-07-25T21:04:03.010000"],["2024-07-25T21:04:04.010000"],["2024-07-25T21:04:05.010000"],["2024-07-25T21:04:06.010000"],["2024-07-25T21:04:07.010000"],["2024-07-25T21:04:08.010000"],["2024-07-25T21:04:09.010000"],["2024-07-25T21:04:10.010000"],["2024-07-25T21:04:11.010000"],["2024-07-25T21:04:12.010000"],["2024-07-25T21:04:13.010000"],["2024-07-25T21:04:14.010000"],["2024-07-25T21:04:15.010000"],["2024-07-25T21:04:16.010000"],["2024-07-25T21:04:17.010000"],["2024-07-25T21:04:18.010000"],["2024-07-25T21:04:19.010000"],["2024-07-25T21:04:20.010000"],["2024-07-25T21:04:21.010000"],["2024-07-25T21:04:22.010000"],["2024-07-25T21:04:23.010000"],["2024-07-25T21:04:24.010000"],["2024-07-25T21:04:25.010000"],["2024-07-25T21:04:26.010000"],["2024-07-25T21:04:27.010000"],["2024-07-25T21:04:28.010000"],["2024-07-25T21:04:29.010000"],["2024-07-25T21:04:30.010000"],["2024-07-25T21:04:31.010000"],["2024-07-25T21:04:32.010000"],["2024-07-25T21:04:33.010000"],["2024-07-25T21:04:34.010000"],["2024-07-25T21:04:35.010000"],["2024-07-25T21:04:36.010000"],["2024-07-25T21:04:37.010000"],["2024-07-25T21:04:38.010000"],["2024-07-25T21:04:39.010000"],["2024-07-25T21:04:40.010000"],["2024-07-25T21:04:41.010000"],["2024-07-25T21:04:42.010000"],["2024-07-25T21:04:43.010000"],["2024-07-25T21:04:44.010000"],["2024-07-25T21:04:45.010000"],["2024-07-25T21:04:46.010000"],["2024-07-25T21:04:47.010000"],["2024-07-25T21:04:48.010000"],["2024-07-25T21:04:49.010000"],["2024-07-25T21:04:50.010000"],["2024-07-25T21:04:51.010000"],["2024-07-25T21:04:52.010000"],["2024-07-25T21:04:53.010000"],["2024-07-25T21:04:54.010000"],["2024-07-25T21:04:55.010000"],["2024-07-25T21:04:56.010000"],["2024-07-25T21:04:57.010000"],["2024-07-25T21:04:58.010000"],["2024-07-25T21:04:59.010000"],["2024-07-25T21:05:00.010000"],["2024-07-25T21:05:01.010000"],["2024-07-25T21:05:02.010000"],["2024-07-25T21:05:03.010000"],["2024-07-25T21:05:04.010000"],["2024-07-25T21:05:05.010000"],["2024-07-25T21:05:06.010000"],["2024-07-25T21:05:07.010000"],["2024-07-25T21:05:08.010000"],["2024-07-25T21:05:09.010000"],["2024-07-25T21:05:10.010000"],["2024-07-25T21:05:11.010000"],["2024-07-25T21:05:12.010000"],["2024-07-25T21:05:13.010000"],["2024-07-25T21:05:14.010000"],["2024-07-25T21:05:15.010000"],["2024-07-25T21:05:16.010000"],["2024-07-25T21:05:17.010000"],["2024-07-25T21:05:18.010000"],["2024-07-25T21:05:19.010000"],["2024-07-25T21:05:20.010000"],["2024-07-25T21:05:21.010000"],["2024-07-25T21:05:22.010000"],["2024-07-25T21:05:23.010000"],["2024-07-25T21:05:24.010000"],["2024-07-25T21:05:25.010000"],["2024-07-25T21:05:26.010000"],["2024-07-25T21:05:27.010000"],["2024-07-25T21:05:28.010000"],["2024-07-25T21:05:29.010000"],["2024-07-25T21:05:30.010000"],["2024-07-25T21:05:31.010000"],["2024-07-25T21:05:32.010000"],["2024-07-25T21:05:33.010000"],["2024-07-25T21:05:34.010000"],["2024-07-25T21:05:35.010000"],["2024-07-25T21:05:36.010000"],["2024-07-25T21:05:37.010000"],["2024-07-25T21:05:38.010000"],["2024-07-25T21:05:39.010000"],["2024-07-25T21:05:40.010000"],["2024-07-25T21:05:41.010000"],["2024-07-25T21:05:42.010000"],["2024-07-25T21:05:43.010000"],["2024-07-25T21:05:44.010000"],["2024-07-25T21:05:45.010000"],["2024-07-25T21:05:46.010000"],["2024-07-25T21:05:47.010000"],["2024-07-25T21:05:48.010000"],["2024-07-25T21:05:49.010000"],["2024-07-25T21:05:50.010000"],["2024-07-25T21:05:51.010000"],["2024-07-25T21:05:52.010000"],["2024-07-25T21:05:53.010000"],["2024-07-25T21:05:54.010000"],["2024-07-25T21:05:55.010000"],["2024-07-25T21:05:56.010000"],["2024-07-25T21:05:57.010000"],["2024-07-25T21:05:58.010000"],["2024-07-25T21:05:59.010000"],["2024-07-25T21:06:00.010000"],["2024-07-25T21:06:01.010000"],["2024-07-25T21:06:02.010000"],["2024-07-25T21:06:03.010000"],["2024-07-25T21:06:04.010000"],["2024-07-25T21:06:05.010000"],["2024-07-25T21:06:06.010000"],["2024-07-25T21:06:07.010000"],["2024-07-25T21:06:08.010000"],["2024-07-25T21:06:09.010000"],["2024-07-25T21:06:10.010000"],["2024-07-25T21:06:11.010000"],["2024-07-25T21:06:12.010000"],["2024-07-25T21:06:13.010000"],["2024-07-25T21:06:14.010000"],["2024-07-25T21:06:15.010000"],["2024-07-25T21:06:16.010000"],["2024-07-25T21:06:17.010000"],["2024-07-25T21:06:18.010000"],["2024-07-25T21:06:19.010000"],["2024-07-25T21:06:20.010000"],["2024-07-25T21:06:21.010000"],["2024-07-25T21:06:22.010000"],["2024-07-25T21:06:23.010000"],["2024-07-25T21:06:24.010000"],["2024-07-25T21:06:25.010000"],["2024-07-25T21:06:26.010000"],["2024-07-25T21:06:27.010000"],["2024-07-25T21:06:28.010000"],["2024-07-25T21:06:29.010000"],["2024-07-25T21:06:30.010000"],["2024-07-25T21:06:31.010000"],["2024-07-25T21:06:32.010000"],["2024-07-25T21:06:33.010000"],["2024-07-25T21:06:34.010000"],["2024-07-25T21:06:35.010000"],["2024-07-25T21:06:36.010000"],["2024-07-25T21:06:37.010000"],["2024-07-25T21:06:38.010000"],["2024-07-25T21:06:39.010000"],["2024-07-25T21:06:40.010000"],["2024-07-25T21:06:41.010000"],["2024-07-25T21:06:42.010000"],["2024-07-25T21:06:43.010000"],["2024-07-25T21:06:44.010000"],["2024-07-25T21:06:45.010000"],["2024-07-25T21:06:46.010000"],["2024-07-25T21:06:47.010000"],["2024-07-25T21:06:48.010000"],["2024-07-25T21:06:49.010000"],["2024-07-25T21:06:50.010000"],["2024-07-25T21:06:51.010000"],["2024-07-25T21:06:52.010000"],["2024-07-25T21:06:53.010000"],["2024-07-25T21:06:54.010000"],["2024-07-25T21:06:55.010000"],["2024-07-25T21:06:56.010000"],["2024-07-25T21:06:57.010000"],["2024-07-25T21:06:58.010000"],["2024-07-25T21:06:59.010000"],["2024-07-25T21:07:00.010000"],["2024-07-25T21:07:01.010000"],["2024-07-25T21:07:02.010000"],["2024-07-25T21:07:03.010000"],["2024-07-25T21:07:04.010000"],["2024-07-25T21:07:05.010000"],["2024-07-25T21:07:06.010000"],["2024-07-25T21:07:07.010000"],["2024-07-25T21:07:08.010000"],["2024-07-25T21:07:09.010000"],["2024-07-25T21:07:10.010000"],["2024-07-25T21:07:11.010000"],["2024-07-25T21:07:12.010000"],["2024-07-25T21:07:13.010000"],["2024-07-25T21:07:14.010000"],["2024-07-25T21:07:15.010000"],["2024-07-25T21:07:16.010000"],["2024-07-25T21:07:17.010000"],["2024-07-25T21:07:18.010000"],["2024-07-25T21:07:19.010000"],["2024-07-25T21:07:20.010000"],["2024-07-25T21:07:21.010000"],["2024-07-25T21:07:22.010000"],["2024-07-25T21:07:23.010000"],["2024-07-25T21:07:24.010000"],["2024-07-25T21:07:25.010000"],["2024-07-25T21:07:26.010000"],["2024-07-25T21:07:27.010000"],["2024-07-25T21:07:28.010000"],["2024-07-25T21:07:29.010000"],["2024-07-25T21:07:30.010000"],["2024-07-25T21:07:31.010000"],["2024-07-25T21:07:32.010000"],["2024-07-25T21:07:33.010000"],["2024-07-25T21:07:34.010000"],["2024-07-25T21:07:35.010000"],["2024-07-25T21:07:36.010000"],["2024-07-25T21:07:37.010000"],["2024-07-25T21:07:38.010000"],["2024-07-25T21:07:39.010000"],["2024-07-25T21:07:40.010000"],["2024-07-25T21:07:41.010000"],["2024-07-25T21:07:42.010000"],["2024-07-25T21:07:43.010000"],["2024-07-25T21:07:44.010000"],["2024-07-25T21:07:45.010000"],["2024-07-25T21:07:46.010000"],["2024-07-25T21:07:47.010000"],["2024-07-25T21:07:48.010000"],["2024-07-25T21:07:49.010000"],["2024-07-25T21:07:50.010000"],["2024-07-25T21:07:51.010000"],["2024-07-25T21:07:52.010000"],["2024-07-25T21:07:53.010000"],["2024-07-25T21:07:54.010000"],["2024-07-25T21:07:55.010000"],["2024-07-25T21:07:56.010000"],["2024-07-25T21:07:57.010000"],["2024-07-25T21:07:58.010000"],["2024-07-25T21:07:59.010000"],["2024-07-25T21:08:00.010000"],["2024-07-25T21:08:01.010000"],["2024-07-25T21:08:02.010000"],["2024-07-25T21:08:03.010000"],["2024-07-25T21:08:04.010000"],["2024-07-25T21:08:05.010000"],["2024-07-25T21:08:06.010000"],["2024-07-25T21:08:07.010000"],["2024-07-25T21:08:08.010000"],["2024-07-25T21:08:09.010000"],["2024-07-25T21:08:10.010000"],["2024-07-25T21:08:11.010000"],["2024-07-25T21:08:12.010000"],["2024-07-25T21:08:13.010000"],["2024-07-25T21:08:14.010000"],["2024-07-25T21:08:15.010000"],["2024-07-25T21:08:16.010000"],["2024-07-25T21:08:17.010000"],["2024-07-25T21:08:18.010000"],["2024-07-25T21:08:19.010000"],["2024-07-25T21:08:20.010000"],["2024-07-25T21:08:21.010000"],["2024-07-25T21:08:22.010000"],["2024-07-25T21:08:23.010000"],["2024-07-25T21:08:24.010000"],["2024-07-25T21:08:25.010000"],["2024-07-25T21:08:26.010000"],["2024-07-25T21:08:27.010000"],["2024-07-25T21:08:28.010000"],["2024-07-25T21:08:29.010000"],["2024-07-25T21:08:30.010000"],["2024-07-25T21:08:31.010000"],["2024-07-25T21:08:32.010000"],["2024-07-25T21:08:33.010000"],["2024-07-25T21:08:34.010000"],["2024-07-25T21:08:35.010000"],["2024-07-25T21:08:36.010000"],["2024-07-25T21:08:37.010000"],["2024-07-25T21:08:38.010000"],["2024-07-25T21:08:39.010000"],["2024-07-25T21:08:40.010000"],["2024-07-25T21:08:41.010000"],["2024-07-25T21:08:42.010000"],["2024-07-25T21:08:43.010000"],["2024-07-25T21:08:44.010000"],["2024-07-25T21:08:45.010000"],["2024-07-25T21:08:46.010000"],["2024-07-25T21:08:47.010000"],["2024-07-25T21:08:48.010000"],["2024-07-25T21:08:49.010000"],["2024-07-25T21:08:50.010000"],["2024-07-25T21:08:51.010000"],["2024-07-25T21:08:52.010000"],["2024-07-25T21:08:53.010000"],["2024-07-25T21:08:54.010000"],["2024-07-25T21:08:55.010000"],["2024-07-25T21:08:56.010000"],["2024-07-25T21:08:57.010000"],["2024-07-25T21:08:58.010000"],["2024-07-25T21:08:59.010000"],["2024-07-25T21:09:00.010000"],["2024-07-25T21:09:01.010000"],["2024-07-25T21:09:02.010000"],["2024-07-25T21:09:03.010000"],["2024-07-25T21:09:04.010000"],["2024-07-25T21:09:05.010000"],["2024-07-25T21:09:06.010000"],["2024-07-25T21:09:07.010000"],["2024-07-25T21:09:08.010000"],["2024-07-25T21:09:09.010000"],["2024-07-25T21:09:10.010000"],["2024-07-25T21:09:11.010000"],["2024-07-25T21:09:12.010000"],["2024-07-25T21:09:13.010000"],["2024-07-25T21:09:14.010000"],["2024-07-25T21:09:15.010000"],["2024-07-25T21:09:16.010000"],["2024-07-25T21:09:17.010000"],["2024-07-25T21:09:18.010000"],["2024-07-25T21:09:19.010000"],["2024-07-25T21:09:20.010000"],["2024-07-25T21:09:21.010000"],["2024-07-25T21:09:22.010000"],["2024-07-25T21:09:23.010000"],["2024-07-25T21:09:24.010000"],["2024-07-25T21:09:25.010000"],["2024-07-25T21:09:26.010000"],["2024-07-25T21:09:27.010000"],["2024-07-25T21:09:28.010000"],["2024-07-25T21:09:29.010000"],["2024-07-25T21:09:30.010000"],["2024-07-25T21:09:31.010000"],["2024-07-25T21:09:32.010000"],["2024-07-25T21:09:33.010000"],["2024-07-25T21:09:34.010000"],["2024-07-25T21:09:35.010000"],["2024-07-25T21:09:36.010000"],["2024-07-25T21:09:37.010000"],["2024-07-25T21:09:38.010000"],["2024-07-25T21:09:39.010000"],["2024-07-25T21:09:40.010000"],["2024-07-25T21:09:41.010000"],["2024-07-25T21:09:42.010000"],["2024-07-25T21:09:43.010000"],["2024-07-25T21:09:44.010000"],["2024-07-25T21:09:45.010000"],["2024-07-25T21:09:46.010000"],["2024-07-25T21:09:47.010000"],["2024-07-25T21:09:48.010000"],["2024-07-25T21:09:49.010000"],["2024-07-25T21:09:50.010000"],["2024-07-25T21:09:51.010000"],["2024-07-25T21:09:52.010000"],["2024-07-25T21:09:53.010000"],["2024-07-25T21:09:54.010000"],["2024-07-25T21:09:55.010000"],["2024-07-25T21:09:56.010000"],["2024-07-25T21:09:57.010000"],["2024-07-25T21:09:58.010000"],["2024-07-25T21:09:59.010000"],["2024-07-25T21:10:00.010000"],["2024-07-25T21:10:01.010000"],["2024-07-25T21:10:02.010000"],["2024-07-25T21:10:03.010000"],["2024-07-25T21:10:04.010000"],["2024-07-25T21:10:05.010000"],["2024-07-25T21:10:06.010000"],["2024-07-25T21:10:07.010000"],["2024-07-25T21:10:08.010000"],["2024-07-25T21:10:09.010000"],["2024-07-25T21:10:10.010000"],["2024-07-25T21:10:11.010000"],["2024-07-25T21:10:12.010000"],["2024-07-25T21:10:13.010000"],["2024-07-25T21:10:14.010000"],["2024-07-25T21:10:15.010000"],["2024-07-25T21:10:16.010000"],["2024-07-25T21:10:17.010000"],["2024-07-25T21:10:18.010000"],["2024-07-25T21:10:19.010000"],["2024-07-25T21:10:20.010000"],["2024-07-25T21:10:21.010000"],["2024-07-25T21:10:22.010000"],["2024-07-25T21:10:23.010000"],["2024-07-25T21:10:24.010000"],["2024-07-25T21:10:25.010000"],["2024-07-25T21:10:26.010000"],["2024-07-25T21:10:27.010000"],["2024-07-25T21:10:28.010000"],["2024-07-25T21:10:29.010000"],["2024-07-25T21:10:30.010000"],["2024-07-25T21:10:31.010000"],["2024-07-25T21:10:32.010000"],["2024-07-25T21:10:33.010000"],["2024-07-25T21:10:34.010000"],["2024-07-25T21:10:35.010000"],["2024-07-25T21:10:36.010000"],["2024-07-25T21:10:37.010000"],["2024-07-25T21:10:38.010000"],["2024-07-25T21:10:39.010000"],["2024-07-25T21:10:40.010000"],["2024-07-25T21:10:41.010000"],["2024-07-25T21:10:42.010000"],["2024-07-25T21:10:43.010000"],["2024-07-25T21:10:44.010000"],["2024-07-25T21:10:45.010000"],["2024-07-25T21:10:46.010000"],["2024-07-25T21:10:47.010000"],["2024-07-25T21:10:48.010000"],["2024-07-25T21:10:49.010000"],["2024-07-25T21:10:50.010000"],["2024-07-25T21:10:51.010000"],["2024-07-25T21:10:52.010000"],["2024-07-25T21:10:53.010000"],["2024-07-25T21:10:54.010000"],["2024-07-25T21:10:55.010000"],["2024-07-25T21:10:56.010000"],["2024-07-25T21:10:57.010000"],["2024-07-25T21:10:58.010000"],["2024-07-25T21:10:59.010000"],["2024-07-25T21:11:00.010000"],["2024-07-25T21:11:01.010000"],["2024-07-25T21:11:02.010000"],["2024-07-25T21:11:03.010000"],["2024-07-25T21:11:04.010000"],["2024-07-25T21:11:05.010000"],["2024-07-25T21:11:06.010000"],["2024-07-25T21:11:07.010000"],["2024-07-25T21:11:08.010000"],["2024-07-25T21:11:09.010000"],["2024-07-25T21:11:10.010000"],["2024-07-25T21:11:11.010000"],["2024-07-25T21:11:12.010000"],["2024-07-25T21:11:13.010000"],["2024-07-25T21:11:14.010000"],["2024-07-25T21:11:15.010000"],["2024-07-25T21:11:16.010000"],["2024-07-25T21:11:17.010000"],["2024-07-25T21:11:18.010000"],["2024-07-25T21:11:19.010000"],["2024-07-25T21:11:20.010000"],["2024-07-25T21:11:21.010000"],["2024-07-25T21:11:22.010000"],["2024-07-25T21:11:23.010000"],["2024-07-25T21:11:24.010000"],["2024-07-25T21:11:25.010000"],["2024-07-25T21:11:26.010000"],["2024-07-25T21:11:27.010000"],["2024-07-25T21:11:28.010000"],["2024-07-25T21:11:29.010000"],["2024-07-25T21:11:30.010000"],["2024-07-25T21:11:31.010000"],["2024-07-25T21:11:32.010000"],["2024-07-25T21:11:33.010000"],["2024-07-25T21:11:34.010000"],["2024-07-25T21:11:35.010000"],["2024-07-25T21:11:36.010000"],["2024-07-25T21:11:37.010000"],["2024-07-25T21:11:38.010000"],["2024-07-25T21:11:39.010000"],["2024-07-25T21:11:40.010000"],["2024-07-25T21:11:41.010000"],["2024-07-25T21:11:42.010000"],["2024-07-25T21:11:43.010000"],["2024-07-25T21:11:44.010000"],["2024-07-25T21:11:45.010000"],["2024-07-25T21:11:46.010000"],["2024-07-25T21:11:47.010000"],["2024-07-25T21:11:48.010000"],["2024-07-25T21:11:49.010000"],["2024-07-25T21:11:50.010000"],["2024-07-25T21:11:51.010000"],["2024-07-25T21:11:52.010000"],["2024-07-25T21:11:53.010000"],["2024-07-25T21:11:54.010000"],["2024-07-25T21:11:55.010000"],["2024-07-25T21:11:56.010000"],["2024-07-25T21:11:57.010000"],["2024-07-25T21:11:58.010000"],["2024-07-25T21:11:59.010000"],["2024-07-25T21:12:00.010000"],["2024-07-25T21:12:01.010000"],["2024-07-25T21:12:02.010000"],["2024-07-25T21:12:03.010000"],["2024-07-25T21:12:04.010000"],["2024-07-25T21:12:05.010000"],["2024-07-25T21:12:06.010000"],["2024-07-25T21:12:07.010000"],["2024-07-25T21:12:08.010000"],["2024-07-25T21:12:09.010000"],["2024-07-25T21:12:10.010000"],["2024-07-25T21:12:11.010000"],["2024-07-25T21:12:12.010000"],["2024-07-25T21:12:13.010000"],["2024-07-25T21:12:14.010000"],["2024-07-25T21:12:15.010000"],["2024-07-25T21:12:16.010000"],["2024-07-25T21:12:17.010000"],["2024-07-25T21:12:18.010000"],["2024-07-25T21:12:19.010000"],["2024-07-25T21:12:20.010000"],["2024-07-25T21:12:21.010000"],["2024-07-25T21:12:22.010000"],["2024-07-25T21:12:23.010000"],["2024-07-25T21:12:24.010000"],["2024-07-25T21:12:25.010000"],["2024-07-25T21:12:26.010000"],["2024-07-25T21:12:27.010000"],["2024-07-25T21:12:28.010000"],["2024-07-25T21:12:29.010000"],["2024-07-25T21:12:30.010000"],["2024-07-25T21:12:31.010000"],["2024-07-25T21:12:32.010000"],["2024-07-25T21:12:33.010000"],["2024-07-25T21:12:34.010000"],["2024-07-25T21:12:35.010000"],["2024-07-25T21:12:36.010000"],["2024-07-25T21:12:37.010000"],["2024-07-25T21:12:38.010000"],["2024-07-25T21:12:39.010000"],["2024-07-25T21:12:40.010000"],["2024-07-25T21:12:41.010000"],["2024-07-25T21:12:42.010000"],["2024-07-25T21:12:43.010000"],["2024-07-25T21:12:44.010000"],["2024-07-25T21:12:45.010000"],["2024-07-25T21:12:46.010000"],["2024-07-25T21:12:47.010000"],["2024-07-25T21:12:48.010000"],["2024-07-25T21:12:49.010000"],["2024-07-25T21:12:50.010000"],["2024-07-25T21:12:51.010000"],["2024-07-25T21:12:52.010000"],["2024-07-25T21:12:53.010000"],["2024-07-25T21:12:54.010000"],["2024-07-25T21:12:55.010000"],["2024-07-25T21:12:56.010000"],["2024-07-25T21:12:57.010000"],["2024-07-25T21:12:58.010000"],["2024-07-25T21:12:59.010000"],["2024-07-25T21:13:00.010000"],["2024-07-25T21:13:01.010000"],["2024-07-25T21:13:02.010000"],["2024-07-25T21:13:03.010000"],["2024-07-25T21:13:04.010000"],["2024-07-25T21:13:05.010000"],["2024-07-25T21:13:06.010000"],["2024-07-25T21:13:07.010000"],["2024-07-25T21:13:08.010000"],["2024-07-25T21:13:09.010000"],["2024-07-25T21:13:10.010000"],["2024-07-25T21:13:11.010000"],["2024-07-25T21:13:12.010000"],["2024-07-25T21:13:13.010000"],["2024-07-25T21:13:14.010000"],["2024-07-25T21:13:15.010000"],["2024-07-25T21:13:16.010000"],["2024-07-25T21:13:17.010000"],["2024-07-25T21:13:18.010000"],["2024-07-25T21:13:19.010000"],["2024-07-25T21:13:20.010000"],["2024-07-25T21:13:21.010000"],["2024-07-25T21:13:22.010000"],["2024-07-25T21:13:23.010000"],["2024-07-25T21:13:24.010000"],["2024-07-25T21:13:25.010000"],["2024-07-25T21:13:26.010000"],["2024-07-25T21:13:27.010000"],["2024-07-25T21:13:28.010000"],["2024-07-25T21:13:29.010000"],["2024-07-25T21:13:30.010000"],["2024-07-25T21:13:31.010000"],["2024-07-25T21:13:32.010000"],["2024-07-25T21:13:33.010000"],["2024-07-25T21:13:34.010000"],["2024-07-25T21:13:35.010000"],["2024-07-25T21:13:36.010000"],["2024-07-25T21:13:37.010000"],["2024-07-25T21:13:38.010000"],["2024-07-25T21:13:39.010000"],["2024-07-25T21:13:40.010000"],["2024-07-25T21:13:41.010000"],["2024-07-25T21:13:42.010000"],["2024-07-25T21:13:43.010000"],["2024-07-25T21:13:44.010000"],["2024-07-25T21:13:45.010000"],["2024-07-25T21:13:46.010000"],["2024-07-25T21:13:47.010000"],["2024-07-25T21:13:48.010000"],["2024-07-25T21:13:49.010000"],["2024-07-25T21:13:50.010000"],["2024-07-25T21:13:51.010000"],["2024-07-25T21:13:52.010000"],["2024-07-25T21:13:53.010000"],["2024-07-25T21:13:54.010000"],["2024-07-25T21:13:55.010000"],["2024-07-25T21:13:56.010000"],["2024-07-25T21:13:57.010000"],["2024-07-25T21:13:58.010000"],["2024-07-25T21:13:59.010000"],["2024-07-25T21:14:00.010000"],["2024-07-25T21:14:01.010000"],["2024-07-25T21:14:02.010000"],["2024-07-25T21:14:03.010000"],["2024-07-25T21:14:04.010000"],["2024-07-25T21:14:05.010000"],["2024-07-25T21:14:06.010000"],["2024-07-25T21:14:07.010000"],["2024-07-25T21:14:08.010000"],["2024-07-25T21:14:09.010000"],["2024-07-25T21:14:10.010000"],["2024-07-25T21:14:11.010000"],["2024-07-25T21:14:12.010000"],["2024-07-25T21:14:13.010000"],["2024-07-25T21:14:14.010000"],["2024-07-25T21:14:15.010000"],["2024-07-25T21:14:16.010000"],["2024-07-25T21:14:17.010000"],["2024-07-25T21:14:18.010000"],["2024-07-25T21:14:19.010000"],["2024-07-25T21:14:20.010000"],["2024-07-25T21:14:21.010000"],["2024-07-25T21:14:22.010000"],["2024-07-25T21:14:23.010000"],["2024-07-25T21:14:24.010000"],["2024-07-25T21:14:25.010000"],["2024-07-25T21:14:26.010000"],["2024-07-25T21:14:27.010000"],["2024-07-25T21:14:28.010000"],["2024-07-25T21:14:29.010000"],["2024-07-25T21:14:30.010000"],["2024-07-25T21:14:31.010000"],["2024-07-25T21:14:32.010000"],["2024-07-25T21:14:33.010000"],["2024-07-25T21:14:34.010000"],["2024-07-25T21:14:35.010000"],["2024-07-25T21:14:36.010000"],["2024-07-25T21:14:37.010000"],["2024-07-25T21:14:38.010000"],["2024-07-25T21:14:39.010000"],["2024-07-25T21:14:40.010000"],["2024-07-25T21:14:41.010000"],["2024-07-25T21:14:42.010000"],["2024-07-25T21:14:43.010000"],["2024-07-25T21:14:44.010000"],["2024-07-25T21:14:45.010000"],["2024-07-25T21:14:46.010000"],["2024-07-25T21:14:47.010000"],["2024-07-25T21:14:48.010000"],["2024-07-25T21:14:49.010000"],["2024-07-25T21:14:50.010000"],["2024-07-25T21:14:51.010000"],["2024-07-25T21:14:52.010000"],["2024-07-25T21:14:53.010000"],["2024-07-25T21:14:54.010000"],["2024-07-25T21:14:55.010000"],["2024-07-25T21:14:56.010000"],["2024-07-25T21:14:57.010000"],["2024-07-25T21:14:58.010000"],["2024-07-25T21:14:59.010000"],["2024-07-25T21:15:00.010000"],["2024-07-25T21:15:01.010000"],["2024-07-25T21:15:02.010000"],["2024-07-25T21:15:03.010000"],["2024-07-25T21:15:04.010000"],["2024-07-25T21:15:05.010000"],["2024-07-25T21:15:06.010000"],["2024-07-25T21:15:07.010000"],["2024-07-25T21:15:08.010000"],["2024-07-25T21:15:09.010000"],["2024-07-25T21:15:10.010000"],["2024-07-25T21:15:11.010000"],["2024-07-25T21:15:12.010000"],["2024-07-25T21:15:13.010000"],["2024-07-25T21:15:14.010000"],["2024-07-25T21:15:15.010000"],["2024-07-25T21:15:16.010000"],["2024-07-25T21:15:17.010000"],["2024-07-25T21:15:18.010000"],["2024-07-25T21:15:19.010000"],["2024-07-25T21:15:20.010000"],["2024-07-25T21:15:21.010000"],["2024-07-25T21:15:22.010000"],["2024-07-25T21:15:23.010000"],["2024-07-25T21:15:24.010000"],["2024-07-25T21:15:25.010000"],["2024-07-25T21:15:26.010000"],["2024-07-25T21:15:27.010000"],["2024-07-25T21:15:28.010000"],["2024-07-25T21:15:29.010000"],["2024-07-25T21:15:30.010000"],["2024-07-25T21:15:31.010000"],["2024-07-25T21:15:32.010000"],["2024-07-25T21:15:33.010000"],["2024-07-25T21:15:34.010000"],["2024-07-25T21:15:35.010000"],["2024-07-25T21:15:36.010000"],["2024-07-25T21:15:37.010000"],["2024-07-25T21:15:38.010000"],["2024-07-25T21:15:39.010000"],["2024-07-25T21:15:40.010000"],["2024-07-25T21:15:41.010000"],["2024-07-25T21:15:42.010000"],["2024-07-25T21:15:43.010000"],["2024-07-25T21:15:44.010000"],["2024-07-25T21:15:45.010000"],["2024-07-25T21:15:46.010000"],["2024-07-25T21:15:47.010000"],["2024-07-25T21:15:48.010000"],["2024-07-25T21:15:49.010000"],["2024-07-25T21:15:50.010000"],["2024-07-25T21:15:51.010000"],["2024-07-25T21:15:52.010000"],["2024-07-25T21:15:53.010000"],["2024-07-25T21:15:54.010000"],["2024-07-25T21:15:55.010000"],["2024-07-25T21:15:56.010000"],["2024-07-25T21:15:57.010000"],["2024-07-25T21:15:58.010000"],["2024-07-25T21:15:59.010000"],["2024-07-25T21:16:00.010000"],["2024-07-25T21:16:01.010000"],["2024-07-25T21:16:02.010000"],["2024-07-25T21:16:03.010000"],["2024-07-25T21:16:04.010000"],["2024-07-25T21:16:05.010000"],["2024-07-25T21:16:06.010000"],["2024-07-25T21:16:07.010000"],["2024-07-25T21:16:08.010000"],["2024-07-25T21:16:09.010000"],["2024-07-25T21:16:10.010000"],["2024-07-25T21:16:11.010000"],["2024-07-25T21:16:12.010000"],["2024-07-25T21:16:13.010000"],["2024-07-25T21:16:14.010000"],["2024-07-25T21:16:15.010000"],["2024-07-25T21:16:16.010000"],["2024-07-25T21:16:17.010000"],["2024-07-25T21:16:18.010000"],["2024-07-25T21:16:19.010000"],["2024-07-25T21:16:20.010000"],["2024-07-25T21:16:21.010000"],["2024-07-25T21:16:22.010000"],["2024-07-25T21:16:23.010000"],["2024-07-25T21:16:24.010000"],["2024-07-25T21:16:25.010000"],["2024-07-25T21:16:26.010000"],["2024-07-25T21:16:27.010000"],["2024-07-25T21:16:28.010000"],["2024-07-25T21:16:29.010000"],["2024-07-25T21:16:30.010000"],["2024-07-25T21:16:31.010000"],["2024-07-25T21:16:32.010000"],["2024-07-25T21:16:33.010000"],["2024-07-25T21:16:34.010000"],["2024-07-25T21:16:35.010000"],["2024-07-25T21:16:36.010000"],["2024-07-25T21:16:37.010000"],["2024-07-25T21:16:38.010000"],["2024-07-25T21:16:39.010000"],["2024-07-25T21:16:40.010000"],["2024-07-25T21:16:41.010000"],["2024-07-25T21:16:42.010000"],["2024-07-25T21:16:43.010000"],["2024-07-25T21:16:44.010000"],["2024-07-25T21:16:45.010000"],["2024-07-25T21:16:46.010000"],["2024-07-25T21:16:47.010000"],["2024-07-25T21:16:48.010000"],["2024-07-25T21:16:49.010000"],["2024-07-25T21:16:50.010000"],["2024-07-25T21:16:51.010000"],["2024-07-25T21:16:52.010000"],["2024-07-25T21:16:53.010000"],["2024-07-25T21:16:54.010000"],["2024-07-25T21:16:55.010000"],["2024-07-25T21:16:56.010000"],["2024-07-25T21:16:57.010000"],["2024-07-25T21:16:58.010000"],["2024-07-25T21:16:59.010000"],["2024-07-25T21:17:00.010000"],["2024-07-25T21:17:01.010000"],["2024-07-25T21:17:02.010000"],["2024-07-25T21:17:03.010000"],["2024-07-25T21:17:04.010000"],["2024-07-25T21:17:05.010000"],["2024-07-25T21:17:06.010000"],["2024-07-25T21:17:07.010000"],["2024-07-25T21:17:08.010000"],["2024-07-25T21:17:09.010000"],["2024-07-25T21:17:10.010000"],["2024-07-25T21:17:11.010000"],["2024-07-25T21:17:12.010000"],["2024-07-25T21:17:13.010000"],["2024-07-25T21:17:14.010000"],["2024-07-25T21:17:15.010000"],["2024-07-25T21:17:16.010000"],["2024-07-25T21:17:17.010000"],["2024-07-25T21:17:18.010000"],["2024-07-25T21:17:19.010000"],["2024-07-25T21:17:20.010000"],["2024-07-25T21:17:21.010000"],["2024-07-25T21:17:22.010000"],["2024-07-25T21:17:23.010000"],["2024-07-25T21:17:24.010000"],["2024-07-25T21:17:25.010000"],["2024-07-25T21:17:26.010000"],["2024-07-25T21:17:27.010000"],["2024-07-25T21:17:28.010000"],["2024-07-25T21:17:29.010000"],["2024-07-25T21:17:30.010000"],["2024-07-25T21:17:31.010000"],["2024-07-25T21:17:32.010000"],["2024-07-25T21:17:33.010000"],["2024-07-25T21:17:34.010000"],["2024-07-25T21:17:35.010000"],["2024-07-25T21:17:36.010000"],["2024-07-25T21:17:37.010000"],["2024-07-25T21:17:38.010000"],["2024-07-25T21:17:39.010000"],["2024-07-25T21:17:40.010000"],["2024-07-25T21:17:41.010000"],["2024-07-25T21:17:42.010000"],["2024-07-25T21:17:43.010000"],["2024-07-25T21:17:44.010000"],["2024-07-25T21:17:45.010000"],["2024-07-25T21:17:46.010000"],["2024-07-25T21:17:47.010000"],["2024-07-25T21:17:48.010000"],["2024-07-25T21:17:49.010000"],["2024-07-25T21:17:50.010000"],["2024-07-25T21:17:51.010000"],["2024-07-25T21:17:52.010000"],["2024-07-25T21:17:53.010000"],["2024-07-25T21:17:54.010000"],["2024-07-25T21:17:55.010000"],["2024-07-25T21:17:56.010000"],["2024-07-25T21:17:57.010000"],["2024-07-25T21:17:58.010000"],["2024-07-25T21:17:59.010000"],["2024-07-25T21:18:00.010000"],["2024-07-25T21:18:01.010000"],["2024-07-25T21:18:02.010000"],["2024-07-25T21:18:03.010000"],["2024-07-25T21:18:04.010000"],["2024-07-25T21:18:05.010000"],["2024-07-25T21:18:06.010000"],["2024-07-25T21:18:07.010000"],["2024-07-25T21:18:08.010000"],["2024-07-25T21:18:09.010000"],["2024-07-25T21:18:10.010000"],["2024-07-25T21:18:11.010000"],["2024-07-25T21:18:12.010000"],["2024-07-25T21:18:13.010000"],["2024-07-25T21:18:14.010000"],["2024-07-25T21:18:15.010000"],["2024-07-25T21:18:16.010000"],["2024-07-25T21:18:17.010000"],["2024-07-25T21:18:18.010000"],["2024-07-25T21:18:19.010000"],["2024-07-25T21:18:20.010000"],["2024-07-25T21:18:21.010000"],["2024-07-25T21:18:22.010000"],["2024-07-25T21:18:23.010000"],["2024-07-25T21:18:24.010000"],["2024-07-25T21:18:25.010000"],["2024-07-25T21:18:26.010000"],["2024-07-25T21:18:27.010000"],["2024-07-25T21:18:28.010000"],["2024-07-25T21:18:29.010000"],["2024-07-25T21:18:30.010000"],["2024-07-25T21:18:31.010000"],["2024-07-25T21:18:32.010000"],["2024-07-25T21:18:33.010000"],["2024-07-25T21:18:34.010000"],["2024-07-25T21:18:35.010000"],["2024-07-25T21:18:36.010000"],["2024-07-25T21:18:37.010000"],["2024-07-25T21:18:38.010000"],["2024-07-25T21:18:39.010000"],["2024-07-25T21:18:40.010000"],["2024-07-25T21:18:41.010000"],["2024-07-25T21:18:42.010000"],["2024-07-25T21:18:43.010000"],["2024-07-25T21:18:44.010000"],["2024-07-25T21:18:45.010000"],["2024-07-25T21:18:46.010000"],["2024-07-25T21:18:47.010000"],["2024-07-25T21:18:48.010000"],["2024-07-25T21:18:49.010000"],["2024-07-25T21:18:50.010000"],["2024-07-25T21:18:51.010000"],["2024-07-25T21:18:52.010000"],["2024-07-25T21:18:53.010000"],["2024-07-25T21:18:54.010000"],["2024-07-25T21:18:55.010000"],["2024-07-25T21:18:56.010000"],["2024-07-25T21:18:57.010000"],["2024-07-25T21:18:58.010000"],["2024-07-25T21:18:59.010000"],["2024-07-25T21:19:00.010000"],["2024-07-25T21:19:01.010000"],["2024-07-25T21:19:02.010000"],["2024-07-25T21:19:03.010000"],["2024-07-25T21:19:04.010000"],["2024-07-25T21:19:05.010000"],["2024-07-25T21:19:06.010000"],["2024-07-25T21:19:07.010000"],["2024-07-25T21:19:08.010000"],["2024-07-25T21:19:09.010000"],["2024-07-25T21:19:10.010000"],["2024-07-25T21:19:11.010000"],["2024-07-25T21:19:12.010000"],["2024-07-25T21:19:13.010000"],["2024-07-25T21:19:14.010000"],["2024-07-25T21:19:15.010000"],["2024-07-25T21:19:16.010000"],["2024-07-25T21:19:17.010000"],["2024-07-25T21:19:18.010000"],["2024-07-25T21:19:19.010000"],["2024-07-25T21:19:20.010000"],["2024-07-25T21:19:21.010000"],["2024-07-25T21:19:22.010000"],["2024-07-25T21:19:23.010000"],["2024-07-25T21:19:24.010000"],["2024-07-25T21:19:25.010000"],["2024-07-25T21:19:26.010000"],["2024-07-25T21:19:27.010000"],["2024-07-25T21:19:28.010000"],["2024-07-25T21:19:29.010000"],["2024-07-25T21:19:30.010000"],["2024-07-25T21:19:31.010000"],["2024-07-25T21:19:32.010000"],["2024-07-25T21:19:33.010000"],["2024-07-25T21:19:34.010000"],["2024-07-25T21:19:35.010000"],["2024-07-25T21:19:36.010000"],["2024-07-25T21:19:37.010000"],["2024-07-25T21:19:38.010000"],["2024-07-25T21:19:39.010000"],["2024-07-25T21:19:40.010000"],["2024-07-25T21:19:41.010000"],["2024-07-25T21:19:42.010000"],["2024-07-25T21:19:43.010000"],["2024-07-25T21:19:44.010000"],["2024-07-25T21:19:45.010000"],["2024-07-25T21:19:46.010000"],["2024-07-25T21:19:47.010000"],["2024-07-25T21:19:48.010000"],["2024-07-25T21:19:49.010000"],["2024-07-25T21:19:50.010000"],["2024-07-25T21:19:51.010000"],["2024-07-25T21:19:52.010000"],["2024-07-25T21:19:53.010000"],["2024-07-25T21:19:54.010000"],["2024-07-25T21:19:55.010000"],["2024-07-25T21:19:56.010000"],["2024-07-25T21:19:57.010000"],["2024-07-25T21:19:58.010000"],["2024-07-25T21:19:59.010000"],["2024-07-25T21:20:00.010000"],["2024-07-25T21:20:01.010000"],["2024-07-25T21:20:02.010000"],["2024-07-25T21:20:03.010000"],["2024-07-25T21:20:04.010000"],["2024-07-25T21:20:05.010000"],["2024-07-25T21:20:06.010000"],["2024-07-25T21:20:07.010000"],["2024-07-25T21:20:08.010000"],["2024-07-25T21:20:09.010000"],["2024-07-25T21:20:10.010000"],["2024-07-25T21:20:11.010000"],["2024-07-25T21:20:12.010000"],["2024-07-25T21:20:13.010000"],["2024-07-25T21:20:14.010000"],["2024-07-25T21:20:15.010000"],["2024-07-25T21:20:16.010000"],["2024-07-25T21:20:17.010000"],["2024-07-25T21:20:18.010000"],["2024-07-25T21:20:19.010000"],["2024-07-25T21:20:20.010000"],["2024-07-25T21:20:21.010000"],["2024-07-25T21:20:22.010000"],["2024-07-25T21:20:23.010000"],["2024-07-25T21:20:24.010000"],["2024-07-25T21:20:25.010000"],["2024-07-25T21:20:26.010000"],["2024-07-25T21:20:27.010000"],["2024-07-25T21:20:28.010000"],["2024-07-25T21:20:29.010000"],["2024-07-25T21:20:30.010000"],["2024-07-25T21:20:31.010000"],["2024-07-25T21:20:32.010000"],["2024-07-25T21:20:33.010000"],["2024-07-25T21:20:34.010000"],["2024-07-25T21:20:35.010000"],["2024-07-25T21:20:36.010000"],["2024-07-25T21:20:37.010000"],["2024-07-25T21:20:38.010000"],["2024-07-25T21:20:39.010000"],["2024-07-25T21:20:40.010000"],["2024-07-25T21:20:41.010000"],["2024-07-25T21:20:42.010000"],["2024-07-25T21:20:43.010000"],["2024-07-25T21:20:44.010000"],["2024-07-25T21:20:45.010000"],["2024-07-25T21:20:46.010000"],["2024-07-25T21:20:47.010000"],["2024-07-25T21:20:48.010000"],["2024-07-25T21:20:49.010000"],["2024-07-25T21:20:50.010000"],["2024-07-25T21:20:51.010000"],["2024-07-25T21:20:52.010000"],["2024-07-25T21:20:53.010000"],["2024-07-25T21:20:54.010000"],["2024-07-25T21:20:55.010000"],["2024-07-25T21:20:56.010000"],["2024-07-25T21:20:57.010000"],["2024-07-25T21:20:58.010000"],["2024-07-25T21:20:59.010000"],["2024-07-25T21:21:00.010000"],["2024-07-25T21:21:01.010000"],["2024-07-25T21:21:02.010000"],["2024-07-25T21:21:03.010000"],["2024-07-25T21:21:04.010000"],["2024-07-25T21:21:05.010000"],["2024-07-25T21:21:06.010000"],["2024-07-25T21:21:07.010000"],["2024-07-25T21:21:08.010000"],["2024-07-25T21:21:09.010000"],["2024-07-25T21:21:10.010000"],["2024-07-25T21:21:11.010000"],["2024-07-25T21:21:12.010000"],["2024-07-25T21:21:13.010000"],["2024-07-25T21:21:14.010000"],["2024-07-25T21:21:15.010000"],["2024-07-25T21:21:16.010000"],["2024-07-25T21:21:17.010000"],["2024-07-25T21:21:18.010000"],["2024-07-25T21:21:19.010000"],["2024-07-25T21:21:20.010000"],["2024-07-25T21:21:21.010000"],["2024-07-25T21:21:22.010000"],["2024-07-25T21:21:23.010000"],["2024-07-25T21:21:24.010000"],["2024-07-25T21:21:25.010000"],["2024-07-25T21:21:26.010000"],["2024-07-25T21:21:27.010000"],["2024-07-25T21:21:28.010000"],["2024-07-25T21:21:29.010000"],["2024-07-25T21:21:30.010000"],["2024-07-25T21:21:31.010000"],["2024-07-25T21:21:32.010000"],["2024-07-25T21:21:33.010000"],["2024-07-25T21:21:34.010000"],["2024-07-25T21:21:35.010000"],["2024-07-25T21:21:36.010000"],["2024-07-25T21:21:37.010000"],["2024-07-25T21:21:38.010000"],["2024-07-25T21:21:39.010000"],["2024-07-25T21:21:40.010000"],["2024-07-25T21:21:41.010000"],["2024-07-25T21:21:42.010000"],["2024-07-25T21:21:43.010000"],["2024-07-25T21:21:44.010000"],["2024-07-25T21:21:45.010000"],["2024-07-25T21:21:46.010000"],["2024-07-25T21:21:47.010000"],["2024-07-25T21:21:48.010000"],["2024-07-25T21:21:49.010000"],["2024-07-25T21:21:50.010000"],["2024-07-25T21:21:51.010000"],["2024-07-25T21:21:52.010000"],["2024-07-25T21:21:53.010000"],["2024-07-25T21:21:54.010000"],["2024-07-25T21:21:55.010000"],["2024-07-25T21:21:56.010000"],["2024-07-25T21:21:57.010000"],["2024-07-25T21:21:58.010000"],["2024-07-25T21:21:59.010000"],["2024-07-25T21:22:00.010000"],["2024-07-25T21:22:01.010000"],["2024-07-25T21:22:02.010000"],["2024-07-25T21:22:03.010000"],["2024-07-25T21:22:04.010000"],["2024-07-25T21:22:05.010000"],["2024-07-25T21:22:06.010000"],["2024-07-25T21:22:07.010000"],["2024-07-25T21:22:08.010000"],["2024-07-25T21:22:09.010000"],["2024-07-25T21:22:10.010000"],["2024-07-25T21:22:11.010000"],["2024-07-25T21:22:12.010000"],["2024-07-25T21:22:13.010000"],["2024-07-25T21:22:14.010000"],["2024-07-25T21:22:15.010000"],["2024-07-25T21:22:16.010000"],["2024-07-25T21:22:17.010000"],["2024-07-25T21:22:18.010000"],["2024-07-25T21:22:19.010000"],["2024-07-25T21:22:20.010000"],["2024-07-25T21:22:21.010000"],["2024-07-25T21:22:22.010000"],["2024-07-25T21:22:23.010000"],["2024-07-25T21:22:24.010000"],["2024-07-25T21:22:25.010000"],["2024-07-25T21:22:26.010000"],["2024-07-25T21:22:27.010000"],["2024-07-25T21:22:28.010000"],["2024-07-25T21:22:29.010000"],["2024-07-25T21:22:30.010000"],["2024-07-25T21:22:31.010000"],["2024-07-25T21:22:32.010000"],["2024-07-25T21:22:33.010000"],["2024-07-25T21:22:34.010000"],["2024-07-25T21:22:35.010000"],["2024-07-25T21:22:36.010000"],["2024-07-25T21:22:37.010000"],["2024-07-25T21:22:38.010000"],["2024-07-25T21:22:39.010000"],["2024-07-25T21:22:40.010000"],["2024-07-25T21:22:41.010000"],["2024-07-25T21:22:42.010000"],["2024-07-25T21:22:43.010000"],["2024-07-25T21:22:44.010000"],["2024-07-25T21:22:45.010000"],["2024-07-25T21:22:46.010000"],["2024-07-25T21:22:47.010000"],["2024-07-25T21:22:48.010000"],["2024-07-25T21:22:49.010000"],["2024-07-25T21:22:50.010000"],["2024-07-25T21:22:51.010000"],["2024-07-25T21:22:52.010000"],["2024-07-25T21:22:53.010000"],["2024-07-25T21:22:54.010000"],["2024-07-25T21:22:55.010000"],["2024-07-25T21:22:56.010000"],["2024-07-25T21:22:57.010000"],["2024-07-25T21:22:58.010000"],["2024-07-25T21:22:59.010000"],["2024-07-25T21:23:00.010000"],["2024-07-25T21:23:01.010000"],["2024-07-25T21:23:02.010000"],["2024-07-25T21:23:03.010000"],["2024-07-25T21:23:04.010000"],["2024-07-25T21:23:05.010000"],["2024-07-25T21:23:06.010000"],["2024-07-25T21:23:07.010000"],["2024-07-25T21:23:08.010000"],["2024-07-25T21:23:09.010000"],["2024-07-25T21:23:10.010000"],["2024-07-25T21:23:11.010000"],["2024-07-25T21:23:12.010000"],["2024-07-25T21:23:13.010000"],["2024-07-25T21:23:14.010000"],["2024-07-25T21:23:15.010000"],["2024-07-25T21:23:16.010000"],["2024-07-25T21:23:17.010000"],["2024-07-25T21:23:18.010000"],["2024-07-25T21:23:19.010000"],["2024-07-25T21:23:20.010000"],["2024-07-25T21:23:21.010000"],["2024-07-25T21:23:22.010000"],["2024-07-25T21:23:23.010000"],["2024-07-25T21:23:24.010000"],["2024-07-25T21:23:25.010000"],["2024-07-25T21:23:26.010000"],["2024-07-25T21:23:27.010000"],["2024-07-25T21:23:28.010000"],["2024-07-25T21:23:29.010000"],["2024-07-25T21:23:30.010000"],["2024-07-25T21:23:31.010000"],["2024-07-25T21:23:32.010000"],["2024-07-25T21:23:33.010000"],["2024-07-25T21:23:34.010000"],["2024-07-25T21:23:35.010000"],["2024-07-25T21:23:36.010000"],["2024-07-25T21:23:37.010000"],["2024-07-25T21:23:38.010000"],["2024-07-25T21:23:39.010000"],["2024-07-25T21:23:40.010000"],["2024-07-25T21:23:41.010000"],["2024-07-25T21:23:42.010000"],["2024-07-25T21:23:43.010000"],["2024-07-25T21:23:44.010000"],["2024-07-25T21:23:45.010000"],["2024-07-25T21:23:46.010000"],["2024-07-25T21:23:47.010000"],["2024-07-25T21:23:48.010000"],["2024-07-25T21:23:49.010000"],["2024-07-25T21:23:50.010000"],["2024-07-25T21:23:51.010000"],["2024-07-25T21:23:52.010000"],["2024-07-25T21:23:53.010000"],["2024-07-25T21:23:54.010000"],["2024-07-25T21:23:55.010000"],["2024-07-25T21:23:56.010000"],["2024-07-25T21:23:57.010000"],["2024-07-25T21:23:58.010000"],["2024-07-25T21:23:59.010000"],["2024-07-25T21:24:00.010000"],["2024-07-25T21:24:01.010000"],["2024-07-25T21:24:02.010000"],["2024-07-25T21:24:03.010000"],["2024-07-25T21:24:04.010000"],["2024-07-25T21:24:05.010000"],["2024-07-25T21:24:06.010000"],["2024-07-25T21:24:07.010000"],["2024-07-25T21:24:08.010000"],["2024-07-25T21:24:09.010000"],["2024-07-25T21:24:10.010000"],["2024-07-25T21:24:11.010000"],["2024-07-25T21:24:12.010000"],["2024-07-25T21:24:13.010000"],["2024-07-25T21:24:14.010000"],["2024-07-25T21:24:15.010000"],["2024-07-25T21:24:16.010000"],["2024-07-25T21:24:17.010000"],["2024-07-25T21:24:18.010000"],["2024-07-25T21:24:19.010000"],["2024-07-25T21:24:20.010000"],["2024-07-25T21:24:21.010000"],["2024-07-25T21:24:22.010000"],["2024-07-25T21:24:23.010000"],["2024-07-25T21:24:24.010000"],["2024-07-25T21:24:25.010000"],["2024-07-25T21:24:26.010000"],["2024-07-25T21:24:27.010000"],["2024-07-25T21:24:28.010000"],["2024-07-25T21:24:29.010000"],["2024-07-25T21:24:30.010000"],["2024-07-25T21:24:31.010000"],["2024-07-25T21:24:32.010000"],["2024-07-25T21:24:33.010000"],["2024-07-25T21:24:34.010000"],["2024-07-25T21:24:35.010000"],["2024-07-25T21:24:36.010000"],["2024-07-25T21:24:37.010000"],["2024-07-25T21:24:38.010000"],["2024-07-25T21:24:39.010000"],["2024-07-25T21:24:40.010000"],["2024-07-25T21:24:41.010000"],["2024-07-25T21:24:42.010000"],["2024-07-25T21:24:43.010000"],["2024-07-25T21:24:44.010000"],["2024-07-25T21:24:45.010000"],["2024-07-25T21:24:46.010000"],["2024-07-25T21:24:47.010000"],["2024-07-25T21:24:48.010000"],["2024-07-25T21:24:49.010000"],["2024-07-25T21:24:50.010000"],["2024-07-25T21:24:51.010000"],["2024-07-25T21:24:52.010000"],["2024-07-25T21:24:53.010000"],["2024-07-25T21:24:54.010000"],["2024-07-25T21:24:55.010000"],["2024-07-25T21:24:56.010000"],["2024-07-25T21:24:57.010000"],["2024-07-25T21:24:58.010000"],["2024-07-25T21:24:59.010000"],["2024-07-25T21:25:00.010000"],["2024-07-25T21:25:01.010000"],["2024-07-25T21:25:02.010000"],["2024-07-25T21:25:03.010000"],["2024-07-25T21:25:04.010000"],["2024-07-25T21:25:05.010000"],["2024-07-25T21:25:06.010000"],["2024-07-25T21:25:07.010000"],["2024-07-25T21:25:08.010000"],["2024-07-25T21:25:09.010000"],["2024-07-25T21:25:10.010000"],["2024-07-25T21:25:11.010000"],["2024-07-25T21:25:12.010000"],["2024-07-25T21:25:13.010000"],["2024-07-25T21:25:14.010000"],["2024-07-25T21:25:15.010000"],["2024-07-25T21:25:16.010000"],["2024-07-25T21:25:17.010000"],["2024-07-25T21:25:18.010000"],["2024-07-25T21:25:19.010000"],["2024-07-25T21:25:20.010000"],["2024-07-25T21:25:21.010000"],["2024-07-25T21:25:22.010000"],["2024-07-25T21:25:23.010000"],["2024-07-25T21:25:24.010000"],["2024-07-25T21:25:25.010000"],["2024-07-25T21:25:26.010000"],["2024-07-25T21:25:27.010000"],["2024-07-25T21:25:28.010000"],["2024-07-25T21:25:29.010000"],["2024-07-25T21:25:30.010000"],["2024-07-25T21:25:31.010000"],["2024-07-25T21:25:32.010000"],["2024-07-25T21:25:33.010000"],["2024-07-25T21:25:34.010000"],["2024-07-25T21:25:35.010000"],["2024-07-25T21:25:36.010000"],["2024-07-25T21:25:37.010000"],["2024-07-25T21:25:38.010000"],["2024-07-25T21:25:39.010000"],["2024-07-25T21:25:40.010000"],["2024-07-25T21:25:41.010000"],["2024-07-25T21:25:42.010000"],["2024-07-25T21:25:43.010000"],["2024-07-25T21:25:44.010000"],["2024-07-25T21:25:45.010000"],["2024-07-25T21:25:46.010000"],["2024-07-25T21:25:47.010000"],["2024-07-25T21:25:48.010000"],["2024-07-25T21:25:49.010000"],["2024-07-25T21:25:50.010000"],["2024-07-25T21:25:51.010000"],["2024-07-25T21:25:52.010000"],["2024-07-25T21:25:53.010000"],["2024-07-25T21:25:54.010000"],["2024-07-25T21:25:55.010000"],["2024-07-25T21:25:56.010000"],["2024-07-25T21:25:57.010000"],["2024-07-25T21:25:58.010000"],["2024-07-25T21:25:59.010000"],["2024-07-25T21:26:00.010000"],["2024-07-25T21:26:01.010000"],["2024-07-25T21:26:02.010000"],["2024-07-25T21:26:03.010000"],["2024-07-25T21:26:04.010000"],["2024-07-25T21:26:05.010000"],["2024-07-25T21:26:06.010000"],["2024-07-25T21:26:07.010000"],["2024-07-25T21:26:08.010000"],["2024-07-25T21:26:09.010000"],["2024-07-25T21:26:10.010000"],["2024-07-25T21:26:11.010000"],["2024-07-25T21:26:12.010000"],["2024-07-25T21:26:13.010000"],["2024-07-25T21:26:14.010000"],["2024-07-25T21:26:15.010000"],["2024-07-25T21:26:16.010000"],["2024-07-25T21:26:17.010000"],["2024-07-25T21:26:18.010000"],["2024-07-25T21:26:19.010000"],["2024-07-25T21:26:20.010000"],["2024-07-25T21:26:21.010000"],["2024-07-25T21:26:22.010000"],["2024-07-25T21:26:23.010000"],["2024-07-25T21:26:24.010000"],["2024-07-25T21:26:25.010000"],["2024-07-25T21:26:26.010000"],["2024-07-25T21:26:27.010000"],["2024-07-25T21:26:28.010000"],["2024-07-25T21:26:29.010000"],["2024-07-25T21:26:30.010000"],["2024-07-25T21:26:31.010000"],["2024-07-25T21:26:32.010000"],["2024-07-25T21:26:33.010000"],["2024-07-25T21:26:34.010000"],["2024-07-25T21:26:35.010000"],["2024-07-25T21:26:36.010000"],["2024-07-25T21:26:37.010000"],["2024-07-25T21:26:38.010000"],["2024-07-25T21:26:39.010000"],["2024-07-25T21:26:40.010000"],["2024-07-25T21:26:41.010000"],["2024-07-25T21:26:42.010000"],["2024-07-25T21:26:43.010000"],["2024-07-25T21:26:44.010000"],["2024-07-25T21:26:45.010000"],["2024-07-25T21:26:46.010000"],["2024-07-25T21:26:47.010000"],["2024-07-25T21:26:48.010000"],["2024-07-25T21:26:49.010000"],["2024-07-25T21:26:50.010000"],["2024-07-25T21:26:51.010000"],["2024-07-25T21:26:52.010000"],["2024-07-25T21:26:53.010000"],["2024-07-25T21:26:54.010000"],["2024-07-25T21:26:55.010000"],["2024-07-25T21:26:56.010000"],["2024-07-25T21:26:57.010000"],["2024-07-25T21:26:58.010000"],["2024-07-25T21:26:59.010000"],["2024-07-25T21:27:00.010000"],["2024-07-25T21:27:01.010000"],["2024-07-25T21:27:02.010000"],["2024-07-25T21:27:03.010000"],["2024-07-25T21:27:04.010000"],["2024-07-25T21:27:05.010000"],["2024-07-25T21:27:06.010000"],["2024-07-25T21:27:07.010000"],["2024-07-25T21:27:08.010000"],["2024-07-25T21:27:09.010000"],["2024-07-25T21:27:10.010000"],["2024-07-25T21:27:11.010000"],["2024-07-25T21:27:12.010000"],["2024-07-25T21:27:13.010000"],["2024-07-25T21:27:14.010000"],["2024-07-25T21:27:15.010000"],["2024-07-25T21:27:16.010000"],["2024-07-25T21:27:17.010000"],["2024-07-25T21:27:18.010000"],["2024-07-25T21:27:19.010000"],["2024-07-25T21:27:20.010000"],["2024-07-25T21:27:21.010000"],["2024-07-25T21:27:22.010000"],["2024-07-25T21:27:23.010000"],["2024-07-25T21:27:24.010000"],["2024-07-25T21:27:25.010000"],["2024-07-25T21:27:26.010000"],["2024-07-25T21:27:27.010000"],["2024-07-25T21:27:28.010000"],["2024-07-25T21:27:29.010000"],["2024-07-25T21:27:30.010000"],["2024-07-25T21:27:31.010000"],["2024-07-25T21:27:32.010000"],["2024-07-25T21:27:33.010000"],["2024-07-25T21:27:34.010000"],["2024-07-25T21:27:35.010000"],["2024-07-25T21:27:36.010000"],["2024-07-25T21:27:37.010000"],["2024-07-25T21:27:38.010000"],["2024-07-25T21:27:39.010000"],["2024-07-25T21:27:40.010000"],["2024-07-25T21:27:41.010000"],["2024-07-25T21:27:42.010000"],["2024-07-25T21:27:43.010000"],["2024-07-25T21:27:44.010000"],["2024-07-25T21:27:45.010000"],["2024-07-25T21:27:46.010000"],["2024-07-25T21:27:47.010000"],["2024-07-25T21:27:48.010000"],["2024-07-25T21:27:49.010000"],["2024-07-25T21:27:50.010000"],["2024-07-25T21:27:51.010000"],["2024-07-25T21:27:52.010000"],["2024-07-25T21:27:53.010000"],["2024-07-25T21:27:54.010000"],["2024-07-25T21:27:55.010000"],["2024-07-25T21:27:56.010000"],["2024-07-25T21:27:57.010000"],["2024-07-25T21:27:58.010000"],["2024-07-25T21:27:59.010000"],["2024-07-25T21:28:00.010000"],["2024-07-25T21:28:01.010000"],["2024-07-25T21:28:02.010000"],["2024-07-25T21:28:03.010000"],["2024-07-25T21:28:04.010000"],["2024-07-25T21:28:05.010000"],["2024-07-25T21:28:06.010000"],["2024-07-25T21:28:07.010000"],["2024-07-25T21:28:08.010000"],["2024-07-25T21:28:09.010000"],["2024-07-25T21:28:10.010000"],["2024-07-25T21:28:11.010000"],["2024-07-25T21:28:12.010000"],["2024-07-25T21:28:13.010000"],["2024-07-25T21:28:14.010000"],["2024-07-25T21:28:15.010000"],["2024-07-25T21:28:16.010000"],["2024-07-25T21:28:17.010000"],["2024-07-25T21:28:18.010000"],["2024-07-25T21:28:19.010000"],["2024-07-25T21:28:20.010000"],["2024-07-25T21:28:21.010000"],["2024-07-25T21:28:22.010000"],["2024-07-25T21:28:23.010000"],["2024-07-25T21:28:24.010000"],["2024-07-25T21:28:25.010000"],["2024-07-25T21:28:26.010000"],["2024-07-25T21:28:27.010000"],["2024-07-25T21:28:28.010000"],["2024-07-25T21:28:29.010000"],["2024-07-25T21:28:30.010000"],["2024-07-25T21:28:31.010000"],["2024-07-25T21:28:32.010000"],["2024-07-25T21:28:33.010000"],["2024-07-25T21:28:34.010000"],["2024-07-25T21:28:35.010000"],["2024-07-25T21:28:36.010000"],["2024-07-25T21:28:37.010000"],["2024-07-25T21:28:38.010000"],["2024-07-25T21:28:39.010000"],["2024-07-25T21:28:40.010000"],["2024-07-25T21:28:41.010000"],["2024-07-25T21:28:42.010000"],["2024-07-25T21:28:43.010000"],["2024-07-25T21:28:44.010000"],["2024-07-25T21:28:45.010000"],["2024-07-25T21:28:46.010000"],["2024-07-25T21:28:47.010000"],["2024-07-25T21:28:48.010000"],["2024-07-25T21:28:49.010000"],["2024-07-25T21:28:50.010000"],["2024-07-25T21:28:51.010000"],["2024-07-25T21:28:52.010000"],["2024-07-25T21:28:53.010000"],["2024-07-25T21:28:54.010000"],["2024-07-25T21:28:55.010000"],["2024-07-25T21:28:56.010000"],["2024-07-25T21:28:57.010000"],["2024-07-25T21:28:58.010000"],["2024-07-25T21:28:59.010000"],["2024-07-25T21:29:00.010000"],["2024-07-25T21:29:01.010000"],["2024-07-25T21:29:02.010000"],["2024-07-25T21:29:03.010000"],["2024-07-25T21:29:04.010000"],["2024-07-25T21:29:05.010000"],["2024-07-25T21:29:06.010000"],["2024-07-25T21:29:07.010000"],["2024-07-25T21:29:08.010000"],["2024-07-25T21:29:09.010000"],["2024-07-25T21:29:10.010000"],["2024-07-25T21:29:11.010000"],["2024-07-25T21:29:12.010000"],["2024-07-25T21:29:13.010000"],["2024-07-25T21:29:14.010000"],["2024-07-25T21:29:15.010000"],["2024-07-25T21:29:16.010000"],["2024-07-25T21:29:17.010000"],["2024-07-25T21:29:18.010000"],["2024-07-25T21:29:19.010000"],["2024-07-25T21:29:20.010000"],["2024-07-25T21:29:21.010000"],["2024-07-25T21:29:22.010000"],["2024-07-25T21:29:23.010000"],["2024-07-25T21:29:24.010000"],["2024-07-25T21:29:25.010000"],["2024-07-25T21:29:26.010000"],["2024-07-25T21:29:27.010000"],["2024-07-25T21:29:28.010000"],["2024-07-25T21:29:29.010000"],["2024-07-25T21:29:30.010000"],["2024-07-25T21:29:31.010000"],["2024-07-25T21:29:32.010000"],["2024-07-25T21:29:33.010000"],["2024-07-25T21:29:34.010000"],["2024-07-25T21:29:35.010000"],["2024-07-25T21:29:36.010000"],["2024-07-25T21:29:37.010000"],["2024-07-25T21:29:38.010000"],["2024-07-25T21:29:39.010000"],["2024-07-25T21:29:40.010000"],["2024-07-25T21:29:41.010000"],["2024-07-25T21:29:42.010000"],["2024-07-25T21:29:43.010000"],["2024-07-25T21:29:44.010000"],["2024-07-25T21:29:45.010000"],["2024-07-25T21:29:46.010000"],["2024-07-25T21:29:47.010000"],["2024-07-25T21:29:48.010000"],["2024-07-25T21:29:49.010000"],["2024-07-25T21:29:50.010000"],["2024-07-25T21:29:51.010000"],["2024-07-25T21:29:52.010000"],["2024-07-25T21:29:53.010000"],["2024-07-25T21:29:54.010000"],["2024-07-25T21:29:55.010000"],["2024-07-25T21:29:56.010000"],["2024-07-25T21:29:57.010000"],["2024-07-25T21:29:58.010000"],["2024-07-25T21:29:59.010000"],["2024-07-25T21:30:00.010000"],["2024-07-25T21:30:01.010000"],["2024-07-25T21:30:02.010000"],["2024-07-25T21:30:03.010000"],["2024-07-25T21:30:04.010000"],["2024-07-25T21:30:05.010000"],["2024-07-25T21:30:06.010000"],["2024-07-25T21:30:07.010000"],["2024-07-25T21:30:08.010000"],["2024-07-25T21:30:09.010000"],["2024-07-25T21:30:10.010000"],["2024-07-25T21:30:11.010000"],["2024-07-25T21:30:12.010000"],["2024-07-25T21:30:13.010000"],["2024-07-25T21:30:14.010000"],["2024-07-25T21:30:15.010000"],["2024-07-25T21:30:16.010000"],["2024-07-25T21:30:17.010000"],["2024-07-25T21:30:18.010000"],["2024-07-25T21:30:19.010000"],["2024-07-25T21:30:20.010000"],["2024-07-25T21:30:21.010000"],["2024-07-25T21:30:22.010000"],["2024-07-25T21:30:23.010000"],["2024-07-25T21:30:24.010000"],["2024-07-25T21:30:25.010000"],["2024-07-25T21:30:26.010000"],["2024-07-25T21:30:27.010000"],["2024-07-25T21:30:28.010000"],["2024-07-25T21:30:29.010000"],["2024-07-25T21:30:30.010000"],["2024-07-25T21:30:31.010000"],["2024-07-25T21:30:32.010000"],["2024-07-25T21:30:33.010000"],["2024-07-25T21:30:34.010000"],["2024-07-25T21:30:35.010000"],["2024-07-25T21:30:36.010000"],["2024-07-25T21:30:37.010000"],["2024-07-25T21:30:38.010000"],["2024-07-25T21:30:39.010000"],["2024-07-25T21:30:40.010000"],["2024-07-25T21:30:41.010000"],["2024-07-25T21:30:42.010000"],["2024-07-25T21:30:43.010000"],["2024-07-25T21:30:44.010000"],["2024-07-25T21:30:45.010000"],["2024-07-25T21:30:46.010000"],["2024-07-25T21:30:47.010000"],["2024-07-25T21:30:48.010000"],["2024-07-25T21:30:49.010000"],["2024-07-25T21:30:50.010000"],["2024-07-25T21:30:51.010000"],["2024-07-25T21:30:52.010000"],["2024-07-25T21:30:53.010000"],["2024-07-25T21:30:54.010000"],["2024-07-25T21:30:55.010000"],["2024-07-25T21:30:56.010000"],["2024-07-25T21:30:57.010000"],["2024-07-25T21:30:58.010000"],["2024-07-25T21:30:59.010000"],["2024-07-25T21:31:00.010000"],["2024-07-25T21:31:01.010000"],["2024-07-25T21:31:02.010000"],["2024-07-25T21:31:03.010000"],["2024-07-25T21:31:04.010000"],["2024-07-25T21:31:05.010000"],["2024-07-25T21:31:06.010000"],["2024-07-25T21:31:07.010000"],["2024-07-25T21:31:08.010000"],["2024-07-25T21:31:09.010000"],["2024-07-25T21:31:10.010000"],["2024-07-25T21:31:11.010000"],["2024-07-25T21:31:12.010000"],["2024-07-25T21:31:13.010000"],["2024-07-25T21:31:14.010000"],["2024-07-25T21:31:15.010000"],["2024-07-25T21:31:16.010000"],["2024-07-25T21:31:17.010000"],["2024-07-25T21:31:18.010000"],["2024-07-25T21:31:19.010000"],["2024-07-25T21:31:20.010000"],["2024-07-25T21:31:21.010000"],["2024-07-25T21:31:22.010000"],["2024-07-25T21:31:23.010000"],["2024-07-25T21:31:24.010000"],["2024-07-25T21:31:25.010000"],["2024-07-25T21:31:26.010000"],["2024-07-25T21:31:27.010000"],["2024-07-25T21:31:28.010000"],["2024-07-25T21:31:29.010000"],["2024-07-25T21:31:30.010000"],["2024-07-25T21:31:31.010000"],["2024-07-25T21:31:32.010000"],["2024-07-25T21:31:33.010000"],["2024-07-25T21:31:34.010000"],["2024-07-25T21:31:35.010000"],["2024-07-25T21:31:36.010000"],["2024-07-25T21:31:37.010000"],["2024-07-25T21:31:38.010000"],["2024-07-25T21:31:39.010000"],["2024-07-25T21:31:40.010000"],["2024-07-25T21:31:41.010000"],["2024-07-25T21:31:42.010000"],["2024-07-25T21:31:43.010000"],["2024-07-25T21:31:44.010000"],["2024-07-25T21:31:45.010000"],["2024-07-25T21:31:46.010000"],["2024-07-25T21:31:47.010000"],["2024-07-25T21:31:48.010000"],["2024-07-25T21:31:49.010000"],["2024-07-25T21:31:50.010000"],["2024-07-25T21:31:51.010000"],["2024-07-25T21:31:52.010000"],["2024-07-25T21:31:53.010000"],["2024-07-25T21:31:54.010000"],["2024-07-25T21:31:55.010000"],["2024-07-25T21:31:56.010000"],["2024-07-25T21:31:57.010000"],["2024-07-25T21:31:58.010000"],["2024-07-25T21:31:59.010000"],["2024-07-25T21:32:00.010000"],["2024-07-25T21:32:01.010000"],["2024-07-25T21:32:02.010000"],["2024-07-25T21:32:03.010000"],["2024-07-25T21:32:04.010000"],["2024-07-25T21:32:05.010000"],["2024-07-25T21:32:06.010000"],["2024-07-25T21:32:07.010000"],["2024-07-25T21:32:08.010000"],["2024-07-25T21:32:09.010000"],["2024-07-25T21:32:10.010000"],["2024-07-25T21:32:11.010000"],["2024-07-25T21:32:12.010000"],["2024-07-25T21:32:13.010000"],["2024-07-25T21:32:14.010000"],["2024-07-25T21:32:15.010000"],["2024-07-25T21:32:16.010000"],["2024-07-25T21:32:17.010000"],["2024-07-25T21:32:18.010000"],["2024-07-25T21:32:19.010000"],["2024-07-25T21:32:20.010000"],["2024-07-25T21:32:21.010000"],["2024-07-25T21:32:22.010000"],["2024-07-25T21:32:23.010000"],["2024-07-25T21:32:24.010000"],["2024-07-25T21:32:25.010000"],["2024-07-25T21:32:26.010000"],["2024-07-25T21:32:27.010000"],["2024-07-25T21:32:28.010000"],["2024-07-25T21:32:29.010000"],["2024-07-25T21:32:30.010000"],["2024-07-25T21:32:31.010000"],["2024-07-25T21:32:32.010000"],["2024-07-25T21:32:33.010000"],["2024-07-25T21:32:34.010000"],["2024-07-25T21:32:35.010000"],["2024-07-25T21:32:36.010000"],["2024-07-25T21:32:37.010000"],["2024-07-25T21:32:38.010000"],["2024-07-25T21:32:39.010000"],["2024-07-25T21:32:40.010000"],["2024-07-25T21:32:41.010000"],["2024-07-25T21:32:42.010000"],["2024-07-25T21:32:43.010000"],["2024-07-25T21:32:44.010000"],["2024-07-25T21:32:45.010000"],["2024-07-25T21:32:46.010000"],["2024-07-25T21:32:47.010000"],["2024-07-25T21:32:48.010000"],["2024-07-25T21:32:49.010000"],["2024-07-25T21:32:50.010000"],["2024-07-25T21:32:51.010000"],["2024-07-25T21:32:52.010000"],["2024-07-25T21:32:53.010000"],["2024-07-25T21:32:54.010000"],["2024-07-25T21:32:55.010000"],["2024-07-25T21:32:56.010000"],["2024-07-25T21:32:57.010000"],["2024-07-25T21:32:58.010000"],["2024-07-25T21:32:59.010000"],["2024-07-25T21:33:00.010000"],["2024-07-25T21:33:01.010000"],["2024-07-25T21:33:02.010000"],["2024-07-25T21:33:03.010000"],["2024-07-25T21:33:04.010000"],["2024-07-25T21:33:05.010000"],["2024-07-25T21:33:06.010000"],["2024-07-25T21:33:07.010000"],["2024-07-25T21:33:08.010000"],["2024-07-25T21:33:09.010000"],["2024-07-25T21:33:10.010000"],["2024-07-25T21:33:11.010000"],["2024-07-25T21:33:12.010000"],["2024-07-25T21:33:13.010000"],["2024-07-25T21:33:14.010000"],["2024-07-25T21:33:15.010000"],["2024-07-25T21:33:16.010000"],["2024-07-25T21:33:17.010000"],["2024-07-25T21:33:18.010000"],["2024-07-25T21:33:19.010000"],["2024-07-25T21:33:20.010000"],["2024-07-25T21:33:21.010000"],["2024-07-25T21:33:22.010000"],["2024-07-25T21:33:23.010000"],["2024-07-25T21:33:24.010000"],["2024-07-25T21:33:25.010000"],["2024-07-25T21:33:26.010000"],["2024-07-25T21:33:27.010000"],["2024-07-25T21:33:28.010000"],["2024-07-25T21:33:29.010000"],["2024-07-25T21:33:30.010000"],["2024-07-25T21:33:31.010000"],["2024-07-25T21:33:32.010000"],["2024-07-25T21:33:33.010000"],["2024-07-25T21:33:34.010000"],["2024-07-25T21:33:35.010000"],["2024-07-25T21:33:36.010000"],["2024-07-25T21:33:37.010000"],["2024-07-25T21:33:38.010000"],["2024-07-25T21:33:39.010000"],["2024-07-25T21:33:40.010000"],["2024-07-25T21:33:41.010000"],["2024-07-25T21:33:42.010000"],["2024-07-25T21:33:43.010000"],["2024-07-25T21:33:44.010000"],["2024-07-25T21:33:45.010000"],["2024-07-25T21:33:46.010000"],["2024-07-25T21:33:47.010000"],["2024-07-25T21:33:48.010000"],["2024-07-25T21:33:49.010000"],["2024-07-25T21:33:50.010000"],["2024-07-25T21:33:51.010000"],["2024-07-25T21:33:52.010000"],["2024-07-25T21:33:53.010000"],["2024-07-25T21:33:54.010000"],["2024-07-25T21:33:55.010000"],["2024-07-25T21:33:56.010000"],["2024-07-25T21:33:57.010000"],["2024-07-25T21:33:58.010000"],["2024-07-25T21:33:59.010000"],["2024-07-25T21:34:00.010000"],["2024-07-25T21:34:01.010000"],["2024-07-25T21:34:02.010000"],["2024-07-25T21:34:03.010000"],["2024-07-25T21:34:04.010000"],["2024-07-25T21:34:05.010000"],["2024-07-25T21:34:06.010000"],["2024-07-25T21:34:07.010000"],["2024-07-25T21:34:08.010000"],["2024-07-25T21:34:09.010000"],["2024-07-25T21:34:10.010000"],["2024-07-25T21:34:11.010000"],["2024-07-25T21:34:12.010000"],["2024-07-25T21:34:13.010000"],["2024-07-25T21:34:14.010000"],["2024-07-25T21:34:15.010000"],["2024-07-25T21:34:16.010000"],["2024-07-25T21:34:17.010000"],["2024-07-25T21:34:18.010000"],["2024-07-25T21:34:19.010000"],["2024-07-25T21:34:20.010000"],["2024-07-25T21:34:21.010000"],["2024-07-25T21:34:22.010000"],["2024-07-25T21:34:23.010000"],["2024-07-25T21:34:24.010000"],["2024-07-25T21:34:25.010000"],["2024-07-25T21:34:26.010000"],["2024-07-25T21:34:27.010000"],["2024-07-25T21:34:28.010000"],["2024-07-25T21:34:29.010000"],["2024-07-25T21:34:30.010000"],["2024-07-25T21:34:31.010000"],["2024-07-25T21:34:32.010000"],["2024-07-25T21:34:33.010000"],["2024-07-25T21:34:34.010000"],["2024-07-25T21:34:35.010000"],["2024-07-25T21:34:36.010000"],["2024-07-25T21:34:37.010000"],["2024-07-25T21:34:38.010000"],["2024-07-25T21:34:39.010000"],["2024-07-25T21:34:40.010000"],["2024-07-25T21:34:41.010000"],["2024-07-25T21:34:42.010000"],["2024-07-25T21:34:43.010000"],["2024-07-25T21:34:44.010000"],["2024-07-25T21:34:45.010000"],["2024-07-25T21:34:46.010000"],["2024-07-25T21:34:47.010000"],["2024-07-25T21:34:48.010000"],["2024-07-25T21:34:49.010000"],["2024-07-25T21:34:50.010000"],["2024-07-25T21:34:51.010000"],["2024-07-25T21:34:52.010000"],["2024-07-25T21:34:53.010000"],["2024-07-25T21:34:54.010000"],["2024-07-25T21:34:55.010000"],["2024-07-25T21:34:56.010000"],["2024-07-25T21:34:57.010000"],["2024-07-25T21:34:58.010000"],["2024-07-25T21:34:59.010000"],["2024-07-25T21:35:00.010000"],["2024-07-25T21:35:01.010000"],["2024-07-25T21:35:02.010000"],["2024-07-25T21:35:03.010000"],["2024-07-25T21:35:04.010000"],["2024-07-25T21:35:05.010000"],["2024-07-25T21:35:06.010000"],["2024-07-25T21:35:07.010000"],["2024-07-25T21:35:08.010000"],["2024-07-25T21:35:09.010000"],["2024-07-25T21:35:10.010000"],["2024-07-25T21:35:11.010000"],["2024-07-25T21:35:12.010000"],["2024-07-25T21:35:13.010000"],["2024-07-25T21:35:14.010000"],["2024-07-25T21:35:15.010000"],["2024-07-25T21:35:16.010000"],["2024-07-25T21:35:17.010000"],["2024-07-25T21:35:18.010000"],["2024-07-25T21:35:19.010000"],["2024-07-25T21:35:20.010000"],["2024-07-25T21:35:21.010000"],["2024-07-25T21:35:22.010000"],["2024-07-25T21:35:23.010000"],["2024-07-25T21:35:24.010000"],["2024-07-25T21:35:25.010000"],["2024-07-25T21:35:26.010000"],["2024-07-25T21:35:27.010000"],["2024-07-25T21:35:28.010000"],["2024-07-25T21:35:29.010000"],["2024-07-25T21:35:30.010000"],["2024-07-25T21:35:31.010000"],["2024-07-25T21:35:32.010000"],["2024-07-25T21:35:33.010000"],["2024-07-25T21:35:34.010000"],["2024-07-25T21:35:35.010000"],["2024-07-25T21:35:36.010000"],["2024-07-25T21:35:37.010000"],["2024-07-25T21:35:38.010000"],["2024-07-25T21:35:39.010000"],["2024-07-25T21:35:40.010000"],["2024-07-25T21:35:41.010000"],["2024-07-25T21:35:42.010000"],["2024-07-25T21:35:43.010000"],["2024-07-25T21:35:44.010000"],["2024-07-25T21:35:45.010000"],["2024-07-25T21:35:46.010000"],["2024-07-25T21:35:47.010000"],["2024-07-25T21:35:48.010000"],["2024-07-25T21:35:49.010000"],["2024-07-25T21:35:50.010000"],["2024-07-25T21:35:51.010000"],["2024-07-25T21:35:52.010000"],["2024-07-25T21:35:53.010000"],["2024-07-25T21:35:54.010000"],["2024-07-25T21:35:55.010000"],["2024-07-25T21:35:56.010000"],["2024-07-25T21:35:57.010000"],["2024-07-25T21:35:58.010000"],["2024-07-25T21:35:59.010000"],["2024-07-25T21:36:00.010000"],["2024-07-25T21:36:01.010000"],["2024-07-25T21:36:02.010000"],["2024-07-25T21:36:03.010000"],["2024-07-25T21:36:04.010000"],["2024-07-25T21:36:05.010000"],["2024-07-25T21:36:06.010000"],["2024-07-25T21:36:07.010000"],["2024-07-25T21:36:08.010000"],["2024-07-25T21:36:09.010000"],["2024-07-25T21:36:10.010000"],["2024-07-25T21:36:11.010000"],["2024-07-25T21:36:12.010000"],["2024-07-25T21:36:13.010000"],["2024-07-25T21:36:14.010000"],["2024-07-25T21:36:15.010000"],["2024-07-25T21:36:16.010000"],["2024-07-25T21:36:17.010000"],["2024-07-25T21:36:18.010000"],["2024-07-25T21:36:19.010000"],["2024-07-25T21:36:20.010000"],["2024-07-25T21:36:21.010000"],["2024-07-25T21:36:22.010000"],["2024-07-25T21:36:23.010000"],["2024-07-25T21:36:24.010000"],["2024-07-25T21:36:25.010000"],["2024-07-25T21:36:26.010000"],["2024-07-25T21:36:27.010000"],["2024-07-25T21:36:28.010000"],["2024-07-25T21:36:29.010000"],["2024-07-25T21:36:30.010000"],["2024-07-25T21:36:31.010000"],["2024-07-25T21:36:32.010000"],["2024-07-25T21:36:33.010000"],["2024-07-25T21:36:34.010000"],["2024-07-25T21:36:35.010000"],["2024-07-25T21:36:36.010000"],["2024-07-25T21:36:37.010000"],["2024-07-25T21:36:38.010000"],["2024-07-25T21:36:39.010000"],["2024-07-25T21:36:40.010000"],["2024-07-25T21:36:41.010000"],["2024-07-25T21:36:42.010000"],["2024-07-25T21:36:43.010000"],["2024-07-25T21:36:44.010000"],["2024-07-25T21:36:45.010000"],["2024-07-25T21:36:46.010000"],["2024-07-25T21:36:47.010000"],["2024-07-25T21:36:48.010000"],["2024-07-25T21:36:49.010000"],["2024-07-25T21:36:50.010000"],["2024-07-25T21:36:51.010000"],["2024-07-25T21:36:52.010000"],["2024-07-25T21:36:53.010000"],["2024-07-25T21:36:54.010000"],["2024-07-25T21:36:55.010000"],["2024-07-25T21:36:56.010000"],["2024-07-25T21:36:57.010000"],["2024-07-25T21:36:58.010000"],["2024-07-25T21:36:59.010000"],["2024-07-25T21:37:00.010000"],["2024-07-25T21:37:01.010000"],["2024-07-25T21:37:02.010000"],["2024-07-25T21:37:03.010000"],["2024-07-25T21:37:04.010000"],["2024-07-25T21:37:05.010000"],["2024-07-25T21:37:06.010000"],["2024-07-25T21:37:07.010000"],["2024-07-25T21:37:08.010000"],["2024-07-25T21:37:09.010000"],["2024-07-25T21:37:10.010000"],["2024-07-25T21:37:11.010000"],["2024-07-25T21:37:12.010000"],["2024-07-25T21:37:13.010000"],["2024-07-25T21:37:14.010000"],["2024-07-25T21:37:15.010000"],["2024-07-25T21:37:16.010000"],["2024-07-25T21:37:17.010000"],["2024-07-25T21:37:18.010000"],["2024-07-25T21:37:19.010000"],["2024-07-25T21:37:20.010000"],["2024-07-25T21:37:21.010000"],["2024-07-25T21:37:22.010000"],["2024-07-25T21:37:23.010000"],["2024-07-25T21:37:24.010000"],["2024-07-25T21:37:25.010000"],["2024-07-25T21:37:26.010000"],["2024-07-25T21:37:27.010000"],["2024-07-25T21:37:28.010000"],["2024-07-25T21:37:29.010000"],["2024-07-25T21:37:30.010000"],["2024-07-25T21:37:31.010000"],["2024-07-25T21:37:32.010000"],["2024-07-25T21:37:33.010000"],["2024-07-25T21:37:34.010000"],["2024-07-25T21:37:35.010000"],["2024-07-25T21:37:36.010000"],["2024-07-25T21:37:37.010000"],["2024-07-25T21:37:38.010000"],["2024-07-25T21:37:39.010000"],["2024-07-25T21:37:40.010000"],["2024-07-25T21:37:41.010000"],["2024-07-25T21:37:42.010000"],["2024-07-25T21:37:43.010000"],["2024-07-25T21:37:44.010000"],["2024-07-25T21:37:45.010000"],["2024-07-25T21:37:46.010000"],["2024-07-25T21:37:47.010000"],["2024-07-25T21:37:48.010000"],["2024-07-25T21:37:49.010000"],["2024-07-25T21:37:50.010000"],["2024-07-25T21:37:51.010000"],["2024-07-25T21:37:52.010000"],["2024-07-25T21:37:53.010000"],["2024-07-25T21:37:54.010000"],["2024-07-25T21:37:55.010000"],["2024-07-25T21:37:56.010000"],["2024-07-25T21:37:57.010000"],["2024-07-25T21:37:58.010000"],["2024-07-25T21:37:59.010000"],["2024-07-25T21:38:00.010000"],["2024-07-25T21:38:01.010000"],["2024-07-25T21:38:02.010000"],["2024-07-25T21:38:03.010000"],["2024-07-25T21:38:04.010000"],["2024-07-25T21:38:05.010000"],["2024-07-25T21:38:06.010000"],["2024-07-25T21:38:07.010000"],["2024-07-25T21:38:08.010000"],["2024-07-25T21:38:09.010000"],["2024-07-25T21:38:10.010000"],["2024-07-25T21:38:11.010000"],["2024-07-25T21:38:12.010000"],["2024-07-25T21:38:13.010000"],["2024-07-25T21:38:14.010000"],["2024-07-25T21:38:15.010000"],["2024-07-25T21:38:16.010000"],["2024-07-25T21:38:17.010000"],["2024-07-25T21:38:18.010000"],["2024-07-25T21:38:19.010000"],["2024-07-25T21:38:20.010000"],["2024-07-25T21:38:21.010000"],["2024-07-25T21:38:22.010000"],["2024-07-25T21:38:23.010000"],["2024-07-25T21:38:24.010000"],["2024-07-25T21:38:25.010000"],["2024-07-25T21:38:26.010000"],["2024-07-25T21:38:27.010000"],["2024-07-25T21:38:28.010000"],["2024-07-25T21:38:29.010000"],["2024-07-25T21:38:30.010000"],["2024-07-25T21:38:31.010000"],["2024-07-25T21:38:32.010000"],["2024-07-25T21:38:33.010000"],["2024-07-25T21:38:34.010000"],["2024-07-25T21:38:35.010000"],["2024-07-25T21:38:36.010000"],["2024-07-25T21:38:37.010000"],["2024-07-25T21:38:38.010000"],["2024-07-25T21:38:39.010000"],["2024-07-25T21:38:40.010000"],["2024-07-25T21:38:41.010000"],["2024-07-25T21:38:42.010000"],["2024-07-25T21:38:43.010000"],["2024-07-25T21:38:44.010000"],["2024-07-25T21:38:45.010000"],["2024-07-25T21:38:46.010000"],["2024-07-25T21:38:47.010000"],["2024-07-25T21:38:48.010000"],["2024-07-25T21:38:49.010000"],["2024-07-25T21:38:50.010000"],["2024-07-25T21:38:51.010000"],["2024-07-25T21:38:52.010000"],["2024-07-25T21:38:53.010000"],["2024-07-25T21:38:54.010000"],["2024-07-25T21:38:55.010000"],["2024-07-25T21:38:56.010000"],["2024-07-25T21:38:57.010000"],["2024-07-25T21:38:58.010000"],["2024-07-25T21:38:59.010000"],["2024-07-25T21:39:00.010000"],["2024-07-25T21:39:01.010000"],["2024-07-25T21:39:02.010000"],["2024-07-25T21:39:03.010000"],["2024-07-25T21:39:04.010000"],["2024-07-25T21:39:05.010000"],["2024-07-25T21:39:06.010000"],["2024-07-25T21:39:07.010000"],["2024-07-25T21:39:08.010000"],["2024-07-25T21:39:09.010000"],["2024-07-25T21:39:10.010000"],["2024-07-25T21:39:11.010000"],["2024-07-25T21:39:12.010000"],["2024-07-25T21:39:13.010000"],["2024-07-25T21:39:14.010000"],["2024-07-25T21:39:15.010000"],["2024-07-25T21:39:16.010000"],["2024-07-25T21:39:17.010000"],["2024-07-25T21:39:18.010000"],["2024-07-25T21:39:19.010000"],["2024-07-25T21:39:20.010000"],["2024-07-25T21:39:21.010000"],["2024-07-25T21:39:22.010000"],["2024-07-25T21:39:23.010000"],["2024-07-25T21:39:24.010000"],["2024-07-25T21:39:25.010000"],["2024-07-25T21:39:26.010000"],["2024-07-25T21:39:27.010000"],["2024-07-25T21:39:28.010000"],["2024-07-25T21:39:29.010000"],["2024-07-25T21:39:30.010000"],["2024-07-25T21:39:31.010000"],["2024-07-25T21:39:32.010000"],["2024-07-25T21:39:33.010000"],["2024-07-25T21:39:34.010000"],["2024-07-25T21:39:35.010000"],["2024-07-25T21:39:36.010000"],["2024-07-25T21:39:37.010000"],["2024-07-25T21:39:38.010000"],["2024-07-25T21:39:39.010000"],["2024-07-25T21:39:40.010000"],["2024-07-25T21:39:41.010000"],["2024-07-25T21:39:42.010000"],["2024-07-25T21:39:43.010000"],["2024-07-25T21:39:44.010000"],["2024-07-25T21:39:45.010000"],["2024-07-25T21:39:46.010000"],["2024-07-25T21:39:47.010000"],["2024-07-25T21:39:48.010000"],["2024-07-25T21:39:49.010000"],["2024-07-25T21:39:50.010000"],["2024-07-25T21:39:51.010000"],["2024-07-25T21:39:52.010000"],["2024-07-25T21:39:53.010000"],["2024-07-25T21:39:54.010000"],["2024-07-25T21:39:55.010000"],["2024-07-25T21:39:56.010000"],["2024-07-25T21:39:57.010000"],["2024-07-25T21:39:58.010000"],["2024-07-25T21:39:59.010000"],["2024-07-25T21:40:00.010000"],["2024-07-25T21:40:01.010000"],["2024-07-25T21:40:02.010000"],["2024-07-25T21:40:03.010000"],["2024-07-25T21:40:04.010000"],["2024-07-25T21:40:05.010000"],["2024-07-25T21:40:06.010000"],["2024-07-25T21:40:07.010000"],["2024-07-25T21:40:08.010000"],["2024-07-25T21:40:09.010000"],["2024-07-25T21:40:10.010000"],["2024-07-25T21:40:11.010000"],["2024-07-25T21:40:12.010000"],["2024-07-25T21:40:13.010000"],["2024-07-25T21:40:14.010000"],["2024-07-25T21:40:15.010000"],["2024-07-25T21:40:16.010000"],["2024-07-25T21:40:17.010000"],["2024-07-25T21:40:18.010000"],["2024-07-25T21:40:19.010000"],["2024-07-25T21:40:20.010000"],["2024-07-25T21:40:21.010000"],["2024-07-25T21:40:22.010000"],["2024-07-25T21:40:23.010000"],["2024-07-25T21:40:24.010000"],["2024-07-25T21:40:25.010000"],["2024-07-25T21:40:26.010000"],["2024-07-25T21:40:27.010000"],["2024-07-25T21:40:28.010000"],["2024-07-25T21:40:29.010000"],["2024-07-25T21:40:30.010000"],["2024-07-25T21:40:31.010000"],["2024-07-25T21:40:32.010000"],["2024-07-25T21:40:33.010000"],["2024-07-25T21:40:34.010000"],["2024-07-25T21:40:35.010000"],["2024-07-25T21:40:36.010000"],["2024-07-25T21:40:37.010000"],["2024-07-25T21:40:38.010000"],["2024-07-25T21:40:39.010000"],["2024-07-25T21:40:40.010000"],["2024-07-25T21:40:41.010000"],["2024-07-25T21:40:42.010000"],["2024-07-25T21:40:43.010000"],["2024-07-25T21:40:44.010000"],["2024-07-25T21:40:45.010000"],["2024-07-25T21:40:46.010000"],["2024-07-25T21:40:47.010000"],["2024-07-25T21:40:48.010000"],["2024-07-25T21:40:49.010000"],["2024-07-25T21:40:50.010000"],["2024-07-25T21:40:51.010000"],["2024-07-25T21:40:52.010000"],["2024-07-25T21:40:53.010000"],["2024-07-25T21:40:54.010000"],["2024-07-25T21:40:55.010000"],["2024-07-25T21:40:56.010000"],["2024-07-25T21:40:57.010000"],["2024-07-25T21:40:58.010000"],["2024-07-25T21:40:59.010000"],["2024-07-25T21:41:00.010000"],["2024-07-25T21:41:01.010000"],["2024-07-25T21:41:02.010000"],["2024-07-25T21:41:03.010000"],["2024-07-25T21:41:04.010000"],["2024-07-25T21:41:05.010000"],["2024-07-25T21:41:06.010000"],["2024-07-25T21:41:07.010000"],["2024-07-25T21:41:08.010000"],["2024-07-25T21:41:09.010000"],["2024-07-25T21:41:10.010000"],["2024-07-25T21:41:11.010000"],["2024-07-25T21:41:12.010000"],["2024-07-25T21:41:13.010000"],["2024-07-25T21:41:14.010000"],["2024-07-25T21:41:15.010000"],["2024-07-25T21:41:16.010000"],["2024-07-25T21:41:17.010000"],["2024-07-25T21:41:18.010000"],["2024-07-25T21:41:19.010000"],["2024-07-25T21:41:20.010000"],["2024-07-25T21:41:21.010000"],["2024-07-25T21:41:22.010000"],["2024-07-25T21:41:23.010000"],["2024-07-25T21:41:24.010000"],["2024-07-25T21:41:25.010000"],["2024-07-25T21:41:26.010000"],["2024-07-25T21:41:27.010000"],["2024-07-25T21:41:28.010000"],["2024-07-25T21:41:29.010000"],["2024-07-25T21:41:30.010000"],["2024-07-25T21:41:31.010000"],["2024-07-25T21:41:32.010000"],["2024-07-25T21:41:33.010000"],["2024-07-25T21:41:34.010000"],["2024-07-25T21:41:35.010000"],["2024-07-25T21:41:36.010000"],["2024-07-25T21:41:37.010000"],["2024-07-25T21:41:38.010000"],["2024-07-25T21:41:39.010000"],["2024-07-25T21:41:40.010000"],["2024-07-25T21:41:41.010000"],["2024-07-25T21:41:42.010000"],["2024-07-25T21:41:43.010000"],["2024-07-25T21:41:44.010000"],["2024-07-25T21:41:45.010000"],["2024-07-25T21:41:46.010000"],["2024-07-25T21:41:47.010000"],["2024-07-25T21:41:48.010000"],["2024-07-25T21:41:49.010000"],["2024-07-25T21:41:50.010000"],["2024-07-25T21:41:51.010000"],["2024-07-25T21:41:52.010000"],["2024-07-25T21:41:53.010000"],["2024-07-25T21:41:54.010000"],["2024-07-25T21:41:55.010000"],["2024-07-25T21:41:56.010000"],["2024-07-25T21:41:57.010000"],["2024-07-25T21:41:58.010000"],["2024-07-25T21:41:59.010000"],["2024-07-25T21:42:00.010000"],["2024-07-25T21:42:01.010000"],["2024-07-25T21:42:02.010000"],["2024-07-25T21:42:03.010000"],["2024-07-25T21:42:04.010000"],["2024-07-25T21:42:05.010000"],["2024-07-25T21:42:06.010000"],["2024-07-25T21:42:07.010000"],["2024-07-25T21:42:08.010000"],["2024-07-25T21:42:09.010000"],["2024-07-25T21:42:10.010000"],["2024-07-25T21:42:11.010000"],["2024-07-25T21:42:12.010000"],["2024-07-25T21:42:13.010000"],["2024-07-25T21:42:14.010000"],["2024-07-25T21:42:15.010000"],["2024-07-25T21:42:16.010000"],["2024-07-25T21:42:17.010000"],["2024-07-25T21:42:18.010000"],["2024-07-25T21:42:19.010000"],["2024-07-25T21:42:20.010000"],["2024-07-25T21:42:21.010000"],["2024-07-25T21:42:22.010000"],["2024-07-25T21:42:23.010000"],["2024-07-25T21:42:24.010000"],["2024-07-25T21:42:25.010000"],["2024-07-25T21:42:26.010000"],["2024-07-25T21:42:27.010000"],["2024-07-25T21:42:28.010000"],["2024-07-25T21:42:29.010000"],["2024-07-25T21:42:30.010000"],["2024-07-25T21:42:31.010000"],["2024-07-25T21:42:32.010000"],["2024-07-25T21:42:33.010000"],["2024-07-25T21:42:34.010000"],["2024-07-25T21:42:35.010000"],["2024-07-25T21:42:36.010000"],["2024-07-25T21:42:37.010000"],["2024-07-25T21:42:38.010000"],["2024-07-25T21:42:39.010000"],["2024-07-25T21:42:40.010000"],["2024-07-25T21:42:41.010000"],["2024-07-25T21:42:42.010000"],["2024-07-25T21:42:43.010000"],["2024-07-25T21:42:44.010000"],["2024-07-25T21:42:45.010000"],["2024-07-25T21:42:46.010000"],["2024-07-25T21:42:47.010000"],["2024-07-25T21:42:48.010000"],["2024-07-25T21:42:49.010000"],["2024-07-25T21:42:50.010000"],["2024-07-25T21:42:51.010000"],["2024-07-25T21:42:52.010000"],["2024-07-25T21:42:53.010000"],["2024-07-25T21:42:54.010000"],["2024-07-25T21:42:55.010000"],["2024-07-25T21:42:56.010000"],["2024-07-25T21:42:57.010000"],["2024-07-25T21:42:58.010000"],["2024-07-25T21:42:59.010000"],["2024-07-25T21:43:00.010000"],["2024-07-25T21:43:01.010000"],["2024-07-25T21:43:02.010000"],["2024-07-25T21:43:03.010000"],["2024-07-25T21:43:04.010000"],["2024-07-25T21:43:05.010000"],["2024-07-25T21:43:06.010000"],["2024-07-25T21:43:07.010000"],["2024-07-25T21:43:08.010000"],["2024-07-25T21:43:09.010000"],["2024-07-25T21:43:10.010000"],["2024-07-25T21:43:11.010000"],["2024-07-25T21:43:12.010000"],["2024-07-25T21:43:13.010000"],["2024-07-25T21:43:14.010000"],["2024-07-25T21:43:15.010000"],["2024-07-25T21:43:16.010000"],["2024-07-25T21:43:17.010000"],["2024-07-25T21:43:18.010000"],["2024-07-25T21:43:19.010000"],["2024-07-25T21:43:20.010000"],["2024-07-25T21:43:21.010000"],["2024-07-25T21:43:22.010000"],["2024-07-25T21:43:23.010000"],["2024-07-25T21:43:24.010000"],["2024-07-25T21:43:25.010000"],["2024-07-25T21:43:26.010000"],["2024-07-25T21:43:27.010000"],["2024-07-25T21:43:28.010000"],["2024-07-25T21:43:29.010000"],["2024-07-25T21:43:30.010000"],["2024-07-25T21:43:31.010000"],["2024-07-25T21:43:32.010000"],["2024-07-25T21:43:33.010000"],["2024-07-25T21:43:34.010000"],["2024-07-25T21:43:35.010000"],["2024-07-25T21:43:36.010000"],["2024-07-25T21:43:37.010000"],["2024-07-25T21:43:38.010000"],["2024-07-25T21:43:39.010000"],["2024-07-25T21:43:40.010000"],["2024-07-25T21:43:41.010000"],["2024-07-25T21:43:42.010000"],["2024-07-25T21:43:43.010000"],["2024-07-25T21:43:44.010000"],["2024-07-25T21:43:45.010000"],["2024-07-25T21:43:46.010000"],["2024-07-25T21:43:47.010000"],["2024-07-25T21:43:48.010000"],["2024-07-25T21:43:49.010000"],["2024-07-25T21:43:50.010000"],["2024-07-25T21:43:51.010000"],["2024-07-25T21:43:52.010000"],["2024-07-25T21:43:53.010000"],["2024-07-25T21:43:54.010000"],["2024-07-25T21:43:55.010000"],["2024-07-25T21:43:56.010000"],["2024-07-25T21:43:57.010000"],["2024-07-25T21:43:58.010000"],["2024-07-25T21:43:59.010000"],["2024-07-25T21:44:00.010000"],["2024-07-25T21:44:01.010000"],["2024-07-25T21:44:02.010000"],["2024-07-25T21:44:03.010000"],["2024-07-25T21:44:04.010000"],["2024-07-25T21:44:05.010000"],["2024-07-25T21:44:06.010000"],["2024-07-25T21:44:07.010000"],["2024-07-25T21:44:08.010000"],["2024-07-25T21:44:09.010000"],["2024-07-25T21:44:10.010000"],["2024-07-25T21:44:11.010000"],["2024-07-25T21:44:12.010000"],["2024-07-25T21:44:13.010000"],["2024-07-25T21:44:14.010000"],["2024-07-25T21:44:15.010000"],["2024-07-25T21:44:16.010000"],["2024-07-25T21:44:17.010000"],["2024-07-25T21:44:18.010000"],["2024-07-25T21:44:19.010000"],["2024-07-25T21:44:20.010000"],["2024-07-25T21:44:21.010000"],["2024-07-25T21:44:22.010000"],["2024-07-25T21:44:23.010000"],["2024-07-25T21:44:24.010000"],["2024-07-25T21:44:25.010000"],["2024-07-25T21:44:26.010000"],["2024-07-25T21:44:27.010000"],["2024-07-25T21:44:28.010000"],["2024-07-25T21:44:29.010000"],["2024-07-25T21:44:30.010000"],["2024-07-25T21:44:31.010000"],["2024-07-25T21:44:32.010000"],["2024-07-25T21:44:33.010000"],["2024-07-25T21:44:34.010000"],["2024-07-25T21:44:35.010000"],["2024-07-25T21:44:36.010000"],["2024-07-25T21:44:37.010000"],["2024-07-25T21:44:38.010000"],["2024-07-25T21:44:39.010000"],["2024-07-25T21:44:40.010000"],["2024-07-25T21:44:41.010000"],["2024-07-25T21:44:42.010000"],["2024-07-25T21:44:43.010000"],["2024-07-25T21:44:44.010000"],["2024-07-25T21:44:45.010000"],["2024-07-25T21:44:46.010000"],["2024-07-25T21:44:47.010000"],["2024-07-25T21:44:48.010000"],["2024-07-25T21:44:49.010000"],["2024-07-25T21:44:50.010000"],["2024-07-25T21:44:51.010000"],["2024-07-25T21:44:52.010000"],["2024-07-25T21:44:53.010000"],["2024-07-25T21:44:54.010000"],["2024-07-25T21:44:55.010000"],["2024-07-25T21:44:56.010000"],["2024-07-25T21:44:57.010000"],["2024-07-25T21:44:58.010000"],["2024-07-25T21:44:59.010000"],["2024-07-25T21:45:00.010000"],["2024-07-25T21:45:01.010000"],["2024-07-25T21:45:02.010000"],["2024-07-25T21:45:03.010000"],["2024-07-25T21:45:04.010000"],["2024-07-25T21:45:05.010000"],["2024-07-25T21:45:06.010000"],["2024-07-25T21:45:07.010000"],["2024-07-25T21:45:08.010000"],["2024-07-25T21:45:09.010000"],["2024-07-25T21:45:10.010000"],["2024-07-25T21:45:11.010000"],["2024-07-25T21:45:12.010000"],["2024-07-25T21:45:13.010000"],["2024-07-25T21:45:14.010000"],["2024-07-25T21:45:15.010000"],["2024-07-25T21:45:16.010000"],["2024-07-25T21:45:17.010000"],["2024-07-25T21:45:18.010000"],["2024-07-25T21:45:19.010000"],["2024-07-25T21:45:20.010000"],["2024-07-25T21:45:21.010000"],["2024-07-25T21:45:22.010000"],["2024-07-25T21:45:23.010000"],["2024-07-25T21:45:24.010000"],["2024-07-25T21:45:25.010000"],["2024-07-25T21:45:26.010000"],["2024-07-25T21:45:27.010000"],["2024-07-25T21:45:28.010000"],["2024-07-25T21:45:29.010000"],["2024-07-25T21:45:30.010000"],["2024-07-25T21:45:31.010000"],["2024-07-25T21:45:32.010000"],["2024-07-25T21:45:33.010000"],["2024-07-25T21:45:34.010000"],["2024-07-25T21:45:35.010000"],["2024-07-25T21:45:36.010000"],["2024-07-25T21:45:37.010000"],["2024-07-25T21:45:38.010000"],["2024-07-25T21:45:39.010000"],["2024-07-25T21:45:40.010000"],["2024-07-25T21:45:41.010000"],["2024-07-25T21:45:42.010000"],["2024-07-25T21:45:43.010000"],["2024-07-25T21:45:44.010000"],["2024-07-25T21:45:45.010000"],["2024-07-25T21:45:46.010000"],["2024-07-25T21:45:47.010000"],["2024-07-25T21:45:48.010000"],["2024-07-25T21:45:49.010000"],["2024-07-25T21:45:50.010000"],["2024-07-25T21:45:51.010000"],["2024-07-25T21:45:52.010000"],["2024-07-25T21:45:53.010000"],["2024-07-25T21:45:54.010000"],["2024-07-25T21:45:55.010000"],["2024-07-25T21:45:56.010000"],["2024-07-25T21:45:57.010000"],["2024-07-25T21:45:58.010000"],["2024-07-25T21:45:59.010000"],["2024-07-25T21:46:00.010000"],["2024-07-25T21:46:01.010000"],["2024-07-25T21:46:02.010000"],["2024-07-25T21:46:03.010000"],["2024-07-25T21:46:04.010000"],["2024-07-25T21:46:05.010000"],["2024-07-25T21:46:06.010000"],["2024-07-25T21:46:07.010000"],["2024-07-25T21:46:08.010000"],["2024-07-25T21:46:09.010000"],["2024-07-25T21:46:10.010000"],["2024-07-25T21:46:11.010000"],["2024-07-25T21:46:12.010000"],["2024-07-25T21:46:13.010000"],["2024-07-25T21:46:14.010000"],["2024-07-25T21:46:15.010000"],["2024-07-25T21:46:16.010000"],["2024-07-25T21:46:17.010000"],["2024-07-25T21:46:18.010000"],["2024-07-25T21:46:19.010000"],["2024-07-25T21:46:20.010000"],["2024-07-25T21:46:21.010000"],["2024-07-25T21:46:22.010000"],["2024-07-25T21:46:23.010000"],["2024-07-25T21:46:24.010000"],["2024-07-25T21:46:25.010000"],["2024-07-25T21:46:26.010000"],["2024-07-25T21:46:27.010000"],["2024-07-25T21:46:28.010000"],["2024-07-25T21:46:29.010000"],["2024-07-25T21:46:30.010000"],["2024-07-25T21:46:31.010000"],["2024-07-25T21:46:32.010000"],["2024-07-25T21:46:33.010000"],["2024-07-25T21:46:34.010000"],["2024-07-25T21:46:35.010000"],["2024-07-25T21:46:36.010000"],["2024-07-25T21:46:37.010000"],["2024-07-25T21:46:38.010000"],["2024-07-25T21:46:39.010000"],["2024-07-25T21:46:40.010000"],["2024-07-25T21:46:41.010000"],["2024-07-25T21:46:42.010000"],["2024-07-25T21:46:43.010000"],["2024-07-25T21:46:44.010000"],["2024-07-25T21:46:45.010000"],["2024-07-25T21:46:46.010000"],["2024-07-25T21:46:47.010000"],["2024-07-25T21:46:48.010000"],["2024-07-25T21:46:49.010000"],["2024-07-25T21:46:50.010000"],["2024-07-25T21:46:51.010000"],["2024-07-25T21:46:52.010000"],["2024-07-25T21:46:53.010000"],["2024-07-25T21:46:54.010000"],["2024-07-25T21:46:55.010000"],["2024-07-25T21:46:56.010000"],["2024-07-25T21:46:57.010000"],["2024-07-25T21:46:58.010000"],["2024-07-25T21:46:59.010000"],["2024-07-25T21:47:00.010000"],["2024-07-25T21:47:01.010000"],["2024-07-25T21:47:02.010000"],["2024-07-25T21:47:03.010000"],["2024-07-25T21:47:04.010000"],["2024-07-25T21:47:05.010000"],["2024-07-25T21:47:06.010000"],["2024-07-25T21:47:07.010000"],["2024-07-25T21:47:08.010000"],["2024-07-25T21:47:09.010000"],["2024-07-25T21:47:10.010000"],["2024-07-25T21:47:11.010000"],["2024-07-25T21:47:12.010000"],["2024-07-25T21:47:13.010000"],["2024-07-25T21:47:14.010000"],["2024-07-25T21:47:15.010000"],["2024-07-25T21:47:16.010000"],["2024-07-25T21:47:17.010000"],["2024-07-25T21:47:18.010000"],["2024-07-25T21:47:19.010000"],["2024-07-25T21:47:20.010000"],["2024-07-25T21:47:21.010000"],["2024-07-25T21:47:22.010000"],["2024-07-25T21:47:23.010000"],["2024-07-25T21:47:24.010000"],["2024-07-25T21:47:25.010000"],["2024-07-25T21:47:26.010000"],["2024-07-25T21:47:27.010000"],["2024-07-25T21:47:28.010000"],["2024-07-25T21:47:29.010000"],["2024-07-25T21:47:30.010000"],["2024-07-25T21:47:31.010000"],["2024-07-25T21:47:32.010000"],["2024-07-25T21:47:33.010000"],["2024-07-25T21:47:34.010000"],["2024-07-25T21:47:35.010000"],["2024-07-25T21:47:36.010000"],["2024-07-25T21:47:37.010000"],["2024-07-25T21:47:38.010000"],["2024-07-25T21:47:39.010000"],["2024-07-25T21:47:40.010000"],["2024-07-25T21:47:41.010000"],["2024-07-25T21:47:42.010000"],["2024-07-25T21:47:43.010000"],["2024-07-25T21:47:44.010000"],["2024-07-25T21:47:45.010000"],["2024-07-25T21:47:46.010000"],["2024-07-25T21:47:47.010000"],["2024-07-25T21:47:48.010000"],["2024-07-25T21:47:49.010000"],["2024-07-25T21:47:50.010000"],["2024-07-25T21:47:51.010000"],["2024-07-25T21:47:52.010000"],["2024-07-25T21:47:53.010000"],["2024-07-25T21:47:54.010000"],["2024-07-25T21:47:55.010000"],["2024-07-25T21:47:56.010000"],["2024-07-25T21:47:57.010000"],["2024-07-25T21:47:58.010000"],["2024-07-25T21:47:59.010000"],["2024-07-25T21:48:00.010000"],["2024-07-25T21:48:01.010000"],["2024-07-25T21:48:02.010000"],["2024-07-25T21:48:03.010000"],["2024-07-25T21:48:04.010000"],["2024-07-25T21:48:05.010000"],["2024-07-25T21:48:06.010000"],["2024-07-25T21:48:07.010000"],["2024-07-25T21:48:08.010000"],["2024-07-25T21:48:09.010000"],["2024-07-25T21:48:10.010000"],["2024-07-25T21:48:11.010000"],["2024-07-25T21:48:12.010000"],["2024-07-25T21:48:13.010000"],["2024-07-25T21:48:14.010000"],["2024-07-25T21:48:15.010000"],["2024-07-25T21:48:16.010000"],["2024-07-25T21:48:17.010000"],["2024-07-25T21:48:18.010000"],["2024-07-25T21:48:19.010000"],["2024-07-25T21:48:20.010000"],["2024-07-25T21:48:21.010000"],["2024-07-25T21:48:22.010000"],["2024-07-25T21:48:23.010000"],["2024-07-25T21:48:24.010000"],["2024-07-25T21:48:25.010000"],["2024-07-25T21:48:26.010000"],["2024-07-25T21:48:27.010000"],["2024-07-25T21:48:28.010000"],["2024-07-25T21:48:29.010000"],["2024-07-25T21:48:30.010000"],["2024-07-25T21:48:31.010000"],["2024-07-25T21:48:32.010000"],["2024-07-25T21:48:33.010000"],["2024-07-25T21:48:34.010000"],["2024-07-25T21:48:35.010000"],["2024-07-25T21:48:36.010000"],["2024-07-25T21:48:37.010000"],["2024-07-25T21:48:38.010000"],["2024-07-25T21:48:39.010000"],["2024-07-25T21:48:40.010000"],["2024-07-25T21:48:41.010000"],["2024-07-25T21:48:42.010000"],["2024-07-25T21:48:43.010000"],["2024-07-25T21:48:44.010000"],["2024-07-25T21:48:45.010000"],["2024-07-25T21:48:46.010000"],["2024-07-25T21:48:47.010000"],["2024-07-25T21:48:48.010000"],["2024-07-25T21:48:49.010000"],["2024-07-25T21:48:50.010000"],["2024-07-25T21:48:51.010000"],["2024-07-25T21:48:52.010000"],["2024-07-25T21:48:53.010000"],["2024-07-25T21:48:54.010000"],["2024-07-25T21:48:55.010000"],["2024-07-25T21:48:56.010000"],["2024-07-25T21:48:57.010000"],["2024-07-25T21:48:58.010000"],["2024-07-25T21:48:59.010000"],["2024-07-25T21:49:00.010000"],["2024-07-25T21:49:01.010000"],["2024-07-25T21:49:02.010000"],["2024-07-25T21:49:03.010000"],["2024-07-25T21:49:04.010000"],["2024-07-25T21:49:05.010000"],["2024-07-25T21:49:06.010000"],["2024-07-25T21:49:07.010000"],["2024-07-25T21:49:08.010000"],["2024-07-25T21:49:09.010000"],["2024-07-25T21:49:10.010000"],["2024-07-25T21:49:11.010000"],["2024-07-25T21:49:12.010000"],["2024-07-25T21:49:13.010000"],["2024-07-25T21:49:14.010000"],["2024-07-25T21:49:15.010000"],["2024-07-25T21:49:16.010000"],["2024-07-25T21:49:17.010000"],["2024-07-25T21:49:18.010000"],["2024-07-25T21:49:19.010000"],["2024-07-25T21:49:20.010000"],["2024-07-25T21:49:21.010000"],["2024-07-25T21:49:22.010000"],["2024-07-25T21:49:23.010000"],["2024-07-25T21:49:24.010000"],["2024-07-25T21:49:25.010000"],["2024-07-25T21:49:26.010000"],["2024-07-25T21:49:27.010000"],["2024-07-25T21:49:28.010000"],["2024-07-25T21:49:29.010000"],["2024-07-25T21:49:30.010000"],["2024-07-25T21:49:31.010000"],["2024-07-25T21:49:32.010000"],["2024-07-25T21:49:33.010000"],["2024-07-25T21:49:34.010000"],["2024-07-25T21:49:35.010000"],["2024-07-25T21:49:36.010000"],["2024-07-25T21:49:37.010000"],["2024-07-25T21:49:38.010000"],["2024-07-25T21:49:39.010000"],["2024-07-25T21:49:40.010000"],["2024-07-25T21:49:41.010000"],["2024-07-25T21:49:42.010000"],["2024-07-25T21:49:43.010000"],["2024-07-25T21:49:44.010000"],["2024-07-25T21:49:45.010000"],["2024-07-25T21:49:46.010000"],["2024-07-25T21:49:47.010000"],["2024-07-25T21:49:48.010000"],["2024-07-25T21:49:49.010000"],["2024-07-25T21:49:50.010000"],["2024-07-25T21:49:51.010000"],["2024-07-25T21:49:52.010000"],["2024-07-25T21:49:53.010000"],["2024-07-25T21:49:54.010000"],["2024-07-25T21:49:55.010000"],["2024-07-25T21:49:56.010000"],["2024-07-25T21:49:57.010000"],["2024-07-25T21:49:58.010000"],["2024-07-25T21:49:59.010000"],["2024-07-25T21:50:00.010000"],["2024-07-25T21:50:01.010000"],["2024-07-25T21:50:02.010000"],["2024-07-25T21:50:03.010000"],["2024-07-25T21:50:04.010000"],["2024-07-25T21:50:05.010000"],["2024-07-25T21:50:06.010000"],["2024-07-25T21:50:07.010000"],["2024-07-25T21:50:08.010000"],["2024-07-25T21:50:09.010000"],["2024-07-25T21:50:10.010000"],["2024-07-25T21:50:11.010000"],["2024-07-25T21:50:12.010000"],["2024-07-25T21:50:13.010000"],["2024-07-25T21:50:14.010000"],["2024-07-25T21:50:15.010000"],["2024-07-25T21:50:16.010000"],["2024-07-25T21:50:17.010000"],["2024-07-25T21:50:18.010000"],["2024-07-25T21:50:19.010000"],["2024-07-25T21:50:20.010000"],["2024-07-25T21:50:21.010000"],["2024-07-25T21:50:22.010000"],["2024-07-25T21:50:23.010000"],["2024-07-25T21:50:24.010000"],["2024-07-25T21:50:25.010000"],["2024-07-25T21:50:26.010000"],["2024-07-25T21:50:27.010000"],["2024-07-25T21:50:28.010000"],["2024-07-25T21:50:29.010000"],["2024-07-25T21:50:30.010000"],["2024-07-25T21:50:31.010000"],["2024-07-25T21:50:32.010000"],["2024-07-25T21:50:33.010000"],["2024-07-25T21:50:34.010000"],["2024-07-25T21:50:35.010000"],["2024-07-25T21:50:36.010000"],["2024-07-25T21:50:37.010000"],["2024-07-25T21:50:38.010000"],["2024-07-25T21:50:39.010000"],["2024-07-25T21:50:40.010000"],["2024-07-25T21:50:41.010000"],["2024-07-25T21:50:42.010000"],["2024-07-25T21:50:43.010000"],["2024-07-25T21:50:44.010000"],["2024-07-25T21:50:45.010000"],["2024-07-25T21:50:46.010000"],["2024-07-25T21:50:47.010000"],["2024-07-25T21:50:48.010000"],["2024-07-25T21:50:49.010000"],["2024-07-25T21:50:50.010000"],["2024-07-25T21:50:51.010000"],["2024-07-25T21:50:52.010000"],["2024-07-25T21:50:53.010000"],["2024-07-25T21:50:54.010000"],["2024-07-25T21:50:55.010000"],["2024-07-25T21:50:56.010000"],["2024-07-25T21:50:57.010000"],["2024-07-25T21:50:58.010000"],["2024-07-25T21:50:59.010000"],["2024-07-25T21:51:00.010000"],["2024-07-25T21:51:01.010000"],["2024-07-25T21:51:02.010000"],["2024-07-25T21:51:03.010000"],["2024-07-25T21:51:04.010000"],["2024-07-25T21:51:05.010000"],["2024-07-25T21:51:06.010000"],["2024-07-25T21:51:07.010000"],["2024-07-25T21:51:08.010000"],["2024-07-25T21:51:09.010000"],["2024-07-25T21:51:10.010000"],["2024-07-25T21:51:11.010000"],["2024-07-25T21:51:12.010000"],["2024-07-25T21:51:13.010000"],["2024-07-25T21:51:14.010000"],["2024-07-25T21:51:15.010000"],["2024-07-25T21:51:16.010000"],["2024-07-25T21:51:17.010000"],["2024-07-25T21:51:18.010000"],["2024-07-25T21:51:19.010000"],["2024-07-25T21:51:20.010000"],["2024-07-25T21:51:21.010000"],["2024-07-25T21:51:22.010000"],["2024-07-25T21:51:23.010000"],["2024-07-25T21:51:24.010000"],["2024-07-25T21:51:25.010000"],["2024-07-25T21:51:26.010000"],["2024-07-25T21:51:27.010000"],["2024-07-25T21:51:28.010000"],["2024-07-25T21:51:29.010000"],["2024-07-25T21:51:30.010000"],["2024-07-25T21:51:31.010000"],["2024-07-25T21:51:32.010000"],["2024-07-25T21:51:33.010000"],["2024-07-25T21:51:34.010000"],["2024-07-25T21:51:35.010000"],["2024-07-25T21:51:36.010000"],["2024-07-25T21:51:37.010000"],["2024-07-25T21:51:38.010000"],["2024-07-25T21:51:39.010000"],["2024-07-25T21:51:40.010000"],["2024-07-25T21:51:41.010000"],["2024-07-25T21:51:42.010000"],["2024-07-25T21:51:43.010000"],["2024-07-25T21:51:44.010000"],["2024-07-25T21:51:45.010000"],["2024-07-25T21:51:46.010000"],["2024-07-25T21:51:47.010000"],["2024-07-25T21:51:48.010000"],["2024-07-25T21:51:49.010000"],["2024-07-25T21:51:50.010000"],["2024-07-25T21:51:51.010000"],["2024-07-25T21:51:52.010000"],["2024-07-25T21:51:53.010000"],["2024-07-25T21:51:54.010000"],["2024-07-25T21:51:55.010000"],["2024-07-25T21:51:56.010000"],["2024-07-25T21:51:57.010000"],["2024-07-25T21:51:58.010000"],["2024-07-25T21:51:59.010000"],["2024-07-25T21:52:00.010000"],["2024-07-25T21:52:01.010000"],["2024-07-25T21:52:02.010000"],["2024-07-25T21:52:03.010000"],["2024-07-25T21:52:04.010000"],["2024-07-25T21:52:05.010000"],["2024-07-25T21:52:06.010000"],["2024-07-25T21:52:07.010000"],["2024-07-25T21:52:08.010000"],["2024-07-25T21:52:09.010000"],["2024-07-25T21:52:10.010000"],["2024-07-25T21:52:11.010000"],["2024-07-25T21:52:12.010000"],["2024-07-25T21:52:13.010000"],["2024-07-25T21:52:14.010000"],["2024-07-25T21:52:15.010000"],["2024-07-25T21:52:16.010000"],["2024-07-25T21:52:17.010000"],["2024-07-25T21:52:18.010000"],["2024-07-25T21:52:19.010000"],["2024-07-25T21:52:20.010000"],["2024-07-25T21:52:21.010000"],["2024-07-25T21:52:22.010000"],["2024-07-25T21:52:23.010000"],["2024-07-25T21:52:24.010000"],["2024-07-25T21:52:25.010000"],["2024-07-25T21:52:26.010000"],["2024-07-25T21:52:27.010000"],["2024-07-25T21:52:28.010000"],["2024-07-25T21:52:29.010000"],["2024-07-25T21:52:30.010000"],["2024-07-25T21:52:31.010000"],["2024-07-25T21:52:32.010000"],["2024-07-25T21:52:33.010000"],["2024-07-25T21:52:34.010000"],["2024-07-25T21:52:35.010000"],["2024-07-25T21:52:36.010000"],["2024-07-25T21:52:37.010000"],["2024-07-25T21:52:38.010000"],["2024-07-25T21:52:39.010000"],["2024-07-25T21:52:40.010000"],["2024-07-25T21:52:41.010000"],["2024-07-25T21:52:42.010000"],["2024-07-25T21:52:43.010000"],["2024-07-25T21:52:44.010000"],["2024-07-25T21:52:45.010000"],["2024-07-25T21:52:46.010000"],["2024-07-25T21:52:47.010000"],["2024-07-25T21:52:48.010000"],["2024-07-25T21:52:49.010000"],["2024-07-25T21:52:50.010000"],["2024-07-25T21:52:51.010000"],["2024-07-25T21:52:52.010000"],["2024-07-25T21:52:53.010000"],["2024-07-25T21:52:54.010000"],["2024-07-25T21:52:55.010000"],["2024-07-25T21:52:56.010000"],["2024-07-25T21:52:57.010000"],["2024-07-25T21:52:58.010000"],["2024-07-25T21:52:59.010000"],["2024-07-25T21:53:00.010000"],["2024-07-25T21:53:01.010000"],["2024-07-25T21:53:02.010000"],["2024-07-25T21:53:03.010000"],["2024-07-25T21:53:04.010000"],["2024-07-25T21:53:05.010000"],["2024-07-25T21:53:06.010000"],["2024-07-25T21:53:07.010000"],["2024-07-25T21:53:08.010000"],["2024-07-25T21:53:09.010000"],["2024-07-25T21:53:10.010000"],["2024-07-25T21:53:11.010000"],["2024-07-25T21:53:12.010000"],["2024-07-25T21:53:13.010000"],["2024-07-25T21:53:14.010000"],["2024-07-25T21:53:15.010000"],["2024-07-25T21:53:16.010000"],["2024-07-25T21:53:17.010000"],["2024-07-25T21:53:18.010000"],["2024-07-25T21:53:19.010000"],["2024-07-25T21:53:20.010000"],["2024-07-25T21:53:21.010000"],["2024-07-25T21:53:22.010000"],["2024-07-25T21:53:23.010000"],["2024-07-25T21:53:24.010000"],["2024-07-25T21:53:25.010000"],["2024-07-25T21:53:26.010000"],["2024-07-25T21:53:27.010000"],["2024-07-25T21:53:28.010000"],["2024-07-25T21:53:29.010000"],["2024-07-25T21:53:30.010000"],["2024-07-25T21:53:31.010000"],["2024-07-25T21:53:32.010000"],["2024-07-25T21:53:33.010000"],["2024-07-25T21:53:34.010000"],["2024-07-25T21:53:35.010000"],["2024-07-25T21:53:36.010000"],["2024-07-25T21:53:37.010000"],["2024-07-25T21:53:38.010000"],["2024-07-25T21:53:39.010000"],["2024-07-25T21:53:40.010000"],["2024-07-25T21:53:41.010000"],["2024-07-25T21:53:42.010000"],["2024-07-25T21:53:43.010000"],["2024-07-25T21:53:44.010000"],["2024-07-25T21:53:45.010000"],["2024-07-25T21:53:46.010000"],["2024-07-25T21:53:47.010000"],["2024-07-25T21:53:48.010000"],["2024-07-25T21:53:49.010000"],["2024-07-25T21:53:50.010000"],["2024-07-25T21:53:51.010000"],["2024-07-25T21:53:52.010000"],["2024-07-25T21:53:53.010000"],["2024-07-25T21:53:54.010000"],["2024-07-25T21:53:55.010000"],["2024-07-25T21:53:56.010000"],["2024-07-25T21:53:57.010000"],["2024-07-25T21:53:58.010000"],["2024-07-25T21:53:59.010000"],["2024-07-25T21:54:00.010000"],["2024-07-25T21:54:01.010000"],["2024-07-25T21:54:02.010000"],["2024-07-25T21:54:03.010000"],["2024-07-25T21:54:04.010000"],["2024-07-25T21:54:05.010000"],["2024-07-25T21:54:06.010000"],["2024-07-25T21:54:07.010000"],["2024-07-25T21:54:08.010000"],["2024-07-25T21:54:09.010000"],["2024-07-25T21:54:10.010000"],["2024-07-25T21:54:11.010000"],["2024-07-25T21:54:12.010000"],["2024-07-25T21:54:13.010000"],["2024-07-25T21:54:14.010000"],["2024-07-25T21:54:15.010000"],["2024-07-25T21:54:16.010000"],["2024-07-25T21:54:17.010000"],["2024-07-25T21:54:18.010000"],["2024-07-25T21:54:19.010000"],["2024-07-25T21:54:20.010000"],["2024-07-25T21:54:21.010000"],["2024-07-25T21:54:22.010000"],["2024-07-25T21:54:23.010000"],["2024-07-25T21:54:24.010000"],["2024-07-25T21:54:25.010000"],["2024-07-25T21:54:26.010000"],["2024-07-25T21:54:27.010000"],["2024-07-25T21:54:28.010000"],["2024-07-25T21:54:29.010000"],["2024-07-25T21:54:30.010000"],["2024-07-25T21:54:31.010000"],["2024-07-25T21:54:32.010000"],["2024-07-25T21:54:33.010000"],["2024-07-25T21:54:34.010000"],["2024-07-25T21:54:35.010000"],["2024-07-25T21:54:36.010000"],["2024-07-25T21:54:37.010000"],["2024-07-25T21:54:38.010000"],["2024-07-25T21:54:39.010000"],["2024-07-25T21:54:40.010000"],["2024-07-25T21:54:41.010000"],["2024-07-25T21:54:42.010000"],["2024-07-25T21:54:43.010000"],["2024-07-25T21:54:44.010000"],["2024-07-25T21:54:45.010000"],["2024-07-25T21:54:46.010000"],["2024-07-25T21:54:47.010000"],["2024-07-25T21:54:48.010000"],["2024-07-25T21:54:49.010000"],["2024-07-25T21:54:50.010000"],["2024-07-25T21:54:51.010000"],["2024-07-25T21:54:52.010000"],["2024-07-25T21:54:53.010000"],["2024-07-25T21:54:54.010000"],["2024-07-25T21:54:55.010000"],["2024-07-25T21:54:56.010000"],["2024-07-25T21:54:57.010000"],["2024-07-25T21:54:58.010000"],["2024-07-25T21:54:59.010000"],["2024-07-25T21:55:00.010000"],["2024-07-25T21:55:01.010000"],["2024-07-25T21:55:02.010000"],["2024-07-25T21:55:03.010000"],["2024-07-25T21:55:04.010000"],["2024-07-25T21:55:05.010000"],["2024-07-25T21:55:06.010000"],["2024-07-25T21:55:07.010000"],["2024-07-25T21:55:08.010000"],["2024-07-25T21:55:09.010000"],["2024-07-25T21:55:10.010000"],["2024-07-25T21:55:11.010000"],["2024-07-25T21:55:12.010000"],["2024-07-25T21:55:13.010000"],["2024-07-25T21:55:14.010000"],["2024-07-25T21:55:15.010000"],["2024-07-25T21:55:16.010000"],["2024-07-25T21:55:17.010000"],["2024-07-25T21:55:18.010000"],["2024-07-25T21:55:19.010000"],["2024-07-25T21:55:20.010000"],["2024-07-25T21:55:21.010000"],["2024-07-25T21:55:22.010000"],["2024-07-25T21:55:23.010000"],["2024-07-25T21:55:24.010000"],["2024-07-25T21:55:25.010000"],["2024-07-25T21:55:26.010000"],["2024-07-25T21:55:27.010000"],["2024-07-25T21:55:28.010000"],["2024-07-25T21:55:29.010000"],["2024-07-25T21:55:30.010000"],["2024-07-25T21:55:31.010000"],["2024-07-25T21:55:32.010000"],["2024-07-25T21:55:33.010000"],["2024-07-25T21:55:34.010000"],["2024-07-25T21:55:35.010000"],["2024-07-25T21:55:36.010000"],["2024-07-25T21:55:37.010000"],["2024-07-25T21:55:38.010000"],["2024-07-25T21:55:39.010000"],["2024-07-25T21:55:40.010000"],["2024-07-25T21:55:41.010000"],["2024-07-25T21:55:42.010000"],["2024-07-25T21:55:43.010000"],["2024-07-25T21:55:44.010000"],["2024-07-25T21:55:45.010000"],["2024-07-25T21:55:46.010000"],["2024-07-25T21:55:47.010000"],["2024-07-25T21:55:48.010000"],["2024-07-25T21:55:49.010000"],["2024-07-25T21:55:50.010000"],["2024-07-25T21:55:51.010000"],["2024-07-25T21:55:52.010000"],["2024-07-25T21:55:53.010000"],["2024-07-25T21:55:54.010000"],["2024-07-25T21:55:55.010000"],["2024-07-25T21:55:56.010000"],["2024-07-25T21:55:57.010000"],["2024-07-25T21:55:58.010000"],["2024-07-25T21:55:59.010000"],["2024-07-25T21:56:00.010000"],["2024-07-25T21:56:01.010000"],["2024-07-25T21:56:02.010000"],["2024-07-25T21:56:03.010000"],["2024-07-25T21:56:04.010000"],["2024-07-25T21:56:05.010000"],["2024-07-25T21:56:06.010000"],["2024-07-25T21:56:07.010000"],["2024-07-25T21:56:08.010000"],["2024-07-25T21:56:09.010000"],["2024-07-25T21:56:10.010000"],["2024-07-25T21:56:11.010000"],["2024-07-25T21:56:12.010000"],["2024-07-25T21:56:13.010000"],["2024-07-25T21:56:14.010000"],["2024-07-25T21:56:15.010000"],["2024-07-25T21:56:16.010000"],["2024-07-25T21:56:17.010000"],["2024-07-25T21:56:18.010000"],["2024-07-25T21:56:19.010000"],["2024-07-25T21:56:20.010000"],["2024-07-25T21:56:21.010000"],["2024-07-25T21:56:22.010000"],["2024-07-25T21:56:23.010000"],["2024-07-25T21:56:24.010000"],["2024-07-25T21:56:25.010000"],["2024-07-25T21:56:26.010000"],["2024-07-25T21:56:27.010000"],["2024-07-25T21:56:28.010000"],["2024-07-25T21:56:29.010000"],["2024-07-25T21:56:30.010000"],["2024-07-25T21:56:31.010000"],["2024-07-25T21:56:32.010000"],["2024-07-25T21:56:33.010000"],["2024-07-25T21:56:34.010000"],["2024-07-25T21:56:35.010000"],["2024-07-25T21:56:36.010000"],["2024-07-25T21:56:37.010000"],["2024-07-25T21:56:38.010000"],["2024-07-25T21:56:39.010000"],["2024-07-25T21:56:40.010000"],["2024-07-25T21:56:41.010000"],["2024-07-25T21:56:42.010000"],["2024-07-25T21:56:43.010000"],["2024-07-25T21:56:44.010000"],["2024-07-25T21:56:45.010000"],["2024-07-25T21:56:46.010000"],["2024-07-25T21:56:47.010000"],["2024-07-25T21:56:48.010000"],["2024-07-25T21:56:49.010000"],["2024-07-25T21:56:50.010000"],["2024-07-25T21:56:51.010000"],["2024-07-25T21:56:52.010000"],["2024-07-25T21:56:53.010000"],["2024-07-25T21:56:54.010000"],["2024-07-25T21:56:55.010000"],["2024-07-25T21:56:56.010000"],["2024-07-25T21:56:57.010000"],["2024-07-25T21:56:58.010000"],["2024-07-25T21:56:59.010000"],["2024-07-25T21:57:00.010000"],["2024-07-25T21:57:01.010000"],["2024-07-25T21:57:02.010000"],["2024-07-25T21:57:03.010000"],["2024-07-25T21:57:04.010000"],["2024-07-25T21:57:05.010000"],["2024-07-25T21:57:06.010000"],["2024-07-25T21:57:07.010000"],["2024-07-25T21:57:08.010000"],["2024-07-25T21:57:09.010000"],["2024-07-25T21:57:10.010000"],["2024-07-25T21:57:11.010000"],["2024-07-25T21:57:12.010000"],["2024-07-25T21:57:13.010000"],["2024-07-25T21:57:14.010000"],["2024-07-25T21:57:15.010000"],["2024-07-25T21:57:16.010000"],["2024-07-25T21:57:17.010000"],["2024-07-25T21:57:18.010000"],["2024-07-25T21:57:19.010000"],["2024-07-25T21:57:20.010000"],["2024-07-25T21:57:21.010000"],["2024-07-25T21:57:22.010000"],["2024-07-25T21:57:23.010000"],["2024-07-25T21:57:24.010000"],["2024-07-25T21:57:25.010000"],["2024-07-25T21:57:26.010000"],["2024-07-25T21:57:27.010000"],["2024-07-25T21:57:28.010000"],["2024-07-25T21:57:29.010000"],["2024-07-25T21:57:30.010000"],["2024-07-25T21:57:31.010000"],["2024-07-25T21:57:32.010000"],["2024-07-25T21:57:33.010000"],["2024-07-25T21:57:34.010000"],["2024-07-25T21:57:35.010000"],["2024-07-25T21:57:36.010000"],["2024-07-25T21:57:37.010000"],["2024-07-25T21:57:38.010000"],["2024-07-25T21:57:39.010000"],["2024-07-25T21:57:40.010000"],["2024-07-25T21:57:41.010000"],["2024-07-25T21:57:42.010000"],["2024-07-25T21:57:43.010000"],["2024-07-25T21:57:44.010000"],["2024-07-25T21:57:45.010000"],["2024-07-25T21:57:46.010000"],["2024-07-25T21:57:47.010000"],["2024-07-25T21:57:48.010000"],["2024-07-25T21:57:49.010000"],["2024-07-25T21:57:50.010000"],["2024-07-25T21:57:51.010000"],["2024-07-25T21:57:52.010000"],["2024-07-25T21:57:53.010000"],["2024-07-25T21:57:54.010000"],["2024-07-25T21:57:55.010000"],["2024-07-25T21:57:56.010000"],["2024-07-25T21:57:57.010000"],["2024-07-25T21:57:58.010000"],["2024-07-25T21:57:59.010000"],["2024-07-25T21:58:00.010000"],["2024-07-25T21:58:01.010000"],["2024-07-25T21:58:02.010000"],["2024-07-25T21:58:03.010000"],["2024-07-25T21:58:04.010000"],["2024-07-25T21:58:05.010000"],["2024-07-25T21:58:06.010000"],["2024-07-25T21:58:07.010000"],["2024-07-25T21:58:08.010000"],["2024-07-25T21:58:09.010000"],["2024-07-25T21:58:10.010000"],["2024-07-25T21:58:11.010000"],["2024-07-25T21:58:12.010000"],["2024-07-25T21:58:13.010000"],["2024-07-25T21:58:14.010000"],["2024-07-25T21:58:15.010000"],["2024-07-25T21:58:16.010000"],["2024-07-25T21:58:17.010000"],["2024-07-25T21:58:18.010000"],["2024-07-25T21:58:19.010000"],["2024-07-25T21:58:20.010000"],["2024-07-25T21:58:21.010000"],["2024-07-25T21:58:22.010000"],["2024-07-25T21:58:23.010000"],["2024-07-25T21:58:24.010000"],["2024-07-25T21:58:25.010000"],["2024-07-25T21:58:26.010000"],["2024-07-25T21:58:27.010000"],["2024-07-25T21:58:28.010000"],["2024-07-25T21:58:29.010000"],["2024-07-25T21:58:30.010000"],["2024-07-25T21:58:31.010000"],["2024-07-25T21:58:32.010000"],["2024-07-25T21:58:33.010000"],["2024-07-25T21:58:34.010000"],["2024-07-25T21:58:35.010000"],["2024-07-25T21:58:36.010000"],["2024-07-25T21:58:37.010000"],["2024-07-25T21:58:38.010000"],["2024-07-25T21:58:39.010000"],["2024-07-25T21:58:40.010000"],["2024-07-25T21:58:41.010000"],["2024-07-25T21:58:42.010000"],["2024-07-25T21:58:43.010000"],["2024-07-25T21:58:44.010000"],["2024-07-25T21:58:45.010000"],["2024-07-25T21:58:46.010000"],["2024-07-25T21:58:47.010000"],["2024-07-25T21:58:48.010000"],["2024-07-25T21:58:49.010000"],["2024-07-25T21:58:50.010000"],["2024-07-25T21:58:51.010000"],["2024-07-25T21:58:52.010000"],["2024-07-25T21:58:53.010000"],["2024-07-25T21:58:54.010000"],["2024-07-25T21:58:55.010000"],["2024-07-25T21:58:56.010000"],["2024-07-25T21:58:57.010000"],["2024-07-25T21:58:58.010000"],["2024-07-25T21:58:59.010000"],["2024-07-25T21:59:00.010000"],["2024-07-25T21:59:01.010000"],["2024-07-25T21:59:02.010000"],["2024-07-25T21:59:03.010000"],["2024-07-25T21:59:04.010000"],["2024-07-25T21:59:05.010000"],["2024-07-25T21:59:06.010000"],["2024-07-25T21:59:07.010000"],["2024-07-25T21:59:08.010000"],["2024-07-25T21:59:09.010000"],["2024-07-25T21:59:10.010000"],["2024-07-25T21:59:11.010000"],["2024-07-25T21:59:12.010000"],["2024-07-25T21:59:13.010000"],["2024-07-25T21:59:14.010000"],["2024-07-25T21:59:15.010000"],["2024-07-25T21:59:16.010000"],["2024-07-25T21:59:17.010000"],["2024-07-25T21:59:18.010000"],["2024-07-25T21:59:19.010000"],["2024-07-25T21:59:20.010000"],["2024-07-25T21:59:21.010000"],["2024-07-25T21:59:22.010000"],["2024-07-25T21:59:23.010000"],["2024-07-25T21:59:24.010000"],["2024-07-25T21:59:25.010000"],["2024-07-25T21:59:26.010000"],["2024-07-25T21:59:27.010000"],["2024-07-25T21:59:28.010000"],["2024-07-25T21:59:29.010000"],["2024-07-25T21:59:30.010000"],["2024-07-25T21:59:31.010000"],["2024-07-25T21:59:32.010000"],["2024-07-25T21:59:33.010000"],["2024-07-25T21:59:34.010000"],["2024-07-25T21:59:35.010000"],["2024-07-25T21:59:36.010000"],["2024-07-25T21:59:37.010000"],["2024-07-25T21:59:38.010000"],["2024-07-25T21:59:39.010000"],["2024-07-25T21:59:40.010000"],["2024-07-25T21:59:41.010000"],["2024-07-25T21:59:42.010000"],["2024-07-25T21:59:43.010000"],["2024-07-25T21:59:44.010000"],["2024-07-25T21:59:45.010000"],["2024-07-25T21:59:46.010000"],["2024-07-25T21:59:47.010000"],["2024-07-25T21:59:48.010000"],["2024-07-25T21:59:49.010000"],["2024-07-25T21:59:50.010000"],["2024-07-25T21:59:51.010000"],["2024-07-25T21:59:52.010000"],["2024-07-25T21:59:53.010000"],["2024-07-25T21:59:54.010000"],["2024-07-25T21:59:55.010000"],["2024-07-25T21:59:56.010000"],["2024-07-25T21:59:57.010000"],["2024-07-25T21:59:58.010000"],["2024-07-25T21:59:59.010000"],["2024-07-25T22:00:00.010000"],["2024-07-25T22:00:01.010000"],["2024-07-25T22:00:02.010000"],["2024-07-25T22:00:03.010000"],["2024-07-25T22:00:04.010000"],["2024-07-25T22:00:05.010000"],["2024-07-25T22:00:06.010000"],["2024-07-25T22:00:07.010000"],["2024-07-25T22:00:08.010000"],["2024-07-25T22:00:09.010000"],["2024-07-25T22:00:10.010000"],["2024-07-25T22:00:11.010000"],["2024-07-25T22:00:12.010000"],["2024-07-25T22:00:13.010000"],["2024-07-25T22:00:14.010000"],["2024-07-25T22:00:15.010000"],["2024-07-25T22:00:16.010000"],["2024-07-25T22:00:17.010000"],["2024-07-25T22:00:18.010000"],["2024-07-25T22:00:19.010000"],["2024-07-25T22:00:20.010000"],["2024-07-25T22:00:21.010000"],["2024-07-25T22:00:22.010000"],["2024-07-25T22:00:23.010000"],["2024-07-25T22:00:24.010000"],["2024-07-25T22:00:25.010000"],["2024-07-25T22:00:26.010000"],["2024-07-25T22:00:27.010000"],["2024-07-25T22:00:28.010000"],["2024-07-25T22:00:29.010000"],["2024-07-25T22:00:30.010000"],["2024-07-25T22:00:31.010000"],["2024-07-25T22:00:32.010000"],["2024-07-25T22:00:33.010000"],["2024-07-25T22:00:34.010000"],["2024-07-25T22:00:35.010000"],["2024-07-25T22:00:36.010000"],["2024-07-25T22:00:37.010000"],["2024-07-25T22:00:38.010000"],["2024-07-25T22:00:39.010000"],["2024-07-25T22:00:40.010000"],["2024-07-25T22:00:41.010000"],["2024-07-25T22:00:42.010000"],["2024-07-25T22:00:43.010000"],["2024-07-25T22:00:44.010000"],["2024-07-25T22:00:45.010000"],["2024-07-25T22:00:46.010000"],["2024-07-25T22:00:47.010000"],["2024-07-25T22:00:48.010000"],["2024-07-25T22:00:49.010000"],["2024-07-25T22:00:50.010000"],["2024-07-25T22:00:51.010000"],["2024-07-25T22:00:52.010000"],["2024-07-25T22:00:53.010000"],["2024-07-25T22:00:54.010000"],["2024-07-25T22:00:55.010000"],["2024-07-25T22:00:56.010000"],["2024-07-25T22:00:57.010000"],["2024-07-25T22:00:58.010000"],["2024-07-25T22:00:59.010000"],["2024-07-25T22:01:00.010000"],["2024-07-25T22:01:01.010000"],["2024-07-25T22:01:02.010000"],["2024-07-25T22:01:03.010000"],["2024-07-25T22:01:04.010000"],["2024-07-25T22:01:05.010000"],["2024-07-25T22:01:06.010000"],["2024-07-25T22:01:07.010000"],["2024-07-25T22:01:08.010000"],["2024-07-25T22:01:09.010000"],["2024-07-25T22:01:10.010000"],["2024-07-25T22:01:11.010000"],["2024-07-25T22:01:12.010000"],["2024-07-25T22:01:13.010000"],["2024-07-25T22:01:14.010000"],["2024-07-25T22:01:15.010000"],["2024-07-25T22:01:16.010000"],["2024-07-25T22:01:17.010000"],["2024-07-25T22:01:18.010000"],["2024-07-25T22:01:19.010000"],["2024-07-25T22:01:20.010000"],["2024-07-25T22:01:21.010000"],["2024-07-25T22:01:22.010000"],["2024-07-25T22:01:23.010000"],["2024-07-25T22:01:24.010000"],["2024-07-25T22:01:25.010000"],["2024-07-25T22:01:26.010000"],["2024-07-25T22:01:27.010000"],["2024-07-25T22:01:28.010000"],["2024-07-25T22:01:29.010000"],["2024-07-25T22:01:30.010000"],["2024-07-25T22:01:31.010000"],["2024-07-25T22:01:32.010000"],["2024-07-25T22:01:33.010000"],["2024-07-25T22:01:34.010000"],["2024-07-25T22:01:35.010000"],["2024-07-25T22:01:36.010000"],["2024-07-25T22:01:37.010000"],["2024-07-25T22:01:38.010000"],["2024-07-25T22:01:39.010000"],["2024-07-25T22:01:40.010000"],["2024-07-25T22:01:41.010000"],["2024-07-25T22:01:42.010000"],["2024-07-25T22:01:43.010000"],["2024-07-25T22:01:44.010000"],["2024-07-25T22:01:45.010000"],["2024-07-25T22:01:46.010000"],["2024-07-25T22:01:47.010000"],["2024-07-25T22:01:48.010000"],["2024-07-25T22:01:49.010000"],["2024-07-25T22:01:50.010000"],["2024-07-25T22:01:51.010000"],["2024-07-25T22:01:52.010000"],["2024-07-25T22:01:53.010000"],["2024-07-25T22:01:54.010000"],["2024-07-25T22:01:55.010000"],["2024-07-25T22:01:56.010000"],["2024-07-25T22:01:57.010000"],["2024-07-25T22:01:58.010000"],["2024-07-25T22:01:59.010000"],["2024-07-25T22:02:00.010000"],["2024-07-25T22:02:01.010000"],["2024-07-25T22:02:02.010000"],["2024-07-25T22:02:03.010000"],["2024-07-25T22:02:04.010000"],["2024-07-25T22:02:05.010000"],["2024-07-25T22:02:06.010000"],["2024-07-25T22:02:07.010000"],["2024-07-25T22:02:08.010000"],["2024-07-25T22:02:09.010000"],["2024-07-25T22:02:10.010000"],["2024-07-25T22:02:11.010000"],["2024-07-25T22:02:12.010000"],["2024-07-25T22:02:13.010000"],["2024-07-25T22:02:14.010000"],["2024-07-25T22:02:15.010000"],["2024-07-25T22:02:16.010000"],["2024-07-25T22:02:17.010000"],["2024-07-25T22:02:18.010000"],["2024-07-25T22:02:19.010000"],["2024-07-25T22:02:20.010000"],["2024-07-25T22:02:21.010000"],["2024-07-25T22:02:22.010000"],["2024-07-25T22:02:23.010000"],["2024-07-25T22:02:24.010000"],["2024-07-25T22:02:25.010000"],["2024-07-25T22:02:26.010000"],["2024-07-25T22:02:27.010000"],["2024-07-25T22:02:28.010000"],["2024-07-25T22:02:29.010000"],["2024-07-25T22:02:30.010000"],["2024-07-25T22:02:31.010000"],["2024-07-25T22:02:32.010000"],["2024-07-25T22:02:33.010000"],["2024-07-25T22:02:34.010000"],["2024-07-25T22:02:35.010000"],["2024-07-25T22:02:36.010000"],["2024-07-25T22:02:37.010000"],["2024-07-25T22:02:38.010000"],["2024-07-25T22:02:39.010000"],["2024-07-25T22:02:40.010000"],["2024-07-25T22:02:41.010000"],["2024-07-25T22:02:42.010000"],["2024-07-25T22:02:43.010000"],["2024-07-25T22:02:44.010000"],["2024-07-25T22:02:45.010000"],["2024-07-25T22:02:46.010000"],["2024-07-25T22:02:47.010000"],["2024-07-25T22:02:48.010000"],["2024-07-25T22:02:49.010000"],["2024-07-25T22:02:50.010000"],["2024-07-25T22:02:51.010000"],["2024-07-25T22:02:52.010000"],["2024-07-25T22:02:53.010000"],["2024-07-25T22:02:54.010000"],["2024-07-25T22:02:55.010000"],["2024-07-25T22:02:56.010000"],["2024-07-25T22:02:57.010000"],["2024-07-25T22:02:58.010000"],["2024-07-25T22:02:59.010000"],["2024-07-25T22:03:00.010000"],["2024-07-25T22:03:01.010000"],["2024-07-25T22:03:02.010000"],["2024-07-25T22:03:03.010000"],["2024-07-25T22:03:04.010000"],["2024-07-25T22:03:05.010000"],["2024-07-25T22:03:06.010000"],["2024-07-25T22:03:07.010000"],["2024-07-25T22:03:08.010000"],["2024-07-25T22:03:09.010000"],["2024-07-25T22:03:10.010000"],["2024-07-25T22:03:11.010000"],["2024-07-25T22:03:12.010000"],["2024-07-25T22:03:13.010000"],["2024-07-25T22:03:14.010000"],["2024-07-25T22:03:15.010000"],["2024-07-25T22:03:16.010000"],["2024-07-25T22:03:17.010000"],["2024-07-25T22:03:18.010000"],["2024-07-25T22:03:19.010000"],["2024-07-25T22:03:20.010000"],["2024-07-25T22:03:21.010000"],["2024-07-25T22:03:22.010000"],["2024-07-25T22:03:23.010000"],["2024-07-25T22:03:24.010000"],["2024-07-25T22:03:25.010000"],["2024-07-25T22:03:26.010000"],["2024-07-25T22:03:27.010000"],["2024-07-25T22:03:28.010000"],["2024-07-25T22:03:29.010000"],["2024-07-25T22:03:30.010000"],["2024-07-25T22:03:31.010000"],["2024-07-25T22:03:32.010000"],["2024-07-25T22:03:33.010000"],["2024-07-25T22:03:34.010000"],["2024-07-25T22:03:35.010000"],["2024-07-25T22:03:36.010000"],["2024-07-25T22:03:37.010000"],["2024-07-25T22:03:38.010000"],["2024-07-25T22:03:39.010000"],["2024-07-25T22:03:40.010000"],["2024-07-25T22:03:41.010000"],["2024-07-25T22:03:42.010000"],["2024-07-25T22:03:43.010000"],["2024-07-25T22:03:44.010000"],["2024-07-25T22:03:45.010000"],["2024-07-25T22:03:46.010000"],["2024-07-25T22:03:47.010000"],["2024-07-25T22:03:48.010000"],["2024-07-25T22:03:49.010000"],["2024-07-25T22:03:50.010000"],["2024-07-25T22:03:51.010000"],["2024-07-25T22:03:52.010000"],["2024-07-25T22:03:53.010000"],["2024-07-25T22:03:54.010000"],["2024-07-25T22:03:55.010000"],["2024-07-25T22:03:56.010000"],["2024-07-25T22:03:57.010000"],["2024-07-25T22:03:58.010000"],["2024-07-25T22:03:59.010000"],["2024-07-25T22:04:00.010000"],["2024-07-25T22:04:01.010000"],["2024-07-25T22:04:02.010000"],["2024-07-25T22:04:03.010000"],["2024-07-25T22:04:04.010000"],["2024-07-25T22:04:05.010000"],["2024-07-25T22:04:06.010000"],["2024-07-25T22:04:07.010000"],["2024-07-25T22:04:08.010000"],["2024-07-25T22:04:09.010000"],["2024-07-25T22:04:10.010000"],["2024-07-25T22:04:11.010000"],["2024-07-25T22:04:12.010000"],["2024-07-25T22:04:13.010000"],["2024-07-25T22:04:14.010000"],["2024-07-25T22:04:15.010000"],["2024-07-25T22:04:16.010000"],["2024-07-25T22:04:17.010000"],["2024-07-25T22:04:18.010000"],["2024-07-25T22:04:19.010000"],["2024-07-25T22:04:20.010000"],["2024-07-25T22:04:21.010000"],["2024-07-25T22:04:22.010000"],["2024-07-25T22:04:23.010000"],["2024-07-25T22:04:24.010000"],["2024-07-25T22:04:25.010000"],["2024-07-25T22:04:26.010000"],["2024-07-25T22:04:27.010000"],["2024-07-25T22:04:28.010000"],["2024-07-25T22:04:29.010000"],["2024-07-25T22:04:30.010000"],["2024-07-25T22:04:31.010000"],["2024-07-25T22:04:32.010000"],["2024-07-25T22:04:33.010000"],["2024-07-25T22:04:34.010000"],["2024-07-25T22:04:35.010000"],["2024-07-25T22:04:36.010000"],["2024-07-25T22:04:37.010000"],["2024-07-25T22:04:38.010000"],["2024-07-25T22:04:39.010000"],["2024-07-25T22:04:40.010000"],["2024-07-25T22:04:41.010000"],["2024-07-25T22:04:42.010000"],["2024-07-25T22:04:43.010000"],["2024-07-25T22:04:44.010000"],["2024-07-25T22:04:45.010000"],["2024-07-25T22:04:46.010000"],["2024-07-25T22:04:47.010000"],["2024-07-25T22:04:48.010000"],["2024-07-25T22:04:49.010000"],["2024-07-25T22:04:50.010000"],["2024-07-25T22:04:51.010000"],["2024-07-25T22:04:52.010000"],["2024-07-25T22:04:53.010000"],["2024-07-25T22:04:54.010000"],["2024-07-25T22:04:55.010000"],["2024-07-25T22:04:56.010000"],["2024-07-25T22:04:57.010000"],["2024-07-25T22:04:58.010000"],["2024-07-25T22:04:59.010000"],["2024-07-25T22:05:00.010000"],["2024-07-25T22:05:01.010000"],["2024-07-25T22:05:02.010000"],["2024-07-25T22:05:03.010000"],["2024-07-25T22:05:04.010000"],["2024-07-25T22:05:05.010000"],["2024-07-25T22:05:06.010000"],["2024-07-25T22:05:07.010000"],["2024-07-25T22:05:08.010000"],["2024-07-25T22:05:09.010000"],["2024-07-25T22:05:10.010000"],["2024-07-25T22:05:11.010000"],["2024-07-25T22:05:12.010000"],["2024-07-25T22:05:13.010000"],["2024-07-25T22:05:14.010000"],["2024-07-25T22:05:15.010000"],["2024-07-25T22:05:16.010000"],["2024-07-25T22:05:17.010000"],["2024-07-25T22:05:18.010000"],["2024-07-25T22:05:19.010000"],["2024-07-25T22:05:20.010000"],["2024-07-25T22:05:21.010000"],["2024-07-25T22:05:22.010000"],["2024-07-25T22:05:23.010000"],["2024-07-25T22:05:24.010000"],["2024-07-25T22:05:25.010000"],["2024-07-25T22:05:26.010000"],["2024-07-25T22:05:27.010000"],["2024-07-25T22:05:28.010000"],["2024-07-25T22:05:29.010000"],["2024-07-25T22:05:30.010000"],["2024-07-25T22:05:31.010000"],["2024-07-25T22:05:32.010000"],["2024-07-25T22:05:33.010000"],["2024-07-25T22:05:34.010000"],["2024-07-25T22:05:35.010000"],["2024-07-25T22:05:36.010000"],["2024-07-25T22:05:37.010000"],["2024-07-25T22:05:38.010000"],["2024-07-25T22:05:39.010000"],["2024-07-25T22:05:40.010000"],["2024-07-25T22:05:41.010000"],["2024-07-25T22:05:42.010000"],["2024-07-25T22:05:43.010000"],["2024-07-25T22:05:44.010000"],["2024-07-25T22:05:45.010000"],["2024-07-25T22:05:46.010000"],["2024-07-25T22:05:47.010000"],["2024-07-25T22:05:48.010000"],["2024-07-25T22:05:49.010000"],["2024-07-25T22:05:50.010000"],["2024-07-25T22:05:51.010000"],["2024-07-25T22:05:52.010000"],["2024-07-25T22:05:53.010000"],["2024-07-25T22:05:54.010000"],["2024-07-25T22:05:55.010000"],["2024-07-25T22:05:56.010000"],["2024-07-25T22:05:57.010000"],["2024-07-25T22:05:58.010000"],["2024-07-25T22:05:59.010000"],["2024-07-25T22:06:00.010000"],["2024-07-25T22:06:01.010000"],["2024-07-25T22:06:02.010000"],["2024-07-25T22:06:03.010000"],["2024-07-25T22:06:04.010000"],["2024-07-25T22:06:05.010000"],["2024-07-25T22:06:06.010000"],["2024-07-25T22:06:07.010000"],["2024-07-25T22:06:08.010000"],["2024-07-25T22:06:09.010000"],["2024-07-25T22:06:10.010000"],["2024-07-25T22:06:11.010000"],["2024-07-25T22:06:12.010000"],["2024-07-25T22:06:13.010000"],["2024-07-25T22:06:14.010000"],["2024-07-25T22:06:15.010000"],["2024-07-25T22:06:16.010000"],["2024-07-25T22:06:17.010000"],["2024-07-25T22:06:18.010000"],["2024-07-25T22:06:19.010000"],["2024-07-25T22:06:20.010000"],["2024-07-25T22:06:21.010000"],["2024-07-25T22:06:22.010000"],["2024-07-25T22:06:23.010000"],["2024-07-25T22:06:24.010000"],["2024-07-25T22:06:25.010000"],["2024-07-25T22:06:26.010000"],["2024-07-25T22:06:27.010000"],["2024-07-25T22:06:28.010000"],["2024-07-25T22:06:29.010000"],["2024-07-25T22:06:30.010000"],["2024-07-25T22:06:31.010000"],["2024-07-25T22:06:32.010000"],["2024-07-25T22:06:33.010000"],["2024-07-25T22:06:34.010000"],["2024-07-25T22:06:35.010000"],["2024-07-25T22:06:36.010000"],["2024-07-25T22:06:37.010000"],["2024-07-25T22:06:38.010000"],["2024-07-25T22:06:39.010000"],["2024-07-25T22:06:40.010000"],["2024-07-25T22:06:41.010000"],["2024-07-25T22:06:42.010000"],["2024-07-25T22:06:43.010000"],["2024-07-25T22:06:44.010000"],["2024-07-25T22:06:45.010000"],["2024-07-25T22:06:46.010000"],["2024-07-25T22:06:47.010000"],["2024-07-25T22:06:48.010000"],["2024-07-25T22:06:49.010000"],["2024-07-25T22:06:50.010000"],["2024-07-25T22:06:51.010000"],["2024-07-25T22:06:52.010000"],["2024-07-25T22:06:53.010000"],["2024-07-25T22:06:54.010000"],["2024-07-25T22:06:55.010000"],["2024-07-25T22:06:56.010000"],["2024-07-25T22:06:57.010000"],["2024-07-25T22:06:58.010000"],["2024-07-25T22:06:59.010000"],["2024-07-25T22:07:00.010000"],["2024-07-25T22:07:01.010000"],["2024-07-25T22:07:02.010000"],["2024-07-25T22:07:03.010000"],["2024-07-25T22:07:04.010000"],["2024-07-25T22:07:05.010000"],["2024-07-25T22:07:06.010000"],["2024-07-25T22:07:07.010000"],["2024-07-25T22:07:08.010000"],["2024-07-25T22:07:09.010000"],["2024-07-25T22:07:10.010000"],["2024-07-25T22:07:11.010000"],["2024-07-25T22:07:12.010000"],["2024-07-25T22:07:13.010000"],["2024-07-25T22:07:14.010000"],["2024-07-25T22:07:15.010000"],["2024-07-25T22:07:16.010000"],["2024-07-25T22:07:17.010000"],["2024-07-25T22:07:18.010000"],["2024-07-25T22:07:19.010000"],["2024-07-25T22:07:20.010000"],["2024-07-25T22:07:21.010000"],["2024-07-25T22:07:22.010000"],["2024-07-25T22:07:23.010000"],["2024-07-25T22:07:24.010000"],["2024-07-25T22:07:25.010000"],["2024-07-25T22:07:26.010000"],["2024-07-25T22:07:27.010000"],["2024-07-25T22:07:28.010000"],["2024-07-25T22:07:29.010000"],["2024-07-25T22:07:30.010000"],["2024-07-25T22:07:31.010000"],["2024-07-25T22:07:32.010000"],["2024-07-25T22:07:33.010000"],["2024-07-25T22:07:34.010000"],["2024-07-25T22:07:35.010000"],["2024-07-25T22:07:36.010000"],["2024-07-25T22:07:37.010000"],["2024-07-25T22:07:38.010000"],["2024-07-25T22:07:39.010000"],["2024-07-25T22:07:40.010000"],["2024-07-25T22:07:41.010000"],["2024-07-25T22:07:42.010000"],["2024-07-25T22:07:43.010000"],["2024-07-25T22:07:44.010000"],["2024-07-25T22:07:45.010000"],["2024-07-25T22:07:46.010000"],["2024-07-25T22:07:47.010000"],["2024-07-25T22:07:48.010000"],["2024-07-25T22:07:49.010000"],["2024-07-25T22:07:50.010000"],["2024-07-25T22:07:51.010000"],["2024-07-25T22:07:52.010000"],["2024-07-25T22:07:53.010000"],["2024-07-25T22:07:54.010000"],["2024-07-25T22:07:55.010000"],["2024-07-25T22:07:56.010000"],["2024-07-25T22:07:57.010000"],["2024-07-25T22:07:58.010000"],["2024-07-25T22:07:59.010000"],["2024-07-25T22:08:00.010000"],["2024-07-25T22:08:01.010000"],["2024-07-25T22:08:02.010000"],["2024-07-25T22:08:03.010000"],["2024-07-25T22:08:04.010000"],["2024-07-25T22:08:05.010000"],["2024-07-25T22:08:06.010000"],["2024-07-25T22:08:07.010000"],["2024-07-25T22:08:08.010000"],["2024-07-25T22:08:09.010000"],["2024-07-25T22:08:10.010000"],["2024-07-25T22:08:11.010000"],["2024-07-25T22:08:12.010000"],["2024-07-25T22:08:13.010000"],["2024-07-25T22:08:14.010000"],["2024-07-25T22:08:15.010000"],["2024-07-25T22:08:16.010000"],["2024-07-25T22:08:17.010000"],["2024-07-25T22:08:18.010000"],["2024-07-25T22:08:19.010000"],["2024-07-25T22:08:20.010000"],["2024-07-25T22:08:21.010000"],["2024-07-25T22:08:22.010000"],["2024-07-25T22:08:23.010000"],["2024-07-25T22:08:24.010000"],["2024-07-25T22:08:25.010000"],["2024-07-25T22:08:26.010000"],["2024-07-25T22:08:27.010000"],["2024-07-25T22:08:28.010000"],["2024-07-25T22:08:29.010000"],["2024-07-25T22:08:30.010000"],["2024-07-25T22:08:31.010000"],["2024-07-25T22:08:32.010000"],["2024-07-25T22:08:33.010000"],["2024-07-25T22:08:34.010000"],["2024-07-25T22:08:35.010000"],["2024-07-25T22:08:36.010000"],["2024-07-25T22:08:37.010000"],["2024-07-25T22:08:38.010000"],["2024-07-25T22:08:39.010000"],["2024-07-25T22:08:40.010000"],["2024-07-25T22:08:41.010000"],["2024-07-25T22:08:42.010000"],["2024-07-25T22:08:43.010000"],["2024-07-25T22:08:44.010000"],["2024-07-25T22:08:45.010000"],["2024-07-25T22:08:46.010000"],["2024-07-25T22:08:47.010000"],["2024-07-25T22:08:48.010000"],["2024-07-25T22:08:49.010000"],["2024-07-25T22:08:50.010000"],["2024-07-25T22:08:51.010000"],["2024-07-25T22:08:52.010000"],["2024-07-25T22:08:53.010000"],["2024-07-25T22:08:54.010000"],["2024-07-25T22:08:55.010000"],["2024-07-25T22:08:56.010000"],["2024-07-25T22:08:57.010000"],["2024-07-25T22:08:58.010000"],["2024-07-25T22:08:59.010000"],["2024-07-25T22:09:00.010000"],["2024-07-25T22:09:01.010000"],["2024-07-25T22:09:02.010000"],["2024-07-25T22:09:03.010000"],["2024-07-25T22:09:04.010000"],["2024-07-25T22:09:05.010000"],["2024-07-25T22:09:06.010000"],["2024-07-25T22:09:07.010000"],["2024-07-25T22:09:08.010000"],["2024-07-25T22:09:09.010000"],["2024-07-25T22:09:10.010000"],["2024-07-25T22:09:11.010000"],["2024-07-25T22:09:12.010000"],["2024-07-25T22:09:13.010000"],["2024-07-25T22:09:14.010000"],["2024-07-25T22:09:15.010000"],["2024-07-25T22:09:16.010000"],["2024-07-25T22:09:17.010000"],["2024-07-25T22:09:18.010000"],["2024-07-25T22:09:19.010000"],["2024-07-25T22:09:20.010000"],["2024-07-25T22:09:21.010000"],["2024-07-25T22:09:22.010000"],["2024-07-25T22:09:23.010000"],["2024-07-25T22:09:24.010000"],["2024-07-25T22:09:25.010000"],["2024-07-25T22:09:26.010000"],["2024-07-25T22:09:27.010000"],["2024-07-25T22:09:28.010000"],["2024-07-25T22:09:29.010000"],["2024-07-25T22:09:30.010000"],["2024-07-25T22:09:31.010000"],["2024-07-25T22:09:32.010000"],["2024-07-25T22:09:33.010000"],["2024-07-25T22:09:34.010000"],["2024-07-25T22:09:35.010000"],["2024-07-25T22:09:36.010000"],["2024-07-25T22:09:37.010000"],["2024-07-25T22:09:38.010000"],["2024-07-25T22:09:39.010000"],["2024-07-25T22:09:40.010000"],["2024-07-25T22:09:41.010000"],["2024-07-25T22:09:42.010000"],["2024-07-25T22:09:43.010000"],["2024-07-25T22:09:44.010000"],["2024-07-25T22:09:45.010000"],["2024-07-25T22:09:46.010000"],["2024-07-25T22:09:47.010000"],["2024-07-25T22:09:48.010000"],["2024-07-25T22:09:49.010000"],["2024-07-25T22:09:50.010000"],["2024-07-25T22:09:51.010000"],["2024-07-25T22:09:52.010000"],["2024-07-25T22:09:53.010000"],["2024-07-25T22:09:54.010000"],["2024-07-25T22:09:55.010000"],["2024-07-25T22:09:56.010000"],["2024-07-25T22:09:57.010000"],["2024-07-25T22:09:58.010000"],["2024-07-25T22:09:59.010000"],["2024-07-25T22:10:00.010000"],["2024-07-25T22:10:01.010000"],["2024-07-25T22:10:02.010000"],["2024-07-25T22:10:03.010000"],["2024-07-25T22:10:04.010000"],["2024-07-25T22:10:05.010000"],["2024-07-25T22:10:06.010000"],["2024-07-25T22:10:07.010000"],["2024-07-25T22:10:08.010000"],["2024-07-25T22:10:09.010000"],["2024-07-25T22:10:10.010000"],["2024-07-25T22:10:11.010000"],["2024-07-25T22:10:12.010000"],["2024-07-25T22:10:13.010000"],["2024-07-25T22:10:14.010000"],["2024-07-25T22:10:15.010000"],["2024-07-25T22:10:16.010000"],["2024-07-25T22:10:17.010000"],["2024-07-25T22:10:18.010000"],["2024-07-25T22:10:19.010000"],["2024-07-25T22:10:20.010000"],["2024-07-25T22:10:21.010000"],["2024-07-25T22:10:22.010000"],["2024-07-25T22:10:23.010000"],["2024-07-25T22:10:24.010000"],["2024-07-25T22:10:25.010000"],["2024-07-25T22:10:26.010000"],["2024-07-25T22:10:27.010000"],["2024-07-25T22:10:28.010000"],["2024-07-25T22:10:29.010000"],["2024-07-25T22:10:30.010000"],["2024-07-25T22:10:31.010000"],["2024-07-25T22:10:32.010000"],["2024-07-25T22:10:33.010000"],["2024-07-25T22:10:34.010000"],["2024-07-25T22:10:35.010000"],["2024-07-25T22:10:36.010000"],["2024-07-25T22:10:37.010000"],["2024-07-25T22:10:38.010000"],["2024-07-25T22:10:39.010000"],["2024-07-25T22:10:40.010000"],["2024-07-25T22:10:41.010000"],["2024-07-25T22:10:42.010000"],["2024-07-25T22:10:43.010000"],["2024-07-25T22:10:44.010000"],["2024-07-25T22:10:45.010000"],["2024-07-25T22:10:46.010000"],["2024-07-25T22:10:47.010000"],["2024-07-25T22:10:48.010000"],["2024-07-25T22:10:49.010000"],["2024-07-25T22:10:50.010000"],["2024-07-25T22:10:51.010000"],["2024-07-25T22:10:52.010000"],["2024-07-25T22:10:53.010000"],["2024-07-25T22:10:54.010000"],["2024-07-25T22:10:55.010000"],["2024-07-25T22:10:56.010000"],["2024-07-25T22:10:57.010000"],["2024-07-25T22:10:58.010000"],["2024-07-25T22:10:59.010000"],["2024-07-25T22:11:00.010000"],["2024-07-25T22:11:01.010000"],["2024-07-25T22:11:02.010000"],["2024-07-25T22:11:03.010000"],["2024-07-25T22:11:04.010000"],["2024-07-25T22:11:05.010000"],["2024-07-25T22:11:06.010000"],["2024-07-25T22:11:07.010000"],["2024-07-25T22:11:08.010000"],["2024-07-25T22:11:09.010000"],["2024-07-25T22:11:10.010000"],["2024-07-25T22:11:11.010000"],["2024-07-25T22:11:12.010000"],["2024-07-25T22:11:13.010000"],["2024-07-25T22:11:14.010000"],["2024-07-25T22:11:15.010000"],["2024-07-25T22:11:16.010000"],["2024-07-25T22:11:17.010000"],["2024-07-25T22:11:18.010000"],["2024-07-25T22:11:19.010000"],["2024-07-25T22:11:20.010000"],["2024-07-25T22:11:21.010000"],["2024-07-25T22:11:22.010000"],["2024-07-25T22:11:23.010000"],["2024-07-25T22:11:24.010000"],["2024-07-25T22:11:25.010000"],["2024-07-25T22:11:26.010000"],["2024-07-25T22:11:27.010000"],["2024-07-25T22:11:28.010000"],["2024-07-25T22:11:29.010000"],["2024-07-25T22:11:30.010000"],["2024-07-25T22:11:31.010000"],["2024-07-25T22:11:32.010000"],["2024-07-25T22:11:33.010000"],["2024-07-25T22:11:34.010000"],["2024-07-25T22:11:35.010000"],["2024-07-25T22:11:36.010000"],["2024-07-25T22:11:37.010000"],["2024-07-25T22:11:38.010000"],["2024-07-25T22:11:39.010000"],["2024-07-25T22:11:40.010000"],["2024-07-25T22:11:41.010000"],["2024-07-25T22:11:42.010000"],["2024-07-25T22:11:43.010000"],["2024-07-25T22:11:44.010000"],["2024-07-25T22:11:45.010000"],["2024-07-25T22:11:46.010000"],["2024-07-25T22:11:47.010000"],["2024-07-25T22:11:48.010000"],["2024-07-25T22:11:49.010000"],["2024-07-25T22:11:50.010000"],["2024-07-25T22:11:51.010000"],["2024-07-25T22:11:52.010000"],["2024-07-25T22:11:53.010000"],["2024-07-25T22:11:54.010000"],["2024-07-25T22:11:55.010000"],["2024-07-25T22:11:56.010000"],["2024-07-25T22:11:57.010000"],["2024-07-25T22:11:58.010000"],["2024-07-25T22:11:59.010000"],["2024-07-25T22:12:00.010000"],["2024-07-25T22:12:01.010000"],["2024-07-25T22:12:02.010000"],["2024-07-25T22:12:03.010000"],["2024-07-25T22:12:04.010000"],["2024-07-25T22:12:05.010000"],["2024-07-25T22:12:06.010000"],["2024-07-25T22:12:07.010000"],["2024-07-25T22:12:08.010000"],["2024-07-25T22:12:09.010000"],["2024-07-25T22:12:10.010000"],["2024-07-25T22:12:11.010000"],["2024-07-25T22:12:12.010000"],["2024-07-25T22:12:13.010000"],["2024-07-25T22:12:14.010000"],["2024-07-25T22:12:15.010000"],["2024-07-25T22:12:16.010000"],["2024-07-25T22:12:17.010000"],["2024-07-25T22:12:18.010000"],["2024-07-25T22:12:19.010000"],["2024-07-25T22:12:20.010000"],["2024-07-25T22:12:21.010000"],["2024-07-25T22:12:22.010000"],["2024-07-25T22:12:23.010000"],["2024-07-25T22:12:24.010000"],["2024-07-25T22:12:25.010000"],["2024-07-25T22:12:26.010000"],["2024-07-25T22:12:27.010000"],["2024-07-25T22:12:28.010000"],["2024-07-25T22:12:29.010000"],["2024-07-25T22:12:30.010000"],["2024-07-25T22:12:31.010000"],["2024-07-25T22:12:32.010000"],["2024-07-25T22:12:33.010000"],["2024-07-25T22:12:34.010000"],["2024-07-25T22:12:35.010000"],["2024-07-25T22:12:36.010000"],["2024-07-25T22:12:37.010000"],["2024-07-25T22:12:38.010000"],["2024-07-25T22:12:39.010000"],["2024-07-25T22:12:40.010000"],["2024-07-25T22:12:41.010000"],["2024-07-25T22:12:42.010000"],["2024-07-25T22:12:43.010000"],["2024-07-25T22:12:44.010000"],["2024-07-25T22:12:45.010000"],["2024-07-25T22:12:46.010000"],["2024-07-25T22:12:47.010000"],["2024-07-25T22:12:48.010000"],["2024-07-25T22:12:49.010000"],["2024-07-25T22:12:50.010000"],["2024-07-25T22:12:51.010000"],["2024-07-25T22:12:52.010000"],["2024-07-25T22:12:53.010000"],["2024-07-25T22:12:54.010000"],["2024-07-25T22:12:55.010000"],["2024-07-25T22:12:56.010000"],["2024-07-25T22:12:57.010000"],["2024-07-25T22:12:58.010000"],["2024-07-25T22:12:59.010000"],["2024-07-25T22:13:00.010000"],["2024-07-25T22:13:01.010000"],["2024-07-25T22:13:02.010000"],["2024-07-25T22:13:03.010000"],["2024-07-25T22:13:04.010000"],["2024-07-25T22:13:05.010000"],["2024-07-25T22:13:06.010000"],["2024-07-25T22:13:07.010000"],["2024-07-25T22:13:08.010000"],["2024-07-25T22:13:09.010000"],["2024-07-25T22:13:10.010000"],["2024-07-25T22:13:11.010000"],["2024-07-25T22:13:12.010000"],["2024-07-25T22:13:13.010000"],["2024-07-25T22:13:14.010000"],["2024-07-25T22:13:15.010000"],["2024-07-25T22:13:16.010000"],["2024-07-25T22:13:17.010000"],["2024-07-25T22:13:18.010000"],["2024-07-25T22:13:19.010000"],["2024-07-25T22:13:20.010000"],["2024-07-25T22:13:21.010000"],["2024-07-25T22:13:22.010000"],["2024-07-25T22:13:23.010000"],["2024-07-25T22:13:24.010000"],["2024-07-25T22:13:25.010000"],["2024-07-25T22:13:26.010000"],["2024-07-25T22:13:27.010000"],["2024-07-25T22:13:28.010000"],["2024-07-25T22:13:29.010000"],["2024-07-25T22:13:30.010000"],["2024-07-25T22:13:31.010000"],["2024-07-25T22:13:32.010000"],["2024-07-25T22:13:33.010000"],["2024-07-25T22:13:34.010000"],["2024-07-25T22:13:35.010000"],["2024-07-25T22:13:36.010000"],["2024-07-25T22:13:37.010000"],["2024-07-25T22:13:38.010000"],["2024-07-25T22:13:39.010000"],["2024-07-25T22:13:40.010000"],["2024-07-25T22:13:41.010000"],["2024-07-25T22:13:42.010000"],["2024-07-25T22:13:43.010000"],["2024-07-25T22:13:44.010000"],["2024-07-25T22:13:45.010000"],["2024-07-25T22:13:46.010000"],["2024-07-25T22:13:47.010000"],["2024-07-25T22:13:48.010000"],["2024-07-25T22:13:49.010000"],["2024-07-25T22:13:50.010000"],["2024-07-25T22:13:51.010000"],["2024-07-25T22:13:52.010000"],["2024-07-25T22:13:53.010000"],["2024-07-25T22:13:54.010000"],["2024-07-25T22:13:55.010000"],["2024-07-25T22:13:56.010000"],["2024-07-25T22:13:57.010000"],["2024-07-25T22:13:58.010000"],["2024-07-25T22:13:59.010000"],["2024-07-25T22:14:00.010000"],["2024-07-25T22:14:01.010000"],["2024-07-25T22:14:02.010000"],["2024-07-25T22:14:03.010000"],["2024-07-25T22:14:04.010000"],["2024-07-25T22:14:05.010000"],["2024-07-25T22:14:06.010000"],["2024-07-25T22:14:07.010000"],["2024-07-25T22:14:08.010000"],["2024-07-25T22:14:09.010000"],["2024-07-25T22:14:10.010000"],["2024-07-25T22:14:11.010000"],["2024-07-25T22:14:12.010000"],["2024-07-25T22:14:13.010000"],["2024-07-25T22:14:14.010000"],["2024-07-25T22:14:15.010000"],["2024-07-25T22:14:16.010000"],["2024-07-25T22:14:17.010000"],["2024-07-25T22:14:18.010000"],["2024-07-25T22:14:19.010000"],["2024-07-25T22:14:20.010000"],["2024-07-25T22:14:21.010000"],["2024-07-25T22:14:22.010000"],["2024-07-25T22:14:23.010000"],["2024-07-25T22:14:24.010000"],["2024-07-25T22:14:25.010000"],["2024-07-25T22:14:26.010000"],["2024-07-25T22:14:27.010000"],["2024-07-25T22:14:28.010000"],["2024-07-25T22:14:29.010000"],["2024-07-25T22:14:30.010000"],["2024-07-25T22:14:31.010000"],["2024-07-25T22:14:32.010000"],["2024-07-25T22:14:33.010000"],["2024-07-25T22:14:34.010000"],["2024-07-25T22:14:35.010000"],["2024-07-25T22:14:36.010000"],["2024-07-25T22:14:37.010000"],["2024-07-25T22:14:38.010000"],["2024-07-25T22:14:39.010000"],["2024-07-25T22:14:40.010000"],["2024-07-25T22:14:41.010000"],["2024-07-25T22:14:42.010000"],["2024-07-25T22:14:43.010000"],["2024-07-25T22:14:44.010000"],["2024-07-25T22:14:45.010000"],["2024-07-25T22:14:46.010000"],["2024-07-25T22:14:47.010000"],["2024-07-25T22:14:48.010000"],["2024-07-25T22:14:49.010000"],["2024-07-25T22:14:50.010000"],["2024-07-25T22:14:51.010000"],["2024-07-25T22:14:52.010000"],["2024-07-25T22:14:53.010000"],["2024-07-25T22:14:54.010000"],["2024-07-25T22:14:55.010000"],["2024-07-25T22:14:56.010000"],["2024-07-25T22:14:57.010000"],["2024-07-25T22:14:58.010000"],["2024-07-25T22:14:59.010000"],["2024-07-25T22:15:00.010000"],["2024-07-25T22:15:01.010000"],["2024-07-25T22:15:02.010000"],["2024-07-25T22:15:03.010000"],["2024-07-25T22:15:04.010000"],["2024-07-25T22:15:05.010000"],["2024-07-25T22:15:06.010000"],["2024-07-25T22:15:07.010000"],["2024-07-25T22:15:08.010000"],["2024-07-25T22:15:09.010000"],["2024-07-25T22:15:10.010000"],["2024-07-25T22:15:11.010000"],["2024-07-25T22:15:12.010000"],["2024-07-25T22:15:13.010000"],["2024-07-25T22:15:14.010000"],["2024-07-25T22:15:15.010000"],["2024-07-25T22:15:16.010000"],["2024-07-25T22:15:17.010000"],["2024-07-25T22:15:18.010000"],["2024-07-25T22:15:19.010000"],["2024-07-25T22:15:20.010000"],["2024-07-25T22:15:21.010000"],["2024-07-25T22:15:22.010000"],["2024-07-25T22:15:23.010000"],["2024-07-25T22:15:24.010000"],["2024-07-25T22:15:25.010000"],["2024-07-25T22:15:26.010000"],["2024-07-25T22:15:27.010000"],["2024-07-25T22:15:28.010000"],["2024-07-25T22:15:29.010000"],["2024-07-25T22:15:30.010000"],["2024-07-25T22:15:31.010000"],["2024-07-25T22:15:32.010000"],["2024-07-25T22:15:33.010000"],["2024-07-25T22:15:34.010000"],["2024-07-25T22:15:35.010000"],["2024-07-25T22:15:36.010000"],["2024-07-25T22:15:37.010000"],["2024-07-25T22:15:38.010000"],["2024-07-25T22:15:39.010000"],["2024-07-25T22:15:40.010000"],["2024-07-25T22:15:41.010000"],["2024-07-25T22:15:42.010000"],["2024-07-25T22:15:43.010000"],["2024-07-25T22:15:44.010000"],["2024-07-25T22:15:45.010000"],["2024-07-25T22:15:46.010000"],["2024-07-25T22:15:47.010000"],["2024-07-25T22:15:48.010000"],["2024-07-25T22:15:49.010000"],["2024-07-25T22:15:50.010000"],["2024-07-25T22:15:51.010000"],["2024-07-25T22:15:52.010000"],["2024-07-25T22:15:53.010000"],["2024-07-25T22:15:54.010000"],["2024-07-25T22:15:55.010000"],["2024-07-25T22:15:56.010000"],["2024-07-25T22:15:57.010000"],["2024-07-25T22:15:58.010000"],["2024-07-25T22:15:59.010000"],["2024-07-25T22:16:00.010000"],["2024-07-25T22:16:01.010000"],["2024-07-25T22:16:02.010000"],["2024-07-25T22:16:03.010000"],["2024-07-25T22:16:04.010000"],["2024-07-25T22:16:05.010000"],["2024-07-25T22:16:06.010000"],["2024-07-25T22:16:07.010000"],["2024-07-25T22:16:08.010000"],["2024-07-25T22:16:09.010000"],["2024-07-25T22:16:10.010000"],["2024-07-25T22:16:11.010000"],["2024-07-25T22:16:12.010000"],["2024-07-25T22:16:13.010000"],["2024-07-25T22:16:14.010000"],["2024-07-25T22:16:15.010000"],["2024-07-25T22:16:16.010000"],["2024-07-25T22:16:17.010000"],["2024-07-25T22:16:18.010000"],["2024-07-25T22:16:19.010000"],["2024-07-25T22:16:20.010000"],["2024-07-25T22:16:21.010000"],["2024-07-25T22:16:22.010000"],["2024-07-25T22:16:23.010000"],["2024-07-25T22:16:24.010000"],["2024-07-25T22:16:25.010000"],["2024-07-25T22:16:26.010000"],["2024-07-25T22:16:27.010000"],["2024-07-25T22:16:28.010000"],["2024-07-25T22:16:29.010000"],["2024-07-25T22:16:30.010000"],["2024-07-25T22:16:31.010000"],["2024-07-25T22:16:32.010000"],["2024-07-25T22:16:33.010000"],["2024-07-25T22:16:34.010000"],["2024-07-25T22:16:35.010000"],["2024-07-25T22:16:36.010000"],["2024-07-25T22:16:37.010000"],["2024-07-25T22:16:38.010000"],["2024-07-25T22:16:39.010000"],["2024-07-25T22:16:40.010000"],["2024-07-25T22:16:41.010000"],["2024-07-25T22:16:42.010000"],["2024-07-25T22:16:43.010000"],["2024-07-25T22:16:44.010000"],["2024-07-25T22:16:45.010000"],["2024-07-25T22:16:46.010000"],["2024-07-25T22:16:47.010000"],["2024-07-25T22:16:48.010000"],["2024-07-25T22:16:49.010000"],["2024-07-25T22:16:50.010000"],["2024-07-25T22:16:51.010000"],["2024-07-25T22:16:52.010000"],["2024-07-25T22:16:53.010000"],["2024-07-25T22:16:54.010000"],["2024-07-25T22:16:55.010000"],["2024-07-25T22:16:56.010000"],["2024-07-25T22:16:57.010000"],["2024-07-25T22:16:58.010000"],["2024-07-25T22:16:59.010000"],["2024-07-25T22:17:00.010000"],["2024-07-25T22:17:01.010000"],["2024-07-25T22:17:02.010000"],["2024-07-25T22:17:03.010000"],["2024-07-25T22:17:04.010000"],["2024-07-25T22:17:05.010000"],["2024-07-25T22:17:06.010000"],["2024-07-25T22:17:07.010000"],["2024-07-25T22:17:08.010000"],["2024-07-25T22:17:09.010000"],["2024-07-25T22:17:10.010000"],["2024-07-25T22:17:11.010000"],["2024-07-25T22:17:12.010000"],["2024-07-25T22:17:13.010000"],["2024-07-25T22:17:14.010000"],["2024-07-25T22:17:15.010000"],["2024-07-25T22:17:16.010000"],["2024-07-25T22:17:17.010000"],["2024-07-25T22:17:18.010000"],["2024-07-25T22:17:19.010000"],["2024-07-25T22:17:20.010000"],["2024-07-25T22:17:21.010000"],["2024-07-25T22:17:22.010000"],["2024-07-25T22:17:23.010000"],["2024-07-25T22:17:24.010000"],["2024-07-25T22:17:25.010000"],["2024-07-25T22:17:26.010000"],["2024-07-25T22:17:27.010000"],["2024-07-25T22:17:28.010000"],["2024-07-25T22:17:29.010000"],["2024-07-25T22:17:30.010000"],["2024-07-25T22:17:31.010000"],["2024-07-25T22:17:32.010000"],["2024-07-25T22:17:33.010000"],["2024-07-25T22:17:34.010000"],["2024-07-25T22:17:35.010000"],["2024-07-25T22:17:36.010000"],["2024-07-25T22:17:37.010000"],["2024-07-25T22:17:38.010000"],["2024-07-25T22:17:39.010000"],["2024-07-25T22:17:40.010000"],["2024-07-25T22:17:41.010000"],["2024-07-25T22:17:42.010000"],["2024-07-25T22:17:43.010000"],["2024-07-25T22:17:44.010000"],["2024-07-25T22:17:45.010000"],["2024-07-25T22:17:46.010000"],["2024-07-25T22:17:47.010000"],["2024-07-25T22:17:48.010000"],["2024-07-25T22:17:49.010000"],["2024-07-25T22:17:50.010000"],["2024-07-25T22:17:51.010000"],["2024-07-25T22:17:52.010000"],["2024-07-25T22:17:53.010000"],["2024-07-25T22:17:54.010000"],["2024-07-25T22:17:55.010000"],["2024-07-25T22:17:56.010000"],["2024-07-25T22:17:57.010000"],["2024-07-25T22:17:58.010000"],["2024-07-25T22:17:59.010000"],["2024-07-25T22:18:00.010000"],["2024-07-25T22:18:01.010000"],["2024-07-25T22:18:02.010000"],["2024-07-25T22:18:03.010000"],["2024-07-25T22:18:04.010000"],["2024-07-25T22:18:05.010000"],["2024-07-25T22:18:06.010000"],["2024-07-25T22:18:07.010000"],["2024-07-25T22:18:08.010000"],["2024-07-25T22:18:09.010000"],["2024-07-25T22:18:10.010000"],["2024-07-25T22:18:11.010000"],["2024-07-25T22:18:12.010000"],["2024-07-25T22:18:13.010000"],["2024-07-25T22:18:14.010000"],["2024-07-25T22:18:15.010000"],["2024-07-25T22:18:16.010000"],["2024-07-25T22:18:17.010000"],["2024-07-25T22:18:18.010000"],["2024-07-25T22:18:19.010000"],["2024-07-25T22:18:20.010000"],["2024-07-25T22:18:21.010000"],["2024-07-25T22:18:22.010000"],["2024-07-25T22:18:23.010000"],["2024-07-25T22:18:24.010000"],["2024-07-25T22:18:25.010000"],["2024-07-25T22:18:26.010000"],["2024-07-25T22:18:27.010000"],["2024-07-25T22:18:28.010000"],["2024-07-25T22:18:29.010000"],["2024-07-25T22:18:30.010000"],["2024-07-25T22:18:31.010000"],["2024-07-25T22:18:32.010000"],["2024-07-25T22:18:33.010000"],["2024-07-25T22:18:34.010000"],["2024-07-25T22:18:35.010000"],["2024-07-25T22:18:36.010000"],["2024-07-25T22:18:37.010000"],["2024-07-25T22:18:38.010000"],["2024-07-25T22:18:39.010000"],["2024-07-25T22:18:40.010000"],["2024-07-25T22:18:41.010000"],["2024-07-25T22:18:42.010000"],["2024-07-25T22:18:43.010000"],["2024-07-25T22:18:44.010000"],["2024-07-25T22:18:45.010000"],["2024-07-25T22:18:46.010000"],["2024-07-25T22:18:47.010000"],["2024-07-25T22:18:48.010000"],["2024-07-25T22:18:49.010000"],["2024-07-25T22:18:50.010000"],["2024-07-25T22:18:51.010000"],["2024-07-25T22:18:52.010000"],["2024-07-25T22:18:53.010000"],["2024-07-25T22:18:54.010000"],["2024-07-25T22:18:55.010000"],["2024-07-25T22:18:56.010000"],["2024-07-25T22:18:57.010000"],["2024-07-25T22:18:58.010000"],["2024-07-25T22:18:59.010000"],["2024-07-25T22:19:00.010000"],["2024-07-25T22:19:01.010000"],["2024-07-25T22:19:02.010000"],["2024-07-25T22:19:03.010000"],["2024-07-25T22:19:04.010000"],["2024-07-25T22:19:05.010000"],["2024-07-25T22:19:06.010000"],["2024-07-25T22:19:07.010000"],["2024-07-25T22:19:08.010000"],["2024-07-25T22:19:09.010000"],["2024-07-25T22:19:10.010000"],["2024-07-25T22:19:11.010000"],["2024-07-25T22:19:12.010000"],["2024-07-25T22:19:13.010000"],["2024-07-25T22:19:14.010000"],["2024-07-25T22:19:15.010000"],["2024-07-25T22:19:16.010000"],["2024-07-25T22:19:17.010000"],["2024-07-25T22:19:18.010000"],["2024-07-25T22:19:19.010000"],["2024-07-25T22:19:20.010000"],["2024-07-25T22:19:21.010000"],["2024-07-25T22:19:22.010000"],["2024-07-25T22:19:23.010000"],["2024-07-25T22:19:24.010000"],["2024-07-25T22:19:25.010000"],["2024-07-25T22:19:26.010000"],["2024-07-25T22:19:27.010000"],["2024-07-25T22:19:28.010000"],["2024-07-25T22:19:29.010000"],["2024-07-25T22:19:30.010000"],["2024-07-25T22:19:31.010000"],["2024-07-25T22:19:32.010000"],["2024-07-25T22:19:33.010000"],["2024-07-25T22:19:34.010000"],["2024-07-25T22:19:35.010000"],["2024-07-25T22:19:36.010000"],["2024-07-25T22:19:37.010000"],["2024-07-25T22:19:38.010000"],["2024-07-25T22:19:39.010000"],["2024-07-25T22:19:40.010000"],["2024-07-25T22:19:41.010000"],["2024-07-25T22:19:42.010000"],["2024-07-25T22:19:43.010000"],["2024-07-25T22:19:44.010000"],["2024-07-25T22:19:45.010000"],["2024-07-25T22:19:46.010000"],["2024-07-25T22:19:47.010000"],["2024-07-25T22:19:48.010000"],["2024-07-25T22:19:49.010000"],["2024-07-25T22:19:50.010000"],["2024-07-25T22:19:51.010000"],["2024-07-25T22:19:52.010000"],["2024-07-25T22:19:53.010000"],["2024-07-25T22:19:54.010000"],["2024-07-25T22:19:55.010000"],["2024-07-25T22:19:56.010000"],["2024-07-25T22:19:57.010000"],["2024-07-25T22:19:58.010000"],["2024-07-25T22:19:59.010000"],["2024-07-25T22:20:00.010000"],["2024-07-25T22:20:01.010000"],["2024-07-25T22:20:02.010000"],["2024-07-25T22:20:03.010000"],["2024-07-25T22:20:04.010000"],["2024-07-25T22:20:05.010000"],["2024-07-25T22:20:06.010000"],["2024-07-25T22:20:07.010000"],["2024-07-25T22:20:08.010000"],["2024-07-25T22:20:09.010000"],["2024-07-25T22:20:10.010000"],["2024-07-25T22:20:11.010000"],["2024-07-25T22:20:12.010000"],["2024-07-25T22:20:13.010000"],["2024-07-25T22:20:14.010000"],["2024-07-25T22:20:15.010000"],["2024-07-25T22:20:16.010000"],["2024-07-25T22:20:17.010000"],["2024-07-25T22:20:18.010000"],["2024-07-25T22:20:19.010000"],["2024-07-25T22:20:20.010000"],["2024-07-25T22:20:21.010000"],["2024-07-25T22:20:22.010000"],["2024-07-25T22:20:23.010000"],["2024-07-25T22:20:24.010000"],["2024-07-25T22:20:25.010000"],["2024-07-25T22:20:26.010000"],["2024-07-25T22:20:27.010000"],["2024-07-25T22:20:28.010000"],["2024-07-25T22:20:29.010000"],["2024-07-25T22:20:30.010000"],["2024-07-25T22:20:31.010000"],["2024-07-25T22:20:32.010000"],["2024-07-25T22:20:33.010000"],["2024-07-25T22:20:34.010000"],["2024-07-25T22:20:35.010000"],["2024-07-25T22:20:36.010000"],["2024-07-25T22:20:37.010000"],["2024-07-25T22:20:38.010000"],["2024-07-25T22:20:39.010000"],["2024-07-25T22:20:40.010000"],["2024-07-25T22:20:41.010000"],["2024-07-25T22:20:42.010000"],["2024-07-25T22:20:43.010000"],["2024-07-25T22:20:44.010000"],["2024-07-25T22:20:45.010000"],["2024-07-25T22:20:46.010000"],["2024-07-25T22:20:47.010000"],["2024-07-25T22:20:48.010000"],["2024-07-25T22:20:49.010000"],["2024-07-25T22:20:50.010000"],["2024-07-25T22:20:51.010000"],["2024-07-25T22:20:52.010000"],["2024-07-25T22:20:53.010000"],["2024-07-25T22:20:54.010000"],["2024-07-25T22:20:55.010000"],["2024-07-25T22:20:56.010000"],["2024-07-25T22:20:57.010000"],["2024-07-25T22:20:58.010000"],["2024-07-25T22:20:59.010000"],["2024-07-25T22:21:00.010000"],["2024-07-25T22:21:01.010000"],["2024-07-25T22:21:02.010000"],["2024-07-25T22:21:03.010000"],["2024-07-25T22:21:04.010000"],["2024-07-25T22:21:05.010000"],["2024-07-25T22:21:06.010000"],["2024-07-25T22:21:07.010000"],["2024-07-25T22:21:08.010000"],["2024-07-25T22:21:09.010000"],["2024-07-25T22:21:10.010000"],["2024-07-25T22:21:11.010000"],["2024-07-25T22:21:12.010000"],["2024-07-25T22:21:13.010000"],["2024-07-25T22:21:14.010000"],["2024-07-25T22:21:15.010000"],["2024-07-25T22:21:16.010000"],["2024-07-25T22:21:17.010000"],["2024-07-25T22:21:18.010000"],["2024-07-25T22:21:19.010000"],["2024-07-25T22:21:20.010000"],["2024-07-25T22:21:21.010000"],["2024-07-25T22:21:22.010000"],["2024-07-25T22:21:23.010000"],["2024-07-25T22:21:24.010000"],["2024-07-25T22:21:25.010000"],["2024-07-25T22:21:26.010000"],["2024-07-25T22:21:27.010000"],["2024-07-25T22:21:28.010000"],["2024-07-25T22:21:29.010000"],["2024-07-25T22:21:30.010000"],["2024-07-25T22:21:31.010000"],["2024-07-25T22:21:32.010000"],["2024-07-25T22:21:33.010000"],["2024-07-25T22:21:34.010000"],["2024-07-25T22:21:35.010000"],["2024-07-25T22:21:36.010000"],["2024-07-25T22:21:37.010000"],["2024-07-25T22:21:38.010000"],["2024-07-25T22:21:39.010000"],["2024-07-25T22:21:40.010000"],["2024-07-25T22:21:41.010000"],["2024-07-25T22:21:42.010000"],["2024-07-25T22:21:43.010000"],["2024-07-25T22:21:44.010000"],["2024-07-25T22:21:45.010000"],["2024-07-25T22:21:46.010000"],["2024-07-25T22:21:47.010000"],["2024-07-25T22:21:48.010000"],["2024-07-25T22:21:49.010000"],["2024-07-25T22:21:50.010000"],["2024-07-25T22:21:51.010000"],["2024-07-25T22:21:52.010000"],["2024-07-25T22:21:53.010000"],["2024-07-25T22:21:54.010000"],["2024-07-25T22:21:55.010000"],["2024-07-25T22:21:56.010000"],["2024-07-25T22:21:57.010000"],["2024-07-25T22:21:58.010000"],["2024-07-25T22:21:59.010000"],["2024-07-25T22:22:00.010000"],["2024-07-25T22:22:01.010000"],["2024-07-25T22:22:02.010000"],["2024-07-25T22:22:03.010000"],["2024-07-25T22:22:04.010000"],["2024-07-25T22:22:05.010000"],["2024-07-25T22:22:06.010000"],["2024-07-25T22:22:07.010000"],["2024-07-25T22:22:08.010000"],["2024-07-25T22:22:09.010000"],["2024-07-25T22:22:10.010000"],["2024-07-25T22:22:11.010000"],["2024-07-25T22:22:12.010000"],["2024-07-25T22:22:13.010000"],["2024-07-25T22:22:14.010000"],["2024-07-25T22:22:15.010000"],["2024-07-25T22:22:16.010000"],["2024-07-25T22:22:17.010000"],["2024-07-25T22:22:18.010000"],["2024-07-25T22:22:19.010000"],["2024-07-25T22:22:20.010000"],["2024-07-25T22:22:21.010000"],["2024-07-25T22:22:22.010000"],["2024-07-25T22:22:23.010000"],["2024-07-25T22:22:24.010000"],["2024-07-25T22:22:25.010000"],["2024-07-25T22:22:26.010000"],["2024-07-25T22:22:27.010000"],["2024-07-25T22:22:28.010000"],["2024-07-25T22:22:29.010000"],["2024-07-25T22:22:30.010000"],["2024-07-25T22:22:31.010000"],["2024-07-25T22:22:32.010000"],["2024-07-25T22:22:33.010000"],["2024-07-25T22:22:34.010000"],["2024-07-25T22:22:35.010000"],["2024-07-25T22:22:36.010000"],["2024-07-25T22:22:37.010000"],["2024-07-25T22:22:38.010000"],["2024-07-25T22:22:39.010000"],["2024-07-25T22:22:40.010000"],["2024-07-25T22:22:41.010000"],["2024-07-25T22:22:42.010000"],["2024-07-25T22:22:43.010000"],["2024-07-25T22:22:44.010000"],["2024-07-25T22:22:45.010000"],["2024-07-25T22:22:46.010000"],["2024-07-25T22:22:47.010000"],["2024-07-25T22:22:48.010000"],["2024-07-25T22:22:49.010000"],["2024-07-25T22:22:50.010000"],["2024-07-25T22:22:51.010000"],["2024-07-25T22:22:52.010000"],["2024-07-25T22:22:53.010000"],["2024-07-25T22:22:54.010000"],["2024-07-25T22:22:55.010000"],["2024-07-25T22:22:56.010000"],["2024-07-25T22:22:57.010000"],["2024-07-25T22:22:58.010000"],["2024-07-25T22:22:59.010000"],["2024-07-25T22:23:00.010000"],["2024-07-25T22:23:01.010000"],["2024-07-25T22:23:02.010000"],["2024-07-25T22:23:03.010000"],["2024-07-25T22:23:04.010000"],["2024-07-25T22:23:05.010000"],["2024-07-25T22:23:06.010000"],["2024-07-25T22:23:07.010000"],["2024-07-25T22:23:08.010000"],["2024-07-25T22:23:09.010000"],["2024-07-25T22:23:10.010000"],["2024-07-25T22:23:11.010000"],["2024-07-25T22:23:12.010000"],["2024-07-25T22:23:13.010000"],["2024-07-25T22:23:14.010000"],["2024-07-25T22:23:15.010000"],["2024-07-25T22:23:16.010000"],["2024-07-25T22:23:17.010000"],["2024-07-25T22:23:18.010000"],["2024-07-25T22:23:19.010000"],["2024-07-25T22:23:20.010000"],["2024-07-25T22:23:21.010000"],["2024-07-25T22:23:22.010000"],["2024-07-25T22:23:23.010000"],["2024-07-25T22:23:24.010000"],["2024-07-25T22:23:25.010000"],["2024-07-25T22:23:26.010000"],["2024-07-25T22:23:27.010000"],["2024-07-25T22:23:28.010000"],["2024-07-25T22:23:29.010000"],["2024-07-25T22:23:30.010000"],["2024-07-25T22:23:31.010000"],["2024-07-25T22:23:32.010000"],["2024-07-25T22:23:33.010000"],["2024-07-25T22:23:34.010000"],["2024-07-25T22:23:35.010000"],["2024-07-25T22:23:36.010000"],["2024-07-25T22:23:37.010000"],["2024-07-25T22:23:38.010000"],["2024-07-25T22:23:39.010000"],["2024-07-25T22:23:40.010000"],["2024-07-25T22:23:41.010000"],["2024-07-25T22:23:42.010000"],["2024-07-25T22:23:43.010000"],["2024-07-25T22:23:44.010000"],["2024-07-25T22:23:45.010000"],["2024-07-25T22:23:46.010000"],["2024-07-25T22:23:47.010000"],["2024-07-25T22:23:48.010000"],["2024-07-25T22:23:49.010000"],["2024-07-25T22:23:50.010000"],["2024-07-25T22:23:51.010000"],["2024-07-25T22:23:52.010000"],["2024-07-25T22:23:53.010000"],["2024-07-25T22:23:54.010000"],["2024-07-25T22:23:55.010000"],["2024-07-25T22:23:56.010000"],["2024-07-25T22:23:57.010000"],["2024-07-25T22:23:58.010000"],["2024-07-25T22:23:59.010000"],["2024-07-25T22:24:00.010000"],["2024-07-25T22:24:01.010000"],["2024-07-25T22:24:02.010000"],["2024-07-25T22:24:03.010000"],["2024-07-25T22:24:04.010000"],["2024-07-25T22:24:05.010000"],["2024-07-25T22:24:06.010000"],["2024-07-25T22:24:07.010000"],["2024-07-25T22:24:08.010000"],["2024-07-25T22:24:09.010000"],["2024-07-25T22:24:10.010000"],["2024-07-25T22:24:11.010000"],["2024-07-25T22:24:12.010000"],["2024-07-25T22:24:13.010000"],["2024-07-25T22:24:14.010000"],["2024-07-25T22:24:15.010000"],["2024-07-25T22:24:16.010000"],["2024-07-25T22:24:17.010000"],["2024-07-25T22:24:18.010000"],["2024-07-25T22:24:19.010000"],["2024-07-25T22:24:20.010000"],["2024-07-25T22:24:21.010000"],["2024-07-25T22:24:22.010000"],["2024-07-25T22:24:23.010000"],["2024-07-25T22:24:24.010000"],["2024-07-25T22:24:25.010000"],["2024-07-25T22:24:26.010000"],["2024-07-25T22:24:27.010000"],["2024-07-25T22:24:28.010000"],["2024-07-25T22:24:29.010000"],["2024-07-25T22:24:30.010000"],["2024-07-25T22:24:31.010000"],["2024-07-25T22:24:32.010000"],["2024-07-25T22:24:33.010000"],["2024-07-25T22:24:34.010000"],["2024-07-25T22:24:35.010000"],["2024-07-25T22:24:36.010000"],["2024-07-25T22:24:37.010000"],["2024-07-25T22:24:38.010000"],["2024-07-25T22:24:39.010000"],["2024-07-25T22:24:40.010000"],["2024-07-25T22:24:41.010000"],["2024-07-25T22:24:42.010000"],["2024-07-25T22:24:43.010000"],["2024-07-25T22:24:44.010000"],["2024-07-25T22:24:45.010000"],["2024-07-25T22:24:46.010000"],["2024-07-25T22:24:47.010000"],["2024-07-25T22:24:48.010000"],["2024-07-25T22:24:49.010000"],["2024-07-25T22:24:50.010000"],["2024-07-25T22:24:51.010000"],["2024-07-25T22:24:52.010000"],["2024-07-25T22:24:53.010000"],["2024-07-25T22:24:54.010000"],["2024-07-25T22:24:55.010000"],["2024-07-25T22:24:56.010000"],["2024-07-25T22:24:57.010000"],["2024-07-25T22:24:58.010000"],["2024-07-25T22:24:59.010000"],["2024-07-25T22:25:00.010000"],["2024-07-25T22:25:01.010000"],["2024-07-25T22:25:02.010000"],["2024-07-25T22:25:03.010000"],["2024-07-25T22:25:04.010000"],["2024-07-25T22:25:05.010000"],["2024-07-25T22:25:06.010000"],["2024-07-25T22:25:07.010000"],["2024-07-25T22:25:08.010000"],["2024-07-25T22:25:09.010000"],["2024-07-25T22:25:10.010000"],["2024-07-25T22:25:11.010000"],["2024-07-25T22:25:12.010000"],["2024-07-25T22:25:13.010000"],["2024-07-25T22:25:14.010000"],["2024-07-25T22:25:15.010000"],["2024-07-25T22:25:16.010000"],["2024-07-25T22:25:17.010000"],["2024-07-25T22:25:18.010000"],["2024-07-25T22:25:19.010000"],["2024-07-25T22:25:20.010000"],["2024-07-25T22:25:21.010000"],["2024-07-25T22:25:22.010000"],["2024-07-25T22:25:23.010000"],["2024-07-25T22:25:24.010000"],["2024-07-25T22:25:25.010000"],["2024-07-25T22:25:26.010000"],["2024-07-25T22:25:27.010000"],["2024-07-25T22:25:28.010000"],["2024-07-25T22:25:29.010000"],["2024-07-25T22:25:30.010000"],["2024-07-25T22:25:31.010000"],["2024-07-25T22:25:32.010000"],["2024-07-25T22:25:33.010000"],["2024-07-25T22:25:34.010000"],["2024-07-25T22:25:35.010000"],["2024-07-25T22:25:36.010000"],["2024-07-25T22:25:37.010000"],["2024-07-25T22:25:38.010000"],["2024-07-25T22:25:39.010000"],["2024-07-25T22:25:40.010000"],["2024-07-25T22:25:41.010000"],["2024-07-25T22:25:42.010000"],["2024-07-25T22:25:43.010000"],["2024-07-25T22:25:44.010000"],["2024-07-25T22:25:45.010000"],["2024-07-25T22:25:46.010000"],["2024-07-25T22:25:47.010000"],["2024-07-25T22:25:48.010000"],["2024-07-25T22:25:49.010000"],["2024-07-25T22:25:50.010000"],["2024-07-25T22:25:51.010000"],["2024-07-25T22:25:52.010000"],["2024-07-25T22:25:53.010000"],["2024-07-25T22:25:54.010000"],["2024-07-25T22:25:55.010000"],["2024-07-25T22:25:56.010000"],["2024-07-25T22:25:57.010000"],["2024-07-25T22:25:58.010000"],["2024-07-25T22:25:59.010000"],["2024-07-25T22:26:00.010000"],["2024-07-25T22:26:01.010000"],["2024-07-25T22:26:02.010000"],["2024-07-25T22:26:03.010000"],["2024-07-25T22:26:04.010000"],["2024-07-25T22:26:05.010000"],["2024-07-25T22:26:06.010000"],["2024-07-25T22:26:07.010000"],["2024-07-25T22:26:08.010000"],["2024-07-25T22:26:09.010000"],["2024-07-25T22:26:10.010000"],["2024-07-25T22:26:11.010000"],["2024-07-25T22:26:12.010000"],["2024-07-25T22:26:13.010000"],["2024-07-25T22:26:14.010000"],["2024-07-25T22:26:15.010000"],["2024-07-25T22:26:16.010000"],["2024-07-25T22:26:17.010000"],["2024-07-25T22:26:18.010000"],["2024-07-25T22:26:19.010000"],["2024-07-25T22:26:20.010000"],["2024-07-25T22:26:21.010000"],["2024-07-25T22:26:22.010000"],["2024-07-25T22:26:23.010000"],["2024-07-25T22:26:24.010000"],["2024-07-25T22:26:25.010000"],["2024-07-25T22:26:26.010000"],["2024-07-25T22:26:27.010000"],["2024-07-25T22:26:28.010000"],["2024-07-25T22:26:29.010000"],["2024-07-25T22:26:30.010000"],["2024-07-25T22:26:31.010000"],["2024-07-25T22:26:32.010000"],["2024-07-25T22:26:33.010000"],["2024-07-25T22:26:34.010000"],["2024-07-25T22:26:35.010000"],["2024-07-25T22:26:36.010000"],["2024-07-25T22:26:37.010000"],["2024-07-25T22:26:38.010000"],["2024-07-25T22:26:39.010000"],["2024-07-25T22:26:40.010000"],["2024-07-25T22:26:41.010000"],["2024-07-25T22:26:42.010000"],["2024-07-25T22:26:43.010000"],["2024-07-25T22:26:44.010000"],["2024-07-25T22:26:45.010000"],["2024-07-25T22:26:46.010000"],["2024-07-25T22:26:47.010000"],["2024-07-25T22:26:48.010000"],["2024-07-25T22:26:49.010000"],["2024-07-25T22:26:50.010000"],["2024-07-25T22:26:51.010000"],["2024-07-25T22:26:52.010000"],["2024-07-25T22:26:53.010000"],["2024-07-25T22:26:54.010000"],["2024-07-25T22:26:55.010000"],["2024-07-25T22:26:56.010000"],["2024-07-25T22:26:57.010000"],["2024-07-25T22:26:58.010000"],["2024-07-25T22:26:59.010000"],["2024-07-25T22:27:00.010000"],["2024-07-25T22:27:01.010000"],["2024-07-25T22:27:02.010000"],["2024-07-25T22:27:03.010000"],["2024-07-25T22:27:04.010000"],["2024-07-25T22:27:05.010000"],["2024-07-25T22:27:06.010000"],["2024-07-25T22:27:07.010000"],["2024-07-25T22:27:08.010000"],["2024-07-25T22:27:09.010000"],["2024-07-25T22:27:10.010000"],["2024-07-25T22:27:11.010000"],["2024-07-25T22:27:12.010000"],["2024-07-25T22:27:13.010000"],["2024-07-25T22:27:14.010000"],["2024-07-25T22:27:15.010000"],["2024-07-25T22:27:16.010000"],["2024-07-25T22:27:17.010000"],["2024-07-25T22:27:18.010000"],["2024-07-25T22:27:19.010000"],["2024-07-25T22:27:20.010000"],["2024-07-25T22:27:21.010000"],["2024-07-25T22:27:22.010000"],["2024-07-25T22:27:23.010000"],["2024-07-25T22:27:24.010000"],["2024-07-25T22:27:25.010000"],["2024-07-25T22:27:26.010000"],["2024-07-25T22:27:27.010000"],["2024-07-25T22:27:28.010000"],["2024-07-25T22:27:29.010000"],["2024-07-25T22:27:30.010000"],["2024-07-25T22:27:31.010000"],["2024-07-25T22:27:32.010000"],["2024-07-25T22:27:33.010000"],["2024-07-25T22:27:34.010000"],["2024-07-25T22:27:35.010000"],["2024-07-25T22:27:36.010000"],["2024-07-25T22:27:37.010000"],["2024-07-25T22:27:38.010000"],["2024-07-25T22:27:39.010000"],["2024-07-25T22:27:40.010000"],["2024-07-25T22:27:41.010000"],["2024-07-25T22:27:42.010000"],["2024-07-25T22:27:43.010000"],["2024-07-25T22:27:44.010000"],["2024-07-25T22:27:45.010000"],["2024-07-25T22:27:46.010000"],["2024-07-25T22:27:47.010000"],["2024-07-25T22:27:48.010000"],["2024-07-25T22:27:49.010000"],["2024-07-25T22:27:50.010000"],["2024-07-25T22:27:51.010000"],["2024-07-25T22:27:52.010000"],["2024-07-25T22:27:53.010000"],["2024-07-25T22:27:54.010000"],["2024-07-25T22:27:55.010000"],["2024-07-25T22:27:56.010000"],["2024-07-25T22:27:57.010000"],["2024-07-25T22:27:58.010000"],["2024-07-25T22:27:59.010000"],["2024-07-25T22:28:00.010000"],["2024-07-25T22:28:01.010000"],["2024-07-25T22:28:02.010000"],["2024-07-25T22:28:03.010000"],["2024-07-25T22:28:04.010000"],["2024-07-25T22:28:05.010000"],["2024-07-25T22:28:06.010000"],["2024-07-25T22:28:07.010000"],["2024-07-25T22:28:08.010000"],["2024-07-25T22:28:09.010000"],["2024-07-25T22:28:10.010000"],["2024-07-25T22:28:11.010000"],["2024-07-25T22:28:12.010000"],["2024-07-25T22:28:13.010000"],["2024-07-25T22:28:14.010000"],["2024-07-25T22:28:15.010000"],["2024-07-25T22:28:16.010000"],["2024-07-25T22:28:17.010000"],["2024-07-25T22:28:18.010000"],["2024-07-25T22:28:19.010000"],["2024-07-25T22:28:20.010000"],["2024-07-25T22:28:21.010000"],["2024-07-25T22:28:22.010000"],["2024-07-25T22:28:23.010000"],["2024-07-25T22:28:24.010000"],["2024-07-25T22:28:25.010000"],["2024-07-25T22:28:26.010000"],["2024-07-25T22:28:27.010000"],["2024-07-25T22:28:28.010000"],["2024-07-25T22:28:29.010000"],["2024-07-25T22:28:30.010000"],["2024-07-25T22:28:31.010000"],["2024-07-25T22:28:32.010000"],["2024-07-25T22:28:33.010000"],["2024-07-25T22:28:34.010000"],["2024-07-25T22:28:35.010000"],["2024-07-25T22:28:36.010000"],["2024-07-25T22:28:37.010000"],["2024-07-25T22:28:38.010000"],["2024-07-25T22:28:39.010000"],["2024-07-25T22:28:40.010000"],["2024-07-25T22:28:41.010000"],["2024-07-25T22:28:42.010000"],["2024-07-25T22:28:43.010000"],["2024-07-25T22:28:44.010000"],["2024-07-25T22:28:45.010000"],["2024-07-25T22:28:46.010000"],["2024-07-25T22:28:47.010000"],["2024-07-25T22:28:48.010000"],["2024-07-25T22:28:49.010000"],["2024-07-25T22:28:50.010000"],["2024-07-25T22:28:51.010000"],["2024-07-25T22:28:52.010000"],["2024-07-25T22:28:53.010000"],["2024-07-25T22:28:54.010000"],["2024-07-25T22:28:55.010000"],["2024-07-25T22:28:56.010000"],["2024-07-25T22:28:57.010000"],["2024-07-25T22:28:58.010000"],["2024-07-25T22:28:59.010000"],["2024-07-25T22:29:00.010000"],["2024-07-25T22:29:01.010000"],["2024-07-25T22:29:02.010000"],["2024-07-25T22:29:03.010000"],["2024-07-25T22:29:04.010000"],["2024-07-25T22:29:05.010000"],["2024-07-25T22:29:06.010000"],["2024-07-25T22:29:07.010000"],["2024-07-25T22:29:08.010000"],["2024-07-25T22:29:09.010000"],["2024-07-25T22:29:10.010000"],["2024-07-25T22:29:11.010000"],["2024-07-25T22:29:12.010000"],["2024-07-25T22:29:13.010000"],["2024-07-25T22:29:14.010000"],["2024-07-25T22:29:15.010000"],["2024-07-25T22:29:16.010000"],["2024-07-25T22:29:17.010000"],["2024-07-25T22:29:18.010000"],["2024-07-25T22:29:19.010000"],["2024-07-25T22:29:20.010000"],["2024-07-25T22:29:21.010000"],["2024-07-25T22:29:22.010000"],["2024-07-25T22:29:23.010000"],["2024-07-25T22:29:24.010000"],["2024-07-25T22:29:25.010000"],["2024-07-25T22:29:26.010000"],["2024-07-25T22:29:27.010000"],["2024-07-25T22:29:28.010000"],["2024-07-25T22:29:29.010000"],["2024-07-25T22:29:30.010000"],["2024-07-25T22:29:31.010000"],["2024-07-25T22:29:32.010000"],["2024-07-25T22:29:33.010000"],["2024-07-25T22:29:34.010000"],["2024-07-25T22:29:35.010000"],["2024-07-25T22:29:36.010000"],["2024-07-25T22:29:37.010000"],["2024-07-25T22:29:38.010000"],["2024-07-25T22:29:39.010000"],["2024-07-25T22:29:40.010000"],["2024-07-25T22:29:41.010000"],["2024-07-25T22:29:42.010000"],["2024-07-25T22:29:43.010000"],["2024-07-25T22:29:44.010000"],["2024-07-25T22:29:45.010000"],["2024-07-25T22:29:46.010000"],["2024-07-25T22:29:47.010000"],["2024-07-25T22:29:48.010000"],["2024-07-25T22:29:49.010000"],["2024-07-25T22:29:50.010000"],["2024-07-25T22:29:51.010000"],["2024-07-25T22:29:52.010000"],["2024-07-25T22:29:53.010000"],["2024-07-25T22:29:54.010000"],["2024-07-25T22:29:55.010000"],["2024-07-25T22:29:56.010000"],["2024-07-25T22:29:57.010000"],["2024-07-25T22:29:58.010000"],["2024-07-25T22:29:59.010000"],["2024-07-25T22:30:00.010000"],["2024-07-25T22:30:01.010000"],["2024-07-25T22:30:02.010000"],["2024-07-25T22:30:03.010000"],["2024-07-25T22:30:04.010000"],["2024-07-25T22:30:05.010000"],["2024-07-25T22:30:06.010000"],["2024-07-25T22:30:07.010000"],["2024-07-25T22:30:08.010000"],["2024-07-25T22:30:09.010000"],["2024-07-25T22:30:10.010000"],["2024-07-25T22:30:11.010000"],["2024-07-25T22:30:12.010000"],["2024-07-25T22:30:13.010000"],["2024-07-25T22:30:14.010000"],["2024-07-25T22:30:15.010000"],["2024-07-25T22:30:16.010000"],["2024-07-25T22:30:17.010000"],["2024-07-25T22:30:18.010000"],["2024-07-25T22:30:19.010000"],["2024-07-25T22:30:20.010000"],["2024-07-25T22:30:21.010000"],["2024-07-25T22:30:22.010000"],["2024-07-25T22:30:23.010000"],["2024-07-25T22:30:24.010000"],["2024-07-25T22:30:25.010000"],["2024-07-25T22:30:26.010000"],["2024-07-25T22:30:27.010000"],["2024-07-25T22:30:28.010000"],["2024-07-25T22:30:29.010000"],["2024-07-25T22:30:30.010000"],["2024-07-25T22:30:31.010000"],["2024-07-25T22:30:32.010000"],["2024-07-25T22:30:33.010000"],["2024-07-25T22:30:34.010000"],["2024-07-25T22:30:35.010000"],["2024-07-25T22:30:36.010000"],["2024-07-25T22:30:37.010000"],["2024-07-25T22:30:38.010000"],["2024-07-25T22:30:39.010000"],["2024-07-25T22:30:40.010000"],["2024-07-25T22:30:41.010000"],["2024-07-25T22:30:42.010000"],["2024-07-25T22:30:43.010000"],["2024-07-25T22:30:44.010000"],["2024-07-25T22:30:45.010000"],["2024-07-25T22:30:46.010000"],["2024-07-25T22:30:47.010000"],["2024-07-25T22:30:48.010000"],["2024-07-25T22:30:49.010000"],["2024-07-25T22:30:50.010000"],["2024-07-25T22:30:51.010000"],["2024-07-25T22:30:52.010000"],["2024-07-25T22:30:53.010000"],["2024-07-25T22:30:54.010000"],["2024-07-25T22:30:55.010000"],["2024-07-25T22:30:56.010000"],["2024-07-25T22:30:57.010000"],["2024-07-25T22:30:58.010000"],["2024-07-25T22:30:59.010000"],["2024-07-25T22:31:00.010000"],["2024-07-25T22:31:01.010000"],["2024-07-25T22:31:02.010000"],["2024-07-25T22:31:03.010000"],["2024-07-25T22:31:04.010000"],["2024-07-25T22:31:05.010000"],["2024-07-25T22:31:06.010000"],["2024-07-25T22:31:07.010000"],["2024-07-25T22:31:08.010000"],["2024-07-25T22:31:09.010000"],["2024-07-25T22:31:10.010000"],["2024-07-25T22:31:11.010000"],["2024-07-25T22:31:12.010000"],["2024-07-25T22:31:13.010000"],["2024-07-25T22:31:14.010000"],["2024-07-25T22:31:15.010000"],["2024-07-25T22:31:16.010000"],["2024-07-25T22:31:17.010000"],["2024-07-25T22:31:18.010000"],["2024-07-25T22:31:19.010000"],["2024-07-25T22:31:20.010000"],["2024-07-25T22:31:21.010000"],["2024-07-25T22:31:22.010000"],["2024-07-25T22:31:23.010000"],["2024-07-25T22:31:24.010000"],["2024-07-25T22:31:25.010000"],["2024-07-25T22:31:26.010000"],["2024-07-25T22:31:27.010000"],["2024-07-25T22:31:28.010000"],["2024-07-25T22:31:29.010000"],["2024-07-25T22:31:30.010000"],["2024-07-25T22:31:31.010000"],["2024-07-25T22:31:32.010000"],["2024-07-25T22:31:33.010000"],["2024-07-25T22:31:34.010000"],["2024-07-25T22:31:35.010000"],["2024-07-25T22:31:36.010000"],["2024-07-25T22:31:37.010000"],["2024-07-25T22:31:38.010000"],["2024-07-25T22:31:39.010000"],["2024-07-25T22:31:40.010000"],["2024-07-25T22:31:41.010000"],["2024-07-25T22:31:42.010000"],["2024-07-25T22:31:43.010000"],["2024-07-25T22:31:44.010000"],["2024-07-25T22:31:45.010000"],["2024-07-25T22:31:46.010000"],["2024-07-25T22:31:47.010000"],["2024-07-25T22:31:48.010000"],["2024-07-25T22:31:49.010000"],["2024-07-25T22:31:50.010000"],["2024-07-25T22:31:51.010000"],["2024-07-25T22:31:52.010000"],["2024-07-25T22:31:53.010000"],["2024-07-25T22:31:54.010000"],["2024-07-25T22:31:55.010000"],["2024-07-25T22:31:56.010000"],["2024-07-25T22:31:57.010000"],["2024-07-25T22:31:58.010000"],["2024-07-25T22:31:59.010000"],["2024-07-25T22:32:00.010000"],["2024-07-25T22:32:01.010000"],["2024-07-25T22:32:02.010000"],["2024-07-25T22:32:03.010000"],["2024-07-25T22:32:04.010000"],["2024-07-25T22:32:05.010000"],["2024-07-25T22:32:06.010000"],["2024-07-25T22:32:07.010000"],["2024-07-25T22:32:08.010000"],["2024-07-25T22:32:09.010000"],["2024-07-25T22:32:10.010000"],["2024-07-25T22:32:11.010000"],["2024-07-25T22:32:12.010000"],["2024-07-25T22:32:13.010000"],["2024-07-25T22:32:14.010000"],["2024-07-25T22:32:15.010000"],["2024-07-25T22:32:16.010000"],["2024-07-25T22:32:17.010000"],["2024-07-25T22:32:18.010000"],["2024-07-25T22:32:19.010000"],["2024-07-25T22:32:20.010000"],["2024-07-25T22:32:21.010000"],["2024-07-25T22:32:22.010000"],["2024-07-25T22:32:23.010000"],["2024-07-25T22:32:24.010000"],["2024-07-25T22:32:25.010000"],["2024-07-25T22:32:26.010000"],["2024-07-25T22:32:27.010000"],["2024-07-25T22:32:28.010000"],["2024-07-25T22:32:29.010000"],["2024-07-25T22:32:30.010000"],["2024-07-25T22:32:31.010000"],["2024-07-25T22:32:32.010000"],["2024-07-25T22:32:33.010000"],["2024-07-25T22:32:34.010000"],["2024-07-25T22:32:35.010000"],["2024-07-25T22:32:36.010000"],["2024-07-25T22:32:37.010000"],["2024-07-25T22:32:38.010000"],["2024-07-25T22:32:39.010000"],["2024-07-25T22:32:40.010000"],["2024-07-25T22:32:41.010000"],["2024-07-25T22:32:42.010000"],["2024-07-25T22:32:43.010000"],["2024-07-25T22:32:44.010000"],["2024-07-25T22:32:45.010000"],["2024-07-25T22:32:46.010000"],["2024-07-25T22:32:47.010000"],["2024-07-25T22:32:48.010000"],["2024-07-25T22:32:49.010000"],["2024-07-25T22:32:50.010000"],["2024-07-25T22:32:51.010000"],["2024-07-25T22:32:52.010000"],["2024-07-25T22:32:53.010000"],["2024-07-25T22:32:54.010000"],["2024-07-25T22:32:55.010000"],["2024-07-25T22:32:56.010000"],["2024-07-25T22:32:57.010000"],["2024-07-25T22:32:58.010000"],["2024-07-25T22:32:59.010000"],["2024-07-25T22:33:00.010000"],["2024-07-25T22:33:01.010000"],["2024-07-25T22:33:02.010000"],["2024-07-25T22:33:03.010000"],["2024-07-25T22:33:04.010000"],["2024-07-25T22:33:05.010000"],["2024-07-25T22:33:06.010000"],["2024-07-25T22:33:07.010000"],["2024-07-25T22:33:08.010000"],["2024-07-25T22:33:09.010000"],["2024-07-25T22:33:10.010000"],["2024-07-25T22:33:11.010000"],["2024-07-25T22:33:12.010000"],["2024-07-25T22:33:13.010000"],["2024-07-25T22:33:14.010000"],["2024-07-25T22:33:15.010000"],["2024-07-25T22:33:16.010000"],["2024-07-25T22:33:17.010000"],["2024-07-25T22:33:18.010000"],["2024-07-25T22:33:19.010000"],["2024-07-25T22:33:20.010000"],["2024-07-25T22:33:21.010000"],["2024-07-25T22:33:22.010000"],["2024-07-25T22:33:23.010000"],["2024-07-25T22:33:24.010000"],["2024-07-25T22:33:25.010000"],["2024-07-25T22:33:26.010000"],["2024-07-25T22:33:27.010000"],["2024-07-25T22:33:28.010000"],["2024-07-25T22:33:29.010000"],["2024-07-25T22:33:30.010000"],["2024-07-25T22:33:31.010000"],["2024-07-25T22:33:32.010000"],["2024-07-25T22:33:33.010000"],["2024-07-25T22:33:34.010000"],["2024-07-25T22:33:35.010000"],["2024-07-25T22:33:36.010000"],["2024-07-25T22:33:37.010000"],["2024-07-25T22:33:38.010000"],["2024-07-25T22:33:39.010000"],["2024-07-25T22:33:40.010000"],["2024-07-25T22:33:41.010000"],["2024-07-25T22:33:42.010000"],["2024-07-25T22:33:43.010000"],["2024-07-25T22:33:44.010000"],["2024-07-25T22:33:45.010000"],["2024-07-25T22:33:46.010000"],["2024-07-25T22:33:47.010000"],["2024-07-25T22:33:48.010000"],["2024-07-25T22:33:49.010000"],["2024-07-25T22:33:50.010000"],["2024-07-25T22:33:51.010000"],["2024-07-25T22:33:52.010000"],["2024-07-25T22:33:53.010000"],["2024-07-25T22:33:54.010000"],["2024-07-25T22:33:55.010000"],["2024-07-25T22:33:56.010000"],["2024-07-25T22:33:57.010000"],["2024-07-25T22:33:58.010000"],["2024-07-25T22:33:59.010000"],["2024-07-25T22:34:00.010000"],["2024-07-25T22:34:01.010000"],["2024-07-25T22:34:02.010000"],["2024-07-25T22:34:03.010000"],["2024-07-25T22:34:04.010000"],["2024-07-25T22:34:05.010000"],["2024-07-25T22:34:06.010000"],["2024-07-25T22:34:07.010000"],["2024-07-25T22:34:08.010000"],["2024-07-25T22:34:09.010000"],["2024-07-25T22:34:10.010000"],["2024-07-25T22:34:11.010000"],["2024-07-25T22:34:12.010000"],["2024-07-25T22:34:13.010000"],["2024-07-25T22:34:14.010000"],["2024-07-25T22:34:15.010000"],["2024-07-25T22:34:16.010000"],["2024-07-25T22:34:17.010000"],["2024-07-25T22:34:18.010000"],["2024-07-25T22:34:19.010000"],["2024-07-25T22:34:20.010000"],["2024-07-25T22:34:21.010000"],["2024-07-25T22:34:22.010000"],["2024-07-25T22:34:23.010000"],["2024-07-25T22:34:24.010000"],["2024-07-25T22:34:25.010000"],["2024-07-25T22:34:26.010000"],["2024-07-25T22:34:27.010000"],["2024-07-25T22:34:28.010000"],["2024-07-25T22:34:29.010000"],["2024-07-25T22:34:30.010000"],["2024-07-25T22:34:31.010000"],["2024-07-25T22:34:32.010000"],["2024-07-25T22:34:33.010000"],["2024-07-25T22:34:34.010000"],["2024-07-25T22:34:35.010000"],["2024-07-25T22:34:36.010000"],["2024-07-25T22:34:37.010000"],["2024-07-25T22:34:38.010000"],["2024-07-25T22:34:39.010000"],["2024-07-25T22:34:40.010000"],["2024-07-25T22:34:41.010000"],["2024-07-25T22:34:42.010000"],["2024-07-25T22:34:43.010000"],["2024-07-25T22:34:44.010000"],["2024-07-25T22:34:45.010000"],["2024-07-25T22:34:46.010000"],["2024-07-25T22:34:47.010000"],["2024-07-25T22:34:48.010000"],["2024-07-25T22:34:49.010000"],["2024-07-25T22:34:50.010000"],["2024-07-25T22:34:51.010000"],["2024-07-25T22:34:52.010000"],["2024-07-25T22:34:53.010000"],["2024-07-25T22:34:54.010000"],["2024-07-25T22:34:55.010000"],["2024-07-25T22:34:56.010000"],["2024-07-25T22:34:57.010000"],["2024-07-25T22:34:58.010000"],["2024-07-25T22:34:59.010000"],["2024-07-25T22:35:00.010000"],["2024-07-25T22:35:01.010000"],["2024-07-25T22:35:02.010000"],["2024-07-25T22:35:03.010000"],["2024-07-25T22:35:04.010000"],["2024-07-25T22:35:05.010000"],["2024-07-25T22:35:06.010000"],["2024-07-25T22:35:07.010000"],["2024-07-25T22:35:08.010000"],["2024-07-25T22:35:09.010000"],["2024-07-25T22:35:10.010000"],["2024-07-25T22:35:11.010000"],["2024-07-25T22:35:12.010000"],["2024-07-25T22:35:13.010000"],["2024-07-25T22:35:14.010000"],["2024-07-25T22:35:15.010000"],["2024-07-25T22:35:16.010000"],["2024-07-25T22:35:17.010000"],["2024-07-25T22:35:18.010000"],["2024-07-25T22:35:19.010000"],["2024-07-25T22:35:20.010000"],["2024-07-25T22:35:21.010000"],["2024-07-25T22:35:22.010000"],["2024-07-25T22:35:23.010000"],["2024-07-25T22:35:24.010000"],["2024-07-25T22:35:25.010000"],["2024-07-25T22:35:26.010000"],["2024-07-25T22:35:27.010000"],["2024-07-25T22:35:28.010000"],["2024-07-25T22:35:29.010000"],["2024-07-25T22:35:30.010000"],["2024-07-25T22:35:31.010000"],["2024-07-25T22:35:32.010000"],["2024-07-25T22:35:33.010000"],["2024-07-25T22:35:34.010000"],["2024-07-25T22:35:35.010000"],["2024-07-25T22:35:36.010000"],["2024-07-25T22:35:37.010000"],["2024-07-25T22:35:38.010000"],["2024-07-25T22:35:39.010000"],["2024-07-25T22:35:40.010000"],["2024-07-25T22:35:41.010000"],["2024-07-25T22:35:42.010000"],["2024-07-25T22:35:43.010000"],["2024-07-25T22:35:44.010000"],["2024-07-25T22:35:45.010000"],["2024-07-25T22:35:46.010000"],["2024-07-25T22:35:47.010000"],["2024-07-25T22:35:48.010000"],["2024-07-25T22:35:49.010000"],["2024-07-25T22:35:50.010000"],["2024-07-25T22:35:51.010000"],["2024-07-25T22:35:52.010000"],["2024-07-25T22:35:53.010000"],["2024-07-25T22:35:54.010000"],["2024-07-25T22:35:55.010000"],["2024-07-25T22:35:56.010000"],["2024-07-25T22:35:57.010000"],["2024-07-25T22:35:58.010000"],["2024-07-25T22:35:59.010000"],["2024-07-25T22:36:00.010000"],["2024-07-25T22:36:01.010000"],["2024-07-25T22:36:02.010000"],["2024-07-25T22:36:03.010000"],["2024-07-25T22:36:04.010000"],["2024-07-25T22:36:05.010000"],["2024-07-25T22:36:06.010000"],["2024-07-25T22:36:07.010000"],["2024-07-25T22:36:08.010000"],["2024-07-25T22:36:09.010000"],["2024-07-25T22:36:10.010000"],["2024-07-25T22:36:11.010000"],["2024-07-25T22:36:12.010000"],["2024-07-25T22:36:13.010000"],["2024-07-25T22:36:14.010000"],["2024-07-25T22:36:15.010000"],["2024-07-25T22:36:16.010000"],["2024-07-25T22:36:17.010000"],["2024-07-25T22:36:18.010000"],["2024-07-25T22:36:19.010000"],["2024-07-25T22:36:20.010000"],["2024-07-25T22:36:21.010000"],["2024-07-25T22:36:22.010000"],["2024-07-25T22:36:23.010000"],["2024-07-25T22:36:24.010000"],["2024-07-25T22:36:25.010000"],["2024-07-25T22:36:26.010000"],["2024-07-25T22:36:27.010000"],["2024-07-25T22:36:28.010000"],["2024-07-25T22:36:29.010000"],["2024-07-25T22:36:30.010000"],["2024-07-25T22:36:31.010000"],["2024-07-25T22:36:32.010000"],["2024-07-25T22:36:33.010000"],["2024-07-25T22:36:34.010000"],["2024-07-25T22:36:35.010000"],["2024-07-25T22:36:36.010000"],["2024-07-25T22:36:37.010000"],["2024-07-25T22:36:38.010000"],["2024-07-25T22:36:39.010000"],["2024-07-25T22:36:40.010000"],["2024-07-25T22:36:41.010000"],["2024-07-25T22:36:42.010000"],["2024-07-25T22:36:43.010000"],["2024-07-25T22:36:44.010000"],["2024-07-25T22:36:45.010000"],["2024-07-25T22:36:46.010000"],["2024-07-25T22:36:47.010000"],["2024-07-25T22:36:48.010000"],["2024-07-25T22:36:49.010000"],["2024-07-25T22:36:50.010000"],["2024-07-25T22:36:51.010000"],["2024-07-25T22:36:52.010000"],["2024-07-25T22:36:53.010000"],["2024-07-25T22:36:54.010000"],["2024-07-25T22:36:55.010000"],["2024-07-25T22:36:56.010000"],["2024-07-25T22:36:57.010000"],["2024-07-25T22:36:58.010000"],["2024-07-25T22:36:59.010000"],["2024-07-25T22:37:00.010000"],["2024-07-25T22:37:01.010000"],["2024-07-25T22:37:02.010000"],["2024-07-25T22:37:03.010000"],["2024-07-25T22:37:04.010000"],["2024-07-25T22:37:05.010000"],["2024-07-25T22:37:06.010000"],["2024-07-25T22:37:07.010000"],["2024-07-25T22:37:08.010000"],["2024-07-25T22:37:09.010000"],["2024-07-25T22:37:10.010000"],["2024-07-25T22:37:11.010000"],["2024-07-25T22:37:12.010000"],["2024-07-25T22:37:13.010000"],["2024-07-25T22:37:14.010000"],["2024-07-25T22:37:15.010000"],["2024-07-25T22:37:16.010000"],["2024-07-25T22:37:17.010000"],["2024-07-25T22:37:18.010000"],["2024-07-25T22:37:19.010000"],["2024-07-25T22:37:20.010000"],["2024-07-25T22:37:21.010000"],["2024-07-25T22:37:22.010000"],["2024-07-25T22:37:23.010000"],["2024-07-25T22:37:24.010000"],["2024-07-25T22:37:25.010000"],["2024-07-25T22:37:26.010000"],["2024-07-25T22:37:27.010000"],["2024-07-25T22:37:28.010000"],["2024-07-25T22:37:29.010000"],["2024-07-25T22:37:30.010000"],["2024-07-25T22:37:31.010000"],["2024-07-25T22:37:32.010000"],["2024-07-25T22:37:33.010000"],["2024-07-25T22:37:34.010000"],["2024-07-25T22:37:35.010000"],["2024-07-25T22:37:36.010000"],["2024-07-25T22:37:37.010000"],["2024-07-25T22:37:38.010000"],["2024-07-25T22:37:39.010000"],["2024-07-25T22:37:40.010000"],["2024-07-25T22:37:41.010000"],["2024-07-25T22:37:42.010000"],["2024-07-25T22:37:43.010000"],["2024-07-25T22:37:44.010000"],["2024-07-25T22:37:45.010000"],["2024-07-25T22:37:46.010000"],["2024-07-25T22:37:47.010000"],["2024-07-25T22:37:48.010000"],["2024-07-25T22:37:49.010000"],["2024-07-25T22:37:50.010000"],["2024-07-25T22:37:51.010000"],["2024-07-25T22:37:52.010000"],["2024-07-25T22:37:53.010000"],["2024-07-25T22:37:54.010000"],["2024-07-25T22:37:55.010000"],["2024-07-25T22:37:56.010000"],["2024-07-25T22:37:57.010000"],["2024-07-25T22:37:58.010000"],["2024-07-25T22:37:59.010000"],["2024-07-25T22:38:00.010000"],["2024-07-25T22:38:01.010000"],["2024-07-25T22:38:02.010000"],["2024-07-25T22:38:03.010000"],["2024-07-25T22:38:04.010000"],["2024-07-25T22:38:05.010000"],["2024-07-25T22:38:06.010000"],["2024-07-25T22:38:07.010000"],["2024-07-25T22:38:08.010000"],["2024-07-25T22:38:09.010000"],["2024-07-25T22:38:10.010000"],["2024-07-25T22:38:11.010000"],["2024-07-25T22:38:12.010000"],["2024-07-25T22:38:13.010000"],["2024-07-25T22:38:14.010000"],["2024-07-25T22:38:15.010000"],["2024-07-25T22:38:16.010000"],["2024-07-25T22:38:17.010000"],["2024-07-25T22:38:18.010000"],["2024-07-25T22:38:19.010000"],["2024-07-25T22:38:20.010000"],["2024-07-25T22:38:21.010000"],["2024-07-25T22:38:22.010000"],["2024-07-25T22:38:23.010000"],["2024-07-25T22:38:24.010000"],["2024-07-25T22:38:25.010000"],["2024-07-25T22:38:26.010000"],["2024-07-25T22:38:27.010000"],["2024-07-25T22:38:28.010000"],["2024-07-25T22:38:29.010000"],["2024-07-25T22:38:30.010000"],["2024-07-25T22:38:31.010000"],["2024-07-25T22:38:32.010000"],["2024-07-25T22:38:33.010000"],["2024-07-25T22:38:34.010000"],["2024-07-25T22:38:35.010000"],["2024-07-25T22:38:36.010000"],["2024-07-25T22:38:37.010000"],["2024-07-25T22:38:38.010000"],["2024-07-25T22:38:39.010000"],["2024-07-25T22:38:40.010000"],["2024-07-25T22:38:41.010000"],["2024-07-25T22:38:42.010000"],["2024-07-25T22:38:43.010000"],["2024-07-25T22:38:44.010000"],["2024-07-25T22:38:45.010000"],["2024-07-25T22:38:46.010000"],["2024-07-25T22:38:47.010000"],["2024-07-25T22:38:48.010000"],["2024-07-25T22:38:49.010000"],["2024-07-25T22:38:50.010000"],["2024-07-25T22:38:51.010000"],["2024-07-25T22:38:52.010000"],["2024-07-25T22:38:53.010000"],["2024-07-25T22:38:54.010000"],["2024-07-25T22:38:55.010000"],["2024-07-25T22:38:56.010000"],["2024-07-25T22:38:57.010000"],["2024-07-25T22:38:58.010000"],["2024-07-25T22:38:59.010000"],["2024-07-25T22:39:00.010000"],["2024-07-25T22:39:01.010000"],["2024-07-25T22:39:02.010000"],["2024-07-25T22:39:03.010000"],["2024-07-25T22:39:04.010000"],["2024-07-25T22:39:05.010000"],["2024-07-25T22:39:06.010000"],["2024-07-25T22:39:07.010000"],["2024-07-25T22:39:08.010000"],["2024-07-25T22:39:09.010000"],["2024-07-25T22:39:10.010000"],["2024-07-25T22:39:11.010000"],["2024-07-25T22:39:12.010000"],["2024-07-25T22:39:13.010000"],["2024-07-25T22:39:14.010000"],["2024-07-25T22:39:15.010000"],["2024-07-25T22:39:16.010000"],["2024-07-25T22:39:17.010000"],["2024-07-25T22:39:18.010000"],["2024-07-25T22:39:19.010000"],["2024-07-25T22:39:20.010000"],["2024-07-25T22:39:21.010000"],["2024-07-25T22:39:22.010000"],["2024-07-25T22:39:23.010000"],["2024-07-25T22:39:24.010000"],["2024-07-25T22:39:25.010000"],["2024-07-25T22:39:26.010000"],["2024-07-25T22:39:27.010000"],["2024-07-25T22:39:28.010000"],["2024-07-25T22:39:29.010000"],["2024-07-25T22:39:30.010000"],["2024-07-25T22:39:31.010000"],["2024-07-25T22:39:32.010000"],["2024-07-25T22:39:33.010000"],["2024-07-25T22:39:34.010000"],["2024-07-25T22:39:35.010000"],["2024-07-25T22:39:36.010000"],["2024-07-25T22:39:37.010000"],["2024-07-25T22:39:38.010000"],["2024-07-25T22:39:39.010000"],["2024-07-25T22:39:40.010000"],["2024-07-25T22:39:41.010000"],["2024-07-25T22:39:42.010000"],["2024-07-25T22:39:43.010000"],["2024-07-25T22:39:44.010000"],["2024-07-25T22:39:45.010000"],["2024-07-25T22:39:46.010000"],["2024-07-25T22:39:47.010000"],["2024-07-25T22:39:48.010000"],["2024-07-25T22:39:49.010000"],["2024-07-25T22:39:50.010000"],["2024-07-25T22:39:51.010000"],["2024-07-25T22:39:52.010000"],["2024-07-25T22:39:53.010000"],["2024-07-25T22:39:54.010000"],["2024-07-25T22:39:55.010000"],["2024-07-25T22:39:56.010000"],["2024-07-25T22:39:57.010000"],["2024-07-25T22:39:58.010000"],["2024-07-25T22:39:59.010000"],["2024-07-25T22:40:00.010000"],["2024-07-25T22:40:01.010000"],["2024-07-25T22:40:02.010000"],["2024-07-25T22:40:03.010000"],["2024-07-25T22:40:04.010000"],["2024-07-25T22:40:05.010000"],["2024-07-25T22:40:06.010000"],["2024-07-25T22:40:07.010000"],["2024-07-25T22:40:08.010000"],["2024-07-25T22:40:09.010000"],["2024-07-25T22:40:10.010000"],["2024-07-25T22:40:11.010000"],["2024-07-25T22:40:12.010000"],["2024-07-25T22:40:13.010000"],["2024-07-25T22:40:14.010000"],["2024-07-25T22:40:15.010000"],["2024-07-25T22:40:16.010000"],["2024-07-25T22:40:17.010000"],["2024-07-25T22:40:18.010000"],["2024-07-25T22:40:19.010000"],["2024-07-25T22:40:20.010000"],["2024-07-25T22:40:21.010000"],["2024-07-25T22:40:22.010000"],["2024-07-25T22:40:23.010000"],["2024-07-25T22:40:24.010000"],["2024-07-25T22:40:25.010000"],["2024-07-25T22:40:26.010000"],["2024-07-25T22:40:27.010000"],["2024-07-25T22:40:28.010000"],["2024-07-25T22:40:29.010000"],["2024-07-25T22:40:30.010000"],["2024-07-25T22:40:31.010000"],["2024-07-25T22:40:32.010000"],["2024-07-25T22:40:33.010000"],["2024-07-25T22:40:34.010000"],["2024-07-25T22:40:35.010000"],["2024-07-25T22:40:36.010000"],["2024-07-25T22:40:37.010000"],["2024-07-25T22:40:38.010000"],["2024-07-25T22:40:39.010000"],["2024-07-25T22:40:40.010000"],["2024-07-25T22:40:41.010000"],["2024-07-25T22:40:42.010000"],["2024-07-25T22:40:43.010000"],["2024-07-25T22:40:44.010000"],["2024-07-25T22:40:45.010000"],["2024-07-25T22:40:46.010000"],["2024-07-25T22:40:47.010000"],["2024-07-25T22:40:48.010000"],["2024-07-25T22:40:49.010000"],["2024-07-25T22:40:50.010000"],["2024-07-25T22:40:51.010000"],["2024-07-25T22:40:52.010000"],["2024-07-25T22:40:53.010000"],["2024-07-25T22:40:54.010000"],["2024-07-25T22:40:55.010000"],["2024-07-25T22:40:56.010000"],["2024-07-25T22:40:57.010000"],["2024-07-25T22:40:58.010000"],["2024-07-25T22:40:59.010000"],["2024-07-25T22:41:00.010000"],["2024-07-25T22:41:01.010000"],["2024-07-25T22:41:02.010000"],["2024-07-25T22:41:03.010000"],["2024-07-25T22:41:04.010000"],["2024-07-25T22:41:05.010000"],["2024-07-25T22:41:06.010000"],["2024-07-25T22:41:07.010000"],["2024-07-25T22:41:08.010000"],["2024-07-25T22:41:09.010000"],["2024-07-25T22:41:10.010000"],["2024-07-25T22:41:11.010000"],["2024-07-25T22:41:12.010000"],["2024-07-25T22:41:13.010000"],["2024-07-25T22:41:14.010000"],["2024-07-25T22:41:15.010000"],["2024-07-25T22:41:16.010000"],["2024-07-25T22:41:17.010000"],["2024-07-25T22:41:18.010000"],["2024-07-25T22:41:19.010000"],["2024-07-25T22:41:20.010000"],["2024-07-25T22:41:21.010000"],["2024-07-25T22:41:22.010000"],["2024-07-25T22:41:23.010000"],["2024-07-25T22:41:24.010000"],["2024-07-25T22:41:25.010000"],["2024-07-25T22:41:26.010000"],["2024-07-25T22:41:27.010000"],["2024-07-25T22:41:28.010000"],["2024-07-25T22:41:29.010000"],["2024-07-25T22:41:30.010000"],["2024-07-25T22:41:31.010000"],["2024-07-25T22:41:32.010000"],["2024-07-25T22:41:33.010000"],["2024-07-25T22:41:34.010000"],["2024-07-25T22:41:35.010000"],["2024-07-25T22:41:36.010000"],["2024-07-25T22:41:37.010000"],["2024-07-25T22:41:38.010000"],["2024-07-25T22:41:39.010000"],["2024-07-25T22:41:40.010000"],["2024-07-25T22:41:41.010000"],["2024-07-25T22:41:42.010000"],["2024-07-25T22:41:43.010000"],["2024-07-25T22:41:44.010000"],["2024-07-25T22:41:45.010000"],["2024-07-25T22:41:46.010000"],["2024-07-25T22:41:47.010000"],["2024-07-25T22:41:48.010000"],["2024-07-25T22:41:49.010000"],["2024-07-25T22:41:50.010000"],["2024-07-25T22:41:51.010000"],["2024-07-25T22:41:52.010000"],["2024-07-25T22:41:53.010000"],["2024-07-25T22:41:54.010000"],["2024-07-25T22:41:55.010000"],["2024-07-25T22:41:56.010000"],["2024-07-25T22:41:57.010000"],["2024-07-25T22:41:58.010000"],["2024-07-25T22:41:59.010000"],["2024-07-25T22:42:00.010000"],["2024-07-25T22:42:01.010000"],["2024-07-25T22:42:02.010000"],["2024-07-25T22:42:03.010000"],["2024-07-25T22:42:04.010000"],["2024-07-25T22:42:05.010000"],["2024-07-25T22:42:06.010000"],["2024-07-25T22:42:07.010000"],["2024-07-25T22:42:08.010000"],["2024-07-25T22:42:09.010000"],["2024-07-25T22:42:10.010000"],["2024-07-25T22:42:11.010000"],["2024-07-25T22:42:12.010000"],["2024-07-25T22:42:13.010000"],["2024-07-25T22:42:14.010000"],["2024-07-25T22:42:15.010000"],["2024-07-25T22:42:16.010000"],["2024-07-25T22:42:17.010000"],["2024-07-25T22:42:18.010000"],["2024-07-25T22:42:19.010000"],["2024-07-25T22:42:20.010000"],["2024-07-25T22:42:21.010000"],["2024-07-25T22:42:22.010000"],["2024-07-25T22:42:23.010000"],["2024-07-25T22:42:24.010000"],["2024-07-25T22:42:25.010000"],["2024-07-25T22:42:26.010000"],["2024-07-25T22:42:27.010000"],["2024-07-25T22:42:28.010000"],["2024-07-25T22:42:29.010000"],["2024-07-25T22:42:30.010000"],["2024-07-25T22:42:31.010000"],["2024-07-25T22:42:32.010000"],["2024-07-25T22:42:33.010000"],["2024-07-25T22:42:34.010000"],["2024-07-25T22:42:35.010000"],["2024-07-25T22:42:36.010000"],["2024-07-25T22:42:37.010000"],["2024-07-25T22:42:38.010000"],["2024-07-25T22:42:39.010000"],["2024-07-25T22:42:40.010000"],["2024-07-25T22:42:41.010000"],["2024-07-25T22:42:42.010000"],["2024-07-25T22:42:43.010000"],["2024-07-25T22:42:44.010000"],["2024-07-25T22:42:45.010000"],["2024-07-25T22:42:46.010000"],["2024-07-25T22:42:47.010000"],["2024-07-25T22:42:48.010000"],["2024-07-25T22:42:49.010000"],["2024-07-25T22:42:50.010000"],["2024-07-25T22:42:51.010000"],["2024-07-25T22:42:52.010000"],["2024-07-25T22:42:53.010000"],["2024-07-25T22:42:54.010000"],["2024-07-25T22:42:55.010000"],["2024-07-25T22:42:56.010000"],["2024-07-25T22:42:57.010000"],["2024-07-25T22:42:58.010000"],["2024-07-25T22:42:59.010000"],["2024-07-25T22:43:00.010000"],["2024-07-25T22:43:01.010000"],["2024-07-25T22:43:02.010000"],["2024-07-25T22:43:03.010000"],["2024-07-25T22:43:04.010000"],["2024-07-25T22:43:05.010000"],["2024-07-25T22:43:06.010000"],["2024-07-25T22:43:07.010000"],["2024-07-25T22:43:08.010000"],["2024-07-25T22:43:09.010000"],["2024-07-25T22:43:10.010000"],["2024-07-25T22:43:11.010000"],["2024-07-25T22:43:12.010000"],["2024-07-25T22:43:13.010000"],["2024-07-25T22:43:14.010000"],["2024-07-25T22:43:15.010000"],["2024-07-25T22:43:16.010000"],["2024-07-25T22:43:17.010000"],["2024-07-25T22:43:18.010000"],["2024-07-25T22:43:19.010000"],["2024-07-25T22:43:20.010000"],["2024-07-25T22:43:21.010000"],["2024-07-25T22:43:22.010000"],["2024-07-25T22:43:23.010000"],["2024-07-25T22:43:24.010000"],["2024-07-25T22:43:25.010000"],["2024-07-25T22:43:26.010000"],["2024-07-25T22:43:27.010000"],["2024-07-25T22:43:28.010000"],["2024-07-25T22:43:29.010000"],["2024-07-25T22:43:30.010000"],["2024-07-25T22:43:31.010000"],["2024-07-25T22:43:32.010000"],["2024-07-25T22:43:33.010000"],["2024-07-25T22:43:34.010000"],["2024-07-25T22:43:35.010000"],["2024-07-25T22:43:36.010000"],["2024-07-25T22:43:37.010000"],["2024-07-25T22:43:38.010000"],["2024-07-25T22:43:39.010000"],["2024-07-25T22:43:40.010000"],["2024-07-25T22:43:41.010000"],["2024-07-25T22:43:42.010000"],["2024-07-25T22:43:43.010000"],["2024-07-25T22:43:44.010000"],["2024-07-25T22:43:45.010000"],["2024-07-25T22:43:46.010000"],["2024-07-25T22:43:47.010000"],["2024-07-25T22:43:48.010000"],["2024-07-25T22:43:49.010000"],["2024-07-25T22:43:50.010000"],["2024-07-25T22:43:51.010000"],["2024-07-25T22:43:52.010000"],["2024-07-25T22:43:53.010000"],["2024-07-25T22:43:54.010000"],["2024-07-25T22:43:55.010000"],["2024-07-25T22:43:56.010000"],["2024-07-25T22:43:57.010000"],["2024-07-25T22:43:58.010000"],["2024-07-25T22:43:59.010000"],["2024-07-25T22:44:00.010000"],["2024-07-25T22:44:01.010000"],["2024-07-25T22:44:02.010000"],["2024-07-25T22:44:03.010000"],["2024-07-25T22:44:04.010000"],["2024-07-25T22:44:05.010000"],["2024-07-25T22:44:06.010000"],["2024-07-25T22:44:07.010000"],["2024-07-25T22:44:08.010000"],["2024-07-25T22:44:09.010000"],["2024-07-25T22:44:10.010000"],["2024-07-25T22:44:11.010000"],["2024-07-25T22:44:12.010000"],["2024-07-25T22:44:13.010000"],["2024-07-25T22:44:14.010000"],["2024-07-25T22:44:15.010000"],["2024-07-25T22:44:16.010000"],["2024-07-25T22:44:17.010000"],["2024-07-25T22:44:18.010000"],["2024-07-25T22:44:19.010000"],["2024-07-25T22:44:20.010000"],["2024-07-25T22:44:21.010000"],["2024-07-25T22:44:22.010000"],["2024-07-25T22:44:23.010000"],["2024-07-25T22:44:24.010000"],["2024-07-25T22:44:25.010000"],["2024-07-25T22:44:26.010000"],["2024-07-25T22:44:27.010000"],["2024-07-25T22:44:28.010000"],["2024-07-25T22:44:29.010000"],["2024-07-25T22:44:30.010000"],["2024-07-25T22:44:31.010000"],["2024-07-25T22:44:32.010000"],["2024-07-25T22:44:33.010000"],["2024-07-25T22:44:34.010000"],["2024-07-25T22:44:35.010000"],["2024-07-25T22:44:36.010000"],["2024-07-25T22:44:37.010000"],["2024-07-25T22:44:38.010000"],["2024-07-25T22:44:39.010000"],["2024-07-25T22:44:40.010000"],["2024-07-25T22:44:41.010000"],["2024-07-25T22:44:42.010000"],["2024-07-25T22:44:43.010000"],["2024-07-25T22:44:44.010000"],["2024-07-25T22:44:45.010000"],["2024-07-25T22:44:46.010000"],["2024-07-25T22:44:47.010000"],["2024-07-25T22:44:48.010000"],["2024-07-25T22:44:49.010000"],["2024-07-25T22:44:50.010000"],["2024-07-25T22:44:51.010000"],["2024-07-25T22:44:52.010000"],["2024-07-25T22:44:53.010000"],["2024-07-25T22:44:54.010000"],["2024-07-25T22:44:55.010000"],["2024-07-25T22:44:56.010000"],["2024-07-25T22:44:57.010000"],["2024-07-25T22:44:58.010000"],["2024-07-25T22:44:59.010000"],["2024-07-25T22:45:00.010000"],["2024-07-25T22:45:01.010000"],["2024-07-25T22:45:02.010000"],["2024-07-25T22:45:03.010000"],["2024-07-25T22:45:04.010000"],["2024-07-25T22:45:05.010000"],["2024-07-25T22:45:06.010000"],["2024-07-25T22:45:07.010000"],["2024-07-25T22:45:08.010000"],["2024-07-25T22:45:09.010000"],["2024-07-25T22:45:10.010000"],["2024-07-25T22:45:11.010000"],["2024-07-25T22:45:12.010000"],["2024-07-25T22:45:13.010000"],["2024-07-25T22:45:14.010000"],["2024-07-25T22:45:15.010000"],["2024-07-25T22:45:16.010000"],["2024-07-25T22:45:17.010000"],["2024-07-25T22:45:18.010000"],["2024-07-25T22:45:19.010000"],["2024-07-25T22:45:20.010000"],["2024-07-25T22:45:21.010000"],["2024-07-25T22:45:22.010000"],["2024-07-25T22:45:23.010000"],["2024-07-25T22:45:24.010000"],["2024-07-25T22:45:25.010000"],["2024-07-25T22:45:26.010000"],["2024-07-25T22:45:27.010000"],["2024-07-25T22:45:28.010000"],["2024-07-25T22:45:29.010000"],["2024-07-25T22:45:30.010000"],["2024-07-25T22:45:31.010000"],["2024-07-25T22:45:32.010000"],["2024-07-25T22:45:33.010000"],["2024-07-25T22:45:34.010000"],["2024-07-25T22:45:35.010000"],["2024-07-25T22:45:36.010000"],["2024-07-25T22:45:37.010000"],["2024-07-25T22:45:38.010000"],["2024-07-25T22:45:39.010000"],["2024-07-25T22:45:40.010000"],["2024-07-25T22:45:41.010000"],["2024-07-25T22:45:42.010000"],["2024-07-25T22:45:43.010000"],["2024-07-25T22:45:44.010000"],["2024-07-25T22:45:45.010000"],["2024-07-25T22:45:46.010000"],["2024-07-25T22:45:47.010000"],["2024-07-25T22:45:48.010000"],["2024-07-25T22:45:49.010000"],["2024-07-25T22:45:50.010000"],["2024-07-25T22:45:51.010000"],["2024-07-25T22:45:52.010000"],["2024-07-25T22:45:53.010000"],["2024-07-25T22:45:54.010000"],["2024-07-25T22:45:55.010000"],["2024-07-25T22:45:56.010000"],["2024-07-25T22:45:57.010000"],["2024-07-25T22:45:58.010000"],["2024-07-25T22:45:59.010000"],["2024-07-25T22:46:00.010000"],["2024-07-25T22:46:01.010000"],["2024-07-25T22:46:02.010000"],["2024-07-25T22:46:03.010000"],["2024-07-25T22:46:04.010000"],["2024-07-25T22:46:05.010000"],["2024-07-25T22:46:06.010000"],["2024-07-25T22:46:07.010000"],["2024-07-25T22:46:08.010000"],["2024-07-25T22:46:09.010000"],["2024-07-25T22:46:10.010000"],["2024-07-25T22:46:11.010000"],["2024-07-25T22:46:12.010000"],["2024-07-25T22:46:13.010000"],["2024-07-25T22:46:14.010000"],["2024-07-25T22:46:15.010000"],["2024-07-25T22:46:16.010000"],["2024-07-25T22:46:17.010000"],["2024-07-25T22:46:18.010000"],["2024-07-25T22:46:19.010000"],["2024-07-25T22:46:20.010000"],["2024-07-25T22:46:21.010000"],["2024-07-25T22:46:22.010000"],["2024-07-25T22:46:23.010000"],["2024-07-25T22:46:24.010000"],["2024-07-25T22:46:25.010000"],["2024-07-25T22:46:26.010000"],["2024-07-25T22:46:27.010000"],["2024-07-25T22:46:28.010000"],["2024-07-25T22:46:29.010000"],["2024-07-25T22:46:30.010000"],["2024-07-25T22:46:31.010000"],["2024-07-25T22:46:32.010000"],["2024-07-25T22:46:33.010000"],["2024-07-25T22:46:34.010000"],["2024-07-25T22:46:35.010000"],["2024-07-25T22:46:36.010000"],["2024-07-25T22:46:37.010000"],["2024-07-25T22:46:38.010000"],["2024-07-25T22:46:39.010000"],["2024-07-25T22:46:40.010000"],["2024-07-25T22:46:41.010000"],["2024-07-25T22:46:42.010000"],["2024-07-25T22:46:43.010000"],["2024-07-25T22:46:44.010000"],["2024-07-25T22:46:45.010000"],["2024-07-25T22:46:46.010000"],["2024-07-25T22:46:47.010000"],["2024-07-25T22:46:48.010000"],["2024-07-25T22:46:49.010000"],["2024-07-25T22:46:50.010000"],["2024-07-25T22:46:51.010000"],["2024-07-25T22:46:52.010000"],["2024-07-25T22:46:53.010000"],["2024-07-25T22:46:54.010000"],["2024-07-25T22:46:55.010000"],["2024-07-25T22:46:56.010000"],["2024-07-25T22:46:57.010000"],["2024-07-25T22:46:58.010000"],["2024-07-25T22:46:59.010000"],["2024-07-25T22:47:00.010000"],["2024-07-25T22:47:01.010000"],["2024-07-25T22:47:02.010000"],["2024-07-25T22:47:03.010000"],["2024-07-25T22:47:04.010000"],["2024-07-25T22:47:05.010000"],["2024-07-25T22:47:06.010000"],["2024-07-25T22:47:07.010000"],["2024-07-25T22:47:08.010000"],["2024-07-25T22:47:09.010000"],["2024-07-25T22:47:10.010000"],["2024-07-25T22:47:11.010000"],["2024-07-25T22:47:12.010000"],["2024-07-25T22:47:13.010000"],["2024-07-25T22:47:14.010000"],["2024-07-25T22:47:15.010000"],["2024-07-25T22:47:16.010000"],["2024-07-25T22:47:17.010000"],["2024-07-25T22:47:18.010000"],["2024-07-25T22:47:19.010000"],["2024-07-25T22:47:20.010000"],["2024-07-25T22:47:21.010000"],["2024-07-25T22:47:22.010000"],["2024-07-25T22:47:23.010000"],["2024-07-25T22:47:24.010000"],["2024-07-25T22:47:25.010000"],["2024-07-25T22:47:26.010000"],["2024-07-25T22:47:27.010000"],["2024-07-25T22:47:28.010000"],["2024-07-25T22:47:29.010000"],["2024-07-25T22:47:30.010000"],["2024-07-25T22:47:31.010000"],["2024-07-25T22:47:32.010000"],["2024-07-25T22:47:33.010000"],["2024-07-25T22:47:34.010000"],["2024-07-25T22:47:35.010000"],["2024-07-25T22:47:36.010000"],["2024-07-25T22:47:37.010000"],["2024-07-25T22:47:38.010000"],["2024-07-25T22:47:39.010000"],["2024-07-25T22:47:40.010000"],["2024-07-25T22:47:41.010000"],["2024-07-25T22:47:42.010000"],["2024-07-25T22:47:43.010000"],["2024-07-25T22:47:44.010000"],["2024-07-25T22:47:45.010000"],["2024-07-25T22:47:46.010000"],["2024-07-25T22:47:47.010000"],["2024-07-25T22:47:48.010000"],["2024-07-25T22:47:49.010000"],["2024-07-25T22:47:50.010000"],["2024-07-25T22:47:51.010000"],["2024-07-25T22:47:52.010000"],["2024-07-25T22:47:53.010000"],["2024-07-25T22:47:54.010000"],["2024-07-25T22:47:55.010000"],["2024-07-25T22:47:56.010000"],["2024-07-25T22:47:57.010000"],["2024-07-25T22:47:58.010000"],["2024-07-25T22:47:59.010000"],["2024-07-25T22:48:00.010000"],["2024-07-25T22:48:01.010000"],["2024-07-25T22:48:02.010000"],["2024-07-25T22:48:03.010000"],["2024-07-25T22:48:04.010000"],["2024-07-25T22:48:05.010000"],["2024-07-25T22:48:06.010000"],["2024-07-25T22:48:07.010000"],["2024-07-25T22:48:08.010000"],["2024-07-25T22:48:09.010000"],["2024-07-25T22:48:10.010000"],["2024-07-25T22:48:11.010000"],["2024-07-25T22:48:12.010000"],["2024-07-25T22:48:13.010000"],["2024-07-25T22:48:14.010000"],["2024-07-25T22:48:15.010000"],["2024-07-25T22:48:16.010000"],["2024-07-25T22:48:17.010000"],["2024-07-25T22:48:18.010000"],["2024-07-25T22:48:19.010000"],["2024-07-25T22:48:20.010000"],["2024-07-25T22:48:21.010000"],["2024-07-25T22:48:22.010000"],["2024-07-25T22:48:23.010000"],["2024-07-25T22:48:24.010000"],["2024-07-25T22:48:25.010000"],["2024-07-25T22:48:26.010000"],["2024-07-25T22:48:27.010000"],["2024-07-25T22:48:28.010000"],["2024-07-25T22:48:29.010000"],["2024-07-25T22:48:30.010000"],["2024-07-25T22:48:31.010000"],["2024-07-25T22:48:32.010000"],["2024-07-25T22:48:33.010000"],["2024-07-25T22:48:34.010000"],["2024-07-25T22:48:35.010000"],["2024-07-25T22:48:36.010000"],["2024-07-25T22:48:37.010000"],["2024-07-25T22:48:38.010000"],["2024-07-25T22:48:39.010000"],["2024-07-25T22:48:40.010000"],["2024-07-25T22:48:41.010000"],["2024-07-25T22:48:42.010000"],["2024-07-25T22:48:43.010000"],["2024-07-25T22:48:44.010000"],["2024-07-25T22:48:45.010000"],["2024-07-25T22:48:46.010000"],["2024-07-25T22:48:47.010000"],["2024-07-25T22:48:48.010000"],["2024-07-25T22:48:49.010000"],["2024-07-25T22:48:50.010000"],["2024-07-25T22:48:51.010000"],["2024-07-25T22:48:52.010000"],["2024-07-25T22:48:53.010000"],["2024-07-25T22:48:54.010000"],["2024-07-25T22:48:55.010000"],["2024-07-25T22:48:56.010000"],["2024-07-25T22:48:57.010000"],["2024-07-25T22:48:58.010000"],["2024-07-25T22:48:59.010000"],["2024-07-25T22:49:00.010000"],["2024-07-25T22:49:01.010000"],["2024-07-25T22:49:02.010000"],["2024-07-25T22:49:03.010000"],["2024-07-25T22:49:04.010000"],["2024-07-25T22:49:05.010000"],["2024-07-25T22:49:06.010000"],["2024-07-25T22:49:07.010000"],["2024-07-25T22:49:08.010000"],["2024-07-25T22:49:09.010000"],["2024-07-25T22:49:10.010000"],["2024-07-25T22:49:11.010000"],["2024-07-25T22:49:12.010000"],["2024-07-25T22:49:13.010000"],["2024-07-25T22:49:14.010000"],["2024-07-25T22:49:15.010000"],["2024-07-25T22:49:16.010000"],["2024-07-25T22:49:17.010000"],["2024-07-25T22:49:18.010000"],["2024-07-25T22:49:19.010000"],["2024-07-25T22:49:20.010000"],["2024-07-25T22:49:21.010000"],["2024-07-25T22:49:22.010000"],["2024-07-25T22:49:23.010000"],["2024-07-25T22:49:24.010000"],["2024-07-25T22:49:25.010000"],["2024-07-25T22:49:26.010000"],["2024-07-25T22:49:27.010000"],["2024-07-25T22:49:28.010000"],["2024-07-25T22:49:29.010000"],["2024-07-25T22:49:30.010000"],["2024-07-25T22:49:31.010000"],["2024-07-25T22:49:32.010000"],["2024-07-25T22:49:33.010000"],["2024-07-25T22:49:34.010000"],["2024-07-25T22:49:35.010000"],["2024-07-25T22:49:36.010000"],["2024-07-25T22:49:37.010000"],["2024-07-25T22:49:38.010000"],["2024-07-25T22:49:39.010000"],["2024-07-25T22:49:40.010000"],["2024-07-25T22:49:41.010000"],["2024-07-25T22:49:42.010000"],["2024-07-25T22:49:43.010000"],["2024-07-25T22:49:44.010000"],["2024-07-25T22:49:45.010000"],["2024-07-25T22:49:46.010000"],["2024-07-25T22:49:47.010000"],["2024-07-25T22:49:48.010000"],["2024-07-25T22:49:49.010000"],["2024-07-25T22:49:50.010000"],["2024-07-25T22:49:51.010000"],["2024-07-25T22:49:52.010000"],["2024-07-25T22:49:53.010000"],["2024-07-25T22:49:54.010000"],["2024-07-25T22:49:55.010000"],["2024-07-25T22:49:56.010000"],["2024-07-25T22:49:57.010000"],["2024-07-25T22:49:58.010000"],["2024-07-25T22:49:59.010000"],["2024-07-25T22:50:00.010000"],["2024-07-25T22:50:01.010000"],["2024-07-25T22:50:02.010000"],["2024-07-25T22:50:03.010000"],["2024-07-25T22:50:04.010000"],["2024-07-25T22:50:05.010000"],["2024-07-25T22:50:06.010000"],["2024-07-25T22:50:07.010000"],["2024-07-25T22:50:08.010000"],["2024-07-25T22:50:09.010000"],["2024-07-25T22:50:10.010000"],["2024-07-25T22:50:11.010000"],["2024-07-25T22:50:12.010000"],["2024-07-25T22:50:13.010000"],["2024-07-25T22:50:14.010000"],["2024-07-25T22:50:15.010000"],["2024-07-25T22:50:16.010000"],["2024-07-25T22:50:17.010000"],["2024-07-25T22:50:18.010000"],["2024-07-25T22:50:19.010000"],["2024-07-25T22:50:20.010000"],["2024-07-25T22:50:21.010000"],["2024-07-25T22:50:22.010000"],["2024-07-25T22:50:23.010000"],["2024-07-25T22:50:24.010000"],["2024-07-25T22:50:25.010000"],["2024-07-25T22:50:26.010000"],["2024-07-25T22:50:27.010000"],["2024-07-25T22:50:28.010000"],["2024-07-25T22:50:29.010000"],["2024-07-25T22:50:30.010000"],["2024-07-25T22:50:31.010000"],["2024-07-25T22:50:32.010000"],["2024-07-25T22:50:33.010000"],["2024-07-25T22:50:34.010000"],["2024-07-25T22:50:35.010000"],["2024-07-25T22:50:36.010000"],["2024-07-25T22:50:37.010000"],["2024-07-25T22:50:38.010000"],["2024-07-25T22:50:39.010000"],["2024-07-25T22:50:40.010000"],["2024-07-25T22:50:41.010000"],["2024-07-25T22:50:42.010000"],["2024-07-25T22:50:43.010000"],["2024-07-25T22:50:44.010000"],["2024-07-25T22:50:45.010000"],["2024-07-25T22:50:46.010000"],["2024-07-25T22:50:47.010000"],["2024-07-25T22:50:48.010000"],["2024-07-25T22:50:49.010000"],["2024-07-25T22:50:50.010000"],["2024-07-25T22:50:51.010000"],["2024-07-25T22:50:52.010000"],["2024-07-25T22:50:53.010000"],["2024-07-25T22:50:54.010000"],["2024-07-25T22:50:55.010000"],["2024-07-25T22:50:56.010000"],["2024-07-25T22:50:57.010000"],["2024-07-25T22:50:58.010000"],["2024-07-25T22:50:59.010000"],["2024-07-25T22:51:00.010000"],["2024-07-25T22:51:01.010000"],["2024-07-25T22:51:02.010000"],["2024-07-25T22:51:03.010000"],["2024-07-25T22:51:04.010000"],["2024-07-25T22:51:05.010000"],["2024-07-25T22:51:06.010000"],["2024-07-25T22:51:07.010000"],["2024-07-25T22:51:08.010000"],["2024-07-25T22:51:09.010000"],["2024-07-25T22:51:10.010000"],["2024-07-25T22:51:11.010000"],["2024-07-25T22:51:12.010000"],["2024-07-25T22:51:13.010000"],["2024-07-25T22:51:14.010000"],["2024-07-25T22:51:15.010000"],["2024-07-25T22:51:16.010000"],["2024-07-25T22:51:17.010000"],["2024-07-25T22:51:18.010000"],["2024-07-25T22:51:19.010000"],["2024-07-25T22:51:20.010000"],["2024-07-25T22:51:21.010000"],["2024-07-25T22:51:22.010000"],["2024-07-25T22:51:23.010000"],["2024-07-25T22:51:24.010000"],["2024-07-25T22:51:25.010000"],["2024-07-25T22:51:26.010000"],["2024-07-25T22:51:27.010000"],["2024-07-25T22:51:28.010000"],["2024-07-25T22:51:29.010000"],["2024-07-25T22:51:30.010000"],["2024-07-25T22:51:31.010000"],["2024-07-25T22:51:32.010000"],["2024-07-25T22:51:33.010000"],["2024-07-25T22:51:34.010000"],["2024-07-25T22:51:35.010000"],["2024-07-25T22:51:36.010000"],["2024-07-25T22:51:37.010000"],["2024-07-25T22:51:38.010000"],["2024-07-25T22:51:39.010000"],["2024-07-25T22:51:40.010000"],["2024-07-25T22:51:41.010000"],["2024-07-25T22:51:42.010000"],["2024-07-25T22:51:43.010000"],["2024-07-25T22:51:44.010000"],["2024-07-25T22:51:45.010000"],["2024-07-25T22:51:46.010000"],["2024-07-25T22:51:47.010000"],["2024-07-25T22:51:48.010000"],["2024-07-25T22:51:49.010000"],["2024-07-25T22:51:50.010000"],["2024-07-25T22:51:51.010000"],["2024-07-25T22:51:52.010000"],["2024-07-25T22:51:53.010000"],["2024-07-25T22:51:54.010000"],["2024-07-25T22:51:55.010000"],["2024-07-25T22:51:56.010000"],["2024-07-25T22:51:57.010000"],["2024-07-25T22:51:58.010000"],["2024-07-25T22:51:59.010000"],["2024-07-25T22:52:00.010000"],["2024-07-25T22:52:01.010000"],["2024-07-25T22:52:02.010000"],["2024-07-25T22:52:03.010000"],["2024-07-25T22:52:04.010000"],["2024-07-25T22:52:05.010000"],["2024-07-25T22:52:06.010000"],["2024-07-25T22:52:07.010000"],["2024-07-25T22:52:08.010000"],["2024-07-25T22:52:09.010000"],["2024-07-25T22:52:10.010000"],["2024-07-25T22:52:11.010000"],["2024-07-25T22:52:12.010000"],["2024-07-25T22:52:13.010000"],["2024-07-25T22:52:14.010000"],["2024-07-25T22:52:15.010000"],["2024-07-25T22:52:16.010000"],["2024-07-25T22:52:17.010000"],["2024-07-25T22:52:18.010000"],["2024-07-25T22:52:19.010000"],["2024-07-25T22:52:20.010000"],["2024-07-25T22:52:21.010000"],["2024-07-25T22:52:22.010000"],["2024-07-25T22:52:23.010000"],["2024-07-25T22:52:24.010000"],["2024-07-25T22:52:25.010000"],["2024-07-25T22:52:26.010000"],["2024-07-25T22:52:27.010000"],["2024-07-25T22:52:28.010000"],["2024-07-25T22:52:29.010000"],["2024-07-25T22:52:30.010000"],["2024-07-25T22:52:31.010000"],["2024-07-25T22:52:32.010000"],["2024-07-25T22:52:33.010000"],["2024-07-25T22:52:34.010000"],["2024-07-25T22:52:35.010000"],["2024-07-25T22:52:36.010000"],["2024-07-25T22:52:37.010000"],["2024-07-25T22:52:38.010000"],["2024-07-25T22:52:39.010000"],["2024-07-25T22:52:40.010000"],["2024-07-25T22:52:41.010000"],["2024-07-25T22:52:42.010000"],["2024-07-25T22:52:43.010000"],["2024-07-25T22:52:44.010000"],["2024-07-25T22:52:45.010000"],["2024-07-25T22:52:46.010000"],["2024-07-25T22:52:47.010000"],["2024-07-25T22:52:48.010000"],["2024-07-25T22:52:49.010000"],["2024-07-25T22:52:50.010000"],["2024-07-25T22:52:51.010000"],["2024-07-25T22:52:52.010000"],["2024-07-25T22:52:53.010000"],["2024-07-25T22:52:54.010000"],["2024-07-25T22:52:55.010000"],["2024-07-25T22:52:56.010000"],["2024-07-25T22:52:57.010000"],["2024-07-25T22:52:58.010000"],["2024-07-25T22:52:59.010000"],["2024-07-25T22:53:00.010000"],["2024-07-25T22:53:01.010000"],["2024-07-25T22:53:02.010000"],["2024-07-25T22:53:03.010000"],["2024-07-25T22:53:04.010000"],["2024-07-25T22:53:05.010000"],["2024-07-25T22:53:06.010000"],["2024-07-25T22:53:07.010000"],["2024-07-25T22:53:08.010000"],["2024-07-25T22:53:09.010000"],["2024-07-25T22:53:10.010000"],["2024-07-25T22:53:11.010000"],["2024-07-25T22:53:12.010000"],["2024-07-25T22:53:13.010000"],["2024-07-25T22:53:14.010000"],["2024-07-25T22:53:15.010000"],["2024-07-25T22:53:16.010000"],["2024-07-25T22:53:17.010000"],["2024-07-25T22:53:18.010000"],["2024-07-25T22:53:19.010000"],["2024-07-25T22:53:20.010000"],["2024-07-25T22:53:21.010000"],["2024-07-25T22:53:22.010000"],["2024-07-25T22:53:23.010000"],["2024-07-25T22:53:24.010000"],["2024-07-25T22:53:25.010000"],["2024-07-25T22:53:26.010000"],["2024-07-25T22:53:27.010000"],["2024-07-25T22:53:28.010000"],["2024-07-25T22:53:29.010000"],["2024-07-25T22:53:30.010000"],["2024-07-25T22:53:31.010000"],["2024-07-25T22:53:32.010000"],["2024-07-25T22:53:33.010000"],["2024-07-25T22:53:34.010000"],["2024-07-25T22:53:35.010000"],["2024-07-25T22:53:36.010000"],["2024-07-25T22:53:37.010000"],["2024-07-25T22:53:38.010000"],["2024-07-25T22:53:39.010000"],["2024-07-25T22:53:40.010000"],["2024-07-25T22:53:41.010000"],["2024-07-25T22:53:42.010000"],["2024-07-25T22:53:43.010000"],["2024-07-25T22:53:44.010000"],["2024-07-25T22:53:45.010000"],["2024-07-25T22:53:46.010000"],["2024-07-25T22:53:47.010000"],["2024-07-25T22:53:48.010000"],["2024-07-25T22:53:49.010000"],["2024-07-25T22:53:50.010000"],["2024-07-25T22:53:51.010000"],["2024-07-25T22:53:52.010000"],["2024-07-25T22:53:53.010000"],["2024-07-25T22:53:54.010000"],["2024-07-25T22:53:55.010000"],["2024-07-25T22:53:56.010000"],["2024-07-25T22:53:57.010000"],["2024-07-25T22:53:58.010000"],["2024-07-25T22:53:59.010000"],["2024-07-25T22:54:00.010000"],["2024-07-25T22:54:01.010000"],["2024-07-25T22:54:02.010000"],["2024-07-25T22:54:03.010000"],["2024-07-25T22:54:04.010000"],["2024-07-25T22:54:05.010000"],["2024-07-25T22:54:06.010000"],["2024-07-25T22:54:07.010000"],["2024-07-25T22:54:08.010000"],["2024-07-25T22:54:09.010000"],["2024-07-25T22:54:10.010000"],["2024-07-25T22:54:11.010000"],["2024-07-25T22:54:12.010000"],["2024-07-25T22:54:13.010000"],["2024-07-25T22:54:14.010000"],["2024-07-25T22:54:15.010000"],["2024-07-25T22:54:16.010000"],["2024-07-25T22:54:17.010000"],["2024-07-25T22:54:18.010000"],["2024-07-25T22:54:19.010000"],["2024-07-25T22:54:20.010000"],["2024-07-25T22:54:21.010000"],["2024-07-25T22:54:22.010000"],["2024-07-25T22:54:23.010000"],["2024-07-25T22:54:24.010000"],["2024-07-25T22:54:25.010000"],["2024-07-25T22:54:26.010000"],["2024-07-25T22:54:27.010000"],["2024-07-25T22:54:28.010000"],["2024-07-25T22:54:29.010000"],["2024-07-25T22:54:30.010000"],["2024-07-25T22:54:31.010000"],["2024-07-25T22:54:32.010000"],["2024-07-25T22:54:33.010000"],["2024-07-25T22:54:34.010000"],["2024-07-25T22:54:35.010000"],["2024-07-25T22:54:36.010000"],["2024-07-25T22:54:37.010000"],["2024-07-25T22:54:38.010000"],["2024-07-25T22:54:39.010000"],["2024-07-25T22:54:40.010000"],["2024-07-25T22:54:41.010000"],["2024-07-25T22:54:42.010000"],["2024-07-25T22:54:43.010000"],["2024-07-25T22:54:44.010000"],["2024-07-25T22:54:45.010000"],["2024-07-25T22:54:46.010000"],["2024-07-25T22:54:47.010000"],["2024-07-25T22:54:48.010000"],["2024-07-25T22:54:49.010000"],["2024-07-25T22:54:50.010000"],["2024-07-25T22:54:51.010000"],["2024-07-25T22:54:52.010000"],["2024-07-25T22:54:53.010000"],["2024-07-25T22:54:54.010000"],["2024-07-25T22:54:55.010000"],["2024-07-25T22:54:56.010000"],["2024-07-25T22:54:57.010000"],["2024-07-25T22:54:58.010000"],["2024-07-25T22:54:59.010000"],["2024-07-25T22:55:00.010000"],["2024-07-25T22:55:01.010000"],["2024-07-25T22:55:02.010000"],["2024-07-25T22:55:03.010000"],["2024-07-25T22:55:04.010000"],["2024-07-25T22:55:05.010000"],["2024-07-25T22:55:06.010000"],["2024-07-25T22:55:07.010000"],["2024-07-25T22:55:08.010000"],["2024-07-25T22:55:09.010000"],["2024-07-25T22:55:10.010000"],["2024-07-25T22:55:11.010000"],["2024-07-25T22:55:12.010000"],["2024-07-25T22:55:13.010000"],["2024-07-25T22:55:14.010000"],["2024-07-25T22:55:15.010000"],["2024-07-25T22:55:16.010000"],["2024-07-25T22:55:17.010000"],["2024-07-25T22:55:18.010000"],["2024-07-25T22:55:19.010000"],["2024-07-25T22:55:20.010000"],["2024-07-25T22:55:21.010000"],["2024-07-25T22:55:22.010000"],["2024-07-25T22:55:23.010000"],["2024-07-25T22:55:24.010000"],["2024-07-25T22:55:25.010000"],["2024-07-25T22:55:26.010000"],["2024-07-25T22:55:27.010000"],["2024-07-25T22:55:28.010000"],["2024-07-25T22:55:29.010000"],["2024-07-25T22:55:30.010000"],["2024-07-25T22:55:31.010000"],["2024-07-25T22:55:32.010000"],["2024-07-25T22:55:33.010000"],["2024-07-25T22:55:34.010000"],["2024-07-25T22:55:35.010000"],["2024-07-25T22:55:36.010000"],["2024-07-25T22:55:37.010000"],["2024-07-25T22:55:38.010000"],["2024-07-25T22:55:39.010000"],["2024-07-25T22:55:40.010000"],["2024-07-25T22:55:41.010000"],["2024-07-25T22:55:42.010000"],["2024-07-25T22:55:43.010000"],["2024-07-25T22:55:44.010000"],["2024-07-25T22:55:45.010000"],["2024-07-25T22:55:46.010000"],["2024-07-25T22:55:47.010000"],["2024-07-25T22:55:48.010000"],["2024-07-25T22:55:49.010000"],["2024-07-25T22:55:50.010000"],["2024-07-25T22:55:51.010000"],["2024-07-25T22:55:52.010000"],["2024-07-25T22:55:53.010000"],["2024-07-25T22:55:54.010000"],["2024-07-25T22:55:55.010000"],["2024-07-25T22:55:56.010000"],["2024-07-25T22:55:57.010000"],["2024-07-25T22:55:58.010000"],["2024-07-25T22:55:59.010000"],["2024-07-25T22:56:00.010000"],["2024-07-25T22:56:01.010000"],["2024-07-25T22:56:02.010000"],["2024-07-25T22:56:03.010000"],["2024-07-25T22:56:04.010000"],["2024-07-25T22:56:05.010000"],["2024-07-25T22:56:06.010000"],["2024-07-25T22:56:07.010000"],["2024-07-25T22:56:08.010000"],["2024-07-25T22:56:09.010000"],["2024-07-25T22:56:10.010000"],["2024-07-25T22:56:11.010000"],["2024-07-25T22:56:12.010000"],["2024-07-25T22:56:13.010000"],["2024-07-25T22:56:14.010000"],["2024-07-25T22:56:15.010000"],["2024-07-25T22:56:16.010000"],["2024-07-25T22:56:17.010000"],["2024-07-25T22:56:18.010000"],["2024-07-25T22:56:19.010000"],["2024-07-25T22:56:20.010000"],["2024-07-25T22:56:21.010000"],["2024-07-25T22:56:22.010000"],["2024-07-25T22:56:23.010000"],["2024-07-25T22:56:24.010000"],["2024-07-25T22:56:25.010000"],["2024-07-25T22:56:26.010000"],["2024-07-25T22:56:27.010000"],["2024-07-25T22:56:28.010000"],["2024-07-25T22:56:29.010000"],["2024-07-25T22:56:30.010000"],["2024-07-25T22:56:31.010000"],["2024-07-25T22:56:32.010000"],["2024-07-25T22:56:33.010000"],["2024-07-25T22:56:34.010000"],["2024-07-25T22:56:35.010000"],["2024-07-25T22:56:36.010000"],["2024-07-25T22:56:37.010000"],["2024-07-25T22:56:38.010000"],["2024-07-25T22:56:39.010000"],["2024-07-25T22:56:40.010000"],["2024-07-25T22:56:41.010000"],["2024-07-25T22:56:42.010000"],["2024-07-25T22:56:43.010000"],["2024-07-25T22:56:44.010000"],["2024-07-25T22:56:45.010000"],["2024-07-25T22:56:46.010000"],["2024-07-25T22:56:47.010000"],["2024-07-25T22:56:48.010000"],["2024-07-25T22:56:49.010000"],["2024-07-25T22:56:50.010000"],["2024-07-25T22:56:51.010000"],["2024-07-25T22:56:52.010000"],["2024-07-25T22:56:53.010000"],["2024-07-25T22:56:54.010000"],["2024-07-25T22:56:55.010000"],["2024-07-25T22:56:56.010000"],["2024-07-25T22:56:57.010000"],["2024-07-25T22:56:58.010000"],["2024-07-25T22:56:59.010000"],["2024-07-25T22:57:00.010000"],["2024-07-25T22:57:01.010000"],["2024-07-25T22:57:02.010000"],["2024-07-25T22:57:03.010000"],["2024-07-25T22:57:04.010000"],["2024-07-25T22:57:05.010000"],["2024-07-25T22:57:06.010000"],["2024-07-25T22:57:07.010000"],["2024-07-25T22:57:08.010000"],["2024-07-25T22:57:09.010000"],["2024-07-25T22:57:10.010000"],["2024-07-25T22:57:11.010000"],["2024-07-25T22:57:12.010000"],["2024-07-25T22:57:13.010000"],["2024-07-25T22:57:14.010000"],["2024-07-25T22:57:15.010000"],["2024-07-25T22:57:16.010000"],["2024-07-25T22:57:17.010000"],["2024-07-25T22:57:18.010000"],["2024-07-25T22:57:19.010000"],["2024-07-25T22:57:20.010000"],["2024-07-25T22:57:21.010000"],["2024-07-25T22:57:22.010000"],["2024-07-25T22:57:23.010000"],["2024-07-25T22:57:24.010000"],["2024-07-25T22:57:25.010000"],["2024-07-25T22:57:26.010000"],["2024-07-25T22:57:27.010000"],["2024-07-25T22:57:28.010000"],["2024-07-25T22:57:29.010000"],["2024-07-25T22:57:30.010000"],["2024-07-25T22:57:31.010000"],["2024-07-25T22:57:32.010000"],["2024-07-25T22:57:33.010000"],["2024-07-25T22:57:34.010000"],["2024-07-25T22:57:35.010000"],["2024-07-25T22:57:36.010000"],["2024-07-25T22:57:37.010000"],["2024-07-25T22:57:38.010000"],["2024-07-25T22:57:39.010000"],["2024-07-25T22:57:40.010000"],["2024-07-25T22:57:41.010000"],["2024-07-25T22:57:42.010000"],["2024-07-25T22:57:43.010000"],["2024-07-25T22:57:44.010000"],["2024-07-25T22:57:45.010000"],["2024-07-25T22:57:46.010000"],["2024-07-25T22:57:47.010000"],["2024-07-25T22:57:48.010000"],["2024-07-25T22:57:49.010000"],["2024-07-25T22:57:50.010000"],["2024-07-25T22:57:51.010000"],["2024-07-25T22:57:52.010000"],["2024-07-25T22:57:53.010000"],["2024-07-25T22:57:54.010000"],["2024-07-25T22:57:55.010000"],["2024-07-25T22:57:56.010000"],["2024-07-25T22:57:57.010000"],["2024-07-25T22:57:58.010000"],["2024-07-25T22:57:59.010000"],["2024-07-25T22:58:00.010000"],["2024-07-25T22:58:01.010000"],["2024-07-25T22:58:02.010000"],["2024-07-25T22:58:03.010000"],["2024-07-25T22:58:04.010000"],["2024-07-25T22:58:05.010000"],["2024-07-25T22:58:06.010000"],["2024-07-25T22:58:07.010000"],["2024-07-25T22:58:08.010000"],["2024-07-25T22:58:09.010000"],["2024-07-25T22:58:10.010000"],["2024-07-25T22:58:11.010000"],["2024-07-25T22:58:12.010000"],["2024-07-25T22:58:13.010000"],["2024-07-25T22:58:14.010000"],["2024-07-25T22:58:15.010000"],["2024-07-25T22:58:16.010000"],["2024-07-25T22:58:17.010000"],["2024-07-25T22:58:18.010000"],["2024-07-25T22:58:19.010000"],["2024-07-25T22:58:20.010000"],["2024-07-25T22:58:21.010000"],["2024-07-25T22:58:22.010000"],["2024-07-25T22:58:23.010000"],["2024-07-25T22:58:24.010000"],["2024-07-25T22:58:25.010000"],["2024-07-25T22:58:26.010000"],["2024-07-25T22:58:27.010000"],["2024-07-25T22:58:28.010000"],["2024-07-25T22:58:29.010000"],["2024-07-25T22:58:30.010000"],["2024-07-25T22:58:31.010000"],["2024-07-25T22:58:32.010000"],["2024-07-25T22:58:33.010000"],["2024-07-25T22:58:34.010000"],["2024-07-25T22:58:35.010000"],["2024-07-25T22:58:36.010000"],["2024-07-25T22:58:37.010000"],["2024-07-25T22:58:38.010000"],["2024-07-25T22:58:39.010000"],["2024-07-25T22:58:40.010000"],["2024-07-25T22:58:41.010000"],["2024-07-25T22:58:42.010000"],["2024-07-25T22:58:43.010000"],["2024-07-25T22:58:44.010000"],["2024-07-25T22:58:45.010000"],["2024-07-25T22:58:46.010000"],["2024-07-25T22:58:47.010000"],["2024-07-25T22:58:48.010000"],["2024-07-25T22:58:49.010000"],["2024-07-25T22:58:50.010000"],["2024-07-25T22:58:51.010000"],["2024-07-25T22:58:52.010000"],["2024-07-25T22:58:53.010000"],["2024-07-25T22:58:54.010000"],["2024-07-25T22:58:55.010000"],["2024-07-25T22:58:56.010000"],["2024-07-25T22:58:57.010000"],["2024-07-25T22:58:58.010000"],["2024-07-25T22:58:59.010000"],["2024-07-25T22:59:00.010000"],["2024-07-25T22:59:01.010000"],["2024-07-25T22:59:02.010000"],["2024-07-25T22:59:03.010000"],["2024-07-25T22:59:04.010000"],["2024-07-25T22:59:05.010000"],["2024-07-25T22:59:06.010000"],["2024-07-25T22:59:07.010000"],["2024-07-25T22:59:08.010000"],["2024-07-25T22:59:09.010000"],["2024-07-25T22:59:10.010000"],["2024-07-25T22:59:11.010000"],["2024-07-25T22:59:12.010000"],["2024-07-25T22:59:13.010000"],["2024-07-25T22:59:14.010000"],["2024-07-25T22:59:15.010000"],["2024-07-25T22:59:16.010000"],["2024-07-25T22:59:17.010000"],["2024-07-25T22:59:18.010000"],["2024-07-25T22:59:19.010000"],["2024-07-25T22:59:20.010000"],["2024-07-25T22:59:21.010000"],["2024-07-25T22:59:22.010000"],["2024-07-25T22:59:23.010000"],["2024-07-25T22:59:24.010000"],["2024-07-25T22:59:25.010000"],["2024-07-25T22:59:26.010000"],["2024-07-25T22:59:27.010000"],["2024-07-25T22:59:28.010000"],["2024-07-25T22:59:29.010000"],["2024-07-25T22:59:30.010000"],["2024-07-25T22:59:31.010000"],["2024-07-25T22:59:32.010000"],["2024-07-25T22:59:33.010000"],["2024-07-25T22:59:34.010000"],["2024-07-25T22:59:35.010000"],["2024-07-25T22:59:36.010000"],["2024-07-25T22:59:37.010000"],["2024-07-25T22:59:38.010000"],["2024-07-25T22:59:39.010000"],["2024-07-25T22:59:40.010000"],["2024-07-25T22:59:41.010000"],["2024-07-25T22:59:42.010000"],["2024-07-25T22:59:43.010000"],["2024-07-25T22:59:44.010000"],["2024-07-25T22:59:45.010000"],["2024-07-25T22:59:46.010000"],["2024-07-25T22:59:47.010000"],["2024-07-25T22:59:48.010000"],["2024-07-25T22:59:49.010000"],["2024-07-25T22:59:50.010000"],["2024-07-25T22:59:51.010000"],["2024-07-25T22:59:52.010000"],["2024-07-25T22:59:53.010000"],["2024-07-25T22:59:54.010000"],["2024-07-25T22:59:55.010000"],["2024-07-25T22:59:56.010000"],["2024-07-25T22:59:57.010000"],["2024-07-25T22:59:58.010000"],["2024-07-25T22:59:59.010000"],["2024-07-25T23:00:00.010000"],["2024-07-25T23:00:01.010000"],["2024-07-25T23:00:02.010000"],["2024-07-25T23:00:03.010000"],["2024-07-25T23:00:04.010000"],["2024-07-25T23:00:05.010000"],["2024-07-25T23:00:06.010000"],["2024-07-25T23:00:07.010000"],["2024-07-25T23:00:08.010000"],["2024-07-25T23:00:09.010000"],["2024-07-25T23:00:10.010000"],["2024-07-25T23:00:11.010000"],["2024-07-25T23:00:12.010000"],["2024-07-25T23:00:13.010000"],["2024-07-25T23:00:14.010000"],["2024-07-25T23:00:15.010000"],["2024-07-25T23:00:16.010000"],["2024-07-25T23:00:17.010000"],["2024-07-25T23:00:18.010000"],["2024-07-25T23:00:19.010000"],["2024-07-25T23:00:20.010000"],["2024-07-25T23:00:21.010000"],["2024-07-25T23:00:22.010000"],["2024-07-25T23:00:23.010000"],["2024-07-25T23:00:24.010000"],["2024-07-25T23:00:25.010000"],["2024-07-25T23:00:26.010000"],["2024-07-25T23:00:27.010000"],["2024-07-25T23:00:28.010000"],["2024-07-25T23:00:29.010000"],["2024-07-25T23:00:30.010000"],["2024-07-25T23:00:31.010000"],["2024-07-25T23:00:32.010000"],["2024-07-25T23:00:33.010000"],["2024-07-25T23:00:34.010000"],["2024-07-25T23:00:35.010000"],["2024-07-25T23:00:36.010000"],["2024-07-25T23:00:37.010000"],["2024-07-25T23:00:38.010000"],["2024-07-25T23:00:39.010000"],["2024-07-25T23:00:40.010000"],["2024-07-25T23:00:41.010000"],["2024-07-25T23:00:42.010000"],["2024-07-25T23:00:43.010000"],["2024-07-25T23:00:44.010000"],["2024-07-25T23:00:45.010000"],["2024-07-25T23:00:46.010000"],["2024-07-25T23:00:47.010000"],["2024-07-25T23:00:48.010000"],["2024-07-25T23:00:49.010000"],["2024-07-25T23:00:50.010000"],["2024-07-25T23:00:51.010000"],["2024-07-25T23:00:52.010000"],["2024-07-25T23:00:53.010000"],["2024-07-25T23:00:54.010000"],["2024-07-25T23:00:55.010000"],["2024-07-25T23:00:56.010000"],["2024-07-25T23:00:57.010000"],["2024-07-25T23:00:58.010000"],["2024-07-25T23:00:59.010000"],["2024-07-25T23:01:00.010000"],["2024-07-25T23:01:01.010000"],["2024-07-25T23:01:02.010000"],["2024-07-25T23:01:03.010000"],["2024-07-25T23:01:04.010000"],["2024-07-25T23:01:05.010000"],["2024-07-25T23:01:06.010000"],["2024-07-25T23:01:07.010000"],["2024-07-25T23:01:08.010000"],["2024-07-25T23:01:09.010000"],["2024-07-25T23:01:10.010000"],["2024-07-25T23:01:11.010000"],["2024-07-25T23:01:12.010000"],["2024-07-25T23:01:13.010000"],["2024-07-25T23:01:14.010000"],["2024-07-25T23:01:15.010000"],["2024-07-25T23:01:16.010000"],["2024-07-25T23:01:17.010000"],["2024-07-25T23:01:18.010000"],["2024-07-25T23:01:19.010000"],["2024-07-25T23:01:20.010000"],["2024-07-25T23:01:21.010000"],["2024-07-25T23:01:22.010000"],["2024-07-25T23:01:23.010000"],["2024-07-25T23:01:24.010000"],["2024-07-25T23:01:25.010000"],["2024-07-25T23:01:26.010000"],["2024-07-25T23:01:27.010000"],["2024-07-25T23:01:28.010000"],["2024-07-25T23:01:29.010000"],["2024-07-25T23:01:30.010000"],["2024-07-25T23:01:31.010000"],["2024-07-25T23:01:32.010000"],["2024-07-25T23:01:33.010000"],["2024-07-25T23:01:34.010000"],["2024-07-25T23:01:35.010000"],["2024-07-25T23:01:36.010000"],["2024-07-25T23:01:37.010000"],["2024-07-25T23:01:38.010000"],["2024-07-25T23:01:39.010000"],["2024-07-25T23:01:40.010000"],["2024-07-25T23:01:41.010000"],["2024-07-25T23:01:42.010000"],["2024-07-25T23:01:43.010000"],["2024-07-25T23:01:44.010000"],["2024-07-25T23:01:45.010000"],["2024-07-25T23:01:46.010000"],["2024-07-25T23:01:47.010000"],["2024-07-25T23:01:48.010000"],["2024-07-25T23:01:49.010000"],["2024-07-25T23:01:50.010000"],["2024-07-25T23:01:51.010000"],["2024-07-25T23:01:52.010000"],["2024-07-25T23:01:53.010000"],["2024-07-25T23:01:54.010000"],["2024-07-25T23:01:55.010000"],["2024-07-25T23:01:56.010000"],["2024-07-25T23:01:57.010000"],["2024-07-25T23:01:58.010000"],["2024-07-25T23:01:59.010000"],["2024-07-25T23:02:00.010000"],["2024-07-25T23:02:01.010000"],["2024-07-25T23:02:02.010000"],["2024-07-25T23:02:03.010000"],["2024-07-25T23:02:04.010000"],["2024-07-25T23:02:05.010000"],["2024-07-25T23:02:06.010000"],["2024-07-25T23:02:07.010000"],["2024-07-25T23:02:08.010000"],["2024-07-25T23:02:09.010000"],["2024-07-25T23:02:10.010000"],["2024-07-25T23:02:11.010000"],["2024-07-25T23:02:12.010000"],["2024-07-25T23:02:13.010000"],["2024-07-25T23:02:14.010000"],["2024-07-25T23:02:15.010000"],["2024-07-25T23:02:16.010000"],["2024-07-25T23:02:17.010000"],["2024-07-25T23:02:18.010000"],["2024-07-25T23:02:19.010000"],["2024-07-25T23:02:20.010000"],["2024-07-25T23:02:21.010000"],["2024-07-25T23:02:22.010000"],["2024-07-25T23:02:23.010000"],["2024-07-25T23:02:24.010000"],["2024-07-25T23:02:25.010000"],["2024-07-25T23:02:26.010000"],["2024-07-25T23:02:27.010000"],["2024-07-25T23:02:28.010000"],["2024-07-25T23:02:29.010000"],["2024-07-25T23:02:30.010000"],["2024-07-25T23:02:31.010000"],["2024-07-25T23:02:32.010000"],["2024-07-25T23:02:33.010000"],["2024-07-25T23:02:34.010000"],["2024-07-25T23:02:35.010000"],["2024-07-25T23:02:36.010000"],["2024-07-25T23:02:37.010000"],["2024-07-25T23:02:38.010000"],["2024-07-25T23:02:39.010000"],["2024-07-25T23:02:40.010000"],["2024-07-25T23:02:41.010000"],["2024-07-25T23:02:42.010000"],["2024-07-25T23:02:43.010000"],["2024-07-25T23:02:44.010000"],["2024-07-25T23:02:45.010000"],["2024-07-25T23:02:46.010000"],["2024-07-25T23:02:47.010000"],["2024-07-25T23:02:48.010000"],["2024-07-25T23:02:49.010000"],["2024-07-25T23:02:50.010000"],["2024-07-25T23:02:51.010000"],["2024-07-25T23:02:52.010000"],["2024-07-25T23:02:53.010000"],["2024-07-25T23:02:54.010000"],["2024-07-25T23:02:55.010000"],["2024-07-25T23:02:56.010000"],["2024-07-25T23:02:57.010000"],["2024-07-25T23:02:58.010000"],["2024-07-25T23:02:59.010000"],["2024-07-25T23:03:00.010000"],["2024-07-25T23:03:01.010000"],["2024-07-25T23:03:02.010000"],["2024-07-25T23:03:03.010000"],["2024-07-25T23:03:04.010000"],["2024-07-25T23:03:05.010000"],["2024-07-25T23:03:06.010000"],["2024-07-25T23:03:07.010000"],["2024-07-25T23:03:08.010000"],["2024-07-25T23:03:09.010000"],["2024-07-25T23:03:10.010000"],["2024-07-25T23:03:11.010000"],["2024-07-25T23:03:12.010000"],["2024-07-25T23:03:13.010000"],["2024-07-25T23:03:14.010000"],["2024-07-25T23:03:15.010000"],["2024-07-25T23:03:16.010000"],["2024-07-25T23:03:17.010000"],["2024-07-25T23:03:18.010000"],["2024-07-25T23:03:19.010000"],["2024-07-25T23:03:20.010000"],["2024-07-25T23:03:21.010000"],["2024-07-25T23:03:22.010000"],["2024-07-25T23:03:23.010000"],["2024-07-25T23:03:24.010000"],["2024-07-25T23:03:25.010000"],["2024-07-25T23:03:26.010000"],["2024-07-25T23:03:27.010000"],["2024-07-25T23:03:28.010000"],["2024-07-25T23:03:29.010000"],["2024-07-25T23:03:30.010000"],["2024-07-25T23:03:31.010000"],["2024-07-25T23:03:32.010000"],["2024-07-25T23:03:33.010000"],["2024-07-25T23:03:34.010000"],["2024-07-25T23:03:35.010000"],["2024-07-25T23:03:36.010000"],["2024-07-25T23:03:37.010000"],["2024-07-25T23:03:38.010000"],["2024-07-25T23:03:39.010000"],["2024-07-25T23:03:40.010000"],["2024-07-25T23:03:41.010000"],["2024-07-25T23:03:42.010000"],["2024-07-25T23:03:43.010000"],["2024-07-25T23:03:44.010000"],["2024-07-25T23:03:45.010000"],["2024-07-25T23:03:46.010000"],["2024-07-25T23:03:47.010000"],["2024-07-25T23:03:48.010000"],["2024-07-25T23:03:49.010000"],["2024-07-25T23:03:50.010000"],["2024-07-25T23:03:51.010000"],["2024-07-25T23:03:52.010000"],["2024-07-25T23:03:53.010000"],["2024-07-25T23:03:54.010000"],["2024-07-25T23:03:55.010000"],["2024-07-25T23:03:56.010000"],["2024-07-25T23:03:57.010000"],["2024-07-25T23:03:58.010000"],["2024-07-25T23:03:59.010000"],["2024-07-25T23:04:00.010000"],["2024-07-25T23:04:01.010000"],["2024-07-25T23:04:02.010000"],["2024-07-25T23:04:03.010000"],["2024-07-25T23:04:04.010000"],["2024-07-25T23:04:05.010000"],["2024-07-25T23:04:06.010000"],["2024-07-25T23:04:07.010000"],["2024-07-25T23:04:08.010000"],["2024-07-25T23:04:09.010000"],["2024-07-25T23:04:10.010000"],["2024-07-25T23:04:11.010000"],["2024-07-25T23:04:12.010000"],["2024-07-25T23:04:13.010000"],["2024-07-25T23:04:14.010000"],["2024-07-25T23:04:15.010000"],["2024-07-25T23:04:16.010000"],["2024-07-25T23:04:17.010000"],["2024-07-25T23:04:18.010000"],["2024-07-25T23:04:19.010000"],["2024-07-25T23:04:20.010000"],["2024-07-25T23:04:21.010000"],["2024-07-25T23:04:22.010000"],["2024-07-25T23:04:23.010000"],["2024-07-25T23:04:24.010000"],["2024-07-25T23:04:25.010000"],["2024-07-25T23:04:26.010000"],["2024-07-25T23:04:27.010000"],["2024-07-25T23:04:28.010000"],["2024-07-25T23:04:29.010000"],["2024-07-25T23:04:30.010000"],["2024-07-25T23:04:31.010000"],["2024-07-25T23:04:32.010000"],["2024-07-25T23:04:33.010000"],["2024-07-25T23:04:34.010000"],["2024-07-25T23:04:35.010000"],["2024-07-25T23:04:36.010000"],["2024-07-25T23:04:37.010000"],["2024-07-25T23:04:38.010000"],["2024-07-25T23:04:39.010000"],["2024-07-25T23:04:40.010000"],["2024-07-25T23:04:41.010000"],["2024-07-25T23:04:42.010000"],["2024-07-25T23:04:43.010000"],["2024-07-25T23:04:44.010000"],["2024-07-25T23:04:45.010000"],["2024-07-25T23:04:46.010000"],["2024-07-25T23:04:47.010000"],["2024-07-25T23:04:48.010000"],["2024-07-25T23:04:49.010000"],["2024-07-25T23:04:50.010000"],["2024-07-25T23:04:51.010000"],["2024-07-25T23:04:52.010000"],["2024-07-25T23:04:53.010000"],["2024-07-25T23:04:54.010000"],["2024-07-25T23:04:55.010000"],["2024-07-25T23:04:56.010000"],["2024-07-25T23:04:57.010000"],["2024-07-25T23:04:58.010000"],["2024-07-25T23:04:59.010000"],["2024-07-25T23:05:00.010000"],["2024-07-25T23:05:01.010000"],["2024-07-25T23:05:02.010000"],["2024-07-25T23:05:03.010000"],["2024-07-25T23:05:04.010000"],["2024-07-25T23:05:05.010000"],["2024-07-25T23:05:06.010000"],["2024-07-25T23:05:07.010000"],["2024-07-25T23:05:08.010000"],["2024-07-25T23:05:09.010000"],["2024-07-25T23:05:10.010000"],["2024-07-25T23:05:11.010000"],["2024-07-25T23:05:12.010000"],["2024-07-25T23:05:13.010000"],["2024-07-25T23:05:14.010000"],["2024-07-25T23:05:15.010000"],["2024-07-25T23:05:16.010000"],["2024-07-25T23:05:17.010000"],["2024-07-25T23:05:18.010000"],["2024-07-25T23:05:19.010000"],["2024-07-25T23:05:20.010000"],["2024-07-25T23:05:21.010000"],["2024-07-25T23:05:22.010000"],["2024-07-25T23:05:23.010000"],["2024-07-25T23:05:24.010000"],["2024-07-25T23:05:25.010000"],["2024-07-25T23:05:26.010000"],["2024-07-25T23:05:27.010000"],["2024-07-25T23:05:28.010000"],["2024-07-25T23:05:29.010000"],["2024-07-25T23:05:30.010000"],["2024-07-25T23:05:31.010000"],["2024-07-25T23:05:32.010000"],["2024-07-25T23:05:33.010000"],["2024-07-25T23:05:34.010000"],["2024-07-25T23:05:35.010000"],["2024-07-25T23:05:36.010000"],["2024-07-25T23:05:37.010000"],["2024-07-25T23:05:38.010000"],["2024-07-25T23:05:39.010000"],["2024-07-25T23:05:40.010000"],["2024-07-25T23:05:41.010000"],["2024-07-25T23:05:42.010000"],["2024-07-25T23:05:43.010000"],["2024-07-25T23:05:44.010000"],["2024-07-25T23:05:45.010000"],["2024-07-25T23:05:46.010000"],["2024-07-25T23:05:47.010000"],["2024-07-25T23:05:48.010000"],["2024-07-25T23:05:49.010000"],["2024-07-25T23:05:50.010000"],["2024-07-25T23:05:51.010000"],["2024-07-25T23:05:52.010000"],["2024-07-25T23:05:53.010000"],["2024-07-25T23:05:54.010000"],["2024-07-25T23:05:55.010000"],["2024-07-25T23:05:56.010000"],["2024-07-25T23:05:57.010000"],["2024-07-25T23:05:58.010000"],["2024-07-25T23:05:59.010000"],["2024-07-25T23:06:00.010000"],["2024-07-25T23:06:01.010000"],["2024-07-25T23:06:02.010000"],["2024-07-25T23:06:03.010000"],["2024-07-25T23:06:04.010000"],["2024-07-25T23:06:05.010000"],["2024-07-25T23:06:06.010000"],["2024-07-25T23:06:07.010000"],["2024-07-25T23:06:08.010000"],["2024-07-25T23:06:09.010000"],["2024-07-25T23:06:10.010000"],["2024-07-25T23:06:11.010000"],["2024-07-25T23:06:12.010000"],["2024-07-25T23:06:13.010000"],["2024-07-25T23:06:14.010000"],["2024-07-25T23:06:15.010000"],["2024-07-25T23:06:16.010000"],["2024-07-25T23:06:17.010000"],["2024-07-25T23:06:18.010000"],["2024-07-25T23:06:19.010000"],["2024-07-25T23:06:20.010000"],["2024-07-25T23:06:21.010000"],["2024-07-25T23:06:22.010000"],["2024-07-25T23:06:23.010000"],["2024-07-25T23:06:24.010000"],["2024-07-25T23:06:25.010000"],["2024-07-25T23:06:26.010000"],["2024-07-25T23:06:27.010000"],["2024-07-25T23:06:28.010000"],["2024-07-25T23:06:29.010000"],["2024-07-25T23:06:30.010000"],["2024-07-25T23:06:31.010000"],["2024-07-25T23:06:32.010000"],["2024-07-25T23:06:33.010000"],["2024-07-25T23:06:34.010000"],["2024-07-25T23:06:35.010000"],["2024-07-25T23:06:36.010000"],["2024-07-25T23:06:37.010000"],["2024-07-25T23:06:38.010000"],["2024-07-25T23:06:39.010000"],["2024-07-25T23:06:40.010000"],["2024-07-25T23:06:41.010000"],["2024-07-25T23:06:42.010000"],["2024-07-25T23:06:43.010000"],["2024-07-25T23:06:44.010000"],["2024-07-25T23:06:45.010000"],["2024-07-25T23:06:46.010000"],["2024-07-25T23:06:47.010000"],["2024-07-25T23:06:48.010000"],["2024-07-25T23:06:49.010000"],["2024-07-25T23:06:50.010000"],["2024-07-25T23:06:51.010000"],["2024-07-25T23:06:52.010000"],["2024-07-25T23:06:53.010000"],["2024-07-25T23:06:54.010000"],["2024-07-25T23:06:55.010000"],["2024-07-25T23:06:56.010000"],["2024-07-25T23:06:57.010000"],["2024-07-25T23:06:58.010000"],["2024-07-25T23:06:59.010000"],["2024-07-25T23:07:00.010000"],["2024-07-25T23:07:01.010000"],["2024-07-25T23:07:02.010000"],["2024-07-25T23:07:03.010000"],["2024-07-25T23:07:04.010000"],["2024-07-25T23:07:05.010000"],["2024-07-25T23:07:06.010000"],["2024-07-25T23:07:07.010000"],["2024-07-25T23:07:08.010000"],["2024-07-25T23:07:09.010000"],["2024-07-25T23:07:10.010000"],["2024-07-25T23:07:11.010000"],["2024-07-25T23:07:12.010000"],["2024-07-25T23:07:13.010000"],["2024-07-25T23:07:14.010000"],["2024-07-25T23:07:15.010000"],["2024-07-25T23:07:16.010000"],["2024-07-25T23:07:17.010000"],["2024-07-25T23:07:18.010000"],["2024-07-25T23:07:19.010000"],["2024-07-25T23:07:20.010000"],["2024-07-25T23:07:21.010000"],["2024-07-25T23:07:22.010000"],["2024-07-25T23:07:23.010000"],["2024-07-25T23:07:24.010000"],["2024-07-25T23:07:25.010000"],["2024-07-25T23:07:26.010000"],["2024-07-25T23:07:27.010000"],["2024-07-25T23:07:28.010000"],["2024-07-25T23:07:29.010000"],["2024-07-25T23:07:30.010000"],["2024-07-25T23:07:31.010000"],["2024-07-25T23:07:32.010000"],["2024-07-25T23:07:33.010000"],["2024-07-25T23:07:34.010000"],["2024-07-25T23:07:35.010000"],["2024-07-25T23:07:36.010000"],["2024-07-25T23:07:37.010000"],["2024-07-25T23:07:38.010000"],["2024-07-25T23:07:39.010000"],["2024-07-25T23:07:40.010000"],["2024-07-25T23:07:41.010000"],["2024-07-25T23:07:42.010000"],["2024-07-25T23:07:43.010000"],["2024-07-25T23:07:44.010000"],["2024-07-25T23:07:45.010000"],["2024-07-25T23:07:46.010000"],["2024-07-25T23:07:47.010000"],["2024-07-25T23:07:48.010000"],["2024-07-25T23:07:49.010000"],["2024-07-25T23:07:50.010000"],["2024-07-25T23:07:51.010000"],["2024-07-25T23:07:52.010000"],["2024-07-25T23:07:53.010000"],["2024-07-25T23:07:54.010000"],["2024-07-25T23:07:55.010000"],["2024-07-25T23:07:56.010000"],["2024-07-25T23:07:57.010000"],["2024-07-25T23:07:58.010000"],["2024-07-25T23:07:59.010000"],["2024-07-25T23:08:00.010000"],["2024-07-25T23:08:01.010000"],["2024-07-25T23:08:02.010000"],["2024-07-25T23:08:03.010000"],["2024-07-25T23:08:04.010000"],["2024-07-25T23:08:05.010000"],["2024-07-25T23:08:06.010000"],["2024-07-25T23:08:07.010000"],["2024-07-25T23:08:08.010000"],["2024-07-25T23:08:09.010000"],["2024-07-25T23:08:10.010000"],["2024-07-25T23:08:11.010000"],["2024-07-25T23:08:12.010000"],["2024-07-25T23:08:13.010000"],["2024-07-25T23:08:14.010000"],["2024-07-25T23:08:15.010000"],["2024-07-25T23:08:16.010000"],["2024-07-25T23:08:17.010000"],["2024-07-25T23:08:18.010000"],["2024-07-25T23:08:19.010000"],["2024-07-25T23:08:20.010000"],["2024-07-25T23:08:21.010000"],["2024-07-25T23:08:22.010000"],["2024-07-25T23:08:23.010000"],["2024-07-25T23:08:24.010000"],["2024-07-25T23:08:25.010000"],["2024-07-25T23:08:26.010000"],["2024-07-25T23:08:27.010000"],["2024-07-25T23:08:28.010000"],["2024-07-25T23:08:29.010000"],["2024-07-25T23:08:30.010000"],["2024-07-25T23:08:31.010000"],["2024-07-25T23:08:32.010000"],["2024-07-25T23:08:33.010000"],["2024-07-25T23:08:34.010000"],["2024-07-25T23:08:35.010000"],["2024-07-25T23:08:36.010000"],["2024-07-25T23:08:37.010000"],["2024-07-25T23:08:38.010000"],["2024-07-25T23:08:39.010000"],["2024-07-25T23:08:40.010000"],["2024-07-25T23:08:41.010000"],["2024-07-25T23:08:42.010000"],["2024-07-25T23:08:43.010000"],["2024-07-25T23:08:44.010000"],["2024-07-25T23:08:45.010000"],["2024-07-25T23:08:46.010000"],["2024-07-25T23:08:47.010000"],["2024-07-25T23:08:48.010000"],["2024-07-25T23:08:49.010000"],["2024-07-25T23:08:50.010000"],["2024-07-25T23:08:51.010000"],["2024-07-25T23:08:52.010000"],["2024-07-25T23:08:53.010000"],["2024-07-25T23:08:54.010000"],["2024-07-25T23:08:55.010000"],["2024-07-25T23:08:56.010000"],["2024-07-25T23:08:57.010000"],["2024-07-25T23:08:58.010000"],["2024-07-25T23:08:59.010000"],["2024-07-25T23:09:00.010000"],["2024-07-25T23:09:01.010000"],["2024-07-25T23:09:02.010000"],["2024-07-25T23:09:03.010000"],["2024-07-25T23:09:04.010000"],["2024-07-25T23:09:05.010000"],["2024-07-25T23:09:06.010000"],["2024-07-25T23:09:07.010000"],["2024-07-25T23:09:08.010000"],["2024-07-25T23:09:09.010000"],["2024-07-25T23:09:10.010000"],["2024-07-25T23:09:11.010000"],["2024-07-25T23:09:12.010000"],["2024-07-25T23:09:13.010000"],["2024-07-25T23:09:14.010000"],["2024-07-25T23:09:15.010000"],["2024-07-25T23:09:16.010000"],["2024-07-25T23:09:17.010000"],["2024-07-25T23:09:18.010000"],["2024-07-25T23:09:19.010000"],["2024-07-25T23:09:20.010000"],["2024-07-25T23:09:21.010000"],["2024-07-25T23:09:22.010000"],["2024-07-25T23:09:23.010000"],["2024-07-25T23:09:24.010000"],["2024-07-25T23:09:25.010000"],["2024-07-25T23:09:26.010000"],["2024-07-25T23:09:27.010000"],["2024-07-25T23:09:28.010000"],["2024-07-25T23:09:29.010000"],["2024-07-25T23:09:30.010000"],["2024-07-25T23:09:31.010000"],["2024-07-25T23:09:32.010000"],["2024-07-25T23:09:33.010000"],["2024-07-25T23:09:34.010000"],["2024-07-25T23:09:35.010000"],["2024-07-25T23:09:36.010000"],["2024-07-25T23:09:37.010000"],["2024-07-25T23:09:38.010000"],["2024-07-25T23:09:39.010000"],["2024-07-25T23:09:40.010000"],["2024-07-25T23:09:41.010000"],["2024-07-25T23:09:42.010000"],["2024-07-25T23:09:43.010000"],["2024-07-25T23:09:44.010000"],["2024-07-25T23:09:45.010000"],["2024-07-25T23:09:46.010000"],["2024-07-25T23:09:47.010000"],["2024-07-25T23:09:48.010000"],["2024-07-25T23:09:49.010000"],["2024-07-25T23:09:50.010000"],["2024-07-25T23:09:51.010000"],["2024-07-25T23:09:52.010000"],["2024-07-25T23:09:53.010000"],["2024-07-25T23:09:54.010000"],["2024-07-25T23:09:55.010000"],["2024-07-25T23:09:56.010000"],["2024-07-25T23:09:57.010000"],["2024-07-25T23:09:58.010000"],["2024-07-25T23:09:59.010000"],["2024-07-25T23:10:00.010000"],["2024-07-25T23:10:01.010000"],["2024-07-25T23:10:02.010000"],["2024-07-25T23:10:03.010000"],["2024-07-25T23:10:04.010000"],["2024-07-25T23:10:05.010000"],["2024-07-25T23:10:06.010000"],["2024-07-25T23:10:07.010000"],["2024-07-25T23:10:08.010000"],["2024-07-25T23:10:09.010000"],["2024-07-25T23:10:10.010000"],["2024-07-25T23:10:11.010000"],["2024-07-25T23:10:12.010000"],["2024-07-25T23:10:13.010000"],["2024-07-25T23:10:14.010000"],["2024-07-25T23:10:15.010000"],["2024-07-25T23:10:16.010000"],["2024-07-25T23:10:17.010000"],["2024-07-25T23:10:18.010000"],["2024-07-25T23:10:19.010000"],["2024-07-25T23:10:20.010000"],["2024-07-25T23:10:21.010000"],["2024-07-25T23:10:22.010000"],["2024-07-25T23:10:23.010000"],["2024-07-25T23:10:24.010000"],["2024-07-25T23:10:25.010000"],["2024-07-25T23:10:26.010000"],["2024-07-25T23:10:27.010000"],["2024-07-25T23:10:28.010000"],["2024-07-25T23:10:29.010000"],["2024-07-25T23:10:30.010000"],["2024-07-25T23:10:31.010000"],["2024-07-25T23:10:32.010000"],["2024-07-25T23:10:33.010000"],["2024-07-25T23:10:34.010000"],["2024-07-25T23:10:35.010000"],["2024-07-25T23:10:36.010000"],["2024-07-25T23:10:37.010000"],["2024-07-25T23:10:38.010000"],["2024-07-25T23:10:39.010000"],["2024-07-25T23:10:40.010000"],["2024-07-25T23:10:41.010000"],["2024-07-25T23:10:42.010000"],["2024-07-25T23:10:43.010000"],["2024-07-25T23:10:44.010000"],["2024-07-25T23:10:45.010000"],["2024-07-25T23:10:46.010000"],["2024-07-25T23:10:47.010000"],["2024-07-25T23:10:48.010000"],["2024-07-25T23:10:49.010000"],["2024-07-25T23:10:50.010000"],["2024-07-25T23:10:51.010000"],["2024-07-25T23:10:52.010000"],["2024-07-25T23:10:53.010000"],["2024-07-25T23:10:54.010000"],["2024-07-25T23:10:55.010000"],["2024-07-25T23:10:56.010000"],["2024-07-25T23:10:57.010000"],["2024-07-25T23:10:58.010000"],["2024-07-25T23:10:59.010000"],["2024-07-25T23:11:00.010000"],["2024-07-25T23:11:01.010000"],["2024-07-25T23:11:02.010000"],["2024-07-25T23:11:03.010000"],["2024-07-25T23:11:04.010000"],["2024-07-25T23:11:05.010000"],["2024-07-25T23:11:06.010000"],["2024-07-25T23:11:07.010000"],["2024-07-25T23:11:08.010000"],["2024-07-25T23:11:09.010000"],["2024-07-25T23:11:10.010000"],["2024-07-25T23:11:11.010000"],["2024-07-25T23:11:12.010000"],["2024-07-25T23:11:13.010000"],["2024-07-25T23:11:14.010000"],["2024-07-25T23:11:15.010000"],["2024-07-25T23:11:16.010000"],["2024-07-25T23:11:17.010000"],["2024-07-25T23:11:18.010000"],["2024-07-25T23:11:19.010000"],["2024-07-25T23:11:20.010000"],["2024-07-25T23:11:21.010000"],["2024-07-25T23:11:22.010000"],["2024-07-25T23:11:23.010000"],["2024-07-25T23:11:24.010000"],["2024-07-25T23:11:25.010000"],["2024-07-25T23:11:26.010000"],["2024-07-25T23:11:27.010000"],["2024-07-25T23:11:28.010000"],["2024-07-25T23:11:29.010000"],["2024-07-25T23:11:30.010000"],["2024-07-25T23:11:31.010000"],["2024-07-25T23:11:32.010000"],["2024-07-25T23:11:33.010000"],["2024-07-25T23:11:34.010000"],["2024-07-25T23:11:35.010000"],["2024-07-25T23:11:36.010000"],["2024-07-25T23:11:37.010000"],["2024-07-25T23:11:38.010000"],["2024-07-25T23:11:39.010000"],["2024-07-25T23:11:40.010000"],["2024-07-25T23:11:41.010000"],["2024-07-25T23:11:42.010000"],["2024-07-25T23:11:43.010000"],["2024-07-25T23:11:44.010000"],["2024-07-25T23:11:45.010000"],["2024-07-25T23:11:46.010000"],["2024-07-25T23:11:47.010000"],["2024-07-25T23:11:48.010000"],["2024-07-25T23:11:49.010000"],["2024-07-25T23:11:50.010000"],["2024-07-25T23:11:51.010000"],["2024-07-25T23:11:52.010000"],["2024-07-25T23:11:53.010000"],["2024-07-25T23:11:54.010000"],["2024-07-25T23:11:55.010000"],["2024-07-25T23:11:56.010000"],["2024-07-25T23:11:57.010000"],["2024-07-25T23:11:58.010000"],["2024-07-25T23:11:59.010000"],["2024-07-25T23:12:00.010000"],["2024-07-25T23:12:01.010000"],["2024-07-25T23:12:02.010000"],["2024-07-25T23:12:03.010000"],["2024-07-25T23:12:04.010000"],["2024-07-25T23:12:05.010000"],["2024-07-25T23:12:06.010000"],["2024-07-25T23:12:07.010000"],["2024-07-25T23:12:08.010000"],["2024-07-25T23:12:09.010000"],["2024-07-25T23:12:10.010000"],["2024-07-25T23:12:11.010000"],["2024-07-25T23:12:12.010000"],["2024-07-25T23:12:13.010000"],["2024-07-25T23:12:14.010000"],["2024-07-25T23:12:15.010000"],["2024-07-25T23:12:16.010000"],["2024-07-25T23:12:17.010000"],["2024-07-25T23:12:18.010000"],["2024-07-25T23:12:19.010000"],["2024-07-25T23:12:20.010000"],["2024-07-25T23:12:21.010000"],["2024-07-25T23:12:22.010000"],["2024-07-25T23:12:23.010000"],["2024-07-25T23:12:24.010000"],["2024-07-25T23:12:25.010000"],["2024-07-25T23:12:26.010000"],["2024-07-25T23:12:27.010000"],["2024-07-25T23:12:28.010000"],["2024-07-25T23:12:29.010000"],["2024-07-25T23:12:30.010000"],["2024-07-25T23:12:31.010000"],["2024-07-25T23:12:32.010000"],["2024-07-25T23:12:33.010000"],["2024-07-25T23:12:34.010000"],["2024-07-25T23:12:35.010000"],["2024-07-25T23:12:36.010000"],["2024-07-25T23:12:37.010000"],["2024-07-25T23:12:38.010000"],["2024-07-25T23:12:39.010000"],["2024-07-25T23:12:40.010000"],["2024-07-25T23:12:41.010000"],["2024-07-25T23:12:42.010000"],["2024-07-25T23:12:43.010000"],["2024-07-25T23:12:44.010000"],["2024-07-25T23:12:45.010000"],["2024-07-25T23:12:46.010000"],["2024-07-25T23:12:47.010000"],["2024-07-25T23:12:48.010000"],["2024-07-25T23:12:49.010000"],["2024-07-25T23:12:50.010000"],["2024-07-25T23:12:51.010000"],["2024-07-25T23:12:52.010000"],["2024-07-25T23:12:53.010000"],["2024-07-25T23:12:54.010000"],["2024-07-25T23:12:55.010000"],["2024-07-25T23:12:56.010000"],["2024-07-25T23:12:57.010000"],["2024-07-25T23:12:58.010000"],["2024-07-25T23:12:59.010000"],["2024-07-25T23:13:00.010000"],["2024-07-25T23:13:01.010000"],["2024-07-25T23:13:02.010000"],["2024-07-25T23:13:03.010000"],["2024-07-25T23:13:04.010000"],["2024-07-25T23:13:05.010000"],["2024-07-25T23:13:06.010000"],["2024-07-25T23:13:07.010000"],["2024-07-25T23:13:08.010000"],["2024-07-25T23:13:09.010000"],["2024-07-25T23:13:10.010000"],["2024-07-25T23:13:11.010000"],["2024-07-25T23:13:12.010000"],["2024-07-25T23:13:13.010000"],["2024-07-25T23:13:14.010000"],["2024-07-25T23:13:15.010000"],["2024-07-25T23:13:16.010000"],["2024-07-25T23:13:17.010000"],["2024-07-25T23:13:18.010000"],["2024-07-25T23:13:19.010000"],["2024-07-25T23:13:20.010000"],["2024-07-25T23:13:21.010000"],["2024-07-25T23:13:22.010000"],["2024-07-25T23:13:23.010000"],["2024-07-25T23:13:24.010000"],["2024-07-25T23:13:25.010000"],["2024-07-25T23:13:26.010000"],["2024-07-25T23:13:27.010000"],["2024-07-25T23:13:28.010000"],["2024-07-25T23:13:29.010000"],["2024-07-25T23:13:30.010000"],["2024-07-25T23:13:31.010000"],["2024-07-25T23:13:32.010000"],["2024-07-25T23:13:33.010000"],["2024-07-25T23:13:34.010000"],["2024-07-25T23:13:35.010000"],["2024-07-25T23:13:36.010000"],["2024-07-25T23:13:37.010000"],["2024-07-25T23:13:38.010000"],["2024-07-25T23:13:39.010000"],["2024-07-25T23:13:40.010000"],["2024-07-25T23:13:41.010000"],["2024-07-25T23:13:42.010000"],["2024-07-25T23:13:43.010000"],["2024-07-25T23:13:44.010000"],["2024-07-25T23:13:45.010000"],["2024-07-25T23:13:46.010000"],["2024-07-25T23:13:47.010000"],["2024-07-25T23:13:48.010000"],["2024-07-25T23:13:49.010000"],["2024-07-25T23:13:50.010000"],["2024-07-25T23:13:51.010000"],["2024-07-25T23:13:52.010000"],["2024-07-25T23:13:53.010000"],["2024-07-25T23:13:54.010000"],["2024-07-25T23:13:55.010000"],["2024-07-25T23:13:56.010000"],["2024-07-25T23:13:57.010000"],["2024-07-25T23:13:58.010000"],["2024-07-25T23:13:59.010000"],["2024-07-25T23:14:00.010000"],["2024-07-25T23:14:01.010000"],["2024-07-25T23:14:02.010000"],["2024-07-25T23:14:03.010000"],["2024-07-25T23:14:04.010000"],["2024-07-25T23:14:05.010000"],["2024-07-25T23:14:06.010000"],["2024-07-25T23:14:07.010000"],["2024-07-25T23:14:08.010000"],["2024-07-25T23:14:09.010000"],["2024-07-25T23:14:10.010000"],["2024-07-25T23:14:11.010000"],["2024-07-25T23:14:12.010000"],["2024-07-25T23:14:13.010000"],["2024-07-25T23:14:14.010000"],["2024-07-25T23:14:15.010000"],["2024-07-25T23:14:16.010000"],["2024-07-25T23:14:17.010000"],["2024-07-25T23:14:18.010000"],["2024-07-25T23:14:19.010000"],["2024-07-25T23:14:20.010000"],["2024-07-25T23:14:21.010000"],["2024-07-25T23:14:22.010000"],["2024-07-25T23:14:23.010000"],["2024-07-25T23:14:24.010000"],["2024-07-25T23:14:25.010000"],["2024-07-25T23:14:26.010000"],["2024-07-25T23:14:27.010000"],["2024-07-25T23:14:28.010000"],["2024-07-25T23:14:29.010000"],["2024-07-25T23:14:30.010000"],["2024-07-25T23:14:31.010000"],["2024-07-25T23:14:32.010000"],["2024-07-25T23:14:33.010000"],["2024-07-25T23:14:34.010000"],["2024-07-25T23:14:35.010000"],["2024-07-25T23:14:36.010000"],["2024-07-25T23:14:37.010000"],["2024-07-25T23:14:38.010000"],["2024-07-25T23:14:39.010000"],["2024-07-25T23:14:40.010000"],["2024-07-25T23:14:41.010000"],["2024-07-25T23:14:42.010000"],["2024-07-25T23:14:43.010000"],["2024-07-25T23:14:44.010000"],["2024-07-25T23:14:45.010000"],["2024-07-25T23:14:46.010000"],["2024-07-25T23:14:47.010000"],["2024-07-25T23:14:48.010000"],["2024-07-25T23:14:49.010000"],["2024-07-25T23:14:50.010000"],["2024-07-25T23:14:51.010000"],["2024-07-25T23:14:52.010000"],["2024-07-25T23:14:53.010000"],["2024-07-25T23:14:54.010000"],["2024-07-25T23:14:55.010000"],["2024-07-25T23:14:56.010000"],["2024-07-25T23:14:57.010000"],["2024-07-25T23:14:58.010000"],["2024-07-25T23:14:59.010000"],["2024-07-25T23:15:00.010000"],["2024-07-25T23:15:01.010000"],["2024-07-25T23:15:02.010000"],["2024-07-25T23:15:03.010000"],["2024-07-25T23:15:04.010000"],["2024-07-25T23:15:05.010000"],["2024-07-25T23:15:06.010000"],["2024-07-25T23:15:07.010000"],["2024-07-25T23:15:08.010000"],["2024-07-25T23:15:09.010000"],["2024-07-25T23:15:10.010000"],["2024-07-25T23:15:11.010000"],["2024-07-25T23:15:12.010000"],["2024-07-25T23:15:13.010000"],["2024-07-25T23:15:14.010000"],["2024-07-25T23:15:15.010000"],["2024-07-25T23:15:16.010000"],["2024-07-25T23:15:17.010000"],["2024-07-25T23:15:18.010000"],["2024-07-25T23:15:19.010000"],["2024-07-25T23:15:20.010000"],["2024-07-25T23:15:21.010000"],["2024-07-25T23:15:22.010000"],["2024-07-25T23:15:23.010000"],["2024-07-25T23:15:24.010000"],["2024-07-25T23:15:25.010000"],["2024-07-25T23:15:26.010000"],["2024-07-25T23:15:27.010000"],["2024-07-25T23:15:28.010000"],["2024-07-25T23:15:29.010000"],["2024-07-25T23:15:30.010000"],["2024-07-25T23:15:31.010000"],["2024-07-25T23:15:32.010000"],["2024-07-25T23:15:33.010000"],["2024-07-25T23:15:34.010000"],["2024-07-25T23:15:35.010000"],["2024-07-25T23:15:36.010000"],["2024-07-25T23:15:37.010000"],["2024-07-25T23:15:38.010000"],["2024-07-25T23:15:39.010000"],["2024-07-25T23:15:40.010000"],["2024-07-25T23:15:41.010000"],["2024-07-25T23:15:42.010000"],["2024-07-25T23:15:43.010000"],["2024-07-25T23:15:44.010000"],["2024-07-25T23:15:45.010000"],["2024-07-25T23:15:46.010000"],["2024-07-25T23:15:47.010000"],["2024-07-25T23:15:48.010000"],["2024-07-25T23:15:49.010000"],["2024-07-25T23:15:50.010000"],["2024-07-25T23:15:51.010000"],["2024-07-25T23:15:52.010000"],["2024-07-25T23:15:53.010000"],["2024-07-25T23:15:54.010000"],["2024-07-25T23:15:55.010000"],["2024-07-25T23:15:56.010000"],["2024-07-25T23:15:57.010000"],["2024-07-25T23:15:58.010000"],["2024-07-25T23:15:59.010000"],["2024-07-25T23:16:00.010000"],["2024-07-25T23:16:01.010000"],["2024-07-25T23:16:02.010000"],["2024-07-25T23:16:03.010000"],["2024-07-25T23:16:04.010000"],["2024-07-25T23:16:05.010000"],["2024-07-25T23:16:06.010000"],["2024-07-25T23:16:07.010000"],["2024-07-25T23:16:08.010000"],["2024-07-25T23:16:09.010000"],["2024-07-25T23:16:10.010000"],["2024-07-25T23:16:11.010000"],["2024-07-25T23:16:12.010000"],["2024-07-25T23:16:13.010000"],["2024-07-25T23:16:14.010000"],["2024-07-25T23:16:15.010000"],["2024-07-25T23:16:16.010000"],["2024-07-25T23:16:17.010000"],["2024-07-25T23:16:18.010000"],["2024-07-25T23:16:19.010000"],["2024-07-25T23:16:20.010000"],["2024-07-25T23:16:21.010000"],["2024-07-25T23:16:22.010000"],["2024-07-25T23:16:23.010000"],["2024-07-25T23:16:24.010000"],["2024-07-25T23:16:25.010000"],["2024-07-25T23:16:26.010000"],["2024-07-25T23:16:27.010000"],["2024-07-25T23:16:28.010000"],["2024-07-25T23:16:29.010000"],["2024-07-25T23:16:30.010000"],["2024-07-25T23:16:31.010000"],["2024-07-25T23:16:32.010000"],["2024-07-25T23:16:33.010000"],["2024-07-25T23:16:34.010000"],["2024-07-25T23:16:35.010000"],["2024-07-25T23:16:36.010000"],["2024-07-25T23:16:37.010000"],["2024-07-25T23:16:38.010000"],["2024-07-25T23:16:39.010000"],["2024-07-25T23:16:40.010000"],["2024-07-25T23:16:41.010000"],["2024-07-25T23:16:42.010000"],["2024-07-25T23:16:43.010000"],["2024-07-25T23:16:44.010000"],["2024-07-25T23:16:45.010000"],["2024-07-25T23:16:46.010000"],["2024-07-25T23:16:47.010000"],["2024-07-25T23:16:48.010000"],["2024-07-25T23:16:49.010000"],["2024-07-25T23:16:50.010000"],["2024-07-25T23:16:51.010000"],["2024-07-25T23:16:52.010000"],["2024-07-25T23:16:53.010000"],["2024-07-25T23:16:54.010000"],["2024-07-25T23:16:55.010000"],["2024-07-25T23:16:56.010000"],["2024-07-25T23:16:57.010000"],["2024-07-25T23:16:58.010000"],["2024-07-25T23:16:59.010000"],["2024-07-25T23:17:00.010000"],["2024-07-25T23:17:01.010000"],["2024-07-25T23:17:02.010000"],["2024-07-25T23:17:03.010000"],["2024-07-25T23:17:04.010000"],["2024-07-25T23:17:05.010000"],["2024-07-25T23:17:06.010000"],["2024-07-25T23:17:07.010000"],["2024-07-25T23:17:08.010000"],["2024-07-25T23:17:09.010000"],["2024-07-25T23:17:10.010000"],["2024-07-25T23:17:11.010000"],["2024-07-25T23:17:12.010000"],["2024-07-25T23:17:13.010000"],["2024-07-25T23:17:14.010000"],["2024-07-25T23:17:15.010000"],["2024-07-25T23:17:16.010000"],["2024-07-25T23:17:17.010000"],["2024-07-25T23:17:18.010000"],["2024-07-25T23:17:19.010000"],["2024-07-25T23:17:20.010000"],["2024-07-25T23:17:21.010000"],["2024-07-25T23:17:22.010000"],["2024-07-25T23:17:23.010000"],["2024-07-25T23:17:24.010000"],["2024-07-25T23:17:25.010000"],["2024-07-25T23:17:26.010000"],["2024-07-25T23:17:27.010000"],["2024-07-25T23:17:28.010000"],["2024-07-25T23:17:29.010000"],["2024-07-25T23:17:30.010000"],["2024-07-25T23:17:31.010000"],["2024-07-25T23:17:32.010000"],["2024-07-25T23:17:33.010000"],["2024-07-25T23:17:34.010000"],["2024-07-25T23:17:35.010000"],["2024-07-25T23:17:36.010000"],["2024-07-25T23:17:37.010000"],["2024-07-25T23:17:38.010000"],["2024-07-25T23:17:39.010000"],["2024-07-25T23:17:40.010000"],["2024-07-25T23:17:41.010000"],["2024-07-25T23:17:42.010000"],["2024-07-25T23:17:43.010000"],["2024-07-25T23:17:44.010000"],["2024-07-25T23:17:45.010000"],["2024-07-25T23:17:46.010000"],["2024-07-25T23:17:47.010000"],["2024-07-25T23:17:48.010000"],["2024-07-25T23:17:49.010000"],["2024-07-25T23:17:50.010000"],["2024-07-25T23:17:51.010000"],["2024-07-25T23:17:52.010000"],["2024-07-25T23:17:53.010000"],["2024-07-25T23:17:54.010000"],["2024-07-25T23:17:55.010000"],["2024-07-25T23:17:56.010000"],["2024-07-25T23:17:57.010000"],["2024-07-25T23:17:58.010000"],["2024-07-25T23:17:59.010000"],["2024-07-25T23:18:00.010000"],["2024-07-25T23:18:01.010000"],["2024-07-25T23:18:02.010000"],["2024-07-25T23:18:03.010000"],["2024-07-25T23:18:04.010000"],["2024-07-25T23:18:05.010000"],["2024-07-25T23:18:06.010000"],["2024-07-25T23:18:07.010000"],["2024-07-25T23:18:08.010000"],["2024-07-25T23:18:09.010000"],["2024-07-25T23:18:10.010000"],["2024-07-25T23:18:11.010000"],["2024-07-25T23:18:12.010000"],["2024-07-25T23:18:13.010000"],["2024-07-25T23:18:14.010000"],["2024-07-25T23:18:15.010000"],["2024-07-25T23:18:16.010000"],["2024-07-25T23:18:17.010000"],["2024-07-25T23:18:18.010000"],["2024-07-25T23:18:19.010000"],["2024-07-25T23:18:20.010000"],["2024-07-25T23:18:21.010000"],["2024-07-25T23:18:22.010000"],["2024-07-25T23:18:23.010000"],["2024-07-25T23:18:24.010000"],["2024-07-25T23:18:25.010000"],["2024-07-25T23:18:26.010000"],["2024-07-25T23:18:27.010000"],["2024-07-25T23:18:28.010000"],["2024-07-25T23:18:29.010000"],["2024-07-25T23:18:30.010000"],["2024-07-25T23:18:31.010000"],["2024-07-25T23:18:32.010000"],["2024-07-25T23:18:33.010000"],["2024-07-25T23:18:34.010000"],["2024-07-25T23:18:35.010000"],["2024-07-25T23:18:36.010000"],["2024-07-25T23:18:37.010000"],["2024-07-25T23:18:38.010000"],["2024-07-25T23:18:39.010000"],["2024-07-25T23:18:40.010000"],["2024-07-25T23:18:41.010000"],["2024-07-25T23:18:42.010000"],["2024-07-25T23:18:43.010000"],["2024-07-25T23:18:44.010000"],["2024-07-25T23:18:45.010000"],["2024-07-25T23:18:46.010000"],["2024-07-25T23:18:47.010000"],["2024-07-25T23:18:48.010000"],["2024-07-25T23:18:49.010000"],["2024-07-25T23:18:50.010000"],["2024-07-25T23:18:51.010000"],["2024-07-25T23:18:52.010000"],["2024-07-25T23:18:53.010000"],["2024-07-25T23:18:54.010000"],["2024-07-25T23:18:55.010000"],["2024-07-25T23:18:56.010000"],["2024-07-25T23:18:57.010000"],["2024-07-25T23:18:58.010000"],["2024-07-25T23:18:59.010000"],["2024-07-25T23:19:00.010000"],["2024-07-25T23:19:01.010000"],["2024-07-25T23:19:02.010000"],["2024-07-25T23:19:03.010000"],["2024-07-25T23:19:04.010000"],["2024-07-25T23:19:05.010000"],["2024-07-25T23:19:06.010000"],["2024-07-25T23:19:07.010000"],["2024-07-25T23:19:08.010000"],["2024-07-25T23:19:09.010000"],["2024-07-25T23:19:10.010000"],["2024-07-25T23:19:11.010000"],["2024-07-25T23:19:12.010000"],["2024-07-25T23:19:13.010000"],["2024-07-25T23:19:14.010000"],["2024-07-25T23:19:15.010000"],["2024-07-25T23:19:16.010000"],["2024-07-25T23:19:17.010000"],["2024-07-25T23:19:18.010000"],["2024-07-25T23:19:19.010000"],["2024-07-25T23:19:20.010000"],["2024-07-25T23:19:21.010000"],["2024-07-25T23:19:22.010000"],["2024-07-25T23:19:23.010000"],["2024-07-25T23:19:24.010000"],["2024-07-25T23:19:25.010000"],["2024-07-25T23:19:26.010000"],["2024-07-25T23:19:27.010000"],["2024-07-25T23:19:28.010000"],["2024-07-25T23:19:29.010000"],["2024-07-25T23:19:30.010000"],["2024-07-25T23:19:31.010000"],["2024-07-25T23:19:32.010000"],["2024-07-25T23:19:33.010000"],["2024-07-25T23:19:34.010000"],["2024-07-25T23:19:35.010000"],["2024-07-25T23:19:36.010000"],["2024-07-25T23:19:37.010000"],["2024-07-25T23:19:38.010000"],["2024-07-25T23:19:39.010000"],["2024-07-25T23:19:40.010000"],["2024-07-25T23:19:41.010000"],["2024-07-25T23:19:42.010000"],["2024-07-25T23:19:43.010000"],["2024-07-25T23:19:44.010000"],["2024-07-25T23:19:45.010000"],["2024-07-25T23:19:46.010000"],["2024-07-25T23:19:47.010000"],["2024-07-25T23:19:48.010000"],["2024-07-25T23:19:49.010000"],["2024-07-25T23:19:50.010000"],["2024-07-25T23:19:51.010000"],["2024-07-25T23:19:52.010000"],["2024-07-25T23:19:53.010000"],["2024-07-25T23:19:54.010000"],["2024-07-25T23:19:55.010000"],["2024-07-25T23:19:56.010000"],["2024-07-25T23:19:57.010000"],["2024-07-25T23:19:58.010000"],["2024-07-25T23:19:59.010000"],["2024-07-25T23:20:00.010000"],["2024-07-25T23:20:01.010000"],["2024-07-25T23:20:02.010000"],["2024-07-25T23:20:03.010000"],["2024-07-25T23:20:04.010000"],["2024-07-25T23:20:05.010000"],["2024-07-25T23:20:06.010000"],["2024-07-25T23:20:07.010000"],["2024-07-25T23:20:08.010000"],["2024-07-25T23:20:09.010000"],["2024-07-25T23:20:10.010000"],["2024-07-25T23:20:11.010000"],["2024-07-25T23:20:12.010000"],["2024-07-25T23:20:13.010000"],["2024-07-25T23:20:14.010000"],["2024-07-25T23:20:15.010000"],["2024-07-25T23:20:16.010000"],["2024-07-25T23:20:17.010000"],["2024-07-25T23:20:18.010000"],["2024-07-25T23:20:19.010000"],["2024-07-25T23:20:20.010000"],["2024-07-25T23:20:21.010000"],["2024-07-25T23:20:22.010000"],["2024-07-25T23:20:23.010000"],["2024-07-25T23:20:24.010000"],["2024-07-25T23:20:25.010000"],["2024-07-25T23:20:26.010000"],["2024-07-25T23:20:27.010000"],["2024-07-25T23:20:28.010000"],["2024-07-25T23:20:29.010000"],["2024-07-25T23:20:30.010000"],["2024-07-25T23:20:31.010000"],["2024-07-25T23:20:32.010000"],["2024-07-25T23:20:33.010000"],["2024-07-25T23:20:34.010000"],["2024-07-25T23:20:35.010000"],["2024-07-25T23:20:36.010000"],["2024-07-25T23:20:37.010000"],["2024-07-25T23:20:38.010000"],["2024-07-25T23:20:39.010000"],["2024-07-25T23:20:40.010000"],["2024-07-25T23:20:41.010000"],["2024-07-25T23:20:42.010000"],["2024-07-25T23:20:43.010000"],["2024-07-25T23:20:44.010000"],["2024-07-25T23:20:45.010000"],["2024-07-25T23:20:46.010000"],["2024-07-25T23:20:47.010000"],["2024-07-25T23:20:48.010000"],["2024-07-25T23:20:49.010000"],["2024-07-25T23:20:50.010000"],["2024-07-25T23:20:51.010000"],["2024-07-25T23:20:52.010000"],["2024-07-25T23:20:53.010000"],["2024-07-25T23:20:54.010000"],["2024-07-25T23:20:55.010000"],["2024-07-25T23:20:56.010000"],["2024-07-25T23:20:57.010000"],["2024-07-25T23:20:58.010000"],["2024-07-25T23:20:59.010000"],["2024-07-25T23:21:00.010000"],["2024-07-25T23:21:01.010000"],["2024-07-25T23:21:02.010000"],["2024-07-25T23:21:03.010000"],["2024-07-25T23:21:04.010000"],["2024-07-25T23:21:05.010000"],["2024-07-25T23:21:06.010000"],["2024-07-25T23:21:07.010000"],["2024-07-25T23:21:08.010000"],["2024-07-25T23:21:09.010000"],["2024-07-25T23:21:10.010000"],["2024-07-25T23:21:11.010000"],["2024-07-25T23:21:12.010000"],["2024-07-25T23:21:13.010000"],["2024-07-25T23:21:14.010000"],["2024-07-25T23:21:15.010000"],["2024-07-25T23:21:16.010000"],["2024-07-25T23:21:17.010000"],["2024-07-25T23:21:18.010000"],["2024-07-25T23:21:19.010000"],["2024-07-25T23:21:20.010000"],["2024-07-25T23:21:21.010000"],["2024-07-25T23:21:22.010000"],["2024-07-25T23:21:23.010000"],["2024-07-25T23:21:24.010000"],["2024-07-25T23:21:25.010000"],["2024-07-25T23:21:26.010000"],["2024-07-25T23:21:27.010000"],["2024-07-25T23:21:28.010000"],["2024-07-25T23:21:29.010000"],["2024-07-25T23:21:30.010000"],["2024-07-25T23:21:31.010000"],["2024-07-25T23:21:32.010000"],["2024-07-25T23:21:33.010000"],["2024-07-25T23:21:34.010000"],["2024-07-25T23:21:35.010000"],["2024-07-25T23:21:36.010000"],["2024-07-25T23:21:37.010000"],["2024-07-25T23:21:38.010000"],["2024-07-25T23:21:39.010000"],["2024-07-25T23:21:40.010000"],["2024-07-25T23:21:41.010000"],["2024-07-25T23:21:42.010000"],["2024-07-25T23:21:43.010000"],["2024-07-25T23:21:44.010000"],["2024-07-25T23:21:45.010000"],["2024-07-25T23:21:46.010000"],["2024-07-25T23:21:47.010000"],["2024-07-25T23:21:48.010000"],["2024-07-25T23:21:49.010000"],["2024-07-25T23:21:50.010000"],["2024-07-25T23:21:51.010000"],["2024-07-25T23:21:52.010000"],["2024-07-25T23:21:53.010000"],["2024-07-25T23:21:54.010000"],["2024-07-25T23:21:55.010000"],["2024-07-25T23:21:56.010000"],["2024-07-25T23:21:57.010000"],["2024-07-25T23:21:58.010000"],["2024-07-25T23:21:59.010000"],["2024-07-25T23:22:00.010000"],["2024-07-25T23:22:01.010000"],["2024-07-25T23:22:02.010000"],["2024-07-25T23:22:03.010000"],["2024-07-25T23:22:04.010000"],["2024-07-25T23:22:05.010000"],["2024-07-25T23:22:06.010000"],["2024-07-25T23:22:07.010000"],["2024-07-25T23:22:08.010000"],["2024-07-25T23:22:09.010000"],["2024-07-25T23:22:10.010000"],["2024-07-25T23:22:11.010000"],["2024-07-25T23:22:12.010000"],["2024-07-25T23:22:13.010000"],["2024-07-25T23:22:14.010000"],["2024-07-25T23:22:15.010000"],["2024-07-25T23:22:16.010000"],["2024-07-25T23:22:17.010000"],["2024-07-25T23:22:18.010000"],["2024-07-25T23:22:19.010000"],["2024-07-25T23:22:20.010000"],["2024-07-25T23:22:21.010000"],["2024-07-25T23:22:22.010000"],["2024-07-25T23:22:23.010000"],["2024-07-25T23:22:24.010000"],["2024-07-25T23:22:25.010000"],["2024-07-25T23:22:26.010000"],["2024-07-25T23:22:27.010000"],["2024-07-25T23:22:28.010000"],["2024-07-25T23:22:29.010000"],["2024-07-25T23:22:30.010000"],["2024-07-25T23:22:31.010000"],["2024-07-25T23:22:32.010000"],["2024-07-25T23:22:33.010000"],["2024-07-25T23:22:34.010000"],["2024-07-25T23:22:35.010000"],["2024-07-25T23:22:36.010000"],["2024-07-25T23:22:37.010000"],["2024-07-25T23:22:38.010000"],["2024-07-25T23:22:39.010000"],["2024-07-25T23:22:40.010000"],["2024-07-25T23:22:41.010000"],["2024-07-25T23:22:42.010000"],["2024-07-25T23:22:43.010000"],["2024-07-25T23:22:44.010000"],["2024-07-25T23:22:45.010000"],["2024-07-25T23:22:46.010000"],["2024-07-25T23:22:47.010000"],["2024-07-25T23:22:48.010000"],["2024-07-25T23:22:49.010000"],["2024-07-25T23:22:50.010000"],["2024-07-25T23:22:51.010000"],["2024-07-25T23:22:52.010000"],["2024-07-25T23:22:53.010000"],["2024-07-25T23:22:54.010000"],["2024-07-25T23:22:55.010000"],["2024-07-25T23:22:56.010000"],["2024-07-25T23:22:57.010000"],["2024-07-25T23:22:58.010000"],["2024-07-25T23:22:59.010000"],["2024-07-25T23:23:00.010000"],["2024-07-25T23:23:01.010000"],["2024-07-25T23:23:02.010000"],["2024-07-25T23:23:03.010000"],["2024-07-25T23:23:04.010000"],["2024-07-25T23:23:05.010000"],["2024-07-25T23:23:06.010000"],["2024-07-25T23:23:07.010000"],["2024-07-25T23:23:08.010000"],["2024-07-25T23:23:09.010000"],["2024-07-25T23:23:10.010000"],["2024-07-25T23:23:11.010000"],["2024-07-25T23:23:12.010000"],["2024-07-25T23:23:13.010000"],["2024-07-25T23:23:14.010000"],["2024-07-25T23:23:15.010000"],["2024-07-25T23:23:16.010000"],["2024-07-25T23:23:17.010000"],["2024-07-25T23:23:18.010000"],["2024-07-25T23:23:19.010000"],["2024-07-25T23:23:20.010000"],["2024-07-25T23:23:21.010000"],["2024-07-25T23:23:22.010000"],["2024-07-25T23:23:23.010000"],["2024-07-25T23:23:24.010000"],["2024-07-25T23:23:25.010000"],["2024-07-25T23:23:26.010000"],["2024-07-25T23:23:27.010000"],["2024-07-25T23:23:28.010000"],["2024-07-25T23:23:29.010000"],["2024-07-25T23:23:30.010000"],["2024-07-25T23:23:31.010000"],["2024-07-25T23:23:32.010000"],["2024-07-25T23:23:33.010000"],["2024-07-25T23:23:34.010000"],["2024-07-25T23:23:35.010000"],["2024-07-25T23:23:36.010000"],["2024-07-25T23:23:37.010000"],["2024-07-25T23:23:38.010000"],["2024-07-25T23:23:39.010000"],["2024-07-25T23:23:40.010000"],["2024-07-25T23:23:41.010000"],["2024-07-25T23:23:42.010000"],["2024-07-25T23:23:43.010000"],["2024-07-25T23:23:44.010000"],["2024-07-25T23:23:45.010000"],["2024-07-25T23:23:46.010000"],["2024-07-25T23:23:47.010000"],["2024-07-25T23:23:48.010000"],["2024-07-25T23:23:49.010000"],["2024-07-25T23:23:50.010000"],["2024-07-25T23:23:51.010000"],["2024-07-25T23:23:52.010000"],["2024-07-25T23:23:53.010000"],["2024-07-25T23:23:54.010000"],["2024-07-25T23:23:55.010000"],["2024-07-25T23:23:56.010000"],["2024-07-25T23:23:57.010000"],["2024-07-25T23:23:58.010000"],["2024-07-25T23:23:59.010000"],["2024-07-25T23:24:00.010000"],["2024-07-25T23:24:01.010000"],["2024-07-25T23:24:02.010000"],["2024-07-25T23:24:03.010000"],["2024-07-25T23:24:04.010000"],["2024-07-25T23:24:05.010000"],["2024-07-25T23:24:06.010000"],["2024-07-25T23:24:07.010000"],["2024-07-25T23:24:08.010000"],["2024-07-25T23:24:09.010000"],["2024-07-25T23:24:10.010000"],["2024-07-25T23:24:11.010000"],["2024-07-25T23:24:12.010000"],["2024-07-25T23:24:13.010000"],["2024-07-25T23:24:14.010000"],["2024-07-25T23:24:15.010000"],["2024-07-25T23:24:16.010000"],["2024-07-25T23:24:17.010000"],["2024-07-25T23:24:18.010000"],["2024-07-25T23:24:19.010000"],["2024-07-25T23:24:20.010000"],["2024-07-25T23:24:21.010000"],["2024-07-25T23:24:22.010000"],["2024-07-25T23:24:23.010000"],["2024-07-25T23:24:24.010000"],["2024-07-25T23:24:25.010000"],["2024-07-25T23:24:26.010000"],["2024-07-25T23:24:27.010000"],["2024-07-25T23:24:28.010000"],["2024-07-25T23:24:29.010000"],["2024-07-25T23:24:30.010000"],["2024-07-25T23:24:31.010000"],["2024-07-25T23:24:32.010000"],["2024-07-25T23:24:33.010000"],["2024-07-25T23:24:34.010000"],["2024-07-25T23:24:35.010000"],["2024-07-25T23:24:36.010000"],["2024-07-25T23:24:37.010000"],["2024-07-25T23:24:38.010000"],["2024-07-25T23:24:39.010000"],["2024-07-25T23:24:40.010000"],["2024-07-25T23:24:41.010000"],["2024-07-25T23:24:42.010000"],["2024-07-25T23:24:43.010000"],["2024-07-25T23:24:44.010000"],["2024-07-25T23:24:45.010000"],["2024-07-25T23:24:46.010000"],["2024-07-25T23:24:47.010000"],["2024-07-25T23:24:48.010000"],["2024-07-25T23:24:49.010000"],["2024-07-25T23:24:50.010000"],["2024-07-25T23:24:51.010000"],["2024-07-25T23:24:52.010000"],["2024-07-25T23:24:53.010000"],["2024-07-25T23:24:54.010000"],["2024-07-25T23:24:55.010000"],["2024-07-25T23:24:56.010000"],["2024-07-25T23:24:57.010000"],["2024-07-25T23:24:58.010000"],["2024-07-25T23:24:59.010000"],["2024-07-25T23:25:00.010000"],["2024-07-25T23:25:01.010000"],["2024-07-25T23:25:02.010000"],["2024-07-25T23:25:03.010000"],["2024-07-25T23:25:04.010000"],["2024-07-25T23:25:05.010000"],["2024-07-25T23:25:06.010000"],["2024-07-25T23:25:07.010000"],["2024-07-25T23:25:08.010000"],["2024-07-25T23:25:09.010000"],["2024-07-25T23:25:10.010000"],["2024-07-25T23:25:11.010000"],["2024-07-25T23:25:12.010000"],["2024-07-25T23:25:13.010000"],["2024-07-25T23:25:14.010000"],["2024-07-25T23:25:15.010000"],["2024-07-25T23:25:16.010000"],["2024-07-25T23:25:17.010000"],["2024-07-25T23:25:18.010000"],["2024-07-25T23:25:19.010000"],["2024-07-25T23:25:20.010000"],["2024-07-25T23:25:21.010000"],["2024-07-25T23:25:22.010000"],["2024-07-25T23:25:23.010000"],["2024-07-25T23:25:24.010000"],["2024-07-25T23:25:25.010000"],["2024-07-25T23:25:26.010000"],["2024-07-25T23:25:27.010000"],["2024-07-25T23:25:28.010000"],["2024-07-25T23:25:29.010000"],["2024-07-25T23:25:30.010000"],["2024-07-25T23:25:31.010000"],["2024-07-25T23:25:32.010000"],["2024-07-25T23:25:33.010000"],["2024-07-25T23:25:34.010000"],["2024-07-25T23:25:35.010000"],["2024-07-25T23:25:36.010000"],["2024-07-25T23:25:37.010000"],["2024-07-25T23:25:38.010000"],["2024-07-25T23:25:39.010000"],["2024-07-25T23:25:40.010000"],["2024-07-25T23:25:41.010000"],["2024-07-25T23:25:42.010000"],["2024-07-25T23:25:43.010000"],["2024-07-25T23:25:44.010000"],["2024-07-25T23:25:45.010000"],["2024-07-25T23:25:46.010000"],["2024-07-25T23:25:47.010000"],["2024-07-25T23:25:48.010000"],["2024-07-25T23:25:49.010000"],["2024-07-25T23:25:50.010000"],["2024-07-25T23:25:51.010000"],["2024-07-25T23:25:52.010000"],["2024-07-25T23:25:53.010000"],["2024-07-25T23:25:54.010000"],["2024-07-25T23:25:55.010000"],["2024-07-25T23:25:56.010000"],["2024-07-25T23:25:57.010000"],["2024-07-25T23:25:58.010000"],["2024-07-25T23:25:59.010000"],["2024-07-25T23:26:00.010000"],["2024-07-25T23:26:01.010000"],["2024-07-25T23:26:02.010000"],["2024-07-25T23:26:03.010000"],["2024-07-25T23:26:04.010000"],["2024-07-25T23:26:05.010000"],["2024-07-25T23:26:06.010000"],["2024-07-25T23:26:07.010000"],["2024-07-25T23:26:08.010000"],["2024-07-25T23:26:09.010000"],["2024-07-25T23:26:10.010000"],["2024-07-25T23:26:11.010000"],["2024-07-25T23:26:12.010000"],["2024-07-25T23:26:13.010000"],["2024-07-25T23:26:14.010000"],["2024-07-25T23:26:15.010000"],["2024-07-25T23:26:16.010000"],["2024-07-25T23:26:17.010000"],["2024-07-25T23:26:18.010000"],["2024-07-25T23:26:19.010000"],["2024-07-25T23:26:20.010000"],["2024-07-25T23:26:21.010000"],["2024-07-25T23:26:22.010000"],["2024-07-25T23:26:23.010000"],["2024-07-25T23:26:24.010000"],["2024-07-25T23:26:25.010000"],["2024-07-25T23:26:26.010000"],["2024-07-25T23:26:27.010000"],["2024-07-25T23:26:28.010000"],["2024-07-25T23:26:29.010000"],["2024-07-25T23:26:30.010000"],["2024-07-25T23:26:31.010000"],["2024-07-25T23:26:32.010000"],["2024-07-25T23:26:33.010000"],["2024-07-25T23:26:34.010000"],["2024-07-25T23:26:35.010000"],["2024-07-25T23:26:36.010000"],["2024-07-25T23:26:37.010000"],["2024-07-25T23:26:38.010000"],["2024-07-25T23:26:39.010000"],["2024-07-25T23:26:40.010000"],["2024-07-25T23:26:41.010000"],["2024-07-25T23:26:42.010000"],["2024-07-25T23:26:43.010000"],["2024-07-25T23:26:44.010000"],["2024-07-25T23:26:45.010000"],["2024-07-25T23:26:46.010000"],["2024-07-25T23:26:47.010000"],["2024-07-25T23:26:48.010000"],["2024-07-25T23:26:49.010000"],["2024-07-25T23:26:50.010000"],["2024-07-25T23:26:51.010000"],["2024-07-25T23:26:52.010000"],["2024-07-25T23:26:53.010000"],["2024-07-25T23:26:54.010000"],["2024-07-25T23:26:55.010000"],["2024-07-25T23:26:56.010000"],["2024-07-25T23:26:57.010000"],["2024-07-25T23:26:58.010000"],["2024-07-25T23:26:59.010000"],["2024-07-25T23:27:00.010000"],["2024-07-25T23:27:01.010000"],["2024-07-25T23:27:02.010000"],["2024-07-25T23:27:03.010000"],["2024-07-25T23:27:04.010000"],["2024-07-25T23:27:05.010000"],["2024-07-25T23:27:06.010000"],["2024-07-25T23:27:07.010000"],["2024-07-25T23:27:08.010000"],["2024-07-25T23:27:09.010000"],["2024-07-25T23:27:10.010000"],["2024-07-25T23:27:11.010000"],["2024-07-25T23:27:12.010000"],["2024-07-25T23:27:13.010000"],["2024-07-25T23:27:14.010000"],["2024-07-25T23:27:15.010000"],["2024-07-25T23:27:16.010000"],["2024-07-25T23:27:17.010000"],["2024-07-25T23:27:18.010000"],["2024-07-25T23:27:19.010000"],["2024-07-25T23:27:20.010000"],["2024-07-25T23:27:21.010000"],["2024-07-25T23:27:22.010000"],["2024-07-25T23:27:23.010000"],["2024-07-25T23:27:24.010000"],["2024-07-25T23:27:25.010000"],["2024-07-25T23:27:26.010000"],["2024-07-25T23:27:27.010000"],["2024-07-25T23:27:28.010000"],["2024-07-25T23:27:29.010000"],["2024-07-25T23:27:30.010000"],["2024-07-25T23:27:31.010000"],["2024-07-25T23:27:32.010000"],["2024-07-25T23:27:33.010000"],["2024-07-25T23:27:34.010000"],["2024-07-25T23:27:35.010000"],["2024-07-25T23:27:36.010000"],["2024-07-25T23:27:37.010000"],["2024-07-25T23:27:38.010000"],["2024-07-25T23:27:39.010000"],["2024-07-25T23:27:40.010000"],["2024-07-25T23:27:41.010000"],["2024-07-25T23:27:42.010000"],["2024-07-25T23:27:43.010000"],["2024-07-25T23:27:44.010000"],["2024-07-25T23:27:45.010000"],["2024-07-25T23:27:46.010000"],["2024-07-25T23:27:47.010000"],["2024-07-25T23:27:48.010000"],["2024-07-25T23:27:49.010000"],["2024-07-25T23:27:50.010000"],["2024-07-25T23:27:51.010000"],["2024-07-25T23:27:52.010000"],["2024-07-25T23:27:53.010000"],["2024-07-25T23:27:54.010000"],["2024-07-25T23:27:55.010000"],["2024-07-25T23:27:56.010000"],["2024-07-25T23:27:57.010000"],["2024-07-25T23:27:58.010000"],["2024-07-25T23:27:59.010000"],["2024-07-25T23:28:00.010000"],["2024-07-25T23:28:01.010000"],["2024-07-25T23:28:02.010000"],["2024-07-25T23:28:03.010000"],["2024-07-25T23:28:04.010000"],["2024-07-25T23:28:05.010000"],["2024-07-25T23:28:06.010000"],["2024-07-25T23:28:07.010000"],["2024-07-25T23:28:08.010000"],["2024-07-25T23:28:09.010000"],["2024-07-25T23:28:10.010000"],["2024-07-25T23:28:11.010000"],["2024-07-25T23:28:12.010000"],["2024-07-25T23:28:13.010000"],["2024-07-25T23:28:14.010000"],["2024-07-25T23:28:15.010000"],["2024-07-25T23:28:16.010000"],["2024-07-25T23:28:17.010000"],["2024-07-25T23:28:18.010000"],["2024-07-25T23:28:19.010000"],["2024-07-25T23:28:20.010000"],["2024-07-25T23:28:21.010000"],["2024-07-25T23:28:22.010000"],["2024-07-25T23:28:23.010000"],["2024-07-25T23:28:24.010000"],["2024-07-25T23:28:25.010000"],["2024-07-25T23:28:26.010000"],["2024-07-25T23:28:27.010000"],["2024-07-25T23:28:28.010000"],["2024-07-25T23:28:29.010000"],["2024-07-25T23:28:30.010000"],["2024-07-25T23:28:31.010000"],["2024-07-25T23:28:32.010000"],["2024-07-25T23:28:33.010000"],["2024-07-25T23:28:34.010000"],["2024-07-25T23:28:35.010000"],["2024-07-25T23:28:36.010000"],["2024-07-25T23:28:37.010000"],["2024-07-25T23:28:38.010000"],["2024-07-25T23:28:39.010000"],["2024-07-25T23:28:40.010000"],["2024-07-25T23:28:41.010000"],["2024-07-25T23:28:42.010000"],["2024-07-25T23:28:43.010000"],["2024-07-25T23:28:44.010000"],["2024-07-25T23:28:45.010000"],["2024-07-25T23:28:46.010000"],["2024-07-25T23:28:47.010000"],["2024-07-25T23:28:48.010000"],["2024-07-25T23:28:49.010000"],["2024-07-25T23:28:50.010000"],["2024-07-25T23:28:51.010000"],["2024-07-25T23:28:52.010000"],["2024-07-25T23:28:53.010000"],["2024-07-25T23:28:54.010000"],["2024-07-25T23:28:55.010000"],["2024-07-25T23:28:56.010000"],["2024-07-25T23:28:57.010000"],["2024-07-25T23:28:58.010000"],["2024-07-25T23:28:59.010000"],["2024-07-25T23:29:00.010000"],["2024-07-25T23:29:01.010000"],["2024-07-25T23:29:02.010000"],["2024-07-25T23:29:03.010000"],["2024-07-25T23:29:04.010000"],["2024-07-25T23:29:05.010000"],["2024-07-25T23:29:06.010000"],["2024-07-25T23:29:07.010000"],["2024-07-25T23:29:08.010000"],["2024-07-25T23:29:09.010000"],["2024-07-25T23:29:10.010000"],["2024-07-25T23:29:11.010000"],["2024-07-25T23:29:12.010000"],["2024-07-25T23:29:13.010000"],["2024-07-25T23:29:14.010000"],["2024-07-25T23:29:15.010000"],["2024-07-25T23:29:16.010000"],["2024-07-25T23:29:17.010000"],["2024-07-25T23:29:18.010000"],["2024-07-25T23:29:19.010000"],["2024-07-25T23:29:20.010000"],["2024-07-25T23:29:21.010000"],["2024-07-25T23:29:22.010000"],["2024-07-25T23:29:23.010000"],["2024-07-25T23:29:24.010000"],["2024-07-25T23:29:25.010000"],["2024-07-25T23:29:26.010000"],["2024-07-25T23:29:27.010000"],["2024-07-25T23:29:28.010000"],["2024-07-25T23:29:29.010000"],["2024-07-25T23:29:30.010000"],["2024-07-25T23:29:31.010000"],["2024-07-25T23:29:32.010000"],["2024-07-25T23:29:33.010000"],["2024-07-25T23:29:34.010000"],["2024-07-25T23:29:35.010000"],["2024-07-25T23:29:36.010000"],["2024-07-25T23:29:37.010000"],["2024-07-25T23:29:38.010000"],["2024-07-25T23:29:39.010000"],["2024-07-25T23:29:40.010000"],["2024-07-25T23:29:41.010000"],["2024-07-25T23:29:42.010000"],["2024-07-25T23:29:43.010000"],["2024-07-25T23:29:44.010000"],["2024-07-25T23:29:45.010000"],["2024-07-25T23:29:46.010000"],["2024-07-25T23:29:47.010000"],["2024-07-25T23:29:48.010000"],["2024-07-25T23:29:49.010000"],["2024-07-25T23:29:50.010000"],["2024-07-25T23:29:51.010000"],["2024-07-25T23:29:52.010000"],["2024-07-25T23:29:53.010000"],["2024-07-25T23:29:54.010000"],["2024-07-25T23:29:55.010000"],["2024-07-25T23:29:56.010000"],["2024-07-25T23:29:57.010000"],["2024-07-25T23:29:58.010000"],["2024-07-25T23:29:59.010000"],["2024-07-25T23:30:00.010000"],["2024-07-25T23:30:01.010000"],["2024-07-25T23:30:02.010000"],["2024-07-25T23:30:03.010000"],["2024-07-25T23:30:04.010000"],["2024-07-25T23:30:05.010000"],["2024-07-25T23:30:06.010000"],["2024-07-25T23:30:07.010000"],["2024-07-25T23:30:08.010000"],["2024-07-25T23:30:09.010000"],["2024-07-25T23:30:10.010000"],["2024-07-25T23:30:11.010000"],["2024-07-25T23:30:12.010000"],["2024-07-25T23:30:13.010000"],["2024-07-25T23:30:14.010000"],["2024-07-25T23:30:15.010000"],["2024-07-25T23:30:16.010000"],["2024-07-25T23:30:17.010000"],["2024-07-25T23:30:18.010000"],["2024-07-25T23:30:19.010000"],["2024-07-25T23:30:20.010000"],["2024-07-25T23:30:21.010000"],["2024-07-25T23:30:22.010000"],["2024-07-25T23:30:23.010000"],["2024-07-25T23:30:24.010000"],["2024-07-25T23:30:25.010000"],["2024-07-25T23:30:26.010000"],["2024-07-25T23:30:27.010000"],["2024-07-25T23:30:28.010000"],["2024-07-25T23:30:29.010000"],["2024-07-25T23:30:30.010000"],["2024-07-25T23:30:31.010000"],["2024-07-25T23:30:32.010000"],["2024-07-25T23:30:33.010000"],["2024-07-25T23:30:34.010000"],["2024-07-25T23:30:35.010000"],["2024-07-25T23:30:36.010000"],["2024-07-25T23:30:37.010000"],["2024-07-25T23:30:38.010000"],["2024-07-25T23:30:39.010000"],["2024-07-25T23:30:40.010000"],["2024-07-25T23:30:41.010000"],["2024-07-25T23:30:42.010000"],["2024-07-25T23:30:43.010000"],["2024-07-25T23:30:44.010000"],["2024-07-25T23:30:45.010000"],["2024-07-25T23:30:46.010000"],["2024-07-25T23:30:47.010000"],["2024-07-25T23:30:48.010000"],["2024-07-25T23:30:49.010000"],["2024-07-25T23:30:50.010000"],["2024-07-25T23:30:51.010000"],["2024-07-25T23:30:52.010000"],["2024-07-25T23:30:53.010000"],["2024-07-25T23:30:54.010000"],["2024-07-25T23:30:55.010000"],["2024-07-25T23:30:56.010000"],["2024-07-25T23:30:57.010000"],["2024-07-25T23:30:58.010000"],["2024-07-25T23:30:59.010000"],["2024-07-25T23:31:00.010000"],["2024-07-25T23:31:01.010000"],["2024-07-25T23:31:02.010000"],["2024-07-25T23:31:03.010000"],["2024-07-25T23:31:04.010000"],["2024-07-25T23:31:05.010000"],["2024-07-25T23:31:06.010000"],["2024-07-25T23:31:07.010000"],["2024-07-25T23:31:08.010000"],["2024-07-25T23:31:09.010000"],["2024-07-25T23:31:10.010000"],["2024-07-25T23:31:11.010000"],["2024-07-25T23:31:12.010000"],["2024-07-25T23:31:13.010000"],["2024-07-25T23:31:14.010000"],["2024-07-25T23:31:15.010000"],["2024-07-25T23:31:16.010000"],["2024-07-25T23:31:17.010000"],["2024-07-25T23:31:18.010000"],["2024-07-25T23:31:19.010000"],["2024-07-25T23:31:20.010000"],["2024-07-25T23:31:21.010000"],["2024-07-25T23:31:22.010000"],["2024-07-25T23:31:23.010000"],["2024-07-25T23:31:24.010000"],["2024-07-25T23:31:25.010000"],["2024-07-25T23:31:26.010000"],["2024-07-25T23:31:27.010000"],["2024-07-25T23:31:28.010000"],["2024-07-25T23:31:29.010000"],["2024-07-25T23:31:30.010000"],["2024-07-25T23:31:31.010000"],["2024-07-25T23:31:32.010000"],["2024-07-25T23:31:33.010000"],["2024-07-25T23:31:34.010000"],["2024-07-25T23:31:35.010000"],["2024-07-25T23:31:36.010000"],["2024-07-25T23:31:37.010000"],["2024-07-25T23:31:38.010000"],["2024-07-25T23:31:39.010000"],["2024-07-25T23:31:40.010000"],["2024-07-25T23:31:41.010000"],["2024-07-25T23:31:42.010000"],["2024-07-25T23:31:43.010000"],["2024-07-25T23:31:44.010000"],["2024-07-25T23:31:45.010000"],["2024-07-25T23:31:46.010000"],["2024-07-25T23:31:47.010000"],["2024-07-25T23:31:48.010000"],["2024-07-25T23:31:49.010000"],["2024-07-25T23:31:50.010000"],["2024-07-25T23:31:51.010000"],["2024-07-25T23:31:52.010000"],["2024-07-25T23:31:53.010000"],["2024-07-25T23:31:54.010000"],["2024-07-25T23:31:55.010000"],["2024-07-25T23:31:56.010000"],["2024-07-25T23:31:57.010000"],["2024-07-25T23:31:58.010000"],["2024-07-25T23:31:59.010000"],["2024-07-25T23:32:00.010000"],["2024-07-25T23:32:01.010000"],["2024-07-25T23:32:02.010000"],["2024-07-25T23:32:03.010000"],["2024-07-25T23:32:04.010000"],["2024-07-25T23:32:05.010000"],["2024-07-25T23:32:06.010000"],["2024-07-25T23:32:07.010000"],["2024-07-25T23:32:08.010000"],["2024-07-25T23:32:09.010000"],["2024-07-25T23:32:10.010000"],["2024-07-25T23:32:11.010000"],["2024-07-25T23:32:12.010000"],["2024-07-25T23:32:13.010000"],["2024-07-25T23:32:14.010000"],["2024-07-25T23:32:15.010000"],["2024-07-25T23:32:16.010000"],["2024-07-25T23:32:17.010000"],["2024-07-25T23:32:18.010000"],["2024-07-25T23:32:19.010000"],["2024-07-25T23:32:20.010000"],["2024-07-25T23:32:21.010000"],["2024-07-25T23:32:22.010000"],["2024-07-25T23:32:23.010000"],["2024-07-25T23:32:24.010000"],["2024-07-25T23:32:25.010000"],["2024-07-25T23:32:26.010000"],["2024-07-25T23:32:27.010000"],["2024-07-25T23:32:28.010000"],["2024-07-25T23:32:29.010000"],["2024-07-25T23:32:30.010000"],["2024-07-25T23:32:31.010000"],["2024-07-25T23:32:32.010000"],["2024-07-25T23:32:33.010000"],["2024-07-25T23:32:34.010000"],["2024-07-25T23:32:35.010000"],["2024-07-25T23:32:36.010000"],["2024-07-25T23:32:37.010000"],["2024-07-25T23:32:38.010000"],["2024-07-25T23:32:39.010000"],["2024-07-25T23:32:40.010000"],["2024-07-25T23:32:41.010000"],["2024-07-25T23:32:42.010000"],["2024-07-25T23:32:43.010000"],["2024-07-25T23:32:44.010000"],["2024-07-25T23:32:45.010000"],["2024-07-25T23:32:46.010000"],["2024-07-25T23:32:47.010000"],["2024-07-25T23:32:48.010000"],["2024-07-25T23:32:49.010000"],["2024-07-25T23:32:50.010000"],["2024-07-25T23:32:51.010000"],["2024-07-25T23:32:52.010000"],["2024-07-25T23:32:53.010000"],["2024-07-25T23:32:54.010000"],["2024-07-25T23:32:55.010000"],["2024-07-25T23:32:56.010000"],["2024-07-25T23:32:57.010000"],["2024-07-25T23:32:58.010000"],["2024-07-25T23:32:59.010000"],["2024-07-25T23:33:00.010000"],["2024-07-25T23:33:01.010000"],["2024-07-25T23:33:02.010000"],["2024-07-25T23:33:03.010000"],["2024-07-25T23:33:04.010000"],["2024-07-25T23:33:05.010000"],["2024-07-25T23:33:06.010000"],["2024-07-25T23:33:07.010000"],["2024-07-25T23:33:08.010000"],["2024-07-25T23:33:09.010000"],["2024-07-25T23:33:10.010000"],["2024-07-25T23:33:11.010000"],["2024-07-25T23:33:12.010000"],["2024-07-25T23:33:13.010000"],["2024-07-25T23:33:14.010000"],["2024-07-25T23:33:15.010000"],["2024-07-25T23:33:16.010000"],["2024-07-25T23:33:17.010000"],["2024-07-25T23:33:18.010000"],["2024-07-25T23:33:19.010000"],["2024-07-25T23:33:20.010000"],["2024-07-25T23:33:21.010000"],["2024-07-25T23:33:22.010000"],["2024-07-25T23:33:23.010000"],["2024-07-25T23:33:24.010000"],["2024-07-25T23:33:25.010000"],["2024-07-25T23:33:26.010000"],["2024-07-25T23:33:27.010000"],["2024-07-25T23:33:28.010000"],["2024-07-25T23:33:29.010000"],["2024-07-25T23:33:30.010000"],["2024-07-25T23:33:31.010000"],["2024-07-25T23:33:32.010000"],["2024-07-25T23:33:33.010000"],["2024-07-25T23:33:34.010000"],["2024-07-25T23:33:35.010000"],["2024-07-25T23:33:36.010000"],["2024-07-25T23:33:37.010000"],["2024-07-25T23:33:38.010000"],["2024-07-25T23:33:39.010000"],["2024-07-25T23:33:40.010000"],["2024-07-25T23:33:41.010000"],["2024-07-25T23:33:42.010000"],["2024-07-25T23:33:43.010000"],["2024-07-25T23:33:44.010000"],["2024-07-25T23:33:45.010000"],["2024-07-25T23:33:46.010000"],["2024-07-25T23:33:47.010000"],["2024-07-25T23:33:48.010000"],["2024-07-25T23:33:49.010000"],["2024-07-25T23:33:50.010000"],["2024-07-25T23:33:51.010000"],["2024-07-25T23:33:52.010000"],["2024-07-25T23:33:53.010000"],["2024-07-25T23:33:54.010000"],["2024-07-25T23:33:55.010000"],["2024-07-25T23:33:56.010000"],["2024-07-25T23:33:57.010000"],["2024-07-25T23:33:58.010000"],["2024-07-25T23:33:59.010000"],["2024-07-25T23:34:00.010000"],["2024-07-25T23:34:01.010000"],["2024-07-25T23:34:02.010000"],["2024-07-25T23:34:03.010000"],["2024-07-25T23:34:04.010000"],["2024-07-25T23:34:05.010000"],["2024-07-25T23:34:06.010000"],["2024-07-25T23:34:07.010000"],["2024-07-25T23:34:08.010000"],["2024-07-25T23:34:09.010000"],["2024-07-25T23:34:10.010000"],["2024-07-25T23:34:11.010000"],["2024-07-25T23:34:12.010000"],["2024-07-25T23:34:13.010000"],["2024-07-25T23:34:14.010000"],["2024-07-25T23:34:15.010000"],["2024-07-25T23:34:16.010000"],["2024-07-25T23:34:17.010000"],["2024-07-25T23:34:18.010000"],["2024-07-25T23:34:19.010000"],["2024-07-25T23:34:20.010000"],["2024-07-25T23:34:21.010000"],["2024-07-25T23:34:22.010000"],["2024-07-25T23:34:23.010000"],["2024-07-25T23:34:24.010000"],["2024-07-25T23:34:25.010000"],["2024-07-25T23:34:26.010000"],["2024-07-25T23:34:27.010000"],["2024-07-25T23:34:28.010000"],["2024-07-25T23:34:29.010000"],["2024-07-25T23:34:30.010000"],["2024-07-25T23:34:31.010000"],["2024-07-25T23:34:32.010000"],["2024-07-25T23:34:33.010000"],["2024-07-25T23:34:34.010000"],["2024-07-25T23:34:35.010000"],["2024-07-25T23:34:36.010000"],["2024-07-25T23:34:37.010000"],["2024-07-25T23:34:38.010000"],["2024-07-25T23:34:39.010000"],["2024-07-25T23:34:40.010000"],["2024-07-25T23:34:41.010000"],["2024-07-25T23:34:42.010000"],["2024-07-25T23:34:43.010000"],["2024-07-25T23:34:44.010000"],["2024-07-25T23:34:45.010000"],["2024-07-25T23:34:46.010000"],["2024-07-25T23:34:47.010000"],["2024-07-25T23:34:48.010000"],["2024-07-25T23:34:49.010000"],["2024-07-25T23:34:50.010000"],["2024-07-25T23:34:51.010000"],["2024-07-25T23:34:52.010000"],["2024-07-25T23:34:53.010000"],["2024-07-25T23:34:54.010000"],["2024-07-25T23:34:55.010000"],["2024-07-25T23:34:56.010000"],["2024-07-25T23:34:57.010000"],["2024-07-25T23:34:58.010000"],["2024-07-25T23:34:59.010000"],["2024-07-25T23:35:00.010000"],["2024-07-25T23:35:01.010000"],["2024-07-25T23:35:02.010000"],["2024-07-25T23:35:03.010000"],["2024-07-25T23:35:04.010000"]],"hovertemplate":"color=7\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"7","line":{"color":"#B6E880","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"7","scene":"scene","showlegend":true,"x":[0.9682734194211662,0.6008910951204598,-0.649883396923542,0.42542567709460855,-0.5082771121524274,0.5831053392030299,0.23703356413170695,0.8261591689661145,-0.0616419049911201,0.23379808478057384,-0.3949604029767215,-0.7046448742039502,-0.9416563338600099,0.33857429400086403,0.08629673160612583,0.6363248294219375,0.2819671556353569,0.6119532869197428,0.8290657629258931,0.9155700718984008,0.8060209867544472,-0.8139176219701767,-0.2368173566646874,0.6895781997591257,0.06570237036794424,0.8047757935710251,0.7459776988252997,0.4580977731384337,0.8310221005231142,0.2906666323542595,-0.7737910444848239,0.600689122453332,-0.29539368860423565,-0.994143832474947,-0.07918989332392812,0.5384825766086578,-0.2769512147642672,0.4152497500181198,-0.668404582887888,0.3216626257635653,-0.06999886175617576,0.44283064315095544,0.30365447606891394,0.9057715577073395,-0.538205576594919,-0.5082222120836377,0.6755584985949099,-0.7021268135868013,-0.9425996374338865,-0.5769646102562547,-0.2790502985008061,0.7940260460600257,-0.9782042265869677,0.6713641788810492,0.12176801264286041,-0.720101220998913,0.06841047992929816,0.845748798456043,-0.8178864978253841,-0.12930257385596633,0.9883878664113581,0.639527898747474,-0.5269317515194416,-0.6634869431145489,-0.9799178647808731,0.13746263599023223,-0.9035798134282231,-0.7384223933331668,-0.9610982877202332,0.7536092684604228,-0.5354047371074557,-0.6230430067516863,0.9712583934888244,-0.8519001393578947,0.8752777841873467,0.11310114385560155,0.7880814271047711,-0.4310093717649579,-0.5158496825024486,-0.4786333874799311,-0.5906243491917849,0.33160077640786767,-0.12709258496761322,0.5476740929298103,0.046257538720965385,0.7561409994959831,-0.4606435033492744,-0.7427877676673234,-0.9785857512615621,0.2177779213525355,0.019140732940286398,-0.3517428794875741,-0.15335725899785757,0.6724423472769558,0.302739170845598,-0.987810333725065,-0.404007432051003,-0.8463620897382498,-0.88727618008852,-0.9467382519505918,0.11538744252175093,-0.1083536222577095,0.322291127871722,-0.6365458192303777,0.15958706848323345,-0.10039061913266778,0.7512057404965162,-0.8462976207956672,0.3743168180808425,-0.39128470746800303,0.9253728394396603,-0.9852160830050707,0.2541551715694368,-0.5010552601888776,0.7691972218453884,0.9276910624466836,-0.013268571346998215,-0.8438466736115515,-0.7789079276844859,-0.17098774760961533,0.5042968136258423,-0.4220413970761001,0.7607835284434259,-0.6301544127054513,0.3171770563349128,0.6587167894467711,-0.06305167591199279,0.963041634298861,0.8856780831702054,0.20337274111807346,0.3973848596215248,0.455641470849514,-0.017650399822741747,0.874370061326772,-0.3730812701396644,-0.6299128094688058,-0.04040965484455228,-0.31659283488988876,0.5404893681406975,0.3870807192288339,0.17887336714193225,-0.24611283093690872,0.032223156187683344,0.5043632830493152,-0.08611106453463435,-0.9562034523114562,0.9016126049682498,-0.5333786522969604,-0.6102683558128774,0.48120449716225266,-0.6098559484817088,0.9924002229236066,-0.1473824642598629,-0.6764682931825519,-0.7367372163571417,0.3412685953080654,-0.1010732245631516,0.4779253974556923,-0.8111539771780372,-0.5879631359130144,-0.53535828134045,-0.4588318564929068,0.42206302378326654,-0.5284971673972905,0.28163119684904814,0.40941306622698903,0.9475420438684523,-0.7692069574259222,0.8521680100820959,0.38629350904375315,0.1943603358231485,-0.42060641711577773,0.7545811124145985,-0.055560505483299494,-0.5205418956466019,0.6902391687035561,-0.24154165433719754,-0.9383542598225176,0.8466706364415586,0.8798758294433355,-0.21402747370302677,0.8277357630431652,-0.2548422897234559,-0.9580376571975648,-0.5041539059020579,0.46488368371501565,-0.6057145101949573,-0.5610503642819822,0.3189521790482104,-0.6181367952376604,-0.5208867429755628,0.9943082677200437,0.4686036007478833,-0.5946280253119767,-0.31542784813791513,-0.10310187749564648,0.8812373168766499,0.9500952875241637,0.7293313425034285,0.7237634104676545,0.5663444013334811,-0.09367294888943434,0.694384500849992,0.38229115353897214,-0.501804550178349,0.05818693805485964,0.7363452478311956,0.9510538098402321,-0.6813819627277553,-0.9850816358812153,0.3328745770268142,-0.4466927512548864,0.2997803147882223,-0.3628859813325107,-0.307292259298265,-0.3235395853407681,-0.749599042814225,-0.6341743902303278,-0.24433589773252606,-0.5059413714334369,-0.08306920761242509,0.49537173099815845,-0.6310069179162383,0.523388335481286,0.73020747769624,-0.8141178428195417,-0.40832420717924833,0.7060593739151955,0.8197467583231628,-0.8200344243086874,-0.7676296625286341,-0.9755838606506586,0.5700997081585228,-0.5957838157191873,-0.35259485710412264,-0.21767066046595573,0.482268572319299,0.875486824195832,0.8455056231468916,0.7064273967407644,0.07379054371267557,-0.5174678643234074,-0.39107506768777966,0.9204125693067908,-0.3875758033245802,-0.3306840183213353,0.5630370806902647,0.7752332398667932,-0.6802141200751066,0.5396297336556017,-0.7467383644543588,0.5796822034753859,0.27276443038135767,0.9768462991341949,-0.4128997065126896,0.07068876503035426,-0.5076776267960668,0.15156096033751965,0.31837347988039255,-0.42961924336850643,0.37151210382580757,-0.12603359622880816,0.49398799426853657,-0.33806503331288695,-0.8046757197007537,0.8082780288532376,-0.031200400553643703,0.9173723673447967,0.757213297765702,0.7591266436502337,-0.9595508403144777,-0.911995948292315,0.5709032732993364,-0.915033305529505,0.24568181205540895,-0.9986419947817922,-0.0473629105836153,0.4067861628718674,0.8273839498870075,0.4804222541861236,-0.18507847283035517,-0.05460672453045845,-0.2944207275286317,-0.09672247804701328,-0.15270214853808284,-0.3956640940159559,0.2921707732602954,-0.541309392079711,-0.7524563390761614,-0.6194191589020193,0.6414969214238226,-0.874889315571636,0.9303188472986221,-0.7320034690201283,-0.6218701279722154,-0.1567254071123898,-0.1092496239580214,0.5784038281999528,-0.47484902758151293,0.4892760990187526,0.7853866661898792,0.28657608618959785,-0.3764899638481438,0.46364596486091614,-0.8594025308266282,-0.6874012546613812,-0.7803563447669148,-0.14565337728708982,-0.963736314792186,0.2061059596017003,-0.9824851183220744,-0.4281118209473789,0.57298918440938,0.5994449215941131,0.23111116094514728,0.7514943201094866,-0.027073991019278765,-0.8297602864913642,-0.7421524496749043,-0.5250117038376629,0.5837510256096721,0.01063701556995511,-0.7337273852899671,0.20294515043497086,-0.28354152478277683,0.2783520449884236,0.012243242468684912,0.322141460608691,-0.8878997042775154,0.3568969792686403,-0.080249332357198,-0.09223678382113576,-0.8996656644158065,0.8375569465570152,0.8098414931446314,-0.6364488527178764,-0.43305892823264003,0.07062097731977701,0.7433943655341864,-0.48997115064412355,0.7199560659937561,0.6022389801219106,-0.21333415200933814,-0.9158818949945271,0.8615481690503657,0.6414864943362772,-0.6772473105229437,-0.4338585939258337,0.9513093931600451,0.8720787949860096,0.7442337605170906,0.9634316642768681,-0.5027136499993503,0.06916352966800332,0.779070544987917,-0.9015001598745584,-0.5191799690946937,-0.10090668220072985,0.2642213851213455,-0.10027330042794347,0.6168034775182605,0.44076694874092937,-0.4956201072782278,0.8840656615793705,-0.18922346690669656,-0.6703505734913051,0.6329852640628815,0.6854612603783607,0.6297742957249284,0.48297780053690076,-0.7218979075551033,0.29674029583111405,0.5593169927597046,-0.34700338263064623,0.9735357975587249,0.5152229638770223,-0.801521944347769,-0.9423765162937343,0.417958477512002,-0.9083081218414009,0.36793199088424444,-0.2862976621836424,0.6923010894097388,0.9551898464560509,0.9572415738366544,0.0009689517319202423,-0.6216153805144131,-0.20768595347180963,0.041093300096690655,0.6733278096653521,0.9057362545281649,-0.45038157794624567,-0.6723920539952815,0.16967656137421727,-0.6508904276415706,-0.9573379876092076,-0.9665595013648272,-0.21655132621526718,-0.13873437186703086,0.27893502404913306,0.4708121935836971,0.6780464206822217,-0.6295410715974867,0.6241233311593533,0.4161751614883542,0.7546527860686183,-0.16676753805950284,0.6617470220662653,-0.633593023288995,-0.30600110348314047,0.16197283565998077,0.11823848774656653,-0.9146597096696496,-0.7867253799922764,0.8920087479054928,-0.13548624981194735,0.44371979078277946,-0.8235968463122845,0.8801588350906968,-0.9828921835869551,-0.4741903664544225,-0.9060885920189321,0.8558139875531197,-0.3627357669174671,0.2883370593190193,-0.39608057821169496,-0.06014611106365919,0.763168862555176,-0.8590713473968208,0.7980363117530942,0.7237295070663095,-0.4005000749602914,0.9211434400640428,0.11953759426251054,0.6687621306627989,0.6214390490204096,-0.9519822290167212,-0.48026560014113784,-0.2670289445668459,0.8528717267327011,-0.33345726504921913,0.5533979651518166,0.07014246238395572,-0.2511026421561837,0.946913487277925,0.1939012142829597,-0.7405496402643621,0.5277164066210389,0.602388400118798,-0.07256073271855712,-0.2849953225813806,0.28937096474692225,-0.09254188649356365,-0.7509953458793461,0.6753788944333792,-0.23109673894941807,-0.449254407081753,-0.1785355731844902,-0.691484912764281,0.12348074931651354,0.2919820547103882,-0.7451061978936195,0.038087813183665276,-0.019881976302713156,0.4760654913261533,-0.17302070325240493,-0.7647517584264278,0.5145297879353166,0.9626566492952406,-0.5649933014065027,0.715564092155546,0.15324376663193107,0.9730308461003006,0.5433539915829897,0.4729263777844608,-0.6349690249189734,0.4656858164817095,0.2520175683312118,-0.594615341629833,-0.3712481060065329,0.005645741708576679,0.2774188849143684,0.6957200509496033,-0.779073285870254,0.22855852730572224,0.8589246147312224,0.42107251146808267,0.5342818661592901,0.39295786526054144,0.20551232527941465,-0.9229369680397213,-0.6706853462383151,0.38608749536797404,-0.7031690259464085,0.23591462150216103,0.5778674790635705,-0.5413647494278848,0.9981017028912902,0.36689868522807956,0.2438656990416348,0.23862257413566113,0.3357634609565139,0.3892806535586715,-0.9712917506694794,0.15441133361309767,0.34492147667333484,0.40652314899489284,0.9356970880180597,-0.8123749694786966,0.024402864277362823,0.18068175204098225,-0.02730802958831191,0.609085242729634,0.09361746907234192,0.16282543260604143,-0.9848962966352701,-0.9448836618103087,0.3131659678183496,-0.5126294060610235,0.7434652247466147,-0.795692291110754,-0.684959470294416,0.9939375561662018,-0.7984945294447243,-0.481258281506598,0.5139694069512188,0.2615988622419536,0.8886989769525826,-0.1069413349032402,0.24216105975210667,-0.7932431073859334,-0.10368245095014572,0.8909896668046713,-0.4428423596546054,-0.9140001237392426,0.9295455748215318,-0.731866518035531,-0.6565000088885427,-0.2397176274098456,0.5294104176573455,-0.6809238055720925,0.8624427770264447,0.2934540091082454,0.32741127209737897,-0.9718759753741324,0.490807521622628,-0.6186107667163014,0.7136505716480315,-0.3274554070085287,-0.09033083356916904,0.6347191096283495,0.40259138867259026,0.6087208869867027,-0.9619188434444368,-0.4142100838944316,-0.5060890940949321,0.852960086427629,0.008462485857307911,-0.4899217071942985,0.7689360151998699,-0.4629963329061866,-0.283583362121135,0.6764096622355282,0.5747790369205177,-0.016468966845422983,0.8841785090044141,-0.6184482383541763,-0.2902047601528466,0.4031609706580639,-0.10741270240396261,0.5767037700861692,0.585987860802561,-0.39126627473160625,-0.23258917778730392,-0.9037823341786861,0.3992606191895902,-0.040043933782726526,-0.6327508818358183,-0.09479156648740172,-0.3241871711798012,0.756194326095283,-0.18522274307906628,0.8495887955650687,0.7055416745133698,0.4407329251989722,0.3087247284129262,-0.7706624614074826,-0.6359065249562263,0.9303733841516078,0.3764892783947289,-0.3754835734143853,0.2855070810765028,0.8283362155780196,-0.572506123688072,0.12146790837869048,-0.0743149733170867,0.08112872764468193,0.3151972759515047,-0.7392481896094978,-0.6764236125163734,0.04934732150286436,0.3360927253961563,0.11300450144335628,-0.4364645257592201,0.03902135556563735,-0.9111996651627123,0.4722696542739868,0.7725493460893631,0.9522206732071936,0.7059812843799591,0.9658802216872573,0.7780580502003431,0.719081053044647,0.35322998045012355,-0.2265638615936041,-0.4294262188486755,-0.5452350494451821,-0.2756892880424857,-0.9063131003640592,0.5474042505957186,-0.5736697446554899,-0.16665829299017787,-0.6688237367197871,0.5482839946635067,-0.4166474733501673,0.019121393095701933,0.46534265484660864,0.7178510348312557,0.10461754398420453,-0.5170214851386845,0.8922209464944899,-0.8482361161150038,-0.13749336451292038,-0.10466018319129944,0.8359700413420796,0.1591092636808753,0.444103395100683,-0.32064568158239126,-0.3742654034867883,-0.006725998129695654,-0.6252780649811029,0.908544207457453,0.3780742222443223,-0.7475905073806643,0.8189740087836981,-0.5104309916496277,0.254481446929276,-0.739967948757112,-0.6145698758773506,-0.7035032822750509,0.5694607528857887,0.9436620264314115,0.5323152234777808,-0.5659768977202475,0.868344746530056,0.3620257480069995,-0.707000576891005,-0.21129192784428596,-0.2106835045851767,0.8176574255339801,0.24201140040531754,0.8073573494330049,-0.9865664015524089,-0.5964929610490799,0.03968448145315051,-0.41743480088189244,0.45118540711700916,-0.7224879353307188,-0.3929688725620508,-0.8845197949558496,-0.38460359955206513,-0.8911418914794922,-0.134006816893816,0.3648591749370098,-0.34019152726978064,-0.5048324852250516,-0.9413180905394256,-0.37928570434451103,-0.47851028153672814,0.08104913402348757,0.6026366823352873,0.8425777959637344,0.13714132364839315,-0.840948570985347,0.5725691230036318,0.5899219615384936,0.17198845371603966,0.8624187745153904,-0.6661076196469367,-0.09171798406168818,-0.7687969557009637,0.7168031334877014,-0.6401164098642766,-0.9651152081787586,0.14418017212301493,-0.9399728965945542,0.21400844864547253,-0.4868170162662864,0.4289567177183926,0.8247766806744039,0.25661585945636034,0.9905366925522685,0.6205362882465124,-0.20995804341509938,-0.9488622448407114,0.18544808914884925,0.737483546603471,0.2117091752588749,-0.3001995412632823,0.604152028914541,0.4401004440151155,0.9963128715753555,-0.7536874008364975,-0.5449105533771217,-0.9057770851068199,-0.3472656989470124,-0.28849825682118535,0.38541608350351453,0.44653818709775805,-0.8149551004171371,0.5758541594259441,-0.17952371947467327,-0.8115125172771513,-0.8200978101231158,-0.8787096035666764,-0.10615479107946157,0.5971830133348703,0.0941895772702992,-0.042606599628925323,0.9861284056678414,-0.47588742710649967,-0.5566988531500101,-0.759196447674185,-0.6943440861068666,-0.3052670215256512,0.3687496641650796,-0.9679957134649158,0.3642900218255818,0.1594758704304695,-0.7100737998262048,0.4077531127259135,0.3524754298850894,-0.13791324011981487,0.8610293278470635,0.6783816134557128,-0.6750885215587914,-0.7815753021277487,-0.1287138401530683,0.9225324019789696,0.6636486705392599,0.8349674344062805,0.01723128603771329,0.8861604044213891,-0.15385786164551973,-0.08456406369805336,-0.12798482365906239,0.008982540108263493,-0.38048805156722665,0.8550405437126756,0.06359488796442747,-0.09403727343305945,-0.5205026352778077,-0.09390292223542929,-0.5342951617203653,0.17763698799535632,0.697701517958194,0.43931845389306545,0.03327927179634571,0.951244430616498,0.2069664434529841,0.298173766117543,-0.3794227121397853,0.7030401811935008,0.6015053684823215,0.11301120091229677,0.7664670133963227,-0.8308950234204531,-0.06598948128521442,0.7641376839019358,0.45613711839541793,0.17551940819248557,-0.9111398784443736,-0.05557953054085374,0.9021387971006334,-0.8567187613807619,0.8656117678619921,-0.5697120386175811,0.6022162227891386,0.7251708884723485,0.037596282083541155,0.1665746420621872,-0.8092861887998879,0.33982654893770814,-0.3257042639888823,-0.33219185238704085,0.3234158200211823,-0.3325815130956471,-0.9889936908148229,0.8959979913197458,0.4474776415154338,0.5858910009264946,-0.6455294052138925,-0.8691516509279609,0.5672979070805013,0.7446051193401217,0.15733094699680805,0.4505137982778251,-0.19105391204357147,0.36450673919171095,0.01885045925155282,0.8838040088303387,-0.14798882324248552,0.674986922647804,0.7248583273030818,-0.07547742733731866,0.8843693849630654,0.9238975248299539,0.3110603247769177,-0.8276386368088424,-0.8767817686311901,0.6700392384082079,-0.22335679875686765,-0.6230265134945512,-0.6618261379189789,-0.8682864638976753,0.2984006851911545,0.9833999229595065,0.6603928250260651,-0.46048251539468765,-0.8357614376582205,0.3771962779574096,0.09934358298778534,-0.7616621153429151,0.24332225136458874,-0.20414038840681314,0.9601427624002099,0.9518096316605806,-0.7481467272154987,0.9298976915888488,0.576788617298007,0.4369509592652321,0.27562081860378385,-0.6632830426096916,0.2516093705780804,0.7511443812400103,-0.393943777307868,-0.5142043614760041,0.4019784019328654,-0.2694087587296963,0.5393068939447403,0.5982382157817483,-0.015668044332414865,0.3929287111386657,0.00950714061036706,0.3162449961528182,-0.8628407851792872,0.23585275374352932,-0.7806301643140614,0.21640058048069477,-0.47071305522695184,-0.6167184677906334,0.8759659589268267,0.8880884861573577,-0.8147967243567109,-0.15119104040786624,-0.46742547350004315,0.47488928120583296,-0.16305630886927247,-0.6685291319154203,-0.9963812865316868,0.7226801216602325,0.21185887372121215,0.11341481888666749,0.24185907607898116,0.40497499192133546,-0.6503982534632087,-0.26149534014984965,-0.7085276232101023,0.6852635471150279,-0.39641208946704865,-0.604128057602793,-0.7925674878060818,-0.9461020808666945,-0.12143599381670356,-0.9142206609249115,0.4851360935717821,-0.6320241158828139,-0.4224290521815419,-0.45874663162976503,0.05790301039814949,0.6285971887409687,-0.0035482863895595074,0.7644174844026566,0.9880479141138494,-0.678983352612704,-0.6167666879482567,0.24594198679551482,-0.20108592230826616,-0.8436464560218155,0.24587875325232744,0.21371760684996843,0.8180393720977008,0.647873003501445,0.05290825664997101,-0.893751930911094,0.7613620376214385,0.9123820690438151,-0.47397976415231824,-0.5872327610850334,-0.8914150078780949,0.4848109073936939,-0.003187768626958132,0.9075162149965763,-0.9209895143285394,-0.12754193041473627,-0.31319115217775106,0.7781960340216756,-0.8403839883394539,-0.7058329493738711,-0.28159079933539033,0.02538044610992074,0.731728991959244,-0.3392532435245812,0.27818731777369976,0.39462142949923873,-0.6026627328246832,-0.9432775503955781,0.4336186312139034,-0.4496044754050672,0.8553613247349858,0.1296307947486639,-0.16185814375057817,0.3252789587713778,-0.6156918569467962,-0.23008529841899872,0.7968399217352271,0.5656445864588022,-0.3456894508562982,0.717768884729594,0.5594834499061108,-0.1815493148751557,0.4090324533171952,-0.4883001986891031,0.9026395077817142,-0.6837267153896391,-0.8367729294113815,0.2849534600973129,-0.9370522643439472,-0.18525325320661068,-0.059849297162145376,-0.5505615011788905,0.19839020911604166,-0.32200861629098654,-0.30855322582647204,0.7588526960462332,0.23031614674255252,0.3719959268346429,0.7376728816889226,-0.33874828927218914,0.6666513662785292,-0.6440806998871267,-0.4766466962173581,0.007750749122351408,0.08429735526442528,0.6923548523336649,0.8911189283244312,-0.9231622745282948,0.9697957942262292,0.10975230112671852,-0.486889221239835,0.6060357023961842,-0.2676366181112826,0.34819385362789035,0.46053794398903847,0.18885677959769964,-0.4974102466367185,-0.5807113377377391,0.09564050892367959,-0.3440373442135751,-0.8442203905433416,0.14496047422289848,-0.7156292251311243,-0.7295074104331434,0.767788851633668,-0.8122892957180738,0.0985013460740447,0.8281360380351543,0.9593490278348327,0.43164051324129105,0.825551520101726,-0.06498752161860466,-0.634782793931663,0.4700426524505019,-0.7850227011367679,-0.7061860589310527,0.7280064211227,-0.75203926442191,0.6009551915340126,-0.7223961469717324,0.4154263478703797,-0.7952086715959013,-0.3342595985159278,-0.5342565425671637,0.7361545441672206,-0.13402698328718543,0.4647276452742517,-0.8310841205529869,0.5624924125149846,-0.5089337429963052,-0.0687575382180512,0.9193850331939757,-0.7022955771535635,-0.023169413208961487,-0.44471484050154686,0.7367573790252209,-0.19455892220139503,-0.4676733720116317,0.26945017045363784,-0.5886299284175038,0.618725108448416,0.9135586377233267,-0.9863771223463118,0.6123116915114224,-0.2699971147812903,0.05776878260076046,0.8531652437523007,0.007617042865604162,-0.23626096453517675,-0.48639882542192936,-0.8321432983502746,-0.19519387744367123,0.6877960851415992,0.7854290269315243,-0.9271310423500836,0.5703053195029497,-0.023467833176255226,0.9288385105319321,0.640491146594286,-0.20406331261619925,0.7519656880758703,0.9116106731817126,0.4459531120955944,-0.6715568858198822,0.9751876504160464,-0.21357073727995157,-0.44606494391337037,0.4597723502665758,-0.07630257215350866,0.8609468955546618,-0.6058860560879111,0.6108695650473237,-0.16499373130500317,-0.12951767165213823,-0.09628614271059632,-0.8612820147536695,-0.8109018062241375,0.019689655862748623,0.7513122400268912,0.5964616336859763,0.8496688408777118,-0.014011033810675144,0.6808643182739615,-0.6480648322030902,-0.005899864714592695,-0.6179348812438548,0.7672933214344084,0.7511985129676759,0.31978931091725826,0.18686618516221642,-0.09065885469317436,0.09902304876595736,-0.60781783843413,-0.006858504377305508,0.5362267033196986,-0.9587909998372197,-0.9271722193807364,0.12501736357808113,-0.11226465459913015,-0.7268338529393077,-0.2814792962744832,-0.7679659118875861,0.18659298960119486,0.9162172717042267,0.44700406724587083,0.7412853590212762,-0.4719792320393026,-0.6027756314724684,0.4944596975110471,0.08451413176953793,0.2505208281800151,-0.9117920794524252,-0.5579949859529734,-0.705790557898581,-0.38568983878940344,0.9126358493231237,-0.48516726680099964,0.4646816747263074,-0.6603452847339213,-0.5946432007476687,-0.6245221137069166,-0.8754950873553753,-0.6297443746589124,-0.19489215034991503,-0.8744753669016063,-0.9525693468749523,-0.08454216364771128,0.2574076005257666,0.450538809876889,0.9631725000217557,-0.8782852422446012,0.4165311767719686,-0.2607354549691081,0.0006403243169188499,0.8029594076797366,0.9048338062129915,0.09242742648348212,0.09246031707152724,0.07295580254867673,-0.01097756065428257,0.7994211944751441,0.6192069784738123,0.07867446355521679,-0.6204068036749959,-0.09552374202758074,-0.4967549811117351,0.36714257346466184,0.9463574783876538,-0.7242661900818348,-0.4381265388801694,0.9693091283552349,-0.3949285172857344,-0.023157597053796053,0.021426446735858917,0.6563426479697227,0.8538247314281762,-0.22329659946262836,0.5159664894454181,0.6854891641996801,-0.2094421382062137,0.9034159239381552,0.25613753497600555,-0.12598631158471107,0.8739552120678127,0.4039814220741391,-0.19959426997229457,-0.6804081667214632,-0.6516593652777374,0.48145507695153356,0.3106097257696092,0.8001195578835905,-0.7147658639587462,-0.5232738982886076,-0.06168688088655472,0.6609559347853065,-0.9976369943469763,-0.5664319591596723,-0.4143241881392896,-0.49177220091223717,0.07263700617477298,-0.14874936547130346,0.09511359361931682,-0.006703444756567478,-0.3511182898655534,0.1594036342576146,0.13919995771721005,-0.6349121523089707,-0.5053755394183099,0.9247904075309634,-0.20041131228208542,-0.2751026703044772,0.37973019713535905,-0.15807155752554536,-0.7147847241722047,0.35568714141845703,0.49809536803513765,0.14692371943965554,0.5332473539747298,-0.12002502148970962,-0.8812972865998745,0.5260152122937143,-0.922421817202121,0.7368833827786148,0.1501421215943992,0.2993577569723129,0.3821469056420028,0.2859149449504912,0.4741408699192107,0.9494076394475996,-0.4955165456049144,-0.10538439033553004,-0.9757226235233247,0.19357219757512212,-0.6516189365647733,0.2617392991669476,0.06045577861368656,-0.9298139903694391,0.3970304112881422,-0.8560809725895524,-0.5508014732040465,-0.819936138112098,-0.9060151972807944,-0.32340156380087137,-0.07235927134752274,-0.9329464719630778,0.23723333282396197,0.21905130334198475,-0.15904803713783622,-0.3133067968301475,0.7093384531326592,-0.969272886402905,0.3018780737183988,0.2560499869287014,-0.6036680419929326,0.9535763775929809,-0.8548238300718367,0.8406172469258308,-0.4390999339520931,-0.6355751706287265,0.5031876214779913,-0.9811828201636672,-0.015774594619870186,-0.4713586517609656,0.306156637147069,-0.8004651460796595,0.3553694011643529,0.683815301861614,-0.19037819607183337,-0.024232530500739813,0.6575525137595832,-0.9295926471240819,-0.43891574535518885,-0.9467458981089294,-0.20737658813595772,0.05370546272024512,-0.3118280256167054,0.9651473425328732,0.5122153121046722,-0.5269136265851557,-0.15492570959031582,0.7754387194290757,-0.9743254659697413,-0.9268745305016637,-0.08732793061062694,-0.7800811906345189,0.8977551148273051,-0.5164538295939565,0.46865289146080613,0.934448687825352,0.9876028681173921,0.11692710034549236,-0.3690088354051113,0.09491085400804877,0.4467868716455996,0.24904160713776946,-0.1350549180060625,-0.4365925220772624,-0.13263025972992182,-0.8756865849718451,0.8342964462935925,0.054107431787997484,-0.48872276628389955,-0.5079028583131731,-0.3064819280989468,0.5511714690364897,-0.7975346236489713,-0.8169693453237414,-0.9987789480946958,-0.4937986903823912,0.5793555099517107,-0.7153723342344165,0.38460650155320764,0.3140592407435179,0.10232053650543094,0.8798504169099033,-0.35987746017053723,-0.8294809432700276,0.5446999939158559,0.9255975326523185,0.022758790757507086,-0.2831841413863003,0.06359379086643457,0.5815131338313222,-0.8299632803536952,0.8144048042595387,0.8480018572881818,0.7423512157984078,-0.9025040371343493,0.8266114313155413,-0.5107064275071025,0.3240644643083215,-0.8966562859714031,0.6744302846491337,-0.10789333237335086,-0.9616635870188475,0.6798935383558273,-0.3550716834142804,0.4492752910591662,-0.3085846356116235,0.22666972549632192,-0.6898019462823868,0.8218651413917542,0.8179241106845438,0.32516613975167274,0.5088690696284175,-0.2847376703284681,0.5083047077059746,-0.9569890312850475,0.30534913251176476,0.12377891270443797,0.019043626729398966,0.836148738861084,0.29512827610597014,-0.7517433245666325,0.5010324395261705,-0.9216906991787255,0.9840075518004596,-0.8725323271937668,0.5193047989159822,0.222123553045094,0.16995325731113553,0.5993838631547987,-0.9037603163160384,-0.4844237961806357,0.5302240792661905,-0.757654850371182,-0.8258076645433903,0.8507245345972478,-0.6109436373226345,0.3955059917643666,0.9742070343345404,0.07244194485247135,-0.17086895182728767,-0.2577303131110966,0.8419468221254647,-0.09560635732486844,-0.6480732099153101,-0.4534554830752313,-0.48523904103785753,0.09051780588924885,0.19270774349570274,-0.8862796952016652,0.45566354831680655,-0.02602703683078289,0.27598262624815106,0.9867644920013845,-0.016558958683162928,0.2715187738649547,0.6298315492458642,-0.20437801303341985,-0.18050486082211137,-0.4121691253967583,0.9783194758929312,0.39588692178949714,0.91927549848333,0.15244494657963514,-0.16284410143271089,-0.8171374229714274,0.9930177507922053,-0.4852362456731498,0.5241869445890188,-0.7681399062275887,-0.7445216504856944,0.7907062796875834,-0.2737515731714666,-0.9511941885575652,-0.9532640622928739,0.9651929223909974,0.3964391993358731,-0.3916850620880723,-0.10062280716374516,0.08254578243941069,-0.8650065399706364,0.15144625352695584,0.7137945699505508,-0.7804111475124955,-0.5107330530881882,0.14877421502023935,0.4153627986088395,-0.4328027730807662,-0.9725321140140295,0.8352369549684227,-0.12387091480195522,-0.007232869043946266,-0.7914801086299121,-0.4101484650745988,-0.523543231189251,0.9313943567685783,-0.3990869955159724,-0.10159880248829722,0.7593145654536784,-0.47197976987808943,0.8486054078675807,0.7881229724735022,-0.840389923658222,0.4294834304600954,-0.2816040460020304,-0.34838646929711103,-0.4954424020834267,-0.2806086060591042,0.6534216259606183,0.438677666708827,-0.040353328455239534,0.14684930350631475,-0.9512811140157282,-0.44345689192414284,0.6696001221425831,0.4125862461514771,0.665507813449949,-0.2151080542244017,-0.4937765426002443,-0.24867614498361945,0.5032201493158937,0.8141492307186127,-0.8655317197553813,0.9199224445037544,0.14800844807177782,0.5991291902028024,0.9596411567181349,-0.2770251175388694,0.30796832498162985,0.5274346419610083,0.29539139894768596,0.07659840397536755,0.5973884668201208,0.5658183777704835,-0.37820775946602225,-0.7940556220710278,-0.8535888134501874,-0.19138882728293538,0.8303616098128259,-0.48500443529337645,0.5683613251894712,0.16465619998052716,-0.4702576599083841,-0.06992611521854997,0.1946637872606516,-0.5317857628688216,0.6249936632812023,0.023501775693148375,0.3012533634901047,0.9155857828445733,0.8608848610892892,-0.6837114742957056,0.2357061100192368,0.9321347363293171,0.021109259221702814,-0.3761660782620311,0.08680068096145988,-0.04118922911584377,0.6175718000158668,-0.5679608196951449,-0.7914071520790458,0.46241871314123273,0.9377699848264456,-0.4320464921183884,0.34075608290731907,0.3483951180242002,-0.9569641570560634,-0.9661071831360459,-0.7797562442719936,0.8004884831607342,0.6177822076715529,0.9528979500755668,-0.19004868669435382,-0.3012776514515281,-0.33264508098363876,0.17999415658414364,-0.6788661470636725,-0.4965036241337657,-0.9915693765506148,0.7862379187718034,-0.00562887592241168,-0.34497228264808655,0.24445252772420645,-0.7750994847156107,0.5537198027595878,-0.24392965529114008,-0.6135106468573213,0.24346340168267488,0.6830100598745048,-0.8763469438999891,0.45262719923630357,-0.11850911099463701,0.20615285728126764,-0.9808090287260711,-0.7640614057891071,0.09609009558334947,-0.45419492945075035,0.5709891919977963,0.7948914645239711,0.5528731723316014,-0.7340771714225411,0.5655333083122969,0.7602547015994787,0.2801945307292044,-0.18871128000319004,-0.9646234498359263,0.43213183991611004,-0.631270909216255,-0.9502477152273059,-0.0440741078928113,-0.5305243022739887,-0.1571199637837708,0.9747164105065167,0.40596827445551753,-0.8982128161005676,-0.40165499644353986,0.8467294294387102,-0.2589452867396176,-0.2611121255904436,-0.07999761123210192,-0.2732538883574307,0.12804534751921892,0.048879832960665226,-0.8723685527220368,-0.9773565684445202,0.3264381270855665,-0.6178408022969961,0.07832288136705756,0.4078323203139007,0.6814170079305768,0.5735575947910547,-0.020531445741653442,0.5006533488631248,0.22951758047565818,0.8448187271133065,-0.09404265601187944,0.008155130315572023,0.7482334482483566,-0.9652469190768898,0.9492372618988156,0.5751768350601196,-0.8836176772601902,0.9758417182601988,-0.10620254511013627,-0.6391920098103583,-0.8379184333607554,0.3159302258864045,-0.32135163247585297,0.47491979598999023,0.013633730355650187,0.08603191841393709,-0.14996772957965732,-0.2269032751210034,-0.9778206585906446,-0.40832355339080095,-0.38753315433859825,-0.49301310256123543,-0.4087228639982641,0.8440451081842184,0.9170246394351125,0.5769145847298205,-0.34823762252926826,-0.28615827625617385,0.029630756471306086,0.5220671100541949,-0.2438980108126998,-0.9206384913995862,-0.9516867627389729,0.15134696988388896,0.610782828181982,-0.4634988377802074,0.5933626270852983,-0.6355481250211596,0.8640231159515679,0.37055328767746687,-0.7452933369204402,-0.6348148654215038,-0.997796677518636,-0.3104435415007174,-0.2269026623107493,-0.31073227105662227,-0.3746230062097311,-0.046101081650704145,0.5370366806164384,-0.6220682202838361,0.8250249600969255,0.04424813110381365,0.7822766769677401,-0.5725593082606792,-0.9263962325640023,0.435924437828362,-0.11460239998996258,0.414998478256166,0.8665080149658024,-0.7774721598252654,-0.3893461152911186,-0.9970692493952811,0.6968248467892408,-0.4375340761616826,-0.009295000694692135,0.26026461785659194,-0.45310135604813695,-0.5063891345635056,-0.3758817766793072,0.03402188699692488,0.8528712764382362,-0.9070235597901046,0.7073346050456166,-0.963841793127358,-0.3884777370840311,0.020029449835419655,-0.11934540793299675,-0.29182617040351033,0.46407215809449553,-0.902693415991962,0.6276872847229242,0.6749475481919944,0.09916935302317142,0.47042470751330256,0.3515592850744724,-0.7881977413780987,-0.46831440227106214,-0.11609869357198477,-0.8319985494017601,-0.04234673734754324,0.5846696952357888,0.3281842111609876,0.6074469881132245,-0.7520963638089597,0.5940871625207365,0.021764751989394426,0.7615527347661555,-0.5923353848047554,-0.6505255689844489,-0.8355680243112147,-0.9684987389482558,0.7874599685892463,0.5991960428655148,0.2515045441687107,-0.8497473187744617,0.5156781943514943,-0.2627136455848813,0.856460231821984,0.16980056231841445,0.8243115730583668,0.16355330310761929,-0.3140794727951288,0.8215462495572865,-0.04222449194639921,-0.841437644790858,0.883360299281776,-0.24163700360804796,-0.15764117008075118,0.9902680376544595,0.4786406676284969,0.6614089068025351,0.6457790285348892,0.9967613983899355,-0.29282572865486145,0.9070770079270005,-0.27635653130710125,0.4868231597356498,0.46478132298216224,-0.19262132560834289,-0.4479935779236257,0.7177125941962004,-0.48245707200840116,-0.8457652884535491,0.7752636191435158,-0.7268773028627038,0.34509895322844386,-0.6035061762668192,-0.02204464701935649,0.3150473767891526,-0.10190455010160804,0.37469262909144163,-0.543450168799609,0.7124245772138238,0.5402113869786263,-0.22537960205227137,0.25692497799173,-0.44062385195866227,-0.05325500667095184,0.17818531766533852,0.012728175614029169,0.7484060935676098,0.7659155372530222,-0.5578230214305222,-0.31916028866544366,0.46837593615055084,-0.7829213729128242,0.41299358988180757,0.17542641190811992,0.538153167348355,0.5404711803421378,0.15768598625436425,-0.2489211168140173,-0.4862712901085615,-0.6708563691936433,0.09252038924023509,0.8341395412571728,0.042095629032701254,-0.047652679961174726,0.03749615605920553,0.6901637241244316,-0.6742644449695945,-0.3522302554920316,0.8215091126039624,-0.707381319720298,0.19509597588330507,0.12007538322359324,0.9306437517516315,-0.11543104611337185,-0.2018448575399816,0.5352833196520805,-0.8927223519422114,0.2553290696814656,0.8614026275463402,-0.5584031715989113,0.9625825472176075,0.3642849950119853,-0.3433081149123609,0.6036070552654564,0.7975527993403375,0.9806974502280354,-0.8802932226099074,0.545882576610893,-0.7328312103636563,-0.42658302187919617,0.24245239607989788,0.9306931565515697,-0.7296879682689905,-0.8338312436826527,0.8527167462743819,-0.8122027544304729,0.38657677080482244,0.5328895612619817,-0.7664397186599672,-0.4581605577841401,-0.1986380247399211,-0.7768606576137245,-0.7306830389425159,0.9546787813305855,-0.846823122818023,0.13974045310169458,-0.23241874109953642,0.3796100541949272,-0.7052567121572793,0.24628154234960675,-0.9436862776055932,0.07048391224816442,0.17206666292622685,-0.1061341380700469,-0.6369690438732505,-0.7953299656510353,-0.8936827396973968,-0.30435857316479087,0.5973493815399706,0.2916971161030233,0.5358113921247423,0.03600121336057782,-0.16514447890222073,-0.4215101455338299,-0.7686546677723527,-0.6033830237574875,-0.44400668190792203,-0.019878249615430832,0.25352848367765546,-0.4789018384180963,-0.1929668146185577,-0.5055944384075701,0.29167833691462874,-0.45934254862368107,0.8333315593190491,-0.23477707523852587,-0.8199939602054656,0.26409135526046157,0.09895950928330421,-0.7546622580848634,0.6399905197322369,0.45901470771059394,-0.7089789169840515,-0.25613748794421554,-0.7574394550174475,-0.6623252052813768,-0.79418207379058,-0.4145643236115575,0.6278026001527905,0.6288952953182161,-0.4475510837510228,-0.06298670452088118,-0.7073194612748921,-0.850110340397805,-0.20875547733157873,0.38214806839823723,0.23433172516524792,0.9947367929853499,-0.7510694414377213,-0.5552926552481949,-0.27539955638349056,0.9477165280841291,0.4191022487357259,0.7311870083212852,0.19007539190351963,-0.017004518769681454,0.8314817883074284,0.8650540066882968,-0.8732196125201881,0.8384753088466823,-0.6778921843506396,-0.8840176095254719,0.8373078089207411,-0.6529611991718411,0.9754206328652799,-0.8858066783286631,0.8770304587669671,-0.2909315852448344,-0.39463910600170493,0.9179680333472788,0.7343730577267706,-0.8211861709132791,0.9045728999190032,-0.9594673062674701,0.35283535765483975,0.9769723271019757,-0.6509968847967684,0.4554569241590798,0.10523064760491252,-0.8435952169820666,0.23032724810764194,-0.3117626439779997,0.7529811896383762,-0.5842250813730061,-0.9846391188912094,-0.056009937077760696,-0.9417801117524505,-0.059610632713884115,-0.42575698159635067,0.9414208475500345,0.054247389547526836,-0.05422425828874111,-0.6459995140321553,0.7237035091966391,-0.2403551135212183,-0.1267408742569387,-0.5817901091650128,-0.4543089768849313,0.6591293993405998,0.9911550926044583,0.6954986224882305,-0.023855220060795546,0.5550719881430268,0.7137432615272701,0.8903553048148751,0.5130291939713061,0.4804079462774098,-0.7755402899347246,-0.8595560728572309,-0.11295598931610584,-0.531904409173876,0.5775369582697749,0.050243426114320755,-0.8077521892264485,-0.0691193314269185,-0.14048721734434366,0.06709596794098616,0.5426743282005191,0.7989191068336368,0.2839331696741283,-0.42502664728090167,-0.5257459627464414,-0.7138683651573956,-0.41510560642927885,-0.35117024276405573,0.4350575925782323,0.010768493171781301,0.2701468048617244,-0.3800125913694501,-0.7439364274032414,-0.26285234466195107,-0.8554052184335887,0.6529284748248756,0.2085848106071353,-0.6864227107726038,0.14436212182044983,-0.190700467210263,-0.3147065774537623,-0.49934405321255326,-0.15680277859792113,0.8032752964645624,0.4145228276029229,0.15104410238564014,0.016727297101169825,-0.6945150978863239,0.7519964394159615,-0.05667176144197583,0.502907199319452,0.19242540141567588,0.38385138707235456,-0.3480837666429579,-0.97582430485636,0.23061457881703973,-0.20825179992243648,-0.12563531892374158,-0.9004745734855533,0.5525784813798964,-0.7507149633020163,0.7608325178734958,0.8594817882403731,-0.7076187361963093,-0.9666719879023731,-0.6143930829130113,0.7950455127283931,0.5984727507457137,0.9916589516215026,-0.8886769800446928,-0.8976511978544295,0.35230290284380317,0.2855775151401758,-0.9728876100853086,-0.3619662318378687,0.5467575420625508,0.1980424029752612,0.5409600487910211,0.40413736971095204,-0.751318886410445,0.3173781759105623,0.0982699473388493,0.15367564046755433,-0.048534785863012075,0.7633320344612002,-0.5179059491492808,-0.5423586526885629,-0.7076834095641971,-0.8641045521944761,-0.06258635735139251,-0.9416499305516481,-0.23298450512811542,0.6796426051296294,0.2366983462125063,-0.22210492752492428,-0.6021185191348195,0.9963598153553903,0.7812664206139743,0.5226535554975271,0.2416222277097404,-0.38312279945239425,-0.3483924977481365,0.8019953868351877,0.8707716693170369,0.8714624140411615,-0.696189898531884,-0.9936542427167296,0.20745975151658058,0.39297804050147533,-0.9402999030426145,0.10508270841091871,0.291184407658875,-0.9697626321576536,0.35516503965482116,0.9879536330699921,-0.902051919605583,-0.21090063964948058,-0.7289111549034715,-0.5674705668352544,0.6830843510106206,-0.0676109935157001,-0.4580320343375206,2.985214814543724e-05,-0.3092646333388984,0.8608977608382702,-0.7554156207479537,0.5384976849891245,-0.12314959987998009,0.7846392532810569,0.6177475601434708,0.8206030777655542,0.1347445249557495,0.15291212918236852,0.7340456182137132,-0.9645167961716652,0.4368580956943333,0.7645323821343482,0.10463667381554842,0.5428895354270935,0.5299719488248229,-0.3719667214900255,-0.7718370077200234,-0.8534781793132424,-0.578827747143805,-0.9066222817637026,-0.041178783401846886,-0.040209051221609116,-0.33562998939305544,0.6213162215426564,0.3506659036502242,0.7319801249541342,0.9376247692853212,0.6091369255445898,-0.8763887076638639,-0.7660624762065709,0.323078113142401,-0.92921457067132,-0.10366720799356699,-0.8161190780811012,-0.044065270107239485,-0.9132770714350045,0.8569078161381185,0.5115756741724908,-0.3456662567332387,-0.05336214788258076,0.7946053138002753,0.774025964550674,-0.7277141916565597,0.3540685693733394,0.26748023042455316,0.016535243950784206,0.9075540080666542,-0.5528083341196179,0.21979490760713816,-0.16712072351947427,-0.9390004430897534,-0.7901414632797241,0.42905637389048934,0.428507830016315,0.7134869387373328,0.12323749298229814,0.6669780467636883,0.3900735848583281,-0.9603272173553705,-0.6192638440988958,-0.3376627182587981,-0.5504442355595529,-0.0032431744039058685,0.3638355014845729,-0.07463733898475766,0.9421441885642707,0.7046418273821473,0.8866096748970449,-0.6689649075269699,0.05407201126217842,-0.9321851534768939,-0.9898890466429293,0.3036320609971881,-0.9434827868826687,-0.7294958084821701,0.5416953754611313,0.7981011173687875,0.5815602266229689,0.6252255574800074,0.408799447119236,-0.7201922005042434,-0.18375332280993462,0.9902200265787542,0.5621309247799218,0.47659261990338564,-0.8608501278795302,0.39765855949372053,-0.7910100747831166,0.9012319603934884,-0.4785709986463189,0.8169282590970397,0.7050174847245216,-0.643337266985327,-0.4749461286701262,0.7322100265882909,-0.1425449103116989,0.7901548678055406,-0.5799607764929533,-0.13137349346652627,-0.5399323245510459,-0.33657469088211656,-0.018330810591578484,0.5662586251273751,0.5749641754664481,0.6270016096532345,0.8308579353615642,0.7209219094365835,-0.306286764331162,0.10707453126087785,-0.862131045665592,0.16002203105017543,0.062332586385309696,-0.04968730919063091,0.9995414190925658,0.040326048620045185,0.17311525624245405,-0.43353626038879156,-0.9403072791174054,-0.4309118092060089,-0.8302652207203209,-0.700175647623837,0.5763381761498749,-0.13971680123358965,-0.6303214482031763,-0.32162071904167533,-0.40999209973961115,-0.20905764726921916,-0.9367909887805581,-0.6241949070245028,-0.15713541023433208,-0.7417274084873497,-0.042349021416157484,0.9724392853677273,-0.8042959552258253,-0.6430532853119075,-0.4660349553450942,-0.29299890995025635,-0.718176914844662,-0.9558558403514326,0.9874772299081087,-0.1542864334769547,-0.4504152531735599,-0.08702033618465066,-0.1310266456566751,0.9742989437654614,-0.3127448628656566,0.059312109369784594,0.5506317624822259,0.452651082072407,0.5051829456351697,-0.9139216742478311,-0.4447581861168146,0.9790451657027006,0.7058885674923658,-0.6658918038010597,-0.0172721347771585,-0.06305263191461563,-0.7311318158172071,0.6605073222890496,0.91486910963431,-0.4411818515509367,-0.9826477994211018,-0.2519684177823365,-0.6653318391181529,0.41651144763454795,-0.42738077975809574,0.05040065525099635,-0.5481147184036672,0.5247934977523983,-0.6385187967680395,0.6023456789553165,0.7411178001202643,-0.6878579785116017,0.5572373876348138,0.27652661269530654,-0.6197704840451479,-0.8161897365935147,-0.2273760330863297,0.1529353717342019,-0.04560363106429577,-0.42251189332455397,0.9906324194744229,0.8944619516842067,0.5947997095063329,-0.531401960644871,0.21656686533242464,-0.021565197966992855,-0.557033134624362,0.5813016900792718,0.30663492577150464,-0.23467701114714146,-0.6338094864040613,-0.07389326533302665,-0.28092910116538405,0.9679443808272481,-0.284116733353585,0.5276326630264521,-0.04058503080159426,0.7131345821544528,0.5758662610314786,-0.986736536026001,-0.2935049547813833,-0.3811121634207666,-0.3967933184467256,0.04070887016132474,0.5933272913098335,0.9442593399435282,-0.47721812780946493,-0.4185625836253166,0.2529306150972843,0.7408186150714755,-0.4698838419280946,-0.8424743372015655,-0.7257593781687319,0.6833047978579998,-0.9069596393965185,-0.7059075688011944,0.7348249321803451,0.01569369761273265,0.19211988942697644,0.24471953697502613,0.37732767779380083,0.8374868524260819,0.09078697208315134,-0.17136176861822605,0.017002183478325605,0.29163229232653975,-0.45715475687757134,-0.5878512035124004,-0.8316087666898966,-0.2314320607110858,-0.19391842233017087,-0.022449504118412733,-0.7954732375219464,-0.17663921881467104,0.9526221789419651,0.6729161525145173,-0.9721534978598356,0.6376500804908574,0.33493917994201183,0.7169341733679175,-0.5052516702562571,-0.24708882020786405,0.10221052821725607,-0.3637506705708802,-0.2318504094146192,-0.9035348207689822,-0.05742516973987222,-0.7247175765223801,0.03154577175155282,0.19749634386971593,-0.5102739087305963,0.2048740116879344,-0.15204497147351503,-0.08851700369268656,-0.050442049279809,-0.00481506297364831,-0.49766031838953495,0.35790820699185133,-0.7009833445772529,-0.7532325005158782,0.28005218924954534,0.11786604952067137,0.914326342754066,0.8445192174986005,0.7845514477230608,-0.19576673908159137,0.5133737348951399,-0.6895005502738059,0.3007389544509351,-0.07915978785604239,0.16769281961023808,0.8675944688729942,0.28274327190592885,-0.8011813727207482,-0.33181734243407845,-0.03217482101172209,-0.5590878478251398,0.05135724134743214,-0.24714392703026533,0.3586068251170218,0.02005510963499546,0.43357202177867293,0.18952008802443743,0.34811439365148544,0.9439313039183617,-0.7860105694271624,-0.25944718439131975,0.9965254189446568,-0.10719661554321647,-0.4829258588142693,0.12525569973513484,-0.7295673280023038,-0.8933116476982832,-0.5076749324798584,-0.3479421022348106,0.5370439286343753,-0.5771337770856917,-0.31671777879819274,0.10330491233617067,-0.29459200520068407,0.06142666935920715,-0.018479757010936737,-0.49779995158314705,-0.8438122812658548,0.2560240118764341,0.04697964433580637,0.30849205842241645,0.9472167179919779,0.4786234721541405,0.5709496126510203,0.18364797346293926,0.37011609273031354,0.6944007184356451,-0.6290930639952421,-0.3348838035017252,-0.9763207538053393,-0.4841806273907423,-0.6829137438908219,-0.3280294076539576,-0.37202369794249535,0.6628506635315716,0.16947264736518264,0.2722145742736757,0.1659773327410221,0.06233756523579359,0.6577047086320817,-0.20307048503309488,-0.8248922126367688,0.2316453792154789,-5.306210368871689e-06,0.43634426686912775,-0.4214047589339316,0.4137629270553589,0.035219987854361534,-0.47765754722058773,-0.8065656661055982,-0.8954416755586863,0.913044371176511,0.4757075086236,-0.21537985606119037,-0.3366032224148512,-0.6029141498729587,-0.7942460626363754,0.1393471686169505,-0.6028738585300744,0.00651978887617588,0.455475936178118,0.34811721835285425,-0.24778840830549598,-0.6591401938349009,0.29595699114724994,-0.7057172227650881,-0.08681102329865098,0.4506023395806551,-0.49947363790124655,-0.6064009754918516,0.5599716529250145,0.3774558240547776,0.7801917819306254,-0.09689940232783556,-0.9546230733394623,-0.44622375536710024,-0.7774683223105967,0.08753506513312459,0.9205988752655685,0.12084103701636195,-0.435047191567719,0.17848453857004642,0.2837254018522799,0.5955371190793812,-0.6150867324322462,-0.017497774213552475,0.27413106616586447,0.5356614072807133,-0.17023116163909435,-0.7345529678277671,-0.23857966531068087,-0.9915291820652783,0.8279906716197729,0.6141245276667178,-0.7367462697438896,-0.7303059278056026,-0.5511741596274078,0.2684110878035426,-0.9857612890191376,-0.3329588142223656,0.03757278062403202,-0.7086867135949433,0.5223455158993602,-0.48144118394702673,0.6110530118457973,0.8036352056078613,0.9086235957220197,-0.043561403173953295,-0.725649980828166,-0.444239204749465,-0.8431971953250468,-0.7088228929787874,0.9465531157329679,-0.6843315493315458,-0.9124589143320918,-0.045953449327498674,0.6832368364557624,0.5976271233521402,0.70566426217556,0.46248422050848603,-0.022271825931966305,-0.254364563152194,0.22765007382258773,0.40187560208141804,0.46444515231996775,-0.504874890204519,0.5182839473709464,0.34136730851605535,0.017815346363931894,0.5845261355862021,0.08353147283196449,0.8245742907747626,-0.12386820325627923,0.14195073815062642,-0.4828139212913811,-0.23559641418978572,0.3814097070135176,-0.6228983756154776,0.9512458462268114,0.7113484987057745,-0.7507830830290914,0.24685440119355917,0.3837351156398654,0.6969993561506271,0.5003295429050922,-0.03965368773788214,0.31774514028802514,0.5792018715292215,-0.6628713365644217,-0.11838602786883712,-0.8629285492934287,-0.270318063441664,0.8197068334557116,0.14461183780804276,0.9357422459870577,0.5357364271767437,-0.15711883082985878,-0.4338190252892673,0.7371552446857095,0.5772768445312977,-0.24531291844323277,-0.43721107207238674,-0.45974944764748216,-0.9582655061967671,-0.8778542936779559,0.4841877301223576,-0.9697107961401343,-0.09027864737436175,0.8377432092092931,-0.011885805055499077,0.03950561536476016,-0.4403625023551285,0.6296850140206516,-0.273851933889091,0.9378263913094997,-0.7565955989994109,0.6041831602342427,0.2792608686722815,-0.18760534655302763,0.8304571355693042,9.43630002439022e-05,0.7962014279328287,-0.9448500880971551,-0.35081806499511003,0.31732373544946313,-0.3034041807986796,-0.31083680037409067,-0.3752682735212147,0.028719089925289154,0.8430380173958838,0.4867684468626976,-0.12626191042363644,-0.6640117508359253,0.28843389777466655,-0.8005383545532823,-0.4262746889144182,0.5012490022927523,-0.07637491263449192,0.50295036053285,0.5443210150115192,0.8775545675307512,-0.4080431591719389,-0.6890830211341381,0.33663521567359567,0.4858656683936715,-0.5617544483393431,0.42633982049301267,0.277565729804337,0.5660997279919684,-0.7397462292574346,-0.8462392766959965,0.1151065556332469,0.6524859522469342,-0.31359278224408627,-0.35810414468869567,-0.9485615529119968,-0.035383242182433605,0.9388830200769007,-0.12534323800355196,-0.3270859741605818,0.4685095655731857,0.7461237255483866,-0.046436425764113665,-0.896467620972544,-0.8267507371492684,-0.05807717563584447,0.20180638739839196,-0.28131922893226147,-0.37450430635362864,0.0844983235001564,-0.07460080925375223,-0.03355786483734846,0.856986366212368,-0.7445192034356296,0.165999096352607,-0.3776654195971787,-0.14633305417373776,0.43371926061809063,-0.5742224068380892,0.11023619351908565,0.8879771735519171,0.3278531744144857,-0.7451111944392323,-0.1579476287588477,0.6306220144033432,0.6936244922690094,0.0743117700330913,0.442867761477828,-0.3864773823879659,-0.8902774597518146,0.16803181171417236,-0.06662484584376216,-0.7465107031166553,0.79153161495924,0.7418046980164945,-0.14088323432952166,0.4694046229124069,-0.9428317323327065,0.19765197252854705,0.3547002044506371,0.3911556378006935,0.9379225457087159,-0.2855239734053612,-0.19798557041212916,-0.10277230339124799,-0.04024399211630225,-0.9364969590678811,0.5026352070271969,0.8776502613909543,-0.3984519965015352,-0.3392144530080259,0.19958172785118222,-0.9287891709245741,0.8988592433743179,-0.782610007096082,0.401742672547698,0.20004491554573178,-0.28971753316000104,0.17114649387076497,-0.9414122314192355,-0.6894687227904797,0.7001625229604542,-0.9746944513171911,-0.5960841113701463,-0.06117330119013786,0.7591904881410301,-0.8542299997061491,0.721100723836571,0.16313032433390617,0.2675995803438127,-0.4093183004297316,-0.07903045136481524,0.24656186532229185,0.7584432079456747,0.21981742419302464,0.3773360070772469,0.2000166098587215,-0.17523844400420785,-0.8699701256118715,-0.2952626561746001,0.36126778181642294,-0.12857973668724298,0.042454302310943604,-0.9084853744134307,0.8553157919086516,0.185067901853472,0.7518328758887947,0.7135105207562447,0.9957554605789483,0.4127702433615923,0.12369492696598172,-0.5643082852475345,-0.5895403791218996,0.7749956101179123,-0.17851073341444135,-0.4040322694927454,-0.13589043309912086,0.22155296336859465,-0.5868296204134822,-0.26795695209875703,-0.5876742703840137,-0.15658160159364343,-0.01772523671388626,-0.23601021291688085,0.7007682854309678,0.9835444851778448,-0.7191254324279726,0.8618483515456319,-0.04861931409686804,0.3236722517758608,0.4328270563855767,-0.649122841656208,0.38193248165771365,0.4221261260099709,0.22917530639097095,-0.839163651689887,-0.7776898080483079,0.8385960133746266,-0.18817029474303126,-0.8286940972320735,-0.04651259584352374,0.7895573587156832,0.0345272864215076,0.3087669131346047,-0.09982176823541522,0.12799061089754105,0.13310569804161787,-0.874025234952569,-0.48746591061353683,0.7371245501562953,0.00589117594063282,0.19215433672070503,0.4058359880000353,0.19425749778747559,0.7519420245662332,0.6861238796263933,-0.6903296899981797,-0.2597591821104288,0.08784488681703806,-0.9581368211656809,-0.4999974640086293,0.577474873047322,0.9519845084287226,0.7547927312552929,0.324998551979661,0.40203628316521645,-0.2712985398247838,0.08630960062146187,-0.5058266622945666,-0.13105141231790185,-0.4260430373251438,-0.38755219569429755,-0.9286487312056124,-0.7429432217031717,0.2630771496333182,0.6142348316498101,0.6097420006990433,-0.19605276128277183,0.4896832234226167,0.5565235954709351,-0.943139033857733,-0.27704827208071947,-0.6937877568416297,0.19905450474470854,-0.7185943415388465,0.909004844725132,0.4412921676412225,-0.0144802276045084,0.9632962136529386,-0.433701413217932,0.4185894695110619,-0.688761186785996,0.15838521998375654,-0.18683096254244447,0.707750529050827,0.6367819467559457,-0.38337554363533854,0.7135651390999556,-0.5779937217012048,-0.018323877826333046,0.6629735170863569,-0.5746438167989254,-0.5917916377075016,-0.731368278618902,-0.2759692268446088,-0.015796405263245106,0.3256105282343924,-0.755803314037621,0.18293394753709435,-0.5787390982732177,-0.5040656654164195,0.2522304533049464,0.9055127301253378,-0.9027932831086218,0.3809957355260849,-0.42847402626648545,0.6331960465759039,-0.8973627709783614,-0.2619105945341289,0.5901047550141811,0.5156450695358217,-0.31872588815167546,0.45762865897268057,0.38082443457096815,-0.9883170775137842,-0.5196434874087572,0.7174056656658649,-0.8998859561979771,-0.8127988860942423,0.08854831987991929,-0.9971110899932683,0.7287549171596766,-0.8440646775998175,0.9838929628022015,0.816708268597722,-0.18425422022119164,-0.38406174443662167,0.7992680640891194,-0.8650125782005489,-0.6993638048879802,-0.9405132327228785,0.5985803254880011,0.12991674384102225,0.9342250870540738,-0.8008819068782032,-0.5254231719300151,0.510462446603924,0.37371320091187954,-0.17188566038385034,-0.5107232290320098,-0.8722219658084214,0.4199473261833191,-0.5377489607781172,0.9302824642509222,0.7172542163170874,0.19498722674325109,-0.5926458816975355,0.021184680052101612,-0.1878032609820366,-0.09283941518515348,-0.5686231618747115,-0.7012037774547935,0.3062937534414232,-0.2107478054240346,0.22708547674119473,0.556232291739434,-0.4395390385761857,0.8744692197069526,0.7370426766574383,0.4515287200920284,-0.21349118510261178,0.19938078988343477,-0.12472139997407794,0.6612789025530219,-0.1400162447243929,0.2611165242269635,0.40015577571466565,0.4616989982314408,0.2906512296758592,-0.1836589276790619,0.9600477209314704,0.8840321497991681,0.5389650845900178,0.680526786018163,-0.9109473587013781,0.012176196090877056,-0.5194368776865304,-0.49468137603253126,-0.210156527813524,0.13190933968871832,0.1685206857509911,0.10233547165989876,0.11579027958214283,0.49922403460368514,0.22099298238754272,-0.9299148796126246,-0.4188505872152746,-0.10115076834335923,0.3476118319667876,0.8181807566434145,-0.1219981131143868,0.5835351133719087,-0.1827816106379032,-0.7353441719897091,-0.255181388463825,0.08059384161606431,-0.08347848663106561,0.5660086963325739,0.03560923645272851,0.08334232214838266,0.8223426379263401,0.9335175207816064,0.8548793969675899,-0.29944397741928697,0.5649440865963697,-0.9055844014510512,-0.450169010553509,-0.7688497020862997,-0.4712563524954021,-0.564375483430922,0.44810407795011997,0.5418083290569484,0.07794552017003298,0.3651533564552665,-0.8364983615465462,0.1959688365459442,0.33556332159787416,-0.7269110959023237,-0.007089181337505579,0.2085775719024241,0.7406968814320862,0.8867914937436581,-0.6664245617575943,-0.6281854240223765,0.6399401058442891,0.18686834117397666,-0.8643214083276689,0.14073304692283273,0.393761629704386,-0.8615120546892285,-0.2778394566848874,0.3136210246011615,-0.355703042820096,-0.42889392375946045,0.2183993007056415,-0.8155142064206302,0.2960737869143486,-0.22787925554439425,0.529177859891206,-0.6321129789575934,-0.12279164372012019,0.8862929092720151,-0.45931532979011536,-0.5736752231605351,0.8726412472315133,0.7355458023957908,0.6374305076897144,-0.003559303469955921,-0.5328414174728096,-0.5852666194550693,-0.13693749764934182,-0.21176297776401043,0.9086777833290398,0.8972821510396898,0.5821664188988507,-0.9205506220459938,-0.8061093827709556,-0.9544822536408901,0.17261737305670977,-0.7638855031691492,-0.16286260168999434,-0.36839496111497283,-0.37444507982581854,0.07090588379651308,0.6788291060365736,-0.8087084330618382,-0.18095308262854815,0.29669221118092537,-0.09173583425581455,-0.9810616374015808,0.14793111570179462,0.2231867266818881,-0.8044949737377465,0.09606923256069422,-0.22398264845833182,-0.4533579908311367,0.011298948433250189,0.2950675180181861,-0.6361747100017965,-0.1343611846677959,0.14059643214568496,0.8298082617111504,0.7465249705128372,-0.24696257524192333,0.4322918760590255,-0.3668944011442363,-0.053749305196106434,-0.14482274558395147,-0.6362076103687286,0.8757434538565576,-0.07061321614310145,-0.6263781236484647,-0.7842034515924752,-0.26143134804442525,-0.9057279867120087,-0.7060783002525568,-0.9860200774855912,-0.5301425871439278,-0.2543687494471669,0.5935070882551372,0.9884898462332785,-0.47719515208154917,0.8065971261821687,0.3152274936437607,0.9457898531109095,0.808614288456738,-0.32634934363886714,0.20072774542495608,-0.2949561635032296,-0.06693138927221298,0.8994549815542996,0.6257280041463673,0.6037286147475243,-0.472748595289886,0.8247098024003208,-0.6150445649400353,-0.36867939913645387,0.2120364992879331,-0.7901744218543172,-0.3114901455119252,0.1479218015447259,-0.7694750018417835,0.5410565254278481,-0.7243442181497812,-0.6763080777600408,0.7011994691565633,0.264775060582906,0.3409846732392907,-0.36917484225705266,-0.9369560182094574,0.9340675794519484,-0.651426138356328,-0.022481460124254227,0.6421008454635739,-0.011165246367454529,-0.2961490619927645,0.42348245065659285,-0.12348000286146998,-0.19815666461363435,-0.27990198507905006,0.5169605826959014,-0.37820721277967095,0.6750201540999115,0.8208175348117948,0.6649357723072171,0.7433955734595656,0.057268372271209955,0.21617804747074842,-0.7532278057187796,-0.5828986647538841,-0.07908337283879519,0.39428906282410026,-0.19672265835106373,-0.20901844510808587,0.5871084774844348,-0.499403640627861,-0.9006340228952467,0.43720216350629926,-0.01881174324080348,0.2543197115883231,0.5304070729762316,-0.49143535643815994,-0.3486160966567695,-0.5714830248616636,0.7197410599328578,0.47132577700540423,0.31527736922726035,0.9918322809971869,0.861422922462225,0.8734633540734649,-0.8220377271063626,-0.7402241108939052,0.7470444096252322,-0.16690101334825158,-0.7996689849533141,0.12390173971652985,0.30543736182153225,-0.4110566098242998,0.9152140570804477,0.4786854675039649,0.04202735284343362,-0.3563486384227872,0.048903470393270254,0.14744053035974503,0.45249957824125886,0.6018768236972392,0.8304013526067138,-0.66989820683375,0.20553735783323646,0.9151152516715229,-0.3029723814688623,-0.045286758337169886,-0.5868459306657314,0.4347483399324119,0.08395875431597233,0.6679642517119646,-0.9866316774860024,-0.8318975348956883,-0.32185078505426645,-0.9247254338115454,-0.23902621306478977,0.2831086916849017,0.1928551229648292,0.9376507280394435,-0.23021552059799433,-0.5967120015993714,-0.21383010037243366,0.7600681898184121,-0.6227811188437045,0.8200437845662236,0.20838872529566288,-0.014286746270954609,-0.3526567090302706,-0.27592468494549394,-0.950690554920584,-0.9414468081668019,0.39335774071514606,0.8908156123943627,-0.651548832654953,0.21479975804686546,-0.6421559117734432,0.01622730027884245,-0.852556963916868,0.7685901625081897,-0.567057722248137,-0.4359279228374362,0.6085780668072402,-0.04196527088060975,-0.5925616221502423,-0.540559496730566,-0.9738330482505262,0.14459298038855195,0.11540211969986558,-0.16292982082813978,0.5844439901411533,-0.6813918957486749,0.8573481189087033,0.4136526524089277,0.8933494878001511,-0.3377970033325255,-0.6341560459695756,0.3561625061556697,0.6500900303944945,0.6818723143078387,-0.09403093485161662,-0.3356155212968588,-0.5126289194449782,-0.4412817400880158,0.6001921161077917,-0.6472424808889627,-0.33081393921747804,0.303592836484313,0.9730770303867757,-0.9231379702687263,0.8065438438206911,-0.5202701571397483,-0.45722274063155055,0.15241410583257675,-0.6982468231581151,0.25382558768615127,-0.7806878229603171,0.10375387268140912,0.5335748875513673,-0.3218792136758566,-0.0366045986302197,0.08892978448420763,0.6515145129524171,-0.10320014134049416,0.4549315571784973,-0.7596981762908399,-0.01385632436722517,-0.9303937489166856,0.9694821601733565,0.3757865740917623,-0.2085982975549996,0.11334517924115062,0.4201525282114744,0.5344274896197021,-0.5277398047037423,-0.34426444536074996,-0.3270705221220851,0.10872995853424072,0.6820705556310713,-0.2606020080856979,-0.5988823072984815,0.023528655990958214,0.4116886630654335,0.07591371610760689,0.09846332063898444,0.756846615113318,0.3314472893252969,-0.41300775203853846,0.5170669574290514,-0.7643214073032141,0.9711272972635925,-0.34632690669968724,-0.24198616528883576,0.1323167346417904,0.2634730846621096,-0.8789835786446929,0.09791751392185688,0.6187830180861056,-0.19873518170788884,-0.07435177406296134,-0.7103580068796873,-0.7924078637734056,0.8319295709952712,0.45980261638760567,0.9991340553388,-0.8460409748367965,-0.5178332608193159,-0.8837466980330646,-0.04455402446910739,-0.7800488770008087,0.7287984602153301,0.4032694175839424,0.8620877373032272,-0.5069611016660929,-0.3793150666169822,0.5089563387446105,0.012427334673702717,-0.1646174332126975,0.6976647321134806,0.7131478516384959,0.9466629130765796,0.7999964850023389,0.43925977498292923,-0.0758296549320221,0.2531361384317279,0.09776301914826035,0.44253926258534193,-0.2209411165677011,-0.5296987816691399,0.7806430291384459,-0.7639483190141618,-0.2484134379774332,0.21258188970386982,-0.12149265455082059,-0.9136958410963416,-0.27783953165635467,0.04937897343188524,0.35884293308481574,0.23171938490122557,-0.33827788196504116,0.7668353347107768,-0.6722393687814474,-0.9895686679519713,0.4146495033055544,-0.964903290849179,-0.20771959610283375,-0.8182751294225454,-0.8149664332158864,0.3387220283038914,-0.42359026707708836,0.2638861439190805,-0.6670765434391797,-0.5658113127574325,0.29596962546929717,0.23230853863060474,-0.8896940350532532,0.6748908683657646,-0.279877963475883,0.2746489401906729,-0.7253935015760362,-0.709861742798239,-0.4341646949760616,-0.16987928142771125,0.8978914967738092,0.05683961184695363,-0.16428483510389924,0.464679351542145,-0.8052429012022913,-0.3876732108183205,-0.42342017823830247,-0.9579933076165617,0.7553274286910892,-0.32218491984531283,-0.8877183492295444,-0.009298133198171854,-0.6476851510815322,0.8218355388380587,0.15133892884477973,-0.6137422067113221,0.125547606498003,-0.9351435210555792,-0.4761974778957665,0.6513417465612292,-0.6435781237669289,-0.49473256478086114,-0.46635768469423056,0.2627548351883888,-0.5884085334837437,0.8591136140748858,-0.26996100042015314,0.48173347022384405,-0.46053518913686275,0.8757684109732509,0.5224155713804066,-0.06266557658091187,0.8624326549470425,0.637109590228647,-0.25763446744531393,-0.29659348586574197,0.8050708347000182,-0.39097281778231263,-0.7919738497585058,-0.9376896391622722,-0.8276718216948211,-0.1385497278533876,0.8796438151039183,-0.39087536465376616,0.2397522865794599,0.2228283043950796,-0.8131762221455574,-0.9331551929935813,0.15383509639650583,-0.27151533169671893,-0.016829246189445257,-0.5802191402763128,-0.3864316903054714,0.8021117290481925,0.7602834864519536,0.7712010322138667,0.5753713864833117,0.19806529162451625,0.5615355693735182,-0.5564446086063981,-0.8267763373441994,-0.6677664467133582,0.5095305293798447,0.44971106480807066,-0.6769719393923879,-0.801278458442539,-0.7084066895768046,0.09884029207751155,-0.23467184090986848,0.6611710637807846,0.8313384521752596,0.6621254333294928,-0.7386783584952354,-0.2101798285730183,-0.9889673930592835,0.7047621496021748,-0.5151406587101519,-0.9796991548500955,-0.9561888445168734,0.17157554300501943,0.025647324044257402,-0.5261671040207148,0.10911641968414187,-0.6694564111530781,0.6675901738926768,-0.245049596298486,0.3595212218351662,-0.07460411172360182,-0.42432802449911833,0.5873941984027624,0.32610885240137577,0.07737903436645865,-0.023016754537820816,-0.2541729868389666,0.6242550006136298,-0.6562951384112239,-0.05563074443489313,-0.894080420024693,0.2779007381759584,-0.23118645790964365,-0.36136196507140994,0.5062890853732824,-0.15461375890299678,-0.05763757834210992,-0.3835225384682417,-0.09719098079949617,-0.05736730480566621,0.5661045229062438,0.36235237726941705,0.967004117090255,0.12404766445979476,0.4747749497182667,0.07509737927466631,-0.77540248259902,0.11623198352754116,0.9850283623673022,-0.9791072565130889,0.9404510608874261,-0.9054711661301553,0.8170529510825872,0.26487158332020044,-0.8416058947332203,-0.4908707798458636,-0.7435415736399591,0.7605452495627105,-0.8095615468919277,0.6636683475226164,0.7930020890198648,0.7486334857530892,0.15788659127429128,0.5500126602128148,0.8245167774148285,-0.1523618996143341,0.02703523449599743,0.8636299180798233,-0.20014137169346213,0.5479954569600523,-0.9802711065858603,-0.16623578360304236,0.9047488300129771,-0.03370056254789233,0.2886769762262702,0.9373040152713656,0.3851970750838518,0.8321309965103865,0.6412362325936556,0.8750355071388185,-0.44761000061407685,0.8548701955005527,-0.867118916939944,0.12052236078307033,0.7822043388150632,-0.10160494828596711,0.9147546882741153,0.1280055334791541,0.40091484412550926,-0.002162397839128971,-0.4303237870335579,-0.447203416377306,0.9942300827242434,0.9552959520369768,-0.4910484729334712,0.626069727819413,-0.9402692974545062,-0.5940110846422613,0.5253368481062353,-0.4266641391441226,0.3408901682123542,-0.5522338328883052,0.802306619938463,-0.6745259738527238,-0.04431526781991124,0.8732591024599969,-0.8984738728031516,0.10185889340937138,-0.9710171790793538,-0.3009254867210984,0.031253775116056204,-0.18715285789221525,-0.646179283503443,-0.707687312271446,0.213179228361696,-0.6878691343590617,0.2615318223834038,0.026015027426183224,-0.9492315361276269,0.9926366596482694,0.9523095358163118,-0.6921477946452796,0.673412031494081,-0.9490151791833341,0.8682960881851614,-0.42432826943695545,0.4764247229322791,0.14272430632263422,0.8895775498822331,-0.9254686557687819,0.721916071139276,-0.6038781958632171,0.5450126281939447,0.7390242530964315,-0.7277416819706559,-0.6465404191985726,0.972959244158119,0.6219583554193377,-0.5400632526725531,0.9795734737999737,0.7401772774755955,0.4906700258143246,0.9130764142610133,-0.4470301680266857,-0.1036337953992188,-0.8298631426878273,-0.8999881106428802,0.8626574780791998,0.02483414253219962,-0.3550441702827811,0.977122260723263,-0.42182087525725365,0.7960184556432068,0.05498382030054927,0.8887995518743992,0.8104676990769804,0.7141393134370446,0.5047590993344784,-0.5281319944187999,-0.49968268629163504,0.023371574003249407,0.49640257423743606,-0.7108410974033177,0.9949219576083124,-0.04154049605131149,-0.0204147738404572,0.6942948917858303,0.6731623089872301,-0.9154218290932477,-0.6839780560694635,-0.3186647957190871,0.5456852745264769,0.3443548106588423,-0.754702037665993,-0.9160165758803487,0.7228239616379142,0.7918544127605855,-0.6360019245184958,-0.2153097535483539,0.3303890246897936,0.8813275587745011,0.9025303483940661,0.6199275944381952,-0.9383574686944485,0.8010802031494677,-0.31070317095145583,0.18825042620301247,0.43713793251663446,-0.8373594651930034,-0.024344839621335268,0.47170184226706624,0.6861180546693504,0.016055723652243614,0.015233071520924568,-0.028010066598653793,0.6099903015419841,0.22276421263813972,-0.11064031068235636,-0.46959181874990463,0.031081485096365213,-0.88214256381616,-0.3136138217523694,-0.6505903638899326,0.3544926345348358,-0.27459072414785624,0.7187274512834847,0.26153810461983085,-0.8507007374428213,-0.013874899130314589,-0.5076684853993356,0.42251954646781087,-0.3493211450986564,0.9435748476535082,0.16131506767123938,0.6263358625583351,0.6139972708187997,-0.6974767581559718,-0.5503948228433728,0.5221406184136868,-0.9362314054742455,-0.9446997479535639,-0.67628463357687,-0.6837481106631458,0.33087017899379134,-0.4724346729926765,0.48585917660966516,0.09003365691751242,0.28589249355718493,0.31814365088939667,-0.1913033896125853,-0.8685587416402996,0.936624264344573,-0.412350210826844,-0.1646612538024783,-0.2306018602102995,-0.7379920617677271,-0.9903027093969285,-0.6307908287271857,0.3230587434954941,-0.9853749540634453,-0.015360420569777489,-0.43833631137385964,0.7419003960676491,-0.4707338875159621,0.4357058983296156,-0.964662675280124,0.5052150250412524,-0.2627461454831064,0.05043818848207593,-0.9150770250707865,0.45740754064172506,0.24940281733870506,0.13049200968816876,0.16453551640734076,0.6585782682523131,-0.1894063730724156,-0.7245407979935408,-0.22676051827147603,-0.36352957505732775,-0.9587235916405916,-0.6608689189888537,0.6687000780366361,-0.2247073519974947,-0.8873328492045403,0.9431743263266981,0.04174517933279276,-0.6172976526431739,-0.8414734182879329,0.7588758850470185,-0.14131690422073007,-0.14125100476667285,0.39444561768323183,0.06932647386565804,-0.6553780231624842,-0.5251840874552727,-0.28365667816251516,-0.4339437480084598,0.9308984437957406,-0.7835874939337373,0.8730847160331905,-0.3798325373791158,0.09161141980439425,0.7605049717240036,0.750872990116477,-0.2567474455572665,-0.8286263383924961,-0.1922339121811092,0.9211446954868734,0.056805714033544064,0.03291861480101943,-0.44689418422058225,0.26892685890197754,0.32187032559886575,0.03860155958682299,0.2902995874173939,-0.21564633725211024,0.28442112589254975,0.9864666229113936,0.5331013244576752,-0.7885618284344673,-0.5248880251310766,0.18183367792516947,-0.05448812199756503,0.37808650080114603,-0.4678163924254477,0.7323645032010972,-0.8986746063455939,0.5235287006944418,-0.3125711400061846,-0.7786299586296082,0.8552818358875811,0.704092291649431,0.7634435906074941,0.7393027055077255,-0.6745273717679083,0.12397399544715881,0.24737716186791658,-0.549623319413513,0.46588724572211504,0.9066077172756195,-0.927772069349885,0.6501028621569276,-0.19657957088202238,0.999705025460571,-0.13963615288957953,-0.9438565196469426,0.577436595223844,0.43797818291932344,0.10904709715396166,0.5608814498409629,0.23687520064413548,0.9885793635621667,-0.09106157999485731,0.6712016533128917,0.9059447478502989,0.45473912032321095,-0.5418314314447343,0.6873576110228896,0.0610118480399251,-0.02546035125851631,-0.11914644064381719,-0.6011001970618963,-0.6622456414625049,-0.6274958304129541,-0.7904188157990575,0.9259329219348729,-0.9351363708265126,0.42226367024704814,-0.2049819272942841,-0.37221521232277155,-0.9681798601523042,0.61339325690642,-0.16726160002872348,-0.33811650006100535,-0.9701001178473234,-0.8376318626105785,-0.6992192058824003,0.10577931860461831,0.4694214458577335,0.5479364818893373,-0.10741434805095196,0.04343305807560682,0.6040732436813414,0.32691543735563755,-0.08653410617262125,0.948207906447351,0.03014748217537999,-0.5954757747240365,0.011418430600315332,-0.7523258505389094,0.6888993778266013,0.9862868902273476,-0.5766820125281811,0.9213360315188766,0.9621748453937471,0.6416759872809052,-0.18662903225049376,-0.36803123774006963,0.32350736344233155,0.7621670891530812,0.7538815387524664,-0.9075945159420371,-0.20583913940936327,0.03526807390153408,0.7854641093872488,-0.4797609760425985,0.2365965279750526,-0.13886171486228704,0.7194147254340351,0.8895312938839197,-0.7364558838307858,-0.46319211926311255,-0.20607444737106562,0.8418897963128984,-0.19365907832980156,0.6000192570500076,0.5454494953155518,-0.28870943607762456,0.6844605603255332,-0.476154878269881,-0.39636403834447265,0.8971822462044656,0.04243098432198167,0.21588607039302588,0.6718438286334276,0.21565822884440422,-0.48477414390072227,-0.7558180899359286,-0.7490317258052528,-0.04145032353699207,0.7281731478869915,-0.27320293011143804,-0.16536580212414265,-0.9190046577714384,0.7140166168101132,-0.49517202842980623,0.6711913868784904,-0.5639617489650846,-0.46851749531924725,0.992338745854795,-0.34680307609960437,-0.6505527053959668,-0.5358486138284206,-0.11972441151738167,0.9158181608654559,-0.1532163550145924,0.031920130364596844,0.2231424325145781,-0.47623364022001624,-0.7750549637712538,-0.7162140561267734,-0.464719501323998,-0.5725327893160284,0.3385814782232046,-0.4831615309230983,-0.10449645016342402,0.7853322266601026,0.16994382301345468,0.2566480962559581,-0.31052406039088964,0.5392099376767874,0.5222251694649458,-0.11593541176989675,0.9174739383161068,0.8614003886468709,-0.8211467289365828,-0.7517765248194337,0.41274949675425887,-0.9252515463158488,-0.4783187424764037,0.3955759829841554,0.8994327452965081,0.5260703940875828,0.5981107135303319,-0.37840049294754863,-0.9250496532768011,0.07326632924377918,0.8924070233479142,-0.8884520726278424,-0.8706612791866064,0.2937875408679247,-0.7299344595521688,-0.5240843435749412,0.9940622304566205,0.1919471430592239,0.2655810033902526,-0.4593811221420765,-0.11199566116556525,-0.3255687481723726,-0.8994092410430312,-0.8517130706459284,-0.3641835520975292,-0.9673970146104693,-0.348967878613621,0.32531942101195455,-0.828921917360276,-0.4625146333128214,0.2729884022846818,0.2894121902063489,-0.6500690365210176,0.19157696841284633,0.06120771309360862,-0.4085026108659804,0.23130183387547731,0.8221219559200108,-0.22523616068065166,-0.3664708388969302,-0.725381841417402,0.834477118216455,-0.9804192599840462,0.053074612747877836,-0.9512494220398366,-0.8997922195121646,0.7928287419490516,0.638450541999191,0.6366643416695297,-0.17733665090054274,-0.6389401820488274,0.7455897727049887,-0.6191781368106604,0.8843750194646418,0.7508367584086955,-0.986274310387671,0.9285447574220598,0.473764939699322,-0.34317854372784495,-0.9938760539516807,0.3166413982398808,0.6088625420816243,0.8135274164378643,0.4651408954523504,-0.8466079928912222,-0.2313516242429614,0.7552890758961439,-0.5395322232507169,0.7233871254138649,-0.66268206294626,0.3736424264498055,0.685341069009155,-0.16263023437932134,-0.9654396646656096,-0.5419378317892551,0.354190357029438,0.8587004947476089,0.756512101739645,-0.194512652233243,0.017603443935513496,0.9116122270934284,-0.4663776224479079,-0.6899633281864226,-0.16931798495352268,0.41694195521995425,0.9864779356867075,0.8259948696941137,0.9775530556216836,0.8300974895246327,0.4293281929567456,0.7322285007685423,0.4773525232449174,-0.842247455380857,0.06295519787818193,-0.04251559637486935,-0.33888798439875245,0.6636489913798869,0.10537634417414665,0.18659678474068642,-0.13123151473701,0.8391371630132198,0.6888326932676136,-0.7388941827230155,-0.4372972804121673,-0.5847599916160107,-0.32607086887583137,-0.3622740753926337,-0.0519801015034318,-0.24501256830990314,0.6476682522334158,-0.9548791800625622,0.8230814645066857,-0.32324096839874983,0.699377229437232,-0.8802907052449882,-0.3293175478465855,0.1960306498222053,0.14421791536733508,0.4885354684665799,0.045884789898991585,0.5007308567874134,0.5798525144346058,0.1693411497399211,-0.909536016639322,0.5745745119638741,0.2915492854081094,0.4543011956848204,0.5139118060469627,0.49808754259720445,-0.09237757325172424,-0.37527292454615235,-0.09314670274034142,0.11723012290894985,-0.591729633975774,-0.46689083566889167,-0.4303151578642428,0.23620147118344903,0.9128367668017745,0.9411504613235593,-0.8200986492447555,-0.7363798962906003,0.39758008252829313,0.9016138021834195,-0.5429110326804221,0.20356704574078321,-0.760270407423377,-0.2232396686449647,-0.17571260686963797,0.04090734524652362,0.6527782930061221,0.4303934774361551,-0.10043947957456112,0.6837865323759615,0.5267313863150775,0.7955268365330994,-0.01868592668324709,0.83232661196962,0.7282397630624473,0.9898796663619578,-0.06512414058670402,-0.6438656253740191,0.47551045473665,-0.9040882466360927,0.3973226957023144,0.6954824323765934,0.6648934176191688,-0.5861813803203404,-0.28531576273962855,0.8458043299615383,0.987183092162013,0.3185135368257761,0.08088402589783072,0.2374099143780768,-0.06502957502380013,-0.5434811753220856,0.805419500451535,-0.3767933468334377,-0.4558343323878944,-0.35527912247925997,0.8940345011651516,0.013188410550355911,0.8276724023744464,0.7079311506822705,0.39595877192914486,-0.41895750211551785,-0.5404080832377076,0.13519960921257734,-0.6465592733584344,0.012459963094443083,-0.3511530691757798,0.48779373429715633,0.8065640442073345,-0.5207160823047161,0.9137306357733905,0.49110482539981604,0.7298270985484123,-0.2676056404598057,0.13347699120640755,0.039122856222093105,-0.22185759292915463,-0.5202326723374426,0.6931665758602321,0.4927062070928514,0.7367136878892779,-0.8590144943445921,0.09003320802003145,0.31771312840282917,-0.1767526906915009,0.3505570641718805,-0.25539565458893776,0.5813282798044384,0.5608396553434432,0.8972869743593037,0.9121995433233678,-0.4503074227832258,-0.46976550482213497,-0.4348320853896439,-0.869616852607578,0.9523904635570943,-0.8142134961672127,0.7673493684269488,-0.563471732661128,-0.8333396236412227,0.3860566667281091,0.7889800006523728,-0.3030676101334393,-0.6926536308601499,-0.5297428611665964,-0.4350586016662419,0.26838164683431387,0.5874857916496694,-0.2492515007033944,-0.10655122622847557,0.444144070148468,0.5592314582318068,0.7373729022219777,0.952934178058058,-0.27947488613426685,-0.3466743021272123,0.24699690658599138,0.4419964151456952,0.741343317553401,-0.5013805758208036,0.06804039375856519,0.05778950173407793,0.6230834536254406,0.6065108091570437,-0.04549385467544198,-0.18526987731456757,0.7163084852509201,-0.9245948353782296,0.6283738599158823,0.005951411090791225,0.0373085280880332,-0.9969942253082991,0.35839560674503446,-0.8705910299904644,0.24721680954098701,-0.7986964294686913,-0.6035880977287889,0.45556835690513253,-0.2126781134866178,0.42821330996230245,0.6748692304827273,-0.4975328645668924,0.45223446004092693,0.4268708932213485,-0.21138763520866632,-0.4999697902239859,0.36341532738879323,0.6409978778101504,-0.8638892350718379,0.5108914538286626,0.3981436653994024,-0.3785454286262393,-0.5989382965490222,0.35385074419900775,-0.688815105240792,-0.5796197433955967,0.717133482452482,0.8193076811730862,0.17062813229858875,-0.7303914134390652,0.19551081582903862,-0.6042680237442255,0.39553146390244365,-0.6876904284581542,-0.4145261775702238,0.6218061870895326,0.4897708888165653,0.6512092752382159,0.7832659683190286,-0.3814371977932751,-0.1362302233465016,0.8286568317562342,-0.15673816297203302,0.8797655012458563,0.19756547128781676,-0.82412384217605,-0.2660948196426034,0.21397337596863508,0.4232864356599748,-0.09068029187619686,0.9933459479361773,0.8797079273499548,0.20815028995275497,-0.4684710940346122,0.7064729686826468,-0.6044562608003616,-0.3150523975491524,0.8574088849127293,-0.8374370685778558,0.5978364991024137,-0.24552066391333938,0.31972958892583847,-0.6699114507064223,0.5666233231313527,-0.5762384473346174,-0.23091967776417732,0.6757602575235069,0.7770436950959265,0.250407706014812,-0.911327286157757,0.9659300181083381,0.09997977316379547,0.4195556156337261,-0.46012213500216603,-0.34936285577714443,-0.3380259829573333,-0.47546922136098146,-0.5283801853656769,-0.8211109954863787,0.19979395298287272,0.7824428286403418,-0.5451585482805967,-0.08794961217790842,0.5057302098721266,-0.45382614247500896,-0.13738428195938468,-0.8389231362380087,0.25111923553049564,-0.7500388049520552,0.0896416287869215,0.19601574027910829,0.4328922340646386,0.2986915488727391,0.4553552675060928,-0.5751023665070534,-0.4324353765696287,0.39419373916462064,0.6796459374018013,0.4645993560552597,0.3421898349188268,-0.4367342619225383,-0.9707661252468824,-0.5931137283332646,0.2772374851629138,0.3576947473920882,0.32756267581135035,-0.4837990584783256,0.613460642285645,-0.017959297634661198,-0.061722122598439455,-0.3927477062679827,0.7626355774700642,-0.9839711007662117,-0.4511463758535683,-0.5677780820988119,0.7782698152586818,-0.2821206049993634,0.836831915192306,0.9359152149409056,0.5078234081156552,-0.8583739795722067,0.7665949864313006,0.2416499201208353,-0.6834241938777268,0.9390131323598325,-0.5276588462293148,0.3351225946098566,-0.8811578121967614,-0.24756486807018518,0.49203567765653133,-0.8559598186984658,-0.17667026119306684,-0.3637202545069158,0.30884850630536675,-0.05872846348211169,-0.9538869075477123,0.6359689021483064,-0.817234069108963,0.19710328476503491,-0.2615051958709955,0.152859331574291,0.6459114332683384,0.3279272927902639,-0.9676651912741363,-0.29667918058112264,-0.056023222859948874,-0.8706647334620357,0.28577984403818846,0.0919057484716177,-0.36745432764291763,0.47617007326334715,-0.9162563579156995,0.7691612262278795,0.9810337433591485,0.4256398417055607,0.3411338496953249,-0.9853797336108983,-0.7043716064654291,-0.9566900562494993,-0.801504157949239,-0.21781539125368,0.38393934490159154,-0.9955932539887726,0.27860403759405017,0.22632875060662627,-0.9222248429432511,-0.47844107635319233,0.19442527368664742,0.18894239887595177,-0.5944546717219055,-0.853351419325918,-0.19259301386773586,0.03151989681646228,-0.18883950961753726,0.44407457020133734,-0.2917908229865134,0.3689262610860169,-0.3140065213665366,-0.644776071421802,-0.5585473100654781,0.03874429874122143,0.25904358364641666,0.9773129620589316,-0.8859073594212532,0.7714630123227835,-0.4561337009072304,0.2734162602573633,0.9872242314741015,0.20304308412596583,-0.27545158425346017,0.6454970710910857,0.4119940302334726,0.5799133428372443,-0.4694939460605383,-0.8458332414738834,0.7500277603976429,-0.9826730941422284,-0.6761862235143781,0.3010827675461769,-0.5292922672815621,0.5698586544021964,-0.3924962328746915,0.08154644770547748,-0.39915779838338494,-0.7436941480264068,-0.8722175513394177,0.4907478210516274,0.9040914620272815,0.9967958186753094,0.6651658052578568,0.3572200955823064,-0.20121080242097378,-0.8652161043137312,-0.25013274466618896,-0.9208394535817206,0.7292356756515801,-0.384374113753438,0.5371400387957692,0.9536345768719912,0.36359775299206376,-0.45584136340767145,0.2870126976631582,0.3304866966791451,-0.92147535411641,0.9201408135704696,-0.3332909378223121,-0.3902788585983217,0.5792472213506699,0.4303771867416799,0.37741990434005857,0.7688381625339389,0.2702792985364795,0.8569934130646288,0.7311806031502783,-0.886338644195348,-0.8435149523429573,-0.20144502306357026,-0.1155277956277132,0.16828940343111753,-0.1764605683274567,-0.2753654671832919,0.5224689883179963,0.06495621241629124,-0.6990140238776803,0.4147938755340874,-0.5811662715859711,0.29206181410700083,0.9536625505425036,0.7703671385534108,0.2178045054897666,0.478792158421129,0.4038260872475803,0.06506481440737844,-0.5918495394289494,-0.43327908776700497,-0.0680994694121182,-0.5943742622621357,-0.08250393997877836,0.7969408673234284,0.40551330940797925,0.6783233159221709,0.10498283989727497,0.756115151103586,-0.8837069268338382,0.14587142132222652,-0.7103762235492468,0.4205231014639139,-0.5418130089528859,-0.08841779129579663,-0.21350212069228292,-0.5692234933376312,0.68643809389323,0.5892400993034244,0.3556913435459137,0.802765806671232,0.7656534966081381,0.8885400919243693,0.8927245535887778,-0.9349686959758401,0.24294491671025753,-0.2549388990737498,-0.6952256648801267,0.7787131927907467,0.7587721208110452,0.2121819667518139,0.3718786705285311,-0.0024044145829975605,-0.8044417081400752,-0.3325857762247324,-0.7399733387865126,0.6088227648288012,0.8673279071226716,0.7739672805182636,0.05397728877142072,-0.6761059486307204,-0.4812102890573442,-0.9573189099319279,-0.21812125016003847,-0.035085913725197315,0.24324102280661464,-0.056734656915068626,-0.166006735060364,0.49109086859971285,0.5014978796243668,0.018444641958922148,-0.25786391412839293,0.38429830642417073,0.22686455864459276,0.14068015152588487,0.7979888734407723,0.018912323750555515,-0.02966037020087242,0.17458594404160976,0.7072549499571323,0.6413340573199093,0.3297472489066422,-0.6854652394540608,0.9014616194181144,-0.9787700385786593,-0.4457359383814037,-0.9691504873335361,0.36996663780882955,0.13225308200344443,-0.7271465375088155,-0.13663379708305,-0.3629600340500474,0.9741591298952699,0.3921314524486661,-0.13868663040921092,0.2963441307656467,0.2553390390239656,0.37109682988375425,-0.7061107470653951,0.8548217648640275,-0.36031334241852164,-0.5892380136065185,-0.023678224999457598,-0.3602388761937618,-0.5821566195227206,0.7246309998445213,-0.014415250159800053,0.47926659090444446,0.38659749599173665,0.968261890579015,0.2890395512804389,0.21947436593472958,0.49942850740626454,0.3152567124925554,-0.2524940758012235,-0.1654095915146172,0.8731062253937125,-0.7349785384722054,0.9504408612847328,-0.3659785185009241,-0.1264863288961351,0.1438135332427919,0.5217362744733691,-0.6652278760448098,-0.1615887889638543,-0.07453150302171707,0.49592135893180966,-0.8951224880293012,0.7777649536728859,0.5109837725758553,-0.36306455079466105,-0.9544142107479274,-0.6906933225691319,0.408625946380198,-0.6057289126329124,0.3651999644935131,0.08427404379472136,-0.38911999156698585,0.3379824389703572,0.2566397092305124,-0.8495990899391472,0.3646995332092047,-0.820427970495075,-0.5378342228941619,0.12568140914663672,-0.6717292545363307,0.6875120210461318,-0.5975081035867333,0.8345122365280986,-0.291787879075855,-0.7208548258058727,0.713775577954948,0.043436608742922544,0.5485161668621004,0.2572800610214472,-0.28729299269616604,0.7742999191395938,0.6066411132924259,-0.26263620564714074,-0.732769092079252,-0.39018709072843194,0.15842926176264882,0.6446988917887211,-0.04894487001001835,0.9834186788648367,0.0635952283628285,-0.017467695754021406,0.7132057375274599,0.059800115413963795,0.8035151353105903,-0.5458636418916285,0.349130448885262,-0.8635585042648017,0.4237037771381438,0.18047912046313286,-0.18329678243026137,0.5182621171697974,-0.40857526287436485,-0.9657306736335158,0.4002996487542987,0.6543997609987855,0.5224584871903062,0.24371473863720894,-0.19707438861951232,-0.1969777480699122,0.8066488751210272,-0.7162104560993612,-0.23028314439579844,0.275049006100744,0.2732125213369727,-0.9013910391367972,0.5031182933598757,0.13209544029086828,0.2826291574165225,0.4068302661180496,-0.3307223943993449,0.40293760877102613,0.22207906609401107,-0.4934224537573755,-0.661994154099375,0.25747055327519774,-0.8232932230457664,0.9848920959047973,0.4742701034992933,0.3558515780605376,0.19142958661541343,0.6616028547286987,-0.33930595638230443,-0.651517819147557,0.5991909932345152,-0.3166820229962468,0.5695156333968043,0.5921286498196423,0.1397288483567536,0.010566288139671087,0.6564677427522838,-0.33229847997426987,-0.04813859798014164,-0.36003154143691063,-0.5099467299878597,0.8353387475945055,0.34777914360165596,0.1355216670781374,0.12637753738090396,0.49274818459525704,-0.6289614425040781,-0.09212848916649818,0.2573807151056826,-0.6717720869928598,0.5467606768943369,-0.9937072200700641,0.6818950856104493,0.992966459132731,-0.2920229509472847,-0.4341392107307911,-0.1295438390225172,0.43998589739203453,-0.3100396851077676,0.9152283477596939,0.8900631736032665,-0.08314496465027332,-0.16102350782603025,-0.24600133718922734,0.7357414523139596,0.8435867610387504,-0.7155364030040801,-0.7667804909870028,0.6875806418247521,0.409102703910321,-0.359769097995013,0.3081759810447693,0.5415611043572426,-0.7286693728528917,-0.98110267566517,0.18477704795077443,-0.8987327916547656,-0.698436061386019,0.24416681239381433,0.7010057820007205,0.5744248633272946,0.5710323546081781,0.31863545300439,-0.46016204869374633,-0.5042367815040052,0.8090974907390773,0.7204068535938859,0.6156368753872812,-0.420559611171484,0.529666998423636,-0.3066688636317849,-0.43356857588514686,0.9170972588472068,0.7485548560507596,0.6482515223324299,-0.2566130575723946,0.5016404897905886,-0.5571940117515624,0.9700575722381473,-0.872703995089978,0.22757555032148957,-0.06457123020663857,0.16387240774929523,-0.322926111984998,-0.1587091968394816,0.6641669115051627,0.12829928938299417,-0.03129193093627691,0.9944476769305766,-0.5152312708087265,0.6233327630907297,-0.23821577243506908,-0.11392797995358706,0.23009234247729182,0.054300755728036165,0.9718119660392404,-0.9890735317021608,0.3336150888353586,-0.5712282140739262,0.5731448694132268,-0.25651997048407793,0.9619560712017119,0.21572378277778625,-0.35058140521869063,-0.3271273863501847,0.2343610292300582,0.8713348349556327,0.7762206229381263,-0.6648232061415911,-0.260109256953001,0.639902918599546,-0.8072889898903668,0.44986904924735427,-0.16885837260633707,-0.8319676415994763,0.4788566711358726,0.3026453945785761,0.35225491505116224,-0.5356541099026799,0.846127170138061,0.43055862886831164,-0.8714648201130331,0.6943044774234295,-0.21537415450438857,-0.6655318383127451,-0.5933945197612047,-0.6139313671737909,-0.9990284210070968,0.7602260569110513,-0.30175702553242445,0.717224043328315,-0.30022888584062457,-0.8161542327143252,-0.9087523906491697,-0.9722832897678018,-0.809950552880764,-0.5012185238301754,-0.3697174000553787,-0.8889781725592911,0.9783045980148017,0.713459325954318,0.08667945256456733,0.28869097027927637,0.1327647496946156,0.10930420458316803,-0.10879361070692539,0.2136901505291462,-0.8878176338039339,0.7588461744599044,0.8327342630364001,-0.070853550452739,0.9953496330417693,0.11060298373922706,0.18107022484764457,0.2596188709139824,0.8789231972768903,0.5697197113186121,0.20945356087759137,-0.08059589844197035,-0.8711673356592655,-0.553743599448353,0.38320660311728716,-0.6975675206631422,-0.9189467807300389,-0.9648031638935208,-0.2668372830376029,0.48859850130975246,-0.8007399663329124,0.18108292063698173,-0.4537625662051141,0.8767962050624192,0.670274006202817,0.50673126289621,-0.0529871447943151,0.3580002714879811,-0.8070009611546993,0.07119846763089299,0.30277709010988474,-0.5494519923813641,-0.038926209323108196,0.07624808745458722,0.27437506755813956,0.8898515612818301,-0.4723098403774202,-0.3682216424494982,0.24563789321109653,-0.4999723038636148,0.3735857419669628,0.36397291254252195,0.885797880589962,0.23504759324714541,0.20630608825013041,-0.31611119164153934,-0.9188958071172237,-0.33190626418218017,0.28951410623267293,0.38874019822105765,0.762381084728986,0.4247105768881738,-0.6253771744668484,-0.03253269474953413,-0.03073940286412835,0.8765291599556804,-0.9381267605349422,0.42574674310162663,0.49708779202774167,-0.9957141382619739,-0.3044799664057791,-0.23976992769166827,-0.7829014477320015,-0.6197978807613254,-0.17573384195566177,0.11304689245298505,-0.7107399022206664,-0.8844256522133946,-0.8888373761437833,0.17605104064568877,-0.7875150111503899,0.8105717515572906,0.43944218661636114,0.05164923658594489,0.419986576307565,-0.9920063400641084,-0.5139000941999257,0.9022584338672459,-0.5783884399570525,0.4873968600295484,0.377381001599133,-0.597306018229574,-0.527017337270081,-0.5584694733843207,0.8220353024080396,-0.3461039559915662,-0.34614650439471006,-0.47555268788710237,0.20835772203281522,0.11769490549340844,-0.03471347875893116,-0.5786632797680795,0.29980091005563736,0.8585404152981937,0.15198941761627793,0.4873779444023967,-0.28440474160015583,-0.47691860934719443,0.8800535998307168,0.15901899291202426,-0.7729094671085477,-0.599369709379971,-0.8203031457960606,0.3743850849568844,-0.950768826995045,0.38336586905643344,-0.4874875796958804,0.8192200036719441,-0.5864742789417505,-0.41709988424554467,0.2713118130341172,0.3631663559935987,-0.2275085374712944,0.2833671481348574,-0.5777019588276744,0.12806350318714976,-0.11590451840311289,-0.623480498790741,-0.18783490592613816,-0.26744820224121213,0.040345403365790844,-0.586282464209944,0.9144601025618613,0.030984052922576666,0.7948164073750377,0.038116167299449444,-0.5606709099374712,-0.45878063468262553,0.6023664460517466,0.8462995975278318,0.5497498731128871,-0.011055329348891973,0.6195748983882368,-0.7916300687938929,-0.484826962929219,0.2086093076504767,0.47669647773727775,-0.1330583542585373,0.49577547470107675,0.8979438114911318,-0.9632058762945235,-0.06191150704398751,-0.01401958940550685,0.8093402511440217,0.9263726868666708,0.6270147659815848,-0.6670731296762824,-0.42719857953488827,-0.15962299471721053,-0.2428112835623324,0.6254061092622578,-0.4211124856956303,0.5653709638863802,0.4515513777732849,-0.7862557950429618,-0.677916849963367,-0.6428498425520957,-0.5230375598184764,-0.277243385091424,-0.3168895863927901,-0.5382881327532232,-0.6942657860927284,-0.6694311052560806,-0.747690177988261,0.2103258171118796,0.1950691780075431,-0.9253094387240708,0.5087908860296011,-0.8968027816154063,-0.7874531289562583,-0.8870493578724563,-0.7306628241203725,-0.6482566259801388,0.6913663712330163,0.3427690202370286,-0.26107462029904127,-0.12488154228776693,-0.5006980407051742,0.23885816521942616,-0.5759922293946147,0.8608767916448414,-0.2232171050272882,0.8897918513976038,0.9840219169855118,0.9234635983593762,0.6849054228514433,-0.6638699620962143,0.349662555847317,-0.42312940629199147,0.9275888870470226,-0.8157390621490777,0.544639787171036,-0.9829625301063061,0.4821236580610275,0.9116246094927192,0.636218398809433,0.7056773672811687,-0.9976504151709378,0.47943245293572545,-0.23806368606165051,-0.32882605167105794,-0.8710258211940527,-0.7121826377697289,0.688641123007983,-0.5712386374361813,0.8260548179969192,0.6171550923027098,-0.6504364493303001,0.20099282870069146,0.6400474491529167,-0.0905507393181324,0.5516677373088896,-0.9881904940120876,0.1491862963885069,0.5073441178537905,-0.6347276070155203,0.7319862148724496,-0.777670900337398,0.7903059674426913,-0.6699802400544286,-0.6295443791896105,-0.7883736216463149,-0.021588533651083708,0.6404869062826037,-0.6182419219985604,0.6137309079058468,-0.27741582319140434,-0.5323040219955146,-0.02421550964936614,0.3022656752727926,0.7752742315642536,-0.4053347809240222,0.8725238791666925,0.5592551743611693,-0.9730424112640321,0.16851757653057575,0.8631922043859959,0.4388019288890064,-0.7317468328401446,0.11816663853824139,0.5564619484357536,-0.8251261357218027,-0.4637822904624045,-0.7041857768781483,-0.9461925607174635,-0.0126403640024364,-0.8488790690898895,0.16113558830693364,-0.6898191068321466,-0.2287630862556398,-0.8456762311980128,0.7903724336065352,0.6859015836380422,-0.6694410745985806,0.9489596383646131,0.1764310202561319,-0.2939080186188221,0.3473868411965668,-0.09122583921998739,0.17939613293856382,0.10977463470771909,0.6686528045684099,-0.17357637081295252,0.47322802105918527,0.9570288546383381,0.4490576582029462,-0.9588374262675643,-0.25418855529278517,0.29699964402243495,-0.6185519504360855,-0.46170580200850964,0.35477324575185776,-0.5632894863374531,-0.005839070305228233,0.7960262801498175,0.8128750966861844,0.7267169831320643,-0.5240120920352638,-0.5089917401783168,0.008995973039418459,-0.633958179038018,0.758662621024996,0.9348287214525044,-0.7487505306489766,-0.8580210986547172,0.39362502470612526,-0.0029697008430957794,0.03779378952458501,0.5420808019116521,-0.8014712356962264,0.6412087823264301,-0.7187552428804338,-0.8316638427786529,0.10989977000281215,0.38087011873722076,-0.6343541061505675,0.23483339603990316,0.6982337539084256,0.14934496115893126,0.664568648673594,0.5115868300199509,-0.7955238311551511,0.1822997024282813,-0.1763397748582065,0.7783446498215199,0.4685619459487498,0.5371092543937266,-0.5609423774294555,-0.38404063787311316,-0.9259345177561045,0.8373427605256438,-0.862227647099644,-0.9879385973326862,0.5460478798486292,-0.9639172069728374,0.6030387980863452,-0.8855131226591766,0.8675514422357082,0.2996559292078018,0.032866685185581446,-0.9097024658694863,-0.8568854876793921,-0.06303297728300095,0.08950329758226871,0.6314613427966833,-0.08321447437629104,0.9531593890860677,-0.8395129078999162,-0.293552553281188,-0.42133607156574726,0.090995401609689,0.4617746681906283,0.5915749720297754,0.8685797671787441,-0.591973917093128,0.28826782992109656,-0.8634876599535346,0.3086889972910285,-0.991889335680753,-0.27879474917426705,-0.8772953758016229,0.45016645919531584,-0.3781801210716367,0.32137183006852865,-0.4293321813456714,-0.35307925334200263,-0.00377234211191535,0.5749566415324807,-0.9856449794024229,0.9025502125732601,-0.9723003469407558,-0.5290696294978261,-0.258580693975091,-0.010092848911881447,-0.3394271549768746,0.9538565892726183,-0.08190762624144554,-0.8062844080850482,-0.9006991130299866,0.4149363678880036,-0.16107274126261473,-0.3895876253955066,-0.7811803868971765,-0.7494642175734043,-0.5818493161350489,0.2719681281596422,0.8062727102078497,0.06835719989612699,0.17320095421746373,-0.9444588106125593,0.1514006219804287,-0.6068877871148288,-0.3527163313701749,0.8564663887955248,-0.2702864436432719,-0.130443612113595,-0.8883260888978839,0.40788729349151254,-0.11367531307041645,-0.013671844266355038,0.7970585613511503,0.9724728050641716,0.1818897812627256,0.0847589923068881,0.24706764426082373,-0.783603404648602,-0.5388575377874076,0.18595962831750512,-0.6391619802452624,-0.24305163277313113,0.05836681090295315,-0.8192399521358311,0.39222819823771715,-0.6676117046736181,-0.1551055978052318,0.7527851667255163,-0.15347035508602858,0.5458631697110832,0.016408195719122887,0.37103152787312865,-0.7761513022705913,-0.12148036574944854,-0.37060520239174366,0.2005465649999678,0.2106829509139061,-0.09927581157535315,0.034884114284068346,0.449789225589484,0.5119460131973028,0.08676751470193267,0.4499546652659774,-0.984266750048846,0.5307036666199565,-0.8438893933780491,-0.616578702814877,-0.17742704693228006,-0.5628093010745943,0.18312711408361793,-0.7570591317489743,-0.19985275622457266,0.9413407826796174,0.3963731713593006,0.14550708793103695,-0.49291670601814985,-0.12125730328261852,0.9531387696042657,0.42486786702647805,0.706286711152643,-0.4534149947576225,-0.954455473460257,0.4825643375515938,0.42598903411999345,0.8096063937991858,0.8733154549263418,0.7888173582032323,0.7299767318181694,0.15488412603735924,0.6737232860177755,-0.11154267424717546,0.7506712358444929,0.5317309107631445,-0.8257352886721492,0.19181332271546125,-0.7838202491402626,0.38063528668135405,-0.9575072689913213,0.3073271424509585,0.7280293656513095,-0.3229925218038261,-0.7916776556521654,-0.1939348429441452,0.9163330881856382,-0.9274373012594879,0.8842547191306949,0.8609768636524677,-0.7658316395245492,0.2769115795381367,0.11163469543680549,-0.5515662268735468,0.6067085508257151,0.2745101908221841,0.47904085041955113,0.7366542187519372,-0.5015784758143127,-0.7484030653722584,-0.3750980505719781,-0.1483963211067021,-0.24269435741007328,0.26522208331152797,0.8454558053053916,0.13424701942130923,0.6816312307491899,0.8725876021198928,0.7079558833502233,0.14597465796396136,-0.18878263467922807,0.692856578156352,0.935768193565309,0.8917791857384145,-0.7118714922107756,0.76567721972242,0.6152445403859019,-0.5897352038882673,-0.851093377918005,0.4174119494855404,-0.7448803042061627,0.04542429931461811,0.6923903459683061,-0.748438959941268,0.34248680947348475,0.24579816637560725,0.8607224361039698,0.09518381347879767,-0.5566686782985926,0.9012783761136234,-0.9748247927054763,-0.2491327286697924,-0.28428894421085715,0.19907075865194201,0.6896644434891641,0.7008275515399873,0.8486011032946408,-0.5142214503139257,-0.5216481797397137,0.7678891588002443,-0.9552655713632703,0.8547731302678585,-0.5530880801379681,-0.3499735197983682,-0.3172664656303823,0.25399755919352174,-0.133088662289083,0.04803452733904123,-0.31958426674827933,0.25975666707381606,0.29700420750305057,-0.9296949319541454,-0.806525016669184,0.22092418977990746,-0.18621303513646126,0.4407512666657567,0.12407160270959139,-0.13005204359069467,0.12483076006174088,-0.8549628690816462,0.9104468305595219,-0.03734749602153897,0.6115014869719744,-0.11917049065232277,-0.38774870801717043,0.5365790585055947,0.6355025661177933,-0.6666720900684595,0.4489040751941502,0.2822870360687375,0.3783670403063297,-0.6225713836029172,0.53596056625247,0.28825576324015856,0.8783741076476872,-0.42508270125836134,0.5835146894678473,0.5280595123767853,0.6451543276198208,0.5213443636894226,-0.5893702544271946,-0.5441162162460387,0.9362307251431048,-0.8461264944635332,-0.9823791990056634,-0.6835066126659513,-0.33763568801805377,0.941928206011653,0.15936487494036555,-0.020258095115423203,0.16944921156391501,-0.12699183635413647,-0.7434216658584774,-0.3626145455054939,0.5106428419239819,-0.14317220821976662,-0.004561256617307663,-0.5437155580148101,-0.6972787119448185,-0.06462776195257902,-0.4009259627200663,-0.46141918981447816,0.17386362422257662,0.39453096548095345,-0.925780319608748,0.8788120243698359,-0.48631740268319845,-0.18159298412501812,-0.042832392267882824,-0.4476379044353962,-0.13967920979484916,-0.8913087486289442,-0.09321971284225583,-0.18725812202319503,-0.592239635065198,0.5346500994637609,-0.5564450151287019,0.22168151382356882,0.8273116946220398,-0.21276332903653383,0.4887936362065375,0.9312968393787742,0.938466586638242,-0.06888207839801908,0.853403945453465,0.7741218842566013,-0.4302356066182256,0.7488001235760748,-0.6075153895653784,0.9972037309780717,-0.6938279597088695,-0.23265798343345523,0.6029474991373718,0.9487360580824316,0.27717232797294855,-0.9579455438069999,-0.6941692982800305,-0.7211873116903007,0.28321349527686834,-0.2825504723004997,-0.0047956244088709354,0.7674161670729518,-0.8091614791192114,0.5392443384043872,-0.16231163823977113,-0.47348053148016334,-0.3105067447759211,-0.7588495798408985,-0.3346227868460119,0.5091142198070884,-0.9055070597678423,-0.12636352889239788,-0.2881641676649451,-0.22994474275037646,-0.28589649964123964,-0.8864686470478773,-0.7641157535836101,0.7440064246766269,-0.6142038269899786,0.9670596406795084,0.8641491597518325,-0.8871233984827995,0.2499214862473309,-0.683720073197037,-0.022484320681542158,-0.0044405641965568066,-0.1204693098552525,-0.9254133868962526,0.6209737430326641,-0.9239000808447599,0.31071230536326766,0.9512241897173226,-0.24991437140852213,-0.4483926985412836,-0.6444360497407615,-0.8107868423685431,-0.8222228791564703,0.3688889811746776,-0.8728097956627607,0.38596197962760925,-0.9325347603298724,0.4676121147349477,0.5618425067514181,0.5693589551374316,-0.29007969656959176,0.008685462642461061,0.09168682480230927,-0.07263549324125051,0.661769240628928,0.01599867921322584,0.22725418722257018,-0.9904525796882808,0.39925215067341924,-0.5258012898266315,0.20663333777338266,0.5007749330252409,0.48249434819445014,-0.5062722628936172,0.4270957321859896,0.781546066980809,0.9165579113177955,0.8189100921154022,0.7046094848774374,0.43975391425192356,0.4674715925939381,0.1750877881422639,0.3669156953692436,0.058808977250009775,-0.22757818177342415,0.5102038094773889,-0.4139255057089031,0.5272173215635121,-0.24261180963367224,0.6892511961050332,0.1826864257454872,-0.8477454627864063,-0.25327337346971035,-0.00909445434808731,0.368145736400038,0.41886558709666133,0.6361845415085554,-0.24937466206029058,0.31116964807733893,-0.48119151685386896,0.2517259786836803,0.0061249141581356525,-0.5703665423206985,-0.33422136306762695,-0.508500809315592,0.6294661895371974,0.8327489560469985,-0.5565980914980173,0.2600781871005893,-0.5962755186483264,0.0821530413813889,0.037499787751585245,0.32130413921549916,-0.8739208723418415,0.12892815750092268,0.6417111926712096,0.5522105740383267,0.14686653390526772,0.6509521976113319,0.00282824644818902,0.4067172771319747,-0.6946951486170292,-0.6744410153478384,0.7387612406164408,-0.3856812925077975,0.49872777611017227,-0.1482169614173472,0.40673439623788,-0.7346999775618315,-0.7640404696576297,0.11252807546406984,0.7190690850839019,-0.49265599343925714,0.3670783890411258,-0.9377829972654581,0.5244648889638484,0.29120037937536836,-0.6610883250832558,-0.8705474818125367,-0.7418301478028297,-0.7360955160111189,0.025097704026848078,-0.14796954160556197,-0.2279435438103974,-0.6911913612857461,0.5177666968666017,-0.17057970212772489,0.9197302907705307,0.3894603457301855,0.3639034517109394,0.8110231896862388,-0.24208381725475192,0.9546198560856283,-0.36088349437341094,-0.10486605344340205,0.6729375896975398,-0.4413160514086485,-0.5654389834962785,-0.7578406981192529,-0.43689875351265073,0.4874336370266974,-0.03686767444014549,0.8767011482268572,0.9450792763382196,0.27975112991407514,-0.5216452456079423,0.4960176246240735,0.7227660687640309,-0.8671766645275056,-0.10770850582048297,-0.3808795646764338,0.013137885835021734,-0.6536887409165502,-0.40589278331026435,0.8859297502785921,0.5502424016594887,-0.07959898095577955,0.9865852328948677,0.27493408136069775,-0.7377643492072821,0.6594613720662892,-0.08770398842170835,0.1266072727739811,-0.48523599840700626,0.6766909016296268,-0.4875448336824775,-0.505708531010896,0.9953115498647094,-0.47932757809758186,-0.595916947349906,-0.06307282764464617,0.003606008365750313,0.605840289965272,0.6094566248357296,-0.006684719119220972,-0.16191932512447238,0.2808443382382393,0.8567409394308925,0.447637761477381,-0.19032140215858817,-0.2312628421932459,-0.6620469987392426,-0.5709500764496624,0.7736282027326524,-0.6312481882050633,-0.9883890715427697,0.2172452318482101,-0.5257716430351138,-0.6799947675317526,-0.9405136448331177,-0.8018452813848853,-0.389624516479671,0.28094641165807843,0.8135492508299649,0.9363599186763167,0.995936528313905,0.5083986823447049,0.226739305537194,-0.09302503755316138,0.9240695950575173,0.3194341850467026,0.15541079407557845,-0.6982064987532794,0.30344502395018935,-0.7704446720890701,0.03638091962784529,-0.7812855020165443,0.7264027358032763,0.7165060341358185,0.5167059497907758,-0.2448013867251575,0.6513938228599727,-0.24654343305155635,0.391533927526325,-0.09639151021838188,-0.4863175395876169,-0.5874457736499608,0.05022557685151696,-0.2886356841772795,0.17082350188866258,0.9695359980687499,0.5926619875244796,0.6899176887236536,-0.12726179044693708,-0.8888314375653863,-0.5150598674081266,0.24628108320757747,-0.22980710910633206,-0.7117149857804179,0.721855016425252,-0.0471716090105474,0.020519957412034273,0.47125490196049213,0.49507785262539983,0.23565702326595783,-0.046320587396621704,-0.7933395733125508,-0.676311515737325,-0.8898603590205312,-0.2096882127225399,0.8478911654092371,0.5670966035686433,-0.1952767283655703,0.4827256556600332,-0.49303310411050916,-0.3665154902264476,-0.06000452535226941,0.008796445559710264,-0.8396073249168694,-0.7916465103626251,0.25109734619036317,0.5372535516507924,0.1665586386807263,-0.8536035637371242,0.769816713873297,-0.43148961290717125,-0.9314229814335704,0.6195625094696879,-0.4116532620973885,0.924714682623744,-0.5082244477234781,-0.0019304007291793823,-0.11564613739028573,0.8943583401851356,0.9171917531639338,-0.006314697675406933,0.8679828122258186,0.8263593334704638,-0.3442698894068599,0.18949039094150066,0.41025936836376786,0.9948335173539817,-0.9657445754855871,-0.42909562308341265,-0.8664684845134616,-0.7815756858326495,0.9779460458084941,-0.9749501282349229,-0.4135534199886024,0.9324368927627802,0.5240744799375534,-0.38286956399679184,0.542491449508816,0.7768540685065091,-0.41612597834318876,-0.692621435970068,-0.7877537026070058,0.8015112210996449,0.7033273787237704,0.4880404816940427,0.9271532837301493,-0.8166795317083597,0.496362101752311,-0.37770306691527367,0.4383995081298053,-0.15013217693194747,-0.9187827515415847,0.3232655762694776,0.13617043429985642,-0.7852508826181293,0.8182761301286519,-0.6732894144952297,-0.9458213527686894,0.5014195428229868,-0.9878822839818895,0.1339674317277968,-0.7009750190190971,0.4750332245603204,0.22336687752977014,-0.26088336762040854,0.9943091259337962,0.03262618137523532,-0.2678155289031565,-0.24536725599318743,-0.09449876472353935,0.7788098393939435,-0.213082117959857,0.9371645646169782,0.9385568569414318,0.7888165446929634,0.4632762633264065,0.43669923581182957,0.9656700589694083,-0.40157797932624817,-0.2422899347729981,0.16556945070624352,0.12464980082586408,-0.12818626733496785,-0.38318497128784657,0.08395668026059866,0.08482777653262019,0.9812474991194904,-0.5599029469303787,-0.6137728369794786,-0.09173182817175984,-0.6073146481066942,0.5419845506548882,-0.21981519414111972,0.7770556737668812,-0.2579037956893444,-0.7952792122960091,-0.3731470531783998,-0.8693228447809815,0.9624658729881048,0.6992705445736647,0.6463672132231295,0.17930744169279933,0.6004217062145472,-0.5705417613498867,-0.2499482654966414,0.7146449433639646,0.9646790008991957,0.17313207918778062,0.8186404732987285,-0.2504887250252068,0.5561776729300618,-0.03537480905652046,-0.5124806049279869,-0.8185148029588163,-0.9342739968560636,-0.15014238888397813,0.27656110329553485,0.15937936352565885,0.11778344819322228,-0.2139349994249642,-0.23840031260624528,-0.7397597096860409,0.7553408653475344,0.47289044177159667,-0.4858999871648848,0.2936315075494349,0.3592648901976645,-0.2446745135821402,0.04695869656279683,-0.6376953558064997,0.632272039540112,0.5958623895421624,0.1285085123963654,-0.9699049014598131,0.26640918012708426,-0.5189859331585467,0.9021874330937862,0.23303403472527862,0.9754600808955729,0.06552577950060368,-0.5013427995145321,0.030260166618973017,-0.7100633489899337,-0.9932778915390372,0.8210643189959228,-0.13872209750115871,-0.8686533668078482,0.9677258539013565,-0.6914142309688032,0.8376346351578832,0.009981583803892136,0.3399057793430984,0.05515104020014405,0.453014949336648,0.1840309202671051,-0.8416355070658028,0.6417716322466731,0.23988586338236928,-0.2937302319332957,0.6470931116491556,-0.21912164241075516,-0.9918327988125384,-0.7283808952197433,-0.4280223520472646,0.5076060672290623,-0.5034936456941068,0.1664205132983625,0.6204325100407004,-0.3781516388989985,0.5495201963931322,-0.9279484781436622,0.6011523194611073,-0.5267111058346927,0.5392581061460078,-0.86630136705935,-0.17325732205063105,-0.9289102554321289,0.12663700245320797,-0.49039700627326965,-0.4626784138381481,0.2891643871553242,-0.43859595945104957,0.7940525361336768,0.08000799547880888,0.16235557850450277,-0.2674489370547235,-0.06500578019768,0.16547066066414118,-0.11120958533138037,-0.49520291248336434,0.35871543968096375,-0.838833712041378,-0.038601089268922806,0.3436591071076691,-0.36831008503213525,0.9991106353700161,0.30601962422952056,-0.64135174266994,0.5333425346761942,-0.22354377480223775,0.13194098556414247,-0.5337899527512491,-0.042834590654820204,0.9529096595942974,-0.44846629863604903,0.44651410868391395,0.030137036461383104,0.4667202513664961,-0.00018192175775766373,-0.4002256873063743,0.047518166713416576,-0.7435804144479334,0.2704764725640416,-0.418654206674546,-0.061591433361172676,-0.7632965706288815,0.5191376176662743,-0.36094469018280506,-0.08192287618294358,0.9976194831542671,0.9675507601350546,0.40929015865549445,0.6523644370026886,-0.8804005896672606,-0.6750422827899456,-0.8606601059436798,0.6448418446816504,0.05924810003489256,-0.9087195019237697,0.5732731786556542,-0.39167642453685403,-0.749355299398303,-0.38944470789283514,0.17744911089539528,-0.6070552244782448,0.810273477807641,0.2553495937027037,0.1732455538585782,0.04371037567034364,0.9852997190319002,0.933068631682545,-0.9667340880259871,-0.8073798553086817,0.05156777100637555,0.6620115227997303,0.9380635903216898,0.8199559217318892,0.6355868317186832,-0.30114802438765764,0.4135821172967553,-0.5125948870554566,0.4098979290574789,0.8863067454658449,-0.26863115187734365,-0.5250404514372349,0.193687345366925,-0.9334833491593599,0.6143143442459404,0.33175872918218374,-0.5528661166317761,0.19525235053151846,-0.6654243352822959,0.7108329045586288,0.108706200029701,0.4028552193194628,-0.1056524240411818,-0.7861458524130285,-0.20767249632626772,0.4195260056294501,0.31859422428533435,0.8424092745408416,0.4532546573318541,-0.32809750037267804,-0.24118020106106997,0.6585467611439526,-0.634510291274637,0.5457677249796689,0.7836581426672637,0.6820720094256103,-0.31468995986506343,0.9948868774808943,-0.9441343382932246,0.5137799470685422,-0.9339564596302807,-0.5303977206349373,-0.3224561307579279,0.48945140186697245,0.4422171483747661,-0.78538085706532,0.2885294263251126,-0.6514835539273918,-0.11677069356665015,0.04425965761765838,0.19176492281258106,-0.06396596506237984,0.6169881680980325,-0.9953782148659229,-0.36969897290691733,-0.23345107911154628,-0.26348793180659413,-0.9416410382837057,0.21402482828125358,0.2916015568189323,-0.8693969333544374,0.20589172886684537,0.09335127053782344,0.11156799923628569,0.21938819345086813,0.7490527047775686,-0.6373112378641963,-0.14633724326267838,0.7133353119716048,-0.8760344153270125,-0.33148443466052413,0.9209915678948164,-0.8461718014441431,0.6111041009426117,-0.12976164417341352,0.7983325240202248,0.7358773900195956,0.681649710983038,0.3300814302638173,-0.15196977369487286,0.3454860136844218,0.05982063803821802,0.424223477486521,0.20733970124274492,0.5188024644739926,0.6169940438121557,-0.3201357536017895,-0.2839775984175503,0.9057162734679878,0.5211814306676388,-0.7928387825377285,-0.3981417487375438,-0.05693999119102955,0.15492266369983554,-0.23909777216613293,-0.2469918066635728,-0.17160054529085755,-0.9193612905219197,0.4738362389616668,-0.9723502076230943,-0.8899820973165333,0.9210506877861917,-0.5893669044598937,-0.37995999958366156,-0.4654861125163734,-0.01835743384435773,-0.3982449215836823,0.0691900928504765,-0.31703163404017687,-0.4923545578494668,-0.8168240007944405,-0.4446128234267235,-0.24445901531726122,0.362700657453388,-0.41183113493025303,0.9019381729885936,0.8410514919087291,0.1494028647430241,-0.7678282596170902,-0.6291464725509286,0.6846010014414787,0.2537224143743515,0.3066342673264444,-0.24235170986503363,-0.040221964474767447,0.6249976144172251,0.6660630530677736,0.38089017709717155,-0.5731155751273036,0.30209678364917636,0.16092301439493895,0.32218831684440374,-0.7234486336819828,0.19808986084535718,-0.45720295375213027,-0.989822544157505,-0.7321455245837569,0.020604664459824562,-0.5340578472241759,0.03949781367555261,0.4618732579983771,0.7558432528749108,-0.05753856711089611,0.33645471651107073,0.18248587800189853,-0.9391351388767362,-0.9138790015131235,-0.21597638400271535,-0.44895879831165075,0.2741635236889124,0.3125856276601553,-0.5391550157219172,-0.8786255540326238,0.07810579100623727,-0.6100416914559901,-0.38512108149006963,0.7016101432964206,0.23116182582452893,-0.1676435312256217,0.4251750260591507,-0.8861108301207423,-0.12496592896059155,-0.8165199910290539,0.5865250783972442,0.01271041901782155,-0.047826874535530806,-0.5927753909491003,-0.11184862954542041,0.0057398853823542595,0.6136522693559527,0.9805685156024992,0.2736273566260934,0.26368130976334214,-0.31007367838174105,0.006550879217684269,0.34601530339568853,0.5987685606814921,-0.4484241451136768,0.20712677109986544,-0.3437187196686864,-0.2762989248149097,0.9053814392536879,0.8651173543184996,0.7655498506501317,0.10853188671171665,-0.5757140531204641,0.3559505818411708,0.41216058749705553,0.37843395210802555,-0.6033638850785792,-0.9956120010465384,-0.3204487571492791,-0.4174553561024368,-0.3301186729222536,-0.4278386775404215,-0.12380634993314743,0.0833526155911386,-0.1652458244934678,0.8404703261330724,0.5778525592759252,-0.6247246451675892,-0.3948201332241297,0.9148645964451134,-0.09329270711168647,-0.9347292012535036,-0.5480722864158452,-0.015464355237782001,0.4533461849205196,-0.64721909025684,0.6015621148981154,-0.3548546782694757,-0.00929097505286336,0.11814678553491831,-0.04688435234129429,0.08529548067599535,0.5828189724124968,-0.24116569478064775,-0.6245338739827275,0.3951166532933712,-0.41061211889609694,0.8822159147821367,0.3274986888282001,0.08800492575392127,-0.7565082013607025,0.7168715070001781,0.41643585124984384,-0.8679827242158353,0.6958532365970314,0.03149288892745972,0.22959629818797112,0.902005507145077,0.2607774077914655,-0.9736424516886473,0.1892824349924922,0.7920888480730355,0.885950252879411,-0.17403419129550457,-0.6782114487141371,-0.559675085823983,-0.7092791283503175,-0.75161387398839,0.4524586210027337,0.5007532616145909,0.7807845962233841,-0.15893738949671388,0.5118215722031891,-0.31179202161729336,0.9737418387085199,-0.7789403209462762,0.15842472203075886,0.13517795922234654,-0.8619913067668676,-0.3264674232341349,-0.2644546548835933,0.15349078318104148,-0.8335190331563354,-0.7954414342530072,-0.061989789828658104,-0.6243236404843628,-0.7296922225505114,-0.26669674878939986,-0.1727468934841454,0.9973691487684846,0.9643293591216207,-0.9693996882997453,0.40670063300058246,-0.05032021924853325,-0.569973555393517,0.07525364542379975,0.9627717807888985,-0.34123734291642904,-0.2659672060981393,-0.02066034311428666,-0.7167161456309259,-0.992555967066437,-0.6514519047923386,0.050673297606408596,0.6867493852041662,-0.5282400101423264,0.17361582443118095,-0.8751881709322333,0.08253567619249225,0.4082803260535002,-0.7285330072045326,-0.041121562011539936,-0.018992616329342127,0.06194420624524355,0.7659216835163534,-0.46544291311874986,0.47144176671281457,0.593385252635926,0.07421257719397545,-0.6920882002450526,0.8271374134346843,0.47877543000504375,-0.63493955694139,0.10371373081579804,0.7924613514915109,-0.7746776188723743,0.16524629201740026,-0.04983529821038246,0.5409866352565587,-0.7781458990648389,-0.7652824656106532,-0.8129795347340405,0.3363507962785661,-0.31384826684370637,0.28301723254844546,0.8752513383515179,-0.7513752086088061,0.9541922607459128,-0.7112064743414521,-0.2294873516075313,0.7351747299544513,-0.44876834377646446,0.8541046320460737,0.215102999471128,-0.9212052631191909,-0.326959571801126,-0.8431233358569443,0.2010422465391457,-0.41119511192664504,0.16610966436564922,0.42262680595740676,-0.13086778949946165,0.23186538135632873,-0.18669014936313033,-0.9604481877759099,-0.7197762508876622,0.2393369204364717,0.35987457213923335,0.26983737852424383,-0.9536742833442986,-0.880728549323976,0.6389144468121231,0.7842584755271673,0.758581327740103,-0.32494496228173375,-0.08331939438357949,0.7382103828713298,0.16190323932096362,-0.55185069097206,0.0052534714341163635,-0.9482253333553672,-0.2405878040008247,0.3095789300277829,-0.9905516663566232,-0.7624370069243014,-0.6349571538157761,0.5777255864813924,-0.9367396216839552,0.2711340431123972,0.7646927149035037,0.9434203887358308,-0.7409804905764759,-0.25930675165727735,-0.7227494758553803,0.7191993477754295,0.41496209241449833,0.7242825850844383,-0.7024875828064978,-0.4085686937905848,0.6301733618602157,-0.06485467217862606,0.1933996444568038,0.429685459472239,-0.9874876602552831,-0.35032013710588217,0.6193328909575939,-0.32400147896260023,-0.4187491317279637,-0.2134101907722652,0.4705220926553011,0.41345693869516253,-0.683743360452354,-0.9020917704328895,-0.29124173521995544,-0.5281403893604875,0.289864054415375,-0.024812565185129642,0.4811218767426908,-0.14873881125822663,-0.3732611769810319,0.7667434080503881,0.09097526967525482,-0.5465660993941128,-0.10143716493621469,0.5043578296899796,0.7193036465905607,0.8568617762066424,-0.7484416072256863,-0.15449198009446263,0.9834834216162562,0.2580465832725167,-0.7675202400423586,0.6014734022319317,-0.8868788504041731,-0.1642720210365951,0.24113661516457796,-0.15516910469159484,0.602733242791146,0.004507744684815407,-0.6607171786017716,0.6742571461945772,0.8352509429678321,-0.5328796030953526,0.20391098409891129,-0.15937271481379867,0.6919528716243804,-0.34375262167304754,-0.16530846105888486,0.8731282413937151,0.6771530504338443,0.6937428265810013,-0.7520048660226166,-0.5342294331640005,0.3700763639062643,-0.2690478367730975,0.7251550517976284,0.45014013163745403,0.7787011107429862,0.3457360244356096,0.8936658180318773,-0.8493321873247623,0.1911584255285561,-0.9090923718176782,0.2835773532278836,0.43779064202681184,0.20559845445677638,0.6096136746928096,-0.5082772108726203,0.5326496833004057,-0.27958038123324513,0.3258703942410648,-0.4148608557879925,-0.5169576872140169,0.750954098533839,0.5097375032491982,-0.6399112879298627,-0.011104578152298927,0.4721513679251075,-0.14095536014065146,-0.9777646823786199,-0.5234026461839676,0.9504657927900553,-0.6989999250508845,0.6857191240414977,-0.38879176368936896,-0.2654126682318747,0.7369687533937395,-0.2077653924934566,-0.9847704875282943,-0.9441039254888892,-0.09611096372827888,0.12871204735711217,0.004010295961052179,0.1178290662355721,-0.9784324495121837,-0.06746830744668841,0.08211780106648803,0.9409436918795109,-0.23916348349303007,0.05890269065275788,0.3940411298535764,0.6072742282412946,0.7818742040544748,0.4874795791693032,0.33071664115414023,0.8202660297974944,0.9240249688737094,-0.19588784780353308,0.3184635601937771,-0.28397962218150496,-0.461610313039273,-0.0866053830832243,-0.5238173510879278,-0.6376914782449603,-0.6295640463940799,-0.001917553599923849,0.964527859352529,-0.42205990431830287,-0.530490824021399,-0.4098203000612557,-0.531801431439817,-0.8621538141742349,-0.10040751751512289,0.07503967126831412,-0.35181287908926606,-0.8252651137299836,-0.8992744451388717,-0.7157450099475682,0.5674453941173851,-0.5613144566304982,0.9936503358185291,-0.8676275871694088,-0.8998790001496673,0.6267286385409534,-0.035842443350702524,-0.17406611889600754,-0.7742306706495583,0.6165808895602822,0.669389933347702,0.10349009139463305,-0.06875326624140143,-0.871236037928611,-0.9740004492923617,-0.9286689609289169,0.9277476286515594,-0.2838157219812274,-0.9260062878020108,0.754079326055944,-0.07295964378863573,0.19421236962080002,0.9748368379659951,-0.6513983798213303,-0.7005306789651513,0.3457744703628123,-0.48842197516933084,0.7331370646134019,0.7349580465815961,-0.5445137307979167,-0.40442300913855433,-0.017827920150011778,-0.8684508530423045,-0.3071520715020597,0.007307072170078754,-0.9059078115969896,-0.5478055565617979,0.4161128271371126,-0.21012265421450138,0.04620459070429206,-0.4240801972337067,0.687219234649092,0.18762852298095822,-0.17530730785802007,0.6187832299619913,-0.8440430294722319,-0.3427909230813384,0.8950672075152397,-0.15928385639563203,-0.2930885120294988,0.08741585863754153,0.12311526946723461,0.024626597296446562,-0.08680785167962313,-0.2786641987040639,0.5318521461449564,-0.23207601020112634,-0.5873734573833644,-0.6336694746278226,0.19070529704913497,0.11161612858995795,-0.11612937971949577,-0.8272132202982903,-0.3964364118874073,0.13154438231140375,-0.22610114235430956,0.41696212720125914,-0.9476877441629767,-0.9198899213224649,0.6706407777965069,0.2049998133443296,0.9676554463803768,0.679735594894737,0.1313288644887507,0.2873903871513903,-0.694430380128324,-0.32110625226050615,-0.3854613550938666,-0.7635737424716353,-0.4654144016094506,0.033327503595501184,0.4095324841327965,0.06675341073423624,-0.8873681933619082,0.6853399784304202,0.4319481533020735,-0.8924040072597563,-0.5618628114461899,-0.29274334479123354,0.06763578811660409,-0.2337951548397541,0.12362696835771203,0.8640856281854212,0.01240098848938942,0.5566353327594697,-0.3145947866141796,-0.6611976479180157,-0.33464576629921794,-0.09294666349887848,-0.6690483475103974,-0.854524196125567,0.13201648043468595,-0.17112662363797426,0.6704035000875592,0.17551189241930842,0.5463429540395737,0.8770191445946693,0.17231897031888366,-0.6678967201150954,-0.09184214333072305,-0.7266244133934379,-0.41148896561935544,-0.7930457149632275,0.6441339608281851,0.9324458236806095,0.19962107203900814,-0.8916308344341815,-0.40511738462373614,0.40424136631190777,0.37781993160024285,0.3836415922269225,-0.872863061260432,0.5776514858007431,0.35854368237778544,0.5854162606410682,0.9457943518646061,0.11241169413551688,0.612418401055038,0.7297944407910109,0.3365757493302226,-0.3745591025799513,0.21231147926300764,0.8128434983082116,0.23917696019634604,0.28715347591787577,-0.7278314991854131,-0.5333904339931905,-0.5774772888980806,0.09908217238262296,-0.5656943586654961,-0.7422472755424678,0.6116233458742499,0.3895908952690661,0.7664967863820493,-0.34970318572595716,0.21518995519727468,-0.22773163486272097,0.7341444776393473,-0.36838269932195544,0.8377738669514656,-0.4396689119748771,0.3754886398091912,0.5936089889146388,0.005519301164895296,-0.6858397605828941,-0.35707339784130454,0.21343911020085216,-0.9797946410253644,-0.949660025537014,0.5867443662136793,0.2756503256969154,-0.9118516226299107,0.8597365636378527,0.08675030898302794,-0.568989310413599,-0.36998450849205256,0.10600816365331411,-0.45256128581240773,0.5881976447999477,0.08138716453686357,0.9476293222978711,-0.4781686207279563,0.9107352197170258,-0.8469933643937111,0.5887957350350916,-0.43307622289285064,0.8551856689155102,-0.8934996998868883,-0.3677934636361897,-0.8749275580048561,0.7693458059802651,0.36709514632821083,-0.8955757860094309,0.8835588861256838,0.32386570191010833,0.2061456902883947,-0.10220926161855459,-0.6886756517924368,0.5963889001868665,0.04432670911774039,-0.16930972505360842,-0.9131059064529836,0.8987649427726865,0.13468126207590103,0.08972578635439277,-0.2844448131509125,-0.17775686411187053,-0.2780792755074799,-0.7312327986583114,0.2056827126070857,-0.15998387476429343,-0.8260189681313932,0.43860281724482775,0.22556868568062782,0.10173721890896559,0.3178440723568201,0.6647538556717336,-0.718845546245575,-0.6903001507744193,0.8896266729570925,0.7384242690168321,0.7717186114750803,0.5348124094307423,0.531031945720315,0.6678446503356099,-0.3928905325010419,0.06307400576770306,-0.2397073465399444,-0.3877075877971947,0.8065225007012486,0.25883537251502275,0.46097966050729156,-0.7287529073655605,-0.1441489728167653,-0.7854149676859379,0.16032506711781025,0.43744128942489624,-0.8902544495649636,-0.6448199390433729,-0.424982073251158,0.27393587213009596,-0.6532192043960094,-0.14627311611548066,0.6221866309642792,-0.10754397185519338,-0.5767397778108716,0.24644836457446218,-0.4343462958931923,0.5844003353267908,-0.22571194684132934,-0.09542043041437864,-0.8142946902662516,0.2980356668122113,-0.9662586743943393,0.5260144681669772,0.19308213703334332,-0.5296346708200872,-0.06683007953688502,-0.7007506811060011,0.7306525129824877,-0.9828148707747459,-0.8925993968732655,-0.6384636000730097,0.28350228164345026,-0.6610932270996273,0.95013043936342,0.43916864367201924,-0.7767089977860451,-0.47583117615431547,-0.9542200462892652,0.7778760814107955,0.6652019643224776,-0.8532658540643752,-0.2564439484849572,0.36214969167485833,0.008404908236116171,-0.602968146558851,0.2807046780362725,0.7693333080969751,-0.24620311288163066,0.937070423271507,-0.8961275918409228,-0.4943446973338723,0.9910072446800768,-0.545189808588475,0.34261558623984456,-0.36763462936505675,0.07107423385605216,0.2518656523898244,0.3306570714339614,0.7442806898616254,-0.9122530417516828,0.789332764223218,0.8751489981077611,0.698707870207727,0.9262780947610736,0.44968096259981394,0.41124945413321257,-0.3872634647414088,0.3874908396974206,0.28471669601276517,0.9291764083318412,-0.2896075681783259,0.9621962602250278,0.3535286230035126,-0.46380223939195275,0.016343005932867527,0.08484486024826765,-0.8527909605763853,-0.12747022090479732,-0.8284383215941489,0.44540752563625574,-0.6356260981410742,-0.8682418582029641,-0.6446721092797816,0.7057377309538424,-0.38167427526786923,0.019752923864871264,0.7772345505654812,0.7049031420610845,0.09323818003758788,-0.058579623233526945,0.7067800611257553,-0.34783621318638325,0.7218430936336517,-0.17362187942489982,0.5191157618537545,0.17837016843259335,0.9335351213812828,-0.1812586933374405,0.24104925896972418,0.2928369613364339,0.8433614932000637,0.16645173076540232,-0.07525268942117691,0.3673393134959042,-0.9227040740661323,0.5023180190473795,0.648414567578584,-0.006872377824038267,-0.5563122238963842,-0.7711508986540139,0.21643124893307686,0.7680523754097521,0.10984936356544495,0.45167334470897913,0.25790554424747825,-0.8610979821532965,-0.41809934517368674,-0.43419880559667945,0.026206263806670904,-0.2446092776954174,0.1516856076195836,-0.6607997287064791,-0.535303482785821,-0.9763382584787905,0.40339731704443693,-0.04775045905262232,-0.2906933221966028,0.4346890328451991,0.8529627518728375,0.6379031450487673,0.7246739575639367,0.8759900568984449,-0.03516612481325865,-0.423356709536165,-0.10516665782779455,0.27149768779054284,-0.23637591348960996,0.5615425454452634,0.2296855808235705,0.5560142169706523,0.28181766672059894,-0.8036103546619415,0.1338247167877853,0.1935166264884174,-0.20058130659162998,-0.9660492138937116,0.2740272879600525,0.4652499076910317,0.618288064841181,-0.1480726832523942,-0.43008958036080003,0.1512500778771937,0.5537326857447624,0.6639389670453966,0.012549614999443293,0.7972445841878653,0.28864153614267707,-0.7985423523932695,0.43163321493193507,0.40961857698857784,-0.8876719041727483,0.7832627352327108,-0.1666134879924357,-0.5975625677965581,-0.19703034916892648,0.4754408220760524,-0.5421461137011647,0.6975590502843261,-0.012802870012819767,-0.1399392276071012,-0.790526186581701,-0.233831693418324,0.26884146174415946,-0.28791450755670667,0.6409183871001005,-0.5895607275888324,0.9221249888651073,0.2117582494392991,0.36747839488089085,0.37411289382725954,-0.2565255374647677,0.7941029164940119,-0.8594008651562035,0.32317067170515656,-0.6279978859238327,0.757362209726125,0.08989556366577744,-0.509805993642658,0.4694615760818124,0.556263486854732,-0.39119538897648454,-0.46998169738799334,0.8077410464175045,-0.05594127718359232,-0.11550742294639349,-0.2958483062684536,0.7981503056362271,0.7202576110139489,0.6157741108909249,-0.6694070473313332,0.10457758139818907,-0.30011382326483727,-0.3826895304955542,0.8591576809994876,-0.15476644784212112,0.22787263616919518,0.4110111375339329,-0.35400997241958976,0.5491121839731932,-0.0332889836281538,-0.2051209518685937,0.7222823551855981,-0.943173301871866,-0.3234289949759841,-0.17813345370814204,-0.8360726311802864,0.25966545194387436,-0.8519339957274497,0.90920619526878,0.9523194204084575,-0.10111136920750141,0.30538083612918854,-0.4758709273301065,-0.06104457005858421,0.6407047985121608,0.9930628621950746,-0.9990312899462879,-0.004474726505577564,0.8541590184904635,0.10936629120260477,-0.3126533692702651,-0.7220005900599062,-0.02651837281882763,-0.2840897236019373,0.5648225857876241,-0.3725644634105265,-0.7956860540434718,-0.1342435129918158,0.7334345327690244,0.2672771797515452,-0.8202957413159311,-0.45827192021533847,0.9884279752150178,0.12387885013595223,0.6665488816797733,0.5168332788161933,-0.6516858111135662,-0.5003889943473041,0.933916237205267,0.40787489665672183,-0.5746184242889285,-0.5571672534570098,-0.07690442353487015,0.308466802816838,-0.6942352526821196,-0.4420307306572795,0.9919960973784328,0.6252665747888386,-0.9374616439454257,0.2179237143136561,0.40232129814103246,0.6270676460117102,-0.512720849364996,-0.5325187323614955,-0.9448556178249419,0.32983319368213415,0.09704899182543159,0.18819808308035135,-0.0705764046870172,0.9869420756585896,-0.38638678239658475,0.2631329991854727,-0.14357892703264952,0.65935622388497,-0.8689730148762465,-0.9510594690218568,0.9784644083119929,-0.6308866934850812,-0.7622146741487086,-0.3338047293946147,-0.5624917205423117,-0.13487030798569322,-0.4660439998842776,-0.12672025710344315,0.7451546480879188,-0.215398037340492,0.416304053273052,-0.9616697547025979,0.9413381079211831,0.8804799686186016,-0.2671602563932538,-0.07486237632110715,-0.41198807675391436,-0.8397044246084988,-0.2878029611892998,-0.3415825725533068,-0.15558390086516738,0.5901955338194966,-0.1243478381074965,0.7023730152286589,-0.36848559556528926,-0.5727125746197999,-0.7055390025489032,0.5759609611704946,-0.759272500872612,-0.6413663811981678,-0.5513685499317944,0.931463023647666,0.22136885859072208,0.2982024806551635,-0.038171140011399984,0.028284044936299324,0.10832497151568532,0.8947848617099226,0.23319625947624445,-0.8594483020715415,0.4298983127810061,-0.4707246567122638,0.6250102422200143,0.5912620867602527,-0.34705791901797056,0.8224457460455596,-0.16626884415745735,0.788647735491395,0.07627414260059595,0.8348132348619401,-0.5848585804924369,-0.7904316917993128,0.6774757276289165,-0.2883850852958858,0.98066336940974,-0.09203354129567742,-0.49392169434577227,0.05006165895611048,0.5642839823849499,0.5502910502254963,-0.7697142544202507,-0.7026306386105716,0.7623762832954526,0.41273999586701393,0.5538285840302706,0.543220994528383,-0.6662377584725618,-0.18022368848323822,0.043342727702111006,0.6408822573721409,0.6366705861873925,-0.6415530233643949,0.18733282666653395,-0.3379304581321776,-0.9823954827152193,0.5176380970515311,0.0023133237846195698,0.7946432549506426,-0.310597175732255,-0.3001259989105165,-0.6357142999768257,0.023526371456682682,-0.5100064212456346,-0.06320119462907314,-0.8418497298844159,-0.3915256941691041,-0.2673918725922704,0.5722438073717058,-0.9743851255625486,-0.08147983532398939,-0.12125053210183978,-0.7911214870400727,0.3043876844458282,-0.49477244867011905,-0.49077238282188773,-0.44751329021528363,0.07538861501961946,-0.6338321333751082,0.7202738150954247,0.8647128357551992,-0.17438635462895036,0.19056980265304446,-0.5734365312382579,-0.7399309989996254,0.5475169285200536,-0.9613007083535194,0.8780568442307413,-0.7305281707085669,-0.014627411495894194,-0.39261452993378043,0.03698306577280164,0.1706960191950202,-0.03089048946276307,-0.6205459316261113,-0.09533828683197498,0.9293230162002146,-0.4005994061008096,-0.7612194926477969,-0.5738373012281954,0.8852614248171449,0.02150088408961892,0.5759539767168462,0.43521513557061553,-0.521672694478184,0.5985119426622987,-0.9657982122153044,-0.7636977634392679,-0.3800162519328296,-0.09956066403537989,0.48200060473755,0.35144564136862755,0.9428250710479915,0.5537224188446999,0.23456037370488048,-0.24727072520181537,-0.36449197866022587,-0.5783333336003125,-0.41885941475629807,0.9866447611711919,0.18870970280840993,0.47485551703721285,0.3178089722059667,-0.02115967869758606,-0.3860292905010283,-0.8780595543794334,0.3956542140804231,0.3433571429923177,0.35048393020406365,-0.15961667895317078,0.9871702520176768,-0.9300817209295928,0.06271551176905632,-0.191811284981668,-0.3315912103280425,-0.5849255798384547,-0.9334127428010106,-0.08679031487554312,0.42330950079485774,0.9424499375745654,-0.9072422902099788,-0.48184558656066656,0.4608977516181767,0.9091912563890219,-0.5545939793810248,0.9592762622050941,0.13332976447418332,0.50175711652264,0.4739312347956002,0.8656294289976358,0.2927987491711974,-0.5726686562411487,-0.9611524301581085,-0.817480911500752,0.331556657794863,-0.01653182366862893,0.291432608384639,-0.6641691904515028,-0.7663580416701734,0.2650479571893811,-0.7083367123268545,-0.1384556805714965,-0.9127718894742429,0.8072591386735439,0.3429154367186129,-0.9642619541846216,0.10312602296471596,0.951076409779489,-0.7718222481198609,-0.45103167789056897,-0.6007973961532116,0.24814853817224503,0.1253044088371098,0.832811641972512,0.5121670109219849,-0.2775450376793742,0.6021265303716063,-0.30969578213989735,0.8230804153718054,-0.33160118432715535,0.6664214818738401,-0.659962359815836,0.9095734623260796,-0.24555072095245123,0.33652315428480506,0.1476557836867869,0.28476735204458237,-0.06967088812962174,-0.7261707857251167,0.7599898129701614,0.4195477361790836,-0.7650400665588677,0.29105452075600624,-0.7377326944842935,-0.12259707832708955,-0.9285589680075645,0.7653328473679721,0.7102181827649474,-0.04434853931888938,-0.7888307608664036,0.2872066465206444,-0.11731911078095436,0.5767521830275655,-0.7167121660895646,-0.9025027388706803,0.9558938625268638,0.7150628408417106,-0.9710435983724892,0.17630118411034346,0.39757457096129656,0.008414762560278177,0.6538137653842568,-0.15777294151484966,-0.45989480055868626,0.0436613061465323,0.7783362222835422,-0.7616332285106182,0.35562530951574445,-0.21783440792933106,-0.8326314841397107,0.7043149340897799,0.6836623959243298,0.9231244097463787,-0.8628273666836321,-0.49357194220647216,0.35034468676894903,-0.7050839052535594,-0.7736471774987876,-0.923346437048167,0.7902297023683786,-0.3235702132806182,-0.2106469147838652,-0.017941960133612156,-0.01940201548859477,-0.8500622888095677,-0.6800887174904346,-0.6046895273029804,-0.6952863857150078,0.022005957551300526,-0.32104037376120687,-0.39261988224461675,0.999566578771919,-0.47574341809377074,0.45889329304918647,0.9218681864440441,-0.9447729797102511,0.09610718116164207,0.67210743855685,0.35565813863649964,-0.6337489844299853,0.7646973412483931,-0.9467156799510121,-0.8909108838997781,-0.2560739777982235,-0.30058887694031,-0.4660209948197007,0.17768415203318,0.660159389488399,0.8526827115565538,-0.6906882491894066,-0.6350607834756374,0.12219117674976587,0.5257912734523416,-0.6540616042912006,0.060268440283834934,-0.30303585855290294,-0.9240269949659705,-0.710396901704371,-0.5134382229298353,0.20064925169572234,-0.261676044203341,-0.6483929543755949,0.9034773632884026,-0.4993801894597709,-0.10249933088198304,0.18871590588241816,0.8652804805897176,0.1149340677075088,0.05461036367341876,0.3875280963256955,0.7553477566689253,-0.6958121960051358,0.6989786741323769,0.7867684098891914,0.7216918435879052,0.22584046656265855,-0.18609085399657488,-0.23229523934423923,-0.06426362739875913,-0.22434092871844769,0.563317425083369,0.1990410895086825,-0.6560135520994663,-0.5603473605588078,-0.34718944365158677,-0.7883833912201226,0.35197045700624585,-0.9839545390568674,0.520616287831217,0.3715398982167244,-0.6736253970302641,0.2507960256189108,0.09714609989896417,-0.5615076688118279,0.055398307740688324,0.8735020197927952,-0.8452181401662529,-0.9583633076399565,0.1356706889346242,-0.4060429469682276,0.11807687347754836,-0.7646516389213502,0.5484307440929115,0.9340222938917577,-0.3568075862713158,0.15739893494173884,-0.6127980384044349,0.11239176476374269,0.7854530471377075,-0.9815211500972509,-0.4846718297339976,-0.5780547698959708,-0.43845048686489463,0.17173776496201754,-0.48048440273851156,-0.8406514064408839,-0.9160444526933134,-0.656168314628303,-0.18927032267674804,0.21280333260074258,-0.102675745729357,0.5525691192597151,0.20311757270246744,-0.46200279518961906,-0.060235784854739904,-0.40838108118623495,0.25143125047907233,-0.8249534000642598,0.2439105906523764,-0.5893636853434145,0.2005157107487321,-0.669987051282078,-0.4350014999508858,-0.3630512123927474,0.20983649091795087,0.9687206847593188,0.5049347360618412,0.15767351118847728,0.018645492382347584,0.9671813528984785,-0.7702958937734365,0.3956511979922652,0.8145047258585691,0.7940171114169061,0.3424401367083192,0.038186078891158104,-0.27454493567347527,-0.6619946910068393,-0.4833009452559054,-0.6884445399045944,0.777630150783807,0.7906843353994191,0.643975478131324,-0.47241548961028457,0.269704214297235,-0.8309387098997831,0.08738500624895096,0.3485480514355004,-0.5725806672126055,-0.8081403095275164,-0.22162134619429708,0.13000419083982706,0.05178046226501465,0.85050368309021,-0.07259745011106133,-0.13878022180870175,0.5053835441358387,-0.3567736689001322,0.6760865733958781,-0.7820336483418941,-0.03050338104367256,0.1550643565133214,0.011302402708679438,-0.4964268715120852,-0.41363932844251394,0.25177081534639,0.5699792043305933,-0.2982918247580528,-0.04799641575664282,0.7728235027752817,-0.3598649734631181,-0.707882302813232,0.06995300855487585,-0.5130102313123643,0.8226538011804223,-0.6517706322483718,-0.14582220511510968,0.07246643071994185,0.5795164722949266,0.9690358326770365,0.4744187113828957,-0.9397693574428558,-0.5037847072817385,0.7929178066551685,0.6375538632273674,0.19666573405265808,0.5897275400348008,-0.4662751001305878,0.31276035914197564,0.16968959756195545,0.9089666130021214,-0.11935091763734818,0.9098357278853655,0.4146282784640789,-0.08563658641651273,0.2672750880010426,-0.0321243517100811,0.44944430189207196,-0.47139154933393,0.5653397790156305,-0.5171207413077354,-0.29253940004855394,0.07728144014254212,-0.0720336101949215,-0.027745031751692295,-0.7856924338266253,0.7031878572888672,-0.7138343383558095,-0.9900688612833619,-0.44777277670800686,0.40853480622172356,0.705043604131788,0.051928916946053505,-0.5653199041262269,-0.5179247139021754,0.5215220679529011,0.6262289583683014,0.07177967112511396,0.34401234798133373,-0.20473964512348175,0.16498130466789007,0.7949743065983057,0.9908661991357803,-0.42866752203553915,-0.2571465093642473,0.37811174476519227,0.7633729856461287,0.46590887708589435,0.5916093215346336,0.09357706969603896,-0.3614811562001705,0.9545129612088203,-0.3043194627389312,0.028496268671005964,0.9884565491229296,0.08931022230535746,0.09017799701541662,-0.05246898718178272,0.2831379431299865,-0.7763855024240911,0.49025449296459556,-0.8350052903406322,-0.27434725873172283,-0.42812092043459415,-0.786904735956341,-0.5262709893286228,0.502970046363771,-0.783978003077209,0.4971073572523892,-0.4336963724344969,-0.30919903283938766,0.41363366041332483,-0.9290240984410048,-0.0033937012776732445,-0.8060014019720256,-0.7259062919765711,-0.8669865615665913,0.3563997410237789,-0.2013198183849454,0.7542648315429688,-0.0730558312498033,0.9015945098362863,0.978593192063272,0.12381511181592941,-0.8909994759596884,0.7695393185131252,0.963382211048156,-0.1608623913489282,-0.3904495700262487,-0.015045646112412214,0.8278694674372673,0.5503123099915683,0.7965041161514819,-0.4191574533469975,0.5721641052514315,0.8591600731015205,0.012411796022206545,-0.7540833815000951,0.654253778513521,0.4474508506245911,-0.40692175878211856,-0.6170879020355642,0.8228295501321554,0.24106234638020396,0.868239326402545,0.7545205247588456,-0.8172032972797751,-0.36399881448596716,0.5773436273448169,-0.2512474050745368,-0.4359260150231421,0.8425949662923813,0.8572551682591438,0.7173487935215235,-0.08548079244792461,-0.8441075957380235,-0.8009058963507414,-0.8821491445414722,-0.4423544271849096,-0.25660124281421304,-0.4188396059907973,0.8963667200878263,0.8824792089872062,-0.7006390066817403,0.30742593528702855,-0.6591858617030084,-0.12510294560343027,-0.9915285743772984,0.31053910311311483,0.9013589499518275,-0.7173087657429278,-0.7662665727548301,0.12263665860518813,-0.39207239309325814,-0.8168975058943033,0.5523823853582144,0.006806651595979929,0.7317194864153862,-0.818672648165375,0.6530527048744261,-0.54915288137272,0.27686878852546215,-0.7209842642769217,-0.8620690391398966,0.6889690314419568,0.8236612463369966,0.34791755862534046,-0.34804554749280214,0.5000707036815584,0.4336460935883224,0.16481725545600057,-0.6858901339583099,-0.9392620041035116,0.7621300430037081,-0.791493927128613,0.71557089779526,0.9531989712268114,0.34188847010955215,-0.8766726199537516,-0.667634074576199,-0.08901350479573011,0.12206877116113901,-0.6113183223642409,0.8074481207877398,-0.683859474491328,-0.37472547544166446,-0.46280189603567123,0.7979850070551038,-0.360517593100667,-0.26317785400897264,-0.7840642253868282,-0.35010052658617496,0.22897582780569792,0.604301743209362,-0.2337782233953476,0.9569001668132842,-0.400974215939641,-0.8097327589057386,-0.16892498591914773,-0.6733578094281256,0.6560016460716724,0.6868418524973094,-0.7992395111359656,0.4157532542012632,0.11661540530622005,-0.6009318148717284,0.4230820704251528,0.12862647650763392,-0.11905423318967223,0.41344329435378313,-0.1419435879215598,-0.9635722753591835,0.15908708795905113,-0.820000879932195,-0.0027194595895707607,0.36005391366779804,0.4896240043453872,0.018934479914605618,-0.6645141188055277,-0.8779286062344909,0.0774422949180007,-0.6897909217514098,0.692425325512886,0.870175271295011,-0.4877126566134393,-0.8104217839427292,0.4167496105656028,0.23771708784624934,0.45423091016709805,-0.8974463730119169,-0.09870388684794307,0.019581511616706848,0.16134510282427073,0.3785471273586154,0.37909684469923377,0.08323395811021328,-0.4039573473855853,-0.6450047320686281,0.3639466711319983,0.5593105768784881,0.45008520502597094,0.1063483152538538,-0.6973163736984134,-0.9207661938853562,0.3254913021810353,0.20746849197894335,0.7652039038948715,-0.6034131050109863,-0.5155686005018651,0.15460583800449967,0.016676499508321285,0.9816206744872034,0.7349346945993602,0.9096770738251507,-0.7609203634783626,-0.8793593146838248,0.8003466795198619,-0.862339137122035,-0.4056097501888871,0.41121626272797585,0.40186737570911646,-0.9128569294698536,-0.8338108980096877,-0.8736890661530197,-0.6535925134085119,-0.4502554191276431,-0.012692614924162626,0.29083409858867526,0.43337726034224033,0.6552275661379099,0.5729310363531113,-0.48519050469622016,-0.8074998743832111,-0.31296919845044613,-0.22539309971034527,-0.8831294728443027,-0.26849609427154064,-0.4261555066332221,0.0282814959064126,-0.5159394890069962,0.7681265040300786,0.624280801974237,-0.13444639323279262,0.5191290616057813,-0.06756484229117632,0.2720395834185183,0.4503719792701304,-0.9994911579415202,0.6024709544144571,-0.8297704011201859,-0.8852946092374623,0.696014410816133,0.6785497581586242,0.39596292097121477,-0.4332066513597965,0.793003739323467,-0.2476605912670493,0.3914853883907199,-0.30343827698379755,-0.30556379072368145,-0.44916550954803824,0.2687168288975954,0.48443981213495135,-0.3090414833277464,-0.8985737385228276,0.5301866577938199,0.6228400729596615,-0.4001224637031555,-0.08599421987310052,-0.8007135344669223,-0.9673876627348363,-0.997300454415381,-0.5766747104935348,0.07614946225658059,0.3978241113945842,-0.6427464466542006,-0.7047749231569469,0.3801854313351214,-0.9266089326702058,0.27599020721390843,0.1330911754630506,0.07311118440702558,-0.24931986723095179,0.6277069733478129,-0.5936691341921687,-0.8354271911084652,0.6705032708123326,-0.988454757258296,0.8622786123305559,0.2031228463165462,-0.08843578770756721,0.24133546091616154,-0.2672594808973372,-0.5149720795452595,-0.2788978246971965,0.48403933458030224,-0.7044021538458765,-0.8110564714297652,0.6311629107221961,0.842734704259783,0.23900330113247037,-0.1489971773698926,-0.8644044045358896,-0.6426917221397161,0.24587227730080485,0.4538489575497806,0.8236668421886861,0.9561557867564261,0.07449904829263687,-0.34453236032277346,0.293231054674834,-0.08863255335018039,0.7498885747045279,0.6613950477913022,-0.7730138474144042,0.31427291920408607,0.32416753796860576,-0.06137835746631026,-0.8600854775868356,-0.42263874551281333,-0.7276030238717794,-0.34436081955209374,-0.6159405559301376,-0.9080814658664167,0.1062880540266633,-0.1441608383320272,0.1187921715900302,-0.8206297876313329,-0.7192606963217258,0.7343665910884738,-0.5007708594202995,0.8119239606894553,0.8123984872363508,0.9731567609123886,0.5938350302167237,-0.18611531844362617,0.04844103753566742,0.7124615926295519,-0.6085267271846533,-0.8449117746204138,0.818214388564229,-0.5274553755298257,0.7007161225192249,0.5994632286019623,0.42746406327933073,-0.4448595722205937,-0.7357198847457767,0.26908609829843044,-0.37962823500856757,0.12073356285691261,-0.20990883419290185,-0.7919688699766994,-0.4861863786354661,-0.040000155568122864,0.8429595837369561,-0.3025683746673167,0.016998620703816414,0.3807050855830312,0.050718458369374275,-0.25848018284887075,-0.9402865008451045,0.216680564917624,0.0003490089438855648,-0.3967861095443368,0.7090111514553428,0.9023688142187893,-0.2818897389806807,-0.08169982675462961,0.3127682306803763,0.1184748038649559,0.36778363585472107,0.0467060673981905,0.00382609898224473,-0.4007927495986223,-0.8060943353921175,0.21984690241515636,0.12638542847707868,-0.8515127701684833,0.11128727160394192,-0.36472817743197083,0.32410961436107755,0.31767652183771133,-0.09230123041197658,-0.21956448210403323,0.6169654047116637,0.5672539011575282,0.5882830298505723,0.7999105830676854,0.7797046173363924,0.10783128533512354,0.7960445801727474,0.12294199829921126,0.6524031981825829,0.4063046844676137,0.11161065520718694,0.860512550920248,-0.05037608649581671,0.939830263145268,0.8795321122743189,0.7129309051670134,0.8848731522448361,-0.41796360071748495,0.42487509408965707,0.07043543085455894,0.2574376370757818,0.16418065084144473,-0.3482244471088052,-0.14439751720055938,-0.47164064878597856,0.009620595257729292,0.13890372775495052,-0.15741613414138556,-0.35462586814537644,-0.48253575759008527,0.319470442365855,0.7942686574533582,0.34483175072818995,0.8214901322498918,-0.9561960785649717,0.17744630994275212,0.059162506833672523,0.11891065817326307,0.5124432193115354,0.5863889097236097,-0.7723497641272843,0.38342198729515076,0.7882024673745036,-0.8136686631478369,-0.0632172068580985,0.034180539194494486,0.8031734544783831,-0.5852447436191142,0.1380822379142046,0.7015373543836176,-0.12088737264275551,0.479416417889297,-0.11335309688001871,0.381803659722209,0.5567792309448123,0.7933449638076127,-0.43119262531399727,-0.6901633106172085,0.7528956630267203,-0.9170674127526581,0.48811708437278867,0.8900000490248203,0.068928646389395,0.19768571946769953,-0.35473272763192654,0.6488999980501831,0.5540019064210355,0.9453475936315954,0.11793564492836595,-0.18840098567306995,0.4259574031457305,-0.11193707678467035,-0.36198544641956687,0.7641465649940073,0.3201553951948881,0.7199272597208619,-0.004599088802933693,-0.08352803578600287,-0.5777739803306758,0.7453521764837205,0.695837170816958,0.4966900977306068,0.8031896525062621,-0.5397365987300873,-0.19746435340493917,-0.34419114748016,0.8079022304154932,0.26392347924411297,-0.10808597784489393,0.5618328959681094,0.9027875727042556,-0.07608617702499032,-0.28052094113081694,0.40491436840966344,-0.9903010241687298,0.28550927294418216,-0.8763180808164179,-0.4993779305368662,0.44495280319824815,-0.9343979326076806,-0.04192177718505263,-0.6732445936650038,0.7749055060558021,0.676096267066896,0.6497920141555369,0.6598967597819865,0.17710648896172643,-0.6315226340666413,0.0720839686691761,0.1759049529209733,-0.06429190933704376,0.8912011100910604,-0.2850396358408034,-0.574728149920702,0.722577718552202,-0.2773534832522273,-0.8693515723571181,0.08103394601494074,-0.3840623088181019,0.2225084686651826,-0.14384648948907852,0.5435259267687798,-0.8261048821732402,-0.11058662878349423,-0.3285354948602617,0.6994873262010515,0.41062492737546563,-0.047177201602607965,-0.19936190731823444,-0.32301400834694505,0.7229781257919967,-0.4288254650309682,0.3118121139705181,0.79326326912269,-0.25656707119196653,-0.3998918174766004,-0.8105510058812797,0.6220260756090283,-0.6534626083448529,0.2618199707940221,0.01249887514859438,-0.4013708205893636,-0.33794550970196724,-0.9861811110749841,-0.29049620497971773,0.9539317260496318,0.6233673761598766,-0.7784023154526949,0.3800955358892679,0.47428240021690726,0.47948358207941055,-0.9215161963365972,0.3082961165346205,-0.7241778080351651,0.41787276277318597,0.44270582078024745,-0.02529567200690508,0.625395423732698,0.2410174342803657,-0.15581958601251245,0.25957559887319803,0.5941884508356452,-0.6535606631077826,-0.3870893446728587,0.9131163945421576,0.6685244180262089,-0.3006618502549827,0.6105956616811454,0.33111989917233586,0.02274417132139206,0.13150673173367977,0.5083765834569931,0.5683645713143051,-0.2761540529318154,-0.9258567346259952,0.2720614760182798,0.7881765486672521,0.4260322358459234,-0.7195203867740929,-0.6280322060920298,0.960508253891021,-0.02605360746383667,-0.9165739277377725,0.47559583000838757,0.5900415321812034,-0.14346856251358986,0.7246673498302698,0.2412592750042677,0.8322936873883009,0.6301985355094075,0.9517569472081959,-0.7257274715229869,-0.11274760495871305,0.41307004261761904,0.20832101395353675,0.12041645823046565,0.5451602283865213,0.8271492538042367,-0.8065044567920268,-0.3875589403323829,-0.5493313600309193,0.5763768600299954,-0.7398708211258054,0.2512123375199735,-0.5742930807173252,-0.7333025215193629,-0.7636576099321246,0.7924695936962962,0.7590354876592755,-0.5744531620293856,0.7146029663272202,-0.38211855199187994,0.8182294750586152,-0.13213802268728614,-0.3610184723511338,0.7329239151440561,0.23879081569612026,-0.7732431539334357,0.47146801836788654,0.2396924621425569,-0.6944522918201983,0.9455471006222069,-0.6419427585788071,0.40077920723706484,0.7721740766428411,0.9294795971363783,-0.24401242192834616,-0.5752757349982858,0.47822154546156526,-0.25544811552390456,-0.6753805461339653,-0.03164653154090047,0.2610021443106234,-0.5263338526710868,-0.6594124138355255,-0.20894051250070333,-0.9614610765129328,0.9540221365168691,-0.7433031741529703,0.9510221830569208,-0.4404184534214437,-0.9921598988585174,0.9825214496813715,-0.1435219277627766,-0.9598600869067013,-0.46012431290000677,-0.8549131122417748,-0.765899873804301,-0.14370975131168962,0.2514017135836184,-0.05482154153287411,0.918870110064745,0.200825703330338,-0.5297483708709478,-0.9177269451320171,0.6727726305834949,-0.7828724733553827,0.21327689057216048,0.4918664884753525,0.4059884767048061,0.4661313844844699,0.3246029485017061,-0.5594501472078264,-0.2682161061093211,-0.5313677755184472,-0.20636314526200294,-0.7126575084403157,-0.7063633776269853,0.13276849826797843,0.8624791870824993,-0.489464346319437,0.007545182481408119,0.04323325166478753,-0.42708071367815137,-0.41045923763886094,0.5208793813362718,0.3021226921118796,0.7868601684458554,-0.7118935817852616,0.5772218126803637,0.4279820006340742,-0.4017624380066991,-0.6343367877416313,0.0069015491753816605,0.18129383819177747,0.5381267946213484,-0.5947670033201575,0.9445436336100101,0.8807582417502999,0.33502557408064604,-0.49987525632604957,0.8642407571896911,-0.19930935138836503,0.8973608496598899,0.5036079976707697,-0.8114947089925408,0.48914341628551483,0.8870972185395658,-0.8385620503686368,-0.9708642791956663,-0.052835424430668354,0.957512388471514,0.5819394281134009,0.37018915358930826,0.48697449918836355,-0.1174691254273057,0.15607846109196544,-0.557607505004853,-0.71895557269454,-0.5727831749245524,-0.13134905509650707,0.41657384764403105,-0.10966091696172953,-0.504925673827529,0.6420058654621243,-0.49961946438997984,0.25876929238438606,0.9428102192468941,-0.8346302947029471,-0.8270990764722228,-0.3578741867095232,-0.5526207438670099,-0.8932499433867633,0.7567328866571188,0.4399299370124936,0.7220533192157745,0.06449824431911111,0.23522196570411325,0.02038112608715892,0.10943375900387764,-0.9680194556713104,0.06445373874157667,0.9574078232981265,0.6411232049576938,0.2830492462962866,-0.7666959394700825,-0.8613184671849012,0.7023737053386867,0.1170283006504178,0.4835520163178444,-0.5958236334845424,0.4742358447983861,-0.3694672924466431,0.8306629387661815,-0.08259104983881116,-0.403621141333133,0.6299953372217715,0.6378414621576667,0.014233006164431572,-0.3915425199083984,-0.6083471975289285,-0.24495758302509785,-0.6613269257359207,-0.7966585466638207,0.5277914209291339,-0.8377826688811183,0.5680726105347276,0.7529089394956827,0.9439616245217621,0.3680121125653386,0.9577338378876448,-0.010870695114135742,-0.4412399800494313,0.6983783775940537,-0.8999104201793671,-0.3156431373208761,0.8613435160368681,-0.42654095590114594,0.5116490190848708,-0.08953629434108734,-0.9149138093926013,-0.5494119925424457,0.953049935400486,-0.5760069922544062,0.8251279122196138,0.10617261612787843,-0.29062188463285565,0.7676413487643003,-0.9384401650168002,-0.4276050003245473,0.5303410133346915,0.16491563757881522,0.13753657136112452,0.11918642045930028,0.6532732588239014,-0.9605300002731383,0.9554711319506168,-0.6722549311816692,-0.25674930587410927,0.6647185441106558,-0.011156036052852869,0.6364454459398985,0.41295557329431176,0.35451988177374005,0.4185060979798436,-0.2750855078920722,-0.8408938241191208,-0.9414036558009684,0.42920404160395265,0.07318935915827751,-0.010828900150954723,0.21828778833150864,0.9201085269451141,-0.46754537243396044,0.05727369291707873,0.18764039874076843,-0.7674490227364004,-0.3720699152909219,-0.9004557225853205,0.7906587412580848,0.21377148339524865,-0.8969609439373016,-0.5681221405975521,0.2965509342029691,0.842023060657084,-0.8543303906917572,0.048987182788550854,0.9257603427395225,0.8567094411700964,0.14251225255429745,0.9596780850552022,0.32523655239492655,-0.6119177979417145,0.12174523016437888,-0.18911290355026722,-0.09120625024661422,-0.6208209549076855,0.9846153678372502,0.7271052985452116,-0.7720064730383456,-0.4862459911964834,0.7944855713285506,0.3849885812960565,-0.2500670296140015,-0.3438056497834623,-0.18085497990250587,0.15136937517672777,0.883349098265171,-0.8476068032905459,0.5389677821658552,-0.6167878219857812,0.8271002834662795,-0.5259885881096125,-0.4409967469982803,-0.8456744123250246,-0.2987634534947574,0.581688049249351,-0.9607579004950821,0.6455854740925133,-0.3175281030125916,0.2471021907404065,-0.8431953433901072,0.7285878071561456,-0.4437043904326856,0.5711791412904859,0.8432964910753071,-0.5122163677588105,0.4259094996377826,-0.4273652737028897,0.4635461289435625,0.1359834996983409,0.4910863130353391,-0.6097307200543582,0.7989484374411404,-0.8940262566320598,0.32076967880129814,0.785891349427402,-0.5245465347543359,-0.010590414516627789,0.6971116969361901,-0.4469948075711727,-0.6958756274543703,-0.6674436437897384,0.23614991549402475,0.07582829939201474,0.14918427541851997,-0.7249405314214528,-0.4115619547665119,0.8151249107904732,-0.5678032655268908,-0.6811873391270638,-0.6608783425763249,-0.20150339743122458,0.10803091153502464,-0.24569436348974705,0.539744399022311,-0.8647575732320547,0.9289960097521544,-0.752666734624654,-0.8402543570846319,-0.25695008551701903,0.9566861647181213,-0.025660991668701172,-0.046277301385998726,-0.46580936200916767,0.5966080012731254,0.30138554284349084,-0.7034278935752809,0.7813947536051273,-0.3421680717729032,0.45499956188723445,0.40870905201882124,-0.3514598715119064,-0.9730193079449236,-0.31099910428747535,0.7699311161413789,-0.9573404244147241,-0.9238471603021026,0.08816961105912924,0.4142705323174596,-0.9912481047213078,-0.6667786780744791,0.6497592958621681,-0.15880546579137444,0.275916266720742,0.5112989945337176,0.18548085819929838,-0.8697002208791673,-0.2656671879813075,-0.8950436757877469,0.520109573379159,-0.11825201148167253,-0.8057209858670831,0.4801850523799658,0.4421203196980059,-0.1264561447314918,-0.07067266898229718,-0.9351701610721648,0.9762006690725684,-0.7500814707018435,-0.8082324825227261,-0.49887112667784095,-0.8821140839718282,0.5317301852628589,0.21891266480088234,-0.44655819749459624,-0.9067665585316718,0.5616212897002697,0.3394840704277158,0.04447898408398032,-0.28119705617427826,-0.1061815693974495,-0.7429898167029023,0.21672078175470233,0.9188197320327163,0.8246685471385717,-0.5706235221587121,-0.18069616798311472,-0.5506884483620524,-0.13870744686573744,-0.12626679614186287,0.7441092231310904,0.3949853153899312,0.4859005003236234,0.3404166135005653,0.42266953084617853,0.9268569825217128,0.08334320969879627,-0.5438979761675,-0.26355772837996483,0.7443768559023738,0.264316173736006,0.2683464316651225,-0.05570983327925205,0.15457578422501683,-0.4226503847166896,-0.9936363487504423,-0.7999511142261326,0.9766207630746067,-0.9289389587938786,0.4634497812949121,0.12210085056722164,-0.9633760312572122,0.2510489150881767,0.9083023793064058,0.5193465002812445,0.24898239178583026,-0.21868537925183773,0.2440606956370175,-0.38915944192558527,0.05520381359383464,0.18813232006505132,0.3661725097335875,0.5119194583967328,0.4835807802155614,-0.11091765249148011,-0.4613031162880361,0.5554614593274891,0.17950173188000917,-0.8364531868137419,0.20612287195399404,0.4009893275797367,-0.6403783117420971,0.2802562965080142,0.1337031712755561,0.4200297421775758,-0.7727831271477044,0.682115466799587,0.3621000209823251,0.24682589480653405,0.0598156563937664,0.8920762473717332,0.3180269477888942,-0.052788285072892904,-0.6155854999087751,0.6477536312304437,-0.20395646197721362,0.9772010645829141,-0.6253551263362169,-0.29657398257404566,-0.8282188973389566,0.17774409195408225,0.6952427881769836,0.4090141709893942,-0.6700102924369276,0.11990424478426576,0.014637116808444262,0.32627775939181447,-0.2856010077521205,-0.890818985644728,0.9649999216198921,0.29910538671538234,0.8676458299160004,0.7040464482270181,0.2707966691814363,0.15122252283617854,-0.4166099070571363,-0.8900192668661475,0.6540634091943502,0.30331378523260355,-0.5741258040070534,0.3492713123559952,-0.6284363023005426,0.5105580477975309,-0.941184502094984,0.12541346717625856,0.404582304880023,-0.3970485646277666,-0.6961871343664825,-0.2698713056743145,-0.2051993473432958,-0.5618467782624066,0.7676670462824404,0.2302474365569651,-0.33684467850252986,-0.7430431619286537,-0.6967440508306026,0.537989845033735,0.7724627307616174,-0.33943225909024477,-0.20344733307138085,-0.16915193339809775,0.9436112265102565,0.05295225325971842,-0.9078042111359537,0.6417589355260134,-0.9202374326996505,-0.9839995140209794,-0.7808658401481807,0.9103624238632619,-0.07865786273032427,0.21921721938997507,0.3289617011323571,0.013524539303034544,0.5841739242896438,0.36039349995553493,0.5240457206964493,-0.24356567487120628,-0.5653855679556727,0.8264658665284514,-0.7490686471574008,0.37692786753177643,0.8066300358623266,0.44552095187827945,0.8780145873315632,-0.49820624804124236,-0.28492305940017104,0.12254002830013633,0.5061267209239304,-0.5423605148680508,-0.589013266377151,0.45640640472993255,-0.2626881478354335,-0.7807386028580368,-0.1325905262492597,-0.27735166205093265,-0.045220036525279284,0.7392528434284031,0.5944312303327024,0.3885574759915471,0.87115871720016,-0.9492123541422188,-0.8956189174205065,0.4977888222783804,-0.2598395049571991,0.49735513469204307,0.5803626938723028,0.5868359636515379,0.990756266284734,0.621690203435719,-0.4405179116874933,-0.5155909219756722,-0.06219076970592141,-0.19022978655993938,0.10869463067501783,0.021343802101910114,-0.5809976416639984,-0.3790289117023349,-0.2066901484504342,-0.03582144482061267,2.384185791015625e-05,-0.6433119080029428,-0.38882799446582794,-0.20227407198399305,0.8623941671103239,0.0009327069856226444,0.9951558252796531,-0.6885601244866848,0.5119547178037465,0.5315502430312335,-0.23734420957043767,-0.29837451921775937,0.25697130942717195,0.1903325174935162,-0.2717566043138504,-0.34605424758046865,-0.15970311127603054,-0.05384969338774681,-0.2583758635446429,0.4176334529183805,-0.2699721911922097,-0.9536976288072765,-0.7337712245061994,-0.314280167222023,0.456162529066205,-0.10169769171625376,0.5558618563227355,-0.7483142674900591,0.7940659569576383,-0.21616961574181914,0.4000053284689784,-0.9317665537819266,0.8578720935620368,0.20581379113718867,-0.2926947372034192,-0.793177230283618,0.2513491637073457,0.6375046935863793,0.12546940706670284,0.5202028919011354,-0.6480533718131483,-0.17132333805784583,0.08024262404069304,0.8056372362188995,0.49774964479729533,-0.9993582190945745,-0.6714379470795393,-0.8005248350091279,0.7827753126621246,-0.38874770887196064,0.21829041140154004,-0.6134565239772201,0.2435151431709528,0.9417802230454981,0.5499038528650999,-0.578921090811491,-0.43954524537548423,0.2168114185333252,-0.41044941637665033,-0.4092736979946494,0.5218592919409275,-0.20099520962685347,-0.492058171890676,-0.4293784825131297,-0.0708639514632523,0.03241045493632555,-0.13938966672867537,0.4473072849214077,-0.5484020626172423,0.3222824144177139,0.5445428928360343,0.07090768916532397,-0.34902598336338997,-0.20552232582122087,0.877582183573395,0.5277464482933283,0.5943969511426985,0.020865315105766058,0.3326918389648199,-0.021704012528061867,0.6616355027072132,0.47405689070001245,0.46978331124410033,0.9255610597319901,0.24075685627758503,-0.31830256758257747,0.23215035116299987,0.34561270428821445,0.7859781607985497,0.4563299030996859,-0.35858594672754407,0.0508485771715641,-0.7634527557529509,0.27280037803575397,0.961237677372992,-0.7906120293773711,0.18881190568208694,-0.6361511535942554,0.019648545421659946,0.48249938478693366,0.7112770150415599,0.4728839471936226,-0.5794524727389216,-0.07542613567784429,0.46621908713132143,-0.3460794435814023,0.13462966680526733,-0.5685799913480878,0.08304417273029685,0.04167561838403344,0.7934113647788763,0.47251745499670506,-0.9949481976218522,-0.233479262329638,-0.2836590870283544,0.8205288480967283,0.01322291698306799,0.8301359503529966,0.06302778888493776,0.6895419163629413,-0.609643304720521,0.07687185192480683,-0.8206379781477153,-0.027001154143363237,-0.06727743800729513,-0.9697762057185173,0.29923806665465236,-0.6321413679979742,0.8015852142125368,-0.44179149297997355,-0.41469320887699723,-0.489294339902699,0.12741940841078758,-0.4183446359820664,0.25675778090953827,-0.8436706648208201,0.5129345892928541,0.2649865923449397,-0.5831435481086373,0.8918719324283302,0.18861078983172774,-0.5721021322533488,0.9422447374090552,-0.13427259819582105,-0.6864660740830004,0.2051023067906499,-0.5525957820937037,-0.011864802800118923,-0.4873921894468367,0.3016360877081752,-0.013208360876888037,-0.14609929267317057,-0.4098664512857795,0.5219079963862896,-0.9661306007765234,-0.07694281451404095,0.35484057758003473,-0.8062722231261432,-0.293374331202358,-0.47470813151448965,0.5177364354021847,0.8389706816524267,-0.5139285093173385,0.7755121104419231,0.9352108729071915,-0.363391715567559,-0.4923064662143588,0.8335786750540137,0.2428239150904119,0.6984552429057658,0.6849793181754649,0.4227748694829643,0.5197866633534431,-0.5892881541512907,-0.9769372893497348,0.4645053786225617,-0.26182182086631656,-0.046971125062555075,0.47228485625237226,0.22939870646223426,-0.24398768320679665,0.06347245303913951,-0.45455132983624935,0.20122852455824614,0.6761885974556208,0.8538273782469332,0.622709171846509,0.6965634617954493,0.8296188260428607,-0.48646143451333046,-0.47631854098290205,-0.9442324629053473,0.08507741242647171,0.8169856457971036,0.7998935300856829,-0.7143994607031345,-0.38402388524264097,-0.9020920749753714,0.6428902209736407,0.7363757183775306,0.4383859597146511,0.19192396569997072,0.34309060499072075,0.5075516100041568,0.7521317373029888,0.6278371503576636,-0.47513075917959213,-0.15618867333978415,0.9548291638493538,-0.39214367931708694,0.25959122832864523,0.8775175362825394,0.31790356943383813,0.9475433989427984,0.31052982760593295,-0.03607945516705513,0.5076560941524804,0.6639508199878037,-0.2463029115460813,-0.6862291754223406,0.24018881423398852,0.44778069155290723,-0.46112696873024106,-0.9478040626272559,0.8968931357376277,-0.6532519422471523,-0.8119177003391087,-0.3671863414347172,-0.39107973501086235,-0.07412240700796247,0.8802533699199557,-0.797302259132266,-0.6629350208677351,0.5604045139625669,-0.3260139999911189,0.2978073824197054,0.6022106599994004,-0.4615229032933712,-0.7555191381834447,0.49248845782130957,-0.898332656826824,-0.5899397674947977,0.5007363073527813,0.836319524794817,0.6302412953227758,0.11490683676674962,-0.8169225212186575,0.6103889918886125,0.023272798396646976,0.9621393945999444,0.6630664886906743,-0.2916417168453336,-0.2918014661408961,0.03153524501249194,-0.304137428291142,0.2813500198535621,0.4875357341952622,0.9185748919844627,0.3170843250118196,0.405604287981987,-0.49945140164345503,0.4138784627430141,-0.5489414017647505,0.5855948254466057,-0.49311565794050694,-0.48005064809694886,0.1662000985816121,0.9521413780748844,-0.4813815802335739,0.620068350341171,-0.6905101067386568,-0.9410415426827967,0.674588471185416,0.49077077163383365,-0.7961144489236176,-0.8861156539060175,-0.9223733912222087,-0.8908938355743885,0.7395851635374129,0.5940828104503453,-0.3045859206467867,0.36584360944107175,0.6333252522163093,-0.6859340346418321,-0.5006184917874634,0.21520044188946486,-0.9715975280851126,0.9844601354561746,-0.888522969558835,-0.21711053187027574,-0.8859431189484894,-0.7953150239773095,-0.8139343550428748,-0.21781311556696892,0.8350092624314129,0.7746776062995195,-0.9121734602376819,0.9504311601631343,0.1646288176998496,-0.5547657771967351,-0.07272632699459791,0.5120288012549281,-0.9363162145018578,0.07813499635085464,0.728409678209573,-0.5510953837074339,-0.2901891488581896,-0.12678653560578823,0.6887348834425211,0.16512229898944497,0.3373518316075206,0.15009073400869966,0.11407271213829517,-0.5901261153630912,-0.0874246577732265,0.4787746067158878,-0.48217988247051835,0.5158213246613741,0.447554724290967,0.6053495523519814,0.7455087965354323,-0.2913493108935654,0.7697097328491509,-0.10013525886461139,0.28120197635143995,0.510158653371036,0.8686348390765488,0.2802888434380293,-0.4100777320563793,-0.46453900821506977,0.2341895648278296,-0.8531538578681648,-0.7119351699948311,0.9614131324924529,0.8402240918949246,0.2770149288699031,0.2818666850216687,-0.7905605547130108,0.8194692465476692,0.13626340171322227,0.37830574018880725,0.6945170378312469,-0.8746401453390718,-0.5389480083249509,-0.389433266595006,-0.47999021876603365,-0.14104559877887368,0.012385230977088213,0.39103384828194976,0.8272838080301881,-0.9206797354854643,-0.6031176135875285,-0.5307598989456892,0.06641534110531211,-0.7069637114182115,0.6456657093949616,-0.035331429447978735,-0.3433737722225487,-0.2304840669967234,-0.7320581395179033,0.43073941953480244,0.4204103103838861,-0.3673830549232662,-0.5709638702683151,-0.45945982728153467,0.3535861666314304,0.22352046566084027,0.6073175193741918,-0.8592439689673483,-0.22473924374207854,-0.016298549249768257,-0.8631480103358626,0.41955074900761247,0.03984656138345599,0.6683863471262157,-0.3196135088801384,-0.16724953660741448,0.37176070734858513,-0.231415793299675,0.48182693030685186,-0.3033409072086215,-0.34231045143678784,-0.9185626651160419,-0.22060429770499468,0.5995049895718694,-0.14683776907622814,0.49909705575555563,0.23453384777531028,-0.3555192472413182,-0.5707000563852489,-0.8349998444318771,-0.34983789874240756,0.6670907470397651,-0.43618069496005774,0.9064679821021855,-0.8754201736301184,-0.8778772596269846,0.8995259306393564,-0.5048331115394831,0.832769138738513,0.6796861002221704,-0.3409574907273054,-0.9130725185386837,-0.7242714995518327,0.9634698857553303,0.2255419665016234,0.23507652385160327,-0.029224224854260683,-0.0519411382265389,-0.6787980031222105,0.8573400909081101,-0.8753371373750269,-0.4415985466912389,-0.020943531300872564,-0.0958396214991808,-0.17736843694001436,0.2731660413555801,-0.13444667449221015,-0.6578806773759425,0.9437027629464865,0.27481244085356593,0.12742805713787675,0.9343388574197888,0.3238894697278738,-0.6109961797483265,0.03328441875055432,0.36341463634744287,0.43851260701194406,0.2711336426436901,-0.9741873536258936,0.8222315036691725,0.3581168092787266,-0.3178559448570013,-0.4008514261804521,0.2746200831606984,0.8880558595992625,0.22592331189662218,-0.8866430358029902,-0.0015732087194919586,0.6591669088229537,0.5615789694711566,-0.7844106392003596,-0.718849265947938,-0.7037269594147801,0.14440638478845358,-0.20722489152103662,-0.5400284775532782,-0.3308266936801374,-0.8486371552571654,-0.7544230651110411,0.2551312423311174,0.5782156209461391,-0.0985145359300077,0.868093675468117,-0.13680419512093067,-0.0890186307951808,-0.9832541923969984,0.8601513127796352,-0.9209348051808774,-0.5337622473016381,-0.8349664402194321,-0.940164006780833,-0.9278046702966094,0.21882714051753283,0.3044950142502785,0.17979187611490488,0.0057214414700865746,-0.7989012212492526,-0.9639191799797118,-0.9598101060837507,0.33813229110091925,0.6789851314388216,-0.6274444693699479,0.22791246976703405,-0.667667668312788,-0.8397854315117002,-0.11301389150321484,0.029632712248712778,0.7473181788809597,0.4533059485256672,-0.6302244737744331,-0.32658859668299556,-0.4676311118528247,0.864450525958091,0.3738839076831937,-0.7571694776415825,-0.17514883913099766,-0.838470499496907,0.37408929597586393,-0.5315582514740527,0.8622625633142889,0.051056202966719866,-0.05267249047756195,0.24275607336312532,-0.5720242951065302,-0.7492499332875013,0.7451115003786981,-0.25090407114475965,0.35761392721906304,0.5722208293154836,0.8502101241610944,0.0571596622467041,-0.2765923561528325,0.13049304392188787,-0.9317111130803823,0.3425880311988294,-0.6120223961770535,-0.7726654261350632,-0.7359184734523296,0.6748774969018996,-0.5610389243811369,-0.30804208340123296,-0.2954552755691111,0.3511771927587688,0.3809793824329972,-0.48373882519081235,0.32665948662906885,-0.544700596947223,0.4478511312045157,0.4803670812398195,0.4037802224047482,-0.5007441639900208,-0.45849124109372497,-0.4794266992248595,0.7748600272461772,-0.6809889022260904,-0.001024072989821434,-0.9667353802360594,-0.8285653511993587,0.24472605902701616,-0.576510991435498,0.5411166842095554,-0.5813860823400319,0.8375031566247344,0.6122334985993803,-0.3947813087143004,0.23356997594237328,-0.969291394110769,0.6979810581542552,0.9134777928702533,-0.6472710631787777,0.6673719217069447,-0.2924137548543513,-0.661683994345367,-0.0915949335321784,-0.027599510736763477,-0.6061982633545995,0.07481953874230385,0.5522937560454011,-0.8855445482768118,0.9801166811957955,0.13590772543102503,0.7846386753953993,-0.6405340675264597,0.5032061995007098,-0.10368609707802534,-0.8203090061433613,0.9548332067206502,-0.6160871963948011,0.03142326744273305,0.44561456656083465,0.5671001160517335,-0.8164984579198062,0.2528817318379879,-0.6465111365541816,0.9051048597320914,-0.009564547799527645,0.08601170452311635,0.3688605297356844,0.9457657495513558,-0.5382853094488382,0.7460250183939934,-0.7952527003362775,0.5168100129812956,-0.15383611200377345,-0.15142753394320607,0.05444399965927005,0.6848192950710654,-0.6008618273772299,-0.4298983779735863,-0.23314352333545685,0.5455466574057937,-0.8074572398327291,0.5601731413044035,-0.6850539804436266,0.03979098983108997,0.09981734957545996,-0.2554183299653232,-0.1355948611162603,-0.1456660539843142,0.04335387842729688,0.0750807523727417,-0.6873916829936206,0.9604122615419328,-0.4469485832378268,0.1973764873109758,-0.5537307937629521,0.26305577997118235,0.5469439192675054,0.9605002091266215,0.6328985346481204,0.28829396422952414,-0.5126167917624116,0.7423337646760046,-0.09371389262378216,-0.7826828826218843,0.6732353256084025,0.8084054584614933,0.08438467048108578,-0.2324401712976396,-0.9703415483236313,-0.8769659162499011,0.0036862362176179886,0.22218012949451804,-0.1351434476673603,-0.7656421666033566,0.29644292080774903,-0.5429824725724757,-0.5529878195375204,0.19516393449157476,-0.059572788421064615,-0.803333702031523,-0.7984149437397718,-0.7103508980944753,0.7502039717510343,0.7985884617082775,-0.9125579241663218,-0.4306570044718683,0.2982716718688607,0.6165461530908942,-0.2037965040653944,0.40426634484902024,-0.9434385392814875,0.32081635016947985,0.9570207661017776,0.6698034717701375,0.7790074869990349,0.2087298445403576,0.6850264915265143,0.8290851530618966,0.9703786983154714,-0.521173202432692,-0.41948799090459943,0.09339933888986707,0.8816478406079113,-0.3389247036539018,-0.24877364002168179,0.6990844928659499,0.976749412715435,0.8543429840356112,-0.20537167182192206,0.5978022641502321,0.5593293616548181,0.42797895055264235,0.13764961622655392,0.28022240148857236,0.6801961059682071,-0.5689572510309517,-0.020589342340826988,0.7483636224642396,0.6165695050731301,-0.12056337157264352,-0.12270041042938828,0.7899372139945626,-0.36329147359356284,0.7381922136992216,-0.7420543171465397,-0.7064803256653249,0.6319597898982465,-0.26122647523880005,0.7402923749759793,0.0755948880687356,0.32411161344498396,-0.8580370903946459,0.11307223048061132,0.183766835834831,0.4134550313465297,0.30582341831177473,0.5144350291229784,0.598839782178402,-0.19645152380689979,-0.8434634786099195,-0.10941992793232203,-0.7603155351243913,-0.30458221258595586,-0.7054837220348418,-0.10705119511112571,-0.013365284074097872,0.3403164534829557,-0.22592158569023013,0.5441265851259232,-0.0356047828681767,-0.4578669974580407,-0.6888492866419256,-0.862603064160794,0.20612006587907672,-0.24158969661220908,-0.36589889554306865,0.3985837041400373,0.815472356043756,0.6194415879435837,0.7054764842614532,0.9031325904652476,0.57969776308164,-0.6585777890868485,0.6954430905170739,0.3349420139566064,0.5779357510618865,-0.04233882902190089,0.6225356007926166,0.06564758438616991,-0.8724823966622353,0.34802213218063116,-0.09254764998331666,0.1340389857068658,0.4865771038457751,-0.7889706329442561,0.16342750890180469,-0.7531352979131043,-0.27448002807796,0.24660262605175376,-0.05761518282815814,-0.15334424609318376,-0.958329982124269,0.2283582892268896,0.2606922294944525,0.6062344252131879,0.9895335822366178,0.6499598510563374,0.8633678895421326,0.6309073325246572,0.020302767865359783,-0.40905540715903044,-0.9573435122147202,-0.06989644607529044,-0.3679315815679729,-0.2576815919019282,-0.2617869861423969,-0.4117936338298023,-0.061405659187585115,-0.5863451194018126,-0.10415895283222198,0.5278355595655739,0.2737836893647909,0.015539858490228653,0.4015154712833464,-0.3120245994068682,-0.5397435817867517,0.8826760957017541,0.04861470218747854,0.23962886491790414,-0.11591043556109071,0.418733399361372,-0.3765698717907071,0.8207145445048809,0.6800711024552584,-0.9558759033679962,0.058712012600153685,-0.8534376719035208,0.335714029148221,0.9729921342805028,0.6123796422034502,-0.23659599153324962,-0.6422670446336269,0.8189012496732175,0.996543844230473,-0.8445623586885631,-0.13940786244347692,-0.2743198052048683,0.3848188454285264,0.45970669062808156,-0.5399126559495926,-0.27668668143451214,0.6773798204958439,-0.22467907750979066,0.6975719905458391,-0.05247291177511215,0.22186376713216305,-0.5069911619648337,-0.9310790412127972,0.6199245066381991,-0.41338084917515516,-0.4290403355844319,-0.021593278273940086,0.3260053666308522,0.10294220689684153,0.12597423139959574,0.9660303485579789,-0.48285081377252936,0.921800107229501,-0.703571748919785,0.8817745484411716,0.996887213550508,0.7390777878463268,0.58573511056602,-0.030734454281628132,-0.09457398764789104,-0.3591801659204066,-0.3110917783342302,0.2553507746197283,0.3610107842832804,0.8257304597645998,-0.48476860160008073,0.07175696967169642,-0.709270681720227,0.5902607934549451,0.34156275214627385,-0.5352778509259224,0.20851945970207453,0.7468097596429288,-0.2821644037030637,0.6079551503062248,-0.31918295193463564,0.36182655300945044,-0.9880389864556491,0.2810932267457247,0.1882370882667601,0.7640049168840051,0.4114408721216023,-0.6515956758521497,-0.9039459503255785,-0.6778320665471256,-0.1171076288446784,-0.6596517716534436,-0.15878518717363477,0.10271922219544649,-0.9040597369894385,0.3070416124537587,0.020990527234971523,0.7242762274108827,-0.995924367569387,-0.583731587510556,-0.7621376398019493,0.46202555438503623,0.00016270065680146217,-0.5195751683786511,-0.022592008113861084,-0.28221803344786167,0.7786936992779374,-0.78600422013551,-0.409922210033983,0.3930425704456866,-0.22401375090703368,0.8222302566282451,-0.7533791651949286,0.3757158904336393,0.5421359771862626,-0.7487117890268564,-0.2748144241049886,0.6430059112608433,0.1741458629257977,0.5768408682197332,0.7071888721548021,0.12641692766919732,-0.2543668355792761,0.5645889244042337,0.7445515817962587,0.9121461822651327,0.17097198078408837,0.5450990158133209,0.5990789378993213,-0.2557146670296788,-0.8954690522514284,-0.6097905202768743,0.8135380134917796,-0.6733918110840023,0.22296204278245568,0.3796104067005217,0.6933128335513175,0.4239790318533778,0.9308008085936308,0.7703099730424583,0.8015500227920711,-0.572656927164644,0.5847741346806288,-0.598182559479028,0.772546130232513,0.5598461674526334,-0.22577369073405862,-0.09373753610998392,-0.0318463989533484,-0.34659662330523133,0.6554013104178011,0.8033229690045118,0.1970916031859815,0.2708875807002187,0.23559658648446202,0.6377949425950646,-0.8008064893074334,-0.32684015156701207,-0.3968205242417753,0.431770998518914,-0.7079151882790029,-0.04808782273903489,-0.46097924560308456,-0.5212458837777376,-0.7299470091238618,0.7166843190789223,0.452656336594373,0.9444499798119068,-0.1380971814505756,0.19055594084784389,0.4802021160721779,-0.08379515027627349,-0.6170907681807876,-0.8994980142451823,0.6530618844553828,0.8222317141480744,-0.7924001826904714,-0.7928430046886206,0.9494845550507307,-0.09021093789488077,-0.2926794160157442,-0.051324783358722925,0.339635185431689,0.0295194610953331,-0.1151638668961823,0.1934142643585801,-0.6166283753700554,0.6568280979990959,0.8692039013840258,-0.12650057533755898,-0.13250620244070888,0.4526229682378471,-0.618093675468117,-0.5249017272144556,0.5622301665134728,0.5229381215758622,-0.15210155071690679,0.31028355984017253,0.14949664706364274,0.23529533203691244,0.7842065268196166,0.6778382351621985,-0.7071784297004342,0.12772934511303902,-0.6986711211502552,-0.6428439184091985,0.7343726409599185,-0.9129425208084285,0.8340203822590411,-0.06027904013171792,0.21277436753734946,-0.06718689342960715,0.9378475663252175,0.9368833834305406,-0.5192721961066127,0.8550543924793601,0.4651752058416605,0.4128933846950531,0.8066421835683286,-0.7677396084181964,0.3837260017171502,0.6338272108696401,-0.5572025654837489,-0.1497958372347057,0.3737496417015791,0.7282258151099086,0.41940178675577044,0.558672389946878,0.986428877338767,-0.7902200892567635,0.4998693410307169,-0.2131403349339962,-0.909717483446002,0.4591631065122783,0.08156497217714787,0.44934610836207867,0.4089613356627524,-0.549118930939585,0.396046323236078,-0.6514926766976714,-0.35379460686817765,0.09220120776444674,0.4426002614200115,-0.807029037270695,0.49457220593467355,0.9926956002600491,0.6197258909232914,-0.22030941303819418,0.9809380620718002,-0.0047256662510335445,0.32215042831376195,-0.615847181994468,-0.07249487238004804,0.9004850387573242,0.773352362215519,0.19646188896149397,0.4098078040406108,-0.09542543673887849,0.09225195553153753,-0.05422432767227292,-0.1912130257114768,-0.27111539663746953,0.9070658520795405,0.9402777911163867,-0.4892578814178705,-0.77734495094046,0.5898011620156467,-0.23894748790189624,-0.40386861469596624,-0.4221168081276119,-0.5327955759130418,0.487729755230248,-0.5169246881268919,-0.032469707541167736,0.325932411942631,-0.28750494588166475,0.6918545514345169,-0.698315120767802,-0.5914571858011186,0.20769152464345098,0.29768087435513735,-0.02377343876287341,0.6015131743624806,-0.19381283596158028,-0.6092433142475784,-0.23283239966258407,-0.32092156866565347,0.14616473531350493,0.9978171461261809,0.4157806704752147,0.8978082593530416,0.8515377198345959,-0.548092142213136,0.9979887832887471,-0.0049276105128228664,-0.3927830317988992,-0.31757436227053404,0.14762320276349783,-0.9764352599158883,-0.1989897838793695,-0.7087291576899588,0.7344865216873586,-0.27466690028086305,-0.7967364708893001,-0.9836313161067665,-0.27805279521271586,0.5365967899560928,0.3446331382729113,-0.7458668318577111,0.43335362151265144,-0.7022977476008236,0.014239923097193241,0.9729811120778322,-0.7198138800449669,0.26451677922159433,0.14373414544388652,0.3317540558055043,0.43398297019302845,-0.16795870941132307,-0.42507942393422127,0.6453529777936637,0.6605644733645022,-0.73553217202425,0.4578864867798984,-0.19389856467023492,0.5247698766179383,0.7441275110468268,0.1665402869693935,-0.8857819139957428,-0.9742767666466534,-0.03544382331892848,-0.012059649918228388,-0.6400480177253485,-0.5857910634949803,0.942261001560837,-0.08774818340316415,-0.8276996896602213,0.21007219841703773,0.9709423049353063,0.3778724377043545,-0.5014126091264188,0.34133080020546913,0.19469845481216908,-0.5082356608472764,0.200965101365,-0.5505660832859576,0.871626996435225,-0.5152213596738875,-0.39077383279800415,-0.597817120142281,-0.8675469546578825,0.4642751612700522,-0.2533770655281842,0.2592114764265716,-0.4612336494028568,0.9825722114183009,-0.31484676571562886,0.04630206944420934,-0.4998087459243834,-0.9485391369089484,-0.7365935356356204,0.6388097400777042,0.14092922117561102,-0.3316458589397371,0.4254518919624388,-0.23413815582171082,-0.46534993406385183,0.7436931217089295,0.8022144404239953,-0.16265977267175913,-0.8977299551479518,0.6914304113015532,0.26166471745818853,0.8887640442699194,0.9677804647944868,-0.02329144673421979,-0.34472902165725827,-0.9783913395367563,0.0161764700897038,0.9540017140097916,0.9109865422360599,-0.860470911487937,0.9037589901126921,0.7924638092517853,0.3602156350389123,-0.009406502824276686,0.9811302893795073,-0.10717717465013266,-0.380981660913676,0.2073430586606264,0.015533710829913616,0.6501551102846861,-0.7815817929804325,-0.3215365558862686,0.27918278193101287,0.11737832613289356,0.2826363309286535,-0.6397664770483971,0.5296528129838407,0.3473910642787814,-0.08658182248473167,-0.749724896159023,0.370819962117821,-0.9657552284188569,-0.23486784985288978,-0.43271243618801236,0.5784331317991018,-0.9201526665128767,0.16470738593488932,-0.008955174591392279,0.9508620905689895,-0.8931737807579339,-0.14245990803465247,-0.5026665199548006,-0.08408729638904333,0.04383860668167472,0.9080796972848475,-0.848727161064744,-0.6817230982705951,-0.699674014467746,0.5588574553839862,0.4680556016974151,-0.13004847103729844,-0.1392092164605856,0.8029459421522915,0.5114687709137797,-0.912169907707721,0.9039360680617392,-0.7050103428773582,-0.5766940768808126,-0.49421892687678337,0.0869576632976532,-0.8249034024775028,-0.9038139428012073,0.13092351937666535,0.5404392462223768,-0.9000379997305572,-0.252995946444571,-0.5025917012244463,-0.5144871831871569,0.284070891328156,-0.3280154322274029,0.32790695829316974,-0.7763720946386456,0.5661072996445,0.5021173767745495,0.5840577557682991,-0.9017932247370481,0.32345346827059984,-0.3375756195746362,-0.9278430221602321,-0.7111662561073899,0.4756811964325607,-0.5227445713244379,-0.8535137958824635,-0.6290319697000086,-0.37591690570116043,0.12915969220921397,-0.606489525642246,-0.4562791772186756,-0.04624712420627475,-0.10764340404421091,-0.9092506933957338,0.7838335242122412,0.7435496682301164,0.574501974042505,0.9344249502755702,0.9458009619265795,-0.6700767274014652,0.5309880538843572,-0.8765578595921397,0.7649484574794769,-0.4589058244600892,0.5155786965042353,-0.5713275298476219,-0.5145649849437177,-0.26865077996626496,0.15701862424612045,0.2202375866472721,0.7272252305410802,0.6332768495194614,0.7712845928035676,-0.4607563209719956,-0.4506870280019939,-0.024227131623774767,0.696453683078289,-0.4917372912168503,0.4527550870552659,-0.03695808257907629,-0.34871178632602096,-0.05673336610198021,-0.6561874784529209,0.9385824613273144,-0.35486900992691517,-0.2684674537740648,-0.41264678072184324,-0.9755766284652054,0.2799504352733493,-0.024700248148292303,-0.1032663220539689,0.19702351419255137,-0.7462641107849777,-0.08414508309215307,-0.7330836481414735,0.3449332914315164,0.9660247205756605,0.3375728763639927,0.795140671543777,0.5744564542546868,-0.5688938605599105,0.8723893887363374,0.08632035413756967,-0.46621700981631875,-0.7713678716681898,0.8987588798627257,0.7843464566394687,0.32392301596701145,-0.4056373513303697,0.08504950441420078,0.5035631004720926,0.23799324734136462,-0.44912249175831676,0.1980940387584269,0.4165752804838121,0.47559510776773095,0.3620270802639425,-0.358091673348099,-0.40069932816550136,-0.39436829974874854,-0.03839859226718545,0.9475680277682841,-0.04508275631815195,-0.07249064603820443,0.8991526030004025,0.2488406184129417,0.3703739959746599,0.13265183428302407,0.8817903306335211,-0.037085802759975195,-0.5200278484262526,0.6333976574242115,0.8323295027948916,-0.3252147175371647,0.8935051104053855,0.19435481494292617,-0.9763037161901593,0.4492930807173252,-0.9469219762831926,0.7798735764808953,-0.6346072987653315,0.1962204952724278,-0.710436177905649,-0.20257718535140157,0.8088344116695225,0.41011790046468377,0.13141462113708258,-0.6637940998189151,-0.19755405699834228,0.8217476648278534,-0.6225779033266008,-0.9735066364519298,-0.1681524934247136,-0.5146082285791636,0.9199060881510377,-0.6306412336416543,0.7952726022340357,-0.02123090671375394,-0.15157482959330082,0.44096625270321965,0.20535688987001777,-0.8852562485262752,0.8287049047648907,-0.45448577450588346,-0.16708844201639295,-0.06417626328766346,0.6399786537513137,-0.42226341692730784,-0.9004029659554362,0.316023756749928,0.38863902259618044,-0.340047771576792,0.4843263109214604,-0.8112528058700264,-0.22486194176599383,-0.9973972849547863,0.6186328437179327,-0.8158178590238094,0.4954689834266901,0.2385214027017355,-0.13010120391845703,0.8328598323278129,0.0736182308755815,0.575000359211117,-0.5482824752107263,0.3129296526312828,0.9261278510093689,0.6922139315865934,-0.7449531760066748,0.4654418593272567,0.5837487042881548,-0.47752600023522973,-0.9448947920463979,0.4411094365641475,0.9339986192062497,-0.039624875877052546,-0.8048906843177974,0.03573990659788251,0.5559080946259201,-0.0728331464342773,0.5971565516665578,0.7284366800449789,0.9796819710172713,0.6041240044869483,0.8423711974173784,0.12519687693566084,-0.6616294444538653,0.03448398457840085,0.4536719135940075,0.8485882948152721,-0.4403570657595992,-0.9889848828315735,-0.039897733833640814,0.8927283976227045,-0.3212868361733854,-0.5579720102250576,-0.6939807264134288,0.00405210442841053,0.5560490535572171,0.3392457817681134,-0.9866733844392002,-0.42125064926221967,-0.25459944922477007,-0.7980011664330959,-0.16460096137598157,0.3630027906037867,0.8686700621619821,-0.770409369841218,0.344720755238086,-0.41095766238868237,-0.2221591342240572,-0.29878425411880016,-0.4226858764886856,-0.234033462125808,0.4305209182202816,-0.45675182389095426,0.6784807285293937,-0.09039812674745917,-0.4923577085137367,-0.8926458084024489,0.9950408260338008,-0.9019223852083087,-0.17643301654607058,-0.601222351193428,-0.4379146909341216,-0.0471951924264431,-0.9904631576500833,-0.991276768501848,0.7984518907032907,-0.985670818015933,0.02549554780125618,-0.4407064435072243,-0.7168980101123452,0.7234085681848228,0.12643470102921128,-0.4430491188541055,-0.6640428029932082,0.3841648567467928,0.4876968637108803,0.731923708692193,0.315782873891294,0.07724713208153844,0.5236610262654722,0.7755236970260739,0.8256471459753811,-0.9652071604505181,-0.03384415619075298,-0.26423389557749033,-0.030296633020043373,0.003962906543165445,0.6650083414278924,0.34588172379881144,-0.4149804641492665,-0.3321646270342171,-0.8514306177385151,0.42928858334198594,-0.2212592139840126,-0.6344611220993102,-0.5320298429578543,-0.6676892805844545,-0.2525474880822003,0.6871062037535012,0.18463488947600126,-0.4015794200822711,-0.4982285941950977,0.7290828945115209,0.29393093613907695,-0.19587759720161557,0.6586987022310495,-0.7332723154686391,-0.2253747428767383,0.10835948679596186,0.3335063047707081,0.4778842143714428,0.5183183923363686,0.5658331103622913,0.288572583347559,0.9877833556383848,-0.28004020638763905,0.5340874996036291,-0.06977238692343235,-0.770696303807199,-0.45912612695246935,-0.577987065538764,0.16950684459879994,-0.5468078483827412,0.5376994274556637,-0.4537113197147846,-0.5177241386845708,-0.6688262666575611,0.4048542659729719,-0.06409970344975591,0.500278796069324,-0.7764169727452099,0.3171571963466704,-0.7065135780721903,0.08975194441154599,0.7333540990948677,0.3642438412643969,-0.4652978419326246,0.5922744227573276,-0.8730015465989709,-0.3309197607450187,-0.956400497816503,0.3495182991027832,0.9894076571799815,0.007936657406389713,0.34891815995797515,-0.4285851796157658,-0.7154483632184565,-0.9056469681672752,0.6049729725345969,0.6410800558514893,0.7081606793217361,0.21634986996650696,-0.3894803118892014,0.6252079154364765,0.6638800641521811,-0.2594095286913216,-0.1419038102030754,0.7386861415579915,-0.00024013640359044075,-0.6541597354225814,0.15483658900484443,-0.9213340384885669,0.13646282954141498,0.000625847838819027,0.6329138977453113,-0.14067858923226595,-0.6588410073891282,0.2372706695459783,-0.6979472460225224,0.1303839054889977,-0.41304578352719545,0.7900568810291588,0.46305957389995456,0.792548855766654,-0.5537937758490443,0.6974625992588699,0.22082862257957458,0.6645909999497235,0.7704670554958284,-0.19330024253576994,0.048362566623836756,0.9398376499302685,-0.8456175993196666,0.025211355183273554,-0.251085851341486,0.5001448048278689,-0.06843043165281415,-0.02948789205402136,0.9558589784428477,-0.16466943779960275,0.8140164539217949,0.5949526079930365,0.34254303434863687,0.8040647278539836,0.03573267860338092,0.46369521552696824,-0.24472162779420614,-0.9022530657239258,0.7942955875769258,0.697155543603003,0.0043260762467980385,0.6102315583266318,-0.8484739945270121,0.296931192278862,-0.7949839923530817,-0.3459818153642118,0.23441428504884243,0.5516721191816032,-0.7985351020470262,0.7496413798071444,-0.45830496633425355,-0.36870041117072105,0.48661375790834427,0.5164625090546906,-0.9850517059676349,0.7985205864533782,-0.013995283283293247,0.09179647266864777,-0.6473257807083428,0.42598557006567717,0.17331231478601694,0.6396657284349203,-0.8705573529005051,0.30754663283005357,0.5751093369908631,0.86483792681247,0.9666837970726192,-0.20872816443443298,0.8847300680354238,0.6233776202425361,0.35608953470364213,-0.020088435150682926,0.7404601029120386,-0.9346236307173967,-0.6306846369989216,-0.0008400776423513889,0.12113646138459444,-0.20479977503418922,-0.8955788109451532,-0.21434296248480678,0.2100629424676299,0.5003507588990033,-0.37714199535548687,-0.34882559161633253,0.9304151805117726,-0.5837802793830633,0.784689808730036,0.7777632945217192,-0.5331404875032604,-0.4356414540670812,-0.4584492794238031,0.9615872008726001,0.6042325063608587,-0.8381247175857425,-0.8087237509898841,-0.7627962441183627,-0.6212296113371849,-0.30138673447072506,0.17053972138091922,-0.8626574650406837,-0.48750514537096024,-0.4308261410333216,-0.34964311262592673,-0.02560592582449317,-0.9834904372692108,-0.9277872378006577,0.586144074331969,0.48160013603046536,0.9558611838147044,0.17982286680489779,-0.5029684761539102,-0.1152664003893733,-0.3198459632694721,0.7472168300300837,-0.24166935170069337,0.40188330551609397,0.18556322250515223,-0.865605560131371,-0.3543920023366809,0.6178140421397984,0.9897634126245975,-0.41490990156307817,-0.752911641728133,0.6391208018176258,0.8668208899907768,-0.41105762636289,0.014544116333127022,0.3779715280979872,0.9397569079883397,0.9005097635090351,-0.14111921191215515,-0.8536628889851272,-0.3302667401731014,0.5398151203989983,0.8067973181605339,0.5015378626994789,0.9212039955891669,0.14801460644230247,0.15043419366702437,0.6799498563632369,0.21966877253726125,-0.4473054804839194,-0.7927436963655055,0.3843248118646443,-0.8113640793599188,-0.6251338040456176,0.6787649490870535,-0.8068465078249574,-0.829937431961298,0.1966502876020968,0.005610797554254532,0.8004414667375386,-0.64114606147632,-0.10363061726093292,0.21129788691177964,-0.1263824193738401,-0.08157310448586941,0.9525403175503016,0.3779526650905609,-0.6847444833256304,0.036647841800004244,-0.15829585120081902,0.9372123056091368,0.2059424575418234,0.9178413259796798,0.4498537499457598,0.3637700085528195,-0.8681553672067821,-0.7303701783530414,-0.49209678871557117,-0.5469210669398308,-0.9082669168710709,0.2021293928846717,-0.28765930887311697,0.7810720410197973,0.9547347468324006,-0.8561426866799593,-0.05313769727945328,-0.42597114527598023,0.7046285839751363,-0.08212135918438435,-0.7571522914804518,0.12772986572235823,-0.22885936731472611,0.1618938916362822,-0.9094951311126351,-0.8327776538208127,-0.9453458487987518,-0.5775899519212544,0.9679937926121056,0.25951269874349236,0.7659746906720102,-0.15513638267293572,0.07599620101973414,-0.621751916129142,0.5966963530518115,0.4408945180475712,-0.8690992170013487,-0.25309627735987306,0.373423975892365,-0.9623914626426995,0.3776068896986544,-0.2588081583380699,-0.4903673827648163,0.6705070096068084,0.27072305837646127,-0.8735560309141874,-0.6138933249749243,0.8903723801486194,0.21828283788636327,0.28879821905866265,-0.1508677052333951,0.10998796345666051,0.4519693562760949,-0.3238564166240394,0.9836324164643884,-0.18117727944627404,-0.7604959807358682,-0.9908559531904757,-0.9822300556115806,0.39565150579437613,-0.07887807488441467,0.7141721867956221,-0.912986817304045,0.5000283638946712,-0.5265057315118611,0.4138835109770298,-0.8016282073222101,0.05767113156616688,0.76969257555902,-0.39421097794547677,0.7269593733362854,0.49082575365900993,-0.41367178969085217,0.7454828242771327,0.17959050741046667,0.5644964412786067,0.7248225649818778,0.5364946168847382,-0.8230718425475061,-0.9090079898014665,0.8763972064480186,0.6666958685964346,0.6319184442982078,-0.97452453058213,-0.7018257477320731,0.3428830145858228,-0.8772924523800611,-0.4569134688936174,0.3408088693395257,-0.9774600770324469,-0.22599470429122448,0.828460140619427,-0.16614561155438423,-0.3608126570470631,-0.2879849127493799,0.4655161895789206,0.6603365615010262,0.21467888075858355,-0.7085596970282495,-0.8828523252159357,0.13037344068288803,-0.09682748792693019,-0.6021027155220509,0.3773290296085179,0.012335459236055613,-0.40256464714184403,-0.7584067587740719,-0.14853742578998208,-0.6520375893451273,0.843332776799798,0.2609741184860468,-0.2788729118183255,-0.5465734913013875,0.8442536732181907,-0.21335124410688877,-0.3328659166581929,-0.9141447865404189,0.9502828414551914,-0.10499961115419865,0.28528441535308957,0.9792387909255922,0.20945225283503532,-0.5779378297738731,-0.22877521580085158,-0.9566197474487126,-0.08448728732764721,-0.39686350291594863,0.6002489235252142,-0.6962143592536449,0.9125319002196193,0.5499361348338425,0.3964653145521879,-0.42660608934238553,0.1546416599303484,-0.4207214745692909,0.9138592300005257,-0.3986132275313139,0.2736540259793401,-0.11599872121587396,0.4240923523902893,0.9916997444815934,-0.12085522385314107,-0.38628719048574567,0.15125651098787785,-0.8917905376292765,-0.08816701592877507,-0.3728717816993594,0.4945756266824901,-0.6425054026767612,-0.3085741060785949,-0.04910660721361637,-0.8565451372414827,-0.8135382630862296,-0.6503820745274425,0.46113300789147615,-0.9495954671874642,0.8104609386064112,0.2913615764118731,0.8716681795194745,0.37005777563899755,-0.448777720797807,0.5114562688395381,-0.4855349687859416,-0.4872652031481266,0.30870428029447794,-0.2112654373049736,-0.2129402202554047,0.30677122436463833,-0.23411346366629004,-0.287348969373852,0.5358634660951793,0.3258328465744853,0.3194156251847744,0.8326014541089535,0.037284848280251026,-0.47802486829459667,0.7882038550451398,-0.2809866853058338,0.6261994391679764,-0.9444285477511585,0.6195834130048752,-0.7981994329020381,0.7563190460205078,0.26337272953242064,-0.7839395413175225,0.02261984022334218,0.6596813653595746,-0.5652385638095438,0.5227913949638605,0.3689048863016069,-0.7058794335462153,-0.4423314966261387,0.5775527288205922,0.9148025698959827,-0.3148467158898711,-0.5940259722992778,0.4795324453152716,-0.87343834573403,0.8249055929481983,-0.799087752122432,-0.5469973459839821,0.5588275543414056,0.050033824518322945,0.9259699666872621,-0.5845758439972997,-0.1530584990978241,0.22783077927306294,-0.16800282103940845,0.23915495444089174,-0.33078555716201663,-0.6861379421316087,-0.7922855569049716,-0.803724033292383,0.1105249198153615,0.7701974436640739,-0.9023762070573866,-0.6990490294992924,0.478196875192225,-0.10368573851883411,-0.2867803587578237,-0.12090020487084985,0.18601429974660277,-0.5547580164857209,0.26353413285687566,-0.25325396098196507,-0.18683374486863613,0.12470780359581113,-0.20232621300965548,-0.0978206186555326,-0.5665254620835185,-0.6634698528796434,-0.8800372150726616,-0.32716150116175413,0.890820391010493,0.27314949641004205,0.4030416766181588,-0.970106647349894,0.012498370837420225,0.9168410710990429,0.8283304125070572,-0.5937238056212664,0.8549103047698736,-0.5440555694513023,0.8430124251171947,-0.7718108748085797,0.4394560228101909,-0.054845241364091635,-0.10621740110218525,-0.971317833289504,-0.05258260853588581,0.8989260736852884,-0.19894144590944052,-0.5537418168969452,0.5032702879980206,-0.6686800783500075,0.3618754795752466,-0.8677243804559112,0.4453646061010659,0.7139031332917511,0.3282234868966043,-0.6030032751150429,0.2481330898590386,-0.5129933906719089,0.8865535631775856,-0.8907288913615048,-0.5867173415608704,-0.9514976697973907,0.9894568203017116,0.14600013848394156,0.3370237615890801,-0.2556087886914611,-0.3527598981745541,0.629107101354748,0.5315454886294901,-0.9545192844234407,-0.9628326366655529,0.34806383261457086,0.5477964961901307,0.3121677599847317,-0.9513417049311101,0.5746025461703539,-0.8632973129861057,-0.5521619119681418,-0.47430314403027296,-0.23723554704338312,0.07099404511973262,-0.14193640043959022,-0.13481322256848216,-0.045470270328223705,-0.6552657512947917,-0.933864900842309,0.9526998740620911,-0.49409099435433745,-0.6511375093832612,-0.0027196072041988373,-0.42551233246922493,-0.7252349839545786,-0.49840179504826665,0.7138629900291562,-0.9023496168665588,-0.1565350922755897,0.06600074004381895,-0.3008826752193272,0.5860314788296819,0.2803634889423847,0.34850717848166823,-0.13782215816900134,0.9099820647388697,-0.5890361829660833,0.18707012804225087,-0.5159346051514149,0.7139604105614126,0.3212303491309285,0.8157083014957607,-0.6799063216894865,-0.24003617791458964,-0.3253108160570264,0.38121514907106757,0.09026779280975461,0.7036530785262585,-0.8757569873705506,0.20243495469912887,0.06637153821066022,-0.19547521695494652,-0.04858970828354359,0.6604615007527173,-0.27845405228435993,0.5809454033151269,-0.05764379072934389,-0.9798534759320319,-0.8252417822368443,0.5506781935691833,0.16249793116003275,0.41314585600048304,0.34978463500738144,0.2218045126646757,-0.46201186161488295,-0.769667275249958,-0.0001436956226825714,0.5205026678740978,0.5965585582889616,0.6287399576976895,0.41647372394800186,-0.9757566126063466,-0.40059121744707227,0.45856498507782817,-0.24186067329719663,-0.984027202706784,-0.7245621071197093,0.9446338647976518,-0.7221628967672586,-0.11168620456010103,-0.2888343739323318,-0.668105598539114,0.07718450389802456,0.2819222006946802,0.06575557170435786,0.3525956957601011,0.9240077901631594,0.8147267843596637,0.8766218209639192,-0.2626971770077944,-0.15145194856449962,-0.47020532097667456,-0.3613156103529036,0.8017035415396094,0.8213592828251421,-0.046525441110134125,0.06781605258584023,-0.9234018954448402,-0.20184745080769062,0.7118401154875755,0.2881539245136082,0.5354025959968567,-0.6520163924433291,-0.4302572486922145,-0.7759174332022667,-0.3976255329325795,-0.8807364087551832,0.2557584154419601,0.4574138126336038,0.8355713300406933,0.4824878079816699,-0.14373073959723115,-0.321122323628515,0.6819120445288718,0.5956910019740462,-0.8473970559425652,0.12207845319062471,0.5365072595886886,-0.13787137996405363,0.9800824783742428,-0.9191654152236879,-0.5701247029937804,-0.9714222410693765,-0.01806037686765194,0.28441980900242925,0.23462280025705695,0.1206789743155241,-0.3077654060907662,0.9374972898513079,-0.8729882910847664,-0.70619050366804,0.4782047229819,0.6219097790308297,-0.43241443717852235,0.45365137746557593,0.4822513349354267,-0.8049766360782087,-0.02889800351113081,-0.6594848199747503,-0.4435472316108644,0.17814300674945116,0.12489065388217568,-0.015684510581195354,-0.5966794737614691,0.21318926895037293,0.21451975172385573,0.8018888682126999,0.7295049694366753,-0.9222729904577136,0.07267860881984234,-0.4483586149290204,0.5631243824027479,0.029263168573379517,-0.19102891581133008,0.6051599299535155,-0.13292783219367266,0.6139168478548527,0.2582786176353693,-0.875459713395685,-0.5028822184540331,0.3494979655370116,0.3856853526085615,-0.7865763129666448,-0.48133017867803574,-0.3308967649936676,0.1828880002722144,-0.5803210590966046,0.030226299539208412,0.7418342866003513,0.2818047716282308,0.04565942659974098,0.42658351827412844,-0.06848604744300246,-0.7343884902074933,0.918993182014674,0.869087680708617,-0.5979335559532046,0.5279512018896639,-0.5524222394451499,0.6503652296960354,-0.2208270262926817,0.16074034152552485,-0.9526324742473662,0.5174824055284262,-0.9147288096137345,0.3141052289865911,-0.2943402426317334,0.41302089765667915,-0.6749432599171996,0.9750516233034432,0.9045892609283328,0.8173323515802622,0.7728917761705816,0.8549310443922877,-0.8628651485778391,-0.39785157376900315,-0.15222417935729027,0.05702080624178052,0.8206738601438701,0.0018424750305712223,0.5712908254936337,0.42124422499909997,-0.6243018992245197,0.5991368256509304,0.439932060893625,-0.32807608554139733,-0.517296395264566,0.7897497033700347,0.4031692445278168,-0.7059920295141637,0.524025802500546,-0.4012563838623464,0.10281783156096935,-0.3266988042742014,0.0648063481785357,0.5922765922732651,0.856884325388819,-0.43790238443762064,0.877848603297025,0.3749097944237292,0.35810290556401014,0.8822580715641379,-0.8947965740226209,0.735449016559869,0.2877084012143314,0.02195247821509838,0.42868570797145367,-0.1848522280342877,-0.8350320970639586,-0.9792514336295426,0.8775071129202843,0.26300746761262417,-0.794700519181788,0.759454227052629,0.9787651658989489,-0.015508558601140976,0.8672965127043426,0.6719902032054961,0.9480967614799738,0.7900932882912457,0.7490347046405077,0.8044051011092961,-0.6140172588638961,-0.34412757540121675,0.9192114383913577,-0.6134911580011249,-0.2893826402723789,-0.890350142493844,-0.6209951592609286,0.6810054616071284,-0.010385151486843824,-0.9060933813452721,-0.2456126268953085,-0.4919233503751457,0.5919775147922337,-0.8044165587052703,0.9301054473035038,-0.17858436750248075,0.2911835480481386,-0.987231305334717,-0.37820516899228096,-0.2089226613752544,0.5919444286264479,-0.9909191443584859,-0.8084470462054014,0.249077879358083,-0.3052104515954852,0.17113720625638962,0.2697273250669241,0.4663088792003691,-0.6699803844094276,-0.16942892130464315,0.954810369759798,-0.6245283712632954,0.07285389816388488,0.8414812940172851,0.9765408546663821,-0.5434463401325047,0.2678561513312161,0.8978066043928266,0.9612547364085913,0.7726765833795071,0.5883630895987153,0.90328683052212,-0.7823689365759492,0.9426704770885408,-0.6363525963388383,0.059322039131075144,0.8593307258561254,-0.9941041823476553,-0.48299773689359426,-0.6540477350354195,-0.533812920562923,0.3309494759887457,0.05058203311637044,0.8085737102665007,0.13054009154438972,0.652397517580539,-0.7282308526337147,-0.1939700278453529,-0.7389101623557508,-0.7833482008427382,-0.40033508790656924,-0.9554034611210227,0.33588534453883767,-0.8717867243103683,0.03376373974606395,-0.43475441727787256,-0.3538127690553665,-0.7363147768191993,0.17710594087839127,0.7774269632063806,0.8171866098418832,0.4685176298953593,0.9442783039994538,-0.8066120673902333,0.9586356086656451,0.39557324768975377,-0.8995557124726474,0.7789625735022128,0.7192876483313739,0.7242352017201483,-0.453988220077008,0.13782616471871734,-0.012709720060229301,-0.5919879083521664,-0.17677284451201558,-0.640825713519007,0.01939590461552143,-0.42897305451333523,-0.736215085722506,0.9807482529431581,0.7091014399193227,0.7067017373628914,0.9100239505060017,0.8692474430426955,0.6539887092076242,-0.7285709632560611,0.9486515400931239,0.4612886165268719,-0.016874753404408693,-0.22173231607303023,0.9764037583954632,0.22565520415082574,-0.40655974112451077,-0.811598236206919,0.21272025350481272,0.06483591767027974,0.13049567071720958,0.03635080065578222,0.29679035767912865,0.04646077146753669,-0.00776029285043478,0.09898194810375571,-0.13371827034279704,-0.546645687893033,-0.8882514000870287,-0.49656429002061486,0.9261678573675454,-0.2316859820857644,-0.18986865039914846,-0.8093773620203137,-0.2763758711516857,0.6801823577843606,0.23309648223221302,0.8503515073098242,0.34238505689427257,0.6348502095788717,0.8780206409282982,0.9506711787544191,0.020754214376211166,0.7254575658589602,0.492546996101737,-0.16678881226107478,-0.3053085464052856,-0.4856613054871559,-0.5407614493742585,-0.41529894806444645,-0.8099479451775551,-0.4136044345796108,-0.3318057465367019,0.4595261514186859,0.49370044469833374,0.2419069823808968,0.6885170005261898,0.4048253274522722,-0.7196809584274888,0.47153856977820396,-0.19518180564045906,-0.8470200379379094,-0.11799080483615398,-0.7405557166785002,-0.9002882656641304,0.5715062245726585,0.9840848152525723,-0.1712557920254767,-0.34982335986569524,0.0657941154204309,-0.5626223813742399,-0.17538682417944074,-0.6349200145341456,0.15285230847075582,0.545902865473181,-0.9033186864107847,0.06480826623737812,0.08516260841861367,-0.5095083229243755,-0.4998558573424816,-0.5701816938817501,-0.9504498681053519,0.5283472542650998,-0.2797376620583236,-0.6424435582011938,0.7196314274333417,0.0640398501418531,0.892595371697098,-0.569858908187598,-0.9852411653846502,-0.6526465411297977,0.6584329400211573,-0.8778773546218872,0.9729992742650211,-0.6143944836221635,0.3103345846757293,0.5526720169000328,-0.304709589574486,0.936553358566016,0.4431846463121474,-0.5753907538019121,-0.7505809860303998,-0.053373901173472404,0.022464131005108356,0.8110024151392281,0.3024142012000084,-0.8528635748662055,0.8221615310758352,0.018728032242506742,-0.7442970434203744,-0.4709844789467752,-0.408483259845525,-0.66292879357934,-0.7195291179232299,-0.3282546126283705,0.014705925714224577,-0.14031190890818834,-0.6777348862960935,-0.8105221148580313,0.6666603684425354,-0.3649185854010284,-0.6415378227829933,-0.9144722288474441,0.050266798585653305,0.3852474261075258,-0.525716467294842,-0.11620485130697489,0.8353822296485305,-0.3852442419156432,-0.3018982228823006,-0.5436884798109531,-0.4805175648070872,0.6662430847063661,0.9236415233463049,0.2744224634952843,-0.9411342293024063,0.6300973263569176,-0.4056414342485368,0.01763176452368498,-0.6998852775432169,-0.04640303831547499,-0.3531286879442632,0.36865054490044713,-0.9013659730553627,-0.7269541705027223,-0.21035801293328404,0.9792205090634525,-0.39793655602261424,0.38952525751665235,-0.8843526486307383,-0.32994447322562337,-0.31970064993947744,-0.8323366292752326,0.8886784724891186,-0.8103094762191176,-0.6468502227216959,0.6612093560397625,0.3537158127874136,-0.48161206115037203,-0.41316918190568686,-0.9021607507020235,-0.13456422090530396,0.2720363596454263,0.47200084989890456,-0.6188401272520423,-0.7118156226351857,-0.6264658817090094,0.7469594283029437,-0.7939240853302181,-0.4645209242589772,-0.2378328973427415,0.6841393695212901,-0.5918578617274761,-0.8544266992248595,0.9523556856438518,0.3300423910841346,-0.6060545332729816,0.017506503500044346,0.7953602117486298,0.10574299423024058,0.9578216043300927,0.9046432310715318,0.15620132582262158,-0.8125805491581559,-0.12278948817402124,-0.2843112167902291,0.005578207783401012,-0.7447770070284605,0.9389572679065168,-0.2977030575275421,-0.6174409110099077,-0.9664930971339345,-0.4132134704850614,-0.9004777986556292,-0.11390072666108608,-0.13972616381943226,0.9481751932762563,0.937892007175833,-0.09160239528864622,-0.6803662963211536,0.48149219574406743,0.07312038633972406,0.9877245421521366,-0.11408555554226041,-0.9582255077548325,0.8612524499185383,0.5367070832289755,-0.4118307060562074,-0.2907055914402008,-0.12106277281418443,-0.28031613072380424,0.8726699268445373,-0.10417369194328785,-0.2589819896966219,-0.47514100978150964,0.9834305350668728,-0.8375208103097975,0.2163613117299974,0.9468238963745534,-0.17782982485368848,0.6241900511085987,0.7509673750028014,0.11460146820172668,0.6681143445894122,-0.3599999425932765,-0.1387346782721579,-0.25621873000636697,-0.9443635549396276,-0.49568019807338715,0.46373115573078394,-0.20306386798620224,-0.20928136864677072,0.4735133536159992,-0.4433390856720507,-0.12931828759610653,-0.1972602615132928,0.5703009911812842,-0.29696587985381484,-0.5280022220686078,0.10194346448406577,-0.8253833255730569,0.699969008564949,0.5911674117669463,-0.644715528935194,-0.8994757886976004,0.5690318420529366,-0.08494408195838332,0.9823804590851068,0.8129592379555106,0.6865232912823558,-0.2604818632826209,0.3335474096238613,0.07736627897247672,0.0978928105905652,0.8057334632612765,0.131459834985435,0.7045758296735585,0.7428671410307288,-0.02639247104525566,0.8624297408387065,-0.11946239089593291,-0.7801642366684973,0.9108821041882038,0.49524701526388526,-0.9928165259771049,-0.27195416716858745,0.17394432751461864,-0.7071084775961936,0.06178323831409216,0.3044260246679187,-0.05969208758324385,-0.5774425254203379,0.9078524117358029,0.7544625643640757,-0.8511051717214286,-0.5005410057492554,0.9542967062443495,-0.3902733610011637,0.7240307759493589,0.8060548254288733,0.09178167209029198,-0.5952045223675668,-0.7922628968954086,0.1039963229559362,-0.46952227922156453,0.8479466955177486,0.5258406763896346,-0.5334806824102998,0.06318641593679786,0.6280320067889988,0.5381913227029145,0.04811202874407172,-0.6420320346951485,0.6448920387774706,-0.9267034456133842,-0.7944556483998895,-0.09468532912433147,-0.3713668999262154,0.5637397039681673,0.10335240792483091,-0.6906073312275112,-0.0015342775732278824,-0.4278265596367419,0.5436379141174257,0.17479371605440974,0.3030189541168511,0.6441344833001494,-0.921237014234066,-0.6536265914328396,0.46731686871498823,-0.2509775459766388,0.5420025791972876,-0.7683391408063471,0.3989147921092808,-0.4410316217690706,-0.875057976692915,0.19047775398939848,-0.4992478503845632,0.16914327954873443,-0.6098543968982995,0.6475790739059448,-0.49083950370550156,-0.2834154828451574,0.8040334437973797,-0.24045656248927116,-0.919011258520186,-0.6849425379186869,-0.15522133745253086,0.9817486219108105,-0.7057084022089839,0.3527349610812962,0.19236635463312268,-0.7134945997968316,0.7788275508210063,0.813453103415668,0.7502280585467815,-0.08911467669531703,-0.23982765339314938,-0.22134959790855646,0.8211063956841826,-0.5673363986425102,-0.25597047666087747,0.13757182005792856,0.7592962351627648,-0.3788385563530028,0.17612762935459614,-0.8596793469041586,-0.14933177223429084,-0.14668865222483873,-0.6034813309088349,-0.8284804234281182,0.2162120696157217,0.4623422040604055,0.2566042086109519,0.26460745790973306,-0.663641445338726,-0.25499043706804514,0.23076260183006525,0.47343070758506656,-0.3811664623208344,-0.5923950332216918,-0.583736858330667,0.28342585265636444,-0.7927952669560909,0.1787526304833591,-0.9191856617107987,-0.7370446920394897,-0.32752768602222204,-0.02402633475139737,-0.7256411737762392,0.2064264016225934,0.19210793543606997,-0.8543017636984587,-0.4194539017044008,-0.08734139567241073,0.31642526434734464,0.6981133776716888,0.6624944796785712,-0.13413137244060636,-0.2139118816703558,-0.308855714276433,0.5267620831727982,-0.280516748316586,-0.7379306079819798,-0.3411128995940089,0.7258211015723646,-0.5176661540754139,-0.2066231775097549,-0.6596967307850718,0.2440563589334488,-0.7664023227989674,-0.8843348338268697,-0.7848057090304792,0.6329757128842175,-0.4325678492896259,0.28547394648194313,-0.20362319517880678,0.9826911664567888,0.814248338341713,-0.8705705804750323,0.6554514095187187,-0.004953486379235983,-0.4027329687960446,0.9269067994318902,-0.4697157684713602,-0.3706845357082784,-0.669058897998184,0.43664248613640666,-0.9368495200760663,0.22621844056993723,0.7568355584517121,0.7912888708524406,0.775479101575911,-0.7963717435486615,0.2830374357290566,-0.9591676262207329,-0.8005102835595608,-0.3461265964433551,0.4663523123599589,0.34640583163127303,-0.7386575634591281,0.010943165980279446,-0.5949332839809358,0.7432432258501649,0.13007460720837116,-0.9122200096026063,-0.5986872226931155,-0.6110809026286006,0.655835950281471,0.74120784830302,0.24645883170887828,0.0026932195760309696,0.317853978369385,0.16008946811780334,-0.9924479867331684,0.5128058413974941,-0.5742800370790064,-0.9178395657800138,-0.5609569898806512,-0.21834427816793323,-0.7292844844050705,0.06287268828600645,-0.24648105585947633,-0.7907166574150324,-0.5941395149566233,-0.3196637900546193,-0.6992172347381711,-0.3080806559883058,-0.8634645249694586,-0.3428034596145153,-0.016498201061040163,-0.6386977410875261,0.7341678477823734,-0.7643341249786317,0.36795822950080037,-0.9112809640355408,0.8140233256854117,0.6089094947092235,0.4876078888773918,-0.632534961681813,-0.8583488329313695,0.11542745493352413,0.4832315589301288,0.9334711921401322,-0.17390872118994594,0.24561259523034096,0.5847881934605539,-0.20370156690478325,0.7542376783676445,0.719384987372905,-0.16023373883217573,0.9727492546662688,-0.7722704038023949,-0.9182366174645722,-0.11157575435936451,0.8658473948016763,-0.27500788448378444,0.4457141566090286,-0.5945242759771645,-0.6098390966653824,0.05134468339383602,0.7071410808712244,-0.3329752581194043,-0.7420584266074002,0.5766046629287302,-0.8573505296371877,0.0800491077825427,0.14678912051022053,0.441187109798193,-0.38313119765371084,0.3106375285424292,-0.7243006401695311,-0.5984090096317232,-0.8274904913268983,-0.24529610574245453,-0.6155692473985255,0.7311246846802533,-0.18015126837417483,-0.28609360475093126,0.29002696415409446,0.7441199673339725,-0.2858818075619638,0.5037852018140256,-0.09778356133028865,-0.30086499731987715,-0.5343230376020074,0.9479595641605556,0.1748510468751192,-0.3940465897321701,0.9963424396701157,0.05300687300041318,-0.3594569992274046,0.28638191847130656,-0.08320773439481854,0.7633888334967196,0.1480829338543117,-0.6481680921278894,0.8536446262151003,-0.3505638078786433,-0.5570249427109957,-0.2653058939613402,0.3918953198008239,-0.9015074912458658,-0.7905202279798687,0.05856161378324032,0.1337839812040329,0.6345737483352423,0.3404731145128608,-0.1204657731577754,0.6728992154821754,-0.15130072459578514,-0.6365171689540148,0.18638191185891628,-0.10404649842530489,-0.9815816911868751,0.27548554819077253,-0.5437966054305434,0.27800794318318367,0.6526520578190684,-0.3979190029203892,-0.6422150619328022,0.2861704137176275,-0.14660099614411592,0.6715722405351698,-0.7335169995203614,0.39963133074343204,-0.045606670901179314,-0.9267315049655735,-0.6231895452365279,0.04883732087910175,-0.003963686525821686,-0.8012662171386182,0.5026432666927576,0.8114892137236893,0.5463392408564687,0.27230554120615125,-0.9619818390347064,-0.8378029162995517,0.15835941024124622,-0.9693502075970173,-0.9706764942966402,0.7887138603255153,0.3880272572860122,-0.6986072193831205,0.7591197672300041,-0.33954926300793886,0.1075091240927577,-0.0936327762901783,-0.5223860335536301,-0.3289408050477505,-0.3792206388898194,-0.0038391221314668655,-0.04534279182553291,-0.36462147161364555,-0.808853036724031,-0.25415597949177027,-0.9413147480227053,-0.26630091527476907,0.20460110483691096,0.5351316975429654,-0.8122949348762631,-0.14752026414498687,-0.8709940603002906,0.9097815612331033,-0.5999261415563524,-0.9337586886249483,0.06343735847622156,-0.7818062333390117,-0.4594532703049481,0.5987893091514707,0.1716115209273994,-0.18366419477388263,0.3413668107241392,-0.8350508818402886,-0.7591231572441757,0.4669274971820414,0.742674071341753,0.36609368259087205,0.44681279035285115,-0.040024518966674805,0.6056389263831079,-0.8012586520053446,-0.6001951578073204,-0.29256548592820764,0.5789685724303126,0.8257314530201256,-0.34728789888322353,0.887066122610122,0.22213876713067293,-0.6664245398715138,-0.01434783497825265,0.44963336642831564,-0.6801579911261797,0.11518921051174402,-0.06456735450774431,-0.11059608915820718,0.9543905202299356,-0.21395997051149607,-0.5834951270371675,0.33692140504717827,0.6939305793493986,-0.8959581605158746,-0.34336218191310763,-0.15359660796821117,-0.5935935121960938,-0.6637936178594828,0.4623347423039377,0.777576772030443,-0.6467038071714342,0.2560587404295802,0.9253803524188697,0.0884152390062809,0.5625605355016887,-0.22930388245731592,-0.8892385344952345,0.42211016826331615,0.33329228265210986,-0.8385547855868936,0.05392969632521272,-0.1722871083766222,-0.10137333581224084,0.3211100376211107,-0.8302294057793915,-0.5712312031537294,0.3252764632925391,0.1768712131306529,0.7193114864639938,-0.5042634620331228,-0.27559290500357747,0.6321336021646857,0.32072899490594864,0.8017476731911302,0.07460237154737115,0.9868415533564985,0.8349604783579707,0.04207824217155576,0.05140776699408889,-0.766466676723212,0.776331480126828,-0.4822413814254105,-0.29173658788204193,0.23614139715209603,-0.12492895917966962,0.021757920272648335,0.38567647151649,0.21043807035312057,0.7908068494871259,0.8157436358742416,-0.25005003809928894,0.34709140518680215,0.3763871528208256,0.5731445932760835,-0.4897442739456892,0.11138022597879171,-0.2902712528593838,-0.44760584412142634,-0.439709790982306,-0.23294738912954926,-0.9573815832845867,-0.30468477960675955,0.6672109053470194,-0.9434712319634855,-0.5250517660751939,-0.501344139687717,0.0374477100558579,0.8856723257340491,0.24281556904315948,0.4739334834739566,-0.6441099396906793,-0.6185062313452363,0.32349273189902306,0.9756311294622719,-0.6498569874092937,0.8787665525451303,0.8059037541970611,-0.5576389823108912,0.8018995192833245,0.8936980287544429,0.9011561595834792,0.811003620736301,-0.7346365549601614,0.22522633662447333,-0.5117336357943714,0.10669541219249368,-0.6489070910029113,0.7911801901645958,0.7345494381152093,-0.1706332848407328,0.514803871512413,0.13023737305775285,0.3061779304407537,0.9819531668908894,-0.581166906747967,0.564186885021627,0.9391723494045436,0.4492253437638283,-0.27846596436575055,0.5501808100380003,0.06405135430395603,0.09851515851914883,0.3189742621034384,0.4070582324638963,0.768311292398721,0.3447641176171601,-0.0933461063541472,0.06320079835131764,-0.26305321929976344,-0.659040879458189,-0.26845216983929276,-0.23747343849390745,0.375146328471601,-0.18250046018511057,0.09850817313417792,0.8814522051252425,-0.5954854181036353,-0.9336717524565756,-0.6263349372893572,0.7941471049562097,0.9471250171773136,0.4215241256169975,-0.36889218306168914,-0.6627283715642989,-0.5335794854909182,0.09437925927340984,0.6080711018294096,-0.8146168212406337,-0.08132000593468547,-0.05587990814819932,-0.30208757938817143,0.539229076821357,0.5245126797817647,0.04795215139165521,0.10503288265317678,-0.7209047228097916,0.44379344768822193,0.06179032800719142,-0.29927784064784646,0.36133363330736756,-0.5632858667522669,0.4641770925372839,0.2984400778077543,0.0648092683404684,-0.9933058400638402,-0.22228860715404153,0.6126704309135675,-0.415337149053812,0.43021350586786866,-0.4046034920029342,-0.38568625086918473,0.2280379682779312,-0.7577323708683252,0.001896621659398079,-0.9157697753980756,-0.019227884244173765,0.6370246135629714,-0.5355080305598676,-0.3221252881921828,0.6304969172924757,-0.848983549978584,-0.9295380096882582,-0.18159271636977792,-0.5197448502294719,-0.3112657219171524,-0.8565797074697912,-0.9731831606477499,0.2411125530488789,-0.45414712466299534,0.1826586746610701,0.7691052830778062,0.13905917527154088,0.46986245922744274,0.1810387810692191,0.03533075051382184,-0.37114732107147574,-0.608071749098599,-0.08432589424774051,0.2642556526698172,0.3110822690650821,-0.4497059374116361,-0.22702520806342363,0.13977651204913855,0.36594045581296086,-0.5394611968658864,0.5562377595342696,-0.492148878518492,-0.717477765865624,-0.2886765808798373,0.38065542792901397,0.9528626534156501,-0.39942845748737454,-0.3751160125248134,-0.5232986584305763,-0.09838736383244395,-0.3013957948423922,-0.2474526888690889,0.9286354081705213,0.40678918128833175,-0.9851584592834115,-0.897996059153229,-0.9237886830233037,-0.8977087666280568,0.05375034548342228,0.1336155836470425,0.08573901280760765,0.5214623808860779,-0.18367071403190494,-0.08896573819220066,0.898664915934205,0.24511990882456303,0.48605249309912324,-0.6927468557842076,0.3743951776996255,0.3863328746519983,-0.28920075111091137,-0.7338140993379056,0.8824619445949793,-0.7676211670041084,0.7059085667133331,-0.6958748181350529,0.20853281393647194,0.5532224955968559,-0.6999896964989603,-0.5514922649599612,0.7699642763473094,-0.6449211100116372,0.8656175774522126,0.552000395487994,-0.1458202595822513,0.5797688332386315,-0.19844479486346245,-0.08544345432892442,0.29421691223978996,0.016299364157021046,-0.8310972531326115,0.09518905822187662,-0.04347830079495907,0.6554645374417305,-0.4354341677390039,0.6810973901301622,0.8245474523864686,-0.48512818291783333,-0.7274271012283862,0.19270603405311704,0.8780349171720445,-0.5805479823611677,-0.8263131305575371,-0.7888490334153175,-0.0846625566482544,-0.29949369421228766,-0.24125062115490437,-0.04439787287265062,0.5832238695584238,-0.8005162598565221,0.046953968703746796,-0.9292389182373881,0.9388452926650643,0.5886935913003981,-0.24273480894044042,0.582747861277312,0.7925447807647288,0.32690532272681594,-0.3962786439806223,-0.7311113239265978,0.17169858142733574,0.398843003436923,-0.24097694968804717,-0.3082576133310795,-0.09820303320884705,-0.26453910768032074,-0.9257197128608823,-0.5796243706718087,0.04677547886967659,-0.9788591917604208,0.8218287630006671,0.9012313284911215,-0.3058195267803967,0.9257309064269066,0.3744994467124343,-0.05338690895587206,-0.7742950413376093,-0.2524545341730118,-0.38262709183618426,0.014358367305248976,-0.8987907404080033,0.6393899288959801,-0.4546647691167891,0.5092892651446164,0.7281906930729747,0.13936451403424144,0.7455413937568665,0.3848121976479888,0.6909780730493367,0.8610880514606833,-0.9415499642491341,-0.709997124504298,-0.7489840779453516,0.3616195935755968,-0.48059138376265764,-0.2939103120006621,-0.9771080845966935,0.9725450100377202,-0.08047976903617382,-0.0669190650805831,0.3025651341304183,-0.7819920452311635,0.3133987314067781,0.3007125142030418,-0.26464232010766864,-0.576639381237328,0.5496504381299019,-0.22757852356880903,-0.6334308837540448,-0.4160475987009704,0.4133527250960469,-0.7402977994643152,0.11435644654557109,0.216898325830698,-0.07452735677361488,-0.36077480344101787,0.22024235082790256,0.5797092625871301,-0.9574560294859111,-0.8968985420651734,0.6721839657984674,-0.017687055747956038,-0.11074802372604609,0.3897167588584125,-0.21746855415403843,0.30466414615511894,-0.7458549849689007,0.9668079349212348,0.08790617110207677,-0.5834653382189572,0.8600702462717891,0.26381584350019693,-0.03607132425531745,-0.8314105030149221,0.013201200403273106,0.7333431439474225,-0.4020705334842205,0.9207473858259618,0.1736877434886992,0.14656982943415642,-0.852685444522649,0.35253091622143984,0.9201562409289181,0.00036764098331332207,0.18554619327187538,0.694818097166717,0.48063927283510566,0.5026034214533865,0.25137877743691206,0.46237306436523795,-0.2991235414519906,-0.980361919850111,0.5669752843677998,0.6163135468959808,-0.674558321479708,0.831579084508121,0.5950806965120137,0.01536317728459835,-0.451485778670758,0.09034559037536383,0.8287980863824487,-0.5455752615816891,0.6251430548727512,-0.14011756284162402,0.6212042239494622,0.3925236305221915,0.7993091284297407,0.29886325541883707,0.5124796121381223,-0.39253959991037846,-0.7541699684225023,-0.1872570882551372,-0.26162351621314883,0.5425998484715819,-0.569768890272826,-0.5379309542477131,0.7542062141001225,0.6023842073045671,0.38795648142695427,0.16968914261087775,-0.8757824087515473,0.44941909424960613,0.6906733266077936,0.33365021646022797,0.6781722134910524,0.10493325209245086,-0.966297497972846,0.8879170017316937,-0.26057142531499267,0.2679459135979414,-0.44245158648118377,0.9748644386418164,0.3268153928220272,-0.2287809564732015,-0.3247070461511612,0.5321183078922331,-0.30001677526161075,0.6810621083714068,-0.9190378580242395,0.4758160184137523,0.9925477937795222,0.72548190318048,-0.2586804674938321,-0.7121056392788887,0.44810590147972107,0.8490109946578741,-0.21975711034610868,0.7069538999348879,0.9726147204637527,0.7670610565692186,0.30507456976920366,0.10168787790462375,0.23625211231410503,0.4593428857624531,0.5940061584115028,-0.88308782922104,0.7572527006268501,-0.9436618955805898,0.5761915231123567,-0.26239854004234076,0.2799749025143683,0.8300531762652099,-0.36935371486470103,0.6273012519814074,-0.013094298541545868,-0.8393499129451811,0.7097815098240972,0.18331064796075225,0.7125867968425155,0.3223208603449166,-0.5384844257496297,0.3043493633158505,-0.4394262097775936,0.801693529356271,0.8617495321668684,0.7660858086310327,-0.37079994520172477,0.1766712749376893,-0.07951031485572457,-0.12745432928204536,-0.7208078852854669,0.4062899057753384,-0.29603846510872245,-0.7683579134754837,0.2651308295316994,-0.9091636938974261,-0.8814323642291129,-0.42496540816500783,0.03139651566743851,0.7565259323455393,-0.3480071183294058,0.15497702779248357,0.07240272965282202,0.9858255586586893,0.9103322024457157,0.5763397570699453,-0.6311697824858129,0.8874720758758485,-0.6687055542133749,-0.9610221330076456,0.42012578481808305,0.7895577866584063,-0.523665361572057,0.8450488303788006,-0.43512220634147525,0.7779319621622562,-0.4701258330605924,-0.9481130111962557,0.07641223538666964,0.17070615524426103,-0.9089760053902864,0.6136304079554975,0.7826032689772546,0.6741325724869967,0.027287247125059366,-0.17865680903196335,-0.13456130027770996,0.6539758974686265,0.7766305073164403,0.5437437370419502,0.43930349685251713,0.2507294309325516,0.9090202511288226,0.5137819591909647,0.8248698068782687,0.9246070981025696,-0.7368577946908772,-0.4718309682793915,0.5611967463046312,-0.07663030317053199,0.02525498252362013,-0.6893701730296016,-0.312810274772346,-0.7950329319573939,-0.7785023632459342,0.6833727560006082,-0.7807462573982775,-0.274191637057811,0.5165808410383761,-0.6679366379976273,0.5148236411623657,-0.693024808075279,0.5942469774745405,-0.8932309509254992,-0.05149073200300336,-0.8241897183470428,0.6972281956113875,-0.22136443434283137,-0.29147585621103644,0.7932854746468365,-0.509754863101989,-0.9761863807216287,0.294743194244802,0.36726844357326627,0.4198518772609532,0.19895249186083674,-0.584054964594543,0.3422590922564268,-0.16829255409538746,-0.05106081115081906,0.4457277855835855,0.23288288619369268,0.7201090739108622,0.6401997273787856,-0.19573706481605768,-0.3756148796528578,-0.7671838351525366,0.44002632005140185,0.1191808576695621,-0.3751529543660581,0.15985093358904123,0.4486759970895946,-0.4062683116644621,-0.01155475527048111,0.7542055328376591,0.3480917513370514,0.9397877263836563,0.5901867533102632,0.6455738903023303,-0.30482100136578083,-0.3234001658856869,-0.7259478378109634,-0.35255609871819615,-0.4523336715064943,-0.733875144738704,0.030223353765904903,0.8278916217386723,-0.17238628352060914,0.8699720394797623,-0.503462347202003,0.5204437859356403,0.7747296532616019,0.49779521906748414,0.2263039513491094,-0.008952523116022348,0.42772007873281837,-0.3099155151285231,-0.5865194844081998,-0.8104758798144758,0.26621958753094077,0.5640996024012566,-0.222243613563478,0.3000417910516262,0.7482820102013648,0.3119387924671173,0.08900055522099137,0.12212581094354391,-0.4865120928734541,0.15152787696570158,-0.5631681652739644,0.8176387720741332,-0.6994954803958535,0.2500784075818956,-0.8555853036232293,0.8805768862366676,-0.3384737125597894,-0.6250631180591881,-0.9979450572282076,0.8652331409975886,0.24709851667284966,-0.31890426063910127,-0.4485103855840862,0.4405367951840162,-0.40681978687644005,0.3943859622813761,-0.26088370382785797,-0.9640821511857212,0.18827015347778797,0.17109768511727452,0.49617346515879035,-0.2535088397562504,0.9029464554041624,0.920534260571003,0.8744345009326935,0.14805069332942367,-0.9151722597889602,-0.0035132081247866154,-0.7071124552749097,0.46966433711349964,-0.9851716537959874,0.7784238564781845,-0.03226314624771476,-0.19677100470289588,0.849559998139739,-0.9021066431887448,0.6856484697200358,0.8846925934776664,0.7683683736249804,0.9382021967321634,-0.6671903729438782,0.5159509140066803,-0.16364219086244702,-0.8302654125727713,0.47405861457809806,-0.1833437285386026,0.18754267040640116,0.7984181847423315,0.9104832410812378,-0.994952769484371,-0.4585006544366479,0.33746994100511074,-0.6060084174387157,-0.0663267532363534,-0.09280903125181794,-0.8621316412463784,-0.5452459156513214,0.6909222067333758,0.5483508701436222,0.2994639235548675,0.67928735492751,0.49050221825018525,0.8069890490733087,0.37877664575353265,0.2530683004297316,0.09011562401428819,0.6809155382215977,0.8933761627413332,-0.2514078780077398,0.17390118772163987,0.9185767811723053,0.9299437021836638,0.6058657439425588,0.3441265574656427,-0.4491193825379014,0.9752073311246932,0.331084112636745,0.9771095775067806,0.6009714598767459,-0.19240344874560833,-0.8390701999887824,-0.7572467238642275,0.5807603863067925,-0.47132686944678426,0.11789884325116873,0.35392996808514,-0.10481017315760255,0.2747306632809341,0.6036852560937405,0.015174890402704477,-0.9427487719804049,-0.7488896427676082,0.7370737013407052,-0.750989377964288,0.9621069584973156,-0.7692585932090878,-0.1070916741155088,0.11421244731172919,-0.40690875705331564,-0.08299214532598853,-0.5066514424979687,0.7937709013931453,-0.5600093752145767,0.3360201702453196,0.886193526443094,-0.9835102818906307,0.5050060474313796,0.21924717584624887,-0.29442206397652626,0.4584243791177869,0.8511572889983654,-0.22131903236731887,-0.7862248569726944,-0.7180671095848083,0.17489480506628752,-0.9160082270391285,-0.7903279042802751,-0.48361398931592703,0.8706812993623316,-0.2790510794147849,0.6534461323171854,0.3470693347044289,0.4013498011045158,0.42444565426558256,0.371385948266834,-0.16543752001598477,0.6503844098187983,-0.10346482740715146,-0.7609966089949012,0.06519536208361387,0.9696880900301039,-0.866879167035222,-0.6710807220079005,-0.4754439378157258,0.5065217725932598,-0.9606608143076301,-0.38564496021717787,-0.40351427160203457,-0.9094425612129271,0.17463053530082107,0.5831064288504422,-0.9418020593002439,-0.5556363807991147,-0.8609140734188259,-0.12698431266471744,0.8691654019057751,0.5057552452199161,0.47158428793773055,-0.39944264106452465,-0.0026747649535536766,-0.7866789218969643,0.6985351308248937,-0.07165581965819001,0.2354635908268392,-0.10987813724204898,0.6350205838680267,-0.6939326892606914,0.8284670566208661,-0.019386956933885813,0.45960659021511674,0.3344563888385892,-0.40539957862347364,-0.2803684580139816,-0.6383453393355012,0.7251876150257885,0.062572100199759,-0.5246296217665076,-0.665523948147893,0.7636065166443586,0.12924398202449083,0.14276349125429988,0.8344175652600825,-0.4358789315447211,0.06760243559256196,0.6906253136694431,-0.7842316539026797,0.8581232358701527,-0.6694209696725011,0.5891917943954468,0.14820285513997078,0.20209885807707906,-0.8175514843314886,0.2746014380827546,-0.5841838275082409,-0.18606679560616612,0.5980779179371893,-0.3674522312358022,0.19360154634341598,0.22101703006774187,0.4429015447385609,-0.6455234354361892,-0.30133648263290524,-0.3464230839163065,0.24539589043706656,-0.31977227376773953,-0.6670745857991278,0.09100551856681705,-0.19016217766329646,0.24066663812845945,-0.9159431792795658,0.1675925082527101,-0.5320750116370618,-0.015507819596678019,0.6700832466594875,0.6202726941555738,0.8314736448228359,0.27264661341905594,-0.9716608608141541,0.03723212983459234,-0.806095898617059,-0.6324272882193327,-0.9375410950742662,-0.9340906059369445,-0.06474218936637044,0.6022145324386656,-0.46284137666225433,0.013043719809502363,-0.15759268682450056,-0.15704938583076,0.3372458191588521,0.260378104634583,0.20121224457398057,-0.5027800919488072,-0.06698315544053912,-0.40315339947119355,0.11593712586909533,-0.8511295216158032,-0.7941084769554436,-0.2586643658578396,-0.16735397186130285,0.9358148681931198,-0.25849282601848245,0.2933396892622113,0.34806770272552967,-0.33387088822200894,-0.9077473897486925,-0.20774866500869393,-0.6985967471264303,-0.16608415637165308,0.5171201978810132,0.2715935744345188,0.44254759699106216,-0.769445379730314,-0.306293445173651,-0.018363384995609522,0.804509898647666,0.539647959638387,0.8517803181894124,0.05363880982622504,-0.5791765511967242,-0.36327267810702324,0.8849283866584301,-0.026510390918701887,-0.18821440590545535,-0.24246120499446988,-0.7320833061821759,-0.16444599628448486,0.9324040072970092,-0.10673838946968317,0.031747608445584774,-0.6061367243528366,-0.5517414747737348,-0.9846507888287306,-0.9087987961247563,-0.4939512759447098,0.8654649797827005,0.2589802513830364,0.2564677414484322,-0.8351095234975219,0.728218587115407,0.15864895842969418,-0.9522629408165812,0.10966100357472897,0.7638974715955555,0.43805807270109653,-0.6000629775226116,0.2319614845328033,0.18972861161455512,0.7817822899669409,0.5099446862004697,-0.9716513073071837,0.7583518447354436,-0.6989260627888143,-0.5944627299904823,0.652543272357434,-0.20933986362069845,0.03417122457176447,0.18397889751940966,0.6725911707617342,-0.37312894593924284,-0.7670080177485943,-0.4282559175044298,-0.6699952371418476,-0.4702338078059256,-0.15760562615469098,0.4909925847314298,0.4847183162346482,0.06450389325618744,-0.1627310449257493,0.4056733613833785,0.7480022506788373,-0.6610804721713066,0.09439095668494701,0.19136973842978477,0.8508916050195694,0.05158733623102307,-0.725476146209985,0.3806921294890344,0.889045880176127,-0.42414435371756554,-0.0584049541503191,-0.3516700225882232,0.21999867586418986,0.7848899578675628,-0.8821118148043752,0.00029498757794499397,0.36161146173253655,0.4042617636732757,-0.6105792224407196,-0.20812121452763677,0.2872228301130235,0.5563759603537619,0.3119015321135521,-0.705780565738678,-0.8674844936467707,-0.5724518648348749,-0.18952755210921168,0.8406339837238193,0.7645877203904092,-0.0017195590771734715,-0.12535036401823163,0.35506833251565695,-0.8935812800191343,0.8242371478118002,0.8758388832211494,0.750038605183363,0.46001586550846696,0.49827248230576515,0.026160458102822304,0.46403451543301344,0.624681833665818,0.17255211807787418,0.5877126208506525,-0.6305599785409868,-0.7034173598513007,-0.3097503958269954,-0.8566244672983885,-0.8660477283410728,-0.4532486186362803,0.9516646023839712,-0.40909045608714223,-0.02513629151508212,-0.986618475522846,-0.30361372511833906,-0.10049784276634455,-0.930381927639246,-0.5608140928670764,0.46435595490038395,-0.00197726022452116,0.06980485981330276,0.8197499341331422,-0.7749547101557255,-0.27963352110236883,-0.04780476866289973,-0.9444986451417208,-0.43173645669594407,0.06597856665030122,0.9173196302726865,-0.6230872389860451,-0.23698483547195792,-0.38228033296763897,-0.23666345700621605,0.42465818114578724,0.22185574332252145,0.38126641931012273,0.6486031357198954,-0.8015192258171737,0.7182438825257123,-0.07206549681723118,0.6983093526214361,-0.5314359148032963,0.03668295592069626,-0.8332371911965311,-0.03270705882459879,0.9067376954481006,0.7177453236654401,-0.6693680719472468,0.04050504229962826,-0.954472073353827,0.04961746372282505,-0.6088654925115407,-0.07511929562315345,0.6448117275722325,-0.5975909177213907,-0.0005344594828784466,-0.3231263607740402,0.4048491329886019,0.3202827824279666,-0.9046560414135456,-0.6611445904709399,0.47591104032471776,-0.4262419007718563,0.32136534107849,-0.5389575194567442,-0.31358942948281765,0.02509223110973835,0.2038008952513337,0.4171234192326665,-0.4607529863715172,-0.5413919379934669,-0.14127628924325109,0.4506001486442983,-0.8943322468549013,-0.8406685288064182,-0.583516298327595,0.2299946383573115,0.5078036431223154,-0.2008311040699482,-0.7554775988683105,0.4160445360466838,-0.6118964697234333,-0.668440471868962,-0.4307010327465832,0.39056539768353105,-0.34136667381972075,-0.26924514630809426,0.4920821054838598,0.2937390082515776,0.1998952873982489,0.9982462232001126,-0.3925974569283426,0.7904076906852424,0.5453488877974451,-0.5087288045324385,0.635970308445394,-0.8550262157805264,-0.35872505884617567,-0.5627264804206789,0.5426598265767097,-0.27890193881466985,-0.44412420643493533,0.9316518674604595,0.16118742572143674,0.1558263269253075,-0.08220879174768925,0.3928792476654053,-0.01412035757675767,0.4448369946330786,-0.30362874642014503,0.37218949804082513,-0.7274258453398943,-0.6899247677065432,0.7194618959911168,-0.21919947862625122,0.136024362873286,0.724308401811868,0.4492743071168661,0.4918110044673085,0.015472277998924255,0.20569174317643046,0.1462155249901116,0.8076745588332415,-0.35282045556232333,-0.3919986682012677,0.84037618432194,0.7348902709782124,-0.8564985333941877,0.5775202261283994,-0.8974392265081406,-0.461187232285738,0.16848759073764086,0.04714408563449979,-0.672010765876621,0.9938901155255735,-0.5767483823001385,-0.6890558865852654,0.537992489989847,-0.831280168145895,0.042170124128460884,0.6960745803080499,0.9990397174842656,0.057822289410978556,-0.35131606832146645,-0.5903504039160907,0.18426902033388615,0.7809063014574349,0.7327538602985442,0.3266529068350792,0.08571432903409004,-0.4938954720273614,-0.34890846675261855,-0.2558562410995364,-0.6767174336127937,-0.5235989848151803,-0.6840669005177915,0.8924625953659415,0.5793088204227388,0.0901398416608572,-0.2408621609210968,-0.5625248071737587,0.4512834460474551,0.35205639712512493,-0.8469739388674498,0.02173679880797863,-0.5613789139315486,0.5653491639532149,-0.9654205935075879,-0.6800554874353111,0.3816102393902838,0.08809623122215271,0.3951282696798444,0.5484290332533419,0.3516664602793753,0.08524101739749312,-0.32617755420506,-0.7001265422441065,0.16108552552759647,0.45136692374944687,0.03362403344362974,-0.03628628375008702,-0.9818276930600405,-0.6497324658557773,0.514129648450762,0.5456217024475336,-0.002106057945638895,0.41272675059735775,0.8228309391997755,-0.5796342841349542,0.6045110425911844,0.5102649754844606,0.8214256572537124,-0.6280861776322126,0.3713784576393664,-0.7997541651129723,-0.6030254457145929,-0.753343153744936,0.5581483044661582,0.8831927119754255,0.012337991036474705,-0.650027678348124,0.54922098480165,0.8315560561604798,-0.9630343508906662,-0.22876247996464372,-0.8169776448048651,0.7389377299696207,-0.46542904851958156,0.8253173693083227,-0.09257019963115454,0.8876508050598204,0.7765312162227929,0.8684588517062366,-0.3847372238524258,0.2721133343875408,-0.1014839792624116,-0.7979556517675519,0.4197581382468343,-0.538700370118022,-0.6927680550143123,-0.17834148183465004,0.6306741060689092,0.5054610720835626,0.2802653834223747,-0.2912922133691609,0.04165920289233327,-0.9805635679513216,-0.7117131175473332,0.8545621614903212,-0.8818176942877471,-0.7608352899551392,0.7846106747165322,0.5880761034786701,-0.37795315496623516,-0.9978510993532836,-0.3108744486235082,-0.32277155946940184,-0.1992100584320724,-0.47305532498285174,0.7191813536919653,-0.04225962795317173,0.2409274303354323,-0.7596319024451077,0.9425574792549014,-0.6288584065623581,0.006300709675997496,0.62990194093436,-0.13837878173217177,0.26175487879663706,-0.05634967377409339,0.15156948985531926,-0.741310141980648,0.06772652361541986,0.015187898185104132,0.49427785351872444,-0.6984308077953756,0.6659432342275977,0.8385917409323156,-0.7279993239790201,-0.29587112506851554,0.9507263042032719,-0.67893329821527,0.8906036890111864,-0.005055906251072884,0.4396878476254642,0.1834613373503089,0.3403230342082679,0.5756543027237058,-0.8595415134914219,-0.1460704430937767,-0.46392157720401883,0.37563220085576177,0.05731057748198509,0.8053380972705781,0.27810414833948016,0.9293681420385838,0.9204707075841725,-0.5332369483076036,-0.2905707135796547,-0.21319134766235948,-0.8812789623625576,0.8227437380701303,-0.9427475640550256,-0.42920609563589096,0.4665779541246593,0.8925808258354664,-0.1908250148408115,-0.5728253051638603,-0.14672292675822973,0.8698053970001638,0.01967988722026348,-0.516875937115401,0.2542351675219834,0.17818341590464115,0.9273783923126757,-0.40694310469552875,0.8948273076675832,0.7372660501860082,0.9824730707332492,-0.6233045882545412,-0.2008418496698141,-0.19125362671911716,-0.21830976102501154,-0.2589816339313984,0.24146736413240433,0.18572938907891512,-0.32657557586207986,0.5063425642438233,-0.7379141827113926,0.7634277087636292,-0.7206642599776387,0.6075608623214066,-0.9522302392870188,-0.7526573031209409,-0.1456922017969191,0.19060970563441515,-0.8936090623028576,0.0518205719999969,0.9387897835113108,0.7317269803024828,0.2800531326793134,-0.05218962114304304,-0.7125577447004616,-0.07151695061475039,0.46829798351973295,0.3118105889298022,0.8048233017325401,0.3051688838750124,0.7922170516103506,-0.9354158383794129,-0.04856214905157685,-0.10983070451766253,-0.39401688054203987,0.06131133437156677,-0.08346994081512094,0.005528947338461876,0.41615261090919375,0.13829259248450398,0.6048249243758619,0.047281520906835794,0.6109549920074642,0.27965533593669534,0.9118408039212227,-0.8297895574942231,-0.9234096994623542,0.6657683001831174,0.7547289221547544,-0.286794850602746,-0.7851868346333504,-0.389940885361284,0.8029935248196125,-0.9460310116410255,0.5511889802291989,0.5533774988725781,0.2805581665597856,-0.808775385376066,0.12446825113147497,0.3743758564814925,-0.6769651575013995,0.7099649449810386,-0.7181386859156191,0.5010429411195219,-0.5791690866462886,-0.4325992953963578,0.26405204040929675,-0.6955312862992287,0.34013461181893945,-0.8352073873393238,-0.4882968822494149,0.4749395507387817,-0.1115096784196794,0.6766102542169392,-0.16717594349756837,-0.976571240928024,0.17793577630072832,0.8672849936410785,0.5340076005086303,-0.11225266382098198,0.8205004241317511,-0.31208123080432415,-0.7443037633784115,0.7680979492142797,-0.9562860336154699,-0.9902331805787981,0.1668993253260851,0.287097514141351,0.6706481496803463,0.11293287808075547,0.9688727334141731,0.9327059579081833,-0.4987108213827014,0.9450706141069531,0.39625202026218176,-0.7852594442665577,-0.1496634529903531,-0.49321779422461987,-0.5311948982998729,-0.50182337872684,-0.26406018109992146,0.1954507865011692,-0.21253853756934404,-0.5161787932738662,0.22964532021433115,0.5120180225931108,0.36323923990130424,-0.6098021571524441,-0.9602397964335978,-0.9200372649356723,0.7394107156433165,-0.13106493931263685,0.5356236132793128,0.40171726886183023,-0.1207196838222444,0.03405121713876724,0.5922938110306859,0.21177435293793678,-0.2677011336199939,0.783905026037246,0.4936864823102951,0.8835527556948364,0.06509185303002596,-0.8461167011409998,-0.04789750836789608,0.8542413813993335,0.27775428630411625,0.96703847264871,0.2358289761468768,0.0982675775885582,0.6862597037106752,0.05179358273744583,0.7593551683239639,0.7480402938090265,-0.8456127792596817,0.43646554183214903,-0.4963960484601557,0.978909560944885,0.05643962882459164,-0.8122795708477497,0.5895960642956197,-0.48286168510094285,-0.7029953254386783,0.22818069625645876,0.23673214111477137,-0.4310432863421738,-0.12673280388116837,0.733569847419858,-0.18497097119688988,0.5432589426636696,0.31770759960636497,0.6724915504455566,-0.34748444939032197,-0.5513489097356796,0.5684941560029984,0.6726079094223678,-0.4815391260199249,-0.8061979673802853,0.2411670619621873,0.06584996776655316,0.12848126562312245,0.01602083258330822,0.4355947421863675,0.9201167947612703,0.06641380535438657,0.5749199925921857,0.8086118628270924,0.34332323586568236,0.6164125767536461,-0.30525339348241687,0.977044322527945,0.04894290724769235,-0.8914841902442276,-0.36260936316102743,0.014792447909712791,-0.942025089636445,-0.1732499711215496,-0.13923187786713243,0.7304470376111567,0.38621178548783064,0.1317150415852666,-0.305278193205595,-0.2399374214001,0.5085051711648703,0.924934655893594,-0.5174880251288414,0.19218919845297933,-0.5408827704377472,0.8001464703120291,0.790461634285748,-0.5059489835985005,-0.14737044787034392,0.9506399924866855,-0.28258145740255713,0.6414559273980558,0.8022867767140269,0.28308927686885,0.8712644334882498,0.5459957560524344,0.6854146616533399,-0.41543420124799013,-0.3240410089492798,-0.7101950766518712,-0.7662016162648797,-0.005434569902718067,0.2893610722385347,-0.9167976579628885,0.17271191766485572,0.40688458550721407,-0.03982724482193589,-0.33759225998073816,-0.04063519276678562,0.25382252782583237,0.474006156437099,-0.9590574870817363,-0.8407985740341246,-0.49141379771754146,0.3225865210406482,0.41303246608003974,0.43775309156626463,-0.8969067637808621,0.7858529211953282,-0.15369540452957153,-0.3687822539359331,0.6759789241477847,-0.8721579206176102,0.510170042514801,0.9197569815441966,-0.9373889961279929,0.4991458896547556,0.26218447322025895,0.06151546584442258,-0.5083700814284384,0.629938202444464,0.24035513866692781,0.11410589097067714,-0.4975626296363771,-0.35063603427261114,-0.17495586024597287,0.30475314566865563,-0.7987327608279884,0.7541277520358562,-0.8873990685679018,-0.5129591799341142,-0.5999589171260595,-0.8743380075320601,-0.26211327966302633,-0.9310797466896474,0.928582648281008,-0.9012638456188142,0.7572879851795733,-0.8021801239810884,-0.019281753338873386,0.5063076852820814,0.9975945553742349,-0.5458855223841965,0.012467389926314354,-0.8846974358893931,-0.9668557434342802,0.3723504226654768,-0.9864613618701696,-0.46455246675759554,-0.4805055670440197,-0.8601042432710528,0.5594954965636134,0.7577877375297248,0.761447346303612,0.6939717545174062,0.3413413502275944,-0.5285180751234293,0.7803266802802682,0.36177085107192397,0.7862069495022297,-0.26071013789623976,-0.05720267677679658,0.02333420142531395,-0.10634460020810366,0.03656761301681399,0.9042493398301303,-0.9712169147096574,0.8273610132746398,-0.27008219389244914,-0.2654030239209533,-0.8116860152222216,-0.1228202567435801,0.24108012532815337,-0.08217856893315911,0.7522050766274333,-0.625756255351007,0.8290617484599352,0.39392119785770774,-0.20104197692126036,-0.20887654274702072,-0.5850849463604391,0.3248221934773028,0.93201022176072,0.3276031604036689,0.904635607264936,0.16644341545179486,0.05790878413245082,0.4653593096882105,0.559967721812427,0.09081052104011178,-0.07282268535345793,0.4864059048704803,-0.7878505918197334,-0.6875772536732256,-0.35472253523766994,-0.4129611263051629,-0.8447668463923037,-0.982363102491945,-0.17945569241419435,0.72858383692801,-0.057128018233925104,0.07816512836143374,0.07696817582473159,-0.12425228068605065,0.13695164350792766,0.8127355636097491,-0.34751055762171745,0.31621798407286406,0.4513836596161127,-0.6903256429359317,0.19861382013186812,0.46566861448809505,0.29235407756641507,-0.876447532325983,-0.4853884391486645,0.9642944703809917,0.4701441493816674,-0.02194179128855467,-0.9791695820167661,0.8252974757924676,0.14109946321696043,-0.6823340621776879,0.9290273562073708,0.4964146385900676,-0.03036260651424527,0.714359026402235,0.7973630637861788,0.6514652059413493,0.3694824818521738,-0.05617013107985258,-0.19480971433222294,-0.47804339695721865,-0.19883592100813985,0.45467839716002345,0.9107874906621873,-0.7312258379533887,-0.33347905660048127,-0.01813082816079259,0.5280624283477664,-0.5571162863634527,-0.133846671320498,-0.8921792381443083,-0.16677689971402287,-0.3255813233554363,0.7415240849368274,0.22169010434299707,0.5087270219810307,0.6821537399664521,-0.17088580457493663,0.3767423424869776,-0.23696772707626224,-0.277318874374032,0.3693413222208619,0.2383619132451713,0.7323541375808418,-0.33546642400324345,0.47708594100549817,0.30961965257301927,0.9750422276556492,-0.7197585981339216,-0.6381802586838603,0.2608810788951814,0.11486621852964163,0.2688742741011083,-0.8430501590482891,0.38620124058797956,0.5644318335689604,0.9453072934411466,-0.8009863262996078,-0.945673689711839,0.8270975779742002,-0.010124458465725183,-0.4277061317116022,0.9615281885489821,-0.32605742011219263,0.5604196274653077,-0.006154079921543598,-0.3893179092556238,-0.21532384725287557,-0.27921290323138237,0.11848719324916601,-0.07028673263266683,0.23294041445478797,0.05833441112190485,-0.2338677649386227,0.3702556402422488,0.32585205184295774,-0.0009263684041798115,-0.8584498628042638,0.06763653550297022,0.5949557013809681,-0.04070827644318342,-0.011247167363762856,0.5969438101164997,0.24563712812960148,-0.4985724240541458,0.12444800231605768,0.7844745358452201,-0.788878642488271,-0.10681321145966649,-0.18994382489472628,0.5804684674367309,-0.6066042389720678,0.8724843170493841,0.8223554831929505,0.3869847832247615,-0.7114468170329928,-0.2339223832823336,0.6153659238480031,0.8951230263337493,0.43151048850268126,0.0696394951082766,0.8358263424597681,-0.05304608400911093,-0.24917580233886838,0.8040106203407049,0.05098436865955591,-0.8272886746563017,-0.46260880678892136,-0.5252896854653955,-0.5780315166339278,-0.4254918093793094,-0.6619200496934354,0.47220891201868653,-0.11435319064185023,0.8784816097468138,-0.5214153970591724,0.9486350095830858,-0.5679442342370749,0.37613979168236256,-0.6255071177147329,-0.5428246362134814,-0.8041027984581888,0.9459987645968795,0.4326111860573292,-0.19992527272552252,0.8988725654780865,-0.6728955856524408,0.7637628568336368,-0.8336940002627671,-0.08042138116434216,-0.12712551886215806,0.05491218343377113,0.5297822416760027,0.9916985910385847,0.29472529189661145,0.01319160358980298,-0.15031976997852325,0.4898572969250381,-0.31610981188714504,-0.8269394277594984,-0.7452994477935135,-0.7538771200925112,-0.692220292519778,0.2042256025597453,0.606220034416765,0.8499512998387218,0.008033628109842539,0.6636719717644155,0.10425594914704561,0.9257071451283991,-0.6408440237864852,0.7512713256292045,0.6585133136250079,-0.038254378363490105,-0.9710953654721379,0.659810739569366,-0.509167745243758,0.10559729719534516,0.11540667759254575,-0.35210024286061525,0.3400669014081359,0.9084954694844782,0.3394001154229045,-0.7843926679342985,-0.5697098774835467,0.855248084757477,0.3486239220947027,-0.1304018311202526,0.35040959576144814,-0.7301311641931534,-0.7784785930998623,0.27715446148067713,-0.7810661178082228,-0.025719888973981142,0.759513586293906,0.7461650208570063,0.10950082773342729,0.07788264146074653,-0.9600733807310462,-0.8279872327111661,0.5746193449012935,0.140029258094728,-0.7197544043883681,0.8805009284988046,-0.8048276836052537,0.008413195610046387,-0.14541072398424149,0.9173837513662875,-0.3167456388473511,-0.5813639252446592,-0.08135838899761438,-0.9779568463563919,-0.005361920688301325,0.5965502820909023,-0.41076327953487635,-0.21124016353860497,-0.8135096114128828,0.047072053886950016,0.30051867850124836,0.06546836299821734,0.03705270169302821,-0.2700651637278497,0.5352720399387181,-0.054050374776124954,-0.24557209620252252,0.4296725895255804,-0.2758637382648885,-0.43582998821511865,0.02086673630401492,0.2459731912240386,0.8274467848241329,0.43168069794774055,-0.842317292932421,-0.0009497357532382011,-0.22931281616911292,-0.2986474623903632,-0.11534955678507686,-0.5447647022083402,-0.03603427531197667,0.7912740735337138,-0.8024057899601758,-0.606416183989495,-0.3443884584121406,-0.1785731348209083,-0.8455863492563367,0.8975999988615513,0.29409436881542206,-0.29269476840272546,-0.5090469014830887,-0.9390456578694284,0.4834500225260854,0.2657679026015103,0.6856742934323847,0.9681838736869395,-0.6059913649223745,-0.07398019591346383,0.6952255461364985,-0.019856564700603485,-0.5061190966516733,-0.1301306993700564,0.06262496393173933,0.6651254422031343,0.10970862675458193,-0.7981799696572125,-0.9465387458913028,-0.7609936590306461,-0.4107706379145384,-0.4082365930080414,-0.035656840074807405,-0.6657473193481565,-0.9942123312503099,0.36234533274546266,0.2437970214523375,-0.6789916083216667,0.604642384685576,-0.06441395403817296,-0.6261391504667699,0.26166579173877835,-0.5431467737071216,0.6388167957775295,-0.3608591314405203,0.025742466561496258,0.42727786442264915,0.11113054538145661,0.27675162721425295,0.9884643191471696,-0.06842489400878549,-0.5940659032203257,0.22248439397662878,-0.2299661198630929,0.3259478351101279,0.8712625033222139,0.14859351608902216,-0.19878289801999927,0.08137288969010115,-0.6449380470439792,0.4720012564212084,-0.3654134627431631,0.33154288213700056,-0.9968249872326851,-0.5851993402466178,0.15745140425860882,0.8779353257268667,0.4107182356528938,-0.30073124170303345,-0.626531186979264,0.26263497956097126,0.5382927809841931,-0.8255270458757877,-0.06555695831775665,-0.07655459782108665,0.35651689721271396,-0.2584037990309298,-0.9997660759836435,0.8134981081821024,-0.746007994748652,-0.515577451325953,-0.9664827650412917,-0.3262939117848873,-0.047796179074794054,-0.4206909160129726,0.08470924943685532,-0.2504277490079403,-0.4483734266832471,0.896205079741776,-0.694174004253,0.2822690764442086,0.6896208683028817,-0.2980059920810163,-0.7427782882004976,0.9927683137357235,-0.45256004575639963,-0.4969653864391148,-0.5264311209321022,-0.19800952915102243,0.42865141620859504,-0.816857723519206,0.0637005022726953,-0.49318877048790455,0.9270836999639869,0.4970044372603297,-0.5169341005384922,-0.5976432808674872,0.13443335285410285,0.9387449799105525,0.2948105288669467,-0.47886337246745825,0.231683898717165,0.8093391540460289,-0.4150127419270575,-0.5643254052847624,0.8392111179418862,0.3330122148618102,0.29133193474262953,-0.3649904956109822,0.13715083664283156,-0.4485185733065009,0.40946918772533536,-0.0030403234995901585,-0.2968352008610964,0.28312948485836387,0.11847440944984555,-0.4502073018811643,-0.711649589240551,0.43527625128626823,-0.6889701411128044,0.47905276203528047,0.40644925739616156,0.4200814892537892,0.17662969417870045,0.0283550713211298,0.36011431319639087,-0.829454421531409,-0.15099764429032803,0.6178675778210163,0.0787176382727921,0.0005521718412637711,-0.33837499702349305,0.9467317401431501,0.8796513183042407,-0.9837980861775577,-0.1908591161482036,-0.5240325694903731,0.2796178227290511,-0.5787132764235139,0.024676935747265816,0.917297454085201,0.4815033068880439,0.8705321284942329,-0.2927229553461075,0.6491949898190796,-0.4365691286511719,0.06342894118279219,-0.28092564502730966,-0.9243823322467506,-0.7921830369159579,0.3266622959636152,0.08535899221897125,-0.8418296822346747,-0.7844615043140948,0.7052165218628943,-0.3241626895032823,-0.7204775842837989,0.6979933227412403,0.8843110813759267,0.5279776374809444,0.8858901266939938,0.7539599752053618,0.1349810021929443,0.19863868271932006,-0.42909560818225145,0.8791799475438893,0.7380056749098003,-0.4552086661569774,-0.051226355135440826,0.1974659669212997,0.4705609050579369,-0.977447313722223,-0.7811407344415784,0.8711798088625073,0.5988404005765915,0.22950087673962116,0.25204811431467533,-0.8185353167355061,0.07804887089878321,0.04407993983477354,0.6919222241267562,0.48905280558392406,-0.0359246339648962,-0.6764183244667947,0.9459067634306848,-0.9611131665296853,-0.3479286590591073,-0.01799554843455553,-0.8426470486447215,-0.677598203998059,0.35388546204194427,0.0867552193813026,0.6379318311810493,0.8691172488033772,-0.5470636361278594,0.2720594806596637,0.7743980381637812,-0.4725962243974209,-0.8019837853498757,0.08711689570918679,0.9856017306447029,-0.7325323335826397,0.15112857846543193,-0.8674681195989251,0.6310188784264028,0.24132296023890376,-0.44156054919585586,0.7252493654377759,-0.11244577215984464,-0.5547021701931953,-0.3104930305853486,0.24523142026737332,-0.23733683675527573,-0.620092652272433,-0.7155582481063902,0.6101191728375852,0.16660542227327824,0.6892544818110764,-0.9347554123960435,-0.3908171560615301,0.2616148483939469,-0.9802964823320508,0.910323977470398,-0.33795705158263445,-0.3924007280729711,-0.7633341155014932,0.019298639614135027,0.4231778313405812,-0.4967011548578739,-0.38879807805642486,-0.07630557240918279,-0.1506686150096357,0.8136429986916482,-0.2222509398125112,0.6135747893713415,0.005218281410634518,0.22985898097977042,-0.7175268325954676,-0.4216645020060241,-0.7978458716534078,-0.4510802123695612,0.7373832650482655,-0.1893886993639171,-0.6544165606610477,0.13474581530317664,0.31425228575244546,0.4000557903200388,-0.9290264346636832,0.6358758471906185,0.6804171027615666,0.7821217780001462,-0.5876304479315877,0.3647437049075961,-0.2543032765388489,-0.4721539570018649,0.33376469695940614,-0.3741621202789247,0.2037733788602054,-0.8503529322333634,-0.45202708803117275,0.18877260945737362,0.06517281755805016,0.6662818375043571,-0.8236038340255618,-0.9777063131332397,0.13000915152952075,-0.629456389695406,-0.44846333703026175,0.6767891086637974,0.46899591432884336,-0.8555394201539457,0.0666103227995336,-0.5486815720796585,0.520929244812578,0.9912221897393465,0.3219520812854171,0.35022181645035744,0.7903791987337172,-0.48148444946855307,0.9816918452270329,0.09905447019264102,-0.29366888431832194,-0.9796682423911989,-0.06534244818612933,0.40700761042535305,-0.5168946706689894,-0.7106401761993766,0.029486879240721464,0.05063973227515817,-0.6267219563014805,0.21747571602463722,0.9161670389585197,0.0902124885469675,0.48802356934174895,0.09924864489585161,-0.09352243645116687,-0.3507388839498162,0.3439541356638074,0.5289366389624774,-0.23726492282003164,-0.17294761119410396,-0.865596117451787,-0.18418052792549133,-0.6289979200810194,0.9867878966033459,-0.035278575494885445,-0.38977581495419145,0.00251958379521966,-0.012289201840758324,0.03413964528590441,-0.7967921295203269,0.34982897993177176,-0.165073502343148,-0.1582317091524601,-0.1668755104765296,-0.11639790143817663,0.058391337748616934,-0.27341633196920156,0.6111556179821491,0.4113965989090502,-0.07804510649293661,0.35097228921949863,-0.656442844774574,0.0409266110509634,0.14275791961699724,-0.6909817145206034,-0.2679128865711391,0.45095367822796106,-0.400227265432477,-0.7052626996301115,0.4314074725843966,0.0670287567190826,-0.6542413071729243,-0.12345347506925464,-0.8173902155831456,0.9901498607359827,-0.8296556160785258,-0.9296733043156564,0.5837631947360933,-0.9682181784883142,0.9602662175893784,0.4794898731634021,-0.3738971007987857,-0.4066166062839329,-0.15481528034433722,0.15841400809586048,0.07112052291631699,-0.6566708767786622,0.7263443414121866,-0.6642600148916245,0.9703488326631486,0.5586646487936378,0.8020034828223288,-0.5360653433017433,-0.9952622326090932,0.7658847090788186,-0.11710235197097063,0.5812614383175969,-0.8758665379136801,-0.9811748610809445,0.41629440849646926,0.34616489848122,-0.46017767023295164,-0.25380863109603524,0.3246183730661869,-0.9699596608988941,0.40114595321938396,0.3529325216077268,0.7591425278224051,0.8382090674713254,0.9711062503047287,0.7970850924029946,0.4229114674963057,-0.1553285880945623,-0.42017456563189626,-0.4767679776996374,0.5178121761418879,-0.693097120616585,-0.7147755152545869,0.6325174011290073,0.8391994899138808,0.768929130397737,0.5266737439669669,-0.7973462892696261,-0.25191948702558875,-0.2194900899194181,-0.8287697862833738,-0.7798769152723253,-0.6838975260034204,-0.9692279766313732,-0.4819244327954948,-0.17334027122706175,0.4313575988635421,0.39414084516465664,0.3748167622834444,0.7403230220079422,-0.7259639999829233,-0.9100343938916922,0.20029499055817723,0.3213737909682095,0.03966267732903361,-0.8546959515661001,0.38331609312444925,-0.7899619531817734,0.40147081250324845,0.03371851146221161,0.014843305107206106,-0.3171189995482564,0.28360392758622766,-0.022739527747035027,-0.9670199807733297,-0.07422689814120531,0.4264783514663577,0.9769156272523105,0.061094365548342466,0.7399419094435871,-0.19319781428202987,-0.06376854795962572,0.29641937743872404,-0.36052374029532075,-0.3322735195979476,0.6274981377646327,0.6806067074649036,0.0036492114886641502,-0.04135614633560181,0.859032194595784,0.8118700464256108,0.4964749813079834,0.16324269026517868,-0.30041508609429,-0.909670571796596,0.8547976366244256,-0.43507694313302636,0.9298553476110101,-0.06832461850717664,0.4323816206306219,-0.5953742316924036,-0.27304617036134005,0.827399286441505,0.2658687741495669,-0.4026596457697451,0.07502825930714607,0.20561525179073215,0.2542148600332439,0.7256034794263542,0.168854049872607,-0.7031913297250867,0.5218064556829631,-0.9968894030898809,0.3029462010599673,0.462973530869931,0.7087123622186482,0.7224359926767647,-0.21219445019960403,0.378475793171674,0.9523595636710525,-0.1465641395188868,-0.0729358191601932,0.3145338990725577,0.25122598139569163,-0.06731599429622293,-0.07470227871090174,-0.7489356715232134,-0.48751047533005476,-0.4148833891376853,0.7260885462164879,0.4094197163358331,-0.19556506117805839,0.3889364949427545,-0.5714121093042195,0.5206120512448251,0.6373249827884138,0.7466462505981326,0.4035926931537688,0.6433527027256787,0.019908298272639513,0.1251866132952273,-0.3000327181071043,0.8320705341175199,0.08976918691769242,-0.8001054674386978,-0.6258175005204976,-0.22623997274786234,0.003439918626099825,0.6132716829888523,0.38665851624682546,0.6805233526974916,-0.9419326344504952,-0.4428563960827887,0.6668303390033543,0.43944640504196286,-0.7028078595176339,0.7543286103755236,-0.14149312721565366,-0.7480803369544446,-0.8289810810238123,-0.5129953250288963,0.8715810286812484,-0.9276797291822731,0.9222682239487767,-0.8304953970946372,0.8887596144340932,-0.21590345678851008,-0.9284128928557038,-0.9408244858495891,-0.7224909872747958,0.18369170418009162,-0.6625272431410849,-0.4360556029714644,0.18063946021720767,-0.31228373013436794,-0.05281616607680917,0.018031247425824404,0.06675179256126285,0.616131454706192,0.10780784348025918,0.5890531097538769,-0.38307720934972167,0.3090440980158746,0.5426898282021284,0.14549462916329503,-0.39002473605796695,-0.7695517959073186,-0.9169610757380724,-0.6218973351642489,-0.7484993156976998,0.4058480500243604,-0.6711206804029644,0.2576345894485712,-0.6411536354571581,-0.27424850640818477,-0.6784318797290325,-0.041321446653455496,-0.5037674051709473,0.2470828159712255,-0.5701854201033711,-0.02238112734630704,0.8380562197417021,0.5049625663086772,0.6486901533789933,0.3211672590114176,0.8711595200002193,-0.6023699697107077,0.8412442752160132,0.037186129949986935,-0.21892037941142917,0.8349708830937743,0.5678360816091299,-0.8645256883464754,0.23638764210045338,-0.3254042621701956,-0.9511248590424657,0.39201187435537577,-0.14077419601380825,-0.08817436033859849,-0.6851147133857012,-0.9134915955364704,-0.5170882609672844,0.275180134922266,-0.7833550558425486,-0.41483970871195197,0.19260874716565013,0.06055945251137018,-0.4746188656426966,0.014517189934849739,0.5823208126239479,-0.13174175890162587,0.4837487814947963,0.9927356238476932,0.34118943102657795,0.7041044211946428,0.6781458328478038,-0.02566688135266304,0.804446476045996,0.6184035604819655,0.9552266951650381,-0.022339300718158484,0.7275482686236501,-0.026007269974797964,0.0013849050737917423,0.9910657075233757,-0.9024983081035316,0.4510200903750956,0.03562050312757492,-0.029442043974995613,-0.4954113168641925,0.7331581497564912,0.26102346694096923,0.1807768321596086,0.8001398514024913,-0.9123904411680996,0.07009812910109758,0.7419961476698518,-0.22131168749183416,-0.24012976605445147,0.04458922054618597,0.05400303611531854,-0.671077664475888,-0.222379544749856,0.3106830809265375,-0.0965400286950171,-0.8803278021514416,-0.9541264376603067,-0.8232941003516316,-0.5051394226029515,0.3333389791660011,-0.5468500391580164,0.865258676931262,-0.7339139096438885,-0.914744128473103,0.7045003604143858,-0.03208206035196781,0.5759433396160603,0.6026728660799563,-0.8633990087546408,0.8211918738670647,-0.3666759612970054,-0.4620491284877062,-0.5140606355853379,0.755757138133049,0.06063330313190818,0.5545471464283764,0.1524659744463861,-0.8404000177979469,-0.8869003504514694,-0.8982394440099597,0.733139940071851,-0.08905721409246325,-0.7420824430882931,-0.6004466405138373,0.05832266295328736,0.5308445976115763,0.335470502730459,0.9105029799975455,-0.12383117061108351,-0.6033952529542148,-0.8317388365976512,0.4976722816936672,0.16635407088324428,-0.8950740681029856,-0.6471166019327939,-0.338346348144114,0.823181118350476,0.5281238704919815,0.9175597904250026,-0.4592058905400336,0.6133029307238758,0.6173619898036122,0.5883342018350959,0.06729368912056088,0.6066580698825419,-0.6789434105157852,-0.8851527334190905,0.9832951482385397,-0.6566742626018822,0.9883328471332788,0.2306952401995659,-0.6020226352848113,-0.17119922023266554,-0.5024653561413288,0.7926832009106874,-0.5652248836122453,0.034121868666261435,0.9915026188828051,0.11495836963877082,-0.8884632596746087,-0.6984267113730311,-0.1904446198605001,0.18082595663145185,-0.13855595141649246,-0.13242110796272755,0.1194153930991888,0.6753594470210373,-0.2782705160789192,0.4203537367284298,-0.7115565813146532,0.519255731254816,-0.031952138524502516,0.7502485956065357,-0.38899615686386824,0.8990183044224977,-0.08728297101333737,0.9390360116958618,0.7333608716726303,0.5556381028145552,0.6403072886168957,-0.9699798547662795,-0.9874997194856405,0.7204841021448374,0.13206097949296236,-0.30074870958924294,0.470359664876014,-0.8991361781954765,-0.8498338172212243,0.14937410270795226,0.6893743867985904,-0.5805323175154626,-0.6542139938101172,0.6235835487022996,0.14646538812667131,0.6331416629254818,-0.1740414402447641,-0.3164257863536477,0.8600791697390378,-0.930014543235302,0.7960051652044058,0.6305121863260865,0.3179906732402742,0.6737416228279471,0.8054278460331261,-0.7141280448995531,-0.001119770109653473,0.14649152848869562,-0.5852231667377055,-0.7210252382792532,0.1721985386684537,0.905614105053246,0.459767933934927,0.23058789735659957,-0.3977625099942088,0.8077160711400211,-0.6873893192969263,-0.23743613064289093,-0.02036389196291566,0.8339145793579519,0.7853014636784792,-0.35902910120785236,-0.05712207546457648,-0.5671510505490005,-0.6035289713181555,0.03393542720004916,0.1929884715937078,-0.7331687938421965,-0.5190838752314448,0.25253400998190045,0.18286889605224133,-0.5709985778667033,0.8678601793944836,-0.6015446498058736,-0.4614061829634011,0.6951517099514604,0.6853650864213705,-0.8877463261596859,0.7922044494189322,0.9820547630079091,-0.4830025490373373,-0.5506031415425241,-0.9237157991155982,0.5159331331960857,-0.13536080066114664,-0.4753649556078017,-0.5646164724603295,-0.4926699958741665,-0.7262261165305972,-0.5315044452436268,-0.724481591489166,-0.013841163832694292,0.056630199775099754,-0.14568001683801413,-0.1193809281103313,0.47835689364001155,-0.7194685856811702,0.6369198975153267,-0.2577990898862481,-0.9012222504243255,0.8166897427290678,0.0004142322577536106,0.7205760194920003,-0.9736667918041348,-0.2340249647386372,-0.6456901850178838,-0.38235286716371775,-0.9866389660164714,-0.7915973323397338,-0.5753109161742032,-0.4342241850681603,0.9517755429260433,0.3503588568419218,-0.2868740102276206,-0.00862718652933836,-0.9323664489202201,-0.5394527339376509,-0.8822766607627273,0.46503588557243347,0.879232787527144,0.0036637531593441963,-0.9891044655814767,-0.7737954468466341,0.8750768015161157,0.9232042138464749,0.7518216003663838,-0.5678175780922174,0.45889287162572145,0.47294925432652235,0.3554583517834544,-0.5413804510608315,0.5458336505107582,-0.8884867187589407,0.08220272790640593,-0.5724494033493102,-0.15538207348436117,-0.5081011271104217,0.9112503570504487,0.038230718113482,-0.47606841661036015,0.39477174263447523,-0.9600024218671024,-0.46757702715694904,-0.8781032334081829,0.8350140387192369,0.8631921862252057,0.6672183610498905,0.0652576619759202,0.12273160880431533,0.2205379130318761,0.29746495094150305,0.3371279905550182,-0.20588461542502046,-0.8007934801280499,-0.022449267096817493,-0.09073631186038256,0.881805915851146,-0.4722745371982455,-0.7277322965674102,0.21816760255023837,-0.3902922007255256,-0.021336781792342663,-0.8165969005785882,0.6909333691000938,0.12426470266655087,0.5510460799559951,-0.17085280688479543,0.6563225602731109,0.5836190395057201,0.43652394134551287,-0.5108728888444602,0.17655810853466392,-0.2451784391887486,0.5570913013070822,0.6007907944731414,0.8729719431139529,0.00031586969271302223,0.7661785064265132,-0.616368964780122,-0.8532563028857112,-0.596735492348671,-0.483931549359113,-0.3320572222582996,0.5586666385643184,0.36877101054415107,0.31834626942873,0.24150273017585278,-0.3648702730424702,-0.9904966549947858,-0.20630337903276086,-0.23868729500100017,0.37549709994345903,0.5718275192193687,0.7734528216533363,0.6346053034067154,0.6277726772241294,-0.9108819854445755,0.7393757211975753,0.44782671984285116,0.45367853017523885,-0.1385007849894464,0.7693783394061029,-0.5008472963236272,0.6276768175885081,-0.4049145788885653,0.3706591594964266,0.4101278563030064,0.28831903357058764,-0.18348745815455914,-0.20382253360003233,-0.6575809926725924,0.5862780008465052,-0.946827121078968,-0.451511331833899,0.6921673715114594,-0.31682445481419563,0.5362377115525305,-0.17114109732210636,-0.496154704131186,-0.7195726376958191,0.535108448471874,0.01360913086682558,-0.6994009679183364,0.8292263122275472,-0.8014719588682055,0.05018702382221818,-0.5406581060960889,-0.019793993793427944,0.0604690620675683,-0.3715285393409431,0.5664700027555227,-0.020463585387915373,0.43523761024698615,0.7042182190343738,-0.8917386648245156,-0.5180164962075651,0.7860444919206202,-0.5987044908106327,0.780461395625025,-0.5753724724054337,0.9214368825778365,-0.8830549800768495,-0.15763087337836623,0.8808990940451622,-0.3304603570140898,-0.7172493366524577,0.02195062581449747,-0.23185081128031015,-0.9016752075403929,0.643091315869242,-0.40208540484309196,0.04383794078603387,0.8581096110865474,-0.5962222404778004,-0.6091636857017875,0.7710766601376235,0.9468802553601563,0.9096572916023433,0.027389890979975462,0.9775871643796563,0.6743764765560627,0.7695368849672377,0.34107959922403097,0.509004844352603,0.431339877191931,0.7715799720026553,0.0071242921985685825,-0.5533663150854409,-0.054888533893972635,-0.2501841811463237,0.5928730107843876,0.7643290054984391,0.8717944389209151,0.8505447311326861,-0.6565329534932971,0.22963794693350792,0.013838354032486677,0.782715855166316,0.0927464016713202,0.17359719844534993,0.34514869889244437,0.8072784780524671,0.5377353858202696,-0.5283363629132509,0.5214862995781004,-0.42199970316141844,0.5024588191881776,0.5013643279671669,-0.03812134964391589,0.464553436730057,-0.34847565181553364,-0.6605801582336426,-0.6023431834764779,-0.6170726506970823,-0.6150542325340211,-0.18998764408752322,0.7758430209942162,0.8600481860339642,0.9480042452923954,-0.509356573689729,0.26593351224437356,-0.027838987298309803,0.25799629418179393,-0.6844718167558312,0.9642259310930967,-0.5838872347958386,-0.9788908194750547,0.12416408723220229,-0.3129199845716357,-0.004057225771248341,-0.16550509398803115,-0.5945499576628208,0.2709169704467058,-0.8815439930185676,-0.06540408171713352,0.3836633497849107,0.4075836059637368,-0.5277175884693861,-0.3812614609487355,-0.5778086045756936,0.6354794907383621,-0.2535265162587166,-0.6063646236434579,-0.3501919978298247,-0.8582273400388658,0.07210989389568567,0.14963847771286964,-0.08848307840526104,0.09735823050141335,-0.24283905047923326,0.5576135218143463,0.5641497224569321,-0.5721636074595153,0.36928434995934367,0.8977997163310647,0.17613036511465907,-0.5669353227131069,0.8955825325101614,-0.49223265051841736,-0.339613810647279,0.5936155989766121,-0.9669437608681619,-0.8803705722093582,0.6145406803116202,-0.39379250863566995,0.653586411383003,0.25411846255883574,0.20770821487531066,0.6014971542172134,0.9482376500964165,-0.6026269989088178,0.6227211779914796,0.813068016897887,0.9295585537329316,-0.6229910468682647,-0.6342398831620812,0.8966363854706287,-0.05359672522172332,-0.34035657113417983,0.21197274466976523,-0.6754684145562351,-0.7991665913723409,-0.8203184953890741,0.6424373122863472,-0.48870689840987325,0.9166390472091734,0.3321590069681406,-0.047289024107158184,-0.7598294960334897,0.8524933359585702,0.18228180659934878,0.1428290163166821,-0.6917457804083824,0.5991118927486241,-0.548833817243576,-0.6854168237186968,0.20221179770305753,0.45428348425775766,-0.7416469249874353,-0.08589690458029509,-0.32291636150330305,0.09521809499710798,-0.9906524703837931,0.7796268276870251,-0.7659657504409552,-0.945124086458236,0.9139449498616159,-0.4475479098036885,0.8205264606513083,0.3036291035823524,0.8721968750469387,-0.7497923723421991,-0.38365985034033656,0.6183697627857327,-0.3742625447921455,0.8744225264526904,0.8601894374005497,0.2237010383978486,0.06724448595196009,0.7895815116353333,-0.2379950424656272,-0.9280532984994352,0.09340871032327414,-0.09993897285312414,0.3148217131383717,-0.22862535016611218,0.04241775535047054,0.937400059774518,0.8377848728559911,0.7046465300954878,0.683239090256393,0.5378587814047933,0.5460364329628646,0.6510525504127145,0.932566209230572,0.21815869584679604,0.8233259730041027,0.2584601645357907,0.34101992985233665,0.9727885546162724,-0.4512370559386909,0.22544400161132216,0.6863411902450025,-0.8459000084549189,-0.44339420599862933,0.11268605338409543,0.8769581927917898,-0.7087148353457451,0.9715925133787096,0.8986904001794755,-0.03229796327650547,0.4880861137062311,0.24770263582468033,-0.40215630177408457,-0.8693894250318408,0.9815572150982916,-0.6452096393331885,-0.5250481767579913,0.6199152250774205,0.7568739536218345,0.32353609474375844,0.977843904402107,0.2916670283302665,-0.475679540541023,-0.7951712207868695,0.8432592465542257,-0.5954800467006862,0.6578776454553008,-0.5869334558956325,0.8864396959543228,0.04761845152825117,0.7818381180986762,0.6202256102114916,-0.7743970267474651,0.9384926185011864,-0.27806416619569063,0.6654543313197792,-0.3930627494119108,0.9202118758112192,0.6672448734752834,0.9752544239163399,-0.6226148335263133,-0.222887780983001,0.909276619553566,0.14282488310709596,-0.8463427950628102,0.9389342041686177,-0.7452886421233416,0.30572451604530215,0.3383102463558316,0.296594993211329,0.39693138329312205,-0.9053109097294509,0.9642651327885687,0.8242564499378204,0.6503781192004681,-0.6597633929923177,0.7938779341056943,-0.0767715503461659,-0.11698271427303553,0.6086619147099555,0.7160895140841603,-0.6428848626092076,-0.6860042959451675,-0.09109150618314743,-0.5107765686698258,-0.9829177814535797,-0.4179823356680572,0.7691430612467229,-0.14512094110250473,-0.8360395487397909,-0.6132906689308584,0.3706435593776405,0.38207320822402835,-0.8664597338065505,0.43150746589526534,0.07212961744517088,0.6256966008804739,0.17474231077358127,0.9703915412537754,-0.11537364590913057,-0.35840239794924855,-0.9158164523541927,0.6585708945058286,-0.5859787273220718,0.17101203696802258,0.38557105511426926,0.4235016042366624,0.861766713205725,-0.08445666311308742,0.09115783078595996,0.7147017968818545,0.2787909423932433,-0.6124867754988372,-0.4811949385330081,-0.8755253604613245,0.24305886588990688,-0.04113376000896096,-0.6459381002932787,-0.6708717155270278,-0.27455417066812515,0.3699184004217386,-0.2230542739853263,0.13009358057752252,0.39122887002304196,-0.9000491718761623,-0.4194219298660755,-0.4176296992227435,-0.5810074754990637,0.8930156859569252,-0.2831307393498719,0.0010222569108009338,0.19240285269916058,0.7374142315238714,-0.41785361152142286,0.9517201837152243,-0.5133011238649487,-0.26182579062879086,-0.8379015200771391,-0.25738928746432066,0.39961680164560676,0.6694640908390284,-0.9780081170611084,-0.9807145479135215,0.0008573634549975395,-0.11948089255020022,-0.9242046419531107,0.3881349069997668,0.8437616671435535,-0.5550724822096527,-0.25958176981657743,0.6872222446836531,-0.26012284867465496,0.9549343264661729,-0.16483395639806986,-0.7407797235064209,0.5136403390206397,-0.8898456911556423,0.20420426269993186,-0.06832428276538849,-0.5993016711436212,0.08053010515868664,-0.5847828020341694,0.5440875818021595,-0.4298212300054729,0.014082987327128649,-0.18538336362689734,0.38091682363301516,-0.10805390356108546,-0.2521848389878869,0.44479517498984933,0.2046497599221766,0.04980331938713789,-0.3194643915630877,0.29360756604000926,-0.21164052234962583,0.4889307008124888,0.4622176066040993,0.2773791905492544,-0.9342207182198763,0.4982870449312031,-0.30677874432876706,-0.08604960283264518,0.5119913779199123,0.2989131333306432,-0.6088748178444803,0.9286753116175532,-0.25909135164693,0.5188927752897143,0.3681820095516741,0.49219383485615253,0.6150078503414989,-0.415305333212018,0.9481249256059527,0.37223931634798646,-0.8684557043015957,-0.9425743175670505,-0.6809412911534309,-0.9840666721574962,-0.4797817226499319,-0.6277391696348786,-0.4637916972860694,-0.5143777304328978,-0.09389503905549645,0.198385092895478,-0.5299169505015016,-0.8879901426844299,-0.9160618921741843,-0.30679190205410123,-0.0685981372371316,-0.8113195891492069,-0.8948956285603344,-0.0535229523666203,-0.6623895894736052,-0.32389220129698515,-0.7870019129477441,-0.2571942238137126,0.8710916833952069,0.05494577204808593,-0.3739296807907522,-0.8003655965439975,-0.09175110002979636,0.009313599206507206,-0.24653368722647429,0.8481536349281669,-0.4732097233645618,0.1218847231939435,-0.3401825330220163,-0.026393661741167307,-0.22265749238431454,0.7736658398061991,-0.9718557316809893,0.06721034413203597,0.32753632543608546,0.17295127734541893,-0.8347455621697009,-0.8692715680226684,0.7170643005520105,-0.6018960694782436,0.60742666432634,-0.16620521433651447,-0.7829356878064573,-0.2123864684253931,0.47670270409435034,0.09031898900866508,0.6102826637215912,-0.1791941742412746,-0.5613640840165317,0.31611335137858987,0.33580810111016035,-0.5597786526195705,-0.7674370622262359,0.035100999753922224,-0.6379610006697476,0.3450925345532596,0.7943748943507671,0.8747527254745364,-0.6198404585011303,-0.09353626100346446,0.9259889083914459,0.9744080496020615,0.944307629019022,0.6252259910106659,-0.8077839422039688,0.3853221791796386,0.8227349184453487,0.30540882563218474,-0.05491669336333871,0.015521423425525427,-0.016498141922056675,-0.939743182156235,-0.4698462812229991,-0.24073195969685912,-0.6162965632975101,-0.9920080890879035,0.05721326172351837,0.572059276048094,-0.4933855030685663,-0.7349141547456384,-0.02332002855837345,0.7032638196833432,-0.6737157911993563,0.7649251157417893,0.9555800296366215,-0.5685792556032538,0.6210561920888722,0.6233382946811616,-0.5349373179487884,0.28945433581247926,0.7157686110585928,0.9243751824833453,-0.4655316020362079,-0.6293075308203697,0.402884712908417,-0.47255360428243876,-0.016169936396181583,-0.46440472453832626,-0.9813228286802769,-0.2619567192159593,0.6909359148703516,-0.43548254994675517,0.9688306492753327,-0.014993667602539062,-0.6095098927617073,0.6927153887227178,0.02077752770856023,-0.11816827347502112,0.7222917703911662,-0.06958753801882267,0.5821420662105083,0.11839584540575743,-0.09493771707639098,0.5071713952347636,0.4704116773791611,0.742345588747412,0.7982872929424047,0.05663931276649237,0.17265913961455226,0.2572366832755506,-0.5716861104592681,-0.981960488948971,-0.2040754030458629,0.9494931600056589,0.00352445337921381,0.06107031740248203,-0.7578778620809317,0.7603600001893938,0.6489112670533359,0.6747229201719165,-0.49586830846965313,0.1697504837065935,-0.7437516422942281,-0.9697480848990381,-0.6639324775896966,-0.9588126786984503,0.767048021312803,-0.920711356215179,0.1390936728566885,-0.7595517341978848,-0.8343120752833784,0.9712225212715566,-0.2551404610276222,-0.5300526092760265,0.4969667079858482,0.8700669179670513,-0.4070865376852453,0.3982358309440315,-0.06678419280797243,0.446548730134964,-0.06376765528693795,-0.08825212344527245,-0.7301821243017912,-0.09203068865463138,-0.6559486547484994,0.9488553944975138,0.9036038462072611,-0.007721623871475458,0.19408160028979182,0.4766286304220557,0.27086404664441943,0.9060343150049448,0.1025594798848033,-0.8215229501947761,-0.6310048270970583,-0.7747917273081839,0.20079333381727338,-0.16405944572761655,0.8899677349254489,0.9143578051589429,0.9096434428356588,-0.9656343166716397,0.5731473225168884,-0.8149072518572211,0.9559364388696849,-0.91266237385571,0.9690961698070168,0.4857933782041073,-0.9966468838974833,-0.007283610291779041,0.681896137073636,-0.9071495002135634,0.3077943967655301,-0.6796033615246415,0.07433530874550343,0.7742402604781091,0.008700288832187653,-0.6408904162235558,0.41833441937342286,0.678865950088948,0.8046429129317403,-0.3022081721574068,-0.12026228429749608,0.1267259637825191,0.6047509894706309,-0.032420463394373655,-0.8624194795265794,-0.7213763692416251,0.5025905431248248,0.16679190658032894,-0.4138605264015496,-0.45116220507770777,-0.09463478485122323,0.381854098290205,-0.9792343084700406,0.7916475348174572,0.5014251191169024,0.5770222977735102,-0.7097078301012516,-0.5283027491532266,-0.01753810467198491,0.08322998136281967,0.9878560467623174,-0.6064292271621525,-0.5284329797141254,0.7475916733965278,-0.8918258710764349,-0.48197753448039293,-0.8548813271336257,-0.05939785670489073,0.5801646700128913,-0.8963416172191501,-0.6760269901715219,-0.41539126075804234,0.8350325645878911,-0.24881675001233816,-0.8670215890742838,-0.5661157164722681,0.656054594554007,-0.17268886091187596,0.9737537610344589,0.3561527174897492,-0.1753065842203796,-0.09409154858440161,0.22316057607531548,-0.812557227909565,0.41194067150354385,0.2195839984342456,0.09064810024574399,-0.9065885269083083,-0.7990145622752607,0.5862053069286048,-0.39656723756343126,0.4066832005046308,-0.45380476117134094,-0.9301741486415267,-0.43547026440501213,0.953849348705262,0.15454801032319665,0.265985026024282,-0.9268593974411488,0.7846643589437008,0.46742993127554655,0.9858730533160269,-0.30316793685778975,4.37665730714798e-05,-0.5469639832153916,-0.6557274353690445,-0.5063614123500884,-0.4596926821395755,0.45180211402475834,0.28782838489860296,-0.5475235511548817,0.047707783523947,0.05621042661368847,-0.6341470964252949,-0.3227412453852594,0.5715679600834846,-0.2721685371361673,0.9297448606230319,0.5180964814499021,-0.3608610974624753,-0.39768790919333696,-0.39011462684720755,-0.6714966972358525,-0.9290869836695492,-0.9382187621667981,0.23909520311281085,0.8208773639053106,-0.4562546596862376,0.8394523649476469,-0.7151564708910882,-0.9671889925375581,-0.08010378992184997,0.8351514851674438,0.3911010203883052,-0.5970635367557406,-0.8192675742320716,-0.6955542312934995,0.646893463563174,0.4734723540022969,0.885414145886898,-0.8034258428961039,0.6484519457444549,0.5390760358422995,0.4788459138944745,0.5449476642534137,-0.015090941451489925,0.5732498648576438,-0.6825328832492232,-0.8049109429121017,-0.007885715458542109,0.08834345219656825,0.2675702958367765,0.8130768071860075,0.1189313237555325,0.15466537978500128,0.7908846316859126,0.7503413846716285,0.6030289079062641,0.9737245715223253,0.8311273870058358,-0.3467964851297438,-0.9046739917248487,-0.20327736530452967,-0.07461158325895667,0.8809974770992994,0.5268226317130029,-0.8747698869556189,0.5863302787765861,-0.12274421425536275,-0.8881983417086303,-0.03603070601820946,-0.872010137885809,0.6328230947256088,0.6290153688751161,-0.5779805546626449,-0.6194397886283696,0.6643508803099394,-0.1775816734880209,0.5492043914273381,0.3342328555881977,0.29111736733466387,0.15314600011333823,-0.45747264148667455,0.7355073615908623,-0.8883120329119265,-0.05923330504447222,0.5175180085934699,0.5217459229752421,-0.5259952107444406,-0.3873357563279569,-0.42632307950407267,-0.576027411967516,0.9484746297821403,-0.7391205416060984,-0.907450235914439,-0.5744332633912563,-0.26664773980155587,-0.928096798248589,0.5322564044035971,0.2638109545223415,-0.2945455815643072,-0.9763522422872484,-0.4371375059708953,0.7050811764784157,-0.6172889354638755,-0.9275745386257768,-0.028764201793819666,-0.3554938407614827,0.44131960766389966,-0.6912619392387569,-0.9071811395697296,0.9405118813738227,-0.9662053682841361,0.27990763541311026,-0.34912148443982005,0.40318254521116614,0.3974348451010883,0.4166981568560004,0.3975903717800975,-0.46748541202396154,-0.25880405586212873,-0.4355265265330672,-0.29810384614393115,0.33101190021261573,0.18536702869459987,0.8952752146869898,-0.04353921953588724,0.7337333844043314,0.3697310029529035,0.80821438645944,0.4867904051207006,0.6478140680119395,-0.5370487845502794,0.9698712010867894,0.3759119571186602,-0.47818420454859734,0.4572041667997837,0.6288741230964661,0.05504484428092837,0.20151475397869945,0.14250977197661996,-0.24773831572383642,0.5523076350800693,0.44734513852745295,-0.3716306476853788,-0.22039753571152687,0.9210645752027631,-0.14668637281283736,0.45329463481903076,0.1560767451301217,-0.02228401694446802,0.4025036236271262,0.3926408225670457,0.8869180046021938,0.6651462819427252,0.7407986591570079,-0.3361271093599498,-0.7399228331632912,-0.5279575209133327,-0.5725119258277118,0.6977986441925168,0.5099779851734638,-0.684948748908937,0.3822779767215252,-0.9601789573207498,-0.7821684516966343,0.5756921768188477,-0.3812437057495117,0.669240708462894,-0.06498798215761781,-0.2878917786292732,-0.6244652052409947,0.7141946265473962,-0.8611737578175962,0.4328668047674,0.9986532717011869,0.7246680469252169,-0.27752396697178483,-0.8895192453637719,0.23526289779692888,0.032678383868187666,0.8569125793874264,-0.8208665759302676,0.26205601915717125,0.3264939347282052,0.6731118080206215,-0.8857158734463155,0.2378885163925588,-0.5190079994499683,-0.08440776215866208,-0.37967471638694406,-0.46487184939906,-0.09972373768687248,-0.4078816995024681,-0.50877984194085,-0.2930260244756937,-0.5293573816306889,0.12485173065215349,-0.32786500500515103,-0.5303728980943561,-0.6762622524984181,0.8494910364970565,-0.709190693218261,0.9197230925783515,0.5343677732162178,-0.18316904781386256,-0.9285473125055432,-0.986704396083951,-0.46187777118757367,-0.4957067179493606,0.594294567592442,-0.16703758016228676,0.8771733888424933,-0.8651738935150206,0.9261090769432485,0.06261900486424565,-0.1484009618870914,0.6666278978809714,0.9249381236732006,0.1179128959774971,0.6097929482348263,0.0736035518348217,-0.9042327264323831,0.11571236280724406,0.28819850319996476,-0.06882243929430842,0.5705740335397422,0.18188093090429902,0.46601326344534755,-0.9621690567582846,-0.21595048671588302,0.9784599398262799,-0.06946587190032005,0.6930307196453214,-0.6378883700817823,0.9466351326555014,-0.5919363680295646,0.07007218711078167,-0.5860965112224221,-0.3845844832248986,-0.6122326096519828,-0.23829620191827416,0.7348552802577615,-0.2086151335388422,0.6731269275769591,0.9894734425470233,0.6922428933903575,-0.5135066718794405,0.26719726249575615,0.010953075718134642,-0.7391534759663045,-0.040246881544589996,0.26067684730514884,0.2677533649839461,0.22090569930151105,0.45031440909951925,-0.41674024565145373,0.2822483158670366,0.30251683527603745,0.7367945439182222,-0.37578133028000593,0.04863289184868336,0.4706194819882512,0.7227644487284124,0.5401653358712792,-0.6846798178739846,0.9188958443701267,0.9315986414439976,-0.18116659065708518,0.9917359226383269,0.12606484349817038,0.41008598264306784,-0.1794716641306877,-0.9828893966041505,-0.0783657617866993,0.3642457486130297,0.8939760765060782,-0.546348191332072,-0.8469053758308291,-0.30635142466053367,-0.32953000254929066,0.7946635666303337,-0.4573908010497689,0.8071152437478304,0.9391546668484807,0.6878551240079105,0.06628721300512552,0.9151225378736854,-0.948049146682024,-0.934258483350277,-0.9304107297211885,0.7973005063831806,0.4019204950891435,-0.3692481489852071,-0.8599959053099155,0.22789820283651352,-0.5569281531497836,0.3339090342633426,-0.6052863830700517,-0.6483228234574199,0.9900721427984536,-0.033892884850502014,0.14538671728223562,0.6725805490277708,0.1259182095527649,0.10940361069515347,0.35922081116586924,-0.3231618292629719,-0.6148843131959438,0.13536175386980176,0.05058096395805478,0.39421997871249914,0.4343514465726912,-0.3306603250093758,0.008696286007761955,-0.4244868280366063,-0.4786272761411965,-0.045496605802327394,0.8895398997701705,-0.4259767201729119,0.4511895184405148,0.09229051135480404,-0.052880884148180485,0.09005790064111352,-0.538531371857971,0.6326878471300006,-0.09567248681560159,-0.9213142991065979,-0.1449476694688201,0.6075759809464216,0.5404339809902012,0.10376080311834812,-0.6159764127805829,0.9283106294460595,0.39671569922938943,0.333216626662761,-0.47346928296610713,-0.09053698740899563,-0.9677484724670649,0.4700867859646678,-0.19676970038563013,0.35230707190930843,-0.7938916925340891,0.26043981965631247,-0.13865847373381257,-0.9374734000302851,-0.3982823514379561,0.8476374037563801,0.3981118588708341,0.007188971154391766,0.4376328852958977,-0.5602884637191892,0.6609069597907364,0.6361670987680554,0.8292911066673696,0.490388838108629,0.03113176627084613,0.7301852749660611,-0.09597710333764553,-0.25323329446837306,0.5130966589786112,-0.916388257406652,-0.5953647191636264,-0.1847207248210907,0.10442867502570152,0.12946816347539425,-0.9925559409894049,-0.9082451015710831,-0.08913240395486355,-0.16227657347917557,-0.9015333624556661,0.2021215888671577,-0.3405576073564589,0.7782610245049,-0.1610981156118214,-0.7439745767042041,-0.7542155291885138,-0.3328552576713264,0.7160615054890513,0.6135661099106073,-0.6265243194065988,-0.983589424751699,0.4349972060881555,-0.5008632806129754,-0.9232666469179094,-0.9328397316858172,-0.529681125190109,0.11180005734786391,0.667987585067749,-0.07036919752135873,-0.20165300695225596,0.5371608003042638,-0.3610493163578212,-0.07005600770935416,0.5679967738687992,0.27127415873110294,-0.8606383730657399,-0.1567703695036471,-0.002115718089044094,-0.6610096651129425,-0.9101712321862578,-0.16940884292125702,0.11169003834947944,0.8611596669070423,0.27237998554483056,-0.2791283200494945,-0.5021175248548388,0.37735656276345253,-0.6932658152654767,-0.23640934936702251,0.9004879053682089,0.987697436939925,-0.5038446420803666,-0.8779589007608593,-0.4199807816185057,-0.3690390861593187,-0.03188258968293667,-0.47700756834819913,-0.18766265315935016,-0.11568627832457423,-0.09382344596087933,0.17772370157763362,-0.756632539909333,0.5621102708391845,0.47745641879737377,-0.016728246584534645,-0.5729753845371306,0.7712060702033341,-0.18566654808819294,-0.3906306764110923,-0.5439368197694421,0.1779778841882944,0.5413742866367102,0.6267517255619168,0.7644563699141145,-0.6240988350473344,0.1507304310798645,-0.36079093674197793,0.48607348278164864,0.8353412514552474,-0.13913670228794217,-0.9619740038178861,-0.28788107819855213,0.8895681011490524,-0.849317476619035,0.6543980296701193,0.7445555836893618,0.2783744614571333,0.935970276594162,0.10567303886637092,-0.2846366064622998,0.46953447721898556,0.2764583104290068,0.21658422332257032,0.42851230781525373,-0.8276955988258123,-0.4532188745215535,-0.8895572833716869,-0.27121266908943653,0.7562071434222162,-0.4066630844026804,0.917703656014055,-0.7354003745131195,-0.2868452104739845,-0.5247525367885828,-0.3670133496634662,0.14057286269962788,0.5337333693169057,-0.9377613300457597,0.14180793426930904,-0.5960290157236159,0.3427218021824956,0.5576682100072503,-0.6375175849534571,0.9906342593021691,-0.24800815293565392,0.3102487111464143,-0.7493848619051278,0.9370763949118555,0.6785669079981744,-0.6346316114068031,0.35867865523323417,-0.9419151386246085,-0.9910141034051776,0.22518261801451445,0.041561341378837824,-0.02347571635618806,0.43261722894385457,0.03511688159778714,-0.05721809947863221,-0.1995725273154676,-0.24842393165454268,-0.8980715116485953,-0.8342661620117724,-0.08041673013940454,0.42057048715651035,0.6623754696920514,-0.5698333638720214,0.8746567629277706,0.7193889548070729,0.2825948465615511,0.6970575200393796,0.8779581789858639,0.38559646252542734,-0.1533027207478881,0.5216447971761227,0.7253013621084392,-0.5577246421016753,-0.5660263365134597,-0.6284264670684934,-0.3825628813356161,0.39059301977977157,-0.6817242964170873,-0.017568218056112528,-0.16316281585022807,0.7356527093797922,0.8142915824428201,-0.4551523709669709,0.08006711211055517,0.5608207923360169,-0.08181797014549375,-0.932087435387075,0.8428703229874372,0.830208906903863,-0.9123870027251542,-0.2195234289392829,0.3587828823365271,-0.08645026059821248,0.09753161435946822,-0.9200914814136922,0.24064842890948057,-0.2734445510432124,0.8903192416764796,0.245413473341614,-0.09957486810162663,0.28304020734503865,-0.10368636762723327,0.22914537554606795,0.37964696111157537,-0.05963773326948285,0.6583441244438291,0.9601010028272867,0.7624415620230138,0.832938548643142,-0.508842013310641,0.5036880103871226,-0.3745866920799017,-0.4642907870002091,-0.5453340737149119,-0.40928022284060717,-0.49096316983923316,0.633427809458226,0.4856431493535638,0.29052438819780946,-0.18152667861431837,0.26187051460146904,0.0906365574337542,0.8160644639283419,-0.4990821583196521,-0.430894008371979,-0.043176883831620216,-0.3675138596445322,-0.5748331747017801,0.8433826067484915,0.12728611752390862,0.7573065785691142,-0.8427841947413981,-0.019649977795779705,-0.748144465032965,-0.15595149947330356,-0.3583404361270368,-0.07617695117369294,-0.712663815356791,0.14207420079037547,-0.19074196042492986,-0.4964898396283388,-0.29816941590979695,-0.6158193848095834,0.33632403053343296,-0.6641196869313717,0.5801267419010401,-0.048971318639814854,0.5573643483221531,-0.17709900857880712,0.22423290042206645,-0.27464125771075487,0.05999261559918523,0.6742372051812708,0.6239227568730712,-0.004843904636800289,0.40499941259622574,0.05136513849720359,-0.8112139534205198,-0.34146443335339427,0.1408545933663845,0.5316822216846049,-0.6275198962539434,0.5796411256305873,0.08939149649813771,-0.28801182145252824,0.8890498387627304,0.012439514975994825,0.1982198590412736,-0.5320211555808783,0.524498435202986,-0.49359552236273885,0.07551753986626863,0.220969351939857,0.07928231963887811,0.13192269299179316,0.25160651793703437,-0.6577640511095524,0.9761092057451606,-0.04685876704752445,-0.5595755390822887,-0.7957191821187735,-0.0392748573794961,0.20135220559313893,-0.18836629204452038,0.4559303056448698,-0.19264080235734582,0.5230873143300414,-0.6790589969605207,0.8023661193437874,0.7871518209576607,-0.01740925805643201,0.25998488161712885,0.3663138817064464,0.8407241553068161,-0.5685182851739228,-0.49123928789049387,0.0033158897422254086,0.48382049426436424,-0.2691010828129947,-0.7548017576336861,0.4578064503148198,-0.33939344668760896,-0.7751556099392474,0.7368105868808925,-0.3252826030366123,0.18727222504094243,-0.10413372609764338,-0.8304684162139893,0.43074353132396936,-0.761341888923198,-0.1885363277979195,-0.38712351163849235,0.7549824798479676,-0.7224759780801833,0.3141451207920909,0.42662388691678643,-0.3686732016503811,0.0629401970654726,0.24201992200687528,0.7528991186991334,-0.38660024711862206,0.8037011660635471,0.01404096931219101,0.023464149329811335,-0.8136801938526332,-0.44581830967217684,0.3150688405148685,0.457977051846683,-0.596278018783778,0.789487695787102,0.5998448152095079,0.6310352878645062,-0.2938812649808824,0.29513328429311514,-0.8595606992021203,-0.3065290283411741,0.034366505686193705,0.6785361533984542,-0.7905479301698506,0.5680984947830439,0.7824806529097259,-0.4390222425572574,-0.34467649180442095,-0.2934921574778855,-0.1261671124957502,0.20878272596746683,-0.6171513902954757,0.12214572448283434,-0.331970467697829,0.9921004981733859,-0.04753943905234337,-0.2843431020155549,0.7082726070657372,-0.14294755086302757,0.06982734054327011,-0.2212801561690867,0.3176280576735735,-0.1514172456227243,-0.8901825789362192,-0.8247045786119998,-0.999290338717401,0.3282596794888377,-0.4526631133630872,0.7822787836194038,0.36813997849822044,-0.754412186332047,-0.5019876803271472,-0.19543611956760287,-0.874588780105114,0.6974320076406002,0.5618562214076519,0.7268393095582724,-0.44384200125932693,0.4963550241664052,0.03723154356703162,0.2518861494027078,0.8070300407707691,0.501001984346658,0.6228313939645886,-0.03182869777083397,0.2054420574568212,0.5981244253925979,0.22315549245104194,0.8739845803938806,-0.26608514646068215,-0.5695988908410072,0.883324381429702,0.19875296344980597,0.5579942297190428,0.976464681327343,0.3922333470545709,0.9591602371074259,-0.6317846612073481,0.3405288509093225,0.8982623000629246,0.78152941679582,-0.1417409465648234,-0.9444322660565376,-0.08057013712823391,0.8824313632212579,-0.1591193312779069,-0.9000030420720577,-0.3087943373247981,-0.7338448003865778,-0.05542756337672472,-0.8484115586616099,-0.8916127784177661,0.20970451273024082,0.5527332131750882,0.12427293555811048,0.18137094983831048,0.10410071536898613,-0.3900364562869072,-0.7276378348469734,0.9157698531635106,-0.41333266720175743,-0.5375458393245935,0.6976310010068119,-0.9199002305977046,-0.3369153877720237,-0.5658879554830492,0.9338427809998393,0.11230860045179725,0.4266356616280973,0.7780438661575317,0.6946457657031715,-0.16640724008902907,0.17744340281933546,0.24773156270384789,-0.8286670334637165,-0.5629353779368103,0.1639377516694367,0.7965872059576213,0.1276308628730476,-0.5426872163079679,0.6667752806097269,0.3207154725678265,-0.5606749863363802,-0.07392097497358918,0.5322238793596625,-0.9181354544125497,0.6678764973767102,0.6772836586460471,0.9496069243177772,-0.12743240501731634,0.4202985614538193,-0.8097256706096232,0.8826852324418724,0.6953521482646465,0.5134767992421985,-0.7601023009046912,-0.8913216246291995,-0.3196095428429544,-0.07194764027372003,0.5852539455518126,0.06952086603268981,-0.550973785109818,0.7963865688070655,0.5785545981489122,0.982537358533591,0.8934003002941608,0.3033987293019891,0.5997090018354356,-0.30606697127223015,-0.3345476142130792,-0.3188075805082917,-0.3074710429646075,0.06433885637670755,-0.1143945911899209,0.1189653780311346,0.4117361633107066,-0.34990441845729947,-0.19280050415545702,0.18354451609775424,0.4155193204060197,0.21929953945800662,0.8063868042081594,0.07005325006321073,0.44032899802550673,-0.05465048644691706,-0.5184742407873273,-0.18677890812978148,-0.843582009896636,0.7939373245462775,-0.08292922982946038,0.016881730407476425,0.06619379855692387,0.1293176468461752,-0.8504042932763696,-0.15520299226045609,-0.847693741787225,-0.06655901623889804,-0.34764208970591426,-0.7937044682912529,-0.4110562722198665,0.1440399237908423,0.9643251025117934,0.17212197231128812,0.5595273524522781,0.6582126561552286,0.06953105330467224,-0.6482141488231719,-0.5290127508342266,0.8796070776879787,-0.9733517812564969,0.26734938099980354,0.32087586307898164,0.8320214017294347,0.1426680744625628,0.15423731179907918,-0.08892634557560086,0.3092419970780611,0.7487476319074631,0.14663986396044493,0.23903825180605054,-0.5171668529510498,0.9115936979651451,0.48007179610431194,0.3989936369471252,-0.10696732671931386,0.6434790370985866,-0.013421313837170601,-0.35883747739717364,-0.605259036179632,-0.9782513552345335,0.4521248461678624,0.30378583911806345,0.5437719183973968,0.908283235039562,-0.1591868493705988,0.7262733583338559,0.00036567961797118187,-0.27663889434188604,0.3903493587858975,-0.7835602900013328,0.34713390097022057,0.09003353025764227,-0.34119840105995536,0.07865229900926352,0.05872887000441551,-0.9957754318602383,0.9265127456746995,0.767130515538156,-0.008101940155029297,0.22938439901918173,-0.009791960008442402,0.520076363813132,0.6272214213386178,0.0026489077135920525,0.3819784387014806,-0.851189665030688,-0.9720314904116094,0.794497687369585,-0.7838378800079226,0.8293220615014434,0.6227822815999389,0.3282435620203614,0.41086071031168103,-0.8923319936729968,0.15008815564215183,0.8219502978026867,-0.3505468131043017,-0.22650209767743945,0.06901535158976912,0.12701607402414083,0.871229977812618,-0.9371781088411808,0.21399557357653975,-0.2808064613491297,-0.09818449337035418,-0.03172296565026045,-0.37036622501909733,-0.5071750460192561,0.09789685951545835,0.6279875789768994,0.3079620450735092,-0.41552969347685575,-0.5403069872409105,-0.4987692735157907,-0.433763166423887,-0.10920703923329711,-0.8808167488314211,-0.3492494556121528,0.39362538838759065,-0.8837515139020979,0.022623338270932436,-0.7771779051981866,0.8568521831184626,0.9881434165872633,-0.4192450335249305,0.5495712142437696,-0.05303565971553326,-0.6554044582881033,0.033407754730433226,-0.7551641929894686,-0.642158480361104,-0.2825923799537122,0.3550822730176151,0.39420893089845777,-0.3393799802288413,-0.6696070116013288,-0.016316671390086412,-0.614384101703763,-0.29280264815315604,0.6479421951808035,0.054070675279945135,0.5033404817804694,-0.04231854109093547,-0.6206908691674471,-0.462742374278605,0.6563826007768512,0.2519972762092948,0.15727872215211391,0.2669688668102026,0.7743076966144145,-0.3411240973509848,-0.4981041136197746,-0.841715375892818,0.28912743693217635,-0.14300457388162613,0.45089753391221166,-0.044390915893018246,-0.5612458535470068,-0.377164120785892,0.6312290080823004,-0.7649216242134571,-0.7563821696676314,0.602694652043283,0.46035797242075205,-0.6205060188658535,-0.35337484488263726,0.4330142051912844,-0.4899297901429236,0.8830545921809971,-0.3635893608443439,0.24440276250243187,0.5411491324193776,-0.6840392909944057,0.5949107250198722,0.459935053717345,0.4681852273643017,-0.1466953894123435,0.10552098974585533,-0.6452551912516356,0.945157750044018,0.05228524375706911,-0.28850465966388583,0.044202686753124,-0.7480914867483079,0.5400952957570553,-0.16416784096509218,0.08370269602164626,-0.929483865853399,0.2010025791823864,0.9572255592793226,-0.03657104866579175,0.6943627949804068,-0.9606888042762876,0.9062709994614124,0.49120381381362677,-0.29680203972384334,-0.40658947080373764,0.33371086651459336,0.7134286775253713,-0.2563358349725604,0.6109284861013293,-0.9314453145489097,-0.6441411734558642,0.13393889786675572,-0.7485354775562882,0.3057493311353028,-0.23492954345420003,0.4055179515853524,-0.08551055192947388,0.11098827747628093,0.3345583500340581,-0.1905673104338348,-0.22896386263892055,0.9557336489669979,0.9235505326651037,-0.7767073204740882,0.18007860705256462,0.042681524995714426,0.9523366619832814,0.7500890986993909,-0.42058273078873754,0.6743384944275022,0.35953387757763267,-0.532398505602032,0.9132647016085684,-0.04250714695081115,-0.14176633907482028,0.7999886320903897,0.2430478921160102,0.4152742512524128,0.6004480188712478,0.377889602445066,-0.39122258219867945,0.43940073996782303,-0.8309439877048135,-0.8282528915442526,0.3912384142167866,0.9013345669955015,0.08750000828877091,0.7351813870482147,0.9233354344032705,0.08980160066857934,0.34929096791893244,0.2665820522233844,-0.8868865263648331,-0.1883494663052261,0.8773375884629786,0.4462728966027498,-0.738529175054282,-0.009590114932507277,-0.2908449028618634,0.2516034743748605,-0.14468401856720448,-0.9702220428735018,-0.1990693393163383,-0.41646266961470246,-0.56737070530653,-0.4011842184700072,-0.6087057171389461,-0.15477306814864278,0.12450137222185731,-0.5850278493016958,0.0380247225984931,0.4527254933491349,0.8400245690718293,-0.256415200419724,0.7420345959253609,0.03271181648597121,0.12296415911987424,-0.889026589691639,-0.29504816560074687,0.43212150130420923,0.6212858371436596,0.4968602736480534,-0.3665280225686729,0.24343609251081944,-0.37806078512221575,0.8507503671571612,-0.402753259986639,0.007340980693697929,-0.3949532159604132,0.3990347618237138,-0.2893238109536469,-0.13656497932970524,-0.2845784090459347,-0.9536896240897477,-0.27907950710505247,0.7333576930686831,-0.2687262003310025,-0.3721630470827222,0.7536014588549733,0.1893833540380001,-0.18867469113320112,-0.6518329391255975,-0.04737063590437174,-0.49006587034091353,-0.43364930199459195,0.8132220306433737,-0.8117776517756283,-0.9461617385968566,0.030007544439285994,-0.4604722699150443,-0.6625639107078314,-0.10081512155011296,0.30215590726584196,0.7789594223722816,0.591002379078418,0.5707487594336271,-0.973468339536339,-0.19980574632063508,-0.14481104025617242,-0.8382336129434407,-0.9719691518694162,0.1633642870001495,0.5469856765121222,-0.24381759157404304,-0.2740880544297397,0.47316632233560085,-0.5757836177945137,0.4354124045930803,0.2147373305633664,-0.7479340671561658,0.7493004389107227,-0.8084406401030719,0.6573685444891453,-0.09443483036011457,0.49584734672680497,0.396348325535655,-0.5999162127263844,0.8581442045979202,-0.23802676098421216,0.6588002014905214,0.6222445499151945,-0.1306645250879228,0.29157430306077003,-0.9185449946671724,0.06236387696117163,-0.7335126390680671,-0.7409294764511287,-0.8791804146021605,0.8786121751181781,-0.4116841140203178,-0.6417730110697448,0.5945036662742496,-0.5559506048448384,-0.30158615903928876,-0.5083435159176588,0.3366026501171291,0.7627650955691934,0.7752847210504115,-0.9637706442736089,0.8849193374626338,0.9251001458615065,-0.09803640143945813,-0.14159005414694548,0.6585488026030362,0.6565275504253805,-0.572404676117003,-0.5929872337728739,0.3716345699504018,-0.5546151166781783,-0.8899161028675735,-0.5816235579550266,-0.5623521436937153,-0.7039977652020752,0.06257764622569084,-0.14683826034888625,-0.19240756798535585,-0.19280659733340144,0.8227178365923464,-0.7530379588715732,-0.5682068364694715,-0.8137435908429325,0.8599679195322096,-0.7590382951311767,0.025204753503203392,-0.7070466298609972,0.8778833565302193,0.9141844226978719,-0.5405323132872581,0.5730725289322436,0.018388332333415747,-0.34841847233474255,-0.17816020594909787,0.32009976729750633,0.8408033242449164,-0.2988915820606053,0.9221231904812157,0.6411367980763316,-0.12828134885057807,0.4640435865148902,0.7124038259498775,-0.43807411612942815,-0.2908957013860345,-0.6329905609600246,-0.7486642557196319,-0.9647279302589595,0.47009936813265085,-0.8383952677249908,0.29323282139375806,-0.4449720084667206,-0.22962536662817,0.7300589215010405,0.965318204369396,-0.29706397373229265,-0.8565674764104187,0.5563868233002722,-0.2814951427280903,-0.8911151671782136,-0.2077815136872232,0.5348851829767227,0.359359223395586,-0.33131104800850153,0.5995999914593995,-0.49283207673579454,-0.70644665742293,0.4463058579713106,-0.45848779613152146,-0.12684743758291006,0.6995398164726794,0.5416875220835209,-0.5705161429941654,-0.12402994139119983,-0.09545350167900324,0.804060046095401,0.6307254382409155,0.8292502737604082,-0.11757643427699804,-0.5911464379169047,0.30298867262899876,-0.18583589186891913,-0.5167422513477504,-0.7732885205186903,0.40205217897892,0.6959130573086441,0.1331995278596878,0.8445764435455203,-0.8990461123175919,0.2949025556445122,0.8075127401389182,-0.1975990510545671,0.775929806753993,-0.9994837073609233,-0.8144135847687721,-0.2915946231223643,0.022870943881571293,0.5221060160547495,0.9254932147450745,0.7010105787776411,-0.3757282104343176,-0.4273356175981462,-0.0894949771463871,0.2031697491183877,-0.5852199750952423,0.02054435620084405,-0.8399420804344118,0.8640533927828074,0.02669477229937911,0.7128720572218299,0.31986191123723984,-0.064428033772856,-0.4220074047334492,-0.9890345064923167,-0.09962501330301166,0.9274264322593808,0.751632864587009,0.3504517963156104,-0.4681920022703707,-0.8880298649892211,0.8626614483073354,0.6293584820814431,-0.56922840885818,0.4786105384118855,0.5555914966389537,-0.41704841470345855,-0.1948920777067542,-0.15479525877162814,-0.07702484261244535,-0.4465034995228052,0.9149291249923408,0.23148497799411416,-0.21942108450457454,-0.03834557719528675,0.32726120529696345,-0.2600919771939516,-0.5656647412106395,0.484142261557281,0.5845582378096879,0.735045603942126,-0.5057115750387311,0.6372878216207027,-0.04413652652874589,0.36200358299538493,-0.6980182845145464,0.005272264592349529,0.5486628925427794,0.7488712603226304,-0.721977321896702,-0.702627481892705,0.003532380796968937,-0.4779793913476169,-0.09447507094591856,-0.0658706147223711,0.5208556158468127,-0.22379242535680532,0.29164588497951627,-0.16326374979689717,0.8439231910742819,-0.36243009893223643,-0.08074588468298316,0.6198230176232755,-0.2816133005544543,-0.45024019246920943,-0.8326349100098014,0.7465747608803213,-0.12104342458769679,0.9211484431289136,0.31376587180420756,-0.5239519998431206,-0.8561155581846833,0.8025050545111299,-0.9915598505176604,-0.12715218821540475,-0.1426406349055469,-0.5305338087491691,-0.9625194086693227,-0.2508977181278169,0.6087211552076042,0.14518735697492957,-0.9288058336824179,-0.7319577117450535,-0.4359022816643119,-0.09666392719373107,-0.8197554126381874,0.7630949965678155,-0.2989812381565571,-0.31526903714984655,-0.1724387425929308,-0.9621006920933723,-0.19721312541514635,-0.32436135271564126,0.7498124265111983,0.91868737898767,0.18601059168577194,0.6166512174531817,-0.858666927088052,0.2078629075549543,0.6871171933598816,0.8606455209665,-0.29847003798931837,-0.34512352431192994,0.4329031454399228,0.8086653193458915,0.22529617231339216,0.6244240095838904,0.6170696625486016,-0.6272339532151818,0.816311355214566,0.9381365696899593,-0.43549158750101924,-0.1365736094303429,-0.08491060370579362,-0.542322551831603,-0.5084706470370293,-0.5819846270605922,-0.38224952202290297,0.3512428170070052,0.41156092658638954,0.0012466334737837315,0.9083395139314234,-0.6314903069287539,0.7314112116582692,0.29016960272565484,-0.4715932747349143,-0.9460859368555248,-0.3834122712723911,0.023529659025371075,-0.7379472185857594,0.5597767108120024,0.7245922442525625,-0.36154847452417016,0.2122999564744532,-0.7252394482493401,0.588317109271884,0.03565502166748047,0.8761895690113306,0.849191116169095,-0.06420193519443274,-0.6126238028518856,-0.325994941405952,-0.9310623733326793,-0.9029960413463414,0.6114565040916204,0.6050360100343823,0.05298052029684186,-0.6784645337611437,-0.7738055121153593,-0.29256806103512645,-0.39553937083110213,0.6047552530653775,0.48841624800115824,-0.20396806579083204,-0.053222987335175276,-0.28767434135079384,0.7371139298193157,0.2056088619865477,-0.8708119764924049,-0.9055179851129651,-0.34924945840612054,0.6291631148196757,-0.5700819822959602,-0.5069189802743495,-0.7504324014298618,0.4029558035545051,0.97655666526407,0.3050087378360331,0.7657002294436097,0.08911406341940165,0.5680699911899865,-0.6494831284508109,0.7151271607726812,-0.6739469082094729,-0.14752620412036777,-0.542561907786876,-0.6813766486011446,-0.30696858931332827,-0.19034228567034006,-0.5725534707307816,-0.7461818740703166,-0.6158246933482587,-0.6476907320320606,0.7500576437450945,0.08057384565472603,0.5324845928698778,-0.4312580660916865,-0.8511224631220102,0.3948369971476495,0.17013306496664882,-0.504370394628495,-0.3476877845823765,-0.5726128700189292,-0.9736524824984372,-0.6390035161748528,0.17008362850174308,-0.9136937903240323,0.0034840754233300686,-0.6784748747013509,0.2463460024446249,-0.4910987294279039,-0.5815889346413314,0.9791545439511538,0.2675429084338248,0.7687299437820911,0.8069380833767354,-0.35929022869095206,-0.03423916082829237,-0.20461642555892467,-0.27839398896321654,-0.20737828686833382,-0.8678813893347979,0.32959155505523086,0.7584529886953533,0.46003597183153033,-0.7370685529895127,-0.6266350545920432,0.746025285217911,-0.49434553552418947,-0.2733245720155537,-0.217060680501163,-0.055284072645008564,0.21021115686744452,-0.43162243673577905,0.38479164941236377,0.057635224889963865,-0.5669420342892408,-0.15316737443208694,0.22138040326535702,0.24908651923760772,-0.024649234488606453,-0.3832584675401449,-0.43430479709059,-0.5462882872670889,-0.1977208568714559,-0.4904400845989585,-0.2820729836821556,-0.2324046604335308,0.6413331520743668,0.8352280934341252,-0.544839913956821,0.09685852332040668,-0.11770422896370292,-0.809559513349086,0.581620819400996,0.931428337469697,0.5254011247307062,0.6805944941006601,-0.48782891733571887,-0.1760347979143262,0.12458029063418508,0.3110812068916857,0.9810774712823331,0.3903321553952992,-0.7569807907566428,-0.050684408750385046,0.10429893666878343,0.8038372998125851,0.9566910956054926,-0.4008861263282597,0.890110420063138,-0.29664074117317796,-0.8261200068518519,-0.19535128772258759,0.927185783162713,0.7960605574771762,0.274696774315089,0.40671494230628014,-0.5915235681459308,-0.8991151060909033,-0.45684481924399734,0.758108448702842,0.9705353933386505,0.9634592207148671,-0.22945353062823415,0.15887711849063635,0.5586698809638619,0.5183700388297439,-0.1852802401408553,0.3707120227627456,0.11149713257327676,-0.04901068052276969,-0.047038549557328224,0.5231192694045603,0.14580391766503453,-0.22100335080176592,-0.03427171288058162,-0.5213461983948946,-0.07156759733334184,0.8522123512811959,-0.6419085003435612,0.16210056468844414,0.013858074322342873,-0.7225394612178206,-0.1647519450634718,-0.9991571977734566,0.11847953265532851,-0.023517437744885683,0.7395438691601157,0.20665610395371914,0.8685553949326277,-0.8816017797216773,0.39433075301349163,-0.32370418729260564,-0.25808611512184143,0.7928227703087032,-0.2991528590209782,-0.8487107031978667,-0.2883189031854272,-0.9650273541919887,-0.35077501460909843,-0.3004757994785905,0.17263010423630476,-0.4499587598256767,-0.28421634435653687,0.7269467287696898,-0.8259107549674809,0.4402608769014478,-0.2534429063089192,0.8847880894318223,0.04283552849665284,-0.9309721565805376,0.6434113080613315,0.211833402980119,0.6647490495815873,-0.6508594434708357,-0.19102501729503274,-0.9124236651696265,0.3102423115633428,0.8861701241694391,-0.1003878628835082,0.6656986800953746,-0.8838551202788949,0.21400251146405935,-0.7217096276581287,0.9281479939818382,0.23275776812806726,-0.9081249102018774,-0.25470513664186,-0.8759176433086395,0.8566443868912756,0.5513489646837115,0.2519291895441711,-0.4156369958072901,0.4937444971874356,-0.9501739013940096,-0.6117180520668626,0.01278769550845027,-0.21135271387174726,0.3973891828209162,-0.5208680392242968,0.4800767917186022,-0.7499381047673523,-0.8221085211262107,-0.8366730217821896,-0.6263318611308932,-0.317734251730144,-0.7814799356274307,-0.33401526883244514,-0.21169301308691502,0.3548497287556529,0.2985917287878692,0.213230871129781,-0.3167686774395406,0.1598094436340034,-0.3840500060468912,0.9912331216037273,0.9252197747118771,-0.415893308352679,0.4220492825843394,0.4466924434527755,-0.40583380218595266,-0.34028846165165305,0.7096706666052341,0.7425369983538985,0.12874319264665246,-0.9194035823456943,-0.7533545158803463,0.15814615739509463,-0.8735750019550323,0.020464676897972822,0.7415019264444709,0.956325160805136,0.3433036827482283,0.5548900458961725,0.33665359672158957,-0.11191338114440441,-0.5937879383563995,-0.39296050323173404,0.9333699150010943,-0.777169166598469,-0.5283009149134159,0.8522733524441719,0.12473022751510143,0.8131506033241749,0.5071108909323812,-0.9326701229438186,-0.18784856842830777,-0.9892244176007807,-0.44474382838234305,0.037286010570824146,0.8351478353142738,0.2131569879129529,-0.07490286929532886,-0.0009074113331735134,0.8684733053669333,-0.5910412394441664,-0.06566806370392442,0.8572119893506169,0.8004078245721757,-0.9276070310734212,0.7638054294511676,0.3560245162807405,-0.39768084790557623,-0.7336419797502458,-0.8284150110557675,0.8439037846401334,0.2889002822339535,-0.8147626155987382,-0.9099936503916979,0.6922785080969334,-0.587175068911165,-0.6214229916222394,0.6704174941405654,0.151895210146904,0.30048410687595606,0.9114907863549888,-0.45654103718698025,0.2694034450687468,0.01953032659366727,-0.8827190133742988,0.33670641435310245,0.5541984722949564,0.045333110727369785,-0.002910210285335779,-0.8420172035694122,0.8730996996164322,0.25763366743922234,0.5576814454980195,-0.5888088522478938,-0.14646867522969842,-0.07649930845946074,0.2940829172730446,0.01565729035064578,0.5957378433085978,0.02305172709748149,0.9904713351279497,-0.6441923882812262,-0.9861895623616874,0.4892551116645336,-0.45935506047680974,-0.5744966492056847,-0.3668432803824544,0.6833966970443726,0.07153599848970771,-0.3950864630751312,-0.655976265668869,-0.5925917127169669,-0.8737615398131311,-0.24011986004188657,0.7888276427984238,-0.9954191423021257,-0.22873077495023608,0.8383295359089971,-0.356100685428828,-0.6644703326746821,0.39357461780309677,-0.1799889816902578,-0.24517279211431742,0.5578162483870983,0.8463133377954364,0.21850308356806636,0.17913411324843764,-0.6411859919317067,-0.19322781218215823,0.03649158217012882,-0.516272290609777,-0.30712294904515147,0.8788631963543594,-0.7481400584802032,0.2764110551215708,0.5399724640883505,-0.7907191370613873,-0.49448662158101797,-0.844847921282053,-0.6673693368211389,0.11913845548406243,-0.33782688761129975,-0.3895970517769456,-0.8239841065369546,-0.016716175712645054,0.15530487662181258,-0.4551685000769794,-0.26578547013923526,-0.03640430886298418,0.9195723072625697,-0.08201454114168882,-0.6052131159231067,-0.5128691731952131,-0.48907334404066205,0.6538438419811428,0.8232558486051857,-0.7649822770617902,-0.39952296717092395,-0.5612112805247307,0.18626382667571306,0.7922490192577243,0.06261343043297529,-0.11611262336373329,-0.736038965638727,0.385016817599535,-0.8766448362730443,-0.7970669926144183,0.7702502561733127,-0.5347227002494037,-0.4873331137932837,0.07623600447550416,0.22073155408725142,-0.8182253274135292,-0.3533852896653116,-0.23258800664916635,0.637875147163868,-0.47382761677727103,0.8197579337283969,0.782330718357116,-0.8111406178213656,-0.14152391208335757,-0.3731620078906417,0.7846412691287696,-0.8789711543358862,0.018344128038734198,-0.6301248958334327,0.415494745131582,0.1359082581475377,-0.3622164288535714,-0.944763352163136,0.5831046006642282,0.10432781931012869,-0.6069371900521219,0.33199810702353716,-0.42307428643107414,0.4130641086958349,0.6293477285653353,-0.8323001279495656,-0.4248143984004855,-0.07381761772558093,0.29543393896892667,0.1746115004643798,0.1355501408688724,-0.8541175378486514,0.1091453148983419,0.13646235736086965,-0.23128557670861483,0.14943981496617198,-0.10891374293714762,-0.6049280799925327,0.8819221528246999,0.7343903332948685,-0.9114768696017563,0.1050886888988316,0.8180902567692101,-0.1209856066852808,-0.41297978488728404,-0.9158939588814974,0.7156766401603818,0.005680385045707226,0.84364821203053,-0.29672036971896887,0.6992427008226514,0.39718792121857405,0.6143724862486124,0.8997373902238905,0.5801755194552243,0.22451097378507257,0.5928330249153078,0.8106301790103316,0.9820073945447803,-0.8189700706861913,-0.3479927098378539,-0.4218146279454231,0.38116686046123505,-0.27377363527193666,0.46309151826426387,0.490244516171515,-0.39701018249616027,-0.5646035671234131,0.5304833841510117,-0.6139491093344986,0.39544512517750263,-0.7386295911855996,0.8992715128697455,0.8751648650504649,0.15168369049206376,0.6162410154938698,0.830583575181663,0.008983274921774864,-0.17790315300226212,0.4198925788514316,-0.11605600127950311,0.4179241373203695,0.5204828041605651,-0.8804107205942273,-0.7082306332886219,0.20898717595264316,-0.10358024714514613,-0.22953600343316793,-0.9690084597095847,0.8523853193037212,0.6170607740059495,0.9888970861211419,-0.44524353044107556,0.5784947830252349,0.47653094213455915,0.917199894785881,-0.2864881092682481,0.9050952615216374,-0.5781002622097731,0.030730647034943104,-0.6600844394415617,-0.8013095799833536,0.34355103876441717,0.6686066989786923,-0.10216104844585061,0.11337646329775453,0.13873735908418894,0.8154682707972825,0.5200849659740925,-0.5028548496775329,0.09303519036620855,-0.1275620493106544,-0.815292916726321,0.784830748103559,0.35873057320713997,0.6908611035905778,0.12556408485397696,-0.6001524389721453,-0.6506934850476682,0.26732516987249255,0.31847068201750517,0.16911943815648556,0.04118233406916261,-0.7333564152941108,0.7203269796445966,-0.20317596523091197,-0.8090723073109984,0.40777660021558404,0.9164143707603216,-0.24472113559022546,0.2947917729616165,0.33754064748063684,0.45912653021514416,0.9789197049103677,-0.7065044767223299,0.5175507813692093,0.15194962359964848,0.7630032189190388,0.294945674482733,0.6436132220551372,-0.8659429224207997,0.24165452644228935,-0.6031787674874067,-0.4857061868533492,-0.0033054822124540806,0.91101060109213,-0.6693434044718742,-0.6295788125135005,-0.41891082003712654,-0.5731437182985246,0.7500324645079672,0.06951030530035496,0.2055525411851704,0.8537125908769667,-0.5532242585904896,0.4417382553219795,0.015782637987285852,-0.6398308780044317,0.7763168667443097,0.36253650207072496,-0.2668805457651615,-0.9291532831266522,-0.06520701572299004,0.5009239795617759,0.6495643402449787,-0.7518578255549073,0.8762277821078897,0.7445722781121731,0.35341191245242953,-0.5990536347962916,0.8139350526034832,0.6119718165136874,0.20172880683094263,0.5105099389329553,0.40354094794020057,0.35201724991202354,0.7095746868290007,-0.4440990565344691,-0.2677908670157194,0.14863120298832655,-0.4599430141970515,-0.6055306307971478,0.3837318094447255,0.19960962515324354,0.4184097689576447,0.1093145883642137,0.24286322528496385,0.15917992778122425,0.6392398509196937,-0.6278216536156833,-0.8509775209240615,0.49138003634288907,0.6950039053335786,0.3546269698999822,0.022898079361766577,0.8674590871669352,-0.6410247646272182,-0.5868713282980025,0.6238550562411547,-0.11998175224289298,-0.6801469805650413,0.3813033942133188,0.5843026838265359,-0.2893489240668714,-0.5531353894621134,-0.584220462013036,-0.34726316342130303,0.7781121111474931,0.44050703570246696,0.01510454760864377,0.664634115062654,-0.9148541656322777,0.14538792660459876,-0.6462870133109391,-0.2843863186426461,0.8818813106045127,-0.6211032015271485,-0.4822986703366041,0.6348885674960911,0.2604820723645389,0.3908318537287414,0.5898877601139247,-0.07164047379046679,-0.8147506876848638,0.9104044740088284,0.31749617401510477,-0.27060338109731674,0.7473581279627979,0.6751579148694873,0.9776552184484899,-0.32568512251600623,-0.749683968257159,-0.4696527011692524,-0.5781674077734351,-0.15127987042069435,0.9085016227327287,-0.7835989254526794,-0.7572913570329547,-0.6361400545574725,-0.2671336648054421,0.10428618360310793,-0.398567337077111,-0.4748337073251605,0.7383202845230699,0.16294749174267054,-0.7565576694905758,0.5730960522778332,-0.47392444033175707,0.048240612260997295,-0.37627709470689297,-0.18591822823509574,0.06537129962816834,-0.7878849925473332,-0.04932500887662172,-0.46843413123860955,0.9034455739893019,0.20034155109897256,0.2152785947546363,0.5058061047457159,0.9695579102262855,0.7909651910886168,0.23766359454020858,-0.3789756507612765,0.8417371488176286,0.46249768044799566,0.047903185710310936,0.9191106553189456,0.34567406261339784,-0.6293008378706872,0.20111783407628536,0.17686966387555003,0.7094205706380308,0.27317385375499725,-0.7206647619605064,-0.05505760479718447,-0.785628252197057,-0.717691196128726,0.5212540626525879,-0.6863044924102724,0.907158215995878,0.5415479987859726,0.028795617166906595,-0.09215267840772867,0.13761739060282707,0.1577306897379458,-0.15225693536922336,0.2590070217847824,0.7264656322076917,0.810603566467762,0.35233948938548565,0.3730388660915196,0.5527601507492363,0.7434497242793441,0.9133867127820849,0.6590998587198555,-0.9795670947059989,-0.373914560303092,0.7665781625546515,-0.4135025702416897,0.8077205982990563,-0.3316320772282779,-0.5119195813313127,0.3759346888400614,-0.6258853478357196,-0.7797882850281894,-0.22114885738119483,0.05887223733589053,0.9064447083510458,0.05830320902168751,-0.12223938619717956,0.9719195049256086,0.8760352558456361,0.9720919197425246,-0.8959310199134052,-0.7107030390761793,-0.21087846625596285,0.9516658172942698,0.10070692002773285,-0.05814458383247256,0.5123841152526438,0.3249806649982929,0.3397165690548718,-0.26252145878970623,0.18984911404550076,0.3900056714192033,-0.4513991614803672,0.33476613042876124,-0.7194033577106893,-0.9430718985386193,-0.00836992496624589,0.5265248068608344,0.13482576049864292,0.9139637700282037,-0.34579277178272605,0.30770354764536023,0.43816191982477903,-0.5881106071174145,0.4105799701064825,0.3594313384965062,0.0656493860296905,-0.9505871264263988,0.0665962053462863,0.394155768211931,0.8954815166071057,-0.4662468731403351,0.575947433244437,-0.961721702478826,-0.6546554891392589,0.29046701174229383,-0.910239411983639,-0.35235271975398064,-0.14765407098457217,0.4249218157492578,-0.3822377696633339,0.432399058714509,0.38648855686187744,0.29077609069645405,0.8164330837316811,0.5532771623693407,-0.09865275816991925,-0.1701957997865975,0.6706098518334329,0.6709747407585382,-0.360106838401407,0.8210689295083284,0.2306451122276485,0.09018188528716564,-0.6595775913447142,0.9778996901586652,0.4648859449662268,-0.9964308175258338,0.30241748271510005,-0.20088720228523016,-0.38223304506391287,-0.9133422602899373,-0.07454202929511666,-0.49539086734876037,0.5763352382928133,0.9908950095996261,0.1629955405369401,0.8132041525095701,0.6152580436319113,-0.6495595201849937,0.9018281032331288,-0.34411009354516864,-0.6183845777995884,-0.8945235591381788,0.34324714029207826,-0.11734789796173573,0.2985381353646517,0.788068107329309,0.4390374547801912,0.7220799918286502,0.5516128041781485,-0.9280829587951303,0.6675280057825148,0.26925593754276633,0.30715705268085003,-0.7933152285404503,0.25725135998800397,-0.6637125830166042,0.9524687095545232,-0.25180880492553115,-0.3527762657031417,0.06054730713367462,-0.3228633860126138,-0.06670338660478592,-0.140705072786659,-0.39463318046182394,-0.6799238356761634,-0.9841981586068869,0.8826541057787836,0.16395679395645857,0.319739222060889,-0.03380364133045077,-0.15400681784376502,0.0963339265435934,-0.3879945217631757,-0.12854366190731525,0.3761682929471135,0.2789284400641918,0.6831725733354688,0.14754099631682038,-0.2535579311661422,-0.4145733420737088,0.9654571269638836,-0.6763293114490807,0.7780204899609089,0.06163669563829899,-0.5511424192227423,0.27817245619371533,0.15264899004250765,0.4344865698367357,-0.8511715386994183,0.43527852836996317,-0.43447486124932766,-0.6785081243142486,-0.9635870535857975,-0.21469321567565203,-0.31616417597979307,0.06398895150050521,-0.6038944721221924,0.3883053017780185,0.5634062811732292,-0.9610129105858505,-0.9785999292507768,-0.4231508057564497,-0.42595021426677704,-0.7853641486726701,0.7963731745257974,0.5697946380823851,0.45348752243444324,0.22241101553663611,0.8966895192861557,0.27378414990380406,-0.36624628957360983,-0.33808118710294366,0.5484656319022179,0.7559321410953999,0.9340058332309127,-0.7601318401284516,0.42109874449670315,-0.8143712091259658,0.07794442120939493,-0.8704576743766665,0.544606848154217,0.6336274603381753,-0.9739668699912727,-0.2048090980388224,-0.8108416544273496,-0.34636772284284234,-0.7718352000229061,0.294967926107347,0.549845980014652,-0.23610214749351144,-0.5371669023297727,-0.48911450570449233,-0.1302460292354226,-0.31052369670942426,0.45073195127770305,-0.12427356699481606,-0.147437640465796,-0.2080530202947557,0.40053475415334105,0.055318267084658146,-0.3082901514135301,-0.32092167623341084,0.41075806180015206,0.7340648882091045,-0.7181173884309828,-0.4704342745244503,-0.3649649159051478,0.045306974090635777,-0.8863239595666528,-0.1611117827706039,3.1651463359594345e-05,0.9706755704246461,0.3573189037851989,-0.33195197628811,-0.06005649408325553,0.8121584644541144,-0.9338782769627869,0.013543370645493269,-0.9219517945311964,0.5278293299488723,-0.2214914639480412,0.9235908635891974,-0.8972943583503366,-0.1561037665233016,0.9251591116189957,-0.024543167557567358,-0.6025701141916215,-0.5353769855573773,0.8378169415518641,0.9393194220028818,0.09959279233589768,-0.9361000349745154,-0.16438057273626328,0.8134516682475805,-0.8514577960595489,0.3917228146456182,-0.4305046652443707,0.016116151586174965,0.09303452260792255,0.04971164418384433,0.4094834974966943,-0.043119425885379314,-0.6471107290126383,0.08244438981637359,0.45382303604856133,0.5923889772966504,-0.6726601887494326,-0.14732948737218976,-0.9489108836278319,0.5953394495882094,0.6566186272539198,-0.7375681796111166,0.22116223070770502,-0.6645627771504223,-0.03343575727194548,-0.6269597630016506,0.6576490118168294,0.9811789873056114,-0.3619521129876375,0.9761793110519648,-0.860192643944174,0.4191953637637198,0.195407057646662,0.03945768717676401,-0.45177158853039145,-0.4219208396971226,-0.5859393789432943,-0.34086626023054123,-0.9330251896753907,-0.8188111046329141,0.20365663152188063,-0.5552575485780835,0.7607896570116282,0.2904708166606724,0.06418296415358782,0.4647208694368601,-0.7196678486652672,-0.03670693328604102,0.21478899661451578,0.2687752740457654,-0.8421318456530571,0.9536170340143144,0.9486805680207908,0.5315245459787548,0.2658796664327383,-0.6565784006379545,-0.6481156586669385,0.009513790719211102,0.3374063023366034,-0.23803111631423235,-0.2564805084839463,0.7355997418053448,0.9533817670308053,0.6307625728659332,0.06974637834355235,-0.05212462041527033,0.019520006142556667,-0.5323124420829117,-0.5269951815716922,-0.6370261902920902,-0.8977675163187087,0.6279196459800005,0.7368870228528976,0.05892759095877409,0.24219699297100306,0.6346865124069154,-0.3516192967072129,0.98035708675161,0.5992145664058626,0.5273204199038446,0.5801655817776918,0.8693920653313398,0.6780582927167416,-0.6508634774945676,0.21164282178506255,0.20764973340556026,-0.397405868396163,0.3177029062062502,-0.0777397258207202,0.4074990814551711,-0.024895186070352793,-0.10969105968251824,-0.6625360827893019,-0.6933484310284257,0.26592681650072336,-0.11205641319975257,-0.3042778754606843,-0.6082352166995406,-0.9618635904043913,-0.06988083617761731,-0.47334547573700547,-0.28920679073780775,-0.3337384117767215,-0.9435320510528982,-0.9582900409586728,0.6646912852302194,0.7139841187745333,0.9826269038021564,0.24705138429999352,0.48120642779394984,-0.1780992178246379,-0.24831945402547717,-0.6090936893597245,0.22854737378656864,-0.866210347507149,-0.7900446313433349,0.4660658426582813,0.21823351178318262,0.627644379157573,-0.9576780772767961,0.7610783474519849,-0.5279779094271362,0.08389261038973927,-0.8286437075585127,-0.49766663601621985,-0.6176510853692889,0.22828482696786523,0.3966530510224402,0.3175626746378839,-0.787932681851089,-0.21951954113319516,-0.8786367420107126,-0.899949461221695,0.045408147387206554,-0.27331780968233943,0.5152878924272954,0.15173896169289947,-0.9462436097674072,0.9327719751745462,-0.9945369916968048,0.16860960656777024,0.47239996306598186,0.6605843496508896,0.7193578691221774,0.8636226919479668,0.5713331713341177,-0.17878857115283608,0.4243244347162545,0.48033322067931294,0.051259636413306,0.627579134888947,0.6282671694643795,0.9125431855209172,0.6263386108912528,-0.49325807532295585,-0.45016608014702797,-0.47938874503597617,0.6624425500631332,-0.24914218205958605,-0.9574415027163923,0.045071476604789495,-0.9087475384585559,0.12298170104622841,0.6218597991392016,-0.26692655961960554,0.26559551525861025,-0.3138914401642978,0.8191768461838365,-0.2457264056429267,-0.8921211767010391,0.7314198706299067,-0.008132383227348328,0.69109888933599,-0.30980329867452383,0.7075613574124873,0.5287571810185909,-0.7414398142136633,-0.435747925657779,-0.800513066817075,-0.570084139239043,0.11841979948803782,0.17904888931661844,0.6479570670053363,0.18193360418081284,0.6479323850944638,-0.46412358060479164,-0.2959778024815023,0.27772701531648636,-0.49904280435293913,-0.7772421380504966,-0.04863535612821579,0.5016837557777762,-0.8730232240632176,0.6577754006721079,-0.15704329079017043,-0.670568625908345,-0.2921687616035342,0.5877159065566957,-0.2646274524740875,-0.8820240343920887,-0.21880883630365133,0.6268449062481523,0.4658197513781488,-0.08176032127812505,0.7935424335300922,-0.19455112423747778,0.01650312775745988,-0.46397096337750554,0.7844556225463748,-0.7782076066359878,-0.49633820820599794,-0.5329942759126425,0.6456251288764179,-0.08723977254703641,-0.004623729269951582,-0.04474693676456809,-0.22388865146785975,0.9188908343203366,-0.06754796532914042,0.6971198949031532,0.17007075622677803,0.7224139044992626,-0.04656250309199095,0.27257420727983117,-0.08914985042065382,-0.7009503287263215,-0.6411900385282934,0.6692548738792539,-0.5029582157731056,0.20339516317471862,0.8078184216283262,0.1230370532721281,-0.936684098560363,-0.8021909780800343,0.5544397663325071,-0.7582775158807635,-0.4103932501748204,-0.009083925280719995,-0.41165853664278984,0.6628051735460758,-0.8234742213971913,-0.37399889435619116,-0.5247545153833926,0.6909876018762589,-0.08375563519075513,0.7117488766089082,0.4041564557701349,-0.23832265799865127,0.1484399284236133,-0.6865383791737258,0.11591075593605638,0.673043878749013,-0.6134540694765747,-0.3146118363365531,-0.16409734124317765,0.8040503063239157,-0.3989226627163589,0.8887304975651205,0.023702747654169798,0.8747701100073755,-0.8227536142803729,0.049312077928334475,0.9776043999008834,-0.8842496448196471,-0.48631546879187226,0.08454288681969047,-0.4334069211035967,-0.4388961745426059,-0.7181145325303078,-0.33926199236884713,0.07181482343003154,0.5528705739416182,-0.5373500413261354,0.08965345285832882,0.6575617827475071,0.5072887232527137,0.7396442294120789,0.745389997959137,-0.7271233112551272,-0.15807109512388706,-0.2847026218660176,-0.6671532252803445,-0.7629111572168767,0.9488315312191844,-0.4375298861414194,-0.5241642873734236,-0.3275369917973876,0.7792134364135563,0.18368394067510962,-0.2665922464802861,0.5787797775119543,0.7170950421132147,0.8093678443692625,0.9741993830539286,0.024685055948793888,-0.28488219482824206,0.15650823153555393,-0.49947425350546837,0.24057252751663327,0.6905600246973336,-0.10656653624027967,0.26792855001986027,-0.7025969354435802,0.48691214714199305,0.9118869877420366,-0.155712834559381,-0.4327822979539633,0.3973446968011558,-0.2999235731549561,-0.6059775748290122,-0.8603522325865924,-0.15459409588947892,-0.8316133385524154,-0.8152989726513624,0.2724624346010387,-0.957812543027103,0.22982127172872424,0.15540442569181323,-0.7806594423018396,0.833806695882231,0.7748227817937732,0.8414069931022823,-0.16143158823251724,-0.664202384185046,0.47290823608636856,-0.8795516886748374,0.5454154233448207,0.20044570742174983,0.5018790848553181,-0.6913215951062739,-0.8297715303488076,0.6205427376553416,-0.9610538962297142,0.47771041095256805,-0.9715773216448724,-0.719610158354044,0.4557578880339861,-0.6213935120031238,0.9238861463963985,0.1900821360759437,0.05246948963031173,-0.8939066054299474,0.7508732788264751,-0.4775351989082992,-0.8334585088305175,-0.34838654939085245,-0.2624120134860277,-0.21159160183742642,0.8536894330754876,-0.96712955692783,-0.6853946433402598,0.5131896594539285,-0.14421403175219893,-0.11516858637332916,-0.04464794881641865,-0.77611646335572,-0.9211925496347249,0.23705945489928126,0.15439656982198358,-0.22427234146744013,-0.1648542694747448,0.6882283701561391,-0.6201160987839103,0.8057598294690251,0.7357168686576188,-0.8262427407316864,0.7885546651668847,-0.013979083392769098,-0.5153743014670908,-0.8484819144941866,-0.6389164594002068,-0.9330405406653881,0.4776599039323628,-0.9109729784540832,0.4736038059927523,-0.5128979599103332,0.5881634075194597,0.11038625193759799,0.34664365788921714,-0.1473794300109148,-0.3792445953004062,0.025718909688293934,0.37973461858928204,0.3923300695605576,-0.780267374124378,0.7209477825090289,-0.8169001070782542,0.289722329005599,0.24858897691592574,0.35933750588446856,0.5877083330415189,-0.9465799201279879,-0.025369687005877495,-0.9338050950318575,0.7335055409930646,-0.17239205073565245,-0.046821247320622206,0.7521909936331213,-0.13532271096482873,0.6619805521331728,0.31787868589162827,0.3890153495594859,-0.5811045481823385,-0.29773070150986314,-0.9976386525668204,0.6092620631679893,0.17303486028686166,-0.5693147010169923,-0.7366584930568933,-0.2789254607632756,0.8699637958779931,0.47566065238788724,0.135296449996531,0.5477063576690853,-0.2470215675421059,0.27512221690267324,0.5991050680167973,-0.842485994566232,-0.984332075342536,-0.33905209321528673,-0.6346068931743503,0.09292989317327738,-0.5330469971522689,0.9357694280333817,0.6265283180400729,0.7371203382499516,0.03444682573899627,0.5247943848371506,-0.8433742867782712,-0.9748535584658384,-0.383622950874269,-0.16318482905626297,0.024948184844106436,-0.9454843541607261,-0.6784114870242774,-0.2916457918472588,-0.5156976603902876,-0.9640664309263229,-0.9277595928870142,0.2107780002988875,-0.1485094167292118,0.9372843583114445,-0.9066594433970749,-0.18595374561846256,0.3365431623533368,-0.6365038114599884,-0.9001861098222435,-0.14041206799447536,0.14693484595045447,-0.9189644223079085,-0.8008571425452828,0.897660837508738,-0.7670699506998062,-0.5542362085543573,-0.033366176299750805,-0.820356743875891,0.675299946218729,-0.7136458684690297,0.013603238388895988,-0.34772223327308893,-0.02646642178297043,-0.28221115935593843,0.09663903154432774,0.025361064355820417,-0.5725894877687097,0.28239041985943913,0.014954327140003443,-0.6868618074804544,-0.29932644637301564,0.17251455318182707,0.061577537562698126,-0.3560921046882868,0.013667928986251354,0.40784545289352536,-0.23842072300612926,-0.6466716141439974,0.33047410333529115,-0.4582136985845864,0.9569280124269426,0.5070586577057838,0.5299100182019174,0.7744317231699824,0.3982086554169655,0.9039305290207267,0.2965653673745692,0.5627747788093984,0.29478518944233656,0.8408581055700779,-0.8801278495229781,0.8335106070153415,0.7237346777692437,-0.8798511913046241,-0.4250668496824801,0.025327391922473907,-0.7229713192209601,0.3070598766207695,0.08149203192442656,0.19841855624690652,-0.26111562782898545,0.8878680523484945,-0.3469010996632278,0.36335623590275645,-0.30731844855472445,-0.3475511842407286,-0.57172786956653,-0.8144430443644524,0.40257270634174347,-0.7031671050935984,-0.05916010355576873,0.016150860115885735,0.26691772788763046,-0.13471862813457847,-0.40564731741324067,0.022383886389434338,0.04517969209700823,0.43970764009281993,-0.6665629912167788,0.0036834697239100933,0.5565534168854356,0.40663502272218466,0.5994154512882233,0.09484893549233675,-0.05417458387091756,-0.39322295878082514,-0.9291724963113666,-0.2003875751979649,-0.551663679536432,0.8311113459058106,-0.5114124938845634,-0.27037842851132154,0.20239846734330058,0.8402934120967984,0.11288770707324147,-0.36915388563647866,-0.73287263372913,0.8543000039644539,0.5346625163219869,0.014519739896059036,0.6995542109943926,-0.5301995701156557,0.4307753131724894,0.07077876338735223,0.26817412301898,-0.7124835248105228,0.12697945954278111,-0.8603587560355663,0.9951233700849116,-0.08812061790376902,0.5439089899882674,-0.278839903883636,-0.36327356193214655,-0.6936952532269061,-0.567582537420094,0.45237911120057106,0.4015575721859932,-0.7074913531541824,-0.48865333711728454,0.25125833600759506,-0.1206606887280941,0.5856794379651546,-0.3787001296877861,-0.8299572942778468,0.9089006222784519,-0.3525916235521436,-0.32910767337307334,0.6212052283808589,-0.3394342567771673,-0.5358657869510353,0.12366210995242,0.20509528322145343,0.5980048072524369,0.5092010293155909,0.36820401763543487,0.3390627847984433,0.048150490038096905,0.9266475653275847,-0.9670529919676483,-0.8041233611293137,0.38516207365319133,-0.6754154427908361,0.04748512618243694,0.4270765041001141,-0.6092012259177864,-0.23782727494835854,-0.7810412007384002,-0.533122661523521,0.5064784456044436,0.376269418746233,0.5968985077925026,0.9037625696510077,0.9078732896596193,-0.3656144724227488,0.3509807661175728,0.054598052985966206,0.4987720646895468,-0.7829308621585369,0.9442052999511361,0.8869179338216782,0.1773041971027851,0.5428920430131257,-0.49231884302571416,0.3585864813067019,0.08225201349705458,-0.2394604766741395,-0.6949101905338466,0.04228897066786885,0.09274385403841734,-0.7716911197640002,-0.9433443881571293,0.019844213966280222,0.7908875709399581,0.035905661061406136,-0.7391446409747005,0.6813039565458894,-0.225704709533602,-0.2509916773997247,-0.22681686887517571,-0.5737509597092867,0.8565533184446394,0.299822298809886,-0.23472273303195834,-0.910101659130305,0.9344066474586725,0.9742667586542666,-0.7399840918369591,0.14571245992556214,-0.04066590312868357,-0.6185148078948259,-0.5868621482513845,0.09790632361546159,-0.979017645586282,0.7572327707894146,-0.7761249882169068,-0.982839428819716,0.6419857060536742,-0.008770812768489122,-0.5174013250507414,-0.8455561394803226,-0.6892064502462745,-0.6919561307877302,-0.20012227492406964,-0.3767454382032156,0.8740427843295038,0.1399833015166223,0.9874364747665823,0.1831701979972422,0.40722598508000374,-0.44319476187229156,-0.7210508678108454,-0.46369972731918097,-0.8550652842968702,-0.555302107706666,-0.653189058881253,-0.14815918914973736,-0.09573822235688567,-0.060656015295535326,0.3119153380393982,-0.9529330437071621,0.6678579556755722,-0.755623291246593,-0.9662534790113568,0.14638561848551035,0.22651058342307806,0.9137118882499635,-0.6271886564791203,-0.7127886838279665,-0.13971356907859445,0.538106151856482,-0.7027828078716993,-0.6210870682261884,-0.6881027538329363,-0.9670514622703195,-0.5271329167298973,0.11228061188012362,0.3798391418531537,0.6707616662606597,-0.28680471051484346,-0.32472756085917354,0.20122228655964136,0.7801266591995955,-0.8902876111678779,0.1954283444210887,0.6772146648727357,0.8278170810081065,-0.1618899623863399,-0.6121747475117445,-0.2054818351753056,0.3672115611843765,-0.16137286182492971,-0.6907378518953919,-0.41381395468488336,0.6499272491782904,0.2953597195446491,-0.7560923933051527,0.7356203109957278,-0.6339221368543804,0.7649323246441782,0.21538176806643605,0.47126354835927486,0.24266072595492005,-0.18819432938471437,-0.08035876275971532,0.8786261170171201,0.6684703673236072,0.5963315558619797,-0.6537683373317122,0.058377315290272236,-0.14648195821791887,-0.8136569261550903,-0.15283241169527173,-0.15951918717473745,0.3308460176922381,0.13600988686084747,0.6616087453439832,0.17367649544030428,0.06267449352890253,0.39494325453415513,-0.11219795839861035,0.7320791482925415,-0.8446885654702783,-0.8029402950778604,-0.6944566834717989,-0.2022766787558794,-0.5305385594256222,0.41334282234311104,0.5468729767017066,-0.8023350248113275,0.03802767489105463,-0.7703022477217019,0.697156467474997,0.08245933055877686,0.282077229116112,0.5751570798456669,0.8149484070017934,0.02020376641303301,-0.9597212728112936,-0.21899908874183893,-0.8013554764911532,-0.2782931635156274,-0.4581894357688725,-0.23690550355240703,0.8674228782765567,0.9734575166366994,0.5469921166077256,-0.8522584824822843,0.6066670757718384,0.8650647005997598,0.8334951219148934,0.2965290821157396,0.8197007267735898,0.8197321770712733,0.7564468095079064,0.999523046426475,-0.4201897825114429,0.623499893117696,-0.4849318079650402,-0.08623944269493222,0.5207828744314611,-0.8670393596403301,0.1924507417716086,0.5248565841466188,-0.5690170000307262,0.9075941741466522,-0.6807602187618613,0.5786882885731757,0.15649588825181127,0.519698872230947,0.2775875711813569,0.6022623353637755,0.5151179702952504,-0.8955840631388128,0.1314500207081437,0.19717627204954624,-0.79933648603037,0.5864665447734296,0.14721365133300424,0.2156866556033492,0.8211212363094091,0.2953759622760117,0.10050057806074619,-0.9585652416571975,-0.4898516540415585,-0.8614968196488917,-0.7973098359070718,-0.57578154373914,0.5771708255633712,-0.9510357910767198,-0.937399145681411,0.7418886199593544,-0.21350725600495934,-0.2865728600881994,-0.5606159409508109,0.06462057726457715,-0.4434933024458587,-0.7227934463880956,0.016999770421534777,-0.46941003669053316,-0.4826322221197188,-0.2092368216253817,-0.18271660432219505,0.20467589469626546,0.1319087352603674,-0.5696054948493838,0.6890758820809424,0.07917350344359875,-0.5098853898234665,0.381349666044116,-0.1962025803513825,0.15747192176058888,0.66614730656147,0.15099146077409387,-0.13152561616152525,0.8324848250485957,-0.8911625663749874,-0.8687767498195171,0.03919411730021238,-0.8897559493780136,-0.4971533645875752,0.19396693212911487,0.46225607581436634,0.841650013346225,0.3420313810929656,-0.6326555772684515,0.8385524717159569,0.4797641201876104,-0.1543540363200009,-0.7277661296539009,-0.8987598842941225,-0.6625271798111498,0.6771305277943611,0.31091309571638703,0.8620837428607047,-0.5062320632860065,0.2880042945034802,0.13719808729365468,0.38764177449047565,-0.06295707961544394,-0.5789018804207444,0.5574443452060223,-0.12037419807165861,-0.5750302877277136,-0.7461137613281608,0.35220735194161534,0.34793119318783283,-0.17523839743807912,0.9289209684357047,-0.7474592491053045,0.6746273003518581,0.9734326871111989,-0.7106509758159518,0.2346473024226725,0.37393090687692165,0.6942148068919778,-0.6410318040288985,-0.35516684502363205,-0.48325188644230366,0.016722464933991432,0.19118243595585227,0.4338256292976439,-0.4839063645340502,-0.13039156328886747,0.6324452506378293,-0.8329021465033293,-0.6042135576717556,0.298703882843256,-0.19219533633440733,-0.8943827780894935,-0.9850716996006668,-0.38247421849519014,0.2728969710879028,-0.6556182932108641,0.45085674012079835,0.5331156766042113,0.24817053321748972,0.2823513546027243,0.14134880807250738,-0.6555122821591794,-0.13170648692175746,0.9779012021608651,0.46046752016991377,0.4154849350452423,-0.18584901560097933,-0.5669592167250812,-0.45894502801820636,-0.9746828419156373,-0.5165177811868489,0.23991725454106927,-0.5715164574794471,0.31561197666451335,-0.5763229299336672,-0.680895057041198,-0.9423439176753163,0.9932944993488491,-0.9699138412252069,0.7879121345467865,-0.3674681168049574,-0.7924304567277431,0.4903115280903876,0.6692040432244539,0.7011252967640758,0.6174212638288736,-0.7425848138518631,0.9789323373697698,0.8009702819399536,-0.2279598657041788,-0.4691970250569284,-0.7970053772442043,0.3634241111576557,-0.8652852433733642,0.6190495621412992,0.07656615972518921,-0.7683727517724037,-0.026583680883049965,-0.2401430131867528,0.8917720657773316,-0.288113527931273,0.22086647292599082,-0.24931542854756117,0.9216700620017946,-0.7240441823378205,-0.8637536028400064,-0.723079995252192,-0.1850791173055768,0.28169187996536493,-0.9544536150060594,0.682390003465116,-0.8014761279337108,-0.6883850092999637,0.4235149943269789,-0.6640497958287597,0.0075662098824977875,0.8080026730895042,0.16940829064697027,0.38034691801294684,-0.4252635049633682,0.47450438793748617,-0.2624462926760316,-0.577554089948535,-0.5512478672899306,0.4706682553514838,-0.3673080368898809,0.8130921833217144,0.9115235726349056,0.14675898617133498,0.39888080628588796,0.7651192601770163,-0.9558964953757823,0.16722113452851772,0.5683462768793106,-0.7376482705585659,-0.4964059628546238,-0.039467521477490664,0.08481313195079565,0.15354394866153598,-0.8658683453686535,0.30157985677942634,-0.2905400968156755,-0.30883863056078553,-0.514028727542609,-0.6693755029700696,0.32688240706920624,0.7447725445963442,-0.6477983635850251,-0.5858579492196441,0.08340099034830928,-0.8282956159673631,0.6435891287401319,0.5365834524855018,-0.09012927720323205,-0.8684459114447236,-0.8737495210953057,0.8866212936118245,0.8337106965482235,-0.9226945517584682,0.1629049563780427,-0.5338111976161599,0.1312156254425645,0.07621173467487097,-0.3868607524782419,-0.5501056397333741,0.27282875729724765,-0.08281069900840521,-0.2041637310758233,0.1837995178066194,0.24687448609620333,-0.6218612845987082,0.7312931781634688,-0.3471138933673501,0.11728118266910315,-0.7299315771088004,0.016219368670135736,-0.08723113685846329,0.8319983938708901,-0.9893276286311448,-0.6109168482944369,-0.637048355769366,0.5032119592651725,-0.4076011613942683,0.002066658344119787,-0.23680892633274198,-0.11890286020934582,0.5922045023180544,0.26375785656273365,-0.35216137394309044,0.8275622893124819,-0.5622936049476266,-0.4614639380015433,-0.6679770569317043,-0.5396879594773054,-0.6824971516616642,0.42846182780340314,0.17580885952338576,0.8791788634844124,-0.16178991738706827,0.23899710597470403,-0.9886409384198487,-0.9560479735955596,0.14052097033709288,-0.9288248922675848,0.48373196041211486,0.2111587687395513,-0.00613086111843586,-0.819804351311177,-0.8199729942716658,-0.658442229963839,-0.5016473256982863,-0.2389929462224245,-0.7673080121167004,-0.8688145093619823,-0.3252153340727091,-0.26455916836857796,0.5986457755789161,-0.022589759435504675,-0.9801756353117526,0.40770647022873163,-0.7274575242772698,0.860326430760324,-0.5362980095669627,-0.33753124717622995,-0.492195266764611,0.12817760929465294,0.4039141139946878,0.9880281900987029,-0.6954805958084762,0.27127960370853543,0.7840078729204834,0.7028667377308011,0.6801086976192892,0.7045448468998075,-0.7331860074773431,0.7355912616476417,-0.1511184824630618,-0.22272711899131536,-0.3794964416883886,0.4584769895300269,-0.4884160989895463,0.721716099884361,-0.29703183472156525,-0.4070297731086612,-0.9917966066859663,0.6356266322545707,-0.8964033680967987,0.2832608358003199,-0.23739863466471434,-0.9679947788827121,0.2548985411413014,-0.079271100461483,0.9864469589665532,-0.7772721373476088,-0.15711280144751072,0.30977749126031995,0.1965077412314713,-0.5429201228544116,-0.2717219078913331,-0.8345661778002977,-0.198260894510895,0.8273805472999811,0.7383321253582835,0.029793289490044117,-0.3566858861595392,-0.3001666949130595,0.7876694952137768,0.8245927267707884,-0.7832228792831302,-0.5614655925892293,-0.20407880004495382,0.8395177512429655,0.39566581044346094,0.5848087845370173,0.8678981000557542,-0.7688959734514356,-0.6239773137494922,-0.7412563837133348,-0.6676918636076152,-0.06803315691649914,0.0026275920681655407,0.3073614868335426,0.3792904643341899,0.835501195397228,-0.4528212361037731,0.5418909681029618,-0.48657365841791034,0.9100091699510813,-0.19580491678789258,-0.22709437599405646,-0.817429156973958,0.6028722668997943,0.9422077173367143,0.6157058719545603,0.2244816147722304,0.22024889010936022,-0.24302390543743968,-0.8338826727122068,-0.31854943139478564,-0.056488838978111744,-0.030345486477017403,-0.46358442353084683,-0.7765747243538499,0.14299145247787237,0.6537841609679163,-0.3145741540938616,0.06884968793019652,0.44188549602404237,0.10760524636134505,-0.40553204249590635,-0.3665508320555091,0.6547482730820775,-0.9221872906200588,-0.59568483941257,0.2947199158370495,0.3116435748524964,-0.06824652990326285,0.03628337662667036,0.5577727044001222,0.08390988642349839,0.17580665787681937,0.7918411246500909,0.29399395268410444,0.8945278823375702,0.3371122516691685,0.7204335955902934,-0.057268688920885324,0.17262491397559643,0.015432833693921566,0.38007229333743453,-0.46952277095988393,0.773313608020544,-0.29851924488320947,0.059059458784759045,0.05249084439128637,-0.7426490620709956,0.8158165123313665,0.8984797853045166,-0.9844879601150751,-0.037344224750995636,-0.7466739867813885,-0.1558971074409783,-0.2359601971693337,0.19904741644859314,-0.1513622421771288,0.9130959804169834,-0.5750994561240077,-0.6725105228833854,-0.5884313303977251,-0.34455843223258853,0.4433333920314908,0.37604266637936234,0.6741857435554266,0.5940401088446379,-0.8943458748981357,-0.9027644786983728,-0.5630736942403018,-0.37422961089760065,0.9497044337913394,0.14231632044538856,-0.105430425144732,0.10522108105942607,-0.9147401237860322,0.634153950959444,-0.564520294778049,0.8484147852286696,-0.35850257612764835,0.709778321441263,-0.6284447587095201,0.7017375663854182,-0.05050736991688609,0.9465613113716245,0.40088427579030395,-0.1299635572358966,0.011432550847530365,0.7264434276148677,-0.42069755773991346,-0.04356199922040105,0.4830366116948426,0.6249355897307396,0.4202628335915506,-0.8591463370248675,0.9610913791693747,-0.7118723709136248,0.95106818433851,0.825872446410358,0.9584335838444531,-0.3893691967241466,-0.9215436559170485,0.6819490911439061,-0.6507267937995493,0.8754882980138063,-0.23460065154358745,-0.7909266417846084,-0.8429389339871705,-0.15854737116023898,0.06046658242121339,-0.45406031049788,-0.5221227551810443,0.1418842701241374,-0.5524381846189499,-0.5340848942287266,-0.5268774558790028,-0.8746309564448893,-0.024194885045289993,0.30965672759339213,0.24889263603836298,-0.9041777336969972,-0.192208394408226,0.3941414658911526,0.7264679754152894,0.9435163121670485,0.517840534914285,0.5948105426505208,-0.6999214119277894,0.16420752881094813,0.012185550760477781,0.5393954454921186,-0.6400340921245515,-0.975470133125782,-0.40775445522740483,0.050323497503995895,0.7394922180101275,0.6774747385643423,0.0655463864095509,-0.6045096693560481,0.4821144239977002,-0.9901203205808997,0.4577331552281976,0.0343944258056581,-0.2108380002900958,-0.10524930246174335,0.19951616926118731,-0.24885442340746522,0.960271876771003,0.9490896635688841,-0.8990583238191903,0.3163526188582182,0.6012329570949078,0.14436287293210626,-0.46755205374211073,0.840170165989548,-0.026061188895255327,0.8967540501616895,-0.901586692314595,0.034547238145023584,0.8729526004754007,-0.29217814933508635,-0.06186750531196594,-0.9108062349259853,0.9333613566122949,0.9742301516234875,0.13748537516221404,-0.8480828409083188,-0.5376509851776063,0.7690253308974206,0.7350090988911688,-0.6829830813221633,0.9443711382336915,0.013810520060360432,0.059050535317510366,-0.9718122486956418,-0.6177303558215499,0.7817410128191113,-0.44818341080099344,0.6815358852036297,-0.1869797264225781,-0.8172924760729074,0.013049016240984201,0.6805497901514173,-0.950801485683769,-0.2877483549527824,0.5441450411453843,0.6001523854210973,-0.8917711665853858,0.9100761981680989,-0.6580820428207517,0.8431550059467554,-0.2317244466394186,0.2634831857867539,-0.8192670359276235,-0.7562629394233227,0.7836872176267207,-0.23103478318080306,0.544496760237962,-0.7756601455621421,0.49408559734001756,0.709517895244062,0.14777459297329187,-0.6912356466054916,0.12291392683982849,0.23846282111480832,-0.6364471148699522,-0.4814499313943088,-0.359475604724139,0.6531245629303157,0.47505798377096653,0.6784121626988053,0.639632701408118,-0.26529334019869566,-0.9669223944656551,-0.7022652612067759,-0.09814941743388772,0.503525173291564,0.14957022899761796,-0.8089128513820469,0.4298513852991164,0.4372839815914631,-0.3534530275501311,0.6305612907744944,-0.17619466315954924,0.14412951935082674,0.3596290801651776,-0.03540564514696598,0.6858748095110059,-0.16573377698659897,0.12667768960818648,-0.09878959599882364,-0.9102260223589838,0.04320157179608941,0.9496088195592165,-0.14386504935100675,0.3752929149195552,0.3590856697410345,-0.015049858950078487,0.3687312165275216,0.014987059868872166,-0.6504674577154219,-0.19645588053390384,-0.8727929033339024,-0.08345688693225384,0.7906647110357881,-0.25539455935359,0.29732266534119844,-0.9801853778772056,0.6055742618627846,0.8273006649687886,-0.9197108494117856,0.44699151534587145,-0.6515674977563322,0.3911326020024717,-0.4670305070467293,0.19795903004705906,-0.9657517252489924,0.42797216726467013,-0.5088033122010529,0.5841693938709795,-0.3663937794044614,0.1660574795678258,-0.7099447604268789,-0.8561704498715699,0.2651910688728094,0.49479848286136985,-0.831724701449275,-0.9298595450818539,0.7577034314163029,0.8619992900639772,0.5554401241242886,0.797599739395082,0.6556636597961187,0.15410198597237468,0.9257603222504258,-0.879053957760334,-0.9341383804567158,-0.598882507532835,0.6238845479674637,-0.4146488388068974,-0.4376449245028198,-0.5385714303702116,0.3654319499619305,-0.05384790664538741,-0.26838823361322284,0.8448770963586867,0.9031251794658601,0.1564088729210198,-0.3657591799274087,0.8225330193527043,-0.2408505487255752,0.18002815591171384,-0.6739778015762568,0.7996929083019495,-0.036367814522236586,0.263826260343194,0.527129580732435,-0.6050632367841899,0.46651175059378147,0.6648508296348155,0.17833178862929344,-0.9287146176211536,0.4019578224979341,0.701062633190304,-0.9362364569678903,0.5127806067466736,0.6519260909408331,0.826714210677892,0.41950392816215754,0.07249047979712486,-0.3712206198833883,0.9313019122928381,0.6587226917035878,-0.5351649122312665,-0.0428429814055562,0.3969400622881949,0.6366878971457481,-0.7476707366295159,-0.28236424550414085,-0.5215971707366407,-0.04285552678629756,0.4708566623739898,-0.15975324856117368,0.8398497891612351,-0.9321548384614289,-0.8198887086473405,-0.9127283324487507,0.6820519771426916,0.9729204988107085,0.015051609370857477,0.3705563796684146,-0.044904219917953014,-0.6092134155333042,-0.7668995144777,-0.0823375009931624,0.4357134196907282,0.11886483523994684,0.0744110201485455,0.25487841153517365,0.054187470115721226,0.9678540141321719,-0.4784288788214326,-0.040516250766813755,-0.1560690887272358,-0.9674571538344026,-0.7477168533951044,0.9344179504550993,0.6688603977672756,0.6064254464581609,0.09603589307516813,-0.5192064554430544,0.15746946819126606,-0.9237662460654974,0.8660127348266542,0.9289154685102403,0.9947203937917948,-0.9864635327830911,-0.9252328705042601,0.877637586556375,-0.6492261630482972,0.48149127466604114,-0.4190418627113104,-0.4146575154736638,-0.40639754198491573,-0.9533719387836754,0.6236656196415424,-0.7322095572017133,0.9591229087673128,0.0032881502993404865,0.2688648789189756,0.35305886436253786,0.743475089315325,0.7394268652424216,0.17908472195267677,0.4294709414243698,0.2887228140607476,0.05395413842052221,-0.22313344711437821,0.10015817359089851,-0.923536098562181,-0.43508161744102836,0.7677220986224711,0.32015685411170125,-0.6592312515713274,0.18831174867227674,0.10546747082844377,0.363277324475348,0.42461138730868697,-0.919422643724829,0.9060043413192034,-0.4545464599505067,0.8170320061035454,0.5962559431791306,-0.5327144735492766,0.9496642029844224,-0.8321922961622477,0.036088228691369295,0.10818168753758073,0.1622899933718145,-0.5554590835236013,0.8577633216045797,-0.8747140681371093,-0.5104458662681282,0.3850305937230587,-0.2198714092373848,-0.4134530145674944,0.6224179491400719,0.8421108927577734,-0.417139436583966,0.36118031200021505,-0.5913687692955136,0.10354769695550203,-0.30968777695670724,0.2635133541189134,0.1101160328835249,-0.9359499295242131,0.6048790048807859,0.13849854795262218,-0.03681127820163965,0.7789639658294618,-0.0842641950584948,-0.1189572298899293,0.6880770227871835,-0.5849751359783113,-0.10362385446205735,0.3011691118590534,0.6673966939561069,0.5767854298464954,-0.3213077741675079,0.9514939496293664,-0.6388184539973736,-0.41719749942421913,-0.17582516698166728,0.8752570175565779,0.642563565634191,0.4023173088207841,0.41470496403053403,0.0748086734674871,0.3393004867248237,0.4821085683070123,0.09817408258095384,0.578949126880616,0.559553699567914,0.819860128685832,-0.9443345852196217,-0.2392016421072185,-0.3551064874045551,0.10866077383980155,0.05125213507562876,-0.4374489947222173,-0.962685592006892,0.24985162820667028,0.0654441500082612,0.512597568333149,0.3217633906751871,0.8345770691521466,0.18851417116820812,-0.32148320134729147,0.6281657386571169,0.0687875784933567,0.47249110508710146,0.7984096445143223,-0.682141006924212,-0.6037369114346802,0.9185202410444617,-0.4834132888354361,0.7090859687887132,0.738964369520545,-0.7135571385733783,0.3113265326246619,-0.9375167083926499,-0.6403792477212846,-0.5290111061185598,0.2711306628771126,-0.19653043430298567,0.1832224833779037,-0.4386493684723973,-0.3314859331585467,-0.6474873260594904,0.260539289098233,0.6559478896670043,0.663064616266638,0.428388767875731,-0.4070867174305022,0.2812206335365772,0.06660694628953934,0.18022200651466846,-0.792779962066561,-0.8550624828785658,-0.32425726344808936,0.3618983910419047,-0.6361780455335975,-0.47829420678317547,-0.32767624594271183,-0.8136044908314943,-0.44203081727027893,0.5897632469423115,-0.08141766162589192,-0.5997166694141924,-0.3444136609323323,0.6337251556105912,-0.29769577411934733,-0.9254640196450055,0.6669436832889915,0.416397538036108,-0.8468035222031176,0.2768465965054929,-0.16702798521146178,-0.44945877557620406,-0.6470250855199993,-0.32016557874158025,0.5678097098134458,0.8496464164927602,-0.6273827659897506,-0.7850003396160901,0.23691139603033662,0.30796353006735444,-0.49606511602178216,0.4506923840381205,0.10164789343252778,0.8056822307407856,-0.5904275318607688,-0.8555169301107526,0.6367675838992,-0.9010392082855105,-0.0010577309876680374,-0.5050272746011615,-0.2771243439055979,-0.3338420884683728,0.3902916978113353,-0.5420729331672192,-0.2131475773639977,-0.13357559079304338,-0.6251004156656563,0.7917582141235471,-0.9188827099278569,0.19301001820713282,0.4993053902871907,-0.18208472803235054,0.5863341628573835,-0.9907361688092351,-0.5216529732570052,-0.1258158846758306,0.8181158001534641,-0.8699423274956644,-0.622381676454097,0.009279163554310799,0.5496774483472109,0.9030182561837137,-0.9466013833880424,-0.5082310205325484,0.32946161879226565,0.24739624047651887,0.3082385566085577,0.9782009893096983,0.829298434779048,-0.6978061618283391,0.54703229945153,0.5633150362409651,-0.044395382050424814,-0.534228004515171,0.8130276775918901,0.821739926468581,-0.8403925024904311,0.3972961441613734,0.4686146113090217,-0.9049596111290157,-0.10015827883034945,-0.5567273627966642,-0.6710580443032086,0.15623011626303196,-0.13314758986234665,0.9320042547769845,0.29741506557911634,-0.39051014836877584,-0.1396114411763847,-0.1990092797204852,-0.4564100857824087,-0.7568745175376534,-0.3061155560426414,-0.2454246450215578,0.566470886580646,-0.3113490561954677,0.019832683261483908,-0.3039483707398176,-0.8621121174655855,-0.7745058047585189,0.7066415580920875,0.5682231937535107,0.6694037388078868,0.040041735395789146,-0.8709485596045852,-0.7706565572880208,-0.6573810698464513,-0.9121101731434464,0.8570095961913466,-0.0797700728289783,0.9195521208457649,-0.1674584960564971,-0.005030693020671606,0.8041379232890904,-0.854534006677568,-0.38769378047436476,0.3788750288076699,-0.5204743864014745,0.9507660348899662,0.6993486662395298,0.528817558195442,-0.7376151653006673,0.6415922101587057,-0.48849923769012094,0.10979094495996833,-0.06899262079969049,-0.940674657933414,0.12788003869354725,-0.734242086764425,0.2002350348047912,0.6282462389208376,-0.8970388742163777,0.9364677597768605,-0.4509526123292744,0.2538374485448003,-0.6363276466727257,-0.9531056899577379,-0.4080616026185453,0.5169658553786576,-0.3532457002438605,0.5688760527409613,-0.11295817187055945,-0.8441764498129487,0.3582689641043544,-0.565713934134692,-0.7500140541233122,-0.07461032550781965,0.8192840018309653,-0.366771103348583,0.09767081681638956,-0.6919072535820305,-0.7476965272799134,-0.11714605707675219,0.5243814121931791,0.7945168288424611,-0.8348188926465809,-0.1224625431932509,-0.7511089062318206,-0.8512015626765788,-0.3023639894090593,-0.6479980554431677,0.3682093280367553,0.9129328359849751,0.6508485204540193,-0.3997434233315289,-0.7941236919723451,-0.8397056441754103,-0.050452192313969135,-0.8549945121631026,-0.6015732237137854,0.4670434477739036,-0.4600252350792289,0.07025833753868937,0.0827539823949337,0.3767982730641961,0.5839374517090619,0.3265389781445265,0.7385003222152591,0.3704066793434322,-0.679541451856494,0.22974384389817715,-0.7584321647882462,0.6040230458602309,0.8566359439864755,-0.07567504001781344,0.8976702522486448,-0.778393782209605,-0.8116111974231899,0.49371741991490126,0.3871749844402075,0.5825847829692066,0.06133157527074218,0.7912338501773775,-0.6871680971235037,0.23174418602138758,-0.6851646304130554,-0.5655361036770046,-0.6421683882363141,0.7276974134147167,-0.16116279689595103,-0.8951391014270484,0.9933849018998444,0.0418812963180244,0.26472192257642746,-0.7003214652650058,0.08149044075980783,0.7556053237058222,0.5705551430583,0.07705809781327844,0.6622518110089004,0.532430007122457,0.398225967772305,0.04627233790233731,-0.6068602497689426,0.9261972992680967,-0.05387578997761011,0.39124353183433414,0.3292469270527363,-0.1644540368579328,0.3165246872231364,0.5351611576043069,-0.5197213646024466,-0.3114333595149219,0.08398305159062147,0.0983500867150724,0.04081700323149562,0.8545571835711598,0.7986847148276865,0.5457243388518691,-0.7932451772503555,-0.10058723017573357,-0.9590892875567079,-0.21041823644191027,0.6628793361596763,0.3369495742954314,-0.5431477664969862,0.49870307045057416,0.8803622256964445,0.42790574254468083,-0.4952072622254491,-0.8373599154874682,-0.9075512643903494,0.48250565957278013,-0.14612303441390395,0.7879977221600711,-0.7456066580489278,-0.993910945020616,-0.5802411548793316,0.2180034164339304,0.03239497169852257,-0.9197700708173215,-0.20062592159956694,-0.41954944375902414,0.4496118426322937,-0.021722052711993456,0.11286614974960685,0.45609729550778866,0.1917932373471558,-0.7142346994951367,-0.1862050388008356,-0.5538884014822543,0.7270070877857506,0.31532991025596857,-0.8154892176389694,-0.8088720454834402,-0.4027904695831239,0.3215914433822036,-0.5301812863908708,0.125047798268497,0.442609884776175,0.29850260028615594,-0.15081849321722984,-0.9891328299418092,-0.5992692508734763,0.15116231981664896,-0.6243702280335128,0.8993607559241354,0.5582892978563905,0.9993013250641525,0.013678948860615492,-0.6406830889172852,-0.19255151180550456,-0.3003171952441335,-0.903915869537741,-0.462375873234123,-0.1062037106603384,-0.31782126799225807,0.6527711190283298,-0.6124283107928932,0.38341254042461514,-0.7558217844925821,-0.3373087444342673,-0.22164103668183088,-0.46100902184844017,-0.5861013815738261,-0.483159473631531,0.4776486908085644,-0.014723447151482105,0.18982024071738124,-0.7259947415441275,-0.26121037965640426,0.22701214626431465,0.8255560393445194,-0.048209619242697954,-0.3297044266946614,-0.3609029846265912,0.8935381677001715,-0.18337686359882355,0.06340329721570015,0.029837720096111298,0.6144438805058599,0.47854305477812886,-0.670521741732955,0.40615410869941115,0.12067301105707884,0.8643756108358502,-0.4775123870931566,0.8948342590592802,0.10048322379589081,-0.5539321145042777,-0.6819158936850727,0.01684189448133111,0.5167729593813419,0.8110247533768415,-0.5538432151079178,-0.8939567524939775,0.28453830629587173,0.6995894461870193,-0.5158817684277892,-0.5606030174531043,-0.5475018294528127,0.12490212777629495,0.0712980916723609,-0.6947374669834971,-0.10000244248658419,-0.8150705145671964,0.2441037525422871,0.863963729236275,0.9821897353976965,0.013896682299673557,0.6074434560723603,0.6709655607119203,0.9315911969169974,-0.9302174164913595,0.14383989060297608,0.05159172834828496,-0.06863783160224557,0.5444976547732949,0.6623132200911641,-0.24339327681809664,-0.4562541446648538,0.0018622903153300285,0.40260974410921335,-0.5577533948235214,0.747719984035939,0.5117117157205939,0.06737601524218917,-0.9420248637907207,0.11649109795689583,-0.1644705287180841,0.06410882761701941,0.5971095389686525,-0.8300163154490292,-0.21986729558557272,0.7087376369163394,-0.1956585831940174,-0.5129898749291897,0.39589468389749527,-0.5294217644259334,-0.34559370018541813,-0.7883421629667282,0.21109321480616927,-0.7314613154157996,0.27127117523923516,-0.7375819738954306,0.3635516199283302,0.7446292601525784,-0.913014723919332,-0.21453931275755167,-0.1918086325749755,0.769543063826859,0.06551066320389509,0.1266827704384923,-0.7829821105115116,0.08721713814884424,0.7832852336578071,0.7592676468193531,0.6840878804214299,-0.8707825317978859,0.7282410012558103,-0.15059639513492584,0.36106968810781837,-0.5240231938660145,0.8042007186450064,0.08291490655392408,-0.6454288326203823,-0.034421639051288366,-0.747538922354579,-0.9728492866270244,0.5072086709551513,0.8054812527261674,0.10331388935446739,0.9130738861858845,0.6782023939304054,0.8593349480070174,-0.9298907271586359,-0.8461138848215342,-0.6420211209915578,0.029024071525782347,0.004558837506920099,-0.6704070870764554,-0.2509513972327113,0.6178471772000194,0.6371385944075882,-0.5995374293997884,-0.9631001469679177,0.7210688553750515,0.3641270990483463,0.5170863787643611,-0.9077752553857863,-0.48388917930424213,0.5359908328391612,-0.13875610707327724,0.28786046616733074,-0.07748127449303865,-0.4678931077942252,-0.5620280262082815,-0.82581972097978,-0.9248629487119615,-0.021425736136734486,0.9961748472414911,-0.35546732461079955,0.25893730064854026,-0.8545154025778174,0.015065892599523067,-0.9145408771000803,0.8513369471766055,-0.13531549321487546,-0.7322623450309038,0.9955972814932466,-0.24901130981743336,-0.02258872054517269,0.51557791326195,-0.4703716873191297,0.11260436195880175,0.0055262004025280476,-0.22973524825647473,0.9977163812145591,0.6487217098474503,-0.46339073590934277,-0.4589997227303684,-0.216726278886199,0.7149102962575853,0.46303997933864594,0.611052991822362,0.9761779406107962,-0.40105859376490116,-0.6279889489524066,-0.6530628749169409,-0.14876873139292002,0.5992459035478532,-0.08553194813430309,-0.816121400333941,-0.931384059600532,-0.4889603089541197,-0.11552229663357139,0.9392322143539786,-0.4545486196875572,-0.9266555178910494,0.1900753383524716,-0.22741686645895243,-0.20171810081228614,0.7272879481315613,-0.1186381857842207,-0.2183363172225654,-0.999846073333174,-0.0875020925886929,0.3421490197069943,-0.37273035990074277,-0.8874911367893219,0.03037564968690276,0.6632974459789693,0.07894904585555196,0.946637712419033,-0.6510800402611494,0.31331541296094656,-0.5271831071004272,-0.7284152242355049,-0.8883837107568979,-0.755692663602531,-0.7162828198634088,-0.9933338016271591,0.29352410417050123,-0.7430853610858321,0.8982234466820955,-0.3683548900298774,-0.5398254091851413,0.7473225984722376,0.8175891572609544,-0.3970107021741569,0.24292339850217104,0.047405066434293985,0.6553534525446594,-0.6190605578012764,-0.6628365232609212,0.27479049284011126,0.043285672552883625,0.4801022009924054,-0.5991494879126549,-0.8339916062541306,0.9658429217524827,-0.6025825594551861,0.33637903025373816,-0.5509151467122138,-0.5189593504182994,0.26046315860003233,0.4070045845583081,0.295170484110713,0.13772522239014506,0.3280120915733278,0.9299480677582324,-0.09117158129811287,0.5641291062347591,0.3710360457189381,-0.26885414915159345,0.08500578673556447,0.6648547663353384,-0.5257427338510752,-0.9354418371804059,-0.09667047951370478,-0.7914874060079455,0.795899594668299,0.49361653672531247,-0.26622204249724746,0.5734261646866798,-0.6242529940791428,-0.683540191501379,0.387935736682266,-0.006393985822796822,-0.6155493375845253,0.947000291198492,0.7731964509002864,-0.5947858323343098,-0.9561743568629026,-0.4012014507316053,-0.14928677631542087,-0.6483958470635116,-0.5699888784438372,-0.6298121656291187,-0.8639183868654072,-0.7574611236341298,-0.20284543931484222,-0.316030893009156,0.5164702902548015,-0.14888671273365617,-0.8166100229136646,-0.9968076548539102,0.07558464771136642,0.9246568600647151,0.24261878756806254,-0.636207805480808,0.5924481167457998,0.05354174179956317,0.286339545622468,0.6392112947069108,0.03829140309244394,-0.9671611222438514,0.2546589463017881,0.17204676242545247,0.8219272159039974,0.657357573043555,-0.7917018136940897,0.8156391005031765,0.11385308299213648,-0.5753972623497248,-0.41449150163680315,0.9176467750221491,-0.7297496148385108,-0.5682856892235577,-0.19510250352323055,-0.42148344684392214,-0.5093706869520247,0.04738650098443031,-0.6256283358670771,-0.5647637629881501,0.01904958812519908,-0.5866854614578187,0.9429589104838669,0.8350116615183651,0.9774310025386512,-0.3350195465609431,-0.4791842638514936,-0.10280134435743093,-0.9676272422075272,-0.44757391419261694,0.9078738284297287,0.27234293427318335,0.28460500994697213,-0.31699106749147177,0.06559509551152587,0.513931957539171,-0.0556268566288054,0.7979294690303504,0.1798968492075801,0.9087145808152854,-0.11232637660577893,0.9401917979121208,0.9304296192713082,-0.43999426206573844,0.32744250539690256,0.09048469550907612,-0.5083151631988585,0.0741070513613522,0.9087941413745284,-0.7670523729175329,0.06800621887668967,0.5851057888939977,0.5149283814243972,-0.9943714253604412,0.7956454195082188,-0.9082373920828104,-0.25539704225957394,-0.4077289206907153,-0.7702699140645564,0.9265747671015561,-0.8832203601486981,-0.8682832145132124,-0.2663497324101627,-0.14686350664123893,0.37456890381872654,-0.5585251227021217,-0.3202062505297363,-0.08130881004035473,-0.9516063900664449,-0.6655797590501606,-0.4474281379953027,0.796657704282552,-0.12091831117868423,-0.9405922191217542,0.6528522004373372,0.2070959690026939,-0.04837028868496418,0.3913918249309063,0.7750663906335831,0.4875574563629925,0.6812482844106853,-0.7794328927993774,-0.18473515985533595,0.14186930796131492,-0.8042925870977342,0.092903817538172,-0.9496503048576415,-0.6642278209328651,0.1907450407743454,0.9368783948011696,0.9677661340683699,0.8946484886109829,0.23072042176499963,0.8740558349527419,0.38944475306198,-0.8519927975721657,-0.12174036540091038,-0.9330881917849183,0.34269146155565977,-0.3140512420795858,-0.47436738293617964,0.893040225841105,0.40476451301947236,0.2010024357587099,0.6093647782690823,-0.19527813838794827,0.3447118913754821,0.26035146648064256,-0.6600729799829423,0.7217827052809298,-0.4152288790792227,0.023890885058790445,-0.14664876088500023,0.4811679096892476,-0.5677595627494156,0.4802772728726268,0.6824776418507099,0.42192624788731337,0.7949454602785408,0.0286554004997015,0.4403890841640532,-0.873064421582967,0.8420429332181811,-0.9692719341255724,0.011226142756640911,-0.8283936819061637,-0.8919978966005147,-0.06634903559461236,-0.6504015694372356,0.31279051024466753,0.7662112931720912,0.6567842690274119,-0.284215263556689,0.6285770568065345,-0.10164766432717443,0.06851317174732685,-0.32441109837964177,-0.9524123747833073,0.9009984275326133,-0.9459961927495897,0.9009516946971416,0.9875835990533233,-0.7342595579102635,-0.24639076413586736,0.29750465182587504,-0.3807253469713032,-0.11392146302387118,-0.8562529175542295,-0.6291654668748379,0.8306286209262908,0.5764556126669049,-0.2738465806469321,0.5137551645748317,-0.2887873384170234,0.9210356655530632,-0.8313531754538417,-0.2538886438123882,0.9283444271422923,0.08580592786893249,0.5471104448661208,0.4284745818004012,-0.048568267840892076,0.4883766546845436,0.7956274715252221,0.33317052805796266,-0.7187551925890148,-0.8342198836617172,-0.7934019924141467,0.20746373804286122,0.8262875694781542,0.45046711806207895,-0.6126231169328094,-0.24705193703994155,-0.010961723979562521,-0.03830453380942345,0.5104811126366258,0.5376112316735089,0.09854186419397593,-0.2003610641695559,0.49419393250718713,-0.7312080464325845,-0.10687139118090272,0.01279519870877266,0.2893866868689656,-0.7769737173803151,-0.01307929353788495,0.20023384550586343,0.06997020915150642,-0.28072464372962713,-0.21661744127050042,-0.9366861772723496,-0.773426340892911,-0.44657981349155307,0.9817213825881481,0.38476830488070846,-0.11163096781820059,0.280131071805954,-0.8034445527009666,-0.7097414559684694,0.7411524532362819,-0.4535798104479909,0.19883127976208925,0.6106490488164127,0.9065077723935246,0.5312932194210589,0.8833073787391186,-0.40880821738392115,-0.6713607502169907,0.9625786859542131,0.08046396402642131,0.05812999280169606,-0.7488842806778848,-0.942509510088712,-0.6482792687602341,-0.8557990076951683,0.2236303985118866,-0.7554666278883815,0.38255523331463337,-0.08442669222131371,-0.5789833231829107,-0.5217094859108329,0.9410190996713936,0.14208966679871082,-0.6423072116449475,0.4724907004274428,0.33940494293347,-0.5597521001473069,0.10428922902792692,-0.9604849889874458,-0.3967039156705141,-0.9893035632558167,0.049943441059440374,-0.23500502947717905,-0.8158186408691108,-0.3328139134682715,-0.6930463188327849,-0.2071169032715261,-0.126757494173944,0.0323945851996541,0.9894685978069901,-0.4633392449468374,0.034070821944624186,-0.8280513747595251,-0.5884783701039851,-0.9738440453074872,-0.9359626332297921,-0.8640788746997714,0.4421822582371533,0.9945103810168803,-0.7271160236559808,0.602707133628428,-0.16607273975387216,0.44828640716150403,0.48730472987517715,-0.07304549030959606,-0.34881045250222087,0.9274006318300962,-0.5579277267679572,0.2629953008145094,-0.11235344503074884,-0.9154810942709446,-0.846601989120245,-0.05626487918198109,0.1408314467407763,-0.7831369773484766,-0.10321640269830823,-0.08930941484868526,0.19826245121657848,-0.0008576884865760803,-0.5909870807081461,0.0869876598007977,0.5637101591564715,0.8716184222139418,-0.9936479330062866,0.2394508863799274,0.882114508189261,0.6484533282928169,0.8227150677703321,0.6362191536463797,0.6015297370031476,-0.19016699120402336,0.17369935475289822,0.4770349725149572,0.17380779702216387,0.4154752534814179,0.3527672588825226,0.9792048893868923,-0.10375038674101233,0.5832098578102887,-0.46576853888109326,-0.11825096979737282,0.5717050819657743,0.8144803107716143,0.8984780861064792,-0.40338762989267707,-0.3387647191993892,-0.3024208010174334,-0.5860981005243957,0.8178534428589046,0.0988290449604392,0.12567539373412728,-0.05226604454219341,-0.1052174256183207,0.7255461388267577,0.808588336687535,-0.9358499580994248,0.8756289351731539,-0.5681568747386336,0.15772199304774404,-0.40563036501407623,0.2650038143619895,0.9913774938322604,-0.8563530119135976,0.7640358302742243,0.2734079556539655,-0.8497831257991493,0.43482006806880236,-0.56952412892133,0.9280436388216913,0.8361429530195892,0.5081735155545175,-0.04065546812489629,-0.15150445606559515,-0.2603962877765298,-0.5218929988332093,0.341417103074491,0.9348513293080032,0.10484897717833519,-0.26743591390550137,-0.20764890871942043,-0.7922498066909611,0.8898795056156814,0.4100934062153101,-0.860151472967118,0.7097319914028049,0.10441893618553877,0.31242005666717887,0.3194384565576911,-0.34891172125935555,-0.9134748592041433,0.6676509641110897,-0.5960652637295425,-0.6613242896273732,-0.5678621777333319,-0.37434141524136066,-0.5320439380593598,-0.9747916790656745,-0.10864100698381662,0.3070816467516124,-0.05910615576431155,0.6135068591684103,-0.8941454077139497,0.3162477449513972,-0.5913914404809475,0.779839760158211,-0.08341455832123756,0.08301254129037261,0.13748298306018114,-0.20286445459350944,0.7975937672890723,-0.581750753801316,0.609165751375258,-0.944187983404845,0.4564102594740689,-0.7800160623155534,0.539031115360558,-0.8562114583328366,0.5156151512637734,-0.8523283037357032,-0.31309604132547975,-0.38214023783802986,-0.957940427120775,0.4693014668300748,-0.6134401252493262,-0.6704774536192417,-0.11591374222189188,-0.20512812584638596,-0.3200587905012071,0.1921001560986042,0.31400263169780374,-0.7409933246672153,0.13408014783635736,-0.35337792709469795,0.8501256350427866,-0.12097080796957016,-0.27523777168244123,0.5902948537841439,-0.5590846119448543,-0.30835600942373276,-0.023496680427342653,0.9525988074019551,0.4142829701304436,0.6624823966994882,0.14487381977960467,-0.7235153946094215,0.7218604134395719,0.9159727906808257,-0.11047125747427344,0.8287274525500834,-0.9003565460443497,0.8573580044321716,0.47323107393458486,0.2335049849934876,0.6237113317474723,-0.679252773988992,0.6816402599215508,-0.7395100216381252,0.08557643042877316,0.6021550176665187,-0.3570338119752705,0.24399271747097373,-0.11998374201357365,-0.13296601362526417,-0.44468218414112926,-0.8150460361503065,-0.16848831390962005,-0.9487878340296447,-0.4346144339069724,0.9661587802693248,-0.2251566331833601,0.8057400910183787,0.1961611034348607,-0.10270896973088384,0.10858360398560762,-0.6563567453995347,-0.47763650491833687,-0.8447390180081129,0.1918936800211668,-0.4243418639525771,-0.11109508108347654,-0.1942371758632362,0.6810452346689999,0.6436732248403132,-0.2232428160496056,0.7236881884746253,0.3446311755105853,-0.616719507612288,-0.6882612397894263,-0.2409408832900226,0.8097936841659248,0.24978978699073195,0.01895493036136031,0.2162247602827847,0.4264216083101928,-0.16270770132541656,-0.9144521839916706,0.243997554294765,-0.4032422970049083,-0.2955496679060161,-0.9629109036177397,-0.31717461673542857,-0.8598532998003066,0.6831083954311907,-0.02685254206880927,-0.7905805041082203,0.581327288877219,-0.6881660646758974,0.88026242563501,-0.8931757803075016,-0.12582982890307903,-0.741383005399257,0.83050831919536,-0.19367509754374623,-0.018082499969750643,-0.24566805735230446,-0.3287641555070877,0.6016518659889698,-0.7925107977353036,0.15325045259669423,-0.6179031683132052,0.5070696440525353,-0.2761550801806152,0.22152700368314981,-0.9324464835226536,0.250203930772841,-0.27656188886612654,0.9284277269616723,-0.48799545504152775,0.9644907605834305,-0.7769243502989411,0.713561958167702,-0.5634853462688625,-0.8865580833517015,0.2391171846538782,-0.9411138431169093,-0.6257734503597021,0.28743612999096513,-0.8669961295090616,-0.5252274395897985,-0.3976050647906959,-0.11805891711264849,0.23528348095715046,-0.419039111584425,-0.29308712342754006,-0.28512146743014455,-0.8665869934484363,0.11457080254331231,0.05442341836169362,0.995062384288758,-0.9066485692746937,-0.15045614773407578,-0.21084288880228996,0.9345944672822952,-0.20715782698243856,-0.6746931849047542,0.026607505045831203,0.1945732138119638,0.39904252626001835,0.2667771861888468,-0.320026361849159,-0.21841815439984202,-0.5932207610458136,0.5228605004958808,-0.5246459897607565,-0.5017686956562102,0.5458607142791152,-0.32400424126535654,-0.45701598888263106,-0.14365478651598096,-0.9252142775803804,-0.9071144652552903,0.9091415265575051,0.7985419831238687,-0.1594119151122868,-0.9579951441846788,0.5049361451528966,-0.8355726841837168,0.5349761466495693,-0.4949275488033891,-0.262204107362777,-0.33221440110355616,0.9306796682067215,0.961067670956254,-0.3166374475695193,0.9195531951263547,-0.37210338190197945,0.40152229089289904,0.13264050893485546,0.303622021805495,0.951279076281935,0.2492309515364468,0.22993584675714374,-0.7835821099579334,0.2725799987092614,0.17394912289455533,0.22929500369355083,0.03439317597076297,0.9881201814860106,0.6987336096353829,0.5482704695314169,0.7927286666817963,0.3322635078802705,0.43973539816215634,-0.6839826870709658,0.36472161393612623,-0.9486408266238868,0.7047902191989124,-0.37528295908123255,-0.2561852289363742,0.4941703644581139,0.3182383831590414,-0.7409151489846408,0.5272135720588267,-0.47266528150066733,-0.23598588490858674,0.36507915891706944,0.8448052508756518,-0.0015013557858765125,0.9148348146118224,0.14974257769063115,-0.9781733294948936,0.3528573145158589,0.8968079923652112,-0.10994553286582232,-0.28729636315256357,0.6296529099345207,-0.9757158877328038,-0.9839485692791641,0.5475839134305716,0.5460001602768898,0.9019209602847695,0.682629156857729,-0.29758202098309994,-0.395878080278635,0.3478334960527718,-0.4118940932676196,0.9674800387583673,0.22780113061890006,-0.7859762930311263,-0.17086829617619514,0.25950806867331266,-0.827982438262552,-0.798262607306242,0.0643482506275177,0.5111968200653791,-0.4964052722789347,0.04861508682370186,-0.2925662132911384,0.03226228104904294,0.014432517811655998,0.14601167058572173,0.3579107141122222,0.9264967539347708,-0.9772788677364588,0.26061490597203374,-0.8641843027435243,-0.728580879047513,0.7429363992996514,-0.31859906297177076,-0.11658079130575061,-0.9608515929430723,-0.3902135859243572,-0.6079776650294662,-0.06342215137556195,-0.657630730420351,-0.9673624592833221,-0.07834934676066041,-0.7477348078973591,0.42679430171847343,0.269682296551764,-0.5266981227323413,-0.2361727962270379,0.2785595408640802,0.6694389428012073,-0.08340405160561204,-0.09844729863107204,0.09297970263287425,0.04067045962437987,0.05754046281799674,-0.56170899188146,-0.8881471045315266,-0.8049730900675058,0.7913942271843553,-0.8426092551089823,0.010890657547861338,-0.09993788041174412,-0.9022326143458486,0.062089577317237854,0.6061574844643474,0.276811714284122,0.9559498461894691,0.713841144926846,-0.3309265854768455,-0.10098777106031775,-0.49338395008817315,-0.1827462613582611,0.08450024574995041,-0.5677171782590449,-0.9715811321511865,0.5434156795963645,0.8561242078430951,0.8408294604159892,0.11120242020115256,-0.5961565994657576,-0.7708820840343833,0.6480448092333972,-0.3215706208720803,-0.6017149789258838,0.06482040602713823,0.47926792316138744,0.932454627007246,-0.09840231528505683,-0.5342603069730103,0.4852607361972332,0.2594929621554911,0.03399737412109971,0.42713018832728267,0.1910068397410214,0.4067051918245852,-0.5080517479218543,0.7999519971199334,-0.4432612075470388,0.6648320537060499,-0.6675964961759746,-0.3470521471463144,0.8716868027113378,0.7476143222302198,-0.7597701237536967,-0.45386272901669145,-0.1953918212093413,-0.15485317166894674,0.4826175509952009,-0.09240385331213474,0.8397048525512218,-0.8472437541931868,0.6391141731292009,0.6361377323046327,0.698449797462672,-0.8362375153228641,-0.9965907260775566,0.2579409130848944,0.17008253931999207,0.9972205283120275,-0.04093655897304416,0.005984747316688299,0.09883104776963592,0.6619665254838765,-0.8220902355387807,0.5138547825627029,0.6070920284837484,0.7571808001957834,-0.020608789287507534,-0.5202683629468083,-0.3976847189478576,-0.9649011865258217,-0.8640090096741915,-0.9615053860470653,0.9142121248878539,0.801894171629101,0.46238010050728917,-0.07356625003740191,-0.5096329497173429,0.7403072430752218,0.881564708892256,0.8694545337930322,-0.6607195730321109,0.8358041355386376,-0.25989754404872656,-0.6996408966369927,0.17814466822892427,0.040027810260653496,-0.19453149195760489,0.6940131881274283,0.6563492710702121,0.20828127162531018,0.6603119536302984,0.3575968644581735,-0.05406572390347719,-0.4039827096275985,0.9967450038529932,-0.3829384627752006,0.45389010617509484,-0.6268138489685953,0.8782197614200413,0.9564566975459456,-0.11785067478194833,0.23455943539738655,-0.1914191567339003,-0.7023499039933085,-0.1875316994264722,-0.3706181710585952,-0.33736554998904467,-0.36036622896790504,0.6099831601604819,0.028129282407462597,0.44258200377225876,0.8912265347316861,0.8625011118128896,0.2019307129085064,-0.8375009465962648,0.4346367516554892,-0.42808890296146274,0.21507096802815795,0.6162007162347436,-0.048923328053206205,0.7218391606584191,-0.8097045449540019,0.3904387913644314,0.4259325359016657,-0.4624430132098496,0.13862175773829222,0.4763951897621155,-0.8306536790914834,0.07155559584498405,-0.4881062866188586,0.8226158334873617,-0.9993957388214767,-0.8695602593943477,0.4842387745156884,0.45422807754948735,0.7411980135366321,-0.3961637020111084,0.4484461755491793,-0.3958850521594286,0.4730176073499024,0.3012559050694108,-0.2360366703942418,0.4056135076098144,-0.9893628493882716,0.34676246624439955,0.6094174711033702,0.8738946239463985,0.5364294042810798,-0.9656218183226883,0.09577892906963825,-0.5081889340654016,-0.6851589037105441,0.39815730694681406,-0.9088778221048415,-0.5765046789310873,-0.4458822417072952,-0.6119257840327919,-0.7960494011640549,0.6899788295850158,-0.271572956815362,0.16431234311312437,-0.6965468474663794,-0.8918530447408557,0.5303358528763056,-0.6401013671420515,-0.03476042253896594,0.2833506870083511,0.804179928265512,-0.08010237570852041,0.22586081502959132,-0.630329767242074,0.5157381095923483,0.9103760537691414,0.9827950187027454,0.09797788830474019,0.08588301157578826,0.3262267499230802,-0.5242753829807043,-0.008244763594120741,0.9160001752898097,-0.9441819651983678,-0.7926344163715839,-0.9201193801127374,-0.10537063330411911,0.12987342104315758,0.15665927855297923,0.8644906943663955,0.38523520110175014,-0.5678512374870479,-0.6106577627360821,0.71807552408427,0.05037649068981409,0.14650075742974877,0.6333047528751194,0.3780419616959989,-0.17770969914272428,0.3548938175663352,-0.10705670667812228,0.12440081778913736,-0.9914033603854477,0.8156408877111971,-0.39895227272063494,0.04136850452050567,0.6269699763506651,-0.009522627107799053,0.28140199882909656,-0.7090166606940329,-0.945689357817173,0.6803326886147261,-0.8336141812615097,-0.20978566305711865,-0.38509883591905236,-0.8833960047923028,-0.0892164409160614,-0.9788143155165017,-0.3582149720750749,-0.5097139300778508,-0.021489404141902924,-0.0019055744633078575,-0.7522368803620338,-0.09899344062432647,0.07492815563455224,-0.47439916525036097,0.5073240762576461,0.12812872882932425,-0.9579256842844188,-0.988974207546562,-0.13674438651651144,-0.9189451527781785,-0.7445198730565608,-0.5342189692892134,0.11191533599048853,-0.2829459775239229,0.15085083525627851,0.9848211058415473,0.7179852882400155,-0.742674121633172,-0.04783945204690099,-0.7630434022285044,0.15159155055880547,-0.7396676549687982,-0.583587393630296,-0.5740676573477685,0.0652405135333538,0.5983331887982786,-0.5466095865704119,0.6525807147845626,0.11714249989017844,0.9617556971497834,0.1568522434681654,0.33487668447196484,-0.36074573872610927,0.9017767054028809,-0.6499164644628763,-0.31132230581715703,-0.4918749970383942,0.01671306136995554,-0.7790241404436529,-0.7443893486633897,-0.5879329666495323,0.6766855921596289,-0.5464267977513373,0.27214397629722953,-0.7926714615896344,0.8030179939232767,0.47056835796684027,-0.35085516329854727,-0.5527721950784326,0.06376277282834053,0.13744419859722257,0.053106804843991995,0.6492069093510509,-0.059244496282190084,0.38241442991420627,0.3235663934610784,-0.7962068156339228,-0.003600679337978363,0.3924619918689132,0.8713815957307816,0.9881287585012615,-0.19223266933113337,-0.1768469442613423,0.9346235059201717,0.91349967289716,0.6324223643168807,0.7693324694409966,-0.7434691595844924,0.3877628277987242,-0.7292959121987224,0.089191023260355,-0.3487547282129526,-0.6798893427476287,0.11608530208468437,-0.7192135062068701,0.5281395497731864,-0.1842609215527773,-0.8286393396556377,-0.12493067421019077,-0.24948174878954887,0.08967556897550821,0.38065736182034016,0.2683595516718924,0.9237823127768934,-0.4433482363820076,0.008592588361352682,0.5143451681360602,-0.7774143349379301,-0.017675103154033422,0.48607876850292087,-0.035828348714858294,0.41794449742883444,-0.6487231636419892,-0.6335228625684977,0.7139443545602262,0.3288800944574177,-0.5101535059511662,-0.8267093813046813,-0.5067036463879049,-0.9832919971086085,-0.996282824780792,-0.6118774795904756,0.40485077491030097,0.9339430429972708,0.3978626485913992,-0.5820169309154153,0.03858309146016836,-0.22315320558845997,-0.7769775167107582,-0.024309531319886446,0.26563499262556434,0.34517988422885537,-0.14885413320735097,-0.21096714353188872,-0.958416473120451,0.5309504736214876,-0.5298934020102024,-0.9116043434478343,0.7047807844355702,-0.3789192736148834,-0.25067525124177337,-0.2348367222584784,-0.2750306511297822,-0.037736399564892054,-0.8670480051077902,0.5371769592165947,0.7589997407048941,-0.9914544275961816,0.8234422984533012,-0.02262135362252593,-0.32662536250427365,-0.8168980069458485,-0.03207277413457632,0.061027816496789455,-0.3605942251160741,-0.9767928151413798,0.392598666716367,-0.8524813251569867,-0.3840904072858393,-0.269065850879997,0.34451930737122893,0.658785454928875,0.4605369307100773,0.1897873072884977,0.17836244823411107,-0.5315641728229821,0.46755256690084934,-0.3180563561618328,-0.03800891479477286,-0.7228448516689241,-0.6914026755839586,0.09429075382649899,-0.3267209683544934,-0.4816460716538131,0.9325858545489609,-0.6937571400776505,-0.3586890152655542,-0.17368291458114982,-0.49296232452616096,0.1795715973712504,-0.30725399451330304,0.6395192281343043,-0.35407221782952547,-0.059458345640450716,0.038295724894851446,0.14441784843802452,0.17111277393996716,-0.018324669916182756,0.5378190847113729,-0.5611940152011812,-0.027346327900886536,0.7722435351461172,-0.7792351241223514,0.34458636213093996,-0.27535426896065474,-0.44308450166136026,0.7417346495203674,-0.05054527474567294,-0.40173906879499555,0.06407244456931949,-0.3916879156604409,-0.45391251100227237,-0.18053736770525575,-0.2263922831043601,-0.958267467096448,0.7396821416914463,-0.37157121766358614,0.1712782634422183,-0.8165815104730427,0.36496173730120063,0.9052961780689657,-0.5110104829072952,-0.03748661931604147,-0.41178267216309905,0.2790310215204954,-0.06753062596544623,0.22666951268911362,-0.2546688625589013,-0.4047744437120855,0.07988762250170112,-0.20202647661790252,-0.4645691392943263,0.19426450971513987,-0.6554040857590735,-0.32015982922166586,-0.9236415508203208,-0.06845672614872456,0.6154389586299658,0.16509836446493864,-0.9933394840918481,0.9919235147535801,0.24740017764270306,-0.16216316632926464,0.8379592411220074,-0.6680929563008249,-0.11335762729868293,0.3134260857477784,-0.9774790741503239,-0.4326793700456619,-0.8462942237965763,0.3752080141566694,-0.32522384775802493,0.5768370623700321,-0.1476673404686153,0.1589728845283389,-0.3953996687196195,-0.6837360146455467,-0.785397969186306,0.18711684085428715,-0.5598630639724433,-0.8353945510461926,0.44109148997813463,-0.25069968681782484,0.7296652924269438,0.19241652730852365,-0.9134097727946937,-0.08693471690639853,-0.22181034227833152,0.3268997725099325,0.677719812374562,0.24596787663176656,-0.49954551085829735,-0.48833219707012177,0.8098743068985641,-0.35681779542937875,-0.8652368979528546,0.108908134046942,-0.6844961252063513,0.7754009738564491,0.9267311193980277,-0.8603908391669393,-0.46890994254499674,0.796422550920397,-0.4051367873325944,0.6211962848901749,-0.0016181683167815208,-0.21282926201820374,-0.7235809545964003,-0.6583575424738228,0.2287623593583703,0.813184620346874,-0.05597149254754186,0.6740124239586294,0.792808978818357,0.7872865814715624,0.5763482665643096,-0.5656353896483779,0.3755814633332193,-0.6660060491412878,-0.018380610272288322,-0.5727968029677868,0.44276536628603935,-0.12014966364949942,0.9711663289926946,-0.4581429664976895,-0.6199867110699415,-0.76282092416659,-0.3145038061775267,-0.5953765660524368,0.6662140735425055,0.4025393910706043,0.2591742188669741,0.051473795901983976,-0.8757502436637878,0.2151528662070632,0.33251036051660776,-0.6731920768506825,0.62199099175632,0.5404850938357413,0.49390354845672846,0.5433298964053392,-0.6172060677781701,-0.9475151491351426,-0.9899289682507515,0.7125207646749914,-0.000419112853705883,-0.19359578704461455,-0.4008250809274614,0.2425349298864603,0.9419007380492985,0.5223469021730125,0.9876762912608683,-0.8400043775327504,-0.283443009480834,-0.4639156945049763,0.9420564761385322,-0.9629097552970052,0.6390463374555111,0.20261871069669724,0.4600309720262885,-0.45947157545015216,-0.35021492280066013,-0.2167847491800785,0.15631336392834783,0.3850797018967569,0.801642713136971,0.9660952924750745,0.3421880006790161,0.2015799656510353,0.6964913462288678,-0.0009045451879501343,0.2853442635387182,0.11256687203422189,-0.539504487067461,-0.5112420450896025,-0.5283432905562222,-0.6191864674910903,0.6357817822135985,-0.08690241491422057,-0.6110459440387785,-0.9057518201880157,-0.4995956737548113,-0.8352499231696129,-0.9920254023745656,0.7126882714219391,0.43282833881676197,0.7765270196832716,-0.22234470630064607,-0.11047922261059284,0.9294242304749787,0.2825738270767033,-0.8334983284585178,-0.7403082391247153,-0.17320026690140367,-0.6915157763287425,-0.034653918351978064,-0.6949256113730371,-0.6618976341560483,0.6915221977978945,-0.35907414834946394,-0.06030665570870042,-0.04130090493708849,-0.14115725876763463,0.908188717905432,0.6584884943440557,0.7756030168384314,0.6589069031178951,0.957775617018342,-0.03301156125962734,0.950478324200958,-0.1874321079812944,0.9912435878068209,-0.49442471843212843,-0.9581434638239443,0.9784661675803363,-0.20190287847071886,-0.4659498925320804,-0.25930276419967413,0.1312881144694984,-0.074408536311239,-0.4968688949011266,0.6921345614828169,-0.9599373270757496,0.4449649262242019,-0.9633649615570903,0.8039961480535567,0.4095797217451036,0.7292643808759749,0.6382853905670345,0.8758399318903685,0.9360941331833601,0.20602615736424923,-0.6420180406421423,0.2609680211171508,0.5338345100171864,-0.8065666193142533,-0.9283659076318145,0.04795605316758156,0.6227363054640591,0.37758895847946405,0.41468355152755976,0.3909495295956731,-0.02527909865602851,-0.17150636529549956,-0.2022392745129764,0.693976922892034,-0.13633974641561508,-0.8128476026467979,0.8115174281410873,-0.617655482608825,-0.578591690864414,-0.15837049158290029,0.2888703113421798,0.9331314559094608,0.9062760616652668,0.6788541525602341,-0.07321040984243155,0.9241106808185577,0.18880876852199435,0.23159881541505456,0.9341617994941771,0.9490173091180623,0.5622063195332885,-0.9937779069878161,0.7176456935703754,0.7687883009202778,-0.4966753958724439,-0.8591576293110847,-0.5602194801904261,-0.4195061237551272,0.27541970973834395,-0.6156043382361531,-0.1130376816727221,-0.4082512888126075,0.05448910687118769,-0.8887366750277579,0.3774480316787958,0.26203363528475165,0.4943180689588189,-0.5649228622205555,0.38200367987155914,-0.5299048633314669,-0.6748231132514775,-0.870817722287029,0.944790555164218,-0.7300192015245557,0.4979239907115698,-0.11324020521715283,-0.5606055739335716,-0.9557401593774557,0.5289092296734452,0.1109799356199801,0.9187822849489748,0.2021683449856937,-0.38126201974228024,0.26677498361095786,-0.6349355336278677,0.7786244032904506,0.18530777795240283,0.5514609087258577,-0.8215957279317081,-0.7147330841980875,0.3662649313919246,-0.0023707649670541286,-0.034068671986460686,-0.330931365955621,0.6433445606380701,0.16191668761894107,-0.49533576192334294,-0.5839597792364657,0.06110757403075695,-0.7565319584682584,-0.7814939431846142,-0.27250135876238346,0.11516111856326461,-0.19915682915598154,0.04631124110892415,0.1129050045274198,-0.5563249439001083,0.7609393480233848,0.6764984969049692,0.4582265359349549,-0.06017333036288619,0.49394689314067364,0.6229372918605804,-0.9574034488759935,-0.4431576821953058,-0.6333875306881964,0.7937005907297134,0.1626262292265892,-0.4019935945980251,-0.04759314237162471,0.8455323711968958,0.6832515578716993,-0.024128366261720657,0.740971542429179,0.3628818397410214,-0.07301697507500648,0.31352396216243505,-0.88336251815781,-0.012585163582116365,-0.6446376154199243,0.6670246748253703,-0.42785013653337955,-0.3159211906604469,-0.19447982776910067,0.12200607499107718,0.8765608090907335,-0.003911707550287247,-0.11954529397189617,0.4891054406762123,-0.4704909063875675,0.6030241828411818,0.270799879450351,-0.911201648414135,-0.6304153688251972,-0.8200293676927686,-0.11714445194229484,0.5904316939413548,-0.21846315264701843,0.4347824100404978,-0.0026627155020833015,-0.5655502579174936,-0.4605159140191972,0.5415746048092842,-0.19506925344467163,-0.7637461796402931,-0.7920650797896087,-0.7840487030334771,-0.61860480485484,0.6915216641500592,-0.5119901364669204,0.9082635096274316,-0.938007730524987,-0.4198851380497217,-0.478884557262063,-0.33816559705883265,-0.24308260343968868,0.13907154882326722,-0.9265611139126122,0.693800738081336,0.7078391350805759,0.5625396543182433,-0.7352785891853273,-0.30816165218129754,-0.9872845867648721,-0.9783504707738757,-0.8882568245753646,-0.8861007941886783,0.869028499815613,0.3885665712878108,0.949566148687154,-0.7203347273170948,0.9851429602131248,-0.4124475088901818,0.17403869703412056,-0.7982175387442112,-0.5397613919340074,0.5386895961128175,0.12531238747760653,0.6427970263175666,-0.2126682586967945,0.47679889015853405,-0.3748783734627068,-0.1397958379238844,-0.20075451815500855,0.746328504756093,0.1365572609938681,-0.7885218840092421,0.8435144796967506,-0.21854043379426003,0.7977474466897547,0.7137946495786309,-0.9020597999915481,-0.3005826626904309,0.27345021069049835,-0.35179001931101084,0.039097384084016085,0.7707497677765787,0.26574962632730603,0.984706531278789,-0.9955232464708388,-0.6910800668410957,-0.6472124494612217,0.853884506970644,-0.9917386444285512,-0.7795627792365849,0.8714369875378907,-0.9856207403354347,-0.16816269978880882,-0.5415126238949597,-0.7620819164440036,0.9807067359797657,0.35308069828897715,-0.09375047078356147,0.35401856200769544,-0.8191887317225337,-0.2021403107792139,0.02501733973622322,-0.008417858276516199,0.14897049963474274,-0.4685819782316685,-0.8384339441545308,-0.06589408358559012,-0.05563622899353504,0.6798719833604991,-0.9686419442296028,-0.970308403018862,0.6598492749035358,-0.62832161039114,-0.23354123393073678,-0.8252184861339629,-0.18966509215533733,0.4662494664080441,-0.2563920170068741,0.5093427556566894,-0.4242465100251138,0.2515544821508229,0.6994193866848946,-0.8873539082705975,0.937527715228498,0.3490671133622527,0.03186024259775877,-0.8888473683036864,-0.6911016292870045,-0.8030898002907634,0.07893076213076711,0.03541009919717908,-0.49031003657728434,0.09961939277127385,0.9540496692061424,-0.04251146083697677,-0.41910968301817775,-0.7565543833188713,-0.7664183028973639,-0.3872715230099857,0.9813477955758572,-0.06623319117352366,0.05719086201861501,0.031766573898494244,-0.4375708228908479,-0.24229760840535164,-0.9747813241556287,0.5700255078263581,-0.01845797197893262,0.5360728134401143,0.9319361001253128,0.05157613381743431,-0.3798321420326829,0.1281100702472031,0.871886236127466,-0.8449746216647327,0.42362347850576043,0.9879287993535399,0.9018916869536042,0.9631215608678758,0.923831804189831,0.9872701014392078,-0.7002415983006358,0.7978745070286095,0.5639483095146716,0.41286973049864173,-0.3367596440948546,0.44887619372457266,0.44228485878556967,0.39593873964622617,0.5553989843465388,-0.9303951896727085,0.7744896565563977,0.02290461864322424,0.8090341929346323,-0.20819846307858825,-0.8415348157286644,-0.15994476433843374,0.829484838526696,-0.05004795687273145,-0.2770012649707496,-0.04476501839235425,0.5481225796975195,-0.7381888423115015,0.7782741840928793,0.09734288416802883,-0.41878665890544653,0.3104634094052017,-0.11676851008087397,-0.2459325296804309,0.19042539410293102,0.6988516221754253,0.46191652584820986,0.14365318790078163,-0.4834618140012026,0.33849113062024117,-0.585092683788389,0.31099011190235615,-0.5885947817005217,0.4893615976907313,0.2834083051420748,-0.9990956005640328,0.3132417988963425,-0.6031462652608752,0.5849534347653389,-0.48688112013041973,-0.11688803881406784,-0.30780082335695624,-0.9037981759756804,0.8350699036382139,-0.728751627728343,0.08460385352373123,-0.25737690879032016,-0.9826412186957896,-0.10616509476676583,0.7347568678669631,0.994280700571835,0.16235239757224917,0.4579591159708798,0.6468744133599102,-0.36180681455880404,0.9081016671843827,-0.8323946739546955,0.5788913848809898,0.7721379674039781,-0.5759843015111983,0.6388820642605424,-0.31349374493584037,0.1517106555402279,0.6762790596112609,0.6297110295854509,0.9308426463976502,-0.36201200215145946,-0.4796846932731569,-0.9652807875536382,0.3464895128272474,0.373516165651381,0.8796049803495407,-0.8828393444418907,-0.017060202546417713,0.835641348734498,0.040997014846652746,-0.150494578294456,0.0959816500544548,-0.4463668675161898,-0.25500189373269677,0.30387399485334754,-0.5053651346825063,-0.15689896745607257,0.1492886282503605,-0.016774564515799284,0.9019286120310426,0.4606837760657072,0.059291896875947714,-0.060214545112103224,0.801725756842643,-0.7583790849894285,0.5199573938734829,0.3982890173792839,-0.2379257520660758,0.8336308859288692,0.6250430000945926,-0.7718673199415207,-0.004662031307816505,-0.2944272276945412,0.8496333793736994,0.5265921163372695,-0.6051120301708579,-0.4578484520316124,-0.0682248342782259,0.0850454131141305,-0.8313359222374856,0.32832940062507987,0.707491644192487,0.0030901762656867504,0.08218162972480059,0.20035012578591704,0.5615669218823314,-0.22995905997231603,-0.49080484500154853,-0.18738383939489722,-0.6904680617153645,-0.8397521995939314,0.377048856113106,-0.38386665657162666,-0.495392344892025,-0.5001557283103466,-0.2875139182433486,-0.9614686290733516,-0.7388726291246712,-0.9024616209790111,-0.3805807060562074,0.13689441373571754,0.995215767994523,-0.8959049158729613,-0.11405436927452683,0.035759502556174994,0.5843110154382885,0.6905485773459077,0.2172258091159165,0.26812658878043294,-0.5859000976197422,0.27705043694004416,0.684840158559382,-0.9502113861963153,0.9937540357932448,-0.7922830646857619,0.4790311371907592,-0.47246867837384343,-0.3914241245947778,0.2556030540727079,-0.6857602233067155,0.002391745336353779,0.7187449224293232,0.09525519469752908,-0.8129293406382203,-0.3779516560025513,0.35358763625845313,-0.17885466059669852,-0.042870952282100916,0.7238278957083821,-0.7182157365605235,0.6599497576244175,-0.45059023750945926,0.7179698715917766,0.9474232057109475,-0.841326295863837,-0.20504632871598005,-0.23843593336641788,0.7612142977304757,-0.6621391926892102,0.7369137364439666,-0.5872640660963953,-0.22670624824240804,-0.6015566163696349,-0.6935181468725204,-0.6700101736932993,-0.06343040289357305,0.9082731772214174,0.6402443801052868,-0.5354865472763777,-0.4859216338954866,0.7348672058433294,-0.39219572860747576,-0.9128258475102484,-0.7829820574261248,0.013717283494770527,-0.4260028041899204,0.9703225740231574,-0.32766909431666136,0.5117911947891116,-0.3767012460157275,-0.9785598735325038,0.6520786574110389,0.9767977488227189,-0.10216823779046535,-0.26992157800123096,-0.7923623840324581,-0.6765529219992459,-0.6920172884128988,-0.9083416848443449,-0.8709952794015408,-0.17885110387578607,0.2012043404392898,0.8774077529087663,-0.43974798265844584,0.9519801614806056,-0.9277172954753041,0.13787765288725495,-0.6039545270614326,-0.1809752038680017,0.43948935624212027,0.07955368934199214,-0.06812459975481033,0.17217551171779633,0.09313659509643912,-0.5576433823443949,-0.10292247496545315,0.4399170815013349,-0.7338586864061654,-0.06425599101930857,0.09297855012118816,-0.6776196574792266,-0.8927300744690001,-0.8058539810590446,-0.12815447244793177,0.7316127098165452,0.8214069814421237,0.41776502365246415,-0.7070304490625858,0.7183509944006801,0.22549562249332666,0.7609802740626037,-0.28295206651091576,0.31996157532557845,-0.8387045338749886,0.5244353325106204,0.8715212820097804,0.104617178440094,-0.13482936238870025,0.8852776493877172,0.7335357828997076,-0.5302836853079498,-0.9648959143087268,0.5796254961751401,0.5091626020148396,-0.14372366527095437,-0.695118666626513,-0.616033764090389,-0.7315183375030756,0.2078000153414905,0.8816674216650426,-0.04072719719260931,0.329305041115731,0.4576834440231323,-0.7362019140273333,0.7012436911463737,0.09964280016720295,-0.47978524398058653,-0.6030526305548847,-0.4530859161168337,-0.14170246804133058,-0.9807516462169588,0.623130647931248,0.1136455275118351,0.528705736156553,0.5941844866611063,0.44252418214455247,0.9963249089196324,0.27973027527332306,0.28877212619408965,0.9061796376481652,0.9987595556303859,0.6847206777893007,0.9282914926297963,-0.6643457398749888,0.26728556444868445,0.47280533285811543,-0.47613546811044216,-0.5926193594932556,0.2552653234452009,0.3617968950420618,0.3147178031504154,-0.9687088895589113,-0.655326318461448,-0.9348490252159536,-0.7345698340795934,0.6781295142136514,-0.39905138965696096,-0.7152797682210803,0.6556233540177345,0.7363167013972998,0.6557805216871202,0.11273624608293176,0.08748468291014433,-0.42023310251533985,0.9175005671568215,-0.9791723149828613,-0.33925000112503767,-0.8647443084046245,-0.21015940513461828,-0.7484275698661804,0.7391953920014203,-0.9963214253075421,-0.34621571097522974,0.7676394409500062,-0.6736124353483319,0.7819747519679368,-0.5508619910106063,-0.5951657807454467,0.33570300694555044,0.16925159562379122,-0.4481805618852377,-0.10234720958396792,0.45298704970628023,-0.5813408461399376,0.32201058650389314,0.8706878237426281,0.10338921518996358,-0.8724274355918169,0.6416861447505653,-0.2482833554968238,0.11142718559131026,-0.19496411876752973,0.8547639194875956,0.05074310349300504,-0.6263617789372802,0.22836025338619947,-0.8073129178956151,0.3622609134763479,0.5691596902906895,0.3553909044712782,0.05533284367993474,-0.4997781543061137,0.7210759804584086,-0.6499044368974864,-0.3027354907244444,-0.6436047665774822,0.5611635139212012,-0.3587102126330137,0.9458424863405526,0.8919468815438449,0.7193942042067647,-0.8665839238092303,-0.13221982400864363,-0.6953209387138486,-0.8256225977092981,-0.4934291895478964,-0.2865829523652792,-0.36306276312097907,0.42921067494899035,-0.8664117930456996,-0.608279428910464,-0.03279207553714514,0.5374788204208016,0.48180691385641694,-0.9671663860790431,0.7644411725923419,0.3273929450660944,-0.17356062680482864,0.739099804777652,-0.6008867309428751,0.23530511977151036,-0.2853342304006219,0.9790448918938637,0.821467989590019,-0.9826058046892285,-0.6034537027589977,-0.22696347068995237,-0.26884120516479015,0.8810034710913897,0.5008838186040521,0.16252854280173779,0.07381873670965433,0.10732756555080414,0.5349539909511805,0.8049973337911069,0.5339759974740446,-0.6109905834309757,-0.9826029660180211,-0.02119382657110691,0.24593721982091665,-0.27649289555847645,0.2198150772601366,0.18932032212615013,-0.3813881906680763,0.5654972470365465,-0.1275739734992385,0.9131549741141498,0.356741217430681,0.06757504399865866,0.6702593103982508,0.608783274423331,0.7181613119319081,0.0474371905438602,-0.1715967389754951,0.3136896248906851,0.0791746461763978,0.0948935984633863,0.27158199856057763,-0.9222878483124077,0.6183642200194299,-0.4247012180276215,0.5688491025939584,-0.6229931288398802,-0.5186822093091905,0.47301460476592183,-0.20141075318679214,-0.7813850375823677,0.862285312730819,0.28742734948173165,-0.5302463420666754,0.8516918080858886,-0.061789780389517546,-0.9389215297996998,-0.23615295719355345,-0.6827581189572811,-0.8275929372757673,0.189804594963789,0.09479432366788387,-0.2317173038609326,0.4021581569686532,-0.1575589277781546,-0.2775488654151559,-0.6711224592290819,-0.3889726954512298,0.16104102740064263,0.5672739678993821,0.41386175993829966,-0.5268856869079173,0.018978441134095192,-0.6362131228670478,-0.9794109533540905,0.9036273136734962,0.8420137343928218,-0.42001772951334715,0.5846988842822611,-0.7562311049550772,0.06423614453524351,0.015924703795462847,-0.9495998537167907,-0.5205411054193974,-0.5402649352326989,-0.42215702263638377,0.43706240877509117,-0.042593068443238735,0.05848891893401742,-0.08637188328430057,0.2718152906745672,0.1807847935706377,0.19477780302986503,-0.5802181828767061,0.34929864993318915,-0.8791313855908811,-0.19675943348556757,-0.7870689406991005,-0.8303583348169923,-0.2672095871530473,-0.190558357629925,-0.5627199271693826,0.17463574651628733,-0.13184838742017746,0.8990384535863996,-0.23559548053890467,-0.9981664191000164,-0.11721740756183863,0.3196327849291265,-0.9370148545131087,0.5097631393000484,-0.14638864994049072,0.5081859370693564,0.643119684420526,0.8372835940681398,-0.5729490681551397,0.0820300281047821,0.9399812864139676,-0.5715445778332651,-0.657389513682574,-0.7658145381137729,-0.3472524341195822,0.39697629399597645,-0.08012748090550303,0.5523822735995054,0.9669432146474719,-0.9449509996920824,0.7301716711372137,-0.7484667841345072,-0.29552334267646074,-0.6110462020151317,0.17697792081162333,0.2342575159855187,-0.375927546992898,-0.4236346506513655,-0.18631287338212132,0.7317647733725607,-0.6232857988215983,0.4674276541918516,-0.059860410168766975,-0.15467089135199785,-0.7142829345539212,0.32758297165855765,0.030630302149802446,0.9744727765209973,-0.7173794531263411,0.47315665800124407,0.3484364249743521,0.3587321611121297,0.36728805024176836,-0.5176688772626221,-0.870285626500845,0.3864652141928673,0.4582939948886633,-0.8054484748281538,-0.9245239589363337,-0.7228854466229677,0.39878141274675727,0.1562408790923655,-0.5240381779149175,-0.4364084880799055,-0.4314448838122189,-0.05911230109632015,-0.5617292197421193,-0.912740564905107,-0.40310846036300063,-0.5591405238956213,0.30537828989326954,-0.16400573076680303,-0.3309229416772723,-0.9817943102680147,-0.38885320303961635,-0.6931383963674307,0.44593726797029376,-0.17635561246424913,0.3729520314373076,0.29655834194272757,-0.2726755985058844,-0.29838111251592636,-0.44961292762309313,0.8060767841525376,0.43926775408908725,0.13659092877060175,-0.982085729483515,0.2770164282992482,0.5907859313301742,-0.4066706383600831,0.9149573617614806,-0.033318211790174246,0.8611228638328612,0.655607370659709,0.09056389145553112,-0.6097033177502453,-0.5962347411550581,-0.8962904429063201,0.22281784191727638,-0.44526394037529826,0.7439326564781368,0.33824999537318945,0.7398319644853473,0.17695487570017576,0.30153085477650166,0.42232078127563,-0.12409450160339475,0.7617526473477483,-0.7039768239483237,-0.5275470037013292,0.04651028709486127,0.2935535195283592,0.4216526811942458,0.5183187494985759,-0.05858455551788211,-0.8007667069323361,0.4019997827708721,-0.8194206641055644,0.6076817405410111,0.5332211218774319,-0.3937748041935265,-0.7526609748601913,0.030172820668667555,0.30638661282137036,-0.00700576463714242,-0.1810422227717936,-0.9227255983278155,-0.6423608958721161,-0.09172087628394365,0.9270808701403439,0.4581284415908158,-0.9230243596248329,-0.3052875096909702,-0.18523056898266077,-0.6849531237967312,0.4216939425095916,0.1818882254883647,-0.8686749362386763,0.326718145981431,0.2871144497767091,0.5970654678530991,-0.8459381065331399,0.8848834815435112,0.2107496107928455,0.6129699852317572,-0.1755657708272338,0.1581361312419176,-0.5065472545102239,-0.4970799349248409,0.5655717859044671,0.5545287830755115,0.9237206294201314,0.7053118129260838,-0.8787071793340147,-0.7288193409331143,0.2956520072184503,-0.987647311296314,-0.531798574142158,0.9415915505960584,0.004744273144751787,-0.9810269474983215,-0.057529224548488855,-0.5393627267330885,-0.708456655498594,-0.6961573171429336,-0.8915654267184436,-0.09880367340520024,-0.9997916594147682,0.3259230675175786,0.871564261149615,0.2554013216868043,-0.7875343994237483,0.11167848110198975,-0.03448145743459463,0.9490428576245904,0.5929425060749054,0.43910794518887997,-0.47078735940158367,0.5919220899231732,0.8730247896164656,-0.6905757188796997,-0.25821164669469,0.5667211194522679,0.8606405584141612,-0.3959666835144162,0.8460302362218499,-0.23446020670235157,-0.34505009604617953,-0.8619166896678507,-0.39856404066085815,0.820144094992429,-0.6740778698585927,-0.9804827552288771,0.8493745760060847,0.9774827477522194,-0.6066132383421063,-0.10090892249718308,-0.19636819511651993,0.9565707203000784,0.6362475291825831,-0.4486379660665989,-0.5593528933823109,-0.599593723192811,0.16218221094459295,-0.8647567830048501,0.3422921830788255,0.5247086030431092,-0.83067412301898,0.02133027371019125,0.37470761500298977,0.9940926958806813,0.6622423473745584,0.6678225332871079,0.35620868718251586,0.009214663878083229,-0.014964006375521421,-0.5271441056393087,0.7613043300807476,-0.5079521676525474,0.832616105210036,0.7323215664364398,0.4042508518323302,0.7448361646384001,0.7068387102335691,0.21983248926699162,0.44638833589851856,-0.336339286994189,0.8593497984111309,-0.667283923830837,-0.1655054772272706,-0.11918918136507273,-0.3646424878388643,-0.17625704174861312,-0.6430216124281287,0.9964659586548805,-0.9874470024369657,-0.8318477515131235,0.904399377759546,-0.4131421302445233,-0.3637018329463899,0.08473590621724725,0.04431421356275678,-0.7643954129889607,0.4008466135710478,-0.7715768190100789,-0.8024447062052786,-0.08317519258707762,0.7548044072464108,-0.780814959667623,-0.22103189025074244,-0.20084471348673105,0.8123702970333397,-0.0884487652219832,0.48904684092849493,-0.3312995983287692,-0.44725714810192585,0.9515878935344517,0.5620970739983022,0.6299532679840922,0.14405063120648265,-0.4710464468225837,-0.42035957146435976,-0.4670527232810855,-0.9062497802078724,-0.3013872718438506,0.039202950429171324,-0.15148776583373547,0.12824715254828334,0.6779881604015827,0.7851293310523033,0.23640326084569097,0.17870466550812125,-0.8386637787334621,-0.60910505335778,-0.4814538308419287,-0.4577152281999588,0.0030283164232969284,-0.20819599879905581,-0.13354961574077606,-0.019566277507692575,-0.570213473867625,0.7716771340928972,0.49272441770881414,-0.32886724546551704,0.4726441213861108,0.7993385628797114,0.02729658456519246,0.11148681677877903,-0.5763747789897025,-0.13535527372732759,0.863685505464673,-0.17614152189344168,0.6428919332101941,0.654384302906692,-0.11552368476986885,0.36260517919436097,0.5999274183996022,0.15178010519593954,-0.007422598544508219,-0.783681099768728,0.5730773811228573,-0.27191425021737814,0.17789938813075423,-0.2436173320747912,0.6998134674504399,0.406858179718256,-0.3504578615538776,0.08513629017397761,-0.5780893238261342,-0.013519427739083767,0.8633567122742534,0.5654031620360911,-0.08974267961457372,0.7627599616535008,0.9230789938010275,-0.6565480092540383,-0.377071063965559,0.3168343077413738,0.8663075300864875,0.8584978212602437,-0.9416440990753472,0.4762868555262685,-0.9616874190978706,-0.2097275978885591,0.758545882999897,0.29189077066257596,-0.5564289172179997,0.4267125283367932,0.9554309672676027,-0.07409773953258991,-0.567910912912339,-0.4988012439571321,-0.5725133726373315,-0.2913875230588019,0.7582980571314692,-0.6837755646556616,-0.7210009410046041,0.8204558719880879,0.46763796638697386,-0.02645061444491148,0.933608288411051,0.08970663417130709,0.4422847544774413,-0.29317138995975256,-0.41006604256108403,-0.31209611939266324,0.7754043871536851,-0.9999418361112475,0.12664018338546157,0.8434137445874512,-0.23655456118285656,0.8643011255189776,-0.5357757126912475,-0.6558450669981539,0.33051612274721265,-0.832538771443069,-0.1900501251220703,-0.20646049547940493,-0.4233611188828945,0.28580069774761796,0.2547085518017411,-0.9995484920218587,0.8727984060533345,0.20632039615884423,-0.3665170967578888,-0.7365007717162371,-0.6970373480580747,0.9524758281186223,0.6502091167494655,0.9275794569402933,-0.7664176719263196,-0.04332236014306545,-0.8914183583110571,0.5709804617799819,-0.19833107106387615,0.3400164833292365,0.6397463534958661,0.5765019836835563,-0.6757600796408951,-0.872289608232677,-0.06557381944730878,-0.6811472955159843,-0.4156241794116795,0.18327062670141459,0.49856006214395165,0.657102485653013,-0.1913479077629745,-0.7777834474109113,0.4282410852611065,0.09209081484004855,-0.3821401367895305,-0.9569091941229999,0.29025336215272546,-0.30060874857008457,-0.007428484037518501,0.7052506846375763,-0.4435658655129373,-0.9351089773699641,-0.09130087913945317,0.09722670633345842,-0.0024938909336924553,-0.631404337938875,-0.48581297090277076,0.4798377612605691,0.5122564053162932,0.815612455829978,0.17019196273759007,0.9887081030756235,0.7886146157979965,0.4155128747224808,-0.6817367649637163,0.8733745361678302,0.363753376994282,-0.9392847623676062,0.31278902385383844,0.0019442797638475895,0.9800241240300238,-0.8233924573287368,-0.7966134799644351,0.267881253734231,0.2870163512416184,-0.2767002838663757,-0.15461627580225468,0.7727775909006596,-0.5673882123082876,-0.22764874948188663,0.914564005099237,0.20251666940748692,0.571363115683198,-0.7437410913407803,-0.2266975766979158,-0.14274176908656955,-0.9231603792868555,-0.42276475531980395,-0.6665493454784155,-0.7148739309050143,0.5989003241993487,-0.8382594767026603,0.6004985719919205,-0.6304599889554083,-0.4069613763131201,-0.10621426301077008,0.040819390676915646,-0.3568336102180183,-0.6869775815866888,0.23666044929996133,-0.3476444729603827,-0.44453741190955043,-0.5128134032711387,-0.022526727989315987,0.5570621313527226,-0.5247207852080464,-0.8996114647015929,0.3918471788056195,-0.6144242268055677,0.3350749220699072,0.45461430167779326,0.8648526449687779,0.7501449869014323,0.14438805216923356,0.5488830450922251,0.4207146936096251,0.9136613868176937,-0.9567388319410384,-0.05159113649278879,-0.26598619017750025,-0.8556513492949307,-0.6387992817908525,-0.7536354376934469,0.26582416286692023,-0.8965819701552391,0.9790490171872079,0.11967413453385234,0.9677997478283942,0.2899200371466577,-0.003856637980788946,-0.24271689215674996,0.8580639576539397,0.21900731045752764,-0.45483117224648595,0.7802083967253566,-0.39591543935239315,0.17426559096202254,0.945641256403178,-0.7259332067333162,-0.48099360102787614,-0.2827347000129521,-0.7227339809760451,0.8152875858359039,-0.7571183396503329,-0.5925983265042305,-0.699388294480741,-0.7531942608766258,-0.17752842186018825,-0.4888770943507552,-0.8791712797246873,0.37388053024187684,-0.29681837651878595,0.4257283080369234,0.7388049503788352,-0.034590108320117,0.010584053117781878,-0.3263756171800196,-0.8227752302773297,0.6658793417736888,-0.7054513110779226,-0.5804424351081252,-0.3076178818009794,-0.5283775916323066,-0.7754008653573692,0.21371255861595273,0.905039913021028,-0.7732608998194337,-0.7256178045645356,0.2333852075971663,0.0089447982609272,0.8463902189396322,-0.06003564456477761,0.23970044823363423,0.7959454292431474,0.9975329544395208,-0.9691996541805565,-0.39483108138665557,0.7541626910679042,-0.4246571585536003,-0.24228820484131575,-0.7844684319570661,0.8711306136101484,0.45882473001256585,-0.8590694516897202,0.7515604388900101,-0.4851935924962163,0.6358184171840549,0.6452311077155173,-0.17363447416573763,0.5952626569196582,-0.7233037506230175,-0.7921900269575417,-0.6856949864886701,0.9677658984437585,-0.2510489532724023,0.9918244346044958,-0.2532363231293857,0.4840864376164973,0.14168038591742516,-0.5498478463850915,-0.9849683721549809,0.17985815228894353,-0.419131878297776,-0.8154284958727658,-0.1076442333869636,-0.1922930059954524,0.45845962641760707,-0.5251098978333175,-0.44197572162374854,0.37312287744134665,0.7390675796195865,-0.6573918825015426,-0.6873240694403648,0.11105680465698242,-0.42853178596124053,-0.7423619152978063,0.7173199970275164,0.17252094391733408,0.7267498830333352,-0.642879809718579,-0.02307699481025338,-0.514633921906352,-0.44537427462637424,-0.5990425497293472,0.6846195836551487,0.5686650057323277,0.6246059713885188,-0.625819431617856,-0.15402404451742768,-0.641287253703922,-0.02734741009771824,0.34713378408923745,0.07529815565794706,0.6579423402436078,0.1583046531304717,-0.908894635271281,-0.03711313847452402,0.08070591790601611,-0.9317564037628472,-0.9734823917970061,0.0716825369745493,-0.09990833513438702,-0.7516180272214115,0.1399416234344244,0.045359560288488865,0.8260110151022673,-0.8014868218451738,-0.9871252253651619,-0.16109341382980347,0.6394429220817983,0.8926764540374279,-0.07365393731743097,0.955235165078193,0.9757503354921937,0.5899466471746564,-0.2993270605802536,-0.4080687859095633,-0.8014518148265779,-0.7903968724422157,-0.5801608148030937,-0.9577575619332492,0.7858184208162129,-0.7904610256664455,0.9028222085908055,-0.5111839384771883,0.05864666076377034,0.74741723947227,-0.4724642741493881,0.2577678607776761,-0.601533847860992,0.19915526919066906,0.4158599409274757,0.6038563847541809,-0.33335155341774225,-0.9490137156099081,0.15381437866017222,-0.48676270991563797,-0.9111907975748181,-0.20830940501764417,0.34751639515161514,-0.8204704034142196,-0.28670596284791827,0.5175218628719449,0.8174262042157352,-0.05532979127019644,0.9617314678616822,-0.18356886599212885,-0.8445093585178256,-0.5157673833891749,0.10041401255875826,-0.9691310040652752,-0.11398004554212093,-0.6434264397248626,0.3076695194467902,-0.6689883288927376,0.42432653717696667,-0.9937093928456306,0.16860763588920236,0.3483056086115539,-0.01392227504402399,0.5421915580518544,0.7628987855277956,-0.019795878790318966,0.9475133875384927,-0.6914662718772888,-0.6516413297504187,0.2751596746966243,-0.6456768540665507,0.06212929869070649,-0.8232085951603949,-0.10760341072455049,0.9526582295075059,-0.819032340310514,0.18043439742177725,0.406940208747983,0.5387436584569514,0.5858161095529795,-0.5060398476198316,-0.6471386286430061,-0.47744403313845396,-0.2383476155810058,0.3185639986768365,-0.07096004812046885,0.2081648209132254,-0.46616160264238715,-0.7034649341367185,-0.8393244161270559,0.6516029867343605,0.4121164600364864,0.7758845277130604,0.5926611544564366,0.3447784036397934,-0.013387232087552547,-0.7158089433796704,-0.5422344566322863,0.3913433840498328,-0.35903566842898726,-0.1514828414656222,0.285298943053931,-0.3048660419881344,-0.029207692947238684,0.872186329215765,-0.6404813104309142,0.7486554286442697,-0.8558421260677278,0.09856896568089724,0.6566027142107487,-0.18519508512690663,-0.6239079446531832,0.3398059024475515,0.38743907073512673,-0.06573008093982935,0.7472960907034576,-0.7959728050045669,-0.4450011742301285,-0.8230791375972331,-0.545274724252522,0.7717695268802345,-0.21068733977153897,-0.32028892543166876,0.45781657798215747,0.2546181231737137,0.08771423436701298,-0.530155532527715,-0.9527273317798972,0.3128429250791669,-0.2362538082525134,0.6749070934019983,0.5484907305799425,0.9019745890982449,0.1914246892556548,0.68158601783216,-0.4164404207840562,0.1442596879787743,0.46741665713489056,-0.016770959366112947,0.662693970836699,-0.46111279958859086,0.6333059421740472,-0.8193635167554021,0.7889963132329285,0.11069856164976954,0.9777881880290806,0.02194751240313053,0.10538452956825495,0.29807591112330556,0.7565740309655666,-0.3347979146055877,0.9690631376579404,0.06092037819325924,-0.48189350636675954,0.7272606729529798,-0.9766576434485614,0.18588615534827113,-0.23487718822434545,0.388989778701216,0.8209324739873409,-0.4072937429882586,0.5502264490351081,0.7396553982980549,-0.19057896547019482,-0.7633639094419777,-0.929123405367136,0.7133343298919499,0.00016739824786782265,-0.36331276781857014,0.08397959545254707,0.9212679411284626,0.6142359860241413,-0.5940203685313463,0.5562167931348085,0.044151600915938616,0.2806217623874545,-0.653137531131506,0.9070940283127129,0.4925920735113323,-0.9701083190739155,-0.8234641090966761,0.42898946441709995,0.12027178844437003,-0.11654279101639986,0.8685606624931097,0.32628469774499536,-0.554232485126704,0.19685861561447382,-0.35471980506554246,-0.08539029909297824,0.8833277244120836,-0.006562000140547752,0.7869302909821272,-0.4874117118306458,-0.075532051268965,0.5364704881794751,0.8366099940612912,0.5045849001035094,0.6219016332179308,0.11978826625272632,-0.6961172893643379,-0.2949953149072826,0.9802771038375795,-0.12237381981685758,0.6051959753967822,0.36228723637759686,-0.07044598134234548,-0.6117669995874166,0.7700817626900971,0.6806723973713815,0.031104867346584797,-0.9464934207499027,-0.32279228745028377,0.5950688077136874,0.5361274317838252,-0.17987435264512897,0.9723636535927653,0.14037975808605552,0.6909210816957057,-0.49971161177381873,-0.31019339384511113,0.2559340032748878,0.5858515994623303,-0.7759968480095267,0.9297973574139178,-0.37309782300144434,0.9213984659872949,0.2048080782406032,-0.9167631883174181,0.14240291947498918,-0.5989148151129484,-0.35918407002463937,0.1623329441063106,-0.08632802218198776,-0.4237058386206627,-0.8759952806867659,-0.1654218016192317,0.13845509570091963,-0.5212372727692127,0.44879825226962566,-0.06140334252268076,0.49125034734606743,-0.9376148246228695,-0.7011243579909205,-0.9954211842268705,0.9621208175085485,0.1552327568642795,-0.31054017785936594,0.9124499545432627,-0.7074263519607484,0.6966252736747265,-0.01970128621906042,-0.8431961429305375,0.47852172749117017,0.30001414800062776,-0.7192028695717454,-0.60804164968431,0.6956564150750637,0.292337482329458,-0.3930167481303215,0.3736632992513478,-0.8735644537955523,-0.9674930754117668,0.6738109071739018,-0.010282464325428009,-0.023704639170318842,-0.916771228890866,0.7861838857643306,-0.4913291446864605,-0.2666579019278288,0.16310127498582006,-0.047233378048986197,0.5013120248913765,0.05148132052272558,-0.02386391256004572,0.8864630120806396,0.23501254571601748,0.729787218850106,0.8124966882169247,-0.1435692673549056,0.1015033945441246,-0.3737537572160363,-0.27174318535253406,-0.4333118638023734,0.8429313153028488,0.7503505749627948,0.4356173565611243,0.794470127671957,0.10936373006552458,0.15104027884081006,-0.7139445273205638,0.5204736571758986,0.8437570366077125,-0.10482210339978337,0.7082369020208716,0.9724671300500631,-0.606687986291945,-0.5772144286893308,0.3705864744260907,-0.13495384249836206,-0.6759770917706192,0.6831152979284525,0.5362512399442494,0.7540301466360688,-0.7569647179916501,-0.09629025822505355,0.711665821261704,-0.4990241741761565,-0.5605124342255294,-0.4158292100764811,-0.15305375354364514,-0.2614456135779619,-0.23570168763399124,0.04317751573398709,-0.6723708501085639,-0.9913802808150649,0.14422361413016915,-0.4618193646892905,0.36866384698078036,0.2852835962548852,0.32212154753506184,0.43056302471086383,-0.4811703125014901,0.3775812266394496,-0.7558275838382542,-0.8614806728437543,-0.5611621453426778,-0.35884533589705825,-0.4617722537368536,-0.07202127575874329,0.06263379892334342,-0.14712588163092732,0.5559370410628617,-0.664997688960284,0.233656857162714,-0.8128650458529592,0.438827782869339,-0.9028996075503528,-0.43438662588596344,-0.5747212087735534,-0.813245807774365,-0.807894675526768,-0.7032540892250836,-0.3035320774652064,-0.9327902649529278,0.8334925444796681,0.5562105057761073,-0.7704689488746226,0.2732134643010795,-0.7250563730485737,0.48133221874013543,0.3872812669724226,-0.5671083685010672,-0.8348087016493082,-0.6797583978623152,-0.42565192375332117,0.5524161825887859,-0.26958917267620564,-0.3703570389188826,0.4245753395371139,0.9027575370855629,-0.3008259660564363,-0.7201248030178249,-0.5730065023526549,0.7221529171802104,0.3426410024985671,-0.6464631268754601,0.19758080877363682,-0.8340328158810735,0.5680606835521758,0.9701759866438806,0.811460591852665,-0.5131914657540619,-0.5407387376762927,0.5937549537047744,0.39794792607426643,-0.9571225834079087,0.7857226119376719,0.2511718785390258,-0.7534538935869932,-0.3340887171216309,-0.07915746420621872,-0.4945126101374626,-0.8279421352781355,-0.3972887797281146,-0.28012131061404943,-0.8880685204640031,-0.8701328267343342,0.38052008487284184,-0.6799858589656651,0.6977302762679756,0.26961393747478724,-0.6116218352690339,0.2916130553930998],"y":[-0.3023698930628598,0.23767604446038604,-0.24056781874969602,0.4585612206719816,-0.2877961788326502,-0.6979002878069878,-0.15261359186843038,-0.6536312438547611,0.4550326196476817,-0.26266613556072116,-0.19589855149388313,-0.5968082104809582,0.16092135151848197,0.4060905943624675,-0.4068828150629997,0.7632030858658254,-0.36853386322036386,-0.023114623967558146,-0.5151957320049405,-0.2878984995186329,0.36426092265173793,0.12952477345243096,-0.7286572712473571,0.9483236270025373,0.22435308853164315,0.3584433030337095,-0.9391500279307365,-0.9233192862011492,-0.9720321577042341,0.73085529031232,0.6176757328212261,-0.0920244068838656,0.45704091200605035,0.8217875761911273,0.650705820415169,-0.24733371892943978,-0.9362740241922438,0.32897318433970213,-0.9116810765117407,-0.7933350834064186,0.5289621497504413,0.18443167302757502,0.32370859710499644,-0.3611980685964227,-0.6337319165468216,0.3500162730924785,0.428521491587162,0.34931588266044855,-0.5467765578068793,0.40277799405157566,-0.32563135772943497,-0.03968715341761708,-0.6337919794023037,-0.6855720919556916,-0.45358141185715795,0.03071667905896902,0.9498728052712977,-0.4177025039680302,0.5897115445695817,-0.9120142827741802,0.149625183083117,-0.8481759489513934,-0.12374212173745036,0.244956667535007,0.20011528674513102,0.11568660102784634,-0.5781442411243916,-0.2757493145763874,-0.11906139878556132,-0.41711991326883435,0.3361680065281689,0.2761026727966964,0.4176057414151728,0.9142161998897791,-0.9505947483703494,0.5808671107515693,0.8293234147131443,0.07516423845663667,-0.3837401573546231,-0.37335407361388206,-0.7452973960898817,0.44697851361706853,-0.7158508240245283,0.3953510522842407,0.015987511724233627,-0.5887945373542607,-0.9857281348668039,0.20621450478211045,0.4085644609294832,-0.3268597018904984,0.29075902653858066,-0.8942991406656802,-0.5093335737474263,-0.5283287945203483,0.3987427628599107,0.11961717903614044,-0.6328518041409552,0.9763709306716919,-0.38591761700809,0.07253357442095876,-0.06540816184133291,0.9260553363710642,0.7647391809150577,0.9176293066702783,0.7884611417539418,-0.9482429441995919,0.04568354832008481,0.7027576509863138,0.5413735588081181,0.9164840006269515,0.17429658444598317,-0.9597566919401288,-0.4207146102562547,-0.09258113661780953,0.3715112376958132,0.26412847777828574,-0.9924038765020669,-0.018332250881940126,-0.9909989852458239,-0.5829940182156861,0.6308604436926544,0.16864515282213688,-0.34155255649238825,-0.4405828006565571,-0.21016295300796628,0.5153884449973702,0.3911446393467486,0.6415705685503781,0.31131352763623,0.6191166043281555,-0.31542040733620524,0.7016809643246233,-0.0893533960916102,0.14559938991442323,-0.38644563453271985,-0.5832901075482368,0.14226001221686602,0.05256350338459015,-0.32511942833662033,0.891359708737582,0.20184608129784465,0.2920292168855667,0.44185007084161043,0.653361183591187,0.3159621278755367,0.05869548674672842,0.11204958381131291,0.6269526667892933,0.22270272625610232,0.07342673791572452,0.7452741395682096,-0.4715917161665857,0.7954244501888752,0.7076731412671506,-0.5615043574944139,-0.8216336807236075,-0.0270287930034101,-0.016128618735820055,0.7525274022482336,-0.42241820599883795,-0.8643280621618032,0.011571543291211128,-0.03128682030364871,0.9342908347025514,-0.6323489025235176,0.7630997309461236,0.9608541401103139,0.5763603486120701,0.7155579146929085,0.6635315413586795,-0.31960741011425853,0.5399613506160676,0.4342568926513195,-0.765469629317522,-0.2122405543923378,-0.036847537849098444,-0.5438750060275197,0.547037567012012,-0.7356132105924189,0.32529308227822185,-0.5474483580328524,0.7549767955206335,-0.24254220398142934,-0.7762816566973925,-0.27287898724898696,-0.5850064819678664,-0.8536599357612431,0.5362593242898583,0.3392272610217333,-0.9145131334662437,0.03128300979733467,0.04938337579369545,-0.8836164744570851,-0.12696549436077476,-0.8043589545413852,0.03290972160175443,0.6531332349404693,-0.45441443752497435,-0.41692630760371685,-0.6982218394987285,-0.6194727681577206,0.45815894613042474,0.8095161425881088,0.4882924361154437,-0.19532617554068565,-0.38453727727755904,0.24037092132493854,0.4356864569708705,0.7269400451332331,0.00750117190182209,-0.07768487557768822,0.0038404264487326145,0.37669721245765686,0.04490874707698822,0.7868862301111221,-0.4799700230360031,-0.23149456502869725,-0.18693257495760918,0.2735658106394112,0.7022910066880286,-0.5148388775996864,-0.38451293716207147,0.5338241942226887,-0.05024650879204273,-0.03589690523222089,0.7666924358345568,-0.7582666547968984,-0.591200205963105,0.6655945917591453,0.6167805860750377,-0.9102271804586053,0.01189352897927165,0.21925314236432314,0.028500668238848448,0.9571399288251996,-0.27940178848803043,-0.5092426692135632,-0.09102981677278876,-0.16129403607919812,0.39513376355171204,-0.11736280424520373,-0.662957975640893,0.7918526800349355,-0.6679778504185379,-0.1093419436365366,0.6170733603648841,0.4402631279081106,-0.910563163459301,0.18797687161713839,0.08304859325289726,-0.5724503393284976,-0.3464515614323318,-0.1560052721761167,-0.9448333033360541,-0.13492050534114242,0.6298430203460157,-0.029544936027377844,-0.8226340510882437,0.2231483431532979,-0.13409362826496363,-0.6528118760325015,0.28353436943143606,-0.049921069759875536,0.8981532384641469,0.5399299305863678,0.421296676620841,-0.2209650077857077,-0.9223452489823103,0.8793483385816216,0.4746366487815976,0.01834213500842452,-0.22074874257668853,0.3555731475353241,-0.08425383595749736,0.01653492171317339,0.37457296531647444,0.8012985726818442,0.8397410558536649,0.8056845003738999,0.0879511097446084,-0.6887443610467017,-0.9035379914566875,0.39416094683110714,0.8821701328270137,0.07611096976324916,-0.4925777050666511,0.3588043977506459,0.8948962930589914,0.43581712944433093,-0.3180517782457173,-0.07453945837914944,-0.8035794119350612,-0.21216476475819945,-0.8263785936869681,0.17959079425781965,-0.7620170847512782,0.9778716862201691,-0.580639532301575,0.4598800903186202,0.36847651144489646,-0.48981100926175714,-0.10502012772485614,0.4633768671192229,0.989679325837642,0.6150550008751452,-0.7905554440803826,-0.3167622531764209,-0.24749032920226455,0.628906948491931,0.28765304759144783,0.7285778531804681,-0.10652844421565533,0.8118938212282956,-0.7034740382805467,-0.8760637296363711,0.06107888417318463,-0.20891257049515843,0.2662930809892714,0.08530091168358922,-0.5167141570709646,-0.38629509229213,-0.08718154160305858,0.40885282633826137,-0.1018492910079658,-0.1597360479645431,-0.25164796132594347,0.6786314877681434,0.45055230101570487,-0.09256120678037405,-0.2990318047814071,0.405676806345582,0.44033755734562874,0.07632650900632143,-0.2630892456509173,-0.7769837095402181,-0.38258084561675787,-0.33143195882439613,-0.8744731387123466,-0.9007994458079338,0.4498331635259092,0.36414266377687454,-0.43403548980131745,-0.9299928811378777,-0.13033373141661286,-0.6876715603284538,-0.37086268328130245,0.2283970955759287,-0.22836638195440173,0.8258539228700101,-0.7119743134826422,0.31876353407278657,-0.25709280697628856,0.732591356150806,0.8219489362090826,0.8037894829176366,-0.9574082526378334,0.9830655488185585,0.8675832520239055,0.007726140785962343,-0.03783504571765661,0.8315023127943277,0.07658423436805606,0.09279310423880816,0.3807341009378433,-0.5448931124992669,0.9826848274096847,-0.9764858772978187,-0.05674550263211131,-0.03526177303865552,-0.9390656151808798,-0.6754055926576257,-0.7341346782632172,-0.890685505233705,0.22048227582126856,0.25283572170883417,-0.05213796906173229,-0.7704352661967278,0.661765662021935,-0.33065301459282637,-0.11181980324909091,-0.6423344402574003,0.18479268718510866,-0.813844827003777,0.35642454819753766,0.09154362976551056,0.4834042633883655,-0.32552120089530945,0.4137624865397811,0.6394598642364144,0.009462624788284302,0.988461181987077,0.3362108184956014,-0.4834433631040156,0.07602207036688924,-0.6508281934075058,0.3086081501096487,0.8549748244695365,0.6060317256487906,0.15395981213077903,-0.5238486072048545,0.3220927291549742,-0.29501758655533195,0.5752926971763372,0.593765165656805,-0.055431324522942305,0.6560551621951163,0.9889948363415897,0.9042457547038794,0.9082836071029305,-0.15946556255221367,0.7665287903510034,0.5958771454170346,-0.9191569811664522,-0.8285521813668311,-0.5870369616895914,0.3232634770683944,-0.45126696210354567,-0.7115980018861592,-0.8360668546520174,-0.3907567295245826,-0.4893350386992097,0.2460182635113597,0.3243072791956365,0.9975091335363686,0.5041896644979715,0.1679936838336289,0.16564205009490252,-0.5787478317506611,0.22780119022354484,-0.5780690470710397,-0.6104883751831949,-0.8762747896835208,-0.9432876198552549,0.22505155066028237,0.4668639861047268,0.02558353217318654,-0.8304886650294065,0.5495592914521694,0.4212691057473421,0.08019564859569073,-0.6715244320221245,-0.7039904440753162,-0.5707689421251416,0.5940206153318286,-0.02905896632000804,-0.8291151956655085,0.33006237680092454,-0.03386077098548412,-0.9180748932994902,0.3366804728284478,0.3584157428704202,0.2772001884877682,-0.914887011051178,-0.5490458514541388,-0.74296616576612,0.5537709575146437,-0.5134482369758189,0.31478242529556155,-0.14482707250863314,0.1394504108466208,-8.315825834870338e-05,0.13451859168708324,0.4736163606867194,0.8300208118744195,-0.052166021429002285,0.2688441309146583,0.362994194496423,0.6847544414922595,0.9370581833645701,-0.8108105096034706,-0.5346789704635739,-0.6635840102098882,-0.8417841773480177,-0.6293623335659504,0.6302336761727929,-0.5088871391490102,0.871416499838233,0.6684374297037721,-0.2871074820868671,0.3771456223912537,0.8348260154016316,-0.7648457591421902,-0.8190976390615106,0.9726957315579057,0.024306875187903643,-0.046458903700113297,0.916672217193991,0.7172122672200203,-0.1691748844459653,0.12079889792948961,-0.8425704073160887,-0.5333911860361695,-0.21285583078861237,-0.23689835704863071,-0.08767682826146483,-0.587797892279923,0.533040018286556,0.12981046689674258,0.3257137294858694,-0.7595016802661121,-0.07332009728997946,-0.35191917419433594,-0.09553699102252722,-0.08226830791682005,-0.8193523911759257,-0.813851417042315,0.3986301217228174,-0.06300541758537292,0.19443119689822197,-0.9850571560673416,-0.6861071176826954,0.5144652151502669,0.6367777199484408,0.29645744571462274,0.17678839666768909,-0.16552073415368795,-0.8167283204384148,0.14576481794938445,0.6067545134574175,0.7927269604988396,-0.4755318840034306,0.4576608338393271,0.7183512952178717,-0.07993334159255028,0.4409901420585811,0.810840530321002,-0.1361158797517419,0.6296840040013194,0.7750258967280388,-0.9121245448477566,-0.1900767656043172,0.4332486162893474,0.47233649156987667,-0.2259185970760882,-0.030309677589684725,-0.7459267280064523,0.9783649072051048,-0.24349037697538733,0.6482399986125529,0.20444276323542,0.4897933304309845,-0.7957318550907075,-0.19601393025368452,0.18385154847055674,0.6781630627810955,-0.5263941460289061,-0.564515174832195,0.20727571425959468,0.2837552484124899,0.921630194876343,0.39273791341111064,-0.10400430019944906,0.6066812612116337,-0.3746085115708411,-0.7073158700950444,-0.4906214354559779,0.23604363948106766,0.7336356984451413,-0.306969007011503,-0.4497130694799125,0.11025806749239564,-0.9178298995830119,-0.5423285639844835,0.08564967103302479,-0.4266000068746507,-0.5641761170700192,0.8440901087597013,0.9586547473445535,-0.8362489612773061,-0.911875884514302,0.2577630151063204,0.6040140422992408,0.13445864198729396,0.00114098796620965,-0.47805464919656515,0.43969492753967643,0.12728378642350435,-0.8522901423275471,-0.4090336197987199,0.13059613201767206,0.04563854821026325,-0.32797270733863115,-0.6101193451322615,-0.9849078613333404,-0.4241279447451234,0.7379735498689115,-0.08079665945842862,-0.5169000793248415,0.9973804210312665,-0.6333026066422462,0.812931998167187,-0.8859319537878036,-0.3880517892539501,-0.13869470823556185,-0.07904860563576221,-0.40645247464999557,0.44525416288524866,0.5370193924754858,0.8219291330315173,0.47500075912103057,-0.9992181304842234,0.6966564035974443,-0.9316844679415226,0.496004996355623,0.07841830514371395,0.5568487346172333,-0.2467329315841198,-0.2475768830627203,0.26737493509426713,-0.02450150065124035,0.14457758842036128,0.2679256647825241,0.9386745952069759,-0.3794488306157291,-0.8342318329960108,0.7965839114040136,-0.4335969015955925,0.4200532026588917,0.9722052165307105,-0.45239472948014736,-0.4294038130901754,-0.375588315539062,0.5459080701693892,0.298507287632674,0.6325268535874784,-0.35486070858314633,0.47496226243674755,0.6205480606295168,-0.6063088602386415,0.34431411465629935,-0.6109152920544147,0.4194035674445331,-0.8549874629825354,-0.7781766634434462,0.06141473678871989,-0.7781342188827693,-0.6163129028864205,0.884748691227287,0.0194804142229259,0.9866691385395825,-0.7036364427767694,-0.7648299159482121,-0.5307749137282372,-0.5779459131881595,0.5238467762246728,0.8012652955949306,-0.8092966955155134,0.8003134783357382,0.200787375215441,-0.9502357989549637,-0.5457576517947018,-0.5664598695002496,-0.997105535119772,0.8742348584346473,0.5147275347262621,0.6769973305054009,0.34431643644347787,-0.1652647564187646,-0.835640168748796,-0.6223996165208519,-0.7592129739932716,-0.7436384907923639,-0.9423125269822776,-0.38351722341030836,0.08785139350220561,0.15317739360034466,-0.24697557324543595,0.16459616227075458,0.6434013512916863,0.8811912746168673,-0.6469683055765927,0.8907550610601902,0.19600486010313034,0.8558500376529992,-0.06556081352755427,-0.42708345875144005,0.2962725725956261,0.19606962706893682,0.4262923956848681,0.25026388140395284,0.7247421341016889,0.009561536833643913,-0.7487458544783294,0.6580582745373249,0.7972819870337844,0.638499584980309,0.7271830467507243,-0.2974530174396932,0.12114624166861176,0.7577524217776954,-0.17498185485601425,-0.5529389171861112,0.7100740359164774,0.7236598222516477,0.2208964335732162,0.07175375847145915,0.5958916139788926,-0.5583864520303905,-0.5145086664706469,0.31759847002103925,-0.3928621863014996,-0.9171103634871542,0.7963700192049146,-0.0056786141358315945,-0.9729324448853731,-0.028892583213746548,-0.6506543639115989,-0.8054653480648994,-0.38801489118486643,0.5785100874491036,0.27111887792125344,-0.7178867408074439,-0.5405026441439986,-0.6664493661373854,0.8136761742644012,-0.38021411933004856,-0.15660312585532665,0.31624819757416844,-0.7642516558989882,0.6044559674337506,0.05607020854949951,0.376212147064507,0.4942875439301133,0.850283270701766,0.12042925134301186,-0.33017443865537643,0.18356555281206965,-0.3490449348464608,0.6666315086185932,0.35879912972450256,-0.3324681892991066,-0.16444699140265584,0.8682695818133652,-0.6457773600704968,-0.4462669137865305,-0.27128065936267376,0.8693920164369047,-0.5661241388879716,0.6325321802869439,-0.35671088052913547,0.3186912164092064,0.9570445134304464,-0.6532620289362967,0.17381351767107844,-0.4918304467573762,-0.9741545943543315,0.6496607405133545,0.6259858696721494,0.3136251433752477,-0.7343545057810843,0.3914186917245388,0.1871276763267815,0.10727915447205305,0.6163691789843142,-0.24639732809737325,0.8490807116031647,0.20736035844311118,-0.6982262856326997,-0.5574036994948983,0.48835662053897977,-0.20592796057462692,0.5851297681219876,0.5256467084400356,0.2367395693436265,-0.12890027090907097,0.4003443280234933,-0.10951118357479572,0.34529558569192886,-0.9970235866494477,0.44713310757651925,0.6574367354623973,0.3483535419218242,0.8156590186990798,0.930646201595664,-0.26084446208551526,-0.6180266933515668,0.4815404578112066,0.17680956376716495,-0.29210328217595816,-0.7306926441378891,-0.9528534556739032,0.1891191857866943,0.5279944073408842,0.8118494064547122,-0.08788906084373593,-0.30571825755760074,-0.26245129527524114,-0.21635128604248166,-0.4641567775979638,-0.5195443634875119,-0.7874687393195927,-0.035155780613422394,-0.3751275078393519,-0.21558085270226002,0.6483925026841462,0.3909274567849934,-0.07185690104961395,-0.07911341823637486,0.9746692324988544,-0.7468223255127668,0.43836749577894807,-0.5496102883480489,0.4560532155446708,0.3187800752930343,0.368949634488672,0.48375880252569914,0.22201221948489547,0.6795922555029392,0.8826270587742329,0.05802013911306858,-0.6417143745347857,-0.7950515449047089,-0.8583390451967716,-0.9840864073485136,0.3374236165545881,0.24723013816401362,0.32611212180927396,-0.3734927298501134,0.57458834676072,0.16635913867503405,0.6246389257721603,-0.6299346084706485,0.6278185970149934,0.30367841152474284,0.09902323363348842,-0.33608471509069204,0.9093121960759163,0.6326503781601787,-0.04556838469579816,0.13329068711027503,0.7756571592763066,-0.4959691553376615,-0.8578651808202267,0.06473337300121784,-0.47840891825035214,0.5240148790180683,0.41444659186527133,-0.009475825354456902,-0.906236385460943,0.9471461428329349,0.6937336903065443,0.5252620298415422,-0.32724215881899,-0.4841146911494434,0.896740713622421,-0.37958739092573524,0.8104874636046588,0.7057369286194444,0.9656597003340721,-0.3650181172415614,-0.25893736351281404,-0.16433644155040383,-0.9599565546959639,0.32872681599110365,-0.5026390347629786,0.1638993783853948,-0.7743544271215796,-0.6958046141080558,-0.8683914011344314,0.7577508017420769,-0.18584279343485832,-0.6294418163597584,-0.6233478640206158,0.5350129827857018,-0.1364455483853817,-0.029210316948592663,0.8317841500975192,0.9730370799079537,-0.4558080928400159,-0.24932982306927443,-0.3711341703310609,0.9494315166957676,0.5165859218686819,-0.1526099629700184,0.7080147000961006,0.9186731390655041,-0.8178051821887493,0.8960007070563734,0.5227293907664716,-0.3513188357464969,0.9516430194489658,0.5901883509941399,0.9210855448618531,-0.4838263299316168,0.5946907340548933,-0.789511501789093,0.13763517420738935,-0.7350618992932141,-0.07341556716710329,0.0004133176989853382,0.4077780535444617,0.5649487944319844,0.5526926871389151,-0.20805083122104406,0.49729376332834363,0.7171661662869155,-0.0987595422193408,-0.1289382055401802,0.295879025477916,-0.8192886225879192,0.8202429083175957,0.20725517999380827,0.6953349630348384,-0.8668713108636439,-0.05822161817923188,-0.8142801937647164,-0.6157379797659814,-0.9245740748010576,-0.30623065447434783,0.3542691799812019,0.6582938432693481,0.0730199939571321,-0.28860141010954976,0.6445259903557599,-0.1467106589116156,-0.7992494534701109,0.321177308447659,0.769611744210124,-0.2072976641356945,-0.7774822693318129,-0.6580417482182384,0.028469316195696592,-0.1722647026181221,-0.23238030076026917,-0.48201487632468343,-0.9379277466796339,0.7434704164043069,0.5489183431491256,0.5669325469061732,0.7997474609874189,-0.547400014474988,0.9727855557575822,0.6327729667536914,0.21798489429056644,0.7944924375042319,-0.16131534473970532,-0.26723070396110415,0.6226870664395392,-0.5969375502318144,-0.5711981668137014,0.8537102742120624,0.375261680688709,-0.4361644657328725,-0.2533244346268475,0.8129825494252145,0.7319557210430503,0.09418119443580508,0.7739552217535675,0.8852744102478027,-0.48007895424962044,-0.01999805960804224,-0.9854403701610863,-0.08439166378229856,-0.8773210509680212,-0.7164265858009458,0.6658261911943555,0.2759253201074898,0.9111815844662488,0.7982891411520541,-0.27434813883155584,0.7655556104145944,0.6882968810386956,0.8428005133755505,-0.41369519801810384,0.6351563781499863,-0.358700823970139,-0.4569667847827077,-0.425753524992615,-0.42173824179917574,-0.2747961520217359,0.17425767751410604,-0.5567914256826043,0.18469320377334952,0.9817858468741179,0.22362933214753866,-0.5130687430500984,0.60382388997823,0.39940017741173506,0.03312348760664463,0.5834062290377915,-0.25658443477004766,0.9895622041076422,0.6173793179914355,0.0034154881723225117,0.9691145801916718,-0.9080484337173402,-0.6202409663237631,0.6646804953925312,0.19143775664269924,0.20479948073625565,-0.6371185868047178,-0.3587820418179035,-0.22975916881114244,0.9387138937599957,0.5612887819297612,-0.6530176405794919,-0.7649451806209981,-0.6347557106055319,0.8782161367125809,0.5831379885785282,-0.11532281246036291,0.3923235177062452,0.33151148026809096,0.7951687737368047,0.5300279716029763,-0.1257734172977507,0.9111902764998376,0.30560156470164657,0.7674652365967631,0.7002382674254477,0.8640025844797492,-0.37786439154297113,-0.7664387905970216,-0.9358928194269538,-0.14925929997116327,-0.6572775957174599,-0.05086547741666436,-0.7695341031067073,0.6918238066136837,-0.9371914826333523,0.1863886476494372,0.7511892858892679,-0.23710427805781364,-0.21952657029032707,0.2208668291568756,-0.07261328445747495,-0.7246692520566285,0.410935225430876,-0.7431182852014899,-0.14672246994450688,0.8773537278175354,-0.7128482721745968,-0.7181192613206804,0.8623986877501011,-0.06170097552239895,-0.36188165470957756,-0.8266900214366615,0.5355656612664461,-0.22427538689225912,-0.7295504659414291,-0.13304077042266726,0.678707042708993,0.9238554858602583,0.5819352422840893,0.6549940370023251,0.40933741722255945,-0.43540213257074356,0.2234765850007534,0.7269201227463782,0.5581220798194408,0.6285472493618727,-0.2600803207606077,-0.8794470196589828,0.8681707000359893,0.6613644557073712,0.0177668584510684,-0.7660879315808415,0.40001801308244467,0.2606997615657747,-0.7711504022590816,0.9907911261543632,0.024021665565669537,-0.5365309808403254,0.5006061480380595,0.11881331307813525,0.1075072861276567,-0.418607871979475,-0.2183714616112411,-0.6560092866420746,-0.6770005575381219,-0.5927433967590332,0.35445604380220175,-0.2621849924325943,-0.9023195370100439,0.8945258469320834,-0.3072803234681487,-0.15418275678530335,0.5603345283307135,-0.662970291916281,-0.38651505345478654,0.6067873872816563,-0.539455478079617,-0.9252895880490541,0.7031305832788348,-0.7037173341959715,-0.23006367310881615,-0.031453825533390045,-0.44331803685054183,-0.5149553655646741,0.3190964558161795,0.9717437024228275,-0.5078971507027745,-0.9299391582608223,0.974558315705508,0.6197121893055737,-0.9937452515587211,-0.6388141694478691,0.22733965748921037,0.12411622004583478,0.20384761923924088,0.6764837023802102,-0.6611165124922991,0.680250933393836,-0.6330739581026137,0.954120232257992,0.8214027984067798,-0.9452229081653059,-0.9470167844556272,0.8148224004544318,-0.21909608412533998,-0.6670109084807336,0.04451898438856006,-0.2638890785165131,-0.19280930189415812,-0.2932104719802737,0.26190395280718803,-0.7039411207661033,-0.5090461606159806,0.6007724399678409,0.6618615998886526,0.7673844597302377,-0.6966502284631133,0.8365796781145036,0.12406129390001297,0.8479015687480569,0.4685634090565145,-0.8964585061185062,-0.2055989564396441,-0.009258265141397715,-0.026688638608902693,-0.2901270370930433,0.031171894632279873,-0.5055218199267983,0.31625976506620646,-0.3965404680930078,0.46505014039576054,-0.6304357820190489,0.6108765956014395,0.7724371692165732,-0.8434975645504892,0.23298073606565595,-0.8857751218602061,-0.6617478332482278,0.8462261422537267,0.30775588611140847,-0.1106287301518023,0.8867842401377857,0.5302150514908135,0.8646105085499585,0.08432271331548691,0.8561394992284477,-0.6397957759909332,0.6838010116480291,0.9861089047044516,-0.5945931663736701,-0.9551040236838162,-0.4995961547829211,0.5064793517813087,0.6613302319310606,0.41118234349414706,0.4945680624805391,-0.35839823400601745,0.7184832929633558,-0.5486328536644578,0.10199264297261834,0.4470736891962588,-0.4710385836660862,-0.20354128256440163,-0.43604915076866746,-0.6177508481778204,-0.7689641565084457,-0.5182993011549115,-0.23103230400010943,0.22778581269085407,-0.288315593264997,-0.7641050470992923,-0.49741788813844323,-0.8692689007148147,-0.5514555987901986,0.3359249820932746,0.6833832557313144,0.6608781362883747,0.3715641819871962,-0.03539898432791233,-0.5415451279841363,-0.7194080399349332,-0.5374108329415321,-0.4578943927772343,-0.0432067378424108,0.03417411632835865,-0.9555963915772736,-0.6676388699561357,-0.16288280487060547,-0.7648769621737301,0.20347805740311742,-0.6419470896944404,-0.08003034023568034,0.05261885188519955,-0.9781975145451725,-0.3167410106398165,0.9413293888792396,0.961188348941505,0.7837839443236589,0.36500964825972915,0.480583927128464,-0.5148879876360297,-0.35307643515989184,0.0552407861687243,-0.09295549849048257,0.9936014232225716,-0.7470057820901275,-0.19102581543847919,0.35059585701674223,0.5451321820728481,-0.6141375345177948,-0.5316572752781212,0.5670876405201852,-0.33256380911916494,0.026495343539863825,0.20359957497566938,0.7889156192541122,0.1731595378369093,-0.6582132568582892,-0.48607192374765873,-0.6131757982075214,0.43469557305797935,-0.8264920567162335,0.10503713274374604,-0.7571562347002327,0.2105047320947051,-0.7333690579980612,0.723917780444026,0.9266701759770513,0.8619603631086648,0.20111983688548207,-0.5543396510183811,0.6365582272410393,-0.9088977598585188,-0.7517010751180351,0.9167662486433983,0.21849790355190635,0.2367164995521307,-0.8268177462741733,0.30389572447165847,-0.04984441539272666,0.12371919071301818,0.7633460471406579,-0.24469986278563738,-0.3216648055240512,-0.7464087661355734,-0.5752589548937976,-0.5174828446470201,0.47048297338187695,0.14676239807158709,0.14994292752817273,-0.05274840211495757,0.5565371890552342,0.6001243670471013,0.13409873377531767,0.8689889186061919,0.9664553888142109,0.5798900327645242,0.25637432280927896,0.6311754179187119,0.02770905289798975,0.9237762112170458,-0.4648425951600075,-0.39286085311323404,0.04517874773591757,0.05041400669142604,-0.6157472934573889,0.5531339948065579,-0.3853121013380587,-1.1439435184001923e-05,-0.34908696776255965,-0.5186052215285599,-0.96268857922405,0.11694744788110256,0.03896772349253297,-0.16019628569483757,0.06877016695216298,0.26312821824103594,-0.22125405399128795,0.24922587955370545,0.5234651048667729,-0.2644925736822188,0.13247413840144873,0.05106225749477744,-0.909274147823453,0.8593746265396476,-0.03841017885133624,-0.3125333348289132,0.2712428248487413,0.4815194923430681,-0.31594283413141966,-0.4267472089268267,0.34510068222880363,-0.5111071849241853,-0.3580917213112116,0.011874697636812925,-0.03153611300513148,0.3995147100649774,0.8601254001259804,-0.31695747980847955,-0.5073581370525062,0.40703806933015585,0.3587770191952586,0.9384446451440454,0.32139900140464306,-0.367465949151665,-0.9461505580693483,-0.520670403726399,-0.8575271829031408,0.2924268841743469,0.35044556856155396,0.3766541751101613,0.7387632788158953,-0.14427659520879388,0.9180896184407175,0.2867014007642865,0.0547634968534112,0.8566321958787739,-0.15272397082298994,-0.01649460894986987,-0.14583486644551158,0.8532056650146842,-0.24782717926427722,-0.27634468022733927,-0.4198795724660158,0.03728755563497543,-0.7865575235337019,0.4841719437390566,-0.1567014679312706,-0.05230069113895297,0.9609482735395432,-0.03890528716146946,0.6902855234220624,-0.8519865544512868,0.8373492127284408,0.03365148510783911,-0.4068947173655033,-0.11760380491614342,0.4677746337838471,0.722059462685138,0.39688071329146624,-0.825912531465292,0.02480299398303032,0.3872050056234002,-0.4955184659920633,-0.9178160913288593,-0.6687143663875759,0.37346864119172096,-0.8861654149368405,0.26736434968188405,-0.06340012652799487,-0.06317517999559641,-0.09810988418757915,-0.2799308532848954,-0.9456480941735208,0.8525324580259621,0.21625182032585144,0.9706448852084577,-0.1384258563630283,-0.7497964752838016,0.8031013705767691,-0.49959731427952647,0.20638666674494743,0.41840875847265124,0.2159234848804772,-0.05512008676305413,-0.6175165860913694,0.8806840996257961,0.3820420214906335,0.33929956890642643,-0.5311719258315861,0.40443178452551365,0.6349290297366679,0.4018633998930454,-0.16403365461155772,0.774059200193733,-0.14945988450199366,-0.04351646453142166,0.10487109888345003,0.3424078617244959,0.13443451840430498,-0.3356989314779639,-0.4980867588892579,-0.1324662221595645,0.5041319206357002,-0.8804944776929915,0.7084618960507214,-0.24443595856428146,-0.8841485655866563,-0.3512475793249905,0.9431439489126205,0.5591861987486482,-0.5320741664618254,-0.45167518546804786,-0.8549288548529148,0.7158165238797665,-0.07187491795048118,0.3589817192405462,-0.8608374111354351,0.8722492549568415,-0.6911842008121312,0.2216388052329421,0.4937556851655245,0.478865681681782,0.7999295881018043,0.32633577892556787,-0.29382058698683977,-0.6155380085110664,-0.5743208038620651,-0.9107694304548204,0.4487316240556538,-0.6978075811639428,0.6201739753596485,0.2784884236752987,-0.6447176137007773,0.07156099705025554,0.044017373118549585,-0.9367514648474753,-0.6780226868577302,0.7678800779394805,0.05454196175560355,-0.8027102975174785,0.45791943510994315,-0.8848471473902464,-0.48435374489054084,0.09738615108653903,-0.019398417323827744,-0.34954141825437546,-0.6999169425107539,-0.8204072853550315,0.2033604378812015,0.9764744020067155,0.4716142984107137,-0.5847095516510308,0.7326747169718146,0.7255151085555553,-0.3623477132059634,-0.15022585960105062,0.33298719953745604,0.9656936102546751,-0.2223434392362833,0.30149293038994074,0.2909341147169471,0.0937061132863164,-0.4198535564355552,0.9651244492270052,0.4540562783367932,-0.6217084075324237,0.09042805479839444,0.5778719028457999,0.26378555595874786,0.5199952959083021,-0.5639669233933091,0.7258276678621769,-0.7937606018967927,-0.1275962614454329,0.5005594259127975,0.037703890819102526,-0.6511283940635622,-0.36707413382828236,0.7664577257819474,-0.4655245873145759,0.3133071670308709,-0.5538902399130166,-0.4803106733597815,-0.2874573855660856,-0.3914788793772459,0.5991906384006143,-0.015252074226737022,-0.8262105686590075,-0.014419449958950281,-0.9993898919783533,0.8103649406693876,0.8996451515704393,-0.5046144756488502,0.056506052147597075,0.9016482317820191,-0.6748659182339907,-0.18444361397996545,-0.19430763507261872,0.728097662795335,-0.20243824925273657,-0.07989387540146708,-0.5496133156120777,-0.15125798573717475,-0.03974864585325122,0.9910639133304358,0.9101911666803062,0.4485892094671726,0.5607290961779654,-0.9640166722238064,-0.1445380155928433,0.3383573591709137,0.2545461351983249,-0.013585939072072506,-0.5266082598827779,-0.8050889051519334,0.14364772103726864,-0.0062307738699018955,-0.08592088846489787,0.16096050292253494,-0.009440186433494091,0.7696101805195212,-0.6766796647571027,0.9829909219406545,-0.7872530720196664,0.03271192032843828,0.24152758717536926,-0.8856318723410368,-0.13470832677558064,0.8127993522211909,0.41439059283584356,0.734425631351769,-0.7714160978794098,-0.6860230704769492,-0.7111096028238535,0.6277093100361526,0.6578713739290833,-0.35068038385361433,-0.5331497075967491,0.5277998810634017,0.023208647035062313,0.4578096163459122,-0.7929904963821173,0.6249522343277931,0.7988025052472949,-0.007335088215768337,-0.9706830973736942,-0.42702011251822114,0.3996244426816702,-0.855279915034771,-0.9212600775063038,0.42720023868605494,-0.6900300309062004,-0.9001546553336084,-0.6349463285878301,-0.5934961810708046,-0.33334957994520664,0.00609880406409502,-0.08659275528043509,-0.021642412524670362,-0.4284497834742069,-0.5052457288838923,-0.1355983461253345,-0.8195172627456486,0.37604319816455245,-0.6030418029986322,-0.6608077832497656,0.8273965143598616,-0.6856556846760213,-0.1473794556222856,-0.8726143673993647,0.10118984151631594,0.15545023465529084,0.5459206677041948,-0.9037501537241042,-0.22591273859143257,0.1924311639741063,0.7316457107663155,-0.129881976172328,0.05436890944838524,0.390730706974864,0.856080218218267,-0.8497677966952324,0.19349174108356237,-0.7241636221297085,0.9677571305073798,0.7133005084469914,-0.5383235393092036,-0.24813214223831892,0.6916230209171772,-0.910779993981123,0.3876987639814615,0.5693374131806195,0.2905636830255389,-0.21179854776710272,-0.8384538781829178,-0.2618161649443209,-0.4368359977379441,0.8393227756023407,0.7291172868572176,0.3420358053408563,-0.4660427961498499,-0.8740176777355373,0.6497134263627231,-0.6324553987942636,0.9383021867834032,-0.7895972169935703,-0.5083845918998122,0.39660960622131824,0.8768465928733349,-0.10638176230713725,-0.45814219349995255,0.28740808460861444,0.27009497163817286,-0.8858339758589864,-0.2772714402526617,0.39321696711704135,0.23031669622287154,0.03109521698206663,-0.2720440342091024,-0.9211159162223339,0.5987876150757074,0.513221699744463,-0.5691985925659537,0.24040029384195805,0.6919840206392109,-0.19960983516648412,-0.6505427286028862,0.2781796185299754,0.526341290678829,-0.5231154593639076,0.22289650421589613,-0.9958045426756144,0.27353281527757645,-0.9929620185866952,-0.20513784838840365,-0.8402375625446439,-0.8346872571855783,0.9714395198971033,0.1606554640457034,-0.07705737696960568,-0.1645856793038547,-0.13678523432463408,0.20908521628007293,0.3756546494551003,-0.06126967165619135,0.1391612533479929,-0.7974617686122656,0.6422613020986319,0.2610717457719147,0.5018836273811758,-0.7627565381117165,0.2632065531797707,0.8223033491522074,0.3882012818939984,0.20815378427505493,-0.75295385485515,-0.7242973521351814,-0.7536997222341597,-0.8184376936405897,0.8016020017676055,-0.33089917432516813,-0.3159308065660298,0.3536639283411205,-0.304474086035043,0.8492375449277461,-0.680990313179791,-0.2381557784974575,-0.669592974241823,0.4115604660473764,0.47139383666217327,-0.5302075268700719,0.006921762600541115,0.8404083792120218,0.8679942321032286,0.9747621659189463,-0.6090173101983964,0.6336861997842789,0.1730256862938404,0.7058214899152517,0.823420976754278,0.8014973695389926,-0.7498719780705869,-0.8681501564569771,-0.689394190441817,-0.15724078472703695,-0.06785424146801233,-0.9236889923922718,-0.3690980076789856,0.9800277734175324,0.6417289804667234,0.22223986266180873,-0.17548802495002747,-0.8223990588448942,0.9379401872865856,-0.7410778678022325,0.49026234168559313,-0.9401468746364117,0.9638054869137704,-0.02578778611496091,0.7116144099272788,-0.838906985707581,-0.24537876388058066,-0.6382422843016684,0.5252281930297613,0.551494849845767,0.2794473432004452,-0.40347719797864556,0.6598423738032579,-0.7925388184376061,-0.5119966636411846,0.9563846131786704,-0.5036760219372809,-0.6516993828117847,-0.8049892275594175,0.050405256915837526,0.2602379550226033,-0.23113435925915837,-0.09682585159316659,0.19921254320070148,0.09076969139277935,-0.7326539168134332,-0.08603498060256243,0.41420469712466,0.48678511241450906,-0.15812457911670208,0.6275923964567482,-0.7494955244474113,0.4332681833766401,-0.9917160868644714,-0.15513322362676263,0.6004019104875624,0.930701878387481,0.22971487045288086,-0.1860614651814103,0.6142767500132322,-0.7361131692305207,0.42395287984982133,-0.14072193624451756,-0.8809501463547349,-0.8942111642099917,0.09485208988189697,-0.19162072706967592,0.9878994021564722,-0.04253082536160946,-0.08230861788615584,0.04749360727146268,-0.43096206057816744,-0.445728100836277,0.16261438094079494,-0.19954147888347507,0.5437243948690593,0.39289421075955033,0.9091325560584664,-0.042399873957037926,-0.9027087390422821,0.12033355236053467,-0.28201232478022575,0.33251645788550377,-0.9044555705040693,-0.5313627212308347,0.9412018181756139,-0.9720479934476316,0.50512091582641,-0.16006846725940704,-0.1149419997818768,0.20263530453667045,-0.15365881379693747,0.3308675894513726,-0.4765200945548713,-0.8742250530049205,0.9823091076686978,0.9284356669522822,-0.23597319051623344,0.9061936200596392,0.19512538146227598,-0.8654376920312643,0.17340592993423343,-0.2159476187080145,0.4833056381903589,-0.7470541740767658,0.6787325972691178,-0.33313888404518366,-0.7443886501714587,-0.08784714946523309,0.9427878702990711,0.5497305314056575,-0.5924181411974132,0.36428612750023603,-0.8761556637473404,-0.8028824334032834,-0.18462639907374978,-0.25025691045448184,0.28830168722197413,0.5837909681722522,0.9586339392699301,0.07927554473280907,0.2551370873115957,-0.4421976092271507,0.11861000303179026,-0.21136704832315445,0.25631991447880864,-0.12622988363727927,0.983702389523387,0.886787595693022,0.9417848591692746,-0.9919165573082864,0.7287462763488293,-0.6018857518211007,-0.2839333191514015,-0.39131911285221577,0.10778669361025095,0.7810496967285872,-0.8437366154976189,-0.39981896709650755,0.032409398816525936,-0.9646049453876913,0.0888201454654336,0.4103724639862776,-0.32514819595962763,-0.04578506574034691,-0.05528149753808975,0.337731652893126,0.7034239731729031,0.8907690634950995,-0.3924470357596874,0.2284617624245584,0.9206091365776956,-0.9730123043991625,-0.734474677592516,-0.9157997909933329,-0.9134116354398429,0.33767159143462777,-0.7092230692505836,-0.3790277377702296,0.39653128385543823,-0.34771420853212476,-0.5143168964423239,0.4672217979095876,0.3265903741121292,0.7645021765492857,-0.7423673155717552,-0.43901505414396524,0.5682578482665122,-0.42075262125581503,-0.4650035947561264,-0.9576904312707484,0.0033814930357038975,0.9994365279562771,0.29816219536587596,0.32986022299155593,0.5819811797700822,-0.8340886528603733,0.8796627018600702,0.5243308641947806,0.31700386572629213,0.20598339848220348,-0.39726953813806176,0.5364195830188692,-0.03392399987205863,0.2767810351215303,0.36191331408917904,-0.5676520373672247,-0.4907875284552574,0.5538609181530774,0.027661374770104885,-0.9170878441073,-0.41436761850491166,0.6167425932362676,-0.16823294945061207,0.1226234738714993,0.45078116189688444,0.6509312218986452,0.6693089921027422,-0.031201019883155823,-0.7892799084074795,-0.973035167902708,0.4687491422519088,-0.6552290213294327,0.2748614060692489,0.5663594221696258,-0.5317430193535984,0.8575824480503798,-0.2193987648934126,0.818131607491523,0.026739043183624744,-0.2845821869559586,-0.11387007962912321,-0.13401814876124263,0.7245132555253804,-0.9807528499513865,-0.023906171787530184,-0.18567417562007904,0.4445179319009185,0.6477011614479125,-0.6343491552397609,-0.21551494160667062,0.3873500400222838,-0.7319666454568505,-0.3394946954213083,0.11389718065038323,-0.6833017067983747,-0.20920819090679288,-0.47586742602288723,-0.8821297492831945,0.6532564233057201,-0.6957936752587557,0.8334618485532701,-0.24176967097446322,-0.6557724350132048,-0.22434856183826923,0.42450828524306417,-0.6365795745514333,0.6461130431853235,0.008880523964762688,0.4265140201896429,-0.8567657326348126,-0.39891403540968895,0.6571324430406094,-0.4148059678263962,0.5220580059103668,-0.7217666548676789,-0.4014187795110047,0.32509341556578875,-0.9045786592178047,0.41593179665505886,-0.7915358459576964,-0.25822161650285125,-0.11680583423003554,0.8595098061487079,0.5995281175710261,0.12491720588877797,0.08458124753087759,-0.21855522505939007,-0.6558360145427287,0.8439082223922014,-0.4065419496037066,0.7159813372418284,0.1659055920317769,-0.7580306329764426,-0.4953703456558287,-0.6199310910888016,-0.4173904755152762,-0.4968391661532223,0.09522788040339947,0.2035865169018507,0.7666794843971729,-0.0917462995275855,0.44026836659759283,0.06912909680977464,-0.4707305575720966,0.4843633179552853,0.7272258680313826,-0.713488070294261,-0.06887776125222445,-0.7111948975361884,0.0562730566598475,0.7222752277739346,-0.5519772926345468,0.04195199953392148,0.4561743759550154,0.043834184762090445,0.3917288784869015,0.18326017213985324,-0.3699194579385221,0.12491127429530025,-0.7235888740979135,0.1433620173484087,-0.5594840752892196,-0.8950539324432611,-0.8026755438186228,-0.7472963687032461,-0.5944420397281647,0.889783127233386,-0.7084309374913573,0.6560022351332009,0.7929269010201097,-0.8182760272175074,0.964280029758811,-0.41069632675498724,0.10003069369122386,-0.9518737941980362,-0.4156227773055434,-0.5780830457806587,-0.5321541465818882,0.0017561293207108974,-0.3880240269936621,0.9941946524195373,0.3448044084943831,0.1947016674093902,-0.42557323910295963,0.7476555635221303,0.7617278047837317,0.03962872549891472,0.5294171026907861,-0.9924553232267499,0.8802473051473498,0.9992461996152997,-0.3107098760083318,0.5614734110422432,0.0722649609670043,-0.9833289873786271,-0.3769083106890321,-0.18591915676370263,0.1923308284021914,0.5618347735144198,0.06307328213006258,0.1407229988835752,0.8676546113565564,0.3675337936729193,0.5102895465679467,-0.3745878376066685,-0.5685322606004775,0.08500357111915946,-0.7965773586183786,0.135930884629488,-0.48947050189599395,-0.24934374680742621,-0.45953504275530577,-0.07787654967978597,0.8656323212198913,0.2518150210380554,0.07856663595885038,-0.5269615328870714,0.8093242356553674,0.4816003139130771,-0.7420837469398975,-0.3106483081355691,-0.10061617195606232,0.5815353086218238,0.261138672940433,0.41531673446297646,0.2532589645124972,-0.4759658151306212,0.9230236662551761,0.4879184439778328,0.12360252719372511,-0.1117465696297586,-0.08634811406955123,-0.8445684006437659,-0.268275183159858,-0.057057134341448545,-0.7585613965056837,-0.7041629422456026,0.7461113147437572,0.5880590225569904,0.3558603245764971,-0.3664764096029103,0.5524412244558334,0.8350221663713455,-0.09108291706070304,0.4596295556984842,0.386857267934829,-0.8895679065026343,0.7127428320236504,0.9514787318184972,0.754430488217622,-0.6623633056879044,-0.1774499830789864,-0.024919081944972277,-0.14544530166313052,-0.7338940855115652,-0.9057053267024457,-0.7064454588107765,0.9505972042679787,-0.5693627861328423,-0.48474875558167696,0.6294302865862846,-0.12276768824085593,-0.5534061556681991,-0.5327331759035587,0.11482725804671645,0.9758918825536966,-0.02572792861610651,0.11800462985411286,0.2264987644739449,0.2877903413027525,-0.33044249564409256,-0.6433352902531624,0.6082045980729163,0.9521295060403645,0.8592962920665741,0.15953053999692202,-0.29000558517873287,-0.5793325677514076,-0.6687594973482192,-0.5051330318674445,-0.1785813868045807,-0.053186274599283934,-0.1102115660905838,0.7767679742537439,-0.28003078885376453,-0.7256615250371397,-0.6804780559614301,0.4308516914024949,0.9138349099084735,0.0031445221975445747,-0.7502064979635179,0.812979897018522,-0.23154419846832752,-0.8828803752548993,-0.9783651805482805,-0.26239507691934705,-0.006377026904374361,0.50714031746611,-0.20052233943715692,-0.5708104213699698,-0.09399418579414487,-0.13242142274975777,0.9192423382773995,-0.2872455418109894,-0.612008027266711,0.4228211995214224,0.5340477046556771,-0.060622003860771656,-0.24763430142775178,0.9012411665171385,0.9785328069701791,-0.4878607280552387,-0.6883802386000752,0.7839196608401835,-0.021927264519035816,-0.9716376569122076,-0.3105690749362111,-0.11643265094608068,0.040788527112454176,-0.05020659510046244,-0.17317746113985777,0.5494343168102205,-0.9808694669045508,-0.020100115798413754,0.6235431120730937,-0.6788140912540257,0.5988075220957398,0.4882042142562568,0.5636360081844032,0.46865346655249596,0.6060981736518443,0.7067317157052457,-0.9978209249675274,0.22543583810329437,0.26430945796892047,-0.8138057603500783,-0.5029250476509333,0.8708743127062917,0.6557636759243906,-0.48724608216434717,-0.10093544190749526,-0.28703011851757765,0.6650257757864892,0.6471951510757208,0.042413981165736914,-0.46225049206987023,0.7971970541402698,-0.989328105468303,0.6668496620841324,-0.956334347371012,0.5373714985325933,-0.6262388317845762,0.22003147471696138,-0.026620831340551376,0.87613858981058,0.6813086997717619,-0.39579438930377364,0.4921368230134249,-0.07659284258261323,0.814787121489644,-0.7510996856726706,0.6368240104056895,0.6115670972503722,-0.9695320809260011,-0.18012831499800086,-0.629782403819263,-0.6701539889909327,0.8533353949896991,0.5033247247338295,-0.8387246998026967,0.46518736565485597,-0.7750265328213573,0.2149296086281538,0.3474698383361101,0.5807321690954268,-0.5780810015276074,-0.7910038642585278,-0.136349615175277,-0.317046124022454,0.4782581841573119,0.3102891040034592,-0.6793994302861392,-0.08877503545954823,-0.989934406708926,-0.8311384050175548,0.6333576226606965,-0.8435688209719956,-0.8495528139173985,-0.930260919034481,0.23554909322410822,-0.9328692024573684,-0.1285262149758637,0.7522729807533324,-0.6338645629584789,0.28786363266408443,-0.055026010144501925,-0.5481728836894035,0.18523218901827931,-0.6187129239551723,0.5697475033812225,0.38838856061920524,-0.6634980519302189,0.6804506960324943,0.16959726018831134,0.9353086263872683,0.7284746202640235,0.4866559011861682,0.30260104686021805,-0.7362901596352458,0.36604417162016034,0.133366993162781,-0.026700814254581928,0.8991868966259062,-0.8994528432376683,0.9401652570813894,0.6604061280377209,-0.22491286741569638,0.4527444140985608,-0.8150350963696837,0.22241099132224917,-0.8356529343873262,0.5595432696864009,0.21924635348841548,-0.06387581676244736,0.2788759977556765,0.9645636957138777,-0.40523382369428873,0.39986415300518274,-0.54823396820575,0.4082228047773242,0.8412085971795022,-0.6126968841999769,-0.648062089458108,-0.02919518481940031,0.5249995649792254,0.18092970550060272,-0.8959634774364531,-0.01834358274936676,-0.9416638845577836,-0.007217356003820896,-0.015135233290493488,-0.08945792354643345,0.8302422864362597,-0.42238235753029585,-0.04085669061169028,-0.08160143764689565,-0.22175381518900394,0.30306429136544466,0.2411828045733273,0.19846261292696,-0.7506243698298931,-0.17426021257415414,-0.5589917707256973,0.7507500909268856,-0.8163500102236867,-0.7501808744855225,-0.6710230777971447,0.4274645736441016,0.0031931158155202866,-0.7404782748781145,0.5773720177821815,-0.9647032706998289,-0.42883275728672743,-0.6423380337655544,-0.011362093966454268,-0.15755967563018203,0.8131142864003778,0.48316248413175344,-0.20179656147956848,-0.10659337928518653,-0.06311537651345134,-0.8096716213040054,0.14796802401542664,0.3898871233686805,0.12620532512664795,0.4059054763056338,-0.201761684846133,0.2416491387411952,-0.8200713396072388,0.3606536570005119,0.04221573658287525,0.7963120457716286,-0.689610734116286,0.6490820324979722,0.8458325043320656,0.920017465017736,0.9836538517847657,-0.2775580449961126,-0.022541810292750597,0.09389686398208141,-0.1902000494301319,0.7480325205251575,0.8237621593289077,-0.6950143175199628,0.7783968206495047,0.6149705038405955,-0.06760361883789301,0.5960801299661398,-0.5720494757406414,-0.09567945776507258,0.042586362920701504,0.4831218710169196,0.39235801342874765,-0.45901917619630694,0.42594054993242025,-0.12077846471220255,0.38232993287965655,0.9457247448153794,-0.5258910623379052,-0.1666661729104817,-0.20264035370200872,-0.31620796071365476,0.36768524860963225,0.9984227558597922,-0.14287491561844945,-0.9987514796666801,-0.7836672617122531,-0.2304263236001134,-0.697148849721998,-0.2945448039099574,-0.10276426561176777,0.2863382212817669,-0.2728643910959363,0.10775787476450205,0.11688496917486191,-0.1970938085578382,0.24689841317012906,-0.7254080348648131,0.18077617604285479,0.6994449123740196,0.7428409429267049,-0.45432222029194236,0.7322895471006632,-0.45115371653810143,0.9243456339463592,0.4040364855900407,-0.4135330696590245,-0.6396251195110381,-0.168111608363688,0.012157539837062359,-0.24460620852187276,0.4687157985754311,-0.3057360900565982,0.301206402014941,0.6464187460951507,0.8759365980513394,0.5045873117633164,-0.8892140355892479,0.720809836871922,0.3843099451623857,0.05377546604722738,0.2800750727765262,0.5898990780115128,-0.0750269959680736,-0.575221402104944,-0.30247620726004243,0.46145910723134875,0.67882798332721,-0.371583831962198,-0.41189204016700387,0.5950908367522061,-0.2832211945205927,-0.31593658635392785,-0.3196552451699972,0.5662568160332739,0.8449753490276635,-0.16958946594968438,0.32225896464660764,0.766283018514514,0.29262668639421463,0.44134563440456986,-0.8371943407692015,-0.10668377578258514,-0.3369007403962314,-0.8878158959560096,0.6713475994765759,0.18264235835522413,0.4194415663369,-0.18125557340681553,0.9945713742636144,0.8527643634006381,-0.016743026673793793,-0.6089447289705276,0.14136530552059412,-0.9825359988026321,0.14496450265869498,0.22436265647411346,-0.4536367990076542,0.3795079733245075,-0.909657021984458,-0.2904635681770742,-0.5503889303654432,-0.9074618364684284,0.5029362412169576,0.8684925157576799,0.8815651717595756,0.23529315274208784,-0.020116176456212997,0.2926982999779284,0.3956386623904109,-0.32971639977768064,0.15426019299775362,-0.3810397726483643,-0.9604329448193312,-0.5999459265731275,-0.0450349859893322,0.7184689505957067,-0.7355649028904736,0.1352186445146799,0.4964367998763919,0.415032722055912,0.1605008183978498,-0.4839054294861853,-0.008940134663134813,-0.2574591264128685,-0.7131090513430536,0.5647855973802507,0.11783288419246674,-0.398980719037354,-0.7786668981425464,0.9586807400919497,-0.8629678385332227,0.17405153391882777,-0.9860724797472358,-0.0845815115608275,0.06582277966663241,-0.06542620901018381,-0.31962350802496076,-0.4857514947652817,0.44358858559280634,0.8487151726149023,-0.85424824943766,-0.1951891048811376,0.8471906334161758,0.03421139996498823,-0.5157804721966386,-0.16260681953281164,0.07808641530573368,-0.9111578636802733,-0.3443470010533929,-0.40715178567916155,-0.1500733708962798,0.010101990774273872,-0.6296742963604629,-0.43314303550869226,0.04721828317269683,-0.6018618475645781,0.21941347559913993,0.15977407479658723,0.6410323865711689,0.09602139983326197,-0.9305397551506758,-0.29393153823912144,0.9148651990108192,-0.13681027945131063,0.9667055350728333,0.30443032272160053,0.851014934014529,-0.4622578122653067,-0.6383499689400196,0.19773563230410218,-0.7976224618032575,-0.2798257702961564,0.9838572912849486,0.6543697295710444,0.375153764616698,-0.39901694329455495,-0.30621101800352335,-0.7500189044512808,0.9666062290780246,0.4811442084610462,-0.40378071879968047,0.029878299683332443,0.44568135030567646,0.345896580722183,-0.6873159264214337,0.5373084931634367,0.2650723373517394,-0.24890698539093137,0.17724357219412923,-0.31682725762948394,-0.8360109645873308,0.5872998279519379,0.7001658212393522,0.035442393738776445,-0.16918047750368714,0.10828054044395685,-0.20372041407972574,-0.5285587473772466,-0.2457873630337417,0.0383402444422245,0.8488359651528299,-0.2166267135180533,-0.8899416336789727,0.5766103928908706,0.8301186398603022,-0.9586759614758193,-0.4104432170279324,-0.48720501037314534,0.7107647280208766,0.3986394335515797,0.0995371276512742,0.8774802219122648,0.33878923766314983,-0.7686879290267825,0.8006426887586713,0.6274986695498228,0.3830386232584715,-0.7466397024691105,0.6227273987606168,-0.2363768396899104,0.7937301872298121,0.6099091889336705,-0.26660762866958976,-0.1297230185009539,0.9543378432281315,0.38619540724903345,0.6894867038354278,0.7678645569831133,-0.851332466583699,0.9488836242817342,0.8275753329508007,-0.31650169380009174,-0.4438830721192062,0.6476729293353856,0.9540509590879083,0.3474911148659885,-0.5155668542720377,-0.02609196025878191,0.18159963143989444,-0.7254619901068509,0.23523602355271578,-0.6442206553183496,-0.5258346106857061,-0.641815869603306,0.17006851872429252,0.8031107252463698,-0.9465212360955775,-0.08051215577870607,-0.6402752650901675,-0.7008073539473116,0.9175647851079702,0.6549616269767284,0.2852556803263724,0.6786970384418964,-0.1809023660607636,-0.48537881672382355,-0.26504275761544704,0.25009182607755065,0.489660894498229,0.923356419429183,-0.49772782484069467,0.8483856660313904,-0.912342737428844,0.23424034751951694,0.48342787520959973,-0.32216410618275404,0.5980661637149751,0.5635249316692352,-0.4650647104717791,-0.5454118130728602,0.5792155261151493,-0.39028057223185897,0.12982408376410604,0.487738452386111,-0.8620809419080615,0.11214748257771134,-0.5999080426990986,0.07554375007748604,0.8209546832367778,0.06350263580679893,0.47859124140813947,-0.35322613129392266,-0.43138265842571855,0.845710230525583,0.858209147118032,-0.4517201082780957,-0.414891189429909,-0.439431706443429,-0.972729635424912,0.6182376407086849,0.13300329074263573,0.8370139547623694,0.02904231660068035,-0.38335222797468305,0.5602514497004449,0.27633153926581144,-0.43516535870730877,-0.17194286407902837,0.0667060362175107,-0.7249757121317089,0.8403723989613354,0.7773657264187932,-0.7665237621404231,0.19936516229063272,-0.026492067612707615,0.9972767322324216,0.9327380959875882,-0.3858704729937017,-0.4478315580636263,0.09798332676291466,-0.37488284846767783,-0.46886090375483036,0.013020627666264772,0.42742773052304983,-0.40976154198870063,-0.333053978625685,-0.4009437635540962,-0.7184034138917923,0.1462779245339334,0.006704042665660381,-0.13204598892480135,0.0074597508646547794,0.6327998964115977,0.4172449763864279,0.15168712381273508,-0.4502613586373627,0.3814180954359472,-0.9826251571066678,-0.4964135503396392,-0.7167521342635155,0.40820443630218506,-0.7779567805118859,-0.9573859246447682,-0.8199020549654961,0.8858676115050912,0.5162957604043186,-0.48089853348210454,0.28057906543836,-0.6907485979609191,-0.8386511472053826,-0.8412420395761728,-0.8944890997372568,0.5451889522373676,-0.16385028045624495,0.9290350191295147,-0.5976430531591177,-0.1150685828179121,-0.3319288226775825,-0.18699696846306324,0.1305627510882914,0.7253705714829266,-0.0965186795219779,0.5380702242255211,0.4394445843063295,-0.20130369579419494,-0.7695294134318829,0.4265945255756378,-0.236873269546777,-0.7507729227654636,0.18028842052444816,0.5274442979134619,0.47007976239547133,0.27550694765523076,-0.7404039003886282,0.13634118251502514,-0.712784071918577,-0.39591375458985567,-0.5377246574498713,-0.22434835135936737,-0.9131672349758446,-0.2998149190098047,-0.8568472173064947,-0.696868852712214,-0.3165997308678925,-0.4024146432057023,0.7910004490986466,-0.7765384032391012,0.03383408393710852,0.19261768367141485,-0.00632868567481637,-0.7476462777704,-0.47200250532478094,0.6545391762629151,0.7724298229441047,0.01627300586551428,-0.191004432272166,-0.9092466505244374,-0.3697657147422433,0.3176537905819714,0.3962506130337715,0.6106135291047394,0.3711500526405871,0.8021680433303118,-0.10891837440431118,0.34096799278631806,0.5425584251061082,0.7615037886425853,0.4817297300323844,0.47287451941519976,-0.7020404958166182,-0.39639317290857434,0.4706782028079033,0.7509777289815247,0.2164514660835266,-0.8877577926032245,0.9670829167589545,-0.7104828367009759,-0.34889038372784853,-0.9125051186420023,0.44415451493114233,0.6633240897208452,-0.37419920414686203,0.8267856640741229,0.22423710161820054,-0.847070099785924,0.04551643272861838,0.7863418380729854,0.24019612465053797,0.490994259249419,0.48738556588068604,-0.875144474208355,0.014277556911110878,0.5820285240188241,-0.5411597243510187,0.9004714917391539,0.7453784886747599,-0.1642642104998231,0.6014113039709628,-0.6444648406468332,-0.6520333839580417,0.46321743354201317,-0.3991357986815274,0.34903413616120815,-0.7894472489133477,-0.1395697621628642,0.11616505682468414,0.9368068347685039,0.43143250327557325,-0.5686913034878671,-0.12148675555363297,-0.11108758673071861,-0.3383862511254847,0.8069317783229053,-0.23812471143901348,-0.8842910802923143,0.8926280778832734,-0.033459977712482214,0.27114057121798396,-0.8884136467240751,0.3675406891852617,-0.5511013446375728,0.22882513608783484,0.6671861293725669,0.47466539638116956,-0.7036572671495378,0.31396605633199215,0.800338339060545,0.7824326306581497,-0.5052878176793456,-0.031764242332428694,-0.8386694085784256,0.45014571445062757,0.767059151083231,-0.02503525698557496,-0.010338326450437307,-0.8809351962991059,-0.050821198150515556,0.9308608043938875,0.5709351524710655,0.7885930147022009,-0.28050564555451274,-0.06373763829469681,-0.3425731766037643,0.23339330917224288,0.8089375169947743,-0.48595342552289367,-0.4072289797477424,0.7296840962953866,-0.4563588909804821,-0.8653007913380861,0.03158082626760006,-0.4395682937465608,0.15900394646450877,-0.7690625134855509,0.7842662180773914,-0.6104471306316555,-0.04917484847828746,0.9771390534006059,0.9014976653270423,0.8235708805732429,0.702009801287204,0.104134910274297,-0.661675728391856,0.11132954712957144,0.3758196639828384,0.14195504505187273,-0.3595433635637164,0.5828068754635751,0.7822093823924661,-0.3143883030861616,0.790700082667172,0.5573573606088758,-0.0802669720724225,-0.027417326346039772,-0.3330398527905345,-0.20384957175701857,0.1236465540714562,-0.005254881456494331,-0.6709751477465034,0.3684210544452071,0.8386744731105864,-0.9347059242427349,-0.13567348942160606,-0.057908706832677126,-0.7668117145076394,-0.49021586030721664,-0.4822664428502321,-0.22690806025639176,0.19270180026069283,0.027636673767119646,-0.68464972730726,0.042338525876402855,0.991657521110028,0.7934290296398103,-0.6717703165486455,0.3671807781793177,0.07119950000196695,0.9890606976114213,0.8615344106219709,-0.7681378987617791,0.14176550460979342,-0.8217740338295698,0.6532327579334378,-0.03493918478488922,0.8307299530133605,-0.9782212022691965,0.3907900876365602,0.9227663516066968,-0.8907187143340707,0.17006868915632367,0.12685121456161141,-0.8067583800293505,-0.2502533635124564,0.4852825296111405,-0.5005703852511942,-0.43073296220973134,0.9750196319073439,0.15491678565740585,-0.2925290195271373,0.5524126957170665,0.19745206646621227,-0.8677970874123275,-0.7004090137779713,0.8374775187112391,0.18381814006716013,0.573354952968657,-0.16662048874422908,-0.22404435416683555,0.46633325098082423,0.924581216648221,0.9771036449819803,-0.2236418416723609,-0.6706107086502016,0.3801117530092597,-0.9490330615080893,-0.11306925024837255,-0.23944383533671498,-0.5939353536814451,0.7706004264764488,-0.47807515738531947,-0.22622626880183816,0.928413909394294,0.3162870053201914,0.23975128401070833,-0.953591545112431,0.6549691916443408,-0.022918949835002422,0.4164920295588672,-0.650806394405663,0.12019355222582817,-0.09174702502787113,-0.883720226585865,0.7139990804716945,0.30153697403147817,0.24870049906894565,0.5472209565341473,-0.5175738404504955,-0.4173998851329088,0.6912176278419793,-0.789924796205014,-0.45750205032527447,0.7587460330687463,0.3556163217872381,0.010853097774088383,-0.673984763212502,-0.8705003494396806,-0.548726400360465,0.024387032259255648,-0.6679540821351111,-0.567246432416141,-0.5325232543982565,0.9020245298743248,-0.43134285043925047,-0.03244390245527029,0.7331869164481759,-0.995478545781225,0.5196837172843516,-0.8276372109539807,-0.5913586714304984,0.19481033412739635,-0.9997430238872766,-0.4061619574204087,-0.08742017298936844,0.7917512785643339,-0.8725820216350257,0.41029266407713294,0.3633233620785177,0.4874717495404184,0.1958108637481928,-0.236597815528512,0.7787403496913612,0.6261254716664553,-0.43653348879888654,-0.3395237475633621,0.9266714905388653,0.7958198604173958,-0.7117764274589717,-0.4491805383004248,-0.6781652360223234,-0.26130136102437973,0.25150168873369694,-0.7996297255158424,-0.30372474854812026,-0.6658115847967565,0.5701952674426138,0.9082798738963902,-0.8125755256041884,-0.993794378824532,-0.27389852749183774,0.9503907733596861,-0.800492549315095,-0.08063357975333929,0.15124846063554287,0.7409580443054438,0.1533746956847608,0.6678022188134491,-0.0794489230029285,-0.24800671543926,0.5881204712204635,0.3582620220258832,0.7709949784912169,-0.5751561736688018,0.960681326687336,-0.6467788955196738,0.6859078388661146,0.30134401749819517,0.07617827644571662,0.9882329804822803,0.9790818896144629,-0.21063534542918205,0.755303863901645,-0.5966067649424076,0.3857282306998968,-0.6043903529644012,0.8967462028376758,0.5599395385943353,-0.9137439476326108,0.8612899403087795,0.42257610615342855,-0.30389516009017825,0.285643691662699,-0.49836693797260523,-0.32309569185599685,-0.02886571642011404,0.957759843673557,0.7352120713330805,-0.6432763645425439,-0.8823010451160371,0.5855752257630229,-0.2613639337942004,-0.6280348552390933,-0.30651142401620746,-0.7091186624020338,-0.9072741828858852,0.03012703312560916,0.14285197108983994,-0.23046624660491943,-0.15610594674944878,0.45784551417455077,0.9400486978702247,0.4701191307976842,0.7266251710243523,0.7598652588203549,0.34462802531197667,0.2907653423026204,0.03339651273563504,0.39810621086508036,-0.8873820351436734,-0.2154754134826362,-0.3017610823735595,-0.1474362309090793,0.36702122958377004,0.5287912325002253,-0.6885514357127249,0.31862964341416955,-0.8420032653957605,-0.4311731653288007,0.6116572506725788,-0.6837593140080571,0.4228253006003797,0.12614385597407818,-0.11110883392393589,-0.18713900540024042,0.45353879733011127,-0.7862756247632205,-0.2685018335469067,-0.4346572970971465,0.8212527129799128,-0.39445537235587835,0.9969301633536816,0.44678171956911683,-0.722897291649133,-0.6310222763568163,-0.9151576072908938,0.7687270753085613,-0.03653815807774663,-0.0954269110225141,0.4033087440766394,-0.8031855481676757,-0.8252760879695415,-0.23316868161782622,-0.13660750538110733,0.697530027013272,0.7716207704506814,-0.12461163336411119,0.21611645445227623,-0.4713913551531732,0.12631311221048236,-0.5876874327659607,0.7189353569410741,-0.5081132901832461,0.2952249082736671,-0.0388111905194819,-0.8700729697011411,0.6776274456642568,-0.6069715707562864,-0.2922235932201147,-0.8795752325095236,0.4977744831703603,0.06403629947453737,0.02265708753839135,-0.7707258742302656,0.5827324301935732,-0.5989134660921991,0.3314673858694732,0.37074765795841813,-0.8687801156193018,0.4766924548894167,0.9754758658818901,0.6921572736464441,-0.2544699623249471,-0.5726560140028596,-0.9813488507643342,0.7809610408730805,0.4700231100432575,0.9256502678617835,0.33786944579333067,-0.8866464095190167,0.2738588866777718,-0.515905390959233,-0.6675082081928849,-0.2983714733272791,-0.8818857683800161,0.3751462600193918,0.0127417529001832,0.39416396617889404,-0.5422280565835536,-0.890693177934736,0.7019908907823265,-0.8347701877355576,0.7817980437539518,0.751037725713104,-0.6385058825835586,-0.8200433999300003,-0.9842623388394713,0.8026196262799203,0.07407647976651788,0.3023830493912101,0.5270100380294025,0.3534746947698295,0.11324415076524019,-0.23830230860039592,-0.290690494235605,0.570062967017293,-0.10200641676783562,-0.7640821705572307,-0.24776736041530967,-0.5174542744643986,0.3645514268428087,0.28096039313822985,-0.256064266897738,-0.9982633111067116,-0.9092684956267476,0.8431552303954959,0.9439119892194867,-0.42010936234146357,-0.39165104972198606,-0.6632716925814748,0.1186428889632225,0.9345537736080587,0.36229291185736656,0.5575716467574239,-0.4641412924975157,0.8040439602918923,0.24753551557660103,0.5014735548757017,0.09742628270760179,0.3864824241027236,0.2389482012949884,0.9700132547877729,-0.12846183311194181,-0.8818200007081032,-0.20395243493840098,-0.6829803744331002,-0.10254605114459991,0.45397115498781204,-0.46362993074581027,-0.04011791339144111,-0.6652156012132764,-0.832661441527307,-0.7847108249552548,0.4159973212517798,-0.7457208591513336,0.7770233452320099,0.6773428781889379,-0.37403395725414157,0.34884454123675823,-0.38538483809679747,0.5492756967432797,0.28611718211323023,-0.7530124355107546,0.7325610867701471,0.19028439233079553,-0.70258295442909,-0.10110195633023977,-0.9026716807857156,0.48541579488664865,-0.7711598169989884,-0.6860375222750008,-0.09449610067531466,-0.7393122189678252,0.7794047519564629,0.13489509653300047,0.16617526486516,-0.7870499738492072,-0.7705922657623887,0.4290092564187944,-0.5440695737488568,-0.0902642565779388,-0.40921699767932296,-0.33624452957883477,0.8907663864083588,0.5752279004082084,0.030948766972869635,0.23339447239413857,0.680050328373909,0.3174091703258455,0.7868025661446154,0.5513791847042739,0.8758232910186052,-0.6304836724884808,-0.338925919495523,0.40357731375843287,-0.493796116206795,-0.8507102774456143,0.9020215580239892,0.5633372091688216,0.20904597686603665,-0.8398547610267997,-0.3568178475834429,-0.658474285621196,-0.8798022367991507,0.898022863548249,-0.11424420867115259,0.5660260543227196,-0.6080040810629725,-0.4323164648376405,-0.6574037536047399,0.0398383904248476,-0.46288385801017284,0.2752184756100178,-0.5195252071134746,0.07808014005422592,-0.703758024610579,-0.33111425302922726,-0.2555322493426502,0.04982560919597745,0.8951834165491164,-0.6639222479425371,0.6230395468883216,-0.29268914740532637,0.7646032031625509,-0.2437438052147627,-0.9592475234530866,0.663592170458287,-0.3933240417391062,-0.04087021015584469,-0.4938578512519598,-0.3952748919837177,0.39784730318933725,0.789487233851105,-0.6897481894120574,0.7451639622449875,-0.44264120841398835,0.39903426682576537,-0.48081314703449607,0.8599484064616263,0.4960375586524606,-0.534235545899719,-0.16749011492356658,-0.6354074887931347,0.2352674943394959,0.0017452482134103775,0.5426425621844828,-0.37702829437330365,0.018878566101193428,-0.7454707040451467,0.5106485015712678,-0.4470506561920047,-0.8595421318896115,0.6096491231583059,-0.3459437736310065,-0.4734573685564101,-0.8598018395714462,-0.5702034751884639,-0.2907783561386168,0.5193856935948133,0.02808274468407035,0.7202758570201695,-0.4887218065559864,0.5523547097109258,-0.23858869494870305,0.9312321664765477,-0.42545255785807967,-0.6231438708491623,-0.9487284705974162,-0.29499364644289017,0.37988980766385794,0.9205335006117821,0.3919589468277991,-0.2537511270493269,-0.8367300825193524,-0.49026810657233,0.49440571665763855,0.09512913227081299,-0.751321317628026,0.31159374862909317,0.9413778353482485,0.9992023799568415,0.12776925787329674,-0.5640347362495959,-0.5681319530121982,-0.8041405533440411,-0.07508465927094221,0.060251221526414156,-0.5830871658399701,-0.8961687451228499,0.5830672970041633,0.6680467021651566,-0.4780888990499079,0.5733786448836327,0.16073273727670312,0.1153599126264453,0.6962264575995505,0.2880946872755885,0.12931290455162525,-0.11587373865768313,-0.3648561956360936,0.7355104372836649,0.1492593358270824,0.7455459968186915,0.13496975041925907,-0.8937652804888785,0.013705943245440722,0.5532913468778133,-0.39870389830321074,0.2722167558968067,0.43217689683660865,-0.36986855836585164,-0.8852081140503287,0.4907707376405597,0.1610393486917019,0.33473528223112226,-0.48547849990427494,0.003764948807656765,0.43494833493605256,0.5459157777950168,0.9084877693094313,0.5315806251019239,-0.8141888012178242,-0.6959364647045732,-0.6784913837909698,-0.19584366818889976,0.21399831911548972,-0.33220372861251235,0.6926040453836322,0.16341895423829556,0.931548330001533,-0.18938432866707444,0.5082576614804566,0.6191051797941327,0.6790164038538933,0.3579431213438511,-0.5072749210521579,-0.4649277376011014,-0.2888917704112828,-0.4218005668371916,0.4348228117451072,-0.4671295378357172,-0.7555011096410453,0.8205118915066123,-0.017927528358995914,0.8541764952242374,0.2731090672314167,0.16472466243430972,0.49249977618455887,0.09469658974558115,0.20438371319323778,-0.3067892207764089,-0.2451174291782081,-0.9203056553378701,0.8850995032116771,-0.7519820900633931,-0.7287948350422084,0.28946605138480663,-0.2753669312223792,-0.2013367540203035,0.2944194143638015,-0.5400292943231761,-0.1487531797029078,0.5332792778499424,-0.6581420004367828,-0.5293293064460158,0.0569386943243444,0.5904009165242314,0.5957248290069401,-0.8050236674025655,0.028511607088148594,-0.018284535501152277,0.3053597919642925,-0.629787347279489,-0.9042860316112638,-0.5405439548194408,0.4816254456527531,-0.9212976191192865,0.8379169451072812,-0.7752419770695269,0.6514805131591856,0.9991396688856184,-0.49195022974163294,0.41479068994522095,0.9282041192054749,0.670105466619134,0.989938928745687,0.30453541316092014,0.5381791805848479,0.16169030452147126,-0.6363100078888237,0.6903242021799088,0.4876646799966693,0.4569802451878786,0.7209168551489711,-0.18680575396865606,-0.262523609213531,-0.9877784778364003,0.7800663942471147,0.1990723144263029,0.18388986540958285,0.36564587289467454,0.4789731870405376,-0.63704704772681,-0.24179915292188525,0.31436705589294434,-0.04395392909646034,-0.7105013229884207,-0.8044986384920776,0.17022997187450528,0.8122418872080743,0.4504817412234843,0.9002104983665049,0.5046742963604629,-0.2290754495188594,-0.8635062901303172,-0.5866834307089448,-0.08944632532075047,-0.19316081842407584,0.9512264747172594,0.6272425577044487,0.5145749114453793,-0.0734032173641026,-0.13044269615784287,-0.22798065328970551,0.7568557821214199,0.25139068765565753,0.3114733914844692,-0.3240891513414681,0.0750316777266562,0.46216203458607197,0.8436236092820764,-0.07168099749833345,0.466198006644845,0.08199535543099046,-0.9391040676273406,-0.3093143370933831,0.6214373954571784,0.082410401199013,0.06084270402789116,-0.4398792232386768,-0.07866815198212862,0.9884376060217619,0.14026784850284457,0.36727831792086363,0.8219333561137319,0.3202873161062598,0.6279892395250499,-0.19663944048807025,0.8515562592074275,-0.19369678990915418,-0.6550545315258205,-0.1520508429966867,-0.021179385483264923,-0.23322856333106756,-0.5766512271948159,-0.5910786921158433,-0.31527642300352454,-0.8901669420301914,0.2760330690070987,-0.9207978090271354,-0.9290296188555658,-0.9407159825786948,0.4902417818084359,-0.4329919661395252,0.6532967849634588,-0.7683533211238682,-0.8002447043545544,-0.9170027538202703,0.45394735457375646,0.28598729940131307,0.5341982799582183,0.7024318380281329,-0.8073664726689458,-0.8813846027478576,-0.3297774298116565,0.8692992464639246,-0.01396204438060522,0.2671574838459492,-0.7067073620855808,0.9216539338231087,-0.28305256459861994,0.4026052067056298,0.7809956041164696,-0.19546150090172887,-0.6680939546786249,-0.2787294494919479,0.6027595540508628,-0.8434112779796124,0.3213309496641159,-0.7432456142269075,-0.48109962651506066,0.7073935810476542,0.9774061921052635,0.5590748442336917,0.3577032471075654,0.6690534600056708,0.21118555357679725,-0.07205373607575893,-0.9238536711782217,-0.44458952406421304,-0.05631151422858238,0.5747565869241953,-0.5344942770898342,-0.00020056776702404022,-0.7716778814792633,0.3280619354918599,-0.7997475489974022,0.2536889403127134,-0.8442081841640174,0.5843208343721926,-0.6389886243268847,0.9654668746516109,0.8729695789515972,0.44046806497499347,-0.9734861836768687,0.884835961740464,-0.8995651118457317,-0.9818985476158559,-0.007932962849736214,0.8102984642609954,-0.8707261313684285,-0.4876375454477966,0.8611346664838493,-0.5087267830967903,0.2757172388955951,-0.814269048627466,-0.6883128006011248,0.36423714039847255,0.5642755548469722,-0.4259356213733554,0.564269230235368,0.997811587061733,0.6166326343081892,-0.3902291520498693,-0.23816020833328366,0.7815895681269467,-0.0984119581989944,0.8358773379586637,-0.7577319755218923,0.6154718701727688,-0.2844350943341851,0.19848921429365873,0.4257196085527539,-0.026411171071231365,0.4011118169873953,-0.42797124572098255,-0.8594797211699188,0.9948718789964914,0.037348320707678795,-0.7756487922742963,0.4138487521559,0.735890022944659,0.45334148220717907,-0.7978746718727052,-0.7234886880032718,-0.6008593416772783,0.12347759259864688,-0.4459903622046113,0.19937108596786857,-0.7566344370134175,-0.1935775624588132,-0.07854679273441434,-0.5499482434242964,-0.3366980953142047,0.44660442043095827,0.2523962063714862,0.9869916848838329,-0.7913640509359539,0.32728233048692346,0.0918928412720561,-0.1257560751400888,0.5286935679614544,-0.5799164562486112,0.34998138528317213,0.13962739892303944,0.1777586555108428,0.5074203652329743,0.4878744469024241,0.5965688265860081,0.1268396875821054,-0.33232109528034925,0.9173778994008899,-0.6539782579056919,0.08650140697136521,0.8169352593831718,0.09514335542917252,0.002160663716495037,-0.2244026865810156,-0.7036150894127786,0.6525703892111778,0.6586310630664229,0.5278255264274776,0.3537508072331548,-0.7469076127745211,-0.7447380321100354,0.9455384858883917,-0.500422959215939,-0.8443298111669719,0.5856507588177919,0.4879876496270299,-0.8479446605779231,-0.9549295427277684,0.022358582355082035,0.8960350388661027,-0.6034909291192889,0.6688054860569537,0.3365759663283825,0.8145232810638845,0.3889485727995634,0.7875439962372184,0.19390313606709242,0.07933002570644021,0.12781103560701013,-0.2878192770294845,0.48191816452890635,0.46072438452392817,-0.5230852481909096,0.04358498426154256,-0.8092162390239537,-0.49789854092523456,0.8423040965572,0.09858146402984858,-0.791450584307313,0.12741081323474646,0.6067830598913133,0.21068731043487787,-0.629822607152164,-0.7814178923144937,0.7816735110245645,0.02259389404207468,-0.7224158369936049,0.23999700509011745,0.8174361013807356,0.18172091338783503,0.9277327503077686,0.2758603924885392,0.41339684184640646,-0.22759781358763576,-0.6718277619220316,-0.47636490827426314,0.497870038729161,-0.36890088114887476,0.44519322272390127,0.9723672545515001,0.4180355193093419,0.7494101342745125,-0.6642413213849068,-0.047720261849462986,-0.4423855277709663,-0.35140820452943444,0.4987962399609387,-0.019452867563813925,0.7646501632407308,0.23489156970754266,0.08004312589764595,0.009788299445062876,-0.7919685626402497,0.09742884151637554,0.5326574775390327,0.22340088663622737,0.5716181709431112,-0.0827196235768497,0.29793001618236303,-0.1708930190652609,0.8856358234770596,0.08281814027577639,-0.2486690361984074,-0.9397596558555961,-0.1274788584560156,-0.4461954780854285,0.3267590911127627,0.9031527480110526,0.8291230276226997,-0.7299311445094645,0.49727714341133833,0.04620997002348304,-0.9130221325904131,-0.786932441405952,-0.684403819963336,-0.2887301817536354,-0.7869283361360431,0.769877034239471,-0.11175857950001955,-0.22631651815026999,0.15687656868249178,0.98121950449422,0.7998941531404853,-0.4182247933931649,-0.4577427953481674,-0.09536978369578719,0.050734201446175575,0.5346797066740692,0.09153635473921895,-0.16874335799366236,0.3143815784715116,-0.5653620986267924,-0.6165478136390448,-0.9641026356257498,0.38302583945915103,-0.07590303383767605,-0.050619170535355806,0.9046263787895441,0.5817858115769923,-0.9409500677138567,0.45192823139950633,-0.9483666531741619,-0.9475823482498527,-0.023568478878587484,-0.6276264456100762,-0.681912655942142,0.19724490540102124,-0.8474039356224239,0.5694004255346954,0.10456510121002793,-0.3975732745602727,-0.7382808323018253,-0.8950621322728693,-0.5587865398265421,-0.9991622138768435,-0.13801857642829418,0.5515416702255607,0.2862137998454273,-0.3662532716989517,-0.2592242849059403,0.4855335848405957,0.34476358722895384,-0.05810505198314786,-0.4254023162648082,-0.6261941390112042,0.31433014711365104,-0.47321829572319984,-0.4199995528906584,0.37996613793075085,0.87172034336254,-0.045411896891891956,-0.4007535786367953,0.45222131023183465,-0.492199725471437,-0.7876468976028264,-0.7308031865395606,-0.30841227574273944,-0.2393645946867764,-0.46599112497642636,-0.010048743337392807,-0.9801610526628792,0.7533150888048112,-0.2661621863953769,0.2598055857233703,-0.17358041973784566,0.1531495745293796,-0.41465550381690264,0.2975993659347296,-0.669809206854552,-0.6163315726444125,0.9960368201136589,-0.44075286481529474,-0.3115661176852882,-0.16540936287492514,0.6052754265256226,0.7469215872697532,-0.05245622294023633,-0.3064751042984426,0.11938311206176877,0.3387318877503276,0.3277676310390234,-0.22474803123623133,-0.6985683515667915,-0.3630608287639916,0.8505714777857065,0.1798462187871337,-0.9280231725424528,-0.35752207785844803,-0.8539003799669445,-0.9109700610861182,0.18028771877288818,-0.48529632296413183,0.579553431365639,0.12455467320978642,0.07993500446900725,-0.3876469871029258,0.37594398111104965,0.6229581078514457,-0.05253408709540963,-0.04321860382333398,0.4872348024509847,0.047615576069802046,-0.14412215910851955,-0.044452873058617115,-0.7322235605679452,-0.9088178384117782,-0.6922376658767462,0.73600191809237,-0.25839054957032204,-0.5107124238274992,-0.43996922858059406,0.10728887561708689,-0.3751802924089134,-0.8229470853693783,0.7669988493435085,0.6945372233167291,0.1132722576148808,0.44960157526656985,-0.9792136237956583,0.7680365722626448,0.7445074627175927,0.39549448853358626,0.16457768715918064,0.7942693117074668,0.8414868251420557,0.22252281242981553,0.29229855444282293,-0.7696548029780388,-0.9182970691472292,0.447315517347306,0.24717789608985186,-0.14600564679130912,-0.015771316830068827,-0.022933020256459713,-0.4102977020666003,0.21604400360956788,-0.11168365785852075,0.47309714928269386,-0.38341725058853626,-0.8512213663198054,-0.6219922765158117,0.04697917541489005,-0.9824689459055662,0.7228626282885671,0.14421768579632044,0.06194224813953042,0.8753750966861844,0.10037013236433268,0.13507000030949712,-0.9294590447098017,-0.15369129413738847,-0.4078052546828985,0.7358027775771916,0.9120072014629841,-0.5496660359203815,0.7781973937526345,-0.09728165902197361,-0.1503560720011592,-0.15446782624348998,-0.12719013541936874,0.09290440287441015,-0.1322473594918847,-0.8671219740062952,0.31603244645521045,-0.03961289441213012,0.8950227117165923,-0.13888018298894167,0.0004818374291062355,-0.7565977750346065,-0.8640386527404189,0.713928462471813,-0.7441119938157499,-0.15538706863299012,-0.3465979960747063,-0.270100649446249,0.3323562308214605,-0.8387554371729493,-0.946292124222964,-0.857250137720257,-0.13311291113495827,0.47866974910721183,-0.8842199519276619,-0.12251695385202765,0.5649488684721291,0.5489818635396659,-0.2823132574558258,0.8139279284514487,-0.5170984184369445,-0.9778255252167583,-0.0741430870257318,-0.201019159052521,-0.23698316514492035,-0.05023518996313214,0.940338995307684,-0.17069812444970012,0.7906837109476328,0.39556955359876156,-0.23757900251075625,0.4006742164492607,-0.8787280339747667,0.9657783880829811,0.6854548822157085,0.2769156922586262,-0.6137286000885069,0.3383422624319792,-0.9242633478716016,-0.9448300027288496,0.23715683678165078,-0.306991467718035,-0.019303887151181698,0.47363253589719534,-0.9014618275687099,0.13610121747478843,-0.3204476176761091,0.7084293053485453,-0.21052738931030035,0.7174664638005197,-0.35885098949074745,-0.7105560298077762,-0.8076741280965507,0.34818245051428676,-0.946829292923212,0.49200853472575545,0.8866101112216711,0.8858758485876024,0.5986344167031348,-0.715277642942965,-0.8072405946440995,-0.7597017497755587,0.4341514566913247,-0.25236136466264725,0.8614168846979737,0.2204793943092227,0.048330473713576794,-0.9179596058093011,0.2692877487279475,0.7687574890442193,0.726924164686352,-0.9916704683564603,0.21019796561449766,-0.34987467620521784,0.012618552427738905,0.7887683240696788,0.904352864716202,-0.0590704008936882,0.19635886885225773,0.7063137609511614,-0.21680109854787588,-0.031668133568018675,0.8938039629720151,-0.8788639372214675,-0.742200871463865,0.7350817848928273,0.06042684428393841,-0.7164493449963629,0.5673121861182153,-0.7670618030242622,-0.48630791809409857,-0.5296042151749134,0.2399133127182722,0.44592974754050374,0.6621029325760901,-0.6324094142764807,-0.18687447626143694,-0.6073981723748147,-0.998136100359261,0.7507552672177553,-0.8094986318610609,-0.291667053475976,0.19556028442457318,-0.995818508323282,-0.6045511737465858,-0.6701558977365494,-0.7782791424542665,-0.3933761790394783,-0.952308080624789,-0.7435342902317643,0.09766069054603577,0.15314762201160192,-0.6424235133454204,0.3263153051957488,0.30149445217102766,-0.8420727653428912,0.6267460440285504,0.3399329292587936,0.0269010323099792,-0.3985928473994136,0.5399057827889919,-0.08522500284016132,0.9764088857918978,0.7791210021823645,-0.6664742440916598,0.5518564525991678,-0.02510530361905694,0.018084253650158644,-0.8776461072266102,-0.38356874976307154,0.2592668063007295,0.5815221052616835,-0.09433156484737992,0.13329827412962914,-0.5286208693869412,-0.17125705908983946,0.09173118649050593,-0.2490531294606626,0.02507956651970744,0.15808363631367683,-0.6635722671635449,-0.16329371184110641,-0.33109897188842297,0.24989227391779423,-0.23509984323754907,-0.8489518132992089,-0.38136021560058,0.015887394081801176,0.8616157411597669,-0.052728922571986914,-0.6095278519205749,0.42572174593806267,-0.3892167126759887,0.9359964379109442,0.9587240936234593,0.6255531292408705,0.8295750869438052,0.6289277519099414,-0.6224204543977976,-0.15893274638801813,-0.8484451691620052,-0.5206270166672766,-0.29597304575145245,0.20120066916570067,0.8415616378188133,-0.7020244696177542,-0.1871058945544064,-0.02721009822562337,0.2666482259519398,-0.8366712182760239,-0.44868300622329116,0.6238101203925908,-0.6219771006144583,-0.9211940094828606,0.6251995381899178,-0.9650359316729009,0.12835289537906647,-0.8545977841131389,-0.14311067620292306,-0.10844594100490212,-0.8554446827620268,0.6245220019482076,0.9568082559853792,0.9531450369395316,-0.10468137729912996,0.25830654613673687,0.8570556226186454,0.6310589970089495,0.8374973456375301,0.797729616984725,-0.8179020644165576,-0.4588096351362765,0.9064300814643502,-0.6196993095800281,0.689657049253583,-0.17208867892622948,-0.37687004590407014,-0.267641628626734,-0.9480596771463752,0.8876323914155364,0.8532318901270628,0.9683068301528692,-0.08112879330292344,0.12279639160260558,0.1577880373224616,0.3154964176937938,-0.2740516443736851,-0.06128361541777849,-0.05492050480097532,0.914981686975807,0.11427590157836676,0.7868341384455562,-0.301812291610986,-0.03273194655776024,-0.5349765075370669,-0.7899545640684664,-0.2797250160947442,-0.45851538702845573,0.30886494694277644,0.5236151670105755,-0.09721351880580187,-0.5122428983449936,-0.5529023637063801,0.4484278680756688,0.32129745557904243,0.7656451016664505,0.085981001611799,-0.678385192528367,-0.7521329075098038,0.1696778368204832,-0.13128462294116616,0.19792341673746705,0.2555241622030735,-0.45554437581449747,-0.5961120133288205,0.9013321930542588,-0.24934068694710732,0.2721552192233503,-0.7370014414191246,0.704556580632925,-0.12215842818841338,0.36271217186003923,0.6399124311283231,0.5989951719529927,-0.7575417342595756,-0.06901043094694614,0.8768648114055395,-0.30670233303681016,0.9489950533024967,0.612681909929961,-0.5066426675766706,0.22042541299015284,0.04230309557169676,-0.06852985499426723,-0.7078633452765644,0.6837181141600013,-0.6014827699400485,-0.8565951627679169,0.3080255277454853,0.755979286506772,-0.6666885591112077,0.4771577878855169,-0.7210029005073011,-0.7112928722053766,-0.2836947375908494,0.9911072598770261,-0.27977778017520905,0.9567410959862173,-0.12113293586298823,-0.8586999461986125,0.6946218027733266,0.45146437361836433,-0.09503363072872162,-0.7359258383512497,0.3513487880118191,-0.7924334150739014,0.750518892891705,0.08601609570905566,-0.8306671706959605,-0.030103317461907864,0.1765237539075315,0.9542221520096064,-0.9966295072808862,-0.49573127925395966,-0.353163187392056,0.6872400566935539,-0.3538295109756291,-0.9261551755480468,-0.21442056400701404,0.26830103108659387,0.7358901272527874,-0.6369123179465532,0.14596135448664427,-0.8413151153363287,-0.028124181553721428,-0.2029648837633431,-0.03816261375322938,-0.13267138693481684,-0.2287806742824614,0.23867430072277784,-0.010918310843408108,-0.2884001461789012,0.5946174524724483,-0.7610059636645019,-0.266828172840178,0.7813834091648459,-0.11060537397861481,0.2684758952818811,-0.5131938443519175,0.7579860482364893,0.5199100174941123,0.9391694799996912,-0.9597639660350978,0.6510518565773964,-0.05927509535104036,-0.5983807118609548,-0.053614291828125715,-0.43639928894117475,-0.65242761047557,-0.9593114103190601,-0.9767742385156453,0.8237663144245744,-0.0829841080121696,0.25018488615751266,0.34526808420196176,0.8892676807008684,0.7341309054754674,0.43917598063126206,-0.7235908186994493,0.7499258345924318,-0.39213326992467046,0.6006033215671778,-0.2693216414190829,-0.2685052794404328,-0.009324777871370316,-0.7519329381175339,-0.3864881955087185,-0.09439854556694627,0.35795708280056715,-0.3352639824151993,0.9615881815552711,0.8815072774887085,-0.4921471094712615,-0.7027362296357751,-0.6591896177269518,0.4794788174331188,0.9383835871703923,-0.5266587962396443,0.45426299097016454,0.3603210221044719,0.16704337345436215,0.09775904193520546,0.36950599402189255,0.4817077126353979,-0.693565955851227,0.872575594112277,0.40232447860762477,-0.20333185652270913,-0.12325974041596055,0.42169938143342733,0.6017944323830307,-0.38505915086716413,-0.6095891906879842,0.10547922551631927,-0.9934912892058492,0.18742220243439078,-0.4680598168633878,0.21257127868011594,0.6265465705655515,0.5088629806414247,-0.5445959172211587,0.07075375644490123,0.02691719774156809,0.6434152615256608,0.0482115438207984,0.7524103275500238,0.9011450177058578,0.016660936176776886,-0.7629033401608467,0.38006866350769997,0.9632536810822785,-0.3724980033002794,-0.3168009570799768,-0.8751592529006302,0.4507461762987077,-0.18202088121324778,0.7360226851888001,0.09080064343288541,0.3113727285526693,0.7160016936250031,-0.24530420638620853,0.6697766981087625,0.113048214931041,-0.799385525751859,-0.34467650251463056,0.142522394657135,0.026387767866253853,-0.45132930343970656,-0.350255168043077,0.626023777294904,-0.9310572049580514,0.5956694055348635,0.4527186546474695,0.8089221022091806,0.6232178690843284,-0.7094135005027056,0.29142940090969205,0.49074089666828513,0.6244299313984811,-0.727881820872426,0.966341398190707,-0.7143299374729395,0.49718639347702265,0.8341246149502695,0.10654617147520185,0.16113233705982566,0.05245643621310592,0.08510153321549296,-0.5164805022068322,-0.7935921647585928,0.39542144583538175,-0.579863918479532,-0.8221833351999521,-0.7276270142756402,-0.8857010276988149,0.8270094441249967,0.0005388506688177586,-0.7046844912692904,-0.5777132506482303,-0.4176183044910431,0.9549227356910706,-0.8962118970230222,0.7717945715412498,-0.3613992668688297,-0.8542166915722191,-0.5469004111364484,0.7161885891109705,-0.6536032753065228,0.8835727884434164,0.4759651548229158,-0.22012452082708478,-0.49609890580177307,0.41024377616122365,0.902900820132345,0.6370525425300002,0.6840073000639677,-0.549726820550859,-0.22751255426555872,0.23754316475242376,-0.15668018301948905,-0.6424333844333887,0.23044151021167636,-0.9389112857170403,-0.03494584280997515,-0.23967791628092527,-0.9454446667805314,0.7084318925626576,-0.6929997806437314,0.9398670522496104,-0.022732486482709646,0.9420702373608947,0.7346987249329686,0.3242094274610281,0.4376688082702458,0.4391297590918839,-0.007143903989344835,-0.28427933203056455,0.3227015775628388,0.2030157740227878,0.27019840897992253,0.5640709111467004,-0.21475111180916429,0.09686629706993699,-0.3453796021640301,-0.5942921848036349,0.5335563537664711,-0.7307096207514405,0.8061333615332842,0.15827085077762604,0.3051052000373602,0.08599142543971539,0.5960040353238583,0.6613453095778823,-0.04855533083900809,-0.9715494411066175,-0.8652082849293947,0.7706179423257709,-0.5522030871361494,0.002925238572061062,0.7241576132364571,-0.03360781446099281,-0.7700395984575152,0.5642232461832464,0.15974557911977172,-0.08301077503710985,-0.8676387704908848,0.0505390502512455,0.6626432011835277,0.6608153018169105,0.740636910777539,0.7589425281621516,0.9365877998061478,0.9401805680245161,0.9943080968223512,-0.7381799262948334,-0.021515460684895515,0.8866111994720995,-0.189278035890311,-0.9439840707927942,-0.5803134185262024,0.02048171078786254,-0.8103724778629839,-0.011346006765961647,0.8144075581803918,-0.9751541479490697,0.4885058356449008,0.7389586651697755,0.9764607204124331,0.3562861024402082,-0.7191356555558741,0.3301937482319772,-0.7067673183046281,-0.3961359402164817,0.3800888671539724,0.795144668314606,0.3833605800755322,0.6778676263056695,0.5109621942974627,-0.8512869775295258,0.43708784971386194,-0.20093126269057393,-0.9356162552721798,-0.29286535223945975,0.39508399181067944,0.6033522328361869,0.209866710472852,0.4130165404640138,-0.5353199392557144,-0.857669950928539,0.23354016058146954,0.9273961652070284,-0.9895584098994732,0.9973634765483439,-0.9964788318611681,-0.47781027713790536,0.4871930368244648,-0.773981420788914,0.8838048204779625,-0.5983614069409668,-0.7098981011658907,0.740545199252665,0.39549159072339535,0.03493337985128164,0.9344516228884459,-0.07223304500803351,-0.17108361329883337,0.8804641747847199,0.3319453657604754,-0.9267857088707387,0.013892512302845716,0.8581777359358966,-0.3674457836896181,-0.45222581131383777,0.2494414788670838,-0.9407005272805691,-0.10461145266890526,-0.9869127674028277,0.5952096348628402,-0.37709392281249166,0.26708820555359125,0.5915976380929351,0.21915133809670806,-0.24897504784166813,-0.6338391788303852,-0.7716048983857036,-0.9293164052069187,0.2507311594672501,-0.5789292077533901,0.6873939698562026,0.999906615819782,0.3251146958209574,0.4985010577365756,-0.3496199091896415,-0.4843910224735737,-0.7123652729205787,-0.49957810435444117,-0.46940220054239035,-0.8415017360821366,-0.6918625696562231,-0.6818792088888586,0.6624359893612564,0.8469051965512335,-0.02057840535417199,0.3165740077383816,0.638063688762486,-0.47300031408667564,-0.04012918099761009,-0.8564874180592597,0.2357756718993187,0.006153013091534376,0.7755851605907083,0.4063131110742688,-0.37336081312969327,-0.25810390431433916,0.7181506403721869,-0.21822136361151934,-0.8145596124231815,-0.8922085287049413,0.07578379567712545,-0.4607396447099745,-0.8961564232595265,0.21539710415527225,0.5773138543590903,-0.28870677575469017,-0.24109874945133924,-0.13410916784778237,-0.21586584113538265,0.7456887061707675,0.34307354548946023,0.383194197434932,0.3927227850072086,-0.44655445078387856,-0.02279805066064,-0.3095505014061928,-0.6543288263492286,0.27390846563503146,-0.21256678085774183,0.3982115127146244,0.8017186489887536,-0.6037927959114313,-0.6861463119275868,-0.8649750822223723,-0.9090164839290082,-0.14767586113885045,0.5171593702398241,0.9164134180173278,-0.4699679398909211,0.3434316013008356,0.795929909683764,-0.8607380823232234,-0.5826243795454502,-0.7207531370222569,0.5691891252063215,-0.8861103015951812,-0.17748979153111577,0.5958443828858435,0.7211021445691586,0.9757856829091907,0.9689855086617172,-0.3835049318149686,0.244900559540838,0.46549577405676246,-0.2044228590093553,-0.24537299806252122,-0.12663851585239172,0.803077723365277,0.3910544253885746,-0.4022494647651911,0.5883874921128154,-0.5951255238614976,0.7612975905649364,-0.09760561026632786,0.06477465946227312,0.875135107897222,0.15429652854800224,0.5686205043457448,-0.02189391804859042,-0.3374328315258026,0.5011514723300934,0.8772621820680797,-0.44605411728844047,0.9620222030207515,0.28332368144765496,-0.02959037432447076,0.022158024832606316,-0.7000843109562993,-0.8263069894164801,-0.6994651625864208,0.7416045651771128,0.7726916358806193,0.9040452376939356,-0.6488795527257025,-0.7847292851656675,0.11893496615812182,-0.1708965227007866,-0.6613716534338892,-0.47097218688577414,-0.06701885163784027,0.7255177944898605,0.14617479732260108,-0.9782043150626123,0.000457023736089468,-0.5730091007426381,0.1815547519363463,-0.4156733159907162,0.8919417322613299,-0.651760439388454,-0.08022700808942318,-0.9864342878572643,0.18980932235717773,-0.4105133763514459,0.30506281880661845,-0.20448377449065447,-0.2973656393587589,0.9819568665698171,-0.7955046496354043,0.476253354921937,-0.7181347124278545,0.9372611595317721,0.714723989367485,-0.03299755696207285,0.8158392049372196,0.013100697193294764,0.0516187590546906,0.5148307345807552,0.7028161464259028,-0.4142840909771621,0.13965743593871593,-0.583714198321104,0.45994057413190603,-0.8214245340786874,0.7451674994081259,0.9196052341721952,-0.7498040599748492,0.8998023923486471,0.5828788364306092,0.29826237400993705,0.3084487169981003,-0.7071917899884284,-0.7396687311120331,0.4104083152487874,-0.7223027087748051,0.7405240880325437,-0.7744486313313246,-0.8989469991065562,0.6087712584994733,-0.6766837006434798,-0.698368473444134,-0.757187366951257,0.027846284210681915,0.9592093671672046,-0.6047202632762492,-0.9024494020268321,-0.9031920856796205,-0.03971200343221426,-0.3129964955151081,0.014386335387825966,0.4835955426096916,-0.862032906152308,-0.9875699146650732,0.6173034086823463,0.9288491932675242,-0.8768674340099096,-0.030556518118828535,0.004581115674227476,0.2975544696673751,-0.9115591957233846,-0.594766310416162,0.4663608632981777,0.702534488402307,0.6654551811516285,0.6941469563171268,-0.010448378045111895,-0.7150347344577312,0.9835031037218869,-0.03894412890076637,0.9138925150036812,-0.9410513998009264,-0.7396137290634215,-0.8349790875799954,-0.9293976752087474,0.44195578806102276,0.9191782954148948,0.6344205075874925,0.8925203150138259,-0.10885189659893513,-0.08581004897132516,0.5253913314081728,-0.4915375914424658,-0.5018994584679604,-0.014156151562929153,-0.2793220761232078,0.45126369083300233,0.622141923289746,0.0271910740993917,0.9972306229174137,-0.7960772346705198,-0.16303019132465124,0.6520074349828064,0.12416777107864618,0.1853329255245626,-0.6399449747987092,0.02322094514966011,-0.7500775721855462,0.294408590067178,0.90945358062163,0.06665621045976877,-0.8208457054570317,0.8565887766890228,0.20303640235215425,-0.7006938732229173,-0.38548707216978073,-0.41500501660630107,0.6165886181406677,-0.830015909858048,0.6921099848113954,0.8330959309823811,0.6699727987870574,0.9624426271766424,0.3777790176682174,-0.5671180677600205,0.014695452526211739,-0.034413451328873634,0.12172406073659658,0.874369936529547,-0.15313270734623075,0.999600300565362,0.25650931475684047,-0.9193182731978595,0.15088287368416786,-0.5347421295009553,-0.8841518755070865,-0.5643158419989049,0.03156669158488512,0.6719627748243511,-0.48180215479806066,-0.9665287262760103,0.6914134924300015,-0.355517303571105,0.345601674169302,-0.3238691524602473,-0.8831973779015243,0.7970540272071958,0.15131604671478271,0.5082632312551141,-0.9828061191365123,-0.6709735058248043,0.1768872025422752,0.06054543564096093,0.17603103118017316,0.7034684396348894,0.2567040561698377,0.8755621435120702,-0.7781177419237792,0.27960641821846366,-0.173761413898319,-0.7082951427437365,-0.8223919668234885,0.012950160540640354,0.146719413343817,0.34395239781588316,-0.7831102688796818,-0.5019030850380659,0.6175919561646879,0.8862499208189547,-0.13105928199365735,0.9772757841274142,-0.18478321423754096,0.8080376465804875,0.11647481378167868,0.9037879169918597,-0.8272905042394996,-0.10997067019343376,0.8863948085345328,0.6456782966852188,0.4795635659247637,-0.5077008632943034,-0.396712111774832,-0.18990096962079406,0.5685088848695159,-0.46907566860318184,-0.1560859326273203,0.7630968596786261,-0.04496736591681838,-0.37096837162971497,0.5240411558188498,-0.41375471744686365,-0.15066780894994736,-0.26306165009737015,-0.47615738585591316,-0.4709802190773189,0.2621793639846146,-0.38849651627242565,-0.7345936656929553,-0.4670889340341091,-0.9113952671177685,0.4576945570297539,0.518826391082257,-0.3759337840601802,0.8283971287310123,0.7702370369806886,-0.535597447771579,-0.975315255112946,-0.951213339343667,-0.5633985525928438,0.8493500207550824,0.9601389239542186,-0.8467927016317844,0.18256924208253622,0.12022132286801934,-0.9620171966962516,-0.32007155753672123,-0.06390621280297637,0.2223487258888781,0.5791454007849097,-0.5394241819158196,-0.7743104724213481,0.7209538444876671,-0.7346486449241638,-0.8267878917977214,-0.2622016998939216,-0.7809280194342136,-0.8154451041482389,-0.38506142795085907,-0.6121479468420148,-0.7598029016517103,-0.9559529270045459,-0.9752054791897535,0.6111217173747718,0.8824783531017601,-0.6547443699091673,0.7499957242980599,0.07021338492631912,-0.005376724060624838,-0.7241659029386938,0.9890165221877396,0.5861523221246898,-0.7471038107760251,-0.024430925492197275,-0.2960842358879745,-0.20588955143466592,-0.5982472747564316,0.6020740428939462,-0.8463895237073302,0.07034692354500294,-0.015840943902730942,0.009141727350652218,0.03030107682570815,-0.9110025386326015,0.3315118276514113,-0.3108788365498185,0.3822254748083651,-0.7473821858875453,0.21961133740842342,-0.21894538681954145,-0.9596929573453963,0.6467452151700854,0.8883014949969947,0.17290803277865052,0.028529994655400515,-0.6990942764095962,0.17525361897423863,0.37805708358064294,-0.10035481210798025,0.36056584818288684,-0.6742628621868789,0.5906186774373055,0.24044371861964464,-0.5740874940529466,0.3674681857228279,-0.6317393290810287,-0.8957807016558945,-0.44643555115908384,-0.7361453911289573,-0.7798606413416564,-0.14711598679423332,-0.4673129701986909,-0.4531015269458294,-0.8156011146493256,0.1917737564072013,-0.5078397244215012,-0.4464513398706913,-0.9993294989690185,-0.7597643686458468,0.5851097516715527,0.8704873770475388,-0.4722132966853678,0.7561261220835149,0.12364254053682089,0.3517671008594334,0.4565394870005548,0.6467086081393063,0.8902628854848444,-0.2187373386695981,-0.7394306138157845,-0.13229955965653062,0.7492260755971074,-0.6831807019189,-0.24959337571635842,-0.4553831750527024,-0.2854095473885536,0.42479950888082385,-0.34221498388797045,0.5066657271236181,-0.8948120982386172,0.11661673150956631,0.4304984021000564,-0.28192472038790584,-0.4723538653925061,-0.16334009869024158,-0.17425451520830393,-0.8529679118655622,0.9157491489313543,-0.9326101099140942,-0.6485564350150526,-0.6473517124541104,-0.21729775285348296,0.8983093677088618,-0.3012637668289244,0.8343738140538335,0.01161178108304739,-0.676582439802587,0.37504278123378754,0.24182128626853228,0.3470377600751817,0.7974253785796463,0.07689132308587432,-0.44799955328926444,-0.7796930093318224,0.986761034000665,0.22889206605032086,-0.6909748641774058,-0.17798521369695663,-0.5728793647140265,-0.9245874639600515,-0.4181533199734986,-0.623718339484185,0.782232373021543,-0.8635546541772783,0.8583151837810874,0.27699090586975217,0.3470129403285682,-0.8778824843466282,0.7470787279307842,-0.35821371572092175,-0.9284414509311318,0.9112991574220359,-0.8954921592958272,0.5162590118125081,-0.5999496639706194,0.8322256607934833,0.9518667538650334,-0.9899718160741031,-0.8883225936442614,-0.08506574388593435,-0.0577545166015625,0.9561431054025888,-0.5276532471179962,0.175991368945688,-0.7962121875025332,0.8460282259620726,0.027131213806569576,0.07060755044221878,0.5426740064285696,-0.17685872688889503,-0.3569720075465739,-0.3194737248122692,-0.8656385620124638,0.5561028006486595,-0.7549302582629025,-0.3827401911839843,-0.30023112799972296,0.8159663006663322,-0.716676960233599,-0.34595241490751505,0.7280524056404829,-0.18762446055188775,-0.8248362117446959,-0.8879313189536333,0.39504374004900455,0.5290086320601404,-0.6342090582475066,-0.25722090154886246,-0.5252240528352559,0.20806287974119186,0.06915512075647712,-0.17091018659994006,-0.6172911678440869,0.24285710835829377,0.09989400673657656,0.9795349799096584,-0.9689891701564193,-0.4029664075933397,-0.8448808337561786,0.4194920975714922,0.3708922937512398,0.14113793801516294,0.17276339698582888,0.506168573629111,-0.33412113320082426,-0.7562763164751232,0.027278176974505186,-0.469041152857244,-0.9652355760335922,-0.16150702815502882,0.7322458010166883,0.12712718360126019,0.7532209805212915,-0.17697827238589525,-0.5686372183263302,0.50989094004035,0.6488710949197412,-0.0380994132719934,-0.013404688332229853,0.9252440254203975,0.32224794337525964,0.08278481429442763,0.4110882212407887,-0.7178840190172195,-0.9952265778556466,-0.8725799666717649,-0.1366585954092443,-0.003881070762872696,-0.43043385725468397,0.18444932671263814,0.1364233079366386,0.49185711704194546,0.5968969636596739,0.5431493949145079,0.24492666497826576,0.2519369963556528,0.9616053481586277,0.8593999831937253,-0.1419077105820179,-0.8230457119643688,0.7580621466040611,-0.5648665553890169,0.6058571641333401,-0.043444215785712004,-0.037609382532536983,-0.6074105883017182,0.18973509967327118,-0.5028120446950197,-0.37291956041008234,-0.3505317554809153,-0.6468532960861921,-0.27217638678848743,0.4757593432441354,-0.5268653179518878,0.6170557760633528,0.8630448593758047,-0.6230577952228487,-0.7387306354939938,-0.07747833477333188,-0.6195102664642036,0.9541691588237882,0.5929565937258303,-0.6698034103028476,-0.5482950061559677,0.9815939133986831,0.6807219665497541,-0.6962397410534322,-0.406495719216764,0.02227254444733262,-0.3818883444182575,-0.06477227667346597,0.45974880876019597,0.3744682753458619,0.3526868359185755,0.5900199939496815,0.5571852610446513,-0.05179305747151375,0.9013699698261917,0.05146870296448469,-0.84471947979182,-0.9913396583870053,0.03921761829406023,-0.49033057503402233,0.31733569502830505,-0.9056249409914017,-0.5977274202741683,-0.7362666055560112,0.6153569780290127,0.9587968927808106,0.5194604634307325,0.03340609138831496,-0.9205593769438565,0.46015564259141684,0.9956222306936979,-0.9418155611492693,0.036021819338202477,0.9736231379210949,0.4049917794764042,-0.2990741739049554,-0.053721975069493055,-0.6285536275245249,0.028561485465615988,-0.7963769915513694,-0.1882666703313589,-0.2286406271159649,-0.17563315108418465,-0.7876877645030618,0.34194109216332436,0.8354595596902072,-0.9231031802482903,0.5073792324401438,-0.9464336279779673,-0.5825248677283525,-0.4036924121901393,-0.8917766902595758,-0.1846438180655241,0.9684516382403672,-0.8902832795865834,-0.21310922782868147,0.8378506149165332,0.7050162893719971,-0.6213585082441568,0.8235092773102224,-0.9870740775950253,0.9067376712337136,0.5949937826953828,0.8353753052651882,0.8634715117514133,0.9843272548168898,0.7102557844482362,-0.026805156841874123,-0.11073627788573503,0.11080401623621583,-0.2865684567950666,-0.37052602553740144,0.04190240707248449,-0.4511315845884383,-0.6776185976341367,-0.6298622628673911,-0.6372326100245118,0.5781185631640255,-0.7718069250695407,0.8297095950692892,-0.44875696301460266,0.3331937990151346,-0.4910643342882395,0.33184575848281384,-0.4721887377090752,-0.05566297424957156,-0.8965248931199312,0.6563852010294795,0.11632391810417175,0.7408864973112941,-0.9624686310999095,0.18253975687548518,0.23957898980006576,0.8595347525551915,0.5652844300493598,0.17542664427310228,0.4727595201693475,0.2855950854718685,0.08283489616587758,0.9069786118343472,-0.02386554144322872,0.7338956096209586,0.8851147377863526,-0.7285771807655692,-0.2159568746574223,-0.7597935423254967,0.15703537594527006,-0.706773538608104,-0.05968464957550168,0.44748801551759243,-0.007671013008803129,-0.8077240474522114,-0.45008062897250056,0.32911786902695894,-0.8717577373608947,0.28653861535713077,-0.740144295617938,-0.8674196503125131,-0.5354416538029909,-0.23894004058092833,-0.34124127496033907,-0.6353086312301457,0.6984162600710988,-0.009502977132797241,0.6690397919155657,-0.36779602570459247,0.6319173583760858,0.9311020001769066,-0.5277538015507162,0.9123161812312901,0.8027683398686349,0.019735118374228477,0.81789366947487,0.6529761906713247,-0.3228263813070953,0.6412120428867638,0.7979728942736983,0.4706703224219382,0.921249695122242,0.7125713368877769,-0.8119710017926991,0.8397066351026297,0.6963294548913836,-0.4949041181243956,-0.5922019085846841,-0.8723944602534175,-0.43635798804461956,0.4191510695964098,-0.01784477010369301,-0.8757612002082169,-0.3073667539283633,-0.6221662927418947,-0.413222118280828,-0.8310743789188564,0.43122949358075857,-0.18844086350873113,-0.6870843130163848,0.42772397259250283,-0.5666135177016258,-0.2285578167065978,-0.11309143900871277,0.7061003134585917,-0.5705169858410954,0.7775599705055356,0.45533543452620506,0.030373954214155674,-0.7357792933471501,0.8493620567023754,0.16434766026213765,0.8275208887644112,-0.6386586562730372,0.8809131267480552,0.40731815434992313,-0.7203768244944513,-0.6378985266201198,-0.3496458362787962,-0.9101343820802867,0.9917276278138161,-0.8165808343328536,-0.6077322675846517,-0.3410281711257994,0.6219372199848294,0.6321182972751558,-0.43131255311891437,-0.5314397108741105,0.5534357028082013,0.3841126933693886,-0.4725659633986652,0.09144985862076283,-0.299080444034189,-0.6576328976079822,0.03807807806879282,0.422009052708745,0.9154230048879981,0.7337542599998415,0.006268841680139303,0.42656208015978336,-0.8144565317779779,-0.8615378146059811,-0.9592260648496449,-0.5848613535054028,-0.33430783776566386,-0.13359997188672423,-0.938861349131912,0.44009258272126317,-0.615653523709625,-0.8474173494614661,-0.3987036645412445,-0.7925764075480402,0.8676856127567589,-0.6017621490173042,0.37376427184790373,-0.526227306574583,-0.451539998408407,0.7013451009988785,-0.6115983361378312,0.9967830260284245,-0.513661848846823,-0.9732710621319711,-0.36640196200460196,0.14103716798126698,-0.16937306616455317,0.44497352046892047,-0.7674356130883098,-0.6122067351825535,-0.41160425124689937,0.9303651256486773,0.717555443290621,0.5874080397188663,0.7791413366794586,-0.8151824581436813,-0.40176202403381467,0.12690194882452488,-0.12793551431968808,-0.5520445769652724,-0.6816263240762055,0.0713972644880414,-0.04736235272139311,-0.3412636974826455,0.44427369721233845,0.3033014293760061,-0.2988537182100117,0.9899812946096063,0.5417476263828576,0.6908922544680536,0.9214803823269904,-0.8527693375945091,0.4896674114279449,0.7822274179197848,0.7592921969480813,-0.15191344171762466,0.19119250355288386,-0.6810206226073205,-0.33130841236561537,-0.6065654451958835,-0.3447891855612397,-0.5913856984116137,0.2985366154462099,-0.7630005176179111,-0.20405603107064962,0.5634821271523833,-0.36391092790290713,0.30358945671468973,0.6875976999290287,0.20052737183868885,0.7944005117751658,0.9384131757542491,0.5840916819870472,-0.6841589654795825,-0.23498510289937258,-0.4235181394033134,-0.5697262240573764,0.03898207889869809,0.6975490832701325,-0.568097754381597,-0.4435624177567661,-0.95759590389207,0.39398937998339534,-0.4006947730667889,-0.07568251993507147,0.6328712743707001,0.625669245608151,0.00682594021782279,-0.029225976206362247,0.110299336258322,-0.2052784003317356,-0.18046594876796007,-0.7049861503764987,-0.8805455900728703,0.8181065274402499,0.14907590486109257,0.22509060287848115,-0.7469554110430181,0.902319218032062,0.1881269095465541,-0.9144899225793779,-0.3788470746949315,-0.8902333439327776,-0.9053463665768504,0.2741773365996778,-0.547740644775331,0.12074493803083897,0.15921395272016525,0.5815698243677616,0.981173443607986,0.79787129862234,0.5235092835500836,-0.5426764371804893,-0.12407637480646372,-0.056772870011627674,-0.9448044477030635,-0.08978011878207326,0.8257159790955484,0.8800147231668234,-0.880741648375988,0.16796513879671693,-0.6224620528519154,0.8088913732208312,-0.03040294675156474,-0.37224035803228617,-0.30633143056184053,0.5735649485141039,0.5848503215238452,-0.20559093914926052,0.323915699031204,0.15912836929783225,-0.8285230519250035,-0.0741556417196989,-0.0916177025064826,-0.9507099674083292,-0.051377459429204464,0.9237963389605284,-0.4420500500127673,0.623770750593394,-0.6352852685377002,0.41679031448438764,0.3407629397697747,-0.9614910064265132,0.42757374374195933,0.8560935514979064,-0.9857075079344213,0.47215085243806243,0.0778378969989717,0.5628530806861818,0.720638673286885,0.8895170255564153,-0.8576207868754864,-0.22235779836773872,-0.11164326407015324,0.02458295738324523,0.669305709656328,-0.18608355848118663,-0.1814523614011705,-0.16813628375530243,0.5982051445171237,-0.8617547866888344,-0.9431719868443906,0.3851584498770535,-0.8404606068506837,-0.922496254555881,-0.9076970950700343,-0.17344155721366405,-0.8671940383501351,-0.6772043202072382,-0.3098996630869806,0.481231520883739,-0.5372884883545339,-0.9309358429163694,-0.6392099829390645,-0.6704554362222552,-0.031844413839280605,0.668270536698401,-0.600388309918344,-0.0011497819796204567,0.9916515676304698,-0.5966277667321265,-0.9608169444836676,-0.536183837801218,0.2865343326702714,0.07045519491657615,0.387087884824723,-0.6722863959148526,0.7465109108015895,0.41822323808446527,0.6735343029722571,0.6753587941639125,-0.04630215931683779,0.4079303666949272,-0.9110243166796863,0.8935568341985345,0.07372580748051405,-0.22103081829845905,0.26835330994799733,-0.7119240439496934,0.6260213176719844,0.9067758042365313,-0.853622455149889,0.6039054426364601,0.880228057038039,0.5453447792679071,0.8818922443315387,0.7499247235246003,0.32785083539783955,-0.9935202891938388,-0.9707897501066327,0.26614878606051207,-0.4188846768811345,-0.6755123450420797,-0.7939638192765415,0.627091568429023,0.27232835162431,0.03259364189580083,0.38417234318330884,-0.3124419027008116,-0.9508600295521319,0.9366470775566995,0.38995760353282094,0.6095305690541863,-0.3504788037389517,0.23724851245060563,-0.28653929149731994,-0.03250119322910905,-0.07434446504339576,-0.9545675544068217,-0.33017238415777683,-0.6564887561835349,0.6361636845394969,-0.12292260490357876,0.3812807616777718,-0.9822217086330056,0.4117628466337919,-0.2301516947336495,0.6547808069735765,0.48044417332857847,0.4790491797029972,0.3550424734130502,-0.2545239273458719,-0.6480406494811177,-0.6920259795151651,-0.8265238995663822,-0.3273983970284462,0.37871509324759245,-0.44500825461000204,-0.19830521196126938,-0.5096376272849739,-0.11749079823493958,0.7219067290425301,-0.9653093474917114,0.8281590286642313,0.5015251971781254,-0.10327987698838115,-0.734148574527353,-0.14469529641792178,0.04084345232695341,0.5011283103376627,-0.29109616996720433,-0.5352828046306968,0.08259772602468729,0.6909151896834373,0.952765541151166,0.5770028317347169,0.3710769899189472,0.7527407850138843,-0.04101900849491358,0.9386101234704256,0.4928371300920844,0.9524724357761443,0.3356451918371022,-0.07752206828445196,-0.8123551104217768,0.6914121559821069,0.7461074977181852,0.7590642641298473,0.7289610970765352,0.9680378837510943,0.10289126122370362,-0.8157315659336746,-0.5859141130931675,0.5353222480043769,-0.13972121570259333,0.8767928066663444,-0.8970628930255771,-0.97350047621876,0.6625426467508078,-0.5654219016432762,0.2666037236340344,-0.7187135959975421,0.7361893034540117,-0.16569404676556587,0.10184549866244197,-0.4998772372491658,-0.8463476076722145,0.8616367839276791,0.5288805258460343,-0.6271709273569286,0.47653019754216075,-0.3302133772522211,-0.671074312645942,0.774452181532979,-0.7240773029625416,0.47906095953658223,-0.6236673397943377,0.8708858210593462,0.6565955602563918,-0.6958998432382941,-0.05853469856083393,-0.05014933133497834,-0.8364824480377138,0.8730156379751861,0.9383161971345544,-0.7004748084582388,-0.789036548230797,0.8551522637717426,-0.0554535910487175,-0.7544898390769958,-0.512775129172951,0.2830846910364926,-0.19463918032124639,0.3421304654330015,-0.36305323522537947,0.2117341049015522,0.45313397515565157,0.6978695434518158,-0.6039644568227232,0.92260317876935,-0.2862919345498085,-0.5720040877349675,0.885618238709867,0.5132090449333191,-0.6763062230311334,-0.6183745772577822,0.9288605730980635,-0.12102535180747509,-0.9847856154665351,0.6162191331386566,0.5962366461753845,0.872326482553035,0.32499134773388505,0.8574627339839935,-0.038415731862187386,-0.9685269389301538,0.22855969844385982,0.3826572769321501,0.6077774777077138,-0.8559029316529632,0.6583454413339496,0.11628528404980898,0.7759777326136827,0.7019468997605145,-0.10568653652444482,0.39145643077790737,-0.47099687764421105,0.698245451785624,-0.801770459394902,0.20461243716999888,-0.18293115310370922,-0.4341199197806418,-0.6837602006271482,0.16537097143009305,-0.46061849081888795,-0.8075335421599448,0.40045594656839967,0.31721742544323206,0.5797769194468856,0.39638638170436025,0.564405407756567,0.0060251979157328606,-0.5775953656993806,0.48151519568637013,-0.21341541595757008,-0.6584973204880953,-0.45204005343839526,0.8626597910188138,-0.919545547105372,-0.08262197440490127,-0.5399392652325332,-0.008834263775497675,-0.2896725288592279,-0.9999442459084094,-0.1623889934271574,-0.44934365153312683,-0.08101767068728805,-0.03418855648487806,-0.8235025960020721,0.5820936905220151,-0.47966408357024193,0.7149162823334336,-0.48218131391331553,0.007416642736643553,-0.4112371215596795,-0.9283330822363496,0.359135746024549,0.01873044203966856,-0.38350878097116947,0.24551185918971896,-0.43890215875580907,-0.12557353312149644,0.6493252534419298,-0.9661389687098563,-0.15049157617613673,-0.89413519250229,-0.4488576236180961,-0.37960020219907165,-0.02025559963658452,-0.8554533631540835,0.4857353144325316,-0.14812637539580464,-0.6902091517113149,0.039126471150666475,0.12156663788482547,0.12466430384665728,-0.6363980006426573,-0.45519317081198096,0.6933244843967259,0.2249056501314044,-0.2539237793534994,0.9668085407465696,-0.38653689669445157,-0.5469735097140074,-0.8264386104419827,-0.043501890264451504,0.5971495839767158,-0.6949579264037311,-0.8234508130699396,0.12143540056422353,-0.6329005383886397,-0.12408310547471046,0.39493532618507743,-0.22219268046319485,-0.8257843595929444,0.0873035741969943,-0.8112991778180003,-0.444388460367918,0.5794939994812012,0.9661762323230505,0.8268417045474052,-0.37504566740244627,-0.46034929482266307,-0.7118731788359582,-0.4024729672819376,0.17157203052192926,0.926725160330534,-0.8715563868172467,-0.43894432950764894,0.9119321531616151,-0.3781599225476384,-0.9262372604571283,-0.07268019393086433,-0.7564443168230355,0.533925264608115,0.8299915567040443,0.3269081646576524,0.8394397674128413,-0.6985723706893623,0.503927574492991,-0.44773079827427864,-0.4235570658929646,0.8243618654087186,0.9379979968070984,-0.935657809022814,0.5593093964271247,-0.49620638554915786,-0.4610820538364351,-0.4704284807667136,0.572981224860996,0.6654586442746222,0.8694902355782688,-0.19164225831627846,-0.2505082320421934,0.1039575394243002,0.7487354865297675,-0.08965099230408669,0.6141585344448686,0.021793366875499487,0.9369445401243865,0.8863720018416643,0.05082459235563874,-0.6911313789896667,-0.74796047154814,-0.10343826143071055,0.9681852762587368,-0.8853229475207627,0.26112219551578164,0.6697627273388207,0.96631915634498,0.41635463712736964,0.7942402926273644,-0.5043526603840292,-0.11406197212636471,-0.5722536337561905,-0.9247775827534497,-0.43374754255637527,0.482602134346962,0.5331622259691358,0.3415692741982639,-0.37900804774835706,-0.4360415586270392,-0.9498384818434715,-0.15536654833704233,0.9218010366894305,-0.8601601640693843,0.5368118621408939,-0.4101896332576871,0.20814766921103,-0.07045890530571342,0.4382251128554344,0.8792439489625394,0.5654101124964654,0.1290331156924367,0.4961195634678006,0.3667310425080359,-0.20269630523398519,0.217180201318115,-0.17700224556028843,0.21165047260001302,-0.31302172550931573,-0.378821165766567,0.030780465342104435,0.35787817649543285,-0.3016881416551769,-0.19037228031083941,0.7607892313972116,0.6324522844515741,-0.30422740802168846,-0.308025861158967,-0.0066475635394454,0.7449020589701831,0.848377020098269,0.9394018747843802,-0.6363732879981399,-0.8078265343792737,0.7042068750597537,-0.24677197635173798,0.07982281409204006,-0.610548575874418,0.11745959520339966,0.7677474990487099,0.4632484931498766,-0.9403987778350711,0.41988119715824723,-0.19660464534536004,-0.2685087453573942,-0.696113258600235,-0.12028378946706653,-0.5435269586741924,0.061623834539204836,-0.6616011173464358,0.8280539158731699,-0.005569491069763899,0.16702377423644066,-0.40174164809286594,0.5440784194506705,0.6028479957021773,0.4799141362309456,-0.6888426151126623,-0.5549045093357563,0.8520024847239256,0.7437273501418531,-0.9609621847048402,-0.33793321531265974,-0.12283277977257967,0.17306377133354545,-0.4481900427490473,0.39553242456167936,-0.9096509870141745,-0.7704327064566314,-0.9994223518297076,-0.38407908333465457,-0.992033283226192,0.6165256607346237,-0.7170551237650216,0.8718574419617653,-0.051338852383196354,0.9458873397670686,-0.5657173045910895,-0.918367438018322,0.16830688063055277,0.8616407802328467,-0.6927912984974682,0.16505709337070584,-0.4838473363779485,-0.17215128056704998,-0.6098756608553231,0.268437456805259,0.47089126193895936,-0.19163944059982896,0.7092761010862887,0.35750396689400077,-0.461185650434345,0.7564771715551615,-0.9929978246800601,0.8881157129071653,0.29329454246908426,-0.11684344615787268,-0.005419040098786354,-0.8815019223839045,-0.03472090791910887,0.7511693281121552,0.8304375461302698,-0.8295545661821961,-0.9437221833504736,-0.6510461838915944,-0.6948649086989462,0.8361399699933827,-0.5760142556391656,-0.02156969252973795,0.6014841101132333,-0.12407863698899746,-0.2904414483346045,0.4894993994385004,-0.5706219966523349,0.7120912349782884,0.9421133566647768,0.08581370301544666,0.7094771508127451,0.10912768729031086,-0.23448830191046,0.7033036942593753,0.9426958383992314,0.23767073266208172,0.1794483051635325,0.7557204654440284,-0.5242157015018165,-0.04241920681670308,0.041413869708776474,-0.9443581346422434,-0.4316920912824571,0.6760765579529107,0.7301359008997679,-0.8267294242978096,0.6445290842093527,0.5368796577677131,0.7138873850926757,-0.074570766184479,0.5820563342422247,0.9242387898266315,0.3405190357007086,0.6892653610557318,0.5176313882693648,-0.14448839193210006,0.8831129255704582,-0.15556885581463575,0.720477812923491,0.40765476459637284,-0.8561753812246025,0.11301708174869418,-0.001775417011231184,-0.5408494328148663,-0.4405638803727925,-0.40414521796628833,-0.37630370492115617,-0.6861356617882848,0.09262899355962873,-0.2907261769287288,0.1860994971357286,0.6753734475933015,0.22583237383514643,-0.9207205902785063,0.7355239638127387,-0.2899358430877328,-0.07555241044610739,0.5683245845139027,-0.29670734191313386,-0.9530289070680737,0.03051847778260708,0.13866678532212973,-0.3405598094686866,0.07566551864147186,0.04175974801182747,-0.46837082831189036,-0.13295859843492508,0.8633992839604616,-0.3795140259899199,-0.9667154559865594,0.3492449326440692,-0.5798207465559244,-0.8046889333054423,-0.26126030227169394,-0.708823524415493,-0.8301864475943148,0.2581506003625691,-0.7920984365046024,0.9053940991871059,0.20614664442837238,-0.5779312248341739,0.496399050578475,-0.8303392501547933,0.17344687459990382,-0.8719426682218909,-0.7483366229571402,-0.17713411804288626,-0.3854924482293427,-0.09276891313493252,-0.8369408035650849,0.8672730489633977,0.09762147394940257,0.26188964722678065,-0.672642920166254,0.3703186926431954,0.9692161935381591,-0.15742249554023147,0.09815862588584423,-0.9502044492401183,0.5356601658277214,-0.7929538991302252,0.6283059795387089,0.19634525198489428,-0.014863514341413975,-0.7881737346760929,0.5796645847149193,-0.13632471719756722,0.5646341992542148,0.04544653091579676,0.8831494878977537,0.1699044299311936,0.8133592400699854,0.08312112977728248,-0.6720847571268678,0.1598502523265779,-0.5994464261457324,-0.5204595737159252,0.5058344686403871,0.9918782347813249,-0.09917135629802942,0.7128076809458435,0.6586078940890729,-0.3094177790917456,-0.06285308953374624,-0.062316957861185074,-0.67415592353791,0.8906280645169318,0.5791536099277437,-0.8611993109807372,0.8904987871646881,0.7552700540982187,-0.3342314111068845,0.32849153131246567,0.17746121250092983,0.2048272411338985,-0.7412458579055965,-0.6183705381117761,0.0609143627807498,0.36422334937378764,-0.999978628475219,0.038193123415112495,0.9387149862013757,0.364867587108165,0.14421575609594584,-0.3662702855654061,-0.7667646403424442,-0.27417399268597364,0.408731575589627,0.1459905575029552,-0.8145325472578406,-0.1460809246636927,0.5604961416684091,-0.5149690699763596,0.3903075885027647,0.3459440506994724,0.7178963455371559,-0.20817394088953733,-0.49435692094266415,-0.35700938757508993,-0.8023022231645882,-0.11293106339871883,0.9614319540560246,0.5912926187738776,-0.803492390550673,0.9343859036453068,0.13018910307437181,0.33439931739121675,-0.5569743132218719,-0.5903891734778881,-0.5521828546188772,-0.3760949014686048,0.9037800864316523,0.2579421252012253,-0.8761276979930699,-0.36035707918927073,0.631100672762841,0.5944038415327668,-0.8533008839003742,-0.13111481862142682,0.9858677163720131,0.5080894618295133,0.11349611962214112,0.05537510756403208,-0.9998719641007483,0.4432098940014839,0.7370466743595898,-0.2910944721661508,0.5975210210308433,0.631084359716624,-0.3494958351366222,0.7906240113079548,-0.3560109077952802,-0.38496248656883836,-0.5207147346809506,0.520397697109729,0.6433602306060493,-0.34172352962195873,-0.6296606133691967,0.173909577075392,-0.6556421057321131,0.7998899612575769,-0.9819300621747971,0.8810093463398516,-0.7646852233447134,-0.4666642779484391,0.27430240577086806,0.6083939052186906,-0.6555552994832397,0.04243010375648737,0.5249873432330787,-0.9866083790548146,0.9014259860850871,-0.4390293303877115,-0.07341527054086328,-0.11236161040142179,0.7619726206175983,0.964070470072329,-0.08842387469485402,0.6984211495146155,-0.5296144881285727,0.14304004097357392,-0.7532084151171148,0.22562056174501777,0.25057942187413573,-0.5206786780618131,0.7294168313965201,0.598515055142343,0.02920511970296502,-0.6618285169824958,-0.41928410762920976,0.8885885747149587,-0.36644617887213826,-0.6000902028754354,0.13094497565180063,0.23678309796378016,-0.173133778385818,-0.05539731774479151,-0.15592734515666962,-0.6460005999542773,0.28527304576709867,-0.5851716510951519,0.04690395249053836,0.9384048609063029,-0.8512552087195218,-0.5911187208257616,-0.520723489113152,0.42520095873624086,-0.2559989127330482,0.28872105898335576,0.9332666657865047,0.005336826201528311,0.5410793735645711,-0.15754049364477396,0.2568116467446089,0.28396809520199895,-0.8573268549516797,0.8113593757152557,-0.02503041597083211,0.5741731403395534,-0.33174729673191905,0.16255276929587126,0.3413103041239083,-0.12334675434976816,-0.7994150994345546,0.45379362953826785,-0.6437885174527764,0.8504208317026496,0.6192305576987565,0.5668157143518329,-0.33049623342230916,-0.29429124388843775,0.36590621061623096,0.008236522320657969,0.035002890042960644,-0.3590102456510067,-0.8404126497916877,0.37309647956863046,0.735772545915097,0.5101824831217527,0.016130937729030848,0.22421408724039793,-0.9436405450105667,-0.7732257489115,0.16962121985852718,0.8839696813374758,-0.24852822488173842,0.1392155191861093,-0.5398646420799196,0.8718957197852433,-0.3286906876601279,0.24317264882847667,-0.886807061266154,0.2595746172592044,0.2495925286784768,-0.7011321997269988,-0.49054018734022975,-0.46822463627904654,-0.45744567131623626,0.8785214158706367,0.11709759244695306,-0.9599361200816929,0.14201011275872588,-0.2870750995352864,0.7163114934228361,0.47498159063979983,-0.006557443179190159,0.46793886506929994,-0.47155574802309275,0.5350903449580073,-0.48650229116901755,-0.7546297581866384,-0.444251099601388,0.020733145531266928,-0.04984659422188997,-0.06364749604836106,-0.0674055078998208,0.49782509356737137,0.8098024870269,-0.07111116871237755,-0.783944196999073,-0.8158128201030195,-0.11877095978707075,0.6943007283844054,0.5198996225371957,0.06615249579772353,0.9177328003570437,-0.5069987773895264,0.04338667681440711,0.1527907932177186,-0.14745929930359125,0.3813530965708196,0.39823026629164815,0.8783455458469689,-0.6076782317832112,0.30116972466930747,0.718720683362335,-0.09754838608205318,0.972601973451674,0.8968118247576058,-0.6111110527999699,0.9886505957692862,0.7241992237977684,0.6462453603744507,0.6820693747140467,0.7387043433263898,-0.134026353713125,-0.16745750326663256,-0.5323814852163196,-0.9798228228464723,0.182269805110991,-0.5504199881106615,-0.39714922197163105,0.7533235992304981,-0.80114730540663,-0.9910770561546087,0.26980667002499104,-0.5169358439743519,0.22693402273580432,0.05845568235963583,0.06599146267399192,-0.04509757738560438,-0.6926017277874053,0.7600358468480408,-0.9298046655021608,-0.5176419247873127,-0.060048135463148355,0.7546882769092917,0.672937735915184,-0.7451009438373148,0.39770674146711826,-0.9255754225887358,-0.8674686243757606,-0.5357799995690584,0.5060591320507228,-0.965648639947176,0.5083674313500524,0.1553008258342743,-0.003122936002910137,0.030226883944123983,0.0008935080841183662,-0.7473656921647489,0.9056451036594808,0.7819463899359107,-0.5423224857077003,-0.5711399908177555,-0.9905660767108202,-0.50722367875278,-0.1553766643628478,-0.44085229793563485,0.7758375806733966,-0.5625966121442616,-0.029543181881308556,-0.24858586583286524,0.9989895382896066,-0.19700711965560913,-0.5487847537733614,-0.13851286098361015,-0.9719560206867754,-0.6080935290083289,-0.45350953470915556,-0.6487367078661919,0.06791894417256117,-0.4353903033770621,-0.6319433562457561,0.6597219249233603,-0.665907627902925,-0.6130411066114902,0.10894924495369196,0.7600693553686142,-0.15315317828208208,-0.4923876402899623,-0.09120804956182837,0.728891069535166,0.09631825471296906,0.3693082188256085,-0.395091091748327,0.7892846670001745,0.116143889259547,0.323336498811841,-0.6292944247834384,-0.6576671949587762,-0.7002369952388108,0.40902766678482294,-0.9251367538236082,0.00030577974393963814,0.7806248748674989,0.6705116597004235,0.418754565063864,0.20718106720596552,0.3489288091659546,0.3889877451583743,0.46383447060361505,0.913211730774492,-0.19196830550208688,0.568810909986496,-0.9136455333791673,0.6341487583704293,-0.0790180410258472,-0.3185877837240696,0.08290606737136841,-0.5960653182119131,-0.039156798738986254,-0.5275513185188174,0.818905052728951,-0.2240222180262208,-0.2831547474488616,0.2785942475311458,0.88413589540869,0.5165255758911371,-0.9098182497546077,-0.39446678571403027,0.5684257494285703,-0.3136553312651813,-0.26339336624369025,-0.05511583434417844,-0.7403545780107379,-0.1538861868903041,0.24030871177092195,0.3542945231311023,0.8015193748287857,0.2539523164741695,0.7713707843795419,0.7433357485570014,-0.7607360864058137,-0.6923716757446527,-0.16001397417858243,-0.7195855788886547,0.7925732964649796,-0.49394549056887627,0.4952255357056856,-0.8056726749055088,-0.2087787869386375,-0.5031326850876212,-0.1030113766901195,-0.6128270905464888,0.2533573000691831,-0.48532719584181905,-0.6222068853676319,0.46719702472910285,-0.8570797219872475,-0.7637440217658877,0.14842773647978902,-0.7239831928163767,0.3901281584985554,0.15121255861595273,0.7115059327334166,0.4534881515428424,0.9789618561044335,-0.7715429500676692,-0.21426755748689175,-0.6392107126303017,-0.7615833259187639,0.7396323466673493,0.5840130751021206,-0.6701370147056878,-0.8796799094416201,-0.66451784549281,0.18671713443472981,-0.1020437884144485,0.4538181545212865,-0.39873947063460946,0.3081547520123422,0.0938936029560864,0.1700373748317361,-0.7476604874245822,-0.0038221082650125027,-0.0470718233846128,0.7432621670886874,-0.5467827478423715,0.039847288746386766,0.6652883542701602,0.6225151061080396,0.4898200826719403,0.6559942839667201,-0.8688583835028112,-0.5114077278412879,-0.6081044469028711,0.7934642429463565,-0.9406683500856161,0.9817962613888085,0.3843859932385385,0.5816077212803066,0.8927707206457853,-0.4376532291062176,0.8478523101657629,0.2775890603661537,-0.724730683490634,0.16872662445530295,0.4354156912304461,-0.9334577857516706,-0.2988232187926769,0.15899635246023536,-0.3362111281603575,-0.179601585958153,0.2846940066665411,0.35148341301828623,-0.8708927789703012,0.8796575656160712,-0.6411964483559132,-0.3004746763035655,0.4857425121590495,-0.7685583778657019,-0.49237339617684484,0.4768403288908303,-0.0832895589992404,-0.5330301886424422,0.9238961599767208,0.8382935398258269,0.29017974017187953,-0.22204046742990613,0.18837389582768083,0.007299324963241816,0.11092050792649388,-0.1493429127149284,0.8178676944226027,-0.45739993872120976,0.529931241646409,-0.07760000787675381,-0.042086197063326836,0.8874360909685493,-0.10864787083119154,0.5931472945958376,-0.1291743670590222,0.6159997759386897,-0.6201894250698388,-0.48189923726022243,0.37788374722003937,-0.5571624734438956,-0.9314752272330225,-0.1948814638890326,-0.6637063608504832,0.23174430150538683,-0.9116956093348563,-0.9216101802885532,0.811817673034966,0.18508167006075382,0.006274265702813864,-0.0939312088303268,0.9215144240297377,-0.16593075077980757,0.7812177771702409,0.811916271224618,-0.7070891153998673,-0.8112403014674783,0.1441644267179072,0.4842476053163409,0.2267728829756379,0.37390916841104627,-0.7359409923665226,0.9615488252602518,-0.31964723113924265,0.15396772045642138,0.8447821168228984,-0.4601669432595372,0.017741641029715538,-0.357767456676811,-0.8859302448108792,-0.9395643589086831,0.7709920359775424,-0.802320359274745,0.21134228352457285,0.06240549357607961,0.0582974418066442,0.34741421742364764,-0.9985024589113891,0.8408498829230666,-0.44193666288629174,0.338629855774343,-0.18522528698667884,-0.2250422490760684,-0.7315282952040434,-0.3352914131246507,0.8124361759983003,0.19228893239051104,0.28624045429751277,-0.8305494314990938,-0.8500277078710496,0.8797399909235537,-0.903346233535558,0.4276236002333462,-0.941595914773643,-0.6020947997458279,0.3603479443117976,-0.5366901303641498,-0.9631703244522214,-0.9634595043025911,-0.42466340912505984,-0.06367787346243858,0.5269817602820694,0.5347271766513586,0.47594637935981154,0.4866933706216514,-0.7374327182769775,-0.524009105283767,0.09829091094434261,-0.7471224623732269,-0.2427602387033403,0.08096792735159397,-0.9829104500822723,0.8984944308176637,0.7880593980662525,0.2233534399420023,0.2822731859050691,0.07160711148753762,-0.8318307250738144,-0.9891777276061475,0.8824445437639952,-0.35691532446071506,0.888029448222369,-0.7213617810048163,-0.36522301100194454,0.03566765272989869,0.8138236314989626,0.3372740144841373,-0.8834854583255947,-0.22578202653676271,-0.7993434742093086,0.9820867790840566,-0.22901235753670335,-0.7402883814647794,-0.20593251893296838,-0.2950740302912891,-0.2299181241542101,0.25724895717576146,0.2729202429763973,0.10324055003002286,-0.6191628533415496,0.9128595562651753,-0.8730189758352935,-0.13345330394804478,0.05348782008513808,-0.39711500564590096,0.5847468553110957,0.9350843778811395,-0.7454731757752597,-0.09764403803274035,0.06949163600802422,-0.9408343830145895,-0.47045086324214935,0.5849715592339635,0.41079509258270264,-0.19622807996347547,0.82689527887851,-0.4166616187430918,0.32446316350251436,-0.05028155818581581,-0.8051748163998127,-0.798753117211163,-0.5517015182413161,-0.8108810926787555,-0.8332126424647868,-0.06909364927560091,-0.17105925315991044,-0.8442114037461579,0.653617799282074,-0.5403148895129561,-0.7713435138575733,0.8118174346163869,0.285617858171463,-0.02650721464306116,0.7016051425598562,0.8562480309046805,-0.7537524825893342,0.18147778743878007,-0.8109387448057532,-0.46109294006600976,-0.7914820848964155,-0.32212020829319954,0.5457028509117663,-0.45347767090424895,-0.9494433174841106,-0.32167851412668824,0.2466580243781209,0.25212548999115825,-0.3764007557183504,-0.5903102420270443,-0.7255881452001631,0.6519537689164281,0.3092562831006944,0.03942542802542448,-0.144750842358917,0.14673461159691215,0.026402022689580917,0.40138413989916444,0.26182069489732385,-0.743236047681421,-0.5484435893595219,-0.06790622742846608,-0.7173749166540802,0.4888172629289329,-0.4353163382038474,0.5559435863979161,0.8388649821281433,-0.3838096954859793,0.7983065769076347,-0.4543372546322644,0.5068965805694461,0.7066341466270387,-0.49767970805987716,-0.814124867785722,-0.6498081018216908,0.5518401660956442,-0.153651786968112,-0.9471405055373907,-0.9587100739590824,0.29765913682058454,-0.8616986554116011,0.9693987416103482,0.6343698217533529,-0.5895714140497148,-0.2896565059199929,0.8416608469560742,-0.850316081661731,0.6324849305674434,0.45016835583373904,-0.2765845628455281,-0.35055098915472627,0.752459148876369,-0.9480763096362352,0.7406674101948738,-0.7141446252353489,0.7233600430190563,-0.18145325686782598,-0.8455066727474332,0.4812048301100731,-0.5432917759753764,0.06748122349381447,-0.1671094810590148,-0.7101462124846876,0.8590086987242103,0.7023869617842138,0.3482621079310775,-0.8809486692771316,0.4665373098105192,0.19052367378026247,-0.6177189135923982,-0.4731060001067817,0.9825860881246626,-0.3462630743160844,-0.07586119417101145,0.8664112216793001,-0.2714996878057718,-0.5551817533560097,0.191795005928725,0.7558649103157222,0.330469963606447,0.43665554793551564,-0.7692334977909923,0.08076825551688671,-0.6418485129252076,-0.1770588643848896,0.1044156732968986,-0.0269551994279027,0.30564633710309863,-0.27283600764349103,-0.8014642135240138,0.517130256164819,0.1980766924098134,-0.4593837265856564,-0.7658742261119187,0.7847957517951727,-0.8164367442950606,0.3333188849501312,-0.7532417941838503,0.6318893912248313,-0.606553201097995,-0.6614328632131219,0.8836274393834174,0.2414979045279324,-0.8592723160982132,0.7847680104896426,-0.6408682903274894,-0.4888675641268492,-0.39761895360425115,-0.08727039583027363,0.9987880950793624,-0.6661972762085497,-0.5025294148363173,-0.6002347264438868,-0.12215031962841749,-0.8420289810746908,-0.949293966870755,0.1683430364355445,-0.3192198374308646,0.16987642087042332,-0.875258847605437,0.6936478284187615,-0.04700695630162954,-0.9816661207005382,0.19627066515386105,-0.11686431616544724,-0.0039306036196649075,0.5283756214194,-0.0392473004758358,0.3464249772951007,0.7235021758824587,-0.3633562698960304,0.9994067535735667,-0.5176685964688659,0.02862964477390051,-0.4549710489809513,-0.22583510680124164,0.7068842519074678,0.9480932550504804,-0.4186459993943572,0.2788373217917979,-0.8526798100210726,-0.26013453071936965,0.3344306326471269,0.3353680670261383,-0.8485291767865419,-0.7460541422478855,-0.37704325979575515,0.8265191521495581,-0.7012724014930427,0.28892172081395984,0.3701197546906769,0.4329228438436985,0.5807983819395304,0.25045890314504504,-0.14395692013204098,-0.9182884539477527,-0.19806585181504488,-0.4401400168426335,-0.730510232038796,-0.08313493942841887,-0.09370003826916218,-0.30298387724906206,0.3565878705121577,-0.23520921682938933,0.5388795682229102,-0.5590214976109564,0.04805077891796827,0.5121543775312603,0.75387392193079,-0.21751314774155617,-0.04474230017513037,-0.8063940368592739,-0.9248530496843159,-0.08117153123021126,0.9769923174753785,-0.8192698173224926,-0.737732645124197,-0.876952834893018,-0.3641571933403611,-0.7887869370169938,-0.41512620728462934,-0.238854028750211,0.6052233302034438,-0.6277418392710388,0.51573202945292,0.6678987815976143,-0.07320407452061772,-0.7883418924175203,-0.8084641518071294,-0.26317131938412786,-0.0066984305158257484,-0.6860458548180759,-0.8963910266757011,-0.5435516783036292,-0.011037245858460665,0.7489337977021933,0.28611671179533005,0.13160805869847536,-0.5277440748177469,-0.489920552354306,0.6593127567321062,0.04982554726302624,-0.6543477354571223,-0.21077958680689335,-0.7940382398664951,-0.1233778833411634,0.25596202863380313,-0.1524060727097094,0.02233189530670643,0.9552547833882272,-0.5947828600183129,-0.6437646886333823,0.13332578912377357,0.6181729407981038,-0.9217651844955981,-0.9247453203424811,0.7169375200755894,-0.03775967005640268,-0.8384161149151623,-0.18110361974686384,-0.4243630850687623,0.46810887521132827,0.6107655484229326,0.6361408862285316,0.603199050296098,-0.310867456253618,0.8857201850041747,0.12057566456496716,-0.7990534515120089,0.0781854335218668,0.3821894619613886,0.9553010975942016,0.24963772017508745,-0.8395838527940214,-0.8012700071558356,0.4854857684113085,-0.6475452836602926,0.6630261787213385,0.9978112513199449,-0.38830668199807405,0.6247004130855203,-0.11976198945194483,-0.033436382189393044,0.011640522629022598,0.7455066363327205,-0.8973811981268227,0.9585428340360522,-0.8287756713107228,-0.593665097374469,-0.6195799740962684,0.8553445776924491,0.391086527146399,-0.8861831654794514,-0.700064835138619,0.3720604479312897,0.05383246764540672,0.5123612489551306,0.33736167987808585,-0.3509429693222046,-0.8927100235596299,-0.6703415205702186,0.3302178354933858,0.8018637895584106,0.8191149830818176,-0.7912545427680016,0.18164678802713752,0.12561284331604838,-0.7783253886736929,-0.4244126994162798,0.5913383080624044,0.804092941340059,0.7362366588786244,0.5115539617836475,-0.10191436065360904,-0.8135235533118248,-0.9693603478372097,-0.4658637116663158,0.7085267156362534,0.1648442973382771,0.6171594583429396,0.9258514340035617,-0.4811669746413827,-0.5978831951506436,0.5920154992491007,0.5896699381992221,0.43995211087167263,-0.8290603240020573,-0.6037229490466416,-0.2219331548549235,-0.7161041744984686,-0.7287485324777663,-0.04126693867146969,0.6839065328240395,0.1891684732399881,0.45306839514523745,0.30437335511669517,-0.45666067441925406,-0.5174881280399859,-0.9315360863693058,-0.2858725334517658,-0.7799681681208313,-0.423239391297102,0.2965344903059304,0.11813445203006268,-0.46223654225468636,-0.21269506448879838,-0.25033770175650716,0.5013625617139041,-0.933494626544416,-0.9819732112810016,0.19636153243482113,-0.3297134004533291,-0.1986324000172317,-0.1829538713209331,-0.5424197874963284,0.7400530609302223,-0.43583958642557263,-0.3979737344197929,-0.5987208397127688,0.11733103450387716,0.008412627968937159,0.7693532048724592,-0.3203264600597322,-0.7208056258969009,0.24724626215174794,0.37475071055814624,0.6791906366124749,-0.6653068684972823,-0.8338799956254661,-0.13825616938993335,0.7859276467934251,-0.354186303447932,0.02100424189120531,-0.10666410718113184,0.8855710690841079,-0.4481732682324946,0.07538731163367629,0.15800930419936776,0.1786380484700203,0.759174529928714,0.2560740802437067,-0.5456839511170983,0.17586068250238895,-0.7703333240933716,-0.31445708218961954,-0.6640635160729289,0.6447550929151475,0.9278260781429708,-0.4522019997239113,-0.15979915531352162,0.23421508306637406,0.34607162931934,0.58510887529701,0.8849438116885722,0.4707323359325528,0.21650639036670327,0.6865212749689817,0.753863031975925,0.2670375816524029,-0.24809173494577408,0.7416969956830144,-0.5316902417689562,-0.9826700682751834,0.18660114612430334,0.7931978357955813,0.05203782906755805,-0.28756546741351485,0.9434719285927713,-0.8362774807028472,0.5859265429899096,0.26272882893681526,-0.2461955496110022,-0.7281452203169465,-0.6475406144745648,-0.9443253143690526,-0.2946632974781096,0.24994893604889512,0.0068001821637153625,-0.2387356599792838,-0.53096983442083,-0.12171137984842062,-0.7979394071735442,0.5088595733977854,0.9667387679219246,-0.3395292120985687,-0.00322010088711977,0.5683463010936975,-0.6272411746904254,0.23577486164867878,-0.7766428599134088,-0.8451625145971775,0.6904158866964281,0.8184864460490644,0.12905248999595642,-0.5275802286341786,0.5328277107328176,-0.23362918151542544,0.982133636251092,-0.906940056476742,-0.7294701589271426,0.8197916373610497,-0.47168962471187115,-0.6051785964518785,0.41777275083586574,-0.36482932791113853,-0.14207103615626693,-0.32014882983639836,0.621734821703285,0.37779194163158536,0.22117238026112318,-0.8652743152342737,-0.14650540426373482,0.7165327602997422,-0.7054279884323478,0.3402492571622133,0.9762310613878071,0.6246172627434134,-0.1335953287780285,-0.8095002365298569,-0.40032317815348506,-0.4134735595434904,-0.6410409496165812,-0.8369977385737002,0.55003199307248,-0.21680627018213272,0.46639108331874013,0.47144692530855536,0.27545161079615355,0.14655018504709005,-0.5576919727027416,-0.6839297940023243,0.27390214428305626,-0.19669327372685075,-0.9175756317563355,0.7665768885053694,-0.01751743210479617,0.922627470921725,-0.5559783731587231,0.8144100839272141,0.8929793164134026,-0.9404171002097428,-0.927678297739476,0.15323344944044948,-0.168980423361063,0.6532406904734671,-0.3114414825104177,0.5921752769500017,0.2869289517402649,-0.37938727252185345,0.5023365677334368,-0.9864829508587718,0.26810237439349294,-0.21315993927419186,-0.47083092061802745,-0.5428921841084957,-0.7755241086706519,0.9289910322986543,0.6317208549007773,-0.1888417094014585,0.9474480273202062,0.014556970912963152,-0.8365210299380124,0.7933350023813546,0.03167181508615613,0.7669347203336656,0.9893262577243149,-0.6228085123002529,-0.039502658415585756,0.42137202993035316,0.8896923926658928,0.16037384327501059,-0.2683517625555396,0.36719967843964696,-0.9214867698028684,0.6812569149769843,0.8853170480579138,0.06993826571851969,0.5715146348811686,0.22377265570685267,0.6600239714607596,0.05409979214891791,0.04986995970830321,-0.5315137202851474,-0.6008055955171585,0.5158391236327589,0.2825107602402568,-0.0053761424496769905,-0.21921462984755635,-0.5067200320772827,-0.15819685440510511,0.15353973954916,0.20323711866512895,-0.4216122152283788,-0.38519930420443416,-0.9575867061503232,0.47794016217812896,-0.3329938370734453,0.6987319714389741,-0.06603133212774992,0.5135086472146213,0.02522248448804021,-0.1504771807231009,-0.20702384412288666,-0.14183965185657144,-0.36828375374898314,0.050260304007679224,0.15800539031624794,-0.7788878194987774,0.20122453197836876,-0.09768762579187751,0.9783672071062028,-0.2972042025066912,0.562070844694972,-0.2576868808828294,0.4481676439754665,-0.4906164431013167,0.7282607201486826,0.6311389897018671,-0.2967622671276331,-0.0002678362652659416,-0.5036291843280196,0.30159779684618115,-0.10110955825075507,-0.49555521830916405,0.09199503529816866,0.9191086790524423,0.3473078114911914,-0.39447898929938674,0.31454121414572,-0.2692036721855402,0.33491777162998915,0.978738650213927,0.7839442598633468,-0.0037194686010479927,-0.6938584242016077,-0.9496002597734332,-0.9680545050650835,-0.4431173796765506,0.30813769344240427,-0.5770134958438575,0.3610640992410481,0.33777449233457446,-0.8534487765282393,0.07063270220533013,-0.693441575858742,-0.8534346111118793,0.9574673091992736,-0.6503118611872196,0.2899045180529356,-0.14735707361251116,-0.7755128368735313,-0.3162144352681935,0.4329961324110627,-0.2486153687350452,-0.18949944339692593,-0.01782382559031248,0.571502713020891,0.5633350135758519,0.4731290568597615,0.9342182911932468,-0.1785116042010486,0.7166403480805457,-0.34197748731821775,0.5335128782317042,0.4368257303722203,-0.30229335464537144,0.6079449858516455,0.7400782671757042,-0.06976766185835004,0.2798306946642697,0.43879178119823337,0.10370320919901133,0.5753846601583064,-0.15897043654695153,0.1740398765541613,0.16672465205192566,-0.2776847551576793,0.5681101377122104,0.059779084753245115,-0.08677889732643962,0.9187923045828938,-0.5361633584834635,-0.3098923391662538,0.9240404735319316,-0.9700063834898174,-0.305837266612798,-0.9514834336005151,-0.9057628861628473,0.12364963022992015,0.7919170493260026,-0.855795593932271,0.8131781830452383,-0.6355560915544629,-0.8664838285185397,0.6399369020946324,0.5081033892929554,0.3707157322205603,-0.06119759380817413,0.5906897317618132,0.7183600440621376,-0.11103377677500248,-0.17407874204218388,0.5773472241126001,0.5881652934476733,0.6632281132042408,-0.19776065042242408,0.1097193374298513,-0.9547708965837955,-0.8616796894930303,-0.6134764477610588,-0.19880095403641462,0.03003293788060546,0.9694815827533603,0.33648166339844465,-0.30135913798585534,0.5947450282983482,-0.4482769905589521,0.34392166417092085,0.4618870420381427,-0.7059169630520046,-0.3073482047766447,0.5944130015559494,-0.39325217017903924,-0.04434161493554711,0.3587163742631674,0.6419627629220486,0.9678514348343015,-0.6092374087311327,-0.021798711735755205,0.41825675312429667,-0.4581327917985618,-0.9808230102062225,-0.20265827886760235,-0.9917475106194615,0.4182198685593903,0.9984377818182111,-0.7616129512898624,0.09433608455583453,0.40879287058487535,0.8690442270599306,-0.7253542975522578,0.24828963354229927,-0.9083595518022776,0.5707859732210636,0.380201730877161,0.9548633797094226,-0.6706622173078358,0.06710314052179456,-0.42555828765034676,-0.9577240752987564,0.23669491661712527,-0.3455933555960655,0.7698441580869257,-0.829398606903851,0.004918065387755632,-0.5850783647038043,-0.14228042773902416,-0.49006713135167956,0.9582505486905575,-0.34237026050686836,0.612393653485924,0.7278700121678412,0.5484891664236784,0.4459208115004003,-0.36489104060456157,0.6454663099721074,-0.6161139183677733,0.3109887642785907,0.057864788454025984,-0.20867678243666887,-0.30040101846680045,-0.037073974031955004,-0.27256723679602146,-0.40566440904513,0.8060830025933683,0.646097635384649,0.33813206292688847,0.018492951523512602,0.0006370292976498604,0.9380398066714406,-0.9619242702610791,-0.34332957677543163,0.6631358372978866,0.8857328579761088,0.11454370385035872,0.24104035319760442,0.3113230620510876,0.12887919414788485,0.24126281077042222,-0.3916446380317211,0.9413666212931275,0.9652018146589398,-0.19427414750680327,0.027625633403658867,0.9563773199915886,0.5226064971648157,-0.3871189560741186,0.5203500152565539,0.010262537747621536,0.024840081110596657,0.7947534034028649,-0.3914635507389903,-0.5361274746246636,0.8493481473997235,-0.9637831449508667,0.25988962640985847,-0.7093870174139738,0.21742217149585485,-0.030575862620025873,-0.6452535022981465,-0.027628802694380283,0.9761168598197401,-0.7649281215853989,-0.9327982324175537,0.31219195714220405,0.9876585248857737,0.8287476464174688,-0.5252386801876128,0.9398815268650651,0.6463189078494906,0.15102377394214272,0.17691162507981062,-0.7075235126540065,0.42003390612080693,-0.6370554296299815,0.726413722615689,-0.039285742212086916,-0.3596421140246093,0.8160131508484483,-0.13228381425142288,-0.29850059235468507,0.7956475573591888,0.9079637392424047,-0.6250741938129067,0.9706433364190161,-0.4052218175493181,-0.2745818612165749,0.3344278079457581,-0.7413859241642058,-0.6172185251489282,-0.39664144860580564,-0.9616226986981928,0.6450083605013788,0.05600454332306981,-0.9944270201958716,-0.3394709643907845,0.1807339359074831,0.9170000581070781,-0.388461722061038,-0.7017451450228691,0.45934921177104115,0.6510132444091141,-0.2329957135953009,-0.6199260163120925,0.6708274078555405,-0.11521542863920331,-0.8783695558086038,0.4860285231843591,0.970961453858763,-0.4516668994911015,0.7532490845769644,0.40191694628447294,0.9529721918515861,0.8174078557640314,-0.524224357213825,-0.5376690947450697,-0.849840069655329,0.860878786072135,-0.448632147628814,-0.6328121903352439,0.34492276096716523,0.3905440694652498,-0.2992944400757551,0.835934991016984,-0.013993543572723866,0.2678478918969631,-0.1313821543008089,-0.08853459265083075,-0.08065488049760461,0.049066051840782166,-0.3542053261771798,-0.022829932626336813,0.2041684533469379,-0.5835851901210845,-0.7789879920892417,0.484085600823164,0.480604762211442,-0.19162676529958844,-0.10465156566351652,-0.7719578631222248,0.3544735726900399,-0.4011078719049692,-0.5083916722796857,0.5598952076397836,-0.00529542937874794,-0.14367843745276332,0.1042651510797441,-0.388295067474246,0.4870735495351255,0.6777883153408766,0.34508717944845557,0.9994340101256967,0.9760405253618956,0.4293981520459056,-0.22797988122329116,0.411050773691386,-0.8939170367084444,0.20344046922400594,-0.07187697431072593,0.8876484245993197,0.15897118160501122,0.24467860208824277,0.547524793073535,-0.9917270913720131,0.15908114006742835,0.6180628654547036,0.0607980047352612,-0.8507636315189302,0.5641048052348197,0.2812766791321337,-0.7129279067739844,0.8319181762635708,0.7770085562951863,0.7350374436937273,-0.20071511436253786,0.8483733842149377,0.3711462216451764,0.5356681514531374,0.6228826213628054,0.5394581207074225,-0.7617177786305547,0.9195585967972875,-0.8502454389818013,0.8137112581171095,-0.41942420043051243,0.5716972416266799,-0.07566121220588684,0.1364539097994566,-0.27632875367999077,-0.24802518263459206,-0.3431854681111872,-0.8212749864906073,0.7244124687276781,-0.5016108849085867,-0.400458388030529,0.12288884306326509,0.5095402831211686,0.4546193405985832,0.2090483163483441,-0.11656699469313025,-0.907820878084749,-0.868905599694699,-0.9949408071115613,0.8785895658656955,-0.9874894511885941,0.282619203440845,-0.5589398946613073,0.5386334760114551,-0.14271126501262188,-0.43294826056808233,-0.6334001845680177,0.19946216233074665,0.43606814136728644,-0.8478664197027683,0.9477408723905683,0.605185629799962,0.25449917325749993,0.703119252808392,0.1735714077949524,-0.879977326374501,-0.35419793147593737,-0.9218733063898981,0.8146837707608938,-0.6031868834979832,0.8825396113097668,0.5059262965805829,0.18064281530678272,-0.6187186129391193,-0.46128831058740616,-0.6936922431923449,-0.8363362015224993,-0.14688453823328018,0.09043431421741843,0.9346074075438082,-0.44470197008922696,0.8258037217892706,0.19010998541489244,0.07821322651579976,-0.27497744001448154,-0.28717412799596786,-0.9052494829520583,0.38791059190407395,0.8825594088993967,0.32597225857898593,0.02731005335226655,0.3566098539158702,-0.6830930598080158,0.30317109962925315,-0.4873337345197797,0.18053508969023824,-0.6427712705917656,0.6956241014413536,-0.7091865073889494,-0.05146900936961174,-0.814201008528471,0.7300072754733264,-0.7457022177986801,0.16446672100573778,-0.6836088816635311,0.36894145840778947,0.33329554134979844,-0.13775286311283708,0.8832113114185631,-0.07896521734073758,0.8499346957542002,-0.532799590844661,0.9973183856345713,-0.7208593771792948,-0.20689821522682905,-0.7934142062440515,-0.7212657369673252,0.11738278018310666,-0.6190097718499601,0.3353803167119622,-0.9981216690503061,0.29378828266635537,0.7817935720086098,-0.17532252799719572,-0.37371433805674314,-0.5115352687425911,0.7926741191186011,0.6613893383182585,-0.9710915638133883,-0.7327917744405568,-0.8878597915172577,-0.6076382417231798,-0.8604656010866165,-0.35037225438281894,-0.8387718764133751,0.04342361260205507,0.49691212456673384,0.7046993616968393,-0.13996532279998064,-0.8582708993926644,0.3169959890656173,-0.5665202420204878,-0.7221781848929822,0.24776480672881007,0.3094725823029876,0.9415650591254234,-0.039018896874040365,0.5473738703876734,0.3961340538226068,0.30979585740715265,-0.37038267171010375,-0.6799356690607965,-0.6100269975140691,-0.9948320216499269,-0.28939088620245457,-0.8988068578764796,-0.9413457754999399,-0.90760533278808,0.2579465890303254,-0.6176910577341914,-0.6567110824398696,-0.9317251732572913,0.9666143688373268,-0.0008380310609936714,0.6497782217338681,-0.9454793841578066,0.109150355681777,0.15253820968791842,-0.3487799884751439,-0.8643524963408709,-0.9488021703436971,0.4576887390576303,0.9501959718763828,-0.5959216095507145,-0.4780437652952969,0.1215395680628717,-0.5052694431506097,0.6850689835846424,-0.4945194320753217,-0.15663661947473884,0.4130554609000683,-0.06031443132087588,0.4573603621684015,-0.20118074072524905,-0.9047521078027785,0.48813095036894083,0.26338578201830387,-0.9411744708195329,-0.11011320259422064,0.7694487585686147,-0.9744053324684501,0.5559555627405643,-0.8809932959266007,0.451025219168514,0.2777886032126844,0.5156518942676485,-0.5161662199534476,-0.20107520278543234,-0.8638872592709959,0.03995038382709026,0.15818288177251816,-0.7751512848772109,-0.3158780066296458,0.7713033049367368,0.7173376088030636,-0.8397441194392741,0.7631083256565034,-0.19818350253626704,0.8064731443300843,-0.3492034305818379,-0.34413428232073784,-0.7748036435805261,-0.9313711645081639,0.11823766166344285,-0.9339156816713512,0.865090764593333,-0.08617875957861543,-0.6243338063359261,-0.5331232040189207,-0.09037315240129828,-0.40438674483448267,0.07115473132580519,-0.6070280023850501,-0.5529189733788371,-0.5561806210316718,0.14433692349120975,-0.9315256727859378,0.8309205607511103,0.41512784035876393,0.45324446028098464,0.664137146435678,-0.6983903837390244,-0.35250588972121477,0.8417901271022856,0.27623262582346797,0.6904985480941832,0.9461940312758088,0.1316273924894631,-0.07647521188482642,-0.9521942506544292,-0.519584231544286,-0.43722813250496984,0.7715915758162737,-0.8768757712095976,0.7678599180653691,-0.14748551975935698,0.32082089269533753,-0.7937467605806887,-0.8215270242653787,0.38631760608404875,-0.1344779566861689,-0.9111241162754595,-0.9072127747349441,0.9434574320912361,0.8842822257429361,0.16640410432592034,0.7775112618692219,-0.20092274900525808,-0.7120991093106568,-0.46787956450134516,-0.17166813602671027,-0.9212186713702977,-0.32746097864583135,0.6921975864097476,-0.8023055354133248,0.5808649216778576,-0.3192996443249285,0.6959831141866744,-0.3479942041449249,-0.7619587825611234,0.7028896603733301,-0.45122107584029436,0.8059241925366223,0.795278946403414,-0.6631462485529482,0.7749552694149315,-0.8416999224573374,-0.31575519358739257,0.32230745535343885,0.6776871192269027,-0.3379756845533848,-0.8718147976323962,-0.9576297937892377,0.3066193098202348,0.07842214265838265,-0.3545154230669141,-0.5923849027603865,-0.8083999301306903,0.5770129081793129,-0.6187985646538436,-0.517622166313231,-0.27920142700895667,0.0769742326810956,0.09217476518824697,0.029871146194636822,0.33816811768338084,-0.6503075868822634,0.7883433545939624,-0.9760636007413268,-0.10689022345468402,-0.45816961489617825,0.3760893400758505,0.6842014114372432,-0.8069351622834802,0.1682358798570931,0.4696323531679809,0.2290900256484747,-0.5177868087776005,0.7864664210937917,-0.03662609960883856,0.08459039265289903,-0.33477335423231125,-0.5193973248824477,0.3291692496277392,-0.9017068422399461,-0.49360724072903395,-0.53314324375242,0.5394309279508889,-0.4126461925916374,-0.46541151171550155,0.6191469714976847,0.5810525063425303,-0.6144191357307136,-0.034262312576174736,0.3911210591904819,-0.5749319642782211,0.4021958401426673,0.5374788627959788,0.0787054686807096,-0.7066833963617682,0.8739647502079606,-0.9993677120655775,0.6651491648517549,0.06138180661946535,-0.09712098119780421,0.18645656667649746,-0.6592904166318476,-0.8672093721106648,0.4389536236412823,0.1319954334758222,0.6601114301010966,-0.7828769069164991,0.5540795573033392,-0.8940670001320541,0.5288189062848687,0.29688307270407677,-0.24537316989153624,0.876164311543107,0.5408621206879616,0.9065398722887039,-0.08498781081289053,0.26427167281508446,0.26933248061686754,0.6866402430459857,-0.2663233382627368,-0.20025181956589222,-0.8579729138873518,-0.8509387010708451,-0.9179507824592292,-0.12335649598389864,0.6538690351881087,0.302662605419755,0.7214816613122821,-0.9646779582835734,-0.08649364253506064,0.16082468396052718,-0.6318535660393536,0.6415441688150167,-0.5030199228785932,0.5682265930809081,0.7760075409896672,0.04852795880287886,-0.06907938746735454,0.8071061889640987,-0.9920326042920351,-0.37965488946065307,-0.7657825648784637,0.16231568017974496,-0.13607988459989429,0.5992988785728812,0.39218853134661913,0.26895338809117675,0.5379978171549737,0.1991125075146556,0.6581219802610576,0.603768611792475,0.23557947063818574,0.15940216602757573,0.3582224119454622,-0.12972973613068461,0.8018542337231338,-0.8199199172668159,0.49157052859663963,0.3016376313753426,-0.024109728634357452,-0.5966480704955757,0.5185367986559868,0.14487386401742697,0.38378355046734214,0.004132845904678106,0.08471495471894741,0.5002912180498242,-0.49350927397608757,-0.8922581598162651,0.7064138068817556,-0.11693505803123116,-0.039225807413458824,0.7641537268646061,-0.1810151617974043,0.5403883885592222,-0.7210290068760514,-0.8958651009015739,0.43413858488202095,0.7450059335678816,-0.6543582105077803,-0.24598317733034492,0.4305109893903136,0.17816736595705152,0.27872109739109874,0.351159178186208,-0.8609419637359679,0.3504351726733148,-0.1634858436882496,-0.647470660507679,-0.8322897851467133,-0.8038985445164144,-0.7839435441419482,0.6362466989085078,0.8846885347738862,0.6290434752590954,-0.14009914174675941,0.1068304288201034,0.17224054457619786,0.053252174984663725,0.6297742128372192,-0.053693389520049095,0.22505953768268228,-0.8353837472386658,-0.5368502135388553,0.018896221183240414,-0.1448212005198002,-0.584416770376265,0.16284151142463088,0.6115280878730118,0.19585425546392798,0.47817254392430186,-0.16552649857476354,0.4642724748700857,0.24468541564419866,0.8138815849088132,-0.5317326113581657,0.9810155597515404,0.18141541117802262,0.8290148796513677,-0.5559417083859444,-0.8406992591917515,0.21399444062262774,0.8449793090112507,-0.4927567611448467,0.21564690535888076,0.8477872582152486,0.2864209087565541,0.7281496431678534,0.9723971229977906,0.5696291299536824,0.5267776879481971,0.12737734895199537,0.5611666841432452,0.20400275429710746,0.5894607165828347,-0.36705886851996183,-0.8144153971225023,-0.7537053418345749,0.5455360091291368,-0.9697775272652507,-0.4368027397431433,-0.5223937057889998,0.5580248516052961,-0.20047329319640994,0.7388275554403663,-0.5586922895163298,-0.08565406361594796,0.8675921438261867,-0.27967032650485635,-0.5625898060388863,0.687849473208189,0.33406818751245737,-0.9896896439604461,-0.2973243207670748,-0.7447766736149788,0.24673910159617662,-0.6028316374868155,0.6563011081889272,-0.8657133597880602,0.46619996475055814,0.4961372707039118,0.3874825448729098,0.9063998064957559,0.9184379023499787,0.57904147868976,0.630313384346664,-0.4771330892108381,-0.02425140980631113,-0.930349734146148,0.7248472073115408,0.12309778248891234,-0.003684293944388628,0.5519448048435152,0.9511639853008091,-0.3913374627009034,-0.6089623030275106,0.9035341995768249,-0.10958965495228767,0.5428745523095131,-0.17022215062752366,0.8820391078479588,0.4459591838531196,-0.009971216320991516,-0.9393399129621685,-0.25722984317690134,-0.34671561047434807,-0.715422997251153,-0.8153286823071539,0.21919863671064377,0.6269240151159465,0.4382969317957759,0.07633175002411008,0.18465290451422334,0.8608163227327168,-0.7658986672759056,-0.3074681106954813,0.15398271847516298,0.5523173799738288,-0.4673020541667938,-0.3551032720133662,-0.5672760382294655,0.4768950818106532,0.9672728995792568,0.5416922299191356,-0.23905601259320974,-0.20533618470653892,-0.9556386754848063,0.746407387778163,0.6680237827822566,-0.8239181190729141,0.8066931902430952,-0.8153052628040314,0.3054742240346968,-0.5977218807674944,0.1763046127744019,0.5578942866995931,0.9220070438459516,-0.4255979070439935,-0.6013320134952664,-0.10329062165692449,0.5186857534572482,-0.873343076556921,0.2157619083300233,-0.9464635886251926,-0.6856770664453506,-0.8260039151646197,-0.9924655533395708,0.8614291627891362,0.1911177090369165,0.11277463845908642,0.004968798719346523,-0.9642322324216366,-0.4651286262087524,-0.0352993062697351,-0.23487111320719123,-0.10837320238351822,-0.3853961545974016,-0.7827123454771936,-0.5005934881046414,-0.077680179849267,0.1551460879854858,-0.8392133205197752,0.24631253816187382,-0.1622801562771201,-0.027795081958174706,-0.362114186398685,0.6612089546397328,0.3849983038380742,-0.15332470508292317,-0.3120953761972487,0.649850485380739,-0.3826072015799582,0.7966821324080229,0.15613382123410702,-0.176230292301625,0.2918933229520917,0.9035077160224319,-0.4113076198846102,-0.2580586103722453,-0.9254571720957756,0.22921128803864121,0.8478313507512212,-0.27492748061195016,0.9691465576179326,-0.7820474193431437,0.33429582323879004,0.5050456100143492,-0.6055006375536323,0.6455176025629044,0.10134081775322556,-0.8688991796225309,-0.7791581526398659,-0.7669858182780445,0.9928702982142568,0.5085734012536705,0.6272983672097325,-0.348224941175431,-0.9677245984785259,-0.6675485782325268,0.3174970648251474,-0.6976951453834772,0.22093023918569088,-0.4433856583200395,0.747824789956212,0.507080998737365,-0.8944735787808895,0.4418598315678537,0.7328357617370784,0.7933207587338984,-0.9877023845911026,0.8893368151038885,-0.7590906601399183,-0.09662151709198952,-0.41105198906734586,0.11418862314894795,0.8499753642827272,-0.26133557595312595,-0.8441951521672308,0.3057386879809201,-0.22157173417508602,-0.6208005058579147,0.6002890802919865,0.5668669603765011,-0.030471867881715298,-0.5754635841585696,0.3931670165620744,-0.6218592021614313,-0.9053182834759355,0.8408734826371074,-0.620818049646914,0.5923350076191127,-0.03813985036686063,-0.6409827265888453,0.4631647411733866,-0.7821787684224546,-0.7306923833675683,0.34427113085985184,0.3987785056233406,-0.9944055858068168,0.5946285240352154,-0.9792311149649322,-0.07215903187170625,0.9752443800680339,0.3774365056306124,0.15397713333368301,0.2060213559307158,-0.6690147896297276,0.07601387239992619,-0.038109293673187494,-0.34183409437537193,0.5538734700530767,0.16733571328222752,0.022572769317775965,0.40262972889468074,-0.4760304493829608,0.8243452454917133,0.9756779759190977,0.18882772186771035,-0.46220605401322246,-0.34447500854730606,-0.28341928822919726,-0.20360184088349342,-0.577354300301522,0.3705154531635344,-0.26816696440801024,0.34987919637933373,-0.716391418594867,-0.23167962348088622,-0.7818005559965968,0.31750198593363166,-0.24004867067560554,0.6190764051862061,-0.004062965977936983,-0.5466208532452583,0.18776832288131118,-0.23213597666472197,0.41146210487931967,0.30920970998704433,-0.37542624259367585,-0.9653989924117923,0.47911776322871447,0.8931861259043217,0.2482622703537345,-0.9703822038136423,0.05790677620097995,-0.4202878954820335,-0.771234524436295,0.7740208716131747,-0.6365662715397775,0.1663515605032444,-0.5288001517765224,-0.03367193229496479,0.116480918135494,0.7943795206956565,0.72962237149477,-0.3289111121557653,-0.09412728762254119,-0.3747896319255233,-0.323244521394372,0.02804808784276247,-0.08546613901853561,0.901719965506345,-0.8330138041637838,-0.7867341320961714,-0.7384284157305956,0.1886708727106452,-0.9244903307408094,-0.6818455038592219,-0.3787134224548936,-0.658534340094775,-0.194881743285805,0.46654589008539915,0.9275476750917733,0.5128439306281507,0.963703999761492,0.23503360711038113,-0.6611874583177269,0.1306755393743515,-0.02835765341296792,-0.2683085990138352,0.47184013249352574,-0.9333236319944263,0.8765017674304545,-0.41797900199890137,0.19486739207059145,-0.46160496259108186,-0.5672291489318013,-0.7434392208233476,-0.3504038485698402,0.9839691859669983,-0.32792234560474753,-0.07222900120541453,0.220412852242589,0.9198963157832623,-0.4429331119172275,-0.04247221350669861,0.2265188959427178,0.20709205837920308,-0.9747701864689589,-0.673553409986198,0.25538117345422506,-0.5488052270375192,-0.6834284411743283,-0.40410718601197004,-0.3056052946485579,0.9542644629254937,-0.9120613425038755,-0.4483927935361862,0.5080477297306061,0.5147963827475905,-0.6258619194850326,0.18913327436894178,0.2494188491255045,0.6908019473776221,-0.066480309702456,-0.8474393514916301,-0.8754237680695951,-0.1761667700484395,0.08963204873725772,0.34142341557890177,0.8885225229896605,-0.5181840169243515,-0.9504921287298203,0.998800478875637,-0.8661025962792337,0.6057647620327771,-0.39074932830408216,0.8638477865606546,0.7073273928835988,0.5007528280839324,0.10037969145923853,0.8945392668247223,-0.39429508056491613,0.5087189078330994,-0.4859209773130715,0.17008965415880084,0.7686163340695202,-0.7967840214259923,-0.3795140450820327,0.3352544759400189,-0.7452747831121087,-0.32089765137061477,-0.5348337655887008,-0.8601963454857469,-0.0354587328620255,-0.5519140013493598,-0.526051813736558,-0.9790537981316447,0.9012832557782531,0.4393001855351031,-0.9914924576878548,0.8401347589679062,0.337181331589818,0.3596755713224411,-0.05634720390662551,0.18091674242168665,0.0716471797786653,-0.4406899716705084,-0.14988996414467692,0.4397960528731346,-0.6804597764275968,-0.25500825699418783,0.2520080329850316,0.6277070548385382,-0.5615946189500391,0.4910655110143125,-0.923463718034327,-0.9489027950912714,0.7190425884909928,-0.4704267140477896,-0.6953971171751618,0.7670145775191486,0.270665917545557,0.9768774071708322,0.1833312977105379,-0.9147461634129286,0.2828272241167724,0.16785523435100913,0.8104595863260329,0.6348465220071375,-0.22653561970219016,0.8130453182384372,0.33615161618217826,-0.46585973957553506,-0.6421934701502323,-0.39209340792149305,-0.4319640207104385,-0.4044228494167328,0.1928308242931962,-0.5672320150770247,-0.5589549741707742,0.7183152744546533,-0.802778406534344,0.732009144499898,-0.4765420784242451,-0.5009126719087362,-0.038629683665931225,0.9854869795963168,0.29491739021614194,0.975917421746999,-0.03928547026589513,-0.6069373385980725,0.6130354842171073,0.04266294417902827,0.8737214202992618,-0.7852684906683862,-0.8883005306124687,0.9358465876430273,0.6515258383005857,0.7303095981478691,0.5499825575388968,0.08967373473569751,0.09362605679780245,-0.6030701659619808,-0.1875377669930458,0.16627142252400517,-0.5272636194713414,-0.5559198441915214,0.33413026481866837,0.32487191865220666,0.2485750913619995,-0.4391326839104295,0.1701474990695715,-0.4127640179358423,-0.14510800084099174,0.5504350638948381,0.4342058845795691,-0.8329799682833254,-0.636653677560389,0.9907711544074118,0.9761125147342682,0.24276197887957096,0.5037420829758048,0.3592903050594032,-0.826688997913152,-0.9668103293515742,0.2634866563603282,-0.2777887601405382,0.30459993053227663,-0.726530366577208,-0.7544687078334391,0.045822519809007645,0.6526269665919244,-0.8242227658629417,0.6447304924950004,-0.16084130434319377,-0.3932914067991078,0.35005352925509214,0.8126310482621193,0.9336516135372221,0.6777502587065101,-0.24767699977383018,-0.0747156678698957,0.12302806274965405,0.8412197004072368,-0.2650603847578168,-0.6112248590216041,-0.45223975647240877,-0.6930168271064758,0.6504825293086469,0.3063813499175012,-0.32195181772112846,-0.4148430456407368,-0.9334241379983723,0.49275486217811704,-0.2821959238499403,0.8367478037253022,-0.7794064469635487,0.0016693254001438618,-0.8738528853282332,0.9946369579993188,0.23165574902668595,0.0075919474475085735,0.3091303464025259,-0.39788556192070246,-0.6728949500247836,-0.8516159611754119,0.3184648468159139,0.8089372669346631,-0.6942007811740041,-0.3430795958265662,0.6735520553775132,-0.24703758489340544,0.41183030884712934,-0.168580939527601,0.33184864092618227,-0.9045663829892874,-0.5909639024175704,0.21202207170426846,0.36975109996274114,-0.3870100053027272,-0.808654841966927,0.6579239116981626,-0.4056694731116295,0.07647000113502145,-0.8296898868866265,-0.21796809462830424,0.08107861131429672,-0.7507694149389863,-0.02689754869788885,-0.2589747770689428,-0.7833712692372501,0.3389392951503396,-0.5326472423039377,-0.549951586406678,0.45235941791906953,-0.3388495910912752,-0.08600305626168847,0.9247328159399331,-0.0835833796299994,0.09916441980749369,-0.605722492095083,0.6135328994132578,0.3139023305848241,0.9798426940105855,0.9448764240369201,-0.9044025894254446,-0.486882739700377,-0.8534119972027838,-0.008277896791696548,-0.05893898103386164,-0.251752742100507,0.7729600006714463,-0.7375873848795891,0.9685020768083632,0.22220028098672628,-0.6922136610373855,0.9517553299665451,0.6115668653510511,-0.17295583011582494,0.009955084882676601,-0.7861104030162096,0.6816850989125669,-0.3277846979908645,0.2574972859583795,-0.5127231772057712,0.3906133337877691,-0.25395011296495795,0.5081169782206416,0.050263417419046164,0.19962596846744418,0.6204484342597425,-0.04151922790333629,0.2865411867387593,-0.45189470425248146,0.8283735043369234,-0.5313730230554938,0.44117794558405876,-0.6321772173978388,-0.6361777796410024,-0.5794190722517669,0.2519354843534529,-0.015638171695172787,0.8025298472493887,0.19392018346115947,-0.9410615405067801,0.27845131466165185,-0.7123649693094194,0.6911910292692482,0.9169279634952545,0.3162798387929797,-0.341099901124835,0.298258398193866,-0.05094371875748038,0.3596254740841687,0.598724456038326,-0.27778818691149354,0.04077331395819783,-0.9997387486509979,0.8563649142161012,0.9726581098511815,-0.8060131724923849,-0.99353645183146,0.40876005170866847,-0.710593034978956,-0.7250744458287954,-0.8489725841209292,-0.7251200303435326,-0.45840861182659864,0.23604346066713333,-0.14919126546010375,0.8561099455691874,0.6363604916259646,-0.7188440198078752,0.8494376675225794,-0.2889927546493709,-0.5659026959910989,0.15833671297878027,0.0040589007548987865,0.805569932796061,-0.8775792038068175,0.8900064090266824,-0.8564907885156572,0.5908981896936893,0.13651514379307628,-0.9750661761499941,-0.28503032913431525,-0.4253436801955104,-0.1091698044911027,0.1659270036034286,0.3980580852366984,-0.013031129725277424,-0.3518567276187241,-0.15181302651762962,0.3196466937661171,0.5188629641197622,-0.7352855494245887,-0.2030275585129857,-0.16410191962495446,0.5245330580510199,0.5729055134579539,0.11733040353283286,-0.42776559572666883,-0.43656357610598207,0.25949948700144887,-0.9490326475352049,-0.23354328284040093,-0.6668123919516802,-0.16017191484570503,0.45979029033333063,-0.38240365544334054,0.3625573622994125,-0.2039616946130991,-0.45576777728274465,-0.9562404942698777,-0.43221669597551227,0.11818021908402443,-0.9344870247878134,0.5784110627137125,0.025575690902769566,-0.4996602423489094,0.5350012080743909,0.6501484839245677,-0.9957131091505289,-0.9403159087523818,0.6926114158704877,0.03599178045988083,0.6857604631222785,0.06883092178031802,-0.445324566680938,0.45004619751125574,0.8584446278400719,-0.04998388094827533,0.34991705790162086,-0.6926381876692176,0.6853619893081486,-0.8793101739138365,-0.05332724330946803,0.04918180080130696,0.037144440691918135,0.8117536418139935,0.8452866673469543,0.3189855767413974,-0.1335585005581379,0.9209693823941052,-0.6492985473014414,0.3476125942543149,-0.785894378554076,-0.5547790359705687,-0.26794831035658717,0.74653485044837,-0.4510716637596488,-0.7729484960436821,0.4056602083146572,-0.2824684092774987,-0.19699564157053828,-0.7074955124408007,0.35412677237764,0.211956272367388,0.3862692089751363,-0.697898565325886,-0.7638761685229838,0.3427571440115571,-0.4112729015760124,0.16364871012046933,-0.5817729397676885,-0.04859135206788778,-0.12287701712921262,0.6441170484758914,-0.8424762166105211,-0.8250423762947321,-0.20349165750667453,-0.6146485223434865,-0.4728415934368968,-0.3201244273222983,-0.4965957044623792,-0.7896683956496418,0.6996829505078495,-0.25825158413499594,0.08451117761433125,0.5396153987385333,0.6033103922381997,-0.30608846386894584,-0.8957018344663084,-0.9749446855857968,-0.2158747580833733,-0.4954255176708102,-0.9396580173633993,-0.7522458806633949,0.0861382419243455,-0.8808116842992604,0.5606950214132667,-0.8602538937702775,0.031053839717060328,-0.4357886230573058,0.8095301622524858,0.7542169685475528,0.7756922557018697,0.8432296179234982,0.5600942471064627,-0.8966696639545262,-0.040235661435872316,0.5704357316717505,-0.35266251070424914,0.5089476527646184,-0.6220348635688424,0.30981766851618886,-0.3541641109623015,-0.008031284902244806,-0.5946468566544354,-0.2220749887637794,0.8024364435113966,-0.5900757447816432,-0.4003757140599191,0.9485813854262233,-0.28521665651351213,-0.6106539247557521,-0.9489260548725724,0.14892080100253224,0.02474068244919181,-0.2779867690987885,-0.5337365344166756,0.5988586181774735,-0.8442090782336891,-0.47591021563857794,-0.544509710278362,0.17637973185628653,0.5230114897713065,-0.8897480089217424,0.7657565311528742,-0.019526964984834194,0.3861048254184425,-0.2090725153684616,-0.4224561001174152,0.6338914963416755,-0.1295607415959239,-0.9465124369598925,-0.5903362259268761,-0.44855003664270043,0.8497679592110217,-0.7719206693582237,-0.13200106052681804,0.2737417621538043,0.8192259217612445,-0.8993033329024911,-0.9266768950037658,0.6829926362261176,0.2665012557990849,-0.0626789047382772,0.8341240189038217,-0.6121893231756985,0.24145732494071126,0.5976839852519333,-0.5152440271340311,-0.820782552473247,-0.44376485515385866,0.2806964525952935,0.15113287046551704,-0.8675678758881986,0.7778173708356917,0.30481942323967814,0.9955150932073593,-0.6050467630848289,-0.08248716779053211,0.5817672624252737,-0.42665514117106795,-0.09989694319665432,-0.8588063069619238,-0.7102494561113417,-0.48716170294210315,-0.28819192247465253,-0.13757266430184245,0.652619085740298,-0.3299263450317085,-0.3768894118256867,-0.08314619632437825,0.36314108595252037,0.2268168176524341,0.5070920153521001,0.5315991160459816,-0.7705226489342749,-0.8618038576096296,-0.18001784291118383,-0.8386425627395511,0.11007709288969636,-0.24394044373184443,0.5976981618441641,-0.3270616182126105,-0.41651449352502823,-0.7651532609015703,-0.7610171809792519,-0.5554076721891761,-0.6552295335568488,-0.9024358098395169,-0.7805079319514334,0.5147452312521636,-0.05517562525346875,0.7440262129530311,-0.6186214131303132,0.0038936766795814037,0.2328434963710606,-0.6147135938517749,-0.43054948514327407,0.49259172240272164,0.5923317377455533,0.6113115879707038,-0.7870570127852261,-0.17311663087457418,0.6957839922979474,-0.6483871550299227,-0.7816273136995733,0.11467506922781467,0.9811040665954351,-0.9614399401471019,-0.13258057925850153,0.2965851933695376,-0.03790630726143718,-0.6309399525634944,0.3488414431922138,-0.41346065513789654,-0.7645509215071797,0.1280783568508923,-0.24058005213737488,-0.05428790720179677,0.580373702570796,0.33167318208143115,-0.6579953660257161,-0.77258107252419,0.6038463218137622,-0.14093905268236995,0.25624680798500776,0.18596835294738412,0.09911188296973705,0.07371756387874484,-0.36666964925825596,0.4353340994566679,-0.6705446457490325,0.3422223045490682,-0.3681232281960547,-0.3650022288784385,0.41153753036633134,0.2754474780522287,0.9730957727879286,-0.39747766172513366,0.9441878120414913,-0.3174289860762656,-0.47447051107883453,-0.4727089940570295,-0.6063600988127291,-0.10941334022209048,-0.5765631427057087,0.9172701169736683,0.45734508940950036,-0.5156866866163909,-0.6333670159801841,0.09449737193062901,0.7025423943996429,-0.988792906049639,-0.8646837007254362,-0.668570744805038,-0.8740434632636607,0.18188572954386473,0.33345917658880353,0.6052294764667749,-0.8476546979509294,0.9487743470817804,-0.13973280554637313,0.7051341198384762,-0.41307877050712705,0.5838134414516389,-0.49238925985991955,0.12633654521778226,-0.19252728950232267,-0.7346260431222618,0.828139747492969,-0.7194354408420622,-0.27635515108704567,0.8234234317205846,0.6585041559301317,-0.2815306093543768,-0.04069395922124386,0.6990838111378253,0.5028028832748532,0.11963458778336644,0.7182904961518943,0.8443672731518745,-0.736695661675185,0.7699977834708989,0.2678550989367068,-0.6790588083676994,0.6439393535256386,0.8959104055538774,0.2569536939263344,0.4223567470908165,-0.36159357568249106,-0.89537961082533,-0.7923668753355742,0.5570252658799291,0.8061907794326544,0.6333869122900069,-0.7611803482286632,0.34973280876874924,-0.4308336223475635,-0.47505093878135085,-0.6860739453695714,-0.3052873802371323,0.14538323460146785,0.23064023442566395,-0.6211101822555065,0.6134926420636475,-0.365212622564286,0.7316848477348685,0.3331713299266994,-0.6794964405708015,0.9398217885755002,-0.6554158991202712,-0.3404617737978697,0.727109260391444,0.3178030629642308,0.2670973767526448,-0.8688739030621946,0.46041419683024287,0.26934839179739356,0.8224445502273738,-0.7103309063240886,0.5732932975515723,-0.18959955032914877,0.10892423894256353,0.5502288350835443,0.2317701280117035,-0.7805275027640164,-0.5584878786467016,-0.2169059873558581,-0.7002895623445511,0.5725509254261851,0.8629825515672565,-0.9199989065527916,-0.32182833924889565,0.7083771699108183,0.46259556943550706,0.47544754669070244,-0.8095566150732338,0.03375073196366429,0.8571504936553538,-0.4293396519497037,0.9438803065568209,-0.8006557729095221,-0.7705119038000703,0.7883356050588191,-0.6611453210934997,0.6639532228000462,-0.26677864603698254,0.21393993636593223,-0.7560149137862027,0.9915661970153451,0.646556637249887,-0.8862524922005832,-0.4849545336328447,-0.4853914394043386,0.7650972409173846,0.8879330344498158,0.9974298467859626,0.6018518232740462,-0.29451523954048753,-0.023413567803800106,-0.41415512934327126,0.6723756929859519,-0.7622044184245169,-0.5912276445887983,-0.6639458569698036,-0.8353273118846118,0.7837100154720247,0.6589705771766603,-0.9871279904618859,0.4204436996951699,-0.0697522684931755,0.8592003392986953,0.06963499262928963,0.9293627762235701,0.10753520205616951,0.6974238716065884,0.12319898884743452,-0.2466608015820384,-0.9964580801315606,0.018464569002389908,0.09197556413710117,-0.8120367852970958,0.6810850729234517,0.6436210740357637,-0.08658691821619868,0.9289329927414656,-0.1813857345841825,-0.8473865850828588,0.9549344596453011,0.28127967566251755,0.24879495473578572,-0.25944969337433577,-0.6545244338922203,0.8733536307699978,0.4637893158942461,-0.434182483702898,-0.2972444607876241,0.10389937227591872,-0.3697659377939999,0.39865729631856084,-0.32652254588901997,-0.8057066164910793,0.07703756866976619,0.016843870747834444,-0.1898641251027584,-0.8148250528611243,-0.3740432164631784,0.6130528976209462,0.7111144019290805,0.12001389265060425,-0.77151590725407,-0.3029257985763252,-0.8365978403016925,0.9753732029348612,-0.15485362149775028,0.9648883556947112,0.3702840697951615,-0.3115390441380441,0.1575779370032251,-0.6978547880426049,0.16368548991158605,0.6406419039703906,-0.27317649498581886,-0.2723042699508369,0.5101671111769974,-0.502320499625057,-0.2043068907223642,0.21663072472438216,0.06909577967599034,-0.4361144653521478,0.10475493408739567,-0.47167798690497875,-0.7027562623843551,0.5266121015883982,0.37946103047579527,0.6140300016850233,-0.1184136806987226,0.1338250902481377,0.15847052121534944,0.8850798085331917,-0.7813506503589451,-0.15865943348035216,-0.8579852436669171,0.9921511062420905,0.21795323444530368,-0.337085273116827,0.9477402549237013,-0.6978854322806001,-0.15005262661725283,0.4343315474689007,0.3241523592732847,0.6215701354667544,-0.9254747969098389,-0.43248485773801804,0.6242191828787327,-0.6438812860287726,-0.9453559583052993,-0.986984321847558,-0.06241869647055864,-0.039913115091621876,-0.7412667623721063,0.6332297986373305,0.9279395337216556,-0.7717670598067343,-0.3769131791777909,0.3989060199819505,-0.4273969018831849,0.143174113240093,0.9849851801991463,0.9476733398623765,0.22088236035779119,-0.1877462831325829,0.46108978474512696,0.5272633265703917,0.018256752751767635,0.21750724641606212,-0.661013089120388,-0.9440290769562125,0.4949072333984077,-0.47837488492950797,-0.33040967863053083,0.8146711518056691,-0.7630565827712417,-0.22346172109246254,-0.13536835554987192,-0.6330544264055789,-0.8440113603137434,-0.6165722059085965,-0.8239403823390603,-0.6615898683667183,-0.8615312715992332,-0.39172900933772326,-0.353204685728997,-0.5287722256034613,-0.04788781329989433,-0.6186559572815895,0.9800710813142359,0.9497123616747558,0.5944518647156656,0.9828218212351203,0.6735360096208751,-0.571947286836803,0.057131894398480654,-0.6316754189319909,-0.9268367839977145,0.8179495143704116,-0.2096584914252162,0.37600958347320557,0.16962803760543466,0.4739525802433491,0.4051721631549299,0.5584867279976606,0.01011442905291915,0.018380234949290752,0.27918639592826366,0.7487887488678098,-0.2670930321328342,0.5296364957466722,-0.4989447798579931,0.30645602755248547,-0.28854437824338675,0.30606088414788246,-0.9490092289634049,-0.13284361874684691,0.7708740811794996,0.04159193905070424,0.13343469286337495,-0.8702145745046437,-0.37179087148979306,-0.950607827398926,-0.27897505182772875,0.9234485807828605,0.2864572126418352,0.03720254171639681,0.5574484458193183,-0.600858979858458,-0.13070912472903728,0.5540655166842043,-0.2540649785660207,0.7492865957319736,0.59587271977216,-0.26617596484720707,-0.5500536384060979,0.5789516041986644,-0.0946206753142178,0.5099215130321681,-0.2347768871113658,-0.5308331325650215,-0.31589617347344756,-0.9823862016201019,-0.01577667286619544,-0.18953727465122938,-0.5256254784762859,0.04109311103820801,0.04886906547471881,-0.6022526654414833,0.9132232749834657,0.8660181392915547,-0.4858367331326008,-0.9050976275466383,0.10174095444381237,0.6672216793522239,0.3970804768614471,-0.784259551204741,-0.4311759602278471,-0.578994819894433,-0.4012801693752408,-0.011317811906337738,-0.065589205827564,-0.9994746576994658,0.8859143159352243,0.7694225981831551,0.910801388323307,0.28500813245773315,-0.4720748458057642,-0.640131110791117,0.8558697123080492,0.6287923231720924,0.4397010365501046,0.038627708330750465,-0.2603688519448042,-0.9169656992889941,0.24850146053358912,0.7139657330699265,-0.4692055992782116,-0.22198235616087914,0.972464726306498,0.3123243940062821,-0.17358209798112512,0.9878589608706534,0.3394590546377003,-0.8014088375493884,0.49389397352933884,0.7420565341599286,-0.6155193438753486,0.033943939954042435,0.1423895531333983,0.22746300650760531,0.896650817245245,-0.34941495303064585,0.8312674369663,0.6802525804378092,0.5710817379876971,0.029204268008470535,0.41468929359689355,-0.0009197583422064781,-0.6529425256885588,0.12125401711091399,-0.6495506362989545,0.6092549432069063,0.17332842387259007,-0.5771336513571441,-0.2618078258819878,0.5775911579839885,-0.527936820872128,0.3703154344111681,0.6433070721104741,-0.6808215002529323,0.8559679351747036,0.22629102692008018,0.032201455906033516,0.6700672772713006,0.5763414422981441,0.8030696893110871,-0.2855082182213664,0.9020577906630933,0.331891349516809,0.21554453298449516,-0.3877837024629116,-0.9046153528615832,-0.7335992124862969,-0.01389916567131877,0.8047683052718639,0.19569538021460176,0.8263985989615321,0.9929992076940835,0.47735315235331655,-0.2913576466962695,0.28815686283633113,0.619867614004761,0.7302609728649259,-0.9656688077375293,0.5914579648524523,-0.8988177780993283,0.08557646349072456,0.14258894138038158,0.9793100683018565,0.7627625241875648,-0.2728458712808788,-0.5278904745355248,-0.10757832461968064,0.4967973059974611,0.35100450552999973,0.056131239514797926,0.27911802008748055,0.3410667576827109,-0.6732726460322738,-0.3593640960752964,0.9691885001957417,-0.3330983626656234,0.8664988405071199,-0.17086272919550538,-0.2532284357585013,-0.8120620469562709,0.5817712997086346,0.6132849394343793,-0.36415080819278955,0.6795870750211179,-0.057744608260691166,-0.5351259340532124,0.27534767938777804,0.18560044327750802,0.012280147522687912,-0.3651627185754478,0.23534493893384933,-0.9606046811677516,-0.8816612544469535,-0.11970136081799865,-0.6137456949800253,-0.6453231973573565,-0.14627999905496836,-0.410789102781564,0.8681803876534104,0.6315095410682261,-0.8246777965687215,-0.8821421591565013,-0.43816753569990396,0.13647283613681793,0.3322007446549833,0.772958792746067,-0.39469647174701095,0.5335856708697975,-0.09398496244102716,-0.3114801859483123,-0.4167925785295665,-0.43945677671581507,0.7359161470085382,0.023650909308344126,0.734822818543762,0.3872520471923053,-0.9096066569909453,0.9051945493556559,-0.6752367662265897,0.15866014081984758,0.104412323795259,0.39992841286584735,-0.24301406554877758,-0.8077383106574416,-0.12138673616573215,0.012159655336290598,-0.6985589605756104,0.5374967618845403,-0.32165807439014316,0.44376737950369716,-0.03803804749622941,-0.5966428429819643,-0.4195157620124519,0.19341806694865227,-0.6416933899745345,-0.28693507611751556,0.5508331004530191,0.3457584739662707,0.30804632091894746,0.049590435810387135,-0.5722182532772422,-0.9522277233190835,-0.3041506549343467,0.08059587609022856,0.8972223773598671,-0.8713628458790481,0.6033778265118599,0.14570781169459224,-0.1700802380219102,-0.41509914631024003,0.34946681512519717,-0.8872362468391657,-0.2032205411233008,0.7117503420449793,0.541766595095396,0.32558278273791075,0.02784689050167799,0.8363311314024031,0.007370764389634132,0.10499168559908867,0.2012841352261603,0.13293666997924447,0.852011093404144,-0.33534622099250555,0.6138470135629177,-0.589432215783745,0.24658608296886086,-0.21923319855704904,0.06816463079303503,0.42685951944440603,-0.32682956708595157,0.9903192692436278,0.9745979425497353,0.3544964240863919,-0.631629825104028,0.28596528246998787,-0.5333167398348451,-0.4733391972258687,0.9383089509792626,-0.37370980298146605,-0.2608992871828377,-0.14145250339061022,-0.09680095128715038,-0.07495316537097096,-0.15855215396732092,-0.5422975686378777,-0.013504461385309696,-0.8377463547512889,0.08450426161289215,-0.447532678488642,-0.8671371098607779,-0.09688093233853579,0.4250439493916929,-0.8084952421486378,-0.9738528351299465,-0.8964218562468886,0.1309871976263821,-0.8670853991061449,-0.5782086751423776,-0.6540519446134567,0.5528678148984909,0.23208657233044505,-0.643049075268209,0.6222732528112829,0.4688530243001878,-0.013215635903179646,0.0010106307454407215,-0.3805771041661501,-0.44633012311533093,0.6438502231612802,-0.23679738072678447,0.0868169292807579,0.7013878715224564,-0.41780039807781577,-0.7808694052509964,-0.7594136293046176,-0.5568403503857553,0.6228117779828608,0.5452046748250723,-0.7034296737983823,0.017837686464190483,0.4032544679939747,-0.3678708067163825,0.5630626361817122,0.7353715891949832,0.8079845360480249,-0.3546428931877017,0.8453002697788179,-0.7154559758491814,-0.47153338650241494,0.7770887967199087,-0.4425245956517756,0.4287692620418966,0.4345966102555394,0.29759756941348314,0.017495831474661827,-0.9630829491652548,0.4373428733088076,0.4624836342409253,0.259790763258934,0.1112402556464076,-0.9200946716591716,-0.3538898415863514,0.3078319882042706,0.8287865445017815,-0.6968381977640092,-0.7558689559809864,0.2692668749950826,-0.9548696912825108,0.16617490723729134,0.1868318417109549,-0.255784859880805,-0.784838788677007,0.9910035356879234,-0.29188248654827476,0.5489173247478902,0.8346642823889852,0.06994455447420478,-0.563450331799686,-0.5737478169612586,0.6914710532873869,0.8266654536128044,0.3802078193984926,-0.7070282911881804,0.07225897768512368,0.9954198501072824,-0.35785199189558625,-0.7803244101814926,0.9362877113744617,-0.6654545906931162,-0.8965187016874552,-0.012613538652658463,-0.0858666724525392,-0.3772975034080446,0.7532346844673157,0.6368995071388781,0.20748398127034307,0.6182282487861812,-0.06785237742587924,0.9599483883939683,0.31507154600694776,-0.5279751000925899,0.46962840063497424,-0.518276060000062,-0.4121763287112117,0.674061524681747,0.5848901113495231,-0.6477833767421544,-0.8406546390615404,-0.10119878686964512,-0.43015832686796784,0.6416433393023908,-0.2976853884756565,-0.04921396868303418,0.0690346690826118,-0.8396259779110551,-0.6002003033645451,-0.8102192934602499,-0.5980904428288341,-0.8839303567074239,-0.852834124583751,-0.45330624282360077,-0.45608794037252665,-0.6388745633885264,0.006298723164945841,0.5547911077737808,0.418406683485955,-0.20852608606219292,0.27168915094807744,-0.49726692121475935,0.5624804282560945,-0.5879396153613925,-0.519300707615912,0.29701628256589174,0.40851253969594836,0.15961518930271268,0.4637585016898811,0.22051187744364142,0.1606253683567047,-0.9782684212550521,0.10790700325742364,0.21801679162308574,-0.20899438625201583,0.16130639240145683,0.22444571228697896,-0.8302229112014174,-0.47131703281775117,0.25659580435603857,0.520292348228395,-0.054056691005825996,-0.2356542064808309,-0.7487785057164729,0.774088361300528,-0.7242059232667089,0.47236685222014785,-0.664795411285013,0.5630097663961351,0.7566062887199223,0.6143498029559851,0.5481242248788476,0.25498054502531886,0.33996191062033176,-0.25070920586586,-0.4838069695979357,0.3940974357537925,-0.4038427690975368,0.9087199051864445,0.8323963745497167,-0.3608451820909977,0.5322994920425117,0.34616726404055953,0.5348438490182161,-0.505711430683732,0.4247023365460336,-0.9478854457847774,-0.10455825133249164,-0.6427897373214364,-0.08120589703321457,-0.8490446051582694,0.3648534994572401,0.04273261781781912,-0.7740720701403916,0.3038049703463912,-0.5820166002959013,0.9627858479507267,-0.9457685234956443,-0.2105056457221508,-0.6824166695587337,0.22265728935599327,0.19484276371076703,0.11722766701132059,-0.03339227335527539,-0.17509526060894132,0.9907412230968475,0.7815029621124268,0.9505150900222361,0.9845698089338839,-0.038119735196232796,-0.38970636390149593,-0.333771537989378,-0.8622254277579486,0.3096496476791799,0.246522419154644,-0.3995790588669479,-0.298992068041116,-0.2667862088419497,0.748048429377377,-0.5561139937490225,0.12492972146719694,0.9728439934551716,-0.3115143682807684,-0.4076878381893039,-0.6210194644518197,0.6377720320597291,0.5798250092193484,0.9138101171702147,-0.0041292947717010975,0.9170341524295509,0.5085431509651244,-0.43252569157630205,-0.5208402606658638,-0.34088502591475844,0.7074970984831452,0.5691181947477162,-0.05688925739377737,0.6147202453576028,0.34656090615317225,0.08593628648668528,-0.8901269691996276,-0.5198178505524993,0.760305289644748,0.7025380278937519,0.9634630670771003,0.4752478050068021,-0.04895954439416528,0.5522108282893896,0.34477142337709665,0.24243852496147156,-0.336505230050534,-0.5291527761146426,0.0926474709995091,-0.43744006659835577,0.2894463515840471,0.7740882937796414,-0.23262728191912174,0.7557790768332779,-0.2664407519623637,0.4175265599042177,-0.044456759467720985,0.41459049144759774,-0.35453386837616563,0.3250085236504674,0.9983185171149671,-0.9572385693900287,-0.04001347254961729,0.4696813556365669,-0.19005193188786507,-0.9618016653694212,-0.9079936938360333,-0.9896425493061543,0.7641428466886282,-0.6070119859650731,-0.01917667919769883,-0.6953309047967196,-0.2558446335606277,-0.45946460124105215,0.8620804375968874,-0.32296643359586596,0.008478343021124601,0.39726894348859787,0.03455056715756655,0.18003704212605953,0.5933981714770198,0.5268928217701614,-0.2599958791397512,-0.5729087553918362,0.08209223160520196,-0.6565937255509198,0.11070219473913312,0.35994180850684643,0.2555098948068917,0.5726594161242247,-0.8096340792253613,0.3753662081435323,0.6734606651589274,-0.22283002408221364,-0.42109423223882914,-0.3456768449395895,0.4786694087088108,0.9695966336876154,-0.4513569725677371,0.8610217133536935,-0.3009645636193454,0.31536533078178763,0.09372461680322886,0.39092583768069744,-0.8315208540298045,-0.19877707585692406,-0.1419184491969645,0.15978321339935064,-0.3970071286894381,-0.47749884705990553,-0.18845842173323035,0.36347922030836344,-0.6929380251094699,-0.22143147327005863,-0.004693816415965557,-0.9763152180239558,-0.5937913511879742,0.9061272218823433,-0.3923619035631418,0.9508018917404115,-0.0507030407898128,0.004897621460258961,-0.7894114307127893,0.13440677104517817,-0.5283085079863667,0.22364620584994555,-0.8702804814092815,-0.5386426742188632,-0.1408361615613103,0.4197033988311887,-0.1993147423490882,-0.9292318122461438,-0.7838053279556334,0.8457158138044178,-0.44313338538631797,-0.3439636710099876,0.7787327938713133,-0.6196652720682323,-0.35602138470858335,-0.913960020057857,0.6359736756421626,0.22124470118433237,-0.8054708642885089,0.6181853422895074,-0.6267478996887803,-0.08605655422434211,-0.7389577608555555,-0.25604465464130044,0.656175026204437,-0.18022695230320096,-0.345223574899137,-0.3354244902729988,-0.07228322373703122,-0.43767270958051085,0.8373588379472494,0.17371706943958998,0.6218052241019905,-0.7919926703907549,-0.503071894403547,-0.7263083681464195,0.6074768528342247,-0.09235645364969969,0.3218830293044448,0.5099862823262811,0.579453625716269,0.06374961882829666,0.9589821547269821,-0.5621249470859766,-0.8756691869348288,0.09481186280027032,0.9467610297724605,-0.9490588777698576,-0.12340011959895492,0.02659904770553112,0.6631794879212976,0.5202652402222157,0.12498538848012686,0.2646197131834924,0.33759107207879424,0.6807882464490831,-0.7268954841420054,-0.8745536548085511,-0.7245453204959631,-0.16117218881845474,0.5911265686154366,-0.8123728255741298,0.4274606569670141,0.021786929573863745,-0.4674870357848704,-0.11336398357525468,0.9744157413952053,0.7292896052822471,-0.19825779972597957,0.8453440638259053,0.37790133198723197,0.09057324519380927,0.7747818031348288,0.4169548465870321,0.12168155331164598,-0.22345814481377602,0.2815986783243716,0.15195989375934005,0.374193103518337,-0.1066153566353023,-0.12106628715991974,0.10102309193462133,0.5205107973888516,0.3266419512219727,-0.03906177682802081,-0.41232627909630537,-0.31684548081830144,-0.7378688221797347,-0.04745309520512819,0.25788687774911523,-0.5586269074119627,0.1897833188995719,-0.861888806335628,0.8502152976579964,-0.6077157026156783,-0.1361612263135612,0.045632390305399895,-0.7990360916592181,-0.591280888300389,-0.07984847063198686,0.6288264011964202,-0.29226028686389327,-0.8279381906613708,-0.7083892161026597,0.2107653059065342,-0.44504721835255623,0.6545599335804582,-0.9305507335811853,-0.5069043170660734,-0.5007639210671186,0.837325535248965,0.7770424815826118,-0.04513997631147504,0.3311760015785694,-0.27068035537377,-0.5360533059574664,-0.3627149360254407,-0.007488489616662264,0.43979972740635276,-0.8822684460319579,-0.5263437503017485,0.9079591007903218,0.3305655471049249,-0.874261892400682,0.7727667707949877,0.5806971648707986,0.8085863045416772,0.7328367037698627,0.6622527320869267,0.4621336511336267,-0.0878512179479003,-0.9025287399999797,-0.151035962626338,0.39580155722796917,0.4263518271036446,0.5966009078547359,-0.8081305944360793,0.8691426832228899,0.472770054358989,-0.6960897110402584,-0.78391975723207,-0.4200893174856901,0.1885369778610766,-0.17680336954072118,-0.9794957106932998,-0.7170453695580363,0.8871069941669703,0.4505440331995487,-0.153644897043705,-0.5962398331612349,0.620677012950182,-0.09409064007923007,-0.8112024334259331,0.23103779181838036,-0.16566811688244343,0.4826749530620873,-0.09418135602027178,-0.08688851399347186,-0.5493095843121409,0.3147223093546927,-0.21498024137690663,0.09979454101994634,-0.45069732144474983,-0.7811432052403688,0.5885567213408649,0.4505250882357359,0.9569887728430331,-0.269918829202652,0.11165460897609591,-0.21945713320747018,0.8315983391366899,0.7356010745279491,-0.52018210478127,-0.37793660070747137,0.37549420027062297,0.4084235751070082,-0.5065221781842411,0.8182946410961449,0.5635861000046134,0.043169521261006594,0.16208206303417683,0.8175595649518073,0.2964312992990017,-0.8542600912041962,-0.47994067473337054,0.6418019933626056,0.8117013620212674,0.9313735668547451,0.13836384657770395,-0.026114013511687517,-0.6290859044529498,0.37682478968054056,0.3364864597097039,0.746395327616483,0.28682871675118804,-0.8217113288119435,0.2058198433369398,-0.9205365511588752,-0.5134439608082175,-0.13820323487743735,0.882500865496695,0.8024816811084747,0.32502172933891416,-0.26235458068549633,0.45425461046397686,-0.0679756193421781,-0.4498909953981638,0.38865630188956857,0.7136457641609013,-0.41524212760850787,0.5749834473244846,0.7891374374739826,0.13689568964764476,-0.276496478356421,-0.27099840342998505,0.07559862220659852,0.7484558145515621,-0.8017876078374684,0.4803580124862492,-0.8621409581974149,-0.5833611181005836,0.4459827025420964,-0.9913199595175683,0.349933844525367,-0.5970947537571192,-0.07426146138459444,-0.018574296962469816,0.8633057209663093,0.5409709541127086,0.3234479781240225,-0.21588903618976474,0.2676206612959504,-0.14491992769762874,0.010072863660752773,-0.5848490349017084,0.22172300051897764,0.5706175449304283,0.45203955052420497,-0.8306714654900134,0.7994313375093043,-0.4595500440336764,-0.9479806795716286,0.2471455573104322,-0.8063604347407818,0.6351368324831128,-0.6287448173388839,0.7179941684007645,-0.5431712027639151,-0.5147298970259726,0.8157032895833254,-0.06643210584297776,-0.45741963433101773,-0.40098916599527,-0.14487181091681123,0.15245369635522366,-0.9092778745107353,-0.3301148125901818,-0.6523480429314077,-0.7038384475745261,-0.6321274875663221,0.7795443702489138,0.46168520394712687,0.689975768327713,0.6185747366398573,0.9224834376946092,-0.3468570355325937,0.20851966785266995,0.0026722862385213375,0.5720779625698924,0.09131272835657,-0.3927962835878134,-0.07781139621511102,0.4344797828234732,-0.32944160467013717,0.9028759715147316,0.021547294221818447,0.21825940161943436,0.18858677055686712,-0.4202924841083586,0.37375372275710106,0.37298068031668663,-0.6001602523028851,0.5037206383422017,-0.8137523694895208,0.08821814740076661,0.2728154310025275,-0.7802614853717387,-0.7049446362070739,0.31854709750041366,-0.5798298842273653,-0.8405822603963315,-0.4646685039624572,0.19176305830478668,0.6333277486264706,-0.9474337641149759,0.5860700444318354,0.094215651974082,-0.625901946797967,0.3857309240847826,0.9885907173156738,0.9857257520779967,-0.07717695645987988,-0.5349583239294589,-0.02866939129307866,0.43914887541905046,-0.7817731257528067,-0.3444107938557863,0.9621194750070572,0.4179309164173901,0.7118456740863621,-0.043677469715476036,-0.6617762069217861,-0.7077333116903901,-0.20446119364351034,-0.4904954805970192,0.23868253407999873,-0.7323308852501214,0.5521289263851941,0.3459604191593826,0.9915683716535568,-0.0947664100676775,0.5087545369751751,-0.6898054420016706,-0.17417520191520452,0.46296363743022084,0.9592899531126022,-0.18870938336476684,-0.26228135358542204,-0.1509382757358253,-0.7184908702038229,-0.47336371382698417,-0.4305068887770176,-0.045510197058320045,0.3717576111666858,0.6199701908044517,0.7697441442869604,-0.7756233429536223,0.8282103901728988,-0.8902249126695096,0.9497994035482407,-0.19916326832026243,0.8834468764252961,0.12744366796687245,-0.9157595946453512,-0.7374119427986443,0.13093163399025798,-0.3201868599280715,-0.7009408269077539,-0.6992223490960896,0.18938826536759734,0.09109265170991421,-0.22497546998783946,0.20061920816078782,-0.8002705024555326,0.3245347640477121,0.5610291254706681,-0.010997868608683348,0.6843445277772844,0.8753402307629585,0.2337639476172626,-0.6996867121197283,0.016653824597597122,-0.7398815238848329,0.1421622601337731,-0.5604297923855484,0.13385337684303522,0.2890358646400273,-0.18113248236477375,0.8205084577202797,-0.08698069769889116,-0.6358467247337103,0.6378012616187334,-0.4466596879065037,0.650593523401767,-0.08349294448271394,0.20699467696249485,0.2611110396683216,0.6163074122741818,-0.36560973711311817,0.8896980406716466,-0.6042506392113864,0.3053348776884377,0.6373610780574381,-0.2616557595320046,-0.33775330474600196,-0.8615313330665231,-0.8985806531272829,-0.8988346965052187,-0.6531843282282352,0.23138377163559198,0.5295275277458131,0.5562819670885801,-0.021348827984184027,-0.12005190551280975,-0.08507009223103523,-0.18508099112659693,0.836351818870753,-0.3027878371067345,-0.38929354306310415,-0.7043806160800159,-0.5536123551428318,0.1323474980890751,0.4139496791176498,0.3433352056890726,0.2997870943509042,0.5769882672466338,0.7734215036034584,-0.29171053785830736,0.5688800676725805,-0.9311201153323054,0.8645135387778282,-0.3430281928740442,-0.24640656122937799,0.9423497198149562,-0.27758005633950233,-0.1663468275219202,0.3292989218607545,0.5737611819058657,-0.5019734711386263,-0.7504233648069203,0.19394843792542815,-0.3721754867583513,-0.34967649541795254,0.01490365108475089,-0.12785045057535172,-0.41308835707604885,0.1955544468946755,-0.6896168841049075,0.7544531226158142,0.8330542962066829,-0.5997318960726261,-0.8340630601160228,-0.9707886124961078,-0.5756349447183311,0.10335531644523144,0.9232572223991156,-0.485957580152899,-0.41576138604432344,-0.010193201713263988,0.7702167788520455,0.6057742550037801,0.6876332140527666,-0.24330256786197424,-0.1440126709640026,0.9042348139919341,0.8407747591845691,0.2422817451879382,0.8024161513894796,0.8651862577535212,0.461881629191339,-0.5159979839809239,-0.3032712391577661,-0.4310247735120356,0.370988673530519,0.9834904130548239,0.7220153454691172,0.3098717974498868,0.991394420620054,0.4624440586194396,0.644841406494379,0.36117064068093896,-0.23556129168719053,-0.01642272947356105,-0.7104800515808165,0.7072490719147027,0.5049630077555776,0.22599937953054905,-0.4184922850690782,-0.8427256844006479,0.8134828773327172,-0.7865089089609683,-0.34365854458883405,-0.8922344176098704,-0.3477983898483217,-0.731204298324883,0.7910869880579412,0.26265456061810255,-0.7953760395757854,0.21643170062452555,0.06525840191170573,-0.1525377230718732,-0.6141232610680163,0.03759648045524955,-0.1569232763722539,0.2116243289783597,0.38147633662447333,0.3915282655507326,-0.24948995793238282,0.946809038054198,0.2199394009076059,0.9040388558059931,0.9964578109793365,0.44250986352562904,-0.6503237094730139,-0.98357452172786,0.4357710941694677,0.9334109267219901,-0.43451076466590166,-0.28375659231096506,-0.4635656247846782,-0.2672300306148827,0.34931722190231085,0.626482788939029,0.18228674679994583,-0.36581227788701653,0.42437388421967626,0.4409230761229992,0.7665779027156532,-0.05340420873835683,-0.9195356001146138,0.22747648553922772,-0.6182527374476194,-0.1690954314544797,-0.4162925099954009,-0.7426273277960718,0.78664381057024,-0.13992063328623772,0.5848806514404714,0.0035602785646915436,-0.001966502983123064,-0.40107362158596516,0.2634474355727434,-0.8841511989012361,-0.7274615871720016,-0.5752579537220299,0.9031714759767056,-0.295461387373507,-0.2597831152379513,-0.4245958672836423,-0.9178201919421554,-0.8566368222236633,0.7468910939060152,-0.8519803206436336,0.48645636858418584,0.10591902583837509,0.0468790945596993,0.6997567927464843,0.8594758380204439,0.6066135428845882,0.0036321007646620274,0.11349599435925484,-0.6355749350041151,0.8652534480206668,0.7965035936795175,0.2101714708842337,0.5914513920433819,-0.7706073182635009,0.5859418837353587,0.1503299935720861,0.9643761641345918,0.025300324894487858,-0.636341982986778,-0.6546903592534363,-0.353036823682487,-0.9512858758680522,-0.32474538777023554,-0.9683006457053125,-0.9737968086265028,0.48571264976635575,0.9443407468497753,-0.1856646598316729,0.17772498028352857,0.06977810943499207,-0.7819795175455511,-0.056940581649541855,-0.8321997309103608,0.3177003404125571,-0.6511709969490767,-0.2931940988637507,-0.8313720929436386,0.7755129672586918,0.6581896198913455,-0.6011927337385714,-0.9098560567945242,0.9798424420878291,0.6593327270820737,-0.7433066922239959,-0.8551667891442776,0.8045395635999739,0.09967635106295347,0.12970316736027598,0.5020608794875443,-0.14793736720457673,-0.40706474566832185,0.9910569731146097,-0.3723281971178949,0.9881514445878565,0.42981778318062425,0.12999914307147264,-0.6069223005324602,-0.2574083558283746,0.9591349414549768,-0.09625368705019355,-0.19000856252387166,0.9265263644047081,0.8210082231089473,0.5117474473081529,-0.8850750657729805,0.05397145915776491,0.29252881091088057,0.8449371783062816,0.9813498179428279,-0.6055468451231718,-0.25609543500468135,0.22954964684322476,0.5150228319689631,0.403790975920856,0.18301836168393493,-0.061669171787798405,0.8207589793018997,-0.42970123514533043,-0.11135886702686548,0.5833573490381241,0.23367692343890667,-0.6949851214885712,0.8189380606636405,-0.8183876723051071,-0.5934826014563441,0.028231332078576088,0.9648233414627612,0.7687862724997103,0.5493825729936361,0.7702605612576008,-0.14066054672002792,-0.06683073891326785,-0.4651199197396636,-0.7138668210245669,0.856029761955142,-0.40107874432578683,0.3074926217086613,-0.2156800595112145,-0.3037113528698683,-0.8721314463764429,0.7024799585342407,-0.39860552083700895,-0.10353914136067033,0.8685175166465342,-0.7078081564977765,-0.4586683539673686,0.7986631873063743,-0.29037385853007436,0.7372116791084409,-0.4346093349158764,0.16701223887503147,0.7894075000658631,0.4680976402014494,0.8814759775996208,-0.6560962796211243,-0.07625151379033923,-0.8816301850602031,0.02924035442993045,-0.6594354980625212,0.046859086491167545,-0.22309609549120069,-0.26146400766447186,-0.008178620133548975,0.4616332449950278,-0.7570972396060824,0.6423069094307721,-0.5676178676076233,0.9796252306550741,-0.08939267508685589,0.6779291736893356,-0.47192974342033267,-0.27188988914713264,0.30280707916244864,0.7707504471763968,-0.9879445643164217,-0.8107453933916986,0.0023456625640392303,0.3108418872579932,0.175146019551903,-0.37940859934315085,0.2567040976136923,0.6005362654104829,-0.2818528078496456,-0.020928019657731056,-0.3973393402993679,0.2843504259362817,-0.10707986261695623,-0.5910445326007903,-0.32130490243434906,-0.9638809245079756,0.1855231379158795,0.02136504463851452,-0.5123689444735646,-0.8503289869986475,0.9443755825050175,-0.6887408699840307,0.34041790338233113,0.14099598862230778,-0.08601716440171003,0.9376163026317954,0.5715852091088891,0.6311966539360583,-0.010665886104106903,0.6792709911242127,-0.31399680860340595,-0.46865399135276675,-0.4575534895993769,0.2667516404762864,-0.22504349006339908,-0.8892772980034351,0.3795209499076009,0.5298135974444449,0.7242834335193038,0.45083280839025974,0.3544306103140116,0.8130135829560459,0.9170207842253149,0.517246451228857,-0.49390719132497907,-0.1444902983494103,-0.6141915675252676,-0.7556327590718865,-0.7178049995563924,0.9824009821750224,0.34199806535616517,-0.6720663388259709,-0.6846664836630225,-0.5633708881214261,0.13599210605025291,-0.5538600357249379,0.4978843634016812,-0.09590971749275923,0.07853960758075118,-0.2237952691502869,0.10874886065721512,-0.07535852491855621,0.9928897824138403,-0.45281647937372327,0.8490973170846701,0.1348280613310635,-0.13233367539942265,-0.8421320179477334,0.6437746868468821,-0.5597522724419832,0.5788328647613525,0.8768382743000984,-0.4713872647844255,0.11384506523609161,-0.03780463803559542,0.7821881622076035,0.12195538496598601,-0.38134946348145604,-0.11320968624204397,-0.48653193982318044,-0.8626792812719941,0.6488458141684532,-0.009513577912002802,-0.14939271518960595,-0.7412976985797286,-0.4651502347551286,-0.5935482541099191,-0.7278192611411214,0.1954754451289773,-0.9746508989483118,0.852787759155035,-0.4893083833158016,0.3318891548551619,0.6734792962670326,0.06865691067650914,-0.8852026993408799,0.2685283119790256,-0.7489332454279065,-0.868638604413718,0.9277893817052245,0.25619721971452236,-0.3987022237852216,-0.21863548923283815,-0.7141845631413162,-0.18935221107676625,-0.26142140245065093,-0.7499899989925325,-0.8858013390563428,0.08214824087917805,0.971568173263222,0.5870376052334905,0.4132576766423881,-0.5965923829935491,-0.4136601546779275,0.40614974312484264,-0.287370334379375,0.993742018006742,0.36549425823614,-0.032486232463270426,0.15241382690146565,-0.9309723852202296,0.18154800357297063,-0.021429226733744144,-0.24491875804960728,-0.7728350972756743,0.19508924009278417,-0.6831373171880841,0.6110935630276799,0.4710679482668638,-0.8126388271339238,0.5575381619855762,-0.21971393935382366,0.28299874952062964,-0.10453636711463332,0.36263708397746086,-0.3005265216343105,-0.896534604486078,-0.9493984943255782,0.8133439440280199,0.1702239871956408,-0.6474171080626547,-0.789871109649539,0.36241365736350417,-0.39200852485373616,-0.16063096886500716,0.9915538537316024,-0.07044708589091897,0.25958125200122595,0.6311107249930501,-0.7588225114159286,-0.6564053217880428,-0.21335706347599626,-0.31489019002765417,-0.4443036396987736,-0.40710240323096514,-0.39118022471666336,0.6079265843145549,0.6562051931396127,0.4372899765148759,0.5329483081586659,0.7357818665914237,0.2616199064068496,-0.5691597601398826,-0.4222060265019536,0.03313306951895356,0.102426846511662,-0.47995173931121826,0.6497597703710198,-0.37914817687124014,-0.18989906227216125,0.3710627453401685,-0.6050088130868971,0.7347150519490242,0.3265966949984431,0.16789303999394178,0.17504274612292647,0.6039302456192672,-0.8587051024660468,-0.4805097347125411,0.3412737352773547,-0.6729208561591804,0.6946490039117634,0.32216817792505026,0.6664602314122021,0.27831920981407166,0.5474015874788165,-0.9032430979423225,0.7817202606238425,0.19135695602744818,0.3069697506725788,-0.1214625178836286,-0.8180227852426469,0.12491239560768008,0.10704003972932696,-0.8524391162209213,-0.5337866670452058,0.8938399674370885,0.6755267647095025,0.5182270901277661,0.33902001567184925,-0.6373644480481744,-0.5035686776973307,0.7658116486854851,-0.2012958861887455,0.19859581533819437,0.2892524073831737,0.36179914185777307,-0.8620408237911761,-0.8197720847092569,0.7994870743714273,-0.8397213257849216,0.4678123537451029,-0.8103081029839814,-0.14698751224204898,0.5203099716454744,-0.5092396251857281,3.3068936318159103e-05,0.48709921538829803,0.47777033410966396,0.2016839487478137,0.15648250794038177,0.6624557594768703,-0.866510534659028,-0.6548908641561866,-0.10926111927255988,0.1016900041140616,0.4685911778360605,-0.6046669790521264,0.40020714700222015,0.3088499829173088,0.24695105338469148,0.9098078398965299,-0.6017982941120863,0.4154343199916184,0.5100734555162489,-0.006686065346002579,-0.2120841327123344,0.4049609890207648,0.08295482164248824,0.9405019087716937,-0.8814236144535244,0.8376965569332242,0.6548925037495792,0.3754921364597976,-0.9128885534591973,0.4162149950861931,-0.010431284550577402,-0.13346369238570333,-0.9766887873411179,0.2574401702731848,0.9397214530035853,0.1579280779697001,-0.4606340825557709,-0.5696906424127519,0.4813483892939985,-0.9759896649047732,-0.43249952932819724,0.8844600357115269,0.9013673714362085,-0.47728360164910555,-0.2199112754315138,-0.9304145467467606,0.6711037280037999,0.3447340037673712,-0.8376494720578194,-0.9720155000686646,0.6036376832053065,-0.7509080860763788,-0.48524510813876987,0.6168787353672087,-0.6985897310078144,-0.2290947693400085,0.49711818899959326,-0.28309122007340193,-0.8123263376764953,0.20177166955545545,0.37917180731892586,-0.4195623667910695,0.23263961914926767,0.3879998931661248,0.22917488683015108,-0.8947460507042706,0.995181237347424,0.8300152774900198,0.02789566945284605,-0.2872444912791252,0.37183628510683775,0.0464069745503366,0.1798251369036734,0.9386281184852123,-0.760205427184701,0.8088827952742577,0.5647953911684453,-0.9063011505641043,0.7279768008738756,-0.4547606511041522,-0.2684594984166324,-0.34471896616742015,-0.20391966868191957,-0.6491487910971045,0.9456339753232896,-0.7578348405659199,-0.3915310432203114,-0.3956840350292623,0.692620097193867,0.021687461528927088,-0.02138103125616908,-0.5699576726183295,0.7214725278317928,-0.34554096357896924,-0.4111850126646459,0.9692911789752543,0.22307748720049858,-0.4661431172862649,0.22595579782500863,0.6495320848189294,0.9454301386140287,-0.20514888036996126,0.4723920966498554,0.6294520352967083,-0.23103740764781833,0.7259126035496593,0.08561639254912734,0.337827717885375,0.9331535557284951,-0.5059461281634867,-0.1875529931858182,0.9082397846505046,0.3720441465266049,-0.8867921503260732,0.5931804925203323,-0.9615164208225906,-0.2578767482191324,-0.9843875518999994,-0.9619275783188641,0.9681592285633087,-0.2307865540497005,0.7908209692686796,0.4510998404584825,-0.014809068758040667,0.7565376861020923,0.1317711677402258,-0.031841570511460304,0.7968730139546096,-0.785062737762928,-0.8344589276239276,0.5299352346919477,0.19766090251505375,-0.021559229120612144,-0.5906418049708009,-0.9820112083107233,-0.35770497051998973,0.7191821588203311,0.4262390621006489,0.10776869393885136,0.16164915217086673,-0.568237291648984,0.25432417122647166,0.3902032352052629,-0.34446219075471163,0.6426606057211757,0.10311551531776786,0.9329387973994017,-0.5068438798189163,0.17060024151578546,-0.5723329829052091,-0.3234948646277189,0.5698944288305938,-0.451781602576375,-0.5525691206566989,-0.984386635478586,0.8632755926810205,-0.9881396186538041,0.09708222188055515,-0.7634759657084942,0.3467496777884662,0.40229256451129913,-0.2185728196054697,0.09707820042967796,-0.8254604283720255,0.24244519928470254,-0.40149722900241613,0.03335804445669055,-0.6378470067866147,-0.3084445707499981,-0.2789037711918354,0.4411717113107443,0.9040400953963399,-0.1825370192527771,0.4357422674074769,-0.9895828422158957,-0.7892039567232132,-0.3639898276887834,-0.43416682863608,0.5636761137284338,-0.690260817296803,-0.24370293645188212,0.7995975944213569,-0.8126919572241604,0.37716007558628917,0.22336338739842176,0.011734029278159142,-0.2316027502529323,0.47780697513371706,0.6831515049561858,-0.7104197372682393,0.2338256798684597,-0.7582061374559999,-0.26236356422305107,0.9758031396195292,-0.9595781303942204,0.7497518677264452,-0.41541565442457795,0.1016126056201756,-0.48797467816621065,0.3462722902186215,0.6133973733521998,0.49593377113342285,-0.8406766792759299,0.5705597661435604,-0.2878961623646319,0.4985898598097265,0.5752505054697394,-0.7376881865784526,-0.7917401702143252,-0.28999844240024686,-0.5168911162763834,-0.38823741115629673,0.015351125504821539,-0.10388661595061421,-0.8697693790309131,-0.08906379528343678,-0.9751884480938315,0.0901470105163753,-0.12379460642114282,-0.9872247357852757,0.34702166309580207,-0.7075146394781768,0.521036219317466,-0.5497152241878211,-0.24057019874453545,-0.23836437705904245,0.5574766849167645,0.6321420250460505,-0.5282549858093262,-0.3904757681302726,-0.9623645264655352,0.1806321470066905,0.8102031741291285,0.3069042507559061,0.2554010613821447,-0.9655213514342904,-0.9389873896725476,-0.01678634062409401,-0.36431564996019006,-0.12664050329476595,0.36829259851947427,-0.9670394202694297,-0.8315295022912323,0.41074878303334117,-0.9809661614708602,0.7095403550192714,-0.163110273424536,0.36791113298386335,-0.22757183481007814,0.2313066115602851,0.8162923259660602,0.21574242366477847,0.42287651635706425,-0.05246623698621988,0.9978570025414228,-0.11349422158673406,-0.009089542552828789,-0.6370229045860469,0.7480508079752326,-0.1761792921461165,-0.212882527615875,-0.6978336195461452,-0.24717771168798208,-0.8344409135170281,0.20505778538063169,-0.8922844789922237,0.8086337363347411,0.6001803088001907,-0.7377177402377129,0.36582515900954604,0.9231680473312736,0.26942643569782376,0.22200754145160317,-0.003821861930191517,-0.36371980980038643,0.7496185689233243,0.6612562392838299,-0.052721415646374226,-0.18392503028735518,-0.7701804647222161,0.8165139523334801,0.7051672614179552,0.41236391058191657,0.08970822859555483,0.4608298339881003,0.9489839789457619,0.0024696309119462967,-0.7481756154447794,0.9280617497861385,0.7202789504081011,-0.3819786552339792,-0.5494426232762635,-0.6392516018822789,-0.9607536080293357,0.903438173700124,0.7209070678800344,0.7194827422499657,0.4705337919294834,0.2778124362230301,-0.6586705259978771,0.8300553108565509,0.5436834092251956,0.7578836581669748,-0.9262676038779318,-0.030202993657439947,0.599710229318589,0.9634695746935904,0.5266834148205817,-0.7404934763908386,0.9824860375374556,-0.5122892558574677,-0.4456760734319687,0.4851780761964619,-0.13864289969205856,-0.8028286332264543,0.23666117200627923,-0.07797230314463377,0.7350096995942295,-0.17027224181219935,0.3174420287832618,-0.17309139436110854,0.2835713941603899,0.9008365869522095,-0.8654373525641859,0.1692133634351194,0.5943230129778385,-0.22245941031724215,0.7430347404442728,-0.6635108273476362,-0.5753450049087405,0.9617079612798989,-0.8889467590488493,0.39012619759887457,0.9642663556151092,0.815778402145952,0.8760056248866022,-0.25553798768669367,0.6044696192257106,-0.8744843294844031,0.30729433987289667,-0.6641795332543552,-0.399078908842057,0.48181098559871316,0.08113826299086213,0.3631741921417415,0.3228685068897903,0.38149516051635146,0.5122254989109933,-0.7905838545411825,-0.28535462729632854,-0.9787206929177046,0.9411826957948506,0.8005569172091782,-0.8376040500588715,-0.34253461519256234,0.6136019276455045,0.5168522228486836,-0.72941191541031,-0.7361121186986566,0.6072073057293892,0.6721301139332354,-0.9861592203378677,0.4171369089744985,-0.4079680647701025,-0.1639617197215557,-0.41041148314252496,0.22234699502587318,0.8957910360768437,-0.33882542280480266,-0.5958520048297942,0.1383262211456895,-0.03281637420877814,-0.5198177387937903,-0.1554577467031777,0.6497408654540777,0.026457896921783686,-0.11453845631331205,0.3396737175062299,-0.6314637586474419,-0.9299036078155041,-0.06150931678712368,0.7760151484981179,0.6332397619262338,0.7505158870480955,0.179135387763381,0.861241634003818,-0.6164850536733866,0.4335683733224869,0.04322842322289944,0.5815425664186478,-0.8988802647218108,-0.025955855380743742,-0.8954086611047387,-0.5020453329198062,0.1936550340615213,0.5301519548520446,-0.4625317119061947,-0.6069580898620188,0.33869132259860635,0.37071810150519013,0.2657189192250371,-0.3965400797314942,0.07738390937447548,0.628228644374758,-0.9604036756791174,-0.6427798573859036,0.9362503024749458,-0.1537158666178584,-0.2895873552188277,0.14328794879838824,-0.29844755912199616,-0.35456583509221673,-0.7681237543001771,0.24423508066684008,-0.8839073413982987,-0.5511690895073116,0.36232544109225273,0.9401187305338681,0.5384008968248963,-0.43869410129263997,-0.7242899010889232,-0.5394560974091291,-0.9416044056415558,0.3653453099541366,-0.1209557680413127,-0.09387035761028528,-0.7579087680205703,-0.2319195093587041,0.4956948487088084,0.7931152610108256,-0.5326672890223563,0.7194324838928878,0.12179069267585874,0.44398470176383853,-0.22635244159027934,-0.15377588756382465,0.3772293902002275,0.4258555546402931,0.1046491046436131,-0.010871442034840584,0.6125971022993326,-0.3293736521154642,0.5972022376954556,-0.857081270776689,-0.5537920971401036,0.29569787066429853,-0.3463032706640661,0.06488629383966327,0.9000810137949884,0.24984977254644036,0.9420659076422453,-0.2945313174277544,-0.40651029953733087,-0.6073848232626915,0.44596361787989736,-0.5719714681617916,-0.6611484372988343,-0.05733388755470514,-0.8139020907692611,0.4844591780565679,-0.8355496940203011,0.049180382397025824,-0.9463941492140293,0.700437665451318,0.3669845024123788,0.9343762490898371,-0.4604597450233996,-0.7387564955279231,-0.3010927685536444,-0.8471121480688453,-0.657754669431597,0.9623935022391379,-0.28642967576161027,-0.24916954198852181,-0.42156301252543926,-0.37889780942350626,-0.36192166479304433,-0.3648597411811352,-0.6989794429391623,-0.5760952909477055,-0.6799127254635096,-0.011518959421664476,-0.3846275773830712,0.2445135056041181,0.046277633402496576,-0.64731635292992,-0.559362328145653,-0.12624829960986972,0.41028146585449576,0.06640512170270085,-0.5256765694357455,-0.24225223949179053,0.21414217771962285,0.654324728064239,-0.8538185684010386,-0.9771053036674857,-0.3606592286378145,0.9888672172091901,-0.93399757752195,-0.5725906454026699,0.5676290928386152,0.5020077563822269,-0.5304380711168051,0.7146761333569884,0.7792145935818553,0.3635170664638281,-0.4667891627177596,-0.9462296911515296,-0.7197247138246894,0.5899733901023865,-0.9340608860366046,-0.8126683365553617,0.10233763931319118,0.2958892388269305,0.8595004337839782,-0.3557981690391898,-0.919704441446811,0.9324366403743625,-0.25649006059393287,0.5272705536335707,0.2979536675848067,-0.4230089639313519,-0.6668030531145632,0.7627333854325116,0.8596635600551963,-0.9558257483877242,0.9409881299361587,-0.1724268700927496,-0.09634292311966419,-0.4131300849840045,0.16806222265586257,0.8515249215997756,0.08385918661952019,0.7117942622862756,0.9906214042566717,-0.80405282555148,0.3433236852288246,0.030743908137083054,-0.9313995498232543,0.6609576712362468,-0.29332428658381104,-0.143331378698349,0.373519049026072,-0.8852596068754792,0.005252353381365538,-0.7914933175779879,-0.4871309674344957,-0.9851819085888565,0.18427980644628406,0.9871499831788242,-0.09052056726068258,-0.39424571860581636,-0.3200147980824113,-0.8517071781679988,0.5521279312670231,-0.32409089198336005,-0.5380409192293882,-0.22389939380809665,0.2999708028510213,0.9227983639575541,-0.4171551438048482,-0.059488171711564064,-0.7777439188212156,-0.763765353243798,-0.5829426259733737,0.6673061903566122,-0.9205149267800152,-0.38359495671465993,-0.6918616201728582,0.706201917026192,0.5881930110044777,-0.7107686647213995,-0.18554254295304418,0.43685108656063676,0.8982105613686144,0.5041795559227467,0.24005085742101073,-0.514759368263185,0.970997289288789,0.06179567379876971,-0.03410124033689499,-0.38400952937081456,-0.9715155926533043,-0.6423478801734746,-0.9400874441489577,0.38956106128171086,-0.04814192187041044,-0.5153837641701102,-0.797013305593282,-0.8568619098514318,0.9167621876113117,0.09982976876199245,-0.6842326885089278,0.8978255433030427,-0.6529616359621286,-0.9248496317304671,0.6309672514908016,-0.07228209357708693,0.13067652098834515,-0.389315084554255,0.4644628521054983,0.949602257926017,-0.3318920801393688,0.40969324484467506,-0.3632780769839883,-0.8490502280183136,0.34953401889652014,-0.062257831916213036,-0.8360522384755313,0.21071611903607845,-0.6337034301832318,-0.3040237878449261,-0.014959121588617563,-0.509514169767499,0.375861095264554,0.4908795403316617,-0.5277135130017996,0.8618991221301258,-0.03310517780482769,-0.556914746761322,0.7182589168660343,-0.55477413861081,0.6728104534558952,0.4229381177574396,0.9529381776228547,0.13186856405809522,0.9630739674903452,0.6983141857199371,0.5324345235712826,-0.19104689825326204,-0.2686884901486337,0.9674341818317771,-0.9505243129096925,-0.4212298095226288,0.6872305320575833,0.7851442554965615,-0.29340970423072577,0.9676825399510562,0.9735215837135911,0.2710920488461852,0.5058268299326301,-0.04484371980652213,-0.5036914446391165,-0.17592718359082937,0.06921771820634604,0.5053971889428794,0.7539095808751881,0.9977228497155011,-0.6291865836828947,0.3233192525804043,0.7161960164085031,-0.2786231334321201,0.5337649080902338,-0.021927105262875557,-0.9642162760719657,0.24816028540953994,-0.8199948226101696,-0.37043110048398376,0.13469781773164868,-0.5564454537816346,0.8992375750094652,-0.5596472728066146,-0.9952138890512288,0.10611278284341097,0.9694850598461926,0.9916387312114239,0.40924581652507186,0.7454778030514717,0.8594716391526163,-0.9681413033977151,-0.4818725222721696,0.01911701587960124,-0.61498934449628,-0.49001228995621204,-0.6060379580594599,0.3885306818410754,-0.43547590589150786,-0.47520872205495834,-0.6567980591207743,-0.509505411144346,0.7836961592547596,0.5053136455826461,0.818160935305059,0.39035892160609365,0.06278024986386299,-0.19385964889079332,-0.8200862957164645,-0.24812977481633425,0.8266895827837288,0.5677079278975725,0.27030599350109696,-0.41730455914512277,0.7800088031217456,0.9617027235217392,0.6175607950426638,0.4196318844333291,-0.404116309247911,0.3778222193941474,0.1578752095811069,0.9212466622702777,-0.8148275539278984,-0.8323838291689754,0.13458822527900338,0.7941009136848152,0.6353514678776264,0.3056065933778882,-0.7675293236970901,-0.3662214111536741,0.4663000968284905,-0.7998780771158636,-0.17206510389223695,-0.2813875959254801,-0.7629024204798043,0.054327263962477446,0.08739490481093526,0.3055647425353527,0.6714578857645392,-0.42345953173935413,0.8904011999256909,-0.7056440864689648,0.09863142343237996,0.2680338127538562,-0.9891805155202746,-0.0397675191052258,0.3226976664736867,0.40770761994645,-0.5842256201431155,-0.34296478843316436,-0.5501332250423729,0.412685533054173,0.7049836027435958,0.5204928298480809,0.632470962125808,-0.20150620862841606,0.042363681830465794,-0.6827753898687661,0.6700493837706745,0.8615795085206628,-0.3336298721842468,-0.41023950232192874,-0.4810607973486185,0.13170898333191872,0.48708082688972354,-0.9821006706915796,0.6623823987320065,-0.34872653242200613,-0.4956854493357241,0.10174284130334854,-0.3660818520002067,-0.950956903398037,-0.7571343840099871,0.8228973485529423,-0.7285260898061097,-0.07841858314350247,-0.3785663456656039,0.761857817415148,-0.29652101919054985,-0.30864236410707235,-0.5032403422519565,-0.03706883266568184,-0.8817557008005679,0.9346041767857969,0.47224309761077166,0.015044488944113255,-0.2968322145752609,-0.9211032320745289,0.7659390005283058,-0.11108487145975232,0.6678556180559099,-0.25408855732530355,-0.7336440081708133,0.16663914872333407,-0.7300076489336789,-0.2790334699675441,-0.5327929863706231,0.7822559303604066,0.2484827097505331,-0.8164504156447947,-0.7802922143600881,0.930596177931875,-0.6915644067339599,-0.8927453896030784,-0.19599625235423446,-0.09664094168692827,0.9068626132793725,-0.27858955040574074,0.44625073624774814,-0.20098965195938945,0.2800211822614074,0.4436933761462569,0.7655389145947993,-0.2560699596069753,-0.9352127313613892,-0.13130978122353554,0.580918749794364,0.27800615364685655,-0.584998746868223,-0.34387157764285803,0.8172291610389948,-0.41177260084077716,0.09908773750066757,-0.30579851381480694,0.9974650042131543,0.7023574123159051,-0.21638632146641612,-0.8763872985728085,-0.5862424089573324,-0.4397698896937072,0.7599212913773954,-0.6860826476477087,0.6124135535210371,0.5517045520246029,0.13268414791673422,-0.023824671749025583,-0.551043710205704,-0.22692205663770437,-0.2322887941263616,-0.6375188543461263,0.18802444962784648,0.056094338186085224,-0.2815443193539977,0.6860054852440953,0.7369795306585729,-0.24499696027487516,-0.0031336736865341663,0.4987201294861734,-0.6021722685545683,0.6338559873402119,-0.18108820356428623,0.6953862644731998,-0.9790472942404449,0.7876654067076743,-0.008553827181458473,0.33184289978817105,0.2070928169414401,0.3682883088476956,0.9826553920283914,-0.15346996299922466,0.24738761829212308,0.7758934772573411,0.06797361513599753,0.545590034686029,-0.43291059182956815,0.21129445172846317,0.3036032384261489,-0.12500171223655343,0.7704342557117343,0.7599924285896122,-0.6766189937479794,0.7046226733364165,-0.7375689754262567,-0.6211520154029131,0.9281356278806925,0.4928797520697117,0.8174951020628214,0.5871059293858707,0.35921180015429854,0.48829429410398006,0.6353787719272077,-0.826458150986582,0.19153587380424142,0.796508377417922,0.6964904423803091,0.4316880851984024,0.42162882117554545,-0.5201519429683685,-0.7217576699331403,-0.420624609105289,0.8484182716347277,0.7507081623189151,-0.3907899227924645,-0.47733047511428595,0.1372969220392406,-0.8642952176742256,-0.8455584375187755,0.21971470164135098,0.953512046020478,0.40136433811858296,-0.9359220089390874,0.828499399125576,-0.835040146484971,0.5384889701381326,-0.5382224288769066,0.416108466219157,-0.6277103433385491,-0.09909400064498186,-0.23324267799034715,-0.3368183053098619,-0.9050003779120743,0.6039192331954837,-0.9106101794168353,0.6894808798097074,0.2486215904355049,0.6056196056306362,-0.5423924038186669,-0.7034428515471518,-0.2564383470453322,-0.18842713441699743,0.5144399404525757,0.7944030412472785,0.6534566855989397,-0.4549358901567757,0.23256801441311836,-0.10254740109667182,-0.8679411560297012,-0.8846683856099844,-0.23382537765428424,0.1619587428867817,-0.12525748647749424,-0.9197641969658434,-0.055595097597688437,-0.09310981864109635,-0.23980223899707198,-0.773100852034986,-0.7381388950161636,-0.8328201207332313,0.9565378371626139,-0.37718988163396716,0.5370042030699551,-0.7238762713968754,0.7485943618230522,-0.9429730037227273,-0.7218051254749298,-0.16077821282669902,-0.9137544119730592,0.8485914883203804,-0.4232513392344117,0.5294642392545938,-0.5420157667249441,-0.7888125125318766,0.08816092414781451,0.5776536087505519,-0.07323299627751112,0.8357801763340831,0.2880906704813242,0.8548320597037673,-0.3815253437496722,0.12358091631904244,-0.6550261434167624,-0.6900101946666837,-0.5011124196462333,0.02929921355098486,-0.8419245625846088,-0.6378165660426021,-0.09209225606173277,0.4366824869066477,0.9733113301917911,0.3827640269882977,0.3843399593606591,-0.7708317693322897,-0.5857013291679323,0.14290250465273857,0.2826423295773566,-0.8980683763511479,0.5462299012579024,0.07533977180719376,-0.3083309233188629,-0.5657669226638973,-0.9985187142156065,-0.8760458873584867,0.7997504356317222,0.021174948196858168,0.2848899425007403,-0.9365653800778091,0.9114506160840392,0.8192869774065912,0.3234918285161257,0.20166788157075644,0.2797708110883832,-0.06184007041156292,0.6410711533389986,-0.06259704707190394,-0.05309872096404433,0.8629112937487662,-0.606092547532171,-0.09034943720325828,0.6961796674877405,0.7723706196993589,0.16041718516498804,-0.07811521226540208,-0.7206455124542117,0.6226190123707056,0.72900445247069,0.16785857640206814,0.020334081258624792,0.7681758655235171,0.7052218453027308,0.04156047198921442,-0.7496712878346443,0.1482960688881576,0.47009215829893947,0.293722421862185,0.41832908103242517,0.48726679012179375,0.329642771743238,-0.6304435911588371,-0.24788635317236185,-0.3236570116132498,-0.16394983418285847,-0.33049308881163597,0.0069208755157887936,-0.612514840438962,-0.4636046369560063,-0.4366849074140191,-0.02197139197960496,-0.5266935992985964,0.005288691725581884,-0.7839898015372455,-0.28071962483227253,0.4382714065723121,0.6879086643457413,-0.5177560294978321,0.948242443613708,-0.3627269552089274,0.022141429595649242,-0.7406315361149609,0.33015808230265975,0.022748924791812897,0.9622526597231627,0.7886162744835019,-0.9791655354201794,-0.46827037911862135,0.56407635146752,0.9946861052885652,-0.8098533400334418,-0.6947568352334201,-0.552232232876122,-0.6069684568792582,0.38934666896238923,-0.6888495967723429,0.18033481016755104,0.48539516190066934,-0.6118134032003582,0.15709560737013817,0.08206405956298113,0.5732769342139363,0.17998039349913597,-0.04495341097936034,0.15101314103230834,0.8274060855619609,0.5512944851070642,-0.7122183623723686,-0.3070253976620734,0.9206904876045883,0.18481099884957075,0.38248744374141097,-0.4809915223158896,0.04853459633886814,-0.8803650639019907,0.31965431990101933,0.5504030794836581,0.9464579699561,0.8222545473836362,-0.43723504478111863,-0.7223260458558798,-0.9934604172594845,-0.29036095971241593,-0.04172894824296236,-0.4049428883008659,0.28831781866028905,-0.042814355343580246,0.641157794278115,0.5819998071528971,-0.46587534435093403,-0.5588984079658985,0.18995278840884566,-0.716855354141444,-0.11812065029516816,0.9798227874562144,0.6662675063125789,-0.9892082288861275,0.7947939895093441,-0.04473426518961787,-0.6763531505130231,0.12619254318997264,-0.4327159388922155,0.10519368993118405,0.9653167831711471,0.3596834186464548,0.5974638531915843,0.6821713601239026,0.15154872322455049,0.13598496140912175,-0.11798642436042428,0.6458682110533118,0.014484710991382599,0.17353027779608965,0.9486477058380842,-0.6857352103106678,0.539252458140254,-0.6738982726819813,-0.02259120438247919,0.3973012208007276,0.8362323921173811,0.11511419946327806,0.5920482655055821,0.1304021393880248,-0.15936637576669455,-0.05407441547140479,0.5758093618787825,0.20174023509025574,0.043767384719103575,-0.3724478301592171,0.037694386672228575,-0.9515924695879221,-0.36232458986341953,-0.13033519499003887,-0.06674386095255613,0.8692557723261416,-0.0590627696365118,-0.144319714512676,0.24146346049383283,-0.8809564150869846,-0.3798383600078523,0.38710371032357216,-0.7896506283432245,-0.672340665012598,-0.37230622628703713,0.0064407289028167725,-0.8318583411164582,0.03073416557163,-0.43690690537914634,0.7142644817940891,-0.9336363980546594,0.6067197872325778,-0.5998002011328936,0.41561050713062286,0.42037617368623614,-0.10856438055634499,0.03342503681778908,-0.3831019946373999,0.13377529056742787,-0.10249465564265847,0.2816218822263181,0.17379090981557965,-0.5611348124220967,-0.7134769107215106,-0.5050424374639988,0.26273065246641636,-0.89045255118981,0.38396526500582695,0.3865619651041925,-0.35208565136417747,0.988056103233248,0.254014840349555,-0.9084416585974395,0.35337198385968804,0.11071027116850019,0.6577582550235093,-0.5838897889479995,-0.5709917275235057,-0.1789465514011681,0.3629194125533104,-0.7858722070232034,-0.5506685511209071,0.0202182587236166,-0.09140432951971889,0.8424586625769734,0.24837737902998924,0.9647183469496667,0.37546347733587027,-0.7573304916732013,-0.2675353782251477,0.47634755726903677,-0.3405234874226153,0.3737811525352299,0.317928078584373,-0.6443105544894934,0.3248094362206757,0.888559396378696,0.6803922913968563,-0.6648002145811915,0.9097622446715832,0.5625975923612714,-0.24238702561706305,0.9928562017157674,0.7845376487821341,-0.7647399012930691,0.7992040733806789,-0.222659794613719,0.8039723816327751,0.866920396219939,0.034496570471674204,0.52910784073174,0.233932311180979,-0.026921173091977835,0.20573131227865815,-0.3091813949868083,0.6056334846653044,-0.2842942695133388,0.8008883129805326,0.5206693490035832,0.537972719874233,0.9529644954018295,-0.98158711893484,0.24903199961408973,0.3341713114641607,-0.0025968430563807487,-0.1963781355880201,0.10233567049726844,0.42522262036800385,-0.7690013232640922,-0.5210281051695347,-0.9333181227557361,-0.3484863182529807,-0.11236928915604949,-0.45064492896199226,-0.12390171457082033,-0.8106322791427374,-0.21090716775506735,0.8848866350017488,-0.6645016432739794,0.5237456569448113,-0.324341734405607,0.6978801996447146,0.5963744353502989,0.5240797908045352,-0.5400185980834067,-0.6396492742933333,-0.797714923042804,0.7951918602921069,0.2715721046552062,-0.9140054429881275,0.6887837667018175,-0.22367656929418445,0.8037587371654809,0.9110484449192882,0.3686838075518608,0.3428916987031698,0.28787985164672136,0.49494426464661956,-0.9803751148283482,-0.8621128601953387,-0.45351803954690695,-0.6498643471859396,0.2067638006992638,0.49900840036571026,0.3910225536674261,0.7979539060033858,0.3998059215955436,0.5095745050348341,-0.9553523077629507,0.31242138519883156,-0.4152160859666765,-0.5662308591417968,0.8201935114338994,0.962623190600425,-0.9247976634651423,-0.4492009407840669,-0.45718020712956786,-0.0986158074811101,0.48337505804374814,0.9048911738209426,0.6606107498519123,-0.23816839000210166,-0.511855571065098,-0.8693213569931686,-0.6793049615807831,-0.8140041339211166,-0.9933480280451477,0.23631107388064265,0.3670546552166343,0.149734556209296,-0.5120783876627684,0.8174717901274562,-0.9124646713025868,0.19467935478314757,-0.5363886361010373,-0.4980437704361975,-0.39897609408944845,-0.07713200943544507,-0.1819693618454039,-0.6417434560135007,-0.3636200902983546,-0.489920059684664,-0.9521438693627715,-0.6358857806771994,0.9173550782725215,0.19363556988537312,-0.858802483882755,0.10651516262441874,0.6822898196987808,-0.618882317095995,-0.5678303693421185,-0.029351511038839817,-0.9342404440976679,-0.49624956119805574,-0.804561517201364,-0.78994673024863,-0.23072348022833467,0.145474536344409,-0.40467016818001866,-0.7796516106463969,-0.36463746428489685,-0.9389925231225789,-0.5483787702396512,-0.3177832840010524,-0.39580584689974785,-0.7379168355837464,0.5274250628426671,-0.7836937475949526,0.9195232270285487,-0.6751135187223554,-0.7388080982491374,0.726497252471745,0.8304620739072561,0.7891592034138739,-0.8293372355401516,0.2814249130897224,0.19099615095183253,0.8532262407243252,0.9627286004833877,-0.3339193002320826,0.5220383913256228,-0.35240231920033693,0.5184744969010353,0.6321300943382084,-0.08079781383275986,-0.3886661031283438,-0.9241450517438352,0.3554786271415651,-0.15482879849150777,0.03463532868772745,-0.5775822675786912,-0.38886462431401014,-0.5505596501752734,-0.24890995537862182,0.7762015056796372,0.40873049292713404,0.36528753116726875,0.9864409030415118,0.5684136534109712,-0.4198977965861559,-0.1457605930045247,0.32016523089259863,-0.059272048994898796,0.2610489623621106,-0.42012873524799943,0.4547448791563511,-0.9387545520439744,-0.990707641467452,0.6538396165706217,0.7948634005151689,0.9874030812643468,-0.9606332671828568,-0.08882389636710286,0.21962082479149103,0.009141388814896345,-0.044134880881756544,-0.9574126834049821,0.015426624566316605,0.2619512411765754,-0.7683128928765655,-0.5016046357341111,-0.7823881735093892,-0.6915331645868719,0.7738523753359914,0.3743044538423419,0.49738062266260386,0.6358898459002376,-0.8395519880577922,0.4116728291846812,0.6664174655452371,0.5334305013529956,0.9980680835433304,0.9492736239917576,0.23147897236049175,-0.8652187758125365,0.3720266316086054,0.7067610491067171,-0.13154233619570732,-0.30604495387524366,-0.008039000444114208,0.48917325772345066,-0.37407782301306725,0.8406988889910281,0.45821982342749834,0.4356103977188468,-0.1282112803310156,-0.7898017251864076,-0.6506016720086336,0.3928148695267737,0.24306825455278158,-0.7169761955738068,-0.9529449166730046,-0.3502832828089595,0.9119957177899778,0.16944894986227155,0.20405805623158813,-0.31003053579479456,-0.5110958670265973,0.3431378472596407,0.01685813069343567,0.4042403846979141,-0.15115709090605378,-0.9695073678158224,-0.8713119891472161,0.523075754288584,0.35739560378715396,0.28501593321561813,-0.25302192103117704,-0.047167859505862,-0.5922375796362758,-0.3249998530372977,0.7559499833732843,-0.621134533546865,-0.4997411188669503,-0.5459211221896112,0.4697160650976002,-0.6518343281932175,0.49965592101216316,0.04938539303839207,-0.4146905681118369,-0.8543628440238535,-0.9014768935739994,0.964458221103996,-0.3437433522194624,-0.4121420900337398,0.3272883500903845,0.17523772036656737,0.06832993170246482,0.6571400281973183,-0.28182418504729867,0.06555967219173908,-0.6489149979315698,-0.3415207602083683,-0.1434319536201656,0.6106905471533537,-0.40178234688937664,0.6556658912450075,0.8549669324420393,-0.557144679594785,-0.22255895985290408,-0.8197351694107056,-0.9130646595731378,-0.6599812754429877,0.5048631173558533,-0.2896718457341194,-0.6663959864526987,-0.13696898892521858,-0.5369832934811711,0.6850709049031138,-0.8350044577382505,-0.30782390059903264,0.6902868263423443,0.970584019087255,-0.39904694724828005,0.24812168208882213,0.5836777007207274,0.6421973002143204,0.7535140067338943,-0.8683089092373848,0.34705426217988133,-0.9936694079078734,0.9434888162650168,-0.3147744997404516,-0.15466778632253408,0.8616152829490602,-0.14690559403970838,-0.2265514312312007,-0.20140115916728973,0.5663034906610847,-0.7439418658614159,0.8216304094530642,-0.5110788312740624,-0.9778652489185333,-0.9177236296236515,-0.6933348225429654,0.23671332281082869,-0.2717756498605013,-0.8143535573035479,0.6227929661981761,-0.7939805835485458,-0.9227036428637803,0.6307102432474494,-0.6171995927579701,-0.9378143940120935,-0.4285776102915406,-0.37850953452289104,0.3073379537090659,0.4095920720137656,-0.7875792300328612,-0.7607213645242155,0.42234416492283344,0.6696404628455639,-0.22798081953078508,-0.25083561055362225,0.04663118999451399,-0.691784372087568,0.9075780375860631,-0.6398286926560104,-0.052943163085728884,0.08146087545901537,-0.5865314179100096,0.10353339556604624,0.6750837936997414,0.7326240781694651,0.6880378858186305,-0.6079145600087941,-0.6674988479353487,0.1217527249827981,0.4805659740231931,0.8065822408534586,0.5866403742693365,-0.43261254485696554,-0.3604087750427425,0.8023194978013635,-0.07245108019560575,-0.7677464978769422,0.45338328927755356,-0.8099881820380688,0.0644614496268332,0.622045561671257,-0.3480205899104476,0.07703102054074407,-0.4789521829225123,0.0571770966053009,0.2608620375394821,0.47687099082395434,-0.6213176618330181,-0.24768115812912583,-0.49675343185663223,0.19555166875943542,-0.04117474518716335,0.9356610085815191,0.23491497058421373,-0.699420097284019,-0.2123204069212079,-0.700490334071219,0.1080919448286295,-0.4277272978797555,-0.4747673748061061,-0.38656645407900214,-0.33515445003286004,-0.3919499651528895,0.3848786326125264,-0.5065567991696298,-0.5608112933114171,0.516504371073097,-0.47175227431580424,0.4319343823008239,0.8590498575940728,-0.12584369955584407,0.8416838715784252,-0.05245648231357336,0.5368848205544055,-0.7989574582315981,-0.7134936517104506,-0.637313399463892,-0.6427364205010235,0.5395405571907759,0.31276984279975295,0.5580292544327676,0.5704380418173969,-0.218415264505893,-0.7380852252244949,0.5718360701575875,0.7008112496696413,0.34268026798963547,0.3025835924781859,-0.976354505866766,-0.9392346576787531,0.9208805724047124,-0.41376058105379343,-0.049270444083958864,-0.642913343384862,0.9042207733727992,0.0008589616045355797,0.6237295479513705,0.7980530895292759,0.2994799539446831,-0.2906741271726787,0.11549357930198312,-0.9199682832695544,0.16534972609952092,0.8602570365183055,-0.2765107350423932,0.05428882222622633,-0.07584052439779043,-0.05862059583887458,-0.5812158887274563,0.7733603063970804,-0.767066921107471,-0.9157505631446838,-0.5770676014944911,-0.943918822798878,-0.30082561587914824,-0.9553731363266706,0.3613894712179899,-0.24477185402065516,0.3641885258257389,0.7100386475212872,0.03694272506982088,-0.3562487890012562,0.9639761350117624,-0.5370601341128349,-0.4396752892062068,0.5723479399457574,0.4350650398992002,-0.3565152785740793,-0.08862745715305209,-0.8840540461242199,-0.4368331399746239,0.5573001015000045,-0.37588413152843714,0.6885606902651489,-0.5032041892409325,0.16507660504430532,-0.4696548152714968,0.24053139239549637,-0.0911953835748136,0.03558469656854868,0.3980489494279027,0.9514679489657283,-0.5712727610953152,0.8334328881464899,0.6757004507817328,0.7117443815805018,-0.16017317911610007,-0.8279650006443262,0.5310094011947513,0.7727457825094461,-0.2367076431401074,0.13928326684981585,0.5171030890196562,-0.29514972679317,-0.9789342670701444,0.38742415653541684,0.9902058355510235,0.3050905461423099,-0.830831928178668,-0.2741454071365297,-0.09011908946558833,-0.1615586942061782,0.5865692174993455,0.6974230655469,-0.45169873675331473,-0.5423494270071387,-0.9496108335442841,0.5887251496315002,-0.8087741550989449,-0.5421169535256922,0.9415669906884432,-0.6410288442857563,-0.34191208193078637,0.29611807549372315,0.48515721736475825,-0.2336690933443606,-0.5628114785067737,0.7549493312835693,0.4455688367597759,-0.6074862536042929,-0.43333854293450713,-0.9087651572190225,-0.8910776074044406,-0.8282782612368464,0.9772356594912708,-0.20667828433215618,0.4105123388580978,0.01617182558402419,-0.3385237851180136,0.32400922989472747,0.21945044631138444,0.12176687503233552,-0.6211545378901064,-0.9353445442393422,-0.964296359103173,0.04830437991768122,0.5869964323937893,0.9295420465059578,-0.9687823406420648,-0.3922103294171393,0.855710506439209,-0.8582245265133679,0.44499153504148126,-0.037956703919917345,-0.4347521080635488,0.42467884812504053,0.34446878591552377,-0.48435156932100654,-0.43386547500267625,-0.8544544284231961,0.5783904176205397,-0.4070269223302603,0.453871862962842,-0.08183537423610687,0.20241981511935592,-0.14521990809589624,0.9636261304840446,-0.566819375846535,-0.7864841460250318,-0.7178002158179879,0.1381241213530302,0.955911407712847,0.1570655582472682,0.5070941215381026,0.5783266415819526,0.5914012640714645,-0.9294165465980768,0.01466835243627429,0.024939694441854954,0.5743105439469218,-0.8466582107357681,0.7975168810226023,0.8150519011542201,0.5886470731347799,-0.11172719998285174,-0.7298440062440932,-0.1849725996144116,0.3402119209058583,0.5056717172265053,0.859956425614655,-0.9944227659143507,0.06047873245552182,0.0878773694857955,-0.42772645968943834,-0.7263965317979455,0.3393296510912478,0.6781856268644333,0.24766232492402196,0.5935793174430728,-0.9253167440183461,0.7522423956543207,-0.48668575566262007,0.11668380163609982,0.14239186514168978,-0.4822809617035091,-0.5285069146193564,0.48456401703879237,0.10494223888963461,0.2795030288398266,-0.8853460508398712,0.41521963058039546,0.05393778579309583,-0.8004263658076525,0.9142115749418736,-0.8983111944980919,0.6042644567787647,-0.5554859088733792,0.8887642784975469,-0.9353394745849073,0.49270665645599365,-0.5811074716039002,0.42579875187948346,-0.9637259170413017,0.7652546134777367,0.9615354617126286,0.745459299068898,-0.7964384215883911,-0.4808509685099125,0.05467107426375151,-0.13548196805641055,-0.4035566155798733,0.8503992520272732,0.9081462174654007,0.8623261884786189,0.15687328157946467,-0.49225837364792824,-0.6487716268748045,0.8110578758642077,0.0657313927076757,-0.45265194959938526,-0.2835598038509488,-0.24226557603105903,-0.20201642997562885,-0.8786606695502996,0.7075326452031732,-0.26246586674824357,0.4161603171378374,-0.7067426652647555,0.4641506439074874,-0.6117468690499663,-0.009683249052613974,0.0037935208529233932,0.8175596813671291,-0.8292123442515731,0.6592762321233749,-0.5008275448344648,-0.2163280975073576,-0.47220979118719697,0.82969183428213,0.8801442636176944,0.16369532654061913,0.5322920200414956,0.19584132870659232,0.14565453957766294,-0.19850221602246165,0.41298586037009954,0.055113636422902346,0.8355437791906297,-0.5510209538042545,0.8042586538940668,0.1408006059937179,-0.09862440638244152,0.6084483498707414,0.07031709514558315,0.18477180181071162,0.5735293170437217,0.7542786551639438,-0.660991495475173,0.963265004567802,0.32071923138573766,0.49260796094313264,-0.2362703368999064,-0.6764938086271286,-0.9232367617078125,-0.6073243953287601,-0.39685916528105736,-0.7304796455428004,0.8343485840596259,0.9996584663167596,0.7959011108614504,0.36492599826306105,0.6302815875969827,0.47744735330343246,0.016354377381503582,0.8721714690327644,0.7560387901030481,0.4158840663731098,0.9881757055409253,-0.39850084064528346,-0.50343137094751,-0.1661730702035129,-0.22579734493047,0.1672488572075963,0.8769960575737059,-0.5615375153720379,0.653998055960983,0.6921225860714912,0.11926781851798296,0.12286165589466691,0.2380126677453518,-0.1586792077869177,0.6448572240769863,0.8171264361590147,0.5276445359922945,0.648229256272316,-0.22239114064723253,-0.24260880146175623,0.5847831391729414,-0.7848801231011748,0.1594575336202979,-0.8192350654862821,-0.5635683601722121,0.3269888558425009,0.11877899011597037,-0.5842647906392813,-0.1676861261948943,-0.5911069251596928,-0.269344100728631,0.7395452032797039,0.7392642386257648,0.48224607622250915,-0.013694077730178833,-0.19372976571321487,0.31063720397651196,0.023463445715606213,-0.13838407257571816,-0.4177202149294317,0.7363713150843978,0.2021761117503047,-0.2727959086187184,0.4659565379843116,-0.14709605555981398,-0.274328850209713,-0.36286369152367115,0.593851531855762,0.04331162245944142,0.4105343474075198,0.0210650647059083,-0.3443647720851004,-0.4828102355822921,-0.4613196896389127,0.41742459079250693,-0.7574183940887451,-0.08737381221726537,0.8824468376114964,0.6013947930186987,0.5500251827761531,0.9405963122844696,0.11173012899234891,-0.30523893190547824,-0.7457244177348912,-0.9914439250715077,-0.429556414950639,0.7047837469726801,0.6123418845236301,0.4436280778609216,-0.3935810662806034,0.7641642522066832,0.1850576070137322,0.8902985583990812,0.5944304000586271,0.5630664620548487,-0.5739891622215509,0.010417405981570482,-0.9633696959353983,0.21922176098451018,0.71186479087919,0.8939123759046197,0.5146711301058531,-0.9166458328254521,0.1966497260145843,-0.031191179994493723,-0.10865462757647038,-0.31258881045505404,-0.7815677071921527,0.4741895627230406,0.21513816388323903,-0.23671115096658468,-0.5707618189044297,-0.480015579611063,0.2787319030612707,-0.45598309952765703,0.1717734495177865,-0.012334170285612345,-0.7582877702079713,0.7246359242126346,0.5642558471299708,-0.03916833736002445,-0.19704706082120538,0.3829279695637524,-0.6916367430239916,0.27841490507125854,0.988300337921828,0.13801365159451962,0.9464381872676313,-0.5086988019756973,-0.6734225447289646,-0.9473220459185541,-0.887282426469028,0.7441455638036132,0.9357136259786785,0.3600455061532557,0.8429555618204176,-0.4621653645299375,-0.8152149496600032,-0.8999586128629744,-0.040620329324156046,-0.8468726542778313,-0.9069112739525735,0.9178946381434798,0.8986575878225267,0.025164101738482714,0.4935181769542396,-0.43023817194625735,0.3473593262024224,0.0027059894055128098,0.2444070866331458,0.6808259431272745,0.4790396145544946,0.5899964468553662,0.7184287854470313,0.6846230179071426,0.09051141235977411,-0.2449106564745307,0.5630402760580182,0.46449818229302764,0.518185484688729,0.2721255226060748,0.8451811308041215,-0.9340707026422024,-0.6178514948114753,-0.37794033670797944,0.31084858160465956,0.9489015061408281,-0.13231282541528344,-0.8884866116568446,-0.7046299506910145,0.5221978547051549,0.7057417905889452,-0.4097418184392154,-0.35176579374819994,0.40489329723641276,0.5234881234355271,0.020211124792695045,-0.37910507433116436,-0.39612340880557895,0.8482954711653292,0.8492424725554883,0.3438344649039209,-0.4889462776482105,-0.45072039403021336,0.8990504606626928,0.3069703229703009,-0.0254163253121078,-0.702797332778573,-0.35294678527861834,-0.8470624280162156,0.7732111127115786,0.2657298045232892,-0.5735099343582988,0.5920688165351748,-0.45367148239165545,0.04780252929776907,0.6469769412651658,0.5353549993596971,-0.2059811195358634,-0.636130390688777,0.46288897562772036,-0.6382619859650731,-0.2732569626532495,0.7033812124282122,0.5682190600782633,0.7129341340623796,0.16906939866021276,0.011529015377163887,-0.5522461654618382,0.5158294476568699,0.35715581895783544,-0.4559538718312979,0.6534184743650258,-0.3396996767260134,-0.20910316845402122,0.7754381550475955,-0.11610746430233121,-0.8197583411820233,-0.6284131105057895,0.6919573391787708,0.12545280996710062,-0.11789319198578596,-0.06502147996798158,-0.0353751084767282,-0.06230354541912675,-0.04420631751418114,0.7704737968742847,-0.10417771385982633,0.9438680559396744,0.14810565067455173,0.3429886265657842,-0.6877234200946987,0.45380715001374483,0.930669030174613,0.5249397451989353,0.9310657028108835,-0.023017059080302715,-0.48889662651345134,0.5935486704111099,-0.6973867611959577,0.8551163873635232,0.08150263642892241,-0.5282517559826374,-0.8665073844604194,-0.9027710482478142,0.46606398513540626,0.2956607644446194,0.8139446885325015,-0.5307782678864896,0.9166260329075158,-0.6795670809224248,0.3972664983011782,0.32184084178879857,0.19278486212715507,0.8626079680398107,0.14515694603323936,0.25563721684738994,-0.5019294354133308,-0.8957712147384882,-0.3398986510001123,-0.787864079233259,-0.4881777912378311,0.3277665697969496,-0.7108076410368085,-0.18281821068376303,0.3345646425150335,0.13664249377325177,-0.6838210951536894,0.14610537979751825,-0.5142554971389472,0.5662693064659834,-0.8623311086557806,-0.7258675177581608,-0.3514299844391644,0.03606627369299531,-0.9778025490231812,0.5779029717668891,-0.5398254920728505,0.9571386906318367,0.6501137749291956,0.12422207603231072,0.33697241777554154,-0.7253489070571959,-0.7415030365809798,0.3925995263271034,-0.6399184265173972,-0.8554071602411568,-0.330493506975472,-0.04805138194933534,-0.9433488161303103,0.31432018894702196,0.01803851407021284,0.09965624660253525,0.9590984731912613,0.8675490859895945,-0.6426936602219939,0.9367486177943647,-0.9447556491941214,0.170095382258296,0.3648471124470234,0.34075777977705,-0.09720314433798194,-0.06502986326813698,-0.05243656411767006,0.9850951633416116,-0.051979070995002985,-0.25625923043116927,0.2546176793985069,-0.9000916825607419,0.8030652040615678,0.10137437703087926,0.4259528238326311,-0.7545848768204451,0.11097422614693642,-0.16716444352641702,-0.9657227708958089,0.3738939636386931,-0.634982252959162,0.8622022792696953,-0.049374360125511885,0.18819362996146083,-0.8353494359180331,0.4278421807102859,0.5745234326459467,0.6817385004833341,0.4831648813560605,-0.961390258744359,0.3795929802581668,0.7148262690752745,-0.7515959814190865,0.06166217150166631,0.13414290780201554,0.3046900383196771,0.7038617306388915,-0.5273767877370119,-0.0006747781299054623,-0.5797943444922566,-0.28823360335081816,-0.42970914393663406,-0.5849717329256237,0.7046705042012036,-0.255366750061512,-0.525090139824897,-0.9846705920062959,0.6390108424238861,0.46373662538826466,0.18713562097400427,0.8488287450745702,0.883037066552788,-0.8674158710055053,0.315118367318064,0.18796233274042606,-0.6034119739197195,-0.9792130407877266,0.16890130518004298,0.10487063974142075,0.9705279073677957,-0.33881198009476066,-0.8583862786181271,0.9442735323682427,-0.9107848717831075,-0.8881468717008829,0.38789388723671436,0.3861156040802598,-0.4483624757267535,-0.8634196883067489,-0.5026771784760058,0.8516841125674546,0.47196452505886555,-0.4571401858702302,0.08324839267879725,0.47155696945264935,-0.8232329185120761,0.6764385192655027,-0.10303126042708755,0.8229175098240376,-0.46017672633752227,-0.5489181689918041,-0.4157981420867145,0.318458158057183,-0.6091818949207664,-0.9016541349701583,0.35824070824310184,0.9198473198339343,-0.6555001484230161,-0.7478072149679065,-0.28389481361955404,-0.8456457671709359,0.24157998990267515,-0.567046020179987,0.45042505161836743,-0.4301565336063504,-0.7103435308672488,0.058323290664702654,0.30916752479970455,-0.501096133608371,0.9809967344626784,0.10425987653434277,0.25118537433445454,0.700297312811017,-0.8920186841860414,-0.7906929128803313,-0.3865155349485576,-0.5701550268568099,-0.22210828308016062,0.9699352588504553,0.5736181875690818,0.5375430122949183,0.9430952942930162,-0.9048148719593883,0.10665694531053305,0.3550427807494998,0.08001043414697051,-0.33315177634358406,-0.4220981574617326,-0.8994583562016487,-0.8328404002822936,-0.41771598160266876,0.0018242839723825455,0.9500978155992925,0.02522742049768567,-0.5769093246199191,0.15868369257077575,0.7340142596513033,0.816689517814666,-0.7858629911206663,0.6226286231540143,-0.7830231445841491,-0.13283030223101377,-0.2437284141778946,-0.7811026242561638,0.2940822457894683,0.33436563704162836,0.11924281343817711,-0.8342907018959522,-0.07334824837744236,0.8866247832775116,-0.9176829745993018,-0.14393859868869185,-0.5352901336736977,0.7163368780165911,-0.4046192211098969,0.039759332314133644,-0.3908237782306969,0.508373592980206,0.6139465887099504,0.8439229819923639,-0.7711385553702712,-0.2777727353386581,0.4664527899585664,-0.0019758231937885284,0.46676212549209595,0.8270598594099283,0.8807293642312288,-0.15457269456237555,0.23164001991972327,0.6205983459949493,-0.47525401739403605,0.1554258489049971,-0.5549542969092727,0.7988144191913307,-0.9755289731547236,-0.9747849199920893,0.18047984316945076,0.8661367245949805,0.6036362233571708,-0.5916676796041429,0.9429597044363618,-0.6365219955332577,-0.3825864321552217,-0.9889541654847562,-0.7842624098993838,-0.4658808601088822,-0.3986679916270077,-0.3502044603228569,-0.12027602503076196,0.9684707918204367,0.4136382210999727,0.5092197735793889,-0.6422907789237797,0.38179444894194603,-0.6221326743252575,-0.06041347701102495,-0.7574081108905375,0.6755308834835887,0.733288686722517,0.5213846922852099,0.9149256804957986,-0.25206543086096644,0.6958316499367356,-0.8248513992875814,0.7809889251366258,0.3381718825548887,0.09623671136796474,-0.33609708677977324,0.3775184587575495,0.521587073802948,-0.5879939361475408,0.8006462077610195,-0.3780098450370133,-0.2315307715907693,-0.8609984181821346,-0.08952584536746144,-0.05091207381337881,0.3909358149394393,0.0628707567229867,0.19204115541651845,0.2863212088122964,0.41273660073056817,0.5243226778693497,-0.3279348718933761,-0.599122847430408,-0.5099612516351044,-0.2093412484973669,0.22941792896017432,0.505753792822361,-0.5997476661577821,0.9102584216743708,0.1283326419070363,0.8829173217527568,-0.8912596572190523,-0.5277525489218533,-0.4384550591930747,0.5130656892433763,0.23980018869042397,-0.9882059921510518,-0.1089849560521543,0.6113279429264367,-0.6310076168738306,0.31225160881876945,-0.2685542143881321,0.22517130291089416,-0.08542970893904567,-0.2674362654797733,0.37881320528686047,-0.6202342337928712,0.9804606582038105,-0.22539693908765912,0.5807782583869994,0.9867545743472874,-0.37258448731154203,0.5407513179816306,0.8259052229113877,0.20517607452347875,-0.9124305420555174,-0.4709315188229084,0.1885443334467709,0.7951949005946517,0.4104643939062953,-0.9102303148247302,0.5006719515658915,-0.675750101916492,-0.24294237419962883,-0.22819554107263684,-0.6774560608901083,0.5758823095820844,-0.9645346724428236,-0.2788947536610067,-0.6347170462831855,0.5815256792120636,-0.9939045789651573,0.18723402358591557,-0.8934971438720822,0.00359778618440032,0.10232868371531367,-0.8533549532294273,-0.18790764966979623,0.13349315850064158,0.25805418100208044,-0.9086813614703715,-0.07868976704776287,-0.9088554074987769,0.11440525716170669,0.2334265997633338,0.5232718084007502,0.777652423363179,-0.5125389276072383,-0.5354619855061173,0.18730867328122258,0.1595971155911684,0.21060235053300858,0.8138204752467573,-0.7555748717859387,0.026394500397145748,0.3246556012891233,0.6019069971516728,0.8905514720827341,0.1258853180333972,0.6404874785803258,0.016304941847920418,0.932745932135731,-0.9561103200539947,-0.4661839036270976,-0.8902822341769934,0.9352750242687762,-0.6673681791871786,-0.8782386304810643,-0.3860789258033037,0.18594271736219525,-0.8909240639768541,-0.8531008744612336,0.49386125337332487,0.4204440019093454,-0.8066597320139408,-0.1283452440984547,0.3013235949911177,-0.35906706331297755,-0.7084122928790748,0.3697469304315746,0.11792938131839037,0.33173705032095313,-0.41943981917575,0.5563162467442453,0.6994022843427956,0.5494406051002443,0.31313986936584115,-0.4170307135209441,0.8775199959054589,-0.086442437954247,-0.41690489230677485,0.1566016566939652,0.5420356192626059,-0.8459720546379685,0.8196273213252425,0.3922970099374652,0.48705533239990473,0.8183889645151794,0.4116935529746115,-0.40735339000821114,-0.16319888224825263,0.677021395880729,0.5549085848033428,-0.8882786557078362,0.993373638484627,0.5379038508981466,-0.5314615839160979,-0.22262940229848027,-0.06967719690874219,0.26573604717850685,0.6026014392264187,-0.9914827379398048,0.8105060309171677,0.1934391432441771,0.5099863433279097,0.8467664453200996,0.8171163578517735,-0.503687716089189,0.31633290695026517,-0.23443955462425947,0.6154803251847625,-0.86800446966663,0.29887960478663445,0.5052037993445992,0.688523861579597,-0.9507754985243082,-0.3251188755966723,-0.07730666361749172,-0.30691711558029056,-0.5386086930520833,-0.35165295423939824,0.6607155813835561,0.5104885911568999,0.9492694758810103,0.4973206352442503,-0.3352701826952398,0.3618026152253151,0.34810320660471916,0.8566583506762981,-0.144961672835052,-0.04036008706316352,-0.035023077856749296,0.6144656245596707,-0.8861472671851516,-0.48266327986493707,-0.2681418629363179,0.9194717165082693,0.5421813218854368,0.8406547959893942,-0.7942624757997692,-0.33304330613464117,0.11198610858991742,0.8739194646477699,-0.682381009683013,-0.3741186810657382,-0.4660142995417118,-0.49860465293750167,-0.33900729939341545,0.8100722688250244,-0.6339506567455828,0.24516998091712594,0.4291383265517652,0.48516275780275464,0.023950275033712387,-0.9636915409937501,-0.6547026005573571,-0.5219607823528349,0.7652407744899392,-0.6371104046702385,0.4638840570114553,0.5593337011523545,-0.736436843406409,0.743590981233865,-0.30783849209547043,-0.08334636222571135,-0.9501484269276261,-0.8708532778546214,0.2901463061571121,-0.5031309411861002,-0.7619469203054905,0.13638187712058425,-0.8426468293182552,0.8154965513385832,-0.3127996916882694,0.5900374432094395,0.25370115227997303,0.4038462555035949,0.585042666643858,-0.06731610791757703,0.14381618378683925,-0.5247294786386192,-0.8243427569977939,0.8701191670261323,0.3642134713009,0.7702465001493692,0.6617496917024255,-0.6660606432706118,-0.358973846770823,0.04966903943568468,0.9305414878763258,-0.3214306733570993,0.03886584658175707,-0.49755290150642395,-0.2563391411677003,0.9414475481025875,0.09945460269227624,-0.6022459804080427,0.6351762288250029,0.10262226918712258,-0.9283351064659655,0.8089176677167416,0.6726504573598504,-0.7040941673330963,-0.967110849916935,-0.6527630668133497,0.08626652788370848,0.173253680113703,0.5179809760302305,-0.9551232792437077,-0.7441460550762713,-0.36116075050085783,0.586960248183459,-0.4554306659847498,-0.1678323494270444,-0.11370307160541415,-0.776474280282855,-0.2500766287557781,-0.21485285740345716,0.21570358099415898,0.4893022137694061,0.7475429852493107,-0.9485503849573433,-0.7212552130222321,0.8985981591977179,0.4973636413924396,-0.3967351489700377,0.6818704414181411,0.09783512260764837,0.2204607967287302,-0.6241431818343699,-0.027580278925597668,0.06594143714755774,-0.6109466217458248,-0.4250517310574651,-0.3515240103006363,-0.9171296204440296,-0.7825886416248977,-0.46039852499961853,0.7251663506031036,0.7120859432034194,0.5554243326187134,0.5075739249587059,-0.2414594441652298,0.027994405943900347,0.3182117869146168,-0.5446566678583622,0.2084228959865868,0.20680866623297334,0.5870371870696545,0.15587524510920048,-0.8037660173140466,-0.10563103249296546,0.8119619926437736,-0.45808894000947475,-0.6595868063159287,0.20099946996197104,-0.36140858102589846,0.06811200873926282,0.039999691769480705,0.24526377534493804,-0.9971027243882418,-0.004746441729366779,-0.8014950063079596,-0.905088237952441,0.583234092220664,-0.44869933323934674,-0.2528843767940998,0.21852257195860147,-0.9014216852374375,0.6157824951224029,0.7249651006422937,-0.30042693531140685,0.6849682554602623,-0.11811839463189244,0.5295602781698108,-0.6248438297770917,-0.22629121458157897,0.6767061641439795,-0.7569393897429109,0.5229465835727751,-0.6890941266901791,0.7169688688591123,-0.9068414466455579,-0.969075471162796,-0.8237258419394493,-0.09385961154475808,-0.13676540227606893,-0.22862156480550766,-0.3902538511902094,0.5075748227536678,0.6335223042406142,0.9354224363341928,-0.08209446957334876,0.41457365546375513,-0.45198539504781365,0.5359422895126045,-0.19992934353649616,-0.8428731397725642,-0.3162963534705341,-0.16846477426588535,0.12059363955631852,0.6605292437598109,0.14674447663128376,-0.7619791734032333,0.5847642309963703,0.6677390923723578,-0.14399824850261211,0.9635545229539275,0.2508785668760538,-0.2049437640234828,-0.8348821918480098,-0.9312018193304539,-0.690559396520257,0.41222913283854723,0.19955273857340217,0.57204994186759,-0.531527092680335,-0.7075022957287729,-0.9348301184363663,0.5524496133439243,-0.2667008521966636,0.17322366032749414,0.9567547650076449,0.9914854727685452,0.8155953921377659,0.38232974987477064,0.2526893843896687,-0.5142293032258749,0.12994747189804912,-0.7902968535199761,0.027370947413146496,0.850485757458955,0.24403941351920366,-0.7556138443760574,0.17766063567250967,-0.30235048150643706,0.5925675011239946,0.019418760668486357,0.8256997652351856,-0.7839896748773754,-0.04139818297699094,0.028475218918174505,0.4057335900142789,0.5817564590834081,0.8224576818756759,0.11866889568045735,-0.5943105001933873,-0.11277445778250694,0.6019929479807615,-0.13493834948167205,-0.32466466212645173,0.822765938937664,-0.26024103118106723,0.8647219929844141,-0.9181400360539556,0.9223925592377782,0.4920824537985027,0.9947264478541911,0.35203336318954825,-0.20500657940283418,-0.6493439190089703,0.8370379372499883,-0.2352883662097156,0.35717262467369437,0.8446097136475146,0.06329749617725611,0.4196014632470906,-0.9147634762339294,-0.9567726347595453,-0.805043057538569,-0.22294186847284436,-0.9090668191201985,-0.1865478651598096,-0.2723263977095485,0.9901119600981474,-0.5724338693544269,-0.2571281064301729,0.26430238829925656,-0.7093631476163864,0.14616142213344574,-0.700401684269309,0.3780690534040332,-0.923925859387964,0.7104577966965735,-0.6460307138040662,-0.03037441661581397,0.6784933358430862,0.686213618144393,-0.5892950790002942,-0.8748843292705715,-0.38493711315095425,-0.9830031893216074,-0.11446717055514455,-0.6288327230140567,-0.967389493715018,0.2819940368644893,-0.4191535050049424,0.9659026702865958,-0.8026111824437976,0.06020835507661104,-0.29255263367667794,0.043742668349295855,-0.4178178305737674,0.4600530592724681,0.04893339890986681,-0.9837939101271331,-0.6076976852491498,-0.5050548859871924,0.5779304769821465,-0.9693969166837633,-0.9393407637253404,-0.2781427023001015,-0.2896384634077549,0.053514142986387014,-0.7428065142594278,0.44050118746235967,-0.852805380243808,-0.6949691879563034,-0.32290952326729894,0.41919292183592916,-0.8731105932965875,-0.3747373898513615,0.20649745920673013,-0.012854469008743763,-0.041159254498779774,-0.4511749832890928,0.7135435095988214,0.9268262749537826,0.8495366950519383,0.6497642151080072,-0.6266979817301035,-0.8067785147577524,0.06483493745326996,-0.0372524643316865,0.5501125799492002,-0.3122157687321305,-0.9058149647898972,-0.544653024058789,-0.7526555014774203,0.911119794473052,-0.6834149146452546,-0.9426792245358229,0.5997541504912078,0.36637544399127364,-0.8774912445805967,0.35181534104049206,-0.45884800888597965,0.5442345142364502,-0.41728814505040646,0.5731448098085821,0.3195238341577351,-0.8082374003715813,0.08105625957250595,0.008408845867961645,0.7377294963225722,-0.595861020963639,-0.20409617153927684,0.5566419311799109,0.8882849086076021,0.991052373778075,-0.3524931422434747,-0.25278524681925774,-0.425871723331511,-0.6346219712868333,-0.35968538373708725,0.38308913819491863,-0.6164940008893609,0.60106983454898,0.2542421850375831,0.1469633816741407,0.029178282245993614,0.6910263407044113,0.3406971972435713,-0.2110120034776628,-0.5356046156957746,0.8710936545394361,-0.8268076372332871,0.2823037728667259,-0.7687541446648538,-0.6147479419596493,-0.6984415450133383,-0.7380364490672946,-0.2803523922339082,0.6958183120004833,-0.962311907671392,0.13664587354287505,0.4615913894958794,0.441072441637516,-0.755185725633055,0.3939740341156721,-0.8449283670634031,0.6614982387982309,0.43192552123218775,-0.376031463034451,-0.7555731520988047,0.8449787166900933,-0.5327510591596365,0.46035032579675317,0.5345133668743074,-0.275496490765363,-0.2992910291068256,-0.5020100153051317,0.685265856795013,0.9065539450384676,-0.3269195705652237,-0.13595004519447684,0.8015226847492158,-0.18732654117047787,0.8968876143917441,0.6603551809675992,-0.5730217345990241,-0.41898968955501914,0.8895685104653239,-0.45163098629564047,0.6306974794715643,0.7429129960946739,-0.8307798183523118,-0.7422224790789187,-0.988597032148391,-0.5992335611954331,-0.6733868326991796,-0.02405133517459035,0.6470953775569797,-0.06812815042212605,0.6584360259585083,0.21935259411111474,-0.08853612607344985,-0.47188598196953535,-0.5850702677853405,-0.5580381364561617,0.5168527625501156,0.5830490100197494,0.7113533611409366,0.37126949429512024,-0.1069232989102602,0.5570125095546246,0.1914559812285006,0.8152610282413661,0.5964667689986527,0.8996201483532786,-0.3154227500781417,-0.40432625636458397,-0.3927961136214435,-0.14795707445591688,-0.3621232733130455,-0.27391100069507957,-0.5336118112318218,0.5435386933386326,0.9000380672514439,0.2780619775876403,0.9858618499711156,0.19734246982261539,0.8219893230125308,-0.5200063157826662,0.9602751084603369,0.7059649112634361,0.7003038767725229,0.14834097027778625,0.948344127740711,0.8230701982975006,0.5202112481929362,-0.15546045312657952,-0.15363553818315268,0.7678050845861435,0.6238083303906024,-0.0435187560506165,-0.22359419707208872,0.6100670462474227,-0.45902570243924856,0.638407327234745,0.9798333048820496,0.24272753903642297,-0.06582058407366276,-0.231038399040699,0.8184450231492519,-0.38485492253676057,-0.14560983469709754,0.9853547024540603,-0.5485276798717678,-0.5604579555802047,-0.5277966987341642,-0.8324054079130292,0.408491687849164,-0.061209931038320065,0.5632902216166258,-0.3143485854379833,0.6130907656624913,0.01899302238598466,-0.023265717551112175,-0.24488769099116325,0.045275791082531214,0.24442435707896948,0.6549573908559978,-0.2741576568223536,-0.7151531782001257,0.7368065100163221,-0.0008462127298116684,0.9683427889831364,-0.4274370684288442,0.885665844194591,0.1829365361481905,-0.03536378499120474,0.5964244287461042,-0.003126343246549368,-0.03903306322172284,0.5707306866534054,-0.8522111661732197,-0.724268788471818,-0.34686138201504946,-0.26222595293074846,-0.7767046336084604,0.28466207394376397,0.8985275141894817,0.9653958044946194,0.54830018337816,0.46931991539895535,0.8088464410975575,-0.2800218900665641,0.599768599960953,0.2429306353442371,0.33948103431612253,0.763850730843842,0.4110860708169639,0.13123266492038965,0.8202157435007393,0.6100612282752991,-0.1486030463129282,-0.31104141706600785,-0.6443092892877758,-0.44818089716136456,0.5201240838505328,-0.926556914113462,0.8258445309475064,-0.3504188540391624,-0.08105709962546825,-0.3260999722406268,-0.22467732150107622,-0.36211875826120377,0.1445542755536735,0.19785422459244728,-0.23705213190987706,0.2525028823874891,-0.36765308305621147,0.5926116155460477,0.41416431963443756,0.3541163122281432,0.0009770100004971027,0.8326900070533156,-0.7415948994457722,-0.8628962324000895,-0.8580759521573782,-0.8674517581239343,0.9936910918913782,0.5100146760232747,0.35351568879559636,-0.2751852129586041,-0.6814492507837713,-0.03188916854560375,0.19998952839523554,0.3331607701256871,0.32383573008701205,-0.9908343474380672,0.25315880170091987,0.34587963530793786,0.456020210403949,-0.6835755193606019,-0.6938321958296001,0.37230959814041853,-0.6535018575377762,0.9091930123977363,-0.3291427241638303,-0.5825520232319832,0.807750039268285,-0.539818873628974,0.771591367200017,-0.9731295020319521,0.14171424368396401,-0.38356369035318494,-0.38736072462052107,0.9691925011575222,0.8211781024001539,0.6380115449428558,-0.4688576837070286,0.9120479123666883,0.10225814301520586,-0.4728277260437608,0.902472444344312,0.8947708341293037,0.8488233177922666,-0.29327895352616906,-0.8963776775635779,-0.6936708567664027,0.2498792875558138,0.09394826414063573,0.9601841690018773,-0.3482251181267202,0.7284007617272437,-0.46922240359708667,-0.1405163831077516,-0.1198574211448431,-0.5459314165636897,-0.26252121245488524,0.7160024219192564,0.8734397352673113,0.4113391120918095,0.06654059886932373,0.8211588999256492,0.5009910771623254,0.11624792404472828,-0.4107286292128265,0.12299133185297251,-0.2263387250714004,-0.7815114152617753,0.48480374366045,0.14131803810596466,0.5851499331183732,-0.009792280849069357,-0.44578417018055916,-0.8520973124541342,0.1634672093205154,-0.6930209738202393,0.26261439453810453,0.7145250155590475,0.4575758967548609,0.10168695915490389,-0.7974702236242592,0.4350500274449587,-0.8139730812981725,-0.1489604120142758,0.7710276949219406,-0.13594953436404467,0.535592813976109,0.08062896365299821,0.19922403013333678,-0.9029238545335829,-0.20072013745084405,0.31369953881949186,-0.7106916955672204,0.6576659451238811,-0.472166761290282,-0.9691515760496259,-0.6395314475521445,-0.2296789065003395,-0.029520155861973763,-0.756402175873518,-0.9366763150319457,-0.0994199113920331,-0.15870011784136295,0.15295832185074687,-0.7837656745687127,0.35127596324309707,0.12047195341438055,0.8910484234802425,0.3859282280318439,-0.5807673116214573,-0.1310686063952744,0.2272436930797994,0.8532369709573686,-0.4750600256957114,0.7880240217782557,0.18838393734768033,0.3656649114564061,0.1776412148028612,0.3952039862051606,-0.9831953616812825,-0.46088569751009345,-0.4404276288114488,0.8058299827389419,-0.8125562607310712,-0.623840443789959,0.10630418779328465,-0.49093722738325596,-0.585045610088855,-0.12758675031363964,0.25816977955400944,-0.22616304643452168,-0.831153173930943,0.8209529346786439,0.022198757622390985,-0.5636860709637403,-0.3358533550053835,-0.36394664039835334,0.3054176685400307,-0.8910915516316891,-0.6962045766413212,0.5598415615968406,0.8958945674821734,0.18264885107055306,0.3624592199921608,0.9153075679205358,0.9263303051702678,-0.13604475418105721,0.7779519013129175,-0.9564063549041748,-0.7436189702711999,0.6147429347038269,-0.2420587087981403,0.8057729033753276,-0.38750247843563557,0.6101551591418684,0.6241578976623714,-0.05924175912514329,-0.5538328271359205,0.4908115351572633,-0.12994307279586792,0.4772493182681501,-0.9266127557493746,-0.908805223647505,-0.8277497133240104,-0.4727059262804687,0.8162616323679686,-0.36654326505959034,-0.456477670930326,0.7807864719070494,0.7301384378224611,0.4157477403059602,-0.4175774469040334,0.16894684359431267,0.6627173954620957,0.8884394909255207,0.8028213419020176,-0.8806697903200984,-0.3561374545097351,-0.8918157578445971,0.4913849872536957,0.4610860189422965,-0.32965591782703996,0.9889238295145333,0.34927638759836555,0.9358214400708675,-0.05338078550994396,-0.48295988561585546,-0.4728398653678596,0.7155830771662295,-0.9837047690525651,-0.8693515248596668,-0.6376106878742576,0.05645904131233692,-0.14242414524778724,0.7483521364629269,-0.12997755175456405,0.04886953067034483,0.9438522285781801,0.2699504969641566,0.20001647667959332,-0.46832172805443406,0.611170053947717,0.4255228196270764,0.8413574481382966,0.575759107246995,-0.1101930383592844,0.14591926475986838,-0.21653260244056582,-0.026017256546765566,0.9480151422321796,0.858893636148423,-0.7248502732254565,-0.9949847431853414,0.41546702198684216,0.5956070786342025,0.4251168640330434,0.9081103592179716,0.8198780040256679,0.19263112638145685,-0.9436475685797632,0.09336163569241762,-0.04029454756528139,0.06114229513332248,-0.8823229055851698,-0.7359612435102463,0.8375501385889947,-0.04598699463531375,-0.5622040624730289,0.007361622992902994,0.35239270981401205,0.28807226615026593,-0.13615318574011326,-0.11815394600853324,-0.4068026444874704,-0.13419490726664662,0.03783851210027933,-0.07439948106184602,0.24075182620435953,-0.4650055463425815,0.9971486935392022,-0.23029298102483153,0.7777649462223053,-0.005270551890134811,0.8423749273642898,-0.36066896468400955,-0.3659044378437102,-0.6026464775204659,0.9120102035813034,0.09971206961199641,0.22193090384826064,-0.7272043991833925,0.48761798068881035,-0.5511870081536472,0.7291625910438597,0.5229963716119528,0.5906493933871388,0.3503333223052323,0.6160370442084968,-0.6407119291834533,0.06183348270133138,-0.4591796197928488,0.7174165393225849,-0.6120698363520205,-0.8219932541251183,0.9676354569382966,0.03598666610196233,-0.05879763374105096,-0.6067258082330227,0.8157969960011542,-0.8271788856945932,-0.2931456286460161,-0.6228334624320269,0.05381354130804539,0.6612840006127954,-0.10367150185629725,-0.5475784279406071,0.9891590620391071,0.32435182575136423,0.5217885160818696,-0.7125189234502614,-0.7693780199624598,-0.22408599872142076,0.26465386198833585,-0.39026100374758244,0.7998350928537548,-0.9611192271113396,0.3426627484150231,-0.9477538205683231,0.6515797767788172,0.5226418976671994,0.7721892856061459,0.820575054269284,0.6300091310404241,0.6947480728849769,0.7606662716716528,0.10668431455269456,0.692603291478008,-0.4874844034202397,-0.5152667150832713,0.0963897961191833,0.3517775288783014,-0.009593939874321222,-0.11290475632995367,-0.13696833793073893,0.8897757232189178,0.6415211344137788,-0.6090103620663285,-0.19808499235659838,0.3568639229051769,0.4876690818928182,-0.8518854584544897,0.645433057565242,-0.7192396181635559,0.2512998781166971,0.22403509542346,-0.3702854188159108,0.6109774126671255,0.13322824146598577,-0.652579952031374,-0.815368584357202,-0.1942427414469421,0.20585522428154945,-0.1089708493091166,0.4545072792097926,-0.7288249535486102,0.9625708227977157,0.17349181743338704,-0.10107868816703558,-0.0380826354958117,-0.2342926375567913,-0.8444621940143406,-0.6082057310268283,0.4529477981850505,0.9994083908386528,-0.5383667475543916,0.1236823508515954,-0.3278863695450127,-0.7571583385579288,0.011549276765435934,-0.9911336870864034,0.3136523379944265,0.2501026992686093,-0.09118347149342299,-0.7304038987495005,-0.15471669705584645,-0.8011566065251827,0.8878581556491554,-0.7924953494220972,-0.18089470639824867,-0.7960165934637189,0.7572615682147443,-0.7193952272646129,-0.5280018826015294,0.960491681471467,-0.36071235220879316,-0.294307345058769,-0.15597161510959268,0.8021677029319108,-0.2696401630528271,-0.08464002888649702,-0.37703574541956186,0.5419482323341072,0.6796365072950721,0.6753580500371754,0.7405171636492014,-0.5158745152875781,0.5315448879264295,-0.15864921966567636,0.3941350597888231,-0.2581828502006829,0.18373277317732573,-0.8809401458129287,0.15068616485223174,-0.15085546299815178,-0.6024725139141083,-0.17445201938971877,0.5711743696592748,-0.5744105414487422,0.0011153696104884148,-0.79667310975492,0.14348573936149478,-0.6027503712102771,0.2917065336368978,0.42119578132405877,-0.010142337530851364,0.2455144627019763,-0.7114313351921737,-0.7106916443444788,0.4713733922690153,0.5216460442170501,-0.5784993963316083,-0.20983055885881186,0.8221487887203693,0.03540940163657069,0.6671479195356369,0.25192287703976035,-0.5072913654148579,-0.37531957123428583,-0.13240195391699672,-0.41566959070041776,-0.1791719519533217,0.2975192437879741,0.8503361940383911,-0.9698466174304485,0.8410748187452555,-0.3942061965353787,-0.6083770524710417,-0.2766265529207885,0.27151500014588237,-0.24063973873853683,0.6509213210083544,0.189329304266721,0.22929245978593826,0.6732741724699736,-0.3787853051908314,0.09495570417493582,0.035822996869683266,-0.3348388448357582,0.4048010311089456,-0.979383294004947,-0.4669897914864123,0.7450726656243205,0.9558242307975888,-0.06905338726937771,0.635506868828088,0.1418171301484108,-0.9974910682067275,-0.28553055180236697,-0.72548967320472,-0.30319851776584983,-0.5350739192217588,-0.27661475259810686,0.31786079658195376,0.24844170734286308,-0.3590138452127576,-0.7672438425943255,-0.6538668707944453,0.15404878882691264,-0.23207521671429276,-0.2088194009847939,0.4165526470169425,-0.13897568872198462,-0.6007920131087303,0.5833034068346024,-0.7544205533340573,0.016917000990360975,0.5537973926402628,-0.7749726045876741,0.6400355552323163,-0.22840597480535507,-0.4305830211378634,-0.12235192395746708,0.47935277596116066,-0.7324382029473782,-0.6075127329677343,-0.40149336541071534,0.005991682875901461,-0.6678644269704819,0.4326349296607077,0.17097795894369483,-0.1082577109336853,-0.7164253671653569,-0.774533404968679,-0.18656611116603017,0.5626761582680047,-0.3423992935568094,0.027619472704827785,-0.7291218880563974,-0.07461575884371996,-0.5956477234140038,-0.5882394835352898,-0.6110222926363349,0.9632794768549502,0.14872201951220632,0.9777481374330819,-0.43859042366966605,0.2748968554660678,0.09573634900152683,0.13204616960138083,0.7288312893360853,0.020270782057195902,-0.006626439280807972,0.37582253478467464,-0.5100620426237583,-0.12241804134100676,0.5576072707772255,0.2761759292334318,-0.1415856834501028,-0.9922703220508993,0.31100338231772184,-0.18597395438700914,-0.61578587628901,0.5642228149808943,-0.006513979751616716,-0.5695341378450394,0.9308919049799442,0.7799776624888182,0.3458952633664012,-0.5465121986344457,-0.7556973583996296,0.3659308743663132,0.7558953883126378,-0.7133814017288387,-0.9734145859256387,-0.8798603299073875,-0.7377136219292879,0.010398221667855978,0.4399299854412675,-0.4558295593596995,-0.4814015831798315,0.23751456243917346,0.3573735225945711,0.027765691746026278,-0.9100347789935768,-0.32230944791808724,0.45848052203655243,-0.7436734884977341,0.04673670418560505,-0.3282334515824914,0.19967804662883282,0.09393327031284571,0.2943188054487109,-0.5968921622261405,0.8706185398623347,0.7753482940606773,0.15786923747509718,-0.2509402269497514,-0.4635856575332582,-0.05110719054937363,-0.35351215675473213,0.22703631967306137,0.6700312527827919,0.45681084832176566,-0.24533594585955143,-0.17232667794451118,0.7419751468114555,0.346652960870415,0.8622303265146911,-0.1195245087146759,0.7978487769141793,-0.6423925939016044,0.9666773239150643,-0.4978849343024194,0.3371075466275215,-0.2226810953579843,-0.7862472059205174,0.8216223595663905,0.29182277573272586,-0.4167197193019092,0.48038987070322037,0.29974506236612797,-0.2039352129213512,0.5531137883663177,0.6829030103981495,0.5693044611252844,-0.19446781603619456,-0.3789680195041001,-0.43363583786413074,0.538196531124413,0.2770067318342626,0.6639576489105821,-0.6542242984287441,0.1736308801919222,0.4796418477781117,0.889090996235609,0.018112627789378166,0.9197990596294403,-0.4306264608167112,0.8333848835900426,0.1507180673070252,-0.6664611175656319,-0.8193902373313904,0.12629940267652273,0.7807671506889164,0.3212808002717793,-0.2779133878648281,-0.13136981520801783,0.001397663727402687,0.1797135747037828,-0.9001675886102021,0.46044503850862384,0.20139478193596005,0.28175668232142925,-0.6117934943176806,0.1484119719825685,-0.9950582715682685,-0.9616530444473028,-0.23457110906019807,-0.589893820695579,0.17975751403719187,0.12433535791933537,-0.3634482817724347,0.6065067159943283,0.21004030527547002,-0.5879391469061375,0.3687026919797063,0.1403373060747981,0.1257786857895553,-0.07685389695689082,-0.8101921128109097,-0.8797856559976935,-0.3159048594534397,0.42637223564088345,-0.14534163428470492,0.9092587251216173,-0.27301967795938253,0.25086839124560356,0.20145750511437654,0.6846762420609593,0.8685373440384865,0.7679301761090755,0.34752859733998775,-0.3400293840095401,-0.4796830923296511,-0.6105875340290368,-0.22899656230583787,-0.12196967285126448,-0.22347485134378076,-0.366377383004874,0.2827669125981629,0.6673963279463351,0.026999613735824823,-0.14427784038707614,-0.30629317415878177,-0.14414398232474923,0.031157197430729866,-0.7826861389912665,0.8023280929774046,0.014098909683525562,-0.17566992389038205,-0.42293838830664754,-0.19518533209338784,0.5092306421138346,0.15648380760103464,-0.9271887666545808,0.4172139875590801,0.6469945013523102,0.27099871821701527,-0.6398869110271335,0.3410440250299871,-0.11661482695490122,-0.6819758475758135,-0.13372846506536007,-0.6838411940261722,0.5387835530564189,-0.4283680720254779,-0.9177607572637498,0.7823080611415207,0.5638389736413956,0.15335109271109104,0.574215714354068,-0.2885017744265497,-0.9154010508209467,0.801264550536871,-0.8556279558688402,0.7776580955833197,0.0845314972102642,0.81043212255463,0.6900228201411664,0.9109903713688254,0.03238493064418435,0.6517415712587535,-0.9259596965275705,-0.513192807789892,-0.8771612672135234,0.15494420658797026,-0.811071427538991,-0.05178402317687869,-0.4054048517718911,-0.7922809063456953,-0.6152955326251686,0.9990459447726607,0.30404310999438167,0.5374034806154668,-0.7339623090811074,-0.15689362725242972,0.3170118532143533,0.11848714388906956,0.0387079231441021,0.6232025087811053,-0.7185932523570955,-0.043185532093048096,0.312836401630193,-0.5645629810169339,-0.3736655078828335,-0.8847904023714364,0.7050786977633834,0.9711861843243241,-0.8182874503545463,0.6431233920156956,-0.11383686168119311,0.043552575167268515,-0.9605981074273586,0.23963816184550524,0.23704570438712835,-0.5461973450146616,-0.182894391939044,-0.6853665467351675,-0.9550174963660538,-0.3615941391326487,0.2295085578225553,0.47978832433000207,-0.6780259716324508,0.820180353242904,0.12298366986215115,0.05564334662631154,-0.17122940067201853,0.046946879010647535,-0.27718475833535194,0.36585394479334354,0.45417724782601,0.4053729996085167,0.6261876709759235,0.5680023357272148,-0.29248197888955474,0.5178308910690248,0.7937885094434023,-0.28794951597228646,0.8148076026700437,-0.9001504327170551,-0.2034715013578534,0.5190219744108617,0.8519303593784571,0.05456335376948118,0.7269728668034077,0.30319092236459255,0.5829912424087524,-0.25986677780747414,-0.7065373905934393,-0.42484269803389907,-0.514132535085082,0.5873859245330095,-0.2528662928380072,-0.11053800163790584,0.7820598687976599,0.2676154305227101,-0.3650499484501779,-0.7738012708723545,-0.5259626731276512,0.286892581731081,-0.3816809793934226,-0.23415183974429965,-0.9686871585436165,0.31053981743752956,-0.5505264112725854,0.8700745231471956,0.4554531052708626,0.3094258555211127,-0.6738110054284334,-0.33873717673122883,-0.3965556607581675,0.35723739955574274,-0.1280921082943678,-0.5184473772533238,0.11580133298411965,-0.8023223550990224,0.4191837850958109,-0.03467440279200673,-0.8727501407265663,0.3645406202413142,0.35248380340635777,0.17802391666918993,-0.03173655504360795,-0.05565295368432999,0.6114731645211577,-0.826801722869277,0.0005814265459775925,-0.55550681008026,-0.023053572047501802,-0.7743571321479976,-0.07384037505835295,-0.5413216091692448,-0.8121140757575631,0.04805121012032032,0.7599964616820216,-0.3638253705576062,-0.5199130922555923,0.13216796796768904,-0.31868534348905087,0.464447486680001,-0.1795734385959804,-0.8920277757570148,0.7540536993183196,0.2906607179902494,-0.4198277937248349,0.9980234350077808,-0.4300372335128486,-0.16110197827219963,-0.1312304842285812,-0.06793299317359924,-0.45186369586735964,-0.46287322603166103,-0.120157640427351,0.7990729520097375,-0.048930374439805746,0.9438067595474422,-0.7478779670782387,-0.5134298913180828,-0.553736534435302,0.8508770181797445,0.8917779610492289,0.2949355049058795,0.9823614982888103,0.34427367709577084,0.4829112128354609,-0.571587213780731,0.45256428280845284,0.4378872765228152,-0.27238553017377853,0.744392751250416,-0.3677502884529531,0.8121039983816445,0.3722666297107935,0.8476896956562996,-0.6514656208455563,-0.07234005304053426,-0.6593821886926889,-0.7319413092918694,-0.9549231822602451,0.8236299357376993,0.40363569278270006,0.20994024723768234,-0.17687015375122428,0.5169538543559611,0.3972187442705035,-0.5258163204416633,0.9664473012089729,-0.22498853597790003,-0.5847364733926952,0.9913512300699949,0.2609021319076419,0.8841508920304477,-0.7877542125061154,0.21717555401846766,0.4971387181431055,0.15013853088021278,-0.4606532622128725,-0.44499032385647297,0.5060368375852704,-0.14319825544953346,-0.4996837074868381,0.5045122890733182,-0.7877112026326358,-0.39981605112552643,0.8259642855264246,0.7569841486401856,0.533878346439451,0.32938335835933685,0.7841940578073263,0.2379427021369338,-0.35426928335800767,-0.7790252910926938,-0.9536799998022616,0.7173335868865252,-0.8588843871839345,-0.6720477556809783,-0.3869075682014227,-0.483366827480495,-0.5048090368509293,-0.9619677201844752,-0.9435485186986625,0.3525809170678258,-0.8684529857710004,-0.7260052869096398,0.5656815045513213,-0.8371739848516881,-0.19935667933896184,0.2538377926684916,-0.9613829874433577,-0.43605277221649885,0.23217238346114755,-0.07697709510102868,0.7995368205010891,0.2944675078615546,-0.380794539116323,-0.8140316545031965,0.954143235925585,-0.08971584727987647,-0.7096249763853848,0.7259826166555285,0.27850315952673554,0.6383091318421066,-0.6609759144484997,-0.6242715725675225,0.9110230230726302,-0.08567321766167879,-0.012551684863865376,-0.3900409871712327,-0.852186989504844,-0.3055376601405442,-0.24934895243495703,0.9913045004941523,0.36361521342769265,-0.3608811851590872,0.12657719012349844,0.42282851599156857,0.22343982430174947,0.6325916750356555,0.258105362765491,0.2705104658380151,-0.2637241636402905,0.4737833528779447,0.8989898306317627,-0.5530933015979826,0.7269869465380907,-0.87720051035285,0.11869781045243144,-0.2999984072521329,0.00964603153988719,-0.8959599449299276,-0.28696590987965465,0.18009445490315557,-0.27572678914293647,-0.25224676821380854,-0.6936391647905111,-0.6352767865173519,-0.15854637417942286,-0.12257963232696056,0.6095008770935237,0.2598823350854218,0.1618956527672708,0.5903169098310173,-0.5100852428004146,-0.7207041895017028,0.9708698289468884,-0.04329477762803435,0.854803082998842,0.7354519180953503,-0.5570295732468367,0.10636314656585455,0.7866638693958521,0.27566834539175034,-0.07447748305276036,-0.10820358758792281,0.8353250278159976,0.5123861450701952,-0.6520899292081594,-0.028129832819104195,-0.08246012963354588,0.43736542062833905,-0.3530427496880293,-0.5015364955179393,-0.1756842560134828,0.9519198299385607,-0.7793495650403202,0.7408700655214489,-0.6339945858344436,0.474046578630805,-0.7885851804167032,0.006306738592684269,0.3848755727522075,0.6236639143899083,-0.5382533795200288,-0.2873804164119065,-0.8411837536841631,0.47558893309906125,0.6211669999174774,-0.3124137339182198,-0.026796597056090832,-0.08564877975732088,0.12234110478311777,-0.5313882031477988,-0.3775154924951494,-0.8572993227280676,-0.33726596226915717,-0.17303017154335976,0.5324071408249438,0.6193809183314443,-0.07100194413214922,-0.44934116350486875,-0.8068938376381993,0.7255326360464096,-0.05384976044297218,0.8679564269259572,-0.9191399100236595,-0.20263799745589495,-0.602711393032223,0.6559188407845795,-0.44794252747669816,0.3625615295022726,0.8728379206731915,0.7193196201696992,0.40975316101685166,0.5593566363677382,0.31094459630548954,-0.7932658432982862,-0.034408298786729574,0.2913088430650532,0.037517196498811245,-0.43083236925303936,-0.2038914649747312,-0.5036635003052652,-0.28259065793827176,0.8746872157789767,0.5147728160955012,0.8370550968684256,-0.3591864355839789,-0.5329701765440404,-0.23726411815732718,-0.4642541939392686,-0.9804439609870315,-0.5390859046019614,-0.9222170822322369,0.12048102309927344,-0.9479635991156101,0.6658411724492908,-0.8767838357016444,0.6100182146765292,-0.38636709516867995,0.7991983471438289,-0.23703762190416455,0.48742110189050436,0.3987509007565677,0.8771158116869628,-0.3439358910545707,0.4705545022152364,-0.5821116790175438,-0.15923392632976174,0.03925714502111077,-0.7111314260400832,0.9857365838252008,0.3279927195981145,0.9238000283949077,0.30648986250162125,0.9572908980771899,0.9987728809937835,0.6599891409277916,-0.3344088140875101,-0.38757194532081485,0.0033856197260320187,-0.8689186293631792,-0.7774445204995573,0.9634074922651052,0.9263848830014467,-0.6098669208586216,0.6590163242071867,0.7534029670059681,0.11894769035279751,0.6171271321363747,0.7393889036029577,0.7129810121841729,-0.1712489086203277,0.14930444583296776,0.6130815059877932,0.04844137420877814,-0.34642555890604854,0.1366957318969071,-0.9917207448743284,0.4204750848002732,0.4076542346738279,0.04644415667280555,-0.9862002329900861,-0.02070041885599494,-0.24058948969468474,0.12218503700569272,-0.37868889793753624,0.9446279290132225,-0.5567673328332603,-0.48063243739306927,-0.09591331938281655,-0.7201403654180467,-0.9750564126297832,-0.32792350091040134,0.49190336000174284,0.08180549740791321,0.03578878380358219,0.34180882247164845,-0.37365717394277453,0.24125045305117965,-0.1036907508969307,-0.6985064363107085,-0.10103568993508816,0.18463071482256055,0.9678004588931799,-0.42290761368349195,0.7686530621722341,0.8488243636675179,0.9336515828035772,0.6873819641768932,-0.7217366476543248,-0.7583250338211656,-0.9995178296230733,0.26900056516751647,-0.8396509033627808,0.21623182157054543,0.6273279786109924,0.4290296398103237,0.8884646007791162,0.516112957149744,0.030522880144417286,0.014345815405249596,-0.41773718781769276,-0.1062229941599071,0.4464662689715624,0.772502756677568,0.3789501921273768,-0.19642279017716646,0.9434371190145612,-0.15009232331067324,-0.6258801938965917,0.9286206546239555,-0.09800832951441407,-0.5087538911029696,0.1413754210807383,-0.0935404128395021,0.6324798031710088,0.3385330103337765,0.6945966961793602,-0.5420579602941871,0.43812946369871497,0.9505647090263665,0.15471363253891468,0.5628427001647651,-0.10146235628053546,-0.6577386166900396,-0.5153529327362776,0.8820418044924736,0.6343753170222044,0.031170526519417763,0.8479444165714085,-0.477575636934489,-0.36455170065164566,0.5565943424589932,-0.7116167666390538,-0.25857121869921684,0.2423760644160211,0.015597055200487375,-0.7723081517033279,0.25889552291482687,-0.9471236830577254,-0.41238969191908836,0.4470533896237612,0.2925228290259838,0.4329468668438494,-0.9845556342042983,0.6519387168809772,0.7606813292950392,-0.3918078141286969,-0.5555475344881415,-0.8690704270265996,0.012357764411717653,-0.3858194649219513,-0.610364698804915,0.28060387307778,0.29286566050723195,0.5526107298210263,0.4365281225182116,-0.6831805757246912,-0.7464747801423073,-0.4125418267212808,-0.2742570857517421,-0.5918318494223058,0.6520850085653365,0.09938566805794835,0.04324714373797178,-0.3032877673394978,0.650168308056891,-0.5437395190820098,-0.5025748419575393,-0.2404950032941997,-0.8097992441616952,0.8770885486155748,0.1600957615301013,-0.6832232782617211,0.8746557589620352,-0.397435387596488,-0.9960883790627122,-0.22989820037037134,-0.8984790383838117,0.943020832259208,0.5420764489099383,0.8291262309066951,-0.4056250201538205,-0.2957095643505454,-0.1048505469225347,-0.03843654412776232,-0.6259948275983334,0.3144068089313805,-0.8667281777597964,-0.952784032560885,-0.11193899251520634,-0.18767537735402584,-0.08518329774960876,-0.8624025261960924,-0.5872808624990284,-0.991664579603821,0.055950384587049484,-0.49269342236220837,-0.8382972767576575,-0.6014618016779423,-0.6455242116935551,0.7703864746727049,0.7755799628794193,0.092805041000247,-0.3480429509654641,-0.45368792535737157,-0.1702953870408237,0.22884741937741637,-0.10272320220246911,-0.030298988800495863,0.37698364118114114,-0.4529462191276252,-0.7689260197803378,0.25160837452858686,0.4336316855624318,0.9608776047825813,0.7997786244377494,-0.645648661069572,0.02402520040050149,0.5756124989129603,0.35231824638321996,-0.4694837825372815,0.49854725040495396,0.5753591698594391,0.7881240672431886,0.9152494049631059,0.9743940141052008,0.2163196154870093,0.9665001295506954,0.33844216633588076,0.7710450505837798,0.959033046849072,0.3429408664815128,0.11608964717015624,0.8180867368355393,0.3382876068353653,0.6975299715995789,0.4438968878239393,-0.38571181800216436,-0.764818849042058,-0.284193720202893,-0.8685408201999962,-0.6589892194606364,-0.40311525110155344,0.9632092835381627,-0.037722347769886255,0.8765246868133545,0.4991369084455073,-0.04502476239576936,0.16193558601662517,0.4126625978387892,0.45487649319693446,0.9113755435682833,-0.4078923254273832,-0.978244973346591,-0.9420302514918149,-0.311623714864254,-0.6644421559758484,0.5628692046739161,-0.2934406944550574,-0.7524580797180533,0.5513387317769229,0.851116397883743,0.7625425183214247,0.2050199555233121,0.04955065995454788,-0.47685527987778187,-0.03138683270663023,-0.6087102084420621,-0.09165487950667739,-0.09327144920825958,-0.060181822162121534,0.529222787823528,-0.47881262470036745,0.9923220691271126,0.9242363483645022,-0.9557664804160595,0.4893675590865314,-0.8344501382671297,0.3545474377460778,-0.30873412545770407,0.7583877216093242,0.034128577914088964,-0.5142039218917489,0.18294858327135444,0.35498494002968073,0.36317671881988645,-0.6794917499646544,0.7771381251513958,0.7666897084563971,0.47287104604765773,0.3849007273092866,0.46098056621849537,-0.5401498130522668,0.9101074729114771,-0.9980612113140523,0.4042579382658005,0.41681976336985826,0.17130494536831975,0.5422686929814517,-0.5236260397359729,-0.9617628548294306,-0.697929875459522,0.4308605077676475,-0.3950111628510058,-0.5968686765991151,0.20074437651783228,-0.6434078556485474,0.37219240656122565,0.9034696933813393,0.23552239453420043,-0.5119178364984691,0.26039441116154194,0.3440643148496747,-0.14826287142932415,-0.42591022979468107,-0.8886974435299635,0.5088948123157024,0.08781161205843091,-0.004271470010280609,-0.6516109947115183,0.3248709300532937,0.0727596771903336,-0.26241167029365897,0.9284378564916551,-0.01205214811488986,-0.9236906603910029,0.2971172444522381,-0.6243167612701654,0.33127464819699526,0.7537713912315667,0.19524415535852313,0.16048260359093547,-0.046759285032749176,0.30749738588929176,-0.5388165106996894,-0.2135269003920257,-0.4373221783898771,0.8805385492742062,0.657357428688556,-0.834134828299284,-0.06105835223570466,0.7070095292292535,0.7513735210523009,-0.8523541786707938,-0.05040118610486388,-0.08978561917319894,-0.10806075809523463,-0.1084216320887208,0.29177973326295614,-0.22880598111078143,0.605615409091115,-0.5218223752453923,-0.08938824012875557,-0.5537453019060194,0.032844264060258865,0.3231598758138716,0.7005183710716665,-0.8983892346732318,0.4063263344578445,-0.42979584680870175,0.5411757533438504,-0.6792976637370884,0.29224967677146196,0.669740411452949,-0.1495182365179062,-0.4868430788628757,0.2905617877840996,0.3182972762733698,0.715359556954354,0.771315663587302,-0.9714196296408772,-0.07533102482557297,-0.1261301296763122,0.4641024782322347,0.19401931390166283,0.2376529946923256,-0.0729508395306766,0.5448195193894207,-0.04686807142570615,0.12846431834623218,0.3507548845373094,-0.08617254672572017,-0.037270198576152325,0.13353497860953212,-0.12793408008292317,-0.054391981568187475,0.2553725768812001,-0.8361319783143699,-0.5799899925477803,-0.839723929297179,-0.9621574901975691,0.5146416942588985,-0.2037673839367926,-0.21705323969945312,-0.9159386726096272,0.4159067808650434,-0.7118803854100406,-0.15062466962262988,0.5722514605149627,-0.12379436567425728,0.8892274438403547,-0.7151894285343587,-0.10618789680302143,-0.13054754212498665,0.31239253794774413,-0.9767603813670576,-0.3442676733247936,0.012866501230746508,0.795488758943975,0.19689455954357982,0.2909551369957626,-0.7551882173866034,0.2712015570141375,-0.3097356427460909,0.47868376644328237,-0.5470442827790976,0.39575697388499975,-0.9222492692060769,0.9525999743491411,-0.5919448379427195,0.988517680671066,0.44571504974737763,-0.15724930074065924,0.44545195531100035,-0.1434592748992145,-0.11420850269496441,-0.714089585468173,0.7509765587747097,-0.011020197998732328,0.2591719697229564,0.2719729379750788,0.5689489739015698,-0.5478187096305192,0.4660949809476733,0.24287696089595556,0.7115018353797495,-0.33101152442395687,0.9383322848007083,0.7104648691602051,0.9332731640897691,-0.464538037776947,0.17219368275254965,0.004848637618124485,-0.6912206900306046,0.7728006280958652,-0.0240772501565516,0.5017438172362745,-0.6703339759260416,-0.6589399189688265,-0.024081028066575527,0.8829146628268063,-0.6905591883696616,0.46148284478113055,-0.8938866071403027,0.8935024817474186,0.932419428601861,-0.02697201818227768,0.1402792939916253,0.04730539582669735,-0.9235662631690502,0.321349180303514,-0.5391227239742875,0.47870506811887026,0.39547563157975674,0.9360195007175207,0.3859259025193751,-0.6480041337199509,0.17767808493226767,0.7161390292458236,0.9238616726361215,0.5736117106862366,0.22059939336031675,-0.4590663053095341,0.7605869476683438,0.10598393436521292,0.26629562489688396,0.14573625754565,-0.4883038061670959,-0.6431828062050045,0.3985485346056521,0.9375074184499681,-0.3359422138892114,0.49904984096065164,-0.42322891065850854,0.9730829177424312,0.641753469593823,-0.5888462443836033,-0.044112992007285357,-0.003734886646270752,0.5475037042051554,-0.00031717540696263313,-0.6465780050493777,0.4031041879206896,0.5307969697751105,-0.5762732033617795,0.5824492340907454,-0.2109198933467269,-0.9839900052174926,-0.7290708469226956,-0.45070906914770603,0.9923030356876552,0.6189353712834418,0.9000996816903353,-0.007839018478989601,0.37251092633232474,0.8727589184418321,-0.7819388965144753,-0.22016753116622567,-0.15822579944506288,0.2544604344293475,0.97965471399948,-0.2198714674450457,0.8919982104562223,-0.29137457720935345,0.4841238516382873,0.25809412682428956,-0.9046521270647645,0.10904358420521021,-0.8744289958849549,-0.46750455582514405,0.39505777042359114,0.45377181889489293,-0.3366843811236322,-0.02895189728587866,0.18602626211941242,0.967964150942862,-0.3671806948259473,0.7261802470311522,-0.6860172566957772,-0.7202802645042539,-0.5574303222820163,-0.6435806429944932,-0.2230264819227159,0.43855019425973296,0.5750839929096401,-0.9425055244937539,-0.6086476435884833,0.7754482398740947,-0.6233131410554051,-0.40174978226423264,0.4057877412997186,0.9510010010562837,0.2823010552674532,-0.563472181558609,-0.24736653454601765,0.7832708745263517,-0.2283768462948501,-0.3185107745230198,-0.9518631603568792,-0.4002476278692484,-0.5859173778444529,0.3336762418039143,0.1476627648808062,0.3504176465794444,-0.2591793490573764,0.615936875808984,-0.9092094735242426,0.7004546797834337,0.311339917127043,-0.355104829184711,0.03976582270115614,-0.6368203018791974,-0.6633204072713852,0.8581264694221318,0.2489006887190044,0.6136222030036151,0.0900985118933022,0.680037050973624,-0.12703011464327574,-0.4111314727924764,0.5476221889257431,0.9169621770270169,0.809865748975426,-0.4525711894966662,0.7045909818261862,0.6236910056322813,0.9711179081350565,0.495850658044219,0.39778726175427437,-0.0834756433032453,-0.740289761684835,-0.7430306342430413,0.6292427950538695,0.19709123251959682,-0.7399415373802185,-0.6806001220829785,-0.9996175733394921,0.03906508907675743,0.44492508936673403,-0.11424116604030132,0.7001361763104796,-0.5722095025703311,-0.37704712618142366,0.7845460209064186,-0.08205053908750415,0.9015561142005026,-0.6900267484597862,-0.39637615997344255,0.26112812384963036,-0.788588089402765,-0.06811834359541535,0.0372007736004889,-0.4337075720541179,-0.6863570590503514,0.3197440840303898,0.3172384803183377,0.13387337839230895,0.8942034160718322,-0.12604352086782455,0.8523094300180674,-0.24538392899557948,-0.4772539525292814,-0.6918499870225787,-0.1666392283514142,0.746649278793484,0.9709297581575811,0.13632488530129194,0.944766447879374,-0.3775885682553053,-0.7621031012386084,-0.4564077635295689,0.3259212011471391,-0.2278896328061819,-0.16698999796062708,0.20854310831055045,-0.05293194018304348,0.6908178194426,0.7150539942085743,0.9923322778195143,0.3947540963999927,-0.266173976007849,-0.029802309349179268,-0.4306601593270898,0.8417737614363432,0.32480911118909717,-0.7016025888733566,0.598150173202157,0.09605449484661222,0.7061019614338875,-0.0453249653801322,0.9295240142382681,-0.5909945927560329,0.25678910920396447,0.6249199276790023,-0.92566356388852,0.764113761484623,0.37377840373665094,-0.1445345375686884,0.33652779972180724,0.509222452994436,-0.6572791249491274,0.5072372108697891,0.5425418415106833,-0.5537529741413891,-0.6882993374019861,-0.5103017226792872,0.5513539249077439,-0.7111371369101107,-0.06768855499103665,-0.6592779392376542,0.6045400216244161,-0.048303722869604826,0.7038961658254266,0.6645630737766623,-0.925819652620703,-0.4969631303101778,0.5151558355428278,-0.6070085586979985,-0.2810242152772844,-0.2614356242120266,0.15457562310621142,-0.5918913832865655,0.13192441035062075,-0.8247212101705372,-0.6802003486081958,-0.8040212411433458,0.49104386381804943,-0.7384640015661716,0.41865459736436605,-0.28219566075131297,0.6316609112545848,-0.4930719854310155,-0.7158036255277693,-0.7475829957984388,-0.2748064026236534,-0.5570248933508992,0.012367071118205786,0.7828701692633331,0.8997735260054469,-0.7299030502326787,0.3794888695701957,-0.9744572783820331,0.3654886740259826,-0.060328984167426825,-0.048946491442620754,-0.547477038577199,0.6112506478093565,-0.18685468519106507,0.058907265309244394,-0.9621496084146202,0.6943775229156017,-0.9179478893056512,0.6062937062233686,0.09100377513095737,0.5363028994761407,0.455294088460505,0.17369415424764156,-0.42389601096510887,0.928893088363111,-0.2894294732250273,0.7957695927470922,0.7159349606372416,-0.24010713305324316,0.9710572324693203,0.2062565046362579,0.3095075166784227,0.4667102275416255,0.565636477433145,-0.43052969640120864,-0.09018491860479116,-0.9226245190948248,-0.6878511253744364,-0.7677378244698048,0.035099868662655354,-0.23484309203922749,-0.6245139096863568,0.38021516893059015,0.06933898711577058,0.956761640496552,-0.376965815667063,0.17976764310151339,-0.34854034800082445,-0.38271481497213244,0.5850092340260744,0.2772810342721641,-0.33077637990936637,-0.4046820094808936,-0.6521044615656137,0.9315325105562806,0.02702479623258114,0.025854884181171656,-0.8477123384363949,-0.9565464095212519,-0.88715233001858,-0.7501201978884637,0.9214168176986277,0.7784836408682168,0.5078591047786176,0.28866929979994893,-0.7711171628907323,-0.6753659369423985,0.36025772569701076,0.38617444271221757,-0.37089273566380143,-0.408853757660836,0.6073083081282675,0.007399079855531454,-0.7179684275761247,-0.6593027939088643,-0.0996354497037828,-0.888110457919538,-0.843785606790334,0.2763890214264393,0.9780964809469879,-0.5593384671956301,-0.5894735306501389,-0.6747803469188511,0.20920751756057143,-0.7193726180121303,0.1092064087279141,-0.9993344293907285,0.23635814851149917,-0.37127679167315364,-0.7874241080135107,0.4523159582167864,0.5305298464372754,-0.6562314624898136,0.58152713207528,-0.05773388734087348,-0.7704519722610712,0.6785756414756179,0.5639569545164704,0.6849848260171711,0.28834002232179046,0.9511756440624595,0.5069656693376601,0.7531124399974942,0.17751394119113684,0.9150416487827897,0.26619637245312333,-0.8484940882772207,0.9888198305852711,0.6461712713353336,0.6230352562852204,-0.8378983866423368,0.9024017876945436,-0.34356810292229056,0.409341000020504,-0.49631694983690977,0.39181955717504025,-0.2752262228168547,0.005854262039065361,0.5531908115372062,0.7656151447445154,0.23488501086831093,0.05209500854834914,0.33273157151415944,0.6578145660459995,0.2976899817585945,0.8301022183150053,-0.1997120720334351,-0.3770939577370882,-0.3920950382016599,0.17972159339115024,-0.4258078197017312,0.2948369747027755,0.9871241264045238,-0.058878934010863304,0.1067265341989696,0.944432991091162,0.6940078316256404,0.21348175592720509,0.5426975339651108,-0.881821088027209,0.3346197148784995,-0.5207750261761248,-0.33466857858002186,0.3674073852598667,0.6218125512823462,-0.7560105044394732,0.9659870117902756,-0.9743399904109538,0.7010045889765024,-0.9679817971773446,-0.25726275984197855,-0.5616527739912271,0.2801364464685321,0.8834619568660855,-0.767671843059361,-0.9230912141501904,0.28305836813524365,0.7097324063070118,-0.6444515138864517,-0.3961053495295346,-0.4565244112163782,0.9002326340414584,-0.23077543172985315,0.8824021220207214,0.45448510022833943,0.016457439865916967,0.8862097654491663,-0.04691843455657363,0.37026652647182345,0.2191292536444962,0.9558761650696397,-0.3548791599459946,-0.46905717300251126,-0.6487653683871031,0.42322133714333177,0.8152649812400341,0.7997954599559307,0.5376715478487313,-0.8189113703556359,0.7500574076548219,-0.41067331889644265,-0.9503974583931267,0.9812369905412197,0.22361609991639853,-0.13504885556176305,-0.8377546174451709,0.10853560315445065,-0.1628765808418393,-0.9545007264241576,-0.9954067268408835,-0.4725782978348434,-0.6629484840668738,-0.029160865116864443,-0.47809785418212414,0.7154173855669796,-0.2735822191461921,0.11325789289548993,-0.23330456530675292,-0.7353185215033591,-0.6076834201812744,0.21749438252300024,0.7387807690538466,0.8895611865445971,0.2651052288711071,0.9423929443582892,-0.7530865832231939,-0.7518133064731956,0.7429631794802845,-0.20046079624444246,-0.20530362939462066,-0.43261000234633684,-0.5769737847149372,0.5588988321833313,-0.49638414895161986,0.930700293276459,0.2199230995029211,0.349747225176543,-0.34832738107070327,-0.870569933205843,0.5008125347085297,-0.5777059616521001,0.9325160002335906,-0.9487480469979346,0.37925981916487217,0.7421905230730772,0.7517039971426129,-0.962387952953577,-0.7623459124006331,-0.8721925518475473,0.7052407064475119,-0.5492550069466233,-0.6674902294762433,-0.47590218344703317,-0.4987928024493158,0.03429623879492283,-0.611081316601485,0.007776815444231033,0.0893064676783979,0.619244531262666,0.8951353970915079,0.08699208870530128,-0.6115700425580144,-0.7618740983307362,0.13953500846400857,0.8276095013134181,-0.22944655595347285,-0.5801364574581385,0.09291685512289405,-0.2001897869631648,0.23072216846048832,0.23217424703761935,0.4351080236956477,-0.5038369754329324,-0.08766403282061219,0.2709526913240552,0.44440252473577857,0.8969884761609137,-0.6233220603317022,-0.7538594156503677,-0.07990777026861906,-0.4906476214528084,0.748801470734179,-0.9661747505888343,-0.8080030572600663,0.9999937838874757,-0.3249742272309959,-0.10310181090608239,-0.8635857864283025,-0.2583845308981836,0.1311495932750404,0.453399948310107,0.7286851829849184,-0.29570681881159544,-0.9830585280433297,-0.09003163175657392,0.34738463116809726,-0.9045388577505946,0.8686125986278057,-0.5512328348122537,0.7277756850235164,-0.6777276820503175,0.8327343901619315,-0.12894425448030233,0.05069081857800484,0.9898947826586664,0.742382928263396,-0.5605859500356019,-0.24780190316960216,0.19624610291793942,0.7989433174952865,0.14741584844887257,-0.8010947532020509,0.5846201926469803,-0.47375104017555714,-0.12585473945364356,-0.5134915434755385,-0.7500816155225039,-0.4248731695115566,0.9511703141033649,0.4705481296405196,-0.8646634565666318,0.05784659553319216,-0.3029430555179715,-0.9917010120116174,0.18776712799444795,0.28785919724032283,-0.3576796748675406,-0.2626735405065119,0.09330371115356684,-0.27391575230285525,-0.12549434695392847,0.604133443441242,-0.22232185257598758,-0.12420985288918018,-0.5013440158218145,0.7798598650842905,0.28201153920963407,0.7885542078875005,0.13591084582731128,-0.9990628371015191,0.8011036552488804,0.42937160562723875,-0.42147193336859345,-0.8338305386714637,-0.08429686864838004,0.36345672653988004,-0.8931850143708289,-0.7682949700392783,0.5945205898024142,0.5718044261448085,-0.4276490625925362,0.19806953892111778,-0.34946150006726384,-0.14800872839987278,-0.7378246150910854,-0.6732828295789659,0.8051033336669207,-0.9547894657589495,0.24703619722276926,0.4042004910297692,0.13410636829212308,-0.33546279883012176,0.6961010284721851,-0.7077958812005818,-0.9320940533652902,-0.4327081460505724,0.09663991769775748,-0.3078571739606559,-0.9560237778350711,0.5483326278626919,0.7307705809362233,0.4248750424012542,-0.03666096366941929,-0.2683967826887965,0.44368751300498843,-0.4415817908011377,-0.7730718203820288,0.6550751412287354,-0.8165258965454996,-0.4413358476012945,0.8366033425554633,-0.9436837285757065,0.22445900971069932,0.20216645719483495,-0.4317515902221203,0.8807234456762671,-0.45536055928096175,-0.8898019082844257,-0.9908602931536734,-0.8563359463587403,0.14434342691674829,-0.8137181480415165,-0.06172497756779194,-0.10398078616708517,-0.3846737537533045,0.77693135663867,0.8603686578571796,0.8621143628843129,-0.0783663303591311,-0.10344392713159323,-0.3342928825877607,-0.7599684130400419,0.10145299276337028,0.6038562934845686,0.25310593005269766,-0.5113367470912635,0.6492301882244647,-0.030919856391847134,0.47011161502450705,-0.9095300789922476,-0.8185034585185349,-0.5783871216699481,0.7546572838909924,0.4466893570497632,0.25513651175424457,-0.533443330321461,0.22708716429769993,-0.21692656353116035,0.2128249416127801,-0.20737497229129076,-0.4045953066088259,-0.7707468625158072,-0.7818742287345231,0.12743303179740906,0.9102369411848485,-0.8559277206659317,0.529505608137697,0.685620819684118,0.06929050805047154,-0.09006159100681543,0.7133012735284865,-0.0572831011377275,-0.050899310037493706,-0.28200729051604867,0.3036326328292489,0.09557653218507767,0.07075552456080914,-0.03116880590096116,-0.7827642760239542,0.17188148899003863,0.8273852090351284,0.7784114456735551,-0.34603111911565065,0.3073181645013392,0.6916319681331515,0.4681978696025908,-0.6033958359621465,-0.7814105306752026,0.16354974079877138,-0.2898829239420593,0.3499353271909058,0.3974731471389532,-0.8213208676315844,0.4814841621555388,0.1360643575899303,-0.0016257138922810555,0.5134522854350507,-0.8336709951981902,0.9784533176571131,-0.9844300900585949,0.17911319062113762,-0.8064864142797887,0.8487200317904353,-0.25255167158320546,0.5918882987461984,-0.5860624280758202,-0.09272813890129328,-0.3233348000794649,0.5588486935012043,-0.7415037876926363,-0.8009914625436068,0.7861727424897254,-0.6488115778192878,0.3496535196900368,-0.7264702869579196,-0.10061927698552608,0.5484019774012268,-0.7332041384652257,-0.8006800161674619,0.935913962777704,-0.27824834547936916,0.2551300236955285,0.24555265484377742,-0.05057750642299652,0.16369124641641974,0.7529111481271684,-0.9098112070932984,-0.5979065685532987,0.17546085081994534,-0.5706734238192439,0.13044952135533094,0.476543462369591,-0.6081987777724862,-0.0865403083153069,-0.6158268805593252,-0.9130609701387584,0.5382148469798267,0.0770599558018148,-0.4908984121866524,0.22807254688814282,0.8657776205800474,-0.5220852573402226,0.5361392479389906,0.7213660259731114,-0.8687333445996046,-0.2149276197887957,0.618461471516639,-0.8513324847444892,-0.5525519382208586,0.6043737190775573,0.859585914760828,0.8348817187361419,0.39915954414755106,0.9413832938298583,-0.655196288600564,0.6571358791552484,0.7904876498505473,0.43579523358494043,0.19430434191599488,0.7613988225348294,0.05161081347614527,0.5540843857452273,0.3880997998639941,0.34285272751003504,0.3419418050907552,0.506294971331954,0.6447149226441979,0.9359879763796926,0.7384313843213022,-0.92751206131652,0.378198919352144,-0.8611348872072995,-0.15667404234409332,-0.09889039536938071,-0.23129576537758112,0.6614035903476179,-0.29806188214570284,0.4331383057869971,-0.14900403702631593,-0.29327726457268,0.40565131790935993,0.8357068332843482,0.5754431574605405,-0.6494032833725214,-0.3711096323095262,-0.9734364100731909,0.6739807114936411,0.7430308945477009,0.17394258687272668,-0.721006867941469,-0.18416978046298027,-0.13595738308504224,-0.41066118283197284,0.2856113542802632,0.4029153408482671,-0.6106393835507333,0.3035284923389554,-0.5731348413974047,-0.8897345238365233,0.7012693686410785,0.09026953391730785,0.6092410632409155,-0.6413711067289114,-0.6462909057736397,0.07072872808203101,-0.89083929406479,-0.05266549717634916,-0.0009449790231883526,-0.03548205643892288,-0.12357429228723049,0.3679983066394925,-0.7399210017174482,0.6724934270605445,-0.29376861033961177,0.3909548008814454,-0.9262814866378903,-0.6504322490654886,0.513194892089814,-0.1333823138847947,-0.08792295074090362,-0.2933468287810683,-0.07329710200428963,0.3461349569261074,-0.40951332030817866,0.3623724179342389,-0.11647575162351131,-0.5515258070081472,0.1384319420903921,-0.6934151067398489,-0.4665202694013715,0.9759126557037234,0.24292373936623335,-0.8579076859168708,-0.9331522448919713,0.32439174223691225,-0.2255745674483478,-0.9268877902068198,0.9215258494950831,0.42223091423511505,-0.4605663209222257,0.553747087251395,-0.2018185630440712,-0.9330100947991014,-0.28763506654649973,0.7644970938563347,-0.2138576922006905,-0.8334672236815095,-0.3557221260853112,-0.4226936441846192,0.45769381802529097,-0.23008715780451894,-0.6934946123510599,0.5562500720843673,0.8553944211453199,-0.4879802013747394,0.26531499018892646,-0.6682521221227944,-0.027862565591931343,0.6336132856085896,0.7331665675155818,-0.46789954835548997,0.2919522002339363,0.3743946929462254,-0.9806487411260605,0.9352864008396864,-0.9584384271875024,0.20472858985885978,0.5733329700306058,-0.1708469190634787,-0.5365273840725422,-0.7800297443754971,0.6650931742042303,-0.8804384376853704,-0.17986961221322417,-0.43284145602956414,0.18298946088179946,0.8215321749448776,-0.330613671336323,0.7196618258021772,0.6820766488090158,-0.45417461544275284,0.5935527109540999,0.43915835674852133,-0.2077681696973741,-0.8446901305578649,0.9210128071717918,0.7885813829489052,0.0346276774071157,0.9962458815425634,0.5695588001981378,-0.5293534658849239,-0.8091907878406346,-0.6109316949732602,-0.32482781121507287,0.4677439769729972,-0.27003267453983426,-0.17186126625165343,-0.31749519519507885,0.611247350461781,0.9126401450484991,-0.3359827226959169,-0.9579847506247461,-0.8022179529070854,-0.49070505471900105,0.10159212024882436,-0.6731973942369223,0.832497647497803,-0.10136523749679327,-0.813085594214499,-0.3677878309972584,-0.5049709076993167,0.5462125511839986,-0.13820218248292804,0.2524180174805224,0.7489795577712357,-0.9285307037644088,0.27928328746929765,0.18343494506552815,0.5754683506675065,0.7990933433175087,0.20609848527237773,-0.4169122586026788,0.6268154312856495,-0.894897201564163,0.9647266329266131,0.9473251472227275,-0.7870174525305629,0.36100156605243683,0.424796000123024,-0.08571475790813565,-0.49132481403648853,0.7859450615942478,0.6996955475769937,0.7170113436877728,0.5181344491429627,0.22266909247264266,-0.04216455947607756,0.6897070468403399,0.25278553599491715,0.8276978265494108,-0.14909413596615195,-0.7254370399750769,-0.43966390332207084,0.87449507182464,0.05113143101334572,0.6901450767181814,0.06493329908698797,-0.5724857053719461,0.4896640470251441,-0.12879482144489884,-0.698935832362622,-0.3409813540056348,-0.6805003173649311,-0.5341123663820326,-0.009063512552529573,0.30132570676505566,-0.13917789002880454,0.40411757258698344,-0.4270669538527727,-0.06334382202476263,0.2887666788883507,0.3193450109101832,-0.23174613947048783,0.406107135117054,0.5832130536437035,0.5601930120028555,-0.6216753674671054,-0.48190895235165954,0.5927724251523614,0.005856993142515421,-0.24874396435916424,-0.4426115886308253,0.9468750506639481,-0.9629593677818775,0.41250023525208235,-0.9946833420544863,-0.2288479469716549,-0.8514386494643986,0.39950810046866536,-0.39375332556664944,0.9539183969609439,0.7818160434253514,-0.571084639057517,0.04298549052327871,0.368491746019572,0.570917917881161,0.008513400331139565,-0.9548526401631534,-0.7380569651722908,-0.17102429550141096,-0.3193880836479366,0.6547724362462759,-0.8026263965293765,-0.6967580220662057,0.5856895693577826,0.028593929018825293,-0.5283922785893083,-0.24855235498398542,-0.10879989294335246,0.07479597628116608,-0.401619422249496,0.805138130672276,0.2801529597491026,-0.8037484656088054,0.14329912792891264,0.30799560667946935,-0.9952173791825771,0.9259176109917462,-0.8132105655968189,-0.014842060394585133,-0.7543207695707679,-0.14356501586735249,-0.6016765851527452,-0.15501745231449604,-0.699895597063005,-0.8113165157847106,0.5374162965454161,-0.42193648871034384,0.5052280211821198,-0.9104692782275379,-0.09890867071226239,-0.564094974193722,0.6713895606808364,-0.7357885683886707,-0.7254392858594656,0.7305549592711031,0.7195094921626151,-0.19818650046363473,-0.5963336313143373,-0.01122208684682846,0.26846663979813457,0.3193789659999311,0.166581429541111,-0.5692742429673672,-0.028117727022618055,0.7825910579413176,0.7935711750760674,0.32979996502399445,0.5156673612073064,0.5295399501919746,0.775222931522876,0.3245451212860644,-0.4963346440345049,0.5031979382038116,0.38126989733427763,-0.4243058068677783,0.7068010363727808,-0.5180631447583437,-0.9643412088043988,-0.1991249560378492,0.5844056545756757,0.7768030264414847,-0.4745291215367615,-0.3743849345482886,0.2318052714690566,-0.9701615311205387,-0.9471005597151816,0.24270922876894474,-0.8023665673099458,0.0877352487295866,0.6598291015252471,-0.6566282296553254,0.342055537737906,-0.5974747007712722,0.9038046603091061,-0.6239677593111992,-0.5844204141758382,0.36635072669014335,0.7887256592512131,-0.21662108041346073,-0.14957044646143913,0.3554112636484206,-0.7346088569611311,0.48625281266868114,-0.30765182012692094,0.5821266188286245,-0.36775102699175477,0.3815143178217113,0.09417810291051865,-0.7434672038070858,0.73472567088902,-0.24064633809030056,-0.662504855543375,-0.8852871549315751,-0.45137300295755267,-0.7404734883457422,-0.9949782472103834,0.4671000833623111,-0.4220882193185389,-0.3951277839951217,-0.3103194353170693,0.9283791487105191,-0.05315545480698347,-0.05503521580249071,-0.4629369452595711,0.8405519626103342,-0.2815433372743428,0.3974229753948748,0.20772498846054077,0.3735178876668215,0.815468670334667,-0.5668681999668479,0.690106444992125,0.5470578321255744,-0.547730902209878,-0.19095577904954553,0.910852859262377,-0.6020146226510406,-0.5252395467832685,0.426350736990571,0.4870995716191828,0.7723745545372367,-0.44280691212043166,0.7492411225102842,-0.8795259324833751,-0.047501885797828436,0.42546774027869105,0.5516292178072035,-0.04547311458736658,0.4995088637806475,-0.31945932609960437,0.07194653106853366,-0.11266648815944791,-0.41288213711231947,-0.2533848825842142,0.002054586075246334,0.7742963340133429,-0.5788724455051124,0.5302013219334185,0.31930276192724705,-0.9067829647101462,0.8923724358901381,0.3037634422071278,0.5234823296777904,-0.6873301663435996,0.6513733640313148,0.9172690245322883,-0.6042106267996132,-0.3397580236196518,-0.3798741716891527,0.06314638163894415,-0.37732688803225756,-0.8459855550900102,-0.15788721526041627,-0.3608361850492656,0.13643346913158894,-0.12731777364388108,0.6549048754386604,0.9693004530854523,0.7502102954313159,-0.7859539426863194,-0.6529764849692583,-0.1468783300369978,-0.9207797390408814,0.8791701542213559,0.5836307178251445,-0.12484022043645382,-0.050648225005716085,-0.04621422477066517,-0.5140531808137894,0.9312322973273695,0.9233327102847397,0.6505733085796237,-0.5608757641166449,0.18043337715789676,0.8383092214353383,0.6145773162133992,-0.7483903835527599,0.2086199107579887,0.8605113802477717,0.003800550941377878,0.4270158032886684,-0.4257281222380698,0.5679374020546675,0.8538732118904591,-0.8731853235512972,-0.9779052436351776,0.3126562894321978,-0.4703563479706645,0.39887226512655616,-0.648359655868262,-0.6786171258427203,-0.16386015294119716,-0.477127468213439,0.14550059149041772,-0.8685055798850954,0.548967310693115,0.03147249249741435,-0.6286986204795539,-0.761754013132304,0.11790551617741585,-0.3603367283940315,0.10154424607753754,0.09152148105204105,-0.4948638752102852,-0.15415282920002937,0.4227696554735303,0.16236779745668173,0.6266672550700605,0.6449152179993689,-0.8554987129755318,-0.7638647868297994,0.10952087072655559,0.8415720029734075,-0.7444496266543865,-0.6731387041509151,0.11547258868813515,0.502786174416542,-0.16340014152228832,-0.8199682580307126,0.06963487342000008,-0.9904346275143325,-0.6474257041700184,-0.8167947740294039,-0.8515543066896498,0.940577793866396,-0.5176031161099672,0.5551311844028533,-0.035116713494062424,0.7668260112404823,-0.8521992047317326,-0.026635232381522655,0.3170231757685542,-0.06329432595521212,0.6928991032764316,-0.3804018599912524,0.22752205654978752,-0.6529505965299904,-0.5301850228570402,-0.3867715750820935,0.7267738385125995,0.0196915571577847,-0.7572234831750393,0.8366339793428779,-0.5905475588515401,-0.2053285432048142,0.9011858459562063,-0.4695417690090835,-0.16321015637367964,0.7760847075842321,0.32209452521055937,-0.012507174164056778,-0.6765629821456969,0.7310153157450259,0.5152227855287492,0.37447764398530126,-0.5251374482177198,-0.3675613235682249,0.29068678710609674,-0.6665770327672362,-0.8001872994937003,0.20845876960083842,-0.35895670810714364,-0.17771734250709414,0.9378445255570114,0.6052781236357987,-0.746148319914937,0.8472910467535257,0.3157835705205798,0.9854813092388213,-0.14292374392971396,-0.6405639033764601,-0.3052283329889178,0.5235733124427497,0.23547099763527513,-0.0034946459345519543,-0.22192564001306891,0.717253131326288,0.28481767838820815,0.39436670392751694,-0.9075427004136145,0.27782891830429435,-0.07007238501682878,0.9338765353895724,0.18665459612384439,-0.16036325134336948,-0.2860446651466191,-0.7083727763965726,-0.04562412854284048,-0.824565265327692,0.06764787249267101,0.9740094598382711,0.1461175074800849,0.22664300817996264,0.6345037366263568,-0.5128389406017959,-0.7538740946911275,0.6533084106631577,0.598497046623379,-0.9306177231483161,-0.029349487274885178,0.42946700658649206,-0.5783253433182836,-0.8672380452044308,-0.3333455394022167,0.9965641242451966,-0.6357178562320769,-0.21963398065418005,0.35637804260477424,0.9545369679108262,-0.8852086258120835,-0.9147820663638413,0.6085706274025142,-0.6292808121070266,0.47942212084308267,0.3085449659265578,0.9491950599476695,-0.7068206109106541,0.08309075934812427,0.6397518650628626,-0.9389198357239366,-0.7155790110118687,0.7511335625313222,0.7312216586433351,0.3518351702950895,0.5075351344421506,-0.5167174129746854,0.6154939439147711,0.18073587585240602,0.9125578105449677,0.6199052124284208,0.6612442620098591,-0.8528744578361511,-0.3990172725170851,0.7936308868229389,0.30075081577524543,-0.41481445729732513,0.25330552691593766,-0.5825746995396912,-0.31514025432989,0.41627259319648147,0.761536062695086,-0.40367258014157414,0.3076888555660844,0.4632829390466213,0.27833598433062434,-0.043225015979260206,-0.9510183492675424,-0.7226505340076983,0.10503662005066872,-0.25619261944666505,-0.06701890612021089,-0.22193654533475637,0.3486227816902101,-0.39744873717427254,0.030896435491740704,0.26071661012247205,0.43643140560016036,0.26791066210716963,-0.4057383593171835,-0.6021825899370015,0.6625984297133982,0.5448272367939353,0.6626643720082939,-0.6743265260010958,-0.9320145547389984,-0.626550602260977,-0.7830819841474295,-0.004721711855381727,-0.462619551923126,-0.5611026352271438,-0.27888882998377085,0.22330186469480395,-0.37895519752055407,0.078429133631289,-0.6066321483813226,-0.731460188049823,0.9622943652793765,0.4453344061039388,-0.8373405365273356,0.5371051183901727,-0.2553653991781175,0.7536958600394428,-0.5037871575914323,-0.9245978845283389,-0.8187292274087667,0.5245102550834417,0.8395446832291782,0.5070727448910475,-0.679319750983268,-0.27559387357905507,-0.8678722898475826,-0.7905094320885837,-0.17961496533825994,-0.48546309769153595,-0.8667472940869629,0.9429502380080521,0.2272044187411666,-0.5496448148041964,0.2903552455827594,-0.05989899951964617,0.9040311188437045,-0.6749039166606963,0.26208496605977416,-0.8614761726930737,-0.4993942603468895,-0.021672002039849758,-0.45957850757986307,0.2699034856632352,-0.3753327187150717,0.71989701455459,-0.16658123675733805,-0.11194971343502402,-0.4498510528355837,0.9847213076427579,0.2191270082257688,0.8110348414629698,-0.13319230824708939,0.6205508871935308,-0.6699539860710502,-0.4342427561059594,0.2893073623999953,0.2692683292552829,0.9681878183037043,0.3493473306298256,-0.9153490546159446,-0.9469375689513981,-0.5571544133126736,0.28465133206918836,-0.437209939584136,-0.48516849614679813,0.7634716797620058,-0.7590013896115124,-0.39133829111233354,0.798651693854481,-0.3704465511254966,-0.7375928643159568,0.3838499914854765,-0.9423474417999387,0.7267086612991989,0.12244330532848835,-0.31944032525643706,-0.5495408843271434,-0.04891835991293192,0.773246742784977,0.7551467078737915,-0.05131801916286349,-0.41133421706035733,-0.21120765106752515,-0.47457795729860663,-0.5626125992275774,-0.755284289829433,-0.1818027296103537,0.5240707104094326,0.45894387690350413,-0.13471746491268277,0.2555163949728012,-0.44379302812740207,-0.6602315120398998,0.679752426687628,0.50019461940974,0.2833585813641548,-0.18668006686493754,-0.6565941111184657,0.4293912216089666,0.12146354047581553,0.20607551047578454,0.603764564730227,-0.9277540668845177,0.5593984806910157,-0.1264362963847816,0.3557118270546198,-0.015769524965435266,0.6199859115295112,0.9796652207151055,-0.1502286223694682,0.16148317186161876,0.32189463218674064,-0.9009077795781195,0.7784199370071292,-0.4314086646772921,0.7403619349934161,-0.8641791939735413,0.08219440188258886,-0.4089879831299186,0.7227650601416826,0.8140033297240734,-0.34868291206657887,0.5625866483896971,-0.2497093752026558,0.7825186219997704,-0.2127398564480245,-0.5027781571261585,0.6309818141162395,0.9029688546434045,-0.9012329741381109,-0.010289323050528765,0.5339962197467685,-0.6784625733271241,-0.05121052358299494,-0.5148050463758409,0.49095856165513396,-0.9891988495364785,0.6668110848404467,-0.2187497103586793,0.8027956145815551,0.5496312957257032,-0.04004185367375612,0.6352250664494932,-0.6763778044842184,-0.2559428154490888,0.6500801001675427,-0.9638673840090632,0.49136440083384514,0.5644431910477579,0.26353979064151645,0.7237639208324254,0.525354587007314,-0.030381544027477503,-0.9515896686352789,-0.4054171466268599,0.6219242955558002,0.7024214672856033,-0.8781746490858495,0.80809415737167,0.798092249315232,-0.758042055182159,0.2793890740722418,0.004590047523379326,0.931486296467483,-0.04278288874775171,-0.01413709158077836,-0.28138441406190395,0.06055418914183974,-0.7051672162488103,-0.34848851151764393,-0.12641458213329315,0.3544056760147214,-0.8657741984352469,0.44609286822378635,-0.16979082580655813,-0.9578363578766584,-0.9434052393771708,-0.23601813148707151,-0.9110683966428041,-0.47628359869122505,-0.6309870737604797,0.9521811343729496,0.8114754450507462,-0.16425270540639758,-0.8757274602539837,0.8000651393085718,-0.32330791698768735,-0.31925865402445197,-0.32401874708011746,-0.8879556162282825,0.5511291543953121,0.4681183039210737,-0.004526662640273571,0.9240491464734077,-0.47042045230045915,0.5239342250861228,-0.7047129208222032,0.3530386099591851,0.6555893369950354,0.3929635430686176,0.8393505229614675,-0.388549969997257,0.07689993642270565,0.9426990747451782,0.6604513553902507,-0.002284991554915905,-0.4496647301129997,-0.21497585950419307,0.13907941011711955,0.9945777114480734,0.819907789118588,0.052391632460057735,-0.874007111415267,0.2286107507534325,-0.30120785580947995,0.4819530467502773,0.9007908315397799,0.4339415989816189,0.3069248227402568,-0.5588723327964544,0.5663608200848103,0.01847147336229682,0.3942799926735461,0.7608833257108927,0.9550600149668753,-0.8842961606569588,-0.7690112926065922,0.22444435954093933,-0.27600866835564375,-0.27728753676638007,-0.036280833184719086,-0.6998036433942616,0.2074820240959525,-0.22243599081411958,0.4272648938931525,0.48583619575947523,0.09554933290928602,-0.3742935941554606,-0.405357560608536,-0.30999096669256687,-0.46887478046119213,-0.758972299285233,-0.48549538757652044,-0.3759918659925461,-0.04352925531566143,-0.8165847328491509,0.1604611873626709,-0.5335658751428127,0.3353501297533512,0.09168705437332392,-0.44414925668388605,0.1537548084743321,0.9605688196606934,0.6755988546647131,0.5722662443295121,0.5511451754719019,-0.09511679317802191,-0.4084503040648997,-0.8872455693781376,0.9605753468349576,-0.3781296806409955,-0.3532464560121298,-0.4898231294937432,-0.46711311861872673,-0.13280174508690834,-0.216195251327008,0.30018819216638803,-0.24291074695065618,0.8166675041429698,-0.02082153270021081,0.47546810703352094,0.6838792185299098,-0.1306925411336124,0.6312508396804333,-0.8170554633252323,0.018599419854581356,-0.5872231083922088,0.5785796097479761,-0.3128256378695369,-0.3729767967015505,-0.6860065702348948,0.10328776342794299,-0.7521992470137775,-0.031607134733349085,0.9650249518454075,0.8534870552830398,-0.3728443272411823,-0.5026602097786963,-0.34582375967875123,0.42006211960688233,0.5296698473393917,0.36690818471834064,0.7635222347453237,-0.7458774750120938,0.029290554579347372,-0.9272303255274892,-0.43399385642260313,-0.32058382174000144,-0.3226723652333021,0.2852547690272331,-0.8979100594297051,0.02933807112276554,-0.8953608218580484,-0.8664768990129232,0.09612061455845833,0.48133837385103106,-0.42924714367836714,-0.20273395208641887,-0.03845929028466344,0.691534822806716,0.13549504475668073,0.4305833512917161,0.9183072410523891,0.7751684016548097,-0.936393294017762,0.07319107372313738,-0.8020399590022862,0.27234872756525874,-0.5045146341435611,-0.8320198287256062,-0.8194782333448529,-0.8881862522102892,0.7474067914299667,0.2043536356650293,-0.36537313926965,0.14895889349281788,0.48935746494680643,-0.6459658048115671,0.840369843877852,-0.06108336942270398,-0.47880274010822177,-0.5989497974514961,0.2915288358926773,-0.2613898431882262,0.28511185524985194,0.16434080991894007,0.03135407390072942,0.04058437095955014,0.3091252944432199,-0.8874970925971866,0.2324317446909845,0.4768348541110754,-0.5420762691646814,0.5218014582060277,0.8755259187892079,-0.3040613206103444,-0.7808696376159787,-0.1352616515941918,-0.8804522058926523,0.3100980748422444,0.7552995220758021,0.5920390859246254,-0.6133510246872902,-0.0920938472263515,-0.6719630868174136,-0.4363751783967018,0.8643034668639302,0.3272631270810962,0.09036362962797284,-0.6887919898144901,-0.27633989276364446,0.6082744393497705,-0.26277039805427194,0.2943171113729477,-0.5521654593758285,-0.2929501817561686,-0.6180125768296421,0.025452380999922752,0.5098327742889524,-0.5219806404784322,0.8155705709941685,-0.3484235880896449,-0.07916458649560809,0.449717418756336,-0.9407544238492846,0.8904540184885263,0.136337511241436,-0.02415641350671649,-0.6798094185069203,0.9116587308235466,-0.6364053245633841,-0.8607378997839987,0.38446224573999643,0.45290173497051,-0.703589356970042,-0.9715010980144143,0.5164654683321714,-0.5345174209214747,-0.5303543619811535,-0.33188368240371346,-0.8490548776462674,-0.34232312766835093,0.9017068729735911,-0.23573744809255004,0.26780833303928375,0.3854087581858039,-0.6542640556581318,0.15709730004891753,-0.40939069259911776,-0.7386367530561984,0.7898673471063375,-0.684663625434041,0.8953315606340766,0.8311686059460044,-0.08369713788852096,0.7600657767616212,-0.2878811159171164,-0.42272192100062966,0.589708992280066,0.5014750231057405,-0.5216408548876643,-0.9048684067092836,-0.18500189436599612,0.8894401006400585,0.16937116999179125,-0.8476207479834557,-0.496410037856549,0.8353298990987241,-0.1601406093686819,-0.5941967545077205,0.7018008311279118,0.19497411930933595,0.579967672470957,-0.9518781499937177,-0.6803480684757233,-0.4173085130751133,-0.2902219076640904,-0.2731649251654744,0.35214671259745955,0.4380603339523077,0.6614733333699405,-0.38577969605103135,0.7703624186106026,0.613760331645608,-0.21081454027444124,-0.31508243829011917,-0.710490410681814,0.7305209166370332,-0.5723046520724893,0.9852339150384068,-0.2321266639046371,-0.572656786069274,0.1327193072065711,-0.24704108713194728,0.2386242696084082,0.34597949963063,0.18637745128944516,0.556839442346245,0.002814509905874729,0.3468767777085304,-0.05288267647847533,-0.009821527171880007,-0.935860977973789,0.21258384874090552,0.8051762958057225,-0.6156347384676337,-0.6744652669876814,0.9282057615928352,-0.7293596151284873,-0.4045500522479415,0.12837454350665212,-0.7868578620254993,0.9116313410922885,-0.13771171681582928,0.6845327680930495,-0.0009124539792537689,0.7683430891484022,0.9945961902849376,-0.9940585540607572,-0.1737882331945002,0.7907715020701289,-0.18251243652775884,-0.816221586894244,-0.5783789157867432,0.33678508503362536,-0.8718260517343879,-0.014163695275783539,-0.4944766955450177,-0.8272093748673797,0.1305331694893539,-0.21719642914831638,0.8402624828740954,-0.5989965461194515,0.5872456636279821,-0.21117821242660284,-0.09800523286685348,-0.24042301764711738,0.4203328900039196,-0.7012102752923965,0.6784660071134567,0.23259116197004914,0.3836501566693187,0.9164182520471513,0.8182334853336215,0.7268676459789276,0.056144997011870146,0.5855473428964615,0.32451746007427573,-0.43479692470282316,-0.0008479193784296513,-0.6674714451655746,-0.9483285541646183,0.615306796040386,-0.4987281234934926,0.8222317527979612,0.5688032628968358,0.20547705981880426,0.11220698524266481,0.46824669325724244,-0.1816129763610661,0.36875340063124895,0.05153714120388031,0.04755596723407507,-0.2670184993185103,0.7817846657708287,0.7686188295483589,-0.9702197210863233,-0.08979320153594017,-0.8183441441506147,-0.7465712688863277,0.9574122149497271,-0.04288527416065335,-0.7236184575594962,0.7104987790808082,0.7279075491242111,-0.6533364979550242,0.8540005064569414,0.9645606582053006,-0.2099226019345224,0.3236932270228863,-0.4831053838133812,-0.9987084153108299,0.75459437770769,0.35240744380280375,0.35492158168926835,0.1520793833769858,-0.11075331876054406,0.5627014678902924,-0.664532694965601,-0.9617557958699763,0.37151269568130374,-0.6493948702700436,-0.44629794219508767,-0.6733551565557718,0.8213541931472719,-0.7252553412690759,0.9363291217014194,0.09977008448913693,-0.2514146533794701,0.9986399575136602,-0.9245642917230725,-0.024531496688723564,-0.625450343824923,0.5970245799981058,-0.33400693675503135,-0.41822641622275114,0.2670573303475976,-0.09694602433592081,0.47977587953209877,0.8395105642266572,-0.9283552523702383,-0.5723837809637189,-0.36790713062509894,-0.5096041508950293,0.5853360556066036,0.04993575206026435,-0.9715736638754606,0.43458852637559175,0.5274150441400707,0.5484613394364715,-0.9565882906317711,-0.6683268304914236,-0.7190012419596314,-0.3448596131056547,0.4311808296479285,-0.6502413065172732,-0.06573916738852859,-0.4295713473111391,-0.9006337868049741,0.06942101242020726,0.6597920120693743,0.476021196693182,-0.12830790039151907,0.4085257761180401,-0.3830896685831249,0.03072626143693924,0.8813939737156034,0.8672538828104734,0.627852407284081,0.6204285235144198,0.8996767220087349,0.0012109302915632725,-0.34467391949146986,-0.8153395731933415,0.8772876877337694,-0.734234360512346,0.49802162451669574,-0.866873228456825,-0.5595044950023293,-0.3642323287203908,0.9385680505074561,0.012613591738045216,0.3753068735823035,-0.628105825278908,-0.6909899530000985,0.33416506415233016,0.3908964218571782,-0.006891602650284767,0.29623398277908564,-0.3249480160884559,-0.8361890995875001,-0.605856953188777,0.13054995890706778,-0.8295977511443198,0.30828745290637016,0.9724204847589135,0.7772404197603464,0.2634608526714146,0.8168684453703463,0.6223144070245326,-0.3990673962980509,-0.6971214506775141,0.28488933853805065,-0.3684440799988806,0.15147670917212963,-0.673370954580605,0.07740240730345249,0.3383029173128307,-0.6171522838994861,0.1340278396382928,0.8327739564701915,0.2684934800490737,0.7920168116688728,-0.46574534103274345,-0.2907664510421455,-0.8974343286827207,-0.8951187403872609,0.6169184721074998,0.011906786821782589,0.241981013212353,-0.5360084287822247,-0.7212098115123808,-0.39006172539666295,-0.5720525407232344,-0.03459443710744381,0.41863208496943116,0.9553496991284192,-0.11755887186154723,-0.8425490497611463,-0.017889463808387518,0.5550448400899768,0.8571307258680463,0.8915529982186854,-0.24189481977373362,0.8043506518006325,-0.9397255568765104,-0.5292470417916775,-0.5029723793268204,-0.10048486012965441,0.5381598640233278,0.8071966147981584,-0.9570160624571145,-0.8919693781062961,-0.2757149455137551,0.5450705084949732,-0.8944126428104937,-0.7227291548624635,0.5376031259074807,-0.9334817519411445,0.5180218359455466,-0.15463701263070107,-0.937290808185935,0.3768666791729629,-0.6071820030920208,0.19591499073430896,-0.11025672033429146,0.2738196705467999,-0.8486933610402048,-0.010179801844060421,-0.18924785824492574,0.26941283512860537,-0.8320764801464975,-0.11891612317413092,-0.7465205229818821,-0.13557585375383496,0.004917632322758436,-0.7494095731526613,-0.8166585201397538,0.054058602545410395,-0.11641382239758968,-0.7658547009341419,-0.15653441799804568,0.011332042049616575,0.6142150792293251,-0.5945300459861755,0.65253428183496,-0.177150784060359,-0.8222528635524213,0.5830610250122845,0.5902722598984838,-0.23975469078868628,0.8593450719490647,0.09322774410247803,-0.22742202132940292,0.31090068211779,0.6009289277717471,-0.8804784007370472,0.7722673728130758,0.4594270926900208,0.5436514080502093,-0.9146798108704388,0.9658697596751153,-0.8942017178051174,-0.957188303116709,-0.41185225965455174,0.7216351134702563,0.2898521302267909,0.7922122036106884,-0.10183677962049842,0.16822796128690243,0.9198495880700648,-0.8883635378442705,-0.7139293504878879,0.3287291331216693,0.6349189700558782,0.6199460341595113,-0.3396027716808021,0.8896134472452104,0.608006794936955,0.8589562540873885,0.8134081456810236,-0.6467692330479622,0.43759256741032004,-0.7952766022644937,-0.25271641043946147,0.2704415265470743,-0.5713215051218867,0.3843806334771216,0.2988938195630908,-0.5180345019325614,0.013272964395582676,0.6260861088521779,0.2945651337504387,-0.2926846737973392,0.25915296794846654,0.023027492687106133,-0.8915562839247286,-0.576113557908684,-0.1136473324149847,0.007377578876912594,0.12968466617166996,0.050368054769933224,0.41568396613001823,0.6788140973076224,-0.6345842815935612,-0.8262819433584809,0.4643787839449942,-0.6887839254923165,-0.9785311361774802,0.3513534236699343,0.4879262982867658,0.5954506662674248,-0.8903018091805279,0.8202532953582704,-0.9339943896047771,0.45701051549986005,0.9970329068601131,-0.17643025098368526,-0.2680252278223634,0.29225220065563917,-0.05347341811284423,-0.41443838691338897,0.610920253675431,-0.17021031538024545,-0.9292695699259639,-0.03439724911004305,0.7358230091631413,0.3957822844386101,0.30126893101260066,-0.26622955687344074,0.44734069518744946,-0.47607330046594143,0.38948597479611635,0.22419388499110937,0.5093781361356378,-0.6754292724654078,0.6533462991937995,-0.8345290012657642,-0.7069097342900932,-0.6258599371649325,-0.43028454948216677,-0.8518837261945009,-0.08602244779467583,-0.8353077545762062,-0.2997459922917187,0.05014523770660162,0.6853837878443301,-0.6852476894855499,0.44526098296046257,-0.19315355131402612,-0.9070439380593598,0.6150624193251133,0.16751143150031567,0.36703098146244884,0.3384715165011585,-0.039266047067940235,0.40033077262341976,0.31346318079158664,0.4631442711688578,0.5711966212838888,-0.08892390225082636,-0.8496691011823714,0.4175259079784155,0.756241506896913,0.6364567861892283,0.40294503327459097,0.6408783439546824,0.246917684096843,0.8365533761680126,0.8052210565656424,0.4263144275173545,0.36538590444251895,0.054123015608638525,-0.051821557339280844,0.7434308878146112,-0.38747983518987894,-0.6552980053238571,0.0948765710927546,0.9783374429680407,-0.9641828034073114,0.7337039015255868,0.0688943793065846,0.11138767981901765,0.46960200695320964,-0.43962544994428754,-0.38009860552847385,-0.6200425615534186,0.6576804653741419,-0.06755030807107687,0.9556239675730467,0.9563881233334541,-0.06434743199497461,-0.2638878826983273,0.7658365946263075,0.9811017229221761,0.5205376176163554,0.02332115126773715,0.26441406086087227,0.10575971938669682,-0.6474119843915105,-0.08327989978715777,0.745151377748698,0.19552398100495338,-0.32752507273107767,0.4097278588451445,-0.25596648920327425,0.6603138549253345,0.49150369176641107,-0.8436213540844619,0.8961603930220008,-0.40636967681348324,-0.07731564017012715,-0.2440482210367918,-0.9399580494500697,-0.2763168071396649,0.7345513314940035,-0.6008303118869662,0.1968512893654406,0.3332331692799926,0.6553111113607883,-0.538541252259165,-0.9863742566667497,-0.7750303624197841,-0.430453157518059,-0.6122912103310227,-0.7052434585057199,0.1422539073973894,0.22619906160980463,-0.9419672177173197,0.24164987029507756,0.13344647781923413,0.49353417521342635,0.7497798344120383,0.8405232192017138,-0.6824054890312254,0.6243159389123321,-0.7677845908328891,-0.8292603851296008,-0.030295378994196653,-0.679778341203928,-0.8662402830086648,0.4472602950409055,-0.8666458083316684,0.33346018847078085,0.35595704708248377,0.4294708459638059,0.9396688509732485,0.24242534348741174,0.7178183016367257,-0.594095119740814,0.09255414456129074,-0.25125029496848583,0.5160591551102698,0.864847163669765,-0.46003608871251345,-0.03762524342164397,-0.6677418500185013,0.7804721239954233,-0.5154026388190687,-0.8777598757296801,0.5880424617789686,-0.17456371383741498,0.2343158065341413,-0.90713472943753,0.10761110577732325,-0.7073450786992908,0.261454947758466,-0.5858713602647185,0.07910302421078086,0.7042309064418077,-0.8160453089512885,0.7202227036468685,-0.2600604463368654,0.6588980373926461,0.44905376993119717,0.5256897513754666,-0.7359197600744665,-0.2643751045688987,-0.9094845531508327,-0.927928349468857,0.448408430442214,-0.24064932763576508,0.9249257734045386,-0.27780220098793507,0.18361671036109328,0.3488552845083177,-0.28357920702546835,0.9153496487997472,0.18767848843708634,-0.2880511791445315,-0.5943927415646613,0.7742775389924645,-0.7201188276521862,-0.8179318611510098,-0.5105388048104942,-0.5912908716127276,0.5808469951152802,0.031113022938370705,-0.4024430364370346,0.6833675494417548,0.3344833976589143,-0.40834803273901343,-0.18845179351046681,0.8193819215521216,-0.23819817742332816,0.3561803759075701,-0.006546268239617348,-0.09382614446803927,-0.711495088879019,-0.7440458941273391,-0.30592914670705795,0.07261332869529724,0.543145967181772,0.5585249280557036,0.6160784373059869,-0.15675847651436925,-0.45956250419840217,-0.15078132366761565,-0.4475394622422755,0.5213417797349393,0.20524438098073006,0.8993882862851024,-0.21332586789503694,0.5583725939504802,-0.025027782190591097,0.2805224172770977,-0.572804493829608,-0.34353303303942084,0.9605351225472987,0.017481465823948383,-0.00976895960047841,0.660973725374788,0.006345745176076889,0.3258418645709753,0.06581607274711132,0.4784208005294204,-0.8381682089529932,-0.40569830499589443,-0.9105045315809548,-0.3699508518911898,-0.9821745427325368,0.09888589382171631,0.7071674377657473,0.4973763437010348,0.336794953327626,0.5127138616517186,-0.6019171769730747,0.18621790781617165,0.43043774738907814,-0.4002867010422051,0.7262980327941477,0.4374923422001302,-0.11833712179213762,-0.8958418508991599,-0.49723149091005325,0.9277512915432453,0.3872540448792279,0.9412364987656474,-0.7172899153083563,0.25189094617962837,-0.8219607607461512,0.8750438988208771,-0.7438120599836111,-0.26336833368986845,-0.3465964738279581,0.27834066515788436,-0.8461606311611831,0.1898879176005721,-0.5762395160272717,0.42941413819789886,-0.1647099214605987,-0.4115075790323317,-0.920108110178262,0.37692491011694074,-0.2393210893496871,-0.7512908754870296,0.5289114024490118,-0.30781961139291525,0.8100091814994812,-0.450443796813488,0.4728996464982629,0.2444306928664446,0.7436957797035575,-0.5718818246386945,0.3189419158734381,0.5177243766374886,-0.38634941168129444,0.5250723720528185,-0.5374515224248171,-0.8946959534659982,0.39515152480453253,0.8822659440338612,-0.21250581089407206,-0.48254683427512646,0.8160654352977872,0.860751380212605,-0.30464921658858657,0.30144965928047895,0.5281554264947772,0.4046987066976726,-0.7051860480569303,-0.4700852856040001,0.7416872824542224,0.8024842473678291,0.27187315514311194,0.15593979973345995,-0.1539641236886382,0.2180846780538559,0.013657104689627886,-0.8226352855563164,-0.03673117281869054,0.23240914195775986,-0.23639328451827168,-0.77259138552472,0.18799569318071008,0.7425172859802842,-0.5530595378950238,-0.2704107016324997,-0.3752957689575851,-0.7087521012872458,0.4795463099144399,-0.7252650847658515,0.9234823356382549,-0.30984993325546384,0.4070439669303596,-0.46703040041029453,-0.1417299979366362,0.28408366814255714,-0.6523852269165218,-0.2712269574403763,0.0611059688962996,0.6548425448127091,0.03199825342744589,0.13251171819865704,0.3508837288245559,0.1886837212368846,-0.5480382945388556,-0.11808017641305923,-0.9075528453104198,-0.5205608303658664,-0.1395609900355339,0.6308451574295759,-0.9980231863446534,-0.5700779580511153,-0.7943924744613469,-0.9712827103212476,0.9679666426964104,-0.08393071172758937,-0.3648212840780616,-0.4456418063491583,-0.14926353003829718,-0.4452883801423013,0.8882579244673252,-0.601807932369411,0.5180589500814676,0.24592955829575658,0.31712279422208667,-0.21085952781140804,0.9978067567571998,0.4027642491273582,0.16669516125693917,0.66635821480304,0.6635594721883535,0.9884476349689066,-0.8668422200717032,0.8164620702154934,-0.18939027562737465,-0.7055963343009353,-0.948662999086082,-0.5462366631254554,-0.3397488356567919,-0.2522232187911868,0.290943400003016,-0.43635775428265333,0.696991644334048,0.4351658341474831,-0.16490413527935743,0.13729764381423593,-0.7645437973551452,-0.10768247954547405,-0.5442102001979947,-0.6714323740452528,-0.45848621148616076,0.021147242281585932,0.2667512367479503,-0.1824003355577588,0.335060250479728,-0.9286395264789462,0.5341933565214276,0.27960648154839873,-0.6959069888107479,0.3492032289505005,0.44050081772729754,0.3271234859712422,-0.21700159274041653,0.971591904759407,-0.09514827048406005,0.9451908296905458,0.8414473254233599,-0.9705959581770003,0.9004980372264981,-0.6169114829972386,-0.588267327286303,0.7342640613205731,0.9986905422993004,-0.7720767329446971,0.2083580163307488,0.31867285491898656,-0.8194370185956359,-0.8771606404334307,0.6572446473874152,0.141089984215796,0.45693362643942237,-0.5883789858780801,-0.3632867536507547,0.6590904342010617,-0.5924435812048614,-0.214912798255682,0.641455284319818,-0.801993714645505,-0.1755008678883314,-0.1290677385404706,0.015210635960102081,0.8283542194403708,0.02339512063190341,-0.7193110254593194,-0.6837256643921137,-0.8027587407268584,0.5695912484079599,-0.43418197706341743,-0.24860853608697653,0.427024245262146,0.5739147793501616,0.890428283251822,-0.733504731208086,-0.5147836920805275,0.5785572230815887,-0.8163842903450131,-0.5275403778068721,0.3469088189303875,0.48859514482319355,-0.40366102615371346,0.2614337201230228,-0.5661700367927551,-0.35314240865409374,0.9698718134313822,-0.6857562982477248,-0.8730666632764041,0.7422169386409223,-0.9900264889001846,-0.5163279143162072,-0.13948992732912302,0.5177796869538724,0.7218731651082635,-0.8998415661044419,-0.34625303791835904,-0.38229819340631366,0.3704864610917866,0.45509844925254583,0.1902273935265839,0.45784426806494594,-0.011014014016836882,0.9219563971273601,0.3807740192860365,0.07413710607215762,0.6605596863664687,0.0289293909445405,0.5190124143846333,0.26230290345847607,-0.3353573656640947,0.8431851835921407,0.5283484477549791,0.017791766207665205,0.7548688831739128,-0.47111099772155285,0.046406982466578484,-0.4776470409706235,-0.6313259149901569,-0.496990951243788,0.11720283748582006,-0.164378572255373,0.6747571071609855,-0.8817734341137111,-0.8087037638761103,-0.25038044108077884,0.8024687068536878,-0.3249104106798768,-0.6458183606155217,-0.5509860091842711,-0.23014618083834648,-0.4840277577750385,-0.8153130519203842,0.13309542927891016,0.4644681620411575,-0.07409522449597716,-0.9311650986783206,0.7760301609523594,0.10750701418146491,0.4704145649448037,-0.739879546687007,0.7616922431625426,-0.6552549260668457,0.7528939028270543,-0.14982959209010005,0.22985131107270718,-0.9269401859492064,0.8913251180201769,0.06410956988111138,0.2584717613644898,-0.47544699208810925,0.4988552816212177,0.6642457256093621,-0.6349165677092969,0.4663184271194041,0.9994546757079661,0.5971543099731207,-0.1919154841452837,0.5922326524741948,-0.2322625508531928,-0.15490625984966755,0.4308413793332875,0.17581031611189246,0.017142088618129492,-0.5980166448280215,0.47016814397647977,0.6448638355359435,0.39629803225398064,-0.8503402741625905,-0.2808382851071656,-0.6587872565723956,-0.4475574344396591,-0.5773586202412844,-0.629875073209405,0.008681083098053932,0.6372093535028398,0.08339438401162624,0.45649771206080914,0.7180289891548455,-0.9058362320065498,0.29285068716853857,0.2789381630718708,0.1315374467521906,0.5016342769376934,0.6635295040905476,0.09455768391489983,-0.3989275502972305,-0.4461262132972479,-0.4829464005306363,-0.7502758759073913,0.18794919038191438,0.3387795714661479,0.045337415765970945,0.5963352806866169,-0.9028623839840293,0.8965457039885223,-0.18142539029940963,0.6003200686536729,-0.7365872007794678,0.9762917999178171,0.9794289139099419,0.8983559492044151,0.9241724130697548,0.5272172475233674,-0.7448005769401789,0.05370254721492529,-0.6985526857897639,-0.26771069411188364,-0.78581105126068,0.4077451415359974,0.8218562747351825,-0.22880912898108363,0.33290472254157066,0.6662021991796792,0.5781126068904996,-0.9681967943906784,0.6172044798731804,-0.19583476055413485,0.7392198401503265,-0.706994079053402,-0.6143919713795185,0.382103786803782,-0.28093386301770806,-0.5955074457451701,-0.865793289616704,0.4827782679349184,0.8661463013850152,-0.3343374817632139,-0.028627405408769846,-0.2565530464053154,-0.20162414712831378,-0.7325104121118784,-0.2854540729895234,-0.35806068079546094,0.37265012925490737,0.6800853135064244,0.9269399205222726,0.008592079393565655,0.664508365560323,0.2670369828119874,0.7097249743528664,0.03933498542755842,0.4492984414100647,0.4726506806910038,-0.7782679693773389,-0.10011589527130127,0.6354558547027409,0.4848195193335414,0.957924161106348,-0.5222922288812697,0.3135726288892329,0.5286936000920832,0.079012056812644,0.9755936716683209,-0.08737260568886995,-0.978229062166065,0.22561527788639069,-0.11378986714407802,-0.7311256481334567,0.7152997595258057,-0.22745443880558014,-0.7695316700264812,-0.3889754842966795,0.6552038793452084,0.23863606620579958,-0.5047799814492464,0.9551161495037377,0.5475689708255231,0.9737759712152183,-0.1582677559927106,-0.25109004927799106,-0.14140702970325947,0.6097728186286986,-0.7897665267810225,-0.2633579829707742,-0.5565563500858843,-0.3449098509736359,-0.4716895166784525,0.1954515166580677,-0.6048224540427327,0.965179149992764,-0.19363730028271675,0.9429439958184958,0.3816056693904102,0.8647464783862233,0.9929868741892278,0.7075588740408421,0.7396958223544061,-0.27291114209219813,-0.1362819387577474,0.2826007488183677,-0.4156127325259149,0.9039986310526729,-0.2830463210120797,0.618150713853538,0.34006542013958097,0.09524661721661687,0.7186728050000966,0.11749761225655675,0.9786097197793424,0.11087753437459469,0.6657522744499147,-0.2911719218827784,-0.23929413873702288,0.9835367533378303,-0.6088293050415814,0.8379062344320118,0.22879299195483327,-0.1065324037335813,0.4309826665557921,-0.36307630967348814,-0.415235988330096,0.4935272689908743,-0.12298659095540643,-0.7744212313555181,-0.3959252745844424,-0.5617569754831493,0.3691460066474974,-0.6652481365017593,-0.6899270354770124,-0.5245711244642735,0.05619416246190667,0.93498454708606,0.5441984063945711,0.6073804870247841,-0.8962029321119189,-0.07430143700912595,-0.4657949982210994,0.6524414094164968,-0.4014581707306206,0.10701721580699086,0.3297329442575574,-0.14135383581742644,-0.7792596383951604,-0.04507778165861964,0.1284757824614644,-0.9309673081152141,0.013435134664177895,0.6285687540657818,0.3418550384230912,-0.09505072934553027,-0.6599598373286426,-0.14239680534228683,0.8761997614055872,-0.19830492604523897,-0.2200359497219324,-0.4917366956360638,-0.3671334790997207,-0.8788425303064287,-0.550687204580754,0.024618501774966717,0.5021887780167162,0.6138049904257059,-0.3113325498998165,0.12665917351841927,0.8995521133765578,-0.9074971172958612,0.9596704561263323,-0.4573997687548399,0.6520112687721848,0.3248938852921128,-0.7716682138852775,0.6822233079001307,0.819227899890393,0.26221251860260963,-0.7385822609066963,0.23754352377727628,-0.5432376465760171,0.320145923178643,0.9911257750354707,-0.3824836052954197,0.21483216993510723,-0.9973976463079453,-0.2790411440655589,0.8604891644790769,-0.5997746400535107,0.06594396336004138,-0.9630614062771201,-0.48241968266665936,0.0951751614920795,0.15463245008140802,0.5020479327067733,0.5205329000018537,-0.09083264553919435,-0.0026000370271503925,-0.5921860947273672,-0.7802078942768276,0.46277570025995374,-0.061080952640622854,0.6484958571381867,-0.7990817511454225,-0.7500009294599295,0.7119885990396142,0.11295100534334779,-0.5074392352253199,-0.908165720757097,-0.5915549732744694,0.2485981723293662,0.3563252934254706,-0.8334395359270275,0.20605048816651106,0.061197754461318254,0.11012867279350758,0.03709330968558788,-0.061418597120791674,0.21531371911987662,0.7625934556126595,-0.4988316325470805,0.8016862589865923,-0.12867572158575058,-0.7245822395198047,-0.16184559557586908,0.038711527828127146,0.6806447189301252,0.12197598442435265,0.3373284535482526,-0.6439780979417264,-0.7633274989202619,0.1573926000855863,-0.2589123877696693,0.07942520035430789,-0.692281813826412,-0.12466708943247795,-0.8606193326413631,0.5393311576917768,0.6126321451738477,0.9173299223184586,0.029773251619189978,-0.7189010460861027,-0.8960283859632909,0.541974816005677,-0.18217860348522663,0.2979241544380784,0.9215007103048265,0.21310242544859648,-0.06802156521007419,0.20551158161833882,0.3669749670661986,-0.09341059299185872,0.07018762920051813,-0.3217583792284131,-0.09114709170535207,-0.8896576389670372,-0.5762765407562256,-0.5699855322018266,-0.041392403189092875,-0.37601966643705964,-0.05961201945319772,0.9985840059816837,0.39431676594540477,0.03560523362830281,0.7120627164840698,0.5407769232988358,0.2782475585117936,-0.8293987805955112,-0.8978890632279217,0.5687643182463944,-0.3043023166246712,0.9055901733227074,0.9586284039542079,-0.6353298504836857,0.8427824825048447,0.6669068345800042,0.003578227013349533,0.2519154869951308,0.7817515842616558,-0.24578738026320934,-0.6337797972373664,0.9618486049585044,0.24012187821790576,-0.9645081008784473,0.6332804867997766,0.20657344860956073,-0.7544587799347937,0.00832384079694748,0.5413241819478571,-0.5933688650839031,0.622633418533951,-0.14053082698956132,0.3991363332606852,0.6652244962751865,0.5181029727682471,-0.9092015721835196,-0.5666363714262843,-0.19382542138919234,0.7298242803663015,0.7282984866760671,0.9688399191945791,0.2830308973789215,-0.4290634850040078,0.02234860649332404,0.5095838359557092,-0.12747067911550403,0.6401989520527422,0.5522473994642496,-0.26773754553869367,0.016339761205017567,-0.32704258942976594,0.32637221412733197,-0.032157385256141424,-0.20284341368824244,0.5504056299105287,-0.9950067475438118,0.7162570804357529,0.7239841953851283,-0.2860026624985039,-0.36633241828531027,-0.14921352732926607,0.7925008870661259,0.633300980553031,-0.3640634617768228,0.2574855638667941,-0.46411253651604056,-0.3180335583165288,-0.3846831824630499,-0.06050328956916928,0.7816438204608858,-0.45847524236887693,0.09220766089856625,-0.24777718726545572,0.14888876723125577,0.9515908933244646,-0.09528314182534814,0.7412086026743054,-0.21385462302714586,0.4656537361443043,-0.3677373854443431,0.6273479256778955,0.34148779325187206,0.8782069496810436,0.7688614949584007,-0.02399291330948472,-0.2906596977263689,-0.6599145107902586,-0.8055511191487312,-0.6881515122950077,0.7937110159546137,0.4137242417782545,0.6596863646991551,-0.15643666731193662,0.038605591747909784,0.8894706531427801,-0.33821587823331356,0.39917882392182946,0.8835050063207746,-0.14638251205906272,0.08416948094964027,0.8871974754147232,0.018485764507204294,0.5273351701907814,-0.5202618581242859,0.2660476672463119,0.5392260509543121,-0.8064871160313487,-0.5780189512297511,0.02909655962139368,0.7613108600489795,-0.6730474135838449,0.8301254543475807,0.4144684155471623,0.6166298552416265,0.42199001647531986,0.1610447969287634,0.20335212023928761,-0.9464060757309198,-0.37633924977853894,-0.21824840502813458,-0.9566947976127267,-0.6448255414143205,-0.9213907578960061,-0.6368412165902555,-0.0613079103641212,-0.38315492076799273,0.9578934456221759,-0.1878222031518817,-0.20154984947293997,-0.5727103753015399,-0.2534266500733793,0.3880235725082457,-0.5406669159419835,-0.9265600796788931,0.474213560577482,-0.3844582294113934,0.28029779344797134,-2.860603854060173e-05,-0.9341906905174255,0.8379128682427108,0.8584363018162549,0.7103407285176218,-0.10932777356356382,0.7754037017002702,-0.6798544153571129,0.044136777985841036,0.8576917084865272,0.3378744968213141,-0.5403664312325418,-0.5810260279104114,-0.8528649089857936,0.652319114189595,0.29820460081100464,-0.3421925315633416,-0.5611629509367049,-0.7387156211771071,0.07180383568629622,0.7274557026103139,0.7145921513438225,-0.856994136236608,-0.2519522965885699,-0.984031071420759,0.24310282710939646,0.7855532779358327,-0.16569556156173348,0.7477548574097455,-0.6986827682703733,-0.23279893957078457,-0.11308652861043811,0.4545896747149527,0.44236707547679543,0.2020504390820861,-0.3881275770254433,0.49415996856987476,0.726522920653224,-0.8729127263650298,-0.9534696377813816,-0.26003233436495066,-0.3625663579441607,-0.14450964704155922,-0.8928963700309396,-0.1709392825141549,-0.307976262178272,-0.0970173035748303,0.4478203826583922,0.7446040585637093,0.4161739032715559,-0.1524389344267547,0.38175404630601406,-0.664929365273565,0.3992366432212293,0.39182432275265455,0.7142139002680779,-0.9971349998377264,0.7140670078806579,0.4232798465527594,0.5852346341125667,0.20859399996697903,0.9723863922990859,0.22784781083464622,0.47704819310456514,-0.5790227195248008,-0.026889079250395298,-0.34409660287201405,-0.4269727496430278,-0.0157263046130538,-0.60462527256459,-0.7789382510818541,-0.5386732541956007,0.9083509086631238,0.668887582141906,-0.030317319091409445,-0.9988986188545823,0.0172777664847672,-0.12342143710702658,-0.12388100009411573,0.25565537763759494,-0.030127838253974915,0.6436732970178127,-0.6853928598575294,-0.4797886204905808,-0.6450366568751633,-0.2505286275409162,-0.8680600235238671,-0.650722045917064,0.07659279648214579,0.939228106290102,-0.22966618137434125,-0.6671836222521961,-0.24085447704419494,0.0799937010742724,-0.7917065522633493,0.78698814753443,0.3816183996386826,0.0257779979147017,-0.59474330348894,0.19463681615889072,-0.19401770923286676,-0.7119476366788149,0.6304435166530311,-0.9239328834228218,0.9756342354230583,-0.6837077168747783,-0.7921937541104853,-0.19303424982354045,0.18194473069161177,0.4771831356920302,0.808574017137289,-0.8455366995185614,-0.2573221963830292,-0.3213728554546833,0.2172765601426363,-0.3192817671224475,-0.13646392757073045,0.8120188936591148,0.015344184823334217,0.37342998944222927,-0.05524057988077402,-0.8922090278938413,-0.8709793658927083,-0.6239956808276474,-0.5101720248349011,-0.5194741375744343,0.5446861735545099,0.8993095434270799,0.8136053755879402,0.5169991496950388,0.23739827470853925,-0.5894169635139406,-0.8795337271876633,0.01592978648841381,0.21883481834083796,-0.04520502546802163,0.7023560092784464,0.41255963454023004,0.33127775182947516,-0.7842329535633326,-0.29785317182540894,0.0027530845254659653,-0.9610213758423924,0.9072793261148036,0.8590099052526057,-0.7089136727154255,0.03881883108988404,-0.5847362689673901,0.9622469791211188,0.06583114387467504,0.30388228176161647,0.34032812993973494,0.30177670577540994,0.5712083745747805,-0.7026129951700568,-0.6057597864419222,0.3603252680040896,0.4743083417415619,0.9940770124085248,-0.7370547479949892,0.3069866644218564,0.3222134094685316,-0.858296247664839,0.01564969588071108,-0.6183201712556183,0.5553463380783796,-0.9558448512107134,0.5579268145374954,0.98760393448174,-0.026068121660500765,-0.4460232020355761,-0.7795929708518088,-0.5975087089464068,0.08244276605546474,0.9500753846950829,-0.0056052543222904205,0.35677409963682294,0.6450415826402605,-0.49537243181839585,-0.5136125683784485,0.19806667882949114,0.3936459026299417,-0.027549339458346367,0.895001130644232,0.9888565386645496,-0.4823436210863292,0.6441481686197221,-0.17134477151557803,-0.7553080921061337,0.8223571409471333,0.48862508218735456,-0.5632650637999177,-0.8356126565486193,-0.17479762807488441,0.5474084923043847,-0.6801693607121706,0.05504409596323967,-0.6612115781754255,0.32802790496498346,-0.14077077992260456,-0.4060765225440264,0.03176764724776149,0.3465502969920635,0.4569176509976387,0.38465042505413294,0.09492224920541048,0.14877009019255638,-0.24393705185502768,-0.46244573360309005,-0.49180253222584724,0.4473139042966068,-0.13440730888396502,-0.13991103507578373,-0.5170472376048565,-0.10275305900722742,0.878979922272265,0.5000366633757949,-0.9527528863400221,0.10745211178436875,-0.25015414226800203,-0.5502656945027411,0.1131076505407691,0.4322271356359124,0.2172165741212666,0.885861134622246,-0.7634967258200049,-0.9540910562500358,0.6974948043935001,-0.13797465665265918,-0.885769497603178,0.703212320804596,-0.8354205330833793,0.6119829351082444,-0.9435743470676243,0.635303140617907,0.21711873169988394,0.9176954170688987,0.7183084231801331,0.012466045562177896,-0.6301369788125157,0.6396197560243309,-0.13733820943161845,0.2003794526681304,-0.20684817153960466,0.21680023754015565,0.09144304087385535,0.49243679037317634,-0.019411210902035236,-0.4365088241174817,0.14597428683191538,-0.6593678602948785,-0.6994558838196099,-0.44483477948233485,-0.3993027824908495,-0.34860266325995326,0.623250531964004,-0.7348468042910099,0.28444866742938757,0.42872652877122164,-0.2274861689656973,-0.49314404046162963,-0.9855472957715392,0.2702744696289301,-0.26627059606835246,0.7767678778618574,0.06967069348320365,0.08465226087719202,-0.9653557664714754,-0.01678875321522355,0.9000610527582467,-0.8960776869207621,-0.5682332278229296,-0.13112832512706518,-0.4946722253225744,0.3343940144404769,0.7003130777738988,-0.6331138173118234,-0.9921115217730403,0.033050200901925564,0.09093396551907063,-0.9984063673764467,-0.555741532240063,0.5507275839336216,-0.38586334558203816,-0.8262039045803249,-0.31526616495102644,0.04545451095327735,0.6536112688481808,0.3406949737109244,-0.20445383246988058,0.14868030464276671,0.5720171206630766,-0.5599128506146371,-0.3804954648949206,-0.435225463937968,-0.4724915558472276,0.1487237149849534,-0.7896303557790816,0.10281351860612631,0.722507681697607,0.567848808132112,0.5438716607168317,0.62284175446257,-0.14998011849820614,0.7065702290274203,0.9242624877952039,-0.24325047433376312,-0.8813584512099624,0.8973530023358762,-0.49111887626349926,0.6083872863091528,0.07365378644317389,0.49746961100026965,-0.7402359903790057,-0.46624640794470906,-0.16745860688388348,-0.39307376369833946,0.02121564792469144,-0.38444373616948724,-0.44462952483445406,0.9168497258797288,0.9662650674581528,0.8823632854036987,0.297646626830101,0.2905695182271302,0.16051387833431363,-0.3765930528752506,0.05228133127093315,0.766475873067975,-0.3325985758565366,0.6149574853479862,-0.31080418126657605,0.760729540605098,-0.7254539462737739,0.31166578736156225,0.9471218204125762,-0.4971373765729368,-0.8841020725667477,-0.5774055295623839,-0.5468862308189273,-0.7203352767974138,0.3694060482084751,0.2874825238250196,-0.7253438881598413,-0.1417708364315331,-0.4329297146759927,0.08785019349306822,0.19349992740899324,0.12322424771264195,0.7155469423159957,-0.9985458701848984,0.507057614158839,0.693097559735179,0.11132932361215353,0.4740396603010595,-0.14813242619857192,-0.7304960917681456,0.4504823782481253,0.6622640285640955,-0.07963983993977308,-0.7525995778851211,0.11629052553325891,0.1626286874525249,-0.01361447898671031,0.8130632429383695,0.3868140806443989,0.43121892400085926,-0.6257334602996707,-0.7782871169038117,0.4802924985997379,0.9753805343061686,0.5806695781648159,-0.41462210612371564,0.731972670648247,-0.15273482026532292,-0.48333085468038917,0.03603927744552493,0.7484057028777897,0.6827756408601999,-0.6236064983531833,-0.1096719978377223,-0.5561910150572658,0.9557600421831012,-0.9209496979601681,-0.508603825699538,-0.40715226577594876,0.05170770641416311,0.6785859423689544,0.30105641297996044,-0.6117924004793167,0.7886589802801609,0.7129688411951065,0.673636497464031,-0.40013828966766596,-0.20823782496154308,-0.4270941107533872,-0.27598471147939563,-0.4191369148902595,-0.5942580755800009,0.8189711924642324,-0.542384231928736,-0.6860534748993814,-0.12845118902623653,0.4618491968140006,-0.8467297093011439,-0.6901072412729263,0.9349554381333292,0.9155375175178051,0.6481630583293736,-0.3283184012398124,0.48390298103913665,0.2897608261555433,0.24837250029668212,0.03726136777549982,-0.7691815351136029,0.046780666802078485,-0.34242914197966456,-0.8125347089953721,0.14593928446993232,-0.1395882829092443,0.9113140935078263,-0.8705607238225639,-0.6796654937788844,0.8019647593609989,0.24041126295924187,-0.6476776539348066,-0.962042841129005,0.9102735193446279,-0.0671387268230319,0.6475198026746511,0.4915507575497031,0.4741217866539955,0.8457973604090512,-0.4112271466292441,0.2857632120139897,0.0942789064720273,-0.7711372226476669,-0.23470352496951818,0.6817030543461442,-0.7299406505189836,-0.4902311391197145,0.33658307837322354,0.23443942656740546,0.13853180781006813,-0.5704400893300772,0.6141453487798572,-0.5396924777887762,-0.47716088499873877,-0.22698624385520816,0.86095149256289,0.722138115670532,0.1752953054383397,-0.021514073479920626,0.004318907391279936,-0.9097264888696373,-0.3278685985133052,-0.6859722509980202,-0.19906181190162897,0.4799320469610393,0.3428505389019847,-0.13435678277164698,0.3214597566984594,-0.4296650546602905,-0.6302312705665827,-0.43889114586636424,-0.9046017830260098,-0.06640880182385445,0.2919662385247648,-0.054222749546170235,0.13213463127613068,-0.989332661498338,0.2507027294486761,-0.3962172456085682,-0.5376552995294333,0.7159306625835598,-0.2540520019829273,0.8668044283986092,0.5649216347374022,0.9360810555517673,-0.47990468284115195,-0.5445099580101669,-0.19207882694900036,-0.9383201752789319,-0.9692779267206788,-0.5792292328551412,0.18569786567240953,0.023394498508423567,-0.3679199065081775,0.21620507631450891,0.4672645670361817,0.5561583489179611,0.4845687560737133,0.017528864555060863,0.540114089846611,-0.7823937954381108,-0.6617224523797631,-0.993152008857578,-0.9055773853324354,0.1528011215850711,0.9278761525638402,0.2521722437813878,-0.397423533257097,0.1888145455159247,-0.9510431890375912,-0.27152805030345917,0.04104307433590293,-0.5968426438048482,-0.14443203806877136,-0.22034905292093754,-0.3548453035764396,-0.980422314722091,0.387391812633723,0.4913387168198824,0.5450703892856836,0.24488222459331155,-0.14381859870627522,0.7214782140217721,0.5069940383546054,0.0894635021686554,-0.1392045421525836,-0.5716902022249997,-0.7169618955813348,-0.2400643420405686,0.8847839962691069,-0.3635831312276423,0.1880866545252502,-0.26676949113607407,-0.7826442676596344,-0.44106691610068083,0.11736547434702516,-0.9970090789720416,-0.17645724676549435,0.10610375832766294,0.38676100689917803,0.8244220530614257,-0.5340072116814554,-0.36525733582675457,0.4197892644442618,0.3695553573779762,-0.7823120658285916,-0.048061075154691935,0.0861368770711124,0.23740949807688594,0.30591018311679363,0.11632711626589298,-0.20724437618628144,-0.8356540142558515,-0.5095680388621986,-0.42667249171063304,-0.047494504135102034,-0.6382781527936459,0.9835699391551316,0.12244609743356705,0.11038993718102574,-0.9827581914141774,-0.4564988911151886,-0.8101242273114622,0.9957577604800463,-0.9268632996827364,-0.42721794033423066,-0.22066712845116854,0.10120110586285591,-0.736667069606483,0.3472196450456977,0.6250858432613313,-0.7347030658274889,-0.923215112183243,-0.8231308180838823,-0.6859935284592211,-0.37354023195803165,0.46739146346226335,-0.12880221148952842,-0.24536878755316138,0.33142503211274743,0.2825479432940483,-0.32676683785393834,0.3598671779036522,0.13764007342979312,-0.32844408275559545,0.3300161473453045,0.026384790427982807,0.23897394398227334,0.21198706375434995,-0.343004013877362,-0.6340850563719869,0.459631210193038,-0.11503058858215809,0.889845687430352,0.059117181692272425,-0.5530686187557876,0.9952593510970473,-0.6386088016442955,0.43969036266207695,0.5366748147644103,-0.0867099273018539,0.35229349695146084,0.9612872931174934,-0.149438195861876,-0.49631766928359866,-0.9560474650934339,-0.2836216548457742,0.576967325527221,0.15344652580097318,-0.7364590698853135,0.4726549396291375,-0.6710954015143216,-0.3971977662295103,-0.327189969830215,0.4761404851451516,-0.956263137049973,0.43760252045467496,0.8479936229996383,0.7733077239245176,-0.7381879659369588,0.4261927749030292,-0.9350766679272056,0.3737053582444787,0.319881702773273,0.7696808050386608,0.4647486377507448,-0.31027095951139927,0.6278717033565044,-0.8097039139829576,-0.13749626651406288,0.9257825296372175,-0.5782939046621323,0.5498907919973135,-0.26005760626867414,0.7977834432385862,-0.054083761759102345,-0.39143967535346746,0.31699845707044005,0.47368056746199727,-0.6329387249425054,-0.1520996941253543,0.8670106111094356,0.3259818716906011,-0.6631150036118925,-0.17826606752350926,0.2843661392107606,-0.2641174732707441,0.3591829361394048,-0.8312799949198961,-0.5718313851393759,-0.9587717838585377,0.9623266905546188,0.5456295399926603,-0.23000793159008026,-0.8955858824774623,0.9642572929151356,-0.9322091895155609,-0.908281450625509,0.3737737094052136,0.14174616895616055,-0.8810737375169992,0.27959381928667426,-0.9593193037435412,0.22221732884645462,-0.913092227652669,0.9046660666354001,-0.38949141139164567,0.29783279448747635,0.4627688270993531,0.20131041621789336,0.49088564747944474,0.4009890560992062,-0.15447330987080932,-0.9844682589173317,0.3092480539344251,0.25373946595937014,-0.47964290995150805,-0.1586063359864056,0.47703812131658196,0.5952574796974659,-0.26147442730143666,-0.7304893569089472,0.5477981795556843,0.928020709194243,-0.3674097629263997,-0.47681932616978884,0.939786798786372,0.10549580538645387,-0.048764489591121674,-0.47968078730627894,0.7895332234911621,-0.7179452711716294,0.34637688798829913,-0.6985006649047136,0.24025381775572896,0.413755155634135,-0.9634485221467912,0.6400001221336424,-0.26502219727262855,-0.9889790061861277,-0.3343238793313503,0.3336819503456354,-0.8725848784670234,0.09181395219638944,0.8405438922345638,-0.08725793240591884,-0.3882334614172578,-0.6311817169189453,-0.6249008742161095,0.09037288557738066,-0.9961405727081001,-0.4503135997802019,-0.7459483328275383,0.3071282650344074,0.6205573631450534,-0.2523823934607208,-0.7192018046043813,-0.10249388962984085,0.14773910911753774,-0.7291323789395392,-0.3861803989857435,0.23089175065979362,0.6155389896593988,-0.7455342449247837,-0.24816851317882538,0.7436386365443468,0.4869850422255695,0.8950195438228548,-0.6996790296398103,-0.10075339116156101,0.9996565748006105,0.6087049203924835,-0.12489582598209381,-0.7986718527972698,0.014517444185912609,-0.20736389653757215,-0.8026648499071598,0.9761757566593587,0.029106931295245886,-0.4084624573588371,0.03190549369901419,0.8847997258417308,0.9254347491078079,0.5765544455498457,0.005778666585683823,-0.5843750559724867,-0.033318564761430025,-0.4710406647063792,0.8847329868003726,-0.6438122498802841,-0.17963386001065373,0.9976677484810352,-0.17128134006634355,-0.3169399257749319,0.04394429037347436,0.10733063099905849,0.5662610353901982,-0.018467180896550417,-0.2334710992872715,-0.021129382774233818,0.6181464442051947,0.6998808579519391,-0.5729612200520933,0.608303309418261,-0.1269577736966312,-0.4954284722916782,-0.03781659761443734,-0.8969564591534436,-0.12207743665203452,-0.025017465464770794,-0.9999268399551511,-0.30275465082377195,0.0666142595000565,-0.6363572981208563,0.5622867597267032,0.9319776431657374,0.06244256719946861,0.8807037817314267,0.6425501117482781,0.8883055276237428,-0.7007682523690164,-0.8672550548799336,-0.6076449430547655,-0.4686191203072667,0.1454685782082379,0.817204327788204,0.7211354728788137,-0.9424223122186959,0.8100802088156343,0.5430035167373717,-0.26358244149014354,-0.6822275938466191,0.3610153147019446,0.8582228519953787,-0.6753791142255068,-0.6137395366095006,0.4485797598026693,0.7216037111356854,-0.762992556206882,0.6212127236649394,-0.38629707461223006,-0.31416235165670514,-0.7935428353957832,0.3157429462298751,0.47629470378160477,0.3938198476098478,0.5122901373542845,-0.550766056869179,-0.4310245788656175,0.007032488007098436,-0.28326021740213037,-0.0810022410005331,0.5169708910398185,-0.07445566821843386,-0.21094241412356496,-0.13177131908014417,-0.7954042479395866,0.9397848155349493,0.6763383946381509,-0.374058632645756,-0.10895252227783203,0.06304659368470311,0.6072272062301636,0.3203131486661732,-0.49179695174098015,-0.8381798681803048,-0.09097521612420678,-0.3618255774490535,-0.8343634093180299,-0.9300165669992566,-0.45489938417449594,-0.9174736542627215,-0.582270348444581,0.9082955308258533,0.7115057879127562,-0.023299734573811293,0.02281517256051302,0.8552730297669768,-0.8207196812145412,0.03504866361618042,0.16644017910584807,-0.761011571623385,-0.8321993090212345,-0.5117866885848343,0.16418906673789024,0.2562385480850935,-0.9685054272413254,0.1965041016228497,-0.848906887229532,0.020554862450808287,0.932328135240823,-0.5586064788512886,-0.4375845119357109,-0.8937406074255705,0.4328390150330961,0.6564650805667043,-0.3845242988318205,-0.7047595316544175,0.31883178977295756,-0.178383301012218,-0.8666874943301082,-0.4727787054143846,-0.2305626287125051,-0.4097645618021488,0.6797915482893586,-0.6143532092683017,-0.5288120438344777,0.5410039108246565,0.28308394458144903,0.7448760815896094,-0.5056908507831395,-0.9032084150239825,0.015573966316878796,0.012944724410772324,-0.10841466812416911,-0.1963903959840536,-0.9313911856152117,0.1303450004197657,-0.44648205675184727,-0.027359623461961746,0.3912540338933468,-0.4194724108092487,-0.5495997508987784,0.5886069987900555,-0.8057259749621153,-0.2853013719432056,-0.060231681913137436,-0.6474834098480642,-0.25075511168688536,0.143945905379951,-0.587686994113028,-0.5339571689255536,-0.21673031290993094,0.5065016122534871,-0.3305559284053743,-0.6468368330970407,-0.2314050132408738,0.7130383215844631,-0.39178912760689855,-0.5101936999708414,-0.5069624339230359,0.13153246231377125,-0.7810069229453802,-0.7942818966694176,0.7251079017296433,0.7045344277285039,0.7305409200489521,-0.1431385804899037,0.43842464638873935,0.28861052356660366,0.8985531581565738,0.08820054214447737,0.06452150270342827,0.3968210658058524,-0.11522575933486223,-0.8158369627781212,-0.9447432607412338,0.2383993766270578,0.1865221532061696,0.1825518812984228,-0.6175428535789251,-0.9213412785902619,-0.9927063281647861,0.8306790152564645,-0.7333084070123732,0.48469291580840945,0.6532676736824214,0.4273616187274456,0.13043971126899123,0.07998189982026815,-0.5325476457364857,0.9331151256337762,-0.5690499600023031,0.9845359898172319,-0.1745844860561192,-0.5784925082698464,0.5004637097008526,0.834596692584455,-0.17108439933508635,0.9656436960212886,0.6894357586279511,-0.39670154452323914,-0.8361560185439885,0.3838430871255696,0.9461739487014711,-0.3707612310536206,-0.27346104476600885,-0.3210841752588749,-0.3426048713736236,0.7124675838276744,0.48632220830768347,0.42698858911171556,-0.6514122793450952,-0.10362583445385098,-0.9085217472165823,0.6908354577608407,0.03372436063364148,-0.9124852926470339,-0.16802992299199104,0.18523131823167205,-0.15932631911709905,-0.8061068570241332,-0.23725412460044026,0.19930257508531213,-0.4745343648828566,0.5846211430616677,0.14937726268544793,-0.40391756780445576,-0.8013497851788998,-0.4983464190736413,-0.5138706136494875,-0.3868479384109378,0.5801408160477877,0.6953108459711075,0.3890161495655775,-0.015705513302236795,0.7928359759971499,-0.6624624552205205,-0.4844794487580657,-0.9095242116600275,-0.8610041523352265,-0.248219377361238,0.07394334301352501,0.2698984984308481,0.09836094733327627,0.6957028647884727,0.3485758639872074,-0.49044846929609776,0.104462128598243,0.32846686290577054,0.023543231189250946,-0.3282188051380217,0.8405226450413465,-0.8401577533222735,0.24367754720151424,-0.07577181700617075,-0.7146992473863065,-0.7730724439024925,-0.3665957823395729,-0.6690988321788609,0.8042684611864388,-0.8898375420831144,0.5211656503379345,0.9662516792304814,0.289497597143054,-0.5378931858576834,-0.55613316828385,-0.7671482688747346,-0.9632545514032245,-0.5158494310453534,-0.8816928248852491,-0.7967005982063711,-0.2286348477937281,0.7424602867104113,0.7604577946476638,0.513163985684514,0.09151879418641329,-0.9886143105104566,-0.7196856550872326,-0.7566298702731729,-0.9690985670313239,-0.5016349130310118,-0.6173988333903253,-0.8431764165870845,0.4601715272292495,-0.9135504439473152,0.11253120424225926,0.8469389020465314,-0.44696827372536063,-0.7946778396144509,-0.7120541580952704,-0.05814120499417186,0.3210614859126508,-0.048083215951919556,-0.1684014997445047,-0.11543658282607794,-0.09954179683700204,-0.9237558408640325,-0.046158856712281704,-0.4483007434755564,0.23096033511683345,-0.9494582121260464,-0.9291724758222699,0.6142774876207113,-0.9063981659710407,-0.07296324800699949,-0.12315069790929556,0.3047224902547896,-0.9676389461383224,-0.7470465837977827,-0.4681202508509159,0.7388738985173404,0.6386239742860198,-0.16014974005520344,-0.35145592084154487,0.7267247564159334,-0.23803544882684946,0.19120228569954634,0.8646691171452403,-0.7277537104673684,0.4861028022132814,-0.34550431463867426,-0.47125836508348584,-0.5733236176893115,0.4560623471625149,0.16367056174203753,-0.19050957867875695,0.29881700314581394,0.24905412551015615,-0.9943830156698823,0.6869468428194523,-0.33493114402517676,0.161088977009058,0.17491409741342068,-0.7233732016757131,-0.36801951425150037,0.26852077804505825,0.33592204423621297,0.1953355805017054,-0.7348514567129314,0.4408324337564409,0.25822995137423277,-0.2869946528226137,-0.20275236247107387,0.5495186322368681,-0.9320121938362718,-0.7288077431730926,-0.5607829350046813,-0.5296349618583918,-0.24388676276430488,0.5927588045597076,-0.1474776165559888,0.48421922884881496,-0.25370165426284075,-0.43328695092350245,0.606147525832057,0.7605195278301835,-0.055291250348091125,0.5620518904179335,0.29844791581854224,-0.7854353878647089,-0.9645883035846055,-0.7756284736096859,0.20015193428844213,-0.241456039249897,-0.6974191889166832,0.5621440233662724,0.13093487499281764,-0.8365705907344818,-0.07467678049579263,-0.4489319664426148,-0.6217098287306726,0.9560302412137389,-0.9095643633045256,0.8525510220788419,-0.9085308071225882,-0.1620610048994422,0.410421144682914,-0.8818182703107595,-0.13004333386197686,0.5247727888636291,0.5271944524720311,0.9477782743051648,-0.9095814717002213,0.6411053943447769,0.9479530840180814,-0.3275685925036669,-0.6210317015647888,-0.10641698492690921,-0.15014498960226774,-0.17895489698275924,-0.9901329264976084,-0.7102644988335669,0.9734915741719306,-0.8381312596611679,0.24756747018545866,0.2631210293620825,-0.5956517998129129,0.46757347835227847,0.26614768616855145,-0.6194405388087034,-0.22016092762351036,-0.28557637333869934,-0.6977678267285228,0.7945535401813686,-0.8212009333074093,-0.5557314450852573,-0.959564683958888,0.0708358041010797,-0.10708662867546082,0.44441815838217735,0.6999871958978474,-0.3718382786028087,-0.14154942333698273,0.1730665322393179,0.8130728136748075,0.22336931712925434,-0.7708204300142825,-0.05648168409243226,-0.5957057075574994,-0.9392140046693385,-0.373323280364275,0.41157077020034194,0.5366665744222701,0.846986020449549,0.21918371366336942,-0.5230032219551504,-0.14911275496706367,-0.2701487303711474,-0.6781330299563706,-0.12860403582453728,-0.12574382359161973,-0.21924349991604686,-0.5030780998058617,0.3449352844618261,0.8413642053492367,0.820588942617178,0.436889321077615,-0.11616770410910249,-0.8739219377748668,0.6501150424592197,-0.8917793142609298,0.12120612990111113,-0.9884466649964452,-0.7141981348395348,-0.4302494656294584,0.2597715859301388,0.6168024186044931,-0.05393121484667063,-0.5663778809830546,0.8445525784045458,-0.27485305443406105,-0.46470232447609305,-0.7560734492726624,-0.10200494434684515,0.07287940662354231,0.3429857650771737,-0.27334871888160706,-0.7238502325490117,-0.9155763695016503,-0.8063434446230531,0.7819848628714681,-0.12733723362907767,-0.620449875947088,0.9716455200687051,0.40876959171146154,-0.6587250856682658,-0.7243001158349216,-0.08328555012121797,-0.07662308355793357,0.5328231640160084,-0.3686272636987269,0.7321086004376411,-0.026647217106074095,0.6587869934737682,0.14020354906097054,0.9112676717340946,0.40654700295999646,0.35938056744635105,0.9075504094362259,-0.1564262816682458,0.1733088158071041,-0.5853083222173154,0.5614222316071391,-0.03907801304012537,-0.1182800754904747,0.41453974647447467,-0.8910371297970414,0.05678354250267148,0.21001834701746702,-0.6359938108362257,0.06783018773421645,-0.4820015993900597,-0.7994369799271226,-0.541281130630523,0.33690135460346937,0.5059762448072433,-0.02517185313627124,0.0023915893398225307,-0.0805557481944561,-0.4412257540971041,0.06212436594069004,-0.9249954214319587,0.12171218497678638,0.9363627643324435,0.7352734645828605,-0.6601479779928923,0.24690694315358996,-0.1702834158204496,-0.4635828621685505,-0.05999950086697936,0.5193814537487924,-0.30418585147708654,0.657191552221775,0.6924229129217565,-0.8599795452319086,0.6703271055594087,0.4319267417304218,-0.6851623244583607,0.8817270365543664,-0.3416574690490961,0.6190011380240321,0.5395198012702167,0.3459259388037026,-0.20697011379525065,-0.28357253363355994,0.8263997500762343,-0.932892338372767,-0.22485423041507602,0.33923527505248785,-0.9720330932177603,0.11993427202105522,-0.9964892393909395,0.042001232504844666,-0.42973328614607453,-0.5372791644185781,0.12934520980343223,-0.5155981960706413,0.48249497497454286,0.6602564719505608,0.1111868480220437,-0.9516997402533889,-0.812957666348666,0.8167850817553699,-0.958058301359415,0.6239907220005989,0.10762038081884384,0.42143109906464815,-0.2186528737656772,0.569803609047085,0.39057065872475505,0.9496738878078759,0.33649291563779116,-0.2805341063067317,0.19044895004481077,-0.2937734890729189,0.6985576045699418,-0.7069375514984131,-0.009070442523807287,0.6368838911876082,-0.13186660036444664,-0.6393208825029433,0.43597316555678844,-0.9680742849595845,0.344493655487895,0.783577608410269,0.1800516527146101,0.6865343102253973,0.9269290482625365,-0.2669755690731108,-0.8368365112692118,0.022034035064280033,-0.4309502877295017,0.19640654232352972,-0.5556750916875899,-0.5082961032167077,0.6638868846930563,-0.08006992377340794,-0.22200410580262542,0.6140773850493133,0.11958152242004871,-0.2988861217163503,-0.2605591216124594,-0.5759335611946881,0.8895186283625662,-0.9563828450627625,0.5764058106578887,0.5747404675930738,-0.5146567649208009,-0.7364214286208153,-0.34885522769764066,0.4134425544179976,-0.07984516816213727,0.5436722096055746,0.683715776540339,-0.0741525711491704,0.15374114410951734,0.3530079089105129,0.9263348467648029,0.12158170761540532,0.15714531857520342,-0.4506261833012104,0.6484813927672803,-0.831881336402148,-0.8052852754481137,-0.3557456722483039,-0.05100399907678366,0.9575771647505462,0.6982250083237886,-0.721666753757745,-0.7527589541859925,0.9326359909027815,0.862567629199475,0.8718209224753082,0.3798908218741417,0.1795164537616074,-0.482850203756243,0.43918685195967555,0.5785899949260056,-0.2260093605145812,-0.9425972276367247,-0.08910264167934656,-0.38111714366823435,0.14327551797032356,-0.5370404478162527,0.8934508496895432,0.6502076401375234,0.2539707529358566,0.27651691110804677,0.9049466536380351,0.4509161654859781,0.6445160559378564,-0.8810288598760962,-0.09122318075969815,0.7652616980485618,0.5761385881341994,-0.17653884878382087,-0.8405109024606645,0.19293148582801223,-0.9349587480537593,-0.8930074372328818,-0.08065755805000663,-0.5202618837356567,0.5685502565465868,0.021421615965664387,0.0193026983179152,0.550619407556951,0.07188981957733631,0.4757067048922181,0.3693380313925445,0.38712653750553727,0.976505063008517,0.9858877202495933,0.4126264238730073,-0.14426567498594522,0.0882855812087655,-0.5026108650490642,0.8696064315736294,0.9946169783361256,0.7261830009520054,0.9578511952422559,0.8500709338113666,0.15256209252402186,0.3479318981990218,-0.8656321256421506,-0.14305243827402592,-0.992350366897881,-0.7140929773449898,0.039364433847367764,-0.6614152994006872,0.0322287785820663,0.5700293886475265,-0.7661132351495326,-0.019518503453582525,-0.16483172308653593,-0.20265329210087657,0.5988911003805697,0.28223241306841373,0.8298909566365182,-0.7310067191720009,-0.7693336205556989,0.9240000802092254,0.2256189612671733,-0.9357989951968193,-0.01284285681322217,-0.09508293541148305,0.6934737721458077,0.6231955802068114,0.9869589665904641,-0.8900079969316721,-0.9146473319269717,0.464600982144475,-0.3467658474110067,0.3389249802567065,-0.47669770987704396,-0.0308901472017169,-0.09225571248680353,0.2224931293167174,0.9132456663064659,-0.9802351417019963,-0.6354386992752552,0.09449457563459873,-0.9745545201003551,0.4933440717868507,-0.8439062139950693,-0.5952705978415906,0.13257276685908437,0.8911091457121074,-0.6106407372280955,0.8226874037645757,0.7687361389398575,-0.5536555107682943,0.6690495270304382,-0.3926650136709213,-0.6493764100596309,-0.9736685021780431,-0.8393762181513011,-0.19358602352440357,0.6374666937626898,0.2979727787896991,-0.6563088716939092,-0.28454286931082606,0.0011446010321378708,0.10846130270510912,0.603163099847734,0.04972119303420186,-0.5808615148998797,0.0005717664025723934,-0.2596274600364268,-0.7173136533237994,-0.15136506222188473,-0.5159972063265741,-0.1621112609282136,-0.6730519537813962,-0.5289063611999154,-0.6740327375009656,-0.7619192604906857,0.02869071252644062,0.6937578548677266,-0.3819577433168888,-0.18566848244518042,0.17475601332262158,-0.49571604188531637,0.1721803592517972,-0.8065585377626121,-0.7418553759343922,0.2834953865967691,-0.9877188731916249,-0.3419390865601599,-0.9310586396604776,0.43232827680185437,-0.35749709606170654,0.22176326252520084,0.00215093232691288,-0.7256775884889066,0.3781564743258059,-0.20123834488913417,0.5774633130058646,0.882730626501143,0.896413876209408,-0.4279408073052764,0.21826887922361493,0.37203954393044114,-0.36971648689359426,0.8472490441054106,-0.861289840657264,0.39486413914710283,-0.02538549154996872,0.7409262536093593,0.8681859783828259,-0.6806677440181375,0.03802569070830941,0.19000631384551525,-0.7955061960965395,-0.30693127401173115,0.38097824761644006,-0.2508835266344249,-0.9309635190293193,-0.8304892415180802,0.05533624021336436,0.2853934825398028,-0.7216196986846626,-0.10482313996180892,0.05540006048977375,0.9237236226908863,0.7011675694957376,0.21549414470791817,-0.17455858644098043,0.6061966205015779,-0.9261285271495581,-0.9753585448488593,0.5014154301024973,0.3707692362368107,0.12065230077132583,-0.2745779729448259,0.3801855454221368,-0.45977554889395833,-0.2552165212109685,0.577983068767935,-0.6073305387981236,0.9748987779021263,-0.7317569516599178,-0.40780207607895136,-0.6660931813530624,-0.08143937587738037,0.7874562605284154,0.23331198608502746,0.5409850333817303,-0.5151928304694593,-0.6333519872277975,-0.38633881276473403,0.4083181209862232,-0.3696586904115975,0.17992778774350882,-0.32034032279625535,-0.5822634291835129,-0.409835672006011,-0.08758266922086477,0.9219148168340325,0.525677690282464,-0.8459946382790804,0.17013052524998784,-0.048538345377892256,0.1861246288754046,-0.7165141412988305,0.0015945490449666977,-0.9120253804139793,-0.5861478624865413,0.41773900762200356,-0.40575545048341155,-0.3113809269852936,0.25021262699738145,0.6200679787434638,0.02047322504222393,-0.10507082706317306,0.620847134385258,-0.7379991724155843,-0.5533254900947213,0.42261876817792654,-0.9545748708769679,-0.9212994324043393,-0.8947819294407964,0.05353776039555669,0.6187355266883969,-0.4052980886772275,-0.19172054436057806,-0.8199461661279202,0.8155984422191978,-0.4332787343300879,-0.8142529223114252,-0.5313929887488484,0.9545839061029255,-0.3607488847337663,-0.2626407966017723,0.7222322593443096,0.0744014480151236,0.21275849267840385,-0.26805034885182977,-0.0668727564625442,0.3742577903904021,-0.568074160721153,-0.7665142244659364,0.6031308267265558,-0.6319688404910266,-0.1089881001971662,-0.7251286534592509,0.0068509941920638084,-0.6818639673292637,0.9701904840767384,-0.16846302524209023,0.845357509329915,-0.5338263777084649,0.38640191312879324,0.8176028835587204,-0.8049413971602917,-0.9201772068627179,0.23168496694415808,-0.13555866573005915,-0.19797574961557984,-0.26693112729117274,0.1368168336339295,0.5931546171195805,0.9996828916482627,-0.8707605176605284,-0.8921587713994086,0.4084546170197427,0.45465984707698226,-0.20824805134907365,0.7830826099961996,0.19286768604069948,-0.8791519706137478,-0.5707424636930227,-0.9239209247753024,-0.6905280160717666,-0.7715718648396432,-0.591958633158356,0.3593208147212863,0.8486486859619617,-0.5893625766038895,0.0762547180056572,-0.502908197697252,-0.28646902088075876,-0.9525737916119397,0.13750065956264734,0.5646984190680087,-0.907997083850205,0.937123364303261,0.34021842293441296,-0.682315431535244,-0.06057124258950353,-0.22980020567774773,0.6630942109040916,-0.5663320724852383,-0.08215210866183043,-0.5324438204988837,-0.3938346873037517,0.6601683222688735,-0.798663713503629,-0.46536454651504755,0.3408318143337965,-0.558268983848393,-0.2729725791141391,-0.9298328347504139,0.667902943212539,-0.469173283316195,-0.9332174877636135,0.508480510674417,-0.7040526014752686,0.05016935197636485,-0.9156480212695897,0.3834205591119826,-0.9180515888147056,-0.31564557552337646,-0.791031432338059,0.16621269239112735,0.23664077371358871,0.5458770929835737,-0.6844288120046258,0.7542912461794913,0.046343707013875246,-0.585551249794662,-0.9294221750460565,-0.4870313284918666,-0.4391776812262833,-0.9588400512002409,-0.010881759226322174,-0.8784376075491309,0.27912643272429705,-0.9013912244699895,0.5646589240059257,0.3610647418536246,0.2073755175806582,-0.913487327285111,-0.5142594338394701,0.024483241606503725,0.6663136878050864,-0.48715332616120577,0.7764424053020775,0.6915298840031028,-0.511294340249151,-0.12857202859595418,0.31372625194489956,0.8421219978481531,0.4689718931913376,-0.6211461797356606,0.6064769364893436,-0.6705322423949838,0.285467182751745,0.8616900900378823,-0.18605861766263843,0.29189296066761017,-0.13944843225181103,0.6630237656645477,0.8386955624446273,0.373561074025929,0.9148784419521689,0.7749321181327105,0.48442260501906276,-0.5144010023213923,0.03484307322651148,0.13266605325043201,-0.6179101318120956,-0.33606525557115674,-0.37769399490207434,-0.16379761090502143,-0.7235817625187337,0.10636781249195337,-0.14796973578631878,0.6756857694126666,-0.12409958243370056,-0.12342289602383971,-0.21210395358502865,0.46344136632978916,0.20094463555142283,-0.3176463837735355,0.6391104622744024,-0.8853893470950425,0.8841627207584679,0.9138861759565771,0.23718958580866456,-0.7288661561906338,0.1781104700639844,0.8907443922944367,-0.020521508995443583,0.657554519828409,0.3796639069914818,0.7138695754110813,-0.3916137465275824,0.11148005397990346,-0.4897684375755489,0.0875939573161304,0.5091499062255025,0.9598382078111172,-0.07435846514999866,0.31237035105004907,0.46519885770976543,-0.07270202320069075,0.4210151839070022,-0.06560113886371255,0.19612395763397217,-0.6993038151413202,-0.8528190837241709,0.03827581275254488,0.9851466789841652,0.670698672067374,0.5535859898664057,0.5525629133917391,-0.43193756183609366,0.18358447030186653,0.23515462782233953,0.21486983727663755,-0.5825845068320632,-0.8433487298898399,0.917554933577776,-0.18178317975252867,0.00607633963227272,0.7161760055460036,0.7991336425766349,0.7043461506254971,-0.6198684019036591,-0.8877828274853528,0.4303673547692597,0.8331062560901046,0.8181192395277321,0.9436711939051747,-0.3403154374100268,-0.002087058499455452,0.034545919857919216,-0.5373343136161566,0.6766912951134145,-0.4322527777403593,0.33657080866396427,0.8578991475515068,-0.24048812966793776,0.1629181681200862,0.9669297831133008,-0.5156962415203452,-0.2268749992363155,-0.1582501158118248,0.2959080790169537,-0.8536848463118076,0.6845280090346932,0.7057418962940574,0.8964400780387223,0.10819045687094331,0.8345577432774007,0.2851852853782475,-0.251705567818135,-0.17152222944423556,0.6460038349032402,-0.19701658468693495,0.8920123870484531,0.3406323902308941,0.9864251990802586,-0.4936237623915076,-0.8458925294689834,-0.47929547633975744,-0.8597871516831219,0.5465867230668664,0.7826020130887628,-0.1106737032532692,0.5925829741172493,-0.38234240422025323,0.6593043231405318,-0.7311379071325064,0.5634661177173257,-0.8215569965541363,0.9742130874656141,-0.6058536698110402,0.5825756206177175,0.171042094938457,0.7644001664593816,0.24050885578617454,-0.8498963271267712,-0.6365680950693786,-0.3876421176828444,0.3092241985723376,0.5958093306981027,-0.11503562005236745,-0.33758832700550556,0.04071221221238375,-0.9034922481514513,-0.9625981915742159,0.20107480743899941,-0.2255773521028459,-0.5453993887640536,0.7628054297529161,-0.30791532807052135,0.8735952628776431,-0.7388924709521234,-0.39625130873173475,0.7639821534976363,0.1166928275488317,-0.8604272464290261,0.49125691363587976,0.5062788296490908,0.43481038603931665,-0.9957695533521473,-0.13959574094042182,0.6875014449469745,0.9719794224947691,0.17879387456923723,-0.017353538423776627,0.14315564325079322,-0.5920546413399279,0.6993669373914599,-0.40886211348697543,-0.4325705012306571,0.690714206546545,-0.7244581538252532,-0.37522511556744576,0.8399682100862265,0.9891379438340664,0.23294961778447032,0.8432942908257246,0.1791996513493359,-0.041701783426105976,-0.27416611462831497,0.36561350617557764,0.5266481395810843,0.09229991538450122,0.6785412011668086,-0.6467336206696928,0.45424908492714167,-0.2846225625835359,0.31790753826498985,0.10459080571308732,-0.14015381876379251,0.9150960855185986,0.8096735049039125,0.5939381560310721,-0.1806817171163857,0.0005345996469259262,-0.1029097237624228,-0.4183245440945029,0.45940950559452176,-0.7243585959076881,0.9056168776005507,-0.46096276491880417,-0.4754123599268496,-0.014983722008764744,-0.19105599727481604,-0.38070595590397716,-0.031578853726387024,-0.14395883306860924,0.7269701794721186,-0.2628547684289515,-0.3755987314507365,0.8601707760244608,0.7320491378195584,-0.9280884079635143,0.4355053175240755,-0.05878917779773474,-0.4454410527832806,-0.22816724609583616,-0.036148537416011095,-0.49389508133754134,0.5822715405374765,-0.3272612546570599,-0.471603836864233,-0.0921916738152504,0.13670163648203015,-0.2627217578701675,-0.8743283986113966,-0.09486349485814571,-0.5673520797863603,0.05091294879093766,0.3369225701317191,0.23074249178171158,0.5909353867173195,0.488691798876971,0.26789725106209517,-0.1899286019615829,0.9729518541134894,0.8892783522605896,0.4730806089937687,-0.06738042365759611,-0.19687044015154243,-0.1578917084261775,0.31406826758757234,-0.36551107559353113,0.30260019982233644,0.019863164983689785,0.8501280136406422,0.6600916129536927,-0.45317014399915934,0.24479395058006048,-0.047905292827636003,-0.9607733236625791,-0.6748970388434827,0.505806413013488,-0.05137018719688058,-0.3732368550263345,-0.24725414207205176,-0.029622009955346584,0.13554866332560778,0.9796147583983839,0.9517521671950817,0.9923050738871098,0.5253399973735213,0.20601718639954925,0.2872752035036683,0.9716020594350994,0.37545011844486,0.3611294594593346,-0.0978614091873169,-0.37765325512737036,-0.7285207863897085,-0.8986687664873898,-0.0820896290242672,-0.9360332088544965,-0.1605222332291305,-0.8119306075386703,0.4765079766511917,0.49757615150883794,0.22278289264068007,0.4298629737459123,-0.6976984920911491,-0.5162493055686355,-0.18804273568093777,-0.6047699837945402,0.09213448595255613,0.9138161465525627,0.6667542643845081,-0.9403970781713724,0.9947772291488945,0.27326550986617804,-0.3511250135488808,0.42810234939679503,0.0012139789760112762,-0.628849639557302,-0.06378012662753463,0.9635034771636128,-0.046698945574462414,0.6133096106350422,0.014787975698709488,-0.6423591314814985,0.018055421765893698,-0.051969141233712435,0.03805728489533067,-0.2642362965270877,-0.1780038084834814,-0.17725375154986978,0.8715238333679736,-0.1303818328306079,-0.6146128457039595,-0.12845162628218532,-0.4984931549988687,0.3266084953211248,-0.3567813131958246,0.2106214528903365,0.23208891553804278,-0.5931424000300467,0.4052040805108845,-0.3613559864461422,0.5824510473757982,0.7000734354369342,-0.533547343686223,0.13896329514682293,-0.7492948486469686,0.3468735055066645,-0.643150179181248,0.3210048945620656,0.5761028425768018,-0.03764672903344035,0.2290840675123036,0.15456894412636757,-0.5236622872762382,0.16042168159037828,-0.5657434603199363,0.34234006283804774,-0.13987468043342233,0.1745868450962007,0.3755640210583806,-0.37299018586054444,0.9702434451319277,-0.7652294468134642,-0.009308768901973963,-0.4144938876852393,-0.3313598446547985,0.09909056732431054,0.8555444572120905,0.31633599288761616,-0.29661490581929684,-0.5854356023482978,0.9377205171622336,0.2432107888162136,0.5169003061018884,-0.2981347651220858,-0.8542365049943328,-0.5560752637684345,0.512254199013114,0.7703628758899868,0.08119989652186632,0.3730750046670437,0.05825736606493592,-0.35912667773664,0.10092222550883889,-0.5076345046982169,-0.6931288274936378,0.09251485718414187,0.15693954564630985,0.056224772706627846,0.9900369676761329,0.3599467989988625,-0.31708833388984203,-0.8638636111281812,-0.943808657117188,-0.063672233838588,0.8569105705246329,0.28156867483630776,0.25506390864029527,-0.08127815462648869,-0.521736501250416,0.6410558745265007,-0.909092262852937,-0.607150458265096,-0.528898804448545,0.9713228773325682,-0.27174053713679314,0.7040414200164378,0.36084100930020213,0.8847534223459661,0.07865867810323834,-0.35785639751702547,0.7725632847286761,-0.9641669578850269,0.23147307289764285,0.5426247077994049,-0.4088531951420009,-0.8195567009970546,0.5584884732961655,0.8782794401049614,-0.671989182010293,-0.8631843356415629,0.10652458854019642,-0.96201750356704,-0.9563408009707928,0.15150372358039021,-0.5569332549348474,0.11942815966904163,-0.9419151926413178,-0.2552427505142987,-0.7680639778263867,-0.8748059761710465,0.15777412336319685,-0.29427920188754797,0.5028259982354939,0.8447741894051433,-0.7114794882945716,0.453786282800138,0.3239709469489753,-0.4087351434864104,0.2747376374900341,-0.386608658824116,0.18515815678983927,-0.8736092634499073,0.24665506603196263,-0.3635380193591118,-0.31776610808447003,-0.8779682735912502,0.7649700115434825,0.1311774468049407,0.6046030973084271,0.4843196328729391,0.33892217837274075,0.09355089534074068,0.7352033699862659,-0.3968883762136102,0.26862807385623455,0.3668247954919934,0.6760966656729579,0.005308396182954311,-0.6501859361305833,-0.30567262321710587,-0.8897203598171473,0.040469828993082047,0.21070967242121696,0.05835041077807546,-0.6720933197066188,0.48402669560164213,0.961550678126514,-0.7410067059099674,-0.10752899898216128,-0.9660314242355525,-0.7589988461695611,-0.2951144906692207,-0.29023873759433627,-0.8764930572360754,0.48959674686193466,-0.28157454915344715,-0.24763642204925418,-0.7818230637349188,-0.02798055624589324,-0.9204325382597744,0.6762049943208694,-0.7932883654721081,-0.9303170344792306,0.944158292375505,0.6121685784310102,-0.4994787126779556,-0.5221101604402065,-0.5083764353767037,0.5002227546647191,0.3955733613111079,-0.0674740164540708,-0.2103708959184587,0.44843170465901494,-0.4930012677796185,0.8923459025099874,-0.09576933458447456,0.5072467885911465,-0.16812525829300284,-0.4087851867079735,-0.3816054202616215,0.2822816981934011,0.8974691350013018,-0.06712157838046551,0.5087658204138279,-0.28281669318675995,0.8738117897883058,-0.23704782780259848,-0.9307767278514802,0.400737966876477,0.43333111330866814,0.7989070764742792,0.8452897658571601,0.3841289053671062,-0.2635030555538833,-0.0541780199855566,-0.05364924855530262,-0.7173433233983815,-0.573408663738519,0.8192716152407229,-0.7517149737104774,0.7228320660069585,-0.2937217252328992,0.7206056625582278,-0.7057202565483749,0.5687805325724185,0.32800603983923793,-0.4606040739454329,0.6150765428319573,0.5680583538487554,0.8706717677414417,-0.9995550764724612,0.5100881336256862,-0.318012822419405,-0.521504316944629,0.48377583269029856,0.3120031524449587,0.8996374900452793,0.715921014547348,0.2432353007607162,0.47480184212327003,0.9648863081820309,0.26849162112921476,-0.703693475574255,-0.035334725864231586,-0.6869890890084207,-0.6799189858138561,-0.29743160447105765,0.3581195161677897,0.1672724192030728,-0.7050882810726762,0.8814015160314739,0.9074812270700932,-0.10248971870169044,0.4029225930571556,-0.5612299614585936,-0.565912754740566,-0.4641354405321181,0.920623519923538,-0.2981475591659546,0.005105511285364628,0.9252273724414408,-0.9955231216736138,0.7168685318902135,-0.08430257113650441,0.018691658042371273,0.8797343885526061,0.9865885353647172,0.498509933706373,0.5838844999670982,0.3113386360928416,0.18943300563842058,0.0006963717751204967,0.8367541190236807,0.1009668386541307,0.8666890431195498,-0.5624039438553154,0.5666648498736322,0.061997574754059315,-0.8908494245260954,-0.6141573344357312,-0.5373911550268531,-0.6911838324740529,-0.38513926649466157,0.9029201772063971,-0.6133388252928853,0.6663746768608689,0.4221504619345069,0.26225160993635654,0.1811549011617899,-0.5748072238638997,-0.844139757566154,0.3238802473060787,0.4201530199497938,-0.7145758341066539,0.24698689486831427,-0.5032273968681693,0.36665735160931945,-0.004486620891839266,-0.438586353790015,-0.5278888125903904,-0.014721442945301533,0.7455064970999956,-0.9096486172638834,0.07933033397421241,0.4684661813080311,-0.9001951687969267,0.7903973143547773,-0.03510663006454706,0.09010987402871251,0.866385895293206,0.46982632717117667,0.7880496690049767,-0.6057785423472524,-0.12265828112140298,0.033003365620970726,-0.9242126671597362,0.9966557365842164,-0.8928687651641667,-0.37991244113072753,0.621269186027348,0.014850774314254522,0.1775583359412849,0.7161051766015589,-0.5258247563615441,0.14117022883147,0.8463039016351104,-0.7373929866589606,0.1815759534947574,-0.9860005215741694,-0.4116447698324919,-0.6717872046865523,-0.376935469917953,-0.18416732642799616,0.05822947761043906,-0.4324643653817475,-0.6426367294043303,0.5851388308219612,0.26520290737971663,-0.39149134373292327,0.8660658956505358,-0.17474791826680303,0.7078834432177246,-0.5140116554684937,-0.5688047134317458,0.898420438170433,-0.4198339646682143,0.19878557510674,0.27827497012913227,0.2472337861545384,-0.5675636790692806,-0.6834296630695462,-0.23749354481697083,-0.3672676249407232,0.8929089782759547,-0.5529984231106937,0.07280868431553245,0.09701269865036011,-0.570709296502173,0.8639277340844274,-0.19274836080148816,0.09215237013995647,0.21201260527595878,0.525917717255652,0.5199374356307089,-0.6487657618708909,-0.3609798704273999,0.9472329434938729,-0.32229369413107634,-0.12323189852759242,0.8202719702385366,0.8754778495058417,-0.8912716880440712,-0.7190794898197055,-0.44611281575635076,0.8568316204473376,0.20093826577067375,-0.9144220622256398,-0.0143346949480474,0.17937439680099487,-0.5468533607199788,0.02397982031106949,0.9828652692958713,0.5144316423684359,0.17125032003968954,0.015682052355259657,0.8112302729859948,-0.9878424187190831,-0.9143928131088614,0.15896570915356278,0.08538490533828735,0.27684723446145654,0.45108692068606615,-0.545078772585839,-0.32286969386041164,0.008214141707867384,-0.7843042681924999,0.7762036412023008,0.98485028417781,-0.26000587036833167,-0.8884793408215046,0.12613252829760313,0.7005091179162264,0.7840119414031506,0.09553021332249045,-0.23529337905347347,0.7872275835834444,0.2367005837149918,0.6523150443099439,0.7323492066934705,-0.773267850279808,0.5066375909373164,-0.1686759851872921,-0.6151300086639822,-0.3517696764320135,-0.80777991656214,-0.04793096100911498,-0.1294624931178987,0.5058651017025113,0.8857820979319513,0.5351298060268164,0.8948207893408835,0.8254978191107512,-0.6610143561847508,-0.18718770146369934,0.2515492271631956,-0.37547420570626855,0.3282264401204884,0.9477214044891298,-0.8415569164790213,-0.8094752444885671,-0.3354723071679473,0.006430584006011486,0.27440764009952545,-0.7068562190979719,0.8377854959107935,-0.3510818895883858,-0.045180479530245066,0.5342630431987345,0.49326644372195005,-0.7402335852384567,0.11133694695308805,-0.055978341959416866,-0.9561801212839782,0.2612451110035181,0.3353550531901419,-0.11669008620083332,-0.9316528253257275,-0.3999573918990791,-0.3117614476941526,-0.6623614626005292,-0.37018364667892456,0.7754636676982045,-0.6277744858525693,0.8184868018142879,0.6283632735721767,0.403236897662282,-0.17271909536793828,0.092206213157624,0.40626273211091757,-0.5370776983909309,0.21018386911600828,-0.31803071964532137,-0.8546889419667423,0.896500198636204,0.25130397314205766,0.4968213583342731,-0.7525077271275222,0.5583301009610295,-0.37134088203310966,0.42331972578540444,-0.9790498008951545,-0.7204561396501958,-0.7222029236145318,-0.6607282762415707,0.8105170987546444,-0.03379662428051233,-0.4645527587272227,0.7283665300346911,-0.315332664642483,-0.5418198048137128,0.977910706307739,0.4569185907021165,-0.9374141171574593,-0.5858214125037193,-0.7600020882673562,0.42553474521264434,0.9246037192642689,-0.452713287435472,-0.9506441964767873,-0.5056934813037515,-0.4239300568588078,-0.45831547025591135,0.37928250385448337,0.10974944056943059,-0.1622018706984818,0.027340144384652376,-0.8308441014960408,0.3687611143104732,-0.791274550370872,0.8024435392580926,0.14025877229869366,0.6006143460981548,0.47821659687906504,0.24790143873542547,-0.07511346274986863,0.7514856862835586,0.8772863843478262,0.20489213708788157,-0.5972595973871648,0.8827035496942699,-0.8079349575564265,0.3535897536203265,-0.43492437712848186,0.7946349275298417,0.6530116396024823,-0.885727059096098,0.40802129404619336,-0.8318885159678757,-0.827697460539639,0.3303373637609184,-0.4441657536663115,0.7706795409321785,0.4937855713069439,-0.8213555454276502,-0.5204295665025711,0.3879501554183662,-0.21313041169196367,0.661282311193645,0.5396551112644374,0.6514092390425503,-0.25759858172386885,0.7683417643420398,-0.10495819849893451,0.2146995346993208,0.5748719000257552,-0.5491816699504852,0.748495829757303,0.26132141100242734,-0.5036494513042271,0.3406242341734469,0.8724910113960505,0.4910002644173801,0.04332376644015312,0.257193417288363,0.027677453588694334,0.6068289056420326,-0.5727296699769795,-0.954919405747205,0.43961132410913706,-0.06479421351104975,0.34902817057445645,0.4458776833489537,0.6673511117696762,0.5355501039884984,-0.6584684373810887,0.3754367926158011,-0.5498550818301737,-0.37984497752040625,-0.22764849103987217,0.32258748868480325,0.9096794277429581,-0.09421647991985083,0.6303177606314421,0.4823061814531684,-0.9112466108053923,0.9661064925603569,0.1713746041059494,0.5572427310980856,0.4324339800514281,0.9611734002828598,0.025528868660330772,-0.03834853833541274,-0.04505270579829812,0.7340496587567031,-0.19503465946763754,-0.28349995240569115,0.4583484651520848,0.2083556861616671,0.5266225417144597,0.2606454864144325,-0.5005440604873002,-0.8702184343710542,-0.8978470233269036,-0.9253229312598705,-0.5020764172077179,0.6359056946821511,-0.6443269695155323,0.45228176936507225,0.7363743716850877,0.5353913912549615,0.8462755903601646,0.7631156537681818,-0.29207299975678325,-0.9422886380925775,0.9713781517930329,0.3616602164693177,0.13856460759416223,-0.8340336508117616,0.08522407803684473,0.5172541299834847,0.7169207134284079,-0.6923856912180781,0.09407920204102993,0.7772554741241038,0.33266874169930816,-0.7677696920000017,-0.33725208370015025,0.8993523167446256,-0.9293294763192534,-0.3117568902671337,-0.5672629945911467,0.22143380111083388,0.9298261599615216,-0.3395369299687445,0.8942153323441744,-0.38978208415210247,0.9332744078710675,0.2602139669470489,0.784941122867167,0.035640815272927284,0.3205034742131829,-0.32758405758067966,-0.2800605590455234,0.1394168883562088,-0.9806269644759595,0.5639587212353945,0.7699944353662431,-0.9302295250818133,-0.039475064259022474,0.8918417077511549,0.9311032989062369,0.9720283742062747,-0.011997360736131668,0.25303719798102975,-0.26739905402064323,-0.4526955452747643,0.9959622966125607,-0.11392768705263734,0.7365755559876561,0.3680655197240412,0.2853576587513089,-0.8654619101434946,-0.6522428980097175,-0.5882933922111988,0.7622623234055936,-0.9104710719548166,0.7366900141350925,0.6829010206274688,0.5815665321424603,-0.050871198531240225,0.4112307336181402,0.9711205787025392,-0.4247522223740816,-0.8976078093983233,-0.2761488710530102,-0.5243203900754452,0.08088300982490182,0.26414988609030843,0.558711729478091,-0.26519833225756884,0.04247596254572272,0.22320620017126203,-0.38491557678207755,0.8622098020277917,-0.39577444456517696,-0.8736122194677591,0.39178615855053067,0.7979136840440333,0.43668404035270214,0.9885085667483509,0.21852247044444084,0.46747419936582446,0.2434085626155138,0.2775264969095588,-0.46201131166890264,-0.8655138090252876,0.17310308199375868,-0.7405362110584974,-0.21340807992964983,0.9928226182237267,0.13252381142228842,-0.29654524475336075,0.8818643875420094,-0.5616312082856894,0.8148008449934423,0.9209443745203316,0.17153538577258587,-0.5175556256435812,-0.7819299027323723,-0.5594349200837314,-0.20872166706249118,0.9074030141346157,-0.21057301247492433,0.43720466224476695,-0.8244830034673214,-0.9953821720555425,-0.6074769999831915,-0.1901929979212582,0.07040385017171502,-0.8258611103519797,-0.8508998830802739,0.4553022999316454,0.08181185694411397,0.10797959193587303,0.49461892480030656,0.028238676488399506,-0.6077827415429056,0.8528414275497198,-0.77480648458004,-0.3911280333995819,0.968996973708272,-0.0633808453567326,-0.3679009610787034,0.4698087642900646,0.7610788098536432,-0.5452156839892268,-0.7392137250863016,-0.6420518956147134,-0.06307119131088257,-0.2626017741858959,-0.21729503851383924,-0.6367910061962903,-0.27276513865217566,0.5247395844198763,0.16390741104260087,-0.9080337565392256,-0.8203981588594615,0.04197379853576422,-0.7580457199364901,0.30982477171346545,-0.5425757672637701,0.48344050208106637,0.8094287719577551,-0.3158016912639141,-0.4179168059490621,-0.23964462848380208,0.29287410201504827,-0.10081603936851025,-0.9760937038809061,-0.5832583955489099,0.6225807014852762,0.9481547242030501,0.30716224992647767,-0.6296092509292066,-0.9512703651562333,-0.014691789168864489,0.5406885468401015,0.432796660810709,0.2785075013525784,0.8966259355656803,0.7791340351104736,0.8884306536056101,0.12166834715753794,-0.7078065266832709,-0.05048996675759554,-0.4466670681722462,0.5132920444011688,-0.46451487205922604,0.2871487010270357,-0.609000033698976,0.1808449444361031,-0.6574724772945046,-0.34068587562069297,0.940750920213759,0.8174149300903082,0.4796705115586519,-0.6639507664367557,0.14716354850679636,-0.15629422152414918,-0.754012952093035,0.6087483349256217,-0.7369611714966595,0.723046341445297,0.6032758732326329,0.3708056132309139,-0.9212109069339931,0.857921686489135,0.9328183541074395,0.9316547457128763,0.9806033261120319,0.11217510793358088,-0.9427187535911798,0.031091597862541676,-0.9021866801194847,0.7107279878109694,0.3368594804778695,-0.6864869580604136,-0.20095606101676822,0.40269282925873995,0.235837088432163,-0.1320593561977148,0.009448554366827011,0.5736641944386065,0.49239096976816654,-0.1789522343315184,-0.9719572314061224,0.12009001057595015,-0.0865628020837903,-0.7025540778413415,-0.9865667237900198,-0.8854756634682417,-0.9453447195701301,0.2973572453483939,-0.6727781589142978,0.9022026378661394,-0.8623287635855377,-0.3463376769796014,-0.17345102690160275,-0.2224143948405981,-0.45954904425889254,-0.12683171778917313,0.5013374402187765,-0.9368669199757278,-0.1391128795221448,0.13549960171803832,0.07519746432080865,0.9729671450331807,0.9336808258667588,0.278162247966975,0.46109295450150967,-0.8756184130907059,0.8159780115820467,-0.43885022355243564,-0.6441128822043538,-0.49802330462262034,-0.8715111594647169,0.6315205921418965,-0.03600240312516689,0.36821459978818893,-0.9817731794901192,-0.05894684139639139,-0.126866961363703,-0.2969260262325406,-0.8859113384969532,0.45695769786834717,0.43608834128826857,0.589885569177568,-0.2585141956806183,0.9310088595375419,0.40446845814585686,-0.40458192862570286,-0.46355680329725146,-0.21024201018735766,-0.06070810882374644,0.5344240912236273,0.23907352145761251,-0.03557856986299157,-0.5161187998019159,-0.5413551847450435,-0.1243080822750926,0.004004174843430519,0.18042455846443772,-0.9424887867644429,-0.23847659165039659,0.4909458914771676,0.3032246339134872,0.883760744240135,0.0654225661419332,0.6539847115054727,-0.44036943558603525,0.2438122872263193,0.6968518164940178,-0.7180093871429563,0.15286060702055693,0.14422238105908036,-0.5794500545598567,-0.6111662671901286,-0.07738790893927217,-0.2446984606795013,-0.1070068464614451,0.9388252701610327,0.3062490774318576,0.2092321771197021,-0.9671287992969155,-0.8714158930815756,0.9505899148061872,-0.46407540049403906,-0.03021480143070221,-0.625739311799407,0.7435186482034624,-0.19707833416759968,-0.8527553365565836,-0.5844444008544087,-0.47490676306188107,0.05175141477957368,-0.803537136875093,-0.2275226074270904,0.9283454800024629,-0.9442704454995692,-0.9137805895879865,0.9698524726554751,-0.7575276657007635,0.6760954419150949,0.9452052088454366,0.5863366001285613,-0.41007880540564656,-0.7983180480077863,0.3977498607710004,0.9397180308587849,-0.1417038608342409,-0.3218838949687779,0.6537599037401378,0.14726396463811398,0.6367578962817788,-0.18179111927747726,-0.8329822476953268,-0.21475852699950337,0.9557266030460596,-0.5622798041440547,-0.6627062591724098,0.5890575973317027,0.8787823561578989,0.6172521724365652,0.48248368548229337,0.6279235985130072,-0.8144837711006403,-0.25292579689994454,-0.830624689348042,0.509521434083581,-0.30586674623191357,0.14260039431974292,0.0785411954857409,0.4121585674583912,-0.533447208814323,0.4335063071921468,0.38009887700900435,-0.08694591047242284,-0.1971571771427989,-0.37659803638234735,0.2944152597337961,-0.5159204239025712,0.4163241577334702,-0.8360305642709136,0.5298810205422342,0.059155294205993414,0.24468573555350304,-0.6007365044206381,-0.001153356395661831,0.618708536028862,0.4039709595963359,0.5943127991631627,0.49482052866369486,-0.9949417850002646,0.07564882421866059,0.6769763357006013,0.9258225769735873,-0.6194335971958935,0.5636215866543353,-0.9513659020885825,-0.29008921422064304,0.4272990943863988,-0.6504345969296992,-0.1863762834109366,-0.3337407745420933,-0.6811383529566228,0.43196891620755196,-0.896213851403445,-0.16193069564178586,-0.2007635459303856,0.06467016087844968,0.6780411079525948,0.9953729435801506,-0.7756625581532717,0.7612755452282727,0.526407313067466,0.017239008098840714,0.25331516982987523,0.9918536716140807,-0.852899806573987,-0.1821253509260714,-0.4241769560612738,-0.2957486608065665,-0.42943361354991794,-0.6529278624802828,0.8158676610328257,0.929236360359937,0.8502683159895241,0.9239986706525087,-0.917838444467634,-0.5560849709436297,0.8082231422886252,-0.8888588263653219,-0.7654896713793278,-0.19799959799274802,0.8067910415120423,-0.8827752089127898,0.33616699045524,-0.9725716016255319,-0.23270640056580305,-0.014765513595193624,0.9057514178566635,0.5521782455034554,0.5939657958224416,-0.5026939422823489,0.5777069381438196,-0.5966408285312355,-0.8170762998051941,-0.05862671136856079,0.7200231775641441,0.4546496970579028,0.6838052235543728,0.6478062965907156,0.9454098069109023,-0.6631064377725124,0.9994978145696223,-0.7504599210806191,-0.33962284214794636,-0.26779774064198136,-0.01739881234243512,-0.9157078540883958,0.8777554333209991,0.1778129548765719,-0.5344421868212521,-0.29963242216035724,0.8789781839586794,0.9203611020930111,-0.0009790812619030476,0.7972701573744416,0.9798698998056352,0.05169888911768794,0.038737391121685505,0.42582637071609497,0.23769268346950412,0.5556405638344586,-0.1981401303783059,0.39037468610331416,0.8680879026651382,0.7146948198787868,-0.09124344494193792,-0.5454132622107863,0.9933686861768365,-0.5715172914788127,-0.3698062477633357,0.9679718371480703,0.6735396184958518,-0.2145655769854784,0.6565886358730495,-0.2707769828848541,0.3966944175772369,0.5255556250922382,-0.963077686727047,0.6097694477066398,0.28011765563860536,-0.1236142641864717,0.9460414522327483,-0.8959457892924547,0.3353042076341808,-0.9605682245455682,-0.6961234877817333,0.6082980199716985,-0.833752881269902,0.6334280180744827,-0.8454754329286516,-0.9602093421854079,0.4956270973198116,-0.6085654441267252,0.29239513352513313,0.2080385908484459,0.6168869333341718,0.9661985700950027,0.2900842195376754,0.818327171728015,-0.9905146011151373,-0.5908446442335844,0.8958712872117758,0.709333622828126,0.1188672068528831,0.2471297043375671,-0.7326754927635193,0.4657048019580543,-0.8965749116614461,-0.12096374714747071,-0.9192249276675284,-0.4086768520064652,0.5529068862088025,-0.05963638238608837,0.6038020900450647,-0.2690764316357672,0.39736406737938523,-0.7370961038395762,-0.016898284666240215,-0.964212175924331,-0.10589385638013482,0.11994720483198762,0.7478837007656693,-0.6954555753618479,-0.7966313976794481,0.8897350211627781,-0.20111828250810504,-0.3265114380046725,0.45027302484959364,0.7059888015501201,0.5322906081564724,-0.9699952220544219,-0.0560195897705853,0.6660195807926357,0.2768133981153369,0.22451436053961515,0.5420929756946862,0.47452765982598066,0.2623587539419532,0.1624356652610004,0.1942604179494083,0.6552613191306591,0.3462529298849404,-0.3162492774426937,0.20812764903530478,0.5491399001330137,-0.5279784770682454,-0.7419248856604099,-0.9195960005745292,0.41434254171326756,-0.518679128959775,-0.9151145811192691,0.2176165170967579,-0.8530855416320264,-0.31692650401964784,-0.723935532849282,-0.4379156897775829,-0.6374001353979111,-0.8173490143381059,0.8069993015378714,0.8015121789649129,-0.29492270899936557,-0.36063786735758185,0.26147675793617964,-0.6112861600704491,-0.3539286069571972,0.3714819769375026,0.7505858209915459,-0.9465789771638811,0.08982012653723359,0.8541811774484813,-0.09399941470474005,0.28897909820079803,-0.5378121114335954,0.13526307325810194,-0.6132589895278215,0.07256198627874255,0.6385188237763941,0.398869339376688,-0.263777413405478,-0.15918339788913727,-0.16463644662871957,0.9506694078445435,0.3930476875975728,-0.4465284706093371,0.7818894619122148,0.5105535695329309,0.9576295018196106,0.09375272551551461,0.1181148923933506,0.6913614752702415,0.13809146592393517,0.6359203103929758,-0.7542431214824319,0.7536079287528992,0.30975779984146357,0.03173578577116132,0.4390969998203218,0.19397400692105293,0.5822698194533587,-0.5185983045957983,-0.5186448250897229,0.11485411878675222,0.2514962335117161,-0.473650548607111,0.685797312296927,0.3766665132716298,-0.6259233397431672,-0.495661583263427,0.4484979114495218,-0.23510323325172067,-0.9907262986525893,-0.13289033249020576,0.7809788123704493,-0.8026492465287447,-0.0474407565779984,0.4559606243856251,0.8031636849045753,0.909340413287282,0.06388631463050842,0.32594506768509746,0.2590505527332425,0.019316273275762796,-0.8810630762018263,0.6482742568477988,0.9022081340663135,0.27492869459092617,-0.6117416857741773,-0.11863847589120269,-0.009522154927253723,0.22373221302405,0.0968511002138257,0.5328777628019452,-0.8362055937759578,-0.174375690985471,-0.9131361455656588,0.5667326129041612,0.031922395806759596,-0.7066820822656155,0.8157667135819793,-0.5724964076653123,-0.584413112141192,-0.3288117595948279,0.5794657813385129,0.8556201211176813,-0.23824222013354301,0.41111549362540245,-0.5944861760362983,0.6009197724051774,0.7945336257107556,-0.4300252259708941,0.8431799407117069,0.754372326657176,-0.7802383326925337,0.5409288122318685,-0.2648257287219167,-0.12663827277719975,-0.07364496309310198,-0.8357051177881658,-0.37711260514333844,-0.46070593781769276,-0.07528388826176524,-0.9617483457550406,0.820748433470726,0.6149081676267087,-0.39870265778154135,-0.7506942446343601,-0.7248112871311605,0.15494485525414348,-0.7303820480592549,-0.42333824234083295,-0.7603564634919167,0.46498250076547265,-0.2439172063022852,-0.6485685780644417,0.7585086245089769,-0.7729226532392204,-0.7991089802235365,0.7139591532759368,0.23547680210322142,0.04754061670973897,0.02067656209692359,0.528575612232089,0.5863742190413177,-0.46729509718716145,0.6934408154338598,0.0035157501697540283,0.9751514885574579,-0.3986301915720105,0.5732648144476116,0.13748158467933536,-0.5189881105907261,0.4506818000227213,-0.7497513303533196,-0.2895716540515423,-0.9232795950956643,-0.059180539567023516,-0.27895240345969796,-0.44140242133289576,-0.28391853952780366,-0.7093273005448282,-0.9647188642993569,0.9244630122557282,-0.012621528469026089,0.33539906656369567,-0.65673244651407,0.31118182046338916,-0.25529592717066407,-0.452929622028023,0.14411714812740684,-0.521812538150698,-0.808695379178971,-0.8305267463438213,-0.9258546284399927,-0.915217025205493,0.09863555431365967,-0.4832162279635668,0.24532846733927727,-0.7243421450257301,0.532604864332825,-0.702708279248327,-0.40471358178183436,0.42105588456615806,-0.8449659533798695,0.13809663197025657,-0.26793337566778064,0.044585674069821835,-0.38538281014189124,-0.12325038760900497,-0.10476141329854727,0.015078599099069834,0.18447012780234218,-0.5355535284616053,0.2854967024177313,0.49165206868201494,-0.4402939332649112,-0.6258669947274029,-0.7436094088479877,0.48327801655977964,-0.6560011166147888,0.9584571518935263,0.69950339384377,-0.38277295185253024,0.42754049971699715,-0.04954286105930805,-0.7455607638694346,0.4457367560826242,-0.5949830478057265,0.10340164601802826,0.2865619258955121,-0.6436538593843579,0.4442747882567346,-0.8727264446206391,0.6082410425879061,0.37190329330042005,-0.03595672966912389,-0.7077523665502667,-0.4085474079474807,0.3936834502965212,-0.5111090480349958,-0.13934860099107027,0.32370560616254807,0.06201033480465412,-0.17810755502432585,-0.5839337324723601,-0.6427775518968701,0.6721873804926872,0.29992474894970655,0.17723392555490136,0.4070703978650272,-0.8539800923317671,0.5421218727715313,-0.3261018446646631,0.6963287419639528,0.40077584190294147,-0.5676747341640294,-0.36856207344681025,-0.0034097484312951565,-0.7638939493335783,-0.2737492867745459,0.5103159607388079,-0.8153836713172495,-0.06912622600793839,0.31083225598558784,-0.5087886140681803,0.8357155318371952,-0.6133296345360577,0.7353502484038472,-0.8673820276744664,0.33283520583063364,0.019626223482191563,-0.6776007553562522,-0.8657442452386022,0.09227425372228026,-0.19560109544545412,-0.20021654106676579,0.5027663190849125,0.7808746816590428,-0.9608738007955253,-0.09981158468872309,0.4627574305050075,0.38351625483483076,-0.17359623638913035,-0.07568791462108493,-0.9713139981031418,-0.156506494153291,0.3549900953657925,0.4001578325405717,0.15499634994193912,0.15469228895381093,-0.38045592699199915,-0.971745758317411,0.8377243219874799,0.3962591630406678,0.13332689693197608,0.8135102693922818,-0.19039794988930225,-0.9677409995347261,0.822700107935816,-0.1731616146862507,0.7368293548934162,-0.05019866023212671,0.8131250645965338,-0.1703289789147675,0.7853950844146311,0.9054130064323545,0.5861212904565036,-0.34090136969462037,0.3154439479112625,-0.5453136959113181,-0.1904275701381266,0.45993040641769767,0.4546702397055924,0.4114014063961804,-0.0863021844998002,0.6980082425288856,-0.7855771849863231,-0.5422497480176389,-0.8622518978081644,-0.6495575583539903,-0.5475335866212845,0.4756718329153955,-0.9148800680413842,-0.07931666448712349,0.8521758792921901,0.7346055344678462,0.1243594465777278,-0.23248306522145867,-0.4229134498164058,0.854342183098197,0.38221117155626416,-0.0024410970509052277,0.789704761467874,0.7768846754916012,-0.8357429942116141,0.37046971917152405,0.6198710384778678,-0.021323218941688538,-0.6623830012977123,-0.2599360980093479,0.961131414398551,0.8006797512061894,-0.12913542008027434,0.4895303728990257,-0.7787467194721103,0.7541107633151114,-0.3508056662976742,0.6348065626807511,0.030103531666100025,-0.3710034270770848,0.19932336313650012,-0.521425798535347,-0.09563201712444425,-0.10232636891305447,0.6729510398581624,0.08098397497087717,-0.07185490196570754,0.8065513018518686,-0.19326697755604982,0.27987621910870075,-0.002132987603545189,0.3543215971440077,0.14589263359084725,-0.2833918649703264,0.2601699838414788,-0.40985153056681156,-0.6840931009501219,-0.7841734774410725,0.11229126155376434,0.1540813143365085,0.1650796332396567,-0.05449146358296275,0.5825713435187936,0.25111711537465453,0.3514409987255931,-0.002137551549822092,-0.5493539851158857,-0.21338247088715434,-0.4999138689599931,-0.8970304718241096,-0.6225138320587575,0.47023631585761905,0.642269725445658,-0.26094808941707015,-0.8434756440110505,0.400743808131665,-0.20598466601222754,-0.4322539051063359,-0.6679087188094854,0.9281286573968828,-0.4821142083965242,-0.9793743467889726,0.7756985086016357,0.41480265324935317,0.9600577526725829,0.14093728177249432,0.6073660929687321,0.4738199976272881,-0.16854429291561246,0.2792328200303018,-0.7399187311530113,-0.11403221543878317,0.7725298828445375,0.5688924062997103,0.6165837869048119,0.8793491940014064,-0.8825593711808324,-0.8605770566500723,-0.8707576408050954,-0.8239786420017481,-0.22356441617012024,0.471571808680892,-0.8347148546017706,-0.5186980301514268,-0.09243238577619195,-0.8875847128219903,0.8493044245988131,-0.24078232049942017,-0.3765450557693839,-0.7568478868342936,-0.010843238793313503,-0.6659168000333011,-0.7444425201974809,-0.4503648057579994,-0.9873234783299267,-0.22506233537569642,-0.9725126540288329,0.43092290544882417,0.0992498779669404,0.7600419148802757,0.00956303020939231,-0.4603750347159803,-0.5563377346843481,-0.4101653420366347,0.32933087972924113,0.3393919328227639,0.276250961702317,0.4428347507491708,-0.011689584236592054,0.16974794771522284,0.6931935409083962,-0.46087321219965816,0.11513526365160942,-0.9137776563875377,-0.3996193208731711,0.32115499302744865,0.0700042424723506,-0.448750960174948,-0.12315489817410707,-0.2116669863462448,0.14213664084672928,0.2702173050493002,-0.971415476873517,-0.31518944073468447,0.09098503878340125,-0.5362259922549129,-0.7225084728561342,0.07558934483677149,-0.5600481862202287,0.15753932483494282,-0.16348168393597007,-0.14803956681862473,0.9421940189786255,-0.8903580419719219,-0.943082635756582,0.20918943360447884,0.41085278056561947,0.4162357081659138,-0.15012016100808978,-0.11709498520940542,-0.784061390440911,-0.5086182886734605,-0.15500766411423683,-0.4809637786820531,0.6883072308264673,0.833105509635061,0.694143533706665,-0.01675774436444044,0.7921804580837488,-0.8661162620410323,0.6315530245192349,0.8107071812264621,0.5875926367007196,0.8093844400718808,-0.8117924681864679,0.5484832278452814,0.23407015996053815,-0.9639956578612328,0.20273545756936073,0.1391485882923007,-0.9631119086407125,-0.705179535318166,-0.2549729757010937,-0.6876599099487066,-0.8997791693545878,0.006340613588690758,0.45995874516665936,-0.22343625267967582,0.6075070826336741,-0.6132193328812718,-0.9269477133639157,-0.5676894579082727,-0.5462306272238493,0.7388277957215905,-0.8204940161667764,-0.1603958518244326,-0.27605068357661366,-0.5410407250747085,0.8956308616325259,-0.1709132231771946,-0.24644424999132752,-0.6061726096086204,0.8960105986334383,0.314277442637831,-0.03447151882573962,0.24020459782332182,-0.0590185821056366,-0.34351953864097595,0.2864428162574768,0.4478570446372032,0.1343641891144216,-0.01023391680791974,-0.5399556858465075,-0.7666828739456832,0.39906003838405013,0.45275005884468555,-0.8923152731731534,0.6252043256536126,-0.7772889607585967,-0.6656156405806541,-0.2077935212291777,-0.28763186652213335,0.4216449363157153,-0.9614346814341843,0.284545389469713,-0.21004154067486525,0.7859816066920757,0.7129555311985314,0.11581653915345669,0.8761659506708384,-0.3629410434514284,-0.6956940968520939,-0.35888924496248364,0.24210885260254145,0.5652235574088991,0.1286071133799851,-0.43608300434425473,0.42408408038318157,-0.024582832120358944,0.9832079764455557,0.27858175383880734,-0.4779826672747731,-0.35247267317026854,0.23586407117545605,0.2897780011408031,0.4689559070393443,0.9015601011924446,-0.7565737566910684,-0.4698109827004373,-0.3791800853796303,0.4357608645223081,-0.19573631370440125,-0.6488171215169132,-0.593986492138356,0.32328059896826744,0.41484534787014127,-0.7667016461491585,-0.8806457743048668,-0.894929270260036,0.7326361718587577,-0.39692893298342824,0.2251950684003532,0.208428458776325,-0.3479915177449584,0.2907750718295574,-0.8007520693354309,-0.1677473676390946,-0.2660218854434788,-0.5788824521005154,0.14777721324935555,-0.5359757542610168,0.38508106442168355,0.3104217513464391,-0.7648053313605487,0.8045141701586545,0.28564153937622905,-0.8874814221635461,-0.49431335600093007,-0.4412952996790409,-0.3443703977391124,0.46851980220526457,0.9371516271494329,-0.22246450604870915,0.18067303858697414,0.7789806383661926,-0.17473861947655678,0.044443519320338964,0.6951773469336331,0.33429526444524527,-0.5001918124035001,0.720435494557023,0.43160148803144693,-0.38916572416201234,-0.6588206267915666,-0.661329205147922,0.8437174996361136,0.2698859036900103,-0.42180375289171934,-0.10900765610858798,0.987486872356385,-0.6784497173503041,-0.700957614928484,0.18121012300252914,0.03927325922995806,-0.060751969926059246,-0.4925818503834307,0.26218258077278733,-0.4215914309024811,0.8923808946274221,0.7405002815648913,-0.9681428903713822,0.008998926263302565,-0.12842807453125715,-0.5592913678847253,-0.4601894514635205,0.9574027075432241,-0.306747704744339,0.5516967563889921,-0.2043971731327474,-0.2814212357625365,0.3167360629886389,0.16875056736171246,0.8858400038443506,-0.8254962908104062,0.725050731562078,0.7310177418403327,-0.9167223763652146,-0.6458258568309247,0.5431374735198915,-0.1429470293223858,-0.2336033508181572,-0.8647833098657429,0.19917048513889313,0.357682887930423,0.7256493675522506,-0.0521043068729341,-0.8878444535657763,-0.9540962758474052,0.011857574339956045,0.5888470308855176,-0.9880730886943638,-0.17684466252103448,0.56076819030568,0.4629516024142504,0.9196908855810761,-0.8194277980364859,-0.40492440573871136,-0.1012431001290679,-0.6269230227917433,0.3969934778288007,0.7596239214763045,-0.7526854914613068,-0.7640732661820948,-0.23770481441169977,-0.556652897503227,-0.07900784024968743,0.8896415838971734,0.4349548378959298,-0.6235971469432116,-0.02356009976938367,0.6822437490336597,-0.7429893547669053,-0.8222512565553188,0.6602902165614069,0.9938515839166939,0.4467376582324505,0.5658182976767421,-0.7997047896496952,-0.8101668320596218,-0.49776300275698304,0.07522130897268653,-0.9502015048637986,0.5945826643146574,-0.1945710713043809,-0.08764701662585139,-0.5687141683883965,-0.3378389454446733,0.14945436269044876,0.4669019188731909,-0.8065958609804511,-0.8515567327849567,-0.6703769015148282,-0.8601301950402558,-0.2563366247341037,0.4479974457062781,-0.6964366105385125,-0.12876783916726708,0.10591259226202965,-0.06801258213818073,0.7301425314508379,0.5764234280213714,-0.8061689012683928,0.8606664212420583,0.20095468824729323,-0.7034501256421208,0.9760973430238664,-0.8641587989404798,0.4760472485795617,0.29830882465466857,-0.6325005637481809,0.663539957255125,-0.022365769371390343,0.25037196977064013,0.3825999852269888,0.3673042613081634,-0.771489436738193,0.38427078118547797,0.4180781850591302,0.7996712904423475,-0.20821893168613315,0.9953428483568132,0.6518380208872259,0.5428524669259787,0.5669571571052074,0.7109542177058756,0.6217272477224469,-0.16647458216175437,0.3101715366356075,0.37816250743344426,0.4037323840893805,-0.610686766449362,-0.5058683874085546,0.9899486098438501,0.31607356248423457,-0.5856839665211737,0.415671001188457,0.419411679264158,-0.5050318446010351,0.9050952731631696,-0.015491459518671036,0.4633349501527846,-0.7849379256367683,-0.7204132005572319,-0.10376159939914942,0.8739607320167124,0.20266295224428177,0.7077585635706782,-0.1334003801457584,0.22212257469072938,-0.02339104562997818,-0.10664862114936113,-0.312526423484087,-0.6851408211514354,-0.4242830276489258,-0.4835432837717235,-0.7817114037461579,-0.5832724045030773,0.4144845432601869,-0.970040874555707,-0.1732602920383215,0.19772348925471306,0.60591762047261,0.17985040601342916,0.6956296833232045,0.2098057782277465,0.3119627689011395,-0.7140382151119411,-0.5392950545065105,-0.28910201508551836,-0.8477414222434163,-0.6053891559131444,0.6526072691194713,0.28817672142758965,-0.9088905272074044,0.7795724952593446,0.9035086128860712,0.37636870006099343,0.21336792828515172,0.5769576476886868,-0.7297950638458133,-0.01726246066391468,0.21987996296957135,-0.5988139896653593,-0.10767333349213004,0.031605714932084084,-0.3501223409548402,0.9699739632196724,0.836722981184721,-0.5807736334390938,0.5473050526343286,-0.5900086923502386,-0.8150660432875156,0.6173904682509601,0.525645840447396],"z":[-0.6908454922959208,0.2801600117236376,0.2922414862550795,-0.2621663990430534,0.059116033371537924,0.6712708924897015,0.5857203542254865,0.7087348122149706,0.4651141604408622,-0.2767545091919601,0.42629781924188137,0.04244647268205881,-0.9711902118287981,-0.5524980761110783,-0.4161542602814734,-0.2866361322812736,-0.3968177572824061,0.749887166544795,0.48148728627711535,-0.7536455313675106,0.7139423615299165,0.4112473498098552,0.7604919974692166,0.07622384186834097,-0.6317715714685619,0.8181544202379882,0.18528395518660545,0.5490539488382638,0.6352575030177832,0.5318012940697372,-0.10686820140108466,0.3546530930325389,-0.5504834046587348,-0.570243519730866,0.6112906555645168,-0.29974641371518373,-0.16675419360399246,-0.25414564833045006,-0.2725775958970189,-0.3786208429373801,0.7289202772080898,0.2576908483169973,0.7413264904171228,-0.7641789806075394,0.2409346797503531,-0.6190587738528848,-0.1720124683342874,-0.26611863961443305,0.05033442284911871,0.9800819461233914,-0.498920701444149,0.8904093336313963,0.2952988902106881,-0.38786457665264606,-0.9537296704947948,0.9565062830224633,-0.817481598816812,0.27386242616921663,-0.12643227633088827,-0.42773103853687644,0.938623646274209,-0.09055954264476895,0.2739811586216092,-0.3445044606924057,-0.6085902927443385,0.16921030078083277,0.32666201423853636,-0.3956316844560206,-0.37662601424381137,0.40424545807763934,0.5451264157891273,0.7042573378421366,0.34752175491303205,0.7869770149700344,-0.834317690692842,0.895754664670676,-0.060072402469813824,0.8457569400779903,0.9036121913231909,-0.7001097281463444,-0.2666755705140531,0.804665872361511,-0.8661746755242348,0.9316198490560055,-0.9247552822344005,-0.208922463003546,0.46026378870010376,0.6687458255328238,-0.7979248045012355,0.9556099558249116,0.1502486914396286,-0.3011636999435723,-0.07115226285532117,-0.10194300441071391,-0.8620161428116262,-0.17537837335839868,-0.6961468476802111,-0.9101042007096112,0.34607047447934747,-0.9047504924237728,0.9657500297762454,-0.8175927153788507,0.7353671146556735,-0.08332195039838552,-0.9782181391492486,-0.4579965933226049,-0.14813213795423508,-0.22175834560766816,-0.09093805402517319,0.9774331613443792,-0.5784778576344252,-0.3258664649911225,-0.38291767332702875,0.9324145666323602,0.8494529514573514,0.1375062484294176,-0.9236393496394157,-0.199917234480381,0.9398591718636453,0.46509042475372553,0.0537355886772275,-0.06833391590043902,-0.6732990466989577,0.08050327282398939,-0.13280617399141192,-0.8295349078252912,-0.9898826023563743,-0.7942025889642537,0.31531552970409393,0.7576295328326523,0.8450159672647715,0.3142684269696474,0.7671856312081218,-0.5195554750971496,0.07798299379646778,0.44239815743640065,0.4922442501410842,-0.4321474125608802,0.6507207504473627,-0.7364407004788518,0.404857587069273,-0.4701227708719671,-0.39926138427108526,-0.24551437329500914,-0.2514883424155414,0.16964701423421502,-0.6153821917250752,0.899023384321481,0.21973944688215852,-0.4745423630811274,-0.9288377608172596,0.5394003060646355,0.11963814636692405,-0.9179517654702067,0.6063467240892351,-0.696616421919316,0.7074509412050247,-0.8923056409694254,0.06459036469459534,-0.35255564376711845,0.45648616133257747,0.47413520654663444,-0.9843801115639508,0.170415626373142,0.1151327695697546,0.7231034305877984,0.35579849453642964,-0.6945582642219961,0.6341312229633331,-6.176484748721123e-05,0.4786707302555442,0.4689630544744432,0.7256345683708787,0.3183878376148641,-0.5216459194198251,-0.04439532896503806,-0.9166870722547174,-0.8218967178836465,0.936228129081428,-0.21709099365398288,0.9038479821756482,0.5946683706715703,-0.8484066012315452,0.5967029840685427,0.9165443419478834,-0.1415681391954422,0.7436584550887346,0.3880638019181788,-0.8471727119758725,0.03922406863421202,-0.95562655152753,-0.8557082349434495,-0.8183886143378913,0.03767283633351326,-0.2900540539994836,-0.3359242402948439,0.7685800441540778,-0.32368900906294584,-0.9365538358688354,0.7971014496870339,0.31590445805341005,0.7196615780703723,0.20807545399293303,0.47859425051137805,0.31528177857398987,-0.2481337608769536,-0.42344412859529257,0.32487709261476994,0.57570780813694,0.6918490021489561,-0.776679155882448,0.9235756541602314,0.5021529220975935,0.9049304588697851,-0.14349916949868202,0.013045694213360548,0.7322831298224628,-0.7062835935503244,-0.9219600507058203,-0.6246936684474349,-0.731902367901057,0.09685782017186284,0.3490109504200518,0.9074967601336539,0.11831300100311637,0.4642051225528121,-0.30130582861602306,-0.1756811854429543,0.19572318997234106,-0.9807602404616773,-0.935932862572372,-0.7470084852539003,-0.8866031202487648,-0.0813420545309782,-0.1893974458798766,0.5609868429601192,-0.5802115714177489,-0.5966904917731881,-0.42304882081225514,-0.016232087276875973,-0.22232761094346642,-0.421553174033761,0.8117239214479923,0.20895079569891095,-0.8889835551381111,-0.9619320305064321,0.01733948988839984,0.17760677309706807,0.5437059416435659,-0.2857372625730932,0.13096691947430372,-0.7394841588102281,-0.8668148131109774,-0.42917482927441597,0.8017205316573381,0.012338888831436634,0.5074288356117904,0.9654012466780841,-0.21881620958447456,-0.8242074348963797,0.6781046050600708,0.923118453938514,0.2558845723979175,-0.9469138379208744,-0.2316781161352992,0.7481201491318643,0.16581552848219872,0.05272543802857399,0.16003978718072176,0.12649210542440414,-0.7952277222648263,0.8365350151434541,-0.8938539642840624,-0.4889013539068401,0.05336698982864618,-0.44699389301240444,-0.14734001690521836,0.20028514554724097,0.7988218585960567,-0.3422390245832503,0.5969538022764027,-0.49269825825467706,0.25678778579458594,0.6785200820304453,0.05748363072052598,-0.4383495068177581,0.480923343449831,-0.29809693759307265,0.8551595718599856,0.29052882455289364,0.13920278754085302,-0.29953047446906567,0.6770328618586063,-0.6611323785036802,0.03838864807039499,-0.48704201029613614,0.3591429693624377,0.898723766207695,-0.49129374232143164,0.8332917336374521,-0.7090676673687994,0.5142357209697366,0.854499539360404,-0.9695466100238264,-0.022854107432067394,0.31224443716928363,-0.4757585506886244,-0.6305902171880007,-0.43726706923916936,0.13987952517345548,0.9817486498504877,-0.8374719591811299,-0.022741002961993217,-0.6610653810203075,-0.6210262468084693,-0.07807058561593294,-0.14540368085727096,-0.2666491665877402,0.5693585015833378,0.748642542399466,-0.1008451129309833,0.9369024750776589,0.7665305510163307,0.8070545755326748,0.10874273674562573,-0.17449452076107264,-0.0205369065515697,-0.9840590562671423,0.5578305316157639,-0.7324681039899588,0.6993848728016019,-0.48137746937572956,0.719009009655565,0.08794073201715946,0.28453465877100825,-0.4523901636712253,0.4150099139660597,-0.9730021604336798,-0.16802638582885265,0.9179012486711144,-0.4885969217866659,0.28057919163256884,-0.46050193440169096,-0.6230252869427204,-0.7891342304646969,0.1738318088464439,0.7367946864105761,0.9251234945841134,-0.6675891419872642,0.5657826405949891,0.9728698316030204,-0.4639576352201402,0.43640154879540205,-0.11569635709747672,-0.4745929199270904,0.5322719849646091,-0.25014539528638124,0.9474996631033719,0.6019845777191222,0.4677880257368088,0.7177866739220917,0.1984499841928482,-0.477381931617856,-0.7919602780602872,0.7016300805844367,-0.6322269146330655,-0.7754984628409147,-0.1096663293428719,0.27504424238577485,0.6297819153405726,-0.4022711287252605,-0.9996994421817362,-0.4884707476012409,-0.07928391546010971,0.39020959893241525,0.35882113175466657,-0.7246619127690792,-0.6505377911962569,0.26172502199187875,-0.20333570754155517,-0.6833712733350694,-0.132678740657866,-0.6217737123370171,0.29530548909679055,-0.9316378957591951,0.03381240973249078,-0.7055712905712426,-0.08543438604101539,0.10008839378133416,0.6819850141182542,-0.8915044334717095,-0.8390133795328438,0.8393545476719737,0.10143975261598825,-0.48932518158107996,0.1591102541424334,-0.41734569193795323,0.803326019551605,0.04335884936153889,0.41113861463963985,-0.7824278664775193,-0.06612021429464221,0.2628193744458258,0.08367433678358793,0.5392219903878868,0.5385708287358284,-0.6927416059188545,-0.03109228564426303,0.4731842614710331,0.44933262886479497,-0.9977548122406006,0.009999394416809082,0.7967519601806998,0.9154309150762856,-0.32546702260151505,0.31598221231251955,-0.4755058134905994,0.5736248688772321,0.19139398727566004,0.7811891934834421,-0.6800832883454859,0.3459764407016337,0.634404209908098,-0.6633051768876612,-0.7482682392001152,0.23238755902275443,0.25696107279509306,0.13649752410128713,0.6024177060462534,-0.4684047228656709,-0.4445737097412348,0.21731090126559138,0.10334405023604631,0.5232016607187688,0.21030752081423998,-0.9744298653677106,-0.43436488322913647,-0.4720614878460765,-0.5863414253108203,0.505881239194423,0.11477871146053076,0.623448459431529,0.5669595287181437,-0.5085817538201809,0.49407993629574776,-0.6313586351461709,0.6993800313211977,0.432566842995584,0.01740032574161887,-0.8328531445004046,-0.04514656728133559,0.36722750635817647,-0.047032634261995554,-0.9542243601754308,0.7292111720889807,0.3803209597244859,-0.45201721088960767,-0.4182537845335901,-0.7909116488881409,0.8541581337340176,0.6575903668999672,0.31753051606938243,-0.46742341155186296,0.4547783676534891,0.13292341912165284,0.51845299359411,-0.40601047268137336,-0.28953293757513165,-0.833865188062191,0.8099895715713501,0.25561843859031796,-0.5725847585126758,-0.6725841360166669,-0.7699734391644597,0.5148209948092699,0.4788364404812455,-0.6295506004244089,-0.12537469435483217,0.5908909668214619,-0.7256410783156753,-0.330601513851434,0.22766105318441987,0.3842592714354396,0.8328103017993271,-0.04868351249024272,-0.9640755755826831,-0.5723063130863011,0.19311428675428033,-0.16288552014157176,0.7773933568969369,-0.16829806379973888,-0.0037784408777952194,-0.7674657721072435,0.667521967086941,0.19254696648567915,-0.29099288396537304,0.3295156843960285,-0.7336103296838701,-0.6946208281442523,0.41772000724449754,-0.3119335640221834,0.6007542526349425,-0.16897119116038084,0.8308132784441113,-0.4936185050755739,0.2494698204100132,-0.40102561097592115,-0.4016376626677811,-0.3591624959371984,-0.9455005312338471,-0.48062946321442723,-0.016040137503296137,-0.8160796370357275,-0.3903994392603636,-0.2918830388225615,-0.46924708457663655,0.46394749684259295,-0.7837269152514637,0.009349341038614511,0.202673165127635,0.017034530639648438,-0.3547942200675607,-0.35639934334903955,-0.3509154776111245,0.6017750520259142,-0.8871060251258314,0.22797096706926823,-0.2201304747723043,-0.6056036902591586,-0.433711651712656,0.11824829038232565,0.7541613113135099,0.07359512941911817,0.531549661885947,0.9845849759876728,0.5381440054625273,-0.05682965088635683,-0.6137887174263597,0.06556534813717008,0.42933349404484034,-0.9490087195299566,0.505888108164072,0.9948176923207939,0.6696809912100434,-0.09018250182271004,0.22031562123447657,0.9687621244229376,-0.986616506241262,-0.5107883987948298,0.1700079869478941,0.06076744478195906,0.7286403952166438,0.13343821791931987,0.9414131552912295,-0.5176165695302188,-0.935829671099782,0.6603100108914077,-0.6197518487460911,-0.5094646331854165,-0.06706399517133832,0.7556418129242957,0.10334779182448983,-0.3974115839228034,-0.08123240433633327,0.8004013327881694,0.9202706096693873,-0.17456706101074815,-0.05598313873633742,-0.3956820433959365,0.4396320949308574,0.42764160921797156,0.8990570418536663,0.19219884695485234,0.15034486632794142,-0.4389702663756907,-0.07864875113591552,-0.900151954498142,-0.6046146093867719,-0.15602321363985538,0.13777946401387453,-0.7571444045752287,0.688184738624841,-0.1369249476119876,0.6701583182439208,0.7827545893378556,-0.3725300789810717,-0.9467227272689342,-0.5024062669835985,0.08775025000795722,0.7689072010107338,0.43875272991135716,0.7329176175408065,0.34087439673021436,0.9189344285987318,0.6157554513774812,-0.4958257582038641,-0.5740038524381816,0.4697855389676988,-0.3098726198077202,-0.8912348272278905,-0.4055747501552105,-0.8879091180860996,-0.8096873392350972,-0.6556742945685983,0.3052364559844136,-0.6291568274609745,0.676932206377387,0.6293717627413571,-0.5901064244098961,-0.5912015442736447,-0.6459200796671212,0.8384474124759436,-0.5828467514365911,-0.4987710495479405,0.350094651337713,-0.20239821262657642,-0.023654563818126917,0.41523704770952463,0.6407291004434228,0.33484532637521625,-0.9408399923704565,0.9265143885277212,0.6142936600372195,-0.052714661695063114,-0.02218529488891363,-0.9250139244832098,0.3123676963150501,-0.1960086482577026,-0.7337354812771082,0.4592077163979411,0.5692898542620242,0.40616854932159185,0.12641019467264414,0.8475049445405602,-0.5711981817148626,0.3629528791643679,-0.8993691001087427,-0.7127993241883814,-0.5585236330516636,-0.3338275644928217,0.8080381290055811,-0.8071289621293545,0.9226289703510702,0.9769218768924475,-0.06323822354897857,-0.35267426213249564,-0.48200347926467657,-0.6715007214806974,0.5866994024254382,-0.46057728538289666,-0.7729081180877984,-0.6411427794955671,-0.9300011470913887,-0.3361277552321553,-0.8650364703498781,0.8501199837774038,-0.48963344702497125,0.9775984892621636,-0.23280121944844723,0.6472851927392185,0.9235924216918647,-0.0068592410534620285,-0.06689923070371151,0.6556460349820554,-0.32291590236127377,0.39334920793771744,0.5426386874169111,0.8528818017803133,0.4256122261285782,0.47958800476044416,0.5955328713171184,0.8685124316252768,-0.5093164672143757,0.944691251963377,0.9734802176244557,-0.9442597720772028,0.681515010073781,0.08932397607713938,0.9096281980164349,0.47389752930030227,-0.9889983371831477,-0.312894438393414,-0.8780349465087056,-0.7643896476365626,-0.11684218607842922,0.8728241096250713,-0.6580789280124009,-0.659209007397294,0.10399517230689526,-0.26165698282420635,-0.7564010536298156,-0.8891996112652123,-0.48402501130476594,-0.16590370703488588,-0.650208571460098,-0.6856918912380934,0.5997028136625886,0.5748692555353045,0.24074543407186866,0.8060080800205469,0.9613982946611941,0.6116278860718012,0.5240030386485159,0.18654071865603328,-0.1650500176474452,0.8553580492734909,-0.6752771246246994,0.025183629244565964,-0.2717367075383663,-0.8589790882542729,-0.4018367724493146,-0.9366349461488426,0.21272545913234353,0.952911842148751,-0.4405857506208122,0.5720317498780787,-0.22952957823872566,-0.8797823372296989,-0.2154507846571505,0.9969984428025782,-0.13120866566896439,0.4111587875522673,0.8454197212122381,0.9067268655635417,-0.22112569911405444,0.7286948496475816,0.28386165481060743,0.11505632987245917,-0.4978919317945838,0.602983795106411,0.8111448381096125,0.3095420761965215,0.006001047790050507,-0.36969754938036203,-0.9036380783654749,-0.11763575440272689,0.24404623918235302,-0.8404778712429106,0.5975070758722723,-0.9429405508562922,-0.2233382328413427,-0.7559503293596208,-0.8671148051507771,0.16380226844921708,-0.12946994230151176,-0.9410467208363116,0.9332057097926736,0.08444232633337379,0.10022018617019057,0.8708247034810483,0.5609540147706866,0.8031584830023348,-0.20689918473362923,-0.3839879739098251,0.3767264001071453,0.8248034496791661,0.6748974877409637,-0.3889600704424083,-0.2218498671427369,-0.11027596471831203,-0.2933781025931239,0.12427352136000991,-0.26011543441563845,-0.9029593043960631,0.6455958494916558,-0.1999064413830638,-0.4618353983387351,-0.46209737891331315,-0.07429932476952672,-0.8735688105225563,-0.3778519667685032,0.5017304793000221,-0.9056421997956932,0.7384074227884412,-0.4435555231757462,0.2082752352580428,0.636930990498513,-0.9259717050008476,-0.6511641745455563,0.24783450923860073,-0.7306737438775599,0.6380854775197804,0.02349165314808488,-0.8116065757349133,-0.6148365987464786,-0.5474207350052893,-0.581647127866745,0.20391872245818377,0.09394956566393375,-0.9948543328791857,-0.674503109883517,-0.28181123454123735,-0.20705743972212076,-0.9083911147899926,0.4487513294443488,0.3620442319661379,0.9774345001205802,0.150690209120512,-0.4029557020403445,0.6466342606581748,-0.44045495009049773,-0.5001513683237135,0.4365383726544678,-0.2623763303272426,0.3393423459492624,0.9043981088325381,-0.6018142197281122,0.9411930246278644,0.7280666939914227,-0.6648211521096528,0.845364288892597,-0.31981517607346177,0.6221529762260616,0.5374865140765905,0.7314961347728968,0.3469634451903403,-0.2004375671967864,-0.5796013777144253,0.3874105713330209,0.5158169739879668,0.7509193364530802,0.8323246631771326,-0.7155860499478877,-0.9208210804499686,-0.3580094394274056,-0.7598168086260557,0.7534897872246802,0.9530009473673999,0.13386690896004438,0.2876114663667977,0.6538359886035323,0.9454502002336085,0.008864218834787607,0.8642622698098421,0.9871680638752878,0.9275608090683818,0.8374039139598608,-0.2632320486009121,-0.640800035558641,-0.6042614514008164,0.7507420419715345,0.13292846689000726,0.28667980758473277,0.2859457400627434,-0.894023182336241,0.5126413204707205,-0.6427275026217103,-0.18924508336931467,-0.2618619352579117,0.5623277770355344,-0.42412738455459476,0.10120177734643221,-0.0009169573895633221,0.8236362454481423,0.49941621348261833,0.14073168765753508,-0.7686976245604455,-0.47953347815200686,-0.2591089587658644,-0.6920095128007233,0.0030785477720201015,0.11774645280092955,0.2559055923484266,-0.8473141086287796,-0.8160529299639165,-0.24807668151333928,0.6725545790977776,-0.8523261738009751,-0.14470153767615557,0.8985305679962039,-0.4577828627079725,0.9620674438774586,-0.3965731645002961,0.380143073387444,-0.03410564735531807,0.5533240460790694,-0.9363136519677937,-0.4570860043168068,-0.7795114014297724,-0.02021293668076396,-0.13459814013913274,0.6488686939701438,-0.5385705935768783,0.987736594863236,-0.7642037309706211,0.32862061308696866,-0.7836699662730098,-0.9200281039811671,-0.4374794173054397,0.3276091213338077,-0.568455767352134,0.2393285445868969,-0.6996068595908582,-0.4528826391324401,0.9311001533642411,-0.009704244788736105,0.6341930190101266,-0.9539081696420908,0.9121871977113187,-0.4336274294182658,-0.052644350565969944,-0.785786890424788,-0.9615847426466644,-0.5723761287517846,-0.4152813353575766,-0.9256056756712496,0.47897641314193606,0.2685559601522982,-0.4291559960693121,0.5893070036545396,-0.5205792193301022,0.41520846355706453,-0.8884146944619715,-0.07570813642814755,-0.14915877394378185,0.9873145506717265,-0.7126672263257205,-0.8134035714901984,0.7851113951765001,-0.820575887337327,-0.1121368408203125,-0.3416976141743362,0.6737714693881571,-0.12042089411988854,0.6754695656709373,0.2809523483738303,-0.3789735855534673,-0.6159704769961536,-0.43299610121175647,-0.5431489595212042,-0.3582509974949062,-0.03403349220752716,0.153711739461869,0.774806440807879,0.8609827407635748,0.46890251617878675,0.637301673181355,-0.22073280811309814,0.8909556064754725,-0.0030056405812501907,-0.48207318410277367,0.2416799571365118,-0.805526209063828,0.39758709724992514,0.6367109240964055,-0.3189419941045344,-0.9039270193316042,-0.02614800725132227,-0.6282211076468229,0.7175807245075703,-0.7266669720411301,0.17119593545794487,0.13867265218868852,0.8423389354720712,0.6350153191015124,-0.6622590227052569,0.8678972385823727,0.5535226659849286,0.956985323689878,0.27319808723405004,-0.5796885802410543,-0.850172730628401,0.08438288839533925,0.21900608018040657,-0.36092097917571664,0.3907623738050461,-0.7979872627183795,-0.3157117492519319,-0.9424847201444209,-0.5319901327602565,-0.8639616947621107,0.8924793279729784,0.28046393813565373,-0.25991288386285305,-0.8338373675942421,0.874680417124182,-0.5756800486706197,-0.08557339292019606,0.30598568357527256,0.11833412572741508,0.5086855930276215,-0.40651538223028183,-0.8038167697377503,0.1841967198997736,0.8368583982810378,-0.8980421503074467,-0.9401090829633176,-0.8624844257719815,-0.6228659222833812,-0.581261161249131,0.02522199461236596,0.17664245143532753,-0.6496135252527893,0.07001469936221838,0.8413541219197214,0.11269426811486483,0.20596493873745203,-0.42200479097664356,0.5828329366631806,-0.4159250012598932,0.5623212307691574,-0.7939649717882276,0.4761785320006311,0.7822056929580867,-0.4258206761442125,-0.035212593618780375,0.3818554561585188,-0.3981958329677582,-0.959598280955106,-0.15444662841036916,0.486758247949183,-0.3396413871087134,-0.3048187610693276,-0.7428511278703809,0.6324431044049561,0.13294170144945383,0.9321148972958326,-0.4436392462812364,0.32669158885255456,-0.7122344565577805,-0.0726432828232646,-0.9360809135250747,0.6234884220175445,0.005126456264406443,0.086810237262398,0.809921604115516,-0.990258218254894,-0.6378651447594166,0.8916691141203046,-0.7473129718564451,-0.7101588468067348,-0.8106527831405401,-0.03927850816398859,0.5140309971757233,0.953412823844701,-0.5951632973738015,-0.012863656971603632,-0.6566774444654584,0.9129604585468769,-0.9608574155718088,0.15436016954481602,-0.18420199863612652,0.29101495537906885,-0.02303743688389659,-0.04752947483211756,-0.3691992871463299,0.33794966898858547,-0.4217147286981344,-0.14888587314635515,0.4162442609667778,-0.997705603018403,-0.3491846155375242,0.4305153815075755,0.26832688553258777,0.7323690471239388,0.22184919705614448,-0.6956128785386682,0.8287296951748431,0.8157001840882003,-0.7714481502771378,0.7482216223143041,-0.7374869217164814,0.08979462506249547,-0.4399774931371212,-0.2573438510298729,0.7647453141398728,0.9062698939815164,-0.08978675259277225,0.8327047531493008,-0.9344457788392901,0.8262335355393589,-0.96196642331779,0.6953160488046706,-0.3282795208506286,-0.9909601281397045,0.6376041667535901,-0.22515220334753394,0.6959262336604297,0.534686990082264,0.12076633516699076,0.3140978286974132,0.35896770702674985,-0.9034519186243415,0.4677553651854396,-0.7245053933002055,-0.2213468994013965,-0.22205547988414764,-0.7727837366983294,-0.786256967112422,0.1294350754469633,0.7991891661658883,0.2459467095322907,-0.5992403863929212,-0.1690132231451571,-0.5095742004923522,-0.6253454545512795,-0.4630002868361771,-0.8794132107868791,0.0844131289049983,-0.35922356555238366,0.6264940369874239,-0.017060296144336462,0.46607947815209627,0.08054104028269649,-0.1980108730494976,0.2953436388634145,-0.36589432694017887,0.6917111622169614,-0.7206268012523651,0.055619871243834496,-0.590317911002785,-0.24287320440635085,0.9747475003823638,-0.6616226993501186,-0.7378565771505237,-0.319056220818311,0.7887741313315928,-0.40268202358856797,0.04566243104636669,-0.6567563340067863,-0.7983587686903775,-0.6417342098429799,-0.4105386580340564,-0.6874940758571029,0.4761565634980798,-0.08167526219040155,0.3753925762139261,0.6715077399276197,0.047190390061587095,0.08231041487306356,-0.6511743292212486,0.8966509480960667,0.5986208114773035,-0.6507112230174243,0.22294132132083178,-0.4820282398723066,0.844534176401794,0.8730367105454206,0.6674837931059301,0.06894594896584749,0.33958894526585937,0.770750246476382,-0.05352013697847724,-0.5470490986481309,0.7687104968354106,-0.4289045105688274,0.7717194012366235,-0.11811270425096154,0.1832555620931089,-0.37903662072494626,-0.008023673668503761,-0.3999984795227647,0.05476363096386194,0.8480832357890904,-0.6537999184802175,-0.7593068773858249,-0.24444650765508413,0.10781857697293162,0.396748227532953,-0.6737152831628919,0.5078760930337012,-0.07492276281118393,-0.18203137256205082,-0.5411701085977256,-0.7501927302218974,-0.6887020263820887,0.5121204941533506,0.770832596346736,-0.9672802467830479,-0.18184523610398173,-0.3013478461652994,0.5327261425554752,0.442339139059186,-0.7629964300431311,-0.3580208830535412,0.11732876813039184,-0.11615735152736306,-0.7970172832719982,-0.9522790443152189,-0.31251022359356284,-0.02499354165047407,-0.5991569519974291,-0.8168204389512539,-0.5473571019247174,0.5268086208961904,-0.9800151195377111,0.4457470364868641,0.20152323739603162,0.6559896697290242,-0.8789184857159853,-0.5890954853966832,0.6217509103007615,-0.17016690457239747,-0.49995977198705077,-0.4036720562726259,-0.4829529784619808,-0.5744260437786579,-0.6964845294132829,0.20837166579440236,-0.30569344153627753,-0.07207298884168267,0.16872621048241854,-0.4914372661150992,0.07172200037166476,0.5399405211210251,0.3667494533583522,-0.7943838257342577,-0.43083406146615744,-0.9008662346750498,0.5167036973871291,0.9779451391659677,-0.8460030369460583,0.9803019450046122,0.32344693038612604,-0.7208122913725674,-0.10225008940324187,-0.8806534572504461,-0.24692278867587447,-0.28611547872424126,-0.9047357393428683,-0.7973124948330224,-0.9613677700981498,0.685692273080349,-0.5359166897833347,-0.2698545828461647,0.4543566880747676,-0.04161601047962904,-0.6220748745836318,-0.04547479236498475,-0.7473051273263991,0.6144440327771008,0.025176143273711205,0.4027691497467458,0.9989556157961488,0.9052899139933288,0.012020866852253675,-0.36195372650399804,0.3073010924272239,-0.6731490432284772,0.41243323078379035,-0.44420971954241395,0.34888198878616095,0.6159780393354595,0.5557118635624647,-0.24932267144322395,-0.4998477487824857,0.1955805798061192,-0.2453769468702376,0.826265383977443,-0.7898416207171977,-0.0054183234460651875,-0.8607898699119687,-0.8049709685146809,-0.18984455429017544,-0.8366215289570391,-0.8428183309733868,0.17673147283494473,0.6318940869532526,0.11924939090386033,0.031268053222447634,0.32080443296581507,-0.6782848495058715,-0.11882625194266438,0.5782256340608001,-0.6321901483461261,-0.5157066164538264,-0.9491364592686296,0.8447421123273671,0.6705926391296089,-0.4737694491632283,0.7600914551876485,-0.5878468323498964,-0.8209981820546091,0.002695048227906227,-0.2529771183617413,0.20054148929193616,0.7099321740679443,0.9584926781244576,0.982225030194968,-0.3409874443896115,0.8444040142931044,0.8949421071447432,0.8326965593732893,-0.9595241667702794,0.8987298556603491,0.9959678128361702,0.13796311616897583,-0.4375950242392719,0.8724665860645473,-0.4209045716561377,-0.2229446992278099,-0.8802589406259358,0.8683604910038412,-0.4139602957293391,-0.8237457755021751,0.5731883500702679,0.07592135667800903,0.06396167352795601,0.6598298284225166,-0.2157197273336351,-0.4724278864450753,0.20493414159864187,0.6687249890528619,0.31224831845611334,-0.8088468820787966,0.7345165447331965,0.03041248209774494,0.7597879660315812,0.4716016664169729,-0.9990845234133303,-0.18726457096636295,-0.2530715470202267,0.30956801772117615,0.632426933851093,0.7941883993335068,-0.8091297917999327,0.3493128172121942,0.10922454157844186,-0.3449480617418885,-0.42930212896317244,-0.43050522450357676,-0.5417318441905081,0.08029453735798597,0.7516640750691295,0.047568283043801785,0.29782186076045036,0.914214086253196,-0.18755834829062223,-0.952743268571794,-0.08031068136915565,-0.9518570313230157,0.6747217159718275,0.3237139843404293,0.185257226228714,-0.25256087025627494,-0.5588566781952977,0.7034805603325367,0.43326110020279884,0.043435745406895876,0.2795218154788017,-0.08297978341579437,0.11010710056871176,-0.10283206403255463,-0.029667994938790798,-0.8161262404173613,0.11300536058843136,-0.16712668864056468,0.5729328184388578,0.5287574133835733,-0.39684870233759284,-0.14325720071792603,-0.9755875105038285,-0.9275087593123317,-0.0778724355623126,0.26678802352398634,-0.8892096909694374,-0.6810728930868208,0.10272899782285094,-0.985836167819798,-0.6909388294443488,0.15699910512194037,-0.9420176343992352,-0.1705790637061,0.1675508078187704,0.3655126974917948,-0.21834308514371514,-0.8924310975708067,-0.08770478703081608,0.1324125207029283,-0.9107041442766786,-0.28710796730592847,-0.18341077351942658,-0.5863586300984025,0.16292936634272337,-0.018590842373669147,-0.38263254379853606,0.7922337679192424,0.5630686837248504,0.254148559179157,-0.32553465757519007,0.2885218090377748,0.4793795165605843,-0.7162083368748426,-0.6356100048869848,0.5651698634028435,-0.7574452920816839,-0.7034354130737484,0.09645129879936576,0.50242291809991,-0.9947264418005943,0.8392887189984322,0.44173594983294606,0.29997778311371803,0.771070369053632,-0.6937130242586136,-0.6421169047243893,0.31590860430151224,-0.45700922701507807,-0.04766795318573713,-0.5484849652275443,0.4760330109857023,-0.2816571490839124,-0.3040252020582557,-0.7738209660165012,0.5794224780984223,-0.9709264952689409,0.03486265940591693,-0.689038974698633,0.15456352941691875,-0.0742856808938086,-0.43689014203846455,0.9891453292220831,0.13851490151137114,-0.9153904318809509,0.9512019706889987,-0.9270249507389963,-0.12735473085194826,0.475499777123332,-0.6689520920626819,0.024736556690186262,-0.33033128129318357,0.3575764298439026,-0.3670000294223428,-0.09604334039613605,-0.12347145937383175,-0.1038647098466754,0.7657558787614107,-0.14252879144623876,-0.9720098641701043,0.9923725281842053,0.15612337784841657,0.02698368951678276,0.42248139157891273,0.10328554920852184,-0.6944604041054845,0.9696939773857594,0.6833946104161441,0.5817138403654099,-0.9560627466998994,0.15373941510915756,-0.8001066674478352,-0.9300983394496143,-0.9388848263770342,-0.028952949214726686,0.6700856070965528,-0.6317746890708804,-0.3939126720651984,0.6365536330267787,0.5878467969596386,0.7888100347481668,-0.28004816407337785,0.35621759202331305,-0.5429145451635122,0.4598478958941996,0.9750195168890059,0.7771197506226599,0.14530343562364578,0.6060706079006195,0.02283796900883317,-0.8425823394209146,0.5369224073365331,0.2887742188759148,0.3411124930717051,0.6846447037532926,-0.5726747089065611,0.8767559649422765,0.9218712374567986,-0.3248737631365657,0.6239373791031539,0.9323443342000246,0.46398612670600414,0.49228467838838696,0.37112113600596786,-0.9391850414685905,-0.9201726140454412,0.7866050326265395,-0.8485192684456706,-0.9678875110112131,0.32358982088044286,-0.21526068774983287,-0.2296995404176414,0.33405448170378804,-0.34532495541498065,0.8478915118612349,0.9473819895647466,-0.9256312483921647,0.03728333720937371,0.2031426103785634,-0.46639772364869714,-0.27536474354565144,-0.8253455520607531,0.7925818511284888,0.9655129564926028,-0.29447248158976436,-0.6067060735076666,0.537343299947679,0.9354537418112159,0.4771389211528003,-0.4839390362612903,0.30947788432240486,-0.6438957033678889,-0.14761986583471298,0.5735424035228789,-0.5259360396303236,-0.7934923972934484,0.19217916764318943,-0.6729338471777737,0.8225191845558584,0.24511729925870895,-0.5098216328769922,-0.7648942633531988,0.2121687731705606,-0.3389146509580314,0.10749583644792438,-0.35305279679596424,-0.9154411652125418,-0.6936037940904498,0.5640681288205087,-0.7860139305703342,-0.09476132411509752,-0.5048590712249279,-0.7501824134960771,0.3161520124413073,-0.4176479456946254,-0.6107254838570952,0.8358121025376022,0.039551152382045984,-0.19501865841448307,0.7394724804908037,0.3465608758851886,-0.8191116438247263,0.010007694363594055,0.5205829311162233,-0.3669635960832238,0.835354340262711,-0.44354868633672595,-0.02625860832631588,-0.8382698614150286,-0.9670613836497068,-0.3466901071369648,0.257103324867785,0.3459070841781795,0.051621655467897654,-0.974932455457747,-0.8219448160380125,-0.10033056186512113,-0.17906719679012895,0.4225188437849283,0.16446068603545427,0.7285766778513789,-0.835162022151053,0.9125809338875115,0.40504342038184404,0.6921245995908976,-0.2967192428186536,-0.6243796348571777,0.4674563594162464,0.09441306814551353,0.0918337688781321,-0.6490625045262277,0.5545484046451747,0.8734277868643403,0.6597794410772622,0.09316910989582539,-0.3289409657008946,-0.766396957449615,0.8930370393209159,-0.0378777040168643,0.3121962761506438,0.8818974844180048,-0.6346411313861609,0.5055497474968433,0.7815424208529294,0.3682363536208868,-0.415013924241066,0.49915194138884544,0.954270307905972,0.7956441720016301,-0.11671911971643567,-0.8410735349170864,-0.29908815352246165,0.58179946616292,-0.7751219100318849,0.22410310013219714,-0.2909151245839894,-0.8909160899929702,0.8606724850833416,-0.3282918897457421,-0.6346658947877586,0.5463389246724546,0.008249900303781033,0.8651533951051533,0.7889681975357234,0.2515455149114132,-0.1741390316747129,-0.2529145013540983,-0.9745909213088453,-0.6140897213481367,-0.07232547970488667,-0.5463479831814766,-0.4468434783630073,0.8432637322694063,-0.011742602568119764,-0.3161200135946274,0.8372364407405257,0.5133018200285733,0.9922423916868865,-0.40296056075021625,-0.9034287333488464,0.133675548247993,-0.18715193727985024,-0.24092859216034412,-0.9436450563371181,0.14682279154658318,0.652290478348732,0.3346376079134643,-0.5019240719266236,-0.2997837015427649,0.9316061749123037,0.07473614579066634,0.1344797615893185,0.9584052329882979,0.5396111039444804,-0.845668172929436,0.3351068855263293,0.17090156534686685,0.047332622576504946,0.5919684222899377,0.8435724512673914,-0.7805080176331103,-0.4425910380668938,0.6445527300238609,0.14078490249812603,0.9147866135463119,-0.03456631815060973,-6.7202840000391e-05,0.01369139738380909,0.7680541034787893,0.007126431446522474,-0.015216820873320103,0.13391322502866387,0.437178788240999,-0.3146222308278084,0.765578921418637,0.29935425613075495,0.5451048533432186,0.2910807332955301,0.18347973842173815,-0.48605101788416505,0.6147233038209379,0.2004267843440175,0.27008327515795827,0.5100144827738404,-0.8115805964916945,0.890840913169086,0.6268138494342566,-0.6681870482861996,0.9096191562712193,0.7803609729744494,0.09069380117580295,0.4336826712824404,0.6664811596274376,0.17265184503048658,0.9567186436615884,0.8777731056325138,0.2564806202426553,-0.6964064198546112,-0.16771518299356103,0.5417493749409914,-0.9734921734780073,0.640132793225348,0.8028831519186497,0.8442330495454371,-0.24178920965641737,-0.11045245314016938,0.9197099702432752,-0.3414506306871772,0.1746367933228612,0.544154457282275,-0.6033767736516893,-0.7697857855819166,-0.04624795448035002,-0.20920383231714368,0.7513712635263801,-0.9622127152979374,5.9025827795267105e-05,0.19672415172681212,0.3308901055715978,0.6742191673256457,0.3650720245204866,-0.5059224055148661,-0.783680691383779,-0.15736787486821413,0.7533458373509347,-0.20183793688192964,0.7322285934351385,-0.8704594098962843,-0.645790389738977,-0.05886150570586324,0.3445895086042583,0.34015541337430477,0.5675205583684146,-0.946844186168164,0.4018517890945077,-0.5481057083234191,0.8127112011425197,-0.06873536901548505,-0.8569757137447596,-0.899596581235528,-0.7499601156450808,0.03966873371973634,-0.376601604744792,0.08348879218101501,0.5716915279626846,0.7475651651620865,0.11024330370128155,0.6262259921059012,-0.1820869199000299,0.802887081168592,0.18840238032862544,0.5033391085453331,0.14966562949120998,-0.8255057823844254,0.16138906124979258,0.22670320561155677,-0.19696161104366183,-0.15584753174334764,-0.4057889604009688,0.22996911546215415,0.4634065432474017,0.5006750579923391,0.9315968160517514,-0.5975427166558802,-0.9063167655840516,0.8922282923012972,0.2713683098554611,0.11516937566921115,-0.5431711752898991,-0.8013831181451678,-0.27872075978666544,-0.34749355306848884,-0.4436509609222412,0.4068352170288563,0.7235528063029051,-0.6350478031672537,-0.9865056909620762,0.01293995138257742,-0.5194454765878618,0.9977842601947486,-0.4568800227716565,-0.12931035878136754,0.23093068366870284,0.055418857373297215,-0.15641271602362394,0.033397800754755735,-0.4248464982956648,-0.30737616727128625,-0.4420277737081051,-0.8914913684129715,-0.40957316802814603,0.25014146510511637,-0.700739526655525,0.589788218960166,-0.7662703357636929,-0.6059026746079326,0.1722366064786911,-0.665173854213208,0.2548413332551718,-0.29375123837962747,-0.7749192863702774,0.43047246616333723,-0.031073353718966246,0.9238804681226611,-0.4886975521221757,-0.9145187926478684,0.466181511990726,0.39493605261668563,0.5289534009061754,0.03197529353201389,0.7570282169617712,0.20925312209874392,0.17203121818602085,-0.007004022132605314,0.7632658150978386,-0.9653628217056394,-0.9209029697813094,-0.878152173012495,-0.10833511874079704,-0.48402027785778046,-0.8631176445633173,0.9641444711014628,0.31360352877527475,0.15348142851144075,0.5649706977419555,-0.32960936101153493,0.9193711928091943,-0.06339121097698808,0.6812044242396951,-0.8055837214924395,-0.5480983224697411,-0.6867688735947013,0.8845462431199849,-0.07480905717238784,-0.4399345167912543,-0.09677507216110826,0.5643908116035163,-0.4949530134908855,-0.20331953605636954,-0.7656350000761449,-0.7470964179374278,-0.67353519750759,0.5207898844964802,0.5482461075298488,-0.9719525864347816,-0.18148289248347282,0.2558580138720572,-0.35052739828824997,-0.03668022295460105,0.31365333031862974,-0.13976642722263932,-0.11053063860163093,0.8102039601653814,0.857557584065944,0.9626679238863289,-0.5780849801376462,0.5783984274603426,-0.9104478834196925,-0.24132191250100732,0.9984404845163226,0.073195431381464,-0.2509872643277049,-0.31990810530260205,0.24778650142252445,-0.8088614465668797,-0.6855604378506541,0.44420743687078357,-0.27779189590364695,0.3992384662851691,0.45766837941482663,-0.7185541880317032,0.3174885958433151,-0.24202171573415399,0.035414616111665964,0.9406568836420774,0.19800763996317983,-0.35143961664289236,0.8245757902041078,0.744867688510567,0.6312052612192929,-0.0231281453743577,0.24454633006826043,0.4991509821265936,-0.6649294598028064,-0.4753034436143935,-0.2049544216133654,0.19503629999235272,0.9862079098820686,0.9349671364761889,0.06325726676732302,0.9253524034284055,0.6387565108016133,0.7377367112785578,-0.1387656219303608,0.10327723529189825,-0.41289036348462105,0.6385638010688126,0.3028201926499605,0.6214559879153967,0.03480977704748511,0.6596402958966792,0.23682184843346477,0.25612994469702244,-0.29566575586795807,0.4569407543167472,0.10330614913254976,0.3807934117503464,0.3887475337833166,-0.6027997103519738,0.3688453044742346,0.5228388411924243,0.5358311622403562,-0.27354452619329095,-0.6120443069376051,-0.262082377448678,-0.3014001320116222,0.11387394461780787,-0.056339769158512354,0.029933902900666,-0.754988475702703,0.5275310352444649,0.5989007689058781,0.6543493755161762,0.47576103918254375,-0.5565298357978463,-0.7790609798394144,0.16641155257821083,0.4911764492280781,0.654232052154839,-0.7153962338343263,-0.6229882794432342,-0.3250350351445377,0.7479232484474778,-0.8996507208794355,0.4350981810130179,0.9279115763492882,-0.28896637773141265,0.9455536822788417,0.14545543026179075,-0.41959432605654,-0.5896322424523532,0.8192435191012919,0.9142012028023601,0.8417774676345289,0.70842026732862,0.047683460637927055,0.46929513895884156,0.5092150452546775,-0.4276983458548784,0.02632947824895382,-0.27952869050204754,0.7229002523235977,0.7762515237554908,0.9316195878200233,-0.01508881151676178,-0.46787227410823107,-0.9369099056348205,0.7927856096066535,-0.9943962804973125,-0.4269788172096014,0.7377013778313994,0.9518615575507283,0.9879758860915899,0.8466644547879696,0.3148659593425691,0.5929846321232617,0.7319882130250335,0.9449498732574284,0.4578794399276376,0.9058171426877379,-0.5242260238155723,0.9226207942701876,-0.8067352045327425,0.5564611405134201,0.4554833397269249,-0.15356045542284846,-0.8973843110725284,0.4737154431641102,-0.8709717742167413,0.0008798912167549133,0.43515736050903797,0.440596220549196,0.2400006023235619,-0.3639891054481268,-0.3404605449177325,0.6132616228424013,0.02222947357222438,-0.313775644171983,-0.5255817542783916,-0.2731115585193038,-0.6378572583198547,-0.8148621153086424,-0.03521637013182044,0.2515886053442955,0.9235038622282445,0.003434548620134592,-0.6398330046795309,-0.0714459465816617,0.5125043019652367,0.8099200534634292,0.28966703824698925,0.017701811157166958,0.37040867004543543,-0.965731306001544,-0.05344065325334668,-0.8622455610893667,0.20279833860695362,0.09054421214386821,-0.2891867798753083,-0.9222673182375729,0.9249188010580838,-0.9777222136035562,0.9020489323884249,0.9937386568635702,-0.12135099060833454,-0.336959071457386,0.16573362378403544,0.09833407960832119,-0.08923493605107069,-0.2843890395015478,-0.7328670374117792,-0.35913111409172416,0.8690758473239839,-0.873407666105777,0.9297116473317146,0.24430330330505967,-0.41678355215117335,-0.04752408806234598,-0.03525907592847943,0.35140783758834004,0.08521249331533909,-0.46707655768841505,0.019122572150081396,0.6350091211497784,0.20333373127505183,-0.2646931787021458,0.39471261063590646,0.9849603110924363,0.8299042000435293,-0.24293679557740688,-0.7169545274227858,0.10432257177308202,0.5245696306228638,-0.2632445143535733,-0.8296808986924589,0.449459973257035,-0.10363585269078612,-0.0199126610532403,-0.3143700063228607,-0.4082052200101316,-0.7928148629143834,-0.6310586356557906,0.6462303455919027,0.9719590609893203,-0.13573365239426494,-0.941493658348918,-0.3174542491324246,0.9129681489430368,0.2873417786322534,0.38811569521203637,0.5964615917764604,0.29114005994051695,0.9286442059092224,-0.9769859383814037,-0.41016029100865126,-0.649577007163316,0.25668917037546635,-0.07662593200802803,0.19257950922474265,0.8342305100522935,-0.09482467547059059,-0.8744450639933348,0.8502505091018975,-0.9008121201768517,-0.10026138788089156,0.36481005558744073,-0.35250268364325166,0.8880579518154263,-0.6762067452073097,-0.19596550287678838,-0.5387590643949807,0.6806063344702125,0.9608038798905909,0.7769380658864975,0.7184699694626033,-0.8824028261005878,0.9419001215137541,-0.7509206063114107,-0.39651915105059743,-0.136827833019197,-0.5224964497610927,-0.08408128563314676,-0.632927758153528,0.2363096592016518,0.6947091231122613,-0.3255897965282202,0.279124922119081,-0.026705925352871418,0.6470850710757077,-0.19714733911678195,0.9535736106336117,0.9317638739012182,0.9020780613645911,0.5079187392257154,-0.7397435964085162,-0.4689195160754025,0.8087706048972905,-0.24124701833352447,-0.9825138607993722,0.9715369893237948,-0.07977990247309208,-0.32493930123746395,-0.7556420564651489,0.22235616575926542,-0.3033298896625638,-0.16378536028787494,0.8833350553177297,-0.24222135776653886,-0.052713410928845406,0.47103229723870754,-0.5786105543375015,0.7413969370536506,-0.34518762957304716,-0.6415592697449028,0.9217214356176555,0.4700982659123838,0.4599137860350311,0.5727543686516583,0.16586709208786488,0.998827843926847,0.7492137723602355,0.7453030468896031,-0.637992209289223,0.43468167865648866,0.6507616462185979,0.7207211726345122,0.7849975149147213,0.0686971778050065,0.8151836441829801,-0.8518286570906639,0.6997674824669957,0.5652110460214317,0.6498720650561154,0.8529732525348663,0.9650253877043724,-0.5098460237495601,-0.7922317674383521,-0.5801556287333369,-0.27256683306768537,-0.2851759190671146,-0.9192971289157867,-0.08693841844797134,-0.16280070459470153,-0.8605491737835109,-0.24967949511483312,0.17602720810100436,0.33667541248723865,0.767929820343852,0.31631134543567896,0.22140464559197426,0.21383907366544008,-0.3968185563571751,0.30745092453435063,-0.5846167909912765,0.5134937260299921,-0.18656707275658846,-0.5686729620210826,-0.508740202523768,0.13360695075243711,0.6468801493756473,-0.7705047042109072,0.9210712825879455,-0.42490687733516097,0.32106990553438663,0.1628222051076591,-0.2197963483631611,0.6263740672729909,-0.8019643002189696,-0.6800523945130408,-0.04265493992716074,0.12748535349965096,0.524471546523273,-0.6355222831480205,0.5349932578392327,0.46239417186006904,-0.6125383046455681,-0.1791974282823503,-0.7393404962494969,-0.4997911094687879,0.02328291954472661,-0.35466093430295587,0.8106568641960621,-0.4734650179743767,-0.2943273074924946,-0.29092758288607,0.10459357872605324,-0.11274702567607164,-0.1904601682908833,-0.39460214180871844,-0.18141968734562397,-0.2565528582781553,0.03247728804126382,0.04464825941249728,-0.9834717432968318,0.514872572850436,0.012601645663380623,0.8036753740161657,0.518509816378355,-0.3796256226487458,0.7093749684281647,-0.10468667140230536,0.4917892958037555,-0.35907619167119265,0.7488424042239785,-0.2465524822473526,-0.9027345599606633,0.8393919169902802,-0.7879351172596216,0.5270143426023424,-0.993939618114382,0.7114247349090874,0.6705607771873474,-0.9418882844038308,-0.13881092378869653,0.7247893447056413,-0.5771527071483433,-0.25569844245910645,-0.9257142511196434,-0.8332933005876839,-0.3458639862947166,0.38476586574688554,-0.7188327647745609,-0.8995617488399148,-0.2490623937919736,0.5488986168056726,-0.575591036118567,-0.29787787422537804,0.7614090009592474,-0.7169858897104859,-0.03141241054981947,-0.2482736073434353,-0.6355232349596918,-0.3703908217139542,-0.8113981895148754,0.2950711972080171,0.043060197960585356,-0.9468280901201069,-0.14723795698955655,0.23911649454385042,0.43137134797871113,-0.4150323150679469,-0.239482912234962,-0.9914510454982519,0.7990761063992977,-0.1440843720920384,0.42624975740909576,-0.7158170943148434,-0.11580791790038347,0.12943936232477427,-0.40431270375847816,-0.6205015289597213,0.7668275651521981,0.9946844605728984,-0.662339311093092,0.995222129393369,0.5955939409323037,0.31965650152415037,0.21283231768757105,-0.40399443730711937,-0.9087993302382529,0.7236027959734201,0.48409358132630587,-0.3230527928099036,-0.6405549212358892,0.0669029881246388,0.18066960060968995,0.28368777595460415,-0.9249942442402244,-0.6701353215612471,0.2328308280557394,-0.884699490852654,0.9387046000920236,0.6632823222316802,-0.030178396496921778,0.38571115070953965,-0.3451493689790368,0.02063512522727251,0.033555695321410894,0.4609043491072953,0.1001848173327744,-0.6934789684601128,0.14340579230338335,0.8915910176001489,0.5045560016296804,0.08188434643670917,-0.573179769795388,0.6061805956996977,-0.4057402857579291,-0.14652689825743437,0.7424033530987799,-0.34089828515425324,0.1198868602514267,0.628223470877856,-0.34777429420500994,0.010493131820112467,-0.0983512457460165,0.19724548421800137,0.42727727768942714,-0.28430327074602246,-0.24735797476023436,0.9202219154685736,-0.13640842167660594,-0.8870825837366283,-0.5989623051136732,-0.036582053638994694,-0.5956250256858766,0.9223416643217206,-0.19316023914143443,-0.09518928593024611,-0.24124557431787252,0.037760185077786446,0.9357855161651969,0.051669181790202856,-0.9137263684533536,-0.41770030464977026,0.8532828507013619,0.5445122537203133,-0.1417307830415666,-0.03123388532549143,0.7379532190971076,-0.06912557408213615,-0.3335893782787025,0.2038224646821618,-0.5259131956845522,-0.014061878435313702,0.21976474206894636,-0.21043342212215066,0.6944148950278759,-0.45841790549457073,0.892061501275748,0.6204961119219661,0.7799074938520789,0.3623771886341274,0.8797415494918823,-0.2590355374850333,0.9313576528802514,0.35634941048920155,0.056148618925362825,-0.35949590476229787,0.30418650759384036,0.8729664306156337,0.4530061688274145,0.9518220578320324,-0.9427349669858813,-0.3037985544651747,0.4644282744266093,-0.6722257463261485,-0.0037646363489329815,0.794074788223952,-0.7279283604584634,0.14179375814273953,-0.7034917343407869,0.38078496931120753,0.3422416574321687,0.7137203011661768,0.31343998527154326,-0.4268176965415478,-0.52761762868613,-0.7774466061964631,-0.0533531503751874,0.8026517713442445,-0.5628178338520229,-0.16357997339218855,0.210572125390172,-0.44019723823294044,-0.9032794232480228,0.7974835359491408,-0.2260676622390747,0.31600196938961744,-0.05229979055002332,-0.808758411090821,-0.5483471001498401,-0.9704579687677324,0.5029718321748078,0.8782604825682938,0.33172550704330206,-0.2335935952141881,0.9353901837021112,-0.907154100947082,0.3311683055944741,0.8416187902912498,0.030552851036190987,0.08158903336152434,0.5938761425204575,-0.9071440063416958,0.6789507223293185,0.2432343838736415,0.13390303263440728,0.9639087952673435,0.8248672350309789,0.22902013128623366,0.46182660572230816,0.5722230575047433,0.23721093870699406,-0.832549115177244,-0.2284059962257743,0.22487635351717472,0.1527538150548935,0.8570747128687799,-0.4218038567341864,0.6504366463050246,0.9410093841142952,-0.10724022472277284,0.2887737504206598,-0.06029304442927241,0.6379313375800848,-0.8994856160134077,-0.5543287773616612,-0.48170130141079426,0.3939369488507509,0.8779579005204141,0.8589237332344055,-0.7528185239061713,0.48260172829031944,0.4081717813387513,0.31550282752141356,0.6217111689038575,0.15943040372803807,0.13395784003660083,0.5925847832113504,-0.34839789755642414,0.09684226056560874,0.7614543722011149,-0.6991667319089174,0.9117496670223773,0.20689687179401517,0.8579027983359993,-0.28584907995536923,0.8145637991838157,-0.9765424402430654,-0.8145463396795094,0.5888166483491659,0.3506515398621559,0.32750651985406876,0.6260323766618967,-0.8844549120403826,0.45641242200508714,0.6379096275195479,0.3221138184890151,0.5496764555573463,0.1018127896822989,-0.5296451640315354,0.5190010722726583,0.5984349381178617,0.3333307304419577,0.9504550136625767,-0.7471599103882909,-0.4499551369808614,-0.20325109083205462,0.07541148783639073,-0.853127864189446,-0.0859026457183063,0.0035004792734980583,0.9652432096190751,0.6007532551884651,0.022261078003793955,-0.6542170392349362,-0.1863700319081545,-0.6582110938616097,-0.26507394947111607,0.2587704984471202,-0.9717088546603918,0.41642456594854593,0.9184649102389812,-0.3835775232873857,-0.9086748762056231,-0.4255237733013928,0.7472156872972846,0.49232216039672494,0.02976935962215066,0.7989915190264583,0.11838053958490491,0.5221521272324026,0.8172152158804238,-0.0850214371457696,0.16206484893336892,-0.6368560767732561,0.38186609419062734,-0.5748039172030985,-0.5362386018969119,0.735015619546175,-0.6107163894921541,-0.8695930261164904,0.4113356601446867,0.3268360956571996,0.14193452848121524,0.05922657949849963,-0.43736740108579397,0.8533500269986689,-0.2071320922113955,0.35124691715463996,-0.7120979321189225,-0.12211750587448478,0.024442389141768217,0.537537690717727,-0.7226292928680778,-0.14112151181325316,-0.1662451741285622,-0.0919659617356956,0.01765772607177496,0.635296210180968,0.9947769450955093,0.5109045812860131,-0.3434046059846878,0.10304238554090261,0.8594611180014908,0.07095476472750306,0.7253053756430745,0.7977311946451664,-0.5796716236509383,-0.790243552532047,0.9849874572828412,-0.9524840796366334,0.17780777113512158,-0.20301683992147446,-0.12507907208055258,-0.1253448291681707,0.1188683221116662,0.7590454346500337,0.2894516014494002,-0.7502933242358267,-0.633879232686013,0.5303021417930722,-0.07746666669845581,0.4681878872215748,0.19223756808787584,-0.4724534088745713,-0.8249235656112432,-0.44927154015749693,0.4458530363626778,-0.029631695710122585,-0.21115290140733123,0.1301768352277577,0.4960642568767071,-0.8069136859849095,0.8535917266272008,-0.08105917228385806,0.07462025200948119,-0.28029228653758764,0.5348751042038202,-0.8149996344000101,0.9759943475946784,-0.9044706798158586,0.5784455020911992,0.8537423405796289,-0.8654931387864053,0.9192850720137358,-0.24521937547251582,-0.18158400291576982,-0.7972425599582493,-0.9962243437767029,0.3235640968196094,0.7588759195059538,0.28481581481173635,0.8251110897399485,0.522418315988034,-0.18713182816281915,-0.16894390201196074,-0.7521508405916393,0.42105642752721906,0.2537038349546492,0.17906719958409667,-0.2916391743347049,0.5198535853996873,-0.3654575920663774,0.732645217794925,0.6785387275740504,-0.6405034787021577,-0.3299393644556403,-0.0683088512159884,-0.26734614418819547,-0.37315008509904146,0.6766723673790693,-0.8243156759999692,0.4079868718981743,-0.6542806685902178,0.7658560150302947,0.06392066879197955,0.8713233200833201,-0.4253100836649537,0.11896626092493534,-0.03582042781636119,0.5440310575067997,0.8665045592933893,-0.37030737241730094,0.5610699052922428,0.6424548868089914,-0.6678016646765172,-0.23752516228705645,-0.0690771178342402,0.2310102079063654,-0.2112186155281961,0.9818913098424673,-0.3852407708764076,-0.1414132220670581,0.3139870371669531,0.7458569942973554,0.869572717230767,-0.6326998425647616,0.3536085421219468,-0.6105832126922905,-0.30647020135074854,0.1516544334590435,-0.07771800179034472,-0.5346792959608138,0.5401231902651489,-0.7902462468482554,0.7494975747540593,-0.4494703756645322,-0.23770059226080775,-0.7369113899767399,-0.6637815623544157,-0.7596925413236022,-0.11593003896996379,-0.7489950745366514,0.21342071145772934,0.8342146654613316,0.32949486561119556,0.535760426428169,-0.013927814085036516,0.3138439431786537,-0.9265519632026553,-0.5062247551977634,-0.38567405054345727,0.6573920324444771,0.17411480797454715,0.7960925875231624,-0.6963529880158603,0.36679571168497205,0.7087518312036991,-0.8776768315583467,-0.34266695426777005,-0.1814042036421597,0.9042238770052791,0.9219965599477291,0.7688014400191605,-0.2319678538478911,0.4983751140534878,-0.9989854791201651,0.24113763123750687,-0.24025601102039218,-0.04457836039364338,0.7817143155261874,-0.911651206202805,0.8565567974001169,-0.9047987055964768,0.4463523137383163,0.09716063784435391,-0.41404506005346775,0.02725629974156618,0.5707774697802961,0.33177894446998835,0.2215698235668242,-0.48550883773714304,-0.23869790462777019,-0.06530161714181304,-0.7073933645151556,0.6972644566558301,-0.8347407979890704,-0.6065464559942484,0.9257127474993467,-0.5897264699451625,-0.31551070837303996,-0.6306717940606177,-0.46194167574867606,0.2518723774701357,0.6447292943485081,-0.7076512752100825,0.7563517605885863,-0.059071024879813194,-0.2205742779187858,0.8344730362296104,0.7180344411171973,-0.538078788202256,0.4592707329429686,0.6576739125885069,0.7003109315410256,-0.9614919289015234,0.7558432864025235,0.2648557676002383,-0.1253537512384355,-0.6931133167818189,-0.6984702553600073,0.9839384569786489,-0.4626844977028668,0.6764563205651939,-0.6843439051881433,-0.675411144271493,0.7452493240125477,-0.46460227482020855,0.7878651577048004,0.839083646889776,-0.18459477555006742,0.7307843426242471,-0.4673430169932544,0.41982527589425445,-0.3945971499197185,-0.9036579709500074,0.04865423310548067,-0.761451406404376,0.13642135774716735,0.2586918184533715,-0.19034816324710846,-0.5902123283594847,-0.6179210543632507,-0.5931627289392054,0.796621372923255,-0.05401664273813367,0.563045852817595,-0.35018450301140547,0.8642586437053978,-0.1762857772409916,0.19969049794599414,-0.04448170168325305,0.7617112826555967,-0.4224515138193965,0.004702894948422909,-0.8047630372457206,0.9989731162786484,-0.9685892732813954,-0.9307391461916268,0.5102660600095987,-0.8245867667719722,0.9914464973844588,-0.2759438082575798,0.7199819954112172,0.5382239734753966,-0.1648156624287367,-0.903011572547257,0.8126820740289986,-0.10967994295060635,0.8014583699405193,-0.9061883110553026,-0.9750639721751213,-0.5772704789415002,-0.3607503268867731,0.8947500507347286,0.057506384793668985,0.7302832966670394,-0.883885414339602,-0.41337940050289035,0.44324550963938236,0.11180705251172185,-0.2038381937891245,-0.06206420389935374,0.5603137225843966,-0.9120078743435442,-0.37549629248678684,0.35853677336126566,-0.6159029039554298,0.6053017564117908,0.1852808939293027,-0.13701544282957911,-0.498234314378351,0.3640405023470521,-0.30127256736159325,-0.5295058880001307,0.5397853800095618,-0.7071845890022814,-0.563569444231689,0.08964543929323554,-0.5255209198221564,0.4516928973607719,-0.640180226881057,0.4388507502153516,-0.6496474836021662,-0.42941368091851473,-0.7072253921069205,-0.6839888743124902,0.7805619803257287,-0.14409334305673838,-0.8615453545935452,-0.2288409094326198,-0.3730251803062856,0.04476717812940478,0.07164279511198401,0.4410808412358165,0.7430459200404584,0.6642714394256473,0.7296916758641601,0.864602817222476,0.4168645669706166,-0.8509674002416432,0.8130420525558293,0.326989168766886,0.6944427601993084,-0.6600048271939158,-0.5110740065574646,0.34614046523347497,0.2963010664097965,0.12194225937128067,0.17286526830866933,0.34028520341962576,-0.3213650877587497,-0.6110315034165978,-0.09283706592395902,0.7782941735349596,-0.6978649175725877,0.13961308635771275,0.153257314581424,0.2149210856296122,0.9846872366033494,0.3775753788650036,0.907614245545119,-0.02589672291651368,0.5671068825758994,-0.5833844598382711,0.05606592632830143,-0.17469243658706546,0.5860187746584415,0.03689673636108637,-0.6305024158209562,0.8656479902565479,-0.5835238783620298,0.0007721050642430782,-0.7518647559918463,-0.6389370705001056,0.27835403103381395,-0.08036031248047948,-0.22360302414745092,-0.7592352419160306,0.42330270959064364,0.5154969724826515,0.9938459019176662,-0.9056847565807402,-0.030319730285555124,0.5007902160286903,0.09271299419924617,-0.9352129087783396,-0.38777500577270985,0.0546952853910625,-0.9823775715194643,0.05526414746418595,0.3718026513233781,-0.14906061114743352,-0.4636527062393725,-0.6305786082521081,0.8615298359654844,0.10529847629368305,0.7591291926801205,-0.20502341678366065,-0.5318536455743015,-0.47237376729026437,0.16310469433665276,-0.15928908763453364,-0.8212622529827058,0.9739324655383825,0.09180116327479482,-0.6519778445363045,-0.12284152489155531,0.052725184708833694,-0.8724955776706338,0.21142867300659418,-0.7431731228716671,0.8989112284034491,-0.8184623001143336,0.5082325730472803,0.45865447726100683,-0.6608718340285122,-0.4157506232149899,-0.053141554817557335,-0.6092570954933763,0.007228656206279993,0.9031528136692941,-0.4264838923700154,0.27756623551249504,0.4703772310167551,-0.2698473623022437,-0.6376791847869754,0.26863308250904083,0.4116608891636133,0.008981382939964533,0.4211907731369138,-0.6229603136889637,0.7136394106782973,0.9875397090800107,-0.854640269652009,-0.6117072743363678,0.42270296113565564,0.4789414028637111,0.26798145333305,0.272470825817436,0.5660903574898839,0.81474733306095,-0.7469145529903471,-0.4894551420584321,-0.3827853836119175,-0.7621384472586215,-0.2273418726399541,0.37983828876167536,-0.154253666754812,0.3804671070538461,0.08525527128949761,-0.01669300626963377,-0.9311497840099037,-0.641782880295068,-0.4233294138684869,0.4223537486977875,-0.7305588852614164,0.9350354494526982,-0.8188913739286363,-0.13864861568436027,-0.7520679961889982,-0.6986024756915867,-0.07198329782113433,-0.05343899596482515,0.13499285792931914,0.19878436904400587,-0.566576883662492,0.8979430864565074,-0.7177660376764834,0.3045818628743291,0.4717011107131839,-0.7173214838840067,-0.8201474230736494,-0.9615213759243488,-0.5020804195664823,0.4541870295070112,-0.6242854343727231,-0.5824346193112433,-0.5323224300518632,-0.5521378256380558,0.5086282519623637,-0.36760724848136306,0.7360062343068421,0.15658484073355794,0.35263197403401136,-0.45496222795918584,0.9335750304162502,-0.45990951592102647,-0.7620023284107447,-0.5149395815096796,-0.2327842921949923,-0.26562838163226843,-0.27692571887746453,0.5465692565776408,0.37344609946012497,0.11038200790062547,-0.26500113820657134,-0.6139507195912302,0.7780107972212136,-0.30861407332122326,0.9351189038716257,0.9911937862634659,-0.17573340004310012,-0.8108153832145035,-0.6219702940434217,0.37781538721174,-0.7012128857895732,0.667423278093338,0.40566666796803474,0.37795341899618506,0.8482295437715948,-0.020966367796063423,-0.17486731288954616,0.06794270360842347,0.5032176459208131,-0.014415399171411991,0.07650968991219997,-0.4947406970895827,-0.20332745322957635,0.046414006501436234,-0.989931691903621,0.5922417878173292,-0.19457065593451262,-0.4517272738739848,0.48226193711161613,-0.4123153304681182,0.14673263300210238,-0.010393916629254818,0.062435741536319256,0.2142960922792554,0.17781120957806706,0.5313137210905552,-0.4067405415698886,-0.3002062067389488,-0.7019484415650368,0.10953240329399705,-0.061644054017961025,0.02978335041552782,-0.3372655096463859,0.5244170827791095,-0.4255194584839046,0.5472117830067873,0.20985407941043377,0.987678300589323,0.4837543177418411,-0.4944284474477172,0.558006196282804,0.7102106511592865,-0.6975725870579481,0.22012066608294845,0.20373025862500072,0.12047332152724266,0.38475302001461387,0.27497956110164523,-0.12195303244516253,0.4475189014337957,0.8813714450225234,-0.29340966092422605,-0.3738475558348,0.31951067270711064,-0.25634657591581345,0.47075828025117517,-0.23561663646250963,-0.7309801932424307,0.48133338056504726,0.8352160952053964,-0.9993323069065809,0.8912455956451595,-0.4647542582824826,0.6105719008482993,0.047365606762468815,0.8320487635210156,0.2860496533103287,0.8921053255908191,0.17494089901447296,-0.3873009691014886,0.6213605175726116,-0.18138789711520076,-0.905327670276165,-0.32450603134930134,-0.3823685687966645,-0.9627476828172803,-0.5498646376654506,-0.3951110187917948,-0.5972985653206706,-0.14006137941032648,-0.7107243542559445,0.9072536663152277,-0.35875360388308764,0.5404018671251833,-0.14654138637706637,-0.9283495033159852,-0.7172625530511141,-0.38455086201429367,0.18890987895429134,-0.13630482275038958,0.5721613350324333,-0.5426955376751721,0.45500916382297873,-0.6246194513514638,-0.40632561640813947,-0.08007527235895395,0.7924554226920009,-0.953894215170294,-0.8929276592098176,-0.1846869750879705,0.4063401687890291,0.4213123978115618,-0.844310156069696,0.7001692522317171,0.4029525020159781,0.43656496331095695,-0.9792916974984109,-0.8219224265776575,0.20014907931908965,0.25222926400601864,-0.35415866738185287,0.2612976236268878,0.40173419238999486,0.796539165545255,0.03968423046171665,-0.3993439469486475,-0.4626688645221293,-0.060774161014705896,0.18437266955152154,0.7682817373424768,-0.40159614104777575,-0.3799724252894521,-0.7039191308431327,-0.9809973840601742,0.15322388894855976,0.47031940380111337,-0.7100733257830143,0.45655150059610605,0.1031234241090715,-0.7947216271422803,-0.2054453077726066,-0.9363385299220681,-0.8456449476070702,0.9219549167901278,0.5584908397868276,0.1795389805920422,0.3615617463365197,0.7763743447139859,0.9379875925369561,0.146523033734411,0.5376805393025279,-0.6413805386982858,-0.19805179629474878,-0.6652556420303881,0.23136922111734748,0.5770059823989868,0.671662553679198,0.4793101903051138,-0.5345602571032941,0.5668358388356864,0.7853874540887773,0.24644481111317873,-0.9845290686935186,0.3487271820195019,0.5505303801037371,-0.8001173259690404,-0.9522773707285523,-0.9406599756330252,0.4858520566485822,-0.5804174607619643,-0.8841557102277875,0.7091592983342707,0.11765176663175225,-0.11862640921026468,0.5967653007246554,-0.9811712014488876,-0.5031944764778018,-0.3290078151039779,0.9434914705343544,-0.506914468947798,0.24189757835119963,-0.12565304106101394,-0.7537852870300412,0.48372460901737213,0.8933147382922471,-0.043123305309563875,-0.34964073495939374,-0.23521598195657134,0.679696710780263,-0.5570322819985449,0.7501393160782754,0.6351725338026881,-0.9078404889442027,-0.88306217873469,-0.9868500889278948,-0.5966220558620989,0.07017453433945775,0.5259409137070179,0.11772555392235518,0.3544793580658734,-0.541878854855895,-0.698597670532763,0.8548805504105985,0.9747280022129416,0.22945559676736593,-0.212983385194093,-0.9710090770386159,-0.5765683795325458,-0.14817816391587257,-0.3972229762002826,-0.7736149183474481,-0.16130252555012703,0.6078451401554048,-0.06823046365752816,0.7612928501330316,0.9112584153190255,-0.15671963524073362,-0.4415344404987991,0.680291342549026,-0.6677049682475626,-0.4262599074281752,0.6048035360872746,0.2520525874570012,0.6690399050712585,0.19770662672817707,-0.7317935046739876,-0.5332285561598837,-0.4834076543338597,-0.9788909773342311,-0.7714425981976092,0.8479912672191858,-0.6735872132703662,-0.29333880729973316,-0.3815046604722738,-0.94485486112535,-0.025921765249222517,0.7585667972452939,0.8802244127728045,-0.8929417203180492,0.6182655137963593,-0.23599142208695412,-0.7546661458909512,-0.9566404931247234,0.5774811608716846,-0.35469155944883823,0.7514949031174183,-0.0003290101885795593,0.3563234871253371,-0.3403278524056077,-0.47280951449647546,0.2946278606541455,-0.5493780761025846,-0.20835877396166325,-0.41816460667178035,0.9603357035666704,0.6350363292731345,-0.7699490017257631,0.40455596428364515,0.14632915100082755,0.2682649353519082,-0.3637585290707648,0.17628519190475345,-0.34880679612979293,0.15693481406196952,0.5579906175844371,-0.025720475241541862,0.08993585593998432,-0.33252508379518986,0.09362615877762437,-0.3735207202844322,0.5679840524680912,-0.8316063936799765,-0.026043417863547802,0.8947684736922383,-0.5957160163670778,0.051863239612430334,0.507210944313556,-0.6199441719800234,-0.13942264346405864,0.9362283195368946,0.8388500954024494,-0.1205582395195961,0.5096906824037433,0.2669333224184811,0.4404267929494381,0.020735111087560654,0.2794734728522599,0.27608684403821826,0.16888189129531384,-0.6163951004855335,-0.47001303592696786,-0.41608937457203865,-0.37344632809981704,-0.01174332294613123,0.5194158940576017,0.8837573574855924,-0.17807952919974923,0.3291378323920071,0.35181114124134183,0.45854672230780125,0.8360136458650231,-0.16855929186567664,0.39308186806738377,-0.48103449679911137,-0.16942287608981133,-0.7113321023061872,-0.7278318628668785,-0.9438248001970351,-0.21062075905501842,-0.2750762039795518,0.04742054967209697,0.9240033887326717,-0.13406676333397627,0.32103500748053193,0.07790549285709858,-0.7901778002269566,0.19345544464886189,0.0038854782469570637,-0.05042300187051296,-0.11002347152680159,0.12346491077914834,0.3171696732752025,-0.40928701078519225,0.3504479229450226,0.29186253156512976,0.10112897446379066,-0.31529814656823874,0.6384582812897861,0.8634066395461559,0.039543584920465946,-0.5090990886092186,-0.2132168966345489,-0.13756085420027375,-0.1477843327447772,-0.9664585604332387,-0.35743693076074123,-0.24291631020605564,0.8011804060079157,-0.44729471718892455,-0.5252898633480072,0.11006368370726705,-0.6937012788839638,-0.5349887977354228,-0.827674113214016,0.3632055316120386,0.6677269074134529,-0.7819074839353561,-0.09246777324005961,-0.9206248391419649,-0.3941542888060212,0.32598575158044696,0.19838067889213562,0.15298495767638087,-0.9547020485624671,0.5636954628862441,-0.4219050472602248,0.29304733127355576,-0.46685097366571426,0.7452968438155949,0.3652755240909755,-0.916163042653352,-0.2569583049044013,0.3883143365383148,0.03788591967895627,-0.5920494520105422,-0.895104952622205,-0.8072844403795898,0.5736557957716286,-0.9756640302948654,0.7126828036271036,0.9976723087020218,-0.75706393038854,0.7464212095364928,-0.8210239107720554,-0.6965784514322877,-0.24379116902127862,-0.6508797975257039,-0.6537938266992569,-0.19204964814707637,-0.08300442108884454,0.8339972477406263,0.7396893156692386,0.41499294713139534,-0.9074605917558074,0.996116722933948,0.7716266331262887,0.15550064574927092,-0.40243464475497603,0.033767485059797764,-0.45407053316012025,0.16556262969970703,0.4327970859594643,-0.9024610845372081,0.010276733431965113,-0.7728225765749812,0.9077788339927793,0.603837110567838,0.11443161545321345,0.6833362644538283,-0.6248956737108529,-0.4178788047283888,-0.11201849766075611,-0.572848548181355,0.8125003394670784,0.9462804677896202,-0.16466428292915225,-0.6440322590060532,-0.3246087576262653,-0.8179971752688289,0.7193701039068401,0.17193315643817186,0.8093821387737989,0.15213019913062453,-0.84021524945274,-0.8221495156176388,-0.46279370319098234,-0.274869981687516,-0.5463667516596615,0.2394633898511529,0.026109416037797928,-0.07422538008540869,0.5793929151259363,-0.9455787800252438,0.29805379873141646,-0.15680070174857974,0.7033825763501227,0.2262005261145532,-0.7100076517090201,0.8687088061124086,0.2371295504271984,-0.5749948490411043,-0.8228803351521492,0.9678167831152678,-0.5477186138741672,0.9707106556743383,-0.6677325600758195,-0.7012354196049273,-0.9401078992523253,-0.6239651464857161,-0.2144421930424869,0.6484340033493936,-0.11699991673231125,0.04410483315587044,-0.4095468074083328,-0.8129194402135909,-0.27562895929440856,-0.47792638931423426,-0.6318156290799379,-0.3767360281199217,0.22745056077837944,0.5807134755887091,-0.5135422246530652,0.07707851054146886,0.6651428588666022,-0.3370493706315756,-0.6808761698193848,-0.027129974216222763,0.9292138824239373,-0.9758300990797579,0.40660426625981927,0.7899068864062428,0.6850314745679498,-0.5244074370712042,0.34712516935542226,0.5690528084523976,-0.33833879698067904,-0.9229193697683513,0.6258293958380818,-0.2477277754805982,-0.25470444839447737,0.2785931071266532,-0.07202387088909745,0.019928044639527798,-0.09179789200425148,0.9042581943795085,-0.819831351749599,0.25513912504538894,0.7562225027941167,-0.8376284944824874,-0.8895693789236248,0.8265256583690643,0.15166388684883714,0.7890674071386456,-0.5342633593827486,-0.0628597061149776,0.25119004771113396,0.7560520791448653,-0.42107829404994845,-0.4578206231817603,0.9128677165135741,0.8003126946277916,-0.6816484043374658,0.9246270544826984,-0.10408631665632129,0.3535881442949176,-0.304197380784899,-0.07019076775759459,0.4810158642940223,0.4992314041592181,0.734675720334053,0.44564731419086456,0.19697014754638076,0.9202873036265373,0.8892149711027741,-0.34737777430564165,0.7084656939841807,0.8383538192138076,-0.12509714998304844,0.03958015516400337,0.39122023060917854,-0.3615995687432587,-0.18944563064724207,-0.7965848441235721,0.2926741922274232,-0.023706790059804916,0.3745793574489653,-0.6421621930785477,-0.439556666649878,-0.37907478166744113,-0.12954710563644767,0.1738749505020678,-0.37464721919968724,-0.33593142312020063,0.2089252774603665,-0.7789472858421504,0.7040587048977613,0.35849478654563427,-0.17075738729909062,-0.859922151081264,0.4432449797168374,0.5148240900598466,0.11548706283792853,0.05915809189900756,-0.15074835624545813,0.38041822193190455,0.17103852797299623,-0.6109941783361137,0.16903117764741182,-0.39253853214904666,-0.5301607339642942,-0.16588268289342523,0.2917121830396354,0.7427241047844291,-0.8011923967860639,-0.7916558366268873,0.2059279098175466,0.9913025610148907,0.059365165419876575,-0.8652084427885711,0.41266957111656666,-0.944382724352181,0.8978489926084876,0.9340232973918319,0.8993820468895137,0.31399936508387327,-0.8269056808203459,0.7918247072957456,-0.21715825702995062,-0.8948254710994661,0.6602511801756918,0.8773608054034412,-0.02578524686396122,-0.5230263411067426,0.26712734485045075,0.9223257331177592,-0.19207022665068507,0.18341368343681097,-0.009730410296469927,-0.3350475877523422,-0.4748198143206537,0.35878167441114783,0.9657606878317893,0.8272561756893992,-0.2607875484973192,0.9030796326696873,-0.8339653210714459,-0.9024804690852761,0.3025717996060848,-0.6623894535005093,-0.5809588646516204,0.8898111619055271,-0.7618430312722921,-0.9905620776116848,0.24575939727947116,-0.7058514091186225,-0.16285263281315565,-0.9170022564940155,0.09068358922377229,0.025508282240480185,0.022977120708674192,-0.20491865184158087,-0.06851680856198072,0.026334931142628193,0.4384846081957221,-0.51790821691975,0.41327233240008354,-0.26261852076277137,-0.4065003963187337,-0.6973183997906744,-0.9961343901231885,-0.12451560609042645,-0.40101333521306515,0.5639737988822162,0.4136692602187395,0.64737160038203,0.07808465510606766,0.42476907651871443,-0.44592976523563266,-0.5387289319187403,0.4023929676041007,-0.3296615588478744,0.2156847226433456,-0.4760977881960571,-0.9829110475257039,-0.0018973792903125286,-0.6457814136520028,-0.6629482111893594,0.7302797273732722,0.4420771081931889,0.02682608598843217,-0.4690129403024912,-0.46005262481048703,0.5883891084231436,0.3159568849951029,0.39851390523836017,0.26288270857185125,-0.5516804144717753,-0.8496626461856067,-0.9847758514806628,-0.2894347682595253,0.5766025469638407,-0.7148997001349926,0.9384293146431446,0.6179586881771684,-0.7223855508491397,0.22523368801921606,0.467269716784358,0.1471959538757801,0.7616763943806291,-0.6368174306116998,-0.4634532583877444,-0.5771520254202187,-0.5782445245422423,-0.32916807290166616,-0.9337593917734921,0.25130882347002625,0.6520113213919103,-0.780781620182097,0.4154015528038144,0.29432425554841757,0.02349660126492381,-0.1401403285562992,-0.42891147546470165,-0.7428770549595356,-0.8027737564407289,-0.1692454619333148,0.7966824346221983,0.712673376314342,-0.5115237236022949,0.2382108448073268,-0.32101885275915265,0.6340253702364862,0.39895224245265126,-0.8774684607051313,-0.775646380148828,0.8328652097843587,-0.5722533925436437,-0.20869898609817028,-0.9626297419890761,-0.837705138605088,0.18458005413413048,0.9204627671279013,0.07388465711846948,-0.4554901053197682,0.7446179338730872,-0.5300980801694095,-0.41912056040018797,-0.28661501221358776,0.07994358008727431,-0.3880096208304167,0.7036705422215164,0.5542584238573909,0.6612872360274196,0.046286164317280054,-0.9153042593970895,-0.060133961495012045,0.2542705941013992,0.18189228232949972,-0.09913196787238121,0.9360909517854452,-0.8103599213063717,0.35498176887631416,-0.8516257107257843,-0.3744249898009002,0.27106272522360086,-0.08463338762521744,0.49758197693154216,-0.9257625755853951,-0.9353069989010692,-0.9411094388924539,-0.650979723315686,0.30612558452412486,0.9373328289948404,-0.4647106439806521,-0.9679909162223339,0.20741045428439975,0.7292373445816338,-0.12854302255436778,-0.18009113240987062,-0.5924705239012837,0.907139171846211,0.7151900171302259,-0.811538927257061,-0.6350462730042636,-0.4589108037762344,0.9341847915202379,-0.5978739452548325,-0.4217887269333005,-0.9795000404119492,-0.9603001833893359,0.875323680229485,0.08803296834230423,0.7417345992289484,0.7067363238893449,0.2860817676410079,0.12452755216509104,-0.8153817839920521,-0.035432599019259214,0.9437791532836854,-0.21548692975193262,-0.3168349713087082,0.20073762815445662,0.7655390175059438,-0.7953531960956752,-0.9801859287545085,-0.8427787767723203,0.12068566679954529,0.9338118960149586,-0.8703762153163552,-0.06585605721920729,-0.8677618033252656,0.9264650898985565,-0.9990616012364626,-0.7754155099391937,0.8915456519462168,-0.547726783901453,-0.6791657586582005,-0.019974304363131523,0.9608672126196325,0.6153967017307878,-0.43519750563427806,0.7294736760668457,-0.18576255021616817,0.7580127236433327,0.011798775289207697,0.6063955924473703,-0.430000280495733,0.7406797371804714,0.8554104138165712,0.7804225319996476,-0.8950239075347781,0.287807310000062,0.46565620321780443,-0.8825539886020124,-0.8928811177611351,0.4929094482213259,-0.41401184163987637,-0.3140882379375398,0.6139969183132052,-0.1901310821995139,-0.6947860992513597,0.21416533319279552,0.7301311730407178,0.9179820693098009,-0.7866733530536294,-0.7494765520095825,0.8636443852446973,-0.9893352705985308,-0.49660818418487906,-0.6309756706468761,0.10657767299562693,0.16813070885837078,0.1238120379857719,-0.8625239217653871,-0.9274862227030098,0.6649281461723149,0.18656728975474834,-0.5496794632636011,0.9542639125138521,0.33703845646232367,0.5672139613889158,0.4496243726462126,0.9743730439804494,-0.8318344005383551,-0.13133426569402218,0.9291566545143723,0.5300979372113943,0.24963220674544573,-0.47550045559182763,0.9843743434175849,0.005768159870058298,-0.2759217000566423,0.4135327315889299,0.17367250099778175,0.49477787408977747,-0.12144721997901797,-0.3545577130280435,0.5755414599552751,0.3497843760997057,0.6851850599050522,0.27724127657711506,-0.579170189332217,-0.0342486328445375,0.4254948366433382,0.06806628964841366,-0.7336168666370213,0.48214992647990584,0.2730539459735155,-0.12747548194602132,0.2780313789844513,0.9068998876027763,0.9830865440890193,-0.8251064456999302,-0.22668144013732672,0.7425348740071058,0.7374211186543107,-0.9693305613473058,-0.16717260843142867,0.3014786369167268,0.5246067852713168,-0.5492087337188423,-0.9909702609293163,-0.0037315688095986843,0.14925937820225954,0.10512679209932685,0.7448889929801226,-0.07443885877728462,0.1876022513024509,0.914578870870173,-0.7380251791328192,0.8498781844973564,-0.2294487706385553,0.35907062934711576,0.772654618602246,0.9942507511004806,-0.6626257095485926,-0.4758776659145951,-0.260090711992234,-0.9474225025624037,-0.04410442989319563,0.6052009491249919,0.6994623285718262,-0.4319802336394787,-0.14081555092707276,0.8062699809670448,-0.7718028989620507,0.7428103433921933,0.826360713224858,-0.7938421024009585,-0.10768368793651462,0.7514522168785334,-0.24392412696033716,-0.7959071099758148,0.3195869461633265,0.24581301072612405,-0.6685011750087142,-0.9767608707770705,0.9989589191973209,-0.4403641698881984,0.7756751631386578,-0.33995328564196825,0.7078563370741904,0.5163425407372415,-0.25493439147248864,0.3574613523669541,-0.004575822036713362,0.7043851381167769,-0.8566235047765076,-0.05251375678926706,0.704167383722961,0.7561950269155204,0.0794261172413826,-0.7481647641398013,-0.19733351562172174,0.08997803321108222,-0.22126464638859034,-0.9167327061295509,0.7886611544527113,0.2740828664973378,-0.8167081885039806,-0.9732578634284437,0.03228550357744098,0.6338782571256161,-0.271109770052135,-0.3755173315294087,0.24132350040599704,0.36053118482232094,0.10411140229552984,0.2911986205726862,0.5404950305819511,0.5826504910364747,0.42859081318601966,-0.8686491041444242,0.5678634545765817,-0.7846865402534604,0.6386757073923945,0.6138327089138329,0.8962915069423616,0.7034077188000083,0.6030476815067232,0.3069872851483524,0.020962533075362444,0.23009413853287697,0.826234093401581,-0.751379375346005,-0.8129484625533223,0.7290380727499723,-0.0993485152721405,-0.9351999652571976,-0.28096131049096584,0.4798453436233103,0.8506317837163806,0.9067699988372624,0.3023088541813195,-0.2507779593579471,0.470720246899873,0.5790765048004687,0.9882845170795918,-0.9213159368373454,0.6654666252434254,-0.9888327186927199,-0.44308217288926244,-0.9516983754001558,-0.8409888725727797,0.8471201336942613,-0.2244489067234099,0.25286219315603375,0.8041295493021607,-0.24248673021793365,0.049244674388319254,-0.989046873524785,0.03468729183077812,0.6624631476588547,0.22061265679076314,0.46244175964966416,-0.034522141329944134,0.485424239654094,-0.40058097848668694,0.3631413825787604,0.139397949911654,-0.02535528363659978,0.7599780913442373,-0.4889208753593266,-0.4487733687274158,0.3827747693285346,0.9386101448908448,-0.3875393788330257,0.5376926986500621,-0.20624395925551653,-0.8176635350100696,-0.4848337322473526,0.9216084307990968,-0.3727181274443865,0.3543575028888881,-0.3680183356627822,-0.7024506591260433,-0.1383675206452608,-0.9556505400687456,-0.11528917960822582,-0.9016820271499455,0.7610933049581945,0.1768096759915352,-0.8665348831564188,-0.9544322951696813,0.3887124191969633,0.3329735267907381,0.21585880452767015,0.041217966470867395,0.7847796427085996,-0.3865147135220468,0.1191319078207016,-0.7690407116897404,-0.3654241347685456,0.6681916476227343,0.2900933283381164,0.9801169633865356,0.9046744010411203,0.9530207002535462,0.46726599941030145,0.33244016487151384,0.2546033733524382,-0.19845153717324138,0.059212715830653906,0.7592317527160048,0.9774499521590769,-0.7477642823942006,-0.9799017342738807,0.08934556460008025,0.1931967344135046,0.09109537489712238,-0.092107227537781,-0.7510171984322369,0.15857671294361353,0.9606284657493234,-0.7134904684498906,0.7587350383400917,-0.5324312597513199,0.5421460079960525,-0.5813000155612826,0.9111267714761198,-0.6758025451563299,0.5462952251546085,0.0747888800688088,0.3120127278380096,0.49666100088506937,-0.4738868335261941,-0.3053446956910193,0.3602271471172571,0.09113449789583683,-0.5457245693542063,-0.41691258549690247,0.8949449635110795,-0.9669996523298323,0.4975922852754593,-0.36397540010511875,0.9108982048928738,0.28357372619211674,-0.8143719653598964,0.8290103008039296,-0.650176543276757,-0.3825985612347722,0.6208856860175729,0.9089170708321035,-0.058932813350111246,-0.659162544645369,-0.033966499380767345,0.2623674226924777,-0.4232836146838963,-0.8102816203609109,-0.8225192236714065,-0.7399010467343032,-0.41338368132710457,0.7083552395924926,0.5370639879256487,0.31761498004198074,0.4896131455898285,-0.490190630313009,0.7252375679090619,-0.10819692071527243,0.6873205676674843,0.41578938253223896,-0.19891227409243584,-0.9314405196346343,0.5829749433323741,-0.4659359734505415,0.5802936716936529,-0.46014460967853665,0.8393560941331089,-0.1416731420904398,0.7186029967851937,-0.3904156731441617,0.4821542501449585,-0.172631555236876,-0.574066324159503,0.7754971077665687,-0.9245087294839323,0.9833024814724922,-0.42793670343235135,0.8285456821322441,0.5353640159592032,-0.0029854532331228256,0.8385736360214651,0.22648744797334075,-0.46945398580282927,0.445121583994478,0.5001397887244821,0.3437138106673956,-0.9477031985297799,-0.2300720689818263,-0.7230934337712824,-0.30108500411733985,-0.7336662095040083,-0.1717108739539981,-0.2142731281928718,-0.07384007191285491,0.6752366563305259,-0.8581009055487812,-0.8231513034552336,0.5438239746727049,-0.20339760091155767,0.8327833800576627,-0.5653655934147537,-0.6646440490148962,0.5599729223176837,-0.01244201185181737,-0.8970779683440924,0.5373020879924297,0.2111367555335164,0.6667323126457632,0.43401584634557366,-0.0069154552184045315,0.5019240123219788,0.6633209730498493,-0.5362470373511314,-0.2984964940696955,-0.8630304206162691,-0.4741023685783148,0.6852990142069757,0.4941979292780161,-0.20454546343535185,0.2600427628494799,-0.07342441892251372,-0.3332372782751918,0.8794328719377518,0.749349829275161,-0.4681894341483712,0.24558214843273163,-0.4060383951291442,-0.3303373162634671,0.25387597642838955,0.5011481121182442,-0.1070631155744195,-0.25890344427898526,0.27132418705150485,-0.35987591557204723,-0.04601778835058212,0.7578471922315657,0.7138797440566123,-0.6995109436102211,-0.8049892825074494,-0.5250126477330923,-0.3220939035527408,0.10767809906974435,0.057100069243460894,0.16022768011316657,0.6540670925751328,-0.05120676290243864,-0.5673561715520918,0.17509646294638515,0.40318639762699604,0.2405204214155674,-0.8931406480260193,0.8270971677266061,0.05466948123648763,-0.3511938792653382,0.28625215496867895,0.5932281413115561,-0.44306629011407495,0.3950605634599924,-0.2093030195683241,0.821572479326278,-0.7217322811484337,-0.9024394806474447,-0.7303161914460361,0.4166123536415398,0.8725012089125812,0.12972690118476748,-0.7274543521925807,-0.7495406633242965,-0.8048755428753793,0.02799052931368351,-0.1838316242210567,0.2557826256379485,-0.9210663395933807,-0.4642549785785377,-0.44999301340430975,-0.7427798905409873,0.9833442093804479,-0.839616714976728,-0.9089148133061826,0.8242082125507295,-0.5918592130765319,-0.8924608631059527,0.8217567591927946,-0.33900633500888944,-0.08650325518101454,-0.10818996839225292,0.7467845873907208,-0.8981518405489624,0.945533252786845,-0.29053072771057487,-0.3518033386208117,0.3608069019392133,-0.4440925195813179,0.8604086716659367,0.8790894914418459,-0.28830792009830475,0.35240314109250903,0.6242781020700932,0.2232058560475707,-0.6753111006692052,-0.4653000831604004,0.5240326742641628,-0.19049463421106339,0.15935877850279212,-0.19384458009153605,0.2919451929628849,0.7913870732299984,-0.6207883646711707,-0.6713414690457284,-0.833657605573535,0.3926789811812341,-0.7465996653772891,-0.8896226068027318,0.9034194150008261,0.32441855827346444,-0.02525457413867116,-0.44064541393890977,-0.2975160228088498,-0.09372117184102535,0.579624607693404,-0.9042820087634027,-0.21125124394893646,-0.6455392553471029,-0.6737964004278183,0.017745541408658028,0.729126438498497,-0.25220668548718095,-0.41205983282998204,0.5086899036541581,0.8961336184293032,-0.35622984636574984,-0.5939189260825515,0.23913575522601604,-0.1196364308707416,-0.6428323206491768,0.6824473291635513,-0.4969483111053705,0.2013480649329722,-0.12235537590458989,0.3789639547467232,0.4736552136018872,-0.7652810979634523,-0.5628520385362208,0.17490640468895435,0.019205540418624878,-0.27195204934105277,-0.9927525306120515,0.996172137092799,-0.11332592507824302,0.436540337279439,0.38680714927613735,0.8652641433291137,0.7608550908043981,0.21054115938022733,-0.1563291517086327,0.44090230436995625,0.6175614609383047,0.17138592759147286,0.017464423552155495,0.12182807410135865,-0.836130803450942,0.2843858962878585,-0.7997647668235004,-0.35293341148644686,0.7930092844180763,-0.6001365478150547,0.6294588153250515,-0.11670074425637722,-0.5660187541507185,0.21096271555870771,0.4282052591443062,0.32642662106081843,-0.9283844972960651,-0.988591882865876,0.09610551409423351,0.3338525299914181,0.6894470578990877,0.6591433486901224,-0.22152200527489185,-0.6830438687466085,-0.041164913680404425,-0.7149502807296813,0.22257078951224685,0.3384295008145273,-0.8855004529468715,0.6580277783796191,-0.5446874354965985,-0.3636084939353168,0.15835505817085505,-0.8470463189296424,0.15211963513866067,-0.639158318284899,-0.7527343584224582,0.8493076227605343,-0.4471356822177768,-0.8685338725335896,0.5868616793304682,-0.2820861665531993,0.014278887305408716,0.6384300463832915,0.5203214786015451,-0.09101999131962657,-0.8713596500456333,-0.43878440698608756,0.9834081814624369,0.3876406871713698,0.12962359143421054,-0.8280680142343044,0.8235279032960534,0.019288660027086735,0.7817277009598911,-0.4390631732530892,-0.688856159336865,-0.8288560220971704,0.5499563999474049,-0.7248144722543657,-0.7368155885487795,0.4014713801443577,-0.38333279406651855,0.008690283633768559,-0.07616888824850321,0.30562222469598055,-0.3790005533955991,-0.7943349229171872,-0.028835302218794823,-0.7206338415853679,-0.09835348185151815,-0.9595786491408944,0.17371040675789118,0.8209526389837265,-0.48674339847639203,0.21817578142508864,0.05649192724376917,-0.7221170184202492,-0.631599944550544,-0.08958282507956028,-0.720433852635324,0.37196145253255963,0.21736571565270424,-0.9195993351750076,-0.5374454893171787,0.6772399949841201,-0.34827069798484445,0.96416877489537,0.2954835072159767,-0.7380751380696893,-0.5727616799995303,-0.6749954014085233,-0.7144456002861261,0.7568437014706433,0.3096699779853225,-0.8695858437567949,-0.22655516723170877,0.1421298054046929,0.23992313165217638,0.8558798423036933,-0.06754404259845614,0.1558498297818005,-0.23432291438803077,0.9542008507996798,-0.5154404286295176,0.24175055092200637,0.07206548284739256,-0.756984899751842,0.9773801020346582,0.903325810097158,0.4360040631145239,0.03499918896704912,-0.6246602418832481,0.8799909041263163,0.6779811787419021,-0.4614079832099378,0.242247614543885,-0.9176289304159582,-0.8221385721117258,0.7089013340882957,0.417530438862741,-0.2175183529034257,-0.16985843097791076,0.18264917191118002,-0.02475222060456872,0.9239036059007049,-0.14227136876434088,0.8324536541476846,0.622660415712744,0.8795466413721442,0.1366721293888986,-0.001008564606308937,-0.3304322184994817,0.7122771078720689,0.7708514188416302,0.516455770470202,0.6838149558752775,0.15983351692557335,0.1297206566669047,-0.9794300002977252,-0.6570963463746011,0.942289452534169,-0.90106151252985,-0.244134278036654,-0.6429923325777054,0.3098708591423929,0.7942517860792577,-0.006519931834191084,-0.18491260427981615,0.5226559834554791,0.08766985032707453,-0.3382409797050059,-0.16852999525144696,-0.03134256415069103,0.8375810026191175,0.5641639712266624,-0.8293913612142205,0.019046498462557793,0.6643008808605373,-0.22066759318113327,-0.10838359873741865,0.9430010095238686,0.9827716960571706,0.7596794320270419,0.44803729373961687,-0.3839931287802756,0.5693001188337803,0.34982500318437815,0.8755041118711233,-0.5224458421580493,-0.8855455005541444,0.8753058649599552,-0.931780313141644,0.8398392298258841,0.5156230041757226,0.6685642087832093,-0.281926101539284,0.8819455746561289,0.24566604336723685,0.5661012949422002,0.6626025401055813,0.41784963104873896,0.7282823729328811,0.09458017395809293,-0.8940965728834271,-0.2418194836936891,0.5909325261600316,0.8455096702091396,-0.5320805814117193,-0.9574365601874888,-0.06132926046848297,0.3384781889617443,0.11709353933110833,0.8349193334579468,0.27072874596342444,-0.22578307939693332,0.3770406600087881,0.8714061337523162,0.25496437307447195,-0.9227542569860816,0.23567439336329699,0.6487652487121522,0.6667092288844287,-0.867141745518893,0.7791849561035633,0.8728245310485363,-0.4041811656206846,0.13267840491607785,0.5489201885648072,-0.8230621926486492,0.08209520764648914,0.6626222715713084,0.4573914152570069,-0.7825489179231226,0.7350288615562022,0.1136845936998725,-0.0703019155189395,0.8960064263083041,0.8704249672591686,0.7594714588485658,-0.8654875345528126,0.778205827344209,0.8110197056084871,-0.8458671476691961,0.31583936512470245,-0.8665731963701546,-0.8497457802295685,-0.14715631073340774,-0.4107342092320323,-0.9922620807774365,-0.1707883127965033,-0.9704674007371068,0.9548339769244194,0.8796996641904116,-0.31677418388426304,-0.29978945571929216,0.9243217273615301,-0.3764807120896876,0.8362573310732841,0.8125847135670483,-0.25999049562960863,0.7073775636963546,-0.7734076376073062,0.6940708514302969,-0.5665630749426782,0.25939911557361484,0.8813498956151307,-0.22246473282575607,0.1686218953691423,-0.4984299410134554,-0.12862134957686067,-0.2980711432173848,-0.9882588880136609,-0.39527330733835697,-0.014668116811662912,-0.7945271302014589,-0.7691830433905125,-0.7044591451995075,0.7000592686235905,0.29655986931174994,0.03876840556040406,-0.8812585459090769,0.8743619997985661,0.9007788714952767,0.4574349718168378,-0.9128952254541218,-0.4306626496836543,-0.36966530373319983,-0.3009877232834697,-0.17271307483315468,0.9541341015137732,0.16254390124231577,0.41935465345159173,-0.2663192814216018,-0.9369289209134877,0.494136415887624,0.8983959523029625,0.2515687379054725,0.256345896050334,-0.14803498284891248,-0.13013948453590274,-0.39354487461969256,-0.061655750032514334,0.7395462361164391,0.278186506126076,-0.6530986237339675,-0.24470050400123,0.007308028172701597,0.562170616351068,0.8490890976972878,-0.15992843639105558,-0.7681265403516591,-0.6665132530033588,-0.5366291296668351,-0.3556724931113422,0.4579310705885291,0.35669806180521846,0.0938451150432229,-0.582660757470876,0.7614932451397181,-0.9592017163522542,-0.8531600865535438,0.9493351234123111,0.05031660571694374,0.6821407391689718,-0.28664211742579937,-0.7657308364287019,0.5645546116866171,0.39955083979293704,-0.02632137853652239,-0.6398114319890738,0.3830327154137194,0.9614676916971803,-0.389593280851841,0.8121023806743324,0.29100368404760957,-0.5593782039359212,-0.20559769542887807,0.759016782976687,0.8261894807219505,0.436661294195801,-0.9207391301169991,-0.20715842582285404,-0.6073932815343142,-0.2832981855608523,-0.8616973250173032,-0.8726295605301857,-0.6704156082123518,0.27598792826756835,0.9677004753611982,-0.4855941152200103,0.3677299916744232,0.6002441262826324,-0.6123046642169356,-0.6087261312641203,0.8034280375577509,0.22186814015731215,-0.10211924696341157,-0.22549734404310584,0.9055718882009387,-0.6789625138044357,0.673209925647825,-0.9059285884723067,0.8622870733961463,-0.14896237337961793,0.32008778816089034,0.21929747192189097,0.7276970562525094,-0.7497818651609123,-0.8491401863284409,-0.27922203252092004,-0.7313538719899952,-0.21253592148423195,0.7141926907934248,-0.3445625458844006,0.7359046493656933,-0.4977780436165631,0.9574362598359585,0.8379694251343608,-0.6753007546067238,-0.1758510349318385,0.5319506102241576,0.8824196481145918,0.5864276508800685,0.2582902773283422,0.503891711588949,0.03453424386680126,0.3326829136349261,0.7168316044844687,0.5632766983471811,0.0627523884177208,0.7488037971779704,-0.40503960894420743,-0.18156037898734212,-0.9097858192399144,0.23436626000329852,-0.47302784910425544,0.1943059959448874,0.6390390545129776,0.6862326795235276,0.35235392581671476,-0.20927344216033816,0.021946894004940987,-0.5456953574903309,-0.30041777389124036,0.016519112046808004,0.20034354366362095,-0.48465641122311354,0.33325253427028656,-0.36548713594675064,-0.9224921492859721,0.10770794516429305,0.17031108913943172,0.8639452117495239,-0.7602710858918726,-0.31420215545222163,0.891131623648107,-0.5033758706413209,-0.17729248059913516,0.22649581311270595,-0.9176224945113063,-0.5286052129231393,-0.4500723066739738,-0.04070779820904136,0.5324216112494469,0.5266607799567282,-0.3282284759916365,0.07504174206405878,0.6385066672228277,0.3840214842930436,0.20723679242655635,-0.13189651165157557,-0.40781591506674886,-0.37997815757989883,-0.1466513336636126,0.8999798656441271,-0.15835606399923563,0.7007155418395996,0.5084673250094056,-0.6024132124148309,-0.28844567155465484,-0.49863625410944223,-0.9970432599075139,-0.07367218658328056,-0.3500562394037843,-0.9499638159759343,-0.3451495463959873,0.9853146434761584,-0.8561651790514588,0.740591530688107,-0.3485998148098588,0.09296951116994023,0.8749178159050643,-0.9818349569104612,-0.15513693448156118,-0.18266544211655855,0.8860646565444767,-0.2085352074354887,-0.7373244734480977,0.7100294916890562,0.8575481763109565,-0.9793978878296912,0.19070288259536028,-0.8253204715438187,-0.515077109914273,0.06816569250077009,-0.7188979783095419,-0.7803411171771586,0.915427119936794,-0.5975607391446829,0.3784498991444707,0.030959901865571737,0.1749121742323041,-0.970955150667578,-0.06002994207665324,-0.8143625273369253,-0.4287403072230518,0.6500267814844847,-0.8335044225677848,-0.08207117021083832,-0.964650739915669,-0.829497320111841,0.8267675298266113,0.9873614651151001,0.5748086823150516,0.18052979744970798,0.18476639268919826,0.793989303521812,-0.19201819086447358,0.919133358169347,0.779843170195818,-0.9356147460639477,-0.5608844896778464,0.6554589462466538,-0.4589962554164231,-0.715827904175967,-0.41591267473995686,-0.9615984237752855,0.2982054417952895,0.08918347582221031,0.22624236438423395,0.5851765791885555,-0.076085667591542,0.8860832867212594,0.12994132423773408,-0.5137755963951349,-0.7810429553501308,-0.9843647126108408,-0.6782963275909424,0.8323117042891681,0.6251272014342248,-0.7229436142370105,0.4103702404536307,-0.4745145789347589,0.21390782296657562,-0.14417560677975416,-0.9202591101638973,0.9564251499250531,-0.46759841311722994,0.04984755674377084,-0.16468774108216166,-0.6062763649970293,0.08472376642748713,-0.5265395613387227,0.9063847060315311,0.3249716479331255,0.26625331630930305,-0.11038981983438134,-0.5092134117148817,0.8075882312841713,0.44575519207865,-0.057633687276393175,0.8811059887520969,0.6994574656710029,0.9864601758308709,0.5965774217620492,0.3357091676443815,0.3691591243259609,-0.9318006420508027,0.6748590781353414,-0.9005889380350709,0.2102442509494722,-0.781684996560216,-0.4881696975789964,-0.558267714921385,0.7835643356665969,0.670420438516885,0.013608405366539955,0.16436704900115728,0.74909798335284,0.5210298732854426,-0.46181556256487966,0.14300924772396684,0.14021434728056192,0.6260128021240234,0.6220615785568953,0.20335778407752514,-0.7350890035741031,-0.01227416843175888,-0.7842078278772533,-0.16203719098120928,0.39695024909451604,-0.14037802210077643,-0.9912478397600353,-0.458544347435236,0.990027881693095,0.4649960398674011,0.21414444968104362,-0.2042980743572116,-0.6328679597936571,-0.22940401267260313,0.6215123827569187,0.04395661689341068,0.429198004771024,0.02416784828528762,-0.33153066877275705,0.9096732693724334,-0.668117149733007,-0.264184292871505,-0.2851024982519448,0.5705713131465018,-0.7676046593114734,0.8471490661613643,0.09657545108348131,-0.268167776055634,-0.5175965069793165,-0.4562837751582265,0.4235102324746549,-0.6718353079631925,-0.21731492225080729,0.37702260725200176,-0.9323328449390829,0.7892441651783884,0.22219341294839978,0.9310285672545433,0.8262094086967409,-0.7731458409689367,0.78147739963606,-0.9500665878877044,-0.1380620771087706,0.8640875471755862,-0.8423843854106963,-0.22074426244944334,-0.3197922660037875,0.9401199109852314,0.787568851839751,0.8696321710012853,-0.2427903451025486,0.9468438546173275,0.9053415390662849,0.6921879551373422,-0.0286249415948987,0.39126285910606384,-0.8598216725513339,0.6240906803868711,0.9878439623862505,0.5316556729376316,-0.22523070825263858,-0.9049865822307765,0.8626071778126061,-0.5672628008760512,0.8271672078408301,0.005731360521167517,0.5620951051823795,-0.6445335629396141,-0.4954151203855872,0.5282000303268433,-0.6600564401596785,-0.5534280333667994,0.13038088474422693,-0.32991110254079103,-0.4076228681951761,-0.6725279963575304,-0.22813523979857564,-0.4342162497341633,0.7642950136214495,0.2672674027271569,-0.11128064151853323,0.012865735683590174,-0.7518848008476198,0.32293460331857204,-0.09624657267704606,-0.6528992643579841,0.4483667043969035,-0.7465732586570084,0.09372999705374241,-0.8142440733499825,0.7603281731717288,0.7133895233273506,0.7088419161736965,-0.4094066177494824,-0.20105459028854966,-0.7583313742652535,-0.6313763619400561,-0.1480217082425952,0.4517985633574426,-0.02034037234261632,0.4733243677765131,-0.8898289799690247,-0.7647135658189654,0.8004086725413799,-0.4080581362359226,-0.3937706691212952,-0.9493672638200223,0.9716633730567992,0.3239802368916571,-0.4923131726682186,-0.5744547825306654,-0.19170914310961962,0.7258691545575857,-0.323792343493551,-0.9127187943086028,-0.15231929207220674,-0.07909986050799489,-0.8796580890193582,-0.005760430358350277,0.6201820648275316,-0.22360568726435304,-0.7847779123112559,0.6142596276476979,0.23427829425781965,-0.05517008854076266,0.5704366806894541,0.7000544518232346,-0.5245635323226452,-0.568557211663574,0.23149010352790356,-0.8233468011021614,-0.5726562184281647,0.10766000160947442,0.6106810686178505,-0.004572736565023661,-0.2020854209549725,-0.7187726637348533,0.9155927090905607,0.08599465293809772,0.15656934678554535,0.6604460305534303,-0.16684700921177864,0.1485563567839563,0.3577444041147828,-0.8466762970201671,0.10018551861867309,0.9768142448738217,0.6332869892939925,0.5324369622394443,-0.005382648203521967,0.17940366314724088,-0.7957411906681955,-0.6387807615101337,-0.7366308504715562,0.04084221785888076,-0.11868705926463008,0.20818448206409812,-0.13682004204019904,0.38263347977772355,-0.6862507350742817,0.38082863111048937,-0.17915866849943995,-0.7478552288375795,-0.4401175635866821,-0.7486308701336384,0.6129800174385309,-0.6332103041931987,0.8488207273185253,-0.6495141065679491,-0.14540228946134448,0.7461284105665982,0.16322429897263646,0.7801119964569807,0.7391214296221733,0.489113403018564,0.9510460598394275,0.4345249426551163,-0.21003339160233736,-0.08238040469586849,-0.3951896922662854,0.16912192152813077,-0.5112130963243544,0.6011974825523794,-0.5908828498795629,-0.0285098678432405,-0.7720524305477738,0.11592095531523228,0.9982651374302804,0.08481209771707654,-0.1716556428000331,-0.736274903640151,0.6372339213266969,0.2537391148507595,0.0757390377111733,-0.3980622193776071,0.1879276200197637,0.046648235991597176,-0.9543004552833736,-0.5941586368717253,-0.7134802988730371,-0.8510125298053026,-0.9441640353761613,0.5072598424740136,-0.8559904801659286,-0.9781433441676199,-0.08506238413974643,-0.3925931705161929,0.13342448975890875,0.9008096004836261,0.17523714993149042,0.15175812738016248,0.9509168225340545,0.982321850489825,0.09836163744330406,-0.8481082231737673,0.3396896803751588,0.7920607910491526,0.24720816081389785,-0.7348847039975226,0.8655798630788922,-0.12240970646962523,0.3759867358021438,0.6444079256616533,0.04023646330460906,0.1344267250970006,-0.07559454161673784,-0.07604422513395548,0.5439580287784338,0.360417895950377,-0.26258928468450904,-0.7657597446814179,0.7873945920728147,0.5463802390731871,-0.6805615467019379,0.3630189741961658,-0.9641056330874562,-0.960453883279115,0.5792859410867095,0.8882895181886852,-0.04770362051203847,-0.9455454181879759,-0.35058015771210194,-0.5788865340873599,-0.7665953612886369,0.5115153975784779,0.6416554935276508,0.5923016602173448,-0.7618297361768782,-0.6747310999780893,-0.6535338726826012,-0.22803257079795003,0.1825160374864936,-0.7881446811370552,-0.6645056074485183,0.26901662442833185,-0.496652205940336,0.6005998626351357,-0.9419046826660633,-0.15110164368525147,-0.7854405329562724,-0.08620462147518992,-0.08322935877367854,0.16707916697487235,0.8306405786424875,0.07146237324923277,0.8340701833367348,0.6498337220400572,0.28672203654423356,0.304705151822418,0.6586388703435659,0.34789215959608555,-0.5261647957377136,-0.05175995361059904,-0.4933568285778165,0.011059438809752464,0.37319650361314416,0.4318277696147561,-0.4489562879316509,0.5156512428075075,-0.487579520791769,-0.6466426681727171,0.9161616181954741,0.31057242304086685,0.4542307984083891,0.20398464519530535,0.7014462938532233,-0.6329037873074412,0.8334435266442597,-0.0015613744035363197,-0.3630156693980098,0.2787237809970975,-0.7373900767415762,-0.028855656273663044,0.7486642561852932,-0.6399815799668431,0.9025455736555159,-0.40474018175154924,0.7824793560430408,-0.3353306232020259,-0.22410612693056464,-0.32880269922316074,-0.7461481378413737,-0.8157832846045494,0.8628952708095312,-0.7555108075030148,-0.16451885923743248,0.938985753338784,-0.5687733050435781,0.6033282987773418,-0.7131257699802518,-0.7685163994319737,0.17731765192002058,-0.2568998779170215,-0.9729773728176951,-0.5356077812612057,0.5425925320014358,0.6617260621860623,-0.1679744771681726,-0.5521492161788046,0.649906899780035,0.8177159479819238,0.96033905306831,-0.7436928586103022,-0.5667450996115804,0.1758539229631424,-0.2777486825361848,-0.8721989993937314,0.5816516843624413,-0.4607086954638362,-0.9739961321465671,-0.5547478962689638,-0.8469063346274197,-0.4335678042843938,0.4828399643301964,0.023446911945939064,-0.009385463781654835,-0.8876745495945215,0.09091360168531537,0.49868550430983305,0.8678333982825279,0.827031034976244,0.7968196319416165,-0.11472048284485936,0.7683140998706222,0.6750054233707488,0.21206232206895947,-0.17958922404795885,0.6877194051630795,0.8576082554645836,-0.16458304272964597,-0.07406095275655389,-0.6207494670525193,-0.40216593351215124,0.23008779250085354,0.03859857749193907,0.6640513278543949,-0.6220056316815317,0.7876843041740358,-0.3185151517391205,0.5780356545001268,-0.34842099621891975,-0.33819507621228695,0.14317720523104072,0.7314856634475291,-0.8406414575874805,0.763265969697386,-0.5949522918090224,0.8925496307201684,0.039705404080450535,-0.5381009769625962,0.05601456528529525,-0.0948963537812233,-0.8620349648408592,-0.5774512682110071,0.3552372781559825,0.25454650819301605,0.8469645925797522,0.5507023124955595,0.9099109452217817,-0.7441777344793081,0.3636802234686911,-0.08427477115765214,-0.24888802599161863,0.6661858023144305,0.3878081291913986,0.7524518840946257,0.6990907504223287,-0.9098860179074109,-0.03219246445223689,0.16148331156000495,-0.5584053774364293,-0.5438008774071932,-0.2838038867339492,0.25314368586987257,0.22521202079951763,-0.5424656504765153,0.7482163282111287,-0.5607847729697824,-0.054738317150622606,-0.044758682139217854,0.1641468806192279,-0.7888865168206394,0.9318411909043789,0.6887508644722402,0.8581015369854867,-0.7370472946204245,-0.28676419658586383,0.4700484061613679,-0.079704481177032,0.919768565800041,0.01994666736572981,-0.4360757074318826,0.15628808457404375,0.27897261129692197,0.8710146402008832,0.009052179288119078,-0.3579431800171733,0.7464975602924824,-0.30107582500204444,-0.30995770962908864,0.471244010142982,-0.8897951245307922,-0.815435441210866,0.1938303057104349,0.8917866502888501,0.9920441610738635,0.9752568686380982,0.9788582627661526,0.45699226623401046,0.791951694060117,-0.7316169617697597,0.7126002814620733,0.5810974440537393,0.015141048468649387,0.05389441130682826,0.39058812242001295,-0.6944456133060157,0.19928415166214108,0.6393174938857555,0.4383100485429168,-0.46499546617269516,0.8936208486557007,0.020402449183166027,-0.29960699658840895,0.5001056077890098,0.9380889190360904,-0.7261824486777186,0.1343171065673232,-0.9362566410563886,0.3385635851882398,0.18588695349171758,-0.42628513602539897,-0.0531673738732934,-0.21660251775756478,-0.6231842124834657,0.6124857231043279,-0.2587402309291065,0.12335483124479651,-0.33187931403517723,-0.543202128726989,-0.4371357928030193,0.017493668477982283,-0.12293300731107593,0.12605552515015006,-0.8805887452326715,-0.318635914940387,0.32804619148373604,-0.6809287280775607,-0.3960303757339716,0.13212977396324277,-0.6316711637191474,0.8608091906644404,-0.6656184135936201,-0.3096648957580328,-0.16967109451070428,0.7139370902441442,0.509666545316577,0.4430299811065197,0.6988092260435224,0.29035733081400394,0.11642159614712,-0.08204324776306748,0.6342752063646913,0.9871524800546467,0.4640521868132055,0.42353756073862314,-0.7929594172164798,0.8356712604872882,0.07407368626445532,0.1056973491795361,-0.6841231994330883,-0.7428202098235488,-0.5199293051846325,-0.4603091096505523,-0.8997629908844829,0.205342847853899,-0.9396435208618641,-0.954552361741662,-0.3129076734185219,0.14940027939155698,0.5969527722336352,-0.06845193216577172,-0.12009051535278559,-0.38514019548892975,-0.749672660138458,-0.9639600487425923,-0.7681957655586302,-0.6219879244454205,-0.2799523747526109,-0.8063952270895243,-0.9835755946114659,0.3703357405029237,0.3300399798899889,-0.7870811480097473,-0.5803309986367822,-0.3482655556872487,-0.6869282885454595,-0.8875943906605244,-0.7183643286116421,0.10858910577371716,0.9062715610489249,-0.6903900830075145,0.9099977039732039,-0.9714449378661811,-0.008265096694231033,-0.20738960709422827,0.7425621268339455,-0.9973580436781049,-0.019131528679281473,0.2778273420408368,0.055287867318838835,-0.371978307608515,-0.09177414886653423,0.8655353374779224,0.11346557829529047,-0.3788439673371613,-0.6305859070271254,-0.3519860957749188,0.14921652060002089,-0.6041305088438094,0.5036770710721612,0.17183015495538712,0.4897665153257549,-0.515858787111938,0.9284862941130996,-0.6165509070269763,0.3607415212318301,0.17140546394512057,0.4168274742551148,0.02637412352487445,-0.37914235703647137,-0.03447884460911155,-0.6042695767246187,-0.8543551019392908,-0.26230042008683085,0.3957152250222862,0.06228170171380043,-0.0005216910503804684,0.22320391796529293,-0.8671246953308582,0.433373773470521,0.5831003794446588,-0.4073363458737731,-0.9487749924883246,-0.00847665686160326,0.31610666029155254,-0.37306475453078747,0.11470738425850868,0.6791067440062761,0.45796346571296453,0.23351621627807617,0.14852319145575166,-0.2577211409807205,-0.9626016346737742,-0.8349753152579069,-0.0275795329362154,0.5545181040652096,0.7679676967673004,0.8531759111210704,0.5261990590952337,0.2404037667438388,0.5334731270559132,0.9379399032332003,0.5220912084914744,0.08631949359551072,0.5443480550311506,-0.7223310121335089,-0.7924578785896301,-0.6261093011125922,0.6209094179794192,0.087763337418437,-0.9967093914747238,0.38329918356612325,0.3895766008645296,-0.034491350408643484,-0.655085377395153,-0.20067491848021746,-0.9906863165087998,-0.040934096090495586,0.19585930090397596,-0.8147104121744633,0.19075470929965377,-0.41750761726871133,-0.727269655559212,0.15905604511499405,0.12041214434430003,-0.8633223143406212,-0.7947867773473263,-0.26437053456902504,-0.1503094406798482,-0.662924359086901,-0.33441134076565504,0.9835100583732128,0.6254722131416202,-0.9046876952052116,0.05005221161991358,0.5385795529000461,0.4447186985053122,-0.21950138546526432,-0.9152265074662864,0.1133423550054431,0.8735231789760292,0.9214760027825832,0.6585931875742972,-0.7434464581310749,-0.005253089126199484,0.44870134023949504,-0.6688027479685843,0.19845803081989288,-0.7637297962792218,-0.6698502111248672,0.08907021349295974,-0.5962001737207174,0.43005878292024136,-0.8604436055757105,-0.5790061322040856,0.43394556175917387,0.11732406448572874,-0.1990479128435254,-0.9897700375877321,-0.7660158150829375,0.2074784548021853,0.48681214544922113,0.02630133042111993,0.8605403159745038,-0.8029155167751014,0.40057858917862177,0.44144911179319024,0.5816405289806426,-0.6009324798360467,0.4267597799189389,0.9300245777703822,0.5811149845831096,-0.6521295979619026,-0.5588559051975608,0.2723014815710485,-0.7470713327638805,0.27268857741728425,-0.43150867242366076,-0.9931142339482903,0.30241833068430424,-0.9605197920463979,0.6564981089904904,-0.18032415909692645,-0.3959593176841736,-0.04244242375716567,-0.7094268063083291,0.7637534756213427,-0.40309341670945287,-0.521724603138864,-0.9300298276357353,-0.8681236240081489,0.6330679636448622,0.1942012864165008,0.9189334767870605,-0.9952217540703714,-0.5088298693299294,-0.582328041549772,0.8814127477817237,0.8831450650468469,-0.7475949712097645,-0.291464866604656,0.9508309653028846,0.6507254308089614,-0.22289553983137012,-0.21723234560340643,-0.06976240826770663,0.7884900085628033,0.0727558434009552,-0.24237230233848095,0.9578961133956909,-0.08913804544135928,0.08853491628542542,-0.7565339324064553,0.39090804755687714,-0.40945013985037804,-0.23118016496300697,-0.41535067837685347,-0.993189244531095,-0.8999955332837999,0.8409782447852194,-0.37828068481758237,0.03630987834185362,0.7044167006388307,-0.5314294788986444,-0.230964295566082,-0.23748213984072208,-0.4866357441060245,-0.6695431624539196,-0.5916551253758371,-0.5660297251306474,0.1135425423271954,0.9130237079225481,-0.28896026872098446,-0.49819205747917295,-0.29578710813075304,-0.7871017786674201,0.9597600162960589,0.12320690276101232,-0.440884480252862,-0.9748697294853628,0.7315411828458309,-0.16864542802795768,-0.2735837143845856,0.5945335072465241,0.5439906897954643,-0.7261560964398086,0.24293043790385127,-0.1083822026848793,-0.6258193808607757,-0.8315075980499387,0.8062562393024564,0.927467601839453,-0.5647902828641236,0.29550362937152386,-0.6549319764599204,-0.31768494565039873,-0.7381897317245603,-0.4173073428682983,-0.5615596063435078,-0.8112782258540392,-0.9245183658786118,-0.28506094543263316,-0.1975742089562118,-0.46527778869494796,0.31096555199474096,0.9276635912247002,0.47165287286043167,0.5558651625178754,-0.5621341434307396,0.4142827019095421,0.16775716003030539,-0.8806357262656093,-0.42583355214446783,0.5304588973522186,0.33742479886859655,0.8294313726946712,-0.2057552826590836,0.23515040799975395,0.6098937192000449,-0.009822452440857887,-0.6673212591558695,-0.2800492960959673,-0.20370465936139226,-0.709039316046983,0.009761934634298086,-0.37329282611608505,-0.5684874579310417,-0.649725528433919,0.9917783257551491,0.2069949354045093,0.5334884426556528,0.9938955307006836,0.016320420894771814,0.787350086029619,0.47334151063114405,0.06492100236937404,0.211944994982332,0.7459285482764244,0.5660145999863744,-0.4810089827515185,0.7202460044063628,0.7903717868030071,0.9490022994577885,-0.5415979726240039,-0.440758082550019,-0.4562522289343178,0.39347900776192546,0.22658138489350677,0.6963238371536136,-0.8778839781880379,0.3768351562321186,-0.9140730653889477,-0.5586174102500081,-0.30198542634025216,-0.42416010703891516,0.7381203803233802,-0.21309266006574035,0.7763708638958633,0.47611865820363164,-0.02732545929029584,0.14889995893463492,-0.27130675222724676,-0.1507536554709077,-0.02572637563571334,-0.13980505941435695,-0.7885449877940118,-0.8128543300554156,0.8854701672680676,-0.9051959100179374,0.45554468501359224,0.236861283890903,-0.046490348409861326,0.5135691626928747,0.3764678961597383,-0.7198087405413389,-0.7861458919942379,-0.2404415588825941,-0.6223938297480345,0.5729094762355089,0.5759880496188998,0.6722315885126591,0.052878167014569044,0.2993491222150624,0.3339130566455424,0.7701949854381382,0.7972679086960852,0.8301489618606865,-0.8251192118041217,-0.8868443560786545,0.7612191331572831,-0.3720907811075449,-0.6379950451664627,0.4828024231828749,-0.9457389730960131,-0.15877099242061377,-0.18789472384378314,0.825951034668833,0.9679576489143074,-0.26473654340952635,0.022013758774846792,0.7233675867319107,0.06983438041061163,0.45696660364046693,-0.7259273692034185,0.6012491104193032,-0.25775968795642257,0.8787260400131345,0.07662765262648463,0.7725599105469882,-0.0882567591033876,-0.23840236337855458,0.3370978133752942,-0.3554752888157964,0.33982797618955374,0.004681468941271305,0.6893433895893395,-0.9564972622320056,0.23312702821567655,0.7339857877232134,-0.15031076595187187,0.09712152974680066,-0.9105645581148565,-0.6651395494118333,-0.04708070820197463,0.08204764220863581,0.8899093619547784,0.1571664516814053,0.09840212250128388,0.777512339875102,0.24789452459663153,-0.7124771210364997,-0.2292665122076869,-0.36340318992733955,0.2925647213123739,0.49617485236376524,0.08982807258144021,-0.886557134333998,-0.2844214718788862,-0.1419092328287661,-0.5122385225258768,0.8951937137171626,-0.005110326688736677,-0.5540599231608212,0.6635745433159173,0.15538962837308645,0.212382516823709,-0.10656151035800576,0.9299795618280768,0.5323131107725203,0.3951776251196861,-0.26365491282194853,0.2876026052981615,-0.5397136467508972,0.34540128614753485,0.008880351204425097,0.8188131139613688,0.5392816737294197,0.4993073847144842,-0.9424685654230416,-0.5183539343997836,-0.2976275170221925,0.29818437807261944,0.04540905496105552,-0.3917906149290502,0.6957961800508201,-0.5673825512640178,0.402825144585222,0.5676532732322812,0.3813991523347795,-0.2869747690856457,0.9093085224740207,0.46303846687078476,-0.8304039342328906,-0.995403396897018,0.13840950140729547,-0.6503071081824601,-0.7426947648636997,-0.7906662714667618,0.9803839307278395,0.5902298921719193,0.47973827831447124,-0.553776079788804,-0.25977096846327186,0.5133147384040058,0.4693050333298743,0.19281736109405756,0.16554077388718724,0.9448320143856108,-0.8478056523017585,-0.5124098830856383,0.6473165019415319,0.8992268247529864,-0.5133372689597309,0.6414539599791169,-0.888699128292501,-0.5990017768926919,0.7873812620528042,0.5264979195781052,0.9610085603781044,0.7946957908570766,-0.045218068175017834,0.273135619238019,0.2972814803943038,0.6672716420143843,-0.0334588042460382,0.7543864762410522,0.5492099234834313,0.32307280832901597,0.7483588601462543,0.02843858255073428,0.45442150067538023,0.6917105047032237,-0.06964140105992556,-0.6235990417189896,-0.08029728103429079,-0.15519738383591175,0.7785522011108696,-0.13395930267870426,0.8272315212525427,-0.6055704480968416,0.08240169705823064,0.2952477145008743,-0.4875165713019669,-0.4742229590192437,-0.8426518370397389,0.5567577504552901,0.9214149606414139,-0.8060826556757092,0.6689690547063947,0.7775225508958101,-0.35043690260499716,-0.7084700758568943,-0.9688715864904225,0.5094286743551493,-0.9636209388263524,-0.13110915897414088,-0.3569367565214634,-0.8092037797905505,0.4101989041082561,0.059197474736720324,0.34171003196388483,0.9289833167567849,0.4258147543296218,0.06475554220378399,-0.48524502804502845,-0.21576567878946662,-0.17613512882962823,0.5461056656204164,-0.12295148707926273,0.8866446809843183,0.8116372544318438,0.8024372458457947,0.2836407055146992,-0.534446261357516,-0.4195539057254791,0.8538633640855551,-0.17581214057281613,-0.596233522053808,-0.08399872528389096,-0.4845568286255002,0.11207145964726806,-0.8610839461907744,0.5919527877122164,-0.6807077066041529,0.7351195956580341,0.29154715966433287,0.6483339606784284,-0.5424749525263906,-0.6979431598447263,0.958486545830965,-0.5942465048283339,0.3569268686696887,0.20673686917871237,-0.3092035879381001,-0.26535964710637927,0.9887954494915903,0.6593105052597821,0.5583872450515628,-0.43096453230828047,-0.7502155979163945,-0.8254035320132971,0.6075029959902167,-0.21464644372463226,-0.33506295504048467,-0.513399435672909,-0.07516509108245373,-0.24605211475864053,-0.25413348199799657,-0.6107934438623488,0.022264952771365643,-0.894888938870281,0.25052843941375613,-0.7194122620858252,0.020188383292406797,-0.16207068413496017,0.23208844056352973,-0.8985454849898815,0.6329520372673869,0.2239430733025074,0.6595418555662036,0.9936793749220669,-0.44592426624149084,0.44352553179487586,0.8132296078838408,-0.6342740338295698,-0.7789607779122889,-0.06810752442106605,0.03572681825608015,-0.6883628843352199,0.9645761214196682,-0.24702767189592123,-0.12311513908207417,-0.7165005402639508,0.07119102356955409,-0.5703560058027506,0.30303677869960666,-0.764155310112983,0.3337518614716828,0.2489376780577004,0.3578425724990666,-0.4026014790870249,0.8228570520877838,0.2665364360436797,-0.6441915356554091,-0.3772462592460215,0.1399417188949883,-0.7568140621297061,-0.5653831297531724,0.35457266634330153,0.017104243393987417,0.7985913990996778,-0.09915520343929529,-0.30872361082583666,0.4311081119813025,0.6236956580542028,0.23633998166769743,-0.1397713664919138,-0.7336757257580757,-0.5030254330486059,0.4150624773465097,0.3532624924555421,0.07561420137062669,0.42973061837255955,0.14070777548477054,0.7063021245412529,-0.3744170190766454,-0.7009573597460985,0.8210703614167869,0.7550141182728112,0.513180079869926,-0.5548929092474282,0.6056808815337718,0.07193512003868818,0.9374786373227835,0.7231901190243661,-0.24165903171524405,-0.736265932675451,0.6250488548539579,-0.4294765703380108,-0.1922258324921131,-0.766286292579025,-0.006044428795576096,0.6936544445343316,-0.2780996123328805,-0.2608534060418606,-0.8435173043981194,0.068531081546098,-0.2589379125274718,-0.9529749020002782,0.42745838314294815,0.21048555755987763,-0.592523287050426,-0.9257675902917981,0.20115310046821833,0.594437837600708,-0.03805001452565193,0.4733780096285045,-0.7808177173137665,0.34175696689635515,-0.9955015522427857,0.04816740797832608,0.39411348663270473,-0.9493843670934439,-0.8206408373080194,-0.5120915435254574,-0.6074946681037545,-0.7490524044260383,-0.05153099400922656,0.3065537931397557,-0.3728715470060706,-0.9997641574591398,0.49868900515139103,0.5664453716017306,0.9837006027810276,0.11682330770418048,-0.7433918798342347,0.012381859123706818,-0.276431648992002,0.9104131832718849,0.7831471543759108,-0.6943707456812263,-0.934804770629853,0.7308915238827467,0.03458835510537028,0.3098561647348106,-0.4863230148330331,0.2741562006995082,-0.18898483086377382,-0.3793391464278102,-0.7718522753566504,-0.9289351650513709,0.15148642798885703,-0.8580745342187583,0.9888764061033726,0.8948720255866647,0.2499363301321864,0.2824517306871712,0.2242016359232366,-0.2703782650642097,0.19448900409042835,-0.7975249048322439,-0.009156557265669107,-0.5179447736591101,-0.063760488294065,-0.43734470708295703,0.8347513871267438,-0.6251843506470323,0.26446886407211423,-0.19320026319473982,0.34767782920971513,-0.33895851857960224,-0.30928232287988067,0.8411843269132078,-0.017299951054155827,0.511439932975918,-0.3078927341848612,-0.41008059261366725,0.8212241404689848,0.13604742335155606,-0.9870294034481049,0.021633629221469164,0.08459206856787205,0.067745222710073,-0.2057226267643273,-0.6268229712732136,-0.19368132902309299,0.487054995726794,0.9465773510746658,-0.08453640015795827,0.6415342749096453,0.8366008582524955,-0.9540405385196209,0.6028444850817323,0.26005259808152914,0.7654728000052273,0.24485179921612144,-0.45863263262435794,0.8612315971404314,-0.9808752816170454,-0.34449294628575444,-0.8703307462856174,0.5317212361842394,0.6043047118000686,0.4467801647260785,0.08621479291468859,0.8959039808250964,-0.00865136506035924,-0.40142104867845774,0.23418573616072536,0.4015796505846083,0.2768883132375777,-0.7963316394016147,0.537560535594821,0.2474353932775557,0.80886290082708,-0.08480538334697485,0.26639039255678654,-0.6652654744684696,0.7426972431130707,0.7551746028475463,0.6128401486203074,0.6641351734288037,-0.8408253882080317,0.3302945950999856,0.2679787133820355,-0.08025662507861853,0.06999336648732424,0.24439372634515166,0.7231306117027998,0.5315804155543447,-0.6917724250815809,0.20656107552349567,-0.9903165297582746,-0.25903823832049966,0.5175285353325307,-0.7237565801478922,0.04720474313944578,0.07405094476416707,-0.9050892861559987,0.6079469667747617,0.14890888798981905,0.32872395031154156,0.4761852375231683,0.3926501232199371,-0.6494135726243258,-0.8435145202092826,0.6836077347397804,0.5657198154367507,0.9180018487386405,-0.5316835604608059,0.9738023467361927,-0.2983238543383777,0.5982423545792699,-0.4573519383557141,-0.583674990106374,-0.6463020453229547,0.39380832109600306,-0.5850457800552249,-0.31412093015387654,0.3644988336600363,0.2798019256442785,0.9650150793604553,-0.9913648469373584,-0.6725452188402414,0.5773763586767018,0.6970214531756938,0.893900640308857,-0.06710499618202448,-0.20970715023577213,0.4410647158510983,0.2877469356171787,-0.48326013470068574,-0.3331545446999371,0.43845766549929976,-0.8264403017237782,-0.48632495617493987,-0.41322250943630934,0.8526684404350817,0.1827688510529697,0.5013887607492507,-0.2251074048690498,0.757423582021147,-0.4938956294208765,-0.4994340445846319,0.1330195190384984,0.9772344622761011,0.7647407189942896,0.9473094376735389,0.26791605865582824,-0.02070506103336811,-0.8579853014089167,0.10542802745476365,0.004061416257172823,-0.17750591738149524,-0.6277927914634347,0.28970564901828766,-0.776593963149935,0.5880530579015613,0.8201721562072635,-0.09420873923227191,0.6411548652686179,-0.5618223184719682,0.4781682821922004,0.8699646578170359,0.10491201048716903,0.3675840818323195,-0.04164363816380501,-0.6924989544786513,0.530267589725554,0.4247507927939296,0.46954396227374673,-0.5142092201858759,0.40386086516082287,0.7167430743575096,0.08222183119505644,0.47875714860856533,0.11634748615324497,-0.966610939707607,-0.4869229313917458,0.4799680798314512,-0.3004733775742352,-0.8823786149732769,-0.4352148659527302,-0.30049674212932587,0.4823462385684252,-0.7851275391876698,0.9699315461330116,0.9355963957495987,0.7428844626992941,-0.694644742179662,0.8712135460227728,0.5608901316300035,-0.23723479872569442,0.9538614517077804,0.09180613048374653,-0.3379011466167867,-0.035192540381103754,-0.469553979113698,0.3028667508624494,-0.0646605221554637,0.46149332355707884,0.8348160907626152,0.21790462592616677,0.7112267259508371,0.4036233318038285,-0.8943655658513308,0.6637829020619392,-0.1431072810664773,0.36296196980401874,-0.03771336982026696,0.3755964832380414,0.19401175994426012,0.32746597845107317,-0.8521654354408383,0.9561724290251732,-0.6066940603777766,0.6455570110119879,-0.8908865242265165,-0.027873143553733826,-0.44295994145795703,-0.19140128791332245,0.25436980463564396,-0.6486798273399472,0.945822689216584,-0.8922923575155437,0.46846607187762856,0.5814460124820471,-0.25634106574580073,0.559412095695734,0.8885380742140114,0.8254824308678508,-0.7198332725092769,0.544569602701813,0.40935188392177224,0.9488061894662678,0.625637412071228,0.33643937204033136,0.7157143470831215,0.056996919214725494,0.9651422752067447,-0.7514311107806861,0.22997717605903745,0.8036190904676914,-0.029036936350166798,0.8392003728076816,0.057329386472702026,0.05278968205675483,0.9544340558350086,0.06712670205160975,-0.09815343329682946,-0.26218572864308953,-0.7267624847590923,0.8151499428786337,-0.1405708473175764,-0.6974677741527557,0.31039828062057495,-0.9549307054840028,-0.25405265390872955,-0.5571844303049147,-0.8373272521421313,0.8062563082203269,0.28987362515181303,0.14847406884655356,0.3999094567261636,-0.5438032783567905,0.7691078642383218,0.2152090542949736,-0.026528304908424616,0.48368542874231935,-0.40127774933353066,-0.8720949669368565,-0.2910117353312671,-0.8376767407171428,-0.7420877269469202,-0.6612424133345485,-0.8856136151589453,-0.6968957618810236,0.7060638009570539,0.0580161944963038,-0.9466339275240898,-0.8619960974901915,0.4145959853194654,-0.6757173161022365,-0.45031552389264107,0.3950572730973363,-0.8708041375502944,-0.6550647900439799,-0.3547219391912222,0.7731920233927667,0.3828471568413079,0.2512454348616302,-0.5109401913359761,0.5000436268746853,-0.620594659820199,-0.6955126207321882,0.5451692650094628,0.6147553590126336,0.18403348326683044,0.2468738961033523,-0.7139804186299443,-0.34979471238330007,-0.18559028720483184,0.16190208727493882,-0.8576728962361813,-0.9220257541164756,-0.4266496351920068,-0.9398523326963186,-0.9257163945585489,0.7248559016734362,-0.9392767776735127,-0.350762739777565,-0.466701103374362,-0.8663893975317478,-0.40923494612798095,-0.8392976527102292,0.6512936460785568,0.31363155180588365,-0.1596481380984187,-0.48932236386463046,0.012211147230118513,0.9828581674955785,0.35869227442890406,0.5748867252841592,-0.4829259542748332,-0.19475889950990677,-0.7290272624231875,-0.5730531252920628,-0.7393309939652681,-0.46894644666463137,-0.9447546661831439,-0.5698291333392262,0.051359436474740505,-0.038505383767187595,0.0482138660736382,-0.44399247225373983,0.37871668115258217,0.20700690522789955,0.15663015469908714,0.22010150039568543,0.7706219381652772,0.556831207126379,-0.46286056749522686,0.9443991291336715,-0.03955470072105527,-0.4247248391620815,-0.31151041109114885,-0.17426994908601046,0.8656000643968582,0.8748912615701556,0.9362767534330487,0.22328837169334292,0.4064787169918418,0.130623837467283,-0.3200290007516742,-0.34799158992245793,0.550691295415163,0.6954148854129016,-0.21173141710460186,0.1132773170247674,0.5805657422170043,-0.8533563874661922,0.2921519475057721,0.5956740435212851,-0.695906403940171,0.09358054772019386,0.8063149028457701,0.049210356548428535,-0.20515587832778692,0.6655750824138522,0.8580747367814183,-0.27353839483112097,0.7758207940496504,-0.43047994608059525,0.48809937154874206,-0.7311851615086198,-0.34583604941144586,0.6588379582390189,-0.0317438505589962,-0.9152385825291276,0.2196402307599783,-0.07291675638407469,-0.5215579411014915,-0.36662275763228536,0.577398173045367,-0.5994933382607996,0.4882659073919058,0.6920116329565644,0.7330931327305734,-0.062433348037302494,-0.2622364638373256,0.9774031806737185,-0.7902652877382934,0.426300797611475,0.2198443696834147,0.8608709634281695,0.584982059430331,-0.8504701871424913,-0.6196887805126607,-0.8852997398935258,-0.05253965733572841,-0.15966557525098324,0.2679979996755719,-0.6450798464938998,-0.32247448759153485,-0.2023864327929914,0.41505004232749343,0.48188381269574165,-0.022139104083180428,-0.04374410444870591,0.8570811417885125,-0.7764219990931451,-0.25010638078674674,-0.06739437533542514,0.5162059715948999,-0.8856403552927077,-0.3930535423569381,0.2580247330479324,0.03473928989842534,-0.6239861939102411,0.38018770376220345,0.20393169671297073,0.4971539997495711,-0.2954941466450691,0.03463481180369854,0.9709190297871828,0.789159138686955,0.17238314682617784,0.5449388814158738,0.4647760493680835,-0.3013006579130888,0.9238912458531559,-0.5599249228835106,-0.2890630285255611,-0.07505035866051912,0.08280588174238801,0.9587447210215032,0.774118750821799,0.6024482920765877,-0.47834174428135157,-0.47041627625003457,0.9169708485715091,-0.27438048738986254,-0.40571762900799513,0.8215770525857806,-0.969456066377461,-0.8643039371818304,0.34073877427726984,-0.6319496752694249,-0.7922988445498049,-0.35111548472195864,-0.8687289305962622,-0.9704320193268359,0.13622135389596224,0.010736007709056139,0.9769478035159409,0.029943413101136684,0.7261465308256447,0.9935125452466309,0.49890850204974413,0.17857551807537675,-0.28448427794501185,0.8034379449672997,0.5679324171505868,0.7919281320646405,0.26327582728117704,0.6078006876632571,-0.3881176132708788,-0.5369628192856908,-0.8210666454397142,0.242463496979326,0.5791491684503853,-0.06759867258369923,-0.16193294525146484,0.5016374289989471,0.27183319302275777,-0.882082361727953,-0.0556648769415915,0.5888666673563421,0.48696318408474326,0.9044446828775108,-0.5318369385786355,-0.2541016209870577,-0.3001189357601106,-0.7286626417189837,-0.26883397437632084,0.012825257610529661,-0.9177337158471346,-0.4442875594832003,0.6766488696448505,-0.0797962979413569,-0.4506878615356982,0.7952995863743126,-0.6258775163441896,-0.8063735975883901,-0.9934014570899308,-0.5985811082646251,-0.30288471560925245,-0.8819708498194814,-0.7502288008108735,0.6683666449971497,0.3916940432973206,0.9467945825308561,0.11667327536270022,0.5722521864809096,0.1729437531903386,-0.40555240213871,0.6743125538341701,0.8139996151439846,-0.07948815077543259,-0.5508214188739657,-0.2960456544533372,-0.046395587269216776,0.37028966937214136,0.7951012663543224,-0.507106208242476,-0.04569081263616681,0.3091497519053519,-0.5043020909652114,-0.6108343075029552,-0.014048026409000158,0.9703546836972237,-0.40694973012432456,-0.15033312235027552,0.6290474743582308,-0.9617471499368548,0.9393242243677378,0.42689982522279024,-0.7695401199162006,0.7632715445943177,0.13677884312346578,0.986489440780133,0.16540108527988195,0.9267749581485987,-0.49851349415257573,-0.5816371804103255,-0.33616927452385426,-0.037402679678052664,0.3543922808021307,-0.40561288176104426,0.19522094074636698,0.9225197271443903,0.8693133876658976,-0.024933897890150547,-0.01857756869867444,-0.4539856715127826,0.9354848633520305,-0.4169057095423341,-0.1827116827480495,-0.6181768304668367,-0.1931379297748208,0.008021834306418896,-0.565156421624124,0.06049664365127683,-0.6751891965977848,0.4750425787642598,-0.38495758082717657,-0.15022735530510545,0.08146061655133963,-0.8299841769039631,0.8222861955873668,-0.7675802051089704,-0.047928205225616693,-0.5142021318897605,0.6027406291104853,0.09260718431323767,-0.3189681419171393,0.9632693738676608,0.6747939656488597,0.8608387773856521,0.16066498216241598,0.668970828410238,0.6837461129762232,-0.8343314132653177,-0.2138903201557696,0.004686158616095781,0.6899952720850706,-0.8773417910560966,-0.48675414081662893,-0.659843894187361,-0.3929777853190899,-0.2788407723419368,-0.37379892356693745,0.29713868955150247,-0.06739060720428824,-0.17608214356005192,0.6220246870070696,0.062137470580637455,0.5032307435758412,0.44280283711850643,0.48663146840408444,0.6479015508666635,-0.4196223155595362,0.5150601342320442,-0.8716022786684334,0.7434616107493639,-0.317629539873451,0.6871547261252999,0.17656847229227424,-0.6490149605087936,-0.540053547360003,0.025916476733982563,0.7587428637780249,-0.7449205354787409,0.26620805729180574,0.409455684479326,0.674966957885772,-0.15128813963383436,-0.2331279870122671,0.5416517374105752,-0.09671682910993695,-0.1475060093216598,0.5675754002295434,0.32427932461723685,-0.948104627430439,-0.39704072941094637,-0.7301382170990109,-0.07236286578699946,-0.9036663109436631,-0.5630159783177078,-0.9991959356702864,0.9996823933906853,-0.7607875033281744,0.5648162323050201,-0.6302701020613313,0.31533462414518,-0.19018732802942395,-0.08284982200711966,-0.13886843575164676,0.6272332984954119,0.949406482744962,0.050583107862621546,-0.7263535871170461,-0.6594673474319279,-0.2994655459187925,0.31213994370773435,0.2408262938261032,-0.12084869900718331,-0.15905507607385516,-0.4906878531910479,-0.819938950240612,-0.9336541360244155,-0.36105625331401825,0.6261789104901254,-0.027863267809152603,-0.5025841207243502,0.7851746683008969,-0.6474516647867858,-0.9163220361806452,0.2391934311017394,-0.7211330197751522,0.30968785425648093,0.783389019779861,0.004378037992864847,-0.6685638925991952,0.4849857962690294,0.8930820487439632,-0.9457501354627311,0.9533394277095795,0.6076833591796458,-0.010828370228409767,-0.8433056967332959,-0.5172329409979284,0.23666914738714695,0.11198951536789536,-0.1809867569245398,0.313431843649596,0.6041881218552589,0.8107790015637875,-0.21906417841091752,0.0551573783159256,0.463820846285671,0.49202075228095055,0.9055826244875789,-0.3925282056443393,0.43854941660538316,0.07288582343608141,0.7878618463873863,0.08697793306782842,0.5179229136556387,0.6687056752853096,0.905568381305784,-0.2603225870989263,0.19032447086647153,0.02223379071801901,0.061833241023123264,0.7278565224260092,0.8304944369010627,-0.6240145061165094,-0.15584889287129045,0.2527153743430972,-0.2089875377714634,0.9967867094092071,-0.14659264590591192,0.33239819714799523,0.47197545459493995,0.1306690820492804,-0.924228647723794,0.624142877291888,-0.8335829610005021,-0.8370961584150791,-0.3429936543107033,-0.8778489241376519,0.16953304270282388,0.47399027505889535,-0.6212049089372158,0.2569359219633043,0.4046831661835313,0.08744663372635841,0.602587366476655,0.04293215833604336,0.5777457058429718,-0.7411115919239819,0.025909655261784792,-0.8296970706433058,-0.848082687240094,0.2451757942326367,-0.1662376937456429,-0.15656094811856747,-0.3877729685045779,-0.266023822594434,-0.5693463077768683,0.5532708177343011,-0.37216902198269963,-0.1824758294969797,-0.9734563464298844,0.2830992783419788,-0.9361164434812963,0.5596202258020639,0.08468649676069617,-0.4523830492980778,-0.6332210870459676,0.8450655834749341,-0.8135877018794417,0.13914373191073537,0.4410463306121528,0.8069538231939077,-0.6524741062894464,0.16165330540388823,-0.2450884049758315,0.7887517958879471,0.846615522634238,-0.2404349511489272,0.26115703489631414,0.47668445762246847,0.7009247457608581,-0.0976366768591106,0.7154398988932371,0.08092638477683067,-0.38754442799836397,-0.0456775869242847,-0.29476694064214826,0.02516678860411048,-0.9638361893594265,-0.02801069663837552,-0.3371674492955208,-0.3861080533824861,-0.6846039961092174,0.7413788726553321,0.09748181654140353,-0.11546641262248158,-0.8872940419241786,0.389776892028749,-0.48445685440674424,-0.744356544688344,0.5058673452585936,0.59663579845801,0.1946928622201085,-0.7000556825660169,-0.8196242274716496,0.3050814615562558,0.31588157545775175,-0.3706764280796051,0.787522298283875,0.6677712295204401,0.3885321067646146,-0.6432662471197546,0.012011588085442781,0.6972262370400131,-0.6751844505779445,-0.2400903608649969,-0.5440491000190377,0.8836882733739913,0.4179479843005538,-0.725379316136241,-0.9653926780447364,0.5007805791683495,0.15449621062725782,-0.309562805108726,-0.7451977510936558,-0.11989190522581339,-0.3411358390003443,-0.28701964393258095,-0.9685135660693049,-0.9237384819425642,0.7654238664545119,0.1762249623425305,-0.27448652032762766,-0.015348612330853939,-0.5479348818771541,-0.5409794431179762,-0.16649792529642582,0.5729600037448108,0.15998886665329337,-0.5897450638003647,-0.8743366282433271,0.6684903330169618,0.04728323360905051,-0.016383607871830463,0.3189457356929779,0.863696928601712,-0.8226795797236264,0.04242823598906398,-0.31634384021162987,-0.11566680576652288,-0.5832566558383405,0.8166558439843357,0.7223614966496825,-0.32776210084557533,-0.42505868151783943,0.6927070962265134,-0.4031324479728937,0.4884760375134647,-0.17346030287444592,-0.41405631927773356,-0.0725092045031488,0.22492517111822963,0.28495409386232495,0.864890712313354,0.23733306908980012,-0.48517915653064847,0.22698152344673872,-0.8961552740074694,0.6245594960637391,0.136764801107347,-0.347080800216645,0.5428304267115891,0.8057035626843572,-0.3759252103045583,0.3070267727598548,-0.4508319729939103,-0.4779170206747949,0.12530596880242229,-0.10590428160503507,-0.029389921575784683,-0.3808431411162019,-0.5262535898946226,-0.2609132374636829,-0.6229230528697371,0.7513796947896481,0.9046909618191421,-0.4212877908721566,-0.38220213865861297,0.6381995994597673,0.7723401496186852,0.262991841416806,-0.41002117982134223,-0.6230365252122283,-0.42104623140767217,-0.34031497361138463,-0.9787705945782363,0.15487641748040915,0.3171397624537349,0.06212156871333718,-0.02552473358809948,0.41831232886761427,0.7228216216899455,-0.673838859423995,0.5929776155389845,-0.8456955249421299,-0.6677251569926739,0.10621181922033429,0.384809625800699,0.03830455057322979,-0.759943903889507,-0.9855884467251599,0.7087223259732127,-0.07046849885955453,-0.3126748353242874,0.5028204885311425,-0.405917514115572,0.4010891932994127,-0.2792463731020689,0.4638916216790676,0.717799121979624,0.30684992717579007,0.23519622394815087,-0.28166150068864226,-0.691047830041498,-0.59874163614586,-0.8035524100996554,0.5597739680670202,-0.1602907357737422,-0.5083866519853473,0.7177909021265805,-0.32961291121318936,0.47083489317446947,-0.4789394624531269,0.45552225038409233,-0.3319463157095015,-0.49025206035003066,0.17415132327005267,0.968078242149204,0.18197093019261956,0.630051186773926,-0.7732524774037302,-0.167042157612741,0.6408093622885644,-0.5588770592585206,-0.18423852091655135,-0.8594635338522494,0.9929977497085929,0.6755629424005747,-0.12779435003176332,0.06877504847943783,-0.39604359632357955,0.7707873983308673,0.33436496229842305,0.9849576312117279,0.7906648237258196,-0.6858126153238118,-0.5426252838224173,-0.09526362176984549,0.6696841390803456,0.13521992228925228,-0.0018628970719873905,-0.49162610387429595,0.14628215227276087,0.01581363519653678,0.8904250212945044,-0.3754992769099772,0.13787186285480857,0.538718274794519,-0.2986996090039611,0.9402709859423339,0.6177997528575361,-0.7863131458871067,0.4788647345267236,-0.10829929634928703,-0.3190895295701921,-0.3595194383524358,0.6009445684030652,0.07027381006628275,0.14263207465410233,-0.31257054302841425,-0.2110460577532649,0.2744158352725208,0.9060233077034354,0.8136697458103299,-0.884032528847456,0.9716477179899812,0.854152808431536,0.7442978555336595,0.8021280602551997,-0.8378101806156337,0.979660902172327,0.6732901502400637,-0.41439360473304987,-0.9659165642224252,-0.6277764332480729,-0.164677067194134,-0.5349198775365949,0.8192493412643671,-0.42257251823320985,-0.4138392973691225,-0.16485341405496,-0.33111887611448765,-0.9227117551490664,0.9191421158611774,0.830209581181407,0.6927513224072754,-0.5791922537609935,0.022729829885065556,-0.18399920500814915,-0.8629874428734183,-0.4084550919942558,-0.3911355617456138,-0.1048971158452332,0.8069707620888948,-0.5505731790326536,-0.9150321162305772,-0.8251966875977814,0.20254663564264774,-0.7213353128172457,-0.6080153216607869,-0.25188553472980857,0.033281230833381414,-0.8953743842430413,0.5173945231363177,-0.725638032425195,-0.33281506365165114,0.337945026345551,-0.27940412517637014,-0.977053961250931,-0.18221971578896046,-0.9301517345011234,0.09758075419813395,0.5279464172199368,-0.10951893962919712,0.18521514488384128,0.17686434369534254,0.763008157722652,0.5872424659319222,-0.6485889488831162,-0.23784302547574043,0.010852108709514141,-0.4460990005172789,-0.6776099908165634,-0.7392936539836228,0.46009053150191903,0.7742674751207232,-0.9956115568056703,-0.007248593959957361,0.33937565702944994,-0.0756899667903781,-0.6534833977930248,-0.029807804618030787,0.6784439883194864,-0.7261969274841249,-0.4134298348799348,0.04243978951126337,-0.2542781950905919,-0.6821336485445499,-0.8530310201458633,0.6836166945286095,-0.6646805689670146,0.6744688637554646,0.34933393355458975,0.5919379815459251,-0.24188538128510118,-0.7184950252994895,0.24606651021167636,0.42312265280634165,-0.874755322933197,0.551525566726923,0.6017574039287865,-0.7178911529481411,-0.041249342262744904,0.31314157834276557,-0.2550047389231622,-0.1385864964686334,0.07692157430574298,0.36968041164800525,0.05452554579824209,0.18123985780403018,0.621518989559263,-0.006399547215551138,-0.029452198185026646,0.18941747257485986,-0.41139809414744377,-0.7530558705329895,0.29522138461470604,-0.8945228159427643,-0.5263036233372986,0.3247151826508343,0.9894220205023885,0.07611243845894933,0.30552602000534534,0.7691329242661595,0.7850118661299348,-0.8430585530586541,-0.10142068238928914,0.3243696792051196,-0.5571810360997915,0.4567395867779851,-0.7883297745138407,0.469450194388628,-0.7348061446100473,0.1016558245755732,-0.7606868310831487,0.7637886465527117,0.9798462931066751,-0.20419104024767876,-0.7220543790608644,0.2387017491273582,-0.5851414371281862,0.37753703398630023,0.1307954196818173,0.33431195421144366,0.37302762316539884,-0.9195908908732235,-0.03920009173452854,-0.21028003562241793,0.9903354039415717,-0.8780681719072163,-0.9002374117262661,0.884658903349191,-0.16317449836060405,-0.5589732336811721,0.28999136481434107,-0.8054372337646782,0.5611938997171819,-0.1739609343931079,-0.20255576353520155,0.5279810321517289,-0.22591505153104663,-0.4980605021119118,0.5975386397913098,-0.32563086226582527,0.6513111516833305,-0.7716870098374784,0.5576761933043599,-0.6451045447029173,0.4890890894457698,0.06433079624548554,0.26092646084725857,-0.5101352888159454,-0.7210820857435465,0.14743796549737453,0.3507861141115427,-0.14362348290160298,-0.6568253571167588,-0.2474995581433177,-0.32843798445537686,0.6452328800223768,-0.6608924241736531,0.9831005996093154,0.9725570743903518,0.26991869136691093,0.40358754293993115,0.6685835989192128,0.4477642490528524,-0.9371666545048356,-0.8193012024275959,0.23349070642143488,-0.6176268178969622,-0.20629235543310642,-0.31693076621741056,0.6496477853506804,-0.02556892205029726,0.5325937224552035,-0.0860205297358334,0.31306249368935823,-0.20611159037798643,-0.04479311592876911,-0.40583031065762043,-0.05332879349589348,-0.9786902228370309,0.48126645712181926,0.4941076999530196,0.9360501496121287,0.8287883955053985,0.8274895930662751,-0.10979461064562201,-0.7171842139214277,-0.1428179768845439,0.545826805755496,-0.9110523075796664,0.3356639649719,0.22145418962463737,-0.2125498428940773,0.17551801912486553,-0.33819920336827636,0.5709883752278984,-0.4937525410205126,-0.3038666448555887,-0.89896634593606,-0.169162277597934,0.43574621016159654,-0.08545595966279507,0.7452305275946856,0.7453994508832693,-0.8359990119934082,0.3699207231402397,0.9661057563498616,-0.7275538612157106,-0.2360152555629611,-0.3010710487142205,0.08791592484340072,0.48886626260355115,-0.057311237789690495,0.9870186606422067,-0.7220739210024476,0.6589616271667182,-0.7446708846837282,-0.2554051037877798,-0.21098346402868629,0.23925624042749405,0.360543267801404,0.811053077224642,-0.6990468110889196,-0.4528280287049711,0.4708197619765997,0.0771736684255302,-0.049530792981386185,-0.6042629568837583,-0.054218598641455173,0.42445681849494576,-0.967501147184521,0.49459957843646407,-0.30719354934990406,-0.7033649068325758,-0.7829737663269043,0.3061386775225401,-0.6483379951678216,0.534245980437845,-0.5698074512183666,0.48837336990982294,0.6352686919271946,0.21713343542069197,0.21961067896336317,-0.7126342435367405,0.3517272034659982,-0.5099653392098844,-0.3812060165219009,0.01987533550709486,-0.4015985820442438,0.310173446778208,0.3963017724454403,0.9642576281912625,0.9842833420261741,-0.7532299812883139,-0.6658607148565352,-0.711552124004811,0.16593252401798964,0.7720936792902648,0.011242720298469067,0.1399063365533948,-0.04972688900306821,-0.7374367462471128,0.7485615634359419,0.5314718503504992,-0.6652646088041365,0.7930161897093058,0.32619574666023254,0.9770369702018797,0.3987456979230046,0.8858987204730511,-0.7427935544401407,-0.5247572674416006,-0.6310562007129192,0.08089379081502557,0.4302682518027723,0.8510144064202905,0.16502539720386267,0.07021269202232361,-0.8806299674324691,-0.254276589024812,-0.75181546760723,0.4586116597056389,-0.8394805593416095,-0.3972441968508065,0.9144496605731547,-0.5732138529419899,0.119279102422297,-0.8116656709462404,0.26258353097364306,0.7520978897809982,0.9764756034128368,0.17477024206891656,0.024362212978303432,-0.12305515352636576,-0.926667963154614,-0.34828516840934753,-0.21007414069026709,-0.3768092901445925,0.19362270319834352,0.9807484135963023,-0.08496647560968995,0.9503271114081144,0.6888460796326399,-0.31478845374658704,0.21701234998181462,-0.6858768751844764,0.3047961429692805,0.5775976092554629,-0.8180674337781966,-0.93351018615067,0.40042561292648315,0.6397433625534177,0.1996676749549806,0.10338444961234927,0.704956152010709,-0.5989277665503323,0.6218711519613862,-0.7759423064999282,-0.10296662384644151,-0.6629489166662097,0.2896090098656714,-0.11472104769200087,0.06327802129089832,-0.26851436542347074,-0.20298808673396707,-0.9408152992837131,0.3980705705471337,0.6478637349791825,0.6359279076568782,0.45449415827170014,-0.7104030381888151,0.1125844488851726,-0.70145272789523,-0.473896274343133,-0.49262266466394067,-0.3403573762625456,-0.6302582751959562,-0.27821443136781454,0.22345110261812806,0.9613899677060544,0.02298252424225211,-0.21813724283128977,-0.10853174002841115,0.9763449016027153,0.8167043793946505,0.6617454374209046,0.47289945976808667,-0.45329284062609076,0.22773746587336063,0.07673367066308856,-0.13451349642127752,0.9548918968066573,-0.8188184387981892,0.5414766585454345,-0.4411931224167347,0.6922942781820893,0.5372501472011209,0.3836738606914878,-0.3803194356150925,0.96704505616799,0.9963419283740222,-0.22224075766280293,0.42907551070675254,0.08209529239684343,-0.8120832601562142,0.21979919960722327,-0.8665697565302253,0.11662254296243191,-0.012303698807954788,0.8740329397842288,-0.691711827646941,-0.20674592349678278,-0.5997245544567704,-0.5383061990141869,-0.11281953798606992,0.8513399534858763,0.8382606110535562,-0.6861998997628689,-0.5185317383147776,-0.5715715801343322,-0.9826904167421162,-0.8818774530664086,-0.672253533732146,0.43611316941678524,-0.7450803727842867,-0.621999204158783,-0.7685856567695737,0.9902172507718205,0.878311850130558,0.9705617404542863,0.24978633364662528,-0.2029240964911878,0.17855559894815087,-0.7610235903412104,0.26858736481517553,0.06330901896581054,-0.8859019572846591,-0.6422586333937943,0.8232754948548973,-0.0646789357997477,0.9590053646825254,0.3249973156489432,0.4381153602153063,0.13330844091251493,0.46391628310084343,-0.04570436477661133,0.07418568804860115,0.7142277513630688,-0.5174250118434429,0.23802392976358533,0.7191663701087236,-0.4526642635464668,0.4937788606621325,-0.2371290880255401,0.4513619360513985,0.16718446649610996,0.16071195993572474,-0.8724723192863166,0.6503030396997929,-0.9276678962633014,0.07750739250332117,0.13881306303665042,-0.715943543240428,0.0935263098217547,-0.902856373693794,-0.19637362519279122,0.05526411160826683,0.9608811014331877,-0.18054544925689697,-0.23398410622030497,0.5247980249114335,0.8924762541428208,0.48517198069021106,0.898799367249012,-0.5683727371506393,0.4528225902467966,-0.19787743734195828,0.260600920766592,-0.9987575896084309,0.7474691369570792,-0.00782702211290598,-0.6470711636357009,-0.5496889795176685,0.5018335091881454,-0.30556327383965254,0.707257176283747,-0.8600367922335863,0.0948334583081305,-0.908963839057833,0.6964595778845251,-0.5931829060427845,0.9431601776741445,0.1214334242977202,-0.3491614651866257,0.1144549991004169,-0.15496372245252132,0.565320442430675,0.6069401009008288,0.7317646532319486,-0.8539636707864702,-0.8979740487411618,-0.396714445669204,0.3413253636099398,0.9626803649589419,0.6155460807494819,0.293292673304677,-0.7359462906606495,0.44794331584125757,-0.07831993699073792,-0.9808509866707027,-0.7511868495494127,0.7883041901513934,-0.02723939623683691,-0.5465737520717084,-0.8779392698779702,-0.9755694596096873,0.9836208005435765,-0.1042236303910613,-0.1747170058079064,-0.15098401391878724,0.9483653474599123,0.2618448524735868,0.5256965328007936,-0.2710800264030695,-0.2601935123093426,0.49533142521977425,0.34266458358615637,-0.545528310816735,0.7777750180102885,0.4398305071517825,-0.9442798011004925,-0.9421567502431571,0.9980405122041702,-0.282880580984056,0.010393599048256874,0.5042522246949375,-0.4305142774246633,-0.7768197758123279,0.8443337338976562,-0.33997323317453265,-0.43199731409549713,0.8074345723725855,-0.6585926506668329,0.10307965753600001,0.1882903496734798,0.8740002051927149,0.04522727429866791,-0.7945863278582692,-0.9886882626451552,-0.028077661991119385,-0.1530327871441841,0.8021205994300544,0.490035449154675,0.3864633124321699,0.04474738799035549,0.049759024288505316,-0.9727049777284265,0.0249868156388402,-0.25701376609504223,-0.17798295617103577,0.10041175596415997,-0.8972230297513306,-0.014713398180902004,0.47150811925530434,0.6623587906360626,-0.6037098909728229,0.8834499665535986,0.9769082786515355,-0.31601048866286874,0.8922578543424606,0.2945339628495276,-0.8584655066952109,-0.5765445111319423,0.6364807137288153,-0.24135701544582844,0.06680941628292203,-0.7210544236004353,0.7863547625020146,-0.10797156672924757,0.1176719143986702,0.046275461092591286,0.9499431545846164,0.841316110920161,0.8440828081220388,-0.459302781149745,0.10980880167335272,0.5684859193861485,0.3940960024483502,0.5842502154409885,0.243519916664809,0.24195940420031548,-0.045969091821461916,-0.3860070342198014,-0.4688067603856325,0.0868705534376204,0.9724559779278934,0.10591602139174938,-0.6386918034404516,-0.0818194430321455,0.5366994952782989,0.350374199450016,0.8076074114069343,0.5915045188739896,-0.3322207508608699,-0.579347241204232,-0.40447041019797325,0.2749205422587693,0.224368778988719,0.8976155347190797,0.48478537146002054,-0.5217351363971829,0.8326189555227757,-0.31807953864336014,0.04389569954946637,-0.3872297005727887,-0.6645309734158218,-0.05787743907421827,0.5468473769724369,-0.6706440411508083,0.5483154556713998,-0.4426168818026781,-0.34402348659932613,0.5448039062321186,-0.06893391394987702,0.8445586091838777,-0.8593985526822507,-0.8766276291571558,-0.08917162986472249,-0.55410236120224,0.33138988353312016,-0.39203344844281673,-0.027998500037938356,-0.8389634289778769,-0.7840543780475855,0.5290520386770368,-0.8886734219267964,0.7897917367517948,0.48918005218729377,0.7234708680771291,0.8721571606583893,0.6318876608274877,0.6836161194369197,0.7008485244587064,-0.19829770177602768,-0.17294941190630198,0.16675393469631672,0.23463399009779096,-0.8186181411147118,0.45606806641444564,0.5861468738876283,-0.6616601524874568,-0.6751661552116275,-0.850425542332232,0.23401107033714652,-0.6372759384103119,0.9975814828649163,0.7896216795779765,-0.9850640292279422,-0.9633304313756526,-0.1127105369232595,0.8294166754931211,-0.4843956525437534,-0.8219125866889954,-0.0076956977136433125,0.8149380297400057,-0.9886988648213446,0.8829607018269598,0.3526221071369946,-0.5172203755937517,-0.8867119029164314,-0.19791741529479623,-0.25177238788455725,0.26903008483350277,-0.06009073555469513,0.8987269424833357,-0.37102983612567186,0.8886767709627748,0.13226701086387038,-0.66632039565593,0.6632500900886953,-0.5904585835523903,0.6788587747141719,-0.12935388134792447,-0.028826638124883175,-0.6699949856847525,0.17901207506656647,0.33183024311438203,-0.2613050793297589,0.8955220407806337,0.6588030746206641,-0.783967271912843,-0.9153473996557295,0.037892555352300406,-0.34720605658367276,0.6109518497250974,-0.7643982539884746,-0.5144802872091532,0.47941298922523856,0.36638980684801936,-0.8808279158547521,-0.6460071066394448,-0.8102816860191524,-0.28541219141334295,0.3637124337255955,0.49271240644156933,-0.6437002806924284,-0.5053849071264267,0.9687635744921863,0.35767290042713284,0.232118911575526,0.754745407961309,0.010526866652071476,0.8114061965607107,-0.4139511240646243,0.11314332066103816,0.2849146882072091,0.4609218304976821,0.41481046192348003,-0.5850349864922464,-0.693738492205739,0.8370241238735616,-0.10917662363499403,-0.7830406865105033,0.9087242968380451,0.8989424328319728,-0.30012982431799173,-0.8690228359773755,0.43830782175064087,0.8234694018028677,0.8267224575392902,-0.873069531749934,0.18711402546614408,0.5027671162970364,-0.718170968350023,0.6739425398409367,-0.4611480189487338,-0.3846640745177865,-0.16173719009384513,0.7764446893706918,-0.01915115350857377,0.016076390631496906,-0.7730793585069478,0.27268202137202024,-0.7751702000387013,-0.7968188663944602,0.22010633954778314,0.0737859383225441,-0.2000651410780847,0.3344461931847036,0.6304626520723104,-0.17391610238701105,-0.7924461988732219,0.21762438723817468,-0.10176038462668657,0.14811153570190072,0.16548251453787088,-0.30968962144106627,0.37737058475613594,0.7283545574173331,-0.30186813278123736,0.7795427716337144,0.9204843840561807,0.8269893997348845,-0.4151955842971802,-0.7805745517835021,0.2861630925908685,0.32540365774184465,0.5304828262887895,-0.8545745168812573,-0.3273605527356267,-0.6861665025353432,-0.8532688403502107,-0.1551955407485366,-0.6620537545531988,-0.5835586572065949,-0.38610903080552816,-0.8330067927017808,-0.21049295831471682,-0.29236686788499355,-0.7385593098588288,-0.9593346449546516,0.9837928242050111,-0.9326121071353555,-0.7629054388962686,-0.2620196011848748,-0.30712055368348956,0.6982170320115983,-0.3231335082091391,0.6822604001499712,0.8640388869680464,0.7545065297745168,-0.851723674684763,-0.07204846478998661,0.5831783995963633,-0.9258695500902832,0.0918875397183001,0.736610806081444,-0.8225586437620223,0.14806311903521419,0.859055242035538,0.9731330899521708,0.7399024139158428,-0.3852022080682218,0.890274912584573,-0.7521616453304887,-0.05822387943044305,-0.4655383275821805,-0.24413774441927671,0.8061003126204014,0.3351008491590619,-0.10009770933538675,-0.5439825989305973,0.11202587001025677,-0.01773837534710765,0.11868888093158603,0.09416837384924293,0.8343202327378094,0.1857619066722691,0.5411158972419798,-0.11067180661484599,0.34274941589683294,-0.9081359347328544,-0.5319152940064669,-0.13757152343168855,0.3621771279722452,0.36561994021758437,-0.1818461767397821,-0.04537932015955448,-0.7198020401410758,0.968587807379663,0.14969888282939792,0.46435706689953804,0.3445116085931659,-0.544409079477191,-0.6855802563950419,0.9024006691761315,0.8129636291414499,0.1703586196526885,-0.08868133975192904,-0.6771242939867079,0.7504187263548374,0.07587681245058775,0.22528505371883512,0.5564665049314499,-0.7266732039861381,-0.577260032761842,-0.5232028835453093,-0.8358824956230819,0.19165020529180765,-0.35581458220258355,-0.4593807882629335,-0.42230590945109725,0.6123313214629889,0.8050380209460855,0.8729570447467268,0.00834430567920208,0.5776094826869667,0.09730128990486264,-0.3877820852212608,-0.33025188371539116,-0.48369195498526096,0.5298252012580633,0.2899446221999824,-0.6378716072067618,-0.7635015901178122,-0.06675117462873459,-0.9098628265783191,0.7523753866553307,-0.39225705387070775,-0.3652746081352234,0.0959842624142766,-0.7172229951247573,-0.7203992130234838,-0.004539377521723509,-0.21371046360582113,0.22133327135816216,-0.04169836873188615,0.8530127038247883,0.4044011775404215,-0.14081769296899438,-0.31590599520131946,-0.4088461431674659,-0.42148861894384027,-0.7460188972763717,0.2542252177372575,0.4933105017989874,0.12785773212090135,-0.6604191395454109,-0.48373677767813206,-0.63903045700863,-0.7768939933739603,-0.21201281994581223,0.22538362117484212,0.31084528053179383,0.16116882814094424,-0.5846148729324341,0.7770703891292214,-0.07741235243156552,-0.4496245328336954,0.35645250137895346,0.8567788852378726,0.46270054671913385,0.6619497910141945,0.2445066412910819,-0.8884966364130378,0.7440267587080598,-0.8610554458573461,-0.28786007640883327,0.46280027413740754,-0.6533229718916118,0.9180182162672281,0.031069690827280283,0.5243763504549861,-0.8888921546749771,-0.3498058137483895,-0.34788614278659225,0.6490225018933415,-0.10864792391657829,-0.9044430456124246,-0.13874352118000388,0.02822191407904029,-0.2777091874741018,-0.13550865184515715,0.4044489343650639,-0.8074655807577074,0.8310410329140723,0.9606751338578761,0.22712451126426458,-0.36303782276809216,-0.8766303756274283,0.3752153357490897,0.7508923043496907,0.11617014510557055,-0.22026953380554914,-0.3300264850258827,-0.34224323742091656,-0.541155805811286,-0.07771030627191067,-0.2187878885306418,-0.46198885422199965,-0.46262755198404193,-0.14142384519800544,0.9039487200789154,0.6827672179788351,0.3561866753734648,-0.1060629403218627,-0.8960945471189916,0.8333164947107434,0.8591874134726822,-0.21351800439879298,0.8500941144302487,0.9085740600712597,0.07597401831299067,0.6125565646216273,-0.05682192649692297,-0.7949887993745506,0.33799658296629786,0.2212442778982222,0.08040898153558373,0.8543227105401456,0.049350809305906296,-0.40072961105033755,-0.4210548987612128,-0.22755862213671207,0.3260002448223531,-0.19108929159119725,0.8301935438066721,-0.4425623076967895,-0.7219161237590015,-0.9638395635411143,0.6398593429476023,0.3287080689333379,0.449423904530704,-0.7118083657696843,0.056131800170987844,-0.173660967964679,0.30165357422083616,0.25880022579804063,-0.1479158722795546,0.8835664000362158,0.53037692559883,-0.9684469467028975,-0.21380363265052438,-0.9290767922066152,0.2990976390428841,0.5081162694841623,0.0599211510270834,-0.2070337268523872,0.4300173441879451,-0.6185218235477805,0.30680083157494664,-0.745673131197691,0.07819992117583752,0.7209603637456894,0.9110277402214706,0.8201938923448324,-0.6926879705861211,-0.9657866014167666,0.7225296488031745,-0.077419837936759,-0.49033847032114863,0.45687727676704526,-0.8411024152301252,-0.1541421376168728,-0.17378870444372296,0.561120543628931,0.18174968101084232,0.5388515656813979,0.15965682547539473,-0.9625769220292568,-0.939565995708108,-0.9678800562396646,-0.7332377978600562,-0.1805895627476275,-0.5316867050714791,-0.22544809570536017,-0.8482863260433078,-0.6219738209620118,0.693425405304879,-0.23933463962748647,0.531853515189141,-0.13588996650651097,-0.9364739120937884,-0.9776750043965876,0.8938842434436083,0.7770144613459706,-0.09621862042695284,-0.8924483647570014,-0.013438232708722353,-0.3987484984099865,-0.10939700296148658,0.017393298912793398,0.7366683161817491,-0.5804293849505484,-0.6606596242636442,0.31603819597512484,-0.1518082502298057,0.613125916570425,-0.2183512425981462,-0.0861214017495513,-0.1328874547034502,0.6443684361875057,-0.5062305694445968,0.40803208434954286,0.3742428570985794,-0.7772953701205552,-0.17595016304403543,-0.8442866993136704,-0.09951805789023638,0.0744981449097395,0.10280672973021865,0.5026009851135314,-0.4392140139825642,-0.6780651621520519,-0.287392046302557,-0.8311306424438953,-0.2686856905929744,0.45186516735702753,-0.41715350234881043,-0.41043554013594985,-0.6011199839413166,0.45899265306070447,-0.5221713469363749,0.24710735771805048,0.312930247746408,0.9863559757359326,-0.2686537690460682,-0.009691220242530107,-0.6953596053645015,-0.8446632865816355,-0.3527271510101855,-0.8090480924583972,0.8257045769132674,-0.07758427551016212,-0.598272277507931,0.913616897072643,0.29393497621640563,-0.042824309784919024,0.7893841052427888,-0.8956198208034039,-0.8546955059282482,0.22172480216249824,0.8432347900234163,-0.25047509698197246,-0.7331465394236147,0.3111386150121689,0.22285098349675536,-0.9744093860499561,-0.351890099234879,-0.06096251681447029,0.8770473022013903,0.1948417373932898,0.9974191696383059,0.9978928435593843,-0.10443751653656363,0.15815294487401843,0.3241863292641938,0.1423261659219861,0.7746950648725033,0.5536081963218749,-0.9212679914198816,0.7375932317227125,-0.05067477421835065,-0.03459297679364681,-0.0024438034743070602,0.5189750879071653,0.9472521170973778,-0.43263401510193944,0.47093825321644545,0.43048969842493534,0.97086730459705,0.03415974136441946,0.3198673422448337,0.8300090846605599,0.1300394949503243,-0.11851341417059302,0.9253367432393134,0.9743096265010536,0.6238783556036651,-0.7331020692363381,-0.7479447089135647,-0.7861768463626504,0.5061257840134203,0.4575524381361902,-0.6707565747201443,-0.9386099688708782,-0.36135512264445424,-0.7537938836030662,0.5497986576519907,-0.5098181599751115,0.22731735510751605,-0.7834833534434438,0.06010617781430483,-0.30543650314211845,-0.33440797915682197,0.6784362737089396,0.6641711937263608,-0.2475035935640335,0.5919016227126122,0.42098163859918714,0.8821770343929529,-0.6341829234734178,-0.6154251983389258,0.6877468950115144,0.9023193060420454,-0.6513648782856762,-0.925011308863759,0.438015622086823,-0.18130310252308846,-0.9235400357283652,-0.8881027796305716,0.26510487822815776,-0.05819173064082861,-0.8373498311266303,-0.26416146475821733,0.9253045562654734,-0.28485185746103525,0.9483387735672295,0.5808334019966424,0.02853644359856844,-0.4712775363586843,-0.21245850808918476,0.5767404404468834,-0.8466863846406341,-0.09665405564010143,-0.4025586056523025,0.21994470292702317,0.5727554028853774,0.12562678521499038,-0.18140353402122855,-0.6051857331767678,-0.37372114369645715,0.10166617063805461,0.11187537340447307,-0.41324659856036305,0.898047688882798,-0.8228830154985189,0.9483785857446492,0.3276618830859661,-0.7720729899592698,-0.30796150397509336,-0.4515194986015558,0.736212195828557,-0.23962210630998015,0.8024340542033315,-0.9555731834843755,0.11532390303909779,0.41104894736781716,-0.30881233466789126,0.8432266786694527,0.6454361048527062,-0.04547622334212065,-0.6473358729854226,0.6158205792307854,-0.7851873179897666,0.2265159860253334,-0.2524713212624192,-0.8806831515394151,0.126249716617167,-0.9993664543144405,-0.266427481546998,-0.2535113734193146,-0.5309243202209473,-0.4477900406345725,0.7948049493134022,0.28686810471117496,-0.2862699693068862,0.3368160887621343,-0.9911628225818276,-0.8813758511096239,-0.49454890890046954,-0.6826861896552145,0.5108648128807545,-0.6711210729554296,-0.607095540035516,0.2582704103551805,-0.007835748139768839,-0.8596661812625825,-0.1385238477960229,0.916995411273092,-0.7885152255184948,0.23546078242361546,-0.1998294647783041,0.7856776411645114,0.13617260800674558,-0.6812361110933125,-0.7327751531265676,0.15215683868154883,-0.23403270076960325,0.9604650908149779,0.6024507614783943,-0.20291349152103066,0.16030970215797424,-0.08065964886918664,0.6621956629678607,0.1644964781589806,-0.17401742981746793,0.9360018353909254,-0.3595347492955625,-0.7489041667431593,-0.8386196247301996,-0.7594484719447792,-0.28843807708472013,0.32173242419958115,-0.3452321686781943,-0.20795378787443042,0.3702735770493746,-0.1888234461657703,-0.025496191810816526,0.6049472796730697,0.9784232564270496,-0.4177285763435066,-0.2687122616916895,-0.06798101961612701,-0.23311769450083375,-0.5297689777798951,0.16576471459120512,-0.16628485498949885,0.44448222359642386,-0.42139036674052477,0.5865699634887278,0.4378229626454413,-0.9539802833460271,0.25776864401996136,0.5108947600238025,0.21113198529928923,0.9447538638487458,0.46312430687248707,0.6519312844611704,-0.8132451185956597,0.9183996454812586,-0.72681745281443,0.948596210218966,0.977766431402415,0.23008770821616054,-0.5326942866668105,0.6663981066085398,0.42438872111961246,-0.8597894432023168,-0.044029548298567533,0.5620570350438356,0.1313833501189947,-0.901871363632381,-0.808665041346103,0.06373453652486205,0.6930360333062708,0.6503488351590931,0.3732294482178986,-0.3152094017714262,-0.2902821535244584,-0.5651884754188359,-0.9977353597059846,0.008407096844166517,0.28815265325829387,-0.7384714242070913,-0.3963754326105118,0.4593512136489153,0.354274564422667,-0.050503404811024666,-0.09776205848902464,0.9829348991625011,-0.25845508510246873,-0.5495636793784797,0.4194531631655991,0.981035599950701,-0.6020493172109127,0.8300650715827942,-0.07760251127183437,0.5911139883100986,-0.42224691109731793,-0.43115596612915397,-0.06159230088815093,0.7027286244556308,0.2419978524558246,-0.2639854298904538,0.19653034955263138,0.6844334742054343,0.689557399135083,0.07221457222476602,0.12638194020837545,-0.7807546751573682,-0.6535848178900778,0.48374628741294146,-0.21107772225514054,-0.2695985655300319,0.9983823215588927,0.6899371705949306,0.008616739884018898,-0.8330927533097565,0.3322993144392967,-0.24232937395572662,0.48139669420197606,0.1956307482905686,-0.5694139301776886,0.6750417705625296,-0.17816046345978975,0.39626895170658827,0.6155581315979362,-0.9446593248285353,0.8182875327765942,0.7831415603868663,-0.2826591841876507,-0.6503612003289163,-0.13351552141830325,-0.1807529330253601,0.044565474614501,0.9827419449575245,0.007359192240983248,-0.46485187159851193,-0.5985409189015627,0.41134175518527627,0.8853300772607327,-0.8821757123805583,-0.6964278481900692,0.09480420546606183,-0.7401780169457197,0.33220577146857977,-0.3376118168234825,0.41097218124195933,-0.6934955809265375,0.058749983087182045,-0.36292570689693093,-0.432638140860945,0.15187011379748583,0.06955271027982235,-0.7252264297567308,-0.6222855881787837,-0.31751443492248654,-0.3792800046503544,-0.944863575976342,-0.2268552598543465,-0.19091548305004835,-0.8811978176236153,-0.6658242377452552,-0.5209456118755043,-0.25217902287840843,-0.5540220490656793,0.07009883876889944,0.8527011629194021,0.867249883711338,0.7083843578584492,0.6595122003927827,-0.9712395509704947,-0.0037354175001382828,0.5459402874112129,0.3039453043602407,-0.03951266035437584,0.9887614431791008,-0.5340868383646011,0.39290863648056984,0.08562555490061641,0.9585263007320464,0.6767600015737116,0.7344394898973405,0.1370272897183895,-0.5032239481806755,-0.6150579708628356,-0.5100556230172515,0.43335448671132326,0.7176760626025498,0.6621703654527664,-0.9139156471937895,-0.18150310777127743,-0.23973369412124157,-0.1465952075086534,-0.6584301958791912,-0.9298861743882298,-0.3933528554625809,-0.08139740070328116,-0.13407783256843686,0.08656053151935339,0.4599926797673106,0.6972516258247197,-0.2526122727431357,-0.6371419243514538,-0.33398684207350016,-0.1771358042024076,0.2256430359557271,0.9590346836484969,0.052037836983799934,-0.4714172091335058,-0.543349546380341,-0.05195556301623583,0.47912027733400464,0.15002773609012365,-0.4399162642657757,-0.7029981319792569,-0.889385390561074,0.7124161925166845,0.5377166285179555,-0.9668703572824597,-0.9373888904228806,-0.04182485165074468,-0.6003849725238979,-0.25815591122955084,-0.9558218545280397,0.5839236741885543,-0.40776983881369233,-0.1104864003136754,0.9495776402764022,-0.40492196986451745,-0.6841006772592664,-0.37607032246887684,0.4329593959264457,0.23716735048219562,0.31156703643500805,-0.5546401985920966,0.749562740791589,-0.3168805241584778,-0.6661553694866598,0.6887192949652672,-0.40356277395039797,0.48899882240220904,0.47494063479825854,0.30636889953166246,-0.5608284045010805,0.23379457369446754,0.06529097585007548,-0.039433622267097235,0.33313525887206197,-0.7101209252141416,-0.9183535580523312,-0.5713106845505536,0.7997035216540098,-0.4123302041552961,0.6787826800718904,0.944803150370717,-0.5350156351923943,0.7584011349827051,0.12776842713356018,-0.924447241704911,-0.4225583067163825,-0.19729560799896717,0.4741032193414867,0.4812757819890976,-0.8480344931595027,0.009326494298875332,-0.1697139935567975,-0.3566638813354075,-0.8864282253198326,-0.9206322152167559,0.18383727688342333,0.4813692015595734,-0.2730650957673788,0.578849527053535,-0.0541063267737627,0.16202278854325414,-0.5027667693793774,-0.36988847609609365,-0.03067872580140829,-0.29693761793896556,-0.539035121910274,-0.998981193639338,-0.5971375759691,0.0868363305926323,-0.42453397903591394,-0.6597570665180683,0.0056421272456645966,-0.5027307528071105,0.952963656745851,-0.486775039229542,0.21031181467697024,0.15836679795756936,0.6742670191451907,0.4701669788919389,-0.6289075827226043,-0.09079586993902922,0.557332918047905,0.6982504418119788,-0.5221461625769734,-0.3300899025052786,0.5498215877451003,0.1712533119134605,0.372201896738261,-0.07165964646264911,-0.7570203905925155,-0.17341922549530864,-0.47144221141934395,-0.07697766646742821,-0.22567115584388375,0.9178930409252644,0.3010805658996105,0.005926520098000765,0.2198585970327258,0.738685317337513,0.4108966081403196,0.47588883293792605,0.4740478293970227,0.5725496881641448,-0.2608429859392345,0.734978892840445,0.2505458346568048,-0.6194708123803139,0.006149407010525465,0.13223934546113014,-0.2981616370379925,-0.6014857077971101,-0.6652182545512915,0.29618782829493284,-0.4961603772826493,-0.6273691738024354,-0.7944825659506023,0.7270327541045845,0.8284149779938161,-0.5935138738714159,-0.16796918120235205,-0.7286933828145266,0.4966224227100611,0.8265020996332169,-0.09110156260430813,0.6665865019895136,-0.9268257794901729,0.8545775711536407,0.42336240829899907,-0.9350943686440587,0.23939477559179068,0.219148023519665,0.13193830056115985,-0.43780814623460174,0.022520667873322964,0.30053179105743766,0.3310752548277378,-0.3166821328923106,0.39348572958260775,-0.22061043232679367,0.842433397192508,-0.5808566166087985,0.8870180840604007,0.15023873653262854,-0.9074690626002848,-0.4794836528599262,-0.42107610730454326,0.6834146063774824,0.7494583181105554,0.9703937126323581,0.0182916889898479,-0.20975781325250864,0.09730298584327102,-0.7619532239623368,0.6431174054741859,0.49786470364779234,-0.9634537096135318,0.8807877362705767,-0.057186816819012165,0.48632958997040987,0.22417866438627243,-0.9288576282560825,0.48293560603633523,0.9571810108609498,0.663398792501539,0.36423083022236824,-0.35753637412562966,-0.3665382955223322,-0.6512189991772175,-0.14573615323752165,0.7917694267816842,0.34328329423442483,-0.26004231814295053,0.4866383853368461,-0.8030197438783944,0.8566383114084601,0.38316327752545476,0.26570722786709666,-0.053112182300537825,-0.06786554539576173,0.41911649890244007,-0.896471569314599,0.40070309583097696,-0.16870640637353063,-0.11046814918518066,0.23432824574410915,0.22851624665781856,0.0198600678704679,0.046100151259452105,-0.9419017559848726,0.5406854772008955,-0.5837389416992664,-0.5866679581813514,-0.1897153425961733,0.4572878642939031,0.19138362351804972,0.8216798412613571,-0.8968614400364459,-0.0895166783593595,0.20867946138605475,-0.9355977550148964,0.19199200440198183,-0.08435646397992969,0.9181786593981087,-0.7955338153988123,-0.522604517173022,-0.7972128563560545,-0.2068553976714611,0.5150310932658613,-0.7195578250102699,0.13991639530286193,0.1310053076595068,0.7557700788602233,-0.04467488592490554,-0.28500736970454454,-0.4393095881678164,-0.6896505574695766,0.5826520561240613,-0.8153228312730789,-0.6868292801082134,-0.7950215344317257,0.00046395184472203255,-0.14024091325700283,0.3158000814728439,-0.23819234827533364,-0.5697563369758427,0.4746085540391505,-0.3059556046500802,-0.7850946555845439,0.22165278997272253,-0.6270564706064761,-0.03645248571410775,0.09270508075132966,0.1177141540683806,-0.05838919384405017,0.44509807229042053,0.019382006488740444,0.3603900233283639,-0.3876531678251922,-0.08090398460626602,-0.09624158218502998,-0.46889092354103923,-0.09650629665702581,-0.4594980929978192,-0.4179907273501158,-0.4972388301976025,-0.30885966680943966,0.9872969114221632,0.6574883298017085,-0.29142605187371373,-0.727592193055898,0.13605538569390774,0.8692947789095342,0.8509014286100864,0.6113497237674892,-0.7635780493728817,0.9414078393019736,0.4503847532905638,-0.7385789640247822,0.6155329537577927,-0.6878095106221735,-0.8792063379660249,-0.8897688728757203,-0.6509739826433361,0.36322491662576795,0.9645490413531661,-0.6416302276775241,0.3775639091618359,0.8567163171246648,-0.9302379293367267,-0.1106369593180716,-0.3636373239569366,0.2763394811190665,-0.7542687826789916,-0.891610327642411,-0.4641049634665251,0.2986536636017263,0.5838992199860513,-0.8722045011818409,0.33800979796797037,0.5360005255788565,-0.3425624226219952,0.2317141992971301,-0.6334512303583324,-0.12359233060851693,0.7519876575097442,0.6806689081713557,-0.5525343017652631,0.2607363914139569,0.23910368466749787,0.0665154093876481,-0.23303630854934454,0.43747138464823365,0.43262375332415104,-0.32997474865987897,-0.3916449034586549,-0.7085211393423378,0.7070852583274245,-0.048765554558485746,0.06498298328369856,-0.11185232363641262,-0.6546429805457592,-0.9641209640540183,0.062448656652122736,-0.7867111344821751,0.19262390118092299,0.5744622475467622,0.8122700280509889,-0.8482610299251974,-0.8627918879501522,0.7019771500490606,0.8146137022413313,0.21955586364492774,0.41038735257461667,-0.7740182871930301,0.8653458575718105,0.5621447409503162,0.4476474882103503,0.8805237310007215,-0.4743103925138712,-0.6175289722159505,-0.10673931799829006,0.4928134665824473,0.3940966408699751,0.49436861742287874,0.2720609097741544,0.6924362392164767,-0.308378582354635,-0.6617848216556013,-0.2492436612956226,-0.3671481218189001,0.3231915747746825,-0.49786794651299715,0.5382206258364022,-0.009800237137824297,0.8021181100048125,-0.3542336393147707,-0.9742984930053353,0.7903009010478854,0.6049895901232958,-0.8542536334134638,-0.05115776043385267,0.16085155215114355,0.3041662839241326,-0.6882608896121383,0.46980835497379303,0.22158964443951845,-0.5995855522342026,-0.17575186491012573,-0.17162247514352202,0.8624780438840389,0.9719360019080341,-0.5140025448054075,0.7020585187710822,-0.5561707015149295,0.45364574482664466,0.5643538520671427,0.01281764218583703,-0.8125613760203123,-0.5664049303159118,-0.8388393041677773,0.495778311509639,0.1489050635136664,0.22323714569211006,-0.856003497261554,0.15229623299092054,0.4658199166879058,0.7799260430037975,-0.6675808615982533,0.7146566831506789,-0.8195374216884375,-0.5621426673606038,-0.4881563480012119,-0.6722447578795254,0.3689109357073903,-0.0733438185416162,-0.1434873859398067,0.5414046621881425,-0.24463117076084018,-0.3686029096134007,0.6770860198885202,0.4179790439084172,-0.021632141433656216,0.14559505600482225,-0.42668417328968644,0.44822389632463455,-0.43732649786397815,0.13324242644011974,-0.8068427438847721,0.9140391745604575,-0.8289896841160953,-0.4769695783033967,0.21859471080824733,0.24136890284717083,0.13139264099299908,0.5049604885280132,0.4091451480053365,0.019053681753575802,-0.7556634033098817,0.7534949886612594,0.3331247940659523,-0.48197154700756073,-0.6060167448595166,-0.8566795503720641,-0.6223667301237583,0.6609329902566969,-0.8343869261443615,-0.3956811469979584,0.7645346033386886,0.16978473495692015,-0.9385163797996938,0.08558880537748337,0.48360810801386833,-0.18845725059509277,0.8005609060637653,0.8256029239855707,0.21917076036334038,0.809441493358463,-0.657274235971272,-0.14416042575612664,0.7984554669819772,-0.9876449517905712,-0.9764645602554083,-0.7850234089419246,-0.18012599926441908,0.9001609585247934,0.3296216311864555,-0.8280215417034924,0.747607325669378,0.2247744183987379,0.4097735374234617,0.3240854423493147,0.2384962486103177,-0.4646014175377786,-0.8823776766657829,-0.4473355496302247,-0.11414555879309773,-0.7256687707267702,-0.0648772488348186,0.9755702074617147,0.17520810710266232,0.39246427686885,-0.4898612345568836,-0.27904150169342756,-0.7854491071775556,0.13743823440745473,0.5879100481979549,-0.8805234329774976,-0.9208943671546876,-0.9257660508155823,0.6332390108145773,0.42644716100767255,-0.37966885417699814,0.29374823067337275,0.27323574386537075,-0.8071934590116143,-0.43494865484535694,-0.7850780608132482,0.6383167882449925,-0.8449638993479311,0.007610018365085125,-0.0905990581959486,0.1718700067140162,0.7208390366286039,0.7931739492341876,-0.7754338569939137,0.18161840038374066,-0.784015360288322,-0.5334935714490712,-0.7717083781026304,0.4992597848176956,0.11361211910843849,0.9116421490907669,-0.7087844666093588,-0.9940457139164209,-0.19596798298880458,-0.6133677624166012,-0.23899386916309595,-0.5094056194648147,0.4027531296014786,-0.4414836624637246,0.4834650196135044,0.4049210981465876,-0.7550818151794374,0.9638568079099059,0.24676950834691525,-0.13710477109998465,-0.8710499834269285,0.5825574705377221,0.474053384270519,-0.1977486852556467,0.24421705538406968,0.47232467075809836,-0.14213629812002182,0.9223362468183041,-0.6651171841658652,0.36328847659751773,-0.7561927889473736,0.9255689163692296,0.8562862412072718,0.050848080310970545,0.9511369280517101,0.7071688980795443,-0.9400745541788638,0.21741000982001424,0.39749765442684293,0.9798790961503983,0.8280007098801434,0.3876871494576335,-0.7221038853749633,0.08091717446222901,-0.8416715636849403,-0.5478114378638566,0.3558238265104592,0.41483588609844446,-0.5208386410959065,-0.5367053542286158,-0.305076748598367,-0.3403741084039211,0.10273049073293805,0.7552720052190125,-0.07748563261702657,-0.7691366500221193,-0.4889851901680231,0.09320756141096354,-0.558459852822125,-0.39797475980594754,0.14199111051857471,-0.03714922070503235,-0.015071974601596594,-0.11652608355507255,0.8875799998641014,0.15922716818749905,0.7706106216646731,-0.4693475868552923,-0.6595069500617683,-0.999110288452357,0.5317696463316679,-0.14590839436277747,-0.4259002967737615,-0.9301639501936734,0.13558238511905074,0.5971530247479677,0.5290594543330371,0.024993308819830418,0.8830033992417157,0.7454268638975918,-0.7582660526968539,-0.8580484502017498,-0.9902657601051033,0.11253049969673157,-0.6630053399130702,-0.61706234049052,0.23017671378329396,0.6125818202272058,0.038481021765619516,-0.09162380546331406,-0.595341136213392,0.2360056838952005,-0.36502127908170223,-0.3365325517952442,-0.6320953886024654,-0.1997963162139058,0.4082536296918988,-0.6821709349751472,-0.26898333290591836,-0.13278231536969543,-0.30792639404535294,-0.06272034626454115,-0.25200139731168747,0.04385348968207836,-0.9837470813654363,-0.38271284895017743,0.13417574344202876,-0.3524298616684973,-0.29524205066263676,0.18751133931800723,0.820494731888175,0.035247604828327894,0.642543364316225,0.5861111180856824,0.15556088602170348,-0.4080093903467059,-0.6938903722912073,-0.9149068281985819,0.8087797579355538,-0.3715655864216387,0.18798283161595464,0.8347880933433771,-0.8378339130431414,-0.11255672806873918,-0.22124685207381845,-0.680039472412318,-0.5930228284560144,-0.4358223625458777,-0.08930898737162352,-0.4300937931984663,0.8902235510759056,-0.8431404260918498,-0.5841524042189121,0.6310904156416655,-0.33474069787189364,0.4668535846285522,0.9950130702927709,0.654741333797574,-0.36108747590333223,-0.7506377939134836,0.7831741087138653,-0.386901515070349,-0.38670719182118773,-0.5447299582883716,0.3740098811686039,0.4388989666476846,-0.45887713599950075,0.8068192414939404,0.7865600767545402,-0.5390297421254218,0.32963908603414893,-0.330827827565372,0.5609450610354543,0.12848978769034147,0.2054314357228577,-0.49179286509752274,0.7976604765281081,-0.24079248309135437,0.8658795934170485,-0.019326642621308565,0.1209881673566997,-0.6015725755132735,-0.9993082797154784,0.49085103860124946,-0.6671016877517104,-0.6589296879246831,-0.6184909921139479,-0.3408243632875383,-0.2303563174791634,0.857628318015486,-0.33458924014121294,0.6370745389722288,0.9124268582090735,-0.21562363766133785,-0.5065836538560688,-0.6312407311052084,0.15083483746275306,0.5008101002313197,0.2397466478869319,0.6078061223961413,-0.6140776169486344,0.29309706622734666,0.37251638201996684,-0.9108936251141131,0.6755566922947764,-0.16308089718222618,-0.9731237799860537,-0.8831971930339932,-0.6891155075281858,0.07049931911751628,0.8581794528290629,-0.02628869004547596,-0.1436634953133762,-0.7377293636091053,-0.5899253264069557,-0.6258601606823504,-0.5646879216656089,0.9535570540465415,-0.48870045971125364,-0.8597376537509263,-0.8163894475437701,-0.18873518286272883,0.23663674388080835,-0.5292602814733982,-0.5197895667515695,-0.3725870195776224,0.30156908091157675,-0.6064100521616638,-0.3533781273290515,0.40268588066101074,0.3794875554740429,0.29535793652758,-0.3596675815060735,-0.43191104428842664,-0.019609599374234676,0.0007629781030118465,0.550379581283778,0.8683675467036664,-0.7356122294440866,-0.7462942348793149,0.5303944172337651,-0.13207308761775494,-0.12867159163579345,-0.7213209429755807,0.9321582652628422,-0.6064460170455277,0.6103362119756639,0.6955475034192204,-0.04370427364483476,-0.9429809330031276,-0.8681545965373516,-0.024580242577940226,0.7816244000568986,0.5980213768780231,-0.6021233410574496,-0.8342193653807044,-0.29400075506418943,0.07174637215211987,0.10463139554485679,-0.18795955274254084,0.2722246409393847,0.1024759323336184,0.16893972363322973,-0.4313226444646716,-0.17113523045554757,-0.7664849003776908,0.23104035761207342,0.19440067280083895,0.8112446633167565,0.6904807379469275,0.3356658280827105,0.2784518818370998,0.489350451156497,-0.585748141631484,-0.8685983237810433,0.6686051893047988,0.3539082910865545,0.058142130728811026,-0.02109919348731637,-0.9932683687657118,-0.2126854732632637,-0.45932938158512115,0.2645926019176841,-0.28326331498101354,-0.14834676636382937,-0.1838801046833396,0.6186400111764669,0.03863453818485141,-0.4753225166350603,0.903080724645406,0.6961743459105492,-0.91745400801301,0.3340348405763507,-0.15310536604374647,0.8863186333328485,0.3745846878737211,-0.40202703373506665,0.7230527102947235,-0.7256416189484298,0.5350138409994543,-0.38693138351663947,0.7255144394002855,0.6360865016467869,0.7102213436737657,0.4364996184594929,-0.3783819414675236,0.8269144743680954,-0.6931794425472617,0.655352340079844,0.19288422772660851,-0.6845146073028445,-0.25877876207232475,0.6841791761107743,-0.3963043042458594,-0.8738239305093884,-0.013800391927361488,0.5647828234359622,0.8718754728324711,-0.7126011229120195,-0.7307263254188001,0.5190974944271147,-0.6767672719433904,-0.09443293418735266,-0.4539322084747255,-0.08935131365433335,0.608756513800472,-0.026900677476078272,-0.9854681887663901,-0.05857618525624275,0.8259655106812716,0.12094158632680774,0.2336088102310896,-0.04899362800642848,-0.13428012421354651,0.0174332857131958,0.5322889755479991,0.024428917095065117,0.6400016467086971,0.23266158159822226,0.7007926851511002,0.13966884929686785,0.9176403675228357,0.7269722600467503,-0.4390198439359665,0.3314508586190641,0.4382915566675365,0.9864867674186826,0.4832182857207954,-0.6829585493542254,0.6638487800955772,-0.46199981123209,0.18750602193176746,-0.011297022923827171,0.11020558467134833,-0.02286927541717887,-0.2688023797236383,-0.6346115446649492,-0.34170662611722946,-0.986977540422231,0.2808109661564231,0.46002094028517604,-0.49988415371626616,-0.08973761321976781,0.4370158715173602,0.2789484136737883,0.7926593623124063,-0.5964171970263124,-0.6380187459290028,-0.8513187519274652,0.636974920053035,-0.31754654133692384,-0.6136345937848091,-0.7278926074504852,-0.8039155942387879,-0.585267991758883,0.1175626739859581,-0.6301073133945465,-0.3711293959058821,-0.9418142419308424,0.028758312109857798,0.37845967849716544,0.06001917598769069,-0.044925416354089975,-0.2578098396770656,0.1855053100734949,0.8631945890374482,-0.2382771340198815,0.03509326418861747,0.002596796490252018,-0.9608441479504108,-0.3474065726622939,-0.18164826044812799,-0.5021600034087896,0.26850148709490895,0.7634466486051679,0.4367857654578984,-0.9405616372823715,-0.8015922834165394,0.9336070227436721,-0.9958529812283814,-0.7306712246499956,-0.13931393157690763,-0.6126539194956422,-0.5851567545905709,-0.49712070962414145,-0.4786366610787809,0.7922481498681009,0.30588134936988354,-0.8212232445366681,-0.23867350304499269,-0.08195610577240586,-0.17089362675324082,-0.8582452572882175,0.349226763471961,0.582117279060185,-0.8570202146656811,-0.1951046073809266,0.5803970443084836,0.8729555681347847,0.05279210628941655,-0.8086405377835035,-0.7635771315544844,0.8986143032088876,0.4175345990806818,0.27973905811086297,0.566991601139307,0.16555244708433747,0.8747906405478716,-0.5937362401746213,0.27575028548017144,0.9016863666474819,-0.05382008198648691,0.6984404753893614,-0.09487231029197574,0.9445205144584179,0.5265341550111771,-0.3003862234763801,0.15332038654014468,0.5777459470555186,0.013920736964792013,0.3377786800265312,0.5019867410883307,-0.6946512586437166,0.04098217375576496,0.6357484837062657,0.18908232543617487,0.6587890847586095,-0.8467784975655377,-0.5200554924085736,-0.2182763167656958,0.6640707422047853,-0.08203180320560932,-0.4459769241511822,0.04772833501920104,-0.9156387825496495,-0.7323192851617932,-0.8831932065077126,-0.4881988796405494,-0.9697712431661785,-0.7322140117175877,-0.29126431280747056,0.7865270324982703,0.3581991847604513,0.9839083659462631,0.537705163937062,0.5095987366512418,0.6190588846802711,0.28578659566119313,-0.48907252633944154,0.002887419890612364,-0.05733509501442313,-0.7498405347578228,-0.46489649126306176,-0.4540413781069219,0.560140089597553,-0.4961946024559438,0.2144771139137447,0.9524931209161878,-0.9081110074184835,0.9714027186855674,0.48296874947845936,-0.8662338904105127,-0.7471174630336463,-0.6704759350977838,-0.48295306833460927,0.45337568363174796,0.445387857966125,0.11660475935786963,-0.15344722149893641,0.21357816271483898,-0.008805782534182072,-0.527485684491694,0.6938395532779396,-0.385310223326087,0.24236579611897469,-0.6557445991784334,0.8736614603549242,0.527209319639951,-0.4253330794163048,-0.9080459023825824,0.8566794171929359,0.6572719397954643,0.1867869314737618,-0.32204434648156166,-0.35952594317495823,-0.6612005070783198,-0.2124632028862834,-0.43852930748835206,-0.09288487583398819,0.9619553787633777,0.7679190956987441,0.7935151970013976,0.06879538064822555,0.08980902377516031,0.6788058434613049,-0.47102421475574374,0.7576171923428774,-0.7743560755625367,-0.974325018003583,-0.7926557501778007,-0.8631645538844168,-0.8495715199969709,-0.21316560544073582,-0.4549815682694316,0.9192362898029387,0.5009155627340078,0.8578398660756648,-0.09670664742588997,0.7125466293655336,-0.6715997769497335,-0.10733907669782639,0.2505383212119341,0.04316261084750295,0.8775000846944749,0.8063499061390758,-0.5570593802258372,-0.6217712885700166,0.5823907684534788,-0.5485309232026339,0.4840696668252349,-0.9165390832349658,-0.15853130025789142,0.5095692621544003,0.5896632582880557,-0.9588974500074983,-0.1896675042808056,-0.9160123998299241,0.586899496614933,-0.6637399066239595,0.21049018949270248,0.34168994007632136,0.3706687311641872,-0.6653009238652885,0.441482228692621,-0.7437676801346242,0.6950622913427651,-0.20204456755891442,0.7000495553947985,-0.912276207935065,0.21842356445267797,0.06641217693686485,-0.6112582199275494,0.5986506729386747,-0.0005029086023569107,-0.7250516633503139,-0.7372455759905279,0.8168084193021059,0.3149471809156239,0.6201280993409455,0.9520270680077374,-0.3224086510017514,0.9561177380383015,0.6934271906502545,-0.44647237239405513,-0.8133031814359128,-0.4212573547847569,-0.07211091415956616,0.5376832480542362,-0.11486911401152611,0.8154761651530862,-0.4767610006965697,-0.08574148407205939,0.7907723989337683,0.31117135426029563,0.6347858496010303,0.4124060655012727,0.41282352805137634,0.9335920005105436,0.832011089194566,0.0029762242920696735,0.5923064285889268,-0.26867767609655857,0.17835371708497405,0.4245327403768897,0.36308223800733685,0.7844799351878464,-0.04007110185921192,0.33773593604564667,-0.651057786308229,0.31698741391301155,-0.41098265489563346,0.11443800898268819,0.5341002992354333,-0.06573206279426813,0.2592293284833431,0.2912957831285894,0.24972201650962234,0.18792120413854718,-0.05941310664638877,0.4297912335023284,-0.1236319886520505,0.8784130145795643,-0.35637249052524567,-0.12821015622466803,0.7665030383504927,0.348823394626379,-0.5301943640224636,-0.22771100420504808,-0.5313728423789144,0.8363710599951446,0.0700620161369443,-0.9351595002226532,0.6127333105541766,0.3359127757139504,0.7392463851720095,0.31769002228975296,0.15232698479667306,-0.4693221249617636,0.006174260284751654,0.6203817068599164,0.5214648777619004,-0.02329855738207698,0.28577524656429887,-0.7657041382044554,-0.3126936205662787,-0.13512290827929974,-0.730742834508419,-0.20050731813535094,-0.7066348404623568,-0.5942417369224131,0.630885967053473,-0.3053119396790862,0.2909689284861088,-0.33682004455477,0.32942440221086144,-0.7972502270713449,-0.9101870516315103,-0.5262536662630737,-0.38183091674000025,0.1844866294413805,0.9344303384423256,0.5824913796968758,-0.345670607406646,0.7860289351083338,-0.16781301889568567,-0.00968873081728816,0.24696352565661073,0.38374769827350974,0.5217348760925233,0.49577810941264033,0.8012308105826378,0.4243524861522019,0.1384434336796403,-0.7095191250555217,-0.29256239952519536,0.5637561362236738,0.11281678173691034,0.64064033748582,0.752890772651881,0.1375101483426988,0.07140425778925419,0.6591903013177216,0.42620561830699444,0.4711012472398579,-0.7718067243695259,0.03531836159527302,-0.16638450883328915,0.9970390326343477,0.7678258935920894,-0.7906647841446102,-0.3765256102196872,0.6770515837706625,0.32826237799599767,-0.3557761861011386,-0.5591392247006297,-0.28742890805006027,0.5926080988720059,-0.9928625179454684,-0.2415116666816175,0.10763826407492161,-0.7167196148075163,-0.6369656189344823,-0.44471821608021855,0.7933135232888162,0.9780960734933615,0.5258920141495764,0.2515772981569171,-0.42650103475898504,0.45294742844998837,0.9747732523828745,0.32539454801008105,0.4465891933068633,0.6235142154619098,-0.448793085757643,0.5515910596586764,-0.1615290204063058,-0.759351912420243,-0.6097687003202736,-0.1841152156703174,0.9903159299865365,0.8349461476318538,0.40824303682893515,0.1322509297169745,0.09823187021538615,-0.7455662870779634,0.651212140917778,-0.9713114383630455,0.7503964151255786,0.5361571693792939,0.3511535245925188,0.5880060764029622,0.22722065076231956,0.33532963739708066,-0.9221285153180361,0.21178374532610178,-0.5941442954353988,-0.30336615862324834,-0.008700266480445862,-0.9932961631566286,0.4602290466427803,0.31807280983775854,-0.8442346579395235,-0.17291376739740372,0.23224473977461457,0.6615728833712637,-0.06919550895690918,0.1631833864375949,0.5633756425231695,-0.40223681554198265,0.5127441212534904,0.8820868623442948,-0.60093192756176,-0.14536800840869546,-0.5166503693908453,0.31043397122994065,-0.021825400181114674,0.06958081759512424,0.5050849225372076,0.48901848401874304,-0.19427266623824835,-0.13644030317664146,-0.22792760143056512,0.13729567267000675,-0.27456456422805786,0.4701785696670413,-0.9256998375058174,-0.8204551124945283,-0.19927733996883035,0.1719416487030685,0.1270172717049718,0.1143511338159442,0.9743555472232401,-0.32411455968394876,-0.4077460654079914,0.4200694630853832,0.12598649691790342,-0.31126673938706517,0.3732681553810835,0.05685601010918617,0.11042865412309766,0.7204192914068699,0.5359112876467407,-0.13402731576934457,0.10245482390746474,-0.52120327251032,0.8649546951055527,0.06158028915524483,0.7428641230799258,-0.793529475107789,0.6320445057936013,-0.16689759911969304,0.49658782593905926,0.14277029782533646,-0.4349104557186365,-0.7729278989136219,0.08862473350018263,-0.9129282138310373,0.05251929769292474,0.4069787631742656,-0.3212977950461209,-0.9849754311144352,-0.3349176477640867,0.3286159778945148,0.956944024655968,0.18161941599100828,-0.7704187221825123,0.38341209571808577,-0.9769235625863075,0.921234623529017,0.2635891530662775,0.5796279958449304,0.5868651089258492,-0.2709181667305529,0.7415222097188234,0.7944249184802175,-0.8350797346793115,0.28354195691645145,0.5471992385573685,0.36170692974701524,-0.6265134294517338,0.3927136082202196,0.5242215720936656,0.009492026641964912,0.8295634514652193,-0.25291566317901015,-0.4799803621135652,-0.416721532586962,-0.4090975536964834,-0.23208714090287685,0.49437851645052433,-0.5519246580079198,0.00593383377417922,-0.3787331166677177,0.9199040508829057,0.9592688442207873,0.9094462599605322,-0.3790219174697995,0.37683637207373977,0.05703206639736891,-0.8870324674062431,-0.40627457154914737,-0.1020786720328033,-0.9344630553387105,-0.5738083361648023,-0.8691571834497154,0.31758257281035185,-0.7061227094382048,0.3478265502490103,-0.48237063363194466,0.6513718129135668,-0.2438717340119183,0.8344826698303223,-0.6748465253040195,0.9284499785862863,0.056795303244143724,0.04418630572035909,0.015439321752637625,0.09703527810052037,0.796132774092257,0.2670352151617408,0.31629322934895754,-0.765504919923842,-0.8798165465705097,-0.8573489529080689,-0.5455333637073636,0.2865575305186212,0.15558601263910532,-0.830015720333904,-0.18824438005685806,0.7456739223562181,-0.3633902966976166,0.6435323813930154,0.1277572433464229,-0.6907909666188061,0.4139011804945767,-0.43780560977756977,0.8717348049394786,-0.2586494763381779,-0.6968664508312941,-0.6196359391324222,0.23055957397446036,0.49179067043587565,-0.48050106689333916,-0.3430172083899379,-0.5368291647173464,0.746204833034426,-0.17458357894793153,0.8017442259006202,0.6133029791526496,-0.27125953789800406,0.29283432848751545,-0.46434224490076303,-0.32650243723765016,-0.37272141966968775,-0.18473318219184875,0.5517101385630667,0.9757537650875747,-0.7397958114743233,-0.07674145279452205,0.9892049198970199,0.24692917941138148,-0.9584345556795597,0.20513170771300793,0.8498931415379047,0.8744149282574654,0.12280094297602773,-0.1632943982258439,0.7886853269301355,-0.8445811490528286,0.9039164907298982,-0.8069410743191838,-0.873792736325413,0.9684381452389061,0.343365085311234,0.5117610362358391,-0.9953200202435255,0.8480701120570302,0.44342086650431156,-0.39241197891533375,0.6648355782963336,-0.7543772640638053,-0.8885981710627675,-0.8684207517653704,-0.9311151918955147,0.5598455383442342,-0.27084127347916365,0.597414598800242,0.7179060918278992,0.2840989110991359,0.12169519299641252,0.7702846084721386,-0.9195102769881487,0.1226561083458364,0.8545529367402196,-0.5764840715564787,-0.6612156359478831,0.6134265149012208,-0.56072339694947,0.20891542313620448,-0.6798165226355195,-0.9402995989657938,0.822726677171886,-0.40003367606550455,0.6891557974740863,0.18677044147625566,-0.5980446478351951,0.14281850308179855,-0.4403497795574367,0.9677974018268287,0.8280681818723679,-0.887088599614799,0.7570576369762421,0.4410533276386559,0.8651015162467957,-0.6376590467989445,0.9519563093781471,0.36580548668280244,0.20200540451332927,-0.34706651233136654,0.16395053546875715,0.42728240275755525,-0.17100847186520696,0.8988968781195581,0.19087735377252102,-0.9825891526415944,0.43663084553554654,0.5343261105008423,0.7667250367812812,-0.6284003811888397,0.5868351450189948,0.15261784987524152,0.5650821849703789,-0.20699053211137652,-0.8362497943453491,-0.44246978871524334,-0.8704450014047325,-0.3726091543212533,0.8099122210405767,-0.33749505085870624,0.4064974836073816,-0.9801326529122889,0.8575954143889248,0.7990414542146027,-0.8176280027255416,-0.7341231759637594,0.34809825103729963,-0.19326841924339533,-0.8573499000631273,0.41504117706790566,-0.6860370161011815,-0.8158408692106605,-0.8512471672147512,0.22649673745036125,0.8679511086083949,0.8951953556388617,0.05317438766360283,-0.8576575582846999,0.915645772125572,0.889850277453661,0.04504015762358904,0.7442923709750175,-0.4104319750331342,0.8677794993855059,0.04157346487045288,0.5548872211948037,-0.5892195613123477,0.7746747741475701,0.7030578763224185,0.2400747323408723,0.9439335153438151,-0.06641645124182105,-0.360072816722095,0.21665299031883478,-0.021103497128933668,-0.7693236339837313,0.8986989660188556,-0.06994404084980488,-0.7994293752126396,-0.08775400090962648,0.4345481558702886,0.8096161228604615,-0.6808117502368987,-0.9950655438005924,0.5115615972317755,-0.6275344453752041,0.68088653171435,-0.3149308795109391,-0.7428066711872816,-0.7456266237422824,-0.24398207943886518,0.445431191008538,0.0548468311317265,-0.12967368587851524,-0.8357963636517525,0.11197436368092895,-0.5238701901398599,0.1742064948193729,-0.7124551930464804,0.7674503275193274,0.3023675847798586,-0.17453383561223745,0.8552103941328824,-0.2871386744081974,-0.6062765554524958,0.7239425093866885,-0.8025503712706268,-0.44603404263034463,-0.8617026191204786,0.06988731678575277,0.9163190480321646,-0.5888187638483942,0.9825816806405783,-0.40470006968826056,0.6844724165275693,0.5768744866363704,-0.7925005862489343,-0.4238885995000601,0.9429627251811326,-0.11103519052267075,0.31037895288318396,-0.21760812448337674,0.1889883792027831,0.7516060774214566,0.6555691752582788,-0.6913757808506489,0.21173154469579458,0.21905773924663663,-0.8542531076818705,0.700912902597338,-0.5576470168307424,0.24396161874756217,0.8023497993126512,-0.38693785294890404,-0.41824588272720575,0.5316914827562869,-0.1457930295728147,-0.7670593219809234,0.9353214409202337,-0.13765371590852737,0.35059206979349256,-0.347528088837862,0.7601638399064541,0.5858702850528061,0.13278847187757492,0.9504928169772029,-0.8055303124710917,-0.9244954022578895,0.45895171631127596,-0.5391914625652134,0.805788307916373,0.277458465192467,0.8153108190745115,-0.829809601418674,0.6313879750669003,0.43774686474353075,0.3071229220367968,-0.19789938861504197,-0.5255250288173556,-0.6286030267365277,0.8605602327734232,0.24599748896434903,-0.48474268475547433,0.9509103214368224,-0.5532170087099075,-0.19277369789779186,-0.7717128554359078,0.4008984980173409,0.5922113177366555,-0.4437548201531172,0.7283095000311732,0.2281352593563497,0.7961308108642697,-0.47769161872565746,-0.08458800008520484,0.23582333652302623,0.11799975857138634,0.7698017195798457,0.29840242210775614,-0.971668847836554,0.5790832177735865,0.34678487526252866,0.10158320283517241,-0.14927727775648236,0.37818768061697483,-0.5937958140857518,0.3278011167421937,-0.2014690008945763,0.2750925528816879,0.12424413906410336,-0.6656037596985698,-0.35906472243368626,0.36057226080447435,-0.19695978006348014,-0.8022999512031674,0.8388980785384774,-0.14427454862743616,-0.6769326305948198,0.7003354202024639,-0.7363488590344787,-0.816830150783062,0.8224334577098489,-0.9110448313876987,-0.12656189408153296,0.5660225506871939,-0.2158773192204535,0.5362061830237508,-0.6024785819463432,0.7137535871006548,0.05603958806023002,-0.7742398576810956,0.9128255522809923,0.5325195132754743,-0.16687551513314247,-0.053052402567118406,-0.16002215910702944,0.2705266159027815,-0.9001593817956746,-0.7596729667857289,0.33496527280658484,-0.4925835644826293,0.3585808598436415,0.5868954844772816,-0.4231513482518494,-0.33218482695519924,0.6915327408351004,0.45287357922643423,-0.713600642979145,-0.32071408070623875,0.6061437148600817,-0.08087966544553638,-0.4952736389823258,-0.5247290097177029,0.6204698230139911,0.20428617531433702,0.5859861876815557,0.17558185709640384,0.7222419329918921,-0.7595236925408244,0.5423767911270261,0.3816590956412256,0.8548278594389558,0.4815621147863567,0.8921416760422289,0.8825323516502976,0.6954283653758466,0.3335397779010236,0.9938749223947525,0.9256642973050475,-0.7649407237768173,-0.7039284892380238,-0.024442513938993216,-0.24893167335540056,0.3022056920453906,0.7766805980354548,0.6871762685477734,0.8688942468725145,0.9087137971073389,0.8984095216728747,0.32276604883372784,-0.27758977748453617,-0.8778870552778244,0.4404457462951541,-0.5513296416029334,0.8395533310249448,-0.22745941579341888,-0.31306561920791864,-0.08200735272839665,-0.7226536953821778,-0.026486658956855536,0.10824796324595809,-0.4364834646694362,0.37958890199661255,-0.2531328685581684,0.9681588970124722,0.7595198103226721,0.055866995826363564,0.42769547225907445,0.055370279122143984,-0.5432637212797999,-0.18278360040858388,0.7163390438072383,0.08858357416465878,0.09445143956691027,0.09593325294554234,0.9651155984029174,-0.14581334544345737,-0.6418323717080057,0.727770674508065,-0.387877584900707,0.32918918738141656,-0.5800785031169653,0.07892995933070779,0.8156657824292779,0.19212668808177114,0.08006957126781344,0.6978267855010927,-0.08142831176519394,-0.16265431139618158,0.5576769057661295,0.05940860556438565,0.6001934469677508,-0.8227273500524461,0.00440960330888629,-0.5136494222097099,0.8974311966449022,0.37624936597421765,-0.5527322487905622,-0.4209530814550817,0.5097266403026879,-0.2742325630970299,-0.44470716966316104,-0.7755710505880415,-0.029767026659101248,0.2120859702117741,0.7222326211631298,-0.41440748516470194,-0.4823904847726226,0.03218451980501413,0.6489378339610994,-0.9897467945702374,-0.20714970119297504,0.6371106714941561,0.4415903091430664,0.8853667885996401,-0.1103029609657824,0.2161007090471685,0.7145886858925223,0.42552358750253916,0.06919440813362598,-0.39446059707552195,0.3763870890252292,-0.24446955043822527,-0.6087181926704943,0.7275931085459888,-0.9741230546496809,0.26059719547629356,0.44933371571823955,-0.8517751111648977,0.7697947034612298,0.4417187827639282,0.8387370645068586,0.6871263259090483,-0.34770400868728757,0.36772086191922426,-0.7733232798054814,-0.7724534063600004,0.4270990788936615,0.653287879191339,0.4650616771541536,-0.3879683227278292,0.5574084627442062,0.08932898472994566,-0.46450080536305904,0.7426634388975799,0.8900468428619206,-0.5851221466436982,-0.6920642741024494,-0.24830298032611609,-0.8071001190692186,0.8173795016482472,0.6094368286430836,0.24065800104290247,-0.9697929448448122,0.6201619822531939,0.08551803603768349,-0.042440157383680344,0.1387588963843882,0.5947173731401563,-0.6791642582975328,-0.24466044921427965,0.729974287096411,0.8032006700523198,0.16158910747617483,-0.2522400924935937,-0.9311557151377201,0.051405634731054306,-0.197539655957371,0.1827434333972633,-0.3376792073249817,0.5570130934938788,-0.75010149134323,-0.6007086862809956,-0.29578240867704153,-0.8142934925854206,0.42210807045921683,-0.21345260459929705,0.5721793384291232,0.49656822299584746,-0.3523983331397176,-0.8405139758251607,-0.4200224536471069,0.28566662361845374,0.9092784114181995,-0.6505628726445138,0.109953454695642,0.12089932383969426,0.7861916776746511,-0.9719870649278164,-0.8153403885662556,-0.6448074271902442,0.7687472030520439,0.4972195881418884,0.7408137051388621,-0.6571594788692892,0.8439599238336086,-0.7342826477251947,-0.7229567668400705,-0.44408907927572727,0.4644214427098632,0.3469491098076105,-0.4934918391518295,0.5547431954182684,-0.6862651719711721,-0.8503507846035063,-0.2649306417442858,0.7094649858772755,0.3983091455884278,-0.8727867333218455,0.24121197359636426,0.9114811010658741,0.4036386739462614,-0.3908021650277078,-0.6367469355463982,0.8607568726874888,-0.47288338653743267,-0.37205077381804585,-0.6475566197186708,-0.6982843796722591,-0.40267825638875365,0.25588711397722363,0.13789066532626748,0.08069716393947601,-0.7496898830868304,0.45392293157055974,0.6573882582597435,-0.22531081829220057,0.06367365317419171,-0.9661017493344843,-0.10972148552536964,-0.3008063258603215,0.954997958149761,-0.7209861990995705,-0.30031393840909004,-0.9393344321288168,0.2584593165665865,-0.35467901825904846,-0.1859432770870626,0.6325557725504041,0.07440289622172713,0.3175934422761202,-0.0355900339782238,-0.7351154065690935,-0.8589592636562884,-0.6794476048089564,0.13954070257022977,0.8395383236929774,0.826833481900394,0.6665259804576635,-0.5110395923256874,-0.3429799214936793,0.9087664894759655,0.1799589074216783,-0.1605673381127417,0.9616144383326173,0.35457253782078624,0.5126728750765324,0.9097674796357751,-0.5057153347879648,-0.9371738242916763,-0.37992400769144297,-0.34362803818657994,0.7614855878055096,-0.977836427744478,0.3515877453610301,0.1196669889613986,-0.5202797786332667,-0.6938516744412482,0.6010427908040583,0.644733005668968,0.04905547574162483,-0.135898953769356,-0.7596613513305783,-0.5957636069506407,0.3685961882583797,0.9135275725275278,0.19833501847460866,0.47785610565915704,-0.9592256126925349,0.3215708239004016,0.2513787830248475,-0.054082718677818775,-0.3928900002501905,-0.4061634265817702,-0.9603429548442364,0.7528626313433051,-0.7239555879496038,0.9198174900375307,0.290928793605417,-0.026360395830124617,0.28873272193595767,-0.5792334154248238,-0.3144705970771611,0.9029300594702363,-0.4516172553412616,0.26624140003696084,0.7316316906362772,-0.7783830910921097,-0.7245162269100547,-0.4493448557332158,-0.1842684200964868,-0.20269245328381658,0.06536775128915906,-0.5320144621655345,-0.4155727084726095,-0.9098612507805228,-0.28722385922446847,-0.3158999467268586,-0.6199932205490768,-0.44488273561000824,-0.34999800147488713,-0.9783481545746326,-0.6148036853410304,0.7680452261120081,0.15931787062436342,-0.8666190700605512,0.9477994283661246,0.28037395142018795,-0.6460255058482289,0.8911311654374003,0.63564905943349,-0.5892722085118294,0.020660589914768934,0.9792717760428786,0.24356061220169067,-0.583968190010637,-0.6089468598365784,0.28768838848918676,-0.6499123475514352,-0.8772932006977499,-0.6175618134438992,0.47970052575692534,-0.6762847006320953,-0.2841806309297681,0.2732277843169868,0.07181908469647169,0.7174237044528127,0.04582644859328866,-0.10247743409126997,0.4800357185304165,-0.48434588266536593,0.18814151361584663,-0.02440448524430394,-0.17404812900349498,-0.5144185270182788,0.5060874498449266,0.9038227330893278,-0.05901269428431988,-0.04936653561890125,-0.6915903012268245,-0.4054307066835463,-0.14492307975888252,-0.785314672626555,0.07631076173856854,0.10949992947280407,-0.13549027033150196,0.2630010945722461,0.05407707020640373,0.8055368377827108,-0.40265304362401366,-0.4418660565279424,-0.4374605854973197,-0.24427881743758917,0.3997420947998762,0.6903385296463966,0.5674019767902792,0.9373485995456576,-0.20797105599194765,0.1290221381932497,0.556133973877877,-0.6357125150971115,0.2589755686931312,0.7628488652408123,0.11652386793866754,-0.9137315703555942,-0.09720873460173607,-0.7531391982920468,-0.2225756668485701,0.7535427659749985,0.8211208456195891,-0.9423861540853977,-0.9811804504133761,-0.32163755130022764,-0.9315254953689873,0.38446825044229627,-0.1209772014990449,0.22409397643059492,-0.5001014177687466,0.5698537491261959,0.7946470123715699,0.5546063631772995,0.2020859601907432,-0.8927993532270193,-0.4115963294170797,0.8414382734335959,0.026408705860376358,0.5462985076010227,-0.6941952835768461,-0.2432232229039073,0.12074547028169036,-0.1882587866857648,0.6604621326550841,-0.3278175685554743,-0.001736275851726532,-0.47085657343268394,0.6993548576720059,0.24590501561760902,0.16378143848851323,0.7910946360789239,-0.16521412320435047,-0.8779164925217628,-0.28771826857700944,0.5375061272643507,-0.029179971665143967,0.897352781612426,0.777668013703078,-0.2495735101401806,0.020323243457823992,0.07273980602622032,-0.18776504136621952,0.44024797389283776,0.469424435403198,0.5474710226990283,-0.8027845080941916,-0.6181448278948665,0.18446792755275965,0.26047571608796716,0.8366518258117139,-0.48180497949942946,-0.10805671056732535,-0.7479263106361032,0.4425093485042453,-0.3554603876546025,-0.6043422343209386,0.7203780682757497,-0.7329470706172287,0.8715883041732013,0.636100142262876,0.2963469107635319,-0.6070556272752583,0.9831489361822605,0.7119665611535311,0.8176459204405546,0.2826146585866809,0.8935864730738103,-0.11361956130713224,-0.11223926115781069,-0.08200728660449386,-0.47688626730814576,-0.34122466668486595,0.5515657383948565,0.2171594211831689,0.0023450306616723537,0.0366908791474998,0.513993201777339,-0.8181103258393705,0.9084285879507661,0.42246168246492743,0.5039225341752172,0.17677179398015141,-0.8633279418572783,-0.701676222961396,0.16176637494936585,-0.8221358354203403,0.3902176320552826,0.9389060214161873,0.31695406418293715,-0.32690433179959655,0.5726937907747924,-0.8803639295510948,0.4378696125932038,-0.9343369053676724,-0.8515307018533349,0.6255789413116872,-0.20908683072775602,-0.3408637885004282,0.8761980379931629,0.10396625241264701,-0.6260119401849806,-0.2419280018657446,0.26369593339040875,-0.8280833922326565,0.7173913675360382,-0.9078535418957472,0.9140860745683312,-0.01466408558189869,0.9916529045440257,-0.9269725414924324,0.3154392302967608,0.8972852360457182,-0.09645923366770148,-0.15767783718183637,0.8571699163876474,0.3716824259608984,-0.7426287797279656,-0.20931855170056224,-0.4235029532574117,-0.5350911510176957,0.33300878340378404,-0.551997730974108,-0.03846333548426628,0.9603412649594247,0.5558247845619917,-0.5590492496266961,-0.9553374233655632,0.39020308712497354,0.14616730622947216,-0.9183869711123407,0.5486536691896617,-0.9688203800469637,-0.2020812756381929,0.6437545181252062,-0.7474731933325529,-0.7963525429368019,0.7841210984624922,-0.17267934326082468,-0.3832713132724166,0.04137071128934622,-0.09971350524574518,0.9644539644941688,0.7946951314806938,-0.3784051863476634,0.8997897012159228,0.3460434228181839,0.6091945511288941,0.05093613779172301,0.7065835050307214,0.012716385070234537,-0.5877519943751395,0.3888469566591084,-0.956276920158416,0.44451618008315563,-0.9131959909573197,0.5261209243908525,-0.47329114424064755,0.2915579453110695,0.2708619204349816,-0.10640538670122623,-0.07676118006929755,0.1501516574062407,0.03264299500733614,0.35513547481969,0.776728892698884,-0.15108309220522642,-0.3077134322375059,0.7876882809214294,-0.791145590133965,-0.3568090870976448,0.601815418805927,0.16561851417645812,-0.41132238740101457,-0.8390258415602148,-0.6341049079783261,-0.8792666080407798,-0.036153885535895824,0.8546104459092021,0.5096823163330555,0.944043611176312,0.12939802231267095,-0.01897948468104005,-0.9021877101622522,0.9778106603771448,0.15010634763166308,-0.13165128836408257,-0.40230133570730686,-0.9518525875173509,-0.349695629440248,-0.7539478256367147,-0.5369448093697429,-0.7923339516855776,-0.2794908289797604,-0.26889495830982924,-0.44541332917287946,0.4103460367769003,-0.9785430487245321,0.4248688514344394,0.022341121453791857,0.5972325429320335,-0.4158642557449639,0.6545989094302058,0.3087633391842246,-0.28298128629103303,0.445468463934958,0.6161347110755742,-0.5933622196316719,-0.034635250456631184,0.49359730863943696,0.7439097687602043,-0.6159488884732127,-0.6883137165568769,-0.5801454735919833,-0.7955065672285855,0.6213350654579699,-0.4712723554112017,0.8749845493584871,0.06316540576517582,0.2410506447777152,0.799463122151792,-0.9603333109989762,-0.23830755008384585,0.7211682838387787,-0.46808674931526184,-0.8799704508855939,-0.7341936090961099,-0.33955300925299525,-0.36777427420020103,-0.15689177345484495,0.21197524946182966,0.2790681468322873,0.12924346746876836,0.4148768703453243,0.6790960035286844,-0.42074395762756467,-0.5868042721413076,0.33740289555862546,0.4783863937482238,0.7515629027038813,-0.7979659750126302,0.3353431089781225,-0.726293426938355,0.6206817599013448,-0.3300700499676168,-0.4419005992822349,0.9510633531026542,0.5038596703670919,-0.3716438543051481,0.9655457367189229,0.8368456880562007,0.8132302411831915,0.8728874986991286,0.15897817024961114,0.4351647566072643,0.901747175026685,0.7558968649245799,0.4197314763441682,-0.42636923026293516,-0.28538788948208094,-0.09137630835175514,-0.45892703952267766,-0.6696491036564112,0.3626709948293865,0.17649726662784815,0.17633676854893565,0.9939714968204498,-0.6356783495284617,-0.5030234535224736,0.6140363877639174,0.04830314079299569,-0.23531576246023178,0.7610545111820102,0.09227630449458957,0.5744848507456481,0.74173717899248,-0.6686703283339739,-0.19504921790212393,-0.31883601285517216,0.433690682053566,-0.3138854610733688,0.639373429119587,-0.9234473812393844,0.09804566111415625,0.7471584654413164,0.17866074945777655,0.07227104296907783,0.73180649895221,0.9764068070799112,-0.701284843031317,-0.3149184565991163,-0.6291530961170793,-0.6413279138505459,0.763041096739471,0.6892200382426381,0.8985545481555164,-0.3802460222505033,0.28741074493154883,-0.7106378311291337,0.7122009177692235,-0.17416244046762586,-0.8045889111235738,-0.40792791126295924,-0.850598743185401,0.031197006814181805,-0.8923821048811078,0.4374319175258279,-0.898430650588125,0.7710655438713729,-0.15148613369092345,0.35464667109772563,0.6953749605454504,-0.049379919189959764,-0.8604886140674353,0.9566300683654845,-0.24298851191997528,-0.11161354510113597,-0.920943342614919,0.051234237384051085,0.12858956027776003,-0.9964308505877852,-0.44881128706038,0.14859195752069354,0.7514005373232067,-0.22400536248460412,0.8641778244636953,-0.7595526799559593,0.6551906792446971,0.18250373611226678,-0.03154081432148814,-0.7393101286143064,0.33690328942611814,0.2603949843905866,0.9010292827151716,0.5460145664401352,0.40342955430969596,0.545855597127229,-0.2711344314739108,-0.3072711983695626,0.3490344835445285,0.2723638345487416,-0.4107618420384824,0.2413077955134213,-0.09995794715359807,-0.548510103020817,-0.21240854263305664,0.9219081378541887,0.048719802871346474,-0.879386343061924,-0.16624263999983668,-0.5375040355138481,0.039508091285824776,0.7692226218059659,0.9883435210213065,0.6641328237019479,0.6766993440687656,-0.09922200161963701,-0.31616011820733547,0.31255837297067046,0.9607271743007004,0.4966697315685451,0.2704511098563671,0.37378779612481594,0.1402367651462555,0.14483473729342222,-0.18083382677286863,-0.3836736837401986,0.9725619358941913,0.9032321088016033,-0.8647955181077123,-0.27418344328179955,0.8030197662301362,0.5210922453552485,-0.07091681938618422,0.4118447578512132,-0.6788499583490193,0.27965109422802925,0.09340426605194807,-0.21876096725463867,0.35538888024166226,-0.6056750845164061,-0.8708771206438541,0.5899684652686119,0.9386170459911227,-0.0759961730800569,-0.8103547729551792,0.38282353477552533,0.27599895698949695,-0.27676153602078557,0.2292430130764842,-0.024365822318941355,0.2749821194447577,-0.9665742935612798,-0.17846380453556776,-0.6102693718858063,0.46098469011485577,-0.4043559483252466,0.2757997000589967,0.21109950775280595,0.6608240129426122,-0.3973319591023028,0.5485509959980845,0.8376218797639012,0.3288034717552364,0.9415332800708711,0.01016590790823102,0.6807501972652972,-0.9422927456907928,0.8731286367401481,0.583093214314431,-0.6351829208433628,-0.26933031901717186,0.47298460360616446,0.24270783504471183,0.7412618813104928,0.908674125559628,-0.692292901687324,0.3927845428697765,-0.033646429888904095,0.6240242230705917,-0.41320796078071,0.19553705491125584,-0.6630215323530138,-0.13537345826625824,0.007858864031732082,-0.6657730098813772,0.37784361094236374,-0.38417095178738236,0.29502395633608103,0.8784890798851848,-0.891631396021694,0.9664439675398171,-0.22367509920150042,0.783387076575309,0.28806405095383525,0.24110429035499692,-0.3152265748940408,0.7021986278705299,0.17164513748139143,0.6663455539382994,0.3480524756014347,0.05682416819036007,0.3821057169698179,-0.32563591841608286,-0.27181247854605317,0.7065843832679093,-0.08254765393212438,-0.10565887577831745,-0.7111119199544191,-0.4173316522501409,-0.5011904845014215,-0.5161189897917211,-0.5845223162323236,-0.45702694403007627,0.0767885223031044,0.8098301240243018,-0.12731183366850019,-0.3108550598844886,0.537167027592659,-0.3128903550095856,0.4983562482520938,0.7228942378424108,-0.5520963040180504,-0.4161504041403532,-0.5968275535851717,0.8835008176974952,-0.5083922492340207,-0.09326841216534376,-0.8732838253490627,0.04263504594564438,0.5443503651767969,-0.046552923042327166,0.06899077305570245,0.8935787151567638,-0.16491454327479005,-0.5238571725785732,0.5875527639873326,0.8083170815370977,-0.22053432557731867,0.09734472818672657,-0.1533390232361853,0.1534068356268108,0.47360184229910374,0.7237509721890092,0.7181498124264181,-0.6151788248680532,0.6902160160243511,0.37110370211303234,0.5460723848082125,0.6383030326105654,0.4750383757054806,-0.6202685674652457,-0.6727161211892962,0.70315275574103,0.8120583593845367,-0.12570878071710467,0.8259812262840569,0.7619572794064879,-0.691042881924659,-0.6167703024111688,0.81106873229146,0.6337966383434832,-0.7690570908598602,-0.21827990468591452,0.6108715417794883,-0.20819274801760912,-0.1725160046480596,0.04576887283474207,-0.5414927592501044,0.9060823642648757,-0.44356912188231945,0.2453529410995543,-0.735810172278434,0.5413044802844524,-0.08484513917937875,0.2550562247633934,0.7183180088177323,0.5023365821689367,0.9612954198382795,0.011378493160009384,-0.7499611275270581,-0.7317283819429576,0.6251574968919158,-0.5495013659819961,-0.5170457796193659,-0.20728174969553947,-0.09792027762159705,0.050731151830405,0.7164505030959845,0.1914352122694254,-0.0678580030798912,-0.7349058301188052,0.5429277457296848,-0.5495400996878743,-0.7143367831595242,-0.34936416521668434,0.5256978087127209,0.9254241832531989,0.945285570807755,0.664322717115283,0.9382750554941595,0.5556529434397817,0.14419141504913568,-0.4482113206759095,-0.8504944518208504,-0.24297540495172143,0.47926426539197564,-0.06935391668230295,-0.48152152728289366,0.5055189756676555,-0.07526275841519237,-0.2867781394161284,-0.23637644806876779,-0.3383404635824263,-0.3144198409281671,0.1862288974225521,-0.7365750670433044,0.6329088853672147,-0.21577978879213333,0.33795103803277016,-0.30433284118771553,-0.6681554606184363,-0.5707552125677466,0.7801107224076986,-0.9167559510096908,0.5557863600552082,0.5565165923908353,-0.855095449835062,-0.7543032886460423,0.7432325584813952,-0.4712644931860268,0.890229741577059,-0.6636595618911088,-0.4499615468084812,0.21756547829136252,-0.17603261396288872,-0.17663342412561178,-0.21357543673366308,-0.20796091808006167,-0.21326694497838616,-0.9783190758898854,-0.8131261840462685,-0.08439369779080153,0.13432494224980474,0.9906496647745371,-0.46265747817233205,-0.8082236242480576,-0.9955984512344003,0.4951811130158603,0.7483242824673653,0.9709410746581852,-0.3713208707049489,0.7386452942155302,-0.7795931273140013,-0.789057994261384,-0.5537529974244535,-0.0762096936814487,-0.7272939872927964,0.44004022888839245,-0.6374220419675112,-0.5823315787129104,0.006853998638689518,0.6254414441064,-0.46599041763693094,0.1434127357788384,-0.9627437554299831,0.391654840670526,-0.06394887994974852,0.5107258842326701,-0.39691889751702547,0.9893285776488483,0.6834213309921324,-0.23381667910143733,-0.3567921528592706,0.6104802279733121,-0.8977316804230213,-0.5930056422948837,-0.7996122380718589,0.05762401735410094,0.35328346490859985,-0.4770191563293338,0.4018808091059327,0.29400565987452865,0.872922660317272,-0.2592360838316381,0.9268709910102189,0.6364654907956719,-0.7539785471744835,-0.5565536813810468,0.440158786252141,-0.5538188214413822,0.5005768141709268,0.37025678157806396,-0.050191172398626804,0.40737832011654973,-0.5061811036430299,0.624663214199245,0.8095623655244708,-0.1443242970854044,0.22646962152794003,0.5170482671819627,0.727416462264955,0.3899957211688161,-0.21160639636218548,-0.08701356267556548,0.08149253716692328,0.1592471245676279,0.8795261848717928,0.6323808925226331,0.2135283537209034,-0.8449271772988141,-0.47548255836591125,0.36391171300783753,-0.4091135491617024,-0.8847970725037158,-0.2738544079475105,0.4241187949664891,-0.05562469642609358,-0.4021437130868435,0.4682559301145375,-0.018985410686582327,0.9196419455111027,0.2173216324299574,-0.2538426420651376,0.592299631331116,0.0734831914305687,0.7621843949891627,-0.6047173328697681,0.026892769616097212,-0.6628324957564473,-0.10225654067471623,0.1200033025816083,0.29667457984760404,0.34510719822719693,0.06347199296578765,0.8303884449414909,-0.19494830165058374,-0.9320368808694184,-0.39679139852523804,-0.24975773692131042,0.9450844693928957,0.8719700048677623,-0.0183619842864573,0.1560987327247858,0.6262116548605263,0.11707960581406951,-0.5384291978552938,0.23929527821019292,0.12351074116304517,-0.04602290969341993,0.5596134620718658,0.8448131876066327,0.1326858107931912,0.10346276964992285,0.7981405598111451,0.31050717970356345,-0.551694537512958,-0.04737343033775687,0.37326286220923066,-0.10963069880381227,-0.2526162746362388,0.9698152239434421,-0.868565920740366,-0.7256233273074031,0.12616704776883125,-0.7978601600043476,-0.7521569500677288,0.6301882485859096,0.6025085048750043,0.34209015034139156,0.8268359168432653,-0.6352025712840259,-0.900895512662828,0.7454408989287913,-0.7802106295712292,-0.30934999976307154,0.5483947764150798,-0.6638869694434106,0.7046627206727862,-0.02315526967868209,0.483023380395025,0.2913437797687948,0.8348502339795232,-0.6810534577816725,0.6909300941042602,0.564599082339555,0.4682648731395602,-0.30579026741907,-0.20429081143811345,0.31976056285202503,0.32395389722660184,0.03614800190553069,-0.6284471284598112,0.01968345418572426,0.47223570570349693,-0.5189353348687291,-0.900716794654727,0.31160772824659944,-0.2698999750427902,0.23100035125389695,0.498666996601969,0.9378925813362002,-0.41203950624912977,-0.593379161786288,-0.6139974901452661,0.06354295695200562,0.6788754207082093,0.7775817872025073,-0.2738127657212317,-0.4937218250706792,-0.5649958937428892,-0.9924823027104139,-0.1643052799627185,0.27177190594375134,-0.7575295330025256,-0.5704108802601695,0.9742720979265869,-0.5797575395554304,-0.25966736068949103,0.8101390195079148,-0.7375154662877321,0.4326749756000936,-0.4081363477744162,0.28151835035532713,0.7445899690501392,-0.35828939778730273,-0.9547212785109878,0.7338560433126986,0.3645299528725445,0.23702025786042213,-0.7126478557474911,0.03143541142344475,-0.6089883004315197,-0.04863068647682667,-0.1729237698018551,-0.27122636837884784,0.20141400396823883,-0.8992533073760569,0.7179260719567537,-0.8056448376737535,-0.13541132537648082,0.518758678343147,0.9160337042994797,0.5690137534402311,-0.6184694170951843,-0.11938575794920325,0.5988289541564882,-0.34501677099615335,0.08487119851633906,0.8692741077393293,-0.5324220447801054,-0.04917555069550872,-0.038340302649885416,0.18562716152518988,0.5022553140297532,0.5024510035291314,0.7069286461919546,-0.7164439684711397,0.9707737574353814,-0.16723769064992666,-0.7040283572860062,-0.7434804257936776,0.759054837282747,0.4939926224760711,-0.5600032275542617,-0.586839466355741,-0.9731537983752787,-0.9982375591062009,-0.6603843523189425,0.8740012552589178,-0.10605944320559502,0.4478933340869844,0.22647583484649658,-0.5483125108294189,0.3039304572157562,0.7572458474896848,-0.9808612833730876,0.7353123375214636,-0.4277550526894629,0.8488176120445132,0.6492012827657163,-0.11489912075921893,-0.4754922827705741,-0.3515442502684891,-0.49754072166979313,0.14742991188541055,0.5427888301201165,0.05864461464807391,-0.6267844410613179,-0.1263748537749052,-0.5099619626998901,-0.5232908362522721,0.42216243082657456,-0.4345031501725316,2.1142419427633286e-05,-0.44228097749873996,0.7810653243213892,-0.39074819535017014,-0.8063703752122819,-0.35952811734750867,0.41870275465771556,-0.8846772396937013,0.9650501981377602,-0.40852791257202625,-0.11962926434352994,-0.05742443818598986,0.36305804550647736,-0.5636563301086426,-0.5270358016714454,0.5668885102495551,0.7180287726223469,-0.7954939710907638,-0.486696126870811,0.06358439801260829,0.6811736784875393,-0.12788749113678932,-0.9738923329859972,-0.28710919758304954,0.4837306309491396,0.527851527556777,0.2977761859074235,-0.46738641895353794,-0.9730633995495737,-0.391640683170408,-0.9491617633029819,0.482982462272048,-0.32003449043259025,0.9423097409307957,0.21779745118692517,0.4553315225057304,-0.8476863647811115,-0.05344495456665754,0.7715625469572842,0.8685354683548212,0.8871244010515511,-0.9925130405463278,-0.9960529748350382,-0.7597445477731526,0.8709530243650079,-0.8542793709784746,-0.8038996546529233,0.5646515041589737,0.9716321313753724,0.7670718771405518,0.9450346836820245,0.09339714981615543,0.4307957338169217,0.9596339669078588,0.4211373017169535,0.5121201844885945,0.05311767803505063,0.85105713410303,0.853391703683883,-0.2738736215978861,-0.6121504832990468,-0.6107756872661412,-0.35629102122038603,-0.13975514518097043,-0.5536978030577302,-0.8716028640046716,-0.7285320307128131,0.878129820805043,-0.6222844747826457,-0.6046709613874555,0.7759873392060399,0.6463322886265814,0.615989712998271,0.16773494612425566,0.33420713106170297,-0.3671391303651035,-0.2972624427638948,0.1865336112678051,-0.4797523943707347,0.311930934432894,0.11861332319676876,-0.6158657954074442,0.6888350783847272,-0.7724897661246359,0.21253937622532248,0.7949696513824165,0.5466753663495183,-0.07260199449956417,-0.3770780893974006,-0.5600714813917875,-0.7136520529165864,0.4983502048999071,-0.8321645832620561,-0.6150203533470631,-0.27671296102926135,0.6502341846935451,-0.9459842070937157,-0.30343989562243223,-0.21668647648766637,-0.7416857862845063,-0.4358816216699779,-0.9505714713595808,-0.49252976290881634,-0.8785596918314695,-0.5995574491098523,-0.7513354285620153,0.6474535530433059,-0.09036184661090374,0.2796193193644285,0.3095738575793803,0.3368476848118007,0.9172325027175248,-0.3309492231346667,0.8283393695019186,0.9605497228913009,0.43378083081915975,0.7000423786230385,0.1317292177118361,-0.505943295545876,0.34596643736585975,0.1272355462424457,0.6124653713777661,0.7744788024574518,-0.32672488084062934,-0.45383505895733833,-0.4896543091163039,0.9909966965205967,-0.1048574005253613,-0.6028499468229711,-0.94204220501706,0.8303521671332419,-0.025727015919983387,-0.14072668040171266,-0.3683771607466042,-0.3871733695268631,0.002752212807536125,0.43974780943244696,0.7658815393224359,0.06672785803675652,-0.048335087951272726,0.545235303696245,-0.2097086776047945,0.5923444200307131,-0.01857920829206705,0.26052425941452384,-0.7514621810987592,-0.6639992790296674,0.11329375114291906,-0.32014620723202825,-0.4531098254956305,-0.21232450706884265,-0.4045720435678959,0.071745993103832,-0.904256071895361,-0.4339305623434484,-0.7290011239238083,0.336308644618839,0.2161076939664781,0.3005231264978647,-0.592518123332411,0.54144556960091,-0.346049961168319,0.5717763686552644,-0.6071344772353768,0.05872670095413923,0.7715614177286625,-0.6858804603107274,0.6759360120631754,-0.39936548797413707,0.37444371124729514,-0.990379293449223,-0.8424915899522603,0.3602652479894459,0.06261421134695411,0.05307736620306969,0.3597795539535582,0.09372229315340519,-0.5615126197226346,0.7622304856777191,0.5250959605909884,0.5823208265937865,-0.11085479939356446,0.5107961064204574,0.6204839115962386,-0.3208385119214654,0.4682883904315531,-0.6632367204874754,-0.03968103136867285,0.38235634472221136,0.12423491757363081,0.6988703277893364,-0.19452198315411806,-0.009243915788829327,-0.7543206331320107,-0.5641075987368822,0.10365326469764113,-0.23716657236218452,-0.6388978944160044,0.7913444605655968,-0.9937632260844111,-0.5913086552172899,-0.1582771334797144,-0.4464923241175711,0.9935277551412582,-0.2891032244078815,-0.15740275010466576,-0.1809636694379151,0.016863035038113594,0.7486777943558991,-0.011256162542849779,-0.39777836576104164,0.9588676285929978,-0.06941040651872754,-0.8893229407258332,-0.3763545099645853,0.811627303250134,-0.7777716186828911,0.11117749661207199,0.6691785212606192,0.6025993265211582,-0.3906268598511815,-0.06211694283410907,-0.6327931890264153,-0.7460691123269498,-0.2531264778226614,0.22183401882648468,0.2197159598581493,-0.008191653061658144,0.6066489899531007,-0.457142123952508,0.2107538292184472,0.09178512962535024,0.9196016476489604,0.5916197444312274,-0.7379151522181928,-0.6678680428303778,0.7808321728371084,-0.9500019703991711,0.6622779546305537,0.18783732829615474,0.7967665125615895,0.21104042185470462,-0.04347473802044988,-0.499401540029794,0.2760015963576734,-0.026536585297435522,0.1561168278567493,-0.9331592540256679,-0.804485622793436,0.6946454704739153,0.5026180213317275,0.4322953321970999,0.5531371082179248,-0.9483367349021137,0.1559532331302762,-0.170506174210459,-0.6342333061620593,0.13277723779901862,-0.6621074825525284,0.8809304116293788,0.8860401618294418,0.0008107856847345829,-0.8827911522239447,-0.5814793324097991,0.00908921891823411,-0.8023662455379963,0.48899540957063437,0.5132190003059804,0.4938555364497006,-0.3825793252326548,-0.8989925887435675,0.07627981621772051,0.8319445974193513,0.1866771737113595,-0.7388007352128625,0.7145659714005888,0.6824452779255807,-0.04715481586754322,0.24747649114578962,-0.5147782238200307,0.7560944971628487,0.19830476958304644,0.17553176125511527,0.876077676191926,0.33007207373157144,0.6810568571090698,-0.5379891744814813,0.08167354948818684,0.5408411300741136,-0.08752566995099187,0.14704361045733094,-0.4218336404301226,0.8000716483220458,0.0851074536330998,-0.8551989262923598,-0.6498825610615313,0.9973559575155377,-0.4071933599188924,-0.780782253947109,-0.967995238956064,0.44277956150472164,0.18320631189271808,-0.5706796580925584,-0.23485236149281263,-0.6188541948795319,0.810161123983562,0.2797185583040118,0.6433781301602721,0.160939397290349,0.252964670304209,0.5516362856142223,-0.08188735786825418,-0.5889750155620277,0.09359000017866492,-0.029656257014721632,-0.4297611750662327,-0.26254917308688164,0.8548058914020658,-0.10170346964150667,-0.5489759300835431,-0.042931382078677416,0.4236057628877461,0.19813798367977142,0.8923425921238959,0.9187342920340598,0.6233652480877936,0.8747500218451023,0.8980454672127962,0.9709749552421272,0.16885206894949079,-0.8292470872402191,-0.9229102162644267,-0.8789928709156811,0.027274486608803272,-0.6721839155070484,-0.20572222210466862,0.04505222849547863,-0.019529254641383886,0.2893426804803312,0.663355156313628,0.027630675118416548,0.9819944202899933,-0.8830915857106447,-0.08356465678662062,-0.21731962729245424,0.9806228284724057,-0.6510342336259782,-0.7852706178091466,-0.5140355988405645,-0.08941314462572336,0.4838594049215317,-0.5031996532343328,-0.4623128776438534,0.28488672710955143,0.14375949976965785,0.7494172984734178,-0.037166034802794456,0.12363451300188899,-0.8184046284295619,0.1936114178970456,0.5722136776894331,0.3567718039266765,-0.2730051432736218,0.7189882122911513,0.9892302001826465,0.050013188272714615,0.37384302308782935,-0.12705991230905056,0.4686079998500645,-0.17319449223577976,-0.5613468270748854,0.6855421317741275,-0.300666983705014,-0.7983642383478582,-0.9808787535876036,-0.9284914773888886,0.8757931203581393,0.685359678696841,0.1345298681408167,0.5623021675273776,0.9036529469303787,0.5853915209881961,-0.5491853365674615,0.8815816203132272,-0.6184987467713654,0.5441858354024589,0.10578406089916825,-0.8082076385617256,-0.917943227570504,-0.06495572160929441,-0.5000589229166508,0.005662667099386454,-0.929163446649909,0.3556663226336241,-0.7654033955186605,0.473214800003916,-0.6147596370428801,0.8556945375166833,-0.5660952352918684,0.47817272786051035,-0.5046013575047255,0.73494369443506,0.6346310586668551,0.9608020265586674,0.4587448979727924,0.8009537565521896,-0.3798185936175287,-0.8542914991267025,0.845598197542131,0.9024832812137902,0.28444629395380616,0.497335456777364,0.8226689482107759,0.10483832424506545,-0.8649493013508618,0.014065066818147898,0.20241676503792405,-0.13967117201536894,-0.4922235840931535,-0.2775807147845626,0.17258082842454314,0.5122513296082616,0.003934028558433056,0.21839049132540822,-0.12540800496935844,-0.8606709614396095,-0.6855775755830109,-0.019222470931708813,-0.1651720586232841,-0.5377740957774222,-0.7431909274309874,0.6119241621345282,0.1927694152109325,-0.2378896870650351,0.698586689773947,0.13266555173322558,0.7143551120534539,-0.7256576824001968,0.6272852793335915,0.7037940355949104,-0.04839616362005472,0.3817831580527127,-0.3479176415130496,-0.38396952440962195,-0.503460293635726,0.7526733814738691,-0.16284699272364378,0.8688393947668374,0.14481306727975607,0.3661460834555328,-0.10872143926098943,-0.06098318239673972,-0.6801011068746448,-0.984264921862632,0.9658126602880657,-0.8302115355618298,-0.7332611442543566,0.05547504872083664,-0.6536741047166288,-0.3440274903550744,-0.5111403581686318,0.0015620714984834194,-0.4298650538548827,-0.9277641368098557,-0.33761214977130294,-0.26485814480111003,-0.2937689987011254,-0.08421230455860496,-0.6346879368647933,-0.26749368105083704,-0.9533712291158736,-0.6276428503915668,-0.589794350322336,0.027703622356057167,-0.5846903794445097,0.25251991068944335,-0.8653026735410094,0.8604199136607349,0.0789684560149908,-0.2669575344771147,-0.48281583469361067,-0.5778961135074496,0.30000709742307663,-0.7375874491408467,-0.5368688367307186,0.30031759617850184,-0.11497411597520113,-0.693631861358881,0.9464027672074735,0.5030650454573333,-0.2753419606015086,0.776136982254684,-0.05570636224001646,-0.15381355676800013,-0.9196608057245612,0.3732893681153655,0.25540280248969793,0.7633358808234334,0.5233017937280238,0.02264974033460021,-0.9380103279836476,0.9419231093488634,0.4253458920866251,-0.443690731190145,0.8012853907421231,-0.32839413871988654,0.49225983722135425,-0.4097052961587906,0.2189522641710937,0.8573444238863885,-0.47911442164331675,0.8443122440949082,-0.4612080375663936,-0.5808311961591244,-0.7475734883919358,-0.8860104656778276,0.5033877710811794,0.14662715326994658,0.40324345976114273,0.46106372587382793,0.12306269071996212,-0.7809604238718748,0.9931531921029091,-0.5768064027652144,0.36957147158682346,-0.5293259862810373,-0.5037964354269207,0.7612837483175099,-0.07538789603859186,-0.38997037429362535,0.9402525094337761,0.21776445116847754,0.03314455226063728,-0.042857400607317686,-0.8389026182703674,0.6221239641308784,-0.8170884405262768,0.49319997103884816,-0.1751261460594833,-0.7597671803086996,-0.93280976312235,-0.637045428622514,0.9287711223587394,-0.36910654651001096,0.650925915222615,0.48707218701019883,-0.7847586772404611,0.5323546067811549,-0.6524082138203084,0.41988319251686335,-0.9606801616027951,0.8099831333383918,-0.6486637131310999,0.817180351819843,0.10340617364272475,-0.8760636001825333,0.7931929510086775,0.04953534388914704,0.09675387758761644,-0.021475275978446007,-0.9817419219762087,0.21692322567105293,0.36115294974297285,-0.6203150786459446,0.8013467858545482,-0.6331969848833978,0.15047698840498924,0.5523044103756547,0.7405203650705516,0.4964895392768085,0.43273348174989223,0.8838794576004148,0.788844573777169,0.09828053461387753,-0.6076953732408583,0.34539839858189225,-0.6349542951211333,-0.9703920246101916,0.3903484595939517,0.9023033678531647,-0.22035617101937532,-0.49278230173513293,0.5821898616850376,-0.18740515550598502,0.8851287891156971,0.456720111425966,-0.9297018554061651,-0.8106907680630684,-0.060514184180647135,0.693958661518991,-0.27485521556809545,-0.3114752434194088,0.013750497251749039,0.09702962078154087,-0.7152803502976894,0.5973520050756633,0.6631862255744636,-0.03656843909993768,0.9996581925079226,0.7845767866820097,0.7908934378065169,-0.6923804823309183,0.9582172306254506,0.07332310546189547,-0.38267290964722633,-0.9282292486168444,0.1630064072087407,0.4558791103772819,-0.23274162411689758,-0.7133573032915592,-0.6138785923831165,0.3566664382815361,-0.6519978917203844,-0.33422906044870615,-0.12306364951655269,0.2699207905679941,0.502521341200918,-0.5816816915757954,0.24337337538599968,0.20092901354655623,-0.9398092147894204,0.9335885304026306,0.13351277075707912,0.1865448085591197,-0.0827760393731296,0.8634594073519111,0.8499134313315153,-0.8739309813827276,0.5098852310329676,-0.47851861733943224,-0.6324591152369976,-0.7837146087549627,0.18492476036772132,-0.5354595058597624,0.4357504155486822,-0.44801051868125796,-0.035082950722426176,0.41733162105083466,-0.08719651307910681,0.656112692784518,0.5732978223823011,0.008956965059041977,0.25041372794657946,-0.293594803661108,-0.5010862592607737,-0.4611803060397506,-0.7903572130016983,0.41956512024626136,0.496401852928102,-0.2879711617715657,0.1900002141483128,0.4470082800835371,-0.1576806604862213,0.9522801847197115,0.9579661260358989,-0.8987307860516012,0.2158043379895389,0.9547261754050851,0.2978534963913262,0.8144805054180324,-0.7467168313451111,0.3695755214430392,0.3464657636359334,-0.6393802501261234,0.5286409934051335,-0.41827749414369464,0.3201065114699304,0.320652668364346,0.24615996005013585,-0.018736484460532665,-0.8098140773363411,0.01885952800512314,0.8516124803572893,0.04948230227455497,-0.4137401394546032,0.4472204283811152,0.49410966550931334,0.9054602975957096,0.9806849304586649,-0.05136184487491846,-0.9582717739976943,0.8043165793642402,0.15180872520431876,0.5387405883520842,-0.7837177948094904,-0.5892193489708006,-0.06756088510155678,0.1528613017871976,-0.6197744607925415,0.9376830905675888,0.28756690490990877,-0.38325558276847005,0.7960884142667055,0.3295237338170409,-0.17758633475750685,0.024837454315274954,0.1476005739532411,-0.41827129758894444,0.7870680219493806,0.8735857740975916,0.27776664681732655,-0.1437636148184538,0.686969461850822,0.7072251406498253,0.6666288394480944,-0.12980079604312778,0.7378058950416744,-0.8626185366883874,-0.9727530726231635,-0.2286126739345491,-0.36163406912237406,0.904266229365021,-0.7000583079643548,0.21214602002874017,0.9655471220612526,0.11761651001870632,-0.7838111226446927,-0.5516256466507912,0.594196748919785,0.1743378322571516,-0.818403432611376,-0.15275451261550188,0.6658584652468562,-0.8510655462741852,0.2575443875975907,-0.6235798737034202,0.8199945501983166,0.7639569635502994,0.44262664718553424,-0.09843032388016582,-0.49565755343064666,-0.679795766249299,0.8040703269653022,0.016081987414509058,-0.6823619580827653,0.7370552718639374,-0.1925610457547009,0.6838496588170528,-0.24365701247006655,-0.6082211881875992,0.9708177489228547,-0.8076517144218087,0.7123500099405646,0.56423081131652,0.8960415618494153,0.18349083559587598,-0.31266723526641726,-0.4019752247259021,0.7572711398825049,0.8616953371092677,-0.6397876255214214,0.17656092206016183,0.19003842771053314,0.5689082769677043,0.34468188881874084,-0.41936489287763834,0.24878705060109496,-0.7320881485939026,-0.52131073968485,0.3876228746958077,0.16774867940694094,-0.12311763688921928,-0.975215619429946,-0.30227093072608113,0.7519504982046783,0.5983863854780793,0.8028401774354279,-0.7706261463463306,0.04199708253145218,-0.6589383282698691,0.3262522737495601,0.22647729609161615,-0.7715001702308655,0.49375507049262524,0.11141867516562343,-0.3505526506341994,-0.453163031488657,-0.6151493298821151,0.5713962451554835,0.2692270646803081,-0.8144986713305116,-0.8838019305840135,-0.8160767531953752,-0.8071209634654224,0.3258646810427308,-0.9886372778564692,0.5766696301288903,-0.8713193591684103,0.09575297823175788,-0.3797323973849416,0.18468700954690576,-0.5732513754628599,-0.9005118701606989,-0.838131608441472,0.8191526136361063,-0.7081892630085349,0.5829225615598261,-0.8310543526895344,-0.17686801264062524,0.6530814147554338,0.45400282787159085,-0.7899198522791266,-0.3971445797942579,-0.5896424213424325,-0.9325443925336003,0.3292535557411611,0.5743966950103641,-0.6378042614087462,0.02300191530957818,-0.910649131052196,-0.8660156498663127,0.11145091382786632,-0.4085158593952656,-0.23610076820477843,-0.019290356431156397,-0.21130776079371572,-0.8890528487972915,0.7636742410250008,0.41723176976665854,0.7847871845588088,0.9598329090513289,-0.20772522781044245,-0.601798640564084,-0.33156632957980037,-0.460167130921036,0.7911680894903839,0.6779946596361697,-0.3671979457139969,0.5179157229140401,0.0663344576023519,-0.3389761224389076,-0.383785632904619,0.861489272210747,-0.46953010838478804,0.09768626000732183,0.03228332521393895,0.24927021423354745,0.11147633893415332,0.43030765652656555,0.37359064584597945,-0.5563760586082935,0.08175390306860209,0.28855306236073375,0.07460752781480551,0.9803476827219129,0.15940786013379693,-0.09663026360794902,0.41154847759753466,-0.4558561802841723,0.19960311660543084,-0.014112383592873812,0.9163830038160086,0.981563150882721,-0.8933022664859891,0.8634704295545816,0.8496315791271627,-0.9832378970459104,0.6215290981344879,-0.6755011794157326,-0.550959485117346,0.6754771023988724,0.029508966021239758,-0.842793669551611,0.4200574536807835,-0.6669518128037453,-0.8851003195159137,0.7365579325705767,-0.9658751813694835,0.14559933077543974,-0.46226994367316365,0.7499457392841578,-0.9218752020969987,-0.31163507513701916,0.7650948357768357,-0.25724491104483604,-0.5448216246441007,0.10315488185733557,0.7620153832249343,0.6131246755830944,0.17071658791974187,-0.45056051667779684,-0.04132516495883465,0.6507801781408489,-0.8924334081821144,-0.13493592524901032,-0.9026185674592853,-0.5576629927381873,-0.991288211196661,0.3652534973807633,0.5248684189282358,0.14299312978982925,0.8909017415717244,-0.9032050822861493,-0.5433098976500332,0.7364600338041782,0.24527815310284495,0.11113027110695839,-0.5407804548740387,-0.4568894961848855,0.5674539553001523,0.1461422578431666,-0.1801621657796204,-0.6615873612463474,-0.3724530288018286,0.47805917635560036,0.2069237087853253,0.8541809767484665,-0.141254099085927,-0.11668177647516131,-0.10037232516333461,0.846952423453331,0.35800139885395765,-0.734461850952357,-0.4421861981973052,0.10160101484507322,-0.49631652561947703,0.6125735645182431,0.14962565945461392,-0.6055190935730934,-0.31677560741081834,0.43540208926424384,-0.26706275530159473,-0.3924191347323358,0.9100788524374366,-0.15711190272122622,-0.771224164403975,0.01268486911430955,-0.9247095477767289,0.8227985380217433,0.30119312508031726,0.033892379142344,0.8046782813034952,0.8307926435954869,0.4504194976761937,0.3544579651206732,0.10208234703168273,0.14816853357478976,-0.3643466108478606,-0.1611752207390964,-0.4437713515944779,0.9712973581627011,-0.5103010856546462,-0.8052498358301818,0.8571705031208694,0.02165139466524124,-0.16639866307377815,-0.7052488229237497,0.027222553733736277,0.9810404498130083,-0.18544472195208073,0.5513709955848753,-0.10326044168323278,0.30303347297012806,-0.8518247436732054,0.22212992561981082,0.7809341428801417,0.9773989273235202,-0.12606314476579428,-0.7005458474159241,0.932592059019953,0.691725532989949,-0.3911849781870842,-0.9804674298502505,0.4333843463100493,-0.15528024407103658,0.7042272537946701,0.16378137888386846,0.9894966050051153,0.8297533676959574,0.08472365280613303,-0.1786129684187472,0.5743996072560549,-0.806108633056283,-0.13436764292418957,0.8659664341248572,0.8007296747528017,0.387489699292928,-0.30759307835251093,-0.8078641928732395,0.8737315204925835,0.5951672168448567,0.7451264415867627,-0.20019833417609334,0.08496041083708405,-0.17826057970523834,-0.0809969655238092,-0.9093476911075413,0.8733907965943217,-0.8767730477266014,0.4437354472465813,0.3241576300933957,0.5226855576038361,0.26532520866021514,0.5108720529824495,-0.5005249846726656,0.24475700873881578,0.4637133558280766,-0.6443789186887443,0.8765944885089993,-0.9040339491330087,0.4754955447278917,0.1757700932212174,0.9754109652712941,-0.8304339149035513,-0.40678129345178604,-0.7113426895812154,-0.9085405860096216,0.09009560942649841,0.08817768329754472,-0.31574235623702407,-0.025801221374422312,0.0547429108992219,0.433371773455292,0.05741298757493496,0.9460894074290991,-0.791415867395699,-0.5101361041888595,0.522790384478867,0.8991124909371138,-0.7711258227936924,0.7330329995602369,-0.3049131603911519,0.21390856709331274,0.8051586356014013,0.7257371200248599,-0.4736989689990878,0.7804621942341328,-0.04878799011930823,-0.8964757034555078,-0.5912164840847254,-0.1739719700999558,0.44642606982961297,-0.8114886907860637,0.14473600266501307,0.8007775549776852,-0.712741260882467,-0.2216454134322703,-0.784879990387708,-0.14023404475301504,0.8263260801322758,0.42534878896549344,-0.49442980205640197,-0.7860427079722285,0.8703518933616579,0.11004899488762021,0.9400127222761512,0.2890261374413967,-0.718414104077965,-0.7646764745004475,-0.5553212012164295,-0.7657570177689195,0.9283314510248601,0.343528026714921,-0.2607535030692816,0.9706826750189066,-0.20049675600603223,0.36250612838193774,0.48777840100228786,0.5454929633997381,0.025109841022640467,0.549548510927707,-0.19161780131980777,-0.40505366306751966,-0.6785357729531825,-0.27545952750369906,-0.19251973275095224,0.9975619153119624,0.8673039432615042,0.22913773357868195,-0.9509631986729801,-0.05777043430134654,0.5481352498754859,-0.571978242136538,0.9094436247833073,-0.14214147673919797,0.16971274744719267,0.2846417627297342,0.5729709668084979,-0.926929805893451,-0.9968119314871728,0.34856305411085486,0.08352920087054372,0.6950290519744158,-0.573311235755682,0.6261271629482508,-0.49413267709314823,0.6655175532214344,0.4297436298802495,-0.5861374880187213,-0.4887115410529077,0.8074479647912085,0.10573864914476871,0.33296329667791724,0.7050596615299582,-0.19578239554539323,0.36493753269314766,-0.802098436281085,0.6852436996996403,-0.9328534035012126,0.830075325910002,0.16557672061026096,-0.4201101837679744,-0.5768152987584472,0.8256968837231398,-0.08818102162331343,0.48963763238862157,-0.26968973269686103,0.28813685895875096,0.5613088440150023,-0.05447412980720401,0.44610831094905734,0.1299623646773398,0.30907944357022643,-0.14071195106953382,0.10361369326710701,0.35050179436802864,0.29270063806325197,-0.1886848071590066,-0.6558451293967664,-0.9237667671404779,0.6465218835510314,-0.22944250889122486,0.20956512726843357,-0.34460189240053296,-0.1315581169910729,0.8923692260868847,-0.8859392469748855,0.2628353084437549,0.5886298781260848,0.6266032485291362,0.9382921205833554,-0.34895694674924016,-0.31513276463374496,0.5482217371463776,-0.48573965579271317,0.37489128904417157,0.6920043844729662,-0.7588459737598896,0.7258426761254668,0.84471754450351,-0.43823446705937386,-0.4815595946274698,-0.39313949551433325,0.722193970810622,0.18553784815594554,0.24078034842386842,0.3800882874056697,-0.8183044414035976,0.610391391441226,0.3958721007220447,-0.5908513474278152,0.8980498849414289,0.6345090372487903,-0.383777963463217,-0.5923209181055427,0.23767268238589168,-0.32509741047397256,0.423642803914845,-0.49165426241233945,-0.11687122844159603,-0.37340360693633556,-0.23376523284241557,-0.09662147425115108,0.08675742615014315,0.09623372601345181,0.9943255358375609,0.3637892915867269,0.794605734758079,-0.6646730983629823,-0.20415947679430246,0.2778342077508569,0.4967408049851656,0.1043384145013988,0.83234310336411,-0.3976005306467414,-0.3833430805243552,0.0378180923871696,0.4481495516374707,0.7444414794445038,0.11909352568909526,0.21647394634783268,-0.44127168180420995,0.48890980426222086,-0.8831940963864326,-0.5333072259090841,0.0014087590388953686,0.07523646438494325,-0.26837640535086393,0.7443552738986909,0.7137304963544011,0.712840084452182,0.45833306899294257,-0.4323452590033412,-0.4234423404559493,-0.16110559226945043,-0.16153971944004297,0.5026644198223948,0.8810480092652142,-0.5755581874400377,0.6036746082827449,-0.19391399947926402,0.8780544148758054,-0.5583509900607169,-0.40644250344485044,0.0009835409000515938,0.032319318037480116,-0.6532864239998162,0.03449134062975645,-0.3899382674135268,-0.904011516366154,0.05876190261915326,0.8066923329606652,0.9786496320739388,-0.33714249543845654,0.11221616435796022,-0.7615597094409168,-0.3381731351837516,0.5746590155176818,-0.3544909846968949,0.9745314512401819,0.1997104287147522,0.7879995596595109,0.6079012732952833,0.44455415569245815,0.9051322978921235,0.1305576846934855,-0.6605248916894197,-0.3401995385065675,0.2802270487882197,0.9509395994246006,0.15995151177048683,-0.6221197005361319,0.2352479095570743,0.5837490791454911,0.29889192432165146,0.18618499720469117,-0.33320283982902765,0.7738482379354537,-0.9499094691127539,0.49550682958215475,0.14598993817344308,-0.2916830275207758,-0.6078766235150397,-0.5278476332314312,-0.9916622210294008,0.781823905184865,0.637705406639725,0.8395973001606762,0.6125111826695502,-0.3304713671095669,0.2076642899774015,-0.5795225645415485,0.9590419610030949,-0.751643983181566,-0.10046745324507356,-0.9867237042635679,-0.9982030284591019,0.23493300937116146,-0.2081190599128604,0.20362431416288018,-0.8238920019939542,-0.13595204940065742,-0.5277786990627646,0.48962840763852,0.3812439013272524,0.7372672162018716,-0.49897413700819016,-0.28653137059882283,0.885314435698092,-0.857098029460758,-0.7505332278087735,0.5520437741652131,-0.33165547624230385,0.4551648162305355,-0.44636718556284904,-0.41940767131745815,-0.06010760273784399,0.26151858689263463,-0.5960209225304425,-0.09673125203698874,-0.24433236196637154,0.49896631948649883,-0.31206923676654696,0.9332383344881237,0.03303918521851301,0.08865666715428233,-0.2827805634588003,0.955172071699053,-0.5141648906283081,0.05727037414908409,0.24450405314564705,-0.2227798132225871,-0.4119591247290373,0.29675598395988345,-0.2062568971887231,-0.2652059234678745,-0.9905638894997537,-0.13960521994158626,0.14712821319699287,-0.34989311173558235,0.1502871704287827,0.9267989844083786,0.7320878342725337,0.6746332761831582,0.6391734420321882,-0.4815557668916881,-0.20906889531761408,-0.40115689719095826,-0.9952914132736623,0.4239689037203789,0.7408442622981966,0.413217602763325,-0.24409716110676527,-0.25191849609836936,-0.6348632737062871,0.8814426111057401,0.217940678820014,0.42597332363948226,0.37792133912444115,0.0007686703465878963,-0.780288397334516,0.43712076963856816,-0.4535481850616634,0.9771922831423581,0.30895863054320216,-0.5618109204806387,0.2984168902039528,0.0903476420789957,-0.8640826307237148,0.45090649323537946,0.7445389819331467,0.6673227064311504,0.24489648966118693,-0.8447031625546515,0.39277812326326966,-0.7189566278830171,-0.23645605752244592,0.9407635303214192,-0.14980869367718697,0.4607683722861111,0.05970442108809948,0.36590596614405513,0.438425256870687,0.6734358100220561,-0.5708633330650628,-0.18178492225706577,-0.5645792973227799,0.5534886652603745,-0.13190483348444104,-0.12911060033366084,0.9011899102479219,-0.928132267203182,0.8026289460249245,0.19868216011673212,-0.9266321384347975,0.5146458381786942,-0.817291037645191,-0.3972723316401243,-0.4616035530343652,0.7130071939900517,0.7039669826626778,0.5537445079535246,0.5082453032955527,-0.8884723191149533,0.2557065198197961,0.15864791814237833,-0.7864924697205424,0.9516016994602978,0.016732631251215935,0.36405321350321174,0.778129929676652,-0.4757864801213145,-0.9777859477326274,0.6630198522470891,0.2893400634638965,0.5070511270314455,0.3152131447568536,-0.6352524086833,0.5066759712062776,-0.20726357540115714,0.545558872167021,0.27476715110242367,0.9160658838227391,0.6775460606440902,0.8154590181075037,0.5375178665854037,0.5329867023974657,-0.358044502325356,-0.007101775612682104,-0.08999208081513643,-0.5395824005827308,-0.8442199495621026,0.6768350172787905,-0.5691733006387949,-0.9179994496516883,-0.9113565334118903,0.6504244320094585,-0.47869751788675785,0.5655316291376948,0.1337953875772655,-0.3137694364413619,-0.3954934682697058,-0.34247691463679075,-0.009567528031766415,-0.9597825640812516,-0.12161309085786343,-0.26888631377369165,0.23349550226703286,-0.39330335054546595,-0.179066629614681,-0.1149619072675705,0.2733389656059444,-0.5207541710697114,-0.8237449764274061,0.7207863945513964,-0.7822576323524117,-0.494610290043056,0.35203258553519845,0.3858462837524712,0.3466473426669836,-0.5648996862582862,0.17122890707105398,0.0701302639208734,-0.5808588759973645,-0.5576001736335456,0.07109900936484337,-0.15893609542399645,-0.9275937373749912,0.28501256834715605,0.3342466182075441,0.5125052612274885,0.5940159517340362,0.19350910652428865,0.9900650950148702,0.5657746349461377,0.24900680175051093,-0.05979754403233528,-0.15893489867448807,-0.5395227209664881,0.004760043229907751,-0.058529645670205355,0.2670437037013471,0.8573352862149477,0.5968845309689641,0.3391783512197435,-0.1858139717951417,0.41966159269213676,0.880286764819175,-0.08271088032051921,0.487920792773366,-0.718365119304508,0.05922241834923625,0.4423833955079317,0.032526187133044004,0.21755368309095502,0.306534213013947,-0.9531080992892385,-0.6419085026718676,-0.20274996710941195,-0.5669361082836986,0.534159267321229,-0.5763121759518981,0.2064374592155218,0.4786524041555822,-0.9426860893145204,0.2927687210030854,0.8397303898818791,0.8273955066688359,-0.5586171080358326,0.5775897800922394,0.2205100622959435,0.1664347006008029,0.2648030654527247,-0.2039732071571052,0.5538346460089087,0.8412140421569347,-0.5049030971713364,0.028872201219201088,-0.12116394145414233,-0.5106321070343256,0.3314600456506014,-0.3948879335075617,0.9077209294773638,-0.9064918952062726,-0.4520906279794872,-0.4943553935736418,-0.07366327149793506,-0.7711329245939851,-0.6173497317358851,-0.03680315148085356,0.674299425445497,0.5478314096108079,0.5515866787172854,0.3319720672443509,-0.8288665888831019,-0.31278117932379246,0.6473491042852402,-0.8065860779024661,-0.8384219207800925,0.5220382027328014,-0.5310347308404744,0.653776022605598,0.3691511545330286,0.33840470341965556,0.5473713227547705,0.8323333128355443,0.9382729302160442,-0.34684101212769747,0.8758703153580427,-0.7256380897015333,0.9296596008352935,0.9218499520793557,0.942452113609761,-0.6735295648686588,-0.9285568641498685,-0.7511613671667874,0.9346635024994612,-0.1469458406791091,0.8086656266823411,-0.0902567976154387,-0.6918900720775127,0.8938156864605844,-0.8235583729110658,0.20200012437999249,-0.6858234344981611,-0.6305804676376283,-0.9154126523062587,0.021465755999088287,-0.05267439316958189,-0.8055995386093855,0.4642566251568496,-0.31189447874203324,0.1549952356144786,0.42045473866164684,-0.021087979432195425,0.16681046783924103,0.0784882758744061,0.7960731871426105,0.5281408494338393,0.5173925901763141,-0.24860698357224464,0.02851259708404541,0.9547820030711591,0.7227089665830135,0.6240823613479733,0.09638687130063772,0.7664897991344333,0.8029658477753401,-0.10197375016286969,0.013753310311585665,-0.8542117620818317,0.04402126930654049,-0.8423141087405384,-0.6802176618948579,0.44885692093521357,0.7381770522333682,0.7180268694646657,-0.6898532044142485,0.13494314532727003,-0.1956104557029903,-0.4640616658143699,-0.028503993526101112,-0.14075952768325806,0.3062868337146938,0.04978132527321577,0.8041341346688569,-0.09694258775562048,-0.15001373225823045,0.5635661389678717,-0.33648105384781957,0.9972651093266904,-0.7824232270941138,-0.6906893756240606,0.9685936076566577,-0.6753360806033015,-0.4233995792455971,0.38563014613464475,-0.9109644535928965,0.5130819766782224,-0.1787881744094193,0.6733900057151914,0.6477716220542789,0.20185818523168564,0.8977983286604285,0.09682465391233563,0.17847087234258652,-0.4409777941182256,-0.9741523545235395,-0.17363784881308675,-0.18054373795166612,0.8353029480203986,0.8146803146228194,-0.5054331766441464,-0.8614050480537117,-0.33948814077302814,0.19142017839476466,-0.43261041259393096,0.6080339164473116,-0.23080765083432198,0.8885263805277646,0.4643143410794437,0.29334919387474656,0.9939570655114949,0.886434696149081,0.11461784411221743,0.5055425623431802,0.7084577330388129,0.024911433923989534,-0.761428049299866,-0.748001801315695,-0.5275796041823924,-0.4445907040499151,0.03546750172972679,-0.3894205605611205,0.6663291277363896,0.19788116868585348,-0.16092958487570286,0.16346616623923182,-0.3503674906678498,-0.5940751363523304,0.39618494594469666,0.28852564794942737,-0.8106161402538419,0.46303468383848667,-0.25360704958438873,0.48772330628708005,-0.7924300725571811,-0.38098223647102714,-0.027348029892891645,-0.8949184948578477,0.48286484787240624,-0.4260007399134338,0.443160489667207,-0.7700943821109831,0.4247016767039895,-0.43314440455287695,-0.012199527118355036,0.4909329880028963,-0.9100151141174138,0.9509031474590302,0.746795330196619,0.14263653848320246,-0.2949960781261325,0.5763474470004439,-0.4761177282780409,0.045922514982521534,-0.35119523433968425,-0.43792261369526386,-0.0861416351981461,-0.8753258213400841,-0.9763872101902962,0.9216477107256651,0.8567109606228769,-0.443583182990551,-0.862308562733233,-0.709529294166714,-0.7164448797702789,-0.9311447902582586,-0.0821135719306767,0.4440249898470938,-0.9831670438870788,0.154675398953259,0.367633861489594,-0.024450215976685286,-0.30343774054199457,0.70548962848261,0.9513487010262907,-0.3770218822173774,-0.43469593673944473,0.25624603871256113,0.5939962891861796,0.583493824582547,0.9230432054027915,-0.9774169623851776,-0.9502678425051272,-0.05397870345041156,-0.4903204166330397,0.6797989406622946,-0.393689701333642,0.13622024934738874,0.6734046139754355,-0.5341384815983474,-0.2836504075676203,-0.17217348935082555,0.788713370449841,0.6895834505558014,-0.11481562862172723,-0.031386923510581255,0.745645587798208,0.7880447558127344,0.4837998291477561,-0.03741331119090319,0.5669691460207105,0.9714730335399508,0.7350694607011974,0.42000049678608775,0.05160436313599348,-0.9734876775182784,-0.9763495838269591,-0.8546858178451657,-0.9447925817221403,-0.8493591644801199,0.7984096775762737,0.7384915179573,-0.4809850254096091,-0.26545488787814975,-0.6955329403281212,0.2949897930957377,0.3420079303905368,-0.7836563377641141,-0.6272763651795685,-0.18958206614479423,-0.8224016670137644,-0.39017912605777383,-0.185157157946378,0.7919249036349356,-0.7606357536278665,0.5138949137181044,-0.8778451066464186,-0.8003281489945948,0.25796390464529395,0.3415351128205657,-0.46592222480103374,-0.7754693934693933,-0.543150344863534,-0.34214923810213804,-0.8994836327619851,0.9695728607475758,0.17230253433808684,-0.6816190374083817,0.11468537570908666,-0.29746425431221724,-0.30452044820412993,-0.030623772647231817,0.4935135361738503,0.38152097072452307,-0.017602715641260147,0.9530888525769114,-0.09842293709516525,-0.23396304296329618,0.6786142997443676,-0.06150001846253872,0.598537421785295,-0.973143435548991,0.8421331462450325,-0.62928481772542,-0.029180065263062716,0.5934855695813894,0.3749543586745858,0.26568626100197434,0.8133910377509892,0.9956701514311135,-0.7268329216167331,-0.6712690135464072,0.6506919087842107,0.13541547115892172,-0.8261252935044467,-0.43361818278208375,0.28576041804626584,-0.9443437149748206,-0.820926227606833,-0.4084029453806579,-0.07396078761667013,0.20286236517131329,0.5106838601641357,0.3435586169362068,0.6652846192009747,-0.9223397644236684,0.7656600014306605,0.5544224153272808,0.09382739663124084,0.4041132084093988,-0.7506146905943751,0.4588368949480355,-0.7439916445873678,-0.453045594971627,0.4399826545268297,-0.09927699994295835,-0.45764108980074525,-0.20017147855833173,-0.7548968568444252,0.7045728890225291,-0.16853216709569097,0.022968993987888098,-0.4848898472264409,0.7694864734075963,0.7062303386628628,0.15668941289186478,-0.01025776145979762,0.13594350591301918,-0.4424534500576556,-0.3592123887501657,0.15696364175528288,-0.7832806301303208,-0.2469811700284481,-0.03486589156091213,-0.2015846213325858,0.20057495450600982,-0.9739825967699289,0.5888452506624162,-0.9089180929586291,-0.5418061763048172,-0.9521620771847665,-0.6193224764429033,-0.2961557204835117,-0.3019752549007535,-0.21996314404532313,0.592871643602848,0.9630613247863948,0.8543600467965007,-0.23310205154120922,-0.31372792506590486,-0.7659885007888079,0.7221452863886952,-0.8023488754406571,-0.5795298079028726,-0.4075875203125179,-0.7556189768947661,-0.7248519835993648,0.1919200555421412,0.5306187681853771,0.7014352823607624,-0.9121934180147946,0.6408600020222366,-0.35695570847019553,0.24883038084954023,-0.0019095833413302898,0.024003089871257544,-0.4376697326079011,0.46142426365986466,0.4154877602122724,-0.31864582002162933,-0.5692575639113784,0.456189158372581,0.6224483638070524,0.21620736923068762,0.4966971860267222,0.7261258000507951,-0.062090023420751095,0.20117075787857175,0.009373527951538563,0.5114934081211686,-0.19021955598145723,-0.5945577565580606,0.07861192570999265,-0.39001212920993567,-0.8083384805358946,0.4594942992553115,0.13937520002946258,-0.5780534809455276,0.5853379862383008,0.5427465979009867,-0.3123230701312423,0.15701264468953013,0.6970559959299862,0.1669114176183939,-0.46480775345116854,-0.5543097560293972,0.8498611184768379,0.885714702308178,0.05400388175621629,0.5557758477516472,-0.3772298973053694,0.6550451349467039,0.4582891231402755,-0.3306330544874072,-0.12144113518297672,0.5096969339065254,-0.05893966695293784,0.3202498792670667,-0.09037773124873638,0.5916747963055968,-0.5946654127910733,-0.37106259586289525,0.995953697245568,-0.8129956545308232,-0.3737300103530288,-0.3173243752680719,0.7915338943712413,0.531150181312114,0.790868722833693,-0.338625006377697,0.4580376190133393,0.6291637173853815,0.1352812172845006,-0.20795963797718287,0.17577420361340046,0.8074623676948249,0.39682858949527144,-0.16195047507062554,-0.609200815204531,0.17897051200270653,-0.151975451502949,-0.5387311815284193,-0.042408700566738844,-0.19412038242444396,-0.40464680828154087,0.08283543726429343,0.9209623038768768,0.17559398943558335,-0.16718647489324212,0.7181162815541029,-0.9313531289808452,0.46115734660997987,-0.20170847699046135,0.343590815551579,0.41065750177949667,0.09225879982113838,0.2129922015592456,-0.46367127215489745,0.6151382476091385,-0.8310564295388758,0.5278611527755857,-0.9502285127528012,-0.6408218573778868,0.5808914001099765,0.4866274315863848,-0.13527014339342713,-0.650459399446845,0.5687482762150466,-0.9781265207566321,0.6867694770917296,-0.40261964313685894,0.9204639247618616,0.36882852017879486,-0.08591298758983612,0.9359545321203768,0.8169873314909637,-0.19563440140336752,0.3839548835530877,0.5738967261277139,0.27199218980968,-0.8807069356553257,0.3575557367876172,-0.8295486532151699,0.7073352537117898,-0.09429112263023853,0.28911524126306176,-0.9670552522875369,0.25146946171298623,0.19029398169368505,-0.44521155999973416,-0.08268777001649141,0.2834750721231103,-0.29153467528522015,0.7664522835984826,0.3150960570201278,0.8979398654773831,0.81018670136109,-0.7520902170799673,0.3057273863814771,-0.2651650020852685,0.6735042282380164,-0.10245103947818279,-0.18713493971154094,0.11181792663410306,-0.016422410029917955,0.622344359755516,0.5153826773166656,0.5947349914349616,-0.23561536613851786,-0.7738932431675494,0.13943781610578299,-0.22128883097320795,0.6077824444510043,0.04939671838656068,-0.945282680913806,-0.4797235638834536,0.5135064856149256,0.5545161976478994,0.5014157285913825,-0.7195849595591426,0.33874347107484937,0.62901605758816,-0.7948310687206686,-0.33856492629274726,-0.5151898530311882,0.035330071579664946,-0.4444205486215651,-0.4481415534391999,0.48838429199531674,0.11590738594532013,0.5334299458190799,-0.6577748167328537,-0.15401788288727403,-0.3441748321056366,-0.6807291968725622,0.3418269050307572,0.47630049707368016,-0.4286095043644309,0.8166648335754871,-0.4482410214841366,-0.6413584593683481,0.9127094307914376,-0.9584200512617826,0.9353529624640942,-0.7011551791802049,-0.5392816755920649,-0.7934235096909106,-0.3240787675604224,-0.6608286648988724,-0.6844267095439136,-0.13346448680385947,-0.6714214095845819,-0.326117442920804,0.06499556172639132,-0.7042295513674617,0.5787963503971696,-0.370235254522413,0.339032128918916,-0.07604458089917898,-0.9830070603638887,0.4811048274859786,7.7852513641119e-05,-0.17039868189021945,-0.12929296912625432,-0.930804037488997,-0.7845223066397011,-0.722360743675381,-0.2722219140268862,0.4115848080255091,0.06564095010980964,0.5741239651106298,0.24978900933638215,0.6968992394395173,-0.3122355416417122,-0.5261028106324375,-0.5377133088186383,0.20017284201458097,-0.6204397738911211,-0.2271294044330716,-0.8849529274739325,0.06578247901052237,-0.18149126460775733,0.9950778656639159,0.562661255709827,-0.8611069177277386,0.6066946662031114,0.6590044898912311,0.8022823580540717,0.6420340882614255,-0.47719919867813587,-0.7148917824961245,-0.25015836395323277,-0.669769300147891,-0.4899464687332511,-0.5022090855054557,-0.18609983520582318,-0.5530150043778121,-0.44871646584942937,0.04548554541543126,0.5207006358541548,0.8708135420456529,-0.06585240736603737,-0.2902875696308911,-0.26802237471565604,0.8610454690642655,-0.6054299012757838,-0.2086214805021882,-0.2675032173283398,-0.758534437045455,0.22413504449650645,-0.5966400015167892,0.19472079910337925,0.6684717740863562,-0.6200019898824394,0.2004277091473341,0.21320560341700912,0.7842809464782476,-0.008181520737707615,-0.650137921795249,-0.36050858441740274,0.9022180153988302,0.08398492354899645,0.7527851723134518,0.7916124137118459,0.984824778046459,0.5733155705966055,0.393050909973681,0.9753169403411448,0.48787566740065813,0.21294762147590518,-0.9573312643915415,-0.7316810851916671,-0.41582830203697085,0.6260450989939272,0.9946558615192771,-0.28366858698427677,-0.7274510911665857,-0.9778369115665555,-0.4570204974152148,-0.42728187469765544,-0.1095747291110456,0.4565723077394068,-0.28425348876044154,0.7834750460460782,-0.04898440930992365,-0.8788472623564303,0.7148487400263548,-0.6112530375830829,0.04859744058921933,-0.5761180892586708,0.9590856074355543,-0.7165077445097268,-0.12825865345075727,-0.7760423528961837,0.590376615524292,-0.742661559022963,0.328741105273366,0.30104089668020606,-0.817918405868113,0.5190393896773458,-0.12798458524048328,0.19164865370839834,0.5097057153470814,-0.8895810041576624,0.5216471501626074,-0.4071928788907826,0.3586433152668178,0.4541895892471075,0.861246055457741,-0.5113159050233662,-0.5044808532111347,-0.6389293377287686,-0.7396491141989827,0.4732412900775671,-0.3734755548648536,-0.8827645988203585,-0.09475143859162927,0.636347996070981,-0.3585208263248205,-0.20593151077628136,-0.07754823658615351,-0.07920068316161633,0.20744916005060077,0.09758350346237421,0.4870579792186618,0.052745677065104246,-0.7683034562505782,0.6113048228435218,0.9994207415729761,0.6789038958959281,0.9470620746724308,0.5151510131545365,-0.04775425186380744,-0.9068457395769656,-0.9904237776063383,0.00666565028950572,0.7565468796528876,0.4920435091480613,0.9364116988144815,-0.5967006860300899,0.43692985316738486,-0.7169416579417884,0.2465074360370636,-0.020217989571392536,-0.5384483500383794,0.6184294265694916,0.07252135034650564,-0.06313963420689106,-0.16315210238099098,0.3278171503916383,-0.76067147962749,0.6949621560052037,-0.73937534308061,-0.34142531687393785,-0.6548793683759868,0.5911817811429501,0.5649261395446956,-0.06570826284587383,0.7432405594736338,-0.1964390678331256,-0.6805496392771602,-0.7671484835445881,0.6578415334224701,-0.040622823406010866,0.6192409275099635,-0.955005890224129,-0.840967895463109,-0.6215599584393203,-0.5901277391240001,-0.8494415949098766,0.4644112940877676,0.029214131645858288,-0.1941106249578297,0.8118547988124192,0.04013548092916608,0.8342279684729874,-0.09063889877870679,-0.8695718972012401,0.23649134626612067,0.8551099882461131,0.6712043122388422,0.8548846445046365,0.560188946314156,-0.852445324882865,-0.6077623702585697,0.49860028829425573,0.33595338510349393,-0.34062300669029355,0.26615092623978853,-0.28936040215194225,-0.9601012114435434,-0.8540112767368555,-0.5349697391502559,0.13544632447883487,0.14491770649328828,-0.20061990758404136,-0.9445454878732562,-0.5545038464479148,0.16264080628752708,-0.8427708335220814,0.49991865921765566,-0.14849141146987677,0.44686942640691996,0.3049817094579339,0.061718602664768696,0.23445388628169894,-0.25656490540131927,0.8593007274903357,-0.5414438229054213,0.43803685484454036,0.4936350705102086,0.34962645545601845,0.2858050838112831,-0.4294034051708877,-0.25459671672433615,0.4849466159939766,-0.6206072252243757,0.48230424569919705,0.07575415866449475,0.15314294584095478,-0.4429118623957038,-0.3421633839607239,0.25419696886092424,-0.6912389169447124,0.5812181551009417,-0.32867357647046447,0.8513876521028578,0.39338432252407074,0.6176741891540587,0.20165594667196274,-0.6459595854394138,-0.6798850107006729,-0.4047146742232144,-0.5241126688197255,0.9212625320069492,0.24532909970730543,0.15870894817635417,0.044176599476486444,0.9498026384972036,-0.45913848420605063,0.26137325493618846,-0.088932940736413,0.030094416812062263,0.16935223806649446,0.40340779442340136,-0.2749459487386048,0.3979201437905431,0.26052558701485395,-0.6612276202067733,0.08165667625144124,0.547805801499635,-0.892501357011497,-0.26231554988771677,-0.8118620738387108,-0.02812856063246727,0.18947460176423192,-0.5856142085976899,0.9076085733249784,0.9712714273482561,-0.8335633790120482,-0.016757323406636715,-0.7886832924559712,0.06948664877563715,0.6533075459301472,0.5918789589777589,0.1039353534579277,0.3272947585210204,0.9959574374370277,-0.8280775863677263,-0.2911646831780672,0.6367012578994036,-0.7314981315284967,-0.19704120699316263,-0.6248644073493779,0.973861813545227,-0.43149459548294544,-0.4965784880332649,0.3640466183423996,0.7835382837802172,0.9520140024833381,-0.0036823865957558155,-0.03409430291503668,0.025865368079394102,0.6467699627391994,-0.37789455614984035,0.30624695122241974,0.7781642880290747,-0.06715687969699502,0.9322739387862384,-0.6123710270039737,0.13780780648812652,0.7075020195916295,0.7102821860462427,0.5641061724163592,0.9479935108684003,0.24192625749856234,-0.5224019065499306,-0.8442697715945542,0.7817501472309232,-0.7116849939338863,0.10055322153493762,-0.8412921074777842,0.21796198328956962,-0.15627862187102437,0.027407315094023943,0.04340176843106747,-0.9082398065365851,-0.5367788379080594,0.14049144554883242,-0.10923941805958748,-0.8614720506593585,0.5801096777431667,0.6723361238837242,0.5468486333265901,0.9656553585082293,0.6548322467133403,0.11570163397118449,0.3546949401497841,-0.06496705627068877,-0.11195751558989286,-0.5104429954662919,0.2409165115095675,-0.5646599372848868,0.6650198744609952,0.0965624419040978,0.9248303934000432,0.10503802774474025,0.32206715270876884,-0.33279671100899577,0.8109416756778955,0.9656920963898301,0.8782630837522447,0.3227807031944394,-0.24136410746723413,0.24775555450469255,-0.20817463425919414,-0.0687875235453248,-0.08011736627668142,0.6285307956859469,-0.612555826548487,0.5343841202557087,-0.5320018921047449,-0.031305208802223206,-0.30698346393182874,0.47240650840103626,0.5984001974575222,0.4768958152271807,0.8533726944588125,0.7389466422609985,-0.7564376927912235,0.8028739565052092,0.49927313160151243,0.3080511265434325,-0.9863406224176288,-0.6542720291763544,-0.5490812566131353,-0.8032008712179959,0.70776800904423,0.2823007400147617,-0.8444450278766453,-0.7089205584488809,0.612004118040204,0.5526190279051661,0.0029630912467837334,0.06616146629676223,-0.7601866526529193,-0.25095485616475344,-0.2585354340262711,-0.22262183343991637,-0.12313820980489254,-0.8453270378522575,0.21087168529629707,0.2715835361741483,-0.43346297508105636,0.38762130914255977,0.8492450998164713,-0.18153362348675728,0.8444042862392962,0.15491254767403007,-0.4626373522914946,0.42506280029192567,0.7977376733906567,0.9585350090637803,-0.4854573095217347,0.4580264277756214,0.33199915708974004,-0.9821689403615892,-0.28505411371588707,0.17073620762676,0.519642551895231,0.16280124941840768,-0.9270727885887027,0.15195035096257925,-0.3323583723977208,-0.06310758972540498,-0.018223367631435394,0.32706190273165703,-0.4298819536343217,-0.6852457714267075,-0.21509497705847025,0.657495173625648,0.9851850080303848,-0.8155895238742232,-0.6370818768627942,0.24562707776203752,-0.4549884609878063,-0.6609338074922562,-0.793559261597693,0.11332984734326601,-0.8861320395953953,-0.6607992113567889,-0.8178484509699047,-0.6318753333762288,0.4198066256940365,-0.5608140542171896,0.16372099937871099,0.45261985156685114,-0.45930924406275153,-0.5241767070256174,0.7923551783896983,-0.29046102333813906,-0.025009518023580313,-0.49690986424684525,-0.06259259395301342,0.10040901741012931,0.6786493016406894,-0.9152206839062274,0.5503615448251367,0.23550640512257814,0.03052986739203334,0.3337206239812076,-0.8236734312959015,-0.13326869066804647,-0.20993807818740606,-0.008169702719897032,0.2931566461920738,-0.3449393594637513,-0.06600705906748772,-0.7408910724334419,-0.3370991200208664,-0.19207271374762058,-0.2564330385066569,0.6838215319439769,-0.7100204559974372,-0.2222928088158369,0.5190024869516492,0.7069787532091141,0.33155286870896816,0.38548568170517683,0.019963161554187536,0.6046943543478847,0.8891970636323094,-0.18752223439514637,-0.36454366566613317,-0.09010061342269182,-0.9024559776298702,0.5543221449479461,0.13889901991933584,0.8397779599763453,-0.6394746662117541,0.47019606176763773,-0.16529950266703963,-0.938184343278408,-0.9352214341051877,-0.5380875347182155,0.5187727799639106,-0.3757777828723192,0.13367863837629557,-0.5491991438902915,0.7830326994881034,-0.08293715631589293,0.4140656213276088,0.8225170546211302,-0.6445044968277216,0.0461025913245976,0.36315119499340653,0.11360211530700326,0.22481535421684384,-0.26809050515294075,-0.5071603641845286,-0.9704532017931342,0.134875840973109,0.7548118992708623,-0.17461406346410513,-0.9501864844933152,-0.42611873568966985,-0.8987231319770217,0.19431040389463305,-0.6701211240142584,-0.5882542408071458,-0.01636087242513895,-0.2523832293227315,-0.3411763687618077,-0.6860826308839023,0.9202947663143277,-0.9150400944054127,-0.5751206278800964,-0.5168068688362837,-0.9401028822176158,0.09019840601831675,0.09349371725693345,0.11684549320489168,-0.969911087770015,-0.7593394494615495,0.7585822753608227,0.2629866427741945,0.9825294343754649,0.12718874868005514,0.7490395251661539,0.29266363149508834,-0.8085555201396346,-0.9951212275773287,-0.47222334798425436,-0.18470136728137732,0.6864382484927773,-0.5490476172417402,0.6839452958665788,-0.13817439321428537,-0.06800947897136211,0.1967980870977044,-0.9773010751232505,-0.24601610703393817,-0.8709692433476448,0.7982082436792552,-0.2827723999507725,-0.5084103345870972,0.18938025226816535,-0.10862798430025578,-0.20884848153218627,-0.9477899405173957,-0.8921339870430529,-0.9481680016033351,-0.9613075563684106,-0.03869841480627656,-0.08899902738630772,-0.9622005736455321,-0.19537592306733131,0.6428778059780598,-0.3369354326277971,0.9633619147352874,-0.17123809084296227,-0.25749019533395767,0.3342149071395397,0.570506957359612,0.033888909965753555,-0.10553194535896182,-0.5181025764904916,0.6061312314122915,0.10577937820926309,-0.2879774081520736,-0.4335231580771506,0.8011585217900574,-0.4049535235390067,0.7031563320197165,0.6668805428780615,-0.33467689948156476,-0.7317402656190097,0.9371423088014126,0.6561466925777495,-0.44709870498627424,-0.1835985705256462,0.7385918777436018,-0.5884270644746721,0.09220458939671516,0.4962574178352952,0.3267386481165886,0.5496387029998004,-0.7858462608419359,0.411827112082392,-0.1798857757821679,-0.10331733152270317,0.327162719797343,-0.9334323154762387,-0.7931530261412263,-0.10805615037679672,-0.38495966885238886,0.6745569542981684,0.987764825578779,-0.22558825882151723,0.8955304292030632,-0.29035866586491466,0.4127468946389854,-0.15368164284154773,0.36298006819561124,0.9445895631797612,-0.4378436575643718,-0.9709756760857999,0.2669520075432956,0.8980935821309686,-0.7061798204667866,-0.2783250855281949,0.21977175772190094,0.6644286280497909,-0.730483137536794,0.7270614970475435,-0.267653604503721,0.6171931396238506,-0.14071337832137942,-0.6653342894278467,0.37898596515879035,-0.5121006742119789,-0.8008654299192131,0.4284826135262847,-0.6914757308550179,-0.8163014659658074,0.5615283469669521,0.8544745007529855,-0.6450620931573212,-0.8818483725190163,-0.11504531837999821,0.9775019367225468,-0.15998093923553824,-0.358518079854548,0.029944862704724073,-0.47777379816398025,0.507935602683574,0.5878272755071521,-0.34172756830230355,0.382142405025661,-0.76277656853199,-0.7519086324609816,-0.5327267274260521,-0.8999704867601395,0.4742693183943629,-0.8815500675700605,0.7516439338214695,-0.07549919374287128,-0.5749868038110435,0.40147891314700246,-0.11280951462686062,0.67531479569152,-0.20328833209350705,0.3880730830132961,-0.5378485661931336,-0.4050796995870769,0.041369777638465166,0.06252994015812874,0.3703772001899779,-0.03697320958599448,0.1408059005625546,0.6537644118070602,-0.7341932859271765,-0.15499520860612392,0.28749301098287106,0.6595325195230544,0.8447343818843365,-0.977928766515106,-0.3495318004861474,-0.17877521645277739,-0.943138862028718,-0.5218055578880012,0.5012526926584542,0.7378223808482289,0.09706619055941701,0.14805351197719574,-0.8815598906949162,-0.013584886211901903,0.4983200076967478,-0.6299744434654713,0.210741869173944,-0.8926188293844461,0.8439034633338451,0.012477986514568329,0.022018205374479294,-0.17288210708647966,-0.0060395244508981705,-0.7630016785115004,0.463432336691767,0.9475393607281148,0.11252422444522381,-0.6920213913545012,-0.5326557480730116,-0.5444318852387369,0.7942225765436888,-0.0246400092728436,0.37405240163207054,0.9137957217171788,-0.8336735875345767,0.1662350851111114,0.8529626140370965,0.4607024868018925,0.4363438463769853,-0.9460195796564221,-0.6013835417106748,-0.23051810637116432,-0.11070962063968182,-0.026421159505844116,0.4403651668690145,0.846754802390933,-0.09345835400745273,0.34983048494905233,0.04386388836428523,0.10898358328267932,-0.8833520980551839,-0.42082224879413843,-0.9555050279013813,-0.8565114527009428,-0.4350071740336716,0.2189556290395558,-0.026901799254119396,0.059551806189119816,0.2749662850983441,-0.19118207227438688,0.3290816596709192,0.1475916337221861,-0.7661823737435043,-0.43002984393388033,0.8392846491187811,0.08304332848638296,0.2793950168415904,-0.6236064122058451,0.11791325733065605,0.3810179098509252,0.04612254165112972,-0.8721300871111453,0.050112048629671335,-0.24715733621269464,0.49744526110589504,-0.5412132851779461,0.7936989748850465,0.4504144708625972,0.9683525143191218,-0.8467025454156101,0.47619280172511935,-0.543443348724395,0.34187532030045986,0.6432787119410932,-0.7378105418756604,0.20304669393226504,0.8802077416330576,-0.47524737287312746,0.7798481187783182,0.2981010773219168,0.22488138312473893,-0.0365551789291203,0.615756000392139,-0.8281074911355972,-0.856605252251029,0.4001246406696737,0.2875629784539342,0.6006598090752959,0.7725806441158056,0.5641469112597406,-0.8896533050574362,0.6437466670759022,-0.47392745688557625,-0.514929891563952,0.3454108671285212,-0.6834137788973749,0.6386019890196621,-0.578772162552923,-0.8198849041946232,-0.9239827967248857,0.1242747213691473,0.6485504889860749,-0.5784529969096184,0.23186685144901276,0.8800839809700847,-0.6020367131568491,-0.9407488838769495,0.992987213190645,-0.6955908238887787,0.5090524479746819,0.39787020022049546,0.2715581743977964,0.03889532573521137,0.031006941106170416,-0.206057065166533,0.4007887043990195,-0.18424692004919052,-0.1982856085523963,0.704871132504195,0.34293617540970445,0.4892866634763777,-0.20882886461913586,-0.1641206773929298,-0.6636504307389259,0.07020996045321226,-0.9008581950329244,-0.30386644089594483,-0.4514206349849701,-0.08711129333823919,-0.29690608754754066,-0.914052177220583,0.34178361063823104,-0.10980331944301724,-0.8389584440737963,-0.9233791236765683,0.06442626472562551,0.8606739747337997,-0.16953842900693417,-0.45668390672653913,-0.9752287901937962,-0.6642202823422849,-0.620837738737464,-0.8214654442854226,-0.28476837556809187,-0.242529125418514,0.9120521959848702,-0.4761332394555211,-0.550738365855068,0.9568168288096786,0.5923798717558384,0.18145027197897434,-0.7124399193562567,0.06762266904115677,-0.10019901115447283,0.799292812589556,-0.4197329436428845,0.6593544008210301,-0.19818041566759348,-0.3133403230458498,-0.8804113618098199,-0.7687384421005845,-0.5613041813485324,-0.7195847821421921,-0.5404950282536447,0.243051472119987,0.8377539170905948,0.7540909606032073,-0.9084104215726256,0.01866237446665764,0.9346030321903527,0.7149180313572288,-0.023947001434862614,0.6443605716340244,-0.3054259717464447,0.4188888310454786,-0.920811889693141,-0.11601534811779857,0.9515874711796641,-0.8090193695388734,-0.6094410247169435,-0.4701459016650915,0.9982244768179953,0.4300350332632661,-0.10301762167364359,-0.8708419636823237,0.0769067881628871,-0.2790919439867139,-0.5359974522143602,0.21486531849950552,0.4616555799730122,-0.184956141281873,0.6200149669311941,-0.9451605430804193,0.5134732746519148,0.12227072287350893,-0.6110450499691069,-0.464282407425344,-0.2508078790269792,-0.5232443171553314,-0.609819108620286,0.013463167939335108,0.38305116118863225,-0.8980218064971268,-0.98845029855147,0.8994460208341479,0.2767550670541823,0.8659512959420681,0.7058212892152369,-0.052009183913469315,-0.4672311064787209,0.3014951413497329,0.050098943058401346,-0.28437458677217364,0.8075613649562001,-0.25877422420307994,0.21687934640794992,-0.49420889653265476,0.8841383522376418,-0.02762516960501671,0.626136583276093,0.06824262393638492,-0.5033858041279018,0.6479133754037321,-0.23724709684029222,-0.5015195459127426,0.10688434820622206,0.21001762431114912,0.664690300822258,0.9322582525201142,0.052958589512854815,-0.3479604460299015,-0.19367638509720564,0.8630780139937997,-0.772269201464951,0.5402829297818244,-0.9509648783132434,-0.7341664121486247,-0.07605810090899467,-0.61718327132985,0.8206969359889627,-0.2930913083255291,-0.0956228575669229,0.592466535512358,0.716876145452261,-0.37278246600180864,-0.4190697930753231,-0.4434396349824965,-0.819541750010103,-0.678208586294204,0.48622741969302297,-0.5143417045474052,-0.2631933428347111,-0.05392040126025677,0.6440501459874213,0.3753609419800341,0.012782794423401356,0.5250965156592429,0.12590445531532168,-0.6703656688332558,0.43688081530854106,-0.9843586622737348,0.6279909638687968,0.7794143431819975,-0.23898992594331503,0.2591185593046248,-0.9978467575274408,0.6677202177233994,0.7245447053574026,0.06722991494461894,-0.2559565915726125,0.9059352562762797,-0.3937944108620286,0.8930827118456364,0.2694016993045807,0.9664158732630312,-0.8306016526184976,0.010892258957028389,0.22306574927642941,0.09685652749612927,-0.2822807184420526,0.05730309383943677,0.9110599169507623,0.8169140256941319,-0.15943775419145823,-0.4928086446598172,-0.8871170002967119,0.6240887949243188,-0.2290432029403746,-0.08871585642918944,-0.21905775927007198,-0.03927299613133073,0.7027620603330433,0.2593074580654502,-0.3406040808185935,0.9768239562399685,0.3300609905272722,0.052843309473246336,-0.5927569665946066,0.7274019937030971,0.45968974474817514,-0.5544503801502287,-0.5393381700851023,0.1624720236286521,-0.1803646106272936,0.6122810118831694,0.321608392521739,-0.31223870487883687,0.4692698637954891,0.08646240923553705,0.31807727832347155,0.18510962603613734,0.0931011289358139,0.7030745390802622,0.8894177912734449,0.3954952508211136,-0.04241382563486695,0.7942539970390499,0.7710139071568847,-0.9509130814112723,0.2906218068674207,0.1041639125905931,0.7376814694143832,0.9321266794577241,0.3916101548820734,0.4908775226213038,0.6723794094286859,0.6626122458837926,-0.5529543752782047,0.8998445705510676,0.4430911769159138,-0.27184702921658754,0.5844723307527602,0.9362963205203414,-0.7871242337860167,0.24021725356578827,-0.4721327517181635,-0.15219241939485073,-0.5871725138276815,0.7277873940765858,-0.48861450981348753,0.6878460273146629,-0.3488050731830299,0.8694308162666857,-0.539091853890568,0.1426931470632553,-0.7868537330068648,-0.0680722538381815,0.4525507930666208,-0.5236361757852137,0.8478881060145795,-0.9366566180251539,0.5351579361595213,0.2152349865064025,-0.04677746118977666,-0.59719616221264,-0.45458601135760546,-0.3245895402505994,-0.49354618415236473,0.4037305088713765,0.13395447423681617,0.202039560303092,0.17342371260747313,0.3985386323183775,-0.28196734096854925,0.9066675980575383,-0.5802497733384371,-0.1485723820514977,-0.38473261054605246,-0.3089069011621177,-0.6466530147008598,0.064402527641505,0.5880789565853775,-0.47704733768478036,-0.45365063147619367,0.3922470253892243,0.6138833374716341,0.14875561837106943,0.9069054620340466,-0.5699189584702253,-0.6606147419661283,0.5809523318894207,0.2884568511508405,0.14403543807566166,0.34940674901008606,-0.4646546277217567,0.4466065866872668,-0.42014958150684834,-0.11881682742387056,-0.020455514546483755,0.3096068617887795,0.8143861098214984,0.2718264018185437,0.7725450489670038,-0.07350312871858478,-0.9310481902211905,-0.5837180125527084,-0.18014611210674047,0.6849062833935022,0.35077324509620667,-0.823211349081248,0.28458511224016547,-0.9349725414067507,-0.21867101732641459,-0.7039158632978797,-0.31778933061286807,-0.9729829062707722,0.6825150018557906,-0.8677643514238298,-0.43968161940574646,0.4396576164290309,0.6630266085267067,0.0778254340402782,0.6750028277747333,0.28326761769130826,-0.9681710340082645,-0.2632560604251921,0.11441799160093069,-0.686938519589603,0.7258101836778224,-0.7485427930951118,0.19871777016669512,-0.32177633279934525,-0.9832552140578628,0.9315971131436527,-0.14158223941922188,-0.7063440270721912,-0.8266985197551548,-0.3950670729391277,0.5745112942531705,0.7040365533903241,0.6679451670497656,0.6677321451716125,-0.9705275786109269,-0.8658285457640886,0.020724270027130842,-0.8753316607326269,0.7580801113508642,-0.9107666471973062,0.4140459094196558,-0.11629674304276705,-0.19278573617339134,0.8253927836194634,-0.9690179894678295,-0.21000613551586866,-0.45079743256792426,-0.14280110923573375,0.09369582962244749,0.42356490157544613,0.34394746413454413,-0.8011832600459456,-0.8732358529232442,-0.09539792547002435,-0.2173463786020875,-0.8875151765532792,-0.8292192192748189,-0.9652668619528413,0.022341847885400057,0.5586211942136288,0.6007374254986644,-0.535180535633117,-0.26995211513713,0.9775106217712164,-0.907654863782227,-0.17572181299328804,0.26536923414096236,0.5577350053936243,0.731217963155359,0.2397703118622303,0.27184357307851315,0.21871440950781107,0.11798817431554198,-0.8649280979298055,-0.04266668250784278,-0.05686846049502492,-0.7444899049587548,0.567810045555234,0.9593616193160415,0.3432664582505822,0.24890982266515493,-0.6991343996487558,-0.6915189744904637,-0.25642526568844914,-0.23322200402617455,-0.5876437048427761,0.21792177623137832,-0.23930325033143163,0.6982745095156133,0.4835916254669428,0.1178399920463562,-0.4081412428058684,0.6344397072680295,-0.021309148520231247,0.6566907111555338,-0.9689828720875084,0.11431050440296531,-0.29961821297183633,0.7850536555051804,0.8096481594257057,-0.45326883206143975,0.8512076237238944,0.2451526285149157,0.4111265894025564,0.8479255302809179,-0.3490621498785913,-0.20606018137186766,0.7235651668161154,-0.5548984804190695,-0.36735815228894353,-0.8434838340617716,0.5791620188392699,0.971199338324368,-0.9848513468168676,0.31338975485414267,0.039879603777080774,-0.08726662071421742,-0.45170157914981246,-0.34374771546572447,0.6505428641103208,0.6733848853036761,-0.16622656350955367,0.9804104040376842,0.19193440629169345,0.5498605500906706,-0.02814099146053195,-0.03811425901949406,0.41735740238800645,0.9375904453918338,0.3468119166791439,-0.10591284139081836,0.7092887880280614,0.09436989994719625,-0.8927232474088669,0.5084333699196577,0.540301735047251,-0.2571519170887768,0.22318675555288792,0.9908723612315953,-0.557526986580342,-0.4502786314114928,0.010309705510735512,0.42133788485080004,-0.591469457373023,0.6360815116204321,0.5988679863512516,0.7449849345721304,-0.10823450516909361,-0.7218634253367782,0.6028469796292484,0.9513038783334196,-0.30845909006893635,-0.9555451697669923,-0.9424684378318489,-0.6247019111178815,0.3625227496959269,-0.3628832050599158,-0.9840365997515619,-0.6109275761991739,-0.24277273518964648,-0.13769642729312181,-0.7661751760169864,0.36197178019210696,0.3994343117810786,0.9487409954890609,-0.8360065212473273,-0.6402509901672602,0.6843471494503319,0.9010765315033495,0.7403033589944243,-0.1664669867604971,0.8233918501064181,0.3298124703578651,0.13429286191239953,-0.33558298647403717,0.23654816579073668,-0.542862824164331,-0.5674468469806015,0.08560647955164313,0.9551306627690792,-0.818542952183634,-0.022510196082293987,0.09255598997697234,-0.8213655678555369,0.8889429760165513,-0.7192137269303203,-0.33387335343286395,-0.39232581993564963,0.1484714183025062,-0.7147794743068516,-0.1575498073361814,-0.7443475010804832,0.4548563421703875,-0.9627521391957998,-0.872532902751118,-0.17247942276299,0.04152021277695894,-0.9948777556419373,-0.3754503191448748,-0.7192034544423223,-0.273001812864095,-0.5040986775420606,0.8111040093936026,0.8557319864630699,-0.11242889007553458,0.566956477239728,0.019548607990145683,0.8686969350092113,-0.9257441787049174,0.9610026604495943,0.36738676158711314,-0.93698655301705,-0.7868086118251085,0.4646076252683997,0.45111593464389443,0.7345276102423668,0.7747742393985391,-0.8484250116162002,0.33304093638435006,-0.5134368361905217,-0.1774316835217178,0.8222620412707329,-0.9068053769879043,-0.8897216399200261,-0.3750414908863604,0.6301762326620519,-0.9691289286129177,0.49619343131780624,0.508898348081857,0.47086722077801824,-0.14832179760560393,-0.8366631190292537,-0.33621580712497234,0.785078780259937,0.5968876932747662,-0.010498285293579102,0.037520143669098616,-0.39327604323625565,-0.15755223855376244,0.7855363013222814,0.5410185218788683,-0.3414640463888645,0.038305677473545074,0.8020347896963358,-0.4431503745727241,-0.4475149526260793,-0.41561900777742267,0.6514630583114922,-0.6549417115747929,0.7871737186796963,-0.3238307498395443,-0.4271131902933121,-0.3661724952980876,-0.5009624226950109,-0.1745795076712966,0.10501144593581557,0.8752331729047,0.4410510747693479,0.9071172927506268,0.8662632387131453,-0.4632067042402923,0.7822731700725853,-0.571568894200027,-0.851017789915204,0.9848184753209352,0.7426424804143608,0.3767124810256064,-0.19533131690695882,-0.452734197024256,-0.3992588361725211,-0.4805577131919563,0.5651957965455949,-0.5713857975788414,-0.4747804324142635,-0.04785125330090523,-0.8193121352232993,0.67157934140414,-0.1634344574995339,0.6335879522375762,0.6142204632051289,0.9106901306658983,-0.18873886857181787,0.8472613696940243,-0.9742913898080587,0.16481076879426837,0.23053026432171464,0.04408961767330766,0.39917177706956863,0.1958580818027258,-0.4953640904277563,-0.6170920971781015,-0.10196843836456537,-0.8224050286225975,-0.8859348790720105,0.6643951474688947,-0.7736766873858869,-0.3494040728546679,-0.8283895528875291,-0.08422221802175045,0.4822621517814696,-0.3081253645941615,-0.5006690067239106,0.7310999976471066,-0.30055640591308475,0.5949959931895137,0.5667853308841586,-0.21355229197070003,-0.19001335185021162,-0.8765764953568578,-0.8388371630571783,0.027688974514603615,-0.39894365472719073,-0.5661619803868234,-0.9706164766103029,-0.8876078701578081,0.7714338195510209,-0.3048235257156193,0.3077868022955954,0.7323401411995292,0.9902890920639038,0.6915930071845651,0.813885411247611,0.27697709714993834,0.8615839458070695,-0.5075747431255877,-0.4579572998918593,0.021979797165840864,0.1278549963608384,0.20976752508431673,-0.8191695758141577,-0.4090894665569067,-0.498499711509794,-0.43180291913449764,0.7680109129287302,-0.18357240548357368,-0.1697314577177167,-0.7564797624945641,-0.36618081433698535,0.10756149794906378,-0.5046755392104387,0.48603153321892023,-0.2437290856614709,-0.4697154201567173,-0.3673227233812213,-0.7896762737073004,-0.18532537389546633,-0.2545686662197113,-0.022633747197687626,-0.624532918445766,-0.8632014007307589,-0.642984707839787,-0.5754204322583973,0.8366297003813088,-0.8184224423021078,-0.4190828511491418,0.04568437812849879,0.6592956413514912,0.5441947588697076,-0.16399947041645646,-0.23647394916042686,0.4324767063371837,0.9751096628606319,-0.9290387774817646,-0.07290092017501593,-0.6259230352006853,0.6002093511633575,0.013925121631473303,0.06492259027436376,0.42067857505753636,-0.13835593406111002,0.553403620608151,-0.720460890326649,-0.6999023775570095,-0.20185817033052444,-0.18515114905312657,-0.7706106104888022,-0.7253335122950375,0.6682642512023449,-0.4230294222943485,-0.4823791738599539,0.8319284543395042,0.4713417929597199,-0.582324112765491,-0.5751414527185261,0.6193710048682988,-0.11175469309091568,0.0004546954296529293,0.5462115593254566,-0.5489310994744301,0.36416909331455827,0.346420269459486,0.7597081367857754,0.911568267736584,0.825818495824933,0.9775618771091104,-0.17595938546583056,-0.5055347480811179,-0.23223375575616956,0.2351726102642715,0.30406556464731693,-0.8858159389346838,-0.2663132827728987,-0.13852225756272674,0.7600914700888097,0.4895117850974202,-0.14690808160230517,-0.10632094833999872,0.21880672266706824,0.6387100191786885,0.8620544695295393,0.367694360204041,-0.5803620545193553,-0.9029420604929328,-0.48236061073839664,-0.5217293677851558,0.4101927778683603,0.745000964961946,-0.9725907179526985,0.9558948040939867,0.3308141049928963,0.1660919962450862,0.8432067390531301,0.44045961182564497,0.6629795390181243,0.6872394885867834,0.8054700414650142,-0.07639107620343566,-0.04244703333824873,-0.40615101577714086,-0.7995143714360893,-0.28836221806705,-0.9013364692218602,0.14246893534436822,-0.7691827993839979,-0.16175375552847981,0.3843848588876426,-0.7711865259334445,0.08323219697922468,0.2763269515708089,0.047483961563557386,-0.7390030701644719,-0.34137049363926053,0.11444742977619171,0.02747042616829276,0.15380518650636077,-0.8792184302583337,0.19699807139113545,-0.406028953846544,0.17960980022326112,-0.444429496768862,-0.8780493345111609,-0.7319849724881351,0.1767474263906479,-0.28078450774773955,0.39651159569621086,0.0074234530329704285,0.5469320388510823,-0.848947583232075,0.0472545069642365,-0.5371106313541532,0.17164650047197938,-0.29397066310048103,0.4701394778676331,-0.4984866287559271,-0.7683600052259862,-0.9554804395884275,0.8651971137151122,-0.3633593679405749,0.11810165736824274,0.8289384515956044,0.35724128456786275,0.20940832467749715,-0.874984706286341,0.9956011069007218,-0.42350533325225115,0.48118713218718767,0.4213332626968622,0.44795137736946344,-0.4254158469848335,-0.03962733456864953,0.47323258221149445,-0.07282782811671495,0.04139626072719693,-0.9136675223708153,0.6450220970436931,0.7681820034049451,-0.940270668361336,0.1666424754075706,0.5527354655787349,0.9482976510189474,0.11883883504197001,0.6628348152153194,0.7715548360720277,-0.11709294747561216,-0.8419029079377651,0.7449670382775366,0.520044160541147,0.9472354748286307,0.15084387734532356,0.8064985196106136,-0.6831086026504636,-0.0382631104439497,-0.6911033461801708,-0.722945926245302,0.1857487177476287,-0.6007745070382953,0.8836109833791852,-0.772755331825465,-0.7260634638369083,0.008525602985173464,-0.017629748210310936,-0.6015369407832623,0.9097154838964343,0.026847786270081997,-0.6544784549623728,-0.010978919453918934,-0.5949319889768958,0.5257075475528836,0.26038208417594433,0.09287285711616278,0.30899796448647976,0.31689009349793196,-0.4850530461408198,0.7370003196410835,0.642377539537847,-0.0911766984499991,0.7649800148792565,0.4908706098794937,0.16298298723995686,-0.19125069491565228,-0.6291884840466082,0.4492605240084231,0.7471025814302266,0.9816056694835424,0.6602750876918435,0.0971859460696578,0.21191345900297165,0.7893193173222244,-0.8862300105392933,-0.16114783752709627,-0.08197876950725913,-0.028721938841044903,-0.4904419300146401,0.6296375230886042,0.9232167471200228,-0.30990975769236684,-0.263379730284214,-0.8030015202239156,-0.05393652757629752,-0.31709784641861916,0.6506882049143314,0.6319371154531837,-0.2933526844717562,0.010396487079560757,0.8362154974602163,0.2150287707336247,-0.3835258847102523,-0.8833026550710201,0.42106778593733907,-0.504897937644273,-0.4384523658081889,-0.5642336457967758,0.6072784960269928,0.42376537807285786,-0.1067593265324831,-0.8984642629511654,-0.3096214374527335,0.5447316174395382,0.9161032396368682,-0.3243499710224569,0.31786861130967736,-0.68421441456303,-0.8372627515345812,0.7818160052411258,-0.3428349024616182,0.046068309340626,0.9082105662673712,-0.40497753769159317,0.6499747629277408,-0.6719467774964869,0.8995613413862884,0.6045713839121163,-0.7072012457065284,-0.5535626905038953,-0.3992616320028901,-0.5682982164435089,0.49182851566001773,-0.69265868794173,0.005712485872209072,-0.4156101830303669,0.48446598649024963,-0.8505713050253689,-0.6931726089678705,-0.964631431736052,0.6024779602885246,0.36327311443164945,-0.3090914092026651,0.6822327063418925,-0.882217918522656,-0.13291075127199292,0.12697546370327473,0.36651785438880324,-0.3529900135472417,-0.23389555932953954,0.8187038619071245,-0.18252003099769354,-0.41956484969705343,-0.12287046480923891,0.25106313824653625,0.5034434958361089,-0.4249733709730208,0.3578664856031537,-0.4000944378785789,-0.48119505075737834,-0.8134314892813563,-0.14381409203633666,0.40322313364595175,-0.5532891578041017,-0.06004034588113427,-0.5953611405566335,-0.042242844589054585,-0.4644503961317241,-0.21961214067414403,0.9533048998564482,-0.9390641688369215,0.08217666763812304,0.5547966766171157,0.7689533811062574,0.5853181588463485,0.8279822957701981,-0.35429265396669507,-0.41213256446644664,0.4544973815791309,0.6026495024561882,-0.7944762827828526,-0.0494235185906291,-0.5312083205208182,0.95209596818313,-0.6067641451954842,0.2881154455244541,-0.7981453803367913,-0.6244554575532675,0.1163317933678627,-0.5903148907236755,0.44303472293540835,-0.9982628654688597,0.38823816971853375,0.06158088333904743,-0.7125908895395696,-0.08255232404917479,0.15893353102728724,0.7060586242005229,-0.9451005724258721,-0.6242722729220986,-0.3936635861173272,0.9160986645147204,0.7784586697816849,-0.9076220877468586,0.38404661836102605,-0.19500509602949023,-0.8679794697090983,0.20593471126630902,0.3442808035761118,-0.8410953744314611,-0.5102087282575667,-0.6372915776446462,-0.4737626202404499,-0.5300952182151377,0.44434586307033896,0.17750013060867786,0.9972601816989481,0.7349486146122217,0.5417690458707511,-0.8535526734776795,0.969876651186496,0.5633467505685985,-0.9338918514549732,-0.2046270538121462,0.9578256532549858,-0.9608956146985292,-0.26951389014720917,0.5667882300913334,0.5665725977160037,0.5057859676890075,0.9889076282270253,0.5726875173859298,0.9824211020022631,-0.4021247196942568,0.18813240760937333,0.7516767606139183,0.5108193750493228,-0.3661359157413244,-0.23833934729918838,-0.12221789313480258,0.8193659158423543,0.6412097811698914,0.6889798790216446,-0.5535306902602315,0.7706816522404552,-0.9718489409424365,0.41715188045054674,-0.14599470095708966,0.41264030570164323,0.8040052773430943,-0.8839472252875566,-0.32695096591487527,-0.4909945544786751,0.04492400586605072,-0.7482152692973614,-0.4575916863977909,-0.8583049713633955,0.89508714992553,0.2847437714226544,-0.2890684911981225,-0.8488502050749958,0.5556494127959013,-0.05026726005598903,-0.3509417371824384,-0.44537746999412775,-0.33414799300953746,-0.4481272571720183,0.21973034227266908,0.538141333963722,0.788073523901403,-0.17339272471144795,0.2078828625380993,0.6655966816470027,-0.11498674796894193,-0.8619690393097699,-0.7420736709609628,-0.4621200133115053,-0.6866378472186625,0.6755525511689484,-0.5419720229692757,0.2826141961850226,-0.012294260784983635,0.0993159543722868,0.20010576723143458,0.8593732677400112,0.15998850902542472,0.12738384678959846,0.18592882063239813,0.7086727330461144,-0.9260636526159942,-0.18953793682157993,0.7136138654313982,-0.22955216327682137,0.4702354804612696,0.6264601945877075,0.9879866004921496,-0.3701515435241163,-0.6777124404907227,-0.735747009050101,-0.522993165999651,-0.8899242030456662,-0.8367953528650105,0.8036243189126253,-0.7934695919975638,0.07010480388998985,-0.4683061018586159,-0.9855081904679537,-0.364020268432796,-0.6043535550124943,0.531942673958838,0.11779701802879572,0.803040312603116,0.2673024111427367,-0.48355686012655497,0.016680114902555943,-0.7034867713227868,-0.1428931257687509,0.4513675984926522,-0.19042446883395314,0.7768873265013099,0.012246749363839626,-0.6870135241188109,-0.4025619742460549,0.652287736069411,-0.14456780161708593,-0.4474664116278291,0.6918367664329708,-0.8552560866810381,0.38862320501357317,-0.7704301592893898,0.2621780405752361,0.8750743181444705,-0.8451798758469522,-0.10194118646904826,0.1863824729807675,0.5891699716448784,0.43266025744378567,-0.669820140581578,-0.3050366062670946,-0.7086500190198421,-0.42375173373147845,-0.6343267317861319,-0.28215232072398067,0.09339592745527625,-0.8547222902998328,0.9238544879481196,0.7201586458832026,-0.1539917578920722,0.8846491067670286,0.3339218501932919,0.16204365342855453,0.05754772899672389,0.9433839116245508,-0.6345332460477948,0.2737171184271574,-0.006937709636986256,0.723281781654805,0.8916053432039917,0.21256917621940374,-0.38619911624118686,0.9796858751215041,0.4830390680581331,0.97553830454126,-0.04499061079695821,0.967939923517406,0.7014959901571274,-0.052043989300727844,0.10561141464859247,0.9097343855537474,-0.12359468219801784,-0.1629433324560523,0.9100181772373617,0.5345409014262259,-0.03107298444956541,0.17091168742626905,0.9686423181556165,-0.904082590714097,-0.6347190821543336,-0.669038122985512,0.4358587609604001,-0.9630729383789003,-0.1785159152932465,-0.7329024011269212,-0.48290092730894685,0.4190960247069597,-0.10338332643732429,-0.7285525514744222,0.4664622046984732,0.7788103637285531,0.2536103487946093,0.9679568181745708,-0.3044599895365536,0.2483834302984178,-0.9731762805022299,0.24354204768314958,-0.4724163827486336,0.92757149040699,-0.36565974447876215,0.25311434594914317,-0.49048506561666727,-0.7003243793733418,0.5764716970734298,0.7437022617086768,-0.9161205594427884,-0.2956640445627272,-0.7167522069066763,-0.30903836200013757,0.3707744902931154,-0.4226688779890537,0.26355657167732716,0.4398316303268075,-0.8957029059529305,-0.34151644399389625,0.7148535433225334,0.60124301770702,0.4522470044903457,0.6854551648721099,-0.49626330845057964,0.6881763702258468,0.5342625677585602,0.48630417603999376,0.9744092770852149,-0.729908318258822,-0.6109829656779766,0.7174785491079092,-0.24347569374367595,-0.9185089515522122,-0.06436725566163659,0.22430727910250425,0.20758326770737767,0.07180775795131922,-0.31888384046033025,-0.6617713565938175,-0.5076733021996915,0.9941374436020851,0.3274452886544168,0.7709715748205781,0.8131095007993281,0.5442017749883235,0.4104392072185874,0.5776245291344821,-0.713452395517379,0.04198932368308306,0.6497093909420073,-0.6446674391627312,-0.918644696008414,0.7470604791305959,0.0610894737765193,-0.38602458918467164,0.09261429309844971,-0.9408328696154058,0.8205957259051502,-0.967869222164154,-0.8212831290438771,-0.43505042092874646,0.3486990132369101,0.8815767834894359,-0.9540499299764633,-0.7441660114564002,0.03230960248038173,0.7385157942771912,0.4690084573812783,0.38279450172558427,0.42586877662688494,0.6482658665627241,-0.2483074045740068,0.15900935092940927,-0.1676082918420434,-0.6938867927528918,-0.8820798858068883,0.6203410248272121,-0.8187926523387432,-0.7552585722878575,-0.7772801821120083,0.7953946320340037,0.4096284667029977,0.862318015191704,0.6277309311553836,-0.7223361674696207,0.16375914495438337,0.13382852403447032,0.2017145943827927,0.39964026352390647,-0.7732723876833916,-0.2843323303386569,-0.1742367958649993,-0.04359997436404228,-0.36638853093609214,-0.8837090311571956,-0.9166700975038111,-0.7627220479771495,0.2871564603410661,0.4151123445481062,-0.4490469451993704,0.698456047102809,0.04854086181148887,0.9390272167511284,-0.22873849142342806,0.8969000205397606,-0.6862765373662114,-0.8677108371630311,0.3279384416528046,-0.16371940495446324,-0.8138583935797215,-0.500404798425734,0.14498118543997407,0.2571216453798115,-0.7281667892821133,0.18240369856357574,0.5702865505591035,0.893020186573267,-0.8028532350435853,-0.01494615152478218,-0.7183340550400317,-0.8342356206849217,0.8541804887354374,0.23589316755533218,-0.07505665579810739,-0.7685614041984081,0.156118368729949,-0.8646168988198042,0.23366318736225367,0.17700959322974086,0.47007964784279466,-0.7889438951388001,-0.8781056525185704,-0.5382157606072724,-0.12974552530795336,0.3460128055885434,-0.7260383730754256,0.5978548871353269,-0.5485117617063224,0.7776306699961424,0.7405439424328506,0.5638515837490559,-0.15175305865705013,-0.26697008218616247,0.16571315145120025,-0.7014286215417087,0.14367516851052642,0.31447768304497004,0.6275571705773473,-0.3067035679705441,0.17295111622661352,-0.3699102462269366,0.21675696643069386,0.3041173410601914,-0.5844350513070822,0.27728752233088017,0.905769576318562,0.8911958667449653,-0.2542420821264386,0.4992844653315842,0.5055056377314031,0.9556320286355913,0.01034525502473116,0.039591706823557615,-0.12675707275047898,-0.5973769226111472,-0.4163183430209756,0.012691151816397905,-0.9483254188671708,0.3821863173507154,0.5793029447086155,-0.505850775167346,-0.6038806126452982,-0.175258276052773,-0.2552961427718401,-0.6172404931858182,0.18261975329369307,0.16257462371140718,-0.13763641705736518,-0.8018088988028467,-0.23010998591780663,-0.45305997878313065,0.04889476532116532,-0.18260351987555623,-0.6066841837018728,-0.11727384338155389,0.34507571579888463,-0.4294064692221582,0.4562174389138818,-0.46768329199403524,-0.3486830461770296,-0.7296583489514887,-0.37020857725292444,0.07991986628621817,-0.2815884710289538,0.5757583016529679,-0.7236960791051388,-0.6918012141250074,0.5072054034098983,-0.7276013134978712,0.288249303586781,-0.3031973298639059,0.22928714519366622,0.8763104109093547,0.551525182556361,-0.31513948598876595,-0.7540701469406486,-0.6348335994407535,0.7726905751042068,-0.02047744020819664,-0.6610462791286409,0.9561859355308115,0.765805107075721,-0.8161716940812767,-0.8437117421999574,0.6607467909343541,-0.10770861152559519,0.05590427294373512,0.5637936270795763,0.7792566129937768,-0.009983327239751816,0.6326548531651497,-0.8354533705860376,-0.7617047866806388,-0.46638796851038933,0.5290456716902554,-0.5113972336985171,0.37319811061024666,0.1898812255822122,0.6291291853412986,-0.982781850732863,0.5739131318405271,-0.5688170450739563,0.48082535434514284,-0.9096634788438678,-0.8182752593420446,-0.5839011343196034,-0.47362171905115247,0.1648713704198599,0.20507187256589532,0.39277123007923365,0.4018820971250534,-0.2742221257649362,-0.6561743975616992,0.09193953545764089,-0.5941938650794327,-0.15798373660072684,0.5453035091049969,-0.294022873044014,0.27256603818386793,0.130955349188298,0.4903378519229591,0.7312523443251848,-0.9609149401076138,0.9352001212537289,0.32199091650545597,-0.08979163132607937,-0.6635182001627982,0.8151183412410319,-0.3374083642847836,-0.9314243444241583,-0.6976336194202304,-0.33411907544359565,0.6738797575235367,0.23342416249215603,-0.31472672522068024,-0.5439929608255625,-0.08048751298338175,-0.7513007125817239,-0.09648576099425554,0.5814338871277869,0.4241122892126441,0.2808528682217002,0.8628694722428918,0.29388741543516517,-0.6626993529498577,0.37090221093967557,0.391482955776155,-0.15336106671020389,0.965426831971854,-0.5468266075477004,0.7831269577145576,0.8916150708682835,0.912702030967921,0.4012881126254797,0.5247820159420371,0.8180182282812893,-0.709621645975858,-0.49606591183692217,-0.8601539847441018,0.5903462166897953,0.7202666504308581,0.11902322387322783,0.7580792503431439,0.11958311125636101,-0.5245100650936365,0.810138673055917,-0.0892938133329153,0.08748880866914988,-0.4188381996937096,0.6332595977000892,-0.5448519298806787,-0.5103709339164197,-0.9218802163377404,-0.8289546114392579,0.3897099420428276,-0.8379331915639341,-0.933676983229816,-0.5027057053521276,-0.9793801424093544,0.13911590911448002,0.1356888422742486,-0.05764637468382716,-0.6026666220277548,-0.032699430361390114,0.905397878959775,0.6425591143779457,0.9189756871201098,-0.3573543345555663,0.2150425799190998,-0.9784578382968903,0.32812398625537753,-0.2480856287293136,0.3749133865348995,0.9667304228059947,0.37321609118953347,-0.678712410852313,0.9724575965665281,-0.9379821820184588,-0.5678876787424088,0.5327418157830834,0.7111997664906085,0.17578540043905377,-0.19368488574400544,-0.20519272238016129,-0.5075476840138435,0.1064720805734396,-0.046931144781410694,-0.0825470220297575,-0.7387195550836623,-0.7685330333188176,-0.6580842747353017,-0.8364469427615404,0.5964267859235406,0.10172626189887524,-0.8261894132010639,-0.3264884534291923,-0.10216473322361708,-0.8139817975461483,-0.8815071638673544,-0.27875117026269436,0.5216291220858693,-0.06124684680253267,-0.8360967300832272,-0.26860160240903497,0.14871041756123304,-0.5915814661420882,-0.008717676624655724,0.9379811552353203,-0.22303775884211063,0.08682123152539134,0.5223386958241463,0.3624729481525719,-0.8825695463456213,0.6962014315649867,-0.6344083254225552,0.25830011861398816,0.5207309159450233,0.9373234664089978,0.7557360823266208,0.45331762498244643,-0.7025143601931632,-0.9824095633812249,-0.2059699804522097,0.9469751603901386,0.9939191644079983,-0.9910181928426027,0.6388316340744495,0.10900034848600626,-0.41239322256296873,-0.8611455443315208,0.6034928932785988,0.07744140457361937,0.9325234033167362,-0.901074162684381,-0.7511590453796089,0.3184601329267025,0.2524354509077966,0.3249348010867834,0.536922418512404,-0.7268576859496534,0.22734797792509198,-0.07781242439523339,-0.7367301061749458,-0.21850763354450464,-0.6498746648430824,0.294872481841594,-0.9242784599773586,0.8480869359336793,0.0736237014643848,0.8179908464662731,-0.6444838838651776,0.597345756366849,0.3057347219437361,-0.43671023985370994,-0.2495883721858263,-0.13082385435700417,0.5391548345796764,0.22422386286780238,-0.8292654175311327,0.7013805988244712,-0.8809673772193491,-0.2708648066036403,0.4434759537689388,-0.12170579470694065,0.5792630324140191,0.5268476735800505,0.48450012411922216,0.25804801005870104,-0.9496569572947919,-0.02049258118495345,0.6107794530689716,-0.24092307779937983,-0.6936901598237455,-0.38056721817702055,-0.518442377448082,0.08774555241689086,0.2797247846610844,-0.7914149486459792,0.5551672056317329,-0.12314746621996164,-0.8689153348095715,0.4153517107479274,0.06287984643131495,0.9786086734384298,-0.5924204532057047,-0.0534133967012167,0.012622518464922905,0.9585425090044737,-0.3498372156172991,-0.5093522588722408,0.8614553133957088,-0.9048405149951577,-0.5138893048278987,0.18179577635601163,0.818073870614171,-0.6173853608779609,-0.82020646892488,-0.19579493068158627,0.695781169924885,-0.5185146690346301,-0.10860502859577537,-0.8145061060786247,0.8487385832704604,-0.9577315072529018,0.10038242023438215,-0.3318589976988733,-0.8400568938814104,0.61139728827402,-0.48924867110326886,0.9454649109393358,0.8607607078738511,-0.9934975123032928,0.4962966381572187,-0.8121422091498971,0.26144531182944775,0.31712071504443884,-0.23413191316649318,0.8642852981574833,-0.6503775427117944,0.09468881832435727,-0.926214243285358,-0.5271834363229573,-0.8189716036431491,0.8343090796843171,-0.2440117420628667,-0.8151498651131988,0.8581190477125347,-0.4946213522925973,-0.9926376650109887,-0.09205908933654428,-0.52922334196046,-0.9812010051682591,0.6084699570201337,-0.15100216725841165,0.6905438085086644,-0.8989792191423476,0.17989233182743192,-0.9574707476422191,0.30039821518585086,0.684970241971314,0.17013478931039572,-0.7341834134422243,-0.9619910190813243,0.2710462957620621,0.277393592055887,0.98923843447119,-0.42887086840346456,0.8022183706052601,0.19836574094370008,-0.7143938145600259,-0.7043646760284901,0.05720389820635319,0.2700004237703979,-0.4489209963940084,0.11966899177059531,-0.6809748839586973,-0.9494527233764529,0.6213358324021101,0.6617439845576882,0.3110475088469684,0.7394853215664625,0.16447477554902434,-0.7561319484375417,0.7889752136543393,-0.8219626541249454,-0.6819596099667251,-0.28111128602176905,0.7667886149138212,-0.15582777746021748,-0.9866777257993817,0.7191437403671443,-0.5221928018145263,0.1683532353490591,-0.3347918461076915,0.7574189603328705,0.992493933532387,0.7998358430340886,-0.04177812533453107,-0.4274755925871432,0.9679256957024336,-0.7851629597134888,-0.6294142110273242,-0.9713841825723648,0.40487829875200987,-0.4056204683147371,0.6679092147387564,-0.017452679574489594,-0.1807095934636891,-0.7147243395447731,-0.9311058796010911,0.6939149061217904,-0.7224017726257443,-0.9677998637780547,0.06181768048554659,0.6901965378783643,-0.8406173684634268,-0.8580110785551369,-0.9591071116738021,-0.15558440145105124,-0.06412219488993287,0.9764457498677075,0.7523676985874772,-0.7635635989718139,0.5506168631836772,0.7411338379606605,-0.39183729654178023,0.30552314035594463,-0.2866807500831783,-0.17708206176757812,0.1590974871069193,-0.6182993366383016,-0.8822426572442055,-0.3932012813165784,-0.6853025425225496,0.8256431892514229,-0.6924072741530836,0.6261048102751374,0.21523994719609618,0.9953577746637166,0.8064662772230804,0.34847708279266953,0.4051096527837217,0.946391845587641,0.6227874401956797,0.2707065138965845,-0.46950516756623983,0.7734997654333711,0.7684414135292172,0.6685039228759706,0.2816535527817905,-0.5901676029898226,-0.459452245850116,0.4765040446072817,0.5634612734429538,-0.858575374353677,-0.15004511550068855,0.35218760510906577,-0.3025916628539562,0.8338115024380386,-0.4460692498832941,0.8255342994816601,0.7861617035232484,-0.5696753533557057,0.47794655058532953,0.7952859993092716,-0.775146009400487,0.25599357672035694,0.6218726229853928,0.5926934885792434,-0.9627118818461895,-0.6330775548703969,0.01535091269761324,-0.9745665513910353,-0.8382102167233825,0.8032100428827107,0.44532383559271693,-0.20657861372455955,-0.45928589068353176,0.13948363903909922,-0.8642283058725297,-0.7386088808998466,0.3611635691486299,-0.9508396596647799,0.2715664799325168,-0.7008257927373052,0.9271789253689349,0.161239645909518,0.13743005972355604,0.19028673088178039,0.17797675635665655,0.08380793500691652,-0.7419817778281868,-0.3084305380471051,0.11878598481416702,-0.814830977935344,0.16590657364577055,-0.581428661942482,0.20851614512503147,-0.8463503243401647,0.6141107846051455,0.6158032920211554,0.9585682493634522,0.5926036261953413,0.4125856156460941,0.8684194930829108,0.7585601708851755,0.058688541408628225,-0.4293358828872442,0.33011361863464117,0.4787586713209748,-0.8910645381547511,0.8576560015790164,-0.9747835993766785,0.31677744211629033,-0.3075563292950392,0.8384189251810312,-0.1179698035120964,-0.46683957893401384,0.06891232915222645,0.42644863622263074,-0.5511610954999924,0.7157798348926008,-0.7333210343495011,-0.12267929408699274,-0.42657191259786487,0.9786103540100157,0.12736030528321862,-0.38036466389894485,-0.7272074492648244,-0.7434526402503252,-0.35055280895903707,-0.18237257236614823,0.9493830665014684,0.8852528063580394,-0.1910286364145577,-0.6544297239743173,0.395796712487936,-0.24141703685745597,0.49727974785491824,-0.07451150380074978,-0.8796538035385311,-0.6890920824371278,0.45915471483021975,0.4134823586791754,0.08746529184281826,0.7078795414417982,0.7062929533421993,-0.17559872474521399,-0.654013997875154,0.5715289660729468,-0.10028528841212392,0.24663294479250908,-0.7264276663772762,0.4274643766693771,-0.4531062860041857,-0.43069663643836975,-0.6613638210110366,0.820674002636224,0.1801400212571025,-0.03905093716457486,-0.37003217823803425,-0.6274537020362914,-0.25228699250146747,0.10999913606792688,0.03672145260497928,0.9295081491582096,0.6755622196942568,-0.7651622407138348,0.8390761646442115,0.40535226790234447,0.7316543972119689,-0.9824377847835422,-0.25817115185782313,-0.21151951514184475,0.8282696404494345,0.45914017129689455,-0.6502264612354338,-0.9570037187077105,0.9921683110296726,-0.7471669805236161,0.3066159188747406,0.5015362799167633,0.09437919361516833,0.4373761946335435,0.46702765487134457,-0.35377771221101284,0.8078638571314514,0.311036828905344,0.16574276564642787,-0.11055688187479973,0.08803430758416653,0.9166439948603511,-0.6815839717164636,-0.9359777318313718,0.25344399362802505,-0.477789054159075,-0.9161317907273769,-0.6934837275184691,0.8164889281615615,0.7489437665790319,-0.9608206492848694,0.6436761310324073,-0.8290903205052018,0.37893566815182567,0.18189740600064397,-0.22212072042748332,-0.4900821135379374,0.49687478970736265,0.6606951076537371,0.33212853595614433,0.467860225122422,-0.3169647534377873,0.7943978412076831,-0.855758598074317,0.45364544494077563,0.8818679978139699,0.27845271537080407,0.9817826165817678,0.4115490228869021,-0.05133681045845151,0.43353915214538574,-0.38229201827198267,-0.06724890833720565,-0.6837487178854644,-0.91771624609828,0.41366981342434883,0.40690965950489044,0.6076797507703304,0.9068009671755135,0.43487030267715454,-0.36375430785119534,-0.1253553363494575,-0.27013613004237413,0.19596048025414348,0.1263994569890201,-0.41336191445589066,0.6843152227811515,-0.2584786578081548,0.25650419667363167,0.8299533925019205,0.9115557209588587,-0.25687366677448153,-0.08671012334525585,0.7813662928529084,-0.5961891040205956,-0.31572494888678193,0.26893642358481884,-0.718827536329627,-0.37201981665566564,-0.1979475417174399,-0.3850390771403909,-0.027222253382205963,0.6475232504308224,0.8614262733608484,0.7152014393359423,0.02715520327910781,-0.017697933595627546,0.4440044602379203,0.5585500663146377,0.8248463217169046,-0.2743353433907032,0.7662999457679689,-0.5839781621471047,0.5602393937297165,0.2500414433889091,0.27679668366909027,0.178634786978364,-0.6534482883289456,0.8082373864017427,0.9215087331831455,0.3390472885221243,0.0779445031657815,-0.7180403373204172,-0.5506570003926754,-0.14801396522670984,0.17036118125542998,0.13240946317091584,-0.0033138892613351345,-0.9594691316597164,-0.4879085384309292,-0.1051452187821269,-0.6573221636936069,-0.6897348398342729,-0.9881087536923587,-0.6551681514829397,-0.48475149972364306,0.9016753039322793,0.6619787849485874,-0.08295561838895082,-0.8937668385915458,-0.940254925750196,-0.8599599120207131,0.9087271639145911,0.19234895054250956,0.1523462189361453,0.4398886696435511,-0.6241410104557872,0.3109266310930252,0.8429814586415887,0.45653566205874085,0.7546571781858802,0.9411310786381364,-0.8611358483321965,-0.5152886803261936,0.5477272756397724,0.32631114311516285,0.6534043070860207,0.7119155703112483,-0.5550736715085804,-0.5046776672825217,-0.9028743263334036,0.39238834707066417,0.5971251255832613,0.7313702199608088,0.742506708484143,-0.7192578143440187,0.5539936679415405,-0.48688216833397746,0.979802499525249,0.8718517459928989,0.2499153302051127,0.5860875267535448,0.5161335757002234,-0.8675514808855951,-0.09042614651843905,0.9903534590266645,0.8020279221236706,0.8548000007867813,-0.9056330276653171,0.55057129310444,0.7262809062376618,0.22794497851282358,0.06348091689869761,-0.8062523067928851,-0.9022194785065949,0.5175775890238583,0.1067254226654768,0.10465598432347178,0.40081291971728206,-0.3700119801796973,-0.9829089269042015,-0.2361740400083363,-0.5962897487916052,0.12453425396233797,-0.14901740523055196,-0.19855364924296737,-0.3987883785739541,0.3040228206664324,-0.7374703101813793,0.760265254881233,0.7387776407413185,0.6846315106377006,0.21766375983133912,0.2994499453343451,-0.8784919870086014,-0.8985167406499386,-0.6644326276145875,0.5777733782306314,-0.8965877648442984,0.8096497575752437,-0.993116419762373,-0.9382416014559567,0.3505166033282876,0.8898476925678551,-0.7556312261149287,0.006824920419603586,-0.5619759117253125,-0.0719108753837645,-0.1557683926075697,0.6636113133281469,-0.4685246027074754,0.8635002584196627,0.9111032304354012,-0.41541751474142075,-0.6619277647696435,0.6261963876895607,-0.5696780411526561,0.1484900051727891,0.5460725594311953,-0.25416511576622725,0.12035816395655274,-0.09271837305277586,0.6545732477679849,0.543688602745533,0.5657693045213819,-0.6737286350689828,0.046687694266438484,-0.9798687379807234,0.31170781422406435,0.6722263880074024,0.5766827147454023,0.5222772443667054,0.33503293339163065,0.5535872601903975,0.40299576288089156,0.9302213434129953,0.3641642169095576,-0.46679941937327385,0.4527304135262966,0.34058239730075,0.6515454486943781,0.057316959369927645,0.9615406775847077,0.9956571157090366,-0.9912219392135739,0.8749508992768824,0.4979273579083383,0.3895256952382624,-0.6954025854356587,-0.9568857937119901,-0.021126754116266966,0.8978844895027578,-0.3683648728765547,0.46264542546123266,0.5705147101543844,0.46347893634811044,-0.38235750747844577,-0.05952822929248214,0.311112342402339,0.5490599754266441,-0.7858936246484518,-0.9150982834398746,-0.34090277506038547,0.00245014950633049,0.5470567313022912,0.986806919798255,0.8996998192742467,0.46258827997371554,-0.9920129212550819,0.3294794876128435,0.6518669347278774,-0.6870635743252933,-0.7842773706652224,-0.6931483238004148,0.5050393138080835,0.8351262649521232,0.8231733543798327,0.15939692221581936,0.4095269343815744,0.5578674213029444,-0.652926875744015,-0.8626826819963753,-0.7879981915466487,-0.6659154081717134,0.7841788721270859,-0.89862015331164,-0.085980957839638,0.7081858799792826,-0.6601526634767652,0.15186942927539349,-0.7833944708108902,-0.7552712233737111,-0.9382216641679406,0.8432406694628298,-0.09239967912435532,-0.7324408735148609,-0.17138552432879806,-0.4258389533497393,-0.7516235299408436,0.22837496176362038,0.7536038649268448,0.8475812268443406,0.02721909387037158,-0.40388946840539575,-0.22043663496151567,-0.06917241541668773,-0.8415096998214722,-0.5880751074291766,0.7433806257322431,0.12313413759693503,-0.37581874104216695,0.29918703995645046,-0.2665151823312044,-0.6199340219609439,0.22423344710841775,-0.012518932577222586,-0.21020150743424892,0.8105095438659191,0.43053623801097274,0.2256287499330938,-0.07979699550196528,0.3989798091351986,0.0673191612586379,0.9036859502084553,-0.38156935991719365,-0.5330904694274068,-0.9709467622451484,0.8422019397839904,0.25187375117093325,-0.528015139978379,0.26026433939114213,0.8445909288711846,0.7867019600234926,0.5812773718498647,0.8793595838360488,0.9813783313147724,0.036375926341861486,-0.4007288650609553,-0.945778579916805,0.5785508253611624,-0.7269790731370449,-0.16124167386442423,0.3275254867039621,0.3994979844428599,-0.4818625249899924,-0.24331496423110366,-0.7065842808224261,-0.8559751138091087,0.9298631283454597,0.7771702124737203,-0.26376613369211555,-0.2670093812048435,0.28132280381396413,0.24645218020305037,0.7074030148796737,-0.7553802952170372,-0.05710661830380559,0.9661355623975396,0.8728671995922923,-0.5095295147038996,0.10439830552786589,-0.34125697053968906,0.6656339382752776,0.41518900776281953,0.6649848655797541,-0.6091269473545253,-0.9209626275114715,-0.4230819633230567,0.430162588134408,0.3537291716784239,-0.5344949085265398,0.6564452392049134,-0.44840368488803506,-0.8400992699898779,0.7139370893128216,-0.28378752525895834,0.6741690575145185,0.9515774487517774,-0.43633062159642577,-0.05069727310910821,0.9797481298446655,-0.5573230725713074,-0.29542365577071905,0.5533883636817336,0.23028487665578723,0.555960544385016,-0.9018065254203975,-0.6500650746747851,0.9719093265011907,-0.7307792617939413,-0.3922917381860316,0.14185134135186672,-0.26633590599521995,-0.37588794995099306,-0.37931273225694895,0.782750382553786,-0.23571360716596246,-0.638480806723237,0.6250280342064798,-0.31156736286357045,0.6651021344587207,0.8059250148944557,-0.6104816398583353,-0.25523565663024783,0.005051326006650925,0.33049465669319034,0.12132534943521023,0.7711905087344348,0.05868398956954479,0.23646284081041813,0.3000645940192044,-0.741356554441154,-0.8336200607009232,0.06907199742272496,-0.9752661734819412,0.6166810584254563,0.003699803724884987,-0.9542808840051293,-0.6717527215369046,-0.7408324349671602,0.0017811409197747707,-0.8799958918243647,-0.9810699475929141,-0.6577502829022706,0.2900409772992134,-0.7908580349758267,0.5739422012120485,0.14986075414344668,0.5245970273390412,0.6339104194194078,-0.8295156904496253,-0.43653360940515995,0.34395029256120324,0.9958297116681933,0.46372250840067863,-0.14624003414064646,-0.10005467059090734,-0.5400145947933197,0.7147563812322915,-0.8625004622153938,-0.6034393971785903,-0.6176005899906158,-0.5638529285788536,-0.5870817485265434,-0.6783631639555097,0.8212361461482942,0.21194159891456366,-0.01650891499593854,-0.8803849602118134,0.6663572443649173,-0.6360254515893757,0.04647028259932995,-0.5937735205516219,-0.8938062428496778,0.25444087060168386,0.7632480459287763,0.4823963539674878,-0.3448538724333048,0.6042593559250236,0.6204301826655865,-0.8140794285573065,-0.4045688188634813,-0.43115091836079955,-0.4762493344023824,0.8394281025975943,-0.8199840052984655,0.034674943424761295,0.4747624509036541,-0.028340498451143503,-0.8475576099008322,-0.8718507043085992,0.6754568195901811,-0.8864754824899137,0.37054133880883455,-0.9949782774783671,-0.586016237270087,0.5100174336694181,-0.615452685393393,0.47400012612342834,-0.6945115118287504,0.44440886937081814,-0.07070076232776046,0.6443619285710156,-0.4701314535923302,0.3696837341412902,0.9873517910018563,0.9765111468732357,0.4871708583086729,-0.0419147964566946,-0.23778367973864079,-0.9272705777548254,-0.9568074974231422,0.693326320964843,-0.3074427451938391,-0.17222713911905885,0.4271554760634899,0.2572565646842122,-0.008912623394280672,-0.426463823299855,-0.6180202788673341,0.7844654708169401,-0.130993596278131,-0.3782314443960786,0.16519626323133707,-0.44409357430413365,-0.8683564816601574,0.6685175793245435,-0.42616618890315294,-0.06983795715495944,0.7581745306961238,0.05552335176616907,0.5025526834651828,0.8653076631017029,-0.0694266427308321,-0.3453929014503956,-0.21553386701270938,0.614815641194582,0.0025124456733465195,0.4554152572527528,-0.1348050539381802,0.48848533164709806,0.47402049228549004,0.915808942168951,0.7842236305586994,-0.7987429210916162,-0.37216928880661726,-0.6285370783880353,0.865847428329289,0.41274114279076457,0.8679188601672649,0.8542773276567459,-0.30421214597299695,0.11625250428915024,0.8687963457778096,-0.5366474310867488,0.49425548780709505,0.8923092652112246,0.6649543298408389,-0.3320178841240704,0.600466716568917,0.8176700514741242,-0.5806579813361168,0.26235075341537595,0.6852378374896944,0.07669070130214095,-0.3481192346662283,-0.889979497063905,0.1592372846789658,-0.5568223847076297,-0.19744270481169224,-0.04152100998908281,0.023512692656368017,-0.07304175710305572,-0.04043567506596446,0.5339066390879452,-0.9711544313468039,-0.6897641960531473,-0.5068160509690642,0.8292454965412617,0.4048355729319155,-0.8461363734677434,0.610128365457058,-0.9221533364616334,-0.21655779518187046,-0.07771035144105554,0.7416265290230513,0.35542887821793556,-0.058048742823302746,0.297882785089314,0.329384995624423,-0.7066443902440369,-0.055033625569194555,0.9445496727712452,0.1366367875598371,-0.9568626596592367,-0.5077272816561162,0.7922021015547216,-0.8015009653754532,-0.42949448293074965,0.46335581596940756,-0.2394372751004994,0.8555301539599895,-0.6779466341249645,0.05769856087863445,0.14943552762269974,-0.7280433806590736,0.23454975336790085,-0.05983874201774597,0.26327985851094127,-0.5664510666392744,0.24161856016144156,-0.8097442733123899,-0.2602679203264415,-0.8266297094523907,-0.9461330063641071,0.1569495601579547,-0.45994908502325416,0.5641383589245379,-0.651166491676122,0.0057707722298800945,-0.571408161893487,0.08918661857023835,-0.2967652273364365,-0.7120765773579478,0.7159528126940131,0.3120320881716907,0.9248203905299306,0.35057895071804523,-0.7204247587360442,0.7137893051840365,0.778350648470223,0.5368610387668014,0.6198139502666891,-0.1411954378709197,0.3122560251504183,-0.08183282287791371,0.46835696045309305,-0.38051844807341695,-0.4371338919736445,-0.3042999627068639,0.4662697520107031,0.18733322620391846,-0.06953045353293419,0.4630887284874916,-0.3606279348023236,0.3847887269221246,-0.19734769966453314,-0.6680536605417728,-0.6392291784286499,0.30637885676696897,0.07537017110735178,0.8858717544935644,0.74649050924927,-0.6823342782445252,-0.3516600797884166,0.7038083565421402,0.8616963122040033,-0.9514663559384644,-0.3376328689046204,0.06645106431096792,0.8584073521196842,0.7850023093633354,-0.7422907166182995,-0.13484216248616576,-0.3822805336676538,-0.878638113848865,-0.6295577138662338,-0.7556417942978442,-0.2719371938146651,-0.9849476651288569,0.5914142383262515,-0.9079670244827867,0.16484558582305908,0.784811123739928,-0.5921254944987595,0.9548862911760807,-0.5246548377908766,-0.9128108727745712,-0.6284217406064272,0.1855233027599752,-0.4763050116598606,0.7743802140466869,-0.9363759942352772,-0.2717914027161896,0.5987400044687092,0.7572531863115728,-0.7848628964275122,0.9487923868000507,0.09884931845590472,-0.1931519522331655,0.8603022084571421,0.8830494666472077,0.9067673915997148,-0.2956263655796647,-0.2508856733329594,-0.35425757383927703,0.04655071347951889,-0.7282691355794668,-0.23228879645466805,0.10265085659921169,0.2115338584408164,0.644216007553041,-0.32081150775775313,0.8535138540901244,-0.008913466241210699,-0.8591316072270274,-0.5936590088531375,0.9953612070530653,-0.9166471469216049,0.9665748085826635,0.8710756050422788,-0.7227789703756571,0.5125465989112854,-0.42298152577131987,-0.9655108135193586,-0.3340843291953206,0.6062590200453997,-0.157139522023499,-0.3870863951742649,0.995729791931808,0.410119307693094,-0.9157687998376787,0.1719397259876132,-0.7287559802643955,0.8994297636672854,0.47510215546935797,-0.9986397777684033,0.2757666613906622,0.4442800562828779,-0.6714141387492418,0.2672979333437979,0.3700273996219039,-0.9534458797425032,0.6371472659520805,0.3531541358679533,0.6858698758296669,0.6182993799448013,0.9210810046643019,0.7006574315018952,0.5022351541556418,0.5042538619600236,0.24689700081944466,0.855664340313524,0.5123975803144276,-0.727582260966301,-0.7001075437292457,0.947361218277365,0.2966513196006417,0.9383050776086748,-0.3623745599761605,-0.1043176050297916,-0.9261059956625104,0.12652969313785434,0.3942798934876919,-0.3119073659181595,-0.11060717748478055,-0.6062065279111266,0.3339854599907994,0.6136862151324749,-0.5296938396058977,-0.6436538328416646,-0.9079237612895668,0.8776136673986912,-0.6411489541642368,-0.11899357847869396,-0.2514325533993542,0.22922310512512922,0.1506164576858282,-0.11356018064543605,-0.07555205747485161,0.5848780679516494,-0.20838274993002415,-0.3803439890034497,-0.7120323395356536,0.3044430883601308,0.8233637707307935,-0.2123816073872149,0.03808301407843828,-0.5609779977239668,0.9366584429517388,0.6689725667238235,-0.9151594224385917,-0.008672548457980156,0.8830370372161269,-0.7697679772973061,-0.7981269680894911,0.9046088019385934,0.8671997645869851,-0.6480761636048555,-0.9294462078250945,0.9957294417545199,0.7706960807554424,-0.7923440532758832,0.1572633208706975,-0.5067817522212863,-0.9030130915343761,0.05378497205674648,0.4022769373841584,0.2826164895668626,0.01727383816614747,-0.6877694581635296,-0.5741642047651112,0.7379876621998847,-0.35848180996254086,0.42300519486889243,0.4245003848336637,-0.35802708100527525,-0.450651818420738,-0.023101348895579576,0.7657855432480574,0.7979094316251576,0.8912798915989697,-0.3761869128793478,-0.18854639725759625,-0.07864764332771301,-0.6502797910943627,-0.6437213397584856,0.7600339031778276,0.9116886169649661,0.5621482878923416,-0.7300264146178961,-0.8415702832862735,0.9144747103564441,-0.4349119854159653,0.8179329643025994,0.6494849263690412,-0.17282201489433646,0.40846231300383806,0.6631863326765597,0.670312789734453,-0.7393322070129216,-0.8572150226682425,-0.44221926387399435,-0.974944950081408,0.5792325017973781,0.21592208230867982,-0.893015852663666,-0.5360409063287079,-0.10942443925887346,-0.008695453871041536,-0.6336552845314145,-0.2852807701565325,-0.9715588381513953,0.9863168559968472,0.29300961550325155,0.7688060719519854,0.45540418615564704,-0.00735855707898736,-0.6771507826633751,-0.9752244823612273,-0.57088418956846,-0.6823898241855204,0.5481653613969684,0.03937690192833543,-0.19477977836504579,0.2895435709506273,0.42852659709751606,-0.950508629437536,0.013101956807076931,-0.877185978461057,0.23963302373886108,0.36201483150944114,0.10297360830008984,0.7343163499608636,-0.018816352356225252,-0.09313902957364917,0.16002047341316938,0.6256906087510288,0.8036427684128284,-0.922850280534476,0.2594398963265121,-0.04502927511930466,-0.18951950874179602,0.395576324313879,-0.6440613428130746,-0.7987493495456874,0.3997404295951128,-0.21500879945233464,0.17745303781703115,0.3662088098935783,0.8604154549539089,0.04409605544060469,0.5564709142781794,0.39426093315705657,-0.7583515527658165,-0.42796130711212754,-0.4167799912393093,-0.9570986931212246,-0.6150861689820886,-0.987009056378156,-0.5820574872195721,-0.8996663303114474,0.7533761598169804,0.11076709069311619,-0.6524819661863148,0.03200550936162472,0.04816245473921299,-0.4258662057109177,0.5662599052302539,-0.004703832790255547,-0.8644048655405641,-0.7755380729213357,-0.10224183602258563,-0.7314324411563575,-0.39750681119039655,0.6497545097954571,-0.11462527373805642,0.7383810221217573,-0.9865063321776688,-0.523694415576756,0.15936477575451136,-0.6262009395286441,-0.8434514398686588,0.39646033803001046,0.32135661598294973,0.3743915054947138,-0.6030295719392598,-0.12154323747381568,0.46939534693956375,-0.11894435621798038,0.6162222917191684,0.3657117811962962,-0.3745894250459969,-0.08084159484133124,0.486728853546083,-0.4177973521873355,0.12378715630620718,0.29451926704496145,-0.4157656072638929,-0.5515229920856655,0.935295291710645,0.9770607664249837,0.45878836419433355,0.18572751199826598,0.15637888526543975,0.9711413928307593,0.29123983066529036,-0.38563125813379884,-0.38343444745987654,-0.5009294115006924,0.08668216643854976,-0.570867654401809,0.5209434861317277,0.589380965102464,0.5640606991946697,-0.5048401262611151,-0.9404744603671134,-0.90748310694471,-0.28627229761332273,-0.2071252204477787,0.8632133039645851,-0.9310770984739065,0.061390487011522055,0.3286180985160172,-0.386099137365818,-0.7485404438339174,0.9329929081723094,0.3801377322524786,0.6179234473966062,-0.34375792695209384,-0.27665624441578984,-0.29542167438194156,0.6418815865181386,0.9512830921448767,0.20071165915578604,-0.19606519304215908,-0.1821929169818759,0.26297476841136813,-0.03630807064473629,0.7007684223353863,0.4924899390898645,0.9369754646904767,0.932200126349926,-0.2547019040212035,0.9518530173227191,-0.9023322653956711,-0.8003323888406157,0.10195333138108253,0.19577006390318274,-0.042139879427850246,-0.8184119472280145,0.8184430464170873,0.1951393592171371,-0.15506559936329722,0.6062829005531967,0.9615730098448694,-0.9937771502882242,0.9450403531081975,-0.6076936130411923,0.3218623264692724,0.09448108449578285,-0.01596979983150959,-0.746688598766923,0.49411785369738936,-0.232839189004153,-0.5467332992702723,0.32063187984749675,-0.40318342996761203,0.109682098031044,-0.2799951210618019,-0.974903997965157,-0.6694822213612497,-0.6155037828721106,-0.6795173855498433,-0.2303661499172449,-0.6236081183888018,-0.6862718681804836,0.2569151371717453,0.4323582355864346,0.041390903294086456,-0.5161229600198567,0.3135303924791515,-0.020646694116294384,0.7839110200293362,-0.2892087157815695,0.026878332253545523,-0.2743741776794195,0.5878195981495082,0.41441443003714085,-0.6729319784790277,0.718603297136724,-0.8145133387297392,0.5906369262374938,0.9448883943259716,0.49511327827349305,-0.056256674230098724,-0.4089801157824695,-0.941026512067765,0.5845468775369227,-0.3048439254052937,0.7085102740675211,-0.1321491962298751,0.48969452176243067,-0.03823627531528473,0.018427572213113308,0.807258119340986,0.3834801302291453,-0.9541940470226109,-0.5818400885909796,-0.8491641450673342,0.5404324783012271,-0.31528505915775895,-0.7435244303196669,-0.10080055333673954,0.8533906466327608,0.18887939397245646,-0.7284909700974822,0.7494148155674338,-0.9660303951241076,0.2570562791079283,-0.24724793201312423,0.5140101332217455,0.8316560410894454,-0.2969852997921407,-0.579565002117306,-0.05307039897888899,-0.7113814163021743,0.8258564686402678,-0.7463126387447119,0.5046331798657775,-0.5557244578376412,0.19284013425931334,0.2803521389141679,0.6705032293684781,-0.8243326810188591,-0.5547745493240654,-0.345303226262331,0.48320147674530745,-0.603566262871027,0.8622861099429429,0.02550986548885703,-0.8221527906134725,0.13508171495050192,-0.9483326808549464,-0.948438891209662,-0.7441643667407334,-0.6571905137971044,-0.7223038920201361,-0.8100120588205755,0.06850291881710291,-0.81893973890692,-0.22667801240459085,-0.7038434129208326,0.390495587605983,0.029671374708414078,0.2656510570086539,0.7022360423579812,-0.14687502477318048,-0.31323083909228444,0.24150633020326495,-0.7183644510805607,0.5137020056135952,0.33952227607369423,-0.5290325419045985,-0.28428012086078525,-0.2765625505708158,0.08895447151735425,0.07758418098092079,0.7066694856621325,-0.2798900296911597,0.6044164928607643,-0.4654053281992674,-0.944203560706228,-0.614902931265533,-0.7475447454489768,0.13544207904487848,-0.43732907669618726,0.17279478628188372,0.18011563923209906,-0.9142475803382695,0.8282926566898823,-0.978561379481107,0.14525922341272235,0.14419706724584103,-0.21116459602490067,-0.20151913911104202,0.8290390535257757,-0.22948112897574902,-0.17536770971491933,-0.6541829770430923,-0.07520739454776049,0.4240431375801563,0.16424632025882602,0.03589845867827535,-0.9250676352530718,0.21031041629612446,0.24521332932636142,0.8520259112119675,-0.1260105282999575,-0.7678905986249447,-0.007474066689610481,0.09775617066770792,-0.276064514182508,0.8179114949889481,-0.9989751605316997,0.0558362933807075,0.016789079643785954,-0.12461218284443021,0.7479343456216156,0.2243890012614429,0.9294071896001697,-0.9348119599744678,-0.7203424172475934,-0.1853425493463874,0.3274791738949716,-0.27397693367674947,0.964565402828157,-0.9385616220533848,0.1865580682642758,-0.4807762927375734,0.2265455424785614,-0.3021649536676705,-0.9806740959174931,0.661530495621264,0.41073101619258523,-0.3143199742771685,0.052898726891726255,-0.1015950427390635,-0.5285036661662161,-0.8422254044562578,-0.6370437103323638,-0.8874965878203511,0.5099527123384178,-0.7837439426220953,-0.7616456500254571,-0.6040777754969895,-0.8134702574461699,-0.5941478745080531,-0.7394450702704489,-0.9163216752931476,-0.0025175916962325573,-0.20640591578558087,-0.10463226120918989,-0.3004422588273883,0.6837205812335014,0.7527851732447743,-0.4361455589532852,-0.04944289894774556,0.9107931558974087,0.5758424261584878,0.9798015798442066,0.5167677779681981,0.6397525817155838,-0.6788788218982518,0.06322093354538083,-0.2980387802235782,0.7865906869992614,-0.594021275639534,0.4940669974312186,-0.48003498930484056,-0.4544135560281575,0.7386638238094747,0.5959623325616121,-0.4183998163789511,-0.11073659546673298,0.9454073030501604,0.7831569649279118,0.028124668635427952,0.7081330148503184,-0.001542635727673769,-0.6162161310203373,0.04790197405964136,-0.7566109001636505,0.5519455061294138,-0.09236415149644017,-0.44894324662163854,-0.8406591289676726,0.8549080197699368,-0.08055546693503857,-0.8878962686285377,-0.5882395175285637,0.6810593954287469,0.8742719474248588,0.722188213840127,-0.014743661042302847,-0.28131063422188163,-0.9229818340390921,0.9165252982638776,0.709431023336947,0.802377023268491,-0.8941963319666684,0.39765139669179916,0.6314609670080245,-0.4188002636656165,-0.6317071854136884,-0.5038498309440911,-0.6825028890743852,-0.21481048921123147,0.1098107066936791,-0.08026785729452968,0.5798123180866241,-0.4106129091233015,-0.937919591087848,0.783502945676446,0.305761591065675,0.4524233308620751,0.604444723110646,0.3482677722349763,0.6739310417324305,0.9537968570366502,0.7562502715736628,-0.9489395916461945,0.2523348582908511,-0.8374442043714225,-0.8434084155596793,0.20296535594388843,0.20701751532033086,0.5027105468325317,-0.7771479818038642,0.3210914875380695,0.0042302729561924934,-0.9230519132688642,0.12134401686489582,-0.13734155846759677,0.11911966232582927,-0.06047793012112379,0.7893002307973802,0.6490584532730281,-0.09685991099104285,-0.42898236447945237,0.9833440207876265,-0.8239610511809587,-0.8332590400241315,0.3699859296903014,0.11708007007837296,0.2734585115686059,0.7288734843023121,0.9506539884023368,0.2700742301531136,-0.2808825774118304,0.11834236746653914,0.06469925912097096,-0.4407385131344199,-0.3948905193246901,0.5396770467050374,-0.7045401814393699,-0.5034652794711292,-0.16811932530254126,-0.8917660885490477,0.3480865629389882,-0.6514911279082298,0.6595996078103781,-0.09940410777926445,-0.7939768838696182,-0.016600542701780796,-0.6450229152105749,0.7924741916358471,0.049179740250110626,-0.8782196417450905,-0.043090414721518755,-0.5925439936108887,-0.47825697157531977,-0.8451315327547491,0.6350460690446198,-0.8370952294208109,-0.09422299964353442,0.6093473732471466,-0.783788938075304,-0.7694421433843672,0.9875015285797417,0.6544554182328284,0.44929799111559987,-0.09424633113667369,-0.2907713782042265,-0.15348162967711687,-0.619290932547301,0.4079544465057552,-0.20173308067023754,-0.16130108246579766,-0.29199835006147623,0.5186702767387033,-0.20559374801814556,-0.4947025803849101,-0.038957586511969566,-0.5111423754133284,-0.4600796028971672,-0.7489031329751015,-0.8839460872113705,-0.6270974008366466,0.30858104303479195,-0.8057845206931233,0.9460896775126457,-0.23409149050712585,0.5636544600129128,0.7645695600658655,0.5776611072942615,0.9007735066115856,-0.5339553467929363,-0.6072051748633385,0.5840082573704422,-0.3668920313939452,0.2407887182198465,-0.7585887676104903,0.1282344157807529,0.18011610303074121,0.17784057836979628,0.4174067988060415,0.266263818833977,0.11104535451158881,0.8225643048062921,0.07516323868185282,0.9731768425554037,0.735530661419034,0.2820139150135219,0.5622253082692623,-0.5370749663561583,0.762676180806011,0.7381252171471715,0.8768798899836838,0.424694562330842,0.6767891366034746,0.1046677939593792,-0.7896677646785975,0.8502976945601404,-0.11805578973144293,0.4223459605127573,-0.15962557960301638,-0.19356374954804778,0.8027667794376612,-0.15404413919895887,0.9885960123501718,-0.8457497037015855,0.2328825662843883,-0.7972884122282267,-0.20274200895801187,0.36455006059259176,-0.6342541435733438,0.6813365728594363,0.30168357491493225,-0.08706438262015581,0.15261289337649941,0.8107888638041914,-0.0903365695849061,0.049189931247383356,0.7699125437065959,0.6762623805552721,0.5809038821607828,-0.9228202048689127,0.17401650035753846,-0.22757731238380075,-0.32534441677853465,0.03531935764476657,0.5545702027156949,0.8819446372799575,0.27905627293512225,0.47968999156728387,0.5900656837038696,0.5081783873029053,-0.9134641657583416,0.00750741409137845,-0.8653794410638511,-0.6659633973613381,0.8442008048295975,0.791786081623286,0.966663499828428,-0.8484955807216465,0.8495994978584349,-0.8183784275315702,-0.2980209058150649,0.9579382818192244,-0.4415185176767409,-0.8688721074722707,-0.35215265210717916,-0.9927010657265782,-0.2658964227885008,0.9849508185870945,0.4646747731603682,-0.8777186558581889,0.7188619407825172,0.9796308143995702,0.8783649383112788,-0.8093673922121525,0.6239696405827999,-0.9605922168120742,0.3486679610796273,-0.07310922909528017,0.5634032767266035,0.4415399222634733,-0.6698674941435456,0.5469875512644649,-0.3198444740846753,0.9883360872045159,0.8944339570589364,0.651646438986063,-0.14892836334183812,0.5594362616539001,0.838724463712424,0.968937543220818,-0.9734554220922291,0.7435377324000001,-0.07044109236449003,0.028490580152720213,-0.3752153548412025,0.6277177813462913,0.6480773990042508,0.38991628773510456,-0.7761776992119849,0.3123879171907902,-0.0449827522970736,-0.1683379248715937,-0.4617161760106683,0.023796613793820143,0.9814661778509617,0.5119328191503882,0.5240932675078511,-0.23981651104986668,-0.7428782661445439,0.7547604972496629,-0.7182604176923633,0.8755800086073577,-0.23157919337973,0.21305389888584614,-0.27882362250238657,-0.9040298401378095,-0.748477126006037,0.6534841787070036,0.3641818962059915,0.6842550570145249,-0.04577063163742423,0.5556694390252233,0.26802049297839403,-0.3345959326252341,-0.7317804731428623,0.20727869030088186,-0.14186227601021528,0.4891035631299019,0.8620894416235387,0.8510718876495957,-0.5858003618195653,-0.779517435003072,-0.9222179297357798,0.7781676650047302,-0.5146095110103488,-0.3783018081448972,0.6745530306361616,0.2194617516361177,-0.9765664311125875,-0.7977626454085112,-0.17208281252533197,0.2700451435521245,0.7182225310243666,-0.23969817021861672,0.4446583674289286,0.6041986495256424,-0.6495578372851014,-0.2602992211468518,-0.37707163114100695,-0.2632850958034396,-0.9147076751105487,-0.5533618708141148,0.023484716191887856,-0.8330897665582597,0.5126630701124668,-0.4687703805975616,-0.07612616242840886,-0.9401338091120124,-0.00578375393524766,0.11700863484293222,0.7888699346221983,-0.44213713333010674,-0.43037517787888646,0.01643626904115081,0.2109454795718193,-0.09605406690388918,-0.960672908462584,0.9321372481063008,-0.5546542187221348,0.20973056508228183,0.4659379255026579,0.21213527722284198,0.47889334289357066,-0.6645728182047606,0.4264002852141857,-0.8672745041549206,0.020454837009310722,-0.46458782721310854,0.09096278669312596,0.17969839181751013,0.5440555457025766,0.2659221109934151,-0.8045913111418486,-0.7560490253381431,0.05186740541830659,-0.34088351111859083,-0.05004420084878802,-0.5873394357040524,0.14136710856109858,0.4432030711323023,0.7201097197830677,0.7754283854737878,-0.6404691440984607,0.9056951021775603,-0.5791973071172833,-0.8776779659092426,-0.7173586157150567,0.14405797887593508,0.08979638898745179,0.8135984945110977,-0.895677444525063,0.4438842311501503,0.791767408605665,-0.4072323734872043,-0.5058524194173515,0.2485343050211668,0.4317897167056799,0.6173529243096709,-0.6609705677255988,0.3900127438828349,0.5532880676910281,-0.6631150753237307,0.6321230339817703,-0.44580235751345754,0.5311910714954138,-0.20539879892021418,-0.04034695075824857,-0.855849398765713,-0.011226053815335035,-0.4684639354236424,-0.38534480053931475,-0.8238781443797052,0.7213467969559133,-0.7933250404894352,0.20594982104375958,-0.8020533774979413,-0.9791459776461124,0.08427942218258977,0.9600622286088765,-0.3246180694550276,0.4291134113445878,0.4360013767145574,-0.3874304764904082,-0.3234286434017122,0.6330539803020656,0.6480086585506797,0.47673122491687536,0.5705393953248858,0.11894336249679327,-0.22497158078476787,-0.8413760983385146,0.5002628937363625,-0.12348589673638344,-0.7745597301982343,0.08228400768712163,-0.035532389767467976,0.7118211179040372,0.7826687144115567,-0.6608677487820387,-0.055536788422614336,-0.18203831184655428,0.44969269540160894,0.25731006776914,0.22581368312239647,0.6502336612902582,0.8727533831261098,0.8346103839576244,-0.29302723007276654,-0.8885769890621305,-0.04153385246172547,-0.8314814572222531,-0.5430722953751683,-0.5619509676471353,0.2396238618530333,-0.5657636979594827,0.8126739920116961,-0.827638880815357,-0.19699738873168826,0.6160505912266672,-0.46838002698495984,-0.19157234532758594,-0.286845943890512,0.37924866657704115,-0.3208601460792124,0.9787236461415887,0.4039860521443188,-0.7732560154981911,0.4528611684218049,-0.912672508507967,-0.959837585221976,0.8449618541635573,0.55228809453547,-0.3114496706984937,0.19815680012106895,0.5184309631586075,-0.582891455385834,-0.3434356567449868,-0.9179184758104384,0.5552855962887406,-0.3449401380494237,0.7185443211346865,0.4776199175976217,-0.037730542942881584,-0.8264202787540853,-0.4329277225770056,-0.08572346903383732,-0.7524686334654689,-0.47467330982908607,0.4524289043620229,0.3207649178802967,0.6201494364067912,-0.9516651364974678,0.14561873441562057,0.7940624398179352,0.524986635427922,0.5546372085809708,-0.39464228227734566,0.4836916751228273,0.43699786998331547,-0.8503025961108506,-0.9454549900256097,0.8934586821123958,-0.3365940027870238,-0.8066230625845492,-0.44428602140396833,-0.035530021879822016,0.9671396887861192,-0.9434431134723127,-0.3981806393712759,0.9626352782361209,-0.12175446096807718,0.8398478045128286,-0.7162085245363414,-0.9700975813902915,-0.6235244455747306,-0.7615393353626132,0.19750113040208817,0.6782322362996638,0.6415388570167124,0.9011345892213285,-0.7072775634005666,0.4061006549745798,0.35403547901660204,0.882000410463661,-0.5578205226920545,0.17460390366613865,0.5800027130171657,-0.5572666334919631,-0.8456039312295616,-0.9878906751982868,-0.32766097923740745,0.861941603012383,-0.7340436079539359,-0.5333816288039088,-0.22569870995357633,-0.11035157507285476,-0.47080678353086114,0.3587331916205585,-0.45203514816239476,0.4234397355467081,-0.8641183008439839,-0.16869907919317484,0.7160701779648662,-0.8751126118004322,-0.2618012297898531,-0.1106149940751493,-0.8770206803455949,0.18538957089185715,0.9913538685068488,0.22612175019457936,0.34144915034994483,0.5709891747683287,-0.9484486789442599,-0.6606497629545629,0.5264707896858454,0.2965305740945041,-0.26068999245762825,-0.07069301139563322,-0.2990098590962589,0.22888199891895056,0.9041316760703921,-0.42735319305211306,-0.5488330689258873,-0.6767290239222348,-0.6129971812479198,0.2337731495499611,-0.4516278966329992,0.1266284533776343,-0.7590606124140322,0.7594396574422717,-0.6883824621327221,0.8212014161981642,-0.3093643318861723,-0.36413779854774475,0.14489649888128042,0.7377845332957804,0.8312376900576055,-0.25429554702714086,0.17150806728750467,-0.28361693024635315,-0.0727211874909699,0.6109059299342334,0.7978705032728612,0.409351987298578,-0.241691617295146,-0.17112537007778883,-0.3070352212525904,-0.8102447665296495,0.7643746631219983,-0.8849554527550936,-0.9705174514092505,-0.7922266065143049,0.5436420827172697,0.8275224356912076,-0.4757871855981648,-0.810603994410485,0.19896067725494504,0.6105860313400626,0.6568967909552157,0.6143307280726731,-0.916727895848453,0.2791212401352823,0.07313050655648112,0.2684726086445153,-0.27776236925274134,-0.015214482322335243,0.9928370346315205,0.1324331178329885,-0.5467481398954988,-0.655665670055896,0.584860076662153,-0.9092253297567368,0.20402737660333514,-0.9555804869160056,0.7810182888060808,0.9673232119530439,0.22447156673297286,-0.7623025048524141,-0.7707239654846489,-0.1355072259902954,0.10340826911851764,-0.06303805997595191,-0.10715486807748675,-0.3216109909117222,0.20399449719116092,-0.2133227987214923,-0.1015708283521235,0.11274862242862582,-0.849210306070745,-0.5695728557184339,-0.6208883333019912,-0.4859502804465592,-0.708127511665225,0.7577712121419609,0.9924018760211766,0.16770855616778135,-0.6104145902208984,0.4493327494710684,-0.8388743037357926,0.6997599131427705,0.13404793245717883,0.469761922955513,-0.9883337072096765,0.14039187459275126,-0.37093937303870916,0.7081580571830273,0.6587642906233668,0.3427719520404935,-0.9367888956330717,-0.5608240235596895,0.01691244589164853,0.7044071997515857,-0.7807443384081125,0.03882490377873182,0.2141568260267377,-0.2609555427916348,0.2784688537940383,0.4143225927837193,-0.6827674582600594,-0.06350994249805808,0.011352608911693096,0.5987868546508253,0.9481954043731093,0.5891776792705059,0.48762310575693846,-0.6052051978185773,0.4096821453422308,0.6243920824490488,0.9585661175660789,0.5422447794117033,-0.23076873924583197,0.5631322851404548,-0.24364905944094062,-0.8336604870855808,-0.9517394970171154,0.5265399753116071,0.6398293902166188,0.17983434442430735,-0.9779110853560269,0.9258506326004863,0.5259577138349414,-0.35222017113119364,-0.1770428642630577,-0.17025811364874244,-0.03844702150672674,0.03837522445246577,0.8243984822183847,-0.46523085655644536,0.38422325626015663,-0.7079369435086846,0.19215747667476535,-0.4647519337013364,-0.8510591574013233,0.20814786665141582,0.3151112571358681,-0.1511116735637188,0.40651365695521235,-0.15930771082639694,-0.8149014925584197,-0.16943741030991077,-0.22818688955157995,-0.8425326207652688,-0.1410143030807376,0.8911940255202353,-0.3349450407549739,0.19253773102536798,-0.34876785334199667,-0.1476077800616622,-0.009618320502340794,0.8530314425006509,-0.9507175176404417,-0.38349267560988665,0.15446941182017326,0.7703160024248064,-0.25556810945272446,-0.5574556672945619,0.25806576339527965,-0.6675867331214249,-0.3129150001332164,0.8208884885534644,-0.04360467614606023,0.8998748785816133,-0.8817567308433354,0.36326863849535584,0.17976231360808015,-0.18908705469220877,0.07142714830115438,-0.6235369467176497,-0.9785294020548463,0.236016231123358,0.8653455278836191,-0.9734100862406194,-0.8397722807712853,0.36342115933075547,-0.7280388888902962,0.42667913623154163,-0.31175214564427733,-0.7392021049745381,-0.48430508747696877,-0.8748706411570311,0.788055029232055,0.49967528274282813,-0.12294966308400035,-0.9758313852362335,-0.08088185684755445,-0.5642541106790304,0.925131855532527,-0.5822716047987342,-0.5669922907836735,0.608323379419744,0.8410361600108445,-0.2524554980918765,-0.8184312996454537,-0.12224915903061628,-0.14326780010014772,0.047193745616823435,0.6170684671960771,0.3478255053050816,-0.5654574255459011,-0.3235908676870167,-0.2954195770435035,0.5399548155255616,-0.9370364863425493,-0.5142708159983158,0.43235832592472434,-0.144349979236722,0.25335782300680876,-0.04715893603861332,0.45649134228006005,0.5907884337939322,-0.8052025972865522,0.8392528514377773,0.01548457657918334,-0.34425941621884704,-0.3242315575480461,0.23829764360561967,-0.3656383357010782,0.4101323625072837,-0.033083729445934296,0.49242924712598324,-0.8991726860404015,0.3098887181840837,0.2364895474165678,-0.39922162937000394,-0.8936668373644352,-0.38267388427630067,-0.7608803706243634,0.33592270966619253,-0.8507747342810035,-0.6665316098369658,0.4241824629716575,-0.8583053047768772,-0.5012737335637212,0.19187572225928307,0.9714191420935094,0.25124607095494866,0.971272203605622,0.06363985687494278,-0.8745309025980532,-0.09543445007875562,-0.5574152003973722,0.43860250851139426,-0.9950463157147169,0.2765400945208967,0.6862928462214768,0.20187991904094815,-0.9845288824290037,0.09870532201603055,-0.3904888457618654,-0.030827318783849478,0.1598461726680398,-0.8423600383102894,-0.9889032407663763,-0.8144627050496638,-0.15407369984313846,0.6784550305455923,0.7383960681036115,-0.13006450049579144,-0.34482315881177783,0.16806962387636304,-0.3187871593981981,-0.868525973521173,-0.7476372993551195,-0.015261797700077295,-0.5111601259559393,-0.9504473307169974,0.3735766955651343,-0.5009754383936524,-0.48297959892079234,0.8256474458612502,-0.21980452677235007,-0.5964073310606182,-0.041980639565736055,0.9910802645608783,-0.2752304286696017,-0.7006364725530148,-0.42782955430448055,-0.2613363373093307,-0.9704078659415245,-0.8017160492017865,-0.9386446070857346,-0.03454657830297947,0.7087178635410964,-0.8074075994081795,0.07527088047936559,-0.4847891768440604,-0.6258196514099836,-0.4566540755331516,-0.12187592685222626,-0.22409389447420835,0.2571831392124295,-0.4863368272781372,0.16418294329196215,0.8544357717037201,-0.04417088069021702,0.17925611790269613,0.451050846837461,-0.1018710802309215,-0.41748003475368023,0.6158795058727264,0.6842224462889135,0.9378149355761707,-0.29677159199491143,-0.8718949612230062,-0.6048535560257733,0.8917551198974252,-0.0684053273871541,0.600556303281337,0.40016720071434975,0.8158418713137507,-0.4632218424230814,0.5149645884521306,-0.8793914029374719,-0.9125331663526595,0.45225644763559103,0.23850530106574297,0.5828370195813477,-0.6039293515495956,0.9002934009768069,0.7243575840257108,-0.24710905738174915,0.27741525089368224,0.5144225740805268,0.6100693834014237,-0.052588522899895906,-0.42201634543016553,0.43870015162974596,0.7682320829480886,0.31856970814988017,-0.8124501509591937,-0.45841243164613843,-0.033495714887976646,0.9563984731212258,0.817711100447923,0.2915947958827019,0.5143115962855518,-0.602922092191875,-0.5310519686900079,-0.4899872336536646,0.2296996652148664,-0.16062433132901788,0.5758647471666336,0.4960900251753628,-0.978636774700135,-0.8651978597044945,-0.8974917139858007,-0.5774754220619798,-0.10743360314518213,-0.6549531826749444,-0.20437549008056521,0.07580108288675547,0.7126192217692733,0.2956587774679065,0.37475160183385015,-0.7888086531311274,-0.9240415617823601,0.4556883815675974,-0.5075580989941955,0.16815579449757934,0.638728825841099,0.08045395789667964,-0.9230008721351624,0.63900575786829,-0.7557082530111074,0.26733751920983195,0.9098550300113857,-0.7068632887676358,0.7640934372320771,-0.3565506380982697,-0.8068622276186943,0.8251288705505431,-0.3304421375505626,-0.37786775548011065,0.028196717146784067,0.2237345976755023,0.1665593865327537,0.020409273449331522,-0.6088163647800684,-0.44677487621083856,0.6873466982506216,0.5716030639596283,0.6646162215620279,-0.00439604464918375,0.522349682636559,0.9774046004749835,0.8904497250914574,0.8374069118872285,0.29311723355203867,-0.17357889283448458,0.9611459686420858,0.3248271723277867,-0.10895485943183303,0.20195233216509223,0.2896352452225983,0.7063785023055971,0.5076803769916296,-0.5105272042565048,-0.19991868268698454,0.45060452120378613,-0.9967780150473118,-0.5044124219566584,0.12998997513204813,0.737235483713448,0.5493420478887856,0.7363893250003457,0.9057645010761917,0.15841857297345996,-0.27487128926441073,0.08306900039315224,-0.3512663650326431,-0.9327488876879215,-0.4813334345817566,-0.5387370870448649,-0.32616468239575624,-0.7102871215902269,0.42353131202980876,-0.29710017750039697,0.18353688111528754,0.3564487285912037,0.20935733802616596,0.05999903380870819,-0.583470756188035,-0.9647231469862163,-0.432827761862427,-0.08271342143416405,0.22872364474460483,0.09524483373388648,-0.12021169951185584,-0.7499226075597107,-0.7787491125054657,0.16395615227520466,-0.8286927863955498,-0.910401236731559,0.7277025789953768,-0.2306556082330644,0.38571312045678496,0.8369459947571158,-0.5290023745037615,0.2714910814538598,0.9015339785255492,-0.11592401331290603,-0.5908462447114289,0.5983617175370455,0.7694419771432877,0.007065064273774624,0.09608412673696876,0.9605163396336138,-0.6378853125497699,0.5056772707030177,-0.5194599567912519,-0.09544046875089407,0.6832135720178485,0.09621931752189994,-0.07143698818981647,0.5842775125056505,0.6265169852413237,0.6056693312712014,-0.2195895416662097,0.9229967989958823,0.76691923616454,0.5730322189629078,-0.4284269721247256,-0.44409848377108574,0.12718454422429204,-0.7391542233526707,-0.8539833691902459,0.7014308958314359,0.5751781943254173,0.2766040647402406,0.08791922964155674,0.48514790227636695,-0.42043281393125653,-0.174193914514035,-0.20083607640117407,0.7953576208092272,0.12083283811807632,0.005116793792694807,0.8946663914248347,-0.35331232380121946,-0.05417011445388198,-0.8355340575799346,-0.3405302567407489,-0.0026194946840405464,-0.5927647151984274,-0.7194234458729625,0.10209639417007565,0.8315445547923446,0.7132065612822771,0.42411898309364915,0.3925245311111212,0.8005615547299385,0.2511967187747359,0.11416463693603873,-0.5574038419872522,-0.6976691079325974,0.27266691951081157,0.6578422049060464,0.3614465002901852,0.39687783271074295,0.15335771860554814,0.027053183875977993,-0.3140833512879908,-0.14183352841064334,0.2874326203018427,0.10374733665958047,0.9627873678691685,0.010186851490288973,0.31199155235663056,0.34808800648897886,0.052697302773594856,0.35247643757611513,0.9310658252798021,-0.45120851090177894,0.8120184885337949,0.8158532315865159,0.8277220879681408,0.2373449238948524,-0.507259895093739,0.4947203425690532,-0.1987685775384307,0.4376889616250992,0.18389749806374311,-0.7054697670973837,-0.561301376670599,-0.07566254399716854,-0.9839412705041468,-0.9862067434005439,0.03427856648340821,0.2235993598587811,-0.7722473200410604,-0.08571429271250963,-0.7601827676407993,-0.5837140781804919,-0.10767824063077569,-0.36659538047388196,0.9131115069612861,0.3814818914979696,0.8791316743008792,-0.24248104728758335,0.27332614036276937,0.137667634524405,-0.9104155525565147,0.9046203922480345,0.31570795085281134,-0.19509896403178573,-0.27310161013156176,-0.7521209511905909,-0.11564947757869959,0.11418484849855304,0.5712326993234456,-0.8056812286376953,-0.9572835667058825,0.15850832406431437,0.4886842700652778,0.22302858578041196,-0.7525900425389409,0.8126456518657506,0.36884085880592465,0.9497727053239942,0.6791265816427767,0.8528455798514187,0.9153667199425399,-0.15402220841497183,0.3753507826477289,0.24854541942477226,-0.986904026940465,0.13406867580488324,-0.7365268901921809,0.1390624246560037,-0.9402073696255684,0.06809097342193127,0.6168212816119194,-0.6370049039833248,0.5922132981941104,-0.9601477459073067,0.5077577624469995,-0.5931357778608799,0.16853814013302326,0.25623190496116877,-0.9887593011371791,0.3760040896013379,-0.21571249468252063,-0.6270229434594512,0.9126372211612761,-0.5084701948799193,0.6291242064908147,-0.5190195310860872,0.4744205605238676,0.762679064180702,0.955875032581389,-0.43006798159331083,0.9739680984057486,0.4309775088913739,-0.7516407170332968,-0.4663393124938011,-0.42765853833407164,-0.50074696354568,-0.7047638306394219,0.10108689730986953,0.7482520225457847,-0.1091229384765029,-0.6905399006791413,0.8702071360312402,-0.03293767012655735,0.44855251582339406,0.22258053347468376,0.3491437532939017,0.07154747238382697,0.10433390364050865,0.3783337497152388,0.39911885280162096,-0.4903159383684397,-0.5811800113879144,-0.07020697928965092,-0.86516028130427,-0.6767724258825183,0.26322425063699484,-0.10078870505094528,0.1090106857009232,-0.07418766617774963,-0.9614138281904161,-0.2760159424506128,-0.38209345983341336,0.7127253520302474,-0.7130176252685487,0.8541022343561053,-0.7340179951861501,0.30278602754697204,-0.5549946990795434,-0.14710013009607792,0.3919818033464253,0.6025970322079957,0.5534129412844777,-0.8768139299936593,-0.8831156832166016,-0.6902619865722954,-0.694141617976129,0.453658914193511,0.20827692793682218,0.11338724009692669,-0.1853501400910318,-0.5082277143374085,0.04051442118361592,-0.7570451027713716,0.16271264757961035,-0.4363486231304705,-0.5184782110154629,-0.9746489929966629,0.4225553646683693,-0.48458991618826985,-0.10830556694418192,0.3932520551607013,-0.47597764525562525,-0.8629438946954906,-0.2095614387653768,-0.7996502104215324,-0.49421967566013336,-0.6847050455398858,-0.5157913845032454,0.9280992615967989,0.5003035184927285,-0.540095591917634,-0.08758148085325956,-0.7063494292087853,-0.7252131858840585,0.2368515101261437,-0.6339970398694277,0.40513303643092513,0.6790002258494496,-0.027853716630488634,0.04517458798363805,0.0754601052030921,-0.7485484932549298,-0.07343251723796129,0.10321675939485431,0.32980156131088734,0.015510298777371645,0.8034512712620199,0.48610902251675725,-0.834751199465245,-0.7710043736733496,0.7392110344953835,0.8451995435170829,0.07576747005805373,-0.1397152072750032,0.30814399337396026,-0.23415948310866952,0.45656306156888604,-0.6260256553068757,0.8746709735132754,-0.4230297915637493,-0.3653726992197335,-0.6901055960915983,-0.668334421236068,-0.29469928052276373,-0.7962216781452298,0.11087430315092206,0.23132094275206327,0.34198543708771467,0.3122916864231229,0.6571209426037967,0.7745082671754062,-0.3218202767893672,-0.6617990834638476,0.9666988863609731,0.7316429591737688,-0.1541979811154306,0.6493617719970644,0.9505481873638928,0.7830722643993795,-0.42293125530704856,0.8495500744320452,0.7180567113682628,0.9214759832248092,0.21603909553959966,-0.330557759385556,-0.3568468149751425,-0.2677895347587764,0.020259371027350426,-0.11542981397360563,0.8027167338877916,0.2645855536684394,-0.43925160728394985,0.8202898427844048,-0.35515323374420404,0.9577552010305226,-0.01945403218269348,0.08995850523933768,0.08477087086066604,-0.4098880239762366,0.6295985565520823,-0.5372477327473462,0.7315976032987237,0.6736347516998649,0.49577904026955366,0.8748777220025659,0.07322858786210418,0.5689957742579281,-0.7497131456620991,0.565017587505281,-0.7986837322823703,0.460498524364084,0.7438261318020523,0.15835148468613625,-0.2860555788502097,-0.2127418895252049,-0.9265176155604422,0.7248511146754026,-0.9921122505329549,0.09733858611434698,-0.8958520856685936,0.3362897210754454,-0.9228898379951715,0.491844380274415,-0.686902211047709,-0.44254249008372426,0.13985367817804217,-0.7847526874393225,-0.04244997398927808,-0.6155975847505033,-0.5081007080152631,0.8648581174202263,0.3041618224233389,0.240808152128011,0.32034790655598044,0.05920564429834485,0.8413234511390328,-0.36923410277813673,0.686598211992532,-0.1511535500176251,-0.11668625893071294,0.3461901815608144,0.16957562789320946,-0.5363709018565714,0.29083269042894244,-0.5156803787685931,0.5335401738993824,-0.9488634457811713,0.8320843144319952,0.4244880429469049,-0.10080762207508087,0.966925089713186,-0.9429362476803362,0.0001715710386633873,0.15055924514308572,-0.6842958019115031,0.575335334520787,0.9781307997182012,-0.8348015788942575,-0.14101443206891418,0.6950214998796582,-0.7804697849787772,-0.9414553008973598,-0.345970893278718,-0.9806362735107541,-0.5462004640139639,0.2615218120627105,0.6372274332679808,0.6827110797166824,-0.47778496937826276,-0.4571921951137483,-0.6981883537955582,0.9508035932667553,-0.19285654462873936,-0.8410624302923679,-0.9321669153869152,-0.6560164545662701,0.8659103321842849,-0.6027198489755392,-0.6066474616527557,-0.7426544968038797,-0.9998513432219625,-0.10542121715843678,0.8666265634819865,0.0672394740395248,0.8832762585952878,0.3335959757678211,0.28343525249511003,-0.8392966100946069,0.47055199136957526,0.22247909614816308,0.8034300780855119,-0.01702769985422492,0.17042361432686448,0.01599333668127656,0.2737175994552672,-0.3460530419833958,-0.11624059826135635,-0.8904657079838216,0.7532636248506606,0.23474292736500502,-0.666165383066982,-0.2853495650924742,-0.418054879643023,-0.6435269885696471,0.6106148748658597,0.5001689018681645,-0.9637653329409659,-0.8272292846813798,-0.3461348572745919,-0.9152345596812665,0.36378391459584236,0.7079070750623941,-0.984060316812247,-0.12435329286381602,-0.3786244932562113,0.6895040841773152,-0.8411143030971289,-0.22068416932597756,-0.6812630188651383,0.5849472703412175,-0.06168439565226436,0.8877635388635099,0.9774488881230354,-0.7722266260534525,-0.1601950884796679,-0.6789320008829236,-0.8896669787354767,0.7722969208844006,0.49772273981943727,-0.38403638172894716,0.30490295263007283,0.6779871759936213,-0.77371755708009,-0.060324829537421465,0.05667279474437237,-0.912981721572578,0.42285622702911496,-0.7684997767210007,0.6630046530626714,-0.7725604274310172,0.2018303070217371,0.22337354626506567,0.8361332733184099,-0.31157487630844116,-0.00771512184292078,0.6279601654969156,0.1300782118923962,0.7233533109538257,0.18828636687248945,-0.9723514383658767,0.3683233563788235,0.038354262709617615,-0.6242151758633554,0.9759403886273503,-0.07028942462056875,0.35862127877771854,-0.11742289224639535,-0.2628837791271508,-0.9070066590793431,0.44818323152139783,-0.7779300417751074,0.06942290579900146,-0.5548309357836843,-0.349177289288491,-0.16631330689415336,0.28562187822535634,-0.9545849259011447,0.6922354707494378,0.7811067434959114,-0.055563758593052626,-0.7284278445877135,0.9462692691013217,-0.294004465918988,0.24245685618370771,-0.18920735083520412,0.8285728222690523,-0.09897959278896451,0.9370105359703302,0.13103131437674165,0.24955030297860503,-0.6831838944926858,0.061381873209029436,0.2779046702198684,0.564686463214457,-0.31081292079761624,-0.5068742050789297,-0.7004534173756838,-0.9609614918008447,0.3928084294311702,-0.046156772412359715,0.9868612536229193,0.18456178670749068,-0.868511569686234,-0.7368381647393107,-0.4165537292137742,0.9823240670375526,0.6114155501127243,-0.9035677975043654,-0.21701768320053816,0.31379094580188394,-0.5365099161863327,-0.37412912864238024,0.49015847966074944,0.9144127978943288,0.9507891982793808,-0.49635776225477457,-0.4845796409063041,0.5873029641807079,0.13079887116327882,-0.3646050472743809,0.765033739618957,-0.23896142514422536,0.49362046271562576,0.14507445693016052,0.5283487145788968,-0.24371456634253263,0.15407881140708923,-0.6989006940275431,-0.20759230479598045,-0.44943408947438,0.9171957448124886,-0.43055583722889423,-0.10646086698397994,0.8908636183477938,0.5654746666550636,0.5836099018342793,-0.9493257896974683,0.688638920430094,0.13031813083216548,-0.6129966238513589,0.49384059151634574,-0.46853801188990474,0.9646864547394216,0.30019210604950786,-0.2215970796532929,0.1995456274598837,-0.5437298766337335,0.8031654236838222,-0.935773694422096,0.8515984402038157,-0.5812302404083312,-0.12696519028395414,0.7885832590982318,0.6897335778921843,0.48417971935123205,-0.8283844124525785,0.275324959307909,-0.9569293148815632,-0.10455934191122651,0.6242113704793155,0.7581886011175811,-0.17544136149808764,-0.9421006496995687,-0.09143651789054275,-0.5567888375371695,-0.6656291093677282,-0.12353217275813222,0.9874221556819975,-0.5195569158531725,0.37085111625492573,0.07380083529278636,0.24269010918214917,-0.2518947231583297,-0.1372317187488079,-0.7096635135821998,0.8828729027882218,0.47468677861616015,0.24435951840132475,-0.9312473009340465,-0.32972661359235644,-0.6442712969146669,-0.4222273649647832,0.886119204107672,-0.26025335025042295,0.8404639577493072,0.9064726703800261,0.26263146148994565,-0.16133336443454027,0.45750684244558215,-0.8617987264879048,0.6022252077236772,-0.38206038624048233,0.6429874710738659,-0.3082149578258395,-0.04510755930095911,-0.24002374103292823,-0.9219588660635054,0.7331281709484756,-0.6640572776086628,0.14022772060707211,-0.9091313877142966,-0.2673061075620353,0.4880511360242963,-0.5188641077838838,-0.2979232002981007,-0.6815306162461638,-0.18084875959903002,0.5969815026037395,-0.434908545576036,-0.5501429135911167,-0.5003588236868382,-0.8184235766530037,0.16195713076740503,0.06110858265310526,0.8425157805904746,-0.008510164450854063,0.39904044615104795,0.2886075940914452,0.6365640154108405,0.08187733544036746,-0.7185362880118191,-0.7256630659103394,0.7390248710289598,-0.7317211218178272,-0.022685681004077196,-0.6052543371915817,-0.0773250162601471,0.9807833046652377,-0.8418509839102626,0.39929274609312415,0.11233832454308867,-0.9357312330976129,0.05441563483327627,0.844382350333035,0.9006918426603079,-0.30446563055738807,0.23179530911147594,-0.3658788064494729,-0.40955989388749003,-0.6269151140004396,-0.7779135494492948,-0.8458244083449244,0.6923227412626147,-0.4448517393320799,-0.8896418828517199,0.07234068820253015,-0.1709144520573318,-0.9456750424578786,-0.4215916348621249,0.31508334539830685,-0.556250243447721,0.6915092947892845,0.38088133512064815,0.2371730306185782,-0.5497977547347546,0.6795584787614644,-0.05634525651112199,0.035724321380257607,0.8543553906492889,0.633546850644052,-0.49937961157411337,0.909332178067416,0.8382213530130684,0.38927331613376737,-0.8011418273672462,0.023227024357765913,0.8216468971222639,0.6913311569951475,-0.674800424836576,0.3048923765309155,0.8776546996086836,0.5299081425182521,-0.6219813688658178,0.3428626633249223,-0.5276249991729856,-0.8938094642944634,0.25581513438373804,0.3253397522494197,0.0873671043664217,-0.9316716776229441,0.13963095284998417,0.6918016439303756,0.3964403746649623,-0.18577685300260782,0.1948340954259038,-0.13038204004988074,-0.3355379761196673,-0.8774912003427744,0.10224857833236456,0.7034251815639436,-0.5162582825869322,-0.802324874792248,0.13906146539375186,0.6672132550738752,-0.3018099023029208,0.3672257997095585,-0.21117540774866939,-0.11119957314804196,0.0083653898909688,-0.8554355958476663,-0.47181781427934766,0.14356890972703695,-0.33982078172266483,-0.721110746730119,0.7024654736742377,0.20065534161403775,-0.40139496326446533,-0.3312623933888972,0.34710206976160407,0.24587152479216456,0.545168295968324,0.7776649999432266,-0.7005215119570494,0.1473290747962892,0.986245661508292,-0.044390212278813124,0.9795624921098351,0.7352965078316629,-0.7864161976613104,0.36335558956488967,-0.26680445205420256,-0.9795284476131201,0.9091297686100006,-0.3606874980032444,-0.47404088312759995,0.2713811341673136,-0.1863248054869473,-0.5681357723660767,-0.5706305741332471,-0.8312837830744684,-0.5031067449599504,0.2660463145002723,-0.8528453377075493,-0.7234700219705701,-0.894309620372951,0.852922625374049,-0.6653415472246706,-0.09261617017909884,0.24574265722185373,-0.8638735190033913,-0.5195363373495638,-0.14864117745310068,-0.8480602186173201,0.5608975379727781,0.5353002604097128,0.7179707153700292,0.047231345903128386,0.6071386765688658,-0.8822382413782179,-0.3138155210763216,-0.22348472056910396,0.7654258995316923,-0.08237589290365577,-0.3308496791869402,0.8610118976794183,0.15463380189612508,0.8751605465076864,0.2347887810319662,0.48609716398641467,0.0719703366048634,0.5265621142461896,0.5224499693140388,0.2993047656491399,-0.9443995486944914,-0.3404315644875169,-0.9317517024464905,-0.47905996115878224,0.8310059099458158,-0.1693815807811916,-0.11574469041079283,-0.5680013215169311,-0.34632554836571217,-0.013715398963540792,0.016383486799895763,-0.8251771493814886,0.846294364426285,-0.1288262289017439,-0.9073297623544931,-0.8471861775033176,0.7944015609100461,0.7325582881458104,0.20893963053822517,-0.7359318099915981,-0.08069026982411742,-0.7516799331642687,-0.06163162086158991,-0.4702563816681504,-0.009483664762228727,0.49791574524715543,-0.742805955465883,0.34951899247244,-0.7173943039961159,0.8351951162330806,0.9437840739265084,0.09838849911466241,0.8486629100516438,0.40901343896985054,0.10685424646362662,0.319328875746578,0.8583154836669564,-0.5208443333394825,-0.025154692586511374,-0.1873837523162365,-0.9757508826442063,0.7796015678904951,0.39354371605440974,-0.34947942988947034,-0.8116014832630754,-0.8429658371023834,-0.2943240557797253,0.18057692144066095,0.4983206009492278,-0.5733345374464989,0.2617070274427533,0.7802391187287867,-0.8989811227656901,0.7918966263532639,-0.394015459343791,-0.3467935430817306,-0.9931234926916659,0.17856146581470966,0.7522206217981875,0.4435758884064853,-0.9529164466075599,-0.7863944093696773,0.11182933626696467,0.0009434823878109455,-0.6334138559177518,0.1295712124556303,-0.971753662917763,-0.585588310379535,-0.5183760849758983,-0.030800378881394863,-0.6736066755838692,-0.803979653865099,-0.029056856408715248,-0.8573635490611196,-0.9366782796569169,0.15429108263924718,0.12060900591313839,-0.3729757755063474,-0.9335848991759121,-0.5777899953536689,0.07902525458484888,-0.2687494638375938,-0.8349947719834745,0.9566422961652279,-0.0217132274992764,0.027489518746733665,-0.1123285717330873,0.45820110850036144,-0.6477537066675723,0.990145368501544,-0.7439187793061137,0.5214863191358745,0.5847128671593964,-0.061521264258772135,0.014062399975955486,0.07080348674207926,-0.3756593018770218,0.4561890331096947,-0.21589748421683908,-0.23892748774960637,-0.22150503564625978,-0.27077800314873457,-0.6454142830334604,0.13580045383423567,-0.20023578684777021,0.6312712859362364,-0.8001396642066538,-0.6376767796464264,0.7666907892562449,-0.7547330884262919,-0.2843637280166149,-0.6601124443113804,0.8283554818481207,0.33297458896413445,-0.3446248439140618,0.6965668331831694,0.8514778632670641,0.7276598438620567,-0.7585570979863405,0.1204442074522376,-0.6946771633811295,-0.2143434206955135,0.9161983113735914,0.3166649863123894,-0.5407448695041239,0.6801358442753553,0.6410109596326947,0.20618809154257178,0.29810176929458976,0.6812274856492877,-0.926624427549541,-0.9602749962359667,-0.7151176068000495,0.5445145550183952,0.7065135082229972,-0.5038773012347519,-0.1939120185561478,0.4714333531446755,0.9472634075209498,-0.9094211626797915,0.24692108016461134,0.6015991917811334,0.7206849483773112,-0.12172575248405337,-0.33480575820431113,-0.8201289582066238,0.25028104009106755,-0.5350991520099342,0.13830829225480556,0.06469093170017004,-0.8576161037199199,-0.9595741936936975,-0.89102239953354,-0.7666379571892321,-0.24930098420009017,-0.6204672167077661,-0.2487171357497573,0.0015146518126130104,0.9632142712362111,-0.6237699026241899,0.3977615390904248,0.5764501770026982,0.38546119444072247,0.45022093411535025,0.77130565373227,0.4560887208208442,0.30995405931025743,0.33531758235767484,0.9357931334525347,0.6620864700525999,0.33234318159520626,0.2364638252183795,0.9140571095049381,0.6378527064807713,0.35802927194163203,-0.7501938636414707,0.6000238042324781,-0.8336252816952765,0.07107922341674566,0.0968608045950532,-0.7027171421796083,0.8114944705739617,-0.3342297291383147,0.8348552118986845,-0.43723458889871836,-0.07388848438858986,-0.04405489284545183,0.08534052176401019,-0.06612502643838525,-0.08806829480454326,0.5682534500956535,0.6664362624287605,0.9297133670188487,-0.4092559590935707,-0.44444253481924534,-0.5270971269346774,0.2663461514748633,-0.9948327448219061,0.7812794987112284,0.14752905583009124,0.7010666974820197,-0.05576763954013586,0.41690403735265136,0.5181386559270322,0.008540356531739235,-0.13242175243794918,0.8408943596296012,-0.02419313509017229,0.09199889423325658,0.4982697172090411,-0.6997134750708938,-0.8264243160374463,-0.1395103931427002,0.35640192218124866,0.6652728929184377,0.940018318593502,-0.8237399603240192,0.26759190391749144,-0.13462271075695753,0.3447133591398597,-0.5391202345490456,-0.0907167149707675,-0.044266944751143456,-0.6134537160396576,-0.6438159202225506,0.4976126104593277,0.8909321548417211,0.47322380682453513,-0.5990351964719594,0.5645520314574242,0.2430384703911841,-0.69720647810027,-0.0170551766641438,0.009159206878393888,-0.7459048791788518,-0.7874393500387669,-0.6676734280772507,0.47808291763067245,0.216489274520427,-0.10914642503485084,-0.8289044690318406,0.6264826767146587,-0.4524159892462194,0.6075769057497382,0.03990085143595934,0.11320961453020573,-0.08680780371651053,-0.1958002084866166,-0.19519070722162724,0.29110744362697005,-0.8195372470654547,0.2795245652087033,0.4379310510121286,-0.229568294249475,-0.9580830680206418,-0.021725744009017944,-0.75112443882972,-0.39971409924328327,-0.9917882978916168,-0.7707833899185061,-0.9533500038087368,-0.04547928599640727,0.07606938015669584,-0.9417036324739456,0.7122537321411073,0.11031602928414941,-0.5180497490800917,0.7585523081943393,0.2188309789635241,-0.5607830756343901,-0.8866444402374327,-0.37854859279468656,0.833017164375633,0.4024018058553338,0.6530709150247276,0.19553862372413278,0.9709311001934111,0.6959059829823673,0.836525300052017,0.679562752135098,-0.6108608492650092,-0.9731297702528536,-0.9342828132212162,0.41751148691400886,-0.6606764364987612,0.7142596784979105,0.05252903560176492,0.9296651482582092,-0.7121198466047645,0.2382214036770165,0.10122149903327227,-0.8842002809979022,0.28752681566402316,-0.9850918729789555,0.3023333544842899,-0.6318775010295212,0.5445669558830559,0.41516828909516335,0.05444450955837965,0.5163763677701354,0.3750161654315889,0.5741450944915414,0.8903560936450958,-0.3167638969607651,0.35597235802561045,-0.674000967759639,-0.866083072964102,0.3647586735896766,0.03708178969100118,0.27308276016265154,0.7051099687814713,-0.3127079145051539,0.7082411875016987,-0.9830204760655761,0.004696404095739126,-0.4355254410766065,0.043373214080929756,0.05354597978293896,-0.897468498442322,0.9806551821529865,-0.17634003376588225,0.46376002579927444,0.9254275821149349,0.32913855090737343,-0.6238599289208651,-0.44635081896558404,0.027097695507109165,0.5701578436419368,0.18313319981098175,0.4731194623745978,0.5241905422881246,0.5656921658664942,0.30997383687645197,0.06430754391476512,-0.7891043433919549,-0.7987923533655703,0.5489283939823508,0.7568368460051715,0.516166812274605,-0.8419475522823632,0.9553866796195507,-0.1929084314033389,0.524195528589189,-0.8205793616361916,0.802651182282716,-0.033805664628744125,-0.44186837086454034,-0.2288741860538721,0.8195107015781105,0.8355935453437269,0.7688498580828309,0.6479012435302138,0.06439843261614442,0.15496567590162158,-0.19686635816469789,0.08848349144682288,-0.3412675173021853,-0.9328377908095717,-0.34767465898767114,-0.11122587416321039,0.000529241282492876,-0.8540930417366326,-0.823802596423775,0.16721734357997775,0.29896918311715126,0.3805250898003578,-0.21377695444971323,0.09509095596149564,0.7435754952020943,0.8935018507763743,-0.008999027777463198,-0.10572884324938059,-0.8110451893880963,-0.21835619304329157,-0.4946754942648113,0.3621777235530317,0.959967621602118,0.9556898642331362,-0.8442696826532483,-0.28228309471160173,-0.22094755480065942,-0.3882571109570563,0.38181654550135136,0.655181746929884,0.023402332328259945,-0.09288880042731762,-0.9935390390455723,0.003080325201153755,-0.8929103473201394,0.9207207676954567,-0.44891160214319825,0.7948064943775535,0.6991740856319666,0.4249196322634816,0.13268635841086507,-0.10832728771492839,-0.2164171109907329,0.549826676491648,-0.07222534995526075,0.781448828522116,0.7096953326836228,0.9875432457774878,0.2744419388473034,0.11393570294603705,0.7991771274246275,0.6711736000142992,-0.2122723418287933,0.10312703344970942,-0.0394445420242846,0.1623070389032364,0.7266341205686331,-0.44426149036735296,0.9497998701408505,-0.9447974562644958,0.8946186103858054,-0.47047628881409764,0.06631698971614242,-0.5743407001718879,-0.34607388637959957,-0.49942609667778015,0.3602377441711724,-0.8889976437203586,0.028795070480555296,0.22147542424499989,-0.806242345366627,-0.3255103016272187,0.49883132288232446,0.6731144236400723,-0.6114112534560263,-0.1263993144966662,-0.8193876035511494,-0.4876077468506992,0.6886632042005658,0.4051776290871203,-0.14308496518060565,0.8603921136818826,-0.6999899316579103,-0.3238465450704098,-0.26685211388394237,0.7155657424591482,0.3645139969885349,0.6729769301600754,0.14790874859318137,-0.19811155274510384,0.7092424663715065,-0.9304915950633585,0.07925595389679074,0.7003506585024297,-0.12810106435790658,0.29350527143105865,0.8276493060402572,0.6692203874699771,0.5694484696723521,0.578212056774646,0.3680174355395138,0.37555707851424813,0.37724177865311503,-0.3815344497561455,0.577212565112859,-0.5159896737895906,-0.008345919195562601,0.4534951956011355,0.3257994265295565,0.027136823628097773,0.5712652071379125,0.5092416969127953,0.39156657410785556,-0.6102724750526249,-0.4294993281364441,-0.768032340798527,0.22411910584196448,-0.7702875793911517,0.5119652380235493,0.07045033620670438,-0.6929924776777625,0.9147033207118511,0.7802283619530499,-0.6265834285877645,-0.5327454819343984,-0.26399561669677496,0.06752649275586009,0.3645515381358564,0.40552197583019733,0.039892300963401794,-0.18781368294730783,-0.04905071249231696,-0.4263478689827025,0.754747879691422,0.9870714764110744,0.3339921161532402,0.7299784398637712,0.8485004105605185,-0.4223036761395633,-0.7472785729914904,0.9255760093219578,-0.45473989145830274,0.4150922833941877,0.6659912653267384,0.8808363983407617,0.6119479415938258,0.7642705915495753,-0.798868902027607,-0.2463787840679288,0.9413767280057073,-0.22305091610178351,0.7105765780434012,-0.9026417415589094,-0.20821761712431908,0.2570389863103628,0.9542789491824806,-0.8160255751572549,-0.9296253663487732,0.19627039786428213,0.9036153382621706,-0.9511696444824338,-0.6988121103495359,-0.5356296976096928,0.647635763976723,0.8656611824408174,-0.8282445855438709,0.2995830629952252,0.7982683349400759,0.3685738779604435,-0.3075782316736877,-0.4892373522743583,-0.7932555433362722,-0.6259284568950534,-0.11274279002100229,-0.26956946682184935,0.5908402423374355,0.4480046099051833,-0.930848038289696,-0.13723383657634258,-0.18175938352942467,0.22560370806604624,0.10899609886109829,0.7179180788807571,-0.814621833153069,0.5825572442263365,-0.8045002585276961,-0.5985159538686275,0.23055987106636167,0.020926400553435087,-0.12028116686269641,0.3511752588674426,0.9569777394644916,-0.3626842605881393,-0.20190782938152552,-0.02467762865126133,0.13304547825828195,-0.4451132705435157,-0.33351158862933517,0.6443221694789827,0.734567585401237,-0.6542959492653608,0.2988613871857524,0.07168543385341763,0.42243964271619916,-0.10893740179017186,0.6668635103851557,-0.0893917246721685,-0.0320056420750916,-0.9272819082252681,0.4966119443997741,0.848904091399163,0.6995398974977434,0.8919451921246946,0.6204409059137106,0.4556980771012604,-0.09494557464495301,0.8134202472865582,-0.8434588159434497,0.5843047639355063,0.8053488018922508,0.7654903312213719,-0.09234255785122514,0.8710441347211599,-0.12341786082834005,0.6490817978046834,-0.725354190915823,-0.7130981297232211,-0.1250766017474234,-0.37281407602131367,-0.9381669890135527,0.9579630200751126,0.6934483614750206,-0.38577811094000936,0.09966467833146453,0.3992641819640994,0.5324202682822943,-0.9244972700253129,0.2679424397647381,-0.2989527154713869,0.2975886850617826,-0.9557141149416566,0.004089463036507368,0.3720732661895454,0.32923323661088943,-0.09832285530865192,0.8677699277177453,-0.23813773086294532,0.10142333013936877,-0.7048734817653894,0.94698740914464,-0.2674305639229715,-0.0961976945400238,-0.864938079379499,0.33787720231339335,-0.4915970731526613,0.9943632637150586,-0.10254128370434046,0.054280856624245644,0.22911812085658312,-0.06002676533535123,0.8094809772446752,-0.7178550213575363,0.2858470557257533,0.7764973398298025,0.8026572475209832,0.3763162288814783,-0.9233007957227528,-0.5585344396531582,0.09414324443787336,0.4353961697779596,-0.3921121549792588,0.4385668486356735,-0.15528593584895134,-0.971614945679903,0.4907461730763316,-0.9525253660976887,0.22944303369149566,0.36360868718475103,-0.5180101180449128,0.0791581217199564,-0.5751203065738082,0.25722939195111394,0.018960250075906515,-0.41473048785701394,0.947700709104538,-0.4447022043168545,0.34170238580554724,-0.5197705025784671,-0.1421738499775529,0.8072356851771474,0.1643092418089509,0.7049402249976993,0.08712920686230063,0.007105917204171419,-0.7692579044960439,-0.3083104849793017,0.6306024775840342,-0.5141574093140662,0.1424622437916696,-0.4251665072515607,-0.7673716256394982,-0.6248436677269638,-0.9243592689745128,0.6972404983825982,-0.9840693473815918,-0.4555144598707557,0.28872788790613413,-0.6300699631683528,0.9343608864583075,0.33793342811986804,-0.3302263296209276,-0.9930343930609524,-0.9196011247113347,-0.6626685503870249,-0.9749964349903166,-0.13208262296393514,0.1059969887137413,-0.6236715014092624,-0.5784258302301168,-0.3894914286211133,0.8496703235432506,-0.10449732560664415,-0.46639592945575714,0.20520353922620416,-0.7545901285484433,-0.6233989130705595,-0.15632191253826022,-0.22674984484910965,0.13469225401058793,0.6964254979975522,0.9307519537396729,0.46467851707711816,-0.3457238539122045,-0.8614870170131326,0.19575626123696566,0.20271851122379303,0.6803295193240047,-0.5834759711287916,-0.9373687040060759,-0.9637321010231972,0.43241021828725934,0.7284926143474877,-0.20478078396990895,-0.2038525054231286,-0.805538740940392,-0.9497024812735617,0.7040196959860623,-0.22866086289286613,0.7465400230139494,-0.648771143052727,-0.11877720011398196,0.6646699476987123,0.8985002152621746,-0.5586672909557819,-0.29631368862465024,0.8878167420625687,0.4184119077399373,-0.8747200327925384,0.9946837788447738,-0.5058563644997776,0.9714528829790652,0.2160209254361689,-0.007210749201476574,0.3941258587874472,0.8154404661618173,-0.11215705145150423,-0.4039126979187131,0.8308608033694327,-0.5697334143333137,-0.3017368456348777,-0.5898679890669882,-0.309650806710124,0.001875685527920723,-0.7189548965543509,-0.9984673191793263,0.22163388691842556,0.1981983222067356,-0.3201256007887423,-0.032634792383760214,0.5663817464374006,0.8871492762118578,0.18663216941058636,0.01457265391945839,0.8130425801500678,0.4797189887613058,0.26037346152588725,-0.38955459278076887,0.5767821129411459,0.45744840521365404,-0.7201424078084528,-0.15063739055767655,-0.2576785907149315,-0.5311416531912982,0.11338270036503673,0.9070634362287819,-0.9623514716513455,0.23954350221902132,0.9447868540883064,-0.6774154272861779,0.152399814222008,0.22176691936329007,-0.6447938932105899,-0.6323870923370123,0.261238852981478,-0.597286868840456,0.8314786702394485,0.4396742624230683,-0.7040249845013022,0.18306161649525166,0.65524334134534,0.7835259740240872,-0.2128831436857581,-0.25921188946813345,0.43222337309271097,0.534759683534503,-0.8463218854740262,-0.5703583718277514,0.7927452838048339,-0.15958274761214852,-0.10078189987689257,-0.22702705301344395,-0.16803992772474885,0.6354464394971728,0.9221673225983977,-0.9339998145587742,0.04325014166533947,0.3893204918131232,-0.0657039019279182,0.6380916573107243,-0.45021997252479196,0.7400950621813536,-0.18815015023574233,-0.23890232993289828,-0.5839924826286733,-0.44587467703968287,0.9891641610302031,0.7595030595548451,-0.9771394273266196,-0.8306091446429491,-0.39208419900387526,0.775113174226135,-0.6007600030861795,-0.9171118466183543,0.4533081687986851,0.548877069260925,-0.14481959026306868,-0.04408120410516858,0.9082788992673159,-0.9934429945424199,0.6482117013074458,0.3245217720977962,0.4324146118015051,-0.7684691604226828,-0.4357673414051533,0.606590268202126,0.13012854289263487,0.5538149108178914,-0.37237227242439985,0.499927447643131,0.7746838959865272,0.48029015213251114,0.5762488627806306,0.44049049681052566,-0.6626969487406313,-0.7066868105903268,-0.9370421399362385,-0.013007332105189562,0.591994980815798,-0.8126200512051582,-0.6978649981319904,-0.09972122497856617,-0.38910720171406865,-0.8155048475600779,0.9731269269250333,0.37077509285882115,0.17472420912235975,-0.7599729308858514,0.21369940461590886,-0.09654976660385728,0.09889686247333884,-0.311435938347131,0.653286415617913,-0.834844502620399,0.11559889651834965,0.3235787972807884,-0.016340686473995447,-0.035395332146435976,-0.7572311186231673,0.6032389202155173,-0.7759711532853544,0.04876014403998852,-0.3520679255016148,0.5605796249583364,0.1725819963030517,-0.5488375602290034,-0.37397952703759074,-0.514117868617177,-0.6391063630580902,-0.037007668521255255,0.07674825843423605,0.906625117175281,-0.21109584299847484,-0.5615438735112548,0.41440414916723967,0.29487427417188883,0.9881614726036787,-0.4702784167602658,-0.6372110606171191,0.11500412784516811,-0.06261067278683186,0.5257158665917814,-0.5705509511753917,0.012799132149666548,-0.7748581478372216,-0.6043174173682928,-0.8985437978990376,-0.30687177553772926,-0.38800399331375957,0.6409868746995926,-0.9706051517277956,-0.5315875625237823,-0.5639853794127703,-0.6536238864064217,0.16466654418036342,-0.6512478059157729,0.5379073023796082,-0.17642190167680383,0.5401799692772329,-0.05629511084407568,0.8503512516617775,0.25723814591765404,0.983784003648907,-0.22680585319176316,0.28713192977011204,0.0410769572481513,0.5819582808762789,-0.20855743158608675,0.3058882746845484,-0.1744750626385212,-0.8289978434331715,0.6738442713394761,0.5672355014830828,0.6242472510784864,0.17372299311682582,-0.8627214790321887,0.9355621449649334,0.6496324734762311,-0.545963441953063,-0.6036777342669666,-0.6556741558015347,0.49683670699596405,-0.12889302661642432,0.03122072573751211,0.1419756980612874,0.3073778641410172,0.925422789528966,0.28628983860835433,-0.45449342811480165,0.8158648083917797,-0.49647519225254655,0.992315299808979,0.29461326729506254,0.5813102680258453,-0.8691190266981721,0.37647060491144657,0.41389426263049245,0.4361395509913564,0.39262231159955263,-0.45591473300009966,0.19118250580504537,0.160722769331187,0.8879790012724698,-0.5678645526058972,-0.9800464580766857,0.22133841970935464,0.6299248994328082,0.8004124541766942,-0.7079110047779977,-0.35021794494241476,-0.18137957248836756,0.7365440167486668,0.05716673517599702,0.2862290907651186,-0.722302746027708,-0.4780343766324222,-0.893198074772954,0.22565094847232103,0.3330957652069628,-0.9324913946911693,0.24425670132040977,0.24083627620711923,-0.0749490917660296,0.4484407673589885,-0.9844598616473377,-0.8744973097927868,0.2847472596913576,-0.7462542047724128,-0.7785090282559395,0.8696057838387787,0.7119774403981864,0.3062149793840945,-0.1913127456791699,0.3164845979772508,-0.8179380735382438,0.605113276746124,0.37305154744535685,-0.7803947571665049,0.23971908539533615,0.021880655083805323,-0.5854215729050338,0.7169995564036071,0.3397992472164333,-0.146628575399518,0.14092772966250777,-0.9926087791100144,-0.2850547945126891,0.5489847091957927,0.8059783107601106,-0.7299766223877668,0.5294135669246316,-0.4779353737831116,-0.3697055708616972,-0.07864360604435205,-0.5626493310555816,-0.550266339443624,-0.8969258638098836,-0.9615134550258517,-0.3368621254339814,-0.01798798982053995,-0.149274539668113,-0.245294779073447,0.40592531813308597,-0.14020928042009473,0.7678389777429402,-0.9207198992371559,0.968268824275583,0.4450655225664377,-0.22596717718988657,-0.4556440021842718,-0.6302727358415723,0.08886424219235778,0.3159153647720814,-0.740987170021981,-0.6171530657447875,-0.11696520168334246,0.4835627544671297,-0.7648060102947056,0.8848631307482719,0.15216344222426414,-0.8199014710262418,0.08073109434917569,-0.6223577908240259,-0.4751939964480698,-0.36081359442323446,0.04881110554561019,0.5413843202404678,0.7544850851409137,-0.7550641130656004,-0.6735786264762282,0.04525397112593055,-0.529212259221822,0.5850417339242995,0.6867907871492207,-0.7447831239551306,0.9700546148233116,0.667180126067251,0.9761092034168541,-0.16627928288653493,0.1933592609129846,0.48309014830738306,0.9919634377583861,-0.3033136432059109,0.7646593297831714,0.5052074533887208,0.7731720712035894,-0.4977151798084378,-0.7104641660116613,0.9712334871292114,-0.40067142713814974,0.6917490428313613,0.05809592502191663,-0.017474187072366476,0.5651384866796434,-0.5599929820746183,0.8724381695501506,-0.1184703428298235,-0.3825699673034251,0.8765027071349323,-0.2758031506091356,-0.0003703730180859566,-0.18609510734677315,-0.10756340622901917,-0.8512913808226585,-0.46278716856613755,-0.41680537909269333,-0.5844778390601277,0.1371356607414782,-0.5012721698731184,0.17106396378949285,-0.2359208888374269,-0.6646360415033996,0.8590043750591576,0.8420668076723814,-0.7873085709288716,0.48002126021310687,-0.1745103858411312,-0.8097721501253545,-0.5917894789017737,0.6076652039773762,0.951089050155133,-0.002628067974001169,0.6734728664159775,0.8644088478758931,-0.817332701291889,-0.7368806484155357,0.12341181887313724,0.8064192230813205,0.8713364223949611,-0.5635988623835146,0.7441062228754163,0.6744489092379808,-0.6220845356583595,-0.37993038818240166,0.12372872978448868,0.9328007032163441,-0.40329402312636375,-0.21148485457524657,0.009224975481629372,-0.8116403417661786,0.8549573021009564,-0.15351245319470763,0.8770742653869092,0.2927287560887635,0.3082234407775104,-0.8015089794062078,0.27256838604807854,0.5881835566833615,0.6746260365471244,0.5944821131415665,-0.4590945360250771,0.3545401291921735,-0.048454911913722754,0.6176200960762799,0.05301893875002861,0.4962387392297387,0.8889589128084481,0.8414840153418481,0.917248398065567,0.07603983161970973,0.9839269327931106,-0.39899709075689316,0.289487290661782,-0.6411220240406692,-0.7324340585619211,0.808555674739182,0.41718437103554606,-0.17354442831128836,-0.1691218800842762,0.7174191437661648,0.81497170496732,0.4203439340926707,-0.19246993213891983,0.2725154315121472,-0.0951262372545898,-0.9932247465476394,-0.7528152642771602,-0.8065981352701783,0.8021321017295122,0.30933147575706244,-0.12953040935099125,-0.8444150788709521,-0.43034062488004565,-0.14455325808376074,-0.5237295250408351,-0.18653623666614294,-0.8468390279449522,0.8137309988960624,-0.3539311131462455,-0.016232207417488098,0.49344194447621703,-0.738949226681143,0.6323204673826694,0.16387266712263227,0.6618595100007951,-0.3840407566167414,-0.3394951429218054,0.03973807813599706,-0.9029217520728707,-0.315865236800164,0.7554033873602748,-0.6199550372548401,-0.6955571696162224,0.7477969070896506,-0.13552986225113273,0.6279960637912154,0.6387424957938492,0.7282039765268564,-0.1102278409525752,0.4132647179067135,-0.6824291073717177,0.5754091385751963,0.5965029951184988,-0.563425921369344,-0.9176081493496895,-0.9824430481530726,-0.8132963110692799,-0.7700564218685031,0.7145039513707161,0.7382477824576199,0.7909511025063694,0.9213272789493203,-0.024458756670355797,0.5176043882966042,-0.6509225075133145,0.3361193626187742,-0.6454523121938109,0.33166951034218073,0.3291729064658284,-0.9896538108587265,-0.9868802824057639,0.8150656409561634,-0.6553019867278636,0.46980779245495796,0.09458910673856735,-0.7491435296833515,0.713157419115305,-0.2184769124723971,0.33637515269219875,-0.7905546529218554,0.48801500629633665,-0.7812720527872443,0.6444255313836038,0.8409540513530374,-0.5343947429209948,-0.1579987946897745,0.8194552883505821,-0.669446007348597,-0.5565692512318492,0.3336811629123986,-0.8902535019442439,0.555596980266273,0.7174842623062432,0.5961994188837707,-0.7242968189530075,0.3406584323383868,-0.24759885482490063,-0.6245290525257587,-0.046193800400942564,0.6712893731892109,-0.4611143674701452,0.3880342794582248,-0.32937470683827996,-0.16050700191408396,0.09523912379518151,-0.7282741046510637,0.07714588427916169,0.5697228075005114,0.16370998416095972,0.9189029564149678,0.10092368628829718,-0.6364561705850065,0.9125556731596589,-0.2633981597609818,0.050846122205257416,-0.23162807943299413,-0.9022193527780473,-0.6432201219722629,-0.16535062016919255,0.4899699194356799,0.0902490895241499,0.2558096470311284,-0.6396595342084765,0.3819682807661593,0.09461632603779435,0.5775350406765938,0.5009572627022862,0.8007257259450853,0.2820324031636119,-0.611278647556901,-0.7455624737776816,-0.3473574398085475,0.06625306326895952,0.41605093982070684,-0.750206770375371,-0.9836120307445526,0.937744356226176,-0.9409194844774902,0.4373783180490136,-0.3237928790040314,-0.4426590702496469,-0.29396777180954814,-0.12302898894995451,0.18291113153100014,-0.7599998521618545,-0.8555977595970035,-0.7112063686363399,0.05657096020877361,-0.26484209997579455,0.2574923038482666,-0.3720067013055086,-0.18747964967042208,0.24810198554769158,-0.5941909188404679,0.2608613707125187,-0.762969599571079,-0.4310566484928131,0.7289831740781665,0.4571813396178186,-0.5038314876146615,0.35228792298585176,-0.7314035356976092,0.2663303785957396,0.01116900984197855,-0.9169347663410008,-0.5842928253114223,-0.41693051951006055,0.994341722689569,0.46280213678255677,-0.7983337361365557,-0.7939325235784054,0.23486570129171014,-0.9054868598468602,-0.8008261620998383,-0.9141864506527781,-0.6050699586048722,-0.9048155983909965,-0.5687615978531539,0.8896593232639134,-0.9904720676131546,-0.03888867888599634,-0.6438244171440601,0.8721965826116502,-0.7473864355124533,-0.3631923836655915,-0.4815079034306109,0.8913676352240145,-0.19443983538076282,0.16909288009628654,0.42375672794878483,-0.2672899831086397,0.8641116530634463,-0.2724789762869477,-0.5849073631688952,-0.178948646876961,-0.5342182158492506,-0.827811976429075,-0.855395910795778,-0.9024512120522559,0.008083214052021503,0.4084289283491671,-0.07815617322921753,-0.5449815387837589,0.2613307638093829,-0.05796210188418627,-0.22446442628279328,-0.6482046223245561,0.8534979857504368,0.6420170087367296,-0.06024183938279748,0.030592949595302343,0.31839961372315884,0.38322283513844013,0.18879324570298195,-0.6008638935163617,0.5206812308169901,0.7974849217571318,-0.4060764512978494,0.5395939759910107,0.7861196412704885,0.11814428213983774,-0.2521859281696379,-0.03024783404543996,0.09897611429914832,0.7020886563695967,0.11784661142155528,-0.501709942240268,-0.8818682674318552,-0.9729578020051122,-0.6873655719682574,0.17597176739946008,-0.5080835362896323,0.22209086222574115,-0.06342979613691568,0.047376411966979504,0.2199557893909514,0.33895963057875633,0.6216205740347505,0.524837332777679,0.5707272221334279,0.24160957103595138,0.8411962389945984,0.6207748427987099,-0.5853717429563403,-0.9011259595863521,-0.06654794188216329,0.7224877811968327,0.06982485624030232,0.5774516402743757,-0.5750462124124169,-0.5710072973743081,-0.14340417506173253,0.7074798247776926,0.917360894382,-0.24427555408328772,0.7532927747815847,0.7825795817188919,0.6847052439115942,0.5809668637812138,-0.308558052405715,-0.0669908681884408,-0.7120625800453126,-0.5726837022230029,-0.5047176475636661,0.980499419849366,-0.11434624763205647,-0.8438120349310338,0.9890866274945438,0.49992937548086047,0.7672987971454859,-0.4319377951323986,0.6892639137804508,-0.037788201589137316,0.4927102504298091,-0.15230912994593382,-0.7264388636685908,-0.1951013021171093,-0.722675153054297,-0.4739730153232813,-0.38897862704470754,0.637210420332849,-0.3763301568105817,0.10421573277562857,-0.8952778689563274,-0.09092179220169783,0.9310658820904791,-0.45708447601646185,0.7253022752702236,-0.6188559178262949,0.11064564436674118,0.3659345037303865,-0.6769752041436732,-0.3749453881755471,0.19454413559287786,-0.7689031790941954,0.012170557398349047,-0.19521294068545103,0.5636437609791756,0.6836355654522777,-0.8268411038443446,0.5710219102911651,0.4735578172840178,-0.6815382773056626,0.04275741567835212,-0.7511761388741434,-0.682999802287668,-0.17906860122457147,-0.6783844032324851,-0.09956905525177717,0.31664472026750445,-0.6203832286410034,-0.6946610566228628,-0.6823287210427225,0.05448569217696786,0.6654681391082704,0.789126196410507,0.5686565153300762,0.5395451835356653,0.010542756877839565,0.05821276782080531,-0.0020765536464750767,-0.2397380694746971,-0.7958716335706413,0.31096894992515445,0.7021440053358674,-0.7433600360527635,-0.32263151137158275,0.603315812535584,0.617795379832387,0.2001415635459125,0.09974148590117693,0.8637619167566299,0.03224042383953929,0.3350102170370519,0.27789623429998755,0.2745297751389444,-0.39089659368619323,0.7284612776711583,0.10499794594943523,-0.2632381129078567,0.3131400905549526,-0.6542371674440801,-0.8461089334450662,-0.10537608480080962,0.9857293195091188,-0.1217064531520009,0.32752505876123905,-0.30521468352526426,-0.22448239801451564,-0.5532247363589704,0.11209088750183582,0.827143962495029,0.4933963711373508,0.4366668090224266,-0.9134655715897679,-0.5029762764461339,0.38611839758232236,-0.5741183515638113,0.734895228408277,0.10011024540290236,0.8437021598219872,0.7873057131655514,0.9328197464346886,0.1341440174728632,0.5020876503549516,-0.26580867217853665,0.9256049846298993,-0.6978283300995827,-0.48828857438638806,-0.6691172798164189,0.10293148225173354,-0.6216562259942293,0.9645516430027783,0.5606365608982742,-0.7107939925044775,-0.8924881583079696,0.717715673148632,0.5444401013664901,-0.1661654724739492,-0.46094030095264316,0.23517096741124988,-0.669228732585907,-0.45932821137830615,0.21862769965082407,-0.07317942893132567,0.13527718372642994,0.42919812398031354,-0.00029398035258054733,0.8018012656830251,-0.26392097072675824,0.5133488909341395,-0.9452843042090535,0.8155414932407439,0.15459583792835474,-0.5586133128963411,-0.633947279304266,-0.013175873085856438,-0.4250486665405333,0.405923580750823,-0.22730888659134507,0.39751370903104544,-0.2851521521806717,0.9953589630313218,0.9391440586186945,-0.2710958244279027,0.641509962733835,0.13757265452295542,0.5404927697964013,0.29607930639758706,0.09796236315742135,0.44247071258723736,0.46138036670163274,-0.1997570232488215,-0.08247742895036936,0.824444049037993,0.5499698123894632,-0.9621033254079521,0.9433085741475224,-0.4518196829594672,-0.9486057865433395,-0.8080006125383079,-0.8498415872454643,-0.7342390669509768,0.8951450157910585,-0.9951226585544646,0.35662941401824355,0.5689951414242387,-0.8806046494282782,-0.6239305101335049,0.1841487903147936,-0.3936949451453984,-0.12655016500502825,-0.9488124470226467,0.14755059778690338,0.9806956010870636,0.2822311082854867,-0.5454893154092133,0.3229931006208062,-0.8086678977124393,-0.6873731021769345,0.426642881706357,-0.4600514564663172,0.1146584739908576,0.877198722679168,0.4167436505667865,0.6094460063613951,-0.8677800437435508,-0.5317746703512967,0.10526162711903453,-0.5595436366274953,-0.5719028045423329,0.9428738337010145,0.3704008567146957,-0.8495619031600654,-0.3145527602173388,0.9964172695763409,-0.30976545345038176,-0.03942214325070381,-0.754423825070262,0.5070808585733175,-0.47607137029990554,0.3262519803829491,-0.15819896757602692,-0.6732007567770779,0.10213949903845787,-0.002888170536607504,-0.3910424718633294,0.3652759538963437,-0.4379183407872915,0.17390131391584873,0.14453769149258733,-0.9349865196272731,0.9380492339842021,0.5869365595281124,0.16557825589552522,0.6345191714353859,0.12501460639759898,0.6287123183719814,0.22616807324811816,-0.7223304328508675,0.2847692472860217,0.958996438421309,0.1983944522216916,-0.2900405917316675,0.5038166795857251,0.07264104718342423,-0.35984752560034394,0.9231749959290028,0.8487467947416008,0.32875264436006546,-0.5389630091376603,-0.4196753464639187,-0.8288434711284935,0.4389245971105993,-0.5952137974090874,-0.13090337021276355,-0.6710752798244357,0.7295582466758788,-0.06032997090369463,0.880099194124341,0.13355970475822687,0.7940232143737376,-0.3132770820520818,-0.10620773630216718,-0.5662385993637145,0.9461159077472985,0.2990817502140999,-0.5228065685369074,-0.0029481379315257072,0.7411433947272599,-0.22182514052838087,0.9560216488316655,0.9394140262156725,0.6016259561292827,-0.3328601038083434,-0.8121689488179982,0.6762625807896256,-0.17226390773430467,0.17694191355258226,0.6430471311323345,-0.4561386536806822,-0.9437126172706485,-0.15106920152902603,-0.6726982309482992,0.19993943814188242,0.5307621448300779,0.38730710092931986,0.8085165699012578,0.6826872695237398,-0.44607618683949113,0.44555333675816655,0.8484782376326621,-0.05917153414338827,-0.4815376144833863,-0.36880238307639956,-0.4595094760879874,0.2130274916999042,-0.854609252884984,0.9137898478657007,-0.5343169663101435,-0.026193709578365088,-0.09602383198216558,-0.7173119029030204,-0.24816508311778307,0.08706508157774806,-0.9750869390554726,-0.6253842609003186,0.7902220776304603,0.7964018173515797,-0.5239421701990068,0.262744405772537,0.21949418261647224,0.14972557313740253,-0.9075258141383529,0.2610129411332309,-0.13780817110091448,-0.25324929784983397,0.28326272359117866,0.7900028582662344,-0.7643282623030245,0.9046003804542124,-0.825464709661901,-0.6921385549940169,-0.2285952535457909,-0.14346701744943857,-0.1051758206449449,0.07957385992631316,0.806666265707463,-0.2469270802102983,-0.8091045091859996,-0.5544061819091439,0.2543247062712908,0.510345259681344,0.5125094973482192,0.9423644435591996,0.04279403667896986,-0.15971504338085651,-0.6417943923734128,-0.4523406382650137,-0.39427117351442575,-0.5356120862998068,-0.08302612788975239,-0.6128976289182901,-0.5226398431695998,0.8837155709043145,-0.05245895590633154,-0.5944198439829051,0.6768020866438746,-0.4816126078367233,0.4366437769494951,0.062006969936192036,-0.13041743403300643,0.6332533140666783,-0.249144921079278,-0.8516749730333686,-0.13390896283090115,0.43023488065227866,-0.8868649094365537,-0.567388940602541,0.9304619003087282,0.46727499831467867,-0.026346683967858553,0.49766833428293467,-0.6652087364345789,0.0573774971999228,-0.6105398563668132,0.5384786492213607,-0.7964189923368394,-0.27654491318389773,-0.9785814909264445,0.23460100265219808,-0.16038673650473356,-0.8805370312184095,0.06745940819382668,0.377448090352118,0.36636873660609126,0.6753658675588667,-0.06429768772795796,0.8913471857085824,0.08389232074841857,-0.9338281396776438,-0.2556823901832104,0.6069499556906521,-0.26739402348175645,-0.682313175406307,0.02300796750932932,0.5084151313640177,-0.1147106233984232,0.6662606415338814,0.790807347279042,-0.9414651081897318,0.17854019673541188,0.34804034046828747,0.10931187169626355,-0.5512773031368852,-0.4055753843858838,0.32314390083774924,-0.20344558591023088,0.15633410401642323,0.41526641603559256,-0.39903753995895386,-0.11627570679411292,0.06315761618316174,0.5957805090583861,0.2214493788778782,-0.8066926021128893,0.9274956998415291,-0.2642189213074744,0.40073468908667564,-0.7526372456923127,0.16545331059023738,0.4605690175667405,0.5251036947593093,-0.5100507736206055,-0.6539729158394039,-0.6660104445181787,-0.31452432461082935,0.44172100396826863,0.6233780067414045,0.02543980348855257,-0.4163641440682113,0.09370861062780023,-0.690217622090131,0.4244681540876627,0.44236519699916244,-0.6716985362581909,-0.13141354219987988,0.5263884337618947,0.03615270461887121,0.8132533058524132,-0.04195671668276191,-0.08836235757917166,-0.02090142760425806,-0.8650566199794412,0.6371010630391538,-0.4858146798796952,-0.7928437343798578,0.02977001154795289,-0.13934578513726592,0.3575677960179746,-0.6956765949726105,0.20970951346680522,0.5302809551358223,0.35633594216778874,0.470531047321856,-0.19526011124253273,0.7159549714997411,-0.6366882175207138,-0.20680351462215185,-0.9880932057276368,0.3670897684060037,-0.24417389184236526,0.9165875110775232,-0.0918985246680677,-0.6798888817429543,-0.6359937135130167,-0.16683482704684138,-0.30757474107667804,-0.7903656116686761,0.2871277970261872,-0.039912144653499126,-0.49603722523897886,0.3976497654803097,-0.9236733196303248,-0.32544970512390137,0.26899248780682683,-0.7126868977211416,0.7696181428618729,-0.5905654840171337,0.8706380822695792,0.972846613265574,-0.706270495429635,0.6970198359340429,0.9044243777170777,0.4050489543005824,-0.2357564470730722,-0.6290347180329263,-0.5355776157230139,-0.6367673687636852,-0.8239252208732069,-0.789897327311337,-0.27626785170286894,0.5481057120487094,-0.8317986247129738,0.7329452959820628,-0.6795612261630595,0.8157442454248667,0.5046018026769161,-0.8125802013091743,0.5265129869803786,0.7188447853550315,-0.5598914725705981,-0.30739436065778136,-0.510465154889971,-0.4924226044677198,-0.7276095882989466,0.8259434537030756,0.21633207518607378,-0.9523205440491438,-0.34542923513799906,-0.6619120114482939,-0.6100618606433272,-0.9382782261818647,-0.16447313781827688,0.014277818612754345,0.8941234843805432,-0.12469813600182533,-0.8536780877038836,0.46757039707154036,0.2881918060593307,-0.5962736075744033,-0.4106042180210352,0.8150783884339035,-0.554014032240957,-0.1513879164122045,-0.15682773385196924,-0.7797678494825959,0.35772282164543867,0.3693508584983647,-0.015811136458069086,-0.29824619460850954,0.8447050703689456,0.08390340115875006,-0.5906580025330186,-0.4344138787128031,0.8017377974465489,0.6545173535123467,0.7410979131236672,-0.2904756381176412,-0.4797042631544173,-0.1765199308283627,0.7873502736911178,0.10621435288339853,-0.7592243407852948,-0.04112349124625325,-0.12746470607817173,-0.18096326105296612,-0.278437830042094,0.709273184183985,0.051049774046987295,-0.7030398431234062,-0.7459789398126304,-0.6302398326806724,-0.3462393516674638,-0.6791393985040486,0.7545050662010908,0.14007242349907756,-0.6084671444259584,0.6230012709274888,-0.058604198042303324,-0.5059598907828331,-0.7080154279246926,-0.6722173378802836,0.3180859936401248,0.8791021769866347,-0.23947006138041615,0.9191200407221913,-0.6669901693239808,0.013816249091178179,-0.740965333301574,0.8692520684562624,-0.12854118179529905,-0.6304470309987664,0.21229295106604695,0.4035387961193919,0.1455208659172058,-0.9234960097819567,-0.9516881513409317,0.7109939213842154,0.7374645131640136,-0.8885568557307124,0.6603673361241817,-0.6270092446357012,0.1457305708900094,0.11335380049422383,-0.6812045136466622,0.07000763202086091,0.1516119372099638,0.16293404204770923,0.269608783069998,0.20327753480523825,0.13438896788284183,0.9444664786569774,-0.9238358740694821,0.9286507787182927,-0.046654794830828905,0.9187044729478657,-0.2064394890330732,0.09975938871502876,0.7206715014763176,-0.3246420193463564,0.18447319185361266,0.19007317069917917,-0.9444821556098759,0.8724781749770045,-0.6637662933208048,0.4377457373775542,0.17734256433323026,-0.5067835990339518,0.9870570208877325,0.3515091878362,-0.21750346524640918,0.3969377791509032,-0.8158824536949396,-0.29776421608403325,0.6330975014716387,0.7833454944193363,0.5201023081317544,0.036054468248039484,0.08761813770979643,-0.48242902057245374,0.9471017615869641,0.10616803076118231,-0.38778483448550105,0.8037582011893392,0.5144193274900317,0.5929855010472238,0.12954798014834523,0.8690271019004285,-0.7491470468230546,-0.8994484725408256,0.1217310936190188,0.9916803138330579,0.3742007459513843,-0.3142917980439961,0.19906135275959969,-0.28462847555056214,0.39606753177940845,0.8452557791024446,-0.5974909411743283,-0.8423099210485816,0.69768085796386,0.14347704639658332,-0.44067942164838314,0.3424710505641997,-0.2643197486177087,0.9526538285426795,0.5106891570612788,-0.9426137022674084,-0.4377085044980049,0.9005940179340541,-0.4516075747087598,-0.25358652090653777,-0.05081611638888717,-0.514275936409831,0.5018302192911506,-0.9907789467833936,-0.20709667867049575,0.4140778789296746,-0.6646823510527611,-0.19045633263885975,0.8413136806339025,0.5039041065610945,-0.012997683137655258,-0.17819170374423265,-0.29154215659946203,0.7036678078584373,-0.42721134796738625,0.14545151544734836,0.5620133834891021,-0.9850377552211285,0.8416233314201236,-0.5967142092995346,0.7293012356385589,0.9637334076687694,0.6971764946356416,0.5308602452278137,-0.8388776746578515,-0.7541728210635483,0.14983945339918137,-0.25294028548523784,0.6041866820305586,0.9240516941063106,-0.756137149874121,-0.795763396192342,-0.6239251117222011,-0.6518889381550252,-0.4734167610295117,0.8211177499033511,-0.05018328735604882,0.6401740303263068,-0.49452104745432734,0.20185510907322168,-0.6373875271528959,0.03936960594728589,0.6229514749720693,-0.9537834515795112,-0.29217401752248406,-0.22849640483036637,0.016699008643627167,-0.8178147110156715,0.2602793565019965,-0.0884107924066484,-0.2170030507259071,-0.102121293079108,-0.042717456351965666,0.13372628670185804,0.0799163575284183,-0.9463015990331769,0.14503700518980622,-0.6567354653961957,-0.09483552537858486,0.6122456486336887,-0.007293804548680782,0.09853534959256649,-0.4088514605537057,0.0343831442296505,0.7453670371323824,-0.7885635420680046,-0.08657223591580987,-0.8653890616260469,-0.946713546756655,-0.7229436235502362,0.8923585955053568,-0.13376875082030892,0.9159420998767018,-0.42094018356874585,-0.20997519278898835,0.3336475854739547,0.07899095118045807,0.593736257404089,0.6093193851411343,-0.7392429416067898,-0.9401948545128107,0.7718834602274001,-0.9166869618929923,-0.5877403821796179,0.6350910933688283,-0.6058073430322111,0.5772045352496207,-0.9817648520693183,-0.3471956695429981,0.8669282500632107,-0.1676745587028563,0.027120955288410187,0.6747430670075119,-0.31622360507026315,0.7820526864379644,0.33817872777581215,-0.5444808695465326,0.9094664063304663,0.2236791169270873,-0.9476249129511416,0.20053656958043575,0.2151887370273471,0.9527164422906935,0.24432924715802073,-0.8604192747734487,0.1524298251606524,0.17395544052124023,-0.43953512609004974,0.453620542306453,-0.6793227228336036,-0.8659638441167772,-0.8635775726288557,0.5538978930562735,0.45558548253029585,-0.8922784319147468,0.39074722211807966,-0.6580033805221319,-0.9874218665063381,-0.4973871782422066,-0.25522738276049495,-0.8861168804578483,-0.3385988874360919,0.9206383344717324,0.5756868212483823,-0.4955526953563094,-0.7813124512322247,-0.23793404875323176,-0.24502929160371423,-0.9219541712664068,0.42654332844540477,-0.9601358934305608,0.7230945453047752,-0.5815375670790672,-0.3507542456500232,0.7939909952692688,0.9753964231349528,-0.4648085990920663,-0.884955714456737,-0.8142342320643365,0.8964266204275191,-0.5638044853694737,0.8792491666972637,0.32606404135003686,0.6952574946917593,0.6741328178904951,-0.8837058581411839,0.2566295159049332,0.8986548725515604,-0.3162658507935703,-0.6813818216323853,0.7886797902174294,0.8996709892526269,0.00335324602201581,-0.5910233329050243,0.6802063551731408,0.03523207874968648,-0.3829423263669014,-0.5157346478663385,0.9270609263330698,0.3153479457832873,0.915112211368978,-0.020205143839120865,0.6601478978991508,0.5603283839300275,0.06931484676897526,0.06907965056598186,-0.5318538467399776,-0.6478964667767286,0.42034041322767735,0.6899302150122821,0.8200971446931362,-0.6916918209753931,0.30146395368501544,-0.16624730918556452,-0.4914192301221192,0.7147476016543806,0.8448820025660098,-0.45345141319558024,-0.001397453248500824,-0.6074388567358255,0.49953234754502773,-0.06567954365164042,0.5119954203255475,-0.7703591831959784,0.6649945271201432,0.7515322701074183,-0.47363627050071955,-0.8828111281618476,-0.4703516196459532,-0.028139504604041576,0.02436613943427801,0.6583922086283565,-0.17387926951050758,-0.5717257517389953,-0.3619202421978116,0.15083627216517925,-0.6682768538594246,-0.13713583210483193,0.9182094288989902,0.3228328754194081,-0.652346437331289,0.4927431480027735,-0.8071833183057606,0.14988057455047965,0.6115436563268304,0.2500107102096081,0.678811302408576,0.8015415859408677,-0.9114264687523246,-0.6300544245168567,-0.586548337712884,-0.31936130207031965,0.806629631202668,-0.1756759760901332,-0.32922369753941894,0.7140049384906888,0.5410125073976815,-0.7334032598882914,-0.9085071906447411,0.25361141050234437,-0.5681681390851736,-0.36753880279138684,-0.7785939881578088,-0.9626815253868699,-0.5441718329675496,-0.7161349905654788,-0.2067801347002387,0.8482456500642002,0.9729337426833808,0.47189295943826437,0.7999224658124149,0.5446005999110639,0.6081599583849311,0.40864310413599014,-0.45972846634685993,-0.6445913864299655,-0.7677393634803593,-0.3022481850348413,0.3129411283880472,0.963872795458883,-0.1726626716554165,-0.404500778298825,-0.14498472725972533,0.8094078991562128,-0.36725829681381583,-0.9517307695932686,0.5528723420575261,0.0052864933386445045,0.6063276398926973,0.3045466020703316,-0.9580730395391583,-0.6158844111487269,-0.707741295453161,0.6814530589617789,0.6384863704442978,-0.8081692475825548,0.574060121551156,-0.9586134338751435,-0.13530634250491858,0.08805310260504484,-0.9152962132357061,-0.5875205765478313,0.9207921642810106,0.9373739627189934,-0.43177631916478276,0.32783063082024455,-0.6489518717862666,0.08336982177570462,-0.5144560467451811,-0.9298174916766584,-0.4442918822169304,0.674349413253367,0.4038268798030913,-0.2866351371631026,-0.8030730644240975,-0.3239093478769064,-0.7615081765688956,-0.5049428888596594,0.37895996682345867,0.12685849610716105,-0.40513858385384083,-0.38050174294039607,0.7490930957719684,-0.2837552223354578,-0.644385018851608,-0.0893796207383275,-0.6693756938911974,-0.7012516628019512,0.9469096758402884,0.32342693489044905,0.446602676063776,0.9715753896161914,-0.3536672042682767,0.48744956450536847,-0.3758936170488596,0.016299308743327856,0.5563081274740398,-0.40824383730068803,-0.39025277830660343,-0.7092936411499977,-0.7961928746663034,0.43087190482765436,-0.8585034077987075,0.3058251696638763,0.9245610297657549,-0.3213426168076694,-0.5010101259686053,0.9377815565094352,-0.5501725827343762,-0.6878643869422376,0.3435244346037507,0.32948397286236286,0.4303916855715215,0.06648324895650148,-0.702041894197464,0.21266291802749038,0.6966763413511217,-0.9730600295588374,-0.680819793138653,-0.8112545409239829,0.02352973073720932,0.8186983000487089,-0.06506167957559228,0.8234213436953723,-0.6172603024169803,0.4069639756344259,-0.5363688915967941,-0.287015235517174,-0.014768615830689669,-0.06638909969478846,-0.8205593451857567,0.956398646812886,0.7522303792648017,-0.45180525351315737,0.15687964018434286,-0.17797382874414325,-0.8619082947261631,0.5080439820885658,0.3955382974818349,-0.5795055292546749,-0.6760524748824537,0.16079706186428666,-0.6174683971330523,-0.518450372852385,-0.5098783168941736,-0.05835502780973911,-0.5831187330186367,0.22228333540260792,0.6114327828399837,0.12852236535400152,0.7562480112537742,0.5440219049341977,0.8872721749357879,-0.7313995906151831,-0.8948363880626857,-0.48272773437201977,-0.0807759677991271,-0.2912918827496469,0.6043771244585514,-0.9013881380669773,0.9166481690481305,-0.7878531194292009,-0.6305421623401344,-0.334046499338001,0.09788765106350183,-0.780030254740268,-0.4805923542007804,0.5679444279521704,-0.21117394976317883,-0.9139272999018431,0.15123732760548592,0.6451598438434303,0.7255921368487179,0.5052364226430655,-0.6817393405362964,-0.26630855398252606,0.7473550904542208,-0.8376228767447174,-0.9845694676041603,0.6289211716502905,0.8604551055468619,0.028830685187131166,-0.22353630373254418,-0.37592117255553603,0.3661762122064829,-0.7769105820916593,0.386116414796561,0.16740276850759983,0.0041249156929552555,-0.5513859475031495,-0.7215680936351418,-0.5704154274426401,-0.31144254421815276,-0.8510540737770498,0.5046799252741039,-0.7534850686788559,0.7704246696084738,0.23368698451668024,-0.8748615020886064,0.41489496640861034,0.8311125659383833,0.08991794195026159,-0.8547018123790622,0.2726740441285074,0.34536065720021725,-0.9297258439473808,-0.9711370193399489,-0.7836088086478412,-0.6969175133854151,0.9579786728136241,-0.45444447500631213,-0.2880042679607868,0.16746764164417982,0.7049973774701357,0.9390479060821235,0.4960427703335881,0.9745298153720796,0.1986975814215839,0.46547912526875734,-0.5244753565639257,0.9504787744954228,0.3111253334209323,0.6101571740582585,-0.7469955082051456,-0.6263534356839955,-0.22993693221360445,0.3725338885560632,-0.8881885870359838,0.8894325816072524,0.06194243859499693,0.45094656059518456,0.4831911576911807,-0.4043255322612822,0.7547968295402825,0.3566106022335589,0.9668149338103831,-0.9683012994937599,-0.8194670244120061,-0.47388395806774497,-0.10240743588656187,-0.10916790692135692,-0.3751546060666442,-0.06675523845478892,0.7854938255622983,0.7994302292354405,-0.8801245568320155,0.7678515035659075,-0.7618103213608265,0.11679975409060717,-0.8370410343632102,-0.6882393099367619,0.722925134934485,-0.48123344872146845,-0.35714904638007283,0.5398026239126921,-0.3128000311553478,0.0077262152917683125,0.2701098150573671,0.5353554468601942,-0.7055435045622289,-0.8576897201128304,-0.13593569677323103,-0.09762360574677587,0.14905518479645252,0.041262013372033834,0.2101274342276156,-0.46813329542055726,0.7025648839771748,0.01789637515321374,-0.05011953134089708,0.08308307686820626,0.5983233493752778,0.14524095598608255,0.09670176450163126,0.8250126303173602,0.8886274788528681,-0.7114494699053466,0.3136696112342179,-0.9171188650652766,0.23708183970302343,-0.33202908374369144,0.011775308288633823,0.7194815413095057,0.3456141836941242,-0.271965270396322,-0.9115696079097688,0.5896270480006933,0.8866150882095098,0.6405426766723394,0.089247384108603,-0.3532465142197907,0.5817182958126068,0.3283656435087323,0.6772002796642482,0.24671836849302053,0.6288559683598578,0.3176626185886562,-0.04896468948572874,-0.14182513812556863,-0.6318616583012044,-0.8344243727624416,0.3548074127174914,-0.5621476494707167,-0.9930978510528803,-0.014617962297052145,-0.4694734690710902,0.8295131386257708,-0.8125892663374543,-0.3003461738117039,0.685751608107239,0.9535036948509514,-0.5906822122633457,0.8291609431616962,0.02249719249084592,0.7142127575352788,-0.6356160864233971,-0.5185882085934281,-0.962481792550534,0.6049953447654843,-0.29013314191251993,-0.5542654530145228,0.16736531909555197,0.4267811509780586,-0.7253218409605324,0.09534498443827033,-0.9865270112641156,-0.7171177002601326,-0.7058275253511965,0.24496252136304975,0.26049788389354944,-0.8361044195480645,0.02303179632872343,0.737410634290427,0.2533071073703468,-0.4139901394955814,0.0986815090291202,-0.041778980288654566,0.701874190941453,0.3252481510862708,-0.5233904519118369,-0.9950106660835445,-0.3694807053543627,0.40568080404773355,0.18097555078566074,-0.23855001851916313,0.8534724079072475,0.18555709440261126,-0.6869339654222131,0.9925373354926705,-0.36098576011136174,0.3563272589817643,-0.006276077125221491,0.9491062555462122,-0.7823164775036275,-0.19170345133170485,0.8043606379069388,0.5361153557896614,-0.2801152407191694,0.6568760727532208,-0.10093610920011997,0.17571729607880116,-0.21415280597284436,-0.2511850269511342,-0.8460128889419138,0.878272463567555,0.22728527523577213,0.1635606694035232,0.41891205543652177,0.8122008536010981,0.9550461736507714,-0.04789748042821884,-0.2493184581398964,-0.7060751412063837,0.4078700081445277,0.7367496709339321,-0.4908183957450092,0.7107034143991768,0.2500219950452447,-0.7320766830816865,-0.3352037803269923,-0.06901367893442512,-0.3950011213310063,0.6280890093185008,0.7136858543381095,-0.28592143720015883,0.8378828475251794,0.77590152900666,0.8776704771444201,0.724429814144969,-0.45843904884532094,0.07998903281986713,0.19911130983382463,0.7569436025805771,0.32643960742279887,-0.30034264363348484,-0.5004489435814321,0.7767439442686737,-0.7758058314211667,-0.7264222642406821,-0.6135790310800076,-0.6214286172762513,0.3317535212263465,-0.3028521900996566,0.6698722685687244,0.09647499118000269,-0.9438829589635134,0.7356265285052359,0.3947816281579435,0.9277365449815989,0.34178670262917876,-0.18208124209195375,-0.05200139991939068,-0.8133587688207626,0.12109209969639778,-0.005001826211810112,0.77186612598598,-0.17671476118266582,0.8071238370612264,0.29521839786320925,-0.3498587184585631,-0.8861746555194259,0.3177692350000143,-0.640378094278276,-0.7515305811539292,-0.5317291496321559,0.8252617670223117,0.9704323476180434,-0.5844621071591973,0.6654378650709987,-0.8580791424028575,-0.43369803484529257,0.6451704879291356,0.7734323749318719,-0.8878030381165445,0.72130166599527,-0.5699421339668334,0.9602998462505639,0.13219677563756704,0.11564007587730885,0.14526175428181887,0.3723785076290369,0.7076983600854874,0.4065700192004442,-0.035485819447785616,0.2503215023316443,-0.9665968953631818,-0.39867276418954134,-0.5036740861833096,-0.607302812859416,0.7866787570528686,0.8970545595511794,0.7507319366559386,-0.7923439228907228,-0.464200128801167,-0.14880914287641644,0.8199128317646682,0.9890790414065123,0.5566704669035971,0.5984383109025657,0.3792873858474195,-0.749496340751648,-0.9714790908619761,-0.07196384062990546,-0.2718967595137656,0.08781912317499518,0.5076240957714617,0.7007307154126465,0.3208430758677423,-0.2679095473140478,0.9398667551577091,-0.8891508583910763,0.9058117703534663,-0.7199346497654915,0.6649056859314442,-0.6785520883277059,-0.08832188555970788,0.9258898706175387,0.9371841647662222,-0.4166554589755833,0.7389795044437051,0.946316524874419,-0.3534279754385352,0.4817767567001283,-0.3905283948406577,0.5294405817985535,0.5924726948142052,0.705935693345964,0.44161154655739665,-0.29055798612535,-0.6093232785351574,-0.8954874621704221,-0.7148461914621294,-0.14356126356869936,-0.3734076782129705,0.7682094709016383,0.5033392985351384,0.1351830423809588,0.9089297582395375,-0.06973858224228024,-0.5031231557950377,0.6353323007933795,0.22851507272571325,-0.5295209116302431,0.09880118630826473,0.48140667425468564,0.6928033079020679,-0.9537594700232148,-0.8014407427981496,0.4834360941313207,-0.9701565392315388,0.3780128466896713,0.62777009466663,-0.4930566302500665,-0.9947679806500673,0.5897449352778494,0.37517964094877243,-0.9363421555608511,0.5438742125406861,0.9467271999455988,-0.06564555410295725,0.41609931411221623,-0.25174740701913834,0.2065557548776269,0.28813368966802955,0.2338404436595738,0.6254981830716133,-0.6681295176967978,-0.738694041967392,0.30133982095867395,-0.6516392799094319,-0.8857222069054842,0.8962316866964102,0.10981785552576184,0.3752598254941404,-0.5176566825248301,-0.8915076022967696,0.6497418042272329,-0.8779751351103187,-0.5245291823521256,0.08271777024492621,0.5626372555270791,-0.14639448653906584,-0.990901755169034,-0.5795523556880653,-0.702375921420753,0.8509691371582448,-0.5833947276696563,-0.024906921200454235,0.20929996157065034,0.655022818595171,0.15414944337680936,0.6123745068907738,0.05730061233043671,-0.8640755391679704,0.8749345457181334,0.2721969783306122,-0.04130581673234701,0.3619034504517913,0.4334724936634302,0.14344616374000907,-0.5743704941123724,0.015474258456379175,-0.5772893824614584,-0.8128396486863494,0.30299437465146184,-0.986291361041367,-0.7803295780904591,0.45779740484431386,0.1719004432670772,-0.6890999991446733,-0.21471059555187821,0.4631209163926542,0.12235383223742247,0.9576366585679352,0.6334690428338945,-0.834213376045227,-0.2870879299007356,-0.9475432680919766,0.46771394554525614,-0.998638344462961,-0.8845523712225258,-0.8506358098238707,0.5268406816758215,-0.46962073585018516,0.9988644425757229,-0.4885532702319324,0.27842365577816963,-0.3528550872579217,-0.1243374259211123,-0.9614826389588416,0.6264002006500959,-0.7574225449934602,0.10938582988455892,-0.3195828660391271,0.2621631701476872,0.7007334632799029,0.6200040928088129,-0.1036264207214117,0.10880755493417382,-0.4583327267318964,0.9771675355732441,-0.8585996618494391,-0.08429022552445531,-0.22834819229319692,-0.18296809401363134,0.14092226745560765,-0.6711523039266467,-0.9777511283755302,-0.04284718306735158,-0.09551355056464672,-0.7194312731735408,0.5808989526703954,0.8948867870494723,-0.377342008985579,-0.24353420222178102,0.7089096657000482,-0.4498430178500712,-0.9169667805545032,0.23912021843716502,0.8692127140238881,0.5251396815292537,0.37704853154718876,-0.3288262505084276,-0.6282999566756189,0.013867090456187725,0.19606071710586548,-0.17502154549583793,0.1528251371346414,0.8668269966728985,0.196584508754313,-0.10411923751235008,0.6240455093793571,-0.5273951543495059,0.9876084942370653,-0.4819593261927366,-0.3014943702146411,0.19344151159748435,-0.9428050448186696,-0.6568779340013862,0.47106278175488114,0.2449861685745418,-0.36629996029660106,0.20219790749251842,0.6863661231473088,-0.9182650954462588,-0.4550159848295152,-0.3309591612778604,0.7534935269504786,-0.12664100574329495,0.6029053274542093,-0.46478706505149603,0.8414716864936054,0.8422398543916643,0.6429925416596234,-0.22938048094511032,0.7808780735358596,0.03126482805237174,0.5148162813857198,-0.45525000989437103,0.6988950702361763,-0.026148671749979258,0.10489334398880601,0.6539472360163927,0.7671322785317898,-0.06476957770064473,0.769620556384325,0.19125061109662056,-0.7098004068247974,0.9175381963141263,0.7894171285443008,0.8087219558656216,-0.4695335188880563,-0.6251401621848345,0.8276397283188999,0.6866460694000125,0.32867006305605173,-0.41670559952035546,0.42480025021359324,-0.6719987108372152,-0.34392518922686577,-0.8220871482044458,-0.9297404810786247,-0.4514047750271857,-0.31962591549381614,-0.3132913368754089,-0.38580255350098014,0.1376935550943017,-0.10603430354967713,-0.8544916799291968,-0.05734612559899688,-0.666558688506484,0.18311915220692754,0.5728049851022661,-0.9858892909251153,0.5256225159391761,0.4026260697282851,0.5680381804704666,-0.8710616510361433,-0.4619821193628013,-0.0722739971242845,-0.004586795344948769,-0.25003629457205534,0.08923126012086868,-0.10747205559164286,0.6189932296983898,0.8761117863468826,0.28399781975895166,-0.15381384920328856,-0.952749980147928,0.3232588665559888,-0.19132297346368432,0.9022006234154105,-0.0477570965886116,-0.28209865000098944,-0.958683340344578,-0.5340887401252985,-0.19568552495911717,0.5456675169989467,-0.975209089461714,0.281837466172874,-0.1974421488121152,0.806053330656141,0.672411423176527,0.9248335296288133,0.7672523818910122,-0.983986150007695,0.18148545548319817,-0.43423611344769597,0.9604325760155916,-0.38612831849604845,0.6835195878520608,-0.5959217241033912,-0.8636131249368191,0.8674652217887342,-0.3022893932648003,-0.17963075684383512,-0.7852269997820258,-0.33741995319724083,0.5596204902976751,0.8491837936453521,0.791322413366288,0.23749580094590783,-0.6548398667946458,-0.6874836147762835,0.7148833903484046,0.8960558562539518,-0.6608019107952714,-0.6048026783391833,-0.5607277043163776,0.12423936231061816,-0.11297317454591393,0.14363586204126477,0.5003752335906029,0.34223212907090783,0.6567490273155272,-0.10614395001903176,0.14071002136915922,0.10302497632801533,0.06873442744836211,-0.4819783358834684,0.905444074422121,0.25929334992542863,0.1300082504749298,0.40274267829954624,-0.7656073262915015,-0.21163448505103588,0.5834344765171409,-0.8807600843720138,-0.6688544796779752,0.9277896415442228,0.3080959399230778,-0.9395148670300841,-0.9591968888416886,0.42199841234833,0.10812297882512212,0.37487734435126185,0.9297008337453008,0.4227359830401838,-0.5014335457235575,0.9321434558369219,-0.3316262564621866,0.3836276107467711,0.38413743767887354,0.48799254931509495,-0.5041321478784084,0.012108667753636837,0.7053311634808779,-0.32668671105057,-0.9617377477698028,-0.8483205470256507,0.9492268543690443,0.20071285543963313,0.21535836113616824,0.03275396814569831,0.02862960658967495,-0.5457375920377672,-0.08338334364816546,-0.20720457937568426,-0.2779412865638733,0.49217921448871493,0.7944883406162262,-0.8085488500073552,0.8768133646808565,0.29368590703234076,0.3602795284241438,-0.9261777605861425,-0.3528838511556387,0.7908614668995142,-0.08893215330317616,-0.9681030320934951,-0.15253676054999232,0.20459464471787214,-0.4439466712065041,-0.799454749096185,0.4814009713009,-0.6669600247405469,-0.32811836944893,-0.5312296184711158,-0.7629857468418777,-0.3198045655153692,0.05049807904288173,-0.1506900666281581,0.901810119394213,-0.8326534358784556,-0.232709645293653,-0.8293608329258859,-0.5810650084167719,0.41196400159969926,-0.24458386143669486,0.2287068427540362,-0.5944447685033083,0.13061604462563992,0.7817957974039018,-0.8216247563250363,-0.788068599998951,-0.5250456198118627,0.9380284612998366,0.25410240795463324,-0.8237063186243176,0.08535695588216186,0.9206189839169383,0.16807923512533307,-0.7172814751975238,0.9625855102203786,0.5830682618543506,0.3899036762304604,0.5447738184593618,0.17604317609220743,-0.8036263473331928,0.6456179744563997,0.9584259493276477,0.26970129646360874,0.9134809980168939,0.8158601298928261,0.32675995817407966,0.1465765000320971,0.045772194396704435,-0.4340071575716138,-0.7957131592556834,0.4731974499300122,-0.7749921940267086,0.49111482547596097,-0.7703693131916225,0.4375888668000698,-0.5311717856675386,0.23029279010370374,0.5864389059133828,-0.2227709935978055,-0.49720111303031445,-0.7983963983133435,-0.17891155602410436,-0.9455264722928405,-0.8104187096469104,-0.5022803284227848,0.807549191173166,0.8037860146723688,-0.8453794061206281,0.6749667469412088,0.41506578028202057,0.2476224945858121,-0.17399526806548238,0.5260681239888072,0.9802144756540656,-0.2850813390687108,-0.26755452109500766,-0.776400996837765,-0.6687211790122092,0.06898404564708471,0.9047234347090125,0.46838314924389124,0.6331332428380847,0.27217852137982845,-0.8175753187388182,0.32539965072646737,0.2841927148401737,-0.8331157080829144,0.3861484178341925,0.2460928289219737,0.4900707988999784,-0.04786899173632264,-0.6762637146748602,-0.9900577520020306,-0.5662779919803143,-0.9978281939402223,-0.2775032017379999,0.7846829458139837,-0.6743848761543632,-0.3677984047681093,0.1437615822069347,-0.612232961691916,-0.017567159608006477,-0.7415236849337816,0.7230309788137674,0.35631399555131793,0.6996009452268481,0.5313678183592856,0.2555453712120652,-0.315112778916955,-0.1539167952723801,-0.8856970672495663,-0.86022740136832,0.3381734285503626,-0.9234897335991263,0.677868427708745,0.032981698866933584,0.23572808830067515,-0.15846978267654777,0.3304150439798832,-0.4423241796903312,-0.3124654311686754,0.28606607392430305,0.3537410260178149,0.03700597723945975,0.21361607778817415,-0.8073334833607078,-0.9083974147215486,-0.8370902459137142,0.36980198323726654,-0.747455257922411,-0.008544013369828463,-0.2999413530342281,-0.1640982278622687,-0.44685887079685926,0.9454634469002485,-0.5628679087385535,0.2669075271114707,0.02763412380591035,-0.5021837996318936,-0.4572744802571833,0.18642652221024036,-0.8465406838804483,0.7917098701000214,0.486848465166986,0.4894194514490664,-0.5323660038411617,0.6266315905377269,-0.9685875806026161,-0.5538730635307729,0.44174812687560916],"type":"scatter3d"},{"customdata":[["2024-07-25T23:35:05.010000"]],"hovertemplate":"color=8\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"8","line":{"color":"#FF97FF","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"8","scene":"scene","showlegend":true,"x":[-0.7158396928571165],"y":[-0.7011716668494046],"z":[0.6391144609078765],"type":"scatter3d"}],                        {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"},"margin":{"b":0,"l":0,"r":0,"t":30}}},"scene":{"domain":{"x":[0.0,1.0],"y":[0.0,1.0]},"xaxis":{"title":{"text":"a"}},"yaxis":{"title":{"text":"b"}},"zaxis":{"title":{"text":"c"}}},"legend":{"title":{"text":"color"},"tracegroupgap":0}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('0d577812-746a-4be5-b262-3385f51e35d5');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
</section>
<section id="walking" class="level2">
<h2 class="anchored" data-anchor-id="walking">Walking</h2>
<p>We have a random cube of data:</p>
<div id="921b1a6e" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1">t</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="2">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┓
┃<span style="font-weight: bold"> timestamp               </span>┃<span style="font-weight: bold"> color </span>┃<span style="font-weight: bold"> a         </span>┃<span style="font-weight: bold"> b         </span>┃<span style="font-weight: bold"> c         </span>┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">timestamp(6)</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │
├─────────────────────────┼───────┼───────────┼───────────┼───────────┤
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:06.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.837407</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.681716</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.692806</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:07.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.307479</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.923701</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.479673</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:08.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.136195</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.604583</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.078360</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:09.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.261867</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.925287</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.339049</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:10.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.813623</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.255287</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.079172</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                       │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────────────────────┴───────┴───────────┴───────────┴───────────┘
</pre>
</div>
</div>
<p>But we need to make it <a href="https://en.wikipedia.org/wiki/Random_walk">walk</a>. We’ll use a window function to calculate the cumulative sum of each column:</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-1-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-1" aria-controls="tabset-1-1" aria-selected="true" href="">Without column selectors</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-2" aria-controls="tabset-1-2" aria-selected="false" href="">With column selectors</a></li></ul>
<div class="tab-content">
<div id="tabset-1-1" class="tab-pane active" aria-labelledby="tabset-1-1-tab">
<div id="8e162bae" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1">window <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.window(order_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>, preceding<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>, following<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>)</span>
<span id="cb3-2">walked <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.select(</span>
<span id="cb3-3">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>,</span>
<span id="cb3-4">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color"</span>,</span>
<span id="cb3-5">    a<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>().over(window),</span>
<span id="cb3-6">    b<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>().over(window),</span>
<span id="cb3-7">    c<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>().over(window),</span>
<span id="cb3-8">).order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>)</span>
<span id="cb3-9">walked</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="3">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┓
┃<span style="font-weight: bold"> timestamp               </span>┃<span style="font-weight: bold"> color </span>┃<span style="font-weight: bold"> a         </span>┃<span style="font-weight: bold"> b         </span>┃<span style="font-weight: bold"> c        </span>┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">timestamp(6)</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>  │
├─────────────────────────┼───────┼───────────┼───────────┼──────────┤
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:06.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.837407</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.681716</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.692806</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:07.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.529928</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-1.605417</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.213133</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:08.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.393733</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-1.000834</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.291492</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:09.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.655600</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.075547</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.630542</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:10.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.158024</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.179740</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.551369</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                       │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────────────────────┴───────┴───────────┴───────────┴──────────┘
</pre>
</div>
</div>
</div>
<div id="tabset-1-2" class="tab-pane" aria-labelledby="tabset-1-2-tab">
<div id="b7a45e7e" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-10" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><span id="annotated-cell-10-1">window <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.window(order_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>, preceding<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>, following<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>)</span>
<span id="annotated-cell-10-2">walked <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.select(</span>
<span id="annotated-cell-10-3">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>,</span>
<span id="annotated-cell-10-4">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color"</span>,</span>
<span id="annotated-cell-10-5">    s.across(</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-10" data-target-annotation="1">1</button><span id="annotated-cell-10-6" class="code-annotation-target">        s.c(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c"</span>),</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-10" data-target-annotation="2">2</button><span id="annotated-cell-10-7" class="code-annotation-target">        ibis._.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>().over(window),</span>
<span id="annotated-cell-10-8">    ),</span>
<span id="annotated-cell-10-9">).order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>)</span>
<span id="annotated-cell-10-10">walked</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-10" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-10" data-code-lines="6" data-code-annotation="1">Alternatively, you can use <code>s.of_type(float)</code> to select all float columns.</span>
</dd>
<dt data-target-cell="annotated-cell-10" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-10" data-code-lines="7" data-code-annotation="2">Use the <code>ibis._</code> selector to reference a deferred column expression.</span>
</dd>
</dl>
</div>
<div class="cell-output cell-output-display" data-execution_count="4">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┓
┃<span style="font-weight: bold"> timestamp               </span>┃<span style="font-weight: bold"> color </span>┃<span style="font-weight: bold"> a         </span>┃<span style="font-weight: bold"> b         </span>┃<span style="font-weight: bold"> c        </span>┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">timestamp(6)</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>  │
├─────────────────────────┼───────┼───────────┼───────────┼──────────┤
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:06.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.837407</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.681716</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.692806</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:07.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.529928</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-1.605417</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.213133</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:08.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.393733</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-1.000834</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.291492</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:09.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.655600</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-0.075547</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.630542</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:10.010</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.158024</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.179740</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.551369</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                       │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────────────────────┴───────┴───────────┴───────────┴──────────┘
</pre>
</div>
</div>
</div>
</div>
</div>
<p>While the first few rows may look similar to the cube, the 3D line plot does not:</p>
<div id="09c4a94f" class="cell" data-execution_count="6">
<details class="code-fold">
<summary>Show me the code!</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.line_3d(</span>
<span id="cb4-2">    walked,</span>
<span id="cb4-3">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>,</span>
<span id="cb4-4">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>,</span>
<span id="cb4-5">    z<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c"</span>,</span>
<span id="cb4-6">    color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color"</span>,</span>
<span id="cb4-7">    hover_data<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>],</span>
<span id="cb4-8">)</span>
<span id="cb4-9">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="5ac06596-4687-40d4-98ef-555bbdc08734" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("5ac06596-4687-40d4-98ef-555bbdc08734")) {                    Plotly.newPlot(                        "5ac06596-4687-40d4-98ef-555bbdc08734",                        [{"customdata":[["2024-07-23T23:35:06.010000"],["2024-07-23T23:35:07.010000"],["2024-07-23T23:35:08.010000"],["2024-07-23T23:35:09.010000"],["2024-07-23T23:35:10.010000"],["2024-07-23T23:35:11.010000"],["2024-07-23T23:35:12.010000"],["2024-07-23T23:35:13.010000"],["2024-07-23T23:35:14.010000"],["2024-07-23T23:35:15.010000"],["2024-07-23T23:35:16.010000"],["2024-07-23T23:35:17.010000"],["2024-07-23T23:35:18.010000"],["2024-07-23T23:35:19.010000"],["2024-07-23T23:35:20.010000"],["2024-07-23T23:35:21.010000"],["2024-07-23T23:35:22.010000"],["2024-07-23T23:35:23.010000"],["2024-07-23T23:35:24.010000"],["2024-07-23T23:35:25.010000"],["2024-07-23T23:35:26.010000"],["2024-07-23T23:35:27.010000"],["2024-07-23T23:35:28.010000"],["2024-07-23T23:35:29.010000"],["2024-07-23T23:35:30.010000"],["2024-07-23T23:35:31.010000"],["2024-07-23T23:35:32.010000"],["2024-07-23T23:35:33.010000"],["2024-07-23T23:35:34.010000"],["2024-07-23T23:35:35.010000"],["2024-07-23T23:35:36.010000"],["2024-07-23T23:35:37.010000"],["2024-07-23T23:35:38.010000"],["2024-07-23T23:35:39.010000"],["2024-07-23T23:35:40.010000"],["2024-07-23T23:35:41.010000"],["2024-07-23T23:35:42.010000"],["2024-07-23T23:35:43.010000"],["2024-07-23T23:35:44.010000"],["2024-07-23T23:35:45.010000"],["2024-07-23T23:35:46.010000"],["2024-07-23T23:35:47.010000"],["2024-07-23T23:35:48.010000"],["2024-07-23T23:35:49.010000"],["2024-07-23T23:35:50.010000"],["2024-07-23T23:35:51.010000"],["2024-07-23T23:35:52.010000"],["2024-07-23T23:35:53.010000"],["2024-07-23T23:35:54.010000"],["2024-07-23T23:35:55.010000"],["2024-07-23T23:35:56.010000"],["2024-07-23T23:35:57.010000"],["2024-07-23T23:35:58.010000"],["2024-07-23T23:35:59.010000"],["2024-07-23T23:36:00.010000"],["2024-07-23T23:36:01.010000"],["2024-07-23T23:36:02.010000"],["2024-07-23T23:36:03.010000"],["2024-07-23T23:36:04.010000"],["2024-07-23T23:36:05.010000"],["2024-07-23T23:36:06.010000"],["2024-07-23T23:36:07.010000"],["2024-07-23T23:36:08.010000"],["2024-07-23T23:36:09.010000"],["2024-07-23T23:36:10.010000"],["2024-07-23T23:36:11.010000"],["2024-07-23T23:36:12.010000"],["2024-07-23T23:36:13.010000"],["2024-07-23T23:36:14.010000"],["2024-07-23T23:36:15.010000"],["2024-07-23T23:36:16.010000"],["2024-07-23T23:36:17.010000"],["2024-07-23T23:36:18.010000"],["2024-07-23T23:36:19.010000"],["2024-07-23T23:36:20.010000"],["2024-07-23T23:36:21.010000"],["2024-07-23T23:36:22.010000"],["2024-07-23T23:36:23.010000"],["2024-07-23T23:36:24.010000"],["2024-07-23T23:36:25.010000"],["2024-07-23T23:36:26.010000"],["2024-07-23T23:36:27.010000"],["2024-07-23T23:36:28.010000"],["2024-07-23T23:36:29.010000"],["2024-07-23T23:36:30.010000"],["2024-07-23T23:36:31.010000"],["2024-07-23T23:36:32.010000"],["2024-07-23T23:36:33.010000"],["2024-07-23T23:36:34.010000"],["2024-07-23T23:36:35.010000"],["2024-07-23T23:36:36.010000"],["2024-07-23T23:36:37.010000"],["2024-07-23T23:36:38.010000"],["2024-07-23T23:36:39.010000"],["2024-07-23T23:36:40.010000"],["2024-07-23T23:36:41.010000"],["2024-07-23T23:36:42.010000"],["2024-07-23T23:36:43.010000"],["2024-07-23T23:36:44.010000"],["2024-07-23T23:36:45.010000"],["2024-07-23T23:36:46.010000"],["2024-07-23T23:36:47.010000"],["2024-07-23T23:36:48.010000"],["2024-07-23T23:36:49.010000"],["2024-07-23T23:36:50.010000"],["2024-07-23T23:36:51.010000"],["2024-07-23T23:36:52.010000"],["2024-07-23T23:36:53.010000"],["2024-07-23T23:36:54.010000"],["2024-07-23T23:36:55.010000"],["2024-07-23T23:36:56.010000"],["2024-07-23T23:36:57.010000"],["2024-07-23T23:36:58.010000"],["2024-07-23T23:36:59.010000"],["2024-07-23T23:37:00.010000"],["2024-07-23T23:37:01.010000"],["2024-07-23T23:37:02.010000"],["2024-07-23T23:37:03.010000"],["2024-07-23T23:37:04.010000"],["2024-07-23T23:37:05.010000"],["2024-07-23T23:37:06.010000"],["2024-07-23T23:37:07.010000"],["2024-07-23T23:37:08.010000"],["2024-07-23T23:37:09.010000"],["2024-07-23T23:37:10.010000"],["2024-07-23T23:37:11.010000"],["2024-07-23T23:37:12.010000"],["2024-07-23T23:37:13.010000"],["2024-07-23T23:37:14.010000"],["2024-07-23T23:37:15.010000"],["2024-07-23T23:37:16.010000"],["2024-07-23T23:37:17.010000"],["2024-07-23T23:37:18.010000"],["2024-07-23T23:37:19.010000"],["2024-07-23T23:37:20.010000"],["2024-07-23T23:37:21.010000"],["2024-07-23T23:37:22.010000"],["2024-07-23T23:37:23.010000"],["2024-07-23T23:37:24.010000"],["2024-07-23T23:37:25.010000"],["2024-07-23T23:37:26.010000"],["2024-07-23T23:37:27.010000"],["2024-07-23T23:37:28.010000"],["2024-07-23T23:37:29.010000"],["2024-07-23T23:37:30.010000"],["2024-07-23T23:37:31.010000"],["2024-07-23T23:37:32.010000"],["2024-07-23T23:37:33.010000"],["2024-07-23T23:37:34.010000"],["2024-07-23T23:37:35.010000"],["2024-07-23T23:37:36.010000"],["2024-07-23T23:37:37.010000"],["2024-07-23T23:37:38.010000"],["2024-07-23T23:37:39.010000"],["2024-07-23T23:37:40.010000"],["2024-07-23T23:37:41.010000"],["2024-07-23T23:37:42.010000"],["2024-07-23T23:37:43.010000"],["2024-07-23T23:37:44.010000"],["2024-07-23T23:37:45.010000"],["2024-07-23T23:37:46.010000"],["2024-07-23T23:37:47.010000"],["2024-07-23T23:37:48.010000"],["2024-07-23T23:37:49.010000"],["2024-07-23T23:37:50.010000"],["2024-07-23T23:37:51.010000"],["2024-07-23T23:37:52.010000"],["2024-07-23T23:37:53.010000"],["2024-07-23T23:37:54.010000"],["2024-07-23T23:37:55.010000"],["2024-07-23T23:37:56.010000"],["2024-07-23T23:37:57.010000"],["2024-07-23T23:37:58.010000"],["2024-07-23T23:37:59.010000"],["2024-07-23T23:38:00.010000"],["2024-07-23T23:38:01.010000"],["2024-07-23T23:38:02.010000"],["2024-07-23T23:38:03.010000"],["2024-07-23T23:38:04.010000"],["2024-07-23T23:38:05.010000"],["2024-07-23T23:38:06.010000"],["2024-07-23T23:38:07.010000"],["2024-07-23T23:38:08.010000"],["2024-07-23T23:38:09.010000"],["2024-07-23T23:38:10.010000"],["2024-07-23T23:38:11.010000"],["2024-07-23T23:38:12.010000"],["2024-07-23T23:38:13.010000"],["2024-07-23T23:38:14.010000"],["2024-07-23T23:38:15.010000"],["2024-07-23T23:38:16.010000"],["2024-07-23T23:38:17.010000"],["2024-07-23T23:38:18.010000"],["2024-07-23T23:38:19.010000"],["2024-07-23T23:38:20.010000"],["2024-07-23T23:38:21.010000"],["2024-07-23T23:38:22.010000"],["2024-07-23T23:38:23.010000"],["2024-07-23T23:38:24.010000"],["2024-07-23T23:38:25.010000"],["2024-07-23T23:38:26.010000"],["2024-07-23T23:38:27.010000"],["2024-07-23T23:38:28.010000"],["2024-07-23T23:38:29.010000"],["2024-07-23T23:38:30.010000"],["2024-07-23T23:38:31.010000"],["2024-07-23T23:38:32.010000"],["2024-07-23T23:38:33.010000"],["2024-07-23T23:38:34.010000"],["2024-07-23T23:38:35.010000"],["2024-07-23T23:38:36.010000"],["2024-07-23T23:38:37.010000"],["2024-07-23T23:38:38.010000"],["2024-07-23T23:38:39.010000"],["2024-07-23T23:38:40.010000"],["2024-07-23T23:38:41.010000"],["2024-07-23T23:38:42.010000"],["2024-07-23T23:38:43.010000"],["2024-07-23T23:38:44.010000"],["2024-07-23T23:38:45.010000"],["2024-07-23T23:38:46.010000"],["2024-07-23T23:38:47.010000"],["2024-07-23T23:38:48.010000"],["2024-07-23T23:38:49.010000"],["2024-07-23T23:38:50.010000"],["2024-07-23T23:38:51.010000"],["2024-07-23T23:38:52.010000"],["2024-07-23T23:38:53.010000"],["2024-07-23T23:38:54.010000"],["2024-07-23T23:38:55.010000"],["2024-07-23T23:38:56.010000"],["2024-07-23T23:38:57.010000"],["2024-07-23T23:38:58.010000"],["2024-07-23T23:38:59.010000"],["2024-07-23T23:39:00.010000"],["2024-07-23T23:39:01.010000"],["2024-07-23T23:39:02.010000"],["2024-07-23T23:39:03.010000"],["2024-07-23T23:39:04.010000"],["2024-07-23T23:39:05.010000"],["2024-07-23T23:39:06.010000"],["2024-07-23T23:39:07.010000"],["2024-07-23T23:39:08.010000"],["2024-07-23T23:39:09.010000"],["2024-07-23T23:39:10.010000"],["2024-07-23T23:39:11.010000"],["2024-07-23T23:39:12.010000"],["2024-07-23T23:39:13.010000"],["2024-07-23T23:39:14.010000"],["2024-07-23T23:39:15.010000"],["2024-07-23T23:39:16.010000"],["2024-07-23T23:39:17.010000"],["2024-07-23T23:39:18.010000"],["2024-07-23T23:39:19.010000"],["2024-07-23T23:39:20.010000"],["2024-07-23T23:39:21.010000"],["2024-07-23T23:39:22.010000"],["2024-07-23T23:39:23.010000"],["2024-07-23T23:39:24.010000"],["2024-07-23T23:39:25.010000"],["2024-07-23T23:39:26.010000"],["2024-07-23T23:39:27.010000"],["2024-07-23T23:39:28.010000"],["2024-07-23T23:39:29.010000"],["2024-07-23T23:39:30.010000"],["2024-07-23T23:39:31.010000"],["2024-07-23T23:39:32.010000"],["2024-07-23T23:39:33.010000"],["2024-07-23T23:39:34.010000"],["2024-07-23T23:39:35.010000"],["2024-07-23T23:39:36.010000"],["2024-07-23T23:39:37.010000"],["2024-07-23T23:39:38.010000"],["2024-07-23T23:39:39.010000"],["2024-07-23T23:39:40.010000"],["2024-07-23T23:39:41.010000"],["2024-07-23T23:39:42.010000"],["2024-07-23T23:39:43.010000"],["2024-07-23T23:39:44.010000"],["2024-07-23T23:39:45.010000"],["2024-07-23T23:39:46.010000"],["2024-07-23T23:39:47.010000"],["2024-07-23T23:39:48.010000"],["2024-07-23T23:39:49.010000"],["2024-07-23T23:39:50.010000"],["2024-07-23T23:39:51.010000"],["2024-07-23T23:39:52.010000"],["2024-07-23T23:39:53.010000"],["2024-07-23T23:39:54.010000"],["2024-07-23T23:39:55.010000"],["2024-07-23T23:39:56.010000"],["2024-07-23T23:39:57.010000"],["2024-07-23T23:39:58.010000"],["2024-07-23T23:39:59.010000"],["2024-07-23T23:40:00.010000"],["2024-07-23T23:40:01.010000"],["2024-07-23T23:40:02.010000"],["2024-07-23T23:40:03.010000"],["2024-07-23T23:40:04.010000"],["2024-07-23T23:40:05.010000"],["2024-07-23T23:40:06.010000"],["2024-07-23T23:40:07.010000"],["2024-07-23T23:40:08.010000"],["2024-07-23T23:40:09.010000"],["2024-07-23T23:40:10.010000"],["2024-07-23T23:40:11.010000"],["2024-07-23T23:40:12.010000"],["2024-07-23T23:40:13.010000"],["2024-07-23T23:40:14.010000"],["2024-07-23T23:40:15.010000"],["2024-07-23T23:40:16.010000"],["2024-07-23T23:40:17.010000"],["2024-07-23T23:40:18.010000"],["2024-07-23T23:40:19.010000"],["2024-07-23T23:40:20.010000"],["2024-07-23T23:40:21.010000"],["2024-07-23T23:40:22.010000"],["2024-07-23T23:40:23.010000"],["2024-07-23T23:40:24.010000"],["2024-07-23T23:40:25.010000"],["2024-07-23T23:40:26.010000"],["2024-07-23T23:40:27.010000"],["2024-07-23T23:40:28.010000"],["2024-07-23T23:40:29.010000"],["2024-07-23T23:40:30.010000"],["2024-07-23T23:40:31.010000"],["2024-07-23T23:40:32.010000"],["2024-07-23T23:40:33.010000"],["2024-07-23T23:40:34.010000"],["2024-07-23T23:40:35.010000"],["2024-07-23T23:40:36.010000"],["2024-07-23T23:40:37.010000"],["2024-07-23T23:40:38.010000"],["2024-07-23T23:40:39.010000"],["2024-07-23T23:40:40.010000"],["2024-07-23T23:40:41.010000"],["2024-07-23T23:40:42.010000"],["2024-07-23T23:40:43.010000"],["2024-07-23T23:40:44.010000"],["2024-07-23T23:40:45.010000"],["2024-07-23T23:40:46.010000"],["2024-07-23T23:40:47.010000"],["2024-07-23T23:40:48.010000"],["2024-07-23T23:40:49.010000"],["2024-07-23T23:40:50.010000"],["2024-07-23T23:40:51.010000"],["2024-07-23T23:40:52.010000"],["2024-07-23T23:40:53.010000"],["2024-07-23T23:40:54.010000"],["2024-07-23T23:40:55.010000"],["2024-07-23T23:40:56.010000"],["2024-07-23T23:40:57.010000"],["2024-07-23T23:40:58.010000"],["2024-07-23T23:40:59.010000"],["2024-07-23T23:41:00.010000"],["2024-07-23T23:41:01.010000"],["2024-07-23T23:41:02.010000"],["2024-07-23T23:41:03.010000"],["2024-07-23T23:41:04.010000"],["2024-07-23T23:41:05.010000"],["2024-07-23T23:41:06.010000"],["2024-07-23T23:41:07.010000"],["2024-07-23T23:41:08.010000"],["2024-07-23T23:41:09.010000"],["2024-07-23T23:41:10.010000"],["2024-07-23T23:41:11.010000"],["2024-07-23T23:41:12.010000"],["2024-07-23T23:41:13.010000"],["2024-07-23T23:41:14.010000"],["2024-07-23T23:41:15.010000"],["2024-07-23T23:41:16.010000"],["2024-07-23T23:41:17.010000"],["2024-07-23T23:41:18.010000"],["2024-07-23T23:41:19.010000"],["2024-07-23T23:41:20.010000"],["2024-07-23T23:41:21.010000"],["2024-07-23T23:41:22.010000"],["2024-07-23T23:41:23.010000"],["2024-07-23T23:41:24.010000"],["2024-07-23T23:41:25.010000"],["2024-07-23T23:41:26.010000"],["2024-07-23T23:41:27.010000"],["2024-07-23T23:41:28.010000"],["2024-07-23T23:41:29.010000"],["2024-07-23T23:41:30.010000"],["2024-07-23T23:41:31.010000"],["2024-07-23T23:41:32.010000"],["2024-07-23T23:41:33.010000"],["2024-07-23T23:41:34.010000"],["2024-07-23T23:41:35.010000"],["2024-07-23T23:41:36.010000"],["2024-07-23T23:41:37.010000"],["2024-07-23T23:41:38.010000"],["2024-07-23T23:41:39.010000"],["2024-07-23T23:41:40.010000"],["2024-07-23T23:41:41.010000"],["2024-07-23T23:41:42.010000"],["2024-07-23T23:41:43.010000"],["2024-07-23T23:41:44.010000"],["2024-07-23T23:41:45.010000"],["2024-07-23T23:41:46.010000"],["2024-07-23T23:41:47.010000"],["2024-07-23T23:41:48.010000"],["2024-07-23T23:41:49.010000"],["2024-07-23T23:41:50.010000"],["2024-07-23T23:41:51.010000"],["2024-07-23T23:41:52.010000"],["2024-07-23T23:41:53.010000"],["2024-07-23T23:41:54.010000"],["2024-07-23T23:41:55.010000"],["2024-07-23T23:41:56.010000"],["2024-07-23T23:41:57.010000"],["2024-07-23T23:41:58.010000"],["2024-07-23T23:41:59.010000"],["2024-07-23T23:42:00.010000"],["2024-07-23T23:42:01.010000"],["2024-07-23T23:42:02.010000"],["2024-07-23T23:42:03.010000"],["2024-07-23T23:42:04.010000"],["2024-07-23T23:42:05.010000"],["2024-07-23T23:42:06.010000"],["2024-07-23T23:42:07.010000"],["2024-07-23T23:42:08.010000"],["2024-07-23T23:42:09.010000"],["2024-07-23T23:42:10.010000"],["2024-07-23T23:42:11.010000"],["2024-07-23T23:42:12.010000"],["2024-07-23T23:42:13.010000"],["2024-07-23T23:42:14.010000"],["2024-07-23T23:42:15.010000"],["2024-07-23T23:42:16.010000"],["2024-07-23T23:42:17.010000"],["2024-07-23T23:42:18.010000"],["2024-07-23T23:42:19.010000"],["2024-07-23T23:42:20.010000"],["2024-07-23T23:42:21.010000"],["2024-07-23T23:42:22.010000"],["2024-07-23T23:42:23.010000"],["2024-07-23T23:42:24.010000"],["2024-07-23T23:42:25.010000"],["2024-07-23T23:42:26.010000"],["2024-07-23T23:42:27.010000"],["2024-07-23T23:42:28.010000"],["2024-07-23T23:42:29.010000"],["2024-07-23T23:42:30.010000"],["2024-07-23T23:42:31.010000"],["2024-07-23T23:42:32.010000"],["2024-07-23T23:42:33.010000"],["2024-07-23T23:42:34.010000"],["2024-07-23T23:42:35.010000"],["2024-07-23T23:42:36.010000"],["2024-07-23T23:42:37.010000"],["2024-07-23T23:42:38.010000"],["2024-07-23T23:42:39.010000"],["2024-07-23T23:42:40.010000"],["2024-07-23T23:42:41.010000"],["2024-07-23T23:42:42.010000"],["2024-07-23T23:42:43.010000"],["2024-07-23T23:42:44.010000"],["2024-07-23T23:42:45.010000"],["2024-07-23T23:42:46.010000"],["2024-07-23T23:42:47.010000"],["2024-07-23T23:42:48.010000"],["2024-07-23T23:42:49.010000"],["2024-07-23T23:42:50.010000"],["2024-07-23T23:42:51.010000"],["2024-07-23T23:42:52.010000"],["2024-07-23T23:42:53.010000"],["2024-07-23T23:42:54.010000"],["2024-07-23T23:42:55.010000"],["2024-07-23T23:42:56.010000"],["2024-07-23T23:42:57.010000"],["2024-07-23T23:42:58.010000"],["2024-07-23T23:42:59.010000"],["2024-07-23T23:43:00.010000"],["2024-07-23T23:43:01.010000"],["2024-07-23T23:43:02.010000"],["2024-07-23T23:43:03.010000"],["2024-07-23T23:43:04.010000"],["2024-07-23T23:43:05.010000"],["2024-07-23T23:43:06.010000"],["2024-07-23T23:43:07.010000"],["2024-07-23T23:43:08.010000"],["2024-07-23T23:43:09.010000"],["2024-07-23T23:43:10.010000"],["2024-07-23T23:43:11.010000"],["2024-07-23T23:43:12.010000"],["2024-07-23T23:43:13.010000"],["2024-07-23T23:43:14.010000"],["2024-07-23T23:43:15.010000"],["2024-07-23T23:43:16.010000"],["2024-07-23T23:43:17.010000"],["2024-07-23T23:43:18.010000"],["2024-07-23T23:43:19.010000"],["2024-07-23T23:43:20.010000"],["2024-07-23T23:43:21.010000"],["2024-07-23T23:43:22.010000"],["2024-07-23T23:43:23.010000"],["2024-07-23T23:43:24.010000"],["2024-07-23T23:43:25.010000"],["2024-07-23T23:43:26.010000"],["2024-07-23T23:43:27.010000"],["2024-07-23T23:43:28.010000"],["2024-07-23T23:43:29.010000"],["2024-07-23T23:43:30.010000"],["2024-07-23T23:43:31.010000"],["2024-07-23T23:43:32.010000"],["2024-07-23T23:43:33.010000"],["2024-07-23T23:43:34.010000"],["2024-07-23T23:43:35.010000"],["2024-07-23T23:43:36.010000"],["2024-07-23T23:43:37.010000"],["2024-07-23T23:43:38.010000"],["2024-07-23T23:43:39.010000"],["2024-07-23T23:43:40.010000"],["2024-07-23T23:43:41.010000"],["2024-07-23T23:43:42.010000"],["2024-07-23T23:43:43.010000"],["2024-07-23T23:43:44.010000"],["2024-07-23T23:43:45.010000"],["2024-07-23T23:43:46.010000"],["2024-07-23T23:43:47.010000"],["2024-07-23T23:43:48.010000"],["2024-07-23T23:43:49.010000"],["2024-07-23T23:43:50.010000"],["2024-07-23T23:43:51.010000"],["2024-07-23T23:43:52.010000"],["2024-07-23T23:43:53.010000"],["2024-07-23T23:43:54.010000"],["2024-07-23T23:43:55.010000"],["2024-07-23T23:43:56.010000"],["2024-07-23T23:43:57.010000"],["2024-07-23T23:43:58.010000"],["2024-07-23T23:43:59.010000"],["2024-07-23T23:44:00.010000"],["2024-07-23T23:44:01.010000"],["2024-07-23T23:44:02.010000"],["2024-07-23T23:44:03.010000"],["2024-07-23T23:44:04.010000"],["2024-07-23T23:44:05.010000"],["2024-07-23T23:44:06.010000"],["2024-07-23T23:44:07.010000"],["2024-07-23T23:44:08.010000"],["2024-07-23T23:44:09.010000"],["2024-07-23T23:44:10.010000"],["2024-07-23T23:44:11.010000"],["2024-07-23T23:44:12.010000"],["2024-07-23T23:44:13.010000"],["2024-07-23T23:44:14.010000"],["2024-07-23T23:44:15.010000"],["2024-07-23T23:44:16.010000"],["2024-07-23T23:44:17.010000"],["2024-07-23T23:44:18.010000"],["2024-07-23T23:44:19.010000"],["2024-07-23T23:44:20.010000"],["2024-07-23T23:44:21.010000"],["2024-07-23T23:44:22.010000"],["2024-07-23T23:44:23.010000"],["2024-07-23T23:44:24.010000"],["2024-07-23T23:44:25.010000"],["2024-07-23T23:44:26.010000"],["2024-07-23T23:44:27.010000"],["2024-07-23T23:44:28.010000"],["2024-07-23T23:44:29.010000"],["2024-07-23T23:44:30.010000"],["2024-07-23T23:44:31.010000"],["2024-07-23T23:44:32.010000"],["2024-07-23T23:44:33.010000"],["2024-07-23T23:44:34.010000"],["2024-07-23T23:44:35.010000"],["2024-07-23T23:44:36.010000"],["2024-07-23T23:44:37.010000"],["2024-07-23T23:44:38.010000"],["2024-07-23T23:44:39.010000"],["2024-07-23T23:44:40.010000"],["2024-07-23T23:44:41.010000"],["2024-07-23T23:44:42.010000"],["2024-07-23T23:44:43.010000"],["2024-07-23T23:44:44.010000"],["2024-07-23T23:44:45.010000"],["2024-07-23T23:44:46.010000"],["2024-07-23T23:44:47.010000"],["2024-07-23T23:44:48.010000"],["2024-07-23T23:44:49.010000"],["2024-07-23T23:44:50.010000"],["2024-07-23T23:44:51.010000"],["2024-07-23T23:44:52.010000"],["2024-07-23T23:44:53.010000"],["2024-07-23T23:44:54.010000"],["2024-07-23T23:44:55.010000"],["2024-07-23T23:44:56.010000"],["2024-07-23T23:44:57.010000"],["2024-07-23T23:44:58.010000"],["2024-07-23T23:44:59.010000"],["2024-07-23T23:45:00.010000"],["2024-07-23T23:45:01.010000"],["2024-07-23T23:45:02.010000"],["2024-07-23T23:45:03.010000"],["2024-07-23T23:45:04.010000"],["2024-07-23T23:45:05.010000"],["2024-07-23T23:45:06.010000"],["2024-07-23T23:45:07.010000"],["2024-07-23T23:45:08.010000"],["2024-07-23T23:45:09.010000"],["2024-07-23T23:45:10.010000"],["2024-07-23T23:45:11.010000"],["2024-07-23T23:45:12.010000"],["2024-07-23T23:45:13.010000"],["2024-07-23T23:45:14.010000"],["2024-07-23T23:45:15.010000"],["2024-07-23T23:45:16.010000"],["2024-07-23T23:45:17.010000"],["2024-07-23T23:45:18.010000"],["2024-07-23T23:45:19.010000"],["2024-07-23T23:45:20.010000"],["2024-07-23T23:45:21.010000"],["2024-07-23T23:45:22.010000"],["2024-07-23T23:45:23.010000"],["2024-07-23T23:45:24.010000"],["2024-07-23T23:45:25.010000"],["2024-07-23T23:45:26.010000"],["2024-07-23T23:45:27.010000"],["2024-07-23T23:45:28.010000"],["2024-07-23T23:45:29.010000"],["2024-07-23T23:45:30.010000"],["2024-07-23T23:45:31.010000"],["2024-07-23T23:45:32.010000"],["2024-07-23T23:45:33.010000"],["2024-07-23T23:45:34.010000"],["2024-07-23T23:45:35.010000"],["2024-07-23T23:45:36.010000"],["2024-07-23T23:45:37.010000"],["2024-07-23T23:45:38.010000"],["2024-07-23T23:45:39.010000"],["2024-07-23T23:45:40.010000"],["2024-07-23T23:45:41.010000"],["2024-07-23T23:45:42.010000"],["2024-07-23T23:45:43.010000"],["2024-07-23T23:45:44.010000"],["2024-07-23T23:45:45.010000"],["2024-07-23T23:45:46.010000"],["2024-07-23T23:45:47.010000"],["2024-07-23T23:45:48.010000"],["2024-07-23T23:45:49.010000"],["2024-07-23T23:45:50.010000"],["2024-07-23T23:45:51.010000"],["2024-07-23T23:45:52.010000"],["2024-07-23T23:45:53.010000"],["2024-07-23T23:45:54.010000"],["2024-07-23T23:45:55.010000"],["2024-07-23T23:45:56.010000"],["2024-07-23T23:45:57.010000"],["2024-07-23T23:45:58.010000"],["2024-07-23T23:45:59.010000"],["2024-07-23T23:46:00.010000"],["2024-07-23T23:46:01.010000"],["2024-07-23T23:46:02.010000"],["2024-07-23T23:46:03.010000"],["2024-07-23T23:46:04.010000"],["2024-07-23T23:46:05.010000"],["2024-07-23T23:46:06.010000"],["2024-07-23T23:46:07.010000"],["2024-07-23T23:46:08.010000"],["2024-07-23T23:46:09.010000"],["2024-07-23T23:46:10.010000"],["2024-07-23T23:46:11.010000"],["2024-07-23T23:46:12.010000"],["2024-07-23T23:46:13.010000"],["2024-07-23T23:46:14.010000"],["2024-07-23T23:46:15.010000"],["2024-07-23T23:46:16.010000"],["2024-07-23T23:46:17.010000"],["2024-07-23T23:46:18.010000"],["2024-07-23T23:46:19.010000"],["2024-07-23T23:46:20.010000"],["2024-07-23T23:46:21.010000"],["2024-07-23T23:46:22.010000"],["2024-07-23T23:46:23.010000"],["2024-07-23T23:46:24.010000"],["2024-07-23T23:46:25.010000"],["2024-07-23T23:46:26.010000"],["2024-07-23T23:46:27.010000"],["2024-07-23T23:46:28.010000"],["2024-07-23T23:46:29.010000"],["2024-07-23T23:46:30.010000"],["2024-07-23T23:46:31.010000"],["2024-07-23T23:46:32.010000"],["2024-07-23T23:46:33.010000"],["2024-07-23T23:46:34.010000"],["2024-07-23T23:46:35.010000"],["2024-07-23T23:46:36.010000"],["2024-07-23T23:46:37.010000"],["2024-07-23T23:46:38.010000"],["2024-07-23T23:46:39.010000"],["2024-07-23T23:46:40.010000"],["2024-07-23T23:46:41.010000"],["2024-07-23T23:46:42.010000"],["2024-07-23T23:46:43.010000"],["2024-07-23T23:46:44.010000"],["2024-07-23T23:46:45.010000"],["2024-07-23T23:46:46.010000"],["2024-07-23T23:46:47.010000"],["2024-07-23T23:46:48.010000"],["2024-07-23T23:46:49.010000"],["2024-07-23T23:46:50.010000"],["2024-07-23T23:46:51.010000"],["2024-07-23T23:46:52.010000"],["2024-07-23T23:46:53.010000"],["2024-07-23T23:46:54.010000"],["2024-07-23T23:46:55.010000"],["2024-07-23T23:46:56.010000"],["2024-07-23T23:46:57.010000"],["2024-07-23T23:46:58.010000"],["2024-07-23T23:46:59.010000"],["2024-07-23T23:47:00.010000"],["2024-07-23T23:47:01.010000"],["2024-07-23T23:47:02.010000"],["2024-07-23T23:47:03.010000"],["2024-07-23T23:47:04.010000"],["2024-07-23T23:47:05.010000"],["2024-07-23T23:47:06.010000"],["2024-07-23T23:47:07.010000"],["2024-07-23T23:47:08.010000"],["2024-07-23T23:47:09.010000"],["2024-07-23T23:47:10.010000"],["2024-07-23T23:47:11.010000"],["2024-07-23T23:47:12.010000"],["2024-07-23T23:47:13.010000"],["2024-07-23T23:47:14.010000"],["2024-07-23T23:47:15.010000"],["2024-07-23T23:47:16.010000"],["2024-07-23T23:47:17.010000"],["2024-07-23T23:47:18.010000"],["2024-07-23T23:47:19.010000"],["2024-07-23T23:47:20.010000"],["2024-07-23T23:47:21.010000"],["2024-07-23T23:47:22.010000"],["2024-07-23T23:47:23.010000"],["2024-07-23T23:47:24.010000"],["2024-07-23T23:47:25.010000"],["2024-07-23T23:47:26.010000"],["2024-07-23T23:47:27.010000"],["2024-07-23T23:47:28.010000"],["2024-07-23T23:47:29.010000"],["2024-07-23T23:47:30.010000"],["2024-07-23T23:47:31.010000"],["2024-07-23T23:47:32.010000"],["2024-07-23T23:47:33.010000"],["2024-07-23T23:47:34.010000"],["2024-07-23T23:47:35.010000"],["2024-07-23T23:47:36.010000"],["2024-07-23T23:47:37.010000"],["2024-07-23T23:47:38.010000"],["2024-07-23T23:47:39.010000"],["2024-07-23T23:47:40.010000"],["2024-07-23T23:47:41.010000"],["2024-07-23T23:47:42.010000"],["2024-07-23T23:47:43.010000"],["2024-07-23T23:47:44.010000"],["2024-07-23T23:47:45.010000"],["2024-07-23T23:47:46.010000"],["2024-07-23T23:47:47.010000"],["2024-07-23T23:47:48.010000"],["2024-07-23T23:47:49.010000"],["2024-07-23T23:47:50.010000"],["2024-07-23T23:47:51.010000"],["2024-07-23T23:47:52.010000"],["2024-07-23T23:47:53.010000"],["2024-07-23T23:47:54.010000"],["2024-07-23T23:47:55.010000"],["2024-07-23T23:47:56.010000"],["2024-07-23T23:47:57.010000"],["2024-07-23T23:47:58.010000"],["2024-07-23T23:47:59.010000"],["2024-07-23T23:48:00.010000"],["2024-07-23T23:48:01.010000"],["2024-07-23T23:48:02.010000"],["2024-07-23T23:48:03.010000"],["2024-07-23T23:48:04.010000"],["2024-07-23T23:48:05.010000"],["2024-07-23T23:48:06.010000"],["2024-07-23T23:48:07.010000"],["2024-07-23T23:48:08.010000"],["2024-07-23T23:48:09.010000"],["2024-07-23T23:48:10.010000"],["2024-07-23T23:48:11.010000"],["2024-07-23T23:48:12.010000"],["2024-07-23T23:48:13.010000"],["2024-07-23T23:48:14.010000"],["2024-07-23T23:48:15.010000"],["2024-07-23T23:48:16.010000"],["2024-07-23T23:48:17.010000"],["2024-07-23T23:48:18.010000"],["2024-07-23T23:48:19.010000"],["2024-07-23T23:48:20.010000"],["2024-07-23T23:48:21.010000"],["2024-07-23T23:48:22.010000"],["2024-07-23T23:48:23.010000"],["2024-07-23T23:48:24.010000"],["2024-07-23T23:48:25.010000"],["2024-07-23T23:48:26.010000"],["2024-07-23T23:48:27.010000"],["2024-07-23T23:48:28.010000"],["2024-07-23T23:48:29.010000"],["2024-07-23T23:48:30.010000"],["2024-07-23T23:48:31.010000"],["2024-07-23T23:48:32.010000"],["2024-07-23T23:48:33.010000"],["2024-07-23T23:48:34.010000"],["2024-07-23T23:48:35.010000"],["2024-07-23T23:48:36.010000"],["2024-07-23T23:48:37.010000"],["2024-07-23T23:48:38.010000"],["2024-07-23T23:48:39.010000"],["2024-07-23T23:48:40.010000"],["2024-07-23T23:48:41.010000"],["2024-07-23T23:48:42.010000"],["2024-07-23T23:48:43.010000"],["2024-07-23T23:48:44.010000"],["2024-07-23T23:48:45.010000"],["2024-07-23T23:48:46.010000"],["2024-07-23T23:48:47.010000"],["2024-07-23T23:48:48.010000"],["2024-07-23T23:48:49.010000"],["2024-07-23T23:48:50.010000"],["2024-07-23T23:48:51.010000"],["2024-07-23T23:48:52.010000"],["2024-07-23T23:48:53.010000"],["2024-07-23T23:48:54.010000"],["2024-07-23T23:48:55.010000"],["2024-07-23T23:48:56.010000"],["2024-07-23T23:48:57.010000"],["2024-07-23T23:48:58.010000"],["2024-07-23T23:48:59.010000"],["2024-07-23T23:49:00.010000"],["2024-07-23T23:49:01.010000"],["2024-07-23T23:49:02.010000"],["2024-07-23T23:49:03.010000"],["2024-07-23T23:49:04.010000"],["2024-07-23T23:49:05.010000"],["2024-07-23T23:49:06.010000"],["2024-07-23T23:49:07.010000"],["2024-07-23T23:49:08.010000"],["2024-07-23T23:49:09.010000"],["2024-07-23T23:49:10.010000"],["2024-07-23T23:49:11.010000"],["2024-07-23T23:49:12.010000"],["2024-07-23T23:49:13.010000"],["2024-07-23T23:49:14.010000"],["2024-07-23T23:49:15.010000"],["2024-07-23T23:49:16.010000"],["2024-07-23T23:49:17.010000"],["2024-07-23T23:49:18.010000"],["2024-07-23T23:49:19.010000"],["2024-07-23T23:49:20.010000"],["2024-07-23T23:49:21.010000"],["2024-07-23T23:49:22.010000"],["2024-07-23T23:49:23.010000"],["2024-07-23T23:49:24.010000"],["2024-07-23T23:49:25.010000"],["2024-07-23T23:49:26.010000"],["2024-07-23T23:49:27.010000"],["2024-07-23T23:49:28.010000"],["2024-07-23T23:49:29.010000"],["2024-07-23T23:49:30.010000"],["2024-07-23T23:49:31.010000"],["2024-07-23T23:49:32.010000"],["2024-07-23T23:49:33.010000"],["2024-07-23T23:49:34.010000"],["2024-07-23T23:49:35.010000"],["2024-07-23T23:49:36.010000"],["2024-07-23T23:49:37.010000"],["2024-07-23T23:49:38.010000"],["2024-07-23T23:49:39.010000"],["2024-07-23T23:49:40.010000"],["2024-07-23T23:49:41.010000"],["2024-07-23T23:49:42.010000"],["2024-07-23T23:49:43.010000"],["2024-07-23T23:49:44.010000"],["2024-07-23T23:49:45.010000"],["2024-07-23T23:49:46.010000"],["2024-07-23T23:49:47.010000"],["2024-07-23T23:49:48.010000"],["2024-07-23T23:49:49.010000"],["2024-07-23T23:49:50.010000"],["2024-07-23T23:49:51.010000"],["2024-07-23T23:49:52.010000"],["2024-07-23T23:49:53.010000"],["2024-07-23T23:49:54.010000"],["2024-07-23T23:49:55.010000"],["2024-07-23T23:49:56.010000"],["2024-07-23T23:49:57.010000"],["2024-07-23T23:49:58.010000"],["2024-07-23T23:49:59.010000"],["2024-07-23T23:50:00.010000"],["2024-07-23T23:50:01.010000"],["2024-07-23T23:50:02.010000"],["2024-07-23T23:50:03.010000"],["2024-07-23T23:50:04.010000"],["2024-07-23T23:50:05.010000"],["2024-07-23T23:50:06.010000"],["2024-07-23T23:50:07.010000"],["2024-07-23T23:50:08.010000"],["2024-07-23T23:50:09.010000"],["2024-07-23T23:50:10.010000"],["2024-07-23T23:50:11.010000"],["2024-07-23T23:50:12.010000"],["2024-07-23T23:50:13.010000"],["2024-07-23T23:50:14.010000"],["2024-07-23T23:50:15.010000"],["2024-07-23T23:50:16.010000"],["2024-07-23T23:50:17.010000"],["2024-07-23T23:50:18.010000"],["2024-07-23T23:50:19.010000"],["2024-07-23T23:50:20.010000"],["2024-07-23T23:50:21.010000"],["2024-07-23T23:50:22.010000"],["2024-07-23T23:50:23.010000"],["2024-07-23T23:50:24.010000"],["2024-07-23T23:50:25.010000"],["2024-07-23T23:50:26.010000"],["2024-07-23T23:50:27.010000"],["2024-07-23T23:50:28.010000"],["2024-07-23T23:50:29.010000"],["2024-07-23T23:50:30.010000"],["2024-07-23T23:50:31.010000"],["2024-07-23T23:50:32.010000"],["2024-07-23T23:50:33.010000"],["2024-07-23T23:50:34.010000"],["2024-07-23T23:50:35.010000"],["2024-07-23T23:50:36.010000"],["2024-07-23T23:50:37.010000"],["2024-07-23T23:50:38.010000"],["2024-07-23T23:50:39.010000"],["2024-07-23T23:50:40.010000"],["2024-07-23T23:50:41.010000"],["2024-07-23T23:50:42.010000"],["2024-07-23T23:50:43.010000"],["2024-07-23T23:50:44.010000"],["2024-07-23T23:50:45.010000"],["2024-07-23T23:50:46.010000"],["2024-07-23T23:50:47.010000"],["2024-07-23T23:50:48.010000"],["2024-07-23T23:50:49.010000"],["2024-07-23T23:50:50.010000"],["2024-07-23T23:50:51.010000"],["2024-07-23T23:50:52.010000"],["2024-07-23T23:50:53.010000"],["2024-07-23T23:50:54.010000"],["2024-07-23T23:50:55.010000"],["2024-07-23T23:50:56.010000"],["2024-07-23T23:50:57.010000"],["2024-07-23T23:50:58.010000"],["2024-07-23T23:50:59.010000"],["2024-07-23T23:51:00.010000"],["2024-07-23T23:51:01.010000"],["2024-07-23T23:51:02.010000"],["2024-07-23T23:51:03.010000"],["2024-07-23T23:51:04.010000"],["2024-07-23T23:51:05.010000"],["2024-07-23T23:51:06.010000"],["2024-07-23T23:51:07.010000"],["2024-07-23T23:51:08.010000"],["2024-07-23T23:51:09.010000"],["2024-07-23T23:51:10.010000"],["2024-07-23T23:51:11.010000"],["2024-07-23T23:51:12.010000"],["2024-07-23T23:51:13.010000"],["2024-07-23T23:51:14.010000"],["2024-07-23T23:51:15.010000"],["2024-07-23T23:51:16.010000"],["2024-07-23T23:51:17.010000"],["2024-07-23T23:51:18.010000"],["2024-07-23T23:51:19.010000"],["2024-07-23T23:51:20.010000"],["2024-07-23T23:51:21.010000"],["2024-07-23T23:51:22.010000"],["2024-07-23T23:51:23.010000"],["2024-07-23T23:51:24.010000"],["2024-07-23T23:51:25.010000"],["2024-07-23T23:51:26.010000"],["2024-07-23T23:51:27.010000"],["2024-07-23T23:51:28.010000"],["2024-07-23T23:51:29.010000"],["2024-07-23T23:51:30.010000"],["2024-07-23T23:51:31.010000"],["2024-07-23T23:51:32.010000"],["2024-07-23T23:51:33.010000"],["2024-07-23T23:51:34.010000"],["2024-07-23T23:51:35.010000"],["2024-07-23T23:51:36.010000"],["2024-07-23T23:51:37.010000"],["2024-07-23T23:51:38.010000"],["2024-07-23T23:51:39.010000"],["2024-07-23T23:51:40.010000"],["2024-07-23T23:51:41.010000"],["2024-07-23T23:51:42.010000"],["2024-07-23T23:51:43.010000"],["2024-07-23T23:51:44.010000"],["2024-07-23T23:51:45.010000"],["2024-07-23T23:51:46.010000"],["2024-07-23T23:51:47.010000"],["2024-07-23T23:51:48.010000"],["2024-07-23T23:51:49.010000"],["2024-07-23T23:51:50.010000"],["2024-07-23T23:51:51.010000"],["2024-07-23T23:51:52.010000"],["2024-07-23T23:51:53.010000"],["2024-07-23T23:51:54.010000"],["2024-07-23T23:51:55.010000"],["2024-07-23T23:51:56.010000"],["2024-07-23T23:51:57.010000"],["2024-07-23T23:51:58.010000"],["2024-07-23T23:51:59.010000"],["2024-07-23T23:52:00.010000"],["2024-07-23T23:52:01.010000"],["2024-07-23T23:52:02.010000"],["2024-07-23T23:52:03.010000"],["2024-07-23T23:52:04.010000"],["2024-07-23T23:52:05.010000"],["2024-07-23T23:52:06.010000"],["2024-07-23T23:52:07.010000"],["2024-07-23T23:52:08.010000"],["2024-07-23T23:52:09.010000"],["2024-07-23T23:52:10.010000"],["2024-07-23T23:52:11.010000"],["2024-07-23T23:52:12.010000"],["2024-07-23T23:52:13.010000"],["2024-07-23T23:52:14.010000"],["2024-07-23T23:52:15.010000"],["2024-07-23T23:52:16.010000"],["2024-07-23T23:52:17.010000"],["2024-07-23T23:52:18.010000"],["2024-07-23T23:52:19.010000"],["2024-07-23T23:52:20.010000"],["2024-07-23T23:52:21.010000"],["2024-07-23T23:52:22.010000"],["2024-07-23T23:52:23.010000"],["2024-07-23T23:52:24.010000"],["2024-07-23T23:52:25.010000"],["2024-07-23T23:52:26.010000"],["2024-07-23T23:52:27.010000"],["2024-07-23T23:52:28.010000"],["2024-07-23T23:52:29.010000"],["2024-07-23T23:52:30.010000"],["2024-07-23T23:52:31.010000"],["2024-07-23T23:52:32.010000"],["2024-07-23T23:52:33.010000"],["2024-07-23T23:52:34.010000"],["2024-07-23T23:52:35.010000"],["2024-07-23T23:52:36.010000"],["2024-07-23T23:52:37.010000"],["2024-07-23T23:52:38.010000"],["2024-07-23T23:52:39.010000"],["2024-07-23T23:52:40.010000"],["2024-07-23T23:52:41.010000"],["2024-07-23T23:52:42.010000"],["2024-07-23T23:52:43.010000"],["2024-07-23T23:52:44.010000"],["2024-07-23T23:52:45.010000"],["2024-07-23T23:52:46.010000"],["2024-07-23T23:52:47.010000"],["2024-07-23T23:52:48.010000"],["2024-07-23T23:52:49.010000"],["2024-07-23T23:52:50.010000"],["2024-07-23T23:52:51.010000"],["2024-07-23T23:52:52.010000"],["2024-07-23T23:52:53.010000"],["2024-07-23T23:52:54.010000"],["2024-07-23T23:52:55.010000"],["2024-07-23T23:52:56.010000"],["2024-07-23T23:52:57.010000"],["2024-07-23T23:52:58.010000"],["2024-07-23T23:52:59.010000"],["2024-07-23T23:53:00.010000"],["2024-07-23T23:53:01.010000"],["2024-07-23T23:53:02.010000"],["2024-07-23T23:53:03.010000"],["2024-07-23T23:53:04.010000"],["2024-07-23T23:53:05.010000"],["2024-07-23T23:53:06.010000"],["2024-07-23T23:53:07.010000"],["2024-07-23T23:53:08.010000"],["2024-07-23T23:53:09.010000"],["2024-07-23T23:53:10.010000"],["2024-07-23T23:53:11.010000"],["2024-07-23T23:53:12.010000"],["2024-07-23T23:53:13.010000"],["2024-07-23T23:53:14.010000"],["2024-07-23T23:53:15.010000"],["2024-07-23T23:53:16.010000"],["2024-07-23T23:53:17.010000"],["2024-07-23T23:53:18.010000"],["2024-07-23T23:53:19.010000"],["2024-07-23T23:53:20.010000"],["2024-07-23T23:53:21.010000"],["2024-07-23T23:53:22.010000"],["2024-07-23T23:53:23.010000"],["2024-07-23T23:53:24.010000"],["2024-07-23T23:53:25.010000"],["2024-07-23T23:53:26.010000"],["2024-07-23T23:53:27.010000"],["2024-07-23T23:53:28.010000"],["2024-07-23T23:53:29.010000"],["2024-07-23T23:53:30.010000"],["2024-07-23T23:53:31.010000"],["2024-07-23T23:53:32.010000"],["2024-07-23T23:53:33.010000"],["2024-07-23T23:53:34.010000"],["2024-07-23T23:53:35.010000"],["2024-07-23T23:53:36.010000"],["2024-07-23T23:53:37.010000"],["2024-07-23T23:53:38.010000"],["2024-07-23T23:53:39.010000"],["2024-07-23T23:53:40.010000"],["2024-07-23T23:53:41.010000"],["2024-07-23T23:53:42.010000"],["2024-07-23T23:53:43.010000"],["2024-07-23T23:53:44.010000"],["2024-07-23T23:53:45.010000"],["2024-07-23T23:53:46.010000"],["2024-07-23T23:53:47.010000"],["2024-07-23T23:53:48.010000"],["2024-07-23T23:53:49.010000"],["2024-07-23T23:53:50.010000"],["2024-07-23T23:53:51.010000"],["2024-07-23T23:53:52.010000"],["2024-07-23T23:53:53.010000"],["2024-07-23T23:53:54.010000"],["2024-07-23T23:53:55.010000"],["2024-07-23T23:53:56.010000"],["2024-07-23T23:53:57.010000"],["2024-07-23T23:53:58.010000"],["2024-07-23T23:53:59.010000"],["2024-07-23T23:54:00.010000"],["2024-07-23T23:54:01.010000"],["2024-07-23T23:54:02.010000"],["2024-07-23T23:54:03.010000"],["2024-07-23T23:54:04.010000"],["2024-07-23T23:54:05.010000"],["2024-07-23T23:54:06.010000"],["2024-07-23T23:54:07.010000"],["2024-07-23T23:54:08.010000"],["2024-07-23T23:54:09.010000"],["2024-07-23T23:54:10.010000"],["2024-07-23T23:54:11.010000"],["2024-07-23T23:54:12.010000"],["2024-07-23T23:54:13.010000"],["2024-07-23T23:54:14.010000"],["2024-07-23T23:54:15.010000"],["2024-07-23T23:54:16.010000"],["2024-07-23T23:54:17.010000"],["2024-07-23T23:54:18.010000"],["2024-07-23T23:54:19.010000"],["2024-07-23T23:54:20.010000"],["2024-07-23T23:54:21.010000"],["2024-07-23T23:54:22.010000"],["2024-07-23T23:54:23.010000"],["2024-07-23T23:54:24.010000"],["2024-07-23T23:54:25.010000"],["2024-07-23T23:54:26.010000"],["2024-07-23T23:54:27.010000"],["2024-07-23T23:54:28.010000"],["2024-07-23T23:54:29.010000"],["2024-07-23T23:54:30.010000"],["2024-07-23T23:54:31.010000"],["2024-07-23T23:54:32.010000"],["2024-07-23T23:54:33.010000"],["2024-07-23T23:54:34.010000"],["2024-07-23T23:54:35.010000"],["2024-07-23T23:54:36.010000"],["2024-07-23T23:54:37.010000"],["2024-07-23T23:54:38.010000"],["2024-07-23T23:54:39.010000"],["2024-07-23T23:54:40.010000"],["2024-07-23T23:54:41.010000"],["2024-07-23T23:54:42.010000"],["2024-07-23T23:54:43.010000"],["2024-07-23T23:54:44.010000"],["2024-07-23T23:54:45.010000"],["2024-07-23T23:54:46.010000"],["2024-07-23T23:54:47.010000"],["2024-07-23T23:54:48.010000"],["2024-07-23T23:54:49.010000"],["2024-07-23T23:54:50.010000"],["2024-07-23T23:54:51.010000"],["2024-07-23T23:54:52.010000"],["2024-07-23T23:54:53.010000"],["2024-07-23T23:54:54.010000"],["2024-07-23T23:54:55.010000"],["2024-07-23T23:54:56.010000"],["2024-07-23T23:54:57.010000"],["2024-07-23T23:54:58.010000"],["2024-07-23T23:54:59.010000"],["2024-07-23T23:55:00.010000"],["2024-07-23T23:55:01.010000"],["2024-07-23T23:55:02.010000"],["2024-07-23T23:55:03.010000"],["2024-07-23T23:55:04.010000"],["2024-07-23T23:55:05.010000"],["2024-07-23T23:55:06.010000"],["2024-07-23T23:55:07.010000"],["2024-07-23T23:55:08.010000"],["2024-07-23T23:55:09.010000"],["2024-07-23T23:55:10.010000"],["2024-07-23T23:55:11.010000"],["2024-07-23T23:55:12.010000"],["2024-07-23T23:55:13.010000"],["2024-07-23T23:55:14.010000"],["2024-07-23T23:55:15.010000"],["2024-07-23T23:55:16.010000"],["2024-07-23T23:55:17.010000"],["2024-07-23T23:55:18.010000"],["2024-07-23T23:55:19.010000"],["2024-07-23T23:55:20.010000"],["2024-07-23T23:55:21.010000"],["2024-07-23T23:55:22.010000"],["2024-07-23T23:55:23.010000"],["2024-07-23T23:55:24.010000"],["2024-07-23T23:55:25.010000"],["2024-07-23T23:55:26.010000"],["2024-07-23T23:55:27.010000"],["2024-07-23T23:55:28.010000"],["2024-07-23T23:55:29.010000"],["2024-07-23T23:55:30.010000"],["2024-07-23T23:55:31.010000"],["2024-07-23T23:55:32.010000"],["2024-07-23T23:55:33.010000"],["2024-07-23T23:55:34.010000"],["2024-07-23T23:55:35.010000"],["2024-07-23T23:55:36.010000"],["2024-07-23T23:55:37.010000"],["2024-07-23T23:55:38.010000"],["2024-07-23T23:55:39.010000"],["2024-07-23T23:55:40.010000"],["2024-07-23T23:55:41.010000"],["2024-07-23T23:55:42.010000"],["2024-07-23T23:55:43.010000"],["2024-07-23T23:55:44.010000"],["2024-07-23T23:55:45.010000"],["2024-07-23T23:55:46.010000"],["2024-07-23T23:55:47.010000"],["2024-07-23T23:55:48.010000"],["2024-07-23T23:55:49.010000"],["2024-07-23T23:55:50.010000"],["2024-07-23T23:55:51.010000"],["2024-07-23T23:55:52.010000"],["2024-07-23T23:55:53.010000"],["2024-07-23T23:55:54.010000"],["2024-07-23T23:55:55.010000"],["2024-07-23T23:55:56.010000"],["2024-07-23T23:55:57.010000"],["2024-07-23T23:55:58.010000"],["2024-07-23T23:55:59.010000"],["2024-07-23T23:56:00.010000"],["2024-07-23T23:56:01.010000"],["2024-07-23T23:56:02.010000"],["2024-07-23T23:56:03.010000"],["2024-07-23T23:56:04.010000"],["2024-07-23T23:56:05.010000"],["2024-07-23T23:56:06.010000"],["2024-07-23T23:56:07.010000"],["2024-07-23T23:56:08.010000"],["2024-07-23T23:56:09.010000"],["2024-07-23T23:56:10.010000"],["2024-07-23T23:56:11.010000"],["2024-07-23T23:56:12.010000"],["2024-07-23T23:56:13.010000"],["2024-07-23T23:56:14.010000"],["2024-07-23T23:56:15.010000"],["2024-07-23T23:56:16.010000"],["2024-07-23T23:56:17.010000"],["2024-07-23T23:56:18.010000"],["2024-07-23T23:56:19.010000"],["2024-07-23T23:56:20.010000"],["2024-07-23T23:56:21.010000"],["2024-07-23T23:56:22.010000"],["2024-07-23T23:56:23.010000"],["2024-07-23T23:56:24.010000"],["2024-07-23T23:56:25.010000"],["2024-07-23T23:56:26.010000"],["2024-07-23T23:56:27.010000"],["2024-07-23T23:56:28.010000"],["2024-07-23T23:56:29.010000"],["2024-07-23T23:56:30.010000"],["2024-07-23T23:56:31.010000"],["2024-07-23T23:56:32.010000"],["2024-07-23T23:56:33.010000"],["2024-07-23T23:56:34.010000"],["2024-07-23T23:56:35.010000"],["2024-07-23T23:56:36.010000"],["2024-07-23T23:56:37.010000"],["2024-07-23T23:56:38.010000"],["2024-07-23T23:56:39.010000"],["2024-07-23T23:56:40.010000"],["2024-07-23T23:56:41.010000"],["2024-07-23T23:56:42.010000"],["2024-07-23T23:56:43.010000"],["2024-07-23T23:56:44.010000"],["2024-07-23T23:56:45.010000"],["2024-07-23T23:56:46.010000"],["2024-07-23T23:56:47.010000"],["2024-07-23T23:56:48.010000"],["2024-07-23T23:56:49.010000"],["2024-07-23T23:56:50.010000"],["2024-07-23T23:56:51.010000"],["2024-07-23T23:56:52.010000"],["2024-07-23T23:56:53.010000"],["2024-07-23T23:56:54.010000"],["2024-07-23T23:56:55.010000"],["2024-07-23T23:56:56.010000"],["2024-07-23T23:56:57.010000"],["2024-07-23T23:56:58.010000"],["2024-07-23T23:56:59.010000"],["2024-07-23T23:57:00.010000"],["2024-07-23T23:57:01.010000"],["2024-07-23T23:57:02.010000"],["2024-07-23T23:57:03.010000"],["2024-07-23T23:57:04.010000"],["2024-07-23T23:57:05.010000"],["2024-07-23T23:57:06.010000"],["2024-07-23T23:57:07.010000"],["2024-07-23T23:57:08.010000"],["2024-07-23T23:57:09.010000"],["2024-07-23T23:57:10.010000"],["2024-07-23T23:57:11.010000"],["2024-07-23T23:57:12.010000"],["2024-07-23T23:57:13.010000"],["2024-07-23T23:57:14.010000"],["2024-07-23T23:57:15.010000"],["2024-07-23T23:57:16.010000"],["2024-07-23T23:57:17.010000"],["2024-07-23T23:57:18.010000"],["2024-07-23T23:57:19.010000"],["2024-07-23T23:57:20.010000"],["2024-07-23T23:57:21.010000"],["2024-07-23T23:57:22.010000"],["2024-07-23T23:57:23.010000"],["2024-07-23T23:57:24.010000"],["2024-07-23T23:57:25.010000"],["2024-07-23T23:57:26.010000"],["2024-07-23T23:57:27.010000"],["2024-07-23T23:57:28.010000"],["2024-07-23T23:57:29.010000"],["2024-07-23T23:57:30.010000"],["2024-07-23T23:57:31.010000"],["2024-07-23T23:57:32.010000"],["2024-07-23T23:57:33.010000"],["2024-07-23T23:57:34.010000"],["2024-07-23T23:57:35.010000"],["2024-07-23T23:57:36.010000"],["2024-07-23T23:57:37.010000"],["2024-07-23T23:57:38.010000"],["2024-07-23T23:57:39.010000"],["2024-07-23T23:57:40.010000"],["2024-07-23T23:57:41.010000"],["2024-07-23T23:57:42.010000"],["2024-07-23T23:57:43.010000"],["2024-07-23T23:57:44.010000"],["2024-07-23T23:57:45.010000"],["2024-07-23T23:57:46.010000"],["2024-07-23T23:57:47.010000"],["2024-07-23T23:57:48.010000"],["2024-07-23T23:57:49.010000"],["2024-07-23T23:57:50.010000"],["2024-07-23T23:57:51.010000"],["2024-07-23T23:57:52.010000"],["2024-07-23T23:57:53.010000"],["2024-07-23T23:57:54.010000"],["2024-07-23T23:57:55.010000"],["2024-07-23T23:57:56.010000"],["2024-07-23T23:57:57.010000"],["2024-07-23T23:57:58.010000"],["2024-07-23T23:57:59.010000"],["2024-07-23T23:58:00.010000"],["2024-07-23T23:58:01.010000"],["2024-07-23T23:58:02.010000"],["2024-07-23T23:58:03.010000"],["2024-07-23T23:58:04.010000"],["2024-07-23T23:58:05.010000"],["2024-07-23T23:58:06.010000"],["2024-07-23T23:58:07.010000"],["2024-07-23T23:58:08.010000"],["2024-07-23T23:58:09.010000"],["2024-07-23T23:58:10.010000"],["2024-07-23T23:58:11.010000"],["2024-07-23T23:58:12.010000"],["2024-07-23T23:58:13.010000"],["2024-07-23T23:58:14.010000"],["2024-07-23T23:58:15.010000"],["2024-07-23T23:58:16.010000"],["2024-07-23T23:58:17.010000"],["2024-07-23T23:58:18.010000"],["2024-07-23T23:58:19.010000"],["2024-07-23T23:58:20.010000"],["2024-07-23T23:58:21.010000"],["2024-07-23T23:58:22.010000"],["2024-07-23T23:58:23.010000"],["2024-07-23T23:58:24.010000"],["2024-07-23T23:58:25.010000"],["2024-07-23T23:58:26.010000"],["2024-07-23T23:58:27.010000"],["2024-07-23T23:58:28.010000"],["2024-07-23T23:58:29.010000"],["2024-07-23T23:58:30.010000"],["2024-07-23T23:58:31.010000"],["2024-07-23T23:58:32.010000"],["2024-07-23T23:58:33.010000"],["2024-07-23T23:58:34.010000"],["2024-07-23T23:58:35.010000"],["2024-07-23T23:58:36.010000"],["2024-07-23T23:58:37.010000"],["2024-07-23T23:58:38.010000"],["2024-07-23T23:58:39.010000"],["2024-07-23T23:58:40.010000"],["2024-07-23T23:58:41.010000"],["2024-07-23T23:58:42.010000"],["2024-07-23T23:58:43.010000"],["2024-07-23T23:58:44.010000"],["2024-07-23T23:58:45.010000"],["2024-07-23T23:58:46.010000"],["2024-07-23T23:58:47.010000"],["2024-07-23T23:58:48.010000"],["2024-07-23T23:58:49.010000"],["2024-07-23T23:58:50.010000"],["2024-07-23T23:58:51.010000"],["2024-07-23T23:58:52.010000"],["2024-07-23T23:58:53.010000"],["2024-07-23T23:58:54.010000"],["2024-07-23T23:58:55.010000"],["2024-07-23T23:58:56.010000"],["2024-07-23T23:58:57.010000"],["2024-07-23T23:58:58.010000"],["2024-07-23T23:58:59.010000"],["2024-07-23T23:59:00.010000"],["2024-07-23T23:59:01.010000"],["2024-07-23T23:59:02.010000"],["2024-07-23T23:59:03.010000"],["2024-07-23T23:59:04.010000"],["2024-07-23T23:59:05.010000"],["2024-07-23T23:59:06.010000"],["2024-07-23T23:59:07.010000"],["2024-07-23T23:59:08.010000"],["2024-07-23T23:59:09.010000"],["2024-07-23T23:59:10.010000"],["2024-07-23T23:59:11.010000"],["2024-07-23T23:59:12.010000"],["2024-07-23T23:59:13.010000"],["2024-07-23T23:59:14.010000"],["2024-07-23T23:59:15.010000"],["2024-07-23T23:59:16.010000"],["2024-07-23T23:59:17.010000"],["2024-07-23T23:59:18.010000"],["2024-07-23T23:59:19.010000"],["2024-07-23T23:59:20.010000"],["2024-07-23T23:59:21.010000"],["2024-07-23T23:59:22.010000"],["2024-07-23T23:59:23.010000"],["2024-07-23T23:59:24.010000"],["2024-07-23T23:59:25.010000"],["2024-07-23T23:59:26.010000"],["2024-07-23T23:59:27.010000"],["2024-07-23T23:59:28.010000"],["2024-07-23T23:59:29.010000"],["2024-07-23T23:59:30.010000"],["2024-07-23T23:59:31.010000"],["2024-07-23T23:59:32.010000"],["2024-07-23T23:59:33.010000"],["2024-07-23T23:59:34.010000"],["2024-07-23T23:59:35.010000"],["2024-07-23T23:59:36.010000"],["2024-07-23T23:59:37.010000"],["2024-07-23T23:59:38.010000"],["2024-07-23T23:59:39.010000"],["2024-07-23T23:59:40.010000"],["2024-07-23T23:59:41.010000"],["2024-07-23T23:59:42.010000"],["2024-07-23T23:59:43.010000"],["2024-07-23T23:59:44.010000"],["2024-07-23T23:59:45.010000"],["2024-07-23T23:59:46.010000"],["2024-07-23T23:59:47.010000"],["2024-07-23T23:59:48.010000"],["2024-07-23T23:59:49.010000"],["2024-07-23T23:59:50.010000"],["2024-07-23T23:59:51.010000"],["2024-07-23T23:59:52.010000"],["2024-07-23T23:59:53.010000"],["2024-07-23T23:59:54.010000"],["2024-07-23T23:59:55.010000"],["2024-07-23T23:59:56.010000"],["2024-07-23T23:59:57.010000"],["2024-07-23T23:59:58.010000"],["2024-07-23T23:59:59.010000"],["2024-07-24T00:00:00.010000"],["2024-07-24T00:00:01.010000"],["2024-07-24T00:00:02.010000"],["2024-07-24T00:00:03.010000"],["2024-07-24T00:00:04.010000"],["2024-07-24T00:00:05.010000"],["2024-07-24T00:00:06.010000"],["2024-07-24T00:00:07.010000"],["2024-07-24T00:00:08.010000"],["2024-07-24T00:00:09.010000"],["2024-07-24T00:00:10.010000"],["2024-07-24T00:00:11.010000"],["2024-07-24T00:00:12.010000"],["2024-07-24T00:00:13.010000"],["2024-07-24T00:00:14.010000"],["2024-07-24T00:00:15.010000"],["2024-07-24T00:00:16.010000"],["2024-07-24T00:00:17.010000"],["2024-07-24T00:00:18.010000"],["2024-07-24T00:00:19.010000"],["2024-07-24T00:00:20.010000"],["2024-07-24T00:00:21.010000"],["2024-07-24T00:00:22.010000"],["2024-07-24T00:00:23.010000"],["2024-07-24T00:00:24.010000"],["2024-07-24T00:00:25.010000"],["2024-07-24T00:00:26.010000"],["2024-07-24T00:00:27.010000"],["2024-07-24T00:00:28.010000"],["2024-07-24T00:00:29.010000"],["2024-07-24T00:00:30.010000"],["2024-07-24T00:00:31.010000"],["2024-07-24T00:00:32.010000"],["2024-07-24T00:00:33.010000"],["2024-07-24T00:00:34.010000"],["2024-07-24T00:00:35.010000"],["2024-07-24T00:00:36.010000"],["2024-07-24T00:00:37.010000"],["2024-07-24T00:00:38.010000"],["2024-07-24T00:00:39.010000"],["2024-07-24T00:00:40.010000"],["2024-07-24T00:00:41.010000"],["2024-07-24T00:00:42.010000"],["2024-07-24T00:00:43.010000"],["2024-07-24T00:00:44.010000"],["2024-07-24T00:00:45.010000"],["2024-07-24T00:00:46.010000"],["2024-07-24T00:00:47.010000"],["2024-07-24T00:00:48.010000"],["2024-07-24T00:00:49.010000"],["2024-07-24T00:00:50.010000"],["2024-07-24T00:00:51.010000"],["2024-07-24T00:00:52.010000"],["2024-07-24T00:00:53.010000"],["2024-07-24T00:00:54.010000"],["2024-07-24T00:00:55.010000"],["2024-07-24T00:00:56.010000"],["2024-07-24T00:00:57.010000"],["2024-07-24T00:00:58.010000"],["2024-07-24T00:00:59.010000"],["2024-07-24T00:01:00.010000"],["2024-07-24T00:01:01.010000"],["2024-07-24T00:01:02.010000"],["2024-07-24T00:01:03.010000"],["2024-07-24T00:01:04.010000"],["2024-07-24T00:01:05.010000"],["2024-07-24T00:01:06.010000"],["2024-07-24T00:01:07.010000"],["2024-07-24T00:01:08.010000"],["2024-07-24T00:01:09.010000"],["2024-07-24T00:01:10.010000"],["2024-07-24T00:01:11.010000"],["2024-07-24T00:01:12.010000"],["2024-07-24T00:01:13.010000"],["2024-07-24T00:01:14.010000"],["2024-07-24T00:01:15.010000"],["2024-07-24T00:01:16.010000"],["2024-07-24T00:01:17.010000"],["2024-07-24T00:01:18.010000"],["2024-07-24T00:01:19.010000"],["2024-07-24T00:01:20.010000"],["2024-07-24T00:01:21.010000"],["2024-07-24T00:01:22.010000"],["2024-07-24T00:01:23.010000"],["2024-07-24T00:01:24.010000"],["2024-07-24T00:01:25.010000"],["2024-07-24T00:01:26.010000"],["2024-07-24T00:01:27.010000"],["2024-07-24T00:01:28.010000"],["2024-07-24T00:01:29.010000"],["2024-07-24T00:01:30.010000"],["2024-07-24T00:01:31.010000"],["2024-07-24T00:01:32.010000"],["2024-07-24T00:01:33.010000"],["2024-07-24T00:01:34.010000"],["2024-07-24T00:01:35.010000"],["2024-07-24T00:01:36.010000"],["2024-07-24T00:01:37.010000"],["2024-07-24T00:01:38.010000"],["2024-07-24T00:01:39.010000"],["2024-07-24T00:01:40.010000"],["2024-07-24T00:01:41.010000"],["2024-07-24T00:01:42.010000"],["2024-07-24T00:01:43.010000"],["2024-07-24T00:01:44.010000"],["2024-07-24T00:01:45.010000"],["2024-07-24T00:01:46.010000"],["2024-07-24T00:01:47.010000"],["2024-07-24T00:01:48.010000"],["2024-07-24T00:01:49.010000"],["2024-07-24T00:01:50.010000"],["2024-07-24T00:01:51.010000"],["2024-07-24T00:01:52.010000"],["2024-07-24T00:01:53.010000"],["2024-07-24T00:01:54.010000"],["2024-07-24T00:01:55.010000"],["2024-07-24T00:01:56.010000"],["2024-07-24T00:01:57.010000"],["2024-07-24T00:01:58.010000"],["2024-07-24T00:01:59.010000"],["2024-07-24T00:02:00.010000"],["2024-07-24T00:02:01.010000"],["2024-07-24T00:02:02.010000"],["2024-07-24T00:02:03.010000"],["2024-07-24T00:02:04.010000"],["2024-07-24T00:02:05.010000"],["2024-07-24T00:02:06.010000"],["2024-07-24T00:02:07.010000"],["2024-07-24T00:02:08.010000"],["2024-07-24T00:02:09.010000"],["2024-07-24T00:02:10.010000"],["2024-07-24T00:02:11.010000"],["2024-07-24T00:02:12.010000"],["2024-07-24T00:02:13.010000"],["2024-07-24T00:02:14.010000"],["2024-07-24T00:02:15.010000"],["2024-07-24T00:02:16.010000"],["2024-07-24T00:02:17.010000"],["2024-07-24T00:02:18.010000"],["2024-07-24T00:02:19.010000"],["2024-07-24T00:02:20.010000"],["2024-07-24T00:02:21.010000"],["2024-07-24T00:02:22.010000"],["2024-07-24T00:02:23.010000"],["2024-07-24T00:02:24.010000"],["2024-07-24T00:02:25.010000"],["2024-07-24T00:02:26.010000"],["2024-07-24T00:02:27.010000"],["2024-07-24T00:02:28.010000"],["2024-07-24T00:02:29.010000"],["2024-07-24T00:02:30.010000"],["2024-07-24T00:02:31.010000"],["2024-07-24T00:02:32.010000"],["2024-07-24T00:02:33.010000"],["2024-07-24T00:02:34.010000"],["2024-07-24T00:02:35.010000"],["2024-07-24T00:02:36.010000"],["2024-07-24T00:02:37.010000"],["2024-07-24T00:02:38.010000"],["2024-07-24T00:02:39.010000"],["2024-07-24T00:02:40.010000"],["2024-07-24T00:02:41.010000"],["2024-07-24T00:02:42.010000"],["2024-07-24T00:02:43.010000"],["2024-07-24T00:02:44.010000"],["2024-07-24T00:02:45.010000"],["2024-07-24T00:02:46.010000"],["2024-07-24T00:02:47.010000"],["2024-07-24T00:02:48.010000"],["2024-07-24T00:02:49.010000"],["2024-07-24T00:02:50.010000"],["2024-07-24T00:02:51.010000"],["2024-07-24T00:02:52.010000"],["2024-07-24T00:02:53.010000"],["2024-07-24T00:02:54.010000"],["2024-07-24T00:02:55.010000"],["2024-07-24T00:02:56.010000"],["2024-07-24T00:02:57.010000"],["2024-07-24T00:02:58.010000"],["2024-07-24T00:02:59.010000"],["2024-07-24T00:03:00.010000"],["2024-07-24T00:03:01.010000"],["2024-07-24T00:03:02.010000"],["2024-07-24T00:03:03.010000"],["2024-07-24T00:03:04.010000"],["2024-07-24T00:03:05.010000"],["2024-07-24T00:03:06.010000"],["2024-07-24T00:03:07.010000"],["2024-07-24T00:03:08.010000"],["2024-07-24T00:03:09.010000"],["2024-07-24T00:03:10.010000"],["2024-07-24T00:03:11.010000"],["2024-07-24T00:03:12.010000"],["2024-07-24T00:03:13.010000"],["2024-07-24T00:03:14.010000"],["2024-07-24T00:03:15.010000"],["2024-07-24T00:03:16.010000"],["2024-07-24T00:03:17.010000"],["2024-07-24T00:03:18.010000"],["2024-07-24T00:03:19.010000"],["2024-07-24T00:03:20.010000"],["2024-07-24T00:03:21.010000"],["2024-07-24T00:03:22.010000"],["2024-07-24T00:03:23.010000"],["2024-07-24T00:03:24.010000"],["2024-07-24T00:03:25.010000"],["2024-07-24T00:03:26.010000"],["2024-07-24T00:03:27.010000"],["2024-07-24T00:03:28.010000"],["2024-07-24T00:03:29.010000"],["2024-07-24T00:03:30.010000"],["2024-07-24T00:03:31.010000"],["2024-07-24T00:03:32.010000"],["2024-07-24T00:03:33.010000"],["2024-07-24T00:03:34.010000"],["2024-07-24T00:03:35.010000"],["2024-07-24T00:03:36.010000"],["2024-07-24T00:03:37.010000"],["2024-07-24T00:03:38.010000"],["2024-07-24T00:03:39.010000"],["2024-07-24T00:03:40.010000"],["2024-07-24T00:03:41.010000"],["2024-07-24T00:03:42.010000"],["2024-07-24T00:03:43.010000"],["2024-07-24T00:03:44.010000"],["2024-07-24T00:03:45.010000"],["2024-07-24T00:03:46.010000"],["2024-07-24T00:03:47.010000"],["2024-07-24T00:03:48.010000"],["2024-07-24T00:03:49.010000"],["2024-07-24T00:03:50.010000"],["2024-07-24T00:03:51.010000"],["2024-07-24T00:03:52.010000"],["2024-07-24T00:03:53.010000"],["2024-07-24T00:03:54.010000"],["2024-07-24T00:03:55.010000"],["2024-07-24T00:03:56.010000"],["2024-07-24T00:03:57.010000"],["2024-07-24T00:03:58.010000"],["2024-07-24T00:03:59.010000"],["2024-07-24T00:04:00.010000"],["2024-07-24T00:04:01.010000"],["2024-07-24T00:04:02.010000"],["2024-07-24T00:04:03.010000"],["2024-07-24T00:04:04.010000"],["2024-07-24T00:04:05.010000"],["2024-07-24T00:04:06.010000"],["2024-07-24T00:04:07.010000"],["2024-07-24T00:04:08.010000"],["2024-07-24T00:04:09.010000"],["2024-07-24T00:04:10.010000"],["2024-07-24T00:04:11.010000"],["2024-07-24T00:04:12.010000"],["2024-07-24T00:04:13.010000"],["2024-07-24T00:04:14.010000"],["2024-07-24T00:04:15.010000"],["2024-07-24T00:04:16.010000"],["2024-07-24T00:04:17.010000"],["2024-07-24T00:04:18.010000"],["2024-07-24T00:04:19.010000"],["2024-07-24T00:04:20.010000"],["2024-07-24T00:04:21.010000"],["2024-07-24T00:04:22.010000"],["2024-07-24T00:04:23.010000"],["2024-07-24T00:04:24.010000"],["2024-07-24T00:04:25.010000"],["2024-07-24T00:04:26.010000"],["2024-07-24T00:04:27.010000"],["2024-07-24T00:04:28.010000"],["2024-07-24T00:04:29.010000"],["2024-07-24T00:04:30.010000"],["2024-07-24T00:04:31.010000"],["2024-07-24T00:04:32.010000"],["2024-07-24T00:04:33.010000"],["2024-07-24T00:04:34.010000"],["2024-07-24T00:04:35.010000"],["2024-07-24T00:04:36.010000"],["2024-07-24T00:04:37.010000"],["2024-07-24T00:04:38.010000"],["2024-07-24T00:04:39.010000"],["2024-07-24T00:04:40.010000"],["2024-07-24T00:04:41.010000"],["2024-07-24T00:04:42.010000"],["2024-07-24T00:04:43.010000"],["2024-07-24T00:04:44.010000"],["2024-07-24T00:04:45.010000"],["2024-07-24T00:04:46.010000"],["2024-07-24T00:04:47.010000"],["2024-07-24T00:04:48.010000"],["2024-07-24T00:04:49.010000"],["2024-07-24T00:04:50.010000"],["2024-07-24T00:04:51.010000"],["2024-07-24T00:04:52.010000"],["2024-07-24T00:04:53.010000"],["2024-07-24T00:04:54.010000"],["2024-07-24T00:04:55.010000"],["2024-07-24T00:04:56.010000"],["2024-07-24T00:04:57.010000"],["2024-07-24T00:04:58.010000"],["2024-07-24T00:04:59.010000"],["2024-07-24T00:05:00.010000"],["2024-07-24T00:05:01.010000"],["2024-07-24T00:05:02.010000"],["2024-07-24T00:05:03.010000"],["2024-07-24T00:05:04.010000"],["2024-07-24T00:05:05.010000"],["2024-07-24T00:05:06.010000"],["2024-07-24T00:05:07.010000"],["2024-07-24T00:05:08.010000"],["2024-07-24T00:05:09.010000"],["2024-07-24T00:05:10.010000"],["2024-07-24T00:05:11.010000"],["2024-07-24T00:05:12.010000"],["2024-07-24T00:05:13.010000"],["2024-07-24T00:05:14.010000"],["2024-07-24T00:05:15.010000"],["2024-07-24T00:05:16.010000"],["2024-07-24T00:05:17.010000"],["2024-07-24T00:05:18.010000"],["2024-07-24T00:05:19.010000"],["2024-07-24T00:05:20.010000"],["2024-07-24T00:05:21.010000"],["2024-07-24T00:05:22.010000"],["2024-07-24T00:05:23.010000"],["2024-07-24T00:05:24.010000"],["2024-07-24T00:05:25.010000"],["2024-07-24T00:05:26.010000"],["2024-07-24T00:05:27.010000"],["2024-07-24T00:05:28.010000"],["2024-07-24T00:05:29.010000"],["2024-07-24T00:05:30.010000"],["2024-07-24T00:05:31.010000"],["2024-07-24T00:05:32.010000"],["2024-07-24T00:05:33.010000"],["2024-07-24T00:05:34.010000"],["2024-07-24T00:05:35.010000"],["2024-07-24T00:05:36.010000"],["2024-07-24T00:05:37.010000"],["2024-07-24T00:05:38.010000"],["2024-07-24T00:05:39.010000"],["2024-07-24T00:05:40.010000"],["2024-07-24T00:05:41.010000"],["2024-07-24T00:05:42.010000"],["2024-07-24T00:05:43.010000"],["2024-07-24T00:05:44.010000"],["2024-07-24T00:05:45.010000"],["2024-07-24T00:05:46.010000"],["2024-07-24T00:05:47.010000"],["2024-07-24T00:05:48.010000"],["2024-07-24T00:05:49.010000"],["2024-07-24T00:05:50.010000"],["2024-07-24T00:05:51.010000"],["2024-07-24T00:05:52.010000"],["2024-07-24T00:05:53.010000"],["2024-07-24T00:05:54.010000"],["2024-07-24T00:05:55.010000"],["2024-07-24T00:05:56.010000"],["2024-07-24T00:05:57.010000"],["2024-07-24T00:05:58.010000"],["2024-07-24T00:05:59.010000"],["2024-07-24T00:06:00.010000"],["2024-07-24T00:06:01.010000"],["2024-07-24T00:06:02.010000"],["2024-07-24T00:06:03.010000"],["2024-07-24T00:06:04.010000"],["2024-07-24T00:06:05.010000"],["2024-07-24T00:06:06.010000"],["2024-07-24T00:06:07.010000"],["2024-07-24T00:06:08.010000"],["2024-07-24T00:06:09.010000"],["2024-07-24T00:06:10.010000"],["2024-07-24T00:06:11.010000"],["2024-07-24T00:06:12.010000"],["2024-07-24T00:06:13.010000"],["2024-07-24T00:06:14.010000"],["2024-07-24T00:06:15.010000"],["2024-07-24T00:06:16.010000"],["2024-07-24T00:06:17.010000"],["2024-07-24T00:06:18.010000"],["2024-07-24T00:06:19.010000"],["2024-07-24T00:06:20.010000"],["2024-07-24T00:06:21.010000"],["2024-07-24T00:06:22.010000"],["2024-07-24T00:06:23.010000"],["2024-07-24T00:06:24.010000"],["2024-07-24T00:06:25.010000"],["2024-07-24T00:06:26.010000"],["2024-07-24T00:06:27.010000"],["2024-07-24T00:06:28.010000"],["2024-07-24T00:06:29.010000"],["2024-07-24T00:06:30.010000"],["2024-07-24T00:06:31.010000"],["2024-07-24T00:06:32.010000"],["2024-07-24T00:06:33.010000"],["2024-07-24T00:06:34.010000"],["2024-07-24T00:06:35.010000"],["2024-07-24T00:06:36.010000"],["2024-07-24T00:06:37.010000"],["2024-07-24T00:06:38.010000"],["2024-07-24T00:06:39.010000"],["2024-07-24T00:06:40.010000"],["2024-07-24T00:06:41.010000"],["2024-07-24T00:06:42.010000"],["2024-07-24T00:06:43.010000"],["2024-07-24T00:06:44.010000"],["2024-07-24T00:06:45.010000"],["2024-07-24T00:06:46.010000"],["2024-07-24T00:06:47.010000"],["2024-07-24T00:06:48.010000"],["2024-07-24T00:06:49.010000"],["2024-07-24T00:06:50.010000"],["2024-07-24T00:06:51.010000"],["2024-07-24T00:06:52.010000"],["2024-07-24T00:06:53.010000"],["2024-07-24T00:06:54.010000"],["2024-07-24T00:06:55.010000"],["2024-07-24T00:06:56.010000"],["2024-07-24T00:06:57.010000"],["2024-07-24T00:06:58.010000"],["2024-07-24T00:06:59.010000"],["2024-07-24T00:07:00.010000"],["2024-07-24T00:07:01.010000"],["2024-07-24T00:07:02.010000"],["2024-07-24T00:07:03.010000"],["2024-07-24T00:07:04.010000"],["2024-07-24T00:07:05.010000"],["2024-07-24T00:07:06.010000"],["2024-07-24T00:07:07.010000"],["2024-07-24T00:07:08.010000"],["2024-07-24T00:07:09.010000"],["2024-07-24T00:07:10.010000"],["2024-07-24T00:07:11.010000"],["2024-07-24T00:07:12.010000"],["2024-07-24T00:07:13.010000"],["2024-07-24T00:07:14.010000"],["2024-07-24T00:07:15.010000"],["2024-07-24T00:07:16.010000"],["2024-07-24T00:07:17.010000"],["2024-07-24T00:07:18.010000"],["2024-07-24T00:07:19.010000"],["2024-07-24T00:07:20.010000"],["2024-07-24T00:07:21.010000"],["2024-07-24T00:07:22.010000"],["2024-07-24T00:07:23.010000"],["2024-07-24T00:07:24.010000"],["2024-07-24T00:07:25.010000"],["2024-07-24T00:07:26.010000"],["2024-07-24T00:07:27.010000"],["2024-07-24T00:07:28.010000"],["2024-07-24T00:07:29.010000"],["2024-07-24T00:07:30.010000"],["2024-07-24T00:07:31.010000"],["2024-07-24T00:07:32.010000"],["2024-07-24T00:07:33.010000"],["2024-07-24T00:07:34.010000"],["2024-07-24T00:07:35.010000"],["2024-07-24T00:07:36.010000"],["2024-07-24T00:07:37.010000"],["2024-07-24T00:07:38.010000"],["2024-07-24T00:07:39.010000"],["2024-07-24T00:07:40.010000"],["2024-07-24T00:07:41.010000"],["2024-07-24T00:07:42.010000"],["2024-07-24T00:07:43.010000"],["2024-07-24T00:07:44.010000"],["2024-07-24T00:07:45.010000"],["2024-07-24T00:07:46.010000"],["2024-07-24T00:07:47.010000"],["2024-07-24T00:07:48.010000"],["2024-07-24T00:07:49.010000"],["2024-07-24T00:07:50.010000"],["2024-07-24T00:07:51.010000"],["2024-07-24T00:07:52.010000"],["2024-07-24T00:07:53.010000"],["2024-07-24T00:07:54.010000"],["2024-07-24T00:07:55.010000"],["2024-07-24T00:07:56.010000"],["2024-07-24T00:07:57.010000"],["2024-07-24T00:07:58.010000"],["2024-07-24T00:07:59.010000"],["2024-07-24T00:08:00.010000"],["2024-07-24T00:08:01.010000"],["2024-07-24T00:08:02.010000"],["2024-07-24T00:08:03.010000"],["2024-07-24T00:08:04.010000"],["2024-07-24T00:08:05.010000"],["2024-07-24T00:08:06.010000"],["2024-07-24T00:08:07.010000"],["2024-07-24T00:08:08.010000"],["2024-07-24T00:08:09.010000"],["2024-07-24T00:08:10.010000"],["2024-07-24T00:08:11.010000"],["2024-07-24T00:08:12.010000"],["2024-07-24T00:08:13.010000"],["2024-07-24T00:08:14.010000"],["2024-07-24T00:08:15.010000"],["2024-07-24T00:08:16.010000"],["2024-07-24T00:08:17.010000"],["2024-07-24T00:08:18.010000"],["2024-07-24T00:08:19.010000"],["2024-07-24T00:08:20.010000"],["2024-07-24T00:08:21.010000"],["2024-07-24T00:08:22.010000"],["2024-07-24T00:08:23.010000"],["2024-07-24T00:08:24.010000"],["2024-07-24T00:08:25.010000"],["2024-07-24T00:08:26.010000"],["2024-07-24T00:08:27.010000"],["2024-07-24T00:08:28.010000"],["2024-07-24T00:08:29.010000"],["2024-07-24T00:08:30.010000"],["2024-07-24T00:08:31.010000"],["2024-07-24T00:08:32.010000"],["2024-07-24T00:08:33.010000"],["2024-07-24T00:08:34.010000"],["2024-07-24T00:08:35.010000"],["2024-07-24T00:08:36.010000"],["2024-07-24T00:08:37.010000"],["2024-07-24T00:08:38.010000"],["2024-07-24T00:08:39.010000"],["2024-07-24T00:08:40.010000"],["2024-07-24T00:08:41.010000"],["2024-07-24T00:08:42.010000"],["2024-07-24T00:08:43.010000"],["2024-07-24T00:08:44.010000"],["2024-07-24T00:08:45.010000"],["2024-07-24T00:08:46.010000"],["2024-07-24T00:08:47.010000"],["2024-07-24T00:08:48.010000"],["2024-07-24T00:08:49.010000"],["2024-07-24T00:08:50.010000"],["2024-07-24T00:08:51.010000"],["2024-07-24T00:08:52.010000"],["2024-07-24T00:08:53.010000"],["2024-07-24T00:08:54.010000"],["2024-07-24T00:08:55.010000"],["2024-07-24T00:08:56.010000"],["2024-07-24T00:08:57.010000"],["2024-07-24T00:08:58.010000"],["2024-07-24T00:08:59.010000"],["2024-07-24T00:09:00.010000"],["2024-07-24T00:09:01.010000"],["2024-07-24T00:09:02.010000"],["2024-07-24T00:09:03.010000"],["2024-07-24T00:09:04.010000"],["2024-07-24T00:09:05.010000"],["2024-07-24T00:09:06.010000"],["2024-07-24T00:09:07.010000"],["2024-07-24T00:09:08.010000"],["2024-07-24T00:09:09.010000"],["2024-07-24T00:09:10.010000"],["2024-07-24T00:09:11.010000"],["2024-07-24T00:09:12.010000"],["2024-07-24T00:09:13.010000"],["2024-07-24T00:09:14.010000"],["2024-07-24T00:09:15.010000"],["2024-07-24T00:09:16.010000"],["2024-07-24T00:09:17.010000"],["2024-07-24T00:09:18.010000"],["2024-07-24T00:09:19.010000"],["2024-07-24T00:09:20.010000"],["2024-07-24T00:09:21.010000"],["2024-07-24T00:09:22.010000"],["2024-07-24T00:09:23.010000"],["2024-07-24T00:09:24.010000"],["2024-07-24T00:09:25.010000"],["2024-07-24T00:09:26.010000"],["2024-07-24T00:09:27.010000"],["2024-07-24T00:09:28.010000"],["2024-07-24T00:09:29.010000"],["2024-07-24T00:09:30.010000"],["2024-07-24T00:09:31.010000"],["2024-07-24T00:09:32.010000"],["2024-07-24T00:09:33.010000"],["2024-07-24T00:09:34.010000"],["2024-07-24T00:09:35.010000"],["2024-07-24T00:09:36.010000"],["2024-07-24T00:09:37.010000"],["2024-07-24T00:09:38.010000"],["2024-07-24T00:09:39.010000"],["2024-07-24T00:09:40.010000"],["2024-07-24T00:09:41.010000"],["2024-07-24T00:09:42.010000"],["2024-07-24T00:09:43.010000"],["2024-07-24T00:09:44.010000"],["2024-07-24T00:09:45.010000"],["2024-07-24T00:09:46.010000"],["2024-07-24T00:09:47.010000"],["2024-07-24T00:09:48.010000"],["2024-07-24T00:09:49.010000"],["2024-07-24T00:09:50.010000"],["2024-07-24T00:09:51.010000"],["2024-07-24T00:09:52.010000"],["2024-07-24T00:09:53.010000"],["2024-07-24T00:09:54.010000"],["2024-07-24T00:09:55.010000"],["2024-07-24T00:09:56.010000"],["2024-07-24T00:09:57.010000"],["2024-07-24T00:09:58.010000"],["2024-07-24T00:09:59.010000"],["2024-07-24T00:10:00.010000"],["2024-07-24T00:10:01.010000"],["2024-07-24T00:10:02.010000"],["2024-07-24T00:10:03.010000"],["2024-07-24T00:10:04.010000"],["2024-07-24T00:10:05.010000"],["2024-07-24T00:10:06.010000"],["2024-07-24T00:10:07.010000"],["2024-07-24T00:10:08.010000"],["2024-07-24T00:10:09.010000"],["2024-07-24T00:10:10.010000"],["2024-07-24T00:10:11.010000"],["2024-07-24T00:10:12.010000"],["2024-07-24T00:10:13.010000"],["2024-07-24T00:10:14.010000"],["2024-07-24T00:10:15.010000"],["2024-07-24T00:10:16.010000"],["2024-07-24T00:10:17.010000"],["2024-07-24T00:10:18.010000"],["2024-07-24T00:10:19.010000"],["2024-07-24T00:10:20.010000"],["2024-07-24T00:10:21.010000"],["2024-07-24T00:10:22.010000"],["2024-07-24T00:10:23.010000"],["2024-07-24T00:10:24.010000"],["2024-07-24T00:10:25.010000"],["2024-07-24T00:10:26.010000"],["2024-07-24T00:10:27.010000"],["2024-07-24T00:10:28.010000"],["2024-07-24T00:10:29.010000"],["2024-07-24T00:10:30.010000"],["2024-07-24T00:10:31.010000"],["2024-07-24T00:10:32.010000"],["2024-07-24T00:10:33.010000"],["2024-07-24T00:10:34.010000"],["2024-07-24T00:10:35.010000"],["2024-07-24T00:10:36.010000"],["2024-07-24T00:10:37.010000"],["2024-07-24T00:10:38.010000"],["2024-07-24T00:10:39.010000"],["2024-07-24T00:10:40.010000"],["2024-07-24T00:10:41.010000"],["2024-07-24T00:10:42.010000"],["2024-07-24T00:10:43.010000"],["2024-07-24T00:10:44.010000"],["2024-07-24T00:10:45.010000"],["2024-07-24T00:10:46.010000"],["2024-07-24T00:10:47.010000"],["2024-07-24T00:10:48.010000"],["2024-07-24T00:10:49.010000"],["2024-07-24T00:10:50.010000"],["2024-07-24T00:10:51.010000"],["2024-07-24T00:10:52.010000"],["2024-07-24T00:10:53.010000"],["2024-07-24T00:10:54.010000"],["2024-07-24T00:10:55.010000"],["2024-07-24T00:10:56.010000"],["2024-07-24T00:10:57.010000"],["2024-07-24T00:10:58.010000"],["2024-07-24T00:10:59.010000"],["2024-07-24T00:11:00.010000"],["2024-07-24T00:11:01.010000"],["2024-07-24T00:11:02.010000"],["2024-07-24T00:11:03.010000"],["2024-07-24T00:11:04.010000"],["2024-07-24T00:11:05.010000"],["2024-07-24T00:11:06.010000"],["2024-07-24T00:11:07.010000"],["2024-07-24T00:11:08.010000"],["2024-07-24T00:11:09.010000"],["2024-07-24T00:11:10.010000"],["2024-07-24T00:11:11.010000"],["2024-07-24T00:11:12.010000"],["2024-07-24T00:11:13.010000"],["2024-07-24T00:11:14.010000"],["2024-07-24T00:11:15.010000"],["2024-07-24T00:11:16.010000"],["2024-07-24T00:11:17.010000"],["2024-07-24T00:11:18.010000"],["2024-07-24T00:11:19.010000"],["2024-07-24T00:11:20.010000"],["2024-07-24T00:11:21.010000"],["2024-07-24T00:11:22.010000"],["2024-07-24T00:11:23.010000"],["2024-07-24T00:11:24.010000"],["2024-07-24T00:11:25.010000"],["2024-07-24T00:11:26.010000"],["2024-07-24T00:11:27.010000"],["2024-07-24T00:11:28.010000"],["2024-07-24T00:11:29.010000"],["2024-07-24T00:11:30.010000"],["2024-07-24T00:11:31.010000"],["2024-07-24T00:11:32.010000"],["2024-07-24T00:11:33.010000"],["2024-07-24T00:11:34.010000"],["2024-07-24T00:11:35.010000"],["2024-07-24T00:11:36.010000"],["2024-07-24T00:11:37.010000"],["2024-07-24T00:11:38.010000"],["2024-07-24T00:11:39.010000"],["2024-07-24T00:11:40.010000"],["2024-07-24T00:11:41.010000"],["2024-07-24T00:11:42.010000"],["2024-07-24T00:11:43.010000"],["2024-07-24T00:11:44.010000"],["2024-07-24T00:11:45.010000"],["2024-07-24T00:11:46.010000"],["2024-07-24T00:11:47.010000"],["2024-07-24T00:11:48.010000"],["2024-07-24T00:11:49.010000"],["2024-07-24T00:11:50.010000"],["2024-07-24T00:11:51.010000"],["2024-07-24T00:11:52.010000"],["2024-07-24T00:11:53.010000"],["2024-07-24T00:11:54.010000"],["2024-07-24T00:11:55.010000"],["2024-07-24T00:11:56.010000"],["2024-07-24T00:11:57.010000"],["2024-07-24T00:11:58.010000"],["2024-07-24T00:11:59.010000"],["2024-07-24T00:12:00.010000"],["2024-07-24T00:12:01.010000"],["2024-07-24T00:12:02.010000"],["2024-07-24T00:12:03.010000"],["2024-07-24T00:12:04.010000"],["2024-07-24T00:12:05.010000"],["2024-07-24T00:12:06.010000"],["2024-07-24T00:12:07.010000"],["2024-07-24T00:12:08.010000"],["2024-07-24T00:12:09.010000"],["2024-07-24T00:12:10.010000"],["2024-07-24T00:12:11.010000"],["2024-07-24T00:12:12.010000"],["2024-07-24T00:12:13.010000"],["2024-07-24T00:12:14.010000"],["2024-07-24T00:12:15.010000"],["2024-07-24T00:12:16.010000"],["2024-07-24T00:12:17.010000"],["2024-07-24T00:12:18.010000"],["2024-07-24T00:12:19.010000"],["2024-07-24T00:12:20.010000"],["2024-07-24T00:12:21.010000"],["2024-07-24T00:12:22.010000"],["2024-07-24T00:12:23.010000"],["2024-07-24T00:12:24.010000"],["2024-07-24T00:12:25.010000"],["2024-07-24T00:12:26.010000"],["2024-07-24T00:12:27.010000"],["2024-07-24T00:12:28.010000"],["2024-07-24T00:12:29.010000"],["2024-07-24T00:12:30.010000"],["2024-07-24T00:12:31.010000"],["2024-07-24T00:12:32.010000"],["2024-07-24T00:12:33.010000"],["2024-07-24T00:12:34.010000"],["2024-07-24T00:12:35.010000"],["2024-07-24T00:12:36.010000"],["2024-07-24T00:12:37.010000"],["2024-07-24T00:12:38.010000"],["2024-07-24T00:12:39.010000"],["2024-07-24T00:12:40.010000"],["2024-07-24T00:12:41.010000"],["2024-07-24T00:12:42.010000"],["2024-07-24T00:12:43.010000"],["2024-07-24T00:12:44.010000"],["2024-07-24T00:12:45.010000"],["2024-07-24T00:12:46.010000"],["2024-07-24T00:12:47.010000"],["2024-07-24T00:12:48.010000"],["2024-07-24T00:12:49.010000"],["2024-07-24T00:12:50.010000"],["2024-07-24T00:12:51.010000"],["2024-07-24T00:12:52.010000"],["2024-07-24T00:12:53.010000"],["2024-07-24T00:12:54.010000"],["2024-07-24T00:12:55.010000"],["2024-07-24T00:12:56.010000"],["2024-07-24T00:12:57.010000"],["2024-07-24T00:12:58.010000"],["2024-07-24T00:12:59.010000"],["2024-07-24T00:13:00.010000"],["2024-07-24T00:13:01.010000"],["2024-07-24T00:13:02.010000"],["2024-07-24T00:13:03.010000"],["2024-07-24T00:13:04.010000"],["2024-07-24T00:13:05.010000"],["2024-07-24T00:13:06.010000"],["2024-07-24T00:13:07.010000"],["2024-07-24T00:13:08.010000"],["2024-07-24T00:13:09.010000"],["2024-07-24T00:13:10.010000"],["2024-07-24T00:13:11.010000"],["2024-07-24T00:13:12.010000"],["2024-07-24T00:13:13.010000"],["2024-07-24T00:13:14.010000"],["2024-07-24T00:13:15.010000"],["2024-07-24T00:13:16.010000"],["2024-07-24T00:13:17.010000"],["2024-07-24T00:13:18.010000"],["2024-07-24T00:13:19.010000"],["2024-07-24T00:13:20.010000"],["2024-07-24T00:13:21.010000"],["2024-07-24T00:13:22.010000"],["2024-07-24T00:13:23.010000"],["2024-07-24T00:13:24.010000"],["2024-07-24T00:13:25.010000"],["2024-07-24T00:13:26.010000"],["2024-07-24T00:13:27.010000"],["2024-07-24T00:13:28.010000"],["2024-07-24T00:13:29.010000"],["2024-07-24T00:13:30.010000"],["2024-07-24T00:13:31.010000"],["2024-07-24T00:13:32.010000"],["2024-07-24T00:13:33.010000"],["2024-07-24T00:13:34.010000"],["2024-07-24T00:13:35.010000"],["2024-07-24T00:13:36.010000"],["2024-07-24T00:13:37.010000"],["2024-07-24T00:13:38.010000"],["2024-07-24T00:13:39.010000"],["2024-07-24T00:13:40.010000"],["2024-07-24T00:13:41.010000"],["2024-07-24T00:13:42.010000"],["2024-07-24T00:13:43.010000"],["2024-07-24T00:13:44.010000"],["2024-07-24T00:13:45.010000"],["2024-07-24T00:13:46.010000"],["2024-07-24T00:13:47.010000"],["2024-07-24T00:13:48.010000"],["2024-07-24T00:13:49.010000"],["2024-07-24T00:13:50.010000"],["2024-07-24T00:13:51.010000"],["2024-07-24T00:13:52.010000"],["2024-07-24T00:13:53.010000"],["2024-07-24T00:13:54.010000"],["2024-07-24T00:13:55.010000"],["2024-07-24T00:13:56.010000"],["2024-07-24T00:13:57.010000"],["2024-07-24T00:13:58.010000"],["2024-07-24T00:13:59.010000"],["2024-07-24T00:14:00.010000"],["2024-07-24T00:14:01.010000"],["2024-07-24T00:14:02.010000"],["2024-07-24T00:14:03.010000"],["2024-07-24T00:14:04.010000"],["2024-07-24T00:14:05.010000"],["2024-07-24T00:14:06.010000"],["2024-07-24T00:14:07.010000"],["2024-07-24T00:14:08.010000"],["2024-07-24T00:14:09.010000"],["2024-07-24T00:14:10.010000"],["2024-07-24T00:14:11.010000"],["2024-07-24T00:14:12.010000"],["2024-07-24T00:14:13.010000"],["2024-07-24T00:14:14.010000"],["2024-07-24T00:14:15.010000"],["2024-07-24T00:14:16.010000"],["2024-07-24T00:14:17.010000"],["2024-07-24T00:14:18.010000"],["2024-07-24T00:14:19.010000"],["2024-07-24T00:14:20.010000"],["2024-07-24T00:14:21.010000"],["2024-07-24T00:14:22.010000"],["2024-07-24T00:14:23.010000"],["2024-07-24T00:14:24.010000"],["2024-07-24T00:14:25.010000"],["2024-07-24T00:14:26.010000"],["2024-07-24T00:14:27.010000"],["2024-07-24T00:14:28.010000"],["2024-07-24T00:14:29.010000"],["2024-07-24T00:14:30.010000"],["2024-07-24T00:14:31.010000"],["2024-07-24T00:14:32.010000"],["2024-07-24T00:14:33.010000"],["2024-07-24T00:14:34.010000"],["2024-07-24T00:14:35.010000"],["2024-07-24T00:14:36.010000"],["2024-07-24T00:14:37.010000"],["2024-07-24T00:14:38.010000"],["2024-07-24T00:14:39.010000"],["2024-07-24T00:14:40.010000"],["2024-07-24T00:14:41.010000"],["2024-07-24T00:14:42.010000"],["2024-07-24T00:14:43.010000"],["2024-07-24T00:14:44.010000"],["2024-07-24T00:14:45.010000"],["2024-07-24T00:14:46.010000"],["2024-07-24T00:14:47.010000"],["2024-07-24T00:14:48.010000"],["2024-07-24T00:14:49.010000"],["2024-07-24T00:14:50.010000"],["2024-07-24T00:14:51.010000"],["2024-07-24T00:14:52.010000"],["2024-07-24T00:14:53.010000"],["2024-07-24T00:14:54.010000"],["2024-07-24T00:14:55.010000"],["2024-07-24T00:14:56.010000"],["2024-07-24T00:14:57.010000"],["2024-07-24T00:14:58.010000"],["2024-07-24T00:14:59.010000"],["2024-07-24T00:15:00.010000"],["2024-07-24T00:15:01.010000"],["2024-07-24T00:15:02.010000"],["2024-07-24T00:15:03.010000"],["2024-07-24T00:15:04.010000"],["2024-07-24T00:15:05.010000"],["2024-07-24T00:15:06.010000"],["2024-07-24T00:15:07.010000"],["2024-07-24T00:15:08.010000"],["2024-07-24T00:15:09.010000"],["2024-07-24T00:15:10.010000"],["2024-07-24T00:15:11.010000"],["2024-07-24T00:15:12.010000"],["2024-07-24T00:15:13.010000"],["2024-07-24T00:15:14.010000"],["2024-07-24T00:15:15.010000"],["2024-07-24T00:15:16.010000"],["2024-07-24T00:15:17.010000"],["2024-07-24T00:15:18.010000"],["2024-07-24T00:15:19.010000"],["2024-07-24T00:15:20.010000"],["2024-07-24T00:15:21.010000"],["2024-07-24T00:15:22.010000"],["2024-07-24T00:15:23.010000"],["2024-07-24T00:15:24.010000"],["2024-07-24T00:15:25.010000"],["2024-07-24T00:15:26.010000"],["2024-07-24T00:15:27.010000"],["2024-07-24T00:15:28.010000"],["2024-07-24T00:15:29.010000"],["2024-07-24T00:15:30.010000"],["2024-07-24T00:15:31.010000"],["2024-07-24T00:15:32.010000"],["2024-07-24T00:15:33.010000"],["2024-07-24T00:15:34.010000"],["2024-07-24T00:15:35.010000"],["2024-07-24T00:15:36.010000"],["2024-07-24T00:15:37.010000"],["2024-07-24T00:15:38.010000"],["2024-07-24T00:15:39.010000"],["2024-07-24T00:15:40.010000"],["2024-07-24T00:15:41.010000"],["2024-07-24T00:15:42.010000"],["2024-07-24T00:15:43.010000"],["2024-07-24T00:15:44.010000"],["2024-07-24T00:15:45.010000"],["2024-07-24T00:15:46.010000"],["2024-07-24T00:15:47.010000"],["2024-07-24T00:15:48.010000"],["2024-07-24T00:15:49.010000"],["2024-07-24T00:15:50.010000"],["2024-07-24T00:15:51.010000"],["2024-07-24T00:15:52.010000"],["2024-07-24T00:15:53.010000"],["2024-07-24T00:15:54.010000"],["2024-07-24T00:15:55.010000"],["2024-07-24T00:15:56.010000"],["2024-07-24T00:15:57.010000"],["2024-07-24T00:15:58.010000"],["2024-07-24T00:15:59.010000"],["2024-07-24T00:16:00.010000"],["2024-07-24T00:16:01.010000"],["2024-07-24T00:16:02.010000"],["2024-07-24T00:16:03.010000"],["2024-07-24T00:16:04.010000"],["2024-07-24T00:16:05.010000"],["2024-07-24T00:16:06.010000"],["2024-07-24T00:16:07.010000"],["2024-07-24T00:16:08.010000"],["2024-07-24T00:16:09.010000"],["2024-07-24T00:16:10.010000"],["2024-07-24T00:16:11.010000"],["2024-07-24T00:16:12.010000"],["2024-07-24T00:16:13.010000"],["2024-07-24T00:16:14.010000"],["2024-07-24T00:16:15.010000"],["2024-07-24T00:16:16.010000"],["2024-07-24T00:16:17.010000"],["2024-07-24T00:16:18.010000"],["2024-07-24T00:16:19.010000"],["2024-07-24T00:16:20.010000"],["2024-07-24T00:16:21.010000"],["2024-07-24T00:16:22.010000"],["2024-07-24T00:16:23.010000"],["2024-07-24T00:16:24.010000"],["2024-07-24T00:16:25.010000"],["2024-07-24T00:16:26.010000"],["2024-07-24T00:16:27.010000"],["2024-07-24T00:16:28.010000"],["2024-07-24T00:16:29.010000"],["2024-07-24T00:16:30.010000"],["2024-07-24T00:16:31.010000"],["2024-07-24T00:16:32.010000"],["2024-07-24T00:16:33.010000"],["2024-07-24T00:16:34.010000"],["2024-07-24T00:16:35.010000"],["2024-07-24T00:16:36.010000"],["2024-07-24T00:16:37.010000"],["2024-07-24T00:16:38.010000"],["2024-07-24T00:16:39.010000"],["2024-07-24T00:16:40.010000"],["2024-07-24T00:16:41.010000"],["2024-07-24T00:16:42.010000"],["2024-07-24T00:16:43.010000"],["2024-07-24T00:16:44.010000"],["2024-07-24T00:16:45.010000"],["2024-07-24T00:16:46.010000"],["2024-07-24T00:16:47.010000"],["2024-07-24T00:16:48.010000"],["2024-07-24T00:16:49.010000"],["2024-07-24T00:16:50.010000"],["2024-07-24T00:16:51.010000"],["2024-07-24T00:16:52.010000"],["2024-07-24T00:16:53.010000"],["2024-07-24T00:16:54.010000"],["2024-07-24T00:16:55.010000"],["2024-07-24T00:16:56.010000"],["2024-07-24T00:16:57.010000"],["2024-07-24T00:16:58.010000"],["2024-07-24T00:16:59.010000"],["2024-07-24T00:17:00.010000"],["2024-07-24T00:17:01.010000"],["2024-07-24T00:17:02.010000"],["2024-07-24T00:17:03.010000"],["2024-07-24T00:17:04.010000"],["2024-07-24T00:17:05.010000"],["2024-07-24T00:17:06.010000"],["2024-07-24T00:17:07.010000"],["2024-07-24T00:17:08.010000"],["2024-07-24T00:17:09.010000"],["2024-07-24T00:17:10.010000"],["2024-07-24T00:17:11.010000"],["2024-07-24T00:17:12.010000"],["2024-07-24T00:17:13.010000"],["2024-07-24T00:17:14.010000"],["2024-07-24T00:17:15.010000"],["2024-07-24T00:17:16.010000"],["2024-07-24T00:17:17.010000"],["2024-07-24T00:17:18.010000"],["2024-07-24T00:17:19.010000"],["2024-07-24T00:17:20.010000"],["2024-07-24T00:17:21.010000"],["2024-07-24T00:17:22.010000"],["2024-07-24T00:17:23.010000"],["2024-07-24T00:17:24.010000"],["2024-07-24T00:17:25.010000"],["2024-07-24T00:17:26.010000"],["2024-07-24T00:17:27.010000"],["2024-07-24T00:17:28.010000"],["2024-07-24T00:17:29.010000"],["2024-07-24T00:17:30.010000"],["2024-07-24T00:17:31.010000"],["2024-07-24T00:17:32.010000"],["2024-07-24T00:17:33.010000"],["2024-07-24T00:17:34.010000"],["2024-07-24T00:17:35.010000"],["2024-07-24T00:17:36.010000"],["2024-07-24T00:17:37.010000"],["2024-07-24T00:17:38.010000"],["2024-07-24T00:17:39.010000"],["2024-07-24T00:17:40.010000"],["2024-07-24T00:17:41.010000"],["2024-07-24T00:17:42.010000"],["2024-07-24T00:17:43.010000"],["2024-07-24T00:17:44.010000"],["2024-07-24T00:17:45.010000"],["2024-07-24T00:17:46.010000"],["2024-07-24T00:17:47.010000"],["2024-07-24T00:17:48.010000"],["2024-07-24T00:17:49.010000"],["2024-07-24T00:17:50.010000"],["2024-07-24T00:17:51.010000"],["2024-07-24T00:17:52.010000"],["2024-07-24T00:17:53.010000"],["2024-07-24T00:17:54.010000"],["2024-07-24T00:17:55.010000"],["2024-07-24T00:17:56.010000"],["2024-07-24T00:17:57.010000"],["2024-07-24T00:17:58.010000"],["2024-07-24T00:17:59.010000"],["2024-07-24T00:18:00.010000"],["2024-07-24T00:18:01.010000"],["2024-07-24T00:18:02.010000"],["2024-07-24T00:18:03.010000"],["2024-07-24T00:18:04.010000"],["2024-07-24T00:18:05.010000"],["2024-07-24T00:18:06.010000"],["2024-07-24T00:18:07.010000"],["2024-07-24T00:18:08.010000"],["2024-07-24T00:18:09.010000"],["2024-07-24T00:18:10.010000"],["2024-07-24T00:18:11.010000"],["2024-07-24T00:18:12.010000"],["2024-07-24T00:18:13.010000"],["2024-07-24T00:18:14.010000"],["2024-07-24T00:18:15.010000"],["2024-07-24T00:18:16.010000"],["2024-07-24T00:18:17.010000"],["2024-07-24T00:18:18.010000"],["2024-07-24T00:18:19.010000"],["2024-07-24T00:18:20.010000"],["2024-07-24T00:18:21.010000"],["2024-07-24T00:18:22.010000"],["2024-07-24T00:18:23.010000"],["2024-07-24T00:18:24.010000"],["2024-07-24T00:18:25.010000"],["2024-07-24T00:18:26.010000"],["2024-07-24T00:18:27.010000"],["2024-07-24T00:18:28.010000"],["2024-07-24T00:18:29.010000"],["2024-07-24T00:18:30.010000"],["2024-07-24T00:18:31.010000"],["2024-07-24T00:18:32.010000"],["2024-07-24T00:18:33.010000"],["2024-07-24T00:18:34.010000"],["2024-07-24T00:18:35.010000"],["2024-07-24T00:18:36.010000"],["2024-07-24T00:18:37.010000"],["2024-07-24T00:18:38.010000"],["2024-07-24T00:18:39.010000"],["2024-07-24T00:18:40.010000"],["2024-07-24T00:18:41.010000"],["2024-07-24T00:18:42.010000"],["2024-07-24T00:18:43.010000"],["2024-07-24T00:18:44.010000"],["2024-07-24T00:18:45.010000"],["2024-07-24T00:18:46.010000"],["2024-07-24T00:18:47.010000"],["2024-07-24T00:18:48.010000"],["2024-07-24T00:18:49.010000"],["2024-07-24T00:18:50.010000"],["2024-07-24T00:18:51.010000"],["2024-07-24T00:18:52.010000"],["2024-07-24T00:18:53.010000"],["2024-07-24T00:18:54.010000"],["2024-07-24T00:18:55.010000"],["2024-07-24T00:18:56.010000"],["2024-07-24T00:18:57.010000"],["2024-07-24T00:18:58.010000"],["2024-07-24T00:18:59.010000"],["2024-07-24T00:19:00.010000"],["2024-07-24T00:19:01.010000"],["2024-07-24T00:19:02.010000"],["2024-07-24T00:19:03.010000"],["2024-07-24T00:19:04.010000"],["2024-07-24T00:19:05.010000"],["2024-07-24T00:19:06.010000"],["2024-07-24T00:19:07.010000"],["2024-07-24T00:19:08.010000"],["2024-07-24T00:19:09.010000"],["2024-07-24T00:19:10.010000"],["2024-07-24T00:19:11.010000"],["2024-07-24T00:19:12.010000"],["2024-07-24T00:19:13.010000"],["2024-07-24T00:19:14.010000"],["2024-07-24T00:19:15.010000"],["2024-07-24T00:19:16.010000"],["2024-07-24T00:19:17.010000"],["2024-07-24T00:19:18.010000"],["2024-07-24T00:19:19.010000"],["2024-07-24T00:19:20.010000"],["2024-07-24T00:19:21.010000"],["2024-07-24T00:19:22.010000"],["2024-07-24T00:19:23.010000"],["2024-07-24T00:19:24.010000"],["2024-07-24T00:19:25.010000"],["2024-07-24T00:19:26.010000"],["2024-07-24T00:19:27.010000"],["2024-07-24T00:19:28.010000"],["2024-07-24T00:19:29.010000"],["2024-07-24T00:19:30.010000"],["2024-07-24T00:19:31.010000"],["2024-07-24T00:19:32.010000"],["2024-07-24T00:19:33.010000"],["2024-07-24T00:19:34.010000"],["2024-07-24T00:19:35.010000"],["2024-07-24T00:19:36.010000"],["2024-07-24T00:19:37.010000"],["2024-07-24T00:19:38.010000"],["2024-07-24T00:19:39.010000"],["2024-07-24T00:19:40.010000"],["2024-07-24T00:19:41.010000"],["2024-07-24T00:19:42.010000"],["2024-07-24T00:19:43.010000"],["2024-07-24T00:19:44.010000"],["2024-07-24T00:19:45.010000"],["2024-07-24T00:19:46.010000"],["2024-07-24T00:19:47.010000"],["2024-07-24T00:19:48.010000"],["2024-07-24T00:19:49.010000"],["2024-07-24T00:19:50.010000"],["2024-07-24T00:19:51.010000"],["2024-07-24T00:19:52.010000"],["2024-07-24T00:19:53.010000"],["2024-07-24T00:19:54.010000"],["2024-07-24T00:19:55.010000"],["2024-07-24T00:19:56.010000"],["2024-07-24T00:19:57.010000"],["2024-07-24T00:19:58.010000"],["2024-07-24T00:19:59.010000"],["2024-07-24T00:20:00.010000"],["2024-07-24T00:20:01.010000"],["2024-07-24T00:20:02.010000"],["2024-07-24T00:20:03.010000"],["2024-07-24T00:20:04.010000"],["2024-07-24T00:20:05.010000"],["2024-07-24T00:20:06.010000"],["2024-07-24T00:20:07.010000"],["2024-07-24T00:20:08.010000"],["2024-07-24T00:20:09.010000"],["2024-07-24T00:20:10.010000"],["2024-07-24T00:20:11.010000"],["2024-07-24T00:20:12.010000"],["2024-07-24T00:20:13.010000"],["2024-07-24T00:20:14.010000"],["2024-07-24T00:20:15.010000"],["2024-07-24T00:20:16.010000"],["2024-07-24T00:20:17.010000"],["2024-07-24T00:20:18.010000"],["2024-07-24T00:20:19.010000"],["2024-07-24T00:20:20.010000"],["2024-07-24T00:20:21.010000"],["2024-07-24T00:20:22.010000"],["2024-07-24T00:20:23.010000"],["2024-07-24T00:20:24.010000"],["2024-07-24T00:20:25.010000"],["2024-07-24T00:20:26.010000"],["2024-07-24T00:20:27.010000"],["2024-07-24T00:20:28.010000"],["2024-07-24T00:20:29.010000"],["2024-07-24T00:20:30.010000"],["2024-07-24T00:20:31.010000"],["2024-07-24T00:20:32.010000"],["2024-07-24T00:20:33.010000"],["2024-07-24T00:20:34.010000"],["2024-07-24T00:20:35.010000"],["2024-07-24T00:20:36.010000"],["2024-07-24T00:20:37.010000"],["2024-07-24T00:20:38.010000"],["2024-07-24T00:20:39.010000"],["2024-07-24T00:20:40.010000"],["2024-07-24T00:20:41.010000"],["2024-07-24T00:20:42.010000"],["2024-07-24T00:20:43.010000"],["2024-07-24T00:20:44.010000"],["2024-07-24T00:20:45.010000"],["2024-07-24T00:20:46.010000"],["2024-07-24T00:20:47.010000"],["2024-07-24T00:20:48.010000"],["2024-07-24T00:20:49.010000"],["2024-07-24T00:20:50.010000"],["2024-07-24T00:20:51.010000"],["2024-07-24T00:20:52.010000"],["2024-07-24T00:20:53.010000"],["2024-07-24T00:20:54.010000"],["2024-07-24T00:20:55.010000"],["2024-07-24T00:20:56.010000"],["2024-07-24T00:20:57.010000"],["2024-07-24T00:20:58.010000"],["2024-07-24T00:20:59.010000"],["2024-07-24T00:21:00.010000"],["2024-07-24T00:21:01.010000"],["2024-07-24T00:21:02.010000"],["2024-07-24T00:21:03.010000"],["2024-07-24T00:21:04.010000"],["2024-07-24T00:21:05.010000"],["2024-07-24T00:21:06.010000"],["2024-07-24T00:21:07.010000"],["2024-07-24T00:21:08.010000"],["2024-07-24T00:21:09.010000"],["2024-07-24T00:21:10.010000"],["2024-07-24T00:21:11.010000"],["2024-07-24T00:21:12.010000"],["2024-07-24T00:21:13.010000"],["2024-07-24T00:21:14.010000"],["2024-07-24T00:21:15.010000"],["2024-07-24T00:21:16.010000"],["2024-07-24T00:21:17.010000"],["2024-07-24T00:21:18.010000"],["2024-07-24T00:21:19.010000"],["2024-07-24T00:21:20.010000"],["2024-07-24T00:21:21.010000"],["2024-07-24T00:21:22.010000"],["2024-07-24T00:21:23.010000"],["2024-07-24T00:21:24.010000"],["2024-07-24T00:21:25.010000"],["2024-07-24T00:21:26.010000"],["2024-07-24T00:21:27.010000"],["2024-07-24T00:21:28.010000"],["2024-07-24T00:21:29.010000"],["2024-07-24T00:21:30.010000"],["2024-07-24T00:21:31.010000"],["2024-07-24T00:21:32.010000"],["2024-07-24T00:21:33.010000"],["2024-07-24T00:21:34.010000"],["2024-07-24T00:21:35.010000"],["2024-07-24T00:21:36.010000"],["2024-07-24T00:21:37.010000"],["2024-07-24T00:21:38.010000"],["2024-07-24T00:21:39.010000"],["2024-07-24T00:21:40.010000"],["2024-07-24T00:21:41.010000"],["2024-07-24T00:21:42.010000"],["2024-07-24T00:21:43.010000"],["2024-07-24T00:21:44.010000"],["2024-07-24T00:21:45.010000"],["2024-07-24T00:21:46.010000"],["2024-07-24T00:21:47.010000"],["2024-07-24T00:21:48.010000"],["2024-07-24T00:21:49.010000"],["2024-07-24T00:21:50.010000"],["2024-07-24T00:21:51.010000"],["2024-07-24T00:21:52.010000"],["2024-07-24T00:21:53.010000"],["2024-07-24T00:21:54.010000"],["2024-07-24T00:21:55.010000"],["2024-07-24T00:21:56.010000"],["2024-07-24T00:21:57.010000"],["2024-07-24T00:21:58.010000"],["2024-07-24T00:21:59.010000"],["2024-07-24T00:22:00.010000"],["2024-07-24T00:22:01.010000"],["2024-07-24T00:22:02.010000"],["2024-07-24T00:22:03.010000"],["2024-07-24T00:22:04.010000"],["2024-07-24T00:22:05.010000"],["2024-07-24T00:22:06.010000"],["2024-07-24T00:22:07.010000"],["2024-07-24T00:22:08.010000"],["2024-07-24T00:22:09.010000"],["2024-07-24T00:22:10.010000"],["2024-07-24T00:22:11.010000"],["2024-07-24T00:22:12.010000"],["2024-07-24T00:22:13.010000"],["2024-07-24T00:22:14.010000"],["2024-07-24T00:22:15.010000"],["2024-07-24T00:22:16.010000"],["2024-07-24T00:22:17.010000"],["2024-07-24T00:22:18.010000"],["2024-07-24T00:22:19.010000"],["2024-07-24T00:22:20.010000"],["2024-07-24T00:22:21.010000"],["2024-07-24T00:22:22.010000"],["2024-07-24T00:22:23.010000"],["2024-07-24T00:22:24.010000"],["2024-07-24T00:22:25.010000"],["2024-07-24T00:22:26.010000"],["2024-07-24T00:22:27.010000"],["2024-07-24T00:22:28.010000"],["2024-07-24T00:22:29.010000"],["2024-07-24T00:22:30.010000"],["2024-07-24T00:22:31.010000"],["2024-07-24T00:22:32.010000"],["2024-07-24T00:22:33.010000"],["2024-07-24T00:22:34.010000"],["2024-07-24T00:22:35.010000"],["2024-07-24T00:22:36.010000"],["2024-07-24T00:22:37.010000"],["2024-07-24T00:22:38.010000"],["2024-07-24T00:22:39.010000"],["2024-07-24T00:22:40.010000"],["2024-07-24T00:22:41.010000"],["2024-07-24T00:22:42.010000"],["2024-07-24T00:22:43.010000"],["2024-07-24T00:22:44.010000"],["2024-07-24T00:22:45.010000"],["2024-07-24T00:22:46.010000"],["2024-07-24T00:22:47.010000"],["2024-07-24T00:22:48.010000"],["2024-07-24T00:22:49.010000"],["2024-07-24T00:22:50.010000"],["2024-07-24T00:22:51.010000"],["2024-07-24T00:22:52.010000"],["2024-07-24T00:22:53.010000"],["2024-07-24T00:22:54.010000"],["2024-07-24T00:22:55.010000"],["2024-07-24T00:22:56.010000"],["2024-07-24T00:22:57.010000"],["2024-07-24T00:22:58.010000"],["2024-07-24T00:22:59.010000"],["2024-07-24T00:23:00.010000"],["2024-07-24T00:23:01.010000"],["2024-07-24T00:23:02.010000"],["2024-07-24T00:23:03.010000"],["2024-07-24T00:23:04.010000"],["2024-07-24T00:23:05.010000"],["2024-07-24T00:23:06.010000"],["2024-07-24T00:23:07.010000"],["2024-07-24T00:23:08.010000"],["2024-07-24T00:23:09.010000"],["2024-07-24T00:23:10.010000"],["2024-07-24T00:23:11.010000"],["2024-07-24T00:23:12.010000"],["2024-07-24T00:23:13.010000"],["2024-07-24T00:23:14.010000"],["2024-07-24T00:23:15.010000"],["2024-07-24T00:23:16.010000"],["2024-07-24T00:23:17.010000"],["2024-07-24T00:23:18.010000"],["2024-07-24T00:23:19.010000"],["2024-07-24T00:23:20.010000"],["2024-07-24T00:23:21.010000"],["2024-07-24T00:23:22.010000"],["2024-07-24T00:23:23.010000"],["2024-07-24T00:23:24.010000"],["2024-07-24T00:23:25.010000"],["2024-07-24T00:23:26.010000"],["2024-07-24T00:23:27.010000"],["2024-07-24T00:23:28.010000"],["2024-07-24T00:23:29.010000"],["2024-07-24T00:23:30.010000"],["2024-07-24T00:23:31.010000"],["2024-07-24T00:23:32.010000"],["2024-07-24T00:23:33.010000"],["2024-07-24T00:23:34.010000"],["2024-07-24T00:23:35.010000"],["2024-07-24T00:23:36.010000"],["2024-07-24T00:23:37.010000"],["2024-07-24T00:23:38.010000"],["2024-07-24T00:23:39.010000"],["2024-07-24T00:23:40.010000"],["2024-07-24T00:23:41.010000"],["2024-07-24T00:23:42.010000"],["2024-07-24T00:23:43.010000"],["2024-07-24T00:23:44.010000"],["2024-07-24T00:23:45.010000"],["2024-07-24T00:23:46.010000"],["2024-07-24T00:23:47.010000"],["2024-07-24T00:23:48.010000"],["2024-07-24T00:23:49.010000"],["2024-07-24T00:23:50.010000"],["2024-07-24T00:23:51.010000"],["2024-07-24T00:23:52.010000"],["2024-07-24T00:23:53.010000"],["2024-07-24T00:23:54.010000"],["2024-07-24T00:23:55.010000"],["2024-07-24T00:23:56.010000"],["2024-07-24T00:23:57.010000"],["2024-07-24T00:23:58.010000"],["2024-07-24T00:23:59.010000"],["2024-07-24T00:24:00.010000"],["2024-07-24T00:24:01.010000"],["2024-07-24T00:24:02.010000"],["2024-07-24T00:24:03.010000"],["2024-07-24T00:24:04.010000"],["2024-07-24T00:24:05.010000"],["2024-07-24T00:24:06.010000"],["2024-07-24T00:24:07.010000"],["2024-07-24T00:24:08.010000"],["2024-07-24T00:24:09.010000"],["2024-07-24T00:24:10.010000"],["2024-07-24T00:24:11.010000"],["2024-07-24T00:24:12.010000"],["2024-07-24T00:24:13.010000"],["2024-07-24T00:24:14.010000"],["2024-07-24T00:24:15.010000"],["2024-07-24T00:24:16.010000"],["2024-07-24T00:24:17.010000"],["2024-07-24T00:24:18.010000"],["2024-07-24T00:24:19.010000"],["2024-07-24T00:24:20.010000"],["2024-07-24T00:24:21.010000"],["2024-07-24T00:24:22.010000"],["2024-07-24T00:24:23.010000"],["2024-07-24T00:24:24.010000"],["2024-07-24T00:24:25.010000"],["2024-07-24T00:24:26.010000"],["2024-07-24T00:24:27.010000"],["2024-07-24T00:24:28.010000"],["2024-07-24T00:24:29.010000"],["2024-07-24T00:24:30.010000"],["2024-07-24T00:24:31.010000"],["2024-07-24T00:24:32.010000"],["2024-07-24T00:24:33.010000"],["2024-07-24T00:24:34.010000"],["2024-07-24T00:24:35.010000"],["2024-07-24T00:24:36.010000"],["2024-07-24T00:24:37.010000"],["2024-07-24T00:24:38.010000"],["2024-07-24T00:24:39.010000"],["2024-07-24T00:24:40.010000"],["2024-07-24T00:24:41.010000"],["2024-07-24T00:24:42.010000"],["2024-07-24T00:24:43.010000"],["2024-07-24T00:24:44.010000"],["2024-07-24T00:24:45.010000"],["2024-07-24T00:24:46.010000"],["2024-07-24T00:24:47.010000"],["2024-07-24T00:24:48.010000"],["2024-07-24T00:24:49.010000"],["2024-07-24T00:24:50.010000"],["2024-07-24T00:24:51.010000"],["2024-07-24T00:24:52.010000"],["2024-07-24T00:24:53.010000"],["2024-07-24T00:24:54.010000"],["2024-07-24T00:24:55.010000"],["2024-07-24T00:24:56.010000"],["2024-07-24T00:24:57.010000"],["2024-07-24T00:24:58.010000"],["2024-07-24T00:24:59.010000"],["2024-07-24T00:25:00.010000"],["2024-07-24T00:25:01.010000"],["2024-07-24T00:25:02.010000"],["2024-07-24T00:25:03.010000"],["2024-07-24T00:25:04.010000"],["2024-07-24T00:25:05.010000"],["2024-07-24T00:25:06.010000"],["2024-07-24T00:25:07.010000"],["2024-07-24T00:25:08.010000"],["2024-07-24T00:25:09.010000"],["2024-07-24T00:25:10.010000"],["2024-07-24T00:25:11.010000"],["2024-07-24T00:25:12.010000"],["2024-07-24T00:25:13.010000"],["2024-07-24T00:25:14.010000"],["2024-07-24T00:25:15.010000"],["2024-07-24T00:25:16.010000"],["2024-07-24T00:25:17.010000"],["2024-07-24T00:25:18.010000"],["2024-07-24T00:25:19.010000"],["2024-07-24T00:25:20.010000"],["2024-07-24T00:25:21.010000"],["2024-07-24T00:25:22.010000"],["2024-07-24T00:25:23.010000"],["2024-07-24T00:25:24.010000"],["2024-07-24T00:25:25.010000"],["2024-07-24T00:25:26.010000"],["2024-07-24T00:25:27.010000"],["2024-07-24T00:25:28.010000"],["2024-07-24T00:25:29.010000"],["2024-07-24T00:25:30.010000"],["2024-07-24T00:25:31.010000"],["2024-07-24T00:25:32.010000"],["2024-07-24T00:25:33.010000"],["2024-07-24T00:25:34.010000"],["2024-07-24T00:25:35.010000"],["2024-07-24T00:25:36.010000"],["2024-07-24T00:25:37.010000"],["2024-07-24T00:25:38.010000"],["2024-07-24T00:25:39.010000"],["2024-07-24T00:25:40.010000"],["2024-07-24T00:25:41.010000"],["2024-07-24T00:25:42.010000"],["2024-07-24T00:25:43.010000"],["2024-07-24T00:25:44.010000"],["2024-07-24T00:25:45.010000"],["2024-07-24T00:25:46.010000"],["2024-07-24T00:25:47.010000"],["2024-07-24T00:25:48.010000"],["2024-07-24T00:25:49.010000"],["2024-07-24T00:25:50.010000"],["2024-07-24T00:25:51.010000"],["2024-07-24T00:25:52.010000"],["2024-07-24T00:25:53.010000"],["2024-07-24T00:25:54.010000"],["2024-07-24T00:25:55.010000"],["2024-07-24T00:25:56.010000"],["2024-07-24T00:25:57.010000"],["2024-07-24T00:25:58.010000"],["2024-07-24T00:25:59.010000"],["2024-07-24T00:26:00.010000"],["2024-07-24T00:26:01.010000"],["2024-07-24T00:26:02.010000"],["2024-07-24T00:26:03.010000"],["2024-07-24T00:26:04.010000"],["2024-07-24T00:26:05.010000"],["2024-07-24T00:26:06.010000"],["2024-07-24T00:26:07.010000"],["2024-07-24T00:26:08.010000"],["2024-07-24T00:26:09.010000"],["2024-07-24T00:26:10.010000"],["2024-07-24T00:26:11.010000"],["2024-07-24T00:26:12.010000"],["2024-07-24T00:26:13.010000"],["2024-07-24T00:26:14.010000"],["2024-07-24T00:26:15.010000"],["2024-07-24T00:26:16.010000"],["2024-07-24T00:26:17.010000"],["2024-07-24T00:26:18.010000"],["2024-07-24T00:26:19.010000"],["2024-07-24T00:26:20.010000"],["2024-07-24T00:26:21.010000"],["2024-07-24T00:26:22.010000"],["2024-07-24T00:26:23.010000"],["2024-07-24T00:26:24.010000"],["2024-07-24T00:26:25.010000"],["2024-07-24T00:26:26.010000"],["2024-07-24T00:26:27.010000"],["2024-07-24T00:26:28.010000"],["2024-07-24T00:26:29.010000"],["2024-07-24T00:26:30.010000"],["2024-07-24T00:26:31.010000"],["2024-07-24T00:26:32.010000"],["2024-07-24T00:26:33.010000"],["2024-07-24T00:26:34.010000"],["2024-07-24T00:26:35.010000"],["2024-07-24T00:26:36.010000"],["2024-07-24T00:26:37.010000"],["2024-07-24T00:26:38.010000"],["2024-07-24T00:26:39.010000"],["2024-07-24T00:26:40.010000"],["2024-07-24T00:26:41.010000"],["2024-07-24T00:26:42.010000"],["2024-07-24T00:26:43.010000"],["2024-07-24T00:26:44.010000"],["2024-07-24T00:26:45.010000"],["2024-07-24T00:26:46.010000"],["2024-07-24T00:26:47.010000"],["2024-07-24T00:26:48.010000"],["2024-07-24T00:26:49.010000"],["2024-07-24T00:26:50.010000"],["2024-07-24T00:26:51.010000"],["2024-07-24T00:26:52.010000"],["2024-07-24T00:26:53.010000"],["2024-07-24T00:26:54.010000"],["2024-07-24T00:26:55.010000"],["2024-07-24T00:26:56.010000"],["2024-07-24T00:26:57.010000"],["2024-07-24T00:26:58.010000"],["2024-07-24T00:26:59.010000"],["2024-07-24T00:27:00.010000"],["2024-07-24T00:27:01.010000"],["2024-07-24T00:27:02.010000"],["2024-07-24T00:27:03.010000"],["2024-07-24T00:27:04.010000"],["2024-07-24T00:27:05.010000"],["2024-07-24T00:27:06.010000"],["2024-07-24T00:27:07.010000"],["2024-07-24T00:27:08.010000"],["2024-07-24T00:27:09.010000"],["2024-07-24T00:27:10.010000"],["2024-07-24T00:27:11.010000"],["2024-07-24T00:27:12.010000"],["2024-07-24T00:27:13.010000"],["2024-07-24T00:27:14.010000"],["2024-07-24T00:27:15.010000"],["2024-07-24T00:27:16.010000"],["2024-07-24T00:27:17.010000"],["2024-07-24T00:27:18.010000"],["2024-07-24T00:27:19.010000"],["2024-07-24T00:27:20.010000"],["2024-07-24T00:27:21.010000"],["2024-07-24T00:27:22.010000"],["2024-07-24T00:27:23.010000"],["2024-07-24T00:27:24.010000"],["2024-07-24T00:27:25.010000"],["2024-07-24T00:27:26.010000"],["2024-07-24T00:27:27.010000"],["2024-07-24T00:27:28.010000"],["2024-07-24T00:27:29.010000"],["2024-07-24T00:27:30.010000"],["2024-07-24T00:27:31.010000"],["2024-07-24T00:27:32.010000"],["2024-07-24T00:27:33.010000"],["2024-07-24T00:27:34.010000"],["2024-07-24T00:27:35.010000"],["2024-07-24T00:27:36.010000"],["2024-07-24T00:27:37.010000"],["2024-07-24T00:27:38.010000"],["2024-07-24T00:27:39.010000"],["2024-07-24T00:27:40.010000"],["2024-07-24T00:27:41.010000"],["2024-07-24T00:27:42.010000"],["2024-07-24T00:27:43.010000"],["2024-07-24T00:27:44.010000"],["2024-07-24T00:27:45.010000"],["2024-07-24T00:27:46.010000"],["2024-07-24T00:27:47.010000"],["2024-07-24T00:27:48.010000"],["2024-07-24T00:27:49.010000"],["2024-07-24T00:27:50.010000"],["2024-07-24T00:27:51.010000"],["2024-07-24T00:27:52.010000"],["2024-07-24T00:27:53.010000"],["2024-07-24T00:27:54.010000"],["2024-07-24T00:27:55.010000"],["2024-07-24T00:27:56.010000"],["2024-07-24T00:27:57.010000"],["2024-07-24T00:27:58.010000"],["2024-07-24T00:27:59.010000"],["2024-07-24T00:28:00.010000"],["2024-07-24T00:28:01.010000"],["2024-07-24T00:28:02.010000"],["2024-07-24T00:28:03.010000"],["2024-07-24T00:28:04.010000"],["2024-07-24T00:28:05.010000"],["2024-07-24T00:28:06.010000"],["2024-07-24T00:28:07.010000"],["2024-07-24T00:28:08.010000"],["2024-07-24T00:28:09.010000"],["2024-07-24T00:28:10.010000"],["2024-07-24T00:28:11.010000"],["2024-07-24T00:28:12.010000"],["2024-07-24T00:28:13.010000"],["2024-07-24T00:28:14.010000"],["2024-07-24T00:28:15.010000"],["2024-07-24T00:28:16.010000"],["2024-07-24T00:28:17.010000"],["2024-07-24T00:28:18.010000"],["2024-07-24T00:28:19.010000"],["2024-07-24T00:28:20.010000"],["2024-07-24T00:28:21.010000"],["2024-07-24T00:28:22.010000"],["2024-07-24T00:28:23.010000"],["2024-07-24T00:28:24.010000"],["2024-07-24T00:28:25.010000"],["2024-07-24T00:28:26.010000"],["2024-07-24T00:28:27.010000"],["2024-07-24T00:28:28.010000"],["2024-07-24T00:28:29.010000"],["2024-07-24T00:28:30.010000"],["2024-07-24T00:28:31.010000"],["2024-07-24T00:28:32.010000"],["2024-07-24T00:28:33.010000"],["2024-07-24T00:28:34.010000"],["2024-07-24T00:28:35.010000"],["2024-07-24T00:28:36.010000"],["2024-07-24T00:28:37.010000"],["2024-07-24T00:28:38.010000"],["2024-07-24T00:28:39.010000"],["2024-07-24T00:28:40.010000"],["2024-07-24T00:28:41.010000"],["2024-07-24T00:28:42.010000"],["2024-07-24T00:28:43.010000"],["2024-07-24T00:28:44.010000"],["2024-07-24T00:28:45.010000"],["2024-07-24T00:28:46.010000"],["2024-07-24T00:28:47.010000"],["2024-07-24T00:28:48.010000"],["2024-07-24T00:28:49.010000"],["2024-07-24T00:28:50.010000"],["2024-07-24T00:28:51.010000"],["2024-07-24T00:28:52.010000"],["2024-07-24T00:28:53.010000"],["2024-07-24T00:28:54.010000"],["2024-07-24T00:28:55.010000"],["2024-07-24T00:28:56.010000"],["2024-07-24T00:28:57.010000"],["2024-07-24T00:28:58.010000"],["2024-07-24T00:28:59.010000"],["2024-07-24T00:29:00.010000"],["2024-07-24T00:29:01.010000"],["2024-07-24T00:29:02.010000"],["2024-07-24T00:29:03.010000"],["2024-07-24T00:29:04.010000"],["2024-07-24T00:29:05.010000"],["2024-07-24T00:29:06.010000"],["2024-07-24T00:29:07.010000"],["2024-07-24T00:29:08.010000"],["2024-07-24T00:29:09.010000"],["2024-07-24T00:29:10.010000"],["2024-07-24T00:29:11.010000"],["2024-07-24T00:29:12.010000"],["2024-07-24T00:29:13.010000"],["2024-07-24T00:29:14.010000"],["2024-07-24T00:29:15.010000"],["2024-07-24T00:29:16.010000"],["2024-07-24T00:29:17.010000"],["2024-07-24T00:29:18.010000"],["2024-07-24T00:29:19.010000"],["2024-07-24T00:29:20.010000"],["2024-07-24T00:29:21.010000"],["2024-07-24T00:29:22.010000"],["2024-07-24T00:29:23.010000"],["2024-07-24T00:29:24.010000"],["2024-07-24T00:29:25.010000"],["2024-07-24T00:29:26.010000"],["2024-07-24T00:29:27.010000"],["2024-07-24T00:29:28.010000"],["2024-07-24T00:29:29.010000"],["2024-07-24T00:29:30.010000"],["2024-07-24T00:29:31.010000"],["2024-07-24T00:29:32.010000"],["2024-07-24T00:29:33.010000"],["2024-07-24T00:29:34.010000"],["2024-07-24T00:29:35.010000"],["2024-07-24T00:29:36.010000"],["2024-07-24T00:29:37.010000"],["2024-07-24T00:29:38.010000"],["2024-07-24T00:29:39.010000"],["2024-07-24T00:29:40.010000"],["2024-07-24T00:29:41.010000"],["2024-07-24T00:29:42.010000"],["2024-07-24T00:29:43.010000"],["2024-07-24T00:29:44.010000"],["2024-07-24T00:29:45.010000"],["2024-07-24T00:29:46.010000"],["2024-07-24T00:29:47.010000"],["2024-07-24T00:29:48.010000"],["2024-07-24T00:29:49.010000"],["2024-07-24T00:29:50.010000"],["2024-07-24T00:29:51.010000"],["2024-07-24T00:29:52.010000"],["2024-07-24T00:29:53.010000"],["2024-07-24T00:29:54.010000"],["2024-07-24T00:29:55.010000"],["2024-07-24T00:29:56.010000"],["2024-07-24T00:29:57.010000"],["2024-07-24T00:29:58.010000"],["2024-07-24T00:29:59.010000"],["2024-07-24T00:30:00.010000"],["2024-07-24T00:30:01.010000"],["2024-07-24T00:30:02.010000"],["2024-07-24T00:30:03.010000"],["2024-07-24T00:30:04.010000"],["2024-07-24T00:30:05.010000"],["2024-07-24T00:30:06.010000"],["2024-07-24T00:30:07.010000"],["2024-07-24T00:30:08.010000"],["2024-07-24T00:30:09.010000"],["2024-07-24T00:30:10.010000"],["2024-07-24T00:30:11.010000"],["2024-07-24T00:30:12.010000"],["2024-07-24T00:30:13.010000"],["2024-07-24T00:30:14.010000"],["2024-07-24T00:30:15.010000"],["2024-07-24T00:30:16.010000"],["2024-07-24T00:30:17.010000"],["2024-07-24T00:30:18.010000"],["2024-07-24T00:30:19.010000"],["2024-07-24T00:30:20.010000"],["2024-07-24T00:30:21.010000"],["2024-07-24T00:30:22.010000"],["2024-07-24T00:30:23.010000"],["2024-07-24T00:30:24.010000"],["2024-07-24T00:30:25.010000"],["2024-07-24T00:30:26.010000"],["2024-07-24T00:30:27.010000"],["2024-07-24T00:30:28.010000"],["2024-07-24T00:30:29.010000"],["2024-07-24T00:30:30.010000"],["2024-07-24T00:30:31.010000"],["2024-07-24T00:30:32.010000"],["2024-07-24T00:30:33.010000"],["2024-07-24T00:30:34.010000"],["2024-07-24T00:30:35.010000"],["2024-07-24T00:30:36.010000"],["2024-07-24T00:30:37.010000"],["2024-07-24T00:30:38.010000"],["2024-07-24T00:30:39.010000"],["2024-07-24T00:30:40.010000"],["2024-07-24T00:30:41.010000"],["2024-07-24T00:30:42.010000"],["2024-07-24T00:30:43.010000"],["2024-07-24T00:30:44.010000"],["2024-07-24T00:30:45.010000"],["2024-07-24T00:30:46.010000"],["2024-07-24T00:30:47.010000"],["2024-07-24T00:30:48.010000"],["2024-07-24T00:30:49.010000"],["2024-07-24T00:30:50.010000"],["2024-07-24T00:30:51.010000"],["2024-07-24T00:30:52.010000"],["2024-07-24T00:30:53.010000"],["2024-07-24T00:30:54.010000"],["2024-07-24T00:30:55.010000"],["2024-07-24T00:30:56.010000"],["2024-07-24T00:30:57.010000"],["2024-07-24T00:30:58.010000"],["2024-07-24T00:30:59.010000"],["2024-07-24T00:31:00.010000"],["2024-07-24T00:31:01.010000"],["2024-07-24T00:31:02.010000"],["2024-07-24T00:31:03.010000"],["2024-07-24T00:31:04.010000"],["2024-07-24T00:31:05.010000"],["2024-07-24T00:31:06.010000"],["2024-07-24T00:31:07.010000"],["2024-07-24T00:31:08.010000"],["2024-07-24T00:31:09.010000"],["2024-07-24T00:31:10.010000"],["2024-07-24T00:31:11.010000"],["2024-07-24T00:31:12.010000"],["2024-07-24T00:31:13.010000"],["2024-07-24T00:31:14.010000"],["2024-07-24T00:31:15.010000"],["2024-07-24T00:31:16.010000"],["2024-07-24T00:31:17.010000"],["2024-07-24T00:31:18.010000"],["2024-07-24T00:31:19.010000"],["2024-07-24T00:31:20.010000"],["2024-07-24T00:31:21.010000"],["2024-07-24T00:31:22.010000"],["2024-07-24T00:31:23.010000"],["2024-07-24T00:31:24.010000"],["2024-07-24T00:31:25.010000"],["2024-07-24T00:31:26.010000"],["2024-07-24T00:31:27.010000"],["2024-07-24T00:31:28.010000"],["2024-07-24T00:31:29.010000"],["2024-07-24T00:31:30.010000"],["2024-07-24T00:31:31.010000"],["2024-07-24T00:31:32.010000"],["2024-07-24T00:31:33.010000"],["2024-07-24T00:31:34.010000"],["2024-07-24T00:31:35.010000"],["2024-07-24T00:31:36.010000"],["2024-07-24T00:31:37.010000"],["2024-07-24T00:31:38.010000"],["2024-07-24T00:31:39.010000"],["2024-07-24T00:31:40.010000"],["2024-07-24T00:31:41.010000"],["2024-07-24T00:31:42.010000"],["2024-07-24T00:31:43.010000"],["2024-07-24T00:31:44.010000"],["2024-07-24T00:31:45.010000"],["2024-07-24T00:31:46.010000"],["2024-07-24T00:31:47.010000"],["2024-07-24T00:31:48.010000"],["2024-07-24T00:31:49.010000"],["2024-07-24T00:31:50.010000"],["2024-07-24T00:31:51.010000"],["2024-07-24T00:31:52.010000"],["2024-07-24T00:31:53.010000"],["2024-07-24T00:31:54.010000"],["2024-07-24T00:31:55.010000"],["2024-07-24T00:31:56.010000"],["2024-07-24T00:31:57.010000"],["2024-07-24T00:31:58.010000"],["2024-07-24T00:31:59.010000"],["2024-07-24T00:32:00.010000"],["2024-07-24T00:32:01.010000"],["2024-07-24T00:32:02.010000"],["2024-07-24T00:32:03.010000"],["2024-07-24T00:32:04.010000"],["2024-07-24T00:32:05.010000"],["2024-07-24T00:32:06.010000"],["2024-07-24T00:32:07.010000"],["2024-07-24T00:32:08.010000"],["2024-07-24T00:32:09.010000"],["2024-07-24T00:32:10.010000"],["2024-07-24T00:32:11.010000"],["2024-07-24T00:32:12.010000"],["2024-07-24T00:32:13.010000"],["2024-07-24T00:32:14.010000"],["2024-07-24T00:32:15.010000"],["2024-07-24T00:32:16.010000"],["2024-07-24T00:32:17.010000"],["2024-07-24T00:32:18.010000"],["2024-07-24T00:32:19.010000"],["2024-07-24T00:32:20.010000"],["2024-07-24T00:32:21.010000"],["2024-07-24T00:32:22.010000"],["2024-07-24T00:32:23.010000"],["2024-07-24T00:32:24.010000"],["2024-07-24T00:32:25.010000"],["2024-07-24T00:32:26.010000"],["2024-07-24T00:32:27.010000"],["2024-07-24T00:32:28.010000"],["2024-07-24T00:32:29.010000"],["2024-07-24T00:32:30.010000"],["2024-07-24T00:32:31.010000"],["2024-07-24T00:32:32.010000"],["2024-07-24T00:32:33.010000"],["2024-07-24T00:32:34.010000"],["2024-07-24T00:32:35.010000"],["2024-07-24T00:32:36.010000"],["2024-07-24T00:32:37.010000"],["2024-07-24T00:32:38.010000"],["2024-07-24T00:32:39.010000"],["2024-07-24T00:32:40.010000"],["2024-07-24T00:32:41.010000"],["2024-07-24T00:32:42.010000"],["2024-07-24T00:32:43.010000"],["2024-07-24T00:32:44.010000"],["2024-07-24T00:32:45.010000"],["2024-07-24T00:32:46.010000"],["2024-07-24T00:32:47.010000"],["2024-07-24T00:32:48.010000"],["2024-07-24T00:32:49.010000"],["2024-07-24T00:32:50.010000"],["2024-07-24T00:32:51.010000"],["2024-07-24T00:32:52.010000"],["2024-07-24T00:32:53.010000"],["2024-07-24T00:32:54.010000"],["2024-07-24T00:32:55.010000"],["2024-07-24T00:32:56.010000"],["2024-07-24T00:32:57.010000"],["2024-07-24T00:32:58.010000"],["2024-07-24T00:32:59.010000"],["2024-07-24T00:33:00.010000"],["2024-07-24T00:33:01.010000"],["2024-07-24T00:33:02.010000"],["2024-07-24T00:33:03.010000"],["2024-07-24T00:33:04.010000"],["2024-07-24T00:33:05.010000"],["2024-07-24T00:33:06.010000"],["2024-07-24T00:33:07.010000"],["2024-07-24T00:33:08.010000"],["2024-07-24T00:33:09.010000"],["2024-07-24T00:33:10.010000"],["2024-07-24T00:33:11.010000"],["2024-07-24T00:33:12.010000"],["2024-07-24T00:33:13.010000"],["2024-07-24T00:33:14.010000"],["2024-07-24T00:33:15.010000"],["2024-07-24T00:33:16.010000"],["2024-07-24T00:33:17.010000"],["2024-07-24T00:33:18.010000"],["2024-07-24T00:33:19.010000"],["2024-07-24T00:33:20.010000"],["2024-07-24T00:33:21.010000"],["2024-07-24T00:33:22.010000"],["2024-07-24T00:33:23.010000"],["2024-07-24T00:33:24.010000"],["2024-07-24T00:33:25.010000"],["2024-07-24T00:33:26.010000"],["2024-07-24T00:33:27.010000"],["2024-07-24T00:33:28.010000"],["2024-07-24T00:33:29.010000"],["2024-07-24T00:33:30.010000"],["2024-07-24T00:33:31.010000"],["2024-07-24T00:33:32.010000"],["2024-07-24T00:33:33.010000"],["2024-07-24T00:33:34.010000"],["2024-07-24T00:33:35.010000"],["2024-07-24T00:33:36.010000"],["2024-07-24T00:33:37.010000"],["2024-07-24T00:33:38.010000"],["2024-07-24T00:33:39.010000"],["2024-07-24T00:33:40.010000"],["2024-07-24T00:33:41.010000"],["2024-07-24T00:33:42.010000"],["2024-07-24T00:33:43.010000"],["2024-07-24T00:33:44.010000"],["2024-07-24T00:33:45.010000"],["2024-07-24T00:33:46.010000"],["2024-07-24T00:33:47.010000"],["2024-07-24T00:33:48.010000"],["2024-07-24T00:33:49.010000"],["2024-07-24T00:33:50.010000"],["2024-07-24T00:33:51.010000"],["2024-07-24T00:33:52.010000"],["2024-07-24T00:33:53.010000"],["2024-07-24T00:33:54.010000"],["2024-07-24T00:33:55.010000"],["2024-07-24T00:33:56.010000"],["2024-07-24T00:33:57.010000"],["2024-07-24T00:33:58.010000"],["2024-07-24T00:33:59.010000"],["2024-07-24T00:34:00.010000"],["2024-07-24T00:34:01.010000"],["2024-07-24T00:34:02.010000"],["2024-07-24T00:34:03.010000"],["2024-07-24T00:34:04.010000"],["2024-07-24T00:34:05.010000"],["2024-07-24T00:34:06.010000"],["2024-07-24T00:34:07.010000"],["2024-07-24T00:34:08.010000"],["2024-07-24T00:34:09.010000"],["2024-07-24T00:34:10.010000"],["2024-07-24T00:34:11.010000"],["2024-07-24T00:34:12.010000"],["2024-07-24T00:34:13.010000"],["2024-07-24T00:34:14.010000"],["2024-07-24T00:34:15.010000"],["2024-07-24T00:34:16.010000"],["2024-07-24T00:34:17.010000"],["2024-07-24T00:34:18.010000"],["2024-07-24T00:34:19.010000"],["2024-07-24T00:34:20.010000"],["2024-07-24T00:34:21.010000"],["2024-07-24T00:34:22.010000"],["2024-07-24T00:34:23.010000"],["2024-07-24T00:34:24.010000"],["2024-07-24T00:34:25.010000"],["2024-07-24T00:34:26.010000"],["2024-07-24T00:34:27.010000"],["2024-07-24T00:34:28.010000"],["2024-07-24T00:34:29.010000"],["2024-07-24T00:34:30.010000"],["2024-07-24T00:34:31.010000"],["2024-07-24T00:34:32.010000"],["2024-07-24T00:34:33.010000"],["2024-07-24T00:34:34.010000"],["2024-07-24T00:34:35.010000"],["2024-07-24T00:34:36.010000"],["2024-07-24T00:34:37.010000"],["2024-07-24T00:34:38.010000"],["2024-07-24T00:34:39.010000"],["2024-07-24T00:34:40.010000"],["2024-07-24T00:34:41.010000"],["2024-07-24T00:34:42.010000"],["2024-07-24T00:34:43.010000"],["2024-07-24T00:34:44.010000"],["2024-07-24T00:34:45.010000"],["2024-07-24T00:34:46.010000"],["2024-07-24T00:34:47.010000"],["2024-07-24T00:34:48.010000"],["2024-07-24T00:34:49.010000"],["2024-07-24T00:34:50.010000"],["2024-07-24T00:34:51.010000"],["2024-07-24T00:34:52.010000"],["2024-07-24T00:34:53.010000"],["2024-07-24T00:34:54.010000"],["2024-07-24T00:34:55.010000"],["2024-07-24T00:34:56.010000"],["2024-07-24T00:34:57.010000"],["2024-07-24T00:34:58.010000"],["2024-07-24T00:34:59.010000"],["2024-07-24T00:35:00.010000"],["2024-07-24T00:35:01.010000"],["2024-07-24T00:35:02.010000"],["2024-07-24T00:35:03.010000"],["2024-07-24T00:35:04.010000"],["2024-07-24T00:35:05.010000"],["2024-07-24T00:35:06.010000"],["2024-07-24T00:35:07.010000"],["2024-07-24T00:35:08.010000"],["2024-07-24T00:35:09.010000"],["2024-07-24T00:35:10.010000"],["2024-07-24T00:35:11.010000"],["2024-07-24T00:35:12.010000"],["2024-07-24T00:35:13.010000"],["2024-07-24T00:35:14.010000"],["2024-07-24T00:35:15.010000"],["2024-07-24T00:35:16.010000"],["2024-07-24T00:35:17.010000"],["2024-07-24T00:35:18.010000"],["2024-07-24T00:35:19.010000"],["2024-07-24T00:35:20.010000"],["2024-07-24T00:35:21.010000"],["2024-07-24T00:35:22.010000"],["2024-07-24T00:35:23.010000"],["2024-07-24T00:35:24.010000"],["2024-07-24T00:35:25.010000"],["2024-07-24T00:35:26.010000"],["2024-07-24T00:35:27.010000"],["2024-07-24T00:35:28.010000"],["2024-07-24T00:35:29.010000"],["2024-07-24T00:35:30.010000"],["2024-07-24T00:35:31.010000"],["2024-07-24T00:35:32.010000"],["2024-07-24T00:35:33.010000"],["2024-07-24T00:35:34.010000"],["2024-07-24T00:35:35.010000"],["2024-07-24T00:35:36.010000"],["2024-07-24T00:35:37.010000"],["2024-07-24T00:35:38.010000"],["2024-07-24T00:35:39.010000"],["2024-07-24T00:35:40.010000"],["2024-07-24T00:35:41.010000"],["2024-07-24T00:35:42.010000"],["2024-07-24T00:35:43.010000"],["2024-07-24T00:35:44.010000"],["2024-07-24T00:35:45.010000"],["2024-07-24T00:35:46.010000"],["2024-07-24T00:35:47.010000"],["2024-07-24T00:35:48.010000"],["2024-07-24T00:35:49.010000"],["2024-07-24T00:35:50.010000"],["2024-07-24T00:35:51.010000"],["2024-07-24T00:35:52.010000"],["2024-07-24T00:35:53.010000"],["2024-07-24T00:35:54.010000"],["2024-07-24T00:35:55.010000"],["2024-07-24T00:35:56.010000"],["2024-07-24T00:35:57.010000"],["2024-07-24T00:35:58.010000"],["2024-07-24T00:35:59.010000"],["2024-07-24T00:36:00.010000"],["2024-07-24T00:36:01.010000"],["2024-07-24T00:36:02.010000"],["2024-07-24T00:36:03.010000"],["2024-07-24T00:36:04.010000"],["2024-07-24T00:36:05.010000"],["2024-07-24T00:36:06.010000"],["2024-07-24T00:36:07.010000"],["2024-07-24T00:36:08.010000"],["2024-07-24T00:36:09.010000"],["2024-07-24T00:36:10.010000"],["2024-07-24T00:36:11.010000"],["2024-07-24T00:36:12.010000"],["2024-07-24T00:36:13.010000"],["2024-07-24T00:36:14.010000"],["2024-07-24T00:36:15.010000"],["2024-07-24T00:36:16.010000"],["2024-07-24T00:36:17.010000"],["2024-07-24T00:36:18.010000"],["2024-07-24T00:36:19.010000"],["2024-07-24T00:36:20.010000"],["2024-07-24T00:36:21.010000"],["2024-07-24T00:36:22.010000"],["2024-07-24T00:36:23.010000"],["2024-07-24T00:36:24.010000"],["2024-07-24T00:36:25.010000"],["2024-07-24T00:36:26.010000"],["2024-07-24T00:36:27.010000"],["2024-07-24T00:36:28.010000"],["2024-07-24T00:36:29.010000"],["2024-07-24T00:36:30.010000"],["2024-07-24T00:36:31.010000"],["2024-07-24T00:36:32.010000"],["2024-07-24T00:36:33.010000"],["2024-07-24T00:36:34.010000"],["2024-07-24T00:36:35.010000"],["2024-07-24T00:36:36.010000"],["2024-07-24T00:36:37.010000"],["2024-07-24T00:36:38.010000"],["2024-07-24T00:36:39.010000"],["2024-07-24T00:36:40.010000"],["2024-07-24T00:36:41.010000"],["2024-07-24T00:36:42.010000"],["2024-07-24T00:36:43.010000"],["2024-07-24T00:36:44.010000"],["2024-07-24T00:36:45.010000"],["2024-07-24T00:36:46.010000"],["2024-07-24T00:36:47.010000"],["2024-07-24T00:36:48.010000"],["2024-07-24T00:36:49.010000"],["2024-07-24T00:36:50.010000"],["2024-07-24T00:36:51.010000"],["2024-07-24T00:36:52.010000"],["2024-07-24T00:36:53.010000"],["2024-07-24T00:36:54.010000"],["2024-07-24T00:36:55.010000"],["2024-07-24T00:36:56.010000"],["2024-07-24T00:36:57.010000"],["2024-07-24T00:36:58.010000"],["2024-07-24T00:36:59.010000"],["2024-07-24T00:37:00.010000"],["2024-07-24T00:37:01.010000"],["2024-07-24T00:37:02.010000"],["2024-07-24T00:37:03.010000"],["2024-07-24T00:37:04.010000"],["2024-07-24T00:37:05.010000"],["2024-07-24T00:37:06.010000"],["2024-07-24T00:37:07.010000"],["2024-07-24T00:37:08.010000"],["2024-07-24T00:37:09.010000"],["2024-07-24T00:37:10.010000"],["2024-07-24T00:37:11.010000"],["2024-07-24T00:37:12.010000"],["2024-07-24T00:37:13.010000"],["2024-07-24T00:37:14.010000"],["2024-07-24T00:37:15.010000"],["2024-07-24T00:37:16.010000"],["2024-07-24T00:37:17.010000"],["2024-07-24T00:37:18.010000"],["2024-07-24T00:37:19.010000"],["2024-07-24T00:37:20.010000"],["2024-07-24T00:37:21.010000"],["2024-07-24T00:37:22.010000"],["2024-07-24T00:37:23.010000"],["2024-07-24T00:37:24.010000"],["2024-07-24T00:37:25.010000"],["2024-07-24T00:37:26.010000"],["2024-07-24T00:37:27.010000"],["2024-07-24T00:37:28.010000"],["2024-07-24T00:37:29.010000"],["2024-07-24T00:37:30.010000"],["2024-07-24T00:37:31.010000"],["2024-07-24T00:37:32.010000"],["2024-07-24T00:37:33.010000"],["2024-07-24T00:37:34.010000"],["2024-07-24T00:37:35.010000"],["2024-07-24T00:37:36.010000"],["2024-07-24T00:37:37.010000"],["2024-07-24T00:37:38.010000"],["2024-07-24T00:37:39.010000"],["2024-07-24T00:37:40.010000"],["2024-07-24T00:37:41.010000"],["2024-07-24T00:37:42.010000"],["2024-07-24T00:37:43.010000"],["2024-07-24T00:37:44.010000"],["2024-07-24T00:37:45.010000"],["2024-07-24T00:37:46.010000"],["2024-07-24T00:37:47.010000"],["2024-07-24T00:37:48.010000"],["2024-07-24T00:37:49.010000"],["2024-07-24T00:37:50.010000"],["2024-07-24T00:37:51.010000"],["2024-07-24T00:37:52.010000"],["2024-07-24T00:37:53.010000"],["2024-07-24T00:37:54.010000"],["2024-07-24T00:37:55.010000"],["2024-07-24T00:37:56.010000"],["2024-07-24T00:37:57.010000"],["2024-07-24T00:37:58.010000"],["2024-07-24T00:37:59.010000"],["2024-07-24T00:38:00.010000"],["2024-07-24T00:38:01.010000"],["2024-07-24T00:38:02.010000"],["2024-07-24T00:38:03.010000"],["2024-07-24T00:38:04.010000"],["2024-07-24T00:38:05.010000"],["2024-07-24T00:38:06.010000"],["2024-07-24T00:38:07.010000"],["2024-07-24T00:38:08.010000"],["2024-07-24T00:38:09.010000"],["2024-07-24T00:38:10.010000"],["2024-07-24T00:38:11.010000"],["2024-07-24T00:38:12.010000"],["2024-07-24T00:38:13.010000"],["2024-07-24T00:38:14.010000"],["2024-07-24T00:38:15.010000"],["2024-07-24T00:38:16.010000"],["2024-07-24T00:38:17.010000"],["2024-07-24T00:38:18.010000"],["2024-07-24T00:38:19.010000"],["2024-07-24T00:38:20.010000"],["2024-07-24T00:38:21.010000"],["2024-07-24T00:38:22.010000"],["2024-07-24T00:38:23.010000"],["2024-07-24T00:38:24.010000"],["2024-07-24T00:38:25.010000"],["2024-07-24T00:38:26.010000"],["2024-07-24T00:38:27.010000"],["2024-07-24T00:38:28.010000"],["2024-07-24T00:38:29.010000"],["2024-07-24T00:38:30.010000"],["2024-07-24T00:38:31.010000"],["2024-07-24T00:38:32.010000"],["2024-07-24T00:38:33.010000"],["2024-07-24T00:38:34.010000"],["2024-07-24T00:38:35.010000"],["2024-07-24T00:38:36.010000"],["2024-07-24T00:38:37.010000"],["2024-07-24T00:38:38.010000"],["2024-07-24T00:38:39.010000"],["2024-07-24T00:38:40.010000"],["2024-07-24T00:38:41.010000"],["2024-07-24T00:38:42.010000"],["2024-07-24T00:38:43.010000"],["2024-07-24T00:38:44.010000"],["2024-07-24T00:38:45.010000"],["2024-07-24T00:38:46.010000"],["2024-07-24T00:38:47.010000"],["2024-07-24T00:38:48.010000"],["2024-07-24T00:38:49.010000"],["2024-07-24T00:38:50.010000"],["2024-07-24T00:38:51.010000"],["2024-07-24T00:38:52.010000"],["2024-07-24T00:38:53.010000"],["2024-07-24T00:38:54.010000"],["2024-07-24T00:38:55.010000"],["2024-07-24T00:38:56.010000"],["2024-07-24T00:38:57.010000"],["2024-07-24T00:38:58.010000"],["2024-07-24T00:38:59.010000"],["2024-07-24T00:39:00.010000"],["2024-07-24T00:39:01.010000"],["2024-07-24T00:39:02.010000"],["2024-07-24T00:39:03.010000"],["2024-07-24T00:39:04.010000"],["2024-07-24T00:39:05.010000"],["2024-07-24T00:39:06.010000"],["2024-07-24T00:39:07.010000"],["2024-07-24T00:39:08.010000"],["2024-07-24T00:39:09.010000"],["2024-07-24T00:39:10.010000"],["2024-07-24T00:39:11.010000"],["2024-07-24T00:39:12.010000"],["2024-07-24T00:39:13.010000"],["2024-07-24T00:39:14.010000"],["2024-07-24T00:39:15.010000"],["2024-07-24T00:39:16.010000"],["2024-07-24T00:39:17.010000"],["2024-07-24T00:39:18.010000"],["2024-07-24T00:39:19.010000"],["2024-07-24T00:39:20.010000"],["2024-07-24T00:39:21.010000"],["2024-07-24T00:39:22.010000"],["2024-07-24T00:39:23.010000"],["2024-07-24T00:39:24.010000"],["2024-07-24T00:39:25.010000"],["2024-07-24T00:39:26.010000"],["2024-07-24T00:39:27.010000"],["2024-07-24T00:39:28.010000"],["2024-07-24T00:39:29.010000"],["2024-07-24T00:39:30.010000"],["2024-07-24T00:39:31.010000"],["2024-07-24T00:39:32.010000"],["2024-07-24T00:39:33.010000"],["2024-07-24T00:39:34.010000"],["2024-07-24T00:39:35.010000"],["2024-07-24T00:39:36.010000"],["2024-07-24T00:39:37.010000"],["2024-07-24T00:39:38.010000"],["2024-07-24T00:39:39.010000"],["2024-07-24T00:39:40.010000"],["2024-07-24T00:39:41.010000"],["2024-07-24T00:39:42.010000"],["2024-07-24T00:39:43.010000"],["2024-07-24T00:39:44.010000"],["2024-07-24T00:39:45.010000"],["2024-07-24T00:39:46.010000"],["2024-07-24T00:39:47.010000"],["2024-07-24T00:39:48.010000"],["2024-07-24T00:39:49.010000"],["2024-07-24T00:39:50.010000"],["2024-07-24T00:39:51.010000"],["2024-07-24T00:39:52.010000"],["2024-07-24T00:39:53.010000"],["2024-07-24T00:39:54.010000"],["2024-07-24T00:39:55.010000"],["2024-07-24T00:39:56.010000"],["2024-07-24T00:39:57.010000"],["2024-07-24T00:39:58.010000"],["2024-07-24T00:39:59.010000"],["2024-07-24T00:40:00.010000"],["2024-07-24T00:40:01.010000"],["2024-07-24T00:40:02.010000"],["2024-07-24T00:40:03.010000"],["2024-07-24T00:40:04.010000"],["2024-07-24T00:40:05.010000"],["2024-07-24T00:40:06.010000"],["2024-07-24T00:40:07.010000"],["2024-07-24T00:40:08.010000"],["2024-07-24T00:40:09.010000"],["2024-07-24T00:40:10.010000"],["2024-07-24T00:40:11.010000"],["2024-07-24T00:40:12.010000"],["2024-07-24T00:40:13.010000"],["2024-07-24T00:40:14.010000"],["2024-07-24T00:40:15.010000"],["2024-07-24T00:40:16.010000"],["2024-07-24T00:40:17.010000"],["2024-07-24T00:40:18.010000"],["2024-07-24T00:40:19.010000"],["2024-07-24T00:40:20.010000"],["2024-07-24T00:40:21.010000"],["2024-07-24T00:40:22.010000"],["2024-07-24T00:40:23.010000"],["2024-07-24T00:40:24.010000"],["2024-07-24T00:40:25.010000"],["2024-07-24T00:40:26.010000"],["2024-07-24T00:40:27.010000"],["2024-07-24T00:40:28.010000"],["2024-07-24T00:40:29.010000"],["2024-07-24T00:40:30.010000"],["2024-07-24T00:40:31.010000"],["2024-07-24T00:40:32.010000"],["2024-07-24T00:40:33.010000"],["2024-07-24T00:40:34.010000"],["2024-07-24T00:40:35.010000"],["2024-07-24T00:40:36.010000"],["2024-07-24T00:40:37.010000"],["2024-07-24T00:40:38.010000"],["2024-07-24T00:40:39.010000"],["2024-07-24T00:40:40.010000"],["2024-07-24T00:40:41.010000"],["2024-07-24T00:40:42.010000"],["2024-07-24T00:40:43.010000"],["2024-07-24T00:40:44.010000"],["2024-07-24T00:40:45.010000"],["2024-07-24T00:40:46.010000"],["2024-07-24T00:40:47.010000"],["2024-07-24T00:40:48.010000"],["2024-07-24T00:40:49.010000"],["2024-07-24T00:40:50.010000"],["2024-07-24T00:40:51.010000"],["2024-07-24T00:40:52.010000"],["2024-07-24T00:40:53.010000"],["2024-07-24T00:40:54.010000"],["2024-07-24T00:40:55.010000"],["2024-07-24T00:40:56.010000"],["2024-07-24T00:40:57.010000"],["2024-07-24T00:40:58.010000"],["2024-07-24T00:40:59.010000"],["2024-07-24T00:41:00.010000"],["2024-07-24T00:41:01.010000"],["2024-07-24T00:41:02.010000"],["2024-07-24T00:41:03.010000"],["2024-07-24T00:41:04.010000"],["2024-07-24T00:41:05.010000"],["2024-07-24T00:41:06.010000"],["2024-07-24T00:41:07.010000"],["2024-07-24T00:41:08.010000"],["2024-07-24T00:41:09.010000"],["2024-07-24T00:41:10.010000"],["2024-07-24T00:41:11.010000"],["2024-07-24T00:41:12.010000"],["2024-07-24T00:41:13.010000"],["2024-07-24T00:41:14.010000"],["2024-07-24T00:41:15.010000"],["2024-07-24T00:41:16.010000"],["2024-07-24T00:41:17.010000"],["2024-07-24T00:41:18.010000"],["2024-07-24T00:41:19.010000"],["2024-07-24T00:41:20.010000"],["2024-07-24T00:41:21.010000"],["2024-07-24T00:41:22.010000"],["2024-07-24T00:41:23.010000"],["2024-07-24T00:41:24.010000"],["2024-07-24T00:41:25.010000"],["2024-07-24T00:41:26.010000"],["2024-07-24T00:41:27.010000"],["2024-07-24T00:41:28.010000"],["2024-07-24T00:41:29.010000"],["2024-07-24T00:41:30.010000"],["2024-07-24T00:41:31.010000"],["2024-07-24T00:41:32.010000"],["2024-07-24T00:41:33.010000"],["2024-07-24T00:41:34.010000"],["2024-07-24T00:41:35.010000"],["2024-07-24T00:41:36.010000"],["2024-07-24T00:41:37.010000"],["2024-07-24T00:41:38.010000"],["2024-07-24T00:41:39.010000"],["2024-07-24T00:41:40.010000"],["2024-07-24T00:41:41.010000"],["2024-07-24T00:41:42.010000"],["2024-07-24T00:41:43.010000"],["2024-07-24T00:41:44.010000"],["2024-07-24T00:41:45.010000"],["2024-07-24T00:41:46.010000"],["2024-07-24T00:41:47.010000"],["2024-07-24T00:41:48.010000"],["2024-07-24T00:41:49.010000"],["2024-07-24T00:41:50.010000"],["2024-07-24T00:41:51.010000"],["2024-07-24T00:41:52.010000"],["2024-07-24T00:41:53.010000"],["2024-07-24T00:41:54.010000"],["2024-07-24T00:41:55.010000"],["2024-07-24T00:41:56.010000"],["2024-07-24T00:41:57.010000"],["2024-07-24T00:41:58.010000"],["2024-07-24T00:41:59.010000"],["2024-07-24T00:42:00.010000"],["2024-07-24T00:42:01.010000"],["2024-07-24T00:42:02.010000"],["2024-07-24T00:42:03.010000"],["2024-07-24T00:42:04.010000"],["2024-07-24T00:42:05.010000"],["2024-07-24T00:42:06.010000"],["2024-07-24T00:42:07.010000"],["2024-07-24T00:42:08.010000"],["2024-07-24T00:42:09.010000"],["2024-07-24T00:42:10.010000"],["2024-07-24T00:42:11.010000"],["2024-07-24T00:42:12.010000"],["2024-07-24T00:42:13.010000"],["2024-07-24T00:42:14.010000"],["2024-07-24T00:42:15.010000"],["2024-07-24T00:42:16.010000"],["2024-07-24T00:42:17.010000"],["2024-07-24T00:42:18.010000"],["2024-07-24T00:42:19.010000"],["2024-07-24T00:42:20.010000"],["2024-07-24T00:42:21.010000"],["2024-07-24T00:42:22.010000"],["2024-07-24T00:42:23.010000"],["2024-07-24T00:42:24.010000"],["2024-07-24T00:42:25.010000"],["2024-07-24T00:42:26.010000"],["2024-07-24T00:42:27.010000"],["2024-07-24T00:42:28.010000"],["2024-07-24T00:42:29.010000"],["2024-07-24T00:42:30.010000"],["2024-07-24T00:42:31.010000"],["2024-07-24T00:42:32.010000"],["2024-07-24T00:42:33.010000"],["2024-07-24T00:42:34.010000"],["2024-07-24T00:42:35.010000"],["2024-07-24T00:42:36.010000"],["2024-07-24T00:42:37.010000"],["2024-07-24T00:42:38.010000"],["2024-07-24T00:42:39.010000"],["2024-07-24T00:42:40.010000"],["2024-07-24T00:42:41.010000"],["2024-07-24T00:42:42.010000"],["2024-07-24T00:42:43.010000"],["2024-07-24T00:42:44.010000"],["2024-07-24T00:42:45.010000"],["2024-07-24T00:42:46.010000"],["2024-07-24T00:42:47.010000"],["2024-07-24T00:42:48.010000"],["2024-07-24T00:42:49.010000"],["2024-07-24T00:42:50.010000"],["2024-07-24T00:42:51.010000"],["2024-07-24T00:42:52.010000"],["2024-07-24T00:42:53.010000"],["2024-07-24T00:42:54.010000"],["2024-07-24T00:42:55.010000"],["2024-07-24T00:42:56.010000"],["2024-07-24T00:42:57.010000"],["2024-07-24T00:42:58.010000"],["2024-07-24T00:42:59.010000"],["2024-07-24T00:43:00.010000"],["2024-07-24T00:43:01.010000"],["2024-07-24T00:43:02.010000"],["2024-07-24T00:43:03.010000"],["2024-07-24T00:43:04.010000"],["2024-07-24T00:43:05.010000"],["2024-07-24T00:43:06.010000"],["2024-07-24T00:43:07.010000"],["2024-07-24T00:43:08.010000"],["2024-07-24T00:43:09.010000"],["2024-07-24T00:43:10.010000"],["2024-07-24T00:43:11.010000"],["2024-07-24T00:43:12.010000"],["2024-07-24T00:43:13.010000"],["2024-07-24T00:43:14.010000"],["2024-07-24T00:43:15.010000"],["2024-07-24T00:43:16.010000"],["2024-07-24T00:43:17.010000"],["2024-07-24T00:43:18.010000"],["2024-07-24T00:43:19.010000"],["2024-07-24T00:43:20.010000"],["2024-07-24T00:43:21.010000"],["2024-07-24T00:43:22.010000"],["2024-07-24T00:43:23.010000"],["2024-07-24T00:43:24.010000"],["2024-07-24T00:43:25.010000"],["2024-07-24T00:43:26.010000"],["2024-07-24T00:43:27.010000"],["2024-07-24T00:43:28.010000"],["2024-07-24T00:43:29.010000"],["2024-07-24T00:43:30.010000"],["2024-07-24T00:43:31.010000"],["2024-07-24T00:43:32.010000"],["2024-07-24T00:43:33.010000"],["2024-07-24T00:43:34.010000"],["2024-07-24T00:43:35.010000"],["2024-07-24T00:43:36.010000"],["2024-07-24T00:43:37.010000"],["2024-07-24T00:43:38.010000"],["2024-07-24T00:43:39.010000"],["2024-07-24T00:43:40.010000"],["2024-07-24T00:43:41.010000"],["2024-07-24T00:43:42.010000"],["2024-07-24T00:43:43.010000"],["2024-07-24T00:43:44.010000"],["2024-07-24T00:43:45.010000"],["2024-07-24T00:43:46.010000"],["2024-07-24T00:43:47.010000"],["2024-07-24T00:43:48.010000"],["2024-07-24T00:43:49.010000"],["2024-07-24T00:43:50.010000"],["2024-07-24T00:43:51.010000"],["2024-07-24T00:43:52.010000"],["2024-07-24T00:43:53.010000"],["2024-07-24T00:43:54.010000"],["2024-07-24T00:43:55.010000"],["2024-07-24T00:43:56.010000"],["2024-07-24T00:43:57.010000"],["2024-07-24T00:43:58.010000"],["2024-07-24T00:43:59.010000"],["2024-07-24T00:44:00.010000"],["2024-07-24T00:44:01.010000"],["2024-07-24T00:44:02.010000"],["2024-07-24T00:44:03.010000"],["2024-07-24T00:44:04.010000"],["2024-07-24T00:44:05.010000"],["2024-07-24T00:44:06.010000"],["2024-07-24T00:44:07.010000"],["2024-07-24T00:44:08.010000"],["2024-07-24T00:44:09.010000"],["2024-07-24T00:44:10.010000"],["2024-07-24T00:44:11.010000"],["2024-07-24T00:44:12.010000"],["2024-07-24T00:44:13.010000"],["2024-07-24T00:44:14.010000"],["2024-07-24T00:44:15.010000"],["2024-07-24T00:44:16.010000"],["2024-07-24T00:44:17.010000"],["2024-07-24T00:44:18.010000"],["2024-07-24T00:44:19.010000"],["2024-07-24T00:44:20.010000"],["2024-07-24T00:44:21.010000"],["2024-07-24T00:44:22.010000"],["2024-07-24T00:44:23.010000"],["2024-07-24T00:44:24.010000"],["2024-07-24T00:44:25.010000"],["2024-07-24T00:44:26.010000"],["2024-07-24T00:44:27.010000"],["2024-07-24T00:44:28.010000"],["2024-07-24T00:44:29.010000"],["2024-07-24T00:44:30.010000"],["2024-07-24T00:44:31.010000"],["2024-07-24T00:44:32.010000"],["2024-07-24T00:44:33.010000"],["2024-07-24T00:44:34.010000"],["2024-07-24T00:44:35.010000"],["2024-07-24T00:44:36.010000"],["2024-07-24T00:44:37.010000"],["2024-07-24T00:44:38.010000"],["2024-07-24T00:44:39.010000"],["2024-07-24T00:44:40.010000"],["2024-07-24T00:44:41.010000"],["2024-07-24T00:44:42.010000"],["2024-07-24T00:44:43.010000"],["2024-07-24T00:44:44.010000"],["2024-07-24T00:44:45.010000"],["2024-07-24T00:44:46.010000"],["2024-07-24T00:44:47.010000"],["2024-07-24T00:44:48.010000"],["2024-07-24T00:44:49.010000"],["2024-07-24T00:44:50.010000"],["2024-07-24T00:44:51.010000"],["2024-07-24T00:44:52.010000"],["2024-07-24T00:44:53.010000"],["2024-07-24T00:44:54.010000"],["2024-07-24T00:44:55.010000"],["2024-07-24T00:44:56.010000"],["2024-07-24T00:44:57.010000"],["2024-07-24T00:44:58.010000"],["2024-07-24T00:44:59.010000"],["2024-07-24T00:45:00.010000"],["2024-07-24T00:45:01.010000"],["2024-07-24T00:45:02.010000"],["2024-07-24T00:45:03.010000"],["2024-07-24T00:45:04.010000"],["2024-07-24T00:45:05.010000"],["2024-07-24T00:45:06.010000"],["2024-07-24T00:45:07.010000"],["2024-07-24T00:45:08.010000"],["2024-07-24T00:45:09.010000"],["2024-07-24T00:45:10.010000"],["2024-07-24T00:45:11.010000"],["2024-07-24T00:45:12.010000"],["2024-07-24T00:45:13.010000"],["2024-07-24T00:45:14.010000"],["2024-07-24T00:45:15.010000"],["2024-07-24T00:45:16.010000"],["2024-07-24T00:45:17.010000"],["2024-07-24T00:45:18.010000"],["2024-07-24T00:45:19.010000"],["2024-07-24T00:45:20.010000"],["2024-07-24T00:45:21.010000"],["2024-07-24T00:45:22.010000"],["2024-07-24T00:45:23.010000"],["2024-07-24T00:45:24.010000"],["2024-07-24T00:45:25.010000"],["2024-07-24T00:45:26.010000"],["2024-07-24T00:45:27.010000"],["2024-07-24T00:45:28.010000"],["2024-07-24T00:45:29.010000"],["2024-07-24T00:45:30.010000"],["2024-07-24T00:45:31.010000"],["2024-07-24T00:45:32.010000"],["2024-07-24T00:45:33.010000"],["2024-07-24T00:45:34.010000"],["2024-07-24T00:45:35.010000"],["2024-07-24T00:45:36.010000"],["2024-07-24T00:45:37.010000"],["2024-07-24T00:45:38.010000"],["2024-07-24T00:45:39.010000"],["2024-07-24T00:45:40.010000"],["2024-07-24T00:45:41.010000"],["2024-07-24T00:45:42.010000"],["2024-07-24T00:45:43.010000"],["2024-07-24T00:45:44.010000"],["2024-07-24T00:45:45.010000"],["2024-07-24T00:45:46.010000"],["2024-07-24T00:45:47.010000"],["2024-07-24T00:45:48.010000"],["2024-07-24T00:45:49.010000"],["2024-07-24T00:45:50.010000"],["2024-07-24T00:45:51.010000"],["2024-07-24T00:45:52.010000"],["2024-07-24T00:45:53.010000"],["2024-07-24T00:45:54.010000"],["2024-07-24T00:45:55.010000"],["2024-07-24T00:45:56.010000"],["2024-07-24T00:45:57.010000"],["2024-07-24T00:45:58.010000"],["2024-07-24T00:45:59.010000"],["2024-07-24T00:46:00.010000"],["2024-07-24T00:46:01.010000"],["2024-07-24T00:46:02.010000"],["2024-07-24T00:46:03.010000"],["2024-07-24T00:46:04.010000"],["2024-07-24T00:46:05.010000"],["2024-07-24T00:46:06.010000"],["2024-07-24T00:46:07.010000"],["2024-07-24T00:46:08.010000"],["2024-07-24T00:46:09.010000"],["2024-07-24T00:46:10.010000"],["2024-07-24T00:46:11.010000"],["2024-07-24T00:46:12.010000"],["2024-07-24T00:46:13.010000"],["2024-07-24T00:46:14.010000"],["2024-07-24T00:46:15.010000"],["2024-07-24T00:46:16.010000"],["2024-07-24T00:46:17.010000"],["2024-07-24T00:46:18.010000"],["2024-07-24T00:46:19.010000"],["2024-07-24T00:46:20.010000"],["2024-07-24T00:46:21.010000"],["2024-07-24T00:46:22.010000"],["2024-07-24T00:46:23.010000"],["2024-07-24T00:46:24.010000"],["2024-07-24T00:46:25.010000"],["2024-07-24T00:46:26.010000"],["2024-07-24T00:46:27.010000"],["2024-07-24T00:46:28.010000"],["2024-07-24T00:46:29.010000"],["2024-07-24T00:46:30.010000"],["2024-07-24T00:46:31.010000"],["2024-07-24T00:46:32.010000"],["2024-07-24T00:46:33.010000"],["2024-07-24T00:46:34.010000"],["2024-07-24T00:46:35.010000"],["2024-07-24T00:46:36.010000"],["2024-07-24T00:46:37.010000"],["2024-07-24T00:46:38.010000"],["2024-07-24T00:46:39.010000"],["2024-07-24T00:46:40.010000"],["2024-07-24T00:46:41.010000"],["2024-07-24T00:46:42.010000"],["2024-07-24T00:46:43.010000"],["2024-07-24T00:46:44.010000"],["2024-07-24T00:46:45.010000"],["2024-07-24T00:46:46.010000"],["2024-07-24T00:46:47.010000"],["2024-07-24T00:46:48.010000"],["2024-07-24T00:46:49.010000"],["2024-07-24T00:46:50.010000"],["2024-07-24T00:46:51.010000"],["2024-07-24T00:46:52.010000"],["2024-07-24T00:46:53.010000"],["2024-07-24T00:46:54.010000"],["2024-07-24T00:46:55.010000"],["2024-07-24T00:46:56.010000"],["2024-07-24T00:46:57.010000"],["2024-07-24T00:46:58.010000"],["2024-07-24T00:46:59.010000"],["2024-07-24T00:47:00.010000"],["2024-07-24T00:47:01.010000"],["2024-07-24T00:47:02.010000"],["2024-07-24T00:47:03.010000"],["2024-07-24T00:47:04.010000"],["2024-07-24T00:47:05.010000"],["2024-07-24T00:47:06.010000"],["2024-07-24T00:47:07.010000"],["2024-07-24T00:47:08.010000"],["2024-07-24T00:47:09.010000"],["2024-07-24T00:47:10.010000"],["2024-07-24T00:47:11.010000"],["2024-07-24T00:47:12.010000"],["2024-07-24T00:47:13.010000"],["2024-07-24T00:47:14.010000"],["2024-07-24T00:47:15.010000"],["2024-07-24T00:47:16.010000"],["2024-07-24T00:47:17.010000"],["2024-07-24T00:47:18.010000"],["2024-07-24T00:47:19.010000"],["2024-07-24T00:47:20.010000"],["2024-07-24T00:47:21.010000"],["2024-07-24T00:47:22.010000"],["2024-07-24T00:47:23.010000"],["2024-07-24T00:47:24.010000"],["2024-07-24T00:47:25.010000"],["2024-07-24T00:47:26.010000"],["2024-07-24T00:47:27.010000"],["2024-07-24T00:47:28.010000"],["2024-07-24T00:47:29.010000"],["2024-07-24T00:47:30.010000"],["2024-07-24T00:47:31.010000"],["2024-07-24T00:47:32.010000"],["2024-07-24T00:47:33.010000"],["2024-07-24T00:47:34.010000"],["2024-07-24T00:47:35.010000"],["2024-07-24T00:47:36.010000"],["2024-07-24T00:47:37.010000"],["2024-07-24T00:47:38.010000"],["2024-07-24T00:47:39.010000"],["2024-07-24T00:47:40.010000"],["2024-07-24T00:47:41.010000"],["2024-07-24T00:47:42.010000"],["2024-07-24T00:47:43.010000"],["2024-07-24T00:47:44.010000"],["2024-07-24T00:47:45.010000"],["2024-07-24T00:47:46.010000"],["2024-07-24T00:47:47.010000"],["2024-07-24T00:47:48.010000"],["2024-07-24T00:47:49.010000"],["2024-07-24T00:47:50.010000"],["2024-07-24T00:47:51.010000"],["2024-07-24T00:47:52.010000"],["2024-07-24T00:47:53.010000"],["2024-07-24T00:47:54.010000"],["2024-07-24T00:47:55.010000"],["2024-07-24T00:47:56.010000"],["2024-07-24T00:47:57.010000"],["2024-07-24T00:47:58.010000"],["2024-07-24T00:47:59.010000"],["2024-07-24T00:48:00.010000"],["2024-07-24T00:48:01.010000"],["2024-07-24T00:48:02.010000"],["2024-07-24T00:48:03.010000"],["2024-07-24T00:48:04.010000"],["2024-07-24T00:48:05.010000"],["2024-07-24T00:48:06.010000"],["2024-07-24T00:48:07.010000"],["2024-07-24T00:48:08.010000"],["2024-07-24T00:48:09.010000"],["2024-07-24T00:48:10.010000"],["2024-07-24T00:48:11.010000"],["2024-07-24T00:48:12.010000"],["2024-07-24T00:48:13.010000"],["2024-07-24T00:48:14.010000"],["2024-07-24T00:48:15.010000"],["2024-07-24T00:48:16.010000"],["2024-07-24T00:48:17.010000"],["2024-07-24T00:48:18.010000"],["2024-07-24T00:48:19.010000"],["2024-07-24T00:48:20.010000"],["2024-07-24T00:48:21.010000"],["2024-07-24T00:48:22.010000"],["2024-07-24T00:48:23.010000"],["2024-07-24T00:48:24.010000"],["2024-07-24T00:48:25.010000"],["2024-07-24T00:48:26.010000"],["2024-07-24T00:48:27.010000"],["2024-07-24T00:48:28.010000"],["2024-07-24T00:48:29.010000"],["2024-07-24T00:48:30.010000"],["2024-07-24T00:48:31.010000"],["2024-07-24T00:48:32.010000"],["2024-07-24T00:48:33.010000"],["2024-07-24T00:48:34.010000"],["2024-07-24T00:48:35.010000"],["2024-07-24T00:48:36.010000"],["2024-07-24T00:48:37.010000"],["2024-07-24T00:48:38.010000"],["2024-07-24T00:48:39.010000"],["2024-07-24T00:48:40.010000"],["2024-07-24T00:48:41.010000"],["2024-07-24T00:48:42.010000"],["2024-07-24T00:48:43.010000"],["2024-07-24T00:48:44.010000"],["2024-07-24T00:48:45.010000"],["2024-07-24T00:48:46.010000"],["2024-07-24T00:48:47.010000"],["2024-07-24T00:48:48.010000"],["2024-07-24T00:48:49.010000"],["2024-07-24T00:48:50.010000"],["2024-07-24T00:48:51.010000"],["2024-07-24T00:48:52.010000"],["2024-07-24T00:48:53.010000"],["2024-07-24T00:48:54.010000"],["2024-07-24T00:48:55.010000"],["2024-07-24T00:48:56.010000"],["2024-07-24T00:48:57.010000"],["2024-07-24T00:48:58.010000"],["2024-07-24T00:48:59.010000"],["2024-07-24T00:49:00.010000"],["2024-07-24T00:49:01.010000"],["2024-07-24T00:49:02.010000"],["2024-07-24T00:49:03.010000"],["2024-07-24T00:49:04.010000"],["2024-07-24T00:49:05.010000"],["2024-07-24T00:49:06.010000"],["2024-07-24T00:49:07.010000"],["2024-07-24T00:49:08.010000"],["2024-07-24T00:49:09.010000"],["2024-07-24T00:49:10.010000"],["2024-07-24T00:49:11.010000"],["2024-07-24T00:49:12.010000"],["2024-07-24T00:49:13.010000"],["2024-07-24T00:49:14.010000"],["2024-07-24T00:49:15.010000"],["2024-07-24T00:49:16.010000"],["2024-07-24T00:49:17.010000"],["2024-07-24T00:49:18.010000"],["2024-07-24T00:49:19.010000"],["2024-07-24T00:49:20.010000"],["2024-07-24T00:49:21.010000"],["2024-07-24T00:49:22.010000"],["2024-07-24T00:49:23.010000"],["2024-07-24T00:49:24.010000"],["2024-07-24T00:49:25.010000"],["2024-07-24T00:49:26.010000"],["2024-07-24T00:49:27.010000"],["2024-07-24T00:49:28.010000"],["2024-07-24T00:49:29.010000"],["2024-07-24T00:49:30.010000"],["2024-07-24T00:49:31.010000"],["2024-07-24T00:49:32.010000"],["2024-07-24T00:49:33.010000"],["2024-07-24T00:49:34.010000"],["2024-07-24T00:49:35.010000"],["2024-07-24T00:49:36.010000"],["2024-07-24T00:49:37.010000"],["2024-07-24T00:49:38.010000"],["2024-07-24T00:49:39.010000"],["2024-07-24T00:49:40.010000"],["2024-07-24T00:49:41.010000"],["2024-07-24T00:49:42.010000"],["2024-07-24T00:49:43.010000"],["2024-07-24T00:49:44.010000"],["2024-07-24T00:49:45.010000"],["2024-07-24T00:49:46.010000"],["2024-07-24T00:49:47.010000"],["2024-07-24T00:49:48.010000"],["2024-07-24T00:49:49.010000"],["2024-07-24T00:49:50.010000"],["2024-07-24T00:49:51.010000"],["2024-07-24T00:49:52.010000"],["2024-07-24T00:49:53.010000"],["2024-07-24T00:49:54.010000"],["2024-07-24T00:49:55.010000"],["2024-07-24T00:49:56.010000"],["2024-07-24T00:49:57.010000"],["2024-07-24T00:49:58.010000"],["2024-07-24T00:49:59.010000"],["2024-07-24T00:50:00.010000"],["2024-07-24T00:50:01.010000"],["2024-07-24T00:50:02.010000"],["2024-07-24T00:50:03.010000"],["2024-07-24T00:50:04.010000"],["2024-07-24T00:50:05.010000"],["2024-07-24T00:50:06.010000"],["2024-07-24T00:50:07.010000"],["2024-07-24T00:50:08.010000"],["2024-07-24T00:50:09.010000"],["2024-07-24T00:50:10.010000"],["2024-07-24T00:50:11.010000"],["2024-07-24T00:50:12.010000"],["2024-07-24T00:50:13.010000"],["2024-07-24T00:50:14.010000"],["2024-07-24T00:50:15.010000"],["2024-07-24T00:50:16.010000"],["2024-07-24T00:50:17.010000"],["2024-07-24T00:50:18.010000"],["2024-07-24T00:50:19.010000"],["2024-07-24T00:50:20.010000"],["2024-07-24T00:50:21.010000"],["2024-07-24T00:50:22.010000"],["2024-07-24T00:50:23.010000"],["2024-07-24T00:50:24.010000"],["2024-07-24T00:50:25.010000"],["2024-07-24T00:50:26.010000"],["2024-07-24T00:50:27.010000"],["2024-07-24T00:50:28.010000"],["2024-07-24T00:50:29.010000"],["2024-07-24T00:50:30.010000"],["2024-07-24T00:50:31.010000"],["2024-07-24T00:50:32.010000"],["2024-07-24T00:50:33.010000"],["2024-07-24T00:50:34.010000"],["2024-07-24T00:50:35.010000"],["2024-07-24T00:50:36.010000"],["2024-07-24T00:50:37.010000"],["2024-07-24T00:50:38.010000"],["2024-07-24T00:50:39.010000"],["2024-07-24T00:50:40.010000"],["2024-07-24T00:50:41.010000"],["2024-07-24T00:50:42.010000"],["2024-07-24T00:50:43.010000"],["2024-07-24T00:50:44.010000"],["2024-07-24T00:50:45.010000"],["2024-07-24T00:50:46.010000"],["2024-07-24T00:50:47.010000"],["2024-07-24T00:50:48.010000"],["2024-07-24T00:50:49.010000"],["2024-07-24T00:50:50.010000"],["2024-07-24T00:50:51.010000"],["2024-07-24T00:50:52.010000"],["2024-07-24T00:50:53.010000"],["2024-07-24T00:50:54.010000"],["2024-07-24T00:50:55.010000"],["2024-07-24T00:50:56.010000"],["2024-07-24T00:50:57.010000"],["2024-07-24T00:50:58.010000"],["2024-07-24T00:50:59.010000"],["2024-07-24T00:51:00.010000"],["2024-07-24T00:51:01.010000"],["2024-07-24T00:51:02.010000"],["2024-07-24T00:51:03.010000"],["2024-07-24T00:51:04.010000"],["2024-07-24T00:51:05.010000"],["2024-07-24T00:51:06.010000"],["2024-07-24T00:51:07.010000"],["2024-07-24T00:51:08.010000"],["2024-07-24T00:51:09.010000"],["2024-07-24T00:51:10.010000"],["2024-07-24T00:51:11.010000"],["2024-07-24T00:51:12.010000"],["2024-07-24T00:51:13.010000"],["2024-07-24T00:51:14.010000"],["2024-07-24T00:51:15.010000"],["2024-07-24T00:51:16.010000"],["2024-07-24T00:51:17.010000"],["2024-07-24T00:51:18.010000"],["2024-07-24T00:51:19.010000"],["2024-07-24T00:51:20.010000"],["2024-07-24T00:51:21.010000"],["2024-07-24T00:51:22.010000"],["2024-07-24T00:51:23.010000"],["2024-07-24T00:51:24.010000"],["2024-07-24T00:51:25.010000"],["2024-07-24T00:51:26.010000"],["2024-07-24T00:51:27.010000"],["2024-07-24T00:51:28.010000"],["2024-07-24T00:51:29.010000"],["2024-07-24T00:51:30.010000"],["2024-07-24T00:51:31.010000"],["2024-07-24T00:51:32.010000"],["2024-07-24T00:51:33.010000"],["2024-07-24T00:51:34.010000"],["2024-07-24T00:51:35.010000"],["2024-07-24T00:51:36.010000"],["2024-07-24T00:51:37.010000"],["2024-07-24T00:51:38.010000"],["2024-07-24T00:51:39.010000"],["2024-07-24T00:51:40.010000"],["2024-07-24T00:51:41.010000"],["2024-07-24T00:51:42.010000"],["2024-07-24T00:51:43.010000"],["2024-07-24T00:51:44.010000"],["2024-07-24T00:51:45.010000"],["2024-07-24T00:51:46.010000"],["2024-07-24T00:51:47.010000"],["2024-07-24T00:51:48.010000"],["2024-07-24T00:51:49.010000"],["2024-07-24T00:51:50.010000"],["2024-07-24T00:51:51.010000"],["2024-07-24T00:51:52.010000"],["2024-07-24T00:51:53.010000"],["2024-07-24T00:51:54.010000"],["2024-07-24T00:51:55.010000"],["2024-07-24T00:51:56.010000"],["2024-07-24T00:51:57.010000"],["2024-07-24T00:51:58.010000"],["2024-07-24T00:51:59.010000"],["2024-07-24T00:52:00.010000"],["2024-07-24T00:52:01.010000"],["2024-07-24T00:52:02.010000"],["2024-07-24T00:52:03.010000"],["2024-07-24T00:52:04.010000"],["2024-07-24T00:52:05.010000"],["2024-07-24T00:52:06.010000"],["2024-07-24T00:52:07.010000"],["2024-07-24T00:52:08.010000"],["2024-07-24T00:52:09.010000"],["2024-07-24T00:52:10.010000"],["2024-07-24T00:52:11.010000"],["2024-07-24T00:52:12.010000"],["2024-07-24T00:52:13.010000"],["2024-07-24T00:52:14.010000"],["2024-07-24T00:52:15.010000"],["2024-07-24T00:52:16.010000"],["2024-07-24T00:52:17.010000"],["2024-07-24T00:52:18.010000"],["2024-07-24T00:52:19.010000"],["2024-07-24T00:52:20.010000"],["2024-07-24T00:52:21.010000"],["2024-07-24T00:52:22.010000"],["2024-07-24T00:52:23.010000"],["2024-07-24T00:52:24.010000"],["2024-07-24T00:52:25.010000"],["2024-07-24T00:52:26.010000"],["2024-07-24T00:52:27.010000"],["2024-07-24T00:52:28.010000"],["2024-07-24T00:52:29.010000"],["2024-07-24T00:52:30.010000"],["2024-07-24T00:52:31.010000"],["2024-07-24T00:52:32.010000"],["2024-07-24T00:52:33.010000"],["2024-07-24T00:52:34.010000"],["2024-07-24T00:52:35.010000"],["2024-07-24T00:52:36.010000"],["2024-07-24T00:52:37.010000"],["2024-07-24T00:52:38.010000"],["2024-07-24T00:52:39.010000"],["2024-07-24T00:52:40.010000"],["2024-07-24T00:52:41.010000"],["2024-07-24T00:52:42.010000"],["2024-07-24T00:52:43.010000"],["2024-07-24T00:52:44.010000"],["2024-07-24T00:52:45.010000"],["2024-07-24T00:52:46.010000"],["2024-07-24T00:52:47.010000"],["2024-07-24T00:52:48.010000"],["2024-07-24T00:52:49.010000"],["2024-07-24T00:52:50.010000"],["2024-07-24T00:52:51.010000"],["2024-07-24T00:52:52.010000"],["2024-07-24T00:52:53.010000"],["2024-07-24T00:52:54.010000"],["2024-07-24T00:52:55.010000"],["2024-07-24T00:52:56.010000"],["2024-07-24T00:52:57.010000"],["2024-07-24T00:52:58.010000"],["2024-07-24T00:52:59.010000"],["2024-07-24T00:53:00.010000"],["2024-07-24T00:53:01.010000"],["2024-07-24T00:53:02.010000"],["2024-07-24T00:53:03.010000"],["2024-07-24T00:53:04.010000"],["2024-07-24T00:53:05.010000"],["2024-07-24T00:53:06.010000"],["2024-07-24T00:53:07.010000"],["2024-07-24T00:53:08.010000"],["2024-07-24T00:53:09.010000"],["2024-07-24T00:53:10.010000"],["2024-07-24T00:53:11.010000"],["2024-07-24T00:53:12.010000"],["2024-07-24T00:53:13.010000"],["2024-07-24T00:53:14.010000"],["2024-07-24T00:53:15.010000"],["2024-07-24T00:53:16.010000"],["2024-07-24T00:53:17.010000"],["2024-07-24T00:53:18.010000"],["2024-07-24T00:53:19.010000"],["2024-07-24T00:53:20.010000"],["2024-07-24T00:53:21.010000"],["2024-07-24T00:53:22.010000"],["2024-07-24T00:53:23.010000"],["2024-07-24T00:53:24.010000"],["2024-07-24T00:53:25.010000"],["2024-07-24T00:53:26.010000"],["2024-07-24T00:53:27.010000"],["2024-07-24T00:53:28.010000"],["2024-07-24T00:53:29.010000"],["2024-07-24T00:53:30.010000"],["2024-07-24T00:53:31.010000"],["2024-07-24T00:53:32.010000"],["2024-07-24T00:53:33.010000"],["2024-07-24T00:53:34.010000"],["2024-07-24T00:53:35.010000"],["2024-07-24T00:53:36.010000"],["2024-07-24T00:53:37.010000"],["2024-07-24T00:53:38.010000"],["2024-07-24T00:53:39.010000"],["2024-07-24T00:53:40.010000"],["2024-07-24T00:53:41.010000"],["2024-07-24T00:53:42.010000"],["2024-07-24T00:53:43.010000"],["2024-07-24T00:53:44.010000"],["2024-07-24T00:53:45.010000"],["2024-07-24T00:53:46.010000"],["2024-07-24T00:53:47.010000"],["2024-07-24T00:53:48.010000"],["2024-07-24T00:53:49.010000"],["2024-07-24T00:53:50.010000"],["2024-07-24T00:53:51.010000"],["2024-07-24T00:53:52.010000"],["2024-07-24T00:53:53.010000"],["2024-07-24T00:53:54.010000"],["2024-07-24T00:53:55.010000"],["2024-07-24T00:53:56.010000"],["2024-07-24T00:53:57.010000"],["2024-07-24T00:53:58.010000"],["2024-07-24T00:53:59.010000"],["2024-07-24T00:54:00.010000"],["2024-07-24T00:54:01.010000"],["2024-07-24T00:54:02.010000"],["2024-07-24T00:54:03.010000"],["2024-07-24T00:54:04.010000"],["2024-07-24T00:54:05.010000"],["2024-07-24T00:54:06.010000"],["2024-07-24T00:54:07.010000"],["2024-07-24T00:54:08.010000"],["2024-07-24T00:54:09.010000"],["2024-07-24T00:54:10.010000"],["2024-07-24T00:54:11.010000"],["2024-07-24T00:54:12.010000"],["2024-07-24T00:54:13.010000"],["2024-07-24T00:54:14.010000"],["2024-07-24T00:54:15.010000"],["2024-07-24T00:54:16.010000"],["2024-07-24T00:54:17.010000"],["2024-07-24T00:54:18.010000"],["2024-07-24T00:54:19.010000"],["2024-07-24T00:54:20.010000"],["2024-07-24T00:54:21.010000"],["2024-07-24T00:54:22.010000"],["2024-07-24T00:54:23.010000"],["2024-07-24T00:54:24.010000"],["2024-07-24T00:54:25.010000"],["2024-07-24T00:54:26.010000"],["2024-07-24T00:54:27.010000"],["2024-07-24T00:54:28.010000"],["2024-07-24T00:54:29.010000"],["2024-07-24T00:54:30.010000"],["2024-07-24T00:54:31.010000"],["2024-07-24T00:54:32.010000"],["2024-07-24T00:54:33.010000"],["2024-07-24T00:54:34.010000"],["2024-07-24T00:54:35.010000"],["2024-07-24T00:54:36.010000"],["2024-07-24T00:54:37.010000"],["2024-07-24T00:54:38.010000"],["2024-07-24T00:54:39.010000"],["2024-07-24T00:54:40.010000"],["2024-07-24T00:54:41.010000"],["2024-07-24T00:54:42.010000"],["2024-07-24T00:54:43.010000"],["2024-07-24T00:54:44.010000"],["2024-07-24T00:54:45.010000"],["2024-07-24T00:54:46.010000"],["2024-07-24T00:54:47.010000"],["2024-07-24T00:54:48.010000"],["2024-07-24T00:54:49.010000"],["2024-07-24T00:54:50.010000"],["2024-07-24T00:54:51.010000"],["2024-07-24T00:54:52.010000"],["2024-07-24T00:54:53.010000"],["2024-07-24T00:54:54.010000"],["2024-07-24T00:54:55.010000"],["2024-07-24T00:54:56.010000"],["2024-07-24T00:54:57.010000"],["2024-07-24T00:54:58.010000"],["2024-07-24T00:54:59.010000"],["2024-07-24T00:55:00.010000"],["2024-07-24T00:55:01.010000"],["2024-07-24T00:55:02.010000"],["2024-07-24T00:55:03.010000"],["2024-07-24T00:55:04.010000"],["2024-07-24T00:55:05.010000"],["2024-07-24T00:55:06.010000"],["2024-07-24T00:55:07.010000"],["2024-07-24T00:55:08.010000"],["2024-07-24T00:55:09.010000"],["2024-07-24T00:55:10.010000"],["2024-07-24T00:55:11.010000"],["2024-07-24T00:55:12.010000"],["2024-07-24T00:55:13.010000"],["2024-07-24T00:55:14.010000"],["2024-07-24T00:55:15.010000"],["2024-07-24T00:55:16.010000"],["2024-07-24T00:55:17.010000"],["2024-07-24T00:55:18.010000"],["2024-07-24T00:55:19.010000"],["2024-07-24T00:55:20.010000"],["2024-07-24T00:55:21.010000"],["2024-07-24T00:55:22.010000"],["2024-07-24T00:55:23.010000"],["2024-07-24T00:55:24.010000"],["2024-07-24T00:55:25.010000"],["2024-07-24T00:55:26.010000"],["2024-07-24T00:55:27.010000"],["2024-07-24T00:55:28.010000"],["2024-07-24T00:55:29.010000"],["2024-07-24T00:55:30.010000"],["2024-07-24T00:55:31.010000"],["2024-07-24T00:55:32.010000"],["2024-07-24T00:55:33.010000"],["2024-07-24T00:55:34.010000"],["2024-07-24T00:55:35.010000"],["2024-07-24T00:55:36.010000"],["2024-07-24T00:55:37.010000"],["2024-07-24T00:55:38.010000"],["2024-07-24T00:55:39.010000"],["2024-07-24T00:55:40.010000"],["2024-07-24T00:55:41.010000"],["2024-07-24T00:55:42.010000"],["2024-07-24T00:55:43.010000"],["2024-07-24T00:55:44.010000"],["2024-07-24T00:55:45.010000"],["2024-07-24T00:55:46.010000"],["2024-07-24T00:55:47.010000"],["2024-07-24T00:55:48.010000"],["2024-07-24T00:55:49.010000"],["2024-07-24T00:55:50.010000"],["2024-07-24T00:55:51.010000"],["2024-07-24T00:55:52.010000"],["2024-07-24T00:55:53.010000"],["2024-07-24T00:55:54.010000"],["2024-07-24T00:55:55.010000"],["2024-07-24T00:55:56.010000"],["2024-07-24T00:55:57.010000"],["2024-07-24T00:55:58.010000"],["2024-07-24T00:55:59.010000"],["2024-07-24T00:56:00.010000"],["2024-07-24T00:56:01.010000"],["2024-07-24T00:56:02.010000"],["2024-07-24T00:56:03.010000"],["2024-07-24T00:56:04.010000"],["2024-07-24T00:56:05.010000"],["2024-07-24T00:56:06.010000"],["2024-07-24T00:56:07.010000"],["2024-07-24T00:56:08.010000"],["2024-07-24T00:56:09.010000"],["2024-07-24T00:56:10.010000"],["2024-07-24T00:56:11.010000"],["2024-07-24T00:56:12.010000"],["2024-07-24T00:56:13.010000"],["2024-07-24T00:56:14.010000"],["2024-07-24T00:56:15.010000"],["2024-07-24T00:56:16.010000"],["2024-07-24T00:56:17.010000"],["2024-07-24T00:56:18.010000"],["2024-07-24T00:56:19.010000"],["2024-07-24T00:56:20.010000"],["2024-07-24T00:56:21.010000"],["2024-07-24T00:56:22.010000"],["2024-07-24T00:56:23.010000"],["2024-07-24T00:56:24.010000"],["2024-07-24T00:56:25.010000"],["2024-07-24T00:56:26.010000"],["2024-07-24T00:56:27.010000"],["2024-07-24T00:56:28.010000"],["2024-07-24T00:56:29.010000"],["2024-07-24T00:56:30.010000"],["2024-07-24T00:56:31.010000"],["2024-07-24T00:56:32.010000"],["2024-07-24T00:56:33.010000"],["2024-07-24T00:56:34.010000"],["2024-07-24T00:56:35.010000"],["2024-07-24T00:56:36.010000"],["2024-07-24T00:56:37.010000"],["2024-07-24T00:56:38.010000"],["2024-07-24T00:56:39.010000"],["2024-07-24T00:56:40.010000"],["2024-07-24T00:56:41.010000"],["2024-07-24T00:56:42.010000"],["2024-07-24T00:56:43.010000"],["2024-07-24T00:56:44.010000"],["2024-07-24T00:56:45.010000"],["2024-07-24T00:56:46.010000"],["2024-07-24T00:56:47.010000"],["2024-07-24T00:56:48.010000"],["2024-07-24T00:56:49.010000"],["2024-07-24T00:56:50.010000"],["2024-07-24T00:56:51.010000"],["2024-07-24T00:56:52.010000"],["2024-07-24T00:56:53.010000"],["2024-07-24T00:56:54.010000"],["2024-07-24T00:56:55.010000"],["2024-07-24T00:56:56.010000"],["2024-07-24T00:56:57.010000"],["2024-07-24T00:56:58.010000"],["2024-07-24T00:56:59.010000"],["2024-07-24T00:57:00.010000"],["2024-07-24T00:57:01.010000"],["2024-07-24T00:57:02.010000"],["2024-07-24T00:57:03.010000"],["2024-07-24T00:57:04.010000"],["2024-07-24T00:57:05.010000"],["2024-07-24T00:57:06.010000"],["2024-07-24T00:57:07.010000"],["2024-07-24T00:57:08.010000"],["2024-07-24T00:57:09.010000"],["2024-07-24T00:57:10.010000"],["2024-07-24T00:57:11.010000"],["2024-07-24T00:57:12.010000"],["2024-07-24T00:57:13.010000"],["2024-07-24T00:57:14.010000"],["2024-07-24T00:57:15.010000"],["2024-07-24T00:57:16.010000"],["2024-07-24T00:57:17.010000"],["2024-07-24T00:57:18.010000"],["2024-07-24T00:57:19.010000"],["2024-07-24T00:57:20.010000"],["2024-07-24T00:57:21.010000"],["2024-07-24T00:57:22.010000"],["2024-07-24T00:57:23.010000"],["2024-07-24T00:57:24.010000"],["2024-07-24T00:57:25.010000"],["2024-07-24T00:57:26.010000"],["2024-07-24T00:57:27.010000"],["2024-07-24T00:57:28.010000"],["2024-07-24T00:57:29.010000"],["2024-07-24T00:57:30.010000"],["2024-07-24T00:57:31.010000"],["2024-07-24T00:57:32.010000"],["2024-07-24T00:57:33.010000"],["2024-07-24T00:57:34.010000"],["2024-07-24T00:57:35.010000"],["2024-07-24T00:57:36.010000"],["2024-07-24T00:57:37.010000"],["2024-07-24T00:57:38.010000"],["2024-07-24T00:57:39.010000"],["2024-07-24T00:57:40.010000"],["2024-07-24T00:57:41.010000"],["2024-07-24T00:57:42.010000"],["2024-07-24T00:57:43.010000"],["2024-07-24T00:57:44.010000"],["2024-07-24T00:57:45.010000"],["2024-07-24T00:57:46.010000"],["2024-07-24T00:57:47.010000"],["2024-07-24T00:57:48.010000"],["2024-07-24T00:57:49.010000"],["2024-07-24T00:57:50.010000"],["2024-07-24T00:57:51.010000"],["2024-07-24T00:57:52.010000"],["2024-07-24T00:57:53.010000"],["2024-07-24T00:57:54.010000"],["2024-07-24T00:57:55.010000"],["2024-07-24T00:57:56.010000"],["2024-07-24T00:57:57.010000"],["2024-07-24T00:57:58.010000"],["2024-07-24T00:57:59.010000"],["2024-07-24T00:58:00.010000"],["2024-07-24T00:58:01.010000"],["2024-07-24T00:58:02.010000"],["2024-07-24T00:58:03.010000"],["2024-07-24T00:58:04.010000"],["2024-07-24T00:58:05.010000"],["2024-07-24T00:58:06.010000"],["2024-07-24T00:58:07.010000"],["2024-07-24T00:58:08.010000"],["2024-07-24T00:58:09.010000"],["2024-07-24T00:58:10.010000"],["2024-07-24T00:58:11.010000"],["2024-07-24T00:58:12.010000"],["2024-07-24T00:58:13.010000"],["2024-07-24T00:58:14.010000"],["2024-07-24T00:58:15.010000"],["2024-07-24T00:58:16.010000"],["2024-07-24T00:58:17.010000"],["2024-07-24T00:58:18.010000"],["2024-07-24T00:58:19.010000"],["2024-07-24T00:58:20.010000"],["2024-07-24T00:58:21.010000"],["2024-07-24T00:58:22.010000"],["2024-07-24T00:58:23.010000"],["2024-07-24T00:58:24.010000"],["2024-07-24T00:58:25.010000"],["2024-07-24T00:58:26.010000"],["2024-07-24T00:58:27.010000"],["2024-07-24T00:58:28.010000"],["2024-07-24T00:58:29.010000"],["2024-07-24T00:58:30.010000"],["2024-07-24T00:58:31.010000"],["2024-07-24T00:58:32.010000"],["2024-07-24T00:58:33.010000"],["2024-07-24T00:58:34.010000"],["2024-07-24T00:58:35.010000"],["2024-07-24T00:58:36.010000"],["2024-07-24T00:58:37.010000"],["2024-07-24T00:58:38.010000"],["2024-07-24T00:58:39.010000"],["2024-07-24T00:58:40.010000"],["2024-07-24T00:58:41.010000"],["2024-07-24T00:58:42.010000"],["2024-07-24T00:58:43.010000"],["2024-07-24T00:58:44.010000"],["2024-07-24T00:58:45.010000"],["2024-07-24T00:58:46.010000"],["2024-07-24T00:58:47.010000"],["2024-07-24T00:58:48.010000"],["2024-07-24T00:58:49.010000"],["2024-07-24T00:58:50.010000"],["2024-07-24T00:58:51.010000"],["2024-07-24T00:58:52.010000"],["2024-07-24T00:58:53.010000"],["2024-07-24T00:58:54.010000"],["2024-07-24T00:58:55.010000"],["2024-07-24T00:58:56.010000"],["2024-07-24T00:58:57.010000"],["2024-07-24T00:58:58.010000"],["2024-07-24T00:58:59.010000"],["2024-07-24T00:59:00.010000"],["2024-07-24T00:59:01.010000"],["2024-07-24T00:59:02.010000"],["2024-07-24T00:59:03.010000"],["2024-07-24T00:59:04.010000"],["2024-07-24T00:59:05.010000"],["2024-07-24T00:59:06.010000"],["2024-07-24T00:59:07.010000"],["2024-07-24T00:59:08.010000"],["2024-07-24T00:59:09.010000"],["2024-07-24T00:59:10.010000"],["2024-07-24T00:59:11.010000"],["2024-07-24T00:59:12.010000"],["2024-07-24T00:59:13.010000"],["2024-07-24T00:59:14.010000"],["2024-07-24T00:59:15.010000"],["2024-07-24T00:59:16.010000"],["2024-07-24T00:59:17.010000"],["2024-07-24T00:59:18.010000"],["2024-07-24T00:59:19.010000"],["2024-07-24T00:59:20.010000"],["2024-07-24T00:59:21.010000"],["2024-07-24T00:59:22.010000"],["2024-07-24T00:59:23.010000"],["2024-07-24T00:59:24.010000"],["2024-07-24T00:59:25.010000"],["2024-07-24T00:59:26.010000"],["2024-07-24T00:59:27.010000"],["2024-07-24T00:59:28.010000"],["2024-07-24T00:59:29.010000"],["2024-07-24T00:59:30.010000"],["2024-07-24T00:59:31.010000"],["2024-07-24T00:59:32.010000"],["2024-07-24T00:59:33.010000"],["2024-07-24T00:59:34.010000"],["2024-07-24T00:59:35.010000"],["2024-07-24T00:59:36.010000"],["2024-07-24T00:59:37.010000"],["2024-07-24T00:59:38.010000"],["2024-07-24T00:59:39.010000"],["2024-07-24T00:59:40.010000"],["2024-07-24T00:59:41.010000"],["2024-07-24T00:59:42.010000"],["2024-07-24T00:59:43.010000"],["2024-07-24T00:59:44.010000"],["2024-07-24T00:59:45.010000"],["2024-07-24T00:59:46.010000"],["2024-07-24T00:59:47.010000"],["2024-07-24T00:59:48.010000"],["2024-07-24T00:59:49.010000"],["2024-07-24T00:59:50.010000"],["2024-07-24T00:59:51.010000"],["2024-07-24T00:59:52.010000"],["2024-07-24T00:59:53.010000"],["2024-07-24T00:59:54.010000"],["2024-07-24T00:59:55.010000"],["2024-07-24T00:59:56.010000"],["2024-07-24T00:59:57.010000"],["2024-07-24T00:59:58.010000"],["2024-07-24T00:59:59.010000"],["2024-07-24T01:00:00.010000"],["2024-07-24T01:00:01.010000"],["2024-07-24T01:00:02.010000"],["2024-07-24T01:00:03.010000"],["2024-07-24T01:00:04.010000"],["2024-07-24T01:00:05.010000"],["2024-07-24T01:00:06.010000"],["2024-07-24T01:00:07.010000"],["2024-07-24T01:00:08.010000"],["2024-07-24T01:00:09.010000"],["2024-07-24T01:00:10.010000"],["2024-07-24T01:00:11.010000"],["2024-07-24T01:00:12.010000"],["2024-07-24T01:00:13.010000"],["2024-07-24T01:00:14.010000"],["2024-07-24T01:00:15.010000"],["2024-07-24T01:00:16.010000"],["2024-07-24T01:00:17.010000"],["2024-07-24T01:00:18.010000"],["2024-07-24T01:00:19.010000"],["2024-07-24T01:00:20.010000"],["2024-07-24T01:00:21.010000"],["2024-07-24T01:00:22.010000"],["2024-07-24T01:00:23.010000"],["2024-07-24T01:00:24.010000"],["2024-07-24T01:00:25.010000"],["2024-07-24T01:00:26.010000"],["2024-07-24T01:00:27.010000"],["2024-07-24T01:00:28.010000"],["2024-07-24T01:00:29.010000"],["2024-07-24T01:00:30.010000"],["2024-07-24T01:00:31.010000"],["2024-07-24T01:00:32.010000"],["2024-07-24T01:00:33.010000"],["2024-07-24T01:00:34.010000"],["2024-07-24T01:00:35.010000"],["2024-07-24T01:00:36.010000"],["2024-07-24T01:00:37.010000"],["2024-07-24T01:00:38.010000"],["2024-07-24T01:00:39.010000"],["2024-07-24T01:00:40.010000"],["2024-07-24T01:00:41.010000"],["2024-07-24T01:00:42.010000"],["2024-07-24T01:00:43.010000"],["2024-07-24T01:00:44.010000"],["2024-07-24T01:00:45.010000"],["2024-07-24T01:00:46.010000"],["2024-07-24T01:00:47.010000"],["2024-07-24T01:00:48.010000"],["2024-07-24T01:00:49.010000"],["2024-07-24T01:00:50.010000"],["2024-07-24T01:00:51.010000"],["2024-07-24T01:00:52.010000"],["2024-07-24T01:00:53.010000"],["2024-07-24T01:00:54.010000"],["2024-07-24T01:00:55.010000"],["2024-07-24T01:00:56.010000"],["2024-07-24T01:00:57.010000"],["2024-07-24T01:00:58.010000"],["2024-07-24T01:00:59.010000"],["2024-07-24T01:01:00.010000"],["2024-07-24T01:01:01.010000"],["2024-07-24T01:01:02.010000"],["2024-07-24T01:01:03.010000"],["2024-07-24T01:01:04.010000"],["2024-07-24T01:01:05.010000"],["2024-07-24T01:01:06.010000"],["2024-07-24T01:01:07.010000"],["2024-07-24T01:01:08.010000"],["2024-07-24T01:01:09.010000"],["2024-07-24T01:01:10.010000"],["2024-07-24T01:01:11.010000"],["2024-07-24T01:01:12.010000"],["2024-07-24T01:01:13.010000"],["2024-07-24T01:01:14.010000"],["2024-07-24T01:01:15.010000"],["2024-07-24T01:01:16.010000"],["2024-07-24T01:01:17.010000"],["2024-07-24T01:01:18.010000"],["2024-07-24T01:01:19.010000"],["2024-07-24T01:01:20.010000"],["2024-07-24T01:01:21.010000"],["2024-07-24T01:01:22.010000"],["2024-07-24T01:01:23.010000"],["2024-07-24T01:01:24.010000"],["2024-07-24T01:01:25.010000"],["2024-07-24T01:01:26.010000"],["2024-07-24T01:01:27.010000"],["2024-07-24T01:01:28.010000"],["2024-07-24T01:01:29.010000"],["2024-07-24T01:01:30.010000"],["2024-07-24T01:01:31.010000"],["2024-07-24T01:01:32.010000"],["2024-07-24T01:01:33.010000"],["2024-07-24T01:01:34.010000"],["2024-07-24T01:01:35.010000"],["2024-07-24T01:01:36.010000"],["2024-07-24T01:01:37.010000"],["2024-07-24T01:01:38.010000"],["2024-07-24T01:01:39.010000"],["2024-07-24T01:01:40.010000"],["2024-07-24T01:01:41.010000"],["2024-07-24T01:01:42.010000"],["2024-07-24T01:01:43.010000"],["2024-07-24T01:01:44.010000"],["2024-07-24T01:01:45.010000"],["2024-07-24T01:01:46.010000"],["2024-07-24T01:01:47.010000"],["2024-07-24T01:01:48.010000"],["2024-07-24T01:01:49.010000"],["2024-07-24T01:01:50.010000"],["2024-07-24T01:01:51.010000"],["2024-07-24T01:01:52.010000"],["2024-07-24T01:01:53.010000"],["2024-07-24T01:01:54.010000"],["2024-07-24T01:01:55.010000"],["2024-07-24T01:01:56.010000"],["2024-07-24T01:01:57.010000"],["2024-07-24T01:01:58.010000"],["2024-07-24T01:01:59.010000"],["2024-07-24T01:02:00.010000"],["2024-07-24T01:02:01.010000"],["2024-07-24T01:02:02.010000"],["2024-07-24T01:02:03.010000"],["2024-07-24T01:02:04.010000"],["2024-07-24T01:02:05.010000"],["2024-07-24T01:02:06.010000"],["2024-07-24T01:02:07.010000"],["2024-07-24T01:02:08.010000"],["2024-07-24T01:02:09.010000"],["2024-07-24T01:02:10.010000"],["2024-07-24T01:02:11.010000"],["2024-07-24T01:02:12.010000"],["2024-07-24T01:02:13.010000"],["2024-07-24T01:02:14.010000"],["2024-07-24T01:02:15.010000"],["2024-07-24T01:02:16.010000"],["2024-07-24T01:02:17.010000"],["2024-07-24T01:02:18.010000"],["2024-07-24T01:02:19.010000"],["2024-07-24T01:02:20.010000"],["2024-07-24T01:02:21.010000"],["2024-07-24T01:02:22.010000"],["2024-07-24T01:02:23.010000"],["2024-07-24T01:02:24.010000"],["2024-07-24T01:02:25.010000"],["2024-07-24T01:02:26.010000"],["2024-07-24T01:02:27.010000"],["2024-07-24T01:02:28.010000"],["2024-07-24T01:02:29.010000"],["2024-07-24T01:02:30.010000"],["2024-07-24T01:02:31.010000"],["2024-07-24T01:02:32.010000"],["2024-07-24T01:02:33.010000"],["2024-07-24T01:02:34.010000"],["2024-07-24T01:02:35.010000"],["2024-07-24T01:02:36.010000"],["2024-07-24T01:02:37.010000"],["2024-07-24T01:02:38.010000"],["2024-07-24T01:02:39.010000"],["2024-07-24T01:02:40.010000"],["2024-07-24T01:02:41.010000"],["2024-07-24T01:02:42.010000"],["2024-07-24T01:02:43.010000"],["2024-07-24T01:02:44.010000"],["2024-07-24T01:02:45.010000"],["2024-07-24T01:02:46.010000"],["2024-07-24T01:02:47.010000"],["2024-07-24T01:02:48.010000"],["2024-07-24T01:02:49.010000"],["2024-07-24T01:02:50.010000"],["2024-07-24T01:02:51.010000"],["2024-07-24T01:02:52.010000"],["2024-07-24T01:02:53.010000"],["2024-07-24T01:02:54.010000"],["2024-07-24T01:02:55.010000"],["2024-07-24T01:02:56.010000"],["2024-07-24T01:02:57.010000"],["2024-07-24T01:02:58.010000"],["2024-07-24T01:02:59.010000"],["2024-07-24T01:03:00.010000"],["2024-07-24T01:03:01.010000"],["2024-07-24T01:03:02.010000"],["2024-07-24T01:03:03.010000"],["2024-07-24T01:03:04.010000"],["2024-07-24T01:03:05.010000"],["2024-07-24T01:03:06.010000"],["2024-07-24T01:03:07.010000"],["2024-07-24T01:03:08.010000"],["2024-07-24T01:03:09.010000"],["2024-07-24T01:03:10.010000"],["2024-07-24T01:03:11.010000"],["2024-07-24T01:03:12.010000"],["2024-07-24T01:03:13.010000"],["2024-07-24T01:03:14.010000"],["2024-07-24T01:03:15.010000"],["2024-07-24T01:03:16.010000"],["2024-07-24T01:03:17.010000"],["2024-07-24T01:03:18.010000"],["2024-07-24T01:03:19.010000"],["2024-07-24T01:03:20.010000"],["2024-07-24T01:03:21.010000"],["2024-07-24T01:03:22.010000"],["2024-07-24T01:03:23.010000"],["2024-07-24T01:03:24.010000"],["2024-07-24T01:03:25.010000"],["2024-07-24T01:03:26.010000"],["2024-07-24T01:03:27.010000"],["2024-07-24T01:03:28.010000"],["2024-07-24T01:03:29.010000"],["2024-07-24T01:03:30.010000"],["2024-07-24T01:03:31.010000"],["2024-07-24T01:03:32.010000"],["2024-07-24T01:03:33.010000"],["2024-07-24T01:03:34.010000"],["2024-07-24T01:03:35.010000"],["2024-07-24T01:03:36.010000"],["2024-07-24T01:03:37.010000"],["2024-07-24T01:03:38.010000"],["2024-07-24T01:03:39.010000"],["2024-07-24T01:03:40.010000"],["2024-07-24T01:03:41.010000"],["2024-07-24T01:03:42.010000"],["2024-07-24T01:03:43.010000"],["2024-07-24T01:03:44.010000"],["2024-07-24T01:03:45.010000"],["2024-07-24T01:03:46.010000"],["2024-07-24T01:03:47.010000"],["2024-07-24T01:03:48.010000"],["2024-07-24T01:03:49.010000"],["2024-07-24T01:03:50.010000"],["2024-07-24T01:03:51.010000"],["2024-07-24T01:03:52.010000"],["2024-07-24T01:03:53.010000"],["2024-07-24T01:03:54.010000"],["2024-07-24T01:03:55.010000"],["2024-07-24T01:03:56.010000"],["2024-07-24T01:03:57.010000"],["2024-07-24T01:03:58.010000"],["2024-07-24T01:03:59.010000"],["2024-07-24T01:04:00.010000"],["2024-07-24T01:04:01.010000"],["2024-07-24T01:04:02.010000"],["2024-07-24T01:04:03.010000"],["2024-07-24T01:04:04.010000"],["2024-07-24T01:04:05.010000"],["2024-07-24T01:04:06.010000"],["2024-07-24T01:04:07.010000"],["2024-07-24T01:04:08.010000"],["2024-07-24T01:04:09.010000"],["2024-07-24T01:04:10.010000"],["2024-07-24T01:04:11.010000"],["2024-07-24T01:04:12.010000"],["2024-07-24T01:04:13.010000"],["2024-07-24T01:04:14.010000"],["2024-07-24T01:04:15.010000"],["2024-07-24T01:04:16.010000"],["2024-07-24T01:04:17.010000"],["2024-07-24T01:04:18.010000"],["2024-07-24T01:04:19.010000"],["2024-07-24T01:04:20.010000"],["2024-07-24T01:04:21.010000"],["2024-07-24T01:04:22.010000"],["2024-07-24T01:04:23.010000"],["2024-07-24T01:04:24.010000"],["2024-07-24T01:04:25.010000"],["2024-07-24T01:04:26.010000"],["2024-07-24T01:04:27.010000"],["2024-07-24T01:04:28.010000"],["2024-07-24T01:04:29.010000"],["2024-07-24T01:04:30.010000"],["2024-07-24T01:04:31.010000"],["2024-07-24T01:04:32.010000"],["2024-07-24T01:04:33.010000"],["2024-07-24T01:04:34.010000"],["2024-07-24T01:04:35.010000"],["2024-07-24T01:04:36.010000"],["2024-07-24T01:04:37.010000"],["2024-07-24T01:04:38.010000"],["2024-07-24T01:04:39.010000"],["2024-07-24T01:04:40.010000"],["2024-07-24T01:04:41.010000"],["2024-07-24T01:04:42.010000"],["2024-07-24T01:04:43.010000"],["2024-07-24T01:04:44.010000"],["2024-07-24T01:04:45.010000"],["2024-07-24T01:04:46.010000"],["2024-07-24T01:04:47.010000"],["2024-07-24T01:04:48.010000"],["2024-07-24T01:04:49.010000"],["2024-07-24T01:04:50.010000"],["2024-07-24T01:04:51.010000"],["2024-07-24T01:04:52.010000"],["2024-07-24T01:04:53.010000"],["2024-07-24T01:04:54.010000"],["2024-07-24T01:04:55.010000"],["2024-07-24T01:04:56.010000"],["2024-07-24T01:04:57.010000"],["2024-07-24T01:04:58.010000"],["2024-07-24T01:04:59.010000"],["2024-07-24T01:05:00.010000"],["2024-07-24T01:05:01.010000"],["2024-07-24T01:05:02.010000"],["2024-07-24T01:05:03.010000"],["2024-07-24T01:05:04.010000"],["2024-07-24T01:05:05.010000"],["2024-07-24T01:05:06.010000"],["2024-07-24T01:05:07.010000"],["2024-07-24T01:05:08.010000"],["2024-07-24T01:05:09.010000"],["2024-07-24T01:05:10.010000"],["2024-07-24T01:05:11.010000"],["2024-07-24T01:05:12.010000"],["2024-07-24T01:05:13.010000"],["2024-07-24T01:05:14.010000"],["2024-07-24T01:05:15.010000"],["2024-07-24T01:05:16.010000"],["2024-07-24T01:05:17.010000"],["2024-07-24T01:05:18.010000"],["2024-07-24T01:05:19.010000"],["2024-07-24T01:05:20.010000"],["2024-07-24T01:05:21.010000"],["2024-07-24T01:05:22.010000"],["2024-07-24T01:05:23.010000"],["2024-07-24T01:05:24.010000"],["2024-07-24T01:05:25.010000"],["2024-07-24T01:05:26.010000"],["2024-07-24T01:05:27.010000"],["2024-07-24T01:05:28.010000"],["2024-07-24T01:05:29.010000"],["2024-07-24T01:05:30.010000"],["2024-07-24T01:05:31.010000"],["2024-07-24T01:05:32.010000"],["2024-07-24T01:05:33.010000"],["2024-07-24T01:05:34.010000"],["2024-07-24T01:05:35.010000"],["2024-07-24T01:05:36.010000"],["2024-07-24T01:05:37.010000"],["2024-07-24T01:05:38.010000"],["2024-07-24T01:05:39.010000"],["2024-07-24T01:05:40.010000"],["2024-07-24T01:05:41.010000"],["2024-07-24T01:05:42.010000"],["2024-07-24T01:05:43.010000"],["2024-07-24T01:05:44.010000"],["2024-07-24T01:05:45.010000"],["2024-07-24T01:05:46.010000"],["2024-07-24T01:05:47.010000"],["2024-07-24T01:05:48.010000"],["2024-07-24T01:05:49.010000"],["2024-07-24T01:05:50.010000"],["2024-07-24T01:05:51.010000"],["2024-07-24T01:05:52.010000"],["2024-07-24T01:05:53.010000"],["2024-07-24T01:05:54.010000"],["2024-07-24T01:05:55.010000"],["2024-07-24T01:05:56.010000"],["2024-07-24T01:05:57.010000"],["2024-07-24T01:05:58.010000"],["2024-07-24T01:05:59.010000"],["2024-07-24T01:06:00.010000"],["2024-07-24T01:06:01.010000"],["2024-07-24T01:06:02.010000"],["2024-07-24T01:06:03.010000"],["2024-07-24T01:06:04.010000"],["2024-07-24T01:06:05.010000"],["2024-07-24T01:06:06.010000"],["2024-07-24T01:06:07.010000"],["2024-07-24T01:06:08.010000"],["2024-07-24T01:06:09.010000"],["2024-07-24T01:06:10.010000"],["2024-07-24T01:06:11.010000"],["2024-07-24T01:06:12.010000"],["2024-07-24T01:06:13.010000"],["2024-07-24T01:06:14.010000"],["2024-07-24T01:06:15.010000"],["2024-07-24T01:06:16.010000"],["2024-07-24T01:06:17.010000"],["2024-07-24T01:06:18.010000"],["2024-07-24T01:06:19.010000"],["2024-07-24T01:06:20.010000"],["2024-07-24T01:06:21.010000"],["2024-07-24T01:06:22.010000"],["2024-07-24T01:06:23.010000"],["2024-07-24T01:06:24.010000"],["2024-07-24T01:06:25.010000"],["2024-07-24T01:06:26.010000"],["2024-07-24T01:06:27.010000"],["2024-07-24T01:06:28.010000"],["2024-07-24T01:06:29.010000"],["2024-07-24T01:06:30.010000"],["2024-07-24T01:06:31.010000"],["2024-07-24T01:06:32.010000"],["2024-07-24T01:06:33.010000"],["2024-07-24T01:06:34.010000"],["2024-07-24T01:06:35.010000"],["2024-07-24T01:06:36.010000"],["2024-07-24T01:06:37.010000"],["2024-07-24T01:06:38.010000"],["2024-07-24T01:06:39.010000"],["2024-07-24T01:06:40.010000"],["2024-07-24T01:06:41.010000"],["2024-07-24T01:06:42.010000"],["2024-07-24T01:06:43.010000"],["2024-07-24T01:06:44.010000"],["2024-07-24T01:06:45.010000"],["2024-07-24T01:06:46.010000"],["2024-07-24T01:06:47.010000"],["2024-07-24T01:06:48.010000"],["2024-07-24T01:06:49.010000"],["2024-07-24T01:06:50.010000"],["2024-07-24T01:06:51.010000"],["2024-07-24T01:06:52.010000"],["2024-07-24T01:06:53.010000"],["2024-07-24T01:06:54.010000"],["2024-07-24T01:06:55.010000"],["2024-07-24T01:06:56.010000"],["2024-07-24T01:06:57.010000"],["2024-07-24T01:06:58.010000"],["2024-07-24T01:06:59.010000"],["2024-07-24T01:07:00.010000"],["2024-07-24T01:07:01.010000"],["2024-07-24T01:07:02.010000"],["2024-07-24T01:07:03.010000"],["2024-07-24T01:07:04.010000"],["2024-07-24T01:07:05.010000"],["2024-07-24T01:07:06.010000"],["2024-07-24T01:07:07.010000"],["2024-07-24T01:07:08.010000"],["2024-07-24T01:07:09.010000"],["2024-07-24T01:07:10.010000"],["2024-07-24T01:07:11.010000"],["2024-07-24T01:07:12.010000"],["2024-07-24T01:07:13.010000"],["2024-07-24T01:07:14.010000"],["2024-07-24T01:07:15.010000"],["2024-07-24T01:07:16.010000"],["2024-07-24T01:07:17.010000"],["2024-07-24T01:07:18.010000"],["2024-07-24T01:07:19.010000"],["2024-07-24T01:07:20.010000"],["2024-07-24T01:07:21.010000"],["2024-07-24T01:07:22.010000"],["2024-07-24T01:07:23.010000"],["2024-07-24T01:07:24.010000"],["2024-07-24T01:07:25.010000"],["2024-07-24T01:07:26.010000"],["2024-07-24T01:07:27.010000"],["2024-07-24T01:07:28.010000"],["2024-07-24T01:07:29.010000"],["2024-07-24T01:07:30.010000"],["2024-07-24T01:07:31.010000"],["2024-07-24T01:07:32.010000"],["2024-07-24T01:07:33.010000"],["2024-07-24T01:07:34.010000"],["2024-07-24T01:07:35.010000"],["2024-07-24T01:07:36.010000"],["2024-07-24T01:07:37.010000"],["2024-07-24T01:07:38.010000"],["2024-07-24T01:07:39.010000"],["2024-07-24T01:07:40.010000"],["2024-07-24T01:07:41.010000"],["2024-07-24T01:07:42.010000"],["2024-07-24T01:07:43.010000"],["2024-07-24T01:07:44.010000"],["2024-07-24T01:07:45.010000"],["2024-07-24T01:07:46.010000"],["2024-07-24T01:07:47.010000"],["2024-07-24T01:07:48.010000"],["2024-07-24T01:07:49.010000"],["2024-07-24T01:07:50.010000"],["2024-07-24T01:07:51.010000"],["2024-07-24T01:07:52.010000"],["2024-07-24T01:07:53.010000"],["2024-07-24T01:07:54.010000"],["2024-07-24T01:07:55.010000"],["2024-07-24T01:07:56.010000"],["2024-07-24T01:07:57.010000"],["2024-07-24T01:07:58.010000"],["2024-07-24T01:07:59.010000"],["2024-07-24T01:08:00.010000"],["2024-07-24T01:08:01.010000"],["2024-07-24T01:08:02.010000"],["2024-07-24T01:08:03.010000"],["2024-07-24T01:08:04.010000"],["2024-07-24T01:08:05.010000"],["2024-07-24T01:08:06.010000"],["2024-07-24T01:08:07.010000"],["2024-07-24T01:08:08.010000"],["2024-07-24T01:08:09.010000"],["2024-07-24T01:08:10.010000"],["2024-07-24T01:08:11.010000"],["2024-07-24T01:08:12.010000"],["2024-07-24T01:08:13.010000"],["2024-07-24T01:08:14.010000"],["2024-07-24T01:08:15.010000"],["2024-07-24T01:08:16.010000"],["2024-07-24T01:08:17.010000"],["2024-07-24T01:08:18.010000"],["2024-07-24T01:08:19.010000"],["2024-07-24T01:08:20.010000"],["2024-07-24T01:08:21.010000"],["2024-07-24T01:08:22.010000"],["2024-07-24T01:08:23.010000"],["2024-07-24T01:08:24.010000"],["2024-07-24T01:08:25.010000"],["2024-07-24T01:08:26.010000"],["2024-07-24T01:08:27.010000"],["2024-07-24T01:08:28.010000"],["2024-07-24T01:08:29.010000"],["2024-07-24T01:08:30.010000"],["2024-07-24T01:08:31.010000"],["2024-07-24T01:08:32.010000"],["2024-07-24T01:08:33.010000"],["2024-07-24T01:08:34.010000"],["2024-07-24T01:08:35.010000"],["2024-07-24T01:08:36.010000"],["2024-07-24T01:08:37.010000"],["2024-07-24T01:08:38.010000"],["2024-07-24T01:08:39.010000"],["2024-07-24T01:08:40.010000"],["2024-07-24T01:08:41.010000"],["2024-07-24T01:08:42.010000"],["2024-07-24T01:08:43.010000"],["2024-07-24T01:08:44.010000"],["2024-07-24T01:08:45.010000"],["2024-07-24T01:08:46.010000"],["2024-07-24T01:08:47.010000"],["2024-07-24T01:08:48.010000"],["2024-07-24T01:08:49.010000"],["2024-07-24T01:08:50.010000"],["2024-07-24T01:08:51.010000"],["2024-07-24T01:08:52.010000"],["2024-07-24T01:08:53.010000"],["2024-07-24T01:08:54.010000"],["2024-07-24T01:08:55.010000"],["2024-07-24T01:08:56.010000"],["2024-07-24T01:08:57.010000"],["2024-07-24T01:08:58.010000"],["2024-07-24T01:08:59.010000"],["2024-07-24T01:09:00.010000"],["2024-07-24T01:09:01.010000"],["2024-07-24T01:09:02.010000"],["2024-07-24T01:09:03.010000"],["2024-07-24T01:09:04.010000"],["2024-07-24T01:09:05.010000"],["2024-07-24T01:09:06.010000"],["2024-07-24T01:09:07.010000"],["2024-07-24T01:09:08.010000"],["2024-07-24T01:09:09.010000"],["2024-07-24T01:09:10.010000"],["2024-07-24T01:09:11.010000"],["2024-07-24T01:09:12.010000"],["2024-07-24T01:09:13.010000"],["2024-07-24T01:09:14.010000"],["2024-07-24T01:09:15.010000"],["2024-07-24T01:09:16.010000"],["2024-07-24T01:09:17.010000"],["2024-07-24T01:09:18.010000"],["2024-07-24T01:09:19.010000"],["2024-07-24T01:09:20.010000"],["2024-07-24T01:09:21.010000"],["2024-07-24T01:09:22.010000"],["2024-07-24T01:09:23.010000"],["2024-07-24T01:09:24.010000"],["2024-07-24T01:09:25.010000"],["2024-07-24T01:09:26.010000"],["2024-07-24T01:09:27.010000"],["2024-07-24T01:09:28.010000"],["2024-07-24T01:09:29.010000"],["2024-07-24T01:09:30.010000"],["2024-07-24T01:09:31.010000"],["2024-07-24T01:09:32.010000"],["2024-07-24T01:09:33.010000"],["2024-07-24T01:09:34.010000"],["2024-07-24T01:09:35.010000"],["2024-07-24T01:09:36.010000"],["2024-07-24T01:09:37.010000"],["2024-07-24T01:09:38.010000"],["2024-07-24T01:09:39.010000"],["2024-07-24T01:09:40.010000"],["2024-07-24T01:09:41.010000"],["2024-07-24T01:09:42.010000"],["2024-07-24T01:09:43.010000"],["2024-07-24T01:09:44.010000"],["2024-07-24T01:09:45.010000"],["2024-07-24T01:09:46.010000"],["2024-07-24T01:09:47.010000"],["2024-07-24T01:09:48.010000"],["2024-07-24T01:09:49.010000"],["2024-07-24T01:09:50.010000"],["2024-07-24T01:09:51.010000"],["2024-07-24T01:09:52.010000"],["2024-07-24T01:09:53.010000"],["2024-07-24T01:09:54.010000"],["2024-07-24T01:09:55.010000"],["2024-07-24T01:09:56.010000"],["2024-07-24T01:09:57.010000"],["2024-07-24T01:09:58.010000"],["2024-07-24T01:09:59.010000"],["2024-07-24T01:10:00.010000"],["2024-07-24T01:10:01.010000"],["2024-07-24T01:10:02.010000"],["2024-07-24T01:10:03.010000"],["2024-07-24T01:10:04.010000"],["2024-07-24T01:10:05.010000"],["2024-07-24T01:10:06.010000"],["2024-07-24T01:10:07.010000"],["2024-07-24T01:10:08.010000"],["2024-07-24T01:10:09.010000"],["2024-07-24T01:10:10.010000"],["2024-07-24T01:10:11.010000"],["2024-07-24T01:10:12.010000"],["2024-07-24T01:10:13.010000"],["2024-07-24T01:10:14.010000"],["2024-07-24T01:10:15.010000"],["2024-07-24T01:10:16.010000"],["2024-07-24T01:10:17.010000"],["2024-07-24T01:10:18.010000"],["2024-07-24T01:10:19.010000"],["2024-07-24T01:10:20.010000"],["2024-07-24T01:10:21.010000"],["2024-07-24T01:10:22.010000"],["2024-07-24T01:10:23.010000"],["2024-07-24T01:10:24.010000"],["2024-07-24T01:10:25.010000"],["2024-07-24T01:10:26.010000"],["2024-07-24T01:10:27.010000"],["2024-07-24T01:10:28.010000"],["2024-07-24T01:10:29.010000"],["2024-07-24T01:10:30.010000"],["2024-07-24T01:10:31.010000"],["2024-07-24T01:10:32.010000"],["2024-07-24T01:10:33.010000"],["2024-07-24T01:10:34.010000"],["2024-07-24T01:10:35.010000"],["2024-07-24T01:10:36.010000"],["2024-07-24T01:10:37.010000"],["2024-07-24T01:10:38.010000"],["2024-07-24T01:10:39.010000"],["2024-07-24T01:10:40.010000"],["2024-07-24T01:10:41.010000"],["2024-07-24T01:10:42.010000"],["2024-07-24T01:10:43.010000"],["2024-07-24T01:10:44.010000"],["2024-07-24T01:10:45.010000"],["2024-07-24T01:10:46.010000"],["2024-07-24T01:10:47.010000"],["2024-07-24T01:10:48.010000"],["2024-07-24T01:10:49.010000"],["2024-07-24T01:10:50.010000"],["2024-07-24T01:10:51.010000"],["2024-07-24T01:10:52.010000"],["2024-07-24T01:10:53.010000"],["2024-07-24T01:10:54.010000"],["2024-07-24T01:10:55.010000"],["2024-07-24T01:10:56.010000"],["2024-07-24T01:10:57.010000"],["2024-07-24T01:10:58.010000"],["2024-07-24T01:10:59.010000"],["2024-07-24T01:11:00.010000"],["2024-07-24T01:11:01.010000"],["2024-07-24T01:11:02.010000"],["2024-07-24T01:11:03.010000"],["2024-07-24T01:11:04.010000"],["2024-07-24T01:11:05.010000"],["2024-07-24T01:11:06.010000"],["2024-07-24T01:11:07.010000"],["2024-07-24T01:11:08.010000"],["2024-07-24T01:11:09.010000"],["2024-07-24T01:11:10.010000"],["2024-07-24T01:11:11.010000"],["2024-07-24T01:11:12.010000"],["2024-07-24T01:11:13.010000"],["2024-07-24T01:11:14.010000"],["2024-07-24T01:11:15.010000"],["2024-07-24T01:11:16.010000"],["2024-07-24T01:11:17.010000"],["2024-07-24T01:11:18.010000"],["2024-07-24T01:11:19.010000"],["2024-07-24T01:11:20.010000"],["2024-07-24T01:11:21.010000"],["2024-07-24T01:11:22.010000"],["2024-07-24T01:11:23.010000"],["2024-07-24T01:11:24.010000"],["2024-07-24T01:11:25.010000"],["2024-07-24T01:11:26.010000"],["2024-07-24T01:11:27.010000"],["2024-07-24T01:11:28.010000"],["2024-07-24T01:11:29.010000"],["2024-07-24T01:11:30.010000"],["2024-07-24T01:11:31.010000"],["2024-07-24T01:11:32.010000"],["2024-07-24T01:11:33.010000"],["2024-07-24T01:11:34.010000"],["2024-07-24T01:11:35.010000"],["2024-07-24T01:11:36.010000"],["2024-07-24T01:11:37.010000"],["2024-07-24T01:11:38.010000"],["2024-07-24T01:11:39.010000"],["2024-07-24T01:11:40.010000"],["2024-07-24T01:11:41.010000"],["2024-07-24T01:11:42.010000"],["2024-07-24T01:11:43.010000"],["2024-07-24T01:11:44.010000"],["2024-07-24T01:11:45.010000"],["2024-07-24T01:11:46.010000"],["2024-07-24T01:11:47.010000"],["2024-07-24T01:11:48.010000"],["2024-07-24T01:11:49.010000"],["2024-07-24T01:11:50.010000"],["2024-07-24T01:11:51.010000"],["2024-07-24T01:11:52.010000"],["2024-07-24T01:11:53.010000"],["2024-07-24T01:11:54.010000"],["2024-07-24T01:11:55.010000"],["2024-07-24T01:11:56.010000"],["2024-07-24T01:11:57.010000"],["2024-07-24T01:11:58.010000"],["2024-07-24T01:11:59.010000"],["2024-07-24T01:12:00.010000"],["2024-07-24T01:12:01.010000"],["2024-07-24T01:12:02.010000"],["2024-07-24T01:12:03.010000"],["2024-07-24T01:12:04.010000"],["2024-07-24T01:12:05.010000"],["2024-07-24T01:12:06.010000"],["2024-07-24T01:12:07.010000"],["2024-07-24T01:12:08.010000"],["2024-07-24T01:12:09.010000"],["2024-07-24T01:12:10.010000"],["2024-07-24T01:12:11.010000"],["2024-07-24T01:12:12.010000"],["2024-07-24T01:12:13.010000"],["2024-07-24T01:12:14.010000"],["2024-07-24T01:12:15.010000"],["2024-07-24T01:12:16.010000"],["2024-07-24T01:12:17.010000"],["2024-07-24T01:12:18.010000"],["2024-07-24T01:12:19.010000"],["2024-07-24T01:12:20.010000"],["2024-07-24T01:12:21.010000"],["2024-07-24T01:12:22.010000"],["2024-07-24T01:12:23.010000"],["2024-07-24T01:12:24.010000"],["2024-07-24T01:12:25.010000"],["2024-07-24T01:12:26.010000"],["2024-07-24T01:12:27.010000"],["2024-07-24T01:12:28.010000"],["2024-07-24T01:12:29.010000"],["2024-07-24T01:12:30.010000"],["2024-07-24T01:12:31.010000"],["2024-07-24T01:12:32.010000"],["2024-07-24T01:12:33.010000"],["2024-07-24T01:12:34.010000"],["2024-07-24T01:12:35.010000"],["2024-07-24T01:12:36.010000"],["2024-07-24T01:12:37.010000"],["2024-07-24T01:12:38.010000"],["2024-07-24T01:12:39.010000"],["2024-07-24T01:12:40.010000"],["2024-07-24T01:12:41.010000"],["2024-07-24T01:12:42.010000"],["2024-07-24T01:12:43.010000"],["2024-07-24T01:12:44.010000"],["2024-07-24T01:12:45.010000"],["2024-07-24T01:12:46.010000"],["2024-07-24T01:12:47.010000"],["2024-07-24T01:12:48.010000"],["2024-07-24T01:12:49.010000"],["2024-07-24T01:12:50.010000"],["2024-07-24T01:12:51.010000"],["2024-07-24T01:12:52.010000"],["2024-07-24T01:12:53.010000"],["2024-07-24T01:12:54.010000"],["2024-07-24T01:12:55.010000"],["2024-07-24T01:12:56.010000"],["2024-07-24T01:12:57.010000"],["2024-07-24T01:12:58.010000"],["2024-07-24T01:12:59.010000"],["2024-07-24T01:13:00.010000"],["2024-07-24T01:13:01.010000"],["2024-07-24T01:13:02.010000"],["2024-07-24T01:13:03.010000"],["2024-07-24T01:13:04.010000"],["2024-07-24T01:13:05.010000"],["2024-07-24T01:13:06.010000"],["2024-07-24T01:13:07.010000"],["2024-07-24T01:13:08.010000"],["2024-07-24T01:13:09.010000"],["2024-07-24T01:13:10.010000"],["2024-07-24T01:13:11.010000"],["2024-07-24T01:13:12.010000"],["2024-07-24T01:13:13.010000"],["2024-07-24T01:13:14.010000"],["2024-07-24T01:13:15.010000"],["2024-07-24T01:13:16.010000"],["2024-07-24T01:13:17.010000"],["2024-07-24T01:13:18.010000"],["2024-07-24T01:13:19.010000"],["2024-07-24T01:13:20.010000"],["2024-07-24T01:13:21.010000"],["2024-07-24T01:13:22.010000"],["2024-07-24T01:13:23.010000"],["2024-07-24T01:13:24.010000"],["2024-07-24T01:13:25.010000"],["2024-07-24T01:13:26.010000"],["2024-07-24T01:13:27.010000"],["2024-07-24T01:13:28.010000"],["2024-07-24T01:13:29.010000"],["2024-07-24T01:13:30.010000"],["2024-07-24T01:13:31.010000"],["2024-07-24T01:13:32.010000"],["2024-07-24T01:13:33.010000"],["2024-07-24T01:13:34.010000"],["2024-07-24T01:13:35.010000"],["2024-07-24T01:13:36.010000"],["2024-07-24T01:13:37.010000"],["2024-07-24T01:13:38.010000"],["2024-07-24T01:13:39.010000"],["2024-07-24T01:13:40.010000"],["2024-07-24T01:13:41.010000"],["2024-07-24T01:13:42.010000"],["2024-07-24T01:13:43.010000"],["2024-07-24T01:13:44.010000"],["2024-07-24T01:13:45.010000"],["2024-07-24T01:13:46.010000"],["2024-07-24T01:13:47.010000"],["2024-07-24T01:13:48.010000"],["2024-07-24T01:13:49.010000"],["2024-07-24T01:13:50.010000"],["2024-07-24T01:13:51.010000"],["2024-07-24T01:13:52.010000"],["2024-07-24T01:13:53.010000"],["2024-07-24T01:13:54.010000"],["2024-07-24T01:13:55.010000"],["2024-07-24T01:13:56.010000"],["2024-07-24T01:13:57.010000"],["2024-07-24T01:13:58.010000"],["2024-07-24T01:13:59.010000"],["2024-07-24T01:14:00.010000"],["2024-07-24T01:14:01.010000"],["2024-07-24T01:14:02.010000"],["2024-07-24T01:14:03.010000"],["2024-07-24T01:14:04.010000"],["2024-07-24T01:14:05.010000"],["2024-07-24T01:14:06.010000"],["2024-07-24T01:14:07.010000"],["2024-07-24T01:14:08.010000"],["2024-07-24T01:14:09.010000"],["2024-07-24T01:14:10.010000"],["2024-07-24T01:14:11.010000"],["2024-07-24T01:14:12.010000"],["2024-07-24T01:14:13.010000"],["2024-07-24T01:14:14.010000"],["2024-07-24T01:14:15.010000"],["2024-07-24T01:14:16.010000"],["2024-07-24T01:14:17.010000"],["2024-07-24T01:14:18.010000"],["2024-07-24T01:14:19.010000"],["2024-07-24T01:14:20.010000"],["2024-07-24T01:14:21.010000"],["2024-07-24T01:14:22.010000"],["2024-07-24T01:14:23.010000"],["2024-07-24T01:14:24.010000"],["2024-07-24T01:14:25.010000"],["2024-07-24T01:14:26.010000"],["2024-07-24T01:14:27.010000"],["2024-07-24T01:14:28.010000"],["2024-07-24T01:14:29.010000"],["2024-07-24T01:14:30.010000"],["2024-07-24T01:14:31.010000"],["2024-07-24T01:14:32.010000"],["2024-07-24T01:14:33.010000"],["2024-07-24T01:14:34.010000"],["2024-07-24T01:14:35.010000"],["2024-07-24T01:14:36.010000"],["2024-07-24T01:14:37.010000"],["2024-07-24T01:14:38.010000"],["2024-07-24T01:14:39.010000"],["2024-07-24T01:14:40.010000"],["2024-07-24T01:14:41.010000"],["2024-07-24T01:14:42.010000"],["2024-07-24T01:14:43.010000"],["2024-07-24T01:14:44.010000"],["2024-07-24T01:14:45.010000"],["2024-07-24T01:14:46.010000"],["2024-07-24T01:14:47.010000"],["2024-07-24T01:14:48.010000"],["2024-07-24T01:14:49.010000"],["2024-07-24T01:14:50.010000"],["2024-07-24T01:14:51.010000"],["2024-07-24T01:14:52.010000"],["2024-07-24T01:14:53.010000"],["2024-07-24T01:14:54.010000"],["2024-07-24T01:14:55.010000"],["2024-07-24T01:14:56.010000"],["2024-07-24T01:14:57.010000"],["2024-07-24T01:14:58.010000"],["2024-07-24T01:14:59.010000"],["2024-07-24T01:15:00.010000"],["2024-07-24T01:15:01.010000"],["2024-07-24T01:15:02.010000"],["2024-07-24T01:15:03.010000"],["2024-07-24T01:15:04.010000"],["2024-07-24T01:15:05.010000"],["2024-07-24T01:15:06.010000"],["2024-07-24T01:15:07.010000"],["2024-07-24T01:15:08.010000"],["2024-07-24T01:15:09.010000"],["2024-07-24T01:15:10.010000"],["2024-07-24T01:15:11.010000"],["2024-07-24T01:15:12.010000"],["2024-07-24T01:15:13.010000"],["2024-07-24T01:15:14.010000"],["2024-07-24T01:15:15.010000"],["2024-07-24T01:15:16.010000"],["2024-07-24T01:15:17.010000"],["2024-07-24T01:15:18.010000"],["2024-07-24T01:15:19.010000"],["2024-07-24T01:15:20.010000"],["2024-07-24T01:15:21.010000"],["2024-07-24T01:15:22.010000"],["2024-07-24T01:15:23.010000"],["2024-07-24T01:15:24.010000"],["2024-07-24T01:15:25.010000"],["2024-07-24T01:15:26.010000"],["2024-07-24T01:15:27.010000"],["2024-07-24T01:15:28.010000"],["2024-07-24T01:15:29.010000"],["2024-07-24T01:15:30.010000"],["2024-07-24T01:15:31.010000"],["2024-07-24T01:15:32.010000"],["2024-07-24T01:15:33.010000"],["2024-07-24T01:15:34.010000"],["2024-07-24T01:15:35.010000"],["2024-07-24T01:15:36.010000"],["2024-07-24T01:15:37.010000"],["2024-07-24T01:15:38.010000"],["2024-07-24T01:15:39.010000"],["2024-07-24T01:15:40.010000"],["2024-07-24T01:15:41.010000"],["2024-07-24T01:15:42.010000"],["2024-07-24T01:15:43.010000"],["2024-07-24T01:15:44.010000"],["2024-07-24T01:15:45.010000"],["2024-07-24T01:15:46.010000"],["2024-07-24T01:15:47.010000"],["2024-07-24T01:15:48.010000"],["2024-07-24T01:15:49.010000"],["2024-07-24T01:15:50.010000"],["2024-07-24T01:15:51.010000"],["2024-07-24T01:15:52.010000"],["2024-07-24T01:15:53.010000"],["2024-07-24T01:15:54.010000"],["2024-07-24T01:15:55.010000"],["2024-07-24T01:15:56.010000"],["2024-07-24T01:15:57.010000"],["2024-07-24T01:15:58.010000"],["2024-07-24T01:15:59.010000"],["2024-07-24T01:16:00.010000"],["2024-07-24T01:16:01.010000"],["2024-07-24T01:16:02.010000"],["2024-07-24T01:16:03.010000"],["2024-07-24T01:16:04.010000"],["2024-07-24T01:16:05.010000"],["2024-07-24T01:16:06.010000"],["2024-07-24T01:16:07.010000"],["2024-07-24T01:16:08.010000"],["2024-07-24T01:16:09.010000"],["2024-07-24T01:16:10.010000"],["2024-07-24T01:16:11.010000"],["2024-07-24T01:16:12.010000"],["2024-07-24T01:16:13.010000"],["2024-07-24T01:16:14.010000"],["2024-07-24T01:16:15.010000"],["2024-07-24T01:16:16.010000"],["2024-07-24T01:16:17.010000"],["2024-07-24T01:16:18.010000"],["2024-07-24T01:16:19.010000"],["2024-07-24T01:16:20.010000"],["2024-07-24T01:16:21.010000"],["2024-07-24T01:16:22.010000"],["2024-07-24T01:16:23.010000"],["2024-07-24T01:16:24.010000"],["2024-07-24T01:16:25.010000"],["2024-07-24T01:16:26.010000"],["2024-07-24T01:16:27.010000"],["2024-07-24T01:16:28.010000"],["2024-07-24T01:16:29.010000"],["2024-07-24T01:16:30.010000"],["2024-07-24T01:16:31.010000"],["2024-07-24T01:16:32.010000"],["2024-07-24T01:16:33.010000"],["2024-07-24T01:16:34.010000"],["2024-07-24T01:16:35.010000"],["2024-07-24T01:16:36.010000"],["2024-07-24T01:16:37.010000"],["2024-07-24T01:16:38.010000"],["2024-07-24T01:16:39.010000"],["2024-07-24T01:16:40.010000"],["2024-07-24T01:16:41.010000"],["2024-07-24T01:16:42.010000"],["2024-07-24T01:16:43.010000"],["2024-07-24T01:16:44.010000"],["2024-07-24T01:16:45.010000"],["2024-07-24T01:16:46.010000"],["2024-07-24T01:16:47.010000"],["2024-07-24T01:16:48.010000"],["2024-07-24T01:16:49.010000"],["2024-07-24T01:16:50.010000"],["2024-07-24T01:16:51.010000"],["2024-07-24T01:16:52.010000"],["2024-07-24T01:16:53.010000"],["2024-07-24T01:16:54.010000"],["2024-07-24T01:16:55.010000"],["2024-07-24T01:16:56.010000"],["2024-07-24T01:16:57.010000"],["2024-07-24T01:16:58.010000"],["2024-07-24T01:16:59.010000"],["2024-07-24T01:17:00.010000"],["2024-07-24T01:17:01.010000"],["2024-07-24T01:17:02.010000"],["2024-07-24T01:17:03.010000"],["2024-07-24T01:17:04.010000"],["2024-07-24T01:17:05.010000"],["2024-07-24T01:17:06.010000"],["2024-07-24T01:17:07.010000"],["2024-07-24T01:17:08.010000"],["2024-07-24T01:17:09.010000"],["2024-07-24T01:17:10.010000"],["2024-07-24T01:17:11.010000"],["2024-07-24T01:17:12.010000"],["2024-07-24T01:17:13.010000"],["2024-07-24T01:17:14.010000"],["2024-07-24T01:17:15.010000"],["2024-07-24T01:17:16.010000"],["2024-07-24T01:17:17.010000"],["2024-07-24T01:17:18.010000"],["2024-07-24T01:17:19.010000"],["2024-07-24T01:17:20.010000"],["2024-07-24T01:17:21.010000"],["2024-07-24T01:17:22.010000"],["2024-07-24T01:17:23.010000"],["2024-07-24T01:17:24.010000"],["2024-07-24T01:17:25.010000"],["2024-07-24T01:17:26.010000"],["2024-07-24T01:17:27.010000"],["2024-07-24T01:17:28.010000"],["2024-07-24T01:17:29.010000"],["2024-07-24T01:17:30.010000"],["2024-07-24T01:17:31.010000"],["2024-07-24T01:17:32.010000"],["2024-07-24T01:17:33.010000"],["2024-07-24T01:17:34.010000"],["2024-07-24T01:17:35.010000"],["2024-07-24T01:17:36.010000"],["2024-07-24T01:17:37.010000"],["2024-07-24T01:17:38.010000"],["2024-07-24T01:17:39.010000"],["2024-07-24T01:17:40.010000"],["2024-07-24T01:17:41.010000"],["2024-07-24T01:17:42.010000"],["2024-07-24T01:17:43.010000"],["2024-07-24T01:17:44.010000"],["2024-07-24T01:17:45.010000"],["2024-07-24T01:17:46.010000"],["2024-07-24T01:17:47.010000"],["2024-07-24T01:17:48.010000"],["2024-07-24T01:17:49.010000"],["2024-07-24T01:17:50.010000"],["2024-07-24T01:17:51.010000"],["2024-07-24T01:17:52.010000"],["2024-07-24T01:17:53.010000"],["2024-07-24T01:17:54.010000"],["2024-07-24T01:17:55.010000"],["2024-07-24T01:17:56.010000"],["2024-07-24T01:17:57.010000"],["2024-07-24T01:17:58.010000"],["2024-07-24T01:17:59.010000"],["2024-07-24T01:18:00.010000"],["2024-07-24T01:18:01.010000"],["2024-07-24T01:18:02.010000"],["2024-07-24T01:18:03.010000"],["2024-07-24T01:18:04.010000"],["2024-07-24T01:18:05.010000"],["2024-07-24T01:18:06.010000"],["2024-07-24T01:18:07.010000"],["2024-07-24T01:18:08.010000"],["2024-07-24T01:18:09.010000"],["2024-07-24T01:18:10.010000"],["2024-07-24T01:18:11.010000"],["2024-07-24T01:18:12.010000"],["2024-07-24T01:18:13.010000"],["2024-07-24T01:18:14.010000"],["2024-07-24T01:18:15.010000"],["2024-07-24T01:18:16.010000"],["2024-07-24T01:18:17.010000"],["2024-07-24T01:18:18.010000"],["2024-07-24T01:18:19.010000"],["2024-07-24T01:18:20.010000"],["2024-07-24T01:18:21.010000"],["2024-07-24T01:18:22.010000"],["2024-07-24T01:18:23.010000"],["2024-07-24T01:18:24.010000"],["2024-07-24T01:18:25.010000"],["2024-07-24T01:18:26.010000"],["2024-07-24T01:18:27.010000"],["2024-07-24T01:18:28.010000"],["2024-07-24T01:18:29.010000"],["2024-07-24T01:18:30.010000"],["2024-07-24T01:18:31.010000"],["2024-07-24T01:18:32.010000"],["2024-07-24T01:18:33.010000"],["2024-07-24T01:18:34.010000"],["2024-07-24T01:18:35.010000"],["2024-07-24T01:18:36.010000"],["2024-07-24T01:18:37.010000"],["2024-07-24T01:18:38.010000"],["2024-07-24T01:18:39.010000"],["2024-07-24T01:18:40.010000"],["2024-07-24T01:18:41.010000"],["2024-07-24T01:18:42.010000"],["2024-07-24T01:18:43.010000"],["2024-07-24T01:18:44.010000"],["2024-07-24T01:18:45.010000"],["2024-07-24T01:18:46.010000"],["2024-07-24T01:18:47.010000"],["2024-07-24T01:18:48.010000"],["2024-07-24T01:18:49.010000"],["2024-07-24T01:18:50.010000"],["2024-07-24T01:18:51.010000"],["2024-07-24T01:18:52.010000"],["2024-07-24T01:18:53.010000"],["2024-07-24T01:18:54.010000"],["2024-07-24T01:18:55.010000"],["2024-07-24T01:18:56.010000"],["2024-07-24T01:18:57.010000"],["2024-07-24T01:18:58.010000"],["2024-07-24T01:18:59.010000"],["2024-07-24T01:19:00.010000"],["2024-07-24T01:19:01.010000"],["2024-07-24T01:19:02.010000"],["2024-07-24T01:19:03.010000"],["2024-07-24T01:19:04.010000"],["2024-07-24T01:19:05.010000"],["2024-07-24T01:19:06.010000"],["2024-07-24T01:19:07.010000"],["2024-07-24T01:19:08.010000"],["2024-07-24T01:19:09.010000"],["2024-07-24T01:19:10.010000"],["2024-07-24T01:19:11.010000"],["2024-07-24T01:19:12.010000"],["2024-07-24T01:19:13.010000"],["2024-07-24T01:19:14.010000"],["2024-07-24T01:19:15.010000"],["2024-07-24T01:19:16.010000"],["2024-07-24T01:19:17.010000"],["2024-07-24T01:19:18.010000"],["2024-07-24T01:19:19.010000"],["2024-07-24T01:19:20.010000"],["2024-07-24T01:19:21.010000"],["2024-07-24T01:19:22.010000"],["2024-07-24T01:19:23.010000"],["2024-07-24T01:19:24.010000"],["2024-07-24T01:19:25.010000"],["2024-07-24T01:19:26.010000"],["2024-07-24T01:19:27.010000"],["2024-07-24T01:19:28.010000"],["2024-07-24T01:19:29.010000"],["2024-07-24T01:19:30.010000"],["2024-07-24T01:19:31.010000"],["2024-07-24T01:19:32.010000"],["2024-07-24T01:19:33.010000"],["2024-07-24T01:19:34.010000"],["2024-07-24T01:19:35.010000"],["2024-07-24T01:19:36.010000"],["2024-07-24T01:19:37.010000"],["2024-07-24T01:19:38.010000"],["2024-07-24T01:19:39.010000"],["2024-07-24T01:19:40.010000"],["2024-07-24T01:19:41.010000"],["2024-07-24T01:19:42.010000"],["2024-07-24T01:19:43.010000"],["2024-07-24T01:19:44.010000"],["2024-07-24T01:19:45.010000"],["2024-07-24T01:19:46.010000"],["2024-07-24T01:19:47.010000"],["2024-07-24T01:19:48.010000"],["2024-07-24T01:19:49.010000"],["2024-07-24T01:19:50.010000"],["2024-07-24T01:19:51.010000"],["2024-07-24T01:19:52.010000"],["2024-07-24T01:19:53.010000"],["2024-07-24T01:19:54.010000"],["2024-07-24T01:19:55.010000"],["2024-07-24T01:19:56.010000"],["2024-07-24T01:19:57.010000"],["2024-07-24T01:19:58.010000"],["2024-07-24T01:19:59.010000"],["2024-07-24T01:20:00.010000"],["2024-07-24T01:20:01.010000"],["2024-07-24T01:20:02.010000"],["2024-07-24T01:20:03.010000"],["2024-07-24T01:20:04.010000"],["2024-07-24T01:20:05.010000"],["2024-07-24T01:20:06.010000"],["2024-07-24T01:20:07.010000"],["2024-07-24T01:20:08.010000"],["2024-07-24T01:20:09.010000"],["2024-07-24T01:20:10.010000"],["2024-07-24T01:20:11.010000"],["2024-07-24T01:20:12.010000"],["2024-07-24T01:20:13.010000"],["2024-07-24T01:20:14.010000"],["2024-07-24T01:20:15.010000"],["2024-07-24T01:20:16.010000"],["2024-07-24T01:20:17.010000"],["2024-07-24T01:20:18.010000"],["2024-07-24T01:20:19.010000"],["2024-07-24T01:20:20.010000"],["2024-07-24T01:20:21.010000"],["2024-07-24T01:20:22.010000"],["2024-07-24T01:20:23.010000"],["2024-07-24T01:20:24.010000"],["2024-07-24T01:20:25.010000"],["2024-07-24T01:20:26.010000"],["2024-07-24T01:20:27.010000"],["2024-07-24T01:20:28.010000"],["2024-07-24T01:20:29.010000"],["2024-07-24T01:20:30.010000"],["2024-07-24T01:20:31.010000"],["2024-07-24T01:20:32.010000"],["2024-07-24T01:20:33.010000"],["2024-07-24T01:20:34.010000"],["2024-07-24T01:20:35.010000"],["2024-07-24T01:20:36.010000"],["2024-07-24T01:20:37.010000"],["2024-07-24T01:20:38.010000"],["2024-07-24T01:20:39.010000"],["2024-07-24T01:20:40.010000"],["2024-07-24T01:20:41.010000"],["2024-07-24T01:20:42.010000"],["2024-07-24T01:20:43.010000"],["2024-07-24T01:20:44.010000"],["2024-07-24T01:20:45.010000"],["2024-07-24T01:20:46.010000"],["2024-07-24T01:20:47.010000"],["2024-07-24T01:20:48.010000"],["2024-07-24T01:20:49.010000"],["2024-07-24T01:20:50.010000"],["2024-07-24T01:20:51.010000"],["2024-07-24T01:20:52.010000"],["2024-07-24T01:20:53.010000"],["2024-07-24T01:20:54.010000"],["2024-07-24T01:20:55.010000"],["2024-07-24T01:20:56.010000"],["2024-07-24T01:20:57.010000"],["2024-07-24T01:20:58.010000"],["2024-07-24T01:20:59.010000"],["2024-07-24T01:21:00.010000"],["2024-07-24T01:21:01.010000"],["2024-07-24T01:21:02.010000"],["2024-07-24T01:21:03.010000"],["2024-07-24T01:21:04.010000"],["2024-07-24T01:21:05.010000"],["2024-07-24T01:21:06.010000"],["2024-07-24T01:21:07.010000"],["2024-07-24T01:21:08.010000"],["2024-07-24T01:21:09.010000"],["2024-07-24T01:21:10.010000"],["2024-07-24T01:21:11.010000"],["2024-07-24T01:21:12.010000"],["2024-07-24T01:21:13.010000"],["2024-07-24T01:21:14.010000"],["2024-07-24T01:21:15.010000"],["2024-07-24T01:21:16.010000"],["2024-07-24T01:21:17.010000"],["2024-07-24T01:21:18.010000"],["2024-07-24T01:21:19.010000"],["2024-07-24T01:21:20.010000"],["2024-07-24T01:21:21.010000"],["2024-07-24T01:21:22.010000"],["2024-07-24T01:21:23.010000"],["2024-07-24T01:21:24.010000"],["2024-07-24T01:21:25.010000"],["2024-07-24T01:21:26.010000"],["2024-07-24T01:21:27.010000"],["2024-07-24T01:21:28.010000"],["2024-07-24T01:21:29.010000"],["2024-07-24T01:21:30.010000"],["2024-07-24T01:21:31.010000"],["2024-07-24T01:21:32.010000"],["2024-07-24T01:21:33.010000"],["2024-07-24T01:21:34.010000"],["2024-07-24T01:21:35.010000"],["2024-07-24T01:21:36.010000"],["2024-07-24T01:21:37.010000"],["2024-07-24T01:21:38.010000"],["2024-07-24T01:21:39.010000"],["2024-07-24T01:21:40.010000"],["2024-07-24T01:21:41.010000"],["2024-07-24T01:21:42.010000"],["2024-07-24T01:21:43.010000"],["2024-07-24T01:21:44.010000"],["2024-07-24T01:21:45.010000"],["2024-07-24T01:21:46.010000"],["2024-07-24T01:21:47.010000"],["2024-07-24T01:21:48.010000"],["2024-07-24T01:21:49.010000"],["2024-07-24T01:21:50.010000"],["2024-07-24T01:21:51.010000"],["2024-07-24T01:21:52.010000"],["2024-07-24T01:21:53.010000"],["2024-07-24T01:21:54.010000"],["2024-07-24T01:21:55.010000"],["2024-07-24T01:21:56.010000"],["2024-07-24T01:21:57.010000"],["2024-07-24T01:21:58.010000"],["2024-07-24T01:21:59.010000"],["2024-07-24T01:22:00.010000"],["2024-07-24T01:22:01.010000"],["2024-07-24T01:22:02.010000"],["2024-07-24T01:22:03.010000"],["2024-07-24T01:22:04.010000"],["2024-07-24T01:22:05.010000"],["2024-07-24T01:22:06.010000"],["2024-07-24T01:22:07.010000"],["2024-07-24T01:22:08.010000"],["2024-07-24T01:22:09.010000"],["2024-07-24T01:22:10.010000"],["2024-07-24T01:22:11.010000"],["2024-07-24T01:22:12.010000"],["2024-07-24T01:22:13.010000"],["2024-07-24T01:22:14.010000"],["2024-07-24T01:22:15.010000"],["2024-07-24T01:22:16.010000"],["2024-07-24T01:22:17.010000"],["2024-07-24T01:22:18.010000"],["2024-07-24T01:22:19.010000"],["2024-07-24T01:22:20.010000"],["2024-07-24T01:22:21.010000"],["2024-07-24T01:22:22.010000"],["2024-07-24T01:22:23.010000"],["2024-07-24T01:22:24.010000"],["2024-07-24T01:22:25.010000"],["2024-07-24T01:22:26.010000"],["2024-07-24T01:22:27.010000"],["2024-07-24T01:22:28.010000"],["2024-07-24T01:22:29.010000"],["2024-07-24T01:22:30.010000"],["2024-07-24T01:22:31.010000"],["2024-07-24T01:22:32.010000"],["2024-07-24T01:22:33.010000"],["2024-07-24T01:22:34.010000"],["2024-07-24T01:22:35.010000"],["2024-07-24T01:22:36.010000"],["2024-07-24T01:22:37.010000"],["2024-07-24T01:22:38.010000"],["2024-07-24T01:22:39.010000"],["2024-07-24T01:22:40.010000"],["2024-07-24T01:22:41.010000"],["2024-07-24T01:22:42.010000"],["2024-07-24T01:22:43.010000"],["2024-07-24T01:22:44.010000"],["2024-07-24T01:22:45.010000"],["2024-07-24T01:22:46.010000"],["2024-07-24T01:22:47.010000"],["2024-07-24T01:22:48.010000"],["2024-07-24T01:22:49.010000"],["2024-07-24T01:22:50.010000"],["2024-07-24T01:22:51.010000"],["2024-07-24T01:22:52.010000"],["2024-07-24T01:22:53.010000"],["2024-07-24T01:22:54.010000"],["2024-07-24T01:22:55.010000"],["2024-07-24T01:22:56.010000"],["2024-07-24T01:22:57.010000"],["2024-07-24T01:22:58.010000"],["2024-07-24T01:22:59.010000"],["2024-07-24T01:23:00.010000"],["2024-07-24T01:23:01.010000"],["2024-07-24T01:23:02.010000"],["2024-07-24T01:23:03.010000"],["2024-07-24T01:23:04.010000"],["2024-07-24T01:23:05.010000"],["2024-07-24T01:23:06.010000"],["2024-07-24T01:23:07.010000"],["2024-07-24T01:23:08.010000"],["2024-07-24T01:23:09.010000"],["2024-07-24T01:23:10.010000"],["2024-07-24T01:23:11.010000"],["2024-07-24T01:23:12.010000"],["2024-07-24T01:23:13.010000"],["2024-07-24T01:23:14.010000"],["2024-07-24T01:23:15.010000"],["2024-07-24T01:23:16.010000"],["2024-07-24T01:23:17.010000"],["2024-07-24T01:23:18.010000"],["2024-07-24T01:23:19.010000"],["2024-07-24T01:23:20.010000"],["2024-07-24T01:23:21.010000"],["2024-07-24T01:23:22.010000"],["2024-07-24T01:23:23.010000"],["2024-07-24T01:23:24.010000"],["2024-07-24T01:23:25.010000"],["2024-07-24T01:23:26.010000"],["2024-07-24T01:23:27.010000"],["2024-07-24T01:23:28.010000"],["2024-07-24T01:23:29.010000"],["2024-07-24T01:23:30.010000"],["2024-07-24T01:23:31.010000"],["2024-07-24T01:23:32.010000"],["2024-07-24T01:23:33.010000"],["2024-07-24T01:23:34.010000"],["2024-07-24T01:23:35.010000"],["2024-07-24T01:23:36.010000"],["2024-07-24T01:23:37.010000"],["2024-07-24T01:23:38.010000"],["2024-07-24T01:23:39.010000"],["2024-07-24T01:23:40.010000"],["2024-07-24T01:23:41.010000"],["2024-07-24T01:23:42.010000"],["2024-07-24T01:23:43.010000"],["2024-07-24T01:23:44.010000"],["2024-07-24T01:23:45.010000"],["2024-07-24T01:23:46.010000"],["2024-07-24T01:23:47.010000"],["2024-07-24T01:23:48.010000"],["2024-07-24T01:23:49.010000"],["2024-07-24T01:23:50.010000"],["2024-07-24T01:23:51.010000"],["2024-07-24T01:23:52.010000"],["2024-07-24T01:23:53.010000"],["2024-07-24T01:23:54.010000"],["2024-07-24T01:23:55.010000"],["2024-07-24T01:23:56.010000"],["2024-07-24T01:23:57.010000"],["2024-07-24T01:23:58.010000"],["2024-07-24T01:23:59.010000"],["2024-07-24T01:24:00.010000"],["2024-07-24T01:24:01.010000"],["2024-07-24T01:24:02.010000"],["2024-07-24T01:24:03.010000"],["2024-07-24T01:24:04.010000"],["2024-07-24T01:24:05.010000"],["2024-07-24T01:24:06.010000"],["2024-07-24T01:24:07.010000"],["2024-07-24T01:24:08.010000"],["2024-07-24T01:24:09.010000"],["2024-07-24T01:24:10.010000"],["2024-07-24T01:24:11.010000"],["2024-07-24T01:24:12.010000"],["2024-07-24T01:24:13.010000"],["2024-07-24T01:24:14.010000"],["2024-07-24T01:24:15.010000"],["2024-07-24T01:24:16.010000"],["2024-07-24T01:24:17.010000"],["2024-07-24T01:24:18.010000"],["2024-07-24T01:24:19.010000"],["2024-07-24T01:24:20.010000"],["2024-07-24T01:24:21.010000"],["2024-07-24T01:24:22.010000"],["2024-07-24T01:24:23.010000"],["2024-07-24T01:24:24.010000"],["2024-07-24T01:24:25.010000"],["2024-07-24T01:24:26.010000"],["2024-07-24T01:24:27.010000"],["2024-07-24T01:24:28.010000"],["2024-07-24T01:24:29.010000"],["2024-07-24T01:24:30.010000"],["2024-07-24T01:24:31.010000"],["2024-07-24T01:24:32.010000"],["2024-07-24T01:24:33.010000"],["2024-07-24T01:24:34.010000"],["2024-07-24T01:24:35.010000"],["2024-07-24T01:24:36.010000"],["2024-07-24T01:24:37.010000"],["2024-07-24T01:24:38.010000"],["2024-07-24T01:24:39.010000"],["2024-07-24T01:24:40.010000"],["2024-07-24T01:24:41.010000"],["2024-07-24T01:24:42.010000"],["2024-07-24T01:24:43.010000"],["2024-07-24T01:24:44.010000"],["2024-07-24T01:24:45.010000"],["2024-07-24T01:24:46.010000"],["2024-07-24T01:24:47.010000"],["2024-07-24T01:24:48.010000"],["2024-07-24T01:24:49.010000"],["2024-07-24T01:24:50.010000"],["2024-07-24T01:24:51.010000"],["2024-07-24T01:24:52.010000"],["2024-07-24T01:24:53.010000"],["2024-07-24T01:24:54.010000"],["2024-07-24T01:24:55.010000"],["2024-07-24T01:24:56.010000"],["2024-07-24T01:24:57.010000"],["2024-07-24T01:24:58.010000"],["2024-07-24T01:24:59.010000"],["2024-07-24T01:25:00.010000"],["2024-07-24T01:25:01.010000"],["2024-07-24T01:25:02.010000"],["2024-07-24T01:25:03.010000"],["2024-07-24T01:25:04.010000"],["2024-07-24T01:25:05.010000"],["2024-07-24T01:25:06.010000"],["2024-07-24T01:25:07.010000"],["2024-07-24T01:25:08.010000"],["2024-07-24T01:25:09.010000"],["2024-07-24T01:25:10.010000"],["2024-07-24T01:25:11.010000"],["2024-07-24T01:25:12.010000"],["2024-07-24T01:25:13.010000"],["2024-07-24T01:25:14.010000"],["2024-07-24T01:25:15.010000"],["2024-07-24T01:25:16.010000"],["2024-07-24T01:25:17.010000"],["2024-07-24T01:25:18.010000"],["2024-07-24T01:25:19.010000"],["2024-07-24T01:25:20.010000"],["2024-07-24T01:25:21.010000"],["2024-07-24T01:25:22.010000"],["2024-07-24T01:25:23.010000"],["2024-07-24T01:25:24.010000"],["2024-07-24T01:25:25.010000"],["2024-07-24T01:25:26.010000"],["2024-07-24T01:25:27.010000"],["2024-07-24T01:25:28.010000"],["2024-07-24T01:25:29.010000"],["2024-07-24T01:25:30.010000"],["2024-07-24T01:25:31.010000"],["2024-07-24T01:25:32.010000"],["2024-07-24T01:25:33.010000"],["2024-07-24T01:25:34.010000"],["2024-07-24T01:25:35.010000"],["2024-07-24T01:25:36.010000"],["2024-07-24T01:25:37.010000"],["2024-07-24T01:25:38.010000"],["2024-07-24T01:25:39.010000"],["2024-07-24T01:25:40.010000"],["2024-07-24T01:25:41.010000"],["2024-07-24T01:25:42.010000"],["2024-07-24T01:25:43.010000"],["2024-07-24T01:25:44.010000"],["2024-07-24T01:25:45.010000"],["2024-07-24T01:25:46.010000"],["2024-07-24T01:25:47.010000"],["2024-07-24T01:25:48.010000"],["2024-07-24T01:25:49.010000"],["2024-07-24T01:25:50.010000"],["2024-07-24T01:25:51.010000"],["2024-07-24T01:25:52.010000"],["2024-07-24T01:25:53.010000"],["2024-07-24T01:25:54.010000"],["2024-07-24T01:25:55.010000"],["2024-07-24T01:25:56.010000"],["2024-07-24T01:25:57.010000"],["2024-07-24T01:25:58.010000"],["2024-07-24T01:25:59.010000"],["2024-07-24T01:26:00.010000"],["2024-07-24T01:26:01.010000"],["2024-07-24T01:26:02.010000"],["2024-07-24T01:26:03.010000"],["2024-07-24T01:26:04.010000"],["2024-07-24T01:26:05.010000"],["2024-07-24T01:26:06.010000"],["2024-07-24T01:26:07.010000"],["2024-07-24T01:26:08.010000"],["2024-07-24T01:26:09.010000"],["2024-07-24T01:26:10.010000"],["2024-07-24T01:26:11.010000"],["2024-07-24T01:26:12.010000"],["2024-07-24T01:26:13.010000"],["2024-07-24T01:26:14.010000"],["2024-07-24T01:26:15.010000"],["2024-07-24T01:26:16.010000"],["2024-07-24T01:26:17.010000"],["2024-07-24T01:26:18.010000"],["2024-07-24T01:26:19.010000"],["2024-07-24T01:26:20.010000"],["2024-07-24T01:26:21.010000"],["2024-07-24T01:26:22.010000"],["2024-07-24T01:26:23.010000"],["2024-07-24T01:26:24.010000"],["2024-07-24T01:26:25.010000"],["2024-07-24T01:26:26.010000"],["2024-07-24T01:26:27.010000"],["2024-07-24T01:26:28.010000"],["2024-07-24T01:26:29.010000"],["2024-07-24T01:26:30.010000"],["2024-07-24T01:26:31.010000"],["2024-07-24T01:26:32.010000"],["2024-07-24T01:26:33.010000"],["2024-07-24T01:26:34.010000"],["2024-07-24T01:26:35.010000"],["2024-07-24T01:26:36.010000"],["2024-07-24T01:26:37.010000"],["2024-07-24T01:26:38.010000"],["2024-07-24T01:26:39.010000"],["2024-07-24T01:26:40.010000"],["2024-07-24T01:26:41.010000"],["2024-07-24T01:26:42.010000"],["2024-07-24T01:26:43.010000"],["2024-07-24T01:26:44.010000"],["2024-07-24T01:26:45.010000"],["2024-07-24T01:26:46.010000"],["2024-07-24T01:26:47.010000"],["2024-07-24T01:26:48.010000"],["2024-07-24T01:26:49.010000"],["2024-07-24T01:26:50.010000"],["2024-07-24T01:26:51.010000"],["2024-07-24T01:26:52.010000"],["2024-07-24T01:26:53.010000"],["2024-07-24T01:26:54.010000"],["2024-07-24T01:26:55.010000"],["2024-07-24T01:26:56.010000"],["2024-07-24T01:26:57.010000"],["2024-07-24T01:26:58.010000"],["2024-07-24T01:26:59.010000"],["2024-07-24T01:27:00.010000"],["2024-07-24T01:27:01.010000"],["2024-07-24T01:27:02.010000"],["2024-07-24T01:27:03.010000"],["2024-07-24T01:27:04.010000"],["2024-07-24T01:27:05.010000"],["2024-07-24T01:27:06.010000"],["2024-07-24T01:27:07.010000"],["2024-07-24T01:27:08.010000"],["2024-07-24T01:27:09.010000"],["2024-07-24T01:27:10.010000"],["2024-07-24T01:27:11.010000"],["2024-07-24T01:27:12.010000"],["2024-07-24T01:27:13.010000"],["2024-07-24T01:27:14.010000"],["2024-07-24T01:27:15.010000"],["2024-07-24T01:27:16.010000"],["2024-07-24T01:27:17.010000"],["2024-07-24T01:27:18.010000"],["2024-07-24T01:27:19.010000"],["2024-07-24T01:27:20.010000"],["2024-07-24T01:27:21.010000"],["2024-07-24T01:27:22.010000"],["2024-07-24T01:27:23.010000"],["2024-07-24T01:27:24.010000"],["2024-07-24T01:27:25.010000"],["2024-07-24T01:27:26.010000"],["2024-07-24T01:27:27.010000"],["2024-07-24T01:27:28.010000"],["2024-07-24T01:27:29.010000"],["2024-07-24T01:27:30.010000"],["2024-07-24T01:27:31.010000"],["2024-07-24T01:27:32.010000"],["2024-07-24T01:27:33.010000"],["2024-07-24T01:27:34.010000"],["2024-07-24T01:27:35.010000"],["2024-07-24T01:27:36.010000"],["2024-07-24T01:27:37.010000"],["2024-07-24T01:27:38.010000"],["2024-07-24T01:27:39.010000"],["2024-07-24T01:27:40.010000"],["2024-07-24T01:27:41.010000"],["2024-07-24T01:27:42.010000"],["2024-07-24T01:27:43.010000"],["2024-07-24T01:27:44.010000"],["2024-07-24T01:27:45.010000"],["2024-07-24T01:27:46.010000"],["2024-07-24T01:27:47.010000"],["2024-07-24T01:27:48.010000"],["2024-07-24T01:27:49.010000"],["2024-07-24T01:27:50.010000"],["2024-07-24T01:27:51.010000"],["2024-07-24T01:27:52.010000"],["2024-07-24T01:27:53.010000"],["2024-07-24T01:27:54.010000"],["2024-07-24T01:27:55.010000"],["2024-07-24T01:27:56.010000"],["2024-07-24T01:27:57.010000"],["2024-07-24T01:27:58.010000"],["2024-07-24T01:27:59.010000"],["2024-07-24T01:28:00.010000"],["2024-07-24T01:28:01.010000"],["2024-07-24T01:28:02.010000"],["2024-07-24T01:28:03.010000"],["2024-07-24T01:28:04.010000"],["2024-07-24T01:28:05.010000"],["2024-07-24T01:28:06.010000"],["2024-07-24T01:28:07.010000"],["2024-07-24T01:28:08.010000"],["2024-07-24T01:28:09.010000"],["2024-07-24T01:28:10.010000"],["2024-07-24T01:28:11.010000"],["2024-07-24T01:28:12.010000"],["2024-07-24T01:28:13.010000"],["2024-07-24T01:28:14.010000"],["2024-07-24T01:28:15.010000"],["2024-07-24T01:28:16.010000"],["2024-07-24T01:28:17.010000"],["2024-07-24T01:28:18.010000"],["2024-07-24T01:28:19.010000"],["2024-07-24T01:28:20.010000"],["2024-07-24T01:28:21.010000"],["2024-07-24T01:28:22.010000"],["2024-07-24T01:28:23.010000"],["2024-07-24T01:28:24.010000"],["2024-07-24T01:28:25.010000"],["2024-07-24T01:28:26.010000"],["2024-07-24T01:28:27.010000"],["2024-07-24T01:28:28.010000"],["2024-07-24T01:28:29.010000"],["2024-07-24T01:28:30.010000"],["2024-07-24T01:28:31.010000"],["2024-07-24T01:28:32.010000"],["2024-07-24T01:28:33.010000"],["2024-07-24T01:28:34.010000"],["2024-07-24T01:28:35.010000"],["2024-07-24T01:28:36.010000"],["2024-07-24T01:28:37.010000"],["2024-07-24T01:28:38.010000"],["2024-07-24T01:28:39.010000"],["2024-07-24T01:28:40.010000"],["2024-07-24T01:28:41.010000"],["2024-07-24T01:28:42.010000"],["2024-07-24T01:28:43.010000"],["2024-07-24T01:28:44.010000"],["2024-07-24T01:28:45.010000"],["2024-07-24T01:28:46.010000"],["2024-07-24T01:28:47.010000"],["2024-07-24T01:28:48.010000"],["2024-07-24T01:28:49.010000"],["2024-07-24T01:28:50.010000"],["2024-07-24T01:28:51.010000"],["2024-07-24T01:28:52.010000"],["2024-07-24T01:28:53.010000"],["2024-07-24T01:28:54.010000"],["2024-07-24T01:28:55.010000"],["2024-07-24T01:28:56.010000"],["2024-07-24T01:28:57.010000"],["2024-07-24T01:28:58.010000"],["2024-07-24T01:28:59.010000"],["2024-07-24T01:29:00.010000"],["2024-07-24T01:29:01.010000"],["2024-07-24T01:29:02.010000"],["2024-07-24T01:29:03.010000"],["2024-07-24T01:29:04.010000"],["2024-07-24T01:29:05.010000"],["2024-07-24T01:29:06.010000"],["2024-07-24T01:29:07.010000"],["2024-07-24T01:29:08.010000"],["2024-07-24T01:29:09.010000"],["2024-07-24T01:29:10.010000"],["2024-07-24T01:29:11.010000"],["2024-07-24T01:29:12.010000"],["2024-07-24T01:29:13.010000"],["2024-07-24T01:29:14.010000"],["2024-07-24T01:29:15.010000"],["2024-07-24T01:29:16.010000"],["2024-07-24T01:29:17.010000"],["2024-07-24T01:29:18.010000"],["2024-07-24T01:29:19.010000"],["2024-07-24T01:29:20.010000"],["2024-07-24T01:29:21.010000"],["2024-07-24T01:29:22.010000"],["2024-07-24T01:29:23.010000"],["2024-07-24T01:29:24.010000"],["2024-07-24T01:29:25.010000"],["2024-07-24T01:29:26.010000"],["2024-07-24T01:29:27.010000"],["2024-07-24T01:29:28.010000"],["2024-07-24T01:29:29.010000"],["2024-07-24T01:29:30.010000"],["2024-07-24T01:29:31.010000"],["2024-07-24T01:29:32.010000"],["2024-07-24T01:29:33.010000"],["2024-07-24T01:29:34.010000"],["2024-07-24T01:29:35.010000"],["2024-07-24T01:29:36.010000"],["2024-07-24T01:29:37.010000"],["2024-07-24T01:29:38.010000"],["2024-07-24T01:29:39.010000"],["2024-07-24T01:29:40.010000"],["2024-07-24T01:29:41.010000"],["2024-07-24T01:29:42.010000"],["2024-07-24T01:29:43.010000"],["2024-07-24T01:29:44.010000"],["2024-07-24T01:29:45.010000"],["2024-07-24T01:29:46.010000"],["2024-07-24T01:29:47.010000"],["2024-07-24T01:29:48.010000"],["2024-07-24T01:29:49.010000"],["2024-07-24T01:29:50.010000"],["2024-07-24T01:29:51.010000"],["2024-07-24T01:29:52.010000"],["2024-07-24T01:29:53.010000"],["2024-07-24T01:29:54.010000"],["2024-07-24T01:29:55.010000"],["2024-07-24T01:29:56.010000"],["2024-07-24T01:29:57.010000"],["2024-07-24T01:29:58.010000"],["2024-07-24T01:29:59.010000"],["2024-07-24T01:30:00.010000"],["2024-07-24T01:30:01.010000"],["2024-07-24T01:30:02.010000"],["2024-07-24T01:30:03.010000"],["2024-07-24T01:30:04.010000"],["2024-07-24T01:30:05.010000"],["2024-07-24T01:30:06.010000"],["2024-07-24T01:30:07.010000"],["2024-07-24T01:30:08.010000"],["2024-07-24T01:30:09.010000"],["2024-07-24T01:30:10.010000"],["2024-07-24T01:30:11.010000"],["2024-07-24T01:30:12.010000"],["2024-07-24T01:30:13.010000"],["2024-07-24T01:30:14.010000"],["2024-07-24T01:30:15.010000"],["2024-07-24T01:30:16.010000"],["2024-07-24T01:30:17.010000"],["2024-07-24T01:30:18.010000"],["2024-07-24T01:30:19.010000"],["2024-07-24T01:30:20.010000"],["2024-07-24T01:30:21.010000"],["2024-07-24T01:30:22.010000"],["2024-07-24T01:30:23.010000"],["2024-07-24T01:30:24.010000"],["2024-07-24T01:30:25.010000"],["2024-07-24T01:30:26.010000"],["2024-07-24T01:30:27.010000"],["2024-07-24T01:30:28.010000"],["2024-07-24T01:30:29.010000"],["2024-07-24T01:30:30.010000"],["2024-07-24T01:30:31.010000"],["2024-07-24T01:30:32.010000"],["2024-07-24T01:30:33.010000"],["2024-07-24T01:30:34.010000"],["2024-07-24T01:30:35.010000"],["2024-07-24T01:30:36.010000"],["2024-07-24T01:30:37.010000"],["2024-07-24T01:30:38.010000"],["2024-07-24T01:30:39.010000"],["2024-07-24T01:30:40.010000"],["2024-07-24T01:30:41.010000"],["2024-07-24T01:30:42.010000"],["2024-07-24T01:30:43.010000"],["2024-07-24T01:30:44.010000"],["2024-07-24T01:30:45.010000"],["2024-07-24T01:30:46.010000"],["2024-07-24T01:30:47.010000"],["2024-07-24T01:30:48.010000"],["2024-07-24T01:30:49.010000"],["2024-07-24T01:30:50.010000"],["2024-07-24T01:30:51.010000"],["2024-07-24T01:30:52.010000"],["2024-07-24T01:30:53.010000"],["2024-07-24T01:30:54.010000"],["2024-07-24T01:30:55.010000"],["2024-07-24T01:30:56.010000"],["2024-07-24T01:30:57.010000"],["2024-07-24T01:30:58.010000"],["2024-07-24T01:30:59.010000"],["2024-07-24T01:31:00.010000"],["2024-07-24T01:31:01.010000"],["2024-07-24T01:31:02.010000"],["2024-07-24T01:31:03.010000"],["2024-07-24T01:31:04.010000"],["2024-07-24T01:31:05.010000"],["2024-07-24T01:31:06.010000"],["2024-07-24T01:31:07.010000"],["2024-07-24T01:31:08.010000"],["2024-07-24T01:31:09.010000"],["2024-07-24T01:31:10.010000"],["2024-07-24T01:31:11.010000"],["2024-07-24T01:31:12.010000"],["2024-07-24T01:31:13.010000"],["2024-07-24T01:31:14.010000"],["2024-07-24T01:31:15.010000"],["2024-07-24T01:31:16.010000"],["2024-07-24T01:31:17.010000"],["2024-07-24T01:31:18.010000"],["2024-07-24T01:31:19.010000"],["2024-07-24T01:31:20.010000"],["2024-07-24T01:31:21.010000"],["2024-07-24T01:31:22.010000"],["2024-07-24T01:31:23.010000"],["2024-07-24T01:31:24.010000"],["2024-07-24T01:31:25.010000"],["2024-07-24T01:31:26.010000"],["2024-07-24T01:31:27.010000"],["2024-07-24T01:31:28.010000"],["2024-07-24T01:31:29.010000"],["2024-07-24T01:31:30.010000"],["2024-07-24T01:31:31.010000"],["2024-07-24T01:31:32.010000"],["2024-07-24T01:31:33.010000"],["2024-07-24T01:31:34.010000"],["2024-07-24T01:31:35.010000"],["2024-07-24T01:31:36.010000"],["2024-07-24T01:31:37.010000"],["2024-07-24T01:31:38.010000"],["2024-07-24T01:31:39.010000"],["2024-07-24T01:31:40.010000"],["2024-07-24T01:31:41.010000"],["2024-07-24T01:31:42.010000"],["2024-07-24T01:31:43.010000"],["2024-07-24T01:31:44.010000"],["2024-07-24T01:31:45.010000"],["2024-07-24T01:31:46.010000"],["2024-07-24T01:31:47.010000"],["2024-07-24T01:31:48.010000"],["2024-07-24T01:31:49.010000"],["2024-07-24T01:31:50.010000"],["2024-07-24T01:31:51.010000"],["2024-07-24T01:31:52.010000"],["2024-07-24T01:31:53.010000"],["2024-07-24T01:31:54.010000"],["2024-07-24T01:31:55.010000"],["2024-07-24T01:31:56.010000"],["2024-07-24T01:31:57.010000"],["2024-07-24T01:31:58.010000"],["2024-07-24T01:31:59.010000"],["2024-07-24T01:32:00.010000"],["2024-07-24T01:32:01.010000"],["2024-07-24T01:32:02.010000"],["2024-07-24T01:32:03.010000"],["2024-07-24T01:32:04.010000"],["2024-07-24T01:32:05.010000"],["2024-07-24T01:32:06.010000"],["2024-07-24T01:32:07.010000"],["2024-07-24T01:32:08.010000"],["2024-07-24T01:32:09.010000"],["2024-07-24T01:32:10.010000"],["2024-07-24T01:32:11.010000"],["2024-07-24T01:32:12.010000"],["2024-07-24T01:32:13.010000"],["2024-07-24T01:32:14.010000"],["2024-07-24T01:32:15.010000"],["2024-07-24T01:32:16.010000"],["2024-07-24T01:32:17.010000"],["2024-07-24T01:32:18.010000"],["2024-07-24T01:32:19.010000"],["2024-07-24T01:32:20.010000"],["2024-07-24T01:32:21.010000"],["2024-07-24T01:32:22.010000"],["2024-07-24T01:32:23.010000"],["2024-07-24T01:32:24.010000"],["2024-07-24T01:32:25.010000"],["2024-07-24T01:32:26.010000"],["2024-07-24T01:32:27.010000"],["2024-07-24T01:32:28.010000"],["2024-07-24T01:32:29.010000"],["2024-07-24T01:32:30.010000"],["2024-07-24T01:32:31.010000"],["2024-07-24T01:32:32.010000"],["2024-07-24T01:32:33.010000"],["2024-07-24T01:32:34.010000"],["2024-07-24T01:32:35.010000"],["2024-07-24T01:32:36.010000"],["2024-07-24T01:32:37.010000"],["2024-07-24T01:32:38.010000"],["2024-07-24T01:32:39.010000"],["2024-07-24T01:32:40.010000"],["2024-07-24T01:32:41.010000"],["2024-07-24T01:32:42.010000"],["2024-07-24T01:32:43.010000"],["2024-07-24T01:32:44.010000"],["2024-07-24T01:32:45.010000"],["2024-07-24T01:32:46.010000"],["2024-07-24T01:32:47.010000"],["2024-07-24T01:32:48.010000"],["2024-07-24T01:32:49.010000"],["2024-07-24T01:32:50.010000"],["2024-07-24T01:32:51.010000"],["2024-07-24T01:32:52.010000"],["2024-07-24T01:32:53.010000"],["2024-07-24T01:32:54.010000"],["2024-07-24T01:32:55.010000"],["2024-07-24T01:32:56.010000"],["2024-07-24T01:32:57.010000"],["2024-07-24T01:32:58.010000"],["2024-07-24T01:32:59.010000"],["2024-07-24T01:33:00.010000"],["2024-07-24T01:33:01.010000"],["2024-07-24T01:33:02.010000"],["2024-07-24T01:33:03.010000"],["2024-07-24T01:33:04.010000"],["2024-07-24T01:33:05.010000"],["2024-07-24T01:33:06.010000"],["2024-07-24T01:33:07.010000"],["2024-07-24T01:33:08.010000"],["2024-07-24T01:33:09.010000"],["2024-07-24T01:33:10.010000"],["2024-07-24T01:33:11.010000"],["2024-07-24T01:33:12.010000"],["2024-07-24T01:33:13.010000"],["2024-07-24T01:33:14.010000"],["2024-07-24T01:33:15.010000"],["2024-07-24T01:33:16.010000"],["2024-07-24T01:33:17.010000"],["2024-07-24T01:33:18.010000"],["2024-07-24T01:33:19.010000"],["2024-07-24T01:33:20.010000"],["2024-07-24T01:33:21.010000"],["2024-07-24T01:33:22.010000"],["2024-07-24T01:33:23.010000"],["2024-07-24T01:33:24.010000"],["2024-07-24T01:33:25.010000"],["2024-07-24T01:33:26.010000"],["2024-07-24T01:33:27.010000"],["2024-07-24T01:33:28.010000"],["2024-07-24T01:33:29.010000"],["2024-07-24T01:33:30.010000"],["2024-07-24T01:33:31.010000"],["2024-07-24T01:33:32.010000"],["2024-07-24T01:33:33.010000"],["2024-07-24T01:33:34.010000"],["2024-07-24T01:33:35.010000"],["2024-07-24T01:33:36.010000"],["2024-07-24T01:33:37.010000"],["2024-07-24T01:33:38.010000"],["2024-07-24T01:33:39.010000"],["2024-07-24T01:33:40.010000"],["2024-07-24T01:33:41.010000"],["2024-07-24T01:33:42.010000"],["2024-07-24T01:33:43.010000"],["2024-07-24T01:33:44.010000"],["2024-07-24T01:33:45.010000"],["2024-07-24T01:33:46.010000"],["2024-07-24T01:33:47.010000"],["2024-07-24T01:33:48.010000"],["2024-07-24T01:33:49.010000"],["2024-07-24T01:33:50.010000"],["2024-07-24T01:33:51.010000"],["2024-07-24T01:33:52.010000"],["2024-07-24T01:33:53.010000"],["2024-07-24T01:33:54.010000"],["2024-07-24T01:33:55.010000"],["2024-07-24T01:33:56.010000"],["2024-07-24T01:33:57.010000"],["2024-07-24T01:33:58.010000"],["2024-07-24T01:33:59.010000"],["2024-07-24T01:34:00.010000"],["2024-07-24T01:34:01.010000"],["2024-07-24T01:34:02.010000"],["2024-07-24T01:34:03.010000"],["2024-07-24T01:34:04.010000"],["2024-07-24T01:34:05.010000"],["2024-07-24T01:34:06.010000"],["2024-07-24T01:34:07.010000"],["2024-07-24T01:34:08.010000"],["2024-07-24T01:34:09.010000"],["2024-07-24T01:34:10.010000"],["2024-07-24T01:34:11.010000"],["2024-07-24T01:34:12.010000"],["2024-07-24T01:34:13.010000"],["2024-07-24T01:34:14.010000"],["2024-07-24T01:34:15.010000"],["2024-07-24T01:34:16.010000"],["2024-07-24T01:34:17.010000"],["2024-07-24T01:34:18.010000"],["2024-07-24T01:34:19.010000"],["2024-07-24T01:34:20.010000"],["2024-07-24T01:34:21.010000"],["2024-07-24T01:34:22.010000"],["2024-07-24T01:34:23.010000"],["2024-07-24T01:34:24.010000"],["2024-07-24T01:34:25.010000"],["2024-07-24T01:34:26.010000"],["2024-07-24T01:34:27.010000"],["2024-07-24T01:34:28.010000"],["2024-07-24T01:34:29.010000"],["2024-07-24T01:34:30.010000"],["2024-07-24T01:34:31.010000"],["2024-07-24T01:34:32.010000"],["2024-07-24T01:34:33.010000"],["2024-07-24T01:34:34.010000"],["2024-07-24T01:34:35.010000"],["2024-07-24T01:34:36.010000"],["2024-07-24T01:34:37.010000"],["2024-07-24T01:34:38.010000"],["2024-07-24T01:34:39.010000"],["2024-07-24T01:34:40.010000"],["2024-07-24T01:34:41.010000"],["2024-07-24T01:34:42.010000"],["2024-07-24T01:34:43.010000"],["2024-07-24T01:34:44.010000"],["2024-07-24T01:34:45.010000"],["2024-07-24T01:34:46.010000"],["2024-07-24T01:34:47.010000"],["2024-07-24T01:34:48.010000"],["2024-07-24T01:34:49.010000"],["2024-07-24T01:34:50.010000"],["2024-07-24T01:34:51.010000"],["2024-07-24T01:34:52.010000"],["2024-07-24T01:34:53.010000"],["2024-07-24T01:34:54.010000"],["2024-07-24T01:34:55.010000"],["2024-07-24T01:34:56.010000"],["2024-07-24T01:34:57.010000"],["2024-07-24T01:34:58.010000"],["2024-07-24T01:34:59.010000"],["2024-07-24T01:35:00.010000"],["2024-07-24T01:35:01.010000"],["2024-07-24T01:35:02.010000"],["2024-07-24T01:35:03.010000"],["2024-07-24T01:35:04.010000"],["2024-07-24T01:35:05.010000"],["2024-07-24T01:35:06.010000"],["2024-07-24T01:35:07.010000"],["2024-07-24T01:35:08.010000"],["2024-07-24T01:35:09.010000"],["2024-07-24T01:35:10.010000"],["2024-07-24T01:35:11.010000"],["2024-07-24T01:35:12.010000"],["2024-07-24T01:35:13.010000"],["2024-07-24T01:35:14.010000"],["2024-07-24T01:35:15.010000"],["2024-07-24T01:35:16.010000"],["2024-07-24T01:35:17.010000"],["2024-07-24T01:35:18.010000"],["2024-07-24T01:35:19.010000"],["2024-07-24T01:35:20.010000"],["2024-07-24T01:35:21.010000"],["2024-07-24T01:35:22.010000"],["2024-07-24T01:35:23.010000"],["2024-07-24T01:35:24.010000"],["2024-07-24T01:35:25.010000"],["2024-07-24T01:35:26.010000"],["2024-07-24T01:35:27.010000"],["2024-07-24T01:35:28.010000"],["2024-07-24T01:35:29.010000"],["2024-07-24T01:35:30.010000"],["2024-07-24T01:35:31.010000"],["2024-07-24T01:35:32.010000"],["2024-07-24T01:35:33.010000"],["2024-07-24T01:35:34.010000"],["2024-07-24T01:35:35.010000"],["2024-07-24T01:35:36.010000"],["2024-07-24T01:35:37.010000"],["2024-07-24T01:35:38.010000"],["2024-07-24T01:35:39.010000"],["2024-07-24T01:35:40.010000"],["2024-07-24T01:35:41.010000"],["2024-07-24T01:35:42.010000"],["2024-07-24T01:35:43.010000"],["2024-07-24T01:35:44.010000"],["2024-07-24T01:35:45.010000"],["2024-07-24T01:35:46.010000"],["2024-07-24T01:35:47.010000"],["2024-07-24T01:35:48.010000"],["2024-07-24T01:35:49.010000"],["2024-07-24T01:35:50.010000"],["2024-07-24T01:35:51.010000"],["2024-07-24T01:35:52.010000"],["2024-07-24T01:35:53.010000"],["2024-07-24T01:35:54.010000"],["2024-07-24T01:35:55.010000"],["2024-07-24T01:35:56.010000"],["2024-07-24T01:35:57.010000"],["2024-07-24T01:35:58.010000"],["2024-07-24T01:35:59.010000"],["2024-07-24T01:36:00.010000"],["2024-07-24T01:36:01.010000"],["2024-07-24T01:36:02.010000"],["2024-07-24T01:36:03.010000"],["2024-07-24T01:36:04.010000"],["2024-07-24T01:36:05.010000"],["2024-07-24T01:36:06.010000"],["2024-07-24T01:36:07.010000"],["2024-07-24T01:36:08.010000"],["2024-07-24T01:36:09.010000"],["2024-07-24T01:36:10.010000"],["2024-07-24T01:36:11.010000"],["2024-07-24T01:36:12.010000"],["2024-07-24T01:36:13.010000"],["2024-07-24T01:36:14.010000"],["2024-07-24T01:36:15.010000"],["2024-07-24T01:36:16.010000"],["2024-07-24T01:36:17.010000"],["2024-07-24T01:36:18.010000"],["2024-07-24T01:36:19.010000"],["2024-07-24T01:36:20.010000"],["2024-07-24T01:36:21.010000"],["2024-07-24T01:36:22.010000"],["2024-07-24T01:36:23.010000"],["2024-07-24T01:36:24.010000"],["2024-07-24T01:36:25.010000"],["2024-07-24T01:36:26.010000"],["2024-07-24T01:36:27.010000"],["2024-07-24T01:36:28.010000"],["2024-07-24T01:36:29.010000"],["2024-07-24T01:36:30.010000"],["2024-07-24T01:36:31.010000"],["2024-07-24T01:36:32.010000"],["2024-07-24T01:36:33.010000"],["2024-07-24T01:36:34.010000"],["2024-07-24T01:36:35.010000"],["2024-07-24T01:36:36.010000"],["2024-07-24T01:36:37.010000"],["2024-07-24T01:36:38.010000"],["2024-07-24T01:36:39.010000"],["2024-07-24T01:36:40.010000"],["2024-07-24T01:36:41.010000"],["2024-07-24T01:36:42.010000"],["2024-07-24T01:36:43.010000"],["2024-07-24T01:36:44.010000"],["2024-07-24T01:36:45.010000"],["2024-07-24T01:36:46.010000"],["2024-07-24T01:36:47.010000"],["2024-07-24T01:36:48.010000"],["2024-07-24T01:36:49.010000"],["2024-07-24T01:36:50.010000"],["2024-07-24T01:36:51.010000"],["2024-07-24T01:36:52.010000"],["2024-07-24T01:36:53.010000"],["2024-07-24T01:36:54.010000"],["2024-07-24T01:36:55.010000"],["2024-07-24T01:36:56.010000"],["2024-07-24T01:36:57.010000"],["2024-07-24T01:36:58.010000"],["2024-07-24T01:36:59.010000"],["2024-07-24T01:37:00.010000"],["2024-07-24T01:37:01.010000"],["2024-07-24T01:37:02.010000"],["2024-07-24T01:37:03.010000"],["2024-07-24T01:37:04.010000"],["2024-07-24T01:37:05.010000"],["2024-07-24T01:37:06.010000"],["2024-07-24T01:37:07.010000"],["2024-07-24T01:37:08.010000"],["2024-07-24T01:37:09.010000"],["2024-07-24T01:37:10.010000"],["2024-07-24T01:37:11.010000"],["2024-07-24T01:37:12.010000"],["2024-07-24T01:37:13.010000"],["2024-07-24T01:37:14.010000"],["2024-07-24T01:37:15.010000"],["2024-07-24T01:37:16.010000"],["2024-07-24T01:37:17.010000"],["2024-07-24T01:37:18.010000"],["2024-07-24T01:37:19.010000"],["2024-07-24T01:37:20.010000"],["2024-07-24T01:37:21.010000"],["2024-07-24T01:37:22.010000"],["2024-07-24T01:37:23.010000"],["2024-07-24T01:37:24.010000"],["2024-07-24T01:37:25.010000"],["2024-07-24T01:37:26.010000"],["2024-07-24T01:37:27.010000"],["2024-07-24T01:37:28.010000"],["2024-07-24T01:37:29.010000"],["2024-07-24T01:37:30.010000"],["2024-07-24T01:37:31.010000"],["2024-07-24T01:37:32.010000"],["2024-07-24T01:37:33.010000"],["2024-07-24T01:37:34.010000"],["2024-07-24T01:37:35.010000"],["2024-07-24T01:37:36.010000"],["2024-07-24T01:37:37.010000"],["2024-07-24T01:37:38.010000"],["2024-07-24T01:37:39.010000"],["2024-07-24T01:37:40.010000"],["2024-07-24T01:37:41.010000"],["2024-07-24T01:37:42.010000"],["2024-07-24T01:37:43.010000"],["2024-07-24T01:37:44.010000"],["2024-07-24T01:37:45.010000"],["2024-07-24T01:37:46.010000"],["2024-07-24T01:37:47.010000"],["2024-07-24T01:37:48.010000"],["2024-07-24T01:37:49.010000"],["2024-07-24T01:37:50.010000"],["2024-07-24T01:37:51.010000"],["2024-07-24T01:37:52.010000"],["2024-07-24T01:37:53.010000"],["2024-07-24T01:37:54.010000"],["2024-07-24T01:37:55.010000"],["2024-07-24T01:37:56.010000"],["2024-07-24T01:37:57.010000"],["2024-07-24T01:37:58.010000"],["2024-07-24T01:37:59.010000"],["2024-07-24T01:38:00.010000"],["2024-07-24T01:38:01.010000"],["2024-07-24T01:38:02.010000"],["2024-07-24T01:38:03.010000"],["2024-07-24T01:38:04.010000"],["2024-07-24T01:38:05.010000"],["2024-07-24T01:38:06.010000"],["2024-07-24T01:38:07.010000"],["2024-07-24T01:38:08.010000"],["2024-07-24T01:38:09.010000"],["2024-07-24T01:38:10.010000"],["2024-07-24T01:38:11.010000"],["2024-07-24T01:38:12.010000"],["2024-07-24T01:38:13.010000"],["2024-07-24T01:38:14.010000"],["2024-07-24T01:38:15.010000"],["2024-07-24T01:38:16.010000"],["2024-07-24T01:38:17.010000"],["2024-07-24T01:38:18.010000"],["2024-07-24T01:38:19.010000"],["2024-07-24T01:38:20.010000"],["2024-07-24T01:38:21.010000"],["2024-07-24T01:38:22.010000"],["2024-07-24T01:38:23.010000"],["2024-07-24T01:38:24.010000"],["2024-07-24T01:38:25.010000"],["2024-07-24T01:38:26.010000"],["2024-07-24T01:38:27.010000"],["2024-07-24T01:38:28.010000"],["2024-07-24T01:38:29.010000"],["2024-07-24T01:38:30.010000"],["2024-07-24T01:38:31.010000"],["2024-07-24T01:38:32.010000"],["2024-07-24T01:38:33.010000"],["2024-07-24T01:38:34.010000"],["2024-07-24T01:38:35.010000"],["2024-07-24T01:38:36.010000"],["2024-07-24T01:38:37.010000"],["2024-07-24T01:38:38.010000"],["2024-07-24T01:38:39.010000"],["2024-07-24T01:38:40.010000"],["2024-07-24T01:38:41.010000"],["2024-07-24T01:38:42.010000"],["2024-07-24T01:38:43.010000"],["2024-07-24T01:38:44.010000"],["2024-07-24T01:38:45.010000"],["2024-07-24T01:38:46.010000"],["2024-07-24T01:38:47.010000"],["2024-07-24T01:38:48.010000"],["2024-07-24T01:38:49.010000"],["2024-07-24T01:38:50.010000"],["2024-07-24T01:38:51.010000"],["2024-07-24T01:38:52.010000"],["2024-07-24T01:38:53.010000"],["2024-07-24T01:38:54.010000"],["2024-07-24T01:38:55.010000"],["2024-07-24T01:38:56.010000"],["2024-07-24T01:38:57.010000"],["2024-07-24T01:38:58.010000"],["2024-07-24T01:38:59.010000"],["2024-07-24T01:39:00.010000"],["2024-07-24T01:39:01.010000"],["2024-07-24T01:39:02.010000"],["2024-07-24T01:39:03.010000"],["2024-07-24T01:39:04.010000"],["2024-07-24T01:39:05.010000"],["2024-07-24T01:39:06.010000"],["2024-07-24T01:39:07.010000"],["2024-07-24T01:39:08.010000"],["2024-07-24T01:39:09.010000"],["2024-07-24T01:39:10.010000"],["2024-07-24T01:39:11.010000"],["2024-07-24T01:39:12.010000"],["2024-07-24T01:39:13.010000"],["2024-07-24T01:39:14.010000"],["2024-07-24T01:39:15.010000"],["2024-07-24T01:39:16.010000"],["2024-07-24T01:39:17.010000"],["2024-07-24T01:39:18.010000"],["2024-07-24T01:39:19.010000"],["2024-07-24T01:39:20.010000"],["2024-07-24T01:39:21.010000"],["2024-07-24T01:39:22.010000"],["2024-07-24T01:39:23.010000"],["2024-07-24T01:39:24.010000"],["2024-07-24T01:39:25.010000"],["2024-07-24T01:39:26.010000"],["2024-07-24T01:39:27.010000"],["2024-07-24T01:39:28.010000"],["2024-07-24T01:39:29.010000"],["2024-07-24T01:39:30.010000"],["2024-07-24T01:39:31.010000"],["2024-07-24T01:39:32.010000"],["2024-07-24T01:39:33.010000"],["2024-07-24T01:39:34.010000"],["2024-07-24T01:39:35.010000"],["2024-07-24T01:39:36.010000"],["2024-07-24T01:39:37.010000"],["2024-07-24T01:39:38.010000"],["2024-07-24T01:39:39.010000"],["2024-07-24T01:39:40.010000"],["2024-07-24T01:39:41.010000"],["2024-07-24T01:39:42.010000"],["2024-07-24T01:39:43.010000"],["2024-07-24T01:39:44.010000"],["2024-07-24T01:39:45.010000"],["2024-07-24T01:39:46.010000"],["2024-07-24T01:39:47.010000"],["2024-07-24T01:39:48.010000"],["2024-07-24T01:39:49.010000"],["2024-07-24T01:39:50.010000"],["2024-07-24T01:39:51.010000"],["2024-07-24T01:39:52.010000"],["2024-07-24T01:39:53.010000"],["2024-07-24T01:39:54.010000"],["2024-07-24T01:39:55.010000"],["2024-07-24T01:39:56.010000"],["2024-07-24T01:39:57.010000"],["2024-07-24T01:39:58.010000"],["2024-07-24T01:39:59.010000"],["2024-07-24T01:40:00.010000"],["2024-07-24T01:40:01.010000"],["2024-07-24T01:40:02.010000"],["2024-07-24T01:40:03.010000"],["2024-07-24T01:40:04.010000"],["2024-07-24T01:40:05.010000"],["2024-07-24T01:40:06.010000"],["2024-07-24T01:40:07.010000"],["2024-07-24T01:40:08.010000"],["2024-07-24T01:40:09.010000"],["2024-07-24T01:40:10.010000"],["2024-07-24T01:40:11.010000"],["2024-07-24T01:40:12.010000"],["2024-07-24T01:40:13.010000"],["2024-07-24T01:40:14.010000"],["2024-07-24T01:40:15.010000"],["2024-07-24T01:40:16.010000"],["2024-07-24T01:40:17.010000"],["2024-07-24T01:40:18.010000"],["2024-07-24T01:40:19.010000"],["2024-07-24T01:40:20.010000"],["2024-07-24T01:40:21.010000"],["2024-07-24T01:40:22.010000"],["2024-07-24T01:40:23.010000"],["2024-07-24T01:40:24.010000"],["2024-07-24T01:40:25.010000"],["2024-07-24T01:40:26.010000"],["2024-07-24T01:40:27.010000"],["2024-07-24T01:40:28.010000"],["2024-07-24T01:40:29.010000"],["2024-07-24T01:40:30.010000"],["2024-07-24T01:40:31.010000"],["2024-07-24T01:40:32.010000"],["2024-07-24T01:40:33.010000"],["2024-07-24T01:40:34.010000"],["2024-07-24T01:40:35.010000"],["2024-07-24T01:40:36.010000"],["2024-07-24T01:40:37.010000"],["2024-07-24T01:40:38.010000"],["2024-07-24T01:40:39.010000"],["2024-07-24T01:40:40.010000"],["2024-07-24T01:40:41.010000"],["2024-07-24T01:40:42.010000"],["2024-07-24T01:40:43.010000"],["2024-07-24T01:40:44.010000"],["2024-07-24T01:40:45.010000"],["2024-07-24T01:40:46.010000"],["2024-07-24T01:40:47.010000"],["2024-07-24T01:40:48.010000"],["2024-07-24T01:40:49.010000"],["2024-07-24T01:40:50.010000"],["2024-07-24T01:40:51.010000"],["2024-07-24T01:40:52.010000"],["2024-07-24T01:40:53.010000"],["2024-07-24T01:40:54.010000"],["2024-07-24T01:40:55.010000"],["2024-07-24T01:40:56.010000"],["2024-07-24T01:40:57.010000"],["2024-07-24T01:40:58.010000"],["2024-07-24T01:40:59.010000"],["2024-07-24T01:41:00.010000"],["2024-07-24T01:41:01.010000"],["2024-07-24T01:41:02.010000"],["2024-07-24T01:41:03.010000"],["2024-07-24T01:41:04.010000"],["2024-07-24T01:41:05.010000"],["2024-07-24T01:41:06.010000"],["2024-07-24T01:41:07.010000"],["2024-07-24T01:41:08.010000"],["2024-07-24T01:41:09.010000"],["2024-07-24T01:41:10.010000"],["2024-07-24T01:41:11.010000"],["2024-07-24T01:41:12.010000"],["2024-07-24T01:41:13.010000"],["2024-07-24T01:41:14.010000"],["2024-07-24T01:41:15.010000"],["2024-07-24T01:41:16.010000"],["2024-07-24T01:41:17.010000"],["2024-07-24T01:41:18.010000"],["2024-07-24T01:41:19.010000"],["2024-07-24T01:41:20.010000"],["2024-07-24T01:41:21.010000"],["2024-07-24T01:41:22.010000"],["2024-07-24T01:41:23.010000"],["2024-07-24T01:41:24.010000"],["2024-07-24T01:41:25.010000"],["2024-07-24T01:41:26.010000"],["2024-07-24T01:41:27.010000"],["2024-07-24T01:41:28.010000"],["2024-07-24T01:41:29.010000"],["2024-07-24T01:41:30.010000"],["2024-07-24T01:41:31.010000"],["2024-07-24T01:41:32.010000"],["2024-07-24T01:41:33.010000"],["2024-07-24T01:41:34.010000"],["2024-07-24T01:41:35.010000"],["2024-07-24T01:41:36.010000"],["2024-07-24T01:41:37.010000"],["2024-07-24T01:41:38.010000"],["2024-07-24T01:41:39.010000"],["2024-07-24T01:41:40.010000"],["2024-07-24T01:41:41.010000"],["2024-07-24T01:41:42.010000"],["2024-07-24T01:41:43.010000"],["2024-07-24T01:41:44.010000"],["2024-07-24T01:41:45.010000"],["2024-07-24T01:41:46.010000"],["2024-07-24T01:41:47.010000"],["2024-07-24T01:41:48.010000"],["2024-07-24T01:41:49.010000"],["2024-07-24T01:41:50.010000"],["2024-07-24T01:41:51.010000"],["2024-07-24T01:41:52.010000"],["2024-07-24T01:41:53.010000"],["2024-07-24T01:41:54.010000"],["2024-07-24T01:41:55.010000"],["2024-07-24T01:41:56.010000"],["2024-07-24T01:41:57.010000"],["2024-07-24T01:41:58.010000"],["2024-07-24T01:41:59.010000"],["2024-07-24T01:42:00.010000"],["2024-07-24T01:42:01.010000"],["2024-07-24T01:42:02.010000"],["2024-07-24T01:42:03.010000"],["2024-07-24T01:42:04.010000"],["2024-07-24T01:42:05.010000"],["2024-07-24T01:42:06.010000"],["2024-07-24T01:42:07.010000"],["2024-07-24T01:42:08.010000"],["2024-07-24T01:42:09.010000"],["2024-07-24T01:42:10.010000"],["2024-07-24T01:42:11.010000"],["2024-07-24T01:42:12.010000"],["2024-07-24T01:42:13.010000"],["2024-07-24T01:42:14.010000"],["2024-07-24T01:42:15.010000"],["2024-07-24T01:42:16.010000"],["2024-07-24T01:42:17.010000"],["2024-07-24T01:42:18.010000"],["2024-07-24T01:42:19.010000"],["2024-07-24T01:42:20.010000"],["2024-07-24T01:42:21.010000"],["2024-07-24T01:42:22.010000"],["2024-07-24T01:42:23.010000"],["2024-07-24T01:42:24.010000"],["2024-07-24T01:42:25.010000"],["2024-07-24T01:42:26.010000"],["2024-07-24T01:42:27.010000"],["2024-07-24T01:42:28.010000"],["2024-07-24T01:42:29.010000"],["2024-07-24T01:42:30.010000"],["2024-07-24T01:42:31.010000"],["2024-07-24T01:42:32.010000"],["2024-07-24T01:42:33.010000"],["2024-07-24T01:42:34.010000"],["2024-07-24T01:42:35.010000"],["2024-07-24T01:42:36.010000"],["2024-07-24T01:42:37.010000"],["2024-07-24T01:42:38.010000"],["2024-07-24T01:42:39.010000"],["2024-07-24T01:42:40.010000"],["2024-07-24T01:42:41.010000"],["2024-07-24T01:42:42.010000"],["2024-07-24T01:42:43.010000"],["2024-07-24T01:42:44.010000"],["2024-07-24T01:42:45.010000"],["2024-07-24T01:42:46.010000"],["2024-07-24T01:42:47.010000"],["2024-07-24T01:42:48.010000"],["2024-07-24T01:42:49.010000"],["2024-07-24T01:42:50.010000"],["2024-07-24T01:42:51.010000"],["2024-07-24T01:42:52.010000"],["2024-07-24T01:42:53.010000"],["2024-07-24T01:42:54.010000"],["2024-07-24T01:42:55.010000"],["2024-07-24T01:42:56.010000"],["2024-07-24T01:42:57.010000"],["2024-07-24T01:42:58.010000"],["2024-07-24T01:42:59.010000"],["2024-07-24T01:43:00.010000"],["2024-07-24T01:43:01.010000"],["2024-07-24T01:43:02.010000"],["2024-07-24T01:43:03.010000"],["2024-07-24T01:43:04.010000"],["2024-07-24T01:43:05.010000"],["2024-07-24T01:43:06.010000"],["2024-07-24T01:43:07.010000"],["2024-07-24T01:43:08.010000"],["2024-07-24T01:43:09.010000"],["2024-07-24T01:43:10.010000"],["2024-07-24T01:43:11.010000"],["2024-07-24T01:43:12.010000"],["2024-07-24T01:43:13.010000"],["2024-07-24T01:43:14.010000"],["2024-07-24T01:43:15.010000"],["2024-07-24T01:43:16.010000"],["2024-07-24T01:43:17.010000"],["2024-07-24T01:43:18.010000"],["2024-07-24T01:43:19.010000"],["2024-07-24T01:43:20.010000"],["2024-07-24T01:43:21.010000"],["2024-07-24T01:43:22.010000"],["2024-07-24T01:43:23.010000"],["2024-07-24T01:43:24.010000"],["2024-07-24T01:43:25.010000"],["2024-07-24T01:43:26.010000"],["2024-07-24T01:43:27.010000"],["2024-07-24T01:43:28.010000"],["2024-07-24T01:43:29.010000"],["2024-07-24T01:43:30.010000"],["2024-07-24T01:43:31.010000"],["2024-07-24T01:43:32.010000"],["2024-07-24T01:43:33.010000"],["2024-07-24T01:43:34.010000"],["2024-07-24T01:43:35.010000"],["2024-07-24T01:43:36.010000"],["2024-07-24T01:43:37.010000"],["2024-07-24T01:43:38.010000"],["2024-07-24T01:43:39.010000"],["2024-07-24T01:43:40.010000"],["2024-07-24T01:43:41.010000"],["2024-07-24T01:43:42.010000"],["2024-07-24T01:43:43.010000"],["2024-07-24T01:43:44.010000"],["2024-07-24T01:43:45.010000"],["2024-07-24T01:43:46.010000"],["2024-07-24T01:43:47.010000"],["2024-07-24T01:43:48.010000"],["2024-07-24T01:43:49.010000"],["2024-07-24T01:43:50.010000"],["2024-07-24T01:43:51.010000"],["2024-07-24T01:43:52.010000"],["2024-07-24T01:43:53.010000"],["2024-07-24T01:43:54.010000"],["2024-07-24T01:43:55.010000"],["2024-07-24T01:43:56.010000"],["2024-07-24T01:43:57.010000"],["2024-07-24T01:43:58.010000"],["2024-07-24T01:43:59.010000"],["2024-07-24T01:44:00.010000"],["2024-07-24T01:44:01.010000"],["2024-07-24T01:44:02.010000"],["2024-07-24T01:44:03.010000"],["2024-07-24T01:44:04.010000"],["2024-07-24T01:44:05.010000"],["2024-07-24T01:44:06.010000"],["2024-07-24T01:44:07.010000"],["2024-07-24T01:44:08.010000"],["2024-07-24T01:44:09.010000"],["2024-07-24T01:44:10.010000"],["2024-07-24T01:44:11.010000"],["2024-07-24T01:44:12.010000"],["2024-07-24T01:44:13.010000"],["2024-07-24T01:44:14.010000"],["2024-07-24T01:44:15.010000"],["2024-07-24T01:44:16.010000"],["2024-07-24T01:44:17.010000"],["2024-07-24T01:44:18.010000"],["2024-07-24T01:44:19.010000"],["2024-07-24T01:44:20.010000"],["2024-07-24T01:44:21.010000"],["2024-07-24T01:44:22.010000"],["2024-07-24T01:44:23.010000"],["2024-07-24T01:44:24.010000"],["2024-07-24T01:44:25.010000"],["2024-07-24T01:44:26.010000"],["2024-07-24T01:44:27.010000"],["2024-07-24T01:44:28.010000"],["2024-07-24T01:44:29.010000"],["2024-07-24T01:44:30.010000"],["2024-07-24T01:44:31.010000"],["2024-07-24T01:44:32.010000"],["2024-07-24T01:44:33.010000"],["2024-07-24T01:44:34.010000"],["2024-07-24T01:44:35.010000"],["2024-07-24T01:44:36.010000"],["2024-07-24T01:44:37.010000"],["2024-07-24T01:44:38.010000"],["2024-07-24T01:44:39.010000"],["2024-07-24T01:44:40.010000"],["2024-07-24T01:44:41.010000"],["2024-07-24T01:44:42.010000"],["2024-07-24T01:44:43.010000"],["2024-07-24T01:44:44.010000"],["2024-07-24T01:44:45.010000"],["2024-07-24T01:44:46.010000"],["2024-07-24T01:44:47.010000"],["2024-07-24T01:44:48.010000"],["2024-07-24T01:44:49.010000"],["2024-07-24T01:44:50.010000"],["2024-07-24T01:44:51.010000"],["2024-07-24T01:44:52.010000"],["2024-07-24T01:44:53.010000"],["2024-07-24T01:44:54.010000"],["2024-07-24T01:44:55.010000"],["2024-07-24T01:44:56.010000"],["2024-07-24T01:44:57.010000"],["2024-07-24T01:44:58.010000"],["2024-07-24T01:44:59.010000"],["2024-07-24T01:45:00.010000"],["2024-07-24T01:45:01.010000"],["2024-07-24T01:45:02.010000"],["2024-07-24T01:45:03.010000"],["2024-07-24T01:45:04.010000"],["2024-07-24T01:45:05.010000"],["2024-07-24T01:45:06.010000"],["2024-07-24T01:45:07.010000"],["2024-07-24T01:45:08.010000"],["2024-07-24T01:45:09.010000"],["2024-07-24T01:45:10.010000"],["2024-07-24T01:45:11.010000"],["2024-07-24T01:45:12.010000"],["2024-07-24T01:45:13.010000"],["2024-07-24T01:45:14.010000"],["2024-07-24T01:45:15.010000"],["2024-07-24T01:45:16.010000"],["2024-07-24T01:45:17.010000"],["2024-07-24T01:45:18.010000"],["2024-07-24T01:45:19.010000"],["2024-07-24T01:45:20.010000"],["2024-07-24T01:45:21.010000"],["2024-07-24T01:45:22.010000"],["2024-07-24T01:45:23.010000"],["2024-07-24T01:45:24.010000"],["2024-07-24T01:45:25.010000"],["2024-07-24T01:45:26.010000"],["2024-07-24T01:45:27.010000"],["2024-07-24T01:45:28.010000"],["2024-07-24T01:45:29.010000"],["2024-07-24T01:45:30.010000"],["2024-07-24T01:45:31.010000"],["2024-07-24T01:45:32.010000"],["2024-07-24T01:45:33.010000"],["2024-07-24T01:45:34.010000"],["2024-07-24T01:45:35.010000"],["2024-07-24T01:45:36.010000"],["2024-07-24T01:45:37.010000"],["2024-07-24T01:45:38.010000"],["2024-07-24T01:45:39.010000"],["2024-07-24T01:45:40.010000"],["2024-07-24T01:45:41.010000"],["2024-07-24T01:45:42.010000"],["2024-07-24T01:45:43.010000"],["2024-07-24T01:45:44.010000"],["2024-07-24T01:45:45.010000"],["2024-07-24T01:45:46.010000"],["2024-07-24T01:45:47.010000"],["2024-07-24T01:45:48.010000"],["2024-07-24T01:45:49.010000"],["2024-07-24T01:45:50.010000"],["2024-07-24T01:45:51.010000"],["2024-07-24T01:45:52.010000"],["2024-07-24T01:45:53.010000"],["2024-07-24T01:45:54.010000"],["2024-07-24T01:45:55.010000"],["2024-07-24T01:45:56.010000"],["2024-07-24T01:45:57.010000"],["2024-07-24T01:45:58.010000"],["2024-07-24T01:45:59.010000"],["2024-07-24T01:46:00.010000"],["2024-07-24T01:46:01.010000"],["2024-07-24T01:46:02.010000"],["2024-07-24T01:46:03.010000"],["2024-07-24T01:46:04.010000"],["2024-07-24T01:46:05.010000"],["2024-07-24T01:46:06.010000"],["2024-07-24T01:46:07.010000"],["2024-07-24T01:46:08.010000"],["2024-07-24T01:46:09.010000"],["2024-07-24T01:46:10.010000"],["2024-07-24T01:46:11.010000"],["2024-07-24T01:46:12.010000"],["2024-07-24T01:46:13.010000"],["2024-07-24T01:46:14.010000"],["2024-07-24T01:46:15.010000"],["2024-07-24T01:46:16.010000"],["2024-07-24T01:46:17.010000"],["2024-07-24T01:46:18.010000"],["2024-07-24T01:46:19.010000"],["2024-07-24T01:46:20.010000"],["2024-07-24T01:46:21.010000"],["2024-07-24T01:46:22.010000"],["2024-07-24T01:46:23.010000"],["2024-07-24T01:46:24.010000"],["2024-07-24T01:46:25.010000"],["2024-07-24T01:46:26.010000"],["2024-07-24T01:46:27.010000"],["2024-07-24T01:46:28.010000"],["2024-07-24T01:46:29.010000"],["2024-07-24T01:46:30.010000"],["2024-07-24T01:46:31.010000"],["2024-07-24T01:46:32.010000"],["2024-07-24T01:46:33.010000"],["2024-07-24T01:46:34.010000"],["2024-07-24T01:46:35.010000"],["2024-07-24T01:46:36.010000"],["2024-07-24T01:46:37.010000"],["2024-07-24T01:46:38.010000"],["2024-07-24T01:46:39.010000"],["2024-07-24T01:46:40.010000"],["2024-07-24T01:46:41.010000"],["2024-07-24T01:46:42.010000"],["2024-07-24T01:46:43.010000"],["2024-07-24T01:46:44.010000"],["2024-07-24T01:46:45.010000"],["2024-07-24T01:46:46.010000"],["2024-07-24T01:46:47.010000"],["2024-07-24T01:46:48.010000"],["2024-07-24T01:46:49.010000"],["2024-07-24T01:46:50.010000"],["2024-07-24T01:46:51.010000"],["2024-07-24T01:46:52.010000"],["2024-07-24T01:46:53.010000"],["2024-07-24T01:46:54.010000"],["2024-07-24T01:46:55.010000"],["2024-07-24T01:46:56.010000"],["2024-07-24T01:46:57.010000"],["2024-07-24T01:46:58.010000"],["2024-07-24T01:46:59.010000"],["2024-07-24T01:47:00.010000"],["2024-07-24T01:47:01.010000"],["2024-07-24T01:47:02.010000"],["2024-07-24T01:47:03.010000"],["2024-07-24T01:47:04.010000"],["2024-07-24T01:47:05.010000"],["2024-07-24T01:47:06.010000"],["2024-07-24T01:47:07.010000"],["2024-07-24T01:47:08.010000"],["2024-07-24T01:47:09.010000"],["2024-07-24T01:47:10.010000"],["2024-07-24T01:47:11.010000"],["2024-07-24T01:47:12.010000"],["2024-07-24T01:47:13.010000"],["2024-07-24T01:47:14.010000"],["2024-07-24T01:47:15.010000"],["2024-07-24T01:47:16.010000"],["2024-07-24T01:47:17.010000"],["2024-07-24T01:47:18.010000"],["2024-07-24T01:47:19.010000"],["2024-07-24T01:47:20.010000"],["2024-07-24T01:47:21.010000"],["2024-07-24T01:47:22.010000"],["2024-07-24T01:47:23.010000"],["2024-07-24T01:47:24.010000"],["2024-07-24T01:47:25.010000"],["2024-07-24T01:47:26.010000"],["2024-07-24T01:47:27.010000"],["2024-07-24T01:47:28.010000"],["2024-07-24T01:47:29.010000"],["2024-07-24T01:47:30.010000"],["2024-07-24T01:47:31.010000"],["2024-07-24T01:47:32.010000"],["2024-07-24T01:47:33.010000"],["2024-07-24T01:47:34.010000"],["2024-07-24T01:47:35.010000"],["2024-07-24T01:47:36.010000"],["2024-07-24T01:47:37.010000"],["2024-07-24T01:47:38.010000"],["2024-07-24T01:47:39.010000"],["2024-07-24T01:47:40.010000"],["2024-07-24T01:47:41.010000"],["2024-07-24T01:47:42.010000"],["2024-07-24T01:47:43.010000"],["2024-07-24T01:47:44.010000"],["2024-07-24T01:47:45.010000"],["2024-07-24T01:47:46.010000"],["2024-07-24T01:47:47.010000"],["2024-07-24T01:47:48.010000"],["2024-07-24T01:47:49.010000"],["2024-07-24T01:47:50.010000"],["2024-07-24T01:47:51.010000"],["2024-07-24T01:47:52.010000"],["2024-07-24T01:47:53.010000"],["2024-07-24T01:47:54.010000"],["2024-07-24T01:47:55.010000"],["2024-07-24T01:47:56.010000"],["2024-07-24T01:47:57.010000"],["2024-07-24T01:47:58.010000"],["2024-07-24T01:47:59.010000"],["2024-07-24T01:48:00.010000"],["2024-07-24T01:48:01.010000"],["2024-07-24T01:48:02.010000"],["2024-07-24T01:48:03.010000"],["2024-07-24T01:48:04.010000"],["2024-07-24T01:48:05.010000"],["2024-07-24T01:48:06.010000"],["2024-07-24T01:48:07.010000"],["2024-07-24T01:48:08.010000"],["2024-07-24T01:48:09.010000"],["2024-07-24T01:48:10.010000"],["2024-07-24T01:48:11.010000"],["2024-07-24T01:48:12.010000"],["2024-07-24T01:48:13.010000"],["2024-07-24T01:48:14.010000"],["2024-07-24T01:48:15.010000"],["2024-07-24T01:48:16.010000"],["2024-07-24T01:48:17.010000"],["2024-07-24T01:48:18.010000"],["2024-07-24T01:48:19.010000"],["2024-07-24T01:48:20.010000"],["2024-07-24T01:48:21.010000"],["2024-07-24T01:48:22.010000"],["2024-07-24T01:48:23.010000"],["2024-07-24T01:48:24.010000"],["2024-07-24T01:48:25.010000"],["2024-07-24T01:48:26.010000"],["2024-07-24T01:48:27.010000"],["2024-07-24T01:48:28.010000"],["2024-07-24T01:48:29.010000"],["2024-07-24T01:48:30.010000"],["2024-07-24T01:48:31.010000"],["2024-07-24T01:48:32.010000"],["2024-07-24T01:48:33.010000"],["2024-07-24T01:48:34.010000"],["2024-07-24T01:48:35.010000"],["2024-07-24T01:48:36.010000"],["2024-07-24T01:48:37.010000"],["2024-07-24T01:48:38.010000"],["2024-07-24T01:48:39.010000"],["2024-07-24T01:48:40.010000"],["2024-07-24T01:48:41.010000"],["2024-07-24T01:48:42.010000"],["2024-07-24T01:48:43.010000"],["2024-07-24T01:48:44.010000"],["2024-07-24T01:48:45.010000"],["2024-07-24T01:48:46.010000"],["2024-07-24T01:48:47.010000"],["2024-07-24T01:48:48.010000"],["2024-07-24T01:48:49.010000"],["2024-07-24T01:48:50.010000"],["2024-07-24T01:48:51.010000"],["2024-07-24T01:48:52.010000"],["2024-07-24T01:48:53.010000"],["2024-07-24T01:48:54.010000"],["2024-07-24T01:48:55.010000"],["2024-07-24T01:48:56.010000"],["2024-07-24T01:48:57.010000"],["2024-07-24T01:48:58.010000"],["2024-07-24T01:48:59.010000"],["2024-07-24T01:49:00.010000"],["2024-07-24T01:49:01.010000"],["2024-07-24T01:49:02.010000"],["2024-07-24T01:49:03.010000"],["2024-07-24T01:49:04.010000"],["2024-07-24T01:49:05.010000"],["2024-07-24T01:49:06.010000"],["2024-07-24T01:49:07.010000"],["2024-07-24T01:49:08.010000"],["2024-07-24T01:49:09.010000"],["2024-07-24T01:49:10.010000"],["2024-07-24T01:49:11.010000"],["2024-07-24T01:49:12.010000"],["2024-07-24T01:49:13.010000"],["2024-07-24T01:49:14.010000"],["2024-07-24T01:49:15.010000"],["2024-07-24T01:49:16.010000"],["2024-07-24T01:49:17.010000"],["2024-07-24T01:49:18.010000"],["2024-07-24T01:49:19.010000"],["2024-07-24T01:49:20.010000"],["2024-07-24T01:49:21.010000"],["2024-07-24T01:49:22.010000"],["2024-07-24T01:49:23.010000"],["2024-07-24T01:49:24.010000"],["2024-07-24T01:49:25.010000"],["2024-07-24T01:49:26.010000"],["2024-07-24T01:49:27.010000"],["2024-07-24T01:49:28.010000"],["2024-07-24T01:49:29.010000"],["2024-07-24T01:49:30.010000"],["2024-07-24T01:49:31.010000"],["2024-07-24T01:49:32.010000"],["2024-07-24T01:49:33.010000"],["2024-07-24T01:49:34.010000"],["2024-07-24T01:49:35.010000"],["2024-07-24T01:49:36.010000"],["2024-07-24T01:49:37.010000"],["2024-07-24T01:49:38.010000"],["2024-07-24T01:49:39.010000"],["2024-07-24T01:49:40.010000"],["2024-07-24T01:49:41.010000"],["2024-07-24T01:49:42.010000"],["2024-07-24T01:49:43.010000"],["2024-07-24T01:49:44.010000"],["2024-07-24T01:49:45.010000"],["2024-07-24T01:49:46.010000"],["2024-07-24T01:49:47.010000"],["2024-07-24T01:49:48.010000"],["2024-07-24T01:49:49.010000"],["2024-07-24T01:49:50.010000"],["2024-07-24T01:49:51.010000"],["2024-07-24T01:49:52.010000"],["2024-07-24T01:49:53.010000"],["2024-07-24T01:49:54.010000"],["2024-07-24T01:49:55.010000"],["2024-07-24T01:49:56.010000"],["2024-07-24T01:49:57.010000"],["2024-07-24T01:49:58.010000"],["2024-07-24T01:49:59.010000"],["2024-07-24T01:50:00.010000"],["2024-07-24T01:50:01.010000"],["2024-07-24T01:50:02.010000"],["2024-07-24T01:50:03.010000"],["2024-07-24T01:50:04.010000"],["2024-07-24T01:50:05.010000"],["2024-07-24T01:50:06.010000"],["2024-07-24T01:50:07.010000"],["2024-07-24T01:50:08.010000"],["2024-07-24T01:50:09.010000"],["2024-07-24T01:50:10.010000"],["2024-07-24T01:50:11.010000"],["2024-07-24T01:50:12.010000"],["2024-07-24T01:50:13.010000"],["2024-07-24T01:50:14.010000"],["2024-07-24T01:50:15.010000"],["2024-07-24T01:50:16.010000"],["2024-07-24T01:50:17.010000"],["2024-07-24T01:50:18.010000"],["2024-07-24T01:50:19.010000"],["2024-07-24T01:50:20.010000"],["2024-07-24T01:50:21.010000"],["2024-07-24T01:50:22.010000"],["2024-07-24T01:50:23.010000"],["2024-07-24T01:50:24.010000"],["2024-07-24T01:50:25.010000"],["2024-07-24T01:50:26.010000"],["2024-07-24T01:50:27.010000"],["2024-07-24T01:50:28.010000"],["2024-07-24T01:50:29.010000"],["2024-07-24T01:50:30.010000"],["2024-07-24T01:50:31.010000"],["2024-07-24T01:50:32.010000"],["2024-07-24T01:50:33.010000"],["2024-07-24T01:50:34.010000"],["2024-07-24T01:50:35.010000"],["2024-07-24T01:50:36.010000"],["2024-07-24T01:50:37.010000"],["2024-07-24T01:50:38.010000"],["2024-07-24T01:50:39.010000"],["2024-07-24T01:50:40.010000"],["2024-07-24T01:50:41.010000"],["2024-07-24T01:50:42.010000"],["2024-07-24T01:50:43.010000"],["2024-07-24T01:50:44.010000"],["2024-07-24T01:50:45.010000"],["2024-07-24T01:50:46.010000"],["2024-07-24T01:50:47.010000"],["2024-07-24T01:50:48.010000"],["2024-07-24T01:50:49.010000"],["2024-07-24T01:50:50.010000"],["2024-07-24T01:50:51.010000"],["2024-07-24T01:50:52.010000"],["2024-07-24T01:50:53.010000"],["2024-07-24T01:50:54.010000"],["2024-07-24T01:50:55.010000"],["2024-07-24T01:50:56.010000"],["2024-07-24T01:50:57.010000"],["2024-07-24T01:50:58.010000"],["2024-07-24T01:50:59.010000"],["2024-07-24T01:51:00.010000"],["2024-07-24T01:51:01.010000"],["2024-07-24T01:51:02.010000"],["2024-07-24T01:51:03.010000"],["2024-07-24T01:51:04.010000"],["2024-07-24T01:51:05.010000"],["2024-07-24T01:51:06.010000"],["2024-07-24T01:51:07.010000"],["2024-07-24T01:51:08.010000"],["2024-07-24T01:51:09.010000"],["2024-07-24T01:51:10.010000"],["2024-07-24T01:51:11.010000"],["2024-07-24T01:51:12.010000"],["2024-07-24T01:51:13.010000"],["2024-07-24T01:51:14.010000"],["2024-07-24T01:51:15.010000"],["2024-07-24T01:51:16.010000"],["2024-07-24T01:51:17.010000"],["2024-07-24T01:51:18.010000"],["2024-07-24T01:51:19.010000"],["2024-07-24T01:51:20.010000"],["2024-07-24T01:51:21.010000"],["2024-07-24T01:51:22.010000"],["2024-07-24T01:51:23.010000"],["2024-07-24T01:51:24.010000"],["2024-07-24T01:51:25.010000"],["2024-07-24T01:51:26.010000"],["2024-07-24T01:51:27.010000"],["2024-07-24T01:51:28.010000"],["2024-07-24T01:51:29.010000"],["2024-07-24T01:51:30.010000"],["2024-07-24T01:51:31.010000"],["2024-07-24T01:51:32.010000"],["2024-07-24T01:51:33.010000"],["2024-07-24T01:51:34.010000"],["2024-07-24T01:51:35.010000"],["2024-07-24T01:51:36.010000"],["2024-07-24T01:51:37.010000"],["2024-07-24T01:51:38.010000"],["2024-07-24T01:51:39.010000"],["2024-07-24T01:51:40.010000"],["2024-07-24T01:51:41.010000"],["2024-07-24T01:51:42.010000"],["2024-07-24T01:51:43.010000"],["2024-07-24T01:51:44.010000"],["2024-07-24T01:51:45.010000"],["2024-07-24T01:51:46.010000"],["2024-07-24T01:51:47.010000"],["2024-07-24T01:51:48.010000"],["2024-07-24T01:51:49.010000"],["2024-07-24T01:51:50.010000"],["2024-07-24T01:51:51.010000"],["2024-07-24T01:51:52.010000"],["2024-07-24T01:51:53.010000"],["2024-07-24T01:51:54.010000"],["2024-07-24T01:51:55.010000"],["2024-07-24T01:51:56.010000"],["2024-07-24T01:51:57.010000"],["2024-07-24T01:51:58.010000"],["2024-07-24T01:51:59.010000"],["2024-07-24T01:52:00.010000"],["2024-07-24T01:52:01.010000"],["2024-07-24T01:52:02.010000"],["2024-07-24T01:52:03.010000"],["2024-07-24T01:52:04.010000"],["2024-07-24T01:52:05.010000"],["2024-07-24T01:52:06.010000"],["2024-07-24T01:52:07.010000"],["2024-07-24T01:52:08.010000"],["2024-07-24T01:52:09.010000"],["2024-07-24T01:52:10.010000"],["2024-07-24T01:52:11.010000"],["2024-07-24T01:52:12.010000"],["2024-07-24T01:52:13.010000"],["2024-07-24T01:52:14.010000"],["2024-07-24T01:52:15.010000"],["2024-07-24T01:52:16.010000"],["2024-07-24T01:52:17.010000"],["2024-07-24T01:52:18.010000"],["2024-07-24T01:52:19.010000"],["2024-07-24T01:52:20.010000"],["2024-07-24T01:52:21.010000"],["2024-07-24T01:52:22.010000"],["2024-07-24T01:52:23.010000"],["2024-07-24T01:52:24.010000"],["2024-07-24T01:52:25.010000"],["2024-07-24T01:52:26.010000"],["2024-07-24T01:52:27.010000"],["2024-07-24T01:52:28.010000"],["2024-07-24T01:52:29.010000"],["2024-07-24T01:52:30.010000"],["2024-07-24T01:52:31.010000"],["2024-07-24T01:52:32.010000"],["2024-07-24T01:52:33.010000"],["2024-07-24T01:52:34.010000"],["2024-07-24T01:52:35.010000"],["2024-07-24T01:52:36.010000"],["2024-07-24T01:52:37.010000"],["2024-07-24T01:52:38.010000"],["2024-07-24T01:52:39.010000"],["2024-07-24T01:52:40.010000"],["2024-07-24T01:52:41.010000"],["2024-07-24T01:52:42.010000"],["2024-07-24T01:52:43.010000"],["2024-07-24T01:52:44.010000"],["2024-07-24T01:52:45.010000"],["2024-07-24T01:52:46.010000"],["2024-07-24T01:52:47.010000"],["2024-07-24T01:52:48.010000"],["2024-07-24T01:52:49.010000"],["2024-07-24T01:52:50.010000"],["2024-07-24T01:52:51.010000"],["2024-07-24T01:52:52.010000"],["2024-07-24T01:52:53.010000"],["2024-07-24T01:52:54.010000"],["2024-07-24T01:52:55.010000"],["2024-07-24T01:52:56.010000"],["2024-07-24T01:52:57.010000"],["2024-07-24T01:52:58.010000"],["2024-07-24T01:52:59.010000"],["2024-07-24T01:53:00.010000"],["2024-07-24T01:53:01.010000"],["2024-07-24T01:53:02.010000"],["2024-07-24T01:53:03.010000"],["2024-07-24T01:53:04.010000"],["2024-07-24T01:53:05.010000"],["2024-07-24T01:53:06.010000"],["2024-07-24T01:53:07.010000"],["2024-07-24T01:53:08.010000"],["2024-07-24T01:53:09.010000"],["2024-07-24T01:53:10.010000"],["2024-07-24T01:53:11.010000"],["2024-07-24T01:53:12.010000"],["2024-07-24T01:53:13.010000"],["2024-07-24T01:53:14.010000"],["2024-07-24T01:53:15.010000"],["2024-07-24T01:53:16.010000"],["2024-07-24T01:53:17.010000"],["2024-07-24T01:53:18.010000"],["2024-07-24T01:53:19.010000"],["2024-07-24T01:53:20.010000"],["2024-07-24T01:53:21.010000"],["2024-07-24T01:53:22.010000"],["2024-07-24T01:53:23.010000"],["2024-07-24T01:53:24.010000"],["2024-07-24T01:53:25.010000"],["2024-07-24T01:53:26.010000"],["2024-07-24T01:53:27.010000"],["2024-07-24T01:53:28.010000"],["2024-07-24T01:53:29.010000"],["2024-07-24T01:53:30.010000"],["2024-07-24T01:53:31.010000"],["2024-07-24T01:53:32.010000"],["2024-07-24T01:53:33.010000"],["2024-07-24T01:53:34.010000"],["2024-07-24T01:53:35.010000"],["2024-07-24T01:53:36.010000"],["2024-07-24T01:53:37.010000"],["2024-07-24T01:53:38.010000"],["2024-07-24T01:53:39.010000"],["2024-07-24T01:53:40.010000"],["2024-07-24T01:53:41.010000"],["2024-07-24T01:53:42.010000"],["2024-07-24T01:53:43.010000"],["2024-07-24T01:53:44.010000"],["2024-07-24T01:53:45.010000"],["2024-07-24T01:53:46.010000"],["2024-07-24T01:53:47.010000"],["2024-07-24T01:53:48.010000"],["2024-07-24T01:53:49.010000"],["2024-07-24T01:53:50.010000"],["2024-07-24T01:53:51.010000"],["2024-07-24T01:53:52.010000"],["2024-07-24T01:53:53.010000"],["2024-07-24T01:53:54.010000"],["2024-07-24T01:53:55.010000"],["2024-07-24T01:53:56.010000"],["2024-07-24T01:53:57.010000"],["2024-07-24T01:53:58.010000"],["2024-07-24T01:53:59.010000"],["2024-07-24T01:54:00.010000"],["2024-07-24T01:54:01.010000"],["2024-07-24T01:54:02.010000"],["2024-07-24T01:54:03.010000"],["2024-07-24T01:54:04.010000"],["2024-07-24T01:54:05.010000"],["2024-07-24T01:54:06.010000"],["2024-07-24T01:54:07.010000"],["2024-07-24T01:54:08.010000"],["2024-07-24T01:54:09.010000"],["2024-07-24T01:54:10.010000"],["2024-07-24T01:54:11.010000"],["2024-07-24T01:54:12.010000"],["2024-07-24T01:54:13.010000"],["2024-07-24T01:54:14.010000"],["2024-07-24T01:54:15.010000"],["2024-07-24T01:54:16.010000"],["2024-07-24T01:54:17.010000"],["2024-07-24T01:54:18.010000"],["2024-07-24T01:54:19.010000"],["2024-07-24T01:54:20.010000"],["2024-07-24T01:54:21.010000"],["2024-07-24T01:54:22.010000"],["2024-07-24T01:54:23.010000"],["2024-07-24T01:54:24.010000"],["2024-07-24T01:54:25.010000"],["2024-07-24T01:54:26.010000"],["2024-07-24T01:54:27.010000"],["2024-07-24T01:54:28.010000"],["2024-07-24T01:54:29.010000"],["2024-07-24T01:54:30.010000"],["2024-07-24T01:54:31.010000"],["2024-07-24T01:54:32.010000"],["2024-07-24T01:54:33.010000"],["2024-07-24T01:54:34.010000"],["2024-07-24T01:54:35.010000"],["2024-07-24T01:54:36.010000"],["2024-07-24T01:54:37.010000"],["2024-07-24T01:54:38.010000"],["2024-07-24T01:54:39.010000"],["2024-07-24T01:54:40.010000"],["2024-07-24T01:54:41.010000"],["2024-07-24T01:54:42.010000"],["2024-07-24T01:54:43.010000"],["2024-07-24T01:54:44.010000"],["2024-07-24T01:54:45.010000"],["2024-07-24T01:54:46.010000"],["2024-07-24T01:54:47.010000"],["2024-07-24T01:54:48.010000"],["2024-07-24T01:54:49.010000"],["2024-07-24T01:54:50.010000"],["2024-07-24T01:54:51.010000"],["2024-07-24T01:54:52.010000"],["2024-07-24T01:54:53.010000"],["2024-07-24T01:54:54.010000"],["2024-07-24T01:54:55.010000"],["2024-07-24T01:54:56.010000"],["2024-07-24T01:54:57.010000"],["2024-07-24T01:54:58.010000"],["2024-07-24T01:54:59.010000"],["2024-07-24T01:55:00.010000"],["2024-07-24T01:55:01.010000"],["2024-07-24T01:55:02.010000"],["2024-07-24T01:55:03.010000"],["2024-07-24T01:55:04.010000"],["2024-07-24T01:55:05.010000"],["2024-07-24T01:55:06.010000"],["2024-07-24T01:55:07.010000"],["2024-07-24T01:55:08.010000"],["2024-07-24T01:55:09.010000"],["2024-07-24T01:55:10.010000"],["2024-07-24T01:55:11.010000"],["2024-07-24T01:55:12.010000"],["2024-07-24T01:55:13.010000"],["2024-07-24T01:55:14.010000"],["2024-07-24T01:55:15.010000"],["2024-07-24T01:55:16.010000"],["2024-07-24T01:55:17.010000"],["2024-07-24T01:55:18.010000"],["2024-07-24T01:55:19.010000"],["2024-07-24T01:55:20.010000"],["2024-07-24T01:55:21.010000"],["2024-07-24T01:55:22.010000"],["2024-07-24T01:55:23.010000"],["2024-07-24T01:55:24.010000"],["2024-07-24T01:55:25.010000"],["2024-07-24T01:55:26.010000"],["2024-07-24T01:55:27.010000"],["2024-07-24T01:55:28.010000"],["2024-07-24T01:55:29.010000"],["2024-07-24T01:55:30.010000"],["2024-07-24T01:55:31.010000"],["2024-07-24T01:55:32.010000"],["2024-07-24T01:55:33.010000"],["2024-07-24T01:55:34.010000"],["2024-07-24T01:55:35.010000"],["2024-07-24T01:55:36.010000"],["2024-07-24T01:55:37.010000"],["2024-07-24T01:55:38.010000"],["2024-07-24T01:55:39.010000"],["2024-07-24T01:55:40.010000"],["2024-07-24T01:55:41.010000"],["2024-07-24T01:55:42.010000"],["2024-07-24T01:55:43.010000"],["2024-07-24T01:55:44.010000"],["2024-07-24T01:55:45.010000"],["2024-07-24T01:55:46.010000"],["2024-07-24T01:55:47.010000"],["2024-07-24T01:55:48.010000"],["2024-07-24T01:55:49.010000"],["2024-07-24T01:55:50.010000"],["2024-07-24T01:55:51.010000"],["2024-07-24T01:55:52.010000"],["2024-07-24T01:55:53.010000"],["2024-07-24T01:55:54.010000"],["2024-07-24T01:55:55.010000"],["2024-07-24T01:55:56.010000"],["2024-07-24T01:55:57.010000"],["2024-07-24T01:55:58.010000"],["2024-07-24T01:55:59.010000"],["2024-07-24T01:56:00.010000"],["2024-07-24T01:56:01.010000"],["2024-07-24T01:56:02.010000"],["2024-07-24T01:56:03.010000"],["2024-07-24T01:56:04.010000"],["2024-07-24T01:56:05.010000"],["2024-07-24T01:56:06.010000"],["2024-07-24T01:56:07.010000"],["2024-07-24T01:56:08.010000"],["2024-07-24T01:56:09.010000"],["2024-07-24T01:56:10.010000"],["2024-07-24T01:56:11.010000"],["2024-07-24T01:56:12.010000"],["2024-07-24T01:56:13.010000"],["2024-07-24T01:56:14.010000"],["2024-07-24T01:56:15.010000"],["2024-07-24T01:56:16.010000"],["2024-07-24T01:56:17.010000"],["2024-07-24T01:56:18.010000"],["2024-07-24T01:56:19.010000"],["2024-07-24T01:56:20.010000"],["2024-07-24T01:56:21.010000"],["2024-07-24T01:56:22.010000"],["2024-07-24T01:56:23.010000"],["2024-07-24T01:56:24.010000"],["2024-07-24T01:56:25.010000"],["2024-07-24T01:56:26.010000"],["2024-07-24T01:56:27.010000"],["2024-07-24T01:56:28.010000"],["2024-07-24T01:56:29.010000"],["2024-07-24T01:56:30.010000"],["2024-07-24T01:56:31.010000"],["2024-07-24T01:56:32.010000"],["2024-07-24T01:56:33.010000"],["2024-07-24T01:56:34.010000"],["2024-07-24T01:56:35.010000"],["2024-07-24T01:56:36.010000"],["2024-07-24T01:56:37.010000"],["2024-07-24T01:56:38.010000"],["2024-07-24T01:56:39.010000"],["2024-07-24T01:56:40.010000"],["2024-07-24T01:56:41.010000"],["2024-07-24T01:56:42.010000"],["2024-07-24T01:56:43.010000"],["2024-07-24T01:56:44.010000"],["2024-07-24T01:56:45.010000"],["2024-07-24T01:56:46.010000"],["2024-07-24T01:56:47.010000"],["2024-07-24T01:56:48.010000"],["2024-07-24T01:56:49.010000"],["2024-07-24T01:56:50.010000"],["2024-07-24T01:56:51.010000"],["2024-07-24T01:56:52.010000"],["2024-07-24T01:56:53.010000"],["2024-07-24T01:56:54.010000"],["2024-07-24T01:56:55.010000"],["2024-07-24T01:56:56.010000"],["2024-07-24T01:56:57.010000"],["2024-07-24T01:56:58.010000"],["2024-07-24T01:56:59.010000"],["2024-07-24T01:57:00.010000"],["2024-07-24T01:57:01.010000"],["2024-07-24T01:57:02.010000"],["2024-07-24T01:57:03.010000"],["2024-07-24T01:57:04.010000"],["2024-07-24T01:57:05.010000"],["2024-07-24T01:57:06.010000"],["2024-07-24T01:57:07.010000"],["2024-07-24T01:57:08.010000"],["2024-07-24T01:57:09.010000"],["2024-07-24T01:57:10.010000"],["2024-07-24T01:57:11.010000"],["2024-07-24T01:57:12.010000"],["2024-07-24T01:57:13.010000"],["2024-07-24T01:57:14.010000"],["2024-07-24T01:57:15.010000"],["2024-07-24T01:57:16.010000"],["2024-07-24T01:57:17.010000"],["2024-07-24T01:57:18.010000"],["2024-07-24T01:57:19.010000"],["2024-07-24T01:57:20.010000"],["2024-07-24T01:57:21.010000"],["2024-07-24T01:57:22.010000"],["2024-07-24T01:57:23.010000"],["2024-07-24T01:57:24.010000"],["2024-07-24T01:57:25.010000"],["2024-07-24T01:57:26.010000"],["2024-07-24T01:57:27.010000"],["2024-07-24T01:57:28.010000"],["2024-07-24T01:57:29.010000"],["2024-07-24T01:57:30.010000"],["2024-07-24T01:57:31.010000"],["2024-07-24T01:57:32.010000"],["2024-07-24T01:57:33.010000"],["2024-07-24T01:57:34.010000"],["2024-07-24T01:57:35.010000"],["2024-07-24T01:57:36.010000"],["2024-07-24T01:57:37.010000"],["2024-07-24T01:57:38.010000"],["2024-07-24T01:57:39.010000"],["2024-07-24T01:57:40.010000"],["2024-07-24T01:57:41.010000"],["2024-07-24T01:57:42.010000"],["2024-07-24T01:57:43.010000"],["2024-07-24T01:57:44.010000"],["2024-07-24T01:57:45.010000"],["2024-07-24T01:57:46.010000"],["2024-07-24T01:57:47.010000"],["2024-07-24T01:57:48.010000"],["2024-07-24T01:57:49.010000"],["2024-07-24T01:57:50.010000"],["2024-07-24T01:57:51.010000"],["2024-07-24T01:57:52.010000"],["2024-07-24T01:57:53.010000"],["2024-07-24T01:57:54.010000"],["2024-07-24T01:57:55.010000"],["2024-07-24T01:57:56.010000"],["2024-07-24T01:57:57.010000"],["2024-07-24T01:57:58.010000"],["2024-07-24T01:57:59.010000"],["2024-07-24T01:58:00.010000"],["2024-07-24T01:58:01.010000"],["2024-07-24T01:58:02.010000"],["2024-07-24T01:58:03.010000"],["2024-07-24T01:58:04.010000"],["2024-07-24T01:58:05.010000"],["2024-07-24T01:58:06.010000"],["2024-07-24T01:58:07.010000"],["2024-07-24T01:58:08.010000"],["2024-07-24T01:58:09.010000"],["2024-07-24T01:58:10.010000"],["2024-07-24T01:58:11.010000"],["2024-07-24T01:58:12.010000"],["2024-07-24T01:58:13.010000"],["2024-07-24T01:58:14.010000"],["2024-07-24T01:58:15.010000"],["2024-07-24T01:58:16.010000"],["2024-07-24T01:58:17.010000"],["2024-07-24T01:58:18.010000"],["2024-07-24T01:58:19.010000"],["2024-07-24T01:58:20.010000"],["2024-07-24T01:58:21.010000"],["2024-07-24T01:58:22.010000"],["2024-07-24T01:58:23.010000"],["2024-07-24T01:58:24.010000"],["2024-07-24T01:58:25.010000"],["2024-07-24T01:58:26.010000"],["2024-07-24T01:58:27.010000"],["2024-07-24T01:58:28.010000"],["2024-07-24T01:58:29.010000"],["2024-07-24T01:58:30.010000"],["2024-07-24T01:58:31.010000"],["2024-07-24T01:58:32.010000"],["2024-07-24T01:58:33.010000"],["2024-07-24T01:58:34.010000"],["2024-07-24T01:58:35.010000"],["2024-07-24T01:58:36.010000"],["2024-07-24T01:58:37.010000"],["2024-07-24T01:58:38.010000"],["2024-07-24T01:58:39.010000"],["2024-07-24T01:58:40.010000"],["2024-07-24T01:58:41.010000"],["2024-07-24T01:58:42.010000"],["2024-07-24T01:58:43.010000"],["2024-07-24T01:58:44.010000"],["2024-07-24T01:58:45.010000"],["2024-07-24T01:58:46.010000"],["2024-07-24T01:58:47.010000"],["2024-07-24T01:58:48.010000"],["2024-07-24T01:58:49.010000"],["2024-07-24T01:58:50.010000"],["2024-07-24T01:58:51.010000"],["2024-07-24T01:58:52.010000"],["2024-07-24T01:58:53.010000"],["2024-07-24T01:58:54.010000"],["2024-07-24T01:58:55.010000"],["2024-07-24T01:58:56.010000"],["2024-07-24T01:58:57.010000"],["2024-07-24T01:58:58.010000"],["2024-07-24T01:58:59.010000"],["2024-07-24T01:59:00.010000"],["2024-07-24T01:59:01.010000"],["2024-07-24T01:59:02.010000"],["2024-07-24T01:59:03.010000"],["2024-07-24T01:59:04.010000"],["2024-07-24T01:59:05.010000"],["2024-07-24T01:59:06.010000"],["2024-07-24T01:59:07.010000"],["2024-07-24T01:59:08.010000"],["2024-07-24T01:59:09.010000"],["2024-07-24T01:59:10.010000"],["2024-07-24T01:59:11.010000"],["2024-07-24T01:59:12.010000"],["2024-07-24T01:59:13.010000"],["2024-07-24T01:59:14.010000"],["2024-07-24T01:59:15.010000"],["2024-07-24T01:59:16.010000"],["2024-07-24T01:59:17.010000"],["2024-07-24T01:59:18.010000"],["2024-07-24T01:59:19.010000"],["2024-07-24T01:59:20.010000"],["2024-07-24T01:59:21.010000"],["2024-07-24T01:59:22.010000"],["2024-07-24T01:59:23.010000"],["2024-07-24T01:59:24.010000"],["2024-07-24T01:59:25.010000"],["2024-07-24T01:59:26.010000"],["2024-07-24T01:59:27.010000"],["2024-07-24T01:59:28.010000"],["2024-07-24T01:59:29.010000"],["2024-07-24T01:59:30.010000"],["2024-07-24T01:59:31.010000"],["2024-07-24T01:59:32.010000"],["2024-07-24T01:59:33.010000"],["2024-07-24T01:59:34.010000"],["2024-07-24T01:59:35.010000"],["2024-07-24T01:59:36.010000"],["2024-07-24T01:59:37.010000"],["2024-07-24T01:59:38.010000"],["2024-07-24T01:59:39.010000"],["2024-07-24T01:59:40.010000"],["2024-07-24T01:59:41.010000"],["2024-07-24T01:59:42.010000"],["2024-07-24T01:59:43.010000"],["2024-07-24T01:59:44.010000"],["2024-07-24T01:59:45.010000"],["2024-07-24T01:59:46.010000"],["2024-07-24T01:59:47.010000"],["2024-07-24T01:59:48.010000"],["2024-07-24T01:59:49.010000"],["2024-07-24T01:59:50.010000"],["2024-07-24T01:59:51.010000"],["2024-07-24T01:59:52.010000"],["2024-07-24T01:59:53.010000"],["2024-07-24T01:59:54.010000"],["2024-07-24T01:59:55.010000"],["2024-07-24T01:59:56.010000"],["2024-07-24T01:59:57.010000"],["2024-07-24T01:59:58.010000"],["2024-07-24T01:59:59.010000"],["2024-07-24T02:00:00.010000"],["2024-07-24T02:00:01.010000"],["2024-07-24T02:00:02.010000"],["2024-07-24T02:00:03.010000"],["2024-07-24T02:00:04.010000"],["2024-07-24T02:00:05.010000"],["2024-07-24T02:00:06.010000"],["2024-07-24T02:00:07.010000"],["2024-07-24T02:00:08.010000"],["2024-07-24T02:00:09.010000"],["2024-07-24T02:00:10.010000"],["2024-07-24T02:00:11.010000"],["2024-07-24T02:00:12.010000"],["2024-07-24T02:00:13.010000"],["2024-07-24T02:00:14.010000"],["2024-07-24T02:00:15.010000"],["2024-07-24T02:00:16.010000"],["2024-07-24T02:00:17.010000"],["2024-07-24T02:00:18.010000"],["2024-07-24T02:00:19.010000"],["2024-07-24T02:00:20.010000"],["2024-07-24T02:00:21.010000"],["2024-07-24T02:00:22.010000"],["2024-07-24T02:00:23.010000"],["2024-07-24T02:00:24.010000"],["2024-07-24T02:00:25.010000"],["2024-07-24T02:00:26.010000"],["2024-07-24T02:00:27.010000"],["2024-07-24T02:00:28.010000"],["2024-07-24T02:00:29.010000"],["2024-07-24T02:00:30.010000"],["2024-07-24T02:00:31.010000"],["2024-07-24T02:00:32.010000"],["2024-07-24T02:00:33.010000"],["2024-07-24T02:00:34.010000"],["2024-07-24T02:00:35.010000"],["2024-07-24T02:00:36.010000"],["2024-07-24T02:00:37.010000"],["2024-07-24T02:00:38.010000"],["2024-07-24T02:00:39.010000"],["2024-07-24T02:00:40.010000"],["2024-07-24T02:00:41.010000"],["2024-07-24T02:00:42.010000"],["2024-07-24T02:00:43.010000"],["2024-07-24T02:00:44.010000"],["2024-07-24T02:00:45.010000"],["2024-07-24T02:00:46.010000"],["2024-07-24T02:00:47.010000"],["2024-07-24T02:00:48.010000"],["2024-07-24T02:00:49.010000"],["2024-07-24T02:00:50.010000"],["2024-07-24T02:00:51.010000"],["2024-07-24T02:00:52.010000"],["2024-07-24T02:00:53.010000"],["2024-07-24T02:00:54.010000"],["2024-07-24T02:00:55.010000"],["2024-07-24T02:00:56.010000"],["2024-07-24T02:00:57.010000"],["2024-07-24T02:00:58.010000"],["2024-07-24T02:00:59.010000"],["2024-07-24T02:01:00.010000"],["2024-07-24T02:01:01.010000"],["2024-07-24T02:01:02.010000"],["2024-07-24T02:01:03.010000"],["2024-07-24T02:01:04.010000"],["2024-07-24T02:01:05.010000"],["2024-07-24T02:01:06.010000"],["2024-07-24T02:01:07.010000"],["2024-07-24T02:01:08.010000"],["2024-07-24T02:01:09.010000"],["2024-07-24T02:01:10.010000"],["2024-07-24T02:01:11.010000"],["2024-07-24T02:01:12.010000"],["2024-07-24T02:01:13.010000"],["2024-07-24T02:01:14.010000"],["2024-07-24T02:01:15.010000"],["2024-07-24T02:01:16.010000"],["2024-07-24T02:01:17.010000"],["2024-07-24T02:01:18.010000"],["2024-07-24T02:01:19.010000"],["2024-07-24T02:01:20.010000"],["2024-07-24T02:01:21.010000"],["2024-07-24T02:01:22.010000"],["2024-07-24T02:01:23.010000"],["2024-07-24T02:01:24.010000"],["2024-07-24T02:01:25.010000"],["2024-07-24T02:01:26.010000"],["2024-07-24T02:01:27.010000"],["2024-07-24T02:01:28.010000"],["2024-07-24T02:01:29.010000"],["2024-07-24T02:01:30.010000"],["2024-07-24T02:01:31.010000"],["2024-07-24T02:01:32.010000"],["2024-07-24T02:01:33.010000"],["2024-07-24T02:01:34.010000"],["2024-07-24T02:01:35.010000"],["2024-07-24T02:01:36.010000"],["2024-07-24T02:01:37.010000"],["2024-07-24T02:01:38.010000"],["2024-07-24T02:01:39.010000"],["2024-07-24T02:01:40.010000"],["2024-07-24T02:01:41.010000"],["2024-07-24T02:01:42.010000"],["2024-07-24T02:01:43.010000"],["2024-07-24T02:01:44.010000"],["2024-07-24T02:01:45.010000"],["2024-07-24T02:01:46.010000"],["2024-07-24T02:01:47.010000"],["2024-07-24T02:01:48.010000"],["2024-07-24T02:01:49.010000"],["2024-07-24T02:01:50.010000"],["2024-07-24T02:01:51.010000"],["2024-07-24T02:01:52.010000"],["2024-07-24T02:01:53.010000"],["2024-07-24T02:01:54.010000"],["2024-07-24T02:01:55.010000"],["2024-07-24T02:01:56.010000"],["2024-07-24T02:01:57.010000"],["2024-07-24T02:01:58.010000"],["2024-07-24T02:01:59.010000"],["2024-07-24T02:02:00.010000"],["2024-07-24T02:02:01.010000"],["2024-07-24T02:02:02.010000"],["2024-07-24T02:02:03.010000"],["2024-07-24T02:02:04.010000"],["2024-07-24T02:02:05.010000"],["2024-07-24T02:02:06.010000"],["2024-07-24T02:02:07.010000"],["2024-07-24T02:02:08.010000"],["2024-07-24T02:02:09.010000"],["2024-07-24T02:02:10.010000"],["2024-07-24T02:02:11.010000"],["2024-07-24T02:02:12.010000"],["2024-07-24T02:02:13.010000"],["2024-07-24T02:02:14.010000"],["2024-07-24T02:02:15.010000"],["2024-07-24T02:02:16.010000"],["2024-07-24T02:02:17.010000"],["2024-07-24T02:02:18.010000"],["2024-07-24T02:02:19.010000"],["2024-07-24T02:02:20.010000"],["2024-07-24T02:02:21.010000"],["2024-07-24T02:02:22.010000"],["2024-07-24T02:02:23.010000"],["2024-07-24T02:02:24.010000"],["2024-07-24T02:02:25.010000"],["2024-07-24T02:02:26.010000"],["2024-07-24T02:02:27.010000"],["2024-07-24T02:02:28.010000"],["2024-07-24T02:02:29.010000"],["2024-07-24T02:02:30.010000"],["2024-07-24T02:02:31.010000"],["2024-07-24T02:02:32.010000"],["2024-07-24T02:02:33.010000"],["2024-07-24T02:02:34.010000"],["2024-07-24T02:02:35.010000"],["2024-07-24T02:02:36.010000"],["2024-07-24T02:02:37.010000"],["2024-07-24T02:02:38.010000"],["2024-07-24T02:02:39.010000"],["2024-07-24T02:02:40.010000"],["2024-07-24T02:02:41.010000"],["2024-07-24T02:02:42.010000"],["2024-07-24T02:02:43.010000"],["2024-07-24T02:02:44.010000"],["2024-07-24T02:02:45.010000"],["2024-07-24T02:02:46.010000"],["2024-07-24T02:02:47.010000"],["2024-07-24T02:02:48.010000"],["2024-07-24T02:02:49.010000"],["2024-07-24T02:02:50.010000"],["2024-07-24T02:02:51.010000"],["2024-07-24T02:02:52.010000"],["2024-07-24T02:02:53.010000"],["2024-07-24T02:02:54.010000"],["2024-07-24T02:02:55.010000"],["2024-07-24T02:02:56.010000"],["2024-07-24T02:02:57.010000"],["2024-07-24T02:02:58.010000"],["2024-07-24T02:02:59.010000"],["2024-07-24T02:03:00.010000"],["2024-07-24T02:03:01.010000"],["2024-07-24T02:03:02.010000"],["2024-07-24T02:03:03.010000"],["2024-07-24T02:03:04.010000"],["2024-07-24T02:03:05.010000"],["2024-07-24T02:03:06.010000"],["2024-07-24T02:03:07.010000"],["2024-07-24T02:03:08.010000"],["2024-07-24T02:03:09.010000"],["2024-07-24T02:03:10.010000"],["2024-07-24T02:03:11.010000"],["2024-07-24T02:03:12.010000"],["2024-07-24T02:03:13.010000"],["2024-07-24T02:03:14.010000"],["2024-07-24T02:03:15.010000"],["2024-07-24T02:03:16.010000"],["2024-07-24T02:03:17.010000"],["2024-07-24T02:03:18.010000"],["2024-07-24T02:03:19.010000"],["2024-07-24T02:03:20.010000"],["2024-07-24T02:03:21.010000"],["2024-07-24T02:03:22.010000"],["2024-07-24T02:03:23.010000"],["2024-07-24T02:03:24.010000"],["2024-07-24T02:03:25.010000"],["2024-07-24T02:03:26.010000"],["2024-07-24T02:03:27.010000"],["2024-07-24T02:03:28.010000"],["2024-07-24T02:03:29.010000"],["2024-07-24T02:03:30.010000"],["2024-07-24T02:03:31.010000"],["2024-07-24T02:03:32.010000"],["2024-07-24T02:03:33.010000"],["2024-07-24T02:03:34.010000"],["2024-07-24T02:03:35.010000"],["2024-07-24T02:03:36.010000"],["2024-07-24T02:03:37.010000"],["2024-07-24T02:03:38.010000"],["2024-07-24T02:03:39.010000"],["2024-07-24T02:03:40.010000"],["2024-07-24T02:03:41.010000"],["2024-07-24T02:03:42.010000"],["2024-07-24T02:03:43.010000"],["2024-07-24T02:03:44.010000"],["2024-07-24T02:03:45.010000"],["2024-07-24T02:03:46.010000"],["2024-07-24T02:03:47.010000"],["2024-07-24T02:03:48.010000"],["2024-07-24T02:03:49.010000"],["2024-07-24T02:03:50.010000"],["2024-07-24T02:03:51.010000"],["2024-07-24T02:03:52.010000"],["2024-07-24T02:03:53.010000"],["2024-07-24T02:03:54.010000"],["2024-07-24T02:03:55.010000"],["2024-07-24T02:03:56.010000"],["2024-07-24T02:03:57.010000"],["2024-07-24T02:03:58.010000"],["2024-07-24T02:03:59.010000"],["2024-07-24T02:04:00.010000"],["2024-07-24T02:04:01.010000"],["2024-07-24T02:04:02.010000"],["2024-07-24T02:04:03.010000"],["2024-07-24T02:04:04.010000"],["2024-07-24T02:04:05.010000"],["2024-07-24T02:04:06.010000"],["2024-07-24T02:04:07.010000"],["2024-07-24T02:04:08.010000"],["2024-07-24T02:04:09.010000"],["2024-07-24T02:04:10.010000"],["2024-07-24T02:04:11.010000"],["2024-07-24T02:04:12.010000"],["2024-07-24T02:04:13.010000"],["2024-07-24T02:04:14.010000"],["2024-07-24T02:04:15.010000"],["2024-07-24T02:04:16.010000"],["2024-07-24T02:04:17.010000"],["2024-07-24T02:04:18.010000"],["2024-07-24T02:04:19.010000"],["2024-07-24T02:04:20.010000"],["2024-07-24T02:04:21.010000"],["2024-07-24T02:04:22.010000"],["2024-07-24T02:04:23.010000"],["2024-07-24T02:04:24.010000"],["2024-07-24T02:04:25.010000"],["2024-07-24T02:04:26.010000"],["2024-07-24T02:04:27.010000"],["2024-07-24T02:04:28.010000"],["2024-07-24T02:04:29.010000"],["2024-07-24T02:04:30.010000"],["2024-07-24T02:04:31.010000"],["2024-07-24T02:04:32.010000"],["2024-07-24T02:04:33.010000"],["2024-07-24T02:04:34.010000"],["2024-07-24T02:04:35.010000"],["2024-07-24T02:04:36.010000"],["2024-07-24T02:04:37.010000"],["2024-07-24T02:04:38.010000"],["2024-07-24T02:04:39.010000"],["2024-07-24T02:04:40.010000"],["2024-07-24T02:04:41.010000"],["2024-07-24T02:04:42.010000"],["2024-07-24T02:04:43.010000"],["2024-07-24T02:04:44.010000"],["2024-07-24T02:04:45.010000"],["2024-07-24T02:04:46.010000"],["2024-07-24T02:04:47.010000"],["2024-07-24T02:04:48.010000"],["2024-07-24T02:04:49.010000"],["2024-07-24T02:04:50.010000"],["2024-07-24T02:04:51.010000"],["2024-07-24T02:04:52.010000"],["2024-07-24T02:04:53.010000"],["2024-07-24T02:04:54.010000"],["2024-07-24T02:04:55.010000"],["2024-07-24T02:04:56.010000"],["2024-07-24T02:04:57.010000"],["2024-07-24T02:04:58.010000"],["2024-07-24T02:04:59.010000"],["2024-07-24T02:05:00.010000"],["2024-07-24T02:05:01.010000"],["2024-07-24T02:05:02.010000"],["2024-07-24T02:05:03.010000"],["2024-07-24T02:05:04.010000"],["2024-07-24T02:05:05.010000"],["2024-07-24T02:05:06.010000"],["2024-07-24T02:05:07.010000"],["2024-07-24T02:05:08.010000"],["2024-07-24T02:05:09.010000"],["2024-07-24T02:05:10.010000"],["2024-07-24T02:05:11.010000"],["2024-07-24T02:05:12.010000"],["2024-07-24T02:05:13.010000"],["2024-07-24T02:05:14.010000"],["2024-07-24T02:05:15.010000"],["2024-07-24T02:05:16.010000"],["2024-07-24T02:05:17.010000"],["2024-07-24T02:05:18.010000"],["2024-07-24T02:05:19.010000"],["2024-07-24T02:05:20.010000"],["2024-07-24T02:05:21.010000"],["2024-07-24T02:05:22.010000"],["2024-07-24T02:05:23.010000"],["2024-07-24T02:05:24.010000"],["2024-07-24T02:05:25.010000"],["2024-07-24T02:05:26.010000"],["2024-07-24T02:05:27.010000"],["2024-07-24T02:05:28.010000"],["2024-07-24T02:05:29.010000"],["2024-07-24T02:05:30.010000"],["2024-07-24T02:05:31.010000"],["2024-07-24T02:05:32.010000"],["2024-07-24T02:05:33.010000"],["2024-07-24T02:05:34.010000"],["2024-07-24T02:05:35.010000"],["2024-07-24T02:05:36.010000"],["2024-07-24T02:05:37.010000"],["2024-07-24T02:05:38.010000"],["2024-07-24T02:05:39.010000"],["2024-07-24T02:05:40.010000"],["2024-07-24T02:05:41.010000"],["2024-07-24T02:05:42.010000"],["2024-07-24T02:05:43.010000"],["2024-07-24T02:05:44.010000"],["2024-07-24T02:05:45.010000"],["2024-07-24T02:05:46.010000"],["2024-07-24T02:05:47.010000"],["2024-07-24T02:05:48.010000"],["2024-07-24T02:05:49.010000"],["2024-07-24T02:05:50.010000"],["2024-07-24T02:05:51.010000"],["2024-07-24T02:05:52.010000"],["2024-07-24T02:05:53.010000"],["2024-07-24T02:05:54.010000"],["2024-07-24T02:05:55.010000"],["2024-07-24T02:05:56.010000"],["2024-07-24T02:05:57.010000"],["2024-07-24T02:05:58.010000"],["2024-07-24T02:05:59.010000"],["2024-07-24T02:06:00.010000"],["2024-07-24T02:06:01.010000"],["2024-07-24T02:06:02.010000"],["2024-07-24T02:06:03.010000"],["2024-07-24T02:06:04.010000"],["2024-07-24T02:06:05.010000"],["2024-07-24T02:06:06.010000"],["2024-07-24T02:06:07.010000"],["2024-07-24T02:06:08.010000"],["2024-07-24T02:06:09.010000"],["2024-07-24T02:06:10.010000"],["2024-07-24T02:06:11.010000"],["2024-07-24T02:06:12.010000"],["2024-07-24T02:06:13.010000"],["2024-07-24T02:06:14.010000"],["2024-07-24T02:06:15.010000"],["2024-07-24T02:06:16.010000"],["2024-07-24T02:06:17.010000"],["2024-07-24T02:06:18.010000"],["2024-07-24T02:06:19.010000"],["2024-07-24T02:06:20.010000"],["2024-07-24T02:06:21.010000"],["2024-07-24T02:06:22.010000"],["2024-07-24T02:06:23.010000"],["2024-07-24T02:06:24.010000"],["2024-07-24T02:06:25.010000"],["2024-07-24T02:06:26.010000"],["2024-07-24T02:06:27.010000"],["2024-07-24T02:06:28.010000"],["2024-07-24T02:06:29.010000"],["2024-07-24T02:06:30.010000"],["2024-07-24T02:06:31.010000"],["2024-07-24T02:06:32.010000"],["2024-07-24T02:06:33.010000"],["2024-07-24T02:06:34.010000"],["2024-07-24T02:06:35.010000"],["2024-07-24T02:06:36.010000"],["2024-07-24T02:06:37.010000"],["2024-07-24T02:06:38.010000"],["2024-07-24T02:06:39.010000"],["2024-07-24T02:06:40.010000"],["2024-07-24T02:06:41.010000"],["2024-07-24T02:06:42.010000"],["2024-07-24T02:06:43.010000"],["2024-07-24T02:06:44.010000"],["2024-07-24T02:06:45.010000"],["2024-07-24T02:06:46.010000"],["2024-07-24T02:06:47.010000"],["2024-07-24T02:06:48.010000"],["2024-07-24T02:06:49.010000"],["2024-07-24T02:06:50.010000"],["2024-07-24T02:06:51.010000"],["2024-07-24T02:06:52.010000"],["2024-07-24T02:06:53.010000"],["2024-07-24T02:06:54.010000"],["2024-07-24T02:06:55.010000"],["2024-07-24T02:06:56.010000"],["2024-07-24T02:06:57.010000"],["2024-07-24T02:06:58.010000"],["2024-07-24T02:06:59.010000"],["2024-07-24T02:07:00.010000"],["2024-07-24T02:07:01.010000"],["2024-07-24T02:07:02.010000"],["2024-07-24T02:07:03.010000"],["2024-07-24T02:07:04.010000"],["2024-07-24T02:07:05.010000"],["2024-07-24T02:07:06.010000"],["2024-07-24T02:07:07.010000"],["2024-07-24T02:07:08.010000"],["2024-07-24T02:07:09.010000"],["2024-07-24T02:07:10.010000"],["2024-07-24T02:07:11.010000"],["2024-07-24T02:07:12.010000"],["2024-07-24T02:07:13.010000"],["2024-07-24T02:07:14.010000"],["2024-07-24T02:07:15.010000"],["2024-07-24T02:07:16.010000"],["2024-07-24T02:07:17.010000"],["2024-07-24T02:07:18.010000"],["2024-07-24T02:07:19.010000"],["2024-07-24T02:07:20.010000"],["2024-07-24T02:07:21.010000"],["2024-07-24T02:07:22.010000"],["2024-07-24T02:07:23.010000"],["2024-07-24T02:07:24.010000"],["2024-07-24T02:07:25.010000"],["2024-07-24T02:07:26.010000"],["2024-07-24T02:07:27.010000"],["2024-07-24T02:07:28.010000"],["2024-07-24T02:07:29.010000"],["2024-07-24T02:07:30.010000"],["2024-07-24T02:07:31.010000"],["2024-07-24T02:07:32.010000"],["2024-07-24T02:07:33.010000"],["2024-07-24T02:07:34.010000"],["2024-07-24T02:07:35.010000"],["2024-07-24T02:07:36.010000"],["2024-07-24T02:07:37.010000"],["2024-07-24T02:07:38.010000"],["2024-07-24T02:07:39.010000"],["2024-07-24T02:07:40.010000"],["2024-07-24T02:07:41.010000"],["2024-07-24T02:07:42.010000"],["2024-07-24T02:07:43.010000"],["2024-07-24T02:07:44.010000"],["2024-07-24T02:07:45.010000"],["2024-07-24T02:07:46.010000"],["2024-07-24T02:07:47.010000"],["2024-07-24T02:07:48.010000"],["2024-07-24T02:07:49.010000"],["2024-07-24T02:07:50.010000"],["2024-07-24T02:07:51.010000"],["2024-07-24T02:07:52.010000"],["2024-07-24T02:07:53.010000"],["2024-07-24T02:07:54.010000"],["2024-07-24T02:07:55.010000"],["2024-07-24T02:07:56.010000"],["2024-07-24T02:07:57.010000"],["2024-07-24T02:07:58.010000"],["2024-07-24T02:07:59.010000"],["2024-07-24T02:08:00.010000"],["2024-07-24T02:08:01.010000"],["2024-07-24T02:08:02.010000"],["2024-07-24T02:08:03.010000"],["2024-07-24T02:08:04.010000"],["2024-07-24T02:08:05.010000"],["2024-07-24T02:08:06.010000"],["2024-07-24T02:08:07.010000"],["2024-07-24T02:08:08.010000"],["2024-07-24T02:08:09.010000"],["2024-07-24T02:08:10.010000"],["2024-07-24T02:08:11.010000"],["2024-07-24T02:08:12.010000"],["2024-07-24T02:08:13.010000"],["2024-07-24T02:08:14.010000"],["2024-07-24T02:08:15.010000"],["2024-07-24T02:08:16.010000"],["2024-07-24T02:08:17.010000"],["2024-07-24T02:08:18.010000"],["2024-07-24T02:08:19.010000"],["2024-07-24T02:08:20.010000"],["2024-07-24T02:08:21.010000"],["2024-07-24T02:08:22.010000"],["2024-07-24T02:08:23.010000"],["2024-07-24T02:08:24.010000"],["2024-07-24T02:08:25.010000"],["2024-07-24T02:08:26.010000"],["2024-07-24T02:08:27.010000"],["2024-07-24T02:08:28.010000"],["2024-07-24T02:08:29.010000"],["2024-07-24T02:08:30.010000"],["2024-07-24T02:08:31.010000"],["2024-07-24T02:08:32.010000"],["2024-07-24T02:08:33.010000"],["2024-07-24T02:08:34.010000"],["2024-07-24T02:08:35.010000"],["2024-07-24T02:08:36.010000"],["2024-07-24T02:08:37.010000"],["2024-07-24T02:08:38.010000"],["2024-07-24T02:08:39.010000"],["2024-07-24T02:08:40.010000"],["2024-07-24T02:08:41.010000"],["2024-07-24T02:08:42.010000"],["2024-07-24T02:08:43.010000"],["2024-07-24T02:08:44.010000"],["2024-07-24T02:08:45.010000"],["2024-07-24T02:08:46.010000"],["2024-07-24T02:08:47.010000"],["2024-07-24T02:08:48.010000"],["2024-07-24T02:08:49.010000"],["2024-07-24T02:08:50.010000"],["2024-07-24T02:08:51.010000"],["2024-07-24T02:08:52.010000"],["2024-07-24T02:08:53.010000"],["2024-07-24T02:08:54.010000"],["2024-07-24T02:08:55.010000"],["2024-07-24T02:08:56.010000"],["2024-07-24T02:08:57.010000"],["2024-07-24T02:08:58.010000"],["2024-07-24T02:08:59.010000"],["2024-07-24T02:09:00.010000"],["2024-07-24T02:09:01.010000"],["2024-07-24T02:09:02.010000"],["2024-07-24T02:09:03.010000"],["2024-07-24T02:09:04.010000"],["2024-07-24T02:09:05.010000"],["2024-07-24T02:09:06.010000"],["2024-07-24T02:09:07.010000"],["2024-07-24T02:09:08.010000"],["2024-07-24T02:09:09.010000"],["2024-07-24T02:09:10.010000"],["2024-07-24T02:09:11.010000"],["2024-07-24T02:09:12.010000"],["2024-07-24T02:09:13.010000"],["2024-07-24T02:09:14.010000"],["2024-07-24T02:09:15.010000"],["2024-07-24T02:09:16.010000"],["2024-07-24T02:09:17.010000"],["2024-07-24T02:09:18.010000"],["2024-07-24T02:09:19.010000"],["2024-07-24T02:09:20.010000"],["2024-07-24T02:09:21.010000"],["2024-07-24T02:09:22.010000"],["2024-07-24T02:09:23.010000"],["2024-07-24T02:09:24.010000"],["2024-07-24T02:09:25.010000"],["2024-07-24T02:09:26.010000"],["2024-07-24T02:09:27.010000"],["2024-07-24T02:09:28.010000"],["2024-07-24T02:09:29.010000"],["2024-07-24T02:09:30.010000"],["2024-07-24T02:09:31.010000"],["2024-07-24T02:09:32.010000"],["2024-07-24T02:09:33.010000"],["2024-07-24T02:09:34.010000"],["2024-07-24T02:09:35.010000"],["2024-07-24T02:09:36.010000"],["2024-07-24T02:09:37.010000"],["2024-07-24T02:09:38.010000"],["2024-07-24T02:09:39.010000"],["2024-07-24T02:09:40.010000"],["2024-07-24T02:09:41.010000"],["2024-07-24T02:09:42.010000"],["2024-07-24T02:09:43.010000"],["2024-07-24T02:09:44.010000"],["2024-07-24T02:09:45.010000"],["2024-07-24T02:09:46.010000"],["2024-07-24T02:09:47.010000"],["2024-07-24T02:09:48.010000"],["2024-07-24T02:09:49.010000"],["2024-07-24T02:09:50.010000"],["2024-07-24T02:09:51.010000"],["2024-07-24T02:09:52.010000"],["2024-07-24T02:09:53.010000"],["2024-07-24T02:09:54.010000"],["2024-07-24T02:09:55.010000"],["2024-07-24T02:09:56.010000"],["2024-07-24T02:09:57.010000"],["2024-07-24T02:09:58.010000"],["2024-07-24T02:09:59.010000"],["2024-07-24T02:10:00.010000"],["2024-07-24T02:10:01.010000"],["2024-07-24T02:10:02.010000"],["2024-07-24T02:10:03.010000"],["2024-07-24T02:10:04.010000"],["2024-07-24T02:10:05.010000"],["2024-07-24T02:10:06.010000"],["2024-07-24T02:10:07.010000"],["2024-07-24T02:10:08.010000"],["2024-07-24T02:10:09.010000"],["2024-07-24T02:10:10.010000"],["2024-07-24T02:10:11.010000"],["2024-07-24T02:10:12.010000"],["2024-07-24T02:10:13.010000"],["2024-07-24T02:10:14.010000"],["2024-07-24T02:10:15.010000"],["2024-07-24T02:10:16.010000"],["2024-07-24T02:10:17.010000"],["2024-07-24T02:10:18.010000"],["2024-07-24T02:10:19.010000"],["2024-07-24T02:10:20.010000"],["2024-07-24T02:10:21.010000"],["2024-07-24T02:10:22.010000"],["2024-07-24T02:10:23.010000"],["2024-07-24T02:10:24.010000"],["2024-07-24T02:10:25.010000"],["2024-07-24T02:10:26.010000"],["2024-07-24T02:10:27.010000"],["2024-07-24T02:10:28.010000"],["2024-07-24T02:10:29.010000"],["2024-07-24T02:10:30.010000"],["2024-07-24T02:10:31.010000"],["2024-07-24T02:10:32.010000"],["2024-07-24T02:10:33.010000"],["2024-07-24T02:10:34.010000"],["2024-07-24T02:10:35.010000"],["2024-07-24T02:10:36.010000"],["2024-07-24T02:10:37.010000"],["2024-07-24T02:10:38.010000"],["2024-07-24T02:10:39.010000"],["2024-07-24T02:10:40.010000"],["2024-07-24T02:10:41.010000"],["2024-07-24T02:10:42.010000"],["2024-07-24T02:10:43.010000"],["2024-07-24T02:10:44.010000"],["2024-07-24T02:10:45.010000"],["2024-07-24T02:10:46.010000"],["2024-07-24T02:10:47.010000"],["2024-07-24T02:10:48.010000"],["2024-07-24T02:10:49.010000"],["2024-07-24T02:10:50.010000"],["2024-07-24T02:10:51.010000"],["2024-07-24T02:10:52.010000"],["2024-07-24T02:10:53.010000"],["2024-07-24T02:10:54.010000"],["2024-07-24T02:10:55.010000"],["2024-07-24T02:10:56.010000"],["2024-07-24T02:10:57.010000"],["2024-07-24T02:10:58.010000"],["2024-07-24T02:10:59.010000"],["2024-07-24T02:11:00.010000"],["2024-07-24T02:11:01.010000"],["2024-07-24T02:11:02.010000"],["2024-07-24T02:11:03.010000"],["2024-07-24T02:11:04.010000"],["2024-07-24T02:11:05.010000"],["2024-07-24T02:11:06.010000"],["2024-07-24T02:11:07.010000"],["2024-07-24T02:11:08.010000"],["2024-07-24T02:11:09.010000"],["2024-07-24T02:11:10.010000"],["2024-07-24T02:11:11.010000"],["2024-07-24T02:11:12.010000"],["2024-07-24T02:11:13.010000"],["2024-07-24T02:11:14.010000"],["2024-07-24T02:11:15.010000"],["2024-07-24T02:11:16.010000"],["2024-07-24T02:11:17.010000"],["2024-07-24T02:11:18.010000"],["2024-07-24T02:11:19.010000"],["2024-07-24T02:11:20.010000"],["2024-07-24T02:11:21.010000"],["2024-07-24T02:11:22.010000"],["2024-07-24T02:11:23.010000"],["2024-07-24T02:11:24.010000"],["2024-07-24T02:11:25.010000"],["2024-07-24T02:11:26.010000"],["2024-07-24T02:11:27.010000"],["2024-07-24T02:11:28.010000"],["2024-07-24T02:11:29.010000"],["2024-07-24T02:11:30.010000"],["2024-07-24T02:11:31.010000"],["2024-07-24T02:11:32.010000"],["2024-07-24T02:11:33.010000"],["2024-07-24T02:11:34.010000"],["2024-07-24T02:11:35.010000"],["2024-07-24T02:11:36.010000"],["2024-07-24T02:11:37.010000"],["2024-07-24T02:11:38.010000"],["2024-07-24T02:11:39.010000"],["2024-07-24T02:11:40.010000"],["2024-07-24T02:11:41.010000"],["2024-07-24T02:11:42.010000"],["2024-07-24T02:11:43.010000"],["2024-07-24T02:11:44.010000"],["2024-07-24T02:11:45.010000"],["2024-07-24T02:11:46.010000"],["2024-07-24T02:11:47.010000"],["2024-07-24T02:11:48.010000"],["2024-07-24T02:11:49.010000"],["2024-07-24T02:11:50.010000"],["2024-07-24T02:11:51.010000"],["2024-07-24T02:11:52.010000"],["2024-07-24T02:11:53.010000"],["2024-07-24T02:11:54.010000"],["2024-07-24T02:11:55.010000"],["2024-07-24T02:11:56.010000"],["2024-07-24T02:11:57.010000"],["2024-07-24T02:11:58.010000"],["2024-07-24T02:11:59.010000"],["2024-07-24T02:12:00.010000"],["2024-07-24T02:12:01.010000"],["2024-07-24T02:12:02.010000"],["2024-07-24T02:12:03.010000"],["2024-07-24T02:12:04.010000"],["2024-07-24T02:12:05.010000"],["2024-07-24T02:12:06.010000"],["2024-07-24T02:12:07.010000"],["2024-07-24T02:12:08.010000"],["2024-07-24T02:12:09.010000"],["2024-07-24T02:12:10.010000"],["2024-07-24T02:12:11.010000"],["2024-07-24T02:12:12.010000"],["2024-07-24T02:12:13.010000"],["2024-07-24T02:12:14.010000"],["2024-07-24T02:12:15.010000"],["2024-07-24T02:12:16.010000"],["2024-07-24T02:12:17.010000"],["2024-07-24T02:12:18.010000"],["2024-07-24T02:12:19.010000"],["2024-07-24T02:12:20.010000"],["2024-07-24T02:12:21.010000"],["2024-07-24T02:12:22.010000"],["2024-07-24T02:12:23.010000"],["2024-07-24T02:12:24.010000"],["2024-07-24T02:12:25.010000"],["2024-07-24T02:12:26.010000"],["2024-07-24T02:12:27.010000"],["2024-07-24T02:12:28.010000"],["2024-07-24T02:12:29.010000"],["2024-07-24T02:12:30.010000"],["2024-07-24T02:12:31.010000"],["2024-07-24T02:12:32.010000"],["2024-07-24T02:12:33.010000"],["2024-07-24T02:12:34.010000"],["2024-07-24T02:12:35.010000"],["2024-07-24T02:12:36.010000"],["2024-07-24T02:12:37.010000"],["2024-07-24T02:12:38.010000"],["2024-07-24T02:12:39.010000"],["2024-07-24T02:12:40.010000"],["2024-07-24T02:12:41.010000"],["2024-07-24T02:12:42.010000"],["2024-07-24T02:12:43.010000"],["2024-07-24T02:12:44.010000"],["2024-07-24T02:12:45.010000"],["2024-07-24T02:12:46.010000"],["2024-07-24T02:12:47.010000"],["2024-07-24T02:12:48.010000"],["2024-07-24T02:12:49.010000"],["2024-07-24T02:12:50.010000"],["2024-07-24T02:12:51.010000"],["2024-07-24T02:12:52.010000"],["2024-07-24T02:12:53.010000"],["2024-07-24T02:12:54.010000"],["2024-07-24T02:12:55.010000"],["2024-07-24T02:12:56.010000"],["2024-07-24T02:12:57.010000"],["2024-07-24T02:12:58.010000"],["2024-07-24T02:12:59.010000"],["2024-07-24T02:13:00.010000"],["2024-07-24T02:13:01.010000"],["2024-07-24T02:13:02.010000"],["2024-07-24T02:13:03.010000"],["2024-07-24T02:13:04.010000"],["2024-07-24T02:13:05.010000"],["2024-07-24T02:13:06.010000"],["2024-07-24T02:13:07.010000"],["2024-07-24T02:13:08.010000"],["2024-07-24T02:13:09.010000"],["2024-07-24T02:13:10.010000"],["2024-07-24T02:13:11.010000"],["2024-07-24T02:13:12.010000"],["2024-07-24T02:13:13.010000"],["2024-07-24T02:13:14.010000"],["2024-07-24T02:13:15.010000"],["2024-07-24T02:13:16.010000"],["2024-07-24T02:13:17.010000"],["2024-07-24T02:13:18.010000"],["2024-07-24T02:13:19.010000"],["2024-07-24T02:13:20.010000"],["2024-07-24T02:13:21.010000"],["2024-07-24T02:13:22.010000"],["2024-07-24T02:13:23.010000"],["2024-07-24T02:13:24.010000"],["2024-07-24T02:13:25.010000"],["2024-07-24T02:13:26.010000"],["2024-07-24T02:13:27.010000"],["2024-07-24T02:13:28.010000"],["2024-07-24T02:13:29.010000"],["2024-07-24T02:13:30.010000"],["2024-07-24T02:13:31.010000"],["2024-07-24T02:13:32.010000"],["2024-07-24T02:13:33.010000"],["2024-07-24T02:13:34.010000"],["2024-07-24T02:13:35.010000"],["2024-07-24T02:13:36.010000"],["2024-07-24T02:13:37.010000"],["2024-07-24T02:13:38.010000"],["2024-07-24T02:13:39.010000"],["2024-07-24T02:13:40.010000"],["2024-07-24T02:13:41.010000"],["2024-07-24T02:13:42.010000"],["2024-07-24T02:13:43.010000"],["2024-07-24T02:13:44.010000"],["2024-07-24T02:13:45.010000"],["2024-07-24T02:13:46.010000"],["2024-07-24T02:13:47.010000"],["2024-07-24T02:13:48.010000"],["2024-07-24T02:13:49.010000"],["2024-07-24T02:13:50.010000"],["2024-07-24T02:13:51.010000"],["2024-07-24T02:13:52.010000"],["2024-07-24T02:13:53.010000"],["2024-07-24T02:13:54.010000"],["2024-07-24T02:13:55.010000"],["2024-07-24T02:13:56.010000"],["2024-07-24T02:13:57.010000"],["2024-07-24T02:13:58.010000"],["2024-07-24T02:13:59.010000"],["2024-07-24T02:14:00.010000"],["2024-07-24T02:14:01.010000"],["2024-07-24T02:14:02.010000"],["2024-07-24T02:14:03.010000"],["2024-07-24T02:14:04.010000"],["2024-07-24T02:14:05.010000"],["2024-07-24T02:14:06.010000"],["2024-07-24T02:14:07.010000"],["2024-07-24T02:14:08.010000"],["2024-07-24T02:14:09.010000"],["2024-07-24T02:14:10.010000"],["2024-07-24T02:14:11.010000"],["2024-07-24T02:14:12.010000"],["2024-07-24T02:14:13.010000"],["2024-07-24T02:14:14.010000"],["2024-07-24T02:14:15.010000"],["2024-07-24T02:14:16.010000"],["2024-07-24T02:14:17.010000"],["2024-07-24T02:14:18.010000"],["2024-07-24T02:14:19.010000"],["2024-07-24T02:14:20.010000"],["2024-07-24T02:14:21.010000"],["2024-07-24T02:14:22.010000"],["2024-07-24T02:14:23.010000"],["2024-07-24T02:14:24.010000"],["2024-07-24T02:14:25.010000"],["2024-07-24T02:14:26.010000"],["2024-07-24T02:14:27.010000"],["2024-07-24T02:14:28.010000"],["2024-07-24T02:14:29.010000"],["2024-07-24T02:14:30.010000"],["2024-07-24T02:14:31.010000"],["2024-07-24T02:14:32.010000"],["2024-07-24T02:14:33.010000"],["2024-07-24T02:14:34.010000"],["2024-07-24T02:14:35.010000"],["2024-07-24T02:14:36.010000"],["2024-07-24T02:14:37.010000"],["2024-07-24T02:14:38.010000"],["2024-07-24T02:14:39.010000"],["2024-07-24T02:14:40.010000"],["2024-07-24T02:14:41.010000"],["2024-07-24T02:14:42.010000"],["2024-07-24T02:14:43.010000"],["2024-07-24T02:14:44.010000"],["2024-07-24T02:14:45.010000"],["2024-07-24T02:14:46.010000"],["2024-07-24T02:14:47.010000"],["2024-07-24T02:14:48.010000"],["2024-07-24T02:14:49.010000"],["2024-07-24T02:14:50.010000"],["2024-07-24T02:14:51.010000"],["2024-07-24T02:14:52.010000"],["2024-07-24T02:14:53.010000"],["2024-07-24T02:14:54.010000"],["2024-07-24T02:14:55.010000"],["2024-07-24T02:14:56.010000"],["2024-07-24T02:14:57.010000"],["2024-07-24T02:14:58.010000"],["2024-07-24T02:14:59.010000"],["2024-07-24T02:15:00.010000"],["2024-07-24T02:15:01.010000"],["2024-07-24T02:15:02.010000"],["2024-07-24T02:15:03.010000"],["2024-07-24T02:15:04.010000"],["2024-07-24T02:15:05.010000"],["2024-07-24T02:15:06.010000"],["2024-07-24T02:15:07.010000"],["2024-07-24T02:15:08.010000"],["2024-07-24T02:15:09.010000"],["2024-07-24T02:15:10.010000"],["2024-07-24T02:15:11.010000"],["2024-07-24T02:15:12.010000"],["2024-07-24T02:15:13.010000"],["2024-07-24T02:15:14.010000"],["2024-07-24T02:15:15.010000"],["2024-07-24T02:15:16.010000"],["2024-07-24T02:15:17.010000"],["2024-07-24T02:15:18.010000"],["2024-07-24T02:15:19.010000"],["2024-07-24T02:15:20.010000"],["2024-07-24T02:15:21.010000"],["2024-07-24T02:15:22.010000"],["2024-07-24T02:15:23.010000"],["2024-07-24T02:15:24.010000"],["2024-07-24T02:15:25.010000"],["2024-07-24T02:15:26.010000"],["2024-07-24T02:15:27.010000"],["2024-07-24T02:15:28.010000"],["2024-07-24T02:15:29.010000"],["2024-07-24T02:15:30.010000"],["2024-07-24T02:15:31.010000"],["2024-07-24T02:15:32.010000"],["2024-07-24T02:15:33.010000"],["2024-07-24T02:15:34.010000"],["2024-07-24T02:15:35.010000"],["2024-07-24T02:15:36.010000"],["2024-07-24T02:15:37.010000"],["2024-07-24T02:15:38.010000"],["2024-07-24T02:15:39.010000"],["2024-07-24T02:15:40.010000"],["2024-07-24T02:15:41.010000"],["2024-07-24T02:15:42.010000"],["2024-07-24T02:15:43.010000"],["2024-07-24T02:15:44.010000"],["2024-07-24T02:15:45.010000"],["2024-07-24T02:15:46.010000"],["2024-07-24T02:15:47.010000"],["2024-07-24T02:15:48.010000"],["2024-07-24T02:15:49.010000"],["2024-07-24T02:15:50.010000"],["2024-07-24T02:15:51.010000"],["2024-07-24T02:15:52.010000"],["2024-07-24T02:15:53.010000"],["2024-07-24T02:15:54.010000"],["2024-07-24T02:15:55.010000"],["2024-07-24T02:15:56.010000"],["2024-07-24T02:15:57.010000"],["2024-07-24T02:15:58.010000"],["2024-07-24T02:15:59.010000"],["2024-07-24T02:16:00.010000"],["2024-07-24T02:16:01.010000"],["2024-07-24T02:16:02.010000"],["2024-07-24T02:16:03.010000"],["2024-07-24T02:16:04.010000"],["2024-07-24T02:16:05.010000"],["2024-07-24T02:16:06.010000"],["2024-07-24T02:16:07.010000"],["2024-07-24T02:16:08.010000"],["2024-07-24T02:16:09.010000"],["2024-07-24T02:16:10.010000"],["2024-07-24T02:16:11.010000"],["2024-07-24T02:16:12.010000"],["2024-07-24T02:16:13.010000"],["2024-07-24T02:16:14.010000"],["2024-07-24T02:16:15.010000"],["2024-07-24T02:16:16.010000"],["2024-07-24T02:16:17.010000"],["2024-07-24T02:16:18.010000"],["2024-07-24T02:16:19.010000"],["2024-07-24T02:16:20.010000"],["2024-07-24T02:16:21.010000"],["2024-07-24T02:16:22.010000"],["2024-07-24T02:16:23.010000"],["2024-07-24T02:16:24.010000"],["2024-07-24T02:16:25.010000"],["2024-07-24T02:16:26.010000"],["2024-07-24T02:16:27.010000"],["2024-07-24T02:16:28.010000"],["2024-07-24T02:16:29.010000"],["2024-07-24T02:16:30.010000"],["2024-07-24T02:16:31.010000"],["2024-07-24T02:16:32.010000"],["2024-07-24T02:16:33.010000"],["2024-07-24T02:16:34.010000"],["2024-07-24T02:16:35.010000"],["2024-07-24T02:16:36.010000"],["2024-07-24T02:16:37.010000"],["2024-07-24T02:16:38.010000"],["2024-07-24T02:16:39.010000"],["2024-07-24T02:16:40.010000"],["2024-07-24T02:16:41.010000"],["2024-07-24T02:16:42.010000"],["2024-07-24T02:16:43.010000"],["2024-07-24T02:16:44.010000"],["2024-07-24T02:16:45.010000"],["2024-07-24T02:16:46.010000"],["2024-07-24T02:16:47.010000"],["2024-07-24T02:16:48.010000"],["2024-07-24T02:16:49.010000"],["2024-07-24T02:16:50.010000"],["2024-07-24T02:16:51.010000"],["2024-07-24T02:16:52.010000"],["2024-07-24T02:16:53.010000"],["2024-07-24T02:16:54.010000"],["2024-07-24T02:16:55.010000"],["2024-07-24T02:16:56.010000"],["2024-07-24T02:16:57.010000"],["2024-07-24T02:16:58.010000"],["2024-07-24T02:16:59.010000"],["2024-07-24T02:17:00.010000"],["2024-07-24T02:17:01.010000"],["2024-07-24T02:17:02.010000"],["2024-07-24T02:17:03.010000"],["2024-07-24T02:17:04.010000"],["2024-07-24T02:17:05.010000"],["2024-07-24T02:17:06.010000"],["2024-07-24T02:17:07.010000"],["2024-07-24T02:17:08.010000"],["2024-07-24T02:17:09.010000"],["2024-07-24T02:17:10.010000"],["2024-07-24T02:17:11.010000"],["2024-07-24T02:17:12.010000"],["2024-07-24T02:17:13.010000"],["2024-07-24T02:17:14.010000"],["2024-07-24T02:17:15.010000"],["2024-07-24T02:17:16.010000"],["2024-07-24T02:17:17.010000"],["2024-07-24T02:17:18.010000"],["2024-07-24T02:17:19.010000"],["2024-07-24T02:17:20.010000"],["2024-07-24T02:17:21.010000"],["2024-07-24T02:17:22.010000"],["2024-07-24T02:17:23.010000"],["2024-07-24T02:17:24.010000"],["2024-07-24T02:17:25.010000"],["2024-07-24T02:17:26.010000"],["2024-07-24T02:17:27.010000"],["2024-07-24T02:17:28.010000"],["2024-07-24T02:17:29.010000"],["2024-07-24T02:17:30.010000"],["2024-07-24T02:17:31.010000"],["2024-07-24T02:17:32.010000"],["2024-07-24T02:17:33.010000"],["2024-07-24T02:17:34.010000"],["2024-07-24T02:17:35.010000"],["2024-07-24T02:17:36.010000"],["2024-07-24T02:17:37.010000"],["2024-07-24T02:17:38.010000"],["2024-07-24T02:17:39.010000"],["2024-07-24T02:17:40.010000"],["2024-07-24T02:17:41.010000"],["2024-07-24T02:17:42.010000"],["2024-07-24T02:17:43.010000"],["2024-07-24T02:17:44.010000"],["2024-07-24T02:17:45.010000"],["2024-07-24T02:17:46.010000"],["2024-07-24T02:17:47.010000"],["2024-07-24T02:17:48.010000"],["2024-07-24T02:17:49.010000"],["2024-07-24T02:17:50.010000"],["2024-07-24T02:17:51.010000"],["2024-07-24T02:17:52.010000"],["2024-07-24T02:17:53.010000"],["2024-07-24T02:17:54.010000"],["2024-07-24T02:17:55.010000"],["2024-07-24T02:17:56.010000"],["2024-07-24T02:17:57.010000"],["2024-07-24T02:17:58.010000"],["2024-07-24T02:17:59.010000"],["2024-07-24T02:18:00.010000"],["2024-07-24T02:18:01.010000"],["2024-07-24T02:18:02.010000"],["2024-07-24T02:18:03.010000"],["2024-07-24T02:18:04.010000"],["2024-07-24T02:18:05.010000"],["2024-07-24T02:18:06.010000"],["2024-07-24T02:18:07.010000"],["2024-07-24T02:18:08.010000"],["2024-07-24T02:18:09.010000"],["2024-07-24T02:18:10.010000"],["2024-07-24T02:18:11.010000"],["2024-07-24T02:18:12.010000"],["2024-07-24T02:18:13.010000"],["2024-07-24T02:18:14.010000"],["2024-07-24T02:18:15.010000"],["2024-07-24T02:18:16.010000"],["2024-07-24T02:18:17.010000"],["2024-07-24T02:18:18.010000"],["2024-07-24T02:18:19.010000"],["2024-07-24T02:18:20.010000"],["2024-07-24T02:18:21.010000"],["2024-07-24T02:18:22.010000"],["2024-07-24T02:18:23.010000"],["2024-07-24T02:18:24.010000"],["2024-07-24T02:18:25.010000"],["2024-07-24T02:18:26.010000"],["2024-07-24T02:18:27.010000"],["2024-07-24T02:18:28.010000"],["2024-07-24T02:18:29.010000"],["2024-07-24T02:18:30.010000"],["2024-07-24T02:18:31.010000"],["2024-07-24T02:18:32.010000"],["2024-07-24T02:18:33.010000"],["2024-07-24T02:18:34.010000"],["2024-07-24T02:18:35.010000"],["2024-07-24T02:18:36.010000"],["2024-07-24T02:18:37.010000"],["2024-07-24T02:18:38.010000"],["2024-07-24T02:18:39.010000"],["2024-07-24T02:18:40.010000"],["2024-07-24T02:18:41.010000"],["2024-07-24T02:18:42.010000"],["2024-07-24T02:18:43.010000"],["2024-07-24T02:18:44.010000"],["2024-07-24T02:18:45.010000"],["2024-07-24T02:18:46.010000"],["2024-07-24T02:18:47.010000"],["2024-07-24T02:18:48.010000"],["2024-07-24T02:18:49.010000"],["2024-07-24T02:18:50.010000"],["2024-07-24T02:18:51.010000"],["2024-07-24T02:18:52.010000"],["2024-07-24T02:18:53.010000"],["2024-07-24T02:18:54.010000"],["2024-07-24T02:18:55.010000"],["2024-07-24T02:18:56.010000"],["2024-07-24T02:18:57.010000"],["2024-07-24T02:18:58.010000"],["2024-07-24T02:18:59.010000"],["2024-07-24T02:19:00.010000"],["2024-07-24T02:19:01.010000"],["2024-07-24T02:19:02.010000"],["2024-07-24T02:19:03.010000"],["2024-07-24T02:19:04.010000"],["2024-07-24T02:19:05.010000"],["2024-07-24T02:19:06.010000"],["2024-07-24T02:19:07.010000"],["2024-07-24T02:19:08.010000"],["2024-07-24T02:19:09.010000"],["2024-07-24T02:19:10.010000"],["2024-07-24T02:19:11.010000"],["2024-07-24T02:19:12.010000"],["2024-07-24T02:19:13.010000"],["2024-07-24T02:19:14.010000"],["2024-07-24T02:19:15.010000"],["2024-07-24T02:19:16.010000"],["2024-07-24T02:19:17.010000"],["2024-07-24T02:19:18.010000"],["2024-07-24T02:19:19.010000"],["2024-07-24T02:19:20.010000"],["2024-07-24T02:19:21.010000"],["2024-07-24T02:19:22.010000"],["2024-07-24T02:19:23.010000"],["2024-07-24T02:19:24.010000"],["2024-07-24T02:19:25.010000"],["2024-07-24T02:19:26.010000"],["2024-07-24T02:19:27.010000"],["2024-07-24T02:19:28.010000"],["2024-07-24T02:19:29.010000"],["2024-07-24T02:19:30.010000"],["2024-07-24T02:19:31.010000"],["2024-07-24T02:19:32.010000"],["2024-07-24T02:19:33.010000"],["2024-07-24T02:19:34.010000"],["2024-07-24T02:19:35.010000"],["2024-07-24T02:19:36.010000"],["2024-07-24T02:19:37.010000"],["2024-07-24T02:19:38.010000"],["2024-07-24T02:19:39.010000"],["2024-07-24T02:19:40.010000"],["2024-07-24T02:19:41.010000"],["2024-07-24T02:19:42.010000"],["2024-07-24T02:19:43.010000"],["2024-07-24T02:19:44.010000"],["2024-07-24T02:19:45.010000"],["2024-07-24T02:19:46.010000"],["2024-07-24T02:19:47.010000"],["2024-07-24T02:19:48.010000"],["2024-07-24T02:19:49.010000"],["2024-07-24T02:19:50.010000"],["2024-07-24T02:19:51.010000"],["2024-07-24T02:19:52.010000"],["2024-07-24T02:19:53.010000"],["2024-07-24T02:19:54.010000"],["2024-07-24T02:19:55.010000"],["2024-07-24T02:19:56.010000"],["2024-07-24T02:19:57.010000"],["2024-07-24T02:19:58.010000"],["2024-07-24T02:19:59.010000"],["2024-07-24T02:20:00.010000"],["2024-07-24T02:20:01.010000"],["2024-07-24T02:20:02.010000"],["2024-07-24T02:20:03.010000"],["2024-07-24T02:20:04.010000"],["2024-07-24T02:20:05.010000"],["2024-07-24T02:20:06.010000"],["2024-07-24T02:20:07.010000"],["2024-07-24T02:20:08.010000"],["2024-07-24T02:20:09.010000"],["2024-07-24T02:20:10.010000"],["2024-07-24T02:20:11.010000"],["2024-07-24T02:20:12.010000"],["2024-07-24T02:20:13.010000"],["2024-07-24T02:20:14.010000"],["2024-07-24T02:20:15.010000"],["2024-07-24T02:20:16.010000"],["2024-07-24T02:20:17.010000"],["2024-07-24T02:20:18.010000"],["2024-07-24T02:20:19.010000"],["2024-07-24T02:20:20.010000"],["2024-07-24T02:20:21.010000"],["2024-07-24T02:20:22.010000"],["2024-07-24T02:20:23.010000"],["2024-07-24T02:20:24.010000"],["2024-07-24T02:20:25.010000"],["2024-07-24T02:20:26.010000"],["2024-07-24T02:20:27.010000"],["2024-07-24T02:20:28.010000"],["2024-07-24T02:20:29.010000"],["2024-07-24T02:20:30.010000"],["2024-07-24T02:20:31.010000"],["2024-07-24T02:20:32.010000"],["2024-07-24T02:20:33.010000"],["2024-07-24T02:20:34.010000"],["2024-07-24T02:20:35.010000"],["2024-07-24T02:20:36.010000"],["2024-07-24T02:20:37.010000"],["2024-07-24T02:20:38.010000"],["2024-07-24T02:20:39.010000"],["2024-07-24T02:20:40.010000"],["2024-07-24T02:20:41.010000"],["2024-07-24T02:20:42.010000"],["2024-07-24T02:20:43.010000"],["2024-07-24T02:20:44.010000"],["2024-07-24T02:20:45.010000"],["2024-07-24T02:20:46.010000"],["2024-07-24T02:20:47.010000"],["2024-07-24T02:20:48.010000"],["2024-07-24T02:20:49.010000"],["2024-07-24T02:20:50.010000"],["2024-07-24T02:20:51.010000"],["2024-07-24T02:20:52.010000"],["2024-07-24T02:20:53.010000"],["2024-07-24T02:20:54.010000"],["2024-07-24T02:20:55.010000"],["2024-07-24T02:20:56.010000"],["2024-07-24T02:20:57.010000"],["2024-07-24T02:20:58.010000"],["2024-07-24T02:20:59.010000"],["2024-07-24T02:21:00.010000"],["2024-07-24T02:21:01.010000"],["2024-07-24T02:21:02.010000"],["2024-07-24T02:21:03.010000"],["2024-07-24T02:21:04.010000"],["2024-07-24T02:21:05.010000"],["2024-07-24T02:21:06.010000"],["2024-07-24T02:21:07.010000"],["2024-07-24T02:21:08.010000"],["2024-07-24T02:21:09.010000"],["2024-07-24T02:21:10.010000"],["2024-07-24T02:21:11.010000"],["2024-07-24T02:21:12.010000"],["2024-07-24T02:21:13.010000"],["2024-07-24T02:21:14.010000"],["2024-07-24T02:21:15.010000"],["2024-07-24T02:21:16.010000"],["2024-07-24T02:21:17.010000"],["2024-07-24T02:21:18.010000"],["2024-07-24T02:21:19.010000"],["2024-07-24T02:21:20.010000"],["2024-07-24T02:21:21.010000"],["2024-07-24T02:21:22.010000"],["2024-07-24T02:21:23.010000"],["2024-07-24T02:21:24.010000"],["2024-07-24T02:21:25.010000"],["2024-07-24T02:21:26.010000"],["2024-07-24T02:21:27.010000"],["2024-07-24T02:21:28.010000"],["2024-07-24T02:21:29.010000"],["2024-07-24T02:21:30.010000"],["2024-07-24T02:21:31.010000"],["2024-07-24T02:21:32.010000"],["2024-07-24T02:21:33.010000"],["2024-07-24T02:21:34.010000"],["2024-07-24T02:21:35.010000"],["2024-07-24T02:21:36.010000"],["2024-07-24T02:21:37.010000"],["2024-07-24T02:21:38.010000"],["2024-07-24T02:21:39.010000"],["2024-07-24T02:21:40.010000"],["2024-07-24T02:21:41.010000"],["2024-07-24T02:21:42.010000"],["2024-07-24T02:21:43.010000"],["2024-07-24T02:21:44.010000"],["2024-07-24T02:21:45.010000"],["2024-07-24T02:21:46.010000"],["2024-07-24T02:21:47.010000"],["2024-07-24T02:21:48.010000"],["2024-07-24T02:21:49.010000"],["2024-07-24T02:21:50.010000"],["2024-07-24T02:21:51.010000"],["2024-07-24T02:21:52.010000"],["2024-07-24T02:21:53.010000"],["2024-07-24T02:21:54.010000"],["2024-07-24T02:21:55.010000"],["2024-07-24T02:21:56.010000"],["2024-07-24T02:21:57.010000"],["2024-07-24T02:21:58.010000"],["2024-07-24T02:21:59.010000"],["2024-07-24T02:22:00.010000"],["2024-07-24T02:22:01.010000"],["2024-07-24T02:22:02.010000"],["2024-07-24T02:22:03.010000"],["2024-07-24T02:22:04.010000"],["2024-07-24T02:22:05.010000"],["2024-07-24T02:22:06.010000"],["2024-07-24T02:22:07.010000"],["2024-07-24T02:22:08.010000"],["2024-07-24T02:22:09.010000"],["2024-07-24T02:22:10.010000"],["2024-07-24T02:22:11.010000"],["2024-07-24T02:22:12.010000"],["2024-07-24T02:22:13.010000"],["2024-07-24T02:22:14.010000"],["2024-07-24T02:22:15.010000"],["2024-07-24T02:22:16.010000"],["2024-07-24T02:22:17.010000"],["2024-07-24T02:22:18.010000"],["2024-07-24T02:22:19.010000"],["2024-07-24T02:22:20.010000"],["2024-07-24T02:22:21.010000"],["2024-07-24T02:22:22.010000"],["2024-07-24T02:22:23.010000"],["2024-07-24T02:22:24.010000"],["2024-07-24T02:22:25.010000"],["2024-07-24T02:22:26.010000"],["2024-07-24T02:22:27.010000"],["2024-07-24T02:22:28.010000"],["2024-07-24T02:22:29.010000"],["2024-07-24T02:22:30.010000"],["2024-07-24T02:22:31.010000"],["2024-07-24T02:22:32.010000"],["2024-07-24T02:22:33.010000"],["2024-07-24T02:22:34.010000"],["2024-07-24T02:22:35.010000"],["2024-07-24T02:22:36.010000"],["2024-07-24T02:22:37.010000"],["2024-07-24T02:22:38.010000"],["2024-07-24T02:22:39.010000"],["2024-07-24T02:22:40.010000"],["2024-07-24T02:22:41.010000"],["2024-07-24T02:22:42.010000"],["2024-07-24T02:22:43.010000"],["2024-07-24T02:22:44.010000"],["2024-07-24T02:22:45.010000"],["2024-07-24T02:22:46.010000"],["2024-07-24T02:22:47.010000"],["2024-07-24T02:22:48.010000"],["2024-07-24T02:22:49.010000"],["2024-07-24T02:22:50.010000"],["2024-07-24T02:22:51.010000"],["2024-07-24T02:22:52.010000"],["2024-07-24T02:22:53.010000"],["2024-07-24T02:22:54.010000"],["2024-07-24T02:22:55.010000"],["2024-07-24T02:22:56.010000"],["2024-07-24T02:22:57.010000"],["2024-07-24T02:22:58.010000"],["2024-07-24T02:22:59.010000"],["2024-07-24T02:23:00.010000"],["2024-07-24T02:23:01.010000"],["2024-07-24T02:23:02.010000"],["2024-07-24T02:23:03.010000"],["2024-07-24T02:23:04.010000"],["2024-07-24T02:23:05.010000"],["2024-07-24T02:23:06.010000"],["2024-07-24T02:23:07.010000"],["2024-07-24T02:23:08.010000"],["2024-07-24T02:23:09.010000"],["2024-07-24T02:23:10.010000"],["2024-07-24T02:23:11.010000"],["2024-07-24T02:23:12.010000"],["2024-07-24T02:23:13.010000"],["2024-07-24T02:23:14.010000"],["2024-07-24T02:23:15.010000"],["2024-07-24T02:23:16.010000"],["2024-07-24T02:23:17.010000"],["2024-07-24T02:23:18.010000"],["2024-07-24T02:23:19.010000"],["2024-07-24T02:23:20.010000"],["2024-07-24T02:23:21.010000"],["2024-07-24T02:23:22.010000"],["2024-07-24T02:23:23.010000"],["2024-07-24T02:23:24.010000"],["2024-07-24T02:23:25.010000"],["2024-07-24T02:23:26.010000"],["2024-07-24T02:23:27.010000"],["2024-07-24T02:23:28.010000"],["2024-07-24T02:23:29.010000"],["2024-07-24T02:23:30.010000"],["2024-07-24T02:23:31.010000"],["2024-07-24T02:23:32.010000"],["2024-07-24T02:23:33.010000"],["2024-07-24T02:23:34.010000"],["2024-07-24T02:23:35.010000"],["2024-07-24T02:23:36.010000"],["2024-07-24T02:23:37.010000"],["2024-07-24T02:23:38.010000"],["2024-07-24T02:23:39.010000"],["2024-07-24T02:23:40.010000"],["2024-07-24T02:23:41.010000"],["2024-07-24T02:23:42.010000"],["2024-07-24T02:23:43.010000"],["2024-07-24T02:23:44.010000"],["2024-07-24T02:23:45.010000"],["2024-07-24T02:23:46.010000"],["2024-07-24T02:23:47.010000"],["2024-07-24T02:23:48.010000"],["2024-07-24T02:23:49.010000"],["2024-07-24T02:23:50.010000"],["2024-07-24T02:23:51.010000"],["2024-07-24T02:23:52.010000"],["2024-07-24T02:23:53.010000"],["2024-07-24T02:23:54.010000"],["2024-07-24T02:23:55.010000"],["2024-07-24T02:23:56.010000"],["2024-07-24T02:23:57.010000"],["2024-07-24T02:23:58.010000"],["2024-07-24T02:23:59.010000"],["2024-07-24T02:24:00.010000"],["2024-07-24T02:24:01.010000"],["2024-07-24T02:24:02.010000"],["2024-07-24T02:24:03.010000"],["2024-07-24T02:24:04.010000"],["2024-07-24T02:24:05.010000"],["2024-07-24T02:24:06.010000"],["2024-07-24T02:24:07.010000"],["2024-07-24T02:24:08.010000"],["2024-07-24T02:24:09.010000"],["2024-07-24T02:24:10.010000"],["2024-07-24T02:24:11.010000"],["2024-07-24T02:24:12.010000"],["2024-07-24T02:24:13.010000"],["2024-07-24T02:24:14.010000"],["2024-07-24T02:24:15.010000"],["2024-07-24T02:24:16.010000"],["2024-07-24T02:24:17.010000"],["2024-07-24T02:24:18.010000"],["2024-07-24T02:24:19.010000"],["2024-07-24T02:24:20.010000"],["2024-07-24T02:24:21.010000"],["2024-07-24T02:24:22.010000"],["2024-07-24T02:24:23.010000"],["2024-07-24T02:24:24.010000"],["2024-07-24T02:24:25.010000"],["2024-07-24T02:24:26.010000"],["2024-07-24T02:24:27.010000"],["2024-07-24T02:24:28.010000"],["2024-07-24T02:24:29.010000"],["2024-07-24T02:24:30.010000"],["2024-07-24T02:24:31.010000"],["2024-07-24T02:24:32.010000"],["2024-07-24T02:24:33.010000"],["2024-07-24T02:24:34.010000"],["2024-07-24T02:24:35.010000"],["2024-07-24T02:24:36.010000"],["2024-07-24T02:24:37.010000"],["2024-07-24T02:24:38.010000"],["2024-07-24T02:24:39.010000"],["2024-07-24T02:24:40.010000"],["2024-07-24T02:24:41.010000"],["2024-07-24T02:24:42.010000"],["2024-07-24T02:24:43.010000"],["2024-07-24T02:24:44.010000"],["2024-07-24T02:24:45.010000"],["2024-07-24T02:24:46.010000"],["2024-07-24T02:24:47.010000"],["2024-07-24T02:24:48.010000"],["2024-07-24T02:24:49.010000"],["2024-07-24T02:24:50.010000"],["2024-07-24T02:24:51.010000"],["2024-07-24T02:24:52.010000"],["2024-07-24T02:24:53.010000"],["2024-07-24T02:24:54.010000"],["2024-07-24T02:24:55.010000"],["2024-07-24T02:24:56.010000"],["2024-07-24T02:24:57.010000"],["2024-07-24T02:24:58.010000"],["2024-07-24T02:24:59.010000"],["2024-07-24T02:25:00.010000"],["2024-07-24T02:25:01.010000"],["2024-07-24T02:25:02.010000"],["2024-07-24T02:25:03.010000"],["2024-07-24T02:25:04.010000"],["2024-07-24T02:25:05.010000"],["2024-07-24T02:25:06.010000"],["2024-07-24T02:25:07.010000"],["2024-07-24T02:25:08.010000"],["2024-07-24T02:25:09.010000"],["2024-07-24T02:25:10.010000"],["2024-07-24T02:25:11.010000"],["2024-07-24T02:25:12.010000"],["2024-07-24T02:25:13.010000"],["2024-07-24T02:25:14.010000"],["2024-07-24T02:25:15.010000"],["2024-07-24T02:25:16.010000"],["2024-07-24T02:25:17.010000"],["2024-07-24T02:25:18.010000"],["2024-07-24T02:25:19.010000"],["2024-07-24T02:25:20.010000"],["2024-07-24T02:25:21.010000"],["2024-07-24T02:25:22.010000"],["2024-07-24T02:25:23.010000"],["2024-07-24T02:25:24.010000"],["2024-07-24T02:25:25.010000"],["2024-07-24T02:25:26.010000"],["2024-07-24T02:25:27.010000"],["2024-07-24T02:25:28.010000"],["2024-07-24T02:25:29.010000"],["2024-07-24T02:25:30.010000"],["2024-07-24T02:25:31.010000"],["2024-07-24T02:25:32.010000"],["2024-07-24T02:25:33.010000"],["2024-07-24T02:25:34.010000"],["2024-07-24T02:25:35.010000"],["2024-07-24T02:25:36.010000"],["2024-07-24T02:25:37.010000"],["2024-07-24T02:25:38.010000"],["2024-07-24T02:25:39.010000"],["2024-07-24T02:25:40.010000"],["2024-07-24T02:25:41.010000"],["2024-07-24T02:25:42.010000"],["2024-07-24T02:25:43.010000"],["2024-07-24T02:25:44.010000"],["2024-07-24T02:25:45.010000"],["2024-07-24T02:25:46.010000"],["2024-07-24T02:25:47.010000"],["2024-07-24T02:25:48.010000"],["2024-07-24T02:25:49.010000"],["2024-07-24T02:25:50.010000"],["2024-07-24T02:25:51.010000"],["2024-07-24T02:25:52.010000"],["2024-07-24T02:25:53.010000"],["2024-07-24T02:25:54.010000"],["2024-07-24T02:25:55.010000"],["2024-07-24T02:25:56.010000"],["2024-07-24T02:25:57.010000"],["2024-07-24T02:25:58.010000"],["2024-07-24T02:25:59.010000"],["2024-07-24T02:26:00.010000"],["2024-07-24T02:26:01.010000"],["2024-07-24T02:26:02.010000"],["2024-07-24T02:26:03.010000"],["2024-07-24T02:26:04.010000"],["2024-07-24T02:26:05.010000"],["2024-07-24T02:26:06.010000"],["2024-07-24T02:26:07.010000"],["2024-07-24T02:26:08.010000"],["2024-07-24T02:26:09.010000"],["2024-07-24T02:26:10.010000"],["2024-07-24T02:26:11.010000"],["2024-07-24T02:26:12.010000"],["2024-07-24T02:26:13.010000"],["2024-07-24T02:26:14.010000"],["2024-07-24T02:26:15.010000"],["2024-07-24T02:26:16.010000"],["2024-07-24T02:26:17.010000"],["2024-07-24T02:26:18.010000"],["2024-07-24T02:26:19.010000"],["2024-07-24T02:26:20.010000"],["2024-07-24T02:26:21.010000"],["2024-07-24T02:26:22.010000"],["2024-07-24T02:26:23.010000"],["2024-07-24T02:26:24.010000"],["2024-07-24T02:26:25.010000"],["2024-07-24T02:26:26.010000"],["2024-07-24T02:26:27.010000"],["2024-07-24T02:26:28.010000"],["2024-07-24T02:26:29.010000"],["2024-07-24T02:26:30.010000"],["2024-07-24T02:26:31.010000"],["2024-07-24T02:26:32.010000"],["2024-07-24T02:26:33.010000"],["2024-07-24T02:26:34.010000"],["2024-07-24T02:26:35.010000"],["2024-07-24T02:26:36.010000"],["2024-07-24T02:26:37.010000"],["2024-07-24T02:26:38.010000"],["2024-07-24T02:26:39.010000"],["2024-07-24T02:26:40.010000"],["2024-07-24T02:26:41.010000"],["2024-07-24T02:26:42.010000"],["2024-07-24T02:26:43.010000"],["2024-07-24T02:26:44.010000"],["2024-07-24T02:26:45.010000"],["2024-07-24T02:26:46.010000"],["2024-07-24T02:26:47.010000"],["2024-07-24T02:26:48.010000"],["2024-07-24T02:26:49.010000"],["2024-07-24T02:26:50.010000"],["2024-07-24T02:26:51.010000"],["2024-07-24T02:26:52.010000"],["2024-07-24T02:26:53.010000"],["2024-07-24T02:26:54.010000"],["2024-07-24T02:26:55.010000"],["2024-07-24T02:26:56.010000"],["2024-07-24T02:26:57.010000"],["2024-07-24T02:26:58.010000"],["2024-07-24T02:26:59.010000"],["2024-07-24T02:27:00.010000"],["2024-07-24T02:27:01.010000"],["2024-07-24T02:27:02.010000"],["2024-07-24T02:27:03.010000"],["2024-07-24T02:27:04.010000"],["2024-07-24T02:27:05.010000"],["2024-07-24T02:27:06.010000"],["2024-07-24T02:27:07.010000"],["2024-07-24T02:27:08.010000"],["2024-07-24T02:27:09.010000"],["2024-07-24T02:27:10.010000"],["2024-07-24T02:27:11.010000"],["2024-07-24T02:27:12.010000"],["2024-07-24T02:27:13.010000"],["2024-07-24T02:27:14.010000"],["2024-07-24T02:27:15.010000"],["2024-07-24T02:27:16.010000"],["2024-07-24T02:27:17.010000"],["2024-07-24T02:27:18.010000"],["2024-07-24T02:27:19.010000"],["2024-07-24T02:27:20.010000"],["2024-07-24T02:27:21.010000"],["2024-07-24T02:27:22.010000"],["2024-07-24T02:27:23.010000"],["2024-07-24T02:27:24.010000"],["2024-07-24T02:27:25.010000"],["2024-07-24T02:27:26.010000"],["2024-07-24T02:27:27.010000"],["2024-07-24T02:27:28.010000"],["2024-07-24T02:27:29.010000"],["2024-07-24T02:27:30.010000"],["2024-07-24T02:27:31.010000"],["2024-07-24T02:27:32.010000"],["2024-07-24T02:27:33.010000"],["2024-07-24T02:27:34.010000"],["2024-07-24T02:27:35.010000"],["2024-07-24T02:27:36.010000"],["2024-07-24T02:27:37.010000"],["2024-07-24T02:27:38.010000"],["2024-07-24T02:27:39.010000"],["2024-07-24T02:27:40.010000"],["2024-07-24T02:27:41.010000"],["2024-07-24T02:27:42.010000"],["2024-07-24T02:27:43.010000"],["2024-07-24T02:27:44.010000"],["2024-07-24T02:27:45.010000"],["2024-07-24T02:27:46.010000"],["2024-07-24T02:27:47.010000"],["2024-07-24T02:27:48.010000"],["2024-07-24T02:27:49.010000"],["2024-07-24T02:27:50.010000"],["2024-07-24T02:27:51.010000"],["2024-07-24T02:27:52.010000"],["2024-07-24T02:27:53.010000"],["2024-07-24T02:27:54.010000"],["2024-07-24T02:27:55.010000"],["2024-07-24T02:27:56.010000"],["2024-07-24T02:27:57.010000"],["2024-07-24T02:27:58.010000"],["2024-07-24T02:27:59.010000"],["2024-07-24T02:28:00.010000"],["2024-07-24T02:28:01.010000"],["2024-07-24T02:28:02.010000"],["2024-07-24T02:28:03.010000"],["2024-07-24T02:28:04.010000"],["2024-07-24T02:28:05.010000"],["2024-07-24T02:28:06.010000"],["2024-07-24T02:28:07.010000"],["2024-07-24T02:28:08.010000"],["2024-07-24T02:28:09.010000"],["2024-07-24T02:28:10.010000"],["2024-07-24T02:28:11.010000"],["2024-07-24T02:28:12.010000"],["2024-07-24T02:28:13.010000"],["2024-07-24T02:28:14.010000"],["2024-07-24T02:28:15.010000"],["2024-07-24T02:28:16.010000"],["2024-07-24T02:28:17.010000"],["2024-07-24T02:28:18.010000"],["2024-07-24T02:28:19.010000"],["2024-07-24T02:28:20.010000"],["2024-07-24T02:28:21.010000"],["2024-07-24T02:28:22.010000"],["2024-07-24T02:28:23.010000"],["2024-07-24T02:28:24.010000"],["2024-07-24T02:28:25.010000"],["2024-07-24T02:28:26.010000"],["2024-07-24T02:28:27.010000"],["2024-07-24T02:28:28.010000"],["2024-07-24T02:28:29.010000"],["2024-07-24T02:28:30.010000"],["2024-07-24T02:28:31.010000"],["2024-07-24T02:28:32.010000"],["2024-07-24T02:28:33.010000"],["2024-07-24T02:28:34.010000"],["2024-07-24T02:28:35.010000"],["2024-07-24T02:28:36.010000"],["2024-07-24T02:28:37.010000"],["2024-07-24T02:28:38.010000"],["2024-07-24T02:28:39.010000"],["2024-07-24T02:28:40.010000"],["2024-07-24T02:28:41.010000"],["2024-07-24T02:28:42.010000"],["2024-07-24T02:28:43.010000"],["2024-07-24T02:28:44.010000"],["2024-07-24T02:28:45.010000"],["2024-07-24T02:28:46.010000"],["2024-07-24T02:28:47.010000"],["2024-07-24T02:28:48.010000"],["2024-07-24T02:28:49.010000"],["2024-07-24T02:28:50.010000"],["2024-07-24T02:28:51.010000"],["2024-07-24T02:28:52.010000"],["2024-07-24T02:28:53.010000"],["2024-07-24T02:28:54.010000"],["2024-07-24T02:28:55.010000"],["2024-07-24T02:28:56.010000"],["2024-07-24T02:28:57.010000"],["2024-07-24T02:28:58.010000"],["2024-07-24T02:28:59.010000"],["2024-07-24T02:29:00.010000"],["2024-07-24T02:29:01.010000"],["2024-07-24T02:29:02.010000"],["2024-07-24T02:29:03.010000"],["2024-07-24T02:29:04.010000"],["2024-07-24T02:29:05.010000"],["2024-07-24T02:29:06.010000"],["2024-07-24T02:29:07.010000"],["2024-07-24T02:29:08.010000"],["2024-07-24T02:29:09.010000"],["2024-07-24T02:29:10.010000"],["2024-07-24T02:29:11.010000"],["2024-07-24T02:29:12.010000"],["2024-07-24T02:29:13.010000"],["2024-07-24T02:29:14.010000"],["2024-07-24T02:29:15.010000"],["2024-07-24T02:29:16.010000"],["2024-07-24T02:29:17.010000"],["2024-07-24T02:29:18.010000"],["2024-07-24T02:29:19.010000"],["2024-07-24T02:29:20.010000"],["2024-07-24T02:29:21.010000"],["2024-07-24T02:29:22.010000"],["2024-07-24T02:29:23.010000"],["2024-07-24T02:29:24.010000"],["2024-07-24T02:29:25.010000"],["2024-07-24T02:29:26.010000"],["2024-07-24T02:29:27.010000"],["2024-07-24T02:29:28.010000"],["2024-07-24T02:29:29.010000"],["2024-07-24T02:29:30.010000"],["2024-07-24T02:29:31.010000"],["2024-07-24T02:29:32.010000"],["2024-07-24T02:29:33.010000"],["2024-07-24T02:29:34.010000"],["2024-07-24T02:29:35.010000"],["2024-07-24T02:29:36.010000"],["2024-07-24T02:29:37.010000"],["2024-07-24T02:29:38.010000"],["2024-07-24T02:29:39.010000"],["2024-07-24T02:29:40.010000"],["2024-07-24T02:29:41.010000"],["2024-07-24T02:29:42.010000"],["2024-07-24T02:29:43.010000"],["2024-07-24T02:29:44.010000"],["2024-07-24T02:29:45.010000"],["2024-07-24T02:29:46.010000"],["2024-07-24T02:29:47.010000"],["2024-07-24T02:29:48.010000"],["2024-07-24T02:29:49.010000"],["2024-07-24T02:29:50.010000"],["2024-07-24T02:29:51.010000"],["2024-07-24T02:29:52.010000"],["2024-07-24T02:29:53.010000"],["2024-07-24T02:29:54.010000"],["2024-07-24T02:29:55.010000"],["2024-07-24T02:29:56.010000"],["2024-07-24T02:29:57.010000"],["2024-07-24T02:29:58.010000"],["2024-07-24T02:29:59.010000"],["2024-07-24T02:30:00.010000"],["2024-07-24T02:30:01.010000"],["2024-07-24T02:30:02.010000"],["2024-07-24T02:30:03.010000"],["2024-07-24T02:30:04.010000"],["2024-07-24T02:30:05.010000"],["2024-07-24T02:30:06.010000"],["2024-07-24T02:30:07.010000"],["2024-07-24T02:30:08.010000"],["2024-07-24T02:30:09.010000"],["2024-07-24T02:30:10.010000"],["2024-07-24T02:30:11.010000"],["2024-07-24T02:30:12.010000"],["2024-07-24T02:30:13.010000"],["2024-07-24T02:30:14.010000"],["2024-07-24T02:30:15.010000"],["2024-07-24T02:30:16.010000"],["2024-07-24T02:30:17.010000"],["2024-07-24T02:30:18.010000"],["2024-07-24T02:30:19.010000"],["2024-07-24T02:30:20.010000"],["2024-07-24T02:30:21.010000"],["2024-07-24T02:30:22.010000"],["2024-07-24T02:30:23.010000"],["2024-07-24T02:30:24.010000"],["2024-07-24T02:30:25.010000"],["2024-07-24T02:30:26.010000"],["2024-07-24T02:30:27.010000"],["2024-07-24T02:30:28.010000"],["2024-07-24T02:30:29.010000"],["2024-07-24T02:30:30.010000"],["2024-07-24T02:30:31.010000"],["2024-07-24T02:30:32.010000"],["2024-07-24T02:30:33.010000"],["2024-07-24T02:30:34.010000"],["2024-07-24T02:30:35.010000"],["2024-07-24T02:30:36.010000"],["2024-07-24T02:30:37.010000"],["2024-07-24T02:30:38.010000"],["2024-07-24T02:30:39.010000"],["2024-07-24T02:30:40.010000"],["2024-07-24T02:30:41.010000"],["2024-07-24T02:30:42.010000"],["2024-07-24T02:30:43.010000"],["2024-07-24T02:30:44.010000"],["2024-07-24T02:30:45.010000"],["2024-07-24T02:30:46.010000"],["2024-07-24T02:30:47.010000"],["2024-07-24T02:30:48.010000"],["2024-07-24T02:30:49.010000"],["2024-07-24T02:30:50.010000"],["2024-07-24T02:30:51.010000"],["2024-07-24T02:30:52.010000"],["2024-07-24T02:30:53.010000"],["2024-07-24T02:30:54.010000"],["2024-07-24T02:30:55.010000"],["2024-07-24T02:30:56.010000"],["2024-07-24T02:30:57.010000"],["2024-07-24T02:30:58.010000"],["2024-07-24T02:30:59.010000"],["2024-07-24T02:31:00.010000"],["2024-07-24T02:31:01.010000"],["2024-07-24T02:31:02.010000"],["2024-07-24T02:31:03.010000"],["2024-07-24T02:31:04.010000"],["2024-07-24T02:31:05.010000"],["2024-07-24T02:31:06.010000"],["2024-07-24T02:31:07.010000"],["2024-07-24T02:31:08.010000"],["2024-07-24T02:31:09.010000"],["2024-07-24T02:31:10.010000"],["2024-07-24T02:31:11.010000"],["2024-07-24T02:31:12.010000"],["2024-07-24T02:31:13.010000"],["2024-07-24T02:31:14.010000"],["2024-07-24T02:31:15.010000"],["2024-07-24T02:31:16.010000"],["2024-07-24T02:31:17.010000"],["2024-07-24T02:31:18.010000"],["2024-07-24T02:31:19.010000"],["2024-07-24T02:31:20.010000"],["2024-07-24T02:31:21.010000"],["2024-07-24T02:31:22.010000"],["2024-07-24T02:31:23.010000"],["2024-07-24T02:31:24.010000"],["2024-07-24T02:31:25.010000"],["2024-07-24T02:31:26.010000"],["2024-07-24T02:31:27.010000"],["2024-07-24T02:31:28.010000"],["2024-07-24T02:31:29.010000"],["2024-07-24T02:31:30.010000"],["2024-07-24T02:31:31.010000"],["2024-07-24T02:31:32.010000"],["2024-07-24T02:31:33.010000"],["2024-07-24T02:31:34.010000"],["2024-07-24T02:31:35.010000"],["2024-07-24T02:31:36.010000"],["2024-07-24T02:31:37.010000"],["2024-07-24T02:31:38.010000"],["2024-07-24T02:31:39.010000"],["2024-07-24T02:31:40.010000"],["2024-07-24T02:31:41.010000"],["2024-07-24T02:31:42.010000"],["2024-07-24T02:31:43.010000"],["2024-07-24T02:31:44.010000"],["2024-07-24T02:31:45.010000"],["2024-07-24T02:31:46.010000"],["2024-07-24T02:31:47.010000"],["2024-07-24T02:31:48.010000"],["2024-07-24T02:31:49.010000"],["2024-07-24T02:31:50.010000"],["2024-07-24T02:31:51.010000"],["2024-07-24T02:31:52.010000"],["2024-07-24T02:31:53.010000"],["2024-07-24T02:31:54.010000"],["2024-07-24T02:31:55.010000"],["2024-07-24T02:31:56.010000"],["2024-07-24T02:31:57.010000"],["2024-07-24T02:31:58.010000"],["2024-07-24T02:31:59.010000"],["2024-07-24T02:32:00.010000"],["2024-07-24T02:32:01.010000"],["2024-07-24T02:32:02.010000"],["2024-07-24T02:32:03.010000"],["2024-07-24T02:32:04.010000"],["2024-07-24T02:32:05.010000"],["2024-07-24T02:32:06.010000"],["2024-07-24T02:32:07.010000"],["2024-07-24T02:32:08.010000"],["2024-07-24T02:32:09.010000"],["2024-07-24T02:32:10.010000"],["2024-07-24T02:32:11.010000"],["2024-07-24T02:32:12.010000"],["2024-07-24T02:32:13.010000"],["2024-07-24T02:32:14.010000"],["2024-07-24T02:32:15.010000"],["2024-07-24T02:32:16.010000"],["2024-07-24T02:32:17.010000"],["2024-07-24T02:32:18.010000"],["2024-07-24T02:32:19.010000"],["2024-07-24T02:32:20.010000"],["2024-07-24T02:32:21.010000"],["2024-07-24T02:32:22.010000"],["2024-07-24T02:32:23.010000"],["2024-07-24T02:32:24.010000"],["2024-07-24T02:32:25.010000"],["2024-07-24T02:32:26.010000"],["2024-07-24T02:32:27.010000"],["2024-07-24T02:32:28.010000"],["2024-07-24T02:32:29.010000"],["2024-07-24T02:32:30.010000"],["2024-07-24T02:32:31.010000"],["2024-07-24T02:32:32.010000"],["2024-07-24T02:32:33.010000"],["2024-07-24T02:32:34.010000"],["2024-07-24T02:32:35.010000"],["2024-07-24T02:32:36.010000"],["2024-07-24T02:32:37.010000"],["2024-07-24T02:32:38.010000"],["2024-07-24T02:32:39.010000"],["2024-07-24T02:32:40.010000"],["2024-07-24T02:32:41.010000"],["2024-07-24T02:32:42.010000"],["2024-07-24T02:32:43.010000"],["2024-07-24T02:32:44.010000"],["2024-07-24T02:32:45.010000"],["2024-07-24T02:32:46.010000"],["2024-07-24T02:32:47.010000"],["2024-07-24T02:32:48.010000"],["2024-07-24T02:32:49.010000"],["2024-07-24T02:32:50.010000"],["2024-07-24T02:32:51.010000"],["2024-07-24T02:32:52.010000"],["2024-07-24T02:32:53.010000"],["2024-07-24T02:32:54.010000"],["2024-07-24T02:32:55.010000"],["2024-07-24T02:32:56.010000"],["2024-07-24T02:32:57.010000"],["2024-07-24T02:32:58.010000"],["2024-07-24T02:32:59.010000"],["2024-07-24T02:33:00.010000"],["2024-07-24T02:33:01.010000"],["2024-07-24T02:33:02.010000"],["2024-07-24T02:33:03.010000"],["2024-07-24T02:33:04.010000"],["2024-07-24T02:33:05.010000"],["2024-07-24T02:33:06.010000"],["2024-07-24T02:33:07.010000"],["2024-07-24T02:33:08.010000"],["2024-07-24T02:33:09.010000"],["2024-07-24T02:33:10.010000"],["2024-07-24T02:33:11.010000"],["2024-07-24T02:33:12.010000"],["2024-07-24T02:33:13.010000"],["2024-07-24T02:33:14.010000"],["2024-07-24T02:33:15.010000"],["2024-07-24T02:33:16.010000"],["2024-07-24T02:33:17.010000"],["2024-07-24T02:33:18.010000"],["2024-07-24T02:33:19.010000"],["2024-07-24T02:33:20.010000"],["2024-07-24T02:33:21.010000"],["2024-07-24T02:33:22.010000"],["2024-07-24T02:33:23.010000"],["2024-07-24T02:33:24.010000"],["2024-07-24T02:33:25.010000"],["2024-07-24T02:33:26.010000"],["2024-07-24T02:33:27.010000"],["2024-07-24T02:33:28.010000"],["2024-07-24T02:33:29.010000"],["2024-07-24T02:33:30.010000"],["2024-07-24T02:33:31.010000"],["2024-07-24T02:33:32.010000"],["2024-07-24T02:33:33.010000"],["2024-07-24T02:33:34.010000"],["2024-07-24T02:33:35.010000"],["2024-07-24T02:33:36.010000"],["2024-07-24T02:33:37.010000"],["2024-07-24T02:33:38.010000"],["2024-07-24T02:33:39.010000"],["2024-07-24T02:33:40.010000"],["2024-07-24T02:33:41.010000"],["2024-07-24T02:33:42.010000"],["2024-07-24T02:33:43.010000"],["2024-07-24T02:33:44.010000"],["2024-07-24T02:33:45.010000"],["2024-07-24T02:33:46.010000"],["2024-07-24T02:33:47.010000"],["2024-07-24T02:33:48.010000"],["2024-07-24T02:33:49.010000"],["2024-07-24T02:33:50.010000"],["2024-07-24T02:33:51.010000"],["2024-07-24T02:33:52.010000"],["2024-07-24T02:33:53.010000"],["2024-07-24T02:33:54.010000"],["2024-07-24T02:33:55.010000"],["2024-07-24T02:33:56.010000"],["2024-07-24T02:33:57.010000"],["2024-07-24T02:33:58.010000"],["2024-07-24T02:33:59.010000"],["2024-07-24T02:34:00.010000"],["2024-07-24T02:34:01.010000"],["2024-07-24T02:34:02.010000"],["2024-07-24T02:34:03.010000"],["2024-07-24T02:34:04.010000"],["2024-07-24T02:34:05.010000"],["2024-07-24T02:34:06.010000"],["2024-07-24T02:34:07.010000"],["2024-07-24T02:34:08.010000"],["2024-07-24T02:34:09.010000"],["2024-07-24T02:34:10.010000"],["2024-07-24T02:34:11.010000"],["2024-07-24T02:34:12.010000"],["2024-07-24T02:34:13.010000"],["2024-07-24T02:34:14.010000"],["2024-07-24T02:34:15.010000"],["2024-07-24T02:34:16.010000"],["2024-07-24T02:34:17.010000"],["2024-07-24T02:34:18.010000"],["2024-07-24T02:34:19.010000"],["2024-07-24T02:34:20.010000"],["2024-07-24T02:34:21.010000"],["2024-07-24T02:34:22.010000"],["2024-07-24T02:34:23.010000"],["2024-07-24T02:34:24.010000"],["2024-07-24T02:34:25.010000"],["2024-07-24T02:34:26.010000"],["2024-07-24T02:34:27.010000"],["2024-07-24T02:34:28.010000"],["2024-07-24T02:34:29.010000"],["2024-07-24T02:34:30.010000"],["2024-07-24T02:34:31.010000"],["2024-07-24T02:34:32.010000"],["2024-07-24T02:34:33.010000"],["2024-07-24T02:34:34.010000"],["2024-07-24T02:34:35.010000"],["2024-07-24T02:34:36.010000"],["2024-07-24T02:34:37.010000"],["2024-07-24T02:34:38.010000"],["2024-07-24T02:34:39.010000"],["2024-07-24T02:34:40.010000"],["2024-07-24T02:34:41.010000"],["2024-07-24T02:34:42.010000"],["2024-07-24T02:34:43.010000"],["2024-07-24T02:34:44.010000"],["2024-07-24T02:34:45.010000"],["2024-07-24T02:34:46.010000"],["2024-07-24T02:34:47.010000"],["2024-07-24T02:34:48.010000"],["2024-07-24T02:34:49.010000"],["2024-07-24T02:34:50.010000"],["2024-07-24T02:34:51.010000"],["2024-07-24T02:34:52.010000"],["2024-07-24T02:34:53.010000"],["2024-07-24T02:34:54.010000"],["2024-07-24T02:34:55.010000"],["2024-07-24T02:34:56.010000"],["2024-07-24T02:34:57.010000"],["2024-07-24T02:34:58.010000"],["2024-07-24T02:34:59.010000"],["2024-07-24T02:35:00.010000"],["2024-07-24T02:35:01.010000"],["2024-07-24T02:35:02.010000"],["2024-07-24T02:35:03.010000"],["2024-07-24T02:35:04.010000"],["2024-07-24T02:35:05.010000"],["2024-07-24T02:35:06.010000"],["2024-07-24T02:35:07.010000"],["2024-07-24T02:35:08.010000"],["2024-07-24T02:35:09.010000"],["2024-07-24T02:35:10.010000"],["2024-07-24T02:35:11.010000"],["2024-07-24T02:35:12.010000"],["2024-07-24T02:35:13.010000"],["2024-07-24T02:35:14.010000"],["2024-07-24T02:35:15.010000"],["2024-07-24T02:35:16.010000"],["2024-07-24T02:35:17.010000"],["2024-07-24T02:35:18.010000"],["2024-07-24T02:35:19.010000"],["2024-07-24T02:35:20.010000"],["2024-07-24T02:35:21.010000"],["2024-07-24T02:35:22.010000"],["2024-07-24T02:35:23.010000"],["2024-07-24T02:35:24.010000"],["2024-07-24T02:35:25.010000"],["2024-07-24T02:35:26.010000"],["2024-07-24T02:35:27.010000"],["2024-07-24T02:35:28.010000"],["2024-07-24T02:35:29.010000"],["2024-07-24T02:35:30.010000"],["2024-07-24T02:35:31.010000"],["2024-07-24T02:35:32.010000"],["2024-07-24T02:35:33.010000"],["2024-07-24T02:35:34.010000"],["2024-07-24T02:35:35.010000"],["2024-07-24T02:35:36.010000"],["2024-07-24T02:35:37.010000"],["2024-07-24T02:35:38.010000"],["2024-07-24T02:35:39.010000"],["2024-07-24T02:35:40.010000"],["2024-07-24T02:35:41.010000"],["2024-07-24T02:35:42.010000"],["2024-07-24T02:35:43.010000"],["2024-07-24T02:35:44.010000"],["2024-07-24T02:35:45.010000"],["2024-07-24T02:35:46.010000"],["2024-07-24T02:35:47.010000"],["2024-07-24T02:35:48.010000"],["2024-07-24T02:35:49.010000"],["2024-07-24T02:35:50.010000"],["2024-07-24T02:35:51.010000"],["2024-07-24T02:35:52.010000"],["2024-07-24T02:35:53.010000"],["2024-07-24T02:35:54.010000"],["2024-07-24T02:35:55.010000"],["2024-07-24T02:35:56.010000"],["2024-07-24T02:35:57.010000"],["2024-07-24T02:35:58.010000"],["2024-07-24T02:35:59.010000"],["2024-07-24T02:36:00.010000"],["2024-07-24T02:36:01.010000"],["2024-07-24T02:36:02.010000"],["2024-07-24T02:36:03.010000"],["2024-07-24T02:36:04.010000"],["2024-07-24T02:36:05.010000"],["2024-07-24T02:36:06.010000"],["2024-07-24T02:36:07.010000"],["2024-07-24T02:36:08.010000"],["2024-07-24T02:36:09.010000"],["2024-07-24T02:36:10.010000"],["2024-07-24T02:36:11.010000"],["2024-07-24T02:36:12.010000"],["2024-07-24T02:36:13.010000"],["2024-07-24T02:36:14.010000"],["2024-07-24T02:36:15.010000"],["2024-07-24T02:36:16.010000"],["2024-07-24T02:36:17.010000"],["2024-07-24T02:36:18.010000"],["2024-07-24T02:36:19.010000"],["2024-07-24T02:36:20.010000"],["2024-07-24T02:36:21.010000"],["2024-07-24T02:36:22.010000"],["2024-07-24T02:36:23.010000"],["2024-07-24T02:36:24.010000"],["2024-07-24T02:36:25.010000"],["2024-07-24T02:36:26.010000"],["2024-07-24T02:36:27.010000"],["2024-07-24T02:36:28.010000"],["2024-07-24T02:36:29.010000"],["2024-07-24T02:36:30.010000"],["2024-07-24T02:36:31.010000"],["2024-07-24T02:36:32.010000"],["2024-07-24T02:36:33.010000"],["2024-07-24T02:36:34.010000"],["2024-07-24T02:36:35.010000"],["2024-07-24T02:36:36.010000"],["2024-07-24T02:36:37.010000"],["2024-07-24T02:36:38.010000"],["2024-07-24T02:36:39.010000"],["2024-07-24T02:36:40.010000"],["2024-07-24T02:36:41.010000"],["2024-07-24T02:36:42.010000"],["2024-07-24T02:36:43.010000"],["2024-07-24T02:36:44.010000"],["2024-07-24T02:36:45.010000"],["2024-07-24T02:36:46.010000"],["2024-07-24T02:36:47.010000"],["2024-07-24T02:36:48.010000"],["2024-07-24T02:36:49.010000"],["2024-07-24T02:36:50.010000"],["2024-07-24T02:36:51.010000"],["2024-07-24T02:36:52.010000"],["2024-07-24T02:36:53.010000"],["2024-07-24T02:36:54.010000"],["2024-07-24T02:36:55.010000"],["2024-07-24T02:36:56.010000"],["2024-07-24T02:36:57.010000"],["2024-07-24T02:36:58.010000"],["2024-07-24T02:36:59.010000"],["2024-07-24T02:37:00.010000"],["2024-07-24T02:37:01.010000"],["2024-07-24T02:37:02.010000"],["2024-07-24T02:37:03.010000"],["2024-07-24T02:37:04.010000"],["2024-07-24T02:37:05.010000"],["2024-07-24T02:37:06.010000"],["2024-07-24T02:37:07.010000"],["2024-07-24T02:37:08.010000"],["2024-07-24T02:37:09.010000"],["2024-07-24T02:37:10.010000"],["2024-07-24T02:37:11.010000"],["2024-07-24T02:37:12.010000"],["2024-07-24T02:37:13.010000"],["2024-07-24T02:37:14.010000"],["2024-07-24T02:37:15.010000"],["2024-07-24T02:37:16.010000"],["2024-07-24T02:37:17.010000"],["2024-07-24T02:37:18.010000"],["2024-07-24T02:37:19.010000"],["2024-07-24T02:37:20.010000"],["2024-07-24T02:37:21.010000"],["2024-07-24T02:37:22.010000"],["2024-07-24T02:37:23.010000"],["2024-07-24T02:37:24.010000"],["2024-07-24T02:37:25.010000"],["2024-07-24T02:37:26.010000"],["2024-07-24T02:37:27.010000"],["2024-07-24T02:37:28.010000"],["2024-07-24T02:37:29.010000"],["2024-07-24T02:37:30.010000"],["2024-07-24T02:37:31.010000"],["2024-07-24T02:37:32.010000"],["2024-07-24T02:37:33.010000"],["2024-07-24T02:37:34.010000"],["2024-07-24T02:37:35.010000"],["2024-07-24T02:37:36.010000"],["2024-07-24T02:37:37.010000"],["2024-07-24T02:37:38.010000"],["2024-07-24T02:37:39.010000"],["2024-07-24T02:37:40.010000"],["2024-07-24T02:37:41.010000"],["2024-07-24T02:37:42.010000"],["2024-07-24T02:37:43.010000"],["2024-07-24T02:37:44.010000"],["2024-07-24T02:37:45.010000"],["2024-07-24T02:37:46.010000"],["2024-07-24T02:37:47.010000"],["2024-07-24T02:37:48.010000"],["2024-07-24T02:37:49.010000"],["2024-07-24T02:37:50.010000"],["2024-07-24T02:37:51.010000"],["2024-07-24T02:37:52.010000"],["2024-07-24T02:37:53.010000"],["2024-07-24T02:37:54.010000"],["2024-07-24T02:37:55.010000"],["2024-07-24T02:37:56.010000"],["2024-07-24T02:37:57.010000"],["2024-07-24T02:37:58.010000"],["2024-07-24T02:37:59.010000"],["2024-07-24T02:38:00.010000"],["2024-07-24T02:38:01.010000"],["2024-07-24T02:38:02.010000"],["2024-07-24T02:38:03.010000"],["2024-07-24T02:38:04.010000"],["2024-07-24T02:38:05.010000"],["2024-07-24T02:38:06.010000"],["2024-07-24T02:38:07.010000"],["2024-07-24T02:38:08.010000"],["2024-07-24T02:38:09.010000"],["2024-07-24T02:38:10.010000"],["2024-07-24T02:38:11.010000"],["2024-07-24T02:38:12.010000"],["2024-07-24T02:38:13.010000"],["2024-07-24T02:38:14.010000"],["2024-07-24T02:38:15.010000"],["2024-07-24T02:38:16.010000"],["2024-07-24T02:38:17.010000"],["2024-07-24T02:38:18.010000"],["2024-07-24T02:38:19.010000"],["2024-07-24T02:38:20.010000"],["2024-07-24T02:38:21.010000"],["2024-07-24T02:38:22.010000"],["2024-07-24T02:38:23.010000"],["2024-07-24T02:38:24.010000"],["2024-07-24T02:38:25.010000"],["2024-07-24T02:38:26.010000"],["2024-07-24T02:38:27.010000"],["2024-07-24T02:38:28.010000"],["2024-07-24T02:38:29.010000"],["2024-07-24T02:38:30.010000"],["2024-07-24T02:38:31.010000"],["2024-07-24T02:38:32.010000"],["2024-07-24T02:38:33.010000"],["2024-07-24T02:38:34.010000"],["2024-07-24T02:38:35.010000"],["2024-07-24T02:38:36.010000"],["2024-07-24T02:38:37.010000"],["2024-07-24T02:38:38.010000"],["2024-07-24T02:38:39.010000"],["2024-07-24T02:38:40.010000"],["2024-07-24T02:38:41.010000"],["2024-07-24T02:38:42.010000"],["2024-07-24T02:38:43.010000"],["2024-07-24T02:38:44.010000"],["2024-07-24T02:38:45.010000"],["2024-07-24T02:38:46.010000"],["2024-07-24T02:38:47.010000"],["2024-07-24T02:38:48.010000"],["2024-07-24T02:38:49.010000"],["2024-07-24T02:38:50.010000"],["2024-07-24T02:38:51.010000"],["2024-07-24T02:38:52.010000"],["2024-07-24T02:38:53.010000"],["2024-07-24T02:38:54.010000"],["2024-07-24T02:38:55.010000"],["2024-07-24T02:38:56.010000"],["2024-07-24T02:38:57.010000"],["2024-07-24T02:38:58.010000"],["2024-07-24T02:38:59.010000"],["2024-07-24T02:39:00.010000"],["2024-07-24T02:39:01.010000"],["2024-07-24T02:39:02.010000"],["2024-07-24T02:39:03.010000"],["2024-07-24T02:39:04.010000"],["2024-07-24T02:39:05.010000"],["2024-07-24T02:39:06.010000"],["2024-07-24T02:39:07.010000"],["2024-07-24T02:39:08.010000"],["2024-07-24T02:39:09.010000"],["2024-07-24T02:39:10.010000"],["2024-07-24T02:39:11.010000"],["2024-07-24T02:39:12.010000"],["2024-07-24T02:39:13.010000"],["2024-07-24T02:39:14.010000"],["2024-07-24T02:39:15.010000"],["2024-07-24T02:39:16.010000"],["2024-07-24T02:39:17.010000"],["2024-07-24T02:39:18.010000"],["2024-07-24T02:39:19.010000"],["2024-07-24T02:39:20.010000"],["2024-07-24T02:39:21.010000"],["2024-07-24T02:39:22.010000"],["2024-07-24T02:39:23.010000"],["2024-07-24T02:39:24.010000"],["2024-07-24T02:39:25.010000"],["2024-07-24T02:39:26.010000"],["2024-07-24T02:39:27.010000"],["2024-07-24T02:39:28.010000"],["2024-07-24T02:39:29.010000"],["2024-07-24T02:39:30.010000"],["2024-07-24T02:39:31.010000"],["2024-07-24T02:39:32.010000"],["2024-07-24T02:39:33.010000"],["2024-07-24T02:39:34.010000"],["2024-07-24T02:39:35.010000"],["2024-07-24T02:39:36.010000"],["2024-07-24T02:39:37.010000"],["2024-07-24T02:39:38.010000"],["2024-07-24T02:39:39.010000"],["2024-07-24T02:39:40.010000"],["2024-07-24T02:39:41.010000"],["2024-07-24T02:39:42.010000"],["2024-07-24T02:39:43.010000"],["2024-07-24T02:39:44.010000"],["2024-07-24T02:39:45.010000"],["2024-07-24T02:39:46.010000"],["2024-07-24T02:39:47.010000"],["2024-07-24T02:39:48.010000"],["2024-07-24T02:39:49.010000"],["2024-07-24T02:39:50.010000"],["2024-07-24T02:39:51.010000"],["2024-07-24T02:39:52.010000"],["2024-07-24T02:39:53.010000"],["2024-07-24T02:39:54.010000"],["2024-07-24T02:39:55.010000"],["2024-07-24T02:39:56.010000"],["2024-07-24T02:39:57.010000"],["2024-07-24T02:39:58.010000"],["2024-07-24T02:39:59.010000"],["2024-07-24T02:40:00.010000"],["2024-07-24T02:40:01.010000"],["2024-07-24T02:40:02.010000"],["2024-07-24T02:40:03.010000"],["2024-07-24T02:40:04.010000"],["2024-07-24T02:40:05.010000"],["2024-07-24T02:40:06.010000"],["2024-07-24T02:40:07.010000"],["2024-07-24T02:40:08.010000"],["2024-07-24T02:40:09.010000"],["2024-07-24T02:40:10.010000"],["2024-07-24T02:40:11.010000"],["2024-07-24T02:40:12.010000"],["2024-07-24T02:40:13.010000"],["2024-07-24T02:40:14.010000"],["2024-07-24T02:40:15.010000"],["2024-07-24T02:40:16.010000"],["2024-07-24T02:40:17.010000"],["2024-07-24T02:40:18.010000"],["2024-07-24T02:40:19.010000"],["2024-07-24T02:40:20.010000"],["2024-07-24T02:40:21.010000"],["2024-07-24T02:40:22.010000"],["2024-07-24T02:40:23.010000"],["2024-07-24T02:40:24.010000"],["2024-07-24T02:40:25.010000"],["2024-07-24T02:40:26.010000"],["2024-07-24T02:40:27.010000"],["2024-07-24T02:40:28.010000"],["2024-07-24T02:40:29.010000"],["2024-07-24T02:40:30.010000"],["2024-07-24T02:40:31.010000"],["2024-07-24T02:40:32.010000"],["2024-07-24T02:40:33.010000"],["2024-07-24T02:40:34.010000"],["2024-07-24T02:40:35.010000"],["2024-07-24T02:40:36.010000"],["2024-07-24T02:40:37.010000"],["2024-07-24T02:40:38.010000"],["2024-07-24T02:40:39.010000"],["2024-07-24T02:40:40.010000"],["2024-07-24T02:40:41.010000"],["2024-07-24T02:40:42.010000"],["2024-07-24T02:40:43.010000"],["2024-07-24T02:40:44.010000"],["2024-07-24T02:40:45.010000"],["2024-07-24T02:40:46.010000"],["2024-07-24T02:40:47.010000"],["2024-07-24T02:40:48.010000"],["2024-07-24T02:40:49.010000"],["2024-07-24T02:40:50.010000"],["2024-07-24T02:40:51.010000"],["2024-07-24T02:40:52.010000"],["2024-07-24T02:40:53.010000"],["2024-07-24T02:40:54.010000"],["2024-07-24T02:40:55.010000"],["2024-07-24T02:40:56.010000"],["2024-07-24T02:40:57.010000"],["2024-07-24T02:40:58.010000"],["2024-07-24T02:40:59.010000"],["2024-07-24T02:41:00.010000"],["2024-07-24T02:41:01.010000"],["2024-07-24T02:41:02.010000"],["2024-07-24T02:41:03.010000"],["2024-07-24T02:41:04.010000"],["2024-07-24T02:41:05.010000"],["2024-07-24T02:41:06.010000"],["2024-07-24T02:41:07.010000"],["2024-07-24T02:41:08.010000"],["2024-07-24T02:41:09.010000"],["2024-07-24T02:41:10.010000"],["2024-07-24T02:41:11.010000"],["2024-07-24T02:41:12.010000"],["2024-07-24T02:41:13.010000"],["2024-07-24T02:41:14.010000"],["2024-07-24T02:41:15.010000"],["2024-07-24T02:41:16.010000"],["2024-07-24T02:41:17.010000"],["2024-07-24T02:41:18.010000"],["2024-07-24T02:41:19.010000"],["2024-07-24T02:41:20.010000"],["2024-07-24T02:41:21.010000"],["2024-07-24T02:41:22.010000"],["2024-07-24T02:41:23.010000"],["2024-07-24T02:41:24.010000"],["2024-07-24T02:41:25.010000"],["2024-07-24T02:41:26.010000"],["2024-07-24T02:41:27.010000"],["2024-07-24T02:41:28.010000"],["2024-07-24T02:41:29.010000"],["2024-07-24T02:41:30.010000"],["2024-07-24T02:41:31.010000"],["2024-07-24T02:41:32.010000"],["2024-07-24T02:41:33.010000"],["2024-07-24T02:41:34.010000"],["2024-07-24T02:41:35.010000"],["2024-07-24T02:41:36.010000"],["2024-07-24T02:41:37.010000"],["2024-07-24T02:41:38.010000"],["2024-07-24T02:41:39.010000"],["2024-07-24T02:41:40.010000"],["2024-07-24T02:41:41.010000"],["2024-07-24T02:41:42.010000"],["2024-07-24T02:41:43.010000"],["2024-07-24T02:41:44.010000"],["2024-07-24T02:41:45.010000"],["2024-07-24T02:41:46.010000"],["2024-07-24T02:41:47.010000"],["2024-07-24T02:41:48.010000"],["2024-07-24T02:41:49.010000"],["2024-07-24T02:41:50.010000"],["2024-07-24T02:41:51.010000"],["2024-07-24T02:41:52.010000"],["2024-07-24T02:41:53.010000"],["2024-07-24T02:41:54.010000"],["2024-07-24T02:41:55.010000"],["2024-07-24T02:41:56.010000"],["2024-07-24T02:41:57.010000"],["2024-07-24T02:41:58.010000"],["2024-07-24T02:41:59.010000"],["2024-07-24T02:42:00.010000"],["2024-07-24T02:42:01.010000"],["2024-07-24T02:42:02.010000"],["2024-07-24T02:42:03.010000"],["2024-07-24T02:42:04.010000"],["2024-07-24T02:42:05.010000"],["2024-07-24T02:42:06.010000"],["2024-07-24T02:42:07.010000"],["2024-07-24T02:42:08.010000"],["2024-07-24T02:42:09.010000"],["2024-07-24T02:42:10.010000"],["2024-07-24T02:42:11.010000"],["2024-07-24T02:42:12.010000"],["2024-07-24T02:42:13.010000"],["2024-07-24T02:42:14.010000"],["2024-07-24T02:42:15.010000"],["2024-07-24T02:42:16.010000"],["2024-07-24T02:42:17.010000"],["2024-07-24T02:42:18.010000"],["2024-07-24T02:42:19.010000"],["2024-07-24T02:42:20.010000"],["2024-07-24T02:42:21.010000"],["2024-07-24T02:42:22.010000"],["2024-07-24T02:42:23.010000"],["2024-07-24T02:42:24.010000"],["2024-07-24T02:42:25.010000"],["2024-07-24T02:42:26.010000"],["2024-07-24T02:42:27.010000"],["2024-07-24T02:42:28.010000"],["2024-07-24T02:42:29.010000"],["2024-07-24T02:42:30.010000"],["2024-07-24T02:42:31.010000"],["2024-07-24T02:42:32.010000"],["2024-07-24T02:42:33.010000"],["2024-07-24T02:42:34.010000"],["2024-07-24T02:42:35.010000"],["2024-07-24T02:42:36.010000"],["2024-07-24T02:42:37.010000"],["2024-07-24T02:42:38.010000"],["2024-07-24T02:42:39.010000"],["2024-07-24T02:42:40.010000"],["2024-07-24T02:42:41.010000"],["2024-07-24T02:42:42.010000"],["2024-07-24T02:42:43.010000"],["2024-07-24T02:42:44.010000"],["2024-07-24T02:42:45.010000"],["2024-07-24T02:42:46.010000"],["2024-07-24T02:42:47.010000"],["2024-07-24T02:42:48.010000"],["2024-07-24T02:42:49.010000"],["2024-07-24T02:42:50.010000"],["2024-07-24T02:42:51.010000"],["2024-07-24T02:42:52.010000"],["2024-07-24T02:42:53.010000"],["2024-07-24T02:42:54.010000"],["2024-07-24T02:42:55.010000"],["2024-07-24T02:42:56.010000"],["2024-07-24T02:42:57.010000"],["2024-07-24T02:42:58.010000"],["2024-07-24T02:42:59.010000"],["2024-07-24T02:43:00.010000"],["2024-07-24T02:43:01.010000"],["2024-07-24T02:43:02.010000"],["2024-07-24T02:43:03.010000"],["2024-07-24T02:43:04.010000"],["2024-07-24T02:43:05.010000"],["2024-07-24T02:43:06.010000"],["2024-07-24T02:43:07.010000"],["2024-07-24T02:43:08.010000"],["2024-07-24T02:43:09.010000"],["2024-07-24T02:43:10.010000"],["2024-07-24T02:43:11.010000"],["2024-07-24T02:43:12.010000"],["2024-07-24T02:43:13.010000"],["2024-07-24T02:43:14.010000"],["2024-07-24T02:43:15.010000"],["2024-07-24T02:43:16.010000"],["2024-07-24T02:43:17.010000"],["2024-07-24T02:43:18.010000"],["2024-07-24T02:43:19.010000"],["2024-07-24T02:43:20.010000"],["2024-07-24T02:43:21.010000"],["2024-07-24T02:43:22.010000"],["2024-07-24T02:43:23.010000"],["2024-07-24T02:43:24.010000"],["2024-07-24T02:43:25.010000"],["2024-07-24T02:43:26.010000"],["2024-07-24T02:43:27.010000"],["2024-07-24T02:43:28.010000"],["2024-07-24T02:43:29.010000"],["2024-07-24T02:43:30.010000"],["2024-07-24T02:43:31.010000"],["2024-07-24T02:43:32.010000"],["2024-07-24T02:43:33.010000"],["2024-07-24T02:43:34.010000"],["2024-07-24T02:43:35.010000"],["2024-07-24T02:43:36.010000"],["2024-07-24T02:43:37.010000"],["2024-07-24T02:43:38.010000"],["2024-07-24T02:43:39.010000"],["2024-07-24T02:43:40.010000"],["2024-07-24T02:43:41.010000"],["2024-07-24T02:43:42.010000"],["2024-07-24T02:43:43.010000"],["2024-07-24T02:43:44.010000"],["2024-07-24T02:43:45.010000"],["2024-07-24T02:43:46.010000"],["2024-07-24T02:43:47.010000"],["2024-07-24T02:43:48.010000"],["2024-07-24T02:43:49.010000"],["2024-07-24T02:43:50.010000"],["2024-07-24T02:43:51.010000"],["2024-07-24T02:43:52.010000"],["2024-07-24T02:43:53.010000"],["2024-07-24T02:43:54.010000"],["2024-07-24T02:43:55.010000"],["2024-07-24T02:43:56.010000"],["2024-07-24T02:43:57.010000"],["2024-07-24T02:43:58.010000"],["2024-07-24T02:43:59.010000"],["2024-07-24T02:44:00.010000"],["2024-07-24T02:44:01.010000"],["2024-07-24T02:44:02.010000"],["2024-07-24T02:44:03.010000"],["2024-07-24T02:44:04.010000"],["2024-07-24T02:44:05.010000"],["2024-07-24T02:44:06.010000"],["2024-07-24T02:44:07.010000"],["2024-07-24T02:44:08.010000"],["2024-07-24T02:44:09.010000"],["2024-07-24T02:44:10.010000"],["2024-07-24T02:44:11.010000"],["2024-07-24T02:44:12.010000"],["2024-07-24T02:44:13.010000"],["2024-07-24T02:44:14.010000"],["2024-07-24T02:44:15.010000"],["2024-07-24T02:44:16.010000"],["2024-07-24T02:44:17.010000"],["2024-07-24T02:44:18.010000"],["2024-07-24T02:44:19.010000"],["2024-07-24T02:44:20.010000"],["2024-07-24T02:44:21.010000"],["2024-07-24T02:44:22.010000"],["2024-07-24T02:44:23.010000"],["2024-07-24T02:44:24.010000"],["2024-07-24T02:44:25.010000"],["2024-07-24T02:44:26.010000"],["2024-07-24T02:44:27.010000"],["2024-07-24T02:44:28.010000"],["2024-07-24T02:44:29.010000"],["2024-07-24T02:44:30.010000"],["2024-07-24T02:44:31.010000"],["2024-07-24T02:44:32.010000"],["2024-07-24T02:44:33.010000"],["2024-07-24T02:44:34.010000"],["2024-07-24T02:44:35.010000"],["2024-07-24T02:44:36.010000"],["2024-07-24T02:44:37.010000"],["2024-07-24T02:44:38.010000"],["2024-07-24T02:44:39.010000"],["2024-07-24T02:44:40.010000"],["2024-07-24T02:44:41.010000"],["2024-07-24T02:44:42.010000"],["2024-07-24T02:44:43.010000"],["2024-07-24T02:44:44.010000"],["2024-07-24T02:44:45.010000"],["2024-07-24T02:44:46.010000"],["2024-07-24T02:44:47.010000"],["2024-07-24T02:44:48.010000"],["2024-07-24T02:44:49.010000"],["2024-07-24T02:44:50.010000"],["2024-07-24T02:44:51.010000"],["2024-07-24T02:44:52.010000"],["2024-07-24T02:44:53.010000"],["2024-07-24T02:44:54.010000"],["2024-07-24T02:44:55.010000"],["2024-07-24T02:44:56.010000"],["2024-07-24T02:44:57.010000"],["2024-07-24T02:44:58.010000"],["2024-07-24T02:44:59.010000"],["2024-07-24T02:45:00.010000"],["2024-07-24T02:45:01.010000"],["2024-07-24T02:45:02.010000"],["2024-07-24T02:45:03.010000"],["2024-07-24T02:45:04.010000"],["2024-07-24T02:45:05.010000"],["2024-07-24T02:45:06.010000"],["2024-07-24T02:45:07.010000"],["2024-07-24T02:45:08.010000"],["2024-07-24T02:45:09.010000"],["2024-07-24T02:45:10.010000"],["2024-07-24T02:45:11.010000"],["2024-07-24T02:45:12.010000"],["2024-07-24T02:45:13.010000"],["2024-07-24T02:45:14.010000"],["2024-07-24T02:45:15.010000"],["2024-07-24T02:45:16.010000"],["2024-07-24T02:45:17.010000"],["2024-07-24T02:45:18.010000"],["2024-07-24T02:45:19.010000"],["2024-07-24T02:45:20.010000"],["2024-07-24T02:45:21.010000"],["2024-07-24T02:45:22.010000"],["2024-07-24T02:45:23.010000"],["2024-07-24T02:45:24.010000"],["2024-07-24T02:45:25.010000"],["2024-07-24T02:45:26.010000"],["2024-07-24T02:45:27.010000"],["2024-07-24T02:45:28.010000"],["2024-07-24T02:45:29.010000"],["2024-07-24T02:45:30.010000"],["2024-07-24T02:45:31.010000"],["2024-07-24T02:45:32.010000"],["2024-07-24T02:45:33.010000"],["2024-07-24T02:45:34.010000"],["2024-07-24T02:45:35.010000"],["2024-07-24T02:45:36.010000"],["2024-07-24T02:45:37.010000"],["2024-07-24T02:45:38.010000"],["2024-07-24T02:45:39.010000"],["2024-07-24T02:45:40.010000"],["2024-07-24T02:45:41.010000"],["2024-07-24T02:45:42.010000"],["2024-07-24T02:45:43.010000"],["2024-07-24T02:45:44.010000"],["2024-07-24T02:45:45.010000"],["2024-07-24T02:45:46.010000"],["2024-07-24T02:45:47.010000"],["2024-07-24T02:45:48.010000"],["2024-07-24T02:45:49.010000"],["2024-07-24T02:45:50.010000"],["2024-07-24T02:45:51.010000"],["2024-07-24T02:45:52.010000"],["2024-07-24T02:45:53.010000"],["2024-07-24T02:45:54.010000"],["2024-07-24T02:45:55.010000"],["2024-07-24T02:45:56.010000"],["2024-07-24T02:45:57.010000"],["2024-07-24T02:45:58.010000"],["2024-07-24T02:45:59.010000"],["2024-07-24T02:46:00.010000"],["2024-07-24T02:46:01.010000"],["2024-07-24T02:46:02.010000"],["2024-07-24T02:46:03.010000"],["2024-07-24T02:46:04.010000"],["2024-07-24T02:46:05.010000"],["2024-07-24T02:46:06.010000"],["2024-07-24T02:46:07.010000"],["2024-07-24T02:46:08.010000"],["2024-07-24T02:46:09.010000"],["2024-07-24T02:46:10.010000"],["2024-07-24T02:46:11.010000"],["2024-07-24T02:46:12.010000"],["2024-07-24T02:46:13.010000"],["2024-07-24T02:46:14.010000"],["2024-07-24T02:46:15.010000"],["2024-07-24T02:46:16.010000"],["2024-07-24T02:46:17.010000"],["2024-07-24T02:46:18.010000"],["2024-07-24T02:46:19.010000"],["2024-07-24T02:46:20.010000"],["2024-07-24T02:46:21.010000"],["2024-07-24T02:46:22.010000"],["2024-07-24T02:46:23.010000"],["2024-07-24T02:46:24.010000"],["2024-07-24T02:46:25.010000"],["2024-07-24T02:46:26.010000"],["2024-07-24T02:46:27.010000"],["2024-07-24T02:46:28.010000"],["2024-07-24T02:46:29.010000"],["2024-07-24T02:46:30.010000"],["2024-07-24T02:46:31.010000"],["2024-07-24T02:46:32.010000"],["2024-07-24T02:46:33.010000"],["2024-07-24T02:46:34.010000"],["2024-07-24T02:46:35.010000"],["2024-07-24T02:46:36.010000"],["2024-07-24T02:46:37.010000"],["2024-07-24T02:46:38.010000"],["2024-07-24T02:46:39.010000"],["2024-07-24T02:46:40.010000"],["2024-07-24T02:46:41.010000"],["2024-07-24T02:46:42.010000"],["2024-07-24T02:46:43.010000"],["2024-07-24T02:46:44.010000"],["2024-07-24T02:46:45.010000"],["2024-07-24T02:46:46.010000"],["2024-07-24T02:46:47.010000"],["2024-07-24T02:46:48.010000"],["2024-07-24T02:46:49.010000"],["2024-07-24T02:46:50.010000"],["2024-07-24T02:46:51.010000"],["2024-07-24T02:46:52.010000"],["2024-07-24T02:46:53.010000"],["2024-07-24T02:46:54.010000"],["2024-07-24T02:46:55.010000"],["2024-07-24T02:46:56.010000"],["2024-07-24T02:46:57.010000"],["2024-07-24T02:46:58.010000"],["2024-07-24T02:46:59.010000"],["2024-07-24T02:47:00.010000"],["2024-07-24T02:47:01.010000"],["2024-07-24T02:47:02.010000"],["2024-07-24T02:47:03.010000"],["2024-07-24T02:47:04.010000"],["2024-07-24T02:47:05.010000"],["2024-07-24T02:47:06.010000"],["2024-07-24T02:47:07.010000"],["2024-07-24T02:47:08.010000"],["2024-07-24T02:47:09.010000"],["2024-07-24T02:47:10.010000"],["2024-07-24T02:47:11.010000"],["2024-07-24T02:47:12.010000"],["2024-07-24T02:47:13.010000"],["2024-07-24T02:47:14.010000"],["2024-07-24T02:47:15.010000"],["2024-07-24T02:47:16.010000"],["2024-07-24T02:47:17.010000"],["2024-07-24T02:47:18.010000"],["2024-07-24T02:47:19.010000"],["2024-07-24T02:47:20.010000"],["2024-07-24T02:47:21.010000"],["2024-07-24T02:47:22.010000"],["2024-07-24T02:47:23.010000"],["2024-07-24T02:47:24.010000"],["2024-07-24T02:47:25.010000"],["2024-07-24T02:47:26.010000"],["2024-07-24T02:47:27.010000"],["2024-07-24T02:47:28.010000"],["2024-07-24T02:47:29.010000"],["2024-07-24T02:47:30.010000"],["2024-07-24T02:47:31.010000"],["2024-07-24T02:47:32.010000"],["2024-07-24T02:47:33.010000"],["2024-07-24T02:47:34.010000"],["2024-07-24T02:47:35.010000"],["2024-07-24T02:47:36.010000"],["2024-07-24T02:47:37.010000"],["2024-07-24T02:47:38.010000"],["2024-07-24T02:47:39.010000"],["2024-07-24T02:47:40.010000"],["2024-07-24T02:47:41.010000"],["2024-07-24T02:47:42.010000"],["2024-07-24T02:47:43.010000"],["2024-07-24T02:47:44.010000"],["2024-07-24T02:47:45.010000"],["2024-07-24T02:47:46.010000"],["2024-07-24T02:47:47.010000"],["2024-07-24T02:47:48.010000"],["2024-07-24T02:47:49.010000"],["2024-07-24T02:47:50.010000"],["2024-07-24T02:47:51.010000"],["2024-07-24T02:47:52.010000"],["2024-07-24T02:47:53.010000"],["2024-07-24T02:47:54.010000"],["2024-07-24T02:47:55.010000"],["2024-07-24T02:47:56.010000"],["2024-07-24T02:47:57.010000"],["2024-07-24T02:47:58.010000"],["2024-07-24T02:47:59.010000"],["2024-07-24T02:48:00.010000"],["2024-07-24T02:48:01.010000"],["2024-07-24T02:48:02.010000"],["2024-07-24T02:48:03.010000"],["2024-07-24T02:48:04.010000"],["2024-07-24T02:48:05.010000"],["2024-07-24T02:48:06.010000"],["2024-07-24T02:48:07.010000"],["2024-07-24T02:48:08.010000"],["2024-07-24T02:48:09.010000"],["2024-07-24T02:48:10.010000"],["2024-07-24T02:48:11.010000"],["2024-07-24T02:48:12.010000"],["2024-07-24T02:48:13.010000"],["2024-07-24T02:48:14.010000"],["2024-07-24T02:48:15.010000"],["2024-07-24T02:48:16.010000"],["2024-07-24T02:48:17.010000"],["2024-07-24T02:48:18.010000"],["2024-07-24T02:48:19.010000"],["2024-07-24T02:48:20.010000"],["2024-07-24T02:48:21.010000"],["2024-07-24T02:48:22.010000"],["2024-07-24T02:48:23.010000"],["2024-07-24T02:48:24.010000"],["2024-07-24T02:48:25.010000"],["2024-07-24T02:48:26.010000"],["2024-07-24T02:48:27.010000"],["2024-07-24T02:48:28.010000"],["2024-07-24T02:48:29.010000"],["2024-07-24T02:48:30.010000"],["2024-07-24T02:48:31.010000"],["2024-07-24T02:48:32.010000"],["2024-07-24T02:48:33.010000"],["2024-07-24T02:48:34.010000"],["2024-07-24T02:48:35.010000"],["2024-07-24T02:48:36.010000"],["2024-07-24T02:48:37.010000"],["2024-07-24T02:48:38.010000"],["2024-07-24T02:48:39.010000"],["2024-07-24T02:48:40.010000"],["2024-07-24T02:48:41.010000"],["2024-07-24T02:48:42.010000"],["2024-07-24T02:48:43.010000"],["2024-07-24T02:48:44.010000"],["2024-07-24T02:48:45.010000"],["2024-07-24T02:48:46.010000"],["2024-07-24T02:48:47.010000"],["2024-07-24T02:48:48.010000"],["2024-07-24T02:48:49.010000"],["2024-07-24T02:48:50.010000"],["2024-07-24T02:48:51.010000"],["2024-07-24T02:48:52.010000"],["2024-07-24T02:48:53.010000"],["2024-07-24T02:48:54.010000"],["2024-07-24T02:48:55.010000"],["2024-07-24T02:48:56.010000"],["2024-07-24T02:48:57.010000"],["2024-07-24T02:48:58.010000"],["2024-07-24T02:48:59.010000"],["2024-07-24T02:49:00.010000"],["2024-07-24T02:49:01.010000"],["2024-07-24T02:49:02.010000"],["2024-07-24T02:49:03.010000"],["2024-07-24T02:49:04.010000"],["2024-07-24T02:49:05.010000"],["2024-07-24T02:49:06.010000"],["2024-07-24T02:49:07.010000"],["2024-07-24T02:49:08.010000"],["2024-07-24T02:49:09.010000"],["2024-07-24T02:49:10.010000"],["2024-07-24T02:49:11.010000"],["2024-07-24T02:49:12.010000"],["2024-07-24T02:49:13.010000"],["2024-07-24T02:49:14.010000"],["2024-07-24T02:49:15.010000"],["2024-07-24T02:49:16.010000"],["2024-07-24T02:49:17.010000"],["2024-07-24T02:49:18.010000"],["2024-07-24T02:49:19.010000"],["2024-07-24T02:49:20.010000"],["2024-07-24T02:49:21.010000"],["2024-07-24T02:49:22.010000"],["2024-07-24T02:49:23.010000"],["2024-07-24T02:49:24.010000"],["2024-07-24T02:49:25.010000"],["2024-07-24T02:49:26.010000"],["2024-07-24T02:49:27.010000"],["2024-07-24T02:49:28.010000"],["2024-07-24T02:49:29.010000"],["2024-07-24T02:49:30.010000"],["2024-07-24T02:49:31.010000"],["2024-07-24T02:49:32.010000"],["2024-07-24T02:49:33.010000"],["2024-07-24T02:49:34.010000"],["2024-07-24T02:49:35.010000"],["2024-07-24T02:49:36.010000"],["2024-07-24T02:49:37.010000"],["2024-07-24T02:49:38.010000"],["2024-07-24T02:49:39.010000"],["2024-07-24T02:49:40.010000"],["2024-07-24T02:49:41.010000"],["2024-07-24T02:49:42.010000"],["2024-07-24T02:49:43.010000"],["2024-07-24T02:49:44.010000"],["2024-07-24T02:49:45.010000"],["2024-07-24T02:49:46.010000"],["2024-07-24T02:49:47.010000"],["2024-07-24T02:49:48.010000"],["2024-07-24T02:49:49.010000"],["2024-07-24T02:49:50.010000"],["2024-07-24T02:49:51.010000"],["2024-07-24T02:49:52.010000"],["2024-07-24T02:49:53.010000"],["2024-07-24T02:49:54.010000"],["2024-07-24T02:49:55.010000"],["2024-07-24T02:49:56.010000"],["2024-07-24T02:49:57.010000"],["2024-07-24T02:49:58.010000"],["2024-07-24T02:49:59.010000"],["2024-07-24T02:50:00.010000"],["2024-07-24T02:50:01.010000"],["2024-07-24T02:50:02.010000"],["2024-07-24T02:50:03.010000"],["2024-07-24T02:50:04.010000"],["2024-07-24T02:50:05.010000"],["2024-07-24T02:50:06.010000"],["2024-07-24T02:50:07.010000"],["2024-07-24T02:50:08.010000"],["2024-07-24T02:50:09.010000"],["2024-07-24T02:50:10.010000"],["2024-07-24T02:50:11.010000"],["2024-07-24T02:50:12.010000"],["2024-07-24T02:50:13.010000"],["2024-07-24T02:50:14.010000"],["2024-07-24T02:50:15.010000"],["2024-07-24T02:50:16.010000"],["2024-07-24T02:50:17.010000"],["2024-07-24T02:50:18.010000"],["2024-07-24T02:50:19.010000"],["2024-07-24T02:50:20.010000"],["2024-07-24T02:50:21.010000"],["2024-07-24T02:50:22.010000"],["2024-07-24T02:50:23.010000"],["2024-07-24T02:50:24.010000"],["2024-07-24T02:50:25.010000"],["2024-07-24T02:50:26.010000"],["2024-07-24T02:50:27.010000"],["2024-07-24T02:50:28.010000"],["2024-07-24T02:50:29.010000"],["2024-07-24T02:50:30.010000"],["2024-07-24T02:50:31.010000"],["2024-07-24T02:50:32.010000"],["2024-07-24T02:50:33.010000"],["2024-07-24T02:50:34.010000"],["2024-07-24T02:50:35.010000"],["2024-07-24T02:50:36.010000"],["2024-07-24T02:50:37.010000"],["2024-07-24T02:50:38.010000"],["2024-07-24T02:50:39.010000"],["2024-07-24T02:50:40.010000"],["2024-07-24T02:50:41.010000"],["2024-07-24T02:50:42.010000"],["2024-07-24T02:50:43.010000"],["2024-07-24T02:50:44.010000"],["2024-07-24T02:50:45.010000"],["2024-07-24T02:50:46.010000"],["2024-07-24T02:50:47.010000"],["2024-07-24T02:50:48.010000"],["2024-07-24T02:50:49.010000"],["2024-07-24T02:50:50.010000"],["2024-07-24T02:50:51.010000"],["2024-07-24T02:50:52.010000"],["2024-07-24T02:50:53.010000"],["2024-07-24T02:50:54.010000"],["2024-07-24T02:50:55.010000"],["2024-07-24T02:50:56.010000"],["2024-07-24T02:50:57.010000"],["2024-07-24T02:50:58.010000"],["2024-07-24T02:50:59.010000"],["2024-07-24T02:51:00.010000"],["2024-07-24T02:51:01.010000"],["2024-07-24T02:51:02.010000"],["2024-07-24T02:51:03.010000"],["2024-07-24T02:51:04.010000"],["2024-07-24T02:51:05.010000"],["2024-07-24T02:51:06.010000"],["2024-07-24T02:51:07.010000"],["2024-07-24T02:51:08.010000"],["2024-07-24T02:51:09.010000"],["2024-07-24T02:51:10.010000"],["2024-07-24T02:51:11.010000"],["2024-07-24T02:51:12.010000"],["2024-07-24T02:51:13.010000"],["2024-07-24T02:51:14.010000"],["2024-07-24T02:51:15.010000"],["2024-07-24T02:51:16.010000"],["2024-07-24T02:51:17.010000"],["2024-07-24T02:51:18.010000"],["2024-07-24T02:51:19.010000"],["2024-07-24T02:51:20.010000"],["2024-07-24T02:51:21.010000"],["2024-07-24T02:51:22.010000"],["2024-07-24T02:51:23.010000"],["2024-07-24T02:51:24.010000"],["2024-07-24T02:51:25.010000"],["2024-07-24T02:51:26.010000"],["2024-07-24T02:51:27.010000"],["2024-07-24T02:51:28.010000"],["2024-07-24T02:51:29.010000"],["2024-07-24T02:51:30.010000"],["2024-07-24T02:51:31.010000"],["2024-07-24T02:51:32.010000"],["2024-07-24T02:51:33.010000"],["2024-07-24T02:51:34.010000"],["2024-07-24T02:51:35.010000"],["2024-07-24T02:51:36.010000"],["2024-07-24T02:51:37.010000"],["2024-07-24T02:51:38.010000"],["2024-07-24T02:51:39.010000"],["2024-07-24T02:51:40.010000"],["2024-07-24T02:51:41.010000"],["2024-07-24T02:51:42.010000"],["2024-07-24T02:51:43.010000"],["2024-07-24T02:51:44.010000"],["2024-07-24T02:51:45.010000"],["2024-07-24T02:51:46.010000"],["2024-07-24T02:51:47.010000"],["2024-07-24T02:51:48.010000"],["2024-07-24T02:51:49.010000"],["2024-07-24T02:51:50.010000"],["2024-07-24T02:51:51.010000"],["2024-07-24T02:51:52.010000"],["2024-07-24T02:51:53.010000"],["2024-07-24T02:51:54.010000"],["2024-07-24T02:51:55.010000"],["2024-07-24T02:51:56.010000"],["2024-07-24T02:51:57.010000"],["2024-07-24T02:51:58.010000"],["2024-07-24T02:51:59.010000"],["2024-07-24T02:52:00.010000"],["2024-07-24T02:52:01.010000"],["2024-07-24T02:52:02.010000"],["2024-07-24T02:52:03.010000"],["2024-07-24T02:52:04.010000"],["2024-07-24T02:52:05.010000"],["2024-07-24T02:52:06.010000"],["2024-07-24T02:52:07.010000"],["2024-07-24T02:52:08.010000"],["2024-07-24T02:52:09.010000"],["2024-07-24T02:52:10.010000"],["2024-07-24T02:52:11.010000"],["2024-07-24T02:52:12.010000"],["2024-07-24T02:52:13.010000"],["2024-07-24T02:52:14.010000"],["2024-07-24T02:52:15.010000"],["2024-07-24T02:52:16.010000"],["2024-07-24T02:52:17.010000"],["2024-07-24T02:52:18.010000"],["2024-07-24T02:52:19.010000"],["2024-07-24T02:52:20.010000"],["2024-07-24T02:52:21.010000"],["2024-07-24T02:52:22.010000"],["2024-07-24T02:52:23.010000"],["2024-07-24T02:52:24.010000"],["2024-07-24T02:52:25.010000"],["2024-07-24T02:52:26.010000"],["2024-07-24T02:52:27.010000"],["2024-07-24T02:52:28.010000"],["2024-07-24T02:52:29.010000"],["2024-07-24T02:52:30.010000"],["2024-07-24T02:52:31.010000"],["2024-07-24T02:52:32.010000"],["2024-07-24T02:52:33.010000"],["2024-07-24T02:52:34.010000"],["2024-07-24T02:52:35.010000"],["2024-07-24T02:52:36.010000"],["2024-07-24T02:52:37.010000"],["2024-07-24T02:52:38.010000"],["2024-07-24T02:52:39.010000"],["2024-07-24T02:52:40.010000"],["2024-07-24T02:52:41.010000"],["2024-07-24T02:52:42.010000"],["2024-07-24T02:52:43.010000"],["2024-07-24T02:52:44.010000"],["2024-07-24T02:52:45.010000"],["2024-07-24T02:52:46.010000"],["2024-07-24T02:52:47.010000"],["2024-07-24T02:52:48.010000"],["2024-07-24T02:52:49.010000"],["2024-07-24T02:52:50.010000"],["2024-07-24T02:52:51.010000"],["2024-07-24T02:52:52.010000"],["2024-07-24T02:52:53.010000"],["2024-07-24T02:52:54.010000"],["2024-07-24T02:52:55.010000"],["2024-07-24T02:52:56.010000"],["2024-07-24T02:52:57.010000"],["2024-07-24T02:52:58.010000"],["2024-07-24T02:52:59.010000"],["2024-07-24T02:53:00.010000"],["2024-07-24T02:53:01.010000"],["2024-07-24T02:53:02.010000"],["2024-07-24T02:53:03.010000"],["2024-07-24T02:53:04.010000"],["2024-07-24T02:53:05.010000"],["2024-07-24T02:53:06.010000"],["2024-07-24T02:53:07.010000"],["2024-07-24T02:53:08.010000"],["2024-07-24T02:53:09.010000"],["2024-07-24T02:53:10.010000"],["2024-07-24T02:53:11.010000"],["2024-07-24T02:53:12.010000"],["2024-07-24T02:53:13.010000"],["2024-07-24T02:53:14.010000"],["2024-07-24T02:53:15.010000"],["2024-07-24T02:53:16.010000"],["2024-07-24T02:53:17.010000"],["2024-07-24T02:53:18.010000"],["2024-07-24T02:53:19.010000"],["2024-07-24T02:53:20.010000"],["2024-07-24T02:53:21.010000"],["2024-07-24T02:53:22.010000"],["2024-07-24T02:53:23.010000"],["2024-07-24T02:53:24.010000"],["2024-07-24T02:53:25.010000"],["2024-07-24T02:53:26.010000"],["2024-07-24T02:53:27.010000"],["2024-07-24T02:53:28.010000"],["2024-07-24T02:53:29.010000"],["2024-07-24T02:53:30.010000"],["2024-07-24T02:53:31.010000"],["2024-07-24T02:53:32.010000"],["2024-07-24T02:53:33.010000"],["2024-07-24T02:53:34.010000"],["2024-07-24T02:53:35.010000"],["2024-07-24T02:53:36.010000"],["2024-07-24T02:53:37.010000"],["2024-07-24T02:53:38.010000"],["2024-07-24T02:53:39.010000"],["2024-07-24T02:53:40.010000"],["2024-07-24T02:53:41.010000"],["2024-07-24T02:53:42.010000"],["2024-07-24T02:53:43.010000"],["2024-07-24T02:53:44.010000"],["2024-07-24T02:53:45.010000"],["2024-07-24T02:53:46.010000"],["2024-07-24T02:53:47.010000"],["2024-07-24T02:53:48.010000"],["2024-07-24T02:53:49.010000"],["2024-07-24T02:53:50.010000"],["2024-07-24T02:53:51.010000"],["2024-07-24T02:53:52.010000"],["2024-07-24T02:53:53.010000"],["2024-07-24T02:53:54.010000"],["2024-07-24T02:53:55.010000"],["2024-07-24T02:53:56.010000"],["2024-07-24T02:53:57.010000"],["2024-07-24T02:53:58.010000"],["2024-07-24T02:53:59.010000"],["2024-07-24T02:54:00.010000"],["2024-07-24T02:54:01.010000"],["2024-07-24T02:54:02.010000"],["2024-07-24T02:54:03.010000"],["2024-07-24T02:54:04.010000"],["2024-07-24T02:54:05.010000"],["2024-07-24T02:54:06.010000"],["2024-07-24T02:54:07.010000"],["2024-07-24T02:54:08.010000"],["2024-07-24T02:54:09.010000"],["2024-07-24T02:54:10.010000"],["2024-07-24T02:54:11.010000"],["2024-07-24T02:54:12.010000"],["2024-07-24T02:54:13.010000"],["2024-07-24T02:54:14.010000"],["2024-07-24T02:54:15.010000"],["2024-07-24T02:54:16.010000"],["2024-07-24T02:54:17.010000"],["2024-07-24T02:54:18.010000"],["2024-07-24T02:54:19.010000"],["2024-07-24T02:54:20.010000"],["2024-07-24T02:54:21.010000"],["2024-07-24T02:54:22.010000"],["2024-07-24T02:54:23.010000"],["2024-07-24T02:54:24.010000"],["2024-07-24T02:54:25.010000"],["2024-07-24T02:54:26.010000"],["2024-07-24T02:54:27.010000"],["2024-07-24T02:54:28.010000"],["2024-07-24T02:54:29.010000"],["2024-07-24T02:54:30.010000"],["2024-07-24T02:54:31.010000"],["2024-07-24T02:54:32.010000"],["2024-07-24T02:54:33.010000"],["2024-07-24T02:54:34.010000"],["2024-07-24T02:54:35.010000"],["2024-07-24T02:54:36.010000"],["2024-07-24T02:54:37.010000"],["2024-07-24T02:54:38.010000"],["2024-07-24T02:54:39.010000"],["2024-07-24T02:54:40.010000"],["2024-07-24T02:54:41.010000"],["2024-07-24T02:54:42.010000"],["2024-07-24T02:54:43.010000"],["2024-07-24T02:54:44.010000"],["2024-07-24T02:54:45.010000"],["2024-07-24T02:54:46.010000"],["2024-07-24T02:54:47.010000"],["2024-07-24T02:54:48.010000"],["2024-07-24T02:54:49.010000"],["2024-07-24T02:54:50.010000"],["2024-07-24T02:54:51.010000"],["2024-07-24T02:54:52.010000"],["2024-07-24T02:54:53.010000"],["2024-07-24T02:54:54.010000"],["2024-07-24T02:54:55.010000"],["2024-07-24T02:54:56.010000"],["2024-07-24T02:54:57.010000"],["2024-07-24T02:54:58.010000"],["2024-07-24T02:54:59.010000"],["2024-07-24T02:55:00.010000"],["2024-07-24T02:55:01.010000"],["2024-07-24T02:55:02.010000"],["2024-07-24T02:55:03.010000"],["2024-07-24T02:55:04.010000"],["2024-07-24T02:55:05.010000"],["2024-07-24T02:55:06.010000"],["2024-07-24T02:55:07.010000"],["2024-07-24T02:55:08.010000"],["2024-07-24T02:55:09.010000"],["2024-07-24T02:55:10.010000"],["2024-07-24T02:55:11.010000"],["2024-07-24T02:55:12.010000"],["2024-07-24T02:55:13.010000"],["2024-07-24T02:55:14.010000"],["2024-07-24T02:55:15.010000"],["2024-07-24T02:55:16.010000"],["2024-07-24T02:55:17.010000"],["2024-07-24T02:55:18.010000"],["2024-07-24T02:55:19.010000"],["2024-07-24T02:55:20.010000"],["2024-07-24T02:55:21.010000"],["2024-07-24T02:55:22.010000"],["2024-07-24T02:55:23.010000"],["2024-07-24T02:55:24.010000"],["2024-07-24T02:55:25.010000"],["2024-07-24T02:55:26.010000"],["2024-07-24T02:55:27.010000"],["2024-07-24T02:55:28.010000"],["2024-07-24T02:55:29.010000"],["2024-07-24T02:55:30.010000"],["2024-07-24T02:55:31.010000"],["2024-07-24T02:55:32.010000"],["2024-07-24T02:55:33.010000"],["2024-07-24T02:55:34.010000"],["2024-07-24T02:55:35.010000"],["2024-07-24T02:55:36.010000"],["2024-07-24T02:55:37.010000"],["2024-07-24T02:55:38.010000"],["2024-07-24T02:55:39.010000"],["2024-07-24T02:55:40.010000"],["2024-07-24T02:55:41.010000"],["2024-07-24T02:55:42.010000"],["2024-07-24T02:55:43.010000"],["2024-07-24T02:55:44.010000"],["2024-07-24T02:55:45.010000"],["2024-07-24T02:55:46.010000"],["2024-07-24T02:55:47.010000"],["2024-07-24T02:55:48.010000"],["2024-07-24T02:55:49.010000"],["2024-07-24T02:55:50.010000"],["2024-07-24T02:55:51.010000"],["2024-07-24T02:55:52.010000"],["2024-07-24T02:55:53.010000"],["2024-07-24T02:55:54.010000"],["2024-07-24T02:55:55.010000"],["2024-07-24T02:55:56.010000"],["2024-07-24T02:55:57.010000"],["2024-07-24T02:55:58.010000"],["2024-07-24T02:55:59.010000"],["2024-07-24T02:56:00.010000"],["2024-07-24T02:56:01.010000"],["2024-07-24T02:56:02.010000"],["2024-07-24T02:56:03.010000"],["2024-07-24T02:56:04.010000"],["2024-07-24T02:56:05.010000"],["2024-07-24T02:56:06.010000"],["2024-07-24T02:56:07.010000"],["2024-07-24T02:56:08.010000"],["2024-07-24T02:56:09.010000"],["2024-07-24T02:56:10.010000"],["2024-07-24T02:56:11.010000"],["2024-07-24T02:56:12.010000"],["2024-07-24T02:56:13.010000"],["2024-07-24T02:56:14.010000"],["2024-07-24T02:56:15.010000"],["2024-07-24T02:56:16.010000"],["2024-07-24T02:56:17.010000"],["2024-07-24T02:56:18.010000"],["2024-07-24T02:56:19.010000"],["2024-07-24T02:56:20.010000"],["2024-07-24T02:56:21.010000"],["2024-07-24T02:56:22.010000"],["2024-07-24T02:56:23.010000"],["2024-07-24T02:56:24.010000"],["2024-07-24T02:56:25.010000"],["2024-07-24T02:56:26.010000"],["2024-07-24T02:56:27.010000"],["2024-07-24T02:56:28.010000"],["2024-07-24T02:56:29.010000"],["2024-07-24T02:56:30.010000"],["2024-07-24T02:56:31.010000"],["2024-07-24T02:56:32.010000"],["2024-07-24T02:56:33.010000"],["2024-07-24T02:56:34.010000"],["2024-07-24T02:56:35.010000"],["2024-07-24T02:56:36.010000"],["2024-07-24T02:56:37.010000"],["2024-07-24T02:56:38.010000"],["2024-07-24T02:56:39.010000"],["2024-07-24T02:56:40.010000"],["2024-07-24T02:56:41.010000"],["2024-07-24T02:56:42.010000"],["2024-07-24T02:56:43.010000"],["2024-07-24T02:56:44.010000"],["2024-07-24T02:56:45.010000"],["2024-07-24T02:56:46.010000"],["2024-07-24T02:56:47.010000"],["2024-07-24T02:56:48.010000"],["2024-07-24T02:56:49.010000"],["2024-07-24T02:56:50.010000"],["2024-07-24T02:56:51.010000"],["2024-07-24T02:56:52.010000"],["2024-07-24T02:56:53.010000"],["2024-07-24T02:56:54.010000"],["2024-07-24T02:56:55.010000"],["2024-07-24T02:56:56.010000"],["2024-07-24T02:56:57.010000"],["2024-07-24T02:56:58.010000"],["2024-07-24T02:56:59.010000"],["2024-07-24T02:57:00.010000"],["2024-07-24T02:57:01.010000"],["2024-07-24T02:57:02.010000"],["2024-07-24T02:57:03.010000"],["2024-07-24T02:57:04.010000"],["2024-07-24T02:57:05.010000"],["2024-07-24T02:57:06.010000"],["2024-07-24T02:57:07.010000"],["2024-07-24T02:57:08.010000"],["2024-07-24T02:57:09.010000"],["2024-07-24T02:57:10.010000"],["2024-07-24T02:57:11.010000"],["2024-07-24T02:57:12.010000"],["2024-07-24T02:57:13.010000"],["2024-07-24T02:57:14.010000"],["2024-07-24T02:57:15.010000"],["2024-07-24T02:57:16.010000"],["2024-07-24T02:57:17.010000"],["2024-07-24T02:57:18.010000"],["2024-07-24T02:57:19.010000"],["2024-07-24T02:57:20.010000"],["2024-07-24T02:57:21.010000"],["2024-07-24T02:57:22.010000"],["2024-07-24T02:57:23.010000"],["2024-07-24T02:57:24.010000"],["2024-07-24T02:57:25.010000"],["2024-07-24T02:57:26.010000"],["2024-07-24T02:57:27.010000"],["2024-07-24T02:57:28.010000"],["2024-07-24T02:57:29.010000"],["2024-07-24T02:57:30.010000"],["2024-07-24T02:57:31.010000"],["2024-07-24T02:57:32.010000"],["2024-07-24T02:57:33.010000"],["2024-07-24T02:57:34.010000"],["2024-07-24T02:57:35.010000"],["2024-07-24T02:57:36.010000"],["2024-07-24T02:57:37.010000"],["2024-07-24T02:57:38.010000"],["2024-07-24T02:57:39.010000"],["2024-07-24T02:57:40.010000"],["2024-07-24T02:57:41.010000"],["2024-07-24T02:57:42.010000"],["2024-07-24T02:57:43.010000"],["2024-07-24T02:57:44.010000"],["2024-07-24T02:57:45.010000"],["2024-07-24T02:57:46.010000"],["2024-07-24T02:57:47.010000"],["2024-07-24T02:57:48.010000"],["2024-07-24T02:57:49.010000"],["2024-07-24T02:57:50.010000"],["2024-07-24T02:57:51.010000"],["2024-07-24T02:57:52.010000"],["2024-07-24T02:57:53.010000"],["2024-07-24T02:57:54.010000"],["2024-07-24T02:57:55.010000"],["2024-07-24T02:57:56.010000"],["2024-07-24T02:57:57.010000"],["2024-07-24T02:57:58.010000"],["2024-07-24T02:57:59.010000"],["2024-07-24T02:58:00.010000"],["2024-07-24T02:58:01.010000"],["2024-07-24T02:58:02.010000"],["2024-07-24T02:58:03.010000"],["2024-07-24T02:58:04.010000"],["2024-07-24T02:58:05.010000"],["2024-07-24T02:58:06.010000"],["2024-07-24T02:58:07.010000"],["2024-07-24T02:58:08.010000"],["2024-07-24T02:58:09.010000"],["2024-07-24T02:58:10.010000"],["2024-07-24T02:58:11.010000"],["2024-07-24T02:58:12.010000"],["2024-07-24T02:58:13.010000"],["2024-07-24T02:58:14.010000"],["2024-07-24T02:58:15.010000"],["2024-07-24T02:58:16.010000"],["2024-07-24T02:58:17.010000"],["2024-07-24T02:58:18.010000"],["2024-07-24T02:58:19.010000"],["2024-07-24T02:58:20.010000"],["2024-07-24T02:58:21.010000"],["2024-07-24T02:58:22.010000"],["2024-07-24T02:58:23.010000"],["2024-07-24T02:58:24.010000"],["2024-07-24T02:58:25.010000"],["2024-07-24T02:58:26.010000"],["2024-07-24T02:58:27.010000"],["2024-07-24T02:58:28.010000"],["2024-07-24T02:58:29.010000"],["2024-07-24T02:58:30.010000"],["2024-07-24T02:58:31.010000"],["2024-07-24T02:58:32.010000"],["2024-07-24T02:58:33.010000"],["2024-07-24T02:58:34.010000"],["2024-07-24T02:58:35.010000"],["2024-07-24T02:58:36.010000"],["2024-07-24T02:58:37.010000"],["2024-07-24T02:58:38.010000"],["2024-07-24T02:58:39.010000"],["2024-07-24T02:58:40.010000"],["2024-07-24T02:58:41.010000"],["2024-07-24T02:58:42.010000"],["2024-07-24T02:58:43.010000"],["2024-07-24T02:58:44.010000"],["2024-07-24T02:58:45.010000"],["2024-07-24T02:58:46.010000"],["2024-07-24T02:58:47.010000"],["2024-07-24T02:58:48.010000"],["2024-07-24T02:58:49.010000"],["2024-07-24T02:58:50.010000"],["2024-07-24T02:58:51.010000"],["2024-07-24T02:58:52.010000"],["2024-07-24T02:58:53.010000"],["2024-07-24T02:58:54.010000"],["2024-07-24T02:58:55.010000"],["2024-07-24T02:58:56.010000"],["2024-07-24T02:58:57.010000"],["2024-07-24T02:58:58.010000"],["2024-07-24T02:58:59.010000"],["2024-07-24T02:59:00.010000"],["2024-07-24T02:59:01.010000"],["2024-07-24T02:59:02.010000"],["2024-07-24T02:59:03.010000"],["2024-07-24T02:59:04.010000"],["2024-07-24T02:59:05.010000"],["2024-07-24T02:59:06.010000"],["2024-07-24T02:59:07.010000"],["2024-07-24T02:59:08.010000"],["2024-07-24T02:59:09.010000"],["2024-07-24T02:59:10.010000"],["2024-07-24T02:59:11.010000"],["2024-07-24T02:59:12.010000"],["2024-07-24T02:59:13.010000"],["2024-07-24T02:59:14.010000"],["2024-07-24T02:59:15.010000"],["2024-07-24T02:59:16.010000"],["2024-07-24T02:59:17.010000"],["2024-07-24T02:59:18.010000"],["2024-07-24T02:59:19.010000"],["2024-07-24T02:59:20.010000"],["2024-07-24T02:59:21.010000"],["2024-07-24T02:59:22.010000"],["2024-07-24T02:59:23.010000"],["2024-07-24T02:59:24.010000"],["2024-07-24T02:59:25.010000"],["2024-07-24T02:59:26.010000"],["2024-07-24T02:59:27.010000"],["2024-07-24T02:59:28.010000"],["2024-07-24T02:59:29.010000"],["2024-07-24T02:59:30.010000"],["2024-07-24T02:59:31.010000"],["2024-07-24T02:59:32.010000"],["2024-07-24T02:59:33.010000"],["2024-07-24T02:59:34.010000"],["2024-07-24T02:59:35.010000"],["2024-07-24T02:59:36.010000"],["2024-07-24T02:59:37.010000"],["2024-07-24T02:59:38.010000"],["2024-07-24T02:59:39.010000"],["2024-07-24T02:59:40.010000"],["2024-07-24T02:59:41.010000"],["2024-07-24T02:59:42.010000"],["2024-07-24T02:59:43.010000"],["2024-07-24T02:59:44.010000"],["2024-07-24T02:59:45.010000"],["2024-07-24T02:59:46.010000"],["2024-07-24T02:59:47.010000"],["2024-07-24T02:59:48.010000"],["2024-07-24T02:59:49.010000"],["2024-07-24T02:59:50.010000"],["2024-07-24T02:59:51.010000"],["2024-07-24T02:59:52.010000"],["2024-07-24T02:59:53.010000"],["2024-07-24T02:59:54.010000"],["2024-07-24T02:59:55.010000"],["2024-07-24T02:59:56.010000"],["2024-07-24T02:59:57.010000"],["2024-07-24T02:59:58.010000"],["2024-07-24T02:59:59.010000"],["2024-07-24T03:00:00.010000"],["2024-07-24T03:00:01.010000"],["2024-07-24T03:00:02.010000"],["2024-07-24T03:00:03.010000"],["2024-07-24T03:00:04.010000"],["2024-07-24T03:00:05.010000"],["2024-07-24T03:00:06.010000"],["2024-07-24T03:00:07.010000"],["2024-07-24T03:00:08.010000"],["2024-07-24T03:00:09.010000"],["2024-07-24T03:00:10.010000"],["2024-07-24T03:00:11.010000"],["2024-07-24T03:00:12.010000"],["2024-07-24T03:00:13.010000"],["2024-07-24T03:00:14.010000"],["2024-07-24T03:00:15.010000"],["2024-07-24T03:00:16.010000"],["2024-07-24T03:00:17.010000"],["2024-07-24T03:00:18.010000"],["2024-07-24T03:00:19.010000"],["2024-07-24T03:00:20.010000"],["2024-07-24T03:00:21.010000"],["2024-07-24T03:00:22.010000"],["2024-07-24T03:00:23.010000"],["2024-07-24T03:00:24.010000"],["2024-07-24T03:00:25.010000"],["2024-07-24T03:00:26.010000"],["2024-07-24T03:00:27.010000"],["2024-07-24T03:00:28.010000"],["2024-07-24T03:00:29.010000"],["2024-07-24T03:00:30.010000"],["2024-07-24T03:00:31.010000"],["2024-07-24T03:00:32.010000"],["2024-07-24T03:00:33.010000"],["2024-07-24T03:00:34.010000"],["2024-07-24T03:00:35.010000"],["2024-07-24T03:00:36.010000"],["2024-07-24T03:00:37.010000"],["2024-07-24T03:00:38.010000"],["2024-07-24T03:00:39.010000"],["2024-07-24T03:00:40.010000"],["2024-07-24T03:00:41.010000"],["2024-07-24T03:00:42.010000"],["2024-07-24T03:00:43.010000"],["2024-07-24T03:00:44.010000"],["2024-07-24T03:00:45.010000"],["2024-07-24T03:00:46.010000"],["2024-07-24T03:00:47.010000"],["2024-07-24T03:00:48.010000"],["2024-07-24T03:00:49.010000"],["2024-07-24T03:00:50.010000"],["2024-07-24T03:00:51.010000"],["2024-07-24T03:00:52.010000"],["2024-07-24T03:00:53.010000"],["2024-07-24T03:00:54.010000"],["2024-07-24T03:00:55.010000"],["2024-07-24T03:00:56.010000"],["2024-07-24T03:00:57.010000"],["2024-07-24T03:00:58.010000"],["2024-07-24T03:00:59.010000"],["2024-07-24T03:01:00.010000"],["2024-07-24T03:01:01.010000"],["2024-07-24T03:01:02.010000"],["2024-07-24T03:01:03.010000"],["2024-07-24T03:01:04.010000"],["2024-07-24T03:01:05.010000"],["2024-07-24T03:01:06.010000"],["2024-07-24T03:01:07.010000"],["2024-07-24T03:01:08.010000"],["2024-07-24T03:01:09.010000"],["2024-07-24T03:01:10.010000"],["2024-07-24T03:01:11.010000"],["2024-07-24T03:01:12.010000"],["2024-07-24T03:01:13.010000"],["2024-07-24T03:01:14.010000"],["2024-07-24T03:01:15.010000"],["2024-07-24T03:01:16.010000"],["2024-07-24T03:01:17.010000"],["2024-07-24T03:01:18.010000"],["2024-07-24T03:01:19.010000"],["2024-07-24T03:01:20.010000"],["2024-07-24T03:01:21.010000"],["2024-07-24T03:01:22.010000"],["2024-07-24T03:01:23.010000"],["2024-07-24T03:01:24.010000"],["2024-07-24T03:01:25.010000"],["2024-07-24T03:01:26.010000"],["2024-07-24T03:01:27.010000"],["2024-07-24T03:01:28.010000"],["2024-07-24T03:01:29.010000"],["2024-07-24T03:01:30.010000"],["2024-07-24T03:01:31.010000"],["2024-07-24T03:01:32.010000"],["2024-07-24T03:01:33.010000"],["2024-07-24T03:01:34.010000"],["2024-07-24T03:01:35.010000"],["2024-07-24T03:01:36.010000"],["2024-07-24T03:01:37.010000"],["2024-07-24T03:01:38.010000"],["2024-07-24T03:01:39.010000"],["2024-07-24T03:01:40.010000"],["2024-07-24T03:01:41.010000"],["2024-07-24T03:01:42.010000"],["2024-07-24T03:01:43.010000"],["2024-07-24T03:01:44.010000"],["2024-07-24T03:01:45.010000"],["2024-07-24T03:01:46.010000"],["2024-07-24T03:01:47.010000"],["2024-07-24T03:01:48.010000"],["2024-07-24T03:01:49.010000"],["2024-07-24T03:01:50.010000"],["2024-07-24T03:01:51.010000"],["2024-07-24T03:01:52.010000"],["2024-07-24T03:01:53.010000"],["2024-07-24T03:01:54.010000"],["2024-07-24T03:01:55.010000"],["2024-07-24T03:01:56.010000"],["2024-07-24T03:01:57.010000"],["2024-07-24T03:01:58.010000"],["2024-07-24T03:01:59.010000"],["2024-07-24T03:02:00.010000"],["2024-07-24T03:02:01.010000"],["2024-07-24T03:02:02.010000"],["2024-07-24T03:02:03.010000"],["2024-07-24T03:02:04.010000"],["2024-07-24T03:02:05.010000"],["2024-07-24T03:02:06.010000"],["2024-07-24T03:02:07.010000"],["2024-07-24T03:02:08.010000"],["2024-07-24T03:02:09.010000"],["2024-07-24T03:02:10.010000"],["2024-07-24T03:02:11.010000"],["2024-07-24T03:02:12.010000"],["2024-07-24T03:02:13.010000"],["2024-07-24T03:02:14.010000"],["2024-07-24T03:02:15.010000"],["2024-07-24T03:02:16.010000"],["2024-07-24T03:02:17.010000"],["2024-07-24T03:02:18.010000"],["2024-07-24T03:02:19.010000"],["2024-07-24T03:02:20.010000"],["2024-07-24T03:02:21.010000"],["2024-07-24T03:02:22.010000"],["2024-07-24T03:02:23.010000"],["2024-07-24T03:02:24.010000"],["2024-07-24T03:02:25.010000"],["2024-07-24T03:02:26.010000"],["2024-07-24T03:02:27.010000"],["2024-07-24T03:02:28.010000"],["2024-07-24T03:02:29.010000"],["2024-07-24T03:02:30.010000"],["2024-07-24T03:02:31.010000"],["2024-07-24T03:02:32.010000"],["2024-07-24T03:02:33.010000"],["2024-07-24T03:02:34.010000"],["2024-07-24T03:02:35.010000"],["2024-07-24T03:02:36.010000"],["2024-07-24T03:02:37.010000"],["2024-07-24T03:02:38.010000"],["2024-07-24T03:02:39.010000"],["2024-07-24T03:02:40.010000"],["2024-07-24T03:02:41.010000"],["2024-07-24T03:02:42.010000"],["2024-07-24T03:02:43.010000"],["2024-07-24T03:02:44.010000"],["2024-07-24T03:02:45.010000"],["2024-07-24T03:02:46.010000"],["2024-07-24T03:02:47.010000"],["2024-07-24T03:02:48.010000"],["2024-07-24T03:02:49.010000"],["2024-07-24T03:02:50.010000"],["2024-07-24T03:02:51.010000"],["2024-07-24T03:02:52.010000"],["2024-07-24T03:02:53.010000"],["2024-07-24T03:02:54.010000"],["2024-07-24T03:02:55.010000"],["2024-07-24T03:02:56.010000"],["2024-07-24T03:02:57.010000"],["2024-07-24T03:02:58.010000"],["2024-07-24T03:02:59.010000"],["2024-07-24T03:03:00.010000"],["2024-07-24T03:03:01.010000"],["2024-07-24T03:03:02.010000"],["2024-07-24T03:03:03.010000"],["2024-07-24T03:03:04.010000"],["2024-07-24T03:03:05.010000"],["2024-07-24T03:03:06.010000"],["2024-07-24T03:03:07.010000"],["2024-07-24T03:03:08.010000"],["2024-07-24T03:03:09.010000"],["2024-07-24T03:03:10.010000"],["2024-07-24T03:03:11.010000"],["2024-07-24T03:03:12.010000"],["2024-07-24T03:03:13.010000"],["2024-07-24T03:03:14.010000"],["2024-07-24T03:03:15.010000"],["2024-07-24T03:03:16.010000"],["2024-07-24T03:03:17.010000"],["2024-07-24T03:03:18.010000"],["2024-07-24T03:03:19.010000"],["2024-07-24T03:03:20.010000"],["2024-07-24T03:03:21.010000"],["2024-07-24T03:03:22.010000"],["2024-07-24T03:03:23.010000"],["2024-07-24T03:03:24.010000"],["2024-07-24T03:03:25.010000"],["2024-07-24T03:03:26.010000"],["2024-07-24T03:03:27.010000"],["2024-07-24T03:03:28.010000"],["2024-07-24T03:03:29.010000"],["2024-07-24T03:03:30.010000"],["2024-07-24T03:03:31.010000"],["2024-07-24T03:03:32.010000"],["2024-07-24T03:03:33.010000"],["2024-07-24T03:03:34.010000"],["2024-07-24T03:03:35.010000"],["2024-07-24T03:03:36.010000"],["2024-07-24T03:03:37.010000"],["2024-07-24T03:03:38.010000"],["2024-07-24T03:03:39.010000"],["2024-07-24T03:03:40.010000"],["2024-07-24T03:03:41.010000"],["2024-07-24T03:03:42.010000"],["2024-07-24T03:03:43.010000"],["2024-07-24T03:03:44.010000"],["2024-07-24T03:03:45.010000"],["2024-07-24T03:03:46.010000"],["2024-07-24T03:03:47.010000"],["2024-07-24T03:03:48.010000"],["2024-07-24T03:03:49.010000"],["2024-07-24T03:03:50.010000"],["2024-07-24T03:03:51.010000"],["2024-07-24T03:03:52.010000"],["2024-07-24T03:03:53.010000"],["2024-07-24T03:03:54.010000"],["2024-07-24T03:03:55.010000"],["2024-07-24T03:03:56.010000"],["2024-07-24T03:03:57.010000"],["2024-07-24T03:03:58.010000"],["2024-07-24T03:03:59.010000"],["2024-07-24T03:04:00.010000"],["2024-07-24T03:04:01.010000"],["2024-07-24T03:04:02.010000"],["2024-07-24T03:04:03.010000"],["2024-07-24T03:04:04.010000"],["2024-07-24T03:04:05.010000"],["2024-07-24T03:04:06.010000"],["2024-07-24T03:04:07.010000"],["2024-07-24T03:04:08.010000"],["2024-07-24T03:04:09.010000"],["2024-07-24T03:04:10.010000"],["2024-07-24T03:04:11.010000"],["2024-07-24T03:04:12.010000"],["2024-07-24T03:04:13.010000"],["2024-07-24T03:04:14.010000"],["2024-07-24T03:04:15.010000"],["2024-07-24T03:04:16.010000"],["2024-07-24T03:04:17.010000"],["2024-07-24T03:04:18.010000"],["2024-07-24T03:04:19.010000"],["2024-07-24T03:04:20.010000"],["2024-07-24T03:04:21.010000"],["2024-07-24T03:04:22.010000"],["2024-07-24T03:04:23.010000"],["2024-07-24T03:04:24.010000"],["2024-07-24T03:04:25.010000"],["2024-07-24T03:04:26.010000"],["2024-07-24T03:04:27.010000"],["2024-07-24T03:04:28.010000"],["2024-07-24T03:04:29.010000"],["2024-07-24T03:04:30.010000"],["2024-07-24T03:04:31.010000"],["2024-07-24T03:04:32.010000"],["2024-07-24T03:04:33.010000"],["2024-07-24T03:04:34.010000"],["2024-07-24T03:04:35.010000"],["2024-07-24T03:04:36.010000"],["2024-07-24T03:04:37.010000"],["2024-07-24T03:04:38.010000"],["2024-07-24T03:04:39.010000"],["2024-07-24T03:04:40.010000"],["2024-07-24T03:04:41.010000"],["2024-07-24T03:04:42.010000"],["2024-07-24T03:04:43.010000"],["2024-07-24T03:04:44.010000"],["2024-07-24T03:04:45.010000"],["2024-07-24T03:04:46.010000"],["2024-07-24T03:04:47.010000"],["2024-07-24T03:04:48.010000"],["2024-07-24T03:04:49.010000"],["2024-07-24T03:04:50.010000"],["2024-07-24T03:04:51.010000"],["2024-07-24T03:04:52.010000"],["2024-07-24T03:04:53.010000"],["2024-07-24T03:04:54.010000"],["2024-07-24T03:04:55.010000"],["2024-07-24T03:04:56.010000"],["2024-07-24T03:04:57.010000"],["2024-07-24T03:04:58.010000"],["2024-07-24T03:04:59.010000"],["2024-07-24T03:05:00.010000"],["2024-07-24T03:05:01.010000"],["2024-07-24T03:05:02.010000"],["2024-07-24T03:05:03.010000"],["2024-07-24T03:05:04.010000"],["2024-07-24T03:05:05.010000"],["2024-07-24T03:05:06.010000"],["2024-07-24T03:05:07.010000"],["2024-07-24T03:05:08.010000"],["2024-07-24T03:05:09.010000"],["2024-07-24T03:05:10.010000"],["2024-07-24T03:05:11.010000"],["2024-07-24T03:05:12.010000"],["2024-07-24T03:05:13.010000"],["2024-07-24T03:05:14.010000"],["2024-07-24T03:05:15.010000"],["2024-07-24T03:05:16.010000"],["2024-07-24T03:05:17.010000"],["2024-07-24T03:05:18.010000"],["2024-07-24T03:05:19.010000"],["2024-07-24T03:05:20.010000"],["2024-07-24T03:05:21.010000"],["2024-07-24T03:05:22.010000"],["2024-07-24T03:05:23.010000"],["2024-07-24T03:05:24.010000"],["2024-07-24T03:05:25.010000"],["2024-07-24T03:05:26.010000"],["2024-07-24T03:05:27.010000"],["2024-07-24T03:05:28.010000"],["2024-07-24T03:05:29.010000"],["2024-07-24T03:05:30.010000"],["2024-07-24T03:05:31.010000"],["2024-07-24T03:05:32.010000"],["2024-07-24T03:05:33.010000"],["2024-07-24T03:05:34.010000"],["2024-07-24T03:05:35.010000"],["2024-07-24T03:05:36.010000"],["2024-07-24T03:05:37.010000"],["2024-07-24T03:05:38.010000"],["2024-07-24T03:05:39.010000"],["2024-07-24T03:05:40.010000"],["2024-07-24T03:05:41.010000"],["2024-07-24T03:05:42.010000"],["2024-07-24T03:05:43.010000"],["2024-07-24T03:05:44.010000"],["2024-07-24T03:05:45.010000"],["2024-07-24T03:05:46.010000"],["2024-07-24T03:05:47.010000"],["2024-07-24T03:05:48.010000"],["2024-07-24T03:05:49.010000"],["2024-07-24T03:05:50.010000"],["2024-07-24T03:05:51.010000"],["2024-07-24T03:05:52.010000"],["2024-07-24T03:05:53.010000"],["2024-07-24T03:05:54.010000"],["2024-07-24T03:05:55.010000"],["2024-07-24T03:05:56.010000"],["2024-07-24T03:05:57.010000"],["2024-07-24T03:05:58.010000"],["2024-07-24T03:05:59.010000"],["2024-07-24T03:06:00.010000"],["2024-07-24T03:06:01.010000"],["2024-07-24T03:06:02.010000"],["2024-07-24T03:06:03.010000"],["2024-07-24T03:06:04.010000"],["2024-07-24T03:06:05.010000"],["2024-07-24T03:06:06.010000"],["2024-07-24T03:06:07.010000"],["2024-07-24T03:06:08.010000"],["2024-07-24T03:06:09.010000"],["2024-07-24T03:06:10.010000"],["2024-07-24T03:06:11.010000"],["2024-07-24T03:06:12.010000"],["2024-07-24T03:06:13.010000"],["2024-07-24T03:06:14.010000"],["2024-07-24T03:06:15.010000"],["2024-07-24T03:06:16.010000"],["2024-07-24T03:06:17.010000"],["2024-07-24T03:06:18.010000"],["2024-07-24T03:06:19.010000"],["2024-07-24T03:06:20.010000"],["2024-07-24T03:06:21.010000"],["2024-07-24T03:06:22.010000"],["2024-07-24T03:06:23.010000"],["2024-07-24T03:06:24.010000"],["2024-07-24T03:06:25.010000"],["2024-07-24T03:06:26.010000"],["2024-07-24T03:06:27.010000"],["2024-07-24T03:06:28.010000"],["2024-07-24T03:06:29.010000"],["2024-07-24T03:06:30.010000"],["2024-07-24T03:06:31.010000"],["2024-07-24T03:06:32.010000"],["2024-07-24T03:06:33.010000"],["2024-07-24T03:06:34.010000"],["2024-07-24T03:06:35.010000"],["2024-07-24T03:06:36.010000"],["2024-07-24T03:06:37.010000"],["2024-07-24T03:06:38.010000"],["2024-07-24T03:06:39.010000"],["2024-07-24T03:06:40.010000"],["2024-07-24T03:06:41.010000"],["2024-07-24T03:06:42.010000"],["2024-07-24T03:06:43.010000"],["2024-07-24T03:06:44.010000"],["2024-07-24T03:06:45.010000"],["2024-07-24T03:06:46.010000"],["2024-07-24T03:06:47.010000"],["2024-07-24T03:06:48.010000"],["2024-07-24T03:06:49.010000"],["2024-07-24T03:06:50.010000"],["2024-07-24T03:06:51.010000"],["2024-07-24T03:06:52.010000"],["2024-07-24T03:06:53.010000"],["2024-07-24T03:06:54.010000"],["2024-07-24T03:06:55.010000"],["2024-07-24T03:06:56.010000"],["2024-07-24T03:06:57.010000"],["2024-07-24T03:06:58.010000"],["2024-07-24T03:06:59.010000"],["2024-07-24T03:07:00.010000"],["2024-07-24T03:07:01.010000"],["2024-07-24T03:07:02.010000"],["2024-07-24T03:07:03.010000"],["2024-07-24T03:07:04.010000"],["2024-07-24T03:07:05.010000"],["2024-07-24T03:07:06.010000"],["2024-07-24T03:07:07.010000"],["2024-07-24T03:07:08.010000"],["2024-07-24T03:07:09.010000"],["2024-07-24T03:07:10.010000"],["2024-07-24T03:07:11.010000"],["2024-07-24T03:07:12.010000"],["2024-07-24T03:07:13.010000"],["2024-07-24T03:07:14.010000"],["2024-07-24T03:07:15.010000"],["2024-07-24T03:07:16.010000"],["2024-07-24T03:07:17.010000"],["2024-07-24T03:07:18.010000"],["2024-07-24T03:07:19.010000"],["2024-07-24T03:07:20.010000"],["2024-07-24T03:07:21.010000"],["2024-07-24T03:07:22.010000"],["2024-07-24T03:07:23.010000"],["2024-07-24T03:07:24.010000"],["2024-07-24T03:07:25.010000"],["2024-07-24T03:07:26.010000"],["2024-07-24T03:07:27.010000"],["2024-07-24T03:07:28.010000"],["2024-07-24T03:07:29.010000"],["2024-07-24T03:07:30.010000"],["2024-07-24T03:07:31.010000"],["2024-07-24T03:07:32.010000"],["2024-07-24T03:07:33.010000"],["2024-07-24T03:07:34.010000"],["2024-07-24T03:07:35.010000"],["2024-07-24T03:07:36.010000"],["2024-07-24T03:07:37.010000"],["2024-07-24T03:07:38.010000"],["2024-07-24T03:07:39.010000"],["2024-07-24T03:07:40.010000"],["2024-07-24T03:07:41.010000"],["2024-07-24T03:07:42.010000"],["2024-07-24T03:07:43.010000"],["2024-07-24T03:07:44.010000"],["2024-07-24T03:07:45.010000"],["2024-07-24T03:07:46.010000"],["2024-07-24T03:07:47.010000"],["2024-07-24T03:07:48.010000"],["2024-07-24T03:07:49.010000"],["2024-07-24T03:07:50.010000"],["2024-07-24T03:07:51.010000"],["2024-07-24T03:07:52.010000"],["2024-07-24T03:07:53.010000"],["2024-07-24T03:07:54.010000"],["2024-07-24T03:07:55.010000"],["2024-07-24T03:07:56.010000"],["2024-07-24T03:07:57.010000"],["2024-07-24T03:07:58.010000"],["2024-07-24T03:07:59.010000"],["2024-07-24T03:08:00.010000"],["2024-07-24T03:08:01.010000"],["2024-07-24T03:08:02.010000"],["2024-07-24T03:08:03.010000"],["2024-07-24T03:08:04.010000"],["2024-07-24T03:08:05.010000"],["2024-07-24T03:08:06.010000"],["2024-07-24T03:08:07.010000"],["2024-07-24T03:08:08.010000"],["2024-07-24T03:08:09.010000"],["2024-07-24T03:08:10.010000"],["2024-07-24T03:08:11.010000"],["2024-07-24T03:08:12.010000"],["2024-07-24T03:08:13.010000"],["2024-07-24T03:08:14.010000"],["2024-07-24T03:08:15.010000"],["2024-07-24T03:08:16.010000"],["2024-07-24T03:08:17.010000"],["2024-07-24T03:08:18.010000"],["2024-07-24T03:08:19.010000"],["2024-07-24T03:08:20.010000"],["2024-07-24T03:08:21.010000"],["2024-07-24T03:08:22.010000"],["2024-07-24T03:08:23.010000"],["2024-07-24T03:08:24.010000"],["2024-07-24T03:08:25.010000"],["2024-07-24T03:08:26.010000"],["2024-07-24T03:08:27.010000"],["2024-07-24T03:08:28.010000"],["2024-07-24T03:08:29.010000"],["2024-07-24T03:08:30.010000"],["2024-07-24T03:08:31.010000"],["2024-07-24T03:08:32.010000"],["2024-07-24T03:08:33.010000"],["2024-07-24T03:08:34.010000"],["2024-07-24T03:08:35.010000"],["2024-07-24T03:08:36.010000"],["2024-07-24T03:08:37.010000"],["2024-07-24T03:08:38.010000"],["2024-07-24T03:08:39.010000"],["2024-07-24T03:08:40.010000"],["2024-07-24T03:08:41.010000"],["2024-07-24T03:08:42.010000"],["2024-07-24T03:08:43.010000"],["2024-07-24T03:08:44.010000"],["2024-07-24T03:08:45.010000"],["2024-07-24T03:08:46.010000"],["2024-07-24T03:08:47.010000"],["2024-07-24T03:08:48.010000"],["2024-07-24T03:08:49.010000"],["2024-07-24T03:08:50.010000"],["2024-07-24T03:08:51.010000"],["2024-07-24T03:08:52.010000"],["2024-07-24T03:08:53.010000"],["2024-07-24T03:08:54.010000"],["2024-07-24T03:08:55.010000"],["2024-07-24T03:08:56.010000"],["2024-07-24T03:08:57.010000"],["2024-07-24T03:08:58.010000"],["2024-07-24T03:08:59.010000"],["2024-07-24T03:09:00.010000"],["2024-07-24T03:09:01.010000"],["2024-07-24T03:09:02.010000"],["2024-07-24T03:09:03.010000"],["2024-07-24T03:09:04.010000"],["2024-07-24T03:09:05.010000"],["2024-07-24T03:09:06.010000"],["2024-07-24T03:09:07.010000"],["2024-07-24T03:09:08.010000"],["2024-07-24T03:09:09.010000"],["2024-07-24T03:09:10.010000"],["2024-07-24T03:09:11.010000"],["2024-07-24T03:09:12.010000"],["2024-07-24T03:09:13.010000"],["2024-07-24T03:09:14.010000"],["2024-07-24T03:09:15.010000"],["2024-07-24T03:09:16.010000"],["2024-07-24T03:09:17.010000"],["2024-07-24T03:09:18.010000"],["2024-07-24T03:09:19.010000"],["2024-07-24T03:09:20.010000"],["2024-07-24T03:09:21.010000"],["2024-07-24T03:09:22.010000"],["2024-07-24T03:09:23.010000"],["2024-07-24T03:09:24.010000"],["2024-07-24T03:09:25.010000"],["2024-07-24T03:09:26.010000"],["2024-07-24T03:09:27.010000"],["2024-07-24T03:09:28.010000"],["2024-07-24T03:09:29.010000"],["2024-07-24T03:09:30.010000"],["2024-07-24T03:09:31.010000"],["2024-07-24T03:09:32.010000"],["2024-07-24T03:09:33.010000"],["2024-07-24T03:09:34.010000"],["2024-07-24T03:09:35.010000"],["2024-07-24T03:09:36.010000"],["2024-07-24T03:09:37.010000"],["2024-07-24T03:09:38.010000"],["2024-07-24T03:09:39.010000"],["2024-07-24T03:09:40.010000"],["2024-07-24T03:09:41.010000"],["2024-07-24T03:09:42.010000"],["2024-07-24T03:09:43.010000"],["2024-07-24T03:09:44.010000"],["2024-07-24T03:09:45.010000"],["2024-07-24T03:09:46.010000"],["2024-07-24T03:09:47.010000"],["2024-07-24T03:09:48.010000"],["2024-07-24T03:09:49.010000"],["2024-07-24T03:09:50.010000"],["2024-07-24T03:09:51.010000"],["2024-07-24T03:09:52.010000"],["2024-07-24T03:09:53.010000"],["2024-07-24T03:09:54.010000"],["2024-07-24T03:09:55.010000"],["2024-07-24T03:09:56.010000"],["2024-07-24T03:09:57.010000"],["2024-07-24T03:09:58.010000"],["2024-07-24T03:09:59.010000"],["2024-07-24T03:10:00.010000"],["2024-07-24T03:10:01.010000"],["2024-07-24T03:10:02.010000"],["2024-07-24T03:10:03.010000"],["2024-07-24T03:10:04.010000"],["2024-07-24T03:10:05.010000"],["2024-07-24T03:10:06.010000"],["2024-07-24T03:10:07.010000"],["2024-07-24T03:10:08.010000"],["2024-07-24T03:10:09.010000"],["2024-07-24T03:10:10.010000"],["2024-07-24T03:10:11.010000"],["2024-07-24T03:10:12.010000"],["2024-07-24T03:10:13.010000"],["2024-07-24T03:10:14.010000"],["2024-07-24T03:10:15.010000"],["2024-07-24T03:10:16.010000"],["2024-07-24T03:10:17.010000"],["2024-07-24T03:10:18.010000"],["2024-07-24T03:10:19.010000"],["2024-07-24T03:10:20.010000"],["2024-07-24T03:10:21.010000"],["2024-07-24T03:10:22.010000"],["2024-07-24T03:10:23.010000"],["2024-07-24T03:10:24.010000"],["2024-07-24T03:10:25.010000"],["2024-07-24T03:10:26.010000"],["2024-07-24T03:10:27.010000"],["2024-07-24T03:10:28.010000"],["2024-07-24T03:10:29.010000"],["2024-07-24T03:10:30.010000"],["2024-07-24T03:10:31.010000"],["2024-07-24T03:10:32.010000"],["2024-07-24T03:10:33.010000"],["2024-07-24T03:10:34.010000"],["2024-07-24T03:10:35.010000"],["2024-07-24T03:10:36.010000"],["2024-07-24T03:10:37.010000"],["2024-07-24T03:10:38.010000"],["2024-07-24T03:10:39.010000"],["2024-07-24T03:10:40.010000"],["2024-07-24T03:10:41.010000"],["2024-07-24T03:10:42.010000"],["2024-07-24T03:10:43.010000"],["2024-07-24T03:10:44.010000"],["2024-07-24T03:10:45.010000"],["2024-07-24T03:10:46.010000"],["2024-07-24T03:10:47.010000"],["2024-07-24T03:10:48.010000"],["2024-07-24T03:10:49.010000"],["2024-07-24T03:10:50.010000"],["2024-07-24T03:10:51.010000"],["2024-07-24T03:10:52.010000"],["2024-07-24T03:10:53.010000"],["2024-07-24T03:10:54.010000"],["2024-07-24T03:10:55.010000"],["2024-07-24T03:10:56.010000"],["2024-07-24T03:10:57.010000"],["2024-07-24T03:10:58.010000"],["2024-07-24T03:10:59.010000"],["2024-07-24T03:11:00.010000"],["2024-07-24T03:11:01.010000"],["2024-07-24T03:11:02.010000"],["2024-07-24T03:11:03.010000"],["2024-07-24T03:11:04.010000"],["2024-07-24T03:11:05.010000"],["2024-07-24T03:11:06.010000"],["2024-07-24T03:11:07.010000"],["2024-07-24T03:11:08.010000"],["2024-07-24T03:11:09.010000"],["2024-07-24T03:11:10.010000"],["2024-07-24T03:11:11.010000"],["2024-07-24T03:11:12.010000"],["2024-07-24T03:11:13.010000"],["2024-07-24T03:11:14.010000"],["2024-07-24T03:11:15.010000"],["2024-07-24T03:11:16.010000"],["2024-07-24T03:11:17.010000"],["2024-07-24T03:11:18.010000"],["2024-07-24T03:11:19.010000"],["2024-07-24T03:11:20.010000"],["2024-07-24T03:11:21.010000"],["2024-07-24T03:11:22.010000"],["2024-07-24T03:11:23.010000"],["2024-07-24T03:11:24.010000"],["2024-07-24T03:11:25.010000"],["2024-07-24T03:11:26.010000"],["2024-07-24T03:11:27.010000"],["2024-07-24T03:11:28.010000"],["2024-07-24T03:11:29.010000"],["2024-07-24T03:11:30.010000"],["2024-07-24T03:11:31.010000"],["2024-07-24T03:11:32.010000"],["2024-07-24T03:11:33.010000"],["2024-07-24T03:11:34.010000"],["2024-07-24T03:11:35.010000"],["2024-07-24T03:11:36.010000"],["2024-07-24T03:11:37.010000"],["2024-07-24T03:11:38.010000"],["2024-07-24T03:11:39.010000"],["2024-07-24T03:11:40.010000"],["2024-07-24T03:11:41.010000"],["2024-07-24T03:11:42.010000"],["2024-07-24T03:11:43.010000"],["2024-07-24T03:11:44.010000"],["2024-07-24T03:11:45.010000"],["2024-07-24T03:11:46.010000"],["2024-07-24T03:11:47.010000"],["2024-07-24T03:11:48.010000"],["2024-07-24T03:11:49.010000"],["2024-07-24T03:11:50.010000"],["2024-07-24T03:11:51.010000"],["2024-07-24T03:11:52.010000"],["2024-07-24T03:11:53.010000"],["2024-07-24T03:11:54.010000"],["2024-07-24T03:11:55.010000"],["2024-07-24T03:11:56.010000"],["2024-07-24T03:11:57.010000"],["2024-07-24T03:11:58.010000"],["2024-07-24T03:11:59.010000"],["2024-07-24T03:12:00.010000"],["2024-07-24T03:12:01.010000"],["2024-07-24T03:12:02.010000"],["2024-07-24T03:12:03.010000"],["2024-07-24T03:12:04.010000"],["2024-07-24T03:12:05.010000"],["2024-07-24T03:12:06.010000"],["2024-07-24T03:12:07.010000"],["2024-07-24T03:12:08.010000"],["2024-07-24T03:12:09.010000"],["2024-07-24T03:12:10.010000"],["2024-07-24T03:12:11.010000"],["2024-07-24T03:12:12.010000"],["2024-07-24T03:12:13.010000"],["2024-07-24T03:12:14.010000"],["2024-07-24T03:12:15.010000"],["2024-07-24T03:12:16.010000"],["2024-07-24T03:12:17.010000"],["2024-07-24T03:12:18.010000"],["2024-07-24T03:12:19.010000"],["2024-07-24T03:12:20.010000"],["2024-07-24T03:12:21.010000"],["2024-07-24T03:12:22.010000"],["2024-07-24T03:12:23.010000"],["2024-07-24T03:12:24.010000"],["2024-07-24T03:12:25.010000"],["2024-07-24T03:12:26.010000"],["2024-07-24T03:12:27.010000"],["2024-07-24T03:12:28.010000"],["2024-07-24T03:12:29.010000"],["2024-07-24T03:12:30.010000"],["2024-07-24T03:12:31.010000"],["2024-07-24T03:12:32.010000"],["2024-07-24T03:12:33.010000"],["2024-07-24T03:12:34.010000"],["2024-07-24T03:12:35.010000"],["2024-07-24T03:12:36.010000"],["2024-07-24T03:12:37.010000"],["2024-07-24T03:12:38.010000"],["2024-07-24T03:12:39.010000"],["2024-07-24T03:12:40.010000"],["2024-07-24T03:12:41.010000"],["2024-07-24T03:12:42.010000"],["2024-07-24T03:12:43.010000"],["2024-07-24T03:12:44.010000"],["2024-07-24T03:12:45.010000"],["2024-07-24T03:12:46.010000"],["2024-07-24T03:12:47.010000"],["2024-07-24T03:12:48.010000"],["2024-07-24T03:12:49.010000"],["2024-07-24T03:12:50.010000"],["2024-07-24T03:12:51.010000"],["2024-07-24T03:12:52.010000"],["2024-07-24T03:12:53.010000"],["2024-07-24T03:12:54.010000"],["2024-07-24T03:12:55.010000"],["2024-07-24T03:12:56.010000"],["2024-07-24T03:12:57.010000"],["2024-07-24T03:12:58.010000"],["2024-07-24T03:12:59.010000"],["2024-07-24T03:13:00.010000"],["2024-07-24T03:13:01.010000"],["2024-07-24T03:13:02.010000"],["2024-07-24T03:13:03.010000"],["2024-07-24T03:13:04.010000"],["2024-07-24T03:13:05.010000"],["2024-07-24T03:13:06.010000"],["2024-07-24T03:13:07.010000"],["2024-07-24T03:13:08.010000"],["2024-07-24T03:13:09.010000"],["2024-07-24T03:13:10.010000"],["2024-07-24T03:13:11.010000"],["2024-07-24T03:13:12.010000"],["2024-07-24T03:13:13.010000"],["2024-07-24T03:13:14.010000"],["2024-07-24T03:13:15.010000"],["2024-07-24T03:13:16.010000"],["2024-07-24T03:13:17.010000"],["2024-07-24T03:13:18.010000"],["2024-07-24T03:13:19.010000"],["2024-07-24T03:13:20.010000"],["2024-07-24T03:13:21.010000"],["2024-07-24T03:13:22.010000"],["2024-07-24T03:13:23.010000"],["2024-07-24T03:13:24.010000"],["2024-07-24T03:13:25.010000"],["2024-07-24T03:13:26.010000"],["2024-07-24T03:13:27.010000"],["2024-07-24T03:13:28.010000"],["2024-07-24T03:13:29.010000"],["2024-07-24T03:13:30.010000"],["2024-07-24T03:13:31.010000"],["2024-07-24T03:13:32.010000"],["2024-07-24T03:13:33.010000"],["2024-07-24T03:13:34.010000"],["2024-07-24T03:13:35.010000"],["2024-07-24T03:13:36.010000"],["2024-07-24T03:13:37.010000"],["2024-07-24T03:13:38.010000"],["2024-07-24T03:13:39.010000"],["2024-07-24T03:13:40.010000"],["2024-07-24T03:13:41.010000"],["2024-07-24T03:13:42.010000"],["2024-07-24T03:13:43.010000"],["2024-07-24T03:13:44.010000"],["2024-07-24T03:13:45.010000"],["2024-07-24T03:13:46.010000"],["2024-07-24T03:13:47.010000"],["2024-07-24T03:13:48.010000"],["2024-07-24T03:13:49.010000"],["2024-07-24T03:13:50.010000"],["2024-07-24T03:13:51.010000"],["2024-07-24T03:13:52.010000"],["2024-07-24T03:13:53.010000"],["2024-07-24T03:13:54.010000"],["2024-07-24T03:13:55.010000"],["2024-07-24T03:13:56.010000"],["2024-07-24T03:13:57.010000"],["2024-07-24T03:13:58.010000"],["2024-07-24T03:13:59.010000"],["2024-07-24T03:14:00.010000"],["2024-07-24T03:14:01.010000"],["2024-07-24T03:14:02.010000"],["2024-07-24T03:14:03.010000"],["2024-07-24T03:14:04.010000"],["2024-07-24T03:14:05.010000"],["2024-07-24T03:14:06.010000"],["2024-07-24T03:14:07.010000"],["2024-07-24T03:14:08.010000"],["2024-07-24T03:14:09.010000"],["2024-07-24T03:14:10.010000"],["2024-07-24T03:14:11.010000"],["2024-07-24T03:14:12.010000"],["2024-07-24T03:14:13.010000"],["2024-07-24T03:14:14.010000"],["2024-07-24T03:14:15.010000"],["2024-07-24T03:14:16.010000"],["2024-07-24T03:14:17.010000"],["2024-07-24T03:14:18.010000"],["2024-07-24T03:14:19.010000"],["2024-07-24T03:14:20.010000"],["2024-07-24T03:14:21.010000"],["2024-07-24T03:14:22.010000"],["2024-07-24T03:14:23.010000"],["2024-07-24T03:14:24.010000"],["2024-07-24T03:14:25.010000"],["2024-07-24T03:14:26.010000"],["2024-07-24T03:14:27.010000"],["2024-07-24T03:14:28.010000"],["2024-07-24T03:14:29.010000"],["2024-07-24T03:14:30.010000"],["2024-07-24T03:14:31.010000"],["2024-07-24T03:14:32.010000"],["2024-07-24T03:14:33.010000"],["2024-07-24T03:14:34.010000"],["2024-07-24T03:14:35.010000"],["2024-07-24T03:14:36.010000"],["2024-07-24T03:14:37.010000"],["2024-07-24T03:14:38.010000"],["2024-07-24T03:14:39.010000"],["2024-07-24T03:14:40.010000"],["2024-07-24T03:14:41.010000"],["2024-07-24T03:14:42.010000"],["2024-07-24T03:14:43.010000"],["2024-07-24T03:14:44.010000"],["2024-07-24T03:14:45.010000"],["2024-07-24T03:14:46.010000"],["2024-07-24T03:14:47.010000"],["2024-07-24T03:14:48.010000"],["2024-07-24T03:14:49.010000"],["2024-07-24T03:14:50.010000"],["2024-07-24T03:14:51.010000"],["2024-07-24T03:14:52.010000"],["2024-07-24T03:14:53.010000"],["2024-07-24T03:14:54.010000"],["2024-07-24T03:14:55.010000"],["2024-07-24T03:14:56.010000"],["2024-07-24T03:14:57.010000"],["2024-07-24T03:14:58.010000"],["2024-07-24T03:14:59.010000"],["2024-07-24T03:15:00.010000"],["2024-07-24T03:15:01.010000"],["2024-07-24T03:15:02.010000"],["2024-07-24T03:15:03.010000"],["2024-07-24T03:15:04.010000"],["2024-07-24T03:15:05.010000"],["2024-07-24T03:15:06.010000"],["2024-07-24T03:15:07.010000"],["2024-07-24T03:15:08.010000"],["2024-07-24T03:15:09.010000"],["2024-07-24T03:15:10.010000"],["2024-07-24T03:15:11.010000"],["2024-07-24T03:15:12.010000"],["2024-07-24T03:15:13.010000"],["2024-07-24T03:15:14.010000"],["2024-07-24T03:15:15.010000"],["2024-07-24T03:15:16.010000"],["2024-07-24T03:15:17.010000"],["2024-07-24T03:15:18.010000"],["2024-07-24T03:15:19.010000"],["2024-07-24T03:15:20.010000"],["2024-07-24T03:15:21.010000"],["2024-07-24T03:15:22.010000"],["2024-07-24T03:15:23.010000"],["2024-07-24T03:15:24.010000"],["2024-07-24T03:15:25.010000"],["2024-07-24T03:15:26.010000"],["2024-07-24T03:15:27.010000"],["2024-07-24T03:15:28.010000"],["2024-07-24T03:15:29.010000"],["2024-07-24T03:15:30.010000"],["2024-07-24T03:15:31.010000"],["2024-07-24T03:15:32.010000"],["2024-07-24T03:15:33.010000"],["2024-07-24T03:15:34.010000"],["2024-07-24T03:15:35.010000"],["2024-07-24T03:15:36.010000"],["2024-07-24T03:15:37.010000"],["2024-07-24T03:15:38.010000"],["2024-07-24T03:15:39.010000"],["2024-07-24T03:15:40.010000"],["2024-07-24T03:15:41.010000"],["2024-07-24T03:15:42.010000"],["2024-07-24T03:15:43.010000"],["2024-07-24T03:15:44.010000"],["2024-07-24T03:15:45.010000"],["2024-07-24T03:15:46.010000"],["2024-07-24T03:15:47.010000"],["2024-07-24T03:15:48.010000"],["2024-07-24T03:15:49.010000"],["2024-07-24T03:15:50.010000"],["2024-07-24T03:15:51.010000"],["2024-07-24T03:15:52.010000"],["2024-07-24T03:15:53.010000"],["2024-07-24T03:15:54.010000"],["2024-07-24T03:15:55.010000"],["2024-07-24T03:15:56.010000"],["2024-07-24T03:15:57.010000"],["2024-07-24T03:15:58.010000"],["2024-07-24T03:15:59.010000"],["2024-07-24T03:16:00.010000"],["2024-07-24T03:16:01.010000"],["2024-07-24T03:16:02.010000"],["2024-07-24T03:16:03.010000"],["2024-07-24T03:16:04.010000"],["2024-07-24T03:16:05.010000"],["2024-07-24T03:16:06.010000"],["2024-07-24T03:16:07.010000"],["2024-07-24T03:16:08.010000"],["2024-07-24T03:16:09.010000"],["2024-07-24T03:16:10.010000"],["2024-07-24T03:16:11.010000"],["2024-07-24T03:16:12.010000"],["2024-07-24T03:16:13.010000"],["2024-07-24T03:16:14.010000"],["2024-07-24T03:16:15.010000"],["2024-07-24T03:16:16.010000"],["2024-07-24T03:16:17.010000"],["2024-07-24T03:16:18.010000"],["2024-07-24T03:16:19.010000"],["2024-07-24T03:16:20.010000"],["2024-07-24T03:16:21.010000"],["2024-07-24T03:16:22.010000"],["2024-07-24T03:16:23.010000"],["2024-07-24T03:16:24.010000"],["2024-07-24T03:16:25.010000"],["2024-07-24T03:16:26.010000"],["2024-07-24T03:16:27.010000"],["2024-07-24T03:16:28.010000"],["2024-07-24T03:16:29.010000"],["2024-07-24T03:16:30.010000"],["2024-07-24T03:16:31.010000"],["2024-07-24T03:16:32.010000"],["2024-07-24T03:16:33.010000"],["2024-07-24T03:16:34.010000"],["2024-07-24T03:16:35.010000"],["2024-07-24T03:16:36.010000"],["2024-07-24T03:16:37.010000"],["2024-07-24T03:16:38.010000"],["2024-07-24T03:16:39.010000"],["2024-07-24T03:16:40.010000"],["2024-07-24T03:16:41.010000"],["2024-07-24T03:16:42.010000"],["2024-07-24T03:16:43.010000"],["2024-07-24T03:16:44.010000"],["2024-07-24T03:16:45.010000"],["2024-07-24T03:16:46.010000"],["2024-07-24T03:16:47.010000"],["2024-07-24T03:16:48.010000"],["2024-07-24T03:16:49.010000"],["2024-07-24T03:16:50.010000"],["2024-07-24T03:16:51.010000"],["2024-07-24T03:16:52.010000"],["2024-07-24T03:16:53.010000"],["2024-07-24T03:16:54.010000"],["2024-07-24T03:16:55.010000"],["2024-07-24T03:16:56.010000"],["2024-07-24T03:16:57.010000"],["2024-07-24T03:16:58.010000"],["2024-07-24T03:16:59.010000"],["2024-07-24T03:17:00.010000"],["2024-07-24T03:17:01.010000"],["2024-07-24T03:17:02.010000"],["2024-07-24T03:17:03.010000"],["2024-07-24T03:17:04.010000"],["2024-07-24T03:17:05.010000"],["2024-07-24T03:17:06.010000"],["2024-07-24T03:17:07.010000"],["2024-07-24T03:17:08.010000"],["2024-07-24T03:17:09.010000"],["2024-07-24T03:17:10.010000"],["2024-07-24T03:17:11.010000"],["2024-07-24T03:17:12.010000"],["2024-07-24T03:17:13.010000"],["2024-07-24T03:17:14.010000"],["2024-07-24T03:17:15.010000"],["2024-07-24T03:17:16.010000"],["2024-07-24T03:17:17.010000"],["2024-07-24T03:17:18.010000"],["2024-07-24T03:17:19.010000"],["2024-07-24T03:17:20.010000"],["2024-07-24T03:17:21.010000"],["2024-07-24T03:17:22.010000"],["2024-07-24T03:17:23.010000"],["2024-07-24T03:17:24.010000"],["2024-07-24T03:17:25.010000"],["2024-07-24T03:17:26.010000"],["2024-07-24T03:17:27.010000"],["2024-07-24T03:17:28.010000"],["2024-07-24T03:17:29.010000"],["2024-07-24T03:17:30.010000"],["2024-07-24T03:17:31.010000"],["2024-07-24T03:17:32.010000"],["2024-07-24T03:17:33.010000"],["2024-07-24T03:17:34.010000"],["2024-07-24T03:17:35.010000"],["2024-07-24T03:17:36.010000"],["2024-07-24T03:17:37.010000"],["2024-07-24T03:17:38.010000"],["2024-07-24T03:17:39.010000"],["2024-07-24T03:17:40.010000"],["2024-07-24T03:17:41.010000"],["2024-07-24T03:17:42.010000"],["2024-07-24T03:17:43.010000"],["2024-07-24T03:17:44.010000"],["2024-07-24T03:17:45.010000"],["2024-07-24T03:17:46.010000"],["2024-07-24T03:17:47.010000"],["2024-07-24T03:17:48.010000"],["2024-07-24T03:17:49.010000"],["2024-07-24T03:17:50.010000"],["2024-07-24T03:17:51.010000"],["2024-07-24T03:17:52.010000"],["2024-07-24T03:17:53.010000"],["2024-07-24T03:17:54.010000"],["2024-07-24T03:17:55.010000"],["2024-07-24T03:17:56.010000"],["2024-07-24T03:17:57.010000"],["2024-07-24T03:17:58.010000"],["2024-07-24T03:17:59.010000"],["2024-07-24T03:18:00.010000"],["2024-07-24T03:18:01.010000"],["2024-07-24T03:18:02.010000"],["2024-07-24T03:18:03.010000"],["2024-07-24T03:18:04.010000"],["2024-07-24T03:18:05.010000"],["2024-07-24T03:18:06.010000"],["2024-07-24T03:18:07.010000"],["2024-07-24T03:18:08.010000"],["2024-07-24T03:18:09.010000"],["2024-07-24T03:18:10.010000"],["2024-07-24T03:18:11.010000"],["2024-07-24T03:18:12.010000"],["2024-07-24T03:18:13.010000"],["2024-07-24T03:18:14.010000"],["2024-07-24T03:18:15.010000"],["2024-07-24T03:18:16.010000"],["2024-07-24T03:18:17.010000"],["2024-07-24T03:18:18.010000"],["2024-07-24T03:18:19.010000"],["2024-07-24T03:18:20.010000"],["2024-07-24T03:18:21.010000"],["2024-07-24T03:18:22.010000"],["2024-07-24T03:18:23.010000"],["2024-07-24T03:18:24.010000"],["2024-07-24T03:18:25.010000"],["2024-07-24T03:18:26.010000"],["2024-07-24T03:18:27.010000"],["2024-07-24T03:18:28.010000"],["2024-07-24T03:18:29.010000"],["2024-07-24T03:18:30.010000"],["2024-07-24T03:18:31.010000"],["2024-07-24T03:18:32.010000"],["2024-07-24T03:18:33.010000"],["2024-07-24T03:18:34.010000"],["2024-07-24T03:18:35.010000"],["2024-07-24T03:18:36.010000"],["2024-07-24T03:18:37.010000"],["2024-07-24T03:18:38.010000"],["2024-07-24T03:18:39.010000"],["2024-07-24T03:18:40.010000"],["2024-07-24T03:18:41.010000"],["2024-07-24T03:18:42.010000"],["2024-07-24T03:18:43.010000"],["2024-07-24T03:18:44.010000"],["2024-07-24T03:18:45.010000"],["2024-07-24T03:18:46.010000"],["2024-07-24T03:18:47.010000"],["2024-07-24T03:18:48.010000"],["2024-07-24T03:18:49.010000"],["2024-07-24T03:18:50.010000"],["2024-07-24T03:18:51.010000"],["2024-07-24T03:18:52.010000"],["2024-07-24T03:18:53.010000"],["2024-07-24T03:18:54.010000"],["2024-07-24T03:18:55.010000"],["2024-07-24T03:18:56.010000"],["2024-07-24T03:18:57.010000"],["2024-07-24T03:18:58.010000"],["2024-07-24T03:18:59.010000"],["2024-07-24T03:19:00.010000"],["2024-07-24T03:19:01.010000"],["2024-07-24T03:19:02.010000"],["2024-07-24T03:19:03.010000"],["2024-07-24T03:19:04.010000"],["2024-07-24T03:19:05.010000"],["2024-07-24T03:19:06.010000"],["2024-07-24T03:19:07.010000"],["2024-07-24T03:19:08.010000"],["2024-07-24T03:19:09.010000"],["2024-07-24T03:19:10.010000"],["2024-07-24T03:19:11.010000"],["2024-07-24T03:19:12.010000"],["2024-07-24T03:19:13.010000"],["2024-07-24T03:19:14.010000"],["2024-07-24T03:19:15.010000"],["2024-07-24T03:19:16.010000"],["2024-07-24T03:19:17.010000"],["2024-07-24T03:19:18.010000"],["2024-07-24T03:19:19.010000"],["2024-07-24T03:19:20.010000"],["2024-07-24T03:19:21.010000"],["2024-07-24T03:19:22.010000"],["2024-07-24T03:19:23.010000"],["2024-07-24T03:19:24.010000"],["2024-07-24T03:19:25.010000"],["2024-07-24T03:19:26.010000"],["2024-07-24T03:19:27.010000"],["2024-07-24T03:19:28.010000"],["2024-07-24T03:19:29.010000"],["2024-07-24T03:19:30.010000"],["2024-07-24T03:19:31.010000"],["2024-07-24T03:19:32.010000"],["2024-07-24T03:19:33.010000"],["2024-07-24T03:19:34.010000"],["2024-07-24T03:19:35.010000"],["2024-07-24T03:19:36.010000"],["2024-07-24T03:19:37.010000"],["2024-07-24T03:19:38.010000"],["2024-07-24T03:19:39.010000"],["2024-07-24T03:19:40.010000"],["2024-07-24T03:19:41.010000"],["2024-07-24T03:19:42.010000"],["2024-07-24T03:19:43.010000"],["2024-07-24T03:19:44.010000"],["2024-07-24T03:19:45.010000"],["2024-07-24T03:19:46.010000"],["2024-07-24T03:19:47.010000"],["2024-07-24T03:19:48.010000"],["2024-07-24T03:19:49.010000"],["2024-07-24T03:19:50.010000"],["2024-07-24T03:19:51.010000"],["2024-07-24T03:19:52.010000"],["2024-07-24T03:19:53.010000"],["2024-07-24T03:19:54.010000"],["2024-07-24T03:19:55.010000"],["2024-07-24T03:19:56.010000"],["2024-07-24T03:19:57.010000"],["2024-07-24T03:19:58.010000"],["2024-07-24T03:19:59.010000"],["2024-07-24T03:20:00.010000"],["2024-07-24T03:20:01.010000"],["2024-07-24T03:20:02.010000"],["2024-07-24T03:20:03.010000"],["2024-07-24T03:20:04.010000"],["2024-07-24T03:20:05.010000"],["2024-07-24T03:20:06.010000"],["2024-07-24T03:20:07.010000"],["2024-07-24T03:20:08.010000"],["2024-07-24T03:20:09.010000"],["2024-07-24T03:20:10.010000"],["2024-07-24T03:20:11.010000"],["2024-07-24T03:20:12.010000"],["2024-07-24T03:20:13.010000"],["2024-07-24T03:20:14.010000"],["2024-07-24T03:20:15.010000"],["2024-07-24T03:20:16.010000"],["2024-07-24T03:20:17.010000"],["2024-07-24T03:20:18.010000"],["2024-07-24T03:20:19.010000"],["2024-07-24T03:20:20.010000"],["2024-07-24T03:20:21.010000"],["2024-07-24T03:20:22.010000"],["2024-07-24T03:20:23.010000"],["2024-07-24T03:20:24.010000"],["2024-07-24T03:20:25.010000"],["2024-07-24T03:20:26.010000"],["2024-07-24T03:20:27.010000"],["2024-07-24T03:20:28.010000"],["2024-07-24T03:20:29.010000"],["2024-07-24T03:20:30.010000"],["2024-07-24T03:20:31.010000"],["2024-07-24T03:20:32.010000"],["2024-07-24T03:20:33.010000"],["2024-07-24T03:20:34.010000"],["2024-07-24T03:20:35.010000"],["2024-07-24T03:20:36.010000"],["2024-07-24T03:20:37.010000"],["2024-07-24T03:20:38.010000"],["2024-07-24T03:20:39.010000"],["2024-07-24T03:20:40.010000"],["2024-07-24T03:20:41.010000"],["2024-07-24T03:20:42.010000"],["2024-07-24T03:20:43.010000"],["2024-07-24T03:20:44.010000"],["2024-07-24T03:20:45.010000"],["2024-07-24T03:20:46.010000"],["2024-07-24T03:20:47.010000"],["2024-07-24T03:20:48.010000"],["2024-07-24T03:20:49.010000"],["2024-07-24T03:20:50.010000"],["2024-07-24T03:20:51.010000"],["2024-07-24T03:20:52.010000"],["2024-07-24T03:20:53.010000"],["2024-07-24T03:20:54.010000"],["2024-07-24T03:20:55.010000"],["2024-07-24T03:20:56.010000"],["2024-07-24T03:20:57.010000"],["2024-07-24T03:20:58.010000"],["2024-07-24T03:20:59.010000"],["2024-07-24T03:21:00.010000"],["2024-07-24T03:21:01.010000"],["2024-07-24T03:21:02.010000"],["2024-07-24T03:21:03.010000"],["2024-07-24T03:21:04.010000"],["2024-07-24T03:21:05.010000"],["2024-07-24T03:21:06.010000"],["2024-07-24T03:21:07.010000"],["2024-07-24T03:21:08.010000"],["2024-07-24T03:21:09.010000"],["2024-07-24T03:21:10.010000"],["2024-07-24T03:21:11.010000"],["2024-07-24T03:21:12.010000"],["2024-07-24T03:21:13.010000"],["2024-07-24T03:21:14.010000"],["2024-07-24T03:21:15.010000"],["2024-07-24T03:21:16.010000"],["2024-07-24T03:21:17.010000"],["2024-07-24T03:21:18.010000"],["2024-07-24T03:21:19.010000"],["2024-07-24T03:21:20.010000"],["2024-07-24T03:21:21.010000"],["2024-07-24T03:21:22.010000"],["2024-07-24T03:21:23.010000"],["2024-07-24T03:21:24.010000"],["2024-07-24T03:21:25.010000"],["2024-07-24T03:21:26.010000"],["2024-07-24T03:21:27.010000"],["2024-07-24T03:21:28.010000"],["2024-07-24T03:21:29.010000"],["2024-07-24T03:21:30.010000"],["2024-07-24T03:21:31.010000"],["2024-07-24T03:21:32.010000"],["2024-07-24T03:21:33.010000"],["2024-07-24T03:21:34.010000"],["2024-07-24T03:21:35.010000"],["2024-07-24T03:21:36.010000"],["2024-07-24T03:21:37.010000"],["2024-07-24T03:21:38.010000"],["2024-07-24T03:21:39.010000"],["2024-07-24T03:21:40.010000"],["2024-07-24T03:21:41.010000"],["2024-07-24T03:21:42.010000"],["2024-07-24T03:21:43.010000"],["2024-07-24T03:21:44.010000"],["2024-07-24T03:21:45.010000"],["2024-07-24T03:21:46.010000"],["2024-07-24T03:21:47.010000"],["2024-07-24T03:21:48.010000"],["2024-07-24T03:21:49.010000"],["2024-07-24T03:21:50.010000"],["2024-07-24T03:21:51.010000"],["2024-07-24T03:21:52.010000"],["2024-07-24T03:21:53.010000"],["2024-07-24T03:21:54.010000"],["2024-07-24T03:21:55.010000"],["2024-07-24T03:21:56.010000"],["2024-07-24T03:21:57.010000"],["2024-07-24T03:21:58.010000"],["2024-07-24T03:21:59.010000"],["2024-07-24T03:22:00.010000"],["2024-07-24T03:22:01.010000"],["2024-07-24T03:22:02.010000"],["2024-07-24T03:22:03.010000"],["2024-07-24T03:22:04.010000"],["2024-07-24T03:22:05.010000"],["2024-07-24T03:22:06.010000"],["2024-07-24T03:22:07.010000"],["2024-07-24T03:22:08.010000"],["2024-07-24T03:22:09.010000"],["2024-07-24T03:22:10.010000"],["2024-07-24T03:22:11.010000"],["2024-07-24T03:22:12.010000"],["2024-07-24T03:22:13.010000"],["2024-07-24T03:22:14.010000"],["2024-07-24T03:22:15.010000"],["2024-07-24T03:22:16.010000"],["2024-07-24T03:22:17.010000"],["2024-07-24T03:22:18.010000"],["2024-07-24T03:22:19.010000"],["2024-07-24T03:22:20.010000"],["2024-07-24T03:22:21.010000"],["2024-07-24T03:22:22.010000"],["2024-07-24T03:22:23.010000"],["2024-07-24T03:22:24.010000"],["2024-07-24T03:22:25.010000"],["2024-07-24T03:22:26.010000"],["2024-07-24T03:22:27.010000"],["2024-07-24T03:22:28.010000"],["2024-07-24T03:22:29.010000"],["2024-07-24T03:22:30.010000"],["2024-07-24T03:22:31.010000"],["2024-07-24T03:22:32.010000"],["2024-07-24T03:22:33.010000"],["2024-07-24T03:22:34.010000"],["2024-07-24T03:22:35.010000"],["2024-07-24T03:22:36.010000"],["2024-07-24T03:22:37.010000"],["2024-07-24T03:22:38.010000"],["2024-07-24T03:22:39.010000"],["2024-07-24T03:22:40.010000"],["2024-07-24T03:22:41.010000"],["2024-07-24T03:22:42.010000"],["2024-07-24T03:22:43.010000"],["2024-07-24T03:22:44.010000"],["2024-07-24T03:22:45.010000"],["2024-07-24T03:22:46.010000"],["2024-07-24T03:22:47.010000"],["2024-07-24T03:22:48.010000"],["2024-07-24T03:22:49.010000"],["2024-07-24T03:22:50.010000"],["2024-07-24T03:22:51.010000"],["2024-07-24T03:22:52.010000"],["2024-07-24T03:22:53.010000"],["2024-07-24T03:22:54.010000"],["2024-07-24T03:22:55.010000"],["2024-07-24T03:22:56.010000"],["2024-07-24T03:22:57.010000"],["2024-07-24T03:22:58.010000"],["2024-07-24T03:22:59.010000"],["2024-07-24T03:23:00.010000"],["2024-07-24T03:23:01.010000"],["2024-07-24T03:23:02.010000"],["2024-07-24T03:23:03.010000"],["2024-07-24T03:23:04.010000"],["2024-07-24T03:23:05.010000"],["2024-07-24T03:23:06.010000"],["2024-07-24T03:23:07.010000"],["2024-07-24T03:23:08.010000"],["2024-07-24T03:23:09.010000"],["2024-07-24T03:23:10.010000"],["2024-07-24T03:23:11.010000"],["2024-07-24T03:23:12.010000"],["2024-07-24T03:23:13.010000"],["2024-07-24T03:23:14.010000"],["2024-07-24T03:23:15.010000"],["2024-07-24T03:23:16.010000"],["2024-07-24T03:23:17.010000"],["2024-07-24T03:23:18.010000"],["2024-07-24T03:23:19.010000"],["2024-07-24T03:23:20.010000"],["2024-07-24T03:23:21.010000"],["2024-07-24T03:23:22.010000"],["2024-07-24T03:23:23.010000"],["2024-07-24T03:23:24.010000"],["2024-07-24T03:23:25.010000"],["2024-07-24T03:23:26.010000"],["2024-07-24T03:23:27.010000"],["2024-07-24T03:23:28.010000"],["2024-07-24T03:23:29.010000"],["2024-07-24T03:23:30.010000"],["2024-07-24T03:23:31.010000"],["2024-07-24T03:23:32.010000"],["2024-07-24T03:23:33.010000"],["2024-07-24T03:23:34.010000"],["2024-07-24T03:23:35.010000"],["2024-07-24T03:23:36.010000"],["2024-07-24T03:23:37.010000"],["2024-07-24T03:23:38.010000"],["2024-07-24T03:23:39.010000"],["2024-07-24T03:23:40.010000"],["2024-07-24T03:23:41.010000"],["2024-07-24T03:23:42.010000"],["2024-07-24T03:23:43.010000"],["2024-07-24T03:23:44.010000"],["2024-07-24T03:23:45.010000"],["2024-07-24T03:23:46.010000"],["2024-07-24T03:23:47.010000"],["2024-07-24T03:23:48.010000"],["2024-07-24T03:23:49.010000"],["2024-07-24T03:23:50.010000"],["2024-07-24T03:23:51.010000"],["2024-07-24T03:23:52.010000"],["2024-07-24T03:23:53.010000"],["2024-07-24T03:23:54.010000"],["2024-07-24T03:23:55.010000"],["2024-07-24T03:23:56.010000"],["2024-07-24T03:23:57.010000"],["2024-07-24T03:23:58.010000"],["2024-07-24T03:23:59.010000"],["2024-07-24T03:24:00.010000"],["2024-07-24T03:24:01.010000"],["2024-07-24T03:24:02.010000"],["2024-07-24T03:24:03.010000"],["2024-07-24T03:24:04.010000"],["2024-07-24T03:24:05.010000"],["2024-07-24T03:24:06.010000"],["2024-07-24T03:24:07.010000"],["2024-07-24T03:24:08.010000"],["2024-07-24T03:24:09.010000"],["2024-07-24T03:24:10.010000"],["2024-07-24T03:24:11.010000"],["2024-07-24T03:24:12.010000"],["2024-07-24T03:24:13.010000"],["2024-07-24T03:24:14.010000"],["2024-07-24T03:24:15.010000"],["2024-07-24T03:24:16.010000"],["2024-07-24T03:24:17.010000"],["2024-07-24T03:24:18.010000"],["2024-07-24T03:24:19.010000"],["2024-07-24T03:24:20.010000"],["2024-07-24T03:24:21.010000"],["2024-07-24T03:24:22.010000"],["2024-07-24T03:24:23.010000"],["2024-07-24T03:24:24.010000"],["2024-07-24T03:24:25.010000"],["2024-07-24T03:24:26.010000"],["2024-07-24T03:24:27.010000"],["2024-07-24T03:24:28.010000"],["2024-07-24T03:24:29.010000"],["2024-07-24T03:24:30.010000"],["2024-07-24T03:24:31.010000"],["2024-07-24T03:24:32.010000"],["2024-07-24T03:24:33.010000"],["2024-07-24T03:24:34.010000"],["2024-07-24T03:24:35.010000"],["2024-07-24T03:24:36.010000"],["2024-07-24T03:24:37.010000"],["2024-07-24T03:24:38.010000"],["2024-07-24T03:24:39.010000"],["2024-07-24T03:24:40.010000"],["2024-07-24T03:24:41.010000"],["2024-07-24T03:24:42.010000"],["2024-07-24T03:24:43.010000"],["2024-07-24T03:24:44.010000"],["2024-07-24T03:24:45.010000"],["2024-07-24T03:24:46.010000"],["2024-07-24T03:24:47.010000"],["2024-07-24T03:24:48.010000"],["2024-07-24T03:24:49.010000"],["2024-07-24T03:24:50.010000"],["2024-07-24T03:24:51.010000"],["2024-07-24T03:24:52.010000"],["2024-07-24T03:24:53.010000"],["2024-07-24T03:24:54.010000"],["2024-07-24T03:24:55.010000"],["2024-07-24T03:24:56.010000"],["2024-07-24T03:24:57.010000"],["2024-07-24T03:24:58.010000"],["2024-07-24T03:24:59.010000"],["2024-07-24T03:25:00.010000"],["2024-07-24T03:25:01.010000"],["2024-07-24T03:25:02.010000"],["2024-07-24T03:25:03.010000"],["2024-07-24T03:25:04.010000"],["2024-07-24T03:25:05.010000"],["2024-07-24T03:25:06.010000"],["2024-07-24T03:25:07.010000"],["2024-07-24T03:25:08.010000"],["2024-07-24T03:25:09.010000"],["2024-07-24T03:25:10.010000"],["2024-07-24T03:25:11.010000"],["2024-07-24T03:25:12.010000"],["2024-07-24T03:25:13.010000"],["2024-07-24T03:25:14.010000"],["2024-07-24T03:25:15.010000"],["2024-07-24T03:25:16.010000"],["2024-07-24T03:25:17.010000"],["2024-07-24T03:25:18.010000"],["2024-07-24T03:25:19.010000"],["2024-07-24T03:25:20.010000"],["2024-07-24T03:25:21.010000"],["2024-07-24T03:25:22.010000"],["2024-07-24T03:25:23.010000"],["2024-07-24T03:25:24.010000"],["2024-07-24T03:25:25.010000"],["2024-07-24T03:25:26.010000"],["2024-07-24T03:25:27.010000"],["2024-07-24T03:25:28.010000"],["2024-07-24T03:25:29.010000"],["2024-07-24T03:25:30.010000"],["2024-07-24T03:25:31.010000"],["2024-07-24T03:25:32.010000"],["2024-07-24T03:25:33.010000"],["2024-07-24T03:25:34.010000"],["2024-07-24T03:25:35.010000"],["2024-07-24T03:25:36.010000"],["2024-07-24T03:25:37.010000"],["2024-07-24T03:25:38.010000"],["2024-07-24T03:25:39.010000"],["2024-07-24T03:25:40.010000"],["2024-07-24T03:25:41.010000"],["2024-07-24T03:25:42.010000"],["2024-07-24T03:25:43.010000"],["2024-07-24T03:25:44.010000"],["2024-07-24T03:25:45.010000"],["2024-07-24T03:25:46.010000"],["2024-07-24T03:25:47.010000"],["2024-07-24T03:25:48.010000"],["2024-07-24T03:25:49.010000"],["2024-07-24T03:25:50.010000"],["2024-07-24T03:25:51.010000"],["2024-07-24T03:25:52.010000"],["2024-07-24T03:25:53.010000"],["2024-07-24T03:25:54.010000"],["2024-07-24T03:25:55.010000"],["2024-07-24T03:25:56.010000"],["2024-07-24T03:25:57.010000"],["2024-07-24T03:25:58.010000"],["2024-07-24T03:25:59.010000"],["2024-07-24T03:26:00.010000"],["2024-07-24T03:26:01.010000"],["2024-07-24T03:26:02.010000"],["2024-07-24T03:26:03.010000"],["2024-07-24T03:26:04.010000"],["2024-07-24T03:26:05.010000"],["2024-07-24T03:26:06.010000"],["2024-07-24T03:26:07.010000"],["2024-07-24T03:26:08.010000"],["2024-07-24T03:26:09.010000"],["2024-07-24T03:26:10.010000"],["2024-07-24T03:26:11.010000"],["2024-07-24T03:26:12.010000"],["2024-07-24T03:26:13.010000"],["2024-07-24T03:26:14.010000"],["2024-07-24T03:26:15.010000"],["2024-07-24T03:26:16.010000"],["2024-07-24T03:26:17.010000"],["2024-07-24T03:26:18.010000"],["2024-07-24T03:26:19.010000"],["2024-07-24T03:26:20.010000"],["2024-07-24T03:26:21.010000"],["2024-07-24T03:26:22.010000"],["2024-07-24T03:26:23.010000"],["2024-07-24T03:26:24.010000"],["2024-07-24T03:26:25.010000"],["2024-07-24T03:26:26.010000"],["2024-07-24T03:26:27.010000"],["2024-07-24T03:26:28.010000"],["2024-07-24T03:26:29.010000"],["2024-07-24T03:26:30.010000"],["2024-07-24T03:26:31.010000"],["2024-07-24T03:26:32.010000"],["2024-07-24T03:26:33.010000"],["2024-07-24T03:26:34.010000"],["2024-07-24T03:26:35.010000"],["2024-07-24T03:26:36.010000"],["2024-07-24T03:26:37.010000"],["2024-07-24T03:26:38.010000"],["2024-07-24T03:26:39.010000"],["2024-07-24T03:26:40.010000"],["2024-07-24T03:26:41.010000"],["2024-07-24T03:26:42.010000"],["2024-07-24T03:26:43.010000"],["2024-07-24T03:26:44.010000"],["2024-07-24T03:26:45.010000"],["2024-07-24T03:26:46.010000"],["2024-07-24T03:26:47.010000"],["2024-07-24T03:26:48.010000"],["2024-07-24T03:26:49.010000"],["2024-07-24T03:26:50.010000"],["2024-07-24T03:26:51.010000"],["2024-07-24T03:26:52.010000"],["2024-07-24T03:26:53.010000"],["2024-07-24T03:26:54.010000"],["2024-07-24T03:26:55.010000"],["2024-07-24T03:26:56.010000"],["2024-07-24T03:26:57.010000"],["2024-07-24T03:26:58.010000"],["2024-07-24T03:26:59.010000"],["2024-07-24T03:27:00.010000"],["2024-07-24T03:27:01.010000"],["2024-07-24T03:27:02.010000"],["2024-07-24T03:27:03.010000"],["2024-07-24T03:27:04.010000"],["2024-07-24T03:27:05.010000"],["2024-07-24T03:27:06.010000"],["2024-07-24T03:27:07.010000"],["2024-07-24T03:27:08.010000"],["2024-07-24T03:27:09.010000"],["2024-07-24T03:27:10.010000"],["2024-07-24T03:27:11.010000"],["2024-07-24T03:27:12.010000"],["2024-07-24T03:27:13.010000"],["2024-07-24T03:27:14.010000"],["2024-07-24T03:27:15.010000"],["2024-07-24T03:27:16.010000"],["2024-07-24T03:27:17.010000"],["2024-07-24T03:27:18.010000"],["2024-07-24T03:27:19.010000"],["2024-07-24T03:27:20.010000"],["2024-07-24T03:27:21.010000"],["2024-07-24T03:27:22.010000"],["2024-07-24T03:27:23.010000"],["2024-07-24T03:27:24.010000"],["2024-07-24T03:27:25.010000"],["2024-07-24T03:27:26.010000"],["2024-07-24T03:27:27.010000"],["2024-07-24T03:27:28.010000"],["2024-07-24T03:27:29.010000"],["2024-07-24T03:27:30.010000"],["2024-07-24T03:27:31.010000"],["2024-07-24T03:27:32.010000"],["2024-07-24T03:27:33.010000"],["2024-07-24T03:27:34.010000"],["2024-07-24T03:27:35.010000"],["2024-07-24T03:27:36.010000"],["2024-07-24T03:27:37.010000"],["2024-07-24T03:27:38.010000"],["2024-07-24T03:27:39.010000"],["2024-07-24T03:27:40.010000"],["2024-07-24T03:27:41.010000"],["2024-07-24T03:27:42.010000"],["2024-07-24T03:27:43.010000"],["2024-07-24T03:27:44.010000"],["2024-07-24T03:27:45.010000"],["2024-07-24T03:27:46.010000"],["2024-07-24T03:27:47.010000"],["2024-07-24T03:27:48.010000"],["2024-07-24T03:27:49.010000"],["2024-07-24T03:27:50.010000"],["2024-07-24T03:27:51.010000"],["2024-07-24T03:27:52.010000"],["2024-07-24T03:27:53.010000"],["2024-07-24T03:27:54.010000"],["2024-07-24T03:27:55.010000"],["2024-07-24T03:27:56.010000"],["2024-07-24T03:27:57.010000"],["2024-07-24T03:27:58.010000"],["2024-07-24T03:27:59.010000"],["2024-07-24T03:28:00.010000"],["2024-07-24T03:28:01.010000"],["2024-07-24T03:28:02.010000"],["2024-07-24T03:28:03.010000"],["2024-07-24T03:28:04.010000"],["2024-07-24T03:28:05.010000"],["2024-07-24T03:28:06.010000"],["2024-07-24T03:28:07.010000"],["2024-07-24T03:28:08.010000"],["2024-07-24T03:28:09.010000"],["2024-07-24T03:28:10.010000"],["2024-07-24T03:28:11.010000"],["2024-07-24T03:28:12.010000"],["2024-07-24T03:28:13.010000"],["2024-07-24T03:28:14.010000"],["2024-07-24T03:28:15.010000"],["2024-07-24T03:28:16.010000"],["2024-07-24T03:28:17.010000"],["2024-07-24T03:28:18.010000"],["2024-07-24T03:28:19.010000"],["2024-07-24T03:28:20.010000"],["2024-07-24T03:28:21.010000"],["2024-07-24T03:28:22.010000"],["2024-07-24T03:28:23.010000"],["2024-07-24T03:28:24.010000"],["2024-07-24T03:28:25.010000"],["2024-07-24T03:28:26.010000"],["2024-07-24T03:28:27.010000"],["2024-07-24T03:28:28.010000"],["2024-07-24T03:28:29.010000"],["2024-07-24T03:28:30.010000"],["2024-07-24T03:28:31.010000"],["2024-07-24T03:28:32.010000"],["2024-07-24T03:28:33.010000"],["2024-07-24T03:28:34.010000"],["2024-07-24T03:28:35.010000"],["2024-07-24T03:28:36.010000"],["2024-07-24T03:28:37.010000"],["2024-07-24T03:28:38.010000"],["2024-07-24T03:28:39.010000"],["2024-07-24T03:28:40.010000"],["2024-07-24T03:28:41.010000"],["2024-07-24T03:28:42.010000"],["2024-07-24T03:28:43.010000"],["2024-07-24T03:28:44.010000"],["2024-07-24T03:28:45.010000"],["2024-07-24T03:28:46.010000"],["2024-07-24T03:28:47.010000"],["2024-07-24T03:28:48.010000"],["2024-07-24T03:28:49.010000"],["2024-07-24T03:28:50.010000"],["2024-07-24T03:28:51.010000"],["2024-07-24T03:28:52.010000"],["2024-07-24T03:28:53.010000"],["2024-07-24T03:28:54.010000"],["2024-07-24T03:28:55.010000"],["2024-07-24T03:28:56.010000"],["2024-07-24T03:28:57.010000"],["2024-07-24T03:28:58.010000"],["2024-07-24T03:28:59.010000"],["2024-07-24T03:29:00.010000"],["2024-07-24T03:29:01.010000"],["2024-07-24T03:29:02.010000"],["2024-07-24T03:29:03.010000"],["2024-07-24T03:29:04.010000"],["2024-07-24T03:29:05.010000"],["2024-07-24T03:29:06.010000"],["2024-07-24T03:29:07.010000"],["2024-07-24T03:29:08.010000"],["2024-07-24T03:29:09.010000"],["2024-07-24T03:29:10.010000"],["2024-07-24T03:29:11.010000"],["2024-07-24T03:29:12.010000"],["2024-07-24T03:29:13.010000"],["2024-07-24T03:29:14.010000"],["2024-07-24T03:29:15.010000"],["2024-07-24T03:29:16.010000"],["2024-07-24T03:29:17.010000"],["2024-07-24T03:29:18.010000"],["2024-07-24T03:29:19.010000"],["2024-07-24T03:29:20.010000"],["2024-07-24T03:29:21.010000"],["2024-07-24T03:29:22.010000"],["2024-07-24T03:29:23.010000"],["2024-07-24T03:29:24.010000"],["2024-07-24T03:29:25.010000"],["2024-07-24T03:29:26.010000"],["2024-07-24T03:29:27.010000"],["2024-07-24T03:29:28.010000"],["2024-07-24T03:29:29.010000"],["2024-07-24T03:29:30.010000"],["2024-07-24T03:29:31.010000"],["2024-07-24T03:29:32.010000"],["2024-07-24T03:29:33.010000"],["2024-07-24T03:29:34.010000"],["2024-07-24T03:29:35.010000"],["2024-07-24T03:29:36.010000"],["2024-07-24T03:29:37.010000"],["2024-07-24T03:29:38.010000"],["2024-07-24T03:29:39.010000"],["2024-07-24T03:29:40.010000"],["2024-07-24T03:29:41.010000"],["2024-07-24T03:29:42.010000"],["2024-07-24T03:29:43.010000"],["2024-07-24T03:29:44.010000"],["2024-07-24T03:29:45.010000"],["2024-07-24T03:29:46.010000"],["2024-07-24T03:29:47.010000"],["2024-07-24T03:29:48.010000"],["2024-07-24T03:29:49.010000"],["2024-07-24T03:29:50.010000"],["2024-07-24T03:29:51.010000"],["2024-07-24T03:29:52.010000"],["2024-07-24T03:29:53.010000"],["2024-07-24T03:29:54.010000"],["2024-07-24T03:29:55.010000"],["2024-07-24T03:29:56.010000"],["2024-07-24T03:29:57.010000"],["2024-07-24T03:29:58.010000"],["2024-07-24T03:29:59.010000"],["2024-07-24T03:30:00.010000"],["2024-07-24T03:30:01.010000"],["2024-07-24T03:30:02.010000"],["2024-07-24T03:30:03.010000"],["2024-07-24T03:30:04.010000"],["2024-07-24T03:30:05.010000"],["2024-07-24T03:30:06.010000"],["2024-07-24T03:30:07.010000"],["2024-07-24T03:30:08.010000"],["2024-07-24T03:30:09.010000"],["2024-07-24T03:30:10.010000"],["2024-07-24T03:30:11.010000"],["2024-07-24T03:30:12.010000"],["2024-07-24T03:30:13.010000"],["2024-07-24T03:30:14.010000"],["2024-07-24T03:30:15.010000"],["2024-07-24T03:30:16.010000"],["2024-07-24T03:30:17.010000"],["2024-07-24T03:30:18.010000"],["2024-07-24T03:30:19.010000"],["2024-07-24T03:30:20.010000"],["2024-07-24T03:30:21.010000"],["2024-07-24T03:30:22.010000"],["2024-07-24T03:30:23.010000"],["2024-07-24T03:30:24.010000"],["2024-07-24T03:30:25.010000"],["2024-07-24T03:30:26.010000"],["2024-07-24T03:30:27.010000"],["2024-07-24T03:30:28.010000"],["2024-07-24T03:30:29.010000"],["2024-07-24T03:30:30.010000"],["2024-07-24T03:30:31.010000"],["2024-07-24T03:30:32.010000"],["2024-07-24T03:30:33.010000"],["2024-07-24T03:30:34.010000"],["2024-07-24T03:30:35.010000"],["2024-07-24T03:30:36.010000"],["2024-07-24T03:30:37.010000"],["2024-07-24T03:30:38.010000"],["2024-07-24T03:30:39.010000"],["2024-07-24T03:30:40.010000"],["2024-07-24T03:30:41.010000"],["2024-07-24T03:30:42.010000"],["2024-07-24T03:30:43.010000"],["2024-07-24T03:30:44.010000"],["2024-07-24T03:30:45.010000"],["2024-07-24T03:30:46.010000"],["2024-07-24T03:30:47.010000"],["2024-07-24T03:30:48.010000"],["2024-07-24T03:30:49.010000"],["2024-07-24T03:30:50.010000"],["2024-07-24T03:30:51.010000"],["2024-07-24T03:30:52.010000"],["2024-07-24T03:30:53.010000"],["2024-07-24T03:30:54.010000"],["2024-07-24T03:30:55.010000"],["2024-07-24T03:30:56.010000"],["2024-07-24T03:30:57.010000"],["2024-07-24T03:30:58.010000"],["2024-07-24T03:30:59.010000"],["2024-07-24T03:31:00.010000"],["2024-07-24T03:31:01.010000"],["2024-07-24T03:31:02.010000"],["2024-07-24T03:31:03.010000"],["2024-07-24T03:31:04.010000"],["2024-07-24T03:31:05.010000"],["2024-07-24T03:31:06.010000"],["2024-07-24T03:31:07.010000"],["2024-07-24T03:31:08.010000"],["2024-07-24T03:31:09.010000"],["2024-07-24T03:31:10.010000"],["2024-07-24T03:31:11.010000"],["2024-07-24T03:31:12.010000"],["2024-07-24T03:31:13.010000"],["2024-07-24T03:31:14.010000"],["2024-07-24T03:31:15.010000"],["2024-07-24T03:31:16.010000"],["2024-07-24T03:31:17.010000"],["2024-07-24T03:31:18.010000"],["2024-07-24T03:31:19.010000"],["2024-07-24T03:31:20.010000"],["2024-07-24T03:31:21.010000"],["2024-07-24T03:31:22.010000"],["2024-07-24T03:31:23.010000"],["2024-07-24T03:31:24.010000"],["2024-07-24T03:31:25.010000"],["2024-07-24T03:31:26.010000"],["2024-07-24T03:31:27.010000"],["2024-07-24T03:31:28.010000"],["2024-07-24T03:31:29.010000"],["2024-07-24T03:31:30.010000"],["2024-07-24T03:31:31.010000"],["2024-07-24T03:31:32.010000"],["2024-07-24T03:31:33.010000"],["2024-07-24T03:31:34.010000"],["2024-07-24T03:31:35.010000"],["2024-07-24T03:31:36.010000"],["2024-07-24T03:31:37.010000"],["2024-07-24T03:31:38.010000"],["2024-07-24T03:31:39.010000"],["2024-07-24T03:31:40.010000"],["2024-07-24T03:31:41.010000"],["2024-07-24T03:31:42.010000"],["2024-07-24T03:31:43.010000"],["2024-07-24T03:31:44.010000"],["2024-07-24T03:31:45.010000"],["2024-07-24T03:31:46.010000"],["2024-07-24T03:31:47.010000"],["2024-07-24T03:31:48.010000"],["2024-07-24T03:31:49.010000"],["2024-07-24T03:31:50.010000"],["2024-07-24T03:31:51.010000"],["2024-07-24T03:31:52.010000"],["2024-07-24T03:31:53.010000"],["2024-07-24T03:31:54.010000"],["2024-07-24T03:31:55.010000"],["2024-07-24T03:31:56.010000"],["2024-07-24T03:31:57.010000"],["2024-07-24T03:31:58.010000"],["2024-07-24T03:31:59.010000"],["2024-07-24T03:32:00.010000"],["2024-07-24T03:32:01.010000"],["2024-07-24T03:32:02.010000"],["2024-07-24T03:32:03.010000"],["2024-07-24T03:32:04.010000"],["2024-07-24T03:32:05.010000"],["2024-07-24T03:32:06.010000"],["2024-07-24T03:32:07.010000"],["2024-07-24T03:32:08.010000"],["2024-07-24T03:32:09.010000"],["2024-07-24T03:32:10.010000"],["2024-07-24T03:32:11.010000"],["2024-07-24T03:32:12.010000"],["2024-07-24T03:32:13.010000"],["2024-07-24T03:32:14.010000"],["2024-07-24T03:32:15.010000"],["2024-07-24T03:32:16.010000"],["2024-07-24T03:32:17.010000"],["2024-07-24T03:32:18.010000"],["2024-07-24T03:32:19.010000"],["2024-07-24T03:32:20.010000"],["2024-07-24T03:32:21.010000"],["2024-07-24T03:32:22.010000"],["2024-07-24T03:32:23.010000"],["2024-07-24T03:32:24.010000"],["2024-07-24T03:32:25.010000"],["2024-07-24T03:32:26.010000"],["2024-07-24T03:32:27.010000"],["2024-07-24T03:32:28.010000"],["2024-07-24T03:32:29.010000"],["2024-07-24T03:32:30.010000"],["2024-07-24T03:32:31.010000"],["2024-07-24T03:32:32.010000"],["2024-07-24T03:32:33.010000"],["2024-07-24T03:32:34.010000"],["2024-07-24T03:32:35.010000"],["2024-07-24T03:32:36.010000"],["2024-07-24T03:32:37.010000"],["2024-07-24T03:32:38.010000"],["2024-07-24T03:32:39.010000"],["2024-07-24T03:32:40.010000"],["2024-07-24T03:32:41.010000"],["2024-07-24T03:32:42.010000"],["2024-07-24T03:32:43.010000"],["2024-07-24T03:32:44.010000"],["2024-07-24T03:32:45.010000"],["2024-07-24T03:32:46.010000"],["2024-07-24T03:32:47.010000"],["2024-07-24T03:32:48.010000"],["2024-07-24T03:32:49.010000"],["2024-07-24T03:32:50.010000"],["2024-07-24T03:32:51.010000"],["2024-07-24T03:32:52.010000"],["2024-07-24T03:32:53.010000"],["2024-07-24T03:32:54.010000"],["2024-07-24T03:32:55.010000"],["2024-07-24T03:32:56.010000"],["2024-07-24T03:32:57.010000"],["2024-07-24T03:32:58.010000"],["2024-07-24T03:32:59.010000"],["2024-07-24T03:33:00.010000"],["2024-07-24T03:33:01.010000"],["2024-07-24T03:33:02.010000"],["2024-07-24T03:33:03.010000"],["2024-07-24T03:33:04.010000"],["2024-07-24T03:33:05.010000"],["2024-07-24T03:33:06.010000"],["2024-07-24T03:33:07.010000"],["2024-07-24T03:33:08.010000"],["2024-07-24T03:33:09.010000"],["2024-07-24T03:33:10.010000"],["2024-07-24T03:33:11.010000"],["2024-07-24T03:33:12.010000"],["2024-07-24T03:33:13.010000"],["2024-07-24T03:33:14.010000"],["2024-07-24T03:33:15.010000"],["2024-07-24T03:33:16.010000"],["2024-07-24T03:33:17.010000"],["2024-07-24T03:33:18.010000"],["2024-07-24T03:33:19.010000"],["2024-07-24T03:33:20.010000"],["2024-07-24T03:33:21.010000"],["2024-07-24T03:33:22.010000"],["2024-07-24T03:33:23.010000"],["2024-07-24T03:33:24.010000"],["2024-07-24T03:33:25.010000"],["2024-07-24T03:33:26.010000"],["2024-07-24T03:33:27.010000"],["2024-07-24T03:33:28.010000"],["2024-07-24T03:33:29.010000"],["2024-07-24T03:33:30.010000"],["2024-07-24T03:33:31.010000"],["2024-07-24T03:33:32.010000"],["2024-07-24T03:33:33.010000"],["2024-07-24T03:33:34.010000"],["2024-07-24T03:33:35.010000"],["2024-07-24T03:33:36.010000"],["2024-07-24T03:33:37.010000"],["2024-07-24T03:33:38.010000"],["2024-07-24T03:33:39.010000"],["2024-07-24T03:33:40.010000"],["2024-07-24T03:33:41.010000"],["2024-07-24T03:33:42.010000"],["2024-07-24T03:33:43.010000"],["2024-07-24T03:33:44.010000"],["2024-07-24T03:33:45.010000"],["2024-07-24T03:33:46.010000"],["2024-07-24T03:33:47.010000"],["2024-07-24T03:33:48.010000"],["2024-07-24T03:33:49.010000"],["2024-07-24T03:33:50.010000"],["2024-07-24T03:33:51.010000"],["2024-07-24T03:33:52.010000"],["2024-07-24T03:33:53.010000"],["2024-07-24T03:33:54.010000"],["2024-07-24T03:33:55.010000"],["2024-07-24T03:33:56.010000"],["2024-07-24T03:33:57.010000"],["2024-07-24T03:33:58.010000"],["2024-07-24T03:33:59.010000"],["2024-07-24T03:34:00.010000"],["2024-07-24T03:34:01.010000"],["2024-07-24T03:34:02.010000"],["2024-07-24T03:34:03.010000"],["2024-07-24T03:34:04.010000"],["2024-07-24T03:34:05.010000"],["2024-07-24T03:34:06.010000"],["2024-07-24T03:34:07.010000"],["2024-07-24T03:34:08.010000"],["2024-07-24T03:34:09.010000"],["2024-07-24T03:34:10.010000"],["2024-07-24T03:34:11.010000"],["2024-07-24T03:34:12.010000"],["2024-07-24T03:34:13.010000"],["2024-07-24T03:34:14.010000"],["2024-07-24T03:34:15.010000"],["2024-07-24T03:34:16.010000"],["2024-07-24T03:34:17.010000"],["2024-07-24T03:34:18.010000"],["2024-07-24T03:34:19.010000"],["2024-07-24T03:34:20.010000"],["2024-07-24T03:34:21.010000"],["2024-07-24T03:34:22.010000"],["2024-07-24T03:34:23.010000"],["2024-07-24T03:34:24.010000"],["2024-07-24T03:34:25.010000"],["2024-07-24T03:34:26.010000"],["2024-07-24T03:34:27.010000"],["2024-07-24T03:34:28.010000"],["2024-07-24T03:34:29.010000"],["2024-07-24T03:34:30.010000"],["2024-07-24T03:34:31.010000"],["2024-07-24T03:34:32.010000"],["2024-07-24T03:34:33.010000"],["2024-07-24T03:34:34.010000"],["2024-07-24T03:34:35.010000"],["2024-07-24T03:34:36.010000"],["2024-07-24T03:34:37.010000"],["2024-07-24T03:34:38.010000"],["2024-07-24T03:34:39.010000"],["2024-07-24T03:34:40.010000"],["2024-07-24T03:34:41.010000"],["2024-07-24T03:34:42.010000"],["2024-07-24T03:34:43.010000"],["2024-07-24T03:34:44.010000"],["2024-07-24T03:34:45.010000"],["2024-07-24T03:34:46.010000"],["2024-07-24T03:34:47.010000"],["2024-07-24T03:34:48.010000"],["2024-07-24T03:34:49.010000"],["2024-07-24T03:34:50.010000"],["2024-07-24T03:34:51.010000"],["2024-07-24T03:34:52.010000"],["2024-07-24T03:34:53.010000"],["2024-07-24T03:34:54.010000"],["2024-07-24T03:34:55.010000"],["2024-07-24T03:34:56.010000"],["2024-07-24T03:34:57.010000"],["2024-07-24T03:34:58.010000"],["2024-07-24T03:34:59.010000"],["2024-07-24T03:35:00.010000"],["2024-07-24T03:35:01.010000"],["2024-07-24T03:35:02.010000"],["2024-07-24T03:35:03.010000"],["2024-07-24T03:35:04.010000"],["2024-07-24T03:35:05.010000"],["2024-07-24T03:35:06.010000"],["2024-07-24T03:35:07.010000"],["2024-07-24T03:35:08.010000"],["2024-07-24T03:35:09.010000"],["2024-07-24T03:35:10.010000"],["2024-07-24T03:35:11.010000"],["2024-07-24T03:35:12.010000"],["2024-07-24T03:35:13.010000"],["2024-07-24T03:35:14.010000"],["2024-07-24T03:35:15.010000"],["2024-07-24T03:35:16.010000"],["2024-07-24T03:35:17.010000"],["2024-07-24T03:35:18.010000"],["2024-07-24T03:35:19.010000"],["2024-07-24T03:35:20.010000"],["2024-07-24T03:35:21.010000"],["2024-07-24T03:35:22.010000"],["2024-07-24T03:35:23.010000"],["2024-07-24T03:35:24.010000"],["2024-07-24T03:35:25.010000"],["2024-07-24T03:35:26.010000"],["2024-07-24T03:35:27.010000"],["2024-07-24T03:35:28.010000"],["2024-07-24T03:35:29.010000"],["2024-07-24T03:35:30.010000"],["2024-07-24T03:35:31.010000"],["2024-07-24T03:35:32.010000"],["2024-07-24T03:35:33.010000"],["2024-07-24T03:35:34.010000"],["2024-07-24T03:35:35.010000"],["2024-07-24T03:35:36.010000"],["2024-07-24T03:35:37.010000"],["2024-07-24T03:35:38.010000"],["2024-07-24T03:35:39.010000"],["2024-07-24T03:35:40.010000"],["2024-07-24T03:35:41.010000"],["2024-07-24T03:35:42.010000"],["2024-07-24T03:35:43.010000"],["2024-07-24T03:35:44.010000"],["2024-07-24T03:35:45.010000"],["2024-07-24T03:35:46.010000"],["2024-07-24T03:35:47.010000"],["2024-07-24T03:35:48.010000"],["2024-07-24T03:35:49.010000"],["2024-07-24T03:35:50.010000"],["2024-07-24T03:35:51.010000"],["2024-07-24T03:35:52.010000"],["2024-07-24T03:35:53.010000"],["2024-07-24T03:35:54.010000"],["2024-07-24T03:35:55.010000"],["2024-07-24T03:35:56.010000"],["2024-07-24T03:35:57.010000"],["2024-07-24T03:35:58.010000"],["2024-07-24T03:35:59.010000"],["2024-07-24T03:36:00.010000"],["2024-07-24T03:36:01.010000"],["2024-07-24T03:36:02.010000"],["2024-07-24T03:36:03.010000"],["2024-07-24T03:36:04.010000"],["2024-07-24T03:36:05.010000"],["2024-07-24T03:36:06.010000"],["2024-07-24T03:36:07.010000"],["2024-07-24T03:36:08.010000"],["2024-07-24T03:36:09.010000"],["2024-07-24T03:36:10.010000"],["2024-07-24T03:36:11.010000"],["2024-07-24T03:36:12.010000"],["2024-07-24T03:36:13.010000"],["2024-07-24T03:36:14.010000"],["2024-07-24T03:36:15.010000"],["2024-07-24T03:36:16.010000"],["2024-07-24T03:36:17.010000"],["2024-07-24T03:36:18.010000"],["2024-07-24T03:36:19.010000"],["2024-07-24T03:36:20.010000"],["2024-07-24T03:36:21.010000"],["2024-07-24T03:36:22.010000"],["2024-07-24T03:36:23.010000"],["2024-07-24T03:36:24.010000"],["2024-07-24T03:36:25.010000"],["2024-07-24T03:36:26.010000"],["2024-07-24T03:36:27.010000"],["2024-07-24T03:36:28.010000"],["2024-07-24T03:36:29.010000"],["2024-07-24T03:36:30.010000"],["2024-07-24T03:36:31.010000"],["2024-07-24T03:36:32.010000"],["2024-07-24T03:36:33.010000"],["2024-07-24T03:36:34.010000"],["2024-07-24T03:36:35.010000"],["2024-07-24T03:36:36.010000"],["2024-07-24T03:36:37.010000"],["2024-07-24T03:36:38.010000"],["2024-07-24T03:36:39.010000"],["2024-07-24T03:36:40.010000"],["2024-07-24T03:36:41.010000"],["2024-07-24T03:36:42.010000"],["2024-07-24T03:36:43.010000"],["2024-07-24T03:36:44.010000"],["2024-07-24T03:36:45.010000"],["2024-07-24T03:36:46.010000"],["2024-07-24T03:36:47.010000"],["2024-07-24T03:36:48.010000"],["2024-07-24T03:36:49.010000"],["2024-07-24T03:36:50.010000"],["2024-07-24T03:36:51.010000"],["2024-07-24T03:36:52.010000"],["2024-07-24T03:36:53.010000"],["2024-07-24T03:36:54.010000"],["2024-07-24T03:36:55.010000"],["2024-07-24T03:36:56.010000"],["2024-07-24T03:36:57.010000"],["2024-07-24T03:36:58.010000"],["2024-07-24T03:36:59.010000"],["2024-07-24T03:37:00.010000"],["2024-07-24T03:37:01.010000"],["2024-07-24T03:37:02.010000"],["2024-07-24T03:37:03.010000"],["2024-07-24T03:37:04.010000"],["2024-07-24T03:37:05.010000"],["2024-07-24T03:37:06.010000"],["2024-07-24T03:37:07.010000"],["2024-07-24T03:37:08.010000"],["2024-07-24T03:37:09.010000"],["2024-07-24T03:37:10.010000"],["2024-07-24T03:37:11.010000"],["2024-07-24T03:37:12.010000"],["2024-07-24T03:37:13.010000"],["2024-07-24T03:37:14.010000"],["2024-07-24T03:37:15.010000"],["2024-07-24T03:37:16.010000"],["2024-07-24T03:37:17.010000"],["2024-07-24T03:37:18.010000"],["2024-07-24T03:37:19.010000"],["2024-07-24T03:37:20.010000"],["2024-07-24T03:37:21.010000"],["2024-07-24T03:37:22.010000"],["2024-07-24T03:37:23.010000"],["2024-07-24T03:37:24.010000"],["2024-07-24T03:37:25.010000"],["2024-07-24T03:37:26.010000"],["2024-07-24T03:37:27.010000"],["2024-07-24T03:37:28.010000"],["2024-07-24T03:37:29.010000"],["2024-07-24T03:37:30.010000"],["2024-07-24T03:37:31.010000"],["2024-07-24T03:37:32.010000"],["2024-07-24T03:37:33.010000"],["2024-07-24T03:37:34.010000"],["2024-07-24T03:37:35.010000"],["2024-07-24T03:37:36.010000"],["2024-07-24T03:37:37.010000"],["2024-07-24T03:37:38.010000"],["2024-07-24T03:37:39.010000"],["2024-07-24T03:37:40.010000"],["2024-07-24T03:37:41.010000"],["2024-07-24T03:37:42.010000"],["2024-07-24T03:37:43.010000"],["2024-07-24T03:37:44.010000"],["2024-07-24T03:37:45.010000"],["2024-07-24T03:37:46.010000"],["2024-07-24T03:37:47.010000"],["2024-07-24T03:37:48.010000"],["2024-07-24T03:37:49.010000"],["2024-07-24T03:37:50.010000"],["2024-07-24T03:37:51.010000"],["2024-07-24T03:37:52.010000"],["2024-07-24T03:37:53.010000"],["2024-07-24T03:37:54.010000"],["2024-07-24T03:37:55.010000"],["2024-07-24T03:37:56.010000"],["2024-07-24T03:37:57.010000"],["2024-07-24T03:37:58.010000"],["2024-07-24T03:37:59.010000"],["2024-07-24T03:38:00.010000"],["2024-07-24T03:38:01.010000"],["2024-07-24T03:38:02.010000"],["2024-07-24T03:38:03.010000"],["2024-07-24T03:38:04.010000"],["2024-07-24T03:38:05.010000"],["2024-07-24T03:38:06.010000"],["2024-07-24T03:38:07.010000"],["2024-07-24T03:38:08.010000"],["2024-07-24T03:38:09.010000"],["2024-07-24T03:38:10.010000"],["2024-07-24T03:38:11.010000"],["2024-07-24T03:38:12.010000"],["2024-07-24T03:38:13.010000"],["2024-07-24T03:38:14.010000"],["2024-07-24T03:38:15.010000"],["2024-07-24T03:38:16.010000"],["2024-07-24T03:38:17.010000"],["2024-07-24T03:38:18.010000"],["2024-07-24T03:38:19.010000"],["2024-07-24T03:38:20.010000"],["2024-07-24T03:38:21.010000"],["2024-07-24T03:38:22.010000"],["2024-07-24T03:38:23.010000"],["2024-07-24T03:38:24.010000"],["2024-07-24T03:38:25.010000"],["2024-07-24T03:38:26.010000"],["2024-07-24T03:38:27.010000"],["2024-07-24T03:38:28.010000"],["2024-07-24T03:38:29.010000"],["2024-07-24T03:38:30.010000"],["2024-07-24T03:38:31.010000"],["2024-07-24T03:38:32.010000"],["2024-07-24T03:38:33.010000"],["2024-07-24T03:38:34.010000"],["2024-07-24T03:38:35.010000"],["2024-07-24T03:38:36.010000"],["2024-07-24T03:38:37.010000"],["2024-07-24T03:38:38.010000"],["2024-07-24T03:38:39.010000"],["2024-07-24T03:38:40.010000"],["2024-07-24T03:38:41.010000"],["2024-07-24T03:38:42.010000"],["2024-07-24T03:38:43.010000"],["2024-07-24T03:38:44.010000"],["2024-07-24T03:38:45.010000"],["2024-07-24T03:38:46.010000"],["2024-07-24T03:38:47.010000"],["2024-07-24T03:38:48.010000"],["2024-07-24T03:38:49.010000"],["2024-07-24T03:38:50.010000"],["2024-07-24T03:38:51.010000"],["2024-07-24T03:38:52.010000"],["2024-07-24T03:38:53.010000"],["2024-07-24T03:38:54.010000"],["2024-07-24T03:38:55.010000"],["2024-07-24T03:38:56.010000"],["2024-07-24T03:38:57.010000"],["2024-07-24T03:38:58.010000"],["2024-07-24T03:38:59.010000"],["2024-07-24T03:39:00.010000"],["2024-07-24T03:39:01.010000"],["2024-07-24T03:39:02.010000"],["2024-07-24T03:39:03.010000"],["2024-07-24T03:39:04.010000"],["2024-07-24T03:39:05.010000"],["2024-07-24T03:39:06.010000"],["2024-07-24T03:39:07.010000"],["2024-07-24T03:39:08.010000"],["2024-07-24T03:39:09.010000"],["2024-07-24T03:39:10.010000"],["2024-07-24T03:39:11.010000"],["2024-07-24T03:39:12.010000"],["2024-07-24T03:39:13.010000"],["2024-07-24T03:39:14.010000"],["2024-07-24T03:39:15.010000"],["2024-07-24T03:39:16.010000"],["2024-07-24T03:39:17.010000"],["2024-07-24T03:39:18.010000"],["2024-07-24T03:39:19.010000"],["2024-07-24T03:39:20.010000"],["2024-07-24T03:39:21.010000"],["2024-07-24T03:39:22.010000"],["2024-07-24T03:39:23.010000"],["2024-07-24T03:39:24.010000"],["2024-07-24T03:39:25.010000"],["2024-07-24T03:39:26.010000"],["2024-07-24T03:39:27.010000"],["2024-07-24T03:39:28.010000"],["2024-07-24T03:39:29.010000"],["2024-07-24T03:39:30.010000"],["2024-07-24T03:39:31.010000"],["2024-07-24T03:39:32.010000"],["2024-07-24T03:39:33.010000"],["2024-07-24T03:39:34.010000"],["2024-07-24T03:39:35.010000"],["2024-07-24T03:39:36.010000"],["2024-07-24T03:39:37.010000"],["2024-07-24T03:39:38.010000"],["2024-07-24T03:39:39.010000"],["2024-07-24T03:39:40.010000"],["2024-07-24T03:39:41.010000"],["2024-07-24T03:39:42.010000"],["2024-07-24T03:39:43.010000"],["2024-07-24T03:39:44.010000"],["2024-07-24T03:39:45.010000"],["2024-07-24T03:39:46.010000"],["2024-07-24T03:39:47.010000"],["2024-07-24T03:39:48.010000"],["2024-07-24T03:39:49.010000"],["2024-07-24T03:39:50.010000"],["2024-07-24T03:39:51.010000"],["2024-07-24T03:39:52.010000"],["2024-07-24T03:39:53.010000"],["2024-07-24T03:39:54.010000"],["2024-07-24T03:39:55.010000"],["2024-07-24T03:39:56.010000"],["2024-07-24T03:39:57.010000"],["2024-07-24T03:39:58.010000"],["2024-07-24T03:39:59.010000"],["2024-07-24T03:40:00.010000"],["2024-07-24T03:40:01.010000"],["2024-07-24T03:40:02.010000"],["2024-07-24T03:40:03.010000"],["2024-07-24T03:40:04.010000"],["2024-07-24T03:40:05.010000"],["2024-07-24T03:40:06.010000"],["2024-07-24T03:40:07.010000"],["2024-07-24T03:40:08.010000"],["2024-07-24T03:40:09.010000"],["2024-07-24T03:40:10.010000"],["2024-07-24T03:40:11.010000"],["2024-07-24T03:40:12.010000"],["2024-07-24T03:40:13.010000"],["2024-07-24T03:40:14.010000"],["2024-07-24T03:40:15.010000"],["2024-07-24T03:40:16.010000"],["2024-07-24T03:40:17.010000"],["2024-07-24T03:40:18.010000"],["2024-07-24T03:40:19.010000"],["2024-07-24T03:40:20.010000"],["2024-07-24T03:40:21.010000"],["2024-07-24T03:40:22.010000"],["2024-07-24T03:40:23.010000"],["2024-07-24T03:40:24.010000"],["2024-07-24T03:40:25.010000"],["2024-07-24T03:40:26.010000"],["2024-07-24T03:40:27.010000"],["2024-07-24T03:40:28.010000"],["2024-07-24T03:40:29.010000"],["2024-07-24T03:40:30.010000"],["2024-07-24T03:40:31.010000"],["2024-07-24T03:40:32.010000"],["2024-07-24T03:40:33.010000"],["2024-07-24T03:40:34.010000"],["2024-07-24T03:40:35.010000"],["2024-07-24T03:40:36.010000"],["2024-07-24T03:40:37.010000"],["2024-07-24T03:40:38.010000"],["2024-07-24T03:40:39.010000"],["2024-07-24T03:40:40.010000"],["2024-07-24T03:40:41.010000"],["2024-07-24T03:40:42.010000"],["2024-07-24T03:40:43.010000"],["2024-07-24T03:40:44.010000"],["2024-07-24T03:40:45.010000"],["2024-07-24T03:40:46.010000"],["2024-07-24T03:40:47.010000"],["2024-07-24T03:40:48.010000"],["2024-07-24T03:40:49.010000"],["2024-07-24T03:40:50.010000"],["2024-07-24T03:40:51.010000"],["2024-07-24T03:40:52.010000"],["2024-07-24T03:40:53.010000"],["2024-07-24T03:40:54.010000"],["2024-07-24T03:40:55.010000"],["2024-07-24T03:40:56.010000"],["2024-07-24T03:40:57.010000"],["2024-07-24T03:40:58.010000"],["2024-07-24T03:40:59.010000"],["2024-07-24T03:41:00.010000"],["2024-07-24T03:41:01.010000"],["2024-07-24T03:41:02.010000"],["2024-07-24T03:41:03.010000"],["2024-07-24T03:41:04.010000"],["2024-07-24T03:41:05.010000"],["2024-07-24T03:41:06.010000"],["2024-07-24T03:41:07.010000"],["2024-07-24T03:41:08.010000"],["2024-07-24T03:41:09.010000"],["2024-07-24T03:41:10.010000"],["2024-07-24T03:41:11.010000"],["2024-07-24T03:41:12.010000"],["2024-07-24T03:41:13.010000"],["2024-07-24T03:41:14.010000"],["2024-07-24T03:41:15.010000"],["2024-07-24T03:41:16.010000"],["2024-07-24T03:41:17.010000"],["2024-07-24T03:41:18.010000"],["2024-07-24T03:41:19.010000"],["2024-07-24T03:41:20.010000"],["2024-07-24T03:41:21.010000"],["2024-07-24T03:41:22.010000"],["2024-07-24T03:41:23.010000"],["2024-07-24T03:41:24.010000"],["2024-07-24T03:41:25.010000"],["2024-07-24T03:41:26.010000"],["2024-07-24T03:41:27.010000"],["2024-07-24T03:41:28.010000"],["2024-07-24T03:41:29.010000"],["2024-07-24T03:41:30.010000"],["2024-07-24T03:41:31.010000"],["2024-07-24T03:41:32.010000"],["2024-07-24T03:41:33.010000"],["2024-07-24T03:41:34.010000"],["2024-07-24T03:41:35.010000"],["2024-07-24T03:41:36.010000"],["2024-07-24T03:41:37.010000"],["2024-07-24T03:41:38.010000"],["2024-07-24T03:41:39.010000"],["2024-07-24T03:41:40.010000"],["2024-07-24T03:41:41.010000"],["2024-07-24T03:41:42.010000"],["2024-07-24T03:41:43.010000"],["2024-07-24T03:41:44.010000"],["2024-07-24T03:41:45.010000"],["2024-07-24T03:41:46.010000"],["2024-07-24T03:41:47.010000"],["2024-07-24T03:41:48.010000"],["2024-07-24T03:41:49.010000"],["2024-07-24T03:41:50.010000"],["2024-07-24T03:41:51.010000"],["2024-07-24T03:41:52.010000"],["2024-07-24T03:41:53.010000"],["2024-07-24T03:41:54.010000"],["2024-07-24T03:41:55.010000"],["2024-07-24T03:41:56.010000"],["2024-07-24T03:41:57.010000"],["2024-07-24T03:41:58.010000"],["2024-07-24T03:41:59.010000"],["2024-07-24T03:42:00.010000"],["2024-07-24T03:42:01.010000"],["2024-07-24T03:42:02.010000"],["2024-07-24T03:42:03.010000"],["2024-07-24T03:42:04.010000"],["2024-07-24T03:42:05.010000"],["2024-07-24T03:42:06.010000"],["2024-07-24T03:42:07.010000"],["2024-07-24T03:42:08.010000"],["2024-07-24T03:42:09.010000"],["2024-07-24T03:42:10.010000"],["2024-07-24T03:42:11.010000"],["2024-07-24T03:42:12.010000"],["2024-07-24T03:42:13.010000"],["2024-07-24T03:42:14.010000"],["2024-07-24T03:42:15.010000"],["2024-07-24T03:42:16.010000"],["2024-07-24T03:42:17.010000"],["2024-07-24T03:42:18.010000"],["2024-07-24T03:42:19.010000"],["2024-07-24T03:42:20.010000"],["2024-07-24T03:42:21.010000"],["2024-07-24T03:42:22.010000"],["2024-07-24T03:42:23.010000"],["2024-07-24T03:42:24.010000"],["2024-07-24T03:42:25.010000"],["2024-07-24T03:42:26.010000"],["2024-07-24T03:42:27.010000"],["2024-07-24T03:42:28.010000"],["2024-07-24T03:42:29.010000"],["2024-07-24T03:42:30.010000"],["2024-07-24T03:42:31.010000"],["2024-07-24T03:42:32.010000"],["2024-07-24T03:42:33.010000"],["2024-07-24T03:42:34.010000"],["2024-07-24T03:42:35.010000"],["2024-07-24T03:42:36.010000"],["2024-07-24T03:42:37.010000"],["2024-07-24T03:42:38.010000"],["2024-07-24T03:42:39.010000"],["2024-07-24T03:42:40.010000"],["2024-07-24T03:42:41.010000"],["2024-07-24T03:42:42.010000"],["2024-07-24T03:42:43.010000"],["2024-07-24T03:42:44.010000"],["2024-07-24T03:42:45.010000"],["2024-07-24T03:42:46.010000"],["2024-07-24T03:42:47.010000"],["2024-07-24T03:42:48.010000"],["2024-07-24T03:42:49.010000"],["2024-07-24T03:42:50.010000"],["2024-07-24T03:42:51.010000"],["2024-07-24T03:42:52.010000"],["2024-07-24T03:42:53.010000"],["2024-07-24T03:42:54.010000"],["2024-07-24T03:42:55.010000"],["2024-07-24T03:42:56.010000"],["2024-07-24T03:42:57.010000"],["2024-07-24T03:42:58.010000"],["2024-07-24T03:42:59.010000"],["2024-07-24T03:43:00.010000"],["2024-07-24T03:43:01.010000"],["2024-07-24T03:43:02.010000"],["2024-07-24T03:43:03.010000"],["2024-07-24T03:43:04.010000"],["2024-07-24T03:43:05.010000"],["2024-07-24T03:43:06.010000"],["2024-07-24T03:43:07.010000"],["2024-07-24T03:43:08.010000"],["2024-07-24T03:43:09.010000"],["2024-07-24T03:43:10.010000"],["2024-07-24T03:43:11.010000"],["2024-07-24T03:43:12.010000"],["2024-07-24T03:43:13.010000"],["2024-07-24T03:43:14.010000"],["2024-07-24T03:43:15.010000"],["2024-07-24T03:43:16.010000"],["2024-07-24T03:43:17.010000"],["2024-07-24T03:43:18.010000"],["2024-07-24T03:43:19.010000"],["2024-07-24T03:43:20.010000"],["2024-07-24T03:43:21.010000"],["2024-07-24T03:43:22.010000"],["2024-07-24T03:43:23.010000"],["2024-07-24T03:43:24.010000"],["2024-07-24T03:43:25.010000"],["2024-07-24T03:43:26.010000"],["2024-07-24T03:43:27.010000"],["2024-07-24T03:43:28.010000"],["2024-07-24T03:43:29.010000"],["2024-07-24T03:43:30.010000"],["2024-07-24T03:43:31.010000"],["2024-07-24T03:43:32.010000"],["2024-07-24T03:43:33.010000"],["2024-07-24T03:43:34.010000"],["2024-07-24T03:43:35.010000"],["2024-07-24T03:43:36.010000"],["2024-07-24T03:43:37.010000"],["2024-07-24T03:43:38.010000"],["2024-07-24T03:43:39.010000"],["2024-07-24T03:43:40.010000"],["2024-07-24T03:43:41.010000"],["2024-07-24T03:43:42.010000"],["2024-07-24T03:43:43.010000"],["2024-07-24T03:43:44.010000"],["2024-07-24T03:43:45.010000"],["2024-07-24T03:43:46.010000"],["2024-07-24T03:43:47.010000"],["2024-07-24T03:43:48.010000"],["2024-07-24T03:43:49.010000"],["2024-07-24T03:43:50.010000"],["2024-07-24T03:43:51.010000"],["2024-07-24T03:43:52.010000"],["2024-07-24T03:43:53.010000"],["2024-07-24T03:43:54.010000"],["2024-07-24T03:43:55.010000"],["2024-07-24T03:43:56.010000"],["2024-07-24T03:43:57.010000"],["2024-07-24T03:43:58.010000"],["2024-07-24T03:43:59.010000"],["2024-07-24T03:44:00.010000"],["2024-07-24T03:44:01.010000"],["2024-07-24T03:44:02.010000"],["2024-07-24T03:44:03.010000"],["2024-07-24T03:44:04.010000"],["2024-07-24T03:44:05.010000"],["2024-07-24T03:44:06.010000"],["2024-07-24T03:44:07.010000"],["2024-07-24T03:44:08.010000"],["2024-07-24T03:44:09.010000"],["2024-07-24T03:44:10.010000"],["2024-07-24T03:44:11.010000"],["2024-07-24T03:44:12.010000"],["2024-07-24T03:44:13.010000"],["2024-07-24T03:44:14.010000"],["2024-07-24T03:44:15.010000"],["2024-07-24T03:44:16.010000"],["2024-07-24T03:44:17.010000"],["2024-07-24T03:44:18.010000"],["2024-07-24T03:44:19.010000"],["2024-07-24T03:44:20.010000"],["2024-07-24T03:44:21.010000"],["2024-07-24T03:44:22.010000"],["2024-07-24T03:44:23.010000"],["2024-07-24T03:44:24.010000"],["2024-07-24T03:44:25.010000"],["2024-07-24T03:44:26.010000"],["2024-07-24T03:44:27.010000"],["2024-07-24T03:44:28.010000"],["2024-07-24T03:44:29.010000"],["2024-07-24T03:44:30.010000"],["2024-07-24T03:44:31.010000"],["2024-07-24T03:44:32.010000"],["2024-07-24T03:44:33.010000"],["2024-07-24T03:44:34.010000"],["2024-07-24T03:44:35.010000"],["2024-07-24T03:44:36.010000"],["2024-07-24T03:44:37.010000"],["2024-07-24T03:44:38.010000"],["2024-07-24T03:44:39.010000"],["2024-07-24T03:44:40.010000"],["2024-07-24T03:44:41.010000"],["2024-07-24T03:44:42.010000"],["2024-07-24T03:44:43.010000"],["2024-07-24T03:44:44.010000"],["2024-07-24T03:44:45.010000"],["2024-07-24T03:44:46.010000"],["2024-07-24T03:44:47.010000"],["2024-07-24T03:44:48.010000"],["2024-07-24T03:44:49.010000"],["2024-07-24T03:44:50.010000"],["2024-07-24T03:44:51.010000"],["2024-07-24T03:44:52.010000"],["2024-07-24T03:44:53.010000"],["2024-07-24T03:44:54.010000"],["2024-07-24T03:44:55.010000"],["2024-07-24T03:44:56.010000"],["2024-07-24T03:44:57.010000"],["2024-07-24T03:44:58.010000"],["2024-07-24T03:44:59.010000"],["2024-07-24T03:45:00.010000"],["2024-07-24T03:45:01.010000"],["2024-07-24T03:45:02.010000"],["2024-07-24T03:45:03.010000"],["2024-07-24T03:45:04.010000"],["2024-07-24T03:45:05.010000"],["2024-07-24T03:45:06.010000"],["2024-07-24T03:45:07.010000"],["2024-07-24T03:45:08.010000"],["2024-07-24T03:45:09.010000"],["2024-07-24T03:45:10.010000"],["2024-07-24T03:45:11.010000"],["2024-07-24T03:45:12.010000"],["2024-07-24T03:45:13.010000"],["2024-07-24T03:45:14.010000"],["2024-07-24T03:45:15.010000"],["2024-07-24T03:45:16.010000"],["2024-07-24T03:45:17.010000"],["2024-07-24T03:45:18.010000"],["2024-07-24T03:45:19.010000"],["2024-07-24T03:45:20.010000"],["2024-07-24T03:45:21.010000"],["2024-07-24T03:45:22.010000"],["2024-07-24T03:45:23.010000"],["2024-07-24T03:45:24.010000"],["2024-07-24T03:45:25.010000"],["2024-07-24T03:45:26.010000"],["2024-07-24T03:45:27.010000"],["2024-07-24T03:45:28.010000"],["2024-07-24T03:45:29.010000"],["2024-07-24T03:45:30.010000"],["2024-07-24T03:45:31.010000"],["2024-07-24T03:45:32.010000"],["2024-07-24T03:45:33.010000"],["2024-07-24T03:45:34.010000"],["2024-07-24T03:45:35.010000"],["2024-07-24T03:45:36.010000"],["2024-07-24T03:45:37.010000"],["2024-07-24T03:45:38.010000"],["2024-07-24T03:45:39.010000"],["2024-07-24T03:45:40.010000"],["2024-07-24T03:45:41.010000"],["2024-07-24T03:45:42.010000"],["2024-07-24T03:45:43.010000"],["2024-07-24T03:45:44.010000"],["2024-07-24T03:45:45.010000"],["2024-07-24T03:45:46.010000"],["2024-07-24T03:45:47.010000"],["2024-07-24T03:45:48.010000"],["2024-07-24T03:45:49.010000"],["2024-07-24T03:45:50.010000"],["2024-07-24T03:45:51.010000"],["2024-07-24T03:45:52.010000"],["2024-07-24T03:45:53.010000"],["2024-07-24T03:45:54.010000"],["2024-07-24T03:45:55.010000"],["2024-07-24T03:45:56.010000"],["2024-07-24T03:45:57.010000"],["2024-07-24T03:45:58.010000"],["2024-07-24T03:45:59.010000"],["2024-07-24T03:46:00.010000"],["2024-07-24T03:46:01.010000"],["2024-07-24T03:46:02.010000"],["2024-07-24T03:46:03.010000"],["2024-07-24T03:46:04.010000"],["2024-07-24T03:46:05.010000"],["2024-07-24T03:46:06.010000"],["2024-07-24T03:46:07.010000"],["2024-07-24T03:46:08.010000"],["2024-07-24T03:46:09.010000"],["2024-07-24T03:46:10.010000"],["2024-07-24T03:46:11.010000"],["2024-07-24T03:46:12.010000"],["2024-07-24T03:46:13.010000"],["2024-07-24T03:46:14.010000"],["2024-07-24T03:46:15.010000"],["2024-07-24T03:46:16.010000"],["2024-07-24T03:46:17.010000"],["2024-07-24T03:46:18.010000"],["2024-07-24T03:46:19.010000"],["2024-07-24T03:46:20.010000"],["2024-07-24T03:46:21.010000"],["2024-07-24T03:46:22.010000"],["2024-07-24T03:46:23.010000"],["2024-07-24T03:46:24.010000"],["2024-07-24T03:46:25.010000"],["2024-07-24T03:46:26.010000"],["2024-07-24T03:46:27.010000"],["2024-07-24T03:46:28.010000"],["2024-07-24T03:46:29.010000"],["2024-07-24T03:46:30.010000"],["2024-07-24T03:46:31.010000"],["2024-07-24T03:46:32.010000"],["2024-07-24T03:46:33.010000"],["2024-07-24T03:46:34.010000"],["2024-07-24T03:46:35.010000"],["2024-07-24T03:46:36.010000"],["2024-07-24T03:46:37.010000"],["2024-07-24T03:46:38.010000"],["2024-07-24T03:46:39.010000"],["2024-07-24T03:46:40.010000"],["2024-07-24T03:46:41.010000"],["2024-07-24T03:46:42.010000"],["2024-07-24T03:46:43.010000"],["2024-07-24T03:46:44.010000"],["2024-07-24T03:46:45.010000"],["2024-07-24T03:46:46.010000"],["2024-07-24T03:46:47.010000"],["2024-07-24T03:46:48.010000"],["2024-07-24T03:46:49.010000"],["2024-07-24T03:46:50.010000"],["2024-07-24T03:46:51.010000"],["2024-07-24T03:46:52.010000"],["2024-07-24T03:46:53.010000"],["2024-07-24T03:46:54.010000"],["2024-07-24T03:46:55.010000"],["2024-07-24T03:46:56.010000"],["2024-07-24T03:46:57.010000"],["2024-07-24T03:46:58.010000"],["2024-07-24T03:46:59.010000"],["2024-07-24T03:47:00.010000"],["2024-07-24T03:47:01.010000"],["2024-07-24T03:47:02.010000"],["2024-07-24T03:47:03.010000"],["2024-07-24T03:47:04.010000"],["2024-07-24T03:47:05.010000"],["2024-07-24T03:47:06.010000"],["2024-07-24T03:47:07.010000"],["2024-07-24T03:47:08.010000"],["2024-07-24T03:47:09.010000"],["2024-07-24T03:47:10.010000"],["2024-07-24T03:47:11.010000"],["2024-07-24T03:47:12.010000"],["2024-07-24T03:47:13.010000"],["2024-07-24T03:47:14.010000"],["2024-07-24T03:47:15.010000"],["2024-07-24T03:47:16.010000"],["2024-07-24T03:47:17.010000"],["2024-07-24T03:47:18.010000"],["2024-07-24T03:47:19.010000"],["2024-07-24T03:47:20.010000"],["2024-07-24T03:47:21.010000"],["2024-07-24T03:47:22.010000"],["2024-07-24T03:47:23.010000"],["2024-07-24T03:47:24.010000"],["2024-07-24T03:47:25.010000"],["2024-07-24T03:47:26.010000"],["2024-07-24T03:47:27.010000"],["2024-07-24T03:47:28.010000"],["2024-07-24T03:47:29.010000"],["2024-07-24T03:47:30.010000"],["2024-07-24T03:47:31.010000"],["2024-07-24T03:47:32.010000"],["2024-07-24T03:47:33.010000"],["2024-07-24T03:47:34.010000"],["2024-07-24T03:47:35.010000"],["2024-07-24T03:47:36.010000"],["2024-07-24T03:47:37.010000"],["2024-07-24T03:47:38.010000"],["2024-07-24T03:47:39.010000"],["2024-07-24T03:47:40.010000"],["2024-07-24T03:47:41.010000"],["2024-07-24T03:47:42.010000"],["2024-07-24T03:47:43.010000"],["2024-07-24T03:47:44.010000"],["2024-07-24T03:47:45.010000"],["2024-07-24T03:47:46.010000"],["2024-07-24T03:47:47.010000"],["2024-07-24T03:47:48.010000"],["2024-07-24T03:47:49.010000"],["2024-07-24T03:47:50.010000"],["2024-07-24T03:47:51.010000"],["2024-07-24T03:47:52.010000"],["2024-07-24T03:47:53.010000"],["2024-07-24T03:47:54.010000"],["2024-07-24T03:47:55.010000"],["2024-07-24T03:47:56.010000"],["2024-07-24T03:47:57.010000"],["2024-07-24T03:47:58.010000"],["2024-07-24T03:47:59.010000"],["2024-07-24T03:48:00.010000"],["2024-07-24T03:48:01.010000"],["2024-07-24T03:48:02.010000"],["2024-07-24T03:48:03.010000"],["2024-07-24T03:48:04.010000"],["2024-07-24T03:48:05.010000"],["2024-07-24T03:48:06.010000"],["2024-07-24T03:48:07.010000"],["2024-07-24T03:48:08.010000"],["2024-07-24T03:48:09.010000"],["2024-07-24T03:48:10.010000"],["2024-07-24T03:48:11.010000"],["2024-07-24T03:48:12.010000"],["2024-07-24T03:48:13.010000"],["2024-07-24T03:48:14.010000"],["2024-07-24T03:48:15.010000"],["2024-07-24T03:48:16.010000"],["2024-07-24T03:48:17.010000"],["2024-07-24T03:48:18.010000"],["2024-07-24T03:48:19.010000"],["2024-07-24T03:48:20.010000"],["2024-07-24T03:48:21.010000"],["2024-07-24T03:48:22.010000"],["2024-07-24T03:48:23.010000"],["2024-07-24T03:48:24.010000"],["2024-07-24T03:48:25.010000"],["2024-07-24T03:48:26.010000"],["2024-07-24T03:48:27.010000"],["2024-07-24T03:48:28.010000"],["2024-07-24T03:48:29.010000"],["2024-07-24T03:48:30.010000"],["2024-07-24T03:48:31.010000"],["2024-07-24T03:48:32.010000"],["2024-07-24T03:48:33.010000"],["2024-07-24T03:48:34.010000"],["2024-07-24T03:48:35.010000"],["2024-07-24T03:48:36.010000"],["2024-07-24T03:48:37.010000"],["2024-07-24T03:48:38.010000"],["2024-07-24T03:48:39.010000"],["2024-07-24T03:48:40.010000"],["2024-07-24T03:48:41.010000"],["2024-07-24T03:48:42.010000"],["2024-07-24T03:48:43.010000"],["2024-07-24T03:48:44.010000"],["2024-07-24T03:48:45.010000"],["2024-07-24T03:48:46.010000"],["2024-07-24T03:48:47.010000"],["2024-07-24T03:48:48.010000"],["2024-07-24T03:48:49.010000"],["2024-07-24T03:48:50.010000"],["2024-07-24T03:48:51.010000"],["2024-07-24T03:48:52.010000"],["2024-07-24T03:48:53.010000"],["2024-07-24T03:48:54.010000"],["2024-07-24T03:48:55.010000"],["2024-07-24T03:48:56.010000"],["2024-07-24T03:48:57.010000"],["2024-07-24T03:48:58.010000"],["2024-07-24T03:48:59.010000"],["2024-07-24T03:49:00.010000"],["2024-07-24T03:49:01.010000"],["2024-07-24T03:49:02.010000"],["2024-07-24T03:49:03.010000"],["2024-07-24T03:49:04.010000"],["2024-07-24T03:49:05.010000"],["2024-07-24T03:49:06.010000"],["2024-07-24T03:49:07.010000"],["2024-07-24T03:49:08.010000"],["2024-07-24T03:49:09.010000"],["2024-07-24T03:49:10.010000"],["2024-07-24T03:49:11.010000"],["2024-07-24T03:49:12.010000"],["2024-07-24T03:49:13.010000"],["2024-07-24T03:49:14.010000"],["2024-07-24T03:49:15.010000"],["2024-07-24T03:49:16.010000"],["2024-07-24T03:49:17.010000"],["2024-07-24T03:49:18.010000"],["2024-07-24T03:49:19.010000"],["2024-07-24T03:49:20.010000"],["2024-07-24T03:49:21.010000"],["2024-07-24T03:49:22.010000"],["2024-07-24T03:49:23.010000"],["2024-07-24T03:49:24.010000"],["2024-07-24T03:49:25.010000"],["2024-07-24T03:49:26.010000"],["2024-07-24T03:49:27.010000"],["2024-07-24T03:49:28.010000"],["2024-07-24T03:49:29.010000"],["2024-07-24T03:49:30.010000"],["2024-07-24T03:49:31.010000"],["2024-07-24T03:49:32.010000"],["2024-07-24T03:49:33.010000"],["2024-07-24T03:49:34.010000"],["2024-07-24T03:49:35.010000"],["2024-07-24T03:49:36.010000"],["2024-07-24T03:49:37.010000"],["2024-07-24T03:49:38.010000"],["2024-07-24T03:49:39.010000"],["2024-07-24T03:49:40.010000"],["2024-07-24T03:49:41.010000"],["2024-07-24T03:49:42.010000"],["2024-07-24T03:49:43.010000"],["2024-07-24T03:49:44.010000"],["2024-07-24T03:49:45.010000"],["2024-07-24T03:49:46.010000"],["2024-07-24T03:49:47.010000"],["2024-07-24T03:49:48.010000"],["2024-07-24T03:49:49.010000"],["2024-07-24T03:49:50.010000"],["2024-07-24T03:49:51.010000"],["2024-07-24T03:49:52.010000"],["2024-07-24T03:49:53.010000"],["2024-07-24T03:49:54.010000"],["2024-07-24T03:49:55.010000"],["2024-07-24T03:49:56.010000"],["2024-07-24T03:49:57.010000"],["2024-07-24T03:49:58.010000"],["2024-07-24T03:49:59.010000"],["2024-07-24T03:50:00.010000"],["2024-07-24T03:50:01.010000"],["2024-07-24T03:50:02.010000"],["2024-07-24T03:50:03.010000"],["2024-07-24T03:50:04.010000"],["2024-07-24T03:50:05.010000"],["2024-07-24T03:50:06.010000"],["2024-07-24T03:50:07.010000"],["2024-07-24T03:50:08.010000"],["2024-07-24T03:50:09.010000"],["2024-07-24T03:50:10.010000"],["2024-07-24T03:50:11.010000"],["2024-07-24T03:50:12.010000"],["2024-07-24T03:50:13.010000"],["2024-07-24T03:50:14.010000"],["2024-07-24T03:50:15.010000"],["2024-07-24T03:50:16.010000"],["2024-07-24T03:50:17.010000"],["2024-07-24T03:50:18.010000"],["2024-07-24T03:50:19.010000"],["2024-07-24T03:50:20.010000"],["2024-07-24T03:50:21.010000"],["2024-07-24T03:50:22.010000"],["2024-07-24T03:50:23.010000"],["2024-07-24T03:50:24.010000"],["2024-07-24T03:50:25.010000"],["2024-07-24T03:50:26.010000"],["2024-07-24T03:50:27.010000"],["2024-07-24T03:50:28.010000"],["2024-07-24T03:50:29.010000"],["2024-07-24T03:50:30.010000"],["2024-07-24T03:50:31.010000"],["2024-07-24T03:50:32.010000"],["2024-07-24T03:50:33.010000"],["2024-07-24T03:50:34.010000"],["2024-07-24T03:50:35.010000"],["2024-07-24T03:50:36.010000"],["2024-07-24T03:50:37.010000"],["2024-07-24T03:50:38.010000"],["2024-07-24T03:50:39.010000"],["2024-07-24T03:50:40.010000"],["2024-07-24T03:50:41.010000"],["2024-07-24T03:50:42.010000"],["2024-07-24T03:50:43.010000"],["2024-07-24T03:50:44.010000"],["2024-07-24T03:50:45.010000"],["2024-07-24T03:50:46.010000"],["2024-07-24T03:50:47.010000"],["2024-07-24T03:50:48.010000"],["2024-07-24T03:50:49.010000"],["2024-07-24T03:50:50.010000"],["2024-07-24T03:50:51.010000"],["2024-07-24T03:50:52.010000"],["2024-07-24T03:50:53.010000"],["2024-07-24T03:50:54.010000"],["2024-07-24T03:50:55.010000"],["2024-07-24T03:50:56.010000"],["2024-07-24T03:50:57.010000"],["2024-07-24T03:50:58.010000"],["2024-07-24T03:50:59.010000"],["2024-07-24T03:51:00.010000"],["2024-07-24T03:51:01.010000"],["2024-07-24T03:51:02.010000"],["2024-07-24T03:51:03.010000"],["2024-07-24T03:51:04.010000"],["2024-07-24T03:51:05.010000"],["2024-07-24T03:51:06.010000"],["2024-07-24T03:51:07.010000"],["2024-07-24T03:51:08.010000"],["2024-07-24T03:51:09.010000"],["2024-07-24T03:51:10.010000"],["2024-07-24T03:51:11.010000"],["2024-07-24T03:51:12.010000"],["2024-07-24T03:51:13.010000"],["2024-07-24T03:51:14.010000"],["2024-07-24T03:51:15.010000"],["2024-07-24T03:51:16.010000"],["2024-07-24T03:51:17.010000"],["2024-07-24T03:51:18.010000"],["2024-07-24T03:51:19.010000"],["2024-07-24T03:51:20.010000"],["2024-07-24T03:51:21.010000"],["2024-07-24T03:51:22.010000"],["2024-07-24T03:51:23.010000"],["2024-07-24T03:51:24.010000"],["2024-07-24T03:51:25.010000"],["2024-07-24T03:51:26.010000"],["2024-07-24T03:51:27.010000"],["2024-07-24T03:51:28.010000"],["2024-07-24T03:51:29.010000"],["2024-07-24T03:51:30.010000"],["2024-07-24T03:51:31.010000"],["2024-07-24T03:51:32.010000"],["2024-07-24T03:51:33.010000"],["2024-07-24T03:51:34.010000"],["2024-07-24T03:51:35.010000"],["2024-07-24T03:51:36.010000"],["2024-07-24T03:51:37.010000"],["2024-07-24T03:51:38.010000"],["2024-07-24T03:51:39.010000"],["2024-07-24T03:51:40.010000"],["2024-07-24T03:51:41.010000"],["2024-07-24T03:51:42.010000"],["2024-07-24T03:51:43.010000"],["2024-07-24T03:51:44.010000"],["2024-07-24T03:51:45.010000"],["2024-07-24T03:51:46.010000"],["2024-07-24T03:51:47.010000"],["2024-07-24T03:51:48.010000"],["2024-07-24T03:51:49.010000"],["2024-07-24T03:51:50.010000"],["2024-07-24T03:51:51.010000"],["2024-07-24T03:51:52.010000"],["2024-07-24T03:51:53.010000"],["2024-07-24T03:51:54.010000"],["2024-07-24T03:51:55.010000"],["2024-07-24T03:51:56.010000"],["2024-07-24T03:51:57.010000"],["2024-07-24T03:51:58.010000"],["2024-07-24T03:51:59.010000"],["2024-07-24T03:52:00.010000"],["2024-07-24T03:52:01.010000"],["2024-07-24T03:52:02.010000"],["2024-07-24T03:52:03.010000"],["2024-07-24T03:52:04.010000"],["2024-07-24T03:52:05.010000"],["2024-07-24T03:52:06.010000"],["2024-07-24T03:52:07.010000"],["2024-07-24T03:52:08.010000"],["2024-07-24T03:52:09.010000"],["2024-07-24T03:52:10.010000"],["2024-07-24T03:52:11.010000"],["2024-07-24T03:52:12.010000"],["2024-07-24T03:52:13.010000"],["2024-07-24T03:52:14.010000"],["2024-07-24T03:52:15.010000"],["2024-07-24T03:52:16.010000"],["2024-07-24T03:52:17.010000"],["2024-07-24T03:52:18.010000"],["2024-07-24T03:52:19.010000"],["2024-07-24T03:52:20.010000"],["2024-07-24T03:52:21.010000"],["2024-07-24T03:52:22.010000"],["2024-07-24T03:52:23.010000"],["2024-07-24T03:52:24.010000"],["2024-07-24T03:52:25.010000"],["2024-07-24T03:52:26.010000"],["2024-07-24T03:52:27.010000"],["2024-07-24T03:52:28.010000"],["2024-07-24T03:52:29.010000"],["2024-07-24T03:52:30.010000"],["2024-07-24T03:52:31.010000"],["2024-07-24T03:52:32.010000"],["2024-07-24T03:52:33.010000"],["2024-07-24T03:52:34.010000"],["2024-07-24T03:52:35.010000"],["2024-07-24T03:52:36.010000"],["2024-07-24T03:52:37.010000"],["2024-07-24T03:52:38.010000"],["2024-07-24T03:52:39.010000"],["2024-07-24T03:52:40.010000"],["2024-07-24T03:52:41.010000"],["2024-07-24T03:52:42.010000"],["2024-07-24T03:52:43.010000"],["2024-07-24T03:52:44.010000"],["2024-07-24T03:52:45.010000"],["2024-07-24T03:52:46.010000"],["2024-07-24T03:52:47.010000"],["2024-07-24T03:52:48.010000"],["2024-07-24T03:52:49.010000"],["2024-07-24T03:52:50.010000"],["2024-07-24T03:52:51.010000"],["2024-07-24T03:52:52.010000"],["2024-07-24T03:52:53.010000"],["2024-07-24T03:52:54.010000"],["2024-07-24T03:52:55.010000"],["2024-07-24T03:52:56.010000"],["2024-07-24T03:52:57.010000"],["2024-07-24T03:52:58.010000"],["2024-07-24T03:52:59.010000"],["2024-07-24T03:53:00.010000"],["2024-07-24T03:53:01.010000"],["2024-07-24T03:53:02.010000"],["2024-07-24T03:53:03.010000"],["2024-07-24T03:53:04.010000"],["2024-07-24T03:53:05.010000"],["2024-07-24T03:53:06.010000"],["2024-07-24T03:53:07.010000"],["2024-07-24T03:53:08.010000"],["2024-07-24T03:53:09.010000"],["2024-07-24T03:53:10.010000"],["2024-07-24T03:53:11.010000"],["2024-07-24T03:53:12.010000"],["2024-07-24T03:53:13.010000"],["2024-07-24T03:53:14.010000"],["2024-07-24T03:53:15.010000"],["2024-07-24T03:53:16.010000"],["2024-07-24T03:53:17.010000"],["2024-07-24T03:53:18.010000"],["2024-07-24T03:53:19.010000"],["2024-07-24T03:53:20.010000"],["2024-07-24T03:53:21.010000"],["2024-07-24T03:53:22.010000"],["2024-07-24T03:53:23.010000"],["2024-07-24T03:53:24.010000"],["2024-07-24T03:53:25.010000"],["2024-07-24T03:53:26.010000"],["2024-07-24T03:53:27.010000"],["2024-07-24T03:53:28.010000"],["2024-07-24T03:53:29.010000"],["2024-07-24T03:53:30.010000"],["2024-07-24T03:53:31.010000"],["2024-07-24T03:53:32.010000"],["2024-07-24T03:53:33.010000"],["2024-07-24T03:53:34.010000"],["2024-07-24T03:53:35.010000"],["2024-07-24T03:53:36.010000"],["2024-07-24T03:53:37.010000"],["2024-07-24T03:53:38.010000"],["2024-07-24T03:53:39.010000"],["2024-07-24T03:53:40.010000"],["2024-07-24T03:53:41.010000"],["2024-07-24T03:53:42.010000"],["2024-07-24T03:53:43.010000"],["2024-07-24T03:53:44.010000"],["2024-07-24T03:53:45.010000"],["2024-07-24T03:53:46.010000"],["2024-07-24T03:53:47.010000"],["2024-07-24T03:53:48.010000"],["2024-07-24T03:53:49.010000"],["2024-07-24T03:53:50.010000"],["2024-07-24T03:53:51.010000"],["2024-07-24T03:53:52.010000"],["2024-07-24T03:53:53.010000"],["2024-07-24T03:53:54.010000"],["2024-07-24T03:53:55.010000"],["2024-07-24T03:53:56.010000"],["2024-07-24T03:53:57.010000"],["2024-07-24T03:53:58.010000"],["2024-07-24T03:53:59.010000"],["2024-07-24T03:54:00.010000"],["2024-07-24T03:54:01.010000"],["2024-07-24T03:54:02.010000"],["2024-07-24T03:54:03.010000"],["2024-07-24T03:54:04.010000"],["2024-07-24T03:54:05.010000"],["2024-07-24T03:54:06.010000"],["2024-07-24T03:54:07.010000"],["2024-07-24T03:54:08.010000"],["2024-07-24T03:54:09.010000"],["2024-07-24T03:54:10.010000"],["2024-07-24T03:54:11.010000"],["2024-07-24T03:54:12.010000"],["2024-07-24T03:54:13.010000"],["2024-07-24T03:54:14.010000"],["2024-07-24T03:54:15.010000"],["2024-07-24T03:54:16.010000"],["2024-07-24T03:54:17.010000"],["2024-07-24T03:54:18.010000"],["2024-07-24T03:54:19.010000"],["2024-07-24T03:54:20.010000"],["2024-07-24T03:54:21.010000"],["2024-07-24T03:54:22.010000"],["2024-07-24T03:54:23.010000"],["2024-07-24T03:54:24.010000"],["2024-07-24T03:54:25.010000"],["2024-07-24T03:54:26.010000"],["2024-07-24T03:54:27.010000"],["2024-07-24T03:54:28.010000"],["2024-07-24T03:54:29.010000"],["2024-07-24T03:54:30.010000"],["2024-07-24T03:54:31.010000"],["2024-07-24T03:54:32.010000"],["2024-07-24T03:54:33.010000"],["2024-07-24T03:54:34.010000"],["2024-07-24T03:54:35.010000"],["2024-07-24T03:54:36.010000"],["2024-07-24T03:54:37.010000"],["2024-07-24T03:54:38.010000"],["2024-07-24T03:54:39.010000"],["2024-07-24T03:54:40.010000"],["2024-07-24T03:54:41.010000"],["2024-07-24T03:54:42.010000"],["2024-07-24T03:54:43.010000"],["2024-07-24T03:54:44.010000"],["2024-07-24T03:54:45.010000"],["2024-07-24T03:54:46.010000"],["2024-07-24T03:54:47.010000"],["2024-07-24T03:54:48.010000"],["2024-07-24T03:54:49.010000"],["2024-07-24T03:54:50.010000"],["2024-07-24T03:54:51.010000"],["2024-07-24T03:54:52.010000"],["2024-07-24T03:54:53.010000"],["2024-07-24T03:54:54.010000"],["2024-07-24T03:54:55.010000"],["2024-07-24T03:54:56.010000"],["2024-07-24T03:54:57.010000"],["2024-07-24T03:54:58.010000"],["2024-07-24T03:54:59.010000"],["2024-07-24T03:55:00.010000"],["2024-07-24T03:55:01.010000"],["2024-07-24T03:55:02.010000"],["2024-07-24T03:55:03.010000"],["2024-07-24T03:55:04.010000"],["2024-07-24T03:55:05.010000"],["2024-07-24T03:55:06.010000"],["2024-07-24T03:55:07.010000"],["2024-07-24T03:55:08.010000"],["2024-07-24T03:55:09.010000"],["2024-07-24T03:55:10.010000"],["2024-07-24T03:55:11.010000"],["2024-07-24T03:55:12.010000"],["2024-07-24T03:55:13.010000"],["2024-07-24T03:55:14.010000"],["2024-07-24T03:55:15.010000"],["2024-07-24T03:55:16.010000"],["2024-07-24T03:55:17.010000"],["2024-07-24T03:55:18.010000"],["2024-07-24T03:55:19.010000"],["2024-07-24T03:55:20.010000"],["2024-07-24T03:55:21.010000"],["2024-07-24T03:55:22.010000"],["2024-07-24T03:55:23.010000"],["2024-07-24T03:55:24.010000"],["2024-07-24T03:55:25.010000"],["2024-07-24T03:55:26.010000"],["2024-07-24T03:55:27.010000"],["2024-07-24T03:55:28.010000"],["2024-07-24T03:55:29.010000"],["2024-07-24T03:55:30.010000"],["2024-07-24T03:55:31.010000"],["2024-07-24T03:55:32.010000"],["2024-07-24T03:55:33.010000"],["2024-07-24T03:55:34.010000"],["2024-07-24T03:55:35.010000"],["2024-07-24T03:55:36.010000"],["2024-07-24T03:55:37.010000"],["2024-07-24T03:55:38.010000"],["2024-07-24T03:55:39.010000"],["2024-07-24T03:55:40.010000"],["2024-07-24T03:55:41.010000"],["2024-07-24T03:55:42.010000"],["2024-07-24T03:55:43.010000"],["2024-07-24T03:55:44.010000"],["2024-07-24T03:55:45.010000"],["2024-07-24T03:55:46.010000"],["2024-07-24T03:55:47.010000"],["2024-07-24T03:55:48.010000"],["2024-07-24T03:55:49.010000"],["2024-07-24T03:55:50.010000"],["2024-07-24T03:55:51.010000"],["2024-07-24T03:55:52.010000"],["2024-07-24T03:55:53.010000"],["2024-07-24T03:55:54.010000"],["2024-07-24T03:55:55.010000"],["2024-07-24T03:55:56.010000"],["2024-07-24T03:55:57.010000"],["2024-07-24T03:55:58.010000"],["2024-07-24T03:55:59.010000"],["2024-07-24T03:56:00.010000"],["2024-07-24T03:56:01.010000"],["2024-07-24T03:56:02.010000"],["2024-07-24T03:56:03.010000"],["2024-07-24T03:56:04.010000"],["2024-07-24T03:56:05.010000"],["2024-07-24T03:56:06.010000"],["2024-07-24T03:56:07.010000"],["2024-07-24T03:56:08.010000"],["2024-07-24T03:56:09.010000"],["2024-07-24T03:56:10.010000"],["2024-07-24T03:56:11.010000"],["2024-07-24T03:56:12.010000"],["2024-07-24T03:56:13.010000"],["2024-07-24T03:56:14.010000"],["2024-07-24T03:56:15.010000"],["2024-07-24T03:56:16.010000"],["2024-07-24T03:56:17.010000"],["2024-07-24T03:56:18.010000"],["2024-07-24T03:56:19.010000"],["2024-07-24T03:56:20.010000"],["2024-07-24T03:56:21.010000"],["2024-07-24T03:56:22.010000"],["2024-07-24T03:56:23.010000"],["2024-07-24T03:56:24.010000"],["2024-07-24T03:56:25.010000"],["2024-07-24T03:56:26.010000"],["2024-07-24T03:56:27.010000"],["2024-07-24T03:56:28.010000"],["2024-07-24T03:56:29.010000"],["2024-07-24T03:56:30.010000"],["2024-07-24T03:56:31.010000"],["2024-07-24T03:56:32.010000"],["2024-07-24T03:56:33.010000"],["2024-07-24T03:56:34.010000"],["2024-07-24T03:56:35.010000"],["2024-07-24T03:56:36.010000"],["2024-07-24T03:56:37.010000"],["2024-07-24T03:56:38.010000"],["2024-07-24T03:56:39.010000"],["2024-07-24T03:56:40.010000"],["2024-07-24T03:56:41.010000"],["2024-07-24T03:56:42.010000"],["2024-07-24T03:56:43.010000"],["2024-07-24T03:56:44.010000"],["2024-07-24T03:56:45.010000"],["2024-07-24T03:56:46.010000"],["2024-07-24T03:56:47.010000"],["2024-07-24T03:56:48.010000"],["2024-07-24T03:56:49.010000"],["2024-07-24T03:56:50.010000"],["2024-07-24T03:56:51.010000"],["2024-07-24T03:56:52.010000"],["2024-07-24T03:56:53.010000"],["2024-07-24T03:56:54.010000"],["2024-07-24T03:56:55.010000"],["2024-07-24T03:56:56.010000"],["2024-07-24T03:56:57.010000"],["2024-07-24T03:56:58.010000"],["2024-07-24T03:56:59.010000"],["2024-07-24T03:57:00.010000"],["2024-07-24T03:57:01.010000"],["2024-07-24T03:57:02.010000"],["2024-07-24T03:57:03.010000"],["2024-07-24T03:57:04.010000"],["2024-07-24T03:57:05.010000"],["2024-07-24T03:57:06.010000"],["2024-07-24T03:57:07.010000"],["2024-07-24T03:57:08.010000"],["2024-07-24T03:57:09.010000"],["2024-07-24T03:57:10.010000"],["2024-07-24T03:57:11.010000"],["2024-07-24T03:57:12.010000"],["2024-07-24T03:57:13.010000"],["2024-07-24T03:57:14.010000"],["2024-07-24T03:57:15.010000"],["2024-07-24T03:57:16.010000"],["2024-07-24T03:57:17.010000"],["2024-07-24T03:57:18.010000"],["2024-07-24T03:57:19.010000"],["2024-07-24T03:57:20.010000"],["2024-07-24T03:57:21.010000"],["2024-07-24T03:57:22.010000"],["2024-07-24T03:57:23.010000"],["2024-07-24T03:57:24.010000"],["2024-07-24T03:57:25.010000"],["2024-07-24T03:57:26.010000"],["2024-07-24T03:57:27.010000"],["2024-07-24T03:57:28.010000"],["2024-07-24T03:57:29.010000"],["2024-07-24T03:57:30.010000"],["2024-07-24T03:57:31.010000"],["2024-07-24T03:57:32.010000"],["2024-07-24T03:57:33.010000"],["2024-07-24T03:57:34.010000"],["2024-07-24T03:57:35.010000"],["2024-07-24T03:57:36.010000"],["2024-07-24T03:57:37.010000"],["2024-07-24T03:57:38.010000"],["2024-07-24T03:57:39.010000"],["2024-07-24T03:57:40.010000"],["2024-07-24T03:57:41.010000"],["2024-07-24T03:57:42.010000"],["2024-07-24T03:57:43.010000"],["2024-07-24T03:57:44.010000"],["2024-07-24T03:57:45.010000"],["2024-07-24T03:57:46.010000"],["2024-07-24T03:57:47.010000"],["2024-07-24T03:57:48.010000"],["2024-07-24T03:57:49.010000"],["2024-07-24T03:57:50.010000"],["2024-07-24T03:57:51.010000"],["2024-07-24T03:57:52.010000"],["2024-07-24T03:57:53.010000"],["2024-07-24T03:57:54.010000"],["2024-07-24T03:57:55.010000"],["2024-07-24T03:57:56.010000"],["2024-07-24T03:57:57.010000"],["2024-07-24T03:57:58.010000"],["2024-07-24T03:57:59.010000"],["2024-07-24T03:58:00.010000"],["2024-07-24T03:58:01.010000"],["2024-07-24T03:58:02.010000"],["2024-07-24T03:58:03.010000"],["2024-07-24T03:58:04.010000"],["2024-07-24T03:58:05.010000"],["2024-07-24T03:58:06.010000"],["2024-07-24T03:58:07.010000"],["2024-07-24T03:58:08.010000"],["2024-07-24T03:58:09.010000"],["2024-07-24T03:58:10.010000"],["2024-07-24T03:58:11.010000"],["2024-07-24T03:58:12.010000"],["2024-07-24T03:58:13.010000"],["2024-07-24T03:58:14.010000"],["2024-07-24T03:58:15.010000"],["2024-07-24T03:58:16.010000"],["2024-07-24T03:58:17.010000"],["2024-07-24T03:58:18.010000"],["2024-07-24T03:58:19.010000"],["2024-07-24T03:58:20.010000"],["2024-07-24T03:58:21.010000"],["2024-07-24T03:58:22.010000"],["2024-07-24T03:58:23.010000"],["2024-07-24T03:58:24.010000"],["2024-07-24T03:58:25.010000"],["2024-07-24T03:58:26.010000"],["2024-07-24T03:58:27.010000"],["2024-07-24T03:58:28.010000"],["2024-07-24T03:58:29.010000"],["2024-07-24T03:58:30.010000"],["2024-07-24T03:58:31.010000"],["2024-07-24T03:58:32.010000"],["2024-07-24T03:58:33.010000"],["2024-07-24T03:58:34.010000"],["2024-07-24T03:58:35.010000"],["2024-07-24T03:58:36.010000"],["2024-07-24T03:58:37.010000"],["2024-07-24T03:58:38.010000"],["2024-07-24T03:58:39.010000"],["2024-07-24T03:58:40.010000"],["2024-07-24T03:58:41.010000"],["2024-07-24T03:58:42.010000"],["2024-07-24T03:58:43.010000"],["2024-07-24T03:58:44.010000"],["2024-07-24T03:58:45.010000"],["2024-07-24T03:58:46.010000"],["2024-07-24T03:58:47.010000"],["2024-07-24T03:58:48.010000"],["2024-07-24T03:58:49.010000"],["2024-07-24T03:58:50.010000"],["2024-07-24T03:58:51.010000"],["2024-07-24T03:58:52.010000"],["2024-07-24T03:58:53.010000"],["2024-07-24T03:58:54.010000"],["2024-07-24T03:58:55.010000"],["2024-07-24T03:58:56.010000"],["2024-07-24T03:58:57.010000"],["2024-07-24T03:58:58.010000"],["2024-07-24T03:58:59.010000"],["2024-07-24T03:59:00.010000"],["2024-07-24T03:59:01.010000"],["2024-07-24T03:59:02.010000"],["2024-07-24T03:59:03.010000"],["2024-07-24T03:59:04.010000"],["2024-07-24T03:59:05.010000"],["2024-07-24T03:59:06.010000"],["2024-07-24T03:59:07.010000"],["2024-07-24T03:59:08.010000"],["2024-07-24T03:59:09.010000"],["2024-07-24T03:59:10.010000"],["2024-07-24T03:59:11.010000"],["2024-07-24T03:59:12.010000"],["2024-07-24T03:59:13.010000"],["2024-07-24T03:59:14.010000"],["2024-07-24T03:59:15.010000"],["2024-07-24T03:59:16.010000"],["2024-07-24T03:59:17.010000"],["2024-07-24T03:59:18.010000"],["2024-07-24T03:59:19.010000"],["2024-07-24T03:59:20.010000"],["2024-07-24T03:59:21.010000"],["2024-07-24T03:59:22.010000"],["2024-07-24T03:59:23.010000"],["2024-07-24T03:59:24.010000"],["2024-07-24T03:59:25.010000"],["2024-07-24T03:59:26.010000"],["2024-07-24T03:59:27.010000"],["2024-07-24T03:59:28.010000"],["2024-07-24T03:59:29.010000"],["2024-07-24T03:59:30.010000"],["2024-07-24T03:59:31.010000"],["2024-07-24T03:59:32.010000"],["2024-07-24T03:59:33.010000"],["2024-07-24T03:59:34.010000"],["2024-07-24T03:59:35.010000"],["2024-07-24T03:59:36.010000"],["2024-07-24T03:59:37.010000"],["2024-07-24T03:59:38.010000"],["2024-07-24T03:59:39.010000"],["2024-07-24T03:59:40.010000"],["2024-07-24T03:59:41.010000"],["2024-07-24T03:59:42.010000"],["2024-07-24T03:59:43.010000"],["2024-07-24T03:59:44.010000"],["2024-07-24T03:59:45.010000"],["2024-07-24T03:59:46.010000"],["2024-07-24T03:59:47.010000"],["2024-07-24T03:59:48.010000"],["2024-07-24T03:59:49.010000"],["2024-07-24T03:59:50.010000"],["2024-07-24T03:59:51.010000"],["2024-07-24T03:59:52.010000"],["2024-07-24T03:59:53.010000"],["2024-07-24T03:59:54.010000"],["2024-07-24T03:59:55.010000"],["2024-07-24T03:59:56.010000"],["2024-07-24T03:59:57.010000"],["2024-07-24T03:59:58.010000"],["2024-07-24T03:59:59.010000"],["2024-07-24T04:00:00.010000"],["2024-07-24T04:00:01.010000"],["2024-07-24T04:00:02.010000"],["2024-07-24T04:00:03.010000"],["2024-07-24T04:00:04.010000"],["2024-07-24T04:00:05.010000"],["2024-07-24T04:00:06.010000"],["2024-07-24T04:00:07.010000"],["2024-07-24T04:00:08.010000"],["2024-07-24T04:00:09.010000"],["2024-07-24T04:00:10.010000"],["2024-07-24T04:00:11.010000"],["2024-07-24T04:00:12.010000"],["2024-07-24T04:00:13.010000"],["2024-07-24T04:00:14.010000"],["2024-07-24T04:00:15.010000"],["2024-07-24T04:00:16.010000"],["2024-07-24T04:00:17.010000"],["2024-07-24T04:00:18.010000"],["2024-07-24T04:00:19.010000"],["2024-07-24T04:00:20.010000"],["2024-07-24T04:00:21.010000"],["2024-07-24T04:00:22.010000"],["2024-07-24T04:00:23.010000"],["2024-07-24T04:00:24.010000"],["2024-07-24T04:00:25.010000"],["2024-07-24T04:00:26.010000"],["2024-07-24T04:00:27.010000"],["2024-07-24T04:00:28.010000"],["2024-07-24T04:00:29.010000"],["2024-07-24T04:00:30.010000"],["2024-07-24T04:00:31.010000"],["2024-07-24T04:00:32.010000"],["2024-07-24T04:00:33.010000"],["2024-07-24T04:00:34.010000"],["2024-07-24T04:00:35.010000"],["2024-07-24T04:00:36.010000"],["2024-07-24T04:00:37.010000"],["2024-07-24T04:00:38.010000"],["2024-07-24T04:00:39.010000"],["2024-07-24T04:00:40.010000"],["2024-07-24T04:00:41.010000"],["2024-07-24T04:00:42.010000"],["2024-07-24T04:00:43.010000"],["2024-07-24T04:00:44.010000"],["2024-07-24T04:00:45.010000"],["2024-07-24T04:00:46.010000"],["2024-07-24T04:00:47.010000"],["2024-07-24T04:00:48.010000"],["2024-07-24T04:00:49.010000"],["2024-07-24T04:00:50.010000"],["2024-07-24T04:00:51.010000"],["2024-07-24T04:00:52.010000"],["2024-07-24T04:00:53.010000"],["2024-07-24T04:00:54.010000"],["2024-07-24T04:00:55.010000"],["2024-07-24T04:00:56.010000"],["2024-07-24T04:00:57.010000"],["2024-07-24T04:00:58.010000"],["2024-07-24T04:00:59.010000"],["2024-07-24T04:01:00.010000"],["2024-07-24T04:01:01.010000"],["2024-07-24T04:01:02.010000"],["2024-07-24T04:01:03.010000"],["2024-07-24T04:01:04.010000"],["2024-07-24T04:01:05.010000"],["2024-07-24T04:01:06.010000"],["2024-07-24T04:01:07.010000"],["2024-07-24T04:01:08.010000"],["2024-07-24T04:01:09.010000"],["2024-07-24T04:01:10.010000"],["2024-07-24T04:01:11.010000"],["2024-07-24T04:01:12.010000"],["2024-07-24T04:01:13.010000"],["2024-07-24T04:01:14.010000"],["2024-07-24T04:01:15.010000"],["2024-07-24T04:01:16.010000"],["2024-07-24T04:01:17.010000"],["2024-07-24T04:01:18.010000"],["2024-07-24T04:01:19.010000"],["2024-07-24T04:01:20.010000"],["2024-07-24T04:01:21.010000"],["2024-07-24T04:01:22.010000"],["2024-07-24T04:01:23.010000"],["2024-07-24T04:01:24.010000"],["2024-07-24T04:01:25.010000"],["2024-07-24T04:01:26.010000"],["2024-07-24T04:01:27.010000"],["2024-07-24T04:01:28.010000"],["2024-07-24T04:01:29.010000"],["2024-07-24T04:01:30.010000"],["2024-07-24T04:01:31.010000"],["2024-07-24T04:01:32.010000"],["2024-07-24T04:01:33.010000"],["2024-07-24T04:01:34.010000"],["2024-07-24T04:01:35.010000"],["2024-07-24T04:01:36.010000"],["2024-07-24T04:01:37.010000"],["2024-07-24T04:01:38.010000"],["2024-07-24T04:01:39.010000"],["2024-07-24T04:01:40.010000"],["2024-07-24T04:01:41.010000"],["2024-07-24T04:01:42.010000"],["2024-07-24T04:01:43.010000"],["2024-07-24T04:01:44.010000"],["2024-07-24T04:01:45.010000"],["2024-07-24T04:01:46.010000"],["2024-07-24T04:01:47.010000"],["2024-07-24T04:01:48.010000"],["2024-07-24T04:01:49.010000"],["2024-07-24T04:01:50.010000"],["2024-07-24T04:01:51.010000"],["2024-07-24T04:01:52.010000"],["2024-07-24T04:01:53.010000"],["2024-07-24T04:01:54.010000"],["2024-07-24T04:01:55.010000"],["2024-07-24T04:01:56.010000"],["2024-07-24T04:01:57.010000"],["2024-07-24T04:01:58.010000"],["2024-07-24T04:01:59.010000"],["2024-07-24T04:02:00.010000"],["2024-07-24T04:02:01.010000"],["2024-07-24T04:02:02.010000"],["2024-07-24T04:02:03.010000"],["2024-07-24T04:02:04.010000"],["2024-07-24T04:02:05.010000"],["2024-07-24T04:02:06.010000"],["2024-07-24T04:02:07.010000"],["2024-07-24T04:02:08.010000"],["2024-07-24T04:02:09.010000"],["2024-07-24T04:02:10.010000"],["2024-07-24T04:02:11.010000"],["2024-07-24T04:02:12.010000"],["2024-07-24T04:02:13.010000"],["2024-07-24T04:02:14.010000"],["2024-07-24T04:02:15.010000"],["2024-07-24T04:02:16.010000"],["2024-07-24T04:02:17.010000"],["2024-07-24T04:02:18.010000"],["2024-07-24T04:02:19.010000"],["2024-07-24T04:02:20.010000"],["2024-07-24T04:02:21.010000"],["2024-07-24T04:02:22.010000"],["2024-07-24T04:02:23.010000"],["2024-07-24T04:02:24.010000"],["2024-07-24T04:02:25.010000"],["2024-07-24T04:02:26.010000"],["2024-07-24T04:02:27.010000"],["2024-07-24T04:02:28.010000"],["2024-07-24T04:02:29.010000"],["2024-07-24T04:02:30.010000"],["2024-07-24T04:02:31.010000"],["2024-07-24T04:02:32.010000"],["2024-07-24T04:02:33.010000"],["2024-07-24T04:02:34.010000"],["2024-07-24T04:02:35.010000"],["2024-07-24T04:02:36.010000"],["2024-07-24T04:02:37.010000"],["2024-07-24T04:02:38.010000"],["2024-07-24T04:02:39.010000"],["2024-07-24T04:02:40.010000"],["2024-07-24T04:02:41.010000"],["2024-07-24T04:02:42.010000"],["2024-07-24T04:02:43.010000"],["2024-07-24T04:02:44.010000"],["2024-07-24T04:02:45.010000"],["2024-07-24T04:02:46.010000"],["2024-07-24T04:02:47.010000"],["2024-07-24T04:02:48.010000"],["2024-07-24T04:02:49.010000"],["2024-07-24T04:02:50.010000"],["2024-07-24T04:02:51.010000"],["2024-07-24T04:02:52.010000"],["2024-07-24T04:02:53.010000"],["2024-07-24T04:02:54.010000"],["2024-07-24T04:02:55.010000"],["2024-07-24T04:02:56.010000"],["2024-07-24T04:02:57.010000"],["2024-07-24T04:02:58.010000"],["2024-07-24T04:02:59.010000"],["2024-07-24T04:03:00.010000"],["2024-07-24T04:03:01.010000"],["2024-07-24T04:03:02.010000"],["2024-07-24T04:03:03.010000"],["2024-07-24T04:03:04.010000"],["2024-07-24T04:03:05.010000"],["2024-07-24T04:03:06.010000"],["2024-07-24T04:03:07.010000"],["2024-07-24T04:03:08.010000"],["2024-07-24T04:03:09.010000"],["2024-07-24T04:03:10.010000"],["2024-07-24T04:03:11.010000"],["2024-07-24T04:03:12.010000"],["2024-07-24T04:03:13.010000"],["2024-07-24T04:03:14.010000"],["2024-07-24T04:03:15.010000"],["2024-07-24T04:03:16.010000"],["2024-07-24T04:03:17.010000"],["2024-07-24T04:03:18.010000"],["2024-07-24T04:03:19.010000"],["2024-07-24T04:03:20.010000"],["2024-07-24T04:03:21.010000"],["2024-07-24T04:03:22.010000"],["2024-07-24T04:03:23.010000"],["2024-07-24T04:03:24.010000"],["2024-07-24T04:03:25.010000"],["2024-07-24T04:03:26.010000"],["2024-07-24T04:03:27.010000"],["2024-07-24T04:03:28.010000"],["2024-07-24T04:03:29.010000"],["2024-07-24T04:03:30.010000"],["2024-07-24T04:03:31.010000"],["2024-07-24T04:03:32.010000"],["2024-07-24T04:03:33.010000"],["2024-07-24T04:03:34.010000"],["2024-07-24T04:03:35.010000"],["2024-07-24T04:03:36.010000"],["2024-07-24T04:03:37.010000"],["2024-07-24T04:03:38.010000"],["2024-07-24T04:03:39.010000"],["2024-07-24T04:03:40.010000"],["2024-07-24T04:03:41.010000"],["2024-07-24T04:03:42.010000"],["2024-07-24T04:03:43.010000"],["2024-07-24T04:03:44.010000"],["2024-07-24T04:03:45.010000"],["2024-07-24T04:03:46.010000"],["2024-07-24T04:03:47.010000"],["2024-07-24T04:03:48.010000"],["2024-07-24T04:03:49.010000"],["2024-07-24T04:03:50.010000"],["2024-07-24T04:03:51.010000"],["2024-07-24T04:03:52.010000"],["2024-07-24T04:03:53.010000"],["2024-07-24T04:03:54.010000"],["2024-07-24T04:03:55.010000"],["2024-07-24T04:03:56.010000"],["2024-07-24T04:03:57.010000"],["2024-07-24T04:03:58.010000"],["2024-07-24T04:03:59.010000"],["2024-07-24T04:04:00.010000"],["2024-07-24T04:04:01.010000"],["2024-07-24T04:04:02.010000"],["2024-07-24T04:04:03.010000"],["2024-07-24T04:04:04.010000"],["2024-07-24T04:04:05.010000"],["2024-07-24T04:04:06.010000"],["2024-07-24T04:04:07.010000"],["2024-07-24T04:04:08.010000"],["2024-07-24T04:04:09.010000"],["2024-07-24T04:04:10.010000"],["2024-07-24T04:04:11.010000"],["2024-07-24T04:04:12.010000"],["2024-07-24T04:04:13.010000"],["2024-07-24T04:04:14.010000"],["2024-07-24T04:04:15.010000"],["2024-07-24T04:04:16.010000"],["2024-07-24T04:04:17.010000"],["2024-07-24T04:04:18.010000"],["2024-07-24T04:04:19.010000"],["2024-07-24T04:04:20.010000"],["2024-07-24T04:04:21.010000"],["2024-07-24T04:04:22.010000"],["2024-07-24T04:04:23.010000"],["2024-07-24T04:04:24.010000"],["2024-07-24T04:04:25.010000"],["2024-07-24T04:04:26.010000"],["2024-07-24T04:04:27.010000"],["2024-07-24T04:04:28.010000"],["2024-07-24T04:04:29.010000"],["2024-07-24T04:04:30.010000"],["2024-07-24T04:04:31.010000"],["2024-07-24T04:04:32.010000"],["2024-07-24T04:04:33.010000"],["2024-07-24T04:04:34.010000"],["2024-07-24T04:04:35.010000"],["2024-07-24T04:04:36.010000"],["2024-07-24T04:04:37.010000"],["2024-07-24T04:04:38.010000"],["2024-07-24T04:04:39.010000"],["2024-07-24T04:04:40.010000"],["2024-07-24T04:04:41.010000"],["2024-07-24T04:04:42.010000"],["2024-07-24T04:04:43.010000"],["2024-07-24T04:04:44.010000"],["2024-07-24T04:04:45.010000"],["2024-07-24T04:04:46.010000"],["2024-07-24T04:04:47.010000"],["2024-07-24T04:04:48.010000"],["2024-07-24T04:04:49.010000"],["2024-07-24T04:04:50.010000"],["2024-07-24T04:04:51.010000"],["2024-07-24T04:04:52.010000"],["2024-07-24T04:04:53.010000"],["2024-07-24T04:04:54.010000"],["2024-07-24T04:04:55.010000"],["2024-07-24T04:04:56.010000"],["2024-07-24T04:04:57.010000"],["2024-07-24T04:04:58.010000"],["2024-07-24T04:04:59.010000"],["2024-07-24T04:05:00.010000"],["2024-07-24T04:05:01.010000"],["2024-07-24T04:05:02.010000"],["2024-07-24T04:05:03.010000"],["2024-07-24T04:05:04.010000"],["2024-07-24T04:05:05.010000"],["2024-07-24T04:05:06.010000"],["2024-07-24T04:05:07.010000"],["2024-07-24T04:05:08.010000"],["2024-07-24T04:05:09.010000"],["2024-07-24T04:05:10.010000"],["2024-07-24T04:05:11.010000"],["2024-07-24T04:05:12.010000"],["2024-07-24T04:05:13.010000"],["2024-07-24T04:05:14.010000"],["2024-07-24T04:05:15.010000"],["2024-07-24T04:05:16.010000"],["2024-07-24T04:05:17.010000"],["2024-07-24T04:05:18.010000"],["2024-07-24T04:05:19.010000"],["2024-07-24T04:05:20.010000"],["2024-07-24T04:05:21.010000"],["2024-07-24T04:05:22.010000"],["2024-07-24T04:05:23.010000"],["2024-07-24T04:05:24.010000"],["2024-07-24T04:05:25.010000"],["2024-07-24T04:05:26.010000"],["2024-07-24T04:05:27.010000"],["2024-07-24T04:05:28.010000"],["2024-07-24T04:05:29.010000"],["2024-07-24T04:05:30.010000"],["2024-07-24T04:05:31.010000"],["2024-07-24T04:05:32.010000"],["2024-07-24T04:05:33.010000"],["2024-07-24T04:05:34.010000"],["2024-07-24T04:05:35.010000"],["2024-07-24T04:05:36.010000"],["2024-07-24T04:05:37.010000"],["2024-07-24T04:05:38.010000"],["2024-07-24T04:05:39.010000"],["2024-07-24T04:05:40.010000"],["2024-07-24T04:05:41.010000"],["2024-07-24T04:05:42.010000"],["2024-07-24T04:05:43.010000"],["2024-07-24T04:05:44.010000"],["2024-07-24T04:05:45.010000"],["2024-07-24T04:05:46.010000"],["2024-07-24T04:05:47.010000"],["2024-07-24T04:05:48.010000"],["2024-07-24T04:05:49.010000"],["2024-07-24T04:05:50.010000"],["2024-07-24T04:05:51.010000"],["2024-07-24T04:05:52.010000"],["2024-07-24T04:05:53.010000"],["2024-07-24T04:05:54.010000"],["2024-07-24T04:05:55.010000"],["2024-07-24T04:05:56.010000"],["2024-07-24T04:05:57.010000"],["2024-07-24T04:05:58.010000"],["2024-07-24T04:05:59.010000"],["2024-07-24T04:06:00.010000"],["2024-07-24T04:06:01.010000"],["2024-07-24T04:06:02.010000"],["2024-07-24T04:06:03.010000"],["2024-07-24T04:06:04.010000"],["2024-07-24T04:06:05.010000"],["2024-07-24T04:06:06.010000"],["2024-07-24T04:06:07.010000"],["2024-07-24T04:06:08.010000"],["2024-07-24T04:06:09.010000"],["2024-07-24T04:06:10.010000"],["2024-07-24T04:06:11.010000"],["2024-07-24T04:06:12.010000"],["2024-07-24T04:06:13.010000"],["2024-07-24T04:06:14.010000"],["2024-07-24T04:06:15.010000"],["2024-07-24T04:06:16.010000"],["2024-07-24T04:06:17.010000"],["2024-07-24T04:06:18.010000"],["2024-07-24T04:06:19.010000"],["2024-07-24T04:06:20.010000"],["2024-07-24T04:06:21.010000"],["2024-07-24T04:06:22.010000"],["2024-07-24T04:06:23.010000"],["2024-07-24T04:06:24.010000"],["2024-07-24T04:06:25.010000"],["2024-07-24T04:06:26.010000"],["2024-07-24T04:06:27.010000"],["2024-07-24T04:06:28.010000"],["2024-07-24T04:06:29.010000"],["2024-07-24T04:06:30.010000"],["2024-07-24T04:06:31.010000"],["2024-07-24T04:06:32.010000"],["2024-07-24T04:06:33.010000"],["2024-07-24T04:06:34.010000"],["2024-07-24T04:06:35.010000"],["2024-07-24T04:06:36.010000"],["2024-07-24T04:06:37.010000"],["2024-07-24T04:06:38.010000"],["2024-07-24T04:06:39.010000"],["2024-07-24T04:06:40.010000"],["2024-07-24T04:06:41.010000"],["2024-07-24T04:06:42.010000"],["2024-07-24T04:06:43.010000"],["2024-07-24T04:06:44.010000"],["2024-07-24T04:06:45.010000"],["2024-07-24T04:06:46.010000"],["2024-07-24T04:06:47.010000"],["2024-07-24T04:06:48.010000"],["2024-07-24T04:06:49.010000"],["2024-07-24T04:06:50.010000"],["2024-07-24T04:06:51.010000"],["2024-07-24T04:06:52.010000"],["2024-07-24T04:06:53.010000"],["2024-07-24T04:06:54.010000"],["2024-07-24T04:06:55.010000"],["2024-07-24T04:06:56.010000"],["2024-07-24T04:06:57.010000"],["2024-07-24T04:06:58.010000"],["2024-07-24T04:06:59.010000"],["2024-07-24T04:07:00.010000"],["2024-07-24T04:07:01.010000"],["2024-07-24T04:07:02.010000"],["2024-07-24T04:07:03.010000"],["2024-07-24T04:07:04.010000"],["2024-07-24T04:07:05.010000"],["2024-07-24T04:07:06.010000"],["2024-07-24T04:07:07.010000"],["2024-07-24T04:07:08.010000"],["2024-07-24T04:07:09.010000"],["2024-07-24T04:07:10.010000"],["2024-07-24T04:07:11.010000"],["2024-07-24T04:07:12.010000"],["2024-07-24T04:07:13.010000"],["2024-07-24T04:07:14.010000"],["2024-07-24T04:07:15.010000"],["2024-07-24T04:07:16.010000"],["2024-07-24T04:07:17.010000"],["2024-07-24T04:07:18.010000"],["2024-07-24T04:07:19.010000"],["2024-07-24T04:07:20.010000"],["2024-07-24T04:07:21.010000"],["2024-07-24T04:07:22.010000"],["2024-07-24T04:07:23.010000"],["2024-07-24T04:07:24.010000"],["2024-07-24T04:07:25.010000"],["2024-07-24T04:07:26.010000"],["2024-07-24T04:07:27.010000"],["2024-07-24T04:07:28.010000"],["2024-07-24T04:07:29.010000"],["2024-07-24T04:07:30.010000"],["2024-07-24T04:07:31.010000"],["2024-07-24T04:07:32.010000"],["2024-07-24T04:07:33.010000"],["2024-07-24T04:07:34.010000"],["2024-07-24T04:07:35.010000"],["2024-07-24T04:07:36.010000"],["2024-07-24T04:07:37.010000"],["2024-07-24T04:07:38.010000"],["2024-07-24T04:07:39.010000"],["2024-07-24T04:07:40.010000"],["2024-07-24T04:07:41.010000"],["2024-07-24T04:07:42.010000"],["2024-07-24T04:07:43.010000"],["2024-07-24T04:07:44.010000"],["2024-07-24T04:07:45.010000"],["2024-07-24T04:07:46.010000"],["2024-07-24T04:07:47.010000"],["2024-07-24T04:07:48.010000"],["2024-07-24T04:07:49.010000"],["2024-07-24T04:07:50.010000"],["2024-07-24T04:07:51.010000"],["2024-07-24T04:07:52.010000"],["2024-07-24T04:07:53.010000"],["2024-07-24T04:07:54.010000"],["2024-07-24T04:07:55.010000"],["2024-07-24T04:07:56.010000"],["2024-07-24T04:07:57.010000"],["2024-07-24T04:07:58.010000"],["2024-07-24T04:07:59.010000"],["2024-07-24T04:08:00.010000"],["2024-07-24T04:08:01.010000"],["2024-07-24T04:08:02.010000"],["2024-07-24T04:08:03.010000"],["2024-07-24T04:08:04.010000"],["2024-07-24T04:08:05.010000"],["2024-07-24T04:08:06.010000"],["2024-07-24T04:08:07.010000"],["2024-07-24T04:08:08.010000"],["2024-07-24T04:08:09.010000"],["2024-07-24T04:08:10.010000"],["2024-07-24T04:08:11.010000"],["2024-07-24T04:08:12.010000"],["2024-07-24T04:08:13.010000"],["2024-07-24T04:08:14.010000"],["2024-07-24T04:08:15.010000"],["2024-07-24T04:08:16.010000"],["2024-07-24T04:08:17.010000"],["2024-07-24T04:08:18.010000"],["2024-07-24T04:08:19.010000"],["2024-07-24T04:08:20.010000"],["2024-07-24T04:08:21.010000"],["2024-07-24T04:08:22.010000"],["2024-07-24T04:08:23.010000"],["2024-07-24T04:08:24.010000"],["2024-07-24T04:08:25.010000"],["2024-07-24T04:08:26.010000"],["2024-07-24T04:08:27.010000"],["2024-07-24T04:08:28.010000"],["2024-07-24T04:08:29.010000"],["2024-07-24T04:08:30.010000"],["2024-07-24T04:08:31.010000"],["2024-07-24T04:08:32.010000"],["2024-07-24T04:08:33.010000"],["2024-07-24T04:08:34.010000"],["2024-07-24T04:08:35.010000"],["2024-07-24T04:08:36.010000"],["2024-07-24T04:08:37.010000"],["2024-07-24T04:08:38.010000"],["2024-07-24T04:08:39.010000"],["2024-07-24T04:08:40.010000"],["2024-07-24T04:08:41.010000"],["2024-07-24T04:08:42.010000"],["2024-07-24T04:08:43.010000"],["2024-07-24T04:08:44.010000"],["2024-07-24T04:08:45.010000"],["2024-07-24T04:08:46.010000"],["2024-07-24T04:08:47.010000"],["2024-07-24T04:08:48.010000"],["2024-07-24T04:08:49.010000"],["2024-07-24T04:08:50.010000"],["2024-07-24T04:08:51.010000"],["2024-07-24T04:08:52.010000"],["2024-07-24T04:08:53.010000"],["2024-07-24T04:08:54.010000"],["2024-07-24T04:08:55.010000"],["2024-07-24T04:08:56.010000"],["2024-07-24T04:08:57.010000"],["2024-07-24T04:08:58.010000"],["2024-07-24T04:08:59.010000"],["2024-07-24T04:09:00.010000"],["2024-07-24T04:09:01.010000"],["2024-07-24T04:09:02.010000"],["2024-07-24T04:09:03.010000"],["2024-07-24T04:09:04.010000"],["2024-07-24T04:09:05.010000"],["2024-07-24T04:09:06.010000"],["2024-07-24T04:09:07.010000"],["2024-07-24T04:09:08.010000"],["2024-07-24T04:09:09.010000"],["2024-07-24T04:09:10.010000"],["2024-07-24T04:09:11.010000"],["2024-07-24T04:09:12.010000"],["2024-07-24T04:09:13.010000"],["2024-07-24T04:09:14.010000"],["2024-07-24T04:09:15.010000"],["2024-07-24T04:09:16.010000"],["2024-07-24T04:09:17.010000"],["2024-07-24T04:09:18.010000"],["2024-07-24T04:09:19.010000"],["2024-07-24T04:09:20.010000"],["2024-07-24T04:09:21.010000"],["2024-07-24T04:09:22.010000"],["2024-07-24T04:09:23.010000"],["2024-07-24T04:09:24.010000"],["2024-07-24T04:09:25.010000"],["2024-07-24T04:09:26.010000"],["2024-07-24T04:09:27.010000"],["2024-07-24T04:09:28.010000"],["2024-07-24T04:09:29.010000"],["2024-07-24T04:09:30.010000"],["2024-07-24T04:09:31.010000"],["2024-07-24T04:09:32.010000"],["2024-07-24T04:09:33.010000"],["2024-07-24T04:09:34.010000"],["2024-07-24T04:09:35.010000"],["2024-07-24T04:09:36.010000"],["2024-07-24T04:09:37.010000"],["2024-07-24T04:09:38.010000"],["2024-07-24T04:09:39.010000"],["2024-07-24T04:09:40.010000"],["2024-07-24T04:09:41.010000"],["2024-07-24T04:09:42.010000"],["2024-07-24T04:09:43.010000"],["2024-07-24T04:09:44.010000"],["2024-07-24T04:09:45.010000"],["2024-07-24T04:09:46.010000"],["2024-07-24T04:09:47.010000"],["2024-07-24T04:09:48.010000"],["2024-07-24T04:09:49.010000"],["2024-07-24T04:09:50.010000"],["2024-07-24T04:09:51.010000"],["2024-07-24T04:09:52.010000"],["2024-07-24T04:09:53.010000"],["2024-07-24T04:09:54.010000"],["2024-07-24T04:09:55.010000"],["2024-07-24T04:09:56.010000"],["2024-07-24T04:09:57.010000"],["2024-07-24T04:09:58.010000"],["2024-07-24T04:09:59.010000"],["2024-07-24T04:10:00.010000"],["2024-07-24T04:10:01.010000"],["2024-07-24T04:10:02.010000"],["2024-07-24T04:10:03.010000"],["2024-07-24T04:10:04.010000"],["2024-07-24T04:10:05.010000"],["2024-07-24T04:10:06.010000"],["2024-07-24T04:10:07.010000"],["2024-07-24T04:10:08.010000"],["2024-07-24T04:10:09.010000"],["2024-07-24T04:10:10.010000"],["2024-07-24T04:10:11.010000"],["2024-07-24T04:10:12.010000"],["2024-07-24T04:10:13.010000"],["2024-07-24T04:10:14.010000"],["2024-07-24T04:10:15.010000"],["2024-07-24T04:10:16.010000"],["2024-07-24T04:10:17.010000"],["2024-07-24T04:10:18.010000"],["2024-07-24T04:10:19.010000"],["2024-07-24T04:10:20.010000"],["2024-07-24T04:10:21.010000"],["2024-07-24T04:10:22.010000"],["2024-07-24T04:10:23.010000"],["2024-07-24T04:10:24.010000"],["2024-07-24T04:10:25.010000"],["2024-07-24T04:10:26.010000"],["2024-07-24T04:10:27.010000"],["2024-07-24T04:10:28.010000"],["2024-07-24T04:10:29.010000"],["2024-07-24T04:10:30.010000"],["2024-07-24T04:10:31.010000"],["2024-07-24T04:10:32.010000"],["2024-07-24T04:10:33.010000"],["2024-07-24T04:10:34.010000"],["2024-07-24T04:10:35.010000"],["2024-07-24T04:10:36.010000"],["2024-07-24T04:10:37.010000"],["2024-07-24T04:10:38.010000"],["2024-07-24T04:10:39.010000"],["2024-07-24T04:10:40.010000"],["2024-07-24T04:10:41.010000"],["2024-07-24T04:10:42.010000"],["2024-07-24T04:10:43.010000"],["2024-07-24T04:10:44.010000"],["2024-07-24T04:10:45.010000"],["2024-07-24T04:10:46.010000"],["2024-07-24T04:10:47.010000"],["2024-07-24T04:10:48.010000"],["2024-07-24T04:10:49.010000"],["2024-07-24T04:10:50.010000"],["2024-07-24T04:10:51.010000"],["2024-07-24T04:10:52.010000"],["2024-07-24T04:10:53.010000"],["2024-07-24T04:10:54.010000"],["2024-07-24T04:10:55.010000"],["2024-07-24T04:10:56.010000"],["2024-07-24T04:10:57.010000"],["2024-07-24T04:10:58.010000"],["2024-07-24T04:10:59.010000"],["2024-07-24T04:11:00.010000"],["2024-07-24T04:11:01.010000"],["2024-07-24T04:11:02.010000"],["2024-07-24T04:11:03.010000"],["2024-07-24T04:11:04.010000"],["2024-07-24T04:11:05.010000"],["2024-07-24T04:11:06.010000"],["2024-07-24T04:11:07.010000"],["2024-07-24T04:11:08.010000"],["2024-07-24T04:11:09.010000"],["2024-07-24T04:11:10.010000"],["2024-07-24T04:11:11.010000"],["2024-07-24T04:11:12.010000"],["2024-07-24T04:11:13.010000"],["2024-07-24T04:11:14.010000"],["2024-07-24T04:11:15.010000"],["2024-07-24T04:11:16.010000"],["2024-07-24T04:11:17.010000"],["2024-07-24T04:11:18.010000"],["2024-07-24T04:11:19.010000"],["2024-07-24T04:11:20.010000"],["2024-07-24T04:11:21.010000"],["2024-07-24T04:11:22.010000"],["2024-07-24T04:11:23.010000"],["2024-07-24T04:11:24.010000"],["2024-07-24T04:11:25.010000"],["2024-07-24T04:11:26.010000"],["2024-07-24T04:11:27.010000"],["2024-07-24T04:11:28.010000"],["2024-07-24T04:11:29.010000"],["2024-07-24T04:11:30.010000"],["2024-07-24T04:11:31.010000"],["2024-07-24T04:11:32.010000"],["2024-07-24T04:11:33.010000"],["2024-07-24T04:11:34.010000"],["2024-07-24T04:11:35.010000"],["2024-07-24T04:11:36.010000"],["2024-07-24T04:11:37.010000"],["2024-07-24T04:11:38.010000"],["2024-07-24T04:11:39.010000"],["2024-07-24T04:11:40.010000"],["2024-07-24T04:11:41.010000"],["2024-07-24T04:11:42.010000"],["2024-07-24T04:11:43.010000"],["2024-07-24T04:11:44.010000"],["2024-07-24T04:11:45.010000"],["2024-07-24T04:11:46.010000"],["2024-07-24T04:11:47.010000"],["2024-07-24T04:11:48.010000"],["2024-07-24T04:11:49.010000"],["2024-07-24T04:11:50.010000"],["2024-07-24T04:11:51.010000"],["2024-07-24T04:11:52.010000"],["2024-07-24T04:11:53.010000"],["2024-07-24T04:11:54.010000"],["2024-07-24T04:11:55.010000"],["2024-07-24T04:11:56.010000"],["2024-07-24T04:11:57.010000"],["2024-07-24T04:11:58.010000"],["2024-07-24T04:11:59.010000"],["2024-07-24T04:12:00.010000"],["2024-07-24T04:12:01.010000"],["2024-07-24T04:12:02.010000"],["2024-07-24T04:12:03.010000"],["2024-07-24T04:12:04.010000"],["2024-07-24T04:12:05.010000"],["2024-07-24T04:12:06.010000"],["2024-07-24T04:12:07.010000"],["2024-07-24T04:12:08.010000"],["2024-07-24T04:12:09.010000"],["2024-07-24T04:12:10.010000"],["2024-07-24T04:12:11.010000"],["2024-07-24T04:12:12.010000"],["2024-07-24T04:12:13.010000"],["2024-07-24T04:12:14.010000"],["2024-07-24T04:12:15.010000"],["2024-07-24T04:12:16.010000"],["2024-07-24T04:12:17.010000"],["2024-07-24T04:12:18.010000"],["2024-07-24T04:12:19.010000"],["2024-07-24T04:12:20.010000"],["2024-07-24T04:12:21.010000"],["2024-07-24T04:12:22.010000"],["2024-07-24T04:12:23.010000"],["2024-07-24T04:12:24.010000"],["2024-07-24T04:12:25.010000"],["2024-07-24T04:12:26.010000"],["2024-07-24T04:12:27.010000"],["2024-07-24T04:12:28.010000"],["2024-07-24T04:12:29.010000"],["2024-07-24T04:12:30.010000"],["2024-07-24T04:12:31.010000"],["2024-07-24T04:12:32.010000"],["2024-07-24T04:12:33.010000"],["2024-07-24T04:12:34.010000"],["2024-07-24T04:12:35.010000"],["2024-07-24T04:12:36.010000"],["2024-07-24T04:12:37.010000"],["2024-07-24T04:12:38.010000"],["2024-07-24T04:12:39.010000"],["2024-07-24T04:12:40.010000"],["2024-07-24T04:12:41.010000"],["2024-07-24T04:12:42.010000"],["2024-07-24T04:12:43.010000"],["2024-07-24T04:12:44.010000"],["2024-07-24T04:12:45.010000"],["2024-07-24T04:12:46.010000"],["2024-07-24T04:12:47.010000"],["2024-07-24T04:12:48.010000"],["2024-07-24T04:12:49.010000"],["2024-07-24T04:12:50.010000"],["2024-07-24T04:12:51.010000"],["2024-07-24T04:12:52.010000"],["2024-07-24T04:12:53.010000"],["2024-07-24T04:12:54.010000"],["2024-07-24T04:12:55.010000"],["2024-07-24T04:12:56.010000"],["2024-07-24T04:12:57.010000"],["2024-07-24T04:12:58.010000"],["2024-07-24T04:12:59.010000"],["2024-07-24T04:13:00.010000"],["2024-07-24T04:13:01.010000"],["2024-07-24T04:13:02.010000"],["2024-07-24T04:13:03.010000"],["2024-07-24T04:13:04.010000"],["2024-07-24T04:13:05.010000"],["2024-07-24T04:13:06.010000"],["2024-07-24T04:13:07.010000"],["2024-07-24T04:13:08.010000"],["2024-07-24T04:13:09.010000"],["2024-07-24T04:13:10.010000"],["2024-07-24T04:13:11.010000"],["2024-07-24T04:13:12.010000"],["2024-07-24T04:13:13.010000"],["2024-07-24T04:13:14.010000"],["2024-07-24T04:13:15.010000"],["2024-07-24T04:13:16.010000"],["2024-07-24T04:13:17.010000"],["2024-07-24T04:13:18.010000"],["2024-07-24T04:13:19.010000"],["2024-07-24T04:13:20.010000"],["2024-07-24T04:13:21.010000"],["2024-07-24T04:13:22.010000"],["2024-07-24T04:13:23.010000"],["2024-07-24T04:13:24.010000"],["2024-07-24T04:13:25.010000"],["2024-07-24T04:13:26.010000"],["2024-07-24T04:13:27.010000"],["2024-07-24T04:13:28.010000"],["2024-07-24T04:13:29.010000"],["2024-07-24T04:13:30.010000"],["2024-07-24T04:13:31.010000"],["2024-07-24T04:13:32.010000"],["2024-07-24T04:13:33.010000"],["2024-07-24T04:13:34.010000"],["2024-07-24T04:13:35.010000"],["2024-07-24T04:13:36.010000"],["2024-07-24T04:13:37.010000"],["2024-07-24T04:13:38.010000"],["2024-07-24T04:13:39.010000"],["2024-07-24T04:13:40.010000"],["2024-07-24T04:13:41.010000"],["2024-07-24T04:13:42.010000"],["2024-07-24T04:13:43.010000"],["2024-07-24T04:13:44.010000"],["2024-07-24T04:13:45.010000"],["2024-07-24T04:13:46.010000"],["2024-07-24T04:13:47.010000"],["2024-07-24T04:13:48.010000"],["2024-07-24T04:13:49.010000"],["2024-07-24T04:13:50.010000"],["2024-07-24T04:13:51.010000"],["2024-07-24T04:13:52.010000"],["2024-07-24T04:13:53.010000"],["2024-07-24T04:13:54.010000"],["2024-07-24T04:13:55.010000"],["2024-07-24T04:13:56.010000"],["2024-07-24T04:13:57.010000"],["2024-07-24T04:13:58.010000"],["2024-07-24T04:13:59.010000"],["2024-07-24T04:14:00.010000"],["2024-07-24T04:14:01.010000"],["2024-07-24T04:14:02.010000"],["2024-07-24T04:14:03.010000"],["2024-07-24T04:14:04.010000"],["2024-07-24T04:14:05.010000"],["2024-07-24T04:14:06.010000"],["2024-07-24T04:14:07.010000"],["2024-07-24T04:14:08.010000"],["2024-07-24T04:14:09.010000"],["2024-07-24T04:14:10.010000"],["2024-07-24T04:14:11.010000"],["2024-07-24T04:14:12.010000"],["2024-07-24T04:14:13.010000"],["2024-07-24T04:14:14.010000"],["2024-07-24T04:14:15.010000"],["2024-07-24T04:14:16.010000"],["2024-07-24T04:14:17.010000"],["2024-07-24T04:14:18.010000"],["2024-07-24T04:14:19.010000"],["2024-07-24T04:14:20.010000"],["2024-07-24T04:14:21.010000"],["2024-07-24T04:14:22.010000"],["2024-07-24T04:14:23.010000"],["2024-07-24T04:14:24.010000"],["2024-07-24T04:14:25.010000"],["2024-07-24T04:14:26.010000"],["2024-07-24T04:14:27.010000"],["2024-07-24T04:14:28.010000"],["2024-07-24T04:14:29.010000"],["2024-07-24T04:14:30.010000"],["2024-07-24T04:14:31.010000"],["2024-07-24T04:14:32.010000"],["2024-07-24T04:14:33.010000"],["2024-07-24T04:14:34.010000"],["2024-07-24T04:14:35.010000"],["2024-07-24T04:14:36.010000"],["2024-07-24T04:14:37.010000"],["2024-07-24T04:14:38.010000"],["2024-07-24T04:14:39.010000"],["2024-07-24T04:14:40.010000"],["2024-07-24T04:14:41.010000"],["2024-07-24T04:14:42.010000"],["2024-07-24T04:14:43.010000"],["2024-07-24T04:14:44.010000"],["2024-07-24T04:14:45.010000"],["2024-07-24T04:14:46.010000"],["2024-07-24T04:14:47.010000"],["2024-07-24T04:14:48.010000"],["2024-07-24T04:14:49.010000"],["2024-07-24T04:14:50.010000"],["2024-07-24T04:14:51.010000"],["2024-07-24T04:14:52.010000"],["2024-07-24T04:14:53.010000"],["2024-07-24T04:14:54.010000"],["2024-07-24T04:14:55.010000"],["2024-07-24T04:14:56.010000"],["2024-07-24T04:14:57.010000"],["2024-07-24T04:14:58.010000"],["2024-07-24T04:14:59.010000"],["2024-07-24T04:15:00.010000"],["2024-07-24T04:15:01.010000"],["2024-07-24T04:15:02.010000"],["2024-07-24T04:15:03.010000"],["2024-07-24T04:15:04.010000"],["2024-07-24T04:15:05.010000"],["2024-07-24T04:15:06.010000"],["2024-07-24T04:15:07.010000"],["2024-07-24T04:15:08.010000"],["2024-07-24T04:15:09.010000"],["2024-07-24T04:15:10.010000"],["2024-07-24T04:15:11.010000"],["2024-07-24T04:15:12.010000"],["2024-07-24T04:15:13.010000"],["2024-07-24T04:15:14.010000"],["2024-07-24T04:15:15.010000"],["2024-07-24T04:15:16.010000"],["2024-07-24T04:15:17.010000"],["2024-07-24T04:15:18.010000"],["2024-07-24T04:15:19.010000"],["2024-07-24T04:15:20.010000"],["2024-07-24T04:15:21.010000"],["2024-07-24T04:15:22.010000"],["2024-07-24T04:15:23.010000"],["2024-07-24T04:15:24.010000"],["2024-07-24T04:15:25.010000"],["2024-07-24T04:15:26.010000"],["2024-07-24T04:15:27.010000"],["2024-07-24T04:15:28.010000"],["2024-07-24T04:15:29.010000"],["2024-07-24T04:15:30.010000"],["2024-07-24T04:15:31.010000"],["2024-07-24T04:15:32.010000"],["2024-07-24T04:15:33.010000"],["2024-07-24T04:15:34.010000"],["2024-07-24T04:15:35.010000"],["2024-07-24T04:15:36.010000"],["2024-07-24T04:15:37.010000"],["2024-07-24T04:15:38.010000"],["2024-07-24T04:15:39.010000"],["2024-07-24T04:15:40.010000"],["2024-07-24T04:15:41.010000"],["2024-07-24T04:15:42.010000"],["2024-07-24T04:15:43.010000"],["2024-07-24T04:15:44.010000"],["2024-07-24T04:15:45.010000"],["2024-07-24T04:15:46.010000"],["2024-07-24T04:15:47.010000"],["2024-07-24T04:15:48.010000"],["2024-07-24T04:15:49.010000"],["2024-07-24T04:15:50.010000"],["2024-07-24T04:15:51.010000"],["2024-07-24T04:15:52.010000"],["2024-07-24T04:15:53.010000"],["2024-07-24T04:15:54.010000"],["2024-07-24T04:15:55.010000"],["2024-07-24T04:15:56.010000"],["2024-07-24T04:15:57.010000"],["2024-07-24T04:15:58.010000"],["2024-07-24T04:15:59.010000"],["2024-07-24T04:16:00.010000"],["2024-07-24T04:16:01.010000"],["2024-07-24T04:16:02.010000"],["2024-07-24T04:16:03.010000"],["2024-07-24T04:16:04.010000"],["2024-07-24T04:16:05.010000"],["2024-07-24T04:16:06.010000"],["2024-07-24T04:16:07.010000"],["2024-07-24T04:16:08.010000"],["2024-07-24T04:16:09.010000"],["2024-07-24T04:16:10.010000"],["2024-07-24T04:16:11.010000"],["2024-07-24T04:16:12.010000"],["2024-07-24T04:16:13.010000"],["2024-07-24T04:16:14.010000"],["2024-07-24T04:16:15.010000"],["2024-07-24T04:16:16.010000"],["2024-07-24T04:16:17.010000"],["2024-07-24T04:16:18.010000"],["2024-07-24T04:16:19.010000"],["2024-07-24T04:16:20.010000"],["2024-07-24T04:16:21.010000"],["2024-07-24T04:16:22.010000"],["2024-07-24T04:16:23.010000"],["2024-07-24T04:16:24.010000"],["2024-07-24T04:16:25.010000"],["2024-07-24T04:16:26.010000"],["2024-07-24T04:16:27.010000"],["2024-07-24T04:16:28.010000"],["2024-07-24T04:16:29.010000"],["2024-07-24T04:16:30.010000"],["2024-07-24T04:16:31.010000"],["2024-07-24T04:16:32.010000"],["2024-07-24T04:16:33.010000"],["2024-07-24T04:16:34.010000"],["2024-07-24T04:16:35.010000"],["2024-07-24T04:16:36.010000"],["2024-07-24T04:16:37.010000"],["2024-07-24T04:16:38.010000"],["2024-07-24T04:16:39.010000"],["2024-07-24T04:16:40.010000"],["2024-07-24T04:16:41.010000"],["2024-07-24T04:16:42.010000"],["2024-07-24T04:16:43.010000"],["2024-07-24T04:16:44.010000"],["2024-07-24T04:16:45.010000"],["2024-07-24T04:16:46.010000"],["2024-07-24T04:16:47.010000"],["2024-07-24T04:16:48.010000"],["2024-07-24T04:16:49.010000"],["2024-07-24T04:16:50.010000"],["2024-07-24T04:16:51.010000"],["2024-07-24T04:16:52.010000"],["2024-07-24T04:16:53.010000"],["2024-07-24T04:16:54.010000"],["2024-07-24T04:16:55.010000"],["2024-07-24T04:16:56.010000"],["2024-07-24T04:16:57.010000"],["2024-07-24T04:16:58.010000"],["2024-07-24T04:16:59.010000"],["2024-07-24T04:17:00.010000"],["2024-07-24T04:17:01.010000"],["2024-07-24T04:17:02.010000"],["2024-07-24T04:17:03.010000"],["2024-07-24T04:17:04.010000"],["2024-07-24T04:17:05.010000"],["2024-07-24T04:17:06.010000"],["2024-07-24T04:17:07.010000"],["2024-07-24T04:17:08.010000"],["2024-07-24T04:17:09.010000"],["2024-07-24T04:17:10.010000"],["2024-07-24T04:17:11.010000"],["2024-07-24T04:17:12.010000"],["2024-07-24T04:17:13.010000"],["2024-07-24T04:17:14.010000"],["2024-07-24T04:17:15.010000"],["2024-07-24T04:17:16.010000"],["2024-07-24T04:17:17.010000"],["2024-07-24T04:17:18.010000"],["2024-07-24T04:17:19.010000"],["2024-07-24T04:17:20.010000"],["2024-07-24T04:17:21.010000"],["2024-07-24T04:17:22.010000"],["2024-07-24T04:17:23.010000"],["2024-07-24T04:17:24.010000"],["2024-07-24T04:17:25.010000"],["2024-07-24T04:17:26.010000"],["2024-07-24T04:17:27.010000"],["2024-07-24T04:17:28.010000"],["2024-07-24T04:17:29.010000"],["2024-07-24T04:17:30.010000"],["2024-07-24T04:17:31.010000"],["2024-07-24T04:17:32.010000"],["2024-07-24T04:17:33.010000"],["2024-07-24T04:17:34.010000"],["2024-07-24T04:17:35.010000"],["2024-07-24T04:17:36.010000"],["2024-07-24T04:17:37.010000"],["2024-07-24T04:17:38.010000"],["2024-07-24T04:17:39.010000"],["2024-07-24T04:17:40.010000"],["2024-07-24T04:17:41.010000"],["2024-07-24T04:17:42.010000"],["2024-07-24T04:17:43.010000"],["2024-07-24T04:17:44.010000"],["2024-07-24T04:17:45.010000"],["2024-07-24T04:17:46.010000"],["2024-07-24T04:17:47.010000"],["2024-07-24T04:17:48.010000"],["2024-07-24T04:17:49.010000"],["2024-07-24T04:17:50.010000"],["2024-07-24T04:17:51.010000"],["2024-07-24T04:17:52.010000"],["2024-07-24T04:17:53.010000"],["2024-07-24T04:17:54.010000"],["2024-07-24T04:17:55.010000"],["2024-07-24T04:17:56.010000"],["2024-07-24T04:17:57.010000"],["2024-07-24T04:17:58.010000"],["2024-07-24T04:17:59.010000"],["2024-07-24T04:18:00.010000"],["2024-07-24T04:18:01.010000"],["2024-07-24T04:18:02.010000"],["2024-07-24T04:18:03.010000"],["2024-07-24T04:18:04.010000"],["2024-07-24T04:18:05.010000"],["2024-07-24T04:18:06.010000"],["2024-07-24T04:18:07.010000"],["2024-07-24T04:18:08.010000"],["2024-07-24T04:18:09.010000"],["2024-07-24T04:18:10.010000"],["2024-07-24T04:18:11.010000"],["2024-07-24T04:18:12.010000"],["2024-07-24T04:18:13.010000"],["2024-07-24T04:18:14.010000"],["2024-07-24T04:18:15.010000"],["2024-07-24T04:18:16.010000"],["2024-07-24T04:18:17.010000"],["2024-07-24T04:18:18.010000"],["2024-07-24T04:18:19.010000"],["2024-07-24T04:18:20.010000"],["2024-07-24T04:18:21.010000"],["2024-07-24T04:18:22.010000"],["2024-07-24T04:18:23.010000"],["2024-07-24T04:18:24.010000"],["2024-07-24T04:18:25.010000"],["2024-07-24T04:18:26.010000"],["2024-07-24T04:18:27.010000"],["2024-07-24T04:18:28.010000"],["2024-07-24T04:18:29.010000"],["2024-07-24T04:18:30.010000"],["2024-07-24T04:18:31.010000"],["2024-07-24T04:18:32.010000"],["2024-07-24T04:18:33.010000"],["2024-07-24T04:18:34.010000"],["2024-07-24T04:18:35.010000"],["2024-07-24T04:18:36.010000"],["2024-07-24T04:18:37.010000"],["2024-07-24T04:18:38.010000"],["2024-07-24T04:18:39.010000"],["2024-07-24T04:18:40.010000"],["2024-07-24T04:18:41.010000"],["2024-07-24T04:18:42.010000"],["2024-07-24T04:18:43.010000"],["2024-07-24T04:18:44.010000"],["2024-07-24T04:18:45.010000"],["2024-07-24T04:18:46.010000"],["2024-07-24T04:18:47.010000"],["2024-07-24T04:18:48.010000"],["2024-07-24T04:18:49.010000"],["2024-07-24T04:18:50.010000"],["2024-07-24T04:18:51.010000"],["2024-07-24T04:18:52.010000"],["2024-07-24T04:18:53.010000"],["2024-07-24T04:18:54.010000"],["2024-07-24T04:18:55.010000"],["2024-07-24T04:18:56.010000"],["2024-07-24T04:18:57.010000"],["2024-07-24T04:18:58.010000"],["2024-07-24T04:18:59.010000"],["2024-07-24T04:19:00.010000"],["2024-07-24T04:19:01.010000"],["2024-07-24T04:19:02.010000"],["2024-07-24T04:19:03.010000"],["2024-07-24T04:19:04.010000"],["2024-07-24T04:19:05.010000"],["2024-07-24T04:19:06.010000"],["2024-07-24T04:19:07.010000"],["2024-07-24T04:19:08.010000"],["2024-07-24T04:19:09.010000"],["2024-07-24T04:19:10.010000"],["2024-07-24T04:19:11.010000"],["2024-07-24T04:19:12.010000"],["2024-07-24T04:19:13.010000"],["2024-07-24T04:19:14.010000"],["2024-07-24T04:19:15.010000"],["2024-07-24T04:19:16.010000"],["2024-07-24T04:19:17.010000"],["2024-07-24T04:19:18.010000"],["2024-07-24T04:19:19.010000"],["2024-07-24T04:19:20.010000"],["2024-07-24T04:19:21.010000"],["2024-07-24T04:19:22.010000"],["2024-07-24T04:19:23.010000"],["2024-07-24T04:19:24.010000"],["2024-07-24T04:19:25.010000"],["2024-07-24T04:19:26.010000"],["2024-07-24T04:19:27.010000"],["2024-07-24T04:19:28.010000"],["2024-07-24T04:19:29.010000"],["2024-07-24T04:19:30.010000"],["2024-07-24T04:19:31.010000"],["2024-07-24T04:19:32.010000"],["2024-07-24T04:19:33.010000"],["2024-07-24T04:19:34.010000"],["2024-07-24T04:19:35.010000"],["2024-07-24T04:19:36.010000"],["2024-07-24T04:19:37.010000"],["2024-07-24T04:19:38.010000"],["2024-07-24T04:19:39.010000"],["2024-07-24T04:19:40.010000"],["2024-07-24T04:19:41.010000"],["2024-07-24T04:19:42.010000"],["2024-07-24T04:19:43.010000"],["2024-07-24T04:19:44.010000"],["2024-07-24T04:19:45.010000"],["2024-07-24T04:19:46.010000"],["2024-07-24T04:19:47.010000"],["2024-07-24T04:19:48.010000"],["2024-07-24T04:19:49.010000"],["2024-07-24T04:19:50.010000"],["2024-07-24T04:19:51.010000"],["2024-07-24T04:19:52.010000"],["2024-07-24T04:19:53.010000"],["2024-07-24T04:19:54.010000"],["2024-07-24T04:19:55.010000"],["2024-07-24T04:19:56.010000"],["2024-07-24T04:19:57.010000"],["2024-07-24T04:19:58.010000"],["2024-07-24T04:19:59.010000"],["2024-07-24T04:20:00.010000"],["2024-07-24T04:20:01.010000"],["2024-07-24T04:20:02.010000"],["2024-07-24T04:20:03.010000"],["2024-07-24T04:20:04.010000"],["2024-07-24T04:20:05.010000"],["2024-07-24T04:20:06.010000"],["2024-07-24T04:20:07.010000"],["2024-07-24T04:20:08.010000"],["2024-07-24T04:20:09.010000"],["2024-07-24T04:20:10.010000"],["2024-07-24T04:20:11.010000"],["2024-07-24T04:20:12.010000"],["2024-07-24T04:20:13.010000"],["2024-07-24T04:20:14.010000"],["2024-07-24T04:20:15.010000"],["2024-07-24T04:20:16.010000"],["2024-07-24T04:20:17.010000"],["2024-07-24T04:20:18.010000"],["2024-07-24T04:20:19.010000"],["2024-07-24T04:20:20.010000"],["2024-07-24T04:20:21.010000"],["2024-07-24T04:20:22.010000"],["2024-07-24T04:20:23.010000"],["2024-07-24T04:20:24.010000"],["2024-07-24T04:20:25.010000"],["2024-07-24T04:20:26.010000"],["2024-07-24T04:20:27.010000"],["2024-07-24T04:20:28.010000"],["2024-07-24T04:20:29.010000"],["2024-07-24T04:20:30.010000"],["2024-07-24T04:20:31.010000"],["2024-07-24T04:20:32.010000"],["2024-07-24T04:20:33.010000"],["2024-07-24T04:20:34.010000"],["2024-07-24T04:20:35.010000"],["2024-07-24T04:20:36.010000"],["2024-07-24T04:20:37.010000"],["2024-07-24T04:20:38.010000"],["2024-07-24T04:20:39.010000"],["2024-07-24T04:20:40.010000"],["2024-07-24T04:20:41.010000"],["2024-07-24T04:20:42.010000"],["2024-07-24T04:20:43.010000"],["2024-07-24T04:20:44.010000"],["2024-07-24T04:20:45.010000"],["2024-07-24T04:20:46.010000"],["2024-07-24T04:20:47.010000"],["2024-07-24T04:20:48.010000"],["2024-07-24T04:20:49.010000"],["2024-07-24T04:20:50.010000"],["2024-07-24T04:20:51.010000"],["2024-07-24T04:20:52.010000"],["2024-07-24T04:20:53.010000"],["2024-07-24T04:20:54.010000"],["2024-07-24T04:20:55.010000"],["2024-07-24T04:20:56.010000"],["2024-07-24T04:20:57.010000"],["2024-07-24T04:20:58.010000"],["2024-07-24T04:20:59.010000"],["2024-07-24T04:21:00.010000"],["2024-07-24T04:21:01.010000"],["2024-07-24T04:21:02.010000"],["2024-07-24T04:21:03.010000"],["2024-07-24T04:21:04.010000"],["2024-07-24T04:21:05.010000"],["2024-07-24T04:21:06.010000"],["2024-07-24T04:21:07.010000"],["2024-07-24T04:21:08.010000"],["2024-07-24T04:21:09.010000"],["2024-07-24T04:21:10.010000"],["2024-07-24T04:21:11.010000"],["2024-07-24T04:21:12.010000"],["2024-07-24T04:21:13.010000"],["2024-07-24T04:21:14.010000"],["2024-07-24T04:21:15.010000"],["2024-07-24T04:21:16.010000"],["2024-07-24T04:21:17.010000"],["2024-07-24T04:21:18.010000"],["2024-07-24T04:21:19.010000"],["2024-07-24T04:21:20.010000"],["2024-07-24T04:21:21.010000"],["2024-07-24T04:21:22.010000"],["2024-07-24T04:21:23.010000"],["2024-07-24T04:21:24.010000"],["2024-07-24T04:21:25.010000"],["2024-07-24T04:21:26.010000"],["2024-07-24T04:21:27.010000"],["2024-07-24T04:21:28.010000"],["2024-07-24T04:21:29.010000"],["2024-07-24T04:21:30.010000"],["2024-07-24T04:21:31.010000"],["2024-07-24T04:21:32.010000"],["2024-07-24T04:21:33.010000"],["2024-07-24T04:21:34.010000"],["2024-07-24T04:21:35.010000"],["2024-07-24T04:21:36.010000"],["2024-07-24T04:21:37.010000"],["2024-07-24T04:21:38.010000"],["2024-07-24T04:21:39.010000"],["2024-07-24T04:21:40.010000"],["2024-07-24T04:21:41.010000"],["2024-07-24T04:21:42.010000"],["2024-07-24T04:21:43.010000"],["2024-07-24T04:21:44.010000"],["2024-07-24T04:21:45.010000"],["2024-07-24T04:21:46.010000"],["2024-07-24T04:21:47.010000"],["2024-07-24T04:21:48.010000"],["2024-07-24T04:21:49.010000"],["2024-07-24T04:21:50.010000"],["2024-07-24T04:21:51.010000"],["2024-07-24T04:21:52.010000"],["2024-07-24T04:21:53.010000"],["2024-07-24T04:21:54.010000"],["2024-07-24T04:21:55.010000"],["2024-07-24T04:21:56.010000"],["2024-07-24T04:21:57.010000"],["2024-07-24T04:21:58.010000"],["2024-07-24T04:21:59.010000"],["2024-07-24T04:22:00.010000"],["2024-07-24T04:22:01.010000"],["2024-07-24T04:22:02.010000"],["2024-07-24T04:22:03.010000"],["2024-07-24T04:22:04.010000"],["2024-07-24T04:22:05.010000"],["2024-07-24T04:22:06.010000"],["2024-07-24T04:22:07.010000"],["2024-07-24T04:22:08.010000"],["2024-07-24T04:22:09.010000"],["2024-07-24T04:22:10.010000"],["2024-07-24T04:22:11.010000"],["2024-07-24T04:22:12.010000"],["2024-07-24T04:22:13.010000"],["2024-07-24T04:22:14.010000"],["2024-07-24T04:22:15.010000"],["2024-07-24T04:22:16.010000"],["2024-07-24T04:22:17.010000"],["2024-07-24T04:22:18.010000"],["2024-07-24T04:22:19.010000"],["2024-07-24T04:22:20.010000"],["2024-07-24T04:22:21.010000"],["2024-07-24T04:22:22.010000"],["2024-07-24T04:22:23.010000"],["2024-07-24T04:22:24.010000"],["2024-07-24T04:22:25.010000"],["2024-07-24T04:22:26.010000"],["2024-07-24T04:22:27.010000"],["2024-07-24T04:22:28.010000"],["2024-07-24T04:22:29.010000"],["2024-07-24T04:22:30.010000"],["2024-07-24T04:22:31.010000"],["2024-07-24T04:22:32.010000"],["2024-07-24T04:22:33.010000"],["2024-07-24T04:22:34.010000"],["2024-07-24T04:22:35.010000"],["2024-07-24T04:22:36.010000"],["2024-07-24T04:22:37.010000"],["2024-07-24T04:22:38.010000"],["2024-07-24T04:22:39.010000"],["2024-07-24T04:22:40.010000"],["2024-07-24T04:22:41.010000"],["2024-07-24T04:22:42.010000"],["2024-07-24T04:22:43.010000"],["2024-07-24T04:22:44.010000"],["2024-07-24T04:22:45.010000"],["2024-07-24T04:22:46.010000"],["2024-07-24T04:22:47.010000"],["2024-07-24T04:22:48.010000"],["2024-07-24T04:22:49.010000"],["2024-07-24T04:22:50.010000"],["2024-07-24T04:22:51.010000"],["2024-07-24T04:22:52.010000"],["2024-07-24T04:22:53.010000"],["2024-07-24T04:22:54.010000"],["2024-07-24T04:22:55.010000"],["2024-07-24T04:22:56.010000"],["2024-07-24T04:22:57.010000"],["2024-07-24T04:22:58.010000"],["2024-07-24T04:22:59.010000"],["2024-07-24T04:23:00.010000"],["2024-07-24T04:23:01.010000"],["2024-07-24T04:23:02.010000"],["2024-07-24T04:23:03.010000"],["2024-07-24T04:23:04.010000"],["2024-07-24T04:23:05.010000"],["2024-07-24T04:23:06.010000"],["2024-07-24T04:23:07.010000"],["2024-07-24T04:23:08.010000"],["2024-07-24T04:23:09.010000"],["2024-07-24T04:23:10.010000"],["2024-07-24T04:23:11.010000"],["2024-07-24T04:23:12.010000"],["2024-07-24T04:23:13.010000"],["2024-07-24T04:23:14.010000"],["2024-07-24T04:23:15.010000"],["2024-07-24T04:23:16.010000"],["2024-07-24T04:23:17.010000"],["2024-07-24T04:23:18.010000"],["2024-07-24T04:23:19.010000"],["2024-07-24T04:23:20.010000"],["2024-07-24T04:23:21.010000"],["2024-07-24T04:23:22.010000"],["2024-07-24T04:23:23.010000"],["2024-07-24T04:23:24.010000"],["2024-07-24T04:23:25.010000"],["2024-07-24T04:23:26.010000"],["2024-07-24T04:23:27.010000"],["2024-07-24T04:23:28.010000"],["2024-07-24T04:23:29.010000"],["2024-07-24T04:23:30.010000"],["2024-07-24T04:23:31.010000"],["2024-07-24T04:23:32.010000"],["2024-07-24T04:23:33.010000"],["2024-07-24T04:23:34.010000"],["2024-07-24T04:23:35.010000"],["2024-07-24T04:23:36.010000"],["2024-07-24T04:23:37.010000"],["2024-07-24T04:23:38.010000"],["2024-07-24T04:23:39.010000"],["2024-07-24T04:23:40.010000"],["2024-07-24T04:23:41.010000"],["2024-07-24T04:23:42.010000"],["2024-07-24T04:23:43.010000"],["2024-07-24T04:23:44.010000"],["2024-07-24T04:23:45.010000"],["2024-07-24T04:23:46.010000"],["2024-07-24T04:23:47.010000"],["2024-07-24T04:23:48.010000"],["2024-07-24T04:23:49.010000"],["2024-07-24T04:23:50.010000"],["2024-07-24T04:23:51.010000"],["2024-07-24T04:23:52.010000"],["2024-07-24T04:23:53.010000"],["2024-07-24T04:23:54.010000"],["2024-07-24T04:23:55.010000"],["2024-07-24T04:23:56.010000"],["2024-07-24T04:23:57.010000"],["2024-07-24T04:23:58.010000"],["2024-07-24T04:23:59.010000"],["2024-07-24T04:24:00.010000"],["2024-07-24T04:24:01.010000"],["2024-07-24T04:24:02.010000"],["2024-07-24T04:24:03.010000"],["2024-07-24T04:24:04.010000"],["2024-07-24T04:24:05.010000"],["2024-07-24T04:24:06.010000"],["2024-07-24T04:24:07.010000"],["2024-07-24T04:24:08.010000"],["2024-07-24T04:24:09.010000"],["2024-07-24T04:24:10.010000"],["2024-07-24T04:24:11.010000"],["2024-07-24T04:24:12.010000"],["2024-07-24T04:24:13.010000"],["2024-07-24T04:24:14.010000"],["2024-07-24T04:24:15.010000"],["2024-07-24T04:24:16.010000"],["2024-07-24T04:24:17.010000"],["2024-07-24T04:24:18.010000"],["2024-07-24T04:24:19.010000"],["2024-07-24T04:24:20.010000"],["2024-07-24T04:24:21.010000"],["2024-07-24T04:24:22.010000"],["2024-07-24T04:24:23.010000"],["2024-07-24T04:24:24.010000"],["2024-07-24T04:24:25.010000"],["2024-07-24T04:24:26.010000"],["2024-07-24T04:24:27.010000"],["2024-07-24T04:24:28.010000"],["2024-07-24T04:24:29.010000"],["2024-07-24T04:24:30.010000"],["2024-07-24T04:24:31.010000"],["2024-07-24T04:24:32.010000"],["2024-07-24T04:24:33.010000"],["2024-07-24T04:24:34.010000"],["2024-07-24T04:24:35.010000"],["2024-07-24T04:24:36.010000"],["2024-07-24T04:24:37.010000"],["2024-07-24T04:24:38.010000"],["2024-07-24T04:24:39.010000"],["2024-07-24T04:24:40.010000"],["2024-07-24T04:24:41.010000"],["2024-07-24T04:24:42.010000"],["2024-07-24T04:24:43.010000"],["2024-07-24T04:24:44.010000"],["2024-07-24T04:24:45.010000"],["2024-07-24T04:24:46.010000"],["2024-07-24T04:24:47.010000"],["2024-07-24T04:24:48.010000"],["2024-07-24T04:24:49.010000"],["2024-07-24T04:24:50.010000"],["2024-07-24T04:24:51.010000"],["2024-07-24T04:24:52.010000"],["2024-07-24T04:24:53.010000"],["2024-07-24T04:24:54.010000"],["2024-07-24T04:24:55.010000"],["2024-07-24T04:24:56.010000"],["2024-07-24T04:24:57.010000"],["2024-07-24T04:24:58.010000"],["2024-07-24T04:24:59.010000"],["2024-07-24T04:25:00.010000"],["2024-07-24T04:25:01.010000"],["2024-07-24T04:25:02.010000"],["2024-07-24T04:25:03.010000"],["2024-07-24T04:25:04.010000"],["2024-07-24T04:25:05.010000"],["2024-07-24T04:25:06.010000"],["2024-07-24T04:25:07.010000"],["2024-07-24T04:25:08.010000"],["2024-07-24T04:25:09.010000"],["2024-07-24T04:25:10.010000"],["2024-07-24T04:25:11.010000"],["2024-07-24T04:25:12.010000"],["2024-07-24T04:25:13.010000"],["2024-07-24T04:25:14.010000"],["2024-07-24T04:25:15.010000"],["2024-07-24T04:25:16.010000"],["2024-07-24T04:25:17.010000"],["2024-07-24T04:25:18.010000"],["2024-07-24T04:25:19.010000"],["2024-07-24T04:25:20.010000"],["2024-07-24T04:25:21.010000"],["2024-07-24T04:25:22.010000"],["2024-07-24T04:25:23.010000"],["2024-07-24T04:25:24.010000"],["2024-07-24T04:25:25.010000"],["2024-07-24T04:25:26.010000"],["2024-07-24T04:25:27.010000"],["2024-07-24T04:25:28.010000"],["2024-07-24T04:25:29.010000"],["2024-07-24T04:25:30.010000"],["2024-07-24T04:25:31.010000"],["2024-07-24T04:25:32.010000"],["2024-07-24T04:25:33.010000"],["2024-07-24T04:25:34.010000"],["2024-07-24T04:25:35.010000"],["2024-07-24T04:25:36.010000"],["2024-07-24T04:25:37.010000"],["2024-07-24T04:25:38.010000"],["2024-07-24T04:25:39.010000"],["2024-07-24T04:25:40.010000"],["2024-07-24T04:25:41.010000"],["2024-07-24T04:25:42.010000"],["2024-07-24T04:25:43.010000"],["2024-07-24T04:25:44.010000"],["2024-07-24T04:25:45.010000"],["2024-07-24T04:25:46.010000"],["2024-07-24T04:25:47.010000"],["2024-07-24T04:25:48.010000"],["2024-07-24T04:25:49.010000"],["2024-07-24T04:25:50.010000"],["2024-07-24T04:25:51.010000"],["2024-07-24T04:25:52.010000"],["2024-07-24T04:25:53.010000"],["2024-07-24T04:25:54.010000"],["2024-07-24T04:25:55.010000"],["2024-07-24T04:25:56.010000"],["2024-07-24T04:25:57.010000"],["2024-07-24T04:25:58.010000"],["2024-07-24T04:25:59.010000"],["2024-07-24T04:26:00.010000"],["2024-07-24T04:26:01.010000"],["2024-07-24T04:26:02.010000"],["2024-07-24T04:26:03.010000"],["2024-07-24T04:26:04.010000"],["2024-07-24T04:26:05.010000"],["2024-07-24T04:26:06.010000"],["2024-07-24T04:26:07.010000"],["2024-07-24T04:26:08.010000"],["2024-07-24T04:26:09.010000"],["2024-07-24T04:26:10.010000"],["2024-07-24T04:26:11.010000"],["2024-07-24T04:26:12.010000"],["2024-07-24T04:26:13.010000"],["2024-07-24T04:26:14.010000"],["2024-07-24T04:26:15.010000"],["2024-07-24T04:26:16.010000"],["2024-07-24T04:26:17.010000"],["2024-07-24T04:26:18.010000"],["2024-07-24T04:26:19.010000"],["2024-07-24T04:26:20.010000"],["2024-07-24T04:26:21.010000"],["2024-07-24T04:26:22.010000"],["2024-07-24T04:26:23.010000"],["2024-07-24T04:26:24.010000"],["2024-07-24T04:26:25.010000"],["2024-07-24T04:26:26.010000"],["2024-07-24T04:26:27.010000"],["2024-07-24T04:26:28.010000"],["2024-07-24T04:26:29.010000"],["2024-07-24T04:26:30.010000"],["2024-07-24T04:26:31.010000"],["2024-07-24T04:26:32.010000"],["2024-07-24T04:26:33.010000"],["2024-07-24T04:26:34.010000"],["2024-07-24T04:26:35.010000"],["2024-07-24T04:26:36.010000"],["2024-07-24T04:26:37.010000"],["2024-07-24T04:26:38.010000"],["2024-07-24T04:26:39.010000"],["2024-07-24T04:26:40.010000"],["2024-07-24T04:26:41.010000"],["2024-07-24T04:26:42.010000"],["2024-07-24T04:26:43.010000"],["2024-07-24T04:26:44.010000"],["2024-07-24T04:26:45.010000"],["2024-07-24T04:26:46.010000"],["2024-07-24T04:26:47.010000"],["2024-07-24T04:26:48.010000"],["2024-07-24T04:26:49.010000"],["2024-07-24T04:26:50.010000"],["2024-07-24T04:26:51.010000"],["2024-07-24T04:26:52.010000"],["2024-07-24T04:26:53.010000"],["2024-07-24T04:26:54.010000"],["2024-07-24T04:26:55.010000"],["2024-07-24T04:26:56.010000"],["2024-07-24T04:26:57.010000"],["2024-07-24T04:26:58.010000"],["2024-07-24T04:26:59.010000"],["2024-07-24T04:27:00.010000"],["2024-07-24T04:27:01.010000"],["2024-07-24T04:27:02.010000"],["2024-07-24T04:27:03.010000"],["2024-07-24T04:27:04.010000"],["2024-07-24T04:27:05.010000"],["2024-07-24T04:27:06.010000"],["2024-07-24T04:27:07.010000"],["2024-07-24T04:27:08.010000"],["2024-07-24T04:27:09.010000"],["2024-07-24T04:27:10.010000"],["2024-07-24T04:27:11.010000"],["2024-07-24T04:27:12.010000"],["2024-07-24T04:27:13.010000"],["2024-07-24T04:27:14.010000"],["2024-07-24T04:27:15.010000"],["2024-07-24T04:27:16.010000"],["2024-07-24T04:27:17.010000"],["2024-07-24T04:27:18.010000"],["2024-07-24T04:27:19.010000"],["2024-07-24T04:27:20.010000"],["2024-07-24T04:27:21.010000"],["2024-07-24T04:27:22.010000"],["2024-07-24T04:27:23.010000"],["2024-07-24T04:27:24.010000"],["2024-07-24T04:27:25.010000"],["2024-07-24T04:27:26.010000"],["2024-07-24T04:27:27.010000"],["2024-07-24T04:27:28.010000"],["2024-07-24T04:27:29.010000"],["2024-07-24T04:27:30.010000"],["2024-07-24T04:27:31.010000"],["2024-07-24T04:27:32.010000"],["2024-07-24T04:27:33.010000"],["2024-07-24T04:27:34.010000"],["2024-07-24T04:27:35.010000"],["2024-07-24T04:27:36.010000"],["2024-07-24T04:27:37.010000"],["2024-07-24T04:27:38.010000"],["2024-07-24T04:27:39.010000"],["2024-07-24T04:27:40.010000"],["2024-07-24T04:27:41.010000"],["2024-07-24T04:27:42.010000"],["2024-07-24T04:27:43.010000"],["2024-07-24T04:27:44.010000"],["2024-07-24T04:27:45.010000"],["2024-07-24T04:27:46.010000"],["2024-07-24T04:27:47.010000"],["2024-07-24T04:27:48.010000"],["2024-07-24T04:27:49.010000"],["2024-07-24T04:27:50.010000"],["2024-07-24T04:27:51.010000"],["2024-07-24T04:27:52.010000"],["2024-07-24T04:27:53.010000"],["2024-07-24T04:27:54.010000"],["2024-07-24T04:27:55.010000"],["2024-07-24T04:27:56.010000"],["2024-07-24T04:27:57.010000"],["2024-07-24T04:27:58.010000"],["2024-07-24T04:27:59.010000"],["2024-07-24T04:28:00.010000"],["2024-07-24T04:28:01.010000"],["2024-07-24T04:28:02.010000"],["2024-07-24T04:28:03.010000"],["2024-07-24T04:28:04.010000"],["2024-07-24T04:28:05.010000"],["2024-07-24T04:28:06.010000"],["2024-07-24T04:28:07.010000"],["2024-07-24T04:28:08.010000"],["2024-07-24T04:28:09.010000"],["2024-07-24T04:28:10.010000"],["2024-07-24T04:28:11.010000"],["2024-07-24T04:28:12.010000"],["2024-07-24T04:28:13.010000"],["2024-07-24T04:28:14.010000"],["2024-07-24T04:28:15.010000"],["2024-07-24T04:28:16.010000"],["2024-07-24T04:28:17.010000"],["2024-07-24T04:28:18.010000"],["2024-07-24T04:28:19.010000"],["2024-07-24T04:28:20.010000"],["2024-07-24T04:28:21.010000"],["2024-07-24T04:28:22.010000"],["2024-07-24T04:28:23.010000"],["2024-07-24T04:28:24.010000"],["2024-07-24T04:28:25.010000"],["2024-07-24T04:28:26.010000"],["2024-07-24T04:28:27.010000"],["2024-07-24T04:28:28.010000"],["2024-07-24T04:28:29.010000"],["2024-07-24T04:28:30.010000"],["2024-07-24T04:28:31.010000"],["2024-07-24T04:28:32.010000"],["2024-07-24T04:28:33.010000"],["2024-07-24T04:28:34.010000"],["2024-07-24T04:28:35.010000"],["2024-07-24T04:28:36.010000"],["2024-07-24T04:28:37.010000"],["2024-07-24T04:28:38.010000"],["2024-07-24T04:28:39.010000"],["2024-07-24T04:28:40.010000"],["2024-07-24T04:28:41.010000"],["2024-07-24T04:28:42.010000"],["2024-07-24T04:28:43.010000"],["2024-07-24T04:28:44.010000"],["2024-07-24T04:28:45.010000"],["2024-07-24T04:28:46.010000"],["2024-07-24T04:28:47.010000"],["2024-07-24T04:28:48.010000"],["2024-07-24T04:28:49.010000"],["2024-07-24T04:28:50.010000"],["2024-07-24T04:28:51.010000"],["2024-07-24T04:28:52.010000"],["2024-07-24T04:28:53.010000"],["2024-07-24T04:28:54.010000"],["2024-07-24T04:28:55.010000"],["2024-07-24T04:28:56.010000"],["2024-07-24T04:28:57.010000"],["2024-07-24T04:28:58.010000"],["2024-07-24T04:28:59.010000"],["2024-07-24T04:29:00.010000"],["2024-07-24T04:29:01.010000"],["2024-07-24T04:29:02.010000"],["2024-07-24T04:29:03.010000"],["2024-07-24T04:29:04.010000"],["2024-07-24T04:29:05.010000"],["2024-07-24T04:29:06.010000"],["2024-07-24T04:29:07.010000"],["2024-07-24T04:29:08.010000"],["2024-07-24T04:29:09.010000"],["2024-07-24T04:29:10.010000"],["2024-07-24T04:29:11.010000"],["2024-07-24T04:29:12.010000"],["2024-07-24T04:29:13.010000"],["2024-07-24T04:29:14.010000"],["2024-07-24T04:29:15.010000"],["2024-07-24T04:29:16.010000"],["2024-07-24T04:29:17.010000"],["2024-07-24T04:29:18.010000"],["2024-07-24T04:29:19.010000"],["2024-07-24T04:29:20.010000"],["2024-07-24T04:29:21.010000"],["2024-07-24T04:29:22.010000"],["2024-07-24T04:29:23.010000"],["2024-07-24T04:29:24.010000"],["2024-07-24T04:29:25.010000"],["2024-07-24T04:29:26.010000"],["2024-07-24T04:29:27.010000"],["2024-07-24T04:29:28.010000"],["2024-07-24T04:29:29.010000"],["2024-07-24T04:29:30.010000"],["2024-07-24T04:29:31.010000"],["2024-07-24T04:29:32.010000"],["2024-07-24T04:29:33.010000"],["2024-07-24T04:29:34.010000"],["2024-07-24T04:29:35.010000"],["2024-07-24T04:29:36.010000"],["2024-07-24T04:29:37.010000"],["2024-07-24T04:29:38.010000"],["2024-07-24T04:29:39.010000"],["2024-07-24T04:29:40.010000"],["2024-07-24T04:29:41.010000"],["2024-07-24T04:29:42.010000"],["2024-07-24T04:29:43.010000"],["2024-07-24T04:29:44.010000"],["2024-07-24T04:29:45.010000"],["2024-07-24T04:29:46.010000"],["2024-07-24T04:29:47.010000"],["2024-07-24T04:29:48.010000"],["2024-07-24T04:29:49.010000"],["2024-07-24T04:29:50.010000"],["2024-07-24T04:29:51.010000"],["2024-07-24T04:29:52.010000"],["2024-07-24T04:29:53.010000"],["2024-07-24T04:29:54.010000"],["2024-07-24T04:29:55.010000"],["2024-07-24T04:29:56.010000"],["2024-07-24T04:29:57.010000"],["2024-07-24T04:29:58.010000"],["2024-07-24T04:29:59.010000"],["2024-07-24T04:30:00.010000"],["2024-07-24T04:30:01.010000"],["2024-07-24T04:30:02.010000"],["2024-07-24T04:30:03.010000"],["2024-07-24T04:30:04.010000"],["2024-07-24T04:30:05.010000"],["2024-07-24T04:30:06.010000"],["2024-07-24T04:30:07.010000"],["2024-07-24T04:30:08.010000"],["2024-07-24T04:30:09.010000"],["2024-07-24T04:30:10.010000"],["2024-07-24T04:30:11.010000"],["2024-07-24T04:30:12.010000"],["2024-07-24T04:30:13.010000"],["2024-07-24T04:30:14.010000"],["2024-07-24T04:30:15.010000"],["2024-07-24T04:30:16.010000"],["2024-07-24T04:30:17.010000"],["2024-07-24T04:30:18.010000"],["2024-07-24T04:30:19.010000"],["2024-07-24T04:30:20.010000"],["2024-07-24T04:30:21.010000"],["2024-07-24T04:30:22.010000"],["2024-07-24T04:30:23.010000"],["2024-07-24T04:30:24.010000"],["2024-07-24T04:30:25.010000"],["2024-07-24T04:30:26.010000"],["2024-07-24T04:30:27.010000"],["2024-07-24T04:30:28.010000"],["2024-07-24T04:30:29.010000"],["2024-07-24T04:30:30.010000"],["2024-07-24T04:30:31.010000"],["2024-07-24T04:30:32.010000"],["2024-07-24T04:30:33.010000"],["2024-07-24T04:30:34.010000"],["2024-07-24T04:30:35.010000"],["2024-07-24T04:30:36.010000"],["2024-07-24T04:30:37.010000"],["2024-07-24T04:30:38.010000"],["2024-07-24T04:30:39.010000"],["2024-07-24T04:30:40.010000"],["2024-07-24T04:30:41.010000"],["2024-07-24T04:30:42.010000"],["2024-07-24T04:30:43.010000"],["2024-07-24T04:30:44.010000"],["2024-07-24T04:30:45.010000"],["2024-07-24T04:30:46.010000"],["2024-07-24T04:30:47.010000"],["2024-07-24T04:30:48.010000"],["2024-07-24T04:30:49.010000"],["2024-07-24T04:30:50.010000"],["2024-07-24T04:30:51.010000"],["2024-07-24T04:30:52.010000"],["2024-07-24T04:30:53.010000"],["2024-07-24T04:30:54.010000"],["2024-07-24T04:30:55.010000"],["2024-07-24T04:30:56.010000"],["2024-07-24T04:30:57.010000"],["2024-07-24T04:30:58.010000"],["2024-07-24T04:30:59.010000"],["2024-07-24T04:31:00.010000"],["2024-07-24T04:31:01.010000"],["2024-07-24T04:31:02.010000"],["2024-07-24T04:31:03.010000"],["2024-07-24T04:31:04.010000"],["2024-07-24T04:31:05.010000"],["2024-07-24T04:31:06.010000"],["2024-07-24T04:31:07.010000"],["2024-07-24T04:31:08.010000"],["2024-07-24T04:31:09.010000"],["2024-07-24T04:31:10.010000"],["2024-07-24T04:31:11.010000"],["2024-07-24T04:31:12.010000"],["2024-07-24T04:31:13.010000"],["2024-07-24T04:31:14.010000"],["2024-07-24T04:31:15.010000"],["2024-07-24T04:31:16.010000"],["2024-07-24T04:31:17.010000"],["2024-07-24T04:31:18.010000"],["2024-07-24T04:31:19.010000"],["2024-07-24T04:31:20.010000"],["2024-07-24T04:31:21.010000"],["2024-07-24T04:31:22.010000"],["2024-07-24T04:31:23.010000"],["2024-07-24T04:31:24.010000"],["2024-07-24T04:31:25.010000"],["2024-07-24T04:31:26.010000"],["2024-07-24T04:31:27.010000"],["2024-07-24T04:31:28.010000"],["2024-07-24T04:31:29.010000"],["2024-07-24T04:31:30.010000"],["2024-07-24T04:31:31.010000"],["2024-07-24T04:31:32.010000"],["2024-07-24T04:31:33.010000"],["2024-07-24T04:31:34.010000"],["2024-07-24T04:31:35.010000"],["2024-07-24T04:31:36.010000"],["2024-07-24T04:31:37.010000"],["2024-07-24T04:31:38.010000"],["2024-07-24T04:31:39.010000"],["2024-07-24T04:31:40.010000"],["2024-07-24T04:31:41.010000"],["2024-07-24T04:31:42.010000"],["2024-07-24T04:31:43.010000"],["2024-07-24T04:31:44.010000"],["2024-07-24T04:31:45.010000"],["2024-07-24T04:31:46.010000"],["2024-07-24T04:31:47.010000"],["2024-07-24T04:31:48.010000"],["2024-07-24T04:31:49.010000"],["2024-07-24T04:31:50.010000"],["2024-07-24T04:31:51.010000"],["2024-07-24T04:31:52.010000"],["2024-07-24T04:31:53.010000"],["2024-07-24T04:31:54.010000"],["2024-07-24T04:31:55.010000"],["2024-07-24T04:31:56.010000"],["2024-07-24T04:31:57.010000"],["2024-07-24T04:31:58.010000"],["2024-07-24T04:31:59.010000"],["2024-07-24T04:32:00.010000"],["2024-07-24T04:32:01.010000"],["2024-07-24T04:32:02.010000"],["2024-07-24T04:32:03.010000"],["2024-07-24T04:32:04.010000"],["2024-07-24T04:32:05.010000"],["2024-07-24T04:32:06.010000"],["2024-07-24T04:32:07.010000"],["2024-07-24T04:32:08.010000"],["2024-07-24T04:32:09.010000"],["2024-07-24T04:32:10.010000"],["2024-07-24T04:32:11.010000"],["2024-07-24T04:32:12.010000"],["2024-07-24T04:32:13.010000"],["2024-07-24T04:32:14.010000"],["2024-07-24T04:32:15.010000"],["2024-07-24T04:32:16.010000"],["2024-07-24T04:32:17.010000"],["2024-07-24T04:32:18.010000"],["2024-07-24T04:32:19.010000"],["2024-07-24T04:32:20.010000"],["2024-07-24T04:32:21.010000"],["2024-07-24T04:32:22.010000"],["2024-07-24T04:32:23.010000"],["2024-07-24T04:32:24.010000"],["2024-07-24T04:32:25.010000"],["2024-07-24T04:32:26.010000"],["2024-07-24T04:32:27.010000"],["2024-07-24T04:32:28.010000"],["2024-07-24T04:32:29.010000"],["2024-07-24T04:32:30.010000"],["2024-07-24T04:32:31.010000"],["2024-07-24T04:32:32.010000"],["2024-07-24T04:32:33.010000"],["2024-07-24T04:32:34.010000"],["2024-07-24T04:32:35.010000"],["2024-07-24T04:32:36.010000"],["2024-07-24T04:32:37.010000"],["2024-07-24T04:32:38.010000"],["2024-07-24T04:32:39.010000"],["2024-07-24T04:32:40.010000"],["2024-07-24T04:32:41.010000"],["2024-07-24T04:32:42.010000"],["2024-07-24T04:32:43.010000"],["2024-07-24T04:32:44.010000"],["2024-07-24T04:32:45.010000"],["2024-07-24T04:32:46.010000"],["2024-07-24T04:32:47.010000"],["2024-07-24T04:32:48.010000"],["2024-07-24T04:32:49.010000"],["2024-07-24T04:32:50.010000"],["2024-07-24T04:32:51.010000"],["2024-07-24T04:32:52.010000"],["2024-07-24T04:32:53.010000"],["2024-07-24T04:32:54.010000"],["2024-07-24T04:32:55.010000"],["2024-07-24T04:32:56.010000"],["2024-07-24T04:32:57.010000"],["2024-07-24T04:32:58.010000"],["2024-07-24T04:32:59.010000"],["2024-07-24T04:33:00.010000"],["2024-07-24T04:33:01.010000"],["2024-07-24T04:33:02.010000"],["2024-07-24T04:33:03.010000"],["2024-07-24T04:33:04.010000"],["2024-07-24T04:33:05.010000"],["2024-07-24T04:33:06.010000"],["2024-07-24T04:33:07.010000"],["2024-07-24T04:33:08.010000"],["2024-07-24T04:33:09.010000"],["2024-07-24T04:33:10.010000"],["2024-07-24T04:33:11.010000"],["2024-07-24T04:33:12.010000"],["2024-07-24T04:33:13.010000"],["2024-07-24T04:33:14.010000"],["2024-07-24T04:33:15.010000"],["2024-07-24T04:33:16.010000"],["2024-07-24T04:33:17.010000"],["2024-07-24T04:33:18.010000"],["2024-07-24T04:33:19.010000"],["2024-07-24T04:33:20.010000"],["2024-07-24T04:33:21.010000"],["2024-07-24T04:33:22.010000"],["2024-07-24T04:33:23.010000"],["2024-07-24T04:33:24.010000"],["2024-07-24T04:33:25.010000"],["2024-07-24T04:33:26.010000"],["2024-07-24T04:33:27.010000"],["2024-07-24T04:33:28.010000"],["2024-07-24T04:33:29.010000"],["2024-07-24T04:33:30.010000"],["2024-07-24T04:33:31.010000"],["2024-07-24T04:33:32.010000"],["2024-07-24T04:33:33.010000"],["2024-07-24T04:33:34.010000"],["2024-07-24T04:33:35.010000"],["2024-07-24T04:33:36.010000"],["2024-07-24T04:33:37.010000"],["2024-07-24T04:33:38.010000"],["2024-07-24T04:33:39.010000"],["2024-07-24T04:33:40.010000"],["2024-07-24T04:33:41.010000"],["2024-07-24T04:33:42.010000"],["2024-07-24T04:33:43.010000"],["2024-07-24T04:33:44.010000"],["2024-07-24T04:33:45.010000"],["2024-07-24T04:33:46.010000"],["2024-07-24T04:33:47.010000"],["2024-07-24T04:33:48.010000"],["2024-07-24T04:33:49.010000"],["2024-07-24T04:33:50.010000"],["2024-07-24T04:33:51.010000"],["2024-07-24T04:33:52.010000"],["2024-07-24T04:33:53.010000"],["2024-07-24T04:33:54.010000"],["2024-07-24T04:33:55.010000"],["2024-07-24T04:33:56.010000"],["2024-07-24T04:33:57.010000"],["2024-07-24T04:33:58.010000"],["2024-07-24T04:33:59.010000"],["2024-07-24T04:34:00.010000"],["2024-07-24T04:34:01.010000"],["2024-07-24T04:34:02.010000"],["2024-07-24T04:34:03.010000"],["2024-07-24T04:34:04.010000"],["2024-07-24T04:34:05.010000"],["2024-07-24T04:34:06.010000"],["2024-07-24T04:34:07.010000"],["2024-07-24T04:34:08.010000"],["2024-07-24T04:34:09.010000"],["2024-07-24T04:34:10.010000"],["2024-07-24T04:34:11.010000"],["2024-07-24T04:34:12.010000"],["2024-07-24T04:34:13.010000"],["2024-07-24T04:34:14.010000"],["2024-07-24T04:34:15.010000"],["2024-07-24T04:34:16.010000"],["2024-07-24T04:34:17.010000"],["2024-07-24T04:34:18.010000"],["2024-07-24T04:34:19.010000"],["2024-07-24T04:34:20.010000"],["2024-07-24T04:34:21.010000"],["2024-07-24T04:34:22.010000"],["2024-07-24T04:34:23.010000"],["2024-07-24T04:34:24.010000"],["2024-07-24T04:34:25.010000"],["2024-07-24T04:34:26.010000"],["2024-07-24T04:34:27.010000"],["2024-07-24T04:34:28.010000"],["2024-07-24T04:34:29.010000"],["2024-07-24T04:34:30.010000"],["2024-07-24T04:34:31.010000"],["2024-07-24T04:34:32.010000"],["2024-07-24T04:34:33.010000"],["2024-07-24T04:34:34.010000"],["2024-07-24T04:34:35.010000"],["2024-07-24T04:34:36.010000"],["2024-07-24T04:34:37.010000"],["2024-07-24T04:34:38.010000"],["2024-07-24T04:34:39.010000"],["2024-07-24T04:34:40.010000"],["2024-07-24T04:34:41.010000"],["2024-07-24T04:34:42.010000"],["2024-07-24T04:34:43.010000"],["2024-07-24T04:34:44.010000"],["2024-07-24T04:34:45.010000"],["2024-07-24T04:34:46.010000"],["2024-07-24T04:34:47.010000"],["2024-07-24T04:34:48.010000"],["2024-07-24T04:34:49.010000"],["2024-07-24T04:34:50.010000"],["2024-07-24T04:34:51.010000"],["2024-07-24T04:34:52.010000"],["2024-07-24T04:34:53.010000"],["2024-07-24T04:34:54.010000"],["2024-07-24T04:34:55.010000"],["2024-07-24T04:34:56.010000"],["2024-07-24T04:34:57.010000"],["2024-07-24T04:34:58.010000"],["2024-07-24T04:34:59.010000"],["2024-07-24T04:35:00.010000"],["2024-07-24T04:35:01.010000"],["2024-07-24T04:35:02.010000"],["2024-07-24T04:35:03.010000"],["2024-07-24T04:35:04.010000"],["2024-07-24T04:35:05.010000"],["2024-07-24T04:35:06.010000"],["2024-07-24T04:35:07.010000"],["2024-07-24T04:35:08.010000"],["2024-07-24T04:35:09.010000"],["2024-07-24T04:35:10.010000"],["2024-07-24T04:35:11.010000"],["2024-07-24T04:35:12.010000"],["2024-07-24T04:35:13.010000"],["2024-07-24T04:35:14.010000"],["2024-07-24T04:35:15.010000"],["2024-07-24T04:35:16.010000"],["2024-07-24T04:35:17.010000"],["2024-07-24T04:35:18.010000"],["2024-07-24T04:35:19.010000"],["2024-07-24T04:35:20.010000"],["2024-07-24T04:35:21.010000"],["2024-07-24T04:35:22.010000"],["2024-07-24T04:35:23.010000"],["2024-07-24T04:35:24.010000"],["2024-07-24T04:35:25.010000"],["2024-07-24T04:35:26.010000"],["2024-07-24T04:35:27.010000"],["2024-07-24T04:35:28.010000"],["2024-07-24T04:35:29.010000"],["2024-07-24T04:35:30.010000"],["2024-07-24T04:35:31.010000"],["2024-07-24T04:35:32.010000"],["2024-07-24T04:35:33.010000"],["2024-07-24T04:35:34.010000"],["2024-07-24T04:35:35.010000"],["2024-07-24T04:35:36.010000"],["2024-07-24T04:35:37.010000"],["2024-07-24T04:35:38.010000"],["2024-07-24T04:35:39.010000"],["2024-07-24T04:35:40.010000"],["2024-07-24T04:35:41.010000"],["2024-07-24T04:35:42.010000"],["2024-07-24T04:35:43.010000"],["2024-07-24T04:35:44.010000"],["2024-07-24T04:35:45.010000"],["2024-07-24T04:35:46.010000"],["2024-07-24T04:35:47.010000"],["2024-07-24T04:35:48.010000"],["2024-07-24T04:35:49.010000"],["2024-07-24T04:35:50.010000"],["2024-07-24T04:35:51.010000"],["2024-07-24T04:35:52.010000"],["2024-07-24T04:35:53.010000"],["2024-07-24T04:35:54.010000"],["2024-07-24T04:35:55.010000"],["2024-07-24T04:35:56.010000"],["2024-07-24T04:35:57.010000"],["2024-07-24T04:35:58.010000"],["2024-07-24T04:35:59.010000"],["2024-07-24T04:36:00.010000"],["2024-07-24T04:36:01.010000"],["2024-07-24T04:36:02.010000"],["2024-07-24T04:36:03.010000"],["2024-07-24T04:36:04.010000"],["2024-07-24T04:36:05.010000"],["2024-07-24T04:36:06.010000"],["2024-07-24T04:36:07.010000"],["2024-07-24T04:36:08.010000"],["2024-07-24T04:36:09.010000"],["2024-07-24T04:36:10.010000"],["2024-07-24T04:36:11.010000"],["2024-07-24T04:36:12.010000"],["2024-07-24T04:36:13.010000"],["2024-07-24T04:36:14.010000"],["2024-07-24T04:36:15.010000"],["2024-07-24T04:36:16.010000"],["2024-07-24T04:36:17.010000"],["2024-07-24T04:36:18.010000"],["2024-07-24T04:36:19.010000"],["2024-07-24T04:36:20.010000"],["2024-07-24T04:36:21.010000"],["2024-07-24T04:36:22.010000"],["2024-07-24T04:36:23.010000"],["2024-07-24T04:36:24.010000"],["2024-07-24T04:36:25.010000"],["2024-07-24T04:36:26.010000"],["2024-07-24T04:36:27.010000"],["2024-07-24T04:36:28.010000"],["2024-07-24T04:36:29.010000"],["2024-07-24T04:36:30.010000"],["2024-07-24T04:36:31.010000"],["2024-07-24T04:36:32.010000"],["2024-07-24T04:36:33.010000"],["2024-07-24T04:36:34.010000"],["2024-07-24T04:36:35.010000"],["2024-07-24T04:36:36.010000"],["2024-07-24T04:36:37.010000"],["2024-07-24T04:36:38.010000"],["2024-07-24T04:36:39.010000"],["2024-07-24T04:36:40.010000"],["2024-07-24T04:36:41.010000"],["2024-07-24T04:36:42.010000"],["2024-07-24T04:36:43.010000"],["2024-07-24T04:36:44.010000"],["2024-07-24T04:36:45.010000"],["2024-07-24T04:36:46.010000"],["2024-07-24T04:36:47.010000"],["2024-07-24T04:36:48.010000"],["2024-07-24T04:36:49.010000"],["2024-07-24T04:36:50.010000"],["2024-07-24T04:36:51.010000"],["2024-07-24T04:36:52.010000"],["2024-07-24T04:36:53.010000"],["2024-07-24T04:36:54.010000"],["2024-07-24T04:36:55.010000"],["2024-07-24T04:36:56.010000"],["2024-07-24T04:36:57.010000"],["2024-07-24T04:36:58.010000"],["2024-07-24T04:36:59.010000"],["2024-07-24T04:37:00.010000"],["2024-07-24T04:37:01.010000"],["2024-07-24T04:37:02.010000"],["2024-07-24T04:37:03.010000"],["2024-07-24T04:37:04.010000"],["2024-07-24T04:37:05.010000"],["2024-07-24T04:37:06.010000"],["2024-07-24T04:37:07.010000"],["2024-07-24T04:37:08.010000"],["2024-07-24T04:37:09.010000"],["2024-07-24T04:37:10.010000"],["2024-07-24T04:37:11.010000"],["2024-07-24T04:37:12.010000"],["2024-07-24T04:37:13.010000"],["2024-07-24T04:37:14.010000"],["2024-07-24T04:37:15.010000"],["2024-07-24T04:37:16.010000"],["2024-07-24T04:37:17.010000"],["2024-07-24T04:37:18.010000"],["2024-07-24T04:37:19.010000"],["2024-07-24T04:37:20.010000"],["2024-07-24T04:37:21.010000"],["2024-07-24T04:37:22.010000"],["2024-07-24T04:37:23.010000"],["2024-07-24T04:37:24.010000"],["2024-07-24T04:37:25.010000"],["2024-07-24T04:37:26.010000"],["2024-07-24T04:37:27.010000"],["2024-07-24T04:37:28.010000"],["2024-07-24T04:37:29.010000"],["2024-07-24T04:37:30.010000"],["2024-07-24T04:37:31.010000"],["2024-07-24T04:37:32.010000"],["2024-07-24T04:37:33.010000"],["2024-07-24T04:37:34.010000"],["2024-07-24T04:37:35.010000"],["2024-07-24T04:37:36.010000"],["2024-07-24T04:37:37.010000"],["2024-07-24T04:37:38.010000"],["2024-07-24T04:37:39.010000"],["2024-07-24T04:37:40.010000"],["2024-07-24T04:37:41.010000"],["2024-07-24T04:37:42.010000"],["2024-07-24T04:37:43.010000"],["2024-07-24T04:37:44.010000"],["2024-07-24T04:37:45.010000"],["2024-07-24T04:37:46.010000"],["2024-07-24T04:37:47.010000"],["2024-07-24T04:37:48.010000"],["2024-07-24T04:37:49.010000"],["2024-07-24T04:37:50.010000"],["2024-07-24T04:37:51.010000"],["2024-07-24T04:37:52.010000"],["2024-07-24T04:37:53.010000"],["2024-07-24T04:37:54.010000"],["2024-07-24T04:37:55.010000"],["2024-07-24T04:37:56.010000"],["2024-07-24T04:37:57.010000"],["2024-07-24T04:37:58.010000"],["2024-07-24T04:37:59.010000"],["2024-07-24T04:38:00.010000"],["2024-07-24T04:38:01.010000"],["2024-07-24T04:38:02.010000"],["2024-07-24T04:38:03.010000"],["2024-07-24T04:38:04.010000"],["2024-07-24T04:38:05.010000"],["2024-07-24T04:38:06.010000"],["2024-07-24T04:38:07.010000"],["2024-07-24T04:38:08.010000"],["2024-07-24T04:38:09.010000"],["2024-07-24T04:38:10.010000"],["2024-07-24T04:38:11.010000"],["2024-07-24T04:38:12.010000"],["2024-07-24T04:38:13.010000"],["2024-07-24T04:38:14.010000"],["2024-07-24T04:38:15.010000"],["2024-07-24T04:38:16.010000"],["2024-07-24T04:38:17.010000"],["2024-07-24T04:38:18.010000"],["2024-07-24T04:38:19.010000"],["2024-07-24T04:38:20.010000"],["2024-07-24T04:38:21.010000"],["2024-07-24T04:38:22.010000"],["2024-07-24T04:38:23.010000"],["2024-07-24T04:38:24.010000"],["2024-07-24T04:38:25.010000"],["2024-07-24T04:38:26.010000"],["2024-07-24T04:38:27.010000"],["2024-07-24T04:38:28.010000"],["2024-07-24T04:38:29.010000"],["2024-07-24T04:38:30.010000"],["2024-07-24T04:38:31.010000"],["2024-07-24T04:38:32.010000"],["2024-07-24T04:38:33.010000"],["2024-07-24T04:38:34.010000"],["2024-07-24T04:38:35.010000"],["2024-07-24T04:38:36.010000"],["2024-07-24T04:38:37.010000"],["2024-07-24T04:38:38.010000"],["2024-07-24T04:38:39.010000"],["2024-07-24T04:38:40.010000"],["2024-07-24T04:38:41.010000"],["2024-07-24T04:38:42.010000"],["2024-07-24T04:38:43.010000"],["2024-07-24T04:38:44.010000"],["2024-07-24T04:38:45.010000"],["2024-07-24T04:38:46.010000"],["2024-07-24T04:38:47.010000"],["2024-07-24T04:38:48.010000"],["2024-07-24T04:38:49.010000"],["2024-07-24T04:38:50.010000"],["2024-07-24T04:38:51.010000"],["2024-07-24T04:38:52.010000"],["2024-07-24T04:38:53.010000"],["2024-07-24T04:38:54.010000"],["2024-07-24T04:38:55.010000"],["2024-07-24T04:38:56.010000"],["2024-07-24T04:38:57.010000"],["2024-07-24T04:38:58.010000"],["2024-07-24T04:38:59.010000"],["2024-07-24T04:39:00.010000"],["2024-07-24T04:39:01.010000"],["2024-07-24T04:39:02.010000"],["2024-07-24T04:39:03.010000"],["2024-07-24T04:39:04.010000"],["2024-07-24T04:39:05.010000"],["2024-07-24T04:39:06.010000"],["2024-07-24T04:39:07.010000"],["2024-07-24T04:39:08.010000"],["2024-07-24T04:39:09.010000"],["2024-07-24T04:39:10.010000"],["2024-07-24T04:39:11.010000"],["2024-07-24T04:39:12.010000"],["2024-07-24T04:39:13.010000"],["2024-07-24T04:39:14.010000"],["2024-07-24T04:39:15.010000"],["2024-07-24T04:39:16.010000"],["2024-07-24T04:39:17.010000"],["2024-07-24T04:39:18.010000"],["2024-07-24T04:39:19.010000"],["2024-07-24T04:39:20.010000"],["2024-07-24T04:39:21.010000"],["2024-07-24T04:39:22.010000"],["2024-07-24T04:39:23.010000"],["2024-07-24T04:39:24.010000"],["2024-07-24T04:39:25.010000"],["2024-07-24T04:39:26.010000"],["2024-07-24T04:39:27.010000"],["2024-07-24T04:39:28.010000"],["2024-07-24T04:39:29.010000"],["2024-07-24T04:39:30.010000"],["2024-07-24T04:39:31.010000"],["2024-07-24T04:39:32.010000"],["2024-07-24T04:39:33.010000"],["2024-07-24T04:39:34.010000"],["2024-07-24T04:39:35.010000"],["2024-07-24T04:39:36.010000"],["2024-07-24T04:39:37.010000"],["2024-07-24T04:39:38.010000"],["2024-07-24T04:39:39.010000"],["2024-07-24T04:39:40.010000"],["2024-07-24T04:39:41.010000"],["2024-07-24T04:39:42.010000"],["2024-07-24T04:39:43.010000"],["2024-07-24T04:39:44.010000"],["2024-07-24T04:39:45.010000"],["2024-07-24T04:39:46.010000"],["2024-07-24T04:39:47.010000"],["2024-07-24T04:39:48.010000"],["2024-07-24T04:39:49.010000"],["2024-07-24T04:39:50.010000"],["2024-07-24T04:39:51.010000"],["2024-07-24T04:39:52.010000"],["2024-07-24T04:39:53.010000"],["2024-07-24T04:39:54.010000"],["2024-07-24T04:39:55.010000"],["2024-07-24T04:39:56.010000"],["2024-07-24T04:39:57.010000"],["2024-07-24T04:39:58.010000"],["2024-07-24T04:39:59.010000"],["2024-07-24T04:40:00.010000"],["2024-07-24T04:40:01.010000"],["2024-07-24T04:40:02.010000"],["2024-07-24T04:40:03.010000"],["2024-07-24T04:40:04.010000"],["2024-07-24T04:40:05.010000"],["2024-07-24T04:40:06.010000"],["2024-07-24T04:40:07.010000"],["2024-07-24T04:40:08.010000"],["2024-07-24T04:40:09.010000"],["2024-07-24T04:40:10.010000"],["2024-07-24T04:40:11.010000"],["2024-07-24T04:40:12.010000"],["2024-07-24T04:40:13.010000"],["2024-07-24T04:40:14.010000"],["2024-07-24T04:40:15.010000"],["2024-07-24T04:40:16.010000"],["2024-07-24T04:40:17.010000"],["2024-07-24T04:40:18.010000"],["2024-07-24T04:40:19.010000"],["2024-07-24T04:40:20.010000"],["2024-07-24T04:40:21.010000"],["2024-07-24T04:40:22.010000"],["2024-07-24T04:40:23.010000"],["2024-07-24T04:40:24.010000"],["2024-07-24T04:40:25.010000"],["2024-07-24T04:40:26.010000"],["2024-07-24T04:40:27.010000"],["2024-07-24T04:40:28.010000"],["2024-07-24T04:40:29.010000"],["2024-07-24T04:40:30.010000"],["2024-07-24T04:40:31.010000"],["2024-07-24T04:40:32.010000"],["2024-07-24T04:40:33.010000"],["2024-07-24T04:40:34.010000"],["2024-07-24T04:40:35.010000"],["2024-07-24T04:40:36.010000"],["2024-07-24T04:40:37.010000"],["2024-07-24T04:40:38.010000"],["2024-07-24T04:40:39.010000"],["2024-07-24T04:40:40.010000"],["2024-07-24T04:40:41.010000"],["2024-07-24T04:40:42.010000"],["2024-07-24T04:40:43.010000"],["2024-07-24T04:40:44.010000"],["2024-07-24T04:40:45.010000"],["2024-07-24T04:40:46.010000"],["2024-07-24T04:40:47.010000"],["2024-07-24T04:40:48.010000"],["2024-07-24T04:40:49.010000"],["2024-07-24T04:40:50.010000"],["2024-07-24T04:40:51.010000"],["2024-07-24T04:40:52.010000"],["2024-07-24T04:40:53.010000"],["2024-07-24T04:40:54.010000"],["2024-07-24T04:40:55.010000"],["2024-07-24T04:40:56.010000"],["2024-07-24T04:40:57.010000"],["2024-07-24T04:40:58.010000"],["2024-07-24T04:40:59.010000"],["2024-07-24T04:41:00.010000"],["2024-07-24T04:41:01.010000"],["2024-07-24T04:41:02.010000"],["2024-07-24T04:41:03.010000"],["2024-07-24T04:41:04.010000"],["2024-07-24T04:41:05.010000"],["2024-07-24T04:41:06.010000"],["2024-07-24T04:41:07.010000"],["2024-07-24T04:41:08.010000"],["2024-07-24T04:41:09.010000"],["2024-07-24T04:41:10.010000"],["2024-07-24T04:41:11.010000"],["2024-07-24T04:41:12.010000"],["2024-07-24T04:41:13.010000"],["2024-07-24T04:41:14.010000"],["2024-07-24T04:41:15.010000"],["2024-07-24T04:41:16.010000"],["2024-07-24T04:41:17.010000"],["2024-07-24T04:41:18.010000"],["2024-07-24T04:41:19.010000"],["2024-07-24T04:41:20.010000"],["2024-07-24T04:41:21.010000"],["2024-07-24T04:41:22.010000"],["2024-07-24T04:41:23.010000"],["2024-07-24T04:41:24.010000"],["2024-07-24T04:41:25.010000"],["2024-07-24T04:41:26.010000"],["2024-07-24T04:41:27.010000"],["2024-07-24T04:41:28.010000"],["2024-07-24T04:41:29.010000"],["2024-07-24T04:41:30.010000"],["2024-07-24T04:41:31.010000"],["2024-07-24T04:41:32.010000"],["2024-07-24T04:41:33.010000"],["2024-07-24T04:41:34.010000"],["2024-07-24T04:41:35.010000"],["2024-07-24T04:41:36.010000"],["2024-07-24T04:41:37.010000"],["2024-07-24T04:41:38.010000"],["2024-07-24T04:41:39.010000"],["2024-07-24T04:41:40.010000"],["2024-07-24T04:41:41.010000"],["2024-07-24T04:41:42.010000"],["2024-07-24T04:41:43.010000"],["2024-07-24T04:41:44.010000"],["2024-07-24T04:41:45.010000"],["2024-07-24T04:41:46.010000"],["2024-07-24T04:41:47.010000"],["2024-07-24T04:41:48.010000"],["2024-07-24T04:41:49.010000"],["2024-07-24T04:41:50.010000"],["2024-07-24T04:41:51.010000"],["2024-07-24T04:41:52.010000"],["2024-07-24T04:41:53.010000"],["2024-07-24T04:41:54.010000"],["2024-07-24T04:41:55.010000"],["2024-07-24T04:41:56.010000"],["2024-07-24T04:41:57.010000"],["2024-07-24T04:41:58.010000"],["2024-07-24T04:41:59.010000"],["2024-07-24T04:42:00.010000"],["2024-07-24T04:42:01.010000"],["2024-07-24T04:42:02.010000"],["2024-07-24T04:42:03.010000"],["2024-07-24T04:42:04.010000"],["2024-07-24T04:42:05.010000"],["2024-07-24T04:42:06.010000"],["2024-07-24T04:42:07.010000"],["2024-07-24T04:42:08.010000"],["2024-07-24T04:42:09.010000"],["2024-07-24T04:42:10.010000"],["2024-07-24T04:42:11.010000"],["2024-07-24T04:42:12.010000"],["2024-07-24T04:42:13.010000"],["2024-07-24T04:42:14.010000"],["2024-07-24T04:42:15.010000"],["2024-07-24T04:42:16.010000"],["2024-07-24T04:42:17.010000"],["2024-07-24T04:42:18.010000"],["2024-07-24T04:42:19.010000"],["2024-07-24T04:42:20.010000"],["2024-07-24T04:42:21.010000"],["2024-07-24T04:42:22.010000"],["2024-07-24T04:42:23.010000"],["2024-07-24T04:42:24.010000"],["2024-07-24T04:42:25.010000"],["2024-07-24T04:42:26.010000"],["2024-07-24T04:42:27.010000"],["2024-07-24T04:42:28.010000"],["2024-07-24T04:42:29.010000"],["2024-07-24T04:42:30.010000"],["2024-07-24T04:42:31.010000"],["2024-07-24T04:42:32.010000"],["2024-07-24T04:42:33.010000"],["2024-07-24T04:42:34.010000"],["2024-07-24T04:42:35.010000"],["2024-07-24T04:42:36.010000"],["2024-07-24T04:42:37.010000"],["2024-07-24T04:42:38.010000"],["2024-07-24T04:42:39.010000"],["2024-07-24T04:42:40.010000"],["2024-07-24T04:42:41.010000"],["2024-07-24T04:42:42.010000"],["2024-07-24T04:42:43.010000"],["2024-07-24T04:42:44.010000"],["2024-07-24T04:42:45.010000"],["2024-07-24T04:42:46.010000"],["2024-07-24T04:42:47.010000"],["2024-07-24T04:42:48.010000"],["2024-07-24T04:42:49.010000"],["2024-07-24T04:42:50.010000"],["2024-07-24T04:42:51.010000"],["2024-07-24T04:42:52.010000"],["2024-07-24T04:42:53.010000"],["2024-07-24T04:42:54.010000"],["2024-07-24T04:42:55.010000"],["2024-07-24T04:42:56.010000"],["2024-07-24T04:42:57.010000"],["2024-07-24T04:42:58.010000"],["2024-07-24T04:42:59.010000"],["2024-07-24T04:43:00.010000"],["2024-07-24T04:43:01.010000"],["2024-07-24T04:43:02.010000"],["2024-07-24T04:43:03.010000"],["2024-07-24T04:43:04.010000"],["2024-07-24T04:43:05.010000"],["2024-07-24T04:43:06.010000"],["2024-07-24T04:43:07.010000"],["2024-07-24T04:43:08.010000"],["2024-07-24T04:43:09.010000"],["2024-07-24T04:43:10.010000"],["2024-07-24T04:43:11.010000"],["2024-07-24T04:43:12.010000"],["2024-07-24T04:43:13.010000"],["2024-07-24T04:43:14.010000"],["2024-07-24T04:43:15.010000"],["2024-07-24T04:43:16.010000"],["2024-07-24T04:43:17.010000"],["2024-07-24T04:43:18.010000"],["2024-07-24T04:43:19.010000"],["2024-07-24T04:43:20.010000"],["2024-07-24T04:43:21.010000"],["2024-07-24T04:43:22.010000"],["2024-07-24T04:43:23.010000"],["2024-07-24T04:43:24.010000"],["2024-07-24T04:43:25.010000"],["2024-07-24T04:43:26.010000"],["2024-07-24T04:43:27.010000"],["2024-07-24T04:43:28.010000"],["2024-07-24T04:43:29.010000"],["2024-07-24T04:43:30.010000"],["2024-07-24T04:43:31.010000"],["2024-07-24T04:43:32.010000"],["2024-07-24T04:43:33.010000"],["2024-07-24T04:43:34.010000"],["2024-07-24T04:43:35.010000"],["2024-07-24T04:43:36.010000"],["2024-07-24T04:43:37.010000"],["2024-07-24T04:43:38.010000"],["2024-07-24T04:43:39.010000"],["2024-07-24T04:43:40.010000"],["2024-07-24T04:43:41.010000"],["2024-07-24T04:43:42.010000"],["2024-07-24T04:43:43.010000"],["2024-07-24T04:43:44.010000"],["2024-07-24T04:43:45.010000"],["2024-07-24T04:43:46.010000"],["2024-07-24T04:43:47.010000"],["2024-07-24T04:43:48.010000"],["2024-07-24T04:43:49.010000"],["2024-07-24T04:43:50.010000"],["2024-07-24T04:43:51.010000"],["2024-07-24T04:43:52.010000"],["2024-07-24T04:43:53.010000"],["2024-07-24T04:43:54.010000"],["2024-07-24T04:43:55.010000"],["2024-07-24T04:43:56.010000"],["2024-07-24T04:43:57.010000"],["2024-07-24T04:43:58.010000"],["2024-07-24T04:43:59.010000"],["2024-07-24T04:44:00.010000"],["2024-07-24T04:44:01.010000"],["2024-07-24T04:44:02.010000"],["2024-07-24T04:44:03.010000"],["2024-07-24T04:44:04.010000"],["2024-07-24T04:44:05.010000"],["2024-07-24T04:44:06.010000"],["2024-07-24T04:44:07.010000"],["2024-07-24T04:44:08.010000"],["2024-07-24T04:44:09.010000"],["2024-07-24T04:44:10.010000"],["2024-07-24T04:44:11.010000"],["2024-07-24T04:44:12.010000"],["2024-07-24T04:44:13.010000"],["2024-07-24T04:44:14.010000"],["2024-07-24T04:44:15.010000"],["2024-07-24T04:44:16.010000"],["2024-07-24T04:44:17.010000"],["2024-07-24T04:44:18.010000"],["2024-07-24T04:44:19.010000"],["2024-07-24T04:44:20.010000"],["2024-07-24T04:44:21.010000"],["2024-07-24T04:44:22.010000"],["2024-07-24T04:44:23.010000"],["2024-07-24T04:44:24.010000"],["2024-07-24T04:44:25.010000"],["2024-07-24T04:44:26.010000"],["2024-07-24T04:44:27.010000"],["2024-07-24T04:44:28.010000"],["2024-07-24T04:44:29.010000"],["2024-07-24T04:44:30.010000"],["2024-07-24T04:44:31.010000"],["2024-07-24T04:44:32.010000"],["2024-07-24T04:44:33.010000"],["2024-07-24T04:44:34.010000"],["2024-07-24T04:44:35.010000"],["2024-07-24T04:44:36.010000"],["2024-07-24T04:44:37.010000"],["2024-07-24T04:44:38.010000"],["2024-07-24T04:44:39.010000"],["2024-07-24T04:44:40.010000"],["2024-07-24T04:44:41.010000"],["2024-07-24T04:44:42.010000"],["2024-07-24T04:44:43.010000"],["2024-07-24T04:44:44.010000"],["2024-07-24T04:44:45.010000"],["2024-07-24T04:44:46.010000"],["2024-07-24T04:44:47.010000"],["2024-07-24T04:44:48.010000"],["2024-07-24T04:44:49.010000"],["2024-07-24T04:44:50.010000"],["2024-07-24T04:44:51.010000"],["2024-07-24T04:44:52.010000"],["2024-07-24T04:44:53.010000"],["2024-07-24T04:44:54.010000"],["2024-07-24T04:44:55.010000"],["2024-07-24T04:44:56.010000"],["2024-07-24T04:44:57.010000"],["2024-07-24T04:44:58.010000"],["2024-07-24T04:44:59.010000"],["2024-07-24T04:45:00.010000"],["2024-07-24T04:45:01.010000"],["2024-07-24T04:45:02.010000"],["2024-07-24T04:45:03.010000"],["2024-07-24T04:45:04.010000"],["2024-07-24T04:45:05.010000"],["2024-07-24T04:45:06.010000"],["2024-07-24T04:45:07.010000"],["2024-07-24T04:45:08.010000"],["2024-07-24T04:45:09.010000"],["2024-07-24T04:45:10.010000"],["2024-07-24T04:45:11.010000"],["2024-07-24T04:45:12.010000"],["2024-07-24T04:45:13.010000"],["2024-07-24T04:45:14.010000"],["2024-07-24T04:45:15.010000"],["2024-07-24T04:45:16.010000"],["2024-07-24T04:45:17.010000"],["2024-07-24T04:45:18.010000"],["2024-07-24T04:45:19.010000"],["2024-07-24T04:45:20.010000"],["2024-07-24T04:45:21.010000"],["2024-07-24T04:45:22.010000"],["2024-07-24T04:45:23.010000"],["2024-07-24T04:45:24.010000"],["2024-07-24T04:45:25.010000"],["2024-07-24T04:45:26.010000"],["2024-07-24T04:45:27.010000"],["2024-07-24T04:45:28.010000"],["2024-07-24T04:45:29.010000"],["2024-07-24T04:45:30.010000"],["2024-07-24T04:45:31.010000"],["2024-07-24T04:45:32.010000"],["2024-07-24T04:45:33.010000"],["2024-07-24T04:45:34.010000"],["2024-07-24T04:45:35.010000"],["2024-07-24T04:45:36.010000"],["2024-07-24T04:45:37.010000"],["2024-07-24T04:45:38.010000"],["2024-07-24T04:45:39.010000"],["2024-07-24T04:45:40.010000"],["2024-07-24T04:45:41.010000"],["2024-07-24T04:45:42.010000"],["2024-07-24T04:45:43.010000"],["2024-07-24T04:45:44.010000"],["2024-07-24T04:45:45.010000"],["2024-07-24T04:45:46.010000"],["2024-07-24T04:45:47.010000"],["2024-07-24T04:45:48.010000"],["2024-07-24T04:45:49.010000"],["2024-07-24T04:45:50.010000"],["2024-07-24T04:45:51.010000"],["2024-07-24T04:45:52.010000"],["2024-07-24T04:45:53.010000"],["2024-07-24T04:45:54.010000"],["2024-07-24T04:45:55.010000"],["2024-07-24T04:45:56.010000"],["2024-07-24T04:45:57.010000"],["2024-07-24T04:45:58.010000"],["2024-07-24T04:45:59.010000"],["2024-07-24T04:46:00.010000"],["2024-07-24T04:46:01.010000"],["2024-07-24T04:46:02.010000"],["2024-07-24T04:46:03.010000"],["2024-07-24T04:46:04.010000"],["2024-07-24T04:46:05.010000"],["2024-07-24T04:46:06.010000"],["2024-07-24T04:46:07.010000"],["2024-07-24T04:46:08.010000"],["2024-07-24T04:46:09.010000"],["2024-07-24T04:46:10.010000"],["2024-07-24T04:46:11.010000"],["2024-07-24T04:46:12.010000"],["2024-07-24T04:46:13.010000"],["2024-07-24T04:46:14.010000"],["2024-07-24T04:46:15.010000"],["2024-07-24T04:46:16.010000"],["2024-07-24T04:46:17.010000"],["2024-07-24T04:46:18.010000"],["2024-07-24T04:46:19.010000"],["2024-07-24T04:46:20.010000"],["2024-07-24T04:46:21.010000"],["2024-07-24T04:46:22.010000"],["2024-07-24T04:46:23.010000"],["2024-07-24T04:46:24.010000"],["2024-07-24T04:46:25.010000"],["2024-07-24T04:46:26.010000"],["2024-07-24T04:46:27.010000"],["2024-07-24T04:46:28.010000"],["2024-07-24T04:46:29.010000"],["2024-07-24T04:46:30.010000"],["2024-07-24T04:46:31.010000"],["2024-07-24T04:46:32.010000"],["2024-07-24T04:46:33.010000"],["2024-07-24T04:46:34.010000"],["2024-07-24T04:46:35.010000"],["2024-07-24T04:46:36.010000"],["2024-07-24T04:46:37.010000"],["2024-07-24T04:46:38.010000"],["2024-07-24T04:46:39.010000"],["2024-07-24T04:46:40.010000"],["2024-07-24T04:46:41.010000"],["2024-07-24T04:46:42.010000"],["2024-07-24T04:46:43.010000"],["2024-07-24T04:46:44.010000"],["2024-07-24T04:46:45.010000"],["2024-07-24T04:46:46.010000"],["2024-07-24T04:46:47.010000"],["2024-07-24T04:46:48.010000"],["2024-07-24T04:46:49.010000"],["2024-07-24T04:46:50.010000"],["2024-07-24T04:46:51.010000"],["2024-07-24T04:46:52.010000"],["2024-07-24T04:46:53.010000"],["2024-07-24T04:46:54.010000"],["2024-07-24T04:46:55.010000"],["2024-07-24T04:46:56.010000"],["2024-07-24T04:46:57.010000"],["2024-07-24T04:46:58.010000"],["2024-07-24T04:46:59.010000"],["2024-07-24T04:47:00.010000"],["2024-07-24T04:47:01.010000"],["2024-07-24T04:47:02.010000"],["2024-07-24T04:47:03.010000"],["2024-07-24T04:47:04.010000"],["2024-07-24T04:47:05.010000"],["2024-07-24T04:47:06.010000"],["2024-07-24T04:47:07.010000"],["2024-07-24T04:47:08.010000"],["2024-07-24T04:47:09.010000"],["2024-07-24T04:47:10.010000"],["2024-07-24T04:47:11.010000"],["2024-07-24T04:47:12.010000"],["2024-07-24T04:47:13.010000"],["2024-07-24T04:47:14.010000"],["2024-07-24T04:47:15.010000"],["2024-07-24T04:47:16.010000"],["2024-07-24T04:47:17.010000"],["2024-07-24T04:47:18.010000"],["2024-07-24T04:47:19.010000"],["2024-07-24T04:47:20.010000"],["2024-07-24T04:47:21.010000"],["2024-07-24T04:47:22.010000"],["2024-07-24T04:47:23.010000"],["2024-07-24T04:47:24.010000"],["2024-07-24T04:47:25.010000"],["2024-07-24T04:47:26.010000"],["2024-07-24T04:47:27.010000"],["2024-07-24T04:47:28.010000"],["2024-07-24T04:47:29.010000"],["2024-07-24T04:47:30.010000"],["2024-07-24T04:47:31.010000"],["2024-07-24T04:47:32.010000"],["2024-07-24T04:47:33.010000"],["2024-07-24T04:47:34.010000"],["2024-07-24T04:47:35.010000"],["2024-07-24T04:47:36.010000"],["2024-07-24T04:47:37.010000"],["2024-07-24T04:47:38.010000"],["2024-07-24T04:47:39.010000"],["2024-07-24T04:47:40.010000"],["2024-07-24T04:47:41.010000"],["2024-07-24T04:47:42.010000"],["2024-07-24T04:47:43.010000"],["2024-07-24T04:47:44.010000"],["2024-07-24T04:47:45.010000"],["2024-07-24T04:47:46.010000"],["2024-07-24T04:47:47.010000"],["2024-07-24T04:47:48.010000"],["2024-07-24T04:47:49.010000"],["2024-07-24T04:47:50.010000"],["2024-07-24T04:47:51.010000"],["2024-07-24T04:47:52.010000"],["2024-07-24T04:47:53.010000"],["2024-07-24T04:47:54.010000"],["2024-07-24T04:47:55.010000"],["2024-07-24T04:47:56.010000"],["2024-07-24T04:47:57.010000"],["2024-07-24T04:47:58.010000"],["2024-07-24T04:47:59.010000"],["2024-07-24T04:48:00.010000"],["2024-07-24T04:48:01.010000"],["2024-07-24T04:48:02.010000"],["2024-07-24T04:48:03.010000"],["2024-07-24T04:48:04.010000"],["2024-07-24T04:48:05.010000"],["2024-07-24T04:48:06.010000"],["2024-07-24T04:48:07.010000"],["2024-07-24T04:48:08.010000"],["2024-07-24T04:48:09.010000"],["2024-07-24T04:48:10.010000"],["2024-07-24T04:48:11.010000"],["2024-07-24T04:48:12.010000"],["2024-07-24T04:48:13.010000"],["2024-07-24T04:48:14.010000"],["2024-07-24T04:48:15.010000"],["2024-07-24T04:48:16.010000"],["2024-07-24T04:48:17.010000"],["2024-07-24T04:48:18.010000"],["2024-07-24T04:48:19.010000"],["2024-07-24T04:48:20.010000"],["2024-07-24T04:48:21.010000"],["2024-07-24T04:48:22.010000"],["2024-07-24T04:48:23.010000"],["2024-07-24T04:48:24.010000"],["2024-07-24T04:48:25.010000"],["2024-07-24T04:48:26.010000"],["2024-07-24T04:48:27.010000"],["2024-07-24T04:48:28.010000"],["2024-07-24T04:48:29.010000"],["2024-07-24T04:48:30.010000"],["2024-07-24T04:48:31.010000"],["2024-07-24T04:48:32.010000"],["2024-07-24T04:48:33.010000"],["2024-07-24T04:48:34.010000"],["2024-07-24T04:48:35.010000"],["2024-07-24T04:48:36.010000"],["2024-07-24T04:48:37.010000"],["2024-07-24T04:48:38.010000"],["2024-07-24T04:48:39.010000"],["2024-07-24T04:48:40.010000"],["2024-07-24T04:48:41.010000"],["2024-07-24T04:48:42.010000"],["2024-07-24T04:48:43.010000"],["2024-07-24T04:48:44.010000"],["2024-07-24T04:48:45.010000"],["2024-07-24T04:48:46.010000"],["2024-07-24T04:48:47.010000"],["2024-07-24T04:48:48.010000"],["2024-07-24T04:48:49.010000"],["2024-07-24T04:48:50.010000"],["2024-07-24T04:48:51.010000"],["2024-07-24T04:48:52.010000"],["2024-07-24T04:48:53.010000"],["2024-07-24T04:48:54.010000"],["2024-07-24T04:48:55.010000"],["2024-07-24T04:48:56.010000"],["2024-07-24T04:48:57.010000"],["2024-07-24T04:48:58.010000"],["2024-07-24T04:48:59.010000"],["2024-07-24T04:49:00.010000"],["2024-07-24T04:49:01.010000"],["2024-07-24T04:49:02.010000"],["2024-07-24T04:49:03.010000"],["2024-07-24T04:49:04.010000"],["2024-07-24T04:49:05.010000"],["2024-07-24T04:49:06.010000"],["2024-07-24T04:49:07.010000"],["2024-07-24T04:49:08.010000"],["2024-07-24T04:49:09.010000"],["2024-07-24T04:49:10.010000"],["2024-07-24T04:49:11.010000"],["2024-07-24T04:49:12.010000"],["2024-07-24T04:49:13.010000"],["2024-07-24T04:49:14.010000"],["2024-07-24T04:49:15.010000"],["2024-07-24T04:49:16.010000"],["2024-07-24T04:49:17.010000"],["2024-07-24T04:49:18.010000"],["2024-07-24T04:49:19.010000"],["2024-07-24T04:49:20.010000"],["2024-07-24T04:49:21.010000"],["2024-07-24T04:49:22.010000"],["2024-07-24T04:49:23.010000"],["2024-07-24T04:49:24.010000"],["2024-07-24T04:49:25.010000"],["2024-07-24T04:49:26.010000"],["2024-07-24T04:49:27.010000"],["2024-07-24T04:49:28.010000"],["2024-07-24T04:49:29.010000"],["2024-07-24T04:49:30.010000"],["2024-07-24T04:49:31.010000"],["2024-07-24T04:49:32.010000"],["2024-07-24T04:49:33.010000"],["2024-07-24T04:49:34.010000"],["2024-07-24T04:49:35.010000"],["2024-07-24T04:49:36.010000"],["2024-07-24T04:49:37.010000"],["2024-07-24T04:49:38.010000"],["2024-07-24T04:49:39.010000"],["2024-07-24T04:49:40.010000"],["2024-07-24T04:49:41.010000"],["2024-07-24T04:49:42.010000"],["2024-07-24T04:49:43.010000"],["2024-07-24T04:49:44.010000"],["2024-07-24T04:49:45.010000"],["2024-07-24T04:49:46.010000"],["2024-07-24T04:49:47.010000"],["2024-07-24T04:49:48.010000"],["2024-07-24T04:49:49.010000"],["2024-07-24T04:49:50.010000"],["2024-07-24T04:49:51.010000"],["2024-07-24T04:49:52.010000"],["2024-07-24T04:49:53.010000"],["2024-07-24T04:49:54.010000"],["2024-07-24T04:49:55.010000"],["2024-07-24T04:49:56.010000"],["2024-07-24T04:49:57.010000"],["2024-07-24T04:49:58.010000"],["2024-07-24T04:49:59.010000"],["2024-07-24T04:50:00.010000"],["2024-07-24T04:50:01.010000"],["2024-07-24T04:50:02.010000"],["2024-07-24T04:50:03.010000"],["2024-07-24T04:50:04.010000"],["2024-07-24T04:50:05.010000"],["2024-07-24T04:50:06.010000"],["2024-07-24T04:50:07.010000"],["2024-07-24T04:50:08.010000"],["2024-07-24T04:50:09.010000"],["2024-07-24T04:50:10.010000"],["2024-07-24T04:50:11.010000"],["2024-07-24T04:50:12.010000"],["2024-07-24T04:50:13.010000"],["2024-07-24T04:50:14.010000"],["2024-07-24T04:50:15.010000"],["2024-07-24T04:50:16.010000"],["2024-07-24T04:50:17.010000"],["2024-07-24T04:50:18.010000"],["2024-07-24T04:50:19.010000"],["2024-07-24T04:50:20.010000"],["2024-07-24T04:50:21.010000"],["2024-07-24T04:50:22.010000"],["2024-07-24T04:50:23.010000"],["2024-07-24T04:50:24.010000"],["2024-07-24T04:50:25.010000"],["2024-07-24T04:50:26.010000"],["2024-07-24T04:50:27.010000"],["2024-07-24T04:50:28.010000"],["2024-07-24T04:50:29.010000"],["2024-07-24T04:50:30.010000"],["2024-07-24T04:50:31.010000"],["2024-07-24T04:50:32.010000"],["2024-07-24T04:50:33.010000"],["2024-07-24T04:50:34.010000"],["2024-07-24T04:50:35.010000"],["2024-07-24T04:50:36.010000"],["2024-07-24T04:50:37.010000"],["2024-07-24T04:50:38.010000"],["2024-07-24T04:50:39.010000"],["2024-07-24T04:50:40.010000"],["2024-07-24T04:50:41.010000"],["2024-07-24T04:50:42.010000"],["2024-07-24T04:50:43.010000"],["2024-07-24T04:50:44.010000"],["2024-07-24T04:50:45.010000"],["2024-07-24T04:50:46.010000"],["2024-07-24T04:50:47.010000"],["2024-07-24T04:50:48.010000"],["2024-07-24T04:50:49.010000"],["2024-07-24T04:50:50.010000"],["2024-07-24T04:50:51.010000"],["2024-07-24T04:50:52.010000"],["2024-07-24T04:50:53.010000"],["2024-07-24T04:50:54.010000"],["2024-07-24T04:50:55.010000"],["2024-07-24T04:50:56.010000"],["2024-07-24T04:50:57.010000"],["2024-07-24T04:50:58.010000"],["2024-07-24T04:50:59.010000"],["2024-07-24T04:51:00.010000"],["2024-07-24T04:51:01.010000"],["2024-07-24T04:51:02.010000"],["2024-07-24T04:51:03.010000"],["2024-07-24T04:51:04.010000"],["2024-07-24T04:51:05.010000"],["2024-07-24T04:51:06.010000"],["2024-07-24T04:51:07.010000"],["2024-07-24T04:51:08.010000"],["2024-07-24T04:51:09.010000"],["2024-07-24T04:51:10.010000"],["2024-07-24T04:51:11.010000"],["2024-07-24T04:51:12.010000"],["2024-07-24T04:51:13.010000"],["2024-07-24T04:51:14.010000"],["2024-07-24T04:51:15.010000"],["2024-07-24T04:51:16.010000"],["2024-07-24T04:51:17.010000"],["2024-07-24T04:51:18.010000"],["2024-07-24T04:51:19.010000"],["2024-07-24T04:51:20.010000"],["2024-07-24T04:51:21.010000"],["2024-07-24T04:51:22.010000"],["2024-07-24T04:51:23.010000"],["2024-07-24T04:51:24.010000"],["2024-07-24T04:51:25.010000"],["2024-07-24T04:51:26.010000"],["2024-07-24T04:51:27.010000"],["2024-07-24T04:51:28.010000"],["2024-07-24T04:51:29.010000"],["2024-07-24T04:51:30.010000"],["2024-07-24T04:51:31.010000"],["2024-07-24T04:51:32.010000"],["2024-07-24T04:51:33.010000"],["2024-07-24T04:51:34.010000"],["2024-07-24T04:51:35.010000"],["2024-07-24T04:51:36.010000"],["2024-07-24T04:51:37.010000"],["2024-07-24T04:51:38.010000"],["2024-07-24T04:51:39.010000"],["2024-07-24T04:51:40.010000"],["2024-07-24T04:51:41.010000"],["2024-07-24T04:51:42.010000"],["2024-07-24T04:51:43.010000"],["2024-07-24T04:51:44.010000"],["2024-07-24T04:51:45.010000"],["2024-07-24T04:51:46.010000"],["2024-07-24T04:51:47.010000"],["2024-07-24T04:51:48.010000"],["2024-07-24T04:51:49.010000"],["2024-07-24T04:51:50.010000"],["2024-07-24T04:51:51.010000"],["2024-07-24T04:51:52.010000"],["2024-07-24T04:51:53.010000"],["2024-07-24T04:51:54.010000"],["2024-07-24T04:51:55.010000"],["2024-07-24T04:51:56.010000"],["2024-07-24T04:51:57.010000"],["2024-07-24T04:51:58.010000"],["2024-07-24T04:51:59.010000"],["2024-07-24T04:52:00.010000"],["2024-07-24T04:52:01.010000"],["2024-07-24T04:52:02.010000"],["2024-07-24T04:52:03.010000"],["2024-07-24T04:52:04.010000"],["2024-07-24T04:52:05.010000"],["2024-07-24T04:52:06.010000"],["2024-07-24T04:52:07.010000"],["2024-07-24T04:52:08.010000"],["2024-07-24T04:52:09.010000"],["2024-07-24T04:52:10.010000"],["2024-07-24T04:52:11.010000"],["2024-07-24T04:52:12.010000"],["2024-07-24T04:52:13.010000"],["2024-07-24T04:52:14.010000"],["2024-07-24T04:52:15.010000"],["2024-07-24T04:52:16.010000"],["2024-07-24T04:52:17.010000"],["2024-07-24T04:52:18.010000"],["2024-07-24T04:52:19.010000"],["2024-07-24T04:52:20.010000"],["2024-07-24T04:52:21.010000"],["2024-07-24T04:52:22.010000"],["2024-07-24T04:52:23.010000"],["2024-07-24T04:52:24.010000"],["2024-07-24T04:52:25.010000"],["2024-07-24T04:52:26.010000"],["2024-07-24T04:52:27.010000"],["2024-07-24T04:52:28.010000"],["2024-07-24T04:52:29.010000"],["2024-07-24T04:52:30.010000"],["2024-07-24T04:52:31.010000"],["2024-07-24T04:52:32.010000"],["2024-07-24T04:52:33.010000"],["2024-07-24T04:52:34.010000"],["2024-07-24T04:52:35.010000"],["2024-07-24T04:52:36.010000"],["2024-07-24T04:52:37.010000"],["2024-07-24T04:52:38.010000"],["2024-07-24T04:52:39.010000"],["2024-07-24T04:52:40.010000"],["2024-07-24T04:52:41.010000"],["2024-07-24T04:52:42.010000"],["2024-07-24T04:52:43.010000"],["2024-07-24T04:52:44.010000"],["2024-07-24T04:52:45.010000"],["2024-07-24T04:52:46.010000"],["2024-07-24T04:52:47.010000"],["2024-07-24T04:52:48.010000"],["2024-07-24T04:52:49.010000"],["2024-07-24T04:52:50.010000"],["2024-07-24T04:52:51.010000"],["2024-07-24T04:52:52.010000"],["2024-07-24T04:52:53.010000"],["2024-07-24T04:52:54.010000"],["2024-07-24T04:52:55.010000"],["2024-07-24T04:52:56.010000"],["2024-07-24T04:52:57.010000"],["2024-07-24T04:52:58.010000"],["2024-07-24T04:52:59.010000"],["2024-07-24T04:53:00.010000"],["2024-07-24T04:53:01.010000"],["2024-07-24T04:53:02.010000"],["2024-07-24T04:53:03.010000"],["2024-07-24T04:53:04.010000"],["2024-07-24T04:53:05.010000"],["2024-07-24T04:53:06.010000"],["2024-07-24T04:53:07.010000"],["2024-07-24T04:53:08.010000"],["2024-07-24T04:53:09.010000"],["2024-07-24T04:53:10.010000"],["2024-07-24T04:53:11.010000"],["2024-07-24T04:53:12.010000"],["2024-07-24T04:53:13.010000"],["2024-07-24T04:53:14.010000"],["2024-07-24T04:53:15.010000"],["2024-07-24T04:53:16.010000"],["2024-07-24T04:53:17.010000"],["2024-07-24T04:53:18.010000"],["2024-07-24T04:53:19.010000"],["2024-07-24T04:53:20.010000"],["2024-07-24T04:53:21.010000"],["2024-07-24T04:53:22.010000"],["2024-07-24T04:53:23.010000"],["2024-07-24T04:53:24.010000"],["2024-07-24T04:53:25.010000"],["2024-07-24T04:53:26.010000"],["2024-07-24T04:53:27.010000"],["2024-07-24T04:53:28.010000"],["2024-07-24T04:53:29.010000"],["2024-07-24T04:53:30.010000"],["2024-07-24T04:53:31.010000"],["2024-07-24T04:53:32.010000"],["2024-07-24T04:53:33.010000"],["2024-07-24T04:53:34.010000"],["2024-07-24T04:53:35.010000"],["2024-07-24T04:53:36.010000"],["2024-07-24T04:53:37.010000"],["2024-07-24T04:53:38.010000"],["2024-07-24T04:53:39.010000"],["2024-07-24T04:53:40.010000"],["2024-07-24T04:53:41.010000"],["2024-07-24T04:53:42.010000"],["2024-07-24T04:53:43.010000"],["2024-07-24T04:53:44.010000"],["2024-07-24T04:53:45.010000"],["2024-07-24T04:53:46.010000"],["2024-07-24T04:53:47.010000"],["2024-07-24T04:53:48.010000"],["2024-07-24T04:53:49.010000"],["2024-07-24T04:53:50.010000"],["2024-07-24T04:53:51.010000"],["2024-07-24T04:53:52.010000"],["2024-07-24T04:53:53.010000"],["2024-07-24T04:53:54.010000"],["2024-07-24T04:53:55.010000"],["2024-07-24T04:53:56.010000"],["2024-07-24T04:53:57.010000"],["2024-07-24T04:53:58.010000"],["2024-07-24T04:53:59.010000"],["2024-07-24T04:54:00.010000"],["2024-07-24T04:54:01.010000"],["2024-07-24T04:54:02.010000"],["2024-07-24T04:54:03.010000"],["2024-07-24T04:54:04.010000"],["2024-07-24T04:54:05.010000"],["2024-07-24T04:54:06.010000"],["2024-07-24T04:54:07.010000"],["2024-07-24T04:54:08.010000"],["2024-07-24T04:54:09.010000"],["2024-07-24T04:54:10.010000"],["2024-07-24T04:54:11.010000"],["2024-07-24T04:54:12.010000"],["2024-07-24T04:54:13.010000"],["2024-07-24T04:54:14.010000"],["2024-07-24T04:54:15.010000"],["2024-07-24T04:54:16.010000"],["2024-07-24T04:54:17.010000"],["2024-07-24T04:54:18.010000"],["2024-07-24T04:54:19.010000"],["2024-07-24T04:54:20.010000"],["2024-07-24T04:54:21.010000"],["2024-07-24T04:54:22.010000"],["2024-07-24T04:54:23.010000"],["2024-07-24T04:54:24.010000"],["2024-07-24T04:54:25.010000"],["2024-07-24T04:54:26.010000"],["2024-07-24T04:54:27.010000"],["2024-07-24T04:54:28.010000"],["2024-07-24T04:54:29.010000"],["2024-07-24T04:54:30.010000"],["2024-07-24T04:54:31.010000"],["2024-07-24T04:54:32.010000"],["2024-07-24T04:54:33.010000"],["2024-07-24T04:54:34.010000"],["2024-07-24T04:54:35.010000"],["2024-07-24T04:54:36.010000"],["2024-07-24T04:54:37.010000"],["2024-07-24T04:54:38.010000"],["2024-07-24T04:54:39.010000"],["2024-07-24T04:54:40.010000"],["2024-07-24T04:54:41.010000"],["2024-07-24T04:54:42.010000"],["2024-07-24T04:54:43.010000"],["2024-07-24T04:54:44.010000"],["2024-07-24T04:54:45.010000"],["2024-07-24T04:54:46.010000"],["2024-07-24T04:54:47.010000"],["2024-07-24T04:54:48.010000"],["2024-07-24T04:54:49.010000"],["2024-07-24T04:54:50.010000"],["2024-07-24T04:54:51.010000"],["2024-07-24T04:54:52.010000"],["2024-07-24T04:54:53.010000"],["2024-07-24T04:54:54.010000"],["2024-07-24T04:54:55.010000"],["2024-07-24T04:54:56.010000"],["2024-07-24T04:54:57.010000"],["2024-07-24T04:54:58.010000"],["2024-07-24T04:54:59.010000"],["2024-07-24T04:55:00.010000"],["2024-07-24T04:55:01.010000"],["2024-07-24T04:55:02.010000"],["2024-07-24T04:55:03.010000"],["2024-07-24T04:55:04.010000"],["2024-07-24T04:55:05.010000"],["2024-07-24T04:55:06.010000"],["2024-07-24T04:55:07.010000"],["2024-07-24T04:55:08.010000"],["2024-07-24T04:55:09.010000"],["2024-07-24T04:55:10.010000"],["2024-07-24T04:55:11.010000"],["2024-07-24T04:55:12.010000"],["2024-07-24T04:55:13.010000"],["2024-07-24T04:55:14.010000"],["2024-07-24T04:55:15.010000"],["2024-07-24T04:55:16.010000"],["2024-07-24T04:55:17.010000"],["2024-07-24T04:55:18.010000"],["2024-07-24T04:55:19.010000"],["2024-07-24T04:55:20.010000"],["2024-07-24T04:55:21.010000"],["2024-07-24T04:55:22.010000"],["2024-07-24T04:55:23.010000"],["2024-07-24T04:55:24.010000"],["2024-07-24T04:55:25.010000"],["2024-07-24T04:55:26.010000"],["2024-07-24T04:55:27.010000"],["2024-07-24T04:55:28.010000"],["2024-07-24T04:55:29.010000"],["2024-07-24T04:55:30.010000"],["2024-07-24T04:55:31.010000"],["2024-07-24T04:55:32.010000"],["2024-07-24T04:55:33.010000"],["2024-07-24T04:55:34.010000"],["2024-07-24T04:55:35.010000"],["2024-07-24T04:55:36.010000"],["2024-07-24T04:55:37.010000"],["2024-07-24T04:55:38.010000"],["2024-07-24T04:55:39.010000"],["2024-07-24T04:55:40.010000"],["2024-07-24T04:55:41.010000"],["2024-07-24T04:55:42.010000"],["2024-07-24T04:55:43.010000"],["2024-07-24T04:55:44.010000"],["2024-07-24T04:55:45.010000"],["2024-07-24T04:55:46.010000"],["2024-07-24T04:55:47.010000"],["2024-07-24T04:55:48.010000"],["2024-07-24T04:55:49.010000"],["2024-07-24T04:55:50.010000"],["2024-07-24T04:55:51.010000"],["2024-07-24T04:55:52.010000"],["2024-07-24T04:55:53.010000"],["2024-07-24T04:55:54.010000"],["2024-07-24T04:55:55.010000"],["2024-07-24T04:55:56.010000"],["2024-07-24T04:55:57.010000"],["2024-07-24T04:55:58.010000"],["2024-07-24T04:55:59.010000"],["2024-07-24T04:56:00.010000"],["2024-07-24T04:56:01.010000"],["2024-07-24T04:56:02.010000"],["2024-07-24T04:56:03.010000"],["2024-07-24T04:56:04.010000"],["2024-07-24T04:56:05.010000"],["2024-07-24T04:56:06.010000"],["2024-07-24T04:56:07.010000"],["2024-07-24T04:56:08.010000"],["2024-07-24T04:56:09.010000"],["2024-07-24T04:56:10.010000"],["2024-07-24T04:56:11.010000"],["2024-07-24T04:56:12.010000"],["2024-07-24T04:56:13.010000"],["2024-07-24T04:56:14.010000"],["2024-07-24T04:56:15.010000"],["2024-07-24T04:56:16.010000"],["2024-07-24T04:56:17.010000"],["2024-07-24T04:56:18.010000"],["2024-07-24T04:56:19.010000"],["2024-07-24T04:56:20.010000"],["2024-07-24T04:56:21.010000"],["2024-07-24T04:56:22.010000"],["2024-07-24T04:56:23.010000"],["2024-07-24T04:56:24.010000"],["2024-07-24T04:56:25.010000"],["2024-07-24T04:56:26.010000"],["2024-07-24T04:56:27.010000"],["2024-07-24T04:56:28.010000"],["2024-07-24T04:56:29.010000"],["2024-07-24T04:56:30.010000"],["2024-07-24T04:56:31.010000"],["2024-07-24T04:56:32.010000"],["2024-07-24T04:56:33.010000"],["2024-07-24T04:56:34.010000"],["2024-07-24T04:56:35.010000"],["2024-07-24T04:56:36.010000"],["2024-07-24T04:56:37.010000"],["2024-07-24T04:56:38.010000"],["2024-07-24T04:56:39.010000"],["2024-07-24T04:56:40.010000"],["2024-07-24T04:56:41.010000"],["2024-07-24T04:56:42.010000"],["2024-07-24T04:56:43.010000"],["2024-07-24T04:56:44.010000"],["2024-07-24T04:56:45.010000"],["2024-07-24T04:56:46.010000"],["2024-07-24T04:56:47.010000"],["2024-07-24T04:56:48.010000"],["2024-07-24T04:56:49.010000"],["2024-07-24T04:56:50.010000"],["2024-07-24T04:56:51.010000"],["2024-07-24T04:56:52.010000"],["2024-07-24T04:56:53.010000"],["2024-07-24T04:56:54.010000"],["2024-07-24T04:56:55.010000"],["2024-07-24T04:56:56.010000"],["2024-07-24T04:56:57.010000"],["2024-07-24T04:56:58.010000"],["2024-07-24T04:56:59.010000"],["2024-07-24T04:57:00.010000"],["2024-07-24T04:57:01.010000"],["2024-07-24T04:57:02.010000"],["2024-07-24T04:57:03.010000"],["2024-07-24T04:57:04.010000"],["2024-07-24T04:57:05.010000"],["2024-07-24T04:57:06.010000"],["2024-07-24T04:57:07.010000"],["2024-07-24T04:57:08.010000"],["2024-07-24T04:57:09.010000"],["2024-07-24T04:57:10.010000"],["2024-07-24T04:57:11.010000"],["2024-07-24T04:57:12.010000"],["2024-07-24T04:57:13.010000"],["2024-07-24T04:57:14.010000"],["2024-07-24T04:57:15.010000"],["2024-07-24T04:57:16.010000"],["2024-07-24T04:57:17.010000"],["2024-07-24T04:57:18.010000"],["2024-07-24T04:57:19.010000"],["2024-07-24T04:57:20.010000"],["2024-07-24T04:57:21.010000"],["2024-07-24T04:57:22.010000"],["2024-07-24T04:57:23.010000"],["2024-07-24T04:57:24.010000"],["2024-07-24T04:57:25.010000"],["2024-07-24T04:57:26.010000"],["2024-07-24T04:57:27.010000"],["2024-07-24T04:57:28.010000"],["2024-07-24T04:57:29.010000"],["2024-07-24T04:57:30.010000"],["2024-07-24T04:57:31.010000"],["2024-07-24T04:57:32.010000"],["2024-07-24T04:57:33.010000"],["2024-07-24T04:57:34.010000"],["2024-07-24T04:57:35.010000"],["2024-07-24T04:57:36.010000"],["2024-07-24T04:57:37.010000"],["2024-07-24T04:57:38.010000"],["2024-07-24T04:57:39.010000"],["2024-07-24T04:57:40.010000"],["2024-07-24T04:57:41.010000"],["2024-07-24T04:57:42.010000"],["2024-07-24T04:57:43.010000"],["2024-07-24T04:57:44.010000"],["2024-07-24T04:57:45.010000"],["2024-07-24T04:57:46.010000"],["2024-07-24T04:57:47.010000"],["2024-07-24T04:57:48.010000"],["2024-07-24T04:57:49.010000"],["2024-07-24T04:57:50.010000"],["2024-07-24T04:57:51.010000"],["2024-07-24T04:57:52.010000"],["2024-07-24T04:57:53.010000"],["2024-07-24T04:57:54.010000"],["2024-07-24T04:57:55.010000"],["2024-07-24T04:57:56.010000"],["2024-07-24T04:57:57.010000"],["2024-07-24T04:57:58.010000"],["2024-07-24T04:57:59.010000"],["2024-07-24T04:58:00.010000"],["2024-07-24T04:58:01.010000"],["2024-07-24T04:58:02.010000"],["2024-07-24T04:58:03.010000"],["2024-07-24T04:58:04.010000"],["2024-07-24T04:58:05.010000"],["2024-07-24T04:58:06.010000"],["2024-07-24T04:58:07.010000"],["2024-07-24T04:58:08.010000"],["2024-07-24T04:58:09.010000"],["2024-07-24T04:58:10.010000"],["2024-07-24T04:58:11.010000"],["2024-07-24T04:58:12.010000"],["2024-07-24T04:58:13.010000"],["2024-07-24T04:58:14.010000"],["2024-07-24T04:58:15.010000"],["2024-07-24T04:58:16.010000"],["2024-07-24T04:58:17.010000"],["2024-07-24T04:58:18.010000"],["2024-07-24T04:58:19.010000"],["2024-07-24T04:58:20.010000"],["2024-07-24T04:58:21.010000"],["2024-07-24T04:58:22.010000"],["2024-07-24T04:58:23.010000"],["2024-07-24T04:58:24.010000"],["2024-07-24T04:58:25.010000"],["2024-07-24T04:58:26.010000"],["2024-07-24T04:58:27.010000"],["2024-07-24T04:58:28.010000"],["2024-07-24T04:58:29.010000"],["2024-07-24T04:58:30.010000"],["2024-07-24T04:58:31.010000"],["2024-07-24T04:58:32.010000"],["2024-07-24T04:58:33.010000"],["2024-07-24T04:58:34.010000"],["2024-07-24T04:58:35.010000"],["2024-07-24T04:58:36.010000"],["2024-07-24T04:58:37.010000"],["2024-07-24T04:58:38.010000"],["2024-07-24T04:58:39.010000"],["2024-07-24T04:58:40.010000"],["2024-07-24T04:58:41.010000"],["2024-07-24T04:58:42.010000"],["2024-07-24T04:58:43.010000"],["2024-07-24T04:58:44.010000"],["2024-07-24T04:58:45.010000"],["2024-07-24T04:58:46.010000"],["2024-07-24T04:58:47.010000"],["2024-07-24T04:58:48.010000"],["2024-07-24T04:58:49.010000"],["2024-07-24T04:58:50.010000"],["2024-07-24T04:58:51.010000"],["2024-07-24T04:58:52.010000"],["2024-07-24T04:58:53.010000"],["2024-07-24T04:58:54.010000"],["2024-07-24T04:58:55.010000"],["2024-07-24T04:58:56.010000"],["2024-07-24T04:58:57.010000"],["2024-07-24T04:58:58.010000"],["2024-07-24T04:58:59.010000"],["2024-07-24T04:59:00.010000"],["2024-07-24T04:59:01.010000"],["2024-07-24T04:59:02.010000"],["2024-07-24T04:59:03.010000"],["2024-07-24T04:59:04.010000"],["2024-07-24T04:59:05.010000"],["2024-07-24T04:59:06.010000"],["2024-07-24T04:59:07.010000"],["2024-07-24T04:59:08.010000"],["2024-07-24T04:59:09.010000"],["2024-07-24T04:59:10.010000"],["2024-07-24T04:59:11.010000"],["2024-07-24T04:59:12.010000"],["2024-07-24T04:59:13.010000"],["2024-07-24T04:59:14.010000"],["2024-07-24T04:59:15.010000"],["2024-07-24T04:59:16.010000"],["2024-07-24T04:59:17.010000"],["2024-07-24T04:59:18.010000"],["2024-07-24T04:59:19.010000"],["2024-07-24T04:59:20.010000"],["2024-07-24T04:59:21.010000"],["2024-07-24T04:59:22.010000"],["2024-07-24T04:59:23.010000"],["2024-07-24T04:59:24.010000"],["2024-07-24T04:59:25.010000"],["2024-07-24T04:59:26.010000"],["2024-07-24T04:59:27.010000"],["2024-07-24T04:59:28.010000"],["2024-07-24T04:59:29.010000"],["2024-07-24T04:59:30.010000"],["2024-07-24T04:59:31.010000"],["2024-07-24T04:59:32.010000"],["2024-07-24T04:59:33.010000"],["2024-07-24T04:59:34.010000"],["2024-07-24T04:59:35.010000"],["2024-07-24T04:59:36.010000"],["2024-07-24T04:59:37.010000"],["2024-07-24T04:59:38.010000"],["2024-07-24T04:59:39.010000"],["2024-07-24T04:59:40.010000"],["2024-07-24T04:59:41.010000"],["2024-07-24T04:59:42.010000"],["2024-07-24T04:59:43.010000"],["2024-07-24T04:59:44.010000"],["2024-07-24T04:59:45.010000"],["2024-07-24T04:59:46.010000"],["2024-07-24T04:59:47.010000"],["2024-07-24T04:59:48.010000"],["2024-07-24T04:59:49.010000"],["2024-07-24T04:59:50.010000"],["2024-07-24T04:59:51.010000"],["2024-07-24T04:59:52.010000"],["2024-07-24T04:59:53.010000"],["2024-07-24T04:59:54.010000"],["2024-07-24T04:59:55.010000"],["2024-07-24T04:59:56.010000"],["2024-07-24T04:59:57.010000"],["2024-07-24T04:59:58.010000"],["2024-07-24T04:59:59.010000"],["2024-07-24T05:00:00.010000"],["2024-07-24T05:00:01.010000"],["2024-07-24T05:00:02.010000"],["2024-07-24T05:00:03.010000"],["2024-07-24T05:00:04.010000"],["2024-07-24T05:00:05.010000"],["2024-07-24T05:00:06.010000"],["2024-07-24T05:00:07.010000"],["2024-07-24T05:00:08.010000"],["2024-07-24T05:00:09.010000"],["2024-07-24T05:00:10.010000"],["2024-07-24T05:00:11.010000"],["2024-07-24T05:00:12.010000"],["2024-07-24T05:00:13.010000"],["2024-07-24T05:00:14.010000"],["2024-07-24T05:00:15.010000"],["2024-07-24T05:00:16.010000"],["2024-07-24T05:00:17.010000"],["2024-07-24T05:00:18.010000"],["2024-07-24T05:00:19.010000"],["2024-07-24T05:00:20.010000"],["2024-07-24T05:00:21.010000"],["2024-07-24T05:00:22.010000"],["2024-07-24T05:00:23.010000"],["2024-07-24T05:00:24.010000"],["2024-07-24T05:00:25.010000"],["2024-07-24T05:00:26.010000"],["2024-07-24T05:00:27.010000"],["2024-07-24T05:00:28.010000"],["2024-07-24T05:00:29.010000"],["2024-07-24T05:00:30.010000"],["2024-07-24T05:00:31.010000"],["2024-07-24T05:00:32.010000"],["2024-07-24T05:00:33.010000"],["2024-07-24T05:00:34.010000"],["2024-07-24T05:00:35.010000"],["2024-07-24T05:00:36.010000"],["2024-07-24T05:00:37.010000"],["2024-07-24T05:00:38.010000"],["2024-07-24T05:00:39.010000"],["2024-07-24T05:00:40.010000"],["2024-07-24T05:00:41.010000"],["2024-07-24T05:00:42.010000"],["2024-07-24T05:00:43.010000"],["2024-07-24T05:00:44.010000"],["2024-07-24T05:00:45.010000"],["2024-07-24T05:00:46.010000"],["2024-07-24T05:00:47.010000"],["2024-07-24T05:00:48.010000"],["2024-07-24T05:00:49.010000"],["2024-07-24T05:00:50.010000"],["2024-07-24T05:00:51.010000"],["2024-07-24T05:00:52.010000"],["2024-07-24T05:00:53.010000"],["2024-07-24T05:00:54.010000"],["2024-07-24T05:00:55.010000"],["2024-07-24T05:00:56.010000"],["2024-07-24T05:00:57.010000"],["2024-07-24T05:00:58.010000"],["2024-07-24T05:00:59.010000"],["2024-07-24T05:01:00.010000"],["2024-07-24T05:01:01.010000"],["2024-07-24T05:01:02.010000"],["2024-07-24T05:01:03.010000"],["2024-07-24T05:01:04.010000"],["2024-07-24T05:01:05.010000"],["2024-07-24T05:01:06.010000"],["2024-07-24T05:01:07.010000"],["2024-07-24T05:01:08.010000"],["2024-07-24T05:01:09.010000"],["2024-07-24T05:01:10.010000"],["2024-07-24T05:01:11.010000"],["2024-07-24T05:01:12.010000"],["2024-07-24T05:01:13.010000"],["2024-07-24T05:01:14.010000"],["2024-07-24T05:01:15.010000"],["2024-07-24T05:01:16.010000"],["2024-07-24T05:01:17.010000"],["2024-07-24T05:01:18.010000"],["2024-07-24T05:01:19.010000"],["2024-07-24T05:01:20.010000"],["2024-07-24T05:01:21.010000"],["2024-07-24T05:01:22.010000"],["2024-07-24T05:01:23.010000"],["2024-07-24T05:01:24.010000"],["2024-07-24T05:01:25.010000"],["2024-07-24T05:01:26.010000"],["2024-07-24T05:01:27.010000"],["2024-07-24T05:01:28.010000"],["2024-07-24T05:01:29.010000"],["2024-07-24T05:01:30.010000"],["2024-07-24T05:01:31.010000"],["2024-07-24T05:01:32.010000"],["2024-07-24T05:01:33.010000"],["2024-07-24T05:01:34.010000"],["2024-07-24T05:01:35.010000"],["2024-07-24T05:01:36.010000"],["2024-07-24T05:01:37.010000"],["2024-07-24T05:01:38.010000"],["2024-07-24T05:01:39.010000"],["2024-07-24T05:01:40.010000"],["2024-07-24T05:01:41.010000"],["2024-07-24T05:01:42.010000"],["2024-07-24T05:01:43.010000"],["2024-07-24T05:01:44.010000"],["2024-07-24T05:01:45.010000"],["2024-07-24T05:01:46.010000"],["2024-07-24T05:01:47.010000"],["2024-07-24T05:01:48.010000"],["2024-07-24T05:01:49.010000"],["2024-07-24T05:01:50.010000"],["2024-07-24T05:01:51.010000"],["2024-07-24T05:01:52.010000"],["2024-07-24T05:01:53.010000"],["2024-07-24T05:01:54.010000"],["2024-07-24T05:01:55.010000"],["2024-07-24T05:01:56.010000"],["2024-07-24T05:01:57.010000"],["2024-07-24T05:01:58.010000"],["2024-07-24T05:01:59.010000"],["2024-07-24T05:02:00.010000"],["2024-07-24T05:02:01.010000"],["2024-07-24T05:02:02.010000"],["2024-07-24T05:02:03.010000"],["2024-07-24T05:02:04.010000"],["2024-07-24T05:02:05.010000"],["2024-07-24T05:02:06.010000"],["2024-07-24T05:02:07.010000"],["2024-07-24T05:02:08.010000"],["2024-07-24T05:02:09.010000"],["2024-07-24T05:02:10.010000"],["2024-07-24T05:02:11.010000"],["2024-07-24T05:02:12.010000"],["2024-07-24T05:02:13.010000"],["2024-07-24T05:02:14.010000"],["2024-07-24T05:02:15.010000"],["2024-07-24T05:02:16.010000"],["2024-07-24T05:02:17.010000"],["2024-07-24T05:02:18.010000"],["2024-07-24T05:02:19.010000"],["2024-07-24T05:02:20.010000"],["2024-07-24T05:02:21.010000"],["2024-07-24T05:02:22.010000"],["2024-07-24T05:02:23.010000"],["2024-07-24T05:02:24.010000"],["2024-07-24T05:02:25.010000"],["2024-07-24T05:02:26.010000"],["2024-07-24T05:02:27.010000"],["2024-07-24T05:02:28.010000"],["2024-07-24T05:02:29.010000"],["2024-07-24T05:02:30.010000"],["2024-07-24T05:02:31.010000"],["2024-07-24T05:02:32.010000"],["2024-07-24T05:02:33.010000"],["2024-07-24T05:02:34.010000"],["2024-07-24T05:02:35.010000"],["2024-07-24T05:02:36.010000"],["2024-07-24T05:02:37.010000"],["2024-07-24T05:02:38.010000"],["2024-07-24T05:02:39.010000"],["2024-07-24T05:02:40.010000"],["2024-07-24T05:02:41.010000"],["2024-07-24T05:02:42.010000"],["2024-07-24T05:02:43.010000"],["2024-07-24T05:02:44.010000"],["2024-07-24T05:02:45.010000"],["2024-07-24T05:02:46.010000"],["2024-07-24T05:02:47.010000"],["2024-07-24T05:02:48.010000"],["2024-07-24T05:02:49.010000"],["2024-07-24T05:02:50.010000"],["2024-07-24T05:02:51.010000"],["2024-07-24T05:02:52.010000"],["2024-07-24T05:02:53.010000"],["2024-07-24T05:02:54.010000"],["2024-07-24T05:02:55.010000"],["2024-07-24T05:02:56.010000"],["2024-07-24T05:02:57.010000"],["2024-07-24T05:02:58.010000"],["2024-07-24T05:02:59.010000"],["2024-07-24T05:03:00.010000"],["2024-07-24T05:03:01.010000"],["2024-07-24T05:03:02.010000"],["2024-07-24T05:03:03.010000"],["2024-07-24T05:03:04.010000"],["2024-07-24T05:03:05.010000"],["2024-07-24T05:03:06.010000"],["2024-07-24T05:03:07.010000"],["2024-07-24T05:03:08.010000"],["2024-07-24T05:03:09.010000"],["2024-07-24T05:03:10.010000"],["2024-07-24T05:03:11.010000"],["2024-07-24T05:03:12.010000"],["2024-07-24T05:03:13.010000"],["2024-07-24T05:03:14.010000"],["2024-07-24T05:03:15.010000"],["2024-07-24T05:03:16.010000"],["2024-07-24T05:03:17.010000"],["2024-07-24T05:03:18.010000"],["2024-07-24T05:03:19.010000"],["2024-07-24T05:03:20.010000"],["2024-07-24T05:03:21.010000"],["2024-07-24T05:03:22.010000"],["2024-07-24T05:03:23.010000"],["2024-07-24T05:03:24.010000"],["2024-07-24T05:03:25.010000"],["2024-07-24T05:03:26.010000"],["2024-07-24T05:03:27.010000"],["2024-07-24T05:03:28.010000"],["2024-07-24T05:03:29.010000"],["2024-07-24T05:03:30.010000"],["2024-07-24T05:03:31.010000"],["2024-07-24T05:03:32.010000"],["2024-07-24T05:03:33.010000"],["2024-07-24T05:03:34.010000"],["2024-07-24T05:03:35.010000"],["2024-07-24T05:03:36.010000"],["2024-07-24T05:03:37.010000"],["2024-07-24T05:03:38.010000"],["2024-07-24T05:03:39.010000"],["2024-07-24T05:03:40.010000"],["2024-07-24T05:03:41.010000"],["2024-07-24T05:03:42.010000"],["2024-07-24T05:03:43.010000"],["2024-07-24T05:03:44.010000"],["2024-07-24T05:03:45.010000"],["2024-07-24T05:03:46.010000"],["2024-07-24T05:03:47.010000"],["2024-07-24T05:03:48.010000"],["2024-07-24T05:03:49.010000"],["2024-07-24T05:03:50.010000"],["2024-07-24T05:03:51.010000"],["2024-07-24T05:03:52.010000"],["2024-07-24T05:03:53.010000"],["2024-07-24T05:03:54.010000"],["2024-07-24T05:03:55.010000"],["2024-07-24T05:03:56.010000"],["2024-07-24T05:03:57.010000"],["2024-07-24T05:03:58.010000"],["2024-07-24T05:03:59.010000"],["2024-07-24T05:04:00.010000"],["2024-07-24T05:04:01.010000"],["2024-07-24T05:04:02.010000"],["2024-07-24T05:04:03.010000"],["2024-07-24T05:04:04.010000"],["2024-07-24T05:04:05.010000"],["2024-07-24T05:04:06.010000"],["2024-07-24T05:04:07.010000"],["2024-07-24T05:04:08.010000"],["2024-07-24T05:04:09.010000"],["2024-07-24T05:04:10.010000"],["2024-07-24T05:04:11.010000"],["2024-07-24T05:04:12.010000"],["2024-07-24T05:04:13.010000"],["2024-07-24T05:04:14.010000"],["2024-07-24T05:04:15.010000"],["2024-07-24T05:04:16.010000"],["2024-07-24T05:04:17.010000"],["2024-07-24T05:04:18.010000"],["2024-07-24T05:04:19.010000"],["2024-07-24T05:04:20.010000"],["2024-07-24T05:04:21.010000"],["2024-07-24T05:04:22.010000"],["2024-07-24T05:04:23.010000"],["2024-07-24T05:04:24.010000"],["2024-07-24T05:04:25.010000"],["2024-07-24T05:04:26.010000"],["2024-07-24T05:04:27.010000"],["2024-07-24T05:04:28.010000"],["2024-07-24T05:04:29.010000"],["2024-07-24T05:04:30.010000"],["2024-07-24T05:04:31.010000"],["2024-07-24T05:04:32.010000"],["2024-07-24T05:04:33.010000"],["2024-07-24T05:04:34.010000"],["2024-07-24T05:04:35.010000"],["2024-07-24T05:04:36.010000"],["2024-07-24T05:04:37.010000"],["2024-07-24T05:04:38.010000"],["2024-07-24T05:04:39.010000"],["2024-07-24T05:04:40.010000"],["2024-07-24T05:04:41.010000"],["2024-07-24T05:04:42.010000"],["2024-07-24T05:04:43.010000"],["2024-07-24T05:04:44.010000"],["2024-07-24T05:04:45.010000"],["2024-07-24T05:04:46.010000"],["2024-07-24T05:04:47.010000"],["2024-07-24T05:04:48.010000"],["2024-07-24T05:04:49.010000"],["2024-07-24T05:04:50.010000"],["2024-07-24T05:04:51.010000"],["2024-07-24T05:04:52.010000"],["2024-07-24T05:04:53.010000"],["2024-07-24T05:04:54.010000"],["2024-07-24T05:04:55.010000"],["2024-07-24T05:04:56.010000"],["2024-07-24T05:04:57.010000"],["2024-07-24T05:04:58.010000"],["2024-07-24T05:04:59.010000"],["2024-07-24T05:05:00.010000"],["2024-07-24T05:05:01.010000"],["2024-07-24T05:05:02.010000"],["2024-07-24T05:05:03.010000"],["2024-07-24T05:05:04.010000"],["2024-07-24T05:05:05.010000"],["2024-07-24T05:05:06.010000"],["2024-07-24T05:05:07.010000"],["2024-07-24T05:05:08.010000"],["2024-07-24T05:05:09.010000"],["2024-07-24T05:05:10.010000"],["2024-07-24T05:05:11.010000"],["2024-07-24T05:05:12.010000"],["2024-07-24T05:05:13.010000"],["2024-07-24T05:05:14.010000"],["2024-07-24T05:05:15.010000"],["2024-07-24T05:05:16.010000"],["2024-07-24T05:05:17.010000"],["2024-07-24T05:05:18.010000"],["2024-07-24T05:05:19.010000"],["2024-07-24T05:05:20.010000"],["2024-07-24T05:05:21.010000"],["2024-07-24T05:05:22.010000"],["2024-07-24T05:05:23.010000"],["2024-07-24T05:05:24.010000"],["2024-07-24T05:05:25.010000"],["2024-07-24T05:05:26.010000"],["2024-07-24T05:05:27.010000"],["2024-07-24T05:05:28.010000"],["2024-07-24T05:05:29.010000"],["2024-07-24T05:05:30.010000"],["2024-07-24T05:05:31.010000"],["2024-07-24T05:05:32.010000"],["2024-07-24T05:05:33.010000"],["2024-07-24T05:05:34.010000"],["2024-07-24T05:05:35.010000"],["2024-07-24T05:05:36.010000"],["2024-07-24T05:05:37.010000"],["2024-07-24T05:05:38.010000"],["2024-07-24T05:05:39.010000"],["2024-07-24T05:05:40.010000"],["2024-07-24T05:05:41.010000"],["2024-07-24T05:05:42.010000"],["2024-07-24T05:05:43.010000"],["2024-07-24T05:05:44.010000"],["2024-07-24T05:05:45.010000"],["2024-07-24T05:05:46.010000"],["2024-07-24T05:05:47.010000"],["2024-07-24T05:05:48.010000"],["2024-07-24T05:05:49.010000"],["2024-07-24T05:05:50.010000"],["2024-07-24T05:05:51.010000"],["2024-07-24T05:05:52.010000"],["2024-07-24T05:05:53.010000"],["2024-07-24T05:05:54.010000"],["2024-07-24T05:05:55.010000"],["2024-07-24T05:05:56.010000"],["2024-07-24T05:05:57.010000"],["2024-07-24T05:05:58.010000"],["2024-07-24T05:05:59.010000"],["2024-07-24T05:06:00.010000"],["2024-07-24T05:06:01.010000"],["2024-07-24T05:06:02.010000"],["2024-07-24T05:06:03.010000"],["2024-07-24T05:06:04.010000"],["2024-07-24T05:06:05.010000"],["2024-07-24T05:06:06.010000"],["2024-07-24T05:06:07.010000"],["2024-07-24T05:06:08.010000"],["2024-07-24T05:06:09.010000"],["2024-07-24T05:06:10.010000"],["2024-07-24T05:06:11.010000"],["2024-07-24T05:06:12.010000"],["2024-07-24T05:06:13.010000"],["2024-07-24T05:06:14.010000"],["2024-07-24T05:06:15.010000"],["2024-07-24T05:06:16.010000"],["2024-07-24T05:06:17.010000"],["2024-07-24T05:06:18.010000"],["2024-07-24T05:06:19.010000"],["2024-07-24T05:06:20.010000"],["2024-07-24T05:06:21.010000"],["2024-07-24T05:06:22.010000"],["2024-07-24T05:06:23.010000"],["2024-07-24T05:06:24.010000"],["2024-07-24T05:06:25.010000"],["2024-07-24T05:06:26.010000"],["2024-07-24T05:06:27.010000"],["2024-07-24T05:06:28.010000"],["2024-07-24T05:06:29.010000"],["2024-07-24T05:06:30.010000"],["2024-07-24T05:06:31.010000"],["2024-07-24T05:06:32.010000"],["2024-07-24T05:06:33.010000"],["2024-07-24T05:06:34.010000"],["2024-07-24T05:06:35.010000"],["2024-07-24T05:06:36.010000"],["2024-07-24T05:06:37.010000"],["2024-07-24T05:06:38.010000"],["2024-07-24T05:06:39.010000"],["2024-07-24T05:06:40.010000"],["2024-07-24T05:06:41.010000"],["2024-07-24T05:06:42.010000"],["2024-07-24T05:06:43.010000"],["2024-07-24T05:06:44.010000"],["2024-07-24T05:06:45.010000"],["2024-07-24T05:06:46.010000"],["2024-07-24T05:06:47.010000"],["2024-07-24T05:06:48.010000"],["2024-07-24T05:06:49.010000"],["2024-07-24T05:06:50.010000"],["2024-07-24T05:06:51.010000"],["2024-07-24T05:06:52.010000"],["2024-07-24T05:06:53.010000"],["2024-07-24T05:06:54.010000"],["2024-07-24T05:06:55.010000"],["2024-07-24T05:06:56.010000"],["2024-07-24T05:06:57.010000"],["2024-07-24T05:06:58.010000"],["2024-07-24T05:06:59.010000"],["2024-07-24T05:07:00.010000"],["2024-07-24T05:07:01.010000"],["2024-07-24T05:07:02.010000"],["2024-07-24T05:07:03.010000"],["2024-07-24T05:07:04.010000"],["2024-07-24T05:07:05.010000"],["2024-07-24T05:07:06.010000"],["2024-07-24T05:07:07.010000"],["2024-07-24T05:07:08.010000"],["2024-07-24T05:07:09.010000"],["2024-07-24T05:07:10.010000"],["2024-07-24T05:07:11.010000"],["2024-07-24T05:07:12.010000"],["2024-07-24T05:07:13.010000"],["2024-07-24T05:07:14.010000"],["2024-07-24T05:07:15.010000"],["2024-07-24T05:07:16.010000"],["2024-07-24T05:07:17.010000"],["2024-07-24T05:07:18.010000"],["2024-07-24T05:07:19.010000"],["2024-07-24T05:07:20.010000"],["2024-07-24T05:07:21.010000"],["2024-07-24T05:07:22.010000"],["2024-07-24T05:07:23.010000"],["2024-07-24T05:07:24.010000"],["2024-07-24T05:07:25.010000"],["2024-07-24T05:07:26.010000"],["2024-07-24T05:07:27.010000"],["2024-07-24T05:07:28.010000"],["2024-07-24T05:07:29.010000"],["2024-07-24T05:07:30.010000"],["2024-07-24T05:07:31.010000"],["2024-07-24T05:07:32.010000"],["2024-07-24T05:07:33.010000"],["2024-07-24T05:07:34.010000"],["2024-07-24T05:07:35.010000"],["2024-07-24T05:07:36.010000"],["2024-07-24T05:07:37.010000"],["2024-07-24T05:07:38.010000"],["2024-07-24T05:07:39.010000"],["2024-07-24T05:07:40.010000"],["2024-07-24T05:07:41.010000"],["2024-07-24T05:07:42.010000"],["2024-07-24T05:07:43.010000"],["2024-07-24T05:07:44.010000"],["2024-07-24T05:07:45.010000"],["2024-07-24T05:07:46.010000"],["2024-07-24T05:07:47.010000"],["2024-07-24T05:07:48.010000"],["2024-07-24T05:07:49.010000"],["2024-07-24T05:07:50.010000"],["2024-07-24T05:07:51.010000"],["2024-07-24T05:07:52.010000"],["2024-07-24T05:07:53.010000"],["2024-07-24T05:07:54.010000"],["2024-07-24T05:07:55.010000"],["2024-07-24T05:07:56.010000"],["2024-07-24T05:07:57.010000"],["2024-07-24T05:07:58.010000"],["2024-07-24T05:07:59.010000"],["2024-07-24T05:08:00.010000"],["2024-07-24T05:08:01.010000"],["2024-07-24T05:08:02.010000"],["2024-07-24T05:08:03.010000"],["2024-07-24T05:08:04.010000"],["2024-07-24T05:08:05.010000"],["2024-07-24T05:08:06.010000"],["2024-07-24T05:08:07.010000"],["2024-07-24T05:08:08.010000"],["2024-07-24T05:08:09.010000"],["2024-07-24T05:08:10.010000"],["2024-07-24T05:08:11.010000"],["2024-07-24T05:08:12.010000"],["2024-07-24T05:08:13.010000"],["2024-07-24T05:08:14.010000"],["2024-07-24T05:08:15.010000"],["2024-07-24T05:08:16.010000"],["2024-07-24T05:08:17.010000"],["2024-07-24T05:08:18.010000"],["2024-07-24T05:08:19.010000"],["2024-07-24T05:08:20.010000"],["2024-07-24T05:08:21.010000"],["2024-07-24T05:08:22.010000"],["2024-07-24T05:08:23.010000"],["2024-07-24T05:08:24.010000"],["2024-07-24T05:08:25.010000"],["2024-07-24T05:08:26.010000"],["2024-07-24T05:08:27.010000"],["2024-07-24T05:08:28.010000"],["2024-07-24T05:08:29.010000"],["2024-07-24T05:08:30.010000"],["2024-07-24T05:08:31.010000"],["2024-07-24T05:08:32.010000"],["2024-07-24T05:08:33.010000"],["2024-07-24T05:08:34.010000"],["2024-07-24T05:08:35.010000"],["2024-07-24T05:08:36.010000"],["2024-07-24T05:08:37.010000"],["2024-07-24T05:08:38.010000"],["2024-07-24T05:08:39.010000"],["2024-07-24T05:08:40.010000"],["2024-07-24T05:08:41.010000"],["2024-07-24T05:08:42.010000"],["2024-07-24T05:08:43.010000"],["2024-07-24T05:08:44.010000"],["2024-07-24T05:08:45.010000"],["2024-07-24T05:08:46.010000"],["2024-07-24T05:08:47.010000"],["2024-07-24T05:08:48.010000"],["2024-07-24T05:08:49.010000"],["2024-07-24T05:08:50.010000"],["2024-07-24T05:08:51.010000"],["2024-07-24T05:08:52.010000"],["2024-07-24T05:08:53.010000"],["2024-07-24T05:08:54.010000"],["2024-07-24T05:08:55.010000"],["2024-07-24T05:08:56.010000"],["2024-07-24T05:08:57.010000"],["2024-07-24T05:08:58.010000"],["2024-07-24T05:08:59.010000"],["2024-07-24T05:09:00.010000"],["2024-07-24T05:09:01.010000"],["2024-07-24T05:09:02.010000"],["2024-07-24T05:09:03.010000"],["2024-07-24T05:09:04.010000"],["2024-07-24T05:09:05.010000"],["2024-07-24T05:09:06.010000"],["2024-07-24T05:09:07.010000"],["2024-07-24T05:09:08.010000"],["2024-07-24T05:09:09.010000"],["2024-07-24T05:09:10.010000"],["2024-07-24T05:09:11.010000"],["2024-07-24T05:09:12.010000"],["2024-07-24T05:09:13.010000"],["2024-07-24T05:09:14.010000"],["2024-07-24T05:09:15.010000"],["2024-07-24T05:09:16.010000"],["2024-07-24T05:09:17.010000"],["2024-07-24T05:09:18.010000"],["2024-07-24T05:09:19.010000"],["2024-07-24T05:09:20.010000"],["2024-07-24T05:09:21.010000"],["2024-07-24T05:09:22.010000"],["2024-07-24T05:09:23.010000"],["2024-07-24T05:09:24.010000"],["2024-07-24T05:09:25.010000"],["2024-07-24T05:09:26.010000"],["2024-07-24T05:09:27.010000"],["2024-07-24T05:09:28.010000"],["2024-07-24T05:09:29.010000"],["2024-07-24T05:09:30.010000"],["2024-07-24T05:09:31.010000"],["2024-07-24T05:09:32.010000"],["2024-07-24T05:09:33.010000"],["2024-07-24T05:09:34.010000"],["2024-07-24T05:09:35.010000"],["2024-07-24T05:09:36.010000"],["2024-07-24T05:09:37.010000"],["2024-07-24T05:09:38.010000"],["2024-07-24T05:09:39.010000"],["2024-07-24T05:09:40.010000"],["2024-07-24T05:09:41.010000"],["2024-07-24T05:09:42.010000"],["2024-07-24T05:09:43.010000"],["2024-07-24T05:09:44.010000"],["2024-07-24T05:09:45.010000"],["2024-07-24T05:09:46.010000"],["2024-07-24T05:09:47.010000"],["2024-07-24T05:09:48.010000"],["2024-07-24T05:09:49.010000"],["2024-07-24T05:09:50.010000"],["2024-07-24T05:09:51.010000"],["2024-07-24T05:09:52.010000"],["2024-07-24T05:09:53.010000"],["2024-07-24T05:09:54.010000"],["2024-07-24T05:09:55.010000"],["2024-07-24T05:09:56.010000"],["2024-07-24T05:09:57.010000"],["2024-07-24T05:09:58.010000"],["2024-07-24T05:09:59.010000"],["2024-07-24T05:10:00.010000"],["2024-07-24T05:10:01.010000"],["2024-07-24T05:10:02.010000"],["2024-07-24T05:10:03.010000"],["2024-07-24T05:10:04.010000"],["2024-07-24T05:10:05.010000"],["2024-07-24T05:10:06.010000"],["2024-07-24T05:10:07.010000"],["2024-07-24T05:10:08.010000"],["2024-07-24T05:10:09.010000"],["2024-07-24T05:10:10.010000"],["2024-07-24T05:10:11.010000"],["2024-07-24T05:10:12.010000"],["2024-07-24T05:10:13.010000"],["2024-07-24T05:10:14.010000"],["2024-07-24T05:10:15.010000"],["2024-07-24T05:10:16.010000"],["2024-07-24T05:10:17.010000"],["2024-07-24T05:10:18.010000"],["2024-07-24T05:10:19.010000"],["2024-07-24T05:10:20.010000"],["2024-07-24T05:10:21.010000"],["2024-07-24T05:10:22.010000"],["2024-07-24T05:10:23.010000"],["2024-07-24T05:10:24.010000"],["2024-07-24T05:10:25.010000"],["2024-07-24T05:10:26.010000"],["2024-07-24T05:10:27.010000"],["2024-07-24T05:10:28.010000"],["2024-07-24T05:10:29.010000"],["2024-07-24T05:10:30.010000"],["2024-07-24T05:10:31.010000"],["2024-07-24T05:10:32.010000"],["2024-07-24T05:10:33.010000"],["2024-07-24T05:10:34.010000"],["2024-07-24T05:10:35.010000"],["2024-07-24T05:10:36.010000"],["2024-07-24T05:10:37.010000"],["2024-07-24T05:10:38.010000"],["2024-07-24T05:10:39.010000"],["2024-07-24T05:10:40.010000"],["2024-07-24T05:10:41.010000"],["2024-07-24T05:10:42.010000"],["2024-07-24T05:10:43.010000"],["2024-07-24T05:10:44.010000"],["2024-07-24T05:10:45.010000"],["2024-07-24T05:10:46.010000"],["2024-07-24T05:10:47.010000"],["2024-07-24T05:10:48.010000"],["2024-07-24T05:10:49.010000"],["2024-07-24T05:10:50.010000"],["2024-07-24T05:10:51.010000"],["2024-07-24T05:10:52.010000"],["2024-07-24T05:10:53.010000"],["2024-07-24T05:10:54.010000"],["2024-07-24T05:10:55.010000"],["2024-07-24T05:10:56.010000"],["2024-07-24T05:10:57.010000"],["2024-07-24T05:10:58.010000"],["2024-07-24T05:10:59.010000"],["2024-07-24T05:11:00.010000"],["2024-07-24T05:11:01.010000"],["2024-07-24T05:11:02.010000"],["2024-07-24T05:11:03.010000"],["2024-07-24T05:11:04.010000"],["2024-07-24T05:11:05.010000"],["2024-07-24T05:11:06.010000"],["2024-07-24T05:11:07.010000"],["2024-07-24T05:11:08.010000"],["2024-07-24T05:11:09.010000"],["2024-07-24T05:11:10.010000"],["2024-07-24T05:11:11.010000"],["2024-07-24T05:11:12.010000"],["2024-07-24T05:11:13.010000"],["2024-07-24T05:11:14.010000"],["2024-07-24T05:11:15.010000"],["2024-07-24T05:11:16.010000"],["2024-07-24T05:11:17.010000"],["2024-07-24T05:11:18.010000"],["2024-07-24T05:11:19.010000"],["2024-07-24T05:11:20.010000"],["2024-07-24T05:11:21.010000"],["2024-07-24T05:11:22.010000"],["2024-07-24T05:11:23.010000"],["2024-07-24T05:11:24.010000"],["2024-07-24T05:11:25.010000"],["2024-07-24T05:11:26.010000"],["2024-07-24T05:11:27.010000"],["2024-07-24T05:11:28.010000"],["2024-07-24T05:11:29.010000"],["2024-07-24T05:11:30.010000"],["2024-07-24T05:11:31.010000"],["2024-07-24T05:11:32.010000"],["2024-07-24T05:11:33.010000"],["2024-07-24T05:11:34.010000"],["2024-07-24T05:11:35.010000"],["2024-07-24T05:11:36.010000"],["2024-07-24T05:11:37.010000"],["2024-07-24T05:11:38.010000"],["2024-07-24T05:11:39.010000"],["2024-07-24T05:11:40.010000"],["2024-07-24T05:11:41.010000"],["2024-07-24T05:11:42.010000"],["2024-07-24T05:11:43.010000"],["2024-07-24T05:11:44.010000"],["2024-07-24T05:11:45.010000"],["2024-07-24T05:11:46.010000"],["2024-07-24T05:11:47.010000"],["2024-07-24T05:11:48.010000"],["2024-07-24T05:11:49.010000"],["2024-07-24T05:11:50.010000"],["2024-07-24T05:11:51.010000"],["2024-07-24T05:11:52.010000"],["2024-07-24T05:11:53.010000"],["2024-07-24T05:11:54.010000"],["2024-07-24T05:11:55.010000"],["2024-07-24T05:11:56.010000"],["2024-07-24T05:11:57.010000"],["2024-07-24T05:11:58.010000"],["2024-07-24T05:11:59.010000"],["2024-07-24T05:12:00.010000"],["2024-07-24T05:12:01.010000"],["2024-07-24T05:12:02.010000"],["2024-07-24T05:12:03.010000"],["2024-07-24T05:12:04.010000"],["2024-07-24T05:12:05.010000"],["2024-07-24T05:12:06.010000"],["2024-07-24T05:12:07.010000"],["2024-07-24T05:12:08.010000"],["2024-07-24T05:12:09.010000"],["2024-07-24T05:12:10.010000"],["2024-07-24T05:12:11.010000"],["2024-07-24T05:12:12.010000"],["2024-07-24T05:12:13.010000"],["2024-07-24T05:12:14.010000"],["2024-07-24T05:12:15.010000"],["2024-07-24T05:12:16.010000"],["2024-07-24T05:12:17.010000"],["2024-07-24T05:12:18.010000"],["2024-07-24T05:12:19.010000"],["2024-07-24T05:12:20.010000"],["2024-07-24T05:12:21.010000"],["2024-07-24T05:12:22.010000"],["2024-07-24T05:12:23.010000"],["2024-07-24T05:12:24.010000"],["2024-07-24T05:12:25.010000"],["2024-07-24T05:12:26.010000"],["2024-07-24T05:12:27.010000"],["2024-07-24T05:12:28.010000"],["2024-07-24T05:12:29.010000"],["2024-07-24T05:12:30.010000"],["2024-07-24T05:12:31.010000"],["2024-07-24T05:12:32.010000"],["2024-07-24T05:12:33.010000"],["2024-07-24T05:12:34.010000"],["2024-07-24T05:12:35.010000"],["2024-07-24T05:12:36.010000"],["2024-07-24T05:12:37.010000"],["2024-07-24T05:12:38.010000"],["2024-07-24T05:12:39.010000"],["2024-07-24T05:12:40.010000"],["2024-07-24T05:12:41.010000"],["2024-07-24T05:12:42.010000"],["2024-07-24T05:12:43.010000"],["2024-07-24T05:12:44.010000"],["2024-07-24T05:12:45.010000"],["2024-07-24T05:12:46.010000"],["2024-07-24T05:12:47.010000"],["2024-07-24T05:12:48.010000"],["2024-07-24T05:12:49.010000"],["2024-07-24T05:12:50.010000"],["2024-07-24T05:12:51.010000"],["2024-07-24T05:12:52.010000"],["2024-07-24T05:12:53.010000"],["2024-07-24T05:12:54.010000"],["2024-07-24T05:12:55.010000"],["2024-07-24T05:12:56.010000"],["2024-07-24T05:12:57.010000"],["2024-07-24T05:12:58.010000"],["2024-07-24T05:12:59.010000"],["2024-07-24T05:13:00.010000"],["2024-07-24T05:13:01.010000"],["2024-07-24T05:13:02.010000"],["2024-07-24T05:13:03.010000"],["2024-07-24T05:13:04.010000"],["2024-07-24T05:13:05.010000"],["2024-07-24T05:13:06.010000"],["2024-07-24T05:13:07.010000"],["2024-07-24T05:13:08.010000"],["2024-07-24T05:13:09.010000"],["2024-07-24T05:13:10.010000"],["2024-07-24T05:13:11.010000"],["2024-07-24T05:13:12.010000"],["2024-07-24T05:13:13.010000"],["2024-07-24T05:13:14.010000"],["2024-07-24T05:13:15.010000"],["2024-07-24T05:13:16.010000"],["2024-07-24T05:13:17.010000"],["2024-07-24T05:13:18.010000"],["2024-07-24T05:13:19.010000"],["2024-07-24T05:13:20.010000"],["2024-07-24T05:13:21.010000"],["2024-07-24T05:13:22.010000"],["2024-07-24T05:13:23.010000"],["2024-07-24T05:13:24.010000"],["2024-07-24T05:13:25.010000"],["2024-07-24T05:13:26.010000"],["2024-07-24T05:13:27.010000"],["2024-07-24T05:13:28.010000"],["2024-07-24T05:13:29.010000"],["2024-07-24T05:13:30.010000"],["2024-07-24T05:13:31.010000"],["2024-07-24T05:13:32.010000"],["2024-07-24T05:13:33.010000"],["2024-07-24T05:13:34.010000"],["2024-07-24T05:13:35.010000"],["2024-07-24T05:13:36.010000"],["2024-07-24T05:13:37.010000"],["2024-07-24T05:13:38.010000"],["2024-07-24T05:13:39.010000"],["2024-07-24T05:13:40.010000"],["2024-07-24T05:13:41.010000"],["2024-07-24T05:13:42.010000"],["2024-07-24T05:13:43.010000"],["2024-07-24T05:13:44.010000"],["2024-07-24T05:13:45.010000"],["2024-07-24T05:13:46.010000"],["2024-07-24T05:13:47.010000"],["2024-07-24T05:13:48.010000"],["2024-07-24T05:13:49.010000"],["2024-07-24T05:13:50.010000"],["2024-07-24T05:13:51.010000"],["2024-07-24T05:13:52.010000"],["2024-07-24T05:13:53.010000"],["2024-07-24T05:13:54.010000"],["2024-07-24T05:13:55.010000"],["2024-07-24T05:13:56.010000"],["2024-07-24T05:13:57.010000"],["2024-07-24T05:13:58.010000"],["2024-07-24T05:13:59.010000"],["2024-07-24T05:14:00.010000"],["2024-07-24T05:14:01.010000"],["2024-07-24T05:14:02.010000"],["2024-07-24T05:14:03.010000"],["2024-07-24T05:14:04.010000"],["2024-07-24T05:14:05.010000"],["2024-07-24T05:14:06.010000"],["2024-07-24T05:14:07.010000"],["2024-07-24T05:14:08.010000"],["2024-07-24T05:14:09.010000"],["2024-07-24T05:14:10.010000"],["2024-07-24T05:14:11.010000"],["2024-07-24T05:14:12.010000"],["2024-07-24T05:14:13.010000"],["2024-07-24T05:14:14.010000"],["2024-07-24T05:14:15.010000"],["2024-07-24T05:14:16.010000"],["2024-07-24T05:14:17.010000"],["2024-07-24T05:14:18.010000"],["2024-07-24T05:14:19.010000"],["2024-07-24T05:14:20.010000"],["2024-07-24T05:14:21.010000"],["2024-07-24T05:14:22.010000"],["2024-07-24T05:14:23.010000"],["2024-07-24T05:14:24.010000"],["2024-07-24T05:14:25.010000"],["2024-07-24T05:14:26.010000"],["2024-07-24T05:14:27.010000"],["2024-07-24T05:14:28.010000"],["2024-07-24T05:14:29.010000"],["2024-07-24T05:14:30.010000"],["2024-07-24T05:14:31.010000"],["2024-07-24T05:14:32.010000"],["2024-07-24T05:14:33.010000"],["2024-07-24T05:14:34.010000"],["2024-07-24T05:14:35.010000"],["2024-07-24T05:14:36.010000"],["2024-07-24T05:14:37.010000"],["2024-07-24T05:14:38.010000"],["2024-07-24T05:14:39.010000"],["2024-07-24T05:14:40.010000"],["2024-07-24T05:14:41.010000"],["2024-07-24T05:14:42.010000"],["2024-07-24T05:14:43.010000"],["2024-07-24T05:14:44.010000"],["2024-07-24T05:14:45.010000"],["2024-07-24T05:14:46.010000"],["2024-07-24T05:14:47.010000"],["2024-07-24T05:14:48.010000"],["2024-07-24T05:14:49.010000"],["2024-07-24T05:14:50.010000"],["2024-07-24T05:14:51.010000"],["2024-07-24T05:14:52.010000"],["2024-07-24T05:14:53.010000"],["2024-07-24T05:14:54.010000"],["2024-07-24T05:14:55.010000"],["2024-07-24T05:14:56.010000"],["2024-07-24T05:14:57.010000"],["2024-07-24T05:14:58.010000"],["2024-07-24T05:14:59.010000"],["2024-07-24T05:15:00.010000"],["2024-07-24T05:15:01.010000"],["2024-07-24T05:15:02.010000"],["2024-07-24T05:15:03.010000"],["2024-07-24T05:15:04.010000"],["2024-07-24T05:15:05.010000"],["2024-07-24T05:15:06.010000"],["2024-07-24T05:15:07.010000"],["2024-07-24T05:15:08.010000"],["2024-07-24T05:15:09.010000"],["2024-07-24T05:15:10.010000"],["2024-07-24T05:15:11.010000"],["2024-07-24T05:15:12.010000"],["2024-07-24T05:15:13.010000"],["2024-07-24T05:15:14.010000"],["2024-07-24T05:15:15.010000"],["2024-07-24T05:15:16.010000"],["2024-07-24T05:15:17.010000"],["2024-07-24T05:15:18.010000"],["2024-07-24T05:15:19.010000"],["2024-07-24T05:15:20.010000"],["2024-07-24T05:15:21.010000"],["2024-07-24T05:15:22.010000"],["2024-07-24T05:15:23.010000"],["2024-07-24T05:15:24.010000"],["2024-07-24T05:15:25.010000"],["2024-07-24T05:15:26.010000"],["2024-07-24T05:15:27.010000"],["2024-07-24T05:15:28.010000"],["2024-07-24T05:15:29.010000"],["2024-07-24T05:15:30.010000"],["2024-07-24T05:15:31.010000"],["2024-07-24T05:15:32.010000"],["2024-07-24T05:15:33.010000"],["2024-07-24T05:15:34.010000"],["2024-07-24T05:15:35.010000"],["2024-07-24T05:15:36.010000"],["2024-07-24T05:15:37.010000"],["2024-07-24T05:15:38.010000"],["2024-07-24T05:15:39.010000"],["2024-07-24T05:15:40.010000"],["2024-07-24T05:15:41.010000"],["2024-07-24T05:15:42.010000"],["2024-07-24T05:15:43.010000"],["2024-07-24T05:15:44.010000"],["2024-07-24T05:15:45.010000"],["2024-07-24T05:15:46.010000"],["2024-07-24T05:15:47.010000"],["2024-07-24T05:15:48.010000"],["2024-07-24T05:15:49.010000"],["2024-07-24T05:15:50.010000"],["2024-07-24T05:15:51.010000"],["2024-07-24T05:15:52.010000"],["2024-07-24T05:15:53.010000"],["2024-07-24T05:15:54.010000"],["2024-07-24T05:15:55.010000"],["2024-07-24T05:15:56.010000"],["2024-07-24T05:15:57.010000"],["2024-07-24T05:15:58.010000"],["2024-07-24T05:15:59.010000"],["2024-07-24T05:16:00.010000"],["2024-07-24T05:16:01.010000"],["2024-07-24T05:16:02.010000"],["2024-07-24T05:16:03.010000"],["2024-07-24T05:16:04.010000"],["2024-07-24T05:16:05.010000"],["2024-07-24T05:16:06.010000"],["2024-07-24T05:16:07.010000"],["2024-07-24T05:16:08.010000"],["2024-07-24T05:16:09.010000"],["2024-07-24T05:16:10.010000"],["2024-07-24T05:16:11.010000"],["2024-07-24T05:16:12.010000"],["2024-07-24T05:16:13.010000"],["2024-07-24T05:16:14.010000"],["2024-07-24T05:16:15.010000"],["2024-07-24T05:16:16.010000"],["2024-07-24T05:16:17.010000"],["2024-07-24T05:16:18.010000"],["2024-07-24T05:16:19.010000"],["2024-07-24T05:16:20.010000"],["2024-07-24T05:16:21.010000"],["2024-07-24T05:16:22.010000"],["2024-07-24T05:16:23.010000"],["2024-07-24T05:16:24.010000"],["2024-07-24T05:16:25.010000"],["2024-07-24T05:16:26.010000"],["2024-07-24T05:16:27.010000"],["2024-07-24T05:16:28.010000"],["2024-07-24T05:16:29.010000"],["2024-07-24T05:16:30.010000"],["2024-07-24T05:16:31.010000"],["2024-07-24T05:16:32.010000"],["2024-07-24T05:16:33.010000"],["2024-07-24T05:16:34.010000"],["2024-07-24T05:16:35.010000"],["2024-07-24T05:16:36.010000"],["2024-07-24T05:16:37.010000"],["2024-07-24T05:16:38.010000"],["2024-07-24T05:16:39.010000"],["2024-07-24T05:16:40.010000"],["2024-07-24T05:16:41.010000"],["2024-07-24T05:16:42.010000"],["2024-07-24T05:16:43.010000"],["2024-07-24T05:16:44.010000"],["2024-07-24T05:16:45.010000"],["2024-07-24T05:16:46.010000"],["2024-07-24T05:16:47.010000"],["2024-07-24T05:16:48.010000"],["2024-07-24T05:16:49.010000"],["2024-07-24T05:16:50.010000"],["2024-07-24T05:16:51.010000"],["2024-07-24T05:16:52.010000"],["2024-07-24T05:16:53.010000"],["2024-07-24T05:16:54.010000"],["2024-07-24T05:16:55.010000"],["2024-07-24T05:16:56.010000"],["2024-07-24T05:16:57.010000"],["2024-07-24T05:16:58.010000"],["2024-07-24T05:16:59.010000"],["2024-07-24T05:17:00.010000"],["2024-07-24T05:17:01.010000"],["2024-07-24T05:17:02.010000"],["2024-07-24T05:17:03.010000"],["2024-07-24T05:17:04.010000"],["2024-07-24T05:17:05.010000"],["2024-07-24T05:17:06.010000"],["2024-07-24T05:17:07.010000"],["2024-07-24T05:17:08.010000"],["2024-07-24T05:17:09.010000"],["2024-07-24T05:17:10.010000"],["2024-07-24T05:17:11.010000"],["2024-07-24T05:17:12.010000"],["2024-07-24T05:17:13.010000"],["2024-07-24T05:17:14.010000"],["2024-07-24T05:17:15.010000"],["2024-07-24T05:17:16.010000"],["2024-07-24T05:17:17.010000"],["2024-07-24T05:17:18.010000"],["2024-07-24T05:17:19.010000"],["2024-07-24T05:17:20.010000"],["2024-07-24T05:17:21.010000"],["2024-07-24T05:17:22.010000"],["2024-07-24T05:17:23.010000"],["2024-07-24T05:17:24.010000"],["2024-07-24T05:17:25.010000"],["2024-07-24T05:17:26.010000"],["2024-07-24T05:17:27.010000"],["2024-07-24T05:17:28.010000"],["2024-07-24T05:17:29.010000"],["2024-07-24T05:17:30.010000"],["2024-07-24T05:17:31.010000"],["2024-07-24T05:17:32.010000"],["2024-07-24T05:17:33.010000"],["2024-07-24T05:17:34.010000"],["2024-07-24T05:17:35.010000"],["2024-07-24T05:17:36.010000"],["2024-07-24T05:17:37.010000"],["2024-07-24T05:17:38.010000"],["2024-07-24T05:17:39.010000"],["2024-07-24T05:17:40.010000"],["2024-07-24T05:17:41.010000"],["2024-07-24T05:17:42.010000"],["2024-07-24T05:17:43.010000"],["2024-07-24T05:17:44.010000"],["2024-07-24T05:17:45.010000"],["2024-07-24T05:17:46.010000"],["2024-07-24T05:17:47.010000"],["2024-07-24T05:17:48.010000"],["2024-07-24T05:17:49.010000"],["2024-07-24T05:17:50.010000"],["2024-07-24T05:17:51.010000"],["2024-07-24T05:17:52.010000"],["2024-07-24T05:17:53.010000"],["2024-07-24T05:17:54.010000"],["2024-07-24T05:17:55.010000"],["2024-07-24T05:17:56.010000"],["2024-07-24T05:17:57.010000"],["2024-07-24T05:17:58.010000"],["2024-07-24T05:17:59.010000"],["2024-07-24T05:18:00.010000"],["2024-07-24T05:18:01.010000"],["2024-07-24T05:18:02.010000"],["2024-07-24T05:18:03.010000"],["2024-07-24T05:18:04.010000"],["2024-07-24T05:18:05.010000"],["2024-07-24T05:18:06.010000"],["2024-07-24T05:18:07.010000"],["2024-07-24T05:18:08.010000"],["2024-07-24T05:18:09.010000"],["2024-07-24T05:18:10.010000"],["2024-07-24T05:18:11.010000"],["2024-07-24T05:18:12.010000"],["2024-07-24T05:18:13.010000"],["2024-07-24T05:18:14.010000"],["2024-07-24T05:18:15.010000"],["2024-07-24T05:18:16.010000"],["2024-07-24T05:18:17.010000"],["2024-07-24T05:18:18.010000"],["2024-07-24T05:18:19.010000"],["2024-07-24T05:18:20.010000"],["2024-07-24T05:18:21.010000"],["2024-07-24T05:18:22.010000"],["2024-07-24T05:18:23.010000"],["2024-07-24T05:18:24.010000"],["2024-07-24T05:18:25.010000"],["2024-07-24T05:18:26.010000"],["2024-07-24T05:18:27.010000"],["2024-07-24T05:18:28.010000"],["2024-07-24T05:18:29.010000"],["2024-07-24T05:18:30.010000"],["2024-07-24T05:18:31.010000"],["2024-07-24T05:18:32.010000"],["2024-07-24T05:18:33.010000"],["2024-07-24T05:18:34.010000"],["2024-07-24T05:18:35.010000"],["2024-07-24T05:18:36.010000"],["2024-07-24T05:18:37.010000"],["2024-07-24T05:18:38.010000"],["2024-07-24T05:18:39.010000"],["2024-07-24T05:18:40.010000"],["2024-07-24T05:18:41.010000"],["2024-07-24T05:18:42.010000"],["2024-07-24T05:18:43.010000"],["2024-07-24T05:18:44.010000"],["2024-07-24T05:18:45.010000"],["2024-07-24T05:18:46.010000"],["2024-07-24T05:18:47.010000"],["2024-07-24T05:18:48.010000"],["2024-07-24T05:18:49.010000"],["2024-07-24T05:18:50.010000"],["2024-07-24T05:18:51.010000"],["2024-07-24T05:18:52.010000"],["2024-07-24T05:18:53.010000"],["2024-07-24T05:18:54.010000"],["2024-07-24T05:18:55.010000"],["2024-07-24T05:18:56.010000"],["2024-07-24T05:18:57.010000"],["2024-07-24T05:18:58.010000"],["2024-07-24T05:18:59.010000"],["2024-07-24T05:19:00.010000"],["2024-07-24T05:19:01.010000"],["2024-07-24T05:19:02.010000"],["2024-07-24T05:19:03.010000"],["2024-07-24T05:19:04.010000"],["2024-07-24T05:19:05.010000"],["2024-07-24T05:19:06.010000"],["2024-07-24T05:19:07.010000"],["2024-07-24T05:19:08.010000"],["2024-07-24T05:19:09.010000"],["2024-07-24T05:19:10.010000"],["2024-07-24T05:19:11.010000"],["2024-07-24T05:19:12.010000"],["2024-07-24T05:19:13.010000"],["2024-07-24T05:19:14.010000"],["2024-07-24T05:19:15.010000"],["2024-07-24T05:19:16.010000"],["2024-07-24T05:19:17.010000"],["2024-07-24T05:19:18.010000"],["2024-07-24T05:19:19.010000"],["2024-07-24T05:19:20.010000"],["2024-07-24T05:19:21.010000"],["2024-07-24T05:19:22.010000"],["2024-07-24T05:19:23.010000"],["2024-07-24T05:19:24.010000"],["2024-07-24T05:19:25.010000"],["2024-07-24T05:19:26.010000"],["2024-07-24T05:19:27.010000"],["2024-07-24T05:19:28.010000"],["2024-07-24T05:19:29.010000"],["2024-07-24T05:19:30.010000"],["2024-07-24T05:19:31.010000"],["2024-07-24T05:19:32.010000"],["2024-07-24T05:19:33.010000"],["2024-07-24T05:19:34.010000"],["2024-07-24T05:19:35.010000"],["2024-07-24T05:19:36.010000"],["2024-07-24T05:19:37.010000"],["2024-07-24T05:19:38.010000"],["2024-07-24T05:19:39.010000"],["2024-07-24T05:19:40.010000"],["2024-07-24T05:19:41.010000"],["2024-07-24T05:19:42.010000"],["2024-07-24T05:19:43.010000"],["2024-07-24T05:19:44.010000"],["2024-07-24T05:19:45.010000"],["2024-07-24T05:19:46.010000"],["2024-07-24T05:19:47.010000"],["2024-07-24T05:19:48.010000"],["2024-07-24T05:19:49.010000"],["2024-07-24T05:19:50.010000"],["2024-07-24T05:19:51.010000"],["2024-07-24T05:19:52.010000"],["2024-07-24T05:19:53.010000"],["2024-07-24T05:19:54.010000"],["2024-07-24T05:19:55.010000"],["2024-07-24T05:19:56.010000"],["2024-07-24T05:19:57.010000"],["2024-07-24T05:19:58.010000"],["2024-07-24T05:19:59.010000"],["2024-07-24T05:20:00.010000"],["2024-07-24T05:20:01.010000"],["2024-07-24T05:20:02.010000"],["2024-07-24T05:20:03.010000"],["2024-07-24T05:20:04.010000"],["2024-07-24T05:20:05.010000"],["2024-07-24T05:20:06.010000"],["2024-07-24T05:20:07.010000"],["2024-07-24T05:20:08.010000"],["2024-07-24T05:20:09.010000"],["2024-07-24T05:20:10.010000"],["2024-07-24T05:20:11.010000"],["2024-07-24T05:20:12.010000"],["2024-07-24T05:20:13.010000"],["2024-07-24T05:20:14.010000"],["2024-07-24T05:20:15.010000"],["2024-07-24T05:20:16.010000"],["2024-07-24T05:20:17.010000"],["2024-07-24T05:20:18.010000"],["2024-07-24T05:20:19.010000"],["2024-07-24T05:20:20.010000"],["2024-07-24T05:20:21.010000"],["2024-07-24T05:20:22.010000"],["2024-07-24T05:20:23.010000"],["2024-07-24T05:20:24.010000"],["2024-07-24T05:20:25.010000"],["2024-07-24T05:20:26.010000"],["2024-07-24T05:20:27.010000"],["2024-07-24T05:20:28.010000"],["2024-07-24T05:20:29.010000"],["2024-07-24T05:20:30.010000"],["2024-07-24T05:20:31.010000"],["2024-07-24T05:20:32.010000"],["2024-07-24T05:20:33.010000"],["2024-07-24T05:20:34.010000"],["2024-07-24T05:20:35.010000"],["2024-07-24T05:20:36.010000"],["2024-07-24T05:20:37.010000"],["2024-07-24T05:20:38.010000"],["2024-07-24T05:20:39.010000"],["2024-07-24T05:20:40.010000"],["2024-07-24T05:20:41.010000"],["2024-07-24T05:20:42.010000"],["2024-07-24T05:20:43.010000"],["2024-07-24T05:20:44.010000"],["2024-07-24T05:20:45.010000"],["2024-07-24T05:20:46.010000"],["2024-07-24T05:20:47.010000"],["2024-07-24T05:20:48.010000"],["2024-07-24T05:20:49.010000"],["2024-07-24T05:20:50.010000"],["2024-07-24T05:20:51.010000"],["2024-07-24T05:20:52.010000"],["2024-07-24T05:20:53.010000"],["2024-07-24T05:20:54.010000"],["2024-07-24T05:20:55.010000"],["2024-07-24T05:20:56.010000"],["2024-07-24T05:20:57.010000"],["2024-07-24T05:20:58.010000"],["2024-07-24T05:20:59.010000"],["2024-07-24T05:21:00.010000"],["2024-07-24T05:21:01.010000"],["2024-07-24T05:21:02.010000"],["2024-07-24T05:21:03.010000"],["2024-07-24T05:21:04.010000"],["2024-07-24T05:21:05.010000"],["2024-07-24T05:21:06.010000"],["2024-07-24T05:21:07.010000"],["2024-07-24T05:21:08.010000"],["2024-07-24T05:21:09.010000"],["2024-07-24T05:21:10.010000"],["2024-07-24T05:21:11.010000"],["2024-07-24T05:21:12.010000"],["2024-07-24T05:21:13.010000"],["2024-07-24T05:21:14.010000"],["2024-07-24T05:21:15.010000"],["2024-07-24T05:21:16.010000"],["2024-07-24T05:21:17.010000"],["2024-07-24T05:21:18.010000"],["2024-07-24T05:21:19.010000"],["2024-07-24T05:21:20.010000"],["2024-07-24T05:21:21.010000"],["2024-07-24T05:21:22.010000"],["2024-07-24T05:21:23.010000"],["2024-07-24T05:21:24.010000"],["2024-07-24T05:21:25.010000"],["2024-07-24T05:21:26.010000"],["2024-07-24T05:21:27.010000"],["2024-07-24T05:21:28.010000"],["2024-07-24T05:21:29.010000"],["2024-07-24T05:21:30.010000"],["2024-07-24T05:21:31.010000"],["2024-07-24T05:21:32.010000"],["2024-07-24T05:21:33.010000"],["2024-07-24T05:21:34.010000"],["2024-07-24T05:21:35.010000"],["2024-07-24T05:21:36.010000"],["2024-07-24T05:21:37.010000"],["2024-07-24T05:21:38.010000"],["2024-07-24T05:21:39.010000"],["2024-07-24T05:21:40.010000"],["2024-07-24T05:21:41.010000"],["2024-07-24T05:21:42.010000"],["2024-07-24T05:21:43.010000"],["2024-07-24T05:21:44.010000"],["2024-07-24T05:21:45.010000"],["2024-07-24T05:21:46.010000"],["2024-07-24T05:21:47.010000"],["2024-07-24T05:21:48.010000"],["2024-07-24T05:21:49.010000"],["2024-07-24T05:21:50.010000"],["2024-07-24T05:21:51.010000"],["2024-07-24T05:21:52.010000"],["2024-07-24T05:21:53.010000"],["2024-07-24T05:21:54.010000"],["2024-07-24T05:21:55.010000"],["2024-07-24T05:21:56.010000"],["2024-07-24T05:21:57.010000"],["2024-07-24T05:21:58.010000"],["2024-07-24T05:21:59.010000"],["2024-07-24T05:22:00.010000"],["2024-07-24T05:22:01.010000"],["2024-07-24T05:22:02.010000"],["2024-07-24T05:22:03.010000"],["2024-07-24T05:22:04.010000"],["2024-07-24T05:22:05.010000"],["2024-07-24T05:22:06.010000"],["2024-07-24T05:22:07.010000"],["2024-07-24T05:22:08.010000"],["2024-07-24T05:22:09.010000"],["2024-07-24T05:22:10.010000"],["2024-07-24T05:22:11.010000"],["2024-07-24T05:22:12.010000"],["2024-07-24T05:22:13.010000"],["2024-07-24T05:22:14.010000"],["2024-07-24T05:22:15.010000"],["2024-07-24T05:22:16.010000"],["2024-07-24T05:22:17.010000"],["2024-07-24T05:22:18.010000"],["2024-07-24T05:22:19.010000"],["2024-07-24T05:22:20.010000"],["2024-07-24T05:22:21.010000"],["2024-07-24T05:22:22.010000"],["2024-07-24T05:22:23.010000"],["2024-07-24T05:22:24.010000"],["2024-07-24T05:22:25.010000"],["2024-07-24T05:22:26.010000"],["2024-07-24T05:22:27.010000"],["2024-07-24T05:22:28.010000"],["2024-07-24T05:22:29.010000"],["2024-07-24T05:22:30.010000"],["2024-07-24T05:22:31.010000"],["2024-07-24T05:22:32.010000"],["2024-07-24T05:22:33.010000"],["2024-07-24T05:22:34.010000"],["2024-07-24T05:22:35.010000"],["2024-07-24T05:22:36.010000"],["2024-07-24T05:22:37.010000"],["2024-07-24T05:22:38.010000"],["2024-07-24T05:22:39.010000"],["2024-07-24T05:22:40.010000"],["2024-07-24T05:22:41.010000"],["2024-07-24T05:22:42.010000"],["2024-07-24T05:22:43.010000"],["2024-07-24T05:22:44.010000"],["2024-07-24T05:22:45.010000"],["2024-07-24T05:22:46.010000"],["2024-07-24T05:22:47.010000"],["2024-07-24T05:22:48.010000"],["2024-07-24T05:22:49.010000"],["2024-07-24T05:22:50.010000"],["2024-07-24T05:22:51.010000"],["2024-07-24T05:22:52.010000"],["2024-07-24T05:22:53.010000"],["2024-07-24T05:22:54.010000"],["2024-07-24T05:22:55.010000"],["2024-07-24T05:22:56.010000"],["2024-07-24T05:22:57.010000"],["2024-07-24T05:22:58.010000"],["2024-07-24T05:22:59.010000"],["2024-07-24T05:23:00.010000"],["2024-07-24T05:23:01.010000"],["2024-07-24T05:23:02.010000"],["2024-07-24T05:23:03.010000"],["2024-07-24T05:23:04.010000"],["2024-07-24T05:23:05.010000"],["2024-07-24T05:23:06.010000"],["2024-07-24T05:23:07.010000"],["2024-07-24T05:23:08.010000"],["2024-07-24T05:23:09.010000"],["2024-07-24T05:23:10.010000"],["2024-07-24T05:23:11.010000"],["2024-07-24T05:23:12.010000"],["2024-07-24T05:23:13.010000"],["2024-07-24T05:23:14.010000"],["2024-07-24T05:23:15.010000"],["2024-07-24T05:23:16.010000"],["2024-07-24T05:23:17.010000"],["2024-07-24T05:23:18.010000"],["2024-07-24T05:23:19.010000"],["2024-07-24T05:23:20.010000"],["2024-07-24T05:23:21.010000"],["2024-07-24T05:23:22.010000"],["2024-07-24T05:23:23.010000"],["2024-07-24T05:23:24.010000"],["2024-07-24T05:23:25.010000"],["2024-07-24T05:23:26.010000"],["2024-07-24T05:23:27.010000"],["2024-07-24T05:23:28.010000"],["2024-07-24T05:23:29.010000"],["2024-07-24T05:23:30.010000"],["2024-07-24T05:23:31.010000"],["2024-07-24T05:23:32.010000"],["2024-07-24T05:23:33.010000"],["2024-07-24T05:23:34.010000"],["2024-07-24T05:23:35.010000"],["2024-07-24T05:23:36.010000"],["2024-07-24T05:23:37.010000"],["2024-07-24T05:23:38.010000"],["2024-07-24T05:23:39.010000"],["2024-07-24T05:23:40.010000"],["2024-07-24T05:23:41.010000"],["2024-07-24T05:23:42.010000"],["2024-07-24T05:23:43.010000"],["2024-07-24T05:23:44.010000"],["2024-07-24T05:23:45.010000"],["2024-07-24T05:23:46.010000"],["2024-07-24T05:23:47.010000"],["2024-07-24T05:23:48.010000"],["2024-07-24T05:23:49.010000"],["2024-07-24T05:23:50.010000"],["2024-07-24T05:23:51.010000"],["2024-07-24T05:23:52.010000"],["2024-07-24T05:23:53.010000"],["2024-07-24T05:23:54.010000"],["2024-07-24T05:23:55.010000"],["2024-07-24T05:23:56.010000"],["2024-07-24T05:23:57.010000"],["2024-07-24T05:23:58.010000"],["2024-07-24T05:23:59.010000"],["2024-07-24T05:24:00.010000"],["2024-07-24T05:24:01.010000"],["2024-07-24T05:24:02.010000"],["2024-07-24T05:24:03.010000"],["2024-07-24T05:24:04.010000"],["2024-07-24T05:24:05.010000"],["2024-07-24T05:24:06.010000"],["2024-07-24T05:24:07.010000"],["2024-07-24T05:24:08.010000"],["2024-07-24T05:24:09.010000"],["2024-07-24T05:24:10.010000"],["2024-07-24T05:24:11.010000"],["2024-07-24T05:24:12.010000"],["2024-07-24T05:24:13.010000"],["2024-07-24T05:24:14.010000"],["2024-07-24T05:24:15.010000"],["2024-07-24T05:24:16.010000"],["2024-07-24T05:24:17.010000"],["2024-07-24T05:24:18.010000"],["2024-07-24T05:24:19.010000"],["2024-07-24T05:24:20.010000"],["2024-07-24T05:24:21.010000"],["2024-07-24T05:24:22.010000"],["2024-07-24T05:24:23.010000"],["2024-07-24T05:24:24.010000"],["2024-07-24T05:24:25.010000"],["2024-07-24T05:24:26.010000"],["2024-07-24T05:24:27.010000"],["2024-07-24T05:24:28.010000"],["2024-07-24T05:24:29.010000"],["2024-07-24T05:24:30.010000"],["2024-07-24T05:24:31.010000"],["2024-07-24T05:24:32.010000"],["2024-07-24T05:24:33.010000"],["2024-07-24T05:24:34.010000"],["2024-07-24T05:24:35.010000"],["2024-07-24T05:24:36.010000"],["2024-07-24T05:24:37.010000"],["2024-07-24T05:24:38.010000"],["2024-07-24T05:24:39.010000"],["2024-07-24T05:24:40.010000"],["2024-07-24T05:24:41.010000"],["2024-07-24T05:24:42.010000"],["2024-07-24T05:24:43.010000"],["2024-07-24T05:24:44.010000"],["2024-07-24T05:24:45.010000"],["2024-07-24T05:24:46.010000"],["2024-07-24T05:24:47.010000"],["2024-07-24T05:24:48.010000"],["2024-07-24T05:24:49.010000"],["2024-07-24T05:24:50.010000"],["2024-07-24T05:24:51.010000"],["2024-07-24T05:24:52.010000"],["2024-07-24T05:24:53.010000"],["2024-07-24T05:24:54.010000"],["2024-07-24T05:24:55.010000"],["2024-07-24T05:24:56.010000"],["2024-07-24T05:24:57.010000"],["2024-07-24T05:24:58.010000"],["2024-07-24T05:24:59.010000"],["2024-07-24T05:25:00.010000"],["2024-07-24T05:25:01.010000"],["2024-07-24T05:25:02.010000"],["2024-07-24T05:25:03.010000"],["2024-07-24T05:25:04.010000"],["2024-07-24T05:25:05.010000"],["2024-07-24T05:25:06.010000"],["2024-07-24T05:25:07.010000"],["2024-07-24T05:25:08.010000"],["2024-07-24T05:25:09.010000"],["2024-07-24T05:25:10.010000"],["2024-07-24T05:25:11.010000"],["2024-07-24T05:25:12.010000"],["2024-07-24T05:25:13.010000"],["2024-07-24T05:25:14.010000"],["2024-07-24T05:25:15.010000"],["2024-07-24T05:25:16.010000"],["2024-07-24T05:25:17.010000"],["2024-07-24T05:25:18.010000"],["2024-07-24T05:25:19.010000"],["2024-07-24T05:25:20.010000"],["2024-07-24T05:25:21.010000"],["2024-07-24T05:25:22.010000"],["2024-07-24T05:25:23.010000"],["2024-07-24T05:25:24.010000"],["2024-07-24T05:25:25.010000"],["2024-07-24T05:25:26.010000"],["2024-07-24T05:25:27.010000"],["2024-07-24T05:25:28.010000"],["2024-07-24T05:25:29.010000"],["2024-07-24T05:25:30.010000"],["2024-07-24T05:25:31.010000"],["2024-07-24T05:25:32.010000"],["2024-07-24T05:25:33.010000"],["2024-07-24T05:25:34.010000"],["2024-07-24T05:25:35.010000"],["2024-07-24T05:25:36.010000"],["2024-07-24T05:25:37.010000"],["2024-07-24T05:25:38.010000"],["2024-07-24T05:25:39.010000"],["2024-07-24T05:25:40.010000"],["2024-07-24T05:25:41.010000"],["2024-07-24T05:25:42.010000"],["2024-07-24T05:25:43.010000"],["2024-07-24T05:25:44.010000"],["2024-07-24T05:25:45.010000"],["2024-07-24T05:25:46.010000"],["2024-07-24T05:25:47.010000"],["2024-07-24T05:25:48.010000"],["2024-07-24T05:25:49.010000"],["2024-07-24T05:25:50.010000"],["2024-07-24T05:25:51.010000"],["2024-07-24T05:25:52.010000"],["2024-07-24T05:25:53.010000"],["2024-07-24T05:25:54.010000"],["2024-07-24T05:25:55.010000"],["2024-07-24T05:25:56.010000"],["2024-07-24T05:25:57.010000"],["2024-07-24T05:25:58.010000"],["2024-07-24T05:25:59.010000"],["2024-07-24T05:26:00.010000"],["2024-07-24T05:26:01.010000"],["2024-07-24T05:26:02.010000"],["2024-07-24T05:26:03.010000"],["2024-07-24T05:26:04.010000"],["2024-07-24T05:26:05.010000"],["2024-07-24T05:26:06.010000"],["2024-07-24T05:26:07.010000"],["2024-07-24T05:26:08.010000"],["2024-07-24T05:26:09.010000"],["2024-07-24T05:26:10.010000"],["2024-07-24T05:26:11.010000"],["2024-07-24T05:26:12.010000"],["2024-07-24T05:26:13.010000"],["2024-07-24T05:26:14.010000"],["2024-07-24T05:26:15.010000"],["2024-07-24T05:26:16.010000"],["2024-07-24T05:26:17.010000"],["2024-07-24T05:26:18.010000"],["2024-07-24T05:26:19.010000"],["2024-07-24T05:26:20.010000"],["2024-07-24T05:26:21.010000"],["2024-07-24T05:26:22.010000"],["2024-07-24T05:26:23.010000"],["2024-07-24T05:26:24.010000"],["2024-07-24T05:26:25.010000"],["2024-07-24T05:26:26.010000"],["2024-07-24T05:26:27.010000"],["2024-07-24T05:26:28.010000"],["2024-07-24T05:26:29.010000"],["2024-07-24T05:26:30.010000"],["2024-07-24T05:26:31.010000"],["2024-07-24T05:26:32.010000"],["2024-07-24T05:26:33.010000"],["2024-07-24T05:26:34.010000"],["2024-07-24T05:26:35.010000"],["2024-07-24T05:26:36.010000"],["2024-07-24T05:26:37.010000"],["2024-07-24T05:26:38.010000"],["2024-07-24T05:26:39.010000"],["2024-07-24T05:26:40.010000"],["2024-07-24T05:26:41.010000"],["2024-07-24T05:26:42.010000"],["2024-07-24T05:26:43.010000"],["2024-07-24T05:26:44.010000"],["2024-07-24T05:26:45.010000"],["2024-07-24T05:26:46.010000"],["2024-07-24T05:26:47.010000"],["2024-07-24T05:26:48.010000"],["2024-07-24T05:26:49.010000"],["2024-07-24T05:26:50.010000"],["2024-07-24T05:26:51.010000"],["2024-07-24T05:26:52.010000"],["2024-07-24T05:26:53.010000"],["2024-07-24T05:26:54.010000"],["2024-07-24T05:26:55.010000"],["2024-07-24T05:26:56.010000"],["2024-07-24T05:26:57.010000"],["2024-07-24T05:26:58.010000"],["2024-07-24T05:26:59.010000"],["2024-07-24T05:27:00.010000"],["2024-07-24T05:27:01.010000"],["2024-07-24T05:27:02.010000"],["2024-07-24T05:27:03.010000"],["2024-07-24T05:27:04.010000"],["2024-07-24T05:27:05.010000"],["2024-07-24T05:27:06.010000"],["2024-07-24T05:27:07.010000"],["2024-07-24T05:27:08.010000"],["2024-07-24T05:27:09.010000"],["2024-07-24T05:27:10.010000"],["2024-07-24T05:27:11.010000"],["2024-07-24T05:27:12.010000"],["2024-07-24T05:27:13.010000"],["2024-07-24T05:27:14.010000"],["2024-07-24T05:27:15.010000"],["2024-07-24T05:27:16.010000"],["2024-07-24T05:27:17.010000"],["2024-07-24T05:27:18.010000"],["2024-07-24T05:27:19.010000"],["2024-07-24T05:27:20.010000"],["2024-07-24T05:27:21.010000"],["2024-07-24T05:27:22.010000"],["2024-07-24T05:27:23.010000"],["2024-07-24T05:27:24.010000"],["2024-07-24T05:27:25.010000"],["2024-07-24T05:27:26.010000"],["2024-07-24T05:27:27.010000"],["2024-07-24T05:27:28.010000"],["2024-07-24T05:27:29.010000"],["2024-07-24T05:27:30.010000"],["2024-07-24T05:27:31.010000"],["2024-07-24T05:27:32.010000"],["2024-07-24T05:27:33.010000"],["2024-07-24T05:27:34.010000"],["2024-07-24T05:27:35.010000"],["2024-07-24T05:27:36.010000"],["2024-07-24T05:27:37.010000"],["2024-07-24T05:27:38.010000"],["2024-07-24T05:27:39.010000"],["2024-07-24T05:27:40.010000"],["2024-07-24T05:27:41.010000"],["2024-07-24T05:27:42.010000"],["2024-07-24T05:27:43.010000"],["2024-07-24T05:27:44.010000"],["2024-07-24T05:27:45.010000"],["2024-07-24T05:27:46.010000"],["2024-07-24T05:27:47.010000"],["2024-07-24T05:27:48.010000"],["2024-07-24T05:27:49.010000"],["2024-07-24T05:27:50.010000"],["2024-07-24T05:27:51.010000"],["2024-07-24T05:27:52.010000"],["2024-07-24T05:27:53.010000"],["2024-07-24T05:27:54.010000"],["2024-07-24T05:27:55.010000"],["2024-07-24T05:27:56.010000"],["2024-07-24T05:27:57.010000"],["2024-07-24T05:27:58.010000"],["2024-07-24T05:27:59.010000"],["2024-07-24T05:28:00.010000"],["2024-07-24T05:28:01.010000"],["2024-07-24T05:28:02.010000"],["2024-07-24T05:28:03.010000"],["2024-07-24T05:28:04.010000"],["2024-07-24T05:28:05.010000"],["2024-07-24T05:28:06.010000"],["2024-07-24T05:28:07.010000"],["2024-07-24T05:28:08.010000"],["2024-07-24T05:28:09.010000"],["2024-07-24T05:28:10.010000"],["2024-07-24T05:28:11.010000"],["2024-07-24T05:28:12.010000"],["2024-07-24T05:28:13.010000"],["2024-07-24T05:28:14.010000"],["2024-07-24T05:28:15.010000"],["2024-07-24T05:28:16.010000"],["2024-07-24T05:28:17.010000"],["2024-07-24T05:28:18.010000"],["2024-07-24T05:28:19.010000"],["2024-07-24T05:28:20.010000"],["2024-07-24T05:28:21.010000"],["2024-07-24T05:28:22.010000"],["2024-07-24T05:28:23.010000"],["2024-07-24T05:28:24.010000"],["2024-07-24T05:28:25.010000"],["2024-07-24T05:28:26.010000"],["2024-07-24T05:28:27.010000"],["2024-07-24T05:28:28.010000"],["2024-07-24T05:28:29.010000"],["2024-07-24T05:28:30.010000"],["2024-07-24T05:28:31.010000"],["2024-07-24T05:28:32.010000"],["2024-07-24T05:28:33.010000"],["2024-07-24T05:28:34.010000"],["2024-07-24T05:28:35.010000"],["2024-07-24T05:28:36.010000"],["2024-07-24T05:28:37.010000"],["2024-07-24T05:28:38.010000"],["2024-07-24T05:28:39.010000"],["2024-07-24T05:28:40.010000"],["2024-07-24T05:28:41.010000"],["2024-07-24T05:28:42.010000"],["2024-07-24T05:28:43.010000"],["2024-07-24T05:28:44.010000"],["2024-07-24T05:28:45.010000"],["2024-07-24T05:28:46.010000"],["2024-07-24T05:28:47.010000"],["2024-07-24T05:28:48.010000"],["2024-07-24T05:28:49.010000"],["2024-07-24T05:28:50.010000"],["2024-07-24T05:28:51.010000"],["2024-07-24T05:28:52.010000"],["2024-07-24T05:28:53.010000"],["2024-07-24T05:28:54.010000"],["2024-07-24T05:28:55.010000"],["2024-07-24T05:28:56.010000"],["2024-07-24T05:28:57.010000"],["2024-07-24T05:28:58.010000"],["2024-07-24T05:28:59.010000"],["2024-07-24T05:29:00.010000"],["2024-07-24T05:29:01.010000"],["2024-07-24T05:29:02.010000"],["2024-07-24T05:29:03.010000"],["2024-07-24T05:29:04.010000"],["2024-07-24T05:29:05.010000"],["2024-07-24T05:29:06.010000"],["2024-07-24T05:29:07.010000"],["2024-07-24T05:29:08.010000"],["2024-07-24T05:29:09.010000"],["2024-07-24T05:29:10.010000"],["2024-07-24T05:29:11.010000"],["2024-07-24T05:29:12.010000"],["2024-07-24T05:29:13.010000"],["2024-07-24T05:29:14.010000"],["2024-07-24T05:29:15.010000"],["2024-07-24T05:29:16.010000"],["2024-07-24T05:29:17.010000"],["2024-07-24T05:29:18.010000"],["2024-07-24T05:29:19.010000"],["2024-07-24T05:29:20.010000"],["2024-07-24T05:29:21.010000"],["2024-07-24T05:29:22.010000"],["2024-07-24T05:29:23.010000"],["2024-07-24T05:29:24.010000"],["2024-07-24T05:29:25.010000"],["2024-07-24T05:29:26.010000"],["2024-07-24T05:29:27.010000"],["2024-07-24T05:29:28.010000"],["2024-07-24T05:29:29.010000"],["2024-07-24T05:29:30.010000"],["2024-07-24T05:29:31.010000"],["2024-07-24T05:29:32.010000"],["2024-07-24T05:29:33.010000"],["2024-07-24T05:29:34.010000"],["2024-07-24T05:29:35.010000"],["2024-07-24T05:29:36.010000"],["2024-07-24T05:29:37.010000"],["2024-07-24T05:29:38.010000"],["2024-07-24T05:29:39.010000"],["2024-07-24T05:29:40.010000"],["2024-07-24T05:29:41.010000"],["2024-07-24T05:29:42.010000"],["2024-07-24T05:29:43.010000"],["2024-07-24T05:29:44.010000"],["2024-07-24T05:29:45.010000"],["2024-07-24T05:29:46.010000"],["2024-07-24T05:29:47.010000"],["2024-07-24T05:29:48.010000"],["2024-07-24T05:29:49.010000"],["2024-07-24T05:29:50.010000"],["2024-07-24T05:29:51.010000"],["2024-07-24T05:29:52.010000"],["2024-07-24T05:29:53.010000"],["2024-07-24T05:29:54.010000"],["2024-07-24T05:29:55.010000"],["2024-07-24T05:29:56.010000"],["2024-07-24T05:29:57.010000"],["2024-07-24T05:29:58.010000"],["2024-07-24T05:29:59.010000"],["2024-07-24T05:30:00.010000"],["2024-07-24T05:30:01.010000"],["2024-07-24T05:30:02.010000"],["2024-07-24T05:30:03.010000"],["2024-07-24T05:30:04.010000"],["2024-07-24T05:30:05.010000"],["2024-07-24T05:30:06.010000"],["2024-07-24T05:30:07.010000"],["2024-07-24T05:30:08.010000"],["2024-07-24T05:30:09.010000"],["2024-07-24T05:30:10.010000"],["2024-07-24T05:30:11.010000"],["2024-07-24T05:30:12.010000"],["2024-07-24T05:30:13.010000"],["2024-07-24T05:30:14.010000"],["2024-07-24T05:30:15.010000"],["2024-07-24T05:30:16.010000"],["2024-07-24T05:30:17.010000"],["2024-07-24T05:30:18.010000"],["2024-07-24T05:30:19.010000"],["2024-07-24T05:30:20.010000"],["2024-07-24T05:30:21.010000"],["2024-07-24T05:30:22.010000"],["2024-07-24T05:30:23.010000"],["2024-07-24T05:30:24.010000"],["2024-07-24T05:30:25.010000"],["2024-07-24T05:30:26.010000"],["2024-07-24T05:30:27.010000"],["2024-07-24T05:30:28.010000"],["2024-07-24T05:30:29.010000"],["2024-07-24T05:30:30.010000"],["2024-07-24T05:30:31.010000"],["2024-07-24T05:30:32.010000"],["2024-07-24T05:30:33.010000"],["2024-07-24T05:30:34.010000"],["2024-07-24T05:30:35.010000"],["2024-07-24T05:30:36.010000"],["2024-07-24T05:30:37.010000"],["2024-07-24T05:30:38.010000"],["2024-07-24T05:30:39.010000"],["2024-07-24T05:30:40.010000"],["2024-07-24T05:30:41.010000"],["2024-07-24T05:30:42.010000"],["2024-07-24T05:30:43.010000"],["2024-07-24T05:30:44.010000"],["2024-07-24T05:30:45.010000"],["2024-07-24T05:30:46.010000"],["2024-07-24T05:30:47.010000"],["2024-07-24T05:30:48.010000"],["2024-07-24T05:30:49.010000"],["2024-07-24T05:30:50.010000"],["2024-07-24T05:30:51.010000"],["2024-07-24T05:30:52.010000"],["2024-07-24T05:30:53.010000"],["2024-07-24T05:30:54.010000"],["2024-07-24T05:30:55.010000"],["2024-07-24T05:30:56.010000"],["2024-07-24T05:30:57.010000"],["2024-07-24T05:30:58.010000"],["2024-07-24T05:30:59.010000"],["2024-07-24T05:31:00.010000"],["2024-07-24T05:31:01.010000"],["2024-07-24T05:31:02.010000"],["2024-07-24T05:31:03.010000"],["2024-07-24T05:31:04.010000"],["2024-07-24T05:31:05.010000"],["2024-07-24T05:31:06.010000"],["2024-07-24T05:31:07.010000"],["2024-07-24T05:31:08.010000"],["2024-07-24T05:31:09.010000"],["2024-07-24T05:31:10.010000"],["2024-07-24T05:31:11.010000"],["2024-07-24T05:31:12.010000"],["2024-07-24T05:31:13.010000"],["2024-07-24T05:31:14.010000"],["2024-07-24T05:31:15.010000"],["2024-07-24T05:31:16.010000"],["2024-07-24T05:31:17.010000"],["2024-07-24T05:31:18.010000"],["2024-07-24T05:31:19.010000"],["2024-07-24T05:31:20.010000"],["2024-07-24T05:31:21.010000"],["2024-07-24T05:31:22.010000"],["2024-07-24T05:31:23.010000"],["2024-07-24T05:31:24.010000"],["2024-07-24T05:31:25.010000"],["2024-07-24T05:31:26.010000"],["2024-07-24T05:31:27.010000"],["2024-07-24T05:31:28.010000"],["2024-07-24T05:31:29.010000"],["2024-07-24T05:31:30.010000"],["2024-07-24T05:31:31.010000"],["2024-07-24T05:31:32.010000"],["2024-07-24T05:31:33.010000"],["2024-07-24T05:31:34.010000"],["2024-07-24T05:31:35.010000"],["2024-07-24T05:31:36.010000"],["2024-07-24T05:31:37.010000"],["2024-07-24T05:31:38.010000"],["2024-07-24T05:31:39.010000"],["2024-07-24T05:31:40.010000"],["2024-07-24T05:31:41.010000"],["2024-07-24T05:31:42.010000"],["2024-07-24T05:31:43.010000"],["2024-07-24T05:31:44.010000"],["2024-07-24T05:31:45.010000"],["2024-07-24T05:31:46.010000"],["2024-07-24T05:31:47.010000"],["2024-07-24T05:31:48.010000"],["2024-07-24T05:31:49.010000"],["2024-07-24T05:31:50.010000"],["2024-07-24T05:31:51.010000"],["2024-07-24T05:31:52.010000"],["2024-07-24T05:31:53.010000"],["2024-07-24T05:31:54.010000"],["2024-07-24T05:31:55.010000"],["2024-07-24T05:31:56.010000"],["2024-07-24T05:31:57.010000"],["2024-07-24T05:31:58.010000"],["2024-07-24T05:31:59.010000"],["2024-07-24T05:32:00.010000"],["2024-07-24T05:32:01.010000"],["2024-07-24T05:32:02.010000"],["2024-07-24T05:32:03.010000"],["2024-07-24T05:32:04.010000"],["2024-07-24T05:32:05.010000"],["2024-07-24T05:32:06.010000"],["2024-07-24T05:32:07.010000"],["2024-07-24T05:32:08.010000"],["2024-07-24T05:32:09.010000"],["2024-07-24T05:32:10.010000"],["2024-07-24T05:32:11.010000"],["2024-07-24T05:32:12.010000"],["2024-07-24T05:32:13.010000"],["2024-07-24T05:32:14.010000"],["2024-07-24T05:32:15.010000"],["2024-07-24T05:32:16.010000"],["2024-07-24T05:32:17.010000"],["2024-07-24T05:32:18.010000"],["2024-07-24T05:32:19.010000"],["2024-07-24T05:32:20.010000"],["2024-07-24T05:32:21.010000"],["2024-07-24T05:32:22.010000"],["2024-07-24T05:32:23.010000"],["2024-07-24T05:32:24.010000"],["2024-07-24T05:32:25.010000"],["2024-07-24T05:32:26.010000"],["2024-07-24T05:32:27.010000"],["2024-07-24T05:32:28.010000"],["2024-07-24T05:32:29.010000"],["2024-07-24T05:32:30.010000"],["2024-07-24T05:32:31.010000"],["2024-07-24T05:32:32.010000"],["2024-07-24T05:32:33.010000"],["2024-07-24T05:32:34.010000"],["2024-07-24T05:32:35.010000"],["2024-07-24T05:32:36.010000"],["2024-07-24T05:32:37.010000"],["2024-07-24T05:32:38.010000"],["2024-07-24T05:32:39.010000"],["2024-07-24T05:32:40.010000"],["2024-07-24T05:32:41.010000"],["2024-07-24T05:32:42.010000"],["2024-07-24T05:32:43.010000"],["2024-07-24T05:32:44.010000"],["2024-07-24T05:32:45.010000"],["2024-07-24T05:32:46.010000"],["2024-07-24T05:32:47.010000"],["2024-07-24T05:32:48.010000"],["2024-07-24T05:32:49.010000"],["2024-07-24T05:32:50.010000"],["2024-07-24T05:32:51.010000"],["2024-07-24T05:32:52.010000"],["2024-07-24T05:32:53.010000"],["2024-07-24T05:32:54.010000"],["2024-07-24T05:32:55.010000"],["2024-07-24T05:32:56.010000"],["2024-07-24T05:32:57.010000"],["2024-07-24T05:32:58.010000"],["2024-07-24T05:32:59.010000"],["2024-07-24T05:33:00.010000"],["2024-07-24T05:33:01.010000"],["2024-07-24T05:33:02.010000"],["2024-07-24T05:33:03.010000"],["2024-07-24T05:33:04.010000"],["2024-07-24T05:33:05.010000"],["2024-07-24T05:33:06.010000"],["2024-07-24T05:33:07.010000"],["2024-07-24T05:33:08.010000"],["2024-07-24T05:33:09.010000"],["2024-07-24T05:33:10.010000"],["2024-07-24T05:33:11.010000"],["2024-07-24T05:33:12.010000"],["2024-07-24T05:33:13.010000"],["2024-07-24T05:33:14.010000"],["2024-07-24T05:33:15.010000"],["2024-07-24T05:33:16.010000"],["2024-07-24T05:33:17.010000"],["2024-07-24T05:33:18.010000"],["2024-07-24T05:33:19.010000"],["2024-07-24T05:33:20.010000"],["2024-07-24T05:33:21.010000"],["2024-07-24T05:33:22.010000"],["2024-07-24T05:33:23.010000"],["2024-07-24T05:33:24.010000"],["2024-07-24T05:33:25.010000"],["2024-07-24T05:33:26.010000"],["2024-07-24T05:33:27.010000"],["2024-07-24T05:33:28.010000"],["2024-07-24T05:33:29.010000"],["2024-07-24T05:33:30.010000"],["2024-07-24T05:33:31.010000"],["2024-07-24T05:33:32.010000"],["2024-07-24T05:33:33.010000"],["2024-07-24T05:33:34.010000"],["2024-07-24T05:33:35.010000"],["2024-07-24T05:33:36.010000"],["2024-07-24T05:33:37.010000"],["2024-07-24T05:33:38.010000"],["2024-07-24T05:33:39.010000"],["2024-07-24T05:33:40.010000"],["2024-07-24T05:33:41.010000"],["2024-07-24T05:33:42.010000"],["2024-07-24T05:33:43.010000"],["2024-07-24T05:33:44.010000"],["2024-07-24T05:33:45.010000"],["2024-07-24T05:33:46.010000"],["2024-07-24T05:33:47.010000"],["2024-07-24T05:33:48.010000"],["2024-07-24T05:33:49.010000"],["2024-07-24T05:33:50.010000"],["2024-07-24T05:33:51.010000"],["2024-07-24T05:33:52.010000"],["2024-07-24T05:33:53.010000"],["2024-07-24T05:33:54.010000"],["2024-07-24T05:33:55.010000"],["2024-07-24T05:33:56.010000"],["2024-07-24T05:33:57.010000"],["2024-07-24T05:33:58.010000"],["2024-07-24T05:33:59.010000"],["2024-07-24T05:34:00.010000"],["2024-07-24T05:34:01.010000"],["2024-07-24T05:34:02.010000"],["2024-07-24T05:34:03.010000"],["2024-07-24T05:34:04.010000"],["2024-07-24T05:34:05.010000"],["2024-07-24T05:34:06.010000"],["2024-07-24T05:34:07.010000"],["2024-07-24T05:34:08.010000"],["2024-07-24T05:34:09.010000"],["2024-07-24T05:34:10.010000"],["2024-07-24T05:34:11.010000"],["2024-07-24T05:34:12.010000"],["2024-07-24T05:34:13.010000"],["2024-07-24T05:34:14.010000"],["2024-07-24T05:34:15.010000"],["2024-07-24T05:34:16.010000"],["2024-07-24T05:34:17.010000"],["2024-07-24T05:34:18.010000"],["2024-07-24T05:34:19.010000"],["2024-07-24T05:34:20.010000"],["2024-07-24T05:34:21.010000"],["2024-07-24T05:34:22.010000"],["2024-07-24T05:34:23.010000"],["2024-07-24T05:34:24.010000"],["2024-07-24T05:34:25.010000"],["2024-07-24T05:34:26.010000"],["2024-07-24T05:34:27.010000"],["2024-07-24T05:34:28.010000"],["2024-07-24T05:34:29.010000"],["2024-07-24T05:34:30.010000"],["2024-07-24T05:34:31.010000"],["2024-07-24T05:34:32.010000"],["2024-07-24T05:34:33.010000"],["2024-07-24T05:34:34.010000"],["2024-07-24T05:34:35.010000"],["2024-07-24T05:34:36.010000"],["2024-07-24T05:34:37.010000"],["2024-07-24T05:34:38.010000"],["2024-07-24T05:34:39.010000"],["2024-07-24T05:34:40.010000"],["2024-07-24T05:34:41.010000"],["2024-07-24T05:34:42.010000"],["2024-07-24T05:34:43.010000"],["2024-07-24T05:34:44.010000"],["2024-07-24T05:34:45.010000"],["2024-07-24T05:34:46.010000"],["2024-07-24T05:34:47.010000"],["2024-07-24T05:34:48.010000"],["2024-07-24T05:34:49.010000"],["2024-07-24T05:34:50.010000"],["2024-07-24T05:34:51.010000"],["2024-07-24T05:34:52.010000"],["2024-07-24T05:34:53.010000"],["2024-07-24T05:34:54.010000"],["2024-07-24T05:34:55.010000"],["2024-07-24T05:34:56.010000"],["2024-07-24T05:34:57.010000"],["2024-07-24T05:34:58.010000"],["2024-07-24T05:34:59.010000"],["2024-07-24T05:35:00.010000"],["2024-07-24T05:35:01.010000"],["2024-07-24T05:35:02.010000"],["2024-07-24T05:35:03.010000"],["2024-07-24T05:35:04.010000"],["2024-07-24T05:35:05.010000"]],"hovertemplate":"color=0\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0","scene":"scene","showlegend":true,"x":[-0.8374067144468427,-0.529927818570286,-0.3937329137697816,-0.6555995922535658,0.15802385937422514,0.05778886564075947,1.0428556883707643,1.6134310909546912,1.3669570684432983,1.186283843126148,0.46075360383838415,-0.38651502784341574,0.24637926137074828,-0.6121242544613779,0.1661635055206716,0.08324026595801115,-0.6744214799255133,0.0685803689993918,-0.8807289716787636,-1.782250285614282,-1.5561507563106716,-1.6386410295963287,-1.9530326277017593,-1.4417931283824146,-1.4948353441432118,-1.9832865567877889,-1.4603650588542223,-0.9926133621484041,-0.034791549667716026,-0.4053586991503835,-0.8345828107558191,-1.6450456413440406,-2.5435914783738554,-2.824764152057469,-2.0346628511324525,-2.3387498748488724,-3.0463436446152627,-2.873018141835928,-2.5027511632069945,-2.603269051294774,-3.339244437869638,-2.350822441279888,-2.2463437230326235,-1.2561403093859553,-0.8154448661953211,-0.4186058002524078,-1.0736861387267709,-1.588422934524715,-0.5898827142082155,-0.3983105602674186,0.5170251531526446,0.06234566541388631,0.4577049417421222,0.09450020361691713,0.4117203690111637,0.21473424276337028,0.18776907119899988,1.1087417993694544,1.7775148856453598,1.5603777384385467,2.2126690628938377,2.0447979257442057,1.8745250217616558,1.5594426696188748,1.4772899933159351,1.8491942090913653,1.143350186292082,1.3789881276898086,1.9778686151839793,2.554723243229091,2.4079446881078184,2.941139634232968,2.771402830723673,2.9270472866483033,3.648643822874874,3.387675859965384,4.0038597895763814,3.3500165645964444,2.9612560737878084,3.8299879264086485,4.124551388435066,4.503804142586887,3.564868306275457,2.877052366733551,2.80093329353258,3.0916774589568377,3.903137108311057,4.533879698254168,3.9374261288903654,3.355420720297843,3.8553830184973776,3.243818535003811,3.457779861520976,3.2964793983846903,4.191938755102456,3.9089761935174465,4.843305507674813,4.677488482091576,5.427188330329955,4.722968723159283,4.691246451344341,3.939701599534601,4.897215521428734,5.189057037234306,4.523264479357749,4.0824436927214265,3.4158337181434035,4.267438019160181,4.353749836795032,3.842028211802244,4.834223368670791,4.519626384135336,3.75460586277768,3.692277878522873,3.581603917758912,2.9652915969491005,3.765274873469025,3.6909679900854826,4.215691415593028,4.590885495766997,5.4114874000661075,5.506914428900927,4.981759387534112,5.087547306437045,4.379908823408186,5.178495622240007,4.979623729828745,4.175115356221795,4.876039907336235,5.503171639982611,5.287735163234174,4.565874191466719,5.460478503257036,5.4279526155442,4.549323999322951,3.9314119471237063,3.902517064008862,3.1591873932629824,4.064806884620339,5.048475310672075,5.4215418715029955,5.675748017150909,5.1859148745425045,4.273100106045604,5.099832355976105,5.849461832549423,5.730411230120808,6.1071902848780155,6.356367267202586,6.882651511114091,7.233954616356641,7.20497861970216,8.185312072746456,8.213551882188767,8.873978549148887,9.000545227434486,8.8026461629197,9.253605430480093,8.758799789473414,8.093159891664982,8.371424392331392,7.652759225573391,8.34641784708947,7.546663506887853,8.12650607060641,8.230722153559327,7.368618477601558,7.852880145888776,7.924286261200905,8.273831526748836,8.03914085496217,7.098422006703913,7.69135008007288,6.771397417876869,7.731871192343533,7.568745648022741,7.720031478907913,8.218075624667108,8.4961644471623,8.604807886760682,9.49802806507796,9.531510127708316,10.134618932381272,10.626420799642801,10.12605545297265,9.618588960263878,10.367984076496214,10.485954645089805,11.396205523516983,12.325700344052166,11.839904800523072,12.503833605907857,12.5814498802647,12.766585420351475,12.074879904277623,12.67494636727497,13.517851249780506,12.685709421988577,13.082476592622697,12.480238030198961,12.17614925885573,13.13717603450641,13.55969664035365,13.282787493430078,12.29659778950736,13.010587468743324,13.151356470771134,13.111939813010395,12.159036924596876,12.926075350958854,12.73413144564256,13.645378462970257,12.688327930867672,12.098552291281521,12.988351095467806,13.5646129315719,13.828977009747177,12.91940752742812,13.912791739683598,14.130164401605725,14.460380819160491,13.651938082650304,14.101744622923434,13.374769092537463,12.711988994386047,12.0892567737028,11.823153565172106,12.773813228588551,13.381487937644124,12.878504946827888,13.45566842937842,12.80212646164,11.836704008746892,11.50482682324946,11.214856340549886,11.268438016995788,11.957170822191983,11.314621503930539,10.829261669889092,10.620444093830884,10.053952499292791,10.760231192689389,11.008515008725226,11.541660851798952,12.394095968920738,13.295403455384076,12.340329180471599,12.923993087839335,13.258846579585224,12.61151133524254,12.247035370673984,12.384463459718972,12.744954212103039,13.18799108080566,13.287709658499807,12.51544265029952,13.408843114040792,12.529593233950436,11.559432100038975,12.062082526274025,11.38936560973525,11.015332899056375,10.27002351731062,11.141434383578598,11.664705732371658,10.74624258838594,9.753536077681929,9.302050453145057,10.090433537494391,9.307060679420829,9.187778618652374,9.86211400385946,10.323129473254085,11.184895419050008,11.463757261168212,12.241910024546087,13.05180436372757,13.23827815707773,13.750793268438429,13.506181261967868,13.920649108011276,14.367210937663913,13.373303782660514,13.352601429913193,14.14621302857995,14.281174513977021,15.036899103783071,15.764241395518184,15.566646934486926,15.158193652983755,15.058608677238226,14.832143486477435,14.192767567466944,13.587851025164127,13.84574207291007,14.04025581246242,14.590472707524896,14.076688705012202,14.91496834717691,14.887764498591423,13.934079380705953,14.230546246748418,14.043426799122244,14.323733249679208,14.928181040100753,14.430840738117695,14.786099968943745,13.997513173613697,13.290433039423078,14.193716950714588,14.84065771335736,14.744874970056117,14.330422196071595,13.35405836533755,12.484822920989245,12.214573341421783,12.110136746894568,11.746879255399108,11.730804472230375,11.818427728489041,10.844986098818481,10.570986826438457,9.780265226960182,9.962183719035238,10.330565193668008,10.42631866876036,11.233794474508613,10.963181000668555,11.10881811613217,11.808911469765007,11.037938389461488,11.721335165202618,11.997173021081835,11.266267052851617,11.449200159870088,11.474741786718369,11.679417096078396,10.929603531491011,11.382145859766752,11.815812102053314,12.803640320897102,12.532562589738518,13.353717362973839,12.676886453758925,12.03926645964384,12.720005641225725,11.758241946343333,12.584688203409314,12.141428367234766,12.654435171745718,12.032996186520904,12.09108024276793,13.0054129101336,13.37958197016269,14.370266302488744,14.36717421328649,13.99633303983137,14.321812397334725,13.543768229428679,14.493495198432356,14.43087505362928,14.203233968000859,13.820225468371063,14.497033568099141,13.943395321257412,13.343820162583143,13.847171041648835,13.274976195767522,13.195869599934667,13.359683512244374,12.77696652058512,11.855755496304482,11.051835410296917,10.611329091712832,11.51636921428144,12.101608883589506,12.354114698246121,12.372313421685249,13.337041889317334,12.489374604076147,11.777891331817955,11.42154479958117,11.072380265221,11.938719277270138,11.73116308869794,11.071140613872558,10.420530135277659,9.776241993531585,9.116456998046488,8.81877757795155,8.966018158011138,8.970170608256012,9.368741289246827,9.101804060861468,8.629116737749428,9.161834072787315,9.033388506155461,8.367065362166613,9.232518692035228,8.656325544696301,8.248999524861574,7.8407227587886155,8.527944628614932,9.05917313368991,9.747855917084962,9.201216374989599,8.308216906618327,8.835308163892478,8.087200882378966,8.963872872292995,8.112888958770782,8.978067801333964,8.07173640280962,8.552731972653419,8.419454110786319,7.907067751977593,8.451964953914285,8.674478603992611,8.925169527996331,9.026267827954143,9.832047046162188,9.635108553338796,9.811629594303668,9.719826012849808,10.15504849748686,10.44930267194286,10.184741168748587,9.589115929789841,9.001670048106462,9.699931808747351,10.52882621018216,10.343490092549473,9.863538637757301,9.068485470954329,8.620613383129239,8.726233722642064,9.158168629743159,8.558957556262612,8.067865535616875,7.519559436943382,6.974978270474821,7.352416526526213,7.666461073793471,7.926574986893684,7.767932916991413,8.201618505176157,8.45087043568492,8.457685869652778,8.384357006289065,8.481403367593884,8.99447671417147,8.73993913270533,9.417386000510305,10.225488169584423,10.647166630253196,9.910109743941575,10.060904289130121,10.59758319100365,11.398102988954633,10.591087738517672,11.05309591256082,11.098930972162634,11.370513679925352,11.797502217814326,11.43778490414843,10.970324413850904,11.6967893820256,11.366237111855298,11.205091817770153,10.871888677589595,11.503076935186982,10.81200610473752,10.768809285014868,10.829233016818762,10.082739083096385,10.984275373630226,10.8926658811979,10.867252298630774,10.116228485945612,9.648945900145918,9.768930588383228,9.288304549176246,9.295111671555787,9.60052236635238,10.430681470781565,9.632631653919816,9.451996587682515,10.331476632971317,9.41591529501602,9.308806467335671,9.277456161100417,9.02298659319058,9.54335009586066,9.323222876060754,8.436866017058492,9.277647815644741,9.10061709024012,8.70248092059046,8.968159474432468,9.003104493953288,9.225705630611628,8.687904126010835,9.346210290212184,8.818453152198344,8.738988081458956,8.261341300792992,9.124003798235208,9.454011430963874,8.839661927428097,7.980435404460877,8.883329646661878,8.705056942999363,9.657783270347863,10.608062891289592,9.6140405992046,9.296466832980514,9.559234683867544,9.41406581690535,8.790234015323222,7.918304298538715,7.957878225483,7.04488827008754,7.550199294928461,7.3824906763620675,7.447452480439097,8.221323620062321,7.703200991265476,8.527696499135345,8.688965784851462,8.235590647440404,9.139732206705958,9.52880802610889,8.782452890649438,9.391664577182382,8.809813581872731,9.300226537510753,8.871963757555932,9.824461895506829,10.0377052500844,9.056012058164924,9.823912881780416,8.895533807110041,9.803140035830438,9.864562135655433,9.764514999929816,10.341005485970527,9.805841899942607,9.749786567874253,9.741057876497507,9.000669688917696,8.324731600936502,8.392477243207395,7.739427404478192,8.709991874173284,8.986462930217385,9.284300536382943,9.68106646509841,9.706469499040395,10.515054199378937,10.108262794557959,9.492906275670975,9.563985696993768,10.191164825111628,10.197475194465369,10.95137044787407,10.315210824366659,10.048564474098384,9.901676812209189,9.585533089004457,9.449215445667505,8.47237108182162,8.563897520303726,9.089753122534603,8.272801036480814,7.8496354329399765,7.507750480435789,7.504349147435278,8.096502797212452,8.75659977318719,7.823728006333113,8.509138513356447,7.532723807729781,7.050710301846266,7.0015329220332205,6.053947828244418,6.449851654004306,7.07066589826718,7.619487608317286,7.128421125002205,6.964872685261071,6.915240530390292,7.683895630761981,7.995929057244211,8.028084645979106,7.544223036617041,6.887691791635007,6.799908089917153,7.585365912411362,7.395614159293473,6.662781100254506,5.79809121415019,5.53184551699087,5.583841027226299,4.972859383560717,5.121862389147282,5.635739183519036,4.755153258796781,3.8418596633709967,4.248447267804295,4.079419540707022,3.7930897967889905,3.532234091311693,3.161792189348489,2.2935861833393574,2.9742067684419453,2.164093840867281,2.008548825979233,1.9797631003893912,1.822291920427233,2.5125911491923034,1.68342273728922,2.026242669671774,2.0121829989366233,2.0514529207721353,1.1449941573664546,1.6531227161176503,2.0772499702870846,2.4875455289147794,2.120239868760109,2.9787286720238626,3.0621411073952913,3.538770188577473,3.8009674651548266,2.8793719415552914,2.2051109918393195,2.502744061872363,2.143978959415108,2.0705568394623697,1.26116550154984,0.503325039986521,0.7660815585404634,0.9856121726334095,1.4645914360880852,1.4537350651808083,2.0856489608995616,2.880585913080722,3.026161408983171,2.1890961970202625,1.7785879988223314,1.308232146780938,0.904007438570261,1.0764937866479158,1.4060993818566203,1.5164008606225252,0.9849356892518699,1.9088848372921348,1.838231042958796,2.2479201862588525,1.6527350987307727,2.298460985068232,2.1483973120339215,1.7015478871762753,2.1321365921758115,1.828591433353722,2.4819014128297567,3.2295217057690024,3.9420749195851386,3.9502500179223716,3.1046393094584346,2.2020835294388235,1.8095112605951726,1.1327319447882473,1.627047874033451,0.6562313414178789,1.2962465528398752,0.49032824533060193,0.9077906757593155,-0.009686511941254139,-0.4359103022143245,0.05340641783550382,-0.27872375352308154,0.18648872571066022,-0.7595422468148172,-0.26055589132010937,-0.5912894224748015,0.048277496825903654,0.7255411120131612,-0.2472038404084742,0.3092548782005906,0.6332413204945624,0.18269273871555924,-0.3619104321114719,-1.1191629879176617,-0.6007332731969655,-1.2395909358747303,-0.2609308985993266,0.342347611207515,0.04997886996716261,-0.25392067432403564,-0.3460048232227564,-0.6250811382196844,-0.5418939450755715,0.126159877050668,0.714514244813472,0.12270116014406085,-0.20744250668212771,0.3528134529478848,0.9205603003501892,0.26187580544501543,0.43851333810016513,0.0754095003940165,0.560087027028203,0.10287118935957551,-0.18838105397298932,0.7897779075428843,0.2920030476525426,-0.60066341701895,-0.1236896263435483,-0.5009797103703022,-0.6683561098761857,-0.07520277192816138,0.521699414588511,0.5345249134115875,0.22132207360118628,-0.11635093949735165,-0.3897837335243821,-0.5196024384349585,0.40980041585862637,0.46771269338205457,-0.15896220318973064,-0.17548616928979754,0.555636522360146,1.4153641304001212,2.339214827865362,1.958731942344457,1.33151990827173,1.3467065375298262,1.8591957944445312,2.82902906043455,2.2569706388749182,2.4467010218650103,1.7465516440570354,1.339217553846538,1.4430950684472919,0.8444305802695453,1.078340070322156,0.807517446577549,1.1714786747470498,1.8300249930471182,2.0954723400063813,2.6056548934429884,1.7697390457615256,1.600618937984109,0.8367314422503114,0.9341236636973917,1.4767781696282327,0.7541858525946736,0.11307299369946122,0.8117073206230998,1.5635469551198184,1.2689926750026643,1.4155440274626017,1.1516385404393077,0.9484917111694813,0.7292951112613082,0.4049894576892257,-0.5505800973623991,0.37231961730867624,-0.4763499819673598,-0.5387141769751906,-1.2616384173743427,-0.7068595578894019,-1.2899596272036433,-2.028867500834167,-1.8628854150883853,-2.7277873368002474,-3.4607885614968836,-2.846385343000293,-2.644190216436982,-2.9396267901174724,-3.0399566399864852,-2.8461318467743695,-3.6477208328433335,-3.5759193529374897,-2.674422262236476,-2.7134311348199844,-2.1204129182733595,-3.1197719764895737,-3.436622241511941,-3.133274724241346,-3.8510272093117237,-2.8745927060954273,-2.680911164265126,-2.454183802008629,-2.387422845698893,-2.2148005231283605,-2.3627944262698293,-2.309977834112942,-2.2263889643363655,-1.6654302524402738,-1.7055771332234144,-1.9811266954056919,-2.713649113662541,-3.687546090222895,-3.3943779431283474,-4.034640333149582,-4.002196328248829,-3.0632341909222305,-3.051671319641173,-2.3430976602248847,-1.3658415991812944,-0.9735861429944634,-0.09160339226946235,0.6789532699622214,1.5405037929303944,1.5492868963629007,2.419471934903413,2.1915187630802393,1.8856768659316003,1.7006745589897037,0.927782894577831,1.3761886237189174,0.46481485618278384,1.3383904905058444,2.094501879066229,1.3044413556344807,1.5397161659784615,1.651946455705911,2.2508125100284815,1.8524878933094442,2.2911829142831266,1.7150302585214376,2.527458006516099,2.2922056103125215,1.871903085615486,2.3245532694272697,3.14372155116871,2.5094972220249474,2.5425663078203797,1.6554939826019108,1.1585460864007473,1.5158570078201592,1.2607852895744145,2.0719965682365,1.273834585212171,1.734009659383446,0.8591216444037855,1.419769337400794,0.494017927441746,1.0759088615886867,0.7946396698243916,0.9331818004138768,1.2879485380835831,0.30701932357624173,0.9510706211440265,0.6728216418996453,0.556687387637794,0.011924069374799728,0.16444206004962325,-0.5711876419372857,-1.1708570821210742,-0.7362153921276331,-0.17695782985538244,0.758680950384587,0.6625078683719039,1.1543461889959872,1.2687519015744328,1.7601815238595009,1.5451493132859468,1.6773135964758694,1.7613210566341877,1.693744252435863,0.7414744021371007,0.34562876215204597,0.7420336110517383,0.9176438441500068,0.6066402052529156,0.32392434496432543,-0.5145343700423837,-0.3670373526401818,0.30983120994642377,0.5527425860054791,0.7770857261493802,0.6697034914977849,0.39934863429516554,0.3708155327476561,1.2236797409132123,1.8094732402823865,2.5897688628174365,2.519619068596512,2.212894981727004,3.0162147632800043,2.7502880664542317,3.6365768713876605,4.146651517599821,4.5527603924274445,4.999183134175837,4.455902556888759,4.5903888419270515,4.253033388406038,3.525452241767198,2.9298386978916824,1.9489434277638793,1.0517891426570714,1.6120978873223066,2.3362670857459307,2.0179591374471784,2.8400516603142023,3.225676169153303,2.301143418997526,1.631031196564436,1.1402485449798405,0.3585076658055186,0.2590100122615695,0.06297035608440638,0.5942993820644915,1.0211139423772693,0.18719882937148213,1.112168023828417,0.8489250265993178,0.9123372221365571,0.8552862270735204,1.0256317649036646,0.7270521391183138,0.7999838260002434,1.7293029138818383,2.3377643595449626,1.6490815267898142,1.4671161798760295,0.6613880875520408,1.0650405851192772,1.8809023494832218,1.9595155701972544,2.198967056814581,2.225029786583036,1.815238710027188,2.5751280984841287,1.6058061229996383,2.2042739652097225,1.8729055766016245,2.6187470383010805,2.835359905846417,3.7426758017390966,4.581223078537732,4.872768350876868,5.362914614845067,6.057906456757337,6.7411374961957335,5.994631519075483,6.821483062114567,7.121131741441786,7.2492284453473985,7.7240140358917415,7.837624141015112,7.1136212521232665,8.03919860208407,7.070470180828124,6.38590326718986,7.145488856825978,7.1363748027943075,7.369895296171308,7.88573687011376,7.373672454152256,8.26084210164845,7.879881749860942,7.899665320292115,7.443134828004986,6.746832606382668,6.594954424072057,7.09614035114646,7.406651251483709,7.628956682980061,7.0752615495584905,7.515046423301101,7.151742218993604,7.725148749072105,8.510139601305127,7.584345029201359,7.762867241166532,8.268467829562724,8.51338988961652,8.625757718924433,7.910205476451665,8.503233016468585,7.936600261833519,6.971612606663257,6.40520409680903,6.762693508993834,6.998177332337946,7.8335752985440195,7.745269603095949,7.736808035522699,7.569907133467495,7.679348103702068,7.9542143465951085,8.506993502378464,7.876379078719765,7.807208763901144,6.97610369650647,7.646495882421732,7.63169430103153,7.974610070232302,8.317056383471936,9.01950094010681,9.290418848861009,8.886081484146416,9.746072339825332,8.872962166555226,7.931246252730489,8.11155292764306,7.290187792852521,7.253577605355531,6.764575172681361,6.956656065769494,6.446342449169606,5.795613430440426,6.671691436320543,7.453604822978377,6.921239997725934,6.875288502778858,6.4485049759969115,6.912446559872478,6.475657660514116,6.892278080340475,6.659041014034301,6.7712981081567705,5.797904195729643,6.747793163638562,6.8148127337917686,5.849797130562365,6.788502413779497,6.647458006162196,6.824370524846017,7.370111123193055,8.12694211024791,8.16285569081083,7.5446793315932155,6.993915374390781,7.88479766016826,7.4511677687987685,8.433251933194697,8.536270469427109,8.897088512778282,8.382530698552728,7.513424995820969,7.217514696996659,6.749368468299508,6.540745143778622,6.318794385995716,6.218164710793644,7.112475284840912,7.101802962832153,7.264648190699518,7.470483672339469,8.441948869265616,9.14612519973889,9.659976080060005,8.83528953557834,9.0427284729667,9.0130785102956,8.678197874687612,8.333303734660149,8.568808607757092,7.753740111365914,8.653983343858272,8.935793696437031,8.153265884146094,7.956432986538857,7.286766269709915,7.669736177660525,7.851626756135374,8.482570472173393,8.915263373404741,9.360004174988717,9.980621851980686,10.85036581940949,10.764051602222025,10.095393355935812,10.123418100178242,9.342861107550561,9.9354437449947,9.303195395041257,9.389498476404697,9.001351786777377,8.48880099831149,7.643091149162501,7.332985202316195,7.634746422991157,6.745462644845247,6.7973200785927474,5.908845091238618,5.659996715374291,5.992369317915291,6.333140216767788,5.892693524248898,5.8153270916081965,5.601658653933555,4.765293370932341,5.432871347293258,5.6994281420484185,5.419033943675458,5.093917121179402,6.009497322142124,6.13885431503877,5.178810397628695,4.499947946052998,4.46341765159741,4.700552931055427,3.9791495124809444,4.784049166832119,5.403424609918147,5.108042458537966,5.504201984964311,5.259548707865179,6.009220873005688,6.156068649608642,6.488802048377693,5.870359041728079,5.047509121708572,4.7228543953970075,5.485809930134565,5.494349793996662,5.789145196322352,6.229668275918812,5.415025827009231,5.688205142505467,6.364932390861213,6.4873808566480875,6.029517138842493,5.204875605646521,4.871872007846832,4.520097501575947,5.302659589797258,4.939147430937737,4.9153062012046576,3.9907411844469607,3.6351397270336747,2.7429650179110467,2.1393457506783307,1.4000702081248164,0.6312464880757034,0.24165000347420573,1.1229954375885427,1.9647347135469317,1.612776636146009,1.33155078580603,1.9546161526814103,2.5117238061502576,2.5081095988862216,2.0929942885413766,1.137629165314138,0.349685029592365,0.07255103066563606,0.7895099916495383,0.43119126837700605,0.008935351856052876,0.25802317121997476,0.013209693599492311,-0.4574170890264213,-1.336274650413543,-2.273227794561535,-3.174496467690915,-4.155216058716178,-3.2077111122198403,-3.1415841965936124,-3.758653781376779,-4.197243107482791,-4.198202118743211,-3.360498688649386,-3.215408697258681,-3.0051108743064106,-2.517470429651439,-2.8844451578333974,-2.324157413095236,-1.4093688880093396,-2.2701184628531337,-2.9539300370961428,-3.441161763854325,-2.8110406496562064,-2.6806381195783615,-2.184958486817777,-1.7242646319791675,-1.6893110405653715,-1.9947337042540312,-2.949880509637296,-3.1826888220384717,-3.0467174011282623,-3.341723070014268,-4.215595729649067,-4.5879760114476085,-3.6380802299827337,-4.111078387126327,-4.6012334590777755,-3.6174441375769675,-3.0557025684975088,-3.074208057951182,-3.127627234905958,-3.743043360300362,-3.8513546562753618,-3.925335419829935,-3.4511592481285334,-3.8227778407745063,-2.8485323041677475,-2.319491451140493,-2.0821370827034116,-1.6040730066597462,-2.187649496831,-2.0483059105463326,-1.5547972931526601,-1.74819092778489,-1.80407008016482,-1.8035081620328128,-1.0493981125764549,-0.545272150542587,0.0960993031039834,0.29656515875831246,0.6274162493646145,0.9500984558835626,1.5014231647364795,0.7006722292862833,1.2007496356964111,0.36510855983942747,0.7147813336923718,-0.02298574009910226,0.8293521543964744,0.7786420998163521,0.09844492794945836,0.2686530719511211,-0.6795407352037728,-0.8691207654774189,-0.25437139766290784,0.5189865683205426,1.039219660218805,0.70931158028543,1.2454238757491112,0.3954585250467062,0.12321818619966507,0.7637163773179054,1.723066994920373,1.1886742864735425,2.1191026736050844,2.9226280311122537,2.8454600027762353,3.4079028009437025,2.6757278060540557,2.9825645447708666,2.5233630719594657,1.6436236598528922,1.4978383458219469,1.7688489346764982,2.3378180358558893,3.2673565153963864,2.3323466004803777,3.0947573762387037,2.8301748507656157,2.901110558770597,2.2460346948355436,3.1323148808442056,3.603443012572825,2.9122407459653914,2.5582365919835865,2.0069485269486904,2.343535488471389,2.573377810418606,2.0495672314427793,1.8825625549070537,1.9954453576356173,2.418944376986474,3.4097775537520647,3.24938883446157,2.3788245478644967,2.377673381473869,1.8841621414758265,1.2942234664224088,1.1984395696781576,0.9790211580693722,0.021015327889472246,0.5793786933645606,0.13834125036373734,0.5466324286535382,0.8837762703187764,0.37683161348104477,1.3256423198617995,0.793256766628474,-0.04931233450770378,-0.47739876341074705,-0.5009133289568126,-0.08502722764387727,-0.13597239647060633,-0.9556581983342767,-0.3575671361759305,-1.0198887414298952,-0.5489078694954515,-1.0830243057571352,-0.9291337262839079,-1.83961282344535,-1.1246089963242412,-1.3011266174726188,-1.2180168530903757,-1.9954327805899084,-1.2683718316257,-0.998625610023737,-1.8589600762352347,-1.6891152551397681,-0.7963793058879673,-0.700183023698628,-1.035207842476666,-1.136249391362071,-1.1122232698835433,-1.188502280972898,-1.2300741570070386,-1.3202672195620835,-0.562919904012233,0.3666165308095515,-0.46148698357865214,-0.35148295806720853,-0.20884777838364244,0.49154171952977777,-0.39847377873957157,-0.9126344416290522,-1.783108426257968,-2.7389790886081755,-3.2015698910690844,-2.7799885887652636,-3.3006150871515274,-3.1089469231665134,-3.542430382221937,-4.018783402629197,-3.1850135009735823,-3.681834022514522,-3.0944207874126732,-2.411831151228398,-3.3585944958031178,-2.3865297068841755,-2.1416025683283806,-3.0745295570231974,-2.4531595003791153,-3.017091518267989,-2.163281120825559,-3.0910659204237163,-3.6022703577764332,-3.5308277499862015,-3.2182739498093724,-3.059683474712074,-2.4133829749189317,-1.4988610404543579,-1.532062311656773,-1.6999263535253704,-1.4354226840659976,-1.6730047529563308,-1.801405971404165,-2.0242665433324873,-1.9549938631244004,-2.5928154080174863,-3.560851570684463,-3.942511631641537,-4.458377887494862,-5.064238104969263,-4.706078483723104,-4.799482454545796,-5.078967925626785,-4.409024957101792,-4.417885253205895,-3.5025323764421046,-3.5896764784120023,-3.1063026799820364,-3.5305031281895936,-3.1826086593791842,-2.5806511691771448,-3.402257837820798,-3.262978197541088,-2.463566653896123,-1.492553882766515,-1.7142760679125786,-2.3204635311849415,-1.469583697617054,-0.8365885228849947,-1.0491249216720462,-0.14049252169206738,0.6846758271567523,1.1145161273889244,1.1419150098226964,1.2334786006249487,1.63136375695467,2.396984212566167,2.9804657883942127,2.1592290033586323,3.097563464194536,3.2249744357541203,2.7445087623782456,2.9554262566380203,3.4059963962063193,3.992874684277922,3.8827832494862378,3.167118209414184,4.001411734614521,4.974592591635883,4.722735377494246,5.509451489429921,6.243849704507738,5.957705350127071,6.3199932421557605,6.983292722143233,6.1835038480348885,7.10733395209536,7.778775609098375,7.012503605801612,6.793141853064299,7.103605593089014,7.679894797503948,7.873197482898831,8.051468808203936,8.051227809861302,8.975542538333684,9.146739257033914,8.924417153466493,9.818020974751562,9.797791177872568,10.715442695189267,11.320359118282795,10.885242976713926,10.698298022150993,10.605130767449737,10.022040741052479,10.392450256738812,11.281118723098189,10.658494708593935,11.611808313056827,10.676866807509214,11.616859863046557,10.679063759278506,10.881556226406246,11.610322893131524,12.413491281215101,13.388710260856897,13.03700551064685,12.044534767512232,12.16698672901839,12.270739196334034,12.478440535254776,12.542687963694334,13.458499424625188,13.603563127107918,13.871151436120272,13.646000704262406,13.761272388510406,13.601648114155978,14.271315408870578,14.170009192079306,14.946675621904433,14.97818606859073,14.041141933761537,14.598506974522024,15.456449680496007,15.483711723703891,14.883177731651813,14.416691820137203,13.999728147406131,14.48368677822873,15.029980610124767,15.719211627729237,14.921015214640647,15.680279313120991,15.040320973377675,14.916166100651026,14.770048257429153,14.239518369548023,13.683463179972023,14.57097236206755,13.991910567507148,13.543907845392823,14.325435042846948,14.824831715319306,15.215059381444007,16.187753909733146,15.297410774044693,14.989404939115047,15.346585073508322,15.194926456082612,15.583963536191732,15.830901575740427,15.157505230046809,14.364721169695258,14.45832495065406,13.818259460385889,14.255382137838751,15.043154472950846,15.442112014628947,14.531205634586513,14.968876264523715,14.816088628489524,15.797108800150454,15.341740666888654,14.64951276499778,14.267765616066754,14.627896199002862,14.228193395305425,14.986128514166921,15.51916680438444,15.17998262681067,15.761438556481153,15.925761688966304,16.473363804165274,16.470809773076326,15.919385520275682,16.275732413865626,15.756014139857143,15.91180125111714,16.516057963948697,16.887635914143175,17.463377722539008,17.105158773250878,17.447882956359535,17.076858811546117,17.107163777574897,16.154637996573,15.900572907645255,16.48355041537434,15.873818986583501,16.099863304756582,16.426841326523572,16.305054408032447,15.385866966098547,14.48469940200448,14.09436161071062,13.696097512263805,14.138369161169976,13.196501543279737,13.157737287692726,12.520596043672413,13.515160815324634,12.735718737822026,12.449159756768495,12.69120564032346,13.449801679234952,12.594368856400251,12.517668944783509,12.933366475161165,13.146696156356484,13.964070543181151,13.147027057595551,13.993530681356788,14.220392141491175,14.025267411954701,13.800503595732152,13.045200117863715,13.189555642195046,12.346359006129205,13.180266169831157,13.761414092965424,14.028791623655707,14.341850483324379,14.514790858142078,14.796492594759911,14.581853257492185,15.048663220833987,15.876033730339259,15.212832769844681,15.021782600320876,15.361970145720989,16.115470385644585,15.73024137923494,16.402377964928746,15.857701025437564,15.232168205548078,14.691326614003628,14.145201712381095,14.149225827306509,14.181265814229846,13.299699845723808,12.930568942334503,13.134272119961679,13.659581976477057,14.269864363130182,14.620618700049818,13.94421064388007,14.639337433502078,14.209429007489234,14.618756961077452,15.320257342420518,15.890004282351583,15.592515552882105,15.692082397639751,16.50434447452426,16.941838790196925,15.943882423918694,15.886840787250549,15.622931170277297,15.292311260011047,14.78675788268447,15.46960487170145,14.550551487132907,14.324111792258918,14.45982416626066,14.584289939608425,13.940472618676722,14.325135105289519,13.50368712702766,13.766903075389564,12.86602769093588,13.502530555706471,14.267555810976774,14.59414946148172,14.970518475398421,14.804340173956007,14.927157579921186,15.538374356925488,16.31229813816026,15.323188170325011,15.579277092125267,16.02968783630058,15.841394795104861,15.834504710976034,15.994233850389719,16.37829405302182,16.261822362430394,15.892856813967228,15.327986744232476,15.424588558264077,15.464185347780585,16.02954486431554,16.15548793785274,16.044313707388937,15.812425611075014,15.75670226616785,16.095945620909333,15.32699631433934,15.409305088222027,15.549480660818517,15.982858191709965,16.40573156159371,16.32249659160152,16.917891267687082,16.786706391721964,16.830878724809736,17.48202533321455,18.294036784674972,17.946786832995713,18.058028415311128,17.96404854161665,18.417177041526884,17.84140095440671,17.363268291577697,17.378319279290736,16.40505812736228,15.437330762855709,16.336561200208962,16.42018989054486,17.209963428322226,17.70561952702701,18.44194931257516,17.78912595100701,18.309713885188103,18.502693257294595,17.968158956617117,17.57978086080402,17.614790624007583,17.007532227784395,16.62572496663779,17.022172948345542,17.7399440552108,17.55604640673846,17.22422567429021,17.95968954078853,18.781184599734843,19.653013386763632,20.219075829721987,20.23804750200361,19.585746621713042,18.67523721139878,17.788340652361512,18.62807109253481,18.22851222055033,18.35021695215255,17.68785321805626,18.218114509247243,18.685693342704326,18.50353619735688,19.40194233180955,18.418003981001675,18.4688524142839,19.00826486898586,18.985149320680648,18.215108998585492,18.85567425051704,18.64636921416968,19.27686450537294,19.221562074963003,19.798123721964657,19.184440986718982,19.842969473451376,19.77831327356398,19.572744655888528,18.576929069124162,19.373576181940734,19.385799971874803,19.009641343262047,18.195364660583436,18.457940618507564,18.07636150997132,18.35399041743949,18.770795772317797,19.228978184517473,20.155792482662946,19.487442524172366,18.704812568612397,18.68342099385336,18.923679548781365,19.564099823124707,19.61884808819741,19.13364681508392,19.822101432830095,19.88499884540215,20.548390579409897,19.954095534980297,19.962236781138927,19.228836573194712,19.390766129363328,19.982985532842577,20.02265545912087,20.716346023604274,20.73109701089561,21.4458833001554,20.965245382860303,20.319898854009807,20.42377906339243,20.25052563333884,20.66853598691523,20.79631017660722,19.905490253586322,18.93714998709038,19.303610378410667,19.457969806157053,19.528824926819652,20.025102915242314,20.08348825899884,21.083316748961806,20.882793934550136,21.855954207014292,22.480713685043156,23.339593956246972,22.57584728114307,22.26951858540997,21.963742448948324,21.013457654509693,21.804535313975066,22.351297203451395,22.39188425242901,21.440190244931728,21.694743311032653,21.29468904528767,21.551737600471824,21.837584462948143,21.933581439312547,22.31295109493658,23.110346383880824,22.509348839055747,21.57757244305685,20.845985554158688,20.811136555392295,20.860556446015835,21.18711377121508,21.082354097161442,21.055310619994998,21.230567031074315,21.49266081256792,22.12263393867761,22.216550130862743,22.493658082559705,23.47458528028801,24.399758871644735,24.433377746958286,24.772058508358896,24.020314384717494,24.380979703273624,23.481376593001187,22.702571301721036,22.571565586142242,22.19239987572655,22.664610990788788,22.26299878768623,22.19723698636517,22.268295157235116,21.881236605346203,21.545909849461168,22.342492586001754,22.475450567901134,23.078606579452753,23.80908938590437,24.638986890669912,25.25778687093407,24.312855922151357,23.72735276957974,23.107022389769554,22.284316318575293,22.652064954396337,23.236820973455906,22.64460268523544,22.9250051882118,22.14390995912254,22.204574196599424,23.049474117346108,23.837246283888817,23.38967234827578,22.45411385735497,23.11044335225597,23.84088600613177,22.925190908834338,23.449991493485868,23.09878308651969,22.720311685465276,23.1568593964912,22.553443098440766,22.89163590874523,22.218916832935065,22.054626886267215,22.3617363255471,23.029241668526083,22.926212721969932,22.538804857525975,23.40622593415901,24.0090824496001,23.52845953963697,23.302998869679868,23.93724935501814,23.46166440891102,24.315918381791562,25.215369512792677,25.50370567617938,24.513940872158855,23.725608941167593,24.020529767032713,23.424515263643116,22.56960036419332,23.033828084357083,22.29877081187442,21.88668509013951,22.48843322088942,21.94772452209145,22.57166314451024,21.7682918603532,21.408076158724725,20.55897088209167,21.480160457082093,21.12164419842884,22.120220338460058,21.46690840786323,21.6419859174639,21.568820966407657,21.301994231529534,22.150586968287826,21.38414155319333,21.281099968589842,20.777863507159054,21.55625482974574,22.160424610134214,22.508792453911155,22.212195021566004,21.61118785943836,21.913964016363025,22.536748811602592,21.937569801695645,22.713991495780647,22.228805827442557,23.086993160657585,22.34229840245098,22.174856557976454,21.455080767627805,20.997614225838333,21.151332852896303,21.44700031913817,20.91644335584715,20.364935494028032,20.659375675488263,21.381771402899176,21.377253581304103,20.99435865599662,20.327120644506067,20.7798756333068,20.71076185302809,19.94700086954981,20.503784460015595,19.867959799245,20.318409520667046,20.964199473150074,21.734776428434998,21.02217851160094,21.628460232634097,21.996876594610512,22.9906653650105,22.01160432258621,21.454189099371433,21.12318260129541,20.63568817777559,19.924876178614795,20.222817786503583,21.16160307591781,20.750638249795884,21.024366167373955,20.076432303525507,20.14663313096389,20.16115312790498,19.729618470650166,19.6254605287686,20.248929619789124,20.649570050649345,19.73767778556794,19.757728175260127,20.65106055745855,20.393793797120452,20.856993472203612,20.90616022842005,20.587959522847086,20.436410537920892,20.534574415069073,21.48280958319083,22.171202703844756,22.98308609938249,23.856732756830752,23.18338575353846,23.48675053799525,22.64078142354265,21.661381454207003,21.67692757351324,21.867055914364755,22.67699942877516,21.76948868436739,22.25720359524712,21.570725954603404,20.62954110139981,20.933408895041794,21.796565239317715,21.83163007814437,21.27239676611498,21.607615388929844,21.77699563233182,22.637748113367707,22.94413693714887,22.555224702693522,22.242532384116203,22.08180059492588,21.22545213671401,21.56058647716418,21.18100557103753,21.394297274760902,21.90463663963601,22.73551988042891,22.255549364257604,22.544701031874865,21.575424070935696,20.87211614102125,20.876605589408427,21.06425591511652,20.76318145589903,19.886492725927383,19.836677755694836,20.58300052769482,21.024971743114293,21.29378738347441,20.38348131114617,20.88795826677233,20.36673884605989,20.838541934732348,21.83574013458565,22.100321137346327,21.420029582921416,21.323474782519042,21.013799617998302,20.026457947678864,19.822347092907876,19.133141290396452,19.162134926766157,19.90246260119602,19.499248229898512,19.804596948437393,19.474916566628963,19.989401880651712,19.932812493294477,20.226335044484586,20.584938671905547,20.891251287423074,20.155456874519587,19.427001056727022,18.450894829817116,17.64735397649929,17.869079628959298,17.274247975088656,16.60309545136988,16.92005707230419,17.389472376555204,17.230603370349854,16.833183211274445,17.80109519744292,17.327915139030665,17.066301346756518,16.97734778560698,16.208664749749005,16.00002162437886,16.61731698550284,15.619603898376226,15.18382132332772,15.366378971841186,15.07475917879492,14.406930662691593,14.732232949696481,14.169958040583879,14.722694509662688,15.331526034511626,15.977795352227986,16.623735115863383,15.645624557044357,15.709498127922416,15.571315904147923,15.547595208976418,15.190528532024473,15.601746920496225,16.373539579566568,16.88561039790511,16.802719505038112,17.66065849736333,16.680306636728346,16.07808705838397,16.0000380249694,16.818185552489012,16.039738861843944,16.939820119645447,17.300796621013433,17.957111964467913,17.193927828222513,16.61527557251975,17.215694547630847,17.679985533468425,18.021422358695418,18.843512624967843,19.2088234834373,19.44109814381227,19.946849647909403,19.590590131934732,20.41146005736664,20.880094376392663,21.65306518599391,22.496828782372177,22.168861952610314,22.14379125693813,21.999999140389264,21.390389701351523,21.63253107154742,22.421504476107657,22.3230197513476,22.67061684653163,22.588178194127977,22.24562864471227,23.123346884269267,23.483087472151965,22.897942383307964,22.854438387788832,22.53180665988475,22.100873325951397,22.881841977592558,23.789734087884426,23.217691996134818,23.130404969211668,23.306909832172096,23.431639115791768,22.667322994675487,22.450282657984644,23.29068736406043,23.126330153550953,23.153888995293528,24.020542019978166,23.066091757733375,22.47992488462478,22.346668029669672,21.649029004387558,22.28556391596794,21.533179867547005,20.701446533668786,21.563290243037045,21.244753619190305,20.341377640143037,20.022379021160305,20.93812385899946,21.683618939481676,21.479604826308787,20.603382277768105,19.785903410520405,20.438153497874737,20.422923729754984,20.575516840908676,19.798786079976708,19.208402599208057,18.81402093032375,19.16293984511867,19.770498137921095,19.818003052845597,19.986663246992975,19.91957316407934,20.15273214923218,19.98043328523636,19.478758545592427,19.419736336916685,19.938901101704687,20.68865492613986,20.093343809247017,19.296992991119623,18.444899667054415,18.785450746305287,18.49618579307571,17.689652970526367,18.435645611025393,18.86981531837955,19.421835642773658,18.60747944517061,17.845265456475317,18.544517897069454,17.875563444104046,17.319166623521596,16.672954441513866,15.88484810385853,16.51194487977773,17.28087488329038,17.872427592985332,18.233523211907595,17.311972341965884,16.47302951849997,16.028119636233896,16.85390916792676,17.291931699495763,17.811291209887713,18.481041200924665,19.395978796761483,19.798343694768846,20.12691244063899,21.11088430834934,21.519007592927665,20.868390247691423,20.77414686186239,21.309675069060177,20.756337750703096,21.524945225100964,21.900911066681147,22.335199487861246,23.21345258783549,23.195107222069055,22.66167881526053,22.711041608825326,22.464130468200892,22.50519694155082,22.634931199718267,22.2288483902812,22.100563699379563,22.899414332117885,23.39755189884454,23.863399079535156,24.085498708765954,23.758978229947388,23.54205126920715,24.036799216642976,24.432867928408086,23.998214488849044,24.229663053061813,23.886825563386083,23.283972489647567,22.542249177582562,22.48669524071738,23.15538502065465,23.80052031762898,24.37270483188331,24.80203075008467,24.570558635052294,25.409540463704616,25.177951307035983,25.728156650904566,26.33972747437656,25.897219453472644,26.265251053497195,26.12997503299266,25.69610659684986,25.134493697434664,25.775023479945958,25.754714271984994,25.099506252910942,25.09201596584171,24.67880796920508,24.50158945284784,24.994209040421993,25.82678257348016,26.092825117520988,26.04541823035106,25.198259316850454,24.635804687161,23.693093383684754,24.51128833508119,23.609401322435588,24.525230939965695,24.04072315711528,24.291711959522218,23.981650299858302,24.076853232458234,23.713527493178844,24.340208446141332,23.693349715787917,24.49086815631017,25.480255502741784,24.542994044721127,23.8264730097726,23.240582651924342,23.114818527828902,22.632319192867726,23.256860103923827,23.058143080677837,23.78618955006823,24.1929965284653,23.51038906350732,23.865891227964312,23.95299995644018,24.81421523168683,25.38920724997297,25.403546726331115,26.099168669898063,25.7535907397978,25.808216266799718,25.740325305610895,25.05345338024199,24.374131661839783,24.497369390446693,23.59692656621337,24.596634726971388,24.5797204291448,24.462683299556375,24.083329421002418,24.106920979451388,24.882527645677328,24.52136075310409,25.500031421426684,25.095488781575114,25.94697081670165,25.49542701523751,24.80678883427754,25.48738612420857,26.1454682466574,25.448179320897907,24.942076575011015,24.086304771713912,23.83327058656141,23.25660817278549,22.762219855561852,22.515681082382798,22.032607770059258,22.310223394539207,22.597206657752395,21.842194584663957,21.43930998072028,21.66028491454199,21.539553480688483,21.66724988631904,21.447092114482075,20.59015092952177,21.475146821234375,21.79831611458212,20.956607833970338,20.12171205552295,20.97248615603894,21.677877855487168,22.488035573624074,22.857579867355525,22.900810199789703,23.399302048143,22.78885310329497,22.410684667062014,21.54260932095349,22.416790964547545,22.513607040978968,22.06757389008999,21.911667759995908,21.526067006401718,21.132525745313615,21.28791097458452,22.023584456648678,22.905021282844245,23.42616092786193,23.880366501864046,24.114842308219522,24.750761663075536,25.243821288924664,24.25163038400933,24.668066089507192,24.804154070094228,25.331064464058727,24.347368062473834,24.635060760658234,24.150231016799808,24.09708441235125,23.830532275140285,23.718420112971216,22.87960521504283,22.97875738935545,22.516921273432672,22.309152921661735,23.210069444961846,22.38491343241185,21.673784884158522,21.32861644588411,21.055471545550972,20.35556901106611,19.72922755498439,18.85482950648293,19.612327098846436,19.20434375014156,18.920002547558397,19.284406744409353,19.26264222152531,18.89977341843769,19.161297673825175,18.310862636659294,18.470560126472265,19.45924628758803,19.089377626776695,19.53419963736087,18.534811221063137,18.534026695415378,18.898588744923472,19.61636181920767,18.876512873452157,19.775867014192045,19.12292758980766,19.33469106629491,19.418183482717723,19.152366624213755,19.837945028208196,19.798777968622744,19.487177653238177,19.377781762275845,19.74832486268133,20.155827710870653,20.49640330672264,20.389865982346237,20.053919424768537,21.011850220616907,21.46083002863452,22.023104668594897,21.512971506919712,22.444036137778312,22.798202907200903,23.301050730980933,23.590440038591623,22.653451622463763,21.876609002240002,22.06665404047817,21.198450561612844,20.363812221214175,20.230221214238554,20.918884330429137,21.651396302506328,21.818595218472183,22.62349997833371,22.091160175856203,22.24897601781413,22.66397444717586,23.020392674952745,22.561033997684717,22.176684459205717,23.113413063809276,23.25654767639935,22.297936554532498,23.033730150200427,23.737012886907905,23.003771892748773,23.280830909498036,23.042054812889546,22.161928141023964,21.645117892418057,21.483994607347995,21.931215127464384,22.063814585562795,21.771556456107646,22.26915957266465,21.7643523379229,21.69245668966323,22.262006239034235,22.51315124798566,22.898981280624866,23.37382744718343,22.387226595543325,21.54580257507041,20.645611458923668,21.213493887800723,20.89256400614977,20.56496892729774,20.88669800106436,20.054077294189483,20.59593384480104,20.85189473349601,20.108369385357946,19.112305311486125,19.366992436349392,19.885576208587736,19.9917055638507,20.681574346497655,20.99700556183234,20.011518987827003,19.380337406881154,18.92252937471494,19.388635030016303,19.85236572707072,20.722558348905295,19.802701816894114,19.519315359648317,20.300629028119147,19.964626901317388,20.62767984997481,19.91084464499727,20.687205714173615,20.793411495164037,19.86565917544067,20.317607203498483,20.87127412110567,20.804611942265183,19.863953605294228,20.562284825835377,19.99299851246178,20.055020629428327,20.929825257044286,21.092377486173064,21.166304451413453,20.770921890158206,20.793537949211895,21.391912295948714,21.940555467270315,21.321717714425176,20.74912304058671,20.35998298646882,20.06599410949275,19.266041580587626,19.895538727287203,19.76910403650254,18.773111545480788,19.418677353765815,19.392637223005295,19.724171090871096,19.828278415370733,19.11488599423319,19.341804826632142,19.791954460553825,19.54878864856437,20.08730654185638,19.125256509520113,20.094693652819842,20.00380550697446,20.555862004868686,21.168919181916863,21.504740013275295,22.03329931013286,22.95389030035585,22.506402771454304,21.76638247212395,21.686717884149402,22.290039958897978,22.4119890560396,22.01424821699038,22.15402065170929,22.823114465922117,22.18610196793452,21.40914602437988,21.513772958889604,21.301918542478234,21.961412854958326,22.273875498678535,23.039688371587545,23.417106923181564,23.265819292515516,23.404034049715847,24.38688213005662,24.77431861544028,25.58002904523164,26.143640710506588,25.56787897273898,25.799133143387735,25.374499997124076,25.47137212473899,24.833170398138463,24.21528555592522,23.900917902588844,24.796454310882837,24.71723823202774,24.13032542495057,24.17240930115804,23.265769102610648,23.98191538779065,24.43125370424241,23.99222286278382,23.68966134218499,23.248208966571838,23.04052388202399,22.096893441863358,21.815569865051657,21.414104738272727,21.424296654760838,20.884121536742896,20.891969612799585,20.380887726787478,19.386857102625072,20.186625913716853,19.4883229508996,18.946217007003725,19.126005908008665,19.857918532565236,20.47549264272675,20.788653819821775,20.602919640485197,20.792757484596223,20.167899318039417,20.157523919362575,20.756000697612762,20.83743055909872,19.98228460503742,20.919781310018152,21.827288263011724,21.981409563217312,22.386346756480634,22.74355854280293,23.054934721905738,22.93339447537437,21.952814246993512,21.810606151353568,21.697631848510355,22.318294522352517,21.560940832830966,20.847247837577015,21.02772472379729,21.824968630913645,22.047385501209646,22.94830975215882,22.41831868607551,22.43457388645038,22.564805309753865,23.424383133649826,23.45499584218487,23.853582584299147,24.147437025327235,24.173795787617564,24.222684451844543,24.298645885661244,24.083697099704295,23.868697857949883,24.59515553386882,24.523167800158262,25.123632473871112,26.123377409297973,26.052062354516238,26.386221542488784,26.76739015104249,26.591544778086245,25.931646081153303,26.63086176663637,27.600562839768827,27.963921062648296,27.232788717374206,26.534716214053333,25.674017352983356,25.57428568508476,26.507574732415378,25.828654036857188,25.03369488567114,25.793755169492215,25.523218472953886,25.113645947538316,24.156769060064107,24.84707918856293,24.47921167081222,24.06755756959319,24.76097520906478,24.277044272981584,23.414464904461056,23.11820824397728,24.050632865168154,23.07910325238481,23.25690972013399,23.96813511569053,23.610259446315467,23.9708144008182,23.625773388892412,22.760090939700603,22.16299826838076,22.45430666161701,22.893190974369645,23.574443990830332,22.739443496335298,23.61451559746638,22.830756200943142,22.77745440043509,22.544532522093505,21.849192983470857,20.953803381416947,20.69657549029216,21.14380413433537,21.722712222486734,22.419660887680948,21.704991274047643,21.901655096095055,22.27750524878502,21.87937539257109,22.225824640598148,23.01513209193945,22.290711575187743,22.44451622478664,21.496000309474766,21.694219134747982,21.71164255356416,22.196373524144292,21.285104349721223,20.42618467565626,19.494386651553214,20.24672720208764,20.073033410590142,20.90307726850733,20.48122431570664,19.872666021808982,19.74254744965583,18.919530004728585,19.512556861154735,18.813109564129263,19.63929019961506,18.802627991419286,18.56117677828297,17.702374225948006,18.345152487047017,17.447830529883504,17.461000809445977,17.98365130694583,18.55833703139797,18.167842980939895,18.63723798049614,18.469863445032388,18.70692687900737,18.96224403148517,19.187375404872,19.106310151983052,18.306525642052293,19.152206317987293,20.091423884499818,20.678254713770002,19.743978376034647,19.612198217306286,20.41234957659617,20.023377204313874,20.17462288076058,19.90829088818282,20.54027233971283,20.43630049750209,19.848631892353296,19.660727464593947,19.71850517904386,19.269494025502354,18.541876025963575,19.530153279658407,19.99319534935057,19.310274897143245,18.551768377888948,19.42788044689223,19.552364737726748,18.70540761668235,17.979308404494077,18.323210815899074,18.316515440586954,19.161777790635824,18.726266343612224,18.019025911111385,18.05001238686964,17.782304959371686,17.663994318805635,18.65674422122538,18.61355272261426,18.954846479464322,18.838375123683363,18.536386468913406,17.578760836273432,16.73205984616652,16.49988933186978,15.574340410064906,15.14304877538234,16.03539618430659,16.792033274192363,15.900168207008392,16.505499742459506,15.965392222627997,15.162105588708073,16.159753646701574,16.592503549996763,15.917583572678268,16.127172934357077,15.334906700532883,14.897232391871512,13.979480194393545,14.383448362816125,13.401463112793863,13.172797350678593,12.978478655219078,12.95343392668292,13.380866599269211,12.54002995789051,12.555176209658384,13.517416353803128,14.040510432329029,14.129748239647597,13.137356026098132,12.85542226722464,13.352005492895842,13.27216313732788,12.877000668086112,13.526892380323261,13.45338540058583,13.139421813655645,13.220450620166957,13.141975337639451,13.863961967639625,13.466037374921143,12.82152718026191,13.010074403136969,13.105834987945855,12.476929065771401,11.722144306637347,12.59988955873996,12.074583626817912,12.061449578497559,12.657552796881646,12.757422836497426,13.20573269482702,14.118086216971278,14.877180744428188,15.58709838334471,14.951583435758948,15.111631189938635,15.284689233638346,14.770565538667142,14.441556143574417,15.123330196365714,15.64205511752516,16.106644806917757,17.066177975852042,17.566753277555108,18.44691245397553,17.898702553473413,17.816974313464016,16.93090897751972,17.48522006208077,17.11405846942216,17.08202198240906,17.933092537801713,18.651165504939854,18.830910458695143,19.423641751054674,19.68553446000442,19.34857320599258,19.270153931342065,19.348001576960087,18.87490956718102,18.082090506330132,18.475028513930738,18.499982826411724,19.372259399853647,18.654165062122047,19.018326146993786,18.715559624135494,18.357288274448365,19.11100704688579,19.745538346935064,18.98121281294152,19.049382500816137,18.453465840779245,18.548787091858685,18.13247350277379,19.099110334180295,19.203185039572418,18.41748098656535,17.651231918483973,17.287126076873392,17.011125984601676,16.89426501886919,16.563681182917207,17.346520632505417,18.074375336058438,18.573002649471164,18.428636570461094,17.534695448353887,17.658121986314654,17.27991838287562,16.655726234894246,17.328619511798024,16.626955885905772,15.91081374278292,14.985144199803472,14.805622884538025,14.114940664265305,14.32597170304507,14.05556295486167,14.187812237534672,14.917007870506495,15.44722237251699,15.96399440895766,16.4528902862221,15.85367405321449,15.659087740350515,14.71947065461427,14.510747664608061,14.141035392414778,14.133598061278462,13.238780750893056,13.257176510058343,13.16943823127076,14.154510556254536,14.781788473948836,14.887994173448533,15.219251141883433,15.068372752517462,15.636519076768309,16.588814068119973,15.822790652047843,16.421134614385664,16.678784218151122,16.177529050502926,16.89127748273313,16.136479723267257,15.366446079686284,15.545241700019687,16.381696661002934,16.677300876006484,17.458540531806648,16.8282340192236,16.83846509642899,17.457042175810784,17.0021836720407,17.957064943853766,17.707464061677456,18.389502734411508,19.360825865529478,20.360055129043758,19.447097594849765,19.007394143380225,19.249873952474445,18.621904730331153,18.879917971789837,18.48523883195594,19.160095968749374,19.87314919522032,20.056439557578415,20.215062886476517,19.70263012452051,20.30852991854772,19.509535896591842,19.107970154378563,19.371812750585377,18.489058361388743,17.612162332981825,18.21664945129305,18.748156629037112,17.78693364560604,18.504251221660525,18.828843432478607,18.57290352927521,18.49186774296686,17.806445616297424,17.509424411226064,17.76513767428696,18.61282924329862,18.39612183952704,18.270436296705157,19.07412462309003,18.88483969355002,18.114113735500723,17.16871291771531,17.15312553429976,16.45478744711727,17.168203951325268,17.119535240810364,17.556471872143447,16.83515666751191,17.49323562439531,17.34509789943695,16.866970519069582,17.699622246902436,17.290140298660845,16.36865186644718,17.144237936940044,17.474580319598317,17.58630794659257,16.97894925950095,16.34324801294133,15.432006967719644,15.988721658475697,16.124998883809894,16.675566036254168,16.489671032875776,17.04144660104066,17.425716968253255,18.01716084079817,18.8081896007061,19.53013360640034,18.926803539972752,18.839853935875,18.090916651766747,18.835572564974427,19.72123519703746,20.503080343361944,19.810015886090696,19.326394431758672,19.06802129279822,19.622668601106852,20.55142357526347,19.689281538594514,18.77740667015314,19.02533112326637,19.059017608407885,19.981074108276516,20.853213387541473,20.47992149507627,20.873957416042686,20.889361309818923,21.245989749673754,21.320290107745677,21.797358117997646,21.22560083353892,20.589428293518722,20.43758756062016,21.246562140528113,21.374229251872748,20.892860295251012,21.527492080349475,20.558748211245984,20.637318687979132,21.422975317575037,21.823067530989647,21.785812814254314,20.894553676713258,21.80862731486559,21.7785453684628,21.07560348091647,21.412992166820914,22.164251192472875,22.566810235846788,22.45792601350695,22.523035997524858,21.774151244200766,21.780515645164996,22.48239115672186,22.06610570428893,21.55994393955916,22.34451012685895,22.38749843649566,22.86263412842527,22.286028009373695,22.892902738414705,23.092190220486373,22.369189230259508,22.801075959112495,22.304150223731995,21.328930996358395,21.606955121736974,22.415368974674493,21.564971529413015,22.203193932771683,21.642072427086532,21.368153667077422,20.437680614180863,21.084578895941377,20.468264101538807,19.953553734347224,19.08248488046229,19.080514813773334,19.381148230750114,19.73621736234054,20.106601695530117,20.54535696702078,21.20452208444476,20.633619484491646,21.633504326920956,21.06253018975258,21.289979783352464,22.138431694358587,22.3776305122301,22.07672987272963,22.899716061539948,22.592306034639478,22.257098957896233,21.562898234464228,21.11950388830155,21.927845465485007,21.161736520938575,22.027397943194956,22.02798790950328,21.983051744755358,22.086913949344307,21.095346006099135,21.390570162329823,20.698678091634065,21.59333865204826,21.284410160034895,20.99166345410049,20.450381468050182,20.49548330809921,21.298499457538128,20.330385223962367,21.164614230860025,21.92686496907845,22.3051179908216,22.551406846847385,22.82524630613625,22.751709514763206,22.005314390175045,21.728845444042236,22.34598232153803,23.00927569437772,22.959285487420857,22.947592470329255,23.813537166453898,24.22371100448072,23.437936429399997,22.72655019769445,22.179390953853726,21.18046018620953,20.766453185118735,19.847446382511407,19.2304227091372,19.347698389086872,18.425476876087487,17.6658937940374,18.39123946754262,18.810082737822086,18.239620723295957,18.936630765907466,19.85416719969362,19.790298074949533,20.476896757259965,21.157046400476247,21.614356122910976,22.56240066513419,21.978437021840364,22.027585489675403,21.14225884852931,21.71181767852977,21.356308966875076,22.254346202593297,22.490125002805144,22.782214706297964,23.5291303191334,23.99348309217021,24.76419539563358,24.21908243233338,24.332449075300246,24.424948148895055,24.783655676525086,24.423261103685945,24.690058866050094,24.531722902320325,25.3605231102556,26.29208692489192,27.262507510371506,28.043868018314242,28.512938580010086,29.26302682189271,29.68982587615028,29.921373187098652,29.68742805812508,30.36782142613083,30.303404035512358,30.9772612801753,30.16030192282051,31.08177116047591,30.76524229394272,30.227727169170976,30.915666080079973,31.396104838699102,32.31088969158009,31.32390790525824,30.73111710883677,30.555974322371185,29.99842337006703,30.623118763323873,30.35905203409493,31.002441698219627,31.33768414799124,32.053644966334105,32.133099045138806,32.98535334458575,32.21947441343218,32.343749767169356,32.75001305807382,32.02505331719294,32.384493119083345,31.386182551737875,31.643978304229677,31.98858484532684,32.624359239358455,32.94632970076054,32.2033605822362,31.72677047085017,32.597328091040254,33.51156821101904,34.133270510006696,33.20638724882156,32.77106966730207,31.83782728156075,32.45380714163184,33.38985424255952,34.00045523792505,33.24903054209426,33.31941508501768,32.80202743364498,33.39529923116788,33.35339508065954,33.47565988218412,33.923664544243366,34.37784456461668,34.033425947185606,33.89167123613879,34.722904772963375,35.71926030749455,34.725569494999945,35.11951014120132,35.90522955171764,35.59744424186647,35.578315949533135,35.86671261442825,36.42982068657875,37.15317520033568,36.60017726151273,37.54637374775484,37.95227365894243,38.87088946532458,39.69396419869736,39.76840984309092,39.75195019412786,39.762454942800105,40.43516768049449,39.518106969073415,39.21477118972689,39.71039774781093,39.64996363967657,39.77664879988879,38.91146392701194,38.46597035229206,38.95949882362038,38.17564068036154,37.547659564297646,37.700892941094935,37.05001282971352,36.595068152062595,36.32234615786001,35.792753814253956,36.64261675812304,37.263718105852604,36.88490818301216,36.66726277768612,36.954763593152165,36.00538926990703,36.27651611948386,36.15970745077357,35.84934783773497,34.88488724920899,35.16883305553347,34.88807533122599,35.83656852785498,36.09695839975029,35.59190692612901,36.501071706879884,36.61983712622896,37.07839014194906,37.88886241801083,37.84557993058115,38.70883379969746,38.61254412913695,39.09175913641229,38.093721015844494,38.87842193059623,39.08303376613185,39.16488179843873,39.76485786587,39.693473097868264,39.897601480130106,40.638708795420825,40.7412188234739,41.0563995023258,42.03512368211523,41.96720180474222,41.75780136138201,42.18755044462159,41.606732924468815,41.75345368171111,41.209622669033706,40.82708194991574,40.58601763891056,40.852457641623914,40.25524820154533,40.40735294576734,40.5560045694001,40.20278431894258,39.861797992140055,39.06832652306184,39.255353334359825,39.06207845825702,39.4982335572131,38.73397630080581,37.95211952365935,37.229825808200985,37.508178705349565,36.77122460491955,37.58190235868096,37.057003311347216,36.212428994476795,35.552739112172276,35.23631737800315,34.24183138925582,33.704670135397464,34.00290813483298,34.9400699310936,34.57669188128784,35.40557871060446,35.24892022414133,35.04452166007832,35.48903644736856,36.064515594393015,36.187978180125356,35.796513597946614,36.364220164716244,35.41338559705764,35.5768170915544,35.105080334469676,34.40859511354938,34.33026679418981,33.937738860026,34.63906363584101,34.79472063854337,34.26894207671285,34.76301387185231,34.36507579497993,34.33705766359344,34.45131389144808,35.252321732696146,36.147133835591376,35.39600414549932,34.634678752627224,34.72915903478861,35.30981961404905,35.91512031247839,35.4369145873934,35.29597859270871,35.537119425367564,35.97471740050241,35.5688856379129,36.08513547992334,35.55307213123888,34.60688001802191,34.87171022919938,34.402116001583636,33.64361118571833,33.65220722928643,32.88189283479005,33.74210245208815,34.50016696378589,33.90099857095629,33.903826339636,32.90761810680851,32.17582789575681,32.20548717211932,32.13259195629507,32.03558939695358,33.00703115062788,33.33531349943951,34.24160026293248,33.44048390770331,33.41041976818815,33.521147137042135,33.30460499646142,34.235735401976854,34.170845868997276,33.841299885418266,33.288451683241874,33.77988319424912,32.927269264124334,32.457826321944594,33.06634105462581,32.3155458024703,33.156798518728465,32.551230506040156,32.85206609079614,33.824341002851725,34.51605944056064,35.068423081189394,34.3951634215191,33.80325767537579,34.071717149578035,34.411477195098996,33.863949697464705,33.30524488305673,32.74279345897958,33.06551544601098,32.893529834691435,32.80238772183657,31.859873526263982,31.629223751369864,31.36277800006792,30.83798862621188,30.416071488056332,30.897648089099675,29.905717568006366,29.640466997865587,28.908262179233134,28.234293730463833,28.933216548059136,29.239149142522365,29.061106769368052,29.265503122471273,29.99576157797128,29.445246814284474,29.124197565484792,28.41154074622318,29.21878362307325,28.243572734296322,27.722570768091828,27.792906388640404,28.683763135690242,29.449667893815786,29.901954425498843,29.31280488613993,29.493708504363894,29.585145701188594,29.743479263968766,30.042760237120092,29.967536313459277,29.45469794748351,29.435958277899772,29.70321450755,29.603243285324425,30.456374986562878,29.90073071559891,29.4098261911422,29.549135701730847,29.527210037223995,28.80797650385648,28.518573064357042,29.457317171618342,29.437967129517347,29.814960749354213,30.001476666890085,29.816949671134353,30.80167323583737,31.248573917429894,30.963648931588978,30.563765712548047,30.683044308796525,31.09520384296775,30.453999797347933,31.33277441235259,31.53781581297517,31.25874661980197,30.65059947175905,30.633082063868642,30.151643093209714,30.53401272604242,30.14495729887858,29.955277149565518,29.350826964713633,28.86664436897263,27.90652447240427,28.275136702228338,28.608492264989763,28.66345364926383,27.736612979788333,27.117120498791337,27.792040085420012,27.7106343251653,28.65644691279158,29.188526722602546,29.180026649031788,28.904725071042776,27.970664736814797,27.953151606954634,28.30552195524797,27.85340828821063,27.56696138624102,27.94205422140658,27.186128988396376,26.388443283271044,26.26029538549483,25.93921310501173,26.182610959280282,26.169196248985827,26.739569444209337,27.019294313155115,27.024842189159244,26.569358170498163,26.883936499711126,26.160083916503936,26.430482375901192,27.258783648256212,27.422601375263184,26.92543979221955,27.91032539634034,27.428351644892246,26.97957528056577,27.03383647929877,27.070762541145086,27.6051775701344,28.2071663714014,28.282545069232583,28.922914220020175,28.387786453589797,28.03758161375299,28.133631919976324,28.15323373861611,28.325986460782588,29.05813392950222,29.593661413993686,29.38255295017734,29.190813270863146,28.84460976952687,29.38804889144376,30.0390171892941,30.33018611324951,30.946441410575062,29.981174730230123,30.407136981375515,29.936230352148414,30.454108136706054,29.760106100700796,30.53774693934247,29.691895152442157,30.468738252297044,29.540619635488838,30.092932344879955,29.89896556874737,29.83472586236894,29.72223859746009,30.699997927527875,30.243906726595014,30.481523709371686,29.50682581216097,29.443188046570867,29.974235772155225,30.054068679455668,30.374826796352863,31.05075249588117,30.149771916680038,30.354857755824924,30.48360126139596,30.00081399921328,30.980782869271934,30.04061183333397,29.41468350868672,30.29978703800589,30.78171985875815,30.191105186007917,29.389965074136853,29.884988348931074,30.39106223685667,29.995107802096754,30.02576595172286,30.41232793033123,30.98721108864993,30.504216636065394,31.25181453023106,30.817617742344737,31.609299804549664,32.002594670746475,31.55448002787307,32.22703160112724,31.457104109227657,31.922062715515494,32.71975652920082,32.679627186618745,32.394306999631226,32.81158908549696,33.08753599692136,33.75105452770367,32.93701881216839,32.44739766046405,31.745963748078793,32.30990014364943,31.461287735030055,30.783517804928124,31.646039994433522,30.65106145478785,30.26329608540982,30.77703646570444,30.563698715530336,29.972927807364613,29.6010331180878,28.84344596741721,27.854421058669686,27.228091841563582,27.521145408041775,27.725289206020534,28.415064292494208,27.598907341249287,26.914861866272986,27.26302166003734,26.899908367544413,26.153574466705322,25.257311531808227,25.001432565040886,25.501075581647456,26.292471391148865,26.296981355641037,26.46289634006098,26.035144168883562,26.36933332402259,26.514720716979355,27.16615311987698,26.299797262065113,25.52275988366455,25.786049504298717,25.246981008909643,24.930324135813862,24.511437644716352,24.341916939243674,23.797296746168286,22.987588142044842,22.322006098926067,23.255611058790237,24.191468214150518,25.136705986689776,25.096624804660678,24.88152234116569,25.447017992846668,25.219132906291634,25.242618877906352,25.479203359689564,25.732186421751976,25.626159556675702,25.199605504982173,26.184877321124077,27.07864379324019,27.993003415409476,28.180040051229298,28.13446671469137,29.074980167672038,29.650999296456575,29.27143887570128,28.437085969373584,28.897471296600997,29.17797527462244,29.648826895747334,29.085876936092973,28.384605419356376,27.671220210846514,27.014244499150664,27.157984467688948,27.91886583296582,27.950936510693282,28.177647918928415,27.26548157958314,27.135863919742405,27.598733386024833,28.26344578526914,27.811812495347112,28.176189271267503,28.983687014784664,28.024690004065633,27.99901876691729,28.524286354426295,27.710437713656574,27.15585768641904,26.831072399392724,26.434581773355603,26.92481563659385,27.466592426411808,27.79563902085647,28.10086452914402,28.536931469570845,28.047497095074505,27.340415731538087,26.83561797812581,26.784159922041,26.374876120127738,27.156518881209195,28.026890605222434,27.21511964686215,26.406755444128066,26.298725804314017,25.352600045036525,24.43186193006113,25.365749000106007,25.82463905075565,26.44954687450081,26.815818131435663,27.607613145839423,27.62062063673511,27.811206815298647,27.99054379761219,27.886225434485823,27.21570906136185,27.9871360254474,28.832644941750914,28.961454310454428,29.785375932697207,29.39360567042604,28.59311142656952,28.331196991261095,28.65900019556284,29.433763067238033,30.375159135553986,29.971128456760198,30.709397438447922,29.79257816215977,30.618573575280607,29.66937968879938,30.017339065670967,30.590081205125898,30.599429057445377,30.64181115385145,31.332920894492418,31.649782037362456,30.8773906044662,30.941858503501862,29.987507758662105,30.207097437698394,29.69316209712997,29.08885804703459,29.9892167923972,29.461266995873302,28.645743825938553,28.236958301626146,28.88422045018524,29.22018369100988,29.474879758432508,29.62874216772616,29.48370644263923,30.31380114145577,29.71038004057482,29.418347734957933,29.157354703638703,28.9049005927518,28.089830925688148,27.105050871148705,27.84755153534934,27.374789470806718,28.065211825538427,27.48626045510173,26.791725997347385,25.927258986979723,25.381763326004148,24.775671331677586,24.258364908397198,24.68262579664588,24.494037229567766,24.161104146856815,23.874764093663543,23.883911887183785,23.10260651540011,22.2971875150688,23.02755122119561,23.79515237500891,23.79775174288079,23.765896668192,23.653061118908226,23.670371500309557,23.397829496767372,22.86214277986437,22.508642403408885,21.529272915795445,21.91275018407032,22.041350564919412,21.064992530737072,20.358738630544394,19.985494767315686,19.554252130910754,20.52570452168584,19.59684770554304,19.278186093550175,19.14184468612075,19.13328116806224,19.63505187164992,18.82497955299914,19.525195146445185,19.80048698419705,19.357824597973377,19.22249990189448,18.298224257770926,18.810183788184077,19.683471065945923,19.381479824427515,20.313752241432667,19.999059373512864,20.33487037708983,20.691925410646945,21.645660636015236,21.47480119112879,21.10237577324733,21.01717363204807,21.021282433066517,20.541430345270783,19.775012347847223,19.081402071751654,18.475383713375777,18.270956785883754,18.36169805424288,17.576965894550085,18.441448513418436,18.008657744619995,18.4261841699481,19.133083800319582,18.70079794852063,19.501022027805448,19.805153804365546,19.001309973187745,18.46374130481854,17.985493718180805,17.753746498841792,18.393370831850916,17.95699422620237,17.222856950946152,17.60361959831789,17.324523902032524,16.501032155472785,17.175320989917964,16.355739172548056,16.480702410452068,15.641952735371888,15.805781664326787,15.369954254478216,15.772464198060334,16.564717241562903,16.45781588833779,17.005975507199764,16.979659666772932,16.863103345502168,17.347630088683218,17.272684901487082,18.12574955681339,18.704184714704752,19.391769303474575,18.817609654273838,18.36821086006239,18.759071193635464,18.671769032254815,18.047964642290026,18.24700705287978,18.551386672072113,19.3288232088089,19.993071482516825,19.608083622530103,19.457100379746407,20.156287745572627,19.692119104322046,19.672292463947088,19.45320431701839,19.00899693602696,18.40202820301056,17.855307134333998,18.823555308394134,19.554750393610448,19.10120971966535,18.388697325717658,19.021796303335577,18.47161795059219,18.664461985230446,19.078767577651888,19.10746978688985,20.025834914762527,20.920406574383378,21.145184714812785,21.49883340066299,21.19861051859334,21.78287736000493,21.99896510131657,21.466129299718887,22.384680775925517,22.899514406453818,23.80195661727339,24.737109023611993,24.716693113092333,23.931021821219474,23.35022949660197,23.058952409308404,23.642771520186216,22.64482474932447,21.864495278336108,22.026207212824374,22.5955026098527,21.673098386265337,22.611183440312743,21.880043868441135,20.895000415854156,21.85906265163794,22.123880782630295,22.29249731870368,21.55738642765209,21.24176853429526,21.343002035282552,21.236849225126207,21.400069126859307,21.221421795897186,21.033646192401648,21.738738228566945,22.364565105177462,22.45396213978529,21.97310996009037,22.410069642588496,21.748496111482382,22.256006652954966,22.469325199257582,21.744544256478548,21.668925508391112,21.027613451704383,21.8319949968718,22.494665501639247,21.62575140921399,21.247660452965647,21.544025180395693,20.874420653562993,20.337438852526248,20.98460531141609,20.672326533589512,20.337276022415608,19.90932285459712,20.427665810100734,19.473711188416928,19.99064469896257,20.375763629563153,19.40311000822112,19.999282461591065,19.336223584599793,20.00520258070901,20.173928671050817,19.571126316674054,20.38864915864542,19.705382968764752,19.976287516765296,19.34617988532409,18.574984679929912,18.4678938803263,17.490498275030404,18.33908550720662,17.689716453198344,17.748287096619606,17.17794650560245,16.669172319583595,15.798799292184412,15.919961569365114,16.493471910245717,15.548060250934213,16.030480783898383,15.481078728567809,14.849299360532314,13.94662536541,14.799076760653406,15.696478417143226,15.764377446845174,15.671348724979907,15.980201323051006,15.876401773188263,15.14566693129018,15.535615897271782,16.419519372284412,17.057592384517193,16.659561864566058,16.88603287609294,17.534965792205185,18.20834841579199,17.441760007757694,16.790112594608217,17.652835668995976,18.43898848677054,18.96918084518984,19.150584143586457,19.00171197578311,19.543360131327063,18.899381147231907,19.162582558579743,19.002902918029577,19.46042954735458,20.135082659311593,20.48014566162601,20.970065499655902,20.86395134590566,20.462593232747167,20.354077868163586,20.315873090643436,20.986716580577195,20.246620169840753,19.292495056521147,20.009492908138782,19.73383296141401,20.15114387497306,20.53659722255543,21.023495910223573,20.374778075609356,20.125140961725265,19.957702240906656,19.84115650365129,20.26149675436318,20.21262561203912,19.944892924744636,19.250226472038776,18.556385683827102,18.93272097595036,18.116346526425332,17.544063611421734,17.277407015208155,16.855726355221123,16.546003247611225,16.80722598778084,17.08996141469106,16.935502495151013,17.552458594553173,18.025537522509694,18.21373705053702,17.897262526210397,17.360775707755238,18.223232375923544,18.13173142587766,18.399542863015085,17.941878359764814,18.15296952985227,18.122240778058767,18.347943826578557,18.147431783378124,17.1523084519431,17.142304657027125,17.447264330927283,17.346747814677656,16.919564997777343,16.81943132681772,16.254020024091005,15.448140090797096,15.409020271152258,15.089814745821059,14.663419004529715,14.849136875011027,15.590243834070861,14.907689129933715,14.739429614972323,15.459298650734127,15.539001132827252,14.820892677642405,14.011175968684256,13.812830876559019,13.949966209474951,14.246211091056466,13.404223074670881,13.81340105086565,13.579732981976122,14.553024442866445,13.789571938570589,14.37893735524267,14.98206344153732,14.285923186689615,13.76191967446357,13.737378258258104,14.266512444708496,14.85000531654805,14.782491985242814,14.341701957397163,13.994745833333582,14.551512638106942,13.584765113890171,13.037588713224977,13.46204337803647,12.949723002500832,12.084813993889838,12.299626140855253,12.493989740032703,12.889278295915574,13.339186073746532,14.252192372921854,13.823759469203651,13.890554862096906,13.322096541058272,13.150227496866137,13.365701692178845,13.155487180687487,13.764418302103877,14.729286831337959,14.943919900339097,15.680041714571416,15.661247503943741,16.4314457885921,17.113196964841336,16.596857151016593,17.575011384673417,17.8567814854905,18.360649317968637,18.085018523968756,18.25657029589638,18.265088197775185,18.08514582598582,17.125279405154288,16.278993994928896,15.573486521374434,15.621417928952724,16.241419166326523,17.07666792301461,16.786793798208237,16.763472490478307,17.16643124539405,16.34911918779835,16.00640187598765,15.130427695810795,15.867258341051638,16.021459639072418,16.079152702353895,16.94375662971288,17.45513278618455,17.486847657710314,16.70117229409516,15.80165696144104,16.33651902899146,15.63226915244013,14.912832741159946,14.406925849616528,13.841398196760565,13.051347880624235,12.224180343095213,11.991328651551157,12.583782299421728,12.262097493745387,12.01153477281332,12.47181098908186,11.692538162693381,11.980969368945807,11.250111225061119,11.235617885366082,10.752588698174804,10.664879478048533,9.7055151052773,10.423453817144036,11.142800415400416,11.666621265932918,12.314222308341414,12.223288060165942,13.075537832453847,12.81252036197111,12.099004696123302,12.926250200718641,12.664938205853105,12.627979214768857,11.711196503601968,12.59248191351071,12.612538091372699,11.744010787457228,11.455407606437802,11.621363562066108,12.402007390744984,12.059223726857454,11.65003680344671,10.816032522823662,10.196043148636818,10.42005718825385,9.420450853649527,10.24283830402419,9.746103609446436,8.885907117277384,9.277720253448933,8.489491650369018,7.873568418901414,7.262034847866744,7.111797668039799,6.464455181732774,6.306404426228255,7.0442767213098705,7.625927121844143,7.732436894904822,7.26871667150408,7.923354928381741,7.438891402911395,6.829019439406693,6.872536664362997,6.3257439262233675,6.236133987549692,6.799206881318241,7.49466298520565,6.850333868060261,6.888052292633802,7.586079816799611,7.409121822565794,6.45045728655532,7.156917427200824,7.8631848292425275,7.051052780821919,7.5631256848573685,6.603725782595575,6.786345358006656,6.882265691179782,6.531307972967625,7.19478718098253,7.208572942297906,7.234086473938078,6.975477927364409,6.881125445012003,6.39794336585328,6.87282949546352,6.583133616950363,6.2140128943137825,5.221071321051568,4.321422804147005,3.540665861684829,3.068388698156923,2.347853268031031,2.9424554123543203,3.3321556970477104,3.2196644130162895,2.890081196092069,2.2606578655540943,2.270844661165029,3.1061219116672873,3.1086906236596406,2.2559213670901954,1.6459994302131236,1.115689020138234,0.9027983923442662,0.44418342737481,0.4706227760761976,0.02461573062464595,0.3015266349539161,0.9222008613869548,0.4132803953252733,1.225877360906452,1.8350770706310868,2.8259142548777163,1.905209546443075,0.9412384233437479,0.589758871588856,0.3396667609922588,-0.09679754124954343,0.318545198533684,0.0056020356714725494,0.14680616883561015,0.23168924869969487,-0.14552619960159063,-0.7931248336099088,-0.7243072409182787,-0.09154805773869157,0.6616372060962021,-0.14434675918892026,-0.27782912319526076,0.1544169606640935,-0.8270047614350915,-1.8120465632528067,-1.0402327640913427,-0.8018882372416556,-1.2385938274674118,-1.416370945982635,-2.276609488762915,-2.5705001377500594,-2.8050056444481015,-3.643096260726452,-4.311945446766913,-4.894103502854705,-4.734292138367891,-5.660870798397809,-5.961486517917365,-6.77929561259225,-7.224702062085271,-7.407596334349364,-7.2481701811775565,-7.493552367668599,-7.319399943109602,-7.165529426652938,-6.59947026334703,-7.05286775669083,-7.818026813678443,-8.757882661186159,-9.447076722979546,-9.888711141888052,-9.94760884065181,-10.152384458575398,-10.420608728192747,-10.508795527275652,-11.27390599809587,-11.441673218272626,-10.936152866575867,-10.850194592960179,-9.856367541011423,-9.135365549940616,-8.818673504982144,-9.77326459158212,-10.208595367148519,-10.99814756307751,-10.111310939770192,-10.126801008358598,-10.645929363090545,-11.274813794530928,-11.200263713020831,-11.351195801049471,-11.445858541876078,-11.988341225776821,-11.923548490274698,-11.284509658347815,-11.769233990460634,-11.026835612487048,-11.59902526717633,-12.029841502197087,-12.355799031443894,-13.297476029023528,-13.81929652299732,-14.678821952082217,-15.649963940959424,-15.791354265995324,-15.121866171248257,-16.004762161523104,-15.960910342168063,-16.21855881763622,-16.392470555845648,-15.93623825814575,-16.396802725736052,-15.599774540401995,-14.83682759059593,-13.839538981206715,-14.025615942198783,-14.00029412470758,-13.298570602666587,-12.727447256911546,-12.461080750450492,-12.485358282458037,-12.119011890608817,-11.44773123646155,-10.954951053485274,-11.668371081352234,-10.913373937364668,-10.168689973186702,-9.956085074227303,-9.419603053014725,-9.500409768428653,-8.937823100015521,-8.459619341883808,-7.855046570766717,-8.778134836349636,-9.643020217772573,-10.365494228899479,-10.468783967662603,-9.538136821240187,-8.974589775782079,-9.85847152583301,-10.75098671624437,-10.317586994264275,-10.09333968302235,-9.249104703310877,-10.15918922284618,-10.189535903278738,-10.709590322338045,-9.876804680097848,-10.034379745833576,-9.331571417860687,-9.834154865704477,-10.302814414724708,-10.447565214708447,-10.71908720349893,-10.645844087935984,-10.014857119880617,-10.325627367477864,-10.845225553493947,-10.40285312756896,-10.774155469611287,-10.887475767172873,-10.187247711699456,-9.605044246651232,-9.38505438156426,-8.891723509412259,-8.875826437026262,-7.91565672121942,-8.67232170002535,-7.798302962910384,-8.058650280348957,-8.719648921396583,-9.339714316185564,-10.209256220143288,-9.638295530341566,-9.076847200281918,-9.349799674935639,-9.50424382230267,-9.656223223544657,-10.25489286892116,-10.518575110472739,-9.924952121917158,-9.28996522212401,-8.507181542925537,-7.987107585184276,-7.912436750717461,-8.483915764372796,-9.051182114053518,-8.084223973564804,-8.390416306443512,-9.326508808881044,-9.395471510943025,-8.833962689619511,-8.074466294143349,-9.032790429890156,-8.552893564570695,-9.502353015821427,-9.908542646560818,-9.002007891889662,-8.921340930275619,-9.905157799832523,-9.481337265111506,-10.273852742742747,-10.890134044922888,-11.293522676918656,-10.967184436041862,-11.901513133663684,-10.962294327560812,-9.997514699585736,-10.73512716917321,-11.634768987074494,-12.249151947908103,-13.02538142586127,-13.274098947644234,-13.528626814018935,-13.465745975729078,-13.400960128288716,-13.120631434954703,-13.52730068936944,-13.163327281363308,-13.379700398538262,-13.947489604819566,-13.489195763133466,-12.920815421734005,-12.90822600433603,-12.113610299304128,-11.366117188706994,-10.739322896115482,-9.780122505500913,-9.784949597436935,-9.892282654996961,-10.277980695478618,-9.733836940024048,-9.319854570087045,-9.5649806545116,-8.565473725553602,-9.135366348084062,-8.356809461023659,-8.424217050895095,-8.662180686369538,-8.412886463105679,-8.175814776681364,-8.212236823514104,-7.304699636530131,-7.105281162075698,-6.484109941404313,-6.527837618254125,-7.491590567864478,-7.006522430572659,-6.234453730285168,-6.3476849109865725,-5.774890793953091,-5.163944614119828,-5.370506878942251,-6.006191452499479,-5.721658803522587,-6.306517184711993,-6.831876491662115,-6.853032706305385,-6.990416252054274,-7.426384007558227,-7.770173794589937,-8.715283507481217,-9.270470597781241,-9.629831767175347,-9.442767254076898,-9.62116186087951,-10.3815647829324,-9.46984840882942,-9.502280038315803,-9.370685633737594,-10.054148897528648,-10.269070354290307,-10.589496975298971,-10.161015052348375,-10.433151371311396,-10.080686483997852,-9.739086657296866,-9.468333422672004,-10.014130903873593,-9.273651090916246,-8.905740491580218,-9.151314350776374,-8.78292623674497,-8.856482142116874,-9.831307486630976,-10.427931580226868,-10.268949993420392,-9.936462567653507,-10.2350895232521,-10.974533705972135,-10.148834617808461,-10.85482629481703,-10.154981798958033,-10.799951213411987,-11.27883013477549,-11.105606491677463,-11.901039011776447,-10.907564633060247,-10.323822530917823,-10.805115320719779,-10.827866599429399,-11.453719774261117,-11.88879637606442,-11.856853974051774,-11.252218932379037,-11.720822410658002,-12.075985476840287,-11.640351604670286,-11.403967311605811,-12.240029659122229,-13.228105228859931,-13.615229182410985,-12.83709126105532,-12.170624610036612,-11.974085097201169,-11.61671878863126,-11.238377457950264,-11.461081877350807,-11.244029481895268,-10.651357582304627,-11.594466900452971,-11.821340816095471,-11.794518062379211,-10.822942079044878,-10.8164990558289,-10.262047083582729,-9.56473142048344,-9.937104770448059,-10.377326260786504,-9.494410545099527,-9.882619709242135,-9.728809288702905,-9.77611292945221,-9.724341040942818,-10.71075402898714,-11.449939499143511,-11.158360508270562,-12.11207673465833,-11.988793373573571,-11.301424841862172,-10.433494966011494,-9.564537433441728,-9.951208752579987,-10.799733912572265,-9.956599333323538,-9.801115796901286,-9.481256832368672,-9.810726813506335,-10.642998214811087,-9.762029627803713,-9.786810308229178,-10.604213795624673,-10.067844568751752,-9.713276072405279,-9.583375856745988,-9.623482077382505,-10.020218544639647,-9.493610814213753,-10.387112396769226,-10.972702285740525,-11.162867060862482,-10.590430827345699,-10.929837173316628,-11.337144108489156,-11.612525526434183,-11.76696221344173,-11.560771164484322,-12.403586016502231,-12.001482291147113,-11.677053016144782,-11.342291323002428,-11.60527154803276,-12.076319721527398,-12.678115205373615,-12.641720821149647,-13.447519958484918,-14.411463651340455,-13.414824704173952,-13.55640521645546,-13.628780109807849,-13.635915590915829,-13.754459993448108,-13.228417441248894,-12.313873566687107,-11.368903546594083,-11.215775828808546,-10.216877696104348,-11.153687343932688,-10.58781481301412,-10.772082609124482,-11.065839209593832,-11.592835280578583,-12.359707959927619,-12.836022750940174,-13.834907503798604,-13.564514336176217,-14.192944598384202,-14.108490533661097,-13.899145621806383,-13.917445186525583,-14.630894833710045,-14.737768227234483,-14.618506804574281,-14.74826241703704,-14.403381988406181,-15.344932184554636,-14.65325939282775,-15.074683323968202,-15.3127405308187,-15.707361676730216,-15.973501555155963,-15.977500633336604,-15.179253840819001,-15.135485539212823,-16.06080768443644,-15.92880148300901,-15.165880414657295,-16.08835749188438,-16.74206203268841,-16.344535165000707,-16.311185889411718,-17.28459832025692,-18.04590094042942,-18.64531912934035,-18.997736601624638,-18.568834831006825,-17.889932689722627,-17.74665300734341,-18.388895673677325,-18.52588445134461,-19.297085885424167,-18.670880143530667,-17.99237057613209,-17.64030802436173,-18.01883022626862,-17.41396756004542,-16.741973949596286,-16.40918642980978,-16.18715506233275,-15.444227928761393,-15.559941558633,-15.679280938114971,-14.93513221014291,-13.981863881926984,-14.438168839551508,-14.467699003405869,-15.298165706917644,-15.518246264196932,-15.083830886986107,-15.039798345416784,-15.471889580134302,-15.121699884999543,-14.556323890574276,-14.160706005059183,-13.202334692236036,-12.286961327306926,-12.572336559649557,-12.165125384461135,-12.82793948519975,-11.871517205610871,-11.909858773462474,-12.514139297418296,-12.281149693299085,-12.275213949382305,-11.75893557537347,-12.306941103190184,-12.273070433177054,-13.175682351924479,-13.338707969523966,-13.210728827863932,-14.144457990769297,-14.108767574187368,-14.16023977426812,-14.110249194782227,-13.15454834792763,-12.471877592615783,-13.021519001573324,-13.631889181677252,-12.807893494609743,-13.342468369752169,-12.911985339596868,-13.684254124294966,-12.830512979067862,-13.448422531131655,-12.640076538547873,-12.955021883826703,-13.394596308004111,-13.30032357852906,-13.302704109344631,-14.060802103951573,-13.126562270335853,-12.146853626705706,-12.273772539105266,-11.857655397150666,-11.379553378093988,-12.085022454150021,-12.467754136770964,-13.30500213894993,-13.341514811385423,-14.089477947447449,-14.950205673463643,-14.001124639064074,-14.07385933632031,-14.63807775080204,-15.029417293146253,-15.96600417047739,-15.75242809811607,-14.754757343325764,-14.148049275390804,-13.59163823723793,-13.179397549945861,-12.368634289130569,-11.639505095779896,-12.579571168404073,-13.034451924730092,-12.9016855629161,-12.05298105161637,-12.704604329541326,-12.975513201206923,-13.279513742309064,-13.430222948081791,-14.155949308536947,-14.319255832582712,-14.448106500785798,-13.959646445699036,-13.8279142039828,-14.240299097727984,-14.090225958265364,-14.845533713232726,-15.234246227890253,-15.1085957842879,-15.569899399764836,-16.04874014481902,-15.20019282400608,-14.558915375731885,-13.817863434553146,-14.070651920046657,-13.68782731378451,-13.546572567429394,-13.268062208313495,-12.647408340591937,-11.969677018467337,-11.077174051199108,-10.729534661863,-10.5700530288741,-9.827407092321664,-10.588490235153586,-9.630125251132995,-9.519545523449779,-8.726979940664023,-8.37057053251192,-7.6613565874286,-6.997265438549221,-7.2032716679386795,-7.993350170087069,-7.505961937829852,-8.398743213620037,-9.359544356819242,-8.387221398763359,-9.30581168923527,-9.365610443986952,-9.881644517648965,-10.121061292476952,-9.479546406306326,-8.91088044969365,-7.958438347093761,-7.554409939330071,-7.119889299850911,-6.266260502394289,-6.770002744626254,-7.157604173291475,-7.482177936471999,-6.730919369962066,-7.158736441750079,-7.032707326114178,-7.59559971280396,-7.988667310215533,-8.852559896651655,-8.276114207692444,-8.137109593022615,-7.905010563321412,-8.61829051701352,-8.506259698886424,-7.727354925591499,-7.120123190339655,-7.842024516779929,-8.167120058555156,-8.48409220855683,-8.294329121243209,-9.19934931769967,-9.442109557799995,-9.115920149255544,-9.47336979676038,-10.360309217125177,-10.649326756130904,-10.277584720868617,-10.156189378350973,-10.121567226015031,-10.865488884970546,-10.106182721443474,-9.667808267753571,-8.932221780531108,-9.691745854448527,-9.230432043783367,-8.365331421140581,-8.642606968060136,-8.988074236083776,-8.158200001809746,-7.930790521204472,-6.955357491970062,-7.481398758944124,-8.214646503329277,-8.76821430772543,-8.2610517074354,-9.251024797558784,-9.543401449453086,-9.237187416758388,-8.365626936778426,-7.820808908902109,-7.659148873295635,-8.190387981943786,-7.544803533703089,-7.015618719626218,-7.898378988262266,-6.925310727208853,-7.2467857375741005,-6.523986614774913,-7.056082722265273,-6.927462174557149,-6.361182771157473,-5.421961970161647,-5.139603585470468,-4.7026484636589885,-5.563474780879915,-4.833402093499899,-5.616385793779045,-5.182047280482948,-5.652061389293522,-5.790600098669529,-6.115205992478877,-5.699121123179793,-4.92861259309575,-4.6519915806129575,-4.4250606331042945,-4.517729104496539,-5.184195313137025,-4.796831522136927,-4.5884506036527455,-4.99938830640167,-4.5751167787238955,-3.76568163651973,-3.1866397811099887,-2.441650233231485,-2.0145348152145743,-2.0556778484024107,-1.1113338442519307,-2.0876917759887874,-1.486455176025629,-1.4978428478352726,-1.3781852312386036,-1.4551350227557123,-1.7410316630266607,-1.7571837808936834,-1.342230605892837,-1.9540064022876322,-2.3361757546663284,-2.3933488884940743,-2.6009995960630476,-1.6272177556529641,-0.9961385219357908,-1.759832571260631,-1.0327421752735972,-1.9984199134632945,-2.000052609015256,-1.0570346540771425,-1.0017273128032684,-1.7877190271392465,-1.1161755374632776,-1.820226281415671,-2.0292237610556185,-1.1564458580687642,-0.5594078903086483,-0.5230135479941964,-1.3504155110567808,-1.2897339374758303,-1.7900932114571333,-1.9787459764629602,-2.254449783358723,-1.8794420594349504,-2.8539219447411597,-1.9809926697053015,-2.3326219148002565,-3.0840431633405387,-2.9953410485759377,-3.069875804707408,-3.024201241787523,-3.4692066558636725,-4.162620835006237,-4.134125932585448,-4.622606387827545,-4.36044049076736,-3.6569720660336316,-2.890893552452326,-3.3883966337889433,-3.411625197622925,-3.3927317140623927,-4.015472484752536,-3.3961422299034894,-3.7753611747175455,-3.0649275593459606,-2.6086079296655953,-1.7788066263310611,-1.5716633298434317,-0.9379792362451553,-1.4112157593481243,-0.881558557972312,-1.1449146405793726,-0.5034432811662555,-0.23012780491262674,-0.132244938518852,-0.5425665159709752,0.3979072910733521,1.1757726147770882,2.0176621647551656,2.56569855986163,2.521123554557562,2.4274952113628387,3.304480126593262,3.172014473937452,2.2554465704597533,2.9643906797282398,3.691907776053995,4.588088131975383,4.980649017263204,4.067136138677597,3.423661488573998,2.914260190911591,2.4978589001111686,2.5026721972972155,1.8750073378905654,1.4035927709192038,1.8283710307441652,1.0874254894442856,1.9317692331969738,2.1796051203273237,1.5619978881441057,0.7059955736622214,-0.13651472749188542,-0.9766434915363789,-0.402774999383837,0.5844456255435944,0.04140865197405219,-0.5373150869272649,0.45784501219168305,-0.3473512236960232,-0.9967250102199614,-1.8116176603361964,-2.771987518761307,-2.8124311943538487,-3.4750507855787873,-4.32285618269816,-4.382206073496491,-4.127651666291058,-3.8306035506539047,-3.7702599107287824,-4.323231292422861,-4.562316213734448,-4.3173203114420176,-5.193321479018778,-5.6835686936974525,-4.81819815421477,-4.845673163421452,-5.793087158352137,-6.23352709505707,-6.191698281094432,-6.569913130253553,-6.1097098253667355,-6.6252585533075035,-6.191572319716215,-5.5323821059428155,-4.686159199103713,-5.477141425013542,-4.544847602955997,-4.683440402615815,-3.966166007332504,-3.8001698749139905,-3.7627098420634866,-4.024120068643242,-3.5369554408825934,-3.447052638977766,-3.031497333198786,-2.546693993732333,-2.296814540401101,-3.151249507907778,-3.1425378201529384,-3.4789726054295897,-3.544556998182088,-3.7395259123295546,-3.5059121879749,-3.1164329103194177,-3.1883098273538053,-3.2201224779710174,-2.9673050944693387,-2.729028804693371,-3.2012931369245052,-4.126055877190083,-3.3030176223255694,-2.8252395084127784,-3.5160308280028403,-3.286365583539009,-2.550850134342909,-2.2051710169762373,-1.4336153347976506,-2.111058261245489,-1.3798144445754588,-0.5215260293334723,-1.1418863404542208,-0.49096496123820543,-0.1346458219923079,-0.7501052743755281,-1.565312584862113,-2.520467871800065,-2.579676299355924,-2.747297775000334,-1.9194427295587957,-1.9371326714754105,-2.0648667495697737,-1.1419850285165012,-1.045108356513083,-0.6733557148836553,-1.558074738830328,-0.7143202549777925,-0.20405916683375835,-0.045304895378649235,-0.7054559458047152,-1.4460225165821612,-2.251990441698581,-1.9692174862138927,-1.038911328651011,-0.7298773555085063,-0.939564635977149,-0.20806751819327474,-0.4978303061798215,-1.3054306944832206,-2.1624369407072663,-1.7929853070527315,-1.1643633740022779,-1.5130860856734216,-1.2942646881565452,-0.9559812303632498,-0.6211258303374052,-0.8050900525413454,-0.32738185534253716,-0.7161408229731023,-0.7847737306728959,-1.6800970644690096,-1.798808448947966,-1.5099039380438626,-1.3296135626733303,-0.7478567631915212,-1.2257857993245125,-1.4026678767986596,-0.6887286938726902,0.24431694764643908,-0.45952049270272255,-0.8083158005028963,-1.7037064041942358,-2.2801331551745534,-1.6117710415273905,-2.289439364336431,-1.556313038803637,-1.0192366382107139,-1.4682683032006025,-1.07066111266613,-0.328176383394748,-0.511757287196815,-0.08923561125993729,-0.35265988670289516,-1.001588191371411,-0.584795655682683,-1.25709478976205,-0.955078536644578,-0.6234889361076057,-0.9238287974148989,-1.208674095571041,-1.3422029744833708,-2.321780617814511,-3.2343822550028563,-3.161468006670475,-2.8155171372927725,-3.7760654659941792,-3.457621088717133,-3.670628267340362,-3.187825200613588,-2.5935260225087404,-2.2377853612415493,-2.58211242640391,-2.9534136671572924,-1.9862416880205274,-1.9005908980034292,-1.8403438688255847,-2.0038206414319575,-1.7716971118934453,-0.8338946285657585,-1.7939039976336062,-0.836214798502624,-0.3973434930667281,-0.13018119242042303,-0.10589256277307868,-0.49156578816473484,0.10963691817596555,-0.7630433063022792,-0.35162593331187963,-1.0207835542969406,-1.8397249798290431,-2.117267365567386,-2.6082048024982214,-3.4235292989760637,-4.270432290155441,-5.073765485547483,-5.285318035166711,-4.926746620796621,-5.587732333224267,-4.628627897705883,-5.10164280841127,-5.6756562744267285,-6.088718154933304,-5.224604200571775,-4.816145548596978,-4.326335524208844,-4.601177159231156,-4.039251890964806,-3.899032847955823,-3.004283629823476,-3.1830943333916366,-3.8209465416148305,-4.246348193380982,-3.5988426911644638,-3.4880099003203213,-2.610283472109586,-1.620156491175294,-1.669817338231951,-1.7006254000589252,-2.471304482780397,-1.8427438386715949,-2.39149097725749,-2.532451158389449,-3.4314126656390727,-4.152449822053313,-3.6543950522318482,-4.4849285376258194,-3.7866972130723298,-4.632041765842587,-4.338555516675115,-4.6223744275048375,-3.9294121456332505,-4.415542731061578,-5.106873940676451,-4.9845061912201345,-4.562061022501439,-4.743152304086834,-4.870521480683237,-3.8808236718177795,-4.632291539106518,-5.086079228203744,-5.47612571856007,-5.231043056119233,-6.160518302582204,-5.539819773752242,-4.885022081434727,-4.7258214093744755,-5.380352447275072,-4.964957352727652,-5.635236082132906,-6.376219431404024,-6.393667230848223,-5.63078435882926,-4.676836971193552,-4.864161640405655,-4.076602551154792,-4.905965659301728,-5.423343659378588,-5.300960526801646,-5.5773799028247595,-4.866565379314125,-5.242531069088727,-5.493915262632072,-6.408377324230969,-6.466478732880205,-6.505806650035083,-6.220014817081392,-6.83355566766113,-7.111534956377,-7.341109055094421,-6.380576845258474,-6.2171227894723415,-7.149790431372821,-7.190930118318647,-7.69193458231166,-7.1922976821660995,-6.276014008559287,-6.818041104823351,-5.896524551324546,-5.516913420986384,-4.683928562793881,-4.123435415327549,-4.413546032272279,-4.82105673616752,-5.721801047679037,-6.215273560024798,-6.462990845087916,-6.713972192723304,-7.590763505548239,-7.538572671823204,-7.024528103880584,-6.095609160605818,-5.7994357123970985,-5.582718044985086,-6.164250229485333,-6.25723732681945,-6.304752690251917,-5.355572999455035,-5.603195311035961,-5.183295475319028,-6.17475879797712,-5.691552289295942,-6.136369922198355,-6.064451622776687,-6.490227473899722,-7.375075277406722,-7.888765821233392,-7.105081744957715,-7.1515666102059186,-8.019222419243306,-8.98273847810924,-9.883908233605325,-9.051668889820576,-9.814256964251399,-8.823126802686602,-8.097815464250743,-7.972692381590605,-7.165631240233779,-7.0445214016363025,-6.6719690901227295,-6.812761279288679,-6.125456371810287,-5.733852089382708,-5.14148643007502,-4.445608781185001,-5.122199575416744,-4.501870270818472,-4.868198822718114,-5.44115749001503,-4.5036032209172845,-5.1161462790332735,-4.562031695153564,-4.512903655413538,-3.923985526897013,-3.845036819577217,-4.007439857814461,-3.279022113420069,-2.6976726413704455,-3.411020578350872,-3.705665602348745,-2.922117475885898,-3.577851336915046,-2.70019654231146,-2.403160739224404,-2.59322669217363,-3.4445801484398544,-3.894559364300221,-3.332228093408048,-3.7643688996322453,-2.9813210614956915,-3.359553186688572,-3.861564145423472,-2.873283921740949,-3.5637762579135597,-4.241002531256527,-4.342673652805388,-4.579911929555237,-4.570131766144186,-5.087113967165351,-5.55748836370185,-5.848287572618574,-6.053272088058293,-6.355306793469936,-6.308364426717162,-6.212860090658069,-6.796580876689404,-5.9152255156077445,-6.066593732219189,-5.084046624600887,-4.474787970539182,-4.5625800671987236,-5.086617733817548,-4.573079809080809,-3.9342964701354504,-4.466708727180958,-4.667393687181175,-5.465830499771982,-4.802573524415493,-5.175774049945176,-5.656436367891729,-6.31478827027604,-6.956139447633177,-6.54363978933543,-6.6168988277204335,-6.65616513043642,-5.89340546913445,-6.823569021653384,-6.921867056749761,-6.503077636472881,-7.290628807153553,-7.656431646551937,-8.545225358568132,-9.090272626839578,-9.598647681064904,-9.913524989970028,-10.07826471189037,-10.386662121396512,-9.954399920534343,-9.399389482103288,-10.256196346599609,-9.28553629340604,-8.554633083753288,-9.416899042204022,-9.124258895870298,-9.220915471203625,-10.145914828870445,-9.554676867555827,-9.475175082683563,-9.646100098267198,-9.089470040984452,-9.555853532161564,-10.435186038259417,-11.34700074326247,-11.685699469875544,-12.467095506377518,-13.442799558397382,-13.476985530927777,-13.296702584717423,-13.821634362917393,-13.409653000999242,-12.869646751321852,-12.371740269940346,-12.674749343656003,-13.5479600536637,-12.989083868917078,-13.271114285103977,-13.05529342731461,-13.907992616295815,-14.437049830332398,-13.957364828325808,-14.141111665870994,-13.987698557786644,-13.431361445225775,-12.637258547358215,-13.530882825143635,-13.708051257301122,-12.924490320961922,-12.807562450878322,-12.294648807961494,-12.402414326090366,-12.695317870005965,-12.724846901372075,-13.311647927388549,-13.289009222760797,-12.985958916135132,-13.126920058391988,-13.13881189096719,-12.37870207708329,-11.69341559894383,-11.961167933885008,-11.408350296784192,-11.402388659771532,-10.595548521727324,-10.758551428094506,-10.595793895889074,-10.473865628242493,-10.821682904381305,-10.09087823331356,-10.153337497264147,-9.250584095716476,-10.11698750173673,-10.12699656188488,-10.688246845267713,-10.145921960938722,-9.745842380449176,-10.520935122389346,-11.482151934877038,-12.331153280567378,-11.578913439065218,-11.63085508486256,-10.919564712326974,-11.62223765393719,-12.324839732144028,-11.38682135520503,-11.572982187848538,-10.685924190562218,-10.938559803180397,-10.430992547888309,-10.600463156122714,-10.882145361509174,-11.337286239955574,-11.387054591439664,-11.439610053785145,-11.633201121818274,-10.860787780024111,-10.936743026599288,-10.569612004328519,-9.596698086708784,-10.433793734759092,-10.122481068596244,-11.10054347384721,-10.310656556393951,-9.720417339354753,-9.073756394907832,-8.281508533284068,-9.001127806026489,-8.08350983262062,-7.233466438483447,-6.5439759897999465,-7.321401497349143,-7.925985586363822,-7.4481086898595095,-7.37637620838359,-7.405942447017878,-8.027065256144851,-8.969067468773574,-9.469453142490238,-10.046663937158883,-9.468079948797822,-8.623727807309479,-8.30672997329384,-8.829736889339983,-9.593395453412086,-10.101326685864478,-10.12145357625559,-11.058138170745224,-10.899898283649236,-11.737825626507401,-11.096263534389436,-10.40369247784838,-11.299857816658914,-11.85174589138478,-12.495236817747355,-13.34803997213021,-12.999515480361879,-12.910084009636194,-13.727231022901833,-13.204290898051113,-12.928850563708693,-12.045625399798155,-11.208733009640127,-12.010576942004263,-12.68795461487025,-12.038209910970181,-12.814474783837795,-13.280168988741934,-13.486817215103656,-13.223603929858655,-12.873787900432944,-13.514479571022093,-14.351572373416275,-15.322933183982968,-14.77607529424131,-14.037643315270543,-14.183417635038495,-13.392215373925865,-14.194860167335719,-14.802038576453924,-14.949466944206506,-14.286493820603937,-14.218503828626126,-13.228352583013475,-12.665634995792061,-11.799614872783422,-11.819206822663546,-11.087604669388384,-10.9677037098445,-11.242688364814967,-10.787729111500084,-10.886554345022887,-10.918894067406654,-10.906567704863846,-10.24886312102899,-10.654541841242462,-10.484169284813106,-10.536020944826305,-11.356636735610664,-10.824385792016983,-11.315733473282307,-10.938530026003718,-11.679645434487611,-12.208326109685004,-11.797316361684352,-12.435514603275806,-13.270520247053355,-13.185880951117724,-12.629560782574117,-13.435789880342782,-12.601981178391725,-12.998389159329236,-12.02105545764789,-12.747673625592142,-12.87693776236847,-12.55886402959004,-11.719218283426017,-10.752652067691088,-10.848614571150392,-11.00948682334274,-10.915835090447217,-10.640314860269427,-10.036369595211,-10.181959675159305,-9.92152957757935,-8.992206798866391,-8.612895582802594,-7.8724151770584285,-7.339437059126794,-6.394410581793636,-6.241040145978332,-5.776089820079505,-6.218194224406034,-6.809977482073009,-6.145945628173649,-6.88164526829496,-6.84137521404773,-6.254196892026812,-6.42413759091869,-6.376645690295845,-6.193750360514969,-6.558635749854147,-6.779181584250182,-6.96671994542703,-6.825233147479594,-6.613253095652908,-5.643601430114359,-5.017498109955341,-4.361281544901431,-4.785087425261736,-5.0937307476997375,-5.572910369839519,-4.944231019821018,-4.6231331140734255,-5.501323854085058,-6.429841025266796,-6.814616196323186,-7.026147282682359,-6.556821051985025,-5.75491281831637,-5.366451341658831,-5.220079706516117,-5.271859071217477,-5.581002133432776,-4.86338736442849,-4.515925066079944,-5.362318942323327,-5.879271686077118,-6.601130956783891,-6.306721864733845,-7.079316213726997,-7.636095426976681,-8.370737867429852,-8.176548508461565,-8.900015751831234,-7.954127916600555,-7.270909350831062,-7.527880866546184,-7.624359903857112,-7.753932964522392,-7.269038987811655,-6.840936807449907,-6.615059313829988,-7.0793230081908405,-7.458463263697922,-6.860047321766615,-6.719473487697542,-7.15248922817409,-7.802861732430756,-7.287497479934245,-6.701740256976336,-7.599764256738126,-6.881616324186325,-7.062285143882036,-6.416177880950272,-7.337154212407768,-7.1636766460724175,-6.413096542935818,-6.863060042727739,-7.422851326875389,-8.326882722321898,-7.566105711273849,-8.136028047185391,-8.157486117444932,-7.665599574800581,-8.493702945299447,-8.651515229139477,-8.9288877164945,-9.18730209255591,-8.627566957846284,-7.887698569335043,-7.4911930533126,-7.820113384630531,-7.545249675866216,-7.1800048355944455,-6.9457526952028275,-6.807321587577462,-6.3536243457347155,-5.843562379479408,-5.870112739503384,-6.637539408635348,-6.997718616854399,-6.071745050139725,-6.508979965001345,-5.922783657442778,-6.809275238309056,-7.174855430610478,-7.667992895003408,-7.471269010100514,-8.224795558024198,-8.646292059216648,-8.130218558944762,-8.050147879403085,-8.84260872611776,-8.703760908450931,-8.082883309572935,-8.48687961511314,-7.488929325714707,-7.13398999068886,-6.511956916656345,-6.4782636421732605,-6.35108765726909,-6.469850300811231,-7.245332975871861,-6.6754133948124945,-7.453820541035384,-7.600927450694144,-7.296129905153066,-7.284666549880058,-6.40732421213761,-7.139306256081909,-6.687923534307629,-6.607535688672215,-7.405529099050909,-6.461156999692321,-5.745148221962154,-6.2046922841109335,-7.000333720818162,-7.371243215631694,-7.503946759738028,-7.075919548049569,-7.8026070590130985,-6.820280612912029,-6.497425560839474,-6.833958974573761,-7.249093786813319,-7.641577165108174,-7.856088422238827,-7.549293338321149,-7.977598495781422,-8.868233474902809,-9.080239157192409,-8.701782628428191,-7.775115260388702,-7.110412187874317,-7.3419616664759815,-8.173098550643772,-8.473347404506058,-8.502566940616816,-9.272554712370038,-8.672457762993872,-9.18326176237315,-9.523436721414328,-9.798946450930089,-9.718899530358613,-9.323137923609465,-9.252927393652499,-8.686252926010638,-8.301567269023508,-8.07612167391926,-8.847941927146167,-9.134376562666148,-10.102957430761307,-10.146146207582206,-10.655137512367219,-9.771747743710876,-9.849358393345028,-9.289571851491928,-10.028757423628122,-10.161504180170596,-9.296890240628272,-9.05840219091624,-8.998487359378487,-9.37533771339804,-10.008698323741555,-9.939141468144953,-10.594881067052484,-11.061494438443333,-10.437013749964535,-9.996341093443334,-9.886361798271537,-10.709609740413725,-10.807002512738109,-11.494048245251179,-11.566582857165486,-10.763042692095041,-11.742657411843538,-12.511669873725623,-12.662170867901295,-13.488640697672963,-12.49131686007604,-11.903304657433182,-12.350484965834767,-11.634480332955718,-11.398445407859981,-11.248663334641606,-11.044558667577803,-10.875643949955702,-11.239318492822349,-10.474263350479305,-10.94109205249697,-11.09544321661815,-10.581042092759162,-10.747440751641989,-11.56132045481354,-12.19160336162895,-11.282155802007765,-10.532347350381315,-10.328386253677309,-10.79070442263037,-10.104009265080094,-9.73581913486123,-10.550956028047949,-9.61198667716235,-9.829158909618855,-8.99375874362886,-9.479687330313027,-9.261718096211553,-8.976593318860978,-8.274882233235985,-7.984229329973459,-8.124168671667576,-8.409638486336917,-8.119676350615919,-8.323004931677133,-7.68332678405568,-8.494489683769643,-8.184008127078414,-7.604630467481911,-8.241997006814927,-8.72477167006582,-9.700420339591801,-9.96132449619472,-9.265759444329888,-8.313874899409711,-7.668490336276591,-7.866229389794171,-7.577914566267282,-8.330050091724843,-9.260319044813514,-8.845931283198297,-9.786510520614684,-9.49677906371653,-8.897080027963966,-9.059793249238282,-9.000112326350063,-9.574814652092755,-8.825680834706873,-9.418623648118228,-8.532019634265453,-8.09029500419274,-7.501727471128106,-7.236612311564386,-6.615018471609801,-7.046629981137812,-7.703542077448219,-8.044906646944582,-8.506291611585766,-8.051292682532221,-7.939984870143235,-7.384985911194235,-8.253372964449227,-7.659090703818947,-6.761067654937506,-7.170786175876856,-7.492609202396125,-8.141582305077463,-7.749761669896543,-7.333730810787529,-6.437437671236694,-7.278539728373289,-6.954581115860492,-7.7383862137794495,-7.5516566070728,-6.8337013316340744,-7.528641052544117,-8.485628010705113,-8.676989557221532,-9.008944714441895,-9.575724737718701,-9.263788116164505,-9.158526391722262,-9.44651216454804,-9.757247524801642,-10.130271278787404,-9.854575011413544,-10.39811644749716,-11.03476942377165,-11.573815330397338,-12.442051105666906,-11.730473363772035,-10.916386973578483,-11.109874847810715,-11.684441089630127,-10.684989436529577,-10.343775966204703,-11.328217598609626,-11.60560485161841,-10.890333889052272,-10.928021568339318,-11.882132748141885,-10.968548126053065,-10.654762469232082,-9.979209505487233,-10.320365502499044,-10.844103442505002,-11.560548345092684,-10.989393559284508,-10.830597926396877,-10.659003561362624,-10.381128935143352,-10.738564937841147,-9.841845843940973,-9.633644638583064,-9.906382055021822,-9.330418366007507,-8.671715768519789,-9.271569808479398,-9.668888863176107,-10.071062880568206,-9.861143307294697,-10.387027530465275,-9.51665776129812,-9.708764026872814,-9.602141502778977,-10.198748234193772,-9.694746254943311,-10.589134022593498,-10.707108520902693,-10.73214092059061,-10.932405506726354,-10.228492211084813,-10.963789377827197,-10.759513922967017,-10.353456707205623,-11.013433896005154,-10.56310051633045,-9.977352479007095,-9.190653721336275,-8.803355515934527,-9.521584399510175,-8.999786992091686,-8.709608275443316,-8.715301379095763,-8.352164092939347,-8.748626044020057,-9.375321291852742,-9.721273496281356,-10.64017604989931,-10.296220240648836,-10.82691594818607,-10.72168903471902,-10.66250334540382,-11.162722011562437,-10.771712922491133,-11.725806832313538,-12.599312688689679,-13.277641347143799,-14.04845533752814,-13.192054045386612,-12.456152349244803,-12.791589080821723,-12.411710522137582,-12.701552608050406,-13.121045862790197,-12.883219464682043,-12.38947820244357,-13.172192140482366,-13.70907276822254,-14.252699557226151,-14.570638889446855,-14.337996871210635,-13.414385589770973,-13.59061926137656,-13.491727999411523,-13.485942181199789,-12.978407053742558,-13.042987437918782,-13.720977654214948,-14.56629745895043,-13.942290495149791,-13.905982490163296,-13.77431116765365,-13.541523440741003,-12.745142808184028,-13.295578068122268,-12.94936873856932,-13.538223232608289,-12.902331898454577,-13.070400024298579,-13.160297308582813,-14.085086804348975,-14.931098750792444,-15.305779595859349,-15.668449070304632,-15.14277003146708,-14.55201692180708,-15.40216887788847,-16.297611137852073,-16.436800974886864,-17.32379148900509,-17.717208641115576,-17.731558890081942,-18.706975697074085,-17.844228963833302,-18.415456224232912,-19.059141415171325,-19.169620509725064,-18.309346930123866,-18.123150534927845,-18.88406611001119,-18.652990340720862,-19.307140158023685,-19.00691372854635,-18.960597001947463,-18.938593063969165,-19.472471388988197,-18.8614615034312,-18.89297973550856,-18.911857311613858,-19.640971273183823,-20.63006917340681,-20.785973463673145,-21.607761980965734,-22.379797445610166,-22.449807131662965,-22.425266306847334,-21.997758457437158,-22.817776697687805,-22.623748949263245,-22.837648776825517,-22.026870721019804,-22.06966394884512,-22.40987269161269,-23.008047370705754,-22.95942217623815,-23.132298797369003,-23.404841851443052,-22.74422383401543,-22.877996852621436,-21.949228210374713,-21.179260511882603,-21.11691367905587,-21.253216398414224,-21.426951192785054,-21.46978421509266,-21.87478713458404,-21.056035896297544,-21.23147202655673,-20.912830625660717,-21.094410097692162,-20.152276609558612,-21.02456901455298,-20.54407899081707,-20.938984512817115,-21.32617460936308,-20.539020949508995,-19.869079045951366,-20.666061508934945,-20.731101310811937,-20.934345711488277,-20.496531976386905,-20.39579993998632,-20.169944546185434,-19.553269288502634,-18.707655397243798,-19.109402764122933,-18.45349833741784,-18.032590213697404,-17.27940995199606,-17.498487976845354,-17.57646746188402,-17.54694697028026,-17.764633582439274,-17.280584685504436,-16.34028258547187,-17.339148800820112,-17.85170005215332,-18.805081150494516,-19.41851286869496,-19.47810292011127,-20.134072420187294,-19.27697856258601,-18.476207048632205,-18.29634106857702,-18.909200268797576,-19.393142422661185,-20.242919489275664,-19.37985627213493,-19.09065370215103,-19.278698455076665,-18.756417927332222,-19.125149154104292,-19.346721404697746,-20.340787007007748,-19.343601553235203,-19.503483993466944,-19.291592231485993,-18.91908811731264,-18.832193372305483,-17.843507784884423,-17.51037386758253,-17.905583234038204,-17.94155285321176,-18.01449733134359,-18.598924646154046,-18.624951199628413,-18.32420714199543,-19.111867021769285,-18.663415539078414,-19.16793577838689,-18.604664175305516,-18.324427735060453,-18.626000464428216,-18.47139980364591,-18.649890111759305,-18.577032557688653,-18.844503813888878,-18.675018615089357,-18.763232158031315,-19.131880327127874,-20.017216286156327,-20.781492409296334,-20.558215780183673,-20.653288192581385,-21.477545469999313,-21.734114361461252,-21.787515154108405,-21.860445747617632,-21.71277479827404,-22.424149677623063,-21.868205859325826,-20.904720327351242,-21.703345097135752,-21.740960441995412,-22.011958695948124,-21.902217797003686,-22.09094859333709,-22.608228316530585,-23.260724898893386,-23.87185939401388,-23.532037920318544,-23.36759716272354,-23.978993363678455,-23.86034807516262,-24.179737149737775,-23.53952142689377,-24.270484682638198,-23.654101540800184,-23.768622525967658,-23.168991333339363,-22.192447883542627,-23.032457634806633,-22.672715187072754,-23.03264023223892,-23.170572547707707,-23.701250156387687,-23.786049641203135,-24.286648294422776,-25.193502057809383,-24.73190032504499,-24.566096833441406,-23.5977156101726,-23.607602132949978,-23.314553648699075,-22.58071761764586,-23.258228914346546,-24.010617929510772,-24.545962295494974,-25.13854965241626,-25.5521919853054,-24.590815214440227,-24.759258721023798,-25.042528574820608,-24.98935243394226,-24.343884214758873,-25.21047749556601,-25.472021482419223,-24.736754178535193,-25.606990223750472,-25.187335101887584,-25.371240134350955,-24.983145165257156,-24.431010119151324,-24.781592837069184,-24.593634923920035,-24.95293223671615,-25.12410708796233,-24.370265597011894,-23.935852814931422,-23.20791151514277,-23.747222408186644,-24.27575108455494,-24.90626447275281,-24.42566008726135,-25.236775022465736,-25.142019008286297,-25.816262163221836,-25.710569123271853,-26.581927292514592,-26.307267360854894,-26.062939670868218,-26.56543736672029,-27.23956288397312,-26.951507134828717,-27.176604393403977,-28.054449340328574,-29.045792902819812,-29.07498777564615,-28.079461945220828,-28.978824622463435,-28.094819587655365,-27.63421655073762,-26.83652111934498,-26.896803801413625,-26.987024646718055,-27.07693268917501,-27.790953969117254,-27.95120766526088,-27.905367844272405,-28.221626284066588,-28.242179747205228,-28.598575212061405,-29.431645238772035,-29.932958737481385,-30.471277235541493,-30.366461873054504,-30.79475009581074,-31.12678896728903,-31.713153071235865,-31.96170746302232,-31.9550758972764,-31.840349830221385,-31.621642018202692,-32.21975559275597,-31.666776683647186,-31.95817059604451,-32.94229256408289,-32.5115329422988,-32.67499310709536,-32.120084796100855,-32.155051762703806,-31.325562607962638,-30.734814111609012,-30.059029715601355,-30.26740423962474,-31.12875128770247,-31.887598732486367,-32.007970362436026,-32.654957758728415,-32.963784576393664,-32.184420270845294,-32.70019372692332,-31.710238081868738,-31.21462778421119,-31.41015774337575,-30.62249758373946,-30.815393823664635,-31.426922898273915,-30.61290636425838,-31.589681262150407,-30.98083050781861,-31.638375372160226,-31.877513790503144,-32.51430810568854,-32.29304228303954,-33.11574353510514,-34.07244103960693,-33.72380745084956,-33.40791896218434,-33.5815662718378,-34.39791216189042,-34.58978032832965,-33.9806645475328,-33.31991470931098,-33.073575417976826,-33.1096882307902,-33.31671507889405,-32.82706317584962,-33.415049098432064,-33.248139037285,-32.43697522440925,-33.03962432127446,-32.10501670418307,-31.28920181747526,-31.486235454678535,-32.44729171227664,-31.942277697380632,-32.9406772130169,-32.618164784274995,-32.22809998737648,-32.37130546430126,-32.64520131610334,-31.96629937272519,-31.811888797674328,-31.819375220220536,-32.4221409750171,-31.484615441877395,-31.764876403380185,-32.04001561598852,-32.32234783284366,-33.002802959643304,-32.66158259427175,-32.891229222062975,-31.965500420425087,-31.4092861674726,-32.124146074056625,-32.072274785488844,-31.217551900073886,-31.74120986321941,-31.10163127211854,-30.77413251483813,-30.46256695082411,-30.65492020593956,-29.966130828950554,-30.826166070997715,-31.51718192268163,-32.33622195618227,-33.28075060248375,-33.145653618033975,-32.710871940944344,-33.30853984458372,-33.4867536444217,-33.21175418328494,-32.46469715470448,-31.639771335292608,-32.21385986916721,-32.98227432183921,-33.31788230268285,-33.483654813840985,-32.74405147880316,-32.965656221378595,-32.76439581112936,-33.312044559046626,-33.02201481023803,-33.89377377089113,-33.38225981313735,-34.20839854422957,-34.284667539875954,-34.62402411084622,-34.535437444690615,-34.25804116623476,-34.20708079729229,-35.06125974142924,-34.91309899324551,-35.71412744792178,-36.67515458678827,-35.81131534464657,-36.17432875186205,-36.03457718901336,-35.4138432093896,-35.57587772142142,-36.042911254800856,-35.2914327615872,-35.46765693696216,-35.77509732078761,-34.88640926545486,-34.43143053678796,-35.2468707007356,-35.504528765100986,-35.87739728204906,-36.62939450889826,-36.83800422772765,-36.707221429329365,-36.466145830228925,-36.016135923564434,-35.759148561861366,-35.79250918701291,-35.35027452418581,-36.103389863390476,-35.94371978472918,-35.55956593248993,-34.62690442521125,-34.37376053119078,-33.71944478992373,-34.323902847245336,-34.07700642896816,-33.86381124379113,-34.777957778889686,-34.932414737995714,-34.26169736916199,-33.519403108395636,-33.593785154633224,-34.48826021468267,-34.89827066427097,-34.26793225528672,-34.735996753908694,-33.9234243449755,-34.02167899534106,-33.47026741458103,-33.07664460455999,-32.78468468692154,-32.09390094783157,-32.0309296711348,-32.60700344480574,-32.3882394679822,-31.846863949205726,-31.33570606680587,-31.373449094593525,-31.16952494159341,-31.376371395308524,-31.886717278975993,-31.62956969672814,-32.03542769839987,-31.132348497398198,-31.9041126226075,-32.28188606444746,-31.47563365707174,-30.747713341843337,-31.205400831066072,-31.568078672513366,-32.04683953290805,-32.46214813971892,-31.852837269194424,-32.38220893032849,-31.921740890014917,-31.6189777799882,-32.384802067652345,-33.265597003977746,-34.009747839998454,-34.327674258034676,-34.96135358279571,-33.99554544547573,-34.926917335018516,-34.802717516664416,-34.9318673312664,-34.40634826384485,-35.25407137116417,-36.20976321492344,-37.17797364946455,-36.71248199325055,-36.5852550342679,-36.4893427118659,-35.70078131556511,-34.8432656833902,-34.8050219649449,-35.54976383969188,-36.311114837415516,-36.63809735979885,-37.31971446238458,-37.30099798878655,-37.33157907705754,-36.64201416214928,-36.01623972225934,-36.5129236667417,-36.96745588257909,-37.42663969891146,-37.99102765135467,-37.02629656530917,-36.531157050747424,-36.094252781011164,-36.6354146101512,-37.04115120647475,-36.96026718756184,-36.15804880671203,-35.404899201821536,-35.44797746045515,-35.868257156107575,-35.66236013267189,-35.59098706301302,-35.606863198801875,-34.69739008555189,-35.2239628797397,-35.78805083129555,-36.65802742401138,-37.53833582950756,-36.896295751444995,-37.695467204321176,-36.73986195772886,-36.10139885824174,-35.123873009346426,-35.06456772144884,-35.104102990124375,-34.51039354130626,-34.33906690310687,-34.14600229682401,-33.78603652212769,-33.15032468782738,-32.78732021898031,-32.65334684588015,-33.55573193123564,-34.33065668633208,-35.17710047587752,-34.873991466127336,-34.90570316417143,-34.27450305921957,-34.30816758237779,-33.63048380985856,-34.56405665772036,-34.95763109996915,-34.40408959100023,-33.761737974360585,-34.5868388810195,-34.47080732835457,-34.97839876124635,-35.5321936653927,-36.32069749943912,-36.97131730243564,-37.01690085045993,-36.03877690527588,-36.150645304936916,-35.66692768456414,-34.99349302705377,-35.76081864442676,-36.616984718013555,-37.013976187910885,-37.104621805716306,-37.29362919740379,-37.48899838235229,-37.528872672934085,-37.54581438563764,-36.59973473986611,-36.032061701174825,-36.7407414726913,-37.56221826327965,-36.75665647396818,-37.72254499234259,-38.56930929841474,-38.879974859301,-38.89774288609624,-39.20475450810045,-38.25740886060521,-38.86906400043517,-38.81991725368425,-38.802702504675835,-39.44173880619928,-39.366365735419095,-39.30748718418181,-39.29744755849242,-40.125840021763,-40.263290900271386,-39.88437906606123,-40.23322718124837,-39.643350549042225,-39.549834004137665,-39.55281094601378,-39.968566382769495,-40.88127280725166,-41.49919281853363,-42.05038840556517,-41.44644933426753,-41.044169085565954,-40.54886522842571,-40.693726452067494,-41.144294953439385,-42.03612110204995,-41.504803859163076,-41.68988616717979,-42.667869554366916,-42.894679247867316,-42.7535794172436,-42.65374071151018,-42.55020889546722,-42.11287053162232,-42.672991215251386,-43.12120772479102,-43.7458660765551,-43.13888852996752,-43.352852892596275,-43.869450928643346,-43.24451645370573,-42.85852453066036,-42.40756073174998,-41.95455942489207,-42.20227622054517,-43.10765924770385,-43.298363213427365,-42.85674171987921,-42.6773482603021,-43.38606174103916,-43.34096716251224,-44.22822778020054,-44.89929562062025,-44.66447550524026,-44.481543564703315,-45.328130774665624,-45.99456737656146,-46.55888030398637,-45.98127662623301,-45.908661981113255,-46.568140589632094,-46.1236657849513,-45.35536911524832,-46.310453516896814,-45.87566702533513,-46.410374651197344,-45.82257821969688,-44.99478159053251,-44.39350489573553,-43.60749941971153,-42.85341212945059,-43.4269893867895,-43.95761536573991,-43.32652173191309,-42.3594661061652,-42.53674298757687,-42.91558654140681,-42.79848671052605,-42.62196225114167,-43.348263293504715,-44.113524737767875,-44.76717939414084,-43.97488455148414,-43.97885056398809,-44.002960682380944,-44.3530987794511,-44.57707010069862,-44.06235304707661,-43.69513925956562,-43.9409940042533,-42.96014200523496,-42.43256438430399,-43.141586114652455,-42.16587173193693,-43.08945028530434,-42.62618481973186,-43.055673751980066,-43.27398547809571,-43.2707656044513,-44.1489944094792,-44.23538699699566,-43.84421503636986,-44.04869417566806,-43.49061623355374,-44.16997683281079,-43.977836025413126,-43.64524288335815,-43.82478696340695,-44.13346661999822,-44.991740313824266,-45.23553691012785,-44.417065592017025,-44.19307331042364,-45.03890953073278,-44.92390497447923,-44.8612846089527,-45.21091047395021,-44.66035702545196,-44.511694566812366,-44.427631948143244,-44.544681806117296,-44.57615951774642,-44.911403220612556,-45.66935565834865,-45.85047207493335,-45.87942177290097,-46.09805648867041,-45.63495492655784,-46.53901034593582,-46.227790812030435,-47.007245424203575,-46.76767532946542,-46.86829843139276,-45.99257374741137,-45.00729420175776,-45.690979602281004,-45.00411616964266,-44.36268763244152,-44.011030841153115,-44.38601017650217,-44.80773360421881,-45.74575088266283,-44.800427799578756,-44.46668040193617,-43.91500321915373,-42.978063030168414,-42.88816780503839,-42.445869671646506,-41.978824246209115,-41.07677207002416,-41.065264493227005,-40.111178897321224,-39.351105094887316,-39.54260128829628,-40.102485698182136,-40.552099528722465,-40.41100170928985,-39.63016882771626,-38.96043553482741,-38.6772823384963,-38.08452435210347,-38.627399363555014,-37.714602216146886,-38.58956480398774,-39.48747928952798,-39.7104282239452,-39.39427563827485,-39.84762114332989,-39.63930409075692,-40.55240477574989,-40.43878551572561,-39.50835030339658,-40.234599699731916,-39.26831762632355,-38.44786227680743,-37.78977403091267,-38.204755081329495,-37.20819041831419,-37.205681717954576,-37.986754254903644,-37.129669526126236,-36.33762187883258,-36.8701490922831,-35.98864480527118,-36.279909456614405,-35.52087083552033,-36.25937678664923,-35.88097221730277,-36.74100833525881,-36.10567358834669,-35.62683059787378,-35.61984971212223,-36.5726395486854,-35.81239983672276,-36.5878423396498,-35.70238616783172,-36.32625288423151,-35.91641621431336,-36.37922180816531,-36.169103474356234,-35.775792475324124,-36.63871733704582,-36.11471961112693,-35.72066820645705,-36.03124379226938,-36.5683591584675,-36.47731951484457,-36.17632215516642,-35.93284892756492,-35.070639348588884,-35.89221074990928,-36.595469607040286,-36.69607518892735,-37.499263539444655,-37.22841155389324,-37.63653432531282,-36.879180011339486,-37.877766454126686,-38.19298034487292,-38.79775808658451,-38.10672201262787,-37.854651202913374,-37.89949772786349,-37.749514115508646,-38.01755863241851,-37.59281736379489,-38.43758681695908,-38.82209509424865,-39.7322242022492,-39.7573472908698,-39.01092959428206,-38.77929109567776,-38.18792828032747,-37.607590280938894,-38.009881391655654,-38.67274645995349,-38.27206362038851,-37.56126078404486,-37.564338928088546,-36.884916346520185,-36.65769845247269,-37.28197801997885,-36.86308587761596,-36.26662537222728,-35.633949669543654,-36.45739832194522,-35.49085953645408,-35.4626853056252,-34.826555013190955,-35.225070599932224,-35.22957119392231,-36.18230194039643,-35.66721855383366,-35.10979464231059,-35.383154078852385,-35.234075971879065,-34.25393651239574,-34.95825569238514,-34.583217286970466,-34.45701837632805,-35.17436465527862,-34.89900320535526,-34.12792399851605,-34.50436709448695,-35.00573596311733,-35.41321642976254,-36.114370772615075,-35.90316791413352,-36.691822071094066,-36.83252135058865,-36.77033083466813,-37.74187897192314,-37.43840437429026,-37.75315280910581,-38.60526250721887,-37.72213378408924,-36.77971774758771,-36.69445843854919,-37.12846760638058,-38.07319831196219,-38.74401106359437,-38.99978018272668,-38.80860150558874,-38.98203547531739,-38.80427153222263,-38.78174669202417,-39.440400167834014,-39.710467169526964,-39.15345658827573,-38.678896978031844,-38.90228643687442,-38.08655378036201,-38.37059380253777,-38.76573348091915,-39.75839657802135,-40.460279864724725,-41.45775308273733,-42.12997147068381,-41.854059817269444,-41.07233659317717,-41.47456877445802,-41.6277249190025,-41.136447462718934,-41.24950515618548,-40.34868557751179,-41.13178298762068,-40.51539412513375,-41.35471231024712,-40.74076265702024,-40.661894909571856,-41.25683430209756,-42.212183175608516,-41.21784554421902,-41.46784374024719,-40.655425496865064,-40.95201788004488,-40.00777133461088,-39.10535915661603,-38.83409801311791,-39.56726633012295,-40.54309273278341,-39.73179266881198,-39.613269929774106,-40.366960905492306,-41.15397917293012,-41.98648459929973,-42.5665660710074,-42.221503308042884,-43.003323858603835,-43.084352721925825,-43.233698305208236,-42.571221792604774,-43.242196668405086,-43.04556715907529,-42.333729998674244,-42.593740368727595,-42.02611086284742,-42.252106681931764,-43.19621632853523,-42.30726580368355,-43.1179714538157,-43.337842469569296,-43.637668611016124,-44.41579358233139,-44.3527442375198,-43.76166953332722,-44.31184797920287,-44.05980279576033,-44.3680458846502,-43.98629326047376,-43.89000429818407,-43.2974624382332,-42.837193849962205,-43.68359128059819,-43.082400393206626,-42.59347509033978,-42.23872052272782,-42.625447060447186,-42.93465630989522,-43.043567770626396,-44.00511580100283,-44.92622554535046,-44.797322638332844,-44.47277709655464,-44.27506352541968,-43.781717574223876,-44.3729417710565,-44.09187012212351,-43.22439836803824,-43.37886319542304,-43.62687497679144,-43.79822782846168,-42.96894741151482,-43.10541032021865,-42.31668430380523,-42.53334604203701,-42.04296705313027,-41.62861133180559,-40.688162229489535,-40.83843817515299,-40.04595131799579,-40.2535111811012,-41.14211852196604,-41.52431266196072,-40.91906591039151,-41.484493650030345,-40.93953188555315,-40.76753707882017,-41.548272975254804,-41.70587580325082,-41.733197471126914,-41.67301103146747,-42.40075429296121,-42.99962847772986,-43.953742537181824,-44.64117497438565,-44.41534120636061,-44.909968074411154,-44.86428118310869,-45.097610152792186,-44.11190145369619,-43.2799620735459,-42.905220720451325,-42.42487855814397,-43.00441937893629,-43.04527514753863,-43.13910059630871,-42.15801526978612,-42.84883344639093,-43.57886063819751,-43.431844477541745,-43.94747630087659,-44.04624057235196,-44.70527490787208,-44.267365113366395,-44.861266625113785,-44.14168824395165,-44.17318597249687,-45.090052822139114,-44.749669081065804,-44.59028496872634,-43.89151000790298,-44.85849332343787,-43.91805336298421,-43.73318110127002,-44.21942682843655,-44.20272128144279,-43.30865969741717,-43.32507727108896,-44.07542108139023,-44.17421896150336,-43.8001379375346,-43.218534557614475,-43.221284807659686,-43.11241967882961,-42.25370211340487,-42.25928750867024,-42.72372568864375,-41.888320207130164,-41.886647433042526,-41.31071873102337,-41.245521049015224,-41.64737210655585,-41.493185081053525,-41.75427894620225,-41.63684054836631,-41.7118752929382,-41.48958458285779,-41.18478844780475,-41.18971525132656,-41.791203141678125,-41.59285064507276,-41.68756638513878,-41.85630189208314,-41.36809258721769,-41.40695934742689,-41.80385228153318,-42.39200177276507,-42.91225772537291,-42.83023628639057,-42.941239382606,-42.15475572599098,-42.94774774927646,-43.8694981248118,-44.13806921010837,-43.65607640845701,-42.875266783405095,-42.63384951837361,-42.266567938029766,-41.67873732978478,-41.81036935560405,-42.1504078861326,-42.421944042202085,-42.328125479631126,-43.266024455893785,-42.28350379830226,-42.08472188701853,-41.24214877560735,-41.305758024565876,-40.65916308062151,-41.518413157667965,-41.55301281111315,-41.03528514364734,-40.105504432693124,-39.71575103793293,-39.601032125297934,-40.49798833206296,-39.871994661632925,-40.33540532551706,-39.37070749979466,-39.51149692339823,-39.06109481677413,-38.788293078076094,-38.539174349512905,-38.400029079057276,-37.70744401309639,-37.219633320812136,-36.282482164911926,-35.80199684482068,-35.09933931194246,-35.139249719213694,-35.425939473789185,-34.56588561227545,-34.83114169491455,-33.99088492337614,-33.450219022110105,-33.86270419694483,-33.297865407541394,-33.84518836578354,-34.56332516670227,-34.070689796004444,-35.06511092139408,-34.32563674869016,-34.052218003664166,-34.23048216709867,-35.206433354411274,-34.6112850708887,-34.45499775139615,-33.752981145400554,-33.29039759654552,-33.607492534443736,-32.775983083527535,-32.65818261913955,-32.63533302536234,-32.31221885839477,-31.885300202760845,-31.349818230606616,-30.496324023231864,-30.55648486316204,-31.21115933964029,-31.224622348789126,-31.3713023760356,-31.294680707156658,-30.672112834174186,-30.815197669435292,-31.11636968702078,-30.943959386087954,-29.947287655435503,-30.140693322289735,-30.3572711260058,-31.312307658139616,-30.99309921078384,-30.467183971311897,-29.61579556018114,-28.769811859820038,-28.826021066401154,-28.084759667050093,-28.02522906800732,-28.608404660597444,-29.172703448217362,-29.291716725099832,-29.265209270641208,-29.439761423971504,-29.004005300346762,-29.007691249251366,-28.68679966032505,-29.43786392128095,-29.012267268262804,-29.848786260932684,-30.16573984688148,-29.95309137739241,-29.624171381816268,-29.122369442135096,-29.01260962942615,-28.716064523905516,-29.357836237177253,-28.58241489296779,-28.653438800945878,-28.10434080194682,-27.986578559037298,-27.423059984575957,-27.925942074507475,-28.424681762233377,-29.196166383568197,-29.15267714764923,-29.444245929364115,-30.343736415728927,-30.783496968913823,-29.831734688486904,-30.01746671134606,-29.059554839972407,-29.38488313416019,-29.188397101592273,-29.90013929642737,-30.182595973834395,-31.013410980347544,-30.360215333290398,-30.213248376734555,-30.766715107485652,-31.060060454066843,-30.42439553514123,-31.16726805595681,-31.03888876736164,-30.792319177184254,-31.021099449601024,-30.485499226488173,-29.713780622463673,-30.44714526226744,-31.341825711075217,-32.26617203140631,-32.62621515011415,-33.3815043871291,-32.989239879883826,-33.69153843494132,-32.963384327013046,-33.813238818664104,-33.26424135453999,-32.59362522279844,-32.10173813998699,-31.368747140280902,-32.27310967631638,-31.548627279233187,-31.17818531440571,-32.146465439815074,-31.442326630465686,-31.722050928045064,-32.69831045018509,-32.535363969393075,-33.44279142236337,-32.52807536767796,-32.08481689216569,-32.232428098097444,-32.16462411452085,-31.825622386299074,-31.306569093372673,-31.75360093312338,-31.55932808946818,-32.01946105109528,-32.14159062318504,-33.01010788232088,-32.43208596017212,-32.911252613179386,-33.86664993595332,-33.08487957995385,-32.58813856868073,-31.986534179653972,-31.315695523750037,-32.15277965599671,-32.57520989514887,-33.15905181039125,-32.97840942302719,-33.148218100424856,-33.955287407618016,-33.3649374647066,-34.32269249809906,-33.3785374048166,-33.27946028811857,-32.46779715362936,-31.98599424166605,-31.170558114070445,-30.731534668710083,-31.10475239949301,-31.061113687697798,-30.525964371860027,-30.257502167485654,-30.82213756768033,-30.93988508032635,-30.317660809028894,-30.21418366068974,-29.28421312617138,-28.507022607605904,-29.331244761589915,-29.059225640725344,-28.996523022651672,-29.2962580579333,-29.976366987917572,-30.22426864504814,-29.668481511995196,-30.476241609547287,-31.225293266121298,-30.74455269938335,-30.174065025523305,-29.477758341934532,-29.987378714140505,-30.450752737000585,-29.923195670358837,-30.400962867308408,-29.499479868914932,-29.59587946906686,-28.777997667901218,-28.909422643017024,-28.263515285216272,-28.95364183234051,-28.2985999006778,-29.198274184949696,-28.59870341932401,-27.803727545775473,-27.710528724826872,-27.66980520123616,-27.62309726793319,-28.357887064572424,-28.099912565667182,-27.59558629943058,-27.09824400767684,-26.140170951839536,-26.18765288265422,-26.925536705646664,-27.3074729796499,-26.518352514132857,-27.305040698498487,-27.335104304831475,-28.261678386945277,-28.098288966342807,-27.77120616286993,-27.641027280595154,-28.019933180417866,-27.8119489653036,-27.58409078978002,-27.06611081957817,-26.42044825013727,-26.633464080281556,-27.140774998348206,-26.603387388400733,-25.922205777838826,-25.74907892337069,-25.032359826378524,-25.94933814695105,-26.17077083233744,-26.05744238710031,-26.380987709853798,-26.606609505601227,-26.677246732637286,-26.88925122935325,-27.64799153106287,-26.959621101617813,-27.401866593863815,-28.39702791394666,-29.02867798320949,-28.098108447156847,-27.493807359598577,-27.515314909163862,-28.350230809301138,-28.17354592587799,-28.33083375543356,-28.007820198778063,-28.75827811472118,-27.790221673902124,-28.574615806806833,-29.29224582016468,-28.648174304049462,-29.49135394068435,-29.15028396854177,-29.845688294619322,-30.410263125319034,-30.557344580069184,-30.373535616789013,-30.344082985073328,-31.00591498753056,-31.99119372246787,-32.77794837998226,-32.394514250569046,-32.80991729022935,-33.66416841978207,-33.95388856669888,-34.80658728023991,-34.512519902549684,-34.732040881644934,-34.28247894020751,-35.02405334729701,-34.562122429255396,-33.589619919192046,-34.56145379925147,-35.38725416595116,-36.2300801477395,-36.796093369368464,-37.0899851298891,-36.12063005240634,-35.13519637892023,-34.639709315262735,-35.434591200668365,-35.52165717724711,-35.08481481997296,-34.87417453574017,-35.38180213840678,-34.63415275607258,-35.55313004180789,-36.28604310518131,-36.418424347415566,-36.98496385058388,-36.994732736609876,-37.44710300769657,-37.44235634384677,-38.13726044865325,-37.54261515615508,-38.34293099306524,-39.064880564808846,-38.489413265604526,-38.396709410939366,-37.85872375546023,-38.19008385250345,-37.83469155570492,-38.785725735127926,-38.57263366924599,-37.90119749959558,-38.32204576721415,-37.968501324765384,-37.19700749963522,-36.82164659257978,-37.40897085145116,-37.485796411987394,-37.40023662848398,-37.10231010988355,-36.79841016093269,-36.429047853220254,-35.8612087755464,-36.21476313099265,-35.704607672058046,-35.72855069069192,-35.61137441499159,-35.791292956098914,-35.84041835507378,-36.26833849679679,-37.2257030508481,-37.07159207761288,-37.225179380271584,-36.60652209026739,-36.96686316281557,-36.58790015708655,-37.166499270126224,-37.348970723338425,-37.61919028731063,-37.909686075523496,-37.77486455300823,-37.843049087096006,-38.657693167217076,-38.28161815740168,-38.542217643000185,-38.55466840369627,-39.54665946913883,-40.048584394622594,-39.42547494312748,-38.65787225775421,-37.898917745798826,-37.94310356210917,-37.66364317713305,-37.32228918746114,-37.441742726136,-37.96409415220842,-38.36357518192381,-39.21436326438561,-39.31236557243392,-38.94933866756037,-39.2075275038369,-39.72786999074742,-39.207001521252096,-38.8250283668749,-38.835899288766086,-39.806129957549274,-38.89357194583863,-39.047382241114974,-38.29875585390255,-38.535292563494295,-38.73036277433857,-38.876208192668855,-38.22061986941844,-37.40837816847488,-36.646206584293395,-36.96402319101617,-37.7125088730827,-37.31619934970513,-37.478341072332114,-38.26416556490585,-38.534407114144415,-38.40637326100841,-38.467393355909735,-39.30515306210145,-39.215209655463696,-38.2604571278207,-37.64466695766896,-36.70103335240856,-37.53253363072872,-37.94302965188399,-38.62141614546999,-38.75864485371858,-38.456087350379676,-38.814126254059374,-39.42390492046252,-39.71823187125847,-40.2230269825086,-39.7055201260373,-38.78091110289097,-38.458304862026125,-39.359805503394455,-38.59645663946867,-39.58576652081683,-39.54075175803155,-38.67849616939202,-39.36178978160024,-39.390202602837235,-39.87813729653135,-39.452089390251786,-39.49125598138198,-39.85381398256868,-39.58935482148081,-38.615805490873754,-37.82770341448486,-37.91717019909993,-37.13096681423485,-36.63392472313717,-36.34213986899704,-36.98752614622936,-36.75629281718284,-35.76268264884129,-36.50766624044627,-36.06433486100286,-35.86394751723856,-36.406562647316605,-36.1925597153604,-35.51521569350734,-35.85911956662312,-35.114893556106836,-35.12930580135435,-34.15203351993114,-34.46324063837528,-35.038828171323985,-35.66248659603298,-34.922265868168324,-34.49394650803879,-34.24747283337638,-34.031368230003864,-34.952149853575975,-34.456585890147835,-34.129354702774435,-34.295892770867795,-33.84787175245583,-33.80721078021452,-32.96599701233208,-33.75906823622063,-33.49440365238115,-32.810061666648835,-31.862787913531065,-31.314478118903935,-32.254544539842755,-33.24721361557022,-33.34545970335603,-33.38185741007328,-33.79988244501874,-34.76908423192799,-35.596335743088275,-34.823610958177596,-35.220308892894536,-34.956962931435555,-35.8025984284468,-36.10540971951559,-36.423769001848996,-36.48617712035775,-35.94203623523936,-35.211348738987,-34.940456377808005,-34.45241877902299,-35.04110163357109,-34.61861972650513,-34.73831082228571,-34.197521068155766,-34.973646972794086,-35.12441175384447,-34.555326054338366,-34.97915555164218,-35.39953319961205,-34.80091738002375,-33.86231907596812,-34.7534603360109,-34.40509255044162,-33.76581511134282,-32.87791383871809,-33.32392540201545,-32.49382525589317,-32.008686357177794,-32.02906766626984,-31.873920587822795,-31.52937057754025,-30.774202482309192,-31.034564753994346,-31.04265377530828,-30.26084962580353,-29.636643547099084,-29.407653122209013,-30.220374839380383,-29.378885939717293,-28.664207965601236,-28.605822004843503,-28.04036571457982,-28.750285523943603,-29.58850907208398,-29.151373230852187,-29.232446632813662,-30.141605159733444,-29.652009970508516,-30.527907574083656,-30.416979770641774,-31.08503877837211,-30.65259454259649,-29.907353431917727,-30.080129344947636,-30.521260493900627,-30.498270576354116,-31.419569285586476,-31.322685956023633,-31.895878914278,-32.5497739976272,-32.36026536952704,-32.39962018467486,-32.27555570472032,-31.300427143462002,-30.308164213318378,-30.51299808593467,-30.086065384559333,-30.63506647385657,-30.789541609585285,-31.33278557145968,-31.51165945455432,-32.47954029776156,-32.26131177786738,-32.10590261174366,-32.04991263663396,-32.63437735568732,-32.71170651866123,-32.364596157334745,-32.44990936573595,-32.62806767737493,-33.5662617078051,-33.88351844670251,-34.73704762151465,-35.34832371678203,-36.17390173440799,-36.69569252571091,-37.27486948855221,-36.46748338639736,-37.205738241784275,-38.00139609025791,-37.054362470749766,-36.34745039045811,-35.88096537254751,-35.95622606249526,-35.692421194631606,-36.23397219181061,-35.615872820839286,-35.3287248746492,-35.961794211063534,-35.6645196788013,-35.51558320270851,-35.92430315213278,-35.72765687527135,-35.745622902642936,-36.36439347220585,-37.180147962644696,-36.602869090624154,-35.8180807675235,-34.89699648972601,-35.702504409942776,-35.45019251899794,-36.00581705616787,-36.49617270519957,-36.627244448289275,-37.60379167087376,-36.72549233864993,-36.43933713110164,-35.59778961678967,-36.063057594932616,-36.37679643277079,-37.25071331113577,-36.676454479340464,-36.066514583770186,-36.91028456995264,-37.48672205861658,-36.92566808219999,-36.422883356921375,-36.039875101763755,-36.67209312366322,-35.87896573217586,-34.99407955119386,-35.191654295194894,-34.415711988694966,-33.55652744136751,-32.57763062603772,-33.46917816065252,-34.13752607349306,-34.999590386170894,-34.80174879357219,-33.9187145861797,-34.91359260957688,-35.807454901747406,-35.92747491598129,-36.504762407857925,-37.311944485176355,-36.460357022006065,-36.331984457559884,-36.86814261646941,-37.61068664258346,-36.69557087821886,-37.202279523480684,-37.06401528278366,-36.94193110335618,-37.29409069987014,-36.604814029764384,-36.9290329948999,-36.559996439144015,-36.01964082242921,-36.10820924304426,-35.98497295565903,-35.33271257393062,-35.005610327702016,-34.62375652603805,-35.29883177531883,-35.09084191545844,-35.806863258592784,-35.939517609775066,-36.87377530755475,-37.665205924771726,-38.187885185703635,-38.27743511740118,-38.218750598374754,-38.01103343674913,-37.647513438016176,-37.5310269696638,-37.5452570412308,-38.48374074930325,-38.221685252618045,-38.2641087830998,-38.21032173745334,-38.133758772630244,-38.25115246279165,-37.91620979923755,-37.228573291096836,-37.38798002619296,-36.99908644147217,-36.22525572543964,-35.6765840803273,-34.96156007889658,-34.290353344753385,-34.16881000390276,-34.224707120098174,-34.9819529238157,-34.08587858872488,-34.40666086087003,-34.84010616503656,-34.74830346601084,-34.1601767539978,-34.381375627592206,-34.11552949389443,-33.36439402960241,-32.753898149356246,-32.67933346796781,-33.08005058998242,-32.97958924807608,-32.75345769384876,-33.66677070455626,-32.99755060253665,-32.8769662566483,-33.645525926724076,-32.8294423003681,-32.844404712785035,-33.540580470114946,-33.47939585428685,-34.3884400036186,-34.68012898368761,-35.5140456976369,-34.90602593822405,-35.35272922227159,-35.17525010369718,-35.5126918386668,-35.18391830986366,-35.7775473902002,-36.702881186734885,-37.102664748672396,-37.01503598643467,-36.597609024494886,-37.44918897934258,-36.96728606754914,-37.603573084343225,-38.169976448174566,-38.98185493145138,-38.7765684556216,-39.22646224638447,-39.75151130184531,-39.24142300989479,-40.16709334542975,-41.04483157210052,-40.897495246026665,-40.0893787862733,-39.36366725852713,-40.11158884782344,-40.096314928960055,-40.566780782770365,-39.7416917369701,-39.430153026245534,-39.77143410174176,-39.30295570055023,-39.524259300902486,-39.41382220806554,-38.59214138565585,-39.36067625461146,-39.12861101934686,-39.17639693757519,-39.57598150521517,-39.839285764377564,-40.617317331489176,-40.116700598504394,-39.6543351598084,-39.15784217836335,-39.81791150290519,-40.03494545351714,-39.26643090788275,-39.79827212821692,-39.30576364090666,-39.855688786134124,-39.13328428659588,-38.98145965114236,-39.068559986539185,-38.91991977347061,-39.702898347750306,-39.70503600127995,-40.12400079192594,-40.04491793969646,-39.75385957909748,-39.78614331781864,-40.583872970193624,-40.23561930656433,-39.957092265598476,-40.0763006452471,-39.909649858716875,-38.94215534487739,-39.618964864872396,-39.96857510181144,-39.08679649513215,-39.933546816930175,-40.08080830704421,-40.31561340158805,-40.85021270811558,-40.0447946973145,-40.549464042298496,-40.891962649300694,-40.45053427154198,-40.448008798994124,-41.37309087906033,-41.32199343992397,-40.63361758319661,-39.708513867575675,-39.018220915459096,-38.48744662525132,-39.224790344014764,-39.524089673534036,-38.55573378549889,-37.60332449013367,-36.86774552287534,-37.2685471996665,-36.88627466978505,-35.934913023374975,-36.78921835916117,-37.104317896068096,-37.83509781816974,-38.492510145995766,-37.857727812603116,-37.284830931574106,-36.6363360802643,-37.01667621964589,-36.602046047803015,-36.68334239954129,-37.37584927165881,-37.55728538893163,-37.539682772010565,-36.55437891790643,-36.25805699126795,-35.47234281990677,-34.97053583152592,-35.02617210149765,-35.099056580569595,-34.862601954024285,-34.8497799821198,-34.71743439277634,-35.171660866588354,-35.06853401614353,-35.02382593927905,-34.45147468801588,-33.83162154443562,-33.95535723026842,-33.465755564626306,-34.382689975667745,-35.07141697220504,-34.11550570977852,-34.19157110247761,-33.244430494494736,-32.591675786301494,-32.69161881739274,-32.03803682792932,-33.00102685159072,-32.3942724163644,-32.22587588848546,-31.825045423582196,-30.908716294448823,-31.17433210555464,-31.219989373348653,-31.890165267977864,-32.1791236246936,-32.36395942280069,-32.94119877787307,-33.77355086291209,-33.75164537131786,-33.27609498426318,-33.847994677722454,-33.12904311809689,-32.42551473621279,-32.21697833202779,-32.58419448789209,-31.653789919801056,-30.694851914886385,-30.542235226836056,-30.929715862032026,-30.46214832784608,-29.626383278518915,-29.687322716228664,-29.89991491427645,-29.19968261383474,-28.535506574902683,-28.46660378249362,-28.393962922506034,-28.142798793502152,-29.030623908154666,-29.091094264294952,-28.823652086779475,-29.611658826470375,-30.047690115403384,-29.927854218054563,-29.935196802485734,-30.486082322895527,-29.514970156829804,-29.04911741008982,-28.371800788212568,-28.779726516455412,-28.7105247345753,-28.87333788955584,-29.074221649207175,-29.18261765409261,-28.908510732464492,-28.535965433809906,-29.490748511627316,-29.72692960454151,-30.6129964357242,-30.11746731447056,-29.74900400545448,-29.70572628453374,-29.842596667353064,-29.021851427387446,-28.73674474284053,-29.55262595973909,-29.58215315453708,-29.9011041643098,-29.708587632980198,-30.40281580714509,-31.295129112899303,-31.979168362915516,-32.265252026263624,-31.998640162870288,-31.325505160260946,-30.951073861680925,-31.29510814975947,-30.378723562229425,-30.239361848216504,-29.299571569543332,-28.944892653264105,-29.78397934185341,-29.345023796893656,-30.195077993441373,-30.49258324597031,-29.743373523000628,-30.572050233837217,-30.217157966457307,-31.114993647206575,-31.646766376215965,-30.993630460929126,-30.636493045371026,-30.036024518776685,-30.127295155543834,-30.491121561732143,-31.017302215099335,-30.592021993361413,-30.38132387911901,-30.718181741423905,-29.95231034932658,-30.144396366085857,-30.405265484005213,-30.541182240936905,-30.533500495366752,-31.029710949398577,-30.841893561184406,-31.445102551020682,-31.76019441522658,-32.005505178589374,-31.975655909162015,-32.18203085893765,-32.02906638663262,-32.7163098086603,-32.490175222977996,-32.22116636810824,-32.80639644805342,-32.18019015528262,-32.213990138843656,-32.57666838960722,-33.03217611461878,-32.27641725866124,-32.48654769919813,-32.79954427620396,-32.89260197337717,-32.49556444538757,-32.917833728250116,-33.78373988438398,-33.85734477173537,-33.22744625015184,-33.14999532327056,-32.45738771278411,-33.17503599030897,-32.66172143025324,-33.6153398277238,-34.33500616811216,-34.92071945592761,-33.975757567211986,-34.7638131598942,-34.16700388304889,-34.158891703467816,-33.19374322798103,-33.40948282321915,-32.849204420577735,-32.29339707456529,-32.557716773822904,-33.432227925397456,-33.84508548723534,-33.864227888640016,-32.91829308634624,-32.85838589305058,-32.00149167375639,-32.855564997997135,-31.916069632861763,-32.056306360289454,-32.68564528878778,-33.106760831549764,-33.101040973328054,-32.53904309915379,-31.69759123818949,-31.129258839413524,-31.219646021723747,-31.24578283028677,-30.915304047521204,-30.60819429019466,-31.436729714274406,-31.92246666084975,-31.23713477049023,-30.302129921969026,-30.52948264684528,-31.15783035568893,-30.70181875070557,-30.089520741719753,-30.86903883749619,-30.01464649103582,-30.956011841073632,-31.281411196570843,-31.951379937119782,-31.135987524408847,-31.94592854147777,-31.77293213782832,-32.63453466864303,-33.39678469533101,-33.62711688224226,-33.615606733132154,-34.24269318860024,-33.52569751441479,-34.35259475605562,-33.40824999194592,-32.459155198186636,-31.75962944654748,-31.963735272642225,-31.513133058324456,-32.491265018470585,-32.645916026551276,-31.660999819170684,-30.949269391130656,-30.697527647018433,-30.561234204564244,-29.956272350158542,-29.969542070291936,-30.00684810942039,-29.154368365649134,-30.099647998344153,-30.93296896200627,-31.770546560175717,-31.863979142624885,-31.594476582016796,-32.20174287678674,-32.74939977237955,-32.05774045921862,-31.565968027338386,-31.86024064850062,-31.691085250582546,-31.66391248209402,-30.74053944647312,-31.644994655624032,-30.784424741752446,-30.305102401878685,-30.625301797874272,-30.296486421022564,-31.062520935665816,-31.007869608234614,-31.341166256926954,-30.882158739026636,-31.53414434986189,-30.736953689716756,-30.13087199628353,-29.831456837244332,-29.69153135502711,-29.58820411376655,-29.723177704494447,-29.51250625308603,-30.30231240624562,-30.649644314311445,-30.94145967066288,-30.49981681117788,-31.179859426338226,-30.254398100078106,-30.65842202398926,-30.33734751585871,-29.962574534118176,-29.879160114564,-29.425562805496156,-30.264832614921033,-31.04875751165673,-30.885614313185215,-31.374281836673617,-31.17755100224167,-31.32184034353122,-31.893516963347793,-32.01618464104831,-32.15333406534046,-32.50752722704783,-32.95745540363714,-33.08236973360181,-32.20132858073339,-31.892041068524122,-32.273962061386555,-31.71667423006147,-32.39197582472116,-33.29669294087216,-34.05244603706524,-33.1685385662131,-33.69343566149473,-32.93928101006895,-32.65731267258525,-32.993674986064434,-33.138926286716014,-32.494823676068336,-32.08452048944309,-32.0813247943297,-32.80268775811419,-32.52065323339775,-32.575471637770534,-33.257591910194606,-33.07383393496275,-32.80643922230229,-32.370571612846106,-31.80290621286258,-31.53762532491237,-31.75204725889489,-32.51760639389977,-31.699412239715457,-32.188931114505976,-32.753017315641046,-32.395564034581184,-31.914294565096498,-31.863903386052698,-32.25932208588347,-32.95492877578363,-33.569234831724316,-33.25520628783852,-34.19866984151304,-33.32238729298115,-33.83780877105892,-34.536289440467954,-34.59982578083873,-34.959933885838836,-34.85206104395911,-35.45752673363313,-35.15651249187067,-34.33195772301406,-33.955757232382894,-33.20775091601536,-33.55037896381691,-33.76628232141957,-33.61660768510774,-33.831051318440586,-33.68123136088252,-33.354677194263786,-33.94854318955913,-33.09315089229494,-33.69568377919495,-32.70011682668701,-32.70252014370635,-33.677484650630504,-34.29417251702398,-34.58543590316549,-34.42590431403369,-34.58313827542588,-34.0732963392511,-33.48945492459461,-34.22011463390663,-33.619797908701,-33.6768030798994,-34.58378019090742,-35.32573855062947,-35.75035091256723,-35.99133347487077,-35.10611229296774,-35.28302913159132,-34.539527335204184,-33.832906091585755,-34.79336266685277,-34.61860127421096,-34.6554486467503,-34.045805933885276,-34.58668658649549,-34.72910800995305,-34.28600424528122,-35.14133366011083,-34.98979684198275,-35.88898359704763,-35.8067319127731,-35.59457953553647,-36.41455376241356,-36.04913670103997,-36.59689662698656,-36.83642021752894,-35.87314731441438,-35.11950222728774,-35.951236641034484,-35.735148111358285,-34.81911349110305,-35.709743758663535,-35.72809277521446,-34.891632630024105,-35.31199064152315,-35.62057932373136,-34.855456489138305,-34.65031369123608,-35.4178402251564,-36.011793811805546,-35.56848736805841,-34.9411472431384,-35.7103377613239,-35.66435310151428,-34.851386435329914,-34.59731501992792,-34.50673439260572,-34.14351769676432,-33.76102064456791,-33.557202915195376,-33.94224834814668,-34.678394354879856,-35.08430511690676,-34.82970409048721,-34.58944843709469,-35.25953593244776,-35.725051055662334,-36.27864127792418,-36.543423344381154,-36.5843751411885,-37.1484060366638,-37.89593559131026,-37.03647490730509,-37.56703693466261,-38.12394945556298,-38.48950258735567,-39.38204227387905,-40.355736119672656,-39.42911408049986,-38.53835366712883,-38.34780460363254,-38.64014813024551,-38.05081526981667,-38.266496915370226,-37.86021785484627,-38.79163378896192,-38.39056391082704,-38.031646321062,-37.96173680573702,-37.70320143876597,-37.1555543364957,-36.348394196946174,-37.04083416517824,-36.24322037957609,-36.20843349676579,-36.485535812564194,-35.697836256120354,-34.74802669510245,-35.60005842708051,-35.25971160409972,-35.413504778873175,-36.028332483023405,-35.289300988893956,-35.2159263859503,-36.00172321731225,-35.85274307010695,-36.00864228187129,-35.10018169274554,-35.01056105457246,-35.455243865959346,-36.05480266176164,-36.5864153476432,-35.635234859306365,-36.63029933767393,-36.45824560848996,-36.94217423070222,-36.149620743934065,-36.31863579899073,-35.41938667977229,-34.481204273644835,-33.59068459644914,-34.11421902291477,-34.14117163140327,-34.348703167866915,-34.86630813404918,-35.22923423163593,-36.221239930484444,-35.75576292909682,-34.92349518556148,-35.31783107854426,-35.289921602234244,-35.511919024866074,-35.67998638190329,-35.98151328181848,-36.14733075723052,-35.90331236412749,-35.42375654820353,-34.48802717309445,-34.348379753064364,-35.21932984981686,-36.18726961873472,-37.09447936946526,-36.551440090406686,-36.560494812205434,-36.53008477669209,-35.79359383089468,-35.09378148894757,-35.5974812861532,-35.1580931218341,-34.59990612603724,-33.63183950027451,-33.21558763086796,-32.666055034380406,-32.11206192569807,-32.87537334021181,-33.02986839413643,-33.738574060145766,-32.95873223710805,-32.997303382027894,-32.24318497441709,-31.888002269901335,-32.43968360964209,-33.39977527456358,-32.98231491679326,-32.779468095861375,-32.72060962440446,-31.82129593146965,-32.15110497549176,-31.73226155107841,-31.49297171505168,-32.08872029185295,-31.744151204824448,-31.91121404618025,-32.871824802830815,-31.941393008455634,-32.84753850614652,-32.56995342485607,-33.28551597101614,-33.11533464631066,-33.60083774570376,-34.37026899540797,-34.04924818407744,-34.437714342959225,-35.399586382787675,-36.257566003128886,-36.8409163816832,-37.77419341728091,-38.24440838349983,-38.47380306897685,-37.735564519651234,-38.57026961259544,-37.832810807507485,-37.07325857039541,-37.189867357723415,-37.441526158712804,-38.33126673428342,-39.147802360355854,-38.18413941608742,-38.089041939005256,-38.14678817335516,-38.14677726570517,-37.16611834894866,-37.071873114444315,-37.88815520238131,-37.55981188081205,-37.87058143923059,-37.47238629311323,-38.21897435002029,-38.191053352784365,-37.24759921524674,-37.91422406770289,-36.971910398919135,-36.25605539092794,-35.8664964963682,-35.48761621164158,-35.20700154779479,-34.827106955926865,-35.78204951481894,-35.79095558030531,-34.85348256211728,-35.49019722547382,-34.93584629939869,-34.89312739064917,-34.96142475679517,-34.14960236521438,-33.67406478570774,-33.22440244629979,-32.948932552244514,-33.69136390089989,-33.10302827367559,-34.064776620361954,-35.030970726162195,-34.52628345834091,-34.92946320818737,-34.93467212514952,-34.77663674997166,-35.04304022947326,-34.3600568738766,-34.79457916831598,-35.33336192276329,-36.215943093877286,-36.187526032328606,-37.16301745828241,-37.66213655145839,-38.37721334118396,-37.68789097946137,-37.9736794824712,-37.35938166594133,-38.166227048262954,-38.06707932846621,-37.76743278838694,-37.9986966997385,-37.219500709325075,-37.21981291566044,-36.73674101335928,-37.60928038461134,-37.04850663244724,-36.1741333627142,-35.885172543115914,-35.48173968261108,-35.468032899312675,-34.47353859152645,-33.96035398636013,-34.647278611082584,-35.363787297625095,-36.131597597151995,-35.30643286649138,-35.59685349743813,-36.08675625314936,-36.98555981228128,-37.75451579783112,-37.57453730376437,-38.38844316871837,-37.66310081910342,-37.39084361679852,-38.20589612284675,-37.942349552642554,-38.53072766494006,-39.21760308276862,-39.32712268270552,-39.423079318832606,-38.84269319474697,-38.610238537192345,-38.88344047125429,-38.51130234869197,-37.91458051465452,-37.7019391101785,-37.63910732977092,-38.20871327538043,-38.23619435913861,-38.487920604646206,-38.40494371578097,-38.32450162898749,-37.888726216740906,-37.02639394439757,-37.67654534615576,-38.2001929692924,-37.97291729878634,-38.053822305519134,-38.623343110084534,-38.30786001775414,-37.869207916315645,-37.1700921934098,-36.582318507600576,-36.62281497893855,-36.936221689451486,-37.18320906208828,-37.87145094573498,-38.541541042272,-37.56784174544737,-37.70884687220678,-37.786973365582526,-37.2461131028831,-37.20938276639208,-36.28951295139268,-35.835889749228954,-35.46217803424224,-35.561338644474745,-36.37984486063942,-36.179384926799685,-36.54771814821288,-36.67754676286131,-36.5108947311528,-36.07248292258009,-35.71211946429685,-35.8740648701787,-36.47786542074755,-37.01379462517798,-36.43175222584978,-36.76655761292204,-36.223180539906025,-35.96514691133052,-36.24182825209573,-37.08753571705893,-37.6639809361659,-38.600069548003376,-39.556491730269045,-39.225694679655135,-39.50629146955907,-39.466940694488585,-38.818322860170156,-39.098434009123594,-39.474218274932355,-38.71632832381874,-38.40980098256841,-37.98749329848215,-38.36497248429805,-37.62185484031215,-37.10444657597691,-36.306123330723494,-35.56836989708245,-35.7056331015192,-34.95170865673572,-34.7625557477586,-33.924380022566766,-34.9087162995711,-34.25020464323461,-33.46436213888228,-34.261704575736076,-33.841078135650605,-32.89895305642858,-32.224163320846856,-32.467849852051586,-32.72807786241174,-32.75504663074389,-33.30178260244429,-33.304811753798276,-33.67029041890055,-33.99739193636924,-34.338745914865285,-33.677666761446744,-33.455000014044344,-32.936012756079435,-33.31366303842515,-33.924318014644086,-33.24228127254173,-33.43660877691582,-33.732823101338,-33.7299532154575,-33.01544484170154,-33.99836093233898,-33.589524504262954,-33.18764524208382,-33.156467468477786,-32.69853838067502,-33.36180104454979,-34.33519085589796,-34.82523493561894,-35.34666239609942,-35.89007162442431,-36.351985880639404,-37.072835728526115,-37.5742974486202,-36.61341213947162,-36.63912736112252,-35.964024112094194,-36.27793071931228,-36.468981571961194,-35.672036009375006,-36.61949333129451,-35.84656709153205,-35.492638937197626,-34.97290538623929,-35.177942539565265,-35.8694648174569,-35.80534190824255,-36.48915031645447,-36.15080625144765,-35.47376851737499,-35.69970215437934,-34.78249100409448,-33.84784579090774,-33.92231947276741,-34.881440659519285,-34.80578398145735,-35.72907779039815,-35.104768183548,-35.37753625353798,-36.22920990129933,-35.764675395563245,-35.85995748266578,-36.3590963636525,-36.63878264464438,-36.8855785978958,-37.18728674156591,-36.77802969329059,-35.912827307358384,-35.05687415925786,-34.27813049964607,-33.421510769985616,-33.32802738621831,-33.39885657466948,-32.94550295127556,-32.56907552340999,-33.191406642086804,-32.57344890385866,-31.636171706952155,-30.68748035747558,-31.25183851784095,-31.063777924049646,-30.44183992827311,-30.30651380121708,-30.888987766113132,-30.909398559015244,-30.874004415702075,-29.957788307219744,-29.882793279364705,-28.898380247410387,-29.197612036019564,-28.222358531784266,-28.151499106083065,-28.307797755580395,-28.290595681406558,-29.24720811424777,-28.733322056010365,-29.005856790114194,-29.970754946116358,-30.946806041058153,-31.625901689287275,-32.10154698928818,-31.10856849560514,-31.748989646323025,-32.637574582826346,-31.953984645660967,-31.158140644896775,-31.007010162808,-31.54853272018954,-31.277078229468316,-30.820011330302805,-30.034164531622082,-30.74350827233866,-31.584182186983526,-31.91633008606732,-31.472987617831677,-31.091153501532972,-31.601717442739755,-32.01405284786597,-31.234184850007296,-31.437504753936082,-30.92025508498773,-31.207631221041083,-31.357620905153453,-31.56239177985117,-31.79517831141129,-31.823096259497106,-31.745675803162158,-31.27518720412627,-31.05336251622066,-30.837128904182464,-31.665859326720238,-31.298129349481314,-31.073273286689073,-30.629128967411816,-31.473487289622426,-32.0325643979013,-31.396454533096403,-32.386523188557476,-33.14218137180433,-33.093797225505114,-32.56798771722242,-32.19057236844674,-32.682209263090044,-32.95238344091922,-33.78375182207674,-33.20751597639173,-33.04078994272277,-32.30907412711531,-33.1385881928727,-32.44314157962799,-32.4912055041641,-32.7679131552577,-32.148968424182385,-32.31180273741484,-32.67732849158347,-32.70792284049094,-31.940591861959547,-32.66586343292147,-32.81797234388068,-32.300047433935106,-31.478454670868814,-32.18245004536584,-32.97661337535828,-32.259266344830394,-32.55996451852843,-33.064699857030064,-33.83188550174236,-33.686225208453834,-33.965446564834565,-33.14082565438002,-32.21919123083353,-32.428245490882546,-31.86249452875927,-32.45983390044421,-32.02452896675095,-32.42313344730064,-32.005075139924884,-32.562391167506576,-32.59970639506355,-32.61263669701293,-31.7606821837835,-32.29775085905567,-32.07749810535461,-32.793205935973674,-32.31380467815325,-32.68667662004009,-33.08696399675682,-32.566947436891496,-31.722444950137287,-30.976351409219205,-30.165416062809527,-30.704169645439833,-30.20980911888182,-29.215191488619894,-29.047252770978957,-28.71332429535687,-29.318587803747505,-29.94611223973334,-29.294030542485416,-29.476367777213454,-29.24096805229783,-28.35255111567676,-29.269070092588663,-29.997014458291233,-30.459656223189086,-30.19577511260286,-30.49993417179212,-29.695652169175446,-30.632010119967163,-30.650198358576745,-30.493517925031483,-29.79261691076681,-30.108069880399853,-29.592776618897915,-29.49938029795885,-30.270993212703615,-29.901592176407576,-30.090684226248413,-30.033076224848628,-30.266739340499043,-30.35450893267989,-31.085914676077664,-30.481636877637357,-30.78012553555891,-30.119142562616616,-29.6955082337372,-29.257618349511176,-30.182630901690573,-30.772939320653677,-29.854808436241,-29.928780192509294,-29.40846668696031,-29.13040105625987,-29.45998697448522,-30.369290383532643,-30.66995085030794,-30.241864061914384,-31.230176301673055,-32.14551590755582,-31.874219734687358,-30.956925850827247,-30.60831715585664,-29.82713364576921,-30.508961958810687,-30.490110090002418,-30.91146444482729,-31.25698573049158,-31.686080537736416,-31.52397478558123,-30.68580991588533,-29.980579810217023,-29.76664966158569,-30.72421327000484,-30.863628316670656,-30.580450781155378,-30.32988745626062,-29.374912137631327,-28.75772907678038,-29.40290554938838,-29.626386776566505,-28.824210193008184,-28.192863484844565,-28.927223213482648,-29.631799542345107,-29.345799289178103,-30.16741639468819,-30.510414218064398,-30.72461039526388,-29.89130082866177,-29.822787805460393,-30.28376665804535,-29.40534575469792,-29.043898094445467,-30.038668675348163,-29.246457596775144,-30.210900586098433,-29.231407217681408,-29.04370362032205,-29.108713207766414,-29.981125042308122,-29.102028340566903,-30.076797634363174,-30.972775087226182,-31.76048560626805,-32.56381666474044,-31.625285014044493,-32.27838281262666,-32.03882609354332,-32.971732220612466,-32.82400863105431,-32.2768067731522,-32.0653906930238,-31.46854647481814,-32.166507666930556,-32.12326371623203,-31.71534406673163,-32.42957352288067,-33.148848401382565,-33.49785043578595,-33.798715255688876,-33.29316422948614,-33.335769589059055,-33.678986077196896,-32.92689151316881,-33.50028205104172,-34.40650955028832,-35.020796925760806,-34.47645672829822,-34.44502001442015,-34.98148610210046,-35.318790497258306,-35.14457244379446,-34.69351454358548,-35.69286252791062,-36.25224640592933,-35.77389107178897,-35.181810398586094,-34.33344030287117,-33.68238108372316,-33.51847757678479,-34.36101775383577,-34.36470854282379,-34.545732505619526,-34.46689733071253,-34.00984476972371,-34.24897835589945,-35.21901885094121,-34.64712551608682,-34.569191528018564,-34.924537281971425,-34.68072648299858,-34.361550371628255,-33.94206980941817,-34.85620017582551,-34.988832290284336,-35.42795555572957,-35.615630687680095,-35.37611067900434,-35.79542698711157,-36.34435333637521,-36.995978757273406,-36.40659800171852,-36.25488802418113,-35.37557517411187,-35.99668169626966,-35.83694053720683,-36.3511687614955,-35.38352729519829,-36.02444755891338,-35.19525173585862,-35.04251846997067,-35.53047766815871,-34.8524030786939,-35.149739073589444,-35.93286207364872,-36.58174476912245,-36.388899099547416,-36.20143803814426,-36.4083703821525,-35.63972786394879,-35.186316692736,-35.52531345607713,-35.72479157615453,-36.11337677389383,-36.19759355066344,-35.7462138296105,-35.28140684124082,-35.12965920800343,-34.15181022230536,-35.01878318376839,-35.13809324475005,-35.665621855761856,-34.85733551811427,-34.818096867762506,-34.782066997140646,-34.448234636802226,-35.423595029395074,-35.94869700726122,-36.891867538914084,-37.46852818317711,-37.707798732910305,-36.95765646640211,-36.290718919597566,-37.27011325955391,-37.95610240707174,-37.60516194766387,-37.84854797972366,-37.71626843884587,-37.01442154543474,-36.89314211625606,-37.86045289225876,-38.34412633674219,-39.24726039590314,-39.9228311823681,-40.357717647682875,-39.459880352485925,-39.02752851834521,-38.603654144797474,-38.226720531471074,-38.23271908285096,-37.94638642203063,-37.72756009316072,-38.245669232681394,-37.972844381351024,-37.30064927088097,-37.60542737180367,-37.48063956666738,-38.22495624702424,-38.04885636456311,-38.094334575813264,-37.39537855563685,-37.104694929439574,-36.939866814762354,-36.96639157505706,-36.20058565400541,-36.808798445388675,-36.225683849770576,-35.930273714475334,-36.06356066046283,-35.789187896065414,-36.22404730785638,-36.68525282852352,-37.56859714817256,-38.05294615868479,-37.66981835383922,-36.70372811611742,-35.75327176973224,-36.34921552473679,-35.61255188426003,-36.15842815488577,-36.49294241005555,-36.09011191688478,-36.66761483484879,-35.99769252445549,-35.197198977693915,-35.88509271852672,-36.73933353740722,-36.85497542656958,-37.800341898575425,-37.34831699170172,-38.05881254468113,-37.84233312914148,-38.21681082574651,-38.34269770607352,-38.699248688295484,-38.3416737630032,-39.150968632195145,-38.38262914586812,-38.14993038587272,-38.31934191985056,-38.185279777273536,-37.19507999392226,-36.40774623118341,-35.92480818973854,-35.518169809598476,-34.94043709989637,-34.81410928349942,-35.63512807851657,-34.93040556460619,-34.33612256171182,-34.58902554027736,-35.521698916796595,-36.09905872819945,-36.82965467590839,-36.33572351327166,-36.148702210281044,-37.06934225745499,-36.38487373990938,-35.4547262522392,-36.00905631110072,-35.10815117042512,-35.3427775837481,-34.53334198240191,-33.845039415638894,-34.00062564900145,-34.24894002079964,-33.764967278111726,-33.5129941473715,-33.73719001514837,-33.74700110498816,-32.914857600815594,-32.7580209528096,-32.94013779703528,-32.95559673849493,-33.79958639200777,-33.61301968013868,-33.48549585463479,-34.21746864262968,-34.86993775097653,-34.16511485399678,-34.66258648131043,-35.53025566926226,-34.6227655056864,-34.49478356773034,-34.409702259581536,-35.36698973784223,-34.546940074302256,-34.62137675797567,-34.90947810653597,-35.27787877479568,-35.22361316438764,-35.42417317721993,-35.326553624588996,-35.60450366092846,-35.95947659574449,-35.427711453754455,-35.25887460866943,-34.9536723298952,-34.99932170007378,-35.06973408488557,-34.84958146326244,-34.84329097205773,-35.81937071122229,-35.025403258856386,-34.605061708018184,-33.9728764584288,-33.74104444403201,-34.60644973767921,-34.69528807653114,-35.072701337747276,-34.16192009206861,-34.95467537920922,-35.801833525300026,-35.23024301836267,-35.31417605467141,-36.19504207326099,-37.049817501567304,-36.153601174708456,-37.124077753629535,-36.126116982195526,-36.68633513292298,-37.32536905724555,-37.56407052045688,-37.31946452567354,-37.96382609382272,-38.16593464277685,-38.5807299609296,-39.57547363685444,-39.48854308901355,-40.48847388010472,-40.858856204897165,-41.759612461552024,-40.89545004116371,-41.31068965187296,-40.92368544079363,-40.34308266127482,-39.570592269767076,-39.43265110021457,-39.50882657431066,-39.272164425347,-39.79464471153915,-39.73515903111547,-39.97235549520701,-39.189849672839046,-38.74526482541114,-38.038443931844085,-37.33601918956265,-37.94642952363938,-37.70073596807197,-36.999747906345874,-37.07007175125182,-36.44811968645081,-37.12563726026565,-36.25227404758334,-36.842005567625165,-36.82301365677267,-36.2707475265488,-36.653013062197715,-37.261940949596465,-37.910390426870435,-36.93299230700359,-36.57524634292349,-36.455246307421476,-35.96896742656827,-36.84150926070288,-37.50277918949723,-37.29550476744771,-37.56189006520435,-37.808464153669775,-37.23965948680416,-36.70992595888674,-35.8642837642692,-35.82221793010831,-36.23301773983985,-36.89886772353202,-37.52590540982783,-37.34458023868501,-36.74536540731788,-36.399584089405835,-37.008381329942495,-37.459807608276606,-37.7084969105199,-38.65342634823173,-38.31488611223176,-37.95878047961742,-38.304285396356136,-38.805747219827026,-39.129964982159436,-39.30776478536427,-38.84756036894396,-38.91565522318706,-39.514547639060766,-38.55559824081138,-38.150707186199725,-37.60822388343513,-36.856346181128174,-37.420181293040514,-37.367077024653554,-36.728390973526984,-35.815577898640186,-35.96913615707308,-35.72604094399139,-35.94417012343183,-35.25318045075983,-35.26549958111718,-34.56794635299593,-35.41405580518767,-34.87162835150957,-35.842088342644274,-35.733156342525035,-35.77146167540923,-36.61410135170445,-36.1842514295131,-35.76596728572622,-35.394611230585724,-34.79700691765174,-34.38390369946137,-34.740452168975025,-34.71908751828596,-35.56592271104455,-35.29685338912532,-36.17019494669512,-37.16764759225771,-37.37964623561129,-37.75545452721417,-38.01602115575224,-37.89289409574121,-37.98972290288657,-37.68950397381559,-37.22941724443808,-36.23506890516728,-36.10289286216721,-35.8753711739555,-36.620501649565995,-37.29822052223608,-36.86383058037609,-36.50127619644627,-35.83689963025972,-34.9033266203478,-34.98665404552594,-34.438443982973695,-34.418245007283986,-34.17100400524214,-34.88355608843267,-34.25964842969552,-33.5725753037259,-33.15356203680858,-33.29098585015163,-32.77516642259434,-31.93169016810134,-32.73692525643855,-32.31886265287176,-31.41109669301659,-30.83316430589184,-30.905159374233335,-30.292802480980754,-29.94105604244396,-29.31552272522822,-28.517719080206007,-28.42332483129576,-28.9627333721146,-29.639905008021742,-30.582765439059585,-31.222489388193935,-31.395143856760114,-30.47175970301032,-29.714569348841906,-29.630656903609633,-29.32085448037833,-29.74564338242635,-30.20364738861099,-30.382638280279934,-29.537543090060353,-29.128143867012113,-29.24671904463321,-28.871619009412825,-28.39931104471907,-29.031498784199357,-28.408917538356036,-27.816596436779946,-27.83926698518917,-27.479648204054683,-27.389282285235822,-28.30712491646409,-27.715597548987716,-26.740746886935085,-27.000099050346762,-27.440737743396312,-28.229563122149557,-27.23246158985421,-27.799154873006046,-26.889953969977796,-27.802521517965943,-28.2565845400095,-28.648759332485497,-27.698169318027794,-28.684935671277344,-27.720384308137,-27.41012390796095,-27.527861818205565,-27.327031802851707,-27.81071356451139,-26.989545695949346,-27.49496318679303,-26.91648801136762,-27.333264739252627,-28.12744523026049,-28.188093163538724,-28.967651304788888,-29.61236709402874,-30.418274556286633,-30.659251009579748,-30.424306345172226,-30.83813877310604,-31.189395560417324,-31.591765221673995,-31.074683340732008,-31.667975480668247,-32.185058411210775,-32.120734775438905,-31.663410221692175,-32.26575208082795,-31.84519453300163,-30.84862788207829,-30.503559400793165,-30.787605855613947,-31.640992240980268,-31.0559867285192,-30.96143023390323,-30.023004313465208,-30.683986469637603,-30.063333864789456,-29.246197913307697,-29.781484054867178,-29.997224348131567,-30.734383190516382,-31.034218947403133,-31.85054991254583,-30.93273141235113,-31.481845290400088,-31.36281970748678,-30.851256739813834,-31.175122374203056,-31.36530363932252,-31.537002821918577,-31.86610993789509,-31.038785811979324,-30.255377592984587,-29.28493315493688,-30.076845342759043,-30.222314084414393,-30.20323636289686,-30.248603349085897,-30.702810718212277,-30.00896483613178,-29.968662953935564,-29.865983419585973,-29.364226633217186,-28.47114601638168,-28.029249530285597,-27.961752894800156,-27.00952431699261,-26.046951323281974,-26.27549473568797,-26.991989019326866,-27.173411219380796,-26.49114563083276,-26.338767948094755,-26.06350895902142,-25.69915250595659,-24.897706172429025,-25.247503050602973,-24.78159883292392,-24.137825170066208,-24.299169457051903,-25.00898252427578,-25.879070977214724,-25.338346536736935,-26.03692299174145,-25.244346485007554,-26.20528356079012,-26.97217340534553,-27.737841594964266,-26.789952106773853,-27.467405810020864,-27.989242208190262,-27.624961013905704,-27.77162684639916,-27.718634720426053,-27.773274749983102,-27.5211538891308,-26.76444869209081,-27.58833291241899,-28.393561395816505,-27.762471064925194,-28.039357459638268,-28.052089592907578,-27.65610091853887,-28.044533933047205,-27.752142595127225,-27.009624834172428,-26.574326711241156,-25.912959066219628,-26.618882060982287,-27.221224701963365,-28.032556146848947,-27.941816046833992,-27.867832113988698,-27.537361681461334,-28.076271574012935,-27.123975951690227,-26.73988592531532,-26.918227082118392,-27.55130052147433,-27.864249661564827,-28.499609011691064,-27.572136326693,-26.99099395563826,-26.82908074790612,-27.71538600511849,-27.365776555147022,-26.912900486495346,-27.31547495862469,-28.11869459459558,-27.30652020033449,-28.047198190819472,-28.263068386819214,-27.906834620051086,-27.56724334694445,-26.590083917602897,-25.897807109635323,-26.582602699287236,-26.17448983900249,-26.947198211681098,-27.528558779507875,-27.661891384981573,-27.89346925308928,-26.940779352094978,-27.846533173229545,-28.27506940998137,-28.56113243382424,-28.69761771708727,-27.92270671389997,-27.273826191201806,-26.912218769080937,-27.609783384483308,-27.674074898008257,-28.622162650804967,-29.21265291934833,-29.91929789306596,-29.209970450028777,-29.048040041234344,-29.2581538958475,-29.68996720900759,-30.093498257454485,-29.427985286340117,-29.930743917822838,-30.13134638266638,-30.122221637051553,-29.47889478644356,-30.36312864627689,-29.415858016349375,-29.42305596685037,-30.073062470182776,-29.253046583384275,-30.12117879325524,-30.80451532592997,-30.358989923726767,-30.23040405008942,-29.848245130386204,-30.370414597913623,-30.127890339121222,-30.193954630754888,-29.382777637336403,-29.94874115474522,-29.2874019513838,-29.298704273533076,-29.882065487094223,-30.2147374371998,-29.462348954752088,-29.591408827342093,-30.21426335768774,-29.974990624003112,-30.66212051641196,-30.744538792409003,-30.885959272272885,-30.730546402279288,-30.875012719538063,-31.820069519337267,-30.981852155178785,-30.504580250009894,-30.2646645414643,-29.850759175606072,-30.37544488813728,-30.096757155377418,-29.264976705424488,-29.435803823638707,-29.390087482053787,-30.140720285940915,-29.85767412930727,-30.3814953584224,-29.76080087199807,-29.723025590647012,-29.885413587559015,-29.5560186188668,-29.62795153586194,-29.894322897773236,-30.181531086564064,-30.049851435702294,-30.375818820670247,-30.266402151435614,-31.044060735963285,-31.237666386645287,-30.245552223641425,-29.93787653837353,-30.33830957254395,-30.78316961741075,-30.381912421435118,-31.17230112897232,-30.320165488868952,-29.948201255872846,-29.78798825107515,-29.77145771915093,-29.053450216073543,-28.960739066358656,-29.69606480933726,-28.72332171117887,-27.870968288742006,-27.46897696238011,-26.956900192890316,-26.823898470029235,-27.056915904860944,-26.50980917084962,-26.294165262952447,-25.887308892328292,-25.824048219248652,-25.642814677208662,-24.759002171456814,-24.271001746878028,-23.339734905399382,-24.322322082705796,-24.5965077560395,-25.322456759400666,-24.808855430223048,-25.61241979477927,-25.36597253056243,-26.193731968291104,-25.451543695759028,-25.12457027286291,-24.739102302119136,-25.6810387596488,-26.367273312527686,-26.35512729594484,-26.01843038573861,-25.449929378926754,-25.747002861462533,-25.032688261941075,-25.868464927654713,-26.637918011285365,-26.76448620809242,-27.344479547347873,-27.54484437359497,-27.95747827971354,-28.099546084180474,-28.479039223864675,-29.009915032424033,-29.691319924779236,-29.23027619998902,-29.74104834906757,-30.476816730573773,-31.366814367473125,-31.11083873268217,-32.0968143036589,-32.53319148859009,-31.751791721675545,-31.418954812455922,-30.924724832642823,-31.369205018971115,-30.572326415218413,-31.55042028008029,-31.13633870240301,-30.966736637055874,-31.185070772189647,-32.045812802854925,-32.413486416917294,-33.26224758801982,-32.43005071673542,-31.93759563891217,-32.80233402736485,-31.835016205441207,-31.886820654384792,-31.657498728483915,-30.899136279709637,-31.142369442619383,-30.470581080764532,-31.457262236624956,-32.188439388759434,-32.73849973268807,-33.54286817042157,-33.85642899386585,-33.64277223357931,-33.01418620860204,-32.60712587274611,-32.2797692976892,-31.453034926671535,-31.47046547010541,-32.44972022343427,-31.880462170112878,-31.16445989906788,-31.81785267125815,-31.537259289529175,-30.663429852575064,-31.525319383013994,-32.0317506371066,-31.03881704993546,-30.750245484989136,-31.035136247053742,-31.547771636862308,-30.613888712134212,-31.285144838038832,-30.675588184036314,-31.53238788386807,-31.32928479788825,-31.957484577782452,-31.170387581922114,-30.812969914637506,-29.970244529191405,-29.932319428306073,-30.894869518000633,-30.37270096410066,-30.07206153590232,-29.088216080330312,-29.82025778759271,-29.57695535942912,-30.576733798719943,-31.26936778705567,-30.484016142319888,-31.020755261182785,-30.57130087725818,-30.13123385189101,-31.096335045062006,-30.852114548441023,-30.072270774282515,-30.61230554059148,-30.330000531394035,-29.700800844933838,-29.07840982498601,-30.041490791365504,-29.846718536689878,-29.297566707711667,-28.780224923044443,-29.28814549650997,-30.084059309214354,-30.349831429310143,-29.80808074120432,-30.1308829667978,-30.80730915023014,-30.562437413726002,-30.897984178736806,-30.565375566482544,-29.650461016688496,-29.950444386340678,-29.55675050476566,-28.805081538390368,-28.28187861246988,-28.160318734589964,-27.94159095128998,-28.35543701192364,-27.498060923069715,-26.802634304389358,-27.246863843407482,-27.040123583748937,-26.54034185456112,-26.313792230095714,-26.646322019863874,-25.93202844215557,-25.85235854331404,-25.73796736029908,-26.7326800506562,-26.758332257159054,-25.789140637032688,-25.296241782139987,-25.074124875944108,-24.860521144699305,-24.615722458809614,-23.9155971002765,-24.345771113876253,-24.79394332971424,-25.725225233938545,-25.9578153276816,-26.325993112288415,-26.009029804263264,-25.550337857101113,-24.833502992987633,-25.524807437788695,-25.733936870936304,-24.836222116835415,-25.05749139888212,-24.7393256444484,-23.77927295304835,-24.180649373214692,-23.43044144846499,-23.045336768962443,-23.176037900149822,-24.163479031529278,-24.00931153073907,-24.78601191006601,-24.852482283022255,-25.228038460947573,-24.522585857193917,-24.018019725568593,-24.63269925257191,-23.78622989123687,-24.31356850080192,-24.516529196873307,-23.950929400045425,-23.03514631651342,-22.599623246584088,-21.63668985525146,-22.63208996457979,-23.00300229853019,-23.41933757951483,-24.123131106607616,-23.931326520629227,-23.97427166439593,-23.84669778170064,-22.886861335020512,-22.560354202985764,-23.180246081203222,-23.10350330453366,-22.519647168926895,-22.886097379028797,-22.564534690696746,-22.06115516088903,-21.14739667624235,-20.9754534419626,-20.625324889551848,-20.225336651783437,-20.470193767920136,-20.707839973270893,-19.93858063360676,-18.956188471522182,-18.7052856287919,-18.020246621686965,-18.54929638421163,-19.368862008675933,-19.196183260530233,-18.267125486396253,-17.960616457741708,-17.202034772373736,-17.733726775739342,-17.4784076330252,-17.53043862991035,-18.123117716051638,-18.113217282108963,-17.474446155130863,-18.037449279800057,-18.354583241511136,-17.361072219442576,-16.826166946440935,-16.259463061578572,-16.84545011119917,-16.46304137678817,-17.43472687341273,-17.499577408190817,-18.388175940141082,-17.522427353076637,-18.32019407534972,-18.945255567785352,-19.470266866497695,-19.223035878967494,-18.312826325185597,-18.885613588616252,-18.092562130652368,-18.819185831118375,-17.991304993163794,-17.20886843604967,-16.753091850783676,-17.14388083619997,-17.045401853509247,-16.940013508778065,-16.67694045510143,-16.514208854641765,-16.552155551034957,-16.046502519398928,-16.78940545860678,-17.639328830409795,-18.625313935801387,-18.900496145244688,-18.083792752586305,-18.527090420015156,-17.72419646847993,-17.99711185088381,-18.438048623967916,-18.636393955908716,-19.44641434820369,-20.350447358563542,-19.458679041359574,-19.500734133645892,-18.879282248206437,-18.380530022550374,-19.155180630274117,-20.10708683077246,-19.12964005023241,-19.44440108910203,-20.296770268585533,-19.597011062782258,-19.945266175083816,-20.266669179778546,-20.358690686058253,-21.217355511151254,-21.46514959866181,-21.645926418714225,-21.11502920696512,-21.698941031936556,-22.239097179844975,-22.75869238888845,-22.177351389545947,-22.86396882822737,-22.46280355285853,-23.12630426278338,-22.699841999448836,-22.60638082958758,-22.982758415397257,-22.010661179199815,-21.478329439181834,-22.38499883748591,-22.80471732839942,-22.801472089253366,-22.86031919764355,-23.586464301217347,-24.130660272669047,-23.333727612625808,-22.408722530584782,-22.77987603051588,-23.101731384173036,-23.78255897341296,-23.43840788025409,-22.515480598434806,-22.302727923262864,-21.70875758631155,-21.041246242355555,-20.331642609089613,-20.839613266754895,-20.49309665663168,-19.87939545791596,-20.41421685507521,-20.288323253393173,-21.021059736143798,-20.347468674648553,-19.913623122964054,-20.24332998972386,-19.813786201179028,-18.98800091119483,-19.58242748072371,-18.60698332451284,-18.1278371848166,-18.389667709358037,-18.68827095767483,-18.94386112364009,-18.20767023973167,-19.101591335143894,-19.793732927180827,-19.043108517304063,-19.65156176360324,-19.59508705837652,-19.017631923314184,-18.246078381780535,-17.70619284361601,-17.782246509101242,-17.70148155791685,-17.085621944162995,-17.905166054610163,-17.62322386354208,-16.773617056198418,-16.698829283937812,-16.340133110061288,-16.521981989964843,-15.65247340220958,-14.932737255934626,-14.817321637645364,-14.241600269451737,-14.163947022985667,-14.470848091877997,-14.112827106378973,-14.245018824469298,-14.194812286179513,-15.167862745467573,-15.565496935974807,-15.342769789975137,-14.65530967200175,-14.339754540938884,-14.464240704663098,-13.993575498927385,-13.411340674385428,-13.294096845202148,-13.3682568250224,-14.353484937921166,-14.491239929571748,-13.608747073449194,-14.453370436560363,-15.180085627827793,-15.502932030707598,-16.395939477253705,-16.964768649544567,-17.580489717889577,-18.021479240618646,-18.386670130770653,-17.834552169777453,-18.468052211683244,-18.903470748569816,-18.15681057656184,-18.77986389864236,-18.68340755905956,-18.104947180021554,-17.34320268733427,-17.976925941649824,-17.3007273231633,-17.631119372323155,-17.432867396157235,-17.564022607170045,-18.07539887074381,-18.005756524857134,-18.585030267946422,-18.637508768588305,-18.792743756901473,-18.013405716512352,-17.909082275349647,-17.62390722427517,-17.63152590021491,-17.64973308844492,-16.933584514074028,-17.436726766638458,-17.11204341892153,-17.472171065863222,-17.366948294453323,-17.725408345926553,-18.10972082754597,-18.172647508326918,-17.917903093155473,-18.50616056099534,-19.321904240641743,-19.872297172434628,-19.60960803879425,-18.922861305065453,-18.12256447179243,-18.184029527008533,-17.659616872202605,-17.457489690277725,-16.967904668767005,-17.301153767853975,-16.391903369221836,-15.923500640783459,-15.319166713394225,-16.306847410276532,-17.02814009040594,-16.212358080781996,-15.867318835575134,-16.80561502603814,-16.426266612950712,-15.612620730884373,-15.730566444806755,-16.654382087290287,-16.34305640961975,-15.749189112335443,-15.356787893455476,-14.68994381511584,-14.782454267144203,-13.982352279592305,-13.562213385012,-14.132972082588822,-14.604216329287738,-14.989716093987226,-15.201782905496657,-14.55770377535373,-13.938188577536494,-12.995359838940203,-12.414387364406139,-13.136975891888142,-13.039370810147375,-13.620772341266274,-14.52991030132398,-15.317300379276276,-15.403298856690526,-15.961501747369766,-16.307630493305624,-17.106784944422543,-16.509532852564007,-16.789034692570567,-17.0668657226488,-17.327512186486274,-18.155447429046035,-18.340670491103083,-19.33033855073154,-18.66102952323854,-17.95201847841963,-17.145099385175854,-17.60240903450176,-18.039291478227824,-18.883198539726436,-18.491106140892953,-17.617824123241007,-18.510424458421767,-18.873839158564806,-19.148422649595886,-19.52601056266576,-18.572676806245,-19.56936926068738,-18.924101393669844,-18.919868383556604,-18.73338325228542,-18.986220982391387,-18.69368583476171,-17.79553943220526,-18.26654021209106,-18.852443927899003,-18.80454015964642,-17.894147723913193,-18.517898944206536,-17.664660233538598,-18.356298534199595,-17.63812301447615,-18.331672579981387,-18.59380521858111,-18.806456075049937,-19.352832314558327,-19.180310931056738,-18.73755452595651,-19.640787113457918,-18.891289063263685,-18.10596101731062,-19.07937330706045,-19.09743262687698,-18.91845810925588,-19.273662315681577,-19.13103071320802,-19.60553640453145,-18.682817640714347,-18.654966813977808,-19.533524170983583,-18.615202504210174,-18.23620127560571,-17.881837447639555,-17.86734423553571,-18.491281267255545,-17.833306363783777,-17.35616903239861,-17.63624116918072,-17.321059859357774,-17.310180633794516,-18.100159887224436,-17.302716949488968,-17.372251433320343,-17.919521079864353,-17.03153697727248,-16.32782954769209,-16.481840435415506,-16.902477951720357,-16.733699900563806,-15.75445761391893,-15.994903238490224,-16.92692855698988,-16.006847116164863,-15.342041420284659,-16.049715059343725,-16.309262424707413,-15.621185096446425,-15.544309956021607,-15.696137728635222,-15.024234450422227,-14.43708477821201,-13.727552829310298,-12.810535519383848,-12.560301995836198,-12.912863015662879,-12.703254676889628,-13.080313503276557,-12.454496264457703,-12.295530145987868,-12.939650126267225,-13.778383415192366,-13.064035973511636,-12.279284758493304,-12.35823855549097,-11.81425514863804,-11.928295894525945,-10.995589103549719,-10.036608826369047,-10.423441668506712,-11.145299326628447,-10.413728503510356,-10.164301447104663,-9.942751622758806,-10.128846617881209,-10.987205737270415,-11.127892800606787,-10.813144128769636,-10.058605175931007,-9.644105601590127,-8.996725200209767,-8.576722833327949,-7.850432957522571,-8.411347082816064,-8.063637089449912,-7.652638824656606,-8.175380070693791,-8.367386956233531,-7.672251477371901,-7.067742148414254,-6.080137161538005,-5.159277957864106,-4.7346300524659455,-5.3654198022559285,-5.155676642432809,-4.7277020695619285,-5.526723477989435,-6.245213855057955,-5.759884886909276,-5.2359805861487985,-5.488197329919785,-5.990985570009798,-6.435944445896894,-6.854889006819576,-7.010913969017565,-6.90760453324765,-6.665104885585606,-7.380509534850717,-8.155506806913763,-7.862554046791047,-8.72897539427504,-8.287519263569266,-7.840338028501719,-8.409742129966617,-8.1423998773098,-8.874584697186947,-8.970792103093117,-9.322959559038281,-9.942092715762556,-9.532950043678284,-10.252576846629381,-9.381655784323812,-9.879664210602641,-9.796936258673668,-9.24524631164968,-10.062538388650864,-9.706937541719526,-10.572698833420873,-10.855625455267727,-9.943351757247001,-10.281306043732911,-10.449418107979,-9.818944229278713,-10.31889815395698,-10.884442755486816,-11.842925576493144,-12.470719058532268,-12.902060498483479,-13.63652538927272,-13.852873042691499,-14.521180036477745,-15.220728215295821,-15.745062881615013,-15.409523351117969,-15.531646388582885,-15.859052331186831,-15.313124109059572,-14.59892947319895,-14.605273284949362,-14.648626421578228,-15.384389712009579,-15.117389669176191,-15.604121186770499,-16.50193744339049,-15.8876375509426,-16.235663457773626,-17.093968951143324,-17.1725292657502,-16.48183174757287,-16.8397518992424,-15.941714560147375,-15.438617207109928,-15.259387319441885,-16.016679151915014,-16.96276595024392,-16.132051006425172,-15.366667217575014,-15.902495231013745,-16.42481133295223,-16.406610091216862,-15.719141077250242,-16.408063469920307,-17.098563799168915,-17.007944607641548,-16.74334944365546,-16.773355406709015,-16.19166529038921,-16.291384262032807,-16.978327507153153,-17.580598540138453,-17.263815452344716,-17.456309695728123,-17.79236519197002,-18.695197180844843,-18.969145896378905,-18.771357838530093,-18.812479849904776,-18.494915747083724,-18.799047986976802,-19.303025319240987,-19.146865604911,-19.510508141014725,-20.435326205566525,-20.11027321172878,-20.107200257014483,-19.8541978741996,-19.889629397075623,-19.678664343897253,-20.265079631004483,-19.64842840190977,-20.312918334268034,-19.697038978803903,-20.68794768443331,-20.361416537780315,-20.215081807225943,-21.065146937966347,-20.275786265730858,-20.887269678525627,-21.23852973803878,-20.53719702223316,-20.109931563492864,-20.57864346401766,-20.900392663665116,-21.451374515425414,-21.659672257490456,-21.668295739218593,-21.087128488812596,-21.179997977800667,-22.11231035273522,-22.51209936896339,-22.07512799091637,-22.96105823852122,-23.835097588598728,-23.636514865327626,-23.495614498853683,-24.3614642447792,-24.955174629110843,-25.92240350972861,-26.081825647503138,-26.10101062990725,-25.86958960816264,-25.28458676999435,-25.50797603232786,-25.694610910490155,-26.48935146210715,-26.787173134740442,-26.115188844501972,-26.66649925056845,-26.014401727356017,-25.442233595997095,-25.68309924006462,-26.64441196527332,-25.68664973275736,-25.868327608332038,-26.102269270457327,-25.143413699697703,-25.283355323132128,-24.62111900234595,-24.092304723337293,-24.928221392910928,-24.750726090744138,-25.04229686735198,-24.40745927579701,-25.170827657915652,-25.640388559084386,-24.833701012656093,-25.632609180174768,-25.951031162869185,-26.05375433433801,-26.678979974240065,-27.08357364172116,-26.18799160514027,-25.74923595227301,-25.18816378293559,-24.742210631258786,-24.16819842439145,-24.935327391605824,-23.986466728150845,-23.776605524588376,-24.48292359802872,-24.24794816505164,-24.982025378383696,-25.348787777591497,-24.56485703215003,-24.449597388971597,-23.653756917919964,-22.84782940428704,-23.38739376468584,-24.226901329588145,-24.759103511460125,-24.77145126182586,-24.12114020064473,-23.902079845778644,-23.184313625097275,-22.373078372329473,-22.070430926978588,-22.496121714822948,-22.067546549253166,-21.91980689112097,-22.818653624970466,-23.62508881976828,-24.534981045871973,-25.209538500290364,-25.010603092145175,-24.410458135418594,-24.71170465135947,-24.253204283770174,-24.0577648752369,-24.420357421971858,-25.13624532520771,-25.840252571273595,-24.955994606483728,-25.11268376465887,-24.88365368032828,-24.538364531937987,-23.617380968295038,-23.50986592238769,-23.556683748029172,-23.030781178735197,-23.918883014004678,-23.974457427393645,-24.327178303617984,-23.883091391064227,-24.151392981875688,-23.204626055900007,-23.234335027635098,-22.827589293941855,-22.687218795530498,-22.811147638596594,-22.895022789482027,-22.798822490964085,-22.699506491888314,-23.131491091568023,-22.47065259097144,-22.714388052001595,-23.692997590173036,-23.85971332807094,-23.579865087289363,-24.067169554531574,-23.59010568400845,-23.664352319203317,-23.121868764050305,-23.064061485230923,-23.78249042900279,-24.01610691798851,-23.794031380675733,-22.97545491019264,-22.164317314513028,-22.991453755181283,-23.6833737003617,-24.345033220015466,-24.617112703155726,-23.723446822725236,-23.08048368897289,-23.640528107993305,-22.847268742043525,-23.55460123764351,-23.84273380646482,-24.10512645356357,-24.148849276825786,-24.276392507366836,-24.41402032971382,-23.80314165353775,-23.83216126728803,-23.11043680878356,-23.332113933283836,-23.372805999126285,-22.542049997951835,-23.488596379756927,-22.924794644583017,-22.130151238292456,-22.674428255762905,-22.590667644981295,-23.320117802824825,-24.31207590457052,-24.725673301611096,-24.597285530529916,-25.517662706784904,-24.559649518225342,-24.716712141875178,-24.769629386719316,-24.530424679629505,-25.398007048293948,-24.59161468409002,-24.552682720590383,-23.873574670404196,-24.115157943684608,-23.69456515274942,-23.760616352315992,-23.636378191877156,-23.98726432863623,-23.895810263697058,-24.080711646471173,-24.83012348320335,-24.81564538506791,-25.226620801258832,-24.28404934052378,-24.7574557736516,-24.780464564450085,-25.760026438627392,-26.32403723243624,-26.824239353183657,-26.680870519019663,-25.963703993242234,-25.42466441495344,-25.960196352098137,-25.56913010124117,-25.597596714738756,-25.881948350463063,-26.157905235886574,-26.257010219153017,-26.694400809239596,-27.597323786001652,-26.697542832698673,-25.959413276985288,-25.729076324030757,-25.264573514461517,-24.979079914744943,-25.5536665241234,-25.24948131525889,-25.871810641139746,-25.77509551262483,-25.415194678585976,-24.613508137874305,-23.650826519355178,-23.210163324140012,-24.03866651421413,-23.150531712919474,-23.005433628801256,-23.5933294496499,-22.681451028212905,-23.414197660051286,-23.205585420597345,-23.17742229392752,-23.70481294207275,-23.7219803663902,-22.877188147045672,-23.004830476362258,-23.96279498608783,-24.22345713386312,-23.727341376245022,-23.547420555725694,-22.69432937167585,-21.865584674756974,-22.5354205747135,-22.58203357178718,-22.4675019280985,-21.875706980004907,-22.493940204847604,-21.68737523071468,-22.46807225001976,-21.930414099246264,-21.632123313844204,-20.667335336096585,-20.12165101384744,-20.34199206577614,-20.578421880491078,-20.064576206728816,-19.281016955152154,-18.304305751342326,-18.92256549699232,-19.585432418156415,-19.999909644946456,-20.03713426273316,-20.045885314699262,-20.750477435532957,-21.32964714197442,-21.425646393094212,-21.54738905094564,-21.859745080117136,-21.257226534187794,-22.052344041410834,-22.636938317213207,-21.70382567634806,-22.141252735629678,-22.925742036197335,-23.37681143125519,-22.51949955476448,-22.409583791624755,-21.991886467207223,-21.464179712347686,-20.65152750350535,-20.332080150954425,-20.489000630099326,-21.060168574098498,-21.486849850043654,-22.218280845321715,-21.314171453937888,-20.765384249854833,-20.922422411385924,-20.769690667279065,-20.146327221766114,-21.082036864943802,-21.068803316447884,-20.24657009448856,-19.53049243381247,-18.95946726994589,-18.256374846212566,-18.80408203601837,-18.716789675876498,-18.147257544565946,-18.29134645871818,-18.073947499971837,-18.425664809066802,-19.397290433291346,-19.31547369901091,-19.95750821288675,-19.538403154350817,-19.717629697173834,-19.688718846533448,-18.729781836736947,-18.09664678387344,-18.25837685354054,-18.92677332321182,-19.43234370322898,-18.672004665713757,-18.641750454436988,-18.879689403343946,-18.79390760185197,-19.51913427375257,-19.009056446142495,-18.857962240930647,-18.71756050316617,-18.713109142147005,-19.610349951777607,-20.039209583308548,-19.559798903763294,-18.93444440793246,-19.075066943652928,-19.63611471792683,-20.272801582701504,-20.395361085888,-20.887304396834224,-21.53953730268404,-21.72137023555115,-21.02525364467874,-20.048146336805075,-20.818738918285817,-20.705260755494237,-19.943977871444076,-19.32476076250896,-18.707475719973445,-18.802385859191418,-18.08725604088977,-17.491141899023205,-18.464989856351167,-19.299018173012882,-19.960784591268748,-19.458891183603555,-19.946997819002718,-18.98847212549299,-18.894725498277694,-18.730826483108103,-17.742424064315856,-17.404762507416308,-17.700463358312845,-18.178902653511614,-17.22048363601789,-17.357124880421907,-17.11469732457772,-17.071323219221085,-16.50074521638453,-16.69511470431462,-17.523030448239297,-18.025451651308686,-18.44326050300151,-18.156288903206587,-18.83459706744179,-18.327703865244985,-17.595073483418673,-17.033233972731978,-17.9580290177837,-18.39485508389771,-17.848427256569266,-18.138468683231622,-18.129061052110046,-17.292468443512917,-16.401858893223107,-16.050138213206083,-16.304748294409364,-17.068620269186795,-17.737613521516323,-16.885294555686414,-16.90959946718067,-16.51465809997171,-16.97087311092764,-16.393642412964255,-17.299361477140337,-16.90467734495178,-16.39856046717614,-16.27336753671989,-15.926117759663612,-16.89768033567816,-16.35888534039259,-16.032635688316077,-16.580830412451178,-17.46054709935561,-18.067695167381316,-17.517132899258286,-17.992116207256913,-18.909095329698175,-18.93221573671326,-18.681617057416588,-17.916790598537773,-18.800402614288032,-19.03999885218218,-19.984511964954436,-19.200995503924787,-19.49546028673649,-20.45701964572072,-20.813959859777242,-20.362743377685547,-20.875540405977517,-21.31151094008237,-22.141498618759215,-22.141773217823356,-21.679370899219066,-21.70720923738554,-21.953366043046117,-21.436088892631233,-22.026598708704114,-21.345520440489054,-21.261190882418305,-22.070620955899358,-22.304730241652578,-21.460765710566193,-20.84718657936901,-21.784232007339597,-22.39982256665826,-22.722347689326853,-22.57196576707065,-22.18184968177229,-21.960962464567274,-21.3867690525949,-20.903405553661287,-20.969143758062273,-20.188727061264217,-19.860833329614252,-19.418583024293184,-20.077770992647856,-20.68630385491997,-21.54488379927352,-20.780979527160525,-20.989484572783113,-21.556677975226194,-22.415547428652644,-21.920818945392966,-22.853151261340827,-22.826564924325794,-22.794324768241495,-23.214510133955628,-22.313837757799774,-22.576045979745686,-21.8264396651648,-21.45965832239017,-20.5266377273947,-21.11935002543032,-20.303177786991,-21.17863872786984,-22.073068915866315,-21.113411330617964,-20.432639713864774,-20.223406311590225,-21.02783662127331,-20.53763664048165,-20.57712420122698,-20.977815005462617,-20.94298561895266,-21.609240830410272,-21.07297423062846,-20.730721711181104,-20.16683585057035,-20.426079982426018,-19.47715591127053,-19.964911149349064,-19.51322295796126,-18.820445778314024,-18.308342643547803,-18.326335079967976,-18.99249449186027,-18.598113990854472,-19.190329684875906,-18.235240156762302,-18.393321218900383,-19.144351337105036,-19.120886656921357,-19.328742279671133,-19.129333052318543,-18.617958350107074,-18.151910653803498,-17.524839479941875,-17.725144596304744,-17.279704686719924,-17.25698317401111,-16.3533203760162,-16.52968267397955,-16.21052814880386,-15.597138032317162,-15.847736888099462,-14.933686478994787,-14.7571872305125,-14.724555653519928,-14.013667535036802,-13.785936991218477,-13.01861464092508,-12.147076705936342,-11.41205655829981,-11.072442735079676,-10.411283612716943,-10.60309581970796,-10.805500236805528,-9.881959309335798,-10.795806429814547,-11.31270823534578,-11.508291355799884,-11.54593987762928,-12.336647517513484,-12.458369272295386,-13.055167447309941,-12.755407757591456,-12.180075507611036,-11.460087461862713,-12.322305991780013,-11.805889572016895,-12.69323881343007,-12.816754371393472,-12.179733847733587,-11.402264294214547,-12.225754203740507,-12.64992812788114,-12.583082570228726,-12.224176111165434,-12.424147805199027,-12.342436618637294,-12.027863761875778,-11.145211745984852,-11.089204791001976,-10.254750916734338,-9.388678128831089,-8.51673044404015,-9.145628449041396,-9.755052499473095,-9.538976218085736,-10.115376369562,-9.671372092794627,-9.601702792104334,-9.280696034897119,-8.566409934312105,-8.240588071756065,-9.139423679560423,-9.348325916100293,-9.959219520445913,-10.01170444721356,-9.655956355854869,-10.311807428952307,-9.513342360500246,-9.460834218654782,-8.851024076808244,-9.131056288257241,-9.102675140369684,-9.255782678723335,-8.801969258114696,-9.40567543450743,-10.172771447803825,-10.322718741372228,-10.769613314885646,-10.150117735378444,-10.684241373557597,-10.791728519834578,-10.54516690550372,-10.11655516223982,-10.804433563258499,-11.009666861966252,-10.660375765990466,-11.451189255807549,-10.627850082237273,-10.761466570198536,-10.710944668855518,-9.731792686041445,-9.863440125249326,-10.81782259978354,-11.299391834065318,-11.425832383800298,-11.609315490815789,-12.44653655262664,-12.469568151514977,-12.14898251509294,-12.922738004475832,-13.673252287320793,-14.627277677878737,-14.291052866261452,-14.401364222634584,-14.80025467230007,-14.571260547731072,-13.632183561101556,-13.065729949623346,-13.487664394080639,-14.16230120928958,-14.825098284520209,-14.163929355330765,-13.287327306810766,-13.056020031683147,-13.860486088786274,-13.037779356352985,-12.186048275791109,-12.130143768619746,-13.086523041594774,-12.794898725114763,-12.219592266250402,-12.348512805532664,-12.930125007405877,-12.739912365097553,-13.283661627676338,-12.495716926176101,-12.839454650878906,-12.981311643961817,-13.457046371418983,-14.302877904381603,-14.887944252230227,-14.531140740495175,-13.882430379278958,-14.036155578214675,-14.787811395246536,-15.740131116006523,-16.05217189108953,-15.91122893569991,-16.20704413438216,-16.91158538032323,-17.87190680252388,-18.592487070709467,-19.11462253658101,-19.990940149873495,-19.66399942850694,-18.744512697216123,-18.215873955748975,-18.14301785873249,-17.982752052135766,-17.882656834088266,-18.590158955194056,-18.91386415157467,-19.02628368511796,-18.783555808942765,-17.899030257947743,-17.42572276480496,-17.713087593205273,-17.80660359095782,-16.96173060219735,-16.97092937026173,-17.91873110504821,-18.07367827836424,-18.517217692919075,-18.176359142642468,-17.83303416473791,-17.911338375415653,-17.38483153935522,-17.250599352177233,-17.694530060049146,-17.376227369066328,-18.238344977609813,-18.285206694621593,-17.319041420705616,-17.6316722468473,-17.274596869014204,-18.243011300917715,-17.5817626202479,-17.717117577325553,-17.61113458778709,-18.0859406394884,-17.12526522949338,-16.341891393065453,-15.688998619560152,-16.222902251873165,-16.393925202079117,-16.689327848609537,-17.489063575863838,-16.564668445382267,-15.700489937327802,-16.185384657233953,-16.446226304396987,-15.90585538232699,-15.747978149913251,-16.68638024153188,-16.345370992086828,-15.893389699049294,-15.430623135529459,-16.0782400383614,-15.718781435396522,-16.32062963815406,-15.515190500300378,-15.687468742020428,-16.14650800032541,-15.947166718542576,-15.961585434153676,-15.35910333506763,-15.523723898921162,-16.175910484977067,-15.582716879900545,-16.531925870105624,-15.89341043960303,-16.38239473523572,-16.02282568672672,-15.311105016618967,-15.660538148600608,-15.388544922228903,-15.843310142401606,-16.106343040708452,-17.041205135174096,-16.315530830528587,-15.62989362468943,-16.13042940851301,-16.828449660446495,-17.793826518114656,-17.86972816893831,-17.156168542336673,-17.951504026073962,-18.856459972448647,-17.9499422875233,-17.508533307816833,-16.546284752432257,-16.691725743934512,-15.923623765818775,-16.143539699260145,-15.730189305730164,-15.020262984093279,-14.583103171084076,-14.53779254714027,-14.752677821554244,-15.656149317044765,-15.43433732399717,-15.763179266359657,-15.23555836174637,-15.000187093392015,-15.484255839604884,-16.45444279536605,-15.727992712985724,-16.084799214731902,-15.7849877118133,-16.291614096146077,-15.3262371388264,-16.235839802306145,-15.767222881317139,-14.863835166674107,-14.45066710934043,-15.057366613298655,-14.437011549714953,-14.11817589821294,-15.081873143091798,-14.657052240800112,-14.606782075949013,-13.629662656225264,-12.633084044326097,-13.521297294646502,-14.27644166816026,-15.247841572389007,-14.939087792299688,-14.221347549930215,-15.072039370425045,-15.753257431089878,-15.177394722122699,-15.288427280727774,-16.103116488084197,-16.37754121143371,-15.791929431259632,-15.441886323038489,-15.988937641028315,-16.469739774242043,-16.516265113838017,-15.578308697324246,-15.209775587078184,-14.229754293803126,-13.5544875850901,-13.289595836773515,-12.599559131544083,-13.108987679239362,-12.629825180396438,-12.15528929932043,-11.993085592985153,-11.40239853458479,-10.73141599399969,-11.337913800496608,-10.439436963293701,-11.204580306541175,-11.546387824229896,-12.392556653823704,-13.226101809181273,-13.989186700899154,-13.114748262334615,-12.425244131591171,-12.107064105570316,-11.21683246223256,-10.904745187144727,-9.995381175074726,-10.317748960573226,-10.912873886991292,-11.239590821787715,-11.736349952872843,-12.66253246134147,-12.04898239672184,-11.36447055451572,-10.734816729091108,-11.406870435923338,-11.726316050160676,-11.064451418351382,-10.290209294762462,-11.182716641575098,-11.319011671934277,-12.245548905339092,-12.975365791004151,-13.103780104313046,-13.08762009255588,-12.194477431476116,-11.433673228602856,-12.12834262335673,-11.93317743204534,-12.693609891459346,-12.880570320878178,-12.733993118163198,-13.289562825579196,-12.922136971261352,-12.906272099819034,-12.970538615714759,-13.252804396208376,-12.303056138567626,-12.401271874085069,-12.094159707427025,-12.222205067053437,-12.850705933291465,-12.46686247875914,-11.791293327696621,-11.163776512723416,-11.618502247612923,-10.74780251365155,-10.977730373851955,-10.161890328396112,-10.239338914398104,-9.71326524252072,-8.754043782129884,-9.660731228534132,-10.32341182185337,-10.72602864028886,-10.107001093681902,-11.03328320197761,-10.492888929788023,-11.139304285403341,-12.01671677455306,-12.412751098629087,-12.971001306548715,-12.43416003510356,-13.370602306444198,-13.806262890342623,-13.316356092691422,-13.665974031668156,-13.730555184185505,-13.630586327053607,-14.531469230540097,-14.349764278624207,-13.833464748691767,-14.503964128438383,-14.343206947203726,-14.701200226787478,-13.968492734245956,-14.602383119054139,-13.767273056320846,-13.043406928889453,-13.588274080771953,-13.362824285868555,-12.463363067246974,-12.57253484847024,-12.50631682947278,-13.360912816599011,-12.594397597480565,-12.888631663285196,-13.854648453183472,-13.167293171398342,-12.835077937692404,-13.715396551415324,-12.978042957838625,-12.967731388285756,-13.798576022963971,-13.168287590146065,-12.670533961150795,-13.193828269839287,-12.468733928631991,-13.070918765384704,-12.328891881275922,-12.965041866060346,-12.308630251325667,-12.567257366608828,-11.976537598762661,-12.191447905730456,-12.003350200597197,-11.32806588569656,-11.483321242965758,-11.495878003537655,-12.082343668676913,-11.784502416383475,-11.060712449718267,-10.760240230709314,-10.253278975374997,-11.17141052056104,-11.757111232262105,-12.733683910686523,-12.653742626775056,-13.054590482264757,-12.826976113021374,-13.00030511058867,-12.48943394375965,-11.738236955367029,-12.678488227073103,-11.861795016564429,-11.803280513267964,-12.083916885312647,-11.594063488766551,-10.777110446244478,-10.323846737854183,-10.034674390684813,-10.353808790910989,-11.243256817571819,-11.276427832897753,-11.001093571074307,-11.979831234551966,-11.793599479831755,-12.588803966064006,-11.795558502431959,-11.276459439657629,-10.701954133808613,-9.790781235788018,-10.739712149836123,-11.637125134002417,-12.329028559383005,-12.425372059457004,-11.725658082403243,-11.497390368953347,-11.17050110641867,-11.851656990125775,-12.185279437340796,-12.467350310180336,-13.078096390236169,-13.801916905213147,-14.553024602122605,-15.430342857260257,-14.989196126814932,-15.206410398706794,-15.457518620416522,-14.695143749937415,-15.326056167948991,-15.754538625013083,-15.964431487489492,-16.424210108350962,-16.76092153042555,-17.391890136990696,-17.998807612340897,-17.36396497162059,-17.467458384111524,-18.102691516745836,-18.127408373635262,-18.171253186650574,-18.054550498723984,-17.58453344926238,-17.211035278625786,-16.67020472418517,-16.101826603990048,-16.53357186028734,-17.216011859476566,-17.899355485104024,-18.5081847156398,-19.365286795888096,-18.920589395798743,-19.32008022814989,-19.65088496124372,-18.906209853477776,-19.1205118088983,-19.066907682456076,-19.77906622365117,-20.55531612271443,-19.695575776975602,-19.48357422137633,-20.357607717625797,-19.74553794460371,-20.5325548350811,-20.538427911698818,-19.94294092571363,-20.785602442454547,-21.115498054306954,-20.75744743878022,-21.5372545896098,-21.570221876259893,-22.273169385734946,-22.326056282501668,-23.120889933314174,-23.477306098211557,-23.237204457167536,-24.186634812038392,-25.072137330658734,-24.799931708257645,-24.0870882216841,-24.44632219709456,-24.623987646773458,-25.22558904485777,-24.91707086842507,-24.760743713006377,-23.92318785795942,-24.316945863887668,-23.585696946829557,-22.918691537808627,-23.319358020089567,-23.407673224341124,-23.381879196036607,-23.552124167326838,-24.16242582257837,-24.14211788168177,-24.702073115855455,-24.59772498253733,-23.73653170047328,-24.190744482446462,-24.624918561428785,-25.170076936949044,-26.087441992480308,-25.55229559680447,-25.193118539173156,-25.203513071872294,-25.43775933701545,-24.479249754920602,-24.977030474226922,-24.66296804137528,-24.899980023037642,-23.910661486908793,-24.625188627745956,-23.687538291327655,-22.805428163614124,-23.08444257779047,-22.132054891437292,-21.166880439501256,-21.852598287165165,-21.32802952080965,-21.42839101748541,-20.534358460456133,-21.534307284280658,-21.902220038231462,-22.327257664874196,-23.24932287633419,-23.877506418619305,-24.283573436550796,-24.774114250205457,-25.48249893868342,-25.30056303879246,-24.86371298553422,-25.351289613172412,-24.862878342624754,-24.591631532646716,-24.955445311497897,-24.22856571059674,-24.1146057555452,-24.97806121688336,-25.299207775853574,-26.159133368637413,-25.546152691356838,-25.759825804270804,-25.691249719355255,-25.985185789875686,-25.03561880905181,-25.123162103351206,-25.75020610820502,-25.358767757657915,-24.56102002132684,-23.89437524182722,-23.7259851815179,-24.20736386300996,-24.162590252701193,-25.093895881436765,-25.24702364113182,-25.031721010804176,-24.86993844155222,-24.471870148088783,-24.753743330016732,-24.590576179791242,-24.621327380649745,-23.90718425437808,-23.24286641832441,-22.83958813548088,-23.227072147652507,-24.110123218037188,-24.070228506345302,-24.811257687862962,-25.81062586279586,-24.93062368920073,-25.598886991851032,-25.083235141355544,-25.460879777092487,-26.265375656541437,-26.662146653980017,-27.523207393009216,-26.704228405840695,-27.112942193634808,-26.71309820562601,-26.8763677328825,-26.067048539873213,-25.817463092505932,-26.323675968684256,-26.537411730736494,-25.572206208948046,-24.8663689638488,-24.551844240166247,-24.39590873196721,-23.826572174206376,-23.936917250044644,-23.44894184311852,-23.822441619820893,-24.352418640628457,-23.999969782307744,-24.28740637935698,-24.914188865106553,-24.800207484979182,-24.696221771184355,-24.164056229405105,-23.6679009469226,-24.11782084638253,-24.003738613799214,-23.73052333854139,-23.58745696488768,-22.858533991500735,-22.522669564001262,-22.1015065331012,-22.360681254882365,-22.92612302536145,-22.152529914863408,-22.700058165472,-23.11010091379285,-22.175120276398957,-22.822291823104024,-23.557083324994892,-24.382683222182095,-24.265002889558673,-23.54437979264185,-24.039365416392684,-23.72218574490398,-24.67507506767288,-24.281862859614193,-24.037806693464518,-24.352649942040443,-24.225104082375765,-23.356030215509236,-24.221186749171466,-24.13739223452285,-23.70502504473552,-23.605565732344985,-24.446046707686037,-24.097339694853872,-23.139750903006643,-23.801463032141328,-23.766502311453223,-22.932585446629673,-23.370022045448422,-24.260176417883486,-24.0770367202349,-23.78404312580824,-23.1631823470816,-23.313692608848214,-22.320635514799505,-22.418645616155118,-21.63652735669166,-20.920086254831403,-21.72257569152862,-20.935554340481758,-20.234177557751536,-20.936895771417767,-20.906877364963293,-21.739009118638933,-21.125820056069642,-20.186607534531504,-20.238823872525245,-21.238060892093927,-21.44194580381736,-21.3969416054897,-20.633365985006094,-20.09103858564049,-19.941862125415355,-19.445957352872938,-18.65796174062416,-18.485972794238478,-18.96559855574742,-19.78605737304315,-18.822307118214667,-19.38833890389651,-18.936855379026383,-18.49450070783496,-19.24268724862486,-20.19490937469527,-19.59546775603667,-18.972803237847984,-18.296738205477595,-18.803345036692917,-19.70742579968646,-20.484455002937466,-20.78894614893943,-20.072299156803638,-20.53318655025214,-20.171780599281192,-19.350848475005478,-20.348060693126172,-19.91849517263472,-20.758107074536383,-20.07708572363481,-19.58445132151246,-20.122343622148037,-19.62886159773916,-20.429386879783124,-19.60296944901347,-19.126725077163428,-19.77047912729904,-18.999185438267887,-19.264768360182643,-20.134493354242295,-19.163292369339615,-19.893556934781373,-19.00666003068909,-19.092992595396936,-19.756985988933593,-20.694791422691196,-20.141203022096306,-19.25930694490671,-18.904384650755674,-18.36885226238519,-18.016452556010336,-17.187947337515652,-17.41826309915632,-17.125035846140236,-17.493495484348387,-16.748235935810953,-16.061589736957103,-16.894646155647933,-16.231831917073578,-15.267190588172525,-16.117513637524098,-16.243556501343846,-16.310531372670084,-17.29565767152235,-17.555529453791678,-18.462916410528123,-17.773108376190066,-16.988901032600552,-16.750229293014854,-15.758300487417728,-16.50532597443089,-16.529342729598284,-16.11295025423169,-15.18838104326278,-14.272023777477443,-13.69962845928967,-13.1299063609913,-12.311965633649379,-11.552975312806666,-11.631397929042578,-11.436922321096063,-11.562305576168,-11.16645901137963,-11.209952014032751,-10.34551144996658,-11.132370347622782,-11.930885463021696,-11.149193536955863,-11.271430148277432,-10.681231849361211,-10.717867750674486,-9.909785208292305,-9.644602316897362,-9.357184268999845,-9.710082421079278,-9.672419097740203,-9.353449299000204,-8.918812610208988,-8.183579301927239,-8.080885215196759,-7.757973812054843,-6.9295533574186265,-6.153416364453733,-6.4795899339951575,-5.9001483879983425,-5.224992806091905,-6.188586195930839,-7.09975864412263,-6.861414413899183,-7.014255563728511,-7.85058572422713,-6.860343103297055,-6.818060218822211,-6.395181678235531,-6.276517577469349,-6.5789089649915695,-7.558008249849081,-8.37630328675732,-7.936828342266381,-8.774696104694158,-9.127496457193047,-9.570798395201564,-8.775127655826509,-9.27224371721968,-9.316423846874386,-9.67158247763291,-9.4544872418046,-9.002560809254646,-8.887460501864552,-8.448164641857147,-9.374989848583937,-9.56931968871504,-9.655169343110174,-9.461365898139775,-9.102808627299964,-9.71425039600581,-9.648461846634746,-9.893073819577694,-10.654754934832454,-10.748886243905872,-9.75345417438075,-9.764018904417753,-9.071948492433876,-9.359435963910073,-9.875786338467151,-10.038315130863339,-9.180723311379552,-8.479081842582673,-7.705546566750854,-8.085069418884814,-8.045503351371735,-8.205518694128841,-7.533562367781997,-8.529261623509228,-8.245593562256545,-7.59251496149227,-8.422435560263693,-9.281481328886002,-10.269515382125974,-9.539996937382966,-10.272608375176787,-10.869800465647131,-10.583349901717156,-10.641614153515548,-11.375410057604313,-11.33632490504533,-11.907647259533405,-11.323176394682378,-11.846920938696712,-12.390508604701608,-11.93574277497828,-12.661424849648029,-12.741340314038098,-12.250131538603455,-11.490759545005858,-10.593722068704665,-10.649662381503731,-9.95612725475803,-9.784800946712494,-10.440566691104323,-10.679363985545933,-10.014221285935491,-9.916669643018395,-10.309891234152019,-11.189508602023125,-10.46966242371127,-10.90391898714006,-11.364201643504202,-12.008183186408132,-12.120342528447509,-12.923164626583457,-13.330907844007015,-12.467043112963438,-13.343381777405739,-12.786911823321134,-12.949387377128005,-13.668467238079756,-13.882752294652164,-13.301558606792241,-12.461325692012906,-11.595845391508192,-11.674396969843656,-11.954580217134207,-12.21016878215596,-11.453068708535284,-11.424939430784434,-11.570857581682503,-12.433671838603914,-11.501722311135381,-10.841719589661807,-11.291997147724032,-11.549424109049141,-11.631016620900482,-12.034942850936204,-11.787559056188911,-12.198203199543059,-13.146567770745605,-13.738032127730548,-12.814149544108659,-13.631123464088887,-14.037434197496623,-13.638504996430129,-14.309739663265646,-15.209149632137269,-15.653971162158996,-15.81774525437504,-15.136541215702891,-14.658398926258087,-15.09280896326527,-14.447117797564715,-14.988497546873987,-15.801117654889822,-15.473317923489958,-14.73759902548045,-14.770554639864713,-14.845396043267101,-14.56058093952015,-14.671984509099275,-14.550475175958127,-14.881026068236679,-13.99142525298521,-13.392769179306924,-13.594740835949779,-13.928125987760723,-14.298668128438294,-14.95680034486577,-15.59383405232802,-15.46702480269596,-15.836380317807198,-15.007522549945861,-14.075426377821714,-14.60152672091499,-13.850944933015853,-14.75418253056705,-13.861097025219351,-13.793825819622725,-14.540680667385459,-14.580763010773808,-14.538513206876814,-14.072531971614808,-14.854705380741507,-14.097445826977491,-14.18786673527211,-15.151376678608358,-16.063359355088323,-17.005864769686013,-16.37424292275682,-17.17537744017318,-16.31940617132932,-16.01262547308579,-15.369571711402386,-15.04363870061934,-14.716790286358446,-15.041064536198974,-16.01198190636933,-16.749451966956258,-16.102142920717597,-15.935805044602603,-16.013616593088955,-16.453246398828924,-16.72405186155811,-16.60650244867429,-17.52791163837537,-17.118111866991967,-17.940352426376194,-17.513607686385512,-16.688939879182726,-16.448032156564295,-15.740793110337108,-15.0425488431938,-14.05469774454832,-14.808157797902822,-15.299000156112015,-15.846379523631185,-15.577343026641756,-15.8054154003039,-16.10003183595836,-16.64121607504785,-17.587771291844547,-18.06890169903636,-17.26789805199951,-17.6838895897381,-17.81874086242169,-16.891865299083292,-16.649581192992628,-16.02000838285312,-16.648539738729596,-17.410446220543236,-18.00496463337913,-17.15282215969637,-18.10686775436625,-18.637877219822258,-18.403442518785596,-18.622076272498816,-19.461204540915787,-18.837720435112715,-19.257663026452065,-19.476273248437792,-18.623712486587465,-19.27900359313935,-20.232551957014948,-20.45333416154608,-20.88339693332091,-21.83898454112932,-22.05779732996598,-21.850735671818256,-21.641095210332423,-20.977998069487512,-21.320763560477644,-20.732806157320738,-19.841398110613227,-20.471764066256583,-20.78777881944552,-21.773286645766348,-21.15769263310358,-21.21538532851264,-21.43996079917997,-20.757921061012894,-21.251097103580832,-21.079548731911927,-20.216654022224247,-20.707788336090744,-21.43559734337032,-21.660051338840276,-22.240240484010428,-21.466981743462384,-20.549039165489376,-20.351557652466,-20.388956380542368,-21.047345547471195,-21.158762549981475,-20.360649124719203,-20.54752156091854,-19.79965761397034,-20.065135954879224,-19.624809320550412,-19.521603648085147,-20.513948602601886,-21.08003215258941,-20.37054581521079,-21.211455540265888,-21.97482467861846,-21.28312724456191,-20.82612124737352,-21.014211447443813,-21.039612830150872,-20.477003098931164,-20.579338615294546,-20.966601295396686,-21.44434672780335,-22.280062426812947,-23.002001787070185,-23.795333405025303,-24.192975535057485,-24.091433668509126,-23.98851745808497,-23.78014851361513,-24.492130764294416,-24.23650695104152,-24.674366127233952,-24.739957654848695,-25.19255614001304,-25.469477790873498,-25.771183422766626,-26.60288610914722,-26.720375631470233,-26.78723402787,-26.202500473242253,-25.36755826091394,-25.94184050289914,-25.031527972314507,-25.381516315042973,-24.74553817976266,-23.769993811380118,-23.241326783318073,-22.403228524606675,-22.951922689098865,-23.858043597545475,-24.27654203400016,-23.540504057891667,-24.291600407566875,-25.0818415065296,-24.996038543991745,-24.269810820929706,-23.342205175664276,-23.148691513109952,-22.642573014367372,-21.775837264955044,-21.643311773892492,-21.826297994703054,-22.07870694436133,-22.253818281460553,-21.59517199639231,-21.16801553638652,-21.253012605011463,-21.07197128655389,-22.0410839850083,-22.362556602805853,-22.385306778829545,-22.394656124524772,-23.063962189480662,-23.22892585210502,-23.70931717567146,-22.93283595936373,-22.296690092422068,-23.121308551169932,-23.9787875325419,-24.675961314700544,-25.28189381211996,-25.005367044825107,-24.720317449886352,-24.746167135890573,-25.65560281649232,-26.586962967645377,-27.439065116923302,-27.36437718104571,-28.0287957880646,-27.365511293523014,-26.485218657646328,-25.808417982421815,-25.88067442411557,-26.805548844859004,-26.699897632934153,-26.780005399603397,-26.51377341663465,-26.205033438745886,-25.836062541697174,-25.27045695995912,-24.714309496805072,-24.184931706637144,-23.78917596489191,-23.912812100723386,-24.70658161630854,-24.191503492183983,-23.414585083257407,-23.69780095014721,-23.065969433169812,-23.178927671629936,-22.55022245598957,-22.328608602751046,-21.53617342468351,-20.956839453894645,-20.690175984520465,-20.444684741087258,-19.622998803388327,-20.498538916464895,-20.358992455061525,-21.143928518053144,-21.356981972698122,-20.92833876889199,-20.506599434651434,-20.327531222254038,-19.48924523498863,-18.84545654663816,-18.466140410397202,-18.5717847449705,-18.98591274768114,-18.050751829054207,-18.81698356103152,-18.5958339641802,-18.463628972880542,-18.55346816778183,-18.942541777621955,-18.07378447940573,-17.844033644068986,-18.679339203517884,-19.600987946614623,-18.970426911488175,-19.367399213835597,-19.608294769190252,-19.064589022193104,-18.51908566430211,-18.341539316345006,-17.73132975725457,-16.88086700439453,-17.098071776796132,-16.543911466840655,-16.88379505649209,-16.1521719340235,-16.39901159098372,-17.08086535613984,-17.400318930856884,-16.517530359327793,-15.55530731426552,-15.855724718421698,-15.905145838856697,-15.32002672739327,-14.778153199702501,-14.13490669708699,-13.639868167694658,-13.13372617866844,-13.455410085152835,-12.647206305060536,-13.279777097515762,-13.541342177428305,-12.65034212404862,-11.667881255038083,-11.520236164331436,-11.667368153110147,-11.21540511958301,-11.54105459433049,-11.166051952634007,-11.232234683819115,-10.37477249186486,-10.545722584240139,-9.609856459777802,-9.093499538488686,-8.525261700619012,-8.368416966870427,-9.272893531247973,-8.60641522379592,-8.112053190823644,-7.125386604107916,-8.074390544556081,-7.714259958360344,-7.932882857043296,-8.487135735340416,-7.799500219523907,-7.881171642802656,-7.98695562267676,-8.304297402501106,-8.050050354097039,-8.85457410570234,-8.719280179589987,-8.833162375260144,-8.065957802347839,-8.681544436141849,-8.64488808857277,-8.956563618965447,-9.790859821718186,-10.305097870063037,-11.216153691988438,-11.538897210732102,-10.636188998352736,-11.57166718551889,-11.136476406361908,-12.046454432420433,-12.39607163798064,-11.49658180680126,-11.32080168928951,-11.998939563985914,-12.329078208655119,-12.941319671459496,-12.676775677595288,-13.30007782811299,-13.479109729640186,-12.926447273232043,-13.72247391147539,-14.636452146805823,-14.025507445912808,-13.144528715405613,-12.912971476558596,-13.528730471152812,-13.658162562176585,-13.200731920544058,-12.348033760674298,-12.965276287868619,-12.156458258163184,-11.469341513235122,-11.025852806400508,-11.366539364680648,-11.599952097516507,-11.935322777368128,-11.199628353584558,-11.145668081007898,-11.241064673289657,-10.479135712143034,-9.728314745705575,-10.36812557792291,-9.888565653469414,-10.598523451481014,-10.82344747055322,-10.1392427762039,-9.141776741016656,-8.268611153122038,-8.088502005208284,-8.898493042681366,-8.631912851706147,-8.450492579955608,-8.129969903733581,-8.665190696250647,-8.939330048393458,-7.978502073790878,-8.067404996138066,-7.18408406060189,-6.5763013530522585,-6.871409123297781,-7.568319600541145,-6.843778979033232,-6.113323089201003,-6.201136695686728,-6.85516696004197,-6.703932531177998,-6.806247654370964,-7.435435792896897,-6.856738620903343,-6.458961248397827,-6.431184428278357,-6.672958024777472,-6.556762062944472,-6.373337671626359,-6.1350460993126035,-5.6712966952472925,-6.3490274050273,-6.347086514811963,-6.171681931242347,-5.9454328953288496,-5.259544495958835,-5.347033369354904,-4.529610321857035,-3.687126181088388,-3.2623293749056756,-2.7296177060343325,-2.3243788043037057,-1.760409050155431,-0.7792396889999509,-0.687252301722765,-0.06289125187322497,-0.47907104063779116,-1.2019968242384493,-1.4305899580940604,-1.9251995766535401,-1.8232532856054604,-1.6525695803575218,-1.910722741857171,-2.7218896583653986,-3.1382829709909856,-2.8800884489901364,-3.0579340858384967,-3.527117264457047,-2.574596523307264,-3.0716658672317863,-2.4322627116926014,-3.2527646208181977,-2.339593450538814,-1.5540850344114006,-1.6070636161603034,-0.9214419252239168,-0.5380099057219923,-0.7117645479738712,-1.5695348582230508,-1.883387079462409,-1.2795407329685986,-1.901836194563657,-2.0831911438144743,-1.3487564180977643,-0.9986531096510589,-0.9213622082024813,-1.8607321232557297,-1.24670073017478,-0.8685851003974676,-0.7771183969452977,-0.6731460830196738,-0.9059164579957724,-1.8494222783483565,-2.2106187478639185,-2.312279124278575,-1.47851055348292,-2.393853976391256,-2.3543249806389213,-2.221796738449484,-2.863722153007984,-2.4901920524425805,-2.1447435882873833,-2.6731425947509706,-2.7969138179905713,-2.6878649699501693,-2.467317291069776,-2.817975889891386,-2.00153478840366,-2.4674960891716182,-2.903842036612332,-2.238175983540714,-3.1326846634037793,-3.1137706483714283,-2.966131541877985,-3.0237847566604614,-2.9461340815760195,-3.321261671371758,-3.7392013664357364,-2.7749625802971423,-2.5574107780121267,-2.91472853301093,-2.0986606287769973,-2.5205172142013907,-1.5863279541954398,-0.7125849318690598,-0.5600178176537156,-0.6661662780679762,-0.011269097682088614,-0.6247787470929325,0.3464917875826359,0.6009483369998634,1.3776254612021148,1.465285169892013,2.3297674525529146,2.6122953263111413,2.1382699687965214,2.2663929583504796,1.738360927440226,1.7068753652274609,1.432926086243242,1.6545160287059844,1.3946675229817629,0.6638534432277083,1.279458646196872,2.034211720805615,2.4087541922926903,2.186806553043425,1.229212268255651,1.286074047908187,1.1944911368191242,0.2673013270832598,-0.30315441405400634,0.49102241173386574,-0.31839163275435567,-0.20360455894842744,0.5221623936668038,1.4637837605550885,1.3740635206922889,1.4534948919899762,0.9436075012199581,1.85873210337013,1.0805389806628227,1.395713529549539,1.8218358028680086,2.13092531170696,2.5249764346517622,1.80736017646268,2.4636255428195,1.824171643704176,2.162353991996497,2.9157148585654795,3.3451721062883735,4.11138338688761,3.6053098142147064,4.490937440190464,5.2788600767962635,4.3168134316802025,3.478902315720916,3.1844187299720943,4.037800186313689,4.316871420480311,4.415397265460342,3.719885202124715,2.8036979557946324,3.014494312927127,2.7357743275351822,2.607771403621882,1.9414245374500751,2.135909140110016,1.7604687809944153,2.0290807518176734,1.1036115139722824,0.8026017006486654,1.2645174958743155,0.8744099736213684,1.4243952045217156,1.7779710246250033,2.539060352370143,2.367199981585145,1.4865154968574643,1.4139104667119682,1.01538508804515,1.4756802506744862,1.6351858647540212,1.2350068972446024,1.9743936085142195,1.1719873999245465,0.5789037784561515,0.7171336705796421,1.1015710975043476,1.246811236254871,1.5114315319806337,1.8044745260849595,2.5155737549066544,1.6151968850754201,2.125908311456442,1.9354263730347157,1.1520624682307243,2.087951540015638,1.8274502698332071,2.5243205772712827,1.8894687541760504,2.2375177294015884,1.3472937601618469,2.2839475497603416,2.868081316817552,2.5357683934271336,2.8031349019147456,1.9760651499964297,2.295321080368012,1.6096059172414243,2.160993062891066,1.3864369946531951,0.6409776392392814,0.838282962795347,1.101756013929844,0.5648139026015997,0.4909146404825151,-0.31211169296875596,-1.016739021986723,-1.8322508754208684,-1.6493163304403424,-0.9148142440244555,-1.6549302362836897,-1.6892672064714134,-1.6974040805362165,-2.5935392770916224,-1.9312710771337152,-1.2534556235186756,-0.35368185956031084,-1.1865147924982011,-1.1354551366530359,-1.5355046014301479,-2.066015972290188,-1.1611559027805924,-1.515075066126883,-2.135197582654655,-2.4447021787054837,-3.0622002026066184,-2.48766434751451,-2.122648345772177,-2.0636367169208825,-1.5039044762961566,-2.0959859299473464,-1.9614426684565842,-1.1595616885460913,-0.4853144446387887,0.5050237202085555,1.2145378361456096,1.4576196768321097,1.7344547882676125,1.9327871352434158,1.5621865172870457,1.971626226324588,1.4147192067466676,0.6470639137551188,1.3114462089724839,2.1124887545593083,2.6805657604709268,1.8131570992991328,2.5861605131067336,2.9620219371281564,3.414355584885925,3.96863225242123,3.8647284121252596,3.073070948012173,3.6063404884189367,3.516573254019022,3.3920722492039204,3.0199804827570915,2.575464339926839,2.8567327177152038,1.8772803153842688,2.191343751270324,2.2408226104453206,2.1644242140464485,1.3571398262865841,1.133542565163225,0.33974218275398016,0.4930603033863008,0.35372474510222673,-0.4426421574316919,-0.9468879983760417,-1.3874267693609,-2.1032096361741424,-2.573358930181712,-1.8733071712777019,-1.3223388562910259,-1.5720280706882477,-2.4760878989472985,-1.920736865606159,-2.853696208447218,-2.2221559584140778,-2.0441295569762588,-1.681947197765112,-2.440964692272246,-3.0269418600946665,-3.188805516809225,-2.3372842483222485,-1.5480523905716836,-0.7359950761310756,-0.8980124029330909,-1.1240677437745035,-2.1084273299202323,-2.880737907718867,-2.1611639661714435,-1.3050219831056893,-1.8818928455002606,-1.523314154241234,-0.7952103321440518,-1.2658825418911874,-2.108925473410636,-2.6724792732857168,-2.3362438553012908,-2.980088480282575,-3.3236813503317535,-3.2356164869852364,-3.8171133380383253,-3.77113442029804,-4.403712050057948,-5.077512108720839,-5.202017355244607,-5.0392337390221655,-5.216749844606966,-5.576144938357174,-4.9752030349336565,-4.973931417800486,-4.843392916023731,-4.100026341155171,-3.824569877702743,-4.780069493688643,-5.696079423185438,-4.83227569097653,-4.616556935478002,-3.904053726233542,-3.0077169775031507,-2.9339540251530707,-2.315895749721676,-3.2823487669229507,-2.5792084634304047,-3.4797390569001436,-3.7520328564569354,-3.9184253183193505,-4.414457922335714,-4.498470778111368,-4.324264242313802,-5.291567642707378,-5.748642920516431,-4.814313300419599,-3.8671325501054525,-4.469023691024631,-3.47188783576712,-4.228109249845147,-4.244926855433732,-4.131784784141928,-4.920492150820792,-5.008788232225925,-4.64554753806442,-4.270978119689971,-3.7646251344121993,-4.119921169709414,-4.281504426151514,-3.6359437629580498,-2.6967674773186445,-3.3768947846256196,-3.4844864774495363,-2.64753859071061,-3.2510522115044296,-3.9845404964871705,-4.700269767083228,-5.413223159033805,-6.385399495251477,-6.9918666877783835,-6.7078237175010145,-5.933640515431762,-5.426448128651828,-5.8936052727513015,-5.0879835723899305,-5.55167059507221,-4.908288654405624,-5.780843384563923,-6.088663736823946,-5.914202954154462,-5.444621165748686,-4.951071665622294,-5.125992581713945,-4.3103364068083465,-3.8241083207540214,-2.980716244317591,-2.2157005458138883,-3.1307128802873194,-2.8586760526522994,-2.5569181395694613,-2.72069403110072,-3.3784644552506506,-2.994938569609076,-3.8947674059309065,-3.3304408020339906,-4.308273552916944,-3.4866689713671803,-3.9191377251408994,-3.2306360085494816,-3.1957111647352576,-3.873115417547524,-3.8295513852499425,-4.57213576650247,-5.16174171352759,-4.8575445977039635,-4.047986357938498,-3.201041031163186,-3.4377082423307,-3.9501236649230123,-4.54003416839987,-4.211696823593229,-5.1791037055663764,-5.678752719890326,-5.22814548574388,-6.192888120189309,-5.285585748963058,-6.089046325068921,-5.27220493555069,-5.850225723348558,-5.097616523038596,-4.621380243450403,-5.260791394859552,-5.722324522677809,-5.52628344623372,-4.556878491770476,-4.502397772856057,-4.8424252243712544,-5.79650929197669,-6.3824651525355875,-5.751675265841186,-5.757797199767083,-5.4617172931320965,-5.598013924434781,-5.815421824809164,-6.45699695777148,-7.383357515092939,-6.758815530687571,-7.137494965456426,-7.217817342374474,-7.407728751655668,-7.043480895925313,-6.805396765936166,-6.777695388533175,-6.848975442349911,-6.30489695398137,-6.386970652732998,-5.507207408547401,-5.961759865749627,-5.323264929931611,-4.379859189968556,-3.3891680547967553,-4.240854365751147,-4.9144938862882555,-5.558301095850766,-4.6706154979765415,-5.012459933757782,-5.736639547627419,-4.740744173526764,-4.0712387496605515,-3.345883608330041,-3.6223350018262863,-3.7245263271033764,-2.7960809571668506,-2.398573883343488,-2.0270831771194935,-2.908664971590042,-3.8146302346140146,-3.010711051058024,-3.2110654721036553,-3.1001858138479292,-2.9625327847898006,-3.537083964329213,-3.750161072704941,-4.434758462011814,-4.275625275913626,-4.046888572629541,-4.976827249862254,-5.881254740059376,-5.290061690378934,-4.6333270110189915,-4.936508109793067,-5.648523877840489,-5.767242091707885,-6.64787682890892,-7.599124470259994,-7.044477802235633,-6.175361928064376,-5.7536798235960305,-6.354810367338359,-6.961266423109919,-6.05563777545467,-6.683672755025327,-7.290628478396684,-7.180450928863138,-6.53122750390321,-7.322356424294412,-8.301886512432247,-8.663189563434571,-9.321888775099069,-8.686125796288252,-8.348825711756945,-8.128214517142624,-7.842840577010065,-7.20055069308728,-7.480054707732052,-8.45879076840356,-8.348492983262986,-7.564509415533394,-7.873704366385937,-8.117524368222803,-7.424826681613922,-7.234331677667797,-6.365336718969047,-7.2141409534960985,-7.272176082711667,-7.091086221393198,-7.924560052342713,-7.4380116439424455,-6.87690561870113,-7.51495319744572,-8.18176886998117,-8.895848821848631,-8.095579194836318,-7.650862545706332,-8.143528426531702,-9.131186125800014,-8.92294473387301,-8.466314302291721,-7.813459160272032,-8.269411206711084,-8.75517141399905,-8.207122251857072,-8.141204914078116,-7.473093222826719,-7.338274342939258,-7.215153156314045,-6.316363314166665,-5.5219650086946785,-5.404901405796409,-6.341748591512442,-5.964349732268602,-5.954737681429833,-6.2758969948627055,-5.771145017351955,-6.469697515014559,-5.573354066815227,-5.7838570941239595,-5.855259364936501,-6.513903126586229,-7.145296525210142,-7.873874168843031,-7.933785039931536,-7.460786163341254,-6.764290837571025,-6.455935134552419,-6.3453292874619365,-5.623806914780289,-5.982517642434686,-6.512220309115946,-6.015334840398282,-6.2916938764974475,-6.269198657479137,-6.168202767614275,-6.928653732873499,-5.96197813982144,-6.4509831010364,-6.163489681202918,-6.124772855080664,-6.696964269969612,-6.98850485868752,-7.446648895274848,-7.260754725895822,-6.341846263036132,-6.040167230647057,-6.427890953607857,-5.837374319322407,-6.115219700615853,-7.082146529573947,-7.601889682002366,-8.129008103627712,-7.1882878062315285,-7.12229155190289,-6.183508783113211,-6.318593400064856,-6.4505423861555755,-6.059429087676108,-6.029187273234129,-5.878750548698008,-6.214186799712479,-6.6258250256069005,-6.028394989203662,-6.1916419044137,-6.410770536866039,-7.079890536144376,-6.429709529038519,-5.799564164597541,-5.473608759231865,-6.169352772645652,-6.773586610797793,-6.520920651499182,-5.821969595272094,-6.352028067223728,-6.99703684123233,-6.992598801851273,-7.567091252654791,-6.89060585713014,-6.497547013219446,-5.503464337904006,-4.799977156333625,-5.482056468259543,-4.609638449270278,-4.2865158431231976,-4.392825350165367,-4.693690189160407,-4.112084875814617,-4.374546239618212,-4.258709377609193,-4.203022428322583,-4.418995592277497,-4.39586539613083,-5.184608076233417,-5.795181108172983,-6.3420150191523135,-6.994761656504124,-7.893844993319362,-7.945633457042277,-7.194222335703671,-6.560534426476806,-7.542373569216579,-7.222564140334725,-8.151315646711737,-8.709288749843836,-9.363588738255203,-10.060475115664303,-11.007486448157579,-10.300473956391215,-10.178263806272298,-10.451280537061393,-11.279966173227876,-11.201576258987188,-10.217290337663144,-9.552765890024602,-9.717145872768015,-9.371517567429692,-8.451087994966656,-8.660964717157185,-8.484779472928494,-8.973148602992296,-9.273238646797836,-8.284488836769015,-8.043434259481728,-7.146434095688164,-7.1568106967024505,-6.479736597742885,-6.083377429749817,-5.5198044972494245,-5.992452055215836,-5.697599293664098,-5.174646608997136,-5.29197630751878,-6.042911063879728,-6.480939122848213,-6.697132015135139,-6.565987861715257,-6.657201597932726,-7.578552899416536,-6.931694416794926,-7.440523387398571,-6.473581641446799,-7.180211117025465,-7.639363087248057,-8.374952379614115,-7.7952901404351,-6.853035489562899,-6.705370153766125,-7.557096241507679,-8.16277990816161,-8.91935364715755,-9.627777344547212,-10.378143835347146,-9.468234782572836,-9.730848545674235,-10.508520632982254,-9.772865138947964,-10.197123099118471,-9.312839844729751,-10.209515048190951,-9.264708032365888,-10.117703178431839,-10.531890006735921,-10.56257787393406,-10.188943491317332,-9.418298624455929,-9.794800227507949,-9.776554424315691,-10.627274204045534,-9.89429452875629,-9.136480670887977,-8.266522591002285,-7.283059687819332,-7.072434645611793,-7.596495867706835,-7.680220928508788,-8.327947741840035,-8.216569776181132,-8.888999517075717,-8.4884590851143,-8.174904040526599,-7.526869874913245,-8.4495390499942,-8.67660296196118,-9.54113642591983,-8.876148567069322,-8.224242852069438,-8.174635417759418,-8.148949018213898,-8.884675510693341,-8.069340955466032,-8.179928315803409,-7.222957955207676,-6.7797981086187065,-6.288604503497481,-6.457610511686653,-6.046881841029972,-5.547479951288551,-5.700692666694522,-5.809645370114595,-5.878763309679925,-5.747442264575511,-6.362901718821377,-5.769609947688878,-5.109653582796454,-4.134605058003217,-4.813035046681762,-4.380624000914395,-5.15255985269323,-5.754386103712022,-6.371002210304141,-6.3754531419835985,-6.453332336153835,-6.577867726329714,-6.821206554304808,-7.305341379251331,-7.584015442989767,-7.950738713145256,-8.69034098321572,-8.159812207333744,-9.062468292657286,-9.626920321024954,-9.603756048716605,-9.077673295047134,-8.919745654799044,-8.795342211145908,-8.093384967185557,-7.300113973673433,-7.6783318114466965,-8.482916816603392,-7.729201428126544,-8.634934440720826,-9.33630350092426,-9.253552000969648,-9.140946785919368,-9.881678826641291,-9.954649648629129,-9.76083996007219,-9.015313306357712,-9.201609159819782,-9.194808392319828,-9.994003668893129,-9.757995223626494,-9.445895710028708,-9.01068984111771,-9.237442609388381,-9.252366789150983,-9.94720731023699,-9.337875192519277,-10.078168808948249,-10.5061463736929,-9.529361351393163,-9.822830943390727,-9.333462174981833,-10.302658658009022,-10.785671506542712,-10.74007344711572,-10.012828500475734,-10.640253285877407,-11.470243238843977,-12.120558923110366,-11.992560139391571,-11.984502274077386,-12.652734962292016,-12.68460059305653,-12.221329552587122,-12.278711386024952,-12.677767720073462,-12.07321561826393,-11.276040983386338,-11.858716566115618,-11.27930327737704,-11.968246045522392,-12.420548560563475,-11.606126048136503,-11.631234606262296,-11.853997491300106,-11.893828485626727,-11.821360904723406,-12.69231438729912,-13.104363594204187,-12.718703476712108,-13.576536350417882,-14.245969322510064,-13.560827938374132,-13.950799119193107,-14.56163791520521,-14.454293346498162,-15.154839973896742,-14.825427040923387,-15.608925433363765,-15.587432575412095,-16.169917741790414,-16.403396903537214,-17.102644201833755,-16.539878187701106,-17.406827301718295,-16.416911367792636,-16.111019969452173,-16.521394458133727,-15.738355569541454,-15.06293423846364,-15.09419743064791,-14.48092245683074,-14.363184953574091,-14.416364468634129,-14.363428351003677,-14.006555143743753,-14.310185032896698,-14.04256327683106,-14.83668245607987,-15.407870037481189,-15.956002532504499,-16.773194830399007,-17.424544487148523,-16.70719802984968,-15.86093692528084,-16.47545018978417,-16.492375976406038,-15.958937588147819,-14.964997622184455,-14.200944575481117,-14.578210019040853,-14.695112561807036,-14.66992328548804,-15.382487528026104,-15.761898119933903,-14.790869821794331,-14.777141043450683,-14.58683460438624,-14.75224073138088,-14.711580273229629,-14.263789081014693,-15.135332645382732,-15.768711477983743,-16.388214305974543,-16.25603054696694,-16.980462432838976,-16.835487304255366,-17.26996182417497,-17.83393801189959,-18.14593033120036,-17.45969307050109,-16.8541651526466,-17.444423949811608,-17.546698611229658,-17.478398346807808,-17.13770366506651,-17.982337740715593,-17.92858378449455,-17.45661692554131,-17.859727596864104,-18.489497249945998,-19.22121089696884,-18.783453814685345,-18.65023113647476,-18.24999305140227,-18.230389742180705,-19.05223914096132,-19.334913203958422,-20.04381852177903,-19.365741156972945,-19.811500522773713,-19.1562340403907,-19.180138456169516,-18.444095608778298,-18.838455302640796,-18.446931743994355,-18.973546276800334,-19.609254985116422,-19.41257530171424,-20.04693444026634,-20.572773290798068,-20.288943327963352,-20.894852176308632,-20.454773639328778,-21.13564858864993,-20.168510338757187,-20.553920729551464,-20.835321430582553,-20.360809467732906,-19.63207127386704,-19.129868808202446,-19.85554057871923,-20.29275885783136,-19.768199778161943,-18.880571064539254,-19.742538201622665,-20.106018393300474,-20.025753444526345,-19.411969247739762,-19.24352997308597,-20.17825574800372,-20.382834502495825,-19.828666418790817,-20.649867322295904,-20.82155938865617,-21.24261465203017,-21.220413949806243,-21.897492288146168,-22.56821080017835,-22.968394663650542,-23.66344798449427,-24.593606071546674,-24.799400846939534,-24.059170498512685,-24.681337524671108,-25.203551333863288,-25.55544926179573,-24.959264856297523,-24.47991394251585,-23.763927716761827,-23.580502200871706,-23.98473613196984,-23.545059316791594,-24.522980721201748,-24.185351146850735,-24.980265924241394,-24.337669205851853,-24.493711232673377,-23.97439003083855,-24.191792426630855,-23.290254450403154,-22.81381996255368,-21.92026409646496,-21.7718337867409,-21.194546000566334,-21.560593814589083,-20.61226191278547,-21.403548803646117,-21.60256386268884,-22.070721888914704,-23.0347796427086,-22.499054331798106,-22.753680942580104,-21.970945038367063,-21.068645243067294,-20.227203900925815,-19.338070338591933,-19.123673923313618,-18.546855224762112,-18.250601479783654,-17.275680406484753,-17.272186846472323,-17.722183565143496,-17.81227939063683,-17.593059581238776,-16.99230224220082,-17.387818784918636,-17.0571137345396,-17.32148793246597,-17.629076373763382,-17.437893805094063,-16.55418435204774,-17.174716571345925,-17.931762270629406,-17.724219630938023,-16.921568382065743,-16.239194385241717,-16.637035219930112,-16.10201763594523,-16.460498554166406,-16.837141862139106,-17.26151627348736,-16.42771092336625,-15.914760291576385,-15.880673550069332,-16.789012715686113,-16.64526856923476,-16.905983853153884,-16.044968478381634,-15.137222547084093,-15.369285088032484,-16.36690999008715,-16.242810666095465,-16.200880378484726,-15.911032629199326,-16.106412312481552,-15.507887799758464,-14.633581191767007,-14.709695883560926,-14.611547193024307,-14.43045779876411,-13.448217009194195,-13.58282341947779,-14.129957219585776,-14.089480041060597,-14.746521367225796,-15.527447814121842,-15.430363073013723,-15.020294019021094,-14.96091938810423,-14.536867867223918,-14.500818801578134,-13.651379441842437,-13.861427575815469,-14.200781357008964,-13.448640630580485,-12.522511675488204,-12.945066728629172,-13.15149608347565,-13.248690750449896,-12.391736114863306,-12.677766912151128,-13.620221798308194,-13.12326164264232,-12.962756441906095,-13.348603493068367,-12.351176072377712,-12.449832618702203,-12.163965081330389,-11.325067045167089,-11.812927825842053,-12.310280641075224,-12.914056899026036,-13.719775672070682,-14.237465440761298,-13.435108337085694,-12.5561926625669,-12.755204278044403,-12.484164690133184,-13.327629811130464,-14.085663537029177,-14.870050530415028,-15.517927231732756,-16.390276102349162,-15.740701927337795,-16.3729911823757,-15.770477620884776,-16.6281484127976,-16.68104368587956,-16.549118464812636,-17.17313068220392,-17.19203532440588,-16.29098559729755,-15.67342517664656,-16.501655566040426,-15.771476326044649,-15.635317912790924,-16.02079489454627,-15.642475760541856,-15.584806311875582,-15.619530307129025,-15.008922427892685,-14.422715843655169,-14.867942342069,-14.667015308514237,-15.531694192904979,-16.449712764006108,-15.904645070433617,-15.294551115948707,-14.920916182454675,-14.700658692978323,-14.551982284989208,-14.978476190939546,-14.147340934257954,-14.499485741835088,-14.765233591664582,-14.261593502946198,-13.985773132182658,-13.898514605127275,-13.061005046591163,-12.722449297085404,-13.479878902435303,-14.308166555128992,-15.077614394947886,-15.503224033862352,-16.02087088022381,-16.14634220348671,-16.34663187758997,-17.020988256670535,-17.385528180748224,-18.00123963318765,-17.175316511653364,-18.032416997477412,-17.057361946906894,-16.78948559286073,-15.909455113112926,-15.39800699101761,-15.032844542060047,-15.962184514850378,-15.87365068309009,-16.401881890837103,-16.004836139269173,-15.035257735755295,-15.492482745554298,-16.089649301487952,-15.380253511946648,-14.583625701721758,-13.748749495483935,-13.895209970418364,-14.337193793151528,-15.12560890847817,-14.782702424563468,-15.439677137415856,-14.979051384609193,-14.443322744220495,-13.90121736843139,-14.529957761522382,-13.648597281891853,-14.01841417234391,-13.02866745647043,-13.25323780393228,-13.921205128077418,-13.164043611381203,-12.626475718338042,-12.911486837547272,-12.54793208418414,-12.559618645813316,-11.629772739484906,-12.079096550121903,-11.56598951946944,-12.161452198401093,-11.567971396725625,-12.563396995421499,-12.787544975988567,-12.914955445099622,-12.99624662520364,-13.55942243989557,-12.813205243553966,-12.758144374005497,-12.832451351452619,-13.301402616780251,-13.088309471029788,-12.494393561035395,-12.896562044043094,-13.789178103208542,-13.823567116167396,-13.213937493506819,-14.202339691109955,-14.461670876480639,-15.196913719642907,-15.33232808765024,-16.238422245252877,-15.642932751215994,-16.189692177809775,-15.205158623866737,-15.94204257754609,-15.733460744842887,-15.49591069854796,-15.43096812069416,-15.519320175983012,-15.546510356478393,-16.431696796789765,-16.786716387607157,-17.716630429495126,-18.070742103736848,-18.29992178408429,-18.268575959373266,-18.38898624991998,-19.252455805428326,-18.855819527991116,-19.212229568511248,-20.009428622666746,-20.558475291822106,-20.264198762830347,-19.732335986103863,-20.541504024062306,-19.93590690754354,-19.943160426337272,-19.69419870339334,-20.62297529214993,-19.754047526512295,-18.827313800808042,-18.34111853176728,-19.208949437830597,-19.05974019272253,-19.608731114305556,-20.46685308869928,-20.701412616297603,-21.25547506613657,-20.823797184508294,-21.07179653318599,-20.360604679211974,-20.51801939168945,-21.15728818345815,-21.784823312424123,-22.04115233477205,-21.493088129442185,-20.57710241386667,-20.184522808063775,-20.439283444080502,-20.553073167335242,-21.33157649450004,-20.865701904520392,-20.353229011874646,-20.927285108715296,-20.953342778608203,-21.10671612340957,-21.060071509797126,-20.379151022061706,-20.9410940669477,-20.34983359836042,-21.11116792820394,-20.60688226809725,-20.880068053025752,-20.81778808683157,-20.056467223446816,-20.231576072983444,-19.78955003991723,-20.270090588834137,-19.633698579855263,-20.580568944104016,-19.72649117046967,-20.337731807958335,-20.452106358483434,-21.17387978825718,-20.382613906171173,-21.083686406258494,-21.625437155365944,-22.564081539865583,-21.60821949597448,-22.05411029793322,-22.647695131134242,-22.62316801212728,-21.65114909922704,-22.20890876231715,-22.27919812966138,-23.228512403555214,-22.992248887196183,-22.91086790105328,-22.630268865264952,-21.875596632715315,-22.51892339065671,-22.28889180161059,-22.88270626310259,-22.185210764873773,-22.629611631389707,-22.055412545334548,-22.677895549684763,-22.127699921373278,-22.063722809776664,-22.443931181915104,-21.550581687130034,-20.799567814916372,-21.021544291172177,-20.699052145238966,-19.918349461164325,-20.850867870729417,-20.579273053444922,-20.426461605355144,-20.43821026524529,-21.367938535287976,-20.658296536188573,-20.63973971037194,-19.81515026371926,-20.05249731382355,-20.3402768955566,-19.739162667654455,-20.351494674105197,-20.888277838006616,-21.3717985204421,-21.99382836325094,-22.87709193630144,-22.313999889884144,-22.824766672682017,-22.107341829687357,-22.261953517328948,-22.57147387880832,-22.61282285163179,-21.90712520154193,-22.90459873760119,-23.606397586874664,-23.87978767743334,-24.722935799974948,-23.75259254965931,-23.43219758057967,-23.30751631781459,-23.442828513216227,-23.239695333875716,-23.58291651168838,-23.533650379627943,-23.227648691274226,-24.04183759028092,-24.8319831895642,-25.63098188256845,-26.04362236475572,-26.36220859736204,-25.808984353672713,-26.09229902178049,-25.350489450618625,-25.04097751993686,-25.283320419956,-24.988988891709596,-24.164131610654294,-24.319065008312464,-24.795120606198907,-24.267585988156497,-23.963525120168924,-23.3067958811298,-22.383757379837334,-22.54899641731754,-21.752910890616477,-21.021513763349503,-21.083282048348337,-21.4764904640615,-21.208073920104653,-22.017318992409855,-21.938645020127296,-22.054872505366802,-22.906068954616785,-23.817080434877425,-23.255091704428196,-22.656717114616185,-22.532204071991146,-23.333382436539978,-23.617485371418297,-23.242091248743236,-23.24108057282865,-22.856521606910974,-21.95417669415474,-21.730658430606127,-21.02516023721546,-21.38284830050543,-21.506308530457318,-22.081777373794466,-22.554205677937716,-23.034385619219393,-23.497135438024998,-24.104505058843642,-24.72854250110686,-24.604413508437574,-25.180805361829698,-24.40377618931234,-24.908704871777445,-25.104987181723118,-24.403118587564677,-23.747455595526844,-23.62772477697581,-24.416633673012257,-24.62338251899928,-23.936697378754616,-24.492180114611983,-24.81064360588789,-25.275888413656503,-24.985593541990966,-25.51167341414839,-24.637406303547323,-24.178869450930506,-24.69748118566349,-23.715356431901455,-23.221652603242546,-23.851702996063977,-24.5852648508735,-24.2314936760813,-23.51081954780966,-23.950313285458833,-24.20677774725482,-24.93382280692458,-25.21611928846687,-24.36795725626871,-23.854586536064744,-23.565882591996342,-23.682361647021025,-24.127779291011393,-23.7543350411579,-24.539845522027463,-25.5195522159338,-25.509225220419466,-25.801535695325583,-25.494041372090578,-26.31061411695555,-27.13317884830758,-26.43474410334602,-25.883848022669554,-26.765226401388645,-26.815683993510902,-27.253110653255135,-26.70205641631037,-25.812155208084732,-25.3295245510526,-24.345901257824153,-23.775008080992848,-23.114554041065276,-22.370436367578804,-22.73581781843677,-22.762444419320673,-22.8214142145589,-22.286647252738476,-22.980609213467687,-22.44963309681043,-22.488271843176335,-22.18111817771569,-21.26255610026419,-20.27807523496449,-19.37700774287805,-20.078135828953236,-19.54401061264798,-19.026020491030067,-18.469915180001408,-17.478879971429706,-18.01282640453428,-18.120294632855803,-18.854327051900327,-18.817024517338723,-18.819924919400364,-18.18602681858465,-17.463795009069145,-17.522273750510067,-17.580410968512297,-16.71468754671514,-17.415156309492886,-16.548634722363204,-16.66171147301793,-17.27927106525749,-17.60344087611884,-17.315697024110705,-16.545206296257675,-15.561247961129993,-14.802541335113347,-14.818942622747272,-14.59534570388496,-13.874211420305073,-13.553224746603519,-13.136307819280773,-13.514591416344047,-12.657472310122102,-11.95620460016653,-12.184409448876977,-12.896677737589926,-13.135522675234824,-12.377458403352648,-13.183978786692023,-12.63443583715707,-13.06057395040989,-12.732519174460322,-12.53569902246818,-11.54554085014388,-11.332113143987954,-10.422102865763009,-9.654550509527326,-10.277676348108798,-10.911791797261685,-10.086347581353039,-10.085570646449924,-9.422430670354515,-9.298622753471136,-10.151981614064425,-11.008415112271905,-10.837704102974385,-11.181133926846087,-10.553516942542046,-10.887756491545588,-10.527962277643383,-10.290171867702156,-10.126298314426094,-10.684236495289952,-10.562205754220486,-9.849871087353677,-9.616772472858429,-9.394849575590342,-9.612787953577936,-10.008430075831711,-10.768449048977345,-11.10239787492901,-10.190346982330084,-9.357019123621285,-9.038025302346796,-8.073431857395917,-8.990757966414094,-8.284715761896223,-7.706952484790236,-7.319179496727884,-7.945016224402934,-7.749156062491238,-8.431587138213217,-8.664147379342467,-7.902437533251941,-7.184513540938497,-7.361236854922026,-7.225075114518404,-7.072902285959572,-7.86433989694342,-8.72953369980678,-9.198707931675017,-9.375184976030141,-8.534025652334094,-7.867213940247893,-7.0547720938920975,-7.800039431545883,-7.514189325738698,-7.546468263491988,-7.363298824988306,-7.951308896765113,-6.957903907168657,-6.840232972521335,-6.426425874698907,-5.71213304810226,-5.727744474541396,-6.204943113029003,-6.287485375534743,-5.793582085520029,-6.372462627012283,-7.301533421035856,-7.957250209990889,-8.84596724389121,-8.158844788558781,-8.83125283755362,-9.773368179798126,-10.074292090721428,-9.097926003392786,-9.529663571622223,-10.452310491353273,-10.351845062337816,-10.16212310642004,-10.289330454543233,-9.812977514695376,-8.897540968377143,-7.909464604686946,-8.702724901027977,-9.602920066099614,-10.046331501565874,-9.074510039761662,-9.196933364961296,-9.368473891634494,-9.972625968977809,-9.474761655554175,-10.446902274619788,-10.558015004266053,-10.397249505389482,-10.257499793544412,-10.767501096706837,-11.614700008183718,-10.854418036993593,-10.200013536959887,-9.665533845778555,-10.437709890771657,-10.657695045694709,-11.1361138317734,-10.744315144605935,-9.932481817435473,-9.246727596502751,-9.520476717036217,-9.028615341056138,-8.48417244805023,-8.549345199484378,-8.474351290147752,-8.984734763856977,-9.880886135622859,-9.668759530875832,-9.619897110387683,-9.024715249426663,-8.459830173756927,-7.919469367247075,-8.334603519644588,-8.639196149073541,-8.718469636514783,-8.083986840676516,-8.326985016930848,-9.307724082376808,-9.841768101789057,-10.434695988893509,-10.54967268742621,-10.534497420769185,-10.759075579699129,-10.43414791347459,-9.990812405012548,-10.055586025584489,-10.297214707825333,-10.700618096627295,-9.947507653851062,-10.290447533130646,-9.519863831344992,-9.83836601069197,-9.094669247046113,-9.61285604070872,-9.701706600841135,-10.080643098335713,-9.292655122932047,-8.67973504588008,-9.196893084794283,-10.071161543950438,-10.770964391063899,-11.031334319151938,-11.886763786431402,-12.602826812770218,-12.739476453512907,-12.343152566812932,-12.39013017853722,-13.166409568861127,-12.381078410428017,-12.343044600449502,-12.259357318282127,-11.334338879678398,-11.382574503775686,-11.859963322523981,-12.624222647864372,-11.785637920722365,-11.721385880373418,-12.576152650639415,-12.23979395488277,-12.422217912506312,-13.358599972911179,-14.075508839916438,-14.252408580388874,-13.863028457853943,-14.386898932047188,-13.40498518012464,-12.468384417705238,-11.750256635248661,-12.447581233922392,-11.832052757497877,-11.517952284310013,-11.623941011261195,-11.253264520782977,-12.215572707355022,-12.324131784029305,-13.059368636924773,-12.186014736071229,-12.380497849080712,-11.931391432415694,-11.754827629774809,-12.230718694161624,-12.47279203357175,-11.872478416655213,-11.012709999457002,-11.459804265759885,-11.218851086683571,-11.967033584602177,-12.471898129675537,-12.374054102227092,-12.740753013640642,-11.74382266588509,-11.528153324965388,-11.325675272382796,-11.319337194319814,-11.884251809678972,-11.479728609789163,-12.09680765401572,-11.838002831209451,-11.552983433939517,-11.398180250544101,-11.44260140415281,-10.942070987075567,-11.87881506793201,-12.143908538855612,-12.455999031662941,-12.979843963868916,-12.157670470420271,-11.397456232458353,-11.904942739754915,-12.33326579676941,-13.024517834186554,-12.053541900590062,-11.086690343450755,-11.491688860580325,-10.69985026307404,-9.785768860485405,-10.479981658048928,-11.299045662861317,-11.759578621014953,-11.167651837226003,-10.62149678915739,-10.87491551740095,-11.58147559966892,-12.159458671230823,-11.497103865258396,-11.228301662486047,-11.167549498844892,-11.17737982654944,-10.228338551707566,-10.82525842031464,-11.617451829370111,-12.52338459994644,-13.515070245135576,-14.081010377965868,-13.793444445822388,-14.352822340093553,-14.192543587181717,-13.415542987640947,-13.057067855261266,-13.469267618376762,-14.004804096184671,-13.787561245262623,-12.96883598389104,-13.946087498217821,-13.417695666663349,-14.222118793986738,-14.344035329297185,-15.093745770398527,-14.269260379020125,-14.111813587602228,-14.79021836584434,-14.273769507650286,-14.002383728511631,-14.317195157054812,-14.827646652702242,-14.3859884114936,-13.567919014953077,-13.760049417149276,-13.838640075176954,-14.428742822259665,-13.711402850691229,-13.790648110210896,-14.133628728799522,-14.67580909980461,-14.724437995813787,-15.627559003885835,-14.749492860399187,-15.463707338552922,-15.568209365010262,-15.296096805017442,-14.605150904506445,-14.158547955099493,-15.042808022815734,-15.408417147118598,-15.234002457000315,-15.815224271733314,-16.666744366753846,-16.85412706900388,-16.125868255272508,-16.077979021240026,-15.675802654586732,-15.736351075116545,-14.931673345156014,-15.738810369744897,-16.40992461051792,-16.76587415020913,-17.62578811775893,-17.693156823981553,-17.9507902902551,-17.106606917455792,-16.893337721005082,-17.39089860022068,-16.7021703440696,-17.515279525890946,-17.490448902361095,-17.123023530468345,-16.142991471569985,-15.315342696383595,-15.669370059855282,-15.869069778826088,-16.468475710134953,-16.909311685245484,-16.731613397132605,-15.977690198458731,-15.809961136896163,-14.845186086837202,-14.53872711258009,-15.33350775949657,-14.881864653900266,-14.736756542231888,-13.78250341815874,-14.397743288893253,-14.914415539242327,-15.627241801470518,-15.48207738995552,-14.81487930007279,-15.047309244517237,-15.575259630568326,-15.03418762423098,-15.516815192997456,-16.144305079244077,-17.06439123209566,-16.381888684350997,-15.40407152660191,-14.669979353900999,-13.836514296010137,-14.662051253486425,-13.73810662003234,-13.450643573421985,-12.643150333780795,-11.698780304286629,-11.132268662564456,-10.491581522393972,-10.355860666837543,-10.158914744388312,-10.288815018255264,-11.034559780731797,-11.605732684023678,-10.710121501237154,-11.218739393167198,-11.73505821172148,-11.461591211613268,-11.830805256031454,-11.958357997704297,-12.264638948719949,-11.429486846551299,-10.622220175806433,-10.63604465732351,-10.156033080536872,-10.557027585804462,-11.038041854277253,-12.031711655668914,-12.688749310094863,-12.593754538334906,-13.132997469045222,-13.797565294895321,-13.303124891594052,-13.262758937198669,-12.652629771269858,-12.198713735677302,-11.356425899080932,-11.437935949768871,-11.527578664477915,-10.633982143830508,-9.82083450537175,-10.367780226282775,-10.34647525427863,-10.266633665189147,-10.315816189162433,-10.733283912763,-10.36618290655315,-10.576351146679372,-10.151854665018618,-9.45041797729209,-9.347497265320271,-8.945220698602498,-9.272029296960682,-8.632872682064772,-8.858201166149229,-9.079002419952303,-9.874050999525934,-9.811939242761582,-10.691609415691346,-11.113135437946767,-10.905893518589437,-10.811025431845337,-10.798276268411428,-10.058829309884459,-9.388665911741555,-10.118228232953697,-10.520934387110174,-9.94901236705482,-9.291777194477618,-9.933528274297714,-10.545605474151671,-11.447806893847883,-12.275929459836334,-12.5614134343341,-13.319267167244107,-13.672596456483006,-13.3812883249484,-13.342872940003872,-13.168970976490527,-12.286653253715485,-11.454817648045719,-11.237327868118882,-10.939628166612238,-11.879252266604453,-12.717164651490748,-12.064343392848969,-11.407520708162338,-12.335638975258917,-13.279977357480675,-12.741872621234506,-13.327988654840738,-12.619845334906131,-11.790887304581702,-11.303329302929342,-10.57468500174582,-9.87569239968434,-8.900300742127001,-8.772763170301914,-8.498552336823195,-8.58862635679543,-9.245594603475183,-8.593196421861649,-9.28861802816391,-8.787038516718894,-7.797680025920272,-7.740980284288526,-7.981943438760936,-8.605248246807605,-8.389230867382139,-8.312229705043137,-7.675802778452635,-8.626822241116315,-9.596890223678201,-8.75220809970051,-8.36632307479158,-7.873236071318388,-7.616990576963872,-7.917761097662151,-7.878526788204908,-8.339277447201312,-9.300636528525501,-10.228973844554275,-9.460892660543323,-8.60025145765394,-7.719012307468802,-8.665433251298964,-9.43209654185921,-8.458075580187142,-9.255264877807349,-8.260764490347356,-7.979915480595082,-8.446144965942949,-8.90199060505256,-8.551651411689818,-8.389062154106796,-9.275833894032985,-10.09758846508339,-10.363144677132368,-9.407906176522374,-9.704717493150383,-9.436724259052426,-9.55897294729948,-10.196846911218017,-10.483691434841603,-10.511240104213357,-11.447159299626946,-10.940035052131861,-11.536729549523443,-10.76262393873185,-10.96819440741092,-9.993210797663778,-10.16257804678753,-10.69848152436316,-10.620356620755047,-11.147052863612771,-11.190080374479294,-10.589907159563154,-11.438873820006847,-11.873034625314176,-12.70810845028609,-11.720854384358972,-11.945820644963533,-11.552142061758786,-11.964295057579875,-11.232357578352094,-11.238218441139907,-10.723938954994082,-11.023767263162881,-10.838115990161896,-10.763590037357062,-9.801603275816888,-9.17589108273387,-9.261374086607248,-9.697972488589585,-10.424846041481942,-11.029309529345483,-12.01702192472294,-11.755493768490851,-12.667683933861554,-12.551747023127973,-12.537942931987345,-12.214503278955817,-13.143819773569703,-13.706979999318719,-14.262103180401027,-13.687571662478149,-12.848875554744154,-12.804716198239475,-13.187784930225462,-12.207050098571926,-11.861067407298833,-11.326963355764747,-12.089054001495242,-11.47759411437437,-12.048367253970355,-11.637853029184043,-11.515448533464223,-10.628665005788207,-10.87319523980841,-10.324798968154937,-9.974392919801176,-10.473421634174883,-10.994377371389419,-10.740190353244543,-9.82635401468724,-9.574120404198766,-10.257894592825323,-10.152441230136901,-11.005495911464095,-11.202148102689534,-11.714300252962857,-12.083982702810317,-11.629557034932077,-10.928082310128957,-10.965433963108808,-10.766145999543369,-11.337954331655055,-11.439221966080368,-12.158816957380623,-11.744762557093054,-10.981080348603427,-11.469166961032897,-10.540452122688293,-11.273081089369953,-12.24520891578868,-11.952014446258545,-12.070602749474347,-12.284702438861132,-12.354217202868313,-12.145303841214627,-12.37684102030471,-11.619108117185533,-11.168291081674397,-10.908247421029955,-11.64790594112128,-11.62003842042759,-11.038658738136292,-11.082092797383666,-10.486415659543127,-9.732657275628299,-9.471583074424416,-9.945813878439367,-10.841378982178867,-11.307163052260876,-10.990597663912922,-10.414624087046832,-10.91838623629883,-11.370233931578696,-10.726363039575517,-10.03329652827233,-9.71526185516268,-9.824467244092375,-10.586633650120348,-10.90817556437105,-10.30489523941651,-10.22939619421959,-11.134998538531363,-11.887798503041267,-12.214075828436762,-12.743597787804902,-13.611011786852032,-12.627986902371049,-12.853795018978417,-12.235413018614054,-13.150550315156579,-13.744498161133379,-13.155431441962719,-13.295223996974528,-13.456581440288574,-13.36193855945021,-13.646802266128361,-14.115346286445856,-13.507063375785947,-13.371122508309782,-13.41266893176362,-13.929624394513667,-13.934141072444618,-13.949318005237728,-14.351468577049673,-13.684487322811037,-13.597929555922747,-13.088236402720213,-13.520571884233505,-14.110166542697698,-14.858187399804592,-15.306132818106562,-15.328132254537195,-14.678769872058183,-14.574252919759601,-13.649154934100807,-12.777884522918612,-13.196470944676548,-12.339240375906229,-11.717562012840062,-11.208556239958853,-11.777972561772913,-11.724632776342332,-12.566787440795451,-11.892254942562431,-11.422506602946669,-11.742640772368759,-10.836307812482119,-11.694425095338374,-10.855313712265342,-10.156210774555802,-10.301235035527498,-10.218424446415156,-10.588626914191991,-10.65096569340676,-10.242835365701467,-9.800667678937316,-9.747037786990404,-10.104301454033703,-9.517103252466768,-9.917580392677337,-10.195565755013376,-9.34015664178878,-8.67287543322891,-9.41459928220138,-8.869183859787881,-9.21250223601237,-8.33858351688832,-8.236086479388177,-8.971912117209285,-9.83455808693543,-10.12926279520616,-10.627464753109962,-9.726594613865018,-9.659217178355902,-8.803060094360262,-8.355229099746794,-8.08340615266934,-8.750045703258365,-8.220228570047766,-8.604250323958695,-9.062713734339923,-8.864281042478979,-8.962635105475783,-8.852589135989547,-9.720298981294036,-9.143248428124934,-8.165181116666645,-8.917369781527668,-9.332459456287324,-9.484564261510968,-10.418347707018256,-10.54310633894056,-9.569285152945668,-8.826453796122223,-8.701358581893146,-8.71181195275858,-8.406642680056393,-7.6637854147702456,-7.709938305430114,-7.394366715569049,-7.236858109012246,-7.997062722221017,-8.216195152606815,-8.929237246513367,-9.741695489734411,-10.42746046045795,-10.893615912646055,-10.543694676365703,-10.621245180256665,-10.689765917137265,-9.983621362131089,-10.487027555704117,-10.35535423643887,-10.562374535016716,-11.081704930402339,-10.23232254665345,-11.207016340456903,-11.392669466789812,-10.51870363438502,-11.217948060948402,-10.969469340518117,-10.808450067415833,-11.60710739903152,-12.244539899751544,-12.457413781899959,-12.582458076998591,-13.072454366832972,-13.272598953451961,-13.461044882424176,-13.667155247647315,-13.401479266118258,-14.065287462435663,-14.282656086143106,-14.340271483175457,-15.231192849576473,-15.74854977754876,-16.40803414862603,-17.318948874250054,-16.355257860850543,-16.100187797099352,-15.758329033385962,-16.46839397586882,-17.424671854358166,-16.788162883371115,-17.712819293607026,-18.399892626330256,-18.14076594961807,-18.24914184305817,-18.55590454582125,-17.6400742623955,-18.62913333810866,-19.50454305903986,-18.783212129957974,-17.830455348361284,-18.617377281188965,-19.19101465586573,-19.710313197225332,-20.36404512869194,-20.09919881913811,-20.603952940553427,-21.206337119918317,-21.785887237638235,-22.180961040314287,-21.368207158055156,-21.26684708846733,-21.622659866232425,-20.90016671922058,-21.79078709334135,-22.12454863311723,-23.095575185026973,-23.833068812731653,-23.818476051092148,-24.480806129984558,-23.522029924206436,-24.37408584682271,-25.099627418909222,-25.27276647463441,-26.063394328579307,-25.83319979486987,-26.681709914002568,-25.972076545935124,-26.52796551026404,-25.610201589297503,-25.387188612949103,-25.30748136108741,-25.08791631925851,-25.82860590191558,-26.76992735825479,-26.54987045470625,-26.874745334964246,-27.158897209446877,-27.646898972336203,-28.532027940265834,-27.593171583488584,-27.60856848396361,-26.851309824269265,-25.92445188900456,-25.730828248430043,-26.57592936605215,-26.216519872192293,-25.568695166148245,-24.651719368994236,-25.408648716751486,-25.28953305678442,-26.239955274388194,-26.642623555846512,-27.015903246123344,-26.341658763587475,-26.69190022163093,-27.22233842499554,-26.32940413337201,-26.87992505542934,-26.793860249221325,-27.46343981148675,-28.259628248866647,-28.040557839907706,-27.048829016275704,-26.163485961034894,-25.73698257887736,-26.44816822418943,-26.062121049501002,-26.06790327373892,-26.468639546539634,-26.20420701103285,-25.642726911231875,-26.49614397343248,-25.873711462132633,-25.256155292037874,-25.514443406369537,-25.876916870940477,-25.501893314067274,-26.00464798696339,-25.577932632062584,-26.16963590309024,-26.194084096234292,-25.735118355602026,-24.912126457318664,-24.195621958002448,-23.9476908557117,-24.16840453259647,-24.593740865122527,-24.90720404824242,-25.486402426380664,-25.94238636828959,-26.233226058073342,-26.694094066973776,-26.358579380903393,-26.26083885319531,-26.201451507862657,-25.569689739961177,-25.66809514630586,-25.867591740563512,-25.91028038598597,-26.902844068594277,-27.088191754184663,-26.202858505304903,-25.360858460422605,-24.488510985393077,-24.65121059026569,-24.395988137926906,-24.07651716284454,-23.52180018927902,-24.01781545765698,-23.83171446993947,-23.93440084857866,-23.833841546904296,-23.857106569688767,-22.879095932934433,-22.338239439297467,-22.766776794567704,-22.26884972443804,-21.631402322556823,-20.719283149112016,-21.634186484385282,-20.757939281407744,-21.423842863645405,-21.308489105198532,-21.174973763059825,-20.337419853080064,-19.665608772542328,-20.559384641703218,-20.8618499385193,-19.99578833160922,-20.875274682883173,-20.093433861155063,-20.461101817898452,-20.99014748679474,-20.69128871941939,-20.73256492521614,-19.961934751365334,-20.455371690448374,-20.011591412127018,-20.3279416305013,-19.544810408260673,-18.7179071046412,-18.671725965104997,-18.91993715474382,-19.5482779443264,-19.93472946761176,-20.797168508172035,-21.63218984939158,-21.136804761830717,-21.967291159089655,-21.5148992985487,-21.93574756802991,-21.047451034653932,-21.386578738689423,-21.63850330747664,-22.260102617088705,-22.773597643710673,-23.24564020289108,-22.521482864394784,-22.522277541924268,-23.39274634094909,-22.599453639239073,-23.36325869243592,-22.915263005997986,-22.25735446624458,-21.43273507244885,-21.57723484467715,-21.197447238024324,-20.4839975531213,-19.48739259922877,-19.237715068273246,-19.009873824659735,-18.95858058705926,-19.596442508045584,-20.04878680128604,-19.136809890158474,-19.733727231621742,-20.08731487719342,-20.01458421163261,-19.78551140287891,-20.33965525124222,-21.032647704705596,-20.474320470821112,-20.27265178365633,-21.215837206691504,-22.181827201507986,-22.24768955865875,-22.313741938676685,-22.228014676831663,-22.679896293673664,-23.52199103916064,-23.965717259794474,-23.490307486616075,-22.531715743709356,-23.3235678197816,-23.788516592700034,-24.19616283569485,-24.927615810651332,-24.26547364052385,-24.839568437542766,-24.921830566134304,-24.624633725732565,-24.683199137914926,-23.80779682379216,-22.969527579378337,-22.631862712092698,-21.747579909861088,-21.620069784112275,-22.35053664026782,-22.268417798448354,-22.438005938194692,-21.859093489591032,-21.576143284328282,-22.355154887307435,-22.35008790064603,-21.94919844530523,-21.204100273083895,-20.606319797225296,-21.407044236082584,-21.509238922502846,-21.647595108952373,-22.546270901337266,-23.445867624599487,-23.638351606670767,-22.983515028376132,-22.750417941249907,-21.97542123356834,-21.50471270782873,-22.12540456233546,-21.776167758740485,-22.239461111370474,-22.598003414459527,-22.204696975648403,-22.58850241312757,-22.141577038913965,-22.170349151827395,-21.917222573887557,-21.697411723900586,-21.116697973571718,-20.535728708840907,-21.018820961471647,-20.45469253556803,-19.96608744142577,-19.59378000954166,-19.472693759948015,-18.719506515190005,-19.470626141875982,-18.996730499900877,-19.54396037198603,-20.06902380567044,-19.407720748800784,-18.471713342238218,-17.486604277510196,-17.39056292269379,-17.96027885749936,-17.37801877129823,-17.613040050957352,-17.0457361061126,-17.546277955174446,-16.724775081966072,-17.48960776766762,-17.880098771769553,-18.248731886968017,-17.259199739433825,-16.468976825941354,-15.894191863480955,-16.335793134756386,-17.132666980847716,-17.693597577046603,-18.412956743966788,-18.442361648194492,-18.67861208738759,-18.418472559191287,-18.222900765947998,-17.907293702941388,-18.867315365932882,-19.189261983148754,-18.459541282616556,-18.026265311520547,-17.711411783471704,-17.53535837586969,-18.48875289876014,-18.796215754002333,-18.995574614964426,-18.46190299047157,-17.93977282801643,-17.893927475437522,-17.797235006000847,-17.676377713214606,-17.982014470733702,-17.270869627594948,-16.476073465310037,-15.636862760875374,-15.787073698826134,-15.348765687085688,-16.236560588236898,-17.231304693501443,-18.016945943702012,-19.00718864845112,-19.667405135929585,-19.57264891732484,-19.225654235575348,-18.641617275308818,-19.089825332164764,-18.15524546522647,-17.91988462023437,-16.939747238066047,-16.206992517691106,-15.89690102264285,-16.639143421314657,-17.50103950779885,-17.442997453268617,-16.939436707645655,-17.828924417030066,-18.258284740615636,-19.06940133916214,-18.562959265895188,-17.967058348003775,-18.604069160297513,-19.304124275688082,-19.01834360603243,-18.241467733867466,-19.206334474030882,-20.057746211532503,-19.228925643023103,-18.35143441753462,-18.118235704954714,-17.191764954011887,-16.50070330593735,-15.975469084922224,-16.60839264653623,-15.663146873004735,-14.935717231128365,-14.852204525843263,-15.461254680529237,-15.119464678689837,-15.489904089830816,-15.701832471881062,-16.701182562392205,-16.718403012957424,-15.814898119308054,-16.174755591433495,-16.596486846916378,-15.873616646975279,-15.806628928054124,-15.4844741942361,-15.900974170304835,-16.639963722787797,-15.994576007593423,-15.932033125311136,-16.503135222010314,-15.91689033433795,-16.547106956597418,-16.515723736491054,-16.60600192891434,-16.396628834772855,-16.23890834627673,-16.66471350006759,-16.220655811019242,-16.752201083581895,-15.95992222847417,-14.964283454231918,-14.195603271946311,-13.401499529834837,-12.54760260740295,-12.350603490602225,-12.957485665101558,-13.368262112606317,-13.30549069819972,-12.44399831769988,-12.494574019219726,-13.169699241872877,-13.01839108299464,-12.42953331116587,-12.743013436440378,-12.198181805200875,-12.56850535236299,-11.776398756541312,-11.900898235850036,-11.262285384349525,-11.791230713948607,-12.508636460173875,-11.552663031034172,-11.19655321072787,-11.905001820530742,-11.42429477442056,-11.212376334704459,-10.95168314827606,-11.620961558073759,-10.674826976843178,-9.821233931463212,-9.266944330185652,-9.505262132268399,-9.165374134201556,-9.206415879540145,-10.013778847176582,-10.350746175274253,-11.163827012758702,-11.70167034957558,-11.857200575526804,-11.758230601903051,-10.794168596621603,-11.011902422178537,-10.880310006439686,-11.260087587870657,-12.106024057604373,-12.95933794323355,-12.188592874445021,-11.47543054819107,-11.22342133242637,-10.396704921033233,-10.43307445012033,-11.087800124194473,-11.121154525782913,-11.52696613734588,-10.569553137291223,-11.146046470850706,-10.545559839811176,-10.182163135614246,-10.983739241492003,-11.327873546164483,-11.249426744878292,-10.912602996453643,-10.48689317703247,-10.582710993941873,-10.487198402639478,-10.347001026384532,-10.742361123673618,-10.89649238344282,-10.437966848257929,-10.42834756989032,-11.268316010013223,-10.94825433054939,-11.034140723291785,-10.130643377546221,-9.556333660613745,-8.670521065592766,-8.044810442719609,-7.545493479352444,-6.702990352641791,-5.9550186563283205,-5.011110563762486,-4.128318324685097,-4.137075832113624,-3.573597597889602,-3.1070863623172045,-3.7409473317675292,-3.4392890324816108,-4.2758366810157895,-4.77495379652828,-5.222693057265133,-5.995625707320869,-6.114837737753987,-5.776950526051223,-5.608788745477796,-5.94608430378139,-5.356009021867067,-4.461741280276328,-5.104020977392793,-5.592688100878149,-6.386799877509475,-6.138211368583143,-6.158601250499487,-5.744100070092827,-6.120976503007114,-5.628614138811827,-4.9635022156871855,-5.4498671046458185,-5.100491750519723,-4.72697602910921,-5.367366677615792,-5.691729788668454,-6.590749909169972,-6.297399779316038,-6.713692967779934,-6.887488046195358,-7.725053700618446,-7.355729629285634,-6.359543045517057,-5.753996077924967,-4.982615299522877,-5.876157579012215,-5.916412215679884,-6.003059417009354,-5.813755015376955,-4.912035644054413,-4.198833517264575,-4.338200041092932,-4.963573783636093,-5.182529670652002,-5.765287012327462,-6.610709399916232,-7.444490656722337,-7.582377817481756,-6.93324138969183,-7.274656169582158,-7.1395871876738966,-7.171592545695603,-6.284289825707674,-7.148618680424988,-6.190301804803312,-5.383281850721687,-5.5233259270899,-5.121817560866475,-5.6012446116656065,-5.150691032409668,-4.95818356750533,-4.316117417067289,-5.144567108247429,-4.848210214171559,-4.326751621440053,-4.99195760069415,-5.3759101359173656,-6.250109215732664,-6.016066612675786,-5.619509723037481,-5.669299636501819,-4.81961383856833,-4.264174779877067,-4.160552402492613,-4.288235586602241,-3.4836336597800255,-3.98307105852291,-3.2827419652603567,-2.3547145165503025,-1.8947748835198581,-1.4389112116768956,-1.8186137517914176,-2.1196630760096014,-2.118371339980513,-2.7186230216175318,-3.349498737603426,-2.891584605909884,-2.1625562706030905,-2.951906300149858,-3.281654850579798,-3.5265689520165324,-4.3169857445172966,-4.17097863741219,-5.141350966878235,-4.5612016203813255,-5.125975891016424,-5.649039049167186,-6.22631919151172,-6.048547152429819,-5.408084894530475,-5.329377963673323,-4.466462642420083,-3.92717316839844,-3.726525244768709,-3.4375161081552505,-4.041384780779481,-4.5014990963973105,-4.925430812872946,-5.313920522574335,-4.384895284194499,-4.888055992312729,-4.37593565415591,-5.349091081414372,-5.671367411501706,-6.336428002920002,-5.471680348739028,-6.269529001321644,-6.675411116331816,-7.351957404520363,-7.566610193811357,-6.913195660803467,-6.885599370114505,-6.3070401372388005,-6.476129381917417,-6.766284408979118,-6.0244222530163825,-6.326609440147877,-6.148130660876632,-5.172298270277679,-5.259341836441308,-4.798895465675741,-4.592657188419253,-5.153009771835059,-4.973267025779933,-5.191380342002958,-4.453532591927797,-4.537401949055493,-4.556484672240913,-4.283624023664743,-4.302280398551375,-5.094288416206837,-4.4586879587732255,-3.5168965999037027,-3.15004396578297,-2.937408108264208,-2.6252964893355966,-2.67016419256106,-3.4903571479953825,-3.5865391227416694,-3.1224531047046185,-2.6685169776901603,-2.9119857107289135,-3.279254195280373,-3.06652763299644,-2.3527509816922247,-3.3043675436638296,-3.073151487391442,-3.8391218478791416,-3.3751270724460483,-4.226320642512292,-5.216362243983895,-5.6953560234978795,-5.607180238701403,-5.389559931121767,-5.505478907842189,-5.253170353826135,-4.99859204236418,-5.4047333393245935,-5.332375115249306,-6.187045739497989,-5.23413490364328,-5.148464249446988,-4.760573439765722,-5.412375023588538,-5.053292790893465,-4.921595501247793,-4.703117921482772,-4.644956407137215,-3.8737458079122007,-3.585869211703539,-3.678838377352804,-2.7484146668575704,-2.459717369172722,-1.462792668491602,-2.1273828046396375,-2.36412714747712,-3.3630199879407883,-4.234370458405465,-4.25369890127331,-3.885228451807052,-4.1416238700039685,-3.8065805635415018,-3.7143489937298,-3.516744924709201,-4.167810722254217,-3.7899587992578745,-3.140152209904045,-3.090958207845688,-3.6812087427824736,-3.7565822629258037,-3.5268068271689117,-4.137109918985516,-3.229601374361664,-3.282645031809807,-3.0156782483682036,-3.2083725361153483,-2.6669629653915763,-2.48779387306422,-1.757492241449654,-1.1527635459788144,-0.8497616210952401,-0.033613087143749,0.41232265112921596,-0.2675055009312928,-0.1715248366817832,-0.2714141393080354,0.6156149674206972,0.871788130607456,1.2740263771265745,0.45756978541612625,1.1582683688029647,0.4616568386554718,0.7459518816322088,1.2826021127402782,0.4255686621181667,1.3660075645893812,1.0271879555657506,0.7139295032247901,-0.1273375116288662,0.5028010760433972,0.6426851539872587,1.3192037716507912,1.6277663270011544,2.418302879203111,1.9064502473920584,1.879684227053076,2.743449416477233,3.397792892064899,2.8385328128933907,3.550298028625548,4.5262180981226265,5.311169358436018,5.864008767530322,5.292590348049998,6.152587861288339,6.541346753947437,5.719534510746598,5.23321127705276,5.473632935900241,6.2824320094659925,6.645394220948219,5.860333612654358,5.022726881317794,5.665674781426787,6.058220298960805,6.517689646221697,5.967254593037069,6.3828325271606445,7.248724315781146,6.4122209986671805,5.7003179378807545,5.594394758809358,5.865332047455013,5.361585142556578,5.218098787590861,4.264873969368637,3.3238605544902384,3.427381776738912,2.743486591614783,2.9621006678789854,3.4568433444947004,2.732274010311812,2.8513094959780574,2.882826422806829,3.3166212048381567,3.093126178253442,2.956136286724359,2.969703982118517,2.289254716131836,1.6799228303134441,1.5214339443482459,0.9707969939336181,0.851833226159215,0.8935840637423098,0.5861909370869398,0.4511694423854351,-0.06712734652683139,-0.14050233224406838,-0.9636262366548181,-0.415678845718503,-0.4268198632635176,-0.3672265433706343,-0.24215242406353354,-0.13794481242075562,-0.1737705017440021,-0.1378849553875625,-0.14229542156681418,0.7114113150164485,1.173918689135462,2.092964478302747,2.2996533354744315,2.730064985342324,2.0948003116063774,2.766849226783961,3.6828880812972784,3.5105290855281055,4.09635896794498,4.552052155137062,3.9302530284039676,4.861690194346011,4.034793096128851,3.6121380203403533,4.539076817687601,4.36244555329904,3.7049457980319858,3.2873079339042306,4.0191839202307165,4.60346109746024,4.443959922995418,3.693049983587116,4.658718975260854,5.548841348849237,4.651021706871688,4.256170966196805,4.216175558511168,4.603026449680328,3.845424132887274,3.521090426016599,3.0654143253341317,2.7763517117127776,3.7034139093011618,3.930143428966403,4.123560882173479,4.642483557574451,4.428653538227081,3.5488795577548444,3.964013994205743,4.732925952412188,3.92347553698346,3.469474097713828,4.132710203062743,4.464196086395532,5.1285464079119265,4.506417348515242,4.975023056380451,4.306826322339475,3.525787145830691,2.5465527335181832,2.5462469942867756,2.3147500278428197,2.027755538467318,1.8267274172976613,1.5538372760638595,1.5877262600697577,1.2345361206680536,2.1100110495463014,1.7412189221940935,1.6889173076488078,0.7663750015199184,1.3808584148064256,0.6585739636793733,0.03514400916174054,-0.4749515005387366,-1.1715994128026068,-1.7925547240301967,-1.9887075293809175,-2.739137711469084,-2.9189261849969625,-2.488086901139468,-1.495806258637458,-2.462756110355258,-3.349482646677643,-4.2831797064282,-4.619807415641844,-4.284718781709671,-4.0648624040186405,-4.7514151888899505,-5.3105893027968705,-5.2843259973451495,-6.153441150672734,-5.673466393724084,-5.991929664742202,-6.052448250353336,-5.631815436296165,-5.990233289077878,-5.040574379265308,-5.789862107951194,-6.16173748113215,-6.725002661347389,-5.836757483892143,-6.598434824962169,-6.284563421737403,-6.720335362013429,-5.729462802410126,-4.930028857663274,-5.706838494632393,-6.55416625039652,-5.7094756327569485,-5.390539997722954,-5.985571124125272,-5.539944949094206,-6.510296935681254,-5.808821052312851,-5.543907670304179,-5.699593968689442,-6.618197959382087,-5.757561462465674,-5.395063656382263,-6.2456209203228354,-5.559507169295102,-5.923409707378596,-5.318991247098893,-4.414895933587104,-3.6364549663849175,-3.6153491232544184,-4.42814066214487,-4.601976870093495,-4.263102312106639,-4.466843992471695,-3.852047218941152,-4.600083454046398,-3.7801744462922215,-3.88289604941383,-2.9430977031588554,-2.6845983806997538,-2.1526818885467947,-3.0232981545850635,-3.4646752951666713,-2.754943337291479,-3.5879452382214367,-4.277074506506324,-3.8795433794148266,-3.970502922311425,-3.814994960092008,-3.840471781324595,-4.764864721801132,-4.596674561034888,-4.063952865544707,-4.029622120317072,-4.393793068826199,-5.207461031153798,-4.51359829120338,-4.208877044264227,-4.263106239028275,-3.815126386936754,-4.811326660681516,-5.199570144992322,-5.892851884011179,-4.908906334545463,-4.777503629680723,-4.127130296546966,-4.50291638309136,-4.023773827124387,-3.781327144242823,-3.282032398506999,-3.404883297625929,-2.9907864863052964,-2.331807761453092,-3.151836402248591,-3.099932319484651,-3.3633460090495646,-3.7883734800852835,-2.8740402534604073,-3.2339186212047935,-3.1675755558535457,-3.2130926456302404,-4.036106172949076,-3.1713804956525564,-3.4749194593168795,-2.515700267162174,-1.6666301977820694,-0.8617254090495408,-0.9952147561125457,-1.9036071356385946,-1.8818355365656316,-2.3636419237591326,-2.1795372902415693,-2.1195942303165793,-2.9756285059265792,-3.8700453280471265,-2.9897516979835927,-2.8869971591047943,-2.992416108492762,-3.94900343939662,-4.135101107414812,-3.9334603575989604,-3.2065348494797945,-4.146629558876157,-4.227350902743638,-4.291599754244089,-3.3235034300014377,-3.4215664551593363,-4.088686915114522,-4.549210656434298,-4.702347872778773,-4.414163227658719,-4.235884883441031,-4.723459437023848,-3.980199203826487,-4.814784510992467,-5.039625387173146,-4.06429698318243,-4.462078732904047,-4.593658601865172,-5.017085362225771,-5.634145178832114,-5.396742360666394,-5.251239828299731,-5.212697459384799,-5.314249929971993,-5.169749524910003,-4.208827760536224,-3.8657998559065163,-3.4363377261906862,-3.3072496308013797,-3.0661221775226295,-2.321280671749264,-2.268206540029496,-1.563675930723548,-2.0986767103895545,-2.5850257305428386,-2.910765535198152,-3.2161674057133496,-2.587609617970884,-1.9102626121602952,-1.220188170671463,-1.649309708736837,-0.7746334900148213,-0.6161154401488602,-0.7932864674367011,-1.393704331945628,-0.9342334242537618,-1.4540503406897187,-0.9273949884809554,-0.36072135576978326,0.011689654551446438,0.5320141087286174,1.4675725833512843,2.459607755765319,1.6163248312659562,1.3446993976831436,1.569434224627912,0.8012411198578775,1.407920528203249,1.7388136978261173,2.4887765403836966,2.719547040294856,3.3361461241729558,2.5044572721235454,1.6149594597518444,1.8917884901165962,1.3352024843916297,1.9099505697377026,1.5373015813529491,1.9830620903521776,2.884317484218627,3.6210940568707883,4.554952713660896,3.6593184946104884,3.451391087844968,2.803631176240742,2.316811095457524,1.6872485331259668,0.706476460210979,0.3074937965720892,-0.5715220947749913,0.3016760563477874,-0.05148470029234886,-0.6672783391550183,-0.8739249589852989,-1.4400867382064462,-2.3282448896206915,-2.0946840685792267,-1.7601176709868014,-1.025544903241098,-1.8056991687044501,-2.699957815464586,-1.784308441914618,-0.9515756061300635,-0.7279327651485801,-1.6408119280822575,-0.7062973324209452,-1.0602736305445433,-0.6087188259698451,0.019204224925488234,0.432944281026721,0.29388357559219,0.14144366374239326,0.28338811872527003,0.167217789683491,0.28835445875301957,0.12163600465282798,0.36906448379158974,1.2619805950671434,0.45515512488782406,-0.2901462879963219,0.46985954931005836,0.8064533467404544,0.27749027172103524,0.6617670832201838,0.6336762961000204,0.3049728604964912,-0.46607008622959256,-1.303680581972003,-0.3671931070275605,-0.22529489174485207,-0.06631555547937751,-0.08062733709812164,-0.4756373236887157,0.3368369806557894,-0.5028731659986079,-0.425435327924788,0.24247765634208918,0.6342507456429303,0.10191368730738759,0.9505614535883069,0.49221526784822345,-0.37426033429801464,-0.7725588944740593,0.006061216350644827,0.7021306804381311,1.1747869574464858,0.9532852158881724,0.24490611627697945,0.2655038624070585,0.6661209021694958,0.544695648830384,0.8137933956459165,0.5973218777216971,1.2434182418510318,1.9568332936614752,2.171926411334425,2.4119402053765953,3.1953751505352557,2.802214211318642,3.300958462059498,2.3706426322460175,2.537752732168883,2.852826417889446,2.346442793030292,2.4188947533257306,3.1369679803028703,3.654380878433585,4.471781983971596,5.108133880887181,5.427894219290465,5.6089063682593405,4.805713092442602,4.256503777112812,4.755198034923524,5.301979671232402,4.986917720641941,5.764352607540786,5.432259206660092,6.231720278970897,5.71810446633026,6.603605976328254,5.9020370044745505,6.146120969671756,5.9368258425965905,5.494636930525303,5.207173985429108,5.078287423122674,5.031467431690544,4.074096493888646,3.539554361253977,3.1659433152526617,2.7128415685147047,2.0210965294390917,1.52331527415663,0.9949299120344222,0.0031179706566035748,0.27987685101106763,-0.29655388509854674,0.0781834707595408,0.013794172555208206,0.4722018726170063,-0.47382667008787394,-1.2483154712244868,-1.4344744915142655,-0.9129161299206316,-0.1434608050622046,0.2502226894721389,-0.057247267570346594,-0.2306406507268548,-0.3674200735986233,-0.2985918107442558,0.28979585180059075,0.07482918724417686,0.4654731177724898,0.21110543562099338,0.5358456722460687,0.1538287024013698,1.0194798009470105,1.4808070645667613,1.572111685294658,1.8345797844231129,1.8288195100612938,2.470455037429929,1.784372461028397,2.6827377481386065,1.710702654439956,2.605790754314512,2.0205495739355683,1.5337457028217614,1.164809632115066,1.4181483229622245,1.7778483745642006,2.005566604901105,2.4212417267262936,1.6936214109882712,0.9283380033448339,0.9188908520154655,1.1500651687383652,1.140635757241398,1.4134070058353245,0.6811571419239044,0.9616043954156339,0.42493330826982856,0.6088527026586235,-0.21274844463914633,0.031363438814878464,-0.8924614214338362,-0.9663650542497635,-1.1091685676947236,-1.74146823072806,-2.5270663523115218,-3.303771031089127,-2.374947802629322,-1.7041147649288177,-1.2734729163348675,-1.6353794327005744,-0.9895068123005331,-0.8924139360897243,-0.8752451129257679,-0.9650794267654419,-1.7938002389855683,-1.7843434903770685,-1.2814680151641369,-0.6287061162292957,-0.6412294111214578,-0.2149615278467536,-0.8024227721616626,-0.3477230039425194,-0.2182433851994574,0.292932843323797,0.41476325737312436,0.5687246145680547,0.526273219846189,0.04727766755968332,-0.04145505651831627,0.599444707389921,-0.1247219336219132,-0.936646057292819,-1.8296475280076265,-1.2209366839379072,-1.643516983371228,-0.9849870768375695,-1.0434390185400844,-0.3241314976476133,-0.40123813040554523,-0.00946957478299737,0.4664365663193166,0.7503009461797774,1.410018150229007,0.5133208027109504,0.8233451726846397,0.9570584357716143,1.9130408382043242,1.3695542407222092,1.1700009354390204,0.5342970360070467,1.2903874446637928,2.23422949295491,1.6135940570384264,2.4734410638920963,2.587010288145393,1.9759051268920302,2.2441794332116842,1.8104258021339774,2.7170473053120077,3.4434567191638052,2.8901000134646893,3.049778200685978,3.023221786133945,2.2389148389920592,1.5740568484179676,1.1031596274115145,1.0471072494983673,1.2179407123476267,1.4098138003610075,1.5614423896186054,1.5253092697821558,1.7376295262947679,1.9359459350816905,1.2365844091400504,1.4408529591746628,1.50549984164536,1.3645698158070445,1.8634942108765244,2.765932099428028,3.3981452202424407,4.320878867525607,4.883262223564088,5.039903894998133,4.928259206004441,4.27444278774783,5.248639510944486,5.5636041685938835,6.557224127929658,7.13316249800846,7.669415147975087,8.484888368286192,9.293253105599433,8.752616205718368,9.44573219306767,9.491397764533758,9.286903591826558,9.269496713299304,8.447206480894238,7.5960235758684576,7.8135501174256206,8.008998651988804,8.423006471712142,8.545846661087126,8.334706775378436,9.056351898703724,9.237554665189236,9.114899630192667,10.006049097515643,9.788229407276958,10.767279404681176,11.53185304813087,10.541714024264365,9.781319363974035,9.821842140518129,9.0858833193779,8.28818040760234,8.16197620658204,8.829772199038416,8.83498914539814,9.807506690733135,9.784299702849239,10.579507891554385,10.467558884527534,11.148429319728166,10.378414615057409,10.66553083108738,11.626029319595546,11.206783089786768,11.689877468626946,10.819819419644773,9.881260884460062,10.00282489322126,9.840309423860162,10.755143996793777,10.340550888795406,10.347679132595658,9.391588051337749,9.819383811205626,10.546509047504514,10.388484574388713,9.582838733214885,10.408070758450776,10.844597212504596,10.680271651595831,10.955102365463972,10.856654743198305,9.961675324477255,9.963770878966898,9.30693874321878,8.979005455505103,9.41520370868966,9.16841127537191,9.541812369599938,10.066798754502088,9.58834210736677,8.617752371355891,9.014694057870656,9.496151468716562,10.294921786990017,10.64003366138786,11.261029076296836,10.287779811304063,9.902646208647639,10.33139523351565,10.788194781634957,11.405132649466395,10.862895861733705,10.924246042501181,10.494098961818963,10.026966089382768,9.710026659071445,10.242855866905302,10.009629825595766,10.631018330343068,11.531733370386064,10.738684730604291,10.73020454775542,10.222443606704473,9.423840544652194,9.51340601220727,9.184715180192143,9.577693237923086,10.297125085256994,10.732915127184242,11.534162687137723,11.653884431347251,11.956220195163041,12.931336684618145,12.19251267798245,11.551195176318288,12.52515426883474,12.250615588854998,11.864861181937158,12.6335693243891,13.075698503758758,12.270893901120871,11.340557916555554,10.589635168202221,10.546669609379023,10.436585960444063,9.478821823839098,10.013048786204308,10.76317802676931,9.789910925086588,9.387066504452378,10.357752099167556,9.533733423333615,9.770796337164938,9.933306534774601,9.970797141082585,9.371105742640793,8.73269663983956,8.040842515882105,8.056815880350769,8.569025985896587,9.018394919112325,8.40242009377107,7.950777621008456,7.701704451348633,7.71298467926681,7.656769862398505,7.267410391476005,6.820616064127535,6.091971092391759,6.784668714739382,6.655965198297054,6.626818738877773,7.30473399348557,6.535212534945458,6.3588403053581715,5.74721284257248,5.055992871988565,5.729633186478168,4.880007709376514,5.683223612140864,6.210414341185242,7.168826279696077,8.038675874471664,7.48014176543802,7.111774476710707,6.69136722618714,7.40241918945685,6.468833262566477,7.434932973701507,8.267811509780586,8.542290386743844,7.796166918706149,6.805227010976523,6.168492243159562,5.93610155582428,5.933884700294584,5.614272758830339,5.421089797280729,6.338193003553897,6.125078772660345,6.960634337738156,7.228995572775602,7.615709582809359,8.075134493876249,7.316580340266228,7.638882098253816,8.503802281804383,7.547342327423394,8.167895867023617,8.06167133525014,8.982310032472014,9.430447966326028,8.493464536499232,9.446411707438529,9.922075845301151,9.781439771410078,10.639045708347112,11.258347494527698,11.272016296163201,11.86813829280436,12.795899326447397,13.185024882666767,13.760747753083706,14.506660521030426,14.291169165167958,14.558862689416856,14.535801657475531,14.734605334233493,14.871010155417025,15.750408020336181,14.953533368185163,14.885935608297586,14.691114764660597,14.327211156487465,15.20205566380173,15.671662628185004,16.279861639719456,15.31950159650296,14.573992412537336,15.46071829693392,14.747058566194028,14.15617886511609,14.25248419586569,14.788515664171427,15.570038117002696,14.580438914243132,15.032314938493073,14.038291072938591,13.567743993829936,14.301760348957032,13.873708634637296,14.336663250345737,14.619795182719827,13.90898581314832,13.867926461156458,13.723266044165939,14.514987042639405,15.067906311247498,14.66187502676621,15.197576014325023,14.687515238765627,14.490769463591278,13.720453791320324,13.528798471670598,12.679394104052335,13.369165840093046,13.192923351190984,14.128915916197002,13.452572468668222,13.986259000375867,13.69266674341634,13.065719267819077,13.182806998956949,12.562653100118041,12.68291284609586,11.976957092061639,11.285685169044882,10.809167795348912,11.409340477082878,10.601097716018558,9.813042680267245,9.036051432136446,9.488815181422979,9.785045862197876,9.824966663960367,10.363003960810602,10.502950580324978,11.082145342137665,11.395226125139743,10.425812479108572,10.674916660413146,11.371168195270002,10.443086289800704,9.68504746677354,10.160727752838284,9.16316729132086,8.47989992517978,7.608678703196347,7.874425524380058,7.414204371161759,7.794459522236139,8.481533855665475,9.222750001121312,9.230369598604739,8.555763027630746,7.787434214260429,7.186952348332852,6.714771380182356,6.1164720742963254,6.240339409094304,7.026499313302338,6.032814449630678,6.038362276274711,6.84944800240919,5.864735538605601,5.852277104742825,5.814263122156262,5.567786309402436,5.332257341127843,5.437087278813124,5.137411951087415,4.548803925514221,4.704443730879575,4.9495506305247545,4.794160876888782,5.590132617857307,5.251574018970132,4.331921231932938,4.61813173815608,4.646296696271747,4.878296899143606,4.597651925403625,4.559140074532479,5.0618548206985,5.762463134713471,5.723493931815028,6.021370666567236,6.716572222765535,6.495115207508206,6.460973515640944,6.19223267165944,6.669158762786537,6.516955094411969,5.643047709483653,6.178200537338853,5.876086276490241,6.360871042590588,7.326124286744744,7.606796098873019,7.527248077560216,7.891056015621871,8.040581964422017,7.775704665109515,7.14868156099692,6.520605135709047,5.973504974506795,6.924849379807711,7.179763519205153,7.9430750156752765,8.185336467344314,7.2419614107348025,7.7040298520587385,7.259580799844116,8.100848157890141,7.775927884038538,8.257714862935245,7.304185788612813,7.062402407638729,7.786856078077108,8.648273616097867,8.391157152596861,8.091462276410311,7.4757767659612,6.955830755643547,6.308048219420016,5.317397888749838,5.196673598140478,5.137101407628506,4.789480545558035,4.6564056454226375,5.506225406657904,4.998180444352329,5.91724341455847,5.556633306201547,5.460942649748176,6.404909040313214,5.640711680985987,5.999895678833127,5.124531965237111,5.117407846730202,4.949825992342085,4.367870959453285,4.342996777500957,5.211892532650381,6.115826040040702,6.710545559879392,6.484523139894009,6.536830042488873,6.260269363410771,6.327451977413148,6.2917812946252525,6.775873094331473,5.777252194937319,6.671467887703329,6.36970122391358,6.106160047464073,5.5493741715326905,4.6000353381969035,4.082517763134092,3.967878811992705,3.827337635215372,4.1718728938139975,3.893350686877966,4.651954215019941,4.491701319348067,4.69623694755137,4.645441196858883,5.592981150839478,5.109457100741565,5.338668336160481,6.145454612094909,6.0540811419487,6.448387312702835,6.190249500796199,5.693738503847271,6.556125467643142,5.657012811861932,5.427664460148662,5.1062583602033556,4.969875147566199,5.670057678129524,6.591698168776929,7.203121250029653,6.634952423162758,5.673936790321022,4.973322973120958,4.830297356005758,5.282317046076059,4.927683965303004,5.876810355111957,6.7335141422227025,7.265919641125947,6.712943764869124,7.373459129128605,8.088036484550685,7.171064827591181,6.257364880293608,6.155965078622103,6.07419900316745,5.322983105201274,4.972510612104088,5.820654324721545,6.1057234653271735,6.683612325228751,7.429466153495014,7.336344863753766,7.512098266277462,8.133859268855304,7.896584521513432,8.039760071784258,8.285379337146878,8.977536496706307,9.164865450002253,9.78539423365146,9.823625179938972,9.67396596353501,9.667808199301362,9.05199708417058,9.753357493784279,9.351221671327949,9.920661028008908,9.404500267002732,8.953299858607352,8.638418863061816,8.268431980162859,7.410016350448132,6.724491762463003,7.565031150355935,6.938287885859609,7.753969107288867,8.681354241911322,8.264210479799658,7.833839949220419,8.699877130333334,7.815843570046127,7.56943054869771,7.475041665602475,7.069111257325858,7.144366507418454,6.865393233951181,7.245461042504758,7.800660320091993,7.8639790075831115,8.289773320779204,7.552944877650589,7.664164941757917,8.421654797624797,8.960054744966328,8.154962449800223,8.925444392021745,9.420894345268607,8.47339880792424,8.164745170623064,8.417576859239489,8.45759040210396,7.695670420303941,8.350941244512796,9.221012848895043,8.548627067357302,9.197136051487178,8.410138366743922,7.673634239472449,7.079240833409131,6.930299368686974,6.108595614787191,6.944713344331831,6.980385583825409,6.633448624517769,6.342472577467561,6.610134433954954,7.395210877992213,6.878950408194214,7.215928198769689,7.38284671260044,7.532923230435699,6.81746535981074,6.637067556846887,7.6157687632367015,7.585283978842199,7.449259507469833,7.637153802905232,7.533943628426641,6.6842758152633905,6.069039594847709,7.01891162013635,6.790086477063596,7.320855848956853,6.696180222090334,7.528500900603831,6.728455502539873,6.683243338018656,7.333773109596223,7.790897168684751,7.571948599070311,7.690345048904419,6.956207113806158,7.4831554079428315,8.223689648322761,8.27085587196052,9.26863602316007,8.954227828420699,9.313021178357303,8.76505561126396,9.470424625091255,10.360586281865835,10.856778372544795,11.743287719786167,11.067980177234858,11.704729391261935,11.381822925526649,11.718471440952271,12.120760490186512,11.158969226293266,10.24009745940566,10.640697976574302,10.730195329990238,9.936771903187037,9.52102031884715,10.492287731263787,10.14513742690906,11.065401067957282,10.302204159554094,10.677814370021224,11.34861938143149,12.067482222337276,11.85402009403333,11.79128755396232,11.71289141708985,11.520793468691409,11.919362292159349,12.865886381827295,12.673950150143355,13.114610410295427,12.345063728746027,12.80466427328065,13.231135393958539,13.072691448498517,13.856476009823382,14.21352089336142,13.88678384013474,13.292273900005966,13.900224270299077,13.849573540035635,14.156017179135233,14.049293781165034,14.199787822086364,14.505961756687611,13.692047662101686,14.660883087199181,15.084968730341643,14.195599405560642,15.054551824461669,16.038808861747384,15.655054608825594,16.569461518898606,16.78719656309113,17.33803398674354,17.765554511919618,16.912154036574066,16.053750064689666,15.230669633951038,15.433184892870486,16.0956406109035,15.9269400825724,15.828689128160477,15.908996959216893,16.49039286421612,16.967824400868267,16.383699680678546,17.095514737535268,17.288441674783826,16.682892926968634,16.689661111682653,17.483895934186876,16.487128330860287,16.50085872784257,17.314679798204452,17.10458805412054,17.248190948273987,16.67301100678742,16.814769573044032,16.259349095169455,17.169977007433772,16.516176268924028,15.7402927223593,15.761671810876578,14.940807335544378,15.842833571135998,15.766726107802242,15.677475283388048,15.13186739757657,14.15954517154023,13.252868300769478,13.599371553398669,13.075045970734209,13.44921615254134,13.361081703566015,13.785298715345562,12.821740988176316,12.418738341424614,12.424559419509023,12.881504332646728,12.583722265437245,11.78189351549372,11.250365228392184,11.833444794639945,11.111658282577991,11.65534024965018,12.392711063381284,12.869079319294542,12.707177962176502,12.598532126750797,13.053298914339393,13.64314014930278,13.813744644168764,13.730788794811815,13.223876878153533,14.085999929346144,14.406129519455135,14.594650354702026,15.185268951579928,15.902723255101591,16.69233275949955,15.909711671527475,15.985597863793373,16.384456526953727,15.993893873412162,16.536973597947508,16.531038674060255,15.58017593761906,14.741989945061505,15.724570547696203,15.459442259278148,15.080433839932084,14.683719814755023,13.770837037824094,13.24872092436999,12.49013598356396,12.9885038966313,12.485622621141374,13.284957002382725,13.274274008348584,12.483124394901097,12.448295703157783,11.453730220906436,10.785635506734252,11.612351872492582,11.328590102028102,11.843913988675922,11.122224819846451,11.597064179833978,11.278185482602566,10.924990670289844,11.211691091768444,10.940251904539764,10.489989501424134,10.99427115637809,10.189192408230156,10.135025432799011,10.260617759078741,9.72166288504377,9.615448930766433,9.838163543492556,9.301069223321974,8.984396518673748,8.572631444316357,8.36443749582395,7.564854787662625,8.16844256175682,8.127506953664124,7.308959186542779,6.494914514012635,5.81814819900319,5.3995514484122396,5.602837582118809,4.787901742383838,5.283821472432464,4.387042569927871,5.235627505928278,5.970640189014375,5.259319367818534,4.81294879084453,4.316418557893485,3.4118804028257728,4.009505589492619,4.595285847783089,4.503661448135972,4.780287304427475,5.0274202255532146,5.648664001841098,5.185278257355094,4.186422154773027,3.219503169413656,2.971683543175459,3.1776077463291585,4.174094274174422,5.090403622481972,6.07886474346742,6.853207825217396,7.2545912778005,8.2511219647713,8.349900207016617,7.7550718314014375,7.915350363589823,8.582530139945447,7.8554194313474,8.812628088518977,8.666433031205088,8.055719215422869,8.54292465094477,8.457957013975829,9.419019338674843,9.81422962481156,9.890820783097297,10.699211715254933,10.405895367264748,9.821621730923653,9.476901708170772,10.076062452979386,10.331839025951922,9.699131175410002,9.270161577500403,10.245850977487862,10.8646184746176,10.279616271145642,9.718904960434884,10.089446868281811,9.844894253183156,10.33108452660963,9.707125617656857,9.368992323521525,9.06765624275431,9.010444840881974,9.904863961972296,10.370015556924045,9.608982059173286,8.749335994943976,9.522963873110712,8.659997826442122,8.038996159099042,8.566826661117375,9.07594120176509,9.31847886973992,8.549082193057984,8.87490828614682,7.914887373801321,8.062462380621582,7.220596009865403,8.116790297441185,7.526113302912563,8.457703755702823,9.371729990001768,8.437334133777767,8.65244283247739,7.980708125513047,8.540033757686615,8.669123236555606,9.25075837271288,9.715956198517233,9.115898237098008,9.158395948354155,9.133513690438122,9.663735427428037,9.836645130068064,8.839602927211672,8.233736023772508,8.681375120766461,9.186255907639861,8.923744616564363,9.055579014588147,9.21236150758341,9.186841202899814,9.521376353222877,8.910329762846231,9.700029693543911,9.789547197986394,9.466786986216903,9.878478828351945,10.430583964567631,10.923166029620916,10.682072381488979,10.343506386969239,11.33383232075721,10.60192220332101,11.454708791337907,11.475427508354187,11.956776916980743,12.10801339847967,12.597162842284888,12.457397863268852,11.631197190843523,11.855690353550017,11.485810016281903,11.430458572227508,11.354812145233154,10.551367407198995,10.241311125922948,10.157030653208494,9.28753113746643,10.138472678139806,10.277392709162086,10.305504319258034,11.19969081832096,12.128329980187118,11.778716593515128,10.950098098721355,10.895247132517397,10.61714792251587,10.402764045167714,10.984996566548944,10.66300601605326,9.978448346722871,10.204527142923325,10.950840044301003,10.991103287786245,11.981258767656982,11.285227057058364,11.337146833539009,11.88075104355812,11.506517132278532,11.916233284398913,12.635873647406697,12.739726463798434,13.250081358943135,14.128456462640315,14.89528097724542,14.522380349226296,13.821186401881278,14.43837219197303,13.759880790952593,12.876300951465964,12.106927273329347,12.653249829541892,13.065971197094768,13.01449550036341,12.18307531811297,11.47208367753774,11.170370284467936,10.791592085268348,9.899956732057035,9.505310464184731,10.3283358826302,10.525524879340082,10.368256146553904,9.817060983739793,9.035581936128438,9.147644512355328,9.464775218628347,8.678008744958788,8.530756894964725,8.64564071316272,8.120332298334688,7.31000728206709,6.519790882244706,6.15149557357654,6.9280544077046216,6.249118455685675,6.965039934962988,7.860124471131712,7.500016385689378,8.066295363940299,7.216319474391639,6.443766197189689,6.591920778620988,6.8129993067123,6.642725063953549,6.455373677890748,6.3757642093114555,7.315685385838151,7.638465194031596,8.579508734866977,9.551850071642548,10.109422805719078,11.07215328142047,10.698287637438625,11.36254598107189,11.111653775908053,10.163218188099563,10.145059412810951,9.55218823440373,9.864215816371143,10.484314393717796,9.65463131153956,9.268831882160157,8.895752431359142,8.953792517073452,9.532572444528341,9.831333591602743,10.468300606589764,10.670180773828179,10.884863202925771,10.610088530927896,10.76088280370459,10.945166258141398,11.917808202560991,12.505722324829549,11.920095534063876,11.959102807566524,11.845493557397276,12.042400108184665,11.271947228349745,11.7569395811297,11.304346449673176,11.985381186474115,12.498691103886813,11.850808028597385,12.159993715584278,12.609532957430929,12.405936164781451,13.162798835895956,13.719981306232512,13.274794835597277,13.83474597753957,14.453514608554542,15.253598792478442,14.346815426368266,13.663117306306958,14.072755987755954,14.378352134022862,13.593860906083137,13.764681362081319,12.809911624994129,12.534925570245832,12.780128369107842,12.329270768910646,12.002239789813757,11.140110749285668,11.057119167409837,10.902042613830417,11.8303806418553,11.724942687898874,10.860062610823661,9.978895826730877,9.645380596630275,10.497122584842145,11.349139248020947,12.288753386121243,11.749536779243499,12.450938190799206,12.525844550691545,11.684053937904537,12.465196400880814,13.055319666396827,13.138553406577557,12.527941873762757,13.1832892941311,13.322900622617453,12.39796749688685,12.018783959094435,12.769510709680617,13.75557408388704,14.700319232419133,15.551232928410172,16.460634970106184,16.167381681036204,15.246168638113886,15.714859725441784,15.196760362014174,16.05351318512112,17.023449495900422,16.326058231759816,15.393257102929056,14.987402780912817,15.764900512993336,15.640041497536004,15.23531736806035,15.596514131408185,14.96767722722143,14.099240433890373,13.665114677511156,14.657155063468963,14.978173399344087,15.787450859323144,15.463483195286244,14.854653656482697,15.21611736761406,16.133220391348004,17.03145697293803,16.350906040519476,16.75578991882503,15.939350307919085,15.545386041048914,15.024242169689387,15.508473133668303,16.10103579238057,15.403961414005607,16.292606444563717,16.5429353765212,15.846043485682458,16.175075461622328,16.37388147506863,16.80183084961027,16.3406303380616,16.375773356761783,15.667224762961268,16.31842219410464,16.959615351632237,16.657336005475372,17.548030650243163,17.068012782838196,16.25623317901045,16.231676429510117,16.63606744725257,16.68420044751838,17.375176989473403,16.606729083694518,15.668990577105433,16.567415370605886,16.299322127830237,15.874765262473375,16.361832754220814,16.241561146453023,16.396309128031135,16.386480077635497,16.07495854096487,15.562319375574589,16.058023361954838,15.26022942783311,14.441865846980363,15.425899161957204,15.145996142644435,15.643732089549303,14.813154342584312,15.13022843748331,15.933723598718643,16.48672255501151,16.201486022677273,17.066278892569244,16.63024831796065,15.847287381533533,15.373248437419534,14.651166499592364,14.975584342610091,15.820100232493132,16.46141178533435,17.065367141272873,16.567616682499647,16.088296667207032,16.15333663439378,16.287952470593154,16.620156719814986,16.530182366259396,16.5576383266598,17.202951724175364,17.23587794182822,16.619319245684892,16.31422149669379,15.408227721694857,16.266902653500438,15.846495415549725,16.32681916700676,16.36068156035617,15.958424266893417,16.308026775717735,15.492379492614418,14.707246155012399,13.944993511773646,13.88368311850354,14.096451059449464,13.75786751974374,14.308602681849152,13.731136617716402,14.053180383984,14.78733421722427,14.58045783964917,13.683839289937168,13.473668949212879,13.371828575618565,14.21282031852752,14.59709315141663,13.684619198553264,13.948427927680314,14.03002001112327,14.838493747171015,13.971874746959656,14.075380215421319,14.34445063304156,14.728152900002897,15.069709662813693,14.335410209838301,14.368815636727959,14.455674357246608,15.11834203125909,15.7185407015495,16.502681554295123,15.796159577555954,16.544327336363494,15.8046412775293,16.467899541836232,16.334494211245328,16.283125657588243,16.807897654362023,17.07116498844698,16.968553613405675,17.92948284186423,17.90294613270089,18.374818450771272,17.734715136233717,17.17011591186747,18.164593052119017,17.35310136852786,17.304801477119327,18.109023257624358,18.88065833877772,19.30064558982849,19.762770651374012,19.28881268715486,19.618036197964102,19.50928533123806,19.750000237021595,19.965866298880428,20.526226204354316,21.331110642291605,21.315238051116467,20.802236186806113,21.019090046640486,20.213339888025075,20.250092377420515,20.013273281045258,20.10792235052213,20.033499248791486,19.816278903745115,20.284491440746933,20.471061676274985,19.48844527732581,18.64436308434233,18.944435273762792,18.50298248976469,17.935730471741408,18.330352735240012,17.661775862332433,18.00830761436373,17.039082237984985,16.339442609343678,15.478363868780434,15.81675533670932,15.461293644271791,14.485909939743578,14.187041520606726,14.213305795099586,14.050687988754362,14.444159989710897,14.942825901322067,14.777486592065543,14.008240291848779,13.043269896414131,13.66044778143987,13.649725335184485,13.318141677882522,14.209588506259024,14.950070574879646,15.6192402462475,14.834334688726813,14.952653334476054,15.891610783990473,16.50139452982694,16.76150295464322,17.735080991405994,18.069364084862173,17.341479380149394,17.46724020410329,16.634421336930245,16.334036422893405,16.287411591038108,16.188281709793955,16.29246670147404,16.910426096990705,17.803783925250173,18.4363546743989,18.990099315997213,19.58114210003987,19.1019688276574,18.56000906508416,18.89912003558129,18.88411551201716,17.887142821680754,18.608373710419983,18.180625648703426,18.467509179841727,17.922654062043875,18.3695844928734,17.648742481600493,18.184982816223055,17.571582270786166,18.26802025642246,19.1609022798948,18.17761836433783,18.042489717248827,18.46092026354745,17.552785293199122,16.64352527819574,15.67929613403976,14.786507013253868,14.189796645659953,14.981257508974522,14.152773461770266,13.242720078211278,14.086810631211847,14.116984621621668,14.330658292397857,14.682025409303606,14.103284603450447,13.126735402271152,12.91109984042123,13.017138440161943,13.34345353487879,12.775887687690556,12.15583935007453,11.743685399647802,12.37336750747636,11.695324154570699,11.388146684039384,11.5403304239735,12.31947002839297,11.412758694496006,10.54432884324342,11.014617301989347,10.251858106348664,11.146102593280375,10.388179911766201,10.771434392314404,11.483001192566007,10.92140034493059,10.930771642830223,10.58000656682998,11.238180314656347,10.743176121730357,10.307853781618178,10.835160056129098,11.134794031269848,12.120231398846954,12.152253156062216,11.858978816308081,12.214288125745952,13.168077708687633,13.36828506924212,13.225469250231981,12.420615382026881,12.867654636036605,13.187252713367343,13.190000446047634,12.750482027418911,12.118708880618215,11.953504337463528,12.693923216313124,12.478218621574342,12.793356540147215,12.989461984019727,13.84417745610699,13.700492136646062,12.819331135135144,13.459165351465344,13.141847142484039,12.898841816931963,12.05681414110586,12.757606386672705,12.284549657721072,12.577552694827318,13.570446291472763,13.717859016731381,14.002095148433,14.207726403605193,13.848644025158137,13.778221029788256,14.06213031290099,13.552142104599625,14.39044327661395,14.765274671837687,15.5002067303285,15.751907294150442,15.267968802247196,14.930893721058965,14.38657855661586,14.140985089819878,13.198401538655162,12.694324474781752,13.406814077403396,14.165946270804852,13.43765347218141,14.222944158595055,13.604179417248815,13.327623575925827,13.448150736279786,14.06300656311214,13.166640343610197,12.247811114415526,12.40403943322599,13.148282752837986,12.922826059628278,13.17821385152638,13.760406260378659,14.25042481161654,13.60036484291777,13.207666342612356,12.60980625404045,12.384116627275944,12.391644339542836,11.773096076678485,12.557768510654569,12.838152482174337,13.227498980239034,12.805145415477455,13.57787356339395,12.610707416664809,13.461140293627977,13.77280852990225,14.312428789678961,14.071822211612016,14.688211546745151,13.790911200921983,12.927224186249077,13.161424712277949,12.301326937042177,12.863978924695402,12.225595822092146,12.654352266341448,12.873771529644728,12.786976425908506,13.701707999687642,14.580516017973423,14.768086383119226,15.204777990467846,16.090868537779897,15.466443964280188,15.828029142692685,15.884624131023884,15.199187922291458,15.092251347377896,14.275850588921458,15.022103086579591,15.097985688131303,14.16998387221247,13.309204244986176,12.40235741995275,11.863263512961566,11.660085982643068,12.302101367618889,13.03339993301779,12.938378891441971,12.039875059388578,11.355629682540894,11.85943199088797,11.416016006376594,11.433518616482615,11.99093365855515,12.773886286187917,12.354673016816378,12.282902929000556,12.930023997556418,12.443774905987084,12.198589239735156,13.006461501121521,13.187635509297252,12.38338979613036,13.173126972746104,12.582868741359562,12.434110524132848,11.690985929686576,11.578888846561313,11.838729592040181,12.15798521740362,11.480836774222553,11.270926074124873,12.22349208779633,11.806544238701463,10.988840630277991,10.330662018153816,10.783581097610295,10.806609015911818,11.337029208429158,11.854336289688945,11.12324885232374,11.888593162875623,12.380454029422253,13.164938979782164,12.873004151508212,12.269657919649035,12.574001702014357,12.674454792402685,11.774717587511986,12.00847809156403,11.154861775692552,11.671323134563863,11.149612014181912,10.496085620485246,9.826353658922017,9.45446701394394,9.110545189585537,9.734029771760106,9.019643401261419,8.342019048985094,7.630261153448373,7.6070018680766225,6.997011168394238,7.009370110463351,7.9810395166277885,7.786351179238409,7.931768652051687,7.458561148960143,6.999565660953522,7.124735734425485,7.293714460916817,6.871859482955188,6.321493709459901,6.634710578247905,6.470918767154217,6.340517654083669,7.154404556378722,7.447712904307991,8.198787633795291,8.192049522418529,7.712948672473431,7.128897785209119,6.559157958719879,5.991146303713322,5.672149197198451,5.7625029920600355,6.186378062702715,6.091913315001875,6.751255727373064,7.397220790851861,6.498470405116677,5.6074634324759245,6.5438298070803285,6.2572046387940645,5.862956305034459,5.7626226637512445,5.033026144374162,4.255050362087786,3.7231601546518505,4.599559089168906,4.927943891379982,5.083186117466539,4.250722322613001,4.220520145725459,4.782171923201531,4.547988971229643,4.97035290626809,5.302014326211065,4.89155104663223,4.512573506683111,4.351316348649561,3.9380090828053653,4.735002882312983,4.086896977387369,3.2307576164603233,2.3320129704661667,3.115172660443932,3.531865596305579,3.883389577269554,3.9723089267499745,2.996095485519618,2.1274250322021544,2.6562696169130504,2.102343583945185,1.4516265480779111,1.4637368507683277,1.9400982013903558,1.735908194910735,1.063527103047818,0.609928707126528,0.4615492527373135,1.3789255782030523,1.771485258359462,1.3381485315039754,1.247313128784299,0.9117133184336126,1.1777063901536167,1.9094297122210264,2.831371860112995,2.768506098072976,2.3896744986996055,1.8516342490911484,2.5443144743330777,3.494213046040386,3.2436251402832568,3.430763636250049,3.186751978471875,2.9002302237786353,3.6692808126099408,3.105396142695099,2.48450749181211,1.4860349502414465,1.20160973072052,0.3369182348251343,0.7687723897397518,0.08858382422477007,1.069147224072367,1.5241110622882843,0.5809631859883666,1.1109824040904641,1.2297034300863743,1.5134854335337877,1.5182992317713797,1.8260362157598138,1.0159990317188203,0.8007319895550609,0.8189132721163332,0.9358924152329564,1.0430980054661632,1.6883540218695998,2.338533239904791,1.7552591734565794,2.0971661689691246,1.385402837768197,2.1696332558058202,3.148853008169681,3.16465508332476,2.6293397108092904,2.3441205602139235,2.0784739116206765,1.8340366091579199,2.5952892508357763,2.7496302584186196,2.771171578671783,2.6431370028294623,3.082280356902629,3.1224747910164297,2.1871658992022276,3.179291235283017,4.002678152639419,3.7163936658762395,3.968908063136041,4.326442721765488,3.935146045871079,3.0062774275429547,3.732998530846089,4.222673048265278,5.008885583374649,5.9959705816581845,5.6101049259305,5.9904602048918605,6.058351747691631,5.846318997908384,5.5751544260419905,6.380433578044176,7.369178654626012,7.9947300110943615,7.387933208141476,7.844963651616126,6.864790891762823,6.4169360981322825,6.479044199921191,6.244671516586095,7.204594583250582,6.823694984428585,6.869612871669233,7.07159086689353,6.268630804959685,6.496946615632623,6.104877460747957,6.261934683658183,6.186688393354416,6.0644444464705884,5.831119077745825,5.470722323283553,6.211500306148082,5.6514203902333975,4.865588662214577,4.930452981498092,4.936796604190022,5.218623730819672,5.648394171148539,6.49153265170753,6.163401378784329,7.145585801452398,6.700113016180694,7.554657619446516,6.75244182953611,6.669130830094218,7.567579344380647,8.438236091285944,7.848924163263291,8.067985246889293,9.036918067838997,9.54879251588136,8.710025703534484,9.647578133270144,8.847323929425329,8.210990730207413,8.20822431286797,7.423964513000101,7.208508214447647,6.986477693077177,7.957828156184405,8.628043784759939,8.548991148825735,9.087875951081514,8.4206523001194,7.437742141541094,7.94014408858493,7.223551624920219,8.112385475076735,8.61230455385521,8.889439629856497,8.372083773836493,8.206557469908148,7.92265899060294,7.8044198378920555,6.8270518546923995,6.918355432804674,6.11507805949077,6.99956810194999,7.990852866321802,7.819950135424733,8.20046863751486,8.166348940692842,7.521055932156742,8.450382948853076,7.813762077130377,7.858394379261881,8.372130762785673,9.048427388072014,9.34145614458248,8.871169934049249,8.68524642335251,9.308091627899557,9.151780094951391,9.338935501407832,8.524583784863353,9.364320055115968,8.77707351744175,9.07410569069907,9.018488549627364,9.400968401692808,8.444613863248378,8.363584712147713,8.040108087472618,8.586334136780351,7.6762729291804135,8.507156053557992,8.497027000878006,8.579945703502744,9.083632647059858,9.255536177195609,8.457176215481013,8.60540009336546,7.849818609189242,7.840402937494218,8.657524422742426,9.48596603423357,10.26717305323109,10.376414229627699,11.144217504188418,11.240434392821044,11.222361739259213,12.044227878097445,11.07847955962643,11.951488062739372,11.442696578800678,10.533914276398718,10.29375356156379,11.10313528869301,10.89977631624788,10.784088583663106,10.292621816508472,10.31089468114078,9.766485481522977,10.420439931098372,10.222420540172607,9.454430537298322,10.149030754808336,9.620779464021325,9.487227528821677,9.988239970989525,10.3012639679946,10.161274272017181,10.545289024710655,10.276702144183218,10.513371052686125,11.242862300481647,11.5827975156717,11.105699960608035,11.84459885628894,11.8233603797853,11.402934849727899,12.260367717128247,11.884033592417836,11.691531215328723,11.358263547997922,12.229023728519678,11.855311042163521,10.935701283160597,11.499302554875612,11.223390996921808,11.736464955378324,10.943323517683893,10.200567486230284,10.518384504597634,10.928709907457232,11.451187192462385,10.891115879174322,10.32378120906651,10.965649090707302,11.173185152933002,11.58263628790155,10.610643479507416,10.674304660409689,11.591454287525266,12.54367165081203,12.533728823531419,13.27344449562952,12.941266357898712,13.427786187734455,13.824098594486713,14.376469518523663,13.715678700245917,13.174922386649996,12.988797964062542,12.409420631360263,12.378684499301016,12.246671684551984,13.19618519069627,12.89773693215102,12.169778313022107,12.95548255275935,12.43221237976104,11.844359583221376,11.350720094051212,12.28978510107845,12.387343720067292,12.518604271113873,13.063993733841926,13.580827387515455,12.908550660591573,12.88303257478401,12.799922361969948,13.491516298148781,13.34296870790422,13.978956514038146,14.06576403370127,14.165447891224176,14.697131169494241,15.202050585765392,14.681559737306088,13.92787832673639,13.007831735536456,13.03485818579793,12.396737738046795,12.489861527457833,12.304429376032203,13.24326063413173,13.772128992248327,14.529803135897964,15.445943087339401,15.231674291659147,15.075171189382672,15.295379730407149,15.985769696068019,16.8399138180539,16.91383222071454,16.296047868207097,15.412975413259119,15.026248128153384,15.081771422643214,15.34249764494598,15.190738059580326,14.80186193343252,14.57142136991024,14.834285314194858,13.884960541501641,14.71603202726692,14.715120309498161,15.07976212957874,14.108375417999923,14.877229701727629,15.679173838347197,15.497908334247768,15.707243070937693,16.40463506616652,16.616628947667778,16.273644813802093,16.555603270418942,16.20807749358937,16.72750266455114,17.311449532862753,17.323383250273764,18.16503570554778,18.136468674521893,18.04421801911667,17.841204641386867,16.903134908992797,16.87400969862938,17.48941890988499,16.861533714458346,16.10537452250719,17.047214690130204,16.294906542170793,16.524990173988044,17.491597757209092,17.958029380068183,17.650177681818604,16.923995826859027,16.020251910667866,17.003462058492005,16.290976606775075,16.905526770744473,16.13761887094006,16.26800596062094,15.471414324361831,15.31843084981665,15.507461937144399,15.81045002862811,15.75867664348334,15.742214918136597,15.214501365553588,15.928868357092142,16.84655413404107,15.85093892738223,16.686706939246505,16.325271955691278,15.682603477500379,15.62393046868965,15.893394646700472,16.19006656156853,15.550790834706277,16.250380750279874,16.854080867022276,15.882614350877702,16.79140521818772,17.67137955315411,17.09109287476167,16.907092289067805,17.136478891130537,17.5292838816531,16.60309400036931,17.57607983238995,17.304651902988553,16.788125484716147,17.054502494633198,17.736068016383797,18.72501715319231,19.344686827622354,19.603514382150024,19.68520049750805,19.31633040960878,19.418667774647474,19.098076068330556,19.196638797875494,18.812457082327455,18.22366218175739,18.787591197527945,18.52461573574692,17.60133673204109,17.23311059270054,17.188088988885283,16.894623738713562,15.963133814744651,16.318541958928108,16.036949377972633,15.325990949291736,15.774182417429984,15.722971805371344,16.60675010178238,17.47042407654226,16.93975898390636,17.892649871762842,18.692251458764076,17.973209423478693,17.397517879493535,17.840717976447195,17.79399458086118,16.934297103900462,16.919919109903276,16.124436086975038,16.668087927158922,16.466754531487823,17.18121854495257,16.764408570714295,17.670638856012374,17.142692673951387,17.957597381435335,17.345400750637054,18.22325339121744,17.89655530685559,17.37347897142172,16.789424354676157,15.848195079248399,15.343382015824318,15.062788548413664,15.021530603058636,15.138474606908858,14.674788244999945,13.885463793762028,13.197886844631284,12.719401399604976,11.791861197911203,12.640176554210484,12.892678485717624,12.839862992987037,12.154133399482816,11.763352107256651,11.744190933182836,11.003963670693338,11.211621519643813,10.880703446920961,11.855311213992536,11.225572929251939,10.285342067945749,11.270447560120374,12.082623159047216,11.325980903580785,11.138758416287601,10.940440838690847,11.663936369121075,12.17291213851422,11.984107723925263,12.428573963698,12.022832615301013,13.019034896511585,13.428788326214999,12.487988161854446,12.146996878553182,11.575036081019789,11.405546790454537,11.96301810303703,11.87630015797913,11.960112120956182,11.744272775948048,11.645641548093408,11.781432853545994,10.96076224045828,10.772862082812935,10.631125810090452,9.841523780953139,9.425197110511363,8.604424577672035,9.559139849152416,9.834714153315872,10.447958218865097,10.0748824714683,9.773894025478512,9.741403935477138,9.24795687617734,9.278872601222247,9.501108289230615,8.509904312901199,8.56662076106295,8.1130467094481,8.05150370951742,7.977229047566652,8.308114179875702,9.278362032026052,9.14616736304015,8.297286287415773,8.78810715675354,8.677331364247948,9.109170159790665,9.583028253633529,8.684491106774658,8.603913854341954,9.302297092974186,9.703637409489602,10.392499288544059,9.69437643000856,9.301855269353837,8.915640894323587,7.944684045854956,8.11842517228797,8.825898674316704,9.342676490079612,9.507860360201448,8.774687916506082,8.645263578277081,8.553168872836977,8.416294663678855,7.971965645905584,7.163379529956728,8.064462201204151,8.210462786722928,8.818139162380248,8.669600384309888,8.374843179248273,8.343971052672714,7.530563966371119,6.753498234786093,6.134521901607513,5.241074207238853,5.708615971729159,5.8536249925382435,5.9220360345207155,5.820913104340434,5.735560121946037,6.132899498101324,6.201752511318773,6.490254491567612,7.061089783906937,6.855094013269991,5.930493053980172,5.495484456885606,4.581087193451822,4.525059268809855,4.457719933241606,5.3601676896214485,5.108246271964163,4.132323794532567,3.175636997912079,2.993168091401458,3.843199282884598,3.315574533306062,2.3611869788728654,2.1522882501594722,1.6067280783317983,1.4131581578403711,1.7217026627622545,0.9802340674214065,0.6964492094703019,0.18733395682647824,0.4256391692906618,0.6561548444442451,0.7844510227441788,0.4632138116285205,-0.43875479605048895,-0.42433723574504256,0.3831772105768323,1.2240901845507324,0.5255533801391721,-0.07671331521123648,0.22074277233332396,1.0517675569280982,0.37553723622113466,0.8085007537156343,-0.1649523163214326,-0.718468707986176,-0.05593095300719142,-0.09189863596111536,0.574833273421973,-0.1381223346106708,-0.001284000463783741,-0.9210880263708532,-0.036228436045348644,-0.6960506965406239,-0.9149910942651331,-0.06292014755308628,0.40180168207734823,-0.44010893162339926,0.007235104218125343,-0.47650328325107694,-1.1694139861501753,-0.534437881782651,0.4070044532418251,0.2944498579017818,0.9918697094544768,0.7377808867022395,0.7584973475895822,0.5596673400141299,1.1972453091293573,1.4001687821000814,1.9746217732317746,2.172012770548463,2.4998451061546803,2.417799879796803,1.8983969753608108,2.3507625833153725,3.1066724904812872,3.3076874357648194,3.1767102810554206,3.4614151073619723,3.3758050678297877,3.7301175706088543,3.505039368290454,3.27996481442824,3.6659866417758167,4.398000170942396,5.225888780783862,5.590625709854066,6.493356867227703,5.807319358922541,6.353418167214841,6.767726361751556,7.620923670940101,6.814218019600958,7.0156281953677535,6.859514303971082,6.180515684187412,5.5391355054453015,4.575698717497289,5.307775540277362,4.4054916789755225,4.80271216109395,3.8053256403654814,4.776457575615495,5.747046429198235,5.470225598663092,4.875001923181117,5.372642194386572,5.008183545432985,5.217596087604761,6.210760829504579,5.230501341167837,5.890900326427072,5.633366588968784,6.347317257430404,7.248408584855497,8.08519842196256,7.574156597722322,7.4931600680574775,7.365658009424806,6.957018851768225,6.718775076325983,7.420390089973807,8.357337863184512,8.505319559946656,8.212310682516545,8.847179477568716,8.123459899332374,8.565516470465809,8.681977265980095,7.903553135693073,7.7838306478224695,7.646041264291853,8.365781218744814,7.75997038371861,7.809543963521719,7.457342569716275,6.874036165885627,7.780731489881873,8.640793148893863,8.047009295318276,8.572189026977867,8.665157636161894,9.101038757711649,8.795331362634897,9.011363585013896,9.51871260162443,8.918440770823509,8.8404273185879,9.556613119319081,9.663256549742073,10.21742147160694,10.900807198602706,11.623442319687456,12.444198910146952,12.345899514853954,13.060123089235276,13.498696375638247,13.3289710348472,12.604893801733851,12.436579866334796,11.843152556102723,10.916773159056902,10.178255066741258,10.837752581108361,10.233178140595555,10.387305279728025,10.922841240186244,10.512124493252486,9.648687569890171,9.950073794927448,9.312956519890577,9.465028422884643,9.957133767195046,10.39669847022742,10.783818705007434,11.616840770933777,12.136059834621847,11.303521842230111,11.132246204186231,11.24986947607249,11.613620096817613,10.780688957776874,10.016103454865515,10.236444256268442,10.42353806272149,9.747766682412475,10.13529337476939,10.21990412287414,10.65296781109646,10.630088126752526,10.140153478831053,10.498381858691573,11.167174031957984,11.655081555712968,10.992233752738684,11.085342813748866,11.578781927004457,11.799232171382755,12.314644044730812,11.593293920625001,12.45527880359441,12.498484942130744,12.297667745966464,12.0410623899661,12.484635529108346,11.581836053635925,11.035972616169602,10.932665642816573,10.419768447056413,11.376786992885172,11.509239420760423,11.391488355118781,11.0260170516558,11.307090809103101,10.343452360015363,11.287990902084857,11.536001365166157,12.150320692919195,12.61327128438279,11.81999059394002,11.023017418105155,10.824270715937018,11.25574344303459,11.970473984256387,11.934710558038205,11.545555139426142,12.483899903483689,12.872164089698344,13.497752823401242,13.975383087992668,13.294609710108489,13.973986993078142,13.006258962675929,12.101680563297123,11.628526526503265,11.86941082496196,11.29613892128691,11.79488722095266,11.39063045475632,10.985921740531921,11.470324412919581,11.434520264156163,10.519458677154034,9.866286167874932,9.063103348016739,9.349386955145746,8.40471099037677,9.159948899410665,9.55795091856271,10.307492425199598,9.61506020044908,8.629195181187242,8.256081176456064,7.6475795255973935,7.4025430819019675,8.187647925224155,8.338774787727743,8.245200566481799,8.457186370622367,7.490974823478609,7.872546858619899,7.69917753431946,6.728075725957751,6.465268767438829,7.050886714365333,6.276981173548847,6.567753167822957,7.110176100861281,6.471885425038636,6.976456208154559,7.958614729344845,8.801688012201339,8.673336428124458,8.874751537106931,9.200342713855207,8.32448254711926,8.976942968554795,9.138483031187207,8.455259513575584,9.354250403121114,10.01484504621476,10.056748080067337,10.783069745171815,10.840934900101274,11.644795420579612,11.524555031210184,12.032918820623308,12.779686574824154,13.118497763294727,12.372258835937828,12.825942927971482,11.8817107565701,12.19819433055818,11.774856697767973,12.69142903899774,12.679032928775996,12.062186205293983,12.840141703840345,12.465728253591806,12.527479933574796,13.015592770185322,12.468381428625435,13.122264084871858,12.43757992098108,11.683732993435115,11.878272983711213,10.920600717421621,9.94926004903391,10.201686745509505,10.339053179137409,11.12609858205542,10.282334900926799,10.46075921645388,9.887492942158133,10.602126386016607,10.692195423413068,10.09852917632088,9.103564165066928,8.232474083080888,7.889023214112967,7.780191260389984,7.507285535335541,7.231152402702719,6.322243696078658,6.731640817597508,6.891608263365924,7.035392585676163,6.920786101836711,7.377837023232132,6.543447793461382,6.6452828561887145,5.81750621041283,6.1768102422356606,5.781946231145412,6.3289857362397015,6.444226301275194,7.276663324330002,6.779766748193651,6.9827285395003855,7.065825884230435,7.0856771022081375,7.268276530317962,6.97263375017792,6.78691380796954,7.5328748458996415,7.767776006367058,8.39783002436161,7.410128701478243,6.575167404022068,6.475230093114078,7.373577417805791,6.64738592505455,6.552376426756382,5.612822760362178,4.654974723700434,5.566430881153792,5.826928733382374,4.896603425964713,4.99188413657248,5.897296981886029,5.428607380948961,5.187449963763356,5.798370955511928,5.535956379957497,5.704957120586187,6.2211728394031525,6.049859694670886,5.460387028288096,4.998177363537252,4.345569231547415,4.442206954583526,3.6019247504882514,3.4516131444834173,4.304038478527218,3.9833695008419454,4.1891358331777155,4.897950757294893,5.22763102222234,5.932668052148074,5.206146559678018,4.43794180592522,3.4549130713567138,4.127222745679319,4.800867547746748,4.852371729910374,5.699863323010504,6.023650163784623,6.632708088029176,6.112841522786766,5.486847461666912,5.534616161137819,4.947280865628272,5.741919651627541,5.027912588324398,4.312012348789722,4.519216162152588,5.274989554658532,5.797773605212569,5.314784890972078,5.712399123702198,5.244343169499189,5.081521181855351,4.708170725032687,5.1813876065425575,5.28245900478214,4.80669272551313,5.422805147245526,5.106910027563572,5.509318289346993,5.743444069754332,5.649381164461374,5.612399994861335,5.59692547749728,6.145335398614407,5.554772426839918,5.752044751308858,6.385690465103835,7.091622101608664,6.89690196281299,7.659574466757476,7.548807821702212,6.609872709028423,7.139834238681942,6.312596099451184,6.679540406912565,6.985699960961938,6.205307076685131,5.9663269077427685,6.684655488003045,6.326519075781107,6.905658003408462,6.40172466263175,5.906162383500487,6.6251010480336845,7.611128987744451,7.4414600427262485,8.251609954051673,8.026667402125895,7.8421148816123605,8.413988558575511,8.272513673640788,7.491946439258754,7.709470329806209,7.696221098303795,6.814838903956115,6.050103654153645,5.744732586666942,6.343196921981871,6.585305817425251,6.08707410749048,5.911914794240147,5.6243177726864815,5.240295382682234,4.855147939175367,5.179861586075276,4.365606616251171,3.8117011613212526,3.7177066756412387,3.7415437642484903,4.34736178163439,3.9990180055610836,4.049074356909841,4.503502809908241,4.65115554491058,3.806439687497914,4.5114267519675195,4.865209982264787,4.127646955661476,4.110131270252168,4.034420406445861,3.271523875184357,3.636853026691824,3.6011021942831576,3.4419184466823936,2.4919097176752985,3.3175640334375203,3.5666263406164944,3.1454257699660957,3.7851438596844673,3.3592736683785915,4.136181188747287,4.788535105064511,5.108184094540775,4.551449945196509,4.068654674105346,4.791957841720432,5.624049886595458,5.524989468511194,4.891846943181008,5.643206617794931,6.439526667352766,6.215042382944375,5.657951205968857,5.321070760022849,5.364618660882115,5.9974463526159525,5.043657344765961,4.6350383926182985,4.146805560681969,4.599815498106182,5.471213559154421,5.058201352134347,5.33698154008016,4.7559540825895965,5.214441753458232,5.075488103553653,4.087193654384464,3.884666219819337,3.8160616219975054,3.672616650350392,3.8063604217022657,4.753919294569641,5.016582463867962,5.96358884871006,5.615342664532363,5.519386486615986,5.365336041897535,5.427468502894044,5.115671867039055,5.809807256795466,5.260842728428543,6.1376983360387385,5.691656987648457,5.9187994678504765,5.309849000535905,5.720899212639779,6.367670880164951,6.570775341708213,5.930453058332205,6.845212666783482,6.467256071511656,7.067588159348816,7.516012117732316,7.0149210430681705,6.505754943937063,7.061480116099119,7.5555268451571465,7.480360120534897,7.62656297814101,8.543964342214167,7.618709411937743,7.665347936563194,8.151587448082864,7.159487408120185,6.78829968161881,6.273924568668008,6.815443631261587,7.2750780317001045,8.158377452753484,9.04057698417455,9.60715324850753,8.98161881742999,9.919705571606755,9.843637395650148,9.470778701361269,9.795466095209122,10.30540899047628,10.06113958824426,9.360751072410494,9.635705963242799,9.198413289152086,8.401002851314843,8.78867300087586,8.93914529774338,8.291923990938812,7.745943073183298,8.665439234115183,9.428119400981814,9.254731454886496,10.148945045191795,10.772674738895148,11.05577088939026,11.793658962473273,12.156072268262506,11.999903155956417,12.601246845442802,13.30235093832016,13.383613218087703,12.927080487366766,13.920170387718827,13.648465291131288,12.767819186672568,12.107184107415378,12.399027208797634,11.588392349891365,11.24385209614411,11.25541372783482,10.823653534520417,11.052246761508286,11.26340497750789,11.403238475788385,10.852556605357677,11.383330090437084,10.935882167890668,10.677785960026085,11.62223641294986,10.840381591580808,10.104420498944819,11.100704469718039,11.663008426316082,11.952130747493356,12.873327581211925,12.839956723619252,11.881736089475453,10.888048026710749,10.160173812881112,10.849483091849834,11.053233678918332,11.440283538307995,12.380337879061699,12.103368623647839,11.474768206011504,12.219923334661871,12.770745030138642,13.288512082770467,12.724849649704993,13.182268765754998,12.590344625059515,13.436607997398823,13.448855879716575,13.65225356305018,13.83749443711713,14.65593550959602,15.468151627574116,14.67307308735326,15.44828683976084,14.557955410331488,15.451787019148469,15.089984621852636,14.523890003561974,14.017080340068787,14.908006043639034,14.565330093726516,14.447241263464093,14.108089183922857,14.326763452030718,13.906306180171669,13.08310995157808,12.64223929028958,12.596291970927268,13.405279209837317,13.932736274786294,13.040690444409847,13.558347534388304,14.229388841427863,14.492447901982814,13.575831339228898,12.833100957330316,12.778807820286602,13.57889697374776,14.467320301569998,14.78167410613969,14.717239731457084,13.839705063961446,14.306346312630922,15.249284465331584,14.65643889317289,14.565506227314472,14.552336976863444,14.907590785995126,13.964380553923547,14.093606097158045,13.975657890085131,13.289614430163056,12.582022092305124,11.64466831786558,11.780899171717465,11.582945093046874,11.062502237036824,10.237524687312543,10.297669179737568,11.11707900185138,11.99742395663634,11.30275178514421,10.978234544862062,11.303413182031363,11.468276657629758,11.523623722139746,11.773317656479776,12.459499400574714,13.01272825198248,12.084553403779864,11.181062037590891,11.005634602159262,11.66922069573775,10.760441476944834,11.11918769031763,10.302408372517675,10.040866713505238,9.893677170854062,9.33364969259128,9.401799925137311,9.885416339617223,9.552489689551294,9.230920550879091,9.472419104073197,9.78202460007742,10.665964221116155,9.93404300417751,10.345947265625,10.99084381852299,10.516801396384835,9.730156591162086,9.356649674009532,8.796038668602705,9.529669710900635,10.464000970125198,11.398271984420717,10.979559851344675,11.901943928562105,11.419936670456082,12.088161325547844,11.850959280040115,11.44384010694921,10.693163740448654,11.604232962243259,11.977489129640162,11.374526407103986,11.277626513969153,11.118261344730854,12.110137688461691,12.707783931866288,12.089136430528015,11.6365305185318,11.853974364232272,12.494958986528218,12.810175377409905,11.986288845539093,12.816251552663743,13.452630972489715,13.21072755055502,13.700151359196752,14.089280837681144,13.125362848397344,12.534994020592421,12.420821379404515,13.315482794772834,13.055086170788854,13.26466810470447,13.510396005120128,13.785128113348037,14.39517097081989,15.091322691645473,14.474128920584917,15.379518896341324,15.858803824521601,15.30653811385855,14.48530084034428,14.91469149151817,15.352713953703642,15.989634523168206,15.929965218529105,16.12163922470063,16.703080967999995,17.470176595728844,16.818540145643055,16.375008604489267,16.228608122095466,15.676391288638115,16.11277504870668,16.643989166244864,16.988724583294243,17.05871993629262,16.997554247733206,16.749089861288667,16.748495902400464,15.764576733577996,15.642526960466057,15.222916199360043,15.515550225507468,15.712394003290683,15.83806360187009,16.546210501343012,16.081195848528296,15.272626804187894,15.680949700064957,16.433558060787618,17.30729964468628,17.639378366060555,17.049223373644054,17.915744447149336,17.76138930954039,17.91514005465433,18.45370461931452,18.09310308471322,18.068865805864334,17.57008452201262,18.529552917461842,18.29816887388006,17.44493962591514,16.584612540900707,16.286841614171863,16.124393242411315,16.432733577210456,16.505162362009287,15.989306082949042,15.432131091598421,16.426333710551262,15.658993875142187,15.666558441706002,15.559929228387773,15.383517731912434,15.070926004089415,14.128084811847657,13.704472804442048,13.343566809780896,12.661915302276611,13.535761300474405,14.21301924297586,13.658212744165212,13.589818411506712,13.217512140516192,13.845926235429943,14.577236126642674,14.911581542342901,15.56812247633934,15.416986615397036,15.154581117909402,14.504590524826199,15.473799566738307,15.161759052891284,14.371851163450629,14.17887744680047,14.990384529344738,15.728118753060699,15.214141971897334,15.009285403881222,15.440945057198405,16.032889490015805,16.581627698149532,17.30259275296703,16.535551999229938,15.598618481773883,15.275439980439842,15.29118629079312,15.090283886995167,14.742834277451038,14.105520197656006,14.48075033025816,14.209373654332012,14.744866783265024,15.374781883321702,15.620188219007105,15.953716883901507,15.22709476808086,14.741519703995436,13.868752508889884,13.111661358270794,13.530561532825232,13.087860929314047,12.283777734264731,12.69947331212461,11.81936549860984,12.572118286974728,12.65260484116152,11.66817043023184,11.771822934504598,11.588777218945324,11.926594367716461,11.461518821306527,11.148986392654479,11.893653273116797,11.11479706177488,11.360657069366425,10.729836452752352,11.47797768516466,10.975885489489883,11.659871838521212,11.481200954411179,11.526032710447907,11.38337408611551,11.73813230311498,10.852682935073972,10.650102042593062,10.286500121466815,10.216947047971189,9.844013182912022,10.224214765708894,10.135563016403466,10.75837096106261,11.245966017711908,11.61010573990643,12.062809629365802,12.250120587646961,13.152908730786294,12.70426029106602,13.458693152293563,14.17667111614719,14.025460415054113,14.87619607290253,14.888919482473284,15.818753649480641,15.899892781395465,16.03060958115384,16.480013869702816,16.332060207612813,15.512451136484742,15.811748059466481,15.425436798017472,16.341554799117148,16.691317239776254,16.56400660192594,17.38823499297723,18.007251693401486,18.806323498953134,18.340630220249295,17.632124425843358,18.602495966944844,17.845528489910066,18.294586153700948,18.90869958512485,18.600696141831577,18.93645168049261,18.94343640934676,18.01814852980897,17.946290495805442,16.982432526536286,17.04877025866881,16.661773800849915,16.16891324426979,16.002350478433073,16.83064270624891,17.15848087426275,17.741954288445413,17.31001970730722,18.046437703073025,18.710222659632564,18.794320518150926,19.731615522876382,20.64060197630897,20.11903861258179,19.289034998510033,18.770804330240935,18.432202994357795,19.41256968304515,19.245788457337767,19.689681272022426,19.312622404657304,18.628808132838458,18.580734621267766,18.56187043664977,18.366586378309876,17.73966041347012,16.867559254635125,16.159326758235693,16.75267969444394,17.2953568440862,17.659469253849238,16.75112938741222,17.289699997752905,16.846533438190818,16.79679914051667,17.420191005337983,17.361527868546546,17.292623835615814,17.233147219289094,17.992912787012756,17.535655771382153,17.67115894239396,16.808124588336796,17.22532015107572,17.75959882233292,18.313324086368084,18.466977823060006,18.094316937495023,17.878964968957007,18.763993353117257,19.312622890342027,20.03584069479257,19.843261023052037,20.616727265529335,21.210124474484473,20.62618048209697,20.999640968628228,21.78294270997867,22.754730387590826,21.802584018092602,22.0658759791404,22.129633926786482,22.10728996200487,22.881735590752214,23.28347645374015,23.8985269353725,22.91880405275151,23.226307869888842,24.01359142595902,24.017488535493612,24.354531422257423,24.782233093399554,25.59902874659747,26.245202242862433,26.533613860607147,26.886613135691732,26.398824671283364,26.4729936234653,25.508103288244456,26.064694182481617,25.603353230748326,26.247336872387677,25.99536143615842,25.55036752577871,25.354885667562485,26.116340471897274,26.504517825320363,25.787764337845147,26.08632434112951,26.32496489631012,27.006054127123207,26.112534393556416,25.577323934063315,25.86323682963848,26.283743874169886,25.820426142774522,25.15198423154652,25.046082844026387,25.540182079188526,25.938958201557398,26.75962189817801,26.20896179927513,26.84764748532325,26.85431098844856,25.975603352766484,26.618530335836112,27.249815206974745,27.660370668862015,27.735718897078186,27.19331498723477,27.61669852817431,26.898197174072266,27.021628888323903,27.85454513737932,28.035210814327,27.559206269681454,27.8759876890108,27.11401057848707,27.30041664186865,27.192643892019987,26.290914901532233,25.95988395391032,25.862621259875596,26.655510124284774,26.754802871495485,27.001499857753515,27.53714226698503,27.12774204974994,27.81062929518521,27.39700325531885,26.861826250329614,27.716973498929292,27.203832738567144,27.907609653193504,28.840191770810634,28.968318162485957,28.085337120108306,28.84669823385775,28.00651599885896,27.574643475469202,27.30096864560619,27.29775991803035,27.939468828961253,27.450361422728747,28.221927055623382,27.902803115546703,27.46890726359561,26.748774627689272,27.515443914104253,26.579702058341354,25.742108820471913,25.392468724865466,25.83067142032087,26.532017579767853,27.066497636958957,26.137357576284558,26.003498229198158,26.188313038554043,26.272441683337092,26.50943455612287,26.214537081774324,25.36123492149636,24.508734322153032,25.419457100797445,25.39623782550916,26.05862258374691,26.117485041730106,26.87778499862179,26.37050504749641,26.198709768708795,25.981814462691545,26.805070641450584,25.878158884122968,26.651492710225284,26.43101796321571,25.862271276768297,26.688548220321536,27.0847024070099,26.99467872455716,26.72794368583709,25.74773731874302,26.47999986819923,25.96540735848248,26.76402758108452,27.06101170834154,26.111438646446913,25.658425837755203,24.9352281591855,24.483618956059217,24.190568377729505,24.659093619789928,24.852076490409672,24.211318810470402,24.557722447440028,23.864362904336303,23.979445058852434,24.581783504225314,25.029012087266892,24.175473366398364,24.29614537814632,23.982003055512905,24.27874322561547,23.555218756198883,23.96029827557504,23.240261235274374,23.74322897195816,23.31777636287734,22.367486636154354,21.686706411652267,22.34150498965755,22.24845225084573,21.321064149495214,22.091388411819935,22.12679295660928,21.908317422959954,21.685802476480603,22.311161699704826,21.37543070456013,20.76372999884188,20.861257973127067,21.190906738396734,21.897236614488065,21.188912825193256,21.558816245291382,22.245392059441656,22.61210705852136,22.001893424429,22.499552059918642,22.89374062232673,22.027542530093342,22.77110250433907,22.416844643186778,22.21158020105213,23.011083740275353,23.4311665664427,23.566335316747427,22.805433397181332,22.20359821897,22.270105755422264,21.478266862221062,21.594032576307654,21.531821126118302,21.752583542838693,22.32045120652765,23.308040709700435,23.44102824246511,23.150169261265546,22.68515056045726,23.00160993495956,23.452069982420653,24.302641121204942,24.81708130054176,24.171168690547347,24.093542092945427,24.60401122039184,24.726251838263124,23.976366872899234,24.909561600536108,24.96918955957517,25.628653737716377,24.986062908079475,25.499021790456027,25.49706710781902,25.85149387596175,25.71599044231698,26.712009347975254,26.401246132329106,25.83004521112889,25.174213028978556,25.52602748107165,25.278031399473548,25.772080990020186,26.647019932512194,25.840285554062575,25.206679679919034,25.28082985430956,24.414714713580906,24.251321353949606,23.262283151503652,23.899365509860218,24.8006909256801,24.97647964861244,25.178621033206582,24.7709813718684,24.017668046057224,24.98064468614757,25.933435974176973,25.981289214920253,25.593600624240935,26.026889678556472,25.411919944453984,25.551496185828,25.15735470643267,24.570643292274326,24.000800314359367,24.37589408364147,23.432666561566293,22.64649999095127,22.167202710174024,21.76349426759407,22.13579745683819,23.134731519967318,24.05328638665378,23.600148648954928,23.235108482651412,23.40219759568572,24.371432586573064,23.81857257988304,24.23565530171618,24.713427025824785,24.363588745240122,24.231933071278036,24.828797094989568,25.123517779633403,25.122268041130155,25.767521444242448,25.486201875843108,26.473848527297378,26.568695154041052,27.1899309232831,27.819196060765535,28.51685984013602,27.614457595627755,27.616093786899,27.16576142515987,27.761687830090523,28.280676087830216,27.36582662491128,27.697458364535123,27.85739193763584,27.213328561745584,27.185414342675358,27.868892474099994,26.88332471298054,27.0946655375883,26.356545442249626,26.877389259636402,26.270244338549674,25.654548538848758,25.122281924355775,25.366703363135457,24.529764303937554,23.767954673152417,24.476007195655257,24.55520320031792,24.982255880255252,25.969530679751188,26.54027747316286,25.75717262318358,25.419748958200216,25.043644837569445,24.38010870432481,24.968541697133332,25.04300552047789,24.554337339941412,25.320989813655615,24.831449911929667,25.621329062152654,25.03475760575384,24.913824912160635,25.585674873087555,25.741440056357533,26.124045958276838,25.993023976683617,25.23994659073651,25.303968403488398,25.08055208204314,25.706661600619555,24.88701492222026,24.349124860949814,23.384409894235432,23.081953440327197,23.027233068365604,22.528298241086304,21.677919012028724,22.64196897856891,23.344181410502642,23.553744017146528,24.45213214540854,24.00526474788785,23.952492497395724,24.658847058191895,23.814856812357903,23.614195251837373,24.47839984530583,25.458758396096528,26.024339471012354,25.2937305951491,24.345243296120316,24.272399603854865,24.046095449943095,23.406641603913158,22.881234525237232,22.718696675263345,22.525613103061914,22.901888626627624,22.342196371406317,22.439177042338997,23.328278680332005,22.668988410383463,23.174158385489136,23.54396255966276,24.030433371663094,24.2255634451285,24.485285530332476,24.93897718237713,24.27052072249353,24.07045656023547,24.637663847301155,24.20192690938711,24.767700598575175,24.734932634979486,23.816851045470685,24.079567085485905,24.228710315655917,23.995943557471037,24.812367788981646,24.256603033747524,25.125896513462067,25.553590283263475,25.919835039414465,25.547919795382768,24.650251608341932,25.124236783012748,24.369505605194718,23.74838358676061,23.3834747527726,23.863795890007168,23.559583440888673,23.351278161164373,24.083256634883583,24.018884357530624,24.47416839050129,24.47518717404455,24.039901367388666,24.143288023769855,24.114841188304126,23.5734501327388,22.736495246645063,22.86777538852766,22.591475600842386,23.529737032484263,23.495153088122606,24.10020543402061,23.749343384522945,24.309887178707868,23.42935328464955,22.669336614664644,21.880692369304597,22.41804838599637,22.155125668272376,23.058272728696465,22.84637051774189,22.305374642834067,23.09045388503,23.91723792348057,23.730657740030438,23.400815913453698,23.24558457126841,23.301929276436567,23.773329075891525,24.560833104886115,23.958246229682118,24.58824876183644,24.24545184150338,24.43163580307737,23.976009893231094,24.710425610188395,24.477292507886887,24.489524305798113,25.331561119761318,24.77447483036667,24.997306905686855,25.410669763106853,24.750589698553085,24.240185131318867,24.472646326757967,23.481113027315587,24.215692178346217,23.64797922410071,23.807124468497932,24.191457450855523,23.67305102199316,23.619710254482925,24.355812657158822,25.011097371112555,25.914930305443704,25.804122579284012,25.14309401391074,25.90367433615029,26.386233374476433,25.673419002909213,26.508458882104605,25.687308692838997,25.904553797096014,26.471818695310503,27.289214330725372,26.80673542059958,25.877321641426533,26.827629365492612,26.44359561474994,26.44484352786094,27.202951995190233,27.087024666834623,27.33527625305578,27.382849792018533,27.085382295306772,26.360599972307682,25.657613104674965,24.816273706499487,24.989579737186432,25.348407274112105,25.185255344957113,24.554152916185558,23.560279951430857,23.85981998220086,23.537356555461884,23.8068566294387,24.620066515170038,25.342474073171616,25.483310240786523,25.71082155732438,25.225844611879438,25.869699521921575,25.871487049851567,25.516677046194673,25.043958012014627,25.06918602064252,26.051650933455676,26.047408118844032,25.930679039563984,25.964198405388743,25.910071117803454,25.381901901680976,26.37313210591674,25.6000178870745,26.32994845882058,26.312922693323344,25.73619078658521,24.916908098384738,25.77156385453418,26.610539186745882,27.43399452790618,27.009402187541127,27.95957432128489,28.953110384754837,28.30311238532886,28.48360575316474,27.759572831448168,27.200953440740705,27.541305256076157,27.56481056753546,28.029968910850585,28.093110226094723,27.41702188877389,27.705460976809263,28.41606037085876,29.064550529699773,29.394547436386347,28.64003117196262,28.73893423844129,28.606431254185736,28.899756830185652,28.03401057003066,27.771974402479827,26.974267448764294,26.827560131438076,26.739869341719896,27.46290531475097,28.18131067790091,27.846510220319033,27.94793339446187,28.36406254163012,27.429931607097387,26.891692782752216,27.126921836752445,27.0782888289541,27.579718325752765,27.55925960885361,27.142471170518547,26.633149691857398,27.46173745766282,28.25383280729875,28.89407337550074,27.997954117134213,27.054689837619662,26.46687469771132,25.650579307228327,25.059825495816767,24.54881705297157,24.15558315999806,23.96353068528697,24.10521181114018,24.386100533418357,24.997731938958168,24.162876054644585,24.541879640426487,25.17352205934003,24.36479429155588,23.95953359780833,24.912086255382746,24.85764671722427,25.358569292817265,25.818580611608922,25.168008886743337,25.532532257493585,24.866306567098945,24.227306686807424,24.015815091785043,24.76930881710723,25.286726439837366,24.932472717482597,25.3009127904661,24.96041252138093,25.68948683515191,25.282031232025474,25.17311006039381,24.83574948552996,25.448646542150527,25.37115034321323,26.0053930869326,25.109870937187225,24.84861543076113,25.442604788579047,24.74651562096551,25.672855462878942,25.142970921471715,26.05107751581818,25.65934815723449,26.16438804799691,26.230012455023825,27.114447785541415,26.617423627525568,26.29022951424122,26.070787345059216,26.605075113475323,27.01999944029376,26.20965728163719,25.884877869393677,25.26102361874655,25.517999213654548,24.68697110004723,24.849886294919997,25.144994931295514,24.543391072191298,23.986154284793884,23.808013221714646,23.211358439642936,22.63430603267625,22.709458050318062,21.976320487447083,21.62283767433837,21.656222386751324,21.20736504625529,21.88045595632866,22.81830141087994,23.142080237623304,23.72840402275324,22.934054853394628,22.04209906514734,23.00370281096548,23.734742070082575,23.67923016147688,23.609876892529428,23.732653914019465,24.343790708575398,24.692520092707127,24.494252394419163,24.164225624408573,23.94723104685545,24.470366809982806,23.62283224472776,23.94087408995256,23.54598135687411,24.087508463766426,24.495602697134018,24.828451935667545,25.599881537258625,25.038208382669836,24.92644405318424,24.04538614396006,24.27479684026912,24.767837926279753,24.296120604500175,25.177012105938047,24.370870265644044,25.088146649301052,24.17829373618588,24.381175629328936,24.550272412598133,24.818380414508283,24.944251292850822,24.036585388705134,23.529840868897736,23.419851614627987,23.849281621631235,22.99909726344049,22.12414190080017,23.0002918317914,23.23208696115762,22.859888546634465,22.858871228527278,21.989322369452566,22.106107553932816,22.77473140321672,23.35566881718114,22.593834657687694,22.79917792370543,22.35102328285575,23.0903087281622,23.609774078708142,22.624089864548296,23.62148411432281,23.041753684636205,23.546485995408148,23.421801474876702,24.107349566649646,24.70568582834676,25.6710236184299,25.839423860423267,25.99874176364392,25.30768482061103,24.94729440053925,25.564903538674116,25.531088592018932,25.518762931227684,25.369727376382798,25.195254252757877,24.684844486881047,24.332186070270836,24.57972836541012,24.532558132894337,24.93093010270968,23.969446506351233,24.599744935054332,24.47862554807216,25.372248669154942,24.44026001356542,24.245817448943853,24.781079414766282,24.43397435825318,23.53691215859726,24.10596689255908,24.867926220409572,24.423183959908783,23.831265348475426,24.70352834230289,24.27186177484691,24.746399767696857,24.914927463512868,23.920548959635198,24.806943944189698,24.84211043268442,24.532637258060277,25.4896375737153,24.56100329523906,24.604453700594604,24.850335501134396,25.43448348948732,25.26111885625869,25.13566220132634,25.028255610261112,24.103643467184156,24.061280756723136,24.867312367539853,24.972661484964192,24.29095017304644,24.592474192380905,25.582768351770937,26.117925034370273,26.44292667787522,25.65354841761291,24.850897951982915,25.69905783282593,25.204802595544606,24.40120253805071,24.38605984253809,25.112963481340557,26.09596108365804,25.13814234221354,25.09614302404225,24.288009426090866,24.219459901563823,24.55418639536947,23.87537712045014,23.21405723504722,24.169581349939108,24.461204485036433,25.13823176268488,25.91134390886873,25.798774616792798,26.143922644667327,26.7124932250008,27.527509113308042,26.622246532700956,26.801002427004278,27.644747776445,28.19234722154215,27.952627911232412,28.653501371387392,29.385870813857764,29.1510499548167,28.326431390829384,28.888806181494147,29.823506771586835,29.931636231951416,29.640227547846735,29.01470771525055,28.484739339910448,28.164644514676183,28.567508773412555,28.17824742710218,27.91116416361183,28.26009422261268,27.739973322022706,27.345726610627025,28.172217985615134,27.22236832836643,28.169345675967634,27.502355007920414,27.628972912672907,28.02013177750632,28.079665745142847,28.660217110533267,29.523477502632886,29.651203501503915,29.87630285974592,30.802726265974343,29.91671438096091,29.80409403005615,30.022854077164084,29.280887220520526,30.068779837805778,30.120397438295186,30.18310381891206,30.02358748903498,29.42296202806756,28.878795869182795,28.401071964763105,28.985513541381806,28.634334046393633,27.718513214960694,27.724632029421628,27.191487561445683,27.96558115258813,27.702803136315197,28.037162004504353,28.702558033168316,28.312256714794785,27.751269998494536,27.86224452359602,27.464610116556287,26.512862228788435,25.946883563883603,25.25673238839954,24.94567177630961,25.122270380612463,24.667274810373783,24.593617015052587,23.702635603025556,24.429011689964682,24.982111752964556,25.656605734489858,25.5460969931446,26.10523300571367,26.166775660589337,26.021400425117463,25.944467049557716,25.47045172424987,25.939164020121098,25.288564496207982,25.32417413359508,25.9416491901502,25.268546137958765,25.688566577155143,25.939226794522256,25.61268600774929,25.290016983635724,25.237443765625358,25.34187733521685,25.05086712585762,25.980476764962077,25.754743235185742,26.177977762185037,25.237108991947025,25.83252450497821,25.457402907777578,26.034234723541886,26.916183791588992,27.29802776221186,27.59297765418887,26.913597472477704,26.61055309139192,27.14880053885281,27.76411888282746,28.57204489922151,28.354974224232137,28.38872057478875,28.229178712237626,28.104076826479286,27.984361115377396,28.773924430832267,29.105351014528424,28.353752489667386,27.756504361052066,27.483671765308827,28.406823137775064,28.161814220715314,27.79744200501591,27.065872082021087,27.10018634190783,26.496318959165365,25.763722176663578,26.382920356001705,25.466393110807985,25.9090786552988,26.02077987510711,26.79581926483661,26.929696459323168,27.591342847328633,26.94166576489806,27.779532519169152,27.17078529112041,26.210983191616833,26.077422987204045,27.060599859803915,26.195673214737326,26.867697681766003,26.798059986904263,27.51070923777297,26.930620579980314,27.414688263554126,28.031821766402572,27.652678817044944,27.037432730197906,27.836501937825233,28.619278711732477,28.757398089393973,28.783943112473935,28.344546175096184,29.109918153844774,29.935008397791535,30.659641039557755,30.22966688638553,30.850320241879672,30.507539245765656,30.716389265842736,29.770234846044332,29.851167652290314,29.713477049022913,30.165889652445912,29.450440284330398,29.20061801560223,29.69179133232683,29.338689561467618,30.22158504696563,30.906314900144935,30.758676413912326,31.33259153040126,31.55030337907374,31.48939218884334,30.884518747683614,31.207303731702268,30.42489737085998,29.502052730415016,28.917889581993222,29.026919561438262,29.946434441488236,30.92288536997512,31.023702547419816,31.923992048949003,32.63993634330109,32.22811240050942,31.532165754586458,31.076423761434853,30.666699449997395,31.200190925970674,31.372417255304754,30.746701489202678,30.247649499680847,31.00891246786341,30.36463185865432,31.220095126889646,30.925336355809122,31.44356505991891,32.14549806062132,32.667434016708285,32.57336859917268,32.437424099072814,32.846932312473655,32.66628517815843,32.89532442763448,32.015519763343036,31.43670364143327,31.367115154862404,31.517641951330006,32.28571324981749,32.4083445481956,31.425508148036897,31.82794736418873,31.15893600229174,31.033722029533237,31.46092984918505,31.858659083023667,32.362294224556535,33.129479428287596,32.67122108442709,31.70806683599949,32.300348680932075,31.33239037077874,31.512257045134902,31.756061939056963,32.51249681785703,31.98440504958853,32.58809175249189,32.69188767718151,32.83164274180308,33.22179990261793,33.6559316967614,33.356959604192525,32.87788949115202,32.01449752505869,32.41193946450949,32.026766535360366,31.438262067735195,32.131489891558886,32.49955198448151,32.88187582511455,32.961624482646585,32.52265772968531,32.59549647802487,31.627690121065825,32.6026674057357,32.683225261978805,33.58956959005445,33.296888223383576,33.75612233625725,33.68691755505279,33.99563992256299,34.206452088896185,34.75861474266276,34.58135289000347,34.57513598073274,34.104530916549265,35.10291159898043,35.84887464577332,35.615777254104614,34.71737164026126,35.290374766569585,34.597963612060994,33.9307463709265,33.086462242063135,32.68623974127695,33.24156350037083,33.27531453920528,33.36965589458123,33.84274536790326,33.20733105018735,33.25771793583408,34.01860111579299,34.39056956442073,34.44069590419531,34.81034109182656,33.958046852611005,33.19020703667775,32.276656434871256,33.159143133088946,33.91216533537954,33.4429308748804,32.512552313972265,31.559602602850646,32.546165427193046,31.59396614972502,31.914488473441452,31.087610414251685,30.5969110513106,30.974055530503392,30.77394088730216,30.022965513635427,30.728185893967748,31.69376148004085,31.985487670637667,32.21385828079656,32.60979543533176,32.65188530413434,32.04699827544391,31.341661352664232,31.308746366295964,30.948095185216516,30.6798210949637,30.507085745688528,29.972844002768397,30.607903230004013,31.156130366493016,31.889436325524002,31.10843611182645,30.995507839135826,30.113345794845372,29.716783319134265,28.87923606764525,29.044484231155366,29.584186586085707,28.714165753684938,28.130199717823416,29.005282375961542,29.21902034757659,29.37099033454433,28.915019634645432,29.43309919955209,29.034498419612646,28.9591931453906,28.521230595186353,27.91011262917891,28.011010677553713,28.20165644818917,28.05652128206566,27.198000635486096,26.54009429179132,26.274448576848954,26.381728515960276,26.511265208479017,26.730190430767834,26.476065854541957,27.2510183933191,27.34562995797023,28.218127665575594,28.367702347692102,27.401894407346845,28.22291725035757,28.29009561985731,29.08229072811082,28.11194880772382,28.992749354802072,29.69131205882877,30.616523635573685,29.87246768688783,29.547893396113068,30.386284004431218,29.6798122911714,29.976505579426885,30.970985458698124,30.033178171608597,30.388996058143675,31.28675650060177,31.712555550038815,31.209613937418908,31.273157998919487,31.15318141784519,31.25020820554346,31.156717164907604,31.43802227266133,31.711680753622204,31.960551619064063,32.62976290937513,32.19448792375624,31.46978175872937,31.297361406031996,31.44359271461144,32.089305280242115,31.993271249346435,31.48512357007712,30.673029359430075,29.932598188519478,30.606909627094865,29.673525545746088,30.20597988087684,29.952590790577233,29.47597793955356,28.9766684086062,28.045072427019477,27.866678935475647,28.50940785277635,28.511155131738633,28.352762604597956,28.336759321391582,29.333167077973485,28.35836644982919,29.30078056966886,30.229924112558365,29.77501724148169,30.742938447743654,31.296307461801916,30.719179183710366,30.913571199867874,30.903044652193785,30.354744161944836,30.072711720131338,30.68120036413893,29.896927634254098,29.13000617735088,28.406902091111988,27.477125831414014,27.025741142220795,27.00552303902805,27.93920022621751,28.008581081870943,27.31899707717821,27.669717690441757,26.916519115213305,26.94799137627706,26.044484248850495,25.270730825606734,26.20602027978748,27.1920383782126,26.357431690674275,25.359009061008692,26.129559809807688,26.658691335469484,27.15279044955969,27.57750508096069,28.41421102080494,29.262073257472366,29.531525989063084,30.102106235921383,30.65135126747191,31.344563503284007,30.944719857070595,31.5781421889551,31.09465224435553,30.098286447115242,29.1827337811701,28.807799639180303,29.73102574981749,29.10372125217691,29.157269863411784,29.39598067244515,29.0996049256064,29.548673103097826,29.86400955123827,29.292069683782756,28.73239712929353,29.298335182946175,30.267187419347465,29.752008612267673,30.176132390275598,30.70604787953198,31.286931311246008,31.660651232115924,31.859647116158158,32.8568928912282,33.498124305624515,32.542104482185096,32.80006470764056,33.74666472012177,33.03973409999162,32.72054781904444,33.12772252922878,32.41088214283809,32.98520152783021,33.28871650155634,33.98996947146952,34.43638099497184,34.9927197387442,35.28957692719996,36.08631497155875,35.741790601518005,35.7690078006126,36.582233612425625,35.63130317721516,35.97865123581141,36.556742867454886,36.136772548779845,35.7679849374108,34.80615520616993,34.63993045547977,34.672439543996006,34.14952295413241,34.104135361965746,35.04969158442691,34.58742084680125,35.320885844994336,35.03148892428726,35.37450800696388,35.19196386029944,35.68854312412441,35.70066192885861,36.19090903783217,37.10023302724585,36.69653899827972,36.074545226059854,36.53976106643677,36.82069027237594,37.53022063476965,38.31306864041835,38.28679496003315,38.48716551112011,38.03169255750254,37.99121330585331,38.34072979725897,38.554921343922615,38.46511757513508,38.51095864409581,39.30090274615213,38.36299334652722,38.253628368489444,38.957470406312495,38.857859034556895,39.23108542477712,39.547424444928765,39.98960650898516,40.97912215348333,41.25841155229136,41.30357492575422,41.396831318270415,42.281334861181676,43.13612473709509,43.29622359201312,43.75359029928222,43.408598084468395,42.96907425066456,42.744209178257734,42.5128501127474,41.534028503578156,41.474095705896616,42.04651702521369,41.902697236742824,42.1680443729274,42.562271350994706,42.250823298469186,41.739720206242055,41.54332428937778,41.74885394005105,41.08382390066981,40.8284179600887,40.09357257978991,39.73206001287326,39.821716755628586,39.710375915747136,40.27584151830524,40.25881172530353,41.12583893304691,40.23156594764441,40.54496903019026,40.813576565124094,40.137091054581106,39.58573294337839,39.46728496346623,39.933403936680406,39.93146213516593,40.333593103569,41.29222191683948,41.107717752456665,40.455122641753405,40.604151736944914,41.25637047784403,41.82233557570726,41.43139136210084,41.589718979317695,42.02800998976454,42.92166870320216,42.15032030781731,42.255492174997926,41.679576862137765,42.062147514894605,42.813484869897366,42.76254289224744,42.92234256584197,42.047496987041086,42.744344828650355,42.10246994858608,41.214370779227465,40.893566865473986,40.3090457348153,39.467662050854415,39.999615559820086,39.10363665409386,39.52567311702296,38.924622524529696,39.58519707899541,39.171906837727875,38.492295482195914,38.364809308201075,38.99227630486712,38.698427016846836,39.15356553858146,39.31500702816993,39.56165560614318,39.29734558193013,39.20745899807662,39.6355192665942,39.13040416734293,39.62052995618433,39.287779562175274,38.607053528074175,37.640280451159924,38.556443649344146,38.045523669570684,37.48160499986261,36.99307282688096,36.23018463468179,35.76606155280024,35.87755088880658,36.70757247554138,36.501974313985556,37.05765997711569,36.54312809975818,36.373348074033856,36.482774533331394,36.65847662370652,37.00762090459466,36.353585162200034,35.7520453594625,35.98626997275278,35.395600829739124,35.170402207411826,35.71869757026434,35.37572462670505,35.58811396267265,35.120454733259976,35.68812645319849,35.169153852853924,34.69114373624325,35.11391746066511,34.56847736053169,34.51703355181962,33.91056746663526,33.5670455689542,32.85101520968601,32.08841935824603,32.50052742706612,32.59088899800554,31.89313251618296,31.20013708015904,31.39282427728176,31.63765189331025,32.03294018795714,32.9159749513492,33.22046424029395,33.65269077150151,33.192428114358336,34.00122099230066,34.40313762426376,33.892231239471585,33.900465505197644,34.40103148156777,33.918569536414,33.29440462589264,32.650069328956306,32.08625776693225,32.30433836765587,31.917332923039794,31.357576011214405,31.91066228924319,31.660575001500547,31.1673134425655,32.104422375094146,32.434226993471384,33.055156166665256,33.028877751901746,32.60436921706423,31.65349385421723,31.84560505161062,32.65304481284693,32.77397158741951,32.55856609437615,32.15609594946727,31.66604395955801,31.564073083922267,30.711031041108072,29.82571918424219,30.736255620140582,29.980058745481074,29.09256740193814,28.18070725025609,28.873006560839713,28.961485143750906,29.566756372340024,29.86686354363337,29.372975652571768,30.241786510217935,30.803194892127067,30.372465945780277,30.560455433558673,31.344980401918292,32.26711677154526,31.606155750341713,31.65450088493526,32.40910150157288,32.41296149324626,33.38952399184927,34.09254656964913,34.80661329999566,34.397831483744085,34.9968934119679,34.966712929774076,35.88136372854933,36.75270521873608,36.10934394970536,36.20708011696115,35.4763328563422,35.30720529938117,35.60146882943809,35.37839002208784,35.84255832573399,35.84038995066658,35.0486533367075,35.92329614982009,35.85931498743594,36.642460661008954,37.190755310002714,37.54315423825756,36.609350316692144,36.59212703537196,37.0060786055401,36.463817034848034,36.386379953473806,35.825130302459,35.940115061122924,35.366628986783326,34.9526369003579,35.55962214432657,34.74470388283953,34.740174593403935,34.76619651215151,35.54888177709654,35.95395362423733,36.68797468021512,37.03334684390575,37.549171464983374,36.797366929706186,37.545180117711425,36.62970100855455,37.43145262915641,37.316977832466364,37.672714970074594,37.40702896285802,36.59432897763327,37.576372273266315,37.84302929742262,37.18136943783611,38.095044032204896,39.014834872446954,38.25264657428488,38.15021513868123,37.515708229504526,38.42711609834805,39.26279919035733,39.611686922609806,39.5690266569145,39.90600104769692,39.74948225310072,39.96561790816486,39.49368818337098,39.10394886229187,39.58521304745227,40.22780406847596,40.744165239389986,39.91600109031424,40.4991504624486,41.24525454826653,40.57524354662746,40.834691474214196,40.438623300753534,41.2782020480372,41.58608906948939,40.7350289109163,40.400883245281875,40.21144757326692,39.962373457849026,40.47316572628915,40.75109700951725,40.61858046380803,41.54618554143235,40.974819120485336,41.776469144038856,41.25340993888676,40.557856063358486,41.52838540589437,41.18506271997467,41.858699679840356,41.58296753000468,41.0244176867418,41.774312211666256,40.91037161834538,40.09442647220567,39.88061675708741,40.658072624355555,39.771849687211215,39.81139263976365,40.78205001167953,41.66670628124848,42.296218041330576,43.24102770537138,43.63960800599307,44.07846359303221,44.08397610485554,43.2979256673716,43.67422379180789,44.04023888334632,44.55588278314099,43.9970512338914,44.74108737055212,45.591254564002156,45.735089594032615,46.61041851574555,47.19341414514929,47.56084531871602,47.23333916114643,47.953093231189996,48.139112210832536,48.063656808342785,47.29955061431974,46.59461245127022,45.88295953068882,46.485440352000296,45.67609324818477,45.704927052836865,44.8966252701357,44.669934486970305,43.74547906406224,44.63804604765028,44.09200196247548,44.02257812442258,43.69535813527182,43.71707735490054,44.71194563480094,44.54977204231545,43.63874545134604,42.722136622760445,43.493391179014,42.76768188178539,42.3721357062459,43.217072032392025,42.36013254802674,43.007824765052646,42.10365051915869,42.82762222085148,43.05058128759265,43.76792044611648,43.32143694721162,43.12840961338952,43.66186210187152,43.34912714874372,43.06385711207986,42.459278567228466,41.461522962898016,41.68708156468347,41.01237093331292,41.438130440656096,42.26945630321279,42.619555139914155,42.93763547157869,43.82541756378487,44.75792470946908,45.48407871602103,45.49755997303873,44.52850334532559,45.0846829158254,44.14549809601158,43.76285465294495,43.971180371474475,44.95998783549294,44.42547854082659,44.766783700324595,44.01114535005763,43.49503576150164,43.56835346668959,42.58882519835606,42.45631626108661,41.50524081336334,41.670003874227405,40.91886818455532,41.03027610015124,40.267079832497984,39.49464972736314,39.41454729810357,38.87740174680948,38.011908480431885,37.18871815269813,37.44855350861326,37.74246922042221,38.52387403557077,38.820551997981966,38.16550902230665,38.009792970493436,38.005685072392225,38.53329057712108,38.380737335421145,38.29400051524863,37.61885258415714,38.16151809738949,38.348377040587366,38.0399355716072,38.42487301398069,38.006467282772064,38.964567771181464,39.06495094113052,38.421684393659234,39.41017813421786,38.89052867423743,38.12565530790016,37.181775227189064,36.25218216795474,35.49514074949548,35.04891080176458,35.24267239868641,34.49225501623005,35.110505199525505,34.30093812011182,34.1285013416782,35.07382189389318,35.99826526734978,36.21902290545404,36.493618896231055,36.25191293749958,36.22072308836505,36.456032157409936,36.118969686795026,36.838100189343095,37.01326639857143,37.892939765471965,37.199907823931426,36.571551324333996,35.9004382584244,35.81469411216676,35.29246620507911,36.2155325403437,36.21616054140031,35.730347028933465,35.3909755977802,35.28148328186944,34.919477741699666,35.117366407532245,35.002995278686285,35.56396158365533,35.87978633353487,35.13834084197879,35.9717736300081,35.82635704940185,35.97251919703558,35.67196351848543,36.197289085015655,35.445561537053436,34.67564702499658,34.35665534809232,33.59442591154948,33.30612832400948,32.504906638525426,31.92432204959914,32.30341486539692,32.22753903409466,31.56061536958441,31.14624909311533,32.13749952474609,31.40757262846455,31.478530378080904,32.37606698460877,31.55213262187317,31.659788229502738,30.787967588286847,31.180556271690875,32.14075514161959,31.955252057872713,31.172615283168852,31.40198627486825,31.078028888907284,30.440630831290036,31.33681314950809,30.8990270155482,31.208937558345497,31.461431259755045,31.072440194431692,30.44926583627239,30.720477760303766,31.16630424046889,31.638979053124785,31.08171680662781,31.583364147227257,30.89496901119128,30.13682651007548,30.439658228773624,30.353684321977198,30.165452093817294,29.715799049008638,30.118224794976413,29.814814715180546,29.41575622325763,30.19515278469771,31.16531993728131,30.207141684368253,29.767119436059147,29.227523261215538,29.688509287778288,30.3974016783759,30.122182900086045,30.199100772384554,29.272947552613914,28.41989084193483,28.395467398222536,28.7437685248442,29.283900488633662,29.822370908688754,29.186236685607582,28.734405342955142,29.151151647791266,28.618972782045603,27.73423118982464,28.26693791989237,28.50436681928113,28.347431781701744,27.54777058120817,27.156839901115745,26.801908556371927,26.851538662798703,27.338868127204478,26.984206072986126,27.86531576793641,27.49623533571139,27.42335335491225,27.365417725406587,27.08071897085756,26.24499762384221,25.72436312958598,26.06613038852811,27.005063930526376,27.08432415733114,27.03965312289074,26.574588879942894,27.311148558743298,26.58378728153184,26.378413123544306,25.819072619080544,24.86907021701336,24.58857736364007,25.47389814350754,25.7663505054079,25.06658809352666,24.489696136210114,25.285440816078335,25.61874252790585,25.196874196175486,26.170072074513882,25.533936844673008,25.281749114394188,24.883454200346023,24.28943068301305,24.527109689544886,24.880236361641437,24.34580440679565,24.378476101439446,24.99995285179466,24.41797765530646,23.527441111858934,23.293451444245875,23.177199623081833,22.99679060652852,23.402172308880836,24.34446386154741,24.524080586154014,24.176403189543635,23.501647755969316,24.182164907455444,24.192317470442504,24.681863766163588,23.95829029381275,24.795271016657352,24.16298514092341,23.553239446599036,23.40049858763814,22.523494392167777,22.79099532030523,22.54955938225612,21.639293944928795,21.229877416975796,21.47109161876142,21.33894019247964,21.680086438544095,21.25247334409505,22.21039440529421,22.95941825164482,23.710100449156016,23.980542700737715,24.23107292316854,25.200247870758176,25.69683360448107,26.611791513394564,27.185066808015108,26.948251960333437,26.868133507668972,26.672502008266747,27.540083594154567,27.948470682371408,26.9906353848055,26.165444305166602,27.053228763863444,27.614489248022437,27.276763162575662,28.191546241752803,27.364686204120517,28.246652913745493,28.966447035316378,28.636401999741793,29.182969789020717,29.379577402491122,29.459129455965012,28.838774783536792,29.360952171497047,29.75718925287947,29.470275116618723,28.77057370217517,29.140209341421723,30.070187103468925,30.68305906886235,30.442297868430614,29.747434200253338,28.878566681873053,28.72980035096407,28.681925895623863,28.702694692648947,28.873001096770167,29.253537842538208,29.616711671929806,29.73829548060894,30.26581004075706,31.02613804396242,30.98259012401104,30.28182809241116,30.381948712747544,29.400200210977346,28.7294492861256,29.65940918214619,30.337646279018372,30.499679319094867,31.302095476537943,31.195909661240876,31.195075729396194,31.24174982123077,31.143650545272976,30.41041225939989,31.015831761527807,31.99835293367505,31.161751732695848,31.678366241510957,31.496437112800777,30.59751380374655,30.116628000047058,30.166402988601476,30.70781651418656,31.299333366565406,31.543535883072764,31.904956115875393,31.03671668097377,31.541770732961595,31.26854810770601,31.452734351158142,30.542152693495154,30.54044330539182,29.932479626033455,29.95799949998036,30.201450989581645,29.513230348471552,30.14036842342466,29.489225175231695,29.451067669782788,30.0451108077541,30.2258920785971,30.093975832685828,30.98650023760274,30.20858549559489,30.363458773121238,29.81347805308178,29.056823002640158,29.169549154583365,28.85912470659241,29.39291698904708,28.812413465231657,28.011974493507296,28.634307416155934,28.59091905830428,27.73458510544151,28.06246886216104,27.875622081570327,27.42442886484787,27.234564893413335,26.397794727701694,26.527775129303336,27.02166886534542,27.928232189267874,26.99095494952053,26.116531218402088,26.722369017079473,27.070171871222556,27.444999504368752,26.66140100173652,26.184944478794932,25.818973276298493,25.516576911788434,25.49153675418347,25.603134270757437,25.059387802146375,25.614295318257064,25.36435970850289,25.12989106727764,25.25041542062536,24.283636642619967,24.86872709263116,25.314786395058036,25.256892423145473,25.280695288442075,24.968959169462323,24.170790683012456,23.434415795840323,23.845726584084332,23.649496969766915,24.226149119902402,24.946562708821148,25.7746670441702,25.757348020095378,25.81097718141973,26.693860263563693,26.30518784560263,26.526150077581406,27.45881107915193,28.06618378451094,28.811856721062213,29.0203988510184,29.328650932293385,29.236954133491963,29.085140184964985,29.701412208378315,30.154520439449698,29.187064583413303,29.515388762112707,30.49529182864353,31.233324612490833,31.697565670590848,31.204341610893607,32.047250465489924,31.974391881376505,31.39369944948703,31.547959617804736,32.207025615964085,32.96045802952722,33.372498102951795,33.0350973373279,33.76897233584896,33.03580450825393,33.26002807030454,33.89272598735988,34.88324284879491,34.158555280882865,35.15744957327843,34.62791476259008,34.59941492276266,34.00176060339436,33.471353457309306,32.48671580757946,33.41123169474304,33.48341326555237,33.851114336401224,33.78773460770026,33.50196728203446,33.866379897575825,32.896523403935134,32.95213064691052,32.22002720087767,32.577308545354754,32.83706032996997,32.210383935365826,32.39800950605422,32.025936351623386,32.27938609896228,32.28430641442537,32.1092595057562,32.55944528011605,32.65956607693806,32.23700739443302,31.92121217865497,31.249405195005238,30.642593102529645,31.410374437924474,31.191680140327662,31.983032616320997,32.97171077737585,32.58714901795611,31.949659692123532,32.82935358770192,33.12706929957494,34.123080550227314,33.49716797936708,32.90850514220074,33.58055893937126,33.103254113812,33.50687866937369,34.41496200021356,34.25205990066752,34.34245251957327,35.2994803711772,35.86411390826106,35.12334207538515,35.42559385485947,35.223500076681376,35.36617498518899,36.14661121182144,36.46021287282929,35.5107905594632,35.265932083595544,35.003826105967164,35.260716911870986,34.92094216728583,34.101599695160985,34.16561820637435,34.33351797237992,34.845912033692,35.23750173347071,35.33058237330988,36.117739187553525,35.75166650675237,35.990092519205064,36.825496565084904,37.19472713768482,36.65376416686922,36.60761640127748,36.48336246376857,37.42083866382018,38.297424177173525,38.08663618005812,37.578153459355235,36.78430415736511,36.22050123941153,37.00615400029346,36.07743738871068,36.766336342319846,37.716555933933705,37.49236553860828,37.82843251340091,37.47825185349211,38.448464405722916,38.451963539700955,38.836158082820475,39.16291795996949,39.14745968626812,38.967998726759106,39.268393516074866,39.1266900668852,38.75285802781582,38.41904600197449,37.97655274672434,38.904605232644826,38.36830599186942,39.34333920292556,40.24788837507367,41.14314081147313,40.476322702132165,40.468486780300736,40.1518154614605,40.717039606999606,40.78142015216872,41.29191040387377,41.16814573202282,40.18842010991648,39.331294626928866,38.62648605275899,38.86420184094459,39.13990039564669,40.1253435225226,40.018237363081425,39.28926351061091,40.065252693835646,40.403156800195575,40.58343499340117,40.59438815852627,40.36456353915855,39.55884610954672,38.606098941061646,39.49704648880288,39.63382166810334,39.90784772345796,40.54744257917628,41.22697812598199,40.84583262586966,40.827633670996875,39.89171520480886,40.70495106978342,40.399256150238216,39.75211454136297,39.76282359426841,39.50178528577089,40.35508882906288,40.698998724110425,40.17995544942096,40.34954609815031,39.545791562180966,38.70631301170215,38.62076179031283,38.9664527005516,39.72734957514331,38.94199387496337,38.868049612268806,39.06468257447705,38.815131610725075,38.21156063815579,38.89219144452363,38.48617982631549,37.91547004133463,37.69751554727554,38.25988095346838,37.27191434847191,36.347476173657924,36.01276890793815,35.327117265202105,36.29464267846197,35.809397489298135,35.23436894174665,35.97766562085599,36.60249145468697,36.87701550265774,37.62326577026397,36.80461904313415,37.72319568134844,38.06395652424544,38.637291265651584,37.957625458948314,38.86557771312073,39.71829822240397,39.24124940065667,39.42373459646478,38.994008786510676,39.40125314332545,40.31187059171498,40.27376985922456,40.877147404477,40.584379385225475,40.60685602854937,40.106622147839516,40.266525246202946,39.80726593406871,39.822165036108345,40.21437065768987,41.05692628212273,40.54784504650161,40.7958947410807,40.46540064178407,41.228112884797156,41.63551067188382,41.24419622309506,40.801383106503636,41.327766427304596,41.60604264680296,41.6308576525189,41.48389624245465,41.4425616315566,41.74164362810552,42.22417034069076,42.01814985787496,42.08516562497243,42.163129498716444,42.34531742706895,42.85965200280771,42.115286862012,42.88135147700086,42.109283331315964,41.92439862526953,42.332686678972095,43.03345386311412,42.25164913153276,41.723674011882395,42.446218863129616,42.93467817083001,42.735336017329246,42.552303154952824,43.41258244216442,42.60524594364688,41.68037687242031,42.36508821416646,42.94513351935893,43.74675074685365,44.35239983582869,43.69859346374869,44.31952078267932,43.606797887943685,42.93566430453211,42.69845232460648,43.6572613241151,43.04098929557949,43.05077016586438,43.127998556476086,42.67770765768364,41.69540073676035,42.11100977612659,41.847088100388646,42.34549739351496,41.44699888816103,42.033835865557194,41.087775284890085,40.516055068932474,39.64689888386056,40.51855229027569,41.326591504737735,41.0168527350761,41.300602809060365,41.49341551354155,41.29609979549423,41.72802208876237,42.016106482129544,42.19398074783385,42.34488373808563,41.97054634662345,41.871140378993005,41.19023582711816,41.50210131146014,40.814912487752736,41.156750382855535,40.579285046085715,39.9647829728201,39.166479161940515,38.784903588239104,38.137433445081115,37.496504553593695,37.84847598569468,38.44889354519546,38.86259969882667,38.30553478049114,37.96745400130749,37.878259777557105,37.78249140828848,38.042069683782756,37.3655792218633,38.25451045809314,38.545810949523,39.23840845422819,39.77917552134022,40.2968521672301,39.83006420638412,39.0012012491934,38.381300987675786,38.52529733767733,39.18528169114143,40.17430385528132,39.70234964415431,39.023013127502054,39.81051756395027,39.537164186127484,39.52008352987468,39.71053276164457,39.0834204708226,38.54232158791274,37.98324181837961,37.32031629700214,37.609325180761516,38.103109408635646,38.97104708245024,38.656047091819346,37.85242827562615,36.854844154790044,36.08210750762373,36.78569959895685,36.911574985366315,36.98721412150189,36.582593521568924,36.654341908637434,37.39186949189752,37.631736650597304,36.724874527193606,37.2919636615552,37.25094144931063,36.49921271344647,36.073234885465354,36.01080628903583,36.69083423167467,37.62262491323054,36.86581797525287,36.10587992426008,36.07233499735594,35.47224567644298,35.00418055430055,34.320195242296904,33.46804162999615,33.91474517248571,33.316005534958094,33.81363685475662,34.070180396549404,33.94157899497077,34.032458985224366,34.28966475650668,33.42618089495227,33.140922451391816,33.368466812651604,33.7439968874678,33.274558406323195,32.78488995693624,31.901390702929348,31.538804735522717,31.091495888773352,31.45739841181785,31.37269823299721,32.16709338827059,32.3593675182201,32.83592508500442,33.66595662338659,33.72293697344139,33.57414255803451,34.28908072132617,34.32799699017778,35.02581737143919,34.26390316430479,33.552179713733494,34.442491833586246,33.466177952010185,33.7426682272926,34.48712926544249,35.110432567540556,34.873661768157035,33.99364944687113,34.66449490003288,35.58814254403114,35.63443318614736,36.58766624331474,35.652136952616274,34.70993868028745,33.725998140871525,33.20279243774712,33.229458765592426,33.12741653295234,33.80734843574464,33.75210588751361,33.5229290118441,33.352166316471994,32.922329894732684,33.53323084814474,34.04950195318088,33.835207249969244,32.97090262081474,32.55148030165583,33.28768289508298,33.579741541761905,33.32127908151597,32.43662668718025,32.038140882737935,31.34937607590109,30.611639983486384,29.978190588299185,29.335820152424276,28.76688914373517,29.566903272643685,29.20944726234302,28.28701759316027,27.460630880203098,27.249018837232143,26.255783735774457,27.068407462444156,27.004739928990602,26.95363249350339,27.830058672465384,28.235396950040013,27.55636328505352,27.612849669530988,27.369062464218587,27.729607849847525,27.656824101228267,27.400505715049803,26.44171138573438,26.232726266607642,26.003053002990782,26.284814493730664,25.40140486508608,24.532652178313583,24.98143994016573,24.428588011767715,24.72818485274911,24.24778821086511,24.7989094639197,25.646038446109742,25.403292884118855,24.507975955028087,23.85582315409556,23.404323974158615,23.631147459615022,23.404982606880367,22.635418638586998,21.86599163757637,22.666020488366485,23.17810585303232,22.979784197174013,23.89494727924466,24.736105187796056,25.423184674233198,25.569650465622544,26.260440545156598,25.435449830256402,25.695447786245495,25.755908998195082,26.510356260463595,26.03012138325721,25.273957321420312,24.995081667322665,25.82507369853556,25.35649718157947,24.753488420974463,24.71895742835477,24.44175481144339,23.48414087900892,23.617305513471365,23.182443036232144,22.398050886578858,23.081908310763538,23.918295457027853,24.146185817662627,24.461009331978858,24.982641683891416,24.256193661130965,25.218221716117114,25.424297490157187,25.58858361421153,26.253741568885744,26.806898230686784,26.04146174574271,25.90708433324471,25.295445908792317,26.03097230847925,26.418053343426436,26.239520757924765,26.507749219890684,26.90904597984627,27.55792276142165,27.407685104291886,26.55251264385879,25.947614912409335,26.035678536631167,26.571280664764345,27.14947230834514,26.611415364779532,27.05371681880206,26.438260378316045,25.740790456533432,26.070477031636983,26.679136529564857,25.72293955879286,26.28049938986078,26.047075727488846,25.09577823104337,25.366433926392347,26.10810614330694,25.538896860554814,25.517286946997046,26.30064240237698,26.198287346865982,25.258288958109915,25.46974922530353,25.147301841527224,25.97161554126069,25.158565372694284,24.293309403583407,23.4759710887447,23.07597890123725,22.520484742242843,21.872769544366747,21.209935787599534,21.536303372122347,21.536476674489677,21.502702568192035,21.566169594414532,21.60368104837835,20.95617922442034,20.630681429989636,20.63897898932919,20.187185287009925,20.582342440728098,20.996134275570512,21.37391682015732,21.965463827364147,21.869263334665447,21.486249689012766,20.888530808035284,21.46979147242382,20.779629331082106,20.885992031544447,20.524166323710233,21.18129300046712,21.826618642080575,20.871338674332947,21.28044984396547,22.22344259219244,22.38692762469873,22.335845636203885,23.044935206416994,22.757623894140124,23.603283310774714,23.18167523248121,22.277041097637266,22.45080559141934,22.47397841140628,22.188776220660657,22.305725291371346,23.179456090554595,24.179227201268077,24.927443739026785,25.86223035119474,25.736161645501852,25.781458623241633,25.71857619890943,25.896118049975485,25.914534643292427,25.421379691455513,26.134789154399186,25.83528103446588,25.992960384581238,26.593401777092367,27.471786882262677,26.538357746321708,26.67524723429233,26.33782739751041,26.449103503953665,26.874840079806745,27.445457387249917,27.010539878625423,27.64190529892221,28.062862324062735,27.940153462346643,28.82696995092556,29.30063743563369,29.275075926445425,28.54263178491965,28.623812273144722,28.893216453958303,29.644505359232426,29.61633197264746,29.265816763974726,29.057834731880575,29.254299484193325,29.999557918403298,29.685200797393918,29.64560451405123,29.965054580941796,29.182073646690696,29.330105170607567,29.7009258675389,29.271374710835516,29.291340326424688,29.785867267288268,29.051453804131597,28.64158281404525,29.176014258991927,30.040882679633796,29.104522583074868,29.05559934489429,29.075497020035982,29.095927240792662,28.723647573031485,28.137816244736314,28.917654466815293,29.4467196688056,30.374675593804568,30.601342260837555,30.901374841108918,31.20101085025817,31.388382830657065,30.869154391344637,30.801368184853345,29.98083020467311,30.490787412971258,31.111332481727004,31.47420936776325,32.337525887880474,33.16254137130454,33.630340695846826,34.08158364286646,33.69488834403455,34.23378331866115,34.20661818003282,34.50172666460276,34.17446825699881,33.947507195174694,33.310814934782684,33.52502613281831,32.66063875332475,33.244900420773774,33.84092571400106,33.317745045758784,32.55330541962758,31.80353686772287,31.24546714592725,30.93919463036582,31.802325763739645,31.37255664821714,31.213163117412478,30.322079615667462,30.818990706000477,31.668334406800568,31.002145692240447,31.49513704702258,30.969132487196475,31.855855859816074,32.65513632027432,33.6245612683706,32.83592596743256,32.99990243650973,33.3928870386444,34.29982912214473,35.031733732670546,35.17178055085242,34.95410595275462,34.94978877203539,34.26957252249122,34.29098719963804,33.84130018670112,34.43368011340499,33.66045357240364,33.55830333987251,33.08655712753534,32.88600678415969,32.9681173725985,32.833008505403996,33.115161386318505,33.91020719753578,33.850362890865654,34.518940694164485,34.695350487250835,34.38838986121118,35.13179168710485,35.16970343142748,34.62380976881832,34.047100599855185,34.09110736846924,34.72071792092174,35.46066457219422,35.281456952448934,35.59789191186428,34.93815089855343,35.36647379072383,36.21557252621278,36.57054885243997,35.91220685373992,34.964960906654596,35.75920730549842,36.344779138918966,37.067912676837295,36.0695467912592,35.51623056968674,34.601216736249626,34.369236554484814,34.93628211738542,34.072577476035804,34.957934032194316,34.72668365109712,34.30853006243706,34.92022157367319,34.73720776150003,34.53813074249774,34.698494664393365,34.23228301666677,34.82369734579697,34.3350787893869,34.488456189166754,34.810365670360625,35.79075920116156,35.717321733012795,36.03056078078225,36.22095647221431,35.574180577881634,36.10981123521924,36.160052365623415,36.62280073482543,37.42723789811134,37.277678961865604,37.457239273935556,38.16153096128255,37.492519569117576,36.972207927145064,37.62692607566714,38.59606067882851,38.37837047642097,37.49569801706821,36.849120853003114,35.85316007817164,35.582675895653665,35.19658793043345,34.59867559047416,34.04246183205396,33.10266338195652,32.866122343577445,33.139709054958075,33.94445539359003,33.487558614462614,33.602143494877964,34.035522028803825,34.841079322155565,35.54336618119851,34.92095445981249,35.599329619668424,34.96925977477804,34.29877739632502,35.024765469133854,34.02545237727463,33.41170813469216,33.3131618774496,33.484002579469234,33.38883613888174,32.74473910825327,32.046120326500386,32.60364503460005,32.951448125299066,32.33484112145379,32.34117160877213,32.776006672531366,32.783266346435994,32.97507676901296,33.664537771139294,33.31999920820817,32.39402453973889,31.672705370467156,31.954687935765833,30.990037030074745,31.523482691962272,30.929659050423652,30.967639102600515,31.922513297758996,31.15871917223558,30.611529706045985,30.813034569378942,31.207071824464947,31.259977601934224,31.102409658953547,31.960370734333992,31.143476811703295,31.771708973683417,31.881068631540984,31.90414540702477,32.184578406158835,32.279344625771046,32.793172627687454,31.892875348683447,31.830968201626092,31.13153891125694,31.43076485628262,31.60935550928116,30.985098690725863,31.38748304452747,30.84937737416476,30.014048269949853,30.332941131666303,30.047501421067864,31.03267879737541,30.87385670049116,30.341361807193607,30.117846317589283,30.26820275746286,30.165822613518685,29.533396512735635,28.83543791854754,29.737486397847533,29.831536799669266,30.210837230551988,30.149116976652294,30.49772849632427,30.304973538033664,30.95839173020795,31.004889427684247,31.608552422840148,31.112092913594097,31.745222243014723,31.872633856721222,31.037575128488243,30.35110134491697,29.35886392602697,29.33200684050098,29.07620253181085,28.81950983637944,28.46119698509574,28.346505086869,27.445971502456814,26.567278736736625,26.9187232083641,26.954287305939943,27.30578228086233,27.63977072900161,27.244085958227515,27.432146353647113,27.345575720071793,28.042320819105953,27.98335042502731,28.80728453118354,28.49060834897682,27.697678690310568,27.94692656537518,27.48652735352516,27.47205016389489,27.76466441480443,27.887690604198724,26.97598159359768,26.921602343209088,26.717018390540034,27.33087657717988,26.483580831903964,25.99986843392253,26.38738571992144,27.132911116350442,27.745732387527823,28.005174757912755,28.35260346531868,29.29145782114938,28.77021337300539,28.756831711623818,29.723751256708056,29.37300632474944,29.444862462580204,29.9317439859733,30.463906071148813,30.145959387067705,29.405517716426402,28.614131496753544,29.058303660247475,28.393209510017186,28.333077708259225,28.078095350414515,27.724142119288445,27.128568069078028,26.98913311911747,26.716964926104993,26.121388589963317,26.505991530139,26.17601674096659,26.87928058858961,27.256875183433294,27.887023790739477,27.14765420462936,27.41016140487045,26.696895530447364,27.034275506157428,27.98141757491976,27.129489669110626,27.624847064726055,26.715382056310773,25.794244970194995,26.424985129386187,26.748036649543792,27.537507380824536,27.82069212431088,27.937772260513157,27.95685388147831,28.725709498859942,29.53938620071858,29.446651727426797,30.016221865080297,29.14342778502032,28.553447709884495,28.993217549286783,29.8840637113899,30.06616134569049,30.250241563655436,29.982972658704966,30.218106547836214,30.945015599019825,30.369626679923385,30.09874300751835,30.35709375096485,29.792633450590074,30.05440600635484,30.154381436295807,29.859903077594936,30.498305219225585,31.30731995170936,31.168856868054718,30.696154217235744,30.168759011197835,30.328232425265014,30.289179874118418,29.459007255733013,29.942788559012115,30.87205650145188,30.837082693353295,31.037766913417727,30.279521729797125,30.519026660360396,30.105681016109884,29.48074705665931,29.143683610484004,29.242296530865133,29.302441586274654,29.643071909900755,30.11349409306422,29.37850057380274,28.509131705388427,27.5987317180261,27.971845211461186,27.851167340762913,28.03946391539648,28.232539910357445,29.12350551178679,29.32578749442473,29.55745017156005,30.126075389795005,31.051838595420122,31.773848465178162,31.9059015144594,31.5046056243591,31.007899784948677,31.44478817237541,30.7428568135947,30.944540706463158,31.87650492042303,31.372217312455177,31.496710096951574,32.200067731551826,32.681496414355934,31.860199451446533,32.68629352003336,33.432639265898615,32.90703659225255,32.13143044244498,32.24969008145854,31.400734399911016,30.946772284805775,31.179107171483338,32.061778833158314,32.03472059639171,32.61739947646856,33.34392454242334,34.332097600679845,33.3386562098749,33.2682823096402,33.57887173630297,33.4317834074609,32.49036981491372,33.247711966745555,32.67492794757709,33.450485568493605,33.60239778179675,33.31990076601505,34.14475252572447,34.98535438114777,35.04131103353575,35.65859053004533,36.50812571076676,36.27404147665948,36.49298947863281,35.98431530734524,35.60073219938204,36.09309975709766,35.13339695427567,35.74280004622415,36.06223785690963,36.48924321541563,36.82195749459788,36.506177560891956,35.60057670250535,35.08219643263146,36.01701495749876,36.584992536809295,37.20148266525939,36.51557173905894,35.715131372213364,35.060968978796154,34.64400587696582,34.127873259130865,34.669110314920545,35.20465032104403,34.77949623065069,34.7108482751064,35.357260768301785,35.58968793274835,35.93843565322459,34.97618760820478,34.85104037262499,35.69019917445257,36.1364337336272,35.407335261348635,35.71916910260916,36.44161996990442,36.07778287632391,35.356166787445545,36.35158773418516,35.53530403692275,35.897266699932516,35.60840213485062,36.4408953092061,36.47820924827829,36.82595837349072,36.58306149486452,36.93595016794279,36.62301654648036,37.209458318538964,36.99737118836492,37.598876586183906,37.32976874290034,36.46882932726294,36.52122852625325,36.27220742544159,35.91033285902813,36.10887080617249,36.864491015672684,36.854188257828355,36.35669322963804,36.076057453174144,35.794716354459524,36.64452252164483,36.32392330514267,36.931073798798025,37.37462879344821,36.73803567234427,36.61612133914605,35.77316946350038,36.270350970327854,36.27005873573944,35.872413279954344,34.98934670863673,34.29166876105592,34.11959128500894,34.28510326612741,33.62665169732645,33.465149767231196,33.360675701871514,32.608027008827776,32.41350487060845,32.10440997919068,33.07826829329133,33.92893577646464,34.6201294073835,34.99576088087633,34.30146381724626,33.63897088728845,34.383779752999544,34.01856714580208,33.36816264409572,33.28813010826707,34.05116900522262,34.936384830623865,33.97719970764592,33.872286525089294,33.48574991431087,33.30466895271093,32.87418071413413,33.63758673146367,34.50724213058129,34.72623929521069,34.96587991947308,35.52526318561286,35.35981373116374,36.17678487068042,35.449148278683424,35.42456109682098,35.290954562369734,36.126234899740666,35.53022308461368,36.50155103811994,36.99791193846613,36.98381067067385,37.12499444140121,38.01745823957026,37.94316073646769,38.247772956267,37.68011380452663,38.03137948689982,37.491076107136905,36.603733140509576,35.920080807991326,36.192656851839274,36.53585964906961,36.31337196007371,36.40510990656912,36.68206062214449,37.17760202847421,36.67180220736191,35.95967519050464,35.96140638878569,35.01104752486572,34.90213808370754,34.15194777492434,33.82802221970633,33.54225365025923,32.75779563514516,31.85764856543392,32.254512512590736,31.520246292464435,32.25207668822259,31.935429158154875,32.13168921601027,31.250884474255145,32.143150377087295,31.830896022729576,31.633706829044968,30.961528801824898,30.598303493112326,31.39738731458783,31.656434803269804,31.1138414288871,30.68672578316182,31.471155118197203,32.465197504963726,32.8152134232223,33.67942483536899,33.463561072945595,32.55491130286828,32.352337818127126,31.874207734130323,32.707808264065534,33.454756503459066,34.126794214360416,34.535683325026184,35.49509889539331,36.06224761484191,36.48666979139671,37.24146034242585,36.45400082273409,35.6579684545286,36.39895912166685,36.635197297204286,37.42089158343151,37.29426261829212,37.52614393644035,37.991907133255154,37.51345100766048,36.98220141790807,37.15796981099993,37.6572575494647,38.46558934962377,37.949081431142986,37.641466211061925,38.009094160050154,37.32217980641872,36.66237541427836,37.249399250373244,36.31110963970423,36.917998883873224,36.75797535479069,37.41750765265897,37.59565654024482,37.30289331590757,37.465827323962,38.17147258389741,37.501944329123944,36.50734693510458,35.927239667624235,36.35790573712438,36.206110609695315,37.08617933979258,37.57966733863577,38.25693216267973,37.71790352137759,37.75447145057842,37.6855720221065,38.68485800502822,37.705027415417135,38.64172781351954,39.11334099620581,38.804698354098946,38.080332055687904,38.04174121655524,38.20702727884054,37.60725320503116,38.13938529137522,38.578993634320796,38.61161150364205,38.39055427769199,38.79956832434982,38.88738614274189,37.89925323938951,38.68108707526699,38.437470039352775,38.83455193368718,39.286583471577615,39.484550872351974,38.587658496107906,38.22921304497868,37.51256594667211,38.423572595696896,38.97256397502497,39.42637374205515,39.17037637485191,39.88009034562856,40.00438874773681,39.041255910880864,38.32822403032333,37.37302949046716,37.66411813348532,38.57200376316905,38.57009510695934,38.97214938048273,39.338489565532655,38.339869600720704,38.13174787629396,38.46293854620308,37.79941628500819,37.41730619920418,38.276974513661116,38.38095419714227,39.36570476926863,38.77600399823859,38.26807609107345,37.62707512406632,36.95641369977966,36.58880160981789,35.65486925840378,35.71120609855279,36.32247242331505,35.44007549760863,35.16559015540406,34.79489549994469,34.47780095227063,34.59084297390655,34.27133620623499,33.55963945854455,34.34033916145563,34.12468441715464,34.91679261112586,34.041205706540495,33.70577936246991,32.74803358921781,32.00580553570762,32.83689089445397,33.80676023242995,33.89870530040935,33.48637835122645,34.45382345048711,34.730153809301555,33.953286999836564,33.30381148401648,32.857919866684824,32.03466059966013,32.25869461894035,32.03008148726076,32.73330647358671,31.949193297419697,32.04894459899515,31.621595186181366,31.089330940973014,32.07692540762946,31.88638291414827,32.51966652367264,32.67399969417602,33.32137182587758,33.87798158219084,33.59619514411315,33.662635933142155,33.63128609023988,33.99657807871699,33.33500833297148,33.17650618031621,33.288925904780626,32.87579645914957,32.84280423168093,32.55406513484195,31.77187918871641,31.631205604877323,31.540888463146985,31.77514818031341,31.22800462692976,30.488227031193674,31.47024261020124,31.304623120930046,32.05858072638512,32.53796952031553,33.46070642396808,32.9556926083751,33.040673402603716,32.661371572874486,31.679147984366864,31.189678720664233,30.418883551377803,29.972583970520645,29.413172635249794,29.55558419506997,29.377322857733816,28.67162728123367,29.511105956044048,29.501445045229048,28.82646124251187,29.33684588689357,28.8007400627248,28.21358960494399,27.707951394375414,26.775533221662045,26.51918328832835,25.860602451022714,25.560402929317206,25.23642582865432,25.9542704410851,26.211988857015967,25.937980777118355,26.036413253750652,26.49534925399348,26.616888620425016,26.599027573131025,26.450449543539435,26.701751575805247,26.537417360581458,27.118838594760746,26.120953981298953,26.09858847176656,25.149732330814004,25.891270744148642,25.626356368418783,24.79320930270478,24.666471793316305,25.459426692221314,26.43426042003557,26.41671494068578,25.943295479752123,26.880353488959372,26.467524985782802,26.583311781287193,26.881683479063213,27.334947327617556,26.784068702254444,27.327582836151123,26.3747999323532,26.535896262619644,25.89313800772652,26.467544622253627,27.0744025032036,27.779961939901114,28.597369465511292,27.998276700265706,27.749452429823577,27.042080147191882,26.9937203428708,26.17558483267203,25.9692965708673,26.214713488705456,25.42753533180803,24.642086289823055,24.05323541117832,23.382410930935293,23.319030973594636,24.25711260130629,23.714517277199775,24.29550154739991,23.57591634662822,23.923373243771493,23.71465332619846,23.05222959816456,22.72180770058185,21.980873129330575,21.685893027111888,21.031367480754852,20.824801762588322,20.796350959688425,19.986274152062833,19.06854761671275,19.592591369058937,20.083658661227673,20.856981914956123,21.419821234885603,20.959327266551554,21.775163401383907,20.901149853598326,21.658983098808676,21.49831034243107,22.213434614241123,22.904145013540983,23.392701563891023,24.313713843468577,24.390674038790166,24.16956895356998,24.804096402600408,24.880068799015135,24.432465902529657,24.052571119740605,23.82761507295072,24.14845231315121,23.4858909281902,23.087811085395515,22.26097385212779,22.023811921011657,21.15571955125779,20.865930720232427,19.888320569880307,19.197327265515924,19.316394814290106,19.20458539063111,19.72982333553955,20.11760504124686,20.01565260393545,19.226158355362713,18.382023533806205,17.989123611710966,18.784168143756688,17.979416955262423,17.07086783181876,17.35173715557903,17.071937304455787,16.435398134868592,17.265647714491934,16.942849865648896,16.72434863774106,16.972788277547807,16.396609879564494,17.099416063167155,17.69910144759342,18.660180040169507,18.251780884340405,18.149207931011915,17.899364551063627,16.904299065470695,16.54948276048526,15.569141161628067,15.845376881305128,16.015637860633433,16.459333817940205,16.230594851542264,17.12071278085932,17.056572755333036,16.291243698447943,15.736534242983907,16.503423882182688,15.98548215534538,16.018877732101828,16.05609275540337,16.26864561997354,16.38498145295307,17.012412283569574,17.335679749958217,17.915831793565303,18.580135494004935,19.335548085626215,18.452542929444462,17.768278672825545,17.822477928362787,17.10794571088627,17.743961886502802,16.951078273821622,17.775978913065046,17.27962327329442,17.616079915780574,18.182692042551935,18.32446604873985,18.60052835382521,18.888204745016992,19.092088368255645,19.021845433861017,18.384961238130927,19.304913097061217,18.803675029892474,18.52480541029945,17.72772902622819,17.303598060738295,16.85034649260342,16.32407773612067,17.155547805596143,18.036276653874665,17.530571460723877,18.313642881810665,18.652355432044715,18.41264739492908,18.083480881992728,18.824399675708264,18.396554656792432,18.678877328056842,19.187417865730822,20.029312491882592,20.088966585695744,20.047900518402457,19.89596100198105,19.15377205889672,19.687191086355597,20.19461766956374,20.905937583651394,21.65365928830579,21.40536531433463,20.851919686887413,21.345983043778688,20.479652993846685,19.81517707463354,19.948740809690207,19.380349626764655,19.35695619182661,18.456118219532073],"y":[-0.6817164467647672,-1.6054171533323824,-1.0008339984342456,-0.07554722158238292,0.17974016908556223,0.798046050593257,0.8307468984276056,1.4104125774465501,2.277924213092774,2.3128944993950427,3.177407095208764,2.8605105970054865,2.375536123290658,2.7046547029167414,2.789318138733506,2.2328476794064045,2.3279594029299915,3.296298472676426,3.5818132497370243,3.883182038553059,4.559777679853141,5.424470387399197,5.9946437063626945,5.796337925828993,6.096244484651834,6.750377614982426,7.448925118893385,6.517685843631625,6.725827157497406,7.17732334183529,6.321010284125805,5.548093615565449,5.103618061635643,4.860975266434252,4.0176681517623365,3.444716415833682,3.7083995128050447,3.3297080025076866,3.5308770667761564,3.6228154483251274,3.7234845524653792,3.346613178960979,3.4111273107118905,3.129780549556017,2.2671322347596288,2.8065463257953525,2.1973673589527607,1.7749967547133565,1.7088690269738436,2.340639954432845,1.3461251491680741,1.3536988832056522,0.6268121781758964,0.49451481085270643,0.025311185978353024,-0.12042393255978823,-0.609372547827661,0.2450812179595232,-0.34444197034463286,0.20347638288512826,-0.3324778424575925,-1.212669507600367,-0.7146686655469239,-0.4631065893918276,-0.8265602220781147,-0.5059301350265741,-0.46824768418446183,0.21685516508296132,-0.0949015854857862,-0.2714472054503858,-0.7481082384474576,0.10078857326880097,-0.8238430060446262,-0.06443177303299308,-0.893815494608134,-1.4956726180389524,-1.219021557830274,-0.4673606939613819,-0.6912532453425229,-1.5042807683348656,-1.038672458846122,-0.9974411861039698,-1.7803508662618697,-0.8311979481950402,-0.03805678756907582,0.5198419098742306,0.7610556147992611,1.0661523779854178,1.178990381769836,0.7799747660756111,1.1138645089231431,1.3195403437130153,0.3657154138199985,0.3377607758156955,-0.1399341938085854,0.2144395299255848,-0.11795527068898082,0.5140155865810812,0.10362399369478226,0.010404025204479694,-0.2803813572973013,-0.4105640770867467,-1.068901577964425,-0.6498312950134277,-0.3745346390642226,0.5208517732098699,0.7045020945370197,1.6526846708729863,1.183192125055939,1.2571110525168478,1.077264979481697,0.21407748851925135,-0.2455347152426839,0.7192275607958436,0.7862550681456923,0.7584803383797407,0.9722837512381375,0.6400585644878447,0.059011430479586124,-0.9314601314254105,-1.4040650236420333,-2.4005575738847256,-3.0159432953223586,-3.3767308043316007,-3.1919384226202965,-3.9339678175747395,-3.615913646761328,-3.218165373429656,-2.7199258571490645,-3.395254018716514,-3.45738872140646,-3.7968895491212606,-4.773830935359001,-5.103433177806437,-4.804334475658834,-4.00199337489903,-3.3597863535396755,-4.294997483026236,-3.295652095694095,-3.264576575253159,-2.39251713687554,-2.3226758339442313,-1.520971824415028,-1.889767614658922,-2.8618514323607087,-3.2434756234288216,-3.9862757781520486,-3.2076895041391253,-3.5803697635419667,-4.0563872288912535,-3.3616355592384934,-3.3089444302022457,-2.9349855184555054,-3.625940847210586,-3.9560538763180375,-4.298664863687009,-5.126344112679362,-4.366250095888972,-5.231698788702488,-5.47874335758388,-6.0731390793807805,-6.723100678063929,-7.420381986070424,-7.151419450994581,-6.43399750161916,-5.781704505439848,-5.56956738140434,-5.842466365545988,-4.844584438018501,-5.382831897586584,-6.3083723755553365,-6.314874129369855,-6.8903917372226715,-6.469713379163295,-5.651632080320269,-5.705714008305222,-6.235472738742828,-5.448641794733703,-5.638576366007328,-5.099559254013002,-5.082717417739332,-5.328017370309681,-5.850851220078766,-4.929590400308371,-5.701334064360708,-6.567356567364186,-6.558618172537535,-6.033154970500618,-6.9190777046605945,-7.511743865441531,-7.95649015950039,-8.01775784837082,-8.638651200104505,-8.238466886803508,-7.504172674845904,-6.797375140711665,-5.96935258153826,-5.419023203197867,-6.3932827902026474,-5.949595759157091,-6.64791355561465,-6.250023376196623,-7.198392648249865,-7.469991292338818,-7.043937033973634,-8.043507403694093,-7.6262558083981276,-7.255270468071103,-7.606474450323731,-8.180568720214069,-7.651103704702109,-7.974087133072317,-7.899424213450402,-7.991533728316426,-8.840444056782871,-9.786400412674993,-9.159455269109458,-8.525188798084855,-9.462551546748728,-9.225775833707303,-10.066706172190607,-10.427836029790342,-10.805434351786971,-10.705033833160996,-11.5590564860031,-11.03466023504734,-11.088892498984933,-11.515262085013092,-11.087207063566893,-10.925170649774373,-10.749739688821137,-11.49493075022474,-12.10554414940998,-11.88044870691374,-11.98188763577491,-12.490575744304806,-12.464277416933328,-13.37164394184947,-12.45369162177667,-11.888673941139132,-11.598439340479672,-11.402206165716052,-10.71320759691298,-11.381380743347108,-12.377720579039305,-11.932386713568121,-12.091393501032144,-12.358477774541825,-12.585629708133638,-12.15419792663306,-12.3306863931939,-11.636851069051772,-11.796071547083557,-11.85742229083553,-11.959945611655712,-11.993263653013855,-11.521351915318519,-12.2310980851762,-12.78699290053919,-11.975280451122671,-11.509687846992165,-11.094711658544838,-11.211151398718357,-10.625713874585927,-11.42917697550729,-11.287898815702647,-12.086746378336102,-11.985823694616556,-12.661855610087514,-11.703030813951045,-12.372873502317816,-12.341531871352345,-11.445245118811727,-11.5596964629367,-11.065260238479823,-10.7135971323587,-11.67996706487611,-11.862972216214985,-12.200790925882757,-12.318612060975283,-12.392507186625153,-12.472795309033245,-12.427531246561557,-11.778893339913338,-10.970901761204004,-10.938738706056029,-10.21629023551941,-9.372528762090951,-9.380858273245394,-9.495633440092206,-8.9432198763825,-8.588609097525477,-8.229112390428782,-8.21057738456875,-9.012571851257235,-9.642396763432771,-8.782466941513121,-8.602204100694507,-8.692698801867664,-7.749566291458905,-8.384153436403722,-8.850223845802248,-9.201651216018945,-9.016089562792331,-9.844525344669819,-9.012927164323628,-9.974461503792554,-10.482981704641134,-11.133587018586695,-11.287593073677272,-11.981353546027094,-11.467359410133213,-11.112538036890328,-11.11404211493209,-11.445110253058374,-11.454862380865961,-12.000901467632502,-11.864973335526884,-11.547433633822948,-10.813806210644543,-11.326817074324936,-12.065332390367985,-12.090521909296513,-12.204452687408775,-11.627414678689092,-12.386050638277084,-12.50622317334637,-12.446010064799339,-13.12591646797955,-13.087111714296043,-13.50454267533496,-12.703391558490694,-12.996057245414704,-13.078697946853936,-12.750892319250852,-13.30349632538855,-14.090986801777035,-14.201145671773702,-13.745569717139006,-14.676767678931355,-15.644477979280055,-15.36950875679031,-15.269641862250865,-15.263742569368333,-15.957384170498699,-16.26785615598783,-15.44169475324452,-14.652338115498424,-15.573228843975812,-14.896986880339682,-15.574789627920836,-15.33845676947385,-15.620915888343006,-15.398952287621796,-15.070165588520467,-14.854575485922396,-15.418000314384699,-15.294714041985571,-15.14302968326956,-15.95460490603,-15.393045441713184,-16.11712301755324,-16.37152407458052,-15.571551764383912,-16.444032394327223,-16.09826488280669,-16.47620318317786,-16.487081353086978,-16.73502261331305,-15.955209004692733,-15.272738881409168,-15.298837569076568,-14.65482619823888,-13.842703646514565,-13.337713509332389,-13.604115625843406,-14.552377248648554,-14.023386541754007,-13.844661167822778,-13.48354706261307,-12.793151290621608,-11.95741001330316,-11.463909675367177,-11.126728516537696,-11.447212733328342,-11.147956781089306,-10.903383544646204,-11.219939783215523,-10.519325339701027,-10.450265226420015,-9.986509261187166,-10.596937711816281,-9.76545407017693,-9.146192950196564,-9.553347302600741,-10.538520875386894,-11.030592769850045,-10.312802953179926,-11.036160368472338,-11.872329864185303,-10.98885662900284,-11.496740281116217,-11.125217171851546,-11.255794731900096,-10.26538894046098,-9.511467905715108,-10.003495756071061,-9.568574840668589,-9.45966114802286,-9.374208874069154,-9.934106506407261,-10.150206275749952,-10.532034450676292,-11.105371945537627,-11.562712127808481,-11.718181754462421,-11.542076393030584,-10.567080949433148,-11.092222965322435,-10.518847947474569,-9.560042574070394,-9.69278470100835,-10.633849881589413,-10.94016014225781,-10.076945652719587,-9.688850842881948,-9.61258263932541,-10.566633803304285,-10.010912944097072,-9.189767620526254,-8.502832549158484,-7.9612797643058,-7.674379415810108,-7.933367066551,-7.516252865549177,-7.839010464027524,-6.9254140118137,-6.050684311427176,-6.142515104264021,-5.608287008013576,-5.007255314383656,-4.877592996228486,-4.423330874182284,-4.749102484434843,-5.675813391339034,-4.901971040759236,-5.699809436220676,-6.136947467457503,-6.060283720027655,-6.324439898598939,-6.039065541699529,-5.198732850141823,-4.414873704779893,-4.30131540261209,-4.5066721476614475,-4.888901352416724,-4.148235615808517,-4.858717855066061,-4.423008190002292,-3.9682330954819918,-3.154384625144303,-3.621312486473471,-4.272504061460495,-4.182155673857778,-4.955666213762015,-4.712920729536563,-4.98753291927278,-4.639569803606719,-3.77705982234329,-4.162477537989616,-4.67923936014995,-5.45374354487285,-4.946982202120125,-4.8817812306806445,-4.361115145497024,-3.9837852171622217,-3.339223171584308,-2.39488834887743,-1.6881404970772564,-1.7935117022134364,-2.644251092802733,-2.1425102171488106,-2.4610040518455207,-2.3374455054290593,-2.3052203683182597,-2.2847297517582774,-1.9265466826036572,-1.3294146708212793,-1.8046155599877238,-1.5277607133612037,-1.8557606497779489,-2.1746788434684277,-3.044577777851373,-2.45526925008744,-2.8775582313537598,-3.494062610901892,-2.6256015268154442,-1.983287135604769,-2.9222039920277894,-3.6434823404997587,-2.778193167410791,-2.544302494265139,-2.4481805032119155,-2.2068576947785914,-2.8233328755013645,-3.376107412856072,-3.613148422911763,-4.5089159198105335,-4.058030133601278,-4.232383835595101,-4.559280616231263,-3.675429704133421,-4.558064901269972,-4.823725959751755,-4.426017746794969,-3.8792923260480165,-2.9421412996016443,-3.427037692628801,-4.049872408155352,-3.4158625439740717,-4.393789347726852,-3.4284306848421693,-3.5682384981773794,-4.199801454786211,-4.161513440310955,-5.120447973255068,-5.069334398955107,-5.382127234712243,-4.512464359868318,-5.416299126110971,-5.137245238758624,-4.7836292665451765,-5.702417552471161,-6.412687175441533,-7.27789000608027,-6.877547083888203,-6.080460357945412,-6.72830128390342,-6.153266027569771,-6.224676645360887,-5.765247718896717,-6.3414758536964655,-6.0470301057212055,-6.627341819927096,-7.259141338523477,-6.274232804775238,-7.046523605939001,-7.645473839715123,-8.12838165462017,-7.345682539045811,-7.458477010484785,-7.4037136430852115,-6.59556281240657,-7.526546117849648,-8.19320927048102,-7.850417202804238,-7.628988227806985,-6.969197686295956,-6.914033487904817,-7.430042174644768,-6.613539229147136,-6.321003662887961,-7.026673404034227,-7.456490593031049,-7.112580465618521,-8.061585476156324,-8.950243023689836,-9.598780275322497,-10.27738870261237,-10.038959924131632,-10.751536673400551,-10.224302697461098,-9.865659265778959,-10.842740701977164,-9.901849014218897,-9.363857513759285,-8.706923416350037,-7.959776628762484,-8.95836866600439,-9.567222120705992,-9.515421786345541,-9.256384122185409,-10.09610187727958,-9.33583046356216,-8.850137216504663,-9.453551110811532,-9.882699261419475,-9.70424576709047,-10.02633628854528,-9.277543139178306,-8.459923963528126,-7.690368489827961,-7.510408957023174,-7.322091537062079,-7.509322571568191,-7.136334608308971,-7.621150564868003,-7.081914274487644,-7.581895139534026,-8.359342131763697,-8.865437648259103,-8.183515429496765,-8.026114913169295,-7.249578828923404,-7.3664860390126705,-6.809075056575239,-6.0637890682555735,-5.120097610168159,-5.824120788834989,-6.343664378859103,-6.0420289053581655,-5.565227201208472,-5.766156281810254,-6.621784372255206,-6.5600949339568615,-7.156622557900846,-7.282579200807959,-6.564453201834112,-6.608716486953199,-5.888842169195414,-5.570105029735714,-5.067793656606227,-5.602111420594156,-5.629645764362067,-4.658680279739201,-5.381107808556408,-5.265423414763063,-5.85048621147871,-6.2450145785696805,-7.091226811055094,-8.090956437401474,-8.725329270586371,-8.151822703890502,-7.64710086164996,-7.032982369419187,-6.819859465584159,-6.822945438791066,-6.996163792908192,-7.033561614807695,-6.721132148057222,-7.443459114525467,-7.889701826963574,-6.929609377402812,-7.541733525227755,-8.089640186633915,-8.21076309448108,-8.715742697473615,-9.570002775173634,-8.83394783269614,-8.242400259245187,-7.513361433520913,-7.200033326167613,-6.579378412570804,-6.899543278850615,-7.423074872698635,-6.844942978583276,-5.875104103703052,-5.395972382742912,-6.122377769090235,-6.940763691440225,-7.11159900855273,-6.423463167622685,-6.779428203124553,-6.924438084475696,-6.229638262186199,-5.9890463491901755,-5.070929118432105,-4.826150449924171,-5.003129666205496,-4.986591974738985,-5.004692641086876,-4.819868206046522,-4.021656651981175,-4.405041091144085,-3.889763329178095,-3.7172472053207457,-3.6415543369948864,-3.7582773906178772,-4.4940477828495204,-5.058151136618108,-5.975361732300371,-5.4402734893374145,-5.935245439875871,-6.651804192923009,-6.285433436743915,-6.620374475140125,-7.4707236853428185,-7.040819100104272,-6.9184186407364905,-6.6752005303278565,-7.611181587446481,-7.154675958678126,-6.570332707837224,-6.226211542729288,-6.345244823489338,-7.270983358845115,-7.969649163074791,-7.5237098429352045,-8.374721444677562,-8.068432505242527,-8.077664685901254,-7.8941322742030025,-7.830428471788764,-8.301650654058903,-7.592324575409293,-8.114901358727366,-7.670610171742737,-7.201908416580409,-7.420912035275251,-7.9749491941183805,-8.191877841949463,-8.00886955857277,-8.309400629252195,-8.924099451862276,-9.389607165474445,-10.091252984013408,-11.046631575096399,-11.286106382962316,-11.40996625367552,-11.703578817192465,-12.366973219905049,-11.545273929834366,-10.845642965752631,-9.965369234327227,-9.223181412089616,-9.628830156754702,-8.81558222323656,-8.696414635516703,-8.658638761844486,-7.682924152817577,-7.014450507238507,-7.7309021055698395,-7.453145413193852,-6.562134034000337,-6.168727730866522,-5.822062514256686,-5.213151861447841,-4.7400765172205865,-4.082036656793207,-4.708772495388985,-4.722161638084799,-4.171589756384492,-3.4833790892735124,-3.980191881302744,-3.362803892698139,-3.1282805930823088,-3.7643377855420113,-4.1665258361026645,-4.663333740551025,-5.505181177519262,-4.785483307670802,-4.712719002738595,-5.42874745791778,-5.782168064266443,-5.041654102504253,-5.454596104100347,-4.8346199677325785,-4.17045776033774,-4.153383605182171,-4.108683628495783,-3.584483420010656,-3.961314506828785,-3.1518858522176743,-2.324043955653906,-2.8963792785070837,-2.5956717412918806,-2.792842151597142,-3.517083889339119,-3.072439704556018,-3.472740065306425,-4.013999331742525,-3.7470301277935505,-3.0924910586327314,-3.2299823998473585,-2.7370978202670813,-3.4152806191705167,-3.910055820364505,-3.726695286575705,-3.7569283209741116,-4.552400325424969,-3.902572891674936,-4.089622570667416,-3.181485685519874,-3.4278392056003213,-2.698407609015703,-2.5463187163695693,-2.0047387974336743,-2.466344360727817,-2.004271567799151,-1.5853284047916532,-1.5107962032780051,-1.2993453377857804,-0.4947450766339898,-0.9720483236014843,-1.4995066174305975,-1.4205909832380712,-1.6581266266293824,-2.3578210952691734,-1.9512615902349353,-1.0399447465315461,-0.8140649846754968,-1.3449040302075446,-1.1252905605360866,-1.3133491887710989,-1.758447824511677,-1.7820910895243287,-0.7956936564296484,-1.6820734371431172,-1.9998647491447628,-1.3733798675239086,-1.4248138284310699,-0.564341600984335,-1.3751807939261198,-1.3409800166264176,-0.4065287406556308,-0.4293558360077441,-1.0865982854738832,-0.7145151384174824,-1.3848211043514311,-0.9691052380949259,-1.7688607848249376,-0.8123514233157039,-1.1760476562194526,-1.9265853906981647,-1.2701253104023635,-0.7296088109724224,-0.07476935349404812,0.07134253066033125,-0.33364429883658886,-0.46694824704900384,-0.47178239561617374,-1.093002112582326,-0.6469382327049971,-1.357702201232314,-1.7434905860573053,-2.643080629874021,-1.7312172264792025,-1.7940663527697325,-0.9380185049958527,-1.772239935118705,-1.2751047681085765,-1.9451366090215743,-1.2064803685061634,-1.641180052421987,-2.042135186959058,-1.7071134112775326,-1.3761694533750415,-0.9548400142230093,-0.0033406889997422695,0.5261865695938468,-0.07284228736534715,-0.1458931346423924,-0.5051167500205338,0.49320911476388574,-0.11936180992051959,-0.21595106925815344,0.2867580894380808,0.20958018396049738,-0.5099433250725269,-0.8669899115338922,-0.7150310887955129,-1.502631886396557,-0.6273978385142982,-1.535589860752225,-2.40745588298887,-2.8221093406900764,-2.6742096510715783,-2.9169299276545644,-2.0856295973062515,-2.2259060610085726,-2.39270654367283,-3.0438627167604864,-2.59449719497934,-2.181679226923734,-1.9558324594981968,-1.8169674761593342,-0.9742071558721364,-0.9080789652653039,-0.32719981111586094,-0.7063189060427248,-1.2040971252135932,-0.38998511573299766,-0.8647782439365983,-0.02238588687032461,0.837599384598434,0.5171623765490949,0.42266636760905385,0.17389051476493478,-0.6025547636672854,-0.6684004976414144,-0.888790319673717,-0.10680891247466207,-0.08530905703082681,-1.0809585889801383,-1.1049049012362957,-0.7029335307888687,-1.2393929129466414,-0.9084825138561428,-1.2175389137119055,-0.5870368317700922,-0.7881923639215529,-1.7805751077830791,-1.3019095212221146,-1.8083150293678045,-1.601445283740759,-0.6018325490877032,-0.534762374125421,-0.6153519065119326,-1.5253498209640384,-0.8988289749249816,-1.3522409535944462,-1.400102916173637,-0.5530634401366115,-1.2361550736241043,-0.6485716495662928,-0.3988296603783965,-0.16648958902806044,-0.7369900201447308,-0.652926729992032,-0.6430181507021189,-0.23785798624157906,-0.7741720047779381,0.15490881633013487,-0.5488797090947628,-1.1392635288648307,-2.01514776609838,-1.9426271109841764,-2.0342353926971555,-1.828295771498233,-0.8513754303567111,-0.26235679909586906,0.37241921853274107,0.28886448545381427,-0.4543435350060463,-0.9243634291924536,-1.7274625087156892,-1.6097329552285373,-0.6522238948382437,0.32290671253576875,0.6124881198629737,1.489968006964773,0.7587858247570693,0.7129064467735589,1.3829735140316188,0.5533856274560094,0.5268037673085928,0.3384678717702627,0.34278472093865275,0.19888788415119052,-0.049428545869886875,0.1659979415126145,-0.45043839886784554,-0.7378679583780468,-0.14574205316603184,-0.44170263409614563,-0.6162179512903094,0.2194479126483202,-0.7256228933110833,-0.49770307866856456,0.33048525219783187,-0.3744008718058467,-0.7582167619839311,-1.4032273716293275,-1.167573251761496,-0.6631472082808614,-0.24299505585804582,-0.987016387283802,-0.9026792487129569,-0.7950805760920048,-1.7368453415110707,-2.6366475163958967,-2.048130783252418,-1.4410661575384438,-1.0108434865251184,-0.29694943502545357,-0.7508761854842305,-1.1043332456611097,-1.8554316461086273,-2.306317347101867,-2.959628277923912,-3.818563164677471,-4.017237232532352,-3.296491294167936,-2.643917392939329,-2.35242988076061,-1.4660898079164326,-0.8318778444081545,-1.7749753496609628,-1.5541590615175664,-0.8376624155789614,-0.12973473547026515,0.6463573640212417,1.5234295269474387,1.771984063088894,1.7681562383659184,2.600566536653787,1.9659226848743856,1.2760136225260794,1.505455544218421,2.479530782904476,2.698966532945633,1.7225099126808345,1.6150600290857255,1.8870285446755588,2.7451730594038963,3.7420533639378846,3.160062262788415,3.0961401159875095,3.5169226550497115,4.32242069626227,4.468697391916066,4.433980125002563,3.9827962946146727,3.497293746098876,3.9235701905563474,3.9789151991717517,3.1169412969611585,3.6218574484810233,3.7464267159812152,3.1152408495545387,2.5121896942146122,3.433123152703047,2.6506610508076847,2.6941783824004233,3.629608369898051,4.241769496817142,3.909308375790715,3.8677841322496533,4.086471974849701,4.667846669908613,4.593880664091557,3.730335208121687,4.711950990371406,4.118181488476694,4.481007933616638,5.246745951473713,4.542686006054282,4.797137145884335,3.8126140353269875,4.352719246875495,5.199911969713867,4.711539642419666,5.269966773223132,5.5857361615635455,6.057674624491483,6.231865313369781,6.258857417386025,7.180595962330699,7.709708919283003,8.475821382831782,7.923538521397859,7.773118813056499,8.50162700144574,8.03060603979975,7.662748085334897,7.759650240652263,7.084702224005014,6.901585589628667,7.495921942871064,7.262359215412289,7.925672964658588,7.5478146290406585,7.691704463213682,8.136015168391168,8.672008698340505,8.99966627266258,8.063171943183988,7.6397060956805944,8.240242603700608,8.58700322220102,8.266590103507042,9.20943366503343,8.612377749290317,9.587032776325941,10.138372794725,10.253812187351286,10.678330345079303,11.115272861439735,11.208929810672998,11.86683788895607,11.636141269467771,11.761402985081077,10.850343704223633,11.820331193972379,10.995473097078502,11.833951731212437,10.916395284701139,10.746831244789064,10.721134991850704,10.006842700764537,9.52741989865899,9.052028089761734,9.31049786368385,9.150871539022774,9.199976334348321,10.077015558257699,10.681151099037379,10.67491251276806,11.50616497034207,11.7195824990049,10.847546278033406,11.593234191648662,11.038688980042934,10.552513961680233,10.199586091563106,10.309774051886052,10.910770062822849,11.063912640325725,11.81285786582157,10.956267965491861,10.25565970968455,9.87785166548565,10.45880152983591,11.017813481856138,11.203812565654516,11.115297519601882,10.86244540149346,10.431323080789298,10.398709404282272,9.57655842229724,9.196944520808756,8.536027976311743,8.807610724121332,9.402847312390804,9.324887573253363,10.1335405590944,10.625016909558326,9.90774087421596,9.688029173295945,10.669228958431631,11.076395093929023,10.307394824922085,11.010080843698233,10.330795989371836,10.82537864241749,11.138851774390787,10.848072830587626,10.664895294699818,11.05383959878236,10.380273035727441,10.275072293356061,10.16335801500827,10.310769876465201,10.049365226645023,10.846593640279025,11.239144306164235,10.249863873235881,11.098782611545175,10.643645058386028,11.615593504626304,11.022305038291961,10.369192799087614,11.086657868232578,11.430165975354612,12.094483414199203,12.849783395882696,13.681638709269464,14.25232586497441,14.960085874423385,14.739038432948291,14.086470494512469,14.174211658071727,14.16110356291756,13.34916070709005,12.848432321567088,12.031892113853246,11.697789315599948,11.437775035854429,12.379567918367684,11.551859623286873,12.150887876749039,11.333923686761409,12.143051818478853,12.947879236191511,13.200005033053458,12.500033508054912,12.925632684957236,11.993726873304695,11.116466626059264,11.803337859455496,11.011076911352575,11.621667422819883,11.134387949947268,10.175160957034677,10.696868992876261,10.876137333456427,10.973472119309008,10.80974899418652,11.558785885106772,10.636252710130066,9.914115889463574,8.958559229504317,9.54300295561552,9.835295958444476,9.822823931928724,8.827481637708843,8.899763993918896,8.025720075704157,7.9194975681602955,7.072919446974993,7.643313997425139,8.3351120329462,7.589380894321948,7.758833275642246,7.447909684851766,7.293303627055138,8.14722046814859,7.15876733744517,7.587567766197026,6.836941389366984,7.533715443685651,8.082668113987893,8.43705675099045,8.013803853653371,7.56450782250613,8.318349601700902,8.615484026260674,8.047615399118513,8.841772467363626,9.561759570147842,9.21273255161941,10.149601828306913,9.2658777134493,9.62414079811424,9.060611142776906,8.060889709275216,7.151458622422069,7.8987567108124495,7.090859982185066,7.74228135868907,8.449511095881462,7.755078049842268,8.029951417818666,7.62029151013121,7.083478611428291,6.617159354034811,6.809982353821397,6.162304766476154,5.958521518390626,5.960656763985753,5.427984178531915,6.2925091604702175,7.069450546056032,7.180357127916068,7.89348859898746,7.708966902922839,8.480095109902322,8.174590665381402,7.236436645966023,7.872288178652525,8.488872922956944,7.513945571146905,7.31222796626389,7.061428806744516,7.4896963546052575,8.40361521113664,9.204328624065965,8.676871070638299,8.191332219634205,7.788689760491252,7.936347797047347,7.033107682131231,7.204955894500017,8.18969578994438,8.395785465836525,8.805204321630299,7.92079242458567,8.067700745537877,7.912355899810791,7.910346657969058,8.191117517184466,8.15176585642621,7.264448083937168,7.763894798699766,6.8669061115942895,7.727036275435239,7.94147118832916,8.821650453377515,9.35954675450921,10.297004389576614,10.166510751936585,10.749001074582338,11.163958589546382,11.426070179790258,12.119012762792408,11.762604936491698,10.96063167322427,10.984682438429445,10.842815991025418,11.821849815547466,12.208825136069208,13.007147819269449,12.612977920565754,12.651353162247688,12.496306104119867,11.755490236915648,11.693797105457634,11.671312080230564,10.83053868683055,11.692883016075939,11.32266541942954,11.968288828153163,12.64587104646489,11.80356285115704,12.115871878806502,12.24120995728299,11.825000041630119,10.85268150223419,10.573709131684154,10.784400873817503,9.95824877684936,10.029355053324252,9.572528133168817,10.47311694547534,11.357488084584475,10.891356566455215,10.06253011804074,10.289200510364026,9.609683718066663,10.312220779247582,9.929303887300193,9.522046441212296,10.357720295432955,10.414266847539693,10.365038451272994,9.886442555580288,9.192633742000908,8.334258297458291,8.954785373527557,9.041038948111236,8.912857410497963,8.633647149428725,9.163717230316252,8.84746615961194,8.364208733662963,8.610795178916305,8.45457987813279,9.195727298036218,8.43509280262515,8.799301458522677,9.083415551111102,8.234478648751974,8.61762815201655,8.541207395959646,8.894464149139822,8.925342653412372,8.573846360202879,7.655656617600471,7.859679712448269,7.264284403063357,7.1162377474829555,8.073509707581252,8.120703055057675,8.266938706859946,8.785886190366,9.221167715732008,10.153983355499804,9.707629648037255,9.797119429334998,10.607905969023705,9.852641049772501,10.753171421121806,11.192656935192645,10.361945886630565,10.42845228035003,11.344283923506737,11.617035017814487,10.673232363071293,10.431868552230299,9.854650155175477,9.229448705911636,8.930445458274335,9.78890746505931,9.801434349734336,10.288706437684596,10.237149436958134,9.556632158346474,8.606069946661592,8.78947571432218,9.460054389201105,9.396104434970766,8.58995658904314,9.384508977178484,9.924851190298796,9.22617116291076,8.800476935692132,9.094342868309468,9.096477632410824,9.25512811820954,9.946735290344805,9.417651528026909,9.353788026142865,9.472667064517736,9.774840871803463,9.313633118290454,10.10849307058379,9.652403087820858,8.659058868419379,8.339900188613683,8.147140800021589,8.17882158095017,7.832627429626882,8.82534038927406,8.04622269468382,7.80823981249705,8.126686692703515,8.80359539622441,9.137140847742558,9.597225797362626,8.699336835648865,7.925082735251635,7.481950294226408,7.605368989054114,7.867588410619646,7.897265292238444,7.531783671118319,8.13235087506473,8.735869321972132,9.441506874747574,10.358057544566691,9.783353537786752,9.214336446020752,9.113467919174582,8.899933200795203,9.7066246047616,10.252958725672215,9.284228740725666,9.765644641593099,10.000757400877774,10.955620961729437,10.864363522268832,11.757150125689805,12.672006663866341,11.92928112251684,11.384732199367136,11.321452161762863,12.219977386295795,11.235351608600467,10.643592237029225,11.22936222748831,11.863021324854344,12.51248867623508,12.353985676541924,11.888263973407447,11.514575073961169,10.590354443062097,10.448657719884068,11.393679609987885,10.579194629564881,10.12106600496918,10.820668040309101,10.351961881387979,10.727666184771806,9.843065215740353,10.482122880406678,10.607513282913715,9.767130670137703,9.5656577674672,9.253768320661038,8.281501383520663,8.408134219236672,7.992097921203822,8.678009458817542,9.12800442148,9.316330390516669,9.307268697302788,8.787701881490648,9.691785572096705,10.238833343610168,10.338365403469652,10.64240357466042,11.226057128980756,10.801822536624968,10.61442525871098,10.59465701971203,9.978655240498483,9.76637029927224,10.150947017595172,10.788715814705938,11.624278126750141,11.476148220710456,11.309781194198877,10.837383291684091,10.342122915200889,10.195397606585175,10.497214938979596,11.101495876442641,10.426330213900656,10.275479953270406,9.627490651793778,8.941956466529518,9.240031932946295,9.556411050260067,10.015094600617886,10.08529594168067,9.707749018445611,9.869475326500833,10.322200499475002,11.158951367717236,12.023084776010364,12.899982153903693,13.142047414556146,13.715112938079983,13.90514935972169,14.7979907062836,14.393894806038588,14.642951159272343,14.219679165631533,14.26879632100463,15.044011568650603,14.621949412394315,14.99980481294915,14.420373833738267,13.905870961025357,14.784791081212461,15.294700684957206,16.247285520657897,16.236986978910863,15.937062894459814,15.12210141448304,15.501975786872208,15.665331883821636,14.90058372542262,15.248053299728781,14.287706686649472,13.750848951283842,12.996175622101873,13.817710053641349,13.87049933988601,13.096218866296113,13.609689104370773,14.344307228922844,14.529189163818955,15.335797203239053,15.146900083869696,15.954715687315911,16.402723662555218,17.395188946742564,17.106671747285873,16.532394809182733,16.127677059732378,17.009233321528882,17.41481272317469,17.67102681333199,16.696091199759394,16.4847853272222,17.290358904749155,17.52980817016214,17.642310515977442,18.067763001658022,18.551214541308582,18.791371102444828,19.35064165527001,18.70027016615495,19.47014799527824,20.118862671777606,20.846681888680905,20.748152394313365,20.43573123915121,20.24896426172927,19.302686917129904,19.08123220736161,19.260295699350536,18.868868748191744,18.74588598823175,19.192214806564152,18.44946805294603,17.882941651623696,17.854571445379406,17.255268074106425,16.856802091933787,17.34336820151657,18.306654825806618,17.32427827361971,16.64539166772738,17.38099678698927,18.175647140014917,18.292220960836858,18.514514066744596,19.265786152798682,18.662635148968548,19.079068533610553,18.28161426447332,18.405458556022495,17.704021295998245,16.91023145010695,16.87410934921354,17.01896423753351,16.742084491066635,16.251944612711668,15.338159514591098,14.999689370859414,14.774817185942084,15.077947631012648,14.083691442850977,14.159661018755287,13.63284032419324,13.598253075964749,12.94533104589209,13.330442618578672,13.246466386597604,12.344874423462898,13.113774658180773,13.348474723752588,12.568843195680529,13.27388761099428,13.233308905735612,12.690672951750457,12.252370462752879,11.40847947774455,11.011946955695748,11.861622737720609,11.134855838026851,11.36197018250823,10.632191204931587,11.488093874882907,11.494240931700915,12.12945682508871,11.716826412826777,12.54264412354678,11.593309545423836,11.276489363051951,10.370762983337045,11.012220653705299,11.06151827191934,11.175754893571138,11.734047059435397,11.921605840791017,11.998511692043394,11.722717392258346,11.408679217565805,11.002561820670962,11.781965867150575,12.661510795354843,12.552007208112627,12.549970971420407,12.522694930434227,12.224734029266983,12.043945888988674,12.099300128407776,11.640989291947335,11.967954807914793,11.297708535566926,12.274627764243633,12.507241076324135,12.41346535179764,13.095083306077868,12.608087968081236,12.184368301182985,12.591778108850121,13.468979325145483,13.526663567405194,14.523499606642872,14.834746527019888,14.63109467132017,13.686303220689297,13.824726842809469,13.615057695191354,13.439509237650782,13.081297089345753,14.071962352376431,13.479181610513479,13.230606840457767,13.878904499579221,14.837279128842056,14.581442448310554,15.221311550121754,14.29247762169689,14.839367347303778,13.989536443725228,14.430933489929885,14.202435814775527,13.941144881770015,14.549903829582036,13.767665181308985,13.575295343529433,13.930380655452609,14.63013590266928,14.633315687067807,14.447024552617222,13.582938395440578,14.420109272934496,14.822298927698284,13.900976623408496,12.95204823417589,13.64976213593036,13.639984163921326,13.058089036960155,13.291374467778951,12.437020721379668,12.389581808820367,13.101125301327556,12.63758625742048,13.256324712187052,13.976164205931127,14.136915605515242,13.717026663944125,13.82410670304671,14.819686444476247,15.588802904356271,16.340540127828717,15.394941937644035,15.277158612385392,15.407167271710932,15.097535393200815,14.173748838249594,13.427087923046201,12.986239145044237,12.791695984546095,12.718114156741649,12.91817418532446,12.820380832534283,13.661239624023438,14.421692983713001,15.008066861424595,14.438444049563259,15.080009467434138,14.835516307502985,14.021439671050757,14.931947849225253,14.771892465651035,14.457236121408641,14.50491056079045,13.731794060673565,14.551359103061259,15.125543471425772,15.806900346186012,15.929537551943213,15.092447470873594,15.026756174396724,14.882586259394884,14.119277636054903,14.929728827439249,14.88684413023293,14.81356554152444,15.647512899246067,15.05916195968166,15.32769960258156,14.845613637007773,15.04455304844305,15.458644072525203,15.48681493010372,15.761291729751974,15.935318329371512,15.28235931508243,15.559407881461084,15.895025911275297,15.761767559219152,15.151552739087492,15.318998304661363,15.338497937656939,15.338768398854882,16.237088380381465,16.98476278502494,16.598730782046914,17.566555047873408,16.906101648695767,16.369113123510033,15.911098308861256,14.92631335137412,15.247736253309995,14.5964441196993,13.607554879039526,13.535155435092747,13.887692579999566,14.739027747418731,14.327162145636976,14.596553360577673,14.326369183138013,14.041250074282289,13.944325219839811,13.18089503608644,13.795365557074547,13.58812453923747,13.716034171171486,13.483879667706788,12.540222356561571,12.155621228273958,12.852184826508164,12.939431982114911,13.606316890567541,13.565848322119564,12.745370770804584,13.695991156622767,14.336231144145131,13.619418210349977,13.403737231623381,14.31175479060039,14.029085081070662,14.74555955734104,14.547881598118693,14.544932341668755,15.377742341719568,15.897585662081838,15.810124065726995,15.812414443586022,14.84486685693264,14.923885577823967,14.852694472298026,15.550110833719373,14.874158946797252,15.850390661973506,16.797957352362573,17.244687363971025,16.50671340804547,15.635300111025572,16.396742635406554,16.842292873188853,16.740513551980257,16.704602145124227,16.946818868163973,16.850828225258738,16.08141515031457,16.383417815435678,16.746964515186846,17.504179308190942,18.339239563792944,18.876317272894084,18.163466410245746,18.055357424542308,17.28121814643964,16.48421246604994,16.544033279642463,16.388715902809054,16.305024718865752,15.703986754175276,15.473533073440194,15.70809667557478,15.647096551023424,15.964452406857163,15.206414329819381,15.74015698255971,16.190822161734104,15.465651291888207,16.19985096808523,15.345445685088634,15.111224104184657,15.574405229184777,16.45983427017927,16.027691836003214,15.68580391164869,15.490789294242859,15.062334414105862,14.807227230165154,14.81232012854889,14.433005105238408,15.108315621502697,14.288284194190055,15.241800964344293,14.4544434142299,13.709649338386953,13.301506843417883,13.730953389313072,13.190815827343613,13.117641414050013,13.668486601673067,14.618136362638324,14.277173991315067,14.271436027716845,15.07657829998061,14.258787779137492,14.155827961396426,14.792726561892778,14.86165974335745,15.031131140422076,16.025126164313406,15.507764623034745,14.94366090092808,15.923752351198345,15.089745554607362,16.07814367581159,15.690303487237543,16.571187825407833,15.752359872683883,14.983262734487653,14.188271532766521,15.1061170110479,14.637001814320683,14.903493559919298,14.64528278587386,14.317617912311107,14.97145340917632,15.765429235994816,15.451707923784852,14.650777785573155,14.894252591766417,14.956258870195597,14.85789866792038,13.89566479390487,14.681288743857294,15.51103278575465,14.835701725911349,13.900277990382165,14.463239876553416,13.934066030662507,14.734747898764908,15.259424689691514,15.802999189123511,16.337408339604735,16.998388634528965,16.70674714911729,16.687471116892993,16.012123636435717,16.140766186639667,16.717400822788477,16.098068034276366,16.733176938723773,15.795854880940169,15.685151388403028,14.885607790667564,15.541095722466707,16.158058715052903,15.83289703540504,15.056710980366915,14.918036587536335,14.604430513922125,14.41500350041315,14.478831256739795,13.809982605278492,13.320398385170847,13.754013596102595,14.042480953037739,13.548116205725819,12.845304177608341,12.632899650838226,13.435644265264273,13.086636082734913,12.651404418051243,13.427649044431746,12.729030980728567,12.897625943645835,13.731142371892929,13.260366772301495,12.5408053137362,12.057064070366323,12.031885859556496,11.809809118509293,12.312521053478122,11.619288236834109,11.67714624479413,10.986347624100745,11.63393347011879,11.412434562575072,11.494851833209395,11.6497543444857,11.519969411194324,12.138380544725806,12.968702957034111,13.334987347945571,13.29231337690726,12.889192936941981,12.275931751355529,11.845224295277148,11.982818159740418,11.027857203036547,10.048040487337857,10.104187215212733,9.560963524039835,9.500066260807216,8.889429637230933,9.50661156186834,9.85744726890698,9.518254095688462,8.59036249294877,8.699937771074474,9.289048858452588,9.00335661508143,9.734459553379565,9.95524369366467,9.108214238658547,9.255988637916744,9.565409245435148,10.012640127446502,10.10249007306993,9.792957295197994,10.278159405570477,10.453384266700596,10.794524046126753,9.937797664199024,9.522269255947322,10.515623847953975,10.03269765432924,10.009495415724814,9.169601342640817,8.848201855551451,9.383699401747435,8.390499985776842,8.67124200426042,7.723100598435849,7.050824286416173,8.011116344016045,8.888683394994587,7.919973507523537,8.201914260163903,9.133050381671637,10.08013027580455,11.051675508730114,10.599207040853798,11.048986597917974,10.957125456538051,11.334064862690866,10.48012780584395,11.327878659125417,11.558001316618174,10.846654501743615,11.228611360769719,10.72300333995372,11.344016569666564,11.003218591213226,11.809385290369391,12.101175738032907,11.54144687158987,12.328447825741023,12.156616911757737,12.33283768268302,11.535221681930125,10.692937795538455,10.725596733391285,9.884083071257919,8.887633148115128,9.204706839285791,9.334342753514647,9.293874049093574,9.183494406752288,9.09094420215115,8.186036943923682,9.14489348884672,9.069569393061101,10.00135183474049,9.023346892092377,9.012364238500595,9.355144593399018,9.664212167263031,9.105127680115402,9.006976248230785,9.273786676116288,9.564795413054526,10.36902880249545,10.2514360495843,10.371018381323665,11.136427610181272,11.899317510426044,12.860571753699332,12.763976854272187,12.403582862578332,11.740421442780644,10.959395613986999,10.51648053061217,10.833939019124955,10.555628282949328,9.707947375718504,10.429147759452462,10.081877735443413,10.843857491854578,11.495824746321887,12.26658167457208,13.136705024633557,12.28490469744429,12.703658623155206,13.505072965752333,13.36116797477007,14.243050034157932,14.65637995582074,15.198535648640245,16.104493275284767,16.836444434709847,17.37281792005524,17.094818262383342,17.6749688340351,16.686775617301464,17.629446858074516,17.124806829728186,17.788587931077927,17.28408613568172,16.517040639650077,16.280599402729422,15.724179898388684,15.557716583833098,14.628419413231313,14.86384050687775,15.123518741689622,15.210118351038545,14.834324416704476,14.847912008408457,14.157675414346159,14.435421723406762,13.769411461893469,14.060321972239763,14.236044486053288,14.374646573327482,14.094356185756624,15.06705480022356,16.057467913720757,15.463522912468761,14.852903477847576,15.214918912388384,15.762239526957273,15.619192469865084,14.747596846427768,14.265702590811998,13.530674259644002,14.101611236575991,13.241254525259137,12.990120724774897,13.744542744010687,13.801899980287999,14.419741679914296,14.671992300078273,15.172665920574218,15.705166439060122,15.387412540614605,15.1294309431687,15.919577448163182,15.26820508344099,15.707670361269265,14.830168331507593,15.414836152922362,14.712568236980587,15.696830000262707,16.458136646542698,15.865981947630644,16.258147452492267,16.677318399772048,17.316825091838837,16.773796334397048,16.250500820111483,15.518765543587506,14.724341886118054,14.60994946025312,14.337564977817237,14.515445898286998,13.646761389449239,12.743381535168737,12.061047308146954,12.43768847361207,13.226759843993932,13.799926273524761,14.651383089832962,13.719054328277707,13.527823922690004,12.898111863993108,12.23215161031112,11.395408230368048,10.71119274944067,10.985730200074613,10.454292403534055,10.049908057320863,9.560341598000377,9.898790519684553,8.992727098055184,9.4231051877141,9.682947455905378,9.368758766446263,9.361143541056663,8.85128671163693,8.179693252779543,8.038680982310325,8.278228564187884,8.320177517831326,7.641243144869804,8.325963104143739,8.205085841938853,8.502561227884144,8.472927138675004,8.253757636994123,8.537761723157018,8.665737280156463,9.254012984689325,8.378777897451073,7.427174028009176,7.2952587101608515,7.094091452658176,6.3652300224639475,5.873135996982455,4.882322924677283,5.292670686729252,5.0522259045392275,5.3917157906107605,5.992637338116765,6.65384124359116,7.594158051069826,8.23262011166662,8.290147983003408,7.531847356818616,6.80142897926271,6.522928268648684,7.430060829501599,8.37705532927066,8.339109415654093,8.53156169038266,9.166690016631037,8.360494498163462,8.10554280411452,8.73491420224309,9.476407695095986,9.906421757303178,9.231493148487061,9.399942273274064,10.13150581298396,10.835113258566707,10.567379847634584,10.823568123858422,10.453522440977395,10.042440599761903,10.16759104654193,10.744565444532782,11.592682528309524,12.317227804567665,11.724050399847329,11.340385453775525,10.469509331975132,11.325284350663424,10.576052182354033,10.140714869834483,10.18940342310816,10.700473919976503,10.485442127101123,11.45479940250516,11.5603185496293,10.583699999842793,11.257604368962348,11.265092582907528,11.341521145310253,11.50572261447087,10.83008806174621,10.708912656176835,9.750752044841647,9.7541767610237,9.624109678901732,9.824903449509293,8.90479828696698,9.12567594787106,9.220708098262548,8.470104185398668,9.379538867622614,9.926933601032943,10.649019895587116,11.592333519365638,12.044367608148605,11.806599728297442,10.937010585796088,10.001286102458835,10.10588921001181,11.009082104079425,11.408253858797252,10.912670637480915,10.251747503411025,11.23636434506625,11.581959778442979,11.799536131788045,12.530214013531804,13.197589848656207,13.97770574549213,13.080634254496545,13.228850268293172,13.265816437080503,13.917454298119992,14.851464163977653,14.50619425624609,15.348345729988068,15.373460051603615,14.472159106750041,14.813685569912195,13.862871044781059,13.52758395159617,12.643621893133968,12.870656139217317,11.953254403546453,12.029580634087324,11.940989006310701,11.61434475518763,11.266233385074884,12.206312566064298,12.788157248403877,12.094898200593889,11.43948068516329,12.119153808802366,12.671450669877231,13.268426367081702,12.746573527809232,13.315987488720566,12.381558563560247,12.172806642949581,12.062635921407491,12.251736557111144,13.023632974363863,13.00155505631119,12.478154577314854,12.862846992909908,12.528473449870944,11.679005023092031,12.533969921059906,12.844452105928212,12.853163145016879,13.576117802411318,13.406858714297414,13.316731687635183,12.817255279514939,13.243005791213363,12.660660666879267,12.057511039543897,12.62382152909413,13.594873480964452,13.524953395593911,13.356007928960025,14.249690887983888,14.032520252745599,13.951069038361311,14.573023957200348,13.889548297971487,13.725351442117244,13.031068170908839,13.492767988238484,12.921460610348731,12.471337740309536,11.59668651316315,12.346870211418718,11.711153751704842,12.289928167592734,12.467725473921746,11.497259812429547,10.908042910974473,11.485302438493818,11.510095230769366,11.81934648565948,12.808105927426368,12.396684687584639,13.154325557406992,12.302887893747538,12.582473148591816,12.338282563257962,11.717975033912808,12.280954413115978,12.382346217054874,12.918411607388407,12.552495959214866,12.057979714125395,12.19834380177781,11.693013401702046,11.93459883891046,12.411520001944155,12.936989226844162,12.121296899858862,11.767144218087196,11.169030720833689,10.945858967490494,11.540577681735158,12.081418426241726,11.889812347944826,11.706638134550303,12.609602404758334,13.242060975637287,13.951507702004164,14.017682530917227,13.96839052438736,14.94808109011501,13.998675439041108,14.379217662382871,14.190513269044459,13.297112016472965,13.701657757628709,13.138513503596187,13.648272308520973,12.796904894988984,12.775372059084475,12.937703135423362,13.925702597014606,14.448707019910216,14.367448412347585,14.375570348929614,14.942845524754375,14.031324182171375,14.450928079430014,15.03235312923789,15.948966659139842,16.089773695450276,16.10223041055724,17.08351533487439,17.081901914905757,16.349355125334114,16.2265365566127,15.733416443224996,15.789490998256952,15.825929804239422,16.448475485201925,15.708624244201928,16.05088033620268,15.532933712471277,15.969846067018807,15.191003954969347,16.064510530792177,16.083510701544583,16.683584166225046,16.596326005645096,16.739233666099608,17.188831069506705,16.558972547762096,16.05854840669781,16.352174297440797,16.624337445013225,17.588862673845142,17.13022647704929,16.79703813744709,16.584995958022773,17.105979930143803,17.59975437587127,17.845689407084137,17.02724142605439,16.258552733343095,15.776993379928172,15.551606772933155,15.611567901913077,15.238564622122794,15.08401345834136,14.433707736898214,14.250986890867352,13.641489217989147,13.411496742162853,12.666822240222245,11.67546742875129,12.667455657850951,12.231145250145346,11.989216795191169,11.67031958932057,12.33538327459246,12.312774900346994,12.613144292496145,12.976294936146587,12.574229016900063,13.310512102209032,13.405786188784987,12.623056974262,12.65134720178321,13.209767706226557,13.943756331689656,14.165359809529036,13.39297393662855,13.205407395027578,13.962650740519166,14.773405974265188,15.108247419353575,14.785420068539679,14.801569789182395,13.81465260218829,13.338781676255167,14.08648730814457,14.84385566180572,14.92231577122584,15.627577874343842,14.692182628437877,14.380141318310052,13.873781410977244,13.491478340700269,14.103602391667664,13.247922183014452,13.377667830325663,13.119729168713093,13.5173264965415,13.795292489696294,14.470180288422853,14.947956941556185,14.510128546506166,14.119667961262167,15.047340601217002,15.511605450883508,15.284103836398572,15.736696188338101,15.199590825941414,15.422022089827806,15.35456504439935,15.472514831461012,15.800367132760584,15.568041137885302,15.096797130536288,15.009665552061051,15.435460258740932,14.465827947482467,14.303107860963792,13.635116764344275,12.859107103198767,13.480269961990416,13.30683344649151,13.875170436687768,13.177652705926448,13.258775101974607,13.790286312345415,13.560677128843963,13.062990556005388,13.742855981457978,13.074836186598986,13.595853389706463,14.186375748831779,15.16489281039685,15.499233028385788,15.248243049252778,16.13552839308977,15.56891709100455,14.813361222390085,15.071963745169342,15.13653229502961,16.04199507832527,16.555802663322538,16.76372475270182,16.301869328599423,15.925715624820441,15.812095301225781,16.473386103753,16.087331695482135,15.298069181386381,14.69341681106016,15.36317327618599,15.360522619448602,14.557528609409928,14.964864526409656,14.969295826274902,14.937840756494552,15.85390266450122,15.536032953299582,16.247212181799114,16.146428126376122,16.156758110504597,16.246425530407578,17.170874127186835,16.876151332166046,17.50127905420959,17.532842322718352,18.397657626774162,18.234851158224046,18.203553303144872,17.974048893898726,17.84184652240947,18.795484524220228,18.838228316046298,18.84625688754022,19.460335074923933,18.633498997427523,18.610588302835822,18.54054521722719,17.816142632160336,18.38720590202138,18.207806575577706,17.3427724391222,17.412168487906456,16.4968551537022,16.651090518105775,16.695320285856724,17.023477013688534,17.575617404654622,18.1494694291614,18.83270636247471,17.87763474462554,17.03935339814052,16.974551172927022,16.126642113085836,15.443958388641477,16.184566081501544,15.185857724864036,14.29869919968769,15.189979506656528,15.416453470475972,15.575889035128057,16.030246327165514,16.290764800738543,16.543314351700246,17.45143400039524,17.52598743326962,17.511372319888324,16.792223387397826,17.321473738644272,18.170535450335592,18.262481316458434,18.50953054940328,18.480959012638777,19.349966128356755,20.237870917189866,20.866432177834213,20.875551981385797,20.480186353437603,20.77692941715941,19.796372218523175,19.975613912567496,19.000942251179367,19.900439489167184,20.191472047008574,20.897773065138608,20.20018426468596,19.23994174785912,18.47524361964315,18.063732577953488,18.419182592071593,19.14931272994727,19.857541411649436,19.806662644725293,20.58113183733076,21.52440042514354,22.445760196540505,23.395725985057652,22.5129733113572,22.956776385661215,23.65014499053359,23.220901049207896,22.376341898925602,22.924441068898886,23.879032365977764,24.777528007514775,25.278200740460306,24.836944623850286,25.61610555788502,24.64240451529622,24.674435062799603,25.48081612586975,24.58503205422312,24.889129709918052,25.229790129698813,25.419345995411277,24.625223007518798,24.444530393462628,25.42551686987281,26.02721694065258,26.72155530191958,26.69715256197378,27.440816389862448,27.52099135098979,27.03257285244763,27.775495155714452,28.39177729189396,28.692560403607786,29.50398533185944,29.10595932882279,28.73477147286758,27.97754830541089,27.735711574554443,27.445129740051925,28.264071138110012,27.63252839911729,27.56086523644626,28.134199840016663,27.40703067369759,27.89721560664475,28.25757275056094,27.2964017088525,27.09001836553216,27.11823802953586,26.76937806373462,26.995960779488087,26.54755326639861,27.057750430423766,26.708976099733263,27.65587615314871,28.547526489011943,27.808265659958124,28.577238576021045,27.74658101471141,27.79423088254407,27.04663602123037,27.23287699557841,26.647768599446863,25.70896008424461,25.31928109563887,24.720926148816943,25.09105267934501,24.649271179921925,24.026996579486877,24.621447475627065,25.28331073652953,25.026167484000325,25.81849999120459,25.05747215822339,24.28277176618576,23.71608495572582,22.982355397660285,22.75003297254443,23.002076847478747,22.558926339261234,23.44805707456544,24.338840605691075,23.528884360566735,24.171245569828898,23.2610250050202,23.89085210300982,23.66167250648141,22.75175883434713,23.707071136217564,23.008443159982562,23.143066683784127,22.699413363356143,22.315367453265935,22.90669388184324,23.707493438385427,24.53692400082946,24.22154921386391,24.585017102770507,24.01446503866464,23.13317930838093,23.144873612560332,22.94086986174807,22.478707855567336,22.79977125581354,22.097631915006787,22.998257517814636,22.446369238197803,21.722300492227077,21.6837475807406,20.882329003419727,20.021151041146368,20.545913481153548,21.472341019194573,22.219212440773845,22.52521574497223,23.40481291618198,23.325515010394156,22.83211546903476,23.17854637093842,23.928903202991933,23.00583713175729,22.63973167911172,21.69622326362878,21.80443767318502,21.01386012369767,21.900239813607186,22.10223387926817,21.80261712986976,21.389263812452555,21.63862287066877,21.260210362728685,20.494039790239185,20.657475500833243,19.890725636854768,19.502312215510756,20.44216028181836,19.609802131541073,20.00585296563804,20.975716131273657,21.738067474681884,21.384220857173204,21.92232481064275,21.137798125855625,21.822307885158807,22.242571097332984,22.021698309108615,22.20422438159585,21.30061760963872,21.843350268900394,21.094480003230274,20.370194394607097,20.93261340772733,20.749567271210253,20.620965365786105,20.658685179427266,20.423848728649318,20.726070023607463,19.758557567372918,18.91661033872515,18.002467734739184,18.858641155064106,18.966246645431966,18.199971802998334,17.351699131075293,17.20550086395815,16.62763580447063,15.936764487065375,15.265311811119318,14.679883126169443,14.47116411710158,14.015113736502826,13.285225238185376,13.046428674366325,13.992970876861364,13.9210702246055,13.828808884136379,14.15289247315377,14.822829174343497,13.882847263943404,14.5825333930552,14.408407940529287,13.8263543182984,13.416063172742724,13.427953902631998,13.746983061078936,13.876264447811991,13.251907102297992,13.052769772708416,13.66492457780987,13.717480293475091,14.332095857709646,14.584737845230848,15.316302582621574,15.62322686240077,15.478973898105323,14.909094159957021,15.29325374495238,14.712416695896536,15.646519889123738,15.88499983213842,15.625846871640533,14.801258846651763,14.48656153632328,14.205148028209805,15.135262928903103,15.852198800072074,15.463709811680019,14.645776246208698,15.554889716207981,15.322149698156863,15.238003147300333,14.745281771291047,14.423537565395236,14.039882838260382,14.254036186262965,13.315914501901716,12.912579915020615,13.373395600356162,13.670035837218165,13.010290803387761,13.272329268977046,14.026069910265505,14.48383252741769,15.254249135963619,15.92783013312146,15.621833181008697,15.724648911505938,15.963679989334196,15.253575982525945,14.453657891601324,13.783659210428596,13.163894922472537,13.509946857113391,13.523588282056153,13.874085725285113,13.818015415221453,13.044201319571584,12.153951446991414,11.42232854431495,10.81580679351464,9.838771868497133,8.847342482302338,8.486287756357342,8.659620683640242,9.254342213273048,8.64608067786321,7.9896602015942335,8.771627182606608,9.488192177377641,8.914744270965457,9.135697135701776,8.450621800031513,9.392147093545645,8.49217048054561,7.599329026881605,8.534040754660964,8.89593194797635,8.582655551843345,8.001827912870795,8.192855477333069,8.073159872088581,7.450871464796364,7.944510443136096,8.853022258728743,7.870974716730416,8.535682693589479,9.37340432498604,10.05936980387196,10.627089669927955,9.86914032464847,9.932019655127078,10.682991086039692,11.463360804598778,11.337617134675384,10.398864364717156,10.978383095934987,10.424086120445281,11.146459385287017,11.87421441078186,10.89264954207465,11.507803577929735,10.522514461539686,9.634777628816664,8.749131213873625,8.021360458806157,8.380954671651125,7.916890372522175,8.701876235194504,8.317601795773953,9.007426988799125,8.172688018530607,8.425082807429135,8.229820429347456,9.195057483855635,8.74878813046962,8.741781777702272,9.555890875402838,10.131858009379357,9.178748466540128,8.975366213358939,8.667802780866623,9.07594754267484,8.242161038797349,8.632692178245634,9.028240052983165,9.24396893195808,8.325027975719422,8.69724599039182,8.626192932482809,7.978921610862017,8.71008030930534,9.702383239753544,9.573702117428184,9.26456619380042,8.672568994574249,8.650693956296891,7.833293577190489,7.09849441703409,8.002576840110123,7.935618938412517,8.277325077913702,8.951619795523584,8.127170287072659,8.882032099645585,7.92186186183244,8.688003806397319,9.537998309358954,10.028685549274087,9.229475386440754,8.296960359439254,8.339831448160112,8.386356194969267,8.434968129266053,8.082778196781874,8.597457243595272,8.510491823777556,8.95688709570095,9.417638705577701,8.751786117907614,7.9679466537199914,7.1851439089514315,7.424916734453291,6.981315473094583,6.895417888648808,7.757610118947923,7.728000031784177,7.323461290914565,6.6862564529292285,5.893343008123338,6.279572995845228,5.673108548857272,5.223057886585593,5.003966060467064,4.896534805651754,5.093903639819473,5.754006580449641,5.450698466505855,5.687832169234753,5.494260056409985,6.243925362825394,5.952949446160346,5.416063129436225,4.8698333580978215,4.260016986634582,4.30888620717451,5.114217711612582,4.650094699580222,5.532550350297242,4.7349622044712305,4.3589096730574965,4.087571440730244,4.497574457433075,4.90828096261248,5.575969472527504,5.071930300910026,5.0570024056360126,4.432176064699888,5.266296050511301,6.015130941290408,5.9115590918809175,5.610045503824949,5.969200711231679,5.558479520492256,5.710400155745447,5.961725835222751,5.368173556867987,4.916048992425203,5.031300889328122,5.532150024548173,5.109551686793566,4.604953169822693,4.846656665671617,5.589641340076923,6.525570620782673,6.753794438205659,7.018819307908416,6.879726689774543,6.827843458857387,5.916075982619077,5.845569576602429,5.309385600499809,5.83343825628981,6.452582326717675,5.6834063390269876,4.926530199125409,5.737873348407447,5.986849558074027,5.57228631246835,4.915545146446675,5.638881612569094,6.5095882983878255,6.6193888215348125,6.004704852588475,6.841360948048532,7.623060442507267,7.01428084122017,7.849316346459091,7.022750850766897,7.296807136386633,8.254550784826279,7.411552706267685,7.866707601118833,8.647542214486748,9.526727355085313,8.670653911307454,9.472688624635339,9.437447153963149,9.782715681008995,8.961582175455987,8.737395889125764,9.429935134481639,9.619796582497656,10.601702019106597,10.300961072556674,11.255318217445165,11.458775456994772,10.754671103321016,11.373397688847035,10.871355889830738,10.28553830459714,10.404581995680928,10.033752170857042,10.539101399946958,11.47802827367559,11.375400838907808,11.91871582949534,11.468525623902678,12.420720263384283,12.630545775406063,11.852042475249618,12.035369417164475,11.696484156418592,12.02627584990114,11.571236237417907,11.053354596719146,10.244512025732547,10.311926512047648,10.958691705018282,11.21726301126182,11.508149439003319,11.272868525236845,10.857574087567627,11.050284653902054,10.66850757645443,11.372818518895656,11.135989281814545,11.195717229042202,11.955160739365965,12.288981915917248,12.715110793709755,12.287151615135372,11.601828096434474,11.197503774426877,11.861442846246064,11.489371813833714,11.234248052816838,11.533448819536716,10.939944884274155,10.654273049905896,10.086424556095153,10.072786995209754,9.16960242530331,8.903166520874947,8.761592469643801,7.851742260623723,8.514568875543773,9.023045094683766,9.296159006189555,10.117897302377969,10.11979539738968,10.392785822972655,10.309227245859802,9.830143820494413,9.763330933172256,10.203433111775666,11.005676734726876,11.358505370561033,11.832833599764854,12.20669697644189,12.855439186561853,13.230637148022652,13.453195126261562,12.60260710772127,13.53986976435408,13.643801415339112,13.594230384100229,13.106474863365293,13.565526572056115,13.386684619821608,13.209338643122464,13.536310027819127,13.252140833064914,12.765580281149596,13.385388997849077,14.271751872263849,14.068965873681009,14.124935450032353,14.730614015832543,14.390081907156855,14.793468607123941,13.980397701263428,14.798228538129479,13.859812434762716,14.643940770998597,14.988431315869093,15.224056843202561,15.558295028284192,14.92958192108199,15.709193979389966,15.1482710163109,14.812646460719407,13.938511395826936,14.072429732885212,14.850019573234022,14.519731313921511,14.75954390084371,14.225475657265633,14.241163082420826,15.02245741756633,14.608998957555741,14.975719544570893,15.960181554313749,15.993591195438057,16.71227330667898,16.193763836286962,15.758093593176454,15.102265459951013,14.471931064035743,14.318025961052626,14.107173559255898,14.977112418506294,15.424684193916619,15.363748018164188,14.82398121478036,14.691731536760926,14.50020465767011,13.522057691588998,12.905678916722536,13.510240241885185,13.82159517519176,13.73984670592472,13.209438793361187,14.097367639653385,13.415157374925911,13.687615087255836,13.189290335867554,12.260193511843681,11.858473869971931,10.895214069634676,10.269185251556337,9.66811724146828,9.521054323762655,10.12574606994167,10.572838651947677,10.750502509530634,11.21264615887776,10.681404838338494,11.454207838512957,12.368749735411257,13.159467565827072,12.278127341531217,12.373464322183281,11.999680020380765,12.795670252293348,13.328571891412139,14.241684230044484,14.145599395502359,14.634377911221236,14.93942906986922,14.160777988377959,15.075815899763256,15.034504540264606,16.011414709035307,15.80678971298039,15.727091634180397,15.13600888196379,15.786879728082567,15.996850728057325,15.072019330691546,16.054667135700583,16.691635155584663,16.75341128744185,15.906580230221152,16.15320825157687,15.215512794442475,14.838354188483208,15.302864993456751,15.156609524041414,15.168063113000244,14.68954727659002,14.177032335661352,14.09207815816626,13.499956107698381,13.180270278360695,12.38965329574421,11.611549609806389,10.61733824480325,11.28077088855207,11.279115068726242,10.946347902994603,10.698507442139089,10.78684954624623,11.240554051008075,10.556439334060997,9.604546347167343,9.72122973576188,10.2718676449731,10.736794856842607,10.853667028713971,11.551775162573904,11.746173793449998,10.998496911954135,11.9706034748815,11.255785786546767,10.394450985826552,11.376691607758403,11.202790141571313,10.667368199676275,10.536470077000558,10.323515807744116,10.67427660850808,10.763449817430228,10.213454844430089,10.787735659629107,11.707429257687181,12.120327749289572,12.39517073938623,13.133943508844823,12.377325339708477,12.275412247050554,13.09291057381779,12.950673040002584,13.906723636668175,14.099940105341375,13.698734558653086,14.322402893099934,14.531596266198903,15.417960146442056,14.965509969275445,14.760765644256026,14.146696898154914,14.33535602549091,14.0564108020626,13.817150664050132,13.573389239609241,13.990808804519475,14.954728628508747,15.516401601955295,15.330660476814955,15.57483034953475,14.85741885844618,14.915792414918542,15.904866930563003,14.958018048666418,14.322459547780454,14.916190948337317,15.700979686807841,15.387888775672764,14.703510414808989,14.072117123752832,13.83927331585437,14.206554939504713,13.592002229765058,14.207370133139193,14.284813881851733,14.33470954047516,14.587203787639737,14.959855333901942,14.97946308972314,14.74371632002294,15.548017692752182,14.77372598927468,15.482102404814214,15.786040023434907,14.9974958836101,14.401304237544537,14.943710350431502,15.173771805129945,15.654260233510286,15.382876533549279,15.787359116133302,16.6667249253951,16.007340528536588,16.75483711436391,16.148520907387137,16.227849564980716,17.01492431713268,16.545159644447267,16.653938156552613,17.551927721127868,17.04879793105647,16.58402387565002,16.48499954584986,16.59373418567702,16.766639246139675,16.055567695293576,15.412177426740527,14.888824170455337,14.336787332314998,14.623989708721638,15.623430584091693,16.165262890979648,16.40983941871673,17.109789323527366,17.89461262943223,17.437382059637457,17.393787606153637,17.711458030622452,17.687961627263576,17.364228625316173,17.47352310596034,17.270169334020466,16.357715609949082,15.716742248274386,16.263504046946764,16.577638797461987,16.575226318091154,15.62898107105866,15.056226117070764,15.952560568228364,15.483528583776206,15.043036601971835,15.236172707285732,16.024698860943317,15.441677544265985,15.561539630871266,15.475318721029907,15.228257675189525,15.902033825404942,16.34085589647293,15.742483931593597,16.43584361160174,17.17042185086757,17.756120056845248,18.391167317982763,17.690806155093014,18.304062264971435,18.265003710985184,18.544236767105758,18.242321994621307,18.45339162601158,17.59068095451221,18.05639395164326,17.468040571082383,18.20728882495314,18.13934152480215,18.17616415536031,18.97659074794501,18.93578491639346,18.229228501208127,18.98543753195554,19.35219487035647,19.797396739013493,18.94313534675166,19.524341141805053,19.473599093034863,18.77259234758094,18.949500013142824,18.980220705270767,19.32725277962163,19.08427218068391,19.286537037231028,19.640423593576998,19.52318606665358,19.22289892565459,18.75144120492041,18.457563229370862,18.767821584362537,19.189733389299363,18.433852267451584,19.163155470509082,19.350662630982697,19.93548397393897,19.24008195567876,20.203044992871583,20.02344030002132,20.3820131290704,19.871468012221158,20.49446295108646,20.098082579672337,20.103816218674183,20.560336981900036,20.174530162010342,20.863070796709508,21.383078092243522,20.698951680678874,20.03809021273628,20.66301040351391,21.641865003388375,22.206432848237455,22.665572067722678,22.632538058795035,22.143186317756772,23.134205439593643,22.44359279423952,23.32628086162731,22.861239292658865,23.401022172998637,22.48315823217854,22.58938813721761,21.822066923137754,22.642200286500156,23.47992699407041,24.08837082935497,24.52153615280986,24.045089843682945,23.786349897272885,22.947686545550823,23.2875814139843,23.35972830047831,22.900935117155313,23.294119466096163,22.685913249850273,23.4655518992804,23.299523140769452,24.16812135837972,23.930801598820835,24.08877944899723,23.574672881513834,23.5524658751674,23.276723965536803,23.29894497571513,22.451268907636404,22.449053501244634,21.620703678112477,22.492042661178857,21.629295798949897,21.18663995573297,20.201050313655287,19.61472731316462,18.696718297433108,17.84862872539088,17.519469431135803,16.663004226982594,16.28469859296456,16.61520514683798,16.060519579797983,15.222016206942499,14.401505974121392,13.6314124786295,12.785103600472212,13.054943322669715,13.124682888388634,13.749432825483382,13.792185514234006,13.96870778221637,13.343244097195566,13.035215402022004,12.142452921718359,12.573438388761133,12.051158973947167,12.803873032331467,11.865281026344746,11.439170534256846,10.655893971212208,10.128358856774867,9.899350680410862,9.764894862193614,9.182082677725703,9.757699624169618,9.230424121487886,9.107457146048546,9.068924749270082,9.519116522278637,9.426508790813386,9.374701057560742,9.175764433573931,8.56217069691047,9.223344157449901,9.30393592081964,9.688707415945828,9.676290506497025,10.302362095098943,9.470240799244493,9.914103829767555,9.454309757333249,9.643049606122077,9.04534582234919,9.672641245648265,9.545213378034532,9.14776264457032,9.062925226986408,9.790058255195618,10.249671538360417,10.751771058421582,11.631115629337728,12.286541312932968,12.089708870276809,12.027507369406521,12.207001265138388,13.068341996986419,13.161131674889475,13.421837931964546,14.002911011688411,14.099172021262348,13.319876601919532,12.952310524415225,13.058170915115625,13.280718019697815,13.415851787198335,14.08234269078821,14.909954607486725,13.942029701545835,13.207043779082596,13.982477075885981,14.200832257512957,15.165441458113492,15.480245160404593,15.338045010808855,15.819483878556639,16.00313356006518,16.60210512811318,15.96570274606347,16.898419423028827,17.786651357542723,16.885299424640834,17.148150817025453,16.475605288986117,16.6682390216738,15.675019428599626,16.41423622239381,15.906213039532304,16.389907012693584,16.891518626827747,16.673578133806586,16.28057818254456,16.81124545680359,17.650579229928553,17.011315694078803,17.38410121574998,16.88609954016283,17.161281569860876,16.713429392315447,17.05642595142126,16.776382382959127,17.17702914820984,17.2257331488654,16.557071765884757,16.566057461313903,16.451681124512106,15.705074549186975,15.681452048011124,15.410723446402699,16.15095040248707,15.384438013192266,16.20967933256179,16.613868905697018,15.907745830249041,15.517025942914188,16.174619490280747,15.782411604654044,16.071107282768935,15.90481800539419,15.299696911592036,14.825266576837748,15.369674863293767,14.747584065888077,13.967257772106677,14.83726181043312,14.948750861454755,15.94139985786751,15.814935124944896,15.942969266325235,16.0928332679905,15.467255728319287,15.126603634562343,15.462643946986645,15.041116350330412,14.429146010894328,13.937532370910048,13.945190959610045,14.196524515282363,14.54201720142737,15.279869991820306,15.862960008438677,16.55448531359434,16.97085459344089,17.40240660123527,18.31351480120793,17.524908274412155,17.98441946040839,18.04542355798185,18.444290729705244,19.42121611861512,18.46649415185675,17.54818034823984,17.570669326465577,17.0394847211428,17.166186508722603,17.419783094897866,17.39576559048146,16.831390992738307,16.018827858846635,16.0273285638541,16.141294124070555,16.18536584964022,16.48426180239767,16.227297796867788,15.88135145464912,15.751708926167339,15.178061863407493,15.146793563384563,15.364739055279642,14.89459280576557,14.772206732537597,15.642996276263148,14.893652342725545,14.441892534960061,13.951612456236035,14.420373784843832,14.119123993907124,14.330086252186447,13.757468855008483,12.815969764720649,13.48157215397805,14.378771320916712,13.588088759221137,13.765554421581328,12.982754608616233,12.281179699115455,12.654435311444104,12.160965647548437,12.473129773046821,12.701718937139958,12.054836775641888,11.84274951275438,10.960728209465742,11.368553376756608,11.982003741431981,10.993911595549434,11.602224794216454,11.03876853408292,11.57371754432097,12.290734570473433,12.304313536733389,11.599506461527199,11.220708908047527,11.799208089709282,12.762840905692428,12.111215598415583,11.853905938565731,11.70375953335315,10.899089886806905,11.230565258301795,10.351270775776356,10.727011858485639,11.304036634974182,11.581008445005864,11.510750738438219,11.197835813742131,12.00391724286601,12.925089098978788,12.748586182948202,12.71601012069732,12.559627778362483,11.961908812634647,11.567786228843033,10.74431808711961,9.75597930001095,9.29828256368637,9.282787874341011,8.970133896451443,8.459882314316928,7.920557664707303,7.1336193340830505,7.7140921503305435,7.077453032601625,6.589313148055226,5.729828521609306,6.259978340938687,7.169931237120181,6.749594669789076,7.329988937359303,7.299280944280326,6.357962311711162,5.973588428925723,6.915923655033112,7.789163208566606,7.664930489845574,8.252831157762557,8.451587461400777,7.847356331069022,8.09476132877171,7.497454463969916,6.753882226534188,7.584745259955525,7.099694150965661,6.741767220664769,6.403818240389228,6.371935580857098,5.913185682613403,5.788474744651467,5.153588682413101,6.086821031756699,6.44339143531397,7.297768383286893,6.652629367541522,6.031368647702038,6.614105856511742,6.765928039327264,6.797166572418064,7.384100376162678,8.141590306069702,8.451029864139855,8.059669485781342,8.875881507992744,8.046707338653505,9.017776620108634,9.990003866609186,10.85292652854696,11.283828371204436,10.724366263020784,10.035608162172139,9.90429663285613,9.000653152354062,9.706396433990449,10.083800674881786,10.732002812437713,10.68645342066884,10.229298767168075,9.68061908101663,10.354730888269842,11.094426625408232,11.389429668430239,10.467282559257,10.43129276484251,10.306051691062748,10.99066361039877,10.687602824065834,9.788334752898663,9.576349162496626,8.808331095147878,9.17517862142995,9.12164419144392,9.100593100767583,9.969871908891946,10.260735562071204,11.176380404736847,10.878755502868444,10.418798219878227,11.110696053132415,10.910478667821735,10.266331917140633,9.440277512650937,9.393277228344232,10.355192258488387,10.390982578974217,11.212534234393388,10.770097455009818,10.478643798734993,10.77531425934285,10.636873482260853,10.23813776858151,9.483860541135073,10.003901893738657,10.69350153580308,10.02736477414146,9.050935516599566,9.961291024461389,9.92655736580491,9.029582421295345,8.106224717572331,7.967176904901862,8.722963383886963,7.899929811712354,8.730400813743472,9.509255776647478,10.142237167805433,10.85946236178279,11.787498916033655,12.776239609345794,12.323620992712677,11.433757055550814,10.435577095951885,9.593134487979114,10.156079413369298,9.795442055445164,10.370981635525823,10.236655216198415,9.472013626713306,9.332606099545956,9.263311378657818,9.930429635569453,10.86122734611854,10.685055824927986,9.704478638246655,9.215421534143388,8.889662105124444,8.825701093766838,9.190885443240404,8.29364669462666,9.179266313556582,9.938945162575692,9.09320962568745,9.506278041750193,10.055969394743443,9.067192295566201,9.496618043631315,9.010317550040781,9.63260965142399,8.82011083792895,9.093612080905586,9.790995902847499,10.223288110923022,9.787953955587,9.626580009702593,9.11868291022256,9.218047353439033,8.290223626885563,9.05378690501675,8.49437597906217,8.996293202973902,9.494661433622241,8.933395655825734,8.451600481756032,8.423580789938569,7.600897699128836,6.7918033567257226,7.23000607220456,7.7487847725860775,7.138117745984346,7.44002356287092,7.721231391187757,8.221343566663563,7.651230077724904,7.535803671460599,7.518667004071176,7.33115506824106,6.858105216175318,6.95535144675523,6.360867189243436,5.821528718806803,4.871836823876947,4.810789372771978,4.348935254383832,5.079337395261973,5.692940399516374,5.957097579259425,5.711374793667346,5.790546683128923,5.7077224482782185,6.271624703891575,5.449574392288923,4.685847328044474,5.241758873686194,5.6046122601255774,6.016855348367244,5.7369456072337925,5.459787914529443,5.831503730267286,5.080168646760285,4.945104571059346,4.899375319946557,4.647416511084884,5.143806363455951,4.6263858787715435,3.783366670832038,3.0787972775287926,3.104379668366164,3.783535861875862,3.8454180704429746,4.059158939868212,4.665926669724286,5.5020639933645725,5.990681943949312,6.69025664543733,5.72100360924378,5.830343844369054,5.642905787564814,5.464980696793646,5.74714596522972,6.326962080784142,6.482464792672545,6.4653377356007695,6.435832777060568,6.06409719074145,6.281572969630361,5.843254181090742,5.724954892881215,5.096000039018691,4.674963314086199,3.863776328507811,3.1920698825269938,2.7887472370639443,2.9986601234413683,3.696699993684888,3.0117751718498766,2.8282044217921793,1.9963787547312677,1.2737912298180163,2.2123214728198946,1.469825186766684,2.3948874985799193,1.6190935061313212,0.6928065698593855,-0.14725280040875077,-0.8597268145531416,-1.3082366473972797,-1.3249110542237759,-0.3552822517231107,-1.00135165033862,-0.39243658212944865,-1.1189767019823194,-0.20430255448445678,0.32712773233652115,-0.09136151475831866,0.7827346874400973,0.6076211496256292,0.6422934173606336,1.1629193206317723,2.0800919220782816,1.6887661791406572,2.1480430718511343,3.0172315863892436,3.984917077701539,3.689293045550585,2.7385427244007587,2.105007017031312,1.9668319839984179,1.8739912095479667,1.2080873027443886,2.1275774305686355,2.7282306449487805,2.0507700527086854,2.251131529454142,2.3407971397973597,2.2462720312178135,1.8234059112146497,1.5471055745147169,1.0560662192292511,1.5495201172307134,2.382177696097642,1.6857546023093164,1.2864907523617148,0.9632681575603783,1.007991440128535,0.12314657820388675,-0.17029838543385267,0.11044390499591827,-0.2044788235798478,-1.1235211687162519,-0.6021749139763415,-0.021666820626705885,-0.20351261645555496,0.43123708106577396,0.0015958026051521301,-0.5446169981732965,-0.7166663859970868,-1.036750405561179,-0.12323204334825277,0.06772799557074904,0.6871973113156855,1.2363769197836518,1.641702309716493,0.908982708118856,1.5311223734170198,0.9985542888753116,0.2547264783643186,1.116376366931945,0.5227044811472297,-0.15507310815155506,-0.4054664699360728,0.19861495634540915,0.9054808467626572,1.8587241736240685,2.476947873365134,3.1782465944997966,3.407327219378203,3.701782225165516,3.721086184028536,3.274833569303155,2.5768155069090426,2.4523195843212306,1.8640325255692005,1.4167425548657775,1.6782586346380413,0.7268015970475972,1.5557194515131414,0.9538024086505175,1.5458506280556321,2.1095371739938855,1.9938331311568618,2.253396464511752,2.9132489622570574,2.3130195890553296,2.1969362050294876,2.756444602739066,3.145574614405632,3.3850919702090323,2.639759556390345,3.440561023540795,3.9574839416891336,4.261827455367893,4.917435804847628,4.899852035101503,5.595619083847851,5.129519765265286,5.51857725251466,5.736904408782721,6.374002830591053,6.1146770510822535,6.798198938835412,6.067806437145919,5.1058429828844965,4.736130649223924,5.400846327189356,6.028385559562594,5.053489027544856,5.547382330521941,5.570950367953628,6.398528766818345,7.258144768886268,6.885930013377219,7.2682780316099524,6.346934460103512,5.4692727737128735,5.553122604265809,5.884098844137043,6.269018968101591,7.222656242083758,7.818143086042255,6.8491646414622664,7.735551599878818,8.398078846279532,9.389990750234574,9.889198563992977,8.909975559916347,9.70423831930384,9.726463149301708,9.231427151709795,8.611724311485887,7.790537341032177,8.746935564558953,8.068958300165832,7.6235385299660265,7.892641174141318,8.324161566328257,8.795560475438833,7.963858973700553,7.925506027415395,8.789971299469471,8.860730615910143,8.087801753077656,7.146114389877766,7.0886400048621,6.32176998257637,5.818042904138565,5.495553391054273,4.944128122646362,5.934458624571562,5.82128487713635,6.097425159532577,6.971226231195033,7.785460439976305,8.453792111948133,8.544626413378865,8.428762812167406,8.811307774391025,9.11158335255459,9.201623831409961,8.669326211791486,7.984360647853464,8.262770615518093,8.428366321604699,8.660401621833444,8.88748984085396,7.942133422475308,7.314672227948904,6.8433161387220025,7.282793735153973,8.189406137447804,7.41234468575567,6.875691712833941,6.8239654609933496,6.431594155728817,6.249161100946367,5.272624023258686,5.017422018107027,5.967335150111467,6.846090272534639,7.123151440639049,6.3378614080138505,6.861954777967185,5.9384656846523285,5.728229638189077,5.599196527618915,4.835914829745889,4.52025009598583,5.250366474036127,4.694341771304607,5.287775893229991,5.327448558527976,6.25262429472059,6.593752591405064,5.89653996983543,5.646435205824673,6.013841154053807,6.884420706424862,6.56392638431862,6.769655418582261,6.189136121422052,5.220947322435677,4.307839072309434,4.950830747373402,5.388436060864478,5.1042880499735475,4.841870984528214,5.531431096140295,5.083197562489659,4.3513684016652405,5.283477132674307,5.137418412137777,5.574262727983296,6.145667169708759,5.4341398710384965,5.963210706599057,6.106813480146229,5.24102096259594,4.791863415390253,4.892430578824133,4.149948712438345,4.657171782571822,4.504793192259967,4.504359133541584,5.276909593492746,4.931586959399283,4.523295666556805,5.317648752592504,5.809492837637663,5.808130152989179,6.260973619297147,5.603824665304273,4.793977269902825,5.461649218574166,4.495034501422197,4.346085118129849,3.998156384564936,4.83256582217291,4.545643943361938,3.799437927082181,4.173056298866868,4.842022074852139,5.805784283205867,6.483961059246212,6.541398290544748,5.852461703587323,4.929384275805205,4.08013691753149,4.825531573034823,5.65855322452262,5.9151539211161435,5.51963415555656,6.482988498639315,5.578671905677766,5.812735506333411,5.978485003579408,6.892134891822934,6.714886051137,6.430636691860855,5.850054289679974,5.72522449772805,4.972307759337127,4.43713587615639,3.477062286809087,3.168642969802022,4.054803965147585,3.640075651463121,3.9020475526340306,3.9227175917476416,3.253886784426868,3.7368139126338065,4.52317338436842,5.388359158765525,6.126971129793674,5.396035952027887,5.467234366573393,5.126055596861988,5.853346803691238,6.0893207476474345,5.369722798466682,5.330087005160749,5.227429597638547,5.974217959214002,6.867301611695439,6.565232010558248,6.166531553957611,5.626375373918563,5.543115590699017,5.962269206997007,6.643894121516496,7.554661392699927,7.435262011829764,7.627544770948589,8.17837434541434,7.299980089999735,8.14176311623305,9.130247120279819,9.113628789316863,8.788649629801512,7.869671087246388,6.99574298877269,6.825254272669554,7.086464693769813,8.004277014173567,8.419987191446126,8.17456619348377,8.066381458193064,8.13557048048824,7.547482091002166,7.865984875243157,8.610394200310111,8.206201022025198,8.046860192436725,8.402419158257544,8.911607377696782,8.085128773003817,8.572288447525352,9.553703382611275,10.006976971402764,9.474631349090487,8.770981961861253,8.320924922358245,7.692702798638493,8.166716094128788,7.681328633800149,7.107629474252462,7.5999730178155005,6.702519674785435,7.341326003428549,7.308605421800166,6.802741949446499,6.94140260387212,7.889946279115975,7.519214141648263,7.675529588479549,6.9528235495090485,7.09089255426079,7.968758622650057,8.208120794035494,7.808500829618424,7.911237170919776,7.465643384959549,8.384188569150865,8.43412046181038,8.177638369612396,9.12069322122261,9.793780074454844,8.90569851687178,8.934006082825363,8.480289327912033,7.756950278766453,8.11506891110912,7.594446078874171,7.453829929232597,7.058818387798965,6.336637860629708,6.930202272254974,7.267452786676586,7.7599256807006896,6.835454703308642,7.434036414138973,6.6522374716587365,7.207646066322923,7.592958669643849,6.785519161261618,6.153390688821673,5.338899445720017,5.825603494886309,6.6814614636823535,6.293586099054664,5.9140720278956,6.192325075622648,5.633919036015868,6.560098320245743,6.057899028994143,6.459892527665943,5.469324645586312,5.779390573501587,6.145088890101761,7.006670737173408,8.003045660909265,7.0320509118027985,6.642634553369135,6.5280177015811205,6.359227444510907,5.940580731257796,5.013529137708247,5.0926473923027515,5.6129167741164565,6.211365404073149,7.1856916709803045,8.154687339439988,8.106287315953523,8.960518613923341,8.004204380325973,8.605388395953923,9.504937276244164,9.01542903110385,8.752251885365695,9.110270558390766,8.253410368226469,8.86008132668212,8.47519062180072,8.838203471619636,8.56499148439616,7.911233430262655,6.913053323980421,6.196806423831731,5.896313883364201,5.570295221172273,5.7479105978272855,5.0214666510000825,5.004737202543765,4.960447027347982,5.099390935152769,5.40230418741703,5.599039927124977,4.905973972287029,5.086362242698669,4.570602189283818,4.896391322370619,5.076552362646908,5.573013260494918,6.504227315541357,6.972183186560869,6.847005148418248,7.77208686619997,7.94026780501008,8.213022869080305,8.671808787155896,7.976514593232423,8.676950849127024,9.620042098686099,10.043184069450945,10.7558199390769,10.911824780981988,10.98323808517307,11.645745398011059,12.051387860905379,12.510191955137998,13.343419146258384,13.863574116490781,14.081915894523263,14.177689391653985,13.710092549677938,13.739896907005459,12.78798905480653,12.452789478935301,12.408057141583413,11.822007071692497,11.947348441928625,12.279160551261157,12.317839985713363,12.66565062943846,12.872670829761773,12.182802420575172,11.960310817230493,11.310578015167266,11.149084215052426,10.222373493481427,10.732258192729205,10.665263932663947,10.226280682254583,11.112705309409648,11.579689507372677,10.955384639557451,11.482300817035139,12.120786206331104,11.74421531939879,12.2140663578175,11.52623233338818,10.60694172931835,10.428683063015342,11.058539933990687,11.57811330165714,11.135617584455758,10.581495309248567,11.356616406701505,11.355881269089878,11.25934678548947,11.546584842726588,11.366823422722518,12.19632693240419,12.463308958336711,12.123801899608225,11.214170549064875,10.812140486203134,9.824865317437798,9.010213796049356,9.96737974928692,10.96445049950853,10.25046822661534,9.696030284743756,9.750041011720896,9.095197075977921,9.822155757341534,9.127217394299805,8.667660935781896,8.241232907399535,7.665460697840899,7.153922884725034,7.501108601689339,7.605245295912027,7.891363389790058,8.44988471828401,9.043202545959502,8.325041993521154,8.054755796678364,7.972748817875981,7.69358163094148,8.603165604639798,9.025578185915947,9.381250695791095,9.864760970696807,10.376148690469563,9.975890124682337,10.276179399807006,9.435334303416312,8.470815719105303,7.623225438874215,8.233510141260922,8.605368540156633,8.295205699279904,8.829206722322851,8.118765541352332,8.69801059179008,7.83983943099156,8.617877000942826,9.347320323809981,9.413266241084784,9.890768107492477,9.10001930501312,9.237345749512315,9.790131572633982,8.942552337422967,9.063680449966341,9.066022223327309,10.048366590868682,10.626147653907537,10.159538451116532,9.316029314883053,8.426158775575459,7.743636490311474,8.37592611880973,8.626429934985936,8.533223221078515,7.782230651937425,8.655633771326393,8.620077185798436,9.257644052617252,9.631160842254758,9.413314260542393,8.574085757602006,9.1456586625427,9.30694572487846,8.815050823614001,8.513639333192259,7.853172328323126,8.360248250421137,9.317772541195154,9.804139987565577,9.925055374391377,9.270956359338015,9.398089669179171,8.862744613550603,8.035825022030622,8.80630694841966,8.069482720922679,7.8164754514582455,8.285803656093776,7.88115036347881,7.67673373548314,8.452011540997773,9.077929554041475,9.551944084465504,8.901301621925086,8.57049261033535,8.212357551790774,9.079317655414343,9.264693242963403,9.383228327613324,10.226026847492903,10.561905155424029,9.690143190324306,10.123442647513002,10.563519306015223,10.492506382986903,10.835846870206296,11.621864398475736,12.144114835653454,12.697935667354614,11.906713323667645,12.644211477134377,12.192226567771286,11.779486040584743,11.539243075065315,11.854361513163894,12.273221220355481,11.397359482944012,10.43075465876609,9.730969226453453,10.076259044930339,10.06160002341494,10.470998109783977,11.392458560410887,11.67252173088491,12.418090880382806,12.82858919678256,12.222323858179152,12.70021504163742,12.68414037488401,12.427566442638636,11.86780457990244,12.556401387322694,11.74310586322099,12.536678780335933,12.248934904579073,12.119745859876275,12.8828998291865,13.006979462690651,13.41110121132806,13.64270594343543,12.680881374049932,13.46868965914473,13.169136438518763,13.06173794157803,13.957285252399743,13.244200455956161,13.193192762788385,13.49524710746482,13.557008301373571,12.767882221378386,13.665316295810044,12.690147097222507,11.785601907875389,12.391730356961489,12.139302058145404,12.10163567122072,13.051507780328393,12.94962512794882,11.9712351327762,12.632981511764228,12.00787290930748,12.264342088717967,12.321956666652113,12.156919890549034,11.755963069852442,12.63379221316427,12.131643303669989,11.703094801865518,10.856486142612994,10.57822537748143,11.463384141214192,12.027844819240272,11.53757198387757,12.288830135483295,13.214720798656344,12.338410250842571,11.653117495123297,11.636963035911322,12.031035884749144,11.515918680932373,11.39147642441094,11.630285762250423,12.600107609294355,11.624376190360636,11.766551656648517,12.712609869427979,13.559151381254196,12.638919573277235,13.149135066196322,13.519456832669675,13.138030664529651,12.428203945513815,12.842064494267106,13.08051294228062,12.184152707923204,12.504477993119508,13.219419126864523,13.300307007972151,12.43324548471719,11.692045144271106,11.373829663731158,11.991007267031819,12.12880983762443,11.883709664456546,11.494424893986434,11.832889394368976,11.38217642204836,11.84349314821884,10.883072250988334,9.98823573300615,9.500496375374496,8.572694442234933,9.37897174526006,9.115912570618093,8.360604983754456,9.007867596577853,8.796546981204301,8.231587371323258,7.260775027330965,7.078676546458155,7.682150120381266,7.812674450222403,7.579751843120903,7.083411970641464,6.781229507178068,5.838189850561321,6.4248289479874074,7.19275805586949,7.674456645734608,6.69124921457842,6.772486085537821,7.5327368271537125,7.174340242054313,7.0515546053647995,6.49922228557989,6.590225615538657,6.208559652790427,6.683044482488185,7.481418861076236,6.858460594434291,7.592532770242542,8.148966560605913,8.690369750838727,7.951554199680686,7.94353783223778,8.232826491817832,9.229845273308456,8.378067114856094,9.015452881809324,8.276620087213814,8.019819106440991,8.678305849432945,7.974633145146072,7.710974356625229,7.756274330429733,7.1429728316143155,6.47126192227006,5.5269219554029405,5.24212365783751,6.23025135230273,5.870492577552795,5.89879119489342,5.0185532490722835,5.042847509961575,4.251888549886644,3.7687528687529266,4.1216103988699615,4.99034508690238,4.361975210253149,3.9240111629478633,3.0027153291739523,2.897518914192915,2.1293183607049286,2.1991191036067903,2.9716122769750655,3.174590637907386,3.5984951807186007,2.9949596812948585,3.035595102701336,2.6491178646683693,2.3111650426872075,2.421004773583263,1.6901595629751682,2.030606176238507,1.57184304529801,2.0970348552800715,1.7646374450996518,1.762137200217694,1.5934808612801135,1.8211845429614186,1.8557236548513174,1.4195514237508178,1.028523710090667,1.8672330803237855,1.226642208173871,0.8343230462633073,1.4233651589602232,0.5240994640626013,-0.025572592858225107,0.5006359023973346,-0.14187616761773825,0.39856553729623556,0.7715563690289855,1.1901147216558456,1.3861774601973593,2.086853312328458,2.9087647232227027,2.2859922512434423,1.3608925128355622,1.5396116329357028,2.0559626878239214,2.2962857778184116,3.0496349311433733,3.1604692451655865,2.1667683701962233,1.5765831577591598,2.0381225212477148,2.146412479225546,1.5031487783417106,1.9790624370798469,1.9342859648168087,1.021307517774403,0.7181256655603647,0.49601899087429047,-0.2779577923938632,-0.954151167999953,-1.3851366620510817,-2.0226439186371863,-2.335668253246695,-2.355209260713309,-1.7087572887539864,-0.8760333019308746,-1.6973681184463203,-0.8961148797534406,-0.7221163604408503,-0.24089796282351017,0.3871297207660973,0.38666972192004323,1.3552411221899092,2.3499382035806775,1.6496155611239374,2.2870156979188323,2.0856761098839343,2.3633251460269094,1.437515449244529,0.45498419646173716,0.9051639148965478,0.3288198825903237,0.9131989446468651,0.1759367622435093,0.5195008590817451,0.7840980002656579,0.7466469635255635,0.1578491497784853,-0.06517832493409514,-0.19914417946711183,-0.5794285153970122,-0.2132855267263949,-0.8992977407760918,-0.2905315472744405,0.3862216593697667,1.206560933496803,0.7815692569129169,0.7374869282357395,0.17928266478702426,1.0697733517736197,1.209128751885146,1.8612863691523671,2.724935471545905,2.366339868400246,1.5302804629318416,0.9288395452313125,1.6785148535855114,1.9856413956731558,2.752735786139965,2.9801154606975615,3.642281793989241,4.260065846610814,4.80190703086555,4.500727474223822,4.555127426981926,3.6055336017161608,3.0362755828537047,2.5998515151441097,2.6781120942905545,2.735528130084276,2.885074845980853,2.173871926497668,2.1269804621115327,2.217570929788053,2.5508753494359553,1.7779985321685672,2.5855021812021732,3.488874382805079,4.461353115271777,4.326347764115781,3.8348294817842543,2.991515495814383,2.08810103405267,2.4169413396157324,3.383994194213301,2.9063762789592147,2.668308064341545,1.7284157080575824,1.4010864864103496,1.0991921853274107,0.49671774823218584,1.4728854070417583,2.332898201420903,1.6690386165864766,2.471885513048619,1.5518291550688446,1.317724164109677,0.5641647479496896,0.27099704137071967,-0.3053430151194334,0.4128198828548193,-0.34395764488726854,-0.5508320676162839,0.2558930669911206,-0.5303787980228662,-0.3727303948253393,-0.6578601319342852,-1.1723102629184723,-0.20737117808312178,-0.5943850758485496,-0.6660493887029588,-0.6091360882855952,-0.8312633810564876,-0.6786200064234436,-0.4703100062906742,0.1595225278288126,-0.48104997584596276,-1.4322284259833395,-1.4334647050127387,-1.4049781044013798,-1.686965444125235,-1.9498272859491408,-1.1653357376344502,-1.9499795334413648,-1.9935791310854256,-1.6758241527713835,-2.6629907968454063,-1.7664853665046394,-2.1350750136189163,-1.4528576163575053,-1.1145838773809373,-0.4144852655008435,0.39752489794045687,0.3189977966248989,0.22960004303604364,-0.41134417708963156,-1.3189743417315185,-2.0225273673422635,-2.6790307625196874,-2.5034549916163087,-2.4139174693264067,-1.7164467391557992,-1.2644106200896204,-1.9137791697867215,-2.3412881027907133,-2.9765221551060677,-2.3885901449248195,-2.360704642254859,-1.768346143886447,-0.8133316449820995,-0.8090622969903052,-0.6627699499949813,0.3232570984400809,0.3183863121084869,-0.11208492051810026,0.6950639528222382,1.3777481098659337,0.4682299471460283,0.7888786918483675,1.6662227376364172,2.1849867310374975,2.095239461865276,1.5865293596871197,2.5216535930521786,2.0654301093891263,2.078454125672579,1.1586998896673322,1.4467828967608511,0.6080633597448468,1.1877654888667166,0.5770069155842066,1.0199773125350475,0.46582525968551636,0.13463082490488887,0.5548504861071706,-0.18010348826646805,0.17495949799194932,-0.28157785534858704,0.41616898542270064,0.8885435904376209,1.1444753757677972,1.6701100021600723,1.1542859077453613,1.5790576641447842,1.9359852280467749,2.216651424765587,2.074132555630058,3.050732175819576,2.9437951068393886,2.116091731004417,1.4971004375256598,2.341323250439018,1.470269886776805,1.6329909288324416,1.3745371927507222,0.6049259505234659,1.0051835468038917,0.4850318827666342,1.4662865023128688,1.467282000463456,2.116936069447547,1.2206040350720286,0.6092068897560239,0.6569907027296722,0.5514849303290248,1.318796464242041,1.437886631116271,0.7257959968410432,1.1869469908997416,1.2281422265805304,1.107756955549121,1.7919884878210723,2.6713694878853858,1.7088662944734097,1.7557720714248717,1.8300598692148924,2.7584306467324495,3.029402134940028,3.0018927636556327,2.6264324034564197,3.085416628047824,3.340872402768582,2.383191706147045,3.2885934952646494,4.1643470651470125,3.3320365892723203,4.304608820471913,3.7869233284145594,2.9586051432415843,1.9675862356089056,2.203245969489217,2.744469242170453,3.218638085294515,3.311478486750275,2.7120915870182216,1.9595588333904743,2.708192974794656,2.1698946682736278,2.5171170164830983,1.9047195469029248,1.3568255007266998,1.2711644708178937,0.5628511090762913,0.7753634066320956,1.1397515987046063,0.4438598034903407,1.0529817109927535,0.22471806360408664,-0.5051478468813002,-0.4765364807099104,-0.8477275385521352,-1.589213777333498,-1.7513373717665672,-1.16176926670596,-0.669161828700453,-0.14508926263079047,-0.6116699678823352,-0.2767750578932464,-0.8594035785645247,-1.7226761006750166,-1.0872283154167235,-1.480587789323181,-1.558255810290575,-1.9131683730520308,-1.267398071475327,-0.70584786683321,-1.446351862512529,-0.9816355393268168,-1.6711169378831983,-2.389315601438284,-2.3649279312230647,-2.239472644403577,-1.7208958640694618,-1.7245341362431645,-2.355649600736797,-3.2317247493192554,-3.6171270911581814,-3.513963093981147,-3.247201528865844,-3.7009577653370798,-2.9198922412469983,-3.3861356279812753,-3.357659942936152,-4.1364160240627825,-4.18229680461809,-4.081915964838117,-3.1109106512740254,-3.2211229293607175,-3.5942108100280166,-2.945427223108709,-3.0093339667655528,-2.52716925740242,-2.736420387867838,-3.47422686079517,-3.7613215860910714,-3.7737936452031136,-2.9196510859765112,-2.1428150702267885,-2.6690527158789337,-2.592708197887987,-2.688504689373076,-3.4901747554540634,-3.938336248509586,-3.632796087767929,-3.2248378242366016,-2.5519011663272977,-3.470493515022099,-3.1903563854284585,-2.8318538181483746,-3.1227864250540733,-3.050078945700079,-2.660163110587746,-3.064575593918562,-3.008697987999767,-3.072714343201369,-3.280412963591516,-3.8078738478943706,-3.6918415687978268,-3.2543285312131047,-3.9251312906853855,-4.523010157048702,-3.532003650441766,-3.82443742826581,-2.841869887430221,-3.8264135024510324,-4.765742673072964,-4.865166186355054,-4.229895635508001,-3.8288373136892915,-4.058141784742475,-3.6292560370638967,-3.570135072339326,-2.7743423618376255,-3.221444091293961,-3.935780046042055,-4.733314311597496,-4.5014969618059695,-4.447868522256613,-3.6912217172794044,-2.78646627208218,-3.4206636007875204,-4.3703323057852685,-4.570211263839155,-4.633853409904987,-4.556617311667651,-4.03648112853989,-3.2128602624870837,-3.7404100988060236,-2.8829949870705605,-1.8890988118946552,-0.9346697838045657,-0.5381930759176612,-0.8736416967585683,-0.10331392707303166,0.4782522562891245,0.4647906138561666,0.07000106666237116,-0.9236625544726849,-1.5467112162150443,-1.7883641002699733,-1.8744024196639657,-1.426454592961818,-1.6122665796428919,-0.8545401860028505,-1.190472916699946,-2.122657793108374,-1.3618140229955316,-0.9679773738607764,-0.6179407420568168,-1.15053442819044,-1.0433368445374072,-1.8095148191787302,-2.7569363797083497,-2.526773139834404,-3.4608153444714844,-3.6298514241352677,-2.908380357082933,-3.301033365074545,-3.2510588238947093,-2.401310292072594,-1.8602360738441348,-2.551519556902349,-1.8808711832389235,-2.4012711155228317,-2.9599823406897485,-3.416875496506691,-4.233835957013071,-3.7398955677635968,-3.220484960824251,-2.2333250888623297,-2.787907342426479,-2.8019411666318774,-2.3672142126597464,-2.8659392395056784,-2.403200435452163,-1.9729477018117905,-2.6120423856191337,-3.259985141456127,-2.5099292802624404,-1.5432550916448236,-2.232482506427914,-2.729233351070434,-2.103845066856593,-1.5983542264439166,-1.1594298877753317,-1.6218367270193994,-2.5465060360729694,-1.8902303166687489,-1.341323324944824,-2.067931928206235,-2.405391281004995,-3.270839162170887,-4.12460231455043,-4.179159802850336,-4.14627780020237,-4.630433869082481,-4.7506212359294295,-4.105343097820878,-5.081931175198406,-4.92468190472573,-5.537450937088579,-6.0948172034695745,-6.645952512510121,-7.221606268081814,-7.514737091958523,-7.71865498740226,-8.181178975384682,-9.055317863821983,-9.866577758919448,-10.607479727361351,-10.453951694536954,-11.195303822867572,-11.172290590591729,-11.899024765007198,-10.955874040722847,-11.174777055159211,-11.440996070858091,-11.758454809896648,-12.246584936976433,-12.258373647928238,-11.558769155759364,-12.1479427437298,-12.678010715637356,-11.722958082798868,-10.897279852535576,-10.95791623974219,-10.069905113894492,-10.366827753838152,-11.343730836641043,-11.465035817585886,-11.486680446192622,-11.07861516578123,-10.460567822214216,-10.70430619129911,-11.055398903321475,-10.929661915171891,-11.654342119581997,-11.231194648426026,-11.446154833771288,-12.367500950582325,-12.1721012420021,-11.59856112813577,-12.231447460595518,-11.743110703770071,-12.387204020749778,-12.120907004922628,-13.00686644949019,-13.616012501064688,-13.433324620127678,-13.106215083040297,-13.823615793604404,-12.9412487805821,-13.553170982282609,-13.316265073604882,-13.420855286065489,-14.41151782637462,-15.043879984412342,-14.469418707303703,-14.687224981375039,-14.79085384355858,-15.137306475546211,-14.263801985420287,-13.851784174330533,-14.57588325208053,-14.574833570979536,-14.77524551562965,-14.47193906409666,-14.673674806952477,-15.4778052540496,-14.743253019172698,-15.722646106500179,-14.725501535926014,-14.264038542285562,-14.56004885258153,-14.391264572739601,-13.468891518190503,-13.401673631276935,-13.724419133737683,-14.401466630399227,-13.485471025109291,-13.779084445908666,-13.374098998960108,-13.225894169416279,-13.346728977747262,-14.030670507345349,-13.745269204024225,-14.717853979207575,-14.723033366724849,-15.228318713139743,-15.925629894714803,-15.490791758522391,-15.400195536203682,-14.416961107868701,-14.558768989518285,-14.358048611786216,-14.5796909769997,-13.810811237432063,-13.029333918821067,-13.883789342362434,-14.88134840503335,-14.48362395633012,-13.725281093735248,-13.574890282470733,-13.061547256540507,-12.828921495005488,-13.249563604593277,-13.558582522906363,-12.755628964863718,-12.922608200460672,-12.310867801774293,-12.495517150033265,-13.290531419683248,-13.020984360482544,-13.20734997605905,-14.048017765395343,-14.013945528771728,-13.725816779769957,-13.515467905439436,-13.931363968644291,-14.32464218698442,-14.308869586326182,-13.820555531885475,-12.977419302333146,-13.125527209602296,-12.665821962524205,-12.22747775260359,-11.242947929538786,-12.180198605637997,-11.79873588681221,-11.037809205707163,-11.06067319912836,-11.35323528572917,-11.965906273573637,-12.009339891374111,-11.126944950781763,-12.00879514310509,-11.863088896498084,-11.25141221890226,-12.014782584737986,-11.455141485668719,-11.290140537079424,-11.252566756680608,-11.22528623463586,-11.752085339277983,-11.947078777477145,-12.892798288725317,-13.823399952147156,-12.871310577727854,-13.042526732664555,-12.398559352848679,-11.451045068446547,-12.082686380948871,-11.957303552888334,-11.912454052828252,-11.832440536934882,-12.739956081379205,-13.002801632042974,-13.06361298635602,-12.198924156371504,-12.224522390868515,-12.324474073015153,-12.767948097083718,-11.95444851461798,-12.857906997203827,-12.557076970580965,-11.614642924629152,-11.96162371058017,-12.931360823102295,-13.474626031238586,-13.194014799781144,-13.888430819381028,-14.299983190372586,-14.063440442550927,-14.179272135253996,-14.437514516990632,-13.642543912865222,-13.53396124439314,-13.4444580366835,-13.010142092127353,-12.899126655887812,-12.78455332480371,-12.430569737683982,-12.327607901301235,-12.979101298376918,-13.739053785800934,-13.54862658586353,-14.457278217189014,-15.115484897978604,-15.091079393401742,-15.055207289289683,-14.14593139057979,-15.069805543404073,-15.82678591273725,-16.402923067566007,-16.968213625717908,-17.863640794996172,-18.609803066123277,-19.08901669923216,-19.32435505790636,-19.03214788949117,-18.18483664933592,-18.21075799036771,-18.43959113722667,-18.51092615397647,-18.86696443380788,-18.005336292553693,-18.31668643001467,-18.559368141926825,-18.524404376279563,-18.837983989156783,-17.93758617946878,-17.435434908606112,-17.423661013599485,-18.296154138166457,-18.632020828779787,-18.063147504348308,-17.324489026796073,-16.563686418812722,-17.35618427861482,-17.454910112079233,-16.82626604801044,-16.014624909497797,-15.173248868901283,-15.646000451408327,-15.268990772776306,-15.067353847436607,-15.523718793410808,-15.73585738055408,-16.592671513091773,-16.95994898537174,-17.704515104182065,-18.322979966644198,-17.561619063839316,-17.413078665733337,-17.509220036678016,-16.70733964908868,-16.31185957090929,-16.314995856024325,-15.757162107154727,-15.156810232903808,-14.840243691578507,-14.222400455735624,-14.487534321378917,-14.866213821806014,-14.571284601464868,-14.377393091563135,-13.926984989084303,-14.729647229425609,-14.707134418189526,-14.583063452038914,-15.127370712347329,-16.049346366431564,-16.719600116834044,-17.428244596347213,-18.094643672928214,-18.050463686697185,-17.368984241504222,-17.474223231896758,-17.026019263081253,-17.30066510522738,-17.27272489387542,-16.392125222366303,-16.07652980973944,-15.258763771504164,-15.468789040576667,-14.552929025609046,-14.046152465045452,-14.126436315011233,-14.242354160174727,-15.10084768384695,-15.915155145805329,-16.5377843035385,-17.04301089141518,-16.441200426779687,-16.21466461243108,-15.436868330929428,-15.58534068800509,-16.158504493068904,-15.780371443368495,-15.467803671956062,-16.155317733995616,-15.397008255124092,-16.35733492486179,-16.822421071585268,-15.88283676840365,-16.577352934982628,-17.11081015318632,-17.237391377799213,-18.106930118985474,-17.47540635149926,-17.217292110901326,-16.27766036381945,-15.908430345822126,-16.34504119772464,-15.821114044636488,-15.574639512691647,-14.98824050463736,-15.584215682465583,-16.494533656630665,-16.693700802046806,-15.912192283663899,-16.463438851758838,-16.96854403987527,-17.297103389631957,-18.228641679976135,-18.20967567199841,-18.31066722329706,-18.77322649070993,-19.086835015565157,-18.662040077149868,-17.703090731520206,-17.236864671576768,-16.37324034096673,-15.54219855973497,-15.098208683542907,-15.440600886940956,-15.439795423299074,-15.456628260202706,-15.172722903080285,-14.71008390840143,-14.41128863254562,-13.871430558152497,-13.203942248597741,-13.233740389812738,-12.272351450752467,-12.192385372705758,-11.388995544519275,-10.97994012478739,-10.59788151178509,-9.648532376624644,-8.850942458491772,-9.158885536249727,-9.738247523549944,-10.033690804615617,-10.079198057297617,-10.793708845041692,-10.3030760679394,-9.771478094160557,-10.464807991404086,-9.50650513637811,-9.675521492026746,-9.822756707668304,-10.483733846340328,-10.638355854898691,-11.437766208779067,-10.725044074468315,-11.283536047209054,-11.039875098038465,-10.4297847552225,-11.333842998370528,-12.239514446351677,-12.131838250905275,-12.525068767834455,-11.744112057145685,-12.683193193282932,-12.85404409840703,-13.726438048761338,-13.3149069333449,-12.866281129419804,-13.026063609868288,-13.826884486712515,-12.95520221022889,-12.779276977293193,-12.360161965247244,-13.269204233773053,-13.376378430053592,-13.58834694698453,-14.123778270091861,-13.353629699442536,-13.146476000547409,-13.957385001238436,-13.176928584463894,-14.150980890728533,-14.965494124218822,-14.241347041912377,-14.970315930433571,-14.843850874807686,-14.256631880998611,-14.347340796608478,-14.69252824736759,-14.3860868755728,-14.333994720131159,-14.553171284031123,-14.990180252119899,-14.74043181957677,-15.16344212507829,-14.446860845200717,-14.439228501170874,-14.649971267208457,-15.033212630543858,-14.293200932908803,-13.693047301378101,-13.882021692115813,-13.762713592499495,-12.774399987887591,-12.5630176900886,-13.42821824643761,-14.18862635269761,-14.809603799134493,-15.38647067034617,-16.384922272060066,-16.32655383972451,-15.478147429414093,-15.526734258048236,-15.761866323184222,-15.416984867770225,-15.46763011161238,-16.38164221821353,-15.72818366624415,-16.457549694925547,-17.33139408333227,-17.765414712019265,-17.70890002232045,-16.792184203863144,-16.865315498784184,-17.027481900993735,-16.107749936170876,-16.628366625867784,-16.318523312918842,-16.866648571565747,-17.19458479899913,-16.61368226259947,-16.989131703972816,-16.14592878287658,-15.373326585628092,-15.811305047944188,-15.161236890591681,-15.493422221858054,-16.345474720466882,-17.06741611752659,-16.714568309951574,-17.231146236881614,-16.530433188192546,-15.608140103518963,-15.488240892067552,-15.689513537101448,-15.722232074011117,-15.380158020649105,-15.365318876691163,-15.728056252002716,-15.913375359494239,-16.297943853307515,-16.744647704530507,-17.37139621237293,-16.659496968612075,-16.103797279298306,-16.841698911972344,-17.46738060656935,-17.69537610374391,-18.38017689017579,-17.761700407601893,-18.22493000375107,-18.78602870553732,-18.154321918729693,-18.44856109423563,-18.037466153968126,-18.988678810186684,-19.93262886814773,-20.098234058357775,-20.46360114729032,-19.50632507307455,-20.304182808846235,-20.791835663374513,-21.238164166919887,-21.14414032222703,-20.42819459643215,-21.163632738403976,-20.484685288276523,-21.416587479412556,-22.32938349386677,-21.955564337782562,-21.089622538536787,-21.614423567429185,-20.8892012196593,-21.41930041788146,-20.965714141260833,-20.835160395130515,-20.34411334991455,-19.396389034576714,-18.510711889714003,-19.475466456264257,-19.118086609058082,-18.7454515369609,-18.004741851240396,-18.097728630993515,-17.098143588285893,-17.024322162847966,-16.326480333693326,-17.050167363602668,-16.32276300387457,-16.712444928940386,-15.78811192465946,-15.59230945026502,-15.154053083155304,-15.585324317216873,-15.287368680350482,-16.0964867179282,-15.853627701289952,-15.27841900056228,-16.248550684191287,-15.726925114169717,-16.448231663089246,-16.317561032716185,-17.038464431650937,-16.937085140962154,-16.888742824085057,-17.513395416084677,-18.288936560042202,-17.39134652307257,-17.45791762182489,-16.74887435277924,-16.322940637357533,-16.343452209606767,-16.988209133036435,-16.657283938489854,-16.72317137150094,-15.755522367078811,-16.30179789243266,-17.225287711247802,-18.014631691854447,-17.372923714108765,-18.093602104578167,-18.981399088632315,-19.211061810143292,-18.723602863028646,-18.39418885251507,-18.045406207442284,-18.122149323578924,-18.02727599395439,-18.594915729016066,-18.920143734198064,-18.349880437366664,-17.97169042797759,-18.556057849433273,-18.03112337598577,-17.180416683666408,-17.418014709372073,-16.60968997934833,-17.339606318622828,-18.02729169325903,-17.59391502290964,-17.715262069832534,-17.07889927132055,-17.86956890625879,-17.755783739034086,-18.267551840282977,-18.89422561135143,-19.065131383482367,-18.51534903002903,-18.808652417734265,-17.983167612925172,-18.212387930136174,-18.583679699338973,-18.181003330741078,-17.245509088039398,-17.78283382533118,-18.698669319972396,-19.278528539463878,-18.43072711583227,-18.323090975172818,-17.784832451492548,-18.244203160051256,-18.65970006911084,-18.672851073089987,-18.789265075698495,-19.269632565323263,-18.88503179186955,-19.752072947565466,-19.787008063402027,-19.199188981205225,-19.991181447636336,-19.74653210071847,-19.954367301426828,-18.984190887771547,-18.161026102490723,-19.064188135322183,-19.318919533398002,-19.18093356443569,-18.772089661564678,-18.54029172519222,-18.811067859642208,-19.116850116755813,-19.320880869869143,-19.34539676317945,-18.75691992416978,-19.682055942714214,-20.402622897643596,-20.34152017813176,-19.543476201128215,-19.521582240238786,-20.08194587053731,-19.635280367918313,-19.135227042715997,-18.148368489462882,-17.972272279672325,-18.099283082876354,-18.63101439503953,-19.32034427067265,-19.087296814192086,-18.253953655716032,-17.30088606569916,-17.86132072051987,-17.216327582485974,-16.364245552103966,-15.59645485971123,-15.507443265523762,-14.709432607982308,-14.756594480015337,-15.736387150362134,-14.825701027177274,-15.21906724339351,-15.419637910090387,-15.64185375161469,-15.31341514037922,-14.770510780625045,-14.059279160574079,-14.74053564434871,-14.889365665614605,-15.2032460719347,-15.049713312182575,-15.348387111909688,-15.089673668146133,-14.261045448947698,-14.354964156635106,-15.286690223030746,-14.94800967629999,-14.053892738185823,-13.60628790454939,-12.726171265821904,-12.462492011953145,-12.533752707298845,-12.43586204526946,-11.797043861821294,-10.88976405095309,-9.94890544982627,-10.759683600161225,-10.073762070853263,-9.637125692795962,-9.783101002220064,-9.840073386207223,-10.81732267467305,-10.20561277680099,-11.010266768280417,-11.509294125717133,-10.75465907342732,-10.8879558541812,-10.123593180906028,-10.029699434991926,-9.536349112633616,-10.34423115151003,-10.586749928072095,-10.308949041645974,-11.267843655776232,-10.5503960698843,-10.235962331760675,-9.595349103212357,-10.222044532652944,-9.577051175292581,-9.340776917524636,-9.27670613443479,-10.109202273655683,-10.208254511468112,-10.12854280276224,-9.304954121354967,-8.950370570179075,-9.16550731472671,-8.47584774531424,-7.647637928836048,-8.425647130701691,-9.173721315804869,-9.973313136491925,-9.940752785652876,-9.334607569966465,-9.339587635360658,-8.986664029303938,-8.142911243718117,-7.282309610396624,-7.259381860494614,-6.382834258489311,-6.098464386537671,-5.862386954482645,-6.658108325209469,-6.132203926332295,-6.6578637240454555,-6.295087932609022,-5.759767295327038,-5.542059668339789,-5.818131290841848,-6.453280263114721,-6.674997615162283,-5.885570369195193,-6.034759088419378,-5.639597781468183,-5.2020571902394295,-5.489771370775998,-5.873556804377586,-5.934088509064168,-5.276402294635773,-5.130388519261032,-5.819804082624614,-6.57950177276507,-6.7198493354953825,-5.956666928250343,-5.0912058860994875,-5.075857961550355,-4.842849526088685,-4.706087133381516,-4.3601476438343525,-4.206689520739019,-4.521094856783748,-3.5338492612354457,-3.6568531705997884,-3.3653593114577234,-4.093418064992875,-4.522592135705054,-4.609907043166459,-3.8738731034100056,-3.2925009508617222,-2.9157801140099764,-2.0498986574821174,-1.2834999621845782,-0.5262467814609408,-0.8677513129077852,-1.7691900758072734,-2.3399590300396085,-2.5150425070896745,-1.8281465452164412,-2.7230407083407044,-2.291424586903304,-2.5459906016476452,-3.388281064108014,-4.253101517446339,-4.955160546116531,-5.223724151030183,-5.706835342571139,-5.408048545476049,-5.9556398880667984,-6.614169341977686,-6.992034760769457,-7.865380902308971,-6.956416723318398,-6.695256566628814,-7.447805240750313,-7.629419755656272,-7.386333299800754,-8.259063709527254,-9.119892387185246,-9.917320881038904,-9.307253206614405,-8.620691556483507,-8.382141571491957,-9.250377351418138,-8.37042741337791,-7.8658419055864215,-7.635717131663114,-7.679028972052038,-6.983251390978694,-7.070930694229901,-7.163031772710383,-7.828241728246212,-8.191925598774105,-8.764440698549151,-8.008339109364897,-8.623771997634321,-9.600340967997909,-9.979332550428808,-10.269417588599026,-9.602431003469974,-8.675626182928681,-9.07564692106098,-9.473829692229629,-9.169858891516924,-8.2080859974958,-8.96976998122409,-9.876549933105707,-9.875259934924543,-9.25172975892201,-8.747827330138534,-8.81493477569893,-8.4188028909266,-8.981530261225998,-9.27621141076088,-10.266700733453035,-10.28477285662666,-10.535342655144632,-10.610897884704173,-11.233274480327964,-11.508586346637458,-11.46389440819621,-11.375813654623926,-10.626824993640184,-9.708277859259397,-9.012860795482993,-8.709687374066561,-9.224987304769456,-10.018199449405074,-9.763460723217577,-9.687800413928926,-9.01482250681147,-8.729571003466845,-8.028233011253178,-8.058036590460688,-7.807225542142987,-8.521274402271956,-9.076097095850855,-9.289462412707508,-9.795758739113808,-10.285671313293278,-10.43613264337182,-10.745314833708107,-11.003344620577991,-10.62456539273262,-11.171230634208769,-10.784743206109852,-11.4156863684766,-11.563080798368901,-11.483275634236634,-10.603607696481049,-11.53463881649077,-12.40408946853131,-13.018486792221665,-13.55722875148058,-12.617270140908659,-12.424935416784137,-12.36623325990513,-11.556376955937594,-10.856699767522514,-10.141971608623862,-9.85303496196866,-9.916582737583667,-9.201796353328973,-9.739629860967398,-10.705826626624912,-10.143543514423072,-10.698557932395488,-10.864523213356733,-11.735218077432364,-11.962582273874432,-12.587792467325926,-11.69610992493108,-11.469545408617705,-12.129404621198773,-11.411588703282177,-12.347915387246758,-11.887733458075672,-11.910165033768862,-12.83570863539353,-13.471929846331477,-13.707394568249583,-12.767328817397356,-13.108084339648485,-13.751138916239142,-13.039396896958351,-12.338890297338367,-11.825444637332112,-12.651916728820652,-12.105554780457169,-12.070687958505005,-12.318198977038264,-11.814573158044368,-11.870221875607967,-11.387973207980394,-12.00936550181359,-12.74957912741229,-12.11605912214145,-11.905788162723184,-12.124221430625767,-12.1286676870659,-11.664991868659854,-11.4193971529603,-11.814853271469474,-11.52092513628304,-11.53857134329155,-10.943530194927007,-10.395954170264304,-11.020247546490282,-11.186141225509346,-10.667137715034187,-10.080063777975738,-9.72038612049073,-9.130267058964819,-8.644719241652638,-9.410494203679264,-10.00989865558222,-10.429829309228808,-10.089988269843161,-9.44422127911821,-9.95058190729469,-10.9497563210316,-10.658649594523013,-10.968448954168707,-11.601104265544564,-11.492606214247644,-12.425592082552612,-12.18413008004427,-11.851340226829052,-11.83081993367523,-12.177701401058584,-11.768018000759184,-12.065082172397524,-12.022441214416176,-11.530739872250706,-11.100670563057065,-11.07811364531517,-11.470156263560057,-10.642386875115335,-10.051182508468628,-9.064510600175709,-8.578858515713364,-8.620633119251579,-9.028239873237908,-9.034180829301476,-9.893981721717864,-10.42002159403637,-9.519350382033736,-10.111746290232986,-9.6033412986435,-8.843370852991939,-8.820561188738793,-9.426085826940835,-9.439613103866577,-9.027306139003485,-8.52378254942596,-9.027139717712998,-9.40304472669959,-9.414959034416825,-8.954772796016186,-8.595429623499513,-9.093501259107143,-9.723978939000517,-10.464991529006511,-10.406575537286699,-9.876885482575744,-10.2056530197151,-10.581890694331378,-10.355864460580051,-11.117916957009584,-12.012479250319302,-12.24322632420808,-11.606471546925604,-10.712186749093235,-10.677811281289905,-10.99116445472464,-10.24309902312234,-10.89049457712099,-11.077645082958043,-11.962468004785478,-11.095177714712918,-11.491650487761945,-11.388046196196228,-12.140657394658774,-11.612579532433301,-12.084312115330249,-12.211799573618919,-12.324035562574863,-13.173151148017496,-12.753868818748742,-13.698548186570406,-12.973766354378313,-13.590223683975637,-12.796570970211178,-13.0996272158809,-13.885704992804676,-12.891395685262978,-12.047136351000518,-12.015853899065405,-12.512692589778453,-12.211511253844947,-13.138058327604085,-13.252206177450716,-14.24962992919609,-14.931418978609145,-14.9660619571805,-14.996012224350125,-14.616539472248405,-14.706403740216047,-15.27550175320357,-14.96022306708619,-15.472227767575532,-16.11742278141901,-16.77340049063787,-16.975225856993347,-16.476616485975683,-16.764817672315985,-16.701394476462156,-17.633787428494543,-16.873978124931455,-16.263258676975965,-16.122597528155893,-16.280814729165286,-15.559438375756145,-15.093023934867233,-15.89816912310198,-14.920355401933193,-15.303563865367323,-14.388135135173798,-14.25397027330473,-14.14971606200561,-13.386642814148217,-12.927376692648977,-12.680957768578082,-13.427102559711784,-12.897048885934055,-13.564459953922778,-12.902259875554591,-13.68373815761879,-13.099376228637993,-12.866999129299074,-13.035830723587424,-12.244792318437248,-12.226516893133521,-12.435225536581129,-12.509160526562482,-12.116045911796391,-12.686753643676639,-13.121160117909312,-12.719745479989797,-11.938211030792445,-12.168007608037442,-12.047259639482945,-11.995665219146758,-11.334676929749548,-11.731694366317242,-11.105491023045033,-11.991679176222533,-12.014467305038124,-11.44315123744309,-10.995014800224453,-11.405147158075124,-10.908312209881842,-10.362082964740694,-10.987764428369701,-10.321016774047166,-9.803179795388132,-9.471171042416245,-10.228499917779118,-10.65623521618545,-10.684156862553209,-10.59016180690378,-10.946245205122977,-10.105252509471029,-9.5048324232921,-9.946510682348162,-10.324656311888248,-9.55005607334897,-8.814296171069145,-8.449877893086523,-8.182588289026171,-8.868641601409763,-9.367129262536764,-9.149015303235501,-8.5217703320086,-8.883348601870239,-9.183519376907498,-9.928658707998693,-10.040413580369204,-10.507966303732246,-10.96639917138964,-9.977084681391716,-9.035345254000276,-8.207371463533491,-7.509145323187113,-7.87853518454358,-7.709663650020957,-7.295083328150213,-7.634608466178179,-6.8588915965519845,-7.134821203537285,-7.4562367792241275,-8.431858016178012,-8.148619265761226,-8.367124451324344,-8.46315876627341,-8.759972493164241,-8.26336593227461,-7.54598464211449,-6.656948339194059,-6.095279065426439,-6.623480148147792,-6.666082814801484,-7.3294815281406045,-7.372228394728154,-7.736341927666217,-7.450218614190817,-8.06519867759198,-8.143997509032488,-7.357444318011403,-6.979505896568298,-7.873828532639891,-8.249589808285236,-9.098903032951057,-9.085983194410801,-8.340625239536166,-7.795124656055123,-8.593071782961488,-8.675864328164607,-9.59494528081268,-9.905525366775692,-9.368121140636504,-8.941426154226065,-9.458341180812567,-8.76164205884561,-8.524093062151223,-8.07196563621983,-8.943453569430858,-8.325101649388671,-7.6397440088912845,-7.041926896665245,-7.420180458575487,-8.18694400601089,-7.18813660973683,-7.988659783732146,-7.842555893119425,-7.100236133206636,-6.352548074442893,-5.41505267797038,-6.358701411169022,-6.965031529311091,-7.120890278369188,-7.933296756353229,-7.175258754286915,-7.964418676681817,-8.76344340853393,-8.968416925519705,-9.742842346429825,-10.540965196676552,-10.920733457896858,-10.889357590582222,-10.426080726087093,-10.291304157115519,-10.120423543266952,-10.671854839660227,-10.701367295347154,-10.199787616729736,-9.738668368197978,-10.541796225588769,-10.829674991313368,-11.742437285371125,-12.079412300605327,-11.387428055051714,-10.554638182744384,-11.238479524850845,-11.718533420469612,-11.857152979820967,-11.313533090986311,-10.89593867957592,-10.240481402724981,-10.454465188086033,-10.68907092185691,-10.14439967321232,-9.530519627500325,-9.50371168833226,-10.053881762549281,-9.913277343381196,-10.46691424259916,-10.290121847297996,-10.000361324753612,-9.442777937278152,-9.51868990669027,-9.001543977297843,-9.539011534303427,-9.284516313113272,-9.403805423993617,-8.91242267144844,-8.071064026094973,-7.842918852344155,-8.26830751216039,-8.204749357886612,-7.669439098332077,-8.63441757299006,-8.16112443106249,-7.908098751679063,-8.213893715757877,-8.815710957627743,-9.121227843686938,-8.372984435874969,-8.948956653475761,-8.274317275732756,-9.215736044105142,-9.179302889853716,-9.75020727654919,-9.871497914660722,-9.889997470658273,-9.019828799646348,-9.126806498970836,-9.355025279335678,-10.133899986743927,-10.080683724023402,-9.300304805394262,-9.973336641211063,-9.509095156565309,-9.652177449315786,-9.169849987141788,-8.3734105755575,-8.879625247325748,-9.509743170812726,-8.563216675072908,-9.207186781335622,-8.271155251190066,-9.016468571033329,-9.87741659116,-9.898905199952424,-10.595553348772228,-11.12760989414528,-11.716382695827633,-11.32606419827789,-11.493490561842918,-10.50984761863947,-10.622052190825343,-11.367894304916263,-11.637566439807415,-11.576693978626281,-11.478785972576588,-10.988423014525324,-11.206767529714853,-11.018347499426454,-11.804836390540004,-11.448784679640085,-10.98328929906711,-11.87756069842726,-11.19077595230192,-11.052407594863325,-11.316655632574111,-12.095448634121567,-12.080726221669465,-13.029853325337172,-13.290663407649845,-13.618399511557072,-12.92574755428359,-13.709184061735868,-13.730665364302695,-13.432624301873147,-13.339453841093928,-12.747352755628526,-12.941031659487635,-12.0974784148857,-11.651804174296558,-10.754054974764585,-10.679291524924338,-11.657160020433366,-11.784021922852844,-11.974829823710024,-12.002968319226056,-11.49448897689581,-11.11021487833932,-10.588231384754181,-10.329340084455907,-10.249307019170374,-10.879117801319808,-10.681027796585113,-10.93275742372498,-9.986737198196352,-10.364760746713728,-10.93434097059071,-11.551223050802946,-11.33640658762306,-10.565557490102947,-11.197609022725374,-11.630482275504619,-10.884295376483351,-10.358974702190608,-9.959888976998627,-9.690387520939112,-10.068020943552256,-10.443532029166818,-9.46779282623902,-8.880418991204351,-8.685405094642192,-9.406934350263327,-9.143111136276275,-8.977890563197434,-9.267025385983288,-8.91276056971401,-8.255809899419546,-9.133061089087278,-10.115132191218436,-9.479833982884884,-10.06475657923147,-9.428743849508464,-9.08778309635818,-8.187416565138847,-8.992518462240696,-9.100246922578663,-9.37762222578749,-8.78262314805761,-9.687995134852827,-8.714648728724569,-8.530365602578968,-9.368757633958012,-9.31422619195655,-9.540541615802795,-9.65052875271067,-9.507452298887074,-8.552669891621917,-8.980722736101598,-8.41141493525356,-8.581778333056718,-8.105566579848528,-8.08924404066056,-7.9354989398270845,-7.814911395777017,-7.0518031171523035,-7.6775322877801955,-6.874315414112061,-6.738227130845189,-6.193257666192949,-6.278360835276544,-5.78242839127779,-5.874095073435456,-6.730718018952757,-6.29554559243843,-6.185329438652843,-6.269869821146131,-6.841832769103348,-6.80570885585621,-7.3660475690849125,-7.05115515133366,-6.416536164935678,-5.601607161108404,-4.794123565778136,-5.183412441052496,-4.822099306154996,-4.2254751697182655,-3.77345093106851,-4.280395219102502,-4.614008511416614,-5.294807756785303,-5.511843575630337,-5.26566123822704,-4.903945288155228,-4.65900745196268,-4.771291360724717,-5.744551099836826,-5.4637333350256085,-5.799554660450667,-5.281021543778479,-5.25463082594797,-5.282797532621771,-4.977670382708311,-5.510641447734088,-5.189328968990594,-4.3915702677331865,-3.5004048757255077,-2.7433768501505256,-3.519923005718738,-2.593615292571485,-2.0323524866253138,-2.9373333221301436,-3.4218283891677856,-2.9708180548623204,-2.2733750864863396,-2.9286661464720964,-3.7255071606487036,-3.1802817517891526,-3.816071266774088,-3.5649569402448833,-4.283264819998294,-4.931668902747333,-4.555779662914574,-5.380738663021475,-4.557800063397735,-4.710248675197363,-4.818269111216068,-4.971828253939748,-4.459801360964775,-5.059868794865906,-4.810283079277724,-4.7764609307050705,-4.741176658775657,-4.879261798225343,-5.864069827832282,-6.022809274028987,-6.442613436374813,-5.47609255509451,-5.318054833449423,-6.204806782305241,-7.127930909395218,-6.804027651902288,-6.558707338757813,-5.771195485722274,-6.74153758212924,-6.490507925860584,-6.961097554303706,-7.1517431158572435,-6.544631032738835,-6.926232300233096,-6.182274391874671,-5.838131739757955,-5.513445757329464,-4.994056897703558,-4.011718497145921,-4.394320580177009,-3.4474078961648047,-3.295604160055518,-3.367026197258383,-2.62420733878389,-3.380704866722226,-4.155702984891832,-5.033012978266925,-5.30204963684082,-5.0354624022729695,-4.0926052569411695,-5.060084437020123,-4.788835137151182,-5.370048611424863,-5.713319733738899,-5.414189053233713,-4.781973009929061,-4.734868224710226,-4.606952086091042,-3.7103332253172994,-3.2831165501847863,-2.435882810037583,-1.792568238452077,-1.2512115519493818,-1.0393923302181065,-1.8528556022793055,-1.718954992480576,-2.4812698983587325,-2.864339041057974,-1.8783488390035927,-0.9958841702900827,-0.7424745797179639,-0.14898098492994905,-0.1176403509452939,-0.8722741734236479,-0.3216146966442466,-1.0316027887165546,-1.4337087171152234,-1.1751077412627637,-0.723662200383842,-0.2719115922227502,0.3502219505608082,-0.12231457466259599,-0.7548340978100896,-1.2598653184249997,-0.6227550334297121,-0.3115743678063154,0.6651732353493571,-0.03747824113816023,0.06279941741377115,-0.2701534419320524,0.5004879771731794,-0.3159503685310483,0.39475491223856807,0.0068642920814454556,0.47873365599662066,0.6880644029006362,1.3506513899192214,1.4859210830181837,2.133823220618069,2.477752171456814,2.649359778035432,3.501917793881148,3.1909524272195995,3.5344395549036562,3.805829603690654,4.270498538389802,4.260867969598621,3.8628195263445377,3.425815597642213,2.6697834003716707,3.2014821330085397,3.7748794085346162,4.060286726336926,4.388329406268895,4.125584331806749,4.833176570944488,5.707748843356967,6.418391135055572,5.776705026626587,6.471022198908031,6.067070161458105,5.778033464215696,5.5536974389106035,4.747876093257219,3.846488899551332,4.441199811641127,3.7787316772155464,4.535799707751721,4.206636332441121,3.6702740197069943,3.851877671200782,4.524737948551774,5.409079697914422,4.588823684491217,5.372879763599485,6.1193334935233,6.567954606376588,6.153415122069418,6.614908793475479,7.539906081743538,8.493414442054927,9.356638534925878,10.212939308024943,10.946510324720293,10.12538780970499,9.349711063317955,8.772525994107127,8.084268322214484,8.39748579217121,8.90909558488056,8.35873292060569,7.861453587654978,8.157348022330552,8.856867623981088,9.55426009465009,8.929843245539814,9.708580863662064,10.669943413231522,11.283579325303435,10.787507394328713,10.110191363375634,10.181139323394746,9.693758542649448,9.835563975851983,10.69134921906516,10.326955480501056,11.317021939437836,12.045643697027117,12.865453846286982,13.122863294091076,13.445709461346269,14.359291125554591,15.281354639213532,14.69276259187609,15.48013476189226,14.78464075922966,14.245598837267607,14.85199566744268,14.71506360033527,14.766795133240521,14.536608518101275,14.46076262788847,14.344430004712194,14.392005715053529,15.108684997539967,14.254616401158273,13.460539063904434,13.437239732593298,14.091867181006819,13.611118261236697,14.074104041792452,13.436980342958122,13.89563613012433,14.798892578110099,14.764816893264651,15.653529739007354,16.548033555503935,17.356530476827174,16.801493833307177,16.662125975824893,16.74108051834628,15.85798023501411,15.738993949256837,15.440683219581842,15.613421755842865,16.331795178819448,15.984683211427182,16.115792331285775,15.852190332021564,15.141344021074474,15.702629419509321,15.279959611594677,15.059092461597174,14.680261733941734,14.941207391675562,15.237273022532463,15.58598901797086,16.371317502111197,16.463435797020793,16.84430752042681,16.55450838431716,17.23117306502536,17.16198505135253,17.6406213324517,17.49604077078402,17.287071887869388,17.709791564382613,17.540702547878027,17.941057967487723,18.460548606235534,19.30864942120388,20.14613071270287,19.82717496296391,20.32196940248832,20.526494019199163,19.635832892730832,20.422521156724542,19.68903397768736,19.84529891423881,20.513250519987196,19.649406624026597,20.398818747140467,20.839529924094677,20.492232417222112,20.62956737075001,21.00662171607837,20.179121845401824,20.82260636985302,20.396861555986106,20.82412838516757,21.017717248294502,20.728963309898973,21.688987498171628,22.674666712526232,22.222866508644074,21.66131048789248,21.6823750147596,21.88155332347378,22.216998350806534,21.43957694992423,21.726678429637104,21.36224832898006,21.62843494536355,22.10000750562176,23.003417340572923,23.448901243973523,24.222727049607784,24.298052188940346,24.66328193200752,24.7576487865299,24.650438852142543,24.30150672327727,25.290419837459922,25.97382498253137,26.256178751122206,25.98145902249962,26.12209194432944,26.95194455748424,27.311649713665247,26.92523300834,26.961539221927524,26.162459631450474,25.777712231501937,25.837945762556046,25.666532865259796,25.25358540425077,25.95812390325591,26.461430416908115,25.624852400273085,26.13254614174366,25.289084451273084,24.293641520198435,23.341240242589265,22.649245254695415,21.97965915268287,22.54467294923961,22.542104702908546,21.833179627079517,21.750173596665263,22.026525993365794,22.553717421833426,22.464033387601376,22.045080489944667,22.9553575348109,22.945944337639958,23.53965764818713,24.261653672438115,24.824121579062194,24.41634751437232,24.371406190562993,24.48560821218416,25.1319848918356,24.72854459192604,24.604169928934425,25.43632464017719,24.66795310843736,24.205362802371383,23.409836963750422,22.420666282065213,21.899794918484986,22.36783919436857,22.840346557553858,22.986320651602,22.655179012101144,22.54487538570538,22.21801772341132,22.80495143402368,23.743532430380583,24.53689423762262,25.01035316148773,25.693906310480088,26.60682969307527,27.029896656051278,27.514769195578992,26.715821499936283,26.559534841682762,27.438189493957907,27.439422250259668,26.48405251884833,26.353117066435516,26.605857473332435,25.698422020766884,26.37619349034503,27.366877353284508,26.827920448500663,26.78456750512123,27.19170944718644,26.96497053746134,26.98171282093972,26.55686674406752,27.248482403345406,27.16088424483314,27.372564814053476,27.242838124278933,27.622580711729825,27.68360948562622,27.02401165291667,27.111136061139405,28.024777972139418,27.48397321300581,26.839810740202665,26.956196689978242,27.550887586548924,27.981223133858293,28.186987397260964,29.08336872467771,29.51593978703022,29.23841397697106,29.820624579675496,29.83777470467612,30.35714019322768,30.6010055472143,30.155665341299027,31.06589290453121,31.95389518979937,32.25767460139468,31.82013561669737,31.582863349933177,30.625701278448105,30.91152007272467,30.58702523028478,30.503281021956354,31.380095229949802,31.045373764820397,31.363547313492745,31.83759928587824,31.45797952869907,31.530204568989575,30.75596224796027,31.710900658741593,30.847501365933567,31.280222283676267,31.442071749363095,30.47471899818629,31.443284287583083,32.103308730293065,31.570483065210283,30.971068513114005,31.962702366989106,31.091592807788402,30.832553218118846,30.998393709305674,31.80907719070092,32.713628771249205,32.78719206061214,32.60144138382748,32.29081374639645,31.606741539668292,31.9789339764975,31.292816462926567,31.574188836384565,31.383131941314787,31.384329807944596,31.898081683553755,32.223090381827205,31.316148195415735,30.581536738667637,29.86331522418186,30.47781876474619,31.162016727030277,30.931791432201862,30.685044610407203,30.12315563671291,30.411906003486365,29.669978624675423,30.226645342539996,30.801143212243915,29.923673920799047,29.233149179257452,29.805605030152947,29.95242490665987,30.196449793875217,31.08585618203506,30.949795216787606,31.673270667903125,32.475150173995644,33.00136712612584,32.051816371269524,32.80710407393053,33.429337894078344,33.978784911800176,33.339773210696876,33.245557312853634,32.398829848039895,33.077353016939014,33.506120598874986,32.67569768708199,32.591643805615604,33.05013133678585,33.859600747935474,33.182423159945756,33.14125978993252,32.982076338957995,32.02482361160219,31.564239932689816,31.025668567512184,31.844741282518953,30.86805352009833,30.97960755508393,30.02896307222545,29.489803025033325,30.419917498715222,31.027033366728574,30.471920399926603,30.15179264685139,29.98275139182806,29.45904365554452,29.869567732326686,30.67156622512266,30.029297270346433,30.949767412617803,30.565763119142503,29.693869835697114,30.284490192309022,30.92213583784178,31.65074249263853,30.87848495831713,30.79100018320605,31.268673410173506,30.951583481393754,30.703658014535904,30.40840712049976,31.24879738688469,30.713328177575022,31.04891660111025,30.663890636526048,29.68123179860413,29.370454895310104,29.494794020429254,29.143635120708495,29.475954021327198,29.738390621729195,28.873993874061853,28.151608895510435,27.154199497308582,26.79375517182052,27.404792219400406,27.927365710493177,27.827706111595035,28.801725642289966,27.944809885695577,28.187375058885664,28.719210641924292,29.34484892524779,29.096337324474007,28.574968696106225,28.519814907573164,28.099556299857795,28.479025782551616,28.19124419335276,28.073593181092292,28.971364446450025,28.61253062216565,27.928088671527803,27.676890457980335,28.241371155250818,27.672633565496653,28.58800315251574,28.33288407092914,27.583887693472207,28.03860573284328,28.161907500121742,28.411204783711582,27.437174132093787,26.553313918877393,26.68931489577517,26.891653148457408,27.156947367358953,26.648269216995686,27.174479659181088,26.71219321200624,27.584027494303882,27.901556126773357,27.27419371344149,27.432106495834887,28.308451594319195,27.991710513830185,28.566525710746646,29.331171264871955,29.720173525623977,29.388948953244835,30.03179908869788,29.731751454994082,30.37286559306085,31.117935839109123,30.553875011391938,30.042113912291825,30.454080152325332,30.615999972913414,30.06718288268894,29.72708024410531,30.239270304329693,31.097799378447235,30.81661035027355,30.08354111900553,30.59430274507031,31.278158391825855,30.649960713926703,30.023139575496316,30.293024593032897,30.037067141849548,29.085093243978918,29.93315905611962,30.609693815931678,30.682423030026257,30.964100549928844,31.44859834527597,30.618680434301496,30.038120608776808,30.30331065831706,30.789282844401896,30.717074459884316,30.799293673597276,31.51565428171307,31.4261890235357,30.934664751868695,30.045672247186303,29.18896507518366,29.663737183902413,29.181077784392983,28.671026521362364,28.37491239234805,29.16782585112378,29.865915678441525,29.55500293150544,29.335664006415755,30.15094606531784,29.819545733276755,30.536921283230186,31.43262709956616,31.907029954716563,31.993388519156724,31.9005375392735,31.666531764902174,32.03546350821853,32.868210833054036,32.00615076255053,31.258884445298463,31.6698885736987,31.478954419028014,31.94832832645625,32.7354443911463,33.107379008084536,32.57406378630549,32.664470980875194,32.942176257260144,33.34539235662669,33.33870522584766,34.30202020285651,33.35371967870742,33.12285916227847,33.6203462141566,32.77117560291663,32.428212891798466,32.83860364835709,32.332251655403525,32.92093918193132,32.404137887991965,32.991521276533604,33.5472983783111,33.637982389423996,34.19774192664772,34.02396907750517,33.06900020269677,32.44078343547881,32.19575182814151,31.927524075843394,32.85349566768855,33.16993308998644,33.41803283197805,32.7091510258615,32.74877061042935,31.870305054355413,31.671006489545107,32.46541705960408,31.88144021295011,31.270768945105374,30.341803272254765,30.284814429003745,30.487696423660964,30.76982865156606,29.794568699318916,29.873688944615424,29.85251124110073,29.331941321957856,28.667003063485026,28.64376655453816,29.466922054067254,29.648151697125286,30.382875316776335,29.958625107537955,29.44185463245958,29.34458579076454,30.13592308340594,29.824251652229577,30.506489967461675,31.220199909061193,32.10804401291534,33.067983471788466,32.89516082778573,33.67586382012814,34.388137380126864,34.36657459568232,35.14868629863486,35.021144040394574,34.78244602261111,34.953280051238835,34.04274514596909,34.82459323992953,34.30932550970465,33.64113366231322,33.45325851254165,32.96747163403779,32.06381588149816,32.219354308675975,33.21842916496098,34.00940269883722,34.66976488661021,34.738940209150314,34.50299276597798,35.27699219388887,34.9577311151661,34.13260176591575,34.88879593135789,35.18852723157033,35.01894778339192,35.379727608989924,34.99628076888621,35.135869999881834,34.3765000985004,33.44603241235018,33.02660509478301,32.391628314740956,31.526097428053617,31.82250155834481,31.36619804194197,31.705237292684615,32.3313641003333,33.15258088707924,32.774540106765926,32.586906724609435,33.4778737667948,34.053204900119454,33.973781873472035,33.277775540947914,33.55236498359591,33.097791742067784,33.45377267431468,32.68149738013744,32.10251761879772,31.13737582648173,30.148648714181036,31.139074091333896,30.422732970211655,30.194708802271634,29.581752542871982,30.546385345049202,30.1052931076847,29.761698846239597,30.757947586942464,30.31333148293197,29.586069075390697,30.093581076711416,30.41051656473428,30.826348267961293,31.56174553046003,31.62710122950375,31.180416042450815,31.491645408794284,31.641640722751617,31.486191681120545,31.118745226878673,30.14926285482943,31.03608697699383,30.239876962266862,29.296376613900065,30.013147374615073,30.466359781101346,31.06870174827054,31.85610317112878,32.085590336471796,31.12078704405576,30.297131013590842,30.053483641706407,30.386624701786786,30.12990280520171,30.441661149263382,30.776475413236767,30.491206905804574,31.18291379371658,32.162853424437344,32.19626485463232,31.54782872227952,30.772918959148228,29.830066109076142,30.082853158004582,30.77508463570848,31.473394290544093,32.24987147189677,31.684424174483865,31.512315879575908,31.92487406404689,31.871061854530126,32.04650849523023,31.10727749345824,31.553756944835186,32.26464160671458,32.49190132506192,32.02269582496956,31.838648658711463,31.687780457548797,31.599280383903533,30.73993432801217,30.374396630562842,30.284174878150225,30.395710975397378,30.418790667317808,30.047924076206982,30.072400994133204,30.758756421506405,30.56662934180349,31.28759943554178,31.90344410156831,30.99125096714124,31.04983438178897,30.94334243889898,29.970865674316883,29.557469432242215,30.07727704849094,30.091518339700997,29.748885611072183,28.946601170115173,28.39856251468882,28.58017814764753,28.46336448425427,28.769336075522006,29.404477829579264,29.650091166142374,29.836053857114166,29.210911138448864,28.798487656284124,28.025158037431538,27.41032944386825,27.30698300804943,28.257727205287665,27.547955186571926,27.382373104803264,28.1088544735685,27.778722384478897,26.91779874265194,27.531650993973017,27.777308479417115,27.55887068482116,27.60930399922654,27.22374805016443,26.57376653654501,26.509611886925995,25.533240283839405,25.031110333744437,25.46084633190185,26.335635947063565,26.35399197321385,25.525867144577205,25.05058839963749,24.59206061111763,25.167719547636807,25.831595815718174,25.51170096406713,26.488185422029346,26.29524216381833,26.731954195536673,26.619437890592963,25.961006306577474,25.205434335395694,25.121783164795488,24.697269626427442,25.32306028250605,25.426881877705455,24.454577647615224,23.480503750499338,24.441604064777493,23.9425948751159,24.889417099766433,25.79906740738079,25.904297534842044,25.29335903795436,26.24631896894425,25.32798418449238,26.04378014570102,26.06831775419414,27.01619100291282,27.730745892971754,26.862957884557545,26.921272923238575,27.277860497124493,26.663690821267664,27.287021655589342,28.184211721643806,29.0668956162408,29.14377353945747,29.845492873340845,29.10417893109843,29.456152317114174,28.912054795771837,28.860415793024004,28.03431681636721,28.332679465878755,27.700165380258113,27.373118337243795,26.85557076940313,27.357015263289213,26.786410875152797,25.881088976748288,25.94478622917086,26.376568767707795,26.154206646140665,26.614945865236223,26.319358837790787,26.803636664990336,26.03504752740264,25.954013481270522,25.032375414390117,24.033099978230894,23.933270719833672,24.91283048968762,25.48794963164255,26.126166799571365,25.370122662745416,26.2264150287956,25.301873412448913,25.295403893105686,26.21390201849863,26.160424649715424,25.417138781398535,24.747275272384286,24.409630033187568,25.043841250240803,25.90861907042563,26.66288317972794,26.948175569996238,26.669795379508287,27.21999727934599,27.738684637006372,28.705704791937023,28.333600440528244,28.525435943622142,28.68097081873566,29.550121694803238,28.876679970882833,28.148540359456092,27.820418200455606,28.781981227453798,29.585386776831,28.65440933825448,28.96903171390295,28.29676390485838,27.683723411057144,26.73749765334651,27.15525192534551,28.022429771721363,28.543296806979924,29.04702009120956,29.42701347405091,30.126798186451197,30.986234151758254,30.354893716517836,31.296319991350174,31.714437008835375,32.18404014734551,31.95193842984736,31.41568838711828,31.579285317566246,32.222476959228516,32.474894545041025,33.21865787729621,33.4846289572306,34.05424679024145,34.666938323993236,35.22228386485949,35.10363863315433,34.56510763755068,35.01539009064436,35.34660995891318,34.63641792535782,34.59404669934884,35.133592947386205,35.08592454949394,34.152886303607374,33.187302242964506,33.641766934189945,33.438773069065064,32.68912453111261,31.75581473344937,32.29550193808973,32.853439988102764,33.080667034722865,32.44927505357191,32.315847855526954,31.89399845339358,31.70093388808891,31.041342702694237,30.484807191882282,30.524099161382765,31.346906176302582,32.215560209937394,32.82366122957319,32.73139467975125,33.1770412363112,33.77764500072226,32.89452142640948,33.20207679877058,33.572281572036445,34.16031035548076,34.7261842857115,34.449396666139364,33.48241560347378,34.458078037016094,34.353625770658255,33.74159713415429,34.67613281309605,34.5830183387734,35.29627183172852,35.33258076198399,35.596175705082715,35.26942053902894,35.205707248300314,35.16183656267822,35.16203361842781,35.55506042204797,35.28751007234678,35.69188181636855,36.50799064990133,36.65181826567277,35.84112109057605,34.84789518639445,34.67161316983402,34.753161071334034,35.06521109119058,35.47775132069364,34.62447321601212,35.405274115968496,34.68711325759068,34.269093424547464,34.5197194237262,34.33608675049618,33.691008302383125,34.02509077871218,33.88153456430882,33.580659438390285,33.6135643706657,33.19313274975866,33.60187514265999,32.78567422553897,33.545840457547456,32.65042573818937,32.291628735139966,32.29958152491599,31.992775075137615,32.17334786709398,31.974688488524407,32.672833202872425,32.77821563696489,32.762640981934965,32.4507077508606,33.23708993475884,33.777179767377675,32.85503967339173,33.78426479967311,33.416640382260084,34.39920207578689,34.309858636464924,35.25551780825481,35.71526641771197,35.524472635705024,36.255125124473125,36.59809280000627,36.96262842742726,36.002126740757376,35.22355330130085,34.28701894264668,34.123284144792706,33.758797857910395,33.13832964049652,33.02226788550615,32.16345648653805,31.916658143512905,32.78108431538567,33.69518376747146,33.525923636741936,32.99427648028359,33.87076365761459,33.83516965387389,33.76578760892153,34.69783187750727,34.452059572096914,35.303376561030746,34.91910951817408,34.93502529663965,35.741189882624894,36.51630486641079,37.3313599168323,36.78070011083037,37.10275144223124,36.235772993881255,36.243772886227816,36.27090800460428,36.579914630856365,35.752075956668705,35.02612713444978,35.140056787990034,35.72602894390002,36.020275307353586,35.49660344328731,36.34135272493586,36.39269041130319,36.38129908544943,36.30779042094946,36.810490638483316,36.79179179575294,35.793388882651925,35.00687589729205,34.9374215179123,34.39992715511471,34.248435297980905,34.13082332490012,33.49956674454734,33.81606206903234,34.633214769884944,34.11746562505141,34.234107330907136,33.570968022570014,33.69130217144266,33.82154894247651,34.291467597708106,33.96640217863023,34.78526481799781,34.68391285929829,34.62800602521747,34.74497649865225,35.610196554102004,35.11528996936977,35.62156212516129,36.49187088152394,36.373408497776836,35.891083027236164,35.42880807770416,34.630203638225794,35.379220988135785,34.959768656175584,35.119695846922696,34.990837953053415,34.6257543717511,34.54099422553554,34.7360545406118,35.07152038207278,34.29474843014032,34.031573864631355,33.34915588563308,33.430315006989986,32.823357190936804,32.552410419564694,33.45100053027272,33.743781346827745,34.6341062434949,34.866918104700744,34.694064611103386,35.165813552215695,35.05440510250628,34.508262688759714,34.51048721605912,33.924037518911064,33.982835532166064,33.13568963808939,33.079368602484465,34.01182730542496,33.25717681599781,33.88710808288306,32.96954473759979,33.01786344218999,32.44633553409949,33.22279597166926,32.233642167411745,32.72307828301564,32.62021270627156,33.21170750167221,32.91017361264676,33.396267434582114,33.644197209738195,34.179100116249174,33.74504838977009,34.04761136882007,34.38955634506419,33.60641180584207,33.25673693045974,32.50927638495341,32.4586593802087,31.826779826078564,31.75441320054233,31.993479313794523,31.69172282097861,32.16344228293747,32.14235108392313,31.570761404000223,30.789939919952303,30.304412430152297,30.39430756913498,30.47245862474665,30.900065034627914,31.029196362011135,30.71075127692893,31.00323201995343,30.917991141323,30.029185745865107,29.3971024537459,29.846795195247978,29.772483402863145,30.454071779735386,29.618002502713352,28.922372457571328,29.775433014612645,29.464095077943057,29.14538984838873,29.206210034899414,29.427662941161543,29.34789780108258,30.154343327507377,29.33459859294817,29.95254522562027,29.271092230454087,28.877140074037015,28.187919749412686,27.574113734066486,28.471842187922448,29.46478714933619,28.472572332713753,29.394530491437763,29.866971392184496,30.50745029747486,29.726482919882983,28.75830815732479,29.27089855913073,29.99164233263582,30.400070047937334,30.613996035419405,30.86245531355962,31.775219187606126,31.564095019828528,32.0112502402626,32.63963397452608,32.59563028160483,32.90167164243758,32.472362152300775,32.852551735937595,33.72717886371538,33.80849816976115,33.27059735124931,33.56200195662677,33.775444600731134,33.52322987746447,33.89082107832655,34.491114219184965,34.08630414865911,34.19817208638415,34.132848812732846,33.42081213044003,32.9617956019938,33.029931627213955,32.50080475443974,33.282458402682096,32.46860217023641,32.00347182294354,32.04870685655624,32.10324391070753,33.05749397398904,33.170643609017134,34.145932011306286,34.32145609660074,33.43740694178268,33.88427426572889,34.86242514383048,34.77644707541913,34.6519726277329,35.252149848267436,34.90988932643086,34.37197612784803,34.438430479262024,34.85451983474195,34.69294750364497,34.4830174036324,34.72103789821267,35.66800946276635,36.18963397014886,36.525820083450526,36.51615181658417,37.49467163812369,36.77396003855392,37.32746523106471,36.484526991378516,37.217290652450174,38.14898920664564,38.03234746167436,39.0270047406666,39.51452420651913,38.78425383521244,39.21739793103188,39.07562536653131,38.287445090245456,39.14952861843631,38.91817600186914,38.792182521894574,38.8915221337229,38.44490039721131,38.043227130547166,38.6151595916599,39.37238673493266,39.312825351487845,38.9212735472247,38.06681013060734,37.31007586652413,36.32563803065568,36.02290303213522,35.95218697749078,36.36658757040277,36.412490860093385,36.06052845111117,35.63780721556395,34.67633090028539,34.051523097325116,34.83669756585732,35.08082637283951,35.02834716718644,34.121013863012195,34.50089501775801,35.146893405821174,34.503305102698505,33.56293205311522,33.28832442872226,32.31292021134868,31.76045280881226,31.044303490314633,30.141469216439873,29.522549240849912,30.50328398309648,30.89004268590361,30.11113366158679,30.61529616639018,29.756615235470235,30.360314682591707,30.60596566973254,29.973293527029455,29.27348082792014,29.936414442956448,30.376042385585606,30.566906217951328,31.328592750243843,30.501559229101986,31.396971293259412,30.486742620822042,30.91892847791314,31.916731440927833,32.75475473981351,31.96037604054436,31.38056564796716,30.462411317508668,30.86412560660392,31.49165997747332,32.05700228828937,31.66431235242635,32.157584560103714,31.929794351104647,31.28547250153497,31.51490649813786,30.51659049047157,30.084697331301868,29.152825401630253,29.172664718702435,28.76033643493429,29.324753761291504,29.42440406512469,30.331374695058912,29.34722447162494,29.20235788123682,29.223326622508466,29.86790882702917,30.848569470457733,31.761022462975234,32.63975559081882,31.71885935170576,31.045329646207392,31.713878442998976,31.197619882412255,30.204455954954028,29.585964685771614,29.787038814742118,29.40508051821962,29.11332234274596,29.76952823996544,29.61992641631514,30.26200297381729,29.41459064092487,28.71245209220797,29.642153080552816,29.21777757210657,29.134395425673574,28.371229639742523,28.457808191422373,28.27397057507187,28.031159354839474,28.94084614608437,28.676340313162655,29.509955901186913,30.38559944368899,29.874205680564046,29.980800401885062,29.12413260852918,29.648975423071533,30.374440563376993,29.850211593322456,30.511549388989806,30.300075244158506,29.826146254781634,29.033517715986818,28.768634466454387,29.075647613033652,29.710640507750213,29.48992276750505,28.945192168932408,29.409215414896607,28.787952420767397,27.8124955217354,28.283476511016488,28.917204913217574,29.54837648384273,29.2338229524903,29.80306562501937,30.123626132961363,30.770680634770542,31.557245805393904,31.12333142431453,30.530463628470898,29.839370117988437,30.051381203811616,29.147345983888954,28.30298566026613,29.301717690657824,29.197575831785798,30.124115857761353,30.619309136178344,30.795389046426862,31.243264040444046,30.65180684067309,29.747452531009912,28.859065641649067,28.495105599518865,28.437450462486595,29.285637069493532,29.173363095149398,28.650979574304074,29.645789962727576,28.869444367475808,29.37230365909636,30.06873153662309,30.750627474393696,31.17534015374258,30.482319426257163,31.422033564653248,31.6257188427262,31.787808158434927,31.39724374283105,32.218722010962665,31.543307370506227,32.06255913479254,32.86419787816703,31.962501468602568,31.472286185249686,32.34180808067322,31.562304314691573,31.48425632575527,31.22731810156256,31.752076513599604,31.70233789179474,31.695849403273314,30.757724235299975,30.67855546064675,31.295348609797657,31.10309405764565,30.70602964842692,30.63607179792598,29.898683339357376,29.937735193409026,30.097148857079446,29.608756912406534,28.68144106771797,28.6411998947151,28.722594189923257,27.73087816685438,28.32419107016176,28.50739413453266,29.199311229865998,29.5201677614823,30.379407215863466,29.675479898694903,29.87719724746421,29.62901682080701,29.212357599288225,28.44367852434516,29.443637933582067,30.101491298526525,30.0391711788252,29.99439411703497,29.587583436165005,29.951201060786843,30.814635328482836,30.38167307060212,30.065691431984305,29.336113091558218,30.033916638232768,30.907688696868718,30.22436356637627,30.17502696439624,29.98529949877411,29.33982282783836,29.735771346837282,29.97626485582441,29.215192346833646,28.457022714894265,27.726357309147716,28.614054047502577,28.42214188631624,28.594951190520078,28.008172223344445,27.826644270215183,28.533404547255486,28.174083000048995,28.480817777570337,27.630993951577693,27.251385644543916,26.777939434628934,26.424691499210894,27.086275327950716,26.16168349562213,26.644422763958573,25.70060500735417,26.340049928054214,25.508614264894277,25.325458601117134,26.263570319861174,25.821621952578425,25.182057683356106,24.397547053638846,25.211612559389323,25.988452444318682,26.914051958359778,26.337320876307786,26.595359697006643,27.197074083145708,27.31174436211586,27.85400073323399,28.460483263712376,29.101445245090872,29.006801509764045,29.184499495197088,28.881519622169435,28.854317896533757,28.851019288413227,28.720721575897187,29.13059922074899,29.811114550102502,29.389967267867178,29.178073840681463,28.925064898096025,27.962434311397374,27.313424955122173,27.854995705652982,27.771658337675035,28.634615558199584,28.913021705579013,29.12787582864985,28.30154117802158,28.563388353213668,28.592202459461987,29.264371096156538,29.3682499807328,29.49067907454446,30.44144604448229,30.69581204978749,31.14371311943978,31.717324830126017,31.465453647542745,32.258200561162084,33.157711666077375,33.973541129380465,32.999965424183756,32.40231398399919,32.1311150197871,33.12526951543987,32.74877129215747,33.02673751860857,32.89461946254596,33.48592075519264,34.1482912809588,33.19109366182238,33.19374225707725,32.596164534799755,33.413482431788,34.177677302621305,33.46526323724538,32.77910665143281,31.88048692094162,32.29545927466825,31.90307010523975,31.509981439448893,31.586827584076673,31.63824877468869,30.695333315525204,30.749246204271913,30.246268230024725,31.112539780326188,31.395317516755313,31.962189835496247,32.079695374239236,32.94633721932769,32.47422168776393,33.03472289443016,34.023273846600205,33.15416489774361,32.911331105045974,33.64412084128708,34.37197786429897,34.21666647493839,35.01476193778217,34.82452070899308,35.49605363095179,34.856302397325635,35.08138036355376,35.236143845599145,34.71379849826917,34.40288849500939,35.06531336158514,34.19968736777082,34.04128312738612,33.162923879455775,33.838761466089636,33.461407041177154,33.546950076241046,34.1201231861487,34.039195851422846,34.05832168040797,34.94445009017363,35.05906712543219,34.3800186207518,34.95839821966365,34.80216523911804,35.754498386755586,35.099712373223156,35.57169227208942,35.4717150228098,34.67027596803382,35.55528645822778,35.279015413019806,35.3937928318046,36.34926152881235,35.354157554451376,35.86462872615084,35.99727962678298,36.52078599995002,35.79834193037823,35.948289135470986,35.40404631011188,35.99911060323939,36.15530008263886,35.762441504746675,35.325908817816526,35.00304798129946,34.69717617891729,35.4700320251286,35.22862416272983,35.32694110600278,34.877025531139225,34.03251057816669,33.74286603694782,32.776278962846845,32.43531061336398,32.42053865408525,32.89386279229075,33.27258447697386,33.23453283403069,32.673180990386754,33.195478859357536,33.21678255498409,33.7599151423201,33.20180462580174,32.275228888727725,32.888709239661694,32.18302864069119,31.73343184730038,32.32965236483142,31.788518807385117,30.94034743309021,30.64441621582955,30.575654591433704,30.007284371182323,29.66648225719109,30.264865648932755,31.01824698364362,30.488884883467108,30.69506034301594,29.931043450254947,30.536214698571712,29.78210688987747,29.226674700621516,29.054806798696518,29.887558970600367,29.07769284909591,29.43539639841765,29.74058520887047,29.94392376160249,29.20110329054296,28.64074698649347,28.941552262287587,29.284640239086002,30.185870206914842,31.176805313210934,31.015437769703567,31.16507021896541,31.453242014627904,32.45125503418967,32.51304274518043,33.321672931779176,33.3889666441828,33.41621835017577,33.69033977063373,32.7334380694665,33.312087391037494,33.47650399710983,33.473892443813384,33.2670839196071,33.966698011849076,33.644466808997095,33.52801124146208,32.66500606806949,32.22313344525173,32.922210986260325,33.380657939240336,32.381732313428074,33.076770345214754,32.2587187550962,33.03870523208752,33.71125313779339,33.595239845104516,33.665617424529046,33.52826349250972,34.2830561180599,34.87633198685944,34.23411942413077,35.04639997379854,35.41649733996019,36.35425568185747,36.1822964749299,37.12162626627833,36.911821043118834,36.245884077157825,37.14461530325934,37.8106903322041,36.97406486142427,36.264562907163054,35.36763663729653,36.09675537236035,36.52471831161529,36.69883399223909,37.20657470589504,36.60443026153371,36.23905697418377,37.205869670491666,37.93881730129942,37.970033621415496,37.39403210254386,38.280891766771674,38.70354472286999,37.98802983062342,37.250358775723726,37.35971294855699,36.89733548555523,37.28308880934492,37.97188152233139,38.206118788570166,39.03931892942637,38.76114534121007,38.28170894179493,38.79971729731187,39.48360849171877,40.3471546494402,39.96055769780651,40.72680702665821,41.70314255915582,42.656846741214395,41.87451758002862,41.26969203585759,40.5636363546364,41.24017107812688,41.20220385864377,41.884298330172896,41.25955657986924,41.38604898005724,40.94469079654664,41.33593931840733,40.66444130335003,41.350675623863935,40.60788137372583,40.824322417378426,39.83012265758589,39.62523629143834,39.592570687644184,39.68684930773452,39.56426332099363,39.276860042940825,40.0911425142549,40.232874779962,40.656621486879885,39.658738872502,39.32513132458553,38.32914648298174,38.01978515367955,38.65421059820801,39.357912183739245,39.62311400938779,38.827071042731404,38.509224083740264,38.48359816940501,39.42353201471269,39.35967885935679,39.909424202982336,40.75653078220785,41.62944954028353,41.28696792386472,41.99851265735924,42.51881226245314,42.0855485140346,41.13923734519631,41.89884790079668,42.02408005669713,41.805801501031965,42.650477757677436,42.30404594261199,42.78403633879498,42.52300155721605,42.02990886149928,42.14841902209446,41.90038173738867,41.31782404240221,41.10553497867659,41.47797972289845,41.037052180152386,40.457963907159865,40.99575951322913,40.8725503613241,40.94987617386505,41.05513899959624,41.04884848743677,41.98159950133413,41.02037541149184,41.618022713810205,42.044261450879276,42.7038515554741,42.53984390897676,43.51603663992137,43.131307881791145,43.938988864887506,43.92136718984693,43.76791506027803,43.605551610700786,43.817890990525484,44.73311415920034,44.42242038110271,43.63702529668808,44.28902904735878,44.23769662575796,44.27664962876588,45.23764050286263,44.99194810073823,45.70744562614709,45.927591868210584,45.381606203038245,45.738142495043576,45.680460882373154,46.66549729090184,46.69030658528209,46.76308369357139,47.58126119710505,46.6658953493461,46.45676349289715,47.45182431815192,47.785951463505626,47.61698102997616,48.1874271472916,47.95775460405275,47.80635688267648,48.42463957425207,47.52604212844744,47.55919697601348,46.60815373249352,47.28723114496097,47.0348379178904,46.84127045376226,46.79048667429015,47.476435779593885,47.302126546856016,46.92394863627851,47.513484076131135,47.58913295902312,48.49877439858392,47.78128805337474,48.35279877576977,47.582877312321216,46.61600463092327,46.828587943688035,46.7876105774194,47.64317785948515,46.7968464307487,47.65149785578251,48.1464199568145,48.62781465379521,47.929250911809504,48.67057791678235,49.25752286333591,49.91913928370923,49.65427364083007,48.714842388406396,48.427515445742756,48.060472146607935,47.702443139161915,47.82642362592742,47.5117658264935,48.02302709314972,47.454093121457845,46.90874093910679,45.99539063172415,46.026798587758094,46.956286766566336,46.04748806543648,45.96818237984553,45.96107899863273,45.35016322275624,45.943337647709996,46.652194157242775,46.82672858145088,47.57547558983788,47.562710345257074,47.635457219555974,48.31912704836577,49.03981235716492,48.1740059023723,49.113292147405446,49.55087491218001,50.11368305655196,50.774674077983946,51.13116050278768,51.33595879469067,51.27553605288267,51.66798797855154,51.3663173369132,52.15348322922364,51.216895202640444,52.13083611242473,52.05631795199588,52.96915788203478,53.89370933640748,54.12005955632776,53.58260445808992,54.05481940926984,53.39668971206993,52.451508534606546,53.342169334646314,52.819165685679764,52.34544280357659,53.27952152537182,52.488611889537424,53.384655721951276,53.48036048281938,54.133775618392974,54.00051186373457,54.30033129872754,53.91774359019473,53.254474273882806,53.08153990190476,52.13912021834403,52.74610333517194,53.65856430307031,53.879754894878715,54.745440633036196,55.36990716261789,54.37131084268913,54.76405222155154,54.101202187128365,54.77727278089151,55.6731146373786,54.94515716936439,54.94124879408628,54.64120354689658,55.29343995079398,54.82368209725246,54.00125676486641,54.512373972684145,54.976981265004724,54.50448261993006,55.16149661131203,56.11258496250957,55.74050385085866,55.04895270848647,55.187107724603266,55.26646384689957,55.28273428650573,54.85012083640322,55.481262657325715,55.23589756526053,54.32214228482917,55.16084990417585,55.60382173489779,55.66093228245154,54.963640599511564,55.409617472905666,55.12138199293986,56.063031665515155,56.792508342303336,56.14776050671935,56.41607065591961,56.201440369710326,55.40482800733298,55.816151703707874,55.594803906045854,54.66177201690152,53.83306814497337,53.69939814088866,52.81498100608587,53.05983249982819,53.630265194457024,53.01236965553835,52.73491985723376,53.12470695748925,53.43257094034925,53.37239026557654,53.34872446535155,53.35397807974368,52.650672493036836,53.080354548525065,53.600982213858515,53.83344505028799,53.94739570003003,54.04507658537477,54.1243978952989,54.97553261788562,55.12733670556918,54.24119285074994,55.00615414045751,54.996024440508336,54.67500165849924,54.68366482760757,53.9744393536821,54.349178176838905,55.07266647089273,55.26361942617223,54.63859274284914,54.77161595644429,54.443130280356854,55.119686879217625,54.15421174233779,54.76020375173539,54.26408630749211,53.46294066961855,53.81656413618475,54.53191371122375,54.23016120214015,54.35715499147773,54.23625847045332,54.60527036432177,54.47614865889773,53.864810726605356,53.3652153108269,52.820974812842906,53.26747357007116,53.56140179280192,53.01573495613411,52.37724345829338,51.993913647253066,51.8060430646874,50.84317017206922,49.87275371514261,50.060604337602854,50.18724260246381,49.93271473515779,50.66466493625194,51.637930285185575,50.88009158382192,50.49812903953716,50.25171996373683,50.209185427520424,50.496611722745,50.165654733777046,50.373226766008884,50.307818808592856,50.1664655758068,50.195273955818266,51.04621063731611,51.32823254400864,52.30868456419557,53.17516837408766,53.86398817459121,54.25456138048321,54.78633443079889,53.94293322041631,53.07908789021894,53.49380403151736,54.47582171019167,54.987309822347015,55.21049206517637,54.690807613078505,54.83694798639044,54.48478136584163,54.24078728351742,55.13472599117085,55.79143245983869,55.76309907389805,55.894194920081645,54.972581735346466,54.44927937258035,53.96370493201539,54.05807068152353,53.2400464923121,53.19461138127372,52.50945898843929,52.4335283334367,51.97334234369919,52.01664435490966,51.88131008017808,50.95205477392301,51.20077594509348,51.89804995013401,52.58238082425669,51.648182541597635,50.91336569329724,50.94631932489574,50.462848701979965,50.93037709686905,51.54968147119507,51.52697451971471,51.13951242994517,50.75908073829487,51.68129986291751,52.13594780070707,51.83211555797607,51.392703224439174,50.395522739272565,50.097761027514935,49.41776234051213,49.117101112380624,49.37452493607998,48.75364988530055,47.89113069232553,48.16715292586014,48.044228142593056,47.17111054714769,46.37264861818403,46.66568836243823,47.50703572528437,47.79154666373506,48.55966521380469,47.98844835534692,48.67696598311886,49.56692877411842,49.11152022425085,50.08199284365401,50.511529309209436,51.00456459727138,51.15194396674633,50.41838800301775,49.5308612450026,49.290640589315444,50.204019291792065,50.23575174389407,49.455105166416615,49.192986821290106,49.96568644559011,49.15101468237117,48.79129589116201,49.11313989106566,48.615891746710986,47.85531945619732,46.966636010911316,47.113815309945494,47.92326422827318,46.950641016475856,47.539051374420524,46.57224294357002,46.12388285482302,46.82780896918848,47.67116519808769,47.26184501685202,46.81491621444002,47.6291306912899,47.96001756610349,47.98487740382552,47.50356659013778,47.278208195231855,46.970509422942996,47.33568694349378,46.867239262443036,47.044439531397074,47.68279694952071,48.611972318496555,48.894520576577634,48.3072178917937,48.02605106541887,48.97990334406495,48.36626379797235,49.042787744663656,48.77425286360085,48.42932270653546,47.85310092289001,47.963580562733114,48.31397519959137,49.054782637860626,48.60651507880539,48.942311115097255,48.62684546271339,48.371114525943995,48.97341676335782,48.420932590030134,48.050906056538224,48.78220599843189,48.13162459619343,48.76270381733775,48.47723793052137,48.26641116151586,48.80716740945354,49.073832732159644,49.866132779978216,49.412016045767814,49.72178140794858,48.93894055625424,48.21282778028399,48.457908634096384,49.14042622083798,48.50095012411475,49.088473030366,48.38445679284632,48.928741212934256,49.89951742067933,50.445984839461744,50.555179743561894,51.1490731514059,50.53414312750101,50.769784870091826,50.53427974274382,50.695487764663994,50.9403392476961,51.14711870253086,51.20533818518743,50.704287827480584,50.366446267813444,49.91973252175376,49.20378754287958,49.37042517634109,49.25361500075087,48.92173365037888,49.03660279279575,48.861856245435774,48.496987528633326,47.88424632232636,48.10772990761325,48.225747395306826,48.66578273754567,47.80117112910375,48.57152777398005,47.99909141333774,47.18615658627823,46.510499202646315,46.27042624773458,46.93411363475025,47.404846092220396,47.22970127221197,48.17778178397566,49.046287117525935,48.790109757799655,47.94913757406175,47.037215267308056,47.281368653755635,47.99071193858981,47.39287976408377,47.52540437551215,47.74379620747641,47.358963845763355,46.78302692528814,46.40972630074248,46.69413724867627,47.130202937405556,47.32562474021688,47.59102529892698,47.197466356214136,47.81020022602752,47.8547897497192,47.88841784419492,48.7562551246956,49.00217678351328,48.43374083098024,48.63622919470072,48.20336982421577,47.24154114257544,46.53598588285968,46.90937628597021,46.46184140164405,47.36085601011291,46.711944472044706,46.098643138539046,46.80997281940654,47.15865992754698,47.63677190197632,48.08521500322968,47.92241507768631,48.765674551483244,49.43172340001911,49.80292500695214,49.61323381913826,49.61863629240543,49.152263399679214,48.742668674793094,48.60389750311151,48.11582160787657,47.47041117493063,48.245397680904716,48.37230861373246,48.257675777189434,48.7652836618945,48.130665375851095,47.76855636946857,48.09512119879946,47.79729960439727,48.34531130315736,49.336484868545085,49.98759147012606,49.43957170797512,49.042151844128966,48.12949203280732,48.87023690529168,49.418567209504545,49.9567002998665,49.92390811583027,50.11666380055249,49.247165153268725,48.61810780130327,48.09848671546206,48.59112987853587,48.32378586335108,47.94947040034458,47.29283125186339,48.05257848650217,47.335950643755496,48.11422851122916,47.160875209607184,47.57074531214312,47.40584124485031,46.67154717585072,45.69426481984556,45.55104518542066,46.29108767118305,45.9610964236781,45.39526096591726,45.64473776193336,45.959355366416276,45.25503218313679,45.467125966679305,46.191723112016916,47.1472105323337,46.50426124641672,46.52374531235546,45.76131446706131,45.756678559817374,45.47522907797247,45.86252630595118,45.802500010002404,45.12540665641427,46.075256233569235,46.03887409809977,46.20544876391068,46.11860688216984,46.41183366905898,46.653101429343224,45.9898576727137,45.55657648295164,44.60238667950034,44.82887580757961,44.218068620655686,43.62562038144097,43.1082581714727,43.70438935700804,44.48712552618235,43.51321387523785,43.637091184500605,43.341418052557856,43.40565367927775,44.1992900618352,43.26263272576034,42.7054909421131,43.51434258650988,43.52200520038605,43.81545763928443,44.43542013177648,44.07759701739997,43.2495277589187,42.55396754061803,41.77616654615849,41.44239181512967,40.92216974077746,41.296960092615336,40.897310075350106,40.04102426255122,40.70111170364544,40.02676850091666,41.01926235901192,41.35113058146089,41.05876081623137,41.60287075955421,41.148050719406456,40.38892079051584,40.9303389582783,41.3371270224452,40.34816369134933,39.38600082276389,38.79003729438409,39.350400637835264,40.17848903266713,39.99084346322343,38.99289156682789,39.29280055500567,39.28323388425633,39.34600063879043,39.06217488599941,39.97003134666011,39.77931759925559,39.38110751193017,39.375077879056334,39.60887664882466,39.731586528010666,39.778439979068935,39.12421899102628,39.76112362276763,39.464760043658316,38.72549417056143,37.87813587998971,38.73793529346585,38.17814768059179,39.082062222994864,40.068266465328634,41.03437789203599,40.11956136021763,40.18164465809241,40.272595818620175,40.38007091730833,39.66142411297187,40.0655166041106,40.52808143617585,40.86478615552187,40.29388149594888,39.36938837822527,39.85324434796348,40.708134344313294,40.54315416421741,40.44111842336133,41.024630029220134,41.33898883406073,40.571799418888986,41.06168917985633,41.166807720437646,41.45904918713495,41.63401980092749,40.944518477190286,39.97069142898545,40.92843398498371,39.993582628667355,39.14553898060694,40.03979869093746,39.23922983603552,38.60541076725349,39.20590222161263,40.1779009886086,40.882916550617665,40.233754217159,40.343957263976336,41.22663539694622,42.077500252984464,42.76842470373958,43.181292057503015,43.299110368359834,43.564986960962415,44.117462476249784,44.919879747089,44.124406724236906,44.614149352535605,45.18192950217053,45.123612807597965,44.843942808918655,44.981450562831014,44.344543155282736,43.436213101260364,44.122195180505514,43.99886827263981,44.558536344673485,45.11386371171102,44.17944611096755,43.19140469841659,43.23777141934261,44.02776261046529,43.57240312732756,42.718183260411024,43.077042574528605,42.87948358245194,43.46923644980416,43.65542795136571,43.91423953510821,43.183156648650765,42.87242835666984,43.39400303456932,43.89559739455581,43.20742071280256,43.278648242820054,42.51356535963714,41.73658132646233,41.957201577723026,41.08313862467185,40.54522072058171,40.34096982795745,39.94845497328788,39.69570800382644,39.78394873440266,40.640503412578255,39.69185985298827,39.15697866631672,39.69108181446791,39.327020498458296,40.133276684209704,39.26750079449266,39.44908714108169,39.87421105476096,39.42035794490948,39.87324709445238,40.83986382232979,41.670533491298556,41.166192929726094,41.75708656711504,41.01096234563738,40.963240628596395,41.514397852588445,41.22563717747107,40.23170401668176,39.492321954574436,40.16104087838903,39.37216586759314,39.84590147715062,40.05172898154706,39.944281100761145,39.204165160190314,38.875457561574876,39.4090045876801,39.603850337676704,39.26387755619362,38.855940107256174,39.41443906677887,40.27156650973484,40.50498476810753,39.65700331609696,40.43485385738313,41.33992164954543,40.45950093539432,41.3000039672479,41.392688224092126,41.98135523730889,41.61353798722848,41.58778651477769,41.226251447573304,41.597492075525224,41.01257939776406,41.024096372071654,41.635500678326935,40.91926239524037,40.00875952001661,39.22649217490107,39.968519219662994,39.25153836514801,39.812364510726184,39.92826046096161,40.50012425100431,40.998513551894575,41.43395996792242,42.0517327724956,41.876141068991274,42.38582737091929,43.07459105318412,43.39733161544427,42.84311104984954,43.44372271792963,42.670327270869166,42.68143200688064,42.47119380533695,41.61425675358623,42.103626526892185,41.206417069304734,41.80158581864089,42.6757752513513,42.54908614652231,42.845736376941204,42.56103270081803,41.79622451867908,42.11380653176457,41.295007806271315,41.19507554033771,41.974401669576764,42.369075909256935,41.94454810861498,42.42355679953471,42.27104697888717,41.27580603165552,41.89275635313243,42.57415888272226,42.84390098461881,42.780822061467916,42.4251177450642,42.697512654121965,41.860532875172794,41.41146970074624,41.85863120900467,41.555326089728624,41.156729250680655,41.50420016562566,41.188872177153826,41.09650194691494,40.27824362972751,40.79204334784299,41.17447714647278,41.01006233925,40.593147853855044,40.88364259712398,41.56669572601095,41.00376566499472,41.951813304796815,41.28272076928988,41.62171703763306,41.27994095114991,41.53830786049366,41.04571658978239,42.02049530111253,41.676766080316156,40.781978415790945,40.86294385883957,41.10476067988202,41.341275297570974,40.9404007345438,40.610990210901946,41.043704121839255,41.995833503548056,42.5523731620051,42.98397298203781,43.314742324873805,43.94454400194809,43.2974902484566,43.42736117774621,42.91346452571452,42.41827753186226,41.892747467849404,42.445533383172005,43.23722705896944,43.11538646230474,42.85537345986813,43.55879237316549,43.70095995767042,43.11864512972534,42.828589495271444,43.330127929802984,43.219290390610695,43.11179338954389,43.084443524479866,42.184931023046374,41.69498832477257,42.02060828823596,41.507442467845976,42.3951977128163,41.87016170145944,42.01194073772058,42.52678175503388,43.359337508678436,43.70970928436145,44.2569140708074,43.364136048126966,43.52907477458939,44.197704293299466,45.07810890534893,45.955696657299995,45.346151913981885,45.996780172456056,46.279269591439515,45.35330586601049,44.52319574309513,45.101647013332695,45.366381619591266,44.71816971944645,44.20513116940856,43.74252016330138,44.37732595950365,43.946279312483966,44.56860626582056,44.32974664308131,43.46879804972559,42.85740569373593,42.55646091513336,42.0672720214352,42.799361902754754,42.553979901596904,42.070136891677976,41.81814269442111,41.7633738075383,41.45586208347231,42.18266967544332,42.94690692750737,43.62164387432858,43.639601272996515,43.010322022251785,43.64233661815524,43.41165789915249,43.69240602850914,42.8598123062402,42.81141455983743,43.25784439127892,42.75459813326597,42.41244803322479,41.64257822511718,41.87740759225562,42.391311682760715,42.76815201854333,42.203612573910505,41.62206791806966,42.59945026645437,41.88338724710047,42.74988489039242,42.25408478919417,42.87395364884287,42.31862471671775,41.43009334709495,41.92758978297934,41.9816181762144,40.98247656598687,40.72681490890682,41.26282822992653,41.80638636741787,42.22136088879779,41.272280484903604,41.28284690203145,40.858447624370456,40.760201879777014,39.98182061314583,40.13584957784042,39.721340361982584,39.33412054274231,38.42827575141564,38.74779508821666,38.73376583494246,37.98243194678798,38.59894006000832,39.52029976993799,39.763231976889074,38.95174418203533,39.12661180878058,39.38591767242178,39.94729884248227,40.73208138626069,40.656697707250714,40.05381134105846,41.04978628223762,40.619232789147645,39.864014133811,40.4466454279609,39.93899767892435,40.73004721198231,39.99000651855022,40.20121828652918,39.442615220788866,39.86625772062689,39.866747406776994,40.13996126782149,40.944486963097006,40.92695383448154,40.772149928845465,40.0869591711089,39.78025647252798,39.229498649947345,39.29150034766644,38.46132697630674,37.97270708810538,37.81338405050337,37.64392039878294,38.50215226132423,37.73593493597582,36.88440053584054,35.96208155807108,35.04916703607887,35.4291043789126,34.514373431913555,35.287417417857796,35.36484607774764,34.81544346222654,34.39285302022472,34.97492527542636,35.4258289267309,36.15819444600493,36.06319146929309,35.172625025734305,36.13791642989963,36.56590757891536,35.97517895465717,36.53815293358639,36.7586091007106,36.92576813418418,36.11131949350238,35.43474019365385,35.89062583446503,36.48915986996144,35.93954170541838,35.747941337525845,36.436950316186994,35.55687442747876,35.38498810073361,34.806376605760306,34.72974606929347,34.34435696341097,34.81699599977583,34.846764320041984,33.99667954724282,34.79579260898754,34.39021913474426,33.88234663195908,33.774339872878045,34.361538579687476,33.372221804223955,32.55373491439968,32.54571844032034,31.680197994224727,30.94427025364712,31.321911870501935,30.80786759359762,31.09235706552863,30.33803870342672,30.484627466183156,29.5884170322679,28.660776290576905,29.162637635599822,28.89868258498609,29.1572670545429,29.83213493367657,29.689357354305685,29.987818466499448,30.266339485999197,30.11469096597284,29.520962262526155,28.86068535549566,28.71835151920095,28.60791327105835,29.15437073353678,28.780946932267398,28.56871947273612,29.28925437713042,29.755299158394337,29.36594942305237,30.208161341026425,30.661783991847187,30.678769636899233,31.636829352006316,32.63165054470301,33.51841105194762,33.14453514479101,32.38848544284701,31.8402059962973,32.50538667757064,33.37367782415822,33.464434625115246,32.547208916861564,32.79631696129218,33.27004713471979,32.84947411622852,32.32237113174051,31.821229291614145,32.68305092025548,31.798510453663766,31.731040332000703,31.329539542552084,31.00408656708896,31.04874477861449,30.786419394426048,30.784231978002936,29.87865226296708,29.233318789862096,29.00672054802999,28.442549717146903,27.962661677971482,28.14592783525586,28.27157799806446,27.92954309238121,28.232124535832554,27.346417761407793,27.412276681046933,27.69400856550783,27.308535953518003,28.146598044782877,27.906363375019282,27.794343628454953,28.26961279241368,28.027131425682455,27.49840450147167,27.249527288600802,26.864947418682277,27.007704708259553,27.00417162850499,26.151963617652655,26.212792060803622,27.158820528071374,26.620767193380743,26.839194119442254,27.09873556671664,26.87998776137829,26.766820766963065,26.693454180378467,26.238277905154973,25.49519471731037,24.773215101566166,24.32459834124893,24.896367939654738,25.25136726303026,25.1284014666453,25.195182933472097,25.586492586880922,25.02481818990782,25.216878962237388,24.920428588520736,25.49539360869676,26.207945722620934,26.749540934339166,26.298663031775504,26.428682568017393,25.90125588979572,26.555108479224145,27.350203666370362,26.780899946577847,27.30313107650727,27.727762618567795,27.04552956484258,26.765331179834902,27.31429973244667,26.329831240698695,25.3426645193249,24.75948545522988,24.639010385610163,24.447121857199818,24.37836635718122,23.960496452171355,23.23229015059769,22.336128801107407,21.383984073530883,21.74340550880879,22.285041869152337,22.869953792076558,22.833300257567316,22.59454439394176,23.45969783095643,23.28973669325933,23.434766033198684,23.9716660650447,24.1202354086563,23.874800072517246,24.349604769144207,24.370007537771016,24.820805983617902,24.651981639210135,25.6080374578014,25.96686702640727,26.003250500187278,25.13066520355642,25.227654010988772,24.726637178566307,25.70142785832286,25.78005822515115,25.38006261922419,24.93483752105385,25.147210768889636,25.438131207134575,26.198109352961183,27.045360603835434,26.509092582855374,26.915296593680978,26.00519261881709,25.463020878843963,24.598190046381205,24.32255090540275,24.286883449647576,24.802374897524714,25.503039847593755,26.40874721482396,27.1968987272121,26.953263267874718,26.381747810635716,26.056995675433427,26.358608845621347,26.739506328478456,27.100501835346222,26.855226932559162,26.91530166985467,26.427347374148667,27.104176920838654,27.538929671049118,27.00637032231316,26.431792372837663,27.150194191839546,27.55892968690023,27.97985691577196,28.113147677388042,27.47786905616522,27.226599915418774,27.96152613312006,28.303993327077478,28.712197116110474,29.673002939205617,30.643810133449733,30.62965569086373,30.97521878266707,30.04283584887162,29.335644997190684,29.79826407181099,30.43496504565701,30.550598425325006,30.869272403419018,31.631630855612457,31.711569977458566,32.538271743338555,32.14047538861632,31.5642320481129,31.025078003760427,31.06127458345145,30.91344439703971,31.541962678544223,30.672362545039505,31.566886888816953,31.188359409105033,32.06566155143082,32.677161446772516,32.10401598829776,32.92020446294919,32.59347230242565,33.08105035685003,33.65753564983606,34.16445049550384,33.826409451663494,33.077334728091955,32.891378158703446,32.608543143142015,32.975906271953136,33.08418662240729,33.966170783154666,33.755552876740694,34.044486650731415,34.64737479574978,34.72065470647067,34.540519243106246,35.29677299968898,36.24020787328482,37.090053896885365,36.251173292286694,36.926454722415656,36.25817074207589,36.10693698376417,36.43111562356353,35.480386327020824,36.02597257681191,35.24606401473284,35.15456329938024,35.192946943920106,35.30444755917415,34.67171299131587,35.04995450004935,34.808214685413986,33.98642806056887,33.74911522306502,34.065671764314175,34.70661382982507,34.229758283123374,34.32704581739381,35.19495060574263,35.6216699546203,34.94665772281587,34.8774309149012,34.87609796086326,35.306640163064,34.50633854418993,35.14859013073146,34.33086231490597,34.22816259646788,34.595173846930265,34.83304055267945,35.81297983601689,35.753961705602705,35.2502138488926,36.07641304610297,36.21526022488251,36.114731134381145,35.75162909599021,35.2951132603921,34.33555745379999,34.60442430060357,33.61011091154069,33.742429146543145,33.3637317516841,33.170205648522824,33.27570644021034,32.44460824504495,32.38051328668371,33.23866834724322,32.582724360749125,32.22992953239009,31.323036201298237,31.25140482187271,31.79146447405219,32.24632018851116,31.518306561745703,32.251915961969644,32.86245864117518,31.958920096512884,32.0071911807172,32.551719394978136,32.53725371230394,32.892053910996765,32.70954075502232,33.60139749571681,33.35252539347857,33.48643057933077,34.13656545802951,35.095757643692195,34.268123312387615,34.59736377419904,33.827377535868436,33.24399384763092,33.521870059426874,33.290856822859496,32.69829748291522,32.247731597628444,32.373595621902496,32.97433438897133,33.5732790408656,34.31884147180244,33.83654619846493,33.143949621822685,33.34382728114724,32.71250777458772,33.645094888750464,32.76619649026543,33.58890294888988,34.12812486477196,34.48996331123635,34.63133455859497,34.33392877411097,34.06394985085353,34.115530111826956,34.62008443009108,35.390826374292374,35.571945417206734,34.68125350680202,35.65666029416025,34.75181210320443,35.58000819012523,35.960043016355485,36.89629709394649,36.81120540201664,35.854649684391916,35.94500243663788,35.28139913547784,35.15640209754929,35.42452046368271,35.29993126215413,36.16404888825491,35.80539722042158,35.66477424837649,35.066163691692054,34.93134943349287,34.39288455992937,34.51693577691913,33.918926887214184,33.81075223023072,32.92909605568275,33.80693688755855,33.81923877866939,33.31470684334636,34.16727426322177,35.14914468675852,34.952785787172616,35.70201393170282,35.220079857390374,34.813244150951505,35.34289534948766,36.1359575628303,35.5354780824855,35.541177103761584,35.12913470482454,34.8187807854265,34.01580287748948,34.093975925352424,33.81034717988223,33.768483427818865,33.3012406504713,32.870804792735726,32.163604270201176,33.015826103743166,32.30432588793337,32.01321355672553,31.25586366141215,31.372268450446427,32.00543263927102,31.915724613238126,32.05112745054066,32.44514055084437,31.686827844474465,31.394399978686124,31.063199418596923,31.564318093005568,32.52125601610169,32.96672360226512,33.182978759519756,33.11743841646239,33.291949569713324,32.50110559351742,33.1138524338603,33.817001326940954,33.30641969572753,33.89034432778135,33.644018257036805,33.235828161705285,33.471916309557855,34.091506141703576,34.14489790890366,33.382674475200474,34.20845803478733,33.52925668982789,33.65885097021237,34.41524200234562,34.07021294673905,34.70785947563127,35.24733092403039,36.1645108978264,36.564609575551,36.83925892505795,37.27666448475793,37.469522102270275,38.28812777297571,39.212224033195525,40.05078855436295,39.45474280975759,40.022319038398564,40.3739127847366,40.70192232867703,40.2332464363426,40.35462594265118,41.06446391250938,40.550383569672704,40.57117277756333,40.4178060926497,40.88823930127546,41.58956993371248,41.32068934291601,41.707700579892844,40.883962989319116,41.54070342425257,41.49231137521565,40.93113243672997,41.20379259251058,41.166285540908575,41.684276608750224,42.55750503297895,42.071962913963944,42.82246242230758,42.03309119772166,42.418380377814174,41.97042393591255,41.73006244003773,40.98846196709201,41.45582760870457,41.929258591495454,41.129465113859624,40.66274700360373,41.305041772313416,41.10892177466303,42.10547713795677,42.80104394350201,43.70890576019883,43.08446779567748,42.102271761745214,42.25576936267316,41.45294096739963,40.65731713408604,40.1581752137281,39.80797982821241,40.50122969178483,41.18609899003059,40.90013219229877,41.00796843552962,40.480761664919555,40.04364921664819,40.05907814996317,39.68073004344478,38.79554030811414,39.443098089657724,40.011204906739295,40.357758582104,39.685130924452096,40.579130347352475,40.29878053814173,39.441314610186964,40.2726860572584,40.93727151118219,40.11625596228987,39.51898396387696,39.91380862193182,39.85711415624246,39.63958196435124,39.36342918733135,39.43022321397439,39.54845386836678,40.4854184826836,41.22279299329966,40.354990048799664,40.112419004552066,40.652275891043246,40.38502519624308,40.018407329916954,40.75854343594983,40.25314395595342,40.53347723092884,41.457604186143726,42.3188314223662,41.753789506386966,42.596781358122826,41.744444739073515,41.13661635387689,40.203143786638975,41.08951710630208,41.275476516224444,41.555096878204495,42.11338110547513,43.072839834261686,44.02809380274266,44.28304529422894,44.3797751753591,45.3519108411856,46.22179093211889,45.96962733613327,45.92359049106017,45.94643607130274,45.45458760438487,45.855901373084635,46.3290770216845,46.670641504693776,47.216490206774324,46.59523827256635,46.18117231503129,45.37071993900463,46.066852467600256,46.89738124422729,47.46189291635528,46.615822977852076,45.91442315047607,45.39372157165781,44.550991863012314,44.50088722258806,44.15849339496344,44.66913486411795,45.31198975164443,46.27860862808302,45.84494559513405,44.95582961803302,44.077118813060224,44.471774032805115,43.58769242744893,43.26741521945223,43.79345200257376,44.27934798039496,44.73091040272266,45.22024953830987,45.241546660196036,45.4416404212825,45.50826995726675,45.65731851011515,45.54247588571161,44.88099422585219,45.11429835855961,44.988243775907904,44.14341878378764,45.101372107397765,44.7223328598775,45.46587707241997,44.686761788092554,43.72437635017559,44.30618708720431,44.869705725926906,45.82427227450535,46.717437964398414,46.98733199387789,46.79923858353868,46.075792205985636,45.226688565686345,46.18401567544788,45.223718245048076,45.44553334871307,45.56064724549651,45.53298844676465,45.526216943282634,46.21188981598243,47.021780809387565,46.24589683813974,46.76891600526869,46.61260696686804,46.258669623639435,46.36744897533208,47.08069611527026,46.767602099105716,46.5111533771269,46.005840071476996,45.983191461768,45.15026522707194,44.575800887774676,45.042909080628306,45.35058470163494,44.89407687773928,45.39561936445534,44.647530586924404,44.75612621894106,45.17381734214723,45.35315002128482,45.2779862228781,45.28629285749048,45.717235973570496,45.1550949444063,45.72176886629313,46.248116369359195,47.14787351479754,48.11423541000113,48.44839139143005,48.215515992604196,49.16669008182362,48.193303470499814,48.457768461667,47.70035666367039,47.35700636729598,47.24002368701622,46.93891606898978,46.106352746486664,46.02498335111886,45.9574637459591,45.33319467213005,45.58300590887666,46.05347623489797,45.97046425752342,45.99351723538712,46.96199411805719,46.396577768493444,46.28001266159117,47.273108979687095,46.544514739420265,46.99735457403585,47.38930842652917,47.56263795122504,46.61789902020246,45.94808563357219,45.38920188834891,46.281162694096565,45.29383888747543,44.70738945994526,44.0070058577694,44.36679726606235,44.23244742397219,44.64226249884814,45.6135208546184,46.26043039839715,45.56527602719143,45.61156958760694,46.40243805246428,45.769482898525894,45.10789735103026,44.78088930528611,44.94161598337814,44.2796327592805,45.274765361100435,45.277089865878224,44.42311111697927,43.564309384673834,43.89972515171394,43.421057348605245,43.930212209932506,44.720236256718636,45.02439056383446,44.38094258494675,44.56118698650971,43.657710493542254,43.64008566504344,44.38262138236314,45.08161629131064,45.93912147078663,45.546948462259024,45.128627637866884,44.51666428009048,44.29317258019,43.765473128762096,43.136193168815225,42.91887457901612,42.761266148183495,42.07569026527926,42.63770203385502,41.899665801785886,41.65098796226084,41.51619520364329,40.842316719703376,40.79663238115609,41.73639657115564,42.090441261418164,41.1447149598971,41.595669967122376,42.5742949899286,43.34797209268436,42.752527543343604,43.034089025110006,43.14236628403887,42.23104592645541,42.71944284858182,42.10844172537327,42.83269049599767,42.50875015743077,42.57249833503738,42.57817794382572,42.133717987220734,42.63520424393937,43.06246805097908,43.823370499070734,43.362078837584704,44.10145051078871,43.748367907479405,43.05714488681406,42.6553468266502,42.54893837729469,41.77973080705851,42.692479592282325,42.557467015925795,43.388863052241504,42.45455358643085,42.335509084165096,42.29968808172271,42.51031393650919,41.84791482798755,42.77860131021589,42.115595418494195,42.394270981196314,41.40833146357909,41.640183040872216,41.46611921209842,41.83510127104819,41.99450507061556,41.6413151435554,41.468079816084355,41.4471465270035,40.54098798846826,39.887149984017015,40.586159710772336,40.938471514731646,40.710499262902886,40.501739172264934,39.74359593261033,39.57349306810647,39.99445669306442,40.158453261014074,40.09718257561326,40.563038595952094,40.49435442779213,39.634913282934576,39.6971509330906,40.09046219475567,39.70014644553885,40.01133885560557,39.126754445489496,38.77114129252732,38.70513805234805,39.66927746264264,39.131631784606725,38.592434626072645,38.65006195008755,39.60189828975126,38.61200557136908,39.27530110580847,39.5089509813115,38.77188930939883,37.7990651326254,38.63129061460495,37.97127097286284,38.146813951898366,38.25551117025316,37.35503300279379,36.44993743440136,35.533272988628596,35.502458727918565,35.5907907448709,35.99581476300955,35.99779913574457,36.45705823926255,36.28119534160942,35.337580281775445,34.49697564356029,34.98390593053773,35.70842804573476,36.21426616888493,35.96502793719992,36.379342277534306,36.85202350188047,36.71816355409101,36.48881550505757,35.63785116607323,36.01382630504668,35.63917496846989,36.10964407213032,35.48167585534975,35.16373536456376,35.97084245085716,35.27123774960637,35.041747328359634,34.50321717793122,34.76783137721941,34.8792708911933,33.95158922532573,34.09245573077351,34.39180865883827,34.82876070216298,34.52952568186447,34.33389535360038,34.95866968622431,34.68574476707727,33.81730170780793,34.279198069591075,34.304512205999345,35.18465168727562,35.48006627243012,35.77549067977816,36.65354643203318,35.826264849398285,36.77024079626426,35.82954980991781,35.946785271167755,35.13250618381426,34.68709972780198,33.91263230191544,33.79749405104667,34.142188761848956,34.09192596701905,33.39118397794664,33.373244741465896,33.87097998242825,33.2672799997963,32.94684784952551,32.51974922278896,32.837091096676886,33.66121292533353,34.40219475608319,34.238057349808514,33.67255722451955,33.40919778915122,33.857997986488044,32.88873675279319,31.93275938043371,31.641650507226586,32.58449981408194,32.099599580746144,31.59723628498614,30.726193338166922,29.783871117513627,30.706616108305752,30.9225481483154,31.582860801834613,30.958688818383962,30.965682392474264,31.28179322509095,31.237034698948264,30.450174388010055,30.269157638773322,30.559823166579008,31.277903014793992,31.681768995709717,32.55613031657413,33.06277633039281,33.690965010318905,34.027339906431735,33.820286782458425,33.07785214856267,33.67695055529475,34.236263387370855,34.1541733299382,34.89126407215372,34.20848855283111,34.47285900032148,34.26789043378085,34.461686136666685,34.72660303581506,33.78714320296422,33.25978303421289,32.7343536070548,32.20367627777159,31.424744673073292,30.9285350269638,29.990925966762006,29.972589526791126,29.824533784296364,29.120236268267035,28.123024727217853,27.30795560684055,27.544422914739698,27.767340009566396,27.074941262602806,27.42659102054313,26.83774482924491,26.38067220337689,25.8377184541896,26.42537464387715,25.60170921124518,26.550925893709064,25.57062827423215,24.66874152980745,24.76607666304335,25.42894646478817,25.290606618858874,25.342458319850266,25.886127231176943,25.26524034049362,24.89682858856395,25.135021257214248,25.09472489124164,25.701475593727082,26.5953118680045,26.06900816829875,25.184304575435817,25.626794565003365,24.96311497874558,24.075114998035133,23.920069503132254,24.092992588877678,23.28308204887435,23.557247110642493,23.184328521136194,22.742441235575825,22.172547692433,22.096701136324555,22.538134273607284,22.492575350683182,22.14043445046991,23.107275697868317,22.556977731641382,22.27968987636268,22.748927819076926,21.751790051348507,21.16872120834887,20.28529794467613,19.330856481567025,18.519740916322917,19.50167263392359,19.075350755359977,20.009525002446026,19.494272970594466,19.71571974735707,18.88885396067053,18.830903109628707,18.867385619319975,19.333564745727926,20.224093954078853,19.799041810445487,19.48666350217536,19.082073570694774,18.895189172122627,19.1733587407507,18.514615996275097,18.526164420880377,18.93954026279971,18.229540213011205,17.466662671416998,16.816875747870654,17.001089294441044,17.038384488318115,17.722779566422105,17.546947258058935,17.72298925416544,18.579504288267344,19.010954149998724,18.84116218984127,18.53413953166455,18.724419032689184,18.172368708997965,18.57703903503716,17.938208606094122,17.751290674321353,17.209548308048397,18.14370421366766,18.31062840204686,18.241787265986204,18.170434173662215,17.34745770972222,17.638833357021213,17.457702392246574,16.954088727477938,17.3151659485884,17.306784052867442,16.579292804468423,16.639372266829014,17.4494975307025,16.637539994437248,16.51419592741877,16.827347938437015,16.792591874487698,17.664309197105467,18.329665148165077,18.383294908329844,18.38855074113235,18.340730999596417,17.35707237198949,17.49356676824391,18.036245428491384,18.67230128357187,18.812068339437246,18.176694283727556,18.838786638807505,19.151818762067705,19.996602181345224,20.806252343580127,21.316747940145433,21.12830139696598,20.404462749138474,19.586479072924703,20.293902470730245,20.025156050454825,19.913393054157495,19.35926142008975,20.071315955836326,20.056681712158024,20.386556557379663,20.55787045881152,21.01794410124421,21.849559685681015,21.87451628409326,22.714880012907088,22.662866766098887,23.147152287419885,22.26635009655729,21.609437118284404,21.988328898325562,21.461880733259022,21.84093338996172,21.179405177012086,20.391439247410744,20.09456871263683,19.779121902771294,20.262400668580085,19.780469161923975,19.44313526665792,20.349459922872484,19.70118291117251,20.185192544944584,19.993464128579944,20.69390806555748,20.11265483452007,20.792513225227594,19.908303108997643,19.509721097070724,19.3521941723302,19.517805896233767,19.789235765114427,20.41019116388634,20.57207926409319,21.429454193916172,21.98521731607616,22.967804186511785,22.02136831264943,21.33598565775901,21.677508713677526,20.90602996526286,21.616226384416223,20.8600504132919,21.138914367649704,22.05102541623637,21.532470709644258,21.73044286062941,21.948809745255858,21.644537237938493,21.563927005510777,21.403728239703923,20.896533995866776,21.279488751664758,21.94472490856424,21.5321262977086,22.22418607119471,22.61260769283399,23.552750688046217,22.953669350594282,22.2639210796915,22.491338749416173,22.04546779161319,22.500657469499856,21.79720676364377,22.18688029749319,21.43048035306856,20.80843779211864,21.539641748648137,20.616467335727066,19.633273757528514,18.760782999917865,18.764765164349228,18.535427329596132,19.093183535151184,19.714899609796703,20.013249470852315,21.0120160728693,21.35943493526429,21.058587818406522,21.245368040632457,21.897210109978914,22.744826485402882,22.499413695652038,21.757540858816355,21.325701288878918,20.45227441750467,20.576813626103103,19.582458020187914,20.162976302206516,19.394130442291498,18.52189986454323,18.254692387301475,17.835695488378406,18.41184431500733,18.205338255967945,17.725210573524237,17.892674217931926,17.257010967005044,17.318181954324245,16.520002942997962,17.41295673744753,18.39249647408724,18.739281895570457,18.900066992267966,19.438645595684648,19.0111736189574,18.62689317483455,18.506883225403726,19.197207666467875,18.207443481776863,19.194251391571015,19.334831405431032,18.72587923705578,17.983255150727928,17.54173671361059,17.225785748567432,16.9540407191962,16.438593341503292,16.55311985965818,16.839930025395006,17.23151332186535,16.849620557855815,15.963072696235031,16.589526132680476,16.933334139641374,16.234385614283383,15.602874606847763,15.305444101337343,15.967912183143198,15.179640784859657,15.830138591118157,15.672847081907094,15.205877802334726,15.91524139046669,16.69629191700369,16.9415546185337,16.202444828581065,15.73277116753161,16.535012534353882,17.277797003742307,17.284035506658256,17.40794684458524,17.315717545803636,18.26977830613032,18.003416389692575,17.227363865822554,16.899359547998756,16.045541954226792,15.822914950549603,16.550224871840328,15.756538190878928,15.50204473361373,15.465506124775857,15.24637545272708,15.970418719574809,15.41271975217387,15.428767632227391,14.522977037355304,13.909084978979081,12.924313890747726,12.14613833790645,12.65419541252777,11.715013425331563,11.895144410897046,11.954928231891245,12.481298265978694,13.450256518553942,12.99042069260031,12.168202726636082,11.515532210003585,12.47527446784079,13.39673194475472,12.700245081447065,11.833017738070339,10.926693188492209,11.805139733478427,12.699126427527517,11.853859691880643,11.69013209734112,12.539598286151886,12.074224249459803,11.593876636121422,12.322644223924726,13.289912065956742,13.266863183118403,12.548120093997568,13.011683772783726,13.94750340981409,13.18697372963652,13.7661316213198,13.28873668750748,13.75231048790738,14.316632400266826,13.969436853658408,13.703377252910286,14.265911968890578,13.892670655623078,14.720235499553382,14.532196445390582,15.342252736911178,14.49426725693047,14.783191540278494,15.495287312194705,14.932230295147747,14.4485072796233,15.025688680820167,15.829840306192636,16.060851104557514,16.436730186920613,15.939139890950173,15.090123334899545,14.163969345390797,13.196500185877085,13.182796106208116,13.779133100062609,13.587709762621671,14.441858476027846,15.37487964797765,15.225175982806832,14.885796572081745,15.298632294870913,15.559571418911219,15.803518921136856,15.43037827173248,14.99189062928781,14.87102765403688,14.395975526422262,13.448748465627432,12.550432962365448,12.770348135847598,11.7775001055561,12.618147256784141,13.597556918859482,14.153490291442722,14.931097146123648,14.964607533533126,15.50619086343795,15.161989087238908,14.164419848006219,13.343719756696373,12.98552339989692,12.419681312516332,12.448976480402052,12.946887020953,12.82239163434133,12.506701346021146,12.527466998435557,12.547342930920422,12.431689308956265,13.395089113153517,14.104747647419572,14.07469078572467,13.490974894259125,13.367132881190628,13.456571139395237,13.653973113745451,14.005501785781235,13.031362317502499,13.235672086942941,14.021185886114836,13.969641901087016,14.583452845923603,14.8512520249933,15.65981268370524,15.079225672408938,15.696841875556856,14.967204090673476,14.302886097691953,13.664507834706455,13.723999425303191,14.424417618662119,14.428852973505855,14.489201662596315,14.948198489844799,14.558012387249619,14.48541408078745,14.749408756848425,15.338593885302544,14.58141173236072,14.982119532767683,14.963497885502875,14.816021571401507,13.987926919944584,13.001439917366952,12.525039704982191,11.917325138580054,12.908564632758498,13.848070541396737,13.028539003338665,13.070547313429415,13.399824551306665,12.675887262448668,12.890596459619701,13.441408646292984,12.839564020745456,13.770447655580938,14.037772638723254,14.921078369487077,14.014733522664756,14.006516562309116,14.01801593741402,13.915065254084766,14.868461856618524,15.727764463517815,16.446287016384304,15.495386261027306,15.615395050495863,14.68807580275461,15.339884060900658,14.555087781976908,14.990841020829976,14.690101300366223,14.83908743225038,15.54847927019,16.095488215330988,16.53105245763436,16.214691404718906,15.750572321470827,16.70639744307846,15.729738629423082,16.455234584398568,15.580002835486084,15.628306801430881,15.18974347319454,14.579748244956136,14.497858434915543,14.975013779476285,15.539891414809972,16.526502328924835,16.065972781274468,15.443696436006576,15.349741343874484,15.382184064015746,15.149488722439855,14.50185280898586,14.222220179624856,14.512110345531255,14.413812547922134,14.536137137096375,14.586506197229028,14.587338088545948,14.525877852458507,13.726067373994738,13.346665511839092,13.933628419879824,14.664182426873595,13.979118197690696,13.538000421132892,13.662908264435828,13.282994906418025,13.545193758327514,13.225691871251911,13.64719304908067,14.277281261980534,13.472674786578864,14.340474036987871,14.052808145992458,13.144138856325299,13.848055390641093,13.567284131422639,13.228372439276427,13.642886671703309,14.2038333886303,13.889385056681931,13.467319890391082,13.396052164491266,12.801322295796126,13.229838605504483,13.655938079580665,13.655804366338998,14.419957352802157,13.580684444401413,13.097926462534815,12.53336149500683,13.424992413725704,13.150545355398208,13.6507723396644,13.676675172522664,13.48354391893372,14.19630774250254,13.99968439899385,13.844424669630826,13.636056353803724,13.449438183568418,13.044616509694606,13.128069964237511,12.388685315847397,12.035700677428395,11.370072774589062,11.244624575600028,10.485040351748466,10.281676997430623,10.440134475938976,10.007127737160772,10.478774765972048,10.271324303932488,10.13109084405005,9.735724336467683,9.5127500933595,10.064033075701445,10.33140702266246,11.258851110003889,11.766041571740061,11.68504718830809,11.103205955587327,11.030147809069604,11.397189516108483,10.857325117103755,11.519843480549753,10.868686120491475,11.359746420755982,11.252066486049443,11.165281841065735,10.648623461369425,11.563319741282612,11.938892857171595,11.164545944426209,11.173652130179107,11.538956973236054,11.417283164802939,11.57557315286249,11.030844535678625,11.332538436166942,10.732296272180974,10.415629049763083,11.316138783469796,11.424043686594814,11.98400556948036,12.417124810628593,11.856216910295188,11.284033107105643,10.561999152880162,11.475408122409135,11.381006500218064,11.694732291158289,11.216226420365274,10.50205774186179,10.831939147319645,11.809041900094599,12.32124569779262,12.955342470668256,12.101064749993384,11.480480942875147,11.502899162936956,10.86619890993461,10.854457241948694,10.708585785701871,9.879897628445178,9.168974273372442,10.022679446730763,9.387774706352502,9.978265802375972,10.785734270233661,9.925445262808353,10.574536588042974,11.52145704627037,10.531610852573067,10.953806949779391,11.26927084196359,10.343354323413223,9.966288235038519,10.249893173575401,9.475553267169744,9.68548469338566,10.656540776602924,9.908224104437977,9.800588015466928,9.231247487012297,8.51993073290214,7.881928283255547,7.774735376238823,8.597871175967157,8.482506564352661,8.974447773769498,8.851657307706773,8.788563740905374,8.238381305709481,7.965421788860112,8.52245600707829,9.06171639310196,9.630175091791898,8.947059747762978,8.549207284115255,8.597492589149624,8.093632116913795,8.49564213398844,8.105981079861522,8.008172485977411,8.99194148182869,9.341969044879079,9.126771471928805,10.06814437173307,9.64346546959132,9.406713272444904,8.595549191348255,8.857324556447566,7.921496391296387,7.777695000637323,7.772238329984248,7.390498686116189,7.307513302657753,7.978895667474717,7.771553335245699,6.961308971513063,7.703011806122959,7.580356595572084,7.038430856540799,7.137494693510234,6.646356945391744,5.95594642823562,6.844097523018718,6.541745651513338,5.917530696373433,6.058606619946659,5.358768644277006,4.493585063610226,4.774960165843368,5.097144706174731,5.948406289797276,6.202915195375681,6.241544112563133,6.947727642487735,6.893896915949881,6.376494536176324,5.380574978888035,4.713844252284616,5.176307999063283,5.186735719908029,5.317936655599624,5.373524773400277,5.342921978328377,4.612084223423153,3.9492635731585324,4.6214011576958,5.558464945293963,4.930325416382402,5.929388248361647,6.620801485143602,6.579918577335775,6.291227283887565,5.651890943292528,5.595306288450956,4.931125201284885,5.762745179235935,6.599119076505303,6.010745232924819,5.97784932050854,5.66837858967483,5.453459163662046,5.2503113793209195,4.365693100262433,3.3837352036498487,4.057900356128812,4.2967282850295305,5.202300435863435,6.109095764346421,5.697810496203601,6.257250915747136,5.314978930633515,5.079757341183722,5.624963640701026,4.900589490309358,4.208439139649272,4.2723643402569,5.10346655594185,4.393842477351427,5.359422207809985,4.51958178775385,4.226923204958439,4.552233014721423,4.405329363420606,3.506997859571129,3.5248570456169546,4.167389607522637,3.6597413374111056,4.619776214938611,3.9204267617315054,3.836705369874835,3.6977793714031577,4.175170955248177,4.284485152922571,4.004520601592958,3.342922323383391,3.735629390925169,3.617911393288523,2.921982799656689,3.7472202898934484,3.9907354917377234,3.261512312106788,3.4121503247879446,2.653837678488344,3.4898947435431182,2.7378910752013326,3.3116668364964426,3.9389153593219817,4.792108193505555,4.786063274834305,3.9862163844518363,3.026731761638075,3.034033110830933,3.749381455592811,4.551566333509982,4.8057537423446774,3.9970561051741242,3.890205319970846,3.535053306259215,4.291926365811378,4.154063243418932,4.100107888225466,4.763467106036842,4.8356356313452125,5.574771136511117,5.073321507312357,4.650057257618755,4.737421684898436,4.240486962720752,4.270673144608736,4.66217141225934,3.9323874274268746,3.1216904427856207,3.271979142446071,2.3283396274782717,2.9731980990618467,3.962639688514173,4.8184356787241995,5.48055306635797,5.362010151147842,6.132968747988343,7.0997608518227935,7.548071555327624,8.167405504733324,7.686235995031893,6.996913222596049,6.070333862211555,7.032101213000715,7.59807243803516,8.502203873358667,8.366398063488305,7.749873091932386,7.415306487586349,7.114195855334401,7.476182087790221,8.175384646747261,7.61419189022854,6.842184081673622,6.272214089520276,7.189288024324924,6.377743788529187,6.490183885674924,6.360330816823989,5.659696549642831,5.454628749284893,5.948956570122391,6.486440192908049,6.846290940884501,7.571455993689597,7.6090358146466315,8.459062079899013,7.804433150216937,7.454362097661942,7.181166333146393,7.995777797419578,8.562589976936579,8.640334610361606,9.374502488411963,8.476022315677255,7.910728995222598,8.79500069282949,9.60500124283135,10.39951740205288,11.357286804821342,11.270527690649033,11.298708865884691,10.514451262541115,10.09061452979222,10.785611639264971,10.327344806399196,10.239452464040369,10.436365069821477,9.962558129802346,9.844731813762337,10.125111029017717,10.739111685194075,10.92478509992361,10.037823274731636,10.981529114767909,10.408671444281936,10.408300764858723,10.806508831679821,11.568888485897332,10.650311484467238,10.209714203607291,11.08528176182881,11.381098218262196,10.504190993495286,11.461948567535728,11.63447673805058,11.657621869817376,11.50457584252581,11.665400668047369,12.099121648818254,12.080538014881313,11.481023763306439,10.488486134912819,10.082127952948213,9.796539675444365,10.467490483541042,10.713924730662256,11.183707173913717,12.112374106887728,12.1849474189803,12.64683436555788,12.589063776191324,12.662933385930955,12.603964646346867,12.381279853638262,12.272997830528766,12.407003812491894,12.472972677554935,12.243005466647446,11.568821753840894,12.23885134095326,11.775255468674004,12.00039204955101,11.976290038786829,11.916805147659034,12.278189543168992,13.271298908628523,13.55677647702396,13.837991868611425,12.896758522372693,12.962479067966342,12.653438340872526,12.233082060236484,12.878435895778239,12.59493956528604,11.782641106750816,12.1003129016608,11.232884214259684,10.66542873205617,9.882013846188784,10.59200185816735,10.41640884662047,10.170083910692483,9.729814888443798,9.62060824315995,9.519097633194178,8.963332294020802,8.63797102170065,9.533184433821589,10.4840770624578,11.444269388448447,12.344307836145163,11.501781950704753,10.6394671946764,11.617911727167666,11.485981898382306,11.611225791741163,10.745466616004705,11.385394456796348,12.248503367882222,12.331621823366731,12.515294262208045,13.30629481235519,14.268291133921593,14.429352114442736,13.803160348907113,13.344443245790899,13.259327962994576,12.67634352715686,12.42217038339004,11.811259478330612,11.049174696207047,10.808064446318895,10.696825786493719,9.780826292932034,10.140043172985315,9.880387189798057,10.132720646448433,11.118291568476707,11.325096046552062,11.27232651785016,10.870443634688854,9.97372128162533,10.534106142818928,10.467261124402285,11.398637394886464,11.956449067220092,11.1146473553963,10.33942703017965,10.904250206425786,10.223429441452026,10.076790905091912,9.548194236587733,10.288119248580188,9.364918837323785,10.099534712731838,11.00007364526391,11.56896154070273,10.816034128889441,10.91584957856685,10.330786337610334,10.79409011779353,10.757757287938148,10.843459975440055,11.608178433030844,12.545411969069391,13.484001327771693,12.575588413048536,13.00067345239222,12.04187576007098,11.858991404995322,12.196983013302088,12.81260410696268,11.910217553377151,12.400403678417206,12.237316003069282,13.225762909278274,12.740526804234833,12.635212246328592,12.17179997311905,12.582388838287443,13.24791648145765,13.538848084863275,14.146405129693449,13.262151387520134,12.528488159645349,11.838017224799842,11.014385842252523,10.645153231918812,9.872764811385423,9.585838905069977,9.847259091213346,9.9873798484914,9.047716275323182,8.325870237313211,8.031131016090512,8.412471927702427,7.639794879127294,7.70718688191846,8.145140969660133,8.034471697174013,7.684509030077606,7.275078182574362,8.096007419284433,7.684421190991998,7.2172695472836494,6.411866774316877,6.947783574927598,7.558238390833139,7.0611073658801615,7.52371059730649,7.506725286133587,8.11817941442132,7.925469525158405,7.738586710765958,7.561082766391337,8.217969608027488,7.756722004618496,7.813071402255446,8.079810867086053,7.664962104987353,7.369856376200914,8.348159215878695,9.110307799652219,9.267746907193214,9.059375272132456,8.682868741452694,8.87891793018207,9.419917654246092,9.24004109017551,9.21275035617873,9.647794902790338,9.724242334719747,9.776303761638701,8.986163656692952,8.981127207633108,9.099892055615783,8.944019624963403,8.62229637708515,7.9855237966403365,7.140109054278582,6.673466508742422,7.150273706763983,6.157107062637806,5.676248475443572,4.974567659664899,4.935332557652146,4.222518376074731,3.8216428426094353,3.9247073540464044,3.2577007431536913,3.405286281835288,3.655209000688046,2.81391706969589,3.5365117988549173,2.793477522674948,1.882369076833129,1.7721387944184244,1.7683249665424228,2.5538430553860962,1.6736901835538447,1.138806481845677,0.41566424956545234,0.6355129950679839,1.2837004871107638,2.041141618974507,3.01362057775259,3.91279480420053,3.4932464314624667,2.9809158612042665,2.7044799644500017,2.6920863217674196,1.7940552229993045,1.8811968686059117,2.4180567376315594,1.7724313344806433,0.914620818104595,1.1329357428476214,0.5542705338448286,0.7238486232236028,1.4705306240357459,0.6882490641437471,-0.07667489536106586,0.8611688539385796,0.7215378507971764,0.9024564856663346,0.13052557595074177,-0.41028129076585174,-0.6897619278170168,0.09767210390418768,-0.2821190068498254,0.295091082341969,-0.22252043336629868,-0.17764753056690097,0.17992017744109035,0.7330614579841495,0.4567498192191124,1.0458270809613168,0.2703256397508085,0.6812851708382368,-0.12012909259647131,-0.3880015625618398,-1.2667942284606397,-1.823772257193923,-0.9979635514318943,-1.8428791295737028,-1.9032022864557803,-1.1835612733848393,-0.5468161250464618,-0.33151453733444214,-0.3653953466564417,0.3157127248123288,0.06486995751038194,-0.5342906266450882,-0.8696354697458446,-1.8161669899709523,-1.2627668012864888,-0.7640131451189518,-0.9387820921838284,-1.6754545187577605,-1.9954411503858864,-1.0060843853279948,-1.3148057283833623,-2.1387205910868943,-1.8829591018147767,-1.5916152372956276,-1.4552230658009648,-1.1792273190803826,-1.0962435519322753,-1.9770400049164891,-2.6583998478017747,-2.312861413229257,-1.4779687752015889,-1.9383308170363307,-2.5111262258142233,-3.039240741636604,-3.9822041681036353,-3.35062197688967,-3.634176511783153,-3.604063991457224,-2.9138167263008654,-2.2902677659876645,-2.9749088771641254,-3.6647795191965997,-3.4793674419634044,-4.148326659109443,-3.7190596600994468,-4.1355294664390385,-4.788225805386901,-4.300286964979023,-4.027264857664704,-3.1322782174684107,-2.7337203924544156,-1.7708117016591132,-1.790974261239171,-0.9929400100372732,-0.6838272656314075,-0.563372362870723,-0.31305552925914526,-1.0171120627783239,-0.16536629758775234,-0.07631150633096695,0.0680251196026802,0.17420699167996645,-0.565742555540055,-0.9218771890737116,-0.6650788625702262,-1.4754950939677656,-1.9406279255636036,-2.6460562823340297,-2.2302685962058604,-1.5435122014023364,-2.2998918164521456,-2.99857375305146,-2.667313987389207,-2.3310612165369093,-2.769204741343856,-3.0368176042102277,-2.856610464397818,-3.575281317345798,-2.9287950550206006,-2.3526838487014174,-1.819393523503095,-2.637172168120742,-3.0657087713479996,-2.58323469478637,-2.723014258313924,-2.5663650911301374,-1.7235922534018755,-1.525571150239557,-0.5575617332942784,-0.6577057400718331,-0.08854284882545471,0.1643872121348977,-0.20578034361824393,-0.9090749006718397,-1.137896987143904,-1.7932369490154088,-2.3326949733309448,-1.9412068044766784,-1.066872425377369,-0.18206306360661983,-0.9449533647857606,-1.013101113960147,-0.28938974626362324,-0.09313680557534099,0.45310330810025334,1.1018634918145835,1.3614493673667312,0.6477912496775389,1.132926007732749,0.9510753946378827,0.3489394746720791,1.0177333541214466,0.9284437824971974,1.0428452701307833,0.2325351620092988,1.0505294520407915,0.06098885042592883,0.5497440919280052,0.7141002505086362,1.1458927700296044,1.9318543458357453,2.2147800377570093,1.687022762838751,1.5556413903832436,0.7500545689836144,0.5645757825113833,-0.12678485736250877,0.5046104793436825,1.237209910992533,0.7885484308935702,1.5987965832464397,2.1371878893114626,2.258345957379788,2.6201671129092574,3.390131540130824,4.012676208745688,4.756053593475372,4.34049432259053,5.125039037782699,4.255196924787015,4.477942491415888,5.14083982212469,4.949877362698317,4.8165355902165174,4.927383040543646,4.3957029464654624,5.1395749701187015,4.416847289074212,3.59514012793079,3.979449287522584,4.395821195561439,3.40455781808123,3.8074035150930285,3.7525627817958593,3.0690900809131563,3.446909454651177,3.0810875413008034,3.433357330504805,3.3692087484523654,3.1280521885491908,3.906610146164894,3.85448338650167,3.4911036575213075,2.8892865711823106,2.419821233022958,1.7966565317474306,1.7007197821512818,2.5966112315654755,2.70425783097744,1.756190797779709,1.3975133602507412,0.7681644246913493,0.20513844583183527,0.5218827417120337,1.4294415805488825,1.125548125244677,1.7264531943947077,2.303876447491348,1.9457751819863915,2.6769961435347795,3.4228430092334747,3.872078098356724,3.8113123876973987,3.872881264425814,4.069678296800703,4.904724653344601,4.552964998874813,4.616007064469159,4.804630055557936,4.246434300672263,4.169135889969766,3.8503664969466627,4.220755435992032,5.198945849202573,5.560327696148306,6.39109981385991,5.426352779846638,4.456128862686455,5.3946161568164825,5.307274876628071,4.361677919514477,4.853078111540526,4.797221228480339,4.404069940559566,5.3598415572196245,6.26809429237619,6.117393517401069,6.054245361126959,6.391003462020308,6.436592353973538,7.0185663918964565,6.410218788776547,6.3015678115189075,7.096771931275725,7.431193612050265,7.538501723203808,7.149001725949347,7.491428489331156,6.691079191863537,6.455249265301973,5.716477207839489,5.179891127627343,5.717603261116892,6.222132122609764,5.950795337092131,5.839922400191426,6.585152197629213,6.58773237792775,6.702940454240888,7.094553011003882,6.680198486894369,6.770918506663293,5.922626181971282,5.087246886454523,4.104806125629693,3.1124807111918926,2.372519335243851,3.363007301464677,4.265022739768028,5.158613766077906,4.473190288525075,4.787669042125344,3.975550962612033,4.144587175920606,4.957752803340554,5.711165687534958,4.81675120908767,4.396651905961335,4.252451917622238,5.218053592834622,5.104674209374934,4.705596134532243,4.049240601249039,3.0710319322533906,3.537611586973071,2.863590354565531,1.8833166933618486,2.473112754523754,2.9914812361821532,3.130816337186843,3.7374845584854484,3.608368143439293,3.1307295383885503,3.685108297970146,2.970123155042529,2.667028628755361,2.9201885741204023,2.014065206050873,1.622333186212927,1.6752888467162848,2.2564107794314623,2.7410505623556674,3.4263836331665516,3.665933787357062,2.716109569184482,2.1509970435872674,1.8463938632048666,2.17985001206398,3.007809459231794,2.6206795684993267,1.7182935001328588,1.484778595622629,1.0739485183730721,2.0416853451170027,2.535638253670186,2.6842903019860387,2.9949681404978037,3.5519073829054832,3.9881159109063447,4.985254880040884,5.0443747052922845,4.591351789422333,3.954739715438336,3.268603064119816,3.8058038586750627,3.854115274269134,4.008185266517103,4.790890487842262,5.78959712991491,6.391724535264075,7.305960415862501,7.108860787004232,6.4552042321302,5.861271452624351,5.15749275078997,5.772890812717378,5.306004042737186,5.261447612661868,5.816140950657427,5.864666725508869,6.030092160683125,6.841564279049635,7.258808427955955,7.088409035466611,6.786548453383148,6.90958036063239,6.592166472226381,6.029826552607119,6.514804544392973,6.365572060458362,5.487055952195078,6.386594085488468,5.953948405571282,6.914274823386222,7.412835838273168,8.15986135462299,8.68829911807552,8.057344753760844,7.791243973188102,7.679913849104196,8.5578987961635,8.85722269443795,9.605694788508117,10.172015542164445,9.548702787142247,9.281628273893148,9.675760824233294,9.100063358899206,8.277828231919557,7.960307613946497,8.063980883918703,8.939661119598895,8.16297770338133,9.05965607939288,10.004490850958973,10.946504076011479,9.988483788911253,9.43789425259456,10.109728385228664,9.873513400088996,9.008765825536102,9.451311430428177,8.550852110609412,8.779355310834944,8.854319499339908,9.554906589444727,10.497480052057654,9.709935365244746,9.19577457010746,9.943162444978952,10.550635320600122,10.991512340027839,10.871884485706687,10.841161075979471,11.703495795838535,11.40234912885353,11.49965937063098,11.082206952385604,11.799646924249828,12.237047711852938,12.457307513803244,12.551474269945174,12.617286861874163,12.751675751525909,13.547902693971992,14.544333925005049,14.241318898275495,13.658013095613569,13.836145768873394,13.073812992777675,13.604080491233617,13.254505062941462,13.259886999614537,13.26044336752966,13.242981517221779,13.572788964956999,14.067122137639672,14.025570766068995,15.02236010087654,14.722552231512964,14.329688762780279,13.44776881719008,13.37591757485643,13.829631411004812,14.425871457438916,14.14551821583882,13.931402221787721,14.095067169051617,14.208150967489928,14.205171041190624,13.369796888437122,12.719409401994199,12.85493650753051,11.935019835829735,11.326324340887368,11.12024439079687,10.864483876619488,11.692750212270766,12.426908574998379,12.289365596603602,12.520153913181275,11.620899906847626,10.949934873264283,11.564735655672848,11.303440651856363,12.160140046849847,13.076675017364323,13.152587643824518,13.383176235016435,12.537942298222333,12.879637637641281,12.08986997231841,11.693131397478282,11.988739386200905,11.0456179715693,10.112527047749609,9.940151042304933,10.786852348595858,11.548384276684374,12.14751481404528,12.766368615906686,13.029718392062932,12.832685904577374,12.025293645448983,11.970675060059875,11.282970414031297,10.589684759732336,10.685502425767481,11.564258127938956,12.030613385140896,12.027199767064303,11.352043084334582,11.79455618141219,10.95353464409709,10.984811175614595,11.75612666318193,11.733795459847897,12.309250051155686,12.809817095287144,13.10223024059087,12.574589263182133,12.911695803049952,12.407294190954417,13.101226774509996,12.859178209677339,13.3131996630691,13.67367420438677,13.531155108008534,13.778301076497883,13.473938268143684,12.608630334492773,13.159903313964605,13.385878054890782,13.820705268066376,13.550314000807703,14.013368691317737,14.660360361915082,14.278316857293248,13.917702874168754,14.31004601623863,14.697702427394688,14.254112650640309,13.95780756836757,13.291275777854025,13.442822672892362,13.249799374025315,12.82442319020629,13.202213493641466,13.561683331616223,14.298002485185862,13.93627328146249,13.402228686958551,12.540209204889834,12.976567743346095,13.110962540376931,12.202454675920308,11.702187395188957,11.434596160892397,10.902700162958354,11.728285474702716,12.045664784964174,11.35406485805288,10.63807527627796,9.741739128250629,9.23241112055257,8.907746996730566,9.81171694258228,8.902501493692398,8.732279472518712,7.765250412281603,7.769272467587143,8.76810148730874,9.525394357275218,9.154197911266237,9.18673056550324,8.624174290336668,8.598257950041443,7.866221121046692,7.709833735600114,8.537162842229009,9.242336900439113,9.129656955134124,9.083745792042464,9.84006692096591,9.324057959020138,8.810711613390595,9.655927846673876,9.368825375568122,9.729757873341441,9.058159227482975,8.730329378973693,8.283375013619661,7.470384880434722,8.12388580525294,7.664743083994836,7.3362588793970644,7.794444021768868,8.550783928949386,9.177077255677432,9.084736614022404,8.680924345273525,9.335980987176299,9.009881964884698,9.501986608374864,9.278812823817134,9.266694054473191,9.69170130835846,9.473329355940223,9.252102578058839,9.070531801320612,9.887823898345232,9.892831826582551,10.234687047079206,9.289619100280106,9.414232033770531,8.719627631828189,7.966547466348857,8.14789220271632,8.756920641753823,8.117678635753691,7.689261178020388,8.170185910072178,9.058893238194287,8.801327577326447,9.207809233572334,8.93867869535461,9.480821417178959,8.480877454858273,8.200173309538513,8.659304193221033,8.08552052732557,7.6567411669529974,7.567844511475414,6.966962425969541,6.542930201627314,6.1946207685396075,5.980437470600009,5.4132499122060835,5.0100133176893,5.074236316140741,5.2367703705094755,5.1627242234535515,5.17589759035036,4.9314959472976625,5.613995376043022,4.811814452987164,4.740115826483816,3.7801114530302584,4.459857585839927,3.4889838602393866,3.5023508141748607,2.5921484660357237,2.8482397175394,3.4444551188498735,4.396822214126587,3.6767959338612854,2.9181987210176885,3.364560565445572,2.7782728378660977,1.8596121119335294,2.062891833949834,2.415741613600403,3.3173452890478075,3.0262688659131527,2.136157736647874,1.9396410370245576,2.5660726712085307,2.7998305023647845,3.3946025683544576,4.118353413417935,4.82549890037626,5.698418590705842,5.307965376414359,4.512403135653585,3.5486533823423088,3.1485031279735267,2.630113477818668,2.5464421245269477,2.185487442649901,2.264913558959961,2.7120849639177322,3.2133322996087372,2.652856618631631,3.618881790433079,4.231015610508621,4.464900939725339,4.2470476338639855,3.5758664119057357,2.7134218895807862,2.8190067312680185,3.6463275384157896,3.1925815870054066,4.176809716038406,4.063756537158042,4.375630517024547,4.842069729231298,5.121134667657316,5.901159729808569,5.356090348213911,5.369921589735895,5.691072731744498,5.3287656106986105,5.456104626879096,4.7490471373312175,5.681011761538684,5.249799165409058,5.728701150044799,5.874110272154212,6.5185084831900895,6.56258158525452,5.736862019170076,6.506375774741173,6.121914656367153,6.621469240169972,6.350710170343518,6.763141623232514,6.835948209743947,7.034308705478907,7.120214736554772,6.8208076362498105,6.719357853755355,5.800963366869837,5.170883357524872,4.910729241557419,5.25005360879004,5.206724719610065,5.1524953679181635,5.040635175071657,5.863464477472007,6.094988253433257,6.006407142616808,5.577097025234252,5.149842343758792,4.672435418702662,3.935764053836465,4.219103017821908,3.914021061733365,3.535678439773619,3.232330995146185,3.237604765687138,3.9132428732700646,4.332468534819782,3.9763259114697576,4.718184897210449,4.307758011389524,3.786314874421805,4.179374453611672,3.48866629274562,4.478838047944009,4.233036309480667,4.805828608106822,5.1067349361255765,4.16218301653862,4.746262297965586,5.7302118530496955,5.270008380524814,4.841383254155517,4.958335266448557,5.580372779630125,4.885052055586129,4.705824131611735,4.261629878077656,3.4440000536851585,2.926786569878459,3.027862560469657,2.5687113320454955,3.0381990647874773,3.683226046618074,2.8871364346705377,3.3301859069615602,3.649798364378512,3.5557678723707795,4.173872960731387,4.193580632098019,4.903816339094192,4.879328252281994,4.790010209195316,4.965170408599079,3.9774582562968135,3.748771079815924,3.2565095531754196,3.970575736835599,4.940957744605839,5.708159272558987,5.664780075661838,5.525024442002177,4.892340298742056,5.279688217211515,5.905855070333928,5.087113544344902,5.9010253068991005,5.043067192193121,4.9816037975251675,4.985035476274788,5.9775950335897505,5.340458996128291,6.059846165589988,5.555291500408202,5.3253252590075135,6.097719651646912,6.410632750019431,6.0477712941356,6.256579339038581,5.587169600650668,6.078274243045598,6.777500366792083,5.8318493706174195,5.590736563317478,4.9047605828382075,4.916018269956112,4.109839246608317,4.498878790996969,4.046627707313746,4.0470345062203705,4.663998057600111,4.777653879486024,4.167685089632869,4.6582055115140975,5.566204817499965,5.318484192714095,4.333159371744841,4.099052899517119,4.682206728961319,4.196896782144904,4.52663155272603,4.068035304080695,4.964914255775511,4.358880841173232,4.09495298191905,4.989559651352465,5.1598790399730206,4.358241884503514,3.408279246184975,3.7618547677993774,3.8073521913029253,4.341389536391944,4.207283724565059,4.815317403990775,5.006196554284543,4.805650446563959,4.01800393499434,3.3501911237835884,3.8831129376776516,4.457158985547721,5.436757992953062,4.468313745688647,5.327997304499149,5.419852997176349,5.827411622274667,6.1893222983926535,5.408763881307095,5.122443290427327,5.6164873242378235,4.6182027934119105,5.016197804827243,4.276571321301162,3.538177783600986,3.831407902762294,3.523808172903955,3.12526024132967,2.402984547894448,3.0019366620108485,3.94581958046183,3.740941668394953,3.8691377979703248,4.288073914591223,4.928393879905343,4.785006877034903,4.965960581321269,4.509490940719843,4.932648456655443,5.853442883584648,6.3934540851041675,6.197458505630493,6.7954421625472605,7.598938693292439,6.703399745281786,6.076169370673597,5.714912354480475,6.1313422452658415,6.941955943126231,7.01339449128136,7.715990618336946,8.663680059835315,8.325186805333942,9.255347007885575,9.035643582697958,9.621963193174452,9.765031901188195,9.66695846663788,9.13985931314528,8.996521107852459,8.570682533085346,8.871351851616055,9.205971417948604,8.307725100312382,8.247488983441144,7.291562668047845,7.001381705980748,7.4329799972474575,7.280876146163791,7.116429148707539,6.306979931425303,5.4140897411853075,4.767035277560353,5.673962977714837,6.091628069523722,5.367091837339103,4.695239801425487,4.316319558303803,3.787623951677233,3.9986511021852493,4.645868768449873,5.471258589066565,5.313051390927285,4.703089346177876,5.550679705105722,6.2987496997229755,7.212738070636988,7.382263566367328,8.033862807787955,8.573035892099142,7.715481943916529,7.6793845421634614,8.199515238404274,8.27287902822718,8.3472555517219,8.049672779627144,8.586838596034795,8.982336729764938,9.670565026346594,9.150605414062738,8.964264897163957,8.570028489921242,9.27533143106848,9.884549796581268,10.720717440359294,10.357699237763882,9.570318664889783,9.355688695330173,10.115179576911032,9.158603361342102,9.120811859611422,8.28452416555956,7.634953491389751,7.084469432476908,6.568776502739638,5.662423273082823,6.210326462518424,6.721269056666642,5.760998798534274,4.916218779515475,4.343864310067147,4.3181995283812284,4.7157192141748965,5.61626783804968,5.018295444082469,5.553131520282477,6.419001675676554,7.223074844107032,6.3101100558415055,6.016592069528997,6.7835280816070735,6.4344425476156175,5.882911580149084,6.055166125297546,5.901392420753837,6.6534406510181725,6.716287571005523,6.8510714820586145,7.117489715572447,7.391814070753753,8.346257357858121,8.595836487133056,7.698162498418242,8.591393934097141,9.47528872359544,9.16965251415968,8.37406462058425,8.05493777943775,8.241660060361028,7.297237651888281,6.647211072966456,6.172815011348575,5.923089699354023,6.037913618143648,6.259122840128839,5.523467198479921,5.5776905585080385,5.601501439232379,4.64889854285866,3.941383888479322,3.14727198285982,2.9931204924359918,3.701163179706782,3.3225378920324147,3.0627133254893124,2.9194185668602586,2.0132911023683846,1.4384006331674755,1.9599003703333437,1.247839365620166,0.3606772841885686,0.46457878081128,1.360806334298104,0.6021778867579997,-0.20750631112605333,0.41247684322297573,-0.17982205795124173,-0.5493081561289728,0.10280343424528837,0.11773472465574741,0.16741678258404136,0.9948669113218784,0.6990720010362566,-0.11924330098554492,-0.7290406385436654,0.03436629334464669,-0.8018564614467323,-0.7846419890411198,0.10353151336312294,0.0886166924610734,0.47110492596402764,0.2305511492304504,0.5036413860507309,0.6950861648656428,-0.29149051243439317,-0.9789084871299565,-1.8942922563292086,-1.5944610214792192,-2.425322008319199,-3.114048894494772,-3.591303042601794,-3.758991832844913,-3.0627399114891887,-3.462429324630648,-2.5510209267959,-3.470462874043733,-3.6123666134662926,-4.476270964369178,-4.184005714021623,-4.516560546122491,-5.3019741754978895,-4.596142474096268,-4.15818192390725,-3.51371763413772,-3.266087658703327,-3.698685239534825,-3.2986357789486647,-2.362219152506441,-1.7780217877589166,-1.4556288863532245,-0.5275193806737661,-1.2572122840210795,-0.786763318348676,-0.3908401965163648,0.44061554223299026,0.298010413069278,0.43322047032415867,0.4415485276840627,-0.2841593115590513,0.07803542353212833,-0.7175951856188476,-0.47715517738834023,-0.6994775114580989,0.14920560829341412,0.5430522188544273,0.9508769209496677,1.3955629686824977,1.1769764935597777,0.5164541248232126,-0.25065771862864494,-0.8269441490992904,-0.610559914726764,-1.3929341319017112,-1.3432108792476356,-1.8460644874721766,-1.0916240108199418,-0.24540430260822177,-0.21628805389627814,-1.0274909352883697,-1.8224039454944432,-1.9699173890985548,-2.635202486999333,-1.885327986907214,-1.2182307033799589,-1.9677777476608753,-2.7154991677962244,-2.827630909625441,-2.0795717975124717,-1.1299343989230692,-0.5684861801564693,-0.08750801580026746,-0.6522625219076872,-1.4984967480413616,-0.8617306668311357,-0.009012538008391857,0.19249752070754766,-0.17181966872885823,-0.913654088973999,-1.1418184684589505,-1.338849590625614,-1.2032281872816384,-1.4222711133770645,-1.7707690922543406,-1.5258022490888834,-1.5938381822779775,-1.3119424851611257,-1.6034615086391568,-1.9204027778469026,-1.587373469490558,-0.9086884614080191,-0.5278101097792387,-1.5136577785015106,-2.0890572094358504,-1.1376091125421226,-0.42049076361581683,-0.09523408487439156,-0.7034117616713047,-0.6393726784735918,0.13603303115814924,0.9679593974724412,1.718647534493357,2.5194859649054706,2.9546269299462438,3.611072872299701,4.251696327701211,3.462264464702457,3.895207175053656,4.081227532122284,3.5966441850177944,3.7578389137052,3.994975382462144,3.873500287067145,2.972800502553582,3.0866514947265387,3.102986617013812,2.570301331579685,2.256990463938564,3.1195252425968647,2.348843787331134,2.5727716381661594,2.8797610020264983,2.9255308783613145,2.117755147162825,2.611629885621369,1.6311480663716793,1.6818071571178734,2.2549193017184734,2.66319794440642,2.43638808792457,2.427148521412164,2.747449635528028,3.5307834441773593,2.80038458481431,2.1484473212622106,2.911160020157695,2.0679203057661653,1.9806879605166614,2.3250558744184673,2.8219407168217003,3.7503415322862566,4.511305766645819,5.123462808784097,4.886966559104621,5.018316171132028,4.571551620494574,5.534258900675923,5.959797791205347,5.475933208595961,4.930409979540855,4.3664934523403645,3.5068258959800005,4.4996813465841115,4.420643147081137,3.713821566198021,4.701999386772513,4.287728229537606,4.131012503989041,3.5247171469964087,3.6908221538178623,3.1438780119642615,2.7766598984599113,2.0118508166633546,2.3293098863214254,3.307203066535294,2.4753861664794385,1.497996945399791,0.5718837748281658,-0.3967557610012591,0.35893385112285614,0.7283176896162331,0.8788530617021024,1.4786359420977533,2.1870118780061603,2.5900281337089837,2.527401611674577,1.8685058606788516,1.6555003826506436,2.5509812897071242,3.385656226426363,2.9684706828556955,2.3944768239744008,1.8042445983737707,1.2278377269394696,1.3592372424900532,1.491264742333442,1.285846384242177,0.7037093192338943,0.6159144737757742,1.0753065063618124,0.7425300679169595,0.9495935644954443,0.22255535935983062,-0.094845418818295,0.20940136862918735,0.9284819243475795,-0.003819569479674101,0.3997502620331943,0.2443587309680879,1.174699863884598,1.5630368730053306,0.5751663972623646,1.0560897076502442,1.415141563396901,0.7098924275487661,0.9936150698922575,1.88961291173473,2.6314596603624523,3.351827684789896,4.2720370618626475,4.583343922626227,4.2186800627969205,3.7680373350158334,3.356283847708255,3.1982784015126526,3.5644009658135474,2.8886645403690636,2.9618739229626954,2.3535526394844055,2.3929061819799244,1.687170815654099,0.7867043823935091,1.4716195166110992,1.209304589778185,0.7814653031527996,1.0650083827786148,0.5445731184445322,1.163393716327846,1.9433343652635813,1.8012353447265923,2.4110894524492323,1.6275084163062274,0.6953332000412047,0.4133174931630492,0.40558779751881957,1.0801535043865442,0.5894252648577094,0.09982656082138419,0.2154409415088594,0.7373719732277095,0.8793195909820497,0.7404967937618494,1.1295853327028453,1.878590579610318,2.7540439809672534,3.593112421222031,3.2710265410132706,3.9614615184254944,4.658805734477937,5.19540552329272,5.023358015809208,4.665597668848932,4.221546861343086,4.13924282649532,3.6920226984657347,3.0777080808766186,2.600941451266408,2.891230915207416,2.5711832316592336,3.0099437083117664,3.6476448932662606,3.2221444440074265,3.348881470505148,3.98314515594393,3.5449063926935196,4.335579460021108,4.2298548156395555,3.2866984736174345,2.552515317220241,2.6838955213315785,2.931544564664364,3.050982801243663,3.3226850372739136,3.263447849545628,2.334689768962562,2.1725748740136623,2.528472671750933,2.4301911354996264,2.8370899916626513,2.1342791221104562,1.5023437412455678,0.7554008788429201,0.14678274933248758,-0.3339831926859915,-0.5887467637658119,-0.8120783884078264,-0.7101550688967109,-1.3025278151035309,-1.0367047502659261,-1.9200678425841033,-1.2613621880300343,-0.449260379653424,-0.4459265610203147,-0.4717687130905688,-0.5870837429538369,-0.6723221554420888,0.255209568887949,-0.48565752850845456,-1.1391066797077656,-1.4012986379675567,-0.45378286112099886,0.4400920537300408,-0.0027099247090518475,-0.15907985251396894,-1.1185343284159899,-1.183784356340766,-1.0276808021590114,-0.7749275718815625,-1.142157532274723,-0.207473105750978,-0.5304678669199347,-0.789550825022161,0.1141126505099237,0.4446631441824138,1.2874119826592505,0.37709182500839233,0.37971514789387584,0.20774676278233528,-0.24460436683148146,-0.3905652752146125,-0.28975017461925745,0.4729390605352819,1.426821633707732,2.0956755257211626,1.2729692948050797,0.38127437280490994,-0.21733769308775663,-0.6422756952233613,-0.004382645711302757,-0.769452877342701,-1.2013626545667648,-0.8046180489473045,-1.256929587572813,-1.3814633865840733,-1.7404856886714697,-1.9031274793669581,-2.3862258377484977,-2.4577815141528845,-2.1848669527098536,-1.6938711092807353,-1.8275180417113006,-1.6087112692184746,-1.4717233092524111,-2.0833562090992928,-2.819597397465259,-3.321328764781356,-3.6828527376055717,-3.8466829918324947,-3.607588643208146,-3.9708239953033626,-4.6820996082387865,-4.739643856417388,-5.145742109976709,-4.225169233046472,-5.037770060356706,-4.718420611228794,-5.470745455939323,-6.3515020865015686,-5.5870513576082885,-5.771483648568392,-4.896244854200631,-4.717636675108224,-5.2974468702450395,-4.968798648566008,-4.25108188809827,-3.3908571018837392,-3.0377124566584826,-2.0741753494367003,-2.383609769400209,-2.4557423256337643,-3.262711711227894,-3.2376896305941045,-2.2505348683334887,-1.611556724179536,-1.8290254045277834,-2.4632088746875525,-1.5224721026606858,-0.6139386435970664,-0.5898853801190853,-0.7661997633986175,-1.4382108384743333,-1.0471518314443529,-1.4909421768970788,-1.6832860498689115,-1.5821077255532146,-1.9972673379816115,-1.3524337564595044,-1.4812651574611664,-0.957116961479187,-1.9370488482527435,-2.778298394754529,-2.1570388758555055,-2.750939425546676,-2.8498095986433327,-2.1400640765205026,-2.2191861206665635,-2.9120507510378957,-2.8636372671462595,-2.697363141924143,-3.334872144740075,-4.068159215152264,-4.555411066859961,-4.491210880689323,-3.885246407240629,-3.8516833023168147,-3.753217002376914,-2.984907978679985,-2.6002165554091334,-1.8970904643647373,-1.4068177440203726,-2.271364466752857,-3.052476104348898,-3.5306987310759723,-2.611031206790358,-3.1247492926195264,-3.8980111056007445,-4.2027483927086,-4.740120228379965,-4.234994009137154,-4.606760217342526,-4.234757785219699,-4.466566426679492,-4.792233799118549,-4.105464427731931,-5.093281462788582,-4.175686037167907,-3.7963038831949234,-3.493536890950054,-3.1427793418988585,-2.8412695471197367,-2.8106702002696693,-3.7314055575989187,-4.261529698036611,-3.867955217603594,-3.3590502929873765,-3.916164092719555,-3.083887491375208,-2.3247651532292366,-2.64931330550462,-3.4532084395177662,-2.5815998753532767,-2.4235743465833366,-2.535223581828177,-2.145538318902254,-1.8938039746135473,-2.6369118099100888,-3.3907889602705836,-2.6644030762836337,-1.9658138365484774,-1.369301198516041,-1.3842239300720394,-1.1557187805883586,-1.7104797642678022,-1.3064623530954123,-1.586627546697855,-2.421408797148615,-2.097597506828606,-2.267679418902844,-2.0759320501238108,-2.6865052049979568,-2.0060850982554257,-2.8034127517603338,-3.524328307248652,-4.0529788844287395,-3.1847783592529595,-2.774690095335245,-2.8980575990863144,-2.9016078882850707,-2.2068101093173027,-3.0638907151296735,-3.3678615586832166,-2.7785048144869506,-3.4309609630145133,-4.383053982164711,-4.709702890831977,-3.9135167663916945,-3.0525494846515357,-3.246987635269761,-2.722378675825894,-3.0423996658064425,-3.8919109664857388,-4.044651493895799,-3.9307627654634416,-4.879325264133513,-4.051560813561082,-4.625158194452524,-4.165126653388143,-3.8379123006016016,-3.286764767020941,-3.829093776177615,-3.2875669836066663,-2.895246082916856,-2.93427772494033,-2.5011548902839422,-1.9177126875147223,-1.5472133583389223,-1.2468226137571037,-0.5106439385563135,-0.2365086297504604,-1.0580006195232272,-0.36721769254654646,-0.991406746674329,-0.034256900660693645,0.7070084079168737,0.1379441791214049,1.0504924017004669,1.894699496217072,1.9307715697214007,2.4808293054811656,2.914534357842058,2.3893927186727524,2.556594356894493,1.955225960817188,2.7456108634360135,3.6999851213768125,4.0031662615947425,4.683949803002179,5.30435372935608,5.207648101262748,5.598158345092088,5.916428867261857,6.633194025140256,5.648922657594085,4.832861684728414,5.609313133172691,5.668059125076979,5.712386020459235,4.998100467491895,5.644527489319444,6.069956038147211,6.280116859823465,5.532790448050946,6.092905136290938,5.234489222057164,4.488145472947508,5.19790988182649,5.215696781408042,6.172277361620218,6.3119454421103,5.660020587965846,5.645538887474686,5.195838123559952,5.91540228202939,5.921589616220444,5.485017586033791,5.962521179113537,5.039180805440992,5.584420169238001,4.893863109871745,4.342143428977579,3.542277686763555,2.8176023503765464,3.348072518594563,3.9580385079607368,4.818613731302321,5.107493483927101,4.3301879917271435,4.486481589730829,3.5531391385011375,3.469906081445515,3.5698410337790847,3.4778201952576637,4.120066462084651,5.020402490627021,4.179078703280538,3.366464655380696,3.153842094819993,2.59191230032593,2.805563294328749,2.434964548330754,2.9109824909828603,3.100050476845354,2.5030458508990705,3.0631937556900084,3.50147721869871,3.840922118164599,4.2947639329358935,3.838695416226983,3.901296108495444,3.371551995165646,3.5042891441844404,2.8695950182154775,2.343793894164264,2.7441533925011754,2.3701206604018807,2.569361920468509,3.3729095705784857,3.5989117808640003,2.713951466139406,3.3994892546907067,4.310037126298994,3.5920154717750847,4.498801690060645,4.394073168747127,3.7617766833864152,4.612165200989693,5.596343383193016,6.068021918646991,5.673682420980185,5.181726215872914,6.002222489565611,6.318396335002035,6.761337260250002,5.932221631985158,5.063917224295437,5.9622147139161825,5.945935694966465,5.1085929670371115,4.527600300963968,4.4886821722611785,4.022423992399126,4.325107099022716,3.3663511564955115,3.5604391740635037,3.638314343057573,4.4406266855075955,4.02631779294461,4.848015151452273,4.887994267046452,4.644015714060515,5.173568112310022,5.33589873323217,5.39263616129756,5.878176171332598,5.217476220801473,5.792423996143043,5.616817692294717,5.370016715489328,6.27597101777792,6.2295352183282375,6.945059859659523,7.590109319426119,7.658212142530829,8.29102248698473,8.122558622155339,7.91000205418095,7.644606981426477,8.086735722143203,8.364672652911395,8.210694814100862,8.806940492708236,8.543172356672585,9.08283464377746,8.398613804019988,7.506268111988902,7.1251653102226555,6.4392812717705965,6.327462377958,6.75790242664516,6.541093828622252,6.999104876536876,7.057627330068499,6.263157746754587,5.9918521284125745,5.88635436212644,6.082316013984382,7.047544544562697,7.615048298146576,7.928884394466877,7.92755150096491,8.07211536820978,8.743469736073166,8.232036079280078,8.68765171058476,9.375335001386702,9.392665372695774,8.989892377983779,9.613091123756021,10.20059639075771,9.839586707763374,9.736392696388066,8.779668421018869,9.42369380639866,9.642980123404413,10.378804184962064,10.000086151994765,10.840060506481677,11.35971727501601,11.593917777296156,12.115145781543106,12.041677572764456,11.908457207959145,11.91621110867709,11.659867939073592,11.459486125502735,11.91676003439352,12.021796668414026,12.58169875247404,13.376813679933548,13.96694573853165,13.442396000493318,12.590134424623102,11.680705635342747,12.191767785698175,12.006748926825821,11.715466163121164,12.162881903350353,12.15841053891927,11.96287619555369,11.509373637381941,11.49992311745882,12.394928902387619,12.66209371946752,12.106352080125362,12.433413962367922,12.95018390705809,12.5096967513673,12.060738080181181,11.385551515500993,11.946085238829255,12.480103185400367,11.70671622082591,10.841386793646961,10.535103566478938,10.084150876384228,9.108025879133493,9.36018946627155,8.443894912023097,7.736550224944949,8.278859563171864,8.989443508442491,9.702281708363444,9.432700886391103,9.847886168863624,10.304434624500573,9.886979803442955,10.834906878881156,10.663478169124573,11.262194547336549,11.906042459886521,11.403599849436432,11.955857242457569,11.695060656871647,11.383858195040375,10.582145598251373,10.283991576638073,10.72647523554042,11.650302733294666,11.739157005213201,11.888521825894713,10.972925984766334,10.037250896915793,10.532010570634156,11.042834750376642,10.04676068155095,10.140097795519978,10.005646546836942,10.326605800539255,11.194114156067371,12.089954044204205,11.117261918261647,11.877648099325597,11.749008927959949,11.193044430576265,11.273779744282365,11.56809778092429,11.399562674108893,11.440519554540515,10.5446633878164,10.916355296503752,9.935786195565015,9.857619741465896,10.164472197182477,9.192015033215284,8.44379528798163,8.861121509224176,9.12483148695901,8.674795397557318,8.992674151435494,9.320281864143908,9.103226939216256,9.282730969134718,8.363385961856693,7.5304095121100545,6.907644457183778,6.501569572836161,7.445609921589494,7.217052962630987,7.715080762747675,6.995034995954484,6.277115690056235,6.256732867099345,5.316660079639405,6.197933975607157,5.8599591394886374,5.571175034623593,4.697507139761001,5.1374403750523925,4.69043161906302,5.630356862675399,4.8927100002765656,4.08010889030993,4.259319783188403,5.157380829565227,4.249245258513838,4.853065416682512,5.451425839681178,5.552314437925816,5.018618865869939,4.391174752730876,4.923246316611767,5.533325410448015,6.143374657724053,5.451957090292126,6.3323725569061935,5.446463257540017,5.519070673268288,5.970882617868483,5.485289462842047,4.666845911182463,3.743555487599224,4.05922239087522,4.137422596104443,4.416975192259997,4.625762804877013,4.31890727346763,4.179413151927292,4.061652705539018,4.747396705206484,5.533607558812946,5.351358947809786,5.7074008556082845,5.789026251528412,4.970385803375393,4.488067026715726,3.8510607783682644,3.1769793145358562,2.341383438091725,2.4087147526443005,1.9467063238844275,1.4254363249056041,1.7436866811476648,2.2266926607117057,2.7009373479522765,2.7408079761080444,3.240998759865761,2.5673384782858193,3.5633054678328335,4.175168223679066,4.167986955493689,3.4502867297269404,2.46123058302328,2.5613936921581626,2.0604013931006193,2.0575132719241083,1.5879817800596356,0.9677891405299306,0.2795297927223146,0.00971356825903058,0.8046840745955706,0.17062685824930668,1.1171479299664497,0.9485083119943738,0.7431527664884925,1.2808346026577055,1.7874033711850643,2.5131650026887655,2.5277162441052496,2.478063357062638,2.730261903721839,3.087727294769138,2.24189976695925,1.6246086843311787,1.889201189391315,2.3522497909143567,1.56247115181759,1.9261710387654603,2.4833628004416823,2.0379381915554404,1.0633800667710602,0.40456145256757736,-0.020224461797624826,0.11338266311213374,0.09004840115085244,-0.061360512394458055,0.788855695631355,0.214247384108603,-0.45970945758745074,-0.19248885195702314,0.5257970620878041,0.5981890908442438,0.8583059916272759,1.8455646131187677,1.9365685787051916,1.2883461504243314,1.4749003890901804,1.6388486349023879,1.2662653643637896,1.187152614351362,0.6248642434366047,0.47246233373880386,-0.08637460600584745,-1.0415065377019346,-1.1077239443548024,-1.7164922063238919,-2.2936067637056112,-2.5115705081261694,-3.5057421741075814,-2.6179219619370997,-2.604854093398899,-3.086210031528026,-2.3388097900897264,-2.0645906631834805,-1.2747009606100619,-1.2386613371782005,-0.5911392010748386,-0.08884193934500217,0.7604396245442331,0.19194690696895123,0.33676805905997753,1.0437014903873205,1.451350771356374,2.1912660277448595,2.5578382862731814,2.4282601475715637,2.6138700167648494,1.8972234465181828,1.0127646368928254,0.41680597979575396,0.32560025062412024,0.907874227501452,0.37727447180077434,1.0651456122286618,1.2716891579329967,1.164627730846405,0.6937767993658781,0.003615572117269039,0.8908638721331954,0.3626090744510293,0.5035697813145816,0.6514873346313834,-0.12851097900420427,-1.0431579141877592,-1.9356033797375858,-2.4186356752179563,-1.6600702302530408,-1.8293261299841106,-1.996162130497396,-2.974543250631541,-3.1538774161599576,-3.3223304310813546,-4.089881103951484,-4.476271516177803,-3.486163711640984,-3.288554789032787,-3.035155553370714,-3.011704338248819,-2.401503648608923,-2.314453734550625,-2.626002367120236,-3.2567457887344062,-4.112467951606959,-4.482066435273737,-4.2926920829340816,-3.3251059744507074,-3.638067160267383,-4.491340656764805,-5.377295325975865,-5.1591301234439015,-5.5523426667787135,-4.777758135925978,-5.632498821709305,-6.115937614347786,-5.29573047766462,-5.47668540943414,-4.714328961446881,-4.3310427502729,-4.912940360140055,-5.731810063589364,-4.769609039649367,-4.354159411042929,-4.323313024826348,-4.548626502044499,-5.455718888901174,-5.999801068101078,-6.814094871748239,-6.046494636218995,-6.415667389985174,-6.180670879315585,-6.604486059397459,-7.221348045859486,-6.285836818628013,-5.324450094718486,-5.24222676968202,-5.369384151417762,-5.095392292831093,-5.241857484914362,-5.264756708871573,-4.719080475158989,-4.282723940908909,-5.236360862851143,-4.581134033855051,-5.08354696072638,-5.549307012464851,-6.0936971749179065,-5.53281088732183,-6.453659804072231,-6.81142467353493,-6.268424701411277,-5.542484068777412,-5.285222818609327,-4.482331124600023,-5.1991473524831235,-5.05450776591897,-5.25442049652338,-4.850782975554466,-4.45636724261567,-4.105145158711821,-3.285553727298975,-2.308626643382013,-2.878923036158085,-2.839990893378854,-3.4955538087524474,-2.7176327011547983,-3.111219379119575,-3.8378620566800237,-3.1429324983619153,-2.951555011793971,-3.3632986987940967,-3.3767543234862387,-4.008518852293491,-3.285359302535653,-3.322751092258841,-4.13630450470373,-4.814525895286351,-3.908989416901022,-3.4082078775390983,-4.28737897798419,-3.734409316442907,-4.6545741483569145,-5.405836468562484,-6.165554828941822,-5.837143533397466,-5.5115183661691844,-5.231830777134746,-5.31784330168739,-5.926177404355258,-5.195354130584747,-6.040530257858336,-6.919024848844856,-7.210382538381964,-7.9829589780420065,-7.366641237400472,-7.571241116151214,-7.282978039234877,-7.449097262695432,-7.606342513579875,-8.348371447995305,-7.879389594309032,-7.9073301628232,-8.665761626325548,-8.047337277326733,-7.130949760321528,-7.893497789278626,-7.675379242282361,-7.352039449382573,-7.006638838909566,-6.9575176648795605,-7.78731332719326,-7.959641680587083,-8.051903031766415,-8.739755079615861,-9.141174755059183,-9.834906631615013,-10.593482136260718,-9.75827959086746,-10.47556095989421,-10.265672254376113,-10.910842958372086,-11.045872407965362,-11.981747642159462,-12.853673729579896,-12.143692749086767,-11.611115221865475,-10.839043873827904,-11.257393108680844,-11.824885522946715,-12.675736974924803,-12.996465015690774,-12.627307269256562,-11.708905370905995,-12.256696331314743,-12.682297280058265,-12.087829694151878,-12.211907187942415,-11.338613404426724,-11.170487697701901,-10.231524534057826,-10.381577239837497,-10.534664772916585,-10.969579172320664,-11.512694167438895,-11.454160618595779,-11.061811794061214,-10.898856840562075,-11.210838852450252,-12.054682945366949,-12.518730710726231,-12.373406572733074,-12.86092579504475,-12.139536942355335,-11.483954708557576,-11.178566289134324,-10.380854296963662,-10.327140306588262,-10.657831070479006,-10.818058971315622,-10.331671417225152,-9.343835356179625,-9.457418050151318,-10.394370571244508,-10.85418084776029,-11.063345673959702,-11.939013740979135,-12.365581274963915,-11.441519984509796,-11.24320051446557,-10.262158026453108,-10.507511148229241,-10.855594157241285,-11.487862125504762,-12.438459589611739,-11.63823877973482,-11.64825828326866,-12.147947657853365,-12.850784518290311,-13.148031230084598,-14.035452052485198,-14.98873960180208,-15.14425095031038,-15.796385836787522,-15.534886536654085,-16.07185372337699,-15.188555971719325,-15.707845107186586,-16.701727195177227,-16.795703048817813,-16.881417270749807,-17.363387879449874,-17.870091943070292,-18.63691245485097,-19.205546042416245,-19.827228560578078,-20.776566004846245,-21.027947338297963,-20.402678177226335,-20.012958043720573,-20.411633166950196,-19.498720061965287,-20.390106690581888,-20.062603136058897,-20.317533081397414,-21.03719015000388,-21.90307746361941,-21.452257924713194,-22.00372587935999,-21.617943635210395,-22.25148635916412,-21.507458286359906,-21.011680114082992,-21.008419018704444,-20.40045398985967,-20.661135932430625,-19.897473427001387,-20.830446827225387,-21.257447929121554,-20.53540874645114,-19.820306403096765,-18.858891711570323,-19.473694862797856,-18.94122859230265,-19.695979887153953,-19.07778353849426,-18.182678890880197,-18.513967197854072,-18.60854339785874,-18.374162392690778,-18.080072990618646,-18.466151556000113,-18.031690842006356,-17.39486409490928,-17.45689192833379,-17.169075678102672,-16.578325426205993,-17.11940628523007,-16.66581575712189,-16.46610963717103,-16.351041985675693,-17.177813886664808,-17.828191307839006,-17.657063907012343,-18.368499206844717,-18.90404276456684,-18.136433091014624,-18.836021431721747,-18.24720866139978,-18.580637031700462,-18.882037025410682,-18.66444267053157,-18.687475522514433,-17.75625538220629,-18.272552281152457,-18.40764762694016,-18.87135206302628,-18.495991366915405,-18.245177939068526,-18.529616607818753,-19.190954350400716,-18.986873821821064,-19.52749641193077,-18.549298708792776,-18.50541132222861,-18.64703785162419,-19.44250255357474,-19.03849333152175,-18.193322469480336,-17.370469347573817,-17.471826247870922,-18.111242559272796,-17.536195028573275,-17.948824969120324,-17.010212380904704,-17.045018827542663,-17.099274850450456,-17.994559032842517,-17.09152997797355,-16.460761616937816,-16.647698347922415,-17.57008363958448,-17.40089917369187,-17.213032831903547,-16.504158661700785,-17.2018340122886,-16.834155073855072,-16.655610639601946,-17.145869283936918,-17.82915364857763,-16.99277832917869,-17.49919209489599,-18.12925423728302,-19.11892613908276,-19.353664849884808,-19.820291229058057,-20.264531299006194,-19.990516136866063,-20.09773883735761,-20.85090447915718,-20.154020719695836,-20.61564370850101,-21.270016374532133,-20.93526147166267,-20.1531202532351,-20.929054285399616,-21.568412400316447,-20.94585055252537,-21.290042811073363,-20.77736469404772,-19.856022749096155,-20.603842086158693,-20.289731789845973,-19.91686051618308,-19.80684089893475,-19.80476780515164,-19.96907541155815,-19.653626469429582,-19.690127602312714,-20.47544204024598,-20.488375103101134,-20.617256192024797,-20.36021937429905,-21.171949203591794,-21.66303141415119,-21.901433408726007,-21.635797306895256,-21.598160753492266,-21.299371330998838,-20.913778245914727,-20.915120693389326,-21.483049275819212,-21.043786480091512,-20.852760874200612,-20.934538825880736,-20.10131231788546,-19.418588298838586,-19.13032723683864,-19.120120910927653,-19.659550867509097,-20.28308139415458,-20.45882263407111,-19.74452083185315,-20.263626927509904,-19.422100474126637,-19.088134481105953,-19.710503264330328,-18.762041389010847,-18.458580849226564,-19.407670152839273,-18.714379061944783,-18.761023968458176,-18.841771952342242,-17.850739014800638,-17.269324637483805,-16.536396712064743,-16.04204919282347,-16.252467525657266,-15.833775326609612,-16.276720035355538,-16.55993279442191,-16.41394325485453,-17.078610196709633,-16.213151514530182,-15.709503942169249,-16.632520926184952,-15.686796260997653,-14.89803144754842,-15.89567823940888,-16.45919476216659,-17.054638005793095,-16.573672234546393,-16.10241239145398,-16.7743423092179,-17.56058510346338,-17.888033424969763,-17.66389800980687,-18.19739260710776,-18.7053901841864,-19.438501517288387,-20.105979083571583,-21.076478540431708,-20.472633459139615,-20.668409266043454,-19.882976032793522,-20.700208871159703,-20.391057745087892,-19.670617401134223,-19.608811364509165,-20.33971708966419,-19.798530736006796,-19.910894700326025,-20.596962723415345,-21.546724999323487,-21.48695284500718,-22.072368887718767,-21.481125438585877,-21.810431503225118,-21.415393012575805,-20.764609238598496,-20.848308430518955,-21.06699805520475,-21.91213659197092,-22.854322619736195,-22.703464053571224,-22.139877698849887,-22.549461331684142,-21.691812278237194,-21.170061745215207,-21.563011556398124,-21.633051146753132,-21.23357244860381,-21.63691512355581,-22.63517339946702,-22.5802159672603,-22.0191005715169,-21.08171309484169,-20.464937269687653,-20.460573107469827,-20.387021768372506,-19.86043657269329,-19.78908502822742,-20.064735679421574,-19.464653417933732,-19.67015856038779,-18.78269121842459,-18.78124403534457,-19.269716263748705,-19.94104054197669,-19.32149549620226,-19.5428805090487,-19.293462364003062,-19.74639629293233,-19.353773850481957,-19.869289320427924,-20.494575934950262,-21.490645134821534,-20.643438213970512,-20.708604303654283,-20.340032427106053,-21.10805492475629,-21.464532386977226,-21.879138034768403,-22.2377290581353,-21.26828421698883,-21.576780777424574,-20.92425842024386,-21.32147979689762,-21.729674940928817,-21.073557670693845,-20.273544893134385,-19.32798353023827,-20.176514198072255,-20.160325135104358,-21.007696642540395,-20.41636800672859,-20.94361234595999,-21.128420643042773,-20.746142175979912,-20.57396294735372,-19.956055560614914,-20.121308493427932,-20.5725599816069,-20.105609215330333,-19.535777068231255,-19.008807725273073,-18.168400245718658,-18.595078576821834,-18.585216531995684,-19.454096460249275,-19.137805074453354,-18.54212153237313,-19.319076887797564,-19.844675794709474,-19.075291640125215,-18.73158897459507,-18.51950755994767,-19.12880880618468,-19.706453213933855,-20.612023148220032,-21.02128732856363,-20.083240494132042,-19.48356594098732,-19.071322371717542,-18.22617419762537,-18.038267019670457,-18.19254492642358,-18.75287907430902,-18.588137270882726,-18.224869770463556,-18.248002315405756,-18.055107810534537,-18.473492101300508,-18.59374661836773,-19.509095401037484,-20.28386193048209,-19.54537433385849,-20.477271704003215,-20.062340713106096,-19.46851252997294,-19.966583421453834,-20.459194735623896,-19.970504391938448,-19.047168809454888,-18.7558475532569,-18.427180400583893,-18.35965765779838,-18.835789033211768,-19.485496184788644,-20.095496963709593,-19.59866447094828,-19.649693810380995,-20.470056829042733,-21.01477224100381,-20.90142667852342,-19.994611315894872,-20.946190306916833,-21.00455012684688,-21.148245743475854,-20.337200273294002,-19.692134588956833,-19.0548608857207,-18.19404234783724,-19.102669820189476,-19.937362308613956,-20.62922716792673,-21.421144923660904,-21.061838193330914,-21.869339716155082,-21.061051381751895,-21.40077610593289,-22.225774352438748,-22.38108598580584,-21.757855986710638,-21.777322022244334,-21.871598492842168,-20.899929747916758,-20.14374470617622,-20.82357164984569,-20.627489649225026,-21.151668842881918,-20.764215759001672,-21.215555692091584,-21.297762129921466,-22.235131066292524,-21.36698861187324,-20.705922111403197,-20.748589753638953,-20.23751740017906,-19.857681810390204,-20.12556793121621,-21.007458284962922,-21.321591842453927,-21.109504618681967,-21.68780707847327,-21.970022505149245,-22.503562207333744,-22.15391307324171,-21.819473960902542,-21.890267469920218,-21.857817180920392,-21.35827883752063,-21.15948675107211,-21.225514736026525,-20.313321402762085,-20.477748322300613,-19.97816155711189,-20.7988071157597,-20.912026345729828,-21.105689271353185,-20.785835689865053,-20.444142028223723,-20.36629709554836,-20.867028797976673,-20.882730196230114,-21.764248924329877,-21.703239070251584,-22.354960865341127,-22.45704097300768,-21.524134254083037,-22.4594753915444,-21.52503750519827,-21.785561888478696,-22.49511528527364,-21.839209779631346,-22.343516849912703,-22.49031446222216,-23.295156911946833,-24.014044344890863,-24.409502829890698,-24.97440647147596,-25.01140503725037,-24.529684530571103,-24.85787238087505,-25.11447286978364,-24.947083887644112,-25.156881667673588,-25.96925406018272,-26.634697095490992,-27.196827679872513,-26.708823383785784,-26.255354579072446,-25.562647262122482,-25.272461768705398,-25.937131623737514,-25.891489609144628,-25.31895882030949,-25.504749158397317,-26.186339303385466,-25.412088114302605,-26.081055264454335,-26.941108096856624,-27.148086625616997,-26.53281062748283,-27.01893129060045,-26.357543618418276,-25.450936375185847,-24.94311105273664,-24.927371320780367,-23.939226341899484,-23.083008458837867,-23.682089305482805,-24.254465555306524,-23.31759802857414,-23.892207343596965,-22.996781417634338,-22.648211556952447,-21.99390705721453,-22.23835026845336,-22.124799803365022,-22.511273107957095,-21.672541527543217,-21.039235732518137,-20.510467106010765,-20.459794079884887,-21.02915401570499,-21.96737230475992,-22.489317981526256,-23.091296377126127,-22.381712588481605,-21.799292013514787,-22.410168007947505,-23.406674245372415,-24.343382152728736,-24.371437080204487,-24.959506036248058,-24.49896801635623,-24.419710046611726,-25.30236230697483,-26.109597818925977,-25.52120026340708,-25.069621487986296,-26.06454149680212,-25.122616855427623,-25.738780280109495,-26.2867712341249,-25.667659123893827,-25.810691942926496,-25.887976294849068,-25.473331504967064,-25.54166215285659,-25.89636616082862,-25.529636843129992,-25.912903104908764,-25.4441136890091,-26.059927430935204,-26.560568462125957,-26.624686603434384,-27.29634632449597,-26.394187979400158,-25.52587503986433,-26.092579321935773,-26.252263956703246,-25.647871703840792,-26.51920671015978,-26.470839858520776,-26.773185279220343,-25.989920161664486,-26.01667585130781,-27.003689939156175,-27.99118693964556,-28.233695314265788,-29.14054162846878,-29.933429988566786,-29.425228036940098,-29.197878079488873,-29.97095418907702,-29.406260611023754,-29.239800038281828,-29.203161305747926,-29.59403215162456,-29.74927539844066,-30.124249569140375,-29.6287963911891,-30.357024505734444,-30.656798338983208,-29.966002305503935,-29.808565720915794,-28.82402592804283,-29.123621225822717,-29.918837329838425,-30.748402717988938,-30.381258436013013,-30.486653340049088,-29.846832134760916,-30.72416253713891,-30.233390017412603,-29.736832111142576,-29.413812047801912,-29.65186454774812,-29.038333929609507,-29.873347559478134,-29.685139653738588,-29.404774512164295,-29.78473615879193,-30.76346448995173,-30.09832318080589,-29.496201653499156,-30.284420549403876,-31.144950366113335,-31.22072908235714,-31.939746733754873,-32.07409407477826,-31.255351651459932,-32.11183210276067,-32.52360602328554,-32.7656183950603,-31.841749155893922,-32.325477017555386,-31.666992221027613,-32.14106757938862,-32.291389235295355,-32.01989701250568,-33.01759343035519,-33.2890367670916,-32.83244028687477,-32.665917467325926,-31.751650028396398,-30.925274765584618,-31.562609224114567,-32.33738622255623,-32.145774270407856,-32.26952092209831,-31.36496239202097,-31.121871429961175,-30.536919052246958,-30.26275726268068,-30.614973180461675,-31.185737827792764,-31.999558442737907,-32.393231860827655,-33.185841836966574,-32.61188806081191,-33.464386134874076,-32.52236433560029,-33.243933169636875,-33.7967180092819,-34.704235680401325,-35.60528062703088,-36.59719755128026,-36.70648259157315,-37.08118689246476,-36.760838717222214,-36.06836764886975,-36.0716444151476,-35.349067052360624,-34.5891768662259,-35.15042528184131,-35.30804350087419,-36.2826058329083,-37.193192868027836,-37.836652133613825,-37.36594700766727,-36.93603735137731,-36.69379951944575,-37.0155945266597,-36.09930701367557,-36.23711551679298,-35.36728764651343,-34.60198620520532,-35.05017267353833,-34.7219739141874,-34.87416729563847,-34.32707921275869,-34.93985985638574,-35.34338140068576,-34.57362953107804,-33.73202763404697,-33.76589993434027,-33.00428250711411,-33.49183045560494,-33.35716275172308,-32.667055108584464,-33.07498099980876,-33.676221646834165,-33.10045520309359,-32.38265591207892,-32.09368249354884,-31.51676410716027,-32.45071415044367,-31.695905993692577,-31.92191195767373,-31.539399828296155,-31.57158848643303,-31.791632814798504,-30.999137757346034,-30.25292182294652,-30.023887348826975,-29.594483522698283,-28.608679562807083,-27.96879869280383,-28.799640860874206,-28.365116387140006,-27.6444250093773,-28.599457644391805,-27.99434877000749,-28.066466610413045,-28.895394722931087,-29.169041033368558,-30.16410000110045,-30.776958799920976,-31.23463459033519,-32.08531682053581,-31.292546688579023,-31.591660883743316,-31.883900939952582,-31.081412233877927,-31.385395753197372,-31.100848083384335,-30.70366426324472,-30.23191235261038,-30.173085681628436,-29.897719088941813,-29.035646762233227,-28.444461808539927,-27.46426593279466,-27.37042219005525,-26.56114019919187,-26.691594772040844,-26.913637719117105,-26.96373785007745,-27.921652942430228,-28.613953925203532,-28.701118498574942,-28.545721080619842,-29.250265138223767,-28.873609006870538,-27.972859581001103,-27.848413588944823,-27.963145327288657,-28.139201181009412,-28.349658851511776,-27.703019758220762,-27.458995633292943,-28.14183760387823,-28.362572374287993,-27.368267860729247,-27.64500144077465,-27.36890761787072,-28.05844001052901,-27.74989978224039,-28.23508263286203,-29.181431936100125,-29.250084404367954,-29.5103261442855,-30.492376394569874,-30.368713482283056,-31.054705733899027,-31.933969088830054,-32.21807699231431,-32.66424978291616,-33.573801543563604,-33.342247505206615,-34.00644355872646,-33.74502456141636,-33.921942392364144,-34.12826650729403,-35.11102535761893,-34.28243620507419,-34.16940283915028,-33.223415105137974,-33.89077773410827,-33.739927689079195,-33.732336938381195,-33.67553899716586,-33.78666631877422,-34.534155894070864,-34.97336000017822,-35.703300553839654,-36.22002073563635,-37.03374833520502,-36.197470638900995,-37.08852983638644,-37.43710581585765,-37.44085573172197,-37.87363217724487,-37.793630064465106,-37.75898347981274,-37.388391504529864,-38.32932908041403,-38.55771775683388,-38.688563514035195,-38.64538008859381,-38.620968451257795,-38.65455777803436,-39.62694548768923,-40.5645864023827,-40.96579236956313,-41.41490580746904,-40.829931418411434,-40.121830869000405,-40.45612165611237,-40.77849300345406,-41.01516164885834,-41.30982031067833,-41.000411815941334,-41.0490649016574,-41.951619326137006,-41.58452512184158,-40.92680322704837,-41.594677155371755,-41.37974653253332,-42.33075142838061,-42.972464688587934,-42.02823800034821,-41.652064157649875,-40.847169619984925,-40.91022109659389,-40.41520084394142,-40.00379661517218,-40.36901929136366,-39.954339946154505,-39.96126255905256,-39.501607183367014,-39.31235857727006,-39.70325772417709,-38.788181578274816,-38.433285913430154,-37.85563660925254,-38.39481073897332,-37.93109075119719,-37.879913916345686,-37.23254531249404,-36.58866218524054,-36.22597824269906,-36.4298826395534,-35.884425174444914,-35.435063431505114,-35.04419271321967,-35.31141532352194,-35.0707839182578,-34.35692499950528,-34.41581688867882,-34.049996476154774,-33.362200296949595,-34.05208038724959,-34.94702755147591,-34.764696079306304,-34.947851141914725,-34.76739498414099,-33.89774225978181,-33.65715045295656,-32.68299806723371,-33.36972575774416,-34.31992633827031,-33.94525128789246,-34.25526878796518,-34.50937220454216,-33.91752396756783,-33.96715221460909,-34.092219973914325,-34.91682060714811,-34.79857282200828,-35.48293831758201,-35.91551376320422,-34.99679591041058,-35.489846082404256,-35.88565754517913,-35.105536891613156,-34.80274307075888,-33.97428856603801,-33.99167267838493,-34.893769356422126,-35.37262707808986,-35.823167169932276,-36.34603733662516,-36.341498772613704,-35.836986645590514,-36.71005159569904,-36.57147160405293,-35.81216501072049,-34.98360326886177,-34.54993154713884,-34.46130276005715,-35.34355169907212,-36.30113671021536,-37.24851883528754,-37.45396115537733,-37.951818325556815,-38.03499967651442,-37.12063814885914,-36.22204705281183,-35.56381691806018,-36.21845088293776,-35.58970075799152,-35.42524198209867,-35.965368499513716,-35.360235531814396,-35.07943546958268,-34.44173383945599,-34.78114357450977,-35.63914501899853,-35.09390793880448,-35.88692498207092,-36.52700430387631,-35.954862288199365,-35.88918785797432,-36.19307690998539,-36.05453170882538,-36.96965712308884,-37.72225297288969,-36.88826667238027,-36.21437474666163,-35.47511102911085,-35.17590827587992,-35.51993951946497,-36.09293718682602,-36.910084888804704,-37.320365141145885,-37.923991015180945,-38.807201681658626,-37.983879771549255,-37.611186472699046,-37.101750682573766,-37.38801505602896,-36.58150349371135,-36.498337894212455,-37.248232756275684,-36.80767474928871,-37.5756993140094,-37.60380371659994,-37.867526168935,-37.19246106315404,-36.422412243671715,-35.495518813841045,-36.164395741187036,-36.716062164865434,-35.76566238608211,-35.935784904286265,-35.50791162438691,-35.99126697750762,-36.48633976187557,-36.86776557657868,-35.884459314867854,-35.07363235251978,-35.930353473871946,-35.34690552717075,-34.87632335815579,-34.75774332135916,-35.73828411940485,-34.78800729988143,-35.678188058547676,-36.12365852529183,-35.2054390842095,-34.891907615121454,-35.55309871165082,-36.54850069480017,-37.54455546615645,-37.46080110967159,-38.076046717353165,-37.59249347355217,-37.2038726513274,-37.55475173005834,-38.46303295344114,-38.022121439222246,-37.170849038288,-37.16614558361471,-36.31969045381993,-36.24344068579376,-35.29972173087299,-36.02200848283246,-37.01924069877714,-37.18845111411065,-37.11119195306674,-37.44667159114033,-38.00603980338201,-38.1325395302847,-38.39175742119551,-38.00286008650437,-37.51001030113548,-37.231226230971515,-37.64412756031379,-37.05745948944241,-37.080499328207225,-36.844651279971,-36.22161462670192,-35.28561625489965,-36.11595536302775,-36.7669061049819,-37.21040149591863,-36.981451239436865,-37.76907307980582,-38.36566899996251,-38.041689675766975,-37.45338220335543,-37.49327027751133,-37.5593964504078,-37.53927059471607,-38.37302218191326,-38.02146271569654,-38.07826647674665,-38.39199305372313,-37.948360639158636,-37.691651506815106,-37.99786295183003,-37.87151987897232,-37.728412547614425,-37.82252132287249,-36.925025186967105,-37.140210003592074,-36.6963380780071,-37.67661038227379,-37.52952862018719,-38.43537217890844,-39.195060558617115,-39.0223967297934,-39.419404276646674,-39.540547715034336,-40.311682092025876,-40.54334209067747,-41.32485787104815,-41.64287856314331,-42.2566425469704,-41.56991970259696,-42.46877209376544,-42.06264790892601,-42.42130492301658,-42.75696608517319,-41.99767910223454,-41.11379135912284,-40.94074443913996,-41.28201450640336,-41.37190623721108,-40.89835544209927,-40.41380907641724,-41.187668265309185,-41.712724005337805,-41.00271411659196,-40.3522603623569,-40.91685225162655,-41.13510597962886,-41.077955594751984,-41.27883218880743,-41.833043455611914,-42.38855504943058,-42.61449417471886,-42.775936904828995,-42.30540659325197,-41.56183198699728,-42.04300313675776,-41.918871795292944,-42.32460042089224,-41.85280729504302,-42.198341643903404,-41.72005882766098,-41.185471798758954,-40.22142804088071,-40.007622855715454,-39.50829880684614,-40.37674825033173,-40.2779123946093,-40.62029972765595,-40.42443579714745,-40.00354860164225,-39.18286561546847,-38.63313397066668,-39.480209747795016,-40.11071899160743,-39.79933669697493,-39.30301521299407,-39.4624610459432,-40.05260206386447,-40.77028559520841,-40.83784341951832,-41.56590273231268,-41.659623532090336,-41.09285345021635,-41.88411061000079,-41.70054782787338,-41.574552742764354,-40.98808691604063,-40.86300266208127,-41.79981980519369,-42.69176455307752,-42.40785267436877,-41.8550496767275,-41.90116702020168,-42.0028344350867,-41.966682145837694,-41.52475805347785,-40.65281439432874,-41.38150866003707,-42.24358382727951,-42.76847454160452,-43.32798834005371,-42.52742467774078,-43.34123974945396,-43.770097106229514,-44.087086600251496,-43.175090838223696,-43.3721465067938,-42.95471613574773,-43.50523428572342,-42.8459612573497,-42.79648653557524,-41.90142746968195,-41.635134187527,-42.584218536969274,-42.444027168210596,-42.42847017943859,-41.57168336259201,-40.76399532426149,-40.60224422626197,-40.74918597750366,-40.21960814809427,-40.33733627013862,-40.33593275165185,-40.06198958773166,-40.38545000273734,-39.49000347405672,-40.32760270452127,-39.47157276980579,-40.46745524695143,-39.97185160778463,-39.7565576992929,-40.64475604519248,-40.0238898745738,-40.989446056075394,-41.90819437941536,-42.40284157264978,-41.52462142240256,-40.95023059472442,-40.802991572301835,-41.591047316323966,-40.6513537010178,-39.983671615831554,-39.61706139380112,-40.18992342380807,-40.85945688560605,-41.703695370815694,-42.680677719879895,-43.435889032669365,-43.184291403740644,-42.41796731809154,-41.67999640759081,-41.627972887363285,-41.47863936331123,-41.14508955506608,-41.35962166916579,-42.03982756799087,-41.913488862104714,-42.115945865400136,-41.66396984271705,-41.156313829123974,-40.25375087512657,-41.07968186493963,-41.891356776002795,-42.388975279871374,-41.85063033271581,-42.38447222625837,-42.077879573218524,-41.353009201120585,-41.010445481166244,-41.6675804448314,-41.33377652987838,-40.959581206552684,-41.35333316307515,-41.18576976982877,-40.58642356283963,-40.5698694777675,-41.3671882445924,-40.421294008847326,-40.90577275166288,-41.842285516671836,-41.95965387998149,-42.752038144506514,-42.63818816142157,-42.02296627080068,-42.956090649589896,-42.301688210107386,-41.51220271131024,-40.551729104015976,-40.772955731954426,-40.29650984937325,-40.94508073385805,-41.40262139728293,-42.07733953092247,-42.229022472631186,-41.5564716369845,-40.93735837563872,-40.0600899765268,-40.15338740311563,-40.52744309604168,-40.789195124059916,-40.574525884352624,-39.93843812542036,-40.321132864337415,-40.725514670368284,-41.38074499228969,-41.750062917824835,-41.84604111639783,-41.84876554179937,-42.28274863259867,-41.795515596400946,-41.67834312049672,-41.12414277438074,-41.08613876346499,-40.683143456466496,-40.33945387788117,-39.922601740341634,-39.13782135164365,-39.36685394868255,-39.87795629212633,-39.37202151026577,-38.87963398359716,-38.19386749109253,-38.812597872689366,-39.637098003178835,-39.13740856712684,-39.352847506757826,-40.252464768476784,-39.331637498922646,-38.809610433876514,-38.33811353659257,-37.98279113508761,-38.25176823185757,-38.168663836084306,-37.318669041618705,-37.31196918291971,-37.587592692580074,-37.6002922616899,-37.84894470172003,-38.208044599276036,-38.39171666838229,-39.2916192910634,-40.09704550821334,-39.41867869440466,-38.551638005301356,-39.41294958721846,-38.58743138751015,-37.687710464932024,-37.127880265936255,-37.17279154621065,-36.285384530201554,-37.06498125754297,-36.59195535443723,-35.969944406766444,-36.32405854901299,-35.65997020993382,-35.55135778384283,-36.04903434030712,-35.75464928383008,-36.01088673295453,-35.13552247779444,-35.75116057926789,-36.294283845461905,-35.433305193670094,-34.716393504757434,-34.64122635452077,-34.82090934179723,-34.90815027616918,-35.170562053564936,-35.358770702499896,-35.59559896867722,-35.67351321876049,-36.592013434972614,-37.09937715809792,-38.04007358243689,-38.52898686518893,-37.733533054124564,-38.54603589233011,-39.4785289876163,-38.742631669621915,-38.471286030020565,-38.21356103103608,-38.168922116514295,-38.534499041270465,-38.96112919645384,-38.977316407486796,-39.274365031160414,-40.18963375873864,-40.68709941999987,-39.75261698802933,-39.557360210455954,-39.46842469694093,-39.49920494807884,-38.600449855905026,-39.31225816998631,-39.75772311538458,-39.28759007854387,-39.109761017840356,-38.71220079390332,-37.9302476067096,-38.47801506659016,-38.452029458712786,-38.07723523490131,-37.35375641984865,-38.33848872873932,-38.73508629389107,-38.16362899681553,-38.32485741330311,-37.95166231831536,-38.41379756340757,-38.81959866499528,-38.211158220656216,-37.304029307328165,-37.75419325148687,-37.5988276260905,-37.778359287884086,-36.958589690737426,-36.83073804015294,-37.51715030753985,-36.52086198981851,-36.31945400638506,-36.64554795389995,-37.26017436943948,-36.33830008842051,-37.02213134802878,-36.78328360663727,-36.95400301599875,-36.425807087216526,-35.72286022687331,-36.198896245565265,-36.973561230581254,-37.5876255184412,-36.79889151128009,-36.55150959547609,-35.60166964121163,-34.6144559183158,-33.67443437688053,-33.29424880864099,-33.41651682415977,-34.217154207639396,-33.989799436647445,-34.44977357517928,-34.968195378314704,-34.00450147781521,-33.8337061163038,-33.409258399158716,-33.40516938036308,-33.10864484868944,-32.2686189156957,-32.452501248102635,-32.84175109490752,-33.548784635961056,-34.49949866719544,-34.92343896953389,-34.29655955778435,-34.52507884148508,-34.52437376836315,-35.144191570580006,-35.090690299868584,-34.45246951840818,-35.009050918743014,-34.24078248720616,-33.405911293346435,-33.444746538065374,-33.62269699247554,-34.0570615795441,-33.87586707947776,-34.30122724128887,-35.26235826360062,-34.61655287537724,-34.46218366920948,-34.399147449061275,-35.22167498851195,-35.409470543731004,-35.64419618854299,-36.566269209608436,-36.55267896922305,-35.82811387209222,-35.1923417118378,-35.77740837074816,-36.203938114922494,-35.296005548443645,-35.04272553883493,-34.39491184055805,-33.516332612372935,-33.181872049346566,-33.140817034523934,-33.90538808936253,-33.97434438113123,-33.73082642164081,-33.65489688888192,-32.90990221127868,-32.07253074739128,-32.76338185975328,-32.88112490903586,-33.05753336288035,-32.14628920331597,-32.88984967628494,-33.200732256285846,-32.46343945199624,-32.428359580691904,-33.3265711334534,-32.39107916550711,-31.732664627488703,-31.009542489424348,-30.3890715027228,-30.2844608114101,-29.642340258229524,-28.706039528828114,-28.072827557567507,-28.77742413431406,-29.457907570526004,-29.704293419606984,-30.65984165854752,-31.48977621179074,-32.2609392888844,-31.6469783494249,-32.62133296020329,-32.152278730645776,-32.605180205311626,-32.404127560555935,-32.68320607487112,-32.18221971811727,-32.010087626520544,-31.494330073241144,-31.461201107595116,-30.523657229728997,-29.82959487196058,-30.060977998189628,-30.778903305530548,-31.705187674146146,-31.696107922121882,-31.348892436828464,-32.232745518907905,-32.58053678041324,-32.30444258078933,-31.44134174194187,-31.312044138088822,-31.206437586806715,-30.96639472572133,-31.125547484029084,-30.754142029210925,-29.89040764188394,-29.542928986251354,-29.178924947977066,-30.0625211969018,-30.68435787083581,-30.55335562163964,-31.166309820953757,-30.43645658250898,-31.145829940680414,-30.22014713427052,-29.4605781333521,-28.785824025981128,-27.995357285719365,-28.474530371837318,-28.392398484051228,-28.10416784649715,-28.37373245274648,-27.53031627042219,-26.55288269603625,-25.581344548612833,-25.83861062815413,-25.951108259148896,-25.25152725027874,-25.867238712497056,-26.50970295444131,-27.286974078975618,-26.45639447728172,-27.045937843155116,-26.05645117117092,-26.33671248005703,-26.064356837421656,-26.638917378149927,-26.35953173832968,-26.36744874715805,-26.03572358423844,-26.32287767715752,-26.157437211368233,-26.666705851443112,-26.358547568321228,-25.84236278012395,-25.792584331706166,-24.857534534763545,-24.974339568056166,-25.216772525571287,-25.004292452707887,-24.84696507593617,-24.56146101374179,-23.883706606458873,-24.696652883198112,-25.48924059793353,-25.71432727156207,-24.813136531505734,-24.162746573332697,-23.54002783400938,-22.747152606025338,-23.66115007456392,-24.304109924007207,-23.6779175568372,-23.48087776778266,-23.06357486685738,-23.104743476957083,-23.782949903514236,-23.288809534162283,-23.44580295216292,-24.279950723517686,-25.009921193588525,-24.236184856388718,-23.253007424995303,-23.083945317659527,-22.92678082920611,-23.071896229404956,-23.90585600491613,-23.41752678109333,-22.798196725547314,-21.96452443348244,-21.716050274670124,-22.429382384754717,-22.283784126397222,-22.756330812349916,-23.143192248418927,-22.556196027435362,-23.428582707885653,-22.58348000049591,-22.410721611697227,-21.734476942569017,-20.912502913270146,-21.305093668866903,-22.20546793518588,-21.802226532250643,-22.115335387643427,-21.972543572541326,-22.710195431951433,-22.30615202523768,-23.178661076352,-24.053376365918666,-23.52627306059003,-23.07679513003677,-23.454299442935735,-24.00766623020172,-24.097523981239647,-24.956297933589667,-25.858847395516932,-26.13805209333077,-26.686043430585414,-26.87910316279158,-27.64883205620572,-27.888624310027808,-27.43055695714429,-26.52027484634891,-26.342639662791044,-26.601333647966385,-25.788951522205025,-25.641608506906778,-26.076350598130375,-25.319554006215185,-25.128501765429974,-25.45867367926985,-26.102450410835445,-26.501679551787674,-27.37752276705578,-27.133898310363293,-28.036117284093052,-27.423086042050272,-28.102763357572258,-27.659503190778196,-27.049379479605705,-26.686902614776045,-26.52980171237141,-26.6158468243666,-25.801256895065308,-25.540256136562675,-25.469063301570714,-25.942797697149217,-25.642042918596417,-25.98266510106623,-25.359502867795527,-25.108917703852057,-25.549450734630227,-25.033490468747914,-25.202744504902512,-24.766623691655695,-25.65997588308528,-26.31742381164804,-26.87208422459662,-26.317198648583144,-27.064013046212494,-27.038750923238695,-26.94591739727184,-26.905001300387084,-26.94595197495073,-27.27688636770472,-27.14289961894974,-26.34785040281713,-26.662073721177876,-25.844563121907413,-26.20798629242927,-27.06029047491029,-27.84645210299641,-28.27229303587228,-28.267786415293813,-27.71701107546687,-27.22282416606322,-27.464546711184084,-26.914161147084087,-26.966541329864413,-26.420576127711684,-25.660720694810152,-24.83713104017079,-25.76148643065244,-25.07178979087621,-24.14703576825559,-24.303612616378814,-23.578826465643942,-24.361050725914538,-24.950619179289788,-24.602265743073076,-24.29996665380895,-23.75095213530585,-23.831240148749202,-23.99802464619279,-23.191135571338236,-23.036153115797788,-22.842206806410104,-22.24051341181621,-22.441044266801327,-22.377826678100973,-23.177705698180944,-22.749030109029263,-22.417699633631855,-21.952319516800344,-21.971890755929053,-21.887716225348413,-21.71939312852919,-21.183919893112034,-20.97919163433835,-21.978923306800425,-22.12109311018139,-21.712828730233014,-21.697567503433675,-21.519433044362813,-22.038540763314813,-22.764192233327776,-22.568382907658815,-21.690647973213345,-20.843677105382085,-21.504261913709342,-22.272568616550416,-21.91227788757533,-21.420671241823584,-20.555696330964565,-20.414585293270648,-20.046418389771134,-19.93584361579269,-19.76042610919103,-18.85352266486734,-18.30706222495064,-18.410963321104646,-17.714027076028287,-18.62935047224164,-18.47397615434602,-18.204545576591045,-17.368486390449107,-16.7588122934103,-16.146069265902042,-15.991873370949179,-16.87359789153561,-17.239985272753984,-17.717047032900155,-18.06962613388896,-18.940571129787713,-18.35342066595331,-18.789027747698128,-18.84033996006474,-18.908210324123502,-17.91890285536647,-18.522009637672454,-19.473130118567497,-19.382641231641173,-18.65752554498613,-19.318798824679106,-19.180536315776408,-20.12726649083197,-19.986215804703534,-20.565522716846317,-20.64743923023343,-20.918194848578423,-20.924666786100715,-21.818165814504027,-22.118339739739895,-21.40381262684241,-20.478588046506047,-19.6802481636405,-20.639735773205757,-20.34748071525246,-21.32834779052064,-20.85040230350569,-21.817369372583926,-22.19134793197736,-21.59457387123257,-22.364369998220354,-21.558464308269322,-22.32989579346031,-21.436426491942257,-21.75960416905582,-22.007718910928816,-22.549991295207292,-23.259575861506164,-22.985548572149128,-22.975654530338943,-23.26935131009668,-22.70104514155537,-22.995843632612377,-23.572655241470784,-24.395098151639104,-24.06343512190506,-24.603663941379637,-24.81038911268115,-25.773985613603145,-26.067895064130425,-25.999991247896105,-26.22054338781163,-25.281682272441685,-25.861484365537763,-25.88721712306142,-26.225599359720945,-25.38900237157941,-26.250987817533314,-25.96247471543029,-26.472651169635355,-27.227141504641622,-27.429215342737734,-26.718503398355097,-27.335002415347844,-27.849651037249714,-27.314410394523293,-26.65982665028423,-27.05101295001805,-26.53836970543489,-27.533851434011012,-26.551282789558172,-26.598781949374825,-26.878694646526128,-27.58035889081657,-28.105243989732116,-28.419129422865808,-27.446323884185404,-27.464724843855947,-27.236673805862665,-26.729667286388576,-27.267237765248865,-26.749340982642025,-27.39970514504239,-27.977114937268198,-27.596946282777935,-28.403465391602367,-28.31238917214796,-28.855955911800265,-28.18983779568225,-28.568020287435502,-29.11162244854495,-29.017480954062194,-28.655539739411324,-28.657967023085803,-28.13313441351056,-28.10600070701912,-27.47794510051608,-26.93489507259801,-26.55650448706001,-25.983243090100586,-26.156661719083786,-26.030827737413347,-25.671536860521883,-25.977458158042282,-25.626344295684248,-25.362214117776603,-25.703408655244857,-26.488537420053035,-27.206795392092317,-26.586925614159554,-25.884860002901405,-25.309147832915187,-25.40475849341601,-25.863527558743954,-25.88839697930962,-26.784982207231224,-27.117741785477847,-27.95102269249037,-28.826265667099506,-29.663829442113638,-30.518614157103002,-29.643462078645825,-30.24742430076003,-29.98610518500209,-30.650307193864137,-31.217563041951507,-30.91902823187411,-31.154699929058552,-30.389600252266973,-29.986844152212143,-29.639204015489668,-28.7097760126926,-28.105866600293666,-28.345321882981807,-27.96131038153544,-27.00350262457505,-26.34909944422543,-25.70759587129578,-24.772311372682452,-23.900957881473005,-23.19144503166899,-22.983454691711813,-23.56246746890247,-23.017693385481834,-22.305349400267005,-22.36704753898084,-21.81984721403569,-21.89262634702027,-22.285624132025987,-23.246648204978555,-23.15232034632936,-23.960806323215365,-23.525537990033627,-22.88880893960595,-22.472429492045194,-22.897382162045687,-23.384697117377073,-22.826724583748728,-23.05511020682752,-23.20215359982103,-23.05532424757257,-23.53522584401071,-24.04373187571764,-24.175977995153517,-23.68219892308116,-23.81915695918724,-24.721203123684973,-24.83094665920362,-25.2285187356174,-25.226455736905336,-25.158288362901658,-24.563754882197827,-24.998100995551795,-25.0281671108678,-24.241634104400873,-25.17871827352792,-25.9842355879955,-25.302702837157995,-25.487525907345116,-25.65622157556936,-26.29222018364817,-25.320484175812453,-24.862767919432372,-24.60186366783455,-23.964574947953224,-22.972944089677185,-23.164791171438992,-23.04085173783824,-23.85805801488459,-23.390193408355117,-22.473393923137337,-23.26250196667388,-23.295893610455096,-23.481414050795138,-23.9616833277978,-23.567094327881932,-24.08594714757055,-23.235425979364663,-23.977371281012893,-23.11812082119286,-22.45918221445754,-22.914324402809143,-22.52057153498754,-22.614003813359886,-22.642316847108305,-22.674425216391683,-22.41770916711539,-22.81742420513183,-21.97880425164476,-22.362918755039573,-23.097906730137765,-23.66787630598992,-22.78029127791524,-23.39631270058453,-22.734769320115447,-21.950963445939124,-21.0828773714602,-20.974943933542818,-20.65545046888292,-20.269320122431964,-21.09482915047556,-21.311815773602575,-22.204730769619346,-22.79030169453472,-21.964968946762383,-20.997625270392746,-20.74059285968542,-21.737185472156852,-21.454049198888242,-21.81638416927308,-21.62624100362882,-21.774961970280856,-21.484859040938318,-21.088361852802336,-21.325431474950165,-20.96363613056019,-20.60841182572767,-21.355109449476004,-20.98458740254864,-20.714962288271636,-20.309437301475555,-20.311342946253717,-19.674358977004886,-19.950591262895614,-20.446618089918047,-20.414328257087618,-19.884178264066577,-19.335701510775834,-19.501498978119344,-20.01185716316104,-21.005928590428084,-21.404135392978787,-21.783289100509137,-21.2303312192671,-20.35247001796961,-21.04364564223215,-21.74455911340192,-22.082399270962924,-22.43210578011349,-22.826587937772274,-22.668130301870406,-21.886150617152452,-21.69645447935909,-21.629535047337413,-22.456105060875416,-22.123538594227284,-21.588359135203063,-20.804023876786232,-21.32271809130907,-21.719445902854204,-21.197901966050267,-20.44295092858374,-20.170984915457666,-20.589685114100575,-20.107385511975735,-20.87673860276118,-21.245588609948754,-22.197739717550576,-21.824984334409237,-22.820515432860702,-22.16292567877099,-22.020482130814344,-22.405983256176114,-22.657879133708775,-23.02806925587356,-22.77789967833087,-23.391046358738095,-23.20963474456221,-22.535381998401135,-23.267638621851802,-23.269343978725374,-23.78184330277145,-24.777206883300096,-25.653987171128392,-26.36854935158044,-26.499135367106646,-26.118151795119047,-26.23919492121786,-26.595854393672198,-25.667558723129332,-26.527375620324165,-26.506929124705493,-27.297772786114365,-26.62355684954673,-27.582105836365372,-27.422215977683663,-27.79719950258732,-27.93948968173936,-28.685820046812296,-28.395451916847378,-28.995749039575458,-29.797656996175647,-30.070951485075057,-30.722665400244296,-30.948194068390876,-31.726349601056427,-31.4508659937419,-30.50521461851895,-31.235331042204052,-30.901374641805887,-30.36916195228696,-31.0705586518161,-31.60373919084668,-31.846695782616735,-32.40134441666305,-31.416943883057684,-30.687267003115267,-30.85333619872108,-30.36935574375093,-30.683131200261414,-31.612746570259333,-31.67163864802569,-32.36893363110721,-31.426966392435133,-32.36459797620773,-31.77730571432039,-32.39698846777901,-32.48057404579595,-32.14927811874077,-31.820269936230034,-32.16447627125308,-31.54811256285757,-32.420570934191346,-32.15800022566691,-31.464891253504902,-30.713136112317443,-31.19212898891419,-30.4568237895146,-30.798883128445596,-30.46434254385531,-30.079610637854785,-29.520273996982723,-30.241297364700586,-31.19587300857529,-31.7996354973875,-32.31842927308753,-32.19932403508574,-31.793038002680987,-31.872368537355214,-31.189736610278487,-32.16092530824244,-33.0916792252101,-33.46592509560287,-32.97636936651543,-32.79007307859138,-32.24979705736041,-31.549494710285217,-31.503984085284173,-31.06335295177996,-31.568867888767272,-31.59076497144997,-31.176282338798046,-31.382006475236267,-31.350200845394284,-31.507246137131006,-31.29082092596218,-31.92324751149863,-32.1715601561591,-32.39822179405019,-33.063206523656845,-33.34204531181604,-32.49556785821915,-32.69541632849723,-32.884179692715406,-33.61314182775095,-33.03055943362415,-33.04369510896504,-32.66242492618039,-33.52745461463928,-33.86316212499514,-34.73106142273173,-35.58866137964651,-34.742640637326986,-34.703936650417745,-34.95292798988521,-34.75340660940856,-34.5301208361052,-35.06804053392261,-34.13347356254235,-33.63173584314063,-32.86762790475041,-32.61132652591914,-33.52246469119564,-32.79440712137148,-33.587928138207644,-33.21498291287571,-32.24390621809289,-31.26324004167691,-31.62312984513119,-31.5006459672004,-31.02284746663645,-30.53333187336102,-30.625261425506324,-31.57759200874716,-31.603228257969022,-31.250831248238683,-31.915450354572386,-32.10049202479422,-31.219704465940595,-30.74446518905461,-31.567516622133553,-30.96946964971721,-30.725982065312564,-30.21468824055046,-31.147754735313356,-30.54653080459684,-30.938153826631606,-30.485484736971557,-31.099796677473933,-31.41257986985147,-31.23973710881546,-31.13701255340129,-31.227853747550398,-31.044727637898177,-30.782152373343706,-30.68957399064675,-31.0432664710097,-30.66605110745877,-29.695331546943635,-29.637927275151014,-30.569390571210533,-30.08981874352321,-29.780065414961427,-29.79142786329612,-29.151545696426183,-29.74624965339899,-30.58090671338141,-31.34596978733316,-31.256636440288275,-30.26985151786357,-30.714771665167063,-30.901681086979806,-31.683140117209405,-31.138917392585427,-31.352168817073107,-30.603815337177366,-30.59879980282858,-30.92096116906032,-31.399168877862394,-31.345743254758418,-32.27242608042434,-31.429599550087005,-31.235159519594163,-30.792197457980365,-29.855397576466203,-30.45087997848168,-29.736934021580964,-28.82770866435021,-28.746312123257667,-28.217309368308634,-28.705596583429724,-29.538522423710674,-30.021022121887654,-30.79550164239481,-30.61157584330067,-30.381058243103325,-30.44125552335754,-29.8022856884636,-30.581493844278157,-30.694238814059645,-31.263376832474023,-30.26478046644479,-30.05845721438527,-29.074062759056687,-29.528990897815675,-30.022893935907632,-29.66688278177753,-30.164816623553634,-30.941881090402603,-30.739854496903718,-31.312117798719555,-31.970749956555665,-31.769653514493257,-31.611106355674565,-31.819930899888277,-32.69907966442406,-32.18755660392344,-32.56231853412464,-33.55146409152076,-33.717650052160025,-33.371122119016945,-32.50481695961207,-31.79312056209892,-31.299608900677413,-31.444166847970337,-31.69262183038518,-32.249897580593824,-32.8188900006935,-32.37880242988467,-33.05501632159576,-32.49730239668861,-32.8223746214062,-33.33575879223645,-33.42152666160837,-32.58160132775083,-32.34368867427111,-33.297678894363344,-32.86626948276535,-31.932105387095362,-32.46406979719177,-32.49775104923174,-32.820061618927866,-33.2871560966596,-33.89207724342123,-33.34407145762816,-32.51250384375453,-32.065752250142395,-32.80621886625886,-33.58307303674519,-33.077628324273974,-32.92910525389016,-33.29619252495468,-32.515590814873576,-32.68081569997594,-33.09024504898116,-33.817457342054695,-34.44923780718818,-33.59129527118057,-33.09547634841874,-33.852607471402735,-33.67324975878,-32.67925182264298,-32.23881805641577,-33.1389175048098,-32.5970494733192,-31.858264319598675,-30.88108954159543,-30.77257407363504,-31.05511838104576,-30.43703734036535,-29.928700691089034,-30.734537506476045,-30.101810292806476,-30.326476130634546,-29.475077749229968,-30.173664030153304,-30.059283114038408,-30.718033247161657,-30.457753530703485,-31.26863797707483,-31.93541815597564,-31.866336254402995,-32.78893287759274,-32.94854431366548,-32.62202493660152,-32.388456381857395,-32.743848263286054,-32.97369803767651,-33.23178773839027,-33.20373754622415,-33.43359971372411,-34.321099921129644,-33.334262654650956,-33.58724754443392,-32.80814756965265,-32.087165826931596,-32.37389718648046,-31.75636864360422,-31.41935133608058,-30.88186809979379,-30.23651153035462,-30.114630424883217,-30.45544173102826,-29.917688369750977,-30.487437723204494,-29.874920406378806,-30.324547263327986,-30.962911002337933,-31.89495241176337,-31.4624184621498,-30.608571123331785,-31.13706901995465,-30.38433335861191,-30.550908139441162,-29.7162600196898,-30.08082785550505,-29.31143160769716,-29.029203437268734,-29.60681045614183,-30.093062628991902,-29.30958171421662,-29.24304576124996,-30.103511569090188,-29.913428383413702,-30.178530746605247,-29.635856764856726,-29.214377958793193,-28.937925403006375,-28.278505931142718,-28.465323116164654,-27.475848991889507,-27.564652676694095,-28.008743834216148,-27.42645683232695,-27.098389187827706,-27.977947984822094,-27.018303493969142,-27.263340779580176,-27.01038879295811,-27.702407172881067,-27.321243374142796,-26.323923013173044,-26.680772851221263,-27.338680029846728,-26.856886017136276,-26.358851038850844,-26.3080544504337,-26.09668261092156,-25.19564443267882,-25.839181751478463,-26.62896402925253,-27.591389814391732,-27.315779969561845,-27.38932130392641,-27.602975893765688,-28.314107827376574,-28.217182314023376,-29.099990039132535,-29.293724025133997,-29.112000852823257,-28.14565607905388,-27.197880945634097,-27.98595202108845,-27.9830728136003,-28.170988340862095,-29.161015247926116,-28.68661132827401,-28.175890422891825,-28.180517660919577,-28.44126748247072,-28.33273776806891,-28.08833348331973,-27.28112677624449,-26.913148059975356,-26.422282804735005,-27.07508375449106,-27.263549349736422,-27.9057770203799,-28.356129467952996,-29.186328139156103,-29.38617518451065,-28.479344616178423,-29.286812860518694,-30.105398217216134,-29.20890205958858,-29.807470594532788,-30.361257201991975,-30.57187822740525,-31.52502532163635,-30.886552517767996,-30.74061752576381,-31.464812943711877,-32.21106946654618,-31.37951820809394,-31.78094060625881,-31.17060149507597,-30.45657830964774,-30.709113518707454,-29.896905106958002,-29.842040576040745,-29.028200226370245,-29.359916234388947,-28.37352566421032,-28.612999750301242,-28.417648290283978,-29.22140326211229,-28.31086741667241,-28.195430785417557,-29.117387882899493,-30.06444806791842,-30.0977726043202,-30.78361177863553,-31.747175429947674,-32.550801161676645,-33.06897357990965,-33.11090590804815,-33.93339313566685,-33.45052188914269,-33.53085551317781,-33.350951686967164,-33.95563876442611,-33.610804826486856,-33.7752871196717,-33.75452874461189,-34.62373679410666,-34.28209654055536,-33.62450393429026,-32.78163805324584,-32.78868205100298,-33.30481162900105,-32.82123701274395,-33.09930301923305,-34.072498766705394,-34.404739442281425,-33.819195876363665,-34.747245291713625,-34.31194046000019,-33.45959875313565,-34.03163851657882,-35.001180773135275,-34.10230781091377,-33.93903310596943,-34.923140233848244,-34.463190434966236,-33.995805613230914,-34.28956705611199,-33.629545621108264,-33.75991853931919,-34.16453982144594,-34.57313583092764,-34.51536962296814,-34.61199505999684,-35.05534064490348,-35.67592408740893,-35.273458830080926,-35.969164294656366,-35.179466298315674,-35.675270579289645,-36.04068206762895,-35.62400643201545,-34.688095804769546,-34.86705724475905,-35.301177276298404,-35.755714379716665,-36.00645186891779,-36.58733264589682,-36.336016609333456,-36.480933010578156,-36.05194843467325,-36.87500957259908,-36.257091116160154,-36.474931800272316,-36.30977177945897,-35.77942172810435,-35.994658360723406,-36.9802896133624,-36.199791287072,-35.946754571050406,-35.06610590964556,-34.23237821785733,-35.04037557262927,-34.20276110759005,-33.482704071328044,-33.06043939990923,-32.93739965511486,-32.649332341272384,-31.983011608943343,-32.16712574614212,-31.88720635138452,-30.947574279271066,-30.761254750657827,-31.62319665728137,-31.279676967300475,-30.741494433954358,-30.44893966987729,-31.018667133990675,-31.70768592879176,-30.956126597244292,-31.94462821772322,-31.81313894642517,-31.1011423189193,-30.537289187777787,-29.819584807381034,-30.565493922214955,-30.157602445222437,-29.52605568151921,-29.844315466936678,-29.775928849820048,-30.196710871066898,-30.660366935655475,-30.1898743994534,-29.674783408641815,-28.924977518152446,-28.552390431519598,-28.531908680684865,-29.030130465514958,-29.696056061889976,-30.572477425448596,-30.662361952010542,-29.95178568083793,-30.546293642371893,-31.13558472180739,-31.946480174548924,-32.76855410262942,-32.39467545459047,-32.377517325337976,-32.261965193320066,-31.59859459893778,-31.06073231762275,-30.410873288754374,-30.9765611900948,-31.81873437296599,-31.466267111711204,-31.364329152740538,-31.11086258897558,-31.556010239757597,-31.945539101492614,-32.88661561533809,-32.64299527416006,-32.30538906902075,-32.28527732612565,-31.287108361255378,-31.666635289322585,-32.10802811989561,-32.206769594457,-33.20427793357521,-34.12941414769739,-35.03644553711638,-35.74750460172072,-36.08945033699274,-35.94187941495329,-36.09953031735495,-35.86543321190402,-35.25911577558145,-34.56641060160473,-35.47682406893,-35.18655739305541,-34.51435239100829,-35.49457739247009,-36.12554832082242,-36.45172851672396,-36.59657157212496,-36.14793733507395,-36.64596533123404,-36.13968568760902,-35.380770828109235,-36.26525555131957,-35.32934483187273,-35.572063490282744,-35.05702208913863,-34.834145247004926,-34.407392039429396,-35.057655815500766,-35.6909159575589,-35.921753249596804,-36.752240382600576,-36.53612785972655,-36.42332333372906,-37.0300292763859,-36.03733538975939,-35.226227388717234,-35.78456645552069,-34.98621454043314,-35.38137370441109,-34.51734644267708,-33.767945462372154,-33.60156207019463,-34.51296685775742,-33.64972925186157,-34.07918993989006,-34.34775328170508,-33.476222856435925,-32.81849877675995,-32.81693574832752,-33.19615374598652,-32.546518728137016,-33.175423328299075,-33.90717895003036,-33.69843195565045,-32.75636712368578,-33.63486320246011,-32.70197900943458,-32.902437466196716,-32.41042621713132,-32.79559722030535,-32.67381358798593,-32.08227769006044,-31.37909461557865,-30.614842559210956,-30.02287055319175,-29.668389171827585,-30.61413704045117,-29.966565429233015,-30.030027367174625,-29.239338755141944,-29.55658415472135,-30.475856320932508,-30.063610965386033,-29.893284247256815,-29.470584238879383,-30.113976741209626,-30.443555775564164,-29.991071595344692,-30.4432093501091,-30.979307691100985,-30.345475747715682,-29.78579271445051,-29.34142038412392,-29.70947994524613,-28.72593213710934,-29.473888418171555,-29.895133167505264,-30.591977468691766,-29.92312261229381,-29.172492414247245,-28.607551648747176,-29.327700732275844,-28.510381917003542,-29.449415563605726,-29.372996990568936,-29.386026670224965,-29.05786646064371,-28.917067219037563,-29.758136555552483,-30.41546999057755,-30.528128618374467,-31.068717112299055,-31.027223382145166,-31.848886534105986,-31.87269052863121,-31.875943134073168,-32.834586018230766,-33.753236474469304,-33.43844036757946,-33.76738922810182,-34.043090417049825,-33.102040636818856,-33.50563059095293,-34.3295136205852,-34.83952139643952,-34.9686930347234,-35.02178183477372,-35.383455102331936,-35.54310479294509,-35.352834946941584,-35.54445090889931,-35.083749923389405,-34.59024870628491,-34.45442726975307,-34.877139564137906,-35.45888426480815,-35.922682682052255,-36.224232610780746,-36.96034831320867,-37.000314130447805,-36.63392833806574,-36.462547447066754,-37.13549571717158,-36.87742118630558,-37.740581604186445,-36.80133686540648,-36.055166617035866,-35.812168531585485,-36.44064138783142,-36.587346808984876,-37.17327585956082,-36.88611513702199,-36.112999476026744,-36.03466664208099,-36.4042335273698,-37.39509926689789,-36.57725175982341,-36.02111748838797,-35.97480516927317,-35.00149385398254,-35.04554435284808,-34.46842989884317,-34.273059607017785,-35.11247842479497,-34.17738036159426,-34.90466542216018,-35.4183872085996,-35.87122081592679,-36.69039538921788,-37.6859977687709,-37.6152134174481,-38.46351501811296,-37.5167991197668,-37.17624452896416,-36.27201092103496,-35.59212952805683,-35.15275350632146,-34.470298467203975,-33.88983525475487,-33.339267598930746,-32.94147364748642,-32.91994827147573,-32.031171448063105,-32.296579306945205,-32.17836672998965,-31.832314029801637,-32.76394569966942,-32.4422482685186,-32.8063273075968,-32.517098479904234,-32.64028849406168,-32.434528186917305,-32.859061556402594,-33.23291294975206,-32.981295871548355,-32.0549881644547,-32.2371776481159,-33.15993277262896,-33.65659371158108,-34.477096788585186,-35.07490855548531,-34.495433256961405,-34.6076123714447,-33.695973376277834,-33.07753117289394,-32.356731795705855,-32.342678375542164,-31.9081017524004,-31.929440057836473,-32.71749640488997,-32.31050758250058,-32.51787122897804,-32.071412317920476,-33.00380106270313,-32.79126111231744,-33.21999798482284,-32.73402037890628,-32.251072637271136,-32.800113894976676,-33.55364137142897,-33.46672069747001,-33.000910193193704,-33.5173727972433,-33.670528281480074,-33.29663307778537,-32.8227730570361,-33.348364376462996,-32.59340808261186,-32.414145877584815,-32.43323590932414,-33.319228761829436,-32.79825625848025,-33.68366759782657,-34.12179097533226,-33.23713148571551,-33.33176567684859,-33.64879261422902,-34.11691809212789,-34.533799041993916,-34.20978759927675,-34.11021363455802,-33.34065976925194,-33.617618665099144,-33.76096852729097,-33.78085911925882,-33.511764861643314,-33.662323584314436,-34.553130354732275,-34.82926303241402,-34.865104579832405,-34.638082010671496,-33.84133206028491,-33.57297085272148,-32.66542503517121,-32.58139184350148,-32.34306976152584,-31.720237703528255,-31.878908451646566,-31.948645713739097,-32.8361128619872,-32.40208634221926,-31.46030863793567,-31.18390070553869,-30.50021643564105,-31.35475158179179,-30.913007308728993,-31.371034019626677,-31.621396077331156,-31.464380197692662,-31.58648522151634,-32.29454140923917,-31.515364731661975,-31.40033209696412,-30.683995716739446,-31.078158871736377,-30.884906915947795,-31.849463344551623,-31.34695487190038,-31.29833285929635,-31.239232927560806,-30.397864770609885,-30.572318977676332,-31.019165662117302,-30.760649567935616,-31.49153023120016,-31.291788395494223,-31.635272127576172,-31.113460869062692,-30.856051600538194,-31.271450886502862,-31.30696075456217,-30.67009859951213,-31.31285265693441,-31.926363630685955,-32.704447551164776,-32.75385540723801,-32.461662981659174,-33.11288722138852,-33.41841756226495,-32.81665908033028,-33.44288489874452,-33.56709440331906,-34.27296518534422,-34.91914509655908,-34.06048822728917,-34.7283317190595,-35.08959177322686,-35.54952509235591,-35.76517126802355,-35.806974201928824,-35.00718655297533,-34.39274240285158,-34.81129952985793,-34.52845935057849,-34.730849464423954,-35.37096096482128,-35.03895408986136,-35.66851366171613,-35.38960143504664,-35.2763649513945,-34.94195451727137,-35.03174583427608,-34.17736061476171,-33.85650155832991,-33.98516945261508,-33.58893069764599,-34.19467845978215,-35.004010148812085,-34.33310739276931,-34.583379415329546,-33.5888113877736,-33.24249011557549,-33.987118603661656,-32.992251007817686,-33.04044712567702,-33.029724838677794,-33.832230001688,-34.73874155804515,-34.189773962367326,-34.42669263435528,-33.55525743030012,-33.66184506705031,-33.40013244235888,-33.62861294206232,-33.81782820634544,-33.07398707559332,-33.14740173704922,-32.481815308798105,-32.17365883849561,-32.38632706971839,-32.064992336556315,-31.157796996179968,-31.92709710728377,-31.442183550447226,-31.899520901963115,-31.611632105428725,-31.196057442575693,-30.621036460623145,-31.41075875144452,-32.401341000106186,-31.711009406484663,-31.076564632821828,-30.859811666887254,-30.041744565125555,-30.808309809770435,-30.149020454846323,-30.40094616310671,-29.80271081859246,-29.537537631113082,-29.152413877192885,-29.56733069708571,-29.992401239927858,-30.10742639284581,-29.727484435774386,-29.59418203495443,-30.075229864101857,-30.093152260873467,-30.547822742257267,-31.40455821994692,-30.9153811968863,-31.16575569100678,-30.5538343754597,-30.174758860375732,-29.811761843506247,-28.980113714467734,-28.653789503499866,-27.785054799169302,-27.39594862377271,-27.579470256343484,-26.95504571404308,-27.02279500896111,-27.03040273208171,-26.206967853475362,-25.363591274246573,-24.924972818233073,-24.901087819598615,-25.201614977326244,-24.831544707994908,-25.259148033801466,-24.911684743128717,-25.51093195565045,-25.23080329131335,-24.232040766626596,-23.703011041972786,-23.791980574373156,-23.173977906815708,-23.200025462079793,-23.57047201320529,-22.681100997608155,-22.487235201522708,-23.2802250739187,-22.31356332451105,-21.67805528920144,-20.919900057837367,-21.187441028188914,-21.775809273589402,-20.970365379471332,-21.828919926658273,-22.378732691518962,-21.703719759359956,-22.261865512933582,-22.40169392246753,-23.35097648249939,-24.176250801887363,-23.899764631409198,-23.520752920303494,-22.58290665363893,-23.095967771485448,-23.277981563471258,-23.06137071410194,-22.76585988001898,-23.666770328301936,-23.874711958691478,-24.008668656926602,-24.92382510798052,-25.690348989795893,-25.00191541016102,-24.233908861409873,-24.18647321453318,-23.96978952921927,-23.144086233340204,-22.203202451579273,-22.882067527621984,-23.77412806591019,-24.457996814511716,-24.043143704067916,-24.058845352381468,-23.442526085767895,-24.318648668471724,-24.906656024977565,-24.982560800854117,-25.975958874914795,-25.19141240976751,-24.588565684854984,-24.992528083734214,-24.848713671788573,-25.82886928273365,-26.6570553900674,-27.441969364881516,-28.014821740798652,-27.955573957413435,-27.802549532148987,-27.795828757807612,-27.801580702885985,-26.972073680721223,-26.15004982240498,-25.285130558069795,-24.54177200095728,-25.473319611512125,-24.919084679801017,-24.395373462699354,-23.61505069490522,-23.039573043584824,-22.483761292882264,-21.741218618582934,-20.788400480989367,-21.0595738356933,-21.351721961516887,-21.961665097158402,-21.224149730987847,-21.76865928946063,-21.741855524480343,-21.758841207716614,-21.39926987979561,-21.80948972236365,-21.28501615067944,-20.363978253677487,-19.957808290142566,-19.31204401748255,-19.24188984883949,-20.028215570840985,-19.062971919309348,-18.509963642340153,-19.081688007805496,-18.655920810066164,-18.240783881396055,-17.388040379155427,-17.43642018828541,-17.814129577949643,-18.23869531136006,-18.23749295901507,-18.46066367859021,-18.637425250839442,-18.926577982958406,-18.4444350884296,-17.698527539148927,-18.287734526675195,-17.504459188319743,-17.02076840773225,-16.435386539436877,-17.027600146830082,-17.84448856394738,-18.0328377392143,-17.797384108882397,-16.95828506629914,-17.028433677274734,-17.902026656549424,-17.574546424206346,-17.10083588026464,-16.31714255316183,-17.120764408726245,-16.691970507614315,-16.45887700608,-16.43884406518191,-15.966284364461899,-16.449336325284094,-16.553300782106817,-16.7393527305685,-16.45426685595885,-15.473031329922378,-16.426331505179405,-15.978743402287364,-15.881748667452484,-15.899035401642323,-15.57182563887909,-16.297248211223632,-16.6430324614048,-16.888626590836793,-17.48309599654749,-18.0819604229182,-18.509181986097246,-19.217253694776446,-19.738011284265667,-19.356129843275994,-20.094626193400472,-20.180528024677187,-20.246153563261032,-20.580180337652564,-20.2201097747311,-20.09171827370301,-19.97205549199134,-19.32219382422045,-20.06605487409979,-19.281529050786048,-18.50560576003045,-17.534826370421797,-16.85350202769041,-16.58905116794631,-16.14837093418464,-15.67022916302085,-15.48565760301426,-15.514739662408829,-15.435910957865417,-15.180469928309321,-15.63188900705427,-15.22648687986657,-15.464958006050438,-14.476792633533478,-14.474426198285073,-14.901733994483948,-14.541171975433826,-14.138441275339574,-14.784715563058853,-15.672425487544388,-15.768941583111882,-16.734148752875626,-17.096566675696522,-16.75337939057499,-17.691837196704,-18.108344107400626,-17.529392180033028,-17.943035289179534,-18.822390750516206,-19.01047722902149,-18.575723772868514,-19.55147281754762,-18.705463684163988,-18.1206265501678,-17.971427707001567,-17.4617564198561,-17.440927036106586,-17.829679775983095,-18.64354574866593,-18.32184592448175,-17.56419412046671,-17.452061210758984,-16.588246969040483,-17.33717756625265,-18.31706009618938,-18.2396984975785,-18.423193669412285,-18.62104620691389,-18.57021622126922,-19.104008911177516,-18.688055376987904,-17.878607814200222,-17.8515669782646,-16.89206596603617,-16.454211269505322,-15.758775578811765,-16.38013058900833,-16.251302153337747,-16.039728411938995,-16.78183215484023,-16.184012725949287,-15.875902581494302,-14.922736716922373,-15.173860128503293,-15.178684243001044,-15.750461632851511,-15.617939773947,-14.916032070759684,-14.979804432019591,-15.267426652368158,-15.269659521523863,-15.214325245004147,-14.624127351678908,-14.922012407332659,-14.243637600447983,-14.48875388270244,-14.663996108807623,-13.819650149904191,-13.888322470709682,-13.19843318266794,-13.892606446519494,-14.536275818012655,-15.264642136637121,-15.832215966656804,-15.723755770828575,-14.980118365492672,-14.92297033034265,-15.815510344225913,-15.903359193820506,-16.041566110681742,-15.652809238992631,-15.589191536884755,-16.53436502441764,-15.645941064693034,-16.63499297760427,-16.86504216492176,-17.100644004996866,-16.793673758860677,-17.6075384831056,-18.517261425498873,-18.026365801226348,-18.556713758036494,-18.6108751706779,-19.374461529776454,-19.695283885579556,-19.69376158621162,-18.852476946543902,-18.738590120337903,-19.16371429665014,-18.726665672380477,-19.27227578498423,-20.13846927555278,-19.529936159495264,-19.747171947266906,-20.65039797965437,-19.973789009731263,-19.472229941748083,-20.154877456836402,-20.908099946100265,-21.896862980909646,-21.062132594641298,-21.755026791244745,-21.46766081545502,-21.30532176187262,-20.399062127340585,-20.769615752156824,-19.996483624447137,-19.232348119374365,-19.28865305474028,-19.747058524284512,-18.83928808104247,-18.60775835206732,-18.651863223407418,-19.043817956466228,-18.849787570536137,-19.06452136253938,-19.410840115044266,-19.035963216330856,-18.132177722174674,-17.281423988752067,-17.290135263465345,-18.24802579684183,-18.646929617971182,-18.85590639291331,-18.480989766307175,-18.05349834403023,-17.5319237485528,-16.94325973978266,-16.021680301520973,-16.343564379494637,-15.815118809230626,-16.505094276275486,-17.361148464493454,-16.637234966736287,-15.70345454197377,-15.162888329476118,-15.249062394723296,-14.55663239536807,-15.178744230885059,-14.865439760498703,-14.335480355657637,-14.062582741491497,-13.17288742819801,-14.07511883135885,-14.27374717919156,-13.91794142127037,-14.679450164083391,-14.089592495001853,-13.602149399463087,-14.189401607960463,-14.78728303220123,-15.637451619841158,-16.207329996861517,-17.162260899320245,-16.48497260827571,-15.636992406565696,-14.70354829216376,-14.91220406955108,-13.949425817467272,-13.884103517513722,-14.876740270294249,-14.265548022463918,-14.629243903327733,-14.562403490766883,-14.278287637513131,-14.58925551129505,-14.412039287388325,-14.439111409708858,-14.073409513104707,-13.87637846590951,-13.744501401204616,-14.722757461015135,-14.305220436304808,-15.22534819226712,-15.940432256553322,-15.17814644612372,-14.381195976864547,-13.973760928027332,-14.176969402935356,-13.836962503846735,-13.872865287121385,-14.530491960700601,-13.877146354410797,-13.382647938560694,-12.466641474049538,-12.550136768259108,-12.349462835583836,-12.658599369693547,-13.442752977833152,-13.377887951210141,-12.538735184352845,-12.189062543679029,-11.553407035768032,-12.372738652862608,-12.681594606023282,-12.468618251848966,-12.74418383743614,-12.450868571177125,-12.01827006507665,-12.365168953314424,-11.563450909219682,-10.77849377412349,-10.72105419402942,-9.807633242104203,-9.743631004355848,-9.516563814133406,-9.15884621348232,-8.714649816509336,-9.17855342105031,-9.875918842852116,-10.120822427794337,-10.234346891287714,-9.620504226069897,-10.333181214053184,-9.91822581551969,-10.01375220855698,-10.394300615880638,-10.973738625645638,-11.924110922496766,-11.676384909078479,-11.571111623663455,-11.536235980689526,-11.44552363594994,-10.921848954632878,-10.07434863364324,-9.928049453534186,-8.97975715296343,-8.749823368620127,-9.371473949868232,-8.746641503181309,-8.166976163163781,-8.048739165998995,-7.2808990348130465,-7.8472970821894705,-7.422370621468872,-7.4754948313347995,-6.836807671468705,-6.570704787038267,-6.063547444529831,-5.579731329809874,-5.167822571936995,-5.242567011155188,-4.573088567703962,-4.212986846920103,-4.165890274103731,-3.4489987497217953,-3.590782856568694,-4.001300239935517,-3.920245590619743,-4.238441850990057,-3.9078518114984035,-3.4209155589342117,-3.4754487182945013,-4.099605366121978,-3.40160181093961,-4.17583975661546,-5.0100359111092985,-4.504697233904153,-4.54666162468493,-4.935162199195474,-5.115679459646344,-4.802271721418947,-5.791952070780098,-5.709535102825612,-5.413907152600586,-4.611760939005762,-4.224498006980866,-4.654588640201837,-5.168437363579869,-5.159671691711992,-4.699930563103408,-4.475361540913582,-3.5533059034496546,-3.584407896269113,-3.2647109599784017,-4.037943336181343,-4.1999276941642165,-4.205440105870366,-4.827765631955117,-5.455481243319809,-5.154643404297531,-4.907959027215838,-5.210650144610554,-5.139197220094502,-4.176409186795354,-3.482910478487611,-3.0781205990351737,-2.331694452557713,-2.582927820738405,-2.148483735974878,-1.1577800679951906,-0.2529160915873945,-0.577198923099786,0.415232403203845,0.3574424455873668,-0.3629502095282078,0.19957069819793105,0.669452428817749,0.07071393262594938,-0.6783167696557939,-1.64842665521428,-1.5521580586209893,-1.562448389828205,-0.5745808449573815,0.09378694323822856,-0.3769529489800334,0.3101261374540627,0.8724423260428011,1.528363126795739,1.354071724228561,2.220873871818185,2.7812070776708424,2.7418298656120896,2.8751706536859274,2.7504001636989415,2.578034505713731,3.3750902842730284,4.329233480617404,4.057453460991383,4.364157389849424,4.804958257358521,4.473489321768284,3.6107438220642507,3.1162262596189976,3.417318359017372,2.8294301531277597,1.9473759178072214,1.092116363812238,0.6505168387666345,0.13206606963649392,0.5263307238928974,0.1505468380637467,0.430284742731601,-0.5644775796681643,-0.7575396769680083,-0.8282991070300341,-0.6232501771301031,-0.03205684805288911,0.4375551328994334,-0.05350270913913846,0.5407437239773571,-0.09150626510381699,0.03206333098933101,-0.5306388596072793,-0.04925672244280577,0.08421187987551093,0.657471708022058,0.5273846634663641,0.2217552913352847,1.1731953374110162,1.0303953713737428,1.0116684990935028,1.2932772696949542,1.4941187435761094,0.5911134765483439,1.2536992314271629,1.2647868287749588,1.7772495807148516,1.890848114155233,0.9577408581972122,0.24070519488304853,0.36313534062355757,0.7384176896885037,1.0424657468684018,1.2599187842570245,0.4456455111503601,0.5463788723573089,0.25878550531342626,0.7205128036439419,0.7660782937891781,-0.1521400692872703,-0.05920380726456642,-0.3556642006151378,-1.0657701441086829,-1.7526691472157836,-1.7503726733848453,-1.4240112053230405,-2.339783606119454,-2.6421992531977594,-2.0980773330666125,-1.4580785636790097,-2.00615060236305,-2.01993002044037,-1.4463770054280758,-0.6250378773547709,0.13472333131358027,0.14203602401539683,-0.7171584516763687,-1.1807746929116547,-0.7192500759847462,-1.573213736526668,-0.8320017890073359,-1.0294045601040125,-1.8245881963521242,-2.2278692116960883,-1.5147166959941387,-0.8368769795633852,-1.2161506423726678,-1.7932176515460014,-2.3184250514023006,-1.7153541282750666,-1.2602396323345602,-1.4567704764194787,-1.7290019285865128,-2.4473357456736267,-3.072153805755079,-2.4613460316322744,-3.158974140882492,-2.2844264525920153,-1.846523992717266,-2.4370572455227375,-3.283211985602975,-3.193302171304822,-3.573386176954955,-2.615346869919449,-3.6141327060759068,-3.500731314532459,-3.4622272620908916,-3.762585350777954,-4.351567711215466,-4.995494280010462,-5.493844034150243,-5.197648168541491,-5.631815358996391,-5.385611199773848,-5.1944286352954805,-5.2342662191949785,-4.301593460608274,-3.3449601577594876,-2.384710756596178,-2.449871172197163,-2.465786112472415,-2.979489164426923,-2.0505161387845874,-1.7827294152230024,-1.7784887948073447,-2.23788848426193,-2.7672420809976757,-3.4152562129311264,-3.783692837227136,-3.9589539822191,-4.62346837669611,-5.557443201541901,-5.489885190501809,-5.977558895479888,-5.790843047667295,-6.097188139334321,-5.713300668634474,-6.189153041224927,-5.717322024516761,-5.141869067214429,-6.121221520937979,-5.7498876340687275,-5.100330606568605,-5.677686611190438,-5.554984325543046,-5.249753629788756,-4.279187064617872,-4.875657347496599,-5.016189770773053,-5.4888567347079515,-4.850027172360569,-4.807694651186466,-4.16721140127629,-4.949878946412355,-4.367338536772877,-4.91753252921626,-4.009891239460558,-3.080321951303631,-2.3752938308753073,-3.015979570802301,-2.5342284473590553,-3.4539858885109425,-3.866097415331751,-3.3434927691705525,-2.843007799703628,-1.8452307917177677,-2.832351084332913,-3.1679384633898735,-2.787262375932187,-2.669356342870742,-2.4940183740109205,-2.451028408948332,-1.4566111750900745,-0.9151816628873348,-0.493515788577497,0.22685926826670766,-0.5946876732632518,-0.6605960703454912,-0.8994984328746796,-0.32090976648032665,-0.8541267160326242,-0.3309559253975749,-1.0923056951723993,-1.327533749397844,-0.43259169859811664,-0.899802353233099,-1.4813221544027328,-2.1467359247617424,-1.3932491219602525,-0.8912315643392503,-0.14968508994206786,-0.6255389819853008,-0.6980834621936083,-0.7365243919193745,-1.6356867905706167,-0.8755758283659816,-1.6075728898867965,-2.0836317343637347,-2.160631879232824,-2.422659670934081,-2.688633135519922,-2.4952839016914368,-1.5767913442105055,-1.8750151079148054,-2.2299297275021672,-2.517080051358789,-3.069654147606343,-2.437322340440005,-2.726809298619628,-2.015926219522953,-1.3203289047814906,-0.9604367078281939,-0.20643693767488003,-0.5141994571313262,-1.2516448241658509,-1.6514983852393925,-0.8360051247291267,-0.17409746069461107,-0.3497799513861537,-0.5232049045152962,-0.9818633804097772,-0.5191152114421129,-1.3461820264346898,-1.2782757091335952,-0.3174574407748878,-0.4721751790493727,-0.34776705829426646,-0.5642902459949255,-1.5041145514696836,-1.440660482738167,-1.6680963095277548,-1.0286663305014372,-0.5385202351026237,-0.28854459524154663,0.09246230451390147,-0.6269007567316294,-0.11609407560899854,-0.6039212704636157,-1.199092731345445,-0.47045289166271687,-0.6028168681077659,-1.3931266493164003,-0.9114405806176364,-1.3158878390677273,-1.9118502489291131,-1.1619277782738209,-1.492699433118105,-1.8648586925119162,-2.1861437940970063,-1.867374861612916,-1.7797842309810221,-1.4821690004318953,-1.8295020516961813,-2.1937154289335012,-2.2941134073771536,-1.4571822928264737,-1.8297197143547237,-1.664888451807201,-1.3254756624810398,-0.3641822850331664,0.20435079094022512,-0.5401338548399508,-1.162389375269413,-0.8448856379836798,-0.7764990222640336,-0.18338053254410625,0.10442974837496877,0.054652524180710316,0.4440244296565652,1.2941206800751388,0.6787755535915494,1.4402465438470244,1.5833329511806369,1.4632202871143818,1.9500036910176277,2.3662669989280403,1.9897178057581186,2.177564978133887,1.2457234598696232,1.7292959466576576,2.5899907420389354,2.5361729860305786,2.317392430268228,2.99649370694533,2.915832558646798,2.404440777376294,2.696060529910028,3.3461366933770478,3.76849496178329,3.6820978559553623,4.618911994155496,4.613493121694773,4.4945802092552185,4.132932151667774,3.2826615762896836,2.5914978184737265,2.3031035461463034,3.2007569763809443,3.605235079303384,2.9078593053855,2.8558244952000678,3.395045301876962,2.5168636795133352,3.4979066564701498,3.0103726885281503,2.144272076897323,2.310352719388902,1.792315433267504,2.545616952702403,2.286813064943999,1.3308231960982084,2.1490842485800385,2.2882286058738828,2.023037690669298,2.092018195427954,2.056344379670918,2.6919814739376307,2.3069202126935124,2.944923555944115,3.908620844129473,3.718792984262109,2.7817987757734954,2.789382634218782,1.8034447389654815,1.5842909887433052,1.6323625105433166,2.047013495583087,1.5240350239910185,0.5786477476358414,0.9948939187452197,1.8565483251586556,2.531234396621585,1.5750794066116214,2.370883036404848,3.1815336709842086,3.754824929870665,2.977129721082747,3.8044667709618807,2.9302819268777966,3.2729298574849963,3.8480850546620786,4.55078644072637,4.749992009717971,4.3544911234639585,3.620793692301959,3.098982912953943,3.994914026465267,3.884521101601422,4.767049484420568,4.238163898698986,3.50030649965629,3.9207728640176356,4.664865960832685,4.519969018176198,4.478938271291554,5.307263902388513,6.044683445710689,5.648628132417798,6.60574838379398,6.981717136222869,6.704964877571911,6.001346010714769,5.135573923122138,4.712581528816372,5.659222674090415,5.735300585627556,5.4278636844828725,6.106588570866734,6.575661073438823,7.2185179917141795,6.851327756885439,7.115824855398387,7.427332716528326,7.055125971790403,7.557541262358427,6.769705275539309,6.107427822891623,5.396840934641659,6.110076542478055,5.703724490944296,5.113067151512951,5.698603783734143,5.252273301593959,4.7753149177879095,5.526397457811981,6.224229713436216,6.674889869987965,6.050369976554066,5.2319445363245904,5.647717239800841,6.528459725435823,7.4975521098822355,6.67522851889953,6.336204146966338,6.48568786913529,6.613966228906065,6.062500512693077,6.751600727904588,6.20331122726202,6.237048978917301,5.530856437981129,5.134131561499089,6.128784648142755,6.775764720514417,6.012037185486406,6.70329866418615,5.892528078053147,6.625173181295395,5.895511209964752,5.559411298949271,6.447082492988557,5.753320698626339,5.908099265303463,6.530564798507839,5.535845873877406,5.027335200458765,5.712795712985098,4.993593903258443,4.392734640743583,4.204445278272033,4.937650063075125,5.295367016457021,5.71277396986261,6.412137974984944,6.969128970056772,6.833776080980897,6.194935515988618,5.663538960274309,5.2658834788016975,6.17215409129858,5.785858599934727,5.430883553344756,5.452103104908019,5.788753621745855,6.387442887760699,6.609412339050323,6.778675544075668,6.148946335539222,6.3866792768239975,6.87277373066172,6.597145508974791,7.545991021208465,6.936218184884638,7.33087347028777,7.806710993871093,8.170441593974829,8.451118835713714,9.389162341598421,9.98661320656538,9.54157421644777,9.058218509890139,9.085875420831144,9.134705638047308,8.812415218446404,8.178304097615182,8.71217787079513,9.067988039925694,9.409102007281035,8.663178958464414,9.516805408988148,8.831434606108814,7.942825690843165,8.509080941788852,8.654999698512256,7.834488002117723,7.974825889803469,7.066782076377422,6.352395842783153,5.668125492054969,6.305596434511244,6.2085973815992475,6.63105736207217,7.490007980726659,7.381529620848596,8.123581435997039,7.264674910809845,7.567720407620072,7.955408585257828,8.259782874491066,9.09552617603913,9.739379260223359,8.791452251840383,8.003233312163502,8.897890009451658,8.232546735089272,8.276015730574727,8.069980347529054,8.688626835122705,8.773703434038907,8.671565556433052,7.8339963420294225,8.191719470079988,8.154269758146256,8.253878492396325,8.81853194348514,9.016612482722849,8.214622215833515,8.352240687701851,8.385268675163388,9.3350052065216,8.9101503463462,9.022958222776651,8.836727974005044,8.015362044330686,8.6156064895913,8.893949119374156,9.042100391816348,8.436780425719917,8.766524160746485,8.092280372511595,7.559145544655621,7.74688506545499,7.276385674253106,6.716356842312962,7.073253789916635,6.9829757562838495,7.8704590438865125,7.2223337278701365,6.726727685891092,7.497456767596304,8.294314263854176,7.348169778008014,7.931388397235423,7.296454408206046,7.399389076046646,6.995633699931204,7.9118688884191215,8.606616644188762,8.721251549199224,8.896721399854869,8.58417742419988,7.751037775538862,7.135706644039601,6.729634579736739,6.854491926264018,5.919447440654039,5.9422378852032125,5.952823163475841,5.9245938723906875,6.285726597066969,6.564074913971126,6.5048451335169375,5.719862672034651,5.316588229965419,4.776808280497789,3.9863510043360293,3.788904017303139,3.215391999576241,2.380948442965746,1.779249760787934,2.526192835532129,3.4528706963174045,3.4892554110847414,3.641038271598518,2.8868899969384074,3.2679587891325355,4.053770993836224,3.107515319250524,2.743877300992608,3.4450564444996417,3.2181751718744636,3.1383102289400995,2.6166313821449876,2.36692054849118,2.17549997754395,2.2671766420826316,2.9117579963058233,3.8599298438057303,3.7840187503024936,4.185016033705324,3.5552256270311773,4.177468089852482,4.025451763533056,4.686526351142675,5.463430009782314,4.648253867868334,3.8606022777967155,3.098492581397295,2.2177172293886542,1.663654816802591,1.7371574728749692,1.1235801777802408,2.079093766398728,2.9181471108458936,2.812340617645532,3.3788934662006795,2.6871086270548403,1.7185800964944065,1.375631217379123,0.5571454991586506,-0.3110536145977676,-0.6857040068134665,0.15886747045442462,0.12960238987579942,1.0257742400281131,1.3416800312697887,1.7301750052720308,2.6978520485572517,3.312328659463674,2.936048451811075,3.587525620125234,4.392488345038146,4.325612476095557,4.409241541754454,3.857041845563799,4.6679247403517365,3.6901550800539553,4.592414707411081,4.777418413665146,4.920319693163037,5.459115432575345,6.198866095859557,6.165161839220673,6.372672562021762,6.5772977019660175,7.019832455553114,6.626459599006921,6.6290102154016495,5.634011537767947,6.462721366900951,5.811842500697821,5.58964932942763,5.710301024839282,4.957882268354297,4.157561634667218,4.516403784044087,4.28581227408722,3.343034328892827,4.101477289106697,3.6687545706517994,3.1165191419422626,3.351958123035729,3.741330625023693,3.420268398709595,4.078400708269328,4.707104518543929,4.628756877500564,4.689830300863832,4.100176783744246,4.90966063272208,4.654117240570486,4.115857911296189,3.941336295567453,3.3569314228370786,3.552074975334108,4.431733262259513,4.513960977550596,4.088983982335776,3.619935812894255,2.8097361167892814,3.637496723793447,3.29077294934541,3.4148962129838765,2.963383979164064,2.016599742230028,1.3921892484650016,1.3405897840857506,2.2786461394280195,1.5454578390344977,2.307569031137973,1.9769294220022857,2.0355448643676937,2.753193836659193,2.7289206283167005,2.3715302711352706,2.0988010852597654,3.0721637750975788,3.06625954573974,2.8098302646540105,2.762835126835853,2.8722000243142247,3.639582126867026,3.729106514248997,3.8748106691055,3.66430503455922,2.9356469991616905,2.1542622251436114,1.3700957824476063,1.6817824146710336,0.7993470733053982,0.020292650908231735,0.5387945254333317,-0.07788270013406873,-0.9357983418740332,-0.46948396414518356,-0.77025505900383,-1.3656898317858577,-0.5108106271363795,-1.0237659667618573,-1.366575425490737,-2.0825228826142848,-2.5427251029759645,-2.2100348910316825,-2.243297431152314,-1.568834745325148,-1.3840046226978302,-1.030279400292784,-0.8272462184540927,-0.8103946927003562,-1.2519276919774711,-1.9722258462570608,-2.3891815580427647,-2.010347996838391,-2.9984940895810723,-3.0520200221799314,-2.996263367123902,-3.6630541970953345,-4.20017665438354,-3.612522869836539,-3.1489191222935915,-3.667221632786095,-2.815261316485703,-2.5895379781723022,-1.9554377696476877,-1.6729198331013322,-0.8505778587423265,-1.3740788898430765,-2.1423073252663016,-1.8180828243494034,-2.6971645317971706,-2.9014870449900627,-3.002747235354036,-2.6936541995964944,-2.831693146843463,-3.1602320871315897,-3.3312610229477286,-2.5826041935943067,-3.1270630806684494,-3.206538125872612,-3.3582500852644444,-2.4826128077693284,-1.7796289674006402,-1.812622039578855,-1.6819526464678347,-0.7594701498746872,-0.6333454763516784,-0.08166751312091947,-0.9851118004880846,-0.10493954923003912,0.5720195057801902,1.246840103995055,0.89458929002285,1.1993767023086548,2.056886989157647,2.4509439831599593,1.8176531493663788,2.108608446549624,1.6111773867160082,2.10026665776968,1.4331031828187406,0.8857842730358243,0.7526046372950077,0.9349467623978853,1.694965005852282,1.7093006474897265,2.2934277919121087,1.9923454467207193,2.837408156134188,2.545222358778119,1.5996533972211182,1.7215897678397596,2.059252707287669,2.6340666441246867,3.456313126720488,3.9830405255779624,4.750578110571951,4.116029415279627,3.7660444802604616,4.577981116715819,5.548784891143441,6.162908068392426,6.457382444757968,6.672251752112061,7.317559263668954,6.899129273369908,7.596357424277812,7.9341854942031205,6.948937963694334,7.542149867396802,8.304412732832134,9.146441226825118,8.880894247442484,8.005435646045953,8.596109331119806,7.952336554881185,8.333203480578959,7.456172590143979,8.297478181309998,7.633163388818502,7.039426157716662,7.183742184191942,7.838767473585904,7.899773744400591,6.993777184281498,7.697405723854899,8.367764670401812,8.937325107399374,8.678131481166929,7.993030893150717,8.37807391770184,8.532836282625794,8.141835605259985,8.628238772042096,9.021853326354176,8.662599807139486,8.220617490354925,8.630347526166588,8.10306423297152,8.29482530336827,8.802203217055649,8.96878200955689,9.043030466884375,8.603014499414712,7.760293980129063,7.498029818292707,7.098285397980362,7.436458665411919,7.349006514064968,7.78826619265601,7.120295427273959,6.368262805510312,5.747740716673434,5.624666014686227,5.247707438655198,6.126853725407273,7.112072346266359,7.142873325850815,8.125592985190451,7.1318319006823,8.00635013403371,8.434689900372177,7.908494447357953,7.555024913977832,8.038901546038687,8.486943967174739,7.76085306564346,8.678995680995286,9.610367645509541,9.953884771559387,9.19421693822369,8.546677176374942,8.27766088815406,8.324222459457815,7.5069176042452455,6.781825171317905,7.337740912102163,7.386717975139618,7.261063520796597,7.8390519097447395,8.826711889356375,8.724845956545323,7.7273249523714185,8.576845515985042,9.474762133788317,8.624612617772073,8.351274714805186,8.765799887944013,8.903547601774335,8.930116787552834,8.09528145659715,8.875760418362916,9.079942266922444,9.38784286659211,8.735348178073764,8.052724508568645,8.08871099120006,8.587453541811556,9.342192665208131,8.983845820650458,9.652491115033627,9.568508677184582,10.026192500256002,10.548650527372956,10.1290528527461,9.652725366409868,9.242152361664921,9.035685100592673,8.576721518766135,9.02850141748786,10.015369311440736,10.183646047487855,10.891838209703565,10.03890269761905,10.350121894385666,9.430274217855185,8.545603543054312,9.47535966988653,9.542671639472246,8.89907593280077,8.809402213431895,8.786116695962846,8.891772652044892,8.832830723375082,8.817810811568052,8.018602105323225,7.154538591392338,6.46398340491578,6.919201085809618,6.722385950386524,6.461325609125197,6.844848827924579,6.633080237079412,7.016366987023503,7.277881474699825,6.881809954997152,7.268171510659158,7.78491713758558,8.375509591773152,7.550535106100142,7.231108975596726,7.804889878258109,8.690049666445702,8.551431959029287,8.881681387778372,8.049694824032485,7.621168726123869,7.571475791744888,7.48226360604167,7.396037802565843,7.817870547063649,7.646267826203257,7.688626399729401,7.168993370607495,7.795961945317686,8.163353599607944,8.985726383514702,9.676905885338783,10.414840792305768,9.698687738738954,8.756511885672808,8.439990479499102,7.946106899995357,7.480624599847943,7.425506096798927,6.507010854780674,7.356138754636049,7.343146409839392,7.013753354083747,6.853277939371765,6.595605343114585,5.679282904602587,4.963104338385165,5.563612355384976,5.1017168229445815,4.942149018403143,4.340813015121967,4.232105334755033,3.5505892923101783,3.661215823609382,2.7075883229263127,1.9814694584347308,2.329484841786325,2.779477894306183,2.9407553640194237,3.745472905691713,4.088199549354613,3.917840469162911,4.272225921507925,4.331838122103363,4.281894803978503,5.14718406740576,5.539027799386531,6.204869471490383,6.446266045793891,6.385284728370607,5.463725904002786,6.066872588824481,5.553718358743936,6.160020379349589,6.456931688357145,6.953548714984208,5.985278392210603,6.845121069345623,6.035859250929207,5.689380245748907,5.914572414010763,5.501139440573752,6.021253171842545,6.3192340969108045,6.680382999591529,5.9067645515315235,6.462646649219096,6.7466756934300065,6.355607596691698,7.05348906526342,6.912231281399727,7.3392822900787,6.559714933857322,5.980700816959143,5.447359682992101,5.549189234152436,4.677596803288907,4.797058212570846,5.143326639663428,5.989861045964062,6.488381372299045,7.112814386375248,8.066739731002599,8.462745443917811,9.180785359349102,8.411005302798003,9.228803852573037,9.1979441633448,8.528626536019146,7.7316269422881305,7.316569555550814,7.03478398732841,6.981572646647692,7.55722754728049,7.604618853423744,7.873563459608704,7.634592717513442,7.9725472764112055,7.486090454272926,8.221313585527241,9.0928082219325,9.76994541240856,10.131983580999076,9.174040006008,8.449338835198432,7.648723830934614,6.83057207101956,7.291944571770728,7.434566424693912,8.2472741920501,7.608990330249071,6.917831118218601,7.524260838981718,7.812836865428835,8.790249397512525,9.301895980723202,10.257573610637337,9.40612858068198,8.973587684798986,9.46009081788361,10.1756501509808,10.471632223110646,11.156572569161654,10.759881351608783,10.861486514564604,10.589295440819114,10.098114117514342,10.865050225984305,11.283859692048281,12.081540371757,12.31701021362096,11.606534856837243,10.859800373204052,10.161797775421292,11.054933254607022,11.761784095782787,11.747960757929832,12.187821356579661,11.862475721165538,11.231403350830078,10.89124278910458,11.769017212092876,11.738154964521527,12.071409794036299,12.623471128754318,13.494809127878398,14.197576333303005,13.406049814075232,12.684931565541774,12.463941526133567,12.109236570540816,12.31121630826965,12.871062994003296,13.571596393827349,14.317725837696344,14.165530593134463,14.074739742092788,14.968901162501425,14.314002932514995,14.19299334473908,13.305869521107525,13.983464060351253,13.17321824701503,12.37736644782126,13.027355111204088,12.486189336050302,12.007113916333765,11.24047049600631,10.286568717565387,11.24973553000018,12.227675924543291,12.009100417606533,11.813707272522151,11.977615999989212,11.02270551584661,11.184412165079266,12.010140400379896,11.156606832984835,10.226720701437443,10.107183178886771,10.789894497953355,11.099323934875429,10.327678562607616,9.647331564221531,9.481863079126924,10.033154601696879,9.787328306119889,10.048436602577567,10.753710736054927,11.193886252585799,10.767451918683946,10.539010867942125,11.407876926939934,10.72559553431347,11.631563500966877,11.826710239984095,11.036102909129113,11.269309143535793,11.359003313817084,11.01780747063458,10.52522794669494,9.640992259141058,9.87976597994566,9.888594791758806,9.266585453879088,8.999283721204847,9.08612443273887,8.6714620674029,8.59114995598793,8.326640942133963,8.702068525832146,8.231654845643789,8.857006292324513,8.294745155144483,8.273463956080377,7.940486927051097,8.843323583714664,9.37621152214706,9.962626481428742,10.357110409531742,10.071480742655694,9.966728518716991,10.675614309962839,10.30927458871156,9.728641672059894,9.559333901386708,8.608106757514179,9.60434114234522,9.503154473379254,8.84173374529928,8.150859413202852,8.243512450251728,9.04526913492009,9.31876116571948,10.154981412459165,10.041362187825143,9.113876822870225,10.105701607186347,10.358267831616104,11.249066016171128,10.374281579628587,9.616372242569923,9.51198275666684,9.063611721619964,8.896928848698735,9.817746288143098,9.497937689069659,9.57074216241017,10.385894427075982,9.78083169925958,10.622564781457186,11.212656067218632,10.275082427076995,10.345463313162327,9.979655345901847,10.29251999175176,10.201034395489842,10.510833562817425,10.263385142199695,11.118873314000666,10.817862689495087,10.078965235501528,9.278092002961785,10.179893869441003,9.277097449172288,10.047215138562024,9.10001550335437,8.646986255887896,9.140566681046039,8.469277846161276,7.486224641557783,8.030137469060719,8.629386600572616,9.561916359234601,10.388161615934223,11.26329586142674,10.728463230654597,11.091373221483082,10.179274125955999,10.035951395519078,9.647890008985996,10.635576706379652,11.244440974202007,11.422604208812118,11.50046657724306,10.708136146422476,11.6374228768982,12.175581416580826,13.082431477028877,14.017620796337724,14.04020887427032,14.791397957596928,15.484008115250617,15.917478926945478,14.949009419418871,15.781129556708038,16.597512830980122,17.17152512166649,16.987213818356395,16.28343910444528,15.97201560344547,16.145216767210513,16.89587874757126,16.709765599109232,17.49894729303196,17.27876797504723,17.5774934287183,17.4712365148589,18.27630480658263,17.697682190686464,17.157751594204456,18.033005285076797,17.651873217895627,16.68227129103616,16.935458494350314,15.966437689960003,16.352541592437774,17.13861271319911,16.872719302307814,17.433594638481736,18.363509509712458,18.51781485322863,18.499089112970978,18.301130758132786,18.70461003249511,19.697322046384215,20.50966982776299,20.549564787186682,19.64460865361616,19.786773785483092,19.747799012809992,20.677259151358157,20.427211355417967,19.669137191027403,18.756296211387962,18.88890319969505,18.866584689356387,19.3665220560506,19.772130561992526,20.588254347909242,19.764239342417568,20.41481387242675,20.697129734326154,20.127255850937217,19.167134621646255,18.247601034585387,18.840904627926648,18.175226863007993,17.931961976457387,18.23156280303374,18.306797413155437,18.092212919145823,18.711162156425416,18.60652438690886,18.19431753642857,17.584792193956673,17.33982536010444,17.92535641323775,17.24894861644134,17.74677680945024,17.74091060226783,18.665921412874013,18.618673441000283,19.111723160371184,18.955981983803213,19.32131888018921,18.876370888203382,18.07618364226073,17.839443280827254,18.833790194708854,19.555107302498072,19.033536279108375,18.18823508359492,18.07552960049361,18.146500657778233,17.600788950920105,16.674092851113528,15.97904822556302,16.886098831426352,17.63349368283525,16.751985155045986,15.766560654621571,15.421369525138289,14.830066254362464,14.85689791943878,15.238361603580415,14.272304208949208,14.046629501041025,13.96554078022018,13.105337865650654,12.957722484599799,12.297083834651858,11.620820637326688,11.699221534188837,10.761215290054679,10.592485836707056,10.693759503308684,11.15866905869916,10.37488468689844,11.299886258784682,11.864203789271414,12.466346383560449,12.369074129033834,12.12013056408614,12.219698511064053,12.050860139541328,12.217320139985532,12.116112091578543,11.331948571372777,12.120581157039851,12.023183383978903,12.902126069180667,12.272287806961685,11.511719517875463,11.072261567693204,10.179796231444925,10.949915274512023,11.822811216115952,11.272758741863072,11.72554220398888,11.445781477261335,11.173683177214116,11.515441918745637,11.663264890667051,11.797856305260211,11.535993846133351,12.438006857410073,12.04132721805945,11.848698284476995,10.92576560890302,10.051582022104412,10.504143320955336,11.041928209364414,11.069526214618236,10.878164500929415,10.174264935776591,10.377234326675534,9.60705314623192,9.503081468399614,9.865387480240315,9.17467014491558,9.799060923978686,9.475679135881364,9.140252512414008,9.963987745344639,9.981906923931092,10.750518150627613,9.86261286959052,9.55862057954073,9.598983388859779,10.464511471800506,9.71005956782028,9.081221448257565,9.39320132182911,9.864814358763397,9.695203172508627,9.736570750828832,9.801658730953932,10.141445798799396,10.029058487620205,9.90646608453244,9.879905803594738,9.987525415141135,9.487922545988113,9.91333312029019,10.014700808096677,10.76115834666416,10.739487726707011,11.122842038981616,12.116873486433178,12.953220151830465,12.215818195603788,11.667614925187081,12.40653551928699,11.973799124825746,11.359671120531857,10.869837258942425,10.35173290129751,9.51779396738857,8.72356759943068,7.95176303666085,7.970538319088519,7.668481016997248,6.87235013442114,6.480089976917952,5.844209585804492,5.863571138586849,6.163116271607578,6.379846398718655,6.367880501784384,6.060590505134314,6.996261801104993,7.199552021920681,6.4155870750546455,6.295455392450094,5.532872475683689,5.908021691255271,6.484499940183014,7.397376728709787,8.378064285498112,7.867581424769014,7.548298475798219,7.592230907641351,7.085142181720585,6.978216076269746,6.557570955250412,6.307551713660359,5.642173180356622,5.266381886322051,6.194243358913809,6.407466776203364,7.3941498645581305,7.250186695717275,7.219799454789609,8.216928557958454,8.85008857678622,8.460722897667438,9.325758938677609,9.289314752910286,10.163115246221423,9.704043393954635,10.39273907057941,11.111937675625086,11.623902952298522,11.345920324791223,11.226371107622981,11.184845593757927,11.237505870871246,11.500305644702166,12.041939448565245,11.699246746953577,12.198300004005432,13.05036551412195,13.42207179730758,14.298505925573409,14.750627821777016,15.00890909601003,15.653441737871617,15.719468033872545,15.398753789253533,15.602840853389353,15.254592827055603,15.163713552523404,15.339616794139147,15.758616024628282,16.63326113158837,16.29178077587858,15.342540875542909,15.991401456762105,16.30504774907604,15.408249905798584,15.931367872282863,15.406885000411421,16.190675784368068,16.505010426975787,15.86919380305335,15.056770264636725,15.15217704884708,14.564739203546196,15.439480077009648,14.58481952920556,14.35225412575528,14.356136680115014,13.399519736412913,13.802061344962567,14.358463204465806,13.504355425946414,12.697653742972761,12.910483750514686,12.371755194850266,12.383012534119189,12.152153383474797,12.700889174826443,13.218353395815939,12.673612433485687,12.022082447540015,11.440662601497024,11.751086152158678,11.335751252714545,12.070658326614648,12.864763081073761,12.032757592853159,11.525052224751562,11.886351816356182,12.68149779504165,12.381387087516487,11.749287189450115,11.00929498905316,10.284619770012796,9.69170224107802,9.756471658591181,9.214805134572089,9.99250073498115,9.221133549697697,9.503399586305022,9.773124841973186,10.215371343307197,9.797094851732254,9.71343039860949,9.657460383605212,9.67901735380292,9.133262841962278,8.4448769162409,9.43351058056578,8.855279666837305,8.658908593002707,9.566145974211395,8.940332815982401,9.267461019102484,9.205869898200035,8.7796158217825,8.685295522678643,8.109398052562028,7.195518799126148,6.710760415066034,6.091492502018809,5.231686170678586,5.782449394930154,5.000486974604428,4.027961093001068,3.528987728524953,3.8915002825669944,3.903229573741555,4.739134884439409,4.85588168585673,4.174882035236806,4.9724818780086935,4.559886786155403,4.7506557437591255,4.914778337813914,4.3660924499854445,4.145804604049772,4.001144237816334,3.974863971117884,4.521587352734059,3.9786071395501494,3.5669306283816695,3.7400033525191247,3.76676151715219,3.2666552332229912,3.7553174975328147,4.742684254888445,4.308337048161775,3.964376626070589,3.5151732149533927,3.814659623429179,3.6224733823910356,2.850046517793089,2.9093121448531747,2.5219451980665326,2.6992712169885635,2.8740891199558973,1.975555406883359,1.985394281335175,2.916007683146745,3.791842635255307,3.488317723851651,3.738699020817876,3.1381614706479013,4.086007715202868,4.808264648541808,4.545940002426505,5.387198775075376,5.351018740329891,5.254811832681298,5.774682673625648,5.45467467373237,4.675684048328549,4.260638234671205,4.081562899518758,4.084919297136366,5.044600456021726,5.402887753676623,4.442488524597138,4.621632894966751,4.447501836810261,3.6139346873387694,3.3988799820654094,3.4796455432660878,3.8044822039082646,3.9752134601585567,2.9836706654168665,3.7807426708750427,3.2546967123635113,3.4541525654494762,2.919954523909837,3.195141257252544,3.274138905107975,3.4694816824048758,4.156520532909781,3.2476628134027123,3.4201398957520723,3.5897112637758255,3.1884598140604794,3.7337168748490512,4.1724681365303695,4.805496018379927,4.440386122092605,3.480118638370186,2.99497840879485,3.823567008599639,3.178069330751896,3.271716217044741,3.9406935973092914,4.859960648231208,4.646422858349979,5.288755014073104,4.598163690883666,5.469901243690401,5.523119099903852,6.082380306441337,5.260969832539558,5.740392948500812,4.9989125044085085,4.168809166178107,3.7519758702255785,3.2695629145018756,3.4813951831310987,4.0578587162308395,4.763739096000791,4.75541986618191,4.82012987555936,4.198995374608785,3.544001932721585,3.767366328742355,4.074845626950264,4.674471151549369,5.252808214630932,5.360227633733302,5.177613811567426,5.317622259259224,4.90981564251706,4.744309696368873,5.149601391050965,4.490635993890464,3.9406743636354804,4.032096595969051,3.80587709043175,3.617697562556714,3.9846742157824337,3.248033495619893,3.7752578533254564,4.442967322189361,3.9069772115908563,3.8356207124888897,3.0320275761187077,3.850152723491192,4.005815176293254,3.3159787398763,2.891722383443266,2.1558984494768083,2.2950057554990053,1.5349646997638047,0.7549997474998236,1.4578185696154833,0.8231548108160496,0.22430636314675212,0.4005975783802569,0.7394179874099791,1.6955421171151102,1.3756461855955422,0.7193949385546148,1.3577956794761121,0.6471531665883958,1.3495043069124222,1.0967910862527788,1.7310055284760892,2.2615832309238613,3.256696291733533,3.5925194923765957,3.574094005394727,4.109805525280535,3.412617926951498,2.6292646094225347,3.2854639240540564,4.165412735193968,4.364322429057211,4.775512822903693,4.785357549786568,4.306815363932401,3.426300736144185,2.532321661710739,2.075839185155928,1.3993919105269015,1.6290715308859944,0.9739441741257906,1.321372276172042,0.9578597424551845,1.4178046761080623,1.3403510455973446,1.131677307188511,0.22727077407762408,-0.5962927797809243,0.32248381711542606,0.2722700806334615,-0.19674098351970315,-0.7279284498654306,-1.4907475342042744,-2.2898489688523114,-2.6259858645498753,-2.9395414576865733,-2.4111891137436032,-2.3711854182183743,-2.8420770107768476,-3.4841218604706228,-4.088960237335414,-4.716154740657657,-4.894635326229036,-4.76583358226344,-5.573220707010478,-5.166346169542521,-4.235132007859647,-4.128904496785253,-3.7135691377334297,-4.570508014410734,-4.372780172154307,-4.717146095819771,-5.123852297663689,-5.8042587344534695,-5.510264938231558,-6.236671096645296,-5.949103898834437,-6.38055827235803,-5.5039248913526535,-5.6739829001016915,-4.816043243743479,-5.141101149842143,-5.417784551158547,-4.956886986270547,-5.601793775334954,-4.98311965027824,-5.8227933794260025,-4.99339179508388,-4.446964052505791,-5.169997782446444,-4.914680751040578,-5.828553699422628,-5.51942541077733,-5.923097706865519,-5.499660121742636,-5.314420591574162,-5.759692489169538,-5.5487443609163165,-5.112576828803867,-5.938798986840993,-5.411818178836256,-6.107210496906191,-6.496924026403576,-6.399053359869868,-5.3993938425555825,-6.32232123427093,-6.3971131388098,-7.09731824696064,-6.656346546020359,-6.013509368058294,-6.246938350144774,-5.883483696728945,-6.356530089396983,-5.760216062422842,-6.6851552980951965,-6.7622259529307485,-7.027377863414586,-7.516192494891584,-7.772786239162087,-8.35967166395858,-8.14182653510943,-9.135855035390705,-10.001373981125653,-9.721527403686196,-9.096670436672866,-9.071051354520023,-9.408857563510537,-8.779403267428279,-9.446267729159445,-8.961861135903746,-9.878000553697348,-10.820165180135518,-11.800417147111148,-11.987807872705162,-11.378526641521603,-10.979361650533974,-10.07631529448554,-9.671485726255924,-9.360283774789423,-9.883731914684176,-10.287666066084057,-9.690582441166043,-10.329574584495276,-9.643725922331214,-10.10686150053516,-10.361977268010378,-10.150931829120964,-10.340057704597712,-10.530070844572037,-10.769634924363345,-11.34429254103452,-11.016764659900218,-11.67101184045896,-12.350413388106972,-12.626892528962344,-12.333122599869967,-11.44133714074269,-12.140205062460154,-11.965077324770391,-11.484429698437452,-10.689797229599208,-9.907755785621703,-10.09699506405741,-10.925413186196238,-10.26028513070196,-10.647356912028044,-11.199683835729957,-11.199966946151108,-10.282374128699303,-10.910751930903643,-11.187318773940206,-11.752110327593982,-12.480538667645305,-11.540907297749072,-12.141558317001909,-13.10379659337923,-13.077655634842813,-13.055267276242375,-13.31523763248697,-13.296535888221115,-13.16050834581256,-13.133588240016252,-13.953584384638816,-13.956167438533157,-13.261330291163176,-13.099849492311478,-13.260751463472843,-13.935848185792565,-14.233022263273597,-15.188680335413665,-15.524931453168392,-14.903954443521798,-14.366202236618847,-14.042399203404784,-13.602348275016993,-13.341513043269515,-14.33834627410397,-14.133048019837588,-13.693674648646265,-13.505447593517601,-12.508475163951516,-11.808167187031358,-12.545711840037256,-13.332377742510289,-13.270679285284132,-13.08428674703464,-12.29833602393046,-11.713468123227358,-11.923490486573428,-12.553393528331071,-11.843085169792175,-12.705715517047793,-12.070960351265967,-11.783355151303113,-11.333660240285099,-11.213129950221628,-10.99082678090781,-10.333067286293954,-10.196837801486254,-11.013388466555625,-10.20055097527802,-9.525428419932723,-8.909742061048746,-8.246658285148442,-7.637577762361616,-8.32392752636224,-8.032929976005107,-8.742410288192332,-9.15157077414915,-9.48934399522841,-9.340764794498682,-9.031443767715245,-8.338767278939486,-8.65967204933986,-9.652082094457,-9.229118722025305,-8.546209076885134,-9.002725976984948,-9.681000527460128,-9.782167044468224,-9.404402959626168,-9.304937132168561,-8.339439884759486,-8.155111933592707,-8.5738256261684,-7.628529796376824,-6.95112603250891,-7.5972305801697075,-7.88564643682912,-7.421562381088734,-6.603924558963627,-5.814446643926203,-5.50991148641333,-5.206429677084088,-4.392822803929448,-4.263956532813609,-4.2050748420879245,-4.460503438487649,-4.69080388918519,-4.54859060421586,-4.64182601403445,-4.963319172151387,-4.622378946747631,-3.7893291795626283,-4.499039449263364,-4.180392961483449,-3.552402085624635,-3.7378999697975814,-4.296483420301229,-4.106738728936762,-3.4419427877292037,-3.0938424565829337,-3.8920984477736056,-3.9346093609929085,-3.700733811594546,-3.3155323565006256,-2.782855289056897,-3.4762804787606,-2.7264758381061256,-3.144634387921542,-3.217648242600262,-2.389156298711896,-2.443531843367964,-2.2097112336196005,-2.717094998806715,-2.785366198979318,-3.240814508870244,-4.003673243802041,-3.2284980779513717,-2.4266878813505173,-1.610198549926281,-1.1262101787142456,-0.2241460825316608,-0.4321045307442546,-1.0283102602697909,-0.6879077069461346,-0.2851178655400872,-0.657489228527993,-1.303260708693415,-1.6403991323895752,-1.6689490796998143,-2.3517891503870487,-3.10532504087314,-3.8566406653262675,-4.614155740477145,-4.1043145367875695,-4.75148548418656,-4.520184419117868,-3.8407640606164932,-3.5455872085876763,-4.449275074992329,-3.9623654312454164,-3.549754224717617,-4.280739978887141,-3.382429643999785,-3.730211461428553,-3.7141238506883383,-4.708862538449466,-4.23111456213519,-4.551860833540559,-4.629611566662788,-4.064667915459722,-3.2390831150114536,-3.095861996524036,-3.71945884777233,-4.282900334335864,-5.197057526558638,-5.3063435312360525,-5.180813285522163,-4.639161203522235,-4.743650188203901,-4.041086243465543,-4.1865742495283484,-3.4161987942643464,-2.561145746614784,-2.991330871358514,-2.6384402504190803,-2.931372248567641,-3.5935860364697874,-3.303030302748084,-3.179028449114412,-2.984052566345781,-2.407257561106235,-3.134795435704291,-3.7153339302167296,-3.575005104765296,-3.897728494834155,-2.9154782039113343,-3.788737087510526,-3.439501383341849,-4.27458969829604,-4.4957867837511,-4.067864958196878,-4.924926724750549,-4.631006843410432,-3.878435445483774,-3.946964031085372,-4.597226570826024,-3.6185587658546865,-3.5695577720180154,-3.467033077031374,-2.6405426622368395,-2.2881125705316663,-2.081579442601651,-1.811769469641149,-2.6316833226010203,-2.6877867369912565,-2.4675827505998313,-1.4780443329364061,-2.430012685712427,-2.810494370292872,-3.3815650320611894,-4.09941098280251,-4.6129770879633725,-5.6100704139098525,-4.927165907807648,-5.041617445182055,-4.923455610871315,-4.41520691011101,-5.252750761341304,-5.642634536139667,-6.131744697224349,-6.315218574833125,-5.630216195713729,-6.309930383693427,-7.118088329676539,-8.04725091997534,-8.874548030085862,-8.377563385292888,-8.291259298566729,-8.510231710970402,-8.480139177758247,-8.953375551849604,-8.563896365929395,-9.54945967439562,-9.893151535652578,-10.193007888738066,-11.068816441576928,-11.199392351787537,-11.624621664639562,-12.429180098231882,-11.703446192666888,-11.644126978702843,-12.266787168569863,-13.235954218078405,-13.300267002079636,-13.308047263883054,-13.804531979374588,-13.200892431661487,-13.091850872617215,-13.53699230775237,-12.808446110691875,-12.76087548257783,-12.715878315735608,-13.542051353957504,-13.919713510666043,-12.925669504795223,-12.503585377708077,-11.92673222720623,-11.752211875282228,-10.876738884486258,-11.59918552171439,-10.851080691907555,-10.309276647865772,-11.031086113769561,-10.19301820313558,-9.537514524068683,-10.38637342164293,-9.39350259769708,-10.15462244860828,-10.197420602664351,-10.715101257432252,-10.38820044323802,-11.014423062093556,-11.965086111333221,-11.133341694250703,-10.913134111091495,-11.828224544879049,-12.708979267627,-12.838548438157886,-12.593439366202801,-12.034301477484405,-12.8005496757105,-12.847584492526948,-12.526522219646722,-12.691807900555432,-12.718938315287232,-11.740169485565275,-11.673862137831748,-11.557160862255841,-11.164167801849544,-10.407690606545657,-10.654910690151155,-10.462249575182796,-10.273669959511608,-10.337135660462081,-10.008564006537199,-9.035727018956095,-9.458142517600209,-10.062366927508265,-10.770911054685712,-11.0085010221228,-10.342280846554786,-10.908222241792828,-10.543858433607966,-9.801959096454084,-9.968987229745835,-10.116142752114683,-9.275504490826279,-10.075486911460757,-10.773916698526591,-11.271830895449966,-12.172036790288985,-13.000237528700382,-12.684486630372703,-11.700807229615748,-11.741318560671061,-11.477914106100798,-12.33198030013591,-12.79776358883828,-13.552284771576524,-12.648158797994256,-13.020087719429284,-12.448427312076092,-13.237990805413574,-13.3791145645082,-12.525151670910418,-12.208924581296742,-11.251745013520122,-10.738183765206486,-11.03853080701083,-11.108066025190055,-10.35848331451416,-11.073390777688473,-11.81368541624397,-12.706324193626642,-13.378923792857677,-14.165781055111438,-14.742256873752922,-14.54839747864753,-15.26181200845167,-15.332901642657816,-15.420538262464106,-15.594777616206557,-15.026105504017323,-14.680918701458722,-14.32894476968795,-14.764769993256778,-14.723853231873363,-14.450742844957858,-15.169475061353296,-14.459013081155717,-15.03093009069562,-15.12533344142139,-16.105442967265844,-15.198605777230114,-14.60015119658783,-15.179152994882315,-15.711012267041951,-16.45336455013603,-16.43568395730108,-16.895214478950948,-17.508004067465663,-16.961489023640752,-16.00871052360162,-15.515722982119769,-16.447873664088547,-17.44581430964172,-17.448597556445748,-16.57898185076192,-15.914046484045684,-16.679743627086282,-15.980534807313234,-15.621236755978316,-14.755081568844616,-15.480392316821963,-15.945890012662858,-15.973332553170621,-16.018406823277473,-16.016234836541116,-16.343599722720683,-16.847439212258905,-17.488234354183078,-17.983984593767673,-18.446479656733572,-19.35652557015419,-18.50801355857402,-17.79875402804464,-17.356120706535876,-17.79277501720935,-17.071471819654107,-17.833481239154935,-16.92415662901476,-16.897979424335063,-17.064013060647994,-17.96275027282536,-18.268931361380965,-17.384286031592637,-17.509954455774277,-16.522095004096627,-16.785034643486142,-17.54687770269811,-17.01152790384367,-17.12036619707942,-17.706102503929287,-18.65163506893441,-19.342160670552403,-18.601076199207455,-19.590154516510665,-19.98978760652244,-20.78400381607935,-21.277903722133487,-20.910045579541475,-20.35007237456739,-19.650710448157042,-19.523093471303582,-20.486171044409275,-21.049539420288056,-20.187890007626265,-19.729375813156366,-19.647906366735697,-18.85286516044289,-18.246419340837747,-17.44366977456957,-16.602853501215577,-16.987158839125186,-17.046006499789655,-16.188623420428485,-15.746688498649746,-15.056618900038302,-14.566924802958965,-14.77888043411076,-14.129641320556402,-13.436010268516839,-14.383441293146461,-14.805536782369018,-14.011667239945382,-13.047721615526825,-13.086463833227754,-13.997389520984143,-14.919822308700532,-15.163059177808464,-15.991318301297724,-16.367704321164638,-15.607136886101216,-15.538537855260074,-14.625586729031056,-14.699787377845496,-14.751870556268841,-15.43326094886288,-16.113505378365517,-16.457908660173416,-15.577104614116251,-15.987893909681588,-15.158110500779003,-14.94495737971738,-14.289242602419108,-14.709635901730508,-14.348650466185063,-14.119340237695724,-14.249114247504622,-15.112284764647484,-15.567414550576359,-14.769335971679538,-14.484096521977335,-14.012339073233306,-13.044133313931525,-14.023029419127852,-13.816489161457866,-13.347092179115862,-13.051038667559624,-13.130791022442281,-12.811594765167683,-12.439558241982013,-11.50883514387533,-11.558245320338756,-12.374667382799089,-12.708873343188316,-13.019326990004629,-12.535378866828978,-13.12736022239551,-13.399745575152338,-14.073863252997398,-14.419218746945262,-13.460611370857805,-13.144934796728194,-13.335390670690686,-13.23814773093909,-14.11681263614446,-14.97102267947048,-15.692821473814547,-16.01665605092421,-15.982272204943001,-16.218861726578325,-16.89886957826093,-17.013059590477496,-16.86785369925201,-16.96791682112962,-17.520490137394518,-17.056249433662742,-16.701396994292736,-15.919986704364419,-16.03252239897847,-15.451702699996531,-16.345783316064626,-17.131138664204627,-16.722054734826088,-17.71455797087401,-17.55686903418973,-17.12133910972625,-17.9475162550807,-17.995801479555666,-17.00363666098565,-16.3245370676741,-15.539108399301767,-16.115109560079873,-16.942306673619896,-17.524776955135167,-17.142735665664077,-17.61609674245119,-17.200539210345596,-18.081475081387907,-18.38007449777797,-18.567933491896838,-18.409471607301384,-17.60477972123772,-17.952618951443583,-18.398586007300764,-18.67592121101916,-18.301100987475365,-19.229562694672495,-18.72954568080604,-18.541029965970665,-18.797566471155733,-19.04406298790127,-18.523726910818368,-18.786543517373502,-18.636471218429506,-19.423092322424054,-20.298586323391646,-20.620971938595176,-19.81849187007174,-20.80052122147754,-21.43432850856334,-21.42264469107613,-21.23801748594269,-20.553611965384334,-20.511032940354198,-20.555472876876593,-20.04738865373656,-20.87325665447861,-20.948342540301383,-21.376133768819273,-20.494701515417546,-20.038509644102305,-20.486093048006296,-19.91235477803275,-20.765319785568863,-21.76249292725697,-21.77703380258754,-21.63388260267675,-21.96497480943799,-22.79448057245463,-22.250447317026556,-22.382074889726937,-22.71271021803841,-23.20396612305194,-22.974859985057265,-23.884389026556164,-23.821662321686745,-24.181034518405795,-24.414256300311536,-25.376140896696597,-25.778781341854483,-26.082055706065148,-25.587879944592714,-25.197049350477755,-24.733969538472593,-24.356454284396023,-24.06304035941139,-24.841108552645892,-25.38580167805776,-24.6812086799182,-25.326633827760816,-24.586370550096035,-25.41324863769114,-25.724141244310886,-24.95729466341436,-24.29260563850403,-24.91584217082709,-24.69459890248254,-25.342660825699568,-25.70544537110254,-25.95903763594106,-25.806938379537314,-26.300739533267915,-26.455848694313318,-26.9733562823385,-26.98846724210307,-27.351415254641324,-27.461827729362994,-26.861757228616625,-27.282380487769842,-27.149929662700742,-27.77662984933704,-28.49684501858428,-29.406042220070958,-30.371800490655005,-29.89637519652024,-28.958489829208702,-28.707133744377643,-29.22647247929126,-29.24346624314785,-30.113527661189437,-29.4089273288846,-30.27312267711386,-30.509410713799298,-31.092063857242465,-32.060918437317014,-32.130871234461665,-31.258261641021818,-30.9454135322012,-31.47200856357813,-30.943361061625183,-31.413614169694483,-30.454877282492816,-30.366034135222435,-30.911156604997814,-31.28556917142123,-32.03463430982083,-32.809998956974596,-33.75645974744111,-33.79876694269478,-34.53873478528112,-35.15412729186937,-34.65479071578011,-34.2307671806775,-33.75246815383434,-33.39734977344051,-33.20760464016348,-33.95301602082327,-33.72325960081071,-33.534313837997615,-32.609399958048016,-31.83404841925949,-31.1076546208933,-30.58863920206204,-30.764729318674654,-31.019129561260343,-31.31521407701075,-30.946252902038395,-30.23961692675948,-29.86587963718921,-29.24454358452931,-30.04810031829402,-30.949485167860985,-29.968716936651617,-30.217562633100897,-31.16564873000607,-32.05126692028716,-32.19146845955402,-32.647471143398434,-32.13764353469014,-31.74777903780341,-32.07129776570946,-32.23852763371542,-31.486528392415494,-30.650584107264876,-30.78224132535979,-30.77707294560969,-31.03523277398199,-30.189961045980453,-30.715477794408798,-30.65814511384815,-30.147804838605225,-31.024392737075686,-30.181521660182625,-29.9450914086774,-30.303414109162986,-30.481240446679294,-29.497507707681507,-29.742499289102852,-29.659119945485145,-30.060514654498547,-29.18371603731066,-28.758678203914315,-28.552629745099694,-28.541131246834993,-28.965135934296995,-29.366625744383782,-29.224494446069002,-29.807623200584203,-28.977477996610105,-29.185344276949763,-29.615242986474186,-29.124929442070425,-29.09580941963941,-28.611737903673202,-27.954333379864693,-28.04692616686225,-28.817760843783617,-29.1090493532829,-29.76846228307113,-29.742937698494643,-29.11114995041862,-29.629586771130562,-30.31057911645621,-30.60070272628218,-31.311206728685647,-31.193668366409838,-31.320466807112098,-32.24912581779063,-32.05949040921405,-32.445138016249985,-32.24765034252778,-32.47537555452436,-33.022378880530596,-32.53196583967656,-32.942738433368504,-32.97686933167279,-33.621423268690705,-34.03159667737782,-34.21928007947281,-35.03476143209264,-35.74563226848841,-35.603719210252166,-35.29702447494492,-35.27576466370374,-34.38145526126027,-33.88082809653133,-34.021294828504324,-34.905775795690715,-35.033461678773165,-34.5933108413592,-34.011278088670224,-33.35035886289552,-33.040837386623025,-33.51272558234632,-33.57734589930624,-34.45372220315039,-34.97355413576588,-35.23942340584472,-35.59977600397542,-35.758436422329396,-36.664021083619446,-36.31698746280745,-36.95182632096112,-37.540688765235245,-37.272027355618775,-37.47470621205866,-37.01763809658587,-36.59917053999379,-36.50276839081198,-36.9411819181405,-35.96847107261419,-35.10005103610456,-35.293070818297565,-35.036310059949756,-34.87773869978264,-34.62854549102485,-35.54409725544974,-35.799747246317565,-35.317536630667746,-35.35903967358172,-35.490686676464975,-35.360683805309236,-35.81604212662205,-36.07183515233919,-36.36998041626066,-36.61520618619397,-35.76821873290464,-35.04819215880707,-35.50043468363583,-35.006904498208314,-35.16959189064801,-35.4190753349103,-35.23023136658594,-35.99659260502085,-36.489555889274925,-36.45290594082326,-35.856089839711785,-36.50280429376289,-35.52070601051673,-34.878115221858025,-34.910258767195046,-33.99018426379189,-33.91836680844426,-34.72997231595218,-34.371537518687546,-33.64954271260649,-34.15174463996664,-34.324232725892216,-35.060106880031526,-34.51484427694231,-33.96979568200186,-33.4790352541022,-32.75166091416031,-31.88377651805058,-31.48608844773844,-31.532519853673875,-32.31859792722389,-31.634111584629864,-31.104171629063785,-30.34088790649548,-30.251081011723727,-31.034472146071494,-30.677864268422127,-31.059715153183788,-30.652901109773666,-29.70513666421175,-30.572843797970563,-29.942462899256498,-30.736674004234374,-31.240044014528394,-31.840200774837285,-32.790812011342496,-33.57479823147878,-34.49158731009811,-33.88569917809218,-34.73555488139391,-35.126637026667595,-35.18353944225237,-35.76745035685599,-34.8447869210504,-34.79298753105104,-34.90526043297723,-34.254311428871006,-33.82536745863035,-33.657236170955,-34.407357055693865,-34.134047279600054,-34.81306319590658,-35.56811930704862,-36.4123715586029,-35.979279023595154,-35.56641227658838,-34.934967091772705,-34.81627032114193,-35.59009442292154,-36.57878507813439,-35.89348816219717,-35.99387260712683,-36.70681244833395,-36.8939393456094,-37.072962638922036,-36.15133659914136,-36.8995855236426,-36.77308992575854,-36.48382764542475,-35.88641979871318,-35.980565899051726,-36.097162041813135,-35.45276145171374,-34.78685833513737,-34.38530620932579,-34.306554281152785,-33.3922395654954,-33.515267077833414,-32.97408114373684,-33.30914175789803,-33.85515934089199,-33.9647595374845,-33.81660676980391,-33.96576385945082,-33.74699829984456,-32.89002427877858,-32.04040954262018,-31.451139554847032,-31.426446643657982,-32.031693818978965,-31.04384777089581,-31.857773834839463,-32.3834447725676,-32.06730685103685,-33.06188842561096,-32.775219368282706,-32.89949325006455,-33.83232385898009,-32.87968024984002,-33.79539663856849,-33.07310069957748,-32.746189523953944,-33.59897872712463,-33.72350403247401,-34.10049434192479,-34.34582477575168,-33.553288887720555,-33.22115103248507,-32.423262380529195,-33.03314448101446,-32.05358431721106,-31.4541856222786,-31.99754117242992,-31.495752109680325,-31.400436533614993,-31.210812509525567,-31.654219356365502,-30.89339374145493,-30.944707175716758,-30.378997609950602,-30.28902333136648,-29.957696922123432,-29.295327130705118,-29.47226616786793,-29.04530145600438,-29.42074890807271,-29.7135949623771,-29.496890841517597,-29.677815756294876,-28.93815197236836,-29.103942204732448,-28.419892717152834,-28.705613411962986,-29.665808625519276,-28.87017991580069,-29.512607450596988,-30.0717994379811,-30.70723199704662,-30.41201625112444,-31.035488561727107,-30.677589369937778,-31.21844224166125,-31.33127112267539,-31.16695224493742,-30.80888521950692,-30.16695840563625,-29.42549347039312,-30.163398504257202,-29.469963066279888,-30.27886787056923,-30.9629533351399,-31.331374181434512,-31.501439415384084,-32.27637038985267,-32.57983984844759,-32.92537205386907,-33.8791080750525,-34.667007812298834,-34.43801980512217,-35.211209300439805,-35.98368184734136,-36.101278024725616,-35.5419362494722,-36.449789775535464,-36.108665108215064,-35.696957629173994,-35.10905293049291,-35.13446059310809,-34.780856342986226,-34.51057740021497,-35.31927401619032,-35.29850786551833,-34.74237095378339,-34.10025667306036,-33.80439498415217,-34.45536924665794,-35.43973767058924,-34.84342230763286,-35.065564673859626,-35.00105444062501,-35.979909090325236,-35.24853643635288,-35.537112133111805,-35.44190463144332,-35.50149463349953,-35.505404936149716,-34.77859666524455,-34.00551292300224,-34.4056461811997,-34.95614073285833,-34.510362670291215,-33.547979921102524,-34.35133849270642,-35.20166847156361,-34.61806890135631,-34.91919369297102,-35.43142739450559,-34.9581233356148,-34.49933302029967,-35.30567406397313,-34.42324851406738,-35.07999095227569,-35.37172640860081,-34.98701712070033,-35.44657687935978,-34.96296003134921,-34.445200133603066,-35.3080622931011,-34.80936137214303,-34.388998572248966,-34.12917253607884,-33.70842800894752,-34.18999204412103,-33.507197646424174,-33.16382692474872,-32.66640603961423,-32.84749046806246,-31.958556573837996,-31.995730558875948,-32.31412460375577,-33.11848674016073,-32.74501852924004,-32.67093549622223,-33.13141715340316,-33.85548657365143,-33.652139423880726,-34.187561062630266,-33.872894377913326,-34.55107837729156,-34.359287064522505,-34.47830736730248,-34.734398015309125,-35.49934653239325,-35.41869919653982,-35.0815151585266,-34.82326201116666,-34.42912679212168,-34.25279546575621,-33.39631777117029,-34.07873474108055,-34.69120238907635,-35.434979863930494,-36.003661076538265,-36.617150178644806,-37.557857451960444,-38.38093000277877,-38.144172777887434,-37.87662522587925,-37.03981621423736,-36.24792962754145,-36.309180297423154,-37.28211188316345,-36.44737348612398,-35.62050295295194,-35.38055124040693,-36.06605909112841,-36.739082801155746,-36.62270531151444,-36.38515540165827,-36.40771510871127,-36.70745331700891,-37.0394658241421,-36.138329561799765,-36.1652718372643,-36.51662675803527,-35.607620160561055,-34.806167198345065,-35.143965791445225,-35.318056791555136,-35.174393645487726,-35.77480754861608,-36.19264278374612,-35.72902452759445,-35.43031012499705,-35.3350346670486,-36.26450740126893,-35.50597783271223,-35.30390715878457,-35.25070718070492,-35.16972855478525,-34.68766845809296,-35.49804558372125,-35.84018298052251,-35.629020534455776,-35.76586278202012,-36.72317676246166,-36.15307697933167,-37.15196773363277,-37.06186918122694,-36.493787340819836,-36.842875849921256,-37.64053585939109,-37.61891396250576,-37.38754115533084,-36.58406452368945,-37.041906715370715,-37.10622554272413,-37.61310305772349,-38.075555719435215,-38.264929975382984,-37.700495201628655,-38.42448296491057,-39.27344151260331,-39.51048832060769,-39.22731954511255,-38.8261552718468,-38.77741078892723,-38.970120035577565,-38.07524927705526,-38.06628968054429,-37.45252942433581,-36.584753265138716,-36.337498682085425,-37.00637416681275,-36.43783638300374,-37.08759729890153,-36.85592190595344,-37.679855750873685,-36.91242917953059,-37.447595769073814,-37.659952816553414,-37.04780699731782,-36.509498639497906,-35.67183112446219,-36.43433356890455,-35.79851624276489,-35.98134812200442,-36.95040165632963,-36.54071050230414,-35.90161422500387,-36.56556474091485,-35.64669026713818,-35.89179614232853,-35.89220084901899,-35.82731033209711,-35.13035742659122,-35.92739917850122,-36.57202992355451,-36.58413348440081,-36.943435091059655,-37.29234490683302,-38.14303916506469,-38.99487790977582,-38.553479115478694,-38.09595649829134,-37.196050089318305,-37.727630687411875,-37.75189833063632,-36.984458674211055,-37.490289280656725,-36.61888307053596,-36.01973699592054,-36.000723065342754,-36.02268532011658,-36.51409749966115,-35.747793261893094,-35.018484187778085,-35.44900145428255,-35.63236176315695,-35.853945292532444,-35.35809054877609,-35.163726133294404,-35.03014213498682,-35.0277454899624,-35.777382225729525,-36.52060584165156,-35.88538927352056,-34.91315381042659,-35.02779361931607,-35.92922545829788,-36.25013621011749,-36.04198488779366,-35.89875478949398,-36.22216814942658,-36.108639942482114,-35.39045239565894,-35.927275728899986,-35.53293153923005,-35.4014528808184,-36.25884985970333,-37.06696343328804,-36.3991895285435,-37.01226457860321,-36.34593884460628,-36.00023824442178,-36.26389311114326,-35.30440283892676,-34.85057873791084,-33.99575620284304,-34.87152617610991,-35.46609427034855,-34.86251178290695,-34.34105978300795,-33.58153303945437,-32.9402736062184,-33.585445306263864,-32.826469271909446,-33.44798149494454,-34.10570831922814,-34.76037504291162,-35.06688508251682,-35.16083773924038,-35.90661712968722,-36.764358514454216,-36.342625812627375,-36.38042099028826,-35.58411739440635,-34.5985100120306,-34.307076370343566,-34.84008475532755,-34.450638982933015,-33.975426906719804,-34.043214430101216,-33.510021104477346,-32.755517600569874,-33.228881327901036,-33.507826475426555,-34.403175335843116,-33.92337289825082,-34.43248966662213,-34.327680454123765,-34.53022912610322,-33.556079662870616,-33.34938282566145,-34.20504579739645,-33.5853276848793,-33.14965117396787,-32.277647133450955,-31.67587457317859,-31.378972185309976,-31.522404891904444,-32.035807782784104,-31.071707602590322,-31.789671449922025,-32.32122255116701,-32.91203176090494,-33.26874672528356,-32.341270516160876,-31.80301881209016,-32.17171926656738,-31.4774498231709,-32.33026445657015,-32.72489408869296,-32.78411039011553,-32.91661099763587,-32.267705108970404,-32.42752020712942,-33.258185119368136,-32.924523112829775,-32.4047694359906,-33.1793223451823,-32.93003475945443,-32.06547470809892,-31.747222146485,-32.415561544243246,-33.33887909865007,-33.49814710300416,-33.595225306693465,-34.19023933680728,-34.596626370213926,-33.67351091466844,-33.84616676531732,-32.900607995688915,-33.67668919451535,-33.21038330439478,-33.89311899151653,-32.96930678980425,-33.96259222039953,-34.65489932289347,-35.14300990430638,-34.14410522673279,-35.13267217902467,-34.17810696782544,-33.65125056169927,-33.460219524335116,-34.43944195099175,-34.24374320358038,-33.61854863772169,-33.914686494041234,-33.208322040271014,-32.82662513060495,-33.01496787602082,-33.740446323528886,-33.05523662827909,-32.31244425056502,-32.55839229328558,-32.16635486762971,-32.157317348755896,-31.547627033200115,-32.053449927363545,-32.05919626681134,-32.289740149863064,-31.541431412100792,-31.232593306340277,-31.011331940069795,-30.706928672268987,-31.52171973604709,-32.499966635368764,-31.554918130859733,-31.71745101828128,-31.272014867514372,-31.669855423271656,-32.194849462714046,-31.46533514559269,-32.4222146011889,-33.26353437639773,-33.41797543223947,-33.50185054214671,-33.28913397202268,-32.41546304849908,-32.07461305055767,-32.05623003281653,-32.53435551561415,-32.238105337135494,-31.578334274701774,-31.211206995416433,-31.75490828882903,-32.3302882774733,-32.99098838958889,-32.404721200000495,-32.664312498643994,-33.57443243963644,-34.314076364040375,-34.8201087131165,-35.80918599758297,-36.1455326420255,-36.33117010816932,-35.72778000636026,-35.79254549089819,-36.603739858139306,-37.246440107002854,-36.61468180641532,-36.49077011225745,-36.89327213773504,-37.39053487405181,-36.46583467442542,-36.16408420121297,-35.74150825385004,-35.706631985493004,-35.381210347637534,-36.09969270974398,-36.09641029359773,-37.011523459106684,-37.49256642954424,-36.576948759146035,-35.77036162978038,-35.266335868276656,-34.36644128104672,-34.733494595158845,-34.04059935407713,-33.275754859671,-33.776240138337016,-34.6572569613345,-34.025824024342,-35.001558632124215,-35.40014372533187,-36.18674099026248,-37.11257824394852,-37.2933042217046,-36.81942711537704,-36.68226967332885,-37.2260543149896,-36.79827796854079,-36.92073634825647,-36.386838868260384,-36.38111282745376,-35.795241608750075,-34.81908651068807,-34.56723780371249,-34.6416040873155,-34.96478072879836,-34.36608105804771,-35.225489248055965,-35.40506793744862,-36.019565836992115,-35.58698987448588,-35.446073011960834,-34.45979215903208,-33.98343476746231,-34.314641690347344,-34.16281109582633,-33.86907832091674,-33.38126748567447,-33.857720776461065,-34.3036304009147,-35.08171515958384,-36.012073564343154,-36.30900413868949,-35.500511919148266,-36.0806368147023,-35.15089066699147,-35.29569007875398,-35.4762616767548,-34.789004009682685,-34.16256884485483,-34.54950091941282,-35.39841372985393,-35.929592170286924,-35.350013960152864,-34.61223659059033,-34.58282164204866,-35.288240022026,-34.99046968575567,-35.62299487181008,-35.62856943719089,-34.9453862127848,-35.483026187401265,-34.77598525676876,-34.846535357646644,-35.48171406518668,-34.936900711618364,-35.3806524919346,-35.42601784132421,-35.52967220870778,-35.78976368298754,-34.825069655664265,-34.48520747292787,-34.705872002989054,-35.39245212636888,-35.33614442870021,-34.45424145506695,-34.43259400874376,-34.853505079168826,-35.56657403707504,-35.003115938045084,-35.14641120750457,-34.99281837185845,-34.58686763141304,-35.18353429669514,-34.550099852029234,-34.02020055428147,-34.8149724509567,-34.81150592956692,-34.77956319972873,-33.94480876484886,-33.257328260689974,-32.657409890089184,-32.84781199786812,-32.59684264333919,-32.90660668769851,-33.696166219655424,-33.57175222737715,-33.84173635300249,-34.54379212157801,-33.57682461524382,-33.61255046585575,-32.876527628395706,-32.830203387420624,-32.43724441435188,-33.103347156662494,-32.64496630895883,-32.88737070374191,-33.38175501814112,-33.70983665715903,-33.62379682902247,-34.38367815222591,-33.52434713579714,-33.618595253676176,-32.82472879718989,-32.636646043043584,-32.37155796447769,-32.332638727966696,-32.73518534610048,-33.65591018367559,-34.54768577776849,-33.698337838985026,-33.04036194458604,-33.67714323475957,-33.70918340375647,-33.349047591909766,-33.37595691392198,-32.39699826342985,-32.61961809685454,-33.097685060463846,-32.16413987334818,-32.601718321442604,-32.69889657245949,-32.04019830422476,-32.805265800561756,-32.81473462795839,-32.0949750430882,-31.609598653391004,-32.13603044068441,-32.767834183294326,-31.991956523619592,-32.605040366761386,-32.17163826804608,-32.48459284380078,-32.69485951634124,-33.113375902641565,-33.98298361338675,-33.14694433193654,-33.71057579293847,-33.82775130774826,-33.59727272531018,-33.70108340866864,-32.95320556079969,-32.13164764735848,-31.636921086814255,-31.038240799680352,-30.672153446357697,-31.582249822095037,-30.662508034147322,-31.02714905096218,-30.0815784977749,-29.53050640458241,-30.160935112275183,-30.800175165757537,-30.642555641476065,-31.32889150409028,-31.72209252277389,-32.04029613779858,-32.219185686670244,-31.56612002151087,-31.655068565160036,-31.853298077825457,-31.981619466096163,-32.57157814223319,-32.46638458548114,-33.23301852401346,-33.47404574742541,-32.97560954745859,-33.18260200554505,-32.57439557323232,-31.984802467748523,-32.70563690876588,-32.093002372886986,-31.675806266255677,-31.70212264591828,-31.711161183658987,-31.24218824505806,-31.372836938593537,-31.33227728307247,-31.589884505141526,-30.9157436019741,-30.310416494496167,-30.692568389698863,-30.134526192676276,-31.046952333301306,-30.192190752830356,-30.929601330775768,-30.73997553717345,-29.946843542158604,-29.477820759173483,-30.037709195166826,-29.819505110848695,-29.92023908579722,-30.55744273075834,-30.897920848801732,-30.773974852170795,-30.308194582816213,-29.368432129267603,-29.677956260740757,-29.98601190932095,-29.637866877019405,-29.580516637768596,-28.82862074347213,-29.039639454800636,-29.575184125918895,-30.427808741107583,-29.904617559630424,-29.27888893848285,-28.471878786571324,-29.133116251323372,-29.26793682947755,-29.113742501940578,-28.69920013146475,-29.500888500828296,-28.78719483036548,-28.78402873687446,-28.495993498247117,-28.654168791137636,-29.529034968465567,-29.834783964790404,-30.05107779847458,-29.209550318308175,-28.64541648607701,-28.06789397634566,-27.542967369314283,-27.286551093682647,-26.529045841190964,-25.53708818135783,-25.977178666274995,-25.81797169940546,-25.34271107055247,-24.949352873954922,-25.64419364137575,-24.93294184235856,-25.521850337740034,-26.45517014199868,-26.986642806325108,-27.2467484860681,-26.866770969703794,-27.509048433974385,-26.970824805554003,-26.305408608168364,-25.925459684804082,-25.65391608607024,-24.922056022565812,-24.550483212340623,-23.75887042330578,-24.442395156249404,-23.99162415927276,-24.010832735337317,-23.557532620616257,-23.539741704706103,-23.471510795410722,-22.759130917023867,-22.449603707995266,-22.458662075456232,-22.563630165997893,-22.94847702374682,-23.15257992874831,-22.211729102768004,-22.13639060454443,-22.997958939056844,-22.65091321244836,-21.98657537344843,-21.569330868311226,-21.73947882791981,-22.658865647856146,-22.10830742493272,-22.832000841852278,-23.07033699285239,-22.945752499159425,-23.709020912181586,-23.705996934324503,-24.26439118059352,-24.99559882702306,-24.769558531232178,-24.37352751614526,-25.2028447072953,-26.044873743783683,-26.665810748003423,-26.3603716599755,-25.743183607701212,-25.729271554853767,-25.231269542127848,-26.070270426105708,-25.776848691049963,-24.831063929013908,-24.681511162314564,-24.438881007023156,-24.9277112102136,-25.29009551042691,-24.34772805776447,-23.609279979020357,-24.430246222764254,-23.618898856453598,-24.521225166972727,-25.199527501128614,-25.09850470535457,-24.79680700879544,-24.64483314845711,-25.563962711021304,-25.59588317712769,-25.349423221312463,-24.36765925353393,-25.20984053891152,-26.06711328215897,-25.5833617313765,-24.6983818016015,-25.42002263246104,-24.768084081821144,-25.67852762993425,-25.691296292003244,-25.724798464681953,-25.701759011950344,-24.902587660588324,-25.47377785947174,-25.86016630474478,-26.250673344824463,-26.97270653396845,-27.94793391181156,-28.48974964208901,-28.990987537428737,-28.917469980660826,-29.10305012157187,-29.106390554923564,-29.043369892053306,-28.426041282247752,-29.266096675768495,-29.540101104881614,-30.05605494696647,-30.036907265894115,-30.23804298788309,-30.735186470206827,-30.98990219598636,-30.103402585722506,-30.517624078784138,-30.103055933024734,-30.57721332553774,-29.98389276023954,-30.467925149947405,-30.660126708447933,-30.562492488883436,-31.38695551082492,-31.555824697948992,-30.62012410024181,-29.652916280552745,-29.993745639920235,-30.18370280554518,-29.611605110112578,-29.565346385352314,-28.798393643461168,-28.90776167763397,-28.135654852725565,-28.80857352539897,-29.093669032678008,-28.486252274364233,-28.822677735239267,-28.563750070054084,-28.187966343481094,-29.128693481441587,-28.182989328633994,-28.73737880308181,-29.66534538473934,-30.29944262560457,-30.342559370677918,-29.799636580981314,-29.728196462616324,-29.47875398909673,-29.642980688251555,-30.552712828852236,-29.96427135495469,-29.142050673253834,-30.058936957269907,-29.79367715958506,-30.19343727827072,-30.352018690202385,-31.152052520308644,-31.851395740173757,-32.292503165546805,-32.86963552143425,-33.8256844971329,-34.16815503919497,-33.27945781266317,-33.08819657796994,-33.25883401185274,-32.29286619089544,-33.05120975105092,-32.521191930398345,-32.48040335159749,-33.32411458250135,-33.72620963817462,-32.76455571549013,-32.717986933421344,-32.80993471806869,-32.81585828587413,-32.12143486365676,-31.406415317673236,-32.20363525580615,-32.74439143342897,-33.627415417693555,-33.72171469265595,-33.444489429239184,-33.299052401445806,-33.78332116967067,-33.299294909927994,-33.414975548163056,-34.23679609550163,-34.109263248275965,-33.764425854664296,-34.34854919090867,-33.61925034504384,-33.0518606393598,-32.30153142940253,-31.675946904812008,-31.038068105466664,-31.939131532795727,-31.928910593036562,-31.483798346016556,-31.13704001577571,-31.603526283055544,-32.44707942940295,-32.418393798172474,-32.428831703495234,-31.935123221948743,-31.232649658806622,-32.19888541800901,-31.584663653280586,-31.55999097926542,-31.890964170452207,-31.805885579437017,-32.670514127239585,-32.126167414709926,-32.803521098569036,-33.495443732943386,-33.9021292058751,-34.6274467590265,-34.50103387795389,-35.310287286527455,-34.38823207933456,-34.222420361824334,-33.70194023428485,-34.001106502488256,-34.74983898876235,-35.72439174633473,-34.85073283966631,-34.93320890329778,-35.289365688338876,-36.19337401911616,-36.7029979149811,-36.92532922280952,-36.680891735013574,-37.465662190224975,-37.62734512332827,-38.44883962767199,-38.6205010949634,-39.3751081652008,-40.070322684943676,-40.7785006929189,-40.53806544886902,-40.959934189449996,-41.19131899578497,-42.01431543752551,-42.244467401877046,-43.20808142097667,-43.8103925101459,-44.098568421788514,-44.14007773203775,-43.32976287789643,-43.69465492665768,-44.058711376041174,-43.11503767268732,-43.52192685613409,-43.96321682399139,-43.12907607387751,-43.438357782550156,-43.19457868253812,-43.746641519945115,-43.78695731982589,-44.786867239978164,-44.3522241525352,-43.72334669344127,-44.41765027679503,-43.880153968930244,-44.13030626764521,-44.98815741809085,-44.162635998334736,-43.453823598567396,-43.17927569709718,-42.64786770148203,-43.085314261261374,-43.36884964955971,-43.172396671492606,-43.97862329566851,-44.8557472252287,-45.01303637959063,-45.245600138325244,-45.43633269518614,-44.43969573872164,-44.30764205940068,-44.40154663240537,-44.42408045148477,-45.39846376283094,-45.615567293949425,-46.53854224272072,-45.88616799796,-46.863320148549974,-46.500839702785015,-46.148880301974714,-46.959925865754485,-47.85144281294197,-47.2555328165181,-46.289085880387574,-46.28991249203682,-45.60508381249383,-44.98594017326832,-44.86750646866858,-45.15472746314481,-45.945157130714506,-46.900639600120485,-46.82582531636581,-46.34491371642798,-46.45801840163767,-46.98119392711669,-47.10867573134601,-46.72920172289014,-47.41321063041687,-46.71433785231784,-46.425270543433726,-46.81379924202338,-47.27587968437001,-47.48058461677283,-46.496057715732604,-46.72318417252973,-46.180232455953956,-47.012267655692995,-47.5637839557603,-48.296262181364,-47.35038904333487,-46.63672203011811,-46.33419581502676,-46.407251444179565,-46.019609860144556,-45.23744661780074,-44.855038941372186,-45.13883033860475,-44.89145992510021,-45.572424774989486,-44.67380034783855,-45.397535325959325,-44.507479971740395,-43.86952805798501,-44.53448577551171,-45.18752877879888,-44.91252169199288,-45.076336306054145,-46.01047309022397,-46.35685088485479,-47.3440021937713,-47.29023197479546,-47.524172177072614,-46.971166459843516,-46.80266744736582,-47.59671006910503,-47.04869862413034,-47.86416311142966,-47.636406373698264,-47.66983422776684,-47.71654551429674,-47.5788785261102,-48.48413423076272,-48.16734226932749,-48.49713806947693,-49.25830153003335,-49.74213225627318,-49.28398233978078,-49.01970807509497,-48.13115686131641,-47.531676846090704,-48.48570824461058,-49.408541531302035,-48.786079921759665,-48.50064707780257,-48.42423224169761,-48.41692043095827,-47.8631588537246,-47.90080257831141,-48.26300716586411,-48.5552833378315,-49.50406130775809,-50.40072326082736,-49.49747489951551,-49.503318815957755,-49.295057020150125,-49.38645942043513,-50.1262608258985,-49.4245374975726,-49.12284507136792,-48.24771977216005,-48.13502962421626,-49.091124571394175,-48.71884343307465,-48.403383418917656,-48.05922235548496,-48.89756529824808,-49.507757756859064,-48.73990743746981,-48.92025988129899,-48.70689767226577,-48.39151444565505,-49.21775111416355,-49.534742219839245,-49.3812295710668,-49.6221150723286,-50.00651418743655,-49.65548304375261,-48.73117912188172,-49.04650810640305,-49.16979218367487,-48.461458186618984,-48.97631823644042,-48.076940916478634,-47.46527571324259,-48.009673359803855,-47.48970110109076,-46.706254361663014,-47.043387862388045,-47.69751368649304,-48.17796831158921,-48.750736489892006,-48.479682674631476,-47.493259413167834,-46.96403926983476,-47.00768360029906,-46.375735878013074,-45.74257133435458,-45.00276368763298,-44.471450560726225,-44.802472526207566,-45.72172510949895,-45.27935225563124,-44.496559446677566,-43.863549595698714,-43.76489377068356,-42.844971772283316,-42.462939229328185,-43.109488636255264,-42.98610169952735,-42.41460752254352,-41.99263000069186,-42.45940975751728,-42.76869330648333,-43.65153176151216,-43.68159252451733,-43.600434101652354,-44.56454859068617,-43.884423644747585,-43.16464950283989,-43.309943278320134,-43.26651813648641,-42.84544036677107,-43.12704422650859,-43.60727055231109,-43.61502370191738,-43.9944328693673,-44.897066321223974,-45.212818308733404,-44.960212274454534,-44.125443084631115,-43.27338609378785,-42.79571326682344,-42.22118636127561,-41.42232694197446,-41.60865463037044,-41.8760551661253,-40.898170275148004,-41.792235750705004,-41.40916450833902,-42.266745338682085,-42.15036346158013,-42.88572948751971,-43.770858282223344,-44.45187479071319,-43.94603409431875,-43.21888300590217,-42.747731525450945,-42.353035799227655,-42.87153255613521,-43.14155731117353,-42.590367243625224,-41.77712022745982,-42.49817382451147,-43.218058849684894,-42.24173626117408,-42.57323482912034,-43.09548346698284,-43.927041235379875,-43.55188116431236,-44.319343332666904,-43.74161444697529,-43.87881202343851,-44.70584349753335,-45.554993795696646,-45.657864816486835,-44.81487183459103,-45.810467679519206,-45.52936475351453,-45.523955416399986,-45.772705419454724,-45.41806668927893,-44.53537455573678,-44.36046147765592,-44.223451206926256,-45.079000217374414,-45.83629234926775,-45.68911042576656,-44.849260341376066,-45.61616119462997,-45.744356960989535,-45.9482705690898,-45.47507531568408,-45.16698192618787,-44.653919567819685,-43.76406513992697,-43.424327505752444,-42.59762039221823,-41.87243728432804,-42.55248799966648,-41.668208616785705,-41.12486339453608,-41.247553347144276,-40.596396036911756,-40.18805474322289,-39.31484355358407,-40.25014286674559,-40.191730136051774,-39.37356416322291,-38.867655374575406,-39.24848873959854,-38.885378097184,-38.20931291440502,-37.562902889214456,-37.753268640022725,-38.11188836861402,-37.7000721776858,-37.15144889522344,-37.17539900308475,-37.57497367914766,-38.17770953476429,-37.583523496519774,-37.103980392217636,-37.134684114251286,-36.65041496558115,-37.395489861723036,-37.90580215631053,-37.64343963563442,-38.4588877717033,-39.2933564633131,-39.18511711573228,-38.19228481827304,-37.38918458716944,-37.17583312932402,-36.28299523331225,-36.91347235906869,-37.68449290888384,-37.55345644149929,-38.42575182719156,-38.683400478214025,-39.24917346891016,-39.82182216923684,-39.28236817428842,-39.27987028006464,-40.14099688222632,-40.619782781694084,-40.09245078405365,-40.185551366303116,-39.29050648631528,-40.168417170178145,-40.890378672629595,-41.21338307252154,-41.115543925669044,-41.105563653633,-41.822163024917245,-41.51580592384562,-41.043318497017026,-40.59408363793045,-40.108134374488145,-40.21745028439909,-40.53083335515112,-40.753566320519894,-41.659510854166,-41.72434032801539,-41.15042481897399,-40.97890242142603,-40.53060555132106,-40.77509818319231,-40.04728625481948,-39.624632962979376,-39.52854209765792,-39.170356277842075,-40.04753454076126,-39.75348334060982,-39.07783639105037,-38.367405655793846,-39.18541257549077,-39.140836936887354,-38.85585569543764,-38.442018411587924,-38.81189390271902,-39.51473404606804,-40.41894134134054,-39.65854582423344,-39.828668891917914,-39.33482505660504,-40.06365361297503,-40.217096919193864,-40.74824736267328,-39.84275568788871,-40.56426475383341,-39.91435573110357,-39.00608481653035,-39.232644921168685,-39.68090582406148,-38.95005111489445,-39.19078833563253,-39.690613623242825,-39.837198237888515,-40.07896057656035,-40.67628293810412,-39.77343911677599,-39.425732276402414,-38.530200575012714,-38.66543211136013,-38.39138339785859,-37.866710361558944,-38.59364640712738,-38.13641235465184,-38.62089149840176,-38.21798709174618,-39.17234571231529,-39.94658226566389,-39.03686865884811,-39.86926230043173,-40.60273051029071,-41.50513979699463,-41.34527108212933,-42.310657132416964,-43.202608154155314,-43.669785290025175,-43.49484062520787,-42.595763731282204,-43.47935463767499,-43.30360951088369,-43.03497543698177,-43.86181210819632,-44.37237726757303,-43.61559552140534,-43.14772422704846,-44.11558594973758,-43.653983098920435,-43.11764742154628,-42.486546493601054,-43.2755126459524,-43.82328600110486,-44.592812470160425,-44.21243116585538,-44.74400040274486,-45.21530233602971,-44.85436515510082,-45.56563290860504,-45.217036897782236,-45.50788483489305,-45.77028388809413,-44.95055547449738,-44.98727588960901,-44.53650927497074,-45.5206010309048,-46.24591792328283,-45.30903618969023,-44.793668697588146,-44.50800250796601,-44.33481076499447,-44.575296617578715,-44.091053866781294,-44.723469199147075,-43.964128751307726,-44.24617702327669,-44.16958298627287,-43.906762421131134,-42.93459217529744,-42.8858591504395,-43.18786400137469,-42.383564485237,-43.10975175444037,-42.89192217029631,-42.25083321752027,-41.999997830949724,-41.70517880562693,-40.99044932797551,-41.743769167456776,-42.27316521294415,-41.883593009319156,-42.60464194463566,-42.112781257834285,-42.85927650751546,-43.16281027114019,-42.38890793919563,-42.93870054697618,-42.383811828214675,-43.24287247704342,-42.35799410380423,-42.138853774406016,-42.63887299457565,-42.22274312609807,-41.63539944915101,-40.74442671332508,-41.552096750121564,-41.268291749060154,-40.71013612067327,-39.999304726719856,-40.64524618536234,-41.53141866950318,-41.96904271747917,-41.0119833224453,-40.54474211577326,-41.368313373532146,-41.932701325044036,-42.48302627215162,-42.91684968676418,-42.72556518018246,-42.2104484741576,-41.43163867620751,-42.02116838237271,-42.83442917140201,-42.82295420067385,-42.53527058288455,-43.271674481686205,-43.188466378021985,-42.38706956198439,-42.77916535688564,-42.18609969969839,-41.74259535316378,-40.99205398792401,-40.11472389148548,-39.18833277467638,-39.21346434066072,-38.24473249912262,-37.962838237173855,-37.417657643556595,-36.5682163015008,-37.41658160183579,-37.74557103449479,-36.97211731784046,-37.461368654388934,-38.302821850869805,-37.70255143195391,-37.31559645105153,-36.566211205907166,-37.29792900243774,-36.60250036790967,-36.29985368531197,-35.468606090173125,-36.10306879412383,-37.06252214079723,-36.51566318329424,-36.94689000258222,-37.107726264745,-37.75593266543001,-37.69660359574482,-37.171381525695324,-36.87503710668534,-36.893011301755905,-36.918811918236315,-37.10641127033159,-37.59823454916477,-37.328379986807704,-37.73796981014311,-37.41159129841253,-38.31317707663402,-37.801135507877916,-38.28026404930279,-38.79418151360005,-37.89850748004392,-37.028656114824116,-37.27469284227118,-36.41269213845953,-36.53620379185304,-35.615253095980734,-35.05696203187108,-35.743986405432224,-35.018888434395194,-34.76850497443229,-34.68057329999283,-35.15757882175967,-34.1754263965413,-34.46490819146857,-34.91482057701796,-34.05789711000398,-33.299336119089276,-34.161751120816916,-34.474086973350495,-35.473644769284874,-34.61123274080455,-34.95897858403623,-33.97685223352164,-34.268914696760476,-34.27347304625437,-34.71416918793693,-34.77620218927041,-35.750547560397536,-35.47492851037532,-35.252183163072914,-35.61914309300482,-36.11935200355947,-35.640751531813294,-35.99240886652842,-36.39064412424341,-36.1222060918808,-35.451421757694334,-35.9024220155552,-36.25301430886611,-35.71935590170324,-36.15830996725708,-36.52781266113743,-36.79138222755864,-36.54807909252122,-37.24623271077871,-38.11607220163569,-38.249011516571045,-37.487491090316325,-37.7361603686586,-37.8722798069939,-37.875670093577355,-37.8436590093188,-36.901937818620354,-37.10848392173648,-37.744430367369205,-37.516346561256796,-37.72294380934909,-38.48105380684137,-38.05403779121116,-38.44006783841178,-39.023885315749794,-38.658830200787634,-39.17715794965625,-39.30753655033186,-39.24086740799248,-40.20369978668168,-39.23380676470697,-39.51333595998585,-38.72176061104983,-38.67647452978417,-38.24292637081817,-38.486075521446764,-39.105749061796814,-39.02642574813217,-39.76364342775196,-40.13650209270418,-39.19442931283265,-39.371775784529746,-38.96615725522861,-39.949769106227905,-39.889039310161024,-39.27865212736651,-40.2119026160799,-41.11906971782446,-42.07026438647881,-42.09756935434416,-42.295039769262075,-42.90787702566013,-43.64345073513687,-43.382533016614616,-42.72859940957278,-42.20220698276535,-42.00386792700738,-42.849924691952765,-43.32416058983654,-42.3731384659186,-42.88251144904643,-43.37369602359831,-44.02202605968341,-44.36950136628002,-44.43364560697228,-44.94851558143273,-44.465150591917336,-43.547454537823796,-43.25476706819609,-42.50419265264645,-43.20469000702724,-43.411810683086514,-43.38844014098868,-44.070948869455606,-43.149490585085005,-42.284288256429136,-41.87695478089154,-41.198306472506374,-40.3467559106648,-41.05292335804552,-40.76438928442076,-41.60113428160548,-41.611571048852056,-41.905408720020205,-40.971975301392376,-41.90510565182194,-42.36154178157449,-42.31857430655509,-42.0056025730446,-41.99130426859483,-41.916040665935725,-42.320445134304464,-41.36879602028057,-42.29781388165429,-41.99812329141423,-41.95008043060079,-42.39789005136117,-42.4145712479949,-41.595077148638666,-41.236575085669756,-41.99310721736401,-41.583227925468236,-41.36896844394505,-40.513778103049845,-40.76866512093693,-41.19733099499717,-40.93299203366041,-40.76978716626763,-40.32553531555459,-41.21994705917314,-42.06083902856335,-43.032594728749245,-43.434652510564774,-44.24809393379837,-43.58476122748107,-43.14554892946035,-43.562585092615336,-43.523933086544275,-44.032803683541715,-45.01958219334483,-44.708205006085336,-45.565280424430966,-46.33409369364381,-47.01182953873649,-47.65041442774236,-48.05279231723398,-47.634131361264735,-47.823173731099814,-47.812176486011595,-47.437438941095024,-47.656630305573344,-47.89671469479799,-47.88611026806757,-48.5499969040975,-49.26531217060983,-48.85222225822508,-47.87368135433644,-48.59013573685661,-47.64837530488148,-46.66449348907918,-46.76757637877017,-46.578822957817465,-45.88631342118606,-45.92788996733725,-46.31103693973273,-46.780435778200626,-45.94076641323045,-46.83547144709155,-47.13739558355883,-46.633659021928906,-46.094791248906404,-45.53343757381663,-44.87561603728682,-45.342931722756475,-46.19131009094417,-46.38108751317486,-46.971154084429145,-46.51023284159601,-46.74069312168285,-47.56071036402136,-46.74056653864682,-46.17147918464616,-46.577603824436665,-45.82794075133279,-46.07788706570864,-45.30903764907271,-44.72059336164966,-44.56663065450266,-43.744463338982314,-43.914313352201134,-43.26363661000505,-43.28567679831758,-42.59013919811696,-41.6072141029872,-42.043802853208035,-41.972933266777545,-42.87227012310177,-42.58179141348228,-41.98561149882153,-42.252455388661474,-42.46476556593552,-43.26420917082578,-42.44130594469607,-41.60048000700772,-40.68775679636747,-39.72522953571752,-39.53599947365001,-39.86390629829839,-40.533902815543115,-40.530628237873316,-39.77577919466421,-40.44527808204293,-41.139669644180685,-40.62325513828546,-39.77504475042224,-39.27721699047834,-40.13172836462036,-39.83261006511748,-39.428706898353994,-39.5332317519933,-39.62681750068441,-39.63854664750397,-39.65801306953654,-40.20887762028724,-40.886924332007766,-40.97013032250106,-40.30355401802808,-40.30704034445807,-40.31557087833062,-40.88456096826121,-41.815907096955925,-42.680005160626024,-43.32745747175068,-43.31000834237784,-43.83547172974795,-44.68305164668709,-44.04592586308718,-44.45075603481382,-44.84224706143141,-45.386180134955794,-44.93905362347141,-44.17549810977653,-44.96844401350245,-44.555355379823595,-44.796906562522054,-44.37061352469027,-45.16226275404915,-45.21190308080986,-45.82084257947281,-46.677384081762284,-47.088829949032515,-46.368397312704474,-46.17633050214499,-47.0987225593999,-46.83474047249183,-45.95876376098022,-45.5821548118256,-44.84571591950953,-44.619397250935435,-43.74079418880865,-43.032356698065996,-43.87495932215825,-44.04165320750326,-44.276803290471435,-44.79944966128096,-45.49007278494537,-46.34146094880998,-45.574401694815606,-46.56635506032035,-47.193141548894346,-46.38754788506776,-45.93451400240883,-46.0433035409078,-45.22585151204839,-45.48227259051055,-45.19319699611515,-44.53520335024223,-43.94937136257067,-43.21039486723021,-43.209261858835816,-43.45795050263405,-42.88199828658253,-43.559666962362826,-42.672480372246355,-42.56148127280176,-42.322242964524776,-42.81496093329042,-42.352063577622175,-42.37658594921231,-43.09457931853831,-43.690198965836316,-43.13194413576275,-42.86758322129026,-42.57802075846121,-41.88292842078954,-41.592721081804484,-41.64160454738885,-42.049088053870946,-42.65278057241812,-43.02467063674703,-42.82775822514668,-42.32145512197167,-41.42298300564289,-41.139948482159525,-41.41516179777682,-41.177349989302456,-40.564695038832724,-40.5316924219951,-40.49543965654448,-40.145631461869925,-39.95265163201839,-38.999288191087544,-39.869395930320024,-39.858151711989194,-39.34275883808732,-38.95502955839038,-38.905342772603035,-38.81477757869288,-37.83139983005822,-37.00719448691234,-37.406336180865765,-37.51540130004287,-38.41383594926447,-38.732440994586796,-38.153586614876986,-38.44447033619508,-37.68645164836198,-37.6887855026871,-38.238264424260706,-37.70265511935577,-37.41356340050697,-37.15349002555013,-37.293366234749556,-36.68610882759094,-36.936118063516915,-36.94832308217883,-36.017449404112995,-36.50409999489784,-36.85813712934032,-36.293076855596155,-35.352061392739415,-35.09802511706948,-34.78645618259907,-34.7508417586796,-34.783972727600485,-34.51049151038751,-35.101363458205014,-34.95924921054393,-35.010687469970435,-35.158952162601054,-35.71354150073603,-35.86615276429802,-36.30775082344189,-36.742139184847474,-37.52442423114553,-36.91405627131462,-36.34455827344209,-36.661503409501165,-36.996502372436225,-37.02656599972397,-36.115893204230815,-35.92028217483312,-36.486782036721706,-36.643763221334666,-36.88736928394064,-37.69183443393558,-37.629425635095686,-37.23829445708543,-37.5013521197252,-38.217862132936716,-38.49637045012787,-38.88103420706466,-39.31345105729997,-39.427382009569556,-38.71616359939799,-39.074306927621365,-38.173285773955286,-38.96014610724524,-38.98692458122969,-39.04428374907002,-38.87193676037714,-38.67581308959052,-38.427745054941624,-38.2927304264158,-38.00536029180512,-37.61115271784365,-38.03306817309931,-38.9044627295807,-38.03821385465562,-37.25067226635292,-37.924417436122894,-38.190753461793065,-37.81801293278113,-37.86582091357559,-37.840642121154815,-37.87823984725401,-37.643379965331405,-37.66353898309171,-37.25545167643577,-37.926364256534725,-38.67258271994069,-39.64378915075213,-40.32797016156837,-39.64315934386104,-39.550221148412675,-40.54930094163865,-39.729286041110754,-39.49737092433497,-40.21704248897731,-40.180354822427034,-39.44914177618921,-39.20150282885879,-39.01223327871412,-39.26812770171091,-38.395805687177926,-37.861599838826805,-37.088377707172185,-36.39307246124372,-35.41609332058579,-36.08123520249501,-35.25945638213307,-35.93222902249545,-36.267413510009646,-35.31427996093407,-35.21619838057086,-35.47447759984061,-35.74376819515601,-35.72319519985467,-35.455733737908304,-35.231714316643775,-35.488107449840754,-36.418701814021915,-35.64720035530627,-36.388226167764515,-35.505809971597046,-35.88828656822443,-34.905231286771595,-35.89676711568609,-36.01498424913734,-36.31752025382593,-35.52270472282544,-34.97848661290482,-35.50073412852362,-34.855745336040854,-34.78314984543249,-34.45715753128752,-35.08237512409687,-35.43713635811582,-34.66364642698318,-33.74013240868226,-34.6669402141124,-34.78242647647858,-34.49406737461686,-35.34053220087662,-35.44292671000585,-35.560351841151714,-35.63596584973857,-35.782344532199204,-36.31146096345037,-35.76144368527457,-36.73001019889489,-36.61393376858905,-36.05703963479027,-36.2457050033845,-36.753776689525694,-36.354418298695236,-35.48353056516498,-35.838289096951485,-36.72297780169174,-36.79642395116389,-36.33050353825092,-36.71546596288681,-35.784496549051255,-36.20992445247248,-36.99696262134239,-37.8145262170583,-37.7534919208847,-37.40658005140722,-36.91661249473691,-36.48948562052101,-36.37661020224914,-36.448304910212755,-36.666094476822764,-36.8856106121093,-37.43902075383812,-37.27500176522881,-37.73840977065265,-38.562650616746396,-38.45876915613189,-38.15525275096297,-37.178167411126196,-36.32850385690108,-36.79256174294278,-37.08849892066792,-37.70659019052982,-37.970335945952684,-37.94032072043046,-37.923917775508016,-37.8724519899115,-37.53365917224437,-36.652088834904134,-36.98964963294566,-37.42467719363049,-37.15560312848538,-37.07109082862735,-36.4470567968674,-35.50336856255308,-34.52432585507631,-35.436836392153054,-35.217878175433725,-34.87928123539314,-35.53741079615429,-35.87068820837885,-36.64211032819003,-35.690060316585004,-34.91174687957391,-35.14550499571487,-34.30497304536402,-34.72698457585648,-35.035212576854974,-35.99290573550388,-35.80501577537507,-35.6990674296394,-35.297023572959006,-36.19026782549918,-35.58777442481369,-35.49724774155766,-35.614181163255125,-36.05284391203895,-36.25039228936657,-36.83601191127673,-36.74226135760546,-36.05772775411606,-35.93671163963154,-34.99741523852572,-34.13449103850871,-35.04521877737716,-34.381016954779625,-33.38408431317657,-32.49956851126626,-33.02609217585996,-33.63035177346319,-32.74063505791128,-33.395758918020874,-34.153634916525334,-34.51459321472794,-33.67104563489556,-33.166821621824056,-33.62356808083132,-33.261428019497544,-33.160558443982154,-34.13629122870043,-34.754922890570015,-35.17256795195863,-35.29053527256474,-35.28440784011036,-35.048779814038426,-35.22197829419747,-35.13723952975124,-35.002884975634515,-35.29597956454381,-34.816345950588584,-35.04162154952064,-34.339660935569555,-35.15730390418321,-35.924466859549284,-35.710878481157124,-36.335669541265815,-37.098114027641714,-36.20986195420846,-36.762790724635124,-36.019361132755876,-35.699447873514146,-35.44848824059591,-34.48454164294526,-34.199818649794906,-33.301662989426404,-33.45102315349504,-34.154494144488126,-35.09298895346001,-34.756462443154305,-34.3885745331645,-35.208679059986025,-34.772739893291146,-33.78229812532663,-33.28800581302494,-33.13983382983133,-32.249305674340576,-32.68373730033636,-33.33887935336679,-32.75988167291507,-32.022476346232,-31.41461581736803,-31.85188113246113,-32.08755737263709,-31.739844498224556,-31.80989805329591,-32.02813868317753,-32.33422083966434,-32.190938427113,-31.891549182124436,-32.72325389320031,-32.49790554353967,-33.449604080524296,-33.09281678730622,-32.20087594958022,-31.24940072838217,-31.628104276955128,-32.11302895890549,-31.79510453203693,-32.476095913909376,-32.23446987522766,-32.64347868040204,-33.538928972091526,-32.950115689542145,-32.3325199498795,-32.10808731941506,-31.929406098090112,-31.226597506552935,-31.006992921233177,-30.970705218613148,-30.64395019877702,-31.63716958090663,-31.569136766716838,-31.306535924319178,-30.901428882963955,-31.45235482370481,-31.65936042740941,-30.694381814915687,-31.43329363502562,-30.800758878700435,-31.713895361404866,-31.366830197628587,-30.514065178111196,-31.26522851968184,-30.44293583277613,-29.93130352627486,-29.976211909670383,-29.8960930602625,-30.52936111530289,-31.421815200708807,-32.18443812150508,-32.31315095722675,-32.425988574977964,-33.00262134661898,-33.44516223156825,-33.78213534783572,-34.763470000587404,-35.39377840794623,-35.69915299909189,-35.80770370736718,-36.727330051362514,-36.19744337024167,-35.924142667558044,-35.87170733790845,-35.76748361391947,-36.763401098549366,-37.52889922214672,-36.58802305487916,-36.47729006782174,-36.126090231817216,-36.66134714148939,-36.86403128411621,-36.92064409563318,-37.20506483782083,-36.44706305814907,-35.65980397956446,-35.94402699172497,-36.09190465742722,-35.18717208644375,-34.46087181055918,-35.33893662318587,-35.75513425376266,-34.85676530562341,-35.818482687696815,-36.40014077024534,-36.63366865599528,-35.945473212748766,-35.49889553943649,-35.34028943814337,-35.97634353348985,-36.43842410808429,-36.745886801276356,-35.898888303432614,-36.505130752921104,-35.88675348320976,-36.81967869354412,-37.70774919120595,-38.27695275610313,-37.51658007921651,-36.532353019341826,-35.926020056474954,-35.938170357141644,-36.87237768433988,-36.3119942098856,-37.307888839393854,-36.87803498050198,-37.837831252254546,-36.889770068693906,-36.426810215227306,-35.57504872139543,-34.863352112006396,-34.13340389961377,-34.78949920507148,-33.89458441827446,-33.25359190674499,-32.36819023871794,-32.269905409775674,-32.734721729531884,-32.3149415072985,-32.88980373321101,-32.33334191981703,-32.777181453071535,-32.82674821047112,-32.69917954644188,-33.38895939942449,-33.480763075873256,-34.08022034261376,-33.64783792803064,-33.845894783269614,-33.082509741187096,-33.61261433083564,-34.05288271000609,-33.98648072173819,-34.58228700142354,-35.41498209582642,-35.25603967672214,-34.801020642742515,-35.527808654587716,-36.30523789813742,-35.72835510689765,-35.13219827832654,-35.71727046230808,-36.04776617605239,-35.83355231489986,-36.77286125952378,-37.031487106811255,-37.49452326679602,-37.00226452853531,-37.04181634495035,-36.91148708341643,-35.9787632683292,-36.84402179252356,-35.98230321658775,-36.59402876812965,-36.529254275374115,-36.180548711679876,-36.8895478094928,-35.924623225815594,-36.58887492958456,-35.955728902015835,-35.854218064341694,-35.922150891274214,-35.29561504581943,-35.190155105199665,-35.11197985056788,-34.16965978592634,-33.93777893204242,-33.74273286387324,-33.712444508913904,-33.62596550118178,-33.224051686003804,-34.044496106449515,-33.489171722438186,-32.58714053500444,-32.47685005608946,-31.687020184937865,-32.27760612452403,-31.605487731285393,-31.858253540471196,-31.77106204861775,-31.599083080887794,-30.979988844133914,-30.4212899771519,-31.41232975758612,-31.510674245655537,-31.637285236734897,-30.706900225486606,-30.712429435923696,-31.302174516487867,-31.79917132202536,-31.857780310790986,-31.428045556880534,-32.23800528794527,-31.837172369938344,-32.23878429457545,-31.923430463299155,-31.035492741968483,-30.79155548522249,-30.26336171850562,-29.912444535642862,-30.707262418232858,-29.83238516608253,-29.243272367864847,-29.33496699249372,-29.476127354893833,-29.348411918617785,-29.439165147487074,-30.303394006099552,-31.123038196004927,-31.750147267710418,-31.83637152193114,-32.271735314279795,-32.65581996133551,-32.983955232892185,-32.9479611502029,-33.44010599888861,-34.175692489370704,-34.75846771290526,-33.84637870406732,-34.290651720482856,-35.20600832765922,-34.71091957623139,-34.91246594581753,-34.84554158849642,-35.645671172998846,-34.93173755193129,-34.475979348644614,-34.087698470801115,-34.80365481041372,-34.63284767558798,-34.53802390629426,-33.707861056085676,-33.99364475812763,-34.21109966468066,-34.21130719175562,-34.70301240636036,-33.965836400166154,-33.43801640579477,-33.64352863980457,-34.06487655034289,-34.66478695906699,-35.335032073780894,-35.816845872439444,-36.52625709446147,-36.79422006942332,-36.96887912461534,-37.865969385020435,-37.896265307441354,-38.09082022123039,-38.80516315996647,-39.07525070523843,-38.694281559903175,-39.63043706025928,-40.49054476059973],"z":[0.6928060264326632,0.21313253231346607,0.29149211663752794,0.6305415173992515,0.5513693755492568,1.0364675354212523,1.2925283126533031,1.3447286561131477,1.5614803018979728,2.1177051961421967,1.7640645960345864,0.8431075685657561,1.6326226037926972,0.8006848520599306,1.352736703120172,0.7100635622628033,1.3423453783616424,0.6525251995772123,-0.22632699320092797,-1.0653434358537197,-0.6695824400521815,-0.03471002308651805,-0.8908496401272714,-1.619187525473535,-0.653771829791367,-0.9817294459789991,-1.2287936587817967,-1.2630640612915158,-1.1206014924682677,-1.3911249488592148,-2.226887778379023,-1.3926943028345704,-2.087436185684055,-3.010532893706113,-3.1512053636834025,-3.1225537615828216,-2.6428915318101645,-3.400472950655967,-2.647610045503825,-3.1430580909363925,-3.7980780019424856,-4.628198123071343,-5.185949570499361,-5.0716901877895,-4.565406903158873,-3.6550665805116296,-2.7421262711286545,-2.701543774921447,-2.3664108710363507,-1.4984561544843018,-1.1943765915930271,-1.256651804316789,-0.3977302727289498,0.20408881781622767,0.1379348747432232,-0.6599621973000467,-1.4571093237027526,-2.370857815258205,-2.3857873105444014,-3.3470988534390926,-2.3926496049389243,-3.005180214997381,-3.354376076720655,-3.8431558194570243,-3.672952886670828,-3.210427331738174,-3.389938593842089,-3.682541775982827,-3.1436548698693514,-3.264048687648028,-3.599049395415932,-3.046625889837742,-2.7474811067804694,-2.3457224844023585,-3.131249438971281,-2.8300358168780804,-3.309938403312117,-3.9081670972518623,-4.188232274726033,-4.147181233391166,-4.448535248171538,-4.480074062012136,-3.692234746646136,-3.1459028143435717,-2.9339910387061536,-3.575433144811541,-3.8849135953933,-4.303887728136033,-3.4643809301778674,-4.3021940547041595,-4.392894828692079,-4.340995047241449,-4.1254968284629285,-3.635909156873822,-3.8111283257603645,-3.033960923086852,-2.93391627445817,-2.482085371389985,-1.950945969671011,-1.6594274025410414,-2.0432871989905834,-2.1759234401397407,-2.8510721223428845,-2.159274167381227,-3.112592360470444,-2.7099036145955324,-2.6841569980606437,-2.4360564867965877,-3.284572903998196,-2.6086922991089523,-3.5616658409126103,-3.1017583990469575,-3.4957062182947993,-3.6812995923683047,-3.3144661458209157,-3.7527312049642205,-3.8041343330405653,-2.988990622572601,-2.929492838680744,-3.163017044775188,-2.2526522437110543,-1.3321659513749182,-1.2467302619479597,-0.724583784583956,0.18412767397239804,-0.37844526628032327,-0.8505556299351156,-1.6089653186500072,-0.6559880571439862,-0.00504833972081542,-0.4120049891062081,0.304379909299314,-0.5974646019749343,-1.2100434200838208,-2.012005471624434,-1.3295692699030042,-1.146769996266812,-0.5566060487180948,-0.8182704304344952,-1.31780168088153,-2.0728982631117105,-1.437054829671979,-0.8028974416665733,-1.2948790905065835,-2.157404243014753,-1.8403519550338387,-2.6950553017668426,-2.2252553701400757,-1.7686231932602823,-0.9753064871765673,-0.07531871227547526,-0.6964878467842937,-1.4943652674555779,-1.8032437087967992,-1.7091244598850608,-1.4473816473037004,-1.5898751569911838,-1.917581193614751,-1.096578526776284,-1.2179363290779293,-1.5750531321391463,-1.76160897500813,-1.7997434129938483,-1.7982536987401545,-2.249492596834898,-2.812566727399826,-3.4968447447754443,-3.3200195538811386,-2.8671518065966666,-2.2736876802518964,-2.0879191840067506,-1.1675225580111146,-1.7835475434549153,-0.8491039387881756,-0.3960688002407551,0.3732514474540949,0.051907557994127274,0.7512568277306855,0.6131080975756049,1.4553399719297886,0.8093734728172421,0.6218284647911787,0.8351365188136697,1.4966492098756135,0.5848552323877811,-0.3459076634608209,0.6192800072021782,0.48366197431460023,0.5913811689242721,0.5542646734975278,0.022520847152918577,-0.6386861838400364,-0.9074453446082771,-0.4795544361695647,-0.6517909625545144,-0.8860215339809656,-1.52224283805117,-2.308415941428393,-2.9914411175996065,-3.751291902270168,-3.827715110499412,-3.40709161804989,-2.7892840416170657,-3.034259646665305,-2.4102687216363847,-2.990751687437296,-2.9732475713826716,-2.997037020511925,-3.458674914203584,-3.7332653468474746,-4.6228969702497125,-5.3872161651961505,-4.701813975349069,-4.586029632948339,-3.7276961016468704,-4.064090486150235,-4.195516026578844,-4.150710358750075,-3.454146519303322,-3.015398375224322,-2.193686298560351,-2.2519371090456843,-2.3150423048064113,-2.7270704922266304,-2.3324267296120524,-1.400044001173228,-1.9953569937497377,-1.9123030509799719,-1.1692053251899779,-2.1289196936413646,-2.9524906277656555,-3.5507983933202922,-4.455206252634525,-3.868351495359093,-4.207665139809251,-3.239049111958593,-3.542395298369229,-4.420928590930998,-5.185746279079467,-5.704914640169591,-6.382927725091577,-6.144540247041732,-6.073868014384061,-6.347247076686472,-6.928746486082673,-7.103876363486052,-7.022857414092869,-7.554335711058229,-8.215753969270736,-8.784976338036358,-7.847848784178495,-8.609816285781562,-8.06311043119058,-7.186778822448105,-7.780975456349552,-7.840413304045796,-8.548121992964298,-9.213163533713669,-8.743487271480262,-8.857143560424447,-8.94499180559069,-9.591788716614246,-9.916655755601823,-10.313929848372936,-10.289799886289984,-11.247516401577741,-11.557895266916603,-12.274126731790602,-11.577909513376653,-11.532891752198339,-12.47959906887263,-11.947019446641207,-11.858089456800371,-11.321912111714482,-11.364614515565336,-11.679074797779322,-11.549730442464352,-11.344212569762021,-11.898737167939544,-10.92691778857261,-10.607936984393746,-9.862078193109483,-10.382942979689687,-9.649018724448979,-9.697150070685893,-9.92334457533434,-10.22544854413718,-10.63175492407754,-10.636688479688019,-11.338044651784003,-10.867652312852442,-10.031931563280523,-9.725715716835111,-10.50480978563428,-11.448006678838283,-10.89497295813635,-10.69111706269905,-10.911765846889466,-10.260251029394567,-9.911488757934421,-10.828458106145263,-10.310871948022395,-10.844271288719028,-11.379089998081326,-11.691886220127344,-11.039249649271369,-11.65077058877796,-12.359870310407132,-11.550735198426992,-11.198263190221041,-11.001453590579331,-10.525573760736734,-10.45428312337026,-10.059380210004747,-10.640989365521818,-9.78902274928987,-9.34610672434792,-9.966175923123956,-9.810526280663908,-8.91295463591814,-9.876952972728759,-9.594655037857592,-9.262208701577038,-8.316372700966895,-7.447964393999428,-6.543037778697908,-7.368900177069008,-6.407358651049435,-6.607697886880487,-6.860494242049754,-7.354934232309461,-7.180571871344,-7.729120222385973,-6.878234704490751,-7.4648404298350215,-7.3461585608311,-7.532492874655873,-6.551549364812672,-6.353608431760222,-6.601725387386978,-7.094460037536919,-6.840524349827319,-6.500392481684685,-5.892597375903279,-5.456491943448782,-4.53764680493623,-4.388382200151682,-4.658735075965524,-4.406095616519451,-5.273913296870887,-6.186058917082846,-6.140033205039799,-5.568876076489687,-6.0418511144816875,-5.942898845300078,-5.116731678601354,-4.975762742105871,-5.440850432496518,-6.077943725511432,-6.936259562615305,-7.092060114722699,-6.771249135024846,-5.933469961863011,-5.302177506498992,-5.127434931695461,-4.988318225368857,-4.150228225626051,-4.931755718309432,-5.712211628444493,-5.802166240289807,-5.33669705549255,-4.97823052899912,-5.274531723000109,-6.0421447809785604,-6.889755863696337,-6.527060297783464,-7.438144315499812,-7.625497289467603,-7.492041510529816,-8.489023815374821,-9.10869764490053,-9.002528187818825,-8.272691056132317,-8.3639811668545,-7.819588848855346,-6.900719303172082,-7.356385175604373,-6.951564958784729,-7.814290409442037,-8.352654428221285,-8.271292169578373,-9.263039006385952,-10.106344308238477,-9.502453240100294,-9.445318223908544,-9.290861890651286,-8.471444659400731,-9.286273243371397,-9.467385767959058,-9.710784069728106,-9.882951089181006,-10.49508926505223,-9.582903629168868,-9.585319471545517,-9.694769530091435,-8.733471072744578,-8.784844767302275,-8.490429105237126,-9.099092013668269,-8.297619674354792,-8.455796175636351,-9.35027331020683,-9.505658864974976,-9.030267239082605,-8.630134058650583,-8.80687477067113,-8.20454345876351,-8.73006385192275,-9.47352560563013,-8.478630323894322,-8.731012949254364,-8.651929705403745,-9.343284608796239,-9.5956319142133,-10.088949776254594,-10.157774202525616,-11.149543867912143,-10.547796377446502,-10.670370372012258,-10.357854853849858,-10.317780645098537,-10.617245975881815,-10.77439199341461,-10.250231302343309,-9.832633333746344,-9.581348509527743,-9.274338275194168,-9.299554749857634,-9.226306519471109,-8.43943720171228,-9.16830785293132,-8.81169903697446,-9.337510713376105,-8.673445891588926,-8.368086519185454,-8.54218741087243,-7.5627601612359285,-8.045723223593086,-8.671009278390557,-8.55554571794346,-7.757253143005073,-7.253466497641057,-7.8201794708147645,-7.576786301098764,-8.120581149123609,-8.385177530813962,-7.609987411182374,-7.495237911585718,-7.321309739723802,-6.330436773598194,-5.870871734339744,-5.788649890106171,-5.747425164096057,-5.857309389393777,-6.562710064463317,-7.373468741774559,-7.427695352118462,-7.59896981343627,-8.20055547868833,-9.027285833377391,-9.006307082250714,-9.044968159403652,-8.537862527184188,-7.962647960986942,-7.7352418839000165,-7.880540756043047,-7.577260316815227,-6.980502720922232,-6.926607272122055,-7.066755022387952,-7.185828012879938,-6.7398950913921,-5.829588755965233,-6.160322624724358,-5.774385193828493,-5.589067070744932,-4.762554773595184,-5.722651806194335,-5.4058260708115995,-5.790889752563089,-6.542589473538101,-5.751894549932331,-5.4715011939406395,-5.437258802354336,-6.38581331865862,-6.994573030155152,-6.51378771988675,-5.8340228935703635,-5.886539608240128,-5.621589658781886,-4.69833370577544,-5.48986605508253,-6.101110842078924,-5.808969682548195,-5.584162276703864,-5.738008032087237,-6.728069754317403,-6.059826435986906,-5.901765003800392,-5.458904416766018,-6.310927777551115,-5.525924193672836,-5.795340028591454,-4.827638141810894,-4.325745060108602,-3.4642384140752256,-3.418266732711345,-2.859749744646251,-3.681255245115608,-3.905168594326824,-4.625788544304669,-4.85883783781901,-4.680379117373377,-4.069672366604209,-4.839959713630378,-4.943268386647105,-4.333616353571415,-3.395624572876841,-2.7176261874847114,-3.35416858503595,-4.205588967073709,-5.101489577442408,-5.741365488152951,-5.973641009069979,-6.618253763299435,-6.2356605674140155,-5.266024581156671,-5.744837980717421,-5.682358569931239,-6.0470453491434455,-5.162911860272288,-4.4643082725815475,-5.350397692061961,-5.705524533055723,-6.246804656460881,-6.4973194701597095,-6.066849012859166,-6.7126746429130435,-6.909501485992223,-7.5356563297100365,-6.892034153919667,-6.154033462051302,-5.188312042038888,-5.3158921441063285,-6.197023192420602,-6.0656743021681905,-6.316545657813549,-6.778324535582215,-7.35808701813221,-7.775508618913591,-8.749662403017282,-9.301015359349549,-9.133478940464556,-9.505461333319545,-8.839085259009153,-8.82613872922957,-8.724317835643888,-9.722225689329207,-9.703003499656916,-9.54135396098718,-9.935283388011158,-9.289405087940395,-9.410268435720354,-8.793799522332847,-8.80618703411892,-9.02443823684007,-8.506221694406122,-8.1104766279459,-8.108299324288964,-7.312473017722368,-7.516085398383439,-7.909109766129404,-8.715526783373207,-9.594535606913269,-8.833454486913979,-8.592843597289175,-8.615524349268526,-7.843108288012445,-7.910080521833152,-8.85389102017507,-8.307137366384268,-8.016552526503801,-7.840514327865094,-7.6770214145071805,-8.573784893378615,-8.08629726851359,-8.895930010359734,-8.277556437067688,-7.781621968839318,-8.061887653078884,-7.187219887971878,-7.5289514237083495,-7.1987151792272925,-6.486303282435983,-7.108409101143479,-6.462133218999952,-6.613698421046138,-7.257989334408194,-6.5536909769289196,-7.296900000888854,-6.318153767380863,-5.363014015369117,-5.596433783881366,-5.325610854662955,-5.966243293136358,-5.9419688787311316,-5.6698240507394075,-5.420022485312074,-5.447022893466055,-4.510313334874809,-5.208184218965471,-5.747349685523659,-5.349328761920333,-4.780898115597665,-4.15571659989655,-3.525242214091122,-4.215815606992692,-4.013329637236893,-3.9963921164162457,-3.541690590325743,-2.622809374704957,-2.2460970073007047,-2.9091057693585753,-2.1752485116012394,-2.003029705490917,-1.71989018144086,-2.6605804366990924,-2.16434445977211,-1.5274846036918461,-1.2847718661651015,-0.29569082194939256,0.0009961742907762527,-0.34050921024754643,0.19547377806156874,0.4097237903624773,0.35691382829099894,-0.2292606709524989,-0.5430306703783572,-0.6615945296362042,0.3227383755147457,0.045455798506736755,-0.2575046266429126,0.580488377250731,0.6304110074415803,0.6770209250971675,1.6421433445066214,0.9377911100164056,1.0373822744004428,1.5165297137573361,1.1984221283346415,0.9027590262703598,1.60315478220582,0.7988008130341768,0.497386974748224,-0.4271481395699084,-1.2852930892258883,-2.1812200746499,-2.4041500752791762,-1.9165194225497544,-1.94501927588135,-2.1791066699661314,-1.5219998881220818,-0.9366483693011105,-1.0627468451857567,-1.3073450489901006,-0.9679393419064581,-0.6812733341939747,-0.8741207285784185,-0.37702556420117617,-0.5401308638975024,-1.4285047459416091,-0.6526118670590222,0.09811169328168035,0.42155358800664544,-0.4561310149729252,0.37486838083714247,-0.5826940359547734,-0.7460098499432206,-1.2131494344212115,-0.5392146231606603,-1.031653898768127,-0.041011461056768894,0.17842902662232518,0.3235559011809528,0.9108324702829123,1.6599773224443197,0.7983211395330727,1.3529327805154026,1.7378070116974413,2.6981413192115724,2.815014799591154,3.2081021326594055,2.764726337045431,3.1861295457929373,3.347140404395759,3.462518023326993,3.593125692103058,3.1288469531573355,2.991358009632677,2.999446430709213,3.0944663914851844,3.409515588078648,4.07660950999707,4.853952495846897,4.573105555493385,3.664898322429508,4.165346984285861,3.55597215378657,3.2986188787035644,3.760164687409997,4.088137353304774,4.2709489138796926,5.254610620439053,4.82313172519207,5.361644863616675,5.796153973322362,5.67600604146719,5.138139755930752,5.080023242160678,5.787517119664699,6.005308384541422,6.873162436299026,6.829557002522051,7.506700113415718,8.22018225537613,8.501998357009143,8.188600882422179,8.771297332830727,8.625893448013812,8.939356082584709,9.089292735327035,9.972917588427663,10.738878862466663,11.00982343731448,11.185125497635454,11.230398276820779,11.395272086374462,12.32654645619914,12.382303636521101,11.659877518191934,11.951312420424074,11.002434028312564,10.870633139275014,10.891659840010107,11.062764399684966,10.33239562716335,10.434627955779433,11.333304102998227,12.265117253176868,11.349806000944227,10.501590801868588,11.050067069008946,10.215857442468405,10.543646225240082,11.395513105671853,10.45220416225493,11.03255466837436,11.796096409671009,11.036975502036512,11.780192846432328,10.817315974272788,9.938482042402029,9.722316017374396,9.972445836290717,10.715662136208266,9.884478477295488,9.847768671344966,9.221148685086519,8.543108108453453,7.897387374658138,8.765379462391138,8.554089963901788,8.882549779489636,8.627992406021804,7.932499329559505,8.584880089852959,9.436640744563192,9.225777984596789,9.686284561641514,10.05225440301001,10.68452724115923,10.244015818927437,10.236704378388822,10.238339592702687,11.133190216962248,10.443046585656703,10.927123290952295,10.054794942494482,9.780669903382659,10.763028677087277,10.047213611658663,9.910838913638145,8.936158379074186,9.53139554290101,8.921553487889469,8.84164302656427,8.308076557703316,8.042695081792772,8.519892479293048,7.908683154731989,7.172173305880278,7.990469251293689,7.842453001998365,7.351015732623637,6.715924912132323,7.464572214055806,7.571793671697378,6.926200507208705,7.168295081704855,7.907840248197317,7.511224726680666,7.048114325385541,7.9565735016949475,8.618674562312663,8.078785695135593,8.092338152229786,7.309781164396554,6.598338366020471,6.407665063627064,5.971172160934657,5.079655614215881,6.04312027618289,5.916869773063809,5.803009667433798,6.235343800857663,6.915882981847972,7.525789977516979,6.978730909992009,6.645831403788179,7.084660418797284,6.578986793290824,7.138090392574668,7.224023409187794,7.951054843142629,8.447198678739369,9.056626251898706,9.199877915438265,8.393897018395364,7.816574704833329,8.439779869280756,8.966049753129482,9.253240956924856,8.658367629162967,8.033066536299884,7.343963542953134,8.319354566279799,7.764867467805743,8.201529708690941,7.687151711899787,8.478737674187869,9.112895126454532,9.959554322995245,9.486804880667478,8.624005664139986,9.294822107069194,9.041660776361823,8.502306460402906,8.03711673244834,8.394931754097342,8.693545405752957,9.646515626460314,10.507419697009027,10.389872895553708,9.841080800164491,10.154515616595745,9.49414606532082,9.438873499631882,10.087551730219275,10.699647707864642,10.581317994743586,9.607596893794835,8.728732228744775,8.277722130063921,8.184765622019768,7.311492786742747,7.321825083345175,6.973659370560199,6.911401282064617,7.239900187589228,7.12147556245327,8.08471830189228,7.3818352753296494,7.683377160690725,7.9164223237894475,8.043267964851111,8.32193875219673,8.104831196833402,8.338623156305403,7.61307168751955,8.366493401583284,7.385628272779286,8.19624592922628,8.095954007003456,8.39576434949413,7.841636578552425,8.099169158842415,7.42545515531674,6.476879300083965,6.936243185773492,6.436412818264216,6.37044837186113,6.1298422194086015,6.024886643979698,6.240550364367664,5.715835669543594,5.044769748579711,4.1426297929137945,4.274312645662576,4.874854886438698,4.725147975143045,5.606728993356228,5.044968660455197,5.957293316256255,6.8051695777103305,7.3144080471247435,8.040908003225923,8.4725037002936,9.181276655755937,8.72695071483031,9.58921964885667,10.044216480106115,10.400734276510775,11.356864326167852,11.007700314745307,10.207331790588796,10.944309756625444,10.754759494680911,11.304390254430473,10.660803218837827,10.50123487552628,10.260691818315536,11.254253544379026,11.781694166827947,11.81269413093105,11.99467987427488,12.035722033120692,12.452743924688548,12.740995082538575,13.216647607740015,12.561916135251522,13.310270192567259,12.525909406598657,11.998568711802363,12.650779132731259,12.230937870685011,11.556326790247113,11.76247717672959,11.21390762925148,11.804154853336513,12.549640034791082,12.635894143022597,12.73256050888449,13.172660186886787,12.564490297809243,13.261869385372847,13.162843366153538,13.881048040930182,13.40668488945812,13.573934799525887,13.748586442321539,14.524534335359931,15.199901770800352,15.281716333702207,16.011580476537347,16.29294973332435,15.329705650452524,15.013613009359688,14.679414371028543,14.336788994725794,15.237054601311684,14.700232878793031,15.43552825320512,15.497207606211305,16.05912144249305,15.739505269564688,15.862107965163887,15.648086186964065,14.806283460464329,14.895437689963728,13.966952177230269,13.877611403819174,14.271207783836871,13.502384353429079,14.296861575450748,14.772068865131587,15.107905419543386,15.776691731065512,16.474305695388466,17.160881609655917,16.332760899793357,15.806029551662505,16.282536276150495,15.49888285761699,15.198178787715733,14.94143738085404,14.39926480082795,15.179230293259025,15.33964679017663,14.575255509465933,14.046514234505594,14.056224023923278,13.44612836651504,12.70769205968827,11.988009570166469,11.955446809530258,11.852234981488436,12.641096058301628,13.079763072077185,12.350608990062028,11.47353489883244,12.277667629998177,12.045981148257852,11.312681673560292,11.53283525398001,12.20107391430065,12.271059769205749,12.616439993493259,13.518615645356476,13.495761065278202,13.23436779808253,14.080839048605412,13.177921442314982,13.130231970455498,13.153969251085073,12.716730425134301,13.137511711101979,12.68640588177368,12.089283579960465,11.359584990423173,11.161877040751278,11.054708823096007,11.892331098672003,12.021470211446285,12.353808800224215,11.499889302998781,11.435990614816546,10.859850211068988,10.829228318296373,11.455594486556947,11.543504688888788,12.205248617567122,12.506968377158046,13.337126548867673,13.508592024445534,13.398694553412497,12.788715700153261,13.742172442842275,13.971011102665216,13.38085218379274,13.386297296267003,14.047066424041986,14.638247614726424,14.120212101843208,14.519334415439516,14.296015336643904,14.63847748376429,14.580451868008822,15.382113272789866,15.113560169469565,14.677455482073128,13.801646707113832,14.052109478972852,13.084144270978868,12.332369131501764,11.647584786638618,11.057023484725505,10.942069944925606,10.67650909954682,11.4940902213566,10.8378969989717,10.280278618447483,9.325967476237565,8.97762227524072,9.344977502245456,8.884339949581772,9.190871895756572,8.387431192677468,7.435308863874525,7.808419297914952,8.461991319898516,8.625908882822841,8.379674878437072,8.694394757505506,9.10937034431845,8.17733440734446,8.9240533253178,9.84963324572891,9.868452125694603,10.24530862737447,10.646272286772728,10.714033380616456,10.071530856657773,10.458681896794587,11.170526821631938,10.259479973465204,10.427516291849315,10.039756229612976,9.182142407167703,9.156522951554507,9.202042970340699,8.989408757537603,9.669061590917408,10.215658849105239,11.002213107421994,10.51199514977634,11.506591904442757,10.825517751276493,10.97029023244977,10.680971214082092,11.540524157229811,12.132969349622726,12.469440442044288,12.070818256121129,11.285881541669369,11.38394899526611,11.6897131241858,12.595490179490298,12.101448266301304,12.137386514339596,12.452074796892703,11.512918433640152,11.61644167592749,11.788072783965617,12.445109089836478,11.452820553909987,10.769186973106116,10.461655776482075,11.372143625747412,11.436356483027339,11.590151325333863,11.86132853711024,11.576380286831409,11.56946383509785,11.085423613898456,10.860428309068084,11.554611145984381,10.974965857341886,11.11833759304136,10.121945085935295,10.684372913092375,10.392012437339872,11.186104435939342,10.392088951542974,10.853870124556124,11.26428984105587,10.78048710199073,11.365242699626833,11.748073242604733,12.335968403611332,13.160024887416512,14.090184723492712,14.542292763944715,15.50252970540896,16.203170254360884,15.267821781337261,15.834256521891803,15.906812484841794,15.691243913490325,16.46494663786143,16.628566537983716,15.717319815419614,15.955029444769025,16.20172034436837,17.087083619553596,16.598466464318335,16.481303746812046,17.17770725628361,17.230071786791086,16.62318247836083,16.35580434370786,16.035731222946197,15.883351153694093,16.725243345368654,15.971614130306989,15.643986100330949,15.428352059796453,16.326531894970685,15.918972188606858,15.582088032737374,14.696627630386502,15.256372172851115,16.186237392015755,16.684322436340153,16.141442455817014,15.942753618117422,16.605509572196752,17.45975129213184,18.0399586497806,18.781400887295604,19.582831024192274,18.779371257405728,19.027735312469304,18.548264099750668,18.023980665486306,17.338381649926305,17.429510438349098,17.803172559011728,17.29499979922548,16.9470571950078,17.35791318072006,17.192063502967358,17.543961231131107,17.31615013582632,16.97142359102145,17.303829304873943,17.51651195436716,16.620475239120424,15.980288552120328,16.242475129198283,16.854400699026883,16.05817377474159,15.871082575526088,15.001431938726455,15.135595594998449,15.443532750476152,14.666092919185758,14.154351392760873,13.157729047816247,12.513541791588068,11.737739046104252,11.810961267445236,12.396713096648455,13.353424286469817,12.444830684456974,12.341103915590793,11.555010930169374,11.036008632741868,11.652895555831492,11.869933143723756,11.971988829318434,11.70729874027893,12.168695815838873,13.00767598953098,13.813193884212524,14.501177654601634,14.538911673706025,13.611836194060743,14.498588763177395,14.314026082865894,13.655884958803654,13.77177738584578,14.136599469464272,14.972672416362911,14.552255799528211,13.876265504863113,14.240733060985804,14.833734555635601,15.458931154571474,16.01669940724969,16.171242169570178,16.13636383181438,15.209260573145002,14.222366942558438,14.583106512669474,13.587128167506307,12.98434067890048,13.936114174779505,14.722770493011922,14.739391755312681,15.2304553296417,15.342910803388804,15.573252056259662,15.584542590659112,14.691350418608636,14.83859331952408,13.944081428926438,14.223205534275621,13.239336790982634,12.751526841893792,11.995799026917666,11.53268344886601,12.276499773841351,13.06988192209974,13.893492688424885,14.455965497065336,14.267993200104684,15.253942358773202,14.340463415253907,15.201266396325082,15.971685464028269,15.473175280727446,16.09522343846038,15.878147672861814,16.75664036627859,16.714490147307515,16.617093425709754,16.384887266438454,15.973758114501834,16.367852790281177,15.7895468166098,15.860519881825894,15.668186895083636,16.403954013250768,15.921548900194466,15.712686168495566,14.869026936590672,14.610639235936105,13.711580035742372,13.40904555702582,13.274900346528739,12.912547666113824,13.202913783956319,12.356987699866295,11.70592392142862,11.862152576446533,10.89147423952818,11.415247885510325,10.569150520954281,10.282667601946741,9.517424026038498,9.425512782298028,8.8446527547203,9.474425693973899,9.132283274549991,8.76737595256418,7.963826154824346,7.503503967542201,7.521167363971472,7.700116178020835,7.935774721670896,7.489204898942262,8.053421484306455,8.681581447366625,8.672231479547918,9.658755919430405,10.6173369535245,10.127371626906097,10.858173646964133,10.00774238165468,9.635582492686808,9.38078211946413,9.978069893084466,10.067245613317937,9.679437154438347,10.441715189721435,11.281285827048123,11.179655203595757,11.852205282077193,11.970547216013074,11.008766956161708,10.136174237821251,9.332530594430864,10.038471122272313,10.503619109746069,11.07452255859971,11.116878811269999,10.700299518648535,9.91918377019465,10.764909140300006,10.318818382918835,10.89707607170567,11.57160044228658,12.309354945551604,12.038919960614294,12.028407841455191,12.941896478179842,12.427984599489719,13.13501363946125,12.55902997450903,12.266450565773994,13.124286634847522,13.723056041169912,13.27380722668022,12.86172697879374,12.45709909265861,11.913559926208109,11.63603441696614,11.26940177520737,11.829729171935469,11.882751219905913,11.78896451741457,10.931319711264223,10.379804380238056,10.22174029564485,10.551704584620893,10.715586065780371,9.73716004844755,10.115469412878156,10.885205829050392,11.570021418854594,11.215153094846755,10.368590399157256,10.055423146113753,10.13293179217726,9.966773935593665,9.204357027541846,8.345529585611075,8.893701541237533,9.661869698669761,10.30044624209404,10.805293902289122,10.513808032963425,10.936546673066914,11.539742741268128,12.095944190397859,13.035283222794533,13.509230094961822,13.664427600800991,14.629201356321573,13.85550672467798,14.779347457922995,14.18710855487734,13.576667726971209,14.543432358652353,13.878377537243068,13.65125686628744,12.862863844260573,12.953456781804562,12.37544587533921,12.533279667142779,11.936924566049129,10.98898378945887,11.173000196926296,11.720241860020906,11.963482413440943,11.353243765886873,12.048454750329256,11.128162257838994,11.370624256320298,10.990128156729043,10.310010116081685,10.715502695646137,10.87204426759854,11.190252072643489,12.066902954131365,12.963224009610713,12.982700011692941,12.854254751000553,12.267485421150923,13.023665929213166,13.618062547873706,12.834925271105021,12.421498415060341,11.932282944675535,10.992874021176249,10.167597885709256,9.400617223232985,10.023136194329709,9.973283535335213,9.911104192957282,10.748901745304465,10.425760861020535,9.857408839743584,9.489666933659464,10.41780549613759,10.2781489379704,11.01870317850262,10.35401846235618,10.300626787357032,9.930793940089643,10.862926533445716,9.86571470182389,9.540571513120085,8.782324784900993,9.634264873806387,9.044167963787913,9.04809493618086,8.950571271125227,8.45249295560643,8.988871649838984,8.065734108909965,7.276967157609761,6.5922744534909725,6.152698079589754,6.8809482282958925,7.801143624819815,7.580230090301484,6.627244856674224,7.117951389402151,6.240778927691281,5.295993463601917,6.121122462209314,6.338916833046824,5.992527654394507,5.181488387752324,4.8513295678421855,4.711506417952478,4.053523121867329,3.8842452806420624,3.18603407824412,2.9204297410324216,2.7955592875368893,3.267231297213584,3.3902538092806935,3.2542340117506683,2.723176606465131,3.0499205267988145,3.1873884671367705,3.382262074854225,2.7502515595406294,2.630235617980361,3.4668104741722345,3.7374434783123434,3.3508033817633986,3.924032954033464,4.259991972241551,4.956086902413517,5.246446647681296,5.944658967666328,6.355196440126747,5.548031896352768,6.099967690184712,6.208533646073192,6.295449901837856,5.300287024118006,5.619524777401239,6.1813664976507425,7.141431692056358,6.969407625030726,7.011355645488948,7.797635366208851,7.0229448936879635,7.418087847530842,7.227559293154627,6.967079651542008,7.061968275811523,6.899824524763972,6.983015402685851,6.713935106992722,7.271306924056262,6.826741619501263,7.212485879659653,7.46609757328406,7.838438848499209,8.393476398196071,8.246437831781805,8.565188851207495,8.67379631754011,9.100167457014322,8.364655084442347,8.973705930169672,9.720749409403652,9.771923939231783,9.353235156740993,9.988479981664568,9.871379436925054,9.58237011404708,9.796844142954797,10.132701782044023,10.69171303184703,10.91032630391419,11.344991606194526,10.601713684853166,9.734593864064664,10.313023444730788,9.753968145232648,9.37220069160685,9.235307001043111,9.154362566303462,9.206237542908639,8.878347393590957,8.486221246886998,8.841692336834967,9.466415769420564,8.679006106685847,8.33156494377181,8.350595829542726,9.071505481842905,8.76900944719091,8.615983630064875,7.659403135534376,8.14441551733762,8.65302804717794,8.645347999408841,7.918864401057363,7.6790147055871785,8.65930586727336,7.903526678681374,8.268984217196703,8.208226048853248,8.472414654679596,9.003713425248861,8.778452051337808,9.656228653620929,9.553851535078138,8.657978899776936,9.528701784554869,9.157562709413469,8.740397418383509,9.129051588475704,9.581668897531927,9.041187992319465,9.178630794864148,8.953681152313948,9.585015846882015,9.924614396411926,10.863282212987542,11.104322404135019,10.481706474442035,9.647961475420743,9.83460799511522,9.700017089489847,9.496405696962029,9.454619925934821,9.393242141231894,9.53737380867824,10.12226356426254,10.83912369562313,9.981589830014855,9.855999062769115,9.329881918616593,9.368314354680479,9.752843079157174,9.514854910317808,8.85528358258307,8.833088872022927,7.981799906119704,7.285508437547833,6.766447172500193,7.626068260986358,6.827465825714171,6.9225332997739315,5.994427002966404,6.618197473697364,5.8024509428068995,6.0646121222525835,5.887984453234822,6.7768894410692155,6.270108459983021,5.760573619045317,5.563493586611003,6.420939849689603,5.919698674697429,5.146249333862215,5.438678685575724,5.0820845370180905,5.8226460930891335,5.787571785505861,5.358727056533098,5.557117152493447,5.032401055563241,4.540023451671004,3.7819833932444453,3.000645450782031,3.4100103597156703,4.3089759349823,3.3264925121329725,3.797968841623515,3.7524006105959415,3.612963625229895,4.0969369555823505,3.1044063875451684,2.4473617929033935,2.6036896035075188,3.2007517493329942,3.735244709532708,3.544106148183346,3.0989787350408733,3.748365869279951,4.3927949336357415,5.091656074393541,4.689761366695166,4.692531566135585,5.327119754627347,5.973183891735971,6.081183603964746,6.506702173966914,6.83555674739182,7.827304450795054,7.018965070601553,6.223087373655289,6.918638332746923,6.462446575984359,5.982079002074897,6.368056527804583,5.3931048437952995,4.931100434623659,4.545007267501205,4.4532129731960595,4.563250110018998,5.52059237100184,5.864812862128019,6.834268368314952,7.5600387481972575,6.707070659846067,6.059255202300847,5.502689563669264,5.991764865349978,5.513433630112559,6.295343383215368,6.94328963663429,6.3133609015494585,5.77298305509612,5.33470225892961,5.669792203698307,4.854252468794584,5.148667319212109,5.276162310503423,5.212609366513789,6.144997824449092,5.33551201177761,4.490378609858453,4.462477543856949,3.7448614626191556,4.020422874484211,4.892807282041758,4.6809617122635245,5.20923583349213,4.900732894893736,5.498384973965585,5.143726349808276,5.378075895830989,4.770637858659029,4.867887994740158,5.824161591939628,6.400493458844721,7.0002300860360265,7.6739430502057076,8.12944170134142,8.822858115658164,9.811498071067035,10.471894099377096,10.0833400785923,10.186753863003105,10.911732445005327,10.232602621428668,11.070781740359962,10.200771934818476,9.319558035582304,9.542155418079346,9.159607984591275,8.862120172940195,7.944539045449346,7.6997704692184925,7.092167369090021,6.263379266019911,6.518483392428607,6.759295892901719,6.586646500509232,6.295735920779407,6.093604886438698,5.924327002372593,5.929190202150494,6.8587060500867665,6.768663111142814,7.4323899471201,7.036209273617715,6.042646750342101,6.205573201645166,6.159185016527772,5.617031579371542,5.090518016368151,4.677218472119421,4.383620702661574,4.830724825151265,4.135327463038266,3.7917932379059494,3.206999544519931,2.707160313613713,3.6529598315246403,3.9546771608293056,3.4768261439166963,3.6042259666137397,4.054251873400062,4.261023574508727,3.349834690336138,4.342470756731927,4.908404800109565,4.261625190731138,5.220685660839081,4.746057454962283,4.829897345043719,5.454725059680641,5.984476239420474,5.330408219248056,5.107907383237034,5.903545984532684,5.841264401096851,6.022364031989127,5.0907212984748185,5.199167246930301,5.0105304550379515,4.273812437895685,4.720235904213041,4.6899576568976045,4.34655165951699,3.9217161661945283,3.613482537679374,4.332968472968787,4.420813247561455,4.447808725759387,4.911764471326023,4.626894900109619,3.859130705241114,3.9933059220202267,3.1972115342505276,2.498409593477845,3.459959647152573,3.835998157504946,2.9051597891375422,3.8736185911111534,4.024219105485827,3.7460387954488397,3.818993091583252,3.684225059580058,2.8842244194820523,3.151733425911516,3.5839682812802494,3.5519266994670033,3.0306710014119744,2.1598848905414343,2.129564442206174,1.6903896629810333,0.7304945830255747,1.3656606054864824,1.5089067537337542,0.588720568921417,1.0947904824279249,0.09494039556011558,-0.4661614568904042,0.06659652851521969,-0.24931351793929935,-0.4820913136936724,0.4840062092989683,-0.03352533979341388,0.22732640383765101,-0.45491246227175,-1.1673568971455097,-1.6336902398616076,-2.583935126196593,-1.8850237019360065,-2.3254167060367763,-2.568395075853914,-2.0551315788179636,-1.7886444353498518,-2.3549542855471373,-2.809835714753717,-2.1749069252982736,-2.4121391652151942,-2.0590377910993993,-1.3769786697812378,-1.634658384602517,-2.0982743785716593,-3.0170003627426922,-2.300386707764119,-1.5856254599057138,-1.8274592314846814,-1.8483823812566698,-1.4309541103430092,-2.1566317114047706,-2.687324706465006,-2.010893405880779,-1.2294342466630042,-0.6183011834509671,-1.0847448436543345,-1.127202442381531,-0.1566198104992509,0.449002337642014,-0.4524170057848096,0.4101338335312903,1.1860833000391722,1.7947363229468465,1.782986625097692,0.978651350364089,1.7670813868753612,2.586471846792847,1.8328333413228393,2.0965641899965703,1.4564523384906352,1.3010030803270638,0.4653893765062094,0.7071738266386092,0.30724893091246486,0.8298657075501978,0.22207815758883953,0.15238137962296605,0.8288497505709529,1.3612401844002306,0.4262705924920738,-0.39310723589733243,-0.5020122416317463,-0.04938171384856105,0.8705198913812637,1.4334697681479156,2.253305794671178,2.3483243994414806,1.5151689918711782,2.0313975983299315,2.4009113907814026,3.142679556272924,3.7384944250807166,3.121459390502423,2.680442361626774,2.7218071687966585,2.238408327102661,1.6797616798430681,1.115634486079216,0.7826333050616086,0.47959706792607903,0.4542423700913787,0.7163361320272088,0.22520695440471172,0.34505911031737924,1.066354785580188,0.6143241496756673,-0.13025583140552044,-0.45655712205916643,-1.1763079855591059,-1.8074175557121634,-1.2601940310560167,-1.645559495780617,-2.5261781509034336,-1.6534671587869525,-1.9825677922926843,-2.7410654686391354,-2.722267892677337,-3.059930179733783,-2.1065487661398947,-2.493821082636714,-2.6023531099781394,-2.221628911793232,-3.036573251709342,-2.531549969688058,-2.1746636675670743,-2.2879606098867953,-2.225407023448497,-1.4471419919282198,-1.878234560135752,-0.905482358764857,-0.18991277972236276,-0.6302040880545974,-0.11750369193032384,-0.973335727583617,-0.3629213725216687,-0.527600443456322,-1.2554234177805483,-1.0912562576122582,-0.48497135378420353,-0.6526750572957098,-0.8246536436490715,-1.8205828568898141,-2.2361230035312474,-2.9824721794575453,-3.074885059148073,-2.6566488281823695,-2.0907152662985027,-1.4589715860784054,-1.8774904920719564,-1.569496541749686,-1.5109724644571543,-0.5491075082682073,-0.7756757424212992,-0.7572231660597026,-1.605263410601765,-1.8418789342977107,-1.8171579684130847,-2.600604381877929,-3.310406874399632,-2.927108848467469,-2.404686714988202,-3.0839767893776298,-2.448978546075523,-2.753470029681921,-3.268707278650254,-3.614702433347702,-3.0376469525508583,-3.8992506666108966,-4.68939437251538,-4.247577731963247,-3.5285131973214447,-4.231483255047351,-4.299127595033497,-4.202680553309619,-3.8273963974788785,-3.8164971452206373,-3.7050962671637535,-4.214201827999204,-5.105914901010692,-4.119533203076571,-3.6445030830800533,-2.792009169701487,-3.5714320363476872,-2.9222905193455517,-3.847636106889695,-4.134653890971094,-4.392778723035008,-3.64990446344018,-4.599410064984113,-4.948731024283916,-5.400918495841324,-5.459997798316181,-5.995102635584772,-6.517690137960017,-6.129837410990149,-5.183329622261226,-5.294188960921019,-5.01383598241955,-5.470210501924157,-4.857620309107006,-5.835986067075282,-5.24669332569465,-5.9482614528387785,-5.794022743590176,-5.119421537965536,-5.7899840315803885,-5.7170685632154346,-6.170657369308174,-6.1783275925554335,-6.165322137530893,-6.828213834669441,-6.255403394345194,-7.000585633330047,-6.620111184660345,-6.264300944749266,-7.0010007177479565,-7.782422276213765,-8.510728754103184,-8.135225104168057,-7.919346250593662,-6.972560399677604,-7.7600882817059755,-8.54701895173639,-8.836747145280242,-8.48156925989315,-8.867643024772406,-8.800105300266296,-8.464253231417388,-8.369807821232826,-8.31011263653636,-7.553038437850773,-7.60645918129012,-7.7562856785953045,-8.505900245159864,-8.486013191286474,-7.67062025424093,-6.716068895533681,-6.083258554339409,-6.562407490797341,-7.291836098302156,-6.602009636815637,-5.8518866575323045,-6.785786872263998,-6.98115820903331,-7.455006725620478,-7.340489818714559,-7.830646910239011,-7.002222313545644,-6.308634475339204,-7.305769167840481,-6.80309316329658,-7.621289817150682,-8.61377117689699,-8.42308803461492,-7.962438574526459,-8.608118053525686,-8.14690607227385,-8.773829170502722,-8.261394559871405,-8.83761584572494,-9.835382404271513,-10.71314347954467,-11.7037148703821,-12.677134018857032,-11.69996923673898,-10.87176906503737,-11.71016252739355,-12.18109147483483,-12.055004143156111,-12.77146615833044,-12.965184571687132,-12.927468820940703,-13.053637652657926,-12.392043362371624,-12.913119808770716,-12.928781619295478,-12.710257052443922,-12.469222271349281,-13.135725372470915,-13.960791708435863,-14.110695517621934,-13.481646797154099,-13.709381214808673,-14.012131133582443,-14.70921961311251,-14.200844607315958,-14.826956279110163,-15.272502521052957,-14.714003610424697,-13.726516996975988,-13.517199327703565,-12.841872574295849,-12.663545485120267,-11.76872676704079,-11.79861438414082,-12.74372364860028,-12.05803402652964,-12.558754788246006,-11.859784992411733,-12.792769797611982,-12.514151371549815,-12.968844050075859,-13.577848875895143,-13.188072821125388,-13.963899454567581,-14.068306896835566,-13.514644042123109,-13.734354672487825,-14.492169043514878,-14.900334503967315,-15.035702303051949,-14.165275297593325,-14.311495273374021,-13.396170471794903,-12.945969610475004,-13.479727485682815,-14.002711259759963,-13.105630735866725,-12.78450509160757,-11.933225777000189,-11.581735112704337,-11.990621678065509,-12.299444549717009,-13.094861439429224,-13.88824928086251,-13.804025314748287,-14.476625876035541,-13.944807824213058,-13.078229777514935,-12.505809571594,-11.511950862128288,-11.431968366727233,-10.96953588956967,-10.531227631028742,-10.193140031769872,-9.673280618153512,-10.360189598053694,-9.974542289040983,-10.65220698993653,-10.077346303500235,-9.631364829838276,-10.166989773046225,-10.754966226406395,-10.740179092623293,-10.656658403109759,-10.906159742735326,-11.746560140047222,-12.742704312317073,-13.46945691946894,-13.661334520671517,-14.447110104840249,-14.784599827602506,-15.766435664147139,-15.988987554330379,-15.962957026436925,-15.40145178232342,-14.732289806939662,-15.629049862734973,-16.31363164074719,-16.92665998544544,-17.91654744045809,-18.70431511104107,-19.252042920328677,-20.172286361455917,-20.01336724171415,-20.311195571441203,-19.48702617082745,-20.161765686701983,-20.63005450926721,-21.58575557731092,-21.945799698587507,-22.068260913714767,-21.648478436283767,-22.03469644812867,-21.946508097928017,-22.39114196691662,-21.543055451009423,-22.169253911357373,-22.626877384260297,-22.008237726055086,-21.17803092673421,-20.500820957124233,-19.7340203281492,-19.73758402466774,-19.085689323954284,-19.611878340598196,-19.115373299457133,-19.893074040301144,-20.47186714084819,-19.987196675036103,-20.01791280368343,-20.12774168420583,-20.226248900871724,-19.457292130682617,-19.409273273777217,-18.682364643085748,-18.609311044216156,-18.14100627647713,-18.81401679571718,-18.58848531311378,-18.85482522053644,-18.68664026958868,-19.463061324786395,-19.801103899721056,-20.343397201038897,-20.842373178806156,-21.559497834648937,-22.45427929610014,-21.730836760718375,-22.270784399006516,-21.854531002696604,-21.62108927126974,-21.83169877482578,-22.727694342844188,-22.721073751803488,-23.166143842972815,-23.10802592104301,-22.364417350385338,-23.033828258514404,-23.459362362511456,-23.72030257526785,-24.47886927239597,-23.53312875982374,-22.62121140398085,-22.629539601504803,-22.531429775990546,-22.111855940893292,-22.982660171110183,-23.973099475260824,-23.55887591652572,-23.594371128827333,-23.053981605451554,-22.171704987064004,-21.624790153931826,-21.121429151389748,-21.990180868189782,-21.110418850090355,-21.12609284836799,-20.348369429819286,-20.908240440301597,-21.86415414698422,-21.362483259290457,-21.291238313075155,-21.17969603650272,-20.70823636557907,-19.839074208866805,-18.97181884618476,-19.34503765683621,-18.647188960108906,-18.945412630215287,-19.103543115314096,-20.032167474739254,-20.349379791412503,-20.279954299796373,-19.57063713716343,-19.158410125412047,-19.337268323637545,-19.162777619902045,-18.17851329734549,-18.154534441418946,-17.855787159875035,-17.809398231096566,-16.97516735084355,-16.1090499330312,-16.917313179932535,-16.442793587688357,-17.012832397129387,-16.026223207823932,-15.581568455323577,-15.235022383742034,-14.652110223658383,-15.066908737178892,-16.0637124767527,-16.546096819918603,-17.4276318596676,-16.96783522097394,-16.3320608753711,-16.10260652191937,-16.255489316768944,-15.442474682349712,-15.471291366033256,-14.634872727561742,-13.784077526535839,-13.327365694567561,-13.619634130503982,-14.312635361682624,-14.154013992287219,-14.305000599008054,-13.890599908307195,-13.636798025108874,-14.005084957461804,-14.050001152325422,-13.340379694011062,-12.725620788056403,-12.90666334098205,-12.043239895720035,-12.816935390699655,-13.12442880962044,-12.766789221670479,-11.93682709382847,-12.426676700823009,-12.213671938050538,-12.548623614944518,-12.786179201677442,-12.501828014384955,-11.73832184355706,-11.498893480747938,-11.621737489011139,-11.758553430903703,-10.919051302596927,-10.621411639265716,-10.21066680457443,-11.125617150217295,-11.035846013110131,-10.51785342535004,-10.619664946105331,-10.76215346576646,-10.325892920140177,-10.321472011972219,-9.630747776478529,-9.730935316067189,-9.213786289095879,-10.120600476861,-10.444422331172973,-9.620503752492368,-10.369697590824217,-10.388819786719978,-10.268555518239737,-9.50659640179947,-9.617184193339199,-9.025063762906939,-9.419100619852543,-10.10439725453034,-10.009633097331971,-9.235007944982499,-9.550836068112403,-10.151702700182796,-10.49797176476568,-9.982714438810945,-10.780449382029474,-10.062551482580602,-10.49774006800726,-11.052536493632942,-11.553665866144001,-11.658513171132654,-12.337543689645827,-12.345421386417001,-13.244343426078558,-13.880746333859861,-14.513566821813583,-14.921576307155192,-14.054799299687147,-13.384314035996795,-13.561289608012885,-13.370015366002917,-12.759499933104962,-12.233930457849056,-12.068271016702056,-11.469414360821247,-10.785984639078379,-11.464118567761034,-12.110790606588125,-12.452867469284683,-12.0883779223077,-11.340195371769369,-10.369653224013746,-10.97637387458235,-10.408149763010442,-10.014237500727177,-9.94510169653222,-10.153206664603204,-11.00451320875436,-10.450192196760327,-11.335098905023187,-10.433761688880622,-10.701455725822598,-11.112186026293784,-11.852547456976026,-11.387460770551115,-11.558837070595473,-11.950717526953667,-11.924790835008025,-11.926216859836131,-11.902448071166873,-12.377101953607053,-12.45117893954739,-11.875895659439266,-11.073126000352204,-10.943233131431043,-10.223009784705937,-10.38443955546245,-9.387599573936313,-9.529192486777902,-8.673651514109224,-9.138957895804197,-9.479958312120289,-9.395662672817707,-9.473122228402644,-8.497902473434806,-7.9441585866734385,-7.069310402031988,-6.5084432531148195,-6.993787705432624,-6.565629947930574,-5.87633902579546,-5.9260800327174366,-5.077775404322892,-5.67317855451256,-4.871874139644206,-5.121117252856493,-5.291553634218872,-5.921914327889681,-5.9951027976349,-5.836017827503383,-6.768861157353967,-6.9408055525273085,-6.968877061270177,-6.442899622023106,-6.715403361711651,-7.163521567359567,-6.19645300321281,-5.914513213559985,-4.979823337867856,-5.200959287583828,-5.211565323639661,-4.25637467391789,-4.612315929029137,-4.315348065458238,-4.353347683791071,-4.809811632614583,-4.54463668866083,-4.075778572820127,-5.056275708600879,-5.408033741172403,-4.640622128266841,-3.655615621712059,-4.629290277138352,-3.9031137535348535,-4.533669976051897,-5.225095129571855,-5.693807168863714,-6.323903428390622,-6.937402134761214,-6.973757292609662,-7.00771358050406,-7.672711256425828,-8.064821084029973,-7.516783069819212,-7.6944975894875824,-8.553723054472357,-9.218330193310976,-8.776694392319769,-7.838613828178495,-8.30944084841758,-8.199691157788038,-8.08847822016105,-7.423621844500303,-7.743290943559259,-8.036436157301068,-8.284157718997449,-8.63965540472418,-8.204438524786383,-8.573018547613174,-8.972942526917905,-9.517123950645328,-9.302044603973627,-9.893545040860772,-10.174757055006921,-9.585785259958357,-10.019460749812424,-10.17391990404576,-9.721452601719648,-9.585520282853395,-8.95966546330601,-8.457693185191602,-9.324265208095312,-9.116890660021454,-9.75454846676439,-10.035328730475157,-10.577878116164356,-10.571601215284318,-11.259550595656037,-12.027960847131908,-11.855397047940642,-12.829866988118738,-13.173577022738755,-12.793663699179888,-13.19972192728892,-12.609193086158484,-11.97090843692422,-11.920870061032474,-12.897818215191364,-13.679686540737748,-13.723036520648748,-13.029874479398131,-12.209886835888028,-11.439882223960012,-10.802750641480088,-10.864755216054618,-10.840588222723454,-11.585081257857382,-12.150801196694374,-12.86272847885266,-13.521448354702443,-13.551755981519818,-14.527857157867402,-14.61567553691566,-14.953528324142098,-14.523541592527181,-14.63844251120463,-15.248868360649794,-14.261898955330253,-13.772837966214865,-14.709465796127915,-14.429887348785996,-14.228075869847089,-14.350177457556129,-14.090648971963674,-14.231769926380366,-14.821355851832777,-14.401918844785541,-14.712198685854673,-13.976088750641793,-14.088037233334035,-14.427369410172105,-15.123057015240192,-15.846825993154198,-16.59110434865579,-16.684715854469687,-15.786396783776581,-15.309494361281395,-14.908719643484801,-15.352564301341772,-16.168298644013703,-16.529554759152234,-16.68013291247189,-17.48074475908652,-16.99658120656386,-17.78671340458095,-18.704896107316017,-17.747693615499884,-17.78127381950617,-17.31869491143152,-18.07076305244118,-17.1572706210427,-17.401437951717526,-18.052137564402074,-18.361677589360625,-18.001856088172644,-17.92250007018447,-18.37397301150486,-17.436381683219224,-16.630156330764294,-16.58848994364962,-16.49138418165967,-16.522141199093312,-16.613722212146968,-15.65970525983721,-15.992792534641922,-15.053176920395344,-14.86515890667215,-13.964694819878787,-13.76587998168543,-13.014845620840788,-12.367736064363271,-12.953155234456062,-12.145335903856903,-12.237704580649734,-12.02128915861249,-12.171745911706239,-11.515916470438242,-11.56199425412342,-11.240204511210322,-10.754023305140436,-11.177305930759758,-11.423999947495759,-11.194700609892607,-11.587330591864884,-10.634738921187818,-10.246688758488744,-10.965352832339704,-10.513336817268282,-10.929879905190319,-11.083678963128477,-11.805040147155523,-12.613517283461988,-13.459049657918513,-13.2846639174968,-13.222066222224385,-12.603268350474536,-11.975462011061609,-12.82902113487944,-12.67189401993528,-11.805185000877827,-11.866811565123498,-11.687832792289555,-12.184914165642112,-12.398070006631315,-12.909703510813415,-12.762514074333012,-13.178644858766347,-12.312502332031727,-13.03455312224105,-13.529414841439575,-13.175659340340644,-12.57582055637613,-13.006266948767006,-12.11413990566507,-12.472704279702157,-12.839421169366688,-12.769990683998913,-12.312990800943226,-12.417972837109119,-12.128213282674551,-12.799459693022072,-13.28023464139551,-13.755577419418842,-14.449257843196392,-15.410404295660555,-16.088412568438798,-16.37779573118314,-15.805296905338764,-16.388073381967843,-16.801323768217117,-17.36843791231513,-16.570275041740388,-16.2261255774647,-17.16962774656713,-17.062751651275903,-17.4715508883819,-17.45478650648147,-17.05565248755738,-17.15646905824542,-16.685530396644026,-17.325475928839296,-18.310259383171797,-18.63898764923215,-18.26746905501932,-17.947542826645076,-18.829615558497608,-18.91545626660809,-19.19312033429742,-18.372814607806504,-18.43397026648745,-18.027087685186416,-17.765497719869018,-18.050252836197615,-17.265420741867274,-17.069878184702247,-18.04352298285812,-17.73332169931382,-18.500737817026675,-19.39249772625044,-19.67488123429939,-20.270469947718084,-19.91947010345757,-19.557051579467952,-19.147915912326425,-18.19246354093775,-18.95361730037257,-19.750063072890043,-20.38817223580554,-21.123430746607482,-20.705863747745752,-21.124077043961734,-20.293865220621228,-19.96110673621297,-19.964310926850885,-19.710851980373263,-18.97704476257786,-18.684665962588042,-19.07820973172784,-19.374507824890316,-19.049992541316897,-19.44622019585222,-18.859684134367853,-18.150522402953357,-18.677153235301375,-19.495419367216527,-19.528254605364054,-20.119598791003227,-19.49595642928034,-19.016769973561168,-18.231503661721945,-18.666351259686053,-18.09166247257963,-18.491361647844315,-19.047232795972377,-18.16597563493997,-18.548434778582305,-17.70775036048144,-18.140851069707423,-17.334615217521787,-17.923188962507993,-17.892940614372492,-17.55614341935143,-16.71925385762006,-16.23575302446261,-16.22111175209284,-16.434520192909986,-16.18791750771925,-15.559463774319738,-14.983491702005267,-15.48095143539831,-14.835361859761178,-15.131924452260137,-15.055027861148119,-15.511301664169878,-15.217999399639666,-16.171695771627128,-15.28728882363066,-14.674421350471675,-14.244383678771555,-14.810804239008576,-14.028502947185189,-14.752970976755023,-15.253357088193297,-14.992887242231518,-14.294085054658353,-14.111924230586737,-14.397447817958891,-14.37341356324032,-14.988600060809404,-15.459551153704524,-15.510805607773364,-15.498530675191432,-15.01667342428118,-15.254783162847161,-15.225821963045746,-14.399300931021571,-14.123892254196107,-13.127975594252348,-12.538041073363274,-12.981034777592868,-12.559909057803452,-13.542577057611197,-13.1888675596565,-13.775000538676977,-14.184900539927185,-13.86628210823983,-13.594359384849668,-13.907876640558243,-13.678307774942368,-14.311058317311108,-14.02633984806016,-13.114435941446573,-12.225589687936008,-11.40199319506064,-11.600300254300237,-11.595972946379334,-11.419333685655147,-10.544181541074067,-10.745221387129277,-11.125034248456359,-10.77426786813885,-11.39954998344183,-11.715997398365289,-12.385009918827564,-12.411665777210146,-12.613868735730648,-13.36428484832868,-12.797809219453484,-12.559751052875072,-13.371978501789272,-12.447152867447585,-12.370816237293184,-11.881280675530434,-11.712196149397641,-12.24449961213395,-12.520143548026681,-13.116193701513112,-13.189700604882091,-12.869331683032215,-12.036744313780218,-11.786031452473253,-12.565155366901308,-11.760928442701697,-12.376082956325263,-11.552666466217488,-11.39466961612925,-12.036394089926034,-11.056905653793365,-10.601042092312127,-10.112928093411028,-9.464228947181255,-9.336809786502272,-10.21816953830421,-10.876932790968567,-10.20457719406113,-11.094752298202366,-11.968989857006818,-11.768253928050399,-10.846024389378726,-10.191329970955849,-9.414084560237825,-8.521212900523096,-9.416710025630891,-10.313195725437254,-9.543596063740551,-10.266808011103421,-9.592490087263286,-9.354505645576864,-10.018574537243694,-9.9953294810839,-9.842545227147639,-9.075695875566453,-9.644694187212735,-9.093804320786148,-9.796990369446576,-10.213078985456377,-9.56271492689848,-8.581515981815755,-8.75444824853912,-8.829104820266366,-8.343727180734277,-8.904322093352675,-9.065122416708618,-9.937172550242394,-10.833917865063995,-9.907383709680289,-9.595626012422144,-9.654213753994554,-9.797018346842378,-8.82339334115386,-8.923712493851781,-8.562872739043087,-9.203208598308265,-8.29347050236538,-7.8066285494714975,-7.093031672760844,-7.636001333128661,-7.4949118588119745,-6.947809672448784,-6.963916796259582,-6.532910260837525,-6.879628408700228,-7.7030956200324,-7.234953686129302,-7.121670518536121,-7.296483307145536,-6.527200560551137,-6.030551453586668,-6.146102682687342,-6.130448189564049,-7.112025679089129,-6.200067607685924,-6.58845295291394,-5.796893721446395,-5.664159398525953,-6.411081755068153,-7.369151014368981,-7.959586658049375,-8.123781536705792,-7.461797786876559,-8.031033393926919,-8.355364955496043,-8.699637908488512,-8.900797181297094,-8.561492627020925,-8.190679663792253,-8.92041880171746,-9.33609017683193,-9.499018078669906,-8.607369862496853,-9.194328647106886,-10.106497482862324,-10.323746134527028,-9.623424366116524,-9.370672468096018,-9.558568126522005,-9.93408425943926,-10.61752509418875,-9.64667460648343,-8.929998811334372,-8.881197969429195,-8.374619574286044,-8.79097706079483,-9.641955177299678,-9.805203137453645,-9.016206527128816,-8.25353908073157,-7.6829365179874,-7.119767437223345,-6.162470208480954,-6.719512609764934,-7.386856010649353,-7.489737629424781,-8.278521839529276,-8.423025630880147,-8.913201756309718,-8.8334777248092,-9.50188715197146,-8.782993536442518,-9.605231581255794,-10.04161806916818,-10.049730374012142,-9.507919135969132,-8.591393077746034,-8.237713450565934,-9.161835018079728,-8.66028188727796,-8.396846916992217,-8.476687828078866,-8.116253218147904,-7.598657705821097,-7.606876480393112,-7.861964441370219,-6.869422558695078,-6.081052443943918,-6.160949510522187,-5.485665743239224,-5.565030126366764,-6.39940290292725,-5.5696817161515355,-5.803480159025639,-5.578591740690172,-6.473310717381537,-5.769439870491624,-6.534397233743221,-6.857452284079045,-7.135034504812211,-7.15802075015381,-6.477710984181613,-6.768988344352692,-7.381939664017409,-7.56488837627694,-8.518052187282592,-7.920593598857522,-8.258931946009398,-8.011214835103601,-8.424816319718957,-8.19684645626694,-9.043234695214778,-9.055845036171377,-8.979781746864319,-8.185901703312993,-7.497950255870819,-6.737462915945798,-7.2105366927571595,-7.993399371393025,-8.439967882353812,-8.450466700829566,-8.096790785901248,-7.932105157058686,-6.946171355899423,-6.006151847075671,-5.7342892666347325,-4.879284004680812,-4.17273562354967,-5.047847482375801,-5.025578135158867,-4.028916656039655,-3.4034551735967398,-4.003570242784917,-3.124093516729772,-2.331859866157174,-1.7972888499498367,-0.797778494656086,-1.4105520006269217,-1.559697330929339,-2.204331858549267,-1.4856337709352374,-2.038076794706285,-1.3036844194866717,-1.9017497412860394,-2.355814801994711,-1.8320948984473944,-1.0658762576058507,-0.6046188101172447,-0.7329065529629588,-0.6340072103776038,-0.06811136472970247,0.32678901217877865,0.017737948335707188,-0.5677951970137656,0.2942199008539319,0.47296103881672025,0.12551939068362117,-0.5897646909579635,-1.3584686163812876,-1.3670545411296189,-0.5357481124810874,-0.3076611114665866,-0.3581223599612713,-1.1959367501549423,-1.414891795720905,-0.45890434738248587,0.40072210039943457,1.3749335487373173,1.995727569796145,2.858267630916089,2.704058379866183,2.075967323500663,1.8910937956534326,0.9929283228702843,0.8317369702272117,1.3877506502903998,0.6533211590722203,0.28691033739596605,0.5999948480166495,0.5160842067562044,0.38978129671886563,-0.06312161032110453,-0.6300283647142351,-1.495154562406242,-1.223519823513925,-0.8695844202302396,0.05043327994644642,0.8327225744724274,1.11399941239506,0.23495090566575527,1.0759105831384659,1.4014781420119107,1.7835954213514924,2.2028287732973695,1.3910118755884469,1.2330941525287926,0.3628850858658552,-0.5858860076405108,-1.0528853856958449,-0.27406651759520173,0.08729537762701511,1.036833697464317,0.17750786943361163,0.6805919972248375,0.5951558412052691,-0.3675762303173542,-0.24920100113376975,-0.7357674832455814,-0.2448615413159132,-0.9927144320681691,-1.1808986873365939,-1.4285920397378504,-0.5478511764667928,-1.4315917766653001,-0.4771804162301123,0.010843801312148571,-0.14729426335543394,0.16028083162382245,0.62881368258968,0.3334889472462237,0.494508923497051,1.1601640153676271,1.14344068383798,1.3132630931213498,0.949337238445878,0.7291256817989051,0.9337321873754263,1.231266550719738,1.9484385196119547,1.664295264519751,2.2485498967580497,1.2818444836884737,1.41237599728629,1.0899741342291236,0.898171178996563,1.6172533412463963,2.2733738841488957,2.4189556343480945,2.0303861792199314,1.2792673646472394,1.6559115354903042,2.62289037136361,3.122382109053433,2.952769218944013,3.491193710360676,3.1605971213430166,2.334059253334999,3.161947287619114,3.6869190870784223,4.236661923583597,4.974045534618199,5.857906135730445,6.0673903110437095,6.4084573136642575,6.877023255918175,6.267708528786898,6.434749019797891,6.404206809587777,7.196155632380396,6.230314312968403,7.044307039119303,6.306241339538246,6.484492364805192,6.539413002319634,7.182785336859524,6.186781547963619,6.35339383687824,5.8280532178469,6.0429055406712,6.555209969170392,6.867259074468166,7.380295443814248,7.009618390817195,6.196078323759139,6.755796282086521,5.938256404362619,5.8464604476466775,6.36800495814532,6.187080888543278,7.062868066132069,7.299935502000153,6.9534270954318345,7.151959908660501,6.982894009444863,7.825434805359691,7.762035590596497,7.361037258058786,7.423214276321232,7.173308815341443,6.393192755524069,5.944815267808735,5.671451982110739,6.145641115494072,6.599215794354677,6.080046000890434,6.837709198240191,7.237616127822548,6.640108383260667,6.062578602693975,6.324411266949028,5.69952298514545,6.024407128803432,6.468052342068404,6.136827988550067,5.191978594753891,4.213899010792375,4.109818188007921,4.280581453815103,4.087072633206844,3.680163618642837,3.0102915107272565,3.4064135826192796,2.6246953099034727,1.9482277343049645,2.657829445786774,1.9822586779482663,2.7564239175990224,2.857606009580195,2.8484974899329245,2.7340664765797555,2.2834882996976376,2.4520194521173835,1.7720050495117903,2.5342061314731836,1.764591214247048,1.9588741529732943,1.1597884679213166,0.6949260733090341,0.8258090671151876,1.3665519086644053,1.820223005488515,2.2497902596369386,1.482396217994392,2.25529866758734,1.8776505277492106,2.2852566107176244,2.0193903353065252,2.759821510873735,3.16175848711282,2.2519334205426276,2.973827042616904,3.351369898300618,4.031086322851479,4.6466328129172325,4.398135881405324,5.1941969092004,5.957853211089969,6.805574107915163,6.102822722867131,5.811775431968272,5.5471449894830585,6.155531190335751,7.109402982052416,7.020554906688631,6.330720315221697,5.854419382754713,5.313406107015908,4.7140733427368104,3.7791797518730164,3.85394289996475,4.706696255132556,5.393227402120829,5.510147339198738,4.8702305112965405,4.190530641004443,4.2307644370011985,5.0853141406551,5.761389586143196,5.4776770155876875,4.90162153262645,4.4560067392885685,4.929914148990065,4.484031406696886,3.9742381796240807,4.1858801282942295,3.2182112988084555,3.897853638511151,4.2897834116593,5.267066887579858,5.833605760708451,6.8141431636177,7.4602849134244025,6.938521943520755,7.110948560293764,7.431601109914482,8.064083545003086,7.8805721225216985,8.139898024965078,7.749094838742167,8.368689090013504,7.95031225355342,7.3404368120245636,8.107593977358192,8.779258573427796,9.76207501674071,9.701568962540478,10.177294314373285,10.341719336342067,10.033583224751055,9.285059278830886,9.704692641273141,9.471280460711569,10.369038822129369,10.370863847900182,9.580782942008227,8.608237002044916,7.756998648867011,8.613825780339539,8.650672854389995,9.03719964902848,9.674205952323973,10.278547437861562,10.316678117960691,9.874515692237765,10.395708673633635,10.103747984860092,9.572173607069999,9.593822733964771,8.68776299804449,7.801901475992054,7.394643046893179,7.51218137005344,7.138365930877626,6.856438805349171,6.104730651248246,6.0872759013436735,6.700877950061113,6.968855535145849,7.585845107678324,6.931376795750111,7.013274932280183,6.961450984235853,6.789260767865926,7.659804145805538,7.109020343981683,6.620266909711063,5.831658455077559,5.460844794288278,6.0037656729109585,6.637801794335246,7.624778928235173,6.868445001076907,6.58529622014612,7.100731678772718,6.915283254813403,7.464502930641174,6.809072182979435,7.05935539258644,6.9731045686639845,6.548444242216647,6.712344555184245,6.647439563181251,7.135372842196375,7.517586919013411,6.868295539636165,7.031511138193309,6.674751461949199,5.921074357815087,6.56438561482355,5.896108971443027,5.543128513731062,5.344732373952866,4.3611600967124104,4.810436015482992,5.439004951156676,6.020234412979335,6.335575107485056,7.177311999257654,8.172967695631087,7.899541725870222,7.413369527086616,7.89517166139558,7.542349328286946,8.375327858142555,8.694742624182254,7.728690185584128,7.221966447774321,7.810025674756616,7.151886553969234,6.772033281624317,6.998999349307269,7.1220942446962,6.905250759795308,6.376732701435685,5.803884929977357,5.369194872211665,5.947803347371519,5.921699931379408,6.387457985430956,7.1254663821309805,7.665719170123339,8.493387177586555,9.444600509479642,10.258281187154353,10.884294119663537,10.003557786345482,10.39616407174617,11.286466332152486,11.164844193961471,11.77788448613137,11.495219792239368,11.335974738467485,12.330978938378394,12.325510242488235,12.23560084355995,11.278401686809957,11.28061562217772,11.849093813914806,12.395033627282828,12.626821101643145,13.529798858333379,13.474515593610704,13.980051805730909,14.660850119311363,15.23490504687652,15.539348877966404,16.262643753550947,16.41179760871455,16.267314192373306,15.714063074905425,15.539300612173975,15.27819281257689,14.875856768805534,15.27166697429493,15.412702784407884,15.422571732196957,14.870064700953662,15.13895046710968,14.537948857527226,13.890495748724788,13.4804931092076,14.25997741241008,13.945003138389438,14.471572819165885,14.116938928607851,14.963713543489575,15.343350966926664,16.00690915202722,16.31594355031848,17.11126654408872,16.729821009095758,16.45753496233374,16.416045795660466,16.135974982753396,15.967835189308971,15.927956881001592,16.409710205625743,17.145351532381028,16.801303912885487,15.91450449731201,15.850744088646024,16.527463257778436,17.244594543240964,16.965906586498022,17.92530111083761,18.370352043770254,17.986930239014328,17.852750204037875,17.203841039910913,17.29853252088651,17.423698589671403,17.74018016923219,18.564606939908117,19.31615180661902,18.32849572226405,18.473470566794276,19.074176713824272,19.944360974710435,20.26443263143301,20.107895149383694,19.60532840806991,18.723120131064206,19.04043679544702,19.317065458279103,20.229300152044743,20.297984211239964,19.799848871305585,19.09164301585406,19.19550982536748,19.35267051961273,19.192769799847156,19.609679210931063,19.199719253461808,20.110147626139224,20.233195550274104,20.818697051145136,19.894928882364184,19.282143141143024,18.54778322344646,17.799894432537258,16.81900791777298,15.887226161547005,16.826064434368163,17.679261981509626,18.29742683423683,17.5765660693869,18.229024359956384,17.376001049764454,17.362598570995033,17.77732625324279,17.58716448675841,17.26318978331983,17.435749802272767,17.826581206172705,18.743887298274785,18.66382988030091,19.490227587986737,19.564569907728583,19.416627917904407,19.209854234941304,18.266203071456403,17.661447706166655,17.25262651918456,16.99891123222187,16.118527575861663,15.574969385750592,14.754105773754418,14.952588126529008,14.813310144469142,15.338979495223612,14.80814459361136,15.28247715998441,15.857419948559254,16.560942920390517,16.0766754145734,17.038413864560425,16.939060072414577,17.283392616081983,16.794769042171538,16.415711237117648,16.88691209955141,16.045844353735447,16.171233594417572,15.399359528440982,15.74170819716528,16.145493855234236,15.204226514324546,15.927644398529083,15.650738997850567,15.441130028571934,14.797906754072756,15.130280652083457,14.689920037984848,14.0266490932554,13.440910930745304,12.917506045196205,13.553630067966878,12.772760352119803,13.221255952026695,13.047859483398497,12.272374069318175,12.935359362047166,12.139563094358891,11.427668645046651,10.623089731670916,10.842659288551658,11.207617301028222,10.250940295867622,10.75565118668601,10.937879083212465,11.680792499799281,11.756071304902434,11.088185262400657,10.705275806598365,10.7556775463745,11.469794746022671,11.508935836609453,11.125005421228707,12.011629445943981,12.56325500458479,12.649821235332638,12.432963154744357,12.124153221026063,12.901674459688365,12.891831366345286,13.333209317643195,13.245754840783775,13.044725166168064,13.645837094634771,13.083857704419643,14.034395795315504,15.03151733521372,15.032339069992304,16.031821643467993,15.13591270847246,14.323725437745452,13.331558195874095,12.892508876509964,11.991942746564746,12.872383842710406,12.185193434823304,13.140763964504004,12.925519553013146,12.415240031667054,12.798556855414063,12.751317219343036,13.079454141668975,12.697942113503814,13.132821107748896,13.854943234939128,13.822682621888816,14.301881493534893,14.020342367701232,13.744432501029223,12.791417652741075,13.170902261510491,14.148144997190684,14.763878853060305,13.841107859741896,13.42832471942529,13.60823123762384,14.129551094956696,15.098461518995464,15.874950220342726,15.925291929394007,15.402767789084464,16.007676981389523,16.64099571062252,16.00994774280116,16.71316055394709,17.613949689548463,16.64385576825589,17.462948731612414,18.185881895478815,17.600682822056115,17.29209860926494,16.871502853929996,15.883601328823715,15.096694563515484,15.005673286039382,16.00481203990057,15.680722335819155,14.69974500220269,15.112723390571773,14.422755241394043,14.742178643587977,13.876306192018092,13.03237354522571,12.895545242819935,12.071451611351222,11.544334526639432,11.171840395778418,10.539149701129645,10.263358662836254,10.983453436754644,11.358512520324439,12.241369449999183,12.553264408372343,12.915436339564621,12.633844287134707,12.864953837823123,13.382502659689635,14.287540623452514,13.440313403960317,12.83077648282051,12.87845365377143,13.224821212235838,12.633614807855338,11.956003308296204,11.09506603423506,11.385202811099589,10.585985870100558,10.450482999905944,10.329229200724512,9.659733375068754,9.692957542371005,9.278516626451164,8.52932106424123,8.985454396344721,8.24450598936528,8.820227866061032,9.402654809877276,8.84313102811575,8.986744539812207,9.022001049481332,8.738285841885954,7.834310193080455,8.376033685635775,8.07266297051683,8.606082688551396,8.046227938961238,8.71754243131727,7.969506962690502,7.343774784356356,7.6864968915469944,7.955298195593059,8.620372849982232,7.6631322228349745,7.260935660917312,6.984675956889987,5.99529585801065,6.603883457370102,6.552537029143423,7.0427204496227205,6.416547712869942,6.3851485420018435,7.301037723198533,6.596119580324739,5.646093446295708,6.398425484541804,7.221258224453777,6.44023458333686,6.080094326753169,6.975769612006843,6.265930169727653,5.476643138099462,5.224008093588054,5.544803108088672,5.280317219439894,4.889778850134462,4.477532302029431,5.175837824586779,4.9925839132629335,4.057821075897664,4.818805331364274,3.9887914527207613,4.953547240700573,4.870717620011419,3.9114118991419673,4.2013265560381114,4.237728465814143,4.632930610328913,5.426095817238092,4.677947472780943,4.208791742101312,4.883337509352714,3.914987552445382,3.3087728461250663,3.070777075830847,3.3593258862383664,4.327442219015211,3.3812680463306606,3.5203975490294397,4.127822713460773,4.242285853251815,3.6829896378330886,3.4324284219183028,2.6438773232512176,3.558978117071092,3.7099421960301697,3.6277431463822722,4.616559776011854,5.269446230959147,4.719739110674709,5.015633794013411,4.251016383990645,4.669591982848942,4.473187492694706,4.676799286156893,5.58270173612982,6.225004767533392,7.008525184355676,6.663452082313597,6.507298585493118,7.175520726013929,6.248326171655208,5.33630603319034,4.757461760658771,4.316322450060397,3.3513314886949956,4.108228037599474,4.056118781212717,4.288740098010749,5.207575373817235,4.216170490253717,3.708826043177396,2.890037558041513,2.547112863510847,2.1651788097806275,2.2362356414087117,1.3740890100598335,0.7979137441143394,1.071291939355433,0.35312467347830534,-0.30472028348594904,-0.8056765361689031,-1.2545631946995854,-2.07070293975994,-1.3703645626083016,-1.3677020124159753,-1.8934191800653934,-1.1277621807530522,-0.32242604345083237,-0.5985011509619653,-1.3748387130908668,-1.4893609322607517,-1.0383472731336951,-1.8466308279894292,-1.3757872343994677,-1.7377889463678002,-1.486999474465847,-0.5964666288346052,-0.7235511769540608,-0.1612759167328477,0.4234597785398364,0.08054408337920904,-0.07379901874810457,0.7469009337946773,0.10706166084855795,-0.35796755691990256,-0.2514681280590594,-0.22440812829881907,-1.2033611545339227,-1.567178645171225,-2.5262073511257768,-2.335864609107375,-1.336117944214493,-0.7362094442360103,-1.28067089850083,-2.179724987130612,-1.350372752174735,-2.242190732154995,-2.9553405377082527,-2.51765971025452,-3.2368351495824754,-3.7306146640330553,-3.6018142635002732,-3.741533517371863,-2.7972136829048395,-2.694723792374134,-3.26512818178162,-3.9780978308990598,-3.9613769869320095,-3.773625176399946,-4.562273203395307,-4.855730491224676,-3.895184736698866,-3.91975009534508,-4.018754045944661,-3.9685357371345162,-4.185318042524159,-3.198092006146908,-3.966518484055996,-4.619646914768964,-4.118781702592969,-4.608880533836782,-4.9579175733961165,-4.459250890184194,-5.086052013095468,-4.189209342002869,-3.8316296273842454,-3.2011990156024694,-4.0915498291142285,-3.1181470593437552,-2.1914248527027667,-2.5729266717098653,-2.3276800122112036,-1.8894243561662734,-1.558754321653396,-2.273601131513715,-1.6321827452629805,-1.2061617076396942,-0.48266378650441766,-0.8166685574688017,-0.3468441227450967,0.38376279175281525,0.7704895036295056,1.0512529029510915,1.8940464123152196,2.8888056385330856,2.6560818571597338,2.7746593421325088,2.6533542005345225,3.456491833087057,2.9035246572457254,3.7113961544819176,4.467769770883024,4.549374180845916,4.669034194666892,4.598093694075942,3.8667704509571195,4.2902214443311095,3.5799471298232675,3.8451044149696827,4.343380197882652,3.6193705261684954,3.553202564828098,2.6906732278876007,1.7414373829960823,1.8571229837834835,2.8211894035339355,2.262484054081142,1.4432865516282618,2.219565604813397,2.223392302170396,2.2992481612600386,1.4972779965028167,1.30129731958732,1.2706949417479336,1.0365489711984992,0.9071923149749637,0.5635587070137262,-0.12504278915002942,0.7654897226020694,0.03215590212494135,-0.8846349748782814,-1.3743151254020631,-2.3321383446455,-2.7179313404485583,-3.48730577994138,-2.7129154726862907,-3.34181344602257,-2.934206461068243,-3.264529331587255,-3.721866732928902,-3.2938755191862583,-2.4185149879194796,-3.3069353569298983,-4.0671545579098165,-3.855643856804818,-3.8227916909381747,-3.259638295508921,-3.4918758417479694,-3.0209107431583107,-2.447291450574994,-1.9629048029892147,-1.0859592254273593,-1.4835455068387091,-1.5672525805421174,-2.390827933792025,-3.1337025677785277,-3.4221503101289272,-3.790270338766277,-4.381983402650803,-5.082274141255766,-4.43417851254344,-4.440604178234935,-3.7540689422748983,-3.0123709784820676,-2.1652277689427137,-1.2379074823111296,-2.1573499045334756,-2.1462303339503706,-2.6734547363594174,-2.5256998147815466,-3.0698787891305983,-2.678313431330025,-1.8734787097200751,-1.8979480545967817,-0.9033863036893308,-1.7358146542683244,-0.7899012328125536,-0.11518892925232649,-0.2599440119229257,0.5604092618450522,1.448579782154411,2.4165854160673916,1.5464491690509021,1.8208212540484965,1.9185491525568068,1.4470337387174368,1.0074080061167479,0.4083375111222267,0.1263446300290525,0.794501768425107,-0.15881257271394134,-0.22948630573228002,-0.14606211613863707,-0.4201252283528447,-0.8547524544410408,0.020570937544107437,-0.059292534831911325,-1.0346387079916894,-1.2936506518162787,-0.8866769559681416,-0.3237756611779332,-0.12294400343671441,0.8572627273388207,0.3294312907382846,1.1304243551567197,1.8857599142938852,2.569328287616372,1.770030991639942,2.609625902492553,1.8540049125440419,2.2024718592874706,2.2065761336125433,1.4211885640397668,1.7975721964612603,2.3227673787623644,1.6502067716792226,2.3237633681856096,2.5716370712034404,3.4873106949962676,4.06608997611329,3.423447536304593,3.9762489409185946,4.815268699545413,5.161917498335242,6.003178806975484,6.82599190576002,6.276266335044056,5.750784169882536,5.4483918896876276,5.631567679811269,4.697460155002773,5.667663388419896,5.243523603770882,6.21097433147952,6.864314511418343,7.689157410059124,6.788291424047202,6.732032793108374,7.267929474823177,7.013818962965161,6.910589370410889,7.6891486486420035,7.645774108823389,8.339436215814203,7.589885327033699,7.562427343800664,8.445298935752362,8.776128034107387,9.720436409581453,9.37580639636144,9.076143713202327,8.47090258449316,9.079078167676926,9.73908368917182,9.72556977858767,9.7342440597713,9.034065731335431,8.850324108731002,9.822421929333359,9.660845073405653,10.33176212059334,9.869956905953586,9.388857347425073,10.106373816728592,11.047494327183813,10.442701386287808,10.725038428325206,9.985042873304337,9.58585346583277,8.851185573730618,9.519759715069085,8.651591149158776,9.248774495907128,10.055653595831245,10.972616631537676,11.887316010892391,12.073751315940171,11.670409376733005,11.543331766501069,11.308269567321986,10.8993128715083,11.483378703240305,10.824315628036857,10.11396148474887,9.620405607391149,10.322756940498948,10.018918006215245,10.34233705792576,10.25898267980665,9.873016387224197,10.144062347710133,10.498490265570581,9.720537479501218,10.469841470941901,10.315961871761829,10.98286678083241,11.836007076315582,11.125538049731404,11.615291728172451,11.702379444148391,12.23588256817311,13.027213496621698,12.174991767387837,12.036085649393499,12.756256907247007,12.726781907957047,12.265480033122003,12.730441946536303,12.884402692317963,12.661563166882843,12.342535343486816,11.81924871681258,12.279356793034822,11.367740897927433,10.646244116593152,11.187204391695559,10.489470524713397,11.412485395558178,11.169831453822553,12.029095969628543,12.609103951603174,13.537772231269628,13.48174380324781,12.680039654485881,12.3772320500575,11.802061080466956,11.530215304810554,10.975906973704696,11.674766605254263,12.239112347830087,12.624995861202478,12.068691180087626,12.321652201004326,12.413630476687104,13.37076780339703,12.857973424252123,13.085293393116444,12.15197614300996,12.843397499527782,12.336530698928982,11.779751520603895,10.807646080851555,10.58649974083528,11.080634257290512,11.052368842530996,10.695921340957284,10.832389611750841,11.515163155738264,11.688627858646214,11.141515054740012,12.072156506124884,12.967411165125668,12.633762123528868,12.97503379965201,13.789991924539208,13.886099654715508,13.611985087860376,12.934583981521428,13.798309040255845,13.290689062792808,12.630691825877875,12.27527527185157,11.713735199067742,11.805196147412062,12.458754127379507,12.19267989974469,12.654558088630438,12.170275986660272,12.504062823019922,12.844552839174867,12.982751292176545,12.215474489144981,12.5203325599432,11.53215168369934,10.940559139475226,10.889380900654942,11.21855897968635,11.725137498229742,11.71395954489708,11.03217688947916,10.904399683699012,11.894686775282025,12.33042713906616,12.184310724027455,11.274048986379057,11.763344929087907,11.689428558573127,10.770729481708258,10.991276918910444,11.719316818285733,12.507653285283595,13.205450585577637,12.87614608835429,12.977473280392587,12.908397336490452,12.755767009686679,12.065003321506083,12.269438897725195,11.872378051280975,11.780752032063901,11.185376027133316,11.298614759463817,11.76208125287667,10.820519824046642,10.42973509663716,10.379625255707651,10.458332859445363,9.65917123714462,10.172865578904748,9.785283270757645,10.672018628101796,11.30941854743287,11.781586981378496,12.733914901968092,13.056562451645732,12.85411784099415,13.430129793472588,13.05499631818384,12.548758055083454,11.690360599663109,11.04568592319265,11.105597626417875,10.5831339629367,11.364321945700794,11.77681810921058,12.094258564524353,12.35205592121929,13.036060924176127,13.13896134775132,12.199310556054115,12.041963929776102,12.60104000940919,13.087711923290044,13.377313987351954,13.35753921745345,14.330153416842222,13.91315799485892,14.394747206941247,14.272049183491617,14.77512126462534,15.483055115211755,16.29446502169594,15.595193336717784,15.278572699055076,16.10306958341971,16.133609770797193,16.67493825778365,16.38716426724568,16.759919526986778,15.889661426655948,15.43202600441873,16.02095017954707,16.971154780127108,16.63258575554937,16.57534371642396,17.538095080759376,16.709949609357864,16.44148120144382,16.822049817070365,16.912765685468912,16.966746017802507,16.94311395753175,16.222213063389063,16.740305892191827,17.29285330977291,16.9100335361436,16.262491875328124,16.42639801930636,15.497250371146947,14.678237326443195,15.405536005739123,14.822060073260218,14.323902547825128,13.944836796727031,13.967926856130362,13.290745815262198,13.36267295666039,14.318923605140299,14.770709678996354,14.1136119896546,15.012787563726306,14.829889786429703,14.435879071243107,14.295625970233232,14.633386695291847,14.462357085663825,15.35634260578081,14.624805694911629,13.69940830534324,13.859918957110494,14.507569493260235,14.474027602002025,13.647522632498294,13.653856220655143,12.917849059216678,13.53024910343811,12.68139418354258,13.17183498898521,13.974337353836745,14.73204247141257,14.784106615465134,15.458867871202528,15.718955093063414,15.494740150868893,14.712222502101213,15.383276785723865,15.377169771119952,15.015241988934577,15.204603536054492,15.188916678540409,14.270133441779763,13.644960146397352,14.37794910138473,13.704549582209438,14.21727809915319,14.405431767459959,14.472336420789361,15.074348045513034,15.10219084797427,15.972402766812593,16.805541317909956,17.45416727848351,16.543713566381484,16.65061088092625,17.26656694058329,17.642317350022495,18.229264956433326,18.040750851854682,17.178983896039426,17.857189087662846,17.12644034344703,16.736868887208402,16.494670808315277,15.521785930264741,14.948538318742067,14.737096193712205,14.385366216301918,14.171838190872222,13.693599397316575,13.187058732379228,12.408656186424196,13.31971237482503,14.126448578201234,14.660383126698434,15.60135910147801,16.0305791310966,16.182977851945907,16.270666026044637,15.607015188783407,15.647062039934099,15.427914078813046,15.535817676223814,16.274551208131015,16.792558039538562,16.057529914192855,16.645560316741467,16.698819195851684,16.367738683708012,17.259145956952125,16.705023236572742,16.101528058294207,15.734798592049628,15.067327610682696,15.986983011476696,15.772835201583803,15.577171308454126,15.33225915580988,16.113564820494503,15.142784240655601,15.017779808491468,15.9415736743249,16.09926482150331,17.086527136620134,17.69274738430977,17.094887578394264,17.81906416034326,17.683753377757967,17.571489276364446,17.645730043761432,16.885316285304725,17.20487371366471,17.98297265218571,17.49331092974171,17.520820817910135,17.183414662256837,18.128292192704976,18.099355041980743,18.254908265080303,17.91692523052916,18.384257887490094,17.770176894962788,17.32361702620983,17.79286427469924,17.50987432897091,17.18927239254117,17.937804179266095,17.86236994760111,18.484557860530913,18.211557558272034,19.004448590334505,18.329431315418333,17.85393769852817,16.874952096492052,16.91415052069351,17.89923727279529,17.213169990107417,17.107253505848348,17.26594630908221,17.949742277152836,18.2133220997639,18.27454028883949,17.384639737661928,18.287640421651304,17.403584262356162,16.580792168620974,16.878607731312513,16.98038782691583,17.521512150764465,18.377486222423613,17.915395279880613,18.346093100029975,18.720471484586596,18.19329511700198,17.377020804211497,17.73373800655827,18.48758952645585,19.06652728514746,18.16577892145142,18.960439059883356,18.143589955288917,17.379072167910635,17.57954525994137,18.428473914973438,19.00700030941516,18.625511889811605,17.897289782762527,17.865573038812727,17.78804223611951,18.362182972952724,19.243169074412435,19.457244026008993,20.236353134270757,19.805138592608273,20.36521836509928,20.3689627898857,19.887097612489015,19.647668001241982,18.808566538617015,18.47203800966963,18.22028547944501,19.14017669437453,18.697024746332318,17.959806241560727,18.44197383057326,18.434425489977002,19.27772501297295,19.189422060735524,19.03354279883206,19.481834983453155,18.70072766346857,18.687153733335435,17.841387630440295,18.113769790157676,18.6451574312523,17.80190664064139,17.01480211922899,17.20471183117479,16.840718986000866,17.63429916743189,18.408106775954366,18.833559879101813,19.737482628785074,20.374180974438787,20.238277707248926,19.54294372210279,20.429534532129765,19.519044521264732,19.030892660841346,18.11776482500136,18.37355870101601,18.22530807973817,18.986334257293493,18.785117311868817,17.994746106676757,18.27625812543556,18.64854338299483,19.16479625366628,18.96281905192882,18.875905368477106,18.33708842843771,19.19514452246949,18.830746163148433,19.48717409139499,20.261817335151136,19.944256199058145,19.574556171894073,20.567979387473315,21.235166320577264,21.481065082829446,21.011578671168536,22.004619027487934,21.195395608898252,21.214565730188042,20.428370416164398,19.85995537508279,19.336323988158256,19.142125200945884,18.97927327780053,18.130527193192393,17.41129827219993,16.5843498990871,16.47276199935004,15.760153264272958,16.130553788971156,16.339703008066863,16.428752889391035,16.159227730240673,16.450299795717,17.444739834405482,17.04916938301176,16.938170669134706,16.91403437172994,17.68177055986598,17.295488900505006,18.167471491266042,17.569262171164155,18.56858641235158,17.78951018769294,18.17886502854526,19.09372154204175,19.095281335525215,18.642304682172835,17.76535320840776,18.10884444275871,18.322612496558577,19.178992315661162,19.750669991597533,20.30406584125012,19.73129272274673,20.678892224561423,21.427998926956207,21.942511595785618,22.099477956071496,23.07257052976638,22.761297584977,22.763464368879795,22.705178985837847,22.917513648513705,22.403982917778194,22.228411389980465,22.332777813076973,22.933581576682627,23.572070556227118,23.324527089018375,24.230481162201613,24.8376894723624,24.690384815447032,25.548138182144612,24.668218054808676,24.81364671466872,25.75343163171783,25.999172814190388,26.653031236026436,26.976336042862386,26.858793206512928,26.125674794893712,27.004543571267277,27.553278521168977,26.788917816244066,25.865123654715717,25.174010497517884,25.679033040069044,25.928813534323126,25.7735657771118,25.878951583988965,25.09668580116704,24.727501515764743,25.17682721046731,25.02622157195583,24.96321939257905,25.358178191352636,25.372953536454588,26.325922339688987,26.851220801472664,27.73878379026428,28.32265781518072,27.659089201129973,27.2144773080945,26.960217442829162,26.438121603801847,26.61948975455016,26.222526388708502,26.794175731018186,27.454582618549466,27.544758000876755,27.727370536886156,26.946950253099203,26.288604782428592,27.003363750409335,26.566654726862907,25.890413437969983,26.54611167917028,26.159812836442143,26.501383234746754,27.196313868742436,28.05070824827999,28.536850672680885,29.350571248214692,30.04163663368672,29.514697800390422,28.598729809746146,29.549371742177755,30.188834964297712,29.320916613098234,29.466853423509747,29.17876585992053,28.962271477095783,29.357383666560054,30.11250342335552,30.84755942551419,30.984017425216734,30.79641223885119,29.961527300532907,29.48902546055615,29.461803327314556,29.11731790844351,29.628077318891883,29.73390200920403,30.45784505456686,30.481704217847437,29.484696675091982,28.951586900278926,29.112424415070564,29.86463373992592,30.156602778006345,30.32450309675187,29.64127374999225,29.808578200638294,29.394618048798293,29.933562111109495,30.19528232421726,29.652812473475933,29.186791960150003,29.918496924452484,28.93515628017485,28.57462913170457,28.5864285742864,28.3752846759744,28.54986487561837,29.105337077286094,29.350201327819377,29.68039969401434,30.142938133794814,29.41186155937612,29.849427330773324,30.16561374347657,29.499378458131105,30.396974382922053,31.273833889048547,31.84071468980983,31.79833329329267,32.567422120366246,31.93639618018642,31.984511754941195,32.812369709368795,33.016128088347614,33.78923956491053,34.23698496585712,35.12437853123993,35.24155170144513,34.761760998982936,34.49148330511525,33.79708433151245,33.78008730523288,34.43436613120139,35.0862194262445,35.277402601670474,34.709205927327275,35.59782199840993,35.631714817136526,34.701761200558394,34.87002990907058,35.592332812491804,35.7393934186548,34.871998832561076,34.387887882534415,34.829485828988254,35.54625560855493,35.892066705971956,36.320289647206664,36.02441837033257,35.44591996772215,36.00830259965733,35.368479390162975,34.68509273091331,34.29178402153775,34.891978077124804,35.88129962142557,35.961148091591895,36.586501851677895,35.86921233590692,35.17433948116377,34.50037214392796,34.42725241230801,33.63354620663449,34.555885498877615,33.829447941854596,34.26356577081606,33.91487116692588,34.48601932870224,35.230919843539596,34.962440805044025,34.621363347861916,34.480146219953895,33.74772278778255,34.4677394349128,34.12172502372414,35.111432410776615,34.423752586357296,34.7812266536057,35.61977224517614,36.33412793511525,36.32937866449356,36.14333243994042,35.47612121189013,36.07619078224525,36.16335464641452,37.07430517207831,37.93994969828054,37.78885142179206,37.268275898415595,36.822754515334964,37.40219858661294,36.62634386494756,36.60348640102893,37.07836626050994,37.331836458761245,37.10717517603189,37.02012897981331,36.62966545578092,36.336078823544085,37.08956317603588,36.23838432878256,36.83970460575074,37.044917615130544,38.0086164069362,37.526351975277066,38.29003536468372,38.297686487901956,38.404926030896604,39.33243783330545,39.08292951108888,38.88711849413812,39.79150478122756,38.947114535141736,38.944858881644905,39.91267787385732,39.18304722150788,38.442121118772775,37.62267615646124,36.84992204234004,36.583681508898735,36.60633663274348,36.38266600621864,36.16143794031814,35.95621692528948,36.436527682002634,35.79264126997441,35.47455690521747,35.302089439705014,35.44096694607288,34.44234342640266,35.16001683054492,34.5718486988917,33.66798485349864,34.563639333005995,33.85463725915179,33.98409980582073,34.87709757545963,35.44703404651955,35.54795855982229,36.420056222938,36.3116868250072,36.413946779444814,37.05722716124728,37.83235709927976,37.26465956494212,37.79744586721063,38.12678771931678,37.82368848938495,38.48001900035888,37.57810116792098,36.63950754003599,37.58601578371599,36.684399333782494,36.23998523084447,35.59438639506698,35.61396990157664,35.27538312179968,35.09025350632146,34.734646804165095,35.41146036423743,36.014325357973576,35.87303864676505,35.84846542729065,34.95982689084485,34.010990193113685,33.44535030145198,33.89376263367012,33.98550436226651,34.6165290158242,34.08081425400451,33.41942753456533,33.832074051722884,33.689403960481286,34.23324347753078,34.815730629488826,33.92074211128056,34.67679477110505,34.28323341999203,34.94936769269407,35.02211203845218,34.41994477901608,35.386319018900394,36.0045066382736,35.16396541334689,35.82327678799629,35.03661032253876,34.19934751652181,34.55697999801487,34.33759759971872,33.486552075948566,34.075273148715496,33.47996763512492,34.185537891462445,34.74163055093959,34.40208221971989,35.244203315582126,34.25640176143497,33.46048298571259,33.76380195328966,34.175912144593894,34.2009136043489,35.08988783415407,35.17415681714192,34.528733760584146,33.815524007659405,33.42249983549118,33.39080772874877,34.106407627929,34.86046327743679,34.90797222359106,35.309678298421204,35.703937913291156,35.887753003742546,36.620677425991744,37.11763106333092,37.38314096117392,36.47590588033199,36.18417034111917,35.30303099891171,35.921804152429104,36.11343332845718,35.819474059622735,35.934981593396515,35.70090771652758,35.970520585775375,35.4508373090066,35.62421840801835,36.55354723567143,36.9071611687541,36.63559533189982,35.88697457918897,36.46854824386537,36.38254508422688,35.82836529240012,35.235810302663594,35.50299692945555,34.585089242551476,34.022075179964304,34.36297937622294,33.47657497925684,33.633091904222965,33.9986683181487,33.49758598115295,33.07905833283439,33.78264949610457,33.217383624985814,32.25484414771199,33.07710640691221,33.80848481087014,33.89007946662605,34.13327305391431,34.685961939860135,34.09497567033395,34.29718456743285,33.315540809649974,33.373506016563624,33.764710588846356,34.01574260601774,34.07514525670558,34.448337389621884,34.39137032488361,33.59244002541527,34.123563087545335,34.21545251691714,33.58679814077914,33.06880219420418,32.07998348539695,31.25332523183897,30.388141489122063,30.36643241904676,31.232779861427844,31.94939797418192,31.884891809429973,31.784427245147526,30.946505391038954,30.24584469664842,30.782021783292294,30.430095728486776,29.624614395666867,29.555116096977144,29.784502303227782,28.79448301717639,29.50980515172705,29.42438642727211,29.74677292164415,28.766067530959845,28.767299057450145,28.101355450693518,28.374681977089494,29.112889621406794,28.25699724070728,29.215996193233877,29.50384688610211,29.315640141256154,29.274538428056985,28.90560318948701,29.06784356199205,29.852478235028684,29.35041675204411,29.64608354959637,29.835539041552693,30.487829429563135,29.601179861463606,30.049963511992246,30.057848977856338,29.66240238910541,29.060136016458273,29.873917556367815,29.540935836266726,29.747198403347284,30.53676950186491,31.40288247494027,30.967630536295474,30.887490215245634,31.58432200131938,31.608056501485407,31.201186835300177,32.14714265847579,32.0149487266317,31.356846979819238,31.135852632578462,30.974356891121715,30.348675318993628,30.4068511929363,30.448142875451595,30.001015165355057,30.799594045616686,30.179363870993257,30.256403036881238,30.93163645407185,30.790123250801116,30.046797287650406,29.063779301010072,28.358758695889264,28.48219975689426,28.195762512274086,28.774368623271585,29.079216179903597,29.31219710689038,29.84201577724889,29.04381417296827,29.991182572674006,29.43019572366029,29.056633211206645,29.56134635163471,30.31494733924046,30.5437080161646,29.789493567775935,30.49470561556518,30.078557506669313,30.65052189026028,29.727797496598214,29.31763942167163,29.8091679867357,29.904582265298814,30.359404399059713,30.27159852720797,31.245607169810683,30.32383165275678,30.211545830126852,29.887539187911898,29.457489972002804,30.33015126688406,29.34205663949251,28.795983432326466,29.025351574644446,29.858008502051234,29.567271806299686,29.594368553254753,29.110576027538627,29.109227722045034,29.041478619910777,28.42572456272319,27.696851622778922,28.299251801799983,27.41050577815622,26.790878436062485,25.83630867768079,25.570248402189463,26.563211913220584,26.506684978026897,25.84031132981181,26.523014776408672,27.338859791401774,27.914591133594513,27.154791828710586,27.14654764952138,27.378538470249623,27.104163731448352,26.193661527708173,26.470807069912553,27.248892047908157,26.821855678688735,27.75828472431749,28.678074230905622,28.143902661744505,27.95773301180452,27.277403966523707,28.275085757486522,27.44143191492185,26.932939536403865,27.492907531559467,26.7116663265042,26.224690793082118,26.810042647179216,25.974500302691013,26.61315265810117,26.10538843041286,25.85538278752938,25.855383056681603,25.238364731892943,25.976393583696336,26.153378740418702,26.60866276687011,26.844876625575125,27.648215679451823,27.301503270864487,28.089763251133263,28.623744460754097,28.837048936169595,29.232425685040653,29.257744431030005,29.036084943450987,29.904646625276655,30.388575124554336,30.61316414317116,30.33672782033682,30.008867933414876,29.063985337037593,30.003885292448103,29.6085821473971,29.15670619579032,28.868262415751815,29.231240585446358,30.047184810973704,30.650658335071057,30.459810041822493,30.395343836862594,30.12513940455392,29.79886819422245,30.593104210216552,30.791711383499205,30.02894552098587,30.82367830630392,30.355930468533188,30.161563423462212,31.02613332681358,30.860350812785327,29.88892241101712,30.11237081233412,30.471164734568447,29.979848981834948,30.24502441799268,31.204261819366366,31.16501711960882,31.151026492007077,30.937918071635067,31.80246460950002,32.74277241155505,32.945226192474365,32.673525555524975,33.61990379029885,34.317823664750904,33.898316386621445,34.53106370009482,35.097820662893355,35.63084523612633,36.229092224966735,36.62499945797026,36.01525338087231,36.451890585012734,36.58034975966439,36.0514973080717,36.083487355615944,36.55231401510537,36.180845860391855,36.37764937756583,36.473525890149176,35.98226606659591,36.466420071199536,37.44043686846271,38.419317656196654,37.840910533908755,38.47619823878631,39.00796206435189,38.652543222531676,37.952036319766194,38.287515118252486,37.689285069238394,37.945605020970106,38.723759059328586,39.316853501833975,40.315789312589914,40.44231173815206,40.37172905635089,41.027511277236044,41.20944632589817,42.207396214362234,42.96262524649501,42.576236955821514,42.83351860754192,41.861164370551705,41.274693513754755,40.31229019444436,41.06668896880001,40.60803505871445,39.92115065641701,40.28441745135933,41.199044881854206,41.070351844187826,41.4282288774848,41.93981318734586,42.21596485283226,42.37465416453779,41.53632974997163,40.88373733125627,41.83073970768601,42.22842758754268,41.31398029951379,40.862365330103785,40.79049863247201,40.00960101373494,39.926289344672114,40.40871423529461,39.945453541819006,39.62907015578821,39.65076509676874,39.05566045595333,39.12618332495913,39.45752253104001,40.13103791186586,40.84459803113714,40.602475688792765,40.881925164721906,40.867766523733735,40.91249400889501,41.16367377946153,40.18891541054472,40.47610558057204,40.73145608371124,41.438610926736146,42.09558552969247,42.902171111200005,42.89395236643031,43.31592328008264,42.408660201821476,43.293889549560845,42.915387282148004,43.75111789489165,42.955152719747275,42.02698482433334,42.282337825745344,42.283459586557,42.015993505716324,41.807100406847894,41.66899321973324,40.82960765296593,41.447391271125525,41.87825531093404,40.98519039573148,40.15746646607295,40.672442799434066,40.74717607302591,40.79462752630934,39.984286507591605,40.2607436766848,40.63625237764791,40.06228284211829,40.699877904728055,40.805905169807374,41.311826296150684,41.459353882819414,42.10790017526597,42.826283431611955,42.86891398066655,43.569729754235595,43.075770295690745,42.4754057652317,42.65720891812816,42.9679889860563,42.082573554478586,41.787174705881625,41.37949664471671,40.544593748636544,40.39891471154988,40.89931606082246,40.01006670109928,39.10398482903838,38.62604486197233,38.87658368470147,39.21234164107591,39.43018585070968,39.42982752574608,39.165957800112665,38.19571029627696,38.91351695591584,39.7237631152384,40.52681681513786,41.316512254066765,41.58463201019913,41.653919998090714,42.35543857747689,41.60018482012674,42.06383040547371,41.41988406749442,40.51097928592935,40.3487845454365,41.01123882411048,41.798138013109565,41.922374272719026,42.34081761678681,42.77278167987242,43.643066458404064,42.98644367372617,43.403740568552166,43.84674136526883,42.990659188013524,43.671829029452056,43.58231419790536,43.344601538963616,44.16099079232663,44.85149976471439,44.556980102322996,44.6410653302446,44.71060865931213,45.2325041317381,45.903277054429054,45.94533553905785,46.89901210926473,47.80170442070812,47.63616806594655,48.44346106238663,48.52783955819905,48.546740451827645,47.738614074420184,47.973036892246455,48.334721436258405,49.08795219659805,49.16925314022228,49.791902588214725,49.22230898030102,48.88450601603836,49.84730201587081,50.47516947751865,51.27639517420903,50.403014990035444,49.791189945768565,49.301192751619965,50.187718094326556,51.07045420957729,51.65829656785354,51.23096195748076,51.36323087150231,51.81851621950045,51.746463391929865,52.0276912082918,51.41070864163339,51.487190978135914,51.04163304017857,51.685251199640334,51.57693521864712,51.263098721858114,51.58644504100084,52.14891324285418,52.21968478988856,52.358854436315596,51.50268511706963,52.15355985797942,52.68704081559554,53.19586834218353,53.92884393269196,53.72112880880013,53.703039932996035,54.10666395397857,54.35101146809757,53.52687694132328,53.03561735525727,52.867774948477745,52.2193989562802,51.3657190380618,51.78621025243774,52.18723804643378,51.50362244108692,51.92757473513484,52.832767012529075,53.26484137913212,54.25299280555919,53.8252555700019,53.72844306845218,53.92730156844482,53.3063905024901,54.29150595283136,54.429259084165096,53.96052377671003,53.6713508493267,54.225284022279084,54.967248351778835,54.995697177015245,54.22405376564711,53.82901393901557,54.10144059546292,53.56153397588059,52.8089155703783,52.53552181692794,52.182006548158824,51.75953846378252,51.13062306586653,51.04789861384779,50.70480675622821,50.94302122853696,50.44771190965548,50.27672314783558,50.61036053765565,50.94654917251319,51.66632990678772,51.4003368630074,51.256097118370235,51.383293302264065,50.50506871426478,50.882477345410734,50.1318950811401,50.765992674510926,51.66900468803942,51.213134080171585,50.98992682341486,51.94188622478396,51.25019879313186,51.558393029496074,50.7712701135315,51.326313021592796,50.868083538487554,50.09132413053885,49.79785001510754,50.528004597872496,50.47769874660298,50.08269582781941,49.36851382581517,49.05482082441449,48.80390359647572,48.41624621441588,47.94137647235766,47.92713999003172,47.97809467930347,48.707713533658534,49.433983558788896,48.864722297526896,48.149433254729956,47.36712225480005,46.91362338280305,46.90360164036974,46.83964229701087,47.10624283645302,47.65046109352261,47.21221698215231,46.69029219402,47.62505403487012,46.95210907422006,46.14749046554789,46.59704479575157,46.479630016256124,46.72604619944468,46.22570158587769,45.33455719426274,45.303719667717814,45.095429885201156,45.49671779433265,45.08531360048801,44.5628195842728,44.845375983044505,45.532854926772416,44.90449460083619,44.147735122125596,44.0321475956589,43.60110004525632,43.825894423760474,44.33531054155901,45.02208184916526,45.94988522073254,45.80992127582431,46.30560056352988,45.80850638449192,45.355965211521834,45.391250958666205,46.01473718928173,46.45922224596143,47.25985116744414,46.631842677947134,46.1999038439244,46.52035500667989,46.99972146283835,46.41479983879253,46.95999346440658,47.03212586790323,47.50838902313262,47.37757849134505,46.94462349452078,47.61433364963159,48.504257801454514,48.371297121979296,48.82312400592491,48.06094085145742,47.65866640070453,48.435897522140294,49.20951185747981,50.14328775694594,50.588338911533356,50.704147587064654,51.55556713603437,51.58554786024615,51.482028343714774,51.25729232933372,51.750335642602295,51.744844374246895,52.66118253627792,53.30292946798727,54.144374636467546,54.3826621202752,54.864643417764455,55.14239419111982,54.732043677940965,53.870804514270276,53.47479308350012,53.83142032427713,54.586906746495515,54.98561414377764,55.12767899502069,56.116638088133186,56.79692911589518,56.3795310347341,57.25952500477433,57.33880741009489,57.555706684011966,57.00593769690022,57.34536502696574,58.04090150585398,57.36516408668831,56.64887526771054,56.336969589814544,55.9472811431624,55.289743651170284,54.61310231965035,53.70542121725157,53.53805261477828,53.76929636532441,53.822798965964466,53.86684976937249,53.49692477006465,53.71770058758557,52.86843674257398,52.87927906215191,52.20881751878187,51.245610892772675,52.095465945545584,52.15256967814639,53.00156009569764,53.414556230884045,53.49514699168503,53.44813671056181,54.2750191334635,53.62697516893968,53.850230779498816,52.890079479664564,52.07056803489104,52.283254995476454,53.093107287772,52.884057281538844,52.92612800421193,53.04181752027944,52.838431492913514,52.87122251000255,53.25677627231926,53.2174817067571,53.75698687694967,54.683916391804814,54.05009360052645,53.7320088618435,53.93609263468534,53.80382412625477,54.38781678164378,55.18396669393405,55.133195764385164,54.97429706668481,54.547006911598146,54.63284596661106,55.566589375492185,54.650328936986625,54.61681625107303,55.208658687304705,55.802509010303766,55.20038321474567,54.675682921893895,53.96683748671785,53.96018623979762,53.81746063241735,54.496931864880025,53.98369263391942,54.89749381411821,55.78774068877101,55.355887022800744,55.79658653214574,55.25666321488097,54.495977176353335,53.65123579278588,53.00029457639903,52.30139763792977,51.742573543451726,51.33780508954078,51.41974801244214,52.32405077340081,52.82896565878764,52.82042182283476,52.22642556717619,53.12455733679235,54.036240455228835,53.44169105030596,54.149040181189775,54.76883434597403,54.001068762969226,53.27630796423182,53.66065548127517,53.442568260245025,54.00250093545765,53.99766310537234,53.672216332983226,54.114991148002446,53.82828221749514,53.938126913271844,53.58953115064651,53.48518520174548,53.187242548912764,52.46032813610509,51.73115904070437,51.62010389007628,50.69688061764464,51.201863083057106,50.334036112297326,49.77116127964109,49.162328460253775,49.13646496227011,49.20424426253885,49.20276220701635,49.88881563115865,50.708651741966605,51.30755953397602,51.826319670304656,51.469664942938834,51.52662149630487,50.98100908007473,51.40236832341179,51.99078951124102,51.66102616908029,51.53603121917695,51.693184685427696,52.2169084623456,53.16885025333613,52.26229678560048,52.34927718061954,51.49863998033106,52.232205951120704,52.456323174759746,53.4182051140815,53.219905984122306,52.782350280322134,51.91710290405899,51.70576356956735,51.11685155238956,50.75187826016918,50.878937556408346,51.34253341006115,51.238110912032425,50.38921612687409,49.64307564916089,50.38454988691956,50.4655055468902,49.88166724471375,49.73859068378806,50.391144547611475,50.32755720522255,49.59964051190764,50.32791639119387,50.2413216792047,49.28853902500123,48.32869018986821,48.76057989895344,49.118919854518026,49.17079412098974,50.065578585956246,50.31282609235495,50.86418081820011,51.178401114884764,51.047790112905204,51.93400746397674,52.80347192566842,52.256123394239694,51.51631421549246,52.144734788220376,51.55772712221369,52.10494666779414,51.469595103058964,51.3802767181769,50.754212440457195,50.10434715775773,49.67121685249731,50.05837544426322,50.34200606448576,49.87451965129003,49.94924073852599,49.5639023357071,48.580414440948516,47.7749524503015,47.304668789729476,46.54953001020476,47.387713957577944,47.39599794102833,46.48476127907634,46.54978952603415,45.93231521034613,46.36013609683141,47.35515906009823,47.97229407960549,47.00970949605107,47.073373092804104,46.47977691888809,45.65530844358727,46.21654156781733,46.64983856026083,47.20663256943226,47.21224603848532,46.81996486475691,46.368101701606065,45.557729366235435,45.307361140847206,44.82465419685468,44.89507379056886,45.09968823567033,46.099662186577916,46.088362253736705,45.374811734072864,45.543723550625145,45.77771759731695,46.05643001804128,45.854140975512564,46.613208782393485,46.949104744475335,47.01060373801738,47.29802064783871,46.31428617751226,45.53877005726099,45.55529292533174,45.56774127529934,45.19485068740323,44.62561437860131,44.77934864722192,44.94441935233772,44.50016732607037,44.480178681667894,43.72722158674151,43.32289467891678,43.25247727939859,44.23328064009547,44.58139766473323,44.44788231747225,44.22101469244808,43.34682091046125,42.62338669877499,41.98036144673824,42.147881525568664,41.82937079994008,41.515170217491686,41.84247276093811,42.22814363706857,41.74214157368988,41.25384178617969,41.51651878049597,41.12354421755299,40.38233498809859,41.26830908143893,40.96405702922493,41.43280702224001,41.250467197503895,42.08198179118335,42.7903799880296,43.07306079007685,43.27325691143051,42.34723671339452,43.071640090085566,42.22902285121381,42.48265356244519,41.783523781225085,41.47739116847515,40.744837023317814,39.91908409073949,40.51876187790185,39.669149769470096,39.6602978836745,38.79253418603912,38.26475839689374,38.511198439169675,37.87008657772094,38.38470057398081,38.76628221431747,39.089736610185355,38.84437280613929,38.74247230775654,37.81548708397895,37.1586077818647,37.92523986892775,38.487957942299545,37.67022616555914,38.555100502911955,37.64804378664121,36.98957127798349,37.22496123658493,37.54958370095119,38.34334058361128,38.369143626187,38.78561345953494,39.647633200045675,38.88885364541784,38.9219136191532,39.80979159893468,38.832561056595296,38.91622283309698,39.34530281089246,38.388211565092206,38.43802199093625,37.5675797034055,36.798849234357476,37.18594123888761,36.74139378173277,37.435502911917865,36.8694147313945,37.147842451930046,37.98923353757709,38.52704269811511,39.17564053554088,39.59264223976061,38.64296595705673,38.99207331286743,38.7186355991289,38.39117870666087,38.287371491547674,39.05755422497168,38.489297134801745,38.10590211255476,38.51842105854303,38.842197380028665,38.21264057978988,38.13026103377342,37.21516731008887,37.93173854006454,38.33572748536244,38.40829947963357,39.379619954153895,39.17840853286907,38.22773131588474,38.80056057497859,38.40643940772861,38.29742616787553,38.59846818353981,38.02003627968952,37.48252860829234,37.072089480701834,36.51272971089929,36.325072288513184,36.519243561662734,37.5125712309964,38.38849325571209,37.9950112728402,37.96316773304716,38.41446247929707,39.24453195743263,38.437177506275475,38.20727011747658,38.53976523363963,38.79463549563661,38.78691382193938,39.161655037198216,39.79156740009785,39.96220566658303,39.53091978421435,40.24450314743444,39.71075609745458,40.32902097562328,40.78578328480944,40.37554919021204,40.07453364925459,39.34725124435499,39.47190192108974,39.574222716037184,40.20485763438046,39.646194006782025,40.18289853492752,40.6955655105412,40.04405852872878,40.79708652431145,41.090139377862215,42.01893337443471,42.496280684135854,42.65210878755897,42.80576180201024,42.40855378843844,41.73087357310578,42.50271546980366,42.52196245547384,42.7447710102424,43.74155374057591,44.008160672616214,44.32531840028241,45.14884783839807,45.39455043198541,45.16907320031896,44.21813301509246,43.98413534741849,44.48288658261299,45.27772154100239,46.209688952658325,46.07353842072189,45.625114055816084,46.31526709999889,46.6706213648431,47.63784187659621,47.22000342421234,47.721266308333725,47.965325511060655,47.90158164827153,47.05553814256564,46.534476157743484,46.008208834566176,45.14833109267056,44.93638152256608,45.77636075299233,44.9476355118677,44.907335170544684,43.93562694406137,43.09818668430671,43.46801107749343,42.901175785809755,43.82328691612929,44.231536167208105,44.51044861553237,43.97255335981026,43.01272872835398,43.823471129871905,43.28169737569988,44.05561903025955,44.18721304088831,43.28593731764704,42.33628469798714,41.45723898243159,42.03072160342708,42.74623728310689,42.09854626888409,43.09597239410505,42.394696071743965,42.835197255946696,42.915142082609236,43.884469719137996,44.242393277585506,44.894605102948844,43.89685842813924,43.5861039981246,43.77381356013939,44.66670755064115,45.216332650277764,44.4402285288088,45.43449281947687,45.87201334629208,45.30855111172423,45.19050077488646,44.62571280496195,45.42013865383342,46.03856276301667,46.404888483695686,47.145263391546905,47.35815474623814,47.31452787015587,46.895544624421746,46.92891135578975,46.37430075695738,45.68090739334002,45.62582659162581,45.63059653202072,45.61017163004726,44.75353914964944,45.650704226922244,45.37082396168262,44.749090627767146,45.374668900389224,45.10355676570907,44.32898323377594,43.982752099167556,44.292775438167155,43.64587894594297,43.104404881130904,42.42344326758757,42.00181590206921,41.387257838156074,40.73242024285719,40.10926479892805,40.52876128582284,40.6842681998387,39.753966331481934,40.02540113776922,40.13600582163781,40.461223100312054,40.6028627618216,40.25138003891334,40.9431103519164,39.99631690280512,40.005166250281036,39.53005333757028,39.659014594741166,40.548106455709785,41.40566681884229,41.63699450623244,42.17747753392905,42.44607476424426,42.871509599965066,42.53942636214197,42.09132425393909,41.65604134602472,41.050169800408185,40.860554488841444,41.49096321128309,42.06757483817637,42.289542575832456,42.19332748092711,43.12235346948728,44.0902543971315,44.86423015315086,45.10751376254484,44.135552840773016,44.39088348299265,44.511037240270525,43.62315496010706,43.51572997029871,42.898527399171144,43.02506566233933,42.54029652150348,42.58412106707692,42.64239251380786,42.2262304588221,42.43405621685088,42.300882367417216,42.88151657721028,42.322695054579526,42.65362449036911,43.217957760207355,43.79982106015086,43.83000895380974,43.19087166758254,42.68062984663993,42.410133889410645,43.02193253301084,43.815221494063735,43.461218984331936,43.22665044711903,42.973138622473925,42.879204558208585,41.985324419569224,42.74725245637819,41.92570458818227,42.87383159250021,42.50061502540484,43.02928485814482,43.88684244034812,44.847777930554,45.685612143948674,46.13718879967928,45.43987542856485,46.2724923058413,46.43962589837611,45.9804449994117,46.93942325003445,47.333004319574684,48.00666578533128,47.37713345279917,48.25673080794513,47.77304800087586,48.445013591088355,48.022110844030976,47.717754097655416,46.9796419586055,47.687700300943106,46.94586517801508,46.98698877170682,47.69328888319433,47.77090511796996,48.2542627369985,48.54430361511186,47.86778518091887,48.034429820254445,47.86780753033236,48.73342671431601,48.18018995085731,47.36336680781096,47.53610882209614,47.6348293046467,48.17231671558693,48.251481039915234,48.76995894452557,49.44463630532846,50.22902638465166,49.82893142197281,50.63203940028325,50.66898273816332,50.06163478968665,49.48719014134258,49.49505478190258,48.94351687747985,48.34939603926614,48.56657496187836,48.14002397656441,47.45080049149692,46.83109340257943,47.13134060939774,46.56876586843282,46.59568426711485,46.19979831436649,46.4287063726224,45.90406597033143,46.116654850542545,45.82078872062266,45.855355069972575,46.54486102517694,46.17278141155839,46.927392442245036,46.09353222278878,46.17185976728797,45.62844645185396,45.09239080734551,46.0728676635772,45.23287028353661,44.536822172347456,45.535887208301574,45.3880452378653,45.98791980929673,46.14820936974138,46.57694398704916,46.879566985648125,46.089415590278804,46.876108900643885,45.96132002864033,45.91703320806846,45.448393339291215,45.690916332416236,46.35951485205442,46.04950604215264,46.49624200491235,47.37096520094201,46.89578355429694,47.39942662185058,47.172709194011986,46.31882440671325,46.473134364932775,46.876889704260975,47.66598461428657,47.48410416347906,47.0497115328908,46.76300374837592,46.309614033438265,46.97998401708901,46.57972516166046,45.70825927006081,45.05020463000983,44.87073156516999,45.48624376906082,45.28403551131487,46.10813668742776,46.24686838500202,45.292528190650046,44.628886204678565,43.796551533509046,43.86755136027932,43.509505623951554,43.33684127172455,43.142748003825545,44.114115873817354,44.72518430557102,44.846407969947904,45.21111956099048,45.121818349696696,44.53906795196235,44.09608489042148,43.24833435425535,42.833890069741756,42.898830744903535,43.810886033345014,42.98110747104511,41.98671853682026,42.281739545054734,42.06204178510234,41.149125955067575,40.49296553758904,39.58488274179399,39.82645532488823,39.03417992964387,40.00099031673744,40.45929619995877,40.59981682058424,40.653116832487285,41.54731556493789,41.31073139235377,40.74122585495934,40.36935100750998,40.29560873052105,40.41774599440396,39.91347720567137,38.920336513314396,38.17027553636581,39.03629080345854,38.55337759666145,38.10691528767347,37.23836655495688,36.246769265737385,37.04600863857195,37.59755652723834,37.512942789588124,37.56229263357818,37.21348533919081,36.88360300613567,35.94275643536821,36.766953063197434,35.7740802615881,34.88225543545559,34.64750168984756,34.47802231553942,33.59397561755031,33.57953311363235,34.57509352033958,34.372505703475326,34.24251417256892,34.33508276147768,34.76949556544423,33.97152335057035,33.021977548487484,33.07954968838021,33.20112066529691,33.238958361558616,32.6728893192485,33.13913808343932,32.80677325744182,32.40962775005028,31.93486619135365,30.935250459704548,30.89678842900321,30.397093469277024,31.149629928171635,31.437391930259764,30.880749580450356,30.172498346772045,29.69137385347858,28.86281751235947,29.314704393036664,29.50627775164321,29.60061429347843,29.4272058615461,29.75777553487569,29.03350275149569,30.020322900731117,29.693293612916023,30.675812403205782,31.408255378250033,30.7488601654768,31.268980510998517,31.97818217612803,32.22115842625499,33.21243466436863,33.466113444417715,32.78892709314823,33.323846857994795,33.065142101142555,32.16574800480157,33.162581839133054,32.717060185503215,31.76839401340112,31.646624183747917,31.6726624998264,31.87354994751513,30.986906558275223,30.833673134911805,31.53517619939521,30.64690919779241,30.088266026228666,30.216954454779625,29.306072739884257,30.300114380195737,29.30659316992387,30.008614245336503,29.317297373898327,29.021308201365173,29.011348749976605,28.281678611878306,28.091201381757855,27.56178301014006,28.275625196285546,27.46432938054204,28.273111017420888,28.803590070921928,28.238368008751422,28.111093366052955,27.858815376181155,28.42707288870588,27.720020816195756,28.574651170987636,29.56436197226867,29.924801542889327,30.441412383690476,30.505516924429685,29.821627603378147,30.594757272396237,29.975568336434662,29.462182636372745,29.627678862772882,29.760554309003055,29.007160630542785,29.54358109459281,29.559970666654408,29.811731757596135,30.639204513281584,29.925395525526255,30.68164750887081,31.011724307667464,30.06465592700988,29.360198685433716,29.826647219713777,29.928184328600764,29.819802139420062,28.948433447629213,29.245455626398325,29.11251699505374,29.298529787454754,29.258108511101454,29.958369428291917,30.327865670900792,30.660097780637443,29.95768307428807,30.26029344741255,31.09484823141247,30.88410324882716,31.34359641605988,31.40233075618744,30.57280337717384,29.712356836535037,30.626927551813424,30.23645475320518,29.820874675177038,29.75076880445704,29.824802526738495,29.77995601296425,30.276770542375743,30.614931142423302,30.406894877552986,29.413930862676352,30.23470580112189,30.866769515443593,31.044933655764908,30.08091741707176,30.64977679029107,31.1664569824934,30.51333424495533,30.097375291399658,29.164202477317303,29.406261164229363,28.44374030083418,28.341594023630023,28.840411723125726,29.17146378941834,29.860187535639852,29.413506486453116,29.86309789866209,30.543022819329053,30.088441975414753,30.55304889101535,31.017110998742282,30.5869900546968,29.827974433079362,29.864166899584234,29.057099259458482,29.965954788494855,29.60936607932672,28.96026173979044,28.972446221858263,29.635687850881368,30.18150441069156,30.355171535164118,29.478492660913616,29.47370001161471,29.948874509427696,30.13793322816491,30.969029823318124,30.102251936215907,29.68048625299707,30.361302498728037,29.880236154887825,30.0694806301035,30.66652888385579,31.07385834911838,30.888674925547093,30.544358477927744,31.16032398864627,31.225903063546866,30.695766916498542,29.70892436709255,28.881834720261395,29.6699951547198,28.722983631305397,28.86489492515102,29.214052520226687,28.464843943249434,28.957057155668736,29.492404339369386,29.650024697184563,28.846534003969282,27.932689012028277,28.327181035652757,27.447250774130225,26.815126292873174,27.35950945969671,27.994447651319206,28.068583776708692,28.458293945062906,28.1004806519486,27.948665603529662,27.82510510692373,27.421965616755188,27.312725936993957,26.994215382263064,26.64925599936396,25.69741439539939,24.894772726111114,24.46318757534027,25.157111818902194,24.362855106126517,25.33939883625135,25.51383651793003,24.79729545628652,24.750119460746646,25.4154255380854,24.928909820970148,24.604720598552376,25.310460241977125,24.997576673980802,24.020184983499348,25.019669444300234,24.27468476165086,23.9033844191581,23.087949813343585,22.809892274904996,22.854616795666516,22.900005276314914,21.955428012646735,21.920935252215713,21.191780510358512,20.9478878271766,21.473764253780246,20.972665649373084,21.262924183160067,20.594076596666127,21.053625782951713,20.55357280327007,20.520525010302663,20.63151101442054,20.550289208535105,20.667860777117312,21.571365013718605,22.133309223223478,21.160558707546443,21.232332247775048,20.44889674335718,20.787114513572305,19.932843846734613,20.202165354974568,19.919902743771672,20.574261638335884,19.882662166375667,20.03939491743222,19.72422613715753,20.103307973593473,19.214736454654485,18.940484469290823,18.170097541064024,17.678959503769875,16.774014813825488,16.229882177896798,16.167419074568897,16.78300133207813,17.592597346752882,17.19588805316016,16.269545217975974,16.131709170062095,15.77721733180806,14.970506275538355,15.646426500286907,15.55737475818023,14.63596453750506,14.652278044261038,15.437121209688485,15.994124320801347,15.877746336627752,16.851142588071525,16.28629375156015,16.302904673386365,15.966309682000428,16.90989292692393,17.314732325728983,16.559024875983596,16.761724934913218,17.707803219091147,16.97510923212394,17.47225451329723,17.444219628814608,16.83715008944273,16.71520695090294,16.253143086563796,16.07152116810903,15.443142399657518,15.958528936840594,16.23856575321406,15.501107646618038,16.447269876953214,16.990823580417782,17.22946609882638,17.58265514159575,16.620146938599646,17.568230108823627,18.140451246872544,18.104256772901863,17.70458000060171,17.978332771454006,18.232655914034694,18.303002039901912,17.71807908406481,18.184984390623868,17.41429041000083,18.09543277323246,18.50059245247394,18.65166112780571,19.079355526249856,18.725406243931502,17.820323428604752,17.143994462676346,18.021641574334353,17.763491809833795,18.46955484431237,19.14576916862279,18.577822086401284,18.235265156719834,17.79739707475528,18.34708643471822,18.493721693288535,18.252037876285613,19.20995490765199,19.71103502251208,20.351088306400925,20.830764051061124,19.842466552276164,19.762363139539957,19.099917106796056,19.086592194158584,18.31151470495388,17.417561042122543,18.253103347029537,19.219649655744433,18.266690270975232,18.66242101183161,18.189207860734314,17.502516127657145,18.023236374836415,17.065922304056585,17.290995828807354,17.483260799199343,16.682515302672982,17.466474023181945,17.211162706371397,16.33745926292613,16.89229855593294,15.897900901269168,15.296055083628744,15.430518932174891,15.880768974777311,16.53622044576332,15.992679351940751,15.415707387495786,15.350662768818438,14.450346738100052,14.613955335691571,13.71993070654571,12.776150456629694,13.353184469044209,12.433554066810757,12.456269617658108,11.503269252832979,11.523654054384679,11.622587860096246,11.97145356843248,12.931658692657948,12.570266261231154,13.193312770687044,13.958379339892417,14.23458150262013,14.70051441481337,14.67646359745413,15.223262869287282,14.871485587209463,14.859922215808183,14.563166455831379,14.571410978212953,15.485225564334542,14.90758827002719,14.80530338268727,15.634425870608538,15.298392293509096,14.651953626889735,14.564424943178892,13.737736843526363,14.348297664895654,14.079641219694167,13.9066540771164,13.820049620699137,13.084863203112036,13.860321485903114,13.86622620979324,13.309647353831679,13.503081735223532,13.894274843856692,14.466741394717246,14.680988749023527,15.101961974520236,14.971680109854788,15.395896667148918,16.18563008448109,15.601697139907628,16.214455883484334,16.55418082885444,17.42420026799664,17.897720344830304,17.585327110253274,18.077815333381295,17.353559453971684,17.778875847812742,17.8644829262048,17.864328637253493,18.569438059814274,18.746295554097742,19.26030341628939,19.630101144313812,19.83614664990455,18.87537207501009,18.524642595089972,18.683348746038973,18.310382862575352,17.603570110164583,17.24156336626038,17.14790601376444,17.38012690190226,18.14066476142034,18.4507201355882,18.286528452765197,17.52677852055058,16.565199313685298,17.13361954363063,17.91567114647478,18.071516352705657,17.818767636548728,17.153640942648053,16.76796286785975,15.897414274979383,15.743523924611509,16.34684651903808,15.945985266938806,16.453060429543257,15.924537014216185,15.994211884215474,16.77367793349549,16.932566581759602,16.449333163909614,15.990834440570325,15.804341682232916,15.712809942662716,15.488980900496244,15.054428971838206,14.143107953481376,14.04099966865033,13.275325040332973,12.956711243838072,12.679670113138855,12.326659880578518,11.646393925882876,11.55802363017574,10.751884554047137,10.41487326985225,10.611494868528098,9.945424329023808,9.665734347421676,8.956562204286456,8.883723135106266,8.917525592725724,9.652024762704968,10.016776483971626,10.106366900261492,10.311980318743736,10.500201934017241,10.64583153091371,11.12789623066783,11.724309392739087,11.64612736320123,11.624259337317199,12.29777737846598,12.11935429321602,12.932997995056212,13.864430521149188,13.747213700320572,12.957905236631632,13.028780214954168,13.65051920991391,13.093660806771368,13.55206335010007,14.103945150971413,15.063878540880978,14.450922190211713,14.566194844432175,15.054971062578261,14.734370891470462,14.20031614229083,13.23217087239027,12.928457370493561,12.720572766382247,13.461952987592667,12.627590184099972,12.396385012660176,12.410860938485712,12.700661878567189,13.593941445928067,13.018380593974143,12.616699303034693,13.187119911890477,13.87017790786922,13.612234884407371,12.879162988625467,12.688121281098574,12.07540636882186,11.678824509959668,11.919873501174152,12.911394817288965,12.476184138096869,12.736664835829288,12.56966672418639,12.659696463029832,12.41109094209969,12.51383573655039,12.024507002905011,11.123513400554657,11.072986814659089,10.901241519488394,11.104227574542165,11.310713980346918,12.279525459278375,11.75835295766592,10.792236387729645,10.20584402186796,9.435799348168075,10.062036829069257,10.713466935325414,10.989972004666924,10.446852751076221,11.09569277567789,10.629239179659635,10.91629792097956,10.45515142660588,11.375395940616727,11.007671888917685,11.287352065555751,11.152222258038819,11.20988953858614,11.768055036198348,10.877380301710218,10.514741188846529,11.117349337786436,11.048876843880862,10.960861369036138,11.539856071583927,10.980000366456807,11.45833187084645,12.087679286953062,12.869985688477755,13.177743905223906,13.759531204588711,14.004095871001482,13.919714540243149,14.65950268227607,14.41905863629654,13.754873293917626,13.000364769250154,13.811170326545835,13.43118042126298,13.702751538716257,13.892482109367847,13.578887054231018,13.890197589527816,13.715714174788445,14.312303239945322,13.326035196427256,12.368238099385053,11.678968301042914,10.843238674569875,11.339629122056067,11.950444550719112,11.575560090132058,12.162730643060058,12.611454659607261,11.646092545241117,12.175022622570395,13.120264274068177,13.119851964525878,13.9052355135791,13.2550238519907,13.253428550437093,13.840385800227523,13.793084192089736,12.95409126393497,12.721869009081274,12.666301555000246,12.191152130253613,11.553068732377142,11.021180125884712,10.254677257034928,10.334275416564196,9.412045874167234,9.740150091703981,8.872302709147334,9.35999639192596,8.68765946989879,7.994045416358858,7.739309140481055,8.08155943825841,7.159840342123061,7.642302747815847,6.74891234561801,7.351508138235658,6.723439229186624,7.473884239792824,8.433368048630655,7.893140421714634,7.26026002317667,6.514726773835719,5.694039274938405,6.361634229309857,7.181686261668801,8.093599548563361,7.600922244600952,7.4379989840090275,8.43393984856084,8.32503617880866,8.217656255234033,8.97140325885266,8.914149406831712,8.614745867904276,9.59880592720583,10.01957435021177,10.443344785366207,9.59244326967746,9.35378466360271,8.649182707071304,9.321111001539975,9.218932357151061,8.941145102493465,8.500628422480077,8.300834378227592,7.503841772209853,7.964727680198848,7.847171097062528,7.364538911730051,7.264513964764774,7.8593292045407,6.929640905465931,6.083924050908536,5.401772594079375,4.987765658181161,4.555132862646133,5.299675964284688,4.360636513214558,5.118813855573535,5.6503976616077125,6.208568801172078,5.373255227226764,6.0661114221438766,5.172770745120943,5.08460961189121,4.2983218864537776,4.544557526241988,4.8781828922219574,3.9989364622160792,3.8139162943698466,3.9458787804469466,3.67357997270301,3.38977241050452,2.662764030508697,3.6409821989946067,3.990340124350041,3.9175352440215647,4.251525464467704,4.561766378581524,4.6382285906001925,4.699106068816036,4.673301980830729,3.6792792859487236,3.8967028870247304,4.010633679572493,4.557439750060439,4.195792075712234,3.336236236616969,3.3487327340990305,2.875551206525415,3.685149443335831,3.7459722636267543,4.1637151120230556,3.6821680827997625,3.7456590202637017,3.873470345977694,4.660573937464505,4.937662941403687,4.145510772708803,5.015712697990239,5.46916220523417,5.726668979972601,5.121615345589817,4.788618094753474,3.999897946137935,3.1443318501114845,2.5094688180834055,2.0387633335776627,1.134761639405042,0.7297452632337809,1.629084852989763,2.23025014763698,3.082304109353572,3.845620076172054,3.4412495442666113,3.6866679126396775,2.84984292043373,2.7984314975328743,2.6541883717291057,2.7908669519238174,2.2985771014355123,2.150208381470293,2.122935542371124,2.778096430003643,2.9175347802229226,3.6203986550681293,3.5435877521522343,3.1715210005640984,2.821083639282733,2.3441456854343414,2.0288254036568105,2.0413398323580623,1.8522874941118062,1.7573085948824883,2.4540757928043604,2.1279760762117803,2.8324457951821387,2.6468846686184406,3.005678510759026,3.127433114685118,2.4648964391089976,3.321843958925456,2.3438784894533455,2.2777116815559566,2.074793426785618,1.5457905121147633,0.8736275094561279,0.9159607235342264,0.6466881260275841,1.0000338624231517,1.9789574714377522,1.8303928286768496,2.105328499339521,2.9231320861727,3.1858374839648604,2.2583016082644463,2.348568874411285,1.7491141860373318,1.4618173688650131,2.231441405136138,2.5062159653753042,2.270756494253874,1.3273914842866361,1.5416302690282464,0.8939199140295386,0.22629545908421278,-0.6753198197111487,-1.1958790561184287,-0.20533053390681744,-0.35461809672415257,-0.06607830058783293,0.2460424518212676,0.06637698831036687,-0.2733125309459865,0.3675077483057976,-0.13911744486540556,-0.7989247129298747,-1.2962707057595253,-0.771105922292918,0.022749599535018206,0.5416776766069233,1.2892159302718937,2.2807177607901394,3.084614214953035,3.9137316499836743,4.688998019322753,4.106322256848216,4.966941321268678,4.085619326215237,4.946054506581277,5.873077956493944,4.971688869874924,5.675203516148031,6.369771511759609,6.112698626704514,6.172865314874798,5.590047414414585,5.800246187951416,5.164876090362668,4.885997988283634,5.044443361926824,5.535131184849888,5.86219513323158,5.062537181191146,4.667026011273265,3.7009776160120964,4.688752764835954,4.439459902700037,4.755528871901333,4.352170649915934,4.47906703595072,3.593749068211764,2.9028629222884774,3.6448432109318674,4.339753784704953,5.146097530610859,5.374820995610207,4.429405515547842,5.110148353036493,6.07440140703693,5.560237907804549,5.780463449656963,5.664017939474434,6.506407720036805,6.642329101916403,6.122415982186794,6.543193361721933,6.544189584907144,5.621188242454082,5.200736068189144,4.632172625511885,3.7999866348691285,3.6790170655585825,3.0765729234553874,2.140858787111938,1.277842316776514,1.656496996525675,2.2762524844147265,2.0598219907842577,1.4451626976951957,2.081939232069999,1.7003019019030035,1.2511427919380367,2.118527895770967,2.7385543729178607,2.606569576077163,3.557768003549427,3.5100134322419763,3.830069158691913,4.2073867013677955,3.4809625521302223,3.3423166908323765,3.44434631196782,3.563619636464864,3.4160392191261053,4.011641686782241,4.720276734326035,5.383245289791375,6.257129865232855,6.820450663566589,7.530669361818582,6.995622896589339,6.499122596811503,6.195976356510073,5.831307918764651,5.0230446476489305,4.177240613847971,4.199893292039633,4.805577910505235,5.743038282729685,5.056080256588757,5.983470723964274,5.336750530637801,4.438279911875725,4.726319026667625,5.07673715101555,4.859933887608349,4.278518515639007,3.5334174470044672,4.195957500487566,4.01606485247612,4.583296508062631,4.177157294005156,4.4002706673927605,4.599302435293794,5.445940596051514,6.078129174187779,6.688765266444534,5.9839921542443335,5.275337093044072,4.844497064128518,5.201019895263016,6.033056960906833,6.1621141992509365,6.690279473084956,6.822748295497149,6.023612342309207,6.81741434847936,6.733769478276372,7.660539547447115,8.231439884752035,7.812144258059561,8.283131167292595,8.739094236399978,9.637608656194061,9.313752614427358,10.154065415263176,9.801886568311602,9.891143599990755,10.240164122078568,9.769886667374521,8.883836932014674,8.967894332949072,8.630827088374645,8.816186242736876,9.774441147688776,10.725972449872643,11.019846407230943,10.433489471208304,10.62683892250061,10.047233565710485,10.565294868778437,10.154472710099071,10.791263562627137,10.88850439991802,11.636762552894652,12.407615516334772,11.418633847497404,11.651940527372062,12.535169704351574,11.642610890325159,11.611482860986143,11.86948040407151,11.83852488687262,12.010310603771359,12.830896387808025,13.683458456769586,13.376107727643102,14.091204164084047,14.514124241657555,14.03358596144244,14.057906381320208,13.896900015417486,14.28768717404455,15.206146345939487,16.043017345946282,16.695472735911608,16.571239408571273,16.58849110873416,17.58430952532217,16.687179626896977,17.628846760373563,16.668504661880434,16.83285210421309,17.648698025848716,16.69020267110318,16.20692292880267,16.63603071309626,17.594456396531314,17.42658706428483,16.62189796101302,16.63232930144295,16.93975920509547,16.391369812656194,17.19814602844417,17.354883415158838,17.470081069506705,16.5096588563174,17.45940879173577,17.504831336438656,17.480594599153847,17.537365635391325,16.76711882231757,16.520220500417054,16.71706811338663,17.575150774791837,17.31600229255855,17.586952345445752,18.216784385498613,18.81378884986043,18.508298861328512,19.286043836269528,20.15494787832722,20.104278947692364,20.200476354919374,20.10663972608745,20.25272772088647,20.52174441004172,21.14480214798823,21.87379605975002,21.427241015248,21.970923401415348,22.918567028362304,22.375275580212474,23.24741193698719,22.898741810116917,21.93755322881043,22.300427831243724,23.272268939297646,23.981166063342243,23.98778200428933,23.822634387761354,23.90706071536988,23.90221435157582,23.09632893325761,23.40115578332916,23.669740637298673,24.41432396462187,23.617630288470536,23.268426233436912,23.999055340420455,24.40323648508638,24.777901919092983,24.191933998372406,23.225610443390906,22.277135725598782,23.214736516587436,24.052516127936542,24.39818579191342,24.127932742238045,23.561697436030954,24.150783786084503,25.10282236384228,25.18181399302557,24.33115791203454,23.482457770965993,23.83855607919395,23.35470692627132,24.287257980089635,23.85215702885762,24.07460132986307,23.716734303627163,23.7825534963049,24.68584077199921,25.002785872202367,24.11545542953536,23.548212986439466,23.057986833620816,23.009379043243825,22.56052035326138,23.43856210121885,23.648734902963042,24.06039492506534,23.675081272609532,23.24789930600673,23.160698130261153,22.38041060930118,21.781806604471058,22.145442529115826,21.957515927031636,21.615134427323937,21.67224158393219,21.721793533302844,20.977013029623777,20.634012304246426,20.463309087324888,21.10510937916115,21.128351588267833,20.917654716409743,20.009032617788762,20.691313482355326,20.858841720037162,20.653671731241047,20.100004584528506,19.919007326941937,19.355370534118265,19.770333951339126,20.616756891366094,20.799411688465625,20.70297399163246,20.700925979297608,21.031725800596178,21.988991278223693,22.939255649223924,22.11388418544084,22.152341057546437,22.880356481764466,21.98543016286567,22.035112077370286,22.154199440497905,22.169038848485798,21.517494512721896,20.878937385976315,19.939671831205487,20.617137705907226,19.626021725591272,20.041139545384794,20.711534028872848,20.049612511880696,19.654758252203465,19.276532071642578,20.02162732789293,19.724343778099865,19.29013135842979,19.191742795985192,19.869251102674752,19.236430630553514,18.87626666901633,19.349609909579158,18.942169814836234,19.754106390755624,19.82101923879236,19.760101647581905,19.385940996930003,19.733784600161016,20.076649895869195,19.33389500901103,19.671190232038498,19.805073188617826,20.34621856920421,20.70571295497939,20.154755210038275,20.28172445204109,19.387118299491704,18.98996348818764,19.25685529690236,19.053532463032752,19.335814895574003,18.581627927254885,19.019363668747246,18.51767457416281,18.010294171981514,18.0948116062209,18.840397922322154,19.426783667877316,18.700379100162536,18.062217686790973,17.591100614517927,18.012207880616188,18.86025883536786,19.727887773886323,20.668529459740967,19.908855530899018,20.832985267043114,21.42752439668402,21.70023456448689,20.781166017521173,20.994545907713473,21.61447116592899,22.206480156630278,21.75885029975325,22.10619536228478,22.104359411168844,22.12558443378657,22.31923655467108,22.518273933324963,22.5486534005031,23.025910953991115,22.04558266978711,21.39714446105063,21.405096067115664,21.52519476180896,21.09056138759479,22.064727652352303,21.579388417769223,20.588248565327376,20.62559433095157,20.246811938937753,20.4784615971148,19.988333832938224,20.171118644066155,19.82595267193392,19.20422810083255,19.341540940571576,19.594239918049425,20.470212573185563,21.407928234431893,21.82711006514728,20.983756669331342,21.85362636949867,21.653833258897066,22.444724469911307,21.640051227528602,22.31026916950941,22.519298421684653,21.63626107852906,21.13655037805438,22.0661254292354,22.015682527329773,21.485553758218884,21.538742060773075,22.51461897790432,21.69221103703603,21.735390080604702,21.989968549925834,21.134908385109156,21.06288245599717,20.95554441679269,20.740147046744823,20.284300898667425,20.77535926597193,20.283361839596182,20.8199659450911,20.18079045880586,19.706348093226552,19.373954915441573,20.298510661814362,20.113876207266003,19.96416090708226,19.62397361593321,19.564376217778772,18.838303780648857,18.63268959103152,19.144795265980065,18.59962344681844,18.779989442322403,18.140470593236387,18.900218057911843,18.64502320345491,18.23187738377601,18.063778621610254,19.055667195934802,18.12504117237404,19.020163322333246,18.791512710042298,19.034921979065984,18.305514814332128,17.77052170690149,18.03993421047926,17.462298137601465,17.158625642303377,18.047700236085802,17.701368949841708,17.080744166392833,16.677700322587043,17.27405464835465,16.82274003745988,16.207377686630934,15.830312248319387,16.365427349228412,17.30303839640692,17.965848466847092,17.058022707235068,16.500173851381987,16.415236466564238,16.773928716778755,16.549174504820257,16.790552134625614,16.90148225845769,16.104903135448694,16.48274531820789,15.952334377914667,16.808602057863027,16.760078806895763,17.498912543524057,17.6875704433769,18.442517278715968,18.59785071760416,18.24442041432485,17.683701642788947,17.795444620307535,17.66091645648703,16.88587183272466,16.492579326033592,16.21853553922847,16.88879690412432,16.54706733999774,16.603978437837213,17.492148098070174,17.078264472540468,16.999425132293254,16.519315753597766,17.3991156402044,16.85561701701954,16.543463634327054,17.14975501736626,17.727269800845534,17.87469847360626,17.942192973103374,17.937071674037725,17.177605750970542,17.52269045356661,16.648304149042815,15.892872580792755,15.206760352477431,16.029347211122513,16.753098026383668,16.078857061918825,16.93458537897095,17.668231605086476,17.41065923217684,16.450892337597907,16.29830926237628,15.76093428954482,14.770488562993705,14.612172505352646,14.354876410681754,14.135225511156023,14.509874569252133,14.416523183695972,14.542528297752142,14.792443193029612,15.526710412465036,15.3752445532009,15.46345582883805,15.171153874602169,15.586910192854702,15.8630759306252,16.66514070238918,16.470726013649255,17.351370559073985,18.2291619614698,19.20516469143331,18.37116811564192,18.15668179653585,17.501842148136348,17.460464973468333,16.479378753341734,17.317616131156683,17.353666558861732,16.560886398889124,16.746946254279464,17.694981368724257,18.436430977191776,17.954601278994232,17.335547221824527,16.79699175665155,16.42459365306422,16.579062909353524,17.169094175565988,17.86989664286375,18.31017449591309,17.36683672014624,16.547856141347438,17.355229175183922,17.24890697421506,16.686481226235628,17.53541030967608,17.135440490208566,16.702475170139223,16.422475788276643,15.640980876982212,15.379545445088297,14.428343236912042,14.774227099027485,15.450272558256984,14.929110283497721,14.07983232056722,13.151167697273195,14.102768080309033,13.680998729076236,13.300886484328657,13.233728745952249,13.98186434339732,14.066861180588603,13.489472570363432,14.397907479200512,14.569237509276718,13.942800899967551,14.22974703926593,14.113357243128121,14.090614698361605,14.978118481580168,15.598513904493302,15.786955535411835,15.703333964105695,15.075946932192892,14.501867804210633,14.34003286762163,13.586300569120795,13.836839599069208,13.426474959589541,12.579491529148072,12.484203920233995,13.355898776557297,12.849076681770384,13.60714356508106,13.553076670970768,14.38706270745024,13.734233719296753,13.21278517274186,12.785614805761725,12.69602278759703,12.637427300214767,12.123402016237378,11.789146286435425,12.22593648172915,11.65555000025779,11.818466493394226,12.684976023621857,13.162564748898149,13.348120629321784,13.326782185118645,13.653175908140838,14.14994037989527,13.30703238537535,14.304209829773754,14.137731804978102,14.988087452948093,15.374714897945523,14.460708221886307,14.495597105938941,14.073348662815988,13.25092773931101,13.507064508739859,14.246668688487262,13.327585967257619,13.332208905834705,13.220691059716046,13.714568963740021,14.250294571742415,13.339999630115926,14.033362797927111,13.664355252869427,14.437663475517184,13.48944031726569,13.524171160999686,13.507439164910465,13.598992828279734,14.558537929784507,15.06336966296658,14.534624611027539,14.204576375894248,13.679813240654767,14.434097283985466,13.692390804644674,14.486398384906352,13.76718724006787,13.413940819445997,14.346440667752177,13.75019215233624,14.167796318884939,13.847927134949714,13.142356606200337,13.755458704661578,12.922782585490495,13.575547630898654,14.06504619633779,13.903039474505931,14.85004219878465,15.431260249577463,14.525375404395163,14.620592787861824,15.414888396393508,15.591645766049623,16.13503777142614,16.741771625820547,16.777384411077946,16.414365739561617,16.25492048636079,16.749734275508672,16.0119674266316,16.9190573412925,16.430473970714957,17.009644059929997,16.56683210330084,16.2974586780183,15.567872129846364,16.459115447010845,16.21855715708807,16.33125907415524,15.451322646811604,15.868746855296195,16.511173689737916,15.956814396660775,15.543394166976213,15.376005865633488,15.87386763188988,16.864708920940757,17.06941501563415,17.12653410434723,16.399028507992625,17.341662468388677,18.14264590665698,18.1515199043788,17.636274221353233,18.508597822859883,17.866304034832865,18.656231322325766,19.56118339020759,19.357712937053293,19.402663780841976,19.28952665068209,20.18744069803506,19.69481416651979,20.051565842702985,20.519119199365377,21.214556294493377,21.33815656416118,20.53610419575125,21.361697959713638,22.24308575782925,21.727964074350893,21.055193604901433,21.46749865449965,21.100036292802542,21.230882154311985,20.676159060560167,20.71794649353251,21.21943579800427,21.75892932387069,20.83951704017818,21.32709625037387,21.017086846288294,21.327716846950352,20.5862247296609,21.36195498611778,22.134215989150107,21.322717459406704,20.858729026746005,21.287775014992803,21.60665246192366,21.637811003718525,21.896567337680608,21.27875858079642,20.53252292703837,20.828842907678336,21.057903870474547,22.04141806345433,21.946027372963727,22.874400382861495,23.615885809529573,22.982323659118265,22.367925757542253,23.335556810721755,24.025900478940457,24.711547647137195,24.223605086561292,24.021180722862482,24.08748955326155,23.366723253857344,22.72982233017683,22.108610390219837,21.428679768461734,22.311590934172273,21.732305792625993,21.947806255426258,21.402217529248446,20.754350832663476,21.116374467033893,21.74168060813099,22.331818954553455,21.840953721199185,21.414393424987793,22.34268773999065,21.695507638622075,22.27827379386872,21.491309609729797,22.328027518466115,21.676862698514014,21.063063877169043,21.56210702471435,21.453588635660708,20.828487714752555,21.117638111580163,21.774469487834722,22.16135018086061,21.652186583261937,20.8835409427993,21.115584440529346,21.110431406646967,21.496485341805965,21.3025803277269,20.869248682633042,20.079261353239417,20.551625384483486,20.071779711637646,19.28040454071015,19.584379463922232,20.322921091225,21.296058125328273,21.92529295803979,22.10682039288804,22.343596663791686,21.777535935863853,22.04922518506646,22.943470084108412,22.22924340562895,21.667714793700725,21.809416246134788,21.62200219044462,22.41328771971166,21.811771503649652,21.797244331333786,22.326694127637893,21.882455087266862,21.931614684406668,21.247665709350258,21.123110143002123,20.46766878478229,19.67205276992172,18.942281586583704,19.740804431028664,18.89707019040361,19.089900612365454,18.11901431204751,17.447305948939174,16.795675868634135,17.48364703496918,17.63822959223762,17.831522333435714,18.3910147161223,19.171827686484903,18.52993069263175,17.763571687042713,17.670503195840865,17.121186562348157,16.50580746959895,17.117237923666835,17.479089379310608,16.757251410745084,17.22653949353844,17.777367347385734,17.809021964203566,17.53398450417444,18.384295398835093,18.758926892653108,18.74228537781164,19.480780189391226,19.832075976766646,20.179216265212744,20.583490808028728,21.337143670301884,21.481422452721745,21.562232709489763,21.31587775470689,21.467738878913224,20.724515983834863,19.929438955150545,20.521663856692612,19.809636598918587,20.37392045976594,19.49335326254368,19.591359363868833,19.279644223861396,18.634339082986116,18.09395107254386,17.182228555437177,17.064321774523705,17.11878774361685,16.430048944428563,16.2950503770262,16.949461637996137,16.56434275675565,17.056788496207446,16.296937321778387,15.513739607762545,15.460661551449448,14.96416033571586,14.91780914971605,14.46368405641988,15.265479917172343,15.740509024821222,15.889648403041065,15.55891554383561,14.895153087098151,15.20708881272003,15.301343251019716,15.880574429873377,16.562493017408997,16.713227179367095,17.47516513429582,18.421504666563123,19.108868873678148,18.135917025152594,18.739326905459166,18.881429221481085,18.947445292957127,18.806216484867036,19.30661100614816,18.78031739173457,19.51705652428791,20.264522263314575,21.242623653262854,20.893062610179186,20.301248350180686,20.809287732001394,19.829241557978094,20.30997557286173,20.544886271934956,19.761366759892553,20.69494216144085,21.154889333993196,21.600003998726606,20.820935504511,20.9584122733213,21.52465696260333,21.229961612727493,20.84573829639703,21.121625058352947,20.57169811008498,19.58509417390451,20.27721710316837,20.023070219438523,19.54239067202434,18.796380726154894,18.74893751135096,19.246434666216373,20.18764049001038,19.82911116629839,20.626714810263366,20.55550245428458,21.138341078534722,21.084657604340464,20.829608448781073,21.0572426780127,20.727652612142265,20.778570242691785,19.859334954060614,20.453659641556442,20.246487023774534,20.821981829591095,21.027988637331873,21.52914272574708,21.88880418986082,21.213536689057946,20.222511873580515,20.399525817949325,20.94461331097409,21.38615827029571,21.012005360331386,20.632459791842848,20.337388511747122,20.609742963686585,21.465186917688698,20.47637064754963,21.19635025318712,21.83160608448088,22.37878819508478,22.991371780168265,22.10429392568767,21.46563349245116,20.568670842330903,20.633621518034488,21.12289815535769,21.015333021059632,21.016683479771018,20.853595917113125,20.411565713118762,19.524310933426023,19.005385850090533,18.158321228809655,18.39311028830707,17.427448464091867,17.78198494622484,17.223507252987474,16.34074855875224,15.737362502608448,15.541163755115122,14.87770268926397,15.368328903336078,14.521870682481676,14.997823177371174,15.42061961768195,15.827914018183947,15.706522698048502,15.558317410293967,15.976685682311654,15.676339977886528,15.485979645047337,15.70773804327473,15.492749803233892,16.184756580274552,15.470306442584842,14.965854723006487,14.297061973717064,14.577642138581723,14.342490731738508,14.11262511042878,13.725188681855798,14.695392144378275,15.235810125712305,15.006650462280959,14.018694695085287,13.338550410233438,13.334654075093567,12.782354866620153,11.925044449046254,12.10373962810263,12.730025301221758,12.612312612589449,13.06195711158216,12.382301663979888,12.302388659212738,11.758327879942954,12.269233791157603,11.986190887633711,12.75060793152079,13.546042571775615,13.971089164260775,13.829794449731708,13.259440576191992,12.350043066311628,11.781277662143111,11.575390766374767,12.085720750503242,12.32084831269458,11.539665268268436,12.0840472583659,12.414530570153147,11.610452039632946,12.16601157002151,13.048905985429883,13.155630836263299,13.480660853907466,12.751854988746345,12.960004962980747,13.262440881226212,13.687296671327204,13.197243502363563,13.649902326986194,14.331405785866082,14.158481949474663,13.684162200428545,14.633737151976675,15.07667535264045,15.761853366624564,15.460758535657078,14.950536232441664,14.86053949734196,15.820487266406417,14.998679520562291,14.398116026539356,13.398722461424768,12.619299232028425,11.986954634077847,12.94999202573672,12.792378811631352,12.623142729979008,12.531174493022263,12.066377267241478,12.514108360745013,12.935109662357718,12.747249464970082,13.17395073035732,14.051291253883392,14.382673282176256,15.224741576705128,16.11388269159943,16.75926323235035,16.977407486643642,17.931500398553908,18.106232438236475,17.10995903611183,16.623330372851342,17.44799554068595,16.714504156727344,16.252083729952574,16.174430693034083,16.827800509985536,17.34757302282378,17.677719408646226,18.4046998526901,17.438988015055656,17.27208673255518,17.430089824832976,16.94113185396418,16.837627563159913,17.41009773593396,17.469719402492046,17.600711058825254,17.625936270225793,18.011573309544474,18.371776041109115,17.481092527043074,17.37672364898026,18.054318679496646,17.468482287600636,18.448974615428597,18.447807571850717,18.61474276240915,18.36789264017716,19.321880850940943,18.534207091666758,17.939743421971798,18.938601451460272,18.146030329167843,17.98086846759543,18.5509440228343,19.297830706927925,18.896846901625395,19.829000459518284,20.805581108201295,20.059489887673408,19.083839006721973,18.281982590910047,18.10636951494962,18.906824357807636,18.1928714774549,19.089072252158076,19.352444486226887,19.788787244353443,19.922030325047672,20.30650416109711,20.850225581787527,20.292809888720512,20.713255925104022,21.608140345662832,22.26550159882754,22.97172323986888,22.084932301659137,21.1691329870373,21.622859068214893,21.88037402415648,21.40076695010066,21.317019038368016,22.13084656605497,22.9138276274316,22.220480429008603,22.74995416169986,23.20391792152077,23.16543800290674,22.399765615351498,21.73619104595855,21.38079640455544,20.73848013114184,20.741412397939712,20.988009638153017,20.636700170114636,20.64966277964413,20.911860968451947,20.925647634081542,20.96503629302606,20.274516326375306,19.721489695366472,19.839243263937533,20.345513564068824,19.584772313944995,20.407409562263638,20.630752237979323,20.28219329426065,20.188465232029557,20.721338687464595,19.966388651635498,19.18213738175109,18.954268211033195,19.261720051057637,19.91247259825468,19.908722795546055,19.36909595085308,19.360992738511413,19.830005061347038,19.187117835972458,19.793953823391348,19.75173059757799,20.750028455629945,21.41588408127427,21.430249674711376,20.72042152332142,21.288958854041994,21.0841868147254,20.50437139486894,20.386932358611375,21.2339588701725,22.034404191188514,21.269224655348808,21.746439828071743,21.670566857326776,22.250908297952265,22.164228503592312,21.536298532038927,22.500496613793075,22.14966596895829,21.247867135796696,21.179540373850614,20.396424261387438,20.248572865035385,19.734158530365676,19.484013067092746,18.950387304183096,18.141974705737084,17.81553526641801,17.805215993430465,18.479008064139634,18.661052541341633,18.34932569321245,18.015336573123932,17.602030514739454,17.785191392991692,17.288776115514338,16.806560764089227,16.435577970929444,15.483801379334182,16.3245091997087,16.809331515803933,17.170072147622705,17.49416959565133,17.918136766646057,18.892408398911357,19.785913303494453,20.19992446480319,20.582144976593554,21.054375822190195,20.910845468286425,20.70971324527636,19.816188520286232,20.51977991918102,21.09222628781572,20.123333243187517,19.803101686760783,20.583585464395583,20.84720918443054,21.282228976953775,22.038616510108113,22.94994584750384,22.90235735429451,23.583996614906937,24.29717892827466,24.313966936431825,23.84316568542272,24.314382809214294,23.698438019957393,23.33003562875092,22.842104359995574,23.13468298036605,23.744108368642628,24.030683983583003,23.914242687169462,23.21828311216086,23.203870535828173,22.436204560566694,23.323588371276855,23.71872370224446,23.07141236308962,23.364787351805717,24.03651607502252,23.654697857797146,23.71543826069683,23.3678449196741,22.674174264539033,23.163650313857943,23.16270397976041,23.911954803857952,23.590795305091888,23.240456649567932,23.811860498506576,24.664682812057436,24.28010702552274,23.967544933781028,23.82037131022662,24.390996428206563,24.803455649875104,23.825751992873847,24.667959972750396,25.38551773643121,26.059392429422587,25.08573159063235,24.880260249134153,25.455798054113984,25.555624364409596,25.591694232542068,24.790386359672993,24.789143221918494,24.291753482539207,24.322338341735303,23.539149817544967,22.590363351628184,21.68674130598083,21.905213956255466,21.659523856360465,22.388749924022704,21.471752998419106,20.781062466092408,21.666274923831224,22.223011733498424,22.973155570216477,22.169200831092894,22.540244958829135,23.234704326838255,22.542102498933673,22.961717086378485,23.043404515832663,22.55710163479671,21.58027050225064,21.82365815062076,21.20608555385843,20.503165489528328,20.805229569785297,21.675221799407154,20.742989915423095,21.508406891021878,21.952951463405043,22.402978528290987,22.84079113509506,22.780762947164476,22.577744365669787,22.503036328591406,22.0241721062921,21.688174666836858,21.041112422477454,21.742656542919576,21.156877032481134,21.515474140644073,20.616641697939485,20.75603222521022,21.395292622037232,20.646281495224684,20.962865699548274,20.69003262836486,20.1280652214773,20.82151974644512,21.20224109524861,20.27633580658585,19.549035059288144,19.693371470086277,19.839419876690954,20.537792641669512,20.505284980405122,20.576670412439853,19.57819851487875,20.381983277387917,20.276127371937037,19.293920574709773,20.11131907813251,19.404035543091595,20.293575609568506,20.95187557209283,19.986105964053422,19.627757294569165,19.816890171263367,20.33809791179374,19.42084492975846,19.261435103602707,18.858680271543562,19.52468304662034,18.575136829167604,19.074949162546545,18.495981882791966,17.78488513827324,18.75319817941636,18.043509386014193,18.206132790539414,18.138005637098104,18.225109103135765,18.5843044873327,17.859499715268612,18.02000324940309,18.490882564801723,18.81634548259899,19.419138436205685,19.53501807944849,19.772928731050342,19.854369421955198,19.50331512466073,20.474231612868607,20.93901645950973,20.572028496768326,20.91278007486835,21.30733142932877,21.674502158071846,22.208788070827723,22.651351525448263,22.911741939373314,23.04781563207507,23.384538763668388,23.848052829969674,23.76458217855543,24.280531346797943,23.687983884941787,24.554855346214026,25.551572349853814,26.394126323517412,27.19845877913758,27.991971587762237,26.993965934496373,26.13866891944781,26.67401019576937,26.78389038471505,26.026103731710464,25.463873104657978,26.171239098068327,26.511053332593292,26.84220820153132,27.33565371343866,26.993129219394177,26.41871576756239,26.925417622551322,27.350966294296086,27.606067467480898,27.166734154336154,27.31441191677004,28.004009833559394,27.25675598392263,26.698806420434266,27.25393176963553,26.798741463106126,25.8727218369022,25.626633148174733,25.691034097224474,25.887389983050525,25.561881687492132,26.46077669551596,27.18723925249651,26.962487829849124,26.888987998943776,26.165755574125797,26.266091206111014,25.36439250316471,25.444896436762065,24.642696356400847,24.03415266238153,24.1690917708911,24.593049426097423,24.671700798440725,25.338513790164143,25.980318708345294,25.305213771760464,24.7714131642133,24.66297515388578,24.839760230854154,24.901948859915137,24.87897878838703,25.563728519249707,25.013685057405382,24.04080371093005,23.886314237490296,24.356027936097234,24.031976095866412,24.995879986323416,24.527542477939278,24.85384634602815,24.802873894572258,24.894752230495214,23.90044213179499,23.9196895561181,24.778080790303648,24.43949504569173,24.48222390282899,24.027652107644826,23.323320218827575,22.885552083607763,23.734131815377623,24.193791401572526,23.839639611542225,23.487210537772626,24.47822280647233,24.848571688402444,24.375304218847305,24.363010653760284,24.436842013616115,25.106044948101044,24.512181219179183,23.99509096611291,23.25183306541294,23.502330955583602,24.022249590139836,24.104601731989533,25.082521761767566,24.599228106904775,24.12509379768744,24.942295813467354,25.086731363553554,24.619099786039442,24.47042669635266,24.430888121947646,24.432670516427606,24.349374054931104,24.342726370785385,24.902143416926265,25.57954154582694,24.968829969409853,24.887264410499483,25.346633970271796,25.53326134569943,25.85883790627122,25.937979757320136,25.096828669309616,25.854183435905725,26.52769992640242,26.736699716653675,27.45102080795914,27.08382955752313,26.45348485559225,26.28499096771702,25.98804437974468,25.47914016386494,24.99820618191734,25.59516756562516,24.661428635474294,24.529795047827065,23.856160044670105,23.207730649970472,22.340945112984627,21.461642327718437,22.42878557415679,22.11937335971743,22.823326740879565,23.008147322107106,22.189187406096607,21.451963526196778,20.771240551490337,21.428134107030928,21.42004993604496,20.896699777804315,20.460022401995957,20.374925969634205,19.713134551420808,19.337135951966047,19.144309383351356,18.343918269034475,18.902629556600004,18.83620867319405,19.042148703709245,19.62391183944419,19.810732370708138,20.342499922960997,19.949654067866504,19.88869810057804,19.65183963533491,18.99721076199785,18.13257418386638,17.793414602056146,16.82602504827082,16.32550565339625,16.189193606376648,15.969817670993507,15.49856098042801,15.031865749042481,14.740235499572009,15.734006040729582,15.553641087375581,14.706248668022454,15.218609572388232,15.407140113878995,15.267284417524934,14.33981164591387,14.445356351789087,13.505160150118172,14.125707367435098,14.126349742989987,13.80517403781414,13.88742827763781,14.81508824089542,14.86741009587422,15.397131100762635,15.178963393438607,14.321687772404402,13.85597309237346,14.018168188631535,14.146366705186665,14.945221493020654,15.788935076445341,16.28216161299497,16.887711361050606,17.591718340758234,17.86905945278704,17.208842420950532,17.71192579669878,17.6796864294447,17.07697805017233,17.367338035721332,17.930629247333854,17.194145299494267,16.55450665205717,16.64968306850642,17.0479636201635,16.38610541447997,17.308898433111608,17.74175865203142,18.735901829320937,18.98700888082385,19.100824198219925,19.784186747390777,19.110283262562007,18.439054750837386,17.45442453864962,17.264852329157293,16.75200500432402,16.75992902321741,16.59256984759122,16.3041490316391,15.520030534826219,14.805554736405611,15.66296365344897,15.056969507131726,15.44326113909483,14.687266358640045,14.238814383745193,14.533083367161453,15.257969290483743,14.436228360049427,14.230326412245631,15.089322914835066,14.457485247403383,14.357821879908442,14.610263414680958,15.22855012724176,14.466256281360984,13.675113367848098,13.550134671386331,12.666260233148932,11.904198605567217,11.882975519634783,10.900879552122205,11.010202778037637,11.131350203882903,12.031499923206866,12.828098458237946,12.639322230126709,11.999056624248624,11.500698269344866,11.420155245345086,11.99428896419704,12.585534553974867,13.4026769422926,13.864419283345342,13.478395842015743,13.275395951699466,12.373938381206244,13.110221944283694,13.092956885229796,13.68837590701878,13.80555909499526,13.987297515384853,13.200538560282439,14.110348489601165,13.861034105997533,13.8054717509076,13.533379590604454,12.577489042654634,11.894612988457084,11.566719457041472,10.984147940762341,11.489499277435243,10.983519646339118,11.073287777137011,10.921031559817493,10.554082143586129,11.351400506682694,10.645177777390927,11.299008189234883,11.39096047077328,10.924585256259888,11.71702247671783,11.65254153078422,10.781810923013836,10.97445305949077,10.306216643191874,10.198704057373106,10.522505979053676,10.707462893798947,11.291780164465308,11.13602053746581,11.865160139277577,11.2692955089733,11.566708882339299,12.177722556050867,12.920592867769301,13.09636755194515,12.67436900967732,11.970361552666873,11.556067696772516,11.064778791274875,11.277430913876742,11.964491343125701,12.935563093982637,12.056493035517633,11.125932006165385,11.58377114776522,10.772674606181681,11.328219581861049,11.648561347275972,12.158380918670446,11.713335728738457,11.243823369499296,11.815519273746759,12.589962982106954,12.251558521296829,11.667352780234069,12.379889472853392,13.280126445461065,13.253004427999258,13.635047641582787,13.130121253896505,13.952331067528576,14.102264401502907,14.071533455979079,13.61200362071395,13.47536728810519,13.074269386939704,13.290508835110813,13.491219422779977,13.589861649088562,13.606785237789154,13.39145844988525,14.370754025876522,15.206418596208096,15.801190705504268,16.31744608283043,15.484206604771316,14.550244085956365,15.147804957814515,15.038578913081437,14.856342585757375,15.479936787858605,14.87637040624395,14.395361984148622,13.609306391794235,12.97254145424813,12.367030788678676,11.831167446449399,12.110257132910192,12.984680260531604,13.384419817943126,13.305759239941835,12.507210550364107,11.611898238770664,12.470823929645121,12.936482795514166,13.67831179080531,12.696463473141193,12.655516289640218,12.529027302749455,13.46385907381773,13.245858181733638,12.961000076960772,12.643435871228576,11.726734091062099,11.959234460256994,11.305303427390754,11.946191096678376,11.16534988861531,11.695280026644468,12.280134265776724,11.580784023273736,12.430630668066442,11.559747134801,11.838006982114166,12.374229059554636,11.758454584982246,12.030514596030116,11.878003009129316,12.470890573225915,12.719739079009742,13.534559337887913,12.891538870986551,12.957403637003154,12.929790667258203,12.424063735641539,11.737812471576035,12.419837532099336,11.838119978550822,11.335283502470702,11.65420158021152,11.641162754967809,12.152322974987328,11.344776334706694,10.778860872611403,11.472687430679798,11.295967809390277,11.416857828386128,12.284989636857063,12.075224454049021,12.702326585073024,13.075579637195915,12.103333102539182,12.982808816246688,12.779027911368757,12.96349047170952,13.650939822662622,13.441629247739911,12.626085785683244,12.102781302295625,11.195817470550537,12.183063414879143,12.946565991733223,13.39593149907887,14.070243629161268,14.42062123073265,14.164619453251362,14.778363273479044,14.261561075691134,15.122953401412815,15.967084337957203,16.702669073361903,17.25648030405864,16.27456698799506,15.779396980069578,16.48662124434486,15.571792129892856,15.024235140532255,15.635365232359618,14.852023256476969,15.001394586637616,14.41247620480135,14.036797328852117,14.62530463654548,13.678049322217703,14.002995805814862,14.666967451572418,14.217108038719743,14.570850029587746,14.246712607331574,14.387384940870106,13.799289298709482,14.205466898158193,14.839337775949389,13.921052721794695,14.8698761719279,14.351435639895499,13.471800864674151,14.390788750723004,13.713249621912837,13.160330900456756,13.941192962229252,14.665797005407512,14.614940980449319,15.018876579590142,15.747637477703393,16.48969807429239,16.342259763740003,17.0111638228409,16.428579001687467,16.825893443077803,16.165537389926612,15.469264816958457,14.798538378439844,14.662506772670895,15.228985724039376,15.546192163601518,15.146665923297405,15.718963202089071,15.977873488329351,15.169664618559182,15.06189940776676,16.026746596209705,15.333601345308125,14.850337646435946,14.804324874654412,14.471104009076953,13.720263786613941,13.262395780533552,13.340655989479274,12.349975851364434,11.513305518310517,10.753266304731369,10.380111469887197,10.561386780347675,9.773533059749752,9.459895985201001,9.503443556372076,10.04506743280217,9.925431588664651,10.271432792767882,9.87082332931459,10.728841837495565,10.185659432318062,9.598193170502782,9.35033056885004,9.033249521628022,9.569874353241175,10.495343856979162,10.73200361803174,10.701624636072665,9.872517417185009,10.870872076135129,11.04583787266165,11.270192780997604,10.628903350792825,11.589084848761559,10.871403029188514,11.4496835405007,12.034366698004305,12.358970700763166,12.712135194800794,11.839817937463522,10.923301798291504,11.304669173900038,10.883192195557058,11.758817200548947,12.530204364098608,13.239027011208236,13.081143258605152,12.96854798682034,13.596250662580132,12.878218150697649,12.159720563329756,11.936002255417407,11.474219974596053,11.090467723086476,10.881514643784612,10.232322045136243,10.44217194756493,10.746085219550878,10.162507565226406,9.450195842888206,10.302096116822213,9.318822452798486,9.134714060928673,8.16641529975459,7.191400987096131,7.601351634599268,7.595611550845206,6.626629160251468,5.642186738085002,5.231044927611947,5.743234293535352,5.127271137665957,4.511417530477047,3.586000747513026,4.19385812105611,4.389941578730941,5.359862265177071,6.290433544199914,7.187902250792831,6.196156110614538,5.783276319038123,6.433112037368119,6.101507352199405,6.264203228056431,6.088342886418104,6.653781021479517,5.7542061461135745,5.988621057476848,6.1898411978036165,5.982871419284493,6.12141733802855,7.007443445269018,7.256115725263953,7.4962018094956875,6.944517775438726,7.040367992129177,7.840640716254711,7.254945132881403,7.234665605705231,7.587719372007996,8.320046050008386,8.749064708594233,8.283184926956892,8.639414112083614,8.87663973774761,9.075357445515692,8.950499958358705,8.689993280451745,8.020720664411783,7.4333465485833585,7.511782442219555,6.534522195812315,7.03694527130574,6.888977444265038,7.39316676883027,8.157485913485289,8.908625073730946,8.483875803649426,9.269067999441177,9.109780060593039,8.697408893611282,8.049495935905725,8.751791089773178,8.92103669885546,8.965680157300085,8.155421401839703,7.594821071717888,7.973963715136051,7.707539472728968,7.852914151735604,8.01715299859643,7.626057356595993,8.401341407559812,9.308189434930682,9.958300495054573,9.951979026664048,9.909589289221913,9.288615171331912,8.454982122872025,8.989565700292587,8.496700241230428,9.13634415017441,8.529243915341794,8.89048595353961,9.27109102718532,9.963452271651477,10.570256867446005,10.297912585549057,9.84360847948119,9.791082130745053,8.940681828651577,8.964256166480482,8.525394621305168,9.331135949585587,8.614983364474028,8.181672614999115,7.376610374543816,6.696609003469348,5.8979688989929855,5.462201383896172,6.1731240847148,6.895313834305853,7.003362316638231,7.0084173902869225,6.035855737049133,6.7675845781341195,6.882828240282834,6.445913064293563,7.319094396661967,6.377555559389293,5.510766557883471,5.0719212791882455,5.3468374204821885,5.8268762794323266,5.148303680121899,4.441849482245743,4.724427381996065,4.640967936255038,5.090472965501249,5.001226814929396,5.018351097591221,5.624152761418372,5.327156799379736,4.530855044722557,5.488410461694002,6.1720184921287,6.538807541131973,6.562027703505009,5.81621467648074,5.896898194216192,4.945896160788834,5.468264769297093,5.663086155895144,4.780627727974206,5.434032643213868,5.965337005443871,5.880407349206507,5.663254168815911,6.065967010334134,5.609676628373563,5.130757719743997,6.018209080211818,6.112090994603932,6.273346626199782,6.206443984527141,6.459891902282834,7.25908323796466,7.766684120055288,8.76349916961044,8.422113329172134,7.7732852809131145,8.658045603893697,8.22181501146406,8.255522480700165,7.43362735491246,6.638284404296428,7.2336795553565025,7.888453320134431,7.67811796721071,7.952290614135563,7.40382024878636,7.814487122930586,7.480965667869896,7.553517404012382,7.782921771053225,7.857165408320725,8.50738031603396,8.376469439361244,9.317139339633286,9.937902944162488,9.686618128791451,9.05260561639443,8.76310286577791,8.051177139393985,8.146647642366588,8.929857992567122,9.150719855446368,8.596828293986619,9.21851894306019,9.607996974140406,10.396306201349944,10.925894080195576,10.127334558870643,10.65145926270634,10.388699588831514,11.023102028761059,11.09212198574096,10.470880947541445,11.138226300477982,10.40136866318062,10.6063537360169,11.442486358806491,11.32027714094147,11.990493825171143,12.179261634591967,11.46557719167322,10.539227619301528,11.292390761896968,11.198451419826597,12.00603765854612,11.20793303847313,12.105149719398469,11.906141270883381,11.737636067904532,12.726727910805494,11.95952330250293,12.611061262432486,13.276258670259267,13.495092413853854,12.50823218934238,12.8115340070799,13.270252321381122,13.574988019187003,12.802088661585003,13.623496528249234,13.159357440657914,13.86879652319476,14.096016769763082,14.357188658323139,14.548340084496886,14.574969837907702,14.064237193204463,13.743222652003169,14.251090286765248,15.04896939219907,15.621731276623905,15.493316916748881,14.853552965447307,15.178870883304626,15.550407445058227,15.892799797933549,15.02067070780322,14.25747298123315,13.412868647836149,14.371189254336059,13.74863845622167,13.890110488049686,14.121950918342918,14.204793153330684,14.969814725220203,14.308347305748612,13.829523812048137,14.606457599438727,15.32440330972895,15.049539738800377,15.362449850421399,15.234451824333519,14.596776991151273,14.469274017494172,14.12253887904808,13.199288084171712,12.460747777950019,11.86775482678786,11.904079977422953,11.695852633565664,11.166806862689555,10.87667313637212,11.048820350319147,10.607200564816594,11.291541885584593,11.571487463079393,12.190633049234748,12.656700006686151,13.581604803912342,12.840620068833232,12.029587344732136,11.263148598372936,11.669219727627933,11.932832470629364,12.298064033966511,12.423286610748619,13.298793802037835,12.792175742331892,11.955388602335006,12.04206219734624,11.194084559567273,10.206354103982449,10.994909194298089,11.635614866390824,11.860057028010488,11.773942415136844,11.412746140733361,12.372380255255848,12.73882785718888,13.148788053542376,12.377868497744203,11.741591431200504,11.7760678534396,10.783986842259765,10.616712781600654,11.606614307500422,11.653542577754706,12.578754389192909,13.242633521556854,13.972425257321447,13.65771611733362,13.912549575790763,13.141072243917733,12.963791739661247,12.71012144582346,12.048603330738842,11.266804835759103,10.811870418023318,9.913565867580473,10.458693283144385,11.17928757192567,11.93389806849882,11.41600546007976,12.14113004738465,11.618027003947645,10.626139424275607,10.328056772705168,10.100306596141309,11.096133491955698,11.409557076636702,11.177763517946005,11.069913811516017,10.183764758054167,10.999734377954155,11.968907726928592,11.17223016731441,11.807714463211596,12.224053252022713,12.42008702410385,13.078388859052211,12.684822199866176,12.229482952039689,13.212993591558188,12.963496804237366,12.930909920018166,12.657377277035266,12.441671898122877,11.775604055263102,11.741237068548799,11.125654303003103,11.667900594417006,11.121599526610225,10.935493838507682,11.26385157275945,11.219470954034477,11.248011691961437,11.269946432672441,12.054187124595046,12.870948954019696,13.038027154281735,12.230717081110924,12.411666620988399,12.578881948720664,13.233480082359165,13.230475513730198,12.360482279676944,12.490138276014477,12.465074445586652,11.913751537445933,11.35986111825332,10.718271005898714,10.329746668692678,11.319463555235416,10.463018583599478,11.438377920538187,11.455743161030114,11.342074857559055,11.521734840702266,12.057691823225468,13.046626970171928,13.946667620912194,14.313584913965315,14.997916648164392,15.463767105247825,16.286876608617604,16.208744664676487,16.397251625545323,16.892631891649216,16.9412804543972,16.31180741917342,15.882365812547505,15.474551878403872,16.219662548508495,16.424423853866756,17.074464683886617,16.507031986489892,16.193096000235528,16.60537154879421,15.945357793010771,15.883352759294212,16.30314097367227,15.652032657060772,15.15064614219591,15.276207035873085,15.461827217135578,14.739132569171488,14.169090724084526,13.90580655168742,14.805046495515853,15.787547917105258,16.577759882435203,17.267093321308494,17.14524625055492,16.930158563423902,16.48982152994722,17.288990930188447,17.19487631181255,16.269430072046816,16.942306939978153,16.691181598696858,17.48954706825316,17.909025875851512,17.933679051231593,18.08848112868145,18.941804186441004,18.064431000500917,17.785534559283406,16.94057107437402,16.286259861662984,15.463893027510494,14.867047185543925,15.397557683754712,16.105019576847553,15.997446410823613,16.32070962851867,16.028112130705267,16.938253039028496,16.113918920513242,15.967079691588879,16.327637526672333,15.792140608187765,16.513152944855392,16.21254361514002,16.925262299831957,16.077001248952,16.73207418154925,16.056797405239195,16.280459718313068,17.128295382019132,16.17695665359497,15.7448909021914,16.65619150409475,17.39200437720865,17.9214086397551,18.011774079874158,17.780606772750616,17.929706662893295,18.269921460188925,17.41704408917576,16.574418175034225,16.279694807715714,15.67492694966495,16.58929211460054,16.01415857486427,15.223975399974734,15.654662028420717,15.067829008679837,14.382884607184678,15.099748828914016,15.307541015557945,15.272759799845517,15.841669871937484,16.70424251118675,16.361943336669356,16.474270848557353,15.966565241571516,16.143805468454957,16.482880876865238,16.228658719919622,15.254860950168222,16.050304937176406,16.338088316377252,16.690801871940494,16.297274388372898,15.31163761485368,15.259153814520687,14.411027381196618,14.67576463893056,14.876983623486012,15.35449648462236,15.501073095947504,15.007890827953815,15.495392575394362,15.43201239965856,15.266732658725232,14.845104881562293,15.355099576991051,14.528175868559629,14.932024776935577,14.262644436210394,13.709749297704548,13.196742787025869,12.610789692029357,11.769965449348092,10.856371056754142,11.083845855202526,10.683769560884684,10.766577559988946,10.215679632034153,11.09180871071294,10.462093815207481,11.287336722016335,11.443432440515608,10.73221842199564,11.368789507076144,11.502448710147291,11.62230369867757,10.721081548836082,10.877508461941034,11.540126174222678,12.027279208414257,11.523402180988342,12.155948699917644,11.345936068799347,10.780370170716196,11.30938847316429,11.418998826760799,11.4839494577609,10.718956888187677,11.09454133361578,11.631997870747,12.432443372439593,12.01768887694925,12.38132836483419,11.641865052748471,11.366950782947242,12.134280404541641,12.917807926423848,13.6761981472373,14.569150066468865,14.177921805530787,13.373550263699144,14.359257632866502,13.477927561849356,14.459969721268862,14.031947720330209,14.464035128708929,15.210495959036052,14.556277871597558,14.28561400808394,13.938125060405582,13.31545692961663,13.974427594803274,14.83094873605296,15.636422493029386,15.836596622131765,16.80075226072222,16.890801171772182,17.52981317974627,18.492876783479005,19.46363267675042,20.311353841330856,20.69872461259365,21.60705220233649,21.580209486186504,21.61889752652496,21.626743470318615,21.96214627381414,21.340163068845868,21.79493953520432,21.01521968888119,21.248355006799102,21.656998440157622,20.999648248776793,21.680255990941077,22.586435213219374,23.331408455967903,22.950057563837618,22.689887684304267,22.47269097948447,21.865876503754407,20.887305081821978,20.748203113675117,20.607105544768274,21.244551519863307,20.247852275148034,20.951230328530073,20.677452099043876,21.59812646266073,20.770841787103564,20.066469164565206,19.15843012649566,19.79507734021172,20.423581259790808,20.686986106447875,19.75477458629757,19.23593282653019,18.55531710293144,18.954567384906113,19.35838222084567,19.700593074783683,19.742442223243415,19.877801103051752,19.696304671932012,20.207712871488184,20.909600558225065,20.979086730629206,20.754252057988197,20.738888235762715,21.239616516511887,20.91288323653862,21.491330401971936,20.928269647061825,20.96911041578278,21.37291566003114,20.527771851513535,20.103861337527633,20.68165337946266,20.83233199827373,19.849162344820797,19.374935142695904,19.821354498621076,20.088382872287184,19.59726018132642,18.94820331269875,18.98919034190476,19.645478621590883,18.945100851822644,18.013247442431748,17.896908894646913,18.593805039301515,18.099428507499397,18.021275721956044,18.197237842716277,17.25830332422629,16.34433696558699,17.1854537432082,18.18472366221249,19.15390487294644,19.532464128918946,19.816629902925342,19.598197247833014,19.46489193663001,18.699289007578045,18.401238569058478,18.861182738095522,19.811145993415266,19.48089912487194,18.964123082347214,19.657806719187647,18.857668499927968,18.902512457687408,18.058311204891652,17.69459654111415,17.231905676890165,17.11664347583428,17.33072447311133,18.30558664863929,19.16929762531072,19.53409476717934,18.568919787183404,18.323409100528806,19.239900524728,19.51199623150751,18.555967442225665,17.636963254772127,18.071701272390783,17.95467461971566,18.913212903309613,18.354262209963053,18.17353470250964,17.922675875015557,18.49944217549637,17.532764977309853,17.33169798972085,17.188511115964502,16.711163585074246,16.77172462036833,16.473482094239444,16.293187825009227,15.807963065803051,16.304607529193163,16.083221982233226,15.477242082823068,16.21927163330838,16.715701347682625,17.195560076273978,17.816782062873244,18.246930078603327,18.061619002837688,18.350367189850658,17.883151847869158,18.14312603743747,17.604436574038118,18.052608932368457,17.67162085417658,18.301871884148568,18.09883297001943,17.497298157773912,17.345009818673134,18.119997140485793,18.119860716629773,18.95271257450804,18.619282054249197,19.592893790453672,20.584805944934487,20.44129762193188,20.758671934250742,20.84943802235648,20.99391734600067,21.01355420378968,21.942167489323765,21.30364983389154,21.20743762422353,20.625268928240985,21.216443090233952,21.646469875238836,21.42861696332693,21.971058742143214,21.358594635967165,21.811766150873154,22.435535768512636,22.672591394744813,23.035590404178947,23.3037751019001,22.79011711291969,22.929359224624932,23.7317304876633,23.633136756252497,22.887084763031453,22.773727142252028,22.441008298657835,21.710596824530512,20.89947339054197,21.319694167468697,20.46259299106896,19.64218719024211,19.051077969372272,19.90342413028702,19.176873246207833,19.20490444591269,19.855983697343618,20.527263296302408,20.105601904448122,20.107482665218413,19.74769668467343,19.200044156517833,18.80407995544374,18.940391478594393,17.980315554421395,17.399627413600683,18.171848652884364,17.72812901204452,17.198323011863977,16.65542456554249,16.66314393794164,17.475371372886002,17.999638327397406,18.81575450580567,19.320926717482507,19.882975915446877,19.566918987315148,19.696929338853806,18.87063313415274,18.068933157715946,17.46483031939715,18.448380211833864,17.664384537842125,17.5375001616776,17.087222111411393,17.017097706906497,16.71486547542736,16.11537770740688,16.287765274289995,16.092091539874673,16.541501201689243,17.437009897548705,18.266678400337696,18.968708716798574,18.75206749374047,18.08514856826514,17.57038051635027,18.533993780612946,18.53079061768949,18.419901635032147,19.161325582303107,18.424496851395816,18.69758662302047,18.225784874986857,18.77950589545071,18.33882092125714,17.965877630747855,18.099847921170294,18.973859175574034,19.400930072180927,19.293073980603367,19.523929443676025,19.48064884589985,19.034499333240092,18.271327782887965,19.04423243086785,18.356686579994857,17.706061312463135,18.03842699714005,17.133617382962257,17.148329446092248,16.178265424910933,17.064604512881488,16.34700338356197,16.218102443031967,16.279277976602316,16.534546696115285,17.34433855023235,18.228757300414145,18.9655840867199,19.09975382592529,18.267277139239013,17.989760590717196,18.199255446903408,18.420566530432552,18.467837743461132,18.290033345576376,17.459823017008603,16.82239646743983,17.110003247391433,18.083678089547902,18.461966706905514,19.092860066331923,18.574077480472624,17.941033085808158,18.31017887406051,17.35251115495339,16.37567404843867,16.421095926314592,16.827600186225027,16.52202485781163,16.156929137185216,16.10888474015519,15.86641854699701,15.232300434727222,15.908261662814766,15.401717965956777,16.04196173651144,16.081653871573508,15.232742318883538,15.941543980501592,16.769831206649542,16.829266734886914,16.053952862508595,15.22131532523781,15.749747343827039,15.200486821122468,14.56891379924491,15.155492470599711,15.973370352759957,16.46304472628981,16.868940917309374,17.472730471752584,17.395602997858077,17.605002738535404,17.393357370514423,17.849111428949982,17.65189688047394,17.04042697325349,16.927571516949683,17.092259345110506,16.191617692355067,15.989748171065003,15.449606641661376,14.616837887093425,14.609105346724391,14.700855029281229,15.49251507781446,14.801003099419177,15.797906174790114,15.086027582641691,15.34613294666633,16.01506385440007,15.799432286992669,15.230752580333501,16.077567860484123,15.389463671017438,16.19393780035898,16.056671788915992,15.614843955263495,14.723430375102907,14.257566321175545,14.31383019220084,13.681170579977334,14.677521765232086,13.808013551402837,14.259432110004127,14.074197381269187,14.85423803795129,14.989670788869262,14.168724370654672,13.416280526202172,14.338969042059034,14.576044160872698,14.941078178118914,15.777286650147289,15.418144948780537,16.256536106113344,16.031686608679593,16.471245750784874,15.97848049737513,15.263880302198231,14.834935898892581,14.609534888062626,15.178854995872825,15.867087586782873,16.35729352105409,17.046346115879714,17.87957451539114,17.768623266369104,17.4385233707726,17.111952261533588,18.097960638813674,18.94386611552909,19.172215515747666,19.772401604801416,20.359713955782354,20.626119581516832,20.3925227583386,21.39104207372293,21.07756126858294,21.583909214939922,21.720839214511216,21.828548146877438,21.365609620697796,21.47029688488692,21.11558613087982,21.681185556575656,21.726755997166038,21.308252851013094,21.312094536609948,21.08635830739513,21.006587015930563,20.489331749267876,19.798520654905587,19.875308088958263,19.818901538848877,20.40033043641597,20.14184021251276,19.56491326726973,19.4211026285775,20.32509285164997,21.045687415171415,21.546554979868233,21.774477500934154,21.656496928539127,21.55952305532992,20.92909853812307,21.626534798182547,21.533340602181852,20.913779517170042,21.265009925700724,21.425650481600314,21.148076127283275,20.908654814120382,21.690233269240707,22.191709726583213,21.80376397864893,21.84078105678782,21.178982992190868,21.21569174202159,21.95218592789024,22.626635341439396,23.231801755726337,24.227710759732872,23.974570153746754,24.905236071441323,25.722973234020174,25.804022409021854,26.748580590821803,27.447600250132382,26.63074248144403,26.553769870195538,26.850163747556508,27.088429952505976,27.691678029485047,26.869922671001405,26.42527634697035,26.926842489745468,26.751423603389412,27.74920285353437,28.598174910526723,28.626270646229386,28.045257781632245,28.081700652372092,27.950016246177256,28.334308855235577,28.111796823330224,28.09706013230607,28.90453742351383,28.96299280039966,29.418691207189113,30.18001694045961,30.841146061196923,31.447613943833858,31.13556113978848,30.76943936990574,31.254264102317393,31.922018219251186,32.24674833379686,32.45044534606859,31.473992525599897,31.99116649804637,32.60548868915066,33.28109501674771,32.60150068672374,32.90543568925932,32.62026639375836,32.38042210275307,31.84753479156643,32.20068085286766,32.937390082050115,33.92730611143634,34.587604470551014,34.09199371840805,33.88201327063143,34.53361449856311,34.74176933243871,35.29088411061093,35.5358064728789,35.9251068867743,35.11672270204872,34.21983023919165,33.86336827510968,33.84801376564428,33.15585990995169,32.919313214719296,32.40190777089447,31.893288308754563,32.32400660589337,31.832098924554884,31.0568006192334,30.469821805600077,30.383755919523537,30.311373808421195,31.198678528890014,31.34038483398035,31.97487411275506,31.018107591196895,30.567779671400785,31.251282390207052,31.5419192481786,31.216188765130937,30.877987191081047,30.883384194225073,29.916755076032132,29.536572933662683,29.518084440845996,29.75418370263651,30.054750533308834,29.720600575208664,28.790520265698433,28.70138439256698,28.780336124822497,28.647547461092472,28.36107045551762,27.69436809979379,27.147267874795943,27.360528216697276,26.692195313051343,25.757125172764063,26.701516430359334,26.613638964481652,26.31413253908977,26.913640888873488,25.933486852329224,26.92127670813352,26.924745614640415,27.837033016141504,27.951929395552725,27.198476527351886,27.573725605849177,27.29099380178377,26.882835174445063,27.08982606511563,27.537020245101303,28.47041858918965,27.91386307682842,28.22607553238049,29.034811418969184,28.41381991887465,29.0489751258865,29.964864981360734,30.095280088018626,30.9038854255341,30.312646384816617,30.220453052781522,29.72570495447144,30.312512959819287,31.012099301442504,31.022267759777606,30.41168789472431,30.051823544315994,29.490772109944373,29.011051352135837,28.02825505565852,28.92042902810499,29.35917944414541,30.06028010137379,30.939354594796896,31.775088857859373,32.55707829305902,31.84780057799071,32.31101290648803,32.81425974192098,32.59030635934323,31.836061457172036,32.165636744350195,31.651538989041,30.871431801002473,31.45235552918166,31.467171442694962,32.32915822090581,32.34839264675975,31.930515188723803,32.67754968162626,32.51773870876059,32.27548467554152,32.591379169374704,33.54646931029856,33.6872548754327,34.19994760118425,35.14751678239554,34.456178622320294,34.5066321589984,35.36375604989007,35.97319629136473,34.981060976628214,35.30648632720113,35.73201116640121,35.030078425537795,35.44737444492057,36.442126743495464,35.7962262025103,35.79090938810259,36.023594092112035,35.07047336315736,35.66152382455766,35.38304494461045,36.31435112282634,36.323627202771604,36.719295046292245,36.573539704084396,35.78910247934982,36.29424621351063,37.1977515486069,36.38308920478448,36.2642855332233,35.973873532842845,35.263081731740385,35.12455734470859,34.781593828927726,34.20900325383991,34.815709264948964,35.061796920374036,34.39071088517085,33.76988032087684,33.31817787094042,32.70594287896529,33.3626345670782,32.81548318406567,33.25279239285737,33.02824885491282,33.86772947385907,33.4498506388627,33.30613486096263,33.4076662492007,32.79410447785631,32.9525379948318,32.37777729425579,32.124009993392974,31.40482906345278,30.556385074276477,30.526572623755783,30.874731755815446,30.64993911748752,30.658907627686858,31.24615576211363,31.34330527856946,30.511829681694508,29.954496442340314,29.790672017727047,30.588544683065265,30.760287325829268,31.49458214826882,32.12433528807014,31.418288070708513,32.01973643898964,31.574270677752793,32.303948344197124,32.29762665601447,32.42219808790833,32.56261815596372,31.727609042543918,31.153828972484916,31.62534297723323,32.45157264685258,32.33072018995881,32.445517947431654,31.977176998276263,32.23037971230224,32.70084412302822,31.889751276466995,31.612148146610707,31.150073952507228,30.86538123106584,30.127215396612883,30.14462632033974,30.889345480594784,30.950594299007207,31.600969659164548,31.06751958327368,31.34149175649509,31.628823763225228,31.999106300994754,31.484094234649092,30.951975539326668,31.020671300124377,31.772699157241732,30.883602868765593,30.440235620830208,31.016373944003135,31.84036083240062,31.796621210873127,32.73862556973472,32.44849345041439,32.28858953807503,32.49145140359178,33.358235995750874,34.1313914260827,33.805956080090255,34.56518096011132,34.314154679887,34.46320279641077,34.19445060426369,35.11871631303802,35.207922850735486,34.89725400367752,35.731054939795285,35.90939130820334,35.5343893985264,36.025340323802084,35.856804626993835,35.35531080653891,35.462544712238014,36.35309703554958,35.49880025908351,35.54735794104636,36.43237792234868,36.57105459785089,36.18555506179109,35.44227026728913,36.09084354201332,35.58828756632283,35.84972720593214,34.951470237225294,34.34439591318369,34.426210639066994,35.33988570282236,35.75495694950223,36.384067229926586,35.769749615341425,35.17029871745035,35.71157576702535,34.75487289344892,33.93600317975506,34.36217718059197,34.92343871947378,35.82536603324115,36.180398288182914,35.903037373907864,35.19696404971182,34.66520217247307,34.671297683380544,34.40358834573999,33.98958577774465,33.55580776464194,34.50395456654951,34.995650665368885,34.839949808549136,34.09605340147391,34.38287656567991,33.757596866227686,33.29508786927909,32.94273822195828,33.51211107848212,32.707432851661,31.93438898259774,32.134930399712175,31.27922618109733,32.02442025579512,32.03376796236262,31.075756896752864,31.525600153952837,31.127325717825443,31.99183637648821,32.30114848120138,32.92221875023097,32.44401886779815,32.66707816440612,32.379847223870456,32.41616928298026,32.9069695379585,33.49720541574061,32.723996409680694,33.564616069197655,33.22684270888567,32.79589301953092,32.92768178274855,32.94485562061891,32.1411025961861,32.64210993144661,31.70455282460898,32.14459248073399,32.44771993905306,33.17725815158337,33.675360776949674,34.13288274407387,34.195256086066365,33.6467266487889,32.98080842662603,32.55986334057525,32.22992329392582,31.4463903689757,32.327825906686485,33.17037090891972,33.457338236272335,32.53443959727883,31.97786776535213,31.505569617263973,32.481195928994566,32.56952741462737,31.658503036014736,31.23468584008515,30.877110924571753,30.617267013527453,30.815351000986993,31.09924257406965,30.20663299644366,29.31822784570977,28.499194778036326,29.250737919006497,29.110535433515906,29.89095125067979,30.789500339422375,31.49150744266808,31.398855823092163,32.08107193373144,32.442537697497755,33.28774545295164,33.72777190199122,34.343574329745024,34.277632794342935,35.039014618843794,34.91062357928604,35.15721629280597,34.33182622352615,34.65841002203524,34.18249315628782,34.70324748149142,33.75110684847459,34.66917155403644,34.431250338442624,34.66517792548984,33.99364259466529,33.59176918445155,34.416056245565414,34.80401818547398,35.362429139669985,36.31722121266648,37.22937379544601,38.17869096202776,38.6065140189603,38.735577422659844,38.154905401635915,38.41079034842551,38.601690747309476,39.55852295923978,40.06342311669141,40.292560431174934,40.03167599905282,40.87835121899843,40.666984137613326,39.824923819862306,39.57752831466496,38.64034960977733,38.13715615356341,38.043903809040785,37.68819740321487,37.071065126452595,36.54605769086629,35.651682815980166,34.86163413291797,33.98646747041494,33.06797180650756,32.83135480200872,32.03062598826364,31.15235058264807,32.1430810848251,31.841585866175592,32.06900504929945,32.04167380090803,31.88216683920473,32.54639236582443,32.04267274821177,31.050873729400337,30.921245898585767,30.85765487048775,31.147044715937227,31.70748854195699,31.51625850936398,31.871458805631846,31.156972435768694,31.66111340606585,31.863098742906004,31.351845242548734,31.839460264891386,31.521924627013505,31.521472532767802,31.049824982881546,31.150032416917384,30.694933748804033,31.672173598315567,31.97976383008063,32.46318029006943,32.384008791297674,33.14957989240065,33.90308274934068,33.831816027872264,33.907212648540735,32.96335085341707,32.40272649284452,33.03156803594902,33.518541366327554,34.28487316146493,35.038003120571375,34.32732995040715,34.87839246401563,34.99872171739116,34.49259994644672,34.246548973955214,34.698853022418916,34.60982952453196,33.98543665651232,33.136550032533705,32.95788564486429,32.96858064830303,32.26043215626851,31.301706328522414,31.221075787208974,30.726992530282587,31.532278046011925,31.033085711766034,31.87877284688875,31.373421233613044,31.149619108997285,31.240534832235426,30.68868848402053,29.84670803230256,30.246721405535936,29.88155918661505,30.066268015652895,29.715644648764282,29.278487553354353,28.86566436244175,28.008720646612346,27.203059178311378,26.45725915906951,26.636894828639925,27.474223802797496,27.35572744999081,27.676849480252713,28.344512106850743,28.175823951140046,28.70986359147355,28.57811088161543,29.458235818427056,29.030316547490656,29.277711789123714,30.18843755265698,30.25232817279175,30.767795060761273,30.403875376097858,30.98717973055318,31.89110430283472,31.100464056711644,31.377620130311698,31.069383055903018,30.16452495753765,29.78146526729688,29.149780553299934,29.15531386435032,28.75308482768014,28.059336171019822,27.313053958583623,26.470227452926338,26.397017784416676,26.36988326581195,26.105495819356292,26.297812897711992,25.52882362343371,25.162037316244096,24.624966247472912,25.551575037185103,25.12325914017856,25.277764062397182,24.40257836971432,24.95504701603204,24.054959485307336,24.47228508675471,24.90282415598631,25.1804985627532,26.013393980450928,26.359226694796234,26.581158188637346,26.776314131449908,26.450455215759575,25.609518392477185,24.889351789839566,25.046623484697193,25.729166111908853,24.876552065834403,25.15091210929677,24.68336021900177,25.389431110117584,24.93058712920174,24.76318660704419,24.14687378378585,24.638126768171787,23.85530459182337,24.388850466813892,24.04883888317272,23.463700319174677,23.741085880436003,24.406215810682625,23.66640218673274,24.362489259801805,25.148624693974853,24.29225470079109,23.8864676640369,23.48530619731173,23.885092633310705,23.55501940427348,23.56844000145793,22.96898323111236,22.50772081548348,22.19093452114612,22.498946513980627,21.525283806957304,20.82387514365837,21.749404384754598,22.084962204564363,22.26506438339129,21.86596038658172,21.455304955132306,21.22143510868773,20.95760594168678,20.584566175937653,19.714665845036507,20.369616671931,19.974663582630455,19.27520118607208,20.096520229242742,20.410455560777336,21.368634103797376,21.918785565998405,22.34875477431342,22.887386525981128,22.615887492895126,23.212564726360142,24.191130503546447,25.00928468350321,24.753699422813952,25.317681599408388,25.84606413030997,25.72713440982625,25.903657922986895,25.26150195952505,25.248339540790766,26.235611035954207,25.274124078452587,24.791839078534395,25.32164002628997,25.939566049724817,25.65063420822844,26.23498296830803,26.90044946409762,26.982786688022316,26.60942954244092,26.604208196979016,27.510066515300423,27.970396153163165,28.779170978814363,28.226438883226365,27.744886302854866,28.73669242998585,27.739359454251826,26.998662177473307,26.27331588882953,26.769442460499704,27.42813173495233,27.577063127420843,27.097573606297374,26.95260982727632,26.692623311188072,26.880689937621355,27.28782094968483,26.92087113345042,26.086226450745016,25.174334298819304,24.805689522065222,24.804133496247232,23.90580855635926,23.615722944959998,24.04862267524004,23.098386386409402,22.940428752452135,22.76769639318809,22.925321192946285,23.877984324470162,24.248361270409077,23.70304825436324,23.76453459635377,22.9121655235067,22.396599835250527,22.983386557549238,23.40867845993489,24.23644727608189,25.003777385223657,24.960086442995816,24.315265940502286,24.808832733426243,24.49399333819747,23.774058347102255,22.955521916039288,23.598021800164133,24.51497338945046,25.514898748602718,24.955951172392815,24.762305717915297,24.397946173790842,23.417644111439586,23.01824576454237,22.04050356755033,22.19904079148546,21.449770935811102,20.947578789666295,21.922744796145707,21.939596706535667,22.93623119778931,22.535384938120842,22.10326873138547,22.480698605068028,22.25102825835347,21.518227086402476,20.936037996783853,21.051207646727562,21.318875027354807,20.895123654976487,21.878141290973872,21.803995554801077,21.2576443743892,20.973654467612505,20.804227660875767,21.540160259697586,20.579655775800347,21.531944762915373,20.958651925437152,21.829768003430218,22.729440620169044,22.852000799030066,22.182632692623883,21.269595771096647,21.82681961497292,22.679635019041598,23.45595498010516,23.019390010740608,23.227866913657635,23.114394429605454,24.00131451478228,24.306795593816787,25.021010050084442,25.087147732730955,24.8714453401044,25.762793373316526,24.975194836501032,24.370145957916975,25.082551134750247,25.192470209207386,25.560377940069884,26.239146335981786,27.007427817676216,26.412972495891154,25.441706275567412,25.77754995925352,26.553413129411638,25.820258275605738,25.04295905586332,24.050385002046824,24.864339822437614,24.760422819759697,25.527079805266112,25.49386790022254,25.59773205127567,26.153161342721432,25.28992117801681,25.072547798976302,25.2710126102902,24.288133047986776,24.326091138646007,24.207825262565166,24.15521397581324,24.277192522771657,25.073991950135678,24.26080726692453,24.972039067652076,25.17819089302793,25.470016945619136,25.391592288389802,24.436137273442,24.530014695134014,25.154884156305343,26.12316763959825,26.005009967368096,26.180392212234437,26.968189959879965,27.304942830000073,27.763592816423625,28.227398940362036,28.119575003162026,27.400293882470578,27.864205931313336,27.11077283602208,28.071987252682447,27.721799484919757,26.767502195201814,26.279980309773237,25.807615132071078,25.009475807193667,24.391826475504786,25.316169864032418,25.896049797534943,26.65208903187886,27.438062275294214,27.94056031992659,27.0016812174581,27.07893383130431,26.09425419801846,25.334639218635857,25.71865869080648,24.72826016554609,24.037412642501295,24.046327436342835,23.429292964749038,23.699334129225463,23.37381838262081,24.008270433172584,23.3563063708134,24.236419851891696,24.97384514566511,25.93626100383699,26.50177484191954,26.946045137010515,26.23371331440285,27.063548292499036,27.672371542546898,27.88684988208115,28.28994540637359,29.246204561553895,28.297928856220096,28.960840188432485,29.397117557469755,28.790591038763523,28.819400643464178,28.913809412624687,28.09417197154835,28.452496589161456,29.29932263540104,30.17193273641169,29.564691624604166,28.884025897830725,29.367759248241782,29.49917439604178,29.163016950245947,29.30306226015091,29.342547000851482,30.024490151554346,29.350108514539897,29.04747634753585,28.585379391442984,29.519672259688377,29.22211080417037,30.18786380952224,30.973044586833566,30.828069783281535,30.161116308998317,29.82126894965768,30.27918959921226,31.198226767592132,31.564334718044847,30.854672990273684,30.360242803115398,30.35539109352976,30.685913895256817,30.684902457054704,30.322249381337315,30.63330756360665,31.51999990688637,31.689782575704157,32.279827285092324,33.03624729253352,33.230151906609535,32.66057739825919,33.06213578488678,32.12148728268221,32.306238980498165,32.45876604365185,32.62339540710673,33.616695053409785,34.25684556411579,34.332664132118225,34.96844174712896,34.74721087189391,34.328085059300065,34.70319450739771,34.23433290235698,34.97380569437519,35.32868758775294,34.425617007538676,33.86010861443356,33.918246277142316,34.686376112978905,35.39236911479384,35.451099805068225,35.861066583078355,36.60626820474863,36.0619382369332,35.237237154040486,34.320387249812484,34.92456762539223,34.208815244957805,33.26399390399456,33.70794819202274,34.135196341667324,34.55896395910531,34.6630559945479,34.0365009829402,34.56415174296126,33.72055822517723,33.227906461339444,33.151703987270594,32.691019704565406,32.86298671551049,32.0344358291477,32.181013074703515,32.355135146994144,33.19318993296474,32.89618280809373,32.44179674517363,33.25364840822294,33.10327329020947,34.00622408371419,33.213651705533266,32.515742554329336,31.681109237484634,32.32149432087317,32.56127542397007,32.454576291143894,31.65199289144948,32.26455064304173,32.57532459869981,31.727754565421492,32.09451828431338,32.28240769356489,32.26869569718838,31.922222663648427,31.415134081151336,31.892522369045764,32.06205643014982,31.312027093954384,31.559812732972205,31.798380194231868,31.6547410171479,31.546997679863125,31.214377041440457,31.507643931545317,31.114662024658173,30.950924021191895,31.141926715150476,32.00463028997183,31.880574348848313,31.494703587610275,31.330844738986343,30.721741805318743,30.391848523635417,29.724302200134844,28.730742898304015,28.1739516495727,28.008256291039288,27.08401596872136,27.227014780510217,28.203204914927483,28.259229950606823,29.053614561911672,28.619839459192008,27.7192167439498,28.620829024817795,28.049602357205003,27.815111873671412,28.06379185291007,28.987641129642725,28.31324019143358,28.888057194184512,29.647366634570062,29.908105094451457,29.74661506852135,29.98410057183355,29.03804631717503,28.18958838004619,28.97122261626646,29.333086650352925,30.141385274473578,30.319396746344864,29.721326402854174,29.519681132864207,28.79550864500925,29.562007450964302,28.605296350549906,28.21924517583102,28.089819678571075,28.096358593087643,27.29210165562108,27.21827536728233,27.02202260820195,27.459276169538498,27.445525785908103,28.206661734264344,28.801281108055264,28.660725648049265,28.9316569827497,28.888989245519042,28.826852298807353,29.114557824097574,29.62838153121993,29.02353766048327,28.14474330516532,27.866217885632068,28.242385329212993,28.136074729729444,28.16064288513735,27.575147817842662,27.05915050022304,27.98537358129397,27.949942322447896,28.532877210061997,29.23136111162603,28.286925298161805,28.14921008516103,27.892427525483072,27.958025170955807,28.334032595157623,27.49476463533938,28.180696533992887,28.124176932498813,27.143901678733528,26.58483463898301,27.230686156079173,27.41423332784325,27.830713776871562,27.671305939555168,27.8191213645041,27.674347307998687,27.931748192757368,27.866524358280003,27.591530217323452,28.541525515262038,27.868690407369286,28.582586869597435,28.6948882532306,28.672462780494243,28.356376365292817,28.931918756570667,28.09701463393867,28.157022228464484,28.074203136377037,28.273714995011687,29.01873328536749,28.12646713387221,27.95830675866455,27.23237398918718,27.194605872035027,26.990005378611386,26.352022326085716,26.68517427286133,25.93425902305171,26.13988299947232,26.64828253723681,25.9338308875449,26.916538257617503,26.039903974626213,26.651987072080374,27.598390575964004,27.062797129619867,27.23725202260539,28.031837100163102,27.55127501860261,26.725904840044677,26.60685105388984,27.1201047655195,26.903419881127775,27.63176320446655,26.659743554424495,27.415635094512254,27.6667762841098,27.62033521803096,27.123133550863713,27.413207561708987,28.10149281611666,28.31154339481145,27.80550789553672,27.748563297092915,28.108950030058622,27.14253679011017,27.78830206906423,27.96563029102981,28.933388887438923,28.34758516214788,27.619709987659007,27.163992911577225,26.34326855232939,25.51413988508284,26.14536724984646,27.042829079553485,27.40016665495932,26.99434657068923,27.067453895695508,27.36357079865411,27.245897375047207,26.900546856690198,27.12797533068806,26.25550033757463,25.946950019337237,26.046978572383523,26.85833103163168,26.054329914506525,26.825343884527683,27.262259125709534,27.535616568289697,28.149640509393066,28.65333491517231,28.616789748892188,29.171205375809222,28.410855545196682,29.036779758986086,28.52054091077298,27.650133330374956,28.1827299753204,28.91330136358738,29.792240153532475,29.921650061849505,29.206342140678316,29.6532893916592,29.818670782260597,29.588547428604215,30.13327425532043,29.569046202115715,29.27772315312177,28.672019469551742,27.865757585968822,28.20763406716287,27.88222490530461,27.138995334040374,28.08056138176471,28.757801461964846,28.40179304033518,29.264980020932853,28.988014409318566,28.409615129698068,29.091556441038847,28.9213884412311,28.972142302896827,29.042351739946753,29.33705269964412,30.180196178145707,29.672821525484324,29.614820796996355,29.140130277257413,29.65628933161497,29.29309686133638,29.753869641572237,29.788805341813713,30.425228367559612,31.081569217145443,30.45377292856574,31.41282868059352,31.786434622481465,31.64327180199325,31.605943174101412,31.396798209287226,30.446385687682778,30.3799845315516,31.239306922070682,31.875043933279812,31.677473961841315,31.389591603539884,31.821123879868537,32.35666237073019,31.989801785442978,32.94554079324007,32.673134573269635,32.374537026975304,33.18015222484246,34.03705813270062,33.86875845072791,34.186705831903964,33.40455546416342,32.71836338471621,32.15710086002946,31.785364606417716,32.28128150431439,32.86643480695784,33.08830824261531,33.78906503180042,33.60896464716643,32.64190299808979,32.62610960844904,32.57990192901343,33.08367641782388,33.45907685533166,33.55918510211632,34.48364248778671,34.58139011822641,34.93076683394611,34.29016317566857,34.60037406813353,34.44862326560542,34.28853771509603,33.439638681244105,34.09816344967112,33.72868352709338,33.4246880998835,33.441606257576495,34.11868702946231,33.43782964441925,34.106717674061656,34.206898199394345,35.18078714888543,34.20934992842376,34.4667931124568,35.30511591397226,35.57561061345041,36.33170780679211,35.595367996022105,34.66314079007134,34.96060430025682,35.72048396244645,34.8080406957306,34.107315013650805,34.11388904741034,34.92898111930117,34.234871255699545,33.56219295086339,34.38196691451594,33.698150482494384,33.689808529336005,34.316291369497776,33.955883733928204,34.13188619632274,34.55232286732644,34.63010080344975,34.575556891039014,34.90338718239218,33.94685247633606,33.84372986340895,34.017217269167304,34.02285487856716,33.30071579432115,33.08707589702681,34.02771263709292,34.392600977793336,34.336959491018206,34.26801052223891,35.064218391664326,34.745731299743056,33.915131892077625,34.83821336692199,34.01572837168351,34.28470053290948,34.63683106424287,33.846076811198145,33.934821143280715,32.952951974235475,33.00407148292288,32.608583881054074,32.575501560699195,31.709532686974853,31.002406706567854,30.679581102449447,30.694576415233314,29.7614054386504,28.995022860355675,29.9590277611278,29.760807256679982,30.3214818011038,31.140523144509643,30.816120045725256,30.73836675239727,30.9628577218391,30.38035118719563,29.677511340472847,29.065848955418915,28.531355509534478,28.078102817293257,27.640798524953425,27.695036898832768,26.964106020517647,27.637897873297334,26.691927447915077,26.27754994155839,26.849876512307674,27.02153638796881,27.97943514911458,28.74967725807801,28.398512022104114,28.958418615628034,29.716545519884676,29.25338058779016,29.668294170871377,29.673393581528217,29.11115959333256,28.704580259975046,29.595187426079065,29.174834363162518,28.95359087921679,29.64051683852449,28.699101498816162,29.455714110285044,30.06649987678975,31.00510165374726,30.31675754999742,31.147257023956627,30.655099623836577,30.217268384993076,29.58355974033475,29.459762742742896,30.079641516320407,29.095854179933667,28.647445484995842,27.788230256643146,27.29707067226991,26.88223660411313,26.516774707473814,25.597937288694084,25.11232427507639,25.087995959911495,24.134497065562755,23.65143112046644,23.277916214428842,23.756568551063538,24.076174926944077,24.344706684350967,25.30358950374648,25.043085609097034,24.71491430979222,24.505309627391398,24.896340075414628,25.439149788115174,25.74115716991946,26.576624874956906,26.08973258547485,25.485285414848477,25.4319036626257,25.16915444843471,25.35221950802952,25.781345907133073,26.717407563701272,26.607938630506396,27.445375657640398,28.062497288454324,27.901731458026916,28.136073978152126,28.35983624216169,28.020999938249588,28.100006401073188,27.895729831419885,27.763048864435405,27.87246379069984,27.912022417411208,28.204104704782367,28.888865277171135,29.57033338956535,29.37059149891138,29.465317509602755,28.552569802384824,28.005565972067416,28.35117530543357,28.53220969159156,28.727222395129502,29.28592719696462,29.949509907979518,30.35120138246566,30.995131684001535,30.435983564238995,30.0539719061926,29.39191249012947,29.01665860088542,28.858541565481573,28.57878058962524,28.162675607949495,27.21099208528176,27.56139841955155,26.66323820548132,26.801808782387525,26.311400055885315,26.868368284311146,27.26943582156673,27.105614218395203,27.93428497761488,28.57777933171019,28.018010719679296,27.771443005185574,28.763442845083773,28.115852520335466,27.646097714547068,28.254216209519655,28.156828416045755,27.524054904002696,26.7217646879144,27.70090250717476,27.129100082907826,27.950663635972887,27.56577949691564,26.804437185637653,26.212491884827614,27.168127372395247,27.63334913738072,27.53497207444161,28.08050571102649,28.43707450525835,28.648039379622787,28.90896076289937,29.334542093332857,29.86054932558909,29.54366426728666,29.65093694627285,29.089611077681184,28.586007157806307,28.95464243926108,29.257158942054957,28.57926990184933,29.067891988437623,29.35219792695716,29.195485515985638,29.98652838775888,30.59067080449313,31.044542875140905,31.3854863345623,32.36035469174385,33.129054913297296,32.16732730809599,32.826903075911105,33.04317787243053,33.07131341425702,32.36165301548317,31.565436474513263,30.817972271237522,31.205246502067894,31.369780208915472,30.406915916129947,30.371734061278403,30.525454959832132,31.299427327234298,31.96043327730149,32.143949495162815,33.06235959287733,32.52847353555262,31.68853845493868,32.31410177797079,31.49400580022484,32.2045210483484,31.58859311370179,30.627431924454868,31.598954441491514,31.249287652317435,31.50442237686366,30.83831227570772,31.777871774043888,31.347602523397654,31.29739084932953,31.354057767428458,31.139009546954185,30.6328187356703,30.6723770853132,31.05651267338544,31.705403294879943,32.49747071554884,31.638314415700734,30.70230871392414,30.463266694918275,31.11095999320969,32.08758796006441,31.11996487667784,30.32463448541239,31.113069587387145,30.657708380836993,30.94560594111681,31.46080548176542,31.10967278527096,31.88060776051134,31.136132307816297,31.71860807482153,31.02882498688996,30.511194128077477,29.656828668899834,28.672026874963194,28.945775442756712,28.633501628879458,29.47015901375562,29.017326335888356,29.59288814337924,29.623427760787308,29.880242097191513,30.868255920242518,30.666829844005406,31.5129990815185,32.2006900832057,33.14019654691219,32.68627421883866,33.46903834398836,32.86882479162887,32.56720935832709,32.88803569134325,32.962854396086186,32.813344380352646,32.044275865424424,32.289926869794726,32.78342733718455,33.41764508699998,32.877905177883804,32.548067373689264,32.02549214102328,31.35233145300299,31.597023230046034,31.89808124024421,32.16184073826298,32.91901182150468,33.62481810152531,33.752910767216235,33.54461063956842,34.18738081026822,34.29057257017121,35.27233184175566,35.02636664407328,35.64559088926762,34.97197904065251,34.86010099388659,34.894880746956915,34.61436742730439,34.88825250091031,34.90128964977339,34.07207747222856,34.4412430729717,34.96191253652796,34.59673918085173,34.05252916365862,33.46232692198828,32.60198495630175,31.619913718663156,31.75301023805514,32.64298181934282,32.3644288899377,32.51189235551283,31.94802007591352,32.52085521630943,32.302747760433704,32.780164018739015,33.17014585295692,33.39245432941243,32.66501109022647,32.70449264300987,31.730379987042397,31.226472275797278,32.22359908185899,32.36970415059477,33.227106823120266,32.37736802967265,31.85022362228483,31.638716595247388,31.181470489129424,31.026578512508422,31.08448630105704,31.411661041434854,32.03152004303411,31.708837255369872,32.215574079658836,32.215885364916176,31.590406564064324,31.235189855098724,30.782444040756673,30.700173978693783,30.124796544201672,29.180323685519397,28.431697396095842,28.922804303467274,29.178752983920276,28.704465883783996,27.869013981427997,28.412265089340508,29.15713075362146,30.092188805807382,30.860562279820442,30.13016371289268,30.39342162711546,30.29897323390469,31.169471309985965,30.248188121709973,30.781349843367934,30.30444799270481,31.075763049069792,31.199318731203675,32.06493405951187,32.605846202000976,32.90201313048601,32.536104454193264,32.58205125713721,32.97889911849052,33.83225172571838,33.97715464467183,34.49227798823267,34.010003820527345,33.761881756130606,33.687043998390436,33.12637603376061,33.219518636818975,33.32597483322024,32.335086503531784,33.11352770449594,33.91307648643851,33.76229548687115,34.32361714169383,33.798199685290456,34.440243538469076,34.5611995938234,33.986911200452596,34.06698606396094,33.428580126259476,34.26828422257677,33.96874561905861,34.3964181849733,35.333957930561155,35.4680477688089,35.982559802010655,35.80902704130858,36.263984895311296,36.170073511544615,36.611679231282324,37.105678353924304,37.4860994881019,37.635591437574476,36.94644328067079,37.69044479262084,37.22449361765757,38.10428117075935,37.74889293080196,37.3109337198548,37.05169541714713,37.98347030952573,36.98885015491396,37.330998617224395,37.02657388197258,37.3501873430796,37.306589029263705,36.593088884372264,36.54052487621084,36.86958908382803,36.438455131370574,36.1889613145031,35.894209805410355,35.65751836961135,34.75916094472632,35.361794316675514,34.60608015302569,35.353970278054476,36.004786871839315,36.76030747126788,36.968283837195486,37.38396137673408,36.833806585520506,36.61109883291647,35.736691695638,35.13017948390916,34.307464585173875,33.61093526473269,33.36566002946347,33.057759918272495,32.41609159298241,33.17254727892578,33.786803549621254,34.67135609406978,34.66601909417659,34.194501417689025,34.25659324321896,34.1543478500098,33.72314796736464,34.2616642951034,34.336333214771,34.84857017919421,34.79421606147662,33.812255437485874,34.35002936888486,34.635002500377595,33.805620616767555,34.074883963912725,33.42500886786729,32.777457003481686,33.56015639426187,33.23945321608335,34.09883386781439,35.05842313542962,35.93905157316476,36.59198498027399,36.667022610548884,37.41479413630441,38.071308102458715,37.79724046494812,36.9934966606088,36.256984763778746,35.60467712581158,35.023198251612484,36.00515114562586,36.94169210176915,36.45925681432709,36.26039467891678,37.22015483351424,38.157031709793955,38.306589120067656,38.92245242977515,38.23793010273948,38.53744716383517,38.94564750371501,39.466318286489695,39.05086398124695,38.745258470997214,39.3278244282119,40.229833805933595,40.211458060424775,40.02251118933782,39.83979364391416,40.5332130943425,40.727616460993886,41.65493816602975,42.45189429074526,42.987727421335876,42.48022387502715,41.922349627595395,42.558641034178436,41.9124296605587,41.600286923814565,40.77340245991945,40.508229680825025,40.997193842660636,41.779231724794954,40.78719721501693,40.2819175128825,39.83789250906557,39.0785978413187,39.08440263802186,38.52272289292887,39.00601319456473,39.96724181715399,40.51086626481265,39.9940090845339,40.811003657989204,40.34975499799475,39.71925756614655,39.40793267590925,39.63588299090043,40.38925362471491,39.68971894867718,39.761037237010896,40.6163564636372,39.849955464713275,39.456420187838376,39.18844773294404,39.56139733828604,38.77766241226345,38.24385208496824,38.64956904388964,38.32364252302796,37.45442572096363,37.120971880387515,37.094837945420295,37.64240904664621,38.401166185270995,37.79681284353137,38.578999877441674,38.34128453535959,38.83461305499077,39.1592865139246,39.02636030688882,39.54107888787985,40.44054534099996,39.46156584052369,39.73305938905105,39.9805151107721,39.93766707321629,40.057163420598954,41.00883051613346,41.77967114839703,42.60686350800097,42.94765990367159,42.357801449950784,42.45774078788236,42.20978334126994,41.7016158089973,42.1921800696291,41.60565756261349,40.986402101349086,41.32638028729707,40.446426324080676,39.75714958831668,39.0604552635923,39.81161252595484,40.17127594584599,39.81110016442835,39.17501239106059,39.94665826437995,40.12589167058468,40.19885817775503,39.93575127236545,39.226024626754224,39.267702757846564,39.35179090406746,39.90338076278567,39.39094253862277,39.38927262229845,39.25108730094507,38.95897398237139,38.95550415106118,38.346103184856474,39.06751970900223,39.69985383655876,39.99362444086,39.67055223463103,40.46767674619332,40.48299474688247,39.97376234503463,39.24062604410574,38.54070935770869,39.24992410419509,40.156340503599495,40.93556010350585,41.39781810063869,41.092801141086966,40.163273660000414,40.059706098400056,40.62850183295086,39.78242204198614,40.12640354549512,39.58743567112833,39.553123619407415,40.09094977192581,40.08369034295902,39.64771062042564,39.47363720787689,39.535412286408246,40.47312290268019,39.723567645065486,40.1765969642438,40.03342822147533,39.1966819986701,38.78832169761881,38.74480755859986,38.119815413374454,38.76102215796709,39.69833515025675,38.79704180220142,38.662948607932776,38.992447185795754,38.76711398316547,38.166669819969684,37.630069436039776,37.04384792363271,37.72005112376064,37.34345747483894,37.29958033701405,37.55301452614367,37.59250873280689,37.09105896623805,37.82736627943814,37.19475697306916,36.51863275002688,35.68689486803487,35.40061263460666,34.45597746735439,33.68859743559733,34.182334140874445,34.85052092093974,35.07149248383939,34.21820820635185,33.26211490854621,33.7195303235203,33.818928614258766,33.43842805130407,33.77260770369321,33.477223058696836,33.67951361229643,33.16992863174528,33.73416727920994,33.595337064471096,34.570075455121696,35.46434219647199,35.88632024964318,35.854298264253885,35.670603815000504,35.04961794381961,35.71451633563265,35.070839622057974,35.16392405703664,35.835558880120516,35.82282549282536,36.00792012922466,36.12801529560238,35.43000491987914,36.29300023149699,35.47639561444521,34.74377528904006,34.022943845018744,33.18421294353902,33.87771717226133,32.94412125321105,32.264068766031414,31.335014978423715,31.85691119870171,32.6107057700865,31.626208207104355,31.690375656355172,31.894341193139553,31.790932160336524,31.719327175989747,32.20045311981812,32.765414368826896,33.31529418332502,33.99518078798428,34.672790557611734,34.461215186398476,34.911509663332254,35.885126621462405,36.614179756492376,37.277553274296224,36.80222992738709,36.36548916948959,36.68467505136505,37.62366679869592,38.473658623639494,38.87456185789779,38.793483132030815,39.35736310528591,40.29215216403827,41.09730167873204,40.17414180468768,40.68570818332955,40.151643195189536,39.777070318348706,39.5516681978479,39.02844937611371,39.55393431801349,40.248039765283465,40.65325791761279,40.39611746836454,41.266424351371825,40.555272231344134,40.88548767473549,40.957556853070855,40.97078828653321,40.18972814548761,39.83570074150339,40.375199432019144,40.822505191434175,39.891121715307236,40.690481833182275,40.437644723802805,41.31406466290355,41.83692064322531,41.42616494419053,40.643430651631206,40.516934535931796,39.70988603774458,40.03709422517568,40.044324283488095,39.171404344029725,39.35350607568398,39.75334482174367,40.68972788751125,40.14923050161451,41.1076007722877,41.83030976448208,42.061371786985546,41.50042387936264,40.90689910855144,41.03469777153805,41.43842993071303,40.806970538105816,41.21724596014246,40.607930939178914,39.85835038498044,40.50758696626872,39.61024974472821,39.889020142611116,39.33922162093222,39.17042050231248,38.45968845998868,39.387396569829434,39.902555785141885,39.24773332895711,38.74912640405819,38.228353458922356,38.07225183909759,38.974027287680656,38.70922825857997,37.78331022057682,37.894847779069096,37.36020040279254,36.531111971940845,37.168998821638525,36.81653758184984,36.47698596259579,36.76088545192033,36.88073957245797,37.6299373684451,37.839480471331626,38.36044866126031,37.770651592407376,38.722838207148015,38.75131625169888,39.44090864714235,38.553806006442755,38.288907329551876,39.25634468765929,38.6049569635652,38.71573536796495,39.523838236927986,40.110943018924445,40.48049108078703,41.15372102102265,41.453429081477225,41.01260022679344,40.155188268981874,40.696883705444634,40.9334674840793,40.85950423730537,39.96785718156025,38.98291851347312,38.703172090929,39.36169026326388,39.05980259878561,39.843075565993786,40.715226421132684,40.30945075303316,39.982727016787976,40.744909414090216,40.17208071332425,40.33513938775286,39.586513138376176,38.65523292822763,38.64246667083353,38.79533788142726,39.52232658304274,38.87694867886603,38.64890973549336,38.156150463968515,38.28301499877125,38.29445461835712,38.72331813164055,38.95027099410072,38.542324705049396,37.85157820163295,37.41193107329309,38.259342747274786,38.9355167564936,38.60910168197006,39.414710556622595,39.00223223678768,39.52989500621334,38.85944334324449,38.39581539109349,38.456002383027226,38.00345130544156,37.24508830253035,37.95227175857872,38.41620848886669,37.65783040272072,38.3517274656333,38.02678685123101,38.955296212341636,38.6931307814084,38.18913247436285,38.07176887569949,37.49315608711913,37.567773692309856,38.08127508312464,38.71241768077016,38.53791136480868,39.04723576223478,39.34004045045003,39.27700181817636,39.0197588452138,38.57512837136164,38.28966551134363,37.46378749469295,36.68220668146387,35.94850437529385,34.969356059096754,34.51314067840576,35.039754673838615,35.511411764193326,35.1323180035688,35.4969264366664,34.731715966016054,34.52734668971971,34.365926180034876,34.922604005318135,35.1465608025901,35.94845006475225,34.98016443522647,35.70805325638503,35.8382030101493,36.31572279473767,36.369829861912876,36.485651784110814,36.47871526516974,36.036360286176205,36.64769614301622,37.52491715783253,37.60935599403456,36.87183075537905,36.84401195682585,37.2806612951681,37.25985009362921,36.94867816194892,36.49044391186908,35.89539487846196,36.71318643307313,36.02839074283838,36.81716648442671,37.06099372031167,36.81445402465761,37.166621908545494,36.565902531612664,37.084398813545704,37.20139871770516,37.74935557087883,38.106110480148345,37.405597779899836,38.36976938601583,38.641338190063834,38.59264935692772,38.361539436969906,38.05708331242204,38.77766159409657,38.39995307754725,37.996998929884285,38.58315803203732,38.31214957125485,37.5679362420924,37.276780392508954,37.95509577495977,37.12191291805357,36.73818113049492,36.8203713609837,37.768562745302916,38.26309046614915,39.104080732446164,39.79622033564374,40.52543777413666,39.89483336592093,40.23878223402426,40.57441706536338,40.52614746754989,39.861739843618125,40.473781110718846,40.34629229968414,41.2878820640035,41.985150860156864,42.74283069418743,41.80213895859197,40.97863437840715,40.37603858951479,40.19664466334507,41.040589372161776,41.553119054529816,41.757091684732586,42.324435292743146,42.441526408307254,42.35447938833386,41.39923861203715,41.52532140817493,40.93895837152377,41.71474285889417,41.539696021936834,41.381641145795584,40.809667052701116,40.116081301588565,40.177025246433914,40.360539568122476,40.82382787205279,40.88116623321548,40.45327056199312,39.862595670856535,40.79213873343542,40.56089004734531,39.73939488641918,39.278815262485296,39.81702938908711,39.7188056842424,39.115632839966565,38.69625822594389,38.46020878106356,38.450568473897874,37.64642859110609,37.88340624421835,36.95165132312104,36.544236630667,35.87213564617559,36.498962744139135,37.100873693823814,37.4336661840789,36.45794928027317,36.24203885020688,35.88280822848901,35.58041109889746,36.51565107749775,36.680071372538805,37.44383446034044,36.987112392671406,36.016301940660924,36.50554648088291,36.125796928070486,36.515683758072555,36.83948851097375,37.398044566158205,37.32651309715584,37.89363564597443,36.91698370175436,37.619907941669226,38.27566460613161,37.72242962149903,38.269040243234485,38.91758508235216,39.465860850177705,39.99260344635695,39.58960156934336,39.689006162341684,38.69249523524195,38.6193204508163,38.91565913287923,38.423838522750884,39.296354175545275,40.18193386448547,39.33605522522703,39.59431625204161,38.82681450434029,39.281102114357054,38.35360697610304,38.794538490939885,39.33316543698311,39.79507434833795,39.693671439774334,39.58662918303162,39.57098148949444,38.8228181428276,39.447987298015505,38.6765903797932,38.785715772304684,37.89071999350563,38.245190733112395,37.8835456171073,37.720448188483715,37.4622161895968,36.597899694461375,36.15800893539563,35.92540323967114,35.99757446767762,36.54615916591138,36.704062211327255,37.245238739065826,37.31012542266399,38.19438288733363,38.28862477326766,38.743880001828074,37.96027070796117,37.07732649426907,37.13056756462902,36.66633460344747,35.76671824371442,35.01067402213812,35.46027060877532,36.19718889379874,36.66678190231323,37.59707374824211,38.045951534062624,38.01062973449007,38.36951658921316,39.19352392992005,38.32264763908461,38.194372560828924,37.5263403323479,37.773200039286166,37.64955213479698,37.221986609045416,37.30291457148269,36.373620856553316,37.21470866538584,37.34041835973039,37.95786907058209,37.14948668517172,37.11361978156492,36.568326086271554,36.380593434907496,35.41629870375618,34.598454668652266,35.202867093961686,35.08670380851254,35.26912157330662,34.81785764545202,34.17822747817263,33.68492079898715,33.99620851641521,33.21810374269262,32.71924085682258,32.630827768240124,32.295759374275804,32.399519762955606,31.707048709969968,32.201974829658866,32.956165310461074,33.469055694527924,34.38304809620604,33.921174808871,34.40431879181415,34.27235520677641,33.58238596841693,33.54178712051362,32.7811449887231,32.951166820246726,33.06153121590614,34.052586659323424,34.34618755429983,35.10680752014741,34.32736855652183,34.465188031084836,34.69074674556032,33.834662484936416,33.3201839546673,33.42952907131985,33.318515974562615,32.675638045649976,31.697647434659302,32.34315174398944,32.74721139902249,33.38981262873858,33.615998790599406,33.263968183193356,33.32311370084062,32.81268118834123,33.68039972614497,34.03623964777216,34.11918863002211,35.0513639585115,34.55879677180201,34.25421095173806,34.650743732228875,33.97028871346265,34.493738745804876,34.192630156408995,33.51982400054112,33.55492487642914,33.166236417368054,32.33339743176475,31.6377073796466,30.98434445541352,30.491319626104087,31.06645416561514,31.528073546942323,31.011211366392672,31.62915395433083,31.371516864281148,31.095747036859393,31.01878795493394,31.161566585768014,30.34275682363659,29.93113774433732,29.990982909686863,29.29113413160667,29.094002983067185,29.89430556073785,29.95124296657741,30.683565150480717,30.02981398254633,30.61331043066457,30.296807017177343,29.771974179893732,28.979495809413493,29.003922721836716,28.625590914394706,28.997842453420162,28.934405820444226,29.677234856877476,30.191803090274334,31.008164688013494,31.99919872544706,32.19939304981381,32.671727440319955,33.093840721063316,33.12150263879448,33.92755532776937,34.92185392975807,35.15095657808706,35.97362318774685,36.96218902524561,36.078870279714465,35.872784584760666,35.46416621794924,35.93550506280735,35.28864837344736,34.747841629199684,35.33734187390655,36.109950105194,35.1481435704045,36.138514902442694,36.99183427821845,37.94332929654047,37.99182856315747,38.493274349719286,38.138812774792314,37.28166097821668,36.578142925631255,37.351012219674885,37.74226503493264,37.30498990882188,38.04580229520798,38.29643346462399,39.09578802064061,39.77507346123457,39.235151931177825,38.96595435682684,38.00160655938089,38.42320859571919,38.20305741764605,37.24724217224866,38.07540264632553,37.65246366849169,38.204169371165335,38.55327888112515,38.608883822802454,38.525149245746434,38.24804515438154,38.6226564142853,38.52501257834956,38.547091741580516,38.582662005443126,39.37588059948757,39.54705672431737,38.81967416871339,39.155797358136624,39.611042090225965,38.73510927520692,37.994998573791236,37.1365095465444,36.93100697686896,36.050780781544745,35.22853682981804,36.13967237295583,36.01890754560009,36.21946546761319,35.88649138342589,35.38543274952099,34.90465903794393,35.74186546076089,36.037813080940396,35.69754924764857,34.81384442187846,35.60317687038332,35.74555597407743,36.13298733951524,35.44156714901328,36.02841842873022,36.727389382664114,37.056386046577245,37.852439895272255,38.49950032820925,39.2935769315809,39.38765630405396,38.73352756397799,39.64921239251271,40.42832570290193,41.34125395677984,41.673163178842515,41.57943099178374,42.5717780306004,42.63041465403512,42.98295034095645,43.82474312232807,43.10570136550814,43.81260582432151,44.653056448325515,44.20853759814054,43.693084373138845,44.180025266483426,44.32966506946832,43.88719174778089,43.96691932389513,43.688230579253286,43.937180005479604,43.33320153132081,44.1005293764174,43.42313268594444,42.953617812134326,43.06932517560199,43.43895709561184,43.99923534784466,43.99655733630061,44.74436433240771,45.460025927983224,45.21277257381007,44.46749775391072,45.053974859882146,44.429753326345235,44.325616866815835,44.32218012260273,44.51061715418473,43.71849856246263,42.97006613854319,42.19325041305274,42.86299925530329,43.858359408099204,43.36255455343053,44.010733239818364,43.49464287655428,44.368045487906784,44.51967405062169,44.29879639670253,43.31368065578863,43.687631632667035,43.61077559925616,43.71922274958342,43.66631413111463,42.78017565701157,43.02165732253343,42.07481240807101,41.46846491424367,42.24923840444535,42.298712686635554,43.20587493479252,42.55279850261286,42.696372371166945,42.293684074189514,42.55623905221,42.9892501225695,42.33953205961734,41.386884707026184,41.919419527985156,42.6035666721873,41.85763088101521,42.34631629707292,42.27539033675566,41.48011503368616,40.69964614883065,40.3260589488782,40.55381182953715,41.505822226870805,42.503445263020694,42.87302723666653,42.05023746751249,42.13443970633671,41.14841619413346,40.63247407414019,40.14662694418803,40.408107890281826,41.10714549431577,40.55358756240457,40.60342802107334,41.05049311975017,40.92884380975738,40.12069497955963,39.788900803774595,40.53380504716188,41.528695348184556,41.994866367895156,41.59236498083919,41.07413250626996,41.76937755243853,41.93851744988933,41.956322378478944,42.89201700501144,43.658011104445904,44.499154111836106,44.933837251737714,44.199330335948616,43.7527872226201,43.4744207249023,43.10666506597772,42.29725222662091,41.78607006184757,41.83387463586405,41.58276122901589,41.03393197059631,41.73709455970675,42.64074982237071,41.923184687737375,42.576170704793185,43.365554466843605,42.549357500392944,42.64197010733187,42.310534063726664,41.393714127130806,42.250098432879895,41.75242877192795,42.53602210385725,42.46862554131076,43.40505987871438,43.90421035978943,44.23405401641503,44.83836580673233,45.12449273886159,45.16243275348097,45.14089529775083,44.68440017616376,43.927881449926645,42.96912741009146,42.74421769520268,42.15974709158763,41.58319883933291,42.16975848376751,41.543485143221915,42.15962469438091,41.52196524338797,42.3457147735171,43.0789240822196,42.29213132709265,41.94704425148666,42.674474025610834,43.0714515238069,42.88506353693083,42.969361829571426,43.47880314383656,44.43524478189647,44.33941564196721,44.61574771348387,44.666042441967875,44.2259450154379,44.036548948381096,44.35246447939426,44.51082852296531,45.444868825376034,44.97071126336232,44.239291983656585,44.10715680802241,43.84951602946967,43.6983213564381,44.15899867704138,43.17144683469087,43.684998806566,43.50732497964054,44.33240615576506,45.30878227669746,44.71252423990518,45.66926968470216,45.56671834876761,46.49936651298776,46.96497025946155,46.43476963182911,46.72960757929832,45.97694759396836,46.79785687383264,46.391380382701755,46.66612259950489,46.449522248934954,46.34257358079776,46.169868105556816,46.19881501700729,46.176910425536335,45.64841471379623,45.07768807373941,44.26000136509538,43.55198729597032,43.00111791305244,43.4024347839877,43.73762218514457,44.729602977633476,44.39889705972746,44.51203195564449,43.592749771662056,43.69458421645686,43.13301035342738,42.99759929534048,43.65271372720599,42.98580446606502,43.23119500465691,43.35859812004492,44.232287471648306,43.29814171278849,42.57319472497329,43.27127128187567,42.559424908831716,42.448405005037785,43.25566371716559,43.16061790520325,43.16815926320851,43.208392716012895,42.91714265756309,43.04645583592355,42.93068166496232,42.31088479468599,41.52075671264902,40.829072043299675,40.22709552105516,40.50065275048837,40.64014631835744,41.483166648540646,41.80910388706252,42.79762311419472,42.561160650104284,42.828522404655814,42.27671446278691,42.6208242001012,42.34479004284367,42.03907930338755,41.53809525910765,40.60014954209328,40.25933721894398,39.89309733780101,40.52661650395021,40.663092609494925,41.1132749998942,41.25227404432371,41.10979591170326,41.403959933202714,40.941591458860785,40.4363185451366,41.39200635580346,41.638207300100476,42.32145067024976,42.46018363395706,41.713630351703614,41.765784124378115,41.605293701868504,40.63159295078367,41.122567034326494,41.42482551187277,40.951969284098595,41.91624735575169,41.654657907318324,41.18773548863828,40.846264231950045,41.17369115771726,40.61547654075548,40.147949734237045,40.24602972622961,40.75152701558545,40.115582786500454,39.22508420655504,39.5635872380808,40.52757138386369,41.29143374785781,41.16801452450454,40.21557001583278,39.84038966661319,39.88586925389245,39.49993086839095,40.31145595386624,41.191403603646904,42.12971945479512,42.474234629422426,42.47782075405121,42.54139127256349,42.39576317137107,41.82605028478429,42.26133718946949,42.2071074382402,41.52211310015991,42.46387141523883,43.20078125828877,42.73607508512214,43.67223558481783,44.66174666304141,43.9878340982832,44.51644146302715,44.915727325715125,44.85067449649796,44.17910881154239,43.33200307097286,43.043704559560865,43.8495769915171,43.079355023335665,42.996308183297515,42.26912491954863,41.511690576095134,40.71701412135735,41.17990266205743,41.917310441844165,42.655294119846076,42.9304866399616,43.50879418384284,44.31545966817066,44.36161469388753,44.57538967160508,43.93549661943689,43.231295105069876,42.48819592036307,42.009682254865766,41.987562933471054,42.288811679463834,42.37544718105346,41.77391581470147,41.80274395039305,41.49596131732687,41.01129667414352,41.80500343628228,41.23499124869704,41.08553523058072,40.984858606942,41.086506568826735,41.09737551538274,40.13405914744362,40.811143858358264,39.93659620638937,39.463343444280326,38.545971552841365,37.76663587568328,37.31644910480827,37.729359227698296,37.01564471097663,36.679588416125625,35.86246701795608,36.38104782020673,36.73346382472664,36.767098960932344,35.946953248698264,35.06059593241662,34.86155788321048,34.19309393921867,33.73027365282178,34.48306677257642,34.91672284761444,35.84828846575692,35.754186580423266,35.696227356325835,34.76315955538303,33.78546664863825,34.07978150015697,34.658249555621296,35.61861058836803,34.97272699372843,35.003260667435825,35.38864413741976,36.20713369688019,35.910410220734775,35.74735009716824,36.18277782993391,36.35963548626751,35.52092159586027,35.771592857316136,35.50393774546683,34.929982053581625,35.83860316919163,35.96003384143114,36.921387795358896,37.70406562834978,37.47927830927074,37.457262673880905,36.60484640579671,36.67871940229088,37.187247132416815,36.96585906576365,36.31798117188737,36.90003441600129,36.79434217326343,37.148301754146814,37.89390867203474,37.841259887907654,37.9939366071485,37.309416078496724,38.00708972662687,38.41806158749387,38.17578170122579,38.717057566624135,38.28468716703355,38.386834694538265,37.65148107521236,37.58099681418389,37.16436347318813,36.38044665614143,35.87928770901635,35.506787945050746,36.4719846858643,37.22649403149262,36.914205487817526,37.402701729908586,36.440282698720694,37.09562697308138,37.866681322455406,36.88247052859515,36.22270393744111,35.441550354938954,35.743866607081145,35.80520048784092,35.44367607217282,35.0975054516457,35.573665032628924,35.55204190220684,35.110918254591525,35.029402687679976,35.38556549279019,34.73897789372131,35.105204002931714,34.93184649804607,35.10017670551315,34.6655976511538,33.706428481731564,33.09928948106244,32.98318696580827,33.507724206428975,33.760033478960395,34.26223884243518,34.82477517193183,34.89406377635896,34.47616422874853,35.363189617637545,35.80318927625194,35.014139025937766,34.53114021802321,34.30524448119104,35.214038853067905,34.3793155006133,34.38910169200972,35.33611327642575,36.00861251959577,35.46022087801248,35.266642527189106,34.432448104955256,35.396147389896214,35.55553502961993,36.41381231183186,35.57486694306135,36.02071491908282,35.97200374910608,35.90456585539505,35.58110001171008,35.33268990693614,35.522490576375276,35.00011729169637,35.578836997039616,35.468949059490114,36.27994591137394,37.059587847441435,37.954935691319406,38.54390399856493,38.199451263062656,38.20193946175277,38.25326626235619,37.85791244963184,38.555996902287006,39.22267491510138,39.84477267134935,39.44842595094815,39.23469258239493,38.84420188702643,38.53978313412517,39.34462411655113,40.230393059086055,40.028590014670044,40.3015599520877,41.03453934984282,41.47145794099197,40.94908201927319,40.39231534674764,41.25883571757004,42.18172003235668,41.31791610689834,40.95455817785114,41.40978774614632,42.10941208107397,41.2554428903386,42.00740415742621,42.13715324830264,41.48932114802301,40.868412632495165,39.891500803176314,40.259166930336505,41.02192444028333,41.28915376961231,40.76459940709174,40.61246190080419,41.600550807546824,42.04325915966183,42.79492698749527,42.044021795038134,42.261560489889234,43.19898123573512,43.78080332558602,42.99557427223772,43.24583389936015,42.77973282383755,43.46634076535702,44.39636587863788,43.71736374357715,44.2453062357381,44.66040200833231,44.62401599390432,45.07046227296814,44.62557712523267,43.83936651982367,44.215111951343715,43.799465821590275,42.93967892602086,42.41122680157423,41.83151563582942,41.70769380033016,41.68121923459694,40.961682909633964,41.55010648956522,41.62376154400408,42.270040336064994,42.16829688847065,41.60561347892508,42.355580024886876,42.737553835846484,43.14732861286029,42.7539375256747,43.22865469008684,42.703729276079684,42.30614058114588,42.34904512157664,42.124298096168786,43.11932659102604,42.12736951559782,41.63684719009325,41.51279113534838,42.23120245477185,43.205897914711386,42.99439074192196,43.79319265997037,44.06205191183835,44.50507402187213,45.30332191614434,45.9471052698791,45.28707579430193,45.19851845316589,45.813222219236195,45.129972666502,44.682162676006556,45.57301005208865,45.23345392988995,44.26300380099565,43.99720466416329,44.29646812053397,45.18118589418009,45.7527271960862,45.791035854723305,46.17879133019596,45.99467975227162,46.632714186795056,47.57509830594063,47.80753703555092,48.70612929575145,49.1967649734579,49.324964681174606,49.857518904376775,49.52147745434195,49.33370868163183,50.18852127948776,50.57287635002285,51.5015078401193,51.284916455857456,51.619780900888145,52.06492871558294,51.814018693286926,50.84100055973977,51.08601026888937,50.122726045548916,50.98121654521674,50.058462026529014,49.87960360106081,49.15557153802365,48.93372148554772,48.757587450090796,48.462010762188584,48.660716134589165,49.18217935459688,49.33449918450788,49.249407950788736,49.70435465686023,48.834909327793866,48.46634466154501,47.751994444057345,48.59556132089347,48.08565253717825,49.08156020846218,49.691181265283376,50.45743492152542,50.798798436298966,50.522684168070555,49.75400214223191,49.20138487452641,50.03530975757167,50.34866689518094,49.55958682950586,49.67162392195314,49.92326393304393,50.775542391464114,49.96503951540217,50.1118963714689,50.970833983737975,50.80155844707042,51.18271723249927,51.12672097887844,50.6578020658344,50.26563853351399,51.18215214414522,50.40406353445724,50.073342544492334,50.961972719058394,50.61814408423379,51.346919022034854,50.83416418079287,50.91796695627272,51.03297678520903,51.4256796836853,52.38640555040911,53.360661868937314,52.864261920098215,52.18585115997121,51.436448665801436,51.77665858762339,50.79363379161805,50.13699533371255,50.42443001549691,49.635534670669585,50.29694617073983,50.393099209759384,49.41240284917876,49.414921530056745,49.449508044403046,48.843707390129566,48.48121968936175,47.95471563376486,48.306566829793155,47.35171284619719,47.42961403122172,47.94547565979883,48.88184134894982,49.3419514358975,49.06397448806092,48.59828913444653,49.45949959522113,48.56872956408188,48.34970040107146,48.58867771923542,48.096521492581815,47.43296220339835,46.94867544621229,47.67192689701915,47.9287189329043,48.11919495975599,47.662532549817115,46.99108017841354,46.93888407340273,45.98070907313377,46.561168305110186,46.60167734371498,46.67330053867772,47.36443744599819,47.00393200246617,47.782086530700326,47.138484836090356,47.80437596375123,47.61244239564985,47.47960062650964,46.52833102364093,47.1807594797574,46.493138825986534,45.75078843627125,46.13898291764781,45.87269953126088,45.97840778529644,46.1986072845757,45.534298374317586,46.18258056463674,46.10644864384085,45.73522406257689,45.93209464661777,45.8368460922502,45.14680186100304,44.96876478707418,45.94490064540878,45.5865738177672,44.72365292720497,44.47918515000492,45.426219588145614,45.20985917886719,44.406823214609176,44.71542976703495,45.48796948650852,46.20163376443088,45.306687040720135,44.853371978737414,45.307776767760515,44.79014233406633,44.80434014741331,45.742945733014494,45.024907254613936,45.52547344844788,45.86391388066113,45.48550330614671,46.31413452606648,46.401332278735936,47.248151236213744,47.49782587448135,46.91530452342704,46.17431999882683,46.80091282585636,47.32811603648588,46.44002691237256,46.68426481820643,47.51824733894318,47.52850644942373,47.80926216766238,48.22845569252968,48.283837349619716,47.44424818223342,46.74743390036747,47.258159963879734,47.9820292647928,48.16285962052643,49.06335568567738,48.67083505121991,48.356248050462455,49.29493694053963,48.67824444314465,47.77043538959697,46.84519138420001,46.97844312014058,46.34462703904137,46.89358628820628,47.16768970666453,46.95680372370407,47.807644326239824,48.15261724404991,48.568699503317475,48.32463187118992,48.789004306308925,49.30078548332676,48.426379035227,48.59084525099024,49.18114588409662,49.90502930898219,50.70517119485885,50.38972788862884,51.03376217884943,50.18040233105421,50.30606408743188,51.147398594301194,50.67414550995454,50.870648328214884,50.37288979208097,50.29067207174376,50.1983046149835,50.01491851080209,50.36495813494548,50.87529052980244,49.88553918013349,50.51444949908182,49.66446514474228,49.82404357334599,49.436015509068966,48.48035753518343,49.14551613247022,48.39397616684437,48.89540165150538,49.401432449929416,49.152952283620834,48.726708345580846,49.649337872862816,49.03301208280027,49.1776674753055,49.04237875295803,48.46644786885008,48.85448078997433,48.77738753007725,48.621213604230434,49.15665977122262,48.279702169820666,49.22178990999237,48.959466859698296,48.18423385359347,48.60842178668827,49.43418890144676,49.6882787887007,49.08581081405282,49.83848712453619,50.81255679298192,50.3132419064641,51.118298726622015,50.65437083085999,50.716155257076025,50.07934080809355,51.04837318416685,50.14924033591524,50.207959990017116,50.358247401658446,50.84949192358181,50.87172836204991,50.01854824833572,49.60760754486546,50.50419646501541,50.858930960297585,51.24421060597524,50.40670951688662,50.10699986387044,50.585335506126285,50.45431458577514,50.51648447057232,50.04533812543377,50.16856918623671,50.8674234803766,50.03512882441282,50.15827197302133,49.84023539861664,49.23891596775502,48.3561318712309,49.02574063325301,49.843500167597085,50.59585781209171,51.13434043247253,51.60403802525252,51.177635641768575,51.48930326476693,51.722184046171606,50.77613433729857,50.470956712029874,50.99027973646298,50.284489364828914,49.53489284962416,48.73508669156581,49.27830091584474,49.90165633149445,49.55544588761404,49.58120327536017,50.055587228387594,50.629790229257196,50.11604829831049,49.91894015716389,50.22728643612936,49.992339884862304,50.14864529855549,51.131856721360236,50.74820491997525,51.654237805865705,50.765801664907485,50.34930920461193,50.87941246666014,50.82113742316142,49.93729914538562,49.6425950312987,49.31234615435824,49.63675368344411,49.040240546222776,48.36197324376553,47.90358593221754,47.84620961127803,47.1646494390443,46.198452146258205,45.277483441866934,45.39801726350561,44.43155508674681,45.27770424541086,46.05362281249836,45.07595652481541,45.37743307650089,46.30660426290706,47.04946578294039,46.60240904940292,47.59976535150781,47.4491424029693,47.65723675210029,48.54778542788699,48.251680654939264,48.45188384177163,49.38891191640869,49.464233244769275,49.16251511964947,49.78734928742051,50.39572100806981,50.62493854574859,49.65987051744014,49.02747309859842,49.20882312906906,49.70153786521405,50.49524118611589,50.55847155908123,49.70574124297127,49.19483545515686,49.97974150488153,50.44288639398292,50.58602748764679,50.24662377219647,49.72677867533639,50.085813966579735,50.369300765451044,51.22872326988727,52.11120522301644,52.49721444491297,52.52258568117395,52.95229503093287,51.997663603164256,51.286010845564306,50.77124257059768,51.08544009691104,50.70550977578387,49.8312171259895,50.38086365489289,49.623052751179785,50.36820760695264,50.74869040120393,50.25408456567675,50.19331544218585,50.710799953434616,51.15145369851962,51.03326134709641,50.90439187036827,50.12798182293773,50.43337961100042,51.305328163784,50.583070224151015,49.97087425831705,50.004342711530626,49.514504299964756,48.797310885973275,49.41077357251197,48.41509674116969,47.98718257807195,47.92164506018162,48.799568854272366,48.044749276246876,48.5519641302526,48.496757104061544,48.03553809877485,47.207320941612124,46.666489851195365,47.414743366185576,48.240751676261425,49.01314858254045,49.06116562476382,48.95248694298789,49.47893159929663,50.13181419065222,49.5736819379963,49.60091579053551,49.43974107457325,50.38910740381107,50.20179133955389,49.53068093582988,49.85031051421538,49.47621004842222,48.80843130266294,49.02248562918976,49.18200950231403,48.748654168564826,47.9415691527538,48.138666714541614,48.03869844833389,48.02670121891424,47.344002610538155,46.46254885895178,46.4688195893541,47.21787359146401,46.58899314003065,46.06660391949117,45.462875090539455,44.64746283041313,44.04787094658241,44.438773188740015,44.501336362212896,43.518221931066364,43.63495122594759,43.433803082909435,43.049985465593636,43.43381455820054,44.238621389493346,43.76619915198535,43.28726522671059,42.92727565905079,42.86690546059981,42.87326997099444,43.8307394455187,43.39195983391255,43.19036558596417,42.61213093996048,42.284897211007774,42.1187452794984,42.908300834707916,42.42688093660399,41.654077793471515,41.523265515919775,42.15775911742821,42.60641119116917,42.72106496570632,41.89609239762649,41.074759509880096,41.94336773082614,42.13938682572916,41.58616507938132,41.250119464006275,41.724645886104554,41.89806192088872,41.57836405793205,42.059746004175395,42.87498989002779,42.9720578729175,43.93946045031771,44.62013457901776,43.67798796389252,43.276729475241154,43.325489753857255,42.666367126163095,42.82679571583867,41.98432978941128,42.73144954117015,43.025057482067496,43.96086905198172,43.426599198020995,43.39514581486583,43.36020142631605,42.39229600597173,43.3399895504117,44.14709560433403,43.70053580030799,42.8644157522358,42.80910637928173,42.17580337962136,41.82762577757239,41.16511188773438,41.59463658789173,42.29873952455819,42.33656542748213,43.31651823827997,43.28806070284918,43.602629066910595,43.43594333156943,43.46569602936506,43.8979846839793,43.936443756334484,44.36518910340965,44.41319278907031,44.20181447826326,43.64304210897535,43.091821427922696,43.390419038012624,44.26644063554704,43.827285398729146,44.26611039042473,43.5611052243039,43.07204235019162,42.70548849646002,42.85784283094108,42.70126155950129,43.387039974331856,43.61142219696194,43.48828816320747,43.93695005821064,44.69438698515296,44.30583444889635,44.251249643042684,44.757040387485176,43.943042068742216,43.757670941296965,43.78030988993123,43.62232138123363,42.678070162888616,42.07622713083401,42.05257964041084,42.34295797580853,41.81469583697617,42.562346308957785,42.17144793597981,42.44994276110083,42.4281409420073,42.146901896223426,42.963168191723526,42.17478205123916,42.98348050285131,42.86912561627105,42.54887268366292,42.69210300222039,42.63924999302253,41.94620608119294,42.15722721116617,42.795618740841746,43.50988460564986,44.16173729719594,44.38341431459412,45.24226677650586,45.64953627623618,45.54431024193764,45.872939271852374,45.35872780997306,45.225734702311456,44.67916414886713,45.25751359248534,45.2537902276963,44.82145172357559,44.951112477108836,45.180980957113206,44.39743855362758,44.00064071593806,43.44086196785793,44.034704806283116,44.601773642003536,45.23554150434211,44.42350165452808,44.02435433445498,44.54189297230914,44.84307053172961,45.39617007272318,45.85139248287305,45.68986082961783,46.283665185794234,46.30466424115002,46.65653527993709,45.764358021784574,45.44735564198345,46.16636865120381,45.93439390650019,45.707613334059715,45.088761436287314,45.78737357771024,46.01789836632088,46.54269350739196,46.47291235346347,46.69809519406408,46.957053824327886,47.17501393519342,47.49046544265002,47.33634934434667,47.64285522559658,47.44233362702653,46.808706319890916,46.98517937492579,47.313443421851844,47.82918986398727,48.21978244045749,48.26137989666313,47.888770462945104,47.153100450057536,47.41758590191603,47.55615034606308,47.03749114042148,47.590624739415944,47.44019142119214,47.629089932423085,47.4016225701198,47.33831264451146,47.92289253557101,48.70267605083063,48.82870916137472,48.34733503451571,47.44133050227538,46.71189731452614,45.75610301969573,45.735054017975926,45.30004485556856,46.19442061847076,45.645200753584504,45.16789132589474,46.05755971418694,45.462050130125135,45.8749401983805,44.876288826111704,45.38704639021307,45.716249756049365,44.9513124669902,44.543334702495486,45.05543731432408,46.01135576656088,45.21713719936088,45.00116805266589,44.72350346529856,45.263409515842795,45.20425323350355,44.90105652809143,45.63825757103041,45.60255441721529,44.75361785758287,44.595812272746116,44.017343958839774,43.66051155747846,43.077861816156656,43.49010677263141,42.770147416274995,42.49575858330354,42.12393041374162,42.7760550850071,42.62500512460247,43.28292065765709,43.83504207385704,44.7448964570649,44.1209007371217,44.27985649229959,45.23366670915857,45.513526283204556,45.62494565965608,45.76569783175364,45.31692581996322,45.8203986142762,46.67248452315107,47.49795647896826,47.22447510063648,47.3310447554104,46.76642648782581,45.87932872958481,45.70118696708232,46.15500796493143,47.13041094504297,46.65997835947201,46.67965627275407,45.81223794724792,45.699553051032126,44.788157424889505,44.35302617633715,44.92448795540258,45.74403545120731,46.283912680111825,46.664550106506795,47.50667156139389,47.87934896256775,48.34871550183743,47.349280062131584,47.48303951788694,48.44258181005716,48.07431098725647,48.742227406241,49.267433562316,49.41039871936664,48.633898911532015,49.613009702879936,50.487651398871094,51.265797309111804,50.637031155172735,49.90820633992553,50.16635248763487,50.940611040685326,50.696438347455114,50.19610669836402,50.790755255147815,50.47341950237751,50.41166067495942,50.18066622689366,51.1568891373463,51.91236477391794,51.82074161525816,51.52828914951533,50.61226476216689,50.711076870094985,51.71048579830676,52.15846010064706,51.44446863187477,51.150169333443046,51.14456579880789,51.847717742435634,52.45076187280938,52.104577348567545,51.27911217743531,51.015873425640166,51.56964506348595,52.56243205117062,52.689888750202954,53.09035220509395,53.21066216006875,52.76571554876864,53.62297306023538,52.99394300952554,52.54677782440558,53.418523920699954,53.16507046902552,53.83090515201911,53.37607974046841,53.99540544068441,53.91334543796256,53.74515177216381,54.11860527610406,54.488883496727794,55.25617027329281,54.93429022748023,55.21095998585224,54.70364385610446,55.59147424856201,55.635630779433995,55.6768616666086,55.78987549152225,55.5637950967066,54.8040937660262,55.45847465423867,55.68415940506384,55.4661631481722,55.59291076846421,55.29256686149165,54.35889611719176,53.917614752892405,53.72067966219038,53.240801440086216,54.06115584354848,54.573520062025636,54.84971154015511,54.11572616873309,53.76804656162858,54.35061510140076,53.82716499362141,53.56310928333551,52.971311652101576,53.20195470517501,53.79000678053126,54.529557551722974,54.79490955453366,55.45074012968689,56.03870939370245,55.30315574258566,54.669883623719215,54.97507172822952,54.429325573612005,54.960540655534714,55.19118805695325,54.708778052125126,54.28066500648856,53.2839243109338,53.29667775565758,52.5560346362181,52.051722878124565,52.09685549233109,51.96556529728696,52.5611628475599,52.93496139161289,52.67127740569413,51.976539998780936,51.342256603296846,50.4084712699987,49.621992896310985,50.49317449145019,49.89930515456945,50.29011082556099,50.46680946694687,50.726471041329205,51.694068387150764,50.954268116969615,51.74563385779038,52.01242831442505,51.260823850985616,52.00665023177862,51.101059006061405,51.61840690486133,51.9023170764558,51.76157348230481,51.15161564992741,51.44391967635602,51.47054780134931,52.27260334091261,53.24337149690837,52.78987245215103,52.80028510931879,53.232507412321866,52.48656517080963,53.35222273739055,52.88628177996725,52.34678263030946,51.885929993353784,50.89313168358058,50.2945886189118,50.08261906867847,50.63486268464476,50.82869796035811,50.373790454119444,49.569626887794584,50.555741229094565,51.22171677509323,51.74453886272386,52.64037597505376,52.30326844099909,51.35522489622235,50.61767859896645,50.87480212561786,50.34583266219124,51.07996434811503,51.270929811522365,50.59017215669155,49.98201879346743,49.248805350624025,49.03563486970961,49.14043877180666,49.73504528077319,48.74681008327752,48.136437308974564,48.92628634162247,48.58091890485957,49.106793709564954,48.607562612742186,48.57759121665731,48.42995990253985,48.72433755081147,49.63502722699195,49.87285780580714,50.68716924358159,51.50372442463413,52.156626044306904,52.26968269748613,51.416315050795674,51.5516254468821,50.66285347053781,51.10702345520258,50.89047974906862,50.88973543839529,50.36796696577221,49.55069354502484,49.50776497833431,49.43749101087451,49.29653225792572,48.89298866502941,49.59801201010123,49.79869764810428,49.69444276858121,49.03902440145612,48.5669943629764,49.44816198851913,50.120175023563206,49.136382224503905,48.38471122086048,48.832335833925754,47.84094123961404,47.45924137439579,46.82127474388108,46.22277779271826,45.98270077025518,45.234943949617445,44.62641179189086,44.30841158470139,44.74891015747562,44.41894263308495,43.603369063232094,43.414874779526144,44.40019851317629,45.298199554439634,45.25737595371902,45.1710899611935,45.07634972408414,44.196085662115365,43.57738870661706,43.640646130312234,42.900420364923775,43.4179256753996,43.28508516587317,43.18771752761677,44.08581755729392,43.44916570838541,43.36332873953506,43.80055439192802,43.727599278558046,44.64340960094705,44.25379396881908,44.162017272319645,43.25963663589209,44.25927028385922,45.01111807394773,45.95467236218974,46.48913110932335,47.29347527585924,47.30296159815043,47.43998201470822,47.66169991437346,47.57719890167937,47.052399474196136,47.855474289506674,46.91341550229117,46.49017606396228,45.865094158332795,45.205655745230615,44.219253273215145,43.31695712963119,42.91494366759434,42.13685191050172,41.46079430123791,41.19815602619201,40.22487158514559,40.58284445060417,40.53903269581497,40.30133717181161,40.320426823571324,40.12317769182846,40.79488486982882,41.75654170755297,41.84010408492759,41.98118837829679,42.38101214822382,43.26791791850701,43.876714488491416,44.16261387011036,44.06883368920535,43.19004296604544,43.737204124219716,43.928718712646514,44.70275771385059,45.52996324002743,46.432264568749815,47.417601589579135,46.50934336334467,46.70686772139743,45.75187445105985,46.206073307897896,45.43424212234095,45.50159102072939,45.09450824512169,45.18330599507317,45.09755884576589,44.86891820654273,44.249345168005675,44.80028277216479,45.6512335697189,45.84265162656084,45.2062433231622,44.9978235042654,44.93705015350133,44.71934276074171,45.43207580689341,44.56596223637462,45.17997590685263,44.71173879597336,44.93994884425774,45.65435841726139,46.023548061493784,46.652716209646314,47.41147943167016,46.99371635867283,46.64673831500113,46.22568014310673,45.696745278313756,45.3740190458484,45.381965979002416,44.93065104726702,45.34995976695791,44.579888825304806,44.01851060707122,44.41420326475054,45.01552769448608,44.32894812244922,43.65402179211378,43.589426185935736,43.86889810394496,43.99270152160898,43.6343553410843,43.686341166030616,43.02084325719625,42.926290748175234,43.42411075346172,43.29229283332825,42.62405905080959,42.823219798505306,42.795243066735566,42.26497895969078,41.616170085035264,42.02749123331159,42.25363190704957,41.93491093907505,41.663240316323936,40.72151654586196,39.82093444606289,38.84549119183794,38.49562103440985,37.98573415540159,37.22966721467674,37.46182551374659,37.42730902507901,37.185005380772054,37.515067369211465,37.9440514491871,38.30002361815423,38.41915734158829,38.19471270265058,38.5353797795251,38.89533488173038,38.36422589002177,39.00337965087965,38.55949241761118,38.41395694343373,38.69203198654577,38.41870186617598,38.08724183915183,37.33479676023126,38.09910533716902,38.66721644857898,39.51281828712672,39.366876437328756,39.12765216268599,38.33784505398944,37.692648887168616,36.891310069710016,36.125524673145264,37.035661400295794,36.665388701017946,36.80338948685676,36.926140600349754,36.820243863388896,37.1372156906873,36.88817875040695,37.44010340142995,36.540375504642725,35.56420076312497,34.80717898579314,35.73645404307172,36.040329452138394,35.24935091752559,35.3058967073448,36.2142759882845,36.616596524603665,36.22613800689578,35.41898911911994,34.926156762521714,34.75970138376579,33.82906792405993,33.30057999351993,33.66379354055971,34.496678879950196,33.62859008461237,34.015400423668325,34.78256255714223,35.75701709790155,35.06538604851812,35.495082661975175,35.28252760646865,34.30142522742972,34.8407928054221,35.48616523575038,36.27288925694302,35.88071659952402,35.383070586714894,35.233105659950525,34.538125940132886,34.07467268174514,33.12703588278964,32.714148031547666,32.92233646707609,33.652544679585844,34.36532963765785,33.54479964170605,33.025856253225356,32.1035683886148,31.159562971442938,31.057871502358466,30.664958495646715,30.795359675306827,31.318101726006716,30.938370129093528,31.77272091526538,32.41581623442471,32.20452977856621,32.498110530432314,33.13005983643234,32.850424766074866,33.46386559680104,33.50331767369062,32.76217570854351,33.69996671238914,34.656393255107105,35.20475911675021,35.28878433071077,35.360995929688215,35.12444434361532,35.34895056253299,35.41609309008345,34.46012734202668,33.535533050540835,32.55731802480295,31.613097078632563,31.31890971167013,32.26997708249837,31.830953518860042,31.13068748731166,32.06214572163299,32.11222755117342,31.14447823073715,31.051196350716054,30.184287152718753,30.858193261083215,31.723972391337156,31.576790508348495,31.80508960550651,31.269766725599766,32.17084517562762,32.698530981782824,31.984287484548986,31.357555041555315,31.792022832669318,32.10009508114308,32.15759401768446,32.83254603110254,33.15333392098546,32.94342738809064,32.35334899649024,32.28860428184271,31.38984033325687,32.12960713310167,31.841071001254022,32.69439444458112,31.938168707303703,32.746367293875664,31.952943671494722,31.88189018610865,31.053639392834157,31.904774896334857,31.887102007865906,32.54586838744581,33.04740620125085,33.04255101503804,32.99183872016147,33.74654571805149,33.77825573133305,34.29068781994283,33.59199510049075,32.724302927963436,32.66179380426183,31.837603079155087,32.091075180098414,32.82311154110357,31.92513813264668,31.810067193116993,31.482029837556183,30.98017470166087,31.41758497711271,30.610665068030357,31.457588540855795,30.886032161768526,31.777620150242,31.962229321245104,31.768331571482122,31.33263162849471,32.29294437402859,32.62211449211463,32.59992632968351,32.134594112169,31.761682165786624,31.441717103589326,31.302345126867294,30.63864180445671,31.10342997731641,30.189080618787557,29.47206245083362,28.92616840871051,28.65721628256142,28.128553360234946,27.516934619285166,28.444989228155464,28.127952768467367,28.54937648680061,28.220769541338086,28.186561512760818,28.146135151851922,27.766070924233645,28.395776708144695,27.807121354155242,27.056792678311467,27.482740423176438,28.105111407116055,28.78523228922859,29.259224691893905,29.681073769927025,30.526932194828987,30.719825721811503,29.89506454160437,30.78557950258255,30.857312057632953,31.472764593549073,31.43155657686293,30.96694776508957,30.372168647125363,29.982243482023478,29.886731311678886,30.877969610504806,30.052852477878332,30.851650454103947,31.720753721892834,30.876552304252982,31.277630756609142,31.11575535312295,30.67843768047169,29.723113980144262,29.19476435892284,29.23302055289969,28.89955236390233,28.1072246292606,27.886372243519872,28.407674028072506,28.337255081627518,27.57062064204365,28.035651055630296,28.97083655698225,28.352680032607168,28.497004114091396,27.634298952762038,27.21290939534083,27.8723718598485,27.485496489331126,28.371771505568177,28.305430286563933,27.755975044332445,28.176864298526198,28.960027104709297,29.900606884621084,30.869090233463794,30.219429023563862,30.049335326068103,30.928532647900283,31.888223499059677,31.178135318215936,31.784401275217533,31.961013911757618,31.00157992215827,30.32111248327419,31.234206661116332,31.440011881757528,31.992449663579464,32.674901014659554,32.78206315776333,33.61785550694913,32.656453541480005,32.78307814942673,33.444720417726785,33.05562733579427,32.81892124656588,33.007767368108034,32.767325203400105,33.428612956311554,32.89252985501662,32.23050491232425,31.455266860779375,31.761170270387083,31.953527463134378,31.01574869407341,30.409855870064348,31.378176525235176,30.661069307476282,31.494296541437507,31.756382012274116,32.44373939745128,31.562622999306768,32.40968164196238,31.8557516830042,31.970226651523262,32.214023718144745,31.87042401311919,31.748772895429283,32.500706299208105,33.40500024193898,34.026793202385306,33.272800421342254,33.56459100963548,32.837336014490575,33.14149045199156,33.86511985165998,33.819704805035144,33.0186978969723,33.50982775911689,33.606820039916784,33.49848671350628,34.46507781744003,35.33812489314005,34.76421189168468,34.78404561895877,35.2856087628752,34.988090235739946,34.23355245543644,34.27962599741295,33.95829377742484,34.0329643888399,34.615172281861305,35.44121635844931,35.92746735783294,35.239774676039815,34.87527705170214,35.682000601664186,35.10012219566852,34.14351644087583,34.37090565543622,33.39159003505483,33.035426038783044,32.48347628582269,33.137918771244586,33.13570616347715,32.58684279117733,31.694006089586765,31.14007711270824,31.006949231494218,30.258368663024157,30.80034301383421,31.36325324047357,31.496725825127214,32.494079537689686,33.28019431652501,33.83460849896073,33.03445311449468,33.527572920545936,33.605349123477936,34.54935564659536,34.15025197993964,33.764009615406394,33.0475118951872,33.80873467633501,32.8958692625165,32.801092486828566,33.38582410151139,32.94443063857034,33.866166753694415,34.578190352302045,35.11238620663062,35.452590053901076,35.959545655641705,36.58106956956908,37.210525444708765,37.373257802799344,37.11321478197351,37.29345410875976,36.38534696074203,36.218535563442856,37.05579415196553,36.60516021819785,35.97038533072919,35.01292677875608,35.14800038840622,35.914649930316955,36.25261720176786,36.65424059610814,37.31692669307813,36.730896337889135,37.638920709490776,37.26176737388596,36.973951398395,37.36813554633409,36.77452191570774,37.752877498511225,37.46746725263074,37.31316430307925,37.87979748658836,37.17856847168878,37.75684606283903,38.49130470212549,38.4051781417802,38.134355859830976,38.16195871029049,37.331446246709675,37.72051702532917,37.74690354894847,36.95780986454338,37.01320890290663,37.25098744221032,38.09475184325129,37.96117864130065,38.793877641204745,39.56236905883998,40.10554153379053,40.160870041232556,40.04436586238444,39.601789174135774,40.59249852504581,41.24828964937478,40.28610020922497,39.34404915664345,40.22537647234276,39.663062838837504,40.1239954456687,41.093747979495674,40.1776109514758,40.2454592785798,39.72342660930008,40.126252577640116,40.41002917289734,41.170640653930604,40.850771888159215,41.17106880666688,41.7931507229805,41.71289478614926,42.17967513296753,42.40763368830085,43.24125873390585,43.39510349417105,43.41666265390813,43.151992063969374,43.73766278475523,42.978013990446925,43.80848941253498,44.473253996577114,45.26315799308941,46.05764038627967,45.53909854963422,46.3513387539424,45.427201084792614,44.44001531181857,43.855934895109385,43.21744193928316,43.85706269275397,43.34724516281858,42.6932630459778,42.557967707980424,43.24388556741178,43.56314343819395,42.64094413490966,42.22154632862657,41.82345304079354,41.1363597237505,40.61426707310602,40.687135408166796,40.55031014094129,40.36470807902515,40.9339248733595,41.678094579372555,41.83297614753246,41.05586835835129,41.57232423545793,40.971498219762,40.85038010077551,39.86853116657585,39.43091511866078,40.12819353165105,40.88912638369948,41.650195497553796,42.55494860978797,43.46661886293441,42.77268699929118,41.82428756309673,40.93249039631337,41.142298442777246,40.763687861617655,40.074837469961494,40.79472929937765,40.76243880484253,40.56693904148415,40.09935258701444,40.766332619823515,40.535480957478285,41.2796655446291,42.10607198532671,42.10288305161521,41.9450301239267,40.978209402412176,40.949406118597835,40.58407053677365,41.25242991745472,41.03240627096966,40.27504304563627,39.51292441599071,40.01118544396013,40.67792072147131,40.69090545596555,41.20941902883351,40.72945316974074,41.647493379656225,42.42214728100225,43.122585617471486,43.24800382461399,43.56540662003681,43.81518005672842,44.374004589859396,45.1289181788452,45.833276982884854,46.11254059895873,46.43484223168343,46.3497152547352,46.63222664780915,46.040039053186774,45.18587084906176,45.09783036727458,44.94566410174593,44.19449962396175,45.046596427448094,45.855993282049894,45.21488321991637,45.09944722754881,45.54036545101553,45.53997380938381,44.965469632763416,45.331972253043205,45.175730403512716,44.44888291833922,44.22719593998045,44.841122219804674,44.74826921429485,44.615297289565206,45.035906308330595,44.113154873251915,43.401566409505904,44.275499956682324,43.336326874326915,43.788036685902625,44.481429394800216,45.437710624653846,45.25150534696877,45.9681996377185,45.39776819944382,45.155024498701096,44.931549104396254,44.10920401383191,43.654205506667495,43.86379351885989,43.408240494318306,42.683093313127756,41.73132413206622,42.49421998206526,42.41022597299889,43.36397244781256,42.87796204164624,43.63356635486707,42.67995195183903,42.16999811818823,42.846818052232265,42.29803419718519,42.313436419703066,43.1372254062444,43.08931055339053,43.18789741164073,43.72556704748422,42.79812433710322,42.94750625966117,43.899420192465186,44.5423548812978,44.73629286698997,44.53990288451314,45.30701668607071,45.47602848010138,44.4856293797493,44.442467261105776,43.93290981231257,43.44036775222048,42.683275730814785,42.83491982566193,42.365854332223535,41.795998469460756,42.75045904982835,42.406428310554475,41.498903217725456,41.373482920229435,42.08682030905038,41.43050786666572,40.76487615983933,39.94435606710613,38.96990836970508,37.97602162975818,37.124901035800576,36.70312550896779,36.23795218206942,37.08979946374893,37.80382252018899,38.73340406129137,38.10732935927808,37.70458306372166,37.94426178652793,38.29290899075568,37.83575971936807,37.71770228398964,37.6249944367446,37.012733148410916,37.90778634790331,38.0553481481038,38.27320883888751,38.12775263655931,37.26541067659855,36.91132476180792,36.0282456879504,35.97174903517589,36.4506373568438,36.54808204714209,35.910266746301204,36.82254349812865,37.62335136020556,37.160973351914436,36.58977362141013,36.79545126250014,36.53981887176633,37.36166130658239,37.08229980804026,37.25613752892241,36.77843608986586,37.42194470344111,36.58154111588374,36.05679262988269,35.614549497608095,36.03020654572174,35.869389680214226,35.63523937994614,35.925708152819425,35.417691353708506,35.88490716647357,36.63757718494162,36.27519710920751,36.104636943899095,37.05308112734929,37.98821765277535,38.411194970831275,38.480594500433654,38.4052094114013,39.172604186460376,38.34295770805329,37.86865524156019,37.061139123514295,37.887626541312784,38.860769618302584,38.313384398818016,37.983916814439,38.124813272152096,38.81130596669391,39.2241690531373,38.503283879719675,39.41653901198879,39.23840944562107,38.65538942953572,38.24132009409368,39.10158621240407,38.85313627123833,38.098425570875406,37.33319459203631,37.03193186735734,37.58619021298364,37.444957490079105,36.498311093542725,36.29811037797481,36.3977870894596,36.60052692331374,36.06921350909397,35.45346010290086,34.99240568699315,35.35319189261645,36.29309127666056,36.96010804735124,36.27827111072838,35.501584962941706,35.90315816923976,34.93196999793872,35.35993188479915,35.035604873206466,35.04608976142481,36.000763998832554,35.4586453945376,35.06480587553233,35.57728803250939,34.73345215246081,34.79010659363121,35.17069843504578,35.57415657816455,35.20988354086876,35.5609739208594,36.00029598129913,36.15021558944136,35.56911973282695,34.74480224912986,34.000586775131524,33.04036494484171,33.73649064544588,34.46121746301651,33.80866676568985,32.99153011292219,33.660161699168384,33.8884103782475,34.43766043102369,33.926167520694435,33.87085593864322,34.16615078272298,34.32054829504341,35.22960747871548,34.496956777758896,34.194621936418116,34.824588334187865,34.54597760550678,33.57768406253308,34.494008894544095,34.108734814450145,34.47300852322951,34.93978737574071,35.91860306635499,35.55692100385204,36.40097727626562,36.59943615179509,37.463843535166234,36.90277029108256,37.631315940991044,38.04876164533198,38.50933703687042,38.960617538541555,38.389398442581296,38.87796381209046,38.3838898697868,38.22421996667981,38.49912588018924,39.35081341397017,38.365118969231844,38.96095479745418,37.99034029664472,38.94429065845907,38.24286742461845,37.64401064766571,36.88273394247517,37.106606491841376,36.70938818342984,37.12271332368255,37.75311114313081,37.25403052615002,37.20072088204324,37.94004910392687,37.573668140452355,38.44171554269269,38.22164279874414,39.06853986764327,39.920512984041125,40.58951685624197,40.87930294312537,41.312731358688325,41.639194497838616,41.217324908357114,42.21536647668108,41.79322853125632,42.714936547446996,42.08619205560535,41.991653888020664,41.98587053269148,41.635132101830095,40.66167374514043,40.04747551260516,39.32184694102034,38.39827725291252,37.825524953659624,38.53425460262224,38.29921509465203,37.523407343775034,37.250619689933956,37.14817717112601,36.785059354268014,36.966517684049904,37.65140882274136,37.462674549780786,37.0115917166695,37.95766054233536,37.18198736710474,37.33681929204613,37.04418327799067,36.868164233863354,36.96997845591977,36.67151614744216,36.83527666935697,37.48332987865433,36.54687621537596,37.14955832157284,37.83812524192035,37.99976960476488,38.480189960449934,37.74294253718108,37.83233709819615,36.98928973916918,36.703344164416194,36.58561558788642,36.796245840378106,37.30244249012321,37.53391198720783,37.63015491748229,38.0975103629753,37.43382120504975,36.93651170609519,36.35752275120467,35.608815144281834,35.79488730756566,36.51437191804871,36.251011557877064,35.47312450641766,34.65151548059657,34.233313345350325,33.397178010083735,34.158351350575686,34.290601182263345,34.16406186763197,34.54166251141578,35.26943635335192,35.744041215628386,35.22827121336013,35.22458233125508,34.78671495150775,34.96256760926917,34.875009855255485,34.44364581396803,34.30250839795917,34.11511640390381,35.06298948591575,34.33364806231111,34.347801957745105,34.720522035844624,34.54069962259382,35.27077867370099,35.67987821996212,35.10829964466393,35.36569288140163,36.286375949159265,36.650761540047824,36.19416087074205,36.769516240339726,35.85890141967684,36.54109593015164,36.19241969566792,36.1711209397763,35.95081545133144,36.61700913589448,36.697841106913984,36.21828266046941,36.69632365833968,35.89029149711132,34.96270147431642,35.30035839835182,35.228621860500425,35.182283726055175,35.89966754382476,35.29217691347003,35.82045991998166,35.2115543349646,34.42354150954634,35.40709249675274,35.23854527901858,36.1932867327705,35.26389830838889,34.75133539875969,34.64675044873729,33.70604068599641,34.13775861263275,34.520113438367844,34.67789482837543,34.64409475121647,34.234010997693986,35.01638688193634,34.40355077851564,35.084511728957295,34.799060381017625,34.13932317914441,34.07615234097466,34.72438805364072,34.855906252749264,35.318287164438516,35.64131395984441,36.4007257274352,36.23905267333612,35.46081163873896,35.65096460701898,34.68763981061056,34.79796105064452,34.92468894459307,34.490491662640125,33.74804136296734,34.70762324612588,34.80569124920294,34.85175343696028,34.179591385647655,34.87831722386181,34.31076168548316,33.80278873303905,33.07862973771989,32.88379202224314,32.433063346892595,32.36419226042926,32.96704869112,32.700380130670965,32.25502076558769,32.27885770518333,31.847152937203646,31.94142746599391,31.16008744528517,31.58677902026102,31.782516662031412,32.26159121794626,31.720905096270144,31.08325642393902,30.543308061081916,30.937196888960898,31.602837703656405,31.044988866429776,30.913870233111084,31.280590799171478,30.82284555817023,29.983282380737364,29.625954022165388,30.560812360141426,29.866663774009794,29.190944705158472,29.170849476009607,29.777377616614103,30.74545745551586,29.958311901893467,30.194681296590716,30.163422427140176,30.30828900495544,29.330341072753072,29.251575072761625,30.015706105157733,29.22594474395737,28.717659015208483,28.01471388200298,27.634107693564147,27.846947346813977,27.489027922507375,28.361974446102977,29.327812102157623,28.62776336306706,27.694841576274484,27.906571235507727,27.74052566708997,27.633461758028716,26.68530137743801,26.160273593850434,26.108475420158356,26.58882691990584,27.383975449949503,27.2088786913082,28.104966613464057,27.531250457279384,26.662812404334545,26.498287896625698,26.151687057688832,25.366556517779827,26.209521223790944,26.2294336669147,26.807884857058525,27.50969235226512,28.11381287826225,28.89063777262345,29.142949193250388,28.976425973698497,29.956848042085767,28.97318210080266,28.264565587509423,29.25591590255499,28.757942985743284,29.24680476821959,28.525300548877567,28.446128733456135,27.727630488108844,27.049587110057473,28.035532157402486,27.815965480171144,27.831405976321548,27.749091899953783,27.81397091690451,27.075866577215493,27.92614356195554,28.279123806860298,27.342938226182014,28.103491806425154,29.086472438648343,28.81367122847587,28.930962298996747,29.565035881940275,30.116704198997468,30.294684916269034,30.100418834015727,31.093077682424337,31.407093064393848,31.460819558706135,31.304257592651993,30.459106963593513,30.961967582348734,31.706249656621367,30.96494965441525,31.56457884470001,30.82266731141135,30.985786902252585,30.867279576603323,29.867429105564952,29.07398709328845,28.999087157659233,29.732900942210108,29.291883883532137,28.9394909334369,29.108257146552205,28.145031900610775,28.166474423371255,28.839222095906734,29.5017982092686,28.582173516973853,29.44805128313601,29.330411120317876,28.70275200624019,29.140681747347116,28.55620680237189,28.788987924344838,29.04490721039474,28.76876538293436,28.76002211868763,29.030954436399043,28.779482312966138,28.010651426389813,27.635627408977598,28.043319491203874,27.247534613125026,27.424599799793214,26.51839352864772,26.154302075505257,25.993096819147468,25.927280999720097,24.996598087716848,24.76696619298309,24.139251218177378,24.336931043304503,23.89974184706807,23.853937768843025,23.715239610057324,23.42809665063396,23.042924772016704,23.887424665037543,23.83333943877369,24.09387038415298,23.819866536650807,23.252097146119922,24.135459261015058,23.650577252730727,24.373607801739126,23.747499220538884,23.735217058099806,23.246527386363596,23.827726575545967,23.112735909875482,22.27785321092233,22.923944597132504,23.05580031266436,23.755523042287678,24.178265647497028,24.26047359686345,23.544490152038634,24.392976006492972,24.360121814534068,23.912857214920223,24.83034100709483,25.695238513872027,26.56959086842835,26.21965471189469,26.777704989071935,26.28342132922262,26.245837045367807,26.870500104501843,26.513462734408677,27.4757241406478,27.561731348279864,27.749545293860137,28.748657803051174,29.728117095772177,28.81399698369205,29.395474310033023,28.647829801309854,27.919382732827216,28.70138795580715,27.915640127379447,28.05714760813862,27.574388871435076,27.8224502238445,27.341369211673737,27.48408346902579,26.705464830622077,26.969576731324196,27.29961601085961,26.316185852047056,27.017030260991305,27.23309619957581,28.071128226816654,28.199151079170406,28.103231797926128,28.284815430641174,28.186147643253207,28.24783440725878,27.90694293472916,26.927885078825057,26.064413770101964,25.203558918088675,25.140746992547065,24.929045215714723,25.796786333899945,26.097875379025936,26.03931553149596,26.66403710236773,27.286907556001097,27.60601645614952,28.198850720655173,28.343494758941233,28.018011746928096,28.865403925068676,29.310531466268003,29.10645004734397,28.403977239038795,27.97549211094156,27.635709864553064,27.578782274853438,28.00988763011992,27.556759610772133,26.872632382437587,26.19136644853279,26.972579833120108,27.559284937102348,28.283067321870476,29.13041917886585,28.696557043585926,29.52693540742621,28.550800093915313,27.806314939633012,27.506563835777342,28.115344838704914,27.992696623317897,27.573304491583258,27.1100808060728,27.095805644989014,26.504250118043274,26.33645838452503,25.837940466590226,26.537943655159324,25.809119013603777,26.56135630607605,26.46241299668327,26.685707584954798,27.407916358672082,27.924839991144836,26.97200744971633,27.037035113666207,26.713246153201908,26.04745923448354,26.766073272563517,27.729824678506702,28.158869710750878,27.942490801680833,28.177473532501608,28.60463105002418,28.573867947328836,27.796195892617106,27.448575823102146,27.737838042434305,26.84946477226913,26.305168272461742,25.79916883027181,26.290351597592235,27.144957742653787,27.180276461411268,27.42943276418373,26.545730359852314,26.56524353660643,25.99175793118775,26.11994473496452,26.276090468280017,25.390181874856353,25.9470793614164,26.08163257362321,26.391106753144413,25.75627511087805,26.49348509963602,26.61515303514898,26.24610555684194,25.819367787335068,26.793331002816558,26.8005201225169,26.067652525380254,26.135016174055636,26.483036296907812,25.879681625403464,25.09306717850268,25.86862402688712,25.531508390791714,24.57458480540663,24.786317836493254,25.022501855157316,25.263978340663016,25.65466235904023,24.781996480189264,25.35816095676273,24.634432455524802,23.914882686920464,23.68248524516821,22.91147008072585,22.680192455649376,22.304049487691373,22.3260427583009,22.950708906631917,22.071878594346344,23.026007004547864,22.384772563818842,22.858831668738276,23.144916322547942,22.808187718037516,23.59463128633797,22.83559812186286,22.171725129708648,21.54230941925198,21.08770800800994,20.245497616939247,19.77985558193177,19.81784982793033,20.644280512351543,19.88024793425575,20.22168611222878,19.316300353966653,19.437806520611048,18.76454054377973,18.725477799307555,18.332622362766415,19.24401784222573,19.211959902662784,18.952025002334267,18.484516330063343,18.45129168825224,19.038662451319396,18.463383994065225,18.20536430319771,17.999488283880055,17.673532786779106,17.9085361212492,18.37984978640452,17.8694598833099,17.927358203101903,18.32580866292119,17.465336145833135,18.09935739543289,17.406889862380922,17.17121840082109,17.616099804639816,18.07763671828434,17.370010923128575,16.69119091378525,16.65878074336797,17.09625360229984,16.1442689364776,16.48429128807038,15.697958920616657,16.57726882537827,16.538579079788178,17.522625393234193,18.218273957259953,17.44908953504637,18.263288712594658,18.473779255524278,18.351491493638605,18.412076982669532,18.533467896282673,17.77214070269838,17.89158060774207,18.095323503948748,17.32836266234517,17.507981842849404,17.94901923602447,18.594200895167887,17.626704287249595,16.919185508508235,17.655644461978227,17.066303563769907,16.585515709593892,15.756830875761807,16.62746170302853,15.902258177287877,16.652095213532448,17.26263881660998,16.313996837940067,15.62588646961376,15.695111280772835,16.009390838444233,16.45976397395134,16.288168273400515,15.91383078508079,15.002341645769775,15.928081538062543,15.974556074477732,16.422792873345315,16.951696982141584,17.13003955874592,16.37716466328129,17.078328252770007,16.43273809365928,16.79951368458569,16.86640419717878,17.32166478736326,16.40107394894585,15.419125764165074,15.133679867722094,14.291391475126147,13.733386225067079,14.33753530215472,14.215833777561784,14.059601661283523,14.190509375184774,13.85209488030523,13.819754369556904,12.903749370016158,12.686632852535695,13.492516028229147,14.346567506436259,13.40753700537607,13.479961311910301,13.392183971591294,13.104470371734351,12.997631918173283,13.951944765634835,14.93343422561884,15.368683912791312,15.38541810400784,14.975042829755694,15.489139690063894,14.69775636587292,14.748006601352245,14.505453016608953,13.526574228424579,13.592943682800978,14.052730961702764,13.523781206458807,14.20272438134998,15.127485195640475,15.447928552515805,16.252002267632633,16.810479315929115,16.11252160742879,15.932454440742731,16.2574919834733,15.848518232349306,15.63280386570841,15.531706106383353,14.64936590846628,14.647566779982299,13.987493223976344,13.376012491993606,12.854357270523906,13.2293207119219,13.773349157068878,13.203975571785122,12.249882456846535,12.907896312884986,13.437857553828508,13.41118229366839,12.501085544005036,12.627279954496771,13.519348378758878,13.529939461033791,13.395257389172912,12.89021332655102,11.894449094310403,11.699384863488376,12.152153169270605,12.459284321870655,12.124199646059424,12.687341975048184,12.407178646884859,12.522695221472532,11.895130405202508,11.166197166312486,10.3803068427369,9.899432053323835,10.740543977823108,11.222292264923453,11.090916183311492,10.870761319994926,11.042249435558915,10.965790565125644,10.857721268199384,11.04404184781015,11.570842987392098,12.196129884570837,11.592803261708468,11.422992042731494,12.103580844122916,11.279984176624566,12.21251506358385,12.388554341625422,12.807628358248621,12.750959374010563,12.799797303974628,13.486208458431065,13.189984065014869,13.84928037552163,13.789872172754258,14.50647358270362,14.142666452564299,14.39584853965789,14.984996539074928,14.525834547821432,15.04787038685754,14.505223450250924,13.570651988964528,14.306750983931124,13.921501017641276,14.388498014770448,14.333615054842085,14.357631850522012,13.788408092223108,14.101999590173364,13.131143230944872,13.155812049284577,14.037858532741666,13.045868690125644,13.951872914563864,14.754846069496125,13.837245585396886,13.17543629836291,13.511648001149297,14.000725315418094,14.954490586183965,14.071309147868305,14.814786992501467,15.168066091835499,16.118489924352616,16.105400967411697,15.705246213823557,15.607139617670327,16.14074422698468,16.4543263646774,15.875585559289902,16.196478221565485,16.614008827600628,17.33701660996303,17.738208376802504,16.99575939355418,17.21651510382071,16.412687754724175,16.84383850544691,17.50504686497152,16.50856284517795,16.083414252381772,16.923812325578183,17.71352723101154,17.64590491168201,17.058843097649515,17.633555533830076,16.807798794005066,15.977946769446135,15.999235698021948,16.562926336657256,15.723951187450439,15.337313490454108,15.861309916712344,15.05247754463926,15.634780498221517,15.32652355870232,15.99859564146027,16.68346912227571,16.949271384626627,16.325269259512424,16.262237247545272,16.870407050475478,15.902247433084995,16.346576896030456,16.838020391762257,17.132022281177342,16.206989981699735,17.118871714454144,17.119407567661256,17.822117044124752,17.183489307761192,16.65942296013236,15.659920091740787,15.406778616830707,16.108324670232832,15.256099127233028,15.43251284584403,14.850945412646979,15.325299618765712,15.817670705728233,15.052444075699896,14.975116647779942,14.516890440601856,13.73237300105393,12.817236821632832,13.612957445438951,13.408801080659032,14.109420616179705,14.398475124966353,13.781938417814672,13.782350360881537,12.791509080212563,12.730168818961829,12.30380607349798,12.013928774278611,11.02163556823507,11.763097091577947,11.99046814115718,12.051477944012731,11.274539508391172,11.594763884786516,11.024569201748818,10.715279828291386,10.58753671310842,11.067108164075762,11.704692777246237,11.49957027938217,10.762047144584358,10.03308773599565,10.163791690487415,10.994145022239536,11.618960318621248,12.293889097403735,12.141484728548676,11.451524368021637,10.598872321192175,9.856867937371135,9.701906747184694,10.237525488249958,10.135909289121628,9.678361544851214,9.234978473745286,8.371120739262551,8.57104372838512,9.34289993206039,9.276213947217911,8.374618921428919,8.50306520005688,8.629114561714232,8.669428747612983,8.99523765174672,9.29383799713105,9.16004505334422,9.845584210474044,10.841981066856533,11.281731160357594,11.777906893752515,11.239990677684546,11.898031422868371,11.481279735453427,10.55551325948909,9.744330946356058,9.734126444440335,9.089762615505606,9.124160456005484,8.882791281677783,8.078223883640021,7.605922678485513,6.736757434904575,7.084962381981313,7.9150670315139,6.990745632443577,7.476359204389155,8.151005120016634,8.724780082702637,8.865181943401694,9.211561613250524,10.12925844732672,10.516174003947526,10.671957741957158,10.477618411649019,10.165200293064117,10.278803028166294,9.653258660342544,10.202656696084887,10.91806903341785,11.232585212681442,10.416073669213802,11.00880877720192,10.907209885306656,10.11092973081395,11.001555523369461,11.521422401536256,11.073884601704776,11.775408280082047,11.115798948332667,11.860102501232177,12.37693899963051,13.214157403446734,14.126976943109185,14.863654838874936,15.400348588824272,16.03270251210779,16.848278387915343,16.93225978128612,17.518610660918057,17.60552702937275,17.80970462411642,18.755645665340126,18.210822744295,18.623575589619577,18.054107967298478,18.94115254189819,18.892268031369895,19.221762570552528,18.65724259847775,18.798497702926397,19.27308124070987,19.061501290183514,19.578717117663473,18.584524247329682,18.172640391159803,18.424095574300736,18.845903086476028,18.144005632027984,18.04369921516627,18.326222927309573,17.371695686131716,18.090520152822137,19.08776919171214,18.31917346129194,19.040131045505404,18.505667986813933,19.501837178133428,19.964321199804544,19.553559340536594,19.756589389406145,20.197518792469054,20.922388292849064,20.219976123888046,20.23492011334747,20.357107636518776,19.755811809096485,20.15499060926959,19.921113363932818,20.86832201713696,20.445480583701283,20.135236599482596,20.263887368608266,20.374178362078965,20.393784902989864,19.84430828783661,20.597845050040632,19.982357697095722,19.856131392065436,18.940882599446923,19.61993212811649,20.497520577162504,19.54725981876254,19.34249777207151,19.456428261008114,19.85081953695044,19.242836146615446,18.311253630090505,18.014399175997823,17.508444769773632,17.45657438552007,17.22427569422871,17.530751504469663,18.45580551493913,18.934054812882096,19.39472866198048,19.893550837878138,20.60075667873025,21.55090372543782,21.48574154963717,21.60446972772479,21.06837932858616,21.26093881065026,21.351091152988374,21.858905367553234,21.10826451005414,21.987254990264773,21.112097225151956,21.72922341665253,22.04182886471972,22.93099427688867,22.344601758290082,21.388843982014805,20.833406870719045,21.05401629023254,20.901162163354456,20.44368552463129,20.058187233749777,20.16466187685728,20.55539664067328,20.951112973038107,21.07538604643196,21.31703748833388,21.944540749303997,21.61070263898,21.673562774434686,21.574582013767213,21.8526517492719,21.21902848687023,21.057278224732727,21.579357688780874,21.278608089778572,21.429824178107083,21.505413115024567,21.959126580040902,22.296334181446582,22.430995831731707,22.47377713723108,22.741284196730703,22.82348274998367,22.395862021949142,21.554301525931805,21.725653786677867,22.618990839459002,23.28952260920778,22.795756105333567,23.45831922441721,22.5434224284254,22.96798234852031,22.46044979058206,23.010599251370877,23.368137929122895,24.167855449486524,24.18852428579703,23.892382360529155,24.84494570409879,25.633448698557913,25.982862913049757,26.842573954723775,27.04921818105504,26.800143863540143,27.222971678245813,27.299187595490366,26.416517868172377,26.413345304317772,27.262048039585352,26.54400958912447,26.99990507727489,26.52978207822889,25.87816272350028,25.04833748890087,24.876049540471286,25.298918911255896,24.807657678145915,24.411097694654018,25.116617733612657,26.062649129424244,25.522424123249948,25.394536105915904,25.171943247318268,25.210855060257018,25.302977187093347,25.741570932324976,26.271035212557763,26.568756424821913,27.248773627448827,27.352441053371876,28.251850703265518,28.058611045125872,27.08954999409616,27.43381407065317,27.076999357435852,26.470053791999817,26.681825959589332,25.969706274103373,25.577766100410372,24.782075447030365,25.453035158570856,25.99157253233716,25.04780936613679,24.14232700318098,25.09337519435212,25.261160533875227,25.05485167913139,25.709094242192805,26.11956914421171,25.124096013605595,25.753026388585567,25.980974660255015,26.027033034712076,26.94080222211778,27.88305571861565,27.900383239611983,27.41454283054918,26.82786862226203,27.32481969706714,27.135086678434163,27.641778234392405,28.20010913023725,28.47871848428622,27.827552570495754,28.309551645070314,28.410311861429363,28.627194745000452,29.133489036466926,29.715876349713653,29.31534141721204,28.599760001990944,28.550862956326455,29.33034149510786,29.252796614542603,29.094150927849114,29.690385431516916,30.316028743050992,29.690283658448607,28.84096988476813,28.136933465488255,27.19656131695956,27.69014707254246,26.695096870418638,27.461856756825,27.532105854246765,27.002042300533503,26.900237031280994,26.73987645888701,26.682680825702846,26.96014275494963,26.362967914436013,25.907915111165494,26.242729256860912,26.84809365356341,27.32316682767123,26.693030128255486,26.158157180529088,25.962264970876276,26.421948947478086,26.22349371481687,25.478847368154675,24.684933298267424,24.410704829730093,23.65297889849171,22.980193718802184,23.956243842840195,23.111598514020443,22.93736755894497,23.392438209615648,23.93555244896561,23.084859964437783,23.625705755781382,23.07517059147358,23.315792405512184,22.805929633323103,22.386613065376878,21.512857982888818,21.34811038756743,20.38996252650395,20.890780688263476,20.877402180805802,20.184856053441763,19.487389055546373,20.342534067109227,20.734533817041665,20.284360313788056,20.327177796978503,20.43976987572387,20.08392199454829,19.704119134694338,18.84690730739385,19.276165432296693,19.926033759955317,19.187435561791062,19.30619867751375,18.319301418028772,18.977996536996216,18.218326075933874,17.32953984197229,16.895428945310414,15.983724568970501,16.106071839109063,16.463827746454626,16.948135290294886,17.90669119497761,18.379659961443394,18.312146867625415,17.57378397230059,18.028747449163347,18.650661214720458,18.519387751352042,17.749690626747906,17.164317791350186,17.725295220967382,17.17902410728857,16.328976868186146,15.568068654742092,14.60499934386462,14.762587661389261,15.488277384079993,15.105502424295992,15.987105601932853,16.673543921206146,16.541086496319622,16.84185075201094,16.406733945943415,15.98489859700203,15.127100888174027,14.890080078039318,15.494395244400948,16.19198462041095,16.08385383663699,15.55754806054756,14.829004340339452,13.891699449159205,14.814252826850861,14.515231028199196,14.304196496959776,14.541564383544028,13.763957910239697,14.272228316869587,14.821603571530432,14.243866136297584,14.857964529655874,15.364873436745256,14.863788787275553,15.097133747301996,15.826189102604985,15.408326739445329,15.167778422590345,15.181511589325964,14.505543916951865,15.231669820845127,15.824650769587606,15.0801887717098,15.882257583551109,15.58643787400797,14.888200087007135,15.510797382798046,15.870376692619175,16.52461566636339,16.611437770538032,16.634871778078377,16.722423027735204,16.30920801172033,16.80397596396506,17.448669868521392,17.582616289146245,18.20697925146669,17.476941461209208,17.87154704146087,17.17754669394344,18.08257440989837,18.731348724570125,18.796997144818306,19.358694694936275,20.22888161474839,21.118660731241107,21.174601132515818,20.5081472476013,21.331635193433613,21.03712304541841,21.363012877758592,21.87772447289899,22.80050737550482,22.908152118325233,23.63435536902398,23.670853923540562,23.9321195082739,24.892752781510353,24.286871641874313,23.61046193772927,23.48777846712619,22.873245866037905,22.546159061603248,22.909296210389584,23.55144965276122,23.077312515117228,22.58831082843244,23.149431461002678,23.407002055551857,24.39463211968541,24.706113894470036,25.438895250670612,26.350185718387365,25.76553612248972,25.31671086885035,24.997443514876068,24.679562364704907,24.267828753683716,23.397574439644814,22.680441956035793,22.93525346601382,23.10914617497474,22.776435478124768,21.864209055900574,21.22367498697713,20.453304065857083,20.66008895356208,21.599587234668434,20.847655701451004,20.06829041801393,20.783207784872502,20.44743682211265,20.03745167888701,20.9187396671623,20.20911441463977,19.261189316865057,19.25747289136052,18.362544550560415,17.96588518144563,17.678387607913464,18.067130532115698,18.93209892231971,19.08606843277812,18.635016590356827,17.948663535062224,17.023233726155013,17.803160728886724,17.095239892601967,17.769782224670053,18.263698694761842,18.03030369244516,17.722772721666843,17.100764958187938,16.114217366091907,16.433762094471604,16.420991144143045,15.433176759630442,15.71835759980604,16.219021084718406,16.640934490133077,15.723575117997825,16.654748327098787,16.352879549842328,16.760462902020663,16.423292349092662,16.761768725700676,16.83151943748817,17.787240241654217,17.35988413123414,18.176921415142715,17.663982631172985,17.23078735265881,17.352442475501448,18.21297250315547,17.85353337880224,16.966924034059048,17.43253140663728,18.13120320905,17.367943045683205,16.75295438244939,17.11334182182327,17.849911365192384,18.284302997868508,19.171382402069867,19.908788843546063,19.919642553664744,20.1974627119489,20.388662896119058,19.943805383984,19.27123577008024,18.324567834846675,18.946313539519906,18.64669286319986,18.152343835216016,17.252225754316896,17.95508236484602,18.296958900988102,17.668315598275512,17.978231392800808,18.04803636111319,17.740707038436085,17.625762260053307,17.659821634180844,16.801499232649803,15.886730839964002,16.278292592149228,16.194450320210308,15.57837678072974,16.38859618641436,17.008289381861687,16.222254779189825,16.67528256168589,16.536450680810958,15.985831772442907,16.81792970839888,15.900282426737249,16.452493529301137,16.443729751277715,17.14598694536835,16.803370555862784,16.563689758069813,17.561921204905957,16.88560163648799,16.146574734244496,15.965309412684292,15.578812685329467,15.343736027833074,14.888602853752673,15.414440433029085,15.07084775203839,14.366638349369168,13.632986447773874,13.497377987485379,14.075298356357962,13.58200469892472,12.918621190357953,13.163370784372091,13.453514610882849,13.364107713568956,14.142220712732524,14.537282588426024,14.487455041147768,14.193031997885555,13.303415323141962,12.924774409737438,12.748907061293721,13.377905379515141,13.884759165346622,14.332850470207632,14.238782051485032,14.8140450976789,14.83331608446315,13.847580363508314,14.55923920031637,14.247132994700223,13.890076155774295,13.906863340176642,13.018151394557208,12.76655059447512,13.739429128356278,14.522841884754598,13.594238705933094,13.540804273448884,12.806392993312329,13.751443062443286,13.393345880322158,13.600823010317981,12.603469341993332,11.734551234170794,11.592626011930406,11.497067960910499,12.162210724316537,13.035097845830023,13.978691783733666,13.753380473703146,13.55065740738064,13.286765825003386,12.850849480833858,12.39487810479477,12.422169875353575,12.145260548219085,11.809255311265588,11.188523830845952,11.847951352596283,12.561199315823615,11.954287937376648,12.265576462261379,11.268989904783666,12.162146328948438,12.900186333805323,12.10134051181376,12.807514932006598,13.44957979535684,14.313567853998393,14.45553434593603,14.960325569845736,14.773233577143401,13.987181153614074,14.452662240248173,14.717322981450707,14.4779266375117,15.023676975164562,14.33926567947492,13.469016892835498,13.340920450165868,13.894742558710277,13.185581047087908,14.164419412147254,14.676636427175254,13.955004177521914,14.136370357125998,14.856597614940256,15.853868373669684,14.862844587303698,14.379478024784476,14.642241978552192,14.35870928876102,13.776745746377856,13.059126859065145,12.37713970290497,12.94188011623919,12.832063224166632,13.23571753129363,13.794413161464036,14.33868853840977,15.242006417829543,15.241889433469623,14.526852485258132,15.217723193578422,14.994093119166791,14.195149585604668,15.169735085684806,15.546018567401916,14.72193398186937,14.16149795241654,14.543620014097542,14.802636310923845,14.837074760347605,15.312150046695024,15.914994904305786,15.259914473630488,14.816407614853233,14.137106995098293,13.460189925506711,14.447353835683316,14.691864061169326,15.259332524612546,15.812253260985017,15.602429837919772,15.63631153665483,16.250088619999588,16.868661076761782,16.22651906684041,16.586438936181366,17.207815534435213,17.144855220336467,16.705120294820517,17.265837410464883,18.01987178483978,17.519003993831575,17.07013535639271,16.405877459794283,16.541222162544727,16.918524587061256,16.618516392540187,16.527302325237542,17.45653125597164,17.414915597066283,17.469142768532038,18.307930143084377,18.63136380398646,18.715696012135595,18.467031915206462,17.63588170753792,18.018897550180554,17.45493558840826,17.87064341828227,18.72741209110245,19.588809728622437,19.61404879298061,19.17612774996087,19.576511599123478,19.195110228843987,18.55712528154254,19.332318401895463,18.727140911389142,19.333906243555248,19.80204112874344,19.064421485643834,18.831180272158235,18.813556137960404,18.403632377274334,19.329895678907633,19.70999240456149,19.28300487436354,19.65669189626351,19.17091300105676,19.215193409472704,18.703784168232232,17.990488330833614,18.31716326577589,18.751311875879765,19.427460252307355,20.12357398867607,20.04411269398406,20.0798340276815,20.68500095186755,21.52507850341499,20.940819627139717,20.97316815936938,20.378315537702292,19.47389675769955,19.67926949635148,19.12416975805536,19.08936764113605,18.78020009258762,19.264604564756155,20.256995735224336,20.995757476892322,20.16925705363974,19.22537978179753,19.896145877428353,20.27262518974021,20.26732342597097,20.911125416867435,20.31973474100232,19.395888759288937,18.65874303970486,19.045194054953754,18.098105689045042,17.149377623107284,17.701975054573268,16.942370869219303,17.585759825073183,17.82637769728899,18.75290581258014,19.187265374232084,18.762689887546003,19.156531049869955,19.762573895044625,19.660470079630613,19.886202809866518,20.84934016270563,20.46486560534686,20.18582489574328,20.634081108961254,21.1528228581883,20.85062891524285,21.623619616497308,22.215422401670367,21.9512165854685,22.948885712772608,23.103930924553424,22.895695629063994,23.330651418771595,23.860494086053222,24.468306532595307,24.236578349024057,24.59020973974839,24.428626329638064,23.639958441257477,23.08115963311866,22.51329772407189,21.841707186307758,22.591675953008235,23.351210091728717,22.582445660606027,21.874981532339007,21.758638309314847,22.33866458525881,22.71904692100361,23.707437022589147,23.615254998672754,23.04668804910034,23.134748816024512,22.439463882241398,21.859476815443486,22.758793111424893,21.944739879108965,21.789274686481804,22.32557177450508,23.28993224259466,22.522237624041736,23.08965268684551,23.170678557362407,24.076882551889867,24.593133644666523,24.181523731909692,25.148294968530536,25.148972355294973,24.64615777740255,24.200321559328586,23.96450493671,24.716285445261747,25.32760259276256,24.449454837478697,23.691039646510035,23.32823909446597,23.564610376022756,24.555413357447833,24.645047350320965,24.60727223334834,25.042016247753054,24.227892105001956,24.074417711701244,23.324516335502267,22.776316283736378,23.23268650798127,22.42145263310522,23.202865172643214,23.877307177055627,24.72976058255881,24.000468102749437,23.300549353007227,23.17523396993056,23.981319497339427,24.125770594459027,24.077347474638373,23.54213811084628,24.192785570863634,23.915895013604313,23.846217597369105,23.330379767809063,24.230817733798176,23.481128292158246,23.10567783517763,22.460113395005465,22.456736968364567,22.23163792816922,22.491380954626948,22.16062852879986,22.135735189542174,21.81388199608773,21.471227129455656,20.753185240086168,21.393104386981577,22.366998630110174,22.031854279339314,21.135651264805347,21.332625322043896,21.216458314098418,20.358769617509097,21.12669146526605,21.98989375308156,21.622178201097995,21.81509717972949,21.085913469083607,22.055297130253166,22.673016090877354,23.232158966828138,23.681303908582777,23.771886410657316,23.060862903948873,23.445429982617497,24.093525447882712,24.583290377631783,24.02902671182528,24.469601628836244,25.20833181310445,24.459305071271956,23.969729616772383,23.99398821592331,23.783588415011764,23.094797728583217,23.28887200029567,23.28459901222959,22.401812164112926,23.044471113476902,23.3453313075006,22.517915576230735,22.25829488877207,21.32610671641305,22.023949946276844,22.79882247094065,23.01794856134802,23.885075759142637,24.511516525875777,24.94713090453297,23.975924572441727,24.731925006955862,24.1341147669591,24.17677710019052,24.932028259616345,24.390393503475934,23.628109328448772,23.33804902434349,23.930055901873857,23.5427876310423,23.116907604970038,23.355793841648847,22.633051356766373,23.565366647206247,23.983610363677144,24.36425438709557,24.668275109957904,25.3437496018596,26.250358985736966,26.678893856704235,26.190523291472346,25.605617098044604,26.06557861249894,26.62128157261759,26.97417359240353,26.116446598432958,25.149989482481033,25.517038125079125,25.567873279564083,26.122747580055147,25.8804032150656,25.531001871917397,24.53217489598319,25.36801027180627,24.903491370845586,25.081022806931287,25.645271269604564,26.60288071492687,26.717344855424017,27.18793617747724,26.514800613746047,27.46758202603087,28.224980966188014,27.848126707598567,27.380326938815415,26.752114776987582,27.397039705887437,27.861991180106997,27.17608271818608,27.139111263211817,27.22974974801764,26.361759586725384,27.008781231939793,26.720498432870954,26.221759307663888,26.49625571630895,27.445884353481233,27.709775663446635,27.248978579882532,27.656519355718046,27.42007955117151,26.959188426844776,26.33413050090894,27.021824674215168,26.856052516028285,26.9263602970168,26.79674563370645,26.530126670375466,25.768922369461507,25.703315392602235,26.224732865579426,26.291396241169423,25.45224294066429,25.608543150592595,25.645703142508864,26.53082868643105,25.90787975070998,25.264660321641713,25.352859241422266,25.98613300686702,26.395417638588697,25.78138848161325,26.68792304955423,27.61700949911028,27.297562815248966,27.486689042299986,28.19411929603666,27.864650330506265,28.565951912663877,27.670507189817727,28.168897186405957,28.671366763766855,28.25656357035041,28.364187394734472,29.257397396489978,28.716636945027858,27.90474308654666,27.811675909906626,28.731999423354864,28.878178884275258,29.210613888222724,29.24047846812755,28.535221722442657,29.462625165935606,30.159734826534986,29.604799354448915,29.150574299506843,29.659038740675896,29.148972776252776,28.36128262616694,28.698959835805,28.836449255235493,29.168942973017693,29.673495333176106,28.849779258016497,28.700977061409503,28.95057924464345,28.51915712095797,29.459609831683338,30.180669527500868,30.85320262098685,31.54033601656556,31.819228051695973,32.5958925653249,32.36317247431725,32.40074523212388,32.24681676225737,32.59118605218828,32.19447726290673,31.83483476145193,32.17904380150139,32.836203234735876,33.81309433095157,34.483713378198445,35.025023392401636,34.68309048656374,35.01241891644895,34.36646350705996,34.78272083168849,34.36454860214144,34.998041570652276,34.4301385525614,33.55691907322034,33.13192445319146,33.87838264927268,32.996563349850476,33.33432125998661,33.9503230038099,34.57012811396271,35.41992129338905,35.6977171539329,35.16859584581107,34.780915164388716,34.774015648290515,34.0931712212041,33.756114687770605,33.77519491035491,34.254765244200826,33.81990515533835,34.6291717174463,35.02396083949134,34.52800167538226,33.80625874502584,33.66830305941403,33.00191108835861,32.717348493635654,32.31631629914045,32.983454894740134,33.320712473243475,33.788826163858175,33.18097460595891,33.32820112025365,34.256001617293805,34.754180800169706,35.4708613906987,35.75342955486849,36.17334919143468,36.56015103915706,36.84441798273474,37.043759072199464,36.2057477706112,36.7305460171774,36.62678704876453,37.259690296370536,37.35047215037048,37.91848712274805,37.449754126835614,37.16677726479247,36.77805101079866,36.224461836740375,36.505180014297366,37.305207000114024,37.50213285814971,37.07474224595353,36.302887381985784,36.256468852516264,36.76644027559087,37.06732914643362,36.67263077106327,36.125944565050304,36.66340595763177,36.045251332223415,35.46031943708658,35.28914703987539,35.131727079395205,35.080962698441,34.08623531693593,35.0122992740944,34.23257646756247,34.726855805609375,34.63148718792945,35.13737089233473,36.06067277491093,36.458234223071486,35.83112961379811,36.27430346701294,35.65067619737238,36.54163448931649,35.861410435754806,35.17582674184814,35.17317169252783,35.14361170353368,34.54707609536126,34.505486904643476,34.691498063039035,34.6977572562173,34.18653917405754,34.53309109527618,33.59654553513974,34.50307457568124,34.31345555698499,34.777522798161954,35.42600750736892,34.4784927405417,35.38031702302396,36.16524343751371,35.64967181812972,35.41494613606483,35.99975703423843,36.88666935544461,36.24622462829575,36.020505299791694,36.99111645342782,36.48881946969777,37.4074741313234,37.611367537640035,38.14068552898243,39.094222410116345,40.00408497033641,40.918972115498036,41.72606635373086,42.359317699912935,41.37863274663687,41.455954055301845,41.461166507564485,40.598535818979144,40.43322916002944,40.85176246892661,40.74552232399583,41.69424238288775,41.17041725106537,41.894813974387944,41.90540809230879,41.14586956659332,41.141231703106314,40.80017117084935,40.017987568862736,39.48789764754474,40.24834456946701,39.44811624614522,39.84858539281413,39.54052545176819,39.24751927610487,40.05264099361375,39.97137069655582,39.33900634152815,38.88641640590504,38.241702526807785,39.019287777133286,38.83125265268609,39.56931132916361,40.09340313775465,39.51759677333757,38.92016713973135,38.234085373114794,37.28296359302476,38.090556176844984,38.864371901378036,38.82307857694104,38.42823582235724,37.65777533547953,38.580623409710824,38.21113973483443,38.65902031492442,38.556437503080815,39.18584672594443,38.361779258586466,39.360874738544226,38.880377180408686,37.93408283777535,37.9163318304345,38.42831458663568,39.3664286993444,40.03111159289256,40.13854210218415,39.261449456680566,38.63511855341494,38.32919878838584,37.7369574084878,37.282331543043256,38.06380924768746,37.65397128928453,38.004760769661516,37.74957685358822,38.19818975916132,39.05887781176716,38.442959517240524,38.59656078834087,38.32997172418982,38.179952138569206,37.90539390500635,38.54800874227658,39.36314572812989,40.05932019930333,40.41230605961755,41.33368822559714,41.27755958214402,40.70193128893152,39.733226605691016,39.34623529901728,39.30845392867923,39.3553221616894,39.29370504617691,39.50184946786612,40.07037547463551,40.49242104450241,39.62517700064927,38.64942971710116,38.01248783059418,37.544380930718035,38.4021783429198,38.11764653911814,37.39262751489878,36.8820135416463,37.21224365197122,37.34177788766101,37.63988000666723,37.47527451720089,36.52604384254664,36.21497484110296,36.46017407346517,36.174817516468465,35.65363231534138,35.26186180161312,35.68330813571811,36.67804099153727,36.46138870297,37.272417108528316,37.97656142245978,38.05712365778163,37.68795487517491,37.95261253416538,38.12777201971039,37.94438770134002,38.05797873670235,38.68041222030297,38.350117571186274,38.681114587932825,39.550845499150455,38.79873238224536,39.11897580092773,38.78360259020701,38.18127414304763,37.86068243579939,38.67019960144535,38.423769034445286,37.498624784871936,36.62893991637975,35.998090515844524,36.94509389810264,36.605317681096494,37.28520337771624,38.21937901014462,37.702220905106515,37.02482975041494,38.002033706288785,37.85793776763603,37.41874640015885,38.20412725629285,37.217316907830536,37.16452498175204,37.61669556144625,38.51856686035171,39.062643968034536,38.39066654536873,38.718182830139995,38.58013629773632,38.57077176962048,39.52773118857294,39.59134907787666,39.22322751348838,38.48850392829627,39.341748364735395,39.95548108406365,40.76134051196277,40.933666768018156,41.373941199388355,41.17644178960472,41.680656493175775,41.310350619256496,41.606771782040596,41.9660380310379,41.17120503960177,41.82368107652292,42.29204231034964,42.79651406686753,43.374621607363224,44.04182833386585,43.762229326181114,44.536425300873816,45.03694278141484,45.674152094405144,45.1336467564106,45.07008011452854,45.07722444459796,45.39536346774548,44.7592924288474,44.12505078967661,44.0259992335923,44.15647178515792,43.971135940402746,43.37290951516479,43.21155720157549,42.70211864635348,42.694792699534446,42.15743952617049,41.30194090399891,41.30311050545424,40.64358406700194,40.23371019307524,40.24526028288528,40.196071543730795,40.64434426790103,40.94037477718666,41.229792217724025,41.732528316322714,41.41121052019298,40.560040769632906,41.1227972083725,41.7748618517071,40.96011007390916,40.71446192637086,40.11645556939766,40.51994032971561,41.35719286603853,41.0513831381686,41.411894551478326,40.419350281357765,39.65224409196526,39.15938765974715,38.578643288929015,38.68738649832085,38.346150723751634,38.90700437920168,38.86293317563832,38.78735338663682,38.09213637793437,38.08960293000564,38.627252234146,39.49457375286147,39.813606870826334,40.73856382165104,40.487383445259184,40.539993304759264,39.57995987217873,40.1615433995612,39.46235967706889,40.01029969006777,40.28345122560859,40.90604703268036,40.245349902659655,40.292689602822065,40.97038426809013,39.977805806323886,40.818928899709135,40.77779279509559,40.911387086845934,41.36412840615958,42.16832706891,42.45313211623579,42.12576310103759,42.4643172910437,42.927826303523034,43.26939959032461,42.37125837756321,43.195666471961886,44.066758999135345,44.996777867432684,45.43829007958993,46.0470735761337,46.7536879288964,46.420784825924784,46.36809641774744,46.8788299174048,46.20705352118239,46.73651453061029,46.77321829274297,47.078302789479494,47.67470341641456,47.23428285168484,47.561194714624435,47.2181101590395,46.263485197443515,45.52937795128673,45.616850355640054,46.14725476922467,45.67048825323582,46.36905769165605,45.770041081588715,45.54366395715624,46.32080477243289,46.83526437962428,46.70259382855147,47.347589801531285,46.74041537987068,45.908966498449445,46.64924872480333,47.171940623316914,47.05323355039582,46.3290074900724,45.51219408866018,45.335892715491354,45.7780965231359,46.05100333178416,45.13227839488536,45.95344273978844,46.76219098968431,46.71065542520955,47.386927612125874,47.19880824163556,47.704062031582,48.36079466063529,47.97758747078478,48.39758487883955,49.366417401470244,49.996513003949076,50.31536095030606,50.453168485313654,51.43354063807055,52.418637248221785,53.29744170419872,53.055959043093026,52.1471246285364,53.07088513998315,52.12016734946519,52.99987440230325,53.91546156257391,54.74092873558402,54.20023063896224,53.3195607336238,54.200623620301485,53.29750661039725,53.872696531005204,53.88474548002705,53.959950623102486,53.747617341112345,53.30530095193535,53.45010080374777,54.01065203687176,53.68245297251269,52.7648041555658,52.439530490897596,52.772174367215484,52.174219864886254,51.66677302494645,51.35993677331135,51.67503783944994,51.25328711094335,51.328157373704016,50.89724109927192,50.25252991588786,50.268786147702485,50.806032271590084,50.186852717306465,51.10465865628794,51.44485099893063,50.82985943555832,51.58099591033533,50.88061231421307,50.028375688008964,49.86968808667734,49.76486131455749,50.30470077833161,49.83235142240301,49.128114552702755,50.09738750336692,50.98515076888725,50.427945697680116,50.20668511185795,50.48600305011496,50.37252759421244,49.60326636116952,49.64183730119839,48.73904984211549,49.022651012055576,49.68220324534923,49.355492738075554,49.20420380728319,48.51633542170748,48.1203419258818,48.265638491138816,49.11115719145164,48.63359247520566,48.813195071648806,48.98752163769677,49.08505937969312,48.956275262869895,49.42012003157288,49.1212356062606,49.72776002809405,49.70460572838783,49.08186899125576,48.21344776079059,49.068412442691624,49.73498798441142,50.60546781728044,51.60492382803932,50.756238349713385,50.80887109506875,50.22728996910155,50.48219138290733,50.52673405269161,51.4627539482899,50.70851539308205,51.54717486444861,52.21681582927704,52.65100544458255,53.613120064139366,53.409648230299354,53.23234012257308,54.12728488864377,54.95028745289892,55.16935821156949,55.81564223393798,55.67023295676336,55.824018029961735,55.089563474059105,55.383407208602875,54.39401431661099,53.740520026534796,54.34485218394548,55.03437000513077,55.776403738651425,56.55774768255651,56.87759922025725,57.22648862423375,57.518199431709945,58.033409929368645,57.792360866907984,57.210804083850235,56.499158148653805,56.86274240259081,55.954751167912036,56.00191244762391,56.323352014645934,56.61338054109365,56.71808689739555,56.96957891294733,57.24454045901075,57.97366139944643,57.7098328336142,58.01039512222633,58.95353424735367,59.747155329212546,59.635364634450525,60.21855386532843,59.30203460203484,60.03484305180609,60.91554115526378,61.86490499228239,62.84279575943947,63.681521946098655,64.33688015444204,63.5807127263397,63.889754206407815,63.07900171726942,62.340817308519036,61.41445181518793,60.53397814044729,60.26660250173882,60.91868092864752,61.03317137947306,61.049848617985845,61.926089570857584,62.45959932077676,61.53700203029439,60.809255154803395,61.490859370213,60.62182895699516,61.24496909836307,61.87530332477763,61.88770201615989,62.43195624696091,62.788612379226834,61.90698938211426,61.88640746055171,61.67026058398187,61.930464658886194,62.04329371731728,61.47234716452658,60.63500197138637,59.7289404948242,60.402309445198625,60.12232312746346,59.15138837695122,58.43570839148015,57.54927185643464,57.25420490000397,56.433385777287185,56.831990618258715,57.711878556292504,57.32716218754649,57.50562711618841,56.97319429041818,57.38611642131582,56.644268438685685,56.720710111781955,56.470486365258694,57.17216414259747,56.7634570770897,56.86423185421154,57.44560039276257,57.63813038635999,58.48874827241525,59.27068860176951,59.28706102957949,58.6416010200046,59.439932357985526,59.12378192692995,59.42148279864341,59.81427625613287,59.75794630777091,59.78464488405734,58.90884596621618,58.65953253721818,59.219554090406746,58.25483282096684,58.21616167575121,58.4578004530631,57.545103043317795,58.16784048033878,57.604690914042294,58.292717047501355,58.26752632111311,58.82222388032824,58.9626678773202,59.06720253871754,58.58418414276093,58.36543530225754,59.311533285770565,58.955887510441244,59.37134116142988,59.154267688281834,58.99784894613549,58.87347968062386,59.43256763136014,58.56918016914278,58.122977829538286,57.20330472989008,56.56172429351136,57.37190132960677,57.662352019455284,57.89550278708339,58.020575863774866,57.5064493031241,57.280205799266696,57.40927789499983,57.60249143373221,57.31038041692227,56.689415206667036,56.55948063498363,55.94504854315892,56.48433884046972,56.51567174587399,57.02233031252399,57.2205785214901,57.23584412038326,57.251928116194904,57.04816851951182,56.372068545315415,55.847131985705346,56.025139356032014,55.59338042978197,55.49342697067186,55.68421487649903,56.3070377940312,56.32625344535336,55.76798725826666,55.29106986289844,54.409163650125265,53.95295566320419,54.16031388286501,53.397356901783496,53.38678181916475,54.16801287513226,54.398190314881504,53.408858145587146,54.322856795508415,54.29546621348709,53.57540352502838,54.23493894003332,55.09842975111678,55.2415173528716,54.75207515293732,55.346325657796115,55.420443191658705,55.20350635657087,54.606107864994556,55.502055037301034,56.188102395739406,56.64396447641775,56.316288472153246,56.994347436353564,57.953714210540056,56.98308484070003,56.1749013918452,55.74077351624146,55.725828774273396,55.06368331098929,54.89932510536164,55.566391156986356,55.84947673603892,55.005699393805116,55.04099048441276,54.63940009800717,54.47880524024367,53.97806688351557,54.463906107936054,54.91886221989989,55.70216113841161,55.141836476977915,55.73338416777551,55.77013329369947,55.08097405126318,54.801956998649985,54.99097710242495,55.87876384379342,55.14554484188557,54.77398111112416,55.611449846066535,56.50171842519194,56.66385295847431,55.9716188814491,55.12848726147786,55.474292010534555,54.647950313054025,55.02077458705753,54.74365973379463,55.07100523682311,54.65000024344772,54.79734664876014,55.07655316358432,54.41541218617931,55.249701861292124,54.91450649825856,55.25342130102217,54.79058942804113,53.823288179934025,53.35027533955872,53.30897725839168,53.04820461710915,52.86654928745702,53.355960357002914,52.739264140836895,53.38734093820676,54.01121902978048,54.929643203504384,55.2628828859888,54.76048769289628,55.66297893365845,56.00609908485785,56.20894517330453,56.23034823033959,56.098049487918615,56.1542545016855,56.75204854970798,56.29177296254784,56.274660035036504,56.43057921528816,56.623687313403934,56.05260146828368,55.83973668701947,56.521581870969385,56.49376349756494,56.31302930880338,57.16051811724901,57.76331291394308,58.1331902439706,58.01821459038183,57.36191933974624,57.12738873017952,58.00832782126963,57.83490557828918,58.46763171907514,58.482129979413,57.85087777161971,57.240385942626745,56.44814905943349,55.904348315205425,56.89011651929468,57.210108892060816,58.11342590721324,57.834692548029125,57.505063076037914,57.20082705933601,56.70254011498764,57.67044209735468,58.428674473427236,57.64668602403253,57.99019827367738,58.03469997877255,58.0404709847644,57.625096710864455,58.4110794486478,58.379353537689894,59.085854371543974,59.2276653428562,58.269936186261475,57.406418609432876,58.13655150402337,57.877136782277375,58.414277721662074,59.15080812200904,58.346247968263924,58.1680774865672,58.47087572328746,58.87492048321292,58.85315416799858,59.035465761553496,58.853959400672466,58.99654296692461,59.99258043291047,59.002844562288374,58.08487774245441,58.41141110472381,59.312253320124,60.20902766380459,60.994451821781695,61.48955774307251,62.24580880952999,62.65564089408144,62.68944001151249,62.369697970338166,61.776468091178685,60.996924763545394,61.04525767453015,61.57528293458745,61.67563953017816,61.269521698821336,60.45516601810232,60.108752036467195,59.40580324316397,60.02951081329957,60.95571718970314,60.94530395278707,60.196915758773685,60.567312519066036,61.512228791601956,62.490343103185296,63.07055447483435,62.17284868797287,62.59653348708525,62.91047160932794,63.044959069695324,63.24874652083963,64.02550602192059,64.06218138802797,63.98498896881938,64.40719472710043,63.95831417432055,64.07114482624456,63.77650970174,63.319870320148766,64.05370766716078,63.84828974213451,64.29464074643329,63.74294811813161,62.86341765150428,62.46690044738352,62.67853228794411,62.85215541580692,62.79044217057526,63.67687854776159,63.366031693760306,64.13830378092825,65.04199862247333,64.13902742601931,65.1063494682312,65.97763688629493,66.17074955021963,65.75303919473663,64.90613765502349,65.16751656588167,65.6945401886478,65.44609280815348,64.52733267610893,65.41978517733514,66.26571258436888,65.52003935026005,65.90641688695177,65.42660300200805,64.5700861858204,64.04971075896174,64.95716416137293,64.07446395140141,63.83682519942522,64.31380888167769,64.29328816151246,64.64570173202083,65.62888717651367,65.18605887936428,64.53715974232182,63.85559950908646,64.59368324978277,63.80532129481435,64.06598091637716,64.00207453407347,63.1159384236671,62.94513855315745,62.754139362834394,62.54293291363865,61.96229787589982,61.40025096992031,60.69282890018076,60.546729885041714,60.35713174100965,61.08666141144931,61.51665581855923,61.07547401590273,61.229904007166624,61.20616150461137,61.81387089425698,62.470225834753364,63.402708341833204,63.52113748714328,63.08025512518361,63.567471952177584,63.46042741602287,64.31506079854444,64.48094437131658,64.91343377996236,64.05349449114874,63.620461685582995,64.41096107894555,63.64621182437986,63.91677242424339,64.12295490177348,64.21896797604859,63.860144902952015,64.17489169957116,64.1160050118342,63.785883117932826,64.61038093920797,64.11427756724879,63.36139557790011,62.379539378453046,61.60876190196723,60.95490088080987,61.649993531405926,61.837918899953365,61.48513203160837,61.95404380187392,61.43642549403012,62.053624955471605,62.64796541072428,62.18940045731142,63.1202323930338,63.16032035043463,63.28199157770723,63.594685966614634,64.27508391812444,63.98970442451537,64.06367637729272,63.64070834778249,63.59625987755135,63.761607768479735,63.579988840501755,64.01850074063987,64.22455043299124,65.05586245562881,65.97906151413918,66.50947490520775,66.44123676093295,67.39242064161226,67.2550518559292,66.87031401600689,65.96973393158987,65.8704509860836,65.3858886747621,64.97623746749014,65.91224810434505,66.18554423423484,66.80940012820065,66.97305383579805,67.56597582483664,68.36354158539325,69.35742770135403,68.68760969443247,67.84533637668937,67.09970400761813,67.10525362659246,67.45652821473777,67.77433209866285,67.88845562003553,68.4310961146839,67.54076654464006,67.79246586142108,66.86569311004132,67.1352372309193,67.13471541833133,68.09437359310687,67.9167216354981,68.74010100075975,69.34478450426832,70.15745586529374,69.75701096234843,70.48977624438703,70.48541770363227,69.60297931078821,70.11022305628285,69.98626975202933,70.86039982456714,70.65335177117959,71.4340316420421,71.68725559907034,72.05454480368644,72.5497680855915,71.75101110013202,71.17988073360175,70.29409932997078,71.09260862413794,71.5770257152617,71.03933682013303,71.2599251982756,71.54617632366717,70.6141800833866,70.54172085039318,70.68702755123377,70.60649463580921,71.40721561247483,71.41782987723127,71.06598920514807,70.99529585102573,70.1930379094556,70.23948272829875,70.32719582598656,69.8846413125284,69.55800735903904,69.52273394120857,69.91501580970362,70.54451138433069,70.40523349493742,69.92068221792579,70.05169529980049,71.00626476993784,70.63396797748283,69.86118546547368,69.0846016597934,68.38001604983583,68.27083231601864,67.74018936371431,67.92237620102242,67.74411303689703,66.95342487795278,66.02837219554931,66.09994275635108,66.302368784789,65.44009574968368,65.9415992400609,66.11763284355402,66.96173400944099,67.73619418637827,66.98043030221015,66.94207376753911,66.21202028729022,67.09716508025303,67.29090700671077,68.08229420473799,68.77136573707685,69.6017886349,69.3332972144708,69.86058351164684,69.21634684875607,68.97838106704876,68.81021133530885,68.20036300923675,68.72080947132781,68.57189359981567,69.44198735011742,69.94691631011665,70.4655050248839,70.64105805568397,71.18411718355492,70.92099311435595,71.82044882513583,71.40565933194011,71.31082195835188,70.62123694084585,71.48208841215819,71.400823764503,70.62154248310253,71.4763086498715,70.48933346942067,69.60458743199706,69.1926342905499,68.87138794409111,68.18550959555432,67.98164690192789,68.2865455118008,68.14497377490625,68.35178543301299,69.25324604380876,69.37939257593825,68.66893422650173,69.64227338507771,68.73305499833077,68.38689378043637,68.12143031787127,68.18607733491808,67.47751336824149,68.16776714054868,68.67922455491498,69.37031708657742,70.35607945593074,71.1422966378741,70.18857186799869,70.076191005297,69.87307828338817,70.23949013464153,70.93748643016443,71.60654967557639,72.34317809948698,71.3458279715851,72.22614361112937,71.49638589518145,70.58240054175258,70.31337800994515,71.15950318286195,70.95847169589251,70.96661755815148,71.68472836865112,71.81875760434195,71.3827931988053,71.01824316987768,70.38652258785442,70.0379743068479,69.08750890241936,68.74893305776641,67.79101535957307,67.78820958873257,67.72577748866752,66.79992983257398,66.26906003290787,66.55498608853668,67.27471288572997,67.72022306313738,68.30355457635596,68.20977493049577,69.10820051468909,68.81958650471643,68.05285482760519,67.92926171701401,68.73244538530707,68.23953403672203,68.50815734174103,67.68785696337,66.96828832430765,66.82142178108916,65.94380456162617,66.55153733538464,65.64095481904224,64.68709653243423,65.01554427901283,65.64997923607007,65.26289798598737,65.4287275201641,66.25449986755848,65.85963204549626,65.69135403912514,65.93910642899573,66.29165464499965,67.03258562926203,67.41360230371356,66.4886761805974,66.63082425482571,66.15572258550674,66.1778489658609,66.18648714292794,66.21838391851634,65.53255893522874,65.27857745019719,65.73151215910912,66.72915364755318,65.80995556293055,66.28780158888549,66.27776913531125,65.83045986061916,66.1114022671245,66.49398995237425,67.46125069819391,66.72157123591751,66.92106909165159,66.49495541583747,67.06218827748671,67.75534402858466,67.48911680048332,68.17635104851797,67.33649491192773,66.34848029259592,65.97631755517796,65.06294105947018,65.36453119106591,65.21065065125003,65.58095069183037,64.75899952743202,64.5113170761615,63.696081242058426,63.84085728274658,64.7971827602014,65.2733512581326,66.25965467933565,65.68356124358252,65.4709241585806,65.03800400206819,64.36000760924071,64.03568461770192,63.099768538959324,62.61666143964976,62.870691305957735,63.22801864519715,63.15209570899606,62.47856087330729,62.30404106993228,61.41484715929255,61.72917102929205,61.79578182613477,61.08722613239661,62.06162782013416,62.66908893594518,62.826819812413305,62.779182189144194,62.59172232169658,63.150353346951306,62.68569176318124,61.92766211461276,62.01418390357867,61.131450566928834,61.504030336625874,61.69899036735296,60.90763486921787,61.78770044259727,62.010631882119924,62.7546016657725,62.75790474470705,63.06276200618595,62.23885678872466,61.404773734975606,60.632036505732685,61.08558544376865,61.7441404722631,62.210803241003305,62.2252843612805,61.27957887481898,61.68743638601154,62.12731723766774,61.42104330472648,62.276241353247315,62.429412809200585,62.32272761128843,62.11414801608771,61.95539094740525,62.33703578170389,62.321467970497906,62.098710890859365,61.419335863087326,60.56092922622338,61.50580981792882,60.80974666029215,61.185088949278,60.27052318584174,60.933447568677366,60.54109353618696,60.51759998500347,59.632592568174005,59.818979907780886,59.97808066569269,60.939529357943684,60.9537527714856,61.49678670940921,61.535456790123135,61.85460098506883,62.52453411044553,62.55290275160223,63.088014469947666,63.89260742114857,63.66854922706261,63.65437419572845,63.54022369161248,63.61729187099263,64.54064693441615,65.20948853995651,65.40010285470635,65.2881474448368,64.69290022039786,64.1288391710259,63.43711941130459,63.682923797052354,63.88238547043875,63.022579189855605,63.515636993572116,63.88592298235744,63.74267621571198,64.20184220327064,63.735488263424486,64.67261728690937,65.45248733367771,64.65273085935041,64.689239224419,65.63593558594584,65.62720443960279,64.90860793972388,64.03976711584255,63.79018826317042,63.84407272329554,62.88677401142195,63.675641619600356,63.12171499757096,62.93976144678891,62.14313471177593,62.95508118858561,63.55981320887804,62.61667535640299,61.74764025537297,60.8293446325697,60.037819852586836,59.76453671883792,59.258910628035665,59.80301521718502,60.17365469690412,60.502510842401534,61.06521713035181,61.87086201598868,61.409913200419396,60.497599677648395,60.33288735849783,59.66444282233715,59.75928559433669,59.914941309485584,59.99893098324537,60.54687979258597,60.7944912025705,61.13576404750347,60.435128475539386,60.4944659601897,61.25345338648185,61.39847347373143,61.98425533948466,62.401761130895466,61.823123968206346,61.454558334778994,62.09388764249161,61.85306406440213,61.52499907417223,61.742963935248554,61.061388887465,61.2818019813858,60.879009005613625,60.13266011700034,59.66394296148792,58.82554434798658,58.44551582587883,58.758554719388485,59.00964979920536,59.35862000659108,59.14193049445748,59.27690660022199,59.25305408332497,59.55755392462015,59.42288541374728,59.451475996058434,60.38129835668951,59.7028065728955,59.282844786997885,59.592092390637845,59.34031484648585,58.363899434916675,58.53035938600078,59.46792337298393,58.87682261830196,59.12085274653509,58.31906704697758,58.69052719511092,59.071294121444225,59.985677818767726,59.92850196920335,59.41730271931738,59.94049733597785,60.536624040454626,59.802068068645895,60.52967250812799,61.067219148389995,62.00615279003978,61.73100446071476,61.53341629682109,61.38654662622139,61.469158324413,60.97676681634039,61.95605485094711,62.891640323679894,63.871964880265296,63.288720794953406,62.640994769055396,63.609157282393426,62.66495674196631,62.30020980164409,62.35154712200165,62.66776158288121,63.23613660456613,64.07109777955338,63.63937028031796,64.59812530968338,64.35887220269069,63.8580111740157,64.68771539395675,64.94636576808989,65.02903020195663,64.44006214151159,63.56534107029438,64.21168046444654,63.588564672041684,63.26553769921884,62.48170744255185,62.35323514882475,62.78480781940743,62.97107235295698,63.730940758716315,62.94161942275241,62.717893300578,63.57949567353353,63.12806093972176,62.33777971519157,62.171069328673184,63.05349026992917,63.10702407034114,62.77769266208634,63.01861344324425,63.39293685881421,63.81033907504752,64.5652263239026,64.40635176375508,64.84966503223404,65.03673650603741,65.57604925101623,65.15315920766443,65.88375969137996,65.09746948583052,65.62321268953383,65.09665187075734,64.99748093169183,65.74990927474573,65.01284393388778,65.16050373250619,65.34171490510926,64.49175263056532,64.85356610361487,65.5008322801441,66.21718900371343,66.12403166806325,65.45130279054865,66.16359504405409,66.38239480275661,66.79393398109823,66.30196327203885,66.75491866935045,66.16470525879413,65.62112129945308,66.22976022353396,67.11868209950626,66.77345202444121,67.1839116550982,66.2750650672242,65.78270438499749,66.66362125379965,67.15558776631951,67.59762562764809,67.9763691816479,67.04583059810102,66.7858745069243,66.23801386076957,67.13956347107887,66.14970993623137,66.66095833666623,67.47811966575682,66.67050842568278,66.87862600944936,66.61210315302014,66.92895925790071,67.24337284779176,67.48747439496219,68.32599431788549,67.41889290930703,68.1526701534167,68.15205631963909,68.6390458564274,69.25660686846823,69.23257739283144,68.56817765999585,69.22281132545322,69.97052516788244,70.70972761837766,71.06256462121382,71.73371439427137,71.90410730615258,71.22613541642204,71.65742384456098,70.96009324863553,71.73560384334996,71.29697694117203,70.98449266981333,70.99406018899754,70.07980879908428,70.14174185879529,70.44878922076896,69.83875787584111,69.15309555223212,69.47777638351545,70.0112114767544,69.8469249191694,69.55020268214867,70.25581944268197,70.00936325686052,69.10049665160477,68.96702471142635,68.4234306816943,67.60966193582863,66.89073317823932,67.56953317532316,67.21086199348792,66.33487053681165,65.97410372877494,66.9265349842608,67.81108375824988,68.60826626047492,67.70655813394114,67.67125921463594,68.46203579381108,68.06042545940727,68.016328999307,68.67871099384502,68.15567700983956,67.23630318464711,66.49752628430724,65.50595078896731,65.66930699814111,65.61653939727694,66.11100593302399,66.02204574877396,65.97139315400273,66.0885018077679,66.49798609642312,66.98280478455126,67.60749550815672,68.34976778784767,68.05360355507582,67.27785491710529,67.80801437795162,66.93924628663808,66.03902648715302,66.36857533734292,65.78655754867941,66.52998230373487,65.7379787452519,65.9019863428548,65.46241483651102,64.74254581192508,65.09004551824182,64.4708695942536,64.26491901045665,64.26187854260206,64.86324064712971,64.0670786947012,64.98484939942136,64.65536150895059,65.25094314245507,65.70030771568418,66.16896722884849,65.39056884776801,65.64820962306112,65.77010517241433,64.99849744467065,65.00218793703243,65.11700856406242,66.11223725462332,65.62090506451204,64.70124987605959,64.23043295368552,64.94263238366693,65.88355073845014,66.46541965287179,65.9185775318183,65.24103577667847,65.54853534465656,65.93449250794947,66.82360204774886,66.92963650776073,66.28131446428597,65.69926567003131,64.92729612300172,64.75756966602057,63.92142362613231,63.55015586083755,63.16637171059847,63.96283281221986,64.39919428387657,64.3146045729518,65.22260752459988,65.26582920504734,65.64723602775484,64.82053469493985,65.43021575687453,64.69436445366591,64.61487946752459,64.47025581588969,65.36002480844036,65.02515315264463,65.90639460552484,65.9489408400841,66.89927141321823,66.19298008084297,66.37628494948149,65.92571401409805,65.80544873233885,66.45961677050218,66.08482962660491,66.46036211866885,65.73211694695055,65.34969586785883,65.1177429468371,64.4515818990767,64.22001697821543,63.56590982573107,63.25996458251029,63.81609989376739,64.37593935616314,63.528205055743456,63.68944287393242,64.61773979803547,65.40517717553303,65.72131152125075,65.16829434689134,64.49234536569566,64.4955443367362,63.90269907517359,63.379647716879845,63.878869072999805,64.28967404831201,64.28482218226418,64.77430659998208,64.17562207812443,64.93289671326056,64.51234246790409,65.38872998952866,66.20394979137927,65.574853267055,64.94634742382914,65.8291474673897,65.36972016468644,65.49004955170676,64.89336869446561,64.06888847146183,63.46184735791758,64.0313672395423,63.57356100343168,62.96789586544037,63.5411879546009,64.4284987882711,64.32817308418453,65.28259945008904,65.74114609556273,66.51307998178527,67.22149890754372,66.9479935131967,67.90591994160786,67.55828293319792,66.86916340701282,66.91138065233827,66.11071689333767,66.7894311924465,67.57347344048321,66.69320802995935,66.32691561011598,67.07253638328984,67.13297596620396,67.62373425951228,68.2386985225603,67.34920775378123,67.1444872203283,67.57197931129485,67.32855058833957,67.83770457608625,67.51626508450136,66.68283984297886,65.91583530372009,65.78662043530494,66.56326233083382,65.83121329033747,66.20342195779085,67.19462229218334,67.34501097071916,67.90253946371377,68.21821965975687,68.39429463166744,67.7439501634799,68.29746548598632,68.2246558344923,69.11273813713342,68.19656430231407,68.72024593548849,68.30174522846937,68.91633152822033,68.95581172173843,68.03401767229661,68.74550297437236,69.39635074790567,68.40254097944126,68.79008357180282,69.58548005018383,70.46168049890548,70.5838722428307,71.21709544537589,71.32762343622744,71.05601549847052,70.14421384036541,70.40916429227218,70.11267381953076,70.60077454894781,69.82973088417202,70.25127865653485,70.43855247879401,70.49746629130095,69.9698774414137,69.02129448531196,68.83891294011846,69.16403766022995,68.34728866210207,67.60663297632709,67.14229038963094,67.66540825227275,68.26745601324365,68.87158756190911,69.210167364683,70.2090610829182,70.56102424580604,70.27421907149255,71.18817313667387,72.14480565162376,71.63769407244399,72.0475842715241,71.99842345388606,71.1068580430001,71.79610580857843,72.67368681821972,71.71351379482076,72.36961175873876,72.23077771952376,72.33578986115754,71.52095363801345,72.28814901225269,71.60600597085431,70.7033043182455,70.59184151235968,70.32723639626056,69.99022747576237,69.37409071112052,68.84928860608488,68.52351041138172,67.5523039624095,68.21528524812311,69.0523457028903,69.98090991610661,70.3632427630946,70.81757877254859,71.11731893522665,70.36872951779515,71.2198030683212,72.13505400251597,72.89539352385327,73.84495536889881,73.06644510664046,72.10249014385045,71.70290058106184,71.59934293897822,71.89194891322404,71.90690020052716,71.50845324154943,71.15133634954691,70.41865281993523,69.60296625457704,69.04628095729277,69.60779340518638,69.03352322336286,68.89624338643625,69.31681492272764,68.81304180575535,69.65783867193386,68.8973790332675,68.29247379628941,67.72476206347346,68.2448331718333,68.49863475980237,67.65064706001431,67.25306030688807,67.56053800368682,67.95512002101168,67.58856826275587,67.89182883081958,68.81475745653734,67.85830356506631,68.55482807895169,68.17368843359873,68.21941562229767,68.72431028960273,68.08532890398055,67.8965778038837,68.81613226421177,69.28910715552047,69.36546708876267,69.5719268671237,70.11990938195959,69.79426072584465,70.48539516376331,70.0365517642349,70.50251047452912,70.82480098120868,71.64779757754877,72.37707222206518,72.00509064737707,71.40112707111984,72.08251637639478,71.80202505877241,72.31157931918278,71.89288005651906,72.46851165778935,73.39742748066783,73.25150906480849,72.68074102094397,73.29693308565766,72.508603295777,72.54280240973458,72.95684502320364,73.63716881070286,73.16689487779513,72.32229684945196,71.50421480182558,70.79397879075259,70.09934209380299,69.28692617546767,70.07335955556482,69.3646358884871,69.63287589140236,69.66428651148453,69.66203527990729,69.06380024459213,69.45941957877949,70.1434558276087,69.90016806731,69.1148381717503,69.77467262698337,69.28556153178215,68.78243099246174,68.55309896636754,69.21037952415645,68.57641924358904,68.41766369948164,69.39496960118413,69.35217529768124,69.5867245271802,70.23172806110233,69.79315836215392,70.21614660182968,69.27949977340177,68.65031324326992,67.80043709091842,67.59904379025102,68.10205572424456,68.15888185659423,67.52216345630586,66.68680050224066,67.4237180906348,67.08355771191418,66.50150336325169,66.55270345835015,67.26261542132124,67.55507089523599,67.45852199057117,67.24237065715715,66.75824927724898,67.22468615695834,67.36804210487753,67.27652145503089,67.85463741980493,67.08930720994249,67.16380513831973,67.62125053210184,67.8248529736884,66.94420602731407,67.43953373935074,67.83676249114797,67.49463896686211,67.38038008380681,67.19618462445214,66.28740788716823,65.47970013227314,64.76607295172289,64.3989645964466,64.16365667572245,63.81877961708233,63.30642498098314,62.48707642080262,62.72903608204797,63.288664849475026,63.18182838149369,62.656376705504954,63.61232771957293,63.219659046735615,62.99968140292913,63.334500623401254,64.32869415404275,65.19700850406662,66.05247008707374,65.18837654031813,64.47082514036447,64.95001321099699,64.92344370158389,65.56090813176706,65.26084597874433,65.74060695851222,66.72518072463572,66.92295801825821,66.39999368600547,65.85003027366474,65.0043803891167,65.81452483544126,66.12721278751269,65.49457368301228,64.55799722252414,64.8345278808847,65.58575455285609,65.89567237487063,66.32125873537734,66.17122416943312,66.37826473452151,66.82875015819445,67.61665419396013,66.76266732485965,67.29695436777547,66.89332354813814,66.98138332460076,66.8657720698975,67.3239227202721,67.65597978048027,66.77357659861445,67.20529807591811,66.43518598377705,66.67868664534763,66.22364701097831,66.09497605310753,65.88509559025988,66.63481651013717,65.67149550141767,64.92662377282977,64.77791153918952,63.96449379948899,63.58917322475463,62.854948511347175,63.43576608877629,63.45354507351294,62.82412258628756,61.838618631474674,62.30986329494044,63.130867291241884,63.11364615987986,63.198788843583316,63.48326588096097,63.390655355528,62.95448658708483,63.775286715943366,63.91013537440449,63.981076133903116,63.21736865025014,64.0120409829542,64.55633112136275,64.5474914140068,65.1200561337173,65.81252824515104,65.1442872453481,65.96748865768313,66.59770917706192,66.22910691890866,65.45612778235227,64.70387321943417,65.33440595446154,64.51604170678183,64.66782518755645,63.844620139338076,64.11997794918716,63.24131161533296,63.99620123952627,63.89250339427963,63.27850090386346,64.04576141899452,63.67240223614499,63.55407670838758,63.92219002265483,63.88311588205397,64.15035378932953,65.12193578714505,64.99962825933471,65.87141884490848,66.06926402030513,66.52875823900104,66.65578590519726,66.46062631066889,66.99548313161358,66.19171851547435,66.49281061301008,65.5046996655874,65.72713778540492,65.94973257416859,66.3927683220245,67.33581709535792,67.38634085049853,67.4998534778133,66.5817664922215,66.17517783073708,65.59906430076808,65.83490822743624,66.23663246026263,65.83263990702108,66.51927270647138,67.47581993276253,67.31522447895259,67.78080957196653,68.7504646233283,68.41523238550872,68.3483763737604,68.18687957990915,68.10887545254081,68.01946713356301,68.79450631188229,68.91241269791499,67.96359511790797,68.815722996369,69.76653393637389,69.33211652981117,69.24372884212062,69.09922307590023,68.98631146689877,68.26412529777735,69.12858303729445,68.57160542486235,69.3184702177532,69.01579355401918,68.93755406886339,69.49213667446747,69.14214508794248,69.84300051257014,70.16043259948492,70.06610117293894,70.95138695789501,70.421813741792,70.8478217665106,70.85994631098583,71.55635053338483,71.13696408644319,70.33921973779798,69.9618706679903,70.73480034666136,70.40014087036252,69.52157394448295,68.75818504719064,69.08610615553334,69.23340200865641,69.55058592325076,70.46418546000496,69.61055883252993,69.86906290845945,69.0552660827525,68.75185371842235,68.81611978821456,69.44802132388577,68.61234052758664,68.50260242214426,68.1439694231376,68.4392401794903,69.11842198204249,69.8686425392516,70.76389374770224,70.44433595286682,70.79579269187525,71.54452402796596,70.60468537034467,70.03786557586864,70.46727629005909,70.08142025349662,71.07197063043714,71.36151517834514,70.90374625986442,71.25025795353577,70.29510718677193,69.82543756673113,68.95016813697293,69.0903923730366,69.45192804001272,69.95382020948455,69.48359079286456,69.09031433984637,68.9561276761815,69.65883850352839,70.30290746223181,69.79973262082785,69.78746194485575,69.6222310825251,69.97271971032023,69.88911962416023,70.13948359293863,71.06539636198431,70.35885800421238,69.51293730828911,68.76504523959011,67.77280668541789,68.5593731701374,68.3319211481139,67.83911396330222,67.73665025085211,66.83124992065132,67.77997036837041,67.54213942680508,66.97336186701432,67.11434030206874,67.65762418927625,67.63176090735942,68.15692166937515,68.32843747315928,69.25593080651015,69.1271028961055,69.12700401525944,69.90419292729348,70.56720409216359,69.97896463191137,69.50112897157669,68.54778013052419,68.33824028726667,67.63276944216341,68.08872310258448,67.75763479154557,66.76852323580533,67.14304627431557,66.58392610307783,66.98597110621631,66.84150476427749,67.29869148740545,67.05099024251103,66.55537204211578,66.14267073059455,65.6050142403692,66.38629002124071,66.2546404725872,66.75838354695588,67.29805145226419,66.82174789439887,67.73572616279125,67.84185905382037,66.95082105370238,66.26893791696057,65.90930854342878,65.22817680472508,64.29883267451078,65.25527444621548,65.69083424611017,65.02981006819755,64.4777496252209,63.62953021749854,62.82943962793797,62.57133167050779,62.09795501129702,61.55928742606193,60.87510932330042,61.317596034146845,61.14867871534079,61.62329192459583,61.59569974569604,62.3535456713289,61.53145082714036,60.661416152492166,59.993639905471355,60.12063773814589,60.57153304154053,61.133189593441784,60.788820842746645,60.984823246020824,61.594445277471095,61.20063947932795,61.85750446189195,61.382273179944605,62.21793873095885,61.908710796386,61.3509938349016,61.02296411944553,60.91253890609369,60.39846101915464,59.85279742674902,60.08016387978569,60.49666141020134,59.73532106820494,59.42778980080038,59.623352160677314,59.632290579844266,58.95097515499219,58.19561385875568,57.26177189545706,57.14646920142695,56.96669740555808,56.80687584448606,57.228851774241775,56.46558805927634,56.093967602588236,55.76385366683826,55.57167738536373,56.35364751238376,55.40979385562241,55.37005713861436,56.22888494748622,56.184905155561864,56.24214528826997,56.44225770002231,56.53364900313318,57.16561875445768,57.330104588065296,57.4333148538135,57.63001771643758,57.8193669738248,57.37322061462328,57.485904791392386,57.29099329188466,56.972106208093464,57.528741544578224,58.50592818669975,57.904381196480244,58.832104090601206,58.99513218505308,58.89140132861212,58.95572387101129,58.73730996577069,57.860606510192156,58.43335245316848,57.48676935536787,57.42144631175324,57.23934828443453,58.0029393392615,58.5440605757758,57.99667567713186,58.09619697416201,58.85568626737222,58.04819247778505,57.62036360660568,57.93625849345699,56.996002978179604,56.35350570688024,56.60831576725468,57.47016003634781,56.99612534791231,57.67207026621327,57.565065753180534,58.15659589506686,57.518285364378244,57.18713791714981,56.5228684716858,57.20015343558043,56.556217536795884,57.17940838355571,56.58678068034351,55.75961670931429,56.11886126268655,55.12131024664268,54.598751668352634,54.341141843702644,55.323585198726505,55.656772481277585,54.909910649526864,55.43105008127168,55.11871305946261,54.371459912508726,53.445826574694365,53.22212508972734,52.574568749405444,52.820003422442824,51.88864949578419,52.079994855914265,52.18955053156242,52.37827436160296,53.03650637110695,52.989087518304586,53.08297764370218,53.55835043126717,53.602713622152805,53.23424849100411,53.62326862057671,53.88152335723862,53.12374854274094,53.113219591323286,52.78989780461416,53.16538080340251,53.092863307800144,52.8618049188517,52.0947083318606,52.86070878384635,53.28491217503324,53.14898570626974,54.0704204197973,54.522439311724156,53.68365303426981,53.332643954548985,52.7867844440043,53.19838020671159,52.91829901235178,52.34507091110572,51.50346354022622,50.50640738103539,49.93584216944873,50.02897294051945,50.50635966146365,50.182183667551726,49.929934282787144,49.55443344078958,49.143947599455714,49.03421313595027,48.349308003205806,47.84905638638884,48.58212025370449,48.19525170046836,48.64793936535716,47.87391613796353,47.86738836299628,47.4954639961943,46.604978449177,45.79843653505668,45.79759574262425,44.99688093503937,44.45142282452434,44.63125698501244,44.63458305224776,43.792491531930864,44.04151901230216,44.46666478924453,45.29091382678598,46.25920910295099,46.39140475448221,46.323949988000095,46.61453215079382,46.94331520795822,47.80633504502475,48.25606257002801,47.54915413586423,48.15762292640284,48.862120375502855,49.73607793543488,50.340013907290995,49.923355200793594,49.46748743765056,49.00637831259519,48.17415013583377,48.767026589252055,49.59223768627271,49.70042030746117,48.70787236839533,49.444495495874435,49.51158924307674,49.87876701820642,49.3314539026469,49.953143530059606,48.98183203395456,48.85641051270068,48.84118119254708,49.65131957223639,50.169380590785295,51.050546190235764,50.720963715109974,50.74360186513513,51.01793428277597,51.15851093828678,51.16106186853722,52.12922740308568,51.702470736112446,52.5303538008593,52.04665187513456,52.54593942081556,53.157467178534716,52.28042496647686,51.634404005948454,52.23631333978847,52.67596682207659,51.72880303999409,52.11167016113177,51.51511439494789,52.1929522017017,52.718398314900696,53.65606303419918,52.66867471160367,53.39458353118971,53.11169941164553,53.61945580737665,54.001076598186046,53.244242505170405,54.19323325715959,54.427715179976076,53.68191492697224,53.1396870338358,52.71072280174121,52.73326800763607,52.24688113294542,51.97562297899276,52.310530215036124,51.772887577302754,51.66700867284089,51.08641736768186,50.09852215042338,50.46371878683567,50.12215083185583,49.78767251595855,49.32288113841787,49.7376939705573,50.281354944221675,49.70608044555411,49.81500468868762,49.69839023379609,49.56754490919411,49.385280187707394,49.68510687164962,49.60129058873281,48.77459958381951,48.514168264809996,48.410753899253905,48.73021784843877,49.48612775001675,49.421791203320026,48.8574278219603,48.09586393926293,48.37210968276486,47.53781766304746,47.96731533668935,48.77003319375217,49.66175329592079,49.9476789473556,49.22937363293022,49.186456565745175,48.44494611211121,49.04257050715387,48.254362592473626,48.1859492813237,48.679924855940044,49.23109883535653,49.37348141288385,48.819025941193104,49.668578495737165,50.55803932715207,50.67390259122476,51.1096703694202,51.22016349248588,51.29278338002041,50.31513121863827,51.177045926917344,50.71133182849735,50.30265127075836,50.246197283267975,49.70273702312261,49.689242149703205,50.39560208050534,50.50785643933341,49.83728914754465,48.991368495859206,49.2097115018405,48.78449265984818,49.593603640794754,48.76376211037859,48.40993432328105,48.922523624729365,49.76740205055103,50.263504572212696,50.01271403115243,49.94913558010012,50.00477415882051,49.058924889657646,49.12681294977665,48.36852602940053,49.2948021623306,49.87514439597726,50.13604212133214,50.056253785733134,49.92719063535333,49.09747823653743,49.99902273109183,49.82265451923013,49.412945904769,49.666784620378166,49.03141801152378,48.99117984762415,49.620049244724214,49.72361158346757,49.565220998134464,49.78345959959552,48.96763278217986,48.66903686989099,48.29596259444952,49.25807582587004,49.61480169650167,50.25576809840277,50.473086358979344,50.05197601206601,49.853739426936954,50.43484486825764,51.1779553075321,50.84343300247565,51.0375606152229,50.412691491190344,50.75889658648521,50.89108507707715,51.8306518108584,51.97164063435048,51.55619240505621,51.67291980981827,51.5150339496322,50.72400249633938,50.449755986686796,50.10029435204342,49.60524889361113,48.8425984592177,49.78987497230992,50.59646805701777,50.75928004505113,49.782691021449864,49.624620496761054,49.373891786206514,49.63885438023135,50.00190919265151,49.282957094721496,48.74123360030353,48.16987956687808,47.545514380093664,47.80647035501897,47.278228831943125,47.24390994850546,46.96278029354289,46.64994255639613,46.24757883325219,46.2517681713216,45.77551835728809,45.09322557924315,44.87782314885408,44.88339909771457,45.220410163048655,45.28358354046941,45.2522534490563,45.60448512248695,45.753679567947984,44.91316631343216,44.318233062978834,43.5441938508302,44.358261140063405,45.00585297308862,45.330518882256,45.4909711163491,46.33753561414778,47.225764855742455,47.60017883544788,47.12828439287841,46.35648781713098,45.734325260389596,45.6741345836781,45.59347245376557,45.581768178381026,45.40464890282601,45.78280638670549,46.20789337204769,45.48158863419667,44.89049268141389,44.10738647868857,44.88731751590967,44.694378045387566,45.03642314719036,44.41546939685941,45.17959785088897,44.504683509934694,45.46439513750374,44.86478930199519,44.19353516725823,45.03942613583058,45.53473640838638,45.00527757033706,45.66695043537766,46.55324427457526,47.45285229245201,47.44016840448603,47.9909224496223,48.29597250977531,49.09864742262289,49.0054197832942,48.16106753703207,48.79843661747873,48.46002725837752,49.163583582267165,49.00845129182562,48.424627421889454,48.07378874346614,47.44258991582319,47.1311524361372,46.98765693139285,47.18060136260465,46.20275249378756,45.24886756623164,45.88276492850855,45.58713021874428,45.08271568501368,44.18349302979186,44.81499158684164,45.482291682157665,45.94487980566919,46.7825716114603,47.56485798442736,47.585459898691624,47.43315916415304,47.066215672530234,46.2811797214672,46.66206742450595,46.79373933561146,47.25138348946348,48.05529396701604,47.485320686362684,47.2020506169647,46.897604008670896,47.38639558153227,46.46702155517414,46.69372880132869,46.67386344214901,46.826733481604606,46.19129210151732,45.62904859893024,46.05901874508709,46.96100677456707,46.59025683486834,46.638852493371814,45.92979842470959,45.367111552506685,46.20298383384943,46.37022382579744,45.993089319672436,46.36027318099514,47.286852611228824,47.94467946141958,47.30042374273762,47.68880616314709,46.92183536896482,46.94141605915502,46.56712631555274,47.032296997029334,47.2861569696106,48.25537206046283,48.9875125894323,49.07010458270088,49.23275285586715,49.72399832541123,49.11842307308689,48.65067417919636,48.330884255003184,49.32808943558484,50.28135669324547,50.34461061935872,50.16823909012601,50.4287821915932,50.75761945452541,51.4523777612485,50.873486902564764,50.815292834769934,50.843218959867954,50.45248139463365,50.953708310611546,49.990488316398114,50.979718742892146,51.46552860038355,50.57961414568126,49.59311172179878,48.93522000545636,48.55248723970726,47.86545715574175,48.39903081348166,48.435573550872505,48.92894589342177,49.71995442872867,49.82025790354237,50.19357401272282,49.589873052202165,49.252193006686866,49.99064752319828,49.877558334730566,49.895411119330674,50.443316236138344,51.10151469707489,51.77455222373828,52.07308593578637,51.55875718407333,52.468792979605496,52.428004388231784,52.22666910616681,51.27873370377347,51.24651815695688,51.1210002200678,51.76750251604244,51.49477924546227,50.86618024436757,50.40958894882351,50.93597436975688,49.93798320507631,50.56299948506057,50.52776143141091,50.92462361417711,50.793315230403095,50.991512124892324,50.62446284946054,50.62427031155676,51.118260006420314,51.06644008168951,51.372396289836615,50.896065175998956,50.58537404099479,50.9274770822376,51.24575449991971,51.80377598432824,51.93358300672844,52.16125060431659,52.5041243894957,53.145968303550035,54.113416637293994,54.69413239648566,54.16406039148569,54.84991042222828,54.979447963647544,54.80015548458323,54.470678662881255,54.075116727501154,54.210379142314196,54.6095792548731,54.50652338191867,53.89424053579569,53.7107187542133,54.000859203282744,54.51433268561959,53.981153671164066,54.6768951411359,54.84067454421893,54.62554629705846,54.25247905822471,54.29422338725999,53.98574767820537,54.341736446134746,55.30954074859619,54.35839302605018,53.95874748751521,53.77286575129256,54.072781135793775,54.69544536108151,54.73019460821524,54.01843682536855,55.00576322665438,55.084493298083544,55.14670121110976,56.00398335047066,56.363240943755955,56.124171326868236,56.97984109725803,57.162024145014584,56.76066971151158,56.9864910650067,57.19409157661721,57.15839040046558,57.03628863953054,57.81850020121783,58.38319158833474,59.203745941631496,59.409278450068086,59.09529389068484,59.747011580038816,59.45866293180734,58.52831657929346,59.452256962656975,60.3776894598268,59.75616839854047,59.979752347804606,59.96593895275146,60.07825047709048,60.14329694677144,59.67443912895396,59.1340946322307,58.21764375921339,58.20770474150777,57.7593265324831,57.345526558347046,56.811050455551594,56.536878605838865,55.53876310447231,55.0016677477397,54.876221078448,54.131521680857986,54.91809146665037,54.7084377752617,54.625513004139066,55.28342516440898,56.12233066884801,55.19716860121116,54.92394229443744,55.702643199358135,55.065126745495945,55.254497417248785,55.13931831624359,55.5344372629188,55.33639425598085,55.5959995877929,55.147786173038185,55.273623529821634,55.86079472582787,56.11525989929214,55.97069380339235,55.1857969192788,54.87394662993029,55.547767634969205,55.44209686294198,55.37326679518446,54.815123406238854,55.64279923820868,54.65408318955451,55.24936398025602,54.66901819920167,54.559982718899846,53.9456602470018,53.30544656282291,54.24825804354623,53.26336197834462,53.59852068312466,54.18619228852913,55.0378965982236,56.01179381040856,55.31437142798677,54.932350877672434,55.78426396846771,56.34111337689683,55.80037575541064,55.29589821351692,55.19686254719272,55.7151312767528,54.91210986068472,54.59282151423395,55.335422893520445,55.26808244176209,55.90861917845905,55.51152597554028,55.104767330456525,55.03834922937676,55.21693856501952,55.1119291447103,54.22597268037498,54.622071450576186,53.786872502882034,54.08297002175823,54.462102802470326,54.709229895845056,55.09379589604214,54.54638755554333,55.13448516977951,54.146115604322404,54.30166088277474,53.997860946692526,54.66315897135064,55.03115707915276,55.16940056299791,55.86786659061909,55.31027157511562,54.66743323253468,53.83163095731288,52.87534937588498,52.796285822056234,53.61601413739845,52.911689481232315,52.106602439656854,51.55267602670938,51.38940574089065,50.6941387061961,51.091701325494796,50.38623607670888,50.130357567220926,49.51090890588239,50.067257285583764,50.95056862523779,50.71592472912744,51.57926929183304,50.78758726082742,51.01181922806427,50.97079643374309,51.89971480611712,52.505565924569964,52.93610273860395,52.11214616475627,52.634550666902214,52.209474387578666,52.49115783069283,52.82064632466063,52.66709512518719,52.02216342370957,51.473977313842624,51.12279391149059,51.30645228130743,50.845882350578904,50.05357498722151,50.14919171249494,50.99356552679092,50.701271028257906,51.359668004792184,50.477508689742535,50.09259716793895,49.69889595825225,49.9485851614736,50.03420336544514,49.89404556900263,49.2889296868816,48.883678446058184,48.11770479707047,48.91990025062114,49.01653470797464,48.12896292982623,47.49510308820754,47.423890439327806,47.78022182453424,48.38045425852761,49.309977603610605,48.44996220804751,49.0229931101203,49.43654252681881,49.68802309362218,50.626790509559214,50.92533977050334,50.733505852054805,51.70460376655683,51.328643375542015,50.522936845198274,50.44593986636028,51.44257386913523,52.394049879163504,51.49931872729212,51.325269831344485,51.78018286591396,51.59695195266977,51.50691444799304,50.85077855968848,50.36581121804193,50.98852453706786,51.25430279690772,50.91025389544666,51.11781928362325,50.16859409958124,50.82455776911229,50.305066109169275,49.650011213030666,50.435652919113636,50.26859441306442,51.07172762835398,50.77980417292565,50.40088383760303,49.492532420903444,49.77998000057414,49.20493873441592,48.51838664198294,48.711818031035364,47.967520331498235,48.85847815684974,48.79904652805999,49.669627560302615,49.11486459011212,50.10137306060642,50.206799055915326,49.42899486515671,49.03566202800721,48.16981617268175,47.284192668274045,47.99605879094452,47.46488015539944,46.64541499270126,46.32475174590945,46.1934817051515,46.68915183003992,47.25660168053582,46.6581650483422,46.797499059233814,47.01530107995495,46.24489360395819,46.10500209778547,45.40905691217631,45.553246492519975,45.94855986535549,45.34483233606443,44.602568365167826,44.69477164838463,44.00688388524577,43.762751745060086,44.726900794077665,44.33035451453179,44.205855917651206,44.90853593824431,44.851316570769995,43.981174630112946,43.07740451814607,43.4012791714631,43.23979393206537,43.808418651111424,42.849317288491875,43.724300493486226,43.45534243900329,43.40722695970908,43.322641051374376,44.136836749035865,44.99496299773455,45.20448345458135,45.75439916085452,45.507997679524124,45.607747880741954,45.40277220122516,44.94874066347256,45.20960267819464,45.71847576042637,46.361581466626376,46.98872387968004,45.99853549525142,46.580316790379584,46.82414866704494,47.05505779199302,46.36836600210518,46.65405297325924,46.227873106487095,46.948144080583006,46.40526019688696,46.56279612518847,47.14887380367145,46.5739896055311,46.2540884334594,46.994929135777056,45.999883411917835,46.60935083637014,47.454387506935745,47.96245516743511,47.335561242420226,47.89779501501471,47.53773454762995,47.942277155816555,47.126911828294396,47.3130619940348,47.273138851858675,47.30092808511108,47.06468534562737,47.60311781754717,47.97103753266856,47.09427102888003,46.75331780221313,46.03094009589404,45.39357940200716,45.11470780847594,45.97785587981343,45.71132008172572,44.73903768835589,44.07484650518745,44.567836517933756,44.78956720791757,44.25213155290112,44.61326056485996,44.68552859732881,44.968446790706366,44.228320113848895,43.291995799168944,43.38323302567005,44.25631110323593,43.734794597607106,42.80544220097363,43.6595276244916,44.10035008331761,44.969730398617685,44.02463727258146,44.9797169691883,44.03287755418569,43.70920467795804,44.21198532450944,44.56578284641728,43.928895090706646,43.39948433171958,42.790783007629216,42.66993486508727,43.128036306239665,42.39727531559765,42.0564922275953,42.409088724292815,43.345807063393295,43.64734542788938,43.131154706701636,42.471696723718196,42.00575654581189,42.757116908207536,42.610830918420106,42.215604295022786,43.08776689413935,42.523634020704776,42.67088424414396,42.00011209631339,41.82046875124797,42.57480234419927,41.816158910281956,42.50233308272436,42.03439091425389,41.05484323669225,41.593888646457344,40.62979287002236,40.22435274254531,40.57637398550287,39.791901633609086,40.75955608393997,40.61739547457546,41.25795673346147,42.25401539960876,42.86936608608812,43.132421649526805,42.581184012349695,43.22642772691324,42.77070769574493,41.7821976444684,42.102361508179456,42.34057041024789,42.101730776485056,42.28779090521857,41.98837672639638,41.37452576588839,40.56370135676116,40.30130850197747,41.26168342260644,40.3969896659255,39.789550381246954,40.61195993702859,40.80300673190504,40.71581446984783,39.80919425049797,39.651990769430995,40.166018144693226,40.91022673109546,41.35833695810288,41.74069563578814,42.13644408248365,42.20072907861322,42.58659175457433,41.74245468899608,42.15063117118552,42.63228666316718,41.7410663315095,41.469499822705984,41.87957743695006,42.610460370313376,42.314689619001,41.88370665535331,42.85093274153769,42.857886407058686,42.40246109711006,42.16904863482341,41.9277351773344,41.04588310979307,41.519742272328585,40.80004731146619,40.20392263820395,40.10889043612406,39.832011794671416,39.42219245340675,39.40891525056213,39.04609908768907,38.70862760208547,38.54040568182245,38.7595798978582,38.30597761273384,39.07889292621985,38.35334492567927,37.94191837357357,38.40033421292901,39.35005794651806,38.593917476478964,39.51580206910148,40.3462934140116,40.76753278123215,41.402177021838725,41.35081487894058,41.125886116642505,41.36923218425363,41.390014422126114,41.379252987448126,41.36542065627873,41.412194677162915,41.00921545922756,41.68590398598462,41.11587942019105,41.71112109301612,41.01043612277135,40.285829570610076,40.04264457710087,40.976546774152666,41.844907738268375,41.1092394227162,41.9528109501116,41.49467787286267,41.37574512604624,41.240741493180394,41.38301889132708,42.299407173879445,41.6635594884865,42.579625461716205,42.33007737575099,42.33753987215459,41.9799360181205,40.98238766938448,41.274412761908025,41.94169496791437,42.58452250342816,43.27833201130852,44.016952654346824,43.028398633468896,43.41869058692828,43.61022879648954,44.30313828634098,44.31495424406603,43.327432779595256,43.001015338115394,42.59687393857166,41.60790278716013,40.76256675971672,40.09396805847064,39.57891805144027,40.24157147714868,39.903161784633994,39.160371449775994,38.22021797345951,38.70072451001033,39.00645423959941,38.537991179618984,39.21723373653367,38.93280168902129,38.1247135438025,38.08790973527357,37.88871556567028,38.17149159871042,38.1860020221211,37.95780820725486,38.25744248973206,38.331644100602716,37.87928955350071,37.68140875780955,38.118505673948675,38.86708392761648,38.32344323536381,37.95126066636294,38.10129127278924,38.46434935647994,38.87579301605001,38.84199735894799,38.15088564576581,37.16816059872508,36.45171563513577,35.76083348272368,35.51030471874401,36.22701991163194,36.97318922262639,36.48661981523037,36.89404824562371,36.96890248125419,36.380932001862675,36.76944438787177,36.31070913327858,36.62125564785674,37.36818707175553,37.067468736786395,37.81850960524753,37.887737532611936,38.146783403120935,38.7390473568812,38.52721831994131,38.83724638586864,39.64180740527809,39.09134350717068,38.79575498634949,37.885755739640445,37.66348757361993,38.222446627449244,38.86180996987969,38.23816981213167,37.62096462678164,37.40372856054455,38.04827891755849,38.52053064107895,38.697621712461114,38.63899737223983,37.72901032259688,37.39042809186503,37.06164682703093,37.25978752039373,36.50241890922189,36.880621298681945,37.11295063374564,37.60484761185944,37.87312633916736,37.79702771874145,38.5947729353793,38.00205610645935,37.07977658836171,36.99087544390932,36.103382154833525,37.06128066079691,36.88315760856494,35.943678580690175,35.87374034663662,34.89757586456835,34.33832840435207,34.25680863717571,35.02828603470698,34.53087087534368,34.51179718784988,34.619553334545344,35.40318847075105,35.92439568042755,35.27448693336919,36.18693092651665,36.92469515884295,36.15507123572752,36.463844483718276,37.43888785596937,37.703512948937714,36.72252250369638,36.75898029282689,36.51640386413783,36.69175333017483,37.582091932650656,37.53333433205262,37.40145226242021,36.570268699899316,37.053203240502626,37.84383862093091,36.96028964687139,36.25070742191747,35.92541794665158,35.868436257820576,35.52302653482184,35.59090402163565,34.797213663347065,34.46152950916439,35.2267407332547,35.984135459177196,36.36741292104125,37.07228594366461,36.78394826967269,37.65156207839027,38.56527232192457,38.23620720393956,37.628551749978215,37.50470362510532,36.65344659937546,36.74394708732143,36.31813438702375,36.928502172231674,36.51160285482183,36.85756384395063,36.74581270292401,36.15019354224205,36.3430755645968,37.00742151774466,37.49046034319326,38.16190181672573,38.24277694616467,37.55123025365174,38.112518780399114,38.447495460510254,38.21133127622306,39.046070182230324,39.126726063434035,39.55932008987293,40.24785273429006,39.46174286631867,39.926828783005476,40.7446020282805,40.93564969114959,41.18694543791935,40.87085543293506,41.35255880933255,41.726506870705634,40.99542693793774,40.171401096042246,39.52531517483294,40.48014867352322,40.74232960306108,39.9468166558072,40.241544539574534,39.8731972319074,40.63365211896598,41.09254188137129,41.20005763787776,41.07526155980304,40.651394966989756,39.72274455986917,39.13602581853047,38.916557661257684,39.18670431897044,39.32917017303407,38.44513271283358,38.03885127650574,37.819527002982795,37.32995818601921,37.72897278983146,38.54592442139983,38.13251271098852,37.99535172106698,37.71667215973139,37.0294931367971,37.03211007500067,36.4663909538649,36.55024451902136,37.37200805172324,38.12351610139012,39.003925286233425,39.6981086274609,40.696499010082334,40.13236384699121,39.33422873914242,39.22794942557812,39.18597343657166,39.456885469611734,39.59054543077946,39.987960453145206,40.10965083539486,39.20878180954605,39.357971540652215,39.1533343619667,39.64028565539047,39.62273247912526,39.9479555352591,40.9410337889567,41.720660970546305,41.87649258226156,42.27284428616986,42.38540411647409,41.68972371472046,40.99295761156827,40.67982567474246,41.438037431333214,42.16124642500654,42.65957786375657,42.256998783908784,42.307670230045915,43.132280613295734,43.53557702712715,44.10944601660594,44.21475002588704,44.100252794101834,43.77793024620041,43.16262214211747,43.631544599775225,43.56004250701517,44.22776566725224,43.583461846690625,43.62569503998384,43.69210393493995,44.27366423374042,43.778689151164144,43.33431230066344,42.52721668360755,43.23884833045304,42.6030112830922,43.273237464018166,42.40129636414349,42.52786994865164,43.42598795611411,43.39782190322876,42.44809382036328,43.32777756359428,42.88860925659537,42.88542028423399,43.83898539934307,44.58977770013735,45.5497290645726,44.67449521180242,44.36929327202961,44.42933775205165,45.23848445760086,44.58212255034596,44.28188976738602,44.89342088904232,44.03025117656216,44.18529787659645,44.08429597457871,44.909141396638006,45.140427539125085,45.136397561989725,44.324174389243126,44.626471005380154,45.15816710470244,45.90971426246688,45.65362349990755,44.7753562182188,45.66919432906434,44.87920841155574,44.02033570455387,43.297218047548085,43.38387716142461,43.18287802673876,42.463370223063976,43.08723036758602,42.154819164425135,42.45668091578409,41.70815213350579,41.29625569982454,41.657356964889914,41.32372046029195,41.714232293423265,42.51294402871281,43.30939253838733,42.6163320527412,43.04036937048659,43.77924074465409,43.33037045691162,43.67083778604865,42.79591425647959,42.110269765369594,42.16587527655065,41.58918177522719,42.118116850499064,41.5746832145378,41.48823360912502,41.373114090878516,40.4086020370014,40.002995643764734,40.42672037798911,39.77983404090628,39.07305075088516,38.4376375102438,38.7092010891065,39.4088593814522,39.45623006206006,40.04271699395031,40.56248803623021,40.58057406311855,40.05884356237948,40.114020856563,41.10462340898812,40.545719866640866,39.97096095466986,40.51954212132841,40.245282595045865,40.0643650572747,39.98360042879358,39.271353332325816,38.37958393385634,38.62993277935311,39.09609828470275,38.13301337696612,38.02972059696913,38.84508062386885,38.70020903414115,38.99337624805048,39.829639134928584,39.25544573133811,38.39386308705434,37.888344606850296,38.65094126807526,37.65743067814037,38.2748703584075,37.415084081701934,38.21955677168444,38.270805455278605,38.97912383126095,39.00743196206167,39.52445978904143,38.629672647919506,39.47346091642976,39.709705487359315,40.568895916920155,41.27455590944737,41.623787310905755,41.20374094787985,40.79665963444859,40.59645736264065,41.11252637580037,41.26909407461062,42.228576416149735,42.56634129397571,42.59733209153637,42.51446678256616,43.1405624859035,42.35423567192629,42.520301926415414,42.80220895819366,43.27787511283532,43.11327788978815,43.2690702425316,44.092115986626595,44.19438047101721,44.90742186456919,45.73400706984103,45.24852885864675,44.51005463069305,44.76365148834884,44.880000099074095,45.74118401994929,45.43475767970085,45.66619264986366,44.98526037344709,44.13338879821822,44.15526837715879,45.11857000691816,46.06165668787435,46.72422639466822,46.48004397004843,46.47495819022879,47.113236223347485,47.38840926485136,46.62489123409614,47.14767893636599,47.8050746275112,48.02761582378298,47.938102376647294,48.01077750092372,47.1973287393339,47.657143325544894,48.281201431993395,49.096034991089255,49.98018770990893,50.167272923048586,49.96967489598319,49.8804659191519,50.49702707771212,51.21892523020506,52.120940257329494,51.59823842998594,52.24481276376173,52.1654387274757,51.452350073028356,52.23531566048041,51.935130721889436,51.648485504090786,50.97471843473613,51.22619157470763,51.76314204186201,52.10461136698723,52.101398068945855,52.26026288047433,51.277617875952274,51.40234514372423,51.89331822982058,52.72185188764706,52.548667484894395,51.85206708870828,50.93606353364885,50.41355768404901,49.754321817308664,50.72733972361311,50.9498964282684,50.84659232897684,50.46501350076869,51.23703127820045,51.605010866653174,51.88908341433853,52.27787100384012,51.995938264299184,51.585169398225844,51.54340250790119,52.17554048169404,53.05130300344899,53.07113438518718,53.9954494247213,53.28424321208149,53.37061521783471,53.39349870337173,54.177486300468445,53.23457303456962,53.498107264749706,52.827078017406166,52.38826674828306,52.56323359813541,51.73238031985238,50.89595834026113,51.30783434025943,51.62124432530254,50.70435804268345,49.84175382135436,49.914693030528724,49.16769507760182,48.50557509530336,49.25923204002902,48.5451826187782,48.12887374777347,47.83065733825788,47.714147112797946,47.27411779202521,48.21305670496076,48.250207394361496,48.19694711826742,47.9900841107592,48.88998242281377,48.494098021648824,49.49299165373668,49.57477347133681,49.25204002484679,49.375545523129404,48.3944498100318,47.68181832320988,48.591523203998804,47.82027924573049,47.04834887897596,46.204885692335665,45.346231570933014,44.69203387340531,45.039852815680206,44.813908852636814,44.900304299779236,45.03786026313901,45.09344874089584,45.973437992390245,46.60706128226593,46.178567772731185,45.41101633710787,46.23694197786972,46.62099050357938,47.26128159137443,46.83436423307285,46.724476002156734,47.5128709631972,47.68755528470501,47.22146398946643,46.344751155003905,45.7993887020275,45.51734903967008,46.282340129837394,45.94790459331125,46.326354895718396,45.70907619642094,45.074125866405666,45.15894990088418,44.458123308140785,45.38848054409027,45.55753473797813,44.94414119981229,44.33457691501826,43.42421360593289,44.06474125711247,43.949555535800755,44.54575783666223,43.869785053189844,42.97051599761471,43.71554829739034,43.102009045891464,43.66898175468668,43.150907940231264,42.727845571469516,43.503494259901345,44.45934727648273,43.86703003104776,42.90871996758506,41.95945442095399,42.18575436109677,42.177215286996216,41.54268450522795,40.81544490624219,40.81605629622936,39.99699998879805,39.315020222682506,39.64920737128705,38.678654551971704,39.01977071398869,39.42396395932883,39.2401900398545,39.93284119060263,40.034228685777634,39.046194232068956,39.71788732893765,39.94013287732378,39.499059974215925,40.33546469267458,39.438497739844024,39.04977787658572,38.5145202241838,38.242570247966796,38.22900519147515,37.32522596139461,37.98198114987463,37.15988933946937,37.173078424762934,37.59353588800877,36.95638441853225,37.66481696953997,37.13432246912271,37.292924772016704,36.6624051714316,35.895801316946745,35.271710332948714,35.96854512672871,36.21535967569798,35.85578980110586,36.511538207530975,36.21413312293589,36.152725466527045,36.818891847040504,37.68384600337595,37.63480853987858,37.87387915980071,36.96202067891136,36.29291944298893,35.57768459292129,36.10874138493091,35.417650506366044,35.925383154302835,36.64758968912065,35.75330647453666,35.16787769785151,34.27953232685104,34.54201945196837,34.074147139675915,33.63738207705319,33.19260310055688,32.70988012338057,33.04419707506895,32.86633985117078,32.21947501040995,32.92202652292326,32.64453240483999,32.63755299244076,32.3548200763762,31.431223024614155,30.722067330032587,29.875145397614688,29.352673812303692,30.074869882315397,29.973722280934453,30.409924905747175,31.09962423145771,31.996037777047604,32.57565471623093,33.02643965976313,32.99433759227395,33.32977108191699,33.085695111658424,32.93045333959162,33.847257061395794,33.79282825998962,33.74035251000896,33.960253161378205,33.94777233665809,33.52223923057318,34.0261517977342,34.137003110256046,33.41257388051599,34.28864983515814,34.77133614150807,34.0362429167144,34.72483104886487,34.22008740063757,34.74339714087546,34.61929336423054,35.298958394210786,35.24191400408745,35.99463089928031,35.95755285862833,36.52079146821052,36.93235184671357,36.90714432671666,36.575089789461344,35.95742544485256,35.816676788032055,35.43643899215385,36.06184570956975,37.038480155635625,36.826232274994254,36.01452237088233,35.650154520757496,35.08153873542324,34.892016330268234,35.25669435132295,35.311330838594586,35.00049808900803,34.46335901506245,33.60009117750451,33.17905001807958,34.03619101783261,34.604465001262724,34.25461448030546,33.967894496861845,33.26968298479915,33.15271957591176,33.655042426194996,32.65776532841846,33.0673909522593,33.464543282520026,33.87807205365971,34.0851372955367,34.2944961162284,35.17143970821053,35.59675678424537,36.24927295604721,36.14898481499404,36.41266505699605,35.41345002502203,36.03066734643653,36.21136277774349,35.66572760185227,36.467469587456435,36.969265253748745,37.63930506212637,36.91124454187229,36.6842912430875,37.03186488011852,37.4263934600167,37.281696224585176,36.42124628322199,35.60801256960258,35.15179786644876,35.243370765354484,34.577403529547155,33.602857964579016,32.81422118796036,32.72367224982008,33.5723586617969,33.032939597032964,32.95193468546495,32.18306940514594,33.039469853043556,33.23954106029123,33.214634561911225,32.374557284172624,31.406003897543997,31.98581173736602,31.193387137260288,30.80003185942769,30.998277572449297,31.456514550372958,30.893259592354298,30.01208259118721,29.105154821649194,28.648435689043254,28.195076207164675,28.423428918700665,29.206086331047118,30.17225052975118,30.367917822208256,29.48978951619938,29.649430529680103,29.831207557581365,29.18757249088958,28.8410159596242,28.077274086419493,27.706297806929797,27.838502650149167,27.24959130398929,28.063954584300518,27.979373979382217,27.605607432778925,27.060636419337243,26.457411840558052,27.296696522273123,27.202399547677487,26.87302230671048,26.040421326179057,26.02302523748949,25.17809804622084,25.55179532011971,25.57701105205342,25.97189177107066,26.154716894961894,25.879591517616063,25.973408587742597,25.96555968094617,25.968463143799454,26.541972687467933,26.247026011813432,25.566457856912166,26.01392803899944,25.57979663135484,24.62806081585586,23.92443422647193,24.597386323846877,24.23943569138646,23.950973032042384,23.786115838680416,23.734112905338407,23.637676536105573,24.107332772109658,24.508551450446248,25.410533708520234,25.194325890857726,26.189810388721526,25.308189830742776,26.014469312038273,26.01614514319226,25.278451385442168,25.777834750246257,25.769027119968086,25.339285500347614,24.425141611602157,24.043206004425883,23.46656627394259,23.901619522832334,23.583448705729097,23.61343428399414,22.762368677649647,23.386757362633944,23.955910275690258,23.799925692845136,24.17045582458377,23.469440472777933,23.27148041082546,23.30743949348107,22.645761910360307,22.83097344543785,22.19447466544807,22.06272312020883,22.230931553523988,23.222795532085,23.483137535862625,23.68729251762852,24.515860449057072,24.354509421158582,25.31560697592795,25.633919410873204,25.510395724326372,24.92893004231155,24.99864026485011,24.71153197484091,24.989317582454532,25.25414463505149,25.80730145936832,26.394143482670188,26.733096556272358,27.244298013392836,27.16913280263543,26.189076132606715,25.88347574044019,25.930783192627132,26.76623462419957,27.7456008316949,27.021416075062007,28.000323708634824,27.093244354706258,26.281824599951506,26.374259228352457,27.271286826580763,26.358875792473555,25.42157123470679,25.13128432398662,24.279895165003836,24.82634570915252,24.362278832588345,24.712533733807504,25.0476224408485,24.103073785547167,23.852435776032507,23.80199862923473,24.624191584065557,25.303574574179947,26.230503457598388,25.313050671014935,24.5751443952322,25.44174028467387,24.889978754799813,25.175948011688888,26.13300540484488,26.35415753023699,25.646978141739964,25.331050508189946,25.381468226201832,24.48528101714328,24.208621481899172,23.300036064349115,23.40297236153856,23.074121525511146,23.386906768660992,22.797129730228335,23.040494770742953,22.5214069429785,23.314006953965873,24.035115730483085,23.655655838549137,23.8569528167136,24.42792365886271,24.09300589840859,24.333893054164946,23.46513181226328,23.872453030664474,24.255620546638966,24.647264390718192,23.942759204655886,24.10989372432232,24.198851452674717,23.658177389297634,24.025604827329516,23.800033308099955,23.869159497786313,23.10358809772879,24.066741787828505,24.312611408066005,24.249674045015126,24.63738009473309,24.17951131798327,23.665328498464078,23.527879657689482,23.45300569664687,23.288175312802196,23.17731497064233,22.253898632247,22.287293861620128,23.098609080072492,23.138091922737658,23.22653577569872,22.619790465105325,22.29247571527958,21.322731228079647,21.621469800826162,21.46280109556392,21.747829475905746,21.878890000283718,22.294912124052644,22.56925842911005,23.022460967767984,23.207093506585807,24.198604297824204,25.157319400459528,25.96143939672038,25.74595430167392,26.623015551827848,26.590157034806907,27.180765958037227,28.0246473508887,27.7080964227207,27.723923063836992,28.365523350425065,28.08910318883136,28.30278476793319,27.325142461806536,26.56078947056085,25.73234094772488,25.86841680575162,26.75667507527396,26.416338842362165,25.86181041179225,26.20887043699622,26.473828978370875,26.45351663744077,25.934938442427665,25.075190724339336,24.608203443232924,25.395922016818076,24.425505318678916,24.366965292487293,23.63967632362619,22.77936591161415,22.938905123155564,23.3979678330943,24.38762705679983,23.400619748514146,23.457163052167743,23.729336270596832,23.632573264651,24.1602394268848,25.024706162977964,24.10507402336225,24.784313957206905,23.959199492819607,24.520188165362924,25.130045088473707,24.147150571923703,24.44820164470002,23.53189273085445,23.234589610248804,22.811598423402756,22.7767090103589,23.503814219497144,23.816597636323422,23.518506824504584,22.619187184609473,22.7822641460225,22.13415346480906,23.007262165658176,22.3406362850219,23.027451735455543,23.253051398787647,23.199666866566986,23.01627589855343,22.88450897904113,22.104661660734564,21.437569717410952,20.78927064780146,19.992773299571127,20.833607321605086,20.87543145287782,21.04942454956472,21.35995549755171,21.010997083969414,20.138449964113533,20.034839348401874,19.969918672461063,20.37657311372459,20.79364387318492,20.508622627705336,20.703540516085923,21.389043009839952,20.60693524731323,21.064901240635663,20.115262649022043,20.82369251968339,20.573520482052118,21.26406727777794,22.04684655321762,21.501310415100306,20.916828142944723,21.27305153524503,22.259778182022274,22.32532659266144,21.4777616946958,21.238379578571767,21.28563783178106,20.406642105896026,20.784980709664524,19.89239245466888,20.652287242934108,21.01784591609612,20.151747338939458,19.941337790340185,20.818124652374536,20.036854749545455,20.913100480102003,21.645413462538272,21.640265118330717,22.409658698830754,22.263988038990647,22.018901821691543,22.90432550618425,22.490021657198668,23.484653440769762,23.594737354200333,23.297525350470096,23.183672457467765,22.718391684349626,22.33756960555911,22.517294138204306,23.09281774237752,23.071029111277312,23.715591543354094,23.625684102531523,23.393039400689304,23.551791423931718,23.786260562948883,24.30100196134299,24.448688531760126,23.478234462440014,24.446825442370027,23.882046265993267,24.75288745108992,24.35609912406653,24.159013743977994,23.25399488862604,22.718818235211074,22.46913311770186,22.258552494924515,22.958286171779037,23.399520557373762,23.356207729317248,23.388506315648556,22.7608689381741,22.281496254261583,21.52254675840959,21.770472426433116,20.789377679582685,19.80229537282139,20.444193187635392,20.98835368361324,21.91222309228033,21.922385723795742,21.112628450617194,21.521245741751045,20.767111853696406,20.499719817191362,21.484329337254167,21.331028047949076,21.717402705922723,21.87274053413421,21.366559898946434,21.125897901598364,20.24966163840145,20.511341563425958,21.046272643841803,20.46274827281013,20.519311246462166,19.54205329809338,18.66119843814522,17.970216433051974,18.947703674901277,19.318205040413886,18.826261018868536,18.39720476884395,18.376328210812062,18.152139445766807,17.50917571550235,16.632460392080247,17.433368703816086,17.359922921750695,16.86641620984301,17.582591803744435,16.710346991661936,16.203155843541026,16.107496081851423,15.731871808413416,16.090045521967113,15.903133735992014,16.076142145786434,16.590078386478126,16.754535530228168,15.992976734414697,15.261233339086175,14.433774389326572,13.656530634034425,13.91609871480614,13.49050219822675,13.455245366320014,13.116149630397558,12.150571127887815,11.990741117391735,12.285364719107747,12.874662610236555,12.431688739918172,13.07111264206469,12.479857699945569,11.61181264091283,11.834079451858997,11.06962112057954,10.203671951312572,10.036740760318935,9.980189572554082,10.225253265351057,9.38615326443687,8.872399980202317,8.292670357041061,8.12116384319961,8.701164680533111,7.7468562866561115,7.195311853662133,7.9755180343054235,8.507060019299388,7.627041248604655,8.165263884235173,9.154222722630948,9.405274647753686,8.512480029370636,8.333666948135942,8.700121278874576,7.747529244516045,8.320004025939852,8.608797431923449,9.184646313544363,8.867591296322644,7.956114509608597,7.62792704673484,7.55761885875836,6.564549486618489,6.91283713048324,6.285644507035613,5.292254080995917,5.815621515270323,6.2731990264728665,7.149790001567453,8.004901583772153,7.319582846947014,6.847423886880279,6.246610529720783,7.227053525391966,6.874144953209907,7.741821005009115,6.866989715024829,5.986955450847745,6.455895666964352,5.626133983489126,5.0165183315984905,5.198786188848317,5.2924845749512315,4.743366034701467,4.056825207080692,3.2131694690324366,2.266864047385752,2.321666994597763,1.9019260769709945,2.170144566334784,2.440833043307066,2.1772092655301094,2.8911476307548583,2.6414960930123925,2.4307387936860323,2.653367687948048,3.2441383372060955,3.4279976771213114,2.936742229387164,2.70896446891129,2.9891066225245595,2.2927969191223383,1.9088539723306894,2.7047642525285482,3.04339849203825,3.9098918843083084,4.123061770573258,3.7549399277195334,2.7758024903014302,3.7060703560709953,3.6062033930793405,4.328711474779993,3.748241410125047,4.701373148243874,4.208243070635945,4.169717559590936,4.012749465648085,4.814609231427312,4.9900559973903,5.392854971345514,5.904106946662068,5.042142206337303,5.6396896610967815,6.2157092108391225,5.981371061410755,6.374342198949307,5.9184550838544965,6.910426595713943,6.581921122036874,6.57914423244074,7.460224926006049,7.579645758494735,7.5163348922505975,8.507358223199844,9.389426041860133,9.252352339681238,9.446541116107255,10.180528113152832,10.675780178047717,11.348798318300396,10.389360960107297,10.67366144200787,11.636844257824123,11.39264312107116,11.10348030924797,10.892946841195226,9.97653276892379,10.851061396766454,11.301429877988994,11.945862987544388,12.686296354513615,12.75461791921407,12.40888153994456,12.247725559864193,11.574552271980792,10.653408176265657,10.759067988023162,10.232097139116377,10.05063717532903,9.633272452745587,9.924592108931392,10.068075581919402,10.862210755236447,10.673186521045864,10.232209220528603,9.862178295385092,9.305483170319349,9.692262921016663,9.78453837428242,8.886287704575807,8.29300219938159,7.660104057751596,8.443744279909879,8.358562785666436,7.705103911459446,7.847301916684955,7.120565481949598,6.825538897421211,6.183307465631515,7.016408685129136,7.3862080201506615,8.224369233008474,8.762108899187297,8.872138045728207,9.600319067947567,8.666647013742477,8.423164972104132,7.895911000203341,8.865000091027468,7.915408579166979,7.9222410512156785,6.976348369847983,6.018362449016422,6.050795203074813,6.249558496288955,6.914875207934529,7.899080191273242,6.93645371356979,6.434956769924611,6.408989671152085,7.013285714201629,7.065164857078344,7.577850458212197,7.90374750783667,7.97780017927289,7.208069337066263,7.014534509275109,6.8835709798149765,6.780523287598044,6.709037000313401,7.548659282270819,7.285150165203959,7.233195874840021,7.8763717520050704,8.614105110056698,7.6711919396184385,7.1300457729958,7.981171511113644,8.048815567512065,8.714272239711136,9.038617187645286,8.634294047486037,7.811418358702213,7.32891009747982,6.402016144711524,6.420609825756401,5.572354693431407,5.082017145585269,5.7956227897666395,6.4949703281745315,6.034918527118862,6.5412724814377725,6.795172099024057,7.214034140110016,7.144358394201845,7.529625775758177,6.683041840791702,7.465066437609494,7.522802751045674,6.962492206599563,7.132533302530646,7.801262156106532,7.428739062976092,7.44634706620127,6.896661030128598,7.385448731482029,7.76710729021579,7.765375082846731,7.726256858557463,8.246311226394027,8.14329724246636,7.794312393758446,7.671161307953298,7.329790418501943,6.838547981809825,7.468988612759858,6.673442162107676,6.973067481536418,6.486744226887822,6.808029067702591,7.718981232494116,8.405845559667796,8.28163156984374,9.092541094403714,9.53396759973839,10.406119999010116,10.701612903736532,10.508630262222141,9.682024782989174,10.107669915538281,10.686427606269717,10.270748550537974,10.906015955843031,10.296437596902251,10.38519621361047,10.943947604857385,10.464048866182566,10.211092768236995,9.225553262978792,8.468452310655266,8.861992243211716,9.777936318423599,9.495023178867996,9.686455253046006,8.850823155138642,9.274320246186107,8.370389054529369,8.274191782344133,8.899663634132594,9.416168315336108,9.084554558619857,8.312674279790372,8.892871238291264,9.190486948005855,10.124345116782933,9.287157797720283,9.616486853454262,10.178798001725227,10.465820374432951,9.915534778963774,9.070198405534029,8.490329978056252,7.754626712761819,7.585156881716102,8.475463645532727,9.105586019344628,8.226950771175325,9.162320996634662,10.134212406817824,11.006612181197852,11.688058895524591,11.499041269998997,10.581462941132486,10.898064304608852,10.762823017314076,10.246295251883566,10.616866446100175,9.917366460897028,9.070283911190927,9.710758619010448,9.791430831421167,9.200852739624679,8.3329351907596,9.113374805543572,8.978879775851965,9.792662417050451,9.452760166488588,8.844460797961801,9.496825051028281,9.941007915418595,9.630715566687286,8.790591210592538,8.910476872697473,8.391026906203479,8.659936065319926,9.266728450544178,10.078490212094039,9.234758916776627,9.699798157904297,9.362439645919949,10.143385055009276,9.932635278906673,9.048598962835968,9.667700287885964,9.598796194884926,9.237381547223777,9.474204204045236,10.064547022338957,9.427147883921862,9.084800349082798,10.07459680410102,9.077269689645618,8.212804140988737,7.662985071539879,7.885734274517745,7.746490162331611,8.590723345521837,7.7003225442022085,7.288449872750789,8.238257422111928,8.153974322602153,7.308883895166218,6.996860762126744,6.110519267618656,6.357185848988593,6.730977381113917,6.966345950961113,6.550530078355223,6.036373497452587,6.30637000920251,6.860545311588794,7.732204349711537,7.614349168725312,7.064846696332097,7.047523243352771,6.383578087668866,6.082674968522042,5.64506167313084,4.82783868489787,4.334270742721856,4.708455549087375,4.19926183251664,5.10385287925601,6.009663548786193,6.691059980075806,5.980125053785741,5.19697848893702,5.049075828399509,5.071014204993844,5.193123023957014,5.947741075884551,6.043198998551816,6.800706668291241,7.239259368740022,7.930631930939853,8.246488604694605,7.285950113553554,8.075907304883003,7.478088655974716,7.636964253149927,8.532758744433522,8.377995342481881,8.66425999859348,9.18392841424793,9.168869814369828,9.881528705358505,9.299137716647238,10.030411038082093,9.549552437849343,9.198028621729463,9.334182356484234,10.261408917140216,10.627341785933822,9.866425975691527,10.632703253533691,10.049540562089533,9.905058432836086,9.084327133372426,9.446110778022557,9.259852518793195,8.543982319533825,8.786077203694731,9.204298248514533,9.476476473268121,8.911003973800689,8.48591858241707,8.979627454653382,9.323143331799656,10.062429654877633,9.366059402935207,9.472198364790529,9.383417314384133,8.812999016605318,8.590356795117259,9.019953383598477,9.846952672116458,10.109690050128847,10.484122920315713,9.710907042957842,10.672495156060904,10.070537057705224,11.000239356886595,11.43901125015691,11.154554238077253,11.033860140945762,11.289720079861581,11.734016610775143,12.346815209835768,11.739465432241559,12.681763955857605,12.641364438924938,11.877362756989896,12.140245740301907,13.1362100308761,13.11459085624665,12.3099416019395,12.62425895454362,12.886675079353154,13.699245922733098,13.606246029492468,14.392500725574791,13.550193559378386,13.711949297692627,13.57742235576734,12.798407734837383,13.34849534695968,13.584249136503786,12.6055595302023,13.492399228736758,14.394993504974991,14.65169333666563,14.936230943538249,14.588541747070849,14.79400387313217,15.515321534592658,15.728750651702285,15.26228905748576,14.720872438047081,13.821905358694494,14.261864689644426,14.149207428563386,13.728176527656615,13.430451379157603,12.447471355553716,12.003021517768502,11.448301710188389,11.36692397436127,10.774878705851734,11.773400416132063,11.695749909617007,11.39818991208449,10.775864662136883,9.981141793075949,10.784489807672799,10.237367117311805,10.822405515238643,10.147190120536834,10.424889400601387,10.652050961740315,10.788584128487855,11.714437577873468,12.295715011656284,11.331596276257187,10.681778206024319,10.021975814830512,9.737056171521544,9.783695321995765,9.96571006346494,9.964203134179115,10.396755908615887,10.868565977085382,11.798119424376637,10.953967830631882,10.762785404920578,11.144824460148811,11.059352924115956,10.47095765080303,10.752882400061935,10.817733903415501,10.71782747702673,10.257819966878742,10.805555869359523,10.164871180895716,10.52641387609765,10.602898544631898,10.893899511545897,10.901862973812968,11.69947708118707,12.010606835130602,12.006051598582417,11.995041785761714,12.975419763941318,12.222515940200537,13.080829155165702,13.343148281797767,12.370114631485194,11.607923378236592,12.40574412047863,11.902613674290478,12.757409798447043,13.485607343260199,12.898488342761993,13.169957327190787,12.947708370164037,12.900467039085925,11.95373384701088,11.535164720378816,11.291733992286026,10.773703059181571,10.526878897100687,9.529353473801166,10.440194718539715,10.630335317924619,11.624965089838952,11.396755699068308,11.319449649658054,11.417643547523767,12.38117969641462,12.159993685781956,12.887717516627163,13.060974733438343,12.357571116648614,11.862443423364311,11.738883869256824,11.117146212607622,11.69103528559208,12.247053168248385,11.604367092717439,12.035597282927483,12.376058773137629,12.458962420932949,12.363339856732637,12.874689446762204,13.515388027764857,13.392042048741132,13.909938126802444,13.194685814436525,13.77465686853975,14.505112166050822,14.461195882409811,14.422505136579275,14.424653158057481,15.35316416574642,15.73143272427842,15.431299703661352,14.885337262880057,14.887243652250618,14.072995712514967,13.502735829912126,13.098976975306869,13.629386730957776,14.3255651476793,14.408593623898923,13.661028263159096,14.640974063891917,15.360312558244914,15.599637404084206,14.82993569970131,15.637420506682247,15.661754154600203,16.602768003940582,16.000327080488205,16.98840126534924,17.864638936240226,16.938495029695332,16.992044338956475,17.28180805966258,16.616489674896002,17.565785725135356,17.0390819972381,17.340507365763187,17.017928630579263,17.64624041179195,16.882360231596977,16.042809122242033,16.641689885407686,17.377596746664494,16.51011486724019,16.707292173989117,15.726946503855288,15.33491273690015,15.222272860817611,15.42753393528983,15.63874637754634,16.5555947618559,15.71193926455453,15.208690573927015,15.968278509564698,15.194393030833453,15.58953955071047,16.1770869391039,15.967206129804254,15.596937833819538,14.803251404315233,14.080335330683738,13.321286636870354,13.190676636062562,12.535272790584713,12.766679713036865,12.678124893456697,11.976210263557732,11.13970039319247,11.990892709232867,12.177557418588549,11.188083332497627,10.509189321193844,10.05035232519731,10.53460580483079,10.66687076818198,9.958172641228884,10.446746895089746,10.803835669532418,10.396822856739163,10.680429382249713,10.570059303659946,11.47705805581063,11.540153961163014,12.233079373370856,11.38162068836391,10.940222708042711,11.938976554665715,12.42969220271334,12.20910881087184,12.974668302107602,13.014368061441928,12.45693437429145,13.207879464607686,12.962190908845514,13.528070990461856,13.04090119432658,12.361904835794121,12.369324041064829,12.659827293362468,11.695897411555052,12.404466358013451,13.32071356382221,13.487242535687983,12.549156016670167,13.53904596529901,12.895863492973149,12.019428873434663,11.71331235487014,11.473993161227554,11.846633471548557,12.174211914185435,12.728321036323905,12.104238768108189,12.01011211797595,11.712231697048992,11.029267769306898,10.06842893268913,9.489708293695003,9.702411215286702,9.723061924800277,9.041840788442641,9.94891422521323,10.782577833160758,10.06146955350414,10.236241077072918,11.07055015861988,11.409994047600776,10.444360276684165,10.740936948917806,11.157497729640454,10.941054269205779,11.234718232881278,11.442897018045187,12.027216860558838,11.862015389837325,12.391360020730644,12.855024547316134,13.61988706421107,14.049369566142559,15.046149329748005,14.112617350649089,13.956655383110046,14.729956577531993,13.765658900607377,12.900747823528945,12.335065899416804,13.216853893361986,14.106358596589416,14.853691475465894,14.263424029108137,13.570215346291661,12.91245217481628,13.828115729615092,13.428574164863676,13.202621046919376,14.004674101248384,14.267076338641346,14.794630878604949,14.146512161474675,14.600703802425414,14.6243159272708,15.608220147434622,15.937148112803698,15.216205498203635,15.488791727926582,15.694590656086802,15.576286973897368,14.696688825730234,14.028303017374128,14.692110414151102,14.57434279890731,15.144585381262004,15.53237576270476,15.594260329380631,14.780192712787539,14.309024288319051,15.127145190257579,15.817785881459713,16.381310909055173,16.997090260498226,17.90347437141463,17.026430158875883,16.819736390840262,17.68314707931131,17.32359513361007,16.49634902877733,15.967949466779828,16.2517302040942,15.4556376459077,15.574865601956844,15.135892777703702,16.073174437507987,15.883200529962778,15.644858674146235,15.212853523436934,15.395082751754671,15.485217722132802,14.769272132776678,15.472689031623304,14.491380493622273,14.709573136176914,14.68783932365477,15.045961609575897,14.432514055166394,15.004999758675694,15.09528347151354,14.247962265275419,13.610384069383144,12.913333437871188,12.606822645291686,12.603613328654319,12.77891864394769,12.442335832398385,12.24751229165122,11.35025231866166,11.006209583487362,11.876333218999207,11.182379580102861,12.177555777598172,12.811222766526043,13.47863441798836,12.54819782730192,13.53153572510928,14.450814864598215,15.008810189086944,15.57723550312221,15.083790848962963,15.76154123712331,15.846792269963771,16.61689776647836,16.265183228533715,15.442355234641582,15.331376824527979,16.294570385478437,16.81829960551113,17.31318940781057,17.01400303002447,17.349384712520987,16.798903612419963,15.841009599622339,15.60785471368581,15.756029200740159,15.838051502592862,16.595853241626173,16.78115917928517,17.529159954749048,17.19544256152585,16.8628221466206,17.725667583290488,18.32778067002073,18.27262600651011,17.94158489909023,18.813082496635616,19.128790822345763,19.283661962021142,18.722659370861948,18.513885694090277,17.74126369925216,17.77941235154867,17.904767186380923,17.771722509060055,17.137123594991863,17.774613155517727,17.180834349710494,17.04540385538712,16.791693147737533,16.778645707760006,17.5653907652013,17.338287603575736,17.99118308071047,17.592018894385546,17.064113973174244,16.640698288101703,17.1319527849555,17.91192363575101,18.05444389488548,19.03893089760095,19.563595197163522,19.19318130426109,19.75462618796155,19.64355439459905,20.01243962580338,19.200746930669993,20.043872023001313,19.3426819476299,18.938069022260606,19.73122074827552,19.82775402441621,20.074045409914106,20.568057812284678,20.672597795259207,21.573911444284022,22.270697369240224,22.260320947039872,23.168698323424906,23.741603991948068,23.99532191688195,24.834148028865457,25.151646507438272,24.496419014874846,25.011210292112082,25.963525644503534,25.563174896873534,26.445715986192226,25.796684187371284,26.3959051319398,27.357660143636167,27.688442644197494,28.11014221701771,27.77229665685445,27.21767593920231,27.951782955788076,28.868523930199444,27.895650130696595,27.176208045333624,27.34638151107356,26.761419927701354,26.250772540457547,26.462890168186277,26.03736883495003,27.007021927274764,26.99131370196119,26.829916714224964,25.85199341829866,25.90428514359519,25.350277320947498,26.16039961995557,26.88641142612323,26.51966188242659,26.669605110771954,27.00189318927005,26.41287169791758,26.363178084604442,25.915052143856883,25.281744866166264,26.256002770736814,26.04591915383935,25.592790314927697,25.993477606680244,25.446927684359252,25.271257726475596,24.673218342941254,25.326938222628087,24.77771165687591,24.43520289612934,23.659602988976985,23.15783332241699,23.68903678888455,22.91479995660484,22.81745309382677,23.14640530338511,22.83789067529142,23.126541883219033,24.100776216946542,24.26165330223739,23.45566820912063,22.908209713641554,23.7535096607171,24.158170571550727,23.21522641554475,23.574745343998075,23.32216521864757,22.87986677652225,22.2033704216592,22.390771344769746,21.44013439398259,21.739830436650664,21.617428483907133,22.210405422840267,21.61025082319975,22.12552823452279,22.707974524237216,23.308285411447287,23.67602874385193,23.58780052047223,23.655429397244006,24.21524551510811,24.570720909163356,24.27425822429359,24.73014487931505,24.423826687037945,24.48225081944838,23.503730123862624,23.510023621842265,23.015772202052176,23.696600281633437,24.29384687356651,24.061287061776966,23.806799460668117,24.701956188306212,24.789721919223666,24.114109927322716,24.879838464781642,25.307283946312964,25.954701703507453,26.81855975696817,26.830666252877563,26.328067742753774,26.632514118216932,26.44599121483043,26.684399685822427,26.02484287088737,26.207039683591574,25.589699315372854,25.799012573435903,25.259383838623762,24.94869040278718,25.05735141551122,25.907194326166064,25.088277500588447,24.64938955474645,24.26542011415586,25.15860578417778,25.246167636476457,25.59991272818297,24.840970574412495,25.633508031256497,25.65248022833839,24.80996503867209,24.85669275606051,25.746600112412125,25.922075507231057,25.471308324020356,25.7868926031515,26.524236926808953,25.96136703900993,26.062109992373735,25.945635977666825,25.34390860190615,24.966080150101334,25.392046375200152,26.28355177352205,27.089266683906317,27.85927622206509,27.032670760527253,27.21696213213727,27.636078766547143,26.818328525405377,26.616467415820807,26.345921230968088,26.124567142687738,27.09877462917939,28.058554048184305,27.40214798087254,26.67493647802621,27.498264311347157,27.267883533611894,27.67666485812515,28.252888360992074,27.834074999205768,28.611387219745666,27.9392157131806,27.897468531969935,27.411093164701015,28.3219905202277,29.052309959195554,28.910198220051825,28.812142179813236,29.540991875343025,29.073511448688805,29.261934898328036,28.90763396443799,28.75830885814503,29.102465105243027,29.331169268116355,30.0350109487772,30.394098984077573,31.299885377753526,31.536226294003427,31.009126686491072,30.039450872223824,30.71848364919424,31.640373055823147,30.824631785508245,31.018519381061196,30.077230852097273,29.5811978247948,29.602988904342055,29.923478429671377,30.15842421958223,29.941421096678823,29.319522831123322,29.814378793351352,30.599485787563026],"type":"scatter3d"},{"customdata":[["2024-07-24T05:35:06.010000"],["2024-07-24T05:35:07.010000"],["2024-07-24T05:35:08.010000"],["2024-07-24T05:35:09.010000"],["2024-07-24T05:35:10.010000"],["2024-07-24T05:35:11.010000"],["2024-07-24T05:35:12.010000"],["2024-07-24T05:35:13.010000"],["2024-07-24T05:35:14.010000"],["2024-07-24T05:35:15.010000"],["2024-07-24T05:35:16.010000"],["2024-07-24T05:35:17.010000"],["2024-07-24T05:35:18.010000"],["2024-07-24T05:35:19.010000"],["2024-07-24T05:35:20.010000"],["2024-07-24T05:35:21.010000"],["2024-07-24T05:35:22.010000"],["2024-07-24T05:35:23.010000"],["2024-07-24T05:35:24.010000"],["2024-07-24T05:35:25.010000"],["2024-07-24T05:35:26.010000"],["2024-07-24T05:35:27.010000"],["2024-07-24T05:35:28.010000"],["2024-07-24T05:35:29.010000"],["2024-07-24T05:35:30.010000"],["2024-07-24T05:35:31.010000"],["2024-07-24T05:35:32.010000"],["2024-07-24T05:35:33.010000"],["2024-07-24T05:35:34.010000"],["2024-07-24T05:35:35.010000"],["2024-07-24T05:35:36.010000"],["2024-07-24T05:35:37.010000"],["2024-07-24T05:35:38.010000"],["2024-07-24T05:35:39.010000"],["2024-07-24T05:35:40.010000"],["2024-07-24T05:35:41.010000"],["2024-07-24T05:35:42.010000"],["2024-07-24T05:35:43.010000"],["2024-07-24T05:35:44.010000"],["2024-07-24T05:35:45.010000"],["2024-07-24T05:35:46.010000"],["2024-07-24T05:35:47.010000"],["2024-07-24T05:35:48.010000"],["2024-07-24T05:35:49.010000"],["2024-07-24T05:35:50.010000"],["2024-07-24T05:35:51.010000"],["2024-07-24T05:35:52.010000"],["2024-07-24T05:35:53.010000"],["2024-07-24T05:35:54.010000"],["2024-07-24T05:35:55.010000"],["2024-07-24T05:35:56.010000"],["2024-07-24T05:35:57.010000"],["2024-07-24T05:35:58.010000"],["2024-07-24T05:35:59.010000"],["2024-07-24T05:36:00.010000"],["2024-07-24T05:36:01.010000"],["2024-07-24T05:36:02.010000"],["2024-07-24T05:36:03.010000"],["2024-07-24T05:36:04.010000"],["2024-07-24T05:36:05.010000"],["2024-07-24T05:36:06.010000"],["2024-07-24T05:36:07.010000"],["2024-07-24T05:36:08.010000"],["2024-07-24T05:36:09.010000"],["2024-07-24T05:36:10.010000"],["2024-07-24T05:36:11.010000"],["2024-07-24T05:36:12.010000"],["2024-07-24T05:36:13.010000"],["2024-07-24T05:36:14.010000"],["2024-07-24T05:36:15.010000"],["2024-07-24T05:36:16.010000"],["2024-07-24T05:36:17.010000"],["2024-07-24T05:36:18.010000"],["2024-07-24T05:36:19.010000"],["2024-07-24T05:36:20.010000"],["2024-07-24T05:36:21.010000"],["2024-07-24T05:36:22.010000"],["2024-07-24T05:36:23.010000"],["2024-07-24T05:36:24.010000"],["2024-07-24T05:36:25.010000"],["2024-07-24T05:36:26.010000"],["2024-07-24T05:36:27.010000"],["2024-07-24T05:36:28.010000"],["2024-07-24T05:36:29.010000"],["2024-07-24T05:36:30.010000"],["2024-07-24T05:36:31.010000"],["2024-07-24T05:36:32.010000"],["2024-07-24T05:36:33.010000"],["2024-07-24T05:36:34.010000"],["2024-07-24T05:36:35.010000"],["2024-07-24T05:36:36.010000"],["2024-07-24T05:36:37.010000"],["2024-07-24T05:36:38.010000"],["2024-07-24T05:36:39.010000"],["2024-07-24T05:36:40.010000"],["2024-07-24T05:36:41.010000"],["2024-07-24T05:36:42.010000"],["2024-07-24T05:36:43.010000"],["2024-07-24T05:36:44.010000"],["2024-07-24T05:36:45.010000"],["2024-07-24T05:36:46.010000"],["2024-07-24T05:36:47.010000"],["2024-07-24T05:36:48.010000"],["2024-07-24T05:36:49.010000"],["2024-07-24T05:36:50.010000"],["2024-07-24T05:36:51.010000"],["2024-07-24T05:36:52.010000"],["2024-07-24T05:36:53.010000"],["2024-07-24T05:36:54.010000"],["2024-07-24T05:36:55.010000"],["2024-07-24T05:36:56.010000"],["2024-07-24T05:36:57.010000"],["2024-07-24T05:36:58.010000"],["2024-07-24T05:36:59.010000"],["2024-07-24T05:37:00.010000"],["2024-07-24T05:37:01.010000"],["2024-07-24T05:37:02.010000"],["2024-07-24T05:37:03.010000"],["2024-07-24T05:37:04.010000"],["2024-07-24T05:37:05.010000"],["2024-07-24T05:37:06.010000"],["2024-07-24T05:37:07.010000"],["2024-07-24T05:37:08.010000"],["2024-07-24T05:37:09.010000"],["2024-07-24T05:37:10.010000"],["2024-07-24T05:37:11.010000"],["2024-07-24T05:37:12.010000"],["2024-07-24T05:37:13.010000"],["2024-07-24T05:37:14.010000"],["2024-07-24T05:37:15.010000"],["2024-07-24T05:37:16.010000"],["2024-07-24T05:37:17.010000"],["2024-07-24T05:37:18.010000"],["2024-07-24T05:37:19.010000"],["2024-07-24T05:37:20.010000"],["2024-07-24T05:37:21.010000"],["2024-07-24T05:37:22.010000"],["2024-07-24T05:37:23.010000"],["2024-07-24T05:37:24.010000"],["2024-07-24T05:37:25.010000"],["2024-07-24T05:37:26.010000"],["2024-07-24T05:37:27.010000"],["2024-07-24T05:37:28.010000"],["2024-07-24T05:37:29.010000"],["2024-07-24T05:37:30.010000"],["2024-07-24T05:37:31.010000"],["2024-07-24T05:37:32.010000"],["2024-07-24T05:37:33.010000"],["2024-07-24T05:37:34.010000"],["2024-07-24T05:37:35.010000"],["2024-07-24T05:37:36.010000"],["2024-07-24T05:37:37.010000"],["2024-07-24T05:37:38.010000"],["2024-07-24T05:37:39.010000"],["2024-07-24T05:37:40.010000"],["2024-07-24T05:37:41.010000"],["2024-07-24T05:37:42.010000"],["2024-07-24T05:37:43.010000"],["2024-07-24T05:37:44.010000"],["2024-07-24T05:37:45.010000"],["2024-07-24T05:37:46.010000"],["2024-07-24T05:37:47.010000"],["2024-07-24T05:37:48.010000"],["2024-07-24T05:37:49.010000"],["2024-07-24T05:37:50.010000"],["2024-07-24T05:37:51.010000"],["2024-07-24T05:37:52.010000"],["2024-07-24T05:37:53.010000"],["2024-07-24T05:37:54.010000"],["2024-07-24T05:37:55.010000"],["2024-07-24T05:37:56.010000"],["2024-07-24T05:37:57.010000"],["2024-07-24T05:37:58.010000"],["2024-07-24T05:37:59.010000"],["2024-07-24T05:38:00.010000"],["2024-07-24T05:38:01.010000"],["2024-07-24T05:38:02.010000"],["2024-07-24T05:38:03.010000"],["2024-07-24T05:38:04.010000"],["2024-07-24T05:38:05.010000"],["2024-07-24T05:38:06.010000"],["2024-07-24T05:38:07.010000"],["2024-07-24T05:38:08.010000"],["2024-07-24T05:38:09.010000"],["2024-07-24T05:38:10.010000"],["2024-07-24T05:38:11.010000"],["2024-07-24T05:38:12.010000"],["2024-07-24T05:38:13.010000"],["2024-07-24T05:38:14.010000"],["2024-07-24T05:38:15.010000"],["2024-07-24T05:38:16.010000"],["2024-07-24T05:38:17.010000"],["2024-07-24T05:38:18.010000"],["2024-07-24T05:38:19.010000"],["2024-07-24T05:38:20.010000"],["2024-07-24T05:38:21.010000"],["2024-07-24T05:38:22.010000"],["2024-07-24T05:38:23.010000"],["2024-07-24T05:38:24.010000"],["2024-07-24T05:38:25.010000"],["2024-07-24T05:38:26.010000"],["2024-07-24T05:38:27.010000"],["2024-07-24T05:38:28.010000"],["2024-07-24T05:38:29.010000"],["2024-07-24T05:38:30.010000"],["2024-07-24T05:38:31.010000"],["2024-07-24T05:38:32.010000"],["2024-07-24T05:38:33.010000"],["2024-07-24T05:38:34.010000"],["2024-07-24T05:38:35.010000"],["2024-07-24T05:38:36.010000"],["2024-07-24T05:38:37.010000"],["2024-07-24T05:38:38.010000"],["2024-07-24T05:38:39.010000"],["2024-07-24T05:38:40.010000"],["2024-07-24T05:38:41.010000"],["2024-07-24T05:38:42.010000"],["2024-07-24T05:38:43.010000"],["2024-07-24T05:38:44.010000"],["2024-07-24T05:38:45.010000"],["2024-07-24T05:38:46.010000"],["2024-07-24T05:38:47.010000"],["2024-07-24T05:38:48.010000"],["2024-07-24T05:38:49.010000"],["2024-07-24T05:38:50.010000"],["2024-07-24T05:38:51.010000"],["2024-07-24T05:38:52.010000"],["2024-07-24T05:38:53.010000"],["2024-07-24T05:38:54.010000"],["2024-07-24T05:38:55.010000"],["2024-07-24T05:38:56.010000"],["2024-07-24T05:38:57.010000"],["2024-07-24T05:38:58.010000"],["2024-07-24T05:38:59.010000"],["2024-07-24T05:39:00.010000"],["2024-07-24T05:39:01.010000"],["2024-07-24T05:39:02.010000"],["2024-07-24T05:39:03.010000"],["2024-07-24T05:39:04.010000"],["2024-07-24T05:39:05.010000"],["2024-07-24T05:39:06.010000"],["2024-07-24T05:39:07.010000"],["2024-07-24T05:39:08.010000"],["2024-07-24T05:39:09.010000"],["2024-07-24T05:39:10.010000"],["2024-07-24T05:39:11.010000"],["2024-07-24T05:39:12.010000"],["2024-07-24T05:39:13.010000"],["2024-07-24T05:39:14.010000"],["2024-07-24T05:39:15.010000"],["2024-07-24T05:39:16.010000"],["2024-07-24T05:39:17.010000"],["2024-07-24T05:39:18.010000"],["2024-07-24T05:39:19.010000"],["2024-07-24T05:39:20.010000"],["2024-07-24T05:39:21.010000"],["2024-07-24T05:39:22.010000"],["2024-07-24T05:39:23.010000"],["2024-07-24T05:39:24.010000"],["2024-07-24T05:39:25.010000"],["2024-07-24T05:39:26.010000"],["2024-07-24T05:39:27.010000"],["2024-07-24T05:39:28.010000"],["2024-07-24T05:39:29.010000"],["2024-07-24T05:39:30.010000"],["2024-07-24T05:39:31.010000"],["2024-07-24T05:39:32.010000"],["2024-07-24T05:39:33.010000"],["2024-07-24T05:39:34.010000"],["2024-07-24T05:39:35.010000"],["2024-07-24T05:39:36.010000"],["2024-07-24T05:39:37.010000"],["2024-07-24T05:39:38.010000"],["2024-07-24T05:39:39.010000"],["2024-07-24T05:39:40.010000"],["2024-07-24T05:39:41.010000"],["2024-07-24T05:39:42.010000"],["2024-07-24T05:39:43.010000"],["2024-07-24T05:39:44.010000"],["2024-07-24T05:39:45.010000"],["2024-07-24T05:39:46.010000"],["2024-07-24T05:39:47.010000"],["2024-07-24T05:39:48.010000"],["2024-07-24T05:39:49.010000"],["2024-07-24T05:39:50.010000"],["2024-07-24T05:39:51.010000"],["2024-07-24T05:39:52.010000"],["2024-07-24T05:39:53.010000"],["2024-07-24T05:39:54.010000"],["2024-07-24T05:39:55.010000"],["2024-07-24T05:39:56.010000"],["2024-07-24T05:39:57.010000"],["2024-07-24T05:39:58.010000"],["2024-07-24T05:39:59.010000"],["2024-07-24T05:40:00.010000"],["2024-07-24T05:40:01.010000"],["2024-07-24T05:40:02.010000"],["2024-07-24T05:40:03.010000"],["2024-07-24T05:40:04.010000"],["2024-07-24T05:40:05.010000"],["2024-07-24T05:40:06.010000"],["2024-07-24T05:40:07.010000"],["2024-07-24T05:40:08.010000"],["2024-07-24T05:40:09.010000"],["2024-07-24T05:40:10.010000"],["2024-07-24T05:40:11.010000"],["2024-07-24T05:40:12.010000"],["2024-07-24T05:40:13.010000"],["2024-07-24T05:40:14.010000"],["2024-07-24T05:40:15.010000"],["2024-07-24T05:40:16.010000"],["2024-07-24T05:40:17.010000"],["2024-07-24T05:40:18.010000"],["2024-07-24T05:40:19.010000"],["2024-07-24T05:40:20.010000"],["2024-07-24T05:40:21.010000"],["2024-07-24T05:40:22.010000"],["2024-07-24T05:40:23.010000"],["2024-07-24T05:40:24.010000"],["2024-07-24T05:40:25.010000"],["2024-07-24T05:40:26.010000"],["2024-07-24T05:40:27.010000"],["2024-07-24T05:40:28.010000"],["2024-07-24T05:40:29.010000"],["2024-07-24T05:40:30.010000"],["2024-07-24T05:40:31.010000"],["2024-07-24T05:40:32.010000"],["2024-07-24T05:40:33.010000"],["2024-07-24T05:40:34.010000"],["2024-07-24T05:40:35.010000"],["2024-07-24T05:40:36.010000"],["2024-07-24T05:40:37.010000"],["2024-07-24T05:40:38.010000"],["2024-07-24T05:40:39.010000"],["2024-07-24T05:40:40.010000"],["2024-07-24T05:40:41.010000"],["2024-07-24T05:40:42.010000"],["2024-07-24T05:40:43.010000"],["2024-07-24T05:40:44.010000"],["2024-07-24T05:40:45.010000"],["2024-07-24T05:40:46.010000"],["2024-07-24T05:40:47.010000"],["2024-07-24T05:40:48.010000"],["2024-07-24T05:40:49.010000"],["2024-07-24T05:40:50.010000"],["2024-07-24T05:40:51.010000"],["2024-07-24T05:40:52.010000"],["2024-07-24T05:40:53.010000"],["2024-07-24T05:40:54.010000"],["2024-07-24T05:40:55.010000"],["2024-07-24T05:40:56.010000"],["2024-07-24T05:40:57.010000"],["2024-07-24T05:40:58.010000"],["2024-07-24T05:40:59.010000"],["2024-07-24T05:41:00.010000"],["2024-07-24T05:41:01.010000"],["2024-07-24T05:41:02.010000"],["2024-07-24T05:41:03.010000"],["2024-07-24T05:41:04.010000"],["2024-07-24T05:41:05.010000"],["2024-07-24T05:41:06.010000"],["2024-07-24T05:41:07.010000"],["2024-07-24T05:41:08.010000"],["2024-07-24T05:41:09.010000"],["2024-07-24T05:41:10.010000"],["2024-07-24T05:41:11.010000"],["2024-07-24T05:41:12.010000"],["2024-07-24T05:41:13.010000"],["2024-07-24T05:41:14.010000"],["2024-07-24T05:41:15.010000"],["2024-07-24T05:41:16.010000"],["2024-07-24T05:41:17.010000"],["2024-07-24T05:41:18.010000"],["2024-07-24T05:41:19.010000"],["2024-07-24T05:41:20.010000"],["2024-07-24T05:41:21.010000"],["2024-07-24T05:41:22.010000"],["2024-07-24T05:41:23.010000"],["2024-07-24T05:41:24.010000"],["2024-07-24T05:41:25.010000"],["2024-07-24T05:41:26.010000"],["2024-07-24T05:41:27.010000"],["2024-07-24T05:41:28.010000"],["2024-07-24T05:41:29.010000"],["2024-07-24T05:41:30.010000"],["2024-07-24T05:41:31.010000"],["2024-07-24T05:41:32.010000"],["2024-07-24T05:41:33.010000"],["2024-07-24T05:41:34.010000"],["2024-07-24T05:41:35.010000"],["2024-07-24T05:41:36.010000"],["2024-07-24T05:41:37.010000"],["2024-07-24T05:41:38.010000"],["2024-07-24T05:41:39.010000"],["2024-07-24T05:41:40.010000"],["2024-07-24T05:41:41.010000"],["2024-07-24T05:41:42.010000"],["2024-07-24T05:41:43.010000"],["2024-07-24T05:41:44.010000"],["2024-07-24T05:41:45.010000"],["2024-07-24T05:41:46.010000"],["2024-07-24T05:41:47.010000"],["2024-07-24T05:41:48.010000"],["2024-07-24T05:41:49.010000"],["2024-07-24T05:41:50.010000"],["2024-07-24T05:41:51.010000"],["2024-07-24T05:41:52.010000"],["2024-07-24T05:41:53.010000"],["2024-07-24T05:41:54.010000"],["2024-07-24T05:41:55.010000"],["2024-07-24T05:41:56.010000"],["2024-07-24T05:41:57.010000"],["2024-07-24T05:41:58.010000"],["2024-07-24T05:41:59.010000"],["2024-07-24T05:42:00.010000"],["2024-07-24T05:42:01.010000"],["2024-07-24T05:42:02.010000"],["2024-07-24T05:42:03.010000"],["2024-07-24T05:42:04.010000"],["2024-07-24T05:42:05.010000"],["2024-07-24T05:42:06.010000"],["2024-07-24T05:42:07.010000"],["2024-07-24T05:42:08.010000"],["2024-07-24T05:42:09.010000"],["2024-07-24T05:42:10.010000"],["2024-07-24T05:42:11.010000"],["2024-07-24T05:42:12.010000"],["2024-07-24T05:42:13.010000"],["2024-07-24T05:42:14.010000"],["2024-07-24T05:42:15.010000"],["2024-07-24T05:42:16.010000"],["2024-07-24T05:42:17.010000"],["2024-07-24T05:42:18.010000"],["2024-07-24T05:42:19.010000"],["2024-07-24T05:42:20.010000"],["2024-07-24T05:42:21.010000"],["2024-07-24T05:42:22.010000"],["2024-07-24T05:42:23.010000"],["2024-07-24T05:42:24.010000"],["2024-07-24T05:42:25.010000"],["2024-07-24T05:42:26.010000"],["2024-07-24T05:42:27.010000"],["2024-07-24T05:42:28.010000"],["2024-07-24T05:42:29.010000"],["2024-07-24T05:42:30.010000"],["2024-07-24T05:42:31.010000"],["2024-07-24T05:42:32.010000"],["2024-07-24T05:42:33.010000"],["2024-07-24T05:42:34.010000"],["2024-07-24T05:42:35.010000"],["2024-07-24T05:42:36.010000"],["2024-07-24T05:42:37.010000"],["2024-07-24T05:42:38.010000"],["2024-07-24T05:42:39.010000"],["2024-07-24T05:42:40.010000"],["2024-07-24T05:42:41.010000"],["2024-07-24T05:42:42.010000"],["2024-07-24T05:42:43.010000"],["2024-07-24T05:42:44.010000"],["2024-07-24T05:42:45.010000"],["2024-07-24T05:42:46.010000"],["2024-07-24T05:42:47.010000"],["2024-07-24T05:42:48.010000"],["2024-07-24T05:42:49.010000"],["2024-07-24T05:42:50.010000"],["2024-07-24T05:42:51.010000"],["2024-07-24T05:42:52.010000"],["2024-07-24T05:42:53.010000"],["2024-07-24T05:42:54.010000"],["2024-07-24T05:42:55.010000"],["2024-07-24T05:42:56.010000"],["2024-07-24T05:42:57.010000"],["2024-07-24T05:42:58.010000"],["2024-07-24T05:42:59.010000"],["2024-07-24T05:43:00.010000"],["2024-07-24T05:43:01.010000"],["2024-07-24T05:43:02.010000"],["2024-07-24T05:43:03.010000"],["2024-07-24T05:43:04.010000"],["2024-07-24T05:43:05.010000"],["2024-07-24T05:43:06.010000"],["2024-07-24T05:43:07.010000"],["2024-07-24T05:43:08.010000"],["2024-07-24T05:43:09.010000"],["2024-07-24T05:43:10.010000"],["2024-07-24T05:43:11.010000"],["2024-07-24T05:43:12.010000"],["2024-07-24T05:43:13.010000"],["2024-07-24T05:43:14.010000"],["2024-07-24T05:43:15.010000"],["2024-07-24T05:43:16.010000"],["2024-07-24T05:43:17.010000"],["2024-07-24T05:43:18.010000"],["2024-07-24T05:43:19.010000"],["2024-07-24T05:43:20.010000"],["2024-07-24T05:43:21.010000"],["2024-07-24T05:43:22.010000"],["2024-07-24T05:43:23.010000"],["2024-07-24T05:43:24.010000"],["2024-07-24T05:43:25.010000"],["2024-07-24T05:43:26.010000"],["2024-07-24T05:43:27.010000"],["2024-07-24T05:43:28.010000"],["2024-07-24T05:43:29.010000"],["2024-07-24T05:43:30.010000"],["2024-07-24T05:43:31.010000"],["2024-07-24T05:43:32.010000"],["2024-07-24T05:43:33.010000"],["2024-07-24T05:43:34.010000"],["2024-07-24T05:43:35.010000"],["2024-07-24T05:43:36.010000"],["2024-07-24T05:43:37.010000"],["2024-07-24T05:43:38.010000"],["2024-07-24T05:43:39.010000"],["2024-07-24T05:43:40.010000"],["2024-07-24T05:43:41.010000"],["2024-07-24T05:43:42.010000"],["2024-07-24T05:43:43.010000"],["2024-07-24T05:43:44.010000"],["2024-07-24T05:43:45.010000"],["2024-07-24T05:43:46.010000"],["2024-07-24T05:43:47.010000"],["2024-07-24T05:43:48.010000"],["2024-07-24T05:43:49.010000"],["2024-07-24T05:43:50.010000"],["2024-07-24T05:43:51.010000"],["2024-07-24T05:43:52.010000"],["2024-07-24T05:43:53.010000"],["2024-07-24T05:43:54.010000"],["2024-07-24T05:43:55.010000"],["2024-07-24T05:43:56.010000"],["2024-07-24T05:43:57.010000"],["2024-07-24T05:43:58.010000"],["2024-07-24T05:43:59.010000"],["2024-07-24T05:44:00.010000"],["2024-07-24T05:44:01.010000"],["2024-07-24T05:44:02.010000"],["2024-07-24T05:44:03.010000"],["2024-07-24T05:44:04.010000"],["2024-07-24T05:44:05.010000"],["2024-07-24T05:44:06.010000"],["2024-07-24T05:44:07.010000"],["2024-07-24T05:44:08.010000"],["2024-07-24T05:44:09.010000"],["2024-07-24T05:44:10.010000"],["2024-07-24T05:44:11.010000"],["2024-07-24T05:44:12.010000"],["2024-07-24T05:44:13.010000"],["2024-07-24T05:44:14.010000"],["2024-07-24T05:44:15.010000"],["2024-07-24T05:44:16.010000"],["2024-07-24T05:44:17.010000"],["2024-07-24T05:44:18.010000"],["2024-07-24T05:44:19.010000"],["2024-07-24T05:44:20.010000"],["2024-07-24T05:44:21.010000"],["2024-07-24T05:44:22.010000"],["2024-07-24T05:44:23.010000"],["2024-07-24T05:44:24.010000"],["2024-07-24T05:44:25.010000"],["2024-07-24T05:44:26.010000"],["2024-07-24T05:44:27.010000"],["2024-07-24T05:44:28.010000"],["2024-07-24T05:44:29.010000"],["2024-07-24T05:44:30.010000"],["2024-07-24T05:44:31.010000"],["2024-07-24T05:44:32.010000"],["2024-07-24T05:44:33.010000"],["2024-07-24T05:44:34.010000"],["2024-07-24T05:44:35.010000"],["2024-07-24T05:44:36.010000"],["2024-07-24T05:44:37.010000"],["2024-07-24T05:44:38.010000"],["2024-07-24T05:44:39.010000"],["2024-07-24T05:44:40.010000"],["2024-07-24T05:44:41.010000"],["2024-07-24T05:44:42.010000"],["2024-07-24T05:44:43.010000"],["2024-07-24T05:44:44.010000"],["2024-07-24T05:44:45.010000"],["2024-07-24T05:44:46.010000"],["2024-07-24T05:44:47.010000"],["2024-07-24T05:44:48.010000"],["2024-07-24T05:44:49.010000"],["2024-07-24T05:44:50.010000"],["2024-07-24T05:44:51.010000"],["2024-07-24T05:44:52.010000"],["2024-07-24T05:44:53.010000"],["2024-07-24T05:44:54.010000"],["2024-07-24T05:44:55.010000"],["2024-07-24T05:44:56.010000"],["2024-07-24T05:44:57.010000"],["2024-07-24T05:44:58.010000"],["2024-07-24T05:44:59.010000"],["2024-07-24T05:45:00.010000"],["2024-07-24T05:45:01.010000"],["2024-07-24T05:45:02.010000"],["2024-07-24T05:45:03.010000"],["2024-07-24T05:45:04.010000"],["2024-07-24T05:45:05.010000"],["2024-07-24T05:45:06.010000"],["2024-07-24T05:45:07.010000"],["2024-07-24T05:45:08.010000"],["2024-07-24T05:45:09.010000"],["2024-07-24T05:45:10.010000"],["2024-07-24T05:45:11.010000"],["2024-07-24T05:45:12.010000"],["2024-07-24T05:45:13.010000"],["2024-07-24T05:45:14.010000"],["2024-07-24T05:45:15.010000"],["2024-07-24T05:45:16.010000"],["2024-07-24T05:45:17.010000"],["2024-07-24T05:45:18.010000"],["2024-07-24T05:45:19.010000"],["2024-07-24T05:45:20.010000"],["2024-07-24T05:45:21.010000"],["2024-07-24T05:45:22.010000"],["2024-07-24T05:45:23.010000"],["2024-07-24T05:45:24.010000"],["2024-07-24T05:45:25.010000"],["2024-07-24T05:45:26.010000"],["2024-07-24T05:45:27.010000"],["2024-07-24T05:45:28.010000"],["2024-07-24T05:45:29.010000"],["2024-07-24T05:45:30.010000"],["2024-07-24T05:45:31.010000"],["2024-07-24T05:45:32.010000"],["2024-07-24T05:45:33.010000"],["2024-07-24T05:45:34.010000"],["2024-07-24T05:45:35.010000"],["2024-07-24T05:45:36.010000"],["2024-07-24T05:45:37.010000"],["2024-07-24T05:45:38.010000"],["2024-07-24T05:45:39.010000"],["2024-07-24T05:45:40.010000"],["2024-07-24T05:45:41.010000"],["2024-07-24T05:45:42.010000"],["2024-07-24T05:45:43.010000"],["2024-07-24T05:45:44.010000"],["2024-07-24T05:45:45.010000"],["2024-07-24T05:45:46.010000"],["2024-07-24T05:45:47.010000"],["2024-07-24T05:45:48.010000"],["2024-07-24T05:45:49.010000"],["2024-07-24T05:45:50.010000"],["2024-07-24T05:45:51.010000"],["2024-07-24T05:45:52.010000"],["2024-07-24T05:45:53.010000"],["2024-07-24T05:45:54.010000"],["2024-07-24T05:45:55.010000"],["2024-07-24T05:45:56.010000"],["2024-07-24T05:45:57.010000"],["2024-07-24T05:45:58.010000"],["2024-07-24T05:45:59.010000"],["2024-07-24T05:46:00.010000"],["2024-07-24T05:46:01.010000"],["2024-07-24T05:46:02.010000"],["2024-07-24T05:46:03.010000"],["2024-07-24T05:46:04.010000"],["2024-07-24T05:46:05.010000"],["2024-07-24T05:46:06.010000"],["2024-07-24T05:46:07.010000"],["2024-07-24T05:46:08.010000"],["2024-07-24T05:46:09.010000"],["2024-07-24T05:46:10.010000"],["2024-07-24T05:46:11.010000"],["2024-07-24T05:46:12.010000"],["2024-07-24T05:46:13.010000"],["2024-07-24T05:46:14.010000"],["2024-07-24T05:46:15.010000"],["2024-07-24T05:46:16.010000"],["2024-07-24T05:46:17.010000"],["2024-07-24T05:46:18.010000"],["2024-07-24T05:46:19.010000"],["2024-07-24T05:46:20.010000"],["2024-07-24T05:46:21.010000"],["2024-07-24T05:46:22.010000"],["2024-07-24T05:46:23.010000"],["2024-07-24T05:46:24.010000"],["2024-07-24T05:46:25.010000"],["2024-07-24T05:46:26.010000"],["2024-07-24T05:46:27.010000"],["2024-07-24T05:46:28.010000"],["2024-07-24T05:46:29.010000"],["2024-07-24T05:46:30.010000"],["2024-07-24T05:46:31.010000"],["2024-07-24T05:46:32.010000"],["2024-07-24T05:46:33.010000"],["2024-07-24T05:46:34.010000"],["2024-07-24T05:46:35.010000"],["2024-07-24T05:46:36.010000"],["2024-07-24T05:46:37.010000"],["2024-07-24T05:46:38.010000"],["2024-07-24T05:46:39.010000"],["2024-07-24T05:46:40.010000"],["2024-07-24T05:46:41.010000"],["2024-07-24T05:46:42.010000"],["2024-07-24T05:46:43.010000"],["2024-07-24T05:46:44.010000"],["2024-07-24T05:46:45.010000"],["2024-07-24T05:46:46.010000"],["2024-07-24T05:46:47.010000"],["2024-07-24T05:46:48.010000"],["2024-07-24T05:46:49.010000"],["2024-07-24T05:46:50.010000"],["2024-07-24T05:46:51.010000"],["2024-07-24T05:46:52.010000"],["2024-07-24T05:46:53.010000"],["2024-07-24T05:46:54.010000"],["2024-07-24T05:46:55.010000"],["2024-07-24T05:46:56.010000"],["2024-07-24T05:46:57.010000"],["2024-07-24T05:46:58.010000"],["2024-07-24T05:46:59.010000"],["2024-07-24T05:47:00.010000"],["2024-07-24T05:47:01.010000"],["2024-07-24T05:47:02.010000"],["2024-07-24T05:47:03.010000"],["2024-07-24T05:47:04.010000"],["2024-07-24T05:47:05.010000"],["2024-07-24T05:47:06.010000"],["2024-07-24T05:47:07.010000"],["2024-07-24T05:47:08.010000"],["2024-07-24T05:47:09.010000"],["2024-07-24T05:47:10.010000"],["2024-07-24T05:47:11.010000"],["2024-07-24T05:47:12.010000"],["2024-07-24T05:47:13.010000"],["2024-07-24T05:47:14.010000"],["2024-07-24T05:47:15.010000"],["2024-07-24T05:47:16.010000"],["2024-07-24T05:47:17.010000"],["2024-07-24T05:47:18.010000"],["2024-07-24T05:47:19.010000"],["2024-07-24T05:47:20.010000"],["2024-07-24T05:47:21.010000"],["2024-07-24T05:47:22.010000"],["2024-07-24T05:47:23.010000"],["2024-07-24T05:47:24.010000"],["2024-07-24T05:47:25.010000"],["2024-07-24T05:47:26.010000"],["2024-07-24T05:47:27.010000"],["2024-07-24T05:47:28.010000"],["2024-07-24T05:47:29.010000"],["2024-07-24T05:47:30.010000"],["2024-07-24T05:47:31.010000"],["2024-07-24T05:47:32.010000"],["2024-07-24T05:47:33.010000"],["2024-07-24T05:47:34.010000"],["2024-07-24T05:47:35.010000"],["2024-07-24T05:47:36.010000"],["2024-07-24T05:47:37.010000"],["2024-07-24T05:47:38.010000"],["2024-07-24T05:47:39.010000"],["2024-07-24T05:47:40.010000"],["2024-07-24T05:47:41.010000"],["2024-07-24T05:47:42.010000"],["2024-07-24T05:47:43.010000"],["2024-07-24T05:47:44.010000"],["2024-07-24T05:47:45.010000"],["2024-07-24T05:47:46.010000"],["2024-07-24T05:47:47.010000"],["2024-07-24T05:47:48.010000"],["2024-07-24T05:47:49.010000"],["2024-07-24T05:47:50.010000"],["2024-07-24T05:47:51.010000"],["2024-07-24T05:47:52.010000"],["2024-07-24T05:47:53.010000"],["2024-07-24T05:47:54.010000"],["2024-07-24T05:47:55.010000"],["2024-07-24T05:47:56.010000"],["2024-07-24T05:47:57.010000"],["2024-07-24T05:47:58.010000"],["2024-07-24T05:47:59.010000"],["2024-07-24T05:48:00.010000"],["2024-07-24T05:48:01.010000"],["2024-07-24T05:48:02.010000"],["2024-07-24T05:48:03.010000"],["2024-07-24T05:48:04.010000"],["2024-07-24T05:48:05.010000"],["2024-07-24T05:48:06.010000"],["2024-07-24T05:48:07.010000"],["2024-07-24T05:48:08.010000"],["2024-07-24T05:48:09.010000"],["2024-07-24T05:48:10.010000"],["2024-07-24T05:48:11.010000"],["2024-07-24T05:48:12.010000"],["2024-07-24T05:48:13.010000"],["2024-07-24T05:48:14.010000"],["2024-07-24T05:48:15.010000"],["2024-07-24T05:48:16.010000"],["2024-07-24T05:48:17.010000"],["2024-07-24T05:48:18.010000"],["2024-07-24T05:48:19.010000"],["2024-07-24T05:48:20.010000"],["2024-07-24T05:48:21.010000"],["2024-07-24T05:48:22.010000"],["2024-07-24T05:48:23.010000"],["2024-07-24T05:48:24.010000"],["2024-07-24T05:48:25.010000"],["2024-07-24T05:48:26.010000"],["2024-07-24T05:48:27.010000"],["2024-07-24T05:48:28.010000"],["2024-07-24T05:48:29.010000"],["2024-07-24T05:48:30.010000"],["2024-07-24T05:48:31.010000"],["2024-07-24T05:48:32.010000"],["2024-07-24T05:48:33.010000"],["2024-07-24T05:48:34.010000"],["2024-07-24T05:48:35.010000"],["2024-07-24T05:48:36.010000"],["2024-07-24T05:48:37.010000"],["2024-07-24T05:48:38.010000"],["2024-07-24T05:48:39.010000"],["2024-07-24T05:48:40.010000"],["2024-07-24T05:48:41.010000"],["2024-07-24T05:48:42.010000"],["2024-07-24T05:48:43.010000"],["2024-07-24T05:48:44.010000"],["2024-07-24T05:48:45.010000"],["2024-07-24T05:48:46.010000"],["2024-07-24T05:48:47.010000"],["2024-07-24T05:48:48.010000"],["2024-07-24T05:48:49.010000"],["2024-07-24T05:48:50.010000"],["2024-07-24T05:48:51.010000"],["2024-07-24T05:48:52.010000"],["2024-07-24T05:48:53.010000"],["2024-07-24T05:48:54.010000"],["2024-07-24T05:48:55.010000"],["2024-07-24T05:48:56.010000"],["2024-07-24T05:48:57.010000"],["2024-07-24T05:48:58.010000"],["2024-07-24T05:48:59.010000"],["2024-07-24T05:49:00.010000"],["2024-07-24T05:49:01.010000"],["2024-07-24T05:49:02.010000"],["2024-07-24T05:49:03.010000"],["2024-07-24T05:49:04.010000"],["2024-07-24T05:49:05.010000"],["2024-07-24T05:49:06.010000"],["2024-07-24T05:49:07.010000"],["2024-07-24T05:49:08.010000"],["2024-07-24T05:49:09.010000"],["2024-07-24T05:49:10.010000"],["2024-07-24T05:49:11.010000"],["2024-07-24T05:49:12.010000"],["2024-07-24T05:49:13.010000"],["2024-07-24T05:49:14.010000"],["2024-07-24T05:49:15.010000"],["2024-07-24T05:49:16.010000"],["2024-07-24T05:49:17.010000"],["2024-07-24T05:49:18.010000"],["2024-07-24T05:49:19.010000"],["2024-07-24T05:49:20.010000"],["2024-07-24T05:49:21.010000"],["2024-07-24T05:49:22.010000"],["2024-07-24T05:49:23.010000"],["2024-07-24T05:49:24.010000"],["2024-07-24T05:49:25.010000"],["2024-07-24T05:49:26.010000"],["2024-07-24T05:49:27.010000"],["2024-07-24T05:49:28.010000"],["2024-07-24T05:49:29.010000"],["2024-07-24T05:49:30.010000"],["2024-07-24T05:49:31.010000"],["2024-07-24T05:49:32.010000"],["2024-07-24T05:49:33.010000"],["2024-07-24T05:49:34.010000"],["2024-07-24T05:49:35.010000"],["2024-07-24T05:49:36.010000"],["2024-07-24T05:49:37.010000"],["2024-07-24T05:49:38.010000"],["2024-07-24T05:49:39.010000"],["2024-07-24T05:49:40.010000"],["2024-07-24T05:49:41.010000"],["2024-07-24T05:49:42.010000"],["2024-07-24T05:49:43.010000"],["2024-07-24T05:49:44.010000"],["2024-07-24T05:49:45.010000"],["2024-07-24T05:49:46.010000"],["2024-07-24T05:49:47.010000"],["2024-07-24T05:49:48.010000"],["2024-07-24T05:49:49.010000"],["2024-07-24T05:49:50.010000"],["2024-07-24T05:49:51.010000"],["2024-07-24T05:49:52.010000"],["2024-07-24T05:49:53.010000"],["2024-07-24T05:49:54.010000"],["2024-07-24T05:49:55.010000"],["2024-07-24T05:49:56.010000"],["2024-07-24T05:49:57.010000"],["2024-07-24T05:49:58.010000"],["2024-07-24T05:49:59.010000"],["2024-07-24T05:50:00.010000"],["2024-07-24T05:50:01.010000"],["2024-07-24T05:50:02.010000"],["2024-07-24T05:50:03.010000"],["2024-07-24T05:50:04.010000"],["2024-07-24T05:50:05.010000"],["2024-07-24T05:50:06.010000"],["2024-07-24T05:50:07.010000"],["2024-07-24T05:50:08.010000"],["2024-07-24T05:50:09.010000"],["2024-07-24T05:50:10.010000"],["2024-07-24T05:50:11.010000"],["2024-07-24T05:50:12.010000"],["2024-07-24T05:50:13.010000"],["2024-07-24T05:50:14.010000"],["2024-07-24T05:50:15.010000"],["2024-07-24T05:50:16.010000"],["2024-07-24T05:50:17.010000"],["2024-07-24T05:50:18.010000"],["2024-07-24T05:50:19.010000"],["2024-07-24T05:50:20.010000"],["2024-07-24T05:50:21.010000"],["2024-07-24T05:50:22.010000"],["2024-07-24T05:50:23.010000"],["2024-07-24T05:50:24.010000"],["2024-07-24T05:50:25.010000"],["2024-07-24T05:50:26.010000"],["2024-07-24T05:50:27.010000"],["2024-07-24T05:50:28.010000"],["2024-07-24T05:50:29.010000"],["2024-07-24T05:50:30.010000"],["2024-07-24T05:50:31.010000"],["2024-07-24T05:50:32.010000"],["2024-07-24T05:50:33.010000"],["2024-07-24T05:50:34.010000"],["2024-07-24T05:50:35.010000"],["2024-07-24T05:50:36.010000"],["2024-07-24T05:50:37.010000"],["2024-07-24T05:50:38.010000"],["2024-07-24T05:50:39.010000"],["2024-07-24T05:50:40.010000"],["2024-07-24T05:50:41.010000"],["2024-07-24T05:50:42.010000"],["2024-07-24T05:50:43.010000"],["2024-07-24T05:50:44.010000"],["2024-07-24T05:50:45.010000"],["2024-07-24T05:50:46.010000"],["2024-07-24T05:50:47.010000"],["2024-07-24T05:50:48.010000"],["2024-07-24T05:50:49.010000"],["2024-07-24T05:50:50.010000"],["2024-07-24T05:50:51.010000"],["2024-07-24T05:50:52.010000"],["2024-07-24T05:50:53.010000"],["2024-07-24T05:50:54.010000"],["2024-07-24T05:50:55.010000"],["2024-07-24T05:50:56.010000"],["2024-07-24T05:50:57.010000"],["2024-07-24T05:50:58.010000"],["2024-07-24T05:50:59.010000"],["2024-07-24T05:51:00.010000"],["2024-07-24T05:51:01.010000"],["2024-07-24T05:51:02.010000"],["2024-07-24T05:51:03.010000"],["2024-07-24T05:51:04.010000"],["2024-07-24T05:51:05.010000"],["2024-07-24T05:51:06.010000"],["2024-07-24T05:51:07.010000"],["2024-07-24T05:51:08.010000"],["2024-07-24T05:51:09.010000"],["2024-07-24T05:51:10.010000"],["2024-07-24T05:51:11.010000"],["2024-07-24T05:51:12.010000"],["2024-07-24T05:51:13.010000"],["2024-07-24T05:51:14.010000"],["2024-07-24T05:51:15.010000"],["2024-07-24T05:51:16.010000"],["2024-07-24T05:51:17.010000"],["2024-07-24T05:51:18.010000"],["2024-07-24T05:51:19.010000"],["2024-07-24T05:51:20.010000"],["2024-07-24T05:51:21.010000"],["2024-07-24T05:51:22.010000"],["2024-07-24T05:51:23.010000"],["2024-07-24T05:51:24.010000"],["2024-07-24T05:51:25.010000"],["2024-07-24T05:51:26.010000"],["2024-07-24T05:51:27.010000"],["2024-07-24T05:51:28.010000"],["2024-07-24T05:51:29.010000"],["2024-07-24T05:51:30.010000"],["2024-07-24T05:51:31.010000"],["2024-07-24T05:51:32.010000"],["2024-07-24T05:51:33.010000"],["2024-07-24T05:51:34.010000"],["2024-07-24T05:51:35.010000"],["2024-07-24T05:51:36.010000"],["2024-07-24T05:51:37.010000"],["2024-07-24T05:51:38.010000"],["2024-07-24T05:51:39.010000"],["2024-07-24T05:51:40.010000"],["2024-07-24T05:51:41.010000"],["2024-07-24T05:51:42.010000"],["2024-07-24T05:51:43.010000"],["2024-07-24T05:51:44.010000"],["2024-07-24T05:51:45.010000"],["2024-07-24T05:51:46.010000"],["2024-07-24T05:51:47.010000"],["2024-07-24T05:51:48.010000"],["2024-07-24T05:51:49.010000"],["2024-07-24T05:51:50.010000"],["2024-07-24T05:51:51.010000"],["2024-07-24T05:51:52.010000"],["2024-07-24T05:51:53.010000"],["2024-07-24T05:51:54.010000"],["2024-07-24T05:51:55.010000"],["2024-07-24T05:51:56.010000"],["2024-07-24T05:51:57.010000"],["2024-07-24T05:51:58.010000"],["2024-07-24T05:51:59.010000"],["2024-07-24T05:52:00.010000"],["2024-07-24T05:52:01.010000"],["2024-07-24T05:52:02.010000"],["2024-07-24T05:52:03.010000"],["2024-07-24T05:52:04.010000"],["2024-07-24T05:52:05.010000"],["2024-07-24T05:52:06.010000"],["2024-07-24T05:52:07.010000"],["2024-07-24T05:52:08.010000"],["2024-07-24T05:52:09.010000"],["2024-07-24T05:52:10.010000"],["2024-07-24T05:52:11.010000"],["2024-07-24T05:52:12.010000"],["2024-07-24T05:52:13.010000"],["2024-07-24T05:52:14.010000"],["2024-07-24T05:52:15.010000"],["2024-07-24T05:52:16.010000"],["2024-07-24T05:52:17.010000"],["2024-07-24T05:52:18.010000"],["2024-07-24T05:52:19.010000"],["2024-07-24T05:52:20.010000"],["2024-07-24T05:52:21.010000"],["2024-07-24T05:52:22.010000"],["2024-07-24T05:52:23.010000"],["2024-07-24T05:52:24.010000"],["2024-07-24T05:52:25.010000"],["2024-07-24T05:52:26.010000"],["2024-07-24T05:52:27.010000"],["2024-07-24T05:52:28.010000"],["2024-07-24T05:52:29.010000"],["2024-07-24T05:52:30.010000"],["2024-07-24T05:52:31.010000"],["2024-07-24T05:52:32.010000"],["2024-07-24T05:52:33.010000"],["2024-07-24T05:52:34.010000"],["2024-07-24T05:52:35.010000"],["2024-07-24T05:52:36.010000"],["2024-07-24T05:52:37.010000"],["2024-07-24T05:52:38.010000"],["2024-07-24T05:52:39.010000"],["2024-07-24T05:52:40.010000"],["2024-07-24T05:52:41.010000"],["2024-07-24T05:52:42.010000"],["2024-07-24T05:52:43.010000"],["2024-07-24T05:52:44.010000"],["2024-07-24T05:52:45.010000"],["2024-07-24T05:52:46.010000"],["2024-07-24T05:52:47.010000"],["2024-07-24T05:52:48.010000"],["2024-07-24T05:52:49.010000"],["2024-07-24T05:52:50.010000"],["2024-07-24T05:52:51.010000"],["2024-07-24T05:52:52.010000"],["2024-07-24T05:52:53.010000"],["2024-07-24T05:52:54.010000"],["2024-07-24T05:52:55.010000"],["2024-07-24T05:52:56.010000"],["2024-07-24T05:52:57.010000"],["2024-07-24T05:52:58.010000"],["2024-07-24T05:52:59.010000"],["2024-07-24T05:53:00.010000"],["2024-07-24T05:53:01.010000"],["2024-07-24T05:53:02.010000"],["2024-07-24T05:53:03.010000"],["2024-07-24T05:53:04.010000"],["2024-07-24T05:53:05.010000"],["2024-07-24T05:53:06.010000"],["2024-07-24T05:53:07.010000"],["2024-07-24T05:53:08.010000"],["2024-07-24T05:53:09.010000"],["2024-07-24T05:53:10.010000"],["2024-07-24T05:53:11.010000"],["2024-07-24T05:53:12.010000"],["2024-07-24T05:53:13.010000"],["2024-07-24T05:53:14.010000"],["2024-07-24T05:53:15.010000"],["2024-07-24T05:53:16.010000"],["2024-07-24T05:53:17.010000"],["2024-07-24T05:53:18.010000"],["2024-07-24T05:53:19.010000"],["2024-07-24T05:53:20.010000"],["2024-07-24T05:53:21.010000"],["2024-07-24T05:53:22.010000"],["2024-07-24T05:53:23.010000"],["2024-07-24T05:53:24.010000"],["2024-07-24T05:53:25.010000"],["2024-07-24T05:53:26.010000"],["2024-07-24T05:53:27.010000"],["2024-07-24T05:53:28.010000"],["2024-07-24T05:53:29.010000"],["2024-07-24T05:53:30.010000"],["2024-07-24T05:53:31.010000"],["2024-07-24T05:53:32.010000"],["2024-07-24T05:53:33.010000"],["2024-07-24T05:53:34.010000"],["2024-07-24T05:53:35.010000"],["2024-07-24T05:53:36.010000"],["2024-07-24T05:53:37.010000"],["2024-07-24T05:53:38.010000"],["2024-07-24T05:53:39.010000"],["2024-07-24T05:53:40.010000"],["2024-07-24T05:53:41.010000"],["2024-07-24T05:53:42.010000"],["2024-07-24T05:53:43.010000"],["2024-07-24T05:53:44.010000"],["2024-07-24T05:53:45.010000"],["2024-07-24T05:53:46.010000"],["2024-07-24T05:53:47.010000"],["2024-07-24T05:53:48.010000"],["2024-07-24T05:53:49.010000"],["2024-07-24T05:53:50.010000"],["2024-07-24T05:53:51.010000"],["2024-07-24T05:53:52.010000"],["2024-07-24T05:53:53.010000"],["2024-07-24T05:53:54.010000"],["2024-07-24T05:53:55.010000"],["2024-07-24T05:53:56.010000"],["2024-07-24T05:53:57.010000"],["2024-07-24T05:53:58.010000"],["2024-07-24T05:53:59.010000"],["2024-07-24T05:54:00.010000"],["2024-07-24T05:54:01.010000"],["2024-07-24T05:54:02.010000"],["2024-07-24T05:54:03.010000"],["2024-07-24T05:54:04.010000"],["2024-07-24T05:54:05.010000"],["2024-07-24T05:54:06.010000"],["2024-07-24T05:54:07.010000"],["2024-07-24T05:54:08.010000"],["2024-07-24T05:54:09.010000"],["2024-07-24T05:54:10.010000"],["2024-07-24T05:54:11.010000"],["2024-07-24T05:54:12.010000"],["2024-07-24T05:54:13.010000"],["2024-07-24T05:54:14.010000"],["2024-07-24T05:54:15.010000"],["2024-07-24T05:54:16.010000"],["2024-07-24T05:54:17.010000"],["2024-07-24T05:54:18.010000"],["2024-07-24T05:54:19.010000"],["2024-07-24T05:54:20.010000"],["2024-07-24T05:54:21.010000"],["2024-07-24T05:54:22.010000"],["2024-07-24T05:54:23.010000"],["2024-07-24T05:54:24.010000"],["2024-07-24T05:54:25.010000"],["2024-07-24T05:54:26.010000"],["2024-07-24T05:54:27.010000"],["2024-07-24T05:54:28.010000"],["2024-07-24T05:54:29.010000"],["2024-07-24T05:54:30.010000"],["2024-07-24T05:54:31.010000"],["2024-07-24T05:54:32.010000"],["2024-07-24T05:54:33.010000"],["2024-07-24T05:54:34.010000"],["2024-07-24T05:54:35.010000"],["2024-07-24T05:54:36.010000"],["2024-07-24T05:54:37.010000"],["2024-07-24T05:54:38.010000"],["2024-07-24T05:54:39.010000"],["2024-07-24T05:54:40.010000"],["2024-07-24T05:54:41.010000"],["2024-07-24T05:54:42.010000"],["2024-07-24T05:54:43.010000"],["2024-07-24T05:54:44.010000"],["2024-07-24T05:54:45.010000"],["2024-07-24T05:54:46.010000"],["2024-07-24T05:54:47.010000"],["2024-07-24T05:54:48.010000"],["2024-07-24T05:54:49.010000"],["2024-07-24T05:54:50.010000"],["2024-07-24T05:54:51.010000"],["2024-07-24T05:54:52.010000"],["2024-07-24T05:54:53.010000"],["2024-07-24T05:54:54.010000"],["2024-07-24T05:54:55.010000"],["2024-07-24T05:54:56.010000"],["2024-07-24T05:54:57.010000"],["2024-07-24T05:54:58.010000"],["2024-07-24T05:54:59.010000"],["2024-07-24T05:55:00.010000"],["2024-07-24T05:55:01.010000"],["2024-07-24T05:55:02.010000"],["2024-07-24T05:55:03.010000"],["2024-07-24T05:55:04.010000"],["2024-07-24T05:55:05.010000"],["2024-07-24T05:55:06.010000"],["2024-07-24T05:55:07.010000"],["2024-07-24T05:55:08.010000"],["2024-07-24T05:55:09.010000"],["2024-07-24T05:55:10.010000"],["2024-07-24T05:55:11.010000"],["2024-07-24T05:55:12.010000"],["2024-07-24T05:55:13.010000"],["2024-07-24T05:55:14.010000"],["2024-07-24T05:55:15.010000"],["2024-07-24T05:55:16.010000"],["2024-07-24T05:55:17.010000"],["2024-07-24T05:55:18.010000"],["2024-07-24T05:55:19.010000"],["2024-07-24T05:55:20.010000"],["2024-07-24T05:55:21.010000"],["2024-07-24T05:55:22.010000"],["2024-07-24T05:55:23.010000"],["2024-07-24T05:55:24.010000"],["2024-07-24T05:55:25.010000"],["2024-07-24T05:55:26.010000"],["2024-07-24T05:55:27.010000"],["2024-07-24T05:55:28.010000"],["2024-07-24T05:55:29.010000"],["2024-07-24T05:55:30.010000"],["2024-07-24T05:55:31.010000"],["2024-07-24T05:55:32.010000"],["2024-07-24T05:55:33.010000"],["2024-07-24T05:55:34.010000"],["2024-07-24T05:55:35.010000"],["2024-07-24T05:55:36.010000"],["2024-07-24T05:55:37.010000"],["2024-07-24T05:55:38.010000"],["2024-07-24T05:55:39.010000"],["2024-07-24T05:55:40.010000"],["2024-07-24T05:55:41.010000"],["2024-07-24T05:55:42.010000"],["2024-07-24T05:55:43.010000"],["2024-07-24T05:55:44.010000"],["2024-07-24T05:55:45.010000"],["2024-07-24T05:55:46.010000"],["2024-07-24T05:55:47.010000"],["2024-07-24T05:55:48.010000"],["2024-07-24T05:55:49.010000"],["2024-07-24T05:55:50.010000"],["2024-07-24T05:55:51.010000"],["2024-07-24T05:55:52.010000"],["2024-07-24T05:55:53.010000"],["2024-07-24T05:55:54.010000"],["2024-07-24T05:55:55.010000"],["2024-07-24T05:55:56.010000"],["2024-07-24T05:55:57.010000"],["2024-07-24T05:55:58.010000"],["2024-07-24T05:55:59.010000"],["2024-07-24T05:56:00.010000"],["2024-07-24T05:56:01.010000"],["2024-07-24T05:56:02.010000"],["2024-07-24T05:56:03.010000"],["2024-07-24T05:56:04.010000"],["2024-07-24T05:56:05.010000"],["2024-07-24T05:56:06.010000"],["2024-07-24T05:56:07.010000"],["2024-07-24T05:56:08.010000"],["2024-07-24T05:56:09.010000"],["2024-07-24T05:56:10.010000"],["2024-07-24T05:56:11.010000"],["2024-07-24T05:56:12.010000"],["2024-07-24T05:56:13.010000"],["2024-07-24T05:56:14.010000"],["2024-07-24T05:56:15.010000"],["2024-07-24T05:56:16.010000"],["2024-07-24T05:56:17.010000"],["2024-07-24T05:56:18.010000"],["2024-07-24T05:56:19.010000"],["2024-07-24T05:56:20.010000"],["2024-07-24T05:56:21.010000"],["2024-07-24T05:56:22.010000"],["2024-07-24T05:56:23.010000"],["2024-07-24T05:56:24.010000"],["2024-07-24T05:56:25.010000"],["2024-07-24T05:56:26.010000"],["2024-07-24T05:56:27.010000"],["2024-07-24T05:56:28.010000"],["2024-07-24T05:56:29.010000"],["2024-07-24T05:56:30.010000"],["2024-07-24T05:56:31.010000"],["2024-07-24T05:56:32.010000"],["2024-07-24T05:56:33.010000"],["2024-07-24T05:56:34.010000"],["2024-07-24T05:56:35.010000"],["2024-07-24T05:56:36.010000"],["2024-07-24T05:56:37.010000"],["2024-07-24T05:56:38.010000"],["2024-07-24T05:56:39.010000"],["2024-07-24T05:56:40.010000"],["2024-07-24T05:56:41.010000"],["2024-07-24T05:56:42.010000"],["2024-07-24T05:56:43.010000"],["2024-07-24T05:56:44.010000"],["2024-07-24T05:56:45.010000"],["2024-07-24T05:56:46.010000"],["2024-07-24T05:56:47.010000"],["2024-07-24T05:56:48.010000"],["2024-07-24T05:56:49.010000"],["2024-07-24T05:56:50.010000"],["2024-07-24T05:56:51.010000"],["2024-07-24T05:56:52.010000"],["2024-07-24T05:56:53.010000"],["2024-07-24T05:56:54.010000"],["2024-07-24T05:56:55.010000"],["2024-07-24T05:56:56.010000"],["2024-07-24T05:56:57.010000"],["2024-07-24T05:56:58.010000"],["2024-07-24T05:56:59.010000"],["2024-07-24T05:57:00.010000"],["2024-07-24T05:57:01.010000"],["2024-07-24T05:57:02.010000"],["2024-07-24T05:57:03.010000"],["2024-07-24T05:57:04.010000"],["2024-07-24T05:57:05.010000"],["2024-07-24T05:57:06.010000"],["2024-07-24T05:57:07.010000"],["2024-07-24T05:57:08.010000"],["2024-07-24T05:57:09.010000"],["2024-07-24T05:57:10.010000"],["2024-07-24T05:57:11.010000"],["2024-07-24T05:57:12.010000"],["2024-07-24T05:57:13.010000"],["2024-07-24T05:57:14.010000"],["2024-07-24T05:57:15.010000"],["2024-07-24T05:57:16.010000"],["2024-07-24T05:57:17.010000"],["2024-07-24T05:57:18.010000"],["2024-07-24T05:57:19.010000"],["2024-07-24T05:57:20.010000"],["2024-07-24T05:57:21.010000"],["2024-07-24T05:57:22.010000"],["2024-07-24T05:57:23.010000"],["2024-07-24T05:57:24.010000"],["2024-07-24T05:57:25.010000"],["2024-07-24T05:57:26.010000"],["2024-07-24T05:57:27.010000"],["2024-07-24T05:57:28.010000"],["2024-07-24T05:57:29.010000"],["2024-07-24T05:57:30.010000"],["2024-07-24T05:57:31.010000"],["2024-07-24T05:57:32.010000"],["2024-07-24T05:57:33.010000"],["2024-07-24T05:57:34.010000"],["2024-07-24T05:57:35.010000"],["2024-07-24T05:57:36.010000"],["2024-07-24T05:57:37.010000"],["2024-07-24T05:57:38.010000"],["2024-07-24T05:57:39.010000"],["2024-07-24T05:57:40.010000"],["2024-07-24T05:57:41.010000"],["2024-07-24T05:57:42.010000"],["2024-07-24T05:57:43.010000"],["2024-07-24T05:57:44.010000"],["2024-07-24T05:57:45.010000"],["2024-07-24T05:57:46.010000"],["2024-07-24T05:57:47.010000"],["2024-07-24T05:57:48.010000"],["2024-07-24T05:57:49.010000"],["2024-07-24T05:57:50.010000"],["2024-07-24T05:57:51.010000"],["2024-07-24T05:57:52.010000"],["2024-07-24T05:57:53.010000"],["2024-07-24T05:57:54.010000"],["2024-07-24T05:57:55.010000"],["2024-07-24T05:57:56.010000"],["2024-07-24T05:57:57.010000"],["2024-07-24T05:57:58.010000"],["2024-07-24T05:57:59.010000"],["2024-07-24T05:58:00.010000"],["2024-07-24T05:58:01.010000"],["2024-07-24T05:58:02.010000"],["2024-07-24T05:58:03.010000"],["2024-07-24T05:58:04.010000"],["2024-07-24T05:58:05.010000"],["2024-07-24T05:58:06.010000"],["2024-07-24T05:58:07.010000"],["2024-07-24T05:58:08.010000"],["2024-07-24T05:58:09.010000"],["2024-07-24T05:58:10.010000"],["2024-07-24T05:58:11.010000"],["2024-07-24T05:58:12.010000"],["2024-07-24T05:58:13.010000"],["2024-07-24T05:58:14.010000"],["2024-07-24T05:58:15.010000"],["2024-07-24T05:58:16.010000"],["2024-07-24T05:58:17.010000"],["2024-07-24T05:58:18.010000"],["2024-07-24T05:58:19.010000"],["2024-07-24T05:58:20.010000"],["2024-07-24T05:58:21.010000"],["2024-07-24T05:58:22.010000"],["2024-07-24T05:58:23.010000"],["2024-07-24T05:58:24.010000"],["2024-07-24T05:58:25.010000"],["2024-07-24T05:58:26.010000"],["2024-07-24T05:58:27.010000"],["2024-07-24T05:58:28.010000"],["2024-07-24T05:58:29.010000"],["2024-07-24T05:58:30.010000"],["2024-07-24T05:58:31.010000"],["2024-07-24T05:58:32.010000"],["2024-07-24T05:58:33.010000"],["2024-07-24T05:58:34.010000"],["2024-07-24T05:58:35.010000"],["2024-07-24T05:58:36.010000"],["2024-07-24T05:58:37.010000"],["2024-07-24T05:58:38.010000"],["2024-07-24T05:58:39.010000"],["2024-07-24T05:58:40.010000"],["2024-07-24T05:58:41.010000"],["2024-07-24T05:58:42.010000"],["2024-07-24T05:58:43.010000"],["2024-07-24T05:58:44.010000"],["2024-07-24T05:58:45.010000"],["2024-07-24T05:58:46.010000"],["2024-07-24T05:58:47.010000"],["2024-07-24T05:58:48.010000"],["2024-07-24T05:58:49.010000"],["2024-07-24T05:58:50.010000"],["2024-07-24T05:58:51.010000"],["2024-07-24T05:58:52.010000"],["2024-07-24T05:58:53.010000"],["2024-07-24T05:58:54.010000"],["2024-07-24T05:58:55.010000"],["2024-07-24T05:58:56.010000"],["2024-07-24T05:58:57.010000"],["2024-07-24T05:58:58.010000"],["2024-07-24T05:58:59.010000"],["2024-07-24T05:59:00.010000"],["2024-07-24T05:59:01.010000"],["2024-07-24T05:59:02.010000"],["2024-07-24T05:59:03.010000"],["2024-07-24T05:59:04.010000"],["2024-07-24T05:59:05.010000"],["2024-07-24T05:59:06.010000"],["2024-07-24T05:59:07.010000"],["2024-07-24T05:59:08.010000"],["2024-07-24T05:59:09.010000"],["2024-07-24T05:59:10.010000"],["2024-07-24T05:59:11.010000"],["2024-07-24T05:59:12.010000"],["2024-07-24T05:59:13.010000"],["2024-07-24T05:59:14.010000"],["2024-07-24T05:59:15.010000"],["2024-07-24T05:59:16.010000"],["2024-07-24T05:59:17.010000"],["2024-07-24T05:59:18.010000"],["2024-07-24T05:59:19.010000"],["2024-07-24T05:59:20.010000"],["2024-07-24T05:59:21.010000"],["2024-07-24T05:59:22.010000"],["2024-07-24T05:59:23.010000"],["2024-07-24T05:59:24.010000"],["2024-07-24T05:59:25.010000"],["2024-07-24T05:59:26.010000"],["2024-07-24T05:59:27.010000"],["2024-07-24T05:59:28.010000"],["2024-07-24T05:59:29.010000"],["2024-07-24T05:59:30.010000"],["2024-07-24T05:59:31.010000"],["2024-07-24T05:59:32.010000"],["2024-07-24T05:59:33.010000"],["2024-07-24T05:59:34.010000"],["2024-07-24T05:59:35.010000"],["2024-07-24T05:59:36.010000"],["2024-07-24T05:59:37.010000"],["2024-07-24T05:59:38.010000"],["2024-07-24T05:59:39.010000"],["2024-07-24T05:59:40.010000"],["2024-07-24T05:59:41.010000"],["2024-07-24T05:59:42.010000"],["2024-07-24T05:59:43.010000"],["2024-07-24T05:59:44.010000"],["2024-07-24T05:59:45.010000"],["2024-07-24T05:59:46.010000"],["2024-07-24T05:59:47.010000"],["2024-07-24T05:59:48.010000"],["2024-07-24T05:59:49.010000"],["2024-07-24T05:59:50.010000"],["2024-07-24T05:59:51.010000"],["2024-07-24T05:59:52.010000"],["2024-07-24T05:59:53.010000"],["2024-07-24T05:59:54.010000"],["2024-07-24T05:59:55.010000"],["2024-07-24T05:59:56.010000"],["2024-07-24T05:59:57.010000"],["2024-07-24T05:59:58.010000"],["2024-07-24T05:59:59.010000"],["2024-07-24T06:00:00.010000"],["2024-07-24T06:00:01.010000"],["2024-07-24T06:00:02.010000"],["2024-07-24T06:00:03.010000"],["2024-07-24T06:00:04.010000"],["2024-07-24T06:00:05.010000"],["2024-07-24T06:00:06.010000"],["2024-07-24T06:00:07.010000"],["2024-07-24T06:00:08.010000"],["2024-07-24T06:00:09.010000"],["2024-07-24T06:00:10.010000"],["2024-07-24T06:00:11.010000"],["2024-07-24T06:00:12.010000"],["2024-07-24T06:00:13.010000"],["2024-07-24T06:00:14.010000"],["2024-07-24T06:00:15.010000"],["2024-07-24T06:00:16.010000"],["2024-07-24T06:00:17.010000"],["2024-07-24T06:00:18.010000"],["2024-07-24T06:00:19.010000"],["2024-07-24T06:00:20.010000"],["2024-07-24T06:00:21.010000"],["2024-07-24T06:00:22.010000"],["2024-07-24T06:00:23.010000"],["2024-07-24T06:00:24.010000"],["2024-07-24T06:00:25.010000"],["2024-07-24T06:00:26.010000"],["2024-07-24T06:00:27.010000"],["2024-07-24T06:00:28.010000"],["2024-07-24T06:00:29.010000"],["2024-07-24T06:00:30.010000"],["2024-07-24T06:00:31.010000"],["2024-07-24T06:00:32.010000"],["2024-07-24T06:00:33.010000"],["2024-07-24T06:00:34.010000"],["2024-07-24T06:00:35.010000"],["2024-07-24T06:00:36.010000"],["2024-07-24T06:00:37.010000"],["2024-07-24T06:00:38.010000"],["2024-07-24T06:00:39.010000"],["2024-07-24T06:00:40.010000"],["2024-07-24T06:00:41.010000"],["2024-07-24T06:00:42.010000"],["2024-07-24T06:00:43.010000"],["2024-07-24T06:00:44.010000"],["2024-07-24T06:00:45.010000"],["2024-07-24T06:00:46.010000"],["2024-07-24T06:00:47.010000"],["2024-07-24T06:00:48.010000"],["2024-07-24T06:00:49.010000"],["2024-07-24T06:00:50.010000"],["2024-07-24T06:00:51.010000"],["2024-07-24T06:00:52.010000"],["2024-07-24T06:00:53.010000"],["2024-07-24T06:00:54.010000"],["2024-07-24T06:00:55.010000"],["2024-07-24T06:00:56.010000"],["2024-07-24T06:00:57.010000"],["2024-07-24T06:00:58.010000"],["2024-07-24T06:00:59.010000"],["2024-07-24T06:01:00.010000"],["2024-07-24T06:01:01.010000"],["2024-07-24T06:01:02.010000"],["2024-07-24T06:01:03.010000"],["2024-07-24T06:01:04.010000"],["2024-07-24T06:01:05.010000"],["2024-07-24T06:01:06.010000"],["2024-07-24T06:01:07.010000"],["2024-07-24T06:01:08.010000"],["2024-07-24T06:01:09.010000"],["2024-07-24T06:01:10.010000"],["2024-07-24T06:01:11.010000"],["2024-07-24T06:01:12.010000"],["2024-07-24T06:01:13.010000"],["2024-07-24T06:01:14.010000"],["2024-07-24T06:01:15.010000"],["2024-07-24T06:01:16.010000"],["2024-07-24T06:01:17.010000"],["2024-07-24T06:01:18.010000"],["2024-07-24T06:01:19.010000"],["2024-07-24T06:01:20.010000"],["2024-07-24T06:01:21.010000"],["2024-07-24T06:01:22.010000"],["2024-07-24T06:01:23.010000"],["2024-07-24T06:01:24.010000"],["2024-07-24T06:01:25.010000"],["2024-07-24T06:01:26.010000"],["2024-07-24T06:01:27.010000"],["2024-07-24T06:01:28.010000"],["2024-07-24T06:01:29.010000"],["2024-07-24T06:01:30.010000"],["2024-07-24T06:01:31.010000"],["2024-07-24T06:01:32.010000"],["2024-07-24T06:01:33.010000"],["2024-07-24T06:01:34.010000"],["2024-07-24T06:01:35.010000"],["2024-07-24T06:01:36.010000"],["2024-07-24T06:01:37.010000"],["2024-07-24T06:01:38.010000"],["2024-07-24T06:01:39.010000"],["2024-07-24T06:01:40.010000"],["2024-07-24T06:01:41.010000"],["2024-07-24T06:01:42.010000"],["2024-07-24T06:01:43.010000"],["2024-07-24T06:01:44.010000"],["2024-07-24T06:01:45.010000"],["2024-07-24T06:01:46.010000"],["2024-07-24T06:01:47.010000"],["2024-07-24T06:01:48.010000"],["2024-07-24T06:01:49.010000"],["2024-07-24T06:01:50.010000"],["2024-07-24T06:01:51.010000"],["2024-07-24T06:01:52.010000"],["2024-07-24T06:01:53.010000"],["2024-07-24T06:01:54.010000"],["2024-07-24T06:01:55.010000"],["2024-07-24T06:01:56.010000"],["2024-07-24T06:01:57.010000"],["2024-07-24T06:01:58.010000"],["2024-07-24T06:01:59.010000"],["2024-07-24T06:02:00.010000"],["2024-07-24T06:02:01.010000"],["2024-07-24T06:02:02.010000"],["2024-07-24T06:02:03.010000"],["2024-07-24T06:02:04.010000"],["2024-07-24T06:02:05.010000"],["2024-07-24T06:02:06.010000"],["2024-07-24T06:02:07.010000"],["2024-07-24T06:02:08.010000"],["2024-07-24T06:02:09.010000"],["2024-07-24T06:02:10.010000"],["2024-07-24T06:02:11.010000"],["2024-07-24T06:02:12.010000"],["2024-07-24T06:02:13.010000"],["2024-07-24T06:02:14.010000"],["2024-07-24T06:02:15.010000"],["2024-07-24T06:02:16.010000"],["2024-07-24T06:02:17.010000"],["2024-07-24T06:02:18.010000"],["2024-07-24T06:02:19.010000"],["2024-07-24T06:02:20.010000"],["2024-07-24T06:02:21.010000"],["2024-07-24T06:02:22.010000"],["2024-07-24T06:02:23.010000"],["2024-07-24T06:02:24.010000"],["2024-07-24T06:02:25.010000"],["2024-07-24T06:02:26.010000"],["2024-07-24T06:02:27.010000"],["2024-07-24T06:02:28.010000"],["2024-07-24T06:02:29.010000"],["2024-07-24T06:02:30.010000"],["2024-07-24T06:02:31.010000"],["2024-07-24T06:02:32.010000"],["2024-07-24T06:02:33.010000"],["2024-07-24T06:02:34.010000"],["2024-07-24T06:02:35.010000"],["2024-07-24T06:02:36.010000"],["2024-07-24T06:02:37.010000"],["2024-07-24T06:02:38.010000"],["2024-07-24T06:02:39.010000"],["2024-07-24T06:02:40.010000"],["2024-07-24T06:02:41.010000"],["2024-07-24T06:02:42.010000"],["2024-07-24T06:02:43.010000"],["2024-07-24T06:02:44.010000"],["2024-07-24T06:02:45.010000"],["2024-07-24T06:02:46.010000"],["2024-07-24T06:02:47.010000"],["2024-07-24T06:02:48.010000"],["2024-07-24T06:02:49.010000"],["2024-07-24T06:02:50.010000"],["2024-07-24T06:02:51.010000"],["2024-07-24T06:02:52.010000"],["2024-07-24T06:02:53.010000"],["2024-07-24T06:02:54.010000"],["2024-07-24T06:02:55.010000"],["2024-07-24T06:02:56.010000"],["2024-07-24T06:02:57.010000"],["2024-07-24T06:02:58.010000"],["2024-07-24T06:02:59.010000"],["2024-07-24T06:03:00.010000"],["2024-07-24T06:03:01.010000"],["2024-07-24T06:03:02.010000"],["2024-07-24T06:03:03.010000"],["2024-07-24T06:03:04.010000"],["2024-07-24T06:03:05.010000"],["2024-07-24T06:03:06.010000"],["2024-07-24T06:03:07.010000"],["2024-07-24T06:03:08.010000"],["2024-07-24T06:03:09.010000"],["2024-07-24T06:03:10.010000"],["2024-07-24T06:03:11.010000"],["2024-07-24T06:03:12.010000"],["2024-07-24T06:03:13.010000"],["2024-07-24T06:03:14.010000"],["2024-07-24T06:03:15.010000"],["2024-07-24T06:03:16.010000"],["2024-07-24T06:03:17.010000"],["2024-07-24T06:03:18.010000"],["2024-07-24T06:03:19.010000"],["2024-07-24T06:03:20.010000"],["2024-07-24T06:03:21.010000"],["2024-07-24T06:03:22.010000"],["2024-07-24T06:03:23.010000"],["2024-07-24T06:03:24.010000"],["2024-07-24T06:03:25.010000"],["2024-07-24T06:03:26.010000"],["2024-07-24T06:03:27.010000"],["2024-07-24T06:03:28.010000"],["2024-07-24T06:03:29.010000"],["2024-07-24T06:03:30.010000"],["2024-07-24T06:03:31.010000"],["2024-07-24T06:03:32.010000"],["2024-07-24T06:03:33.010000"],["2024-07-24T06:03:34.010000"],["2024-07-24T06:03:35.010000"],["2024-07-24T06:03:36.010000"],["2024-07-24T06:03:37.010000"],["2024-07-24T06:03:38.010000"],["2024-07-24T06:03:39.010000"],["2024-07-24T06:03:40.010000"],["2024-07-24T06:03:41.010000"],["2024-07-24T06:03:42.010000"],["2024-07-24T06:03:43.010000"],["2024-07-24T06:03:44.010000"],["2024-07-24T06:03:45.010000"],["2024-07-24T06:03:46.010000"],["2024-07-24T06:03:47.010000"],["2024-07-24T06:03:48.010000"],["2024-07-24T06:03:49.010000"],["2024-07-24T06:03:50.010000"],["2024-07-24T06:03:51.010000"],["2024-07-24T06:03:52.010000"],["2024-07-24T06:03:53.010000"],["2024-07-24T06:03:54.010000"],["2024-07-24T06:03:55.010000"],["2024-07-24T06:03:56.010000"],["2024-07-24T06:03:57.010000"],["2024-07-24T06:03:58.010000"],["2024-07-24T06:03:59.010000"],["2024-07-24T06:04:00.010000"],["2024-07-24T06:04:01.010000"],["2024-07-24T06:04:02.010000"],["2024-07-24T06:04:03.010000"],["2024-07-24T06:04:04.010000"],["2024-07-24T06:04:05.010000"],["2024-07-24T06:04:06.010000"],["2024-07-24T06:04:07.010000"],["2024-07-24T06:04:08.010000"],["2024-07-24T06:04:09.010000"],["2024-07-24T06:04:10.010000"],["2024-07-24T06:04:11.010000"],["2024-07-24T06:04:12.010000"],["2024-07-24T06:04:13.010000"],["2024-07-24T06:04:14.010000"],["2024-07-24T06:04:15.010000"],["2024-07-24T06:04:16.010000"],["2024-07-24T06:04:17.010000"],["2024-07-24T06:04:18.010000"],["2024-07-24T06:04:19.010000"],["2024-07-24T06:04:20.010000"],["2024-07-24T06:04:21.010000"],["2024-07-24T06:04:22.010000"],["2024-07-24T06:04:23.010000"],["2024-07-24T06:04:24.010000"],["2024-07-24T06:04:25.010000"],["2024-07-24T06:04:26.010000"],["2024-07-24T06:04:27.010000"],["2024-07-24T06:04:28.010000"],["2024-07-24T06:04:29.010000"],["2024-07-24T06:04:30.010000"],["2024-07-24T06:04:31.010000"],["2024-07-24T06:04:32.010000"],["2024-07-24T06:04:33.010000"],["2024-07-24T06:04:34.010000"],["2024-07-24T06:04:35.010000"],["2024-07-24T06:04:36.010000"],["2024-07-24T06:04:37.010000"],["2024-07-24T06:04:38.010000"],["2024-07-24T06:04:39.010000"],["2024-07-24T06:04:40.010000"],["2024-07-24T06:04:41.010000"],["2024-07-24T06:04:42.010000"],["2024-07-24T06:04:43.010000"],["2024-07-24T06:04:44.010000"],["2024-07-24T06:04:45.010000"],["2024-07-24T06:04:46.010000"],["2024-07-24T06:04:47.010000"],["2024-07-24T06:04:48.010000"],["2024-07-24T06:04:49.010000"],["2024-07-24T06:04:50.010000"],["2024-07-24T06:04:51.010000"],["2024-07-24T06:04:52.010000"],["2024-07-24T06:04:53.010000"],["2024-07-24T06:04:54.010000"],["2024-07-24T06:04:55.010000"],["2024-07-24T06:04:56.010000"],["2024-07-24T06:04:57.010000"],["2024-07-24T06:04:58.010000"],["2024-07-24T06:04:59.010000"],["2024-07-24T06:05:00.010000"],["2024-07-24T06:05:01.010000"],["2024-07-24T06:05:02.010000"],["2024-07-24T06:05:03.010000"],["2024-07-24T06:05:04.010000"],["2024-07-24T06:05:05.010000"],["2024-07-24T06:05:06.010000"],["2024-07-24T06:05:07.010000"],["2024-07-24T06:05:08.010000"],["2024-07-24T06:05:09.010000"],["2024-07-24T06:05:10.010000"],["2024-07-24T06:05:11.010000"],["2024-07-24T06:05:12.010000"],["2024-07-24T06:05:13.010000"],["2024-07-24T06:05:14.010000"],["2024-07-24T06:05:15.010000"],["2024-07-24T06:05:16.010000"],["2024-07-24T06:05:17.010000"],["2024-07-24T06:05:18.010000"],["2024-07-24T06:05:19.010000"],["2024-07-24T06:05:20.010000"],["2024-07-24T06:05:21.010000"],["2024-07-24T06:05:22.010000"],["2024-07-24T06:05:23.010000"],["2024-07-24T06:05:24.010000"],["2024-07-24T06:05:25.010000"],["2024-07-24T06:05:26.010000"],["2024-07-24T06:05:27.010000"],["2024-07-24T06:05:28.010000"],["2024-07-24T06:05:29.010000"],["2024-07-24T06:05:30.010000"],["2024-07-24T06:05:31.010000"],["2024-07-24T06:05:32.010000"],["2024-07-24T06:05:33.010000"],["2024-07-24T06:05:34.010000"],["2024-07-24T06:05:35.010000"],["2024-07-24T06:05:36.010000"],["2024-07-24T06:05:37.010000"],["2024-07-24T06:05:38.010000"],["2024-07-24T06:05:39.010000"],["2024-07-24T06:05:40.010000"],["2024-07-24T06:05:41.010000"],["2024-07-24T06:05:42.010000"],["2024-07-24T06:05:43.010000"],["2024-07-24T06:05:44.010000"],["2024-07-24T06:05:45.010000"],["2024-07-24T06:05:46.010000"],["2024-07-24T06:05:47.010000"],["2024-07-24T06:05:48.010000"],["2024-07-24T06:05:49.010000"],["2024-07-24T06:05:50.010000"],["2024-07-24T06:05:51.010000"],["2024-07-24T06:05:52.010000"],["2024-07-24T06:05:53.010000"],["2024-07-24T06:05:54.010000"],["2024-07-24T06:05:55.010000"],["2024-07-24T06:05:56.010000"],["2024-07-24T06:05:57.010000"],["2024-07-24T06:05:58.010000"],["2024-07-24T06:05:59.010000"],["2024-07-24T06:06:00.010000"],["2024-07-24T06:06:01.010000"],["2024-07-24T06:06:02.010000"],["2024-07-24T06:06:03.010000"],["2024-07-24T06:06:04.010000"],["2024-07-24T06:06:05.010000"],["2024-07-24T06:06:06.010000"],["2024-07-24T06:06:07.010000"],["2024-07-24T06:06:08.010000"],["2024-07-24T06:06:09.010000"],["2024-07-24T06:06:10.010000"],["2024-07-24T06:06:11.010000"],["2024-07-24T06:06:12.010000"],["2024-07-24T06:06:13.010000"],["2024-07-24T06:06:14.010000"],["2024-07-24T06:06:15.010000"],["2024-07-24T06:06:16.010000"],["2024-07-24T06:06:17.010000"],["2024-07-24T06:06:18.010000"],["2024-07-24T06:06:19.010000"],["2024-07-24T06:06:20.010000"],["2024-07-24T06:06:21.010000"],["2024-07-24T06:06:22.010000"],["2024-07-24T06:06:23.010000"],["2024-07-24T06:06:24.010000"],["2024-07-24T06:06:25.010000"],["2024-07-24T06:06:26.010000"],["2024-07-24T06:06:27.010000"],["2024-07-24T06:06:28.010000"],["2024-07-24T06:06:29.010000"],["2024-07-24T06:06:30.010000"],["2024-07-24T06:06:31.010000"],["2024-07-24T06:06:32.010000"],["2024-07-24T06:06:33.010000"],["2024-07-24T06:06:34.010000"],["2024-07-24T06:06:35.010000"],["2024-07-24T06:06:36.010000"],["2024-07-24T06:06:37.010000"],["2024-07-24T06:06:38.010000"],["2024-07-24T06:06:39.010000"],["2024-07-24T06:06:40.010000"],["2024-07-24T06:06:41.010000"],["2024-07-24T06:06:42.010000"],["2024-07-24T06:06:43.010000"],["2024-07-24T06:06:44.010000"],["2024-07-24T06:06:45.010000"],["2024-07-24T06:06:46.010000"],["2024-07-24T06:06:47.010000"],["2024-07-24T06:06:48.010000"],["2024-07-24T06:06:49.010000"],["2024-07-24T06:06:50.010000"],["2024-07-24T06:06:51.010000"],["2024-07-24T06:06:52.010000"],["2024-07-24T06:06:53.010000"],["2024-07-24T06:06:54.010000"],["2024-07-24T06:06:55.010000"],["2024-07-24T06:06:56.010000"],["2024-07-24T06:06:57.010000"],["2024-07-24T06:06:58.010000"],["2024-07-24T06:06:59.010000"],["2024-07-24T06:07:00.010000"],["2024-07-24T06:07:01.010000"],["2024-07-24T06:07:02.010000"],["2024-07-24T06:07:03.010000"],["2024-07-24T06:07:04.010000"],["2024-07-24T06:07:05.010000"],["2024-07-24T06:07:06.010000"],["2024-07-24T06:07:07.010000"],["2024-07-24T06:07:08.010000"],["2024-07-24T06:07:09.010000"],["2024-07-24T06:07:10.010000"],["2024-07-24T06:07:11.010000"],["2024-07-24T06:07:12.010000"],["2024-07-24T06:07:13.010000"],["2024-07-24T06:07:14.010000"],["2024-07-24T06:07:15.010000"],["2024-07-24T06:07:16.010000"],["2024-07-24T06:07:17.010000"],["2024-07-24T06:07:18.010000"],["2024-07-24T06:07:19.010000"],["2024-07-24T06:07:20.010000"],["2024-07-24T06:07:21.010000"],["2024-07-24T06:07:22.010000"],["2024-07-24T06:07:23.010000"],["2024-07-24T06:07:24.010000"],["2024-07-24T06:07:25.010000"],["2024-07-24T06:07:26.010000"],["2024-07-24T06:07:27.010000"],["2024-07-24T06:07:28.010000"],["2024-07-24T06:07:29.010000"],["2024-07-24T06:07:30.010000"],["2024-07-24T06:07:31.010000"],["2024-07-24T06:07:32.010000"],["2024-07-24T06:07:33.010000"],["2024-07-24T06:07:34.010000"],["2024-07-24T06:07:35.010000"],["2024-07-24T06:07:36.010000"],["2024-07-24T06:07:37.010000"],["2024-07-24T06:07:38.010000"],["2024-07-24T06:07:39.010000"],["2024-07-24T06:07:40.010000"],["2024-07-24T06:07:41.010000"],["2024-07-24T06:07:42.010000"],["2024-07-24T06:07:43.010000"],["2024-07-24T06:07:44.010000"],["2024-07-24T06:07:45.010000"],["2024-07-24T06:07:46.010000"],["2024-07-24T06:07:47.010000"],["2024-07-24T06:07:48.010000"],["2024-07-24T06:07:49.010000"],["2024-07-24T06:07:50.010000"],["2024-07-24T06:07:51.010000"],["2024-07-24T06:07:52.010000"],["2024-07-24T06:07:53.010000"],["2024-07-24T06:07:54.010000"],["2024-07-24T06:07:55.010000"],["2024-07-24T06:07:56.010000"],["2024-07-24T06:07:57.010000"],["2024-07-24T06:07:58.010000"],["2024-07-24T06:07:59.010000"],["2024-07-24T06:08:00.010000"],["2024-07-24T06:08:01.010000"],["2024-07-24T06:08:02.010000"],["2024-07-24T06:08:03.010000"],["2024-07-24T06:08:04.010000"],["2024-07-24T06:08:05.010000"],["2024-07-24T06:08:06.010000"],["2024-07-24T06:08:07.010000"],["2024-07-24T06:08:08.010000"],["2024-07-24T06:08:09.010000"],["2024-07-24T06:08:10.010000"],["2024-07-24T06:08:11.010000"],["2024-07-24T06:08:12.010000"],["2024-07-24T06:08:13.010000"],["2024-07-24T06:08:14.010000"],["2024-07-24T06:08:15.010000"],["2024-07-24T06:08:16.010000"],["2024-07-24T06:08:17.010000"],["2024-07-24T06:08:18.010000"],["2024-07-24T06:08:19.010000"],["2024-07-24T06:08:20.010000"],["2024-07-24T06:08:21.010000"],["2024-07-24T06:08:22.010000"],["2024-07-24T06:08:23.010000"],["2024-07-24T06:08:24.010000"],["2024-07-24T06:08:25.010000"],["2024-07-24T06:08:26.010000"],["2024-07-24T06:08:27.010000"],["2024-07-24T06:08:28.010000"],["2024-07-24T06:08:29.010000"],["2024-07-24T06:08:30.010000"],["2024-07-24T06:08:31.010000"],["2024-07-24T06:08:32.010000"],["2024-07-24T06:08:33.010000"],["2024-07-24T06:08:34.010000"],["2024-07-24T06:08:35.010000"],["2024-07-24T06:08:36.010000"],["2024-07-24T06:08:37.010000"],["2024-07-24T06:08:38.010000"],["2024-07-24T06:08:39.010000"],["2024-07-24T06:08:40.010000"],["2024-07-24T06:08:41.010000"],["2024-07-24T06:08:42.010000"],["2024-07-24T06:08:43.010000"],["2024-07-24T06:08:44.010000"],["2024-07-24T06:08:45.010000"],["2024-07-24T06:08:46.010000"],["2024-07-24T06:08:47.010000"],["2024-07-24T06:08:48.010000"],["2024-07-24T06:08:49.010000"],["2024-07-24T06:08:50.010000"],["2024-07-24T06:08:51.010000"],["2024-07-24T06:08:52.010000"],["2024-07-24T06:08:53.010000"],["2024-07-24T06:08:54.010000"],["2024-07-24T06:08:55.010000"],["2024-07-24T06:08:56.010000"],["2024-07-24T06:08:57.010000"],["2024-07-24T06:08:58.010000"],["2024-07-24T06:08:59.010000"],["2024-07-24T06:09:00.010000"],["2024-07-24T06:09:01.010000"],["2024-07-24T06:09:02.010000"],["2024-07-24T06:09:03.010000"],["2024-07-24T06:09:04.010000"],["2024-07-24T06:09:05.010000"],["2024-07-24T06:09:06.010000"],["2024-07-24T06:09:07.010000"],["2024-07-24T06:09:08.010000"],["2024-07-24T06:09:09.010000"],["2024-07-24T06:09:10.010000"],["2024-07-24T06:09:11.010000"],["2024-07-24T06:09:12.010000"],["2024-07-24T06:09:13.010000"],["2024-07-24T06:09:14.010000"],["2024-07-24T06:09:15.010000"],["2024-07-24T06:09:16.010000"],["2024-07-24T06:09:17.010000"],["2024-07-24T06:09:18.010000"],["2024-07-24T06:09:19.010000"],["2024-07-24T06:09:20.010000"],["2024-07-24T06:09:21.010000"],["2024-07-24T06:09:22.010000"],["2024-07-24T06:09:23.010000"],["2024-07-24T06:09:24.010000"],["2024-07-24T06:09:25.010000"],["2024-07-24T06:09:26.010000"],["2024-07-24T06:09:27.010000"],["2024-07-24T06:09:28.010000"],["2024-07-24T06:09:29.010000"],["2024-07-24T06:09:30.010000"],["2024-07-24T06:09:31.010000"],["2024-07-24T06:09:32.010000"],["2024-07-24T06:09:33.010000"],["2024-07-24T06:09:34.010000"],["2024-07-24T06:09:35.010000"],["2024-07-24T06:09:36.010000"],["2024-07-24T06:09:37.010000"],["2024-07-24T06:09:38.010000"],["2024-07-24T06:09:39.010000"],["2024-07-24T06:09:40.010000"],["2024-07-24T06:09:41.010000"],["2024-07-24T06:09:42.010000"],["2024-07-24T06:09:43.010000"],["2024-07-24T06:09:44.010000"],["2024-07-24T06:09:45.010000"],["2024-07-24T06:09:46.010000"],["2024-07-24T06:09:47.010000"],["2024-07-24T06:09:48.010000"],["2024-07-24T06:09:49.010000"],["2024-07-24T06:09:50.010000"],["2024-07-24T06:09:51.010000"],["2024-07-24T06:09:52.010000"],["2024-07-24T06:09:53.010000"],["2024-07-24T06:09:54.010000"],["2024-07-24T06:09:55.010000"],["2024-07-24T06:09:56.010000"],["2024-07-24T06:09:57.010000"],["2024-07-24T06:09:58.010000"],["2024-07-24T06:09:59.010000"],["2024-07-24T06:10:00.010000"],["2024-07-24T06:10:01.010000"],["2024-07-24T06:10:02.010000"],["2024-07-24T06:10:03.010000"],["2024-07-24T06:10:04.010000"],["2024-07-24T06:10:05.010000"],["2024-07-24T06:10:06.010000"],["2024-07-24T06:10:07.010000"],["2024-07-24T06:10:08.010000"],["2024-07-24T06:10:09.010000"],["2024-07-24T06:10:10.010000"],["2024-07-24T06:10:11.010000"],["2024-07-24T06:10:12.010000"],["2024-07-24T06:10:13.010000"],["2024-07-24T06:10:14.010000"],["2024-07-24T06:10:15.010000"],["2024-07-24T06:10:16.010000"],["2024-07-24T06:10:17.010000"],["2024-07-24T06:10:18.010000"],["2024-07-24T06:10:19.010000"],["2024-07-24T06:10:20.010000"],["2024-07-24T06:10:21.010000"],["2024-07-24T06:10:22.010000"],["2024-07-24T06:10:23.010000"],["2024-07-24T06:10:24.010000"],["2024-07-24T06:10:25.010000"],["2024-07-24T06:10:26.010000"],["2024-07-24T06:10:27.010000"],["2024-07-24T06:10:28.010000"],["2024-07-24T06:10:29.010000"],["2024-07-24T06:10:30.010000"],["2024-07-24T06:10:31.010000"],["2024-07-24T06:10:32.010000"],["2024-07-24T06:10:33.010000"],["2024-07-24T06:10:34.010000"],["2024-07-24T06:10:35.010000"],["2024-07-24T06:10:36.010000"],["2024-07-24T06:10:37.010000"],["2024-07-24T06:10:38.010000"],["2024-07-24T06:10:39.010000"],["2024-07-24T06:10:40.010000"],["2024-07-24T06:10:41.010000"],["2024-07-24T06:10:42.010000"],["2024-07-24T06:10:43.010000"],["2024-07-24T06:10:44.010000"],["2024-07-24T06:10:45.010000"],["2024-07-24T06:10:46.010000"],["2024-07-24T06:10:47.010000"],["2024-07-24T06:10:48.010000"],["2024-07-24T06:10:49.010000"],["2024-07-24T06:10:50.010000"],["2024-07-24T06:10:51.010000"],["2024-07-24T06:10:52.010000"],["2024-07-24T06:10:53.010000"],["2024-07-24T06:10:54.010000"],["2024-07-24T06:10:55.010000"],["2024-07-24T06:10:56.010000"],["2024-07-24T06:10:57.010000"],["2024-07-24T06:10:58.010000"],["2024-07-24T06:10:59.010000"],["2024-07-24T06:11:00.010000"],["2024-07-24T06:11:01.010000"],["2024-07-24T06:11:02.010000"],["2024-07-24T06:11:03.010000"],["2024-07-24T06:11:04.010000"],["2024-07-24T06:11:05.010000"],["2024-07-24T06:11:06.010000"],["2024-07-24T06:11:07.010000"],["2024-07-24T06:11:08.010000"],["2024-07-24T06:11:09.010000"],["2024-07-24T06:11:10.010000"],["2024-07-24T06:11:11.010000"],["2024-07-24T06:11:12.010000"],["2024-07-24T06:11:13.010000"],["2024-07-24T06:11:14.010000"],["2024-07-24T06:11:15.010000"],["2024-07-24T06:11:16.010000"],["2024-07-24T06:11:17.010000"],["2024-07-24T06:11:18.010000"],["2024-07-24T06:11:19.010000"],["2024-07-24T06:11:20.010000"],["2024-07-24T06:11:21.010000"],["2024-07-24T06:11:22.010000"],["2024-07-24T06:11:23.010000"],["2024-07-24T06:11:24.010000"],["2024-07-24T06:11:25.010000"],["2024-07-24T06:11:26.010000"],["2024-07-24T06:11:27.010000"],["2024-07-24T06:11:28.010000"],["2024-07-24T06:11:29.010000"],["2024-07-24T06:11:30.010000"],["2024-07-24T06:11:31.010000"],["2024-07-24T06:11:32.010000"],["2024-07-24T06:11:33.010000"],["2024-07-24T06:11:34.010000"],["2024-07-24T06:11:35.010000"],["2024-07-24T06:11:36.010000"],["2024-07-24T06:11:37.010000"],["2024-07-24T06:11:38.010000"],["2024-07-24T06:11:39.010000"],["2024-07-24T06:11:40.010000"],["2024-07-24T06:11:41.010000"],["2024-07-24T06:11:42.010000"],["2024-07-24T06:11:43.010000"],["2024-07-24T06:11:44.010000"],["2024-07-24T06:11:45.010000"],["2024-07-24T06:11:46.010000"],["2024-07-24T06:11:47.010000"],["2024-07-24T06:11:48.010000"],["2024-07-24T06:11:49.010000"],["2024-07-24T06:11:50.010000"],["2024-07-24T06:11:51.010000"],["2024-07-24T06:11:52.010000"],["2024-07-24T06:11:53.010000"],["2024-07-24T06:11:54.010000"],["2024-07-24T06:11:55.010000"],["2024-07-24T06:11:56.010000"],["2024-07-24T06:11:57.010000"],["2024-07-24T06:11:58.010000"],["2024-07-24T06:11:59.010000"],["2024-07-24T06:12:00.010000"],["2024-07-24T06:12:01.010000"],["2024-07-24T06:12:02.010000"],["2024-07-24T06:12:03.010000"],["2024-07-24T06:12:04.010000"],["2024-07-24T06:12:05.010000"],["2024-07-24T06:12:06.010000"],["2024-07-24T06:12:07.010000"],["2024-07-24T06:12:08.010000"],["2024-07-24T06:12:09.010000"],["2024-07-24T06:12:10.010000"],["2024-07-24T06:12:11.010000"],["2024-07-24T06:12:12.010000"],["2024-07-24T06:12:13.010000"],["2024-07-24T06:12:14.010000"],["2024-07-24T06:12:15.010000"],["2024-07-24T06:12:16.010000"],["2024-07-24T06:12:17.010000"],["2024-07-24T06:12:18.010000"],["2024-07-24T06:12:19.010000"],["2024-07-24T06:12:20.010000"],["2024-07-24T06:12:21.010000"],["2024-07-24T06:12:22.010000"],["2024-07-24T06:12:23.010000"],["2024-07-24T06:12:24.010000"],["2024-07-24T06:12:25.010000"],["2024-07-24T06:12:26.010000"],["2024-07-24T06:12:27.010000"],["2024-07-24T06:12:28.010000"],["2024-07-24T06:12:29.010000"],["2024-07-24T06:12:30.010000"],["2024-07-24T06:12:31.010000"],["2024-07-24T06:12:32.010000"],["2024-07-24T06:12:33.010000"],["2024-07-24T06:12:34.010000"],["2024-07-24T06:12:35.010000"],["2024-07-24T06:12:36.010000"],["2024-07-24T06:12:37.010000"],["2024-07-24T06:12:38.010000"],["2024-07-24T06:12:39.010000"],["2024-07-24T06:12:40.010000"],["2024-07-24T06:12:41.010000"],["2024-07-24T06:12:42.010000"],["2024-07-24T06:12:43.010000"],["2024-07-24T06:12:44.010000"],["2024-07-24T06:12:45.010000"],["2024-07-24T06:12:46.010000"],["2024-07-24T06:12:47.010000"],["2024-07-24T06:12:48.010000"],["2024-07-24T06:12:49.010000"],["2024-07-24T06:12:50.010000"],["2024-07-24T06:12:51.010000"],["2024-07-24T06:12:52.010000"],["2024-07-24T06:12:53.010000"],["2024-07-24T06:12:54.010000"],["2024-07-24T06:12:55.010000"],["2024-07-24T06:12:56.010000"],["2024-07-24T06:12:57.010000"],["2024-07-24T06:12:58.010000"],["2024-07-24T06:12:59.010000"],["2024-07-24T06:13:00.010000"],["2024-07-24T06:13:01.010000"],["2024-07-24T06:13:02.010000"],["2024-07-24T06:13:03.010000"],["2024-07-24T06:13:04.010000"],["2024-07-24T06:13:05.010000"],["2024-07-24T06:13:06.010000"],["2024-07-24T06:13:07.010000"],["2024-07-24T06:13:08.010000"],["2024-07-24T06:13:09.010000"],["2024-07-24T06:13:10.010000"],["2024-07-24T06:13:11.010000"],["2024-07-24T06:13:12.010000"],["2024-07-24T06:13:13.010000"],["2024-07-24T06:13:14.010000"],["2024-07-24T06:13:15.010000"],["2024-07-24T06:13:16.010000"],["2024-07-24T06:13:17.010000"],["2024-07-24T06:13:18.010000"],["2024-07-24T06:13:19.010000"],["2024-07-24T06:13:20.010000"],["2024-07-24T06:13:21.010000"],["2024-07-24T06:13:22.010000"],["2024-07-24T06:13:23.010000"],["2024-07-24T06:13:24.010000"],["2024-07-24T06:13:25.010000"],["2024-07-24T06:13:26.010000"],["2024-07-24T06:13:27.010000"],["2024-07-24T06:13:28.010000"],["2024-07-24T06:13:29.010000"],["2024-07-24T06:13:30.010000"],["2024-07-24T06:13:31.010000"],["2024-07-24T06:13:32.010000"],["2024-07-24T06:13:33.010000"],["2024-07-24T06:13:34.010000"],["2024-07-24T06:13:35.010000"],["2024-07-24T06:13:36.010000"],["2024-07-24T06:13:37.010000"],["2024-07-24T06:13:38.010000"],["2024-07-24T06:13:39.010000"],["2024-07-24T06:13:40.010000"],["2024-07-24T06:13:41.010000"],["2024-07-24T06:13:42.010000"],["2024-07-24T06:13:43.010000"],["2024-07-24T06:13:44.010000"],["2024-07-24T06:13:45.010000"],["2024-07-24T06:13:46.010000"],["2024-07-24T06:13:47.010000"],["2024-07-24T06:13:48.010000"],["2024-07-24T06:13:49.010000"],["2024-07-24T06:13:50.010000"],["2024-07-24T06:13:51.010000"],["2024-07-24T06:13:52.010000"],["2024-07-24T06:13:53.010000"],["2024-07-24T06:13:54.010000"],["2024-07-24T06:13:55.010000"],["2024-07-24T06:13:56.010000"],["2024-07-24T06:13:57.010000"],["2024-07-24T06:13:58.010000"],["2024-07-24T06:13:59.010000"],["2024-07-24T06:14:00.010000"],["2024-07-24T06:14:01.010000"],["2024-07-24T06:14:02.010000"],["2024-07-24T06:14:03.010000"],["2024-07-24T06:14:04.010000"],["2024-07-24T06:14:05.010000"],["2024-07-24T06:14:06.010000"],["2024-07-24T06:14:07.010000"],["2024-07-24T06:14:08.010000"],["2024-07-24T06:14:09.010000"],["2024-07-24T06:14:10.010000"],["2024-07-24T06:14:11.010000"],["2024-07-24T06:14:12.010000"],["2024-07-24T06:14:13.010000"],["2024-07-24T06:14:14.010000"],["2024-07-24T06:14:15.010000"],["2024-07-24T06:14:16.010000"],["2024-07-24T06:14:17.010000"],["2024-07-24T06:14:18.010000"],["2024-07-24T06:14:19.010000"],["2024-07-24T06:14:20.010000"],["2024-07-24T06:14:21.010000"],["2024-07-24T06:14:22.010000"],["2024-07-24T06:14:23.010000"],["2024-07-24T06:14:24.010000"],["2024-07-24T06:14:25.010000"],["2024-07-24T06:14:26.010000"],["2024-07-24T06:14:27.010000"],["2024-07-24T06:14:28.010000"],["2024-07-24T06:14:29.010000"],["2024-07-24T06:14:30.010000"],["2024-07-24T06:14:31.010000"],["2024-07-24T06:14:32.010000"],["2024-07-24T06:14:33.010000"],["2024-07-24T06:14:34.010000"],["2024-07-24T06:14:35.010000"],["2024-07-24T06:14:36.010000"],["2024-07-24T06:14:37.010000"],["2024-07-24T06:14:38.010000"],["2024-07-24T06:14:39.010000"],["2024-07-24T06:14:40.010000"],["2024-07-24T06:14:41.010000"],["2024-07-24T06:14:42.010000"],["2024-07-24T06:14:43.010000"],["2024-07-24T06:14:44.010000"],["2024-07-24T06:14:45.010000"],["2024-07-24T06:14:46.010000"],["2024-07-24T06:14:47.010000"],["2024-07-24T06:14:48.010000"],["2024-07-24T06:14:49.010000"],["2024-07-24T06:14:50.010000"],["2024-07-24T06:14:51.010000"],["2024-07-24T06:14:52.010000"],["2024-07-24T06:14:53.010000"],["2024-07-24T06:14:54.010000"],["2024-07-24T06:14:55.010000"],["2024-07-24T06:14:56.010000"],["2024-07-24T06:14:57.010000"],["2024-07-24T06:14:58.010000"],["2024-07-24T06:14:59.010000"],["2024-07-24T06:15:00.010000"],["2024-07-24T06:15:01.010000"],["2024-07-24T06:15:02.010000"],["2024-07-24T06:15:03.010000"],["2024-07-24T06:15:04.010000"],["2024-07-24T06:15:05.010000"],["2024-07-24T06:15:06.010000"],["2024-07-24T06:15:07.010000"],["2024-07-24T06:15:08.010000"],["2024-07-24T06:15:09.010000"],["2024-07-24T06:15:10.010000"],["2024-07-24T06:15:11.010000"],["2024-07-24T06:15:12.010000"],["2024-07-24T06:15:13.010000"],["2024-07-24T06:15:14.010000"],["2024-07-24T06:15:15.010000"],["2024-07-24T06:15:16.010000"],["2024-07-24T06:15:17.010000"],["2024-07-24T06:15:18.010000"],["2024-07-24T06:15:19.010000"],["2024-07-24T06:15:20.010000"],["2024-07-24T06:15:21.010000"],["2024-07-24T06:15:22.010000"],["2024-07-24T06:15:23.010000"],["2024-07-24T06:15:24.010000"],["2024-07-24T06:15:25.010000"],["2024-07-24T06:15:26.010000"],["2024-07-24T06:15:27.010000"],["2024-07-24T06:15:28.010000"],["2024-07-24T06:15:29.010000"],["2024-07-24T06:15:30.010000"],["2024-07-24T06:15:31.010000"],["2024-07-24T06:15:32.010000"],["2024-07-24T06:15:33.010000"],["2024-07-24T06:15:34.010000"],["2024-07-24T06:15:35.010000"],["2024-07-24T06:15:36.010000"],["2024-07-24T06:15:37.010000"],["2024-07-24T06:15:38.010000"],["2024-07-24T06:15:39.010000"],["2024-07-24T06:15:40.010000"],["2024-07-24T06:15:41.010000"],["2024-07-24T06:15:42.010000"],["2024-07-24T06:15:43.010000"],["2024-07-24T06:15:44.010000"],["2024-07-24T06:15:45.010000"],["2024-07-24T06:15:46.010000"],["2024-07-24T06:15:47.010000"],["2024-07-24T06:15:48.010000"],["2024-07-24T06:15:49.010000"],["2024-07-24T06:15:50.010000"],["2024-07-24T06:15:51.010000"],["2024-07-24T06:15:52.010000"],["2024-07-24T06:15:53.010000"],["2024-07-24T06:15:54.010000"],["2024-07-24T06:15:55.010000"],["2024-07-24T06:15:56.010000"],["2024-07-24T06:15:57.010000"],["2024-07-24T06:15:58.010000"],["2024-07-24T06:15:59.010000"],["2024-07-24T06:16:00.010000"],["2024-07-24T06:16:01.010000"],["2024-07-24T06:16:02.010000"],["2024-07-24T06:16:03.010000"],["2024-07-24T06:16:04.010000"],["2024-07-24T06:16:05.010000"],["2024-07-24T06:16:06.010000"],["2024-07-24T06:16:07.010000"],["2024-07-24T06:16:08.010000"],["2024-07-24T06:16:09.010000"],["2024-07-24T06:16:10.010000"],["2024-07-24T06:16:11.010000"],["2024-07-24T06:16:12.010000"],["2024-07-24T06:16:13.010000"],["2024-07-24T06:16:14.010000"],["2024-07-24T06:16:15.010000"],["2024-07-24T06:16:16.010000"],["2024-07-24T06:16:17.010000"],["2024-07-24T06:16:18.010000"],["2024-07-24T06:16:19.010000"],["2024-07-24T06:16:20.010000"],["2024-07-24T06:16:21.010000"],["2024-07-24T06:16:22.010000"],["2024-07-24T06:16:23.010000"],["2024-07-24T06:16:24.010000"],["2024-07-24T06:16:25.010000"],["2024-07-24T06:16:26.010000"],["2024-07-24T06:16:27.010000"],["2024-07-24T06:16:28.010000"],["2024-07-24T06:16:29.010000"],["2024-07-24T06:16:30.010000"],["2024-07-24T06:16:31.010000"],["2024-07-24T06:16:32.010000"],["2024-07-24T06:16:33.010000"],["2024-07-24T06:16:34.010000"],["2024-07-24T06:16:35.010000"],["2024-07-24T06:16:36.010000"],["2024-07-24T06:16:37.010000"],["2024-07-24T06:16:38.010000"],["2024-07-24T06:16:39.010000"],["2024-07-24T06:16:40.010000"],["2024-07-24T06:16:41.010000"],["2024-07-24T06:16:42.010000"],["2024-07-24T06:16:43.010000"],["2024-07-24T06:16:44.010000"],["2024-07-24T06:16:45.010000"],["2024-07-24T06:16:46.010000"],["2024-07-24T06:16:47.010000"],["2024-07-24T06:16:48.010000"],["2024-07-24T06:16:49.010000"],["2024-07-24T06:16:50.010000"],["2024-07-24T06:16:51.010000"],["2024-07-24T06:16:52.010000"],["2024-07-24T06:16:53.010000"],["2024-07-24T06:16:54.010000"],["2024-07-24T06:16:55.010000"],["2024-07-24T06:16:56.010000"],["2024-07-24T06:16:57.010000"],["2024-07-24T06:16:58.010000"],["2024-07-24T06:16:59.010000"],["2024-07-24T06:17:00.010000"],["2024-07-24T06:17:01.010000"],["2024-07-24T06:17:02.010000"],["2024-07-24T06:17:03.010000"],["2024-07-24T06:17:04.010000"],["2024-07-24T06:17:05.010000"],["2024-07-24T06:17:06.010000"],["2024-07-24T06:17:07.010000"],["2024-07-24T06:17:08.010000"],["2024-07-24T06:17:09.010000"],["2024-07-24T06:17:10.010000"],["2024-07-24T06:17:11.010000"],["2024-07-24T06:17:12.010000"],["2024-07-24T06:17:13.010000"],["2024-07-24T06:17:14.010000"],["2024-07-24T06:17:15.010000"],["2024-07-24T06:17:16.010000"],["2024-07-24T06:17:17.010000"],["2024-07-24T06:17:18.010000"],["2024-07-24T06:17:19.010000"],["2024-07-24T06:17:20.010000"],["2024-07-24T06:17:21.010000"],["2024-07-24T06:17:22.010000"],["2024-07-24T06:17:23.010000"],["2024-07-24T06:17:24.010000"],["2024-07-24T06:17:25.010000"],["2024-07-24T06:17:26.010000"],["2024-07-24T06:17:27.010000"],["2024-07-24T06:17:28.010000"],["2024-07-24T06:17:29.010000"],["2024-07-24T06:17:30.010000"],["2024-07-24T06:17:31.010000"],["2024-07-24T06:17:32.010000"],["2024-07-24T06:17:33.010000"],["2024-07-24T06:17:34.010000"],["2024-07-24T06:17:35.010000"],["2024-07-24T06:17:36.010000"],["2024-07-24T06:17:37.010000"],["2024-07-24T06:17:38.010000"],["2024-07-24T06:17:39.010000"],["2024-07-24T06:17:40.010000"],["2024-07-24T06:17:41.010000"],["2024-07-24T06:17:42.010000"],["2024-07-24T06:17:43.010000"],["2024-07-24T06:17:44.010000"],["2024-07-24T06:17:45.010000"],["2024-07-24T06:17:46.010000"],["2024-07-24T06:17:47.010000"],["2024-07-24T06:17:48.010000"],["2024-07-24T06:17:49.010000"],["2024-07-24T06:17:50.010000"],["2024-07-24T06:17:51.010000"],["2024-07-24T06:17:52.010000"],["2024-07-24T06:17:53.010000"],["2024-07-24T06:17:54.010000"],["2024-07-24T06:17:55.010000"],["2024-07-24T06:17:56.010000"],["2024-07-24T06:17:57.010000"],["2024-07-24T06:17:58.010000"],["2024-07-24T06:17:59.010000"],["2024-07-24T06:18:00.010000"],["2024-07-24T06:18:01.010000"],["2024-07-24T06:18:02.010000"],["2024-07-24T06:18:03.010000"],["2024-07-24T06:18:04.010000"],["2024-07-24T06:18:05.010000"],["2024-07-24T06:18:06.010000"],["2024-07-24T06:18:07.010000"],["2024-07-24T06:18:08.010000"],["2024-07-24T06:18:09.010000"],["2024-07-24T06:18:10.010000"],["2024-07-24T06:18:11.010000"],["2024-07-24T06:18:12.010000"],["2024-07-24T06:18:13.010000"],["2024-07-24T06:18:14.010000"],["2024-07-24T06:18:15.010000"],["2024-07-24T06:18:16.010000"],["2024-07-24T06:18:17.010000"],["2024-07-24T06:18:18.010000"],["2024-07-24T06:18:19.010000"],["2024-07-24T06:18:20.010000"],["2024-07-24T06:18:21.010000"],["2024-07-24T06:18:22.010000"],["2024-07-24T06:18:23.010000"],["2024-07-24T06:18:24.010000"],["2024-07-24T06:18:25.010000"],["2024-07-24T06:18:26.010000"],["2024-07-24T06:18:27.010000"],["2024-07-24T06:18:28.010000"],["2024-07-24T06:18:29.010000"],["2024-07-24T06:18:30.010000"],["2024-07-24T06:18:31.010000"],["2024-07-24T06:18:32.010000"],["2024-07-24T06:18:33.010000"],["2024-07-24T06:18:34.010000"],["2024-07-24T06:18:35.010000"],["2024-07-24T06:18:36.010000"],["2024-07-24T06:18:37.010000"],["2024-07-24T06:18:38.010000"],["2024-07-24T06:18:39.010000"],["2024-07-24T06:18:40.010000"],["2024-07-24T06:18:41.010000"],["2024-07-24T06:18:42.010000"],["2024-07-24T06:18:43.010000"],["2024-07-24T06:18:44.010000"],["2024-07-24T06:18:45.010000"],["2024-07-24T06:18:46.010000"],["2024-07-24T06:18:47.010000"],["2024-07-24T06:18:48.010000"],["2024-07-24T06:18:49.010000"],["2024-07-24T06:18:50.010000"],["2024-07-24T06:18:51.010000"],["2024-07-24T06:18:52.010000"],["2024-07-24T06:18:53.010000"],["2024-07-24T06:18:54.010000"],["2024-07-24T06:18:55.010000"],["2024-07-24T06:18:56.010000"],["2024-07-24T06:18:57.010000"],["2024-07-24T06:18:58.010000"],["2024-07-24T06:18:59.010000"],["2024-07-24T06:19:00.010000"],["2024-07-24T06:19:01.010000"],["2024-07-24T06:19:02.010000"],["2024-07-24T06:19:03.010000"],["2024-07-24T06:19:04.010000"],["2024-07-24T06:19:05.010000"],["2024-07-24T06:19:06.010000"],["2024-07-24T06:19:07.010000"],["2024-07-24T06:19:08.010000"],["2024-07-24T06:19:09.010000"],["2024-07-24T06:19:10.010000"],["2024-07-24T06:19:11.010000"],["2024-07-24T06:19:12.010000"],["2024-07-24T06:19:13.010000"],["2024-07-24T06:19:14.010000"],["2024-07-24T06:19:15.010000"],["2024-07-24T06:19:16.010000"],["2024-07-24T06:19:17.010000"],["2024-07-24T06:19:18.010000"],["2024-07-24T06:19:19.010000"],["2024-07-24T06:19:20.010000"],["2024-07-24T06:19:21.010000"],["2024-07-24T06:19:22.010000"],["2024-07-24T06:19:23.010000"],["2024-07-24T06:19:24.010000"],["2024-07-24T06:19:25.010000"],["2024-07-24T06:19:26.010000"],["2024-07-24T06:19:27.010000"],["2024-07-24T06:19:28.010000"],["2024-07-24T06:19:29.010000"],["2024-07-24T06:19:30.010000"],["2024-07-24T06:19:31.010000"],["2024-07-24T06:19:32.010000"],["2024-07-24T06:19:33.010000"],["2024-07-24T06:19:34.010000"],["2024-07-24T06:19:35.010000"],["2024-07-24T06:19:36.010000"],["2024-07-24T06:19:37.010000"],["2024-07-24T06:19:38.010000"],["2024-07-24T06:19:39.010000"],["2024-07-24T06:19:40.010000"],["2024-07-24T06:19:41.010000"],["2024-07-24T06:19:42.010000"],["2024-07-24T06:19:43.010000"],["2024-07-24T06:19:44.010000"],["2024-07-24T06:19:45.010000"],["2024-07-24T06:19:46.010000"],["2024-07-24T06:19:47.010000"],["2024-07-24T06:19:48.010000"],["2024-07-24T06:19:49.010000"],["2024-07-24T06:19:50.010000"],["2024-07-24T06:19:51.010000"],["2024-07-24T06:19:52.010000"],["2024-07-24T06:19:53.010000"],["2024-07-24T06:19:54.010000"],["2024-07-24T06:19:55.010000"],["2024-07-24T06:19:56.010000"],["2024-07-24T06:19:57.010000"],["2024-07-24T06:19:58.010000"],["2024-07-24T06:19:59.010000"],["2024-07-24T06:20:00.010000"],["2024-07-24T06:20:01.010000"],["2024-07-24T06:20:02.010000"],["2024-07-24T06:20:03.010000"],["2024-07-24T06:20:04.010000"],["2024-07-24T06:20:05.010000"],["2024-07-24T06:20:06.010000"],["2024-07-24T06:20:07.010000"],["2024-07-24T06:20:08.010000"],["2024-07-24T06:20:09.010000"],["2024-07-24T06:20:10.010000"],["2024-07-24T06:20:11.010000"],["2024-07-24T06:20:12.010000"],["2024-07-24T06:20:13.010000"],["2024-07-24T06:20:14.010000"],["2024-07-24T06:20:15.010000"],["2024-07-24T06:20:16.010000"],["2024-07-24T06:20:17.010000"],["2024-07-24T06:20:18.010000"],["2024-07-24T06:20:19.010000"],["2024-07-24T06:20:20.010000"],["2024-07-24T06:20:21.010000"],["2024-07-24T06:20:22.010000"],["2024-07-24T06:20:23.010000"],["2024-07-24T06:20:24.010000"],["2024-07-24T06:20:25.010000"],["2024-07-24T06:20:26.010000"],["2024-07-24T06:20:27.010000"],["2024-07-24T06:20:28.010000"],["2024-07-24T06:20:29.010000"],["2024-07-24T06:20:30.010000"],["2024-07-24T06:20:31.010000"],["2024-07-24T06:20:32.010000"],["2024-07-24T06:20:33.010000"],["2024-07-24T06:20:34.010000"],["2024-07-24T06:20:35.010000"],["2024-07-24T06:20:36.010000"],["2024-07-24T06:20:37.010000"],["2024-07-24T06:20:38.010000"],["2024-07-24T06:20:39.010000"],["2024-07-24T06:20:40.010000"],["2024-07-24T06:20:41.010000"],["2024-07-24T06:20:42.010000"],["2024-07-24T06:20:43.010000"],["2024-07-24T06:20:44.010000"],["2024-07-24T06:20:45.010000"],["2024-07-24T06:20:46.010000"],["2024-07-24T06:20:47.010000"],["2024-07-24T06:20:48.010000"],["2024-07-24T06:20:49.010000"],["2024-07-24T06:20:50.010000"],["2024-07-24T06:20:51.010000"],["2024-07-24T06:20:52.010000"],["2024-07-24T06:20:53.010000"],["2024-07-24T06:20:54.010000"],["2024-07-24T06:20:55.010000"],["2024-07-24T06:20:56.010000"],["2024-07-24T06:20:57.010000"],["2024-07-24T06:20:58.010000"],["2024-07-24T06:20:59.010000"],["2024-07-24T06:21:00.010000"],["2024-07-24T06:21:01.010000"],["2024-07-24T06:21:02.010000"],["2024-07-24T06:21:03.010000"],["2024-07-24T06:21:04.010000"],["2024-07-24T06:21:05.010000"],["2024-07-24T06:21:06.010000"],["2024-07-24T06:21:07.010000"],["2024-07-24T06:21:08.010000"],["2024-07-24T06:21:09.010000"],["2024-07-24T06:21:10.010000"],["2024-07-24T06:21:11.010000"],["2024-07-24T06:21:12.010000"],["2024-07-24T06:21:13.010000"],["2024-07-24T06:21:14.010000"],["2024-07-24T06:21:15.010000"],["2024-07-24T06:21:16.010000"],["2024-07-24T06:21:17.010000"],["2024-07-24T06:21:18.010000"],["2024-07-24T06:21:19.010000"],["2024-07-24T06:21:20.010000"],["2024-07-24T06:21:21.010000"],["2024-07-24T06:21:22.010000"],["2024-07-24T06:21:23.010000"],["2024-07-24T06:21:24.010000"],["2024-07-24T06:21:25.010000"],["2024-07-24T06:21:26.010000"],["2024-07-24T06:21:27.010000"],["2024-07-24T06:21:28.010000"],["2024-07-24T06:21:29.010000"],["2024-07-24T06:21:30.010000"],["2024-07-24T06:21:31.010000"],["2024-07-24T06:21:32.010000"],["2024-07-24T06:21:33.010000"],["2024-07-24T06:21:34.010000"],["2024-07-24T06:21:35.010000"],["2024-07-24T06:21:36.010000"],["2024-07-24T06:21:37.010000"],["2024-07-24T06:21:38.010000"],["2024-07-24T06:21:39.010000"],["2024-07-24T06:21:40.010000"],["2024-07-24T06:21:41.010000"],["2024-07-24T06:21:42.010000"],["2024-07-24T06:21:43.010000"],["2024-07-24T06:21:44.010000"],["2024-07-24T06:21:45.010000"],["2024-07-24T06:21:46.010000"],["2024-07-24T06:21:47.010000"],["2024-07-24T06:21:48.010000"],["2024-07-24T06:21:49.010000"],["2024-07-24T06:21:50.010000"],["2024-07-24T06:21:51.010000"],["2024-07-24T06:21:52.010000"],["2024-07-24T06:21:53.010000"],["2024-07-24T06:21:54.010000"],["2024-07-24T06:21:55.010000"],["2024-07-24T06:21:56.010000"],["2024-07-24T06:21:57.010000"],["2024-07-24T06:21:58.010000"],["2024-07-24T06:21:59.010000"],["2024-07-24T06:22:00.010000"],["2024-07-24T06:22:01.010000"],["2024-07-24T06:22:02.010000"],["2024-07-24T06:22:03.010000"],["2024-07-24T06:22:04.010000"],["2024-07-24T06:22:05.010000"],["2024-07-24T06:22:06.010000"],["2024-07-24T06:22:07.010000"],["2024-07-24T06:22:08.010000"],["2024-07-24T06:22:09.010000"],["2024-07-24T06:22:10.010000"],["2024-07-24T06:22:11.010000"],["2024-07-24T06:22:12.010000"],["2024-07-24T06:22:13.010000"],["2024-07-24T06:22:14.010000"],["2024-07-24T06:22:15.010000"],["2024-07-24T06:22:16.010000"],["2024-07-24T06:22:17.010000"],["2024-07-24T06:22:18.010000"],["2024-07-24T06:22:19.010000"],["2024-07-24T06:22:20.010000"],["2024-07-24T06:22:21.010000"],["2024-07-24T06:22:22.010000"],["2024-07-24T06:22:23.010000"],["2024-07-24T06:22:24.010000"],["2024-07-24T06:22:25.010000"],["2024-07-24T06:22:26.010000"],["2024-07-24T06:22:27.010000"],["2024-07-24T06:22:28.010000"],["2024-07-24T06:22:29.010000"],["2024-07-24T06:22:30.010000"],["2024-07-24T06:22:31.010000"],["2024-07-24T06:22:32.010000"],["2024-07-24T06:22:33.010000"],["2024-07-24T06:22:34.010000"],["2024-07-24T06:22:35.010000"],["2024-07-24T06:22:36.010000"],["2024-07-24T06:22:37.010000"],["2024-07-24T06:22:38.010000"],["2024-07-24T06:22:39.010000"],["2024-07-24T06:22:40.010000"],["2024-07-24T06:22:41.010000"],["2024-07-24T06:22:42.010000"],["2024-07-24T06:22:43.010000"],["2024-07-24T06:22:44.010000"],["2024-07-24T06:22:45.010000"],["2024-07-24T06:22:46.010000"],["2024-07-24T06:22:47.010000"],["2024-07-24T06:22:48.010000"],["2024-07-24T06:22:49.010000"],["2024-07-24T06:22:50.010000"],["2024-07-24T06:22:51.010000"],["2024-07-24T06:22:52.010000"],["2024-07-24T06:22:53.010000"],["2024-07-24T06:22:54.010000"],["2024-07-24T06:22:55.010000"],["2024-07-24T06:22:56.010000"],["2024-07-24T06:22:57.010000"],["2024-07-24T06:22:58.010000"],["2024-07-24T06:22:59.010000"],["2024-07-24T06:23:00.010000"],["2024-07-24T06:23:01.010000"],["2024-07-24T06:23:02.010000"],["2024-07-24T06:23:03.010000"],["2024-07-24T06:23:04.010000"],["2024-07-24T06:23:05.010000"],["2024-07-24T06:23:06.010000"],["2024-07-24T06:23:07.010000"],["2024-07-24T06:23:08.010000"],["2024-07-24T06:23:09.010000"],["2024-07-24T06:23:10.010000"],["2024-07-24T06:23:11.010000"],["2024-07-24T06:23:12.010000"],["2024-07-24T06:23:13.010000"],["2024-07-24T06:23:14.010000"],["2024-07-24T06:23:15.010000"],["2024-07-24T06:23:16.010000"],["2024-07-24T06:23:17.010000"],["2024-07-24T06:23:18.010000"],["2024-07-24T06:23:19.010000"],["2024-07-24T06:23:20.010000"],["2024-07-24T06:23:21.010000"],["2024-07-24T06:23:22.010000"],["2024-07-24T06:23:23.010000"],["2024-07-24T06:23:24.010000"],["2024-07-24T06:23:25.010000"],["2024-07-24T06:23:26.010000"],["2024-07-24T06:23:27.010000"],["2024-07-24T06:23:28.010000"],["2024-07-24T06:23:29.010000"],["2024-07-24T06:23:30.010000"],["2024-07-24T06:23:31.010000"],["2024-07-24T06:23:32.010000"],["2024-07-24T06:23:33.010000"],["2024-07-24T06:23:34.010000"],["2024-07-24T06:23:35.010000"],["2024-07-24T06:23:36.010000"],["2024-07-24T06:23:37.010000"],["2024-07-24T06:23:38.010000"],["2024-07-24T06:23:39.010000"],["2024-07-24T06:23:40.010000"],["2024-07-24T06:23:41.010000"],["2024-07-24T06:23:42.010000"],["2024-07-24T06:23:43.010000"],["2024-07-24T06:23:44.010000"],["2024-07-24T06:23:45.010000"],["2024-07-24T06:23:46.010000"],["2024-07-24T06:23:47.010000"],["2024-07-24T06:23:48.010000"],["2024-07-24T06:23:49.010000"],["2024-07-24T06:23:50.010000"],["2024-07-24T06:23:51.010000"],["2024-07-24T06:23:52.010000"],["2024-07-24T06:23:53.010000"],["2024-07-24T06:23:54.010000"],["2024-07-24T06:23:55.010000"],["2024-07-24T06:23:56.010000"],["2024-07-24T06:23:57.010000"],["2024-07-24T06:23:58.010000"],["2024-07-24T06:23:59.010000"],["2024-07-24T06:24:00.010000"],["2024-07-24T06:24:01.010000"],["2024-07-24T06:24:02.010000"],["2024-07-24T06:24:03.010000"],["2024-07-24T06:24:04.010000"],["2024-07-24T06:24:05.010000"],["2024-07-24T06:24:06.010000"],["2024-07-24T06:24:07.010000"],["2024-07-24T06:24:08.010000"],["2024-07-24T06:24:09.010000"],["2024-07-24T06:24:10.010000"],["2024-07-24T06:24:11.010000"],["2024-07-24T06:24:12.010000"],["2024-07-24T06:24:13.010000"],["2024-07-24T06:24:14.010000"],["2024-07-24T06:24:15.010000"],["2024-07-24T06:24:16.010000"],["2024-07-24T06:24:17.010000"],["2024-07-24T06:24:18.010000"],["2024-07-24T06:24:19.010000"],["2024-07-24T06:24:20.010000"],["2024-07-24T06:24:21.010000"],["2024-07-24T06:24:22.010000"],["2024-07-24T06:24:23.010000"],["2024-07-24T06:24:24.010000"],["2024-07-24T06:24:25.010000"],["2024-07-24T06:24:26.010000"],["2024-07-24T06:24:27.010000"],["2024-07-24T06:24:28.010000"],["2024-07-24T06:24:29.010000"],["2024-07-24T06:24:30.010000"],["2024-07-24T06:24:31.010000"],["2024-07-24T06:24:32.010000"],["2024-07-24T06:24:33.010000"],["2024-07-24T06:24:34.010000"],["2024-07-24T06:24:35.010000"],["2024-07-24T06:24:36.010000"],["2024-07-24T06:24:37.010000"],["2024-07-24T06:24:38.010000"],["2024-07-24T06:24:39.010000"],["2024-07-24T06:24:40.010000"],["2024-07-24T06:24:41.010000"],["2024-07-24T06:24:42.010000"],["2024-07-24T06:24:43.010000"],["2024-07-24T06:24:44.010000"],["2024-07-24T06:24:45.010000"],["2024-07-24T06:24:46.010000"],["2024-07-24T06:24:47.010000"],["2024-07-24T06:24:48.010000"],["2024-07-24T06:24:49.010000"],["2024-07-24T06:24:50.010000"],["2024-07-24T06:24:51.010000"],["2024-07-24T06:24:52.010000"],["2024-07-24T06:24:53.010000"],["2024-07-24T06:24:54.010000"],["2024-07-24T06:24:55.010000"],["2024-07-24T06:24:56.010000"],["2024-07-24T06:24:57.010000"],["2024-07-24T06:24:58.010000"],["2024-07-24T06:24:59.010000"],["2024-07-24T06:25:00.010000"],["2024-07-24T06:25:01.010000"],["2024-07-24T06:25:02.010000"],["2024-07-24T06:25:03.010000"],["2024-07-24T06:25:04.010000"],["2024-07-24T06:25:05.010000"],["2024-07-24T06:25:06.010000"],["2024-07-24T06:25:07.010000"],["2024-07-24T06:25:08.010000"],["2024-07-24T06:25:09.010000"],["2024-07-24T06:25:10.010000"],["2024-07-24T06:25:11.010000"],["2024-07-24T06:25:12.010000"],["2024-07-24T06:25:13.010000"],["2024-07-24T06:25:14.010000"],["2024-07-24T06:25:15.010000"],["2024-07-24T06:25:16.010000"],["2024-07-24T06:25:17.010000"],["2024-07-24T06:25:18.010000"],["2024-07-24T06:25:19.010000"],["2024-07-24T06:25:20.010000"],["2024-07-24T06:25:21.010000"],["2024-07-24T06:25:22.010000"],["2024-07-24T06:25:23.010000"],["2024-07-24T06:25:24.010000"],["2024-07-24T06:25:25.010000"],["2024-07-24T06:25:26.010000"],["2024-07-24T06:25:27.010000"],["2024-07-24T06:25:28.010000"],["2024-07-24T06:25:29.010000"],["2024-07-24T06:25:30.010000"],["2024-07-24T06:25:31.010000"],["2024-07-24T06:25:32.010000"],["2024-07-24T06:25:33.010000"],["2024-07-24T06:25:34.010000"],["2024-07-24T06:25:35.010000"],["2024-07-24T06:25:36.010000"],["2024-07-24T06:25:37.010000"],["2024-07-24T06:25:38.010000"],["2024-07-24T06:25:39.010000"],["2024-07-24T06:25:40.010000"],["2024-07-24T06:25:41.010000"],["2024-07-24T06:25:42.010000"],["2024-07-24T06:25:43.010000"],["2024-07-24T06:25:44.010000"],["2024-07-24T06:25:45.010000"],["2024-07-24T06:25:46.010000"],["2024-07-24T06:25:47.010000"],["2024-07-24T06:25:48.010000"],["2024-07-24T06:25:49.010000"],["2024-07-24T06:25:50.010000"],["2024-07-24T06:25:51.010000"],["2024-07-24T06:25:52.010000"],["2024-07-24T06:25:53.010000"],["2024-07-24T06:25:54.010000"],["2024-07-24T06:25:55.010000"],["2024-07-24T06:25:56.010000"],["2024-07-24T06:25:57.010000"],["2024-07-24T06:25:58.010000"],["2024-07-24T06:25:59.010000"],["2024-07-24T06:26:00.010000"],["2024-07-24T06:26:01.010000"],["2024-07-24T06:26:02.010000"],["2024-07-24T06:26:03.010000"],["2024-07-24T06:26:04.010000"],["2024-07-24T06:26:05.010000"],["2024-07-24T06:26:06.010000"],["2024-07-24T06:26:07.010000"],["2024-07-24T06:26:08.010000"],["2024-07-24T06:26:09.010000"],["2024-07-24T06:26:10.010000"],["2024-07-24T06:26:11.010000"],["2024-07-24T06:26:12.010000"],["2024-07-24T06:26:13.010000"],["2024-07-24T06:26:14.010000"],["2024-07-24T06:26:15.010000"],["2024-07-24T06:26:16.010000"],["2024-07-24T06:26:17.010000"],["2024-07-24T06:26:18.010000"],["2024-07-24T06:26:19.010000"],["2024-07-24T06:26:20.010000"],["2024-07-24T06:26:21.010000"],["2024-07-24T06:26:22.010000"],["2024-07-24T06:26:23.010000"],["2024-07-24T06:26:24.010000"],["2024-07-24T06:26:25.010000"],["2024-07-24T06:26:26.010000"],["2024-07-24T06:26:27.010000"],["2024-07-24T06:26:28.010000"],["2024-07-24T06:26:29.010000"],["2024-07-24T06:26:30.010000"],["2024-07-24T06:26:31.010000"],["2024-07-24T06:26:32.010000"],["2024-07-24T06:26:33.010000"],["2024-07-24T06:26:34.010000"],["2024-07-24T06:26:35.010000"],["2024-07-24T06:26:36.010000"],["2024-07-24T06:26:37.010000"],["2024-07-24T06:26:38.010000"],["2024-07-24T06:26:39.010000"],["2024-07-24T06:26:40.010000"],["2024-07-24T06:26:41.010000"],["2024-07-24T06:26:42.010000"],["2024-07-24T06:26:43.010000"],["2024-07-24T06:26:44.010000"],["2024-07-24T06:26:45.010000"],["2024-07-24T06:26:46.010000"],["2024-07-24T06:26:47.010000"],["2024-07-24T06:26:48.010000"],["2024-07-24T06:26:49.010000"],["2024-07-24T06:26:50.010000"],["2024-07-24T06:26:51.010000"],["2024-07-24T06:26:52.010000"],["2024-07-24T06:26:53.010000"],["2024-07-24T06:26:54.010000"],["2024-07-24T06:26:55.010000"],["2024-07-24T06:26:56.010000"],["2024-07-24T06:26:57.010000"],["2024-07-24T06:26:58.010000"],["2024-07-24T06:26:59.010000"],["2024-07-24T06:27:00.010000"],["2024-07-24T06:27:01.010000"],["2024-07-24T06:27:02.010000"],["2024-07-24T06:27:03.010000"],["2024-07-24T06:27:04.010000"],["2024-07-24T06:27:05.010000"],["2024-07-24T06:27:06.010000"],["2024-07-24T06:27:07.010000"],["2024-07-24T06:27:08.010000"],["2024-07-24T06:27:09.010000"],["2024-07-24T06:27:10.010000"],["2024-07-24T06:27:11.010000"],["2024-07-24T06:27:12.010000"],["2024-07-24T06:27:13.010000"],["2024-07-24T06:27:14.010000"],["2024-07-24T06:27:15.010000"],["2024-07-24T06:27:16.010000"],["2024-07-24T06:27:17.010000"],["2024-07-24T06:27:18.010000"],["2024-07-24T06:27:19.010000"],["2024-07-24T06:27:20.010000"],["2024-07-24T06:27:21.010000"],["2024-07-24T06:27:22.010000"],["2024-07-24T06:27:23.010000"],["2024-07-24T06:27:24.010000"],["2024-07-24T06:27:25.010000"],["2024-07-24T06:27:26.010000"],["2024-07-24T06:27:27.010000"],["2024-07-24T06:27:28.010000"],["2024-07-24T06:27:29.010000"],["2024-07-24T06:27:30.010000"],["2024-07-24T06:27:31.010000"],["2024-07-24T06:27:32.010000"],["2024-07-24T06:27:33.010000"],["2024-07-24T06:27:34.010000"],["2024-07-24T06:27:35.010000"],["2024-07-24T06:27:36.010000"],["2024-07-24T06:27:37.010000"],["2024-07-24T06:27:38.010000"],["2024-07-24T06:27:39.010000"],["2024-07-24T06:27:40.010000"],["2024-07-24T06:27:41.010000"],["2024-07-24T06:27:42.010000"],["2024-07-24T06:27:43.010000"],["2024-07-24T06:27:44.010000"],["2024-07-24T06:27:45.010000"],["2024-07-24T06:27:46.010000"],["2024-07-24T06:27:47.010000"],["2024-07-24T06:27:48.010000"],["2024-07-24T06:27:49.010000"],["2024-07-24T06:27:50.010000"],["2024-07-24T06:27:51.010000"],["2024-07-24T06:27:52.010000"],["2024-07-24T06:27:53.010000"],["2024-07-24T06:27:54.010000"],["2024-07-24T06:27:55.010000"],["2024-07-24T06:27:56.010000"],["2024-07-24T06:27:57.010000"],["2024-07-24T06:27:58.010000"],["2024-07-24T06:27:59.010000"],["2024-07-24T06:28:00.010000"],["2024-07-24T06:28:01.010000"],["2024-07-24T06:28:02.010000"],["2024-07-24T06:28:03.010000"],["2024-07-24T06:28:04.010000"],["2024-07-24T06:28:05.010000"],["2024-07-24T06:28:06.010000"],["2024-07-24T06:28:07.010000"],["2024-07-24T06:28:08.010000"],["2024-07-24T06:28:09.010000"],["2024-07-24T06:28:10.010000"],["2024-07-24T06:28:11.010000"],["2024-07-24T06:28:12.010000"],["2024-07-24T06:28:13.010000"],["2024-07-24T06:28:14.010000"],["2024-07-24T06:28:15.010000"],["2024-07-24T06:28:16.010000"],["2024-07-24T06:28:17.010000"],["2024-07-24T06:28:18.010000"],["2024-07-24T06:28:19.010000"],["2024-07-24T06:28:20.010000"],["2024-07-24T06:28:21.010000"],["2024-07-24T06:28:22.010000"],["2024-07-24T06:28:23.010000"],["2024-07-24T06:28:24.010000"],["2024-07-24T06:28:25.010000"],["2024-07-24T06:28:26.010000"],["2024-07-24T06:28:27.010000"],["2024-07-24T06:28:28.010000"],["2024-07-24T06:28:29.010000"],["2024-07-24T06:28:30.010000"],["2024-07-24T06:28:31.010000"],["2024-07-24T06:28:32.010000"],["2024-07-24T06:28:33.010000"],["2024-07-24T06:28:34.010000"],["2024-07-24T06:28:35.010000"],["2024-07-24T06:28:36.010000"],["2024-07-24T06:28:37.010000"],["2024-07-24T06:28:38.010000"],["2024-07-24T06:28:39.010000"],["2024-07-24T06:28:40.010000"],["2024-07-24T06:28:41.010000"],["2024-07-24T06:28:42.010000"],["2024-07-24T06:28:43.010000"],["2024-07-24T06:28:44.010000"],["2024-07-24T06:28:45.010000"],["2024-07-24T06:28:46.010000"],["2024-07-24T06:28:47.010000"],["2024-07-24T06:28:48.010000"],["2024-07-24T06:28:49.010000"],["2024-07-24T06:28:50.010000"],["2024-07-24T06:28:51.010000"],["2024-07-24T06:28:52.010000"],["2024-07-24T06:28:53.010000"],["2024-07-24T06:28:54.010000"],["2024-07-24T06:28:55.010000"],["2024-07-24T06:28:56.010000"],["2024-07-24T06:28:57.010000"],["2024-07-24T06:28:58.010000"],["2024-07-24T06:28:59.010000"],["2024-07-24T06:29:00.010000"],["2024-07-24T06:29:01.010000"],["2024-07-24T06:29:02.010000"],["2024-07-24T06:29:03.010000"],["2024-07-24T06:29:04.010000"],["2024-07-24T06:29:05.010000"],["2024-07-24T06:29:06.010000"],["2024-07-24T06:29:07.010000"],["2024-07-24T06:29:08.010000"],["2024-07-24T06:29:09.010000"],["2024-07-24T06:29:10.010000"],["2024-07-24T06:29:11.010000"],["2024-07-24T06:29:12.010000"],["2024-07-24T06:29:13.010000"],["2024-07-24T06:29:14.010000"],["2024-07-24T06:29:15.010000"],["2024-07-24T06:29:16.010000"],["2024-07-24T06:29:17.010000"],["2024-07-24T06:29:18.010000"],["2024-07-24T06:29:19.010000"],["2024-07-24T06:29:20.010000"],["2024-07-24T06:29:21.010000"],["2024-07-24T06:29:22.010000"],["2024-07-24T06:29:23.010000"],["2024-07-24T06:29:24.010000"],["2024-07-24T06:29:25.010000"],["2024-07-24T06:29:26.010000"],["2024-07-24T06:29:27.010000"],["2024-07-24T06:29:28.010000"],["2024-07-24T06:29:29.010000"],["2024-07-24T06:29:30.010000"],["2024-07-24T06:29:31.010000"],["2024-07-24T06:29:32.010000"],["2024-07-24T06:29:33.010000"],["2024-07-24T06:29:34.010000"],["2024-07-24T06:29:35.010000"],["2024-07-24T06:29:36.010000"],["2024-07-24T06:29:37.010000"],["2024-07-24T06:29:38.010000"],["2024-07-24T06:29:39.010000"],["2024-07-24T06:29:40.010000"],["2024-07-24T06:29:41.010000"],["2024-07-24T06:29:42.010000"],["2024-07-24T06:29:43.010000"],["2024-07-24T06:29:44.010000"],["2024-07-24T06:29:45.010000"],["2024-07-24T06:29:46.010000"],["2024-07-24T06:29:47.010000"],["2024-07-24T06:29:48.010000"],["2024-07-24T06:29:49.010000"],["2024-07-24T06:29:50.010000"],["2024-07-24T06:29:51.010000"],["2024-07-24T06:29:52.010000"],["2024-07-24T06:29:53.010000"],["2024-07-24T06:29:54.010000"],["2024-07-24T06:29:55.010000"],["2024-07-24T06:29:56.010000"],["2024-07-24T06:29:57.010000"],["2024-07-24T06:29:58.010000"],["2024-07-24T06:29:59.010000"],["2024-07-24T06:30:00.010000"],["2024-07-24T06:30:01.010000"],["2024-07-24T06:30:02.010000"],["2024-07-24T06:30:03.010000"],["2024-07-24T06:30:04.010000"],["2024-07-24T06:30:05.010000"],["2024-07-24T06:30:06.010000"],["2024-07-24T06:30:07.010000"],["2024-07-24T06:30:08.010000"],["2024-07-24T06:30:09.010000"],["2024-07-24T06:30:10.010000"],["2024-07-24T06:30:11.010000"],["2024-07-24T06:30:12.010000"],["2024-07-24T06:30:13.010000"],["2024-07-24T06:30:14.010000"],["2024-07-24T06:30:15.010000"],["2024-07-24T06:30:16.010000"],["2024-07-24T06:30:17.010000"],["2024-07-24T06:30:18.010000"],["2024-07-24T06:30:19.010000"],["2024-07-24T06:30:20.010000"],["2024-07-24T06:30:21.010000"],["2024-07-24T06:30:22.010000"],["2024-07-24T06:30:23.010000"],["2024-07-24T06:30:24.010000"],["2024-07-24T06:30:25.010000"],["2024-07-24T06:30:26.010000"],["2024-07-24T06:30:27.010000"],["2024-07-24T06:30:28.010000"],["2024-07-24T06:30:29.010000"],["2024-07-24T06:30:30.010000"],["2024-07-24T06:30:31.010000"],["2024-07-24T06:30:32.010000"],["2024-07-24T06:30:33.010000"],["2024-07-24T06:30:34.010000"],["2024-07-24T06:30:35.010000"],["2024-07-24T06:30:36.010000"],["2024-07-24T06:30:37.010000"],["2024-07-24T06:30:38.010000"],["2024-07-24T06:30:39.010000"],["2024-07-24T06:30:40.010000"],["2024-07-24T06:30:41.010000"],["2024-07-24T06:30:42.010000"],["2024-07-24T06:30:43.010000"],["2024-07-24T06:30:44.010000"],["2024-07-24T06:30:45.010000"],["2024-07-24T06:30:46.010000"],["2024-07-24T06:30:47.010000"],["2024-07-24T06:30:48.010000"],["2024-07-24T06:30:49.010000"],["2024-07-24T06:30:50.010000"],["2024-07-24T06:30:51.010000"],["2024-07-24T06:30:52.010000"],["2024-07-24T06:30:53.010000"],["2024-07-24T06:30:54.010000"],["2024-07-24T06:30:55.010000"],["2024-07-24T06:30:56.010000"],["2024-07-24T06:30:57.010000"],["2024-07-24T06:30:58.010000"],["2024-07-24T06:30:59.010000"],["2024-07-24T06:31:00.010000"],["2024-07-24T06:31:01.010000"],["2024-07-24T06:31:02.010000"],["2024-07-24T06:31:03.010000"],["2024-07-24T06:31:04.010000"],["2024-07-24T06:31:05.010000"],["2024-07-24T06:31:06.010000"],["2024-07-24T06:31:07.010000"],["2024-07-24T06:31:08.010000"],["2024-07-24T06:31:09.010000"],["2024-07-24T06:31:10.010000"],["2024-07-24T06:31:11.010000"],["2024-07-24T06:31:12.010000"],["2024-07-24T06:31:13.010000"],["2024-07-24T06:31:14.010000"],["2024-07-24T06:31:15.010000"],["2024-07-24T06:31:16.010000"],["2024-07-24T06:31:17.010000"],["2024-07-24T06:31:18.010000"],["2024-07-24T06:31:19.010000"],["2024-07-24T06:31:20.010000"],["2024-07-24T06:31:21.010000"],["2024-07-24T06:31:22.010000"],["2024-07-24T06:31:23.010000"],["2024-07-24T06:31:24.010000"],["2024-07-24T06:31:25.010000"],["2024-07-24T06:31:26.010000"],["2024-07-24T06:31:27.010000"],["2024-07-24T06:31:28.010000"],["2024-07-24T06:31:29.010000"],["2024-07-24T06:31:30.010000"],["2024-07-24T06:31:31.010000"],["2024-07-24T06:31:32.010000"],["2024-07-24T06:31:33.010000"],["2024-07-24T06:31:34.010000"],["2024-07-24T06:31:35.010000"],["2024-07-24T06:31:36.010000"],["2024-07-24T06:31:37.010000"],["2024-07-24T06:31:38.010000"],["2024-07-24T06:31:39.010000"],["2024-07-24T06:31:40.010000"],["2024-07-24T06:31:41.010000"],["2024-07-24T06:31:42.010000"],["2024-07-24T06:31:43.010000"],["2024-07-24T06:31:44.010000"],["2024-07-24T06:31:45.010000"],["2024-07-24T06:31:46.010000"],["2024-07-24T06:31:47.010000"],["2024-07-24T06:31:48.010000"],["2024-07-24T06:31:49.010000"],["2024-07-24T06:31:50.010000"],["2024-07-24T06:31:51.010000"],["2024-07-24T06:31:52.010000"],["2024-07-24T06:31:53.010000"],["2024-07-24T06:31:54.010000"],["2024-07-24T06:31:55.010000"],["2024-07-24T06:31:56.010000"],["2024-07-24T06:31:57.010000"],["2024-07-24T06:31:58.010000"],["2024-07-24T06:31:59.010000"],["2024-07-24T06:32:00.010000"],["2024-07-24T06:32:01.010000"],["2024-07-24T06:32:02.010000"],["2024-07-24T06:32:03.010000"],["2024-07-24T06:32:04.010000"],["2024-07-24T06:32:05.010000"],["2024-07-24T06:32:06.010000"],["2024-07-24T06:32:07.010000"],["2024-07-24T06:32:08.010000"],["2024-07-24T06:32:09.010000"],["2024-07-24T06:32:10.010000"],["2024-07-24T06:32:11.010000"],["2024-07-24T06:32:12.010000"],["2024-07-24T06:32:13.010000"],["2024-07-24T06:32:14.010000"],["2024-07-24T06:32:15.010000"],["2024-07-24T06:32:16.010000"],["2024-07-24T06:32:17.010000"],["2024-07-24T06:32:18.010000"],["2024-07-24T06:32:19.010000"],["2024-07-24T06:32:20.010000"],["2024-07-24T06:32:21.010000"],["2024-07-24T06:32:22.010000"],["2024-07-24T06:32:23.010000"],["2024-07-24T06:32:24.010000"],["2024-07-24T06:32:25.010000"],["2024-07-24T06:32:26.010000"],["2024-07-24T06:32:27.010000"],["2024-07-24T06:32:28.010000"],["2024-07-24T06:32:29.010000"],["2024-07-24T06:32:30.010000"],["2024-07-24T06:32:31.010000"],["2024-07-24T06:32:32.010000"],["2024-07-24T06:32:33.010000"],["2024-07-24T06:32:34.010000"],["2024-07-24T06:32:35.010000"],["2024-07-24T06:32:36.010000"],["2024-07-24T06:32:37.010000"],["2024-07-24T06:32:38.010000"],["2024-07-24T06:32:39.010000"],["2024-07-24T06:32:40.010000"],["2024-07-24T06:32:41.010000"],["2024-07-24T06:32:42.010000"],["2024-07-24T06:32:43.010000"],["2024-07-24T06:32:44.010000"],["2024-07-24T06:32:45.010000"],["2024-07-24T06:32:46.010000"],["2024-07-24T06:32:47.010000"],["2024-07-24T06:32:48.010000"],["2024-07-24T06:32:49.010000"],["2024-07-24T06:32:50.010000"],["2024-07-24T06:32:51.010000"],["2024-07-24T06:32:52.010000"],["2024-07-24T06:32:53.010000"],["2024-07-24T06:32:54.010000"],["2024-07-24T06:32:55.010000"],["2024-07-24T06:32:56.010000"],["2024-07-24T06:32:57.010000"],["2024-07-24T06:32:58.010000"],["2024-07-24T06:32:59.010000"],["2024-07-24T06:33:00.010000"],["2024-07-24T06:33:01.010000"],["2024-07-24T06:33:02.010000"],["2024-07-24T06:33:03.010000"],["2024-07-24T06:33:04.010000"],["2024-07-24T06:33:05.010000"],["2024-07-24T06:33:06.010000"],["2024-07-24T06:33:07.010000"],["2024-07-24T06:33:08.010000"],["2024-07-24T06:33:09.010000"],["2024-07-24T06:33:10.010000"],["2024-07-24T06:33:11.010000"],["2024-07-24T06:33:12.010000"],["2024-07-24T06:33:13.010000"],["2024-07-24T06:33:14.010000"],["2024-07-24T06:33:15.010000"],["2024-07-24T06:33:16.010000"],["2024-07-24T06:33:17.010000"],["2024-07-24T06:33:18.010000"],["2024-07-24T06:33:19.010000"],["2024-07-24T06:33:20.010000"],["2024-07-24T06:33:21.010000"],["2024-07-24T06:33:22.010000"],["2024-07-24T06:33:23.010000"],["2024-07-24T06:33:24.010000"],["2024-07-24T06:33:25.010000"],["2024-07-24T06:33:26.010000"],["2024-07-24T06:33:27.010000"],["2024-07-24T06:33:28.010000"],["2024-07-24T06:33:29.010000"],["2024-07-24T06:33:30.010000"],["2024-07-24T06:33:31.010000"],["2024-07-24T06:33:32.010000"],["2024-07-24T06:33:33.010000"],["2024-07-24T06:33:34.010000"],["2024-07-24T06:33:35.010000"],["2024-07-24T06:33:36.010000"],["2024-07-24T06:33:37.010000"],["2024-07-24T06:33:38.010000"],["2024-07-24T06:33:39.010000"],["2024-07-24T06:33:40.010000"],["2024-07-24T06:33:41.010000"],["2024-07-24T06:33:42.010000"],["2024-07-24T06:33:43.010000"],["2024-07-24T06:33:44.010000"],["2024-07-24T06:33:45.010000"],["2024-07-24T06:33:46.010000"],["2024-07-24T06:33:47.010000"],["2024-07-24T06:33:48.010000"],["2024-07-24T06:33:49.010000"],["2024-07-24T06:33:50.010000"],["2024-07-24T06:33:51.010000"],["2024-07-24T06:33:52.010000"],["2024-07-24T06:33:53.010000"],["2024-07-24T06:33:54.010000"],["2024-07-24T06:33:55.010000"],["2024-07-24T06:33:56.010000"],["2024-07-24T06:33:57.010000"],["2024-07-24T06:33:58.010000"],["2024-07-24T06:33:59.010000"],["2024-07-24T06:34:00.010000"],["2024-07-24T06:34:01.010000"],["2024-07-24T06:34:02.010000"],["2024-07-24T06:34:03.010000"],["2024-07-24T06:34:04.010000"],["2024-07-24T06:34:05.010000"],["2024-07-24T06:34:06.010000"],["2024-07-24T06:34:07.010000"],["2024-07-24T06:34:08.010000"],["2024-07-24T06:34:09.010000"],["2024-07-24T06:34:10.010000"],["2024-07-24T06:34:11.010000"],["2024-07-24T06:34:12.010000"],["2024-07-24T06:34:13.010000"],["2024-07-24T06:34:14.010000"],["2024-07-24T06:34:15.010000"],["2024-07-24T06:34:16.010000"],["2024-07-24T06:34:17.010000"],["2024-07-24T06:34:18.010000"],["2024-07-24T06:34:19.010000"],["2024-07-24T06:34:20.010000"],["2024-07-24T06:34:21.010000"],["2024-07-24T06:34:22.010000"],["2024-07-24T06:34:23.010000"],["2024-07-24T06:34:24.010000"],["2024-07-24T06:34:25.010000"],["2024-07-24T06:34:26.010000"],["2024-07-24T06:34:27.010000"],["2024-07-24T06:34:28.010000"],["2024-07-24T06:34:29.010000"],["2024-07-24T06:34:30.010000"],["2024-07-24T06:34:31.010000"],["2024-07-24T06:34:32.010000"],["2024-07-24T06:34:33.010000"],["2024-07-24T06:34:34.010000"],["2024-07-24T06:34:35.010000"],["2024-07-24T06:34:36.010000"],["2024-07-24T06:34:37.010000"],["2024-07-24T06:34:38.010000"],["2024-07-24T06:34:39.010000"],["2024-07-24T06:34:40.010000"],["2024-07-24T06:34:41.010000"],["2024-07-24T06:34:42.010000"],["2024-07-24T06:34:43.010000"],["2024-07-24T06:34:44.010000"],["2024-07-24T06:34:45.010000"],["2024-07-24T06:34:46.010000"],["2024-07-24T06:34:47.010000"],["2024-07-24T06:34:48.010000"],["2024-07-24T06:34:49.010000"],["2024-07-24T06:34:50.010000"],["2024-07-24T06:34:51.010000"],["2024-07-24T06:34:52.010000"],["2024-07-24T06:34:53.010000"],["2024-07-24T06:34:54.010000"],["2024-07-24T06:34:55.010000"],["2024-07-24T06:34:56.010000"],["2024-07-24T06:34:57.010000"],["2024-07-24T06:34:58.010000"],["2024-07-24T06:34:59.010000"],["2024-07-24T06:35:00.010000"],["2024-07-24T06:35:01.010000"],["2024-07-24T06:35:02.010000"],["2024-07-24T06:35:03.010000"],["2024-07-24T06:35:04.010000"],["2024-07-24T06:35:05.010000"],["2024-07-24T06:35:06.010000"],["2024-07-24T06:35:07.010000"],["2024-07-24T06:35:08.010000"],["2024-07-24T06:35:09.010000"],["2024-07-24T06:35:10.010000"],["2024-07-24T06:35:11.010000"],["2024-07-24T06:35:12.010000"],["2024-07-24T06:35:13.010000"],["2024-07-24T06:35:14.010000"],["2024-07-24T06:35:15.010000"],["2024-07-24T06:35:16.010000"],["2024-07-24T06:35:17.010000"],["2024-07-24T06:35:18.010000"],["2024-07-24T06:35:19.010000"],["2024-07-24T06:35:20.010000"],["2024-07-24T06:35:21.010000"],["2024-07-24T06:35:22.010000"],["2024-07-24T06:35:23.010000"],["2024-07-24T06:35:24.010000"],["2024-07-24T06:35:25.010000"],["2024-07-24T06:35:26.010000"],["2024-07-24T06:35:27.010000"],["2024-07-24T06:35:28.010000"],["2024-07-24T06:35:29.010000"],["2024-07-24T06:35:30.010000"],["2024-07-24T06:35:31.010000"],["2024-07-24T06:35:32.010000"],["2024-07-24T06:35:33.010000"],["2024-07-24T06:35:34.010000"],["2024-07-24T06:35:35.010000"],["2024-07-24T06:35:36.010000"],["2024-07-24T06:35:37.010000"],["2024-07-24T06:35:38.010000"],["2024-07-24T06:35:39.010000"],["2024-07-24T06:35:40.010000"],["2024-07-24T06:35:41.010000"],["2024-07-24T06:35:42.010000"],["2024-07-24T06:35:43.010000"],["2024-07-24T06:35:44.010000"],["2024-07-24T06:35:45.010000"],["2024-07-24T06:35:46.010000"],["2024-07-24T06:35:47.010000"],["2024-07-24T06:35:48.010000"],["2024-07-24T06:35:49.010000"],["2024-07-24T06:35:50.010000"],["2024-07-24T06:35:51.010000"],["2024-07-24T06:35:52.010000"],["2024-07-24T06:35:53.010000"],["2024-07-24T06:35:54.010000"],["2024-07-24T06:35:55.010000"],["2024-07-24T06:35:56.010000"],["2024-07-24T06:35:57.010000"],["2024-07-24T06:35:58.010000"],["2024-07-24T06:35:59.010000"],["2024-07-24T06:36:00.010000"],["2024-07-24T06:36:01.010000"],["2024-07-24T06:36:02.010000"],["2024-07-24T06:36:03.010000"],["2024-07-24T06:36:04.010000"],["2024-07-24T06:36:05.010000"],["2024-07-24T06:36:06.010000"],["2024-07-24T06:36:07.010000"],["2024-07-24T06:36:08.010000"],["2024-07-24T06:36:09.010000"],["2024-07-24T06:36:10.010000"],["2024-07-24T06:36:11.010000"],["2024-07-24T06:36:12.010000"],["2024-07-24T06:36:13.010000"],["2024-07-24T06:36:14.010000"],["2024-07-24T06:36:15.010000"],["2024-07-24T06:36:16.010000"],["2024-07-24T06:36:17.010000"],["2024-07-24T06:36:18.010000"],["2024-07-24T06:36:19.010000"],["2024-07-24T06:36:20.010000"],["2024-07-24T06:36:21.010000"],["2024-07-24T06:36:22.010000"],["2024-07-24T06:36:23.010000"],["2024-07-24T06:36:24.010000"],["2024-07-24T06:36:25.010000"],["2024-07-24T06:36:26.010000"],["2024-07-24T06:36:27.010000"],["2024-07-24T06:36:28.010000"],["2024-07-24T06:36:29.010000"],["2024-07-24T06:36:30.010000"],["2024-07-24T06:36:31.010000"],["2024-07-24T06:36:32.010000"],["2024-07-24T06:36:33.010000"],["2024-07-24T06:36:34.010000"],["2024-07-24T06:36:35.010000"],["2024-07-24T06:36:36.010000"],["2024-07-24T06:36:37.010000"],["2024-07-24T06:36:38.010000"],["2024-07-24T06:36:39.010000"],["2024-07-24T06:36:40.010000"],["2024-07-24T06:36:41.010000"],["2024-07-24T06:36:42.010000"],["2024-07-24T06:36:43.010000"],["2024-07-24T06:36:44.010000"],["2024-07-24T06:36:45.010000"],["2024-07-24T06:36:46.010000"],["2024-07-24T06:36:47.010000"],["2024-07-24T06:36:48.010000"],["2024-07-24T06:36:49.010000"],["2024-07-24T06:36:50.010000"],["2024-07-24T06:36:51.010000"],["2024-07-24T06:36:52.010000"],["2024-07-24T06:36:53.010000"],["2024-07-24T06:36:54.010000"],["2024-07-24T06:36:55.010000"],["2024-07-24T06:36:56.010000"],["2024-07-24T06:36:57.010000"],["2024-07-24T06:36:58.010000"],["2024-07-24T06:36:59.010000"],["2024-07-24T06:37:00.010000"],["2024-07-24T06:37:01.010000"],["2024-07-24T06:37:02.010000"],["2024-07-24T06:37:03.010000"],["2024-07-24T06:37:04.010000"],["2024-07-24T06:37:05.010000"],["2024-07-24T06:37:06.010000"],["2024-07-24T06:37:07.010000"],["2024-07-24T06:37:08.010000"],["2024-07-24T06:37:09.010000"],["2024-07-24T06:37:10.010000"],["2024-07-24T06:37:11.010000"],["2024-07-24T06:37:12.010000"],["2024-07-24T06:37:13.010000"],["2024-07-24T06:37:14.010000"],["2024-07-24T06:37:15.010000"],["2024-07-24T06:37:16.010000"],["2024-07-24T06:37:17.010000"],["2024-07-24T06:37:18.010000"],["2024-07-24T06:37:19.010000"],["2024-07-24T06:37:20.010000"],["2024-07-24T06:37:21.010000"],["2024-07-24T06:37:22.010000"],["2024-07-24T06:37:23.010000"],["2024-07-24T06:37:24.010000"],["2024-07-24T06:37:25.010000"],["2024-07-24T06:37:26.010000"],["2024-07-24T06:37:27.010000"],["2024-07-24T06:37:28.010000"],["2024-07-24T06:37:29.010000"],["2024-07-24T06:37:30.010000"],["2024-07-24T06:37:31.010000"],["2024-07-24T06:37:32.010000"],["2024-07-24T06:37:33.010000"],["2024-07-24T06:37:34.010000"],["2024-07-24T06:37:35.010000"],["2024-07-24T06:37:36.010000"],["2024-07-24T06:37:37.010000"],["2024-07-24T06:37:38.010000"],["2024-07-24T06:37:39.010000"],["2024-07-24T06:37:40.010000"],["2024-07-24T06:37:41.010000"],["2024-07-24T06:37:42.010000"],["2024-07-24T06:37:43.010000"],["2024-07-24T06:37:44.010000"],["2024-07-24T06:37:45.010000"],["2024-07-24T06:37:46.010000"],["2024-07-24T06:37:47.010000"],["2024-07-24T06:37:48.010000"],["2024-07-24T06:37:49.010000"],["2024-07-24T06:37:50.010000"],["2024-07-24T06:37:51.010000"],["2024-07-24T06:37:52.010000"],["2024-07-24T06:37:53.010000"],["2024-07-24T06:37:54.010000"],["2024-07-24T06:37:55.010000"],["2024-07-24T06:37:56.010000"],["2024-07-24T06:37:57.010000"],["2024-07-24T06:37:58.010000"],["2024-07-24T06:37:59.010000"],["2024-07-24T06:38:00.010000"],["2024-07-24T06:38:01.010000"],["2024-07-24T06:38:02.010000"],["2024-07-24T06:38:03.010000"],["2024-07-24T06:38:04.010000"],["2024-07-24T06:38:05.010000"],["2024-07-24T06:38:06.010000"],["2024-07-24T06:38:07.010000"],["2024-07-24T06:38:08.010000"],["2024-07-24T06:38:09.010000"],["2024-07-24T06:38:10.010000"],["2024-07-24T06:38:11.010000"],["2024-07-24T06:38:12.010000"],["2024-07-24T06:38:13.010000"],["2024-07-24T06:38:14.010000"],["2024-07-24T06:38:15.010000"],["2024-07-24T06:38:16.010000"],["2024-07-24T06:38:17.010000"],["2024-07-24T06:38:18.010000"],["2024-07-24T06:38:19.010000"],["2024-07-24T06:38:20.010000"],["2024-07-24T06:38:21.010000"],["2024-07-24T06:38:22.010000"],["2024-07-24T06:38:23.010000"],["2024-07-24T06:38:24.010000"],["2024-07-24T06:38:25.010000"],["2024-07-24T06:38:26.010000"],["2024-07-24T06:38:27.010000"],["2024-07-24T06:38:28.010000"],["2024-07-24T06:38:29.010000"],["2024-07-24T06:38:30.010000"],["2024-07-24T06:38:31.010000"],["2024-07-24T06:38:32.010000"],["2024-07-24T06:38:33.010000"],["2024-07-24T06:38:34.010000"],["2024-07-24T06:38:35.010000"],["2024-07-24T06:38:36.010000"],["2024-07-24T06:38:37.010000"],["2024-07-24T06:38:38.010000"],["2024-07-24T06:38:39.010000"],["2024-07-24T06:38:40.010000"],["2024-07-24T06:38:41.010000"],["2024-07-24T06:38:42.010000"],["2024-07-24T06:38:43.010000"],["2024-07-24T06:38:44.010000"],["2024-07-24T06:38:45.010000"],["2024-07-24T06:38:46.010000"],["2024-07-24T06:38:47.010000"],["2024-07-24T06:38:48.010000"],["2024-07-24T06:38:49.010000"],["2024-07-24T06:38:50.010000"],["2024-07-24T06:38:51.010000"],["2024-07-24T06:38:52.010000"],["2024-07-24T06:38:53.010000"],["2024-07-24T06:38:54.010000"],["2024-07-24T06:38:55.010000"],["2024-07-24T06:38:56.010000"],["2024-07-24T06:38:57.010000"],["2024-07-24T06:38:58.010000"],["2024-07-24T06:38:59.010000"],["2024-07-24T06:39:00.010000"],["2024-07-24T06:39:01.010000"],["2024-07-24T06:39:02.010000"],["2024-07-24T06:39:03.010000"],["2024-07-24T06:39:04.010000"],["2024-07-24T06:39:05.010000"],["2024-07-24T06:39:06.010000"],["2024-07-24T06:39:07.010000"],["2024-07-24T06:39:08.010000"],["2024-07-24T06:39:09.010000"],["2024-07-24T06:39:10.010000"],["2024-07-24T06:39:11.010000"],["2024-07-24T06:39:12.010000"],["2024-07-24T06:39:13.010000"],["2024-07-24T06:39:14.010000"],["2024-07-24T06:39:15.010000"],["2024-07-24T06:39:16.010000"],["2024-07-24T06:39:17.010000"],["2024-07-24T06:39:18.010000"],["2024-07-24T06:39:19.010000"],["2024-07-24T06:39:20.010000"],["2024-07-24T06:39:21.010000"],["2024-07-24T06:39:22.010000"],["2024-07-24T06:39:23.010000"],["2024-07-24T06:39:24.010000"],["2024-07-24T06:39:25.010000"],["2024-07-24T06:39:26.010000"],["2024-07-24T06:39:27.010000"],["2024-07-24T06:39:28.010000"],["2024-07-24T06:39:29.010000"],["2024-07-24T06:39:30.010000"],["2024-07-24T06:39:31.010000"],["2024-07-24T06:39:32.010000"],["2024-07-24T06:39:33.010000"],["2024-07-24T06:39:34.010000"],["2024-07-24T06:39:35.010000"],["2024-07-24T06:39:36.010000"],["2024-07-24T06:39:37.010000"],["2024-07-24T06:39:38.010000"],["2024-07-24T06:39:39.010000"],["2024-07-24T06:39:40.010000"],["2024-07-24T06:39:41.010000"],["2024-07-24T06:39:42.010000"],["2024-07-24T06:39:43.010000"],["2024-07-24T06:39:44.010000"],["2024-07-24T06:39:45.010000"],["2024-07-24T06:39:46.010000"],["2024-07-24T06:39:47.010000"],["2024-07-24T06:39:48.010000"],["2024-07-24T06:39:49.010000"],["2024-07-24T06:39:50.010000"],["2024-07-24T06:39:51.010000"],["2024-07-24T06:39:52.010000"],["2024-07-24T06:39:53.010000"],["2024-07-24T06:39:54.010000"],["2024-07-24T06:39:55.010000"],["2024-07-24T06:39:56.010000"],["2024-07-24T06:39:57.010000"],["2024-07-24T06:39:58.010000"],["2024-07-24T06:39:59.010000"],["2024-07-24T06:40:00.010000"],["2024-07-24T06:40:01.010000"],["2024-07-24T06:40:02.010000"],["2024-07-24T06:40:03.010000"],["2024-07-24T06:40:04.010000"],["2024-07-24T06:40:05.010000"],["2024-07-24T06:40:06.010000"],["2024-07-24T06:40:07.010000"],["2024-07-24T06:40:08.010000"],["2024-07-24T06:40:09.010000"],["2024-07-24T06:40:10.010000"],["2024-07-24T06:40:11.010000"],["2024-07-24T06:40:12.010000"],["2024-07-24T06:40:13.010000"],["2024-07-24T06:40:14.010000"],["2024-07-24T06:40:15.010000"],["2024-07-24T06:40:16.010000"],["2024-07-24T06:40:17.010000"],["2024-07-24T06:40:18.010000"],["2024-07-24T06:40:19.010000"],["2024-07-24T06:40:20.010000"],["2024-07-24T06:40:21.010000"],["2024-07-24T06:40:22.010000"],["2024-07-24T06:40:23.010000"],["2024-07-24T06:40:24.010000"],["2024-07-24T06:40:25.010000"],["2024-07-24T06:40:26.010000"],["2024-07-24T06:40:27.010000"],["2024-07-24T06:40:28.010000"],["2024-07-24T06:40:29.010000"],["2024-07-24T06:40:30.010000"],["2024-07-24T06:40:31.010000"],["2024-07-24T06:40:32.010000"],["2024-07-24T06:40:33.010000"],["2024-07-24T06:40:34.010000"],["2024-07-24T06:40:35.010000"],["2024-07-24T06:40:36.010000"],["2024-07-24T06:40:37.010000"],["2024-07-24T06:40:38.010000"],["2024-07-24T06:40:39.010000"],["2024-07-24T06:40:40.010000"],["2024-07-24T06:40:41.010000"],["2024-07-24T06:40:42.010000"],["2024-07-24T06:40:43.010000"],["2024-07-24T06:40:44.010000"],["2024-07-24T06:40:45.010000"],["2024-07-24T06:40:46.010000"],["2024-07-24T06:40:47.010000"],["2024-07-24T06:40:48.010000"],["2024-07-24T06:40:49.010000"],["2024-07-24T06:40:50.010000"],["2024-07-24T06:40:51.010000"],["2024-07-24T06:40:52.010000"],["2024-07-24T06:40:53.010000"],["2024-07-24T06:40:54.010000"],["2024-07-24T06:40:55.010000"],["2024-07-24T06:40:56.010000"],["2024-07-24T06:40:57.010000"],["2024-07-24T06:40:58.010000"],["2024-07-24T06:40:59.010000"],["2024-07-24T06:41:00.010000"],["2024-07-24T06:41:01.010000"],["2024-07-24T06:41:02.010000"],["2024-07-24T06:41:03.010000"],["2024-07-24T06:41:04.010000"],["2024-07-24T06:41:05.010000"],["2024-07-24T06:41:06.010000"],["2024-07-24T06:41:07.010000"],["2024-07-24T06:41:08.010000"],["2024-07-24T06:41:09.010000"],["2024-07-24T06:41:10.010000"],["2024-07-24T06:41:11.010000"],["2024-07-24T06:41:12.010000"],["2024-07-24T06:41:13.010000"],["2024-07-24T06:41:14.010000"],["2024-07-24T06:41:15.010000"],["2024-07-24T06:41:16.010000"],["2024-07-24T06:41:17.010000"],["2024-07-24T06:41:18.010000"],["2024-07-24T06:41:19.010000"],["2024-07-24T06:41:20.010000"],["2024-07-24T06:41:21.010000"],["2024-07-24T06:41:22.010000"],["2024-07-24T06:41:23.010000"],["2024-07-24T06:41:24.010000"],["2024-07-24T06:41:25.010000"],["2024-07-24T06:41:26.010000"],["2024-07-24T06:41:27.010000"],["2024-07-24T06:41:28.010000"],["2024-07-24T06:41:29.010000"],["2024-07-24T06:41:30.010000"],["2024-07-24T06:41:31.010000"],["2024-07-24T06:41:32.010000"],["2024-07-24T06:41:33.010000"],["2024-07-24T06:41:34.010000"],["2024-07-24T06:41:35.010000"],["2024-07-24T06:41:36.010000"],["2024-07-24T06:41:37.010000"],["2024-07-24T06:41:38.010000"],["2024-07-24T06:41:39.010000"],["2024-07-24T06:41:40.010000"],["2024-07-24T06:41:41.010000"],["2024-07-24T06:41:42.010000"],["2024-07-24T06:41:43.010000"],["2024-07-24T06:41:44.010000"],["2024-07-24T06:41:45.010000"],["2024-07-24T06:41:46.010000"],["2024-07-24T06:41:47.010000"],["2024-07-24T06:41:48.010000"],["2024-07-24T06:41:49.010000"],["2024-07-24T06:41:50.010000"],["2024-07-24T06:41:51.010000"],["2024-07-24T06:41:52.010000"],["2024-07-24T06:41:53.010000"],["2024-07-24T06:41:54.010000"],["2024-07-24T06:41:55.010000"],["2024-07-24T06:41:56.010000"],["2024-07-24T06:41:57.010000"],["2024-07-24T06:41:58.010000"],["2024-07-24T06:41:59.010000"],["2024-07-24T06:42:00.010000"],["2024-07-24T06:42:01.010000"],["2024-07-24T06:42:02.010000"],["2024-07-24T06:42:03.010000"],["2024-07-24T06:42:04.010000"],["2024-07-24T06:42:05.010000"],["2024-07-24T06:42:06.010000"],["2024-07-24T06:42:07.010000"],["2024-07-24T06:42:08.010000"],["2024-07-24T06:42:09.010000"],["2024-07-24T06:42:10.010000"],["2024-07-24T06:42:11.010000"],["2024-07-24T06:42:12.010000"],["2024-07-24T06:42:13.010000"],["2024-07-24T06:42:14.010000"],["2024-07-24T06:42:15.010000"],["2024-07-24T06:42:16.010000"],["2024-07-24T06:42:17.010000"],["2024-07-24T06:42:18.010000"],["2024-07-24T06:42:19.010000"],["2024-07-24T06:42:20.010000"],["2024-07-24T06:42:21.010000"],["2024-07-24T06:42:22.010000"],["2024-07-24T06:42:23.010000"],["2024-07-24T06:42:24.010000"],["2024-07-24T06:42:25.010000"],["2024-07-24T06:42:26.010000"],["2024-07-24T06:42:27.010000"],["2024-07-24T06:42:28.010000"],["2024-07-24T06:42:29.010000"],["2024-07-24T06:42:30.010000"],["2024-07-24T06:42:31.010000"],["2024-07-24T06:42:32.010000"],["2024-07-24T06:42:33.010000"],["2024-07-24T06:42:34.010000"],["2024-07-24T06:42:35.010000"],["2024-07-24T06:42:36.010000"],["2024-07-24T06:42:37.010000"],["2024-07-24T06:42:38.010000"],["2024-07-24T06:42:39.010000"],["2024-07-24T06:42:40.010000"],["2024-07-24T06:42:41.010000"],["2024-07-24T06:42:42.010000"],["2024-07-24T06:42:43.010000"],["2024-07-24T06:42:44.010000"],["2024-07-24T06:42:45.010000"],["2024-07-24T06:42:46.010000"],["2024-07-24T06:42:47.010000"],["2024-07-24T06:42:48.010000"],["2024-07-24T06:42:49.010000"],["2024-07-24T06:42:50.010000"],["2024-07-24T06:42:51.010000"],["2024-07-24T06:42:52.010000"],["2024-07-24T06:42:53.010000"],["2024-07-24T06:42:54.010000"],["2024-07-24T06:42:55.010000"],["2024-07-24T06:42:56.010000"],["2024-07-24T06:42:57.010000"],["2024-07-24T06:42:58.010000"],["2024-07-24T06:42:59.010000"],["2024-07-24T06:43:00.010000"],["2024-07-24T06:43:01.010000"],["2024-07-24T06:43:02.010000"],["2024-07-24T06:43:03.010000"],["2024-07-24T06:43:04.010000"],["2024-07-24T06:43:05.010000"],["2024-07-24T06:43:06.010000"],["2024-07-24T06:43:07.010000"],["2024-07-24T06:43:08.010000"],["2024-07-24T06:43:09.010000"],["2024-07-24T06:43:10.010000"],["2024-07-24T06:43:11.010000"],["2024-07-24T06:43:12.010000"],["2024-07-24T06:43:13.010000"],["2024-07-24T06:43:14.010000"],["2024-07-24T06:43:15.010000"],["2024-07-24T06:43:16.010000"],["2024-07-24T06:43:17.010000"],["2024-07-24T06:43:18.010000"],["2024-07-24T06:43:19.010000"],["2024-07-24T06:43:20.010000"],["2024-07-24T06:43:21.010000"],["2024-07-24T06:43:22.010000"],["2024-07-24T06:43:23.010000"],["2024-07-24T06:43:24.010000"],["2024-07-24T06:43:25.010000"],["2024-07-24T06:43:26.010000"],["2024-07-24T06:43:27.010000"],["2024-07-24T06:43:28.010000"],["2024-07-24T06:43:29.010000"],["2024-07-24T06:43:30.010000"],["2024-07-24T06:43:31.010000"],["2024-07-24T06:43:32.010000"],["2024-07-24T06:43:33.010000"],["2024-07-24T06:43:34.010000"],["2024-07-24T06:43:35.010000"],["2024-07-24T06:43:36.010000"],["2024-07-24T06:43:37.010000"],["2024-07-24T06:43:38.010000"],["2024-07-24T06:43:39.010000"],["2024-07-24T06:43:40.010000"],["2024-07-24T06:43:41.010000"],["2024-07-24T06:43:42.010000"],["2024-07-24T06:43:43.010000"],["2024-07-24T06:43:44.010000"],["2024-07-24T06:43:45.010000"],["2024-07-24T06:43:46.010000"],["2024-07-24T06:43:47.010000"],["2024-07-24T06:43:48.010000"],["2024-07-24T06:43:49.010000"],["2024-07-24T06:43:50.010000"],["2024-07-24T06:43:51.010000"],["2024-07-24T06:43:52.010000"],["2024-07-24T06:43:53.010000"],["2024-07-24T06:43:54.010000"],["2024-07-24T06:43:55.010000"],["2024-07-24T06:43:56.010000"],["2024-07-24T06:43:57.010000"],["2024-07-24T06:43:58.010000"],["2024-07-24T06:43:59.010000"],["2024-07-24T06:44:00.010000"],["2024-07-24T06:44:01.010000"],["2024-07-24T06:44:02.010000"],["2024-07-24T06:44:03.010000"],["2024-07-24T06:44:04.010000"],["2024-07-24T06:44:05.010000"],["2024-07-24T06:44:06.010000"],["2024-07-24T06:44:07.010000"],["2024-07-24T06:44:08.010000"],["2024-07-24T06:44:09.010000"],["2024-07-24T06:44:10.010000"],["2024-07-24T06:44:11.010000"],["2024-07-24T06:44:12.010000"],["2024-07-24T06:44:13.010000"],["2024-07-24T06:44:14.010000"],["2024-07-24T06:44:15.010000"],["2024-07-24T06:44:16.010000"],["2024-07-24T06:44:17.010000"],["2024-07-24T06:44:18.010000"],["2024-07-24T06:44:19.010000"],["2024-07-24T06:44:20.010000"],["2024-07-24T06:44:21.010000"],["2024-07-24T06:44:22.010000"],["2024-07-24T06:44:23.010000"],["2024-07-24T06:44:24.010000"],["2024-07-24T06:44:25.010000"],["2024-07-24T06:44:26.010000"],["2024-07-24T06:44:27.010000"],["2024-07-24T06:44:28.010000"],["2024-07-24T06:44:29.010000"],["2024-07-24T06:44:30.010000"],["2024-07-24T06:44:31.010000"],["2024-07-24T06:44:32.010000"],["2024-07-24T06:44:33.010000"],["2024-07-24T06:44:34.010000"],["2024-07-24T06:44:35.010000"],["2024-07-24T06:44:36.010000"],["2024-07-24T06:44:37.010000"],["2024-07-24T06:44:38.010000"],["2024-07-24T06:44:39.010000"],["2024-07-24T06:44:40.010000"],["2024-07-24T06:44:41.010000"],["2024-07-24T06:44:42.010000"],["2024-07-24T06:44:43.010000"],["2024-07-24T06:44:44.010000"],["2024-07-24T06:44:45.010000"],["2024-07-24T06:44:46.010000"],["2024-07-24T06:44:47.010000"],["2024-07-24T06:44:48.010000"],["2024-07-24T06:44:49.010000"],["2024-07-24T06:44:50.010000"],["2024-07-24T06:44:51.010000"],["2024-07-24T06:44:52.010000"],["2024-07-24T06:44:53.010000"],["2024-07-24T06:44:54.010000"],["2024-07-24T06:44:55.010000"],["2024-07-24T06:44:56.010000"],["2024-07-24T06:44:57.010000"],["2024-07-24T06:44:58.010000"],["2024-07-24T06:44:59.010000"],["2024-07-24T06:45:00.010000"],["2024-07-24T06:45:01.010000"],["2024-07-24T06:45:02.010000"],["2024-07-24T06:45:03.010000"],["2024-07-24T06:45:04.010000"],["2024-07-24T06:45:05.010000"],["2024-07-24T06:45:06.010000"],["2024-07-24T06:45:07.010000"],["2024-07-24T06:45:08.010000"],["2024-07-24T06:45:09.010000"],["2024-07-24T06:45:10.010000"],["2024-07-24T06:45:11.010000"],["2024-07-24T06:45:12.010000"],["2024-07-24T06:45:13.010000"],["2024-07-24T06:45:14.010000"],["2024-07-24T06:45:15.010000"],["2024-07-24T06:45:16.010000"],["2024-07-24T06:45:17.010000"],["2024-07-24T06:45:18.010000"],["2024-07-24T06:45:19.010000"],["2024-07-24T06:45:20.010000"],["2024-07-24T06:45:21.010000"],["2024-07-24T06:45:22.010000"],["2024-07-24T06:45:23.010000"],["2024-07-24T06:45:24.010000"],["2024-07-24T06:45:25.010000"],["2024-07-24T06:45:26.010000"],["2024-07-24T06:45:27.010000"],["2024-07-24T06:45:28.010000"],["2024-07-24T06:45:29.010000"],["2024-07-24T06:45:30.010000"],["2024-07-24T06:45:31.010000"],["2024-07-24T06:45:32.010000"],["2024-07-24T06:45:33.010000"],["2024-07-24T06:45:34.010000"],["2024-07-24T06:45:35.010000"],["2024-07-24T06:45:36.010000"],["2024-07-24T06:45:37.010000"],["2024-07-24T06:45:38.010000"],["2024-07-24T06:45:39.010000"],["2024-07-24T06:45:40.010000"],["2024-07-24T06:45:41.010000"],["2024-07-24T06:45:42.010000"],["2024-07-24T06:45:43.010000"],["2024-07-24T06:45:44.010000"],["2024-07-24T06:45:45.010000"],["2024-07-24T06:45:46.010000"],["2024-07-24T06:45:47.010000"],["2024-07-24T06:45:48.010000"],["2024-07-24T06:45:49.010000"],["2024-07-24T06:45:50.010000"],["2024-07-24T06:45:51.010000"],["2024-07-24T06:45:52.010000"],["2024-07-24T06:45:53.010000"],["2024-07-24T06:45:54.010000"],["2024-07-24T06:45:55.010000"],["2024-07-24T06:45:56.010000"],["2024-07-24T06:45:57.010000"],["2024-07-24T06:45:58.010000"],["2024-07-24T06:45:59.010000"],["2024-07-24T06:46:00.010000"],["2024-07-24T06:46:01.010000"],["2024-07-24T06:46:02.010000"],["2024-07-24T06:46:03.010000"],["2024-07-24T06:46:04.010000"],["2024-07-24T06:46:05.010000"],["2024-07-24T06:46:06.010000"],["2024-07-24T06:46:07.010000"],["2024-07-24T06:46:08.010000"],["2024-07-24T06:46:09.010000"],["2024-07-24T06:46:10.010000"],["2024-07-24T06:46:11.010000"],["2024-07-24T06:46:12.010000"],["2024-07-24T06:46:13.010000"],["2024-07-24T06:46:14.010000"],["2024-07-24T06:46:15.010000"],["2024-07-24T06:46:16.010000"],["2024-07-24T06:46:17.010000"],["2024-07-24T06:46:18.010000"],["2024-07-24T06:46:19.010000"],["2024-07-24T06:46:20.010000"],["2024-07-24T06:46:21.010000"],["2024-07-24T06:46:22.010000"],["2024-07-24T06:46:23.010000"],["2024-07-24T06:46:24.010000"],["2024-07-24T06:46:25.010000"],["2024-07-24T06:46:26.010000"],["2024-07-24T06:46:27.010000"],["2024-07-24T06:46:28.010000"],["2024-07-24T06:46:29.010000"],["2024-07-24T06:46:30.010000"],["2024-07-24T06:46:31.010000"],["2024-07-24T06:46:32.010000"],["2024-07-24T06:46:33.010000"],["2024-07-24T06:46:34.010000"],["2024-07-24T06:46:35.010000"],["2024-07-24T06:46:36.010000"],["2024-07-24T06:46:37.010000"],["2024-07-24T06:46:38.010000"],["2024-07-24T06:46:39.010000"],["2024-07-24T06:46:40.010000"],["2024-07-24T06:46:41.010000"],["2024-07-24T06:46:42.010000"],["2024-07-24T06:46:43.010000"],["2024-07-24T06:46:44.010000"],["2024-07-24T06:46:45.010000"],["2024-07-24T06:46:46.010000"],["2024-07-24T06:46:47.010000"],["2024-07-24T06:46:48.010000"],["2024-07-24T06:46:49.010000"],["2024-07-24T06:46:50.010000"],["2024-07-24T06:46:51.010000"],["2024-07-24T06:46:52.010000"],["2024-07-24T06:46:53.010000"],["2024-07-24T06:46:54.010000"],["2024-07-24T06:46:55.010000"],["2024-07-24T06:46:56.010000"],["2024-07-24T06:46:57.010000"],["2024-07-24T06:46:58.010000"],["2024-07-24T06:46:59.010000"],["2024-07-24T06:47:00.010000"],["2024-07-24T06:47:01.010000"],["2024-07-24T06:47:02.010000"],["2024-07-24T06:47:03.010000"],["2024-07-24T06:47:04.010000"],["2024-07-24T06:47:05.010000"],["2024-07-24T06:47:06.010000"],["2024-07-24T06:47:07.010000"],["2024-07-24T06:47:08.010000"],["2024-07-24T06:47:09.010000"],["2024-07-24T06:47:10.010000"],["2024-07-24T06:47:11.010000"],["2024-07-24T06:47:12.010000"],["2024-07-24T06:47:13.010000"],["2024-07-24T06:47:14.010000"],["2024-07-24T06:47:15.010000"],["2024-07-24T06:47:16.010000"],["2024-07-24T06:47:17.010000"],["2024-07-24T06:47:18.010000"],["2024-07-24T06:47:19.010000"],["2024-07-24T06:47:20.010000"],["2024-07-24T06:47:21.010000"],["2024-07-24T06:47:22.010000"],["2024-07-24T06:47:23.010000"],["2024-07-24T06:47:24.010000"],["2024-07-24T06:47:25.010000"],["2024-07-24T06:47:26.010000"],["2024-07-24T06:47:27.010000"],["2024-07-24T06:47:28.010000"],["2024-07-24T06:47:29.010000"],["2024-07-24T06:47:30.010000"],["2024-07-24T06:47:31.010000"],["2024-07-24T06:47:32.010000"],["2024-07-24T06:47:33.010000"],["2024-07-24T06:47:34.010000"],["2024-07-24T06:47:35.010000"],["2024-07-24T06:47:36.010000"],["2024-07-24T06:47:37.010000"],["2024-07-24T06:47:38.010000"],["2024-07-24T06:47:39.010000"],["2024-07-24T06:47:40.010000"],["2024-07-24T06:47:41.010000"],["2024-07-24T06:47:42.010000"],["2024-07-24T06:47:43.010000"],["2024-07-24T06:47:44.010000"],["2024-07-24T06:47:45.010000"],["2024-07-24T06:47:46.010000"],["2024-07-24T06:47:47.010000"],["2024-07-24T06:47:48.010000"],["2024-07-24T06:47:49.010000"],["2024-07-24T06:47:50.010000"],["2024-07-24T06:47:51.010000"],["2024-07-24T06:47:52.010000"],["2024-07-24T06:47:53.010000"],["2024-07-24T06:47:54.010000"],["2024-07-24T06:47:55.010000"],["2024-07-24T06:47:56.010000"],["2024-07-24T06:47:57.010000"],["2024-07-24T06:47:58.010000"],["2024-07-24T06:47:59.010000"],["2024-07-24T06:48:00.010000"],["2024-07-24T06:48:01.010000"],["2024-07-24T06:48:02.010000"],["2024-07-24T06:48:03.010000"],["2024-07-24T06:48:04.010000"],["2024-07-24T06:48:05.010000"],["2024-07-24T06:48:06.010000"],["2024-07-24T06:48:07.010000"],["2024-07-24T06:48:08.010000"],["2024-07-24T06:48:09.010000"],["2024-07-24T06:48:10.010000"],["2024-07-24T06:48:11.010000"],["2024-07-24T06:48:12.010000"],["2024-07-24T06:48:13.010000"],["2024-07-24T06:48:14.010000"],["2024-07-24T06:48:15.010000"],["2024-07-24T06:48:16.010000"],["2024-07-24T06:48:17.010000"],["2024-07-24T06:48:18.010000"],["2024-07-24T06:48:19.010000"],["2024-07-24T06:48:20.010000"],["2024-07-24T06:48:21.010000"],["2024-07-24T06:48:22.010000"],["2024-07-24T06:48:23.010000"],["2024-07-24T06:48:24.010000"],["2024-07-24T06:48:25.010000"],["2024-07-24T06:48:26.010000"],["2024-07-24T06:48:27.010000"],["2024-07-24T06:48:28.010000"],["2024-07-24T06:48:29.010000"],["2024-07-24T06:48:30.010000"],["2024-07-24T06:48:31.010000"],["2024-07-24T06:48:32.010000"],["2024-07-24T06:48:33.010000"],["2024-07-24T06:48:34.010000"],["2024-07-24T06:48:35.010000"],["2024-07-24T06:48:36.010000"],["2024-07-24T06:48:37.010000"],["2024-07-24T06:48:38.010000"],["2024-07-24T06:48:39.010000"],["2024-07-24T06:48:40.010000"],["2024-07-24T06:48:41.010000"],["2024-07-24T06:48:42.010000"],["2024-07-24T06:48:43.010000"],["2024-07-24T06:48:44.010000"],["2024-07-24T06:48:45.010000"],["2024-07-24T06:48:46.010000"],["2024-07-24T06:48:47.010000"],["2024-07-24T06:48:48.010000"],["2024-07-24T06:48:49.010000"],["2024-07-24T06:48:50.010000"],["2024-07-24T06:48:51.010000"],["2024-07-24T06:48:52.010000"],["2024-07-24T06:48:53.010000"],["2024-07-24T06:48:54.010000"],["2024-07-24T06:48:55.010000"],["2024-07-24T06:48:56.010000"],["2024-07-24T06:48:57.010000"],["2024-07-24T06:48:58.010000"],["2024-07-24T06:48:59.010000"],["2024-07-24T06:49:00.010000"],["2024-07-24T06:49:01.010000"],["2024-07-24T06:49:02.010000"],["2024-07-24T06:49:03.010000"],["2024-07-24T06:49:04.010000"],["2024-07-24T06:49:05.010000"],["2024-07-24T06:49:06.010000"],["2024-07-24T06:49:07.010000"],["2024-07-24T06:49:08.010000"],["2024-07-24T06:49:09.010000"],["2024-07-24T06:49:10.010000"],["2024-07-24T06:49:11.010000"],["2024-07-24T06:49:12.010000"],["2024-07-24T06:49:13.010000"],["2024-07-24T06:49:14.010000"],["2024-07-24T06:49:15.010000"],["2024-07-24T06:49:16.010000"],["2024-07-24T06:49:17.010000"],["2024-07-24T06:49:18.010000"],["2024-07-24T06:49:19.010000"],["2024-07-24T06:49:20.010000"],["2024-07-24T06:49:21.010000"],["2024-07-24T06:49:22.010000"],["2024-07-24T06:49:23.010000"],["2024-07-24T06:49:24.010000"],["2024-07-24T06:49:25.010000"],["2024-07-24T06:49:26.010000"],["2024-07-24T06:49:27.010000"],["2024-07-24T06:49:28.010000"],["2024-07-24T06:49:29.010000"],["2024-07-24T06:49:30.010000"],["2024-07-24T06:49:31.010000"],["2024-07-24T06:49:32.010000"],["2024-07-24T06:49:33.010000"],["2024-07-24T06:49:34.010000"],["2024-07-24T06:49:35.010000"],["2024-07-24T06:49:36.010000"],["2024-07-24T06:49:37.010000"],["2024-07-24T06:49:38.010000"],["2024-07-24T06:49:39.010000"],["2024-07-24T06:49:40.010000"],["2024-07-24T06:49:41.010000"],["2024-07-24T06:49:42.010000"],["2024-07-24T06:49:43.010000"],["2024-07-24T06:49:44.010000"],["2024-07-24T06:49:45.010000"],["2024-07-24T06:49:46.010000"],["2024-07-24T06:49:47.010000"],["2024-07-24T06:49:48.010000"],["2024-07-24T06:49:49.010000"],["2024-07-24T06:49:50.010000"],["2024-07-24T06:49:51.010000"],["2024-07-24T06:49:52.010000"],["2024-07-24T06:49:53.010000"],["2024-07-24T06:49:54.010000"],["2024-07-24T06:49:55.010000"],["2024-07-24T06:49:56.010000"],["2024-07-24T06:49:57.010000"],["2024-07-24T06:49:58.010000"],["2024-07-24T06:49:59.010000"],["2024-07-24T06:50:00.010000"],["2024-07-24T06:50:01.010000"],["2024-07-24T06:50:02.010000"],["2024-07-24T06:50:03.010000"],["2024-07-24T06:50:04.010000"],["2024-07-24T06:50:05.010000"],["2024-07-24T06:50:06.010000"],["2024-07-24T06:50:07.010000"],["2024-07-24T06:50:08.010000"],["2024-07-24T06:50:09.010000"],["2024-07-24T06:50:10.010000"],["2024-07-24T06:50:11.010000"],["2024-07-24T06:50:12.010000"],["2024-07-24T06:50:13.010000"],["2024-07-24T06:50:14.010000"],["2024-07-24T06:50:15.010000"],["2024-07-24T06:50:16.010000"],["2024-07-24T06:50:17.010000"],["2024-07-24T06:50:18.010000"],["2024-07-24T06:50:19.010000"],["2024-07-24T06:50:20.010000"],["2024-07-24T06:50:21.010000"],["2024-07-24T06:50:22.010000"],["2024-07-24T06:50:23.010000"],["2024-07-24T06:50:24.010000"],["2024-07-24T06:50:25.010000"],["2024-07-24T06:50:26.010000"],["2024-07-24T06:50:27.010000"],["2024-07-24T06:50:28.010000"],["2024-07-24T06:50:29.010000"],["2024-07-24T06:50:30.010000"],["2024-07-24T06:50:31.010000"],["2024-07-24T06:50:32.010000"],["2024-07-24T06:50:33.010000"],["2024-07-24T06:50:34.010000"],["2024-07-24T06:50:35.010000"],["2024-07-24T06:50:36.010000"],["2024-07-24T06:50:37.010000"],["2024-07-24T06:50:38.010000"],["2024-07-24T06:50:39.010000"],["2024-07-24T06:50:40.010000"],["2024-07-24T06:50:41.010000"],["2024-07-24T06:50:42.010000"],["2024-07-24T06:50:43.010000"],["2024-07-24T06:50:44.010000"],["2024-07-24T06:50:45.010000"],["2024-07-24T06:50:46.010000"],["2024-07-24T06:50:47.010000"],["2024-07-24T06:50:48.010000"],["2024-07-24T06:50:49.010000"],["2024-07-24T06:50:50.010000"],["2024-07-24T06:50:51.010000"],["2024-07-24T06:50:52.010000"],["2024-07-24T06:50:53.010000"],["2024-07-24T06:50:54.010000"],["2024-07-24T06:50:55.010000"],["2024-07-24T06:50:56.010000"],["2024-07-24T06:50:57.010000"],["2024-07-24T06:50:58.010000"],["2024-07-24T06:50:59.010000"],["2024-07-24T06:51:00.010000"],["2024-07-24T06:51:01.010000"],["2024-07-24T06:51:02.010000"],["2024-07-24T06:51:03.010000"],["2024-07-24T06:51:04.010000"],["2024-07-24T06:51:05.010000"],["2024-07-24T06:51:06.010000"],["2024-07-24T06:51:07.010000"],["2024-07-24T06:51:08.010000"],["2024-07-24T06:51:09.010000"],["2024-07-24T06:51:10.010000"],["2024-07-24T06:51:11.010000"],["2024-07-24T06:51:12.010000"],["2024-07-24T06:51:13.010000"],["2024-07-24T06:51:14.010000"],["2024-07-24T06:51:15.010000"],["2024-07-24T06:51:16.010000"],["2024-07-24T06:51:17.010000"],["2024-07-24T06:51:18.010000"],["2024-07-24T06:51:19.010000"],["2024-07-24T06:51:20.010000"],["2024-07-24T06:51:21.010000"],["2024-07-24T06:51:22.010000"],["2024-07-24T06:51:23.010000"],["2024-07-24T06:51:24.010000"],["2024-07-24T06:51:25.010000"],["2024-07-24T06:51:26.010000"],["2024-07-24T06:51:27.010000"],["2024-07-24T06:51:28.010000"],["2024-07-24T06:51:29.010000"],["2024-07-24T06:51:30.010000"],["2024-07-24T06:51:31.010000"],["2024-07-24T06:51:32.010000"],["2024-07-24T06:51:33.010000"],["2024-07-24T06:51:34.010000"],["2024-07-24T06:51:35.010000"],["2024-07-24T06:51:36.010000"],["2024-07-24T06:51:37.010000"],["2024-07-24T06:51:38.010000"],["2024-07-24T06:51:39.010000"],["2024-07-24T06:51:40.010000"],["2024-07-24T06:51:41.010000"],["2024-07-24T06:51:42.010000"],["2024-07-24T06:51:43.010000"],["2024-07-24T06:51:44.010000"],["2024-07-24T06:51:45.010000"],["2024-07-24T06:51:46.010000"],["2024-07-24T06:51:47.010000"],["2024-07-24T06:51:48.010000"],["2024-07-24T06:51:49.010000"],["2024-07-24T06:51:50.010000"],["2024-07-24T06:51:51.010000"],["2024-07-24T06:51:52.010000"],["2024-07-24T06:51:53.010000"],["2024-07-24T06:51:54.010000"],["2024-07-24T06:51:55.010000"],["2024-07-24T06:51:56.010000"],["2024-07-24T06:51:57.010000"],["2024-07-24T06:51:58.010000"],["2024-07-24T06:51:59.010000"],["2024-07-24T06:52:00.010000"],["2024-07-24T06:52:01.010000"],["2024-07-24T06:52:02.010000"],["2024-07-24T06:52:03.010000"],["2024-07-24T06:52:04.010000"],["2024-07-24T06:52:05.010000"],["2024-07-24T06:52:06.010000"],["2024-07-24T06:52:07.010000"],["2024-07-24T06:52:08.010000"],["2024-07-24T06:52:09.010000"],["2024-07-24T06:52:10.010000"],["2024-07-24T06:52:11.010000"],["2024-07-24T06:52:12.010000"],["2024-07-24T06:52:13.010000"],["2024-07-24T06:52:14.010000"],["2024-07-24T06:52:15.010000"],["2024-07-24T06:52:16.010000"],["2024-07-24T06:52:17.010000"],["2024-07-24T06:52:18.010000"],["2024-07-24T06:52:19.010000"],["2024-07-24T06:52:20.010000"],["2024-07-24T06:52:21.010000"],["2024-07-24T06:52:22.010000"],["2024-07-24T06:52:23.010000"],["2024-07-24T06:52:24.010000"],["2024-07-24T06:52:25.010000"],["2024-07-24T06:52:26.010000"],["2024-07-24T06:52:27.010000"],["2024-07-24T06:52:28.010000"],["2024-07-24T06:52:29.010000"],["2024-07-24T06:52:30.010000"],["2024-07-24T06:52:31.010000"],["2024-07-24T06:52:32.010000"],["2024-07-24T06:52:33.010000"],["2024-07-24T06:52:34.010000"],["2024-07-24T06:52:35.010000"],["2024-07-24T06:52:36.010000"],["2024-07-24T06:52:37.010000"],["2024-07-24T06:52:38.010000"],["2024-07-24T06:52:39.010000"],["2024-07-24T06:52:40.010000"],["2024-07-24T06:52:41.010000"],["2024-07-24T06:52:42.010000"],["2024-07-24T06:52:43.010000"],["2024-07-24T06:52:44.010000"],["2024-07-24T06:52:45.010000"],["2024-07-24T06:52:46.010000"],["2024-07-24T06:52:47.010000"],["2024-07-24T06:52:48.010000"],["2024-07-24T06:52:49.010000"],["2024-07-24T06:52:50.010000"],["2024-07-24T06:52:51.010000"],["2024-07-24T06:52:52.010000"],["2024-07-24T06:52:53.010000"],["2024-07-24T06:52:54.010000"],["2024-07-24T06:52:55.010000"],["2024-07-24T06:52:56.010000"],["2024-07-24T06:52:57.010000"],["2024-07-24T06:52:58.010000"],["2024-07-24T06:52:59.010000"],["2024-07-24T06:53:00.010000"],["2024-07-24T06:53:01.010000"],["2024-07-24T06:53:02.010000"],["2024-07-24T06:53:03.010000"],["2024-07-24T06:53:04.010000"],["2024-07-24T06:53:05.010000"],["2024-07-24T06:53:06.010000"],["2024-07-24T06:53:07.010000"],["2024-07-24T06:53:08.010000"],["2024-07-24T06:53:09.010000"],["2024-07-24T06:53:10.010000"],["2024-07-24T06:53:11.010000"],["2024-07-24T06:53:12.010000"],["2024-07-24T06:53:13.010000"],["2024-07-24T06:53:14.010000"],["2024-07-24T06:53:15.010000"],["2024-07-24T06:53:16.010000"],["2024-07-24T06:53:17.010000"],["2024-07-24T06:53:18.010000"],["2024-07-24T06:53:19.010000"],["2024-07-24T06:53:20.010000"],["2024-07-24T06:53:21.010000"],["2024-07-24T06:53:22.010000"],["2024-07-24T06:53:23.010000"],["2024-07-24T06:53:24.010000"],["2024-07-24T06:53:25.010000"],["2024-07-24T06:53:26.010000"],["2024-07-24T06:53:27.010000"],["2024-07-24T06:53:28.010000"],["2024-07-24T06:53:29.010000"],["2024-07-24T06:53:30.010000"],["2024-07-24T06:53:31.010000"],["2024-07-24T06:53:32.010000"],["2024-07-24T06:53:33.010000"],["2024-07-24T06:53:34.010000"],["2024-07-24T06:53:35.010000"],["2024-07-24T06:53:36.010000"],["2024-07-24T06:53:37.010000"],["2024-07-24T06:53:38.010000"],["2024-07-24T06:53:39.010000"],["2024-07-24T06:53:40.010000"],["2024-07-24T06:53:41.010000"],["2024-07-24T06:53:42.010000"],["2024-07-24T06:53:43.010000"],["2024-07-24T06:53:44.010000"],["2024-07-24T06:53:45.010000"],["2024-07-24T06:53:46.010000"],["2024-07-24T06:53:47.010000"],["2024-07-24T06:53:48.010000"],["2024-07-24T06:53:49.010000"],["2024-07-24T06:53:50.010000"],["2024-07-24T06:53:51.010000"],["2024-07-24T06:53:52.010000"],["2024-07-24T06:53:53.010000"],["2024-07-24T06:53:54.010000"],["2024-07-24T06:53:55.010000"],["2024-07-24T06:53:56.010000"],["2024-07-24T06:53:57.010000"],["2024-07-24T06:53:58.010000"],["2024-07-24T06:53:59.010000"],["2024-07-24T06:54:00.010000"],["2024-07-24T06:54:01.010000"],["2024-07-24T06:54:02.010000"],["2024-07-24T06:54:03.010000"],["2024-07-24T06:54:04.010000"],["2024-07-24T06:54:05.010000"],["2024-07-24T06:54:06.010000"],["2024-07-24T06:54:07.010000"],["2024-07-24T06:54:08.010000"],["2024-07-24T06:54:09.010000"],["2024-07-24T06:54:10.010000"],["2024-07-24T06:54:11.010000"],["2024-07-24T06:54:12.010000"],["2024-07-24T06:54:13.010000"],["2024-07-24T06:54:14.010000"],["2024-07-24T06:54:15.010000"],["2024-07-24T06:54:16.010000"],["2024-07-24T06:54:17.010000"],["2024-07-24T06:54:18.010000"],["2024-07-24T06:54:19.010000"],["2024-07-24T06:54:20.010000"],["2024-07-24T06:54:21.010000"],["2024-07-24T06:54:22.010000"],["2024-07-24T06:54:23.010000"],["2024-07-24T06:54:24.010000"],["2024-07-24T06:54:25.010000"],["2024-07-24T06:54:26.010000"],["2024-07-24T06:54:27.010000"],["2024-07-24T06:54:28.010000"],["2024-07-24T06:54:29.010000"],["2024-07-24T06:54:30.010000"],["2024-07-24T06:54:31.010000"],["2024-07-24T06:54:32.010000"],["2024-07-24T06:54:33.010000"],["2024-07-24T06:54:34.010000"],["2024-07-24T06:54:35.010000"],["2024-07-24T06:54:36.010000"],["2024-07-24T06:54:37.010000"],["2024-07-24T06:54:38.010000"],["2024-07-24T06:54:39.010000"],["2024-07-24T06:54:40.010000"],["2024-07-24T06:54:41.010000"],["2024-07-24T06:54:42.010000"],["2024-07-24T06:54:43.010000"],["2024-07-24T06:54:44.010000"],["2024-07-24T06:54:45.010000"],["2024-07-24T06:54:46.010000"],["2024-07-24T06:54:47.010000"],["2024-07-24T06:54:48.010000"],["2024-07-24T06:54:49.010000"],["2024-07-24T06:54:50.010000"],["2024-07-24T06:54:51.010000"],["2024-07-24T06:54:52.010000"],["2024-07-24T06:54:53.010000"],["2024-07-24T06:54:54.010000"],["2024-07-24T06:54:55.010000"],["2024-07-24T06:54:56.010000"],["2024-07-24T06:54:57.010000"],["2024-07-24T06:54:58.010000"],["2024-07-24T06:54:59.010000"],["2024-07-24T06:55:00.010000"],["2024-07-24T06:55:01.010000"],["2024-07-24T06:55:02.010000"],["2024-07-24T06:55:03.010000"],["2024-07-24T06:55:04.010000"],["2024-07-24T06:55:05.010000"],["2024-07-24T06:55:06.010000"],["2024-07-24T06:55:07.010000"],["2024-07-24T06:55:08.010000"],["2024-07-24T06:55:09.010000"],["2024-07-24T06:55:10.010000"],["2024-07-24T06:55:11.010000"],["2024-07-24T06:55:12.010000"],["2024-07-24T06:55:13.010000"],["2024-07-24T06:55:14.010000"],["2024-07-24T06:55:15.010000"],["2024-07-24T06:55:16.010000"],["2024-07-24T06:55:17.010000"],["2024-07-24T06:55:18.010000"],["2024-07-24T06:55:19.010000"],["2024-07-24T06:55:20.010000"],["2024-07-24T06:55:21.010000"],["2024-07-24T06:55:22.010000"],["2024-07-24T06:55:23.010000"],["2024-07-24T06:55:24.010000"],["2024-07-24T06:55:25.010000"],["2024-07-24T06:55:26.010000"],["2024-07-24T06:55:27.010000"],["2024-07-24T06:55:28.010000"],["2024-07-24T06:55:29.010000"],["2024-07-24T06:55:30.010000"],["2024-07-24T06:55:31.010000"],["2024-07-24T06:55:32.010000"],["2024-07-24T06:55:33.010000"],["2024-07-24T06:55:34.010000"],["2024-07-24T06:55:35.010000"],["2024-07-24T06:55:36.010000"],["2024-07-24T06:55:37.010000"],["2024-07-24T06:55:38.010000"],["2024-07-24T06:55:39.010000"],["2024-07-24T06:55:40.010000"],["2024-07-24T06:55:41.010000"],["2024-07-24T06:55:42.010000"],["2024-07-24T06:55:43.010000"],["2024-07-24T06:55:44.010000"],["2024-07-24T06:55:45.010000"],["2024-07-24T06:55:46.010000"],["2024-07-24T06:55:47.010000"],["2024-07-24T06:55:48.010000"],["2024-07-24T06:55:49.010000"],["2024-07-24T06:55:50.010000"],["2024-07-24T06:55:51.010000"],["2024-07-24T06:55:52.010000"],["2024-07-24T06:55:53.010000"],["2024-07-24T06:55:54.010000"],["2024-07-24T06:55:55.010000"],["2024-07-24T06:55:56.010000"],["2024-07-24T06:55:57.010000"],["2024-07-24T06:55:58.010000"],["2024-07-24T06:55:59.010000"],["2024-07-24T06:56:00.010000"],["2024-07-24T06:56:01.010000"],["2024-07-24T06:56:02.010000"],["2024-07-24T06:56:03.010000"],["2024-07-24T06:56:04.010000"],["2024-07-24T06:56:05.010000"],["2024-07-24T06:56:06.010000"],["2024-07-24T06:56:07.010000"],["2024-07-24T06:56:08.010000"],["2024-07-24T06:56:09.010000"],["2024-07-24T06:56:10.010000"],["2024-07-24T06:56:11.010000"],["2024-07-24T06:56:12.010000"],["2024-07-24T06:56:13.010000"],["2024-07-24T06:56:14.010000"],["2024-07-24T06:56:15.010000"],["2024-07-24T06:56:16.010000"],["2024-07-24T06:56:17.010000"],["2024-07-24T06:56:18.010000"],["2024-07-24T06:56:19.010000"],["2024-07-24T06:56:20.010000"],["2024-07-24T06:56:21.010000"],["2024-07-24T06:56:22.010000"],["2024-07-24T06:56:23.010000"],["2024-07-24T06:56:24.010000"],["2024-07-24T06:56:25.010000"],["2024-07-24T06:56:26.010000"],["2024-07-24T06:56:27.010000"],["2024-07-24T06:56:28.010000"],["2024-07-24T06:56:29.010000"],["2024-07-24T06:56:30.010000"],["2024-07-24T06:56:31.010000"],["2024-07-24T06:56:32.010000"],["2024-07-24T06:56:33.010000"],["2024-07-24T06:56:34.010000"],["2024-07-24T06:56:35.010000"],["2024-07-24T06:56:36.010000"],["2024-07-24T06:56:37.010000"],["2024-07-24T06:56:38.010000"],["2024-07-24T06:56:39.010000"],["2024-07-24T06:56:40.010000"],["2024-07-24T06:56:41.010000"],["2024-07-24T06:56:42.010000"],["2024-07-24T06:56:43.010000"],["2024-07-24T06:56:44.010000"],["2024-07-24T06:56:45.010000"],["2024-07-24T06:56:46.010000"],["2024-07-24T06:56:47.010000"],["2024-07-24T06:56:48.010000"],["2024-07-24T06:56:49.010000"],["2024-07-24T06:56:50.010000"],["2024-07-24T06:56:51.010000"],["2024-07-24T06:56:52.010000"],["2024-07-24T06:56:53.010000"],["2024-07-24T06:56:54.010000"],["2024-07-24T06:56:55.010000"],["2024-07-24T06:56:56.010000"],["2024-07-24T06:56:57.010000"],["2024-07-24T06:56:58.010000"],["2024-07-24T06:56:59.010000"],["2024-07-24T06:57:00.010000"],["2024-07-24T06:57:01.010000"],["2024-07-24T06:57:02.010000"],["2024-07-24T06:57:03.010000"],["2024-07-24T06:57:04.010000"],["2024-07-24T06:57:05.010000"],["2024-07-24T06:57:06.010000"],["2024-07-24T06:57:07.010000"],["2024-07-24T06:57:08.010000"],["2024-07-24T06:57:09.010000"],["2024-07-24T06:57:10.010000"],["2024-07-24T06:57:11.010000"],["2024-07-24T06:57:12.010000"],["2024-07-24T06:57:13.010000"],["2024-07-24T06:57:14.010000"],["2024-07-24T06:57:15.010000"],["2024-07-24T06:57:16.010000"],["2024-07-24T06:57:17.010000"],["2024-07-24T06:57:18.010000"],["2024-07-24T06:57:19.010000"],["2024-07-24T06:57:20.010000"],["2024-07-24T06:57:21.010000"],["2024-07-24T06:57:22.010000"],["2024-07-24T06:57:23.010000"],["2024-07-24T06:57:24.010000"],["2024-07-24T06:57:25.010000"],["2024-07-24T06:57:26.010000"],["2024-07-24T06:57:27.010000"],["2024-07-24T06:57:28.010000"],["2024-07-24T06:57:29.010000"],["2024-07-24T06:57:30.010000"],["2024-07-24T06:57:31.010000"],["2024-07-24T06:57:32.010000"],["2024-07-24T06:57:33.010000"],["2024-07-24T06:57:34.010000"],["2024-07-24T06:57:35.010000"],["2024-07-24T06:57:36.010000"],["2024-07-24T06:57:37.010000"],["2024-07-24T06:57:38.010000"],["2024-07-24T06:57:39.010000"],["2024-07-24T06:57:40.010000"],["2024-07-24T06:57:41.010000"],["2024-07-24T06:57:42.010000"],["2024-07-24T06:57:43.010000"],["2024-07-24T06:57:44.010000"],["2024-07-24T06:57:45.010000"],["2024-07-24T06:57:46.010000"],["2024-07-24T06:57:47.010000"],["2024-07-24T06:57:48.010000"],["2024-07-24T06:57:49.010000"],["2024-07-24T06:57:50.010000"],["2024-07-24T06:57:51.010000"],["2024-07-24T06:57:52.010000"],["2024-07-24T06:57:53.010000"],["2024-07-24T06:57:54.010000"],["2024-07-24T06:57:55.010000"],["2024-07-24T06:57:56.010000"],["2024-07-24T06:57:57.010000"],["2024-07-24T06:57:58.010000"],["2024-07-24T06:57:59.010000"],["2024-07-24T06:58:00.010000"],["2024-07-24T06:58:01.010000"],["2024-07-24T06:58:02.010000"],["2024-07-24T06:58:03.010000"],["2024-07-24T06:58:04.010000"],["2024-07-24T06:58:05.010000"],["2024-07-24T06:58:06.010000"],["2024-07-24T06:58:07.010000"],["2024-07-24T06:58:08.010000"],["2024-07-24T06:58:09.010000"],["2024-07-24T06:58:10.010000"],["2024-07-24T06:58:11.010000"],["2024-07-24T06:58:12.010000"],["2024-07-24T06:58:13.010000"],["2024-07-24T06:58:14.010000"],["2024-07-24T06:58:15.010000"],["2024-07-24T06:58:16.010000"],["2024-07-24T06:58:17.010000"],["2024-07-24T06:58:18.010000"],["2024-07-24T06:58:19.010000"],["2024-07-24T06:58:20.010000"],["2024-07-24T06:58:21.010000"],["2024-07-24T06:58:22.010000"],["2024-07-24T06:58:23.010000"],["2024-07-24T06:58:24.010000"],["2024-07-24T06:58:25.010000"],["2024-07-24T06:58:26.010000"],["2024-07-24T06:58:27.010000"],["2024-07-24T06:58:28.010000"],["2024-07-24T06:58:29.010000"],["2024-07-24T06:58:30.010000"],["2024-07-24T06:58:31.010000"],["2024-07-24T06:58:32.010000"],["2024-07-24T06:58:33.010000"],["2024-07-24T06:58:34.010000"],["2024-07-24T06:58:35.010000"],["2024-07-24T06:58:36.010000"],["2024-07-24T06:58:37.010000"],["2024-07-24T06:58:38.010000"],["2024-07-24T06:58:39.010000"],["2024-07-24T06:58:40.010000"],["2024-07-24T06:58:41.010000"],["2024-07-24T06:58:42.010000"],["2024-07-24T06:58:43.010000"],["2024-07-24T06:58:44.010000"],["2024-07-24T06:58:45.010000"],["2024-07-24T06:58:46.010000"],["2024-07-24T06:58:47.010000"],["2024-07-24T06:58:48.010000"],["2024-07-24T06:58:49.010000"],["2024-07-24T06:58:50.010000"],["2024-07-24T06:58:51.010000"],["2024-07-24T06:58:52.010000"],["2024-07-24T06:58:53.010000"],["2024-07-24T06:58:54.010000"],["2024-07-24T06:58:55.010000"],["2024-07-24T06:58:56.010000"],["2024-07-24T06:58:57.010000"],["2024-07-24T06:58:58.010000"],["2024-07-24T06:58:59.010000"],["2024-07-24T06:59:00.010000"],["2024-07-24T06:59:01.010000"],["2024-07-24T06:59:02.010000"],["2024-07-24T06:59:03.010000"],["2024-07-24T06:59:04.010000"],["2024-07-24T06:59:05.010000"],["2024-07-24T06:59:06.010000"],["2024-07-24T06:59:07.010000"],["2024-07-24T06:59:08.010000"],["2024-07-24T06:59:09.010000"],["2024-07-24T06:59:10.010000"],["2024-07-24T06:59:11.010000"],["2024-07-24T06:59:12.010000"],["2024-07-24T06:59:13.010000"],["2024-07-24T06:59:14.010000"],["2024-07-24T06:59:15.010000"],["2024-07-24T06:59:16.010000"],["2024-07-24T06:59:17.010000"],["2024-07-24T06:59:18.010000"],["2024-07-24T06:59:19.010000"],["2024-07-24T06:59:20.010000"],["2024-07-24T06:59:21.010000"],["2024-07-24T06:59:22.010000"],["2024-07-24T06:59:23.010000"],["2024-07-24T06:59:24.010000"],["2024-07-24T06:59:25.010000"],["2024-07-24T06:59:26.010000"],["2024-07-24T06:59:27.010000"],["2024-07-24T06:59:28.010000"],["2024-07-24T06:59:29.010000"],["2024-07-24T06:59:30.010000"],["2024-07-24T06:59:31.010000"],["2024-07-24T06:59:32.010000"],["2024-07-24T06:59:33.010000"],["2024-07-24T06:59:34.010000"],["2024-07-24T06:59:35.010000"],["2024-07-24T06:59:36.010000"],["2024-07-24T06:59:37.010000"],["2024-07-24T06:59:38.010000"],["2024-07-24T06:59:39.010000"],["2024-07-24T06:59:40.010000"],["2024-07-24T06:59:41.010000"],["2024-07-24T06:59:42.010000"],["2024-07-24T06:59:43.010000"],["2024-07-24T06:59:44.010000"],["2024-07-24T06:59:45.010000"],["2024-07-24T06:59:46.010000"],["2024-07-24T06:59:47.010000"],["2024-07-24T06:59:48.010000"],["2024-07-24T06:59:49.010000"],["2024-07-24T06:59:50.010000"],["2024-07-24T06:59:51.010000"],["2024-07-24T06:59:52.010000"],["2024-07-24T06:59:53.010000"],["2024-07-24T06:59:54.010000"],["2024-07-24T06:59:55.010000"],["2024-07-24T06:59:56.010000"],["2024-07-24T06:59:57.010000"],["2024-07-24T06:59:58.010000"],["2024-07-24T06:59:59.010000"],["2024-07-24T07:00:00.010000"],["2024-07-24T07:00:01.010000"],["2024-07-24T07:00:02.010000"],["2024-07-24T07:00:03.010000"],["2024-07-24T07:00:04.010000"],["2024-07-24T07:00:05.010000"],["2024-07-24T07:00:06.010000"],["2024-07-24T07:00:07.010000"],["2024-07-24T07:00:08.010000"],["2024-07-24T07:00:09.010000"],["2024-07-24T07:00:10.010000"],["2024-07-24T07:00:11.010000"],["2024-07-24T07:00:12.010000"],["2024-07-24T07:00:13.010000"],["2024-07-24T07:00:14.010000"],["2024-07-24T07:00:15.010000"],["2024-07-24T07:00:16.010000"],["2024-07-24T07:00:17.010000"],["2024-07-24T07:00:18.010000"],["2024-07-24T07:00:19.010000"],["2024-07-24T07:00:20.010000"],["2024-07-24T07:00:21.010000"],["2024-07-24T07:00:22.010000"],["2024-07-24T07:00:23.010000"],["2024-07-24T07:00:24.010000"],["2024-07-24T07:00:25.010000"],["2024-07-24T07:00:26.010000"],["2024-07-24T07:00:27.010000"],["2024-07-24T07:00:28.010000"],["2024-07-24T07:00:29.010000"],["2024-07-24T07:00:30.010000"],["2024-07-24T07:00:31.010000"],["2024-07-24T07:00:32.010000"],["2024-07-24T07:00:33.010000"],["2024-07-24T07:00:34.010000"],["2024-07-24T07:00:35.010000"],["2024-07-24T07:00:36.010000"],["2024-07-24T07:00:37.010000"],["2024-07-24T07:00:38.010000"],["2024-07-24T07:00:39.010000"],["2024-07-24T07:00:40.010000"],["2024-07-24T07:00:41.010000"],["2024-07-24T07:00:42.010000"],["2024-07-24T07:00:43.010000"],["2024-07-24T07:00:44.010000"],["2024-07-24T07:00:45.010000"],["2024-07-24T07:00:46.010000"],["2024-07-24T07:00:47.010000"],["2024-07-24T07:00:48.010000"],["2024-07-24T07:00:49.010000"],["2024-07-24T07:00:50.010000"],["2024-07-24T07:00:51.010000"],["2024-07-24T07:00:52.010000"],["2024-07-24T07:00:53.010000"],["2024-07-24T07:00:54.010000"],["2024-07-24T07:00:55.010000"],["2024-07-24T07:00:56.010000"],["2024-07-24T07:00:57.010000"],["2024-07-24T07:00:58.010000"],["2024-07-24T07:00:59.010000"],["2024-07-24T07:01:00.010000"],["2024-07-24T07:01:01.010000"],["2024-07-24T07:01:02.010000"],["2024-07-24T07:01:03.010000"],["2024-07-24T07:01:04.010000"],["2024-07-24T07:01:05.010000"],["2024-07-24T07:01:06.010000"],["2024-07-24T07:01:07.010000"],["2024-07-24T07:01:08.010000"],["2024-07-24T07:01:09.010000"],["2024-07-24T07:01:10.010000"],["2024-07-24T07:01:11.010000"],["2024-07-24T07:01:12.010000"],["2024-07-24T07:01:13.010000"],["2024-07-24T07:01:14.010000"],["2024-07-24T07:01:15.010000"],["2024-07-24T07:01:16.010000"],["2024-07-24T07:01:17.010000"],["2024-07-24T07:01:18.010000"],["2024-07-24T07:01:19.010000"],["2024-07-24T07:01:20.010000"],["2024-07-24T07:01:21.010000"],["2024-07-24T07:01:22.010000"],["2024-07-24T07:01:23.010000"],["2024-07-24T07:01:24.010000"],["2024-07-24T07:01:25.010000"],["2024-07-24T07:01:26.010000"],["2024-07-24T07:01:27.010000"],["2024-07-24T07:01:28.010000"],["2024-07-24T07:01:29.010000"],["2024-07-24T07:01:30.010000"],["2024-07-24T07:01:31.010000"],["2024-07-24T07:01:32.010000"],["2024-07-24T07:01:33.010000"],["2024-07-24T07:01:34.010000"],["2024-07-24T07:01:35.010000"],["2024-07-24T07:01:36.010000"],["2024-07-24T07:01:37.010000"],["2024-07-24T07:01:38.010000"],["2024-07-24T07:01:39.010000"],["2024-07-24T07:01:40.010000"],["2024-07-24T07:01:41.010000"],["2024-07-24T07:01:42.010000"],["2024-07-24T07:01:43.010000"],["2024-07-24T07:01:44.010000"],["2024-07-24T07:01:45.010000"],["2024-07-24T07:01:46.010000"],["2024-07-24T07:01:47.010000"],["2024-07-24T07:01:48.010000"],["2024-07-24T07:01:49.010000"],["2024-07-24T07:01:50.010000"],["2024-07-24T07:01:51.010000"],["2024-07-24T07:01:52.010000"],["2024-07-24T07:01:53.010000"],["2024-07-24T07:01:54.010000"],["2024-07-24T07:01:55.010000"],["2024-07-24T07:01:56.010000"],["2024-07-24T07:01:57.010000"],["2024-07-24T07:01:58.010000"],["2024-07-24T07:01:59.010000"],["2024-07-24T07:02:00.010000"],["2024-07-24T07:02:01.010000"],["2024-07-24T07:02:02.010000"],["2024-07-24T07:02:03.010000"],["2024-07-24T07:02:04.010000"],["2024-07-24T07:02:05.010000"],["2024-07-24T07:02:06.010000"],["2024-07-24T07:02:07.010000"],["2024-07-24T07:02:08.010000"],["2024-07-24T07:02:09.010000"],["2024-07-24T07:02:10.010000"],["2024-07-24T07:02:11.010000"],["2024-07-24T07:02:12.010000"],["2024-07-24T07:02:13.010000"],["2024-07-24T07:02:14.010000"],["2024-07-24T07:02:15.010000"],["2024-07-24T07:02:16.010000"],["2024-07-24T07:02:17.010000"],["2024-07-24T07:02:18.010000"],["2024-07-24T07:02:19.010000"],["2024-07-24T07:02:20.010000"],["2024-07-24T07:02:21.010000"],["2024-07-24T07:02:22.010000"],["2024-07-24T07:02:23.010000"],["2024-07-24T07:02:24.010000"],["2024-07-24T07:02:25.010000"],["2024-07-24T07:02:26.010000"],["2024-07-24T07:02:27.010000"],["2024-07-24T07:02:28.010000"],["2024-07-24T07:02:29.010000"],["2024-07-24T07:02:30.010000"],["2024-07-24T07:02:31.010000"],["2024-07-24T07:02:32.010000"],["2024-07-24T07:02:33.010000"],["2024-07-24T07:02:34.010000"],["2024-07-24T07:02:35.010000"],["2024-07-24T07:02:36.010000"],["2024-07-24T07:02:37.010000"],["2024-07-24T07:02:38.010000"],["2024-07-24T07:02:39.010000"],["2024-07-24T07:02:40.010000"],["2024-07-24T07:02:41.010000"],["2024-07-24T07:02:42.010000"],["2024-07-24T07:02:43.010000"],["2024-07-24T07:02:44.010000"],["2024-07-24T07:02:45.010000"],["2024-07-24T07:02:46.010000"],["2024-07-24T07:02:47.010000"],["2024-07-24T07:02:48.010000"],["2024-07-24T07:02:49.010000"],["2024-07-24T07:02:50.010000"],["2024-07-24T07:02:51.010000"],["2024-07-24T07:02:52.010000"],["2024-07-24T07:02:53.010000"],["2024-07-24T07:02:54.010000"],["2024-07-24T07:02:55.010000"],["2024-07-24T07:02:56.010000"],["2024-07-24T07:02:57.010000"],["2024-07-24T07:02:58.010000"],["2024-07-24T07:02:59.010000"],["2024-07-24T07:03:00.010000"],["2024-07-24T07:03:01.010000"],["2024-07-24T07:03:02.010000"],["2024-07-24T07:03:03.010000"],["2024-07-24T07:03:04.010000"],["2024-07-24T07:03:05.010000"],["2024-07-24T07:03:06.010000"],["2024-07-24T07:03:07.010000"],["2024-07-24T07:03:08.010000"],["2024-07-24T07:03:09.010000"],["2024-07-24T07:03:10.010000"],["2024-07-24T07:03:11.010000"],["2024-07-24T07:03:12.010000"],["2024-07-24T07:03:13.010000"],["2024-07-24T07:03:14.010000"],["2024-07-24T07:03:15.010000"],["2024-07-24T07:03:16.010000"],["2024-07-24T07:03:17.010000"],["2024-07-24T07:03:18.010000"],["2024-07-24T07:03:19.010000"],["2024-07-24T07:03:20.010000"],["2024-07-24T07:03:21.010000"],["2024-07-24T07:03:22.010000"],["2024-07-24T07:03:23.010000"],["2024-07-24T07:03:24.010000"],["2024-07-24T07:03:25.010000"],["2024-07-24T07:03:26.010000"],["2024-07-24T07:03:27.010000"],["2024-07-24T07:03:28.010000"],["2024-07-24T07:03:29.010000"],["2024-07-24T07:03:30.010000"],["2024-07-24T07:03:31.010000"],["2024-07-24T07:03:32.010000"],["2024-07-24T07:03:33.010000"],["2024-07-24T07:03:34.010000"],["2024-07-24T07:03:35.010000"],["2024-07-24T07:03:36.010000"],["2024-07-24T07:03:37.010000"],["2024-07-24T07:03:38.010000"],["2024-07-24T07:03:39.010000"],["2024-07-24T07:03:40.010000"],["2024-07-24T07:03:41.010000"],["2024-07-24T07:03:42.010000"],["2024-07-24T07:03:43.010000"],["2024-07-24T07:03:44.010000"],["2024-07-24T07:03:45.010000"],["2024-07-24T07:03:46.010000"],["2024-07-24T07:03:47.010000"],["2024-07-24T07:03:48.010000"],["2024-07-24T07:03:49.010000"],["2024-07-24T07:03:50.010000"],["2024-07-24T07:03:51.010000"],["2024-07-24T07:03:52.010000"],["2024-07-24T07:03:53.010000"],["2024-07-24T07:03:54.010000"],["2024-07-24T07:03:55.010000"],["2024-07-24T07:03:56.010000"],["2024-07-24T07:03:57.010000"],["2024-07-24T07:03:58.010000"],["2024-07-24T07:03:59.010000"],["2024-07-24T07:04:00.010000"],["2024-07-24T07:04:01.010000"],["2024-07-24T07:04:02.010000"],["2024-07-24T07:04:03.010000"],["2024-07-24T07:04:04.010000"],["2024-07-24T07:04:05.010000"],["2024-07-24T07:04:06.010000"],["2024-07-24T07:04:07.010000"],["2024-07-24T07:04:08.010000"],["2024-07-24T07:04:09.010000"],["2024-07-24T07:04:10.010000"],["2024-07-24T07:04:11.010000"],["2024-07-24T07:04:12.010000"],["2024-07-24T07:04:13.010000"],["2024-07-24T07:04:14.010000"],["2024-07-24T07:04:15.010000"],["2024-07-24T07:04:16.010000"],["2024-07-24T07:04:17.010000"],["2024-07-24T07:04:18.010000"],["2024-07-24T07:04:19.010000"],["2024-07-24T07:04:20.010000"],["2024-07-24T07:04:21.010000"],["2024-07-24T07:04:22.010000"],["2024-07-24T07:04:23.010000"],["2024-07-24T07:04:24.010000"],["2024-07-24T07:04:25.010000"],["2024-07-24T07:04:26.010000"],["2024-07-24T07:04:27.010000"],["2024-07-24T07:04:28.010000"],["2024-07-24T07:04:29.010000"],["2024-07-24T07:04:30.010000"],["2024-07-24T07:04:31.010000"],["2024-07-24T07:04:32.010000"],["2024-07-24T07:04:33.010000"],["2024-07-24T07:04:34.010000"],["2024-07-24T07:04:35.010000"],["2024-07-24T07:04:36.010000"],["2024-07-24T07:04:37.010000"],["2024-07-24T07:04:38.010000"],["2024-07-24T07:04:39.010000"],["2024-07-24T07:04:40.010000"],["2024-07-24T07:04:41.010000"],["2024-07-24T07:04:42.010000"],["2024-07-24T07:04:43.010000"],["2024-07-24T07:04:44.010000"],["2024-07-24T07:04:45.010000"],["2024-07-24T07:04:46.010000"],["2024-07-24T07:04:47.010000"],["2024-07-24T07:04:48.010000"],["2024-07-24T07:04:49.010000"],["2024-07-24T07:04:50.010000"],["2024-07-24T07:04:51.010000"],["2024-07-24T07:04:52.010000"],["2024-07-24T07:04:53.010000"],["2024-07-24T07:04:54.010000"],["2024-07-24T07:04:55.010000"],["2024-07-24T07:04:56.010000"],["2024-07-24T07:04:57.010000"],["2024-07-24T07:04:58.010000"],["2024-07-24T07:04:59.010000"],["2024-07-24T07:05:00.010000"],["2024-07-24T07:05:01.010000"],["2024-07-24T07:05:02.010000"],["2024-07-24T07:05:03.010000"],["2024-07-24T07:05:04.010000"],["2024-07-24T07:05:05.010000"],["2024-07-24T07:05:06.010000"],["2024-07-24T07:05:07.010000"],["2024-07-24T07:05:08.010000"],["2024-07-24T07:05:09.010000"],["2024-07-24T07:05:10.010000"],["2024-07-24T07:05:11.010000"],["2024-07-24T07:05:12.010000"],["2024-07-24T07:05:13.010000"],["2024-07-24T07:05:14.010000"],["2024-07-24T07:05:15.010000"],["2024-07-24T07:05:16.010000"],["2024-07-24T07:05:17.010000"],["2024-07-24T07:05:18.010000"],["2024-07-24T07:05:19.010000"],["2024-07-24T07:05:20.010000"],["2024-07-24T07:05:21.010000"],["2024-07-24T07:05:22.010000"],["2024-07-24T07:05:23.010000"],["2024-07-24T07:05:24.010000"],["2024-07-24T07:05:25.010000"],["2024-07-24T07:05:26.010000"],["2024-07-24T07:05:27.010000"],["2024-07-24T07:05:28.010000"],["2024-07-24T07:05:29.010000"],["2024-07-24T07:05:30.010000"],["2024-07-24T07:05:31.010000"],["2024-07-24T07:05:32.010000"],["2024-07-24T07:05:33.010000"],["2024-07-24T07:05:34.010000"],["2024-07-24T07:05:35.010000"],["2024-07-24T07:05:36.010000"],["2024-07-24T07:05:37.010000"],["2024-07-24T07:05:38.010000"],["2024-07-24T07:05:39.010000"],["2024-07-24T07:05:40.010000"],["2024-07-24T07:05:41.010000"],["2024-07-24T07:05:42.010000"],["2024-07-24T07:05:43.010000"],["2024-07-24T07:05:44.010000"],["2024-07-24T07:05:45.010000"],["2024-07-24T07:05:46.010000"],["2024-07-24T07:05:47.010000"],["2024-07-24T07:05:48.010000"],["2024-07-24T07:05:49.010000"],["2024-07-24T07:05:50.010000"],["2024-07-24T07:05:51.010000"],["2024-07-24T07:05:52.010000"],["2024-07-24T07:05:53.010000"],["2024-07-24T07:05:54.010000"],["2024-07-24T07:05:55.010000"],["2024-07-24T07:05:56.010000"],["2024-07-24T07:05:57.010000"],["2024-07-24T07:05:58.010000"],["2024-07-24T07:05:59.010000"],["2024-07-24T07:06:00.010000"],["2024-07-24T07:06:01.010000"],["2024-07-24T07:06:02.010000"],["2024-07-24T07:06:03.010000"],["2024-07-24T07:06:04.010000"],["2024-07-24T07:06:05.010000"],["2024-07-24T07:06:06.010000"],["2024-07-24T07:06:07.010000"],["2024-07-24T07:06:08.010000"],["2024-07-24T07:06:09.010000"],["2024-07-24T07:06:10.010000"],["2024-07-24T07:06:11.010000"],["2024-07-24T07:06:12.010000"],["2024-07-24T07:06:13.010000"],["2024-07-24T07:06:14.010000"],["2024-07-24T07:06:15.010000"],["2024-07-24T07:06:16.010000"],["2024-07-24T07:06:17.010000"],["2024-07-24T07:06:18.010000"],["2024-07-24T07:06:19.010000"],["2024-07-24T07:06:20.010000"],["2024-07-24T07:06:21.010000"],["2024-07-24T07:06:22.010000"],["2024-07-24T07:06:23.010000"],["2024-07-24T07:06:24.010000"],["2024-07-24T07:06:25.010000"],["2024-07-24T07:06:26.010000"],["2024-07-24T07:06:27.010000"],["2024-07-24T07:06:28.010000"],["2024-07-24T07:06:29.010000"],["2024-07-24T07:06:30.010000"],["2024-07-24T07:06:31.010000"],["2024-07-24T07:06:32.010000"],["2024-07-24T07:06:33.010000"],["2024-07-24T07:06:34.010000"],["2024-07-24T07:06:35.010000"],["2024-07-24T07:06:36.010000"],["2024-07-24T07:06:37.010000"],["2024-07-24T07:06:38.010000"],["2024-07-24T07:06:39.010000"],["2024-07-24T07:06:40.010000"],["2024-07-24T07:06:41.010000"],["2024-07-24T07:06:42.010000"],["2024-07-24T07:06:43.010000"],["2024-07-24T07:06:44.010000"],["2024-07-24T07:06:45.010000"],["2024-07-24T07:06:46.010000"],["2024-07-24T07:06:47.010000"],["2024-07-24T07:06:48.010000"],["2024-07-24T07:06:49.010000"],["2024-07-24T07:06:50.010000"],["2024-07-24T07:06:51.010000"],["2024-07-24T07:06:52.010000"],["2024-07-24T07:06:53.010000"],["2024-07-24T07:06:54.010000"],["2024-07-24T07:06:55.010000"],["2024-07-24T07:06:56.010000"],["2024-07-24T07:06:57.010000"],["2024-07-24T07:06:58.010000"],["2024-07-24T07:06:59.010000"],["2024-07-24T07:07:00.010000"],["2024-07-24T07:07:01.010000"],["2024-07-24T07:07:02.010000"],["2024-07-24T07:07:03.010000"],["2024-07-24T07:07:04.010000"],["2024-07-24T07:07:05.010000"],["2024-07-24T07:07:06.010000"],["2024-07-24T07:07:07.010000"],["2024-07-24T07:07:08.010000"],["2024-07-24T07:07:09.010000"],["2024-07-24T07:07:10.010000"],["2024-07-24T07:07:11.010000"],["2024-07-24T07:07:12.010000"],["2024-07-24T07:07:13.010000"],["2024-07-24T07:07:14.010000"],["2024-07-24T07:07:15.010000"],["2024-07-24T07:07:16.010000"],["2024-07-24T07:07:17.010000"],["2024-07-24T07:07:18.010000"],["2024-07-24T07:07:19.010000"],["2024-07-24T07:07:20.010000"],["2024-07-24T07:07:21.010000"],["2024-07-24T07:07:22.010000"],["2024-07-24T07:07:23.010000"],["2024-07-24T07:07:24.010000"],["2024-07-24T07:07:25.010000"],["2024-07-24T07:07:26.010000"],["2024-07-24T07:07:27.010000"],["2024-07-24T07:07:28.010000"],["2024-07-24T07:07:29.010000"],["2024-07-24T07:07:30.010000"],["2024-07-24T07:07:31.010000"],["2024-07-24T07:07:32.010000"],["2024-07-24T07:07:33.010000"],["2024-07-24T07:07:34.010000"],["2024-07-24T07:07:35.010000"],["2024-07-24T07:07:36.010000"],["2024-07-24T07:07:37.010000"],["2024-07-24T07:07:38.010000"],["2024-07-24T07:07:39.010000"],["2024-07-24T07:07:40.010000"],["2024-07-24T07:07:41.010000"],["2024-07-24T07:07:42.010000"],["2024-07-24T07:07:43.010000"],["2024-07-24T07:07:44.010000"],["2024-07-24T07:07:45.010000"],["2024-07-24T07:07:46.010000"],["2024-07-24T07:07:47.010000"],["2024-07-24T07:07:48.010000"],["2024-07-24T07:07:49.010000"],["2024-07-24T07:07:50.010000"],["2024-07-24T07:07:51.010000"],["2024-07-24T07:07:52.010000"],["2024-07-24T07:07:53.010000"],["2024-07-24T07:07:54.010000"],["2024-07-24T07:07:55.010000"],["2024-07-24T07:07:56.010000"],["2024-07-24T07:07:57.010000"],["2024-07-24T07:07:58.010000"],["2024-07-24T07:07:59.010000"],["2024-07-24T07:08:00.010000"],["2024-07-24T07:08:01.010000"],["2024-07-24T07:08:02.010000"],["2024-07-24T07:08:03.010000"],["2024-07-24T07:08:04.010000"],["2024-07-24T07:08:05.010000"],["2024-07-24T07:08:06.010000"],["2024-07-24T07:08:07.010000"],["2024-07-24T07:08:08.010000"],["2024-07-24T07:08:09.010000"],["2024-07-24T07:08:10.010000"],["2024-07-24T07:08:11.010000"],["2024-07-24T07:08:12.010000"],["2024-07-24T07:08:13.010000"],["2024-07-24T07:08:14.010000"],["2024-07-24T07:08:15.010000"],["2024-07-24T07:08:16.010000"],["2024-07-24T07:08:17.010000"],["2024-07-24T07:08:18.010000"],["2024-07-24T07:08:19.010000"],["2024-07-24T07:08:20.010000"],["2024-07-24T07:08:21.010000"],["2024-07-24T07:08:22.010000"],["2024-07-24T07:08:23.010000"],["2024-07-24T07:08:24.010000"],["2024-07-24T07:08:25.010000"],["2024-07-24T07:08:26.010000"],["2024-07-24T07:08:27.010000"],["2024-07-24T07:08:28.010000"],["2024-07-24T07:08:29.010000"],["2024-07-24T07:08:30.010000"],["2024-07-24T07:08:31.010000"],["2024-07-24T07:08:32.010000"],["2024-07-24T07:08:33.010000"],["2024-07-24T07:08:34.010000"],["2024-07-24T07:08:35.010000"],["2024-07-24T07:08:36.010000"],["2024-07-24T07:08:37.010000"],["2024-07-24T07:08:38.010000"],["2024-07-24T07:08:39.010000"],["2024-07-24T07:08:40.010000"],["2024-07-24T07:08:41.010000"],["2024-07-24T07:08:42.010000"],["2024-07-24T07:08:43.010000"],["2024-07-24T07:08:44.010000"],["2024-07-24T07:08:45.010000"],["2024-07-24T07:08:46.010000"],["2024-07-24T07:08:47.010000"],["2024-07-24T07:08:48.010000"],["2024-07-24T07:08:49.010000"],["2024-07-24T07:08:50.010000"],["2024-07-24T07:08:51.010000"],["2024-07-24T07:08:52.010000"],["2024-07-24T07:08:53.010000"],["2024-07-24T07:08:54.010000"],["2024-07-24T07:08:55.010000"],["2024-07-24T07:08:56.010000"],["2024-07-24T07:08:57.010000"],["2024-07-24T07:08:58.010000"],["2024-07-24T07:08:59.010000"],["2024-07-24T07:09:00.010000"],["2024-07-24T07:09:01.010000"],["2024-07-24T07:09:02.010000"],["2024-07-24T07:09:03.010000"],["2024-07-24T07:09:04.010000"],["2024-07-24T07:09:05.010000"],["2024-07-24T07:09:06.010000"],["2024-07-24T07:09:07.010000"],["2024-07-24T07:09:08.010000"],["2024-07-24T07:09:09.010000"],["2024-07-24T07:09:10.010000"],["2024-07-24T07:09:11.010000"],["2024-07-24T07:09:12.010000"],["2024-07-24T07:09:13.010000"],["2024-07-24T07:09:14.010000"],["2024-07-24T07:09:15.010000"],["2024-07-24T07:09:16.010000"],["2024-07-24T07:09:17.010000"],["2024-07-24T07:09:18.010000"],["2024-07-24T07:09:19.010000"],["2024-07-24T07:09:20.010000"],["2024-07-24T07:09:21.010000"],["2024-07-24T07:09:22.010000"],["2024-07-24T07:09:23.010000"],["2024-07-24T07:09:24.010000"],["2024-07-24T07:09:25.010000"],["2024-07-24T07:09:26.010000"],["2024-07-24T07:09:27.010000"],["2024-07-24T07:09:28.010000"],["2024-07-24T07:09:29.010000"],["2024-07-24T07:09:30.010000"],["2024-07-24T07:09:31.010000"],["2024-07-24T07:09:32.010000"],["2024-07-24T07:09:33.010000"],["2024-07-24T07:09:34.010000"],["2024-07-24T07:09:35.010000"],["2024-07-24T07:09:36.010000"],["2024-07-24T07:09:37.010000"],["2024-07-24T07:09:38.010000"],["2024-07-24T07:09:39.010000"],["2024-07-24T07:09:40.010000"],["2024-07-24T07:09:41.010000"],["2024-07-24T07:09:42.010000"],["2024-07-24T07:09:43.010000"],["2024-07-24T07:09:44.010000"],["2024-07-24T07:09:45.010000"],["2024-07-24T07:09:46.010000"],["2024-07-24T07:09:47.010000"],["2024-07-24T07:09:48.010000"],["2024-07-24T07:09:49.010000"],["2024-07-24T07:09:50.010000"],["2024-07-24T07:09:51.010000"],["2024-07-24T07:09:52.010000"],["2024-07-24T07:09:53.010000"],["2024-07-24T07:09:54.010000"],["2024-07-24T07:09:55.010000"],["2024-07-24T07:09:56.010000"],["2024-07-24T07:09:57.010000"],["2024-07-24T07:09:58.010000"],["2024-07-24T07:09:59.010000"],["2024-07-24T07:10:00.010000"],["2024-07-24T07:10:01.010000"],["2024-07-24T07:10:02.010000"],["2024-07-24T07:10:03.010000"],["2024-07-24T07:10:04.010000"],["2024-07-24T07:10:05.010000"],["2024-07-24T07:10:06.010000"],["2024-07-24T07:10:07.010000"],["2024-07-24T07:10:08.010000"],["2024-07-24T07:10:09.010000"],["2024-07-24T07:10:10.010000"],["2024-07-24T07:10:11.010000"],["2024-07-24T07:10:12.010000"],["2024-07-24T07:10:13.010000"],["2024-07-24T07:10:14.010000"],["2024-07-24T07:10:15.010000"],["2024-07-24T07:10:16.010000"],["2024-07-24T07:10:17.010000"],["2024-07-24T07:10:18.010000"],["2024-07-24T07:10:19.010000"],["2024-07-24T07:10:20.010000"],["2024-07-24T07:10:21.010000"],["2024-07-24T07:10:22.010000"],["2024-07-24T07:10:23.010000"],["2024-07-24T07:10:24.010000"],["2024-07-24T07:10:25.010000"],["2024-07-24T07:10:26.010000"],["2024-07-24T07:10:27.010000"],["2024-07-24T07:10:28.010000"],["2024-07-24T07:10:29.010000"],["2024-07-24T07:10:30.010000"],["2024-07-24T07:10:31.010000"],["2024-07-24T07:10:32.010000"],["2024-07-24T07:10:33.010000"],["2024-07-24T07:10:34.010000"],["2024-07-24T07:10:35.010000"],["2024-07-24T07:10:36.010000"],["2024-07-24T07:10:37.010000"],["2024-07-24T07:10:38.010000"],["2024-07-24T07:10:39.010000"],["2024-07-24T07:10:40.010000"],["2024-07-24T07:10:41.010000"],["2024-07-24T07:10:42.010000"],["2024-07-24T07:10:43.010000"],["2024-07-24T07:10:44.010000"],["2024-07-24T07:10:45.010000"],["2024-07-24T07:10:46.010000"],["2024-07-24T07:10:47.010000"],["2024-07-24T07:10:48.010000"],["2024-07-24T07:10:49.010000"],["2024-07-24T07:10:50.010000"],["2024-07-24T07:10:51.010000"],["2024-07-24T07:10:52.010000"],["2024-07-24T07:10:53.010000"],["2024-07-24T07:10:54.010000"],["2024-07-24T07:10:55.010000"],["2024-07-24T07:10:56.010000"],["2024-07-24T07:10:57.010000"],["2024-07-24T07:10:58.010000"],["2024-07-24T07:10:59.010000"],["2024-07-24T07:11:00.010000"],["2024-07-24T07:11:01.010000"],["2024-07-24T07:11:02.010000"],["2024-07-24T07:11:03.010000"],["2024-07-24T07:11:04.010000"],["2024-07-24T07:11:05.010000"],["2024-07-24T07:11:06.010000"],["2024-07-24T07:11:07.010000"],["2024-07-24T07:11:08.010000"],["2024-07-24T07:11:09.010000"],["2024-07-24T07:11:10.010000"],["2024-07-24T07:11:11.010000"],["2024-07-24T07:11:12.010000"],["2024-07-24T07:11:13.010000"],["2024-07-24T07:11:14.010000"],["2024-07-24T07:11:15.010000"],["2024-07-24T07:11:16.010000"],["2024-07-24T07:11:17.010000"],["2024-07-24T07:11:18.010000"],["2024-07-24T07:11:19.010000"],["2024-07-24T07:11:20.010000"],["2024-07-24T07:11:21.010000"],["2024-07-24T07:11:22.010000"],["2024-07-24T07:11:23.010000"],["2024-07-24T07:11:24.010000"],["2024-07-24T07:11:25.010000"],["2024-07-24T07:11:26.010000"],["2024-07-24T07:11:27.010000"],["2024-07-24T07:11:28.010000"],["2024-07-24T07:11:29.010000"],["2024-07-24T07:11:30.010000"],["2024-07-24T07:11:31.010000"],["2024-07-24T07:11:32.010000"],["2024-07-24T07:11:33.010000"],["2024-07-24T07:11:34.010000"],["2024-07-24T07:11:35.010000"],["2024-07-24T07:11:36.010000"],["2024-07-24T07:11:37.010000"],["2024-07-24T07:11:38.010000"],["2024-07-24T07:11:39.010000"],["2024-07-24T07:11:40.010000"],["2024-07-24T07:11:41.010000"],["2024-07-24T07:11:42.010000"],["2024-07-24T07:11:43.010000"],["2024-07-24T07:11:44.010000"],["2024-07-24T07:11:45.010000"],["2024-07-24T07:11:46.010000"],["2024-07-24T07:11:47.010000"],["2024-07-24T07:11:48.010000"],["2024-07-24T07:11:49.010000"],["2024-07-24T07:11:50.010000"],["2024-07-24T07:11:51.010000"],["2024-07-24T07:11:52.010000"],["2024-07-24T07:11:53.010000"],["2024-07-24T07:11:54.010000"],["2024-07-24T07:11:55.010000"],["2024-07-24T07:11:56.010000"],["2024-07-24T07:11:57.010000"],["2024-07-24T07:11:58.010000"],["2024-07-24T07:11:59.010000"],["2024-07-24T07:12:00.010000"],["2024-07-24T07:12:01.010000"],["2024-07-24T07:12:02.010000"],["2024-07-24T07:12:03.010000"],["2024-07-24T07:12:04.010000"],["2024-07-24T07:12:05.010000"],["2024-07-24T07:12:06.010000"],["2024-07-24T07:12:07.010000"],["2024-07-24T07:12:08.010000"],["2024-07-24T07:12:09.010000"],["2024-07-24T07:12:10.010000"],["2024-07-24T07:12:11.010000"],["2024-07-24T07:12:12.010000"],["2024-07-24T07:12:13.010000"],["2024-07-24T07:12:14.010000"],["2024-07-24T07:12:15.010000"],["2024-07-24T07:12:16.010000"],["2024-07-24T07:12:17.010000"],["2024-07-24T07:12:18.010000"],["2024-07-24T07:12:19.010000"],["2024-07-24T07:12:20.010000"],["2024-07-24T07:12:21.010000"],["2024-07-24T07:12:22.010000"],["2024-07-24T07:12:23.010000"],["2024-07-24T07:12:24.010000"],["2024-07-24T07:12:25.010000"],["2024-07-24T07:12:26.010000"],["2024-07-24T07:12:27.010000"],["2024-07-24T07:12:28.010000"],["2024-07-24T07:12:29.010000"],["2024-07-24T07:12:30.010000"],["2024-07-24T07:12:31.010000"],["2024-07-24T07:12:32.010000"],["2024-07-24T07:12:33.010000"],["2024-07-24T07:12:34.010000"],["2024-07-24T07:12:35.010000"],["2024-07-24T07:12:36.010000"],["2024-07-24T07:12:37.010000"],["2024-07-24T07:12:38.010000"],["2024-07-24T07:12:39.010000"],["2024-07-24T07:12:40.010000"],["2024-07-24T07:12:41.010000"],["2024-07-24T07:12:42.010000"],["2024-07-24T07:12:43.010000"],["2024-07-24T07:12:44.010000"],["2024-07-24T07:12:45.010000"],["2024-07-24T07:12:46.010000"],["2024-07-24T07:12:47.010000"],["2024-07-24T07:12:48.010000"],["2024-07-24T07:12:49.010000"],["2024-07-24T07:12:50.010000"],["2024-07-24T07:12:51.010000"],["2024-07-24T07:12:52.010000"],["2024-07-24T07:12:53.010000"],["2024-07-24T07:12:54.010000"],["2024-07-24T07:12:55.010000"],["2024-07-24T07:12:56.010000"],["2024-07-24T07:12:57.010000"],["2024-07-24T07:12:58.010000"],["2024-07-24T07:12:59.010000"],["2024-07-24T07:13:00.010000"],["2024-07-24T07:13:01.010000"],["2024-07-24T07:13:02.010000"],["2024-07-24T07:13:03.010000"],["2024-07-24T07:13:04.010000"],["2024-07-24T07:13:05.010000"],["2024-07-24T07:13:06.010000"],["2024-07-24T07:13:07.010000"],["2024-07-24T07:13:08.010000"],["2024-07-24T07:13:09.010000"],["2024-07-24T07:13:10.010000"],["2024-07-24T07:13:11.010000"],["2024-07-24T07:13:12.010000"],["2024-07-24T07:13:13.010000"],["2024-07-24T07:13:14.010000"],["2024-07-24T07:13:15.010000"],["2024-07-24T07:13:16.010000"],["2024-07-24T07:13:17.010000"],["2024-07-24T07:13:18.010000"],["2024-07-24T07:13:19.010000"],["2024-07-24T07:13:20.010000"],["2024-07-24T07:13:21.010000"],["2024-07-24T07:13:22.010000"],["2024-07-24T07:13:23.010000"],["2024-07-24T07:13:24.010000"],["2024-07-24T07:13:25.010000"],["2024-07-24T07:13:26.010000"],["2024-07-24T07:13:27.010000"],["2024-07-24T07:13:28.010000"],["2024-07-24T07:13:29.010000"],["2024-07-24T07:13:30.010000"],["2024-07-24T07:13:31.010000"],["2024-07-24T07:13:32.010000"],["2024-07-24T07:13:33.010000"],["2024-07-24T07:13:34.010000"],["2024-07-24T07:13:35.010000"],["2024-07-24T07:13:36.010000"],["2024-07-24T07:13:37.010000"],["2024-07-24T07:13:38.010000"],["2024-07-24T07:13:39.010000"],["2024-07-24T07:13:40.010000"],["2024-07-24T07:13:41.010000"],["2024-07-24T07:13:42.010000"],["2024-07-24T07:13:43.010000"],["2024-07-24T07:13:44.010000"],["2024-07-24T07:13:45.010000"],["2024-07-24T07:13:46.010000"],["2024-07-24T07:13:47.010000"],["2024-07-24T07:13:48.010000"],["2024-07-24T07:13:49.010000"],["2024-07-24T07:13:50.010000"],["2024-07-24T07:13:51.010000"],["2024-07-24T07:13:52.010000"],["2024-07-24T07:13:53.010000"],["2024-07-24T07:13:54.010000"],["2024-07-24T07:13:55.010000"],["2024-07-24T07:13:56.010000"],["2024-07-24T07:13:57.010000"],["2024-07-24T07:13:58.010000"],["2024-07-24T07:13:59.010000"],["2024-07-24T07:14:00.010000"],["2024-07-24T07:14:01.010000"],["2024-07-24T07:14:02.010000"],["2024-07-24T07:14:03.010000"],["2024-07-24T07:14:04.010000"],["2024-07-24T07:14:05.010000"],["2024-07-24T07:14:06.010000"],["2024-07-24T07:14:07.010000"],["2024-07-24T07:14:08.010000"],["2024-07-24T07:14:09.010000"],["2024-07-24T07:14:10.010000"],["2024-07-24T07:14:11.010000"],["2024-07-24T07:14:12.010000"],["2024-07-24T07:14:13.010000"],["2024-07-24T07:14:14.010000"],["2024-07-24T07:14:15.010000"],["2024-07-24T07:14:16.010000"],["2024-07-24T07:14:17.010000"],["2024-07-24T07:14:18.010000"],["2024-07-24T07:14:19.010000"],["2024-07-24T07:14:20.010000"],["2024-07-24T07:14:21.010000"],["2024-07-24T07:14:22.010000"],["2024-07-24T07:14:23.010000"],["2024-07-24T07:14:24.010000"],["2024-07-24T07:14:25.010000"],["2024-07-24T07:14:26.010000"],["2024-07-24T07:14:27.010000"],["2024-07-24T07:14:28.010000"],["2024-07-24T07:14:29.010000"],["2024-07-24T07:14:30.010000"],["2024-07-24T07:14:31.010000"],["2024-07-24T07:14:32.010000"],["2024-07-24T07:14:33.010000"],["2024-07-24T07:14:34.010000"],["2024-07-24T07:14:35.010000"],["2024-07-24T07:14:36.010000"],["2024-07-24T07:14:37.010000"],["2024-07-24T07:14:38.010000"],["2024-07-24T07:14:39.010000"],["2024-07-24T07:14:40.010000"],["2024-07-24T07:14:41.010000"],["2024-07-24T07:14:42.010000"],["2024-07-24T07:14:43.010000"],["2024-07-24T07:14:44.010000"],["2024-07-24T07:14:45.010000"],["2024-07-24T07:14:46.010000"],["2024-07-24T07:14:47.010000"],["2024-07-24T07:14:48.010000"],["2024-07-24T07:14:49.010000"],["2024-07-24T07:14:50.010000"],["2024-07-24T07:14:51.010000"],["2024-07-24T07:14:52.010000"],["2024-07-24T07:14:53.010000"],["2024-07-24T07:14:54.010000"],["2024-07-24T07:14:55.010000"],["2024-07-24T07:14:56.010000"],["2024-07-24T07:14:57.010000"],["2024-07-24T07:14:58.010000"],["2024-07-24T07:14:59.010000"],["2024-07-24T07:15:00.010000"],["2024-07-24T07:15:01.010000"],["2024-07-24T07:15:02.010000"],["2024-07-24T07:15:03.010000"],["2024-07-24T07:15:04.010000"],["2024-07-24T07:15:05.010000"],["2024-07-24T07:15:06.010000"],["2024-07-24T07:15:07.010000"],["2024-07-24T07:15:08.010000"],["2024-07-24T07:15:09.010000"],["2024-07-24T07:15:10.010000"],["2024-07-24T07:15:11.010000"],["2024-07-24T07:15:12.010000"],["2024-07-24T07:15:13.010000"],["2024-07-24T07:15:14.010000"],["2024-07-24T07:15:15.010000"],["2024-07-24T07:15:16.010000"],["2024-07-24T07:15:17.010000"],["2024-07-24T07:15:18.010000"],["2024-07-24T07:15:19.010000"],["2024-07-24T07:15:20.010000"],["2024-07-24T07:15:21.010000"],["2024-07-24T07:15:22.010000"],["2024-07-24T07:15:23.010000"],["2024-07-24T07:15:24.010000"],["2024-07-24T07:15:25.010000"],["2024-07-24T07:15:26.010000"],["2024-07-24T07:15:27.010000"],["2024-07-24T07:15:28.010000"],["2024-07-24T07:15:29.010000"],["2024-07-24T07:15:30.010000"],["2024-07-24T07:15:31.010000"],["2024-07-24T07:15:32.010000"],["2024-07-24T07:15:33.010000"],["2024-07-24T07:15:34.010000"],["2024-07-24T07:15:35.010000"],["2024-07-24T07:15:36.010000"],["2024-07-24T07:15:37.010000"],["2024-07-24T07:15:38.010000"],["2024-07-24T07:15:39.010000"],["2024-07-24T07:15:40.010000"],["2024-07-24T07:15:41.010000"],["2024-07-24T07:15:42.010000"],["2024-07-24T07:15:43.010000"],["2024-07-24T07:15:44.010000"],["2024-07-24T07:15:45.010000"],["2024-07-24T07:15:46.010000"],["2024-07-24T07:15:47.010000"],["2024-07-24T07:15:48.010000"],["2024-07-24T07:15:49.010000"],["2024-07-24T07:15:50.010000"],["2024-07-24T07:15:51.010000"],["2024-07-24T07:15:52.010000"],["2024-07-24T07:15:53.010000"],["2024-07-24T07:15:54.010000"],["2024-07-24T07:15:55.010000"],["2024-07-24T07:15:56.010000"],["2024-07-24T07:15:57.010000"],["2024-07-24T07:15:58.010000"],["2024-07-24T07:15:59.010000"],["2024-07-24T07:16:00.010000"],["2024-07-24T07:16:01.010000"],["2024-07-24T07:16:02.010000"],["2024-07-24T07:16:03.010000"],["2024-07-24T07:16:04.010000"],["2024-07-24T07:16:05.010000"],["2024-07-24T07:16:06.010000"],["2024-07-24T07:16:07.010000"],["2024-07-24T07:16:08.010000"],["2024-07-24T07:16:09.010000"],["2024-07-24T07:16:10.010000"],["2024-07-24T07:16:11.010000"],["2024-07-24T07:16:12.010000"],["2024-07-24T07:16:13.010000"],["2024-07-24T07:16:14.010000"],["2024-07-24T07:16:15.010000"],["2024-07-24T07:16:16.010000"],["2024-07-24T07:16:17.010000"],["2024-07-24T07:16:18.010000"],["2024-07-24T07:16:19.010000"],["2024-07-24T07:16:20.010000"],["2024-07-24T07:16:21.010000"],["2024-07-24T07:16:22.010000"],["2024-07-24T07:16:23.010000"],["2024-07-24T07:16:24.010000"],["2024-07-24T07:16:25.010000"],["2024-07-24T07:16:26.010000"],["2024-07-24T07:16:27.010000"],["2024-07-24T07:16:28.010000"],["2024-07-24T07:16:29.010000"],["2024-07-24T07:16:30.010000"],["2024-07-24T07:16:31.010000"],["2024-07-24T07:16:32.010000"],["2024-07-24T07:16:33.010000"],["2024-07-24T07:16:34.010000"],["2024-07-24T07:16:35.010000"],["2024-07-24T07:16:36.010000"],["2024-07-24T07:16:37.010000"],["2024-07-24T07:16:38.010000"],["2024-07-24T07:16:39.010000"],["2024-07-24T07:16:40.010000"],["2024-07-24T07:16:41.010000"],["2024-07-24T07:16:42.010000"],["2024-07-24T07:16:43.010000"],["2024-07-24T07:16:44.010000"],["2024-07-24T07:16:45.010000"],["2024-07-24T07:16:46.010000"],["2024-07-24T07:16:47.010000"],["2024-07-24T07:16:48.010000"],["2024-07-24T07:16:49.010000"],["2024-07-24T07:16:50.010000"],["2024-07-24T07:16:51.010000"],["2024-07-24T07:16:52.010000"],["2024-07-24T07:16:53.010000"],["2024-07-24T07:16:54.010000"],["2024-07-24T07:16:55.010000"],["2024-07-24T07:16:56.010000"],["2024-07-24T07:16:57.010000"],["2024-07-24T07:16:58.010000"],["2024-07-24T07:16:59.010000"],["2024-07-24T07:17:00.010000"],["2024-07-24T07:17:01.010000"],["2024-07-24T07:17:02.010000"],["2024-07-24T07:17:03.010000"],["2024-07-24T07:17:04.010000"],["2024-07-24T07:17:05.010000"],["2024-07-24T07:17:06.010000"],["2024-07-24T07:17:07.010000"],["2024-07-24T07:17:08.010000"],["2024-07-24T07:17:09.010000"],["2024-07-24T07:17:10.010000"],["2024-07-24T07:17:11.010000"],["2024-07-24T07:17:12.010000"],["2024-07-24T07:17:13.010000"],["2024-07-24T07:17:14.010000"],["2024-07-24T07:17:15.010000"],["2024-07-24T07:17:16.010000"],["2024-07-24T07:17:17.010000"],["2024-07-24T07:17:18.010000"],["2024-07-24T07:17:19.010000"],["2024-07-24T07:17:20.010000"],["2024-07-24T07:17:21.010000"],["2024-07-24T07:17:22.010000"],["2024-07-24T07:17:23.010000"],["2024-07-24T07:17:24.010000"],["2024-07-24T07:17:25.010000"],["2024-07-24T07:17:26.010000"],["2024-07-24T07:17:27.010000"],["2024-07-24T07:17:28.010000"],["2024-07-24T07:17:29.010000"],["2024-07-24T07:17:30.010000"],["2024-07-24T07:17:31.010000"],["2024-07-24T07:17:32.010000"],["2024-07-24T07:17:33.010000"],["2024-07-24T07:17:34.010000"],["2024-07-24T07:17:35.010000"],["2024-07-24T07:17:36.010000"],["2024-07-24T07:17:37.010000"],["2024-07-24T07:17:38.010000"],["2024-07-24T07:17:39.010000"],["2024-07-24T07:17:40.010000"],["2024-07-24T07:17:41.010000"],["2024-07-24T07:17:42.010000"],["2024-07-24T07:17:43.010000"],["2024-07-24T07:17:44.010000"],["2024-07-24T07:17:45.010000"],["2024-07-24T07:17:46.010000"],["2024-07-24T07:17:47.010000"],["2024-07-24T07:17:48.010000"],["2024-07-24T07:17:49.010000"],["2024-07-24T07:17:50.010000"],["2024-07-24T07:17:51.010000"],["2024-07-24T07:17:52.010000"],["2024-07-24T07:17:53.010000"],["2024-07-24T07:17:54.010000"],["2024-07-24T07:17:55.010000"],["2024-07-24T07:17:56.010000"],["2024-07-24T07:17:57.010000"],["2024-07-24T07:17:58.010000"],["2024-07-24T07:17:59.010000"],["2024-07-24T07:18:00.010000"],["2024-07-24T07:18:01.010000"],["2024-07-24T07:18:02.010000"],["2024-07-24T07:18:03.010000"],["2024-07-24T07:18:04.010000"],["2024-07-24T07:18:05.010000"],["2024-07-24T07:18:06.010000"],["2024-07-24T07:18:07.010000"],["2024-07-24T07:18:08.010000"],["2024-07-24T07:18:09.010000"],["2024-07-24T07:18:10.010000"],["2024-07-24T07:18:11.010000"],["2024-07-24T07:18:12.010000"],["2024-07-24T07:18:13.010000"],["2024-07-24T07:18:14.010000"],["2024-07-24T07:18:15.010000"],["2024-07-24T07:18:16.010000"],["2024-07-24T07:18:17.010000"],["2024-07-24T07:18:18.010000"],["2024-07-24T07:18:19.010000"],["2024-07-24T07:18:20.010000"],["2024-07-24T07:18:21.010000"],["2024-07-24T07:18:22.010000"],["2024-07-24T07:18:23.010000"],["2024-07-24T07:18:24.010000"],["2024-07-24T07:18:25.010000"],["2024-07-24T07:18:26.010000"],["2024-07-24T07:18:27.010000"],["2024-07-24T07:18:28.010000"],["2024-07-24T07:18:29.010000"],["2024-07-24T07:18:30.010000"],["2024-07-24T07:18:31.010000"],["2024-07-24T07:18:32.010000"],["2024-07-24T07:18:33.010000"],["2024-07-24T07:18:34.010000"],["2024-07-24T07:18:35.010000"],["2024-07-24T07:18:36.010000"],["2024-07-24T07:18:37.010000"],["2024-07-24T07:18:38.010000"],["2024-07-24T07:18:39.010000"],["2024-07-24T07:18:40.010000"],["2024-07-24T07:18:41.010000"],["2024-07-24T07:18:42.010000"],["2024-07-24T07:18:43.010000"],["2024-07-24T07:18:44.010000"],["2024-07-24T07:18:45.010000"],["2024-07-24T07:18:46.010000"],["2024-07-24T07:18:47.010000"],["2024-07-24T07:18:48.010000"],["2024-07-24T07:18:49.010000"],["2024-07-24T07:18:50.010000"],["2024-07-24T07:18:51.010000"],["2024-07-24T07:18:52.010000"],["2024-07-24T07:18:53.010000"],["2024-07-24T07:18:54.010000"],["2024-07-24T07:18:55.010000"],["2024-07-24T07:18:56.010000"],["2024-07-24T07:18:57.010000"],["2024-07-24T07:18:58.010000"],["2024-07-24T07:18:59.010000"],["2024-07-24T07:19:00.010000"],["2024-07-24T07:19:01.010000"],["2024-07-24T07:19:02.010000"],["2024-07-24T07:19:03.010000"],["2024-07-24T07:19:04.010000"],["2024-07-24T07:19:05.010000"],["2024-07-24T07:19:06.010000"],["2024-07-24T07:19:07.010000"],["2024-07-24T07:19:08.010000"],["2024-07-24T07:19:09.010000"],["2024-07-24T07:19:10.010000"],["2024-07-24T07:19:11.010000"],["2024-07-24T07:19:12.010000"],["2024-07-24T07:19:13.010000"],["2024-07-24T07:19:14.010000"],["2024-07-24T07:19:15.010000"],["2024-07-24T07:19:16.010000"],["2024-07-24T07:19:17.010000"],["2024-07-24T07:19:18.010000"],["2024-07-24T07:19:19.010000"],["2024-07-24T07:19:20.010000"],["2024-07-24T07:19:21.010000"],["2024-07-24T07:19:22.010000"],["2024-07-24T07:19:23.010000"],["2024-07-24T07:19:24.010000"],["2024-07-24T07:19:25.010000"],["2024-07-24T07:19:26.010000"],["2024-07-24T07:19:27.010000"],["2024-07-24T07:19:28.010000"],["2024-07-24T07:19:29.010000"],["2024-07-24T07:19:30.010000"],["2024-07-24T07:19:31.010000"],["2024-07-24T07:19:32.010000"],["2024-07-24T07:19:33.010000"],["2024-07-24T07:19:34.010000"],["2024-07-24T07:19:35.010000"],["2024-07-24T07:19:36.010000"],["2024-07-24T07:19:37.010000"],["2024-07-24T07:19:38.010000"],["2024-07-24T07:19:39.010000"],["2024-07-24T07:19:40.010000"],["2024-07-24T07:19:41.010000"],["2024-07-24T07:19:42.010000"],["2024-07-24T07:19:43.010000"],["2024-07-24T07:19:44.010000"],["2024-07-24T07:19:45.010000"],["2024-07-24T07:19:46.010000"],["2024-07-24T07:19:47.010000"],["2024-07-24T07:19:48.010000"],["2024-07-24T07:19:49.010000"],["2024-07-24T07:19:50.010000"],["2024-07-24T07:19:51.010000"],["2024-07-24T07:19:52.010000"],["2024-07-24T07:19:53.010000"],["2024-07-24T07:19:54.010000"],["2024-07-24T07:19:55.010000"],["2024-07-24T07:19:56.010000"],["2024-07-24T07:19:57.010000"],["2024-07-24T07:19:58.010000"],["2024-07-24T07:19:59.010000"],["2024-07-24T07:20:00.010000"],["2024-07-24T07:20:01.010000"],["2024-07-24T07:20:02.010000"],["2024-07-24T07:20:03.010000"],["2024-07-24T07:20:04.010000"],["2024-07-24T07:20:05.010000"],["2024-07-24T07:20:06.010000"],["2024-07-24T07:20:07.010000"],["2024-07-24T07:20:08.010000"],["2024-07-24T07:20:09.010000"],["2024-07-24T07:20:10.010000"],["2024-07-24T07:20:11.010000"],["2024-07-24T07:20:12.010000"],["2024-07-24T07:20:13.010000"],["2024-07-24T07:20:14.010000"],["2024-07-24T07:20:15.010000"],["2024-07-24T07:20:16.010000"],["2024-07-24T07:20:17.010000"],["2024-07-24T07:20:18.010000"],["2024-07-24T07:20:19.010000"],["2024-07-24T07:20:20.010000"],["2024-07-24T07:20:21.010000"],["2024-07-24T07:20:22.010000"],["2024-07-24T07:20:23.010000"],["2024-07-24T07:20:24.010000"],["2024-07-24T07:20:25.010000"],["2024-07-24T07:20:26.010000"],["2024-07-24T07:20:27.010000"],["2024-07-24T07:20:28.010000"],["2024-07-24T07:20:29.010000"],["2024-07-24T07:20:30.010000"],["2024-07-24T07:20:31.010000"],["2024-07-24T07:20:32.010000"],["2024-07-24T07:20:33.010000"],["2024-07-24T07:20:34.010000"],["2024-07-24T07:20:35.010000"],["2024-07-24T07:20:36.010000"],["2024-07-24T07:20:37.010000"],["2024-07-24T07:20:38.010000"],["2024-07-24T07:20:39.010000"],["2024-07-24T07:20:40.010000"],["2024-07-24T07:20:41.010000"],["2024-07-24T07:20:42.010000"],["2024-07-24T07:20:43.010000"],["2024-07-24T07:20:44.010000"],["2024-07-24T07:20:45.010000"],["2024-07-24T07:20:46.010000"],["2024-07-24T07:20:47.010000"],["2024-07-24T07:20:48.010000"],["2024-07-24T07:20:49.010000"],["2024-07-24T07:20:50.010000"],["2024-07-24T07:20:51.010000"],["2024-07-24T07:20:52.010000"],["2024-07-24T07:20:53.010000"],["2024-07-24T07:20:54.010000"],["2024-07-24T07:20:55.010000"],["2024-07-24T07:20:56.010000"],["2024-07-24T07:20:57.010000"],["2024-07-24T07:20:58.010000"],["2024-07-24T07:20:59.010000"],["2024-07-24T07:21:00.010000"],["2024-07-24T07:21:01.010000"],["2024-07-24T07:21:02.010000"],["2024-07-24T07:21:03.010000"],["2024-07-24T07:21:04.010000"],["2024-07-24T07:21:05.010000"],["2024-07-24T07:21:06.010000"],["2024-07-24T07:21:07.010000"],["2024-07-24T07:21:08.010000"],["2024-07-24T07:21:09.010000"],["2024-07-24T07:21:10.010000"],["2024-07-24T07:21:11.010000"],["2024-07-24T07:21:12.010000"],["2024-07-24T07:21:13.010000"],["2024-07-24T07:21:14.010000"],["2024-07-24T07:21:15.010000"],["2024-07-24T07:21:16.010000"],["2024-07-24T07:21:17.010000"],["2024-07-24T07:21:18.010000"],["2024-07-24T07:21:19.010000"],["2024-07-24T07:21:20.010000"],["2024-07-24T07:21:21.010000"],["2024-07-24T07:21:22.010000"],["2024-07-24T07:21:23.010000"],["2024-07-24T07:21:24.010000"],["2024-07-24T07:21:25.010000"],["2024-07-24T07:21:26.010000"],["2024-07-24T07:21:27.010000"],["2024-07-24T07:21:28.010000"],["2024-07-24T07:21:29.010000"],["2024-07-24T07:21:30.010000"],["2024-07-24T07:21:31.010000"],["2024-07-24T07:21:32.010000"],["2024-07-24T07:21:33.010000"],["2024-07-24T07:21:34.010000"],["2024-07-24T07:21:35.010000"],["2024-07-24T07:21:36.010000"],["2024-07-24T07:21:37.010000"],["2024-07-24T07:21:38.010000"],["2024-07-24T07:21:39.010000"],["2024-07-24T07:21:40.010000"],["2024-07-24T07:21:41.010000"],["2024-07-24T07:21:42.010000"],["2024-07-24T07:21:43.010000"],["2024-07-24T07:21:44.010000"],["2024-07-24T07:21:45.010000"],["2024-07-24T07:21:46.010000"],["2024-07-24T07:21:47.010000"],["2024-07-24T07:21:48.010000"],["2024-07-24T07:21:49.010000"],["2024-07-24T07:21:50.010000"],["2024-07-24T07:21:51.010000"],["2024-07-24T07:21:52.010000"],["2024-07-24T07:21:53.010000"],["2024-07-24T07:21:54.010000"],["2024-07-24T07:21:55.010000"],["2024-07-24T07:21:56.010000"],["2024-07-24T07:21:57.010000"],["2024-07-24T07:21:58.010000"],["2024-07-24T07:21:59.010000"],["2024-07-24T07:22:00.010000"],["2024-07-24T07:22:01.010000"],["2024-07-24T07:22:02.010000"],["2024-07-24T07:22:03.010000"],["2024-07-24T07:22:04.010000"],["2024-07-24T07:22:05.010000"],["2024-07-24T07:22:06.010000"],["2024-07-24T07:22:07.010000"],["2024-07-24T07:22:08.010000"],["2024-07-24T07:22:09.010000"],["2024-07-24T07:22:10.010000"],["2024-07-24T07:22:11.010000"],["2024-07-24T07:22:12.010000"],["2024-07-24T07:22:13.010000"],["2024-07-24T07:22:14.010000"],["2024-07-24T07:22:15.010000"],["2024-07-24T07:22:16.010000"],["2024-07-24T07:22:17.010000"],["2024-07-24T07:22:18.010000"],["2024-07-24T07:22:19.010000"],["2024-07-24T07:22:20.010000"],["2024-07-24T07:22:21.010000"],["2024-07-24T07:22:22.010000"],["2024-07-24T07:22:23.010000"],["2024-07-24T07:22:24.010000"],["2024-07-24T07:22:25.010000"],["2024-07-24T07:22:26.010000"],["2024-07-24T07:22:27.010000"],["2024-07-24T07:22:28.010000"],["2024-07-24T07:22:29.010000"],["2024-07-24T07:22:30.010000"],["2024-07-24T07:22:31.010000"],["2024-07-24T07:22:32.010000"],["2024-07-24T07:22:33.010000"],["2024-07-24T07:22:34.010000"],["2024-07-24T07:22:35.010000"],["2024-07-24T07:22:36.010000"],["2024-07-24T07:22:37.010000"],["2024-07-24T07:22:38.010000"],["2024-07-24T07:22:39.010000"],["2024-07-24T07:22:40.010000"],["2024-07-24T07:22:41.010000"],["2024-07-24T07:22:42.010000"],["2024-07-24T07:22:43.010000"],["2024-07-24T07:22:44.010000"],["2024-07-24T07:22:45.010000"],["2024-07-24T07:22:46.010000"],["2024-07-24T07:22:47.010000"],["2024-07-24T07:22:48.010000"],["2024-07-24T07:22:49.010000"],["2024-07-24T07:22:50.010000"],["2024-07-24T07:22:51.010000"],["2024-07-24T07:22:52.010000"],["2024-07-24T07:22:53.010000"],["2024-07-24T07:22:54.010000"],["2024-07-24T07:22:55.010000"],["2024-07-24T07:22:56.010000"],["2024-07-24T07:22:57.010000"],["2024-07-24T07:22:58.010000"],["2024-07-24T07:22:59.010000"],["2024-07-24T07:23:00.010000"],["2024-07-24T07:23:01.010000"],["2024-07-24T07:23:02.010000"],["2024-07-24T07:23:03.010000"],["2024-07-24T07:23:04.010000"],["2024-07-24T07:23:05.010000"],["2024-07-24T07:23:06.010000"],["2024-07-24T07:23:07.010000"],["2024-07-24T07:23:08.010000"],["2024-07-24T07:23:09.010000"],["2024-07-24T07:23:10.010000"],["2024-07-24T07:23:11.010000"],["2024-07-24T07:23:12.010000"],["2024-07-24T07:23:13.010000"],["2024-07-24T07:23:14.010000"],["2024-07-24T07:23:15.010000"],["2024-07-24T07:23:16.010000"],["2024-07-24T07:23:17.010000"],["2024-07-24T07:23:18.010000"],["2024-07-24T07:23:19.010000"],["2024-07-24T07:23:20.010000"],["2024-07-24T07:23:21.010000"],["2024-07-24T07:23:22.010000"],["2024-07-24T07:23:23.010000"],["2024-07-24T07:23:24.010000"],["2024-07-24T07:23:25.010000"],["2024-07-24T07:23:26.010000"],["2024-07-24T07:23:27.010000"],["2024-07-24T07:23:28.010000"],["2024-07-24T07:23:29.010000"],["2024-07-24T07:23:30.010000"],["2024-07-24T07:23:31.010000"],["2024-07-24T07:23:32.010000"],["2024-07-24T07:23:33.010000"],["2024-07-24T07:23:34.010000"],["2024-07-24T07:23:35.010000"],["2024-07-24T07:23:36.010000"],["2024-07-24T07:23:37.010000"],["2024-07-24T07:23:38.010000"],["2024-07-24T07:23:39.010000"],["2024-07-24T07:23:40.010000"],["2024-07-24T07:23:41.010000"],["2024-07-24T07:23:42.010000"],["2024-07-24T07:23:43.010000"],["2024-07-24T07:23:44.010000"],["2024-07-24T07:23:45.010000"],["2024-07-24T07:23:46.010000"],["2024-07-24T07:23:47.010000"],["2024-07-24T07:23:48.010000"],["2024-07-24T07:23:49.010000"],["2024-07-24T07:23:50.010000"],["2024-07-24T07:23:51.010000"],["2024-07-24T07:23:52.010000"],["2024-07-24T07:23:53.010000"],["2024-07-24T07:23:54.010000"],["2024-07-24T07:23:55.010000"],["2024-07-24T07:23:56.010000"],["2024-07-24T07:23:57.010000"],["2024-07-24T07:23:58.010000"],["2024-07-24T07:23:59.010000"],["2024-07-24T07:24:00.010000"],["2024-07-24T07:24:01.010000"],["2024-07-24T07:24:02.010000"],["2024-07-24T07:24:03.010000"],["2024-07-24T07:24:04.010000"],["2024-07-24T07:24:05.010000"],["2024-07-24T07:24:06.010000"],["2024-07-24T07:24:07.010000"],["2024-07-24T07:24:08.010000"],["2024-07-24T07:24:09.010000"],["2024-07-24T07:24:10.010000"],["2024-07-24T07:24:11.010000"],["2024-07-24T07:24:12.010000"],["2024-07-24T07:24:13.010000"],["2024-07-24T07:24:14.010000"],["2024-07-24T07:24:15.010000"],["2024-07-24T07:24:16.010000"],["2024-07-24T07:24:17.010000"],["2024-07-24T07:24:18.010000"],["2024-07-24T07:24:19.010000"],["2024-07-24T07:24:20.010000"],["2024-07-24T07:24:21.010000"],["2024-07-24T07:24:22.010000"],["2024-07-24T07:24:23.010000"],["2024-07-24T07:24:24.010000"],["2024-07-24T07:24:25.010000"],["2024-07-24T07:24:26.010000"],["2024-07-24T07:24:27.010000"],["2024-07-24T07:24:28.010000"],["2024-07-24T07:24:29.010000"],["2024-07-24T07:24:30.010000"],["2024-07-24T07:24:31.010000"],["2024-07-24T07:24:32.010000"],["2024-07-24T07:24:33.010000"],["2024-07-24T07:24:34.010000"],["2024-07-24T07:24:35.010000"],["2024-07-24T07:24:36.010000"],["2024-07-24T07:24:37.010000"],["2024-07-24T07:24:38.010000"],["2024-07-24T07:24:39.010000"],["2024-07-24T07:24:40.010000"],["2024-07-24T07:24:41.010000"],["2024-07-24T07:24:42.010000"],["2024-07-24T07:24:43.010000"],["2024-07-24T07:24:44.010000"],["2024-07-24T07:24:45.010000"],["2024-07-24T07:24:46.010000"],["2024-07-24T07:24:47.010000"],["2024-07-24T07:24:48.010000"],["2024-07-24T07:24:49.010000"],["2024-07-24T07:24:50.010000"],["2024-07-24T07:24:51.010000"],["2024-07-24T07:24:52.010000"],["2024-07-24T07:24:53.010000"],["2024-07-24T07:24:54.010000"],["2024-07-24T07:24:55.010000"],["2024-07-24T07:24:56.010000"],["2024-07-24T07:24:57.010000"],["2024-07-24T07:24:58.010000"],["2024-07-24T07:24:59.010000"],["2024-07-24T07:25:00.010000"],["2024-07-24T07:25:01.010000"],["2024-07-24T07:25:02.010000"],["2024-07-24T07:25:03.010000"],["2024-07-24T07:25:04.010000"],["2024-07-24T07:25:05.010000"],["2024-07-24T07:25:06.010000"],["2024-07-24T07:25:07.010000"],["2024-07-24T07:25:08.010000"],["2024-07-24T07:25:09.010000"],["2024-07-24T07:25:10.010000"],["2024-07-24T07:25:11.010000"],["2024-07-24T07:25:12.010000"],["2024-07-24T07:25:13.010000"],["2024-07-24T07:25:14.010000"],["2024-07-24T07:25:15.010000"],["2024-07-24T07:25:16.010000"],["2024-07-24T07:25:17.010000"],["2024-07-24T07:25:18.010000"],["2024-07-24T07:25:19.010000"],["2024-07-24T07:25:20.010000"],["2024-07-24T07:25:21.010000"],["2024-07-24T07:25:22.010000"],["2024-07-24T07:25:23.010000"],["2024-07-24T07:25:24.010000"],["2024-07-24T07:25:25.010000"],["2024-07-24T07:25:26.010000"],["2024-07-24T07:25:27.010000"],["2024-07-24T07:25:28.010000"],["2024-07-24T07:25:29.010000"],["2024-07-24T07:25:30.010000"],["2024-07-24T07:25:31.010000"],["2024-07-24T07:25:32.010000"],["2024-07-24T07:25:33.010000"],["2024-07-24T07:25:34.010000"],["2024-07-24T07:25:35.010000"],["2024-07-24T07:25:36.010000"],["2024-07-24T07:25:37.010000"],["2024-07-24T07:25:38.010000"],["2024-07-24T07:25:39.010000"],["2024-07-24T07:25:40.010000"],["2024-07-24T07:25:41.010000"],["2024-07-24T07:25:42.010000"],["2024-07-24T07:25:43.010000"],["2024-07-24T07:25:44.010000"],["2024-07-24T07:25:45.010000"],["2024-07-24T07:25:46.010000"],["2024-07-24T07:25:47.010000"],["2024-07-24T07:25:48.010000"],["2024-07-24T07:25:49.010000"],["2024-07-24T07:25:50.010000"],["2024-07-24T07:25:51.010000"],["2024-07-24T07:25:52.010000"],["2024-07-24T07:25:53.010000"],["2024-07-24T07:25:54.010000"],["2024-07-24T07:25:55.010000"],["2024-07-24T07:25:56.010000"],["2024-07-24T07:25:57.010000"],["2024-07-24T07:25:58.010000"],["2024-07-24T07:25:59.010000"],["2024-07-24T07:26:00.010000"],["2024-07-24T07:26:01.010000"],["2024-07-24T07:26:02.010000"],["2024-07-24T07:26:03.010000"],["2024-07-24T07:26:04.010000"],["2024-07-24T07:26:05.010000"],["2024-07-24T07:26:06.010000"],["2024-07-24T07:26:07.010000"],["2024-07-24T07:26:08.010000"],["2024-07-24T07:26:09.010000"],["2024-07-24T07:26:10.010000"],["2024-07-24T07:26:11.010000"],["2024-07-24T07:26:12.010000"],["2024-07-24T07:26:13.010000"],["2024-07-24T07:26:14.010000"],["2024-07-24T07:26:15.010000"],["2024-07-24T07:26:16.010000"],["2024-07-24T07:26:17.010000"],["2024-07-24T07:26:18.010000"],["2024-07-24T07:26:19.010000"],["2024-07-24T07:26:20.010000"],["2024-07-24T07:26:21.010000"],["2024-07-24T07:26:22.010000"],["2024-07-24T07:26:23.010000"],["2024-07-24T07:26:24.010000"],["2024-07-24T07:26:25.010000"],["2024-07-24T07:26:26.010000"],["2024-07-24T07:26:27.010000"],["2024-07-24T07:26:28.010000"],["2024-07-24T07:26:29.010000"],["2024-07-24T07:26:30.010000"],["2024-07-24T07:26:31.010000"],["2024-07-24T07:26:32.010000"],["2024-07-24T07:26:33.010000"],["2024-07-24T07:26:34.010000"],["2024-07-24T07:26:35.010000"],["2024-07-24T07:26:36.010000"],["2024-07-24T07:26:37.010000"],["2024-07-24T07:26:38.010000"],["2024-07-24T07:26:39.010000"],["2024-07-24T07:26:40.010000"],["2024-07-24T07:26:41.010000"],["2024-07-24T07:26:42.010000"],["2024-07-24T07:26:43.010000"],["2024-07-24T07:26:44.010000"],["2024-07-24T07:26:45.010000"],["2024-07-24T07:26:46.010000"],["2024-07-24T07:26:47.010000"],["2024-07-24T07:26:48.010000"],["2024-07-24T07:26:49.010000"],["2024-07-24T07:26:50.010000"],["2024-07-24T07:26:51.010000"],["2024-07-24T07:26:52.010000"],["2024-07-24T07:26:53.010000"],["2024-07-24T07:26:54.010000"],["2024-07-24T07:26:55.010000"],["2024-07-24T07:26:56.010000"],["2024-07-24T07:26:57.010000"],["2024-07-24T07:26:58.010000"],["2024-07-24T07:26:59.010000"],["2024-07-24T07:27:00.010000"],["2024-07-24T07:27:01.010000"],["2024-07-24T07:27:02.010000"],["2024-07-24T07:27:03.010000"],["2024-07-24T07:27:04.010000"],["2024-07-24T07:27:05.010000"],["2024-07-24T07:27:06.010000"],["2024-07-24T07:27:07.010000"],["2024-07-24T07:27:08.010000"],["2024-07-24T07:27:09.010000"],["2024-07-24T07:27:10.010000"],["2024-07-24T07:27:11.010000"],["2024-07-24T07:27:12.010000"],["2024-07-24T07:27:13.010000"],["2024-07-24T07:27:14.010000"],["2024-07-24T07:27:15.010000"],["2024-07-24T07:27:16.010000"],["2024-07-24T07:27:17.010000"],["2024-07-24T07:27:18.010000"],["2024-07-24T07:27:19.010000"],["2024-07-24T07:27:20.010000"],["2024-07-24T07:27:21.010000"],["2024-07-24T07:27:22.010000"],["2024-07-24T07:27:23.010000"],["2024-07-24T07:27:24.010000"],["2024-07-24T07:27:25.010000"],["2024-07-24T07:27:26.010000"],["2024-07-24T07:27:27.010000"],["2024-07-24T07:27:28.010000"],["2024-07-24T07:27:29.010000"],["2024-07-24T07:27:30.010000"],["2024-07-24T07:27:31.010000"],["2024-07-24T07:27:32.010000"],["2024-07-24T07:27:33.010000"],["2024-07-24T07:27:34.010000"],["2024-07-24T07:27:35.010000"],["2024-07-24T07:27:36.010000"],["2024-07-24T07:27:37.010000"],["2024-07-24T07:27:38.010000"],["2024-07-24T07:27:39.010000"],["2024-07-24T07:27:40.010000"],["2024-07-24T07:27:41.010000"],["2024-07-24T07:27:42.010000"],["2024-07-24T07:27:43.010000"],["2024-07-24T07:27:44.010000"],["2024-07-24T07:27:45.010000"],["2024-07-24T07:27:46.010000"],["2024-07-24T07:27:47.010000"],["2024-07-24T07:27:48.010000"],["2024-07-24T07:27:49.010000"],["2024-07-24T07:27:50.010000"],["2024-07-24T07:27:51.010000"],["2024-07-24T07:27:52.010000"],["2024-07-24T07:27:53.010000"],["2024-07-24T07:27:54.010000"],["2024-07-24T07:27:55.010000"],["2024-07-24T07:27:56.010000"],["2024-07-24T07:27:57.010000"],["2024-07-24T07:27:58.010000"],["2024-07-24T07:27:59.010000"],["2024-07-24T07:28:00.010000"],["2024-07-24T07:28:01.010000"],["2024-07-24T07:28:02.010000"],["2024-07-24T07:28:03.010000"],["2024-07-24T07:28:04.010000"],["2024-07-24T07:28:05.010000"],["2024-07-24T07:28:06.010000"],["2024-07-24T07:28:07.010000"],["2024-07-24T07:28:08.010000"],["2024-07-24T07:28:09.010000"],["2024-07-24T07:28:10.010000"],["2024-07-24T07:28:11.010000"],["2024-07-24T07:28:12.010000"],["2024-07-24T07:28:13.010000"],["2024-07-24T07:28:14.010000"],["2024-07-24T07:28:15.010000"],["2024-07-24T07:28:16.010000"],["2024-07-24T07:28:17.010000"],["2024-07-24T07:28:18.010000"],["2024-07-24T07:28:19.010000"],["2024-07-24T07:28:20.010000"],["2024-07-24T07:28:21.010000"],["2024-07-24T07:28:22.010000"],["2024-07-24T07:28:23.010000"],["2024-07-24T07:28:24.010000"],["2024-07-24T07:28:25.010000"],["2024-07-24T07:28:26.010000"],["2024-07-24T07:28:27.010000"],["2024-07-24T07:28:28.010000"],["2024-07-24T07:28:29.010000"],["2024-07-24T07:28:30.010000"],["2024-07-24T07:28:31.010000"],["2024-07-24T07:28:32.010000"],["2024-07-24T07:28:33.010000"],["2024-07-24T07:28:34.010000"],["2024-07-24T07:28:35.010000"],["2024-07-24T07:28:36.010000"],["2024-07-24T07:28:37.010000"],["2024-07-24T07:28:38.010000"],["2024-07-24T07:28:39.010000"],["2024-07-24T07:28:40.010000"],["2024-07-24T07:28:41.010000"],["2024-07-24T07:28:42.010000"],["2024-07-24T07:28:43.010000"],["2024-07-24T07:28:44.010000"],["2024-07-24T07:28:45.010000"],["2024-07-24T07:28:46.010000"],["2024-07-24T07:28:47.010000"],["2024-07-24T07:28:48.010000"],["2024-07-24T07:28:49.010000"],["2024-07-24T07:28:50.010000"],["2024-07-24T07:28:51.010000"],["2024-07-24T07:28:52.010000"],["2024-07-24T07:28:53.010000"],["2024-07-24T07:28:54.010000"],["2024-07-24T07:28:55.010000"],["2024-07-24T07:28:56.010000"],["2024-07-24T07:28:57.010000"],["2024-07-24T07:28:58.010000"],["2024-07-24T07:28:59.010000"],["2024-07-24T07:29:00.010000"],["2024-07-24T07:29:01.010000"],["2024-07-24T07:29:02.010000"],["2024-07-24T07:29:03.010000"],["2024-07-24T07:29:04.010000"],["2024-07-24T07:29:05.010000"],["2024-07-24T07:29:06.010000"],["2024-07-24T07:29:07.010000"],["2024-07-24T07:29:08.010000"],["2024-07-24T07:29:09.010000"],["2024-07-24T07:29:10.010000"],["2024-07-24T07:29:11.010000"],["2024-07-24T07:29:12.010000"],["2024-07-24T07:29:13.010000"],["2024-07-24T07:29:14.010000"],["2024-07-24T07:29:15.010000"],["2024-07-24T07:29:16.010000"],["2024-07-24T07:29:17.010000"],["2024-07-24T07:29:18.010000"],["2024-07-24T07:29:19.010000"],["2024-07-24T07:29:20.010000"],["2024-07-24T07:29:21.010000"],["2024-07-24T07:29:22.010000"],["2024-07-24T07:29:23.010000"],["2024-07-24T07:29:24.010000"],["2024-07-24T07:29:25.010000"],["2024-07-24T07:29:26.010000"],["2024-07-24T07:29:27.010000"],["2024-07-24T07:29:28.010000"],["2024-07-24T07:29:29.010000"],["2024-07-24T07:29:30.010000"],["2024-07-24T07:29:31.010000"],["2024-07-24T07:29:32.010000"],["2024-07-24T07:29:33.010000"],["2024-07-24T07:29:34.010000"],["2024-07-24T07:29:35.010000"],["2024-07-24T07:29:36.010000"],["2024-07-24T07:29:37.010000"],["2024-07-24T07:29:38.010000"],["2024-07-24T07:29:39.010000"],["2024-07-24T07:29:40.010000"],["2024-07-24T07:29:41.010000"],["2024-07-24T07:29:42.010000"],["2024-07-24T07:29:43.010000"],["2024-07-24T07:29:44.010000"],["2024-07-24T07:29:45.010000"],["2024-07-24T07:29:46.010000"],["2024-07-24T07:29:47.010000"],["2024-07-24T07:29:48.010000"],["2024-07-24T07:29:49.010000"],["2024-07-24T07:29:50.010000"],["2024-07-24T07:29:51.010000"],["2024-07-24T07:29:52.010000"],["2024-07-24T07:29:53.010000"],["2024-07-24T07:29:54.010000"],["2024-07-24T07:29:55.010000"],["2024-07-24T07:29:56.010000"],["2024-07-24T07:29:57.010000"],["2024-07-24T07:29:58.010000"],["2024-07-24T07:29:59.010000"],["2024-07-24T07:30:00.010000"],["2024-07-24T07:30:01.010000"],["2024-07-24T07:30:02.010000"],["2024-07-24T07:30:03.010000"],["2024-07-24T07:30:04.010000"],["2024-07-24T07:30:05.010000"],["2024-07-24T07:30:06.010000"],["2024-07-24T07:30:07.010000"],["2024-07-24T07:30:08.010000"],["2024-07-24T07:30:09.010000"],["2024-07-24T07:30:10.010000"],["2024-07-24T07:30:11.010000"],["2024-07-24T07:30:12.010000"],["2024-07-24T07:30:13.010000"],["2024-07-24T07:30:14.010000"],["2024-07-24T07:30:15.010000"],["2024-07-24T07:30:16.010000"],["2024-07-24T07:30:17.010000"],["2024-07-24T07:30:18.010000"],["2024-07-24T07:30:19.010000"],["2024-07-24T07:30:20.010000"],["2024-07-24T07:30:21.010000"],["2024-07-24T07:30:22.010000"],["2024-07-24T07:30:23.010000"],["2024-07-24T07:30:24.010000"],["2024-07-24T07:30:25.010000"],["2024-07-24T07:30:26.010000"],["2024-07-24T07:30:27.010000"],["2024-07-24T07:30:28.010000"],["2024-07-24T07:30:29.010000"],["2024-07-24T07:30:30.010000"],["2024-07-24T07:30:31.010000"],["2024-07-24T07:30:32.010000"],["2024-07-24T07:30:33.010000"],["2024-07-24T07:30:34.010000"],["2024-07-24T07:30:35.010000"],["2024-07-24T07:30:36.010000"],["2024-07-24T07:30:37.010000"],["2024-07-24T07:30:38.010000"],["2024-07-24T07:30:39.010000"],["2024-07-24T07:30:40.010000"],["2024-07-24T07:30:41.010000"],["2024-07-24T07:30:42.010000"],["2024-07-24T07:30:43.010000"],["2024-07-24T07:30:44.010000"],["2024-07-24T07:30:45.010000"],["2024-07-24T07:30:46.010000"],["2024-07-24T07:30:47.010000"],["2024-07-24T07:30:48.010000"],["2024-07-24T07:30:49.010000"],["2024-07-24T07:30:50.010000"],["2024-07-24T07:30:51.010000"],["2024-07-24T07:30:52.010000"],["2024-07-24T07:30:53.010000"],["2024-07-24T07:30:54.010000"],["2024-07-24T07:30:55.010000"],["2024-07-24T07:30:56.010000"],["2024-07-24T07:30:57.010000"],["2024-07-24T07:30:58.010000"],["2024-07-24T07:30:59.010000"],["2024-07-24T07:31:00.010000"],["2024-07-24T07:31:01.010000"],["2024-07-24T07:31:02.010000"],["2024-07-24T07:31:03.010000"],["2024-07-24T07:31:04.010000"],["2024-07-24T07:31:05.010000"],["2024-07-24T07:31:06.010000"],["2024-07-24T07:31:07.010000"],["2024-07-24T07:31:08.010000"],["2024-07-24T07:31:09.010000"],["2024-07-24T07:31:10.010000"],["2024-07-24T07:31:11.010000"],["2024-07-24T07:31:12.010000"],["2024-07-24T07:31:13.010000"],["2024-07-24T07:31:14.010000"],["2024-07-24T07:31:15.010000"],["2024-07-24T07:31:16.010000"],["2024-07-24T07:31:17.010000"],["2024-07-24T07:31:18.010000"],["2024-07-24T07:31:19.010000"],["2024-07-24T07:31:20.010000"],["2024-07-24T07:31:21.010000"],["2024-07-24T07:31:22.010000"],["2024-07-24T07:31:23.010000"],["2024-07-24T07:31:24.010000"],["2024-07-24T07:31:25.010000"],["2024-07-24T07:31:26.010000"],["2024-07-24T07:31:27.010000"],["2024-07-24T07:31:28.010000"],["2024-07-24T07:31:29.010000"],["2024-07-24T07:31:30.010000"],["2024-07-24T07:31:31.010000"],["2024-07-24T07:31:32.010000"],["2024-07-24T07:31:33.010000"],["2024-07-24T07:31:34.010000"],["2024-07-24T07:31:35.010000"],["2024-07-24T07:31:36.010000"],["2024-07-24T07:31:37.010000"],["2024-07-24T07:31:38.010000"],["2024-07-24T07:31:39.010000"],["2024-07-24T07:31:40.010000"],["2024-07-24T07:31:41.010000"],["2024-07-24T07:31:42.010000"],["2024-07-24T07:31:43.010000"],["2024-07-24T07:31:44.010000"],["2024-07-24T07:31:45.010000"],["2024-07-24T07:31:46.010000"],["2024-07-24T07:31:47.010000"],["2024-07-24T07:31:48.010000"],["2024-07-24T07:31:49.010000"],["2024-07-24T07:31:50.010000"],["2024-07-24T07:31:51.010000"],["2024-07-24T07:31:52.010000"],["2024-07-24T07:31:53.010000"],["2024-07-24T07:31:54.010000"],["2024-07-24T07:31:55.010000"],["2024-07-24T07:31:56.010000"],["2024-07-24T07:31:57.010000"],["2024-07-24T07:31:58.010000"],["2024-07-24T07:31:59.010000"],["2024-07-24T07:32:00.010000"],["2024-07-24T07:32:01.010000"],["2024-07-24T07:32:02.010000"],["2024-07-24T07:32:03.010000"],["2024-07-24T07:32:04.010000"],["2024-07-24T07:32:05.010000"],["2024-07-24T07:32:06.010000"],["2024-07-24T07:32:07.010000"],["2024-07-24T07:32:08.010000"],["2024-07-24T07:32:09.010000"],["2024-07-24T07:32:10.010000"],["2024-07-24T07:32:11.010000"],["2024-07-24T07:32:12.010000"],["2024-07-24T07:32:13.010000"],["2024-07-24T07:32:14.010000"],["2024-07-24T07:32:15.010000"],["2024-07-24T07:32:16.010000"],["2024-07-24T07:32:17.010000"],["2024-07-24T07:32:18.010000"],["2024-07-24T07:32:19.010000"],["2024-07-24T07:32:20.010000"],["2024-07-24T07:32:21.010000"],["2024-07-24T07:32:22.010000"],["2024-07-24T07:32:23.010000"],["2024-07-24T07:32:24.010000"],["2024-07-24T07:32:25.010000"],["2024-07-24T07:32:26.010000"],["2024-07-24T07:32:27.010000"],["2024-07-24T07:32:28.010000"],["2024-07-24T07:32:29.010000"],["2024-07-24T07:32:30.010000"],["2024-07-24T07:32:31.010000"],["2024-07-24T07:32:32.010000"],["2024-07-24T07:32:33.010000"],["2024-07-24T07:32:34.010000"],["2024-07-24T07:32:35.010000"],["2024-07-24T07:32:36.010000"],["2024-07-24T07:32:37.010000"],["2024-07-24T07:32:38.010000"],["2024-07-24T07:32:39.010000"],["2024-07-24T07:32:40.010000"],["2024-07-24T07:32:41.010000"],["2024-07-24T07:32:42.010000"],["2024-07-24T07:32:43.010000"],["2024-07-24T07:32:44.010000"],["2024-07-24T07:32:45.010000"],["2024-07-24T07:32:46.010000"],["2024-07-24T07:32:47.010000"],["2024-07-24T07:32:48.010000"],["2024-07-24T07:32:49.010000"],["2024-07-24T07:32:50.010000"],["2024-07-24T07:32:51.010000"],["2024-07-24T07:32:52.010000"],["2024-07-24T07:32:53.010000"],["2024-07-24T07:32:54.010000"],["2024-07-24T07:32:55.010000"],["2024-07-24T07:32:56.010000"],["2024-07-24T07:32:57.010000"],["2024-07-24T07:32:58.010000"],["2024-07-24T07:32:59.010000"],["2024-07-24T07:33:00.010000"],["2024-07-24T07:33:01.010000"],["2024-07-24T07:33:02.010000"],["2024-07-24T07:33:03.010000"],["2024-07-24T07:33:04.010000"],["2024-07-24T07:33:05.010000"],["2024-07-24T07:33:06.010000"],["2024-07-24T07:33:07.010000"],["2024-07-24T07:33:08.010000"],["2024-07-24T07:33:09.010000"],["2024-07-24T07:33:10.010000"],["2024-07-24T07:33:11.010000"],["2024-07-24T07:33:12.010000"],["2024-07-24T07:33:13.010000"],["2024-07-24T07:33:14.010000"],["2024-07-24T07:33:15.010000"],["2024-07-24T07:33:16.010000"],["2024-07-24T07:33:17.010000"],["2024-07-24T07:33:18.010000"],["2024-07-24T07:33:19.010000"],["2024-07-24T07:33:20.010000"],["2024-07-24T07:33:21.010000"],["2024-07-24T07:33:22.010000"],["2024-07-24T07:33:23.010000"],["2024-07-24T07:33:24.010000"],["2024-07-24T07:33:25.010000"],["2024-07-24T07:33:26.010000"],["2024-07-24T07:33:27.010000"],["2024-07-24T07:33:28.010000"],["2024-07-24T07:33:29.010000"],["2024-07-24T07:33:30.010000"],["2024-07-24T07:33:31.010000"],["2024-07-24T07:33:32.010000"],["2024-07-24T07:33:33.010000"],["2024-07-24T07:33:34.010000"],["2024-07-24T07:33:35.010000"],["2024-07-24T07:33:36.010000"],["2024-07-24T07:33:37.010000"],["2024-07-24T07:33:38.010000"],["2024-07-24T07:33:39.010000"],["2024-07-24T07:33:40.010000"],["2024-07-24T07:33:41.010000"],["2024-07-24T07:33:42.010000"],["2024-07-24T07:33:43.010000"],["2024-07-24T07:33:44.010000"],["2024-07-24T07:33:45.010000"],["2024-07-24T07:33:46.010000"],["2024-07-24T07:33:47.010000"],["2024-07-24T07:33:48.010000"],["2024-07-24T07:33:49.010000"],["2024-07-24T07:33:50.010000"],["2024-07-24T07:33:51.010000"],["2024-07-24T07:33:52.010000"],["2024-07-24T07:33:53.010000"],["2024-07-24T07:33:54.010000"],["2024-07-24T07:33:55.010000"],["2024-07-24T07:33:56.010000"],["2024-07-24T07:33:57.010000"],["2024-07-24T07:33:58.010000"],["2024-07-24T07:33:59.010000"],["2024-07-24T07:34:00.010000"],["2024-07-24T07:34:01.010000"],["2024-07-24T07:34:02.010000"],["2024-07-24T07:34:03.010000"],["2024-07-24T07:34:04.010000"],["2024-07-24T07:34:05.010000"],["2024-07-24T07:34:06.010000"],["2024-07-24T07:34:07.010000"],["2024-07-24T07:34:08.010000"],["2024-07-24T07:34:09.010000"],["2024-07-24T07:34:10.010000"],["2024-07-24T07:34:11.010000"],["2024-07-24T07:34:12.010000"],["2024-07-24T07:34:13.010000"],["2024-07-24T07:34:14.010000"],["2024-07-24T07:34:15.010000"],["2024-07-24T07:34:16.010000"],["2024-07-24T07:34:17.010000"],["2024-07-24T07:34:18.010000"],["2024-07-24T07:34:19.010000"],["2024-07-24T07:34:20.010000"],["2024-07-24T07:34:21.010000"],["2024-07-24T07:34:22.010000"],["2024-07-24T07:34:23.010000"],["2024-07-24T07:34:24.010000"],["2024-07-24T07:34:25.010000"],["2024-07-24T07:34:26.010000"],["2024-07-24T07:34:27.010000"],["2024-07-24T07:34:28.010000"],["2024-07-24T07:34:29.010000"],["2024-07-24T07:34:30.010000"],["2024-07-24T07:34:31.010000"],["2024-07-24T07:34:32.010000"],["2024-07-24T07:34:33.010000"],["2024-07-24T07:34:34.010000"],["2024-07-24T07:34:35.010000"],["2024-07-24T07:34:36.010000"],["2024-07-24T07:34:37.010000"],["2024-07-24T07:34:38.010000"],["2024-07-24T07:34:39.010000"],["2024-07-24T07:34:40.010000"],["2024-07-24T07:34:41.010000"],["2024-07-24T07:34:42.010000"],["2024-07-24T07:34:43.010000"],["2024-07-24T07:34:44.010000"],["2024-07-24T07:34:45.010000"],["2024-07-24T07:34:46.010000"],["2024-07-24T07:34:47.010000"],["2024-07-24T07:34:48.010000"],["2024-07-24T07:34:49.010000"],["2024-07-24T07:34:50.010000"],["2024-07-24T07:34:51.010000"],["2024-07-24T07:34:52.010000"],["2024-07-24T07:34:53.010000"],["2024-07-24T07:34:54.010000"],["2024-07-24T07:34:55.010000"],["2024-07-24T07:34:56.010000"],["2024-07-24T07:34:57.010000"],["2024-07-24T07:34:58.010000"],["2024-07-24T07:34:59.010000"],["2024-07-24T07:35:00.010000"],["2024-07-24T07:35:01.010000"],["2024-07-24T07:35:02.010000"],["2024-07-24T07:35:03.010000"],["2024-07-24T07:35:04.010000"],["2024-07-24T07:35:05.010000"],["2024-07-24T07:35:06.010000"],["2024-07-24T07:35:07.010000"],["2024-07-24T07:35:08.010000"],["2024-07-24T07:35:09.010000"],["2024-07-24T07:35:10.010000"],["2024-07-24T07:35:11.010000"],["2024-07-24T07:35:12.010000"],["2024-07-24T07:35:13.010000"],["2024-07-24T07:35:14.010000"],["2024-07-24T07:35:15.010000"],["2024-07-24T07:35:16.010000"],["2024-07-24T07:35:17.010000"],["2024-07-24T07:35:18.010000"],["2024-07-24T07:35:19.010000"],["2024-07-24T07:35:20.010000"],["2024-07-24T07:35:21.010000"],["2024-07-24T07:35:22.010000"],["2024-07-24T07:35:23.010000"],["2024-07-24T07:35:24.010000"],["2024-07-24T07:35:25.010000"],["2024-07-24T07:35:26.010000"],["2024-07-24T07:35:27.010000"],["2024-07-24T07:35:28.010000"],["2024-07-24T07:35:29.010000"],["2024-07-24T07:35:30.010000"],["2024-07-24T07:35:31.010000"],["2024-07-24T07:35:32.010000"],["2024-07-24T07:35:33.010000"],["2024-07-24T07:35:34.010000"],["2024-07-24T07:35:35.010000"],["2024-07-24T07:35:36.010000"],["2024-07-24T07:35:37.010000"],["2024-07-24T07:35:38.010000"],["2024-07-24T07:35:39.010000"],["2024-07-24T07:35:40.010000"],["2024-07-24T07:35:41.010000"],["2024-07-24T07:35:42.010000"],["2024-07-24T07:35:43.010000"],["2024-07-24T07:35:44.010000"],["2024-07-24T07:35:45.010000"],["2024-07-24T07:35:46.010000"],["2024-07-24T07:35:47.010000"],["2024-07-24T07:35:48.010000"],["2024-07-24T07:35:49.010000"],["2024-07-24T07:35:50.010000"],["2024-07-24T07:35:51.010000"],["2024-07-24T07:35:52.010000"],["2024-07-24T07:35:53.010000"],["2024-07-24T07:35:54.010000"],["2024-07-24T07:35:55.010000"],["2024-07-24T07:35:56.010000"],["2024-07-24T07:35:57.010000"],["2024-07-24T07:35:58.010000"],["2024-07-24T07:35:59.010000"],["2024-07-24T07:36:00.010000"],["2024-07-24T07:36:01.010000"],["2024-07-24T07:36:02.010000"],["2024-07-24T07:36:03.010000"],["2024-07-24T07:36:04.010000"],["2024-07-24T07:36:05.010000"],["2024-07-24T07:36:06.010000"],["2024-07-24T07:36:07.010000"],["2024-07-24T07:36:08.010000"],["2024-07-24T07:36:09.010000"],["2024-07-24T07:36:10.010000"],["2024-07-24T07:36:11.010000"],["2024-07-24T07:36:12.010000"],["2024-07-24T07:36:13.010000"],["2024-07-24T07:36:14.010000"],["2024-07-24T07:36:15.010000"],["2024-07-24T07:36:16.010000"],["2024-07-24T07:36:17.010000"],["2024-07-24T07:36:18.010000"],["2024-07-24T07:36:19.010000"],["2024-07-24T07:36:20.010000"],["2024-07-24T07:36:21.010000"],["2024-07-24T07:36:22.010000"],["2024-07-24T07:36:23.010000"],["2024-07-24T07:36:24.010000"],["2024-07-24T07:36:25.010000"],["2024-07-24T07:36:26.010000"],["2024-07-24T07:36:27.010000"],["2024-07-24T07:36:28.010000"],["2024-07-24T07:36:29.010000"],["2024-07-24T07:36:30.010000"],["2024-07-24T07:36:31.010000"],["2024-07-24T07:36:32.010000"],["2024-07-24T07:36:33.010000"],["2024-07-24T07:36:34.010000"],["2024-07-24T07:36:35.010000"],["2024-07-24T07:36:36.010000"],["2024-07-24T07:36:37.010000"],["2024-07-24T07:36:38.010000"],["2024-07-24T07:36:39.010000"],["2024-07-24T07:36:40.010000"],["2024-07-24T07:36:41.010000"],["2024-07-24T07:36:42.010000"],["2024-07-24T07:36:43.010000"],["2024-07-24T07:36:44.010000"],["2024-07-24T07:36:45.010000"],["2024-07-24T07:36:46.010000"],["2024-07-24T07:36:47.010000"],["2024-07-24T07:36:48.010000"],["2024-07-24T07:36:49.010000"],["2024-07-24T07:36:50.010000"],["2024-07-24T07:36:51.010000"],["2024-07-24T07:36:52.010000"],["2024-07-24T07:36:53.010000"],["2024-07-24T07:36:54.010000"],["2024-07-24T07:36:55.010000"],["2024-07-24T07:36:56.010000"],["2024-07-24T07:36:57.010000"],["2024-07-24T07:36:58.010000"],["2024-07-24T07:36:59.010000"],["2024-07-24T07:37:00.010000"],["2024-07-24T07:37:01.010000"],["2024-07-24T07:37:02.010000"],["2024-07-24T07:37:03.010000"],["2024-07-24T07:37:04.010000"],["2024-07-24T07:37:05.010000"],["2024-07-24T07:37:06.010000"],["2024-07-24T07:37:07.010000"],["2024-07-24T07:37:08.010000"],["2024-07-24T07:37:09.010000"],["2024-07-24T07:37:10.010000"],["2024-07-24T07:37:11.010000"],["2024-07-24T07:37:12.010000"],["2024-07-24T07:37:13.010000"],["2024-07-24T07:37:14.010000"],["2024-07-24T07:37:15.010000"],["2024-07-24T07:37:16.010000"],["2024-07-24T07:37:17.010000"],["2024-07-24T07:37:18.010000"],["2024-07-24T07:37:19.010000"],["2024-07-24T07:37:20.010000"],["2024-07-24T07:37:21.010000"],["2024-07-24T07:37:22.010000"],["2024-07-24T07:37:23.010000"],["2024-07-24T07:37:24.010000"],["2024-07-24T07:37:25.010000"],["2024-07-24T07:37:26.010000"],["2024-07-24T07:37:27.010000"],["2024-07-24T07:37:28.010000"],["2024-07-24T07:37:29.010000"],["2024-07-24T07:37:30.010000"],["2024-07-24T07:37:31.010000"],["2024-07-24T07:37:32.010000"],["2024-07-24T07:37:33.010000"],["2024-07-24T07:37:34.010000"],["2024-07-24T07:37:35.010000"],["2024-07-24T07:37:36.010000"],["2024-07-24T07:37:37.010000"],["2024-07-24T07:37:38.010000"],["2024-07-24T07:37:39.010000"],["2024-07-24T07:37:40.010000"],["2024-07-24T07:37:41.010000"],["2024-07-24T07:37:42.010000"],["2024-07-24T07:37:43.010000"],["2024-07-24T07:37:44.010000"],["2024-07-24T07:37:45.010000"],["2024-07-24T07:37:46.010000"],["2024-07-24T07:37:47.010000"],["2024-07-24T07:37:48.010000"],["2024-07-24T07:37:49.010000"],["2024-07-24T07:37:50.010000"],["2024-07-24T07:37:51.010000"],["2024-07-24T07:37:52.010000"],["2024-07-24T07:37:53.010000"],["2024-07-24T07:37:54.010000"],["2024-07-24T07:37:55.010000"],["2024-07-24T07:37:56.010000"],["2024-07-24T07:37:57.010000"],["2024-07-24T07:37:58.010000"],["2024-07-24T07:37:59.010000"],["2024-07-24T07:38:00.010000"],["2024-07-24T07:38:01.010000"],["2024-07-24T07:38:02.010000"],["2024-07-24T07:38:03.010000"],["2024-07-24T07:38:04.010000"],["2024-07-24T07:38:05.010000"],["2024-07-24T07:38:06.010000"],["2024-07-24T07:38:07.010000"],["2024-07-24T07:38:08.010000"],["2024-07-24T07:38:09.010000"],["2024-07-24T07:38:10.010000"],["2024-07-24T07:38:11.010000"],["2024-07-24T07:38:12.010000"],["2024-07-24T07:38:13.010000"],["2024-07-24T07:38:14.010000"],["2024-07-24T07:38:15.010000"],["2024-07-24T07:38:16.010000"],["2024-07-24T07:38:17.010000"],["2024-07-24T07:38:18.010000"],["2024-07-24T07:38:19.010000"],["2024-07-24T07:38:20.010000"],["2024-07-24T07:38:21.010000"],["2024-07-24T07:38:22.010000"],["2024-07-24T07:38:23.010000"],["2024-07-24T07:38:24.010000"],["2024-07-24T07:38:25.010000"],["2024-07-24T07:38:26.010000"],["2024-07-24T07:38:27.010000"],["2024-07-24T07:38:28.010000"],["2024-07-24T07:38:29.010000"],["2024-07-24T07:38:30.010000"],["2024-07-24T07:38:31.010000"],["2024-07-24T07:38:32.010000"],["2024-07-24T07:38:33.010000"],["2024-07-24T07:38:34.010000"],["2024-07-24T07:38:35.010000"],["2024-07-24T07:38:36.010000"],["2024-07-24T07:38:37.010000"],["2024-07-24T07:38:38.010000"],["2024-07-24T07:38:39.010000"],["2024-07-24T07:38:40.010000"],["2024-07-24T07:38:41.010000"],["2024-07-24T07:38:42.010000"],["2024-07-24T07:38:43.010000"],["2024-07-24T07:38:44.010000"],["2024-07-24T07:38:45.010000"],["2024-07-24T07:38:46.010000"],["2024-07-24T07:38:47.010000"],["2024-07-24T07:38:48.010000"],["2024-07-24T07:38:49.010000"],["2024-07-24T07:38:50.010000"],["2024-07-24T07:38:51.010000"],["2024-07-24T07:38:52.010000"],["2024-07-24T07:38:53.010000"],["2024-07-24T07:38:54.010000"],["2024-07-24T07:38:55.010000"],["2024-07-24T07:38:56.010000"],["2024-07-24T07:38:57.010000"],["2024-07-24T07:38:58.010000"],["2024-07-24T07:38:59.010000"],["2024-07-24T07:39:00.010000"],["2024-07-24T07:39:01.010000"],["2024-07-24T07:39:02.010000"],["2024-07-24T07:39:03.010000"],["2024-07-24T07:39:04.010000"],["2024-07-24T07:39:05.010000"],["2024-07-24T07:39:06.010000"],["2024-07-24T07:39:07.010000"],["2024-07-24T07:39:08.010000"],["2024-07-24T07:39:09.010000"],["2024-07-24T07:39:10.010000"],["2024-07-24T07:39:11.010000"],["2024-07-24T07:39:12.010000"],["2024-07-24T07:39:13.010000"],["2024-07-24T07:39:14.010000"],["2024-07-24T07:39:15.010000"],["2024-07-24T07:39:16.010000"],["2024-07-24T07:39:17.010000"],["2024-07-24T07:39:18.010000"],["2024-07-24T07:39:19.010000"],["2024-07-24T07:39:20.010000"],["2024-07-24T07:39:21.010000"],["2024-07-24T07:39:22.010000"],["2024-07-24T07:39:23.010000"],["2024-07-24T07:39:24.010000"],["2024-07-24T07:39:25.010000"],["2024-07-24T07:39:26.010000"],["2024-07-24T07:39:27.010000"],["2024-07-24T07:39:28.010000"],["2024-07-24T07:39:29.010000"],["2024-07-24T07:39:30.010000"],["2024-07-24T07:39:31.010000"],["2024-07-24T07:39:32.010000"],["2024-07-24T07:39:33.010000"],["2024-07-24T07:39:34.010000"],["2024-07-24T07:39:35.010000"],["2024-07-24T07:39:36.010000"],["2024-07-24T07:39:37.010000"],["2024-07-24T07:39:38.010000"],["2024-07-24T07:39:39.010000"],["2024-07-24T07:39:40.010000"],["2024-07-24T07:39:41.010000"],["2024-07-24T07:39:42.010000"],["2024-07-24T07:39:43.010000"],["2024-07-24T07:39:44.010000"],["2024-07-24T07:39:45.010000"],["2024-07-24T07:39:46.010000"],["2024-07-24T07:39:47.010000"],["2024-07-24T07:39:48.010000"],["2024-07-24T07:39:49.010000"],["2024-07-24T07:39:50.010000"],["2024-07-24T07:39:51.010000"],["2024-07-24T07:39:52.010000"],["2024-07-24T07:39:53.010000"],["2024-07-24T07:39:54.010000"],["2024-07-24T07:39:55.010000"],["2024-07-24T07:39:56.010000"],["2024-07-24T07:39:57.010000"],["2024-07-24T07:39:58.010000"],["2024-07-24T07:39:59.010000"],["2024-07-24T07:40:00.010000"],["2024-07-24T07:40:01.010000"],["2024-07-24T07:40:02.010000"],["2024-07-24T07:40:03.010000"],["2024-07-24T07:40:04.010000"],["2024-07-24T07:40:05.010000"],["2024-07-24T07:40:06.010000"],["2024-07-24T07:40:07.010000"],["2024-07-24T07:40:08.010000"],["2024-07-24T07:40:09.010000"],["2024-07-24T07:40:10.010000"],["2024-07-24T07:40:11.010000"],["2024-07-24T07:40:12.010000"],["2024-07-24T07:40:13.010000"],["2024-07-24T07:40:14.010000"],["2024-07-24T07:40:15.010000"],["2024-07-24T07:40:16.010000"],["2024-07-24T07:40:17.010000"],["2024-07-24T07:40:18.010000"],["2024-07-24T07:40:19.010000"],["2024-07-24T07:40:20.010000"],["2024-07-24T07:40:21.010000"],["2024-07-24T07:40:22.010000"],["2024-07-24T07:40:23.010000"],["2024-07-24T07:40:24.010000"],["2024-07-24T07:40:25.010000"],["2024-07-24T07:40:26.010000"],["2024-07-24T07:40:27.010000"],["2024-07-24T07:40:28.010000"],["2024-07-24T07:40:29.010000"],["2024-07-24T07:40:30.010000"],["2024-07-24T07:40:31.010000"],["2024-07-24T07:40:32.010000"],["2024-07-24T07:40:33.010000"],["2024-07-24T07:40:34.010000"],["2024-07-24T07:40:35.010000"],["2024-07-24T07:40:36.010000"],["2024-07-24T07:40:37.010000"],["2024-07-24T07:40:38.010000"],["2024-07-24T07:40:39.010000"],["2024-07-24T07:40:40.010000"],["2024-07-24T07:40:41.010000"],["2024-07-24T07:40:42.010000"],["2024-07-24T07:40:43.010000"],["2024-07-24T07:40:44.010000"],["2024-07-24T07:40:45.010000"],["2024-07-24T07:40:46.010000"],["2024-07-24T07:40:47.010000"],["2024-07-24T07:40:48.010000"],["2024-07-24T07:40:49.010000"],["2024-07-24T07:40:50.010000"],["2024-07-24T07:40:51.010000"],["2024-07-24T07:40:52.010000"],["2024-07-24T07:40:53.010000"],["2024-07-24T07:40:54.010000"],["2024-07-24T07:40:55.010000"],["2024-07-24T07:40:56.010000"],["2024-07-24T07:40:57.010000"],["2024-07-24T07:40:58.010000"],["2024-07-24T07:40:59.010000"],["2024-07-24T07:41:00.010000"],["2024-07-24T07:41:01.010000"],["2024-07-24T07:41:02.010000"],["2024-07-24T07:41:03.010000"],["2024-07-24T07:41:04.010000"],["2024-07-24T07:41:05.010000"],["2024-07-24T07:41:06.010000"],["2024-07-24T07:41:07.010000"],["2024-07-24T07:41:08.010000"],["2024-07-24T07:41:09.010000"],["2024-07-24T07:41:10.010000"],["2024-07-24T07:41:11.010000"],["2024-07-24T07:41:12.010000"],["2024-07-24T07:41:13.010000"],["2024-07-24T07:41:14.010000"],["2024-07-24T07:41:15.010000"],["2024-07-24T07:41:16.010000"],["2024-07-24T07:41:17.010000"],["2024-07-24T07:41:18.010000"],["2024-07-24T07:41:19.010000"],["2024-07-24T07:41:20.010000"],["2024-07-24T07:41:21.010000"],["2024-07-24T07:41:22.010000"],["2024-07-24T07:41:23.010000"],["2024-07-24T07:41:24.010000"],["2024-07-24T07:41:25.010000"],["2024-07-24T07:41:26.010000"],["2024-07-24T07:41:27.010000"],["2024-07-24T07:41:28.010000"],["2024-07-24T07:41:29.010000"],["2024-07-24T07:41:30.010000"],["2024-07-24T07:41:31.010000"],["2024-07-24T07:41:32.010000"],["2024-07-24T07:41:33.010000"],["2024-07-24T07:41:34.010000"],["2024-07-24T07:41:35.010000"],["2024-07-24T07:41:36.010000"],["2024-07-24T07:41:37.010000"],["2024-07-24T07:41:38.010000"],["2024-07-24T07:41:39.010000"],["2024-07-24T07:41:40.010000"],["2024-07-24T07:41:41.010000"],["2024-07-24T07:41:42.010000"],["2024-07-24T07:41:43.010000"],["2024-07-24T07:41:44.010000"],["2024-07-24T07:41:45.010000"],["2024-07-24T07:41:46.010000"],["2024-07-24T07:41:47.010000"],["2024-07-24T07:41:48.010000"],["2024-07-24T07:41:49.010000"],["2024-07-24T07:41:50.010000"],["2024-07-24T07:41:51.010000"],["2024-07-24T07:41:52.010000"],["2024-07-24T07:41:53.010000"],["2024-07-24T07:41:54.010000"],["2024-07-24T07:41:55.010000"],["2024-07-24T07:41:56.010000"],["2024-07-24T07:41:57.010000"],["2024-07-24T07:41:58.010000"],["2024-07-24T07:41:59.010000"],["2024-07-24T07:42:00.010000"],["2024-07-24T07:42:01.010000"],["2024-07-24T07:42:02.010000"],["2024-07-24T07:42:03.010000"],["2024-07-24T07:42:04.010000"],["2024-07-24T07:42:05.010000"],["2024-07-24T07:42:06.010000"],["2024-07-24T07:42:07.010000"],["2024-07-24T07:42:08.010000"],["2024-07-24T07:42:09.010000"],["2024-07-24T07:42:10.010000"],["2024-07-24T07:42:11.010000"],["2024-07-24T07:42:12.010000"],["2024-07-24T07:42:13.010000"],["2024-07-24T07:42:14.010000"],["2024-07-24T07:42:15.010000"],["2024-07-24T07:42:16.010000"],["2024-07-24T07:42:17.010000"],["2024-07-24T07:42:18.010000"],["2024-07-24T07:42:19.010000"],["2024-07-24T07:42:20.010000"],["2024-07-24T07:42:21.010000"],["2024-07-24T07:42:22.010000"],["2024-07-24T07:42:23.010000"],["2024-07-24T07:42:24.010000"],["2024-07-24T07:42:25.010000"],["2024-07-24T07:42:26.010000"],["2024-07-24T07:42:27.010000"],["2024-07-24T07:42:28.010000"],["2024-07-24T07:42:29.010000"],["2024-07-24T07:42:30.010000"],["2024-07-24T07:42:31.010000"],["2024-07-24T07:42:32.010000"],["2024-07-24T07:42:33.010000"],["2024-07-24T07:42:34.010000"],["2024-07-24T07:42:35.010000"],["2024-07-24T07:42:36.010000"],["2024-07-24T07:42:37.010000"],["2024-07-24T07:42:38.010000"],["2024-07-24T07:42:39.010000"],["2024-07-24T07:42:40.010000"],["2024-07-24T07:42:41.010000"],["2024-07-24T07:42:42.010000"],["2024-07-24T07:42:43.010000"],["2024-07-24T07:42:44.010000"],["2024-07-24T07:42:45.010000"],["2024-07-24T07:42:46.010000"],["2024-07-24T07:42:47.010000"],["2024-07-24T07:42:48.010000"],["2024-07-24T07:42:49.010000"],["2024-07-24T07:42:50.010000"],["2024-07-24T07:42:51.010000"],["2024-07-24T07:42:52.010000"],["2024-07-24T07:42:53.010000"],["2024-07-24T07:42:54.010000"],["2024-07-24T07:42:55.010000"],["2024-07-24T07:42:56.010000"],["2024-07-24T07:42:57.010000"],["2024-07-24T07:42:58.010000"],["2024-07-24T07:42:59.010000"],["2024-07-24T07:43:00.010000"],["2024-07-24T07:43:01.010000"],["2024-07-24T07:43:02.010000"],["2024-07-24T07:43:03.010000"],["2024-07-24T07:43:04.010000"],["2024-07-24T07:43:05.010000"],["2024-07-24T07:43:06.010000"],["2024-07-24T07:43:07.010000"],["2024-07-24T07:43:08.010000"],["2024-07-24T07:43:09.010000"],["2024-07-24T07:43:10.010000"],["2024-07-24T07:43:11.010000"],["2024-07-24T07:43:12.010000"],["2024-07-24T07:43:13.010000"],["2024-07-24T07:43:14.010000"],["2024-07-24T07:43:15.010000"],["2024-07-24T07:43:16.010000"],["2024-07-24T07:43:17.010000"],["2024-07-24T07:43:18.010000"],["2024-07-24T07:43:19.010000"],["2024-07-24T07:43:20.010000"],["2024-07-24T07:43:21.010000"],["2024-07-24T07:43:22.010000"],["2024-07-24T07:43:23.010000"],["2024-07-24T07:43:24.010000"],["2024-07-24T07:43:25.010000"],["2024-07-24T07:43:26.010000"],["2024-07-24T07:43:27.010000"],["2024-07-24T07:43:28.010000"],["2024-07-24T07:43:29.010000"],["2024-07-24T07:43:30.010000"],["2024-07-24T07:43:31.010000"],["2024-07-24T07:43:32.010000"],["2024-07-24T07:43:33.010000"],["2024-07-24T07:43:34.010000"],["2024-07-24T07:43:35.010000"],["2024-07-24T07:43:36.010000"],["2024-07-24T07:43:37.010000"],["2024-07-24T07:43:38.010000"],["2024-07-24T07:43:39.010000"],["2024-07-24T07:43:40.010000"],["2024-07-24T07:43:41.010000"],["2024-07-24T07:43:42.010000"],["2024-07-24T07:43:43.010000"],["2024-07-24T07:43:44.010000"],["2024-07-24T07:43:45.010000"],["2024-07-24T07:43:46.010000"],["2024-07-24T07:43:47.010000"],["2024-07-24T07:43:48.010000"],["2024-07-24T07:43:49.010000"],["2024-07-24T07:43:50.010000"],["2024-07-24T07:43:51.010000"],["2024-07-24T07:43:52.010000"],["2024-07-24T07:43:53.010000"],["2024-07-24T07:43:54.010000"],["2024-07-24T07:43:55.010000"],["2024-07-24T07:43:56.010000"],["2024-07-24T07:43:57.010000"],["2024-07-24T07:43:58.010000"],["2024-07-24T07:43:59.010000"],["2024-07-24T07:44:00.010000"],["2024-07-24T07:44:01.010000"],["2024-07-24T07:44:02.010000"],["2024-07-24T07:44:03.010000"],["2024-07-24T07:44:04.010000"],["2024-07-24T07:44:05.010000"],["2024-07-24T07:44:06.010000"],["2024-07-24T07:44:07.010000"],["2024-07-24T07:44:08.010000"],["2024-07-24T07:44:09.010000"],["2024-07-24T07:44:10.010000"],["2024-07-24T07:44:11.010000"],["2024-07-24T07:44:12.010000"],["2024-07-24T07:44:13.010000"],["2024-07-24T07:44:14.010000"],["2024-07-24T07:44:15.010000"],["2024-07-24T07:44:16.010000"],["2024-07-24T07:44:17.010000"],["2024-07-24T07:44:18.010000"],["2024-07-24T07:44:19.010000"],["2024-07-24T07:44:20.010000"],["2024-07-24T07:44:21.010000"],["2024-07-24T07:44:22.010000"],["2024-07-24T07:44:23.010000"],["2024-07-24T07:44:24.010000"],["2024-07-24T07:44:25.010000"],["2024-07-24T07:44:26.010000"],["2024-07-24T07:44:27.010000"],["2024-07-24T07:44:28.010000"],["2024-07-24T07:44:29.010000"],["2024-07-24T07:44:30.010000"],["2024-07-24T07:44:31.010000"],["2024-07-24T07:44:32.010000"],["2024-07-24T07:44:33.010000"],["2024-07-24T07:44:34.010000"],["2024-07-24T07:44:35.010000"],["2024-07-24T07:44:36.010000"],["2024-07-24T07:44:37.010000"],["2024-07-24T07:44:38.010000"],["2024-07-24T07:44:39.010000"],["2024-07-24T07:44:40.010000"],["2024-07-24T07:44:41.010000"],["2024-07-24T07:44:42.010000"],["2024-07-24T07:44:43.010000"],["2024-07-24T07:44:44.010000"],["2024-07-24T07:44:45.010000"],["2024-07-24T07:44:46.010000"],["2024-07-24T07:44:47.010000"],["2024-07-24T07:44:48.010000"],["2024-07-24T07:44:49.010000"],["2024-07-24T07:44:50.010000"],["2024-07-24T07:44:51.010000"],["2024-07-24T07:44:52.010000"],["2024-07-24T07:44:53.010000"],["2024-07-24T07:44:54.010000"],["2024-07-24T07:44:55.010000"],["2024-07-24T07:44:56.010000"],["2024-07-24T07:44:57.010000"],["2024-07-24T07:44:58.010000"],["2024-07-24T07:44:59.010000"],["2024-07-24T07:45:00.010000"],["2024-07-24T07:45:01.010000"],["2024-07-24T07:45:02.010000"],["2024-07-24T07:45:03.010000"],["2024-07-24T07:45:04.010000"],["2024-07-24T07:45:05.010000"],["2024-07-24T07:45:06.010000"],["2024-07-24T07:45:07.010000"],["2024-07-24T07:45:08.010000"],["2024-07-24T07:45:09.010000"],["2024-07-24T07:45:10.010000"],["2024-07-24T07:45:11.010000"],["2024-07-24T07:45:12.010000"],["2024-07-24T07:45:13.010000"],["2024-07-24T07:45:14.010000"],["2024-07-24T07:45:15.010000"],["2024-07-24T07:45:16.010000"],["2024-07-24T07:45:17.010000"],["2024-07-24T07:45:18.010000"],["2024-07-24T07:45:19.010000"],["2024-07-24T07:45:20.010000"],["2024-07-24T07:45:21.010000"],["2024-07-24T07:45:22.010000"],["2024-07-24T07:45:23.010000"],["2024-07-24T07:45:24.010000"],["2024-07-24T07:45:25.010000"],["2024-07-24T07:45:26.010000"],["2024-07-24T07:45:27.010000"],["2024-07-24T07:45:28.010000"],["2024-07-24T07:45:29.010000"],["2024-07-24T07:45:30.010000"],["2024-07-24T07:45:31.010000"],["2024-07-24T07:45:32.010000"],["2024-07-24T07:45:33.010000"],["2024-07-24T07:45:34.010000"],["2024-07-24T07:45:35.010000"],["2024-07-24T07:45:36.010000"],["2024-07-24T07:45:37.010000"],["2024-07-24T07:45:38.010000"],["2024-07-24T07:45:39.010000"],["2024-07-24T07:45:40.010000"],["2024-07-24T07:45:41.010000"],["2024-07-24T07:45:42.010000"],["2024-07-24T07:45:43.010000"],["2024-07-24T07:45:44.010000"],["2024-07-24T07:45:45.010000"],["2024-07-24T07:45:46.010000"],["2024-07-24T07:45:47.010000"],["2024-07-24T07:45:48.010000"],["2024-07-24T07:45:49.010000"],["2024-07-24T07:45:50.010000"],["2024-07-24T07:45:51.010000"],["2024-07-24T07:45:52.010000"],["2024-07-24T07:45:53.010000"],["2024-07-24T07:45:54.010000"],["2024-07-24T07:45:55.010000"],["2024-07-24T07:45:56.010000"],["2024-07-24T07:45:57.010000"],["2024-07-24T07:45:58.010000"],["2024-07-24T07:45:59.010000"],["2024-07-24T07:46:00.010000"],["2024-07-24T07:46:01.010000"],["2024-07-24T07:46:02.010000"],["2024-07-24T07:46:03.010000"],["2024-07-24T07:46:04.010000"],["2024-07-24T07:46:05.010000"],["2024-07-24T07:46:06.010000"],["2024-07-24T07:46:07.010000"],["2024-07-24T07:46:08.010000"],["2024-07-24T07:46:09.010000"],["2024-07-24T07:46:10.010000"],["2024-07-24T07:46:11.010000"],["2024-07-24T07:46:12.010000"],["2024-07-24T07:46:13.010000"],["2024-07-24T07:46:14.010000"],["2024-07-24T07:46:15.010000"],["2024-07-24T07:46:16.010000"],["2024-07-24T07:46:17.010000"],["2024-07-24T07:46:18.010000"],["2024-07-24T07:46:19.010000"],["2024-07-24T07:46:20.010000"],["2024-07-24T07:46:21.010000"],["2024-07-24T07:46:22.010000"],["2024-07-24T07:46:23.010000"],["2024-07-24T07:46:24.010000"],["2024-07-24T07:46:25.010000"],["2024-07-24T07:46:26.010000"],["2024-07-24T07:46:27.010000"],["2024-07-24T07:46:28.010000"],["2024-07-24T07:46:29.010000"],["2024-07-24T07:46:30.010000"],["2024-07-24T07:46:31.010000"],["2024-07-24T07:46:32.010000"],["2024-07-24T07:46:33.010000"],["2024-07-24T07:46:34.010000"],["2024-07-24T07:46:35.010000"],["2024-07-24T07:46:36.010000"],["2024-07-24T07:46:37.010000"],["2024-07-24T07:46:38.010000"],["2024-07-24T07:46:39.010000"],["2024-07-24T07:46:40.010000"],["2024-07-24T07:46:41.010000"],["2024-07-24T07:46:42.010000"],["2024-07-24T07:46:43.010000"],["2024-07-24T07:46:44.010000"],["2024-07-24T07:46:45.010000"],["2024-07-24T07:46:46.010000"],["2024-07-24T07:46:47.010000"],["2024-07-24T07:46:48.010000"],["2024-07-24T07:46:49.010000"],["2024-07-24T07:46:50.010000"],["2024-07-24T07:46:51.010000"],["2024-07-24T07:46:52.010000"],["2024-07-24T07:46:53.010000"],["2024-07-24T07:46:54.010000"],["2024-07-24T07:46:55.010000"],["2024-07-24T07:46:56.010000"],["2024-07-24T07:46:57.010000"],["2024-07-24T07:46:58.010000"],["2024-07-24T07:46:59.010000"],["2024-07-24T07:47:00.010000"],["2024-07-24T07:47:01.010000"],["2024-07-24T07:47:02.010000"],["2024-07-24T07:47:03.010000"],["2024-07-24T07:47:04.010000"],["2024-07-24T07:47:05.010000"],["2024-07-24T07:47:06.010000"],["2024-07-24T07:47:07.010000"],["2024-07-24T07:47:08.010000"],["2024-07-24T07:47:09.010000"],["2024-07-24T07:47:10.010000"],["2024-07-24T07:47:11.010000"],["2024-07-24T07:47:12.010000"],["2024-07-24T07:47:13.010000"],["2024-07-24T07:47:14.010000"],["2024-07-24T07:47:15.010000"],["2024-07-24T07:47:16.010000"],["2024-07-24T07:47:17.010000"],["2024-07-24T07:47:18.010000"],["2024-07-24T07:47:19.010000"],["2024-07-24T07:47:20.010000"],["2024-07-24T07:47:21.010000"],["2024-07-24T07:47:22.010000"],["2024-07-24T07:47:23.010000"],["2024-07-24T07:47:24.010000"],["2024-07-24T07:47:25.010000"],["2024-07-24T07:47:26.010000"],["2024-07-24T07:47:27.010000"],["2024-07-24T07:47:28.010000"],["2024-07-24T07:47:29.010000"],["2024-07-24T07:47:30.010000"],["2024-07-24T07:47:31.010000"],["2024-07-24T07:47:32.010000"],["2024-07-24T07:47:33.010000"],["2024-07-24T07:47:34.010000"],["2024-07-24T07:47:35.010000"],["2024-07-24T07:47:36.010000"],["2024-07-24T07:47:37.010000"],["2024-07-24T07:47:38.010000"],["2024-07-24T07:47:39.010000"],["2024-07-24T07:47:40.010000"],["2024-07-24T07:47:41.010000"],["2024-07-24T07:47:42.010000"],["2024-07-24T07:47:43.010000"],["2024-07-24T07:47:44.010000"],["2024-07-24T07:47:45.010000"],["2024-07-24T07:47:46.010000"],["2024-07-24T07:47:47.010000"],["2024-07-24T07:47:48.010000"],["2024-07-24T07:47:49.010000"],["2024-07-24T07:47:50.010000"],["2024-07-24T07:47:51.010000"],["2024-07-24T07:47:52.010000"],["2024-07-24T07:47:53.010000"],["2024-07-24T07:47:54.010000"],["2024-07-24T07:47:55.010000"],["2024-07-24T07:47:56.010000"],["2024-07-24T07:47:57.010000"],["2024-07-24T07:47:58.010000"],["2024-07-24T07:47:59.010000"],["2024-07-24T07:48:00.010000"],["2024-07-24T07:48:01.010000"],["2024-07-24T07:48:02.010000"],["2024-07-24T07:48:03.010000"],["2024-07-24T07:48:04.010000"],["2024-07-24T07:48:05.010000"],["2024-07-24T07:48:06.010000"],["2024-07-24T07:48:07.010000"],["2024-07-24T07:48:08.010000"],["2024-07-24T07:48:09.010000"],["2024-07-24T07:48:10.010000"],["2024-07-24T07:48:11.010000"],["2024-07-24T07:48:12.010000"],["2024-07-24T07:48:13.010000"],["2024-07-24T07:48:14.010000"],["2024-07-24T07:48:15.010000"],["2024-07-24T07:48:16.010000"],["2024-07-24T07:48:17.010000"],["2024-07-24T07:48:18.010000"],["2024-07-24T07:48:19.010000"],["2024-07-24T07:48:20.010000"],["2024-07-24T07:48:21.010000"],["2024-07-24T07:48:22.010000"],["2024-07-24T07:48:23.010000"],["2024-07-24T07:48:24.010000"],["2024-07-24T07:48:25.010000"],["2024-07-24T07:48:26.010000"],["2024-07-24T07:48:27.010000"],["2024-07-24T07:48:28.010000"],["2024-07-24T07:48:29.010000"],["2024-07-24T07:48:30.010000"],["2024-07-24T07:48:31.010000"],["2024-07-24T07:48:32.010000"],["2024-07-24T07:48:33.010000"],["2024-07-24T07:48:34.010000"],["2024-07-24T07:48:35.010000"],["2024-07-24T07:48:36.010000"],["2024-07-24T07:48:37.010000"],["2024-07-24T07:48:38.010000"],["2024-07-24T07:48:39.010000"],["2024-07-24T07:48:40.010000"],["2024-07-24T07:48:41.010000"],["2024-07-24T07:48:42.010000"],["2024-07-24T07:48:43.010000"],["2024-07-24T07:48:44.010000"],["2024-07-24T07:48:45.010000"],["2024-07-24T07:48:46.010000"],["2024-07-24T07:48:47.010000"],["2024-07-24T07:48:48.010000"],["2024-07-24T07:48:49.010000"],["2024-07-24T07:48:50.010000"],["2024-07-24T07:48:51.010000"],["2024-07-24T07:48:52.010000"],["2024-07-24T07:48:53.010000"],["2024-07-24T07:48:54.010000"],["2024-07-24T07:48:55.010000"],["2024-07-24T07:48:56.010000"],["2024-07-24T07:48:57.010000"],["2024-07-24T07:48:58.010000"],["2024-07-24T07:48:59.010000"],["2024-07-24T07:49:00.010000"],["2024-07-24T07:49:01.010000"],["2024-07-24T07:49:02.010000"],["2024-07-24T07:49:03.010000"],["2024-07-24T07:49:04.010000"],["2024-07-24T07:49:05.010000"],["2024-07-24T07:49:06.010000"],["2024-07-24T07:49:07.010000"],["2024-07-24T07:49:08.010000"],["2024-07-24T07:49:09.010000"],["2024-07-24T07:49:10.010000"],["2024-07-24T07:49:11.010000"],["2024-07-24T07:49:12.010000"],["2024-07-24T07:49:13.010000"],["2024-07-24T07:49:14.010000"],["2024-07-24T07:49:15.010000"],["2024-07-24T07:49:16.010000"],["2024-07-24T07:49:17.010000"],["2024-07-24T07:49:18.010000"],["2024-07-24T07:49:19.010000"],["2024-07-24T07:49:20.010000"],["2024-07-24T07:49:21.010000"],["2024-07-24T07:49:22.010000"],["2024-07-24T07:49:23.010000"],["2024-07-24T07:49:24.010000"],["2024-07-24T07:49:25.010000"],["2024-07-24T07:49:26.010000"],["2024-07-24T07:49:27.010000"],["2024-07-24T07:49:28.010000"],["2024-07-24T07:49:29.010000"],["2024-07-24T07:49:30.010000"],["2024-07-24T07:49:31.010000"],["2024-07-24T07:49:32.010000"],["2024-07-24T07:49:33.010000"],["2024-07-24T07:49:34.010000"],["2024-07-24T07:49:35.010000"],["2024-07-24T07:49:36.010000"],["2024-07-24T07:49:37.010000"],["2024-07-24T07:49:38.010000"],["2024-07-24T07:49:39.010000"],["2024-07-24T07:49:40.010000"],["2024-07-24T07:49:41.010000"],["2024-07-24T07:49:42.010000"],["2024-07-24T07:49:43.010000"],["2024-07-24T07:49:44.010000"],["2024-07-24T07:49:45.010000"],["2024-07-24T07:49:46.010000"],["2024-07-24T07:49:47.010000"],["2024-07-24T07:49:48.010000"],["2024-07-24T07:49:49.010000"],["2024-07-24T07:49:50.010000"],["2024-07-24T07:49:51.010000"],["2024-07-24T07:49:52.010000"],["2024-07-24T07:49:53.010000"],["2024-07-24T07:49:54.010000"],["2024-07-24T07:49:55.010000"],["2024-07-24T07:49:56.010000"],["2024-07-24T07:49:57.010000"],["2024-07-24T07:49:58.010000"],["2024-07-24T07:49:59.010000"],["2024-07-24T07:50:00.010000"],["2024-07-24T07:50:01.010000"],["2024-07-24T07:50:02.010000"],["2024-07-24T07:50:03.010000"],["2024-07-24T07:50:04.010000"],["2024-07-24T07:50:05.010000"],["2024-07-24T07:50:06.010000"],["2024-07-24T07:50:07.010000"],["2024-07-24T07:50:08.010000"],["2024-07-24T07:50:09.010000"],["2024-07-24T07:50:10.010000"],["2024-07-24T07:50:11.010000"],["2024-07-24T07:50:12.010000"],["2024-07-24T07:50:13.010000"],["2024-07-24T07:50:14.010000"],["2024-07-24T07:50:15.010000"],["2024-07-24T07:50:16.010000"],["2024-07-24T07:50:17.010000"],["2024-07-24T07:50:18.010000"],["2024-07-24T07:50:19.010000"],["2024-07-24T07:50:20.010000"],["2024-07-24T07:50:21.010000"],["2024-07-24T07:50:22.010000"],["2024-07-24T07:50:23.010000"],["2024-07-24T07:50:24.010000"],["2024-07-24T07:50:25.010000"],["2024-07-24T07:50:26.010000"],["2024-07-24T07:50:27.010000"],["2024-07-24T07:50:28.010000"],["2024-07-24T07:50:29.010000"],["2024-07-24T07:50:30.010000"],["2024-07-24T07:50:31.010000"],["2024-07-24T07:50:32.010000"],["2024-07-24T07:50:33.010000"],["2024-07-24T07:50:34.010000"],["2024-07-24T07:50:35.010000"],["2024-07-24T07:50:36.010000"],["2024-07-24T07:50:37.010000"],["2024-07-24T07:50:38.010000"],["2024-07-24T07:50:39.010000"],["2024-07-24T07:50:40.010000"],["2024-07-24T07:50:41.010000"],["2024-07-24T07:50:42.010000"],["2024-07-24T07:50:43.010000"],["2024-07-24T07:50:44.010000"],["2024-07-24T07:50:45.010000"],["2024-07-24T07:50:46.010000"],["2024-07-24T07:50:47.010000"],["2024-07-24T07:50:48.010000"],["2024-07-24T07:50:49.010000"],["2024-07-24T07:50:50.010000"],["2024-07-24T07:50:51.010000"],["2024-07-24T07:50:52.010000"],["2024-07-24T07:50:53.010000"],["2024-07-24T07:50:54.010000"],["2024-07-24T07:50:55.010000"],["2024-07-24T07:50:56.010000"],["2024-07-24T07:50:57.010000"],["2024-07-24T07:50:58.010000"],["2024-07-24T07:50:59.010000"],["2024-07-24T07:51:00.010000"],["2024-07-24T07:51:01.010000"],["2024-07-24T07:51:02.010000"],["2024-07-24T07:51:03.010000"],["2024-07-24T07:51:04.010000"],["2024-07-24T07:51:05.010000"],["2024-07-24T07:51:06.010000"],["2024-07-24T07:51:07.010000"],["2024-07-24T07:51:08.010000"],["2024-07-24T07:51:09.010000"],["2024-07-24T07:51:10.010000"],["2024-07-24T07:51:11.010000"],["2024-07-24T07:51:12.010000"],["2024-07-24T07:51:13.010000"],["2024-07-24T07:51:14.010000"],["2024-07-24T07:51:15.010000"],["2024-07-24T07:51:16.010000"],["2024-07-24T07:51:17.010000"],["2024-07-24T07:51:18.010000"],["2024-07-24T07:51:19.010000"],["2024-07-24T07:51:20.010000"],["2024-07-24T07:51:21.010000"],["2024-07-24T07:51:22.010000"],["2024-07-24T07:51:23.010000"],["2024-07-24T07:51:24.010000"],["2024-07-24T07:51:25.010000"],["2024-07-24T07:51:26.010000"],["2024-07-24T07:51:27.010000"],["2024-07-24T07:51:28.010000"],["2024-07-24T07:51:29.010000"],["2024-07-24T07:51:30.010000"],["2024-07-24T07:51:31.010000"],["2024-07-24T07:51:32.010000"],["2024-07-24T07:51:33.010000"],["2024-07-24T07:51:34.010000"],["2024-07-24T07:51:35.010000"],["2024-07-24T07:51:36.010000"],["2024-07-24T07:51:37.010000"],["2024-07-24T07:51:38.010000"],["2024-07-24T07:51:39.010000"],["2024-07-24T07:51:40.010000"],["2024-07-24T07:51:41.010000"],["2024-07-24T07:51:42.010000"],["2024-07-24T07:51:43.010000"],["2024-07-24T07:51:44.010000"],["2024-07-24T07:51:45.010000"],["2024-07-24T07:51:46.010000"],["2024-07-24T07:51:47.010000"],["2024-07-24T07:51:48.010000"],["2024-07-24T07:51:49.010000"],["2024-07-24T07:51:50.010000"],["2024-07-24T07:51:51.010000"],["2024-07-24T07:51:52.010000"],["2024-07-24T07:51:53.010000"],["2024-07-24T07:51:54.010000"],["2024-07-24T07:51:55.010000"],["2024-07-24T07:51:56.010000"],["2024-07-24T07:51:57.010000"],["2024-07-24T07:51:58.010000"],["2024-07-24T07:51:59.010000"],["2024-07-24T07:52:00.010000"],["2024-07-24T07:52:01.010000"],["2024-07-24T07:52:02.010000"],["2024-07-24T07:52:03.010000"],["2024-07-24T07:52:04.010000"],["2024-07-24T07:52:05.010000"],["2024-07-24T07:52:06.010000"],["2024-07-24T07:52:07.010000"],["2024-07-24T07:52:08.010000"],["2024-07-24T07:52:09.010000"],["2024-07-24T07:52:10.010000"],["2024-07-24T07:52:11.010000"],["2024-07-24T07:52:12.010000"],["2024-07-24T07:52:13.010000"],["2024-07-24T07:52:14.010000"],["2024-07-24T07:52:15.010000"],["2024-07-24T07:52:16.010000"],["2024-07-24T07:52:17.010000"],["2024-07-24T07:52:18.010000"],["2024-07-24T07:52:19.010000"],["2024-07-24T07:52:20.010000"],["2024-07-24T07:52:21.010000"],["2024-07-24T07:52:22.010000"],["2024-07-24T07:52:23.010000"],["2024-07-24T07:52:24.010000"],["2024-07-24T07:52:25.010000"],["2024-07-24T07:52:26.010000"],["2024-07-24T07:52:27.010000"],["2024-07-24T07:52:28.010000"],["2024-07-24T07:52:29.010000"],["2024-07-24T07:52:30.010000"],["2024-07-24T07:52:31.010000"],["2024-07-24T07:52:32.010000"],["2024-07-24T07:52:33.010000"],["2024-07-24T07:52:34.010000"],["2024-07-24T07:52:35.010000"],["2024-07-24T07:52:36.010000"],["2024-07-24T07:52:37.010000"],["2024-07-24T07:52:38.010000"],["2024-07-24T07:52:39.010000"],["2024-07-24T07:52:40.010000"],["2024-07-24T07:52:41.010000"],["2024-07-24T07:52:42.010000"],["2024-07-24T07:52:43.010000"],["2024-07-24T07:52:44.010000"],["2024-07-24T07:52:45.010000"],["2024-07-24T07:52:46.010000"],["2024-07-24T07:52:47.010000"],["2024-07-24T07:52:48.010000"],["2024-07-24T07:52:49.010000"],["2024-07-24T07:52:50.010000"],["2024-07-24T07:52:51.010000"],["2024-07-24T07:52:52.010000"],["2024-07-24T07:52:53.010000"],["2024-07-24T07:52:54.010000"],["2024-07-24T07:52:55.010000"],["2024-07-24T07:52:56.010000"],["2024-07-24T07:52:57.010000"],["2024-07-24T07:52:58.010000"],["2024-07-24T07:52:59.010000"],["2024-07-24T07:53:00.010000"],["2024-07-24T07:53:01.010000"],["2024-07-24T07:53:02.010000"],["2024-07-24T07:53:03.010000"],["2024-07-24T07:53:04.010000"],["2024-07-24T07:53:05.010000"],["2024-07-24T07:53:06.010000"],["2024-07-24T07:53:07.010000"],["2024-07-24T07:53:08.010000"],["2024-07-24T07:53:09.010000"],["2024-07-24T07:53:10.010000"],["2024-07-24T07:53:11.010000"],["2024-07-24T07:53:12.010000"],["2024-07-24T07:53:13.010000"],["2024-07-24T07:53:14.010000"],["2024-07-24T07:53:15.010000"],["2024-07-24T07:53:16.010000"],["2024-07-24T07:53:17.010000"],["2024-07-24T07:53:18.010000"],["2024-07-24T07:53:19.010000"],["2024-07-24T07:53:20.010000"],["2024-07-24T07:53:21.010000"],["2024-07-24T07:53:22.010000"],["2024-07-24T07:53:23.010000"],["2024-07-24T07:53:24.010000"],["2024-07-24T07:53:25.010000"],["2024-07-24T07:53:26.010000"],["2024-07-24T07:53:27.010000"],["2024-07-24T07:53:28.010000"],["2024-07-24T07:53:29.010000"],["2024-07-24T07:53:30.010000"],["2024-07-24T07:53:31.010000"],["2024-07-24T07:53:32.010000"],["2024-07-24T07:53:33.010000"],["2024-07-24T07:53:34.010000"],["2024-07-24T07:53:35.010000"],["2024-07-24T07:53:36.010000"],["2024-07-24T07:53:37.010000"],["2024-07-24T07:53:38.010000"],["2024-07-24T07:53:39.010000"],["2024-07-24T07:53:40.010000"],["2024-07-24T07:53:41.010000"],["2024-07-24T07:53:42.010000"],["2024-07-24T07:53:43.010000"],["2024-07-24T07:53:44.010000"],["2024-07-24T07:53:45.010000"],["2024-07-24T07:53:46.010000"],["2024-07-24T07:53:47.010000"],["2024-07-24T07:53:48.010000"],["2024-07-24T07:53:49.010000"],["2024-07-24T07:53:50.010000"],["2024-07-24T07:53:51.010000"],["2024-07-24T07:53:52.010000"],["2024-07-24T07:53:53.010000"],["2024-07-24T07:53:54.010000"],["2024-07-24T07:53:55.010000"],["2024-07-24T07:53:56.010000"],["2024-07-24T07:53:57.010000"],["2024-07-24T07:53:58.010000"],["2024-07-24T07:53:59.010000"],["2024-07-24T07:54:00.010000"],["2024-07-24T07:54:01.010000"],["2024-07-24T07:54:02.010000"],["2024-07-24T07:54:03.010000"],["2024-07-24T07:54:04.010000"],["2024-07-24T07:54:05.010000"],["2024-07-24T07:54:06.010000"],["2024-07-24T07:54:07.010000"],["2024-07-24T07:54:08.010000"],["2024-07-24T07:54:09.010000"],["2024-07-24T07:54:10.010000"],["2024-07-24T07:54:11.010000"],["2024-07-24T07:54:12.010000"],["2024-07-24T07:54:13.010000"],["2024-07-24T07:54:14.010000"],["2024-07-24T07:54:15.010000"],["2024-07-24T07:54:16.010000"],["2024-07-24T07:54:17.010000"],["2024-07-24T07:54:18.010000"],["2024-07-24T07:54:19.010000"],["2024-07-24T07:54:20.010000"],["2024-07-24T07:54:21.010000"],["2024-07-24T07:54:22.010000"],["2024-07-24T07:54:23.010000"],["2024-07-24T07:54:24.010000"],["2024-07-24T07:54:25.010000"],["2024-07-24T07:54:26.010000"],["2024-07-24T07:54:27.010000"],["2024-07-24T07:54:28.010000"],["2024-07-24T07:54:29.010000"],["2024-07-24T07:54:30.010000"],["2024-07-24T07:54:31.010000"],["2024-07-24T07:54:32.010000"],["2024-07-24T07:54:33.010000"],["2024-07-24T07:54:34.010000"],["2024-07-24T07:54:35.010000"],["2024-07-24T07:54:36.010000"],["2024-07-24T07:54:37.010000"],["2024-07-24T07:54:38.010000"],["2024-07-24T07:54:39.010000"],["2024-07-24T07:54:40.010000"],["2024-07-24T07:54:41.010000"],["2024-07-24T07:54:42.010000"],["2024-07-24T07:54:43.010000"],["2024-07-24T07:54:44.010000"],["2024-07-24T07:54:45.010000"],["2024-07-24T07:54:46.010000"],["2024-07-24T07:54:47.010000"],["2024-07-24T07:54:48.010000"],["2024-07-24T07:54:49.010000"],["2024-07-24T07:54:50.010000"],["2024-07-24T07:54:51.010000"],["2024-07-24T07:54:52.010000"],["2024-07-24T07:54:53.010000"],["2024-07-24T07:54:54.010000"],["2024-07-24T07:54:55.010000"],["2024-07-24T07:54:56.010000"],["2024-07-24T07:54:57.010000"],["2024-07-24T07:54:58.010000"],["2024-07-24T07:54:59.010000"],["2024-07-24T07:55:00.010000"],["2024-07-24T07:55:01.010000"],["2024-07-24T07:55:02.010000"],["2024-07-24T07:55:03.010000"],["2024-07-24T07:55:04.010000"],["2024-07-24T07:55:05.010000"],["2024-07-24T07:55:06.010000"],["2024-07-24T07:55:07.010000"],["2024-07-24T07:55:08.010000"],["2024-07-24T07:55:09.010000"],["2024-07-24T07:55:10.010000"],["2024-07-24T07:55:11.010000"],["2024-07-24T07:55:12.010000"],["2024-07-24T07:55:13.010000"],["2024-07-24T07:55:14.010000"],["2024-07-24T07:55:15.010000"],["2024-07-24T07:55:16.010000"],["2024-07-24T07:55:17.010000"],["2024-07-24T07:55:18.010000"],["2024-07-24T07:55:19.010000"],["2024-07-24T07:55:20.010000"],["2024-07-24T07:55:21.010000"],["2024-07-24T07:55:22.010000"],["2024-07-24T07:55:23.010000"],["2024-07-24T07:55:24.010000"],["2024-07-24T07:55:25.010000"],["2024-07-24T07:55:26.010000"],["2024-07-24T07:55:27.010000"],["2024-07-24T07:55:28.010000"],["2024-07-24T07:55:29.010000"],["2024-07-24T07:55:30.010000"],["2024-07-24T07:55:31.010000"],["2024-07-24T07:55:32.010000"],["2024-07-24T07:55:33.010000"],["2024-07-24T07:55:34.010000"],["2024-07-24T07:55:35.010000"],["2024-07-24T07:55:36.010000"],["2024-07-24T07:55:37.010000"],["2024-07-24T07:55:38.010000"],["2024-07-24T07:55:39.010000"],["2024-07-24T07:55:40.010000"],["2024-07-24T07:55:41.010000"],["2024-07-24T07:55:42.010000"],["2024-07-24T07:55:43.010000"],["2024-07-24T07:55:44.010000"],["2024-07-24T07:55:45.010000"],["2024-07-24T07:55:46.010000"],["2024-07-24T07:55:47.010000"],["2024-07-24T07:55:48.010000"],["2024-07-24T07:55:49.010000"],["2024-07-24T07:55:50.010000"],["2024-07-24T07:55:51.010000"],["2024-07-24T07:55:52.010000"],["2024-07-24T07:55:53.010000"],["2024-07-24T07:55:54.010000"],["2024-07-24T07:55:55.010000"],["2024-07-24T07:55:56.010000"],["2024-07-24T07:55:57.010000"],["2024-07-24T07:55:58.010000"],["2024-07-24T07:55:59.010000"],["2024-07-24T07:56:00.010000"],["2024-07-24T07:56:01.010000"],["2024-07-24T07:56:02.010000"],["2024-07-24T07:56:03.010000"],["2024-07-24T07:56:04.010000"],["2024-07-24T07:56:05.010000"],["2024-07-24T07:56:06.010000"],["2024-07-24T07:56:07.010000"],["2024-07-24T07:56:08.010000"],["2024-07-24T07:56:09.010000"],["2024-07-24T07:56:10.010000"],["2024-07-24T07:56:11.010000"],["2024-07-24T07:56:12.010000"],["2024-07-24T07:56:13.010000"],["2024-07-24T07:56:14.010000"],["2024-07-24T07:56:15.010000"],["2024-07-24T07:56:16.010000"],["2024-07-24T07:56:17.010000"],["2024-07-24T07:56:18.010000"],["2024-07-24T07:56:19.010000"],["2024-07-24T07:56:20.010000"],["2024-07-24T07:56:21.010000"],["2024-07-24T07:56:22.010000"],["2024-07-24T07:56:23.010000"],["2024-07-24T07:56:24.010000"],["2024-07-24T07:56:25.010000"],["2024-07-24T07:56:26.010000"],["2024-07-24T07:56:27.010000"],["2024-07-24T07:56:28.010000"],["2024-07-24T07:56:29.010000"],["2024-07-24T07:56:30.010000"],["2024-07-24T07:56:31.010000"],["2024-07-24T07:56:32.010000"],["2024-07-24T07:56:33.010000"],["2024-07-24T07:56:34.010000"],["2024-07-24T07:56:35.010000"],["2024-07-24T07:56:36.010000"],["2024-07-24T07:56:37.010000"],["2024-07-24T07:56:38.010000"],["2024-07-24T07:56:39.010000"],["2024-07-24T07:56:40.010000"],["2024-07-24T07:56:41.010000"],["2024-07-24T07:56:42.010000"],["2024-07-24T07:56:43.010000"],["2024-07-24T07:56:44.010000"],["2024-07-24T07:56:45.010000"],["2024-07-24T07:56:46.010000"],["2024-07-24T07:56:47.010000"],["2024-07-24T07:56:48.010000"],["2024-07-24T07:56:49.010000"],["2024-07-24T07:56:50.010000"],["2024-07-24T07:56:51.010000"],["2024-07-24T07:56:52.010000"],["2024-07-24T07:56:53.010000"],["2024-07-24T07:56:54.010000"],["2024-07-24T07:56:55.010000"],["2024-07-24T07:56:56.010000"],["2024-07-24T07:56:57.010000"],["2024-07-24T07:56:58.010000"],["2024-07-24T07:56:59.010000"],["2024-07-24T07:57:00.010000"],["2024-07-24T07:57:01.010000"],["2024-07-24T07:57:02.010000"],["2024-07-24T07:57:03.010000"],["2024-07-24T07:57:04.010000"],["2024-07-24T07:57:05.010000"],["2024-07-24T07:57:06.010000"],["2024-07-24T07:57:07.010000"],["2024-07-24T07:57:08.010000"],["2024-07-24T07:57:09.010000"],["2024-07-24T07:57:10.010000"],["2024-07-24T07:57:11.010000"],["2024-07-24T07:57:12.010000"],["2024-07-24T07:57:13.010000"],["2024-07-24T07:57:14.010000"],["2024-07-24T07:57:15.010000"],["2024-07-24T07:57:16.010000"],["2024-07-24T07:57:17.010000"],["2024-07-24T07:57:18.010000"],["2024-07-24T07:57:19.010000"],["2024-07-24T07:57:20.010000"],["2024-07-24T07:57:21.010000"],["2024-07-24T07:57:22.010000"],["2024-07-24T07:57:23.010000"],["2024-07-24T07:57:24.010000"],["2024-07-24T07:57:25.010000"],["2024-07-24T07:57:26.010000"],["2024-07-24T07:57:27.010000"],["2024-07-24T07:57:28.010000"],["2024-07-24T07:57:29.010000"],["2024-07-24T07:57:30.010000"],["2024-07-24T07:57:31.010000"],["2024-07-24T07:57:32.010000"],["2024-07-24T07:57:33.010000"],["2024-07-24T07:57:34.010000"],["2024-07-24T07:57:35.010000"],["2024-07-24T07:57:36.010000"],["2024-07-24T07:57:37.010000"],["2024-07-24T07:57:38.010000"],["2024-07-24T07:57:39.010000"],["2024-07-24T07:57:40.010000"],["2024-07-24T07:57:41.010000"],["2024-07-24T07:57:42.010000"],["2024-07-24T07:57:43.010000"],["2024-07-24T07:57:44.010000"],["2024-07-24T07:57:45.010000"],["2024-07-24T07:57:46.010000"],["2024-07-24T07:57:47.010000"],["2024-07-24T07:57:48.010000"],["2024-07-24T07:57:49.010000"],["2024-07-24T07:57:50.010000"],["2024-07-24T07:57:51.010000"],["2024-07-24T07:57:52.010000"],["2024-07-24T07:57:53.010000"],["2024-07-24T07:57:54.010000"],["2024-07-24T07:57:55.010000"],["2024-07-24T07:57:56.010000"],["2024-07-24T07:57:57.010000"],["2024-07-24T07:57:58.010000"],["2024-07-24T07:57:59.010000"],["2024-07-24T07:58:00.010000"],["2024-07-24T07:58:01.010000"],["2024-07-24T07:58:02.010000"],["2024-07-24T07:58:03.010000"],["2024-07-24T07:58:04.010000"],["2024-07-24T07:58:05.010000"],["2024-07-24T07:58:06.010000"],["2024-07-24T07:58:07.010000"],["2024-07-24T07:58:08.010000"],["2024-07-24T07:58:09.010000"],["2024-07-24T07:58:10.010000"],["2024-07-24T07:58:11.010000"],["2024-07-24T07:58:12.010000"],["2024-07-24T07:58:13.010000"],["2024-07-24T07:58:14.010000"],["2024-07-24T07:58:15.010000"],["2024-07-24T07:58:16.010000"],["2024-07-24T07:58:17.010000"],["2024-07-24T07:58:18.010000"],["2024-07-24T07:58:19.010000"],["2024-07-24T07:58:20.010000"],["2024-07-24T07:58:21.010000"],["2024-07-24T07:58:22.010000"],["2024-07-24T07:58:23.010000"],["2024-07-24T07:58:24.010000"],["2024-07-24T07:58:25.010000"],["2024-07-24T07:58:26.010000"],["2024-07-24T07:58:27.010000"],["2024-07-24T07:58:28.010000"],["2024-07-24T07:58:29.010000"],["2024-07-24T07:58:30.010000"],["2024-07-24T07:58:31.010000"],["2024-07-24T07:58:32.010000"],["2024-07-24T07:58:33.010000"],["2024-07-24T07:58:34.010000"],["2024-07-24T07:58:35.010000"],["2024-07-24T07:58:36.010000"],["2024-07-24T07:58:37.010000"],["2024-07-24T07:58:38.010000"],["2024-07-24T07:58:39.010000"],["2024-07-24T07:58:40.010000"],["2024-07-24T07:58:41.010000"],["2024-07-24T07:58:42.010000"],["2024-07-24T07:58:43.010000"],["2024-07-24T07:58:44.010000"],["2024-07-24T07:58:45.010000"],["2024-07-24T07:58:46.010000"],["2024-07-24T07:58:47.010000"],["2024-07-24T07:58:48.010000"],["2024-07-24T07:58:49.010000"],["2024-07-24T07:58:50.010000"],["2024-07-24T07:58:51.010000"],["2024-07-24T07:58:52.010000"],["2024-07-24T07:58:53.010000"],["2024-07-24T07:58:54.010000"],["2024-07-24T07:58:55.010000"],["2024-07-24T07:58:56.010000"],["2024-07-24T07:58:57.010000"],["2024-07-24T07:58:58.010000"],["2024-07-24T07:58:59.010000"],["2024-07-24T07:59:00.010000"],["2024-07-24T07:59:01.010000"],["2024-07-24T07:59:02.010000"],["2024-07-24T07:59:03.010000"],["2024-07-24T07:59:04.010000"],["2024-07-24T07:59:05.010000"],["2024-07-24T07:59:06.010000"],["2024-07-24T07:59:07.010000"],["2024-07-24T07:59:08.010000"],["2024-07-24T07:59:09.010000"],["2024-07-24T07:59:10.010000"],["2024-07-24T07:59:11.010000"],["2024-07-24T07:59:12.010000"],["2024-07-24T07:59:13.010000"],["2024-07-24T07:59:14.010000"],["2024-07-24T07:59:15.010000"],["2024-07-24T07:59:16.010000"],["2024-07-24T07:59:17.010000"],["2024-07-24T07:59:18.010000"],["2024-07-24T07:59:19.010000"],["2024-07-24T07:59:20.010000"],["2024-07-24T07:59:21.010000"],["2024-07-24T07:59:22.010000"],["2024-07-24T07:59:23.010000"],["2024-07-24T07:59:24.010000"],["2024-07-24T07:59:25.010000"],["2024-07-24T07:59:26.010000"],["2024-07-24T07:59:27.010000"],["2024-07-24T07:59:28.010000"],["2024-07-24T07:59:29.010000"],["2024-07-24T07:59:30.010000"],["2024-07-24T07:59:31.010000"],["2024-07-24T07:59:32.010000"],["2024-07-24T07:59:33.010000"],["2024-07-24T07:59:34.010000"],["2024-07-24T07:59:35.010000"],["2024-07-24T07:59:36.010000"],["2024-07-24T07:59:37.010000"],["2024-07-24T07:59:38.010000"],["2024-07-24T07:59:39.010000"],["2024-07-24T07:59:40.010000"],["2024-07-24T07:59:41.010000"],["2024-07-24T07:59:42.010000"],["2024-07-24T07:59:43.010000"],["2024-07-24T07:59:44.010000"],["2024-07-24T07:59:45.010000"],["2024-07-24T07:59:46.010000"],["2024-07-24T07:59:47.010000"],["2024-07-24T07:59:48.010000"],["2024-07-24T07:59:49.010000"],["2024-07-24T07:59:50.010000"],["2024-07-24T07:59:51.010000"],["2024-07-24T07:59:52.010000"],["2024-07-24T07:59:53.010000"],["2024-07-24T07:59:54.010000"],["2024-07-24T07:59:55.010000"],["2024-07-24T07:59:56.010000"],["2024-07-24T07:59:57.010000"],["2024-07-24T07:59:58.010000"],["2024-07-24T07:59:59.010000"],["2024-07-24T08:00:00.010000"],["2024-07-24T08:00:01.010000"],["2024-07-24T08:00:02.010000"],["2024-07-24T08:00:03.010000"],["2024-07-24T08:00:04.010000"],["2024-07-24T08:00:05.010000"],["2024-07-24T08:00:06.010000"],["2024-07-24T08:00:07.010000"],["2024-07-24T08:00:08.010000"],["2024-07-24T08:00:09.010000"],["2024-07-24T08:00:10.010000"],["2024-07-24T08:00:11.010000"],["2024-07-24T08:00:12.010000"],["2024-07-24T08:00:13.010000"],["2024-07-24T08:00:14.010000"],["2024-07-24T08:00:15.010000"],["2024-07-24T08:00:16.010000"],["2024-07-24T08:00:17.010000"],["2024-07-24T08:00:18.010000"],["2024-07-24T08:00:19.010000"],["2024-07-24T08:00:20.010000"],["2024-07-24T08:00:21.010000"],["2024-07-24T08:00:22.010000"],["2024-07-24T08:00:23.010000"],["2024-07-24T08:00:24.010000"],["2024-07-24T08:00:25.010000"],["2024-07-24T08:00:26.010000"],["2024-07-24T08:00:27.010000"],["2024-07-24T08:00:28.010000"],["2024-07-24T08:00:29.010000"],["2024-07-24T08:00:30.010000"],["2024-07-24T08:00:31.010000"],["2024-07-24T08:00:32.010000"],["2024-07-24T08:00:33.010000"],["2024-07-24T08:00:34.010000"],["2024-07-24T08:00:35.010000"],["2024-07-24T08:00:36.010000"],["2024-07-24T08:00:37.010000"],["2024-07-24T08:00:38.010000"],["2024-07-24T08:00:39.010000"],["2024-07-24T08:00:40.010000"],["2024-07-24T08:00:41.010000"],["2024-07-24T08:00:42.010000"],["2024-07-24T08:00:43.010000"],["2024-07-24T08:00:44.010000"],["2024-07-24T08:00:45.010000"],["2024-07-24T08:00:46.010000"],["2024-07-24T08:00:47.010000"],["2024-07-24T08:00:48.010000"],["2024-07-24T08:00:49.010000"],["2024-07-24T08:00:50.010000"],["2024-07-24T08:00:51.010000"],["2024-07-24T08:00:52.010000"],["2024-07-24T08:00:53.010000"],["2024-07-24T08:00:54.010000"],["2024-07-24T08:00:55.010000"],["2024-07-24T08:00:56.010000"],["2024-07-24T08:00:57.010000"],["2024-07-24T08:00:58.010000"],["2024-07-24T08:00:59.010000"],["2024-07-24T08:01:00.010000"],["2024-07-24T08:01:01.010000"],["2024-07-24T08:01:02.010000"],["2024-07-24T08:01:03.010000"],["2024-07-24T08:01:04.010000"],["2024-07-24T08:01:05.010000"],["2024-07-24T08:01:06.010000"],["2024-07-24T08:01:07.010000"],["2024-07-24T08:01:08.010000"],["2024-07-24T08:01:09.010000"],["2024-07-24T08:01:10.010000"],["2024-07-24T08:01:11.010000"],["2024-07-24T08:01:12.010000"],["2024-07-24T08:01:13.010000"],["2024-07-24T08:01:14.010000"],["2024-07-24T08:01:15.010000"],["2024-07-24T08:01:16.010000"],["2024-07-24T08:01:17.010000"],["2024-07-24T08:01:18.010000"],["2024-07-24T08:01:19.010000"],["2024-07-24T08:01:20.010000"],["2024-07-24T08:01:21.010000"],["2024-07-24T08:01:22.010000"],["2024-07-24T08:01:23.010000"],["2024-07-24T08:01:24.010000"],["2024-07-24T08:01:25.010000"],["2024-07-24T08:01:26.010000"],["2024-07-24T08:01:27.010000"],["2024-07-24T08:01:28.010000"],["2024-07-24T08:01:29.010000"],["2024-07-24T08:01:30.010000"],["2024-07-24T08:01:31.010000"],["2024-07-24T08:01:32.010000"],["2024-07-24T08:01:33.010000"],["2024-07-24T08:01:34.010000"],["2024-07-24T08:01:35.010000"],["2024-07-24T08:01:36.010000"],["2024-07-24T08:01:37.010000"],["2024-07-24T08:01:38.010000"],["2024-07-24T08:01:39.010000"],["2024-07-24T08:01:40.010000"],["2024-07-24T08:01:41.010000"],["2024-07-24T08:01:42.010000"],["2024-07-24T08:01:43.010000"],["2024-07-24T08:01:44.010000"],["2024-07-24T08:01:45.010000"],["2024-07-24T08:01:46.010000"],["2024-07-24T08:01:47.010000"],["2024-07-24T08:01:48.010000"],["2024-07-24T08:01:49.010000"],["2024-07-24T08:01:50.010000"],["2024-07-24T08:01:51.010000"],["2024-07-24T08:01:52.010000"],["2024-07-24T08:01:53.010000"],["2024-07-24T08:01:54.010000"],["2024-07-24T08:01:55.010000"],["2024-07-24T08:01:56.010000"],["2024-07-24T08:01:57.010000"],["2024-07-24T08:01:58.010000"],["2024-07-24T08:01:59.010000"],["2024-07-24T08:02:00.010000"],["2024-07-24T08:02:01.010000"],["2024-07-24T08:02:02.010000"],["2024-07-24T08:02:03.010000"],["2024-07-24T08:02:04.010000"],["2024-07-24T08:02:05.010000"],["2024-07-24T08:02:06.010000"],["2024-07-24T08:02:07.010000"],["2024-07-24T08:02:08.010000"],["2024-07-24T08:02:09.010000"],["2024-07-24T08:02:10.010000"],["2024-07-24T08:02:11.010000"],["2024-07-24T08:02:12.010000"],["2024-07-24T08:02:13.010000"],["2024-07-24T08:02:14.010000"],["2024-07-24T08:02:15.010000"],["2024-07-24T08:02:16.010000"],["2024-07-24T08:02:17.010000"],["2024-07-24T08:02:18.010000"],["2024-07-24T08:02:19.010000"],["2024-07-24T08:02:20.010000"],["2024-07-24T08:02:21.010000"],["2024-07-24T08:02:22.010000"],["2024-07-24T08:02:23.010000"],["2024-07-24T08:02:24.010000"],["2024-07-24T08:02:25.010000"],["2024-07-24T08:02:26.010000"],["2024-07-24T08:02:27.010000"],["2024-07-24T08:02:28.010000"],["2024-07-24T08:02:29.010000"],["2024-07-24T08:02:30.010000"],["2024-07-24T08:02:31.010000"],["2024-07-24T08:02:32.010000"],["2024-07-24T08:02:33.010000"],["2024-07-24T08:02:34.010000"],["2024-07-24T08:02:35.010000"],["2024-07-24T08:02:36.010000"],["2024-07-24T08:02:37.010000"],["2024-07-24T08:02:38.010000"],["2024-07-24T08:02:39.010000"],["2024-07-24T08:02:40.010000"],["2024-07-24T08:02:41.010000"],["2024-07-24T08:02:42.010000"],["2024-07-24T08:02:43.010000"],["2024-07-24T08:02:44.010000"],["2024-07-24T08:02:45.010000"],["2024-07-24T08:02:46.010000"],["2024-07-24T08:02:47.010000"],["2024-07-24T08:02:48.010000"],["2024-07-24T08:02:49.010000"],["2024-07-24T08:02:50.010000"],["2024-07-24T08:02:51.010000"],["2024-07-24T08:02:52.010000"],["2024-07-24T08:02:53.010000"],["2024-07-24T08:02:54.010000"],["2024-07-24T08:02:55.010000"],["2024-07-24T08:02:56.010000"],["2024-07-24T08:02:57.010000"],["2024-07-24T08:02:58.010000"],["2024-07-24T08:02:59.010000"],["2024-07-24T08:03:00.010000"],["2024-07-24T08:03:01.010000"],["2024-07-24T08:03:02.010000"],["2024-07-24T08:03:03.010000"],["2024-07-24T08:03:04.010000"],["2024-07-24T08:03:05.010000"],["2024-07-24T08:03:06.010000"],["2024-07-24T08:03:07.010000"],["2024-07-24T08:03:08.010000"],["2024-07-24T08:03:09.010000"],["2024-07-24T08:03:10.010000"],["2024-07-24T08:03:11.010000"],["2024-07-24T08:03:12.010000"],["2024-07-24T08:03:13.010000"],["2024-07-24T08:03:14.010000"],["2024-07-24T08:03:15.010000"],["2024-07-24T08:03:16.010000"],["2024-07-24T08:03:17.010000"],["2024-07-24T08:03:18.010000"],["2024-07-24T08:03:19.010000"],["2024-07-24T08:03:20.010000"],["2024-07-24T08:03:21.010000"],["2024-07-24T08:03:22.010000"],["2024-07-24T08:03:23.010000"],["2024-07-24T08:03:24.010000"],["2024-07-24T08:03:25.010000"],["2024-07-24T08:03:26.010000"],["2024-07-24T08:03:27.010000"],["2024-07-24T08:03:28.010000"],["2024-07-24T08:03:29.010000"],["2024-07-24T08:03:30.010000"],["2024-07-24T08:03:31.010000"],["2024-07-24T08:03:32.010000"],["2024-07-24T08:03:33.010000"],["2024-07-24T08:03:34.010000"],["2024-07-24T08:03:35.010000"],["2024-07-24T08:03:36.010000"],["2024-07-24T08:03:37.010000"],["2024-07-24T08:03:38.010000"],["2024-07-24T08:03:39.010000"],["2024-07-24T08:03:40.010000"],["2024-07-24T08:03:41.010000"],["2024-07-24T08:03:42.010000"],["2024-07-24T08:03:43.010000"],["2024-07-24T08:03:44.010000"],["2024-07-24T08:03:45.010000"],["2024-07-24T08:03:46.010000"],["2024-07-24T08:03:47.010000"],["2024-07-24T08:03:48.010000"],["2024-07-24T08:03:49.010000"],["2024-07-24T08:03:50.010000"],["2024-07-24T08:03:51.010000"],["2024-07-24T08:03:52.010000"],["2024-07-24T08:03:53.010000"],["2024-07-24T08:03:54.010000"],["2024-07-24T08:03:55.010000"],["2024-07-24T08:03:56.010000"],["2024-07-24T08:03:57.010000"],["2024-07-24T08:03:58.010000"],["2024-07-24T08:03:59.010000"],["2024-07-24T08:04:00.010000"],["2024-07-24T08:04:01.010000"],["2024-07-24T08:04:02.010000"],["2024-07-24T08:04:03.010000"],["2024-07-24T08:04:04.010000"],["2024-07-24T08:04:05.010000"],["2024-07-24T08:04:06.010000"],["2024-07-24T08:04:07.010000"],["2024-07-24T08:04:08.010000"],["2024-07-24T08:04:09.010000"],["2024-07-24T08:04:10.010000"],["2024-07-24T08:04:11.010000"],["2024-07-24T08:04:12.010000"],["2024-07-24T08:04:13.010000"],["2024-07-24T08:04:14.010000"],["2024-07-24T08:04:15.010000"],["2024-07-24T08:04:16.010000"],["2024-07-24T08:04:17.010000"],["2024-07-24T08:04:18.010000"],["2024-07-24T08:04:19.010000"],["2024-07-24T08:04:20.010000"],["2024-07-24T08:04:21.010000"],["2024-07-24T08:04:22.010000"],["2024-07-24T08:04:23.010000"],["2024-07-24T08:04:24.010000"],["2024-07-24T08:04:25.010000"],["2024-07-24T08:04:26.010000"],["2024-07-24T08:04:27.010000"],["2024-07-24T08:04:28.010000"],["2024-07-24T08:04:29.010000"],["2024-07-24T08:04:30.010000"],["2024-07-24T08:04:31.010000"],["2024-07-24T08:04:32.010000"],["2024-07-24T08:04:33.010000"],["2024-07-24T08:04:34.010000"],["2024-07-24T08:04:35.010000"],["2024-07-24T08:04:36.010000"],["2024-07-24T08:04:37.010000"],["2024-07-24T08:04:38.010000"],["2024-07-24T08:04:39.010000"],["2024-07-24T08:04:40.010000"],["2024-07-24T08:04:41.010000"],["2024-07-24T08:04:42.010000"],["2024-07-24T08:04:43.010000"],["2024-07-24T08:04:44.010000"],["2024-07-24T08:04:45.010000"],["2024-07-24T08:04:46.010000"],["2024-07-24T08:04:47.010000"],["2024-07-24T08:04:48.010000"],["2024-07-24T08:04:49.010000"],["2024-07-24T08:04:50.010000"],["2024-07-24T08:04:51.010000"],["2024-07-24T08:04:52.010000"],["2024-07-24T08:04:53.010000"],["2024-07-24T08:04:54.010000"],["2024-07-24T08:04:55.010000"],["2024-07-24T08:04:56.010000"],["2024-07-24T08:04:57.010000"],["2024-07-24T08:04:58.010000"],["2024-07-24T08:04:59.010000"],["2024-07-24T08:05:00.010000"],["2024-07-24T08:05:01.010000"],["2024-07-24T08:05:02.010000"],["2024-07-24T08:05:03.010000"],["2024-07-24T08:05:04.010000"],["2024-07-24T08:05:05.010000"],["2024-07-24T08:05:06.010000"],["2024-07-24T08:05:07.010000"],["2024-07-24T08:05:08.010000"],["2024-07-24T08:05:09.010000"],["2024-07-24T08:05:10.010000"],["2024-07-24T08:05:11.010000"],["2024-07-24T08:05:12.010000"],["2024-07-24T08:05:13.010000"],["2024-07-24T08:05:14.010000"],["2024-07-24T08:05:15.010000"],["2024-07-24T08:05:16.010000"],["2024-07-24T08:05:17.010000"],["2024-07-24T08:05:18.010000"],["2024-07-24T08:05:19.010000"],["2024-07-24T08:05:20.010000"],["2024-07-24T08:05:21.010000"],["2024-07-24T08:05:22.010000"],["2024-07-24T08:05:23.010000"],["2024-07-24T08:05:24.010000"],["2024-07-24T08:05:25.010000"],["2024-07-24T08:05:26.010000"],["2024-07-24T08:05:27.010000"],["2024-07-24T08:05:28.010000"],["2024-07-24T08:05:29.010000"],["2024-07-24T08:05:30.010000"],["2024-07-24T08:05:31.010000"],["2024-07-24T08:05:32.010000"],["2024-07-24T08:05:33.010000"],["2024-07-24T08:05:34.010000"],["2024-07-24T08:05:35.010000"],["2024-07-24T08:05:36.010000"],["2024-07-24T08:05:37.010000"],["2024-07-24T08:05:38.010000"],["2024-07-24T08:05:39.010000"],["2024-07-24T08:05:40.010000"],["2024-07-24T08:05:41.010000"],["2024-07-24T08:05:42.010000"],["2024-07-24T08:05:43.010000"],["2024-07-24T08:05:44.010000"],["2024-07-24T08:05:45.010000"],["2024-07-24T08:05:46.010000"],["2024-07-24T08:05:47.010000"],["2024-07-24T08:05:48.010000"],["2024-07-24T08:05:49.010000"],["2024-07-24T08:05:50.010000"],["2024-07-24T08:05:51.010000"],["2024-07-24T08:05:52.010000"],["2024-07-24T08:05:53.010000"],["2024-07-24T08:05:54.010000"],["2024-07-24T08:05:55.010000"],["2024-07-24T08:05:56.010000"],["2024-07-24T08:05:57.010000"],["2024-07-24T08:05:58.010000"],["2024-07-24T08:05:59.010000"],["2024-07-24T08:06:00.010000"],["2024-07-24T08:06:01.010000"],["2024-07-24T08:06:02.010000"],["2024-07-24T08:06:03.010000"],["2024-07-24T08:06:04.010000"],["2024-07-24T08:06:05.010000"],["2024-07-24T08:06:06.010000"],["2024-07-24T08:06:07.010000"],["2024-07-24T08:06:08.010000"],["2024-07-24T08:06:09.010000"],["2024-07-24T08:06:10.010000"],["2024-07-24T08:06:11.010000"],["2024-07-24T08:06:12.010000"],["2024-07-24T08:06:13.010000"],["2024-07-24T08:06:14.010000"],["2024-07-24T08:06:15.010000"],["2024-07-24T08:06:16.010000"],["2024-07-24T08:06:17.010000"],["2024-07-24T08:06:18.010000"],["2024-07-24T08:06:19.010000"],["2024-07-24T08:06:20.010000"],["2024-07-24T08:06:21.010000"],["2024-07-24T08:06:22.010000"],["2024-07-24T08:06:23.010000"],["2024-07-24T08:06:24.010000"],["2024-07-24T08:06:25.010000"],["2024-07-24T08:06:26.010000"],["2024-07-24T08:06:27.010000"],["2024-07-24T08:06:28.010000"],["2024-07-24T08:06:29.010000"],["2024-07-24T08:06:30.010000"],["2024-07-24T08:06:31.010000"],["2024-07-24T08:06:32.010000"],["2024-07-24T08:06:33.010000"],["2024-07-24T08:06:34.010000"],["2024-07-24T08:06:35.010000"],["2024-07-24T08:06:36.010000"],["2024-07-24T08:06:37.010000"],["2024-07-24T08:06:38.010000"],["2024-07-24T08:06:39.010000"],["2024-07-24T08:06:40.010000"],["2024-07-24T08:06:41.010000"],["2024-07-24T08:06:42.010000"],["2024-07-24T08:06:43.010000"],["2024-07-24T08:06:44.010000"],["2024-07-24T08:06:45.010000"],["2024-07-24T08:06:46.010000"],["2024-07-24T08:06:47.010000"],["2024-07-24T08:06:48.010000"],["2024-07-24T08:06:49.010000"],["2024-07-24T08:06:50.010000"],["2024-07-24T08:06:51.010000"],["2024-07-24T08:06:52.010000"],["2024-07-24T08:06:53.010000"],["2024-07-24T08:06:54.010000"],["2024-07-24T08:06:55.010000"],["2024-07-24T08:06:56.010000"],["2024-07-24T08:06:57.010000"],["2024-07-24T08:06:58.010000"],["2024-07-24T08:06:59.010000"],["2024-07-24T08:07:00.010000"],["2024-07-24T08:07:01.010000"],["2024-07-24T08:07:02.010000"],["2024-07-24T08:07:03.010000"],["2024-07-24T08:07:04.010000"],["2024-07-24T08:07:05.010000"],["2024-07-24T08:07:06.010000"],["2024-07-24T08:07:07.010000"],["2024-07-24T08:07:08.010000"],["2024-07-24T08:07:09.010000"],["2024-07-24T08:07:10.010000"],["2024-07-24T08:07:11.010000"],["2024-07-24T08:07:12.010000"],["2024-07-24T08:07:13.010000"],["2024-07-24T08:07:14.010000"],["2024-07-24T08:07:15.010000"],["2024-07-24T08:07:16.010000"],["2024-07-24T08:07:17.010000"],["2024-07-24T08:07:18.010000"],["2024-07-24T08:07:19.010000"],["2024-07-24T08:07:20.010000"],["2024-07-24T08:07:21.010000"],["2024-07-24T08:07:22.010000"],["2024-07-24T08:07:23.010000"],["2024-07-24T08:07:24.010000"],["2024-07-24T08:07:25.010000"],["2024-07-24T08:07:26.010000"],["2024-07-24T08:07:27.010000"],["2024-07-24T08:07:28.010000"],["2024-07-24T08:07:29.010000"],["2024-07-24T08:07:30.010000"],["2024-07-24T08:07:31.010000"],["2024-07-24T08:07:32.010000"],["2024-07-24T08:07:33.010000"],["2024-07-24T08:07:34.010000"],["2024-07-24T08:07:35.010000"],["2024-07-24T08:07:36.010000"],["2024-07-24T08:07:37.010000"],["2024-07-24T08:07:38.010000"],["2024-07-24T08:07:39.010000"],["2024-07-24T08:07:40.010000"],["2024-07-24T08:07:41.010000"],["2024-07-24T08:07:42.010000"],["2024-07-24T08:07:43.010000"],["2024-07-24T08:07:44.010000"],["2024-07-24T08:07:45.010000"],["2024-07-24T08:07:46.010000"],["2024-07-24T08:07:47.010000"],["2024-07-24T08:07:48.010000"],["2024-07-24T08:07:49.010000"],["2024-07-24T08:07:50.010000"],["2024-07-24T08:07:51.010000"],["2024-07-24T08:07:52.010000"],["2024-07-24T08:07:53.010000"],["2024-07-24T08:07:54.010000"],["2024-07-24T08:07:55.010000"],["2024-07-24T08:07:56.010000"],["2024-07-24T08:07:57.010000"],["2024-07-24T08:07:58.010000"],["2024-07-24T08:07:59.010000"],["2024-07-24T08:08:00.010000"],["2024-07-24T08:08:01.010000"],["2024-07-24T08:08:02.010000"],["2024-07-24T08:08:03.010000"],["2024-07-24T08:08:04.010000"],["2024-07-24T08:08:05.010000"],["2024-07-24T08:08:06.010000"],["2024-07-24T08:08:07.010000"],["2024-07-24T08:08:08.010000"],["2024-07-24T08:08:09.010000"],["2024-07-24T08:08:10.010000"],["2024-07-24T08:08:11.010000"],["2024-07-24T08:08:12.010000"],["2024-07-24T08:08:13.010000"],["2024-07-24T08:08:14.010000"],["2024-07-24T08:08:15.010000"],["2024-07-24T08:08:16.010000"],["2024-07-24T08:08:17.010000"],["2024-07-24T08:08:18.010000"],["2024-07-24T08:08:19.010000"],["2024-07-24T08:08:20.010000"],["2024-07-24T08:08:21.010000"],["2024-07-24T08:08:22.010000"],["2024-07-24T08:08:23.010000"],["2024-07-24T08:08:24.010000"],["2024-07-24T08:08:25.010000"],["2024-07-24T08:08:26.010000"],["2024-07-24T08:08:27.010000"],["2024-07-24T08:08:28.010000"],["2024-07-24T08:08:29.010000"],["2024-07-24T08:08:30.010000"],["2024-07-24T08:08:31.010000"],["2024-07-24T08:08:32.010000"],["2024-07-24T08:08:33.010000"],["2024-07-24T08:08:34.010000"],["2024-07-24T08:08:35.010000"],["2024-07-24T08:08:36.010000"],["2024-07-24T08:08:37.010000"],["2024-07-24T08:08:38.010000"],["2024-07-24T08:08:39.010000"],["2024-07-24T08:08:40.010000"],["2024-07-24T08:08:41.010000"],["2024-07-24T08:08:42.010000"],["2024-07-24T08:08:43.010000"],["2024-07-24T08:08:44.010000"],["2024-07-24T08:08:45.010000"],["2024-07-24T08:08:46.010000"],["2024-07-24T08:08:47.010000"],["2024-07-24T08:08:48.010000"],["2024-07-24T08:08:49.010000"],["2024-07-24T08:08:50.010000"],["2024-07-24T08:08:51.010000"],["2024-07-24T08:08:52.010000"],["2024-07-24T08:08:53.010000"],["2024-07-24T08:08:54.010000"],["2024-07-24T08:08:55.010000"],["2024-07-24T08:08:56.010000"],["2024-07-24T08:08:57.010000"],["2024-07-24T08:08:58.010000"],["2024-07-24T08:08:59.010000"],["2024-07-24T08:09:00.010000"],["2024-07-24T08:09:01.010000"],["2024-07-24T08:09:02.010000"],["2024-07-24T08:09:03.010000"],["2024-07-24T08:09:04.010000"],["2024-07-24T08:09:05.010000"],["2024-07-24T08:09:06.010000"],["2024-07-24T08:09:07.010000"],["2024-07-24T08:09:08.010000"],["2024-07-24T08:09:09.010000"],["2024-07-24T08:09:10.010000"],["2024-07-24T08:09:11.010000"],["2024-07-24T08:09:12.010000"],["2024-07-24T08:09:13.010000"],["2024-07-24T08:09:14.010000"],["2024-07-24T08:09:15.010000"],["2024-07-24T08:09:16.010000"],["2024-07-24T08:09:17.010000"],["2024-07-24T08:09:18.010000"],["2024-07-24T08:09:19.010000"],["2024-07-24T08:09:20.010000"],["2024-07-24T08:09:21.010000"],["2024-07-24T08:09:22.010000"],["2024-07-24T08:09:23.010000"],["2024-07-24T08:09:24.010000"],["2024-07-24T08:09:25.010000"],["2024-07-24T08:09:26.010000"],["2024-07-24T08:09:27.010000"],["2024-07-24T08:09:28.010000"],["2024-07-24T08:09:29.010000"],["2024-07-24T08:09:30.010000"],["2024-07-24T08:09:31.010000"],["2024-07-24T08:09:32.010000"],["2024-07-24T08:09:33.010000"],["2024-07-24T08:09:34.010000"],["2024-07-24T08:09:35.010000"],["2024-07-24T08:09:36.010000"],["2024-07-24T08:09:37.010000"],["2024-07-24T08:09:38.010000"],["2024-07-24T08:09:39.010000"],["2024-07-24T08:09:40.010000"],["2024-07-24T08:09:41.010000"],["2024-07-24T08:09:42.010000"],["2024-07-24T08:09:43.010000"],["2024-07-24T08:09:44.010000"],["2024-07-24T08:09:45.010000"],["2024-07-24T08:09:46.010000"],["2024-07-24T08:09:47.010000"],["2024-07-24T08:09:48.010000"],["2024-07-24T08:09:49.010000"],["2024-07-24T08:09:50.010000"],["2024-07-24T08:09:51.010000"],["2024-07-24T08:09:52.010000"],["2024-07-24T08:09:53.010000"],["2024-07-24T08:09:54.010000"],["2024-07-24T08:09:55.010000"],["2024-07-24T08:09:56.010000"],["2024-07-24T08:09:57.010000"],["2024-07-24T08:09:58.010000"],["2024-07-24T08:09:59.010000"],["2024-07-24T08:10:00.010000"],["2024-07-24T08:10:01.010000"],["2024-07-24T08:10:02.010000"],["2024-07-24T08:10:03.010000"],["2024-07-24T08:10:04.010000"],["2024-07-24T08:10:05.010000"],["2024-07-24T08:10:06.010000"],["2024-07-24T08:10:07.010000"],["2024-07-24T08:10:08.010000"],["2024-07-24T08:10:09.010000"],["2024-07-24T08:10:10.010000"],["2024-07-24T08:10:11.010000"],["2024-07-24T08:10:12.010000"],["2024-07-24T08:10:13.010000"],["2024-07-24T08:10:14.010000"],["2024-07-24T08:10:15.010000"],["2024-07-24T08:10:16.010000"],["2024-07-24T08:10:17.010000"],["2024-07-24T08:10:18.010000"],["2024-07-24T08:10:19.010000"],["2024-07-24T08:10:20.010000"],["2024-07-24T08:10:21.010000"],["2024-07-24T08:10:22.010000"],["2024-07-24T08:10:23.010000"],["2024-07-24T08:10:24.010000"],["2024-07-24T08:10:25.010000"],["2024-07-24T08:10:26.010000"],["2024-07-24T08:10:27.010000"],["2024-07-24T08:10:28.010000"],["2024-07-24T08:10:29.010000"],["2024-07-24T08:10:30.010000"],["2024-07-24T08:10:31.010000"],["2024-07-24T08:10:32.010000"],["2024-07-24T08:10:33.010000"],["2024-07-24T08:10:34.010000"],["2024-07-24T08:10:35.010000"],["2024-07-24T08:10:36.010000"],["2024-07-24T08:10:37.010000"],["2024-07-24T08:10:38.010000"],["2024-07-24T08:10:39.010000"],["2024-07-24T08:10:40.010000"],["2024-07-24T08:10:41.010000"],["2024-07-24T08:10:42.010000"],["2024-07-24T08:10:43.010000"],["2024-07-24T08:10:44.010000"],["2024-07-24T08:10:45.010000"],["2024-07-24T08:10:46.010000"],["2024-07-24T08:10:47.010000"],["2024-07-24T08:10:48.010000"],["2024-07-24T08:10:49.010000"],["2024-07-24T08:10:50.010000"],["2024-07-24T08:10:51.010000"],["2024-07-24T08:10:52.010000"],["2024-07-24T08:10:53.010000"],["2024-07-24T08:10:54.010000"],["2024-07-24T08:10:55.010000"],["2024-07-24T08:10:56.010000"],["2024-07-24T08:10:57.010000"],["2024-07-24T08:10:58.010000"],["2024-07-24T08:10:59.010000"],["2024-07-24T08:11:00.010000"],["2024-07-24T08:11:01.010000"],["2024-07-24T08:11:02.010000"],["2024-07-24T08:11:03.010000"],["2024-07-24T08:11:04.010000"],["2024-07-24T08:11:05.010000"],["2024-07-24T08:11:06.010000"],["2024-07-24T08:11:07.010000"],["2024-07-24T08:11:08.010000"],["2024-07-24T08:11:09.010000"],["2024-07-24T08:11:10.010000"],["2024-07-24T08:11:11.010000"],["2024-07-24T08:11:12.010000"],["2024-07-24T08:11:13.010000"],["2024-07-24T08:11:14.010000"],["2024-07-24T08:11:15.010000"],["2024-07-24T08:11:16.010000"],["2024-07-24T08:11:17.010000"],["2024-07-24T08:11:18.010000"],["2024-07-24T08:11:19.010000"],["2024-07-24T08:11:20.010000"],["2024-07-24T08:11:21.010000"],["2024-07-24T08:11:22.010000"],["2024-07-24T08:11:23.010000"],["2024-07-24T08:11:24.010000"],["2024-07-24T08:11:25.010000"],["2024-07-24T08:11:26.010000"],["2024-07-24T08:11:27.010000"],["2024-07-24T08:11:28.010000"],["2024-07-24T08:11:29.010000"],["2024-07-24T08:11:30.010000"],["2024-07-24T08:11:31.010000"],["2024-07-24T08:11:32.010000"],["2024-07-24T08:11:33.010000"],["2024-07-24T08:11:34.010000"],["2024-07-24T08:11:35.010000"],["2024-07-24T08:11:36.010000"],["2024-07-24T08:11:37.010000"],["2024-07-24T08:11:38.010000"],["2024-07-24T08:11:39.010000"],["2024-07-24T08:11:40.010000"],["2024-07-24T08:11:41.010000"],["2024-07-24T08:11:42.010000"],["2024-07-24T08:11:43.010000"],["2024-07-24T08:11:44.010000"],["2024-07-24T08:11:45.010000"],["2024-07-24T08:11:46.010000"],["2024-07-24T08:11:47.010000"],["2024-07-24T08:11:48.010000"],["2024-07-24T08:11:49.010000"],["2024-07-24T08:11:50.010000"],["2024-07-24T08:11:51.010000"],["2024-07-24T08:11:52.010000"],["2024-07-24T08:11:53.010000"],["2024-07-24T08:11:54.010000"],["2024-07-24T08:11:55.010000"],["2024-07-24T08:11:56.010000"],["2024-07-24T08:11:57.010000"],["2024-07-24T08:11:58.010000"],["2024-07-24T08:11:59.010000"],["2024-07-24T08:12:00.010000"],["2024-07-24T08:12:01.010000"],["2024-07-24T08:12:02.010000"],["2024-07-24T08:12:03.010000"],["2024-07-24T08:12:04.010000"],["2024-07-24T08:12:05.010000"],["2024-07-24T08:12:06.010000"],["2024-07-24T08:12:07.010000"],["2024-07-24T08:12:08.010000"],["2024-07-24T08:12:09.010000"],["2024-07-24T08:12:10.010000"],["2024-07-24T08:12:11.010000"],["2024-07-24T08:12:12.010000"],["2024-07-24T08:12:13.010000"],["2024-07-24T08:12:14.010000"],["2024-07-24T08:12:15.010000"],["2024-07-24T08:12:16.010000"],["2024-07-24T08:12:17.010000"],["2024-07-24T08:12:18.010000"],["2024-07-24T08:12:19.010000"],["2024-07-24T08:12:20.010000"],["2024-07-24T08:12:21.010000"],["2024-07-24T08:12:22.010000"],["2024-07-24T08:12:23.010000"],["2024-07-24T08:12:24.010000"],["2024-07-24T08:12:25.010000"],["2024-07-24T08:12:26.010000"],["2024-07-24T08:12:27.010000"],["2024-07-24T08:12:28.010000"],["2024-07-24T08:12:29.010000"],["2024-07-24T08:12:30.010000"],["2024-07-24T08:12:31.010000"],["2024-07-24T08:12:32.010000"],["2024-07-24T08:12:33.010000"],["2024-07-24T08:12:34.010000"],["2024-07-24T08:12:35.010000"],["2024-07-24T08:12:36.010000"],["2024-07-24T08:12:37.010000"],["2024-07-24T08:12:38.010000"],["2024-07-24T08:12:39.010000"],["2024-07-24T08:12:40.010000"],["2024-07-24T08:12:41.010000"],["2024-07-24T08:12:42.010000"],["2024-07-24T08:12:43.010000"],["2024-07-24T08:12:44.010000"],["2024-07-24T08:12:45.010000"],["2024-07-24T08:12:46.010000"],["2024-07-24T08:12:47.010000"],["2024-07-24T08:12:48.010000"],["2024-07-24T08:12:49.010000"],["2024-07-24T08:12:50.010000"],["2024-07-24T08:12:51.010000"],["2024-07-24T08:12:52.010000"],["2024-07-24T08:12:53.010000"],["2024-07-24T08:12:54.010000"],["2024-07-24T08:12:55.010000"],["2024-07-24T08:12:56.010000"],["2024-07-24T08:12:57.010000"],["2024-07-24T08:12:58.010000"],["2024-07-24T08:12:59.010000"],["2024-07-24T08:13:00.010000"],["2024-07-24T08:13:01.010000"],["2024-07-24T08:13:02.010000"],["2024-07-24T08:13:03.010000"],["2024-07-24T08:13:04.010000"],["2024-07-24T08:13:05.010000"],["2024-07-24T08:13:06.010000"],["2024-07-24T08:13:07.010000"],["2024-07-24T08:13:08.010000"],["2024-07-24T08:13:09.010000"],["2024-07-24T08:13:10.010000"],["2024-07-24T08:13:11.010000"],["2024-07-24T08:13:12.010000"],["2024-07-24T08:13:13.010000"],["2024-07-24T08:13:14.010000"],["2024-07-24T08:13:15.010000"],["2024-07-24T08:13:16.010000"],["2024-07-24T08:13:17.010000"],["2024-07-24T08:13:18.010000"],["2024-07-24T08:13:19.010000"],["2024-07-24T08:13:20.010000"],["2024-07-24T08:13:21.010000"],["2024-07-24T08:13:22.010000"],["2024-07-24T08:13:23.010000"],["2024-07-24T08:13:24.010000"],["2024-07-24T08:13:25.010000"],["2024-07-24T08:13:26.010000"],["2024-07-24T08:13:27.010000"],["2024-07-24T08:13:28.010000"],["2024-07-24T08:13:29.010000"],["2024-07-24T08:13:30.010000"],["2024-07-24T08:13:31.010000"],["2024-07-24T08:13:32.010000"],["2024-07-24T08:13:33.010000"],["2024-07-24T08:13:34.010000"],["2024-07-24T08:13:35.010000"],["2024-07-24T08:13:36.010000"],["2024-07-24T08:13:37.010000"],["2024-07-24T08:13:38.010000"],["2024-07-24T08:13:39.010000"],["2024-07-24T08:13:40.010000"],["2024-07-24T08:13:41.010000"],["2024-07-24T08:13:42.010000"],["2024-07-24T08:13:43.010000"],["2024-07-24T08:13:44.010000"],["2024-07-24T08:13:45.010000"],["2024-07-24T08:13:46.010000"],["2024-07-24T08:13:47.010000"],["2024-07-24T08:13:48.010000"],["2024-07-24T08:13:49.010000"],["2024-07-24T08:13:50.010000"],["2024-07-24T08:13:51.010000"],["2024-07-24T08:13:52.010000"],["2024-07-24T08:13:53.010000"],["2024-07-24T08:13:54.010000"],["2024-07-24T08:13:55.010000"],["2024-07-24T08:13:56.010000"],["2024-07-24T08:13:57.010000"],["2024-07-24T08:13:58.010000"],["2024-07-24T08:13:59.010000"],["2024-07-24T08:14:00.010000"],["2024-07-24T08:14:01.010000"],["2024-07-24T08:14:02.010000"],["2024-07-24T08:14:03.010000"],["2024-07-24T08:14:04.010000"],["2024-07-24T08:14:05.010000"],["2024-07-24T08:14:06.010000"],["2024-07-24T08:14:07.010000"],["2024-07-24T08:14:08.010000"],["2024-07-24T08:14:09.010000"],["2024-07-24T08:14:10.010000"],["2024-07-24T08:14:11.010000"],["2024-07-24T08:14:12.010000"],["2024-07-24T08:14:13.010000"],["2024-07-24T08:14:14.010000"],["2024-07-24T08:14:15.010000"],["2024-07-24T08:14:16.010000"],["2024-07-24T08:14:17.010000"],["2024-07-24T08:14:18.010000"],["2024-07-24T08:14:19.010000"],["2024-07-24T08:14:20.010000"],["2024-07-24T08:14:21.010000"],["2024-07-24T08:14:22.010000"],["2024-07-24T08:14:23.010000"],["2024-07-24T08:14:24.010000"],["2024-07-24T08:14:25.010000"],["2024-07-24T08:14:26.010000"],["2024-07-24T08:14:27.010000"],["2024-07-24T08:14:28.010000"],["2024-07-24T08:14:29.010000"],["2024-07-24T08:14:30.010000"],["2024-07-24T08:14:31.010000"],["2024-07-24T08:14:32.010000"],["2024-07-24T08:14:33.010000"],["2024-07-24T08:14:34.010000"],["2024-07-24T08:14:35.010000"],["2024-07-24T08:14:36.010000"],["2024-07-24T08:14:37.010000"],["2024-07-24T08:14:38.010000"],["2024-07-24T08:14:39.010000"],["2024-07-24T08:14:40.010000"],["2024-07-24T08:14:41.010000"],["2024-07-24T08:14:42.010000"],["2024-07-24T08:14:43.010000"],["2024-07-24T08:14:44.010000"],["2024-07-24T08:14:45.010000"],["2024-07-24T08:14:46.010000"],["2024-07-24T08:14:47.010000"],["2024-07-24T08:14:48.010000"],["2024-07-24T08:14:49.010000"],["2024-07-24T08:14:50.010000"],["2024-07-24T08:14:51.010000"],["2024-07-24T08:14:52.010000"],["2024-07-24T08:14:53.010000"],["2024-07-24T08:14:54.010000"],["2024-07-24T08:14:55.010000"],["2024-07-24T08:14:56.010000"],["2024-07-24T08:14:57.010000"],["2024-07-24T08:14:58.010000"],["2024-07-24T08:14:59.010000"],["2024-07-24T08:15:00.010000"],["2024-07-24T08:15:01.010000"],["2024-07-24T08:15:02.010000"],["2024-07-24T08:15:03.010000"],["2024-07-24T08:15:04.010000"],["2024-07-24T08:15:05.010000"],["2024-07-24T08:15:06.010000"],["2024-07-24T08:15:07.010000"],["2024-07-24T08:15:08.010000"],["2024-07-24T08:15:09.010000"],["2024-07-24T08:15:10.010000"],["2024-07-24T08:15:11.010000"],["2024-07-24T08:15:12.010000"],["2024-07-24T08:15:13.010000"],["2024-07-24T08:15:14.010000"],["2024-07-24T08:15:15.010000"],["2024-07-24T08:15:16.010000"],["2024-07-24T08:15:17.010000"],["2024-07-24T08:15:18.010000"],["2024-07-24T08:15:19.010000"],["2024-07-24T08:15:20.010000"],["2024-07-24T08:15:21.010000"],["2024-07-24T08:15:22.010000"],["2024-07-24T08:15:23.010000"],["2024-07-24T08:15:24.010000"],["2024-07-24T08:15:25.010000"],["2024-07-24T08:15:26.010000"],["2024-07-24T08:15:27.010000"],["2024-07-24T08:15:28.010000"],["2024-07-24T08:15:29.010000"],["2024-07-24T08:15:30.010000"],["2024-07-24T08:15:31.010000"],["2024-07-24T08:15:32.010000"],["2024-07-24T08:15:33.010000"],["2024-07-24T08:15:34.010000"],["2024-07-24T08:15:35.010000"],["2024-07-24T08:15:36.010000"],["2024-07-24T08:15:37.010000"],["2024-07-24T08:15:38.010000"],["2024-07-24T08:15:39.010000"],["2024-07-24T08:15:40.010000"],["2024-07-24T08:15:41.010000"],["2024-07-24T08:15:42.010000"],["2024-07-24T08:15:43.010000"],["2024-07-24T08:15:44.010000"],["2024-07-24T08:15:45.010000"],["2024-07-24T08:15:46.010000"],["2024-07-24T08:15:47.010000"],["2024-07-24T08:15:48.010000"],["2024-07-24T08:15:49.010000"],["2024-07-24T08:15:50.010000"],["2024-07-24T08:15:51.010000"],["2024-07-24T08:15:52.010000"],["2024-07-24T08:15:53.010000"],["2024-07-24T08:15:54.010000"],["2024-07-24T08:15:55.010000"],["2024-07-24T08:15:56.010000"],["2024-07-24T08:15:57.010000"],["2024-07-24T08:15:58.010000"],["2024-07-24T08:15:59.010000"],["2024-07-24T08:16:00.010000"],["2024-07-24T08:16:01.010000"],["2024-07-24T08:16:02.010000"],["2024-07-24T08:16:03.010000"],["2024-07-24T08:16:04.010000"],["2024-07-24T08:16:05.010000"],["2024-07-24T08:16:06.010000"],["2024-07-24T08:16:07.010000"],["2024-07-24T08:16:08.010000"],["2024-07-24T08:16:09.010000"],["2024-07-24T08:16:10.010000"],["2024-07-24T08:16:11.010000"],["2024-07-24T08:16:12.010000"],["2024-07-24T08:16:13.010000"],["2024-07-24T08:16:14.010000"],["2024-07-24T08:16:15.010000"],["2024-07-24T08:16:16.010000"],["2024-07-24T08:16:17.010000"],["2024-07-24T08:16:18.010000"],["2024-07-24T08:16:19.010000"],["2024-07-24T08:16:20.010000"],["2024-07-24T08:16:21.010000"],["2024-07-24T08:16:22.010000"],["2024-07-24T08:16:23.010000"],["2024-07-24T08:16:24.010000"],["2024-07-24T08:16:25.010000"],["2024-07-24T08:16:26.010000"],["2024-07-24T08:16:27.010000"],["2024-07-24T08:16:28.010000"],["2024-07-24T08:16:29.010000"],["2024-07-24T08:16:30.010000"],["2024-07-24T08:16:31.010000"],["2024-07-24T08:16:32.010000"],["2024-07-24T08:16:33.010000"],["2024-07-24T08:16:34.010000"],["2024-07-24T08:16:35.010000"],["2024-07-24T08:16:36.010000"],["2024-07-24T08:16:37.010000"],["2024-07-24T08:16:38.010000"],["2024-07-24T08:16:39.010000"],["2024-07-24T08:16:40.010000"],["2024-07-24T08:16:41.010000"],["2024-07-24T08:16:42.010000"],["2024-07-24T08:16:43.010000"],["2024-07-24T08:16:44.010000"],["2024-07-24T08:16:45.010000"],["2024-07-24T08:16:46.010000"],["2024-07-24T08:16:47.010000"],["2024-07-24T08:16:48.010000"],["2024-07-24T08:16:49.010000"],["2024-07-24T08:16:50.010000"],["2024-07-24T08:16:51.010000"],["2024-07-24T08:16:52.010000"],["2024-07-24T08:16:53.010000"],["2024-07-24T08:16:54.010000"],["2024-07-24T08:16:55.010000"],["2024-07-24T08:16:56.010000"],["2024-07-24T08:16:57.010000"],["2024-07-24T08:16:58.010000"],["2024-07-24T08:16:59.010000"],["2024-07-24T08:17:00.010000"],["2024-07-24T08:17:01.010000"],["2024-07-24T08:17:02.010000"],["2024-07-24T08:17:03.010000"],["2024-07-24T08:17:04.010000"],["2024-07-24T08:17:05.010000"],["2024-07-24T08:17:06.010000"],["2024-07-24T08:17:07.010000"],["2024-07-24T08:17:08.010000"],["2024-07-24T08:17:09.010000"],["2024-07-24T08:17:10.010000"],["2024-07-24T08:17:11.010000"],["2024-07-24T08:17:12.010000"],["2024-07-24T08:17:13.010000"],["2024-07-24T08:17:14.010000"],["2024-07-24T08:17:15.010000"],["2024-07-24T08:17:16.010000"],["2024-07-24T08:17:17.010000"],["2024-07-24T08:17:18.010000"],["2024-07-24T08:17:19.010000"],["2024-07-24T08:17:20.010000"],["2024-07-24T08:17:21.010000"],["2024-07-24T08:17:22.010000"],["2024-07-24T08:17:23.010000"],["2024-07-24T08:17:24.010000"],["2024-07-24T08:17:25.010000"],["2024-07-24T08:17:26.010000"],["2024-07-24T08:17:27.010000"],["2024-07-24T08:17:28.010000"],["2024-07-24T08:17:29.010000"],["2024-07-24T08:17:30.010000"],["2024-07-24T08:17:31.010000"],["2024-07-24T08:17:32.010000"],["2024-07-24T08:17:33.010000"],["2024-07-24T08:17:34.010000"],["2024-07-24T08:17:35.010000"],["2024-07-24T08:17:36.010000"],["2024-07-24T08:17:37.010000"],["2024-07-24T08:17:38.010000"],["2024-07-24T08:17:39.010000"],["2024-07-24T08:17:40.010000"],["2024-07-24T08:17:41.010000"],["2024-07-24T08:17:42.010000"],["2024-07-24T08:17:43.010000"],["2024-07-24T08:17:44.010000"],["2024-07-24T08:17:45.010000"],["2024-07-24T08:17:46.010000"],["2024-07-24T08:17:47.010000"],["2024-07-24T08:17:48.010000"],["2024-07-24T08:17:49.010000"],["2024-07-24T08:17:50.010000"],["2024-07-24T08:17:51.010000"],["2024-07-24T08:17:52.010000"],["2024-07-24T08:17:53.010000"],["2024-07-24T08:17:54.010000"],["2024-07-24T08:17:55.010000"],["2024-07-24T08:17:56.010000"],["2024-07-24T08:17:57.010000"],["2024-07-24T08:17:58.010000"],["2024-07-24T08:17:59.010000"],["2024-07-24T08:18:00.010000"],["2024-07-24T08:18:01.010000"],["2024-07-24T08:18:02.010000"],["2024-07-24T08:18:03.010000"],["2024-07-24T08:18:04.010000"],["2024-07-24T08:18:05.010000"],["2024-07-24T08:18:06.010000"],["2024-07-24T08:18:07.010000"],["2024-07-24T08:18:08.010000"],["2024-07-24T08:18:09.010000"],["2024-07-24T08:18:10.010000"],["2024-07-24T08:18:11.010000"],["2024-07-24T08:18:12.010000"],["2024-07-24T08:18:13.010000"],["2024-07-24T08:18:14.010000"],["2024-07-24T08:18:15.010000"],["2024-07-24T08:18:16.010000"],["2024-07-24T08:18:17.010000"],["2024-07-24T08:18:18.010000"],["2024-07-24T08:18:19.010000"],["2024-07-24T08:18:20.010000"],["2024-07-24T08:18:21.010000"],["2024-07-24T08:18:22.010000"],["2024-07-24T08:18:23.010000"],["2024-07-24T08:18:24.010000"],["2024-07-24T08:18:25.010000"],["2024-07-24T08:18:26.010000"],["2024-07-24T08:18:27.010000"],["2024-07-24T08:18:28.010000"],["2024-07-24T08:18:29.010000"],["2024-07-24T08:18:30.010000"],["2024-07-24T08:18:31.010000"],["2024-07-24T08:18:32.010000"],["2024-07-24T08:18:33.010000"],["2024-07-24T08:18:34.010000"],["2024-07-24T08:18:35.010000"],["2024-07-24T08:18:36.010000"],["2024-07-24T08:18:37.010000"],["2024-07-24T08:18:38.010000"],["2024-07-24T08:18:39.010000"],["2024-07-24T08:18:40.010000"],["2024-07-24T08:18:41.010000"],["2024-07-24T08:18:42.010000"],["2024-07-24T08:18:43.010000"],["2024-07-24T08:18:44.010000"],["2024-07-24T08:18:45.010000"],["2024-07-24T08:18:46.010000"],["2024-07-24T08:18:47.010000"],["2024-07-24T08:18:48.010000"],["2024-07-24T08:18:49.010000"],["2024-07-24T08:18:50.010000"],["2024-07-24T08:18:51.010000"],["2024-07-24T08:18:52.010000"],["2024-07-24T08:18:53.010000"],["2024-07-24T08:18:54.010000"],["2024-07-24T08:18:55.010000"],["2024-07-24T08:18:56.010000"],["2024-07-24T08:18:57.010000"],["2024-07-24T08:18:58.010000"],["2024-07-24T08:18:59.010000"],["2024-07-24T08:19:00.010000"],["2024-07-24T08:19:01.010000"],["2024-07-24T08:19:02.010000"],["2024-07-24T08:19:03.010000"],["2024-07-24T08:19:04.010000"],["2024-07-24T08:19:05.010000"],["2024-07-24T08:19:06.010000"],["2024-07-24T08:19:07.010000"],["2024-07-24T08:19:08.010000"],["2024-07-24T08:19:09.010000"],["2024-07-24T08:19:10.010000"],["2024-07-24T08:19:11.010000"],["2024-07-24T08:19:12.010000"],["2024-07-24T08:19:13.010000"],["2024-07-24T08:19:14.010000"],["2024-07-24T08:19:15.010000"],["2024-07-24T08:19:16.010000"],["2024-07-24T08:19:17.010000"],["2024-07-24T08:19:18.010000"],["2024-07-24T08:19:19.010000"],["2024-07-24T08:19:20.010000"],["2024-07-24T08:19:21.010000"],["2024-07-24T08:19:22.010000"],["2024-07-24T08:19:23.010000"],["2024-07-24T08:19:24.010000"],["2024-07-24T08:19:25.010000"],["2024-07-24T08:19:26.010000"],["2024-07-24T08:19:27.010000"],["2024-07-24T08:19:28.010000"],["2024-07-24T08:19:29.010000"],["2024-07-24T08:19:30.010000"],["2024-07-24T08:19:31.010000"],["2024-07-24T08:19:32.010000"],["2024-07-24T08:19:33.010000"],["2024-07-24T08:19:34.010000"],["2024-07-24T08:19:35.010000"],["2024-07-24T08:19:36.010000"],["2024-07-24T08:19:37.010000"],["2024-07-24T08:19:38.010000"],["2024-07-24T08:19:39.010000"],["2024-07-24T08:19:40.010000"],["2024-07-24T08:19:41.010000"],["2024-07-24T08:19:42.010000"],["2024-07-24T08:19:43.010000"],["2024-07-24T08:19:44.010000"],["2024-07-24T08:19:45.010000"],["2024-07-24T08:19:46.010000"],["2024-07-24T08:19:47.010000"],["2024-07-24T08:19:48.010000"],["2024-07-24T08:19:49.010000"],["2024-07-24T08:19:50.010000"],["2024-07-24T08:19:51.010000"],["2024-07-24T08:19:52.010000"],["2024-07-24T08:19:53.010000"],["2024-07-24T08:19:54.010000"],["2024-07-24T08:19:55.010000"],["2024-07-24T08:19:56.010000"],["2024-07-24T08:19:57.010000"],["2024-07-24T08:19:58.010000"],["2024-07-24T08:19:59.010000"],["2024-07-24T08:20:00.010000"],["2024-07-24T08:20:01.010000"],["2024-07-24T08:20:02.010000"],["2024-07-24T08:20:03.010000"],["2024-07-24T08:20:04.010000"],["2024-07-24T08:20:05.010000"],["2024-07-24T08:20:06.010000"],["2024-07-24T08:20:07.010000"],["2024-07-24T08:20:08.010000"],["2024-07-24T08:20:09.010000"],["2024-07-24T08:20:10.010000"],["2024-07-24T08:20:11.010000"],["2024-07-24T08:20:12.010000"],["2024-07-24T08:20:13.010000"],["2024-07-24T08:20:14.010000"],["2024-07-24T08:20:15.010000"],["2024-07-24T08:20:16.010000"],["2024-07-24T08:20:17.010000"],["2024-07-24T08:20:18.010000"],["2024-07-24T08:20:19.010000"],["2024-07-24T08:20:20.010000"],["2024-07-24T08:20:21.010000"],["2024-07-24T08:20:22.010000"],["2024-07-24T08:20:23.010000"],["2024-07-24T08:20:24.010000"],["2024-07-24T08:20:25.010000"],["2024-07-24T08:20:26.010000"],["2024-07-24T08:20:27.010000"],["2024-07-24T08:20:28.010000"],["2024-07-24T08:20:29.010000"],["2024-07-24T08:20:30.010000"],["2024-07-24T08:20:31.010000"],["2024-07-24T08:20:32.010000"],["2024-07-24T08:20:33.010000"],["2024-07-24T08:20:34.010000"],["2024-07-24T08:20:35.010000"],["2024-07-24T08:20:36.010000"],["2024-07-24T08:20:37.010000"],["2024-07-24T08:20:38.010000"],["2024-07-24T08:20:39.010000"],["2024-07-24T08:20:40.010000"],["2024-07-24T08:20:41.010000"],["2024-07-24T08:20:42.010000"],["2024-07-24T08:20:43.010000"],["2024-07-24T08:20:44.010000"],["2024-07-24T08:20:45.010000"],["2024-07-24T08:20:46.010000"],["2024-07-24T08:20:47.010000"],["2024-07-24T08:20:48.010000"],["2024-07-24T08:20:49.010000"],["2024-07-24T08:20:50.010000"],["2024-07-24T08:20:51.010000"],["2024-07-24T08:20:52.010000"],["2024-07-24T08:20:53.010000"],["2024-07-24T08:20:54.010000"],["2024-07-24T08:20:55.010000"],["2024-07-24T08:20:56.010000"],["2024-07-24T08:20:57.010000"],["2024-07-24T08:20:58.010000"],["2024-07-24T08:20:59.010000"],["2024-07-24T08:21:00.010000"],["2024-07-24T08:21:01.010000"],["2024-07-24T08:21:02.010000"],["2024-07-24T08:21:03.010000"],["2024-07-24T08:21:04.010000"],["2024-07-24T08:21:05.010000"],["2024-07-24T08:21:06.010000"],["2024-07-24T08:21:07.010000"],["2024-07-24T08:21:08.010000"],["2024-07-24T08:21:09.010000"],["2024-07-24T08:21:10.010000"],["2024-07-24T08:21:11.010000"],["2024-07-24T08:21:12.010000"],["2024-07-24T08:21:13.010000"],["2024-07-24T08:21:14.010000"],["2024-07-24T08:21:15.010000"],["2024-07-24T08:21:16.010000"],["2024-07-24T08:21:17.010000"],["2024-07-24T08:21:18.010000"],["2024-07-24T08:21:19.010000"],["2024-07-24T08:21:20.010000"],["2024-07-24T08:21:21.010000"],["2024-07-24T08:21:22.010000"],["2024-07-24T08:21:23.010000"],["2024-07-24T08:21:24.010000"],["2024-07-24T08:21:25.010000"],["2024-07-24T08:21:26.010000"],["2024-07-24T08:21:27.010000"],["2024-07-24T08:21:28.010000"],["2024-07-24T08:21:29.010000"],["2024-07-24T08:21:30.010000"],["2024-07-24T08:21:31.010000"],["2024-07-24T08:21:32.010000"],["2024-07-24T08:21:33.010000"],["2024-07-24T08:21:34.010000"],["2024-07-24T08:21:35.010000"],["2024-07-24T08:21:36.010000"],["2024-07-24T08:21:37.010000"],["2024-07-24T08:21:38.010000"],["2024-07-24T08:21:39.010000"],["2024-07-24T08:21:40.010000"],["2024-07-24T08:21:41.010000"],["2024-07-24T08:21:42.010000"],["2024-07-24T08:21:43.010000"],["2024-07-24T08:21:44.010000"],["2024-07-24T08:21:45.010000"],["2024-07-24T08:21:46.010000"],["2024-07-24T08:21:47.010000"],["2024-07-24T08:21:48.010000"],["2024-07-24T08:21:49.010000"],["2024-07-24T08:21:50.010000"],["2024-07-24T08:21:51.010000"],["2024-07-24T08:21:52.010000"],["2024-07-24T08:21:53.010000"],["2024-07-24T08:21:54.010000"],["2024-07-24T08:21:55.010000"],["2024-07-24T08:21:56.010000"],["2024-07-24T08:21:57.010000"],["2024-07-24T08:21:58.010000"],["2024-07-24T08:21:59.010000"],["2024-07-24T08:22:00.010000"],["2024-07-24T08:22:01.010000"],["2024-07-24T08:22:02.010000"],["2024-07-24T08:22:03.010000"],["2024-07-24T08:22:04.010000"],["2024-07-24T08:22:05.010000"],["2024-07-24T08:22:06.010000"],["2024-07-24T08:22:07.010000"],["2024-07-24T08:22:08.010000"],["2024-07-24T08:22:09.010000"],["2024-07-24T08:22:10.010000"],["2024-07-24T08:22:11.010000"],["2024-07-24T08:22:12.010000"],["2024-07-24T08:22:13.010000"],["2024-07-24T08:22:14.010000"],["2024-07-24T08:22:15.010000"],["2024-07-24T08:22:16.010000"],["2024-07-24T08:22:17.010000"],["2024-07-24T08:22:18.010000"],["2024-07-24T08:22:19.010000"],["2024-07-24T08:22:20.010000"],["2024-07-24T08:22:21.010000"],["2024-07-24T08:22:22.010000"],["2024-07-24T08:22:23.010000"],["2024-07-24T08:22:24.010000"],["2024-07-24T08:22:25.010000"],["2024-07-24T08:22:26.010000"],["2024-07-24T08:22:27.010000"],["2024-07-24T08:22:28.010000"],["2024-07-24T08:22:29.010000"],["2024-07-24T08:22:30.010000"],["2024-07-24T08:22:31.010000"],["2024-07-24T08:22:32.010000"],["2024-07-24T08:22:33.010000"],["2024-07-24T08:22:34.010000"],["2024-07-24T08:22:35.010000"],["2024-07-24T08:22:36.010000"],["2024-07-24T08:22:37.010000"],["2024-07-24T08:22:38.010000"],["2024-07-24T08:22:39.010000"],["2024-07-24T08:22:40.010000"],["2024-07-24T08:22:41.010000"],["2024-07-24T08:22:42.010000"],["2024-07-24T08:22:43.010000"],["2024-07-24T08:22:44.010000"],["2024-07-24T08:22:45.010000"],["2024-07-24T08:22:46.010000"],["2024-07-24T08:22:47.010000"],["2024-07-24T08:22:48.010000"],["2024-07-24T08:22:49.010000"],["2024-07-24T08:22:50.010000"],["2024-07-24T08:22:51.010000"],["2024-07-24T08:22:52.010000"],["2024-07-24T08:22:53.010000"],["2024-07-24T08:22:54.010000"],["2024-07-24T08:22:55.010000"],["2024-07-24T08:22:56.010000"],["2024-07-24T08:22:57.010000"],["2024-07-24T08:22:58.010000"],["2024-07-24T08:22:59.010000"],["2024-07-24T08:23:00.010000"],["2024-07-24T08:23:01.010000"],["2024-07-24T08:23:02.010000"],["2024-07-24T08:23:03.010000"],["2024-07-24T08:23:04.010000"],["2024-07-24T08:23:05.010000"],["2024-07-24T08:23:06.010000"],["2024-07-24T08:23:07.010000"],["2024-07-24T08:23:08.010000"],["2024-07-24T08:23:09.010000"],["2024-07-24T08:23:10.010000"],["2024-07-24T08:23:11.010000"],["2024-07-24T08:23:12.010000"],["2024-07-24T08:23:13.010000"],["2024-07-24T08:23:14.010000"],["2024-07-24T08:23:15.010000"],["2024-07-24T08:23:16.010000"],["2024-07-24T08:23:17.010000"],["2024-07-24T08:23:18.010000"],["2024-07-24T08:23:19.010000"],["2024-07-24T08:23:20.010000"],["2024-07-24T08:23:21.010000"],["2024-07-24T08:23:22.010000"],["2024-07-24T08:23:23.010000"],["2024-07-24T08:23:24.010000"],["2024-07-24T08:23:25.010000"],["2024-07-24T08:23:26.010000"],["2024-07-24T08:23:27.010000"],["2024-07-24T08:23:28.010000"],["2024-07-24T08:23:29.010000"],["2024-07-24T08:23:30.010000"],["2024-07-24T08:23:31.010000"],["2024-07-24T08:23:32.010000"],["2024-07-24T08:23:33.010000"],["2024-07-24T08:23:34.010000"],["2024-07-24T08:23:35.010000"],["2024-07-24T08:23:36.010000"],["2024-07-24T08:23:37.010000"],["2024-07-24T08:23:38.010000"],["2024-07-24T08:23:39.010000"],["2024-07-24T08:23:40.010000"],["2024-07-24T08:23:41.010000"],["2024-07-24T08:23:42.010000"],["2024-07-24T08:23:43.010000"],["2024-07-24T08:23:44.010000"],["2024-07-24T08:23:45.010000"],["2024-07-24T08:23:46.010000"],["2024-07-24T08:23:47.010000"],["2024-07-24T08:23:48.010000"],["2024-07-24T08:23:49.010000"],["2024-07-24T08:23:50.010000"],["2024-07-24T08:23:51.010000"],["2024-07-24T08:23:52.010000"],["2024-07-24T08:23:53.010000"],["2024-07-24T08:23:54.010000"],["2024-07-24T08:23:55.010000"],["2024-07-24T08:23:56.010000"],["2024-07-24T08:23:57.010000"],["2024-07-24T08:23:58.010000"],["2024-07-24T08:23:59.010000"],["2024-07-24T08:24:00.010000"],["2024-07-24T08:24:01.010000"],["2024-07-24T08:24:02.010000"],["2024-07-24T08:24:03.010000"],["2024-07-24T08:24:04.010000"],["2024-07-24T08:24:05.010000"],["2024-07-24T08:24:06.010000"],["2024-07-24T08:24:07.010000"],["2024-07-24T08:24:08.010000"],["2024-07-24T08:24:09.010000"],["2024-07-24T08:24:10.010000"],["2024-07-24T08:24:11.010000"],["2024-07-24T08:24:12.010000"],["2024-07-24T08:24:13.010000"],["2024-07-24T08:24:14.010000"],["2024-07-24T08:24:15.010000"],["2024-07-24T08:24:16.010000"],["2024-07-24T08:24:17.010000"],["2024-07-24T08:24:18.010000"],["2024-07-24T08:24:19.010000"],["2024-07-24T08:24:20.010000"],["2024-07-24T08:24:21.010000"],["2024-07-24T08:24:22.010000"],["2024-07-24T08:24:23.010000"],["2024-07-24T08:24:24.010000"],["2024-07-24T08:24:25.010000"],["2024-07-24T08:24:26.010000"],["2024-07-24T08:24:27.010000"],["2024-07-24T08:24:28.010000"],["2024-07-24T08:24:29.010000"],["2024-07-24T08:24:30.010000"],["2024-07-24T08:24:31.010000"],["2024-07-24T08:24:32.010000"],["2024-07-24T08:24:33.010000"],["2024-07-24T08:24:34.010000"],["2024-07-24T08:24:35.010000"],["2024-07-24T08:24:36.010000"],["2024-07-24T08:24:37.010000"],["2024-07-24T08:24:38.010000"],["2024-07-24T08:24:39.010000"],["2024-07-24T08:24:40.010000"],["2024-07-24T08:24:41.010000"],["2024-07-24T08:24:42.010000"],["2024-07-24T08:24:43.010000"],["2024-07-24T08:24:44.010000"],["2024-07-24T08:24:45.010000"],["2024-07-24T08:24:46.010000"],["2024-07-24T08:24:47.010000"],["2024-07-24T08:24:48.010000"],["2024-07-24T08:24:49.010000"],["2024-07-24T08:24:50.010000"],["2024-07-24T08:24:51.010000"],["2024-07-24T08:24:52.010000"],["2024-07-24T08:24:53.010000"],["2024-07-24T08:24:54.010000"],["2024-07-24T08:24:55.010000"],["2024-07-24T08:24:56.010000"],["2024-07-24T08:24:57.010000"],["2024-07-24T08:24:58.010000"],["2024-07-24T08:24:59.010000"],["2024-07-24T08:25:00.010000"],["2024-07-24T08:25:01.010000"],["2024-07-24T08:25:02.010000"],["2024-07-24T08:25:03.010000"],["2024-07-24T08:25:04.010000"],["2024-07-24T08:25:05.010000"],["2024-07-24T08:25:06.010000"],["2024-07-24T08:25:07.010000"],["2024-07-24T08:25:08.010000"],["2024-07-24T08:25:09.010000"],["2024-07-24T08:25:10.010000"],["2024-07-24T08:25:11.010000"],["2024-07-24T08:25:12.010000"],["2024-07-24T08:25:13.010000"],["2024-07-24T08:25:14.010000"],["2024-07-24T08:25:15.010000"],["2024-07-24T08:25:16.010000"],["2024-07-24T08:25:17.010000"],["2024-07-24T08:25:18.010000"],["2024-07-24T08:25:19.010000"],["2024-07-24T08:25:20.010000"],["2024-07-24T08:25:21.010000"],["2024-07-24T08:25:22.010000"],["2024-07-24T08:25:23.010000"],["2024-07-24T08:25:24.010000"],["2024-07-24T08:25:25.010000"],["2024-07-24T08:25:26.010000"],["2024-07-24T08:25:27.010000"],["2024-07-24T08:25:28.010000"],["2024-07-24T08:25:29.010000"],["2024-07-24T08:25:30.010000"],["2024-07-24T08:25:31.010000"],["2024-07-24T08:25:32.010000"],["2024-07-24T08:25:33.010000"],["2024-07-24T08:25:34.010000"],["2024-07-24T08:25:35.010000"],["2024-07-24T08:25:36.010000"],["2024-07-24T08:25:37.010000"],["2024-07-24T08:25:38.010000"],["2024-07-24T08:25:39.010000"],["2024-07-24T08:25:40.010000"],["2024-07-24T08:25:41.010000"],["2024-07-24T08:25:42.010000"],["2024-07-24T08:25:43.010000"],["2024-07-24T08:25:44.010000"],["2024-07-24T08:25:45.010000"],["2024-07-24T08:25:46.010000"],["2024-07-24T08:25:47.010000"],["2024-07-24T08:25:48.010000"],["2024-07-24T08:25:49.010000"],["2024-07-24T08:25:50.010000"],["2024-07-24T08:25:51.010000"],["2024-07-24T08:25:52.010000"],["2024-07-24T08:25:53.010000"],["2024-07-24T08:25:54.010000"],["2024-07-24T08:25:55.010000"],["2024-07-24T08:25:56.010000"],["2024-07-24T08:25:57.010000"],["2024-07-24T08:25:58.010000"],["2024-07-24T08:25:59.010000"],["2024-07-24T08:26:00.010000"],["2024-07-24T08:26:01.010000"],["2024-07-24T08:26:02.010000"],["2024-07-24T08:26:03.010000"],["2024-07-24T08:26:04.010000"],["2024-07-24T08:26:05.010000"],["2024-07-24T08:26:06.010000"],["2024-07-24T08:26:07.010000"],["2024-07-24T08:26:08.010000"],["2024-07-24T08:26:09.010000"],["2024-07-24T08:26:10.010000"],["2024-07-24T08:26:11.010000"],["2024-07-24T08:26:12.010000"],["2024-07-24T08:26:13.010000"],["2024-07-24T08:26:14.010000"],["2024-07-24T08:26:15.010000"],["2024-07-24T08:26:16.010000"],["2024-07-24T08:26:17.010000"],["2024-07-24T08:26:18.010000"],["2024-07-24T08:26:19.010000"],["2024-07-24T08:26:20.010000"],["2024-07-24T08:26:21.010000"],["2024-07-24T08:26:22.010000"],["2024-07-24T08:26:23.010000"],["2024-07-24T08:26:24.010000"],["2024-07-24T08:26:25.010000"],["2024-07-24T08:26:26.010000"],["2024-07-24T08:26:27.010000"],["2024-07-24T08:26:28.010000"],["2024-07-24T08:26:29.010000"],["2024-07-24T08:26:30.010000"],["2024-07-24T08:26:31.010000"],["2024-07-24T08:26:32.010000"],["2024-07-24T08:26:33.010000"],["2024-07-24T08:26:34.010000"],["2024-07-24T08:26:35.010000"],["2024-07-24T08:26:36.010000"],["2024-07-24T08:26:37.010000"],["2024-07-24T08:26:38.010000"],["2024-07-24T08:26:39.010000"],["2024-07-24T08:26:40.010000"],["2024-07-24T08:26:41.010000"],["2024-07-24T08:26:42.010000"],["2024-07-24T08:26:43.010000"],["2024-07-24T08:26:44.010000"],["2024-07-24T08:26:45.010000"],["2024-07-24T08:26:46.010000"],["2024-07-24T08:26:47.010000"],["2024-07-24T08:26:48.010000"],["2024-07-24T08:26:49.010000"],["2024-07-24T08:26:50.010000"],["2024-07-24T08:26:51.010000"],["2024-07-24T08:26:52.010000"],["2024-07-24T08:26:53.010000"],["2024-07-24T08:26:54.010000"],["2024-07-24T08:26:55.010000"],["2024-07-24T08:26:56.010000"],["2024-07-24T08:26:57.010000"],["2024-07-24T08:26:58.010000"],["2024-07-24T08:26:59.010000"],["2024-07-24T08:27:00.010000"],["2024-07-24T08:27:01.010000"],["2024-07-24T08:27:02.010000"],["2024-07-24T08:27:03.010000"],["2024-07-24T08:27:04.010000"],["2024-07-24T08:27:05.010000"],["2024-07-24T08:27:06.010000"],["2024-07-24T08:27:07.010000"],["2024-07-24T08:27:08.010000"],["2024-07-24T08:27:09.010000"],["2024-07-24T08:27:10.010000"],["2024-07-24T08:27:11.010000"],["2024-07-24T08:27:12.010000"],["2024-07-24T08:27:13.010000"],["2024-07-24T08:27:14.010000"],["2024-07-24T08:27:15.010000"],["2024-07-24T08:27:16.010000"],["2024-07-24T08:27:17.010000"],["2024-07-24T08:27:18.010000"],["2024-07-24T08:27:19.010000"],["2024-07-24T08:27:20.010000"],["2024-07-24T08:27:21.010000"],["2024-07-24T08:27:22.010000"],["2024-07-24T08:27:23.010000"],["2024-07-24T08:27:24.010000"],["2024-07-24T08:27:25.010000"],["2024-07-24T08:27:26.010000"],["2024-07-24T08:27:27.010000"],["2024-07-24T08:27:28.010000"],["2024-07-24T08:27:29.010000"],["2024-07-24T08:27:30.010000"],["2024-07-24T08:27:31.010000"],["2024-07-24T08:27:32.010000"],["2024-07-24T08:27:33.010000"],["2024-07-24T08:27:34.010000"],["2024-07-24T08:27:35.010000"],["2024-07-24T08:27:36.010000"],["2024-07-24T08:27:37.010000"],["2024-07-24T08:27:38.010000"],["2024-07-24T08:27:39.010000"],["2024-07-24T08:27:40.010000"],["2024-07-24T08:27:41.010000"],["2024-07-24T08:27:42.010000"],["2024-07-24T08:27:43.010000"],["2024-07-24T08:27:44.010000"],["2024-07-24T08:27:45.010000"],["2024-07-24T08:27:46.010000"],["2024-07-24T08:27:47.010000"],["2024-07-24T08:27:48.010000"],["2024-07-24T08:27:49.010000"],["2024-07-24T08:27:50.010000"],["2024-07-24T08:27:51.010000"],["2024-07-24T08:27:52.010000"],["2024-07-24T08:27:53.010000"],["2024-07-24T08:27:54.010000"],["2024-07-24T08:27:55.010000"],["2024-07-24T08:27:56.010000"],["2024-07-24T08:27:57.010000"],["2024-07-24T08:27:58.010000"],["2024-07-24T08:27:59.010000"],["2024-07-24T08:28:00.010000"],["2024-07-24T08:28:01.010000"],["2024-07-24T08:28:02.010000"],["2024-07-24T08:28:03.010000"],["2024-07-24T08:28:04.010000"],["2024-07-24T08:28:05.010000"],["2024-07-24T08:28:06.010000"],["2024-07-24T08:28:07.010000"],["2024-07-24T08:28:08.010000"],["2024-07-24T08:28:09.010000"],["2024-07-24T08:28:10.010000"],["2024-07-24T08:28:11.010000"],["2024-07-24T08:28:12.010000"],["2024-07-24T08:28:13.010000"],["2024-07-24T08:28:14.010000"],["2024-07-24T08:28:15.010000"],["2024-07-24T08:28:16.010000"],["2024-07-24T08:28:17.010000"],["2024-07-24T08:28:18.010000"],["2024-07-24T08:28:19.010000"],["2024-07-24T08:28:20.010000"],["2024-07-24T08:28:21.010000"],["2024-07-24T08:28:22.010000"],["2024-07-24T08:28:23.010000"],["2024-07-24T08:28:24.010000"],["2024-07-24T08:28:25.010000"],["2024-07-24T08:28:26.010000"],["2024-07-24T08:28:27.010000"],["2024-07-24T08:28:28.010000"],["2024-07-24T08:28:29.010000"],["2024-07-24T08:28:30.010000"],["2024-07-24T08:28:31.010000"],["2024-07-24T08:28:32.010000"],["2024-07-24T08:28:33.010000"],["2024-07-24T08:28:34.010000"],["2024-07-24T08:28:35.010000"],["2024-07-24T08:28:36.010000"],["2024-07-24T08:28:37.010000"],["2024-07-24T08:28:38.010000"],["2024-07-24T08:28:39.010000"],["2024-07-24T08:28:40.010000"],["2024-07-24T08:28:41.010000"],["2024-07-24T08:28:42.010000"],["2024-07-24T08:28:43.010000"],["2024-07-24T08:28:44.010000"],["2024-07-24T08:28:45.010000"],["2024-07-24T08:28:46.010000"],["2024-07-24T08:28:47.010000"],["2024-07-24T08:28:48.010000"],["2024-07-24T08:28:49.010000"],["2024-07-24T08:28:50.010000"],["2024-07-24T08:28:51.010000"],["2024-07-24T08:28:52.010000"],["2024-07-24T08:28:53.010000"],["2024-07-24T08:28:54.010000"],["2024-07-24T08:28:55.010000"],["2024-07-24T08:28:56.010000"],["2024-07-24T08:28:57.010000"],["2024-07-24T08:28:58.010000"],["2024-07-24T08:28:59.010000"],["2024-07-24T08:29:00.010000"],["2024-07-24T08:29:01.010000"],["2024-07-24T08:29:02.010000"],["2024-07-24T08:29:03.010000"],["2024-07-24T08:29:04.010000"],["2024-07-24T08:29:05.010000"],["2024-07-24T08:29:06.010000"],["2024-07-24T08:29:07.010000"],["2024-07-24T08:29:08.010000"],["2024-07-24T08:29:09.010000"],["2024-07-24T08:29:10.010000"],["2024-07-24T08:29:11.010000"],["2024-07-24T08:29:12.010000"],["2024-07-24T08:29:13.010000"],["2024-07-24T08:29:14.010000"],["2024-07-24T08:29:15.010000"],["2024-07-24T08:29:16.010000"],["2024-07-24T08:29:17.010000"],["2024-07-24T08:29:18.010000"],["2024-07-24T08:29:19.010000"],["2024-07-24T08:29:20.010000"],["2024-07-24T08:29:21.010000"],["2024-07-24T08:29:22.010000"],["2024-07-24T08:29:23.010000"],["2024-07-24T08:29:24.010000"],["2024-07-24T08:29:25.010000"],["2024-07-24T08:29:26.010000"],["2024-07-24T08:29:27.010000"],["2024-07-24T08:29:28.010000"],["2024-07-24T08:29:29.010000"],["2024-07-24T08:29:30.010000"],["2024-07-24T08:29:31.010000"],["2024-07-24T08:29:32.010000"],["2024-07-24T08:29:33.010000"],["2024-07-24T08:29:34.010000"],["2024-07-24T08:29:35.010000"],["2024-07-24T08:29:36.010000"],["2024-07-24T08:29:37.010000"],["2024-07-24T08:29:38.010000"],["2024-07-24T08:29:39.010000"],["2024-07-24T08:29:40.010000"],["2024-07-24T08:29:41.010000"],["2024-07-24T08:29:42.010000"],["2024-07-24T08:29:43.010000"],["2024-07-24T08:29:44.010000"],["2024-07-24T08:29:45.010000"],["2024-07-24T08:29:46.010000"],["2024-07-24T08:29:47.010000"],["2024-07-24T08:29:48.010000"],["2024-07-24T08:29:49.010000"],["2024-07-24T08:29:50.010000"],["2024-07-24T08:29:51.010000"],["2024-07-24T08:29:52.010000"],["2024-07-24T08:29:53.010000"],["2024-07-24T08:29:54.010000"],["2024-07-24T08:29:55.010000"],["2024-07-24T08:29:56.010000"],["2024-07-24T08:29:57.010000"],["2024-07-24T08:29:58.010000"],["2024-07-24T08:29:59.010000"],["2024-07-24T08:30:00.010000"],["2024-07-24T08:30:01.010000"],["2024-07-24T08:30:02.010000"],["2024-07-24T08:30:03.010000"],["2024-07-24T08:30:04.010000"],["2024-07-24T08:30:05.010000"],["2024-07-24T08:30:06.010000"],["2024-07-24T08:30:07.010000"],["2024-07-24T08:30:08.010000"],["2024-07-24T08:30:09.010000"],["2024-07-24T08:30:10.010000"],["2024-07-24T08:30:11.010000"],["2024-07-24T08:30:12.010000"],["2024-07-24T08:30:13.010000"],["2024-07-24T08:30:14.010000"],["2024-07-24T08:30:15.010000"],["2024-07-24T08:30:16.010000"],["2024-07-24T08:30:17.010000"],["2024-07-24T08:30:18.010000"],["2024-07-24T08:30:19.010000"],["2024-07-24T08:30:20.010000"],["2024-07-24T08:30:21.010000"],["2024-07-24T08:30:22.010000"],["2024-07-24T08:30:23.010000"],["2024-07-24T08:30:24.010000"],["2024-07-24T08:30:25.010000"],["2024-07-24T08:30:26.010000"],["2024-07-24T08:30:27.010000"],["2024-07-24T08:30:28.010000"],["2024-07-24T08:30:29.010000"],["2024-07-24T08:30:30.010000"],["2024-07-24T08:30:31.010000"],["2024-07-24T08:30:32.010000"],["2024-07-24T08:30:33.010000"],["2024-07-24T08:30:34.010000"],["2024-07-24T08:30:35.010000"],["2024-07-24T08:30:36.010000"],["2024-07-24T08:30:37.010000"],["2024-07-24T08:30:38.010000"],["2024-07-24T08:30:39.010000"],["2024-07-24T08:30:40.010000"],["2024-07-24T08:30:41.010000"],["2024-07-24T08:30:42.010000"],["2024-07-24T08:30:43.010000"],["2024-07-24T08:30:44.010000"],["2024-07-24T08:30:45.010000"],["2024-07-24T08:30:46.010000"],["2024-07-24T08:30:47.010000"],["2024-07-24T08:30:48.010000"],["2024-07-24T08:30:49.010000"],["2024-07-24T08:30:50.010000"],["2024-07-24T08:30:51.010000"],["2024-07-24T08:30:52.010000"],["2024-07-24T08:30:53.010000"],["2024-07-24T08:30:54.010000"],["2024-07-24T08:30:55.010000"],["2024-07-24T08:30:56.010000"],["2024-07-24T08:30:57.010000"],["2024-07-24T08:30:58.010000"],["2024-07-24T08:30:59.010000"],["2024-07-24T08:31:00.010000"],["2024-07-24T08:31:01.010000"],["2024-07-24T08:31:02.010000"],["2024-07-24T08:31:03.010000"],["2024-07-24T08:31:04.010000"],["2024-07-24T08:31:05.010000"],["2024-07-24T08:31:06.010000"],["2024-07-24T08:31:07.010000"],["2024-07-24T08:31:08.010000"],["2024-07-24T08:31:09.010000"],["2024-07-24T08:31:10.010000"],["2024-07-24T08:31:11.010000"],["2024-07-24T08:31:12.010000"],["2024-07-24T08:31:13.010000"],["2024-07-24T08:31:14.010000"],["2024-07-24T08:31:15.010000"],["2024-07-24T08:31:16.010000"],["2024-07-24T08:31:17.010000"],["2024-07-24T08:31:18.010000"],["2024-07-24T08:31:19.010000"],["2024-07-24T08:31:20.010000"],["2024-07-24T08:31:21.010000"],["2024-07-24T08:31:22.010000"],["2024-07-24T08:31:23.010000"],["2024-07-24T08:31:24.010000"],["2024-07-24T08:31:25.010000"],["2024-07-24T08:31:26.010000"],["2024-07-24T08:31:27.010000"],["2024-07-24T08:31:28.010000"],["2024-07-24T08:31:29.010000"],["2024-07-24T08:31:30.010000"],["2024-07-24T08:31:31.010000"],["2024-07-24T08:31:32.010000"],["2024-07-24T08:31:33.010000"],["2024-07-24T08:31:34.010000"],["2024-07-24T08:31:35.010000"],["2024-07-24T08:31:36.010000"],["2024-07-24T08:31:37.010000"],["2024-07-24T08:31:38.010000"],["2024-07-24T08:31:39.010000"],["2024-07-24T08:31:40.010000"],["2024-07-24T08:31:41.010000"],["2024-07-24T08:31:42.010000"],["2024-07-24T08:31:43.010000"],["2024-07-24T08:31:44.010000"],["2024-07-24T08:31:45.010000"],["2024-07-24T08:31:46.010000"],["2024-07-24T08:31:47.010000"],["2024-07-24T08:31:48.010000"],["2024-07-24T08:31:49.010000"],["2024-07-24T08:31:50.010000"],["2024-07-24T08:31:51.010000"],["2024-07-24T08:31:52.010000"],["2024-07-24T08:31:53.010000"],["2024-07-24T08:31:54.010000"],["2024-07-24T08:31:55.010000"],["2024-07-24T08:31:56.010000"],["2024-07-24T08:31:57.010000"],["2024-07-24T08:31:58.010000"],["2024-07-24T08:31:59.010000"],["2024-07-24T08:32:00.010000"],["2024-07-24T08:32:01.010000"],["2024-07-24T08:32:02.010000"],["2024-07-24T08:32:03.010000"],["2024-07-24T08:32:04.010000"],["2024-07-24T08:32:05.010000"],["2024-07-24T08:32:06.010000"],["2024-07-24T08:32:07.010000"],["2024-07-24T08:32:08.010000"],["2024-07-24T08:32:09.010000"],["2024-07-24T08:32:10.010000"],["2024-07-24T08:32:11.010000"],["2024-07-24T08:32:12.010000"],["2024-07-24T08:32:13.010000"],["2024-07-24T08:32:14.010000"],["2024-07-24T08:32:15.010000"],["2024-07-24T08:32:16.010000"],["2024-07-24T08:32:17.010000"],["2024-07-24T08:32:18.010000"],["2024-07-24T08:32:19.010000"],["2024-07-24T08:32:20.010000"],["2024-07-24T08:32:21.010000"],["2024-07-24T08:32:22.010000"],["2024-07-24T08:32:23.010000"],["2024-07-24T08:32:24.010000"],["2024-07-24T08:32:25.010000"],["2024-07-24T08:32:26.010000"],["2024-07-24T08:32:27.010000"],["2024-07-24T08:32:28.010000"],["2024-07-24T08:32:29.010000"],["2024-07-24T08:32:30.010000"],["2024-07-24T08:32:31.010000"],["2024-07-24T08:32:32.010000"],["2024-07-24T08:32:33.010000"],["2024-07-24T08:32:34.010000"],["2024-07-24T08:32:35.010000"],["2024-07-24T08:32:36.010000"],["2024-07-24T08:32:37.010000"],["2024-07-24T08:32:38.010000"],["2024-07-24T08:32:39.010000"],["2024-07-24T08:32:40.010000"],["2024-07-24T08:32:41.010000"],["2024-07-24T08:32:42.010000"],["2024-07-24T08:32:43.010000"],["2024-07-24T08:32:44.010000"],["2024-07-24T08:32:45.010000"],["2024-07-24T08:32:46.010000"],["2024-07-24T08:32:47.010000"],["2024-07-24T08:32:48.010000"],["2024-07-24T08:32:49.010000"],["2024-07-24T08:32:50.010000"],["2024-07-24T08:32:51.010000"],["2024-07-24T08:32:52.010000"],["2024-07-24T08:32:53.010000"],["2024-07-24T08:32:54.010000"],["2024-07-24T08:32:55.010000"],["2024-07-24T08:32:56.010000"],["2024-07-24T08:32:57.010000"],["2024-07-24T08:32:58.010000"],["2024-07-24T08:32:59.010000"],["2024-07-24T08:33:00.010000"],["2024-07-24T08:33:01.010000"],["2024-07-24T08:33:02.010000"],["2024-07-24T08:33:03.010000"],["2024-07-24T08:33:04.010000"],["2024-07-24T08:33:05.010000"],["2024-07-24T08:33:06.010000"],["2024-07-24T08:33:07.010000"],["2024-07-24T08:33:08.010000"],["2024-07-24T08:33:09.010000"],["2024-07-24T08:33:10.010000"],["2024-07-24T08:33:11.010000"],["2024-07-24T08:33:12.010000"],["2024-07-24T08:33:13.010000"],["2024-07-24T08:33:14.010000"],["2024-07-24T08:33:15.010000"],["2024-07-24T08:33:16.010000"],["2024-07-24T08:33:17.010000"],["2024-07-24T08:33:18.010000"],["2024-07-24T08:33:19.010000"],["2024-07-24T08:33:20.010000"],["2024-07-24T08:33:21.010000"],["2024-07-24T08:33:22.010000"],["2024-07-24T08:33:23.010000"],["2024-07-24T08:33:24.010000"],["2024-07-24T08:33:25.010000"],["2024-07-24T08:33:26.010000"],["2024-07-24T08:33:27.010000"],["2024-07-24T08:33:28.010000"],["2024-07-24T08:33:29.010000"],["2024-07-24T08:33:30.010000"],["2024-07-24T08:33:31.010000"],["2024-07-24T08:33:32.010000"],["2024-07-24T08:33:33.010000"],["2024-07-24T08:33:34.010000"],["2024-07-24T08:33:35.010000"],["2024-07-24T08:33:36.010000"],["2024-07-24T08:33:37.010000"],["2024-07-24T08:33:38.010000"],["2024-07-24T08:33:39.010000"],["2024-07-24T08:33:40.010000"],["2024-07-24T08:33:41.010000"],["2024-07-24T08:33:42.010000"],["2024-07-24T08:33:43.010000"],["2024-07-24T08:33:44.010000"],["2024-07-24T08:33:45.010000"],["2024-07-24T08:33:46.010000"],["2024-07-24T08:33:47.010000"],["2024-07-24T08:33:48.010000"],["2024-07-24T08:33:49.010000"],["2024-07-24T08:33:50.010000"],["2024-07-24T08:33:51.010000"],["2024-07-24T08:33:52.010000"],["2024-07-24T08:33:53.010000"],["2024-07-24T08:33:54.010000"],["2024-07-24T08:33:55.010000"],["2024-07-24T08:33:56.010000"],["2024-07-24T08:33:57.010000"],["2024-07-24T08:33:58.010000"],["2024-07-24T08:33:59.010000"],["2024-07-24T08:34:00.010000"],["2024-07-24T08:34:01.010000"],["2024-07-24T08:34:02.010000"],["2024-07-24T08:34:03.010000"],["2024-07-24T08:34:04.010000"],["2024-07-24T08:34:05.010000"],["2024-07-24T08:34:06.010000"],["2024-07-24T08:34:07.010000"],["2024-07-24T08:34:08.010000"],["2024-07-24T08:34:09.010000"],["2024-07-24T08:34:10.010000"],["2024-07-24T08:34:11.010000"],["2024-07-24T08:34:12.010000"],["2024-07-24T08:34:13.010000"],["2024-07-24T08:34:14.010000"],["2024-07-24T08:34:15.010000"],["2024-07-24T08:34:16.010000"],["2024-07-24T08:34:17.010000"],["2024-07-24T08:34:18.010000"],["2024-07-24T08:34:19.010000"],["2024-07-24T08:34:20.010000"],["2024-07-24T08:34:21.010000"],["2024-07-24T08:34:22.010000"],["2024-07-24T08:34:23.010000"],["2024-07-24T08:34:24.010000"],["2024-07-24T08:34:25.010000"],["2024-07-24T08:34:26.010000"],["2024-07-24T08:34:27.010000"],["2024-07-24T08:34:28.010000"],["2024-07-24T08:34:29.010000"],["2024-07-24T08:34:30.010000"],["2024-07-24T08:34:31.010000"],["2024-07-24T08:34:32.010000"],["2024-07-24T08:34:33.010000"],["2024-07-24T08:34:34.010000"],["2024-07-24T08:34:35.010000"],["2024-07-24T08:34:36.010000"],["2024-07-24T08:34:37.010000"],["2024-07-24T08:34:38.010000"],["2024-07-24T08:34:39.010000"],["2024-07-24T08:34:40.010000"],["2024-07-24T08:34:41.010000"],["2024-07-24T08:34:42.010000"],["2024-07-24T08:34:43.010000"],["2024-07-24T08:34:44.010000"],["2024-07-24T08:34:45.010000"],["2024-07-24T08:34:46.010000"],["2024-07-24T08:34:47.010000"],["2024-07-24T08:34:48.010000"],["2024-07-24T08:34:49.010000"],["2024-07-24T08:34:50.010000"],["2024-07-24T08:34:51.010000"],["2024-07-24T08:34:52.010000"],["2024-07-24T08:34:53.010000"],["2024-07-24T08:34:54.010000"],["2024-07-24T08:34:55.010000"],["2024-07-24T08:34:56.010000"],["2024-07-24T08:34:57.010000"],["2024-07-24T08:34:58.010000"],["2024-07-24T08:34:59.010000"],["2024-07-24T08:35:00.010000"],["2024-07-24T08:35:01.010000"],["2024-07-24T08:35:02.010000"],["2024-07-24T08:35:03.010000"],["2024-07-24T08:35:04.010000"],["2024-07-24T08:35:05.010000"],["2024-07-24T08:35:06.010000"],["2024-07-24T08:35:07.010000"],["2024-07-24T08:35:08.010000"],["2024-07-24T08:35:09.010000"],["2024-07-24T08:35:10.010000"],["2024-07-24T08:35:11.010000"],["2024-07-24T08:35:12.010000"],["2024-07-24T08:35:13.010000"],["2024-07-24T08:35:14.010000"],["2024-07-24T08:35:15.010000"],["2024-07-24T08:35:16.010000"],["2024-07-24T08:35:17.010000"],["2024-07-24T08:35:18.010000"],["2024-07-24T08:35:19.010000"],["2024-07-24T08:35:20.010000"],["2024-07-24T08:35:21.010000"],["2024-07-24T08:35:22.010000"],["2024-07-24T08:35:23.010000"],["2024-07-24T08:35:24.010000"],["2024-07-24T08:35:25.010000"],["2024-07-24T08:35:26.010000"],["2024-07-24T08:35:27.010000"],["2024-07-24T08:35:28.010000"],["2024-07-24T08:35:29.010000"],["2024-07-24T08:35:30.010000"],["2024-07-24T08:35:31.010000"],["2024-07-24T08:35:32.010000"],["2024-07-24T08:35:33.010000"],["2024-07-24T08:35:34.010000"],["2024-07-24T08:35:35.010000"],["2024-07-24T08:35:36.010000"],["2024-07-24T08:35:37.010000"],["2024-07-24T08:35:38.010000"],["2024-07-24T08:35:39.010000"],["2024-07-24T08:35:40.010000"],["2024-07-24T08:35:41.010000"],["2024-07-24T08:35:42.010000"],["2024-07-24T08:35:43.010000"],["2024-07-24T08:35:44.010000"],["2024-07-24T08:35:45.010000"],["2024-07-24T08:35:46.010000"],["2024-07-24T08:35:47.010000"],["2024-07-24T08:35:48.010000"],["2024-07-24T08:35:49.010000"],["2024-07-24T08:35:50.010000"],["2024-07-24T08:35:51.010000"],["2024-07-24T08:35:52.010000"],["2024-07-24T08:35:53.010000"],["2024-07-24T08:35:54.010000"],["2024-07-24T08:35:55.010000"],["2024-07-24T08:35:56.010000"],["2024-07-24T08:35:57.010000"],["2024-07-24T08:35:58.010000"],["2024-07-24T08:35:59.010000"],["2024-07-24T08:36:00.010000"],["2024-07-24T08:36:01.010000"],["2024-07-24T08:36:02.010000"],["2024-07-24T08:36:03.010000"],["2024-07-24T08:36:04.010000"],["2024-07-24T08:36:05.010000"],["2024-07-24T08:36:06.010000"],["2024-07-24T08:36:07.010000"],["2024-07-24T08:36:08.010000"],["2024-07-24T08:36:09.010000"],["2024-07-24T08:36:10.010000"],["2024-07-24T08:36:11.010000"],["2024-07-24T08:36:12.010000"],["2024-07-24T08:36:13.010000"],["2024-07-24T08:36:14.010000"],["2024-07-24T08:36:15.010000"],["2024-07-24T08:36:16.010000"],["2024-07-24T08:36:17.010000"],["2024-07-24T08:36:18.010000"],["2024-07-24T08:36:19.010000"],["2024-07-24T08:36:20.010000"],["2024-07-24T08:36:21.010000"],["2024-07-24T08:36:22.010000"],["2024-07-24T08:36:23.010000"],["2024-07-24T08:36:24.010000"],["2024-07-24T08:36:25.010000"],["2024-07-24T08:36:26.010000"],["2024-07-24T08:36:27.010000"],["2024-07-24T08:36:28.010000"],["2024-07-24T08:36:29.010000"],["2024-07-24T08:36:30.010000"],["2024-07-24T08:36:31.010000"],["2024-07-24T08:36:32.010000"],["2024-07-24T08:36:33.010000"],["2024-07-24T08:36:34.010000"],["2024-07-24T08:36:35.010000"],["2024-07-24T08:36:36.010000"],["2024-07-24T08:36:37.010000"],["2024-07-24T08:36:38.010000"],["2024-07-24T08:36:39.010000"],["2024-07-24T08:36:40.010000"],["2024-07-24T08:36:41.010000"],["2024-07-24T08:36:42.010000"],["2024-07-24T08:36:43.010000"],["2024-07-24T08:36:44.010000"],["2024-07-24T08:36:45.010000"],["2024-07-24T08:36:46.010000"],["2024-07-24T08:36:47.010000"],["2024-07-24T08:36:48.010000"],["2024-07-24T08:36:49.010000"],["2024-07-24T08:36:50.010000"],["2024-07-24T08:36:51.010000"],["2024-07-24T08:36:52.010000"],["2024-07-24T08:36:53.010000"],["2024-07-24T08:36:54.010000"],["2024-07-24T08:36:55.010000"],["2024-07-24T08:36:56.010000"],["2024-07-24T08:36:57.010000"],["2024-07-24T08:36:58.010000"],["2024-07-24T08:36:59.010000"],["2024-07-24T08:37:00.010000"],["2024-07-24T08:37:01.010000"],["2024-07-24T08:37:02.010000"],["2024-07-24T08:37:03.010000"],["2024-07-24T08:37:04.010000"],["2024-07-24T08:37:05.010000"],["2024-07-24T08:37:06.010000"],["2024-07-24T08:37:07.010000"],["2024-07-24T08:37:08.010000"],["2024-07-24T08:37:09.010000"],["2024-07-24T08:37:10.010000"],["2024-07-24T08:37:11.010000"],["2024-07-24T08:37:12.010000"],["2024-07-24T08:37:13.010000"],["2024-07-24T08:37:14.010000"],["2024-07-24T08:37:15.010000"],["2024-07-24T08:37:16.010000"],["2024-07-24T08:37:17.010000"],["2024-07-24T08:37:18.010000"],["2024-07-24T08:37:19.010000"],["2024-07-24T08:37:20.010000"],["2024-07-24T08:37:21.010000"],["2024-07-24T08:37:22.010000"],["2024-07-24T08:37:23.010000"],["2024-07-24T08:37:24.010000"],["2024-07-24T08:37:25.010000"],["2024-07-24T08:37:26.010000"],["2024-07-24T08:37:27.010000"],["2024-07-24T08:37:28.010000"],["2024-07-24T08:37:29.010000"],["2024-07-24T08:37:30.010000"],["2024-07-24T08:37:31.010000"],["2024-07-24T08:37:32.010000"],["2024-07-24T08:37:33.010000"],["2024-07-24T08:37:34.010000"],["2024-07-24T08:37:35.010000"],["2024-07-24T08:37:36.010000"],["2024-07-24T08:37:37.010000"],["2024-07-24T08:37:38.010000"],["2024-07-24T08:37:39.010000"],["2024-07-24T08:37:40.010000"],["2024-07-24T08:37:41.010000"],["2024-07-24T08:37:42.010000"],["2024-07-24T08:37:43.010000"],["2024-07-24T08:37:44.010000"],["2024-07-24T08:37:45.010000"],["2024-07-24T08:37:46.010000"],["2024-07-24T08:37:47.010000"],["2024-07-24T08:37:48.010000"],["2024-07-24T08:37:49.010000"],["2024-07-24T08:37:50.010000"],["2024-07-24T08:37:51.010000"],["2024-07-24T08:37:52.010000"],["2024-07-24T08:37:53.010000"],["2024-07-24T08:37:54.010000"],["2024-07-24T08:37:55.010000"],["2024-07-24T08:37:56.010000"],["2024-07-24T08:37:57.010000"],["2024-07-24T08:37:58.010000"],["2024-07-24T08:37:59.010000"],["2024-07-24T08:38:00.010000"],["2024-07-24T08:38:01.010000"],["2024-07-24T08:38:02.010000"],["2024-07-24T08:38:03.010000"],["2024-07-24T08:38:04.010000"],["2024-07-24T08:38:05.010000"],["2024-07-24T08:38:06.010000"],["2024-07-24T08:38:07.010000"],["2024-07-24T08:38:08.010000"],["2024-07-24T08:38:09.010000"],["2024-07-24T08:38:10.010000"],["2024-07-24T08:38:11.010000"],["2024-07-24T08:38:12.010000"],["2024-07-24T08:38:13.010000"],["2024-07-24T08:38:14.010000"],["2024-07-24T08:38:15.010000"],["2024-07-24T08:38:16.010000"],["2024-07-24T08:38:17.010000"],["2024-07-24T08:38:18.010000"],["2024-07-24T08:38:19.010000"],["2024-07-24T08:38:20.010000"],["2024-07-24T08:38:21.010000"],["2024-07-24T08:38:22.010000"],["2024-07-24T08:38:23.010000"],["2024-07-24T08:38:24.010000"],["2024-07-24T08:38:25.010000"],["2024-07-24T08:38:26.010000"],["2024-07-24T08:38:27.010000"],["2024-07-24T08:38:28.010000"],["2024-07-24T08:38:29.010000"],["2024-07-24T08:38:30.010000"],["2024-07-24T08:38:31.010000"],["2024-07-24T08:38:32.010000"],["2024-07-24T08:38:33.010000"],["2024-07-24T08:38:34.010000"],["2024-07-24T08:38:35.010000"],["2024-07-24T08:38:36.010000"],["2024-07-24T08:38:37.010000"],["2024-07-24T08:38:38.010000"],["2024-07-24T08:38:39.010000"],["2024-07-24T08:38:40.010000"],["2024-07-24T08:38:41.010000"],["2024-07-24T08:38:42.010000"],["2024-07-24T08:38:43.010000"],["2024-07-24T08:38:44.010000"],["2024-07-24T08:38:45.010000"],["2024-07-24T08:38:46.010000"],["2024-07-24T08:38:47.010000"],["2024-07-24T08:38:48.010000"],["2024-07-24T08:38:49.010000"],["2024-07-24T08:38:50.010000"],["2024-07-24T08:38:51.010000"],["2024-07-24T08:38:52.010000"],["2024-07-24T08:38:53.010000"],["2024-07-24T08:38:54.010000"],["2024-07-24T08:38:55.010000"],["2024-07-24T08:38:56.010000"],["2024-07-24T08:38:57.010000"],["2024-07-24T08:38:58.010000"],["2024-07-24T08:38:59.010000"],["2024-07-24T08:39:00.010000"],["2024-07-24T08:39:01.010000"],["2024-07-24T08:39:02.010000"],["2024-07-24T08:39:03.010000"],["2024-07-24T08:39:04.010000"],["2024-07-24T08:39:05.010000"],["2024-07-24T08:39:06.010000"],["2024-07-24T08:39:07.010000"],["2024-07-24T08:39:08.010000"],["2024-07-24T08:39:09.010000"],["2024-07-24T08:39:10.010000"],["2024-07-24T08:39:11.010000"],["2024-07-24T08:39:12.010000"],["2024-07-24T08:39:13.010000"],["2024-07-24T08:39:14.010000"],["2024-07-24T08:39:15.010000"],["2024-07-24T08:39:16.010000"],["2024-07-24T08:39:17.010000"],["2024-07-24T08:39:18.010000"],["2024-07-24T08:39:19.010000"],["2024-07-24T08:39:20.010000"],["2024-07-24T08:39:21.010000"],["2024-07-24T08:39:22.010000"],["2024-07-24T08:39:23.010000"],["2024-07-24T08:39:24.010000"],["2024-07-24T08:39:25.010000"],["2024-07-24T08:39:26.010000"],["2024-07-24T08:39:27.010000"],["2024-07-24T08:39:28.010000"],["2024-07-24T08:39:29.010000"],["2024-07-24T08:39:30.010000"],["2024-07-24T08:39:31.010000"],["2024-07-24T08:39:32.010000"],["2024-07-24T08:39:33.010000"],["2024-07-24T08:39:34.010000"],["2024-07-24T08:39:35.010000"],["2024-07-24T08:39:36.010000"],["2024-07-24T08:39:37.010000"],["2024-07-24T08:39:38.010000"],["2024-07-24T08:39:39.010000"],["2024-07-24T08:39:40.010000"],["2024-07-24T08:39:41.010000"],["2024-07-24T08:39:42.010000"],["2024-07-24T08:39:43.010000"],["2024-07-24T08:39:44.010000"],["2024-07-24T08:39:45.010000"],["2024-07-24T08:39:46.010000"],["2024-07-24T08:39:47.010000"],["2024-07-24T08:39:48.010000"],["2024-07-24T08:39:49.010000"],["2024-07-24T08:39:50.010000"],["2024-07-24T08:39:51.010000"],["2024-07-24T08:39:52.010000"],["2024-07-24T08:39:53.010000"],["2024-07-24T08:39:54.010000"],["2024-07-24T08:39:55.010000"],["2024-07-24T08:39:56.010000"],["2024-07-24T08:39:57.010000"],["2024-07-24T08:39:58.010000"],["2024-07-24T08:39:59.010000"],["2024-07-24T08:40:00.010000"],["2024-07-24T08:40:01.010000"],["2024-07-24T08:40:02.010000"],["2024-07-24T08:40:03.010000"],["2024-07-24T08:40:04.010000"],["2024-07-24T08:40:05.010000"],["2024-07-24T08:40:06.010000"],["2024-07-24T08:40:07.010000"],["2024-07-24T08:40:08.010000"],["2024-07-24T08:40:09.010000"],["2024-07-24T08:40:10.010000"],["2024-07-24T08:40:11.010000"],["2024-07-24T08:40:12.010000"],["2024-07-24T08:40:13.010000"],["2024-07-24T08:40:14.010000"],["2024-07-24T08:40:15.010000"],["2024-07-24T08:40:16.010000"],["2024-07-24T08:40:17.010000"],["2024-07-24T08:40:18.010000"],["2024-07-24T08:40:19.010000"],["2024-07-24T08:40:20.010000"],["2024-07-24T08:40:21.010000"],["2024-07-24T08:40:22.010000"],["2024-07-24T08:40:23.010000"],["2024-07-24T08:40:24.010000"],["2024-07-24T08:40:25.010000"],["2024-07-24T08:40:26.010000"],["2024-07-24T08:40:27.010000"],["2024-07-24T08:40:28.010000"],["2024-07-24T08:40:29.010000"],["2024-07-24T08:40:30.010000"],["2024-07-24T08:40:31.010000"],["2024-07-24T08:40:32.010000"],["2024-07-24T08:40:33.010000"],["2024-07-24T08:40:34.010000"],["2024-07-24T08:40:35.010000"],["2024-07-24T08:40:36.010000"],["2024-07-24T08:40:37.010000"],["2024-07-24T08:40:38.010000"],["2024-07-24T08:40:39.010000"],["2024-07-24T08:40:40.010000"],["2024-07-24T08:40:41.010000"],["2024-07-24T08:40:42.010000"],["2024-07-24T08:40:43.010000"],["2024-07-24T08:40:44.010000"],["2024-07-24T08:40:45.010000"],["2024-07-24T08:40:46.010000"],["2024-07-24T08:40:47.010000"],["2024-07-24T08:40:48.010000"],["2024-07-24T08:40:49.010000"],["2024-07-24T08:40:50.010000"],["2024-07-24T08:40:51.010000"],["2024-07-24T08:40:52.010000"],["2024-07-24T08:40:53.010000"],["2024-07-24T08:40:54.010000"],["2024-07-24T08:40:55.010000"],["2024-07-24T08:40:56.010000"],["2024-07-24T08:40:57.010000"],["2024-07-24T08:40:58.010000"],["2024-07-24T08:40:59.010000"],["2024-07-24T08:41:00.010000"],["2024-07-24T08:41:01.010000"],["2024-07-24T08:41:02.010000"],["2024-07-24T08:41:03.010000"],["2024-07-24T08:41:04.010000"],["2024-07-24T08:41:05.010000"],["2024-07-24T08:41:06.010000"],["2024-07-24T08:41:07.010000"],["2024-07-24T08:41:08.010000"],["2024-07-24T08:41:09.010000"],["2024-07-24T08:41:10.010000"],["2024-07-24T08:41:11.010000"],["2024-07-24T08:41:12.010000"],["2024-07-24T08:41:13.010000"],["2024-07-24T08:41:14.010000"],["2024-07-24T08:41:15.010000"],["2024-07-24T08:41:16.010000"],["2024-07-24T08:41:17.010000"],["2024-07-24T08:41:18.010000"],["2024-07-24T08:41:19.010000"],["2024-07-24T08:41:20.010000"],["2024-07-24T08:41:21.010000"],["2024-07-24T08:41:22.010000"],["2024-07-24T08:41:23.010000"],["2024-07-24T08:41:24.010000"],["2024-07-24T08:41:25.010000"],["2024-07-24T08:41:26.010000"],["2024-07-24T08:41:27.010000"],["2024-07-24T08:41:28.010000"],["2024-07-24T08:41:29.010000"],["2024-07-24T08:41:30.010000"],["2024-07-24T08:41:31.010000"],["2024-07-24T08:41:32.010000"],["2024-07-24T08:41:33.010000"],["2024-07-24T08:41:34.010000"],["2024-07-24T08:41:35.010000"],["2024-07-24T08:41:36.010000"],["2024-07-24T08:41:37.010000"],["2024-07-24T08:41:38.010000"],["2024-07-24T08:41:39.010000"],["2024-07-24T08:41:40.010000"],["2024-07-24T08:41:41.010000"],["2024-07-24T08:41:42.010000"],["2024-07-24T08:41:43.010000"],["2024-07-24T08:41:44.010000"],["2024-07-24T08:41:45.010000"],["2024-07-24T08:41:46.010000"],["2024-07-24T08:41:47.010000"],["2024-07-24T08:41:48.010000"],["2024-07-24T08:41:49.010000"],["2024-07-24T08:41:50.010000"],["2024-07-24T08:41:51.010000"],["2024-07-24T08:41:52.010000"],["2024-07-24T08:41:53.010000"],["2024-07-24T08:41:54.010000"],["2024-07-24T08:41:55.010000"],["2024-07-24T08:41:56.010000"],["2024-07-24T08:41:57.010000"],["2024-07-24T08:41:58.010000"],["2024-07-24T08:41:59.010000"],["2024-07-24T08:42:00.010000"],["2024-07-24T08:42:01.010000"],["2024-07-24T08:42:02.010000"],["2024-07-24T08:42:03.010000"],["2024-07-24T08:42:04.010000"],["2024-07-24T08:42:05.010000"],["2024-07-24T08:42:06.010000"],["2024-07-24T08:42:07.010000"],["2024-07-24T08:42:08.010000"],["2024-07-24T08:42:09.010000"],["2024-07-24T08:42:10.010000"],["2024-07-24T08:42:11.010000"],["2024-07-24T08:42:12.010000"],["2024-07-24T08:42:13.010000"],["2024-07-24T08:42:14.010000"],["2024-07-24T08:42:15.010000"],["2024-07-24T08:42:16.010000"],["2024-07-24T08:42:17.010000"],["2024-07-24T08:42:18.010000"],["2024-07-24T08:42:19.010000"],["2024-07-24T08:42:20.010000"],["2024-07-24T08:42:21.010000"],["2024-07-24T08:42:22.010000"],["2024-07-24T08:42:23.010000"],["2024-07-24T08:42:24.010000"],["2024-07-24T08:42:25.010000"],["2024-07-24T08:42:26.010000"],["2024-07-24T08:42:27.010000"],["2024-07-24T08:42:28.010000"],["2024-07-24T08:42:29.010000"],["2024-07-24T08:42:30.010000"],["2024-07-24T08:42:31.010000"],["2024-07-24T08:42:32.010000"],["2024-07-24T08:42:33.010000"],["2024-07-24T08:42:34.010000"],["2024-07-24T08:42:35.010000"],["2024-07-24T08:42:36.010000"],["2024-07-24T08:42:37.010000"],["2024-07-24T08:42:38.010000"],["2024-07-24T08:42:39.010000"],["2024-07-24T08:42:40.010000"],["2024-07-24T08:42:41.010000"],["2024-07-24T08:42:42.010000"],["2024-07-24T08:42:43.010000"],["2024-07-24T08:42:44.010000"],["2024-07-24T08:42:45.010000"],["2024-07-24T08:42:46.010000"],["2024-07-24T08:42:47.010000"],["2024-07-24T08:42:48.010000"],["2024-07-24T08:42:49.010000"],["2024-07-24T08:42:50.010000"],["2024-07-24T08:42:51.010000"],["2024-07-24T08:42:52.010000"],["2024-07-24T08:42:53.010000"],["2024-07-24T08:42:54.010000"],["2024-07-24T08:42:55.010000"],["2024-07-24T08:42:56.010000"],["2024-07-24T08:42:57.010000"],["2024-07-24T08:42:58.010000"],["2024-07-24T08:42:59.010000"],["2024-07-24T08:43:00.010000"],["2024-07-24T08:43:01.010000"],["2024-07-24T08:43:02.010000"],["2024-07-24T08:43:03.010000"],["2024-07-24T08:43:04.010000"],["2024-07-24T08:43:05.010000"],["2024-07-24T08:43:06.010000"],["2024-07-24T08:43:07.010000"],["2024-07-24T08:43:08.010000"],["2024-07-24T08:43:09.010000"],["2024-07-24T08:43:10.010000"],["2024-07-24T08:43:11.010000"],["2024-07-24T08:43:12.010000"],["2024-07-24T08:43:13.010000"],["2024-07-24T08:43:14.010000"],["2024-07-24T08:43:15.010000"],["2024-07-24T08:43:16.010000"],["2024-07-24T08:43:17.010000"],["2024-07-24T08:43:18.010000"],["2024-07-24T08:43:19.010000"],["2024-07-24T08:43:20.010000"],["2024-07-24T08:43:21.010000"],["2024-07-24T08:43:22.010000"],["2024-07-24T08:43:23.010000"],["2024-07-24T08:43:24.010000"],["2024-07-24T08:43:25.010000"],["2024-07-24T08:43:26.010000"],["2024-07-24T08:43:27.010000"],["2024-07-24T08:43:28.010000"],["2024-07-24T08:43:29.010000"],["2024-07-24T08:43:30.010000"],["2024-07-24T08:43:31.010000"],["2024-07-24T08:43:32.010000"],["2024-07-24T08:43:33.010000"],["2024-07-24T08:43:34.010000"],["2024-07-24T08:43:35.010000"],["2024-07-24T08:43:36.010000"],["2024-07-24T08:43:37.010000"],["2024-07-24T08:43:38.010000"],["2024-07-24T08:43:39.010000"],["2024-07-24T08:43:40.010000"],["2024-07-24T08:43:41.010000"],["2024-07-24T08:43:42.010000"],["2024-07-24T08:43:43.010000"],["2024-07-24T08:43:44.010000"],["2024-07-24T08:43:45.010000"],["2024-07-24T08:43:46.010000"],["2024-07-24T08:43:47.010000"],["2024-07-24T08:43:48.010000"],["2024-07-24T08:43:49.010000"],["2024-07-24T08:43:50.010000"],["2024-07-24T08:43:51.010000"],["2024-07-24T08:43:52.010000"],["2024-07-24T08:43:53.010000"],["2024-07-24T08:43:54.010000"],["2024-07-24T08:43:55.010000"],["2024-07-24T08:43:56.010000"],["2024-07-24T08:43:57.010000"],["2024-07-24T08:43:58.010000"],["2024-07-24T08:43:59.010000"],["2024-07-24T08:44:00.010000"],["2024-07-24T08:44:01.010000"],["2024-07-24T08:44:02.010000"],["2024-07-24T08:44:03.010000"],["2024-07-24T08:44:04.010000"],["2024-07-24T08:44:05.010000"],["2024-07-24T08:44:06.010000"],["2024-07-24T08:44:07.010000"],["2024-07-24T08:44:08.010000"],["2024-07-24T08:44:09.010000"],["2024-07-24T08:44:10.010000"],["2024-07-24T08:44:11.010000"],["2024-07-24T08:44:12.010000"],["2024-07-24T08:44:13.010000"],["2024-07-24T08:44:14.010000"],["2024-07-24T08:44:15.010000"],["2024-07-24T08:44:16.010000"],["2024-07-24T08:44:17.010000"],["2024-07-24T08:44:18.010000"],["2024-07-24T08:44:19.010000"],["2024-07-24T08:44:20.010000"],["2024-07-24T08:44:21.010000"],["2024-07-24T08:44:22.010000"],["2024-07-24T08:44:23.010000"],["2024-07-24T08:44:24.010000"],["2024-07-24T08:44:25.010000"],["2024-07-24T08:44:26.010000"],["2024-07-24T08:44:27.010000"],["2024-07-24T08:44:28.010000"],["2024-07-24T08:44:29.010000"],["2024-07-24T08:44:30.010000"],["2024-07-24T08:44:31.010000"],["2024-07-24T08:44:32.010000"],["2024-07-24T08:44:33.010000"],["2024-07-24T08:44:34.010000"],["2024-07-24T08:44:35.010000"],["2024-07-24T08:44:36.010000"],["2024-07-24T08:44:37.010000"],["2024-07-24T08:44:38.010000"],["2024-07-24T08:44:39.010000"],["2024-07-24T08:44:40.010000"],["2024-07-24T08:44:41.010000"],["2024-07-24T08:44:42.010000"],["2024-07-24T08:44:43.010000"],["2024-07-24T08:44:44.010000"],["2024-07-24T08:44:45.010000"],["2024-07-24T08:44:46.010000"],["2024-07-24T08:44:47.010000"],["2024-07-24T08:44:48.010000"],["2024-07-24T08:44:49.010000"],["2024-07-24T08:44:50.010000"],["2024-07-24T08:44:51.010000"],["2024-07-24T08:44:52.010000"],["2024-07-24T08:44:53.010000"],["2024-07-24T08:44:54.010000"],["2024-07-24T08:44:55.010000"],["2024-07-24T08:44:56.010000"],["2024-07-24T08:44:57.010000"],["2024-07-24T08:44:58.010000"],["2024-07-24T08:44:59.010000"],["2024-07-24T08:45:00.010000"],["2024-07-24T08:45:01.010000"],["2024-07-24T08:45:02.010000"],["2024-07-24T08:45:03.010000"],["2024-07-24T08:45:04.010000"],["2024-07-24T08:45:05.010000"],["2024-07-24T08:45:06.010000"],["2024-07-24T08:45:07.010000"],["2024-07-24T08:45:08.010000"],["2024-07-24T08:45:09.010000"],["2024-07-24T08:45:10.010000"],["2024-07-24T08:45:11.010000"],["2024-07-24T08:45:12.010000"],["2024-07-24T08:45:13.010000"],["2024-07-24T08:45:14.010000"],["2024-07-24T08:45:15.010000"],["2024-07-24T08:45:16.010000"],["2024-07-24T08:45:17.010000"],["2024-07-24T08:45:18.010000"],["2024-07-24T08:45:19.010000"],["2024-07-24T08:45:20.010000"],["2024-07-24T08:45:21.010000"],["2024-07-24T08:45:22.010000"],["2024-07-24T08:45:23.010000"],["2024-07-24T08:45:24.010000"],["2024-07-24T08:45:25.010000"],["2024-07-24T08:45:26.010000"],["2024-07-24T08:45:27.010000"],["2024-07-24T08:45:28.010000"],["2024-07-24T08:45:29.010000"],["2024-07-24T08:45:30.010000"],["2024-07-24T08:45:31.010000"],["2024-07-24T08:45:32.010000"],["2024-07-24T08:45:33.010000"],["2024-07-24T08:45:34.010000"],["2024-07-24T08:45:35.010000"],["2024-07-24T08:45:36.010000"],["2024-07-24T08:45:37.010000"],["2024-07-24T08:45:38.010000"],["2024-07-24T08:45:39.010000"],["2024-07-24T08:45:40.010000"],["2024-07-24T08:45:41.010000"],["2024-07-24T08:45:42.010000"],["2024-07-24T08:45:43.010000"],["2024-07-24T08:45:44.010000"],["2024-07-24T08:45:45.010000"],["2024-07-24T08:45:46.010000"],["2024-07-24T08:45:47.010000"],["2024-07-24T08:45:48.010000"],["2024-07-24T08:45:49.010000"],["2024-07-24T08:45:50.010000"],["2024-07-24T08:45:51.010000"],["2024-07-24T08:45:52.010000"],["2024-07-24T08:45:53.010000"],["2024-07-24T08:45:54.010000"],["2024-07-24T08:45:55.010000"],["2024-07-24T08:45:56.010000"],["2024-07-24T08:45:57.010000"],["2024-07-24T08:45:58.010000"],["2024-07-24T08:45:59.010000"],["2024-07-24T08:46:00.010000"],["2024-07-24T08:46:01.010000"],["2024-07-24T08:46:02.010000"],["2024-07-24T08:46:03.010000"],["2024-07-24T08:46:04.010000"],["2024-07-24T08:46:05.010000"],["2024-07-24T08:46:06.010000"],["2024-07-24T08:46:07.010000"],["2024-07-24T08:46:08.010000"],["2024-07-24T08:46:09.010000"],["2024-07-24T08:46:10.010000"],["2024-07-24T08:46:11.010000"],["2024-07-24T08:46:12.010000"],["2024-07-24T08:46:13.010000"],["2024-07-24T08:46:14.010000"],["2024-07-24T08:46:15.010000"],["2024-07-24T08:46:16.010000"],["2024-07-24T08:46:17.010000"],["2024-07-24T08:46:18.010000"],["2024-07-24T08:46:19.010000"],["2024-07-24T08:46:20.010000"],["2024-07-24T08:46:21.010000"],["2024-07-24T08:46:22.010000"],["2024-07-24T08:46:23.010000"],["2024-07-24T08:46:24.010000"],["2024-07-24T08:46:25.010000"],["2024-07-24T08:46:26.010000"],["2024-07-24T08:46:27.010000"],["2024-07-24T08:46:28.010000"],["2024-07-24T08:46:29.010000"],["2024-07-24T08:46:30.010000"],["2024-07-24T08:46:31.010000"],["2024-07-24T08:46:32.010000"],["2024-07-24T08:46:33.010000"],["2024-07-24T08:46:34.010000"],["2024-07-24T08:46:35.010000"],["2024-07-24T08:46:36.010000"],["2024-07-24T08:46:37.010000"],["2024-07-24T08:46:38.010000"],["2024-07-24T08:46:39.010000"],["2024-07-24T08:46:40.010000"],["2024-07-24T08:46:41.010000"],["2024-07-24T08:46:42.010000"],["2024-07-24T08:46:43.010000"],["2024-07-24T08:46:44.010000"],["2024-07-24T08:46:45.010000"],["2024-07-24T08:46:46.010000"],["2024-07-24T08:46:47.010000"],["2024-07-24T08:46:48.010000"],["2024-07-24T08:46:49.010000"],["2024-07-24T08:46:50.010000"],["2024-07-24T08:46:51.010000"],["2024-07-24T08:46:52.010000"],["2024-07-24T08:46:53.010000"],["2024-07-24T08:46:54.010000"],["2024-07-24T08:46:55.010000"],["2024-07-24T08:46:56.010000"],["2024-07-24T08:46:57.010000"],["2024-07-24T08:46:58.010000"],["2024-07-24T08:46:59.010000"],["2024-07-24T08:47:00.010000"],["2024-07-24T08:47:01.010000"],["2024-07-24T08:47:02.010000"],["2024-07-24T08:47:03.010000"],["2024-07-24T08:47:04.010000"],["2024-07-24T08:47:05.010000"],["2024-07-24T08:47:06.010000"],["2024-07-24T08:47:07.010000"],["2024-07-24T08:47:08.010000"],["2024-07-24T08:47:09.010000"],["2024-07-24T08:47:10.010000"],["2024-07-24T08:47:11.010000"],["2024-07-24T08:47:12.010000"],["2024-07-24T08:47:13.010000"],["2024-07-24T08:47:14.010000"],["2024-07-24T08:47:15.010000"],["2024-07-24T08:47:16.010000"],["2024-07-24T08:47:17.010000"],["2024-07-24T08:47:18.010000"],["2024-07-24T08:47:19.010000"],["2024-07-24T08:47:20.010000"],["2024-07-24T08:47:21.010000"],["2024-07-24T08:47:22.010000"],["2024-07-24T08:47:23.010000"],["2024-07-24T08:47:24.010000"],["2024-07-24T08:47:25.010000"],["2024-07-24T08:47:26.010000"],["2024-07-24T08:47:27.010000"],["2024-07-24T08:47:28.010000"],["2024-07-24T08:47:29.010000"],["2024-07-24T08:47:30.010000"],["2024-07-24T08:47:31.010000"],["2024-07-24T08:47:32.010000"],["2024-07-24T08:47:33.010000"],["2024-07-24T08:47:34.010000"],["2024-07-24T08:47:35.010000"],["2024-07-24T08:47:36.010000"],["2024-07-24T08:47:37.010000"],["2024-07-24T08:47:38.010000"],["2024-07-24T08:47:39.010000"],["2024-07-24T08:47:40.010000"],["2024-07-24T08:47:41.010000"],["2024-07-24T08:47:42.010000"],["2024-07-24T08:47:43.010000"],["2024-07-24T08:47:44.010000"],["2024-07-24T08:47:45.010000"],["2024-07-24T08:47:46.010000"],["2024-07-24T08:47:47.010000"],["2024-07-24T08:47:48.010000"],["2024-07-24T08:47:49.010000"],["2024-07-24T08:47:50.010000"],["2024-07-24T08:47:51.010000"],["2024-07-24T08:47:52.010000"],["2024-07-24T08:47:53.010000"],["2024-07-24T08:47:54.010000"],["2024-07-24T08:47:55.010000"],["2024-07-24T08:47:56.010000"],["2024-07-24T08:47:57.010000"],["2024-07-24T08:47:58.010000"],["2024-07-24T08:47:59.010000"],["2024-07-24T08:48:00.010000"],["2024-07-24T08:48:01.010000"],["2024-07-24T08:48:02.010000"],["2024-07-24T08:48:03.010000"],["2024-07-24T08:48:04.010000"],["2024-07-24T08:48:05.010000"],["2024-07-24T08:48:06.010000"],["2024-07-24T08:48:07.010000"],["2024-07-24T08:48:08.010000"],["2024-07-24T08:48:09.010000"],["2024-07-24T08:48:10.010000"],["2024-07-24T08:48:11.010000"],["2024-07-24T08:48:12.010000"],["2024-07-24T08:48:13.010000"],["2024-07-24T08:48:14.010000"],["2024-07-24T08:48:15.010000"],["2024-07-24T08:48:16.010000"],["2024-07-24T08:48:17.010000"],["2024-07-24T08:48:18.010000"],["2024-07-24T08:48:19.010000"],["2024-07-24T08:48:20.010000"],["2024-07-24T08:48:21.010000"],["2024-07-24T08:48:22.010000"],["2024-07-24T08:48:23.010000"],["2024-07-24T08:48:24.010000"],["2024-07-24T08:48:25.010000"],["2024-07-24T08:48:26.010000"],["2024-07-24T08:48:27.010000"],["2024-07-24T08:48:28.010000"],["2024-07-24T08:48:29.010000"],["2024-07-24T08:48:30.010000"],["2024-07-24T08:48:31.010000"],["2024-07-24T08:48:32.010000"],["2024-07-24T08:48:33.010000"],["2024-07-24T08:48:34.010000"],["2024-07-24T08:48:35.010000"],["2024-07-24T08:48:36.010000"],["2024-07-24T08:48:37.010000"],["2024-07-24T08:48:38.010000"],["2024-07-24T08:48:39.010000"],["2024-07-24T08:48:40.010000"],["2024-07-24T08:48:41.010000"],["2024-07-24T08:48:42.010000"],["2024-07-24T08:48:43.010000"],["2024-07-24T08:48:44.010000"],["2024-07-24T08:48:45.010000"],["2024-07-24T08:48:46.010000"],["2024-07-24T08:48:47.010000"],["2024-07-24T08:48:48.010000"],["2024-07-24T08:48:49.010000"],["2024-07-24T08:48:50.010000"],["2024-07-24T08:48:51.010000"],["2024-07-24T08:48:52.010000"],["2024-07-24T08:48:53.010000"],["2024-07-24T08:48:54.010000"],["2024-07-24T08:48:55.010000"],["2024-07-24T08:48:56.010000"],["2024-07-24T08:48:57.010000"],["2024-07-24T08:48:58.010000"],["2024-07-24T08:48:59.010000"],["2024-07-24T08:49:00.010000"],["2024-07-24T08:49:01.010000"],["2024-07-24T08:49:02.010000"],["2024-07-24T08:49:03.010000"],["2024-07-24T08:49:04.010000"],["2024-07-24T08:49:05.010000"],["2024-07-24T08:49:06.010000"],["2024-07-24T08:49:07.010000"],["2024-07-24T08:49:08.010000"],["2024-07-24T08:49:09.010000"],["2024-07-24T08:49:10.010000"],["2024-07-24T08:49:11.010000"],["2024-07-24T08:49:12.010000"],["2024-07-24T08:49:13.010000"],["2024-07-24T08:49:14.010000"],["2024-07-24T08:49:15.010000"],["2024-07-24T08:49:16.010000"],["2024-07-24T08:49:17.010000"],["2024-07-24T08:49:18.010000"],["2024-07-24T08:49:19.010000"],["2024-07-24T08:49:20.010000"],["2024-07-24T08:49:21.010000"],["2024-07-24T08:49:22.010000"],["2024-07-24T08:49:23.010000"],["2024-07-24T08:49:24.010000"],["2024-07-24T08:49:25.010000"],["2024-07-24T08:49:26.010000"],["2024-07-24T08:49:27.010000"],["2024-07-24T08:49:28.010000"],["2024-07-24T08:49:29.010000"],["2024-07-24T08:49:30.010000"],["2024-07-24T08:49:31.010000"],["2024-07-24T08:49:32.010000"],["2024-07-24T08:49:33.010000"],["2024-07-24T08:49:34.010000"],["2024-07-24T08:49:35.010000"],["2024-07-24T08:49:36.010000"],["2024-07-24T08:49:37.010000"],["2024-07-24T08:49:38.010000"],["2024-07-24T08:49:39.010000"],["2024-07-24T08:49:40.010000"],["2024-07-24T08:49:41.010000"],["2024-07-24T08:49:42.010000"],["2024-07-24T08:49:43.010000"],["2024-07-24T08:49:44.010000"],["2024-07-24T08:49:45.010000"],["2024-07-24T08:49:46.010000"],["2024-07-24T08:49:47.010000"],["2024-07-24T08:49:48.010000"],["2024-07-24T08:49:49.010000"],["2024-07-24T08:49:50.010000"],["2024-07-24T08:49:51.010000"],["2024-07-24T08:49:52.010000"],["2024-07-24T08:49:53.010000"],["2024-07-24T08:49:54.010000"],["2024-07-24T08:49:55.010000"],["2024-07-24T08:49:56.010000"],["2024-07-24T08:49:57.010000"],["2024-07-24T08:49:58.010000"],["2024-07-24T08:49:59.010000"],["2024-07-24T08:50:00.010000"],["2024-07-24T08:50:01.010000"],["2024-07-24T08:50:02.010000"],["2024-07-24T08:50:03.010000"],["2024-07-24T08:50:04.010000"],["2024-07-24T08:50:05.010000"],["2024-07-24T08:50:06.010000"],["2024-07-24T08:50:07.010000"],["2024-07-24T08:50:08.010000"],["2024-07-24T08:50:09.010000"],["2024-07-24T08:50:10.010000"],["2024-07-24T08:50:11.010000"],["2024-07-24T08:50:12.010000"],["2024-07-24T08:50:13.010000"],["2024-07-24T08:50:14.010000"],["2024-07-24T08:50:15.010000"],["2024-07-24T08:50:16.010000"],["2024-07-24T08:50:17.010000"],["2024-07-24T08:50:18.010000"],["2024-07-24T08:50:19.010000"],["2024-07-24T08:50:20.010000"],["2024-07-24T08:50:21.010000"],["2024-07-24T08:50:22.010000"],["2024-07-24T08:50:23.010000"],["2024-07-24T08:50:24.010000"],["2024-07-24T08:50:25.010000"],["2024-07-24T08:50:26.010000"],["2024-07-24T08:50:27.010000"],["2024-07-24T08:50:28.010000"],["2024-07-24T08:50:29.010000"],["2024-07-24T08:50:30.010000"],["2024-07-24T08:50:31.010000"],["2024-07-24T08:50:32.010000"],["2024-07-24T08:50:33.010000"],["2024-07-24T08:50:34.010000"],["2024-07-24T08:50:35.010000"],["2024-07-24T08:50:36.010000"],["2024-07-24T08:50:37.010000"],["2024-07-24T08:50:38.010000"],["2024-07-24T08:50:39.010000"],["2024-07-24T08:50:40.010000"],["2024-07-24T08:50:41.010000"],["2024-07-24T08:50:42.010000"],["2024-07-24T08:50:43.010000"],["2024-07-24T08:50:44.010000"],["2024-07-24T08:50:45.010000"],["2024-07-24T08:50:46.010000"],["2024-07-24T08:50:47.010000"],["2024-07-24T08:50:48.010000"],["2024-07-24T08:50:49.010000"],["2024-07-24T08:50:50.010000"],["2024-07-24T08:50:51.010000"],["2024-07-24T08:50:52.010000"],["2024-07-24T08:50:53.010000"],["2024-07-24T08:50:54.010000"],["2024-07-24T08:50:55.010000"],["2024-07-24T08:50:56.010000"],["2024-07-24T08:50:57.010000"],["2024-07-24T08:50:58.010000"],["2024-07-24T08:50:59.010000"],["2024-07-24T08:51:00.010000"],["2024-07-24T08:51:01.010000"],["2024-07-24T08:51:02.010000"],["2024-07-24T08:51:03.010000"],["2024-07-24T08:51:04.010000"],["2024-07-24T08:51:05.010000"],["2024-07-24T08:51:06.010000"],["2024-07-24T08:51:07.010000"],["2024-07-24T08:51:08.010000"],["2024-07-24T08:51:09.010000"],["2024-07-24T08:51:10.010000"],["2024-07-24T08:51:11.010000"],["2024-07-24T08:51:12.010000"],["2024-07-24T08:51:13.010000"],["2024-07-24T08:51:14.010000"],["2024-07-24T08:51:15.010000"],["2024-07-24T08:51:16.010000"],["2024-07-24T08:51:17.010000"],["2024-07-24T08:51:18.010000"],["2024-07-24T08:51:19.010000"],["2024-07-24T08:51:20.010000"],["2024-07-24T08:51:21.010000"],["2024-07-24T08:51:22.010000"],["2024-07-24T08:51:23.010000"],["2024-07-24T08:51:24.010000"],["2024-07-24T08:51:25.010000"],["2024-07-24T08:51:26.010000"],["2024-07-24T08:51:27.010000"],["2024-07-24T08:51:28.010000"],["2024-07-24T08:51:29.010000"],["2024-07-24T08:51:30.010000"],["2024-07-24T08:51:31.010000"],["2024-07-24T08:51:32.010000"],["2024-07-24T08:51:33.010000"],["2024-07-24T08:51:34.010000"],["2024-07-24T08:51:35.010000"],["2024-07-24T08:51:36.010000"],["2024-07-24T08:51:37.010000"],["2024-07-24T08:51:38.010000"],["2024-07-24T08:51:39.010000"],["2024-07-24T08:51:40.010000"],["2024-07-24T08:51:41.010000"],["2024-07-24T08:51:42.010000"],["2024-07-24T08:51:43.010000"],["2024-07-24T08:51:44.010000"],["2024-07-24T08:51:45.010000"],["2024-07-24T08:51:46.010000"],["2024-07-24T08:51:47.010000"],["2024-07-24T08:51:48.010000"],["2024-07-24T08:51:49.010000"],["2024-07-24T08:51:50.010000"],["2024-07-24T08:51:51.010000"],["2024-07-24T08:51:52.010000"],["2024-07-24T08:51:53.010000"],["2024-07-24T08:51:54.010000"],["2024-07-24T08:51:55.010000"],["2024-07-24T08:51:56.010000"],["2024-07-24T08:51:57.010000"],["2024-07-24T08:51:58.010000"],["2024-07-24T08:51:59.010000"],["2024-07-24T08:52:00.010000"],["2024-07-24T08:52:01.010000"],["2024-07-24T08:52:02.010000"],["2024-07-24T08:52:03.010000"],["2024-07-24T08:52:04.010000"],["2024-07-24T08:52:05.010000"],["2024-07-24T08:52:06.010000"],["2024-07-24T08:52:07.010000"],["2024-07-24T08:52:08.010000"],["2024-07-24T08:52:09.010000"],["2024-07-24T08:52:10.010000"],["2024-07-24T08:52:11.010000"],["2024-07-24T08:52:12.010000"],["2024-07-24T08:52:13.010000"],["2024-07-24T08:52:14.010000"],["2024-07-24T08:52:15.010000"],["2024-07-24T08:52:16.010000"],["2024-07-24T08:52:17.010000"],["2024-07-24T08:52:18.010000"],["2024-07-24T08:52:19.010000"],["2024-07-24T08:52:20.010000"],["2024-07-24T08:52:21.010000"],["2024-07-24T08:52:22.010000"],["2024-07-24T08:52:23.010000"],["2024-07-24T08:52:24.010000"],["2024-07-24T08:52:25.010000"],["2024-07-24T08:52:26.010000"],["2024-07-24T08:52:27.010000"],["2024-07-24T08:52:28.010000"],["2024-07-24T08:52:29.010000"],["2024-07-24T08:52:30.010000"],["2024-07-24T08:52:31.010000"],["2024-07-24T08:52:32.010000"],["2024-07-24T08:52:33.010000"],["2024-07-24T08:52:34.010000"],["2024-07-24T08:52:35.010000"],["2024-07-24T08:52:36.010000"],["2024-07-24T08:52:37.010000"],["2024-07-24T08:52:38.010000"],["2024-07-24T08:52:39.010000"],["2024-07-24T08:52:40.010000"],["2024-07-24T08:52:41.010000"],["2024-07-24T08:52:42.010000"],["2024-07-24T08:52:43.010000"],["2024-07-24T08:52:44.010000"],["2024-07-24T08:52:45.010000"],["2024-07-24T08:52:46.010000"],["2024-07-24T08:52:47.010000"],["2024-07-24T08:52:48.010000"],["2024-07-24T08:52:49.010000"],["2024-07-24T08:52:50.010000"],["2024-07-24T08:52:51.010000"],["2024-07-24T08:52:52.010000"],["2024-07-24T08:52:53.010000"],["2024-07-24T08:52:54.010000"],["2024-07-24T08:52:55.010000"],["2024-07-24T08:52:56.010000"],["2024-07-24T08:52:57.010000"],["2024-07-24T08:52:58.010000"],["2024-07-24T08:52:59.010000"],["2024-07-24T08:53:00.010000"],["2024-07-24T08:53:01.010000"],["2024-07-24T08:53:02.010000"],["2024-07-24T08:53:03.010000"],["2024-07-24T08:53:04.010000"],["2024-07-24T08:53:05.010000"],["2024-07-24T08:53:06.010000"],["2024-07-24T08:53:07.010000"],["2024-07-24T08:53:08.010000"],["2024-07-24T08:53:09.010000"],["2024-07-24T08:53:10.010000"],["2024-07-24T08:53:11.010000"],["2024-07-24T08:53:12.010000"],["2024-07-24T08:53:13.010000"],["2024-07-24T08:53:14.010000"],["2024-07-24T08:53:15.010000"],["2024-07-24T08:53:16.010000"],["2024-07-24T08:53:17.010000"],["2024-07-24T08:53:18.010000"],["2024-07-24T08:53:19.010000"],["2024-07-24T08:53:20.010000"],["2024-07-24T08:53:21.010000"],["2024-07-24T08:53:22.010000"],["2024-07-24T08:53:23.010000"],["2024-07-24T08:53:24.010000"],["2024-07-24T08:53:25.010000"],["2024-07-24T08:53:26.010000"],["2024-07-24T08:53:27.010000"],["2024-07-24T08:53:28.010000"],["2024-07-24T08:53:29.010000"],["2024-07-24T08:53:30.010000"],["2024-07-24T08:53:31.010000"],["2024-07-24T08:53:32.010000"],["2024-07-24T08:53:33.010000"],["2024-07-24T08:53:34.010000"],["2024-07-24T08:53:35.010000"],["2024-07-24T08:53:36.010000"],["2024-07-24T08:53:37.010000"],["2024-07-24T08:53:38.010000"],["2024-07-24T08:53:39.010000"],["2024-07-24T08:53:40.010000"],["2024-07-24T08:53:41.010000"],["2024-07-24T08:53:42.010000"],["2024-07-24T08:53:43.010000"],["2024-07-24T08:53:44.010000"],["2024-07-24T08:53:45.010000"],["2024-07-24T08:53:46.010000"],["2024-07-24T08:53:47.010000"],["2024-07-24T08:53:48.010000"],["2024-07-24T08:53:49.010000"],["2024-07-24T08:53:50.010000"],["2024-07-24T08:53:51.010000"],["2024-07-24T08:53:52.010000"],["2024-07-24T08:53:53.010000"],["2024-07-24T08:53:54.010000"],["2024-07-24T08:53:55.010000"],["2024-07-24T08:53:56.010000"],["2024-07-24T08:53:57.010000"],["2024-07-24T08:53:58.010000"],["2024-07-24T08:53:59.010000"],["2024-07-24T08:54:00.010000"],["2024-07-24T08:54:01.010000"],["2024-07-24T08:54:02.010000"],["2024-07-24T08:54:03.010000"],["2024-07-24T08:54:04.010000"],["2024-07-24T08:54:05.010000"],["2024-07-24T08:54:06.010000"],["2024-07-24T08:54:07.010000"],["2024-07-24T08:54:08.010000"],["2024-07-24T08:54:09.010000"],["2024-07-24T08:54:10.010000"],["2024-07-24T08:54:11.010000"],["2024-07-24T08:54:12.010000"],["2024-07-24T08:54:13.010000"],["2024-07-24T08:54:14.010000"],["2024-07-24T08:54:15.010000"],["2024-07-24T08:54:16.010000"],["2024-07-24T08:54:17.010000"],["2024-07-24T08:54:18.010000"],["2024-07-24T08:54:19.010000"],["2024-07-24T08:54:20.010000"],["2024-07-24T08:54:21.010000"],["2024-07-24T08:54:22.010000"],["2024-07-24T08:54:23.010000"],["2024-07-24T08:54:24.010000"],["2024-07-24T08:54:25.010000"],["2024-07-24T08:54:26.010000"],["2024-07-24T08:54:27.010000"],["2024-07-24T08:54:28.010000"],["2024-07-24T08:54:29.010000"],["2024-07-24T08:54:30.010000"],["2024-07-24T08:54:31.010000"],["2024-07-24T08:54:32.010000"],["2024-07-24T08:54:33.010000"],["2024-07-24T08:54:34.010000"],["2024-07-24T08:54:35.010000"],["2024-07-24T08:54:36.010000"],["2024-07-24T08:54:37.010000"],["2024-07-24T08:54:38.010000"],["2024-07-24T08:54:39.010000"],["2024-07-24T08:54:40.010000"],["2024-07-24T08:54:41.010000"],["2024-07-24T08:54:42.010000"],["2024-07-24T08:54:43.010000"],["2024-07-24T08:54:44.010000"],["2024-07-24T08:54:45.010000"],["2024-07-24T08:54:46.010000"],["2024-07-24T08:54:47.010000"],["2024-07-24T08:54:48.010000"],["2024-07-24T08:54:49.010000"],["2024-07-24T08:54:50.010000"],["2024-07-24T08:54:51.010000"],["2024-07-24T08:54:52.010000"],["2024-07-24T08:54:53.010000"],["2024-07-24T08:54:54.010000"],["2024-07-24T08:54:55.010000"],["2024-07-24T08:54:56.010000"],["2024-07-24T08:54:57.010000"],["2024-07-24T08:54:58.010000"],["2024-07-24T08:54:59.010000"],["2024-07-24T08:55:00.010000"],["2024-07-24T08:55:01.010000"],["2024-07-24T08:55:02.010000"],["2024-07-24T08:55:03.010000"],["2024-07-24T08:55:04.010000"],["2024-07-24T08:55:05.010000"],["2024-07-24T08:55:06.010000"],["2024-07-24T08:55:07.010000"],["2024-07-24T08:55:08.010000"],["2024-07-24T08:55:09.010000"],["2024-07-24T08:55:10.010000"],["2024-07-24T08:55:11.010000"],["2024-07-24T08:55:12.010000"],["2024-07-24T08:55:13.010000"],["2024-07-24T08:55:14.010000"],["2024-07-24T08:55:15.010000"],["2024-07-24T08:55:16.010000"],["2024-07-24T08:55:17.010000"],["2024-07-24T08:55:18.010000"],["2024-07-24T08:55:19.010000"],["2024-07-24T08:55:20.010000"],["2024-07-24T08:55:21.010000"],["2024-07-24T08:55:22.010000"],["2024-07-24T08:55:23.010000"],["2024-07-24T08:55:24.010000"],["2024-07-24T08:55:25.010000"],["2024-07-24T08:55:26.010000"],["2024-07-24T08:55:27.010000"],["2024-07-24T08:55:28.010000"],["2024-07-24T08:55:29.010000"],["2024-07-24T08:55:30.010000"],["2024-07-24T08:55:31.010000"],["2024-07-24T08:55:32.010000"],["2024-07-24T08:55:33.010000"],["2024-07-24T08:55:34.010000"],["2024-07-24T08:55:35.010000"],["2024-07-24T08:55:36.010000"],["2024-07-24T08:55:37.010000"],["2024-07-24T08:55:38.010000"],["2024-07-24T08:55:39.010000"],["2024-07-24T08:55:40.010000"],["2024-07-24T08:55:41.010000"],["2024-07-24T08:55:42.010000"],["2024-07-24T08:55:43.010000"],["2024-07-24T08:55:44.010000"],["2024-07-24T08:55:45.010000"],["2024-07-24T08:55:46.010000"],["2024-07-24T08:55:47.010000"],["2024-07-24T08:55:48.010000"],["2024-07-24T08:55:49.010000"],["2024-07-24T08:55:50.010000"],["2024-07-24T08:55:51.010000"],["2024-07-24T08:55:52.010000"],["2024-07-24T08:55:53.010000"],["2024-07-24T08:55:54.010000"],["2024-07-24T08:55:55.010000"],["2024-07-24T08:55:56.010000"],["2024-07-24T08:55:57.010000"],["2024-07-24T08:55:58.010000"],["2024-07-24T08:55:59.010000"],["2024-07-24T08:56:00.010000"],["2024-07-24T08:56:01.010000"],["2024-07-24T08:56:02.010000"],["2024-07-24T08:56:03.010000"],["2024-07-24T08:56:04.010000"],["2024-07-24T08:56:05.010000"],["2024-07-24T08:56:06.010000"],["2024-07-24T08:56:07.010000"],["2024-07-24T08:56:08.010000"],["2024-07-24T08:56:09.010000"],["2024-07-24T08:56:10.010000"],["2024-07-24T08:56:11.010000"],["2024-07-24T08:56:12.010000"],["2024-07-24T08:56:13.010000"],["2024-07-24T08:56:14.010000"],["2024-07-24T08:56:15.010000"],["2024-07-24T08:56:16.010000"],["2024-07-24T08:56:17.010000"],["2024-07-24T08:56:18.010000"],["2024-07-24T08:56:19.010000"],["2024-07-24T08:56:20.010000"],["2024-07-24T08:56:21.010000"],["2024-07-24T08:56:22.010000"],["2024-07-24T08:56:23.010000"],["2024-07-24T08:56:24.010000"],["2024-07-24T08:56:25.010000"],["2024-07-24T08:56:26.010000"],["2024-07-24T08:56:27.010000"],["2024-07-24T08:56:28.010000"],["2024-07-24T08:56:29.010000"],["2024-07-24T08:56:30.010000"],["2024-07-24T08:56:31.010000"],["2024-07-24T08:56:32.010000"],["2024-07-24T08:56:33.010000"],["2024-07-24T08:56:34.010000"],["2024-07-24T08:56:35.010000"],["2024-07-24T08:56:36.010000"],["2024-07-24T08:56:37.010000"],["2024-07-24T08:56:38.010000"],["2024-07-24T08:56:39.010000"],["2024-07-24T08:56:40.010000"],["2024-07-24T08:56:41.010000"],["2024-07-24T08:56:42.010000"],["2024-07-24T08:56:43.010000"],["2024-07-24T08:56:44.010000"],["2024-07-24T08:56:45.010000"],["2024-07-24T08:56:46.010000"],["2024-07-24T08:56:47.010000"],["2024-07-24T08:56:48.010000"],["2024-07-24T08:56:49.010000"],["2024-07-24T08:56:50.010000"],["2024-07-24T08:56:51.010000"],["2024-07-24T08:56:52.010000"],["2024-07-24T08:56:53.010000"],["2024-07-24T08:56:54.010000"],["2024-07-24T08:56:55.010000"],["2024-07-24T08:56:56.010000"],["2024-07-24T08:56:57.010000"],["2024-07-24T08:56:58.010000"],["2024-07-24T08:56:59.010000"],["2024-07-24T08:57:00.010000"],["2024-07-24T08:57:01.010000"],["2024-07-24T08:57:02.010000"],["2024-07-24T08:57:03.010000"],["2024-07-24T08:57:04.010000"],["2024-07-24T08:57:05.010000"],["2024-07-24T08:57:06.010000"],["2024-07-24T08:57:07.010000"],["2024-07-24T08:57:08.010000"],["2024-07-24T08:57:09.010000"],["2024-07-24T08:57:10.010000"],["2024-07-24T08:57:11.010000"],["2024-07-24T08:57:12.010000"],["2024-07-24T08:57:13.010000"],["2024-07-24T08:57:14.010000"],["2024-07-24T08:57:15.010000"],["2024-07-24T08:57:16.010000"],["2024-07-24T08:57:17.010000"],["2024-07-24T08:57:18.010000"],["2024-07-24T08:57:19.010000"],["2024-07-24T08:57:20.010000"],["2024-07-24T08:57:21.010000"],["2024-07-24T08:57:22.010000"],["2024-07-24T08:57:23.010000"],["2024-07-24T08:57:24.010000"],["2024-07-24T08:57:25.010000"],["2024-07-24T08:57:26.010000"],["2024-07-24T08:57:27.010000"],["2024-07-24T08:57:28.010000"],["2024-07-24T08:57:29.010000"],["2024-07-24T08:57:30.010000"],["2024-07-24T08:57:31.010000"],["2024-07-24T08:57:32.010000"],["2024-07-24T08:57:33.010000"],["2024-07-24T08:57:34.010000"],["2024-07-24T08:57:35.010000"],["2024-07-24T08:57:36.010000"],["2024-07-24T08:57:37.010000"],["2024-07-24T08:57:38.010000"],["2024-07-24T08:57:39.010000"],["2024-07-24T08:57:40.010000"],["2024-07-24T08:57:41.010000"],["2024-07-24T08:57:42.010000"],["2024-07-24T08:57:43.010000"],["2024-07-24T08:57:44.010000"],["2024-07-24T08:57:45.010000"],["2024-07-24T08:57:46.010000"],["2024-07-24T08:57:47.010000"],["2024-07-24T08:57:48.010000"],["2024-07-24T08:57:49.010000"],["2024-07-24T08:57:50.010000"],["2024-07-24T08:57:51.010000"],["2024-07-24T08:57:52.010000"],["2024-07-24T08:57:53.010000"],["2024-07-24T08:57:54.010000"],["2024-07-24T08:57:55.010000"],["2024-07-24T08:57:56.010000"],["2024-07-24T08:57:57.010000"],["2024-07-24T08:57:58.010000"],["2024-07-24T08:57:59.010000"],["2024-07-24T08:58:00.010000"],["2024-07-24T08:58:01.010000"],["2024-07-24T08:58:02.010000"],["2024-07-24T08:58:03.010000"],["2024-07-24T08:58:04.010000"],["2024-07-24T08:58:05.010000"],["2024-07-24T08:58:06.010000"],["2024-07-24T08:58:07.010000"],["2024-07-24T08:58:08.010000"],["2024-07-24T08:58:09.010000"],["2024-07-24T08:58:10.010000"],["2024-07-24T08:58:11.010000"],["2024-07-24T08:58:12.010000"],["2024-07-24T08:58:13.010000"],["2024-07-24T08:58:14.010000"],["2024-07-24T08:58:15.010000"],["2024-07-24T08:58:16.010000"],["2024-07-24T08:58:17.010000"],["2024-07-24T08:58:18.010000"],["2024-07-24T08:58:19.010000"],["2024-07-24T08:58:20.010000"],["2024-07-24T08:58:21.010000"],["2024-07-24T08:58:22.010000"],["2024-07-24T08:58:23.010000"],["2024-07-24T08:58:24.010000"],["2024-07-24T08:58:25.010000"],["2024-07-24T08:58:26.010000"],["2024-07-24T08:58:27.010000"],["2024-07-24T08:58:28.010000"],["2024-07-24T08:58:29.010000"],["2024-07-24T08:58:30.010000"],["2024-07-24T08:58:31.010000"],["2024-07-24T08:58:32.010000"],["2024-07-24T08:58:33.010000"],["2024-07-24T08:58:34.010000"],["2024-07-24T08:58:35.010000"],["2024-07-24T08:58:36.010000"],["2024-07-24T08:58:37.010000"],["2024-07-24T08:58:38.010000"],["2024-07-24T08:58:39.010000"],["2024-07-24T08:58:40.010000"],["2024-07-24T08:58:41.010000"],["2024-07-24T08:58:42.010000"],["2024-07-24T08:58:43.010000"],["2024-07-24T08:58:44.010000"],["2024-07-24T08:58:45.010000"],["2024-07-24T08:58:46.010000"],["2024-07-24T08:58:47.010000"],["2024-07-24T08:58:48.010000"],["2024-07-24T08:58:49.010000"],["2024-07-24T08:58:50.010000"],["2024-07-24T08:58:51.010000"],["2024-07-24T08:58:52.010000"],["2024-07-24T08:58:53.010000"],["2024-07-24T08:58:54.010000"],["2024-07-24T08:58:55.010000"],["2024-07-24T08:58:56.010000"],["2024-07-24T08:58:57.010000"],["2024-07-24T08:58:58.010000"],["2024-07-24T08:58:59.010000"],["2024-07-24T08:59:00.010000"],["2024-07-24T08:59:01.010000"],["2024-07-24T08:59:02.010000"],["2024-07-24T08:59:03.010000"],["2024-07-24T08:59:04.010000"],["2024-07-24T08:59:05.010000"],["2024-07-24T08:59:06.010000"],["2024-07-24T08:59:07.010000"],["2024-07-24T08:59:08.010000"],["2024-07-24T08:59:09.010000"],["2024-07-24T08:59:10.010000"],["2024-07-24T08:59:11.010000"],["2024-07-24T08:59:12.010000"],["2024-07-24T08:59:13.010000"],["2024-07-24T08:59:14.010000"],["2024-07-24T08:59:15.010000"],["2024-07-24T08:59:16.010000"],["2024-07-24T08:59:17.010000"],["2024-07-24T08:59:18.010000"],["2024-07-24T08:59:19.010000"],["2024-07-24T08:59:20.010000"],["2024-07-24T08:59:21.010000"],["2024-07-24T08:59:22.010000"],["2024-07-24T08:59:23.010000"],["2024-07-24T08:59:24.010000"],["2024-07-24T08:59:25.010000"],["2024-07-24T08:59:26.010000"],["2024-07-24T08:59:27.010000"],["2024-07-24T08:59:28.010000"],["2024-07-24T08:59:29.010000"],["2024-07-24T08:59:30.010000"],["2024-07-24T08:59:31.010000"],["2024-07-24T08:59:32.010000"],["2024-07-24T08:59:33.010000"],["2024-07-24T08:59:34.010000"],["2024-07-24T08:59:35.010000"],["2024-07-24T08:59:36.010000"],["2024-07-24T08:59:37.010000"],["2024-07-24T08:59:38.010000"],["2024-07-24T08:59:39.010000"],["2024-07-24T08:59:40.010000"],["2024-07-24T08:59:41.010000"],["2024-07-24T08:59:42.010000"],["2024-07-24T08:59:43.010000"],["2024-07-24T08:59:44.010000"],["2024-07-24T08:59:45.010000"],["2024-07-24T08:59:46.010000"],["2024-07-24T08:59:47.010000"],["2024-07-24T08:59:48.010000"],["2024-07-24T08:59:49.010000"],["2024-07-24T08:59:50.010000"],["2024-07-24T08:59:51.010000"],["2024-07-24T08:59:52.010000"],["2024-07-24T08:59:53.010000"],["2024-07-24T08:59:54.010000"],["2024-07-24T08:59:55.010000"],["2024-07-24T08:59:56.010000"],["2024-07-24T08:59:57.010000"],["2024-07-24T08:59:58.010000"],["2024-07-24T08:59:59.010000"],["2024-07-24T09:00:00.010000"],["2024-07-24T09:00:01.010000"],["2024-07-24T09:00:02.010000"],["2024-07-24T09:00:03.010000"],["2024-07-24T09:00:04.010000"],["2024-07-24T09:00:05.010000"],["2024-07-24T09:00:06.010000"],["2024-07-24T09:00:07.010000"],["2024-07-24T09:00:08.010000"],["2024-07-24T09:00:09.010000"],["2024-07-24T09:00:10.010000"],["2024-07-24T09:00:11.010000"],["2024-07-24T09:00:12.010000"],["2024-07-24T09:00:13.010000"],["2024-07-24T09:00:14.010000"],["2024-07-24T09:00:15.010000"],["2024-07-24T09:00:16.010000"],["2024-07-24T09:00:17.010000"],["2024-07-24T09:00:18.010000"],["2024-07-24T09:00:19.010000"],["2024-07-24T09:00:20.010000"],["2024-07-24T09:00:21.010000"],["2024-07-24T09:00:22.010000"],["2024-07-24T09:00:23.010000"],["2024-07-24T09:00:24.010000"],["2024-07-24T09:00:25.010000"],["2024-07-24T09:00:26.010000"],["2024-07-24T09:00:27.010000"],["2024-07-24T09:00:28.010000"],["2024-07-24T09:00:29.010000"],["2024-07-24T09:00:30.010000"],["2024-07-24T09:00:31.010000"],["2024-07-24T09:00:32.010000"],["2024-07-24T09:00:33.010000"],["2024-07-24T09:00:34.010000"],["2024-07-24T09:00:35.010000"],["2024-07-24T09:00:36.010000"],["2024-07-24T09:00:37.010000"],["2024-07-24T09:00:38.010000"],["2024-07-24T09:00:39.010000"],["2024-07-24T09:00:40.010000"],["2024-07-24T09:00:41.010000"],["2024-07-24T09:00:42.010000"],["2024-07-24T09:00:43.010000"],["2024-07-24T09:00:44.010000"],["2024-07-24T09:00:45.010000"],["2024-07-24T09:00:46.010000"],["2024-07-24T09:00:47.010000"],["2024-07-24T09:00:48.010000"],["2024-07-24T09:00:49.010000"],["2024-07-24T09:00:50.010000"],["2024-07-24T09:00:51.010000"],["2024-07-24T09:00:52.010000"],["2024-07-24T09:00:53.010000"],["2024-07-24T09:00:54.010000"],["2024-07-24T09:00:55.010000"],["2024-07-24T09:00:56.010000"],["2024-07-24T09:00:57.010000"],["2024-07-24T09:00:58.010000"],["2024-07-24T09:00:59.010000"],["2024-07-24T09:01:00.010000"],["2024-07-24T09:01:01.010000"],["2024-07-24T09:01:02.010000"],["2024-07-24T09:01:03.010000"],["2024-07-24T09:01:04.010000"],["2024-07-24T09:01:05.010000"],["2024-07-24T09:01:06.010000"],["2024-07-24T09:01:07.010000"],["2024-07-24T09:01:08.010000"],["2024-07-24T09:01:09.010000"],["2024-07-24T09:01:10.010000"],["2024-07-24T09:01:11.010000"],["2024-07-24T09:01:12.010000"],["2024-07-24T09:01:13.010000"],["2024-07-24T09:01:14.010000"],["2024-07-24T09:01:15.010000"],["2024-07-24T09:01:16.010000"],["2024-07-24T09:01:17.010000"],["2024-07-24T09:01:18.010000"],["2024-07-24T09:01:19.010000"],["2024-07-24T09:01:20.010000"],["2024-07-24T09:01:21.010000"],["2024-07-24T09:01:22.010000"],["2024-07-24T09:01:23.010000"],["2024-07-24T09:01:24.010000"],["2024-07-24T09:01:25.010000"],["2024-07-24T09:01:26.010000"],["2024-07-24T09:01:27.010000"],["2024-07-24T09:01:28.010000"],["2024-07-24T09:01:29.010000"],["2024-07-24T09:01:30.010000"],["2024-07-24T09:01:31.010000"],["2024-07-24T09:01:32.010000"],["2024-07-24T09:01:33.010000"],["2024-07-24T09:01:34.010000"],["2024-07-24T09:01:35.010000"],["2024-07-24T09:01:36.010000"],["2024-07-24T09:01:37.010000"],["2024-07-24T09:01:38.010000"],["2024-07-24T09:01:39.010000"],["2024-07-24T09:01:40.010000"],["2024-07-24T09:01:41.010000"],["2024-07-24T09:01:42.010000"],["2024-07-24T09:01:43.010000"],["2024-07-24T09:01:44.010000"],["2024-07-24T09:01:45.010000"],["2024-07-24T09:01:46.010000"],["2024-07-24T09:01:47.010000"],["2024-07-24T09:01:48.010000"],["2024-07-24T09:01:49.010000"],["2024-07-24T09:01:50.010000"],["2024-07-24T09:01:51.010000"],["2024-07-24T09:01:52.010000"],["2024-07-24T09:01:53.010000"],["2024-07-24T09:01:54.010000"],["2024-07-24T09:01:55.010000"],["2024-07-24T09:01:56.010000"],["2024-07-24T09:01:57.010000"],["2024-07-24T09:01:58.010000"],["2024-07-24T09:01:59.010000"],["2024-07-24T09:02:00.010000"],["2024-07-24T09:02:01.010000"],["2024-07-24T09:02:02.010000"],["2024-07-24T09:02:03.010000"],["2024-07-24T09:02:04.010000"],["2024-07-24T09:02:05.010000"],["2024-07-24T09:02:06.010000"],["2024-07-24T09:02:07.010000"],["2024-07-24T09:02:08.010000"],["2024-07-24T09:02:09.010000"],["2024-07-24T09:02:10.010000"],["2024-07-24T09:02:11.010000"],["2024-07-24T09:02:12.010000"],["2024-07-24T09:02:13.010000"],["2024-07-24T09:02:14.010000"],["2024-07-24T09:02:15.010000"],["2024-07-24T09:02:16.010000"],["2024-07-24T09:02:17.010000"],["2024-07-24T09:02:18.010000"],["2024-07-24T09:02:19.010000"],["2024-07-24T09:02:20.010000"],["2024-07-24T09:02:21.010000"],["2024-07-24T09:02:22.010000"],["2024-07-24T09:02:23.010000"],["2024-07-24T09:02:24.010000"],["2024-07-24T09:02:25.010000"],["2024-07-24T09:02:26.010000"],["2024-07-24T09:02:27.010000"],["2024-07-24T09:02:28.010000"],["2024-07-24T09:02:29.010000"],["2024-07-24T09:02:30.010000"],["2024-07-24T09:02:31.010000"],["2024-07-24T09:02:32.010000"],["2024-07-24T09:02:33.010000"],["2024-07-24T09:02:34.010000"],["2024-07-24T09:02:35.010000"],["2024-07-24T09:02:36.010000"],["2024-07-24T09:02:37.010000"],["2024-07-24T09:02:38.010000"],["2024-07-24T09:02:39.010000"],["2024-07-24T09:02:40.010000"],["2024-07-24T09:02:41.010000"],["2024-07-24T09:02:42.010000"],["2024-07-24T09:02:43.010000"],["2024-07-24T09:02:44.010000"],["2024-07-24T09:02:45.010000"],["2024-07-24T09:02:46.010000"],["2024-07-24T09:02:47.010000"],["2024-07-24T09:02:48.010000"],["2024-07-24T09:02:49.010000"],["2024-07-24T09:02:50.010000"],["2024-07-24T09:02:51.010000"],["2024-07-24T09:02:52.010000"],["2024-07-24T09:02:53.010000"],["2024-07-24T09:02:54.010000"],["2024-07-24T09:02:55.010000"],["2024-07-24T09:02:56.010000"],["2024-07-24T09:02:57.010000"],["2024-07-24T09:02:58.010000"],["2024-07-24T09:02:59.010000"],["2024-07-24T09:03:00.010000"],["2024-07-24T09:03:01.010000"],["2024-07-24T09:03:02.010000"],["2024-07-24T09:03:03.010000"],["2024-07-24T09:03:04.010000"],["2024-07-24T09:03:05.010000"],["2024-07-24T09:03:06.010000"],["2024-07-24T09:03:07.010000"],["2024-07-24T09:03:08.010000"],["2024-07-24T09:03:09.010000"],["2024-07-24T09:03:10.010000"],["2024-07-24T09:03:11.010000"],["2024-07-24T09:03:12.010000"],["2024-07-24T09:03:13.010000"],["2024-07-24T09:03:14.010000"],["2024-07-24T09:03:15.010000"],["2024-07-24T09:03:16.010000"],["2024-07-24T09:03:17.010000"],["2024-07-24T09:03:18.010000"],["2024-07-24T09:03:19.010000"],["2024-07-24T09:03:20.010000"],["2024-07-24T09:03:21.010000"],["2024-07-24T09:03:22.010000"],["2024-07-24T09:03:23.010000"],["2024-07-24T09:03:24.010000"],["2024-07-24T09:03:25.010000"],["2024-07-24T09:03:26.010000"],["2024-07-24T09:03:27.010000"],["2024-07-24T09:03:28.010000"],["2024-07-24T09:03:29.010000"],["2024-07-24T09:03:30.010000"],["2024-07-24T09:03:31.010000"],["2024-07-24T09:03:32.010000"],["2024-07-24T09:03:33.010000"],["2024-07-24T09:03:34.010000"],["2024-07-24T09:03:35.010000"],["2024-07-24T09:03:36.010000"],["2024-07-24T09:03:37.010000"],["2024-07-24T09:03:38.010000"],["2024-07-24T09:03:39.010000"],["2024-07-24T09:03:40.010000"],["2024-07-24T09:03:41.010000"],["2024-07-24T09:03:42.010000"],["2024-07-24T09:03:43.010000"],["2024-07-24T09:03:44.010000"],["2024-07-24T09:03:45.010000"],["2024-07-24T09:03:46.010000"],["2024-07-24T09:03:47.010000"],["2024-07-24T09:03:48.010000"],["2024-07-24T09:03:49.010000"],["2024-07-24T09:03:50.010000"],["2024-07-24T09:03:51.010000"],["2024-07-24T09:03:52.010000"],["2024-07-24T09:03:53.010000"],["2024-07-24T09:03:54.010000"],["2024-07-24T09:03:55.010000"],["2024-07-24T09:03:56.010000"],["2024-07-24T09:03:57.010000"],["2024-07-24T09:03:58.010000"],["2024-07-24T09:03:59.010000"],["2024-07-24T09:04:00.010000"],["2024-07-24T09:04:01.010000"],["2024-07-24T09:04:02.010000"],["2024-07-24T09:04:03.010000"],["2024-07-24T09:04:04.010000"],["2024-07-24T09:04:05.010000"],["2024-07-24T09:04:06.010000"],["2024-07-24T09:04:07.010000"],["2024-07-24T09:04:08.010000"],["2024-07-24T09:04:09.010000"],["2024-07-24T09:04:10.010000"],["2024-07-24T09:04:11.010000"],["2024-07-24T09:04:12.010000"],["2024-07-24T09:04:13.010000"],["2024-07-24T09:04:14.010000"],["2024-07-24T09:04:15.010000"],["2024-07-24T09:04:16.010000"],["2024-07-24T09:04:17.010000"],["2024-07-24T09:04:18.010000"],["2024-07-24T09:04:19.010000"],["2024-07-24T09:04:20.010000"],["2024-07-24T09:04:21.010000"],["2024-07-24T09:04:22.010000"],["2024-07-24T09:04:23.010000"],["2024-07-24T09:04:24.010000"],["2024-07-24T09:04:25.010000"],["2024-07-24T09:04:26.010000"],["2024-07-24T09:04:27.010000"],["2024-07-24T09:04:28.010000"],["2024-07-24T09:04:29.010000"],["2024-07-24T09:04:30.010000"],["2024-07-24T09:04:31.010000"],["2024-07-24T09:04:32.010000"],["2024-07-24T09:04:33.010000"],["2024-07-24T09:04:34.010000"],["2024-07-24T09:04:35.010000"],["2024-07-24T09:04:36.010000"],["2024-07-24T09:04:37.010000"],["2024-07-24T09:04:38.010000"],["2024-07-24T09:04:39.010000"],["2024-07-24T09:04:40.010000"],["2024-07-24T09:04:41.010000"],["2024-07-24T09:04:42.010000"],["2024-07-24T09:04:43.010000"],["2024-07-24T09:04:44.010000"],["2024-07-24T09:04:45.010000"],["2024-07-24T09:04:46.010000"],["2024-07-24T09:04:47.010000"],["2024-07-24T09:04:48.010000"],["2024-07-24T09:04:49.010000"],["2024-07-24T09:04:50.010000"],["2024-07-24T09:04:51.010000"],["2024-07-24T09:04:52.010000"],["2024-07-24T09:04:53.010000"],["2024-07-24T09:04:54.010000"],["2024-07-24T09:04:55.010000"],["2024-07-24T09:04:56.010000"],["2024-07-24T09:04:57.010000"],["2024-07-24T09:04:58.010000"],["2024-07-24T09:04:59.010000"],["2024-07-24T09:05:00.010000"],["2024-07-24T09:05:01.010000"],["2024-07-24T09:05:02.010000"],["2024-07-24T09:05:03.010000"],["2024-07-24T09:05:04.010000"],["2024-07-24T09:05:05.010000"],["2024-07-24T09:05:06.010000"],["2024-07-24T09:05:07.010000"],["2024-07-24T09:05:08.010000"],["2024-07-24T09:05:09.010000"],["2024-07-24T09:05:10.010000"],["2024-07-24T09:05:11.010000"],["2024-07-24T09:05:12.010000"],["2024-07-24T09:05:13.010000"],["2024-07-24T09:05:14.010000"],["2024-07-24T09:05:15.010000"],["2024-07-24T09:05:16.010000"],["2024-07-24T09:05:17.010000"],["2024-07-24T09:05:18.010000"],["2024-07-24T09:05:19.010000"],["2024-07-24T09:05:20.010000"],["2024-07-24T09:05:21.010000"],["2024-07-24T09:05:22.010000"],["2024-07-24T09:05:23.010000"],["2024-07-24T09:05:24.010000"],["2024-07-24T09:05:25.010000"],["2024-07-24T09:05:26.010000"],["2024-07-24T09:05:27.010000"],["2024-07-24T09:05:28.010000"],["2024-07-24T09:05:29.010000"],["2024-07-24T09:05:30.010000"],["2024-07-24T09:05:31.010000"],["2024-07-24T09:05:32.010000"],["2024-07-24T09:05:33.010000"],["2024-07-24T09:05:34.010000"],["2024-07-24T09:05:35.010000"],["2024-07-24T09:05:36.010000"],["2024-07-24T09:05:37.010000"],["2024-07-24T09:05:38.010000"],["2024-07-24T09:05:39.010000"],["2024-07-24T09:05:40.010000"],["2024-07-24T09:05:41.010000"],["2024-07-24T09:05:42.010000"],["2024-07-24T09:05:43.010000"],["2024-07-24T09:05:44.010000"],["2024-07-24T09:05:45.010000"],["2024-07-24T09:05:46.010000"],["2024-07-24T09:05:47.010000"],["2024-07-24T09:05:48.010000"],["2024-07-24T09:05:49.010000"],["2024-07-24T09:05:50.010000"],["2024-07-24T09:05:51.010000"],["2024-07-24T09:05:52.010000"],["2024-07-24T09:05:53.010000"],["2024-07-24T09:05:54.010000"],["2024-07-24T09:05:55.010000"],["2024-07-24T09:05:56.010000"],["2024-07-24T09:05:57.010000"],["2024-07-24T09:05:58.010000"],["2024-07-24T09:05:59.010000"],["2024-07-24T09:06:00.010000"],["2024-07-24T09:06:01.010000"],["2024-07-24T09:06:02.010000"],["2024-07-24T09:06:03.010000"],["2024-07-24T09:06:04.010000"],["2024-07-24T09:06:05.010000"],["2024-07-24T09:06:06.010000"],["2024-07-24T09:06:07.010000"],["2024-07-24T09:06:08.010000"],["2024-07-24T09:06:09.010000"],["2024-07-24T09:06:10.010000"],["2024-07-24T09:06:11.010000"],["2024-07-24T09:06:12.010000"],["2024-07-24T09:06:13.010000"],["2024-07-24T09:06:14.010000"],["2024-07-24T09:06:15.010000"],["2024-07-24T09:06:16.010000"],["2024-07-24T09:06:17.010000"],["2024-07-24T09:06:18.010000"],["2024-07-24T09:06:19.010000"],["2024-07-24T09:06:20.010000"],["2024-07-24T09:06:21.010000"],["2024-07-24T09:06:22.010000"],["2024-07-24T09:06:23.010000"],["2024-07-24T09:06:24.010000"],["2024-07-24T09:06:25.010000"],["2024-07-24T09:06:26.010000"],["2024-07-24T09:06:27.010000"],["2024-07-24T09:06:28.010000"],["2024-07-24T09:06:29.010000"],["2024-07-24T09:06:30.010000"],["2024-07-24T09:06:31.010000"],["2024-07-24T09:06:32.010000"],["2024-07-24T09:06:33.010000"],["2024-07-24T09:06:34.010000"],["2024-07-24T09:06:35.010000"],["2024-07-24T09:06:36.010000"],["2024-07-24T09:06:37.010000"],["2024-07-24T09:06:38.010000"],["2024-07-24T09:06:39.010000"],["2024-07-24T09:06:40.010000"],["2024-07-24T09:06:41.010000"],["2024-07-24T09:06:42.010000"],["2024-07-24T09:06:43.010000"],["2024-07-24T09:06:44.010000"],["2024-07-24T09:06:45.010000"],["2024-07-24T09:06:46.010000"],["2024-07-24T09:06:47.010000"],["2024-07-24T09:06:48.010000"],["2024-07-24T09:06:49.010000"],["2024-07-24T09:06:50.010000"],["2024-07-24T09:06:51.010000"],["2024-07-24T09:06:52.010000"],["2024-07-24T09:06:53.010000"],["2024-07-24T09:06:54.010000"],["2024-07-24T09:06:55.010000"],["2024-07-24T09:06:56.010000"],["2024-07-24T09:06:57.010000"],["2024-07-24T09:06:58.010000"],["2024-07-24T09:06:59.010000"],["2024-07-24T09:07:00.010000"],["2024-07-24T09:07:01.010000"],["2024-07-24T09:07:02.010000"],["2024-07-24T09:07:03.010000"],["2024-07-24T09:07:04.010000"],["2024-07-24T09:07:05.010000"],["2024-07-24T09:07:06.010000"],["2024-07-24T09:07:07.010000"],["2024-07-24T09:07:08.010000"],["2024-07-24T09:07:09.010000"],["2024-07-24T09:07:10.010000"],["2024-07-24T09:07:11.010000"],["2024-07-24T09:07:12.010000"],["2024-07-24T09:07:13.010000"],["2024-07-24T09:07:14.010000"],["2024-07-24T09:07:15.010000"],["2024-07-24T09:07:16.010000"],["2024-07-24T09:07:17.010000"],["2024-07-24T09:07:18.010000"],["2024-07-24T09:07:19.010000"],["2024-07-24T09:07:20.010000"],["2024-07-24T09:07:21.010000"],["2024-07-24T09:07:22.010000"],["2024-07-24T09:07:23.010000"],["2024-07-24T09:07:24.010000"],["2024-07-24T09:07:25.010000"],["2024-07-24T09:07:26.010000"],["2024-07-24T09:07:27.010000"],["2024-07-24T09:07:28.010000"],["2024-07-24T09:07:29.010000"],["2024-07-24T09:07:30.010000"],["2024-07-24T09:07:31.010000"],["2024-07-24T09:07:32.010000"],["2024-07-24T09:07:33.010000"],["2024-07-24T09:07:34.010000"],["2024-07-24T09:07:35.010000"],["2024-07-24T09:07:36.010000"],["2024-07-24T09:07:37.010000"],["2024-07-24T09:07:38.010000"],["2024-07-24T09:07:39.010000"],["2024-07-24T09:07:40.010000"],["2024-07-24T09:07:41.010000"],["2024-07-24T09:07:42.010000"],["2024-07-24T09:07:43.010000"],["2024-07-24T09:07:44.010000"],["2024-07-24T09:07:45.010000"],["2024-07-24T09:07:46.010000"],["2024-07-24T09:07:47.010000"],["2024-07-24T09:07:48.010000"],["2024-07-24T09:07:49.010000"],["2024-07-24T09:07:50.010000"],["2024-07-24T09:07:51.010000"],["2024-07-24T09:07:52.010000"],["2024-07-24T09:07:53.010000"],["2024-07-24T09:07:54.010000"],["2024-07-24T09:07:55.010000"],["2024-07-24T09:07:56.010000"],["2024-07-24T09:07:57.010000"],["2024-07-24T09:07:58.010000"],["2024-07-24T09:07:59.010000"],["2024-07-24T09:08:00.010000"],["2024-07-24T09:08:01.010000"],["2024-07-24T09:08:02.010000"],["2024-07-24T09:08:03.010000"],["2024-07-24T09:08:04.010000"],["2024-07-24T09:08:05.010000"],["2024-07-24T09:08:06.010000"],["2024-07-24T09:08:07.010000"],["2024-07-24T09:08:08.010000"],["2024-07-24T09:08:09.010000"],["2024-07-24T09:08:10.010000"],["2024-07-24T09:08:11.010000"],["2024-07-24T09:08:12.010000"],["2024-07-24T09:08:13.010000"],["2024-07-24T09:08:14.010000"],["2024-07-24T09:08:15.010000"],["2024-07-24T09:08:16.010000"],["2024-07-24T09:08:17.010000"],["2024-07-24T09:08:18.010000"],["2024-07-24T09:08:19.010000"],["2024-07-24T09:08:20.010000"],["2024-07-24T09:08:21.010000"],["2024-07-24T09:08:22.010000"],["2024-07-24T09:08:23.010000"],["2024-07-24T09:08:24.010000"],["2024-07-24T09:08:25.010000"],["2024-07-24T09:08:26.010000"],["2024-07-24T09:08:27.010000"],["2024-07-24T09:08:28.010000"],["2024-07-24T09:08:29.010000"],["2024-07-24T09:08:30.010000"],["2024-07-24T09:08:31.010000"],["2024-07-24T09:08:32.010000"],["2024-07-24T09:08:33.010000"],["2024-07-24T09:08:34.010000"],["2024-07-24T09:08:35.010000"],["2024-07-24T09:08:36.010000"],["2024-07-24T09:08:37.010000"],["2024-07-24T09:08:38.010000"],["2024-07-24T09:08:39.010000"],["2024-07-24T09:08:40.010000"],["2024-07-24T09:08:41.010000"],["2024-07-24T09:08:42.010000"],["2024-07-24T09:08:43.010000"],["2024-07-24T09:08:44.010000"],["2024-07-24T09:08:45.010000"],["2024-07-24T09:08:46.010000"],["2024-07-24T09:08:47.010000"],["2024-07-24T09:08:48.010000"],["2024-07-24T09:08:49.010000"],["2024-07-24T09:08:50.010000"],["2024-07-24T09:08:51.010000"],["2024-07-24T09:08:52.010000"],["2024-07-24T09:08:53.010000"],["2024-07-24T09:08:54.010000"],["2024-07-24T09:08:55.010000"],["2024-07-24T09:08:56.010000"],["2024-07-24T09:08:57.010000"],["2024-07-24T09:08:58.010000"],["2024-07-24T09:08:59.010000"],["2024-07-24T09:09:00.010000"],["2024-07-24T09:09:01.010000"],["2024-07-24T09:09:02.010000"],["2024-07-24T09:09:03.010000"],["2024-07-24T09:09:04.010000"],["2024-07-24T09:09:05.010000"],["2024-07-24T09:09:06.010000"],["2024-07-24T09:09:07.010000"],["2024-07-24T09:09:08.010000"],["2024-07-24T09:09:09.010000"],["2024-07-24T09:09:10.010000"],["2024-07-24T09:09:11.010000"],["2024-07-24T09:09:12.010000"],["2024-07-24T09:09:13.010000"],["2024-07-24T09:09:14.010000"],["2024-07-24T09:09:15.010000"],["2024-07-24T09:09:16.010000"],["2024-07-24T09:09:17.010000"],["2024-07-24T09:09:18.010000"],["2024-07-24T09:09:19.010000"],["2024-07-24T09:09:20.010000"],["2024-07-24T09:09:21.010000"],["2024-07-24T09:09:22.010000"],["2024-07-24T09:09:23.010000"],["2024-07-24T09:09:24.010000"],["2024-07-24T09:09:25.010000"],["2024-07-24T09:09:26.010000"],["2024-07-24T09:09:27.010000"],["2024-07-24T09:09:28.010000"],["2024-07-24T09:09:29.010000"],["2024-07-24T09:09:30.010000"],["2024-07-24T09:09:31.010000"],["2024-07-24T09:09:32.010000"],["2024-07-24T09:09:33.010000"],["2024-07-24T09:09:34.010000"],["2024-07-24T09:09:35.010000"],["2024-07-24T09:09:36.010000"],["2024-07-24T09:09:37.010000"],["2024-07-24T09:09:38.010000"],["2024-07-24T09:09:39.010000"],["2024-07-24T09:09:40.010000"],["2024-07-24T09:09:41.010000"],["2024-07-24T09:09:42.010000"],["2024-07-24T09:09:43.010000"],["2024-07-24T09:09:44.010000"],["2024-07-24T09:09:45.010000"],["2024-07-24T09:09:46.010000"],["2024-07-24T09:09:47.010000"],["2024-07-24T09:09:48.010000"],["2024-07-24T09:09:49.010000"],["2024-07-24T09:09:50.010000"],["2024-07-24T09:09:51.010000"],["2024-07-24T09:09:52.010000"],["2024-07-24T09:09:53.010000"],["2024-07-24T09:09:54.010000"],["2024-07-24T09:09:55.010000"],["2024-07-24T09:09:56.010000"],["2024-07-24T09:09:57.010000"],["2024-07-24T09:09:58.010000"],["2024-07-24T09:09:59.010000"],["2024-07-24T09:10:00.010000"],["2024-07-24T09:10:01.010000"],["2024-07-24T09:10:02.010000"],["2024-07-24T09:10:03.010000"],["2024-07-24T09:10:04.010000"],["2024-07-24T09:10:05.010000"],["2024-07-24T09:10:06.010000"],["2024-07-24T09:10:07.010000"],["2024-07-24T09:10:08.010000"],["2024-07-24T09:10:09.010000"],["2024-07-24T09:10:10.010000"],["2024-07-24T09:10:11.010000"],["2024-07-24T09:10:12.010000"],["2024-07-24T09:10:13.010000"],["2024-07-24T09:10:14.010000"],["2024-07-24T09:10:15.010000"],["2024-07-24T09:10:16.010000"],["2024-07-24T09:10:17.010000"],["2024-07-24T09:10:18.010000"],["2024-07-24T09:10:19.010000"],["2024-07-24T09:10:20.010000"],["2024-07-24T09:10:21.010000"],["2024-07-24T09:10:22.010000"],["2024-07-24T09:10:23.010000"],["2024-07-24T09:10:24.010000"],["2024-07-24T09:10:25.010000"],["2024-07-24T09:10:26.010000"],["2024-07-24T09:10:27.010000"],["2024-07-24T09:10:28.010000"],["2024-07-24T09:10:29.010000"],["2024-07-24T09:10:30.010000"],["2024-07-24T09:10:31.010000"],["2024-07-24T09:10:32.010000"],["2024-07-24T09:10:33.010000"],["2024-07-24T09:10:34.010000"],["2024-07-24T09:10:35.010000"],["2024-07-24T09:10:36.010000"],["2024-07-24T09:10:37.010000"],["2024-07-24T09:10:38.010000"],["2024-07-24T09:10:39.010000"],["2024-07-24T09:10:40.010000"],["2024-07-24T09:10:41.010000"],["2024-07-24T09:10:42.010000"],["2024-07-24T09:10:43.010000"],["2024-07-24T09:10:44.010000"],["2024-07-24T09:10:45.010000"],["2024-07-24T09:10:46.010000"],["2024-07-24T09:10:47.010000"],["2024-07-24T09:10:48.010000"],["2024-07-24T09:10:49.010000"],["2024-07-24T09:10:50.010000"],["2024-07-24T09:10:51.010000"],["2024-07-24T09:10:52.010000"],["2024-07-24T09:10:53.010000"],["2024-07-24T09:10:54.010000"],["2024-07-24T09:10:55.010000"],["2024-07-24T09:10:56.010000"],["2024-07-24T09:10:57.010000"],["2024-07-24T09:10:58.010000"],["2024-07-24T09:10:59.010000"],["2024-07-24T09:11:00.010000"],["2024-07-24T09:11:01.010000"],["2024-07-24T09:11:02.010000"],["2024-07-24T09:11:03.010000"],["2024-07-24T09:11:04.010000"],["2024-07-24T09:11:05.010000"],["2024-07-24T09:11:06.010000"],["2024-07-24T09:11:07.010000"],["2024-07-24T09:11:08.010000"],["2024-07-24T09:11:09.010000"],["2024-07-24T09:11:10.010000"],["2024-07-24T09:11:11.010000"],["2024-07-24T09:11:12.010000"],["2024-07-24T09:11:13.010000"],["2024-07-24T09:11:14.010000"],["2024-07-24T09:11:15.010000"],["2024-07-24T09:11:16.010000"],["2024-07-24T09:11:17.010000"],["2024-07-24T09:11:18.010000"],["2024-07-24T09:11:19.010000"],["2024-07-24T09:11:20.010000"],["2024-07-24T09:11:21.010000"],["2024-07-24T09:11:22.010000"],["2024-07-24T09:11:23.010000"],["2024-07-24T09:11:24.010000"],["2024-07-24T09:11:25.010000"],["2024-07-24T09:11:26.010000"],["2024-07-24T09:11:27.010000"],["2024-07-24T09:11:28.010000"],["2024-07-24T09:11:29.010000"],["2024-07-24T09:11:30.010000"],["2024-07-24T09:11:31.010000"],["2024-07-24T09:11:32.010000"],["2024-07-24T09:11:33.010000"],["2024-07-24T09:11:34.010000"],["2024-07-24T09:11:35.010000"],["2024-07-24T09:11:36.010000"],["2024-07-24T09:11:37.010000"],["2024-07-24T09:11:38.010000"],["2024-07-24T09:11:39.010000"],["2024-07-24T09:11:40.010000"],["2024-07-24T09:11:41.010000"],["2024-07-24T09:11:42.010000"],["2024-07-24T09:11:43.010000"],["2024-07-24T09:11:44.010000"],["2024-07-24T09:11:45.010000"],["2024-07-24T09:11:46.010000"],["2024-07-24T09:11:47.010000"],["2024-07-24T09:11:48.010000"],["2024-07-24T09:11:49.010000"],["2024-07-24T09:11:50.010000"],["2024-07-24T09:11:51.010000"],["2024-07-24T09:11:52.010000"],["2024-07-24T09:11:53.010000"],["2024-07-24T09:11:54.010000"],["2024-07-24T09:11:55.010000"],["2024-07-24T09:11:56.010000"],["2024-07-24T09:11:57.010000"],["2024-07-24T09:11:58.010000"],["2024-07-24T09:11:59.010000"],["2024-07-24T09:12:00.010000"],["2024-07-24T09:12:01.010000"],["2024-07-24T09:12:02.010000"],["2024-07-24T09:12:03.010000"],["2024-07-24T09:12:04.010000"],["2024-07-24T09:12:05.010000"],["2024-07-24T09:12:06.010000"],["2024-07-24T09:12:07.010000"],["2024-07-24T09:12:08.010000"],["2024-07-24T09:12:09.010000"],["2024-07-24T09:12:10.010000"],["2024-07-24T09:12:11.010000"],["2024-07-24T09:12:12.010000"],["2024-07-24T09:12:13.010000"],["2024-07-24T09:12:14.010000"],["2024-07-24T09:12:15.010000"],["2024-07-24T09:12:16.010000"],["2024-07-24T09:12:17.010000"],["2024-07-24T09:12:18.010000"],["2024-07-24T09:12:19.010000"],["2024-07-24T09:12:20.010000"],["2024-07-24T09:12:21.010000"],["2024-07-24T09:12:22.010000"],["2024-07-24T09:12:23.010000"],["2024-07-24T09:12:24.010000"],["2024-07-24T09:12:25.010000"],["2024-07-24T09:12:26.010000"],["2024-07-24T09:12:27.010000"],["2024-07-24T09:12:28.010000"],["2024-07-24T09:12:29.010000"],["2024-07-24T09:12:30.010000"],["2024-07-24T09:12:31.010000"],["2024-07-24T09:12:32.010000"],["2024-07-24T09:12:33.010000"],["2024-07-24T09:12:34.010000"],["2024-07-24T09:12:35.010000"],["2024-07-24T09:12:36.010000"],["2024-07-24T09:12:37.010000"],["2024-07-24T09:12:38.010000"],["2024-07-24T09:12:39.010000"],["2024-07-24T09:12:40.010000"],["2024-07-24T09:12:41.010000"],["2024-07-24T09:12:42.010000"],["2024-07-24T09:12:43.010000"],["2024-07-24T09:12:44.010000"],["2024-07-24T09:12:45.010000"],["2024-07-24T09:12:46.010000"],["2024-07-24T09:12:47.010000"],["2024-07-24T09:12:48.010000"],["2024-07-24T09:12:49.010000"],["2024-07-24T09:12:50.010000"],["2024-07-24T09:12:51.010000"],["2024-07-24T09:12:52.010000"],["2024-07-24T09:12:53.010000"],["2024-07-24T09:12:54.010000"],["2024-07-24T09:12:55.010000"],["2024-07-24T09:12:56.010000"],["2024-07-24T09:12:57.010000"],["2024-07-24T09:12:58.010000"],["2024-07-24T09:12:59.010000"],["2024-07-24T09:13:00.010000"],["2024-07-24T09:13:01.010000"],["2024-07-24T09:13:02.010000"],["2024-07-24T09:13:03.010000"],["2024-07-24T09:13:04.010000"],["2024-07-24T09:13:05.010000"],["2024-07-24T09:13:06.010000"],["2024-07-24T09:13:07.010000"],["2024-07-24T09:13:08.010000"],["2024-07-24T09:13:09.010000"],["2024-07-24T09:13:10.010000"],["2024-07-24T09:13:11.010000"],["2024-07-24T09:13:12.010000"],["2024-07-24T09:13:13.010000"],["2024-07-24T09:13:14.010000"],["2024-07-24T09:13:15.010000"],["2024-07-24T09:13:16.010000"],["2024-07-24T09:13:17.010000"],["2024-07-24T09:13:18.010000"],["2024-07-24T09:13:19.010000"],["2024-07-24T09:13:20.010000"],["2024-07-24T09:13:21.010000"],["2024-07-24T09:13:22.010000"],["2024-07-24T09:13:23.010000"],["2024-07-24T09:13:24.010000"],["2024-07-24T09:13:25.010000"],["2024-07-24T09:13:26.010000"],["2024-07-24T09:13:27.010000"],["2024-07-24T09:13:28.010000"],["2024-07-24T09:13:29.010000"],["2024-07-24T09:13:30.010000"],["2024-07-24T09:13:31.010000"],["2024-07-24T09:13:32.010000"],["2024-07-24T09:13:33.010000"],["2024-07-24T09:13:34.010000"],["2024-07-24T09:13:35.010000"],["2024-07-24T09:13:36.010000"],["2024-07-24T09:13:37.010000"],["2024-07-24T09:13:38.010000"],["2024-07-24T09:13:39.010000"],["2024-07-24T09:13:40.010000"],["2024-07-24T09:13:41.010000"],["2024-07-24T09:13:42.010000"],["2024-07-24T09:13:43.010000"],["2024-07-24T09:13:44.010000"],["2024-07-24T09:13:45.010000"],["2024-07-24T09:13:46.010000"],["2024-07-24T09:13:47.010000"],["2024-07-24T09:13:48.010000"],["2024-07-24T09:13:49.010000"],["2024-07-24T09:13:50.010000"],["2024-07-24T09:13:51.010000"],["2024-07-24T09:13:52.010000"],["2024-07-24T09:13:53.010000"],["2024-07-24T09:13:54.010000"],["2024-07-24T09:13:55.010000"],["2024-07-24T09:13:56.010000"],["2024-07-24T09:13:57.010000"],["2024-07-24T09:13:58.010000"],["2024-07-24T09:13:59.010000"],["2024-07-24T09:14:00.010000"],["2024-07-24T09:14:01.010000"],["2024-07-24T09:14:02.010000"],["2024-07-24T09:14:03.010000"],["2024-07-24T09:14:04.010000"],["2024-07-24T09:14:05.010000"],["2024-07-24T09:14:06.010000"],["2024-07-24T09:14:07.010000"],["2024-07-24T09:14:08.010000"],["2024-07-24T09:14:09.010000"],["2024-07-24T09:14:10.010000"],["2024-07-24T09:14:11.010000"],["2024-07-24T09:14:12.010000"],["2024-07-24T09:14:13.010000"],["2024-07-24T09:14:14.010000"],["2024-07-24T09:14:15.010000"],["2024-07-24T09:14:16.010000"],["2024-07-24T09:14:17.010000"],["2024-07-24T09:14:18.010000"],["2024-07-24T09:14:19.010000"],["2024-07-24T09:14:20.010000"],["2024-07-24T09:14:21.010000"],["2024-07-24T09:14:22.010000"],["2024-07-24T09:14:23.010000"],["2024-07-24T09:14:24.010000"],["2024-07-24T09:14:25.010000"],["2024-07-24T09:14:26.010000"],["2024-07-24T09:14:27.010000"],["2024-07-24T09:14:28.010000"],["2024-07-24T09:14:29.010000"],["2024-07-24T09:14:30.010000"],["2024-07-24T09:14:31.010000"],["2024-07-24T09:14:32.010000"],["2024-07-24T09:14:33.010000"],["2024-07-24T09:14:34.010000"],["2024-07-24T09:14:35.010000"],["2024-07-24T09:14:36.010000"],["2024-07-24T09:14:37.010000"],["2024-07-24T09:14:38.010000"],["2024-07-24T09:14:39.010000"],["2024-07-24T09:14:40.010000"],["2024-07-24T09:14:41.010000"],["2024-07-24T09:14:42.010000"],["2024-07-24T09:14:43.010000"],["2024-07-24T09:14:44.010000"],["2024-07-24T09:14:45.010000"],["2024-07-24T09:14:46.010000"],["2024-07-24T09:14:47.010000"],["2024-07-24T09:14:48.010000"],["2024-07-24T09:14:49.010000"],["2024-07-24T09:14:50.010000"],["2024-07-24T09:14:51.010000"],["2024-07-24T09:14:52.010000"],["2024-07-24T09:14:53.010000"],["2024-07-24T09:14:54.010000"],["2024-07-24T09:14:55.010000"],["2024-07-24T09:14:56.010000"],["2024-07-24T09:14:57.010000"],["2024-07-24T09:14:58.010000"],["2024-07-24T09:14:59.010000"],["2024-07-24T09:15:00.010000"],["2024-07-24T09:15:01.010000"],["2024-07-24T09:15:02.010000"],["2024-07-24T09:15:03.010000"],["2024-07-24T09:15:04.010000"],["2024-07-24T09:15:05.010000"],["2024-07-24T09:15:06.010000"],["2024-07-24T09:15:07.010000"],["2024-07-24T09:15:08.010000"],["2024-07-24T09:15:09.010000"],["2024-07-24T09:15:10.010000"],["2024-07-24T09:15:11.010000"],["2024-07-24T09:15:12.010000"],["2024-07-24T09:15:13.010000"],["2024-07-24T09:15:14.010000"],["2024-07-24T09:15:15.010000"],["2024-07-24T09:15:16.010000"],["2024-07-24T09:15:17.010000"],["2024-07-24T09:15:18.010000"],["2024-07-24T09:15:19.010000"],["2024-07-24T09:15:20.010000"],["2024-07-24T09:15:21.010000"],["2024-07-24T09:15:22.010000"],["2024-07-24T09:15:23.010000"],["2024-07-24T09:15:24.010000"],["2024-07-24T09:15:25.010000"],["2024-07-24T09:15:26.010000"],["2024-07-24T09:15:27.010000"],["2024-07-24T09:15:28.010000"],["2024-07-24T09:15:29.010000"],["2024-07-24T09:15:30.010000"],["2024-07-24T09:15:31.010000"],["2024-07-24T09:15:32.010000"],["2024-07-24T09:15:33.010000"],["2024-07-24T09:15:34.010000"],["2024-07-24T09:15:35.010000"],["2024-07-24T09:15:36.010000"],["2024-07-24T09:15:37.010000"],["2024-07-24T09:15:38.010000"],["2024-07-24T09:15:39.010000"],["2024-07-24T09:15:40.010000"],["2024-07-24T09:15:41.010000"],["2024-07-24T09:15:42.010000"],["2024-07-24T09:15:43.010000"],["2024-07-24T09:15:44.010000"],["2024-07-24T09:15:45.010000"],["2024-07-24T09:15:46.010000"],["2024-07-24T09:15:47.010000"],["2024-07-24T09:15:48.010000"],["2024-07-24T09:15:49.010000"],["2024-07-24T09:15:50.010000"],["2024-07-24T09:15:51.010000"],["2024-07-24T09:15:52.010000"],["2024-07-24T09:15:53.010000"],["2024-07-24T09:15:54.010000"],["2024-07-24T09:15:55.010000"],["2024-07-24T09:15:56.010000"],["2024-07-24T09:15:57.010000"],["2024-07-24T09:15:58.010000"],["2024-07-24T09:15:59.010000"],["2024-07-24T09:16:00.010000"],["2024-07-24T09:16:01.010000"],["2024-07-24T09:16:02.010000"],["2024-07-24T09:16:03.010000"],["2024-07-24T09:16:04.010000"],["2024-07-24T09:16:05.010000"],["2024-07-24T09:16:06.010000"],["2024-07-24T09:16:07.010000"],["2024-07-24T09:16:08.010000"],["2024-07-24T09:16:09.010000"],["2024-07-24T09:16:10.010000"],["2024-07-24T09:16:11.010000"],["2024-07-24T09:16:12.010000"],["2024-07-24T09:16:13.010000"],["2024-07-24T09:16:14.010000"],["2024-07-24T09:16:15.010000"],["2024-07-24T09:16:16.010000"],["2024-07-24T09:16:17.010000"],["2024-07-24T09:16:18.010000"],["2024-07-24T09:16:19.010000"],["2024-07-24T09:16:20.010000"],["2024-07-24T09:16:21.010000"],["2024-07-24T09:16:22.010000"],["2024-07-24T09:16:23.010000"],["2024-07-24T09:16:24.010000"],["2024-07-24T09:16:25.010000"],["2024-07-24T09:16:26.010000"],["2024-07-24T09:16:27.010000"],["2024-07-24T09:16:28.010000"],["2024-07-24T09:16:29.010000"],["2024-07-24T09:16:30.010000"],["2024-07-24T09:16:31.010000"],["2024-07-24T09:16:32.010000"],["2024-07-24T09:16:33.010000"],["2024-07-24T09:16:34.010000"],["2024-07-24T09:16:35.010000"],["2024-07-24T09:16:36.010000"],["2024-07-24T09:16:37.010000"],["2024-07-24T09:16:38.010000"],["2024-07-24T09:16:39.010000"],["2024-07-24T09:16:40.010000"],["2024-07-24T09:16:41.010000"],["2024-07-24T09:16:42.010000"],["2024-07-24T09:16:43.010000"],["2024-07-24T09:16:44.010000"],["2024-07-24T09:16:45.010000"],["2024-07-24T09:16:46.010000"],["2024-07-24T09:16:47.010000"],["2024-07-24T09:16:48.010000"],["2024-07-24T09:16:49.010000"],["2024-07-24T09:16:50.010000"],["2024-07-24T09:16:51.010000"],["2024-07-24T09:16:52.010000"],["2024-07-24T09:16:53.010000"],["2024-07-24T09:16:54.010000"],["2024-07-24T09:16:55.010000"],["2024-07-24T09:16:56.010000"],["2024-07-24T09:16:57.010000"],["2024-07-24T09:16:58.010000"],["2024-07-24T09:16:59.010000"],["2024-07-24T09:17:00.010000"],["2024-07-24T09:17:01.010000"],["2024-07-24T09:17:02.010000"],["2024-07-24T09:17:03.010000"],["2024-07-24T09:17:04.010000"],["2024-07-24T09:17:05.010000"],["2024-07-24T09:17:06.010000"],["2024-07-24T09:17:07.010000"],["2024-07-24T09:17:08.010000"],["2024-07-24T09:17:09.010000"],["2024-07-24T09:17:10.010000"],["2024-07-24T09:17:11.010000"],["2024-07-24T09:17:12.010000"],["2024-07-24T09:17:13.010000"],["2024-07-24T09:17:14.010000"],["2024-07-24T09:17:15.010000"],["2024-07-24T09:17:16.010000"],["2024-07-24T09:17:17.010000"],["2024-07-24T09:17:18.010000"],["2024-07-24T09:17:19.010000"],["2024-07-24T09:17:20.010000"],["2024-07-24T09:17:21.010000"],["2024-07-24T09:17:22.010000"],["2024-07-24T09:17:23.010000"],["2024-07-24T09:17:24.010000"],["2024-07-24T09:17:25.010000"],["2024-07-24T09:17:26.010000"],["2024-07-24T09:17:27.010000"],["2024-07-24T09:17:28.010000"],["2024-07-24T09:17:29.010000"],["2024-07-24T09:17:30.010000"],["2024-07-24T09:17:31.010000"],["2024-07-24T09:17:32.010000"],["2024-07-24T09:17:33.010000"],["2024-07-24T09:17:34.010000"],["2024-07-24T09:17:35.010000"],["2024-07-24T09:17:36.010000"],["2024-07-24T09:17:37.010000"],["2024-07-24T09:17:38.010000"],["2024-07-24T09:17:39.010000"],["2024-07-24T09:17:40.010000"],["2024-07-24T09:17:41.010000"],["2024-07-24T09:17:42.010000"],["2024-07-24T09:17:43.010000"],["2024-07-24T09:17:44.010000"],["2024-07-24T09:17:45.010000"],["2024-07-24T09:17:46.010000"],["2024-07-24T09:17:47.010000"],["2024-07-24T09:17:48.010000"],["2024-07-24T09:17:49.010000"],["2024-07-24T09:17:50.010000"],["2024-07-24T09:17:51.010000"],["2024-07-24T09:17:52.010000"],["2024-07-24T09:17:53.010000"],["2024-07-24T09:17:54.010000"],["2024-07-24T09:17:55.010000"],["2024-07-24T09:17:56.010000"],["2024-07-24T09:17:57.010000"],["2024-07-24T09:17:58.010000"],["2024-07-24T09:17:59.010000"],["2024-07-24T09:18:00.010000"],["2024-07-24T09:18:01.010000"],["2024-07-24T09:18:02.010000"],["2024-07-24T09:18:03.010000"],["2024-07-24T09:18:04.010000"],["2024-07-24T09:18:05.010000"],["2024-07-24T09:18:06.010000"],["2024-07-24T09:18:07.010000"],["2024-07-24T09:18:08.010000"],["2024-07-24T09:18:09.010000"],["2024-07-24T09:18:10.010000"],["2024-07-24T09:18:11.010000"],["2024-07-24T09:18:12.010000"],["2024-07-24T09:18:13.010000"],["2024-07-24T09:18:14.010000"],["2024-07-24T09:18:15.010000"],["2024-07-24T09:18:16.010000"],["2024-07-24T09:18:17.010000"],["2024-07-24T09:18:18.010000"],["2024-07-24T09:18:19.010000"],["2024-07-24T09:18:20.010000"],["2024-07-24T09:18:21.010000"],["2024-07-24T09:18:22.010000"],["2024-07-24T09:18:23.010000"],["2024-07-24T09:18:24.010000"],["2024-07-24T09:18:25.010000"],["2024-07-24T09:18:26.010000"],["2024-07-24T09:18:27.010000"],["2024-07-24T09:18:28.010000"],["2024-07-24T09:18:29.010000"],["2024-07-24T09:18:30.010000"],["2024-07-24T09:18:31.010000"],["2024-07-24T09:18:32.010000"],["2024-07-24T09:18:33.010000"],["2024-07-24T09:18:34.010000"],["2024-07-24T09:18:35.010000"],["2024-07-24T09:18:36.010000"],["2024-07-24T09:18:37.010000"],["2024-07-24T09:18:38.010000"],["2024-07-24T09:18:39.010000"],["2024-07-24T09:18:40.010000"],["2024-07-24T09:18:41.010000"],["2024-07-24T09:18:42.010000"],["2024-07-24T09:18:43.010000"],["2024-07-24T09:18:44.010000"],["2024-07-24T09:18:45.010000"],["2024-07-24T09:18:46.010000"],["2024-07-24T09:18:47.010000"],["2024-07-24T09:18:48.010000"],["2024-07-24T09:18:49.010000"],["2024-07-24T09:18:50.010000"],["2024-07-24T09:18:51.010000"],["2024-07-24T09:18:52.010000"],["2024-07-24T09:18:53.010000"],["2024-07-24T09:18:54.010000"],["2024-07-24T09:18:55.010000"],["2024-07-24T09:18:56.010000"],["2024-07-24T09:18:57.010000"],["2024-07-24T09:18:58.010000"],["2024-07-24T09:18:59.010000"],["2024-07-24T09:19:00.010000"],["2024-07-24T09:19:01.010000"],["2024-07-24T09:19:02.010000"],["2024-07-24T09:19:03.010000"],["2024-07-24T09:19:04.010000"],["2024-07-24T09:19:05.010000"],["2024-07-24T09:19:06.010000"],["2024-07-24T09:19:07.010000"],["2024-07-24T09:19:08.010000"],["2024-07-24T09:19:09.010000"],["2024-07-24T09:19:10.010000"],["2024-07-24T09:19:11.010000"],["2024-07-24T09:19:12.010000"],["2024-07-24T09:19:13.010000"],["2024-07-24T09:19:14.010000"],["2024-07-24T09:19:15.010000"],["2024-07-24T09:19:16.010000"],["2024-07-24T09:19:17.010000"],["2024-07-24T09:19:18.010000"],["2024-07-24T09:19:19.010000"],["2024-07-24T09:19:20.010000"],["2024-07-24T09:19:21.010000"],["2024-07-24T09:19:22.010000"],["2024-07-24T09:19:23.010000"],["2024-07-24T09:19:24.010000"],["2024-07-24T09:19:25.010000"],["2024-07-24T09:19:26.010000"],["2024-07-24T09:19:27.010000"],["2024-07-24T09:19:28.010000"],["2024-07-24T09:19:29.010000"],["2024-07-24T09:19:30.010000"],["2024-07-24T09:19:31.010000"],["2024-07-24T09:19:32.010000"],["2024-07-24T09:19:33.010000"],["2024-07-24T09:19:34.010000"],["2024-07-24T09:19:35.010000"],["2024-07-24T09:19:36.010000"],["2024-07-24T09:19:37.010000"],["2024-07-24T09:19:38.010000"],["2024-07-24T09:19:39.010000"],["2024-07-24T09:19:40.010000"],["2024-07-24T09:19:41.010000"],["2024-07-24T09:19:42.010000"],["2024-07-24T09:19:43.010000"],["2024-07-24T09:19:44.010000"],["2024-07-24T09:19:45.010000"],["2024-07-24T09:19:46.010000"],["2024-07-24T09:19:47.010000"],["2024-07-24T09:19:48.010000"],["2024-07-24T09:19:49.010000"],["2024-07-24T09:19:50.010000"],["2024-07-24T09:19:51.010000"],["2024-07-24T09:19:52.010000"],["2024-07-24T09:19:53.010000"],["2024-07-24T09:19:54.010000"],["2024-07-24T09:19:55.010000"],["2024-07-24T09:19:56.010000"],["2024-07-24T09:19:57.010000"],["2024-07-24T09:19:58.010000"],["2024-07-24T09:19:59.010000"],["2024-07-24T09:20:00.010000"],["2024-07-24T09:20:01.010000"],["2024-07-24T09:20:02.010000"],["2024-07-24T09:20:03.010000"],["2024-07-24T09:20:04.010000"],["2024-07-24T09:20:05.010000"],["2024-07-24T09:20:06.010000"],["2024-07-24T09:20:07.010000"],["2024-07-24T09:20:08.010000"],["2024-07-24T09:20:09.010000"],["2024-07-24T09:20:10.010000"],["2024-07-24T09:20:11.010000"],["2024-07-24T09:20:12.010000"],["2024-07-24T09:20:13.010000"],["2024-07-24T09:20:14.010000"],["2024-07-24T09:20:15.010000"],["2024-07-24T09:20:16.010000"],["2024-07-24T09:20:17.010000"],["2024-07-24T09:20:18.010000"],["2024-07-24T09:20:19.010000"],["2024-07-24T09:20:20.010000"],["2024-07-24T09:20:21.010000"],["2024-07-24T09:20:22.010000"],["2024-07-24T09:20:23.010000"],["2024-07-24T09:20:24.010000"],["2024-07-24T09:20:25.010000"],["2024-07-24T09:20:26.010000"],["2024-07-24T09:20:27.010000"],["2024-07-24T09:20:28.010000"],["2024-07-24T09:20:29.010000"],["2024-07-24T09:20:30.010000"],["2024-07-24T09:20:31.010000"],["2024-07-24T09:20:32.010000"],["2024-07-24T09:20:33.010000"],["2024-07-24T09:20:34.010000"],["2024-07-24T09:20:35.010000"],["2024-07-24T09:20:36.010000"],["2024-07-24T09:20:37.010000"],["2024-07-24T09:20:38.010000"],["2024-07-24T09:20:39.010000"],["2024-07-24T09:20:40.010000"],["2024-07-24T09:20:41.010000"],["2024-07-24T09:20:42.010000"],["2024-07-24T09:20:43.010000"],["2024-07-24T09:20:44.010000"],["2024-07-24T09:20:45.010000"],["2024-07-24T09:20:46.010000"],["2024-07-24T09:20:47.010000"],["2024-07-24T09:20:48.010000"],["2024-07-24T09:20:49.010000"],["2024-07-24T09:20:50.010000"],["2024-07-24T09:20:51.010000"],["2024-07-24T09:20:52.010000"],["2024-07-24T09:20:53.010000"],["2024-07-24T09:20:54.010000"],["2024-07-24T09:20:55.010000"],["2024-07-24T09:20:56.010000"],["2024-07-24T09:20:57.010000"],["2024-07-24T09:20:58.010000"],["2024-07-24T09:20:59.010000"],["2024-07-24T09:21:00.010000"],["2024-07-24T09:21:01.010000"],["2024-07-24T09:21:02.010000"],["2024-07-24T09:21:03.010000"],["2024-07-24T09:21:04.010000"],["2024-07-24T09:21:05.010000"],["2024-07-24T09:21:06.010000"],["2024-07-24T09:21:07.010000"],["2024-07-24T09:21:08.010000"],["2024-07-24T09:21:09.010000"],["2024-07-24T09:21:10.010000"],["2024-07-24T09:21:11.010000"],["2024-07-24T09:21:12.010000"],["2024-07-24T09:21:13.010000"],["2024-07-24T09:21:14.010000"],["2024-07-24T09:21:15.010000"],["2024-07-24T09:21:16.010000"],["2024-07-24T09:21:17.010000"],["2024-07-24T09:21:18.010000"],["2024-07-24T09:21:19.010000"],["2024-07-24T09:21:20.010000"],["2024-07-24T09:21:21.010000"],["2024-07-24T09:21:22.010000"],["2024-07-24T09:21:23.010000"],["2024-07-24T09:21:24.010000"],["2024-07-24T09:21:25.010000"],["2024-07-24T09:21:26.010000"],["2024-07-24T09:21:27.010000"],["2024-07-24T09:21:28.010000"],["2024-07-24T09:21:29.010000"],["2024-07-24T09:21:30.010000"],["2024-07-24T09:21:31.010000"],["2024-07-24T09:21:32.010000"],["2024-07-24T09:21:33.010000"],["2024-07-24T09:21:34.010000"],["2024-07-24T09:21:35.010000"],["2024-07-24T09:21:36.010000"],["2024-07-24T09:21:37.010000"],["2024-07-24T09:21:38.010000"],["2024-07-24T09:21:39.010000"],["2024-07-24T09:21:40.010000"],["2024-07-24T09:21:41.010000"],["2024-07-24T09:21:42.010000"],["2024-07-24T09:21:43.010000"],["2024-07-24T09:21:44.010000"],["2024-07-24T09:21:45.010000"],["2024-07-24T09:21:46.010000"],["2024-07-24T09:21:47.010000"],["2024-07-24T09:21:48.010000"],["2024-07-24T09:21:49.010000"],["2024-07-24T09:21:50.010000"],["2024-07-24T09:21:51.010000"],["2024-07-24T09:21:52.010000"],["2024-07-24T09:21:53.010000"],["2024-07-24T09:21:54.010000"],["2024-07-24T09:21:55.010000"],["2024-07-24T09:21:56.010000"],["2024-07-24T09:21:57.010000"],["2024-07-24T09:21:58.010000"],["2024-07-24T09:21:59.010000"],["2024-07-24T09:22:00.010000"],["2024-07-24T09:22:01.010000"],["2024-07-24T09:22:02.010000"],["2024-07-24T09:22:03.010000"],["2024-07-24T09:22:04.010000"],["2024-07-24T09:22:05.010000"],["2024-07-24T09:22:06.010000"],["2024-07-24T09:22:07.010000"],["2024-07-24T09:22:08.010000"],["2024-07-24T09:22:09.010000"],["2024-07-24T09:22:10.010000"],["2024-07-24T09:22:11.010000"],["2024-07-24T09:22:12.010000"],["2024-07-24T09:22:13.010000"],["2024-07-24T09:22:14.010000"],["2024-07-24T09:22:15.010000"],["2024-07-24T09:22:16.010000"],["2024-07-24T09:22:17.010000"],["2024-07-24T09:22:18.010000"],["2024-07-24T09:22:19.010000"],["2024-07-24T09:22:20.010000"],["2024-07-24T09:22:21.010000"],["2024-07-24T09:22:22.010000"],["2024-07-24T09:22:23.010000"],["2024-07-24T09:22:24.010000"],["2024-07-24T09:22:25.010000"],["2024-07-24T09:22:26.010000"],["2024-07-24T09:22:27.010000"],["2024-07-24T09:22:28.010000"],["2024-07-24T09:22:29.010000"],["2024-07-24T09:22:30.010000"],["2024-07-24T09:22:31.010000"],["2024-07-24T09:22:32.010000"],["2024-07-24T09:22:33.010000"],["2024-07-24T09:22:34.010000"],["2024-07-24T09:22:35.010000"],["2024-07-24T09:22:36.010000"],["2024-07-24T09:22:37.010000"],["2024-07-24T09:22:38.010000"],["2024-07-24T09:22:39.010000"],["2024-07-24T09:22:40.010000"],["2024-07-24T09:22:41.010000"],["2024-07-24T09:22:42.010000"],["2024-07-24T09:22:43.010000"],["2024-07-24T09:22:44.010000"],["2024-07-24T09:22:45.010000"],["2024-07-24T09:22:46.010000"],["2024-07-24T09:22:47.010000"],["2024-07-24T09:22:48.010000"],["2024-07-24T09:22:49.010000"],["2024-07-24T09:22:50.010000"],["2024-07-24T09:22:51.010000"],["2024-07-24T09:22:52.010000"],["2024-07-24T09:22:53.010000"],["2024-07-24T09:22:54.010000"],["2024-07-24T09:22:55.010000"],["2024-07-24T09:22:56.010000"],["2024-07-24T09:22:57.010000"],["2024-07-24T09:22:58.010000"],["2024-07-24T09:22:59.010000"],["2024-07-24T09:23:00.010000"],["2024-07-24T09:23:01.010000"],["2024-07-24T09:23:02.010000"],["2024-07-24T09:23:03.010000"],["2024-07-24T09:23:04.010000"],["2024-07-24T09:23:05.010000"],["2024-07-24T09:23:06.010000"],["2024-07-24T09:23:07.010000"],["2024-07-24T09:23:08.010000"],["2024-07-24T09:23:09.010000"],["2024-07-24T09:23:10.010000"],["2024-07-24T09:23:11.010000"],["2024-07-24T09:23:12.010000"],["2024-07-24T09:23:13.010000"],["2024-07-24T09:23:14.010000"],["2024-07-24T09:23:15.010000"],["2024-07-24T09:23:16.010000"],["2024-07-24T09:23:17.010000"],["2024-07-24T09:23:18.010000"],["2024-07-24T09:23:19.010000"],["2024-07-24T09:23:20.010000"],["2024-07-24T09:23:21.010000"],["2024-07-24T09:23:22.010000"],["2024-07-24T09:23:23.010000"],["2024-07-24T09:23:24.010000"],["2024-07-24T09:23:25.010000"],["2024-07-24T09:23:26.010000"],["2024-07-24T09:23:27.010000"],["2024-07-24T09:23:28.010000"],["2024-07-24T09:23:29.010000"],["2024-07-24T09:23:30.010000"],["2024-07-24T09:23:31.010000"],["2024-07-24T09:23:32.010000"],["2024-07-24T09:23:33.010000"],["2024-07-24T09:23:34.010000"],["2024-07-24T09:23:35.010000"],["2024-07-24T09:23:36.010000"],["2024-07-24T09:23:37.010000"],["2024-07-24T09:23:38.010000"],["2024-07-24T09:23:39.010000"],["2024-07-24T09:23:40.010000"],["2024-07-24T09:23:41.010000"],["2024-07-24T09:23:42.010000"],["2024-07-24T09:23:43.010000"],["2024-07-24T09:23:44.010000"],["2024-07-24T09:23:45.010000"],["2024-07-24T09:23:46.010000"],["2024-07-24T09:23:47.010000"],["2024-07-24T09:23:48.010000"],["2024-07-24T09:23:49.010000"],["2024-07-24T09:23:50.010000"],["2024-07-24T09:23:51.010000"],["2024-07-24T09:23:52.010000"],["2024-07-24T09:23:53.010000"],["2024-07-24T09:23:54.010000"],["2024-07-24T09:23:55.010000"],["2024-07-24T09:23:56.010000"],["2024-07-24T09:23:57.010000"],["2024-07-24T09:23:58.010000"],["2024-07-24T09:23:59.010000"],["2024-07-24T09:24:00.010000"],["2024-07-24T09:24:01.010000"],["2024-07-24T09:24:02.010000"],["2024-07-24T09:24:03.010000"],["2024-07-24T09:24:04.010000"],["2024-07-24T09:24:05.010000"],["2024-07-24T09:24:06.010000"],["2024-07-24T09:24:07.010000"],["2024-07-24T09:24:08.010000"],["2024-07-24T09:24:09.010000"],["2024-07-24T09:24:10.010000"],["2024-07-24T09:24:11.010000"],["2024-07-24T09:24:12.010000"],["2024-07-24T09:24:13.010000"],["2024-07-24T09:24:14.010000"],["2024-07-24T09:24:15.010000"],["2024-07-24T09:24:16.010000"],["2024-07-24T09:24:17.010000"],["2024-07-24T09:24:18.010000"],["2024-07-24T09:24:19.010000"],["2024-07-24T09:24:20.010000"],["2024-07-24T09:24:21.010000"],["2024-07-24T09:24:22.010000"],["2024-07-24T09:24:23.010000"],["2024-07-24T09:24:24.010000"],["2024-07-24T09:24:25.010000"],["2024-07-24T09:24:26.010000"],["2024-07-24T09:24:27.010000"],["2024-07-24T09:24:28.010000"],["2024-07-24T09:24:29.010000"],["2024-07-24T09:24:30.010000"],["2024-07-24T09:24:31.010000"],["2024-07-24T09:24:32.010000"],["2024-07-24T09:24:33.010000"],["2024-07-24T09:24:34.010000"],["2024-07-24T09:24:35.010000"],["2024-07-24T09:24:36.010000"],["2024-07-24T09:24:37.010000"],["2024-07-24T09:24:38.010000"],["2024-07-24T09:24:39.010000"],["2024-07-24T09:24:40.010000"],["2024-07-24T09:24:41.010000"],["2024-07-24T09:24:42.010000"],["2024-07-24T09:24:43.010000"],["2024-07-24T09:24:44.010000"],["2024-07-24T09:24:45.010000"],["2024-07-24T09:24:46.010000"],["2024-07-24T09:24:47.010000"],["2024-07-24T09:24:48.010000"],["2024-07-24T09:24:49.010000"],["2024-07-24T09:24:50.010000"],["2024-07-24T09:24:51.010000"],["2024-07-24T09:24:52.010000"],["2024-07-24T09:24:53.010000"],["2024-07-24T09:24:54.010000"],["2024-07-24T09:24:55.010000"],["2024-07-24T09:24:56.010000"],["2024-07-24T09:24:57.010000"],["2024-07-24T09:24:58.010000"],["2024-07-24T09:24:59.010000"],["2024-07-24T09:25:00.010000"],["2024-07-24T09:25:01.010000"],["2024-07-24T09:25:02.010000"],["2024-07-24T09:25:03.010000"],["2024-07-24T09:25:04.010000"],["2024-07-24T09:25:05.010000"],["2024-07-24T09:25:06.010000"],["2024-07-24T09:25:07.010000"],["2024-07-24T09:25:08.010000"],["2024-07-24T09:25:09.010000"],["2024-07-24T09:25:10.010000"],["2024-07-24T09:25:11.010000"],["2024-07-24T09:25:12.010000"],["2024-07-24T09:25:13.010000"],["2024-07-24T09:25:14.010000"],["2024-07-24T09:25:15.010000"],["2024-07-24T09:25:16.010000"],["2024-07-24T09:25:17.010000"],["2024-07-24T09:25:18.010000"],["2024-07-24T09:25:19.010000"],["2024-07-24T09:25:20.010000"],["2024-07-24T09:25:21.010000"],["2024-07-24T09:25:22.010000"],["2024-07-24T09:25:23.010000"],["2024-07-24T09:25:24.010000"],["2024-07-24T09:25:25.010000"],["2024-07-24T09:25:26.010000"],["2024-07-24T09:25:27.010000"],["2024-07-24T09:25:28.010000"],["2024-07-24T09:25:29.010000"],["2024-07-24T09:25:30.010000"],["2024-07-24T09:25:31.010000"],["2024-07-24T09:25:32.010000"],["2024-07-24T09:25:33.010000"],["2024-07-24T09:25:34.010000"],["2024-07-24T09:25:35.010000"],["2024-07-24T09:25:36.010000"],["2024-07-24T09:25:37.010000"],["2024-07-24T09:25:38.010000"],["2024-07-24T09:25:39.010000"],["2024-07-24T09:25:40.010000"],["2024-07-24T09:25:41.010000"],["2024-07-24T09:25:42.010000"],["2024-07-24T09:25:43.010000"],["2024-07-24T09:25:44.010000"],["2024-07-24T09:25:45.010000"],["2024-07-24T09:25:46.010000"],["2024-07-24T09:25:47.010000"],["2024-07-24T09:25:48.010000"],["2024-07-24T09:25:49.010000"],["2024-07-24T09:25:50.010000"],["2024-07-24T09:25:51.010000"],["2024-07-24T09:25:52.010000"],["2024-07-24T09:25:53.010000"],["2024-07-24T09:25:54.010000"],["2024-07-24T09:25:55.010000"],["2024-07-24T09:25:56.010000"],["2024-07-24T09:25:57.010000"],["2024-07-24T09:25:58.010000"],["2024-07-24T09:25:59.010000"],["2024-07-24T09:26:00.010000"],["2024-07-24T09:26:01.010000"],["2024-07-24T09:26:02.010000"],["2024-07-24T09:26:03.010000"],["2024-07-24T09:26:04.010000"],["2024-07-24T09:26:05.010000"],["2024-07-24T09:26:06.010000"],["2024-07-24T09:26:07.010000"],["2024-07-24T09:26:08.010000"],["2024-07-24T09:26:09.010000"],["2024-07-24T09:26:10.010000"],["2024-07-24T09:26:11.010000"],["2024-07-24T09:26:12.010000"],["2024-07-24T09:26:13.010000"],["2024-07-24T09:26:14.010000"],["2024-07-24T09:26:15.010000"],["2024-07-24T09:26:16.010000"],["2024-07-24T09:26:17.010000"],["2024-07-24T09:26:18.010000"],["2024-07-24T09:26:19.010000"],["2024-07-24T09:26:20.010000"],["2024-07-24T09:26:21.010000"],["2024-07-24T09:26:22.010000"],["2024-07-24T09:26:23.010000"],["2024-07-24T09:26:24.010000"],["2024-07-24T09:26:25.010000"],["2024-07-24T09:26:26.010000"],["2024-07-24T09:26:27.010000"],["2024-07-24T09:26:28.010000"],["2024-07-24T09:26:29.010000"],["2024-07-24T09:26:30.010000"],["2024-07-24T09:26:31.010000"],["2024-07-24T09:26:32.010000"],["2024-07-24T09:26:33.010000"],["2024-07-24T09:26:34.010000"],["2024-07-24T09:26:35.010000"],["2024-07-24T09:26:36.010000"],["2024-07-24T09:26:37.010000"],["2024-07-24T09:26:38.010000"],["2024-07-24T09:26:39.010000"],["2024-07-24T09:26:40.010000"],["2024-07-24T09:26:41.010000"],["2024-07-24T09:26:42.010000"],["2024-07-24T09:26:43.010000"],["2024-07-24T09:26:44.010000"],["2024-07-24T09:26:45.010000"],["2024-07-24T09:26:46.010000"],["2024-07-24T09:26:47.010000"],["2024-07-24T09:26:48.010000"],["2024-07-24T09:26:49.010000"],["2024-07-24T09:26:50.010000"],["2024-07-24T09:26:51.010000"],["2024-07-24T09:26:52.010000"],["2024-07-24T09:26:53.010000"],["2024-07-24T09:26:54.010000"],["2024-07-24T09:26:55.010000"],["2024-07-24T09:26:56.010000"],["2024-07-24T09:26:57.010000"],["2024-07-24T09:26:58.010000"],["2024-07-24T09:26:59.010000"],["2024-07-24T09:27:00.010000"],["2024-07-24T09:27:01.010000"],["2024-07-24T09:27:02.010000"],["2024-07-24T09:27:03.010000"],["2024-07-24T09:27:04.010000"],["2024-07-24T09:27:05.010000"],["2024-07-24T09:27:06.010000"],["2024-07-24T09:27:07.010000"],["2024-07-24T09:27:08.010000"],["2024-07-24T09:27:09.010000"],["2024-07-24T09:27:10.010000"],["2024-07-24T09:27:11.010000"],["2024-07-24T09:27:12.010000"],["2024-07-24T09:27:13.010000"],["2024-07-24T09:27:14.010000"],["2024-07-24T09:27:15.010000"],["2024-07-24T09:27:16.010000"],["2024-07-24T09:27:17.010000"],["2024-07-24T09:27:18.010000"],["2024-07-24T09:27:19.010000"],["2024-07-24T09:27:20.010000"],["2024-07-24T09:27:21.010000"],["2024-07-24T09:27:22.010000"],["2024-07-24T09:27:23.010000"],["2024-07-24T09:27:24.010000"],["2024-07-24T09:27:25.010000"],["2024-07-24T09:27:26.010000"],["2024-07-24T09:27:27.010000"],["2024-07-24T09:27:28.010000"],["2024-07-24T09:27:29.010000"],["2024-07-24T09:27:30.010000"],["2024-07-24T09:27:31.010000"],["2024-07-24T09:27:32.010000"],["2024-07-24T09:27:33.010000"],["2024-07-24T09:27:34.010000"],["2024-07-24T09:27:35.010000"],["2024-07-24T09:27:36.010000"],["2024-07-24T09:27:37.010000"],["2024-07-24T09:27:38.010000"],["2024-07-24T09:27:39.010000"],["2024-07-24T09:27:40.010000"],["2024-07-24T09:27:41.010000"],["2024-07-24T09:27:42.010000"],["2024-07-24T09:27:43.010000"],["2024-07-24T09:27:44.010000"],["2024-07-24T09:27:45.010000"],["2024-07-24T09:27:46.010000"],["2024-07-24T09:27:47.010000"],["2024-07-24T09:27:48.010000"],["2024-07-24T09:27:49.010000"],["2024-07-24T09:27:50.010000"],["2024-07-24T09:27:51.010000"],["2024-07-24T09:27:52.010000"],["2024-07-24T09:27:53.010000"],["2024-07-24T09:27:54.010000"],["2024-07-24T09:27:55.010000"],["2024-07-24T09:27:56.010000"],["2024-07-24T09:27:57.010000"],["2024-07-24T09:27:58.010000"],["2024-07-24T09:27:59.010000"],["2024-07-24T09:28:00.010000"],["2024-07-24T09:28:01.010000"],["2024-07-24T09:28:02.010000"],["2024-07-24T09:28:03.010000"],["2024-07-24T09:28:04.010000"],["2024-07-24T09:28:05.010000"],["2024-07-24T09:28:06.010000"],["2024-07-24T09:28:07.010000"],["2024-07-24T09:28:08.010000"],["2024-07-24T09:28:09.010000"],["2024-07-24T09:28:10.010000"],["2024-07-24T09:28:11.010000"],["2024-07-24T09:28:12.010000"],["2024-07-24T09:28:13.010000"],["2024-07-24T09:28:14.010000"],["2024-07-24T09:28:15.010000"],["2024-07-24T09:28:16.010000"],["2024-07-24T09:28:17.010000"],["2024-07-24T09:28:18.010000"],["2024-07-24T09:28:19.010000"],["2024-07-24T09:28:20.010000"],["2024-07-24T09:28:21.010000"],["2024-07-24T09:28:22.010000"],["2024-07-24T09:28:23.010000"],["2024-07-24T09:28:24.010000"],["2024-07-24T09:28:25.010000"],["2024-07-24T09:28:26.010000"],["2024-07-24T09:28:27.010000"],["2024-07-24T09:28:28.010000"],["2024-07-24T09:28:29.010000"],["2024-07-24T09:28:30.010000"],["2024-07-24T09:28:31.010000"],["2024-07-24T09:28:32.010000"],["2024-07-24T09:28:33.010000"],["2024-07-24T09:28:34.010000"],["2024-07-24T09:28:35.010000"],["2024-07-24T09:28:36.010000"],["2024-07-24T09:28:37.010000"],["2024-07-24T09:28:38.010000"],["2024-07-24T09:28:39.010000"],["2024-07-24T09:28:40.010000"],["2024-07-24T09:28:41.010000"],["2024-07-24T09:28:42.010000"],["2024-07-24T09:28:43.010000"],["2024-07-24T09:28:44.010000"],["2024-07-24T09:28:45.010000"],["2024-07-24T09:28:46.010000"],["2024-07-24T09:28:47.010000"],["2024-07-24T09:28:48.010000"],["2024-07-24T09:28:49.010000"],["2024-07-24T09:28:50.010000"],["2024-07-24T09:28:51.010000"],["2024-07-24T09:28:52.010000"],["2024-07-24T09:28:53.010000"],["2024-07-24T09:28:54.010000"],["2024-07-24T09:28:55.010000"],["2024-07-24T09:28:56.010000"],["2024-07-24T09:28:57.010000"],["2024-07-24T09:28:58.010000"],["2024-07-24T09:28:59.010000"],["2024-07-24T09:29:00.010000"],["2024-07-24T09:29:01.010000"],["2024-07-24T09:29:02.010000"],["2024-07-24T09:29:03.010000"],["2024-07-24T09:29:04.010000"],["2024-07-24T09:29:05.010000"],["2024-07-24T09:29:06.010000"],["2024-07-24T09:29:07.010000"],["2024-07-24T09:29:08.010000"],["2024-07-24T09:29:09.010000"],["2024-07-24T09:29:10.010000"],["2024-07-24T09:29:11.010000"],["2024-07-24T09:29:12.010000"],["2024-07-24T09:29:13.010000"],["2024-07-24T09:29:14.010000"],["2024-07-24T09:29:15.010000"],["2024-07-24T09:29:16.010000"],["2024-07-24T09:29:17.010000"],["2024-07-24T09:29:18.010000"],["2024-07-24T09:29:19.010000"],["2024-07-24T09:29:20.010000"],["2024-07-24T09:29:21.010000"],["2024-07-24T09:29:22.010000"],["2024-07-24T09:29:23.010000"],["2024-07-24T09:29:24.010000"],["2024-07-24T09:29:25.010000"],["2024-07-24T09:29:26.010000"],["2024-07-24T09:29:27.010000"],["2024-07-24T09:29:28.010000"],["2024-07-24T09:29:29.010000"],["2024-07-24T09:29:30.010000"],["2024-07-24T09:29:31.010000"],["2024-07-24T09:29:32.010000"],["2024-07-24T09:29:33.010000"],["2024-07-24T09:29:34.010000"],["2024-07-24T09:29:35.010000"],["2024-07-24T09:29:36.010000"],["2024-07-24T09:29:37.010000"],["2024-07-24T09:29:38.010000"],["2024-07-24T09:29:39.010000"],["2024-07-24T09:29:40.010000"],["2024-07-24T09:29:41.010000"],["2024-07-24T09:29:42.010000"],["2024-07-24T09:29:43.010000"],["2024-07-24T09:29:44.010000"],["2024-07-24T09:29:45.010000"],["2024-07-24T09:29:46.010000"],["2024-07-24T09:29:47.010000"],["2024-07-24T09:29:48.010000"],["2024-07-24T09:29:49.010000"],["2024-07-24T09:29:50.010000"],["2024-07-24T09:29:51.010000"],["2024-07-24T09:29:52.010000"],["2024-07-24T09:29:53.010000"],["2024-07-24T09:29:54.010000"],["2024-07-24T09:29:55.010000"],["2024-07-24T09:29:56.010000"],["2024-07-24T09:29:57.010000"],["2024-07-24T09:29:58.010000"],["2024-07-24T09:29:59.010000"],["2024-07-24T09:30:00.010000"],["2024-07-24T09:30:01.010000"],["2024-07-24T09:30:02.010000"],["2024-07-24T09:30:03.010000"],["2024-07-24T09:30:04.010000"],["2024-07-24T09:30:05.010000"],["2024-07-24T09:30:06.010000"],["2024-07-24T09:30:07.010000"],["2024-07-24T09:30:08.010000"],["2024-07-24T09:30:09.010000"],["2024-07-24T09:30:10.010000"],["2024-07-24T09:30:11.010000"],["2024-07-24T09:30:12.010000"],["2024-07-24T09:30:13.010000"],["2024-07-24T09:30:14.010000"],["2024-07-24T09:30:15.010000"],["2024-07-24T09:30:16.010000"],["2024-07-24T09:30:17.010000"],["2024-07-24T09:30:18.010000"],["2024-07-24T09:30:19.010000"],["2024-07-24T09:30:20.010000"],["2024-07-24T09:30:21.010000"],["2024-07-24T09:30:22.010000"],["2024-07-24T09:30:23.010000"],["2024-07-24T09:30:24.010000"],["2024-07-24T09:30:25.010000"],["2024-07-24T09:30:26.010000"],["2024-07-24T09:30:27.010000"],["2024-07-24T09:30:28.010000"],["2024-07-24T09:30:29.010000"],["2024-07-24T09:30:30.010000"],["2024-07-24T09:30:31.010000"],["2024-07-24T09:30:32.010000"],["2024-07-24T09:30:33.010000"],["2024-07-24T09:30:34.010000"],["2024-07-24T09:30:35.010000"],["2024-07-24T09:30:36.010000"],["2024-07-24T09:30:37.010000"],["2024-07-24T09:30:38.010000"],["2024-07-24T09:30:39.010000"],["2024-07-24T09:30:40.010000"],["2024-07-24T09:30:41.010000"],["2024-07-24T09:30:42.010000"],["2024-07-24T09:30:43.010000"],["2024-07-24T09:30:44.010000"],["2024-07-24T09:30:45.010000"],["2024-07-24T09:30:46.010000"],["2024-07-24T09:30:47.010000"],["2024-07-24T09:30:48.010000"],["2024-07-24T09:30:49.010000"],["2024-07-24T09:30:50.010000"],["2024-07-24T09:30:51.010000"],["2024-07-24T09:30:52.010000"],["2024-07-24T09:30:53.010000"],["2024-07-24T09:30:54.010000"],["2024-07-24T09:30:55.010000"],["2024-07-24T09:30:56.010000"],["2024-07-24T09:30:57.010000"],["2024-07-24T09:30:58.010000"],["2024-07-24T09:30:59.010000"],["2024-07-24T09:31:00.010000"],["2024-07-24T09:31:01.010000"],["2024-07-24T09:31:02.010000"],["2024-07-24T09:31:03.010000"],["2024-07-24T09:31:04.010000"],["2024-07-24T09:31:05.010000"],["2024-07-24T09:31:06.010000"],["2024-07-24T09:31:07.010000"],["2024-07-24T09:31:08.010000"],["2024-07-24T09:31:09.010000"],["2024-07-24T09:31:10.010000"],["2024-07-24T09:31:11.010000"],["2024-07-24T09:31:12.010000"],["2024-07-24T09:31:13.010000"],["2024-07-24T09:31:14.010000"],["2024-07-24T09:31:15.010000"],["2024-07-24T09:31:16.010000"],["2024-07-24T09:31:17.010000"],["2024-07-24T09:31:18.010000"],["2024-07-24T09:31:19.010000"],["2024-07-24T09:31:20.010000"],["2024-07-24T09:31:21.010000"],["2024-07-24T09:31:22.010000"],["2024-07-24T09:31:23.010000"],["2024-07-24T09:31:24.010000"],["2024-07-24T09:31:25.010000"],["2024-07-24T09:31:26.010000"],["2024-07-24T09:31:27.010000"],["2024-07-24T09:31:28.010000"],["2024-07-24T09:31:29.010000"],["2024-07-24T09:31:30.010000"],["2024-07-24T09:31:31.010000"],["2024-07-24T09:31:32.010000"],["2024-07-24T09:31:33.010000"],["2024-07-24T09:31:34.010000"],["2024-07-24T09:31:35.010000"],["2024-07-24T09:31:36.010000"],["2024-07-24T09:31:37.010000"],["2024-07-24T09:31:38.010000"],["2024-07-24T09:31:39.010000"],["2024-07-24T09:31:40.010000"],["2024-07-24T09:31:41.010000"],["2024-07-24T09:31:42.010000"],["2024-07-24T09:31:43.010000"],["2024-07-24T09:31:44.010000"],["2024-07-24T09:31:45.010000"],["2024-07-24T09:31:46.010000"],["2024-07-24T09:31:47.010000"],["2024-07-24T09:31:48.010000"],["2024-07-24T09:31:49.010000"],["2024-07-24T09:31:50.010000"],["2024-07-24T09:31:51.010000"],["2024-07-24T09:31:52.010000"],["2024-07-24T09:31:53.010000"],["2024-07-24T09:31:54.010000"],["2024-07-24T09:31:55.010000"],["2024-07-24T09:31:56.010000"],["2024-07-24T09:31:57.010000"],["2024-07-24T09:31:58.010000"],["2024-07-24T09:31:59.010000"],["2024-07-24T09:32:00.010000"],["2024-07-24T09:32:01.010000"],["2024-07-24T09:32:02.010000"],["2024-07-24T09:32:03.010000"],["2024-07-24T09:32:04.010000"],["2024-07-24T09:32:05.010000"],["2024-07-24T09:32:06.010000"],["2024-07-24T09:32:07.010000"],["2024-07-24T09:32:08.010000"],["2024-07-24T09:32:09.010000"],["2024-07-24T09:32:10.010000"],["2024-07-24T09:32:11.010000"],["2024-07-24T09:32:12.010000"],["2024-07-24T09:32:13.010000"],["2024-07-24T09:32:14.010000"],["2024-07-24T09:32:15.010000"],["2024-07-24T09:32:16.010000"],["2024-07-24T09:32:17.010000"],["2024-07-24T09:32:18.010000"],["2024-07-24T09:32:19.010000"],["2024-07-24T09:32:20.010000"],["2024-07-24T09:32:21.010000"],["2024-07-24T09:32:22.010000"],["2024-07-24T09:32:23.010000"],["2024-07-24T09:32:24.010000"],["2024-07-24T09:32:25.010000"],["2024-07-24T09:32:26.010000"],["2024-07-24T09:32:27.010000"],["2024-07-24T09:32:28.010000"],["2024-07-24T09:32:29.010000"],["2024-07-24T09:32:30.010000"],["2024-07-24T09:32:31.010000"],["2024-07-24T09:32:32.010000"],["2024-07-24T09:32:33.010000"],["2024-07-24T09:32:34.010000"],["2024-07-24T09:32:35.010000"],["2024-07-24T09:32:36.010000"],["2024-07-24T09:32:37.010000"],["2024-07-24T09:32:38.010000"],["2024-07-24T09:32:39.010000"],["2024-07-24T09:32:40.010000"],["2024-07-24T09:32:41.010000"],["2024-07-24T09:32:42.010000"],["2024-07-24T09:32:43.010000"],["2024-07-24T09:32:44.010000"],["2024-07-24T09:32:45.010000"],["2024-07-24T09:32:46.010000"],["2024-07-24T09:32:47.010000"],["2024-07-24T09:32:48.010000"],["2024-07-24T09:32:49.010000"],["2024-07-24T09:32:50.010000"],["2024-07-24T09:32:51.010000"],["2024-07-24T09:32:52.010000"],["2024-07-24T09:32:53.010000"],["2024-07-24T09:32:54.010000"],["2024-07-24T09:32:55.010000"],["2024-07-24T09:32:56.010000"],["2024-07-24T09:32:57.010000"],["2024-07-24T09:32:58.010000"],["2024-07-24T09:32:59.010000"],["2024-07-24T09:33:00.010000"],["2024-07-24T09:33:01.010000"],["2024-07-24T09:33:02.010000"],["2024-07-24T09:33:03.010000"],["2024-07-24T09:33:04.010000"],["2024-07-24T09:33:05.010000"],["2024-07-24T09:33:06.010000"],["2024-07-24T09:33:07.010000"],["2024-07-24T09:33:08.010000"],["2024-07-24T09:33:09.010000"],["2024-07-24T09:33:10.010000"],["2024-07-24T09:33:11.010000"],["2024-07-24T09:33:12.010000"],["2024-07-24T09:33:13.010000"],["2024-07-24T09:33:14.010000"],["2024-07-24T09:33:15.010000"],["2024-07-24T09:33:16.010000"],["2024-07-24T09:33:17.010000"],["2024-07-24T09:33:18.010000"],["2024-07-24T09:33:19.010000"],["2024-07-24T09:33:20.010000"],["2024-07-24T09:33:21.010000"],["2024-07-24T09:33:22.010000"],["2024-07-24T09:33:23.010000"],["2024-07-24T09:33:24.010000"],["2024-07-24T09:33:25.010000"],["2024-07-24T09:33:26.010000"],["2024-07-24T09:33:27.010000"],["2024-07-24T09:33:28.010000"],["2024-07-24T09:33:29.010000"],["2024-07-24T09:33:30.010000"],["2024-07-24T09:33:31.010000"],["2024-07-24T09:33:32.010000"],["2024-07-24T09:33:33.010000"],["2024-07-24T09:33:34.010000"],["2024-07-24T09:33:35.010000"],["2024-07-24T09:33:36.010000"],["2024-07-24T09:33:37.010000"],["2024-07-24T09:33:38.010000"],["2024-07-24T09:33:39.010000"],["2024-07-24T09:33:40.010000"],["2024-07-24T09:33:41.010000"],["2024-07-24T09:33:42.010000"],["2024-07-24T09:33:43.010000"],["2024-07-24T09:33:44.010000"],["2024-07-24T09:33:45.010000"],["2024-07-24T09:33:46.010000"],["2024-07-24T09:33:47.010000"],["2024-07-24T09:33:48.010000"],["2024-07-24T09:33:49.010000"],["2024-07-24T09:33:50.010000"],["2024-07-24T09:33:51.010000"],["2024-07-24T09:33:52.010000"],["2024-07-24T09:33:53.010000"],["2024-07-24T09:33:54.010000"],["2024-07-24T09:33:55.010000"],["2024-07-24T09:33:56.010000"],["2024-07-24T09:33:57.010000"],["2024-07-24T09:33:58.010000"],["2024-07-24T09:33:59.010000"],["2024-07-24T09:34:00.010000"],["2024-07-24T09:34:01.010000"],["2024-07-24T09:34:02.010000"],["2024-07-24T09:34:03.010000"],["2024-07-24T09:34:04.010000"],["2024-07-24T09:34:05.010000"],["2024-07-24T09:34:06.010000"],["2024-07-24T09:34:07.010000"],["2024-07-24T09:34:08.010000"],["2024-07-24T09:34:09.010000"],["2024-07-24T09:34:10.010000"],["2024-07-24T09:34:11.010000"],["2024-07-24T09:34:12.010000"],["2024-07-24T09:34:13.010000"],["2024-07-24T09:34:14.010000"],["2024-07-24T09:34:15.010000"],["2024-07-24T09:34:16.010000"],["2024-07-24T09:34:17.010000"],["2024-07-24T09:34:18.010000"],["2024-07-24T09:34:19.010000"],["2024-07-24T09:34:20.010000"],["2024-07-24T09:34:21.010000"],["2024-07-24T09:34:22.010000"],["2024-07-24T09:34:23.010000"],["2024-07-24T09:34:24.010000"],["2024-07-24T09:34:25.010000"],["2024-07-24T09:34:26.010000"],["2024-07-24T09:34:27.010000"],["2024-07-24T09:34:28.010000"],["2024-07-24T09:34:29.010000"],["2024-07-24T09:34:30.010000"],["2024-07-24T09:34:31.010000"],["2024-07-24T09:34:32.010000"],["2024-07-24T09:34:33.010000"],["2024-07-24T09:34:34.010000"],["2024-07-24T09:34:35.010000"],["2024-07-24T09:34:36.010000"],["2024-07-24T09:34:37.010000"],["2024-07-24T09:34:38.010000"],["2024-07-24T09:34:39.010000"],["2024-07-24T09:34:40.010000"],["2024-07-24T09:34:41.010000"],["2024-07-24T09:34:42.010000"],["2024-07-24T09:34:43.010000"],["2024-07-24T09:34:44.010000"],["2024-07-24T09:34:45.010000"],["2024-07-24T09:34:46.010000"],["2024-07-24T09:34:47.010000"],["2024-07-24T09:34:48.010000"],["2024-07-24T09:34:49.010000"],["2024-07-24T09:34:50.010000"],["2024-07-24T09:34:51.010000"],["2024-07-24T09:34:52.010000"],["2024-07-24T09:34:53.010000"],["2024-07-24T09:34:54.010000"],["2024-07-24T09:34:55.010000"],["2024-07-24T09:34:56.010000"],["2024-07-24T09:34:57.010000"],["2024-07-24T09:34:58.010000"],["2024-07-24T09:34:59.010000"],["2024-07-24T09:35:00.010000"],["2024-07-24T09:35:01.010000"],["2024-07-24T09:35:02.010000"],["2024-07-24T09:35:03.010000"],["2024-07-24T09:35:04.010000"],["2024-07-24T09:35:05.010000"],["2024-07-24T09:35:06.010000"],["2024-07-24T09:35:07.010000"],["2024-07-24T09:35:08.010000"],["2024-07-24T09:35:09.010000"],["2024-07-24T09:35:10.010000"],["2024-07-24T09:35:11.010000"],["2024-07-24T09:35:12.010000"],["2024-07-24T09:35:13.010000"],["2024-07-24T09:35:14.010000"],["2024-07-24T09:35:15.010000"],["2024-07-24T09:35:16.010000"],["2024-07-24T09:35:17.010000"],["2024-07-24T09:35:18.010000"],["2024-07-24T09:35:19.010000"],["2024-07-24T09:35:20.010000"],["2024-07-24T09:35:21.010000"],["2024-07-24T09:35:22.010000"],["2024-07-24T09:35:23.010000"],["2024-07-24T09:35:24.010000"],["2024-07-24T09:35:25.010000"],["2024-07-24T09:35:26.010000"],["2024-07-24T09:35:27.010000"],["2024-07-24T09:35:28.010000"],["2024-07-24T09:35:29.010000"],["2024-07-24T09:35:30.010000"],["2024-07-24T09:35:31.010000"],["2024-07-24T09:35:32.010000"],["2024-07-24T09:35:33.010000"],["2024-07-24T09:35:34.010000"],["2024-07-24T09:35:35.010000"],["2024-07-24T09:35:36.010000"],["2024-07-24T09:35:37.010000"],["2024-07-24T09:35:38.010000"],["2024-07-24T09:35:39.010000"],["2024-07-24T09:35:40.010000"],["2024-07-24T09:35:41.010000"],["2024-07-24T09:35:42.010000"],["2024-07-24T09:35:43.010000"],["2024-07-24T09:35:44.010000"],["2024-07-24T09:35:45.010000"],["2024-07-24T09:35:46.010000"],["2024-07-24T09:35:47.010000"],["2024-07-24T09:35:48.010000"],["2024-07-24T09:35:49.010000"],["2024-07-24T09:35:50.010000"],["2024-07-24T09:35:51.010000"],["2024-07-24T09:35:52.010000"],["2024-07-24T09:35:53.010000"],["2024-07-24T09:35:54.010000"],["2024-07-24T09:35:55.010000"],["2024-07-24T09:35:56.010000"],["2024-07-24T09:35:57.010000"],["2024-07-24T09:35:58.010000"],["2024-07-24T09:35:59.010000"],["2024-07-24T09:36:00.010000"],["2024-07-24T09:36:01.010000"],["2024-07-24T09:36:02.010000"],["2024-07-24T09:36:03.010000"],["2024-07-24T09:36:04.010000"],["2024-07-24T09:36:05.010000"],["2024-07-24T09:36:06.010000"],["2024-07-24T09:36:07.010000"],["2024-07-24T09:36:08.010000"],["2024-07-24T09:36:09.010000"],["2024-07-24T09:36:10.010000"],["2024-07-24T09:36:11.010000"],["2024-07-24T09:36:12.010000"],["2024-07-24T09:36:13.010000"],["2024-07-24T09:36:14.010000"],["2024-07-24T09:36:15.010000"],["2024-07-24T09:36:16.010000"],["2024-07-24T09:36:17.010000"],["2024-07-24T09:36:18.010000"],["2024-07-24T09:36:19.010000"],["2024-07-24T09:36:20.010000"],["2024-07-24T09:36:21.010000"],["2024-07-24T09:36:22.010000"],["2024-07-24T09:36:23.010000"],["2024-07-24T09:36:24.010000"],["2024-07-24T09:36:25.010000"],["2024-07-24T09:36:26.010000"],["2024-07-24T09:36:27.010000"],["2024-07-24T09:36:28.010000"],["2024-07-24T09:36:29.010000"],["2024-07-24T09:36:30.010000"],["2024-07-24T09:36:31.010000"],["2024-07-24T09:36:32.010000"],["2024-07-24T09:36:33.010000"],["2024-07-24T09:36:34.010000"],["2024-07-24T09:36:35.010000"],["2024-07-24T09:36:36.010000"],["2024-07-24T09:36:37.010000"],["2024-07-24T09:36:38.010000"],["2024-07-24T09:36:39.010000"],["2024-07-24T09:36:40.010000"],["2024-07-24T09:36:41.010000"],["2024-07-24T09:36:42.010000"],["2024-07-24T09:36:43.010000"],["2024-07-24T09:36:44.010000"],["2024-07-24T09:36:45.010000"],["2024-07-24T09:36:46.010000"],["2024-07-24T09:36:47.010000"],["2024-07-24T09:36:48.010000"],["2024-07-24T09:36:49.010000"],["2024-07-24T09:36:50.010000"],["2024-07-24T09:36:51.010000"],["2024-07-24T09:36:52.010000"],["2024-07-24T09:36:53.010000"],["2024-07-24T09:36:54.010000"],["2024-07-24T09:36:55.010000"],["2024-07-24T09:36:56.010000"],["2024-07-24T09:36:57.010000"],["2024-07-24T09:36:58.010000"],["2024-07-24T09:36:59.010000"],["2024-07-24T09:37:00.010000"],["2024-07-24T09:37:01.010000"],["2024-07-24T09:37:02.010000"],["2024-07-24T09:37:03.010000"],["2024-07-24T09:37:04.010000"],["2024-07-24T09:37:05.010000"],["2024-07-24T09:37:06.010000"],["2024-07-24T09:37:07.010000"],["2024-07-24T09:37:08.010000"],["2024-07-24T09:37:09.010000"],["2024-07-24T09:37:10.010000"],["2024-07-24T09:37:11.010000"],["2024-07-24T09:37:12.010000"],["2024-07-24T09:37:13.010000"],["2024-07-24T09:37:14.010000"],["2024-07-24T09:37:15.010000"],["2024-07-24T09:37:16.010000"],["2024-07-24T09:37:17.010000"],["2024-07-24T09:37:18.010000"],["2024-07-24T09:37:19.010000"],["2024-07-24T09:37:20.010000"],["2024-07-24T09:37:21.010000"],["2024-07-24T09:37:22.010000"],["2024-07-24T09:37:23.010000"],["2024-07-24T09:37:24.010000"],["2024-07-24T09:37:25.010000"],["2024-07-24T09:37:26.010000"],["2024-07-24T09:37:27.010000"],["2024-07-24T09:37:28.010000"],["2024-07-24T09:37:29.010000"],["2024-07-24T09:37:30.010000"],["2024-07-24T09:37:31.010000"],["2024-07-24T09:37:32.010000"],["2024-07-24T09:37:33.010000"],["2024-07-24T09:37:34.010000"],["2024-07-24T09:37:35.010000"],["2024-07-24T09:37:36.010000"],["2024-07-24T09:37:37.010000"],["2024-07-24T09:37:38.010000"],["2024-07-24T09:37:39.010000"],["2024-07-24T09:37:40.010000"],["2024-07-24T09:37:41.010000"],["2024-07-24T09:37:42.010000"],["2024-07-24T09:37:43.010000"],["2024-07-24T09:37:44.010000"],["2024-07-24T09:37:45.010000"],["2024-07-24T09:37:46.010000"],["2024-07-24T09:37:47.010000"],["2024-07-24T09:37:48.010000"],["2024-07-24T09:37:49.010000"],["2024-07-24T09:37:50.010000"],["2024-07-24T09:37:51.010000"],["2024-07-24T09:37:52.010000"],["2024-07-24T09:37:53.010000"],["2024-07-24T09:37:54.010000"],["2024-07-24T09:37:55.010000"],["2024-07-24T09:37:56.010000"],["2024-07-24T09:37:57.010000"],["2024-07-24T09:37:58.010000"],["2024-07-24T09:37:59.010000"],["2024-07-24T09:38:00.010000"],["2024-07-24T09:38:01.010000"],["2024-07-24T09:38:02.010000"],["2024-07-24T09:38:03.010000"],["2024-07-24T09:38:04.010000"],["2024-07-24T09:38:05.010000"],["2024-07-24T09:38:06.010000"],["2024-07-24T09:38:07.010000"],["2024-07-24T09:38:08.010000"],["2024-07-24T09:38:09.010000"],["2024-07-24T09:38:10.010000"],["2024-07-24T09:38:11.010000"],["2024-07-24T09:38:12.010000"],["2024-07-24T09:38:13.010000"],["2024-07-24T09:38:14.010000"],["2024-07-24T09:38:15.010000"],["2024-07-24T09:38:16.010000"],["2024-07-24T09:38:17.010000"],["2024-07-24T09:38:18.010000"],["2024-07-24T09:38:19.010000"],["2024-07-24T09:38:20.010000"],["2024-07-24T09:38:21.010000"],["2024-07-24T09:38:22.010000"],["2024-07-24T09:38:23.010000"],["2024-07-24T09:38:24.010000"],["2024-07-24T09:38:25.010000"],["2024-07-24T09:38:26.010000"],["2024-07-24T09:38:27.010000"],["2024-07-24T09:38:28.010000"],["2024-07-24T09:38:29.010000"],["2024-07-24T09:38:30.010000"],["2024-07-24T09:38:31.010000"],["2024-07-24T09:38:32.010000"],["2024-07-24T09:38:33.010000"],["2024-07-24T09:38:34.010000"],["2024-07-24T09:38:35.010000"],["2024-07-24T09:38:36.010000"],["2024-07-24T09:38:37.010000"],["2024-07-24T09:38:38.010000"],["2024-07-24T09:38:39.010000"],["2024-07-24T09:38:40.010000"],["2024-07-24T09:38:41.010000"],["2024-07-24T09:38:42.010000"],["2024-07-24T09:38:43.010000"],["2024-07-24T09:38:44.010000"],["2024-07-24T09:38:45.010000"],["2024-07-24T09:38:46.010000"],["2024-07-24T09:38:47.010000"],["2024-07-24T09:38:48.010000"],["2024-07-24T09:38:49.010000"],["2024-07-24T09:38:50.010000"],["2024-07-24T09:38:51.010000"],["2024-07-24T09:38:52.010000"],["2024-07-24T09:38:53.010000"],["2024-07-24T09:38:54.010000"],["2024-07-24T09:38:55.010000"],["2024-07-24T09:38:56.010000"],["2024-07-24T09:38:57.010000"],["2024-07-24T09:38:58.010000"],["2024-07-24T09:38:59.010000"],["2024-07-24T09:39:00.010000"],["2024-07-24T09:39:01.010000"],["2024-07-24T09:39:02.010000"],["2024-07-24T09:39:03.010000"],["2024-07-24T09:39:04.010000"],["2024-07-24T09:39:05.010000"],["2024-07-24T09:39:06.010000"],["2024-07-24T09:39:07.010000"],["2024-07-24T09:39:08.010000"],["2024-07-24T09:39:09.010000"],["2024-07-24T09:39:10.010000"],["2024-07-24T09:39:11.010000"],["2024-07-24T09:39:12.010000"],["2024-07-24T09:39:13.010000"],["2024-07-24T09:39:14.010000"],["2024-07-24T09:39:15.010000"],["2024-07-24T09:39:16.010000"],["2024-07-24T09:39:17.010000"],["2024-07-24T09:39:18.010000"],["2024-07-24T09:39:19.010000"],["2024-07-24T09:39:20.010000"],["2024-07-24T09:39:21.010000"],["2024-07-24T09:39:22.010000"],["2024-07-24T09:39:23.010000"],["2024-07-24T09:39:24.010000"],["2024-07-24T09:39:25.010000"],["2024-07-24T09:39:26.010000"],["2024-07-24T09:39:27.010000"],["2024-07-24T09:39:28.010000"],["2024-07-24T09:39:29.010000"],["2024-07-24T09:39:30.010000"],["2024-07-24T09:39:31.010000"],["2024-07-24T09:39:32.010000"],["2024-07-24T09:39:33.010000"],["2024-07-24T09:39:34.010000"],["2024-07-24T09:39:35.010000"],["2024-07-24T09:39:36.010000"],["2024-07-24T09:39:37.010000"],["2024-07-24T09:39:38.010000"],["2024-07-24T09:39:39.010000"],["2024-07-24T09:39:40.010000"],["2024-07-24T09:39:41.010000"],["2024-07-24T09:39:42.010000"],["2024-07-24T09:39:43.010000"],["2024-07-24T09:39:44.010000"],["2024-07-24T09:39:45.010000"],["2024-07-24T09:39:46.010000"],["2024-07-24T09:39:47.010000"],["2024-07-24T09:39:48.010000"],["2024-07-24T09:39:49.010000"],["2024-07-24T09:39:50.010000"],["2024-07-24T09:39:51.010000"],["2024-07-24T09:39:52.010000"],["2024-07-24T09:39:53.010000"],["2024-07-24T09:39:54.010000"],["2024-07-24T09:39:55.010000"],["2024-07-24T09:39:56.010000"],["2024-07-24T09:39:57.010000"],["2024-07-24T09:39:58.010000"],["2024-07-24T09:39:59.010000"],["2024-07-24T09:40:00.010000"],["2024-07-24T09:40:01.010000"],["2024-07-24T09:40:02.010000"],["2024-07-24T09:40:03.010000"],["2024-07-24T09:40:04.010000"],["2024-07-24T09:40:05.010000"],["2024-07-24T09:40:06.010000"],["2024-07-24T09:40:07.010000"],["2024-07-24T09:40:08.010000"],["2024-07-24T09:40:09.010000"],["2024-07-24T09:40:10.010000"],["2024-07-24T09:40:11.010000"],["2024-07-24T09:40:12.010000"],["2024-07-24T09:40:13.010000"],["2024-07-24T09:40:14.010000"],["2024-07-24T09:40:15.010000"],["2024-07-24T09:40:16.010000"],["2024-07-24T09:40:17.010000"],["2024-07-24T09:40:18.010000"],["2024-07-24T09:40:19.010000"],["2024-07-24T09:40:20.010000"],["2024-07-24T09:40:21.010000"],["2024-07-24T09:40:22.010000"],["2024-07-24T09:40:23.010000"],["2024-07-24T09:40:24.010000"],["2024-07-24T09:40:25.010000"],["2024-07-24T09:40:26.010000"],["2024-07-24T09:40:27.010000"],["2024-07-24T09:40:28.010000"],["2024-07-24T09:40:29.010000"],["2024-07-24T09:40:30.010000"],["2024-07-24T09:40:31.010000"],["2024-07-24T09:40:32.010000"],["2024-07-24T09:40:33.010000"],["2024-07-24T09:40:34.010000"],["2024-07-24T09:40:35.010000"],["2024-07-24T09:40:36.010000"],["2024-07-24T09:40:37.010000"],["2024-07-24T09:40:38.010000"],["2024-07-24T09:40:39.010000"],["2024-07-24T09:40:40.010000"],["2024-07-24T09:40:41.010000"],["2024-07-24T09:40:42.010000"],["2024-07-24T09:40:43.010000"],["2024-07-24T09:40:44.010000"],["2024-07-24T09:40:45.010000"],["2024-07-24T09:40:46.010000"],["2024-07-24T09:40:47.010000"],["2024-07-24T09:40:48.010000"],["2024-07-24T09:40:49.010000"],["2024-07-24T09:40:50.010000"],["2024-07-24T09:40:51.010000"],["2024-07-24T09:40:52.010000"],["2024-07-24T09:40:53.010000"],["2024-07-24T09:40:54.010000"],["2024-07-24T09:40:55.010000"],["2024-07-24T09:40:56.010000"],["2024-07-24T09:40:57.010000"],["2024-07-24T09:40:58.010000"],["2024-07-24T09:40:59.010000"],["2024-07-24T09:41:00.010000"],["2024-07-24T09:41:01.010000"],["2024-07-24T09:41:02.010000"],["2024-07-24T09:41:03.010000"],["2024-07-24T09:41:04.010000"],["2024-07-24T09:41:05.010000"],["2024-07-24T09:41:06.010000"],["2024-07-24T09:41:07.010000"],["2024-07-24T09:41:08.010000"],["2024-07-24T09:41:09.010000"],["2024-07-24T09:41:10.010000"],["2024-07-24T09:41:11.010000"],["2024-07-24T09:41:12.010000"],["2024-07-24T09:41:13.010000"],["2024-07-24T09:41:14.010000"],["2024-07-24T09:41:15.010000"],["2024-07-24T09:41:16.010000"],["2024-07-24T09:41:17.010000"],["2024-07-24T09:41:18.010000"],["2024-07-24T09:41:19.010000"],["2024-07-24T09:41:20.010000"],["2024-07-24T09:41:21.010000"],["2024-07-24T09:41:22.010000"],["2024-07-24T09:41:23.010000"],["2024-07-24T09:41:24.010000"],["2024-07-24T09:41:25.010000"],["2024-07-24T09:41:26.010000"],["2024-07-24T09:41:27.010000"],["2024-07-24T09:41:28.010000"],["2024-07-24T09:41:29.010000"],["2024-07-24T09:41:30.010000"],["2024-07-24T09:41:31.010000"],["2024-07-24T09:41:32.010000"],["2024-07-24T09:41:33.010000"],["2024-07-24T09:41:34.010000"],["2024-07-24T09:41:35.010000"],["2024-07-24T09:41:36.010000"],["2024-07-24T09:41:37.010000"],["2024-07-24T09:41:38.010000"],["2024-07-24T09:41:39.010000"],["2024-07-24T09:41:40.010000"],["2024-07-24T09:41:41.010000"],["2024-07-24T09:41:42.010000"],["2024-07-24T09:41:43.010000"],["2024-07-24T09:41:44.010000"],["2024-07-24T09:41:45.010000"],["2024-07-24T09:41:46.010000"],["2024-07-24T09:41:47.010000"],["2024-07-24T09:41:48.010000"],["2024-07-24T09:41:49.010000"],["2024-07-24T09:41:50.010000"],["2024-07-24T09:41:51.010000"],["2024-07-24T09:41:52.010000"],["2024-07-24T09:41:53.010000"],["2024-07-24T09:41:54.010000"],["2024-07-24T09:41:55.010000"],["2024-07-24T09:41:56.010000"],["2024-07-24T09:41:57.010000"],["2024-07-24T09:41:58.010000"],["2024-07-24T09:41:59.010000"],["2024-07-24T09:42:00.010000"],["2024-07-24T09:42:01.010000"],["2024-07-24T09:42:02.010000"],["2024-07-24T09:42:03.010000"],["2024-07-24T09:42:04.010000"],["2024-07-24T09:42:05.010000"],["2024-07-24T09:42:06.010000"],["2024-07-24T09:42:07.010000"],["2024-07-24T09:42:08.010000"],["2024-07-24T09:42:09.010000"],["2024-07-24T09:42:10.010000"],["2024-07-24T09:42:11.010000"],["2024-07-24T09:42:12.010000"],["2024-07-24T09:42:13.010000"],["2024-07-24T09:42:14.010000"],["2024-07-24T09:42:15.010000"],["2024-07-24T09:42:16.010000"],["2024-07-24T09:42:17.010000"],["2024-07-24T09:42:18.010000"],["2024-07-24T09:42:19.010000"],["2024-07-24T09:42:20.010000"],["2024-07-24T09:42:21.010000"],["2024-07-24T09:42:22.010000"],["2024-07-24T09:42:23.010000"],["2024-07-24T09:42:24.010000"],["2024-07-24T09:42:25.010000"],["2024-07-24T09:42:26.010000"],["2024-07-24T09:42:27.010000"],["2024-07-24T09:42:28.010000"],["2024-07-24T09:42:29.010000"],["2024-07-24T09:42:30.010000"],["2024-07-24T09:42:31.010000"],["2024-07-24T09:42:32.010000"],["2024-07-24T09:42:33.010000"],["2024-07-24T09:42:34.010000"],["2024-07-24T09:42:35.010000"],["2024-07-24T09:42:36.010000"],["2024-07-24T09:42:37.010000"],["2024-07-24T09:42:38.010000"],["2024-07-24T09:42:39.010000"],["2024-07-24T09:42:40.010000"],["2024-07-24T09:42:41.010000"],["2024-07-24T09:42:42.010000"],["2024-07-24T09:42:43.010000"],["2024-07-24T09:42:44.010000"],["2024-07-24T09:42:45.010000"],["2024-07-24T09:42:46.010000"],["2024-07-24T09:42:47.010000"],["2024-07-24T09:42:48.010000"],["2024-07-24T09:42:49.010000"],["2024-07-24T09:42:50.010000"],["2024-07-24T09:42:51.010000"],["2024-07-24T09:42:52.010000"],["2024-07-24T09:42:53.010000"],["2024-07-24T09:42:54.010000"],["2024-07-24T09:42:55.010000"],["2024-07-24T09:42:56.010000"],["2024-07-24T09:42:57.010000"],["2024-07-24T09:42:58.010000"],["2024-07-24T09:42:59.010000"],["2024-07-24T09:43:00.010000"],["2024-07-24T09:43:01.010000"],["2024-07-24T09:43:02.010000"],["2024-07-24T09:43:03.010000"],["2024-07-24T09:43:04.010000"],["2024-07-24T09:43:05.010000"],["2024-07-24T09:43:06.010000"],["2024-07-24T09:43:07.010000"],["2024-07-24T09:43:08.010000"],["2024-07-24T09:43:09.010000"],["2024-07-24T09:43:10.010000"],["2024-07-24T09:43:11.010000"],["2024-07-24T09:43:12.010000"],["2024-07-24T09:43:13.010000"],["2024-07-24T09:43:14.010000"],["2024-07-24T09:43:15.010000"],["2024-07-24T09:43:16.010000"],["2024-07-24T09:43:17.010000"],["2024-07-24T09:43:18.010000"],["2024-07-24T09:43:19.010000"],["2024-07-24T09:43:20.010000"],["2024-07-24T09:43:21.010000"],["2024-07-24T09:43:22.010000"],["2024-07-24T09:43:23.010000"],["2024-07-24T09:43:24.010000"],["2024-07-24T09:43:25.010000"],["2024-07-24T09:43:26.010000"],["2024-07-24T09:43:27.010000"],["2024-07-24T09:43:28.010000"],["2024-07-24T09:43:29.010000"],["2024-07-24T09:43:30.010000"],["2024-07-24T09:43:31.010000"],["2024-07-24T09:43:32.010000"],["2024-07-24T09:43:33.010000"],["2024-07-24T09:43:34.010000"],["2024-07-24T09:43:35.010000"],["2024-07-24T09:43:36.010000"],["2024-07-24T09:43:37.010000"],["2024-07-24T09:43:38.010000"],["2024-07-24T09:43:39.010000"],["2024-07-24T09:43:40.010000"],["2024-07-24T09:43:41.010000"],["2024-07-24T09:43:42.010000"],["2024-07-24T09:43:43.010000"],["2024-07-24T09:43:44.010000"],["2024-07-24T09:43:45.010000"],["2024-07-24T09:43:46.010000"],["2024-07-24T09:43:47.010000"],["2024-07-24T09:43:48.010000"],["2024-07-24T09:43:49.010000"],["2024-07-24T09:43:50.010000"],["2024-07-24T09:43:51.010000"],["2024-07-24T09:43:52.010000"],["2024-07-24T09:43:53.010000"],["2024-07-24T09:43:54.010000"],["2024-07-24T09:43:55.010000"],["2024-07-24T09:43:56.010000"],["2024-07-24T09:43:57.010000"],["2024-07-24T09:43:58.010000"],["2024-07-24T09:43:59.010000"],["2024-07-24T09:44:00.010000"],["2024-07-24T09:44:01.010000"],["2024-07-24T09:44:02.010000"],["2024-07-24T09:44:03.010000"],["2024-07-24T09:44:04.010000"],["2024-07-24T09:44:05.010000"],["2024-07-24T09:44:06.010000"],["2024-07-24T09:44:07.010000"],["2024-07-24T09:44:08.010000"],["2024-07-24T09:44:09.010000"],["2024-07-24T09:44:10.010000"],["2024-07-24T09:44:11.010000"],["2024-07-24T09:44:12.010000"],["2024-07-24T09:44:13.010000"],["2024-07-24T09:44:14.010000"],["2024-07-24T09:44:15.010000"],["2024-07-24T09:44:16.010000"],["2024-07-24T09:44:17.010000"],["2024-07-24T09:44:18.010000"],["2024-07-24T09:44:19.010000"],["2024-07-24T09:44:20.010000"],["2024-07-24T09:44:21.010000"],["2024-07-24T09:44:22.010000"],["2024-07-24T09:44:23.010000"],["2024-07-24T09:44:24.010000"],["2024-07-24T09:44:25.010000"],["2024-07-24T09:44:26.010000"],["2024-07-24T09:44:27.010000"],["2024-07-24T09:44:28.010000"],["2024-07-24T09:44:29.010000"],["2024-07-24T09:44:30.010000"],["2024-07-24T09:44:31.010000"],["2024-07-24T09:44:32.010000"],["2024-07-24T09:44:33.010000"],["2024-07-24T09:44:34.010000"],["2024-07-24T09:44:35.010000"],["2024-07-24T09:44:36.010000"],["2024-07-24T09:44:37.010000"],["2024-07-24T09:44:38.010000"],["2024-07-24T09:44:39.010000"],["2024-07-24T09:44:40.010000"],["2024-07-24T09:44:41.010000"],["2024-07-24T09:44:42.010000"],["2024-07-24T09:44:43.010000"],["2024-07-24T09:44:44.010000"],["2024-07-24T09:44:45.010000"],["2024-07-24T09:44:46.010000"],["2024-07-24T09:44:47.010000"],["2024-07-24T09:44:48.010000"],["2024-07-24T09:44:49.010000"],["2024-07-24T09:44:50.010000"],["2024-07-24T09:44:51.010000"],["2024-07-24T09:44:52.010000"],["2024-07-24T09:44:53.010000"],["2024-07-24T09:44:54.010000"],["2024-07-24T09:44:55.010000"],["2024-07-24T09:44:56.010000"],["2024-07-24T09:44:57.010000"],["2024-07-24T09:44:58.010000"],["2024-07-24T09:44:59.010000"],["2024-07-24T09:45:00.010000"],["2024-07-24T09:45:01.010000"],["2024-07-24T09:45:02.010000"],["2024-07-24T09:45:03.010000"],["2024-07-24T09:45:04.010000"],["2024-07-24T09:45:05.010000"],["2024-07-24T09:45:06.010000"],["2024-07-24T09:45:07.010000"],["2024-07-24T09:45:08.010000"],["2024-07-24T09:45:09.010000"],["2024-07-24T09:45:10.010000"],["2024-07-24T09:45:11.010000"],["2024-07-24T09:45:12.010000"],["2024-07-24T09:45:13.010000"],["2024-07-24T09:45:14.010000"],["2024-07-24T09:45:15.010000"],["2024-07-24T09:45:16.010000"],["2024-07-24T09:45:17.010000"],["2024-07-24T09:45:18.010000"],["2024-07-24T09:45:19.010000"],["2024-07-24T09:45:20.010000"],["2024-07-24T09:45:21.010000"],["2024-07-24T09:45:22.010000"],["2024-07-24T09:45:23.010000"],["2024-07-24T09:45:24.010000"],["2024-07-24T09:45:25.010000"],["2024-07-24T09:45:26.010000"],["2024-07-24T09:45:27.010000"],["2024-07-24T09:45:28.010000"],["2024-07-24T09:45:29.010000"],["2024-07-24T09:45:30.010000"],["2024-07-24T09:45:31.010000"],["2024-07-24T09:45:32.010000"],["2024-07-24T09:45:33.010000"],["2024-07-24T09:45:34.010000"],["2024-07-24T09:45:35.010000"],["2024-07-24T09:45:36.010000"],["2024-07-24T09:45:37.010000"],["2024-07-24T09:45:38.010000"],["2024-07-24T09:45:39.010000"],["2024-07-24T09:45:40.010000"],["2024-07-24T09:45:41.010000"],["2024-07-24T09:45:42.010000"],["2024-07-24T09:45:43.010000"],["2024-07-24T09:45:44.010000"],["2024-07-24T09:45:45.010000"],["2024-07-24T09:45:46.010000"],["2024-07-24T09:45:47.010000"],["2024-07-24T09:45:48.010000"],["2024-07-24T09:45:49.010000"],["2024-07-24T09:45:50.010000"],["2024-07-24T09:45:51.010000"],["2024-07-24T09:45:52.010000"],["2024-07-24T09:45:53.010000"],["2024-07-24T09:45:54.010000"],["2024-07-24T09:45:55.010000"],["2024-07-24T09:45:56.010000"],["2024-07-24T09:45:57.010000"],["2024-07-24T09:45:58.010000"],["2024-07-24T09:45:59.010000"],["2024-07-24T09:46:00.010000"],["2024-07-24T09:46:01.010000"],["2024-07-24T09:46:02.010000"],["2024-07-24T09:46:03.010000"],["2024-07-24T09:46:04.010000"],["2024-07-24T09:46:05.010000"],["2024-07-24T09:46:06.010000"],["2024-07-24T09:46:07.010000"],["2024-07-24T09:46:08.010000"],["2024-07-24T09:46:09.010000"],["2024-07-24T09:46:10.010000"],["2024-07-24T09:46:11.010000"],["2024-07-24T09:46:12.010000"],["2024-07-24T09:46:13.010000"],["2024-07-24T09:46:14.010000"],["2024-07-24T09:46:15.010000"],["2024-07-24T09:46:16.010000"],["2024-07-24T09:46:17.010000"],["2024-07-24T09:46:18.010000"],["2024-07-24T09:46:19.010000"],["2024-07-24T09:46:20.010000"],["2024-07-24T09:46:21.010000"],["2024-07-24T09:46:22.010000"],["2024-07-24T09:46:23.010000"],["2024-07-24T09:46:24.010000"],["2024-07-24T09:46:25.010000"],["2024-07-24T09:46:26.010000"],["2024-07-24T09:46:27.010000"],["2024-07-24T09:46:28.010000"],["2024-07-24T09:46:29.010000"],["2024-07-24T09:46:30.010000"],["2024-07-24T09:46:31.010000"],["2024-07-24T09:46:32.010000"],["2024-07-24T09:46:33.010000"],["2024-07-24T09:46:34.010000"],["2024-07-24T09:46:35.010000"],["2024-07-24T09:46:36.010000"],["2024-07-24T09:46:37.010000"],["2024-07-24T09:46:38.010000"],["2024-07-24T09:46:39.010000"],["2024-07-24T09:46:40.010000"],["2024-07-24T09:46:41.010000"],["2024-07-24T09:46:42.010000"],["2024-07-24T09:46:43.010000"],["2024-07-24T09:46:44.010000"],["2024-07-24T09:46:45.010000"],["2024-07-24T09:46:46.010000"],["2024-07-24T09:46:47.010000"],["2024-07-24T09:46:48.010000"],["2024-07-24T09:46:49.010000"],["2024-07-24T09:46:50.010000"],["2024-07-24T09:46:51.010000"],["2024-07-24T09:46:52.010000"],["2024-07-24T09:46:53.010000"],["2024-07-24T09:46:54.010000"],["2024-07-24T09:46:55.010000"],["2024-07-24T09:46:56.010000"],["2024-07-24T09:46:57.010000"],["2024-07-24T09:46:58.010000"],["2024-07-24T09:46:59.010000"],["2024-07-24T09:47:00.010000"],["2024-07-24T09:47:01.010000"],["2024-07-24T09:47:02.010000"],["2024-07-24T09:47:03.010000"],["2024-07-24T09:47:04.010000"],["2024-07-24T09:47:05.010000"],["2024-07-24T09:47:06.010000"],["2024-07-24T09:47:07.010000"],["2024-07-24T09:47:08.010000"],["2024-07-24T09:47:09.010000"],["2024-07-24T09:47:10.010000"],["2024-07-24T09:47:11.010000"],["2024-07-24T09:47:12.010000"],["2024-07-24T09:47:13.010000"],["2024-07-24T09:47:14.010000"],["2024-07-24T09:47:15.010000"],["2024-07-24T09:47:16.010000"],["2024-07-24T09:47:17.010000"],["2024-07-24T09:47:18.010000"],["2024-07-24T09:47:19.010000"],["2024-07-24T09:47:20.010000"],["2024-07-24T09:47:21.010000"],["2024-07-24T09:47:22.010000"],["2024-07-24T09:47:23.010000"],["2024-07-24T09:47:24.010000"],["2024-07-24T09:47:25.010000"],["2024-07-24T09:47:26.010000"],["2024-07-24T09:47:27.010000"],["2024-07-24T09:47:28.010000"],["2024-07-24T09:47:29.010000"],["2024-07-24T09:47:30.010000"],["2024-07-24T09:47:31.010000"],["2024-07-24T09:47:32.010000"],["2024-07-24T09:47:33.010000"],["2024-07-24T09:47:34.010000"],["2024-07-24T09:47:35.010000"],["2024-07-24T09:47:36.010000"],["2024-07-24T09:47:37.010000"],["2024-07-24T09:47:38.010000"],["2024-07-24T09:47:39.010000"],["2024-07-24T09:47:40.010000"],["2024-07-24T09:47:41.010000"],["2024-07-24T09:47:42.010000"],["2024-07-24T09:47:43.010000"],["2024-07-24T09:47:44.010000"],["2024-07-24T09:47:45.010000"],["2024-07-24T09:47:46.010000"],["2024-07-24T09:47:47.010000"],["2024-07-24T09:47:48.010000"],["2024-07-24T09:47:49.010000"],["2024-07-24T09:47:50.010000"],["2024-07-24T09:47:51.010000"],["2024-07-24T09:47:52.010000"],["2024-07-24T09:47:53.010000"],["2024-07-24T09:47:54.010000"],["2024-07-24T09:47:55.010000"],["2024-07-24T09:47:56.010000"],["2024-07-24T09:47:57.010000"],["2024-07-24T09:47:58.010000"],["2024-07-24T09:47:59.010000"],["2024-07-24T09:48:00.010000"],["2024-07-24T09:48:01.010000"],["2024-07-24T09:48:02.010000"],["2024-07-24T09:48:03.010000"],["2024-07-24T09:48:04.010000"],["2024-07-24T09:48:05.010000"],["2024-07-24T09:48:06.010000"],["2024-07-24T09:48:07.010000"],["2024-07-24T09:48:08.010000"],["2024-07-24T09:48:09.010000"],["2024-07-24T09:48:10.010000"],["2024-07-24T09:48:11.010000"],["2024-07-24T09:48:12.010000"],["2024-07-24T09:48:13.010000"],["2024-07-24T09:48:14.010000"],["2024-07-24T09:48:15.010000"],["2024-07-24T09:48:16.010000"],["2024-07-24T09:48:17.010000"],["2024-07-24T09:48:18.010000"],["2024-07-24T09:48:19.010000"],["2024-07-24T09:48:20.010000"],["2024-07-24T09:48:21.010000"],["2024-07-24T09:48:22.010000"],["2024-07-24T09:48:23.010000"],["2024-07-24T09:48:24.010000"],["2024-07-24T09:48:25.010000"],["2024-07-24T09:48:26.010000"],["2024-07-24T09:48:27.010000"],["2024-07-24T09:48:28.010000"],["2024-07-24T09:48:29.010000"],["2024-07-24T09:48:30.010000"],["2024-07-24T09:48:31.010000"],["2024-07-24T09:48:32.010000"],["2024-07-24T09:48:33.010000"],["2024-07-24T09:48:34.010000"],["2024-07-24T09:48:35.010000"],["2024-07-24T09:48:36.010000"],["2024-07-24T09:48:37.010000"],["2024-07-24T09:48:38.010000"],["2024-07-24T09:48:39.010000"],["2024-07-24T09:48:40.010000"],["2024-07-24T09:48:41.010000"],["2024-07-24T09:48:42.010000"],["2024-07-24T09:48:43.010000"],["2024-07-24T09:48:44.010000"],["2024-07-24T09:48:45.010000"],["2024-07-24T09:48:46.010000"],["2024-07-24T09:48:47.010000"],["2024-07-24T09:48:48.010000"],["2024-07-24T09:48:49.010000"],["2024-07-24T09:48:50.010000"],["2024-07-24T09:48:51.010000"],["2024-07-24T09:48:52.010000"],["2024-07-24T09:48:53.010000"],["2024-07-24T09:48:54.010000"],["2024-07-24T09:48:55.010000"],["2024-07-24T09:48:56.010000"],["2024-07-24T09:48:57.010000"],["2024-07-24T09:48:58.010000"],["2024-07-24T09:48:59.010000"],["2024-07-24T09:49:00.010000"],["2024-07-24T09:49:01.010000"],["2024-07-24T09:49:02.010000"],["2024-07-24T09:49:03.010000"],["2024-07-24T09:49:04.010000"],["2024-07-24T09:49:05.010000"],["2024-07-24T09:49:06.010000"],["2024-07-24T09:49:07.010000"],["2024-07-24T09:49:08.010000"],["2024-07-24T09:49:09.010000"],["2024-07-24T09:49:10.010000"],["2024-07-24T09:49:11.010000"],["2024-07-24T09:49:12.010000"],["2024-07-24T09:49:13.010000"],["2024-07-24T09:49:14.010000"],["2024-07-24T09:49:15.010000"],["2024-07-24T09:49:16.010000"],["2024-07-24T09:49:17.010000"],["2024-07-24T09:49:18.010000"],["2024-07-24T09:49:19.010000"],["2024-07-24T09:49:20.010000"],["2024-07-24T09:49:21.010000"],["2024-07-24T09:49:22.010000"],["2024-07-24T09:49:23.010000"],["2024-07-24T09:49:24.010000"],["2024-07-24T09:49:25.010000"],["2024-07-24T09:49:26.010000"],["2024-07-24T09:49:27.010000"],["2024-07-24T09:49:28.010000"],["2024-07-24T09:49:29.010000"],["2024-07-24T09:49:30.010000"],["2024-07-24T09:49:31.010000"],["2024-07-24T09:49:32.010000"],["2024-07-24T09:49:33.010000"],["2024-07-24T09:49:34.010000"],["2024-07-24T09:49:35.010000"],["2024-07-24T09:49:36.010000"],["2024-07-24T09:49:37.010000"],["2024-07-24T09:49:38.010000"],["2024-07-24T09:49:39.010000"],["2024-07-24T09:49:40.010000"],["2024-07-24T09:49:41.010000"],["2024-07-24T09:49:42.010000"],["2024-07-24T09:49:43.010000"],["2024-07-24T09:49:44.010000"],["2024-07-24T09:49:45.010000"],["2024-07-24T09:49:46.010000"],["2024-07-24T09:49:47.010000"],["2024-07-24T09:49:48.010000"],["2024-07-24T09:49:49.010000"],["2024-07-24T09:49:50.010000"],["2024-07-24T09:49:51.010000"],["2024-07-24T09:49:52.010000"],["2024-07-24T09:49:53.010000"],["2024-07-24T09:49:54.010000"],["2024-07-24T09:49:55.010000"],["2024-07-24T09:49:56.010000"],["2024-07-24T09:49:57.010000"],["2024-07-24T09:49:58.010000"],["2024-07-24T09:49:59.010000"],["2024-07-24T09:50:00.010000"],["2024-07-24T09:50:01.010000"],["2024-07-24T09:50:02.010000"],["2024-07-24T09:50:03.010000"],["2024-07-24T09:50:04.010000"],["2024-07-24T09:50:05.010000"],["2024-07-24T09:50:06.010000"],["2024-07-24T09:50:07.010000"],["2024-07-24T09:50:08.010000"],["2024-07-24T09:50:09.010000"],["2024-07-24T09:50:10.010000"],["2024-07-24T09:50:11.010000"],["2024-07-24T09:50:12.010000"],["2024-07-24T09:50:13.010000"],["2024-07-24T09:50:14.010000"],["2024-07-24T09:50:15.010000"],["2024-07-24T09:50:16.010000"],["2024-07-24T09:50:17.010000"],["2024-07-24T09:50:18.010000"],["2024-07-24T09:50:19.010000"],["2024-07-24T09:50:20.010000"],["2024-07-24T09:50:21.010000"],["2024-07-24T09:50:22.010000"],["2024-07-24T09:50:23.010000"],["2024-07-24T09:50:24.010000"],["2024-07-24T09:50:25.010000"],["2024-07-24T09:50:26.010000"],["2024-07-24T09:50:27.010000"],["2024-07-24T09:50:28.010000"],["2024-07-24T09:50:29.010000"],["2024-07-24T09:50:30.010000"],["2024-07-24T09:50:31.010000"],["2024-07-24T09:50:32.010000"],["2024-07-24T09:50:33.010000"],["2024-07-24T09:50:34.010000"],["2024-07-24T09:50:35.010000"],["2024-07-24T09:50:36.010000"],["2024-07-24T09:50:37.010000"],["2024-07-24T09:50:38.010000"],["2024-07-24T09:50:39.010000"],["2024-07-24T09:50:40.010000"],["2024-07-24T09:50:41.010000"],["2024-07-24T09:50:42.010000"],["2024-07-24T09:50:43.010000"],["2024-07-24T09:50:44.010000"],["2024-07-24T09:50:45.010000"],["2024-07-24T09:50:46.010000"],["2024-07-24T09:50:47.010000"],["2024-07-24T09:50:48.010000"],["2024-07-24T09:50:49.010000"],["2024-07-24T09:50:50.010000"],["2024-07-24T09:50:51.010000"],["2024-07-24T09:50:52.010000"],["2024-07-24T09:50:53.010000"],["2024-07-24T09:50:54.010000"],["2024-07-24T09:50:55.010000"],["2024-07-24T09:50:56.010000"],["2024-07-24T09:50:57.010000"],["2024-07-24T09:50:58.010000"],["2024-07-24T09:50:59.010000"],["2024-07-24T09:51:00.010000"],["2024-07-24T09:51:01.010000"],["2024-07-24T09:51:02.010000"],["2024-07-24T09:51:03.010000"],["2024-07-24T09:51:04.010000"],["2024-07-24T09:51:05.010000"],["2024-07-24T09:51:06.010000"],["2024-07-24T09:51:07.010000"],["2024-07-24T09:51:08.010000"],["2024-07-24T09:51:09.010000"],["2024-07-24T09:51:10.010000"],["2024-07-24T09:51:11.010000"],["2024-07-24T09:51:12.010000"],["2024-07-24T09:51:13.010000"],["2024-07-24T09:51:14.010000"],["2024-07-24T09:51:15.010000"],["2024-07-24T09:51:16.010000"],["2024-07-24T09:51:17.010000"],["2024-07-24T09:51:18.010000"],["2024-07-24T09:51:19.010000"],["2024-07-24T09:51:20.010000"],["2024-07-24T09:51:21.010000"],["2024-07-24T09:51:22.010000"],["2024-07-24T09:51:23.010000"],["2024-07-24T09:51:24.010000"],["2024-07-24T09:51:25.010000"],["2024-07-24T09:51:26.010000"],["2024-07-24T09:51:27.010000"],["2024-07-24T09:51:28.010000"],["2024-07-24T09:51:29.010000"],["2024-07-24T09:51:30.010000"],["2024-07-24T09:51:31.010000"],["2024-07-24T09:51:32.010000"],["2024-07-24T09:51:33.010000"],["2024-07-24T09:51:34.010000"],["2024-07-24T09:51:35.010000"],["2024-07-24T09:51:36.010000"],["2024-07-24T09:51:37.010000"],["2024-07-24T09:51:38.010000"],["2024-07-24T09:51:39.010000"],["2024-07-24T09:51:40.010000"],["2024-07-24T09:51:41.010000"],["2024-07-24T09:51:42.010000"],["2024-07-24T09:51:43.010000"],["2024-07-24T09:51:44.010000"],["2024-07-24T09:51:45.010000"],["2024-07-24T09:51:46.010000"],["2024-07-24T09:51:47.010000"],["2024-07-24T09:51:48.010000"],["2024-07-24T09:51:49.010000"],["2024-07-24T09:51:50.010000"],["2024-07-24T09:51:51.010000"],["2024-07-24T09:51:52.010000"],["2024-07-24T09:51:53.010000"],["2024-07-24T09:51:54.010000"],["2024-07-24T09:51:55.010000"],["2024-07-24T09:51:56.010000"],["2024-07-24T09:51:57.010000"],["2024-07-24T09:51:58.010000"],["2024-07-24T09:51:59.010000"],["2024-07-24T09:52:00.010000"],["2024-07-24T09:52:01.010000"],["2024-07-24T09:52:02.010000"],["2024-07-24T09:52:03.010000"],["2024-07-24T09:52:04.010000"],["2024-07-24T09:52:05.010000"],["2024-07-24T09:52:06.010000"],["2024-07-24T09:52:07.010000"],["2024-07-24T09:52:08.010000"],["2024-07-24T09:52:09.010000"],["2024-07-24T09:52:10.010000"],["2024-07-24T09:52:11.010000"],["2024-07-24T09:52:12.010000"],["2024-07-24T09:52:13.010000"],["2024-07-24T09:52:14.010000"],["2024-07-24T09:52:15.010000"],["2024-07-24T09:52:16.010000"],["2024-07-24T09:52:17.010000"],["2024-07-24T09:52:18.010000"],["2024-07-24T09:52:19.010000"],["2024-07-24T09:52:20.010000"],["2024-07-24T09:52:21.010000"],["2024-07-24T09:52:22.010000"],["2024-07-24T09:52:23.010000"],["2024-07-24T09:52:24.010000"],["2024-07-24T09:52:25.010000"],["2024-07-24T09:52:26.010000"],["2024-07-24T09:52:27.010000"],["2024-07-24T09:52:28.010000"],["2024-07-24T09:52:29.010000"],["2024-07-24T09:52:30.010000"],["2024-07-24T09:52:31.010000"],["2024-07-24T09:52:32.010000"],["2024-07-24T09:52:33.010000"],["2024-07-24T09:52:34.010000"],["2024-07-24T09:52:35.010000"],["2024-07-24T09:52:36.010000"],["2024-07-24T09:52:37.010000"],["2024-07-24T09:52:38.010000"],["2024-07-24T09:52:39.010000"],["2024-07-24T09:52:40.010000"],["2024-07-24T09:52:41.010000"],["2024-07-24T09:52:42.010000"],["2024-07-24T09:52:43.010000"],["2024-07-24T09:52:44.010000"],["2024-07-24T09:52:45.010000"],["2024-07-24T09:52:46.010000"],["2024-07-24T09:52:47.010000"],["2024-07-24T09:52:48.010000"],["2024-07-24T09:52:49.010000"],["2024-07-24T09:52:50.010000"],["2024-07-24T09:52:51.010000"],["2024-07-24T09:52:52.010000"],["2024-07-24T09:52:53.010000"],["2024-07-24T09:52:54.010000"],["2024-07-24T09:52:55.010000"],["2024-07-24T09:52:56.010000"],["2024-07-24T09:52:57.010000"],["2024-07-24T09:52:58.010000"],["2024-07-24T09:52:59.010000"],["2024-07-24T09:53:00.010000"],["2024-07-24T09:53:01.010000"],["2024-07-24T09:53:02.010000"],["2024-07-24T09:53:03.010000"],["2024-07-24T09:53:04.010000"],["2024-07-24T09:53:05.010000"],["2024-07-24T09:53:06.010000"],["2024-07-24T09:53:07.010000"],["2024-07-24T09:53:08.010000"],["2024-07-24T09:53:09.010000"],["2024-07-24T09:53:10.010000"],["2024-07-24T09:53:11.010000"],["2024-07-24T09:53:12.010000"],["2024-07-24T09:53:13.010000"],["2024-07-24T09:53:14.010000"],["2024-07-24T09:53:15.010000"],["2024-07-24T09:53:16.010000"],["2024-07-24T09:53:17.010000"],["2024-07-24T09:53:18.010000"],["2024-07-24T09:53:19.010000"],["2024-07-24T09:53:20.010000"],["2024-07-24T09:53:21.010000"],["2024-07-24T09:53:22.010000"],["2024-07-24T09:53:23.010000"],["2024-07-24T09:53:24.010000"],["2024-07-24T09:53:25.010000"],["2024-07-24T09:53:26.010000"],["2024-07-24T09:53:27.010000"],["2024-07-24T09:53:28.010000"],["2024-07-24T09:53:29.010000"],["2024-07-24T09:53:30.010000"],["2024-07-24T09:53:31.010000"],["2024-07-24T09:53:32.010000"],["2024-07-24T09:53:33.010000"],["2024-07-24T09:53:34.010000"],["2024-07-24T09:53:35.010000"],["2024-07-24T09:53:36.010000"],["2024-07-24T09:53:37.010000"],["2024-07-24T09:53:38.010000"],["2024-07-24T09:53:39.010000"],["2024-07-24T09:53:40.010000"],["2024-07-24T09:53:41.010000"],["2024-07-24T09:53:42.010000"],["2024-07-24T09:53:43.010000"],["2024-07-24T09:53:44.010000"],["2024-07-24T09:53:45.010000"],["2024-07-24T09:53:46.010000"],["2024-07-24T09:53:47.010000"],["2024-07-24T09:53:48.010000"],["2024-07-24T09:53:49.010000"],["2024-07-24T09:53:50.010000"],["2024-07-24T09:53:51.010000"],["2024-07-24T09:53:52.010000"],["2024-07-24T09:53:53.010000"],["2024-07-24T09:53:54.010000"],["2024-07-24T09:53:55.010000"],["2024-07-24T09:53:56.010000"],["2024-07-24T09:53:57.010000"],["2024-07-24T09:53:58.010000"],["2024-07-24T09:53:59.010000"],["2024-07-24T09:54:00.010000"],["2024-07-24T09:54:01.010000"],["2024-07-24T09:54:02.010000"],["2024-07-24T09:54:03.010000"],["2024-07-24T09:54:04.010000"],["2024-07-24T09:54:05.010000"],["2024-07-24T09:54:06.010000"],["2024-07-24T09:54:07.010000"],["2024-07-24T09:54:08.010000"],["2024-07-24T09:54:09.010000"],["2024-07-24T09:54:10.010000"],["2024-07-24T09:54:11.010000"],["2024-07-24T09:54:12.010000"],["2024-07-24T09:54:13.010000"],["2024-07-24T09:54:14.010000"],["2024-07-24T09:54:15.010000"],["2024-07-24T09:54:16.010000"],["2024-07-24T09:54:17.010000"],["2024-07-24T09:54:18.010000"],["2024-07-24T09:54:19.010000"],["2024-07-24T09:54:20.010000"],["2024-07-24T09:54:21.010000"],["2024-07-24T09:54:22.010000"],["2024-07-24T09:54:23.010000"],["2024-07-24T09:54:24.010000"],["2024-07-24T09:54:25.010000"],["2024-07-24T09:54:26.010000"],["2024-07-24T09:54:27.010000"],["2024-07-24T09:54:28.010000"],["2024-07-24T09:54:29.010000"],["2024-07-24T09:54:30.010000"],["2024-07-24T09:54:31.010000"],["2024-07-24T09:54:32.010000"],["2024-07-24T09:54:33.010000"],["2024-07-24T09:54:34.010000"],["2024-07-24T09:54:35.010000"],["2024-07-24T09:54:36.010000"],["2024-07-24T09:54:37.010000"],["2024-07-24T09:54:38.010000"],["2024-07-24T09:54:39.010000"],["2024-07-24T09:54:40.010000"],["2024-07-24T09:54:41.010000"],["2024-07-24T09:54:42.010000"],["2024-07-24T09:54:43.010000"],["2024-07-24T09:54:44.010000"],["2024-07-24T09:54:45.010000"],["2024-07-24T09:54:46.010000"],["2024-07-24T09:54:47.010000"],["2024-07-24T09:54:48.010000"],["2024-07-24T09:54:49.010000"],["2024-07-24T09:54:50.010000"],["2024-07-24T09:54:51.010000"],["2024-07-24T09:54:52.010000"],["2024-07-24T09:54:53.010000"],["2024-07-24T09:54:54.010000"],["2024-07-24T09:54:55.010000"],["2024-07-24T09:54:56.010000"],["2024-07-24T09:54:57.010000"],["2024-07-24T09:54:58.010000"],["2024-07-24T09:54:59.010000"],["2024-07-24T09:55:00.010000"],["2024-07-24T09:55:01.010000"],["2024-07-24T09:55:02.010000"],["2024-07-24T09:55:03.010000"],["2024-07-24T09:55:04.010000"],["2024-07-24T09:55:05.010000"],["2024-07-24T09:55:06.010000"],["2024-07-24T09:55:07.010000"],["2024-07-24T09:55:08.010000"],["2024-07-24T09:55:09.010000"],["2024-07-24T09:55:10.010000"],["2024-07-24T09:55:11.010000"],["2024-07-24T09:55:12.010000"],["2024-07-24T09:55:13.010000"],["2024-07-24T09:55:14.010000"],["2024-07-24T09:55:15.010000"],["2024-07-24T09:55:16.010000"],["2024-07-24T09:55:17.010000"],["2024-07-24T09:55:18.010000"],["2024-07-24T09:55:19.010000"],["2024-07-24T09:55:20.010000"],["2024-07-24T09:55:21.010000"],["2024-07-24T09:55:22.010000"],["2024-07-24T09:55:23.010000"],["2024-07-24T09:55:24.010000"],["2024-07-24T09:55:25.010000"],["2024-07-24T09:55:26.010000"],["2024-07-24T09:55:27.010000"],["2024-07-24T09:55:28.010000"],["2024-07-24T09:55:29.010000"],["2024-07-24T09:55:30.010000"],["2024-07-24T09:55:31.010000"],["2024-07-24T09:55:32.010000"],["2024-07-24T09:55:33.010000"],["2024-07-24T09:55:34.010000"],["2024-07-24T09:55:35.010000"],["2024-07-24T09:55:36.010000"],["2024-07-24T09:55:37.010000"],["2024-07-24T09:55:38.010000"],["2024-07-24T09:55:39.010000"],["2024-07-24T09:55:40.010000"],["2024-07-24T09:55:41.010000"],["2024-07-24T09:55:42.010000"],["2024-07-24T09:55:43.010000"],["2024-07-24T09:55:44.010000"],["2024-07-24T09:55:45.010000"],["2024-07-24T09:55:46.010000"],["2024-07-24T09:55:47.010000"],["2024-07-24T09:55:48.010000"],["2024-07-24T09:55:49.010000"],["2024-07-24T09:55:50.010000"],["2024-07-24T09:55:51.010000"],["2024-07-24T09:55:52.010000"],["2024-07-24T09:55:53.010000"],["2024-07-24T09:55:54.010000"],["2024-07-24T09:55:55.010000"],["2024-07-24T09:55:56.010000"],["2024-07-24T09:55:57.010000"],["2024-07-24T09:55:58.010000"],["2024-07-24T09:55:59.010000"],["2024-07-24T09:56:00.010000"],["2024-07-24T09:56:01.010000"],["2024-07-24T09:56:02.010000"],["2024-07-24T09:56:03.010000"],["2024-07-24T09:56:04.010000"],["2024-07-24T09:56:05.010000"],["2024-07-24T09:56:06.010000"],["2024-07-24T09:56:07.010000"],["2024-07-24T09:56:08.010000"],["2024-07-24T09:56:09.010000"],["2024-07-24T09:56:10.010000"],["2024-07-24T09:56:11.010000"],["2024-07-24T09:56:12.010000"],["2024-07-24T09:56:13.010000"],["2024-07-24T09:56:14.010000"],["2024-07-24T09:56:15.010000"],["2024-07-24T09:56:16.010000"],["2024-07-24T09:56:17.010000"],["2024-07-24T09:56:18.010000"],["2024-07-24T09:56:19.010000"],["2024-07-24T09:56:20.010000"],["2024-07-24T09:56:21.010000"],["2024-07-24T09:56:22.010000"],["2024-07-24T09:56:23.010000"],["2024-07-24T09:56:24.010000"],["2024-07-24T09:56:25.010000"],["2024-07-24T09:56:26.010000"],["2024-07-24T09:56:27.010000"],["2024-07-24T09:56:28.010000"],["2024-07-24T09:56:29.010000"],["2024-07-24T09:56:30.010000"],["2024-07-24T09:56:31.010000"],["2024-07-24T09:56:32.010000"],["2024-07-24T09:56:33.010000"],["2024-07-24T09:56:34.010000"],["2024-07-24T09:56:35.010000"],["2024-07-24T09:56:36.010000"],["2024-07-24T09:56:37.010000"],["2024-07-24T09:56:38.010000"],["2024-07-24T09:56:39.010000"],["2024-07-24T09:56:40.010000"],["2024-07-24T09:56:41.010000"],["2024-07-24T09:56:42.010000"],["2024-07-24T09:56:43.010000"],["2024-07-24T09:56:44.010000"],["2024-07-24T09:56:45.010000"],["2024-07-24T09:56:46.010000"],["2024-07-24T09:56:47.010000"],["2024-07-24T09:56:48.010000"],["2024-07-24T09:56:49.010000"],["2024-07-24T09:56:50.010000"],["2024-07-24T09:56:51.010000"],["2024-07-24T09:56:52.010000"],["2024-07-24T09:56:53.010000"],["2024-07-24T09:56:54.010000"],["2024-07-24T09:56:55.010000"],["2024-07-24T09:56:56.010000"],["2024-07-24T09:56:57.010000"],["2024-07-24T09:56:58.010000"],["2024-07-24T09:56:59.010000"],["2024-07-24T09:57:00.010000"],["2024-07-24T09:57:01.010000"],["2024-07-24T09:57:02.010000"],["2024-07-24T09:57:03.010000"],["2024-07-24T09:57:04.010000"],["2024-07-24T09:57:05.010000"],["2024-07-24T09:57:06.010000"],["2024-07-24T09:57:07.010000"],["2024-07-24T09:57:08.010000"],["2024-07-24T09:57:09.010000"],["2024-07-24T09:57:10.010000"],["2024-07-24T09:57:11.010000"],["2024-07-24T09:57:12.010000"],["2024-07-24T09:57:13.010000"],["2024-07-24T09:57:14.010000"],["2024-07-24T09:57:15.010000"],["2024-07-24T09:57:16.010000"],["2024-07-24T09:57:17.010000"],["2024-07-24T09:57:18.010000"],["2024-07-24T09:57:19.010000"],["2024-07-24T09:57:20.010000"],["2024-07-24T09:57:21.010000"],["2024-07-24T09:57:22.010000"],["2024-07-24T09:57:23.010000"],["2024-07-24T09:57:24.010000"],["2024-07-24T09:57:25.010000"],["2024-07-24T09:57:26.010000"],["2024-07-24T09:57:27.010000"],["2024-07-24T09:57:28.010000"],["2024-07-24T09:57:29.010000"],["2024-07-24T09:57:30.010000"],["2024-07-24T09:57:31.010000"],["2024-07-24T09:57:32.010000"],["2024-07-24T09:57:33.010000"],["2024-07-24T09:57:34.010000"],["2024-07-24T09:57:35.010000"],["2024-07-24T09:57:36.010000"],["2024-07-24T09:57:37.010000"],["2024-07-24T09:57:38.010000"],["2024-07-24T09:57:39.010000"],["2024-07-24T09:57:40.010000"],["2024-07-24T09:57:41.010000"],["2024-07-24T09:57:42.010000"],["2024-07-24T09:57:43.010000"],["2024-07-24T09:57:44.010000"],["2024-07-24T09:57:45.010000"],["2024-07-24T09:57:46.010000"],["2024-07-24T09:57:47.010000"],["2024-07-24T09:57:48.010000"],["2024-07-24T09:57:49.010000"],["2024-07-24T09:57:50.010000"],["2024-07-24T09:57:51.010000"],["2024-07-24T09:57:52.010000"],["2024-07-24T09:57:53.010000"],["2024-07-24T09:57:54.010000"],["2024-07-24T09:57:55.010000"],["2024-07-24T09:57:56.010000"],["2024-07-24T09:57:57.010000"],["2024-07-24T09:57:58.010000"],["2024-07-24T09:57:59.010000"],["2024-07-24T09:58:00.010000"],["2024-07-24T09:58:01.010000"],["2024-07-24T09:58:02.010000"],["2024-07-24T09:58:03.010000"],["2024-07-24T09:58:04.010000"],["2024-07-24T09:58:05.010000"],["2024-07-24T09:58:06.010000"],["2024-07-24T09:58:07.010000"],["2024-07-24T09:58:08.010000"],["2024-07-24T09:58:09.010000"],["2024-07-24T09:58:10.010000"],["2024-07-24T09:58:11.010000"],["2024-07-24T09:58:12.010000"],["2024-07-24T09:58:13.010000"],["2024-07-24T09:58:14.010000"],["2024-07-24T09:58:15.010000"],["2024-07-24T09:58:16.010000"],["2024-07-24T09:58:17.010000"],["2024-07-24T09:58:18.010000"],["2024-07-24T09:58:19.010000"],["2024-07-24T09:58:20.010000"],["2024-07-24T09:58:21.010000"],["2024-07-24T09:58:22.010000"],["2024-07-24T09:58:23.010000"],["2024-07-24T09:58:24.010000"],["2024-07-24T09:58:25.010000"],["2024-07-24T09:58:26.010000"],["2024-07-24T09:58:27.010000"],["2024-07-24T09:58:28.010000"],["2024-07-24T09:58:29.010000"],["2024-07-24T09:58:30.010000"],["2024-07-24T09:58:31.010000"],["2024-07-24T09:58:32.010000"],["2024-07-24T09:58:33.010000"],["2024-07-24T09:58:34.010000"],["2024-07-24T09:58:35.010000"],["2024-07-24T09:58:36.010000"],["2024-07-24T09:58:37.010000"],["2024-07-24T09:58:38.010000"],["2024-07-24T09:58:39.010000"],["2024-07-24T09:58:40.010000"],["2024-07-24T09:58:41.010000"],["2024-07-24T09:58:42.010000"],["2024-07-24T09:58:43.010000"],["2024-07-24T09:58:44.010000"],["2024-07-24T09:58:45.010000"],["2024-07-24T09:58:46.010000"],["2024-07-24T09:58:47.010000"],["2024-07-24T09:58:48.010000"],["2024-07-24T09:58:49.010000"],["2024-07-24T09:58:50.010000"],["2024-07-24T09:58:51.010000"],["2024-07-24T09:58:52.010000"],["2024-07-24T09:58:53.010000"],["2024-07-24T09:58:54.010000"],["2024-07-24T09:58:55.010000"],["2024-07-24T09:58:56.010000"],["2024-07-24T09:58:57.010000"],["2024-07-24T09:58:58.010000"],["2024-07-24T09:58:59.010000"],["2024-07-24T09:59:00.010000"],["2024-07-24T09:59:01.010000"],["2024-07-24T09:59:02.010000"],["2024-07-24T09:59:03.010000"],["2024-07-24T09:59:04.010000"],["2024-07-24T09:59:05.010000"],["2024-07-24T09:59:06.010000"],["2024-07-24T09:59:07.010000"],["2024-07-24T09:59:08.010000"],["2024-07-24T09:59:09.010000"],["2024-07-24T09:59:10.010000"],["2024-07-24T09:59:11.010000"],["2024-07-24T09:59:12.010000"],["2024-07-24T09:59:13.010000"],["2024-07-24T09:59:14.010000"],["2024-07-24T09:59:15.010000"],["2024-07-24T09:59:16.010000"],["2024-07-24T09:59:17.010000"],["2024-07-24T09:59:18.010000"],["2024-07-24T09:59:19.010000"],["2024-07-24T09:59:20.010000"],["2024-07-24T09:59:21.010000"],["2024-07-24T09:59:22.010000"],["2024-07-24T09:59:23.010000"],["2024-07-24T09:59:24.010000"],["2024-07-24T09:59:25.010000"],["2024-07-24T09:59:26.010000"],["2024-07-24T09:59:27.010000"],["2024-07-24T09:59:28.010000"],["2024-07-24T09:59:29.010000"],["2024-07-24T09:59:30.010000"],["2024-07-24T09:59:31.010000"],["2024-07-24T09:59:32.010000"],["2024-07-24T09:59:33.010000"],["2024-07-24T09:59:34.010000"],["2024-07-24T09:59:35.010000"],["2024-07-24T09:59:36.010000"],["2024-07-24T09:59:37.010000"],["2024-07-24T09:59:38.010000"],["2024-07-24T09:59:39.010000"],["2024-07-24T09:59:40.010000"],["2024-07-24T09:59:41.010000"],["2024-07-24T09:59:42.010000"],["2024-07-24T09:59:43.010000"],["2024-07-24T09:59:44.010000"],["2024-07-24T09:59:45.010000"],["2024-07-24T09:59:46.010000"],["2024-07-24T09:59:47.010000"],["2024-07-24T09:59:48.010000"],["2024-07-24T09:59:49.010000"],["2024-07-24T09:59:50.010000"],["2024-07-24T09:59:51.010000"],["2024-07-24T09:59:52.010000"],["2024-07-24T09:59:53.010000"],["2024-07-24T09:59:54.010000"],["2024-07-24T09:59:55.010000"],["2024-07-24T09:59:56.010000"],["2024-07-24T09:59:57.010000"],["2024-07-24T09:59:58.010000"],["2024-07-24T09:59:59.010000"],["2024-07-24T10:00:00.010000"],["2024-07-24T10:00:01.010000"],["2024-07-24T10:00:02.010000"],["2024-07-24T10:00:03.010000"],["2024-07-24T10:00:04.010000"],["2024-07-24T10:00:05.010000"],["2024-07-24T10:00:06.010000"],["2024-07-24T10:00:07.010000"],["2024-07-24T10:00:08.010000"],["2024-07-24T10:00:09.010000"],["2024-07-24T10:00:10.010000"],["2024-07-24T10:00:11.010000"],["2024-07-24T10:00:12.010000"],["2024-07-24T10:00:13.010000"],["2024-07-24T10:00:14.010000"],["2024-07-24T10:00:15.010000"],["2024-07-24T10:00:16.010000"],["2024-07-24T10:00:17.010000"],["2024-07-24T10:00:18.010000"],["2024-07-24T10:00:19.010000"],["2024-07-24T10:00:20.010000"],["2024-07-24T10:00:21.010000"],["2024-07-24T10:00:22.010000"],["2024-07-24T10:00:23.010000"],["2024-07-24T10:00:24.010000"],["2024-07-24T10:00:25.010000"],["2024-07-24T10:00:26.010000"],["2024-07-24T10:00:27.010000"],["2024-07-24T10:00:28.010000"],["2024-07-24T10:00:29.010000"],["2024-07-24T10:00:30.010000"],["2024-07-24T10:00:31.010000"],["2024-07-24T10:00:32.010000"],["2024-07-24T10:00:33.010000"],["2024-07-24T10:00:34.010000"],["2024-07-24T10:00:35.010000"],["2024-07-24T10:00:36.010000"],["2024-07-24T10:00:37.010000"],["2024-07-24T10:00:38.010000"],["2024-07-24T10:00:39.010000"],["2024-07-24T10:00:40.010000"],["2024-07-24T10:00:41.010000"],["2024-07-24T10:00:42.010000"],["2024-07-24T10:00:43.010000"],["2024-07-24T10:00:44.010000"],["2024-07-24T10:00:45.010000"],["2024-07-24T10:00:46.010000"],["2024-07-24T10:00:47.010000"],["2024-07-24T10:00:48.010000"],["2024-07-24T10:00:49.010000"],["2024-07-24T10:00:50.010000"],["2024-07-24T10:00:51.010000"],["2024-07-24T10:00:52.010000"],["2024-07-24T10:00:53.010000"],["2024-07-24T10:00:54.010000"],["2024-07-24T10:00:55.010000"],["2024-07-24T10:00:56.010000"],["2024-07-24T10:00:57.010000"],["2024-07-24T10:00:58.010000"],["2024-07-24T10:00:59.010000"],["2024-07-24T10:01:00.010000"],["2024-07-24T10:01:01.010000"],["2024-07-24T10:01:02.010000"],["2024-07-24T10:01:03.010000"],["2024-07-24T10:01:04.010000"],["2024-07-24T10:01:05.010000"],["2024-07-24T10:01:06.010000"],["2024-07-24T10:01:07.010000"],["2024-07-24T10:01:08.010000"],["2024-07-24T10:01:09.010000"],["2024-07-24T10:01:10.010000"],["2024-07-24T10:01:11.010000"],["2024-07-24T10:01:12.010000"],["2024-07-24T10:01:13.010000"],["2024-07-24T10:01:14.010000"],["2024-07-24T10:01:15.010000"],["2024-07-24T10:01:16.010000"],["2024-07-24T10:01:17.010000"],["2024-07-24T10:01:18.010000"],["2024-07-24T10:01:19.010000"],["2024-07-24T10:01:20.010000"],["2024-07-24T10:01:21.010000"],["2024-07-24T10:01:22.010000"],["2024-07-24T10:01:23.010000"],["2024-07-24T10:01:24.010000"],["2024-07-24T10:01:25.010000"],["2024-07-24T10:01:26.010000"],["2024-07-24T10:01:27.010000"],["2024-07-24T10:01:28.010000"],["2024-07-24T10:01:29.010000"],["2024-07-24T10:01:30.010000"],["2024-07-24T10:01:31.010000"],["2024-07-24T10:01:32.010000"],["2024-07-24T10:01:33.010000"],["2024-07-24T10:01:34.010000"],["2024-07-24T10:01:35.010000"],["2024-07-24T10:01:36.010000"],["2024-07-24T10:01:37.010000"],["2024-07-24T10:01:38.010000"],["2024-07-24T10:01:39.010000"],["2024-07-24T10:01:40.010000"],["2024-07-24T10:01:41.010000"],["2024-07-24T10:01:42.010000"],["2024-07-24T10:01:43.010000"],["2024-07-24T10:01:44.010000"],["2024-07-24T10:01:45.010000"],["2024-07-24T10:01:46.010000"],["2024-07-24T10:01:47.010000"],["2024-07-24T10:01:48.010000"],["2024-07-24T10:01:49.010000"],["2024-07-24T10:01:50.010000"],["2024-07-24T10:01:51.010000"],["2024-07-24T10:01:52.010000"],["2024-07-24T10:01:53.010000"],["2024-07-24T10:01:54.010000"],["2024-07-24T10:01:55.010000"],["2024-07-24T10:01:56.010000"],["2024-07-24T10:01:57.010000"],["2024-07-24T10:01:58.010000"],["2024-07-24T10:01:59.010000"],["2024-07-24T10:02:00.010000"],["2024-07-24T10:02:01.010000"],["2024-07-24T10:02:02.010000"],["2024-07-24T10:02:03.010000"],["2024-07-24T10:02:04.010000"],["2024-07-24T10:02:05.010000"],["2024-07-24T10:02:06.010000"],["2024-07-24T10:02:07.010000"],["2024-07-24T10:02:08.010000"],["2024-07-24T10:02:09.010000"],["2024-07-24T10:02:10.010000"],["2024-07-24T10:02:11.010000"],["2024-07-24T10:02:12.010000"],["2024-07-24T10:02:13.010000"],["2024-07-24T10:02:14.010000"],["2024-07-24T10:02:15.010000"],["2024-07-24T10:02:16.010000"],["2024-07-24T10:02:17.010000"],["2024-07-24T10:02:18.010000"],["2024-07-24T10:02:19.010000"],["2024-07-24T10:02:20.010000"],["2024-07-24T10:02:21.010000"],["2024-07-24T10:02:22.010000"],["2024-07-24T10:02:23.010000"],["2024-07-24T10:02:24.010000"],["2024-07-24T10:02:25.010000"],["2024-07-24T10:02:26.010000"],["2024-07-24T10:02:27.010000"],["2024-07-24T10:02:28.010000"],["2024-07-24T10:02:29.010000"],["2024-07-24T10:02:30.010000"],["2024-07-24T10:02:31.010000"],["2024-07-24T10:02:32.010000"],["2024-07-24T10:02:33.010000"],["2024-07-24T10:02:34.010000"],["2024-07-24T10:02:35.010000"],["2024-07-24T10:02:36.010000"],["2024-07-24T10:02:37.010000"],["2024-07-24T10:02:38.010000"],["2024-07-24T10:02:39.010000"],["2024-07-24T10:02:40.010000"],["2024-07-24T10:02:41.010000"],["2024-07-24T10:02:42.010000"],["2024-07-24T10:02:43.010000"],["2024-07-24T10:02:44.010000"],["2024-07-24T10:02:45.010000"],["2024-07-24T10:02:46.010000"],["2024-07-24T10:02:47.010000"],["2024-07-24T10:02:48.010000"],["2024-07-24T10:02:49.010000"],["2024-07-24T10:02:50.010000"],["2024-07-24T10:02:51.010000"],["2024-07-24T10:02:52.010000"],["2024-07-24T10:02:53.010000"],["2024-07-24T10:02:54.010000"],["2024-07-24T10:02:55.010000"],["2024-07-24T10:02:56.010000"],["2024-07-24T10:02:57.010000"],["2024-07-24T10:02:58.010000"],["2024-07-24T10:02:59.010000"],["2024-07-24T10:03:00.010000"],["2024-07-24T10:03:01.010000"],["2024-07-24T10:03:02.010000"],["2024-07-24T10:03:03.010000"],["2024-07-24T10:03:04.010000"],["2024-07-24T10:03:05.010000"],["2024-07-24T10:03:06.010000"],["2024-07-24T10:03:07.010000"],["2024-07-24T10:03:08.010000"],["2024-07-24T10:03:09.010000"],["2024-07-24T10:03:10.010000"],["2024-07-24T10:03:11.010000"],["2024-07-24T10:03:12.010000"],["2024-07-24T10:03:13.010000"],["2024-07-24T10:03:14.010000"],["2024-07-24T10:03:15.010000"],["2024-07-24T10:03:16.010000"],["2024-07-24T10:03:17.010000"],["2024-07-24T10:03:18.010000"],["2024-07-24T10:03:19.010000"],["2024-07-24T10:03:20.010000"],["2024-07-24T10:03:21.010000"],["2024-07-24T10:03:22.010000"],["2024-07-24T10:03:23.010000"],["2024-07-24T10:03:24.010000"],["2024-07-24T10:03:25.010000"],["2024-07-24T10:03:26.010000"],["2024-07-24T10:03:27.010000"],["2024-07-24T10:03:28.010000"],["2024-07-24T10:03:29.010000"],["2024-07-24T10:03:30.010000"],["2024-07-24T10:03:31.010000"],["2024-07-24T10:03:32.010000"],["2024-07-24T10:03:33.010000"],["2024-07-24T10:03:34.010000"],["2024-07-24T10:03:35.010000"],["2024-07-24T10:03:36.010000"],["2024-07-24T10:03:37.010000"],["2024-07-24T10:03:38.010000"],["2024-07-24T10:03:39.010000"],["2024-07-24T10:03:40.010000"],["2024-07-24T10:03:41.010000"],["2024-07-24T10:03:42.010000"],["2024-07-24T10:03:43.010000"],["2024-07-24T10:03:44.010000"],["2024-07-24T10:03:45.010000"],["2024-07-24T10:03:46.010000"],["2024-07-24T10:03:47.010000"],["2024-07-24T10:03:48.010000"],["2024-07-24T10:03:49.010000"],["2024-07-24T10:03:50.010000"],["2024-07-24T10:03:51.010000"],["2024-07-24T10:03:52.010000"],["2024-07-24T10:03:53.010000"],["2024-07-24T10:03:54.010000"],["2024-07-24T10:03:55.010000"],["2024-07-24T10:03:56.010000"],["2024-07-24T10:03:57.010000"],["2024-07-24T10:03:58.010000"],["2024-07-24T10:03:59.010000"],["2024-07-24T10:04:00.010000"],["2024-07-24T10:04:01.010000"],["2024-07-24T10:04:02.010000"],["2024-07-24T10:04:03.010000"],["2024-07-24T10:04:04.010000"],["2024-07-24T10:04:05.010000"],["2024-07-24T10:04:06.010000"],["2024-07-24T10:04:07.010000"],["2024-07-24T10:04:08.010000"],["2024-07-24T10:04:09.010000"],["2024-07-24T10:04:10.010000"],["2024-07-24T10:04:11.010000"],["2024-07-24T10:04:12.010000"],["2024-07-24T10:04:13.010000"],["2024-07-24T10:04:14.010000"],["2024-07-24T10:04:15.010000"],["2024-07-24T10:04:16.010000"],["2024-07-24T10:04:17.010000"],["2024-07-24T10:04:18.010000"],["2024-07-24T10:04:19.010000"],["2024-07-24T10:04:20.010000"],["2024-07-24T10:04:21.010000"],["2024-07-24T10:04:22.010000"],["2024-07-24T10:04:23.010000"],["2024-07-24T10:04:24.010000"],["2024-07-24T10:04:25.010000"],["2024-07-24T10:04:26.010000"],["2024-07-24T10:04:27.010000"],["2024-07-24T10:04:28.010000"],["2024-07-24T10:04:29.010000"],["2024-07-24T10:04:30.010000"],["2024-07-24T10:04:31.010000"],["2024-07-24T10:04:32.010000"],["2024-07-24T10:04:33.010000"],["2024-07-24T10:04:34.010000"],["2024-07-24T10:04:35.010000"],["2024-07-24T10:04:36.010000"],["2024-07-24T10:04:37.010000"],["2024-07-24T10:04:38.010000"],["2024-07-24T10:04:39.010000"],["2024-07-24T10:04:40.010000"],["2024-07-24T10:04:41.010000"],["2024-07-24T10:04:42.010000"],["2024-07-24T10:04:43.010000"],["2024-07-24T10:04:44.010000"],["2024-07-24T10:04:45.010000"],["2024-07-24T10:04:46.010000"],["2024-07-24T10:04:47.010000"],["2024-07-24T10:04:48.010000"],["2024-07-24T10:04:49.010000"],["2024-07-24T10:04:50.010000"],["2024-07-24T10:04:51.010000"],["2024-07-24T10:04:52.010000"],["2024-07-24T10:04:53.010000"],["2024-07-24T10:04:54.010000"],["2024-07-24T10:04:55.010000"],["2024-07-24T10:04:56.010000"],["2024-07-24T10:04:57.010000"],["2024-07-24T10:04:58.010000"],["2024-07-24T10:04:59.010000"],["2024-07-24T10:05:00.010000"],["2024-07-24T10:05:01.010000"],["2024-07-24T10:05:02.010000"],["2024-07-24T10:05:03.010000"],["2024-07-24T10:05:04.010000"],["2024-07-24T10:05:05.010000"],["2024-07-24T10:05:06.010000"],["2024-07-24T10:05:07.010000"],["2024-07-24T10:05:08.010000"],["2024-07-24T10:05:09.010000"],["2024-07-24T10:05:10.010000"],["2024-07-24T10:05:11.010000"],["2024-07-24T10:05:12.010000"],["2024-07-24T10:05:13.010000"],["2024-07-24T10:05:14.010000"],["2024-07-24T10:05:15.010000"],["2024-07-24T10:05:16.010000"],["2024-07-24T10:05:17.010000"],["2024-07-24T10:05:18.010000"],["2024-07-24T10:05:19.010000"],["2024-07-24T10:05:20.010000"],["2024-07-24T10:05:21.010000"],["2024-07-24T10:05:22.010000"],["2024-07-24T10:05:23.010000"],["2024-07-24T10:05:24.010000"],["2024-07-24T10:05:25.010000"],["2024-07-24T10:05:26.010000"],["2024-07-24T10:05:27.010000"],["2024-07-24T10:05:28.010000"],["2024-07-24T10:05:29.010000"],["2024-07-24T10:05:30.010000"],["2024-07-24T10:05:31.010000"],["2024-07-24T10:05:32.010000"],["2024-07-24T10:05:33.010000"],["2024-07-24T10:05:34.010000"],["2024-07-24T10:05:35.010000"],["2024-07-24T10:05:36.010000"],["2024-07-24T10:05:37.010000"],["2024-07-24T10:05:38.010000"],["2024-07-24T10:05:39.010000"],["2024-07-24T10:05:40.010000"],["2024-07-24T10:05:41.010000"],["2024-07-24T10:05:42.010000"],["2024-07-24T10:05:43.010000"],["2024-07-24T10:05:44.010000"],["2024-07-24T10:05:45.010000"],["2024-07-24T10:05:46.010000"],["2024-07-24T10:05:47.010000"],["2024-07-24T10:05:48.010000"],["2024-07-24T10:05:49.010000"],["2024-07-24T10:05:50.010000"],["2024-07-24T10:05:51.010000"],["2024-07-24T10:05:52.010000"],["2024-07-24T10:05:53.010000"],["2024-07-24T10:05:54.010000"],["2024-07-24T10:05:55.010000"],["2024-07-24T10:05:56.010000"],["2024-07-24T10:05:57.010000"],["2024-07-24T10:05:58.010000"],["2024-07-24T10:05:59.010000"],["2024-07-24T10:06:00.010000"],["2024-07-24T10:06:01.010000"],["2024-07-24T10:06:02.010000"],["2024-07-24T10:06:03.010000"],["2024-07-24T10:06:04.010000"],["2024-07-24T10:06:05.010000"],["2024-07-24T10:06:06.010000"],["2024-07-24T10:06:07.010000"],["2024-07-24T10:06:08.010000"],["2024-07-24T10:06:09.010000"],["2024-07-24T10:06:10.010000"],["2024-07-24T10:06:11.010000"],["2024-07-24T10:06:12.010000"],["2024-07-24T10:06:13.010000"],["2024-07-24T10:06:14.010000"],["2024-07-24T10:06:15.010000"],["2024-07-24T10:06:16.010000"],["2024-07-24T10:06:17.010000"],["2024-07-24T10:06:18.010000"],["2024-07-24T10:06:19.010000"],["2024-07-24T10:06:20.010000"],["2024-07-24T10:06:21.010000"],["2024-07-24T10:06:22.010000"],["2024-07-24T10:06:23.010000"],["2024-07-24T10:06:24.010000"],["2024-07-24T10:06:25.010000"],["2024-07-24T10:06:26.010000"],["2024-07-24T10:06:27.010000"],["2024-07-24T10:06:28.010000"],["2024-07-24T10:06:29.010000"],["2024-07-24T10:06:30.010000"],["2024-07-24T10:06:31.010000"],["2024-07-24T10:06:32.010000"],["2024-07-24T10:06:33.010000"],["2024-07-24T10:06:34.010000"],["2024-07-24T10:06:35.010000"],["2024-07-24T10:06:36.010000"],["2024-07-24T10:06:37.010000"],["2024-07-24T10:06:38.010000"],["2024-07-24T10:06:39.010000"],["2024-07-24T10:06:40.010000"],["2024-07-24T10:06:41.010000"],["2024-07-24T10:06:42.010000"],["2024-07-24T10:06:43.010000"],["2024-07-24T10:06:44.010000"],["2024-07-24T10:06:45.010000"],["2024-07-24T10:06:46.010000"],["2024-07-24T10:06:47.010000"],["2024-07-24T10:06:48.010000"],["2024-07-24T10:06:49.010000"],["2024-07-24T10:06:50.010000"],["2024-07-24T10:06:51.010000"],["2024-07-24T10:06:52.010000"],["2024-07-24T10:06:53.010000"],["2024-07-24T10:06:54.010000"],["2024-07-24T10:06:55.010000"],["2024-07-24T10:06:56.010000"],["2024-07-24T10:06:57.010000"],["2024-07-24T10:06:58.010000"],["2024-07-24T10:06:59.010000"],["2024-07-24T10:07:00.010000"],["2024-07-24T10:07:01.010000"],["2024-07-24T10:07:02.010000"],["2024-07-24T10:07:03.010000"],["2024-07-24T10:07:04.010000"],["2024-07-24T10:07:05.010000"],["2024-07-24T10:07:06.010000"],["2024-07-24T10:07:07.010000"],["2024-07-24T10:07:08.010000"],["2024-07-24T10:07:09.010000"],["2024-07-24T10:07:10.010000"],["2024-07-24T10:07:11.010000"],["2024-07-24T10:07:12.010000"],["2024-07-24T10:07:13.010000"],["2024-07-24T10:07:14.010000"],["2024-07-24T10:07:15.010000"],["2024-07-24T10:07:16.010000"],["2024-07-24T10:07:17.010000"],["2024-07-24T10:07:18.010000"],["2024-07-24T10:07:19.010000"],["2024-07-24T10:07:20.010000"],["2024-07-24T10:07:21.010000"],["2024-07-24T10:07:22.010000"],["2024-07-24T10:07:23.010000"],["2024-07-24T10:07:24.010000"],["2024-07-24T10:07:25.010000"],["2024-07-24T10:07:26.010000"],["2024-07-24T10:07:27.010000"],["2024-07-24T10:07:28.010000"],["2024-07-24T10:07:29.010000"],["2024-07-24T10:07:30.010000"],["2024-07-24T10:07:31.010000"],["2024-07-24T10:07:32.010000"],["2024-07-24T10:07:33.010000"],["2024-07-24T10:07:34.010000"],["2024-07-24T10:07:35.010000"],["2024-07-24T10:07:36.010000"],["2024-07-24T10:07:37.010000"],["2024-07-24T10:07:38.010000"],["2024-07-24T10:07:39.010000"],["2024-07-24T10:07:40.010000"],["2024-07-24T10:07:41.010000"],["2024-07-24T10:07:42.010000"],["2024-07-24T10:07:43.010000"],["2024-07-24T10:07:44.010000"],["2024-07-24T10:07:45.010000"],["2024-07-24T10:07:46.010000"],["2024-07-24T10:07:47.010000"],["2024-07-24T10:07:48.010000"],["2024-07-24T10:07:49.010000"],["2024-07-24T10:07:50.010000"],["2024-07-24T10:07:51.010000"],["2024-07-24T10:07:52.010000"],["2024-07-24T10:07:53.010000"],["2024-07-24T10:07:54.010000"],["2024-07-24T10:07:55.010000"],["2024-07-24T10:07:56.010000"],["2024-07-24T10:07:57.010000"],["2024-07-24T10:07:58.010000"],["2024-07-24T10:07:59.010000"],["2024-07-24T10:08:00.010000"],["2024-07-24T10:08:01.010000"],["2024-07-24T10:08:02.010000"],["2024-07-24T10:08:03.010000"],["2024-07-24T10:08:04.010000"],["2024-07-24T10:08:05.010000"],["2024-07-24T10:08:06.010000"],["2024-07-24T10:08:07.010000"],["2024-07-24T10:08:08.010000"],["2024-07-24T10:08:09.010000"],["2024-07-24T10:08:10.010000"],["2024-07-24T10:08:11.010000"],["2024-07-24T10:08:12.010000"],["2024-07-24T10:08:13.010000"],["2024-07-24T10:08:14.010000"],["2024-07-24T10:08:15.010000"],["2024-07-24T10:08:16.010000"],["2024-07-24T10:08:17.010000"],["2024-07-24T10:08:18.010000"],["2024-07-24T10:08:19.010000"],["2024-07-24T10:08:20.010000"],["2024-07-24T10:08:21.010000"],["2024-07-24T10:08:22.010000"],["2024-07-24T10:08:23.010000"],["2024-07-24T10:08:24.010000"],["2024-07-24T10:08:25.010000"],["2024-07-24T10:08:26.010000"],["2024-07-24T10:08:27.010000"],["2024-07-24T10:08:28.010000"],["2024-07-24T10:08:29.010000"],["2024-07-24T10:08:30.010000"],["2024-07-24T10:08:31.010000"],["2024-07-24T10:08:32.010000"],["2024-07-24T10:08:33.010000"],["2024-07-24T10:08:34.010000"],["2024-07-24T10:08:35.010000"],["2024-07-24T10:08:36.010000"],["2024-07-24T10:08:37.010000"],["2024-07-24T10:08:38.010000"],["2024-07-24T10:08:39.010000"],["2024-07-24T10:08:40.010000"],["2024-07-24T10:08:41.010000"],["2024-07-24T10:08:42.010000"],["2024-07-24T10:08:43.010000"],["2024-07-24T10:08:44.010000"],["2024-07-24T10:08:45.010000"],["2024-07-24T10:08:46.010000"],["2024-07-24T10:08:47.010000"],["2024-07-24T10:08:48.010000"],["2024-07-24T10:08:49.010000"],["2024-07-24T10:08:50.010000"],["2024-07-24T10:08:51.010000"],["2024-07-24T10:08:52.010000"],["2024-07-24T10:08:53.010000"],["2024-07-24T10:08:54.010000"],["2024-07-24T10:08:55.010000"],["2024-07-24T10:08:56.010000"],["2024-07-24T10:08:57.010000"],["2024-07-24T10:08:58.010000"],["2024-07-24T10:08:59.010000"],["2024-07-24T10:09:00.010000"],["2024-07-24T10:09:01.010000"],["2024-07-24T10:09:02.010000"],["2024-07-24T10:09:03.010000"],["2024-07-24T10:09:04.010000"],["2024-07-24T10:09:05.010000"],["2024-07-24T10:09:06.010000"],["2024-07-24T10:09:07.010000"],["2024-07-24T10:09:08.010000"],["2024-07-24T10:09:09.010000"],["2024-07-24T10:09:10.010000"],["2024-07-24T10:09:11.010000"],["2024-07-24T10:09:12.010000"],["2024-07-24T10:09:13.010000"],["2024-07-24T10:09:14.010000"],["2024-07-24T10:09:15.010000"],["2024-07-24T10:09:16.010000"],["2024-07-24T10:09:17.010000"],["2024-07-24T10:09:18.010000"],["2024-07-24T10:09:19.010000"],["2024-07-24T10:09:20.010000"],["2024-07-24T10:09:21.010000"],["2024-07-24T10:09:22.010000"],["2024-07-24T10:09:23.010000"],["2024-07-24T10:09:24.010000"],["2024-07-24T10:09:25.010000"],["2024-07-24T10:09:26.010000"],["2024-07-24T10:09:27.010000"],["2024-07-24T10:09:28.010000"],["2024-07-24T10:09:29.010000"],["2024-07-24T10:09:30.010000"],["2024-07-24T10:09:31.010000"],["2024-07-24T10:09:32.010000"],["2024-07-24T10:09:33.010000"],["2024-07-24T10:09:34.010000"],["2024-07-24T10:09:35.010000"],["2024-07-24T10:09:36.010000"],["2024-07-24T10:09:37.010000"],["2024-07-24T10:09:38.010000"],["2024-07-24T10:09:39.010000"],["2024-07-24T10:09:40.010000"],["2024-07-24T10:09:41.010000"],["2024-07-24T10:09:42.010000"],["2024-07-24T10:09:43.010000"],["2024-07-24T10:09:44.010000"],["2024-07-24T10:09:45.010000"],["2024-07-24T10:09:46.010000"],["2024-07-24T10:09:47.010000"],["2024-07-24T10:09:48.010000"],["2024-07-24T10:09:49.010000"],["2024-07-24T10:09:50.010000"],["2024-07-24T10:09:51.010000"],["2024-07-24T10:09:52.010000"],["2024-07-24T10:09:53.010000"],["2024-07-24T10:09:54.010000"],["2024-07-24T10:09:55.010000"],["2024-07-24T10:09:56.010000"],["2024-07-24T10:09:57.010000"],["2024-07-24T10:09:58.010000"],["2024-07-24T10:09:59.010000"],["2024-07-24T10:10:00.010000"],["2024-07-24T10:10:01.010000"],["2024-07-24T10:10:02.010000"],["2024-07-24T10:10:03.010000"],["2024-07-24T10:10:04.010000"],["2024-07-24T10:10:05.010000"],["2024-07-24T10:10:06.010000"],["2024-07-24T10:10:07.010000"],["2024-07-24T10:10:08.010000"],["2024-07-24T10:10:09.010000"],["2024-07-24T10:10:10.010000"],["2024-07-24T10:10:11.010000"],["2024-07-24T10:10:12.010000"],["2024-07-24T10:10:13.010000"],["2024-07-24T10:10:14.010000"],["2024-07-24T10:10:15.010000"],["2024-07-24T10:10:16.010000"],["2024-07-24T10:10:17.010000"],["2024-07-24T10:10:18.010000"],["2024-07-24T10:10:19.010000"],["2024-07-24T10:10:20.010000"],["2024-07-24T10:10:21.010000"],["2024-07-24T10:10:22.010000"],["2024-07-24T10:10:23.010000"],["2024-07-24T10:10:24.010000"],["2024-07-24T10:10:25.010000"],["2024-07-24T10:10:26.010000"],["2024-07-24T10:10:27.010000"],["2024-07-24T10:10:28.010000"],["2024-07-24T10:10:29.010000"],["2024-07-24T10:10:30.010000"],["2024-07-24T10:10:31.010000"],["2024-07-24T10:10:32.010000"],["2024-07-24T10:10:33.010000"],["2024-07-24T10:10:34.010000"],["2024-07-24T10:10:35.010000"],["2024-07-24T10:10:36.010000"],["2024-07-24T10:10:37.010000"],["2024-07-24T10:10:38.010000"],["2024-07-24T10:10:39.010000"],["2024-07-24T10:10:40.010000"],["2024-07-24T10:10:41.010000"],["2024-07-24T10:10:42.010000"],["2024-07-24T10:10:43.010000"],["2024-07-24T10:10:44.010000"],["2024-07-24T10:10:45.010000"],["2024-07-24T10:10:46.010000"],["2024-07-24T10:10:47.010000"],["2024-07-24T10:10:48.010000"],["2024-07-24T10:10:49.010000"],["2024-07-24T10:10:50.010000"],["2024-07-24T10:10:51.010000"],["2024-07-24T10:10:52.010000"],["2024-07-24T10:10:53.010000"],["2024-07-24T10:10:54.010000"],["2024-07-24T10:10:55.010000"],["2024-07-24T10:10:56.010000"],["2024-07-24T10:10:57.010000"],["2024-07-24T10:10:58.010000"],["2024-07-24T10:10:59.010000"],["2024-07-24T10:11:00.010000"],["2024-07-24T10:11:01.010000"],["2024-07-24T10:11:02.010000"],["2024-07-24T10:11:03.010000"],["2024-07-24T10:11:04.010000"],["2024-07-24T10:11:05.010000"],["2024-07-24T10:11:06.010000"],["2024-07-24T10:11:07.010000"],["2024-07-24T10:11:08.010000"],["2024-07-24T10:11:09.010000"],["2024-07-24T10:11:10.010000"],["2024-07-24T10:11:11.010000"],["2024-07-24T10:11:12.010000"],["2024-07-24T10:11:13.010000"],["2024-07-24T10:11:14.010000"],["2024-07-24T10:11:15.010000"],["2024-07-24T10:11:16.010000"],["2024-07-24T10:11:17.010000"],["2024-07-24T10:11:18.010000"],["2024-07-24T10:11:19.010000"],["2024-07-24T10:11:20.010000"],["2024-07-24T10:11:21.010000"],["2024-07-24T10:11:22.010000"],["2024-07-24T10:11:23.010000"],["2024-07-24T10:11:24.010000"],["2024-07-24T10:11:25.010000"],["2024-07-24T10:11:26.010000"],["2024-07-24T10:11:27.010000"],["2024-07-24T10:11:28.010000"],["2024-07-24T10:11:29.010000"],["2024-07-24T10:11:30.010000"],["2024-07-24T10:11:31.010000"],["2024-07-24T10:11:32.010000"],["2024-07-24T10:11:33.010000"],["2024-07-24T10:11:34.010000"],["2024-07-24T10:11:35.010000"],["2024-07-24T10:11:36.010000"],["2024-07-24T10:11:37.010000"],["2024-07-24T10:11:38.010000"],["2024-07-24T10:11:39.010000"],["2024-07-24T10:11:40.010000"],["2024-07-24T10:11:41.010000"],["2024-07-24T10:11:42.010000"],["2024-07-24T10:11:43.010000"],["2024-07-24T10:11:44.010000"],["2024-07-24T10:11:45.010000"],["2024-07-24T10:11:46.010000"],["2024-07-24T10:11:47.010000"],["2024-07-24T10:11:48.010000"],["2024-07-24T10:11:49.010000"],["2024-07-24T10:11:50.010000"],["2024-07-24T10:11:51.010000"],["2024-07-24T10:11:52.010000"],["2024-07-24T10:11:53.010000"],["2024-07-24T10:11:54.010000"],["2024-07-24T10:11:55.010000"],["2024-07-24T10:11:56.010000"],["2024-07-24T10:11:57.010000"],["2024-07-24T10:11:58.010000"],["2024-07-24T10:11:59.010000"],["2024-07-24T10:12:00.010000"],["2024-07-24T10:12:01.010000"],["2024-07-24T10:12:02.010000"],["2024-07-24T10:12:03.010000"],["2024-07-24T10:12:04.010000"],["2024-07-24T10:12:05.010000"],["2024-07-24T10:12:06.010000"],["2024-07-24T10:12:07.010000"],["2024-07-24T10:12:08.010000"],["2024-07-24T10:12:09.010000"],["2024-07-24T10:12:10.010000"],["2024-07-24T10:12:11.010000"],["2024-07-24T10:12:12.010000"],["2024-07-24T10:12:13.010000"],["2024-07-24T10:12:14.010000"],["2024-07-24T10:12:15.010000"],["2024-07-24T10:12:16.010000"],["2024-07-24T10:12:17.010000"],["2024-07-24T10:12:18.010000"],["2024-07-24T10:12:19.010000"],["2024-07-24T10:12:20.010000"],["2024-07-24T10:12:21.010000"],["2024-07-24T10:12:22.010000"],["2024-07-24T10:12:23.010000"],["2024-07-24T10:12:24.010000"],["2024-07-24T10:12:25.010000"],["2024-07-24T10:12:26.010000"],["2024-07-24T10:12:27.010000"],["2024-07-24T10:12:28.010000"],["2024-07-24T10:12:29.010000"],["2024-07-24T10:12:30.010000"],["2024-07-24T10:12:31.010000"],["2024-07-24T10:12:32.010000"],["2024-07-24T10:12:33.010000"],["2024-07-24T10:12:34.010000"],["2024-07-24T10:12:35.010000"],["2024-07-24T10:12:36.010000"],["2024-07-24T10:12:37.010000"],["2024-07-24T10:12:38.010000"],["2024-07-24T10:12:39.010000"],["2024-07-24T10:12:40.010000"],["2024-07-24T10:12:41.010000"],["2024-07-24T10:12:42.010000"],["2024-07-24T10:12:43.010000"],["2024-07-24T10:12:44.010000"],["2024-07-24T10:12:45.010000"],["2024-07-24T10:12:46.010000"],["2024-07-24T10:12:47.010000"],["2024-07-24T10:12:48.010000"],["2024-07-24T10:12:49.010000"],["2024-07-24T10:12:50.010000"],["2024-07-24T10:12:51.010000"],["2024-07-24T10:12:52.010000"],["2024-07-24T10:12:53.010000"],["2024-07-24T10:12:54.010000"],["2024-07-24T10:12:55.010000"],["2024-07-24T10:12:56.010000"],["2024-07-24T10:12:57.010000"],["2024-07-24T10:12:58.010000"],["2024-07-24T10:12:59.010000"],["2024-07-24T10:13:00.010000"],["2024-07-24T10:13:01.010000"],["2024-07-24T10:13:02.010000"],["2024-07-24T10:13:03.010000"],["2024-07-24T10:13:04.010000"],["2024-07-24T10:13:05.010000"],["2024-07-24T10:13:06.010000"],["2024-07-24T10:13:07.010000"],["2024-07-24T10:13:08.010000"],["2024-07-24T10:13:09.010000"],["2024-07-24T10:13:10.010000"],["2024-07-24T10:13:11.010000"],["2024-07-24T10:13:12.010000"],["2024-07-24T10:13:13.010000"],["2024-07-24T10:13:14.010000"],["2024-07-24T10:13:15.010000"],["2024-07-24T10:13:16.010000"],["2024-07-24T10:13:17.010000"],["2024-07-24T10:13:18.010000"],["2024-07-24T10:13:19.010000"],["2024-07-24T10:13:20.010000"],["2024-07-24T10:13:21.010000"],["2024-07-24T10:13:22.010000"],["2024-07-24T10:13:23.010000"],["2024-07-24T10:13:24.010000"],["2024-07-24T10:13:25.010000"],["2024-07-24T10:13:26.010000"],["2024-07-24T10:13:27.010000"],["2024-07-24T10:13:28.010000"],["2024-07-24T10:13:29.010000"],["2024-07-24T10:13:30.010000"],["2024-07-24T10:13:31.010000"],["2024-07-24T10:13:32.010000"],["2024-07-24T10:13:33.010000"],["2024-07-24T10:13:34.010000"],["2024-07-24T10:13:35.010000"],["2024-07-24T10:13:36.010000"],["2024-07-24T10:13:37.010000"],["2024-07-24T10:13:38.010000"],["2024-07-24T10:13:39.010000"],["2024-07-24T10:13:40.010000"],["2024-07-24T10:13:41.010000"],["2024-07-24T10:13:42.010000"],["2024-07-24T10:13:43.010000"],["2024-07-24T10:13:44.010000"],["2024-07-24T10:13:45.010000"],["2024-07-24T10:13:46.010000"],["2024-07-24T10:13:47.010000"],["2024-07-24T10:13:48.010000"],["2024-07-24T10:13:49.010000"],["2024-07-24T10:13:50.010000"],["2024-07-24T10:13:51.010000"],["2024-07-24T10:13:52.010000"],["2024-07-24T10:13:53.010000"],["2024-07-24T10:13:54.010000"],["2024-07-24T10:13:55.010000"],["2024-07-24T10:13:56.010000"],["2024-07-24T10:13:57.010000"],["2024-07-24T10:13:58.010000"],["2024-07-24T10:13:59.010000"],["2024-07-24T10:14:00.010000"],["2024-07-24T10:14:01.010000"],["2024-07-24T10:14:02.010000"],["2024-07-24T10:14:03.010000"],["2024-07-24T10:14:04.010000"],["2024-07-24T10:14:05.010000"],["2024-07-24T10:14:06.010000"],["2024-07-24T10:14:07.010000"],["2024-07-24T10:14:08.010000"],["2024-07-24T10:14:09.010000"],["2024-07-24T10:14:10.010000"],["2024-07-24T10:14:11.010000"],["2024-07-24T10:14:12.010000"],["2024-07-24T10:14:13.010000"],["2024-07-24T10:14:14.010000"],["2024-07-24T10:14:15.010000"],["2024-07-24T10:14:16.010000"],["2024-07-24T10:14:17.010000"],["2024-07-24T10:14:18.010000"],["2024-07-24T10:14:19.010000"],["2024-07-24T10:14:20.010000"],["2024-07-24T10:14:21.010000"],["2024-07-24T10:14:22.010000"],["2024-07-24T10:14:23.010000"],["2024-07-24T10:14:24.010000"],["2024-07-24T10:14:25.010000"],["2024-07-24T10:14:26.010000"],["2024-07-24T10:14:27.010000"],["2024-07-24T10:14:28.010000"],["2024-07-24T10:14:29.010000"],["2024-07-24T10:14:30.010000"],["2024-07-24T10:14:31.010000"],["2024-07-24T10:14:32.010000"],["2024-07-24T10:14:33.010000"],["2024-07-24T10:14:34.010000"],["2024-07-24T10:14:35.010000"],["2024-07-24T10:14:36.010000"],["2024-07-24T10:14:37.010000"],["2024-07-24T10:14:38.010000"],["2024-07-24T10:14:39.010000"],["2024-07-24T10:14:40.010000"],["2024-07-24T10:14:41.010000"],["2024-07-24T10:14:42.010000"],["2024-07-24T10:14:43.010000"],["2024-07-24T10:14:44.010000"],["2024-07-24T10:14:45.010000"],["2024-07-24T10:14:46.010000"],["2024-07-24T10:14:47.010000"],["2024-07-24T10:14:48.010000"],["2024-07-24T10:14:49.010000"],["2024-07-24T10:14:50.010000"],["2024-07-24T10:14:51.010000"],["2024-07-24T10:14:52.010000"],["2024-07-24T10:14:53.010000"],["2024-07-24T10:14:54.010000"],["2024-07-24T10:14:55.010000"],["2024-07-24T10:14:56.010000"],["2024-07-24T10:14:57.010000"],["2024-07-24T10:14:58.010000"],["2024-07-24T10:14:59.010000"],["2024-07-24T10:15:00.010000"],["2024-07-24T10:15:01.010000"],["2024-07-24T10:15:02.010000"],["2024-07-24T10:15:03.010000"],["2024-07-24T10:15:04.010000"],["2024-07-24T10:15:05.010000"],["2024-07-24T10:15:06.010000"],["2024-07-24T10:15:07.010000"],["2024-07-24T10:15:08.010000"],["2024-07-24T10:15:09.010000"],["2024-07-24T10:15:10.010000"],["2024-07-24T10:15:11.010000"],["2024-07-24T10:15:12.010000"],["2024-07-24T10:15:13.010000"],["2024-07-24T10:15:14.010000"],["2024-07-24T10:15:15.010000"],["2024-07-24T10:15:16.010000"],["2024-07-24T10:15:17.010000"],["2024-07-24T10:15:18.010000"],["2024-07-24T10:15:19.010000"],["2024-07-24T10:15:20.010000"],["2024-07-24T10:15:21.010000"],["2024-07-24T10:15:22.010000"],["2024-07-24T10:15:23.010000"],["2024-07-24T10:15:24.010000"],["2024-07-24T10:15:25.010000"],["2024-07-24T10:15:26.010000"],["2024-07-24T10:15:27.010000"],["2024-07-24T10:15:28.010000"],["2024-07-24T10:15:29.010000"],["2024-07-24T10:15:30.010000"],["2024-07-24T10:15:31.010000"],["2024-07-24T10:15:32.010000"],["2024-07-24T10:15:33.010000"],["2024-07-24T10:15:34.010000"],["2024-07-24T10:15:35.010000"],["2024-07-24T10:15:36.010000"],["2024-07-24T10:15:37.010000"],["2024-07-24T10:15:38.010000"],["2024-07-24T10:15:39.010000"],["2024-07-24T10:15:40.010000"],["2024-07-24T10:15:41.010000"],["2024-07-24T10:15:42.010000"],["2024-07-24T10:15:43.010000"],["2024-07-24T10:15:44.010000"],["2024-07-24T10:15:45.010000"],["2024-07-24T10:15:46.010000"],["2024-07-24T10:15:47.010000"],["2024-07-24T10:15:48.010000"],["2024-07-24T10:15:49.010000"],["2024-07-24T10:15:50.010000"],["2024-07-24T10:15:51.010000"],["2024-07-24T10:15:52.010000"],["2024-07-24T10:15:53.010000"],["2024-07-24T10:15:54.010000"],["2024-07-24T10:15:55.010000"],["2024-07-24T10:15:56.010000"],["2024-07-24T10:15:57.010000"],["2024-07-24T10:15:58.010000"],["2024-07-24T10:15:59.010000"],["2024-07-24T10:16:00.010000"],["2024-07-24T10:16:01.010000"],["2024-07-24T10:16:02.010000"],["2024-07-24T10:16:03.010000"],["2024-07-24T10:16:04.010000"],["2024-07-24T10:16:05.010000"],["2024-07-24T10:16:06.010000"],["2024-07-24T10:16:07.010000"],["2024-07-24T10:16:08.010000"],["2024-07-24T10:16:09.010000"],["2024-07-24T10:16:10.010000"],["2024-07-24T10:16:11.010000"],["2024-07-24T10:16:12.010000"],["2024-07-24T10:16:13.010000"],["2024-07-24T10:16:14.010000"],["2024-07-24T10:16:15.010000"],["2024-07-24T10:16:16.010000"],["2024-07-24T10:16:17.010000"],["2024-07-24T10:16:18.010000"],["2024-07-24T10:16:19.010000"],["2024-07-24T10:16:20.010000"],["2024-07-24T10:16:21.010000"],["2024-07-24T10:16:22.010000"],["2024-07-24T10:16:23.010000"],["2024-07-24T10:16:24.010000"],["2024-07-24T10:16:25.010000"],["2024-07-24T10:16:26.010000"],["2024-07-24T10:16:27.010000"],["2024-07-24T10:16:28.010000"],["2024-07-24T10:16:29.010000"],["2024-07-24T10:16:30.010000"],["2024-07-24T10:16:31.010000"],["2024-07-24T10:16:32.010000"],["2024-07-24T10:16:33.010000"],["2024-07-24T10:16:34.010000"],["2024-07-24T10:16:35.010000"],["2024-07-24T10:16:36.010000"],["2024-07-24T10:16:37.010000"],["2024-07-24T10:16:38.010000"],["2024-07-24T10:16:39.010000"],["2024-07-24T10:16:40.010000"],["2024-07-24T10:16:41.010000"],["2024-07-24T10:16:42.010000"],["2024-07-24T10:16:43.010000"],["2024-07-24T10:16:44.010000"],["2024-07-24T10:16:45.010000"],["2024-07-24T10:16:46.010000"],["2024-07-24T10:16:47.010000"],["2024-07-24T10:16:48.010000"],["2024-07-24T10:16:49.010000"],["2024-07-24T10:16:50.010000"],["2024-07-24T10:16:51.010000"],["2024-07-24T10:16:52.010000"],["2024-07-24T10:16:53.010000"],["2024-07-24T10:16:54.010000"],["2024-07-24T10:16:55.010000"],["2024-07-24T10:16:56.010000"],["2024-07-24T10:16:57.010000"],["2024-07-24T10:16:58.010000"],["2024-07-24T10:16:59.010000"],["2024-07-24T10:17:00.010000"],["2024-07-24T10:17:01.010000"],["2024-07-24T10:17:02.010000"],["2024-07-24T10:17:03.010000"],["2024-07-24T10:17:04.010000"],["2024-07-24T10:17:05.010000"],["2024-07-24T10:17:06.010000"],["2024-07-24T10:17:07.010000"],["2024-07-24T10:17:08.010000"],["2024-07-24T10:17:09.010000"],["2024-07-24T10:17:10.010000"],["2024-07-24T10:17:11.010000"],["2024-07-24T10:17:12.010000"],["2024-07-24T10:17:13.010000"],["2024-07-24T10:17:14.010000"],["2024-07-24T10:17:15.010000"],["2024-07-24T10:17:16.010000"],["2024-07-24T10:17:17.010000"],["2024-07-24T10:17:18.010000"],["2024-07-24T10:17:19.010000"],["2024-07-24T10:17:20.010000"],["2024-07-24T10:17:21.010000"],["2024-07-24T10:17:22.010000"],["2024-07-24T10:17:23.010000"],["2024-07-24T10:17:24.010000"],["2024-07-24T10:17:25.010000"],["2024-07-24T10:17:26.010000"],["2024-07-24T10:17:27.010000"],["2024-07-24T10:17:28.010000"],["2024-07-24T10:17:29.010000"],["2024-07-24T10:17:30.010000"],["2024-07-24T10:17:31.010000"],["2024-07-24T10:17:32.010000"],["2024-07-24T10:17:33.010000"],["2024-07-24T10:17:34.010000"],["2024-07-24T10:17:35.010000"],["2024-07-24T10:17:36.010000"],["2024-07-24T10:17:37.010000"],["2024-07-24T10:17:38.010000"],["2024-07-24T10:17:39.010000"],["2024-07-24T10:17:40.010000"],["2024-07-24T10:17:41.010000"],["2024-07-24T10:17:42.010000"],["2024-07-24T10:17:43.010000"],["2024-07-24T10:17:44.010000"],["2024-07-24T10:17:45.010000"],["2024-07-24T10:17:46.010000"],["2024-07-24T10:17:47.010000"],["2024-07-24T10:17:48.010000"],["2024-07-24T10:17:49.010000"],["2024-07-24T10:17:50.010000"],["2024-07-24T10:17:51.010000"],["2024-07-24T10:17:52.010000"],["2024-07-24T10:17:53.010000"],["2024-07-24T10:17:54.010000"],["2024-07-24T10:17:55.010000"],["2024-07-24T10:17:56.010000"],["2024-07-24T10:17:57.010000"],["2024-07-24T10:17:58.010000"],["2024-07-24T10:17:59.010000"],["2024-07-24T10:18:00.010000"],["2024-07-24T10:18:01.010000"],["2024-07-24T10:18:02.010000"],["2024-07-24T10:18:03.010000"],["2024-07-24T10:18:04.010000"],["2024-07-24T10:18:05.010000"],["2024-07-24T10:18:06.010000"],["2024-07-24T10:18:07.010000"],["2024-07-24T10:18:08.010000"],["2024-07-24T10:18:09.010000"],["2024-07-24T10:18:10.010000"],["2024-07-24T10:18:11.010000"],["2024-07-24T10:18:12.010000"],["2024-07-24T10:18:13.010000"],["2024-07-24T10:18:14.010000"],["2024-07-24T10:18:15.010000"],["2024-07-24T10:18:16.010000"],["2024-07-24T10:18:17.010000"],["2024-07-24T10:18:18.010000"],["2024-07-24T10:18:19.010000"],["2024-07-24T10:18:20.010000"],["2024-07-24T10:18:21.010000"],["2024-07-24T10:18:22.010000"],["2024-07-24T10:18:23.010000"],["2024-07-24T10:18:24.010000"],["2024-07-24T10:18:25.010000"],["2024-07-24T10:18:26.010000"],["2024-07-24T10:18:27.010000"],["2024-07-24T10:18:28.010000"],["2024-07-24T10:18:29.010000"],["2024-07-24T10:18:30.010000"],["2024-07-24T10:18:31.010000"],["2024-07-24T10:18:32.010000"],["2024-07-24T10:18:33.010000"],["2024-07-24T10:18:34.010000"],["2024-07-24T10:18:35.010000"],["2024-07-24T10:18:36.010000"],["2024-07-24T10:18:37.010000"],["2024-07-24T10:18:38.010000"],["2024-07-24T10:18:39.010000"],["2024-07-24T10:18:40.010000"],["2024-07-24T10:18:41.010000"],["2024-07-24T10:18:42.010000"],["2024-07-24T10:18:43.010000"],["2024-07-24T10:18:44.010000"],["2024-07-24T10:18:45.010000"],["2024-07-24T10:18:46.010000"],["2024-07-24T10:18:47.010000"],["2024-07-24T10:18:48.010000"],["2024-07-24T10:18:49.010000"],["2024-07-24T10:18:50.010000"],["2024-07-24T10:18:51.010000"],["2024-07-24T10:18:52.010000"],["2024-07-24T10:18:53.010000"],["2024-07-24T10:18:54.010000"],["2024-07-24T10:18:55.010000"],["2024-07-24T10:18:56.010000"],["2024-07-24T10:18:57.010000"],["2024-07-24T10:18:58.010000"],["2024-07-24T10:18:59.010000"],["2024-07-24T10:19:00.010000"],["2024-07-24T10:19:01.010000"],["2024-07-24T10:19:02.010000"],["2024-07-24T10:19:03.010000"],["2024-07-24T10:19:04.010000"],["2024-07-24T10:19:05.010000"],["2024-07-24T10:19:06.010000"],["2024-07-24T10:19:07.010000"],["2024-07-24T10:19:08.010000"],["2024-07-24T10:19:09.010000"],["2024-07-24T10:19:10.010000"],["2024-07-24T10:19:11.010000"],["2024-07-24T10:19:12.010000"],["2024-07-24T10:19:13.010000"],["2024-07-24T10:19:14.010000"],["2024-07-24T10:19:15.010000"],["2024-07-24T10:19:16.010000"],["2024-07-24T10:19:17.010000"],["2024-07-24T10:19:18.010000"],["2024-07-24T10:19:19.010000"],["2024-07-24T10:19:20.010000"],["2024-07-24T10:19:21.010000"],["2024-07-24T10:19:22.010000"],["2024-07-24T10:19:23.010000"],["2024-07-24T10:19:24.010000"],["2024-07-24T10:19:25.010000"],["2024-07-24T10:19:26.010000"],["2024-07-24T10:19:27.010000"],["2024-07-24T10:19:28.010000"],["2024-07-24T10:19:29.010000"],["2024-07-24T10:19:30.010000"],["2024-07-24T10:19:31.010000"],["2024-07-24T10:19:32.010000"],["2024-07-24T10:19:33.010000"],["2024-07-24T10:19:34.010000"],["2024-07-24T10:19:35.010000"],["2024-07-24T10:19:36.010000"],["2024-07-24T10:19:37.010000"],["2024-07-24T10:19:38.010000"],["2024-07-24T10:19:39.010000"],["2024-07-24T10:19:40.010000"],["2024-07-24T10:19:41.010000"],["2024-07-24T10:19:42.010000"],["2024-07-24T10:19:43.010000"],["2024-07-24T10:19:44.010000"],["2024-07-24T10:19:45.010000"],["2024-07-24T10:19:46.010000"],["2024-07-24T10:19:47.010000"],["2024-07-24T10:19:48.010000"],["2024-07-24T10:19:49.010000"],["2024-07-24T10:19:50.010000"],["2024-07-24T10:19:51.010000"],["2024-07-24T10:19:52.010000"],["2024-07-24T10:19:53.010000"],["2024-07-24T10:19:54.010000"],["2024-07-24T10:19:55.010000"],["2024-07-24T10:19:56.010000"],["2024-07-24T10:19:57.010000"],["2024-07-24T10:19:58.010000"],["2024-07-24T10:19:59.010000"],["2024-07-24T10:20:00.010000"],["2024-07-24T10:20:01.010000"],["2024-07-24T10:20:02.010000"],["2024-07-24T10:20:03.010000"],["2024-07-24T10:20:04.010000"],["2024-07-24T10:20:05.010000"],["2024-07-24T10:20:06.010000"],["2024-07-24T10:20:07.010000"],["2024-07-24T10:20:08.010000"],["2024-07-24T10:20:09.010000"],["2024-07-24T10:20:10.010000"],["2024-07-24T10:20:11.010000"],["2024-07-24T10:20:12.010000"],["2024-07-24T10:20:13.010000"],["2024-07-24T10:20:14.010000"],["2024-07-24T10:20:15.010000"],["2024-07-24T10:20:16.010000"],["2024-07-24T10:20:17.010000"],["2024-07-24T10:20:18.010000"],["2024-07-24T10:20:19.010000"],["2024-07-24T10:20:20.010000"],["2024-07-24T10:20:21.010000"],["2024-07-24T10:20:22.010000"],["2024-07-24T10:20:23.010000"],["2024-07-24T10:20:24.010000"],["2024-07-24T10:20:25.010000"],["2024-07-24T10:20:26.010000"],["2024-07-24T10:20:27.010000"],["2024-07-24T10:20:28.010000"],["2024-07-24T10:20:29.010000"],["2024-07-24T10:20:30.010000"],["2024-07-24T10:20:31.010000"],["2024-07-24T10:20:32.010000"],["2024-07-24T10:20:33.010000"],["2024-07-24T10:20:34.010000"],["2024-07-24T10:20:35.010000"],["2024-07-24T10:20:36.010000"],["2024-07-24T10:20:37.010000"],["2024-07-24T10:20:38.010000"],["2024-07-24T10:20:39.010000"],["2024-07-24T10:20:40.010000"],["2024-07-24T10:20:41.010000"],["2024-07-24T10:20:42.010000"],["2024-07-24T10:20:43.010000"],["2024-07-24T10:20:44.010000"],["2024-07-24T10:20:45.010000"],["2024-07-24T10:20:46.010000"],["2024-07-24T10:20:47.010000"],["2024-07-24T10:20:48.010000"],["2024-07-24T10:20:49.010000"],["2024-07-24T10:20:50.010000"],["2024-07-24T10:20:51.010000"],["2024-07-24T10:20:52.010000"],["2024-07-24T10:20:53.010000"],["2024-07-24T10:20:54.010000"],["2024-07-24T10:20:55.010000"],["2024-07-24T10:20:56.010000"],["2024-07-24T10:20:57.010000"],["2024-07-24T10:20:58.010000"],["2024-07-24T10:20:59.010000"],["2024-07-24T10:21:00.010000"],["2024-07-24T10:21:01.010000"],["2024-07-24T10:21:02.010000"],["2024-07-24T10:21:03.010000"],["2024-07-24T10:21:04.010000"],["2024-07-24T10:21:05.010000"],["2024-07-24T10:21:06.010000"],["2024-07-24T10:21:07.010000"],["2024-07-24T10:21:08.010000"],["2024-07-24T10:21:09.010000"],["2024-07-24T10:21:10.010000"],["2024-07-24T10:21:11.010000"],["2024-07-24T10:21:12.010000"],["2024-07-24T10:21:13.010000"],["2024-07-24T10:21:14.010000"],["2024-07-24T10:21:15.010000"],["2024-07-24T10:21:16.010000"],["2024-07-24T10:21:17.010000"],["2024-07-24T10:21:18.010000"],["2024-07-24T10:21:19.010000"],["2024-07-24T10:21:20.010000"],["2024-07-24T10:21:21.010000"],["2024-07-24T10:21:22.010000"],["2024-07-24T10:21:23.010000"],["2024-07-24T10:21:24.010000"],["2024-07-24T10:21:25.010000"],["2024-07-24T10:21:26.010000"],["2024-07-24T10:21:27.010000"],["2024-07-24T10:21:28.010000"],["2024-07-24T10:21:29.010000"],["2024-07-24T10:21:30.010000"],["2024-07-24T10:21:31.010000"],["2024-07-24T10:21:32.010000"],["2024-07-24T10:21:33.010000"],["2024-07-24T10:21:34.010000"],["2024-07-24T10:21:35.010000"],["2024-07-24T10:21:36.010000"],["2024-07-24T10:21:37.010000"],["2024-07-24T10:21:38.010000"],["2024-07-24T10:21:39.010000"],["2024-07-24T10:21:40.010000"],["2024-07-24T10:21:41.010000"],["2024-07-24T10:21:42.010000"],["2024-07-24T10:21:43.010000"],["2024-07-24T10:21:44.010000"],["2024-07-24T10:21:45.010000"],["2024-07-24T10:21:46.010000"],["2024-07-24T10:21:47.010000"],["2024-07-24T10:21:48.010000"],["2024-07-24T10:21:49.010000"],["2024-07-24T10:21:50.010000"],["2024-07-24T10:21:51.010000"],["2024-07-24T10:21:52.010000"],["2024-07-24T10:21:53.010000"],["2024-07-24T10:21:54.010000"],["2024-07-24T10:21:55.010000"],["2024-07-24T10:21:56.010000"],["2024-07-24T10:21:57.010000"],["2024-07-24T10:21:58.010000"],["2024-07-24T10:21:59.010000"],["2024-07-24T10:22:00.010000"],["2024-07-24T10:22:01.010000"],["2024-07-24T10:22:02.010000"],["2024-07-24T10:22:03.010000"],["2024-07-24T10:22:04.010000"],["2024-07-24T10:22:05.010000"],["2024-07-24T10:22:06.010000"],["2024-07-24T10:22:07.010000"],["2024-07-24T10:22:08.010000"],["2024-07-24T10:22:09.010000"],["2024-07-24T10:22:10.010000"],["2024-07-24T10:22:11.010000"],["2024-07-24T10:22:12.010000"],["2024-07-24T10:22:13.010000"],["2024-07-24T10:22:14.010000"],["2024-07-24T10:22:15.010000"],["2024-07-24T10:22:16.010000"],["2024-07-24T10:22:17.010000"],["2024-07-24T10:22:18.010000"],["2024-07-24T10:22:19.010000"],["2024-07-24T10:22:20.010000"],["2024-07-24T10:22:21.010000"],["2024-07-24T10:22:22.010000"],["2024-07-24T10:22:23.010000"],["2024-07-24T10:22:24.010000"],["2024-07-24T10:22:25.010000"],["2024-07-24T10:22:26.010000"],["2024-07-24T10:22:27.010000"],["2024-07-24T10:22:28.010000"],["2024-07-24T10:22:29.010000"],["2024-07-24T10:22:30.010000"],["2024-07-24T10:22:31.010000"],["2024-07-24T10:22:32.010000"],["2024-07-24T10:22:33.010000"],["2024-07-24T10:22:34.010000"],["2024-07-24T10:22:35.010000"],["2024-07-24T10:22:36.010000"],["2024-07-24T10:22:37.010000"],["2024-07-24T10:22:38.010000"],["2024-07-24T10:22:39.010000"],["2024-07-24T10:22:40.010000"],["2024-07-24T10:22:41.010000"],["2024-07-24T10:22:42.010000"],["2024-07-24T10:22:43.010000"],["2024-07-24T10:22:44.010000"],["2024-07-24T10:22:45.010000"],["2024-07-24T10:22:46.010000"],["2024-07-24T10:22:47.010000"],["2024-07-24T10:22:48.010000"],["2024-07-24T10:22:49.010000"],["2024-07-24T10:22:50.010000"],["2024-07-24T10:22:51.010000"],["2024-07-24T10:22:52.010000"],["2024-07-24T10:22:53.010000"],["2024-07-24T10:22:54.010000"],["2024-07-24T10:22:55.010000"],["2024-07-24T10:22:56.010000"],["2024-07-24T10:22:57.010000"],["2024-07-24T10:22:58.010000"],["2024-07-24T10:22:59.010000"],["2024-07-24T10:23:00.010000"],["2024-07-24T10:23:01.010000"],["2024-07-24T10:23:02.010000"],["2024-07-24T10:23:03.010000"],["2024-07-24T10:23:04.010000"],["2024-07-24T10:23:05.010000"],["2024-07-24T10:23:06.010000"],["2024-07-24T10:23:07.010000"],["2024-07-24T10:23:08.010000"],["2024-07-24T10:23:09.010000"],["2024-07-24T10:23:10.010000"],["2024-07-24T10:23:11.010000"],["2024-07-24T10:23:12.010000"],["2024-07-24T10:23:13.010000"],["2024-07-24T10:23:14.010000"],["2024-07-24T10:23:15.010000"],["2024-07-24T10:23:16.010000"],["2024-07-24T10:23:17.010000"],["2024-07-24T10:23:18.010000"],["2024-07-24T10:23:19.010000"],["2024-07-24T10:23:20.010000"],["2024-07-24T10:23:21.010000"],["2024-07-24T10:23:22.010000"],["2024-07-24T10:23:23.010000"],["2024-07-24T10:23:24.010000"],["2024-07-24T10:23:25.010000"],["2024-07-24T10:23:26.010000"],["2024-07-24T10:23:27.010000"],["2024-07-24T10:23:28.010000"],["2024-07-24T10:23:29.010000"],["2024-07-24T10:23:30.010000"],["2024-07-24T10:23:31.010000"],["2024-07-24T10:23:32.010000"],["2024-07-24T10:23:33.010000"],["2024-07-24T10:23:34.010000"],["2024-07-24T10:23:35.010000"],["2024-07-24T10:23:36.010000"],["2024-07-24T10:23:37.010000"],["2024-07-24T10:23:38.010000"],["2024-07-24T10:23:39.010000"],["2024-07-24T10:23:40.010000"],["2024-07-24T10:23:41.010000"],["2024-07-24T10:23:42.010000"],["2024-07-24T10:23:43.010000"],["2024-07-24T10:23:44.010000"],["2024-07-24T10:23:45.010000"],["2024-07-24T10:23:46.010000"],["2024-07-24T10:23:47.010000"],["2024-07-24T10:23:48.010000"],["2024-07-24T10:23:49.010000"],["2024-07-24T10:23:50.010000"],["2024-07-24T10:23:51.010000"],["2024-07-24T10:23:52.010000"],["2024-07-24T10:23:53.010000"],["2024-07-24T10:23:54.010000"],["2024-07-24T10:23:55.010000"],["2024-07-24T10:23:56.010000"],["2024-07-24T10:23:57.010000"],["2024-07-24T10:23:58.010000"],["2024-07-24T10:23:59.010000"],["2024-07-24T10:24:00.010000"],["2024-07-24T10:24:01.010000"],["2024-07-24T10:24:02.010000"],["2024-07-24T10:24:03.010000"],["2024-07-24T10:24:04.010000"],["2024-07-24T10:24:05.010000"],["2024-07-24T10:24:06.010000"],["2024-07-24T10:24:07.010000"],["2024-07-24T10:24:08.010000"],["2024-07-24T10:24:09.010000"],["2024-07-24T10:24:10.010000"],["2024-07-24T10:24:11.010000"],["2024-07-24T10:24:12.010000"],["2024-07-24T10:24:13.010000"],["2024-07-24T10:24:14.010000"],["2024-07-24T10:24:15.010000"],["2024-07-24T10:24:16.010000"],["2024-07-24T10:24:17.010000"],["2024-07-24T10:24:18.010000"],["2024-07-24T10:24:19.010000"],["2024-07-24T10:24:20.010000"],["2024-07-24T10:24:21.010000"],["2024-07-24T10:24:22.010000"],["2024-07-24T10:24:23.010000"],["2024-07-24T10:24:24.010000"],["2024-07-24T10:24:25.010000"],["2024-07-24T10:24:26.010000"],["2024-07-24T10:24:27.010000"],["2024-07-24T10:24:28.010000"],["2024-07-24T10:24:29.010000"],["2024-07-24T10:24:30.010000"],["2024-07-24T10:24:31.010000"],["2024-07-24T10:24:32.010000"],["2024-07-24T10:24:33.010000"],["2024-07-24T10:24:34.010000"],["2024-07-24T10:24:35.010000"],["2024-07-24T10:24:36.010000"],["2024-07-24T10:24:37.010000"],["2024-07-24T10:24:38.010000"],["2024-07-24T10:24:39.010000"],["2024-07-24T10:24:40.010000"],["2024-07-24T10:24:41.010000"],["2024-07-24T10:24:42.010000"],["2024-07-24T10:24:43.010000"],["2024-07-24T10:24:44.010000"],["2024-07-24T10:24:45.010000"],["2024-07-24T10:24:46.010000"],["2024-07-24T10:24:47.010000"],["2024-07-24T10:24:48.010000"],["2024-07-24T10:24:49.010000"],["2024-07-24T10:24:50.010000"],["2024-07-24T10:24:51.010000"],["2024-07-24T10:24:52.010000"],["2024-07-24T10:24:53.010000"],["2024-07-24T10:24:54.010000"],["2024-07-24T10:24:55.010000"],["2024-07-24T10:24:56.010000"],["2024-07-24T10:24:57.010000"],["2024-07-24T10:24:58.010000"],["2024-07-24T10:24:59.010000"],["2024-07-24T10:25:00.010000"],["2024-07-24T10:25:01.010000"],["2024-07-24T10:25:02.010000"],["2024-07-24T10:25:03.010000"],["2024-07-24T10:25:04.010000"],["2024-07-24T10:25:05.010000"],["2024-07-24T10:25:06.010000"],["2024-07-24T10:25:07.010000"],["2024-07-24T10:25:08.010000"],["2024-07-24T10:25:09.010000"],["2024-07-24T10:25:10.010000"],["2024-07-24T10:25:11.010000"],["2024-07-24T10:25:12.010000"],["2024-07-24T10:25:13.010000"],["2024-07-24T10:25:14.010000"],["2024-07-24T10:25:15.010000"],["2024-07-24T10:25:16.010000"],["2024-07-24T10:25:17.010000"],["2024-07-24T10:25:18.010000"],["2024-07-24T10:25:19.010000"],["2024-07-24T10:25:20.010000"],["2024-07-24T10:25:21.010000"],["2024-07-24T10:25:22.010000"],["2024-07-24T10:25:23.010000"],["2024-07-24T10:25:24.010000"],["2024-07-24T10:25:25.010000"],["2024-07-24T10:25:26.010000"],["2024-07-24T10:25:27.010000"],["2024-07-24T10:25:28.010000"],["2024-07-24T10:25:29.010000"],["2024-07-24T10:25:30.010000"],["2024-07-24T10:25:31.010000"],["2024-07-24T10:25:32.010000"],["2024-07-24T10:25:33.010000"],["2024-07-24T10:25:34.010000"],["2024-07-24T10:25:35.010000"],["2024-07-24T10:25:36.010000"],["2024-07-24T10:25:37.010000"],["2024-07-24T10:25:38.010000"],["2024-07-24T10:25:39.010000"],["2024-07-24T10:25:40.010000"],["2024-07-24T10:25:41.010000"],["2024-07-24T10:25:42.010000"],["2024-07-24T10:25:43.010000"],["2024-07-24T10:25:44.010000"],["2024-07-24T10:25:45.010000"],["2024-07-24T10:25:46.010000"],["2024-07-24T10:25:47.010000"],["2024-07-24T10:25:48.010000"],["2024-07-24T10:25:49.010000"],["2024-07-24T10:25:50.010000"],["2024-07-24T10:25:51.010000"],["2024-07-24T10:25:52.010000"],["2024-07-24T10:25:53.010000"],["2024-07-24T10:25:54.010000"],["2024-07-24T10:25:55.010000"],["2024-07-24T10:25:56.010000"],["2024-07-24T10:25:57.010000"],["2024-07-24T10:25:58.010000"],["2024-07-24T10:25:59.010000"],["2024-07-24T10:26:00.010000"],["2024-07-24T10:26:01.010000"],["2024-07-24T10:26:02.010000"],["2024-07-24T10:26:03.010000"],["2024-07-24T10:26:04.010000"],["2024-07-24T10:26:05.010000"],["2024-07-24T10:26:06.010000"],["2024-07-24T10:26:07.010000"],["2024-07-24T10:26:08.010000"],["2024-07-24T10:26:09.010000"],["2024-07-24T10:26:10.010000"],["2024-07-24T10:26:11.010000"],["2024-07-24T10:26:12.010000"],["2024-07-24T10:26:13.010000"],["2024-07-24T10:26:14.010000"],["2024-07-24T10:26:15.010000"],["2024-07-24T10:26:16.010000"],["2024-07-24T10:26:17.010000"],["2024-07-24T10:26:18.010000"],["2024-07-24T10:26:19.010000"],["2024-07-24T10:26:20.010000"],["2024-07-24T10:26:21.010000"],["2024-07-24T10:26:22.010000"],["2024-07-24T10:26:23.010000"],["2024-07-24T10:26:24.010000"],["2024-07-24T10:26:25.010000"],["2024-07-24T10:26:26.010000"],["2024-07-24T10:26:27.010000"],["2024-07-24T10:26:28.010000"],["2024-07-24T10:26:29.010000"],["2024-07-24T10:26:30.010000"],["2024-07-24T10:26:31.010000"],["2024-07-24T10:26:32.010000"],["2024-07-24T10:26:33.010000"],["2024-07-24T10:26:34.010000"],["2024-07-24T10:26:35.010000"],["2024-07-24T10:26:36.010000"],["2024-07-24T10:26:37.010000"],["2024-07-24T10:26:38.010000"],["2024-07-24T10:26:39.010000"],["2024-07-24T10:26:40.010000"],["2024-07-24T10:26:41.010000"],["2024-07-24T10:26:42.010000"],["2024-07-24T10:26:43.010000"],["2024-07-24T10:26:44.010000"],["2024-07-24T10:26:45.010000"],["2024-07-24T10:26:46.010000"],["2024-07-24T10:26:47.010000"],["2024-07-24T10:26:48.010000"],["2024-07-24T10:26:49.010000"],["2024-07-24T10:26:50.010000"],["2024-07-24T10:26:51.010000"],["2024-07-24T10:26:52.010000"],["2024-07-24T10:26:53.010000"],["2024-07-24T10:26:54.010000"],["2024-07-24T10:26:55.010000"],["2024-07-24T10:26:56.010000"],["2024-07-24T10:26:57.010000"],["2024-07-24T10:26:58.010000"],["2024-07-24T10:26:59.010000"],["2024-07-24T10:27:00.010000"],["2024-07-24T10:27:01.010000"],["2024-07-24T10:27:02.010000"],["2024-07-24T10:27:03.010000"],["2024-07-24T10:27:04.010000"],["2024-07-24T10:27:05.010000"],["2024-07-24T10:27:06.010000"],["2024-07-24T10:27:07.010000"],["2024-07-24T10:27:08.010000"],["2024-07-24T10:27:09.010000"],["2024-07-24T10:27:10.010000"],["2024-07-24T10:27:11.010000"],["2024-07-24T10:27:12.010000"],["2024-07-24T10:27:13.010000"],["2024-07-24T10:27:14.010000"],["2024-07-24T10:27:15.010000"],["2024-07-24T10:27:16.010000"],["2024-07-24T10:27:17.010000"],["2024-07-24T10:27:18.010000"],["2024-07-24T10:27:19.010000"],["2024-07-24T10:27:20.010000"],["2024-07-24T10:27:21.010000"],["2024-07-24T10:27:22.010000"],["2024-07-24T10:27:23.010000"],["2024-07-24T10:27:24.010000"],["2024-07-24T10:27:25.010000"],["2024-07-24T10:27:26.010000"],["2024-07-24T10:27:27.010000"],["2024-07-24T10:27:28.010000"],["2024-07-24T10:27:29.010000"],["2024-07-24T10:27:30.010000"],["2024-07-24T10:27:31.010000"],["2024-07-24T10:27:32.010000"],["2024-07-24T10:27:33.010000"],["2024-07-24T10:27:34.010000"],["2024-07-24T10:27:35.010000"],["2024-07-24T10:27:36.010000"],["2024-07-24T10:27:37.010000"],["2024-07-24T10:27:38.010000"],["2024-07-24T10:27:39.010000"],["2024-07-24T10:27:40.010000"],["2024-07-24T10:27:41.010000"],["2024-07-24T10:27:42.010000"],["2024-07-24T10:27:43.010000"],["2024-07-24T10:27:44.010000"],["2024-07-24T10:27:45.010000"],["2024-07-24T10:27:46.010000"],["2024-07-24T10:27:47.010000"],["2024-07-24T10:27:48.010000"],["2024-07-24T10:27:49.010000"],["2024-07-24T10:27:50.010000"],["2024-07-24T10:27:51.010000"],["2024-07-24T10:27:52.010000"],["2024-07-24T10:27:53.010000"],["2024-07-24T10:27:54.010000"],["2024-07-24T10:27:55.010000"],["2024-07-24T10:27:56.010000"],["2024-07-24T10:27:57.010000"],["2024-07-24T10:27:58.010000"],["2024-07-24T10:27:59.010000"],["2024-07-24T10:28:00.010000"],["2024-07-24T10:28:01.010000"],["2024-07-24T10:28:02.010000"],["2024-07-24T10:28:03.010000"],["2024-07-24T10:28:04.010000"],["2024-07-24T10:28:05.010000"],["2024-07-24T10:28:06.010000"],["2024-07-24T10:28:07.010000"],["2024-07-24T10:28:08.010000"],["2024-07-24T10:28:09.010000"],["2024-07-24T10:28:10.010000"],["2024-07-24T10:28:11.010000"],["2024-07-24T10:28:12.010000"],["2024-07-24T10:28:13.010000"],["2024-07-24T10:28:14.010000"],["2024-07-24T10:28:15.010000"],["2024-07-24T10:28:16.010000"],["2024-07-24T10:28:17.010000"],["2024-07-24T10:28:18.010000"],["2024-07-24T10:28:19.010000"],["2024-07-24T10:28:20.010000"],["2024-07-24T10:28:21.010000"],["2024-07-24T10:28:22.010000"],["2024-07-24T10:28:23.010000"],["2024-07-24T10:28:24.010000"],["2024-07-24T10:28:25.010000"],["2024-07-24T10:28:26.010000"],["2024-07-24T10:28:27.010000"],["2024-07-24T10:28:28.010000"],["2024-07-24T10:28:29.010000"],["2024-07-24T10:28:30.010000"],["2024-07-24T10:28:31.010000"],["2024-07-24T10:28:32.010000"],["2024-07-24T10:28:33.010000"],["2024-07-24T10:28:34.010000"],["2024-07-24T10:28:35.010000"],["2024-07-24T10:28:36.010000"],["2024-07-24T10:28:37.010000"],["2024-07-24T10:28:38.010000"],["2024-07-24T10:28:39.010000"],["2024-07-24T10:28:40.010000"],["2024-07-24T10:28:41.010000"],["2024-07-24T10:28:42.010000"],["2024-07-24T10:28:43.010000"],["2024-07-24T10:28:44.010000"],["2024-07-24T10:28:45.010000"],["2024-07-24T10:28:46.010000"],["2024-07-24T10:28:47.010000"],["2024-07-24T10:28:48.010000"],["2024-07-24T10:28:49.010000"],["2024-07-24T10:28:50.010000"],["2024-07-24T10:28:51.010000"],["2024-07-24T10:28:52.010000"],["2024-07-24T10:28:53.010000"],["2024-07-24T10:28:54.010000"],["2024-07-24T10:28:55.010000"],["2024-07-24T10:28:56.010000"],["2024-07-24T10:28:57.010000"],["2024-07-24T10:28:58.010000"],["2024-07-24T10:28:59.010000"],["2024-07-24T10:29:00.010000"],["2024-07-24T10:29:01.010000"],["2024-07-24T10:29:02.010000"],["2024-07-24T10:29:03.010000"],["2024-07-24T10:29:04.010000"],["2024-07-24T10:29:05.010000"],["2024-07-24T10:29:06.010000"],["2024-07-24T10:29:07.010000"],["2024-07-24T10:29:08.010000"],["2024-07-24T10:29:09.010000"],["2024-07-24T10:29:10.010000"],["2024-07-24T10:29:11.010000"],["2024-07-24T10:29:12.010000"],["2024-07-24T10:29:13.010000"],["2024-07-24T10:29:14.010000"],["2024-07-24T10:29:15.010000"],["2024-07-24T10:29:16.010000"],["2024-07-24T10:29:17.010000"],["2024-07-24T10:29:18.010000"],["2024-07-24T10:29:19.010000"],["2024-07-24T10:29:20.010000"],["2024-07-24T10:29:21.010000"],["2024-07-24T10:29:22.010000"],["2024-07-24T10:29:23.010000"],["2024-07-24T10:29:24.010000"],["2024-07-24T10:29:25.010000"],["2024-07-24T10:29:26.010000"],["2024-07-24T10:29:27.010000"],["2024-07-24T10:29:28.010000"],["2024-07-24T10:29:29.010000"],["2024-07-24T10:29:30.010000"],["2024-07-24T10:29:31.010000"],["2024-07-24T10:29:32.010000"],["2024-07-24T10:29:33.010000"],["2024-07-24T10:29:34.010000"],["2024-07-24T10:29:35.010000"],["2024-07-24T10:29:36.010000"],["2024-07-24T10:29:37.010000"],["2024-07-24T10:29:38.010000"],["2024-07-24T10:29:39.010000"],["2024-07-24T10:29:40.010000"],["2024-07-24T10:29:41.010000"],["2024-07-24T10:29:42.010000"],["2024-07-24T10:29:43.010000"],["2024-07-24T10:29:44.010000"],["2024-07-24T10:29:45.010000"],["2024-07-24T10:29:46.010000"],["2024-07-24T10:29:47.010000"],["2024-07-24T10:29:48.010000"],["2024-07-24T10:29:49.010000"],["2024-07-24T10:29:50.010000"],["2024-07-24T10:29:51.010000"],["2024-07-24T10:29:52.010000"],["2024-07-24T10:29:53.010000"],["2024-07-24T10:29:54.010000"],["2024-07-24T10:29:55.010000"],["2024-07-24T10:29:56.010000"],["2024-07-24T10:29:57.010000"],["2024-07-24T10:29:58.010000"],["2024-07-24T10:29:59.010000"],["2024-07-24T10:30:00.010000"],["2024-07-24T10:30:01.010000"],["2024-07-24T10:30:02.010000"],["2024-07-24T10:30:03.010000"],["2024-07-24T10:30:04.010000"],["2024-07-24T10:30:05.010000"],["2024-07-24T10:30:06.010000"],["2024-07-24T10:30:07.010000"],["2024-07-24T10:30:08.010000"],["2024-07-24T10:30:09.010000"],["2024-07-24T10:30:10.010000"],["2024-07-24T10:30:11.010000"],["2024-07-24T10:30:12.010000"],["2024-07-24T10:30:13.010000"],["2024-07-24T10:30:14.010000"],["2024-07-24T10:30:15.010000"],["2024-07-24T10:30:16.010000"],["2024-07-24T10:30:17.010000"],["2024-07-24T10:30:18.010000"],["2024-07-24T10:30:19.010000"],["2024-07-24T10:30:20.010000"],["2024-07-24T10:30:21.010000"],["2024-07-24T10:30:22.010000"],["2024-07-24T10:30:23.010000"],["2024-07-24T10:30:24.010000"],["2024-07-24T10:30:25.010000"],["2024-07-24T10:30:26.010000"],["2024-07-24T10:30:27.010000"],["2024-07-24T10:30:28.010000"],["2024-07-24T10:30:29.010000"],["2024-07-24T10:30:30.010000"],["2024-07-24T10:30:31.010000"],["2024-07-24T10:30:32.010000"],["2024-07-24T10:30:33.010000"],["2024-07-24T10:30:34.010000"],["2024-07-24T10:30:35.010000"],["2024-07-24T10:30:36.010000"],["2024-07-24T10:30:37.010000"],["2024-07-24T10:30:38.010000"],["2024-07-24T10:30:39.010000"],["2024-07-24T10:30:40.010000"],["2024-07-24T10:30:41.010000"],["2024-07-24T10:30:42.010000"],["2024-07-24T10:30:43.010000"],["2024-07-24T10:30:44.010000"],["2024-07-24T10:30:45.010000"],["2024-07-24T10:30:46.010000"],["2024-07-24T10:30:47.010000"],["2024-07-24T10:30:48.010000"],["2024-07-24T10:30:49.010000"],["2024-07-24T10:30:50.010000"],["2024-07-24T10:30:51.010000"],["2024-07-24T10:30:52.010000"],["2024-07-24T10:30:53.010000"],["2024-07-24T10:30:54.010000"],["2024-07-24T10:30:55.010000"],["2024-07-24T10:30:56.010000"],["2024-07-24T10:30:57.010000"],["2024-07-24T10:30:58.010000"],["2024-07-24T10:30:59.010000"],["2024-07-24T10:31:00.010000"],["2024-07-24T10:31:01.010000"],["2024-07-24T10:31:02.010000"],["2024-07-24T10:31:03.010000"],["2024-07-24T10:31:04.010000"],["2024-07-24T10:31:05.010000"],["2024-07-24T10:31:06.010000"],["2024-07-24T10:31:07.010000"],["2024-07-24T10:31:08.010000"],["2024-07-24T10:31:09.010000"],["2024-07-24T10:31:10.010000"],["2024-07-24T10:31:11.010000"],["2024-07-24T10:31:12.010000"],["2024-07-24T10:31:13.010000"],["2024-07-24T10:31:14.010000"],["2024-07-24T10:31:15.010000"],["2024-07-24T10:31:16.010000"],["2024-07-24T10:31:17.010000"],["2024-07-24T10:31:18.010000"],["2024-07-24T10:31:19.010000"],["2024-07-24T10:31:20.010000"],["2024-07-24T10:31:21.010000"],["2024-07-24T10:31:22.010000"],["2024-07-24T10:31:23.010000"],["2024-07-24T10:31:24.010000"],["2024-07-24T10:31:25.010000"],["2024-07-24T10:31:26.010000"],["2024-07-24T10:31:27.010000"],["2024-07-24T10:31:28.010000"],["2024-07-24T10:31:29.010000"],["2024-07-24T10:31:30.010000"],["2024-07-24T10:31:31.010000"],["2024-07-24T10:31:32.010000"],["2024-07-24T10:31:33.010000"],["2024-07-24T10:31:34.010000"],["2024-07-24T10:31:35.010000"],["2024-07-24T10:31:36.010000"],["2024-07-24T10:31:37.010000"],["2024-07-24T10:31:38.010000"],["2024-07-24T10:31:39.010000"],["2024-07-24T10:31:40.010000"],["2024-07-24T10:31:41.010000"],["2024-07-24T10:31:42.010000"],["2024-07-24T10:31:43.010000"],["2024-07-24T10:31:44.010000"],["2024-07-24T10:31:45.010000"],["2024-07-24T10:31:46.010000"],["2024-07-24T10:31:47.010000"],["2024-07-24T10:31:48.010000"],["2024-07-24T10:31:49.010000"],["2024-07-24T10:31:50.010000"],["2024-07-24T10:31:51.010000"],["2024-07-24T10:31:52.010000"],["2024-07-24T10:31:53.010000"],["2024-07-24T10:31:54.010000"],["2024-07-24T10:31:55.010000"],["2024-07-24T10:31:56.010000"],["2024-07-24T10:31:57.010000"],["2024-07-24T10:31:58.010000"],["2024-07-24T10:31:59.010000"],["2024-07-24T10:32:00.010000"],["2024-07-24T10:32:01.010000"],["2024-07-24T10:32:02.010000"],["2024-07-24T10:32:03.010000"],["2024-07-24T10:32:04.010000"],["2024-07-24T10:32:05.010000"],["2024-07-24T10:32:06.010000"],["2024-07-24T10:32:07.010000"],["2024-07-24T10:32:08.010000"],["2024-07-24T10:32:09.010000"],["2024-07-24T10:32:10.010000"],["2024-07-24T10:32:11.010000"],["2024-07-24T10:32:12.010000"],["2024-07-24T10:32:13.010000"],["2024-07-24T10:32:14.010000"],["2024-07-24T10:32:15.010000"],["2024-07-24T10:32:16.010000"],["2024-07-24T10:32:17.010000"],["2024-07-24T10:32:18.010000"],["2024-07-24T10:32:19.010000"],["2024-07-24T10:32:20.010000"],["2024-07-24T10:32:21.010000"],["2024-07-24T10:32:22.010000"],["2024-07-24T10:32:23.010000"],["2024-07-24T10:32:24.010000"],["2024-07-24T10:32:25.010000"],["2024-07-24T10:32:26.010000"],["2024-07-24T10:32:27.010000"],["2024-07-24T10:32:28.010000"],["2024-07-24T10:32:29.010000"],["2024-07-24T10:32:30.010000"],["2024-07-24T10:32:31.010000"],["2024-07-24T10:32:32.010000"],["2024-07-24T10:32:33.010000"],["2024-07-24T10:32:34.010000"],["2024-07-24T10:32:35.010000"],["2024-07-24T10:32:36.010000"],["2024-07-24T10:32:37.010000"],["2024-07-24T10:32:38.010000"],["2024-07-24T10:32:39.010000"],["2024-07-24T10:32:40.010000"],["2024-07-24T10:32:41.010000"],["2024-07-24T10:32:42.010000"],["2024-07-24T10:32:43.010000"],["2024-07-24T10:32:44.010000"],["2024-07-24T10:32:45.010000"],["2024-07-24T10:32:46.010000"],["2024-07-24T10:32:47.010000"],["2024-07-24T10:32:48.010000"],["2024-07-24T10:32:49.010000"],["2024-07-24T10:32:50.010000"],["2024-07-24T10:32:51.010000"],["2024-07-24T10:32:52.010000"],["2024-07-24T10:32:53.010000"],["2024-07-24T10:32:54.010000"],["2024-07-24T10:32:55.010000"],["2024-07-24T10:32:56.010000"],["2024-07-24T10:32:57.010000"],["2024-07-24T10:32:58.010000"],["2024-07-24T10:32:59.010000"],["2024-07-24T10:33:00.010000"],["2024-07-24T10:33:01.010000"],["2024-07-24T10:33:02.010000"],["2024-07-24T10:33:03.010000"],["2024-07-24T10:33:04.010000"],["2024-07-24T10:33:05.010000"],["2024-07-24T10:33:06.010000"],["2024-07-24T10:33:07.010000"],["2024-07-24T10:33:08.010000"],["2024-07-24T10:33:09.010000"],["2024-07-24T10:33:10.010000"],["2024-07-24T10:33:11.010000"],["2024-07-24T10:33:12.010000"],["2024-07-24T10:33:13.010000"],["2024-07-24T10:33:14.010000"],["2024-07-24T10:33:15.010000"],["2024-07-24T10:33:16.010000"],["2024-07-24T10:33:17.010000"],["2024-07-24T10:33:18.010000"],["2024-07-24T10:33:19.010000"],["2024-07-24T10:33:20.010000"],["2024-07-24T10:33:21.010000"],["2024-07-24T10:33:22.010000"],["2024-07-24T10:33:23.010000"],["2024-07-24T10:33:24.010000"],["2024-07-24T10:33:25.010000"],["2024-07-24T10:33:26.010000"],["2024-07-24T10:33:27.010000"],["2024-07-24T10:33:28.010000"],["2024-07-24T10:33:29.010000"],["2024-07-24T10:33:30.010000"],["2024-07-24T10:33:31.010000"],["2024-07-24T10:33:32.010000"],["2024-07-24T10:33:33.010000"],["2024-07-24T10:33:34.010000"],["2024-07-24T10:33:35.010000"],["2024-07-24T10:33:36.010000"],["2024-07-24T10:33:37.010000"],["2024-07-24T10:33:38.010000"],["2024-07-24T10:33:39.010000"],["2024-07-24T10:33:40.010000"],["2024-07-24T10:33:41.010000"],["2024-07-24T10:33:42.010000"],["2024-07-24T10:33:43.010000"],["2024-07-24T10:33:44.010000"],["2024-07-24T10:33:45.010000"],["2024-07-24T10:33:46.010000"],["2024-07-24T10:33:47.010000"],["2024-07-24T10:33:48.010000"],["2024-07-24T10:33:49.010000"],["2024-07-24T10:33:50.010000"],["2024-07-24T10:33:51.010000"],["2024-07-24T10:33:52.010000"],["2024-07-24T10:33:53.010000"],["2024-07-24T10:33:54.010000"],["2024-07-24T10:33:55.010000"],["2024-07-24T10:33:56.010000"],["2024-07-24T10:33:57.010000"],["2024-07-24T10:33:58.010000"],["2024-07-24T10:33:59.010000"],["2024-07-24T10:34:00.010000"],["2024-07-24T10:34:01.010000"],["2024-07-24T10:34:02.010000"],["2024-07-24T10:34:03.010000"],["2024-07-24T10:34:04.010000"],["2024-07-24T10:34:05.010000"],["2024-07-24T10:34:06.010000"],["2024-07-24T10:34:07.010000"],["2024-07-24T10:34:08.010000"],["2024-07-24T10:34:09.010000"],["2024-07-24T10:34:10.010000"],["2024-07-24T10:34:11.010000"],["2024-07-24T10:34:12.010000"],["2024-07-24T10:34:13.010000"],["2024-07-24T10:34:14.010000"],["2024-07-24T10:34:15.010000"],["2024-07-24T10:34:16.010000"],["2024-07-24T10:34:17.010000"],["2024-07-24T10:34:18.010000"],["2024-07-24T10:34:19.010000"],["2024-07-24T10:34:20.010000"],["2024-07-24T10:34:21.010000"],["2024-07-24T10:34:22.010000"],["2024-07-24T10:34:23.010000"],["2024-07-24T10:34:24.010000"],["2024-07-24T10:34:25.010000"],["2024-07-24T10:34:26.010000"],["2024-07-24T10:34:27.010000"],["2024-07-24T10:34:28.010000"],["2024-07-24T10:34:29.010000"],["2024-07-24T10:34:30.010000"],["2024-07-24T10:34:31.010000"],["2024-07-24T10:34:32.010000"],["2024-07-24T10:34:33.010000"],["2024-07-24T10:34:34.010000"],["2024-07-24T10:34:35.010000"],["2024-07-24T10:34:36.010000"],["2024-07-24T10:34:37.010000"],["2024-07-24T10:34:38.010000"],["2024-07-24T10:34:39.010000"],["2024-07-24T10:34:40.010000"],["2024-07-24T10:34:41.010000"],["2024-07-24T10:34:42.010000"],["2024-07-24T10:34:43.010000"],["2024-07-24T10:34:44.010000"],["2024-07-24T10:34:45.010000"],["2024-07-24T10:34:46.010000"],["2024-07-24T10:34:47.010000"],["2024-07-24T10:34:48.010000"],["2024-07-24T10:34:49.010000"],["2024-07-24T10:34:50.010000"],["2024-07-24T10:34:51.010000"],["2024-07-24T10:34:52.010000"],["2024-07-24T10:34:53.010000"],["2024-07-24T10:34:54.010000"],["2024-07-24T10:34:55.010000"],["2024-07-24T10:34:56.010000"],["2024-07-24T10:34:57.010000"],["2024-07-24T10:34:58.010000"],["2024-07-24T10:34:59.010000"],["2024-07-24T10:35:00.010000"],["2024-07-24T10:35:01.010000"],["2024-07-24T10:35:02.010000"],["2024-07-24T10:35:03.010000"],["2024-07-24T10:35:04.010000"],["2024-07-24T10:35:05.010000"],["2024-07-24T10:35:06.010000"],["2024-07-24T10:35:07.010000"],["2024-07-24T10:35:08.010000"],["2024-07-24T10:35:09.010000"],["2024-07-24T10:35:10.010000"],["2024-07-24T10:35:11.010000"],["2024-07-24T10:35:12.010000"],["2024-07-24T10:35:13.010000"],["2024-07-24T10:35:14.010000"],["2024-07-24T10:35:15.010000"],["2024-07-24T10:35:16.010000"],["2024-07-24T10:35:17.010000"],["2024-07-24T10:35:18.010000"],["2024-07-24T10:35:19.010000"],["2024-07-24T10:35:20.010000"],["2024-07-24T10:35:21.010000"],["2024-07-24T10:35:22.010000"],["2024-07-24T10:35:23.010000"],["2024-07-24T10:35:24.010000"],["2024-07-24T10:35:25.010000"],["2024-07-24T10:35:26.010000"],["2024-07-24T10:35:27.010000"],["2024-07-24T10:35:28.010000"],["2024-07-24T10:35:29.010000"],["2024-07-24T10:35:30.010000"],["2024-07-24T10:35:31.010000"],["2024-07-24T10:35:32.010000"],["2024-07-24T10:35:33.010000"],["2024-07-24T10:35:34.010000"],["2024-07-24T10:35:35.010000"],["2024-07-24T10:35:36.010000"],["2024-07-24T10:35:37.010000"],["2024-07-24T10:35:38.010000"],["2024-07-24T10:35:39.010000"],["2024-07-24T10:35:40.010000"],["2024-07-24T10:35:41.010000"],["2024-07-24T10:35:42.010000"],["2024-07-24T10:35:43.010000"],["2024-07-24T10:35:44.010000"],["2024-07-24T10:35:45.010000"],["2024-07-24T10:35:46.010000"],["2024-07-24T10:35:47.010000"],["2024-07-24T10:35:48.010000"],["2024-07-24T10:35:49.010000"],["2024-07-24T10:35:50.010000"],["2024-07-24T10:35:51.010000"],["2024-07-24T10:35:52.010000"],["2024-07-24T10:35:53.010000"],["2024-07-24T10:35:54.010000"],["2024-07-24T10:35:55.010000"],["2024-07-24T10:35:56.010000"],["2024-07-24T10:35:57.010000"],["2024-07-24T10:35:58.010000"],["2024-07-24T10:35:59.010000"],["2024-07-24T10:36:00.010000"],["2024-07-24T10:36:01.010000"],["2024-07-24T10:36:02.010000"],["2024-07-24T10:36:03.010000"],["2024-07-24T10:36:04.010000"],["2024-07-24T10:36:05.010000"],["2024-07-24T10:36:06.010000"],["2024-07-24T10:36:07.010000"],["2024-07-24T10:36:08.010000"],["2024-07-24T10:36:09.010000"],["2024-07-24T10:36:10.010000"],["2024-07-24T10:36:11.010000"],["2024-07-24T10:36:12.010000"],["2024-07-24T10:36:13.010000"],["2024-07-24T10:36:14.010000"],["2024-07-24T10:36:15.010000"],["2024-07-24T10:36:16.010000"],["2024-07-24T10:36:17.010000"],["2024-07-24T10:36:18.010000"],["2024-07-24T10:36:19.010000"],["2024-07-24T10:36:20.010000"],["2024-07-24T10:36:21.010000"],["2024-07-24T10:36:22.010000"],["2024-07-24T10:36:23.010000"],["2024-07-24T10:36:24.010000"],["2024-07-24T10:36:25.010000"],["2024-07-24T10:36:26.010000"],["2024-07-24T10:36:27.010000"],["2024-07-24T10:36:28.010000"],["2024-07-24T10:36:29.010000"],["2024-07-24T10:36:30.010000"],["2024-07-24T10:36:31.010000"],["2024-07-24T10:36:32.010000"],["2024-07-24T10:36:33.010000"],["2024-07-24T10:36:34.010000"],["2024-07-24T10:36:35.010000"],["2024-07-24T10:36:36.010000"],["2024-07-24T10:36:37.010000"],["2024-07-24T10:36:38.010000"],["2024-07-24T10:36:39.010000"],["2024-07-24T10:36:40.010000"],["2024-07-24T10:36:41.010000"],["2024-07-24T10:36:42.010000"],["2024-07-24T10:36:43.010000"],["2024-07-24T10:36:44.010000"],["2024-07-24T10:36:45.010000"],["2024-07-24T10:36:46.010000"],["2024-07-24T10:36:47.010000"],["2024-07-24T10:36:48.010000"],["2024-07-24T10:36:49.010000"],["2024-07-24T10:36:50.010000"],["2024-07-24T10:36:51.010000"],["2024-07-24T10:36:52.010000"],["2024-07-24T10:36:53.010000"],["2024-07-24T10:36:54.010000"],["2024-07-24T10:36:55.010000"],["2024-07-24T10:36:56.010000"],["2024-07-24T10:36:57.010000"],["2024-07-24T10:36:58.010000"],["2024-07-24T10:36:59.010000"],["2024-07-24T10:37:00.010000"],["2024-07-24T10:37:01.010000"],["2024-07-24T10:37:02.010000"],["2024-07-24T10:37:03.010000"],["2024-07-24T10:37:04.010000"],["2024-07-24T10:37:05.010000"],["2024-07-24T10:37:06.010000"],["2024-07-24T10:37:07.010000"],["2024-07-24T10:37:08.010000"],["2024-07-24T10:37:09.010000"],["2024-07-24T10:37:10.010000"],["2024-07-24T10:37:11.010000"],["2024-07-24T10:37:12.010000"],["2024-07-24T10:37:13.010000"],["2024-07-24T10:37:14.010000"],["2024-07-24T10:37:15.010000"],["2024-07-24T10:37:16.010000"],["2024-07-24T10:37:17.010000"],["2024-07-24T10:37:18.010000"],["2024-07-24T10:37:19.010000"],["2024-07-24T10:37:20.010000"],["2024-07-24T10:37:21.010000"],["2024-07-24T10:37:22.010000"],["2024-07-24T10:37:23.010000"],["2024-07-24T10:37:24.010000"],["2024-07-24T10:37:25.010000"],["2024-07-24T10:37:26.010000"],["2024-07-24T10:37:27.010000"],["2024-07-24T10:37:28.010000"],["2024-07-24T10:37:29.010000"],["2024-07-24T10:37:30.010000"],["2024-07-24T10:37:31.010000"],["2024-07-24T10:37:32.010000"],["2024-07-24T10:37:33.010000"],["2024-07-24T10:37:34.010000"],["2024-07-24T10:37:35.010000"],["2024-07-24T10:37:36.010000"],["2024-07-24T10:37:37.010000"],["2024-07-24T10:37:38.010000"],["2024-07-24T10:37:39.010000"],["2024-07-24T10:37:40.010000"],["2024-07-24T10:37:41.010000"],["2024-07-24T10:37:42.010000"],["2024-07-24T10:37:43.010000"],["2024-07-24T10:37:44.010000"],["2024-07-24T10:37:45.010000"],["2024-07-24T10:37:46.010000"],["2024-07-24T10:37:47.010000"],["2024-07-24T10:37:48.010000"],["2024-07-24T10:37:49.010000"],["2024-07-24T10:37:50.010000"],["2024-07-24T10:37:51.010000"],["2024-07-24T10:37:52.010000"],["2024-07-24T10:37:53.010000"],["2024-07-24T10:37:54.010000"],["2024-07-24T10:37:55.010000"],["2024-07-24T10:37:56.010000"],["2024-07-24T10:37:57.010000"],["2024-07-24T10:37:58.010000"],["2024-07-24T10:37:59.010000"],["2024-07-24T10:38:00.010000"],["2024-07-24T10:38:01.010000"],["2024-07-24T10:38:02.010000"],["2024-07-24T10:38:03.010000"],["2024-07-24T10:38:04.010000"],["2024-07-24T10:38:05.010000"],["2024-07-24T10:38:06.010000"],["2024-07-24T10:38:07.010000"],["2024-07-24T10:38:08.010000"],["2024-07-24T10:38:09.010000"],["2024-07-24T10:38:10.010000"],["2024-07-24T10:38:11.010000"],["2024-07-24T10:38:12.010000"],["2024-07-24T10:38:13.010000"],["2024-07-24T10:38:14.010000"],["2024-07-24T10:38:15.010000"],["2024-07-24T10:38:16.010000"],["2024-07-24T10:38:17.010000"],["2024-07-24T10:38:18.010000"],["2024-07-24T10:38:19.010000"],["2024-07-24T10:38:20.010000"],["2024-07-24T10:38:21.010000"],["2024-07-24T10:38:22.010000"],["2024-07-24T10:38:23.010000"],["2024-07-24T10:38:24.010000"],["2024-07-24T10:38:25.010000"],["2024-07-24T10:38:26.010000"],["2024-07-24T10:38:27.010000"],["2024-07-24T10:38:28.010000"],["2024-07-24T10:38:29.010000"],["2024-07-24T10:38:30.010000"],["2024-07-24T10:38:31.010000"],["2024-07-24T10:38:32.010000"],["2024-07-24T10:38:33.010000"],["2024-07-24T10:38:34.010000"],["2024-07-24T10:38:35.010000"],["2024-07-24T10:38:36.010000"],["2024-07-24T10:38:37.010000"],["2024-07-24T10:38:38.010000"],["2024-07-24T10:38:39.010000"],["2024-07-24T10:38:40.010000"],["2024-07-24T10:38:41.010000"],["2024-07-24T10:38:42.010000"],["2024-07-24T10:38:43.010000"],["2024-07-24T10:38:44.010000"],["2024-07-24T10:38:45.010000"],["2024-07-24T10:38:46.010000"],["2024-07-24T10:38:47.010000"],["2024-07-24T10:38:48.010000"],["2024-07-24T10:38:49.010000"],["2024-07-24T10:38:50.010000"],["2024-07-24T10:38:51.010000"],["2024-07-24T10:38:52.010000"],["2024-07-24T10:38:53.010000"],["2024-07-24T10:38:54.010000"],["2024-07-24T10:38:55.010000"],["2024-07-24T10:38:56.010000"],["2024-07-24T10:38:57.010000"],["2024-07-24T10:38:58.010000"],["2024-07-24T10:38:59.010000"],["2024-07-24T10:39:00.010000"],["2024-07-24T10:39:01.010000"],["2024-07-24T10:39:02.010000"],["2024-07-24T10:39:03.010000"],["2024-07-24T10:39:04.010000"],["2024-07-24T10:39:05.010000"],["2024-07-24T10:39:06.010000"],["2024-07-24T10:39:07.010000"],["2024-07-24T10:39:08.010000"],["2024-07-24T10:39:09.010000"],["2024-07-24T10:39:10.010000"],["2024-07-24T10:39:11.010000"],["2024-07-24T10:39:12.010000"],["2024-07-24T10:39:13.010000"],["2024-07-24T10:39:14.010000"],["2024-07-24T10:39:15.010000"],["2024-07-24T10:39:16.010000"],["2024-07-24T10:39:17.010000"],["2024-07-24T10:39:18.010000"],["2024-07-24T10:39:19.010000"],["2024-07-24T10:39:20.010000"],["2024-07-24T10:39:21.010000"],["2024-07-24T10:39:22.010000"],["2024-07-24T10:39:23.010000"],["2024-07-24T10:39:24.010000"],["2024-07-24T10:39:25.010000"],["2024-07-24T10:39:26.010000"],["2024-07-24T10:39:27.010000"],["2024-07-24T10:39:28.010000"],["2024-07-24T10:39:29.010000"],["2024-07-24T10:39:30.010000"],["2024-07-24T10:39:31.010000"],["2024-07-24T10:39:32.010000"],["2024-07-24T10:39:33.010000"],["2024-07-24T10:39:34.010000"],["2024-07-24T10:39:35.010000"],["2024-07-24T10:39:36.010000"],["2024-07-24T10:39:37.010000"],["2024-07-24T10:39:38.010000"],["2024-07-24T10:39:39.010000"],["2024-07-24T10:39:40.010000"],["2024-07-24T10:39:41.010000"],["2024-07-24T10:39:42.010000"],["2024-07-24T10:39:43.010000"],["2024-07-24T10:39:44.010000"],["2024-07-24T10:39:45.010000"],["2024-07-24T10:39:46.010000"],["2024-07-24T10:39:47.010000"],["2024-07-24T10:39:48.010000"],["2024-07-24T10:39:49.010000"],["2024-07-24T10:39:50.010000"],["2024-07-24T10:39:51.010000"],["2024-07-24T10:39:52.010000"],["2024-07-24T10:39:53.010000"],["2024-07-24T10:39:54.010000"],["2024-07-24T10:39:55.010000"],["2024-07-24T10:39:56.010000"],["2024-07-24T10:39:57.010000"],["2024-07-24T10:39:58.010000"],["2024-07-24T10:39:59.010000"],["2024-07-24T10:40:00.010000"],["2024-07-24T10:40:01.010000"],["2024-07-24T10:40:02.010000"],["2024-07-24T10:40:03.010000"],["2024-07-24T10:40:04.010000"],["2024-07-24T10:40:05.010000"],["2024-07-24T10:40:06.010000"],["2024-07-24T10:40:07.010000"],["2024-07-24T10:40:08.010000"],["2024-07-24T10:40:09.010000"],["2024-07-24T10:40:10.010000"],["2024-07-24T10:40:11.010000"],["2024-07-24T10:40:12.010000"],["2024-07-24T10:40:13.010000"],["2024-07-24T10:40:14.010000"],["2024-07-24T10:40:15.010000"],["2024-07-24T10:40:16.010000"],["2024-07-24T10:40:17.010000"],["2024-07-24T10:40:18.010000"],["2024-07-24T10:40:19.010000"],["2024-07-24T10:40:20.010000"],["2024-07-24T10:40:21.010000"],["2024-07-24T10:40:22.010000"],["2024-07-24T10:40:23.010000"],["2024-07-24T10:40:24.010000"],["2024-07-24T10:40:25.010000"],["2024-07-24T10:40:26.010000"],["2024-07-24T10:40:27.010000"],["2024-07-24T10:40:28.010000"],["2024-07-24T10:40:29.010000"],["2024-07-24T10:40:30.010000"],["2024-07-24T10:40:31.010000"],["2024-07-24T10:40:32.010000"],["2024-07-24T10:40:33.010000"],["2024-07-24T10:40:34.010000"],["2024-07-24T10:40:35.010000"],["2024-07-24T10:40:36.010000"],["2024-07-24T10:40:37.010000"],["2024-07-24T10:40:38.010000"],["2024-07-24T10:40:39.010000"],["2024-07-24T10:40:40.010000"],["2024-07-24T10:40:41.010000"],["2024-07-24T10:40:42.010000"],["2024-07-24T10:40:43.010000"],["2024-07-24T10:40:44.010000"],["2024-07-24T10:40:45.010000"],["2024-07-24T10:40:46.010000"],["2024-07-24T10:40:47.010000"],["2024-07-24T10:40:48.010000"],["2024-07-24T10:40:49.010000"],["2024-07-24T10:40:50.010000"],["2024-07-24T10:40:51.010000"],["2024-07-24T10:40:52.010000"],["2024-07-24T10:40:53.010000"],["2024-07-24T10:40:54.010000"],["2024-07-24T10:40:55.010000"],["2024-07-24T10:40:56.010000"],["2024-07-24T10:40:57.010000"],["2024-07-24T10:40:58.010000"],["2024-07-24T10:40:59.010000"],["2024-07-24T10:41:00.010000"],["2024-07-24T10:41:01.010000"],["2024-07-24T10:41:02.010000"],["2024-07-24T10:41:03.010000"],["2024-07-24T10:41:04.010000"],["2024-07-24T10:41:05.010000"],["2024-07-24T10:41:06.010000"],["2024-07-24T10:41:07.010000"],["2024-07-24T10:41:08.010000"],["2024-07-24T10:41:09.010000"],["2024-07-24T10:41:10.010000"],["2024-07-24T10:41:11.010000"],["2024-07-24T10:41:12.010000"],["2024-07-24T10:41:13.010000"],["2024-07-24T10:41:14.010000"],["2024-07-24T10:41:15.010000"],["2024-07-24T10:41:16.010000"],["2024-07-24T10:41:17.010000"],["2024-07-24T10:41:18.010000"],["2024-07-24T10:41:19.010000"],["2024-07-24T10:41:20.010000"],["2024-07-24T10:41:21.010000"],["2024-07-24T10:41:22.010000"],["2024-07-24T10:41:23.010000"],["2024-07-24T10:41:24.010000"],["2024-07-24T10:41:25.010000"],["2024-07-24T10:41:26.010000"],["2024-07-24T10:41:27.010000"],["2024-07-24T10:41:28.010000"],["2024-07-24T10:41:29.010000"],["2024-07-24T10:41:30.010000"],["2024-07-24T10:41:31.010000"],["2024-07-24T10:41:32.010000"],["2024-07-24T10:41:33.010000"],["2024-07-24T10:41:34.010000"],["2024-07-24T10:41:35.010000"],["2024-07-24T10:41:36.010000"],["2024-07-24T10:41:37.010000"],["2024-07-24T10:41:38.010000"],["2024-07-24T10:41:39.010000"],["2024-07-24T10:41:40.010000"],["2024-07-24T10:41:41.010000"],["2024-07-24T10:41:42.010000"],["2024-07-24T10:41:43.010000"],["2024-07-24T10:41:44.010000"],["2024-07-24T10:41:45.010000"],["2024-07-24T10:41:46.010000"],["2024-07-24T10:41:47.010000"],["2024-07-24T10:41:48.010000"],["2024-07-24T10:41:49.010000"],["2024-07-24T10:41:50.010000"],["2024-07-24T10:41:51.010000"],["2024-07-24T10:41:52.010000"],["2024-07-24T10:41:53.010000"],["2024-07-24T10:41:54.010000"],["2024-07-24T10:41:55.010000"],["2024-07-24T10:41:56.010000"],["2024-07-24T10:41:57.010000"],["2024-07-24T10:41:58.010000"],["2024-07-24T10:41:59.010000"],["2024-07-24T10:42:00.010000"],["2024-07-24T10:42:01.010000"],["2024-07-24T10:42:02.010000"],["2024-07-24T10:42:03.010000"],["2024-07-24T10:42:04.010000"],["2024-07-24T10:42:05.010000"],["2024-07-24T10:42:06.010000"],["2024-07-24T10:42:07.010000"],["2024-07-24T10:42:08.010000"],["2024-07-24T10:42:09.010000"],["2024-07-24T10:42:10.010000"],["2024-07-24T10:42:11.010000"],["2024-07-24T10:42:12.010000"],["2024-07-24T10:42:13.010000"],["2024-07-24T10:42:14.010000"],["2024-07-24T10:42:15.010000"],["2024-07-24T10:42:16.010000"],["2024-07-24T10:42:17.010000"],["2024-07-24T10:42:18.010000"],["2024-07-24T10:42:19.010000"],["2024-07-24T10:42:20.010000"],["2024-07-24T10:42:21.010000"],["2024-07-24T10:42:22.010000"],["2024-07-24T10:42:23.010000"],["2024-07-24T10:42:24.010000"],["2024-07-24T10:42:25.010000"],["2024-07-24T10:42:26.010000"],["2024-07-24T10:42:27.010000"],["2024-07-24T10:42:28.010000"],["2024-07-24T10:42:29.010000"],["2024-07-24T10:42:30.010000"],["2024-07-24T10:42:31.010000"],["2024-07-24T10:42:32.010000"],["2024-07-24T10:42:33.010000"],["2024-07-24T10:42:34.010000"],["2024-07-24T10:42:35.010000"],["2024-07-24T10:42:36.010000"],["2024-07-24T10:42:37.010000"],["2024-07-24T10:42:38.010000"],["2024-07-24T10:42:39.010000"],["2024-07-24T10:42:40.010000"],["2024-07-24T10:42:41.010000"],["2024-07-24T10:42:42.010000"],["2024-07-24T10:42:43.010000"],["2024-07-24T10:42:44.010000"],["2024-07-24T10:42:45.010000"],["2024-07-24T10:42:46.010000"],["2024-07-24T10:42:47.010000"],["2024-07-24T10:42:48.010000"],["2024-07-24T10:42:49.010000"],["2024-07-24T10:42:50.010000"],["2024-07-24T10:42:51.010000"],["2024-07-24T10:42:52.010000"],["2024-07-24T10:42:53.010000"],["2024-07-24T10:42:54.010000"],["2024-07-24T10:42:55.010000"],["2024-07-24T10:42:56.010000"],["2024-07-24T10:42:57.010000"],["2024-07-24T10:42:58.010000"],["2024-07-24T10:42:59.010000"],["2024-07-24T10:43:00.010000"],["2024-07-24T10:43:01.010000"],["2024-07-24T10:43:02.010000"],["2024-07-24T10:43:03.010000"],["2024-07-24T10:43:04.010000"],["2024-07-24T10:43:05.010000"],["2024-07-24T10:43:06.010000"],["2024-07-24T10:43:07.010000"],["2024-07-24T10:43:08.010000"],["2024-07-24T10:43:09.010000"],["2024-07-24T10:43:10.010000"],["2024-07-24T10:43:11.010000"],["2024-07-24T10:43:12.010000"],["2024-07-24T10:43:13.010000"],["2024-07-24T10:43:14.010000"],["2024-07-24T10:43:15.010000"],["2024-07-24T10:43:16.010000"],["2024-07-24T10:43:17.010000"],["2024-07-24T10:43:18.010000"],["2024-07-24T10:43:19.010000"],["2024-07-24T10:43:20.010000"],["2024-07-24T10:43:21.010000"],["2024-07-24T10:43:22.010000"],["2024-07-24T10:43:23.010000"],["2024-07-24T10:43:24.010000"],["2024-07-24T10:43:25.010000"],["2024-07-24T10:43:26.010000"],["2024-07-24T10:43:27.010000"],["2024-07-24T10:43:28.010000"],["2024-07-24T10:43:29.010000"],["2024-07-24T10:43:30.010000"],["2024-07-24T10:43:31.010000"],["2024-07-24T10:43:32.010000"],["2024-07-24T10:43:33.010000"],["2024-07-24T10:43:34.010000"],["2024-07-24T10:43:35.010000"],["2024-07-24T10:43:36.010000"],["2024-07-24T10:43:37.010000"],["2024-07-24T10:43:38.010000"],["2024-07-24T10:43:39.010000"],["2024-07-24T10:43:40.010000"],["2024-07-24T10:43:41.010000"],["2024-07-24T10:43:42.010000"],["2024-07-24T10:43:43.010000"],["2024-07-24T10:43:44.010000"],["2024-07-24T10:43:45.010000"],["2024-07-24T10:43:46.010000"],["2024-07-24T10:43:47.010000"],["2024-07-24T10:43:48.010000"],["2024-07-24T10:43:49.010000"],["2024-07-24T10:43:50.010000"],["2024-07-24T10:43:51.010000"],["2024-07-24T10:43:52.010000"],["2024-07-24T10:43:53.010000"],["2024-07-24T10:43:54.010000"],["2024-07-24T10:43:55.010000"],["2024-07-24T10:43:56.010000"],["2024-07-24T10:43:57.010000"],["2024-07-24T10:43:58.010000"],["2024-07-24T10:43:59.010000"],["2024-07-24T10:44:00.010000"],["2024-07-24T10:44:01.010000"],["2024-07-24T10:44:02.010000"],["2024-07-24T10:44:03.010000"],["2024-07-24T10:44:04.010000"],["2024-07-24T10:44:05.010000"],["2024-07-24T10:44:06.010000"],["2024-07-24T10:44:07.010000"],["2024-07-24T10:44:08.010000"],["2024-07-24T10:44:09.010000"],["2024-07-24T10:44:10.010000"],["2024-07-24T10:44:11.010000"],["2024-07-24T10:44:12.010000"],["2024-07-24T10:44:13.010000"],["2024-07-24T10:44:14.010000"],["2024-07-24T10:44:15.010000"],["2024-07-24T10:44:16.010000"],["2024-07-24T10:44:17.010000"],["2024-07-24T10:44:18.010000"],["2024-07-24T10:44:19.010000"],["2024-07-24T10:44:20.010000"],["2024-07-24T10:44:21.010000"],["2024-07-24T10:44:22.010000"],["2024-07-24T10:44:23.010000"],["2024-07-24T10:44:24.010000"],["2024-07-24T10:44:25.010000"],["2024-07-24T10:44:26.010000"],["2024-07-24T10:44:27.010000"],["2024-07-24T10:44:28.010000"],["2024-07-24T10:44:29.010000"],["2024-07-24T10:44:30.010000"],["2024-07-24T10:44:31.010000"],["2024-07-24T10:44:32.010000"],["2024-07-24T10:44:33.010000"],["2024-07-24T10:44:34.010000"],["2024-07-24T10:44:35.010000"],["2024-07-24T10:44:36.010000"],["2024-07-24T10:44:37.010000"],["2024-07-24T10:44:38.010000"],["2024-07-24T10:44:39.010000"],["2024-07-24T10:44:40.010000"],["2024-07-24T10:44:41.010000"],["2024-07-24T10:44:42.010000"],["2024-07-24T10:44:43.010000"],["2024-07-24T10:44:44.010000"],["2024-07-24T10:44:45.010000"],["2024-07-24T10:44:46.010000"],["2024-07-24T10:44:47.010000"],["2024-07-24T10:44:48.010000"],["2024-07-24T10:44:49.010000"],["2024-07-24T10:44:50.010000"],["2024-07-24T10:44:51.010000"],["2024-07-24T10:44:52.010000"],["2024-07-24T10:44:53.010000"],["2024-07-24T10:44:54.010000"],["2024-07-24T10:44:55.010000"],["2024-07-24T10:44:56.010000"],["2024-07-24T10:44:57.010000"],["2024-07-24T10:44:58.010000"],["2024-07-24T10:44:59.010000"],["2024-07-24T10:45:00.010000"],["2024-07-24T10:45:01.010000"],["2024-07-24T10:45:02.010000"],["2024-07-24T10:45:03.010000"],["2024-07-24T10:45:04.010000"],["2024-07-24T10:45:05.010000"],["2024-07-24T10:45:06.010000"],["2024-07-24T10:45:07.010000"],["2024-07-24T10:45:08.010000"],["2024-07-24T10:45:09.010000"],["2024-07-24T10:45:10.010000"],["2024-07-24T10:45:11.010000"],["2024-07-24T10:45:12.010000"],["2024-07-24T10:45:13.010000"],["2024-07-24T10:45:14.010000"],["2024-07-24T10:45:15.010000"],["2024-07-24T10:45:16.010000"],["2024-07-24T10:45:17.010000"],["2024-07-24T10:45:18.010000"],["2024-07-24T10:45:19.010000"],["2024-07-24T10:45:20.010000"],["2024-07-24T10:45:21.010000"],["2024-07-24T10:45:22.010000"],["2024-07-24T10:45:23.010000"],["2024-07-24T10:45:24.010000"],["2024-07-24T10:45:25.010000"],["2024-07-24T10:45:26.010000"],["2024-07-24T10:45:27.010000"],["2024-07-24T10:45:28.010000"],["2024-07-24T10:45:29.010000"],["2024-07-24T10:45:30.010000"],["2024-07-24T10:45:31.010000"],["2024-07-24T10:45:32.010000"],["2024-07-24T10:45:33.010000"],["2024-07-24T10:45:34.010000"],["2024-07-24T10:45:35.010000"],["2024-07-24T10:45:36.010000"],["2024-07-24T10:45:37.010000"],["2024-07-24T10:45:38.010000"],["2024-07-24T10:45:39.010000"],["2024-07-24T10:45:40.010000"],["2024-07-24T10:45:41.010000"],["2024-07-24T10:45:42.010000"],["2024-07-24T10:45:43.010000"],["2024-07-24T10:45:44.010000"],["2024-07-24T10:45:45.010000"],["2024-07-24T10:45:46.010000"],["2024-07-24T10:45:47.010000"],["2024-07-24T10:45:48.010000"],["2024-07-24T10:45:49.010000"],["2024-07-24T10:45:50.010000"],["2024-07-24T10:45:51.010000"],["2024-07-24T10:45:52.010000"],["2024-07-24T10:45:53.010000"],["2024-07-24T10:45:54.010000"],["2024-07-24T10:45:55.010000"],["2024-07-24T10:45:56.010000"],["2024-07-24T10:45:57.010000"],["2024-07-24T10:45:58.010000"],["2024-07-24T10:45:59.010000"],["2024-07-24T10:46:00.010000"],["2024-07-24T10:46:01.010000"],["2024-07-24T10:46:02.010000"],["2024-07-24T10:46:03.010000"],["2024-07-24T10:46:04.010000"],["2024-07-24T10:46:05.010000"],["2024-07-24T10:46:06.010000"],["2024-07-24T10:46:07.010000"],["2024-07-24T10:46:08.010000"],["2024-07-24T10:46:09.010000"],["2024-07-24T10:46:10.010000"],["2024-07-24T10:46:11.010000"],["2024-07-24T10:46:12.010000"],["2024-07-24T10:46:13.010000"],["2024-07-24T10:46:14.010000"],["2024-07-24T10:46:15.010000"],["2024-07-24T10:46:16.010000"],["2024-07-24T10:46:17.010000"],["2024-07-24T10:46:18.010000"],["2024-07-24T10:46:19.010000"],["2024-07-24T10:46:20.010000"],["2024-07-24T10:46:21.010000"],["2024-07-24T10:46:22.010000"],["2024-07-24T10:46:23.010000"],["2024-07-24T10:46:24.010000"],["2024-07-24T10:46:25.010000"],["2024-07-24T10:46:26.010000"],["2024-07-24T10:46:27.010000"],["2024-07-24T10:46:28.010000"],["2024-07-24T10:46:29.010000"],["2024-07-24T10:46:30.010000"],["2024-07-24T10:46:31.010000"],["2024-07-24T10:46:32.010000"],["2024-07-24T10:46:33.010000"],["2024-07-24T10:46:34.010000"],["2024-07-24T10:46:35.010000"],["2024-07-24T10:46:36.010000"],["2024-07-24T10:46:37.010000"],["2024-07-24T10:46:38.010000"],["2024-07-24T10:46:39.010000"],["2024-07-24T10:46:40.010000"],["2024-07-24T10:46:41.010000"],["2024-07-24T10:46:42.010000"],["2024-07-24T10:46:43.010000"],["2024-07-24T10:46:44.010000"],["2024-07-24T10:46:45.010000"],["2024-07-24T10:46:46.010000"],["2024-07-24T10:46:47.010000"],["2024-07-24T10:46:48.010000"],["2024-07-24T10:46:49.010000"],["2024-07-24T10:46:50.010000"],["2024-07-24T10:46:51.010000"],["2024-07-24T10:46:52.010000"],["2024-07-24T10:46:53.010000"],["2024-07-24T10:46:54.010000"],["2024-07-24T10:46:55.010000"],["2024-07-24T10:46:56.010000"],["2024-07-24T10:46:57.010000"],["2024-07-24T10:46:58.010000"],["2024-07-24T10:46:59.010000"],["2024-07-24T10:47:00.010000"],["2024-07-24T10:47:01.010000"],["2024-07-24T10:47:02.010000"],["2024-07-24T10:47:03.010000"],["2024-07-24T10:47:04.010000"],["2024-07-24T10:47:05.010000"],["2024-07-24T10:47:06.010000"],["2024-07-24T10:47:07.010000"],["2024-07-24T10:47:08.010000"],["2024-07-24T10:47:09.010000"],["2024-07-24T10:47:10.010000"],["2024-07-24T10:47:11.010000"],["2024-07-24T10:47:12.010000"],["2024-07-24T10:47:13.010000"],["2024-07-24T10:47:14.010000"],["2024-07-24T10:47:15.010000"],["2024-07-24T10:47:16.010000"],["2024-07-24T10:47:17.010000"],["2024-07-24T10:47:18.010000"],["2024-07-24T10:47:19.010000"],["2024-07-24T10:47:20.010000"],["2024-07-24T10:47:21.010000"],["2024-07-24T10:47:22.010000"],["2024-07-24T10:47:23.010000"],["2024-07-24T10:47:24.010000"],["2024-07-24T10:47:25.010000"],["2024-07-24T10:47:26.010000"],["2024-07-24T10:47:27.010000"],["2024-07-24T10:47:28.010000"],["2024-07-24T10:47:29.010000"],["2024-07-24T10:47:30.010000"],["2024-07-24T10:47:31.010000"],["2024-07-24T10:47:32.010000"],["2024-07-24T10:47:33.010000"],["2024-07-24T10:47:34.010000"],["2024-07-24T10:47:35.010000"],["2024-07-24T10:47:36.010000"],["2024-07-24T10:47:37.010000"],["2024-07-24T10:47:38.010000"],["2024-07-24T10:47:39.010000"],["2024-07-24T10:47:40.010000"],["2024-07-24T10:47:41.010000"],["2024-07-24T10:47:42.010000"],["2024-07-24T10:47:43.010000"],["2024-07-24T10:47:44.010000"],["2024-07-24T10:47:45.010000"],["2024-07-24T10:47:46.010000"],["2024-07-24T10:47:47.010000"],["2024-07-24T10:47:48.010000"],["2024-07-24T10:47:49.010000"],["2024-07-24T10:47:50.010000"],["2024-07-24T10:47:51.010000"],["2024-07-24T10:47:52.010000"],["2024-07-24T10:47:53.010000"],["2024-07-24T10:47:54.010000"],["2024-07-24T10:47:55.010000"],["2024-07-24T10:47:56.010000"],["2024-07-24T10:47:57.010000"],["2024-07-24T10:47:58.010000"],["2024-07-24T10:47:59.010000"],["2024-07-24T10:48:00.010000"],["2024-07-24T10:48:01.010000"],["2024-07-24T10:48:02.010000"],["2024-07-24T10:48:03.010000"],["2024-07-24T10:48:04.010000"],["2024-07-24T10:48:05.010000"],["2024-07-24T10:48:06.010000"],["2024-07-24T10:48:07.010000"],["2024-07-24T10:48:08.010000"],["2024-07-24T10:48:09.010000"],["2024-07-24T10:48:10.010000"],["2024-07-24T10:48:11.010000"],["2024-07-24T10:48:12.010000"],["2024-07-24T10:48:13.010000"],["2024-07-24T10:48:14.010000"],["2024-07-24T10:48:15.010000"],["2024-07-24T10:48:16.010000"],["2024-07-24T10:48:17.010000"],["2024-07-24T10:48:18.010000"],["2024-07-24T10:48:19.010000"],["2024-07-24T10:48:20.010000"],["2024-07-24T10:48:21.010000"],["2024-07-24T10:48:22.010000"],["2024-07-24T10:48:23.010000"],["2024-07-24T10:48:24.010000"],["2024-07-24T10:48:25.010000"],["2024-07-24T10:48:26.010000"],["2024-07-24T10:48:27.010000"],["2024-07-24T10:48:28.010000"],["2024-07-24T10:48:29.010000"],["2024-07-24T10:48:30.010000"],["2024-07-24T10:48:31.010000"],["2024-07-24T10:48:32.010000"],["2024-07-24T10:48:33.010000"],["2024-07-24T10:48:34.010000"],["2024-07-24T10:48:35.010000"],["2024-07-24T10:48:36.010000"],["2024-07-24T10:48:37.010000"],["2024-07-24T10:48:38.010000"],["2024-07-24T10:48:39.010000"],["2024-07-24T10:48:40.010000"],["2024-07-24T10:48:41.010000"],["2024-07-24T10:48:42.010000"],["2024-07-24T10:48:43.010000"],["2024-07-24T10:48:44.010000"],["2024-07-24T10:48:45.010000"],["2024-07-24T10:48:46.010000"],["2024-07-24T10:48:47.010000"],["2024-07-24T10:48:48.010000"],["2024-07-24T10:48:49.010000"],["2024-07-24T10:48:50.010000"],["2024-07-24T10:48:51.010000"],["2024-07-24T10:48:52.010000"],["2024-07-24T10:48:53.010000"],["2024-07-24T10:48:54.010000"],["2024-07-24T10:48:55.010000"],["2024-07-24T10:48:56.010000"],["2024-07-24T10:48:57.010000"],["2024-07-24T10:48:58.010000"],["2024-07-24T10:48:59.010000"],["2024-07-24T10:49:00.010000"],["2024-07-24T10:49:01.010000"],["2024-07-24T10:49:02.010000"],["2024-07-24T10:49:03.010000"],["2024-07-24T10:49:04.010000"],["2024-07-24T10:49:05.010000"],["2024-07-24T10:49:06.010000"],["2024-07-24T10:49:07.010000"],["2024-07-24T10:49:08.010000"],["2024-07-24T10:49:09.010000"],["2024-07-24T10:49:10.010000"],["2024-07-24T10:49:11.010000"],["2024-07-24T10:49:12.010000"],["2024-07-24T10:49:13.010000"],["2024-07-24T10:49:14.010000"],["2024-07-24T10:49:15.010000"],["2024-07-24T10:49:16.010000"],["2024-07-24T10:49:17.010000"],["2024-07-24T10:49:18.010000"],["2024-07-24T10:49:19.010000"],["2024-07-24T10:49:20.010000"],["2024-07-24T10:49:21.010000"],["2024-07-24T10:49:22.010000"],["2024-07-24T10:49:23.010000"],["2024-07-24T10:49:24.010000"],["2024-07-24T10:49:25.010000"],["2024-07-24T10:49:26.010000"],["2024-07-24T10:49:27.010000"],["2024-07-24T10:49:28.010000"],["2024-07-24T10:49:29.010000"],["2024-07-24T10:49:30.010000"],["2024-07-24T10:49:31.010000"],["2024-07-24T10:49:32.010000"],["2024-07-24T10:49:33.010000"],["2024-07-24T10:49:34.010000"],["2024-07-24T10:49:35.010000"],["2024-07-24T10:49:36.010000"],["2024-07-24T10:49:37.010000"],["2024-07-24T10:49:38.010000"],["2024-07-24T10:49:39.010000"],["2024-07-24T10:49:40.010000"],["2024-07-24T10:49:41.010000"],["2024-07-24T10:49:42.010000"],["2024-07-24T10:49:43.010000"],["2024-07-24T10:49:44.010000"],["2024-07-24T10:49:45.010000"],["2024-07-24T10:49:46.010000"],["2024-07-24T10:49:47.010000"],["2024-07-24T10:49:48.010000"],["2024-07-24T10:49:49.010000"],["2024-07-24T10:49:50.010000"],["2024-07-24T10:49:51.010000"],["2024-07-24T10:49:52.010000"],["2024-07-24T10:49:53.010000"],["2024-07-24T10:49:54.010000"],["2024-07-24T10:49:55.010000"],["2024-07-24T10:49:56.010000"],["2024-07-24T10:49:57.010000"],["2024-07-24T10:49:58.010000"],["2024-07-24T10:49:59.010000"],["2024-07-24T10:50:00.010000"],["2024-07-24T10:50:01.010000"],["2024-07-24T10:50:02.010000"],["2024-07-24T10:50:03.010000"],["2024-07-24T10:50:04.010000"],["2024-07-24T10:50:05.010000"],["2024-07-24T10:50:06.010000"],["2024-07-24T10:50:07.010000"],["2024-07-24T10:50:08.010000"],["2024-07-24T10:50:09.010000"],["2024-07-24T10:50:10.010000"],["2024-07-24T10:50:11.010000"],["2024-07-24T10:50:12.010000"],["2024-07-24T10:50:13.010000"],["2024-07-24T10:50:14.010000"],["2024-07-24T10:50:15.010000"],["2024-07-24T10:50:16.010000"],["2024-07-24T10:50:17.010000"],["2024-07-24T10:50:18.010000"],["2024-07-24T10:50:19.010000"],["2024-07-24T10:50:20.010000"],["2024-07-24T10:50:21.010000"],["2024-07-24T10:50:22.010000"],["2024-07-24T10:50:23.010000"],["2024-07-24T10:50:24.010000"],["2024-07-24T10:50:25.010000"],["2024-07-24T10:50:26.010000"],["2024-07-24T10:50:27.010000"],["2024-07-24T10:50:28.010000"],["2024-07-24T10:50:29.010000"],["2024-07-24T10:50:30.010000"],["2024-07-24T10:50:31.010000"],["2024-07-24T10:50:32.010000"],["2024-07-24T10:50:33.010000"],["2024-07-24T10:50:34.010000"],["2024-07-24T10:50:35.010000"],["2024-07-24T10:50:36.010000"],["2024-07-24T10:50:37.010000"],["2024-07-24T10:50:38.010000"],["2024-07-24T10:50:39.010000"],["2024-07-24T10:50:40.010000"],["2024-07-24T10:50:41.010000"],["2024-07-24T10:50:42.010000"],["2024-07-24T10:50:43.010000"],["2024-07-24T10:50:44.010000"],["2024-07-24T10:50:45.010000"],["2024-07-24T10:50:46.010000"],["2024-07-24T10:50:47.010000"],["2024-07-24T10:50:48.010000"],["2024-07-24T10:50:49.010000"],["2024-07-24T10:50:50.010000"],["2024-07-24T10:50:51.010000"],["2024-07-24T10:50:52.010000"],["2024-07-24T10:50:53.010000"],["2024-07-24T10:50:54.010000"],["2024-07-24T10:50:55.010000"],["2024-07-24T10:50:56.010000"],["2024-07-24T10:50:57.010000"],["2024-07-24T10:50:58.010000"],["2024-07-24T10:50:59.010000"],["2024-07-24T10:51:00.010000"],["2024-07-24T10:51:01.010000"],["2024-07-24T10:51:02.010000"],["2024-07-24T10:51:03.010000"],["2024-07-24T10:51:04.010000"],["2024-07-24T10:51:05.010000"],["2024-07-24T10:51:06.010000"],["2024-07-24T10:51:07.010000"],["2024-07-24T10:51:08.010000"],["2024-07-24T10:51:09.010000"],["2024-07-24T10:51:10.010000"],["2024-07-24T10:51:11.010000"],["2024-07-24T10:51:12.010000"],["2024-07-24T10:51:13.010000"],["2024-07-24T10:51:14.010000"],["2024-07-24T10:51:15.010000"],["2024-07-24T10:51:16.010000"],["2024-07-24T10:51:17.010000"],["2024-07-24T10:51:18.010000"],["2024-07-24T10:51:19.010000"],["2024-07-24T10:51:20.010000"],["2024-07-24T10:51:21.010000"],["2024-07-24T10:51:22.010000"],["2024-07-24T10:51:23.010000"],["2024-07-24T10:51:24.010000"],["2024-07-24T10:51:25.010000"],["2024-07-24T10:51:26.010000"],["2024-07-24T10:51:27.010000"],["2024-07-24T10:51:28.010000"],["2024-07-24T10:51:29.010000"],["2024-07-24T10:51:30.010000"],["2024-07-24T10:51:31.010000"],["2024-07-24T10:51:32.010000"],["2024-07-24T10:51:33.010000"],["2024-07-24T10:51:34.010000"],["2024-07-24T10:51:35.010000"],["2024-07-24T10:51:36.010000"],["2024-07-24T10:51:37.010000"],["2024-07-24T10:51:38.010000"],["2024-07-24T10:51:39.010000"],["2024-07-24T10:51:40.010000"],["2024-07-24T10:51:41.010000"],["2024-07-24T10:51:42.010000"],["2024-07-24T10:51:43.010000"],["2024-07-24T10:51:44.010000"],["2024-07-24T10:51:45.010000"],["2024-07-24T10:51:46.010000"],["2024-07-24T10:51:47.010000"],["2024-07-24T10:51:48.010000"],["2024-07-24T10:51:49.010000"],["2024-07-24T10:51:50.010000"],["2024-07-24T10:51:51.010000"],["2024-07-24T10:51:52.010000"],["2024-07-24T10:51:53.010000"],["2024-07-24T10:51:54.010000"],["2024-07-24T10:51:55.010000"],["2024-07-24T10:51:56.010000"],["2024-07-24T10:51:57.010000"],["2024-07-24T10:51:58.010000"],["2024-07-24T10:51:59.010000"],["2024-07-24T10:52:00.010000"],["2024-07-24T10:52:01.010000"],["2024-07-24T10:52:02.010000"],["2024-07-24T10:52:03.010000"],["2024-07-24T10:52:04.010000"],["2024-07-24T10:52:05.010000"],["2024-07-24T10:52:06.010000"],["2024-07-24T10:52:07.010000"],["2024-07-24T10:52:08.010000"],["2024-07-24T10:52:09.010000"],["2024-07-24T10:52:10.010000"],["2024-07-24T10:52:11.010000"],["2024-07-24T10:52:12.010000"],["2024-07-24T10:52:13.010000"],["2024-07-24T10:52:14.010000"],["2024-07-24T10:52:15.010000"],["2024-07-24T10:52:16.010000"],["2024-07-24T10:52:17.010000"],["2024-07-24T10:52:18.010000"],["2024-07-24T10:52:19.010000"],["2024-07-24T10:52:20.010000"],["2024-07-24T10:52:21.010000"],["2024-07-24T10:52:22.010000"],["2024-07-24T10:52:23.010000"],["2024-07-24T10:52:24.010000"],["2024-07-24T10:52:25.010000"],["2024-07-24T10:52:26.010000"],["2024-07-24T10:52:27.010000"],["2024-07-24T10:52:28.010000"],["2024-07-24T10:52:29.010000"],["2024-07-24T10:52:30.010000"],["2024-07-24T10:52:31.010000"],["2024-07-24T10:52:32.010000"],["2024-07-24T10:52:33.010000"],["2024-07-24T10:52:34.010000"],["2024-07-24T10:52:35.010000"],["2024-07-24T10:52:36.010000"],["2024-07-24T10:52:37.010000"],["2024-07-24T10:52:38.010000"],["2024-07-24T10:52:39.010000"],["2024-07-24T10:52:40.010000"],["2024-07-24T10:52:41.010000"],["2024-07-24T10:52:42.010000"],["2024-07-24T10:52:43.010000"],["2024-07-24T10:52:44.010000"],["2024-07-24T10:52:45.010000"],["2024-07-24T10:52:46.010000"],["2024-07-24T10:52:47.010000"],["2024-07-24T10:52:48.010000"],["2024-07-24T10:52:49.010000"],["2024-07-24T10:52:50.010000"],["2024-07-24T10:52:51.010000"],["2024-07-24T10:52:52.010000"],["2024-07-24T10:52:53.010000"],["2024-07-24T10:52:54.010000"],["2024-07-24T10:52:55.010000"],["2024-07-24T10:52:56.010000"],["2024-07-24T10:52:57.010000"],["2024-07-24T10:52:58.010000"],["2024-07-24T10:52:59.010000"],["2024-07-24T10:53:00.010000"],["2024-07-24T10:53:01.010000"],["2024-07-24T10:53:02.010000"],["2024-07-24T10:53:03.010000"],["2024-07-24T10:53:04.010000"],["2024-07-24T10:53:05.010000"],["2024-07-24T10:53:06.010000"],["2024-07-24T10:53:07.010000"],["2024-07-24T10:53:08.010000"],["2024-07-24T10:53:09.010000"],["2024-07-24T10:53:10.010000"],["2024-07-24T10:53:11.010000"],["2024-07-24T10:53:12.010000"],["2024-07-24T10:53:13.010000"],["2024-07-24T10:53:14.010000"],["2024-07-24T10:53:15.010000"],["2024-07-24T10:53:16.010000"],["2024-07-24T10:53:17.010000"],["2024-07-24T10:53:18.010000"],["2024-07-24T10:53:19.010000"],["2024-07-24T10:53:20.010000"],["2024-07-24T10:53:21.010000"],["2024-07-24T10:53:22.010000"],["2024-07-24T10:53:23.010000"],["2024-07-24T10:53:24.010000"],["2024-07-24T10:53:25.010000"],["2024-07-24T10:53:26.010000"],["2024-07-24T10:53:27.010000"],["2024-07-24T10:53:28.010000"],["2024-07-24T10:53:29.010000"],["2024-07-24T10:53:30.010000"],["2024-07-24T10:53:31.010000"],["2024-07-24T10:53:32.010000"],["2024-07-24T10:53:33.010000"],["2024-07-24T10:53:34.010000"],["2024-07-24T10:53:35.010000"],["2024-07-24T10:53:36.010000"],["2024-07-24T10:53:37.010000"],["2024-07-24T10:53:38.010000"],["2024-07-24T10:53:39.010000"],["2024-07-24T10:53:40.010000"],["2024-07-24T10:53:41.010000"],["2024-07-24T10:53:42.010000"],["2024-07-24T10:53:43.010000"],["2024-07-24T10:53:44.010000"],["2024-07-24T10:53:45.010000"],["2024-07-24T10:53:46.010000"],["2024-07-24T10:53:47.010000"],["2024-07-24T10:53:48.010000"],["2024-07-24T10:53:49.010000"],["2024-07-24T10:53:50.010000"],["2024-07-24T10:53:51.010000"],["2024-07-24T10:53:52.010000"],["2024-07-24T10:53:53.010000"],["2024-07-24T10:53:54.010000"],["2024-07-24T10:53:55.010000"],["2024-07-24T10:53:56.010000"],["2024-07-24T10:53:57.010000"],["2024-07-24T10:53:58.010000"],["2024-07-24T10:53:59.010000"],["2024-07-24T10:54:00.010000"],["2024-07-24T10:54:01.010000"],["2024-07-24T10:54:02.010000"],["2024-07-24T10:54:03.010000"],["2024-07-24T10:54:04.010000"],["2024-07-24T10:54:05.010000"],["2024-07-24T10:54:06.010000"],["2024-07-24T10:54:07.010000"],["2024-07-24T10:54:08.010000"],["2024-07-24T10:54:09.010000"],["2024-07-24T10:54:10.010000"],["2024-07-24T10:54:11.010000"],["2024-07-24T10:54:12.010000"],["2024-07-24T10:54:13.010000"],["2024-07-24T10:54:14.010000"],["2024-07-24T10:54:15.010000"],["2024-07-24T10:54:16.010000"],["2024-07-24T10:54:17.010000"],["2024-07-24T10:54:18.010000"],["2024-07-24T10:54:19.010000"],["2024-07-24T10:54:20.010000"],["2024-07-24T10:54:21.010000"],["2024-07-24T10:54:22.010000"],["2024-07-24T10:54:23.010000"],["2024-07-24T10:54:24.010000"],["2024-07-24T10:54:25.010000"],["2024-07-24T10:54:26.010000"],["2024-07-24T10:54:27.010000"],["2024-07-24T10:54:28.010000"],["2024-07-24T10:54:29.010000"],["2024-07-24T10:54:30.010000"],["2024-07-24T10:54:31.010000"],["2024-07-24T10:54:32.010000"],["2024-07-24T10:54:33.010000"],["2024-07-24T10:54:34.010000"],["2024-07-24T10:54:35.010000"],["2024-07-24T10:54:36.010000"],["2024-07-24T10:54:37.010000"],["2024-07-24T10:54:38.010000"],["2024-07-24T10:54:39.010000"],["2024-07-24T10:54:40.010000"],["2024-07-24T10:54:41.010000"],["2024-07-24T10:54:42.010000"],["2024-07-24T10:54:43.010000"],["2024-07-24T10:54:44.010000"],["2024-07-24T10:54:45.010000"],["2024-07-24T10:54:46.010000"],["2024-07-24T10:54:47.010000"],["2024-07-24T10:54:48.010000"],["2024-07-24T10:54:49.010000"],["2024-07-24T10:54:50.010000"],["2024-07-24T10:54:51.010000"],["2024-07-24T10:54:52.010000"],["2024-07-24T10:54:53.010000"],["2024-07-24T10:54:54.010000"],["2024-07-24T10:54:55.010000"],["2024-07-24T10:54:56.010000"],["2024-07-24T10:54:57.010000"],["2024-07-24T10:54:58.010000"],["2024-07-24T10:54:59.010000"],["2024-07-24T10:55:00.010000"],["2024-07-24T10:55:01.010000"],["2024-07-24T10:55:02.010000"],["2024-07-24T10:55:03.010000"],["2024-07-24T10:55:04.010000"],["2024-07-24T10:55:05.010000"],["2024-07-24T10:55:06.010000"],["2024-07-24T10:55:07.010000"],["2024-07-24T10:55:08.010000"],["2024-07-24T10:55:09.010000"],["2024-07-24T10:55:10.010000"],["2024-07-24T10:55:11.010000"],["2024-07-24T10:55:12.010000"],["2024-07-24T10:55:13.010000"],["2024-07-24T10:55:14.010000"],["2024-07-24T10:55:15.010000"],["2024-07-24T10:55:16.010000"],["2024-07-24T10:55:17.010000"],["2024-07-24T10:55:18.010000"],["2024-07-24T10:55:19.010000"],["2024-07-24T10:55:20.010000"],["2024-07-24T10:55:21.010000"],["2024-07-24T10:55:22.010000"],["2024-07-24T10:55:23.010000"],["2024-07-24T10:55:24.010000"],["2024-07-24T10:55:25.010000"],["2024-07-24T10:55:26.010000"],["2024-07-24T10:55:27.010000"],["2024-07-24T10:55:28.010000"],["2024-07-24T10:55:29.010000"],["2024-07-24T10:55:30.010000"],["2024-07-24T10:55:31.010000"],["2024-07-24T10:55:32.010000"],["2024-07-24T10:55:33.010000"],["2024-07-24T10:55:34.010000"],["2024-07-24T10:55:35.010000"],["2024-07-24T10:55:36.010000"],["2024-07-24T10:55:37.010000"],["2024-07-24T10:55:38.010000"],["2024-07-24T10:55:39.010000"],["2024-07-24T10:55:40.010000"],["2024-07-24T10:55:41.010000"],["2024-07-24T10:55:42.010000"],["2024-07-24T10:55:43.010000"],["2024-07-24T10:55:44.010000"],["2024-07-24T10:55:45.010000"],["2024-07-24T10:55:46.010000"],["2024-07-24T10:55:47.010000"],["2024-07-24T10:55:48.010000"],["2024-07-24T10:55:49.010000"],["2024-07-24T10:55:50.010000"],["2024-07-24T10:55:51.010000"],["2024-07-24T10:55:52.010000"],["2024-07-24T10:55:53.010000"],["2024-07-24T10:55:54.010000"],["2024-07-24T10:55:55.010000"],["2024-07-24T10:55:56.010000"],["2024-07-24T10:55:57.010000"],["2024-07-24T10:55:58.010000"],["2024-07-24T10:55:59.010000"],["2024-07-24T10:56:00.010000"],["2024-07-24T10:56:01.010000"],["2024-07-24T10:56:02.010000"],["2024-07-24T10:56:03.010000"],["2024-07-24T10:56:04.010000"],["2024-07-24T10:56:05.010000"],["2024-07-24T10:56:06.010000"],["2024-07-24T10:56:07.010000"],["2024-07-24T10:56:08.010000"],["2024-07-24T10:56:09.010000"],["2024-07-24T10:56:10.010000"],["2024-07-24T10:56:11.010000"],["2024-07-24T10:56:12.010000"],["2024-07-24T10:56:13.010000"],["2024-07-24T10:56:14.010000"],["2024-07-24T10:56:15.010000"],["2024-07-24T10:56:16.010000"],["2024-07-24T10:56:17.010000"],["2024-07-24T10:56:18.010000"],["2024-07-24T10:56:19.010000"],["2024-07-24T10:56:20.010000"],["2024-07-24T10:56:21.010000"],["2024-07-24T10:56:22.010000"],["2024-07-24T10:56:23.010000"],["2024-07-24T10:56:24.010000"],["2024-07-24T10:56:25.010000"],["2024-07-24T10:56:26.010000"],["2024-07-24T10:56:27.010000"],["2024-07-24T10:56:28.010000"],["2024-07-24T10:56:29.010000"],["2024-07-24T10:56:30.010000"],["2024-07-24T10:56:31.010000"],["2024-07-24T10:56:32.010000"],["2024-07-24T10:56:33.010000"],["2024-07-24T10:56:34.010000"],["2024-07-24T10:56:35.010000"],["2024-07-24T10:56:36.010000"],["2024-07-24T10:56:37.010000"],["2024-07-24T10:56:38.010000"],["2024-07-24T10:56:39.010000"],["2024-07-24T10:56:40.010000"],["2024-07-24T10:56:41.010000"],["2024-07-24T10:56:42.010000"],["2024-07-24T10:56:43.010000"],["2024-07-24T10:56:44.010000"],["2024-07-24T10:56:45.010000"],["2024-07-24T10:56:46.010000"],["2024-07-24T10:56:47.010000"],["2024-07-24T10:56:48.010000"],["2024-07-24T10:56:49.010000"],["2024-07-24T10:56:50.010000"],["2024-07-24T10:56:51.010000"],["2024-07-24T10:56:52.010000"],["2024-07-24T10:56:53.010000"],["2024-07-24T10:56:54.010000"],["2024-07-24T10:56:55.010000"],["2024-07-24T10:56:56.010000"],["2024-07-24T10:56:57.010000"],["2024-07-24T10:56:58.010000"],["2024-07-24T10:56:59.010000"],["2024-07-24T10:57:00.010000"],["2024-07-24T10:57:01.010000"],["2024-07-24T10:57:02.010000"],["2024-07-24T10:57:03.010000"],["2024-07-24T10:57:04.010000"],["2024-07-24T10:57:05.010000"],["2024-07-24T10:57:06.010000"],["2024-07-24T10:57:07.010000"],["2024-07-24T10:57:08.010000"],["2024-07-24T10:57:09.010000"],["2024-07-24T10:57:10.010000"],["2024-07-24T10:57:11.010000"],["2024-07-24T10:57:12.010000"],["2024-07-24T10:57:13.010000"],["2024-07-24T10:57:14.010000"],["2024-07-24T10:57:15.010000"],["2024-07-24T10:57:16.010000"],["2024-07-24T10:57:17.010000"],["2024-07-24T10:57:18.010000"],["2024-07-24T10:57:19.010000"],["2024-07-24T10:57:20.010000"],["2024-07-24T10:57:21.010000"],["2024-07-24T10:57:22.010000"],["2024-07-24T10:57:23.010000"],["2024-07-24T10:57:24.010000"],["2024-07-24T10:57:25.010000"],["2024-07-24T10:57:26.010000"],["2024-07-24T10:57:27.010000"],["2024-07-24T10:57:28.010000"],["2024-07-24T10:57:29.010000"],["2024-07-24T10:57:30.010000"],["2024-07-24T10:57:31.010000"],["2024-07-24T10:57:32.010000"],["2024-07-24T10:57:33.010000"],["2024-07-24T10:57:34.010000"],["2024-07-24T10:57:35.010000"],["2024-07-24T10:57:36.010000"],["2024-07-24T10:57:37.010000"],["2024-07-24T10:57:38.010000"],["2024-07-24T10:57:39.010000"],["2024-07-24T10:57:40.010000"],["2024-07-24T10:57:41.010000"],["2024-07-24T10:57:42.010000"],["2024-07-24T10:57:43.010000"],["2024-07-24T10:57:44.010000"],["2024-07-24T10:57:45.010000"],["2024-07-24T10:57:46.010000"],["2024-07-24T10:57:47.010000"],["2024-07-24T10:57:48.010000"],["2024-07-24T10:57:49.010000"],["2024-07-24T10:57:50.010000"],["2024-07-24T10:57:51.010000"],["2024-07-24T10:57:52.010000"],["2024-07-24T10:57:53.010000"],["2024-07-24T10:57:54.010000"],["2024-07-24T10:57:55.010000"],["2024-07-24T10:57:56.010000"],["2024-07-24T10:57:57.010000"],["2024-07-24T10:57:58.010000"],["2024-07-24T10:57:59.010000"],["2024-07-24T10:58:00.010000"],["2024-07-24T10:58:01.010000"],["2024-07-24T10:58:02.010000"],["2024-07-24T10:58:03.010000"],["2024-07-24T10:58:04.010000"],["2024-07-24T10:58:05.010000"],["2024-07-24T10:58:06.010000"],["2024-07-24T10:58:07.010000"],["2024-07-24T10:58:08.010000"],["2024-07-24T10:58:09.010000"],["2024-07-24T10:58:10.010000"],["2024-07-24T10:58:11.010000"],["2024-07-24T10:58:12.010000"],["2024-07-24T10:58:13.010000"],["2024-07-24T10:58:14.010000"],["2024-07-24T10:58:15.010000"],["2024-07-24T10:58:16.010000"],["2024-07-24T10:58:17.010000"],["2024-07-24T10:58:18.010000"],["2024-07-24T10:58:19.010000"],["2024-07-24T10:58:20.010000"],["2024-07-24T10:58:21.010000"],["2024-07-24T10:58:22.010000"],["2024-07-24T10:58:23.010000"],["2024-07-24T10:58:24.010000"],["2024-07-24T10:58:25.010000"],["2024-07-24T10:58:26.010000"],["2024-07-24T10:58:27.010000"],["2024-07-24T10:58:28.010000"],["2024-07-24T10:58:29.010000"],["2024-07-24T10:58:30.010000"],["2024-07-24T10:58:31.010000"],["2024-07-24T10:58:32.010000"],["2024-07-24T10:58:33.010000"],["2024-07-24T10:58:34.010000"],["2024-07-24T10:58:35.010000"],["2024-07-24T10:58:36.010000"],["2024-07-24T10:58:37.010000"],["2024-07-24T10:58:38.010000"],["2024-07-24T10:58:39.010000"],["2024-07-24T10:58:40.010000"],["2024-07-24T10:58:41.010000"],["2024-07-24T10:58:42.010000"],["2024-07-24T10:58:43.010000"],["2024-07-24T10:58:44.010000"],["2024-07-24T10:58:45.010000"],["2024-07-24T10:58:46.010000"],["2024-07-24T10:58:47.010000"],["2024-07-24T10:58:48.010000"],["2024-07-24T10:58:49.010000"],["2024-07-24T10:58:50.010000"],["2024-07-24T10:58:51.010000"],["2024-07-24T10:58:52.010000"],["2024-07-24T10:58:53.010000"],["2024-07-24T10:58:54.010000"],["2024-07-24T10:58:55.010000"],["2024-07-24T10:58:56.010000"],["2024-07-24T10:58:57.010000"],["2024-07-24T10:58:58.010000"],["2024-07-24T10:58:59.010000"],["2024-07-24T10:59:00.010000"],["2024-07-24T10:59:01.010000"],["2024-07-24T10:59:02.010000"],["2024-07-24T10:59:03.010000"],["2024-07-24T10:59:04.010000"],["2024-07-24T10:59:05.010000"],["2024-07-24T10:59:06.010000"],["2024-07-24T10:59:07.010000"],["2024-07-24T10:59:08.010000"],["2024-07-24T10:59:09.010000"],["2024-07-24T10:59:10.010000"],["2024-07-24T10:59:11.010000"],["2024-07-24T10:59:12.010000"],["2024-07-24T10:59:13.010000"],["2024-07-24T10:59:14.010000"],["2024-07-24T10:59:15.010000"],["2024-07-24T10:59:16.010000"],["2024-07-24T10:59:17.010000"],["2024-07-24T10:59:18.010000"],["2024-07-24T10:59:19.010000"],["2024-07-24T10:59:20.010000"],["2024-07-24T10:59:21.010000"],["2024-07-24T10:59:22.010000"],["2024-07-24T10:59:23.010000"],["2024-07-24T10:59:24.010000"],["2024-07-24T10:59:25.010000"],["2024-07-24T10:59:26.010000"],["2024-07-24T10:59:27.010000"],["2024-07-24T10:59:28.010000"],["2024-07-24T10:59:29.010000"],["2024-07-24T10:59:30.010000"],["2024-07-24T10:59:31.010000"],["2024-07-24T10:59:32.010000"],["2024-07-24T10:59:33.010000"],["2024-07-24T10:59:34.010000"],["2024-07-24T10:59:35.010000"],["2024-07-24T10:59:36.010000"],["2024-07-24T10:59:37.010000"],["2024-07-24T10:59:38.010000"],["2024-07-24T10:59:39.010000"],["2024-07-24T10:59:40.010000"],["2024-07-24T10:59:41.010000"],["2024-07-24T10:59:42.010000"],["2024-07-24T10:59:43.010000"],["2024-07-24T10:59:44.010000"],["2024-07-24T10:59:45.010000"],["2024-07-24T10:59:46.010000"],["2024-07-24T10:59:47.010000"],["2024-07-24T10:59:48.010000"],["2024-07-24T10:59:49.010000"],["2024-07-24T10:59:50.010000"],["2024-07-24T10:59:51.010000"],["2024-07-24T10:59:52.010000"],["2024-07-24T10:59:53.010000"],["2024-07-24T10:59:54.010000"],["2024-07-24T10:59:55.010000"],["2024-07-24T10:59:56.010000"],["2024-07-24T10:59:57.010000"],["2024-07-24T10:59:58.010000"],["2024-07-24T10:59:59.010000"],["2024-07-24T11:00:00.010000"],["2024-07-24T11:00:01.010000"],["2024-07-24T11:00:02.010000"],["2024-07-24T11:00:03.010000"],["2024-07-24T11:00:04.010000"],["2024-07-24T11:00:05.010000"],["2024-07-24T11:00:06.010000"],["2024-07-24T11:00:07.010000"],["2024-07-24T11:00:08.010000"],["2024-07-24T11:00:09.010000"],["2024-07-24T11:00:10.010000"],["2024-07-24T11:00:11.010000"],["2024-07-24T11:00:12.010000"],["2024-07-24T11:00:13.010000"],["2024-07-24T11:00:14.010000"],["2024-07-24T11:00:15.010000"],["2024-07-24T11:00:16.010000"],["2024-07-24T11:00:17.010000"],["2024-07-24T11:00:18.010000"],["2024-07-24T11:00:19.010000"],["2024-07-24T11:00:20.010000"],["2024-07-24T11:00:21.010000"],["2024-07-24T11:00:22.010000"],["2024-07-24T11:00:23.010000"],["2024-07-24T11:00:24.010000"],["2024-07-24T11:00:25.010000"],["2024-07-24T11:00:26.010000"],["2024-07-24T11:00:27.010000"],["2024-07-24T11:00:28.010000"],["2024-07-24T11:00:29.010000"],["2024-07-24T11:00:30.010000"],["2024-07-24T11:00:31.010000"],["2024-07-24T11:00:32.010000"],["2024-07-24T11:00:33.010000"],["2024-07-24T11:00:34.010000"],["2024-07-24T11:00:35.010000"],["2024-07-24T11:00:36.010000"],["2024-07-24T11:00:37.010000"],["2024-07-24T11:00:38.010000"],["2024-07-24T11:00:39.010000"],["2024-07-24T11:00:40.010000"],["2024-07-24T11:00:41.010000"],["2024-07-24T11:00:42.010000"],["2024-07-24T11:00:43.010000"],["2024-07-24T11:00:44.010000"],["2024-07-24T11:00:45.010000"],["2024-07-24T11:00:46.010000"],["2024-07-24T11:00:47.010000"],["2024-07-24T11:00:48.010000"],["2024-07-24T11:00:49.010000"],["2024-07-24T11:00:50.010000"],["2024-07-24T11:00:51.010000"],["2024-07-24T11:00:52.010000"],["2024-07-24T11:00:53.010000"],["2024-07-24T11:00:54.010000"],["2024-07-24T11:00:55.010000"],["2024-07-24T11:00:56.010000"],["2024-07-24T11:00:57.010000"],["2024-07-24T11:00:58.010000"],["2024-07-24T11:00:59.010000"],["2024-07-24T11:01:00.010000"],["2024-07-24T11:01:01.010000"],["2024-07-24T11:01:02.010000"],["2024-07-24T11:01:03.010000"],["2024-07-24T11:01:04.010000"],["2024-07-24T11:01:05.010000"],["2024-07-24T11:01:06.010000"],["2024-07-24T11:01:07.010000"],["2024-07-24T11:01:08.010000"],["2024-07-24T11:01:09.010000"],["2024-07-24T11:01:10.010000"],["2024-07-24T11:01:11.010000"],["2024-07-24T11:01:12.010000"],["2024-07-24T11:01:13.010000"],["2024-07-24T11:01:14.010000"],["2024-07-24T11:01:15.010000"],["2024-07-24T11:01:16.010000"],["2024-07-24T11:01:17.010000"],["2024-07-24T11:01:18.010000"],["2024-07-24T11:01:19.010000"],["2024-07-24T11:01:20.010000"],["2024-07-24T11:01:21.010000"],["2024-07-24T11:01:22.010000"],["2024-07-24T11:01:23.010000"],["2024-07-24T11:01:24.010000"],["2024-07-24T11:01:25.010000"],["2024-07-24T11:01:26.010000"],["2024-07-24T11:01:27.010000"],["2024-07-24T11:01:28.010000"],["2024-07-24T11:01:29.010000"],["2024-07-24T11:01:30.010000"],["2024-07-24T11:01:31.010000"],["2024-07-24T11:01:32.010000"],["2024-07-24T11:01:33.010000"],["2024-07-24T11:01:34.010000"],["2024-07-24T11:01:35.010000"],["2024-07-24T11:01:36.010000"],["2024-07-24T11:01:37.010000"],["2024-07-24T11:01:38.010000"],["2024-07-24T11:01:39.010000"],["2024-07-24T11:01:40.010000"],["2024-07-24T11:01:41.010000"],["2024-07-24T11:01:42.010000"],["2024-07-24T11:01:43.010000"],["2024-07-24T11:01:44.010000"],["2024-07-24T11:01:45.010000"],["2024-07-24T11:01:46.010000"],["2024-07-24T11:01:47.010000"],["2024-07-24T11:01:48.010000"],["2024-07-24T11:01:49.010000"],["2024-07-24T11:01:50.010000"],["2024-07-24T11:01:51.010000"],["2024-07-24T11:01:52.010000"],["2024-07-24T11:01:53.010000"],["2024-07-24T11:01:54.010000"],["2024-07-24T11:01:55.010000"],["2024-07-24T11:01:56.010000"],["2024-07-24T11:01:57.010000"],["2024-07-24T11:01:58.010000"],["2024-07-24T11:01:59.010000"],["2024-07-24T11:02:00.010000"],["2024-07-24T11:02:01.010000"],["2024-07-24T11:02:02.010000"],["2024-07-24T11:02:03.010000"],["2024-07-24T11:02:04.010000"],["2024-07-24T11:02:05.010000"],["2024-07-24T11:02:06.010000"],["2024-07-24T11:02:07.010000"],["2024-07-24T11:02:08.010000"],["2024-07-24T11:02:09.010000"],["2024-07-24T11:02:10.010000"],["2024-07-24T11:02:11.010000"],["2024-07-24T11:02:12.010000"],["2024-07-24T11:02:13.010000"],["2024-07-24T11:02:14.010000"],["2024-07-24T11:02:15.010000"],["2024-07-24T11:02:16.010000"],["2024-07-24T11:02:17.010000"],["2024-07-24T11:02:18.010000"],["2024-07-24T11:02:19.010000"],["2024-07-24T11:02:20.010000"],["2024-07-24T11:02:21.010000"],["2024-07-24T11:02:22.010000"],["2024-07-24T11:02:23.010000"],["2024-07-24T11:02:24.010000"],["2024-07-24T11:02:25.010000"],["2024-07-24T11:02:26.010000"],["2024-07-24T11:02:27.010000"],["2024-07-24T11:02:28.010000"],["2024-07-24T11:02:29.010000"],["2024-07-24T11:02:30.010000"],["2024-07-24T11:02:31.010000"],["2024-07-24T11:02:32.010000"],["2024-07-24T11:02:33.010000"],["2024-07-24T11:02:34.010000"],["2024-07-24T11:02:35.010000"],["2024-07-24T11:02:36.010000"],["2024-07-24T11:02:37.010000"],["2024-07-24T11:02:38.010000"],["2024-07-24T11:02:39.010000"],["2024-07-24T11:02:40.010000"],["2024-07-24T11:02:41.010000"],["2024-07-24T11:02:42.010000"],["2024-07-24T11:02:43.010000"],["2024-07-24T11:02:44.010000"],["2024-07-24T11:02:45.010000"],["2024-07-24T11:02:46.010000"],["2024-07-24T11:02:47.010000"],["2024-07-24T11:02:48.010000"],["2024-07-24T11:02:49.010000"],["2024-07-24T11:02:50.010000"],["2024-07-24T11:02:51.010000"],["2024-07-24T11:02:52.010000"],["2024-07-24T11:02:53.010000"],["2024-07-24T11:02:54.010000"],["2024-07-24T11:02:55.010000"],["2024-07-24T11:02:56.010000"],["2024-07-24T11:02:57.010000"],["2024-07-24T11:02:58.010000"],["2024-07-24T11:02:59.010000"],["2024-07-24T11:03:00.010000"],["2024-07-24T11:03:01.010000"],["2024-07-24T11:03:02.010000"],["2024-07-24T11:03:03.010000"],["2024-07-24T11:03:04.010000"],["2024-07-24T11:03:05.010000"],["2024-07-24T11:03:06.010000"],["2024-07-24T11:03:07.010000"],["2024-07-24T11:03:08.010000"],["2024-07-24T11:03:09.010000"],["2024-07-24T11:03:10.010000"],["2024-07-24T11:03:11.010000"],["2024-07-24T11:03:12.010000"],["2024-07-24T11:03:13.010000"],["2024-07-24T11:03:14.010000"],["2024-07-24T11:03:15.010000"],["2024-07-24T11:03:16.010000"],["2024-07-24T11:03:17.010000"],["2024-07-24T11:03:18.010000"],["2024-07-24T11:03:19.010000"],["2024-07-24T11:03:20.010000"],["2024-07-24T11:03:21.010000"],["2024-07-24T11:03:22.010000"],["2024-07-24T11:03:23.010000"],["2024-07-24T11:03:24.010000"],["2024-07-24T11:03:25.010000"],["2024-07-24T11:03:26.010000"],["2024-07-24T11:03:27.010000"],["2024-07-24T11:03:28.010000"],["2024-07-24T11:03:29.010000"],["2024-07-24T11:03:30.010000"],["2024-07-24T11:03:31.010000"],["2024-07-24T11:03:32.010000"],["2024-07-24T11:03:33.010000"],["2024-07-24T11:03:34.010000"],["2024-07-24T11:03:35.010000"],["2024-07-24T11:03:36.010000"],["2024-07-24T11:03:37.010000"],["2024-07-24T11:03:38.010000"],["2024-07-24T11:03:39.010000"],["2024-07-24T11:03:40.010000"],["2024-07-24T11:03:41.010000"],["2024-07-24T11:03:42.010000"],["2024-07-24T11:03:43.010000"],["2024-07-24T11:03:44.010000"],["2024-07-24T11:03:45.010000"],["2024-07-24T11:03:46.010000"],["2024-07-24T11:03:47.010000"],["2024-07-24T11:03:48.010000"],["2024-07-24T11:03:49.010000"],["2024-07-24T11:03:50.010000"],["2024-07-24T11:03:51.010000"],["2024-07-24T11:03:52.010000"],["2024-07-24T11:03:53.010000"],["2024-07-24T11:03:54.010000"],["2024-07-24T11:03:55.010000"],["2024-07-24T11:03:56.010000"],["2024-07-24T11:03:57.010000"],["2024-07-24T11:03:58.010000"],["2024-07-24T11:03:59.010000"],["2024-07-24T11:04:00.010000"],["2024-07-24T11:04:01.010000"],["2024-07-24T11:04:02.010000"],["2024-07-24T11:04:03.010000"],["2024-07-24T11:04:04.010000"],["2024-07-24T11:04:05.010000"],["2024-07-24T11:04:06.010000"],["2024-07-24T11:04:07.010000"],["2024-07-24T11:04:08.010000"],["2024-07-24T11:04:09.010000"],["2024-07-24T11:04:10.010000"],["2024-07-24T11:04:11.010000"],["2024-07-24T11:04:12.010000"],["2024-07-24T11:04:13.010000"],["2024-07-24T11:04:14.010000"],["2024-07-24T11:04:15.010000"],["2024-07-24T11:04:16.010000"],["2024-07-24T11:04:17.010000"],["2024-07-24T11:04:18.010000"],["2024-07-24T11:04:19.010000"],["2024-07-24T11:04:20.010000"],["2024-07-24T11:04:21.010000"],["2024-07-24T11:04:22.010000"],["2024-07-24T11:04:23.010000"],["2024-07-24T11:04:24.010000"],["2024-07-24T11:04:25.010000"],["2024-07-24T11:04:26.010000"],["2024-07-24T11:04:27.010000"],["2024-07-24T11:04:28.010000"],["2024-07-24T11:04:29.010000"],["2024-07-24T11:04:30.010000"],["2024-07-24T11:04:31.010000"],["2024-07-24T11:04:32.010000"],["2024-07-24T11:04:33.010000"],["2024-07-24T11:04:34.010000"],["2024-07-24T11:04:35.010000"],["2024-07-24T11:04:36.010000"],["2024-07-24T11:04:37.010000"],["2024-07-24T11:04:38.010000"],["2024-07-24T11:04:39.010000"],["2024-07-24T11:04:40.010000"],["2024-07-24T11:04:41.010000"],["2024-07-24T11:04:42.010000"],["2024-07-24T11:04:43.010000"],["2024-07-24T11:04:44.010000"],["2024-07-24T11:04:45.010000"],["2024-07-24T11:04:46.010000"],["2024-07-24T11:04:47.010000"],["2024-07-24T11:04:48.010000"],["2024-07-24T11:04:49.010000"],["2024-07-24T11:04:50.010000"],["2024-07-24T11:04:51.010000"],["2024-07-24T11:04:52.010000"],["2024-07-24T11:04:53.010000"],["2024-07-24T11:04:54.010000"],["2024-07-24T11:04:55.010000"],["2024-07-24T11:04:56.010000"],["2024-07-24T11:04:57.010000"],["2024-07-24T11:04:58.010000"],["2024-07-24T11:04:59.010000"],["2024-07-24T11:05:00.010000"],["2024-07-24T11:05:01.010000"],["2024-07-24T11:05:02.010000"],["2024-07-24T11:05:03.010000"],["2024-07-24T11:05:04.010000"],["2024-07-24T11:05:05.010000"],["2024-07-24T11:05:06.010000"],["2024-07-24T11:05:07.010000"],["2024-07-24T11:05:08.010000"],["2024-07-24T11:05:09.010000"],["2024-07-24T11:05:10.010000"],["2024-07-24T11:05:11.010000"],["2024-07-24T11:05:12.010000"],["2024-07-24T11:05:13.010000"],["2024-07-24T11:05:14.010000"],["2024-07-24T11:05:15.010000"],["2024-07-24T11:05:16.010000"],["2024-07-24T11:05:17.010000"],["2024-07-24T11:05:18.010000"],["2024-07-24T11:05:19.010000"],["2024-07-24T11:05:20.010000"],["2024-07-24T11:05:21.010000"],["2024-07-24T11:05:22.010000"],["2024-07-24T11:05:23.010000"],["2024-07-24T11:05:24.010000"],["2024-07-24T11:05:25.010000"],["2024-07-24T11:05:26.010000"],["2024-07-24T11:05:27.010000"],["2024-07-24T11:05:28.010000"],["2024-07-24T11:05:29.010000"],["2024-07-24T11:05:30.010000"],["2024-07-24T11:05:31.010000"],["2024-07-24T11:05:32.010000"],["2024-07-24T11:05:33.010000"],["2024-07-24T11:05:34.010000"],["2024-07-24T11:05:35.010000"],["2024-07-24T11:05:36.010000"],["2024-07-24T11:05:37.010000"],["2024-07-24T11:05:38.010000"],["2024-07-24T11:05:39.010000"],["2024-07-24T11:05:40.010000"],["2024-07-24T11:05:41.010000"],["2024-07-24T11:05:42.010000"],["2024-07-24T11:05:43.010000"],["2024-07-24T11:05:44.010000"],["2024-07-24T11:05:45.010000"],["2024-07-24T11:05:46.010000"],["2024-07-24T11:05:47.010000"],["2024-07-24T11:05:48.010000"],["2024-07-24T11:05:49.010000"],["2024-07-24T11:05:50.010000"],["2024-07-24T11:05:51.010000"],["2024-07-24T11:05:52.010000"],["2024-07-24T11:05:53.010000"],["2024-07-24T11:05:54.010000"],["2024-07-24T11:05:55.010000"],["2024-07-24T11:05:56.010000"],["2024-07-24T11:05:57.010000"],["2024-07-24T11:05:58.010000"],["2024-07-24T11:05:59.010000"],["2024-07-24T11:06:00.010000"],["2024-07-24T11:06:01.010000"],["2024-07-24T11:06:02.010000"],["2024-07-24T11:06:03.010000"],["2024-07-24T11:06:04.010000"],["2024-07-24T11:06:05.010000"],["2024-07-24T11:06:06.010000"],["2024-07-24T11:06:07.010000"],["2024-07-24T11:06:08.010000"],["2024-07-24T11:06:09.010000"],["2024-07-24T11:06:10.010000"],["2024-07-24T11:06:11.010000"],["2024-07-24T11:06:12.010000"],["2024-07-24T11:06:13.010000"],["2024-07-24T11:06:14.010000"],["2024-07-24T11:06:15.010000"],["2024-07-24T11:06:16.010000"],["2024-07-24T11:06:17.010000"],["2024-07-24T11:06:18.010000"],["2024-07-24T11:06:19.010000"],["2024-07-24T11:06:20.010000"],["2024-07-24T11:06:21.010000"],["2024-07-24T11:06:22.010000"],["2024-07-24T11:06:23.010000"],["2024-07-24T11:06:24.010000"],["2024-07-24T11:06:25.010000"],["2024-07-24T11:06:26.010000"],["2024-07-24T11:06:27.010000"],["2024-07-24T11:06:28.010000"],["2024-07-24T11:06:29.010000"],["2024-07-24T11:06:30.010000"],["2024-07-24T11:06:31.010000"],["2024-07-24T11:06:32.010000"],["2024-07-24T11:06:33.010000"],["2024-07-24T11:06:34.010000"],["2024-07-24T11:06:35.010000"],["2024-07-24T11:06:36.010000"],["2024-07-24T11:06:37.010000"],["2024-07-24T11:06:38.010000"],["2024-07-24T11:06:39.010000"],["2024-07-24T11:06:40.010000"],["2024-07-24T11:06:41.010000"],["2024-07-24T11:06:42.010000"],["2024-07-24T11:06:43.010000"],["2024-07-24T11:06:44.010000"],["2024-07-24T11:06:45.010000"],["2024-07-24T11:06:46.010000"],["2024-07-24T11:06:47.010000"],["2024-07-24T11:06:48.010000"],["2024-07-24T11:06:49.010000"],["2024-07-24T11:06:50.010000"],["2024-07-24T11:06:51.010000"],["2024-07-24T11:06:52.010000"],["2024-07-24T11:06:53.010000"],["2024-07-24T11:06:54.010000"],["2024-07-24T11:06:55.010000"],["2024-07-24T11:06:56.010000"],["2024-07-24T11:06:57.010000"],["2024-07-24T11:06:58.010000"],["2024-07-24T11:06:59.010000"],["2024-07-24T11:07:00.010000"],["2024-07-24T11:07:01.010000"],["2024-07-24T11:07:02.010000"],["2024-07-24T11:07:03.010000"],["2024-07-24T11:07:04.010000"],["2024-07-24T11:07:05.010000"],["2024-07-24T11:07:06.010000"],["2024-07-24T11:07:07.010000"],["2024-07-24T11:07:08.010000"],["2024-07-24T11:07:09.010000"],["2024-07-24T11:07:10.010000"],["2024-07-24T11:07:11.010000"],["2024-07-24T11:07:12.010000"],["2024-07-24T11:07:13.010000"],["2024-07-24T11:07:14.010000"],["2024-07-24T11:07:15.010000"],["2024-07-24T11:07:16.010000"],["2024-07-24T11:07:17.010000"],["2024-07-24T11:07:18.010000"],["2024-07-24T11:07:19.010000"],["2024-07-24T11:07:20.010000"],["2024-07-24T11:07:21.010000"],["2024-07-24T11:07:22.010000"],["2024-07-24T11:07:23.010000"],["2024-07-24T11:07:24.010000"],["2024-07-24T11:07:25.010000"],["2024-07-24T11:07:26.010000"],["2024-07-24T11:07:27.010000"],["2024-07-24T11:07:28.010000"],["2024-07-24T11:07:29.010000"],["2024-07-24T11:07:30.010000"],["2024-07-24T11:07:31.010000"],["2024-07-24T11:07:32.010000"],["2024-07-24T11:07:33.010000"],["2024-07-24T11:07:34.010000"],["2024-07-24T11:07:35.010000"],["2024-07-24T11:07:36.010000"],["2024-07-24T11:07:37.010000"],["2024-07-24T11:07:38.010000"],["2024-07-24T11:07:39.010000"],["2024-07-24T11:07:40.010000"],["2024-07-24T11:07:41.010000"],["2024-07-24T11:07:42.010000"],["2024-07-24T11:07:43.010000"],["2024-07-24T11:07:44.010000"],["2024-07-24T11:07:45.010000"],["2024-07-24T11:07:46.010000"],["2024-07-24T11:07:47.010000"],["2024-07-24T11:07:48.010000"],["2024-07-24T11:07:49.010000"],["2024-07-24T11:07:50.010000"],["2024-07-24T11:07:51.010000"],["2024-07-24T11:07:52.010000"],["2024-07-24T11:07:53.010000"],["2024-07-24T11:07:54.010000"],["2024-07-24T11:07:55.010000"],["2024-07-24T11:07:56.010000"],["2024-07-24T11:07:57.010000"],["2024-07-24T11:07:58.010000"],["2024-07-24T11:07:59.010000"],["2024-07-24T11:08:00.010000"],["2024-07-24T11:08:01.010000"],["2024-07-24T11:08:02.010000"],["2024-07-24T11:08:03.010000"],["2024-07-24T11:08:04.010000"],["2024-07-24T11:08:05.010000"],["2024-07-24T11:08:06.010000"],["2024-07-24T11:08:07.010000"],["2024-07-24T11:08:08.010000"],["2024-07-24T11:08:09.010000"],["2024-07-24T11:08:10.010000"],["2024-07-24T11:08:11.010000"],["2024-07-24T11:08:12.010000"],["2024-07-24T11:08:13.010000"],["2024-07-24T11:08:14.010000"],["2024-07-24T11:08:15.010000"],["2024-07-24T11:08:16.010000"],["2024-07-24T11:08:17.010000"],["2024-07-24T11:08:18.010000"],["2024-07-24T11:08:19.010000"],["2024-07-24T11:08:20.010000"],["2024-07-24T11:08:21.010000"],["2024-07-24T11:08:22.010000"],["2024-07-24T11:08:23.010000"],["2024-07-24T11:08:24.010000"],["2024-07-24T11:08:25.010000"],["2024-07-24T11:08:26.010000"],["2024-07-24T11:08:27.010000"],["2024-07-24T11:08:28.010000"],["2024-07-24T11:08:29.010000"],["2024-07-24T11:08:30.010000"],["2024-07-24T11:08:31.010000"],["2024-07-24T11:08:32.010000"],["2024-07-24T11:08:33.010000"],["2024-07-24T11:08:34.010000"],["2024-07-24T11:08:35.010000"],["2024-07-24T11:08:36.010000"],["2024-07-24T11:08:37.010000"],["2024-07-24T11:08:38.010000"],["2024-07-24T11:08:39.010000"],["2024-07-24T11:08:40.010000"],["2024-07-24T11:08:41.010000"],["2024-07-24T11:08:42.010000"],["2024-07-24T11:08:43.010000"],["2024-07-24T11:08:44.010000"],["2024-07-24T11:08:45.010000"],["2024-07-24T11:08:46.010000"],["2024-07-24T11:08:47.010000"],["2024-07-24T11:08:48.010000"],["2024-07-24T11:08:49.010000"],["2024-07-24T11:08:50.010000"],["2024-07-24T11:08:51.010000"],["2024-07-24T11:08:52.010000"],["2024-07-24T11:08:53.010000"],["2024-07-24T11:08:54.010000"],["2024-07-24T11:08:55.010000"],["2024-07-24T11:08:56.010000"],["2024-07-24T11:08:57.010000"],["2024-07-24T11:08:58.010000"],["2024-07-24T11:08:59.010000"],["2024-07-24T11:09:00.010000"],["2024-07-24T11:09:01.010000"],["2024-07-24T11:09:02.010000"],["2024-07-24T11:09:03.010000"],["2024-07-24T11:09:04.010000"],["2024-07-24T11:09:05.010000"],["2024-07-24T11:09:06.010000"],["2024-07-24T11:09:07.010000"],["2024-07-24T11:09:08.010000"],["2024-07-24T11:09:09.010000"],["2024-07-24T11:09:10.010000"],["2024-07-24T11:09:11.010000"],["2024-07-24T11:09:12.010000"],["2024-07-24T11:09:13.010000"],["2024-07-24T11:09:14.010000"],["2024-07-24T11:09:15.010000"],["2024-07-24T11:09:16.010000"],["2024-07-24T11:09:17.010000"],["2024-07-24T11:09:18.010000"],["2024-07-24T11:09:19.010000"],["2024-07-24T11:09:20.010000"],["2024-07-24T11:09:21.010000"],["2024-07-24T11:09:22.010000"],["2024-07-24T11:09:23.010000"],["2024-07-24T11:09:24.010000"],["2024-07-24T11:09:25.010000"],["2024-07-24T11:09:26.010000"],["2024-07-24T11:09:27.010000"],["2024-07-24T11:09:28.010000"],["2024-07-24T11:09:29.010000"],["2024-07-24T11:09:30.010000"],["2024-07-24T11:09:31.010000"],["2024-07-24T11:09:32.010000"],["2024-07-24T11:09:33.010000"],["2024-07-24T11:09:34.010000"],["2024-07-24T11:09:35.010000"],["2024-07-24T11:09:36.010000"],["2024-07-24T11:09:37.010000"],["2024-07-24T11:09:38.010000"],["2024-07-24T11:09:39.010000"],["2024-07-24T11:09:40.010000"],["2024-07-24T11:09:41.010000"],["2024-07-24T11:09:42.010000"],["2024-07-24T11:09:43.010000"],["2024-07-24T11:09:44.010000"],["2024-07-24T11:09:45.010000"],["2024-07-24T11:09:46.010000"],["2024-07-24T11:09:47.010000"],["2024-07-24T11:09:48.010000"],["2024-07-24T11:09:49.010000"],["2024-07-24T11:09:50.010000"],["2024-07-24T11:09:51.010000"],["2024-07-24T11:09:52.010000"],["2024-07-24T11:09:53.010000"],["2024-07-24T11:09:54.010000"],["2024-07-24T11:09:55.010000"],["2024-07-24T11:09:56.010000"],["2024-07-24T11:09:57.010000"],["2024-07-24T11:09:58.010000"],["2024-07-24T11:09:59.010000"],["2024-07-24T11:10:00.010000"],["2024-07-24T11:10:01.010000"],["2024-07-24T11:10:02.010000"],["2024-07-24T11:10:03.010000"],["2024-07-24T11:10:04.010000"],["2024-07-24T11:10:05.010000"],["2024-07-24T11:10:06.010000"],["2024-07-24T11:10:07.010000"],["2024-07-24T11:10:08.010000"],["2024-07-24T11:10:09.010000"],["2024-07-24T11:10:10.010000"],["2024-07-24T11:10:11.010000"],["2024-07-24T11:10:12.010000"],["2024-07-24T11:10:13.010000"],["2024-07-24T11:10:14.010000"],["2024-07-24T11:10:15.010000"],["2024-07-24T11:10:16.010000"],["2024-07-24T11:10:17.010000"],["2024-07-24T11:10:18.010000"],["2024-07-24T11:10:19.010000"],["2024-07-24T11:10:20.010000"],["2024-07-24T11:10:21.010000"],["2024-07-24T11:10:22.010000"],["2024-07-24T11:10:23.010000"],["2024-07-24T11:10:24.010000"],["2024-07-24T11:10:25.010000"],["2024-07-24T11:10:26.010000"],["2024-07-24T11:10:27.010000"],["2024-07-24T11:10:28.010000"],["2024-07-24T11:10:29.010000"],["2024-07-24T11:10:30.010000"],["2024-07-24T11:10:31.010000"],["2024-07-24T11:10:32.010000"],["2024-07-24T11:10:33.010000"],["2024-07-24T11:10:34.010000"],["2024-07-24T11:10:35.010000"],["2024-07-24T11:10:36.010000"],["2024-07-24T11:10:37.010000"],["2024-07-24T11:10:38.010000"],["2024-07-24T11:10:39.010000"],["2024-07-24T11:10:40.010000"],["2024-07-24T11:10:41.010000"],["2024-07-24T11:10:42.010000"],["2024-07-24T11:10:43.010000"],["2024-07-24T11:10:44.010000"],["2024-07-24T11:10:45.010000"],["2024-07-24T11:10:46.010000"],["2024-07-24T11:10:47.010000"],["2024-07-24T11:10:48.010000"],["2024-07-24T11:10:49.010000"],["2024-07-24T11:10:50.010000"],["2024-07-24T11:10:51.010000"],["2024-07-24T11:10:52.010000"],["2024-07-24T11:10:53.010000"],["2024-07-24T11:10:54.010000"],["2024-07-24T11:10:55.010000"],["2024-07-24T11:10:56.010000"],["2024-07-24T11:10:57.010000"],["2024-07-24T11:10:58.010000"],["2024-07-24T11:10:59.010000"],["2024-07-24T11:11:00.010000"],["2024-07-24T11:11:01.010000"],["2024-07-24T11:11:02.010000"],["2024-07-24T11:11:03.010000"],["2024-07-24T11:11:04.010000"],["2024-07-24T11:11:05.010000"],["2024-07-24T11:11:06.010000"],["2024-07-24T11:11:07.010000"],["2024-07-24T11:11:08.010000"],["2024-07-24T11:11:09.010000"],["2024-07-24T11:11:10.010000"],["2024-07-24T11:11:11.010000"],["2024-07-24T11:11:12.010000"],["2024-07-24T11:11:13.010000"],["2024-07-24T11:11:14.010000"],["2024-07-24T11:11:15.010000"],["2024-07-24T11:11:16.010000"],["2024-07-24T11:11:17.010000"],["2024-07-24T11:11:18.010000"],["2024-07-24T11:11:19.010000"],["2024-07-24T11:11:20.010000"],["2024-07-24T11:11:21.010000"],["2024-07-24T11:11:22.010000"],["2024-07-24T11:11:23.010000"],["2024-07-24T11:11:24.010000"],["2024-07-24T11:11:25.010000"],["2024-07-24T11:11:26.010000"],["2024-07-24T11:11:27.010000"],["2024-07-24T11:11:28.010000"],["2024-07-24T11:11:29.010000"],["2024-07-24T11:11:30.010000"],["2024-07-24T11:11:31.010000"],["2024-07-24T11:11:32.010000"],["2024-07-24T11:11:33.010000"],["2024-07-24T11:11:34.010000"],["2024-07-24T11:11:35.010000"],["2024-07-24T11:11:36.010000"],["2024-07-24T11:11:37.010000"],["2024-07-24T11:11:38.010000"],["2024-07-24T11:11:39.010000"],["2024-07-24T11:11:40.010000"],["2024-07-24T11:11:41.010000"],["2024-07-24T11:11:42.010000"],["2024-07-24T11:11:43.010000"],["2024-07-24T11:11:44.010000"],["2024-07-24T11:11:45.010000"],["2024-07-24T11:11:46.010000"],["2024-07-24T11:11:47.010000"],["2024-07-24T11:11:48.010000"],["2024-07-24T11:11:49.010000"],["2024-07-24T11:11:50.010000"],["2024-07-24T11:11:51.010000"],["2024-07-24T11:11:52.010000"],["2024-07-24T11:11:53.010000"],["2024-07-24T11:11:54.010000"],["2024-07-24T11:11:55.010000"],["2024-07-24T11:11:56.010000"],["2024-07-24T11:11:57.010000"],["2024-07-24T11:11:58.010000"],["2024-07-24T11:11:59.010000"],["2024-07-24T11:12:00.010000"],["2024-07-24T11:12:01.010000"],["2024-07-24T11:12:02.010000"],["2024-07-24T11:12:03.010000"],["2024-07-24T11:12:04.010000"],["2024-07-24T11:12:05.010000"],["2024-07-24T11:12:06.010000"],["2024-07-24T11:12:07.010000"],["2024-07-24T11:12:08.010000"],["2024-07-24T11:12:09.010000"],["2024-07-24T11:12:10.010000"],["2024-07-24T11:12:11.010000"],["2024-07-24T11:12:12.010000"],["2024-07-24T11:12:13.010000"],["2024-07-24T11:12:14.010000"],["2024-07-24T11:12:15.010000"],["2024-07-24T11:12:16.010000"],["2024-07-24T11:12:17.010000"],["2024-07-24T11:12:18.010000"],["2024-07-24T11:12:19.010000"],["2024-07-24T11:12:20.010000"],["2024-07-24T11:12:21.010000"],["2024-07-24T11:12:22.010000"],["2024-07-24T11:12:23.010000"],["2024-07-24T11:12:24.010000"],["2024-07-24T11:12:25.010000"],["2024-07-24T11:12:26.010000"],["2024-07-24T11:12:27.010000"],["2024-07-24T11:12:28.010000"],["2024-07-24T11:12:29.010000"],["2024-07-24T11:12:30.010000"],["2024-07-24T11:12:31.010000"],["2024-07-24T11:12:32.010000"],["2024-07-24T11:12:33.010000"],["2024-07-24T11:12:34.010000"],["2024-07-24T11:12:35.010000"],["2024-07-24T11:12:36.010000"],["2024-07-24T11:12:37.010000"],["2024-07-24T11:12:38.010000"],["2024-07-24T11:12:39.010000"],["2024-07-24T11:12:40.010000"],["2024-07-24T11:12:41.010000"],["2024-07-24T11:12:42.010000"],["2024-07-24T11:12:43.010000"],["2024-07-24T11:12:44.010000"],["2024-07-24T11:12:45.010000"],["2024-07-24T11:12:46.010000"],["2024-07-24T11:12:47.010000"],["2024-07-24T11:12:48.010000"],["2024-07-24T11:12:49.010000"],["2024-07-24T11:12:50.010000"],["2024-07-24T11:12:51.010000"],["2024-07-24T11:12:52.010000"],["2024-07-24T11:12:53.010000"],["2024-07-24T11:12:54.010000"],["2024-07-24T11:12:55.010000"],["2024-07-24T11:12:56.010000"],["2024-07-24T11:12:57.010000"],["2024-07-24T11:12:58.010000"],["2024-07-24T11:12:59.010000"],["2024-07-24T11:13:00.010000"],["2024-07-24T11:13:01.010000"],["2024-07-24T11:13:02.010000"],["2024-07-24T11:13:03.010000"],["2024-07-24T11:13:04.010000"],["2024-07-24T11:13:05.010000"],["2024-07-24T11:13:06.010000"],["2024-07-24T11:13:07.010000"],["2024-07-24T11:13:08.010000"],["2024-07-24T11:13:09.010000"],["2024-07-24T11:13:10.010000"],["2024-07-24T11:13:11.010000"],["2024-07-24T11:13:12.010000"],["2024-07-24T11:13:13.010000"],["2024-07-24T11:13:14.010000"],["2024-07-24T11:13:15.010000"],["2024-07-24T11:13:16.010000"],["2024-07-24T11:13:17.010000"],["2024-07-24T11:13:18.010000"],["2024-07-24T11:13:19.010000"],["2024-07-24T11:13:20.010000"],["2024-07-24T11:13:21.010000"],["2024-07-24T11:13:22.010000"],["2024-07-24T11:13:23.010000"],["2024-07-24T11:13:24.010000"],["2024-07-24T11:13:25.010000"],["2024-07-24T11:13:26.010000"],["2024-07-24T11:13:27.010000"],["2024-07-24T11:13:28.010000"],["2024-07-24T11:13:29.010000"],["2024-07-24T11:13:30.010000"],["2024-07-24T11:13:31.010000"],["2024-07-24T11:13:32.010000"],["2024-07-24T11:13:33.010000"],["2024-07-24T11:13:34.010000"],["2024-07-24T11:13:35.010000"],["2024-07-24T11:13:36.010000"],["2024-07-24T11:13:37.010000"],["2024-07-24T11:13:38.010000"],["2024-07-24T11:13:39.010000"],["2024-07-24T11:13:40.010000"],["2024-07-24T11:13:41.010000"],["2024-07-24T11:13:42.010000"],["2024-07-24T11:13:43.010000"],["2024-07-24T11:13:44.010000"],["2024-07-24T11:13:45.010000"],["2024-07-24T11:13:46.010000"],["2024-07-24T11:13:47.010000"],["2024-07-24T11:13:48.010000"],["2024-07-24T11:13:49.010000"],["2024-07-24T11:13:50.010000"],["2024-07-24T11:13:51.010000"],["2024-07-24T11:13:52.010000"],["2024-07-24T11:13:53.010000"],["2024-07-24T11:13:54.010000"],["2024-07-24T11:13:55.010000"],["2024-07-24T11:13:56.010000"],["2024-07-24T11:13:57.010000"],["2024-07-24T11:13:58.010000"],["2024-07-24T11:13:59.010000"],["2024-07-24T11:14:00.010000"],["2024-07-24T11:14:01.010000"],["2024-07-24T11:14:02.010000"],["2024-07-24T11:14:03.010000"],["2024-07-24T11:14:04.010000"],["2024-07-24T11:14:05.010000"],["2024-07-24T11:14:06.010000"],["2024-07-24T11:14:07.010000"],["2024-07-24T11:14:08.010000"],["2024-07-24T11:14:09.010000"],["2024-07-24T11:14:10.010000"],["2024-07-24T11:14:11.010000"],["2024-07-24T11:14:12.010000"],["2024-07-24T11:14:13.010000"],["2024-07-24T11:14:14.010000"],["2024-07-24T11:14:15.010000"],["2024-07-24T11:14:16.010000"],["2024-07-24T11:14:17.010000"],["2024-07-24T11:14:18.010000"],["2024-07-24T11:14:19.010000"],["2024-07-24T11:14:20.010000"],["2024-07-24T11:14:21.010000"],["2024-07-24T11:14:22.010000"],["2024-07-24T11:14:23.010000"],["2024-07-24T11:14:24.010000"],["2024-07-24T11:14:25.010000"],["2024-07-24T11:14:26.010000"],["2024-07-24T11:14:27.010000"],["2024-07-24T11:14:28.010000"],["2024-07-24T11:14:29.010000"],["2024-07-24T11:14:30.010000"],["2024-07-24T11:14:31.010000"],["2024-07-24T11:14:32.010000"],["2024-07-24T11:14:33.010000"],["2024-07-24T11:14:34.010000"],["2024-07-24T11:14:35.010000"],["2024-07-24T11:14:36.010000"],["2024-07-24T11:14:37.010000"],["2024-07-24T11:14:38.010000"],["2024-07-24T11:14:39.010000"],["2024-07-24T11:14:40.010000"],["2024-07-24T11:14:41.010000"],["2024-07-24T11:14:42.010000"],["2024-07-24T11:14:43.010000"],["2024-07-24T11:14:44.010000"],["2024-07-24T11:14:45.010000"],["2024-07-24T11:14:46.010000"],["2024-07-24T11:14:47.010000"],["2024-07-24T11:14:48.010000"],["2024-07-24T11:14:49.010000"],["2024-07-24T11:14:50.010000"],["2024-07-24T11:14:51.010000"],["2024-07-24T11:14:52.010000"],["2024-07-24T11:14:53.010000"],["2024-07-24T11:14:54.010000"],["2024-07-24T11:14:55.010000"],["2024-07-24T11:14:56.010000"],["2024-07-24T11:14:57.010000"],["2024-07-24T11:14:58.010000"],["2024-07-24T11:14:59.010000"],["2024-07-24T11:15:00.010000"],["2024-07-24T11:15:01.010000"],["2024-07-24T11:15:02.010000"],["2024-07-24T11:15:03.010000"],["2024-07-24T11:15:04.010000"],["2024-07-24T11:15:05.010000"],["2024-07-24T11:15:06.010000"],["2024-07-24T11:15:07.010000"],["2024-07-24T11:15:08.010000"],["2024-07-24T11:15:09.010000"],["2024-07-24T11:15:10.010000"],["2024-07-24T11:15:11.010000"],["2024-07-24T11:15:12.010000"],["2024-07-24T11:15:13.010000"],["2024-07-24T11:15:14.010000"],["2024-07-24T11:15:15.010000"],["2024-07-24T11:15:16.010000"],["2024-07-24T11:15:17.010000"],["2024-07-24T11:15:18.010000"],["2024-07-24T11:15:19.010000"],["2024-07-24T11:15:20.010000"],["2024-07-24T11:15:21.010000"],["2024-07-24T11:15:22.010000"],["2024-07-24T11:15:23.010000"],["2024-07-24T11:15:24.010000"],["2024-07-24T11:15:25.010000"],["2024-07-24T11:15:26.010000"],["2024-07-24T11:15:27.010000"],["2024-07-24T11:15:28.010000"],["2024-07-24T11:15:29.010000"],["2024-07-24T11:15:30.010000"],["2024-07-24T11:15:31.010000"],["2024-07-24T11:15:32.010000"],["2024-07-24T11:15:33.010000"],["2024-07-24T11:15:34.010000"],["2024-07-24T11:15:35.010000"],["2024-07-24T11:15:36.010000"],["2024-07-24T11:15:37.010000"],["2024-07-24T11:15:38.010000"],["2024-07-24T11:15:39.010000"],["2024-07-24T11:15:40.010000"],["2024-07-24T11:15:41.010000"],["2024-07-24T11:15:42.010000"],["2024-07-24T11:15:43.010000"],["2024-07-24T11:15:44.010000"],["2024-07-24T11:15:45.010000"],["2024-07-24T11:15:46.010000"],["2024-07-24T11:15:47.010000"],["2024-07-24T11:15:48.010000"],["2024-07-24T11:15:49.010000"],["2024-07-24T11:15:50.010000"],["2024-07-24T11:15:51.010000"],["2024-07-24T11:15:52.010000"],["2024-07-24T11:15:53.010000"],["2024-07-24T11:15:54.010000"],["2024-07-24T11:15:55.010000"],["2024-07-24T11:15:56.010000"],["2024-07-24T11:15:57.010000"],["2024-07-24T11:15:58.010000"],["2024-07-24T11:15:59.010000"],["2024-07-24T11:16:00.010000"],["2024-07-24T11:16:01.010000"],["2024-07-24T11:16:02.010000"],["2024-07-24T11:16:03.010000"],["2024-07-24T11:16:04.010000"],["2024-07-24T11:16:05.010000"],["2024-07-24T11:16:06.010000"],["2024-07-24T11:16:07.010000"],["2024-07-24T11:16:08.010000"],["2024-07-24T11:16:09.010000"],["2024-07-24T11:16:10.010000"],["2024-07-24T11:16:11.010000"],["2024-07-24T11:16:12.010000"],["2024-07-24T11:16:13.010000"],["2024-07-24T11:16:14.010000"],["2024-07-24T11:16:15.010000"],["2024-07-24T11:16:16.010000"],["2024-07-24T11:16:17.010000"],["2024-07-24T11:16:18.010000"],["2024-07-24T11:16:19.010000"],["2024-07-24T11:16:20.010000"],["2024-07-24T11:16:21.010000"],["2024-07-24T11:16:22.010000"],["2024-07-24T11:16:23.010000"],["2024-07-24T11:16:24.010000"],["2024-07-24T11:16:25.010000"],["2024-07-24T11:16:26.010000"],["2024-07-24T11:16:27.010000"],["2024-07-24T11:16:28.010000"],["2024-07-24T11:16:29.010000"],["2024-07-24T11:16:30.010000"],["2024-07-24T11:16:31.010000"],["2024-07-24T11:16:32.010000"],["2024-07-24T11:16:33.010000"],["2024-07-24T11:16:34.010000"],["2024-07-24T11:16:35.010000"],["2024-07-24T11:16:36.010000"],["2024-07-24T11:16:37.010000"],["2024-07-24T11:16:38.010000"],["2024-07-24T11:16:39.010000"],["2024-07-24T11:16:40.010000"],["2024-07-24T11:16:41.010000"],["2024-07-24T11:16:42.010000"],["2024-07-24T11:16:43.010000"],["2024-07-24T11:16:44.010000"],["2024-07-24T11:16:45.010000"],["2024-07-24T11:16:46.010000"],["2024-07-24T11:16:47.010000"],["2024-07-24T11:16:48.010000"],["2024-07-24T11:16:49.010000"],["2024-07-24T11:16:50.010000"],["2024-07-24T11:16:51.010000"],["2024-07-24T11:16:52.010000"],["2024-07-24T11:16:53.010000"],["2024-07-24T11:16:54.010000"],["2024-07-24T11:16:55.010000"],["2024-07-24T11:16:56.010000"],["2024-07-24T11:16:57.010000"],["2024-07-24T11:16:58.010000"],["2024-07-24T11:16:59.010000"],["2024-07-24T11:17:00.010000"],["2024-07-24T11:17:01.010000"],["2024-07-24T11:17:02.010000"],["2024-07-24T11:17:03.010000"],["2024-07-24T11:17:04.010000"],["2024-07-24T11:17:05.010000"],["2024-07-24T11:17:06.010000"],["2024-07-24T11:17:07.010000"],["2024-07-24T11:17:08.010000"],["2024-07-24T11:17:09.010000"],["2024-07-24T11:17:10.010000"],["2024-07-24T11:17:11.010000"],["2024-07-24T11:17:12.010000"],["2024-07-24T11:17:13.010000"],["2024-07-24T11:17:14.010000"],["2024-07-24T11:17:15.010000"],["2024-07-24T11:17:16.010000"],["2024-07-24T11:17:17.010000"],["2024-07-24T11:17:18.010000"],["2024-07-24T11:17:19.010000"],["2024-07-24T11:17:20.010000"],["2024-07-24T11:17:21.010000"],["2024-07-24T11:17:22.010000"],["2024-07-24T11:17:23.010000"],["2024-07-24T11:17:24.010000"],["2024-07-24T11:17:25.010000"],["2024-07-24T11:17:26.010000"],["2024-07-24T11:17:27.010000"],["2024-07-24T11:17:28.010000"],["2024-07-24T11:17:29.010000"],["2024-07-24T11:17:30.010000"],["2024-07-24T11:17:31.010000"],["2024-07-24T11:17:32.010000"],["2024-07-24T11:17:33.010000"],["2024-07-24T11:17:34.010000"],["2024-07-24T11:17:35.010000"],["2024-07-24T11:17:36.010000"],["2024-07-24T11:17:37.010000"],["2024-07-24T11:17:38.010000"],["2024-07-24T11:17:39.010000"],["2024-07-24T11:17:40.010000"],["2024-07-24T11:17:41.010000"],["2024-07-24T11:17:42.010000"],["2024-07-24T11:17:43.010000"],["2024-07-24T11:17:44.010000"],["2024-07-24T11:17:45.010000"],["2024-07-24T11:17:46.010000"],["2024-07-24T11:17:47.010000"],["2024-07-24T11:17:48.010000"],["2024-07-24T11:17:49.010000"],["2024-07-24T11:17:50.010000"],["2024-07-24T11:17:51.010000"],["2024-07-24T11:17:52.010000"],["2024-07-24T11:17:53.010000"],["2024-07-24T11:17:54.010000"],["2024-07-24T11:17:55.010000"],["2024-07-24T11:17:56.010000"],["2024-07-24T11:17:57.010000"],["2024-07-24T11:17:58.010000"],["2024-07-24T11:17:59.010000"],["2024-07-24T11:18:00.010000"],["2024-07-24T11:18:01.010000"],["2024-07-24T11:18:02.010000"],["2024-07-24T11:18:03.010000"],["2024-07-24T11:18:04.010000"],["2024-07-24T11:18:05.010000"],["2024-07-24T11:18:06.010000"],["2024-07-24T11:18:07.010000"],["2024-07-24T11:18:08.010000"],["2024-07-24T11:18:09.010000"],["2024-07-24T11:18:10.010000"],["2024-07-24T11:18:11.010000"],["2024-07-24T11:18:12.010000"],["2024-07-24T11:18:13.010000"],["2024-07-24T11:18:14.010000"],["2024-07-24T11:18:15.010000"],["2024-07-24T11:18:16.010000"],["2024-07-24T11:18:17.010000"],["2024-07-24T11:18:18.010000"],["2024-07-24T11:18:19.010000"],["2024-07-24T11:18:20.010000"],["2024-07-24T11:18:21.010000"],["2024-07-24T11:18:22.010000"],["2024-07-24T11:18:23.010000"],["2024-07-24T11:18:24.010000"],["2024-07-24T11:18:25.010000"],["2024-07-24T11:18:26.010000"],["2024-07-24T11:18:27.010000"],["2024-07-24T11:18:28.010000"],["2024-07-24T11:18:29.010000"],["2024-07-24T11:18:30.010000"],["2024-07-24T11:18:31.010000"],["2024-07-24T11:18:32.010000"],["2024-07-24T11:18:33.010000"],["2024-07-24T11:18:34.010000"],["2024-07-24T11:18:35.010000"],["2024-07-24T11:18:36.010000"],["2024-07-24T11:18:37.010000"],["2024-07-24T11:18:38.010000"],["2024-07-24T11:18:39.010000"],["2024-07-24T11:18:40.010000"],["2024-07-24T11:18:41.010000"],["2024-07-24T11:18:42.010000"],["2024-07-24T11:18:43.010000"],["2024-07-24T11:18:44.010000"],["2024-07-24T11:18:45.010000"],["2024-07-24T11:18:46.010000"],["2024-07-24T11:18:47.010000"],["2024-07-24T11:18:48.010000"],["2024-07-24T11:18:49.010000"],["2024-07-24T11:18:50.010000"],["2024-07-24T11:18:51.010000"],["2024-07-24T11:18:52.010000"],["2024-07-24T11:18:53.010000"],["2024-07-24T11:18:54.010000"],["2024-07-24T11:18:55.010000"],["2024-07-24T11:18:56.010000"],["2024-07-24T11:18:57.010000"],["2024-07-24T11:18:58.010000"],["2024-07-24T11:18:59.010000"],["2024-07-24T11:19:00.010000"],["2024-07-24T11:19:01.010000"],["2024-07-24T11:19:02.010000"],["2024-07-24T11:19:03.010000"],["2024-07-24T11:19:04.010000"],["2024-07-24T11:19:05.010000"],["2024-07-24T11:19:06.010000"],["2024-07-24T11:19:07.010000"],["2024-07-24T11:19:08.010000"],["2024-07-24T11:19:09.010000"],["2024-07-24T11:19:10.010000"],["2024-07-24T11:19:11.010000"],["2024-07-24T11:19:12.010000"],["2024-07-24T11:19:13.010000"],["2024-07-24T11:19:14.010000"],["2024-07-24T11:19:15.010000"],["2024-07-24T11:19:16.010000"],["2024-07-24T11:19:17.010000"],["2024-07-24T11:19:18.010000"],["2024-07-24T11:19:19.010000"],["2024-07-24T11:19:20.010000"],["2024-07-24T11:19:21.010000"],["2024-07-24T11:19:22.010000"],["2024-07-24T11:19:23.010000"],["2024-07-24T11:19:24.010000"],["2024-07-24T11:19:25.010000"],["2024-07-24T11:19:26.010000"],["2024-07-24T11:19:27.010000"],["2024-07-24T11:19:28.010000"],["2024-07-24T11:19:29.010000"],["2024-07-24T11:19:30.010000"],["2024-07-24T11:19:31.010000"],["2024-07-24T11:19:32.010000"],["2024-07-24T11:19:33.010000"],["2024-07-24T11:19:34.010000"],["2024-07-24T11:19:35.010000"],["2024-07-24T11:19:36.010000"],["2024-07-24T11:19:37.010000"],["2024-07-24T11:19:38.010000"],["2024-07-24T11:19:39.010000"],["2024-07-24T11:19:40.010000"],["2024-07-24T11:19:41.010000"],["2024-07-24T11:19:42.010000"],["2024-07-24T11:19:43.010000"],["2024-07-24T11:19:44.010000"],["2024-07-24T11:19:45.010000"],["2024-07-24T11:19:46.010000"],["2024-07-24T11:19:47.010000"],["2024-07-24T11:19:48.010000"],["2024-07-24T11:19:49.010000"],["2024-07-24T11:19:50.010000"],["2024-07-24T11:19:51.010000"],["2024-07-24T11:19:52.010000"],["2024-07-24T11:19:53.010000"],["2024-07-24T11:19:54.010000"],["2024-07-24T11:19:55.010000"],["2024-07-24T11:19:56.010000"],["2024-07-24T11:19:57.010000"],["2024-07-24T11:19:58.010000"],["2024-07-24T11:19:59.010000"],["2024-07-24T11:20:00.010000"],["2024-07-24T11:20:01.010000"],["2024-07-24T11:20:02.010000"],["2024-07-24T11:20:03.010000"],["2024-07-24T11:20:04.010000"],["2024-07-24T11:20:05.010000"],["2024-07-24T11:20:06.010000"],["2024-07-24T11:20:07.010000"],["2024-07-24T11:20:08.010000"],["2024-07-24T11:20:09.010000"],["2024-07-24T11:20:10.010000"],["2024-07-24T11:20:11.010000"],["2024-07-24T11:20:12.010000"],["2024-07-24T11:20:13.010000"],["2024-07-24T11:20:14.010000"],["2024-07-24T11:20:15.010000"],["2024-07-24T11:20:16.010000"],["2024-07-24T11:20:17.010000"],["2024-07-24T11:20:18.010000"],["2024-07-24T11:20:19.010000"],["2024-07-24T11:20:20.010000"],["2024-07-24T11:20:21.010000"],["2024-07-24T11:20:22.010000"],["2024-07-24T11:20:23.010000"],["2024-07-24T11:20:24.010000"],["2024-07-24T11:20:25.010000"],["2024-07-24T11:20:26.010000"],["2024-07-24T11:20:27.010000"],["2024-07-24T11:20:28.010000"],["2024-07-24T11:20:29.010000"],["2024-07-24T11:20:30.010000"],["2024-07-24T11:20:31.010000"],["2024-07-24T11:20:32.010000"],["2024-07-24T11:20:33.010000"],["2024-07-24T11:20:34.010000"],["2024-07-24T11:20:35.010000"],["2024-07-24T11:20:36.010000"],["2024-07-24T11:20:37.010000"],["2024-07-24T11:20:38.010000"],["2024-07-24T11:20:39.010000"],["2024-07-24T11:20:40.010000"],["2024-07-24T11:20:41.010000"],["2024-07-24T11:20:42.010000"],["2024-07-24T11:20:43.010000"],["2024-07-24T11:20:44.010000"],["2024-07-24T11:20:45.010000"],["2024-07-24T11:20:46.010000"],["2024-07-24T11:20:47.010000"],["2024-07-24T11:20:48.010000"],["2024-07-24T11:20:49.010000"],["2024-07-24T11:20:50.010000"],["2024-07-24T11:20:51.010000"],["2024-07-24T11:20:52.010000"],["2024-07-24T11:20:53.010000"],["2024-07-24T11:20:54.010000"],["2024-07-24T11:20:55.010000"],["2024-07-24T11:20:56.010000"],["2024-07-24T11:20:57.010000"],["2024-07-24T11:20:58.010000"],["2024-07-24T11:20:59.010000"],["2024-07-24T11:21:00.010000"],["2024-07-24T11:21:01.010000"],["2024-07-24T11:21:02.010000"],["2024-07-24T11:21:03.010000"],["2024-07-24T11:21:04.010000"],["2024-07-24T11:21:05.010000"],["2024-07-24T11:21:06.010000"],["2024-07-24T11:21:07.010000"],["2024-07-24T11:21:08.010000"],["2024-07-24T11:21:09.010000"],["2024-07-24T11:21:10.010000"],["2024-07-24T11:21:11.010000"],["2024-07-24T11:21:12.010000"],["2024-07-24T11:21:13.010000"],["2024-07-24T11:21:14.010000"],["2024-07-24T11:21:15.010000"],["2024-07-24T11:21:16.010000"],["2024-07-24T11:21:17.010000"],["2024-07-24T11:21:18.010000"],["2024-07-24T11:21:19.010000"],["2024-07-24T11:21:20.010000"],["2024-07-24T11:21:21.010000"],["2024-07-24T11:21:22.010000"],["2024-07-24T11:21:23.010000"],["2024-07-24T11:21:24.010000"],["2024-07-24T11:21:25.010000"],["2024-07-24T11:21:26.010000"],["2024-07-24T11:21:27.010000"],["2024-07-24T11:21:28.010000"],["2024-07-24T11:21:29.010000"],["2024-07-24T11:21:30.010000"],["2024-07-24T11:21:31.010000"],["2024-07-24T11:21:32.010000"],["2024-07-24T11:21:33.010000"],["2024-07-24T11:21:34.010000"],["2024-07-24T11:21:35.010000"],["2024-07-24T11:21:36.010000"],["2024-07-24T11:21:37.010000"],["2024-07-24T11:21:38.010000"],["2024-07-24T11:21:39.010000"],["2024-07-24T11:21:40.010000"],["2024-07-24T11:21:41.010000"],["2024-07-24T11:21:42.010000"],["2024-07-24T11:21:43.010000"],["2024-07-24T11:21:44.010000"],["2024-07-24T11:21:45.010000"],["2024-07-24T11:21:46.010000"],["2024-07-24T11:21:47.010000"],["2024-07-24T11:21:48.010000"],["2024-07-24T11:21:49.010000"],["2024-07-24T11:21:50.010000"],["2024-07-24T11:21:51.010000"],["2024-07-24T11:21:52.010000"],["2024-07-24T11:21:53.010000"],["2024-07-24T11:21:54.010000"],["2024-07-24T11:21:55.010000"],["2024-07-24T11:21:56.010000"],["2024-07-24T11:21:57.010000"],["2024-07-24T11:21:58.010000"],["2024-07-24T11:21:59.010000"],["2024-07-24T11:22:00.010000"],["2024-07-24T11:22:01.010000"],["2024-07-24T11:22:02.010000"],["2024-07-24T11:22:03.010000"],["2024-07-24T11:22:04.010000"],["2024-07-24T11:22:05.010000"],["2024-07-24T11:22:06.010000"],["2024-07-24T11:22:07.010000"],["2024-07-24T11:22:08.010000"],["2024-07-24T11:22:09.010000"],["2024-07-24T11:22:10.010000"],["2024-07-24T11:22:11.010000"],["2024-07-24T11:22:12.010000"],["2024-07-24T11:22:13.010000"],["2024-07-24T11:22:14.010000"],["2024-07-24T11:22:15.010000"],["2024-07-24T11:22:16.010000"],["2024-07-24T11:22:17.010000"],["2024-07-24T11:22:18.010000"],["2024-07-24T11:22:19.010000"],["2024-07-24T11:22:20.010000"],["2024-07-24T11:22:21.010000"],["2024-07-24T11:22:22.010000"],["2024-07-24T11:22:23.010000"],["2024-07-24T11:22:24.010000"],["2024-07-24T11:22:25.010000"],["2024-07-24T11:22:26.010000"],["2024-07-24T11:22:27.010000"],["2024-07-24T11:22:28.010000"],["2024-07-24T11:22:29.010000"],["2024-07-24T11:22:30.010000"],["2024-07-24T11:22:31.010000"],["2024-07-24T11:22:32.010000"],["2024-07-24T11:22:33.010000"],["2024-07-24T11:22:34.010000"],["2024-07-24T11:22:35.010000"],["2024-07-24T11:22:36.010000"],["2024-07-24T11:22:37.010000"],["2024-07-24T11:22:38.010000"],["2024-07-24T11:22:39.010000"],["2024-07-24T11:22:40.010000"],["2024-07-24T11:22:41.010000"],["2024-07-24T11:22:42.010000"],["2024-07-24T11:22:43.010000"],["2024-07-24T11:22:44.010000"],["2024-07-24T11:22:45.010000"],["2024-07-24T11:22:46.010000"],["2024-07-24T11:22:47.010000"],["2024-07-24T11:22:48.010000"],["2024-07-24T11:22:49.010000"],["2024-07-24T11:22:50.010000"],["2024-07-24T11:22:51.010000"],["2024-07-24T11:22:52.010000"],["2024-07-24T11:22:53.010000"],["2024-07-24T11:22:54.010000"],["2024-07-24T11:22:55.010000"],["2024-07-24T11:22:56.010000"],["2024-07-24T11:22:57.010000"],["2024-07-24T11:22:58.010000"],["2024-07-24T11:22:59.010000"],["2024-07-24T11:23:00.010000"],["2024-07-24T11:23:01.010000"],["2024-07-24T11:23:02.010000"],["2024-07-24T11:23:03.010000"],["2024-07-24T11:23:04.010000"],["2024-07-24T11:23:05.010000"],["2024-07-24T11:23:06.010000"],["2024-07-24T11:23:07.010000"],["2024-07-24T11:23:08.010000"],["2024-07-24T11:23:09.010000"],["2024-07-24T11:23:10.010000"],["2024-07-24T11:23:11.010000"],["2024-07-24T11:23:12.010000"],["2024-07-24T11:23:13.010000"],["2024-07-24T11:23:14.010000"],["2024-07-24T11:23:15.010000"],["2024-07-24T11:23:16.010000"],["2024-07-24T11:23:17.010000"],["2024-07-24T11:23:18.010000"],["2024-07-24T11:23:19.010000"],["2024-07-24T11:23:20.010000"],["2024-07-24T11:23:21.010000"],["2024-07-24T11:23:22.010000"],["2024-07-24T11:23:23.010000"],["2024-07-24T11:23:24.010000"],["2024-07-24T11:23:25.010000"],["2024-07-24T11:23:26.010000"],["2024-07-24T11:23:27.010000"],["2024-07-24T11:23:28.010000"],["2024-07-24T11:23:29.010000"],["2024-07-24T11:23:30.010000"],["2024-07-24T11:23:31.010000"],["2024-07-24T11:23:32.010000"],["2024-07-24T11:23:33.010000"],["2024-07-24T11:23:34.010000"],["2024-07-24T11:23:35.010000"],["2024-07-24T11:23:36.010000"],["2024-07-24T11:23:37.010000"],["2024-07-24T11:23:38.010000"],["2024-07-24T11:23:39.010000"],["2024-07-24T11:23:40.010000"],["2024-07-24T11:23:41.010000"],["2024-07-24T11:23:42.010000"],["2024-07-24T11:23:43.010000"],["2024-07-24T11:23:44.010000"],["2024-07-24T11:23:45.010000"],["2024-07-24T11:23:46.010000"],["2024-07-24T11:23:47.010000"],["2024-07-24T11:23:48.010000"],["2024-07-24T11:23:49.010000"],["2024-07-24T11:23:50.010000"],["2024-07-24T11:23:51.010000"],["2024-07-24T11:23:52.010000"],["2024-07-24T11:23:53.010000"],["2024-07-24T11:23:54.010000"],["2024-07-24T11:23:55.010000"],["2024-07-24T11:23:56.010000"],["2024-07-24T11:23:57.010000"],["2024-07-24T11:23:58.010000"],["2024-07-24T11:23:59.010000"],["2024-07-24T11:24:00.010000"],["2024-07-24T11:24:01.010000"],["2024-07-24T11:24:02.010000"],["2024-07-24T11:24:03.010000"],["2024-07-24T11:24:04.010000"],["2024-07-24T11:24:05.010000"],["2024-07-24T11:24:06.010000"],["2024-07-24T11:24:07.010000"],["2024-07-24T11:24:08.010000"],["2024-07-24T11:24:09.010000"],["2024-07-24T11:24:10.010000"],["2024-07-24T11:24:11.010000"],["2024-07-24T11:24:12.010000"],["2024-07-24T11:24:13.010000"],["2024-07-24T11:24:14.010000"],["2024-07-24T11:24:15.010000"],["2024-07-24T11:24:16.010000"],["2024-07-24T11:24:17.010000"],["2024-07-24T11:24:18.010000"],["2024-07-24T11:24:19.010000"],["2024-07-24T11:24:20.010000"],["2024-07-24T11:24:21.010000"],["2024-07-24T11:24:22.010000"],["2024-07-24T11:24:23.010000"],["2024-07-24T11:24:24.010000"],["2024-07-24T11:24:25.010000"],["2024-07-24T11:24:26.010000"],["2024-07-24T11:24:27.010000"],["2024-07-24T11:24:28.010000"],["2024-07-24T11:24:29.010000"],["2024-07-24T11:24:30.010000"],["2024-07-24T11:24:31.010000"],["2024-07-24T11:24:32.010000"],["2024-07-24T11:24:33.010000"],["2024-07-24T11:24:34.010000"],["2024-07-24T11:24:35.010000"],["2024-07-24T11:24:36.010000"],["2024-07-24T11:24:37.010000"],["2024-07-24T11:24:38.010000"],["2024-07-24T11:24:39.010000"],["2024-07-24T11:24:40.010000"],["2024-07-24T11:24:41.010000"],["2024-07-24T11:24:42.010000"],["2024-07-24T11:24:43.010000"],["2024-07-24T11:24:44.010000"],["2024-07-24T11:24:45.010000"],["2024-07-24T11:24:46.010000"],["2024-07-24T11:24:47.010000"],["2024-07-24T11:24:48.010000"],["2024-07-24T11:24:49.010000"],["2024-07-24T11:24:50.010000"],["2024-07-24T11:24:51.010000"],["2024-07-24T11:24:52.010000"],["2024-07-24T11:24:53.010000"],["2024-07-24T11:24:54.010000"],["2024-07-24T11:24:55.010000"],["2024-07-24T11:24:56.010000"],["2024-07-24T11:24:57.010000"],["2024-07-24T11:24:58.010000"],["2024-07-24T11:24:59.010000"],["2024-07-24T11:25:00.010000"],["2024-07-24T11:25:01.010000"],["2024-07-24T11:25:02.010000"],["2024-07-24T11:25:03.010000"],["2024-07-24T11:25:04.010000"],["2024-07-24T11:25:05.010000"],["2024-07-24T11:25:06.010000"],["2024-07-24T11:25:07.010000"],["2024-07-24T11:25:08.010000"],["2024-07-24T11:25:09.010000"],["2024-07-24T11:25:10.010000"],["2024-07-24T11:25:11.010000"],["2024-07-24T11:25:12.010000"],["2024-07-24T11:25:13.010000"],["2024-07-24T11:25:14.010000"],["2024-07-24T11:25:15.010000"],["2024-07-24T11:25:16.010000"],["2024-07-24T11:25:17.010000"],["2024-07-24T11:25:18.010000"],["2024-07-24T11:25:19.010000"],["2024-07-24T11:25:20.010000"],["2024-07-24T11:25:21.010000"],["2024-07-24T11:25:22.010000"],["2024-07-24T11:25:23.010000"],["2024-07-24T11:25:24.010000"],["2024-07-24T11:25:25.010000"],["2024-07-24T11:25:26.010000"],["2024-07-24T11:25:27.010000"],["2024-07-24T11:25:28.010000"],["2024-07-24T11:25:29.010000"],["2024-07-24T11:25:30.010000"],["2024-07-24T11:25:31.010000"],["2024-07-24T11:25:32.010000"],["2024-07-24T11:25:33.010000"],["2024-07-24T11:25:34.010000"],["2024-07-24T11:25:35.010000"],["2024-07-24T11:25:36.010000"],["2024-07-24T11:25:37.010000"],["2024-07-24T11:25:38.010000"],["2024-07-24T11:25:39.010000"],["2024-07-24T11:25:40.010000"],["2024-07-24T11:25:41.010000"],["2024-07-24T11:25:42.010000"],["2024-07-24T11:25:43.010000"],["2024-07-24T11:25:44.010000"],["2024-07-24T11:25:45.010000"],["2024-07-24T11:25:46.010000"],["2024-07-24T11:25:47.010000"],["2024-07-24T11:25:48.010000"],["2024-07-24T11:25:49.010000"],["2024-07-24T11:25:50.010000"],["2024-07-24T11:25:51.010000"],["2024-07-24T11:25:52.010000"],["2024-07-24T11:25:53.010000"],["2024-07-24T11:25:54.010000"],["2024-07-24T11:25:55.010000"],["2024-07-24T11:25:56.010000"],["2024-07-24T11:25:57.010000"],["2024-07-24T11:25:58.010000"],["2024-07-24T11:25:59.010000"],["2024-07-24T11:26:00.010000"],["2024-07-24T11:26:01.010000"],["2024-07-24T11:26:02.010000"],["2024-07-24T11:26:03.010000"],["2024-07-24T11:26:04.010000"],["2024-07-24T11:26:05.010000"],["2024-07-24T11:26:06.010000"],["2024-07-24T11:26:07.010000"],["2024-07-24T11:26:08.010000"],["2024-07-24T11:26:09.010000"],["2024-07-24T11:26:10.010000"],["2024-07-24T11:26:11.010000"],["2024-07-24T11:26:12.010000"],["2024-07-24T11:26:13.010000"],["2024-07-24T11:26:14.010000"],["2024-07-24T11:26:15.010000"],["2024-07-24T11:26:16.010000"],["2024-07-24T11:26:17.010000"],["2024-07-24T11:26:18.010000"],["2024-07-24T11:26:19.010000"],["2024-07-24T11:26:20.010000"],["2024-07-24T11:26:21.010000"],["2024-07-24T11:26:22.010000"],["2024-07-24T11:26:23.010000"],["2024-07-24T11:26:24.010000"],["2024-07-24T11:26:25.010000"],["2024-07-24T11:26:26.010000"],["2024-07-24T11:26:27.010000"],["2024-07-24T11:26:28.010000"],["2024-07-24T11:26:29.010000"],["2024-07-24T11:26:30.010000"],["2024-07-24T11:26:31.010000"],["2024-07-24T11:26:32.010000"],["2024-07-24T11:26:33.010000"],["2024-07-24T11:26:34.010000"],["2024-07-24T11:26:35.010000"],["2024-07-24T11:26:36.010000"],["2024-07-24T11:26:37.010000"],["2024-07-24T11:26:38.010000"],["2024-07-24T11:26:39.010000"],["2024-07-24T11:26:40.010000"],["2024-07-24T11:26:41.010000"],["2024-07-24T11:26:42.010000"],["2024-07-24T11:26:43.010000"],["2024-07-24T11:26:44.010000"],["2024-07-24T11:26:45.010000"],["2024-07-24T11:26:46.010000"],["2024-07-24T11:26:47.010000"],["2024-07-24T11:26:48.010000"],["2024-07-24T11:26:49.010000"],["2024-07-24T11:26:50.010000"],["2024-07-24T11:26:51.010000"],["2024-07-24T11:26:52.010000"],["2024-07-24T11:26:53.010000"],["2024-07-24T11:26:54.010000"],["2024-07-24T11:26:55.010000"],["2024-07-24T11:26:56.010000"],["2024-07-24T11:26:57.010000"],["2024-07-24T11:26:58.010000"],["2024-07-24T11:26:59.010000"],["2024-07-24T11:27:00.010000"],["2024-07-24T11:27:01.010000"],["2024-07-24T11:27:02.010000"],["2024-07-24T11:27:03.010000"],["2024-07-24T11:27:04.010000"],["2024-07-24T11:27:05.010000"],["2024-07-24T11:27:06.010000"],["2024-07-24T11:27:07.010000"],["2024-07-24T11:27:08.010000"],["2024-07-24T11:27:09.010000"],["2024-07-24T11:27:10.010000"],["2024-07-24T11:27:11.010000"],["2024-07-24T11:27:12.010000"],["2024-07-24T11:27:13.010000"],["2024-07-24T11:27:14.010000"],["2024-07-24T11:27:15.010000"],["2024-07-24T11:27:16.010000"],["2024-07-24T11:27:17.010000"],["2024-07-24T11:27:18.010000"],["2024-07-24T11:27:19.010000"],["2024-07-24T11:27:20.010000"],["2024-07-24T11:27:21.010000"],["2024-07-24T11:27:22.010000"],["2024-07-24T11:27:23.010000"],["2024-07-24T11:27:24.010000"],["2024-07-24T11:27:25.010000"],["2024-07-24T11:27:26.010000"],["2024-07-24T11:27:27.010000"],["2024-07-24T11:27:28.010000"],["2024-07-24T11:27:29.010000"],["2024-07-24T11:27:30.010000"],["2024-07-24T11:27:31.010000"],["2024-07-24T11:27:32.010000"],["2024-07-24T11:27:33.010000"],["2024-07-24T11:27:34.010000"],["2024-07-24T11:27:35.010000"],["2024-07-24T11:27:36.010000"],["2024-07-24T11:27:37.010000"],["2024-07-24T11:27:38.010000"],["2024-07-24T11:27:39.010000"],["2024-07-24T11:27:40.010000"],["2024-07-24T11:27:41.010000"],["2024-07-24T11:27:42.010000"],["2024-07-24T11:27:43.010000"],["2024-07-24T11:27:44.010000"],["2024-07-24T11:27:45.010000"],["2024-07-24T11:27:46.010000"],["2024-07-24T11:27:47.010000"],["2024-07-24T11:27:48.010000"],["2024-07-24T11:27:49.010000"],["2024-07-24T11:27:50.010000"],["2024-07-24T11:27:51.010000"],["2024-07-24T11:27:52.010000"],["2024-07-24T11:27:53.010000"],["2024-07-24T11:27:54.010000"],["2024-07-24T11:27:55.010000"],["2024-07-24T11:27:56.010000"],["2024-07-24T11:27:57.010000"],["2024-07-24T11:27:58.010000"],["2024-07-24T11:27:59.010000"],["2024-07-24T11:28:00.010000"],["2024-07-24T11:28:01.010000"],["2024-07-24T11:28:02.010000"],["2024-07-24T11:28:03.010000"],["2024-07-24T11:28:04.010000"],["2024-07-24T11:28:05.010000"],["2024-07-24T11:28:06.010000"],["2024-07-24T11:28:07.010000"],["2024-07-24T11:28:08.010000"],["2024-07-24T11:28:09.010000"],["2024-07-24T11:28:10.010000"],["2024-07-24T11:28:11.010000"],["2024-07-24T11:28:12.010000"],["2024-07-24T11:28:13.010000"],["2024-07-24T11:28:14.010000"],["2024-07-24T11:28:15.010000"],["2024-07-24T11:28:16.010000"],["2024-07-24T11:28:17.010000"],["2024-07-24T11:28:18.010000"],["2024-07-24T11:28:19.010000"],["2024-07-24T11:28:20.010000"],["2024-07-24T11:28:21.010000"],["2024-07-24T11:28:22.010000"],["2024-07-24T11:28:23.010000"],["2024-07-24T11:28:24.010000"],["2024-07-24T11:28:25.010000"],["2024-07-24T11:28:26.010000"],["2024-07-24T11:28:27.010000"],["2024-07-24T11:28:28.010000"],["2024-07-24T11:28:29.010000"],["2024-07-24T11:28:30.010000"],["2024-07-24T11:28:31.010000"],["2024-07-24T11:28:32.010000"],["2024-07-24T11:28:33.010000"],["2024-07-24T11:28:34.010000"],["2024-07-24T11:28:35.010000"],["2024-07-24T11:28:36.010000"],["2024-07-24T11:28:37.010000"],["2024-07-24T11:28:38.010000"],["2024-07-24T11:28:39.010000"],["2024-07-24T11:28:40.010000"],["2024-07-24T11:28:41.010000"],["2024-07-24T11:28:42.010000"],["2024-07-24T11:28:43.010000"],["2024-07-24T11:28:44.010000"],["2024-07-24T11:28:45.010000"],["2024-07-24T11:28:46.010000"],["2024-07-24T11:28:47.010000"],["2024-07-24T11:28:48.010000"],["2024-07-24T11:28:49.010000"],["2024-07-24T11:28:50.010000"],["2024-07-24T11:28:51.010000"],["2024-07-24T11:28:52.010000"],["2024-07-24T11:28:53.010000"],["2024-07-24T11:28:54.010000"],["2024-07-24T11:28:55.010000"],["2024-07-24T11:28:56.010000"],["2024-07-24T11:28:57.010000"],["2024-07-24T11:28:58.010000"],["2024-07-24T11:28:59.010000"],["2024-07-24T11:29:00.010000"],["2024-07-24T11:29:01.010000"],["2024-07-24T11:29:02.010000"],["2024-07-24T11:29:03.010000"],["2024-07-24T11:29:04.010000"],["2024-07-24T11:29:05.010000"],["2024-07-24T11:29:06.010000"],["2024-07-24T11:29:07.010000"],["2024-07-24T11:29:08.010000"],["2024-07-24T11:29:09.010000"],["2024-07-24T11:29:10.010000"],["2024-07-24T11:29:11.010000"],["2024-07-24T11:29:12.010000"],["2024-07-24T11:29:13.010000"],["2024-07-24T11:29:14.010000"],["2024-07-24T11:29:15.010000"],["2024-07-24T11:29:16.010000"],["2024-07-24T11:29:17.010000"],["2024-07-24T11:29:18.010000"],["2024-07-24T11:29:19.010000"],["2024-07-24T11:29:20.010000"],["2024-07-24T11:29:21.010000"],["2024-07-24T11:29:22.010000"],["2024-07-24T11:29:23.010000"],["2024-07-24T11:29:24.010000"],["2024-07-24T11:29:25.010000"],["2024-07-24T11:29:26.010000"],["2024-07-24T11:29:27.010000"],["2024-07-24T11:29:28.010000"],["2024-07-24T11:29:29.010000"],["2024-07-24T11:29:30.010000"],["2024-07-24T11:29:31.010000"],["2024-07-24T11:29:32.010000"],["2024-07-24T11:29:33.010000"],["2024-07-24T11:29:34.010000"],["2024-07-24T11:29:35.010000"],["2024-07-24T11:29:36.010000"],["2024-07-24T11:29:37.010000"],["2024-07-24T11:29:38.010000"],["2024-07-24T11:29:39.010000"],["2024-07-24T11:29:40.010000"],["2024-07-24T11:29:41.010000"],["2024-07-24T11:29:42.010000"],["2024-07-24T11:29:43.010000"],["2024-07-24T11:29:44.010000"],["2024-07-24T11:29:45.010000"],["2024-07-24T11:29:46.010000"],["2024-07-24T11:29:47.010000"],["2024-07-24T11:29:48.010000"],["2024-07-24T11:29:49.010000"],["2024-07-24T11:29:50.010000"],["2024-07-24T11:29:51.010000"],["2024-07-24T11:29:52.010000"],["2024-07-24T11:29:53.010000"],["2024-07-24T11:29:54.010000"],["2024-07-24T11:29:55.010000"],["2024-07-24T11:29:56.010000"],["2024-07-24T11:29:57.010000"],["2024-07-24T11:29:58.010000"],["2024-07-24T11:29:59.010000"],["2024-07-24T11:30:00.010000"],["2024-07-24T11:30:01.010000"],["2024-07-24T11:30:02.010000"],["2024-07-24T11:30:03.010000"],["2024-07-24T11:30:04.010000"],["2024-07-24T11:30:05.010000"],["2024-07-24T11:30:06.010000"],["2024-07-24T11:30:07.010000"],["2024-07-24T11:30:08.010000"],["2024-07-24T11:30:09.010000"],["2024-07-24T11:30:10.010000"],["2024-07-24T11:30:11.010000"],["2024-07-24T11:30:12.010000"],["2024-07-24T11:30:13.010000"],["2024-07-24T11:30:14.010000"],["2024-07-24T11:30:15.010000"],["2024-07-24T11:30:16.010000"],["2024-07-24T11:30:17.010000"],["2024-07-24T11:30:18.010000"],["2024-07-24T11:30:19.010000"],["2024-07-24T11:30:20.010000"],["2024-07-24T11:30:21.010000"],["2024-07-24T11:30:22.010000"],["2024-07-24T11:30:23.010000"],["2024-07-24T11:30:24.010000"],["2024-07-24T11:30:25.010000"],["2024-07-24T11:30:26.010000"],["2024-07-24T11:30:27.010000"],["2024-07-24T11:30:28.010000"],["2024-07-24T11:30:29.010000"],["2024-07-24T11:30:30.010000"],["2024-07-24T11:30:31.010000"],["2024-07-24T11:30:32.010000"],["2024-07-24T11:30:33.010000"],["2024-07-24T11:30:34.010000"],["2024-07-24T11:30:35.010000"],["2024-07-24T11:30:36.010000"],["2024-07-24T11:30:37.010000"],["2024-07-24T11:30:38.010000"],["2024-07-24T11:30:39.010000"],["2024-07-24T11:30:40.010000"],["2024-07-24T11:30:41.010000"],["2024-07-24T11:30:42.010000"],["2024-07-24T11:30:43.010000"],["2024-07-24T11:30:44.010000"],["2024-07-24T11:30:45.010000"],["2024-07-24T11:30:46.010000"],["2024-07-24T11:30:47.010000"],["2024-07-24T11:30:48.010000"],["2024-07-24T11:30:49.010000"],["2024-07-24T11:30:50.010000"],["2024-07-24T11:30:51.010000"],["2024-07-24T11:30:52.010000"],["2024-07-24T11:30:53.010000"],["2024-07-24T11:30:54.010000"],["2024-07-24T11:30:55.010000"],["2024-07-24T11:30:56.010000"],["2024-07-24T11:30:57.010000"],["2024-07-24T11:30:58.010000"],["2024-07-24T11:30:59.010000"],["2024-07-24T11:31:00.010000"],["2024-07-24T11:31:01.010000"],["2024-07-24T11:31:02.010000"],["2024-07-24T11:31:03.010000"],["2024-07-24T11:31:04.010000"],["2024-07-24T11:31:05.010000"],["2024-07-24T11:31:06.010000"],["2024-07-24T11:31:07.010000"],["2024-07-24T11:31:08.010000"],["2024-07-24T11:31:09.010000"],["2024-07-24T11:31:10.010000"],["2024-07-24T11:31:11.010000"],["2024-07-24T11:31:12.010000"],["2024-07-24T11:31:13.010000"],["2024-07-24T11:31:14.010000"],["2024-07-24T11:31:15.010000"],["2024-07-24T11:31:16.010000"],["2024-07-24T11:31:17.010000"],["2024-07-24T11:31:18.010000"],["2024-07-24T11:31:19.010000"],["2024-07-24T11:31:20.010000"],["2024-07-24T11:31:21.010000"],["2024-07-24T11:31:22.010000"],["2024-07-24T11:31:23.010000"],["2024-07-24T11:31:24.010000"],["2024-07-24T11:31:25.010000"],["2024-07-24T11:31:26.010000"],["2024-07-24T11:31:27.010000"],["2024-07-24T11:31:28.010000"],["2024-07-24T11:31:29.010000"],["2024-07-24T11:31:30.010000"],["2024-07-24T11:31:31.010000"],["2024-07-24T11:31:32.010000"],["2024-07-24T11:31:33.010000"],["2024-07-24T11:31:34.010000"],["2024-07-24T11:31:35.010000"],["2024-07-24T11:31:36.010000"],["2024-07-24T11:31:37.010000"],["2024-07-24T11:31:38.010000"],["2024-07-24T11:31:39.010000"],["2024-07-24T11:31:40.010000"],["2024-07-24T11:31:41.010000"],["2024-07-24T11:31:42.010000"],["2024-07-24T11:31:43.010000"],["2024-07-24T11:31:44.010000"],["2024-07-24T11:31:45.010000"],["2024-07-24T11:31:46.010000"],["2024-07-24T11:31:47.010000"],["2024-07-24T11:31:48.010000"],["2024-07-24T11:31:49.010000"],["2024-07-24T11:31:50.010000"],["2024-07-24T11:31:51.010000"],["2024-07-24T11:31:52.010000"],["2024-07-24T11:31:53.010000"],["2024-07-24T11:31:54.010000"],["2024-07-24T11:31:55.010000"],["2024-07-24T11:31:56.010000"],["2024-07-24T11:31:57.010000"],["2024-07-24T11:31:58.010000"],["2024-07-24T11:31:59.010000"],["2024-07-24T11:32:00.010000"],["2024-07-24T11:32:01.010000"],["2024-07-24T11:32:02.010000"],["2024-07-24T11:32:03.010000"],["2024-07-24T11:32:04.010000"],["2024-07-24T11:32:05.010000"],["2024-07-24T11:32:06.010000"],["2024-07-24T11:32:07.010000"],["2024-07-24T11:32:08.010000"],["2024-07-24T11:32:09.010000"],["2024-07-24T11:32:10.010000"],["2024-07-24T11:32:11.010000"],["2024-07-24T11:32:12.010000"],["2024-07-24T11:32:13.010000"],["2024-07-24T11:32:14.010000"],["2024-07-24T11:32:15.010000"],["2024-07-24T11:32:16.010000"],["2024-07-24T11:32:17.010000"],["2024-07-24T11:32:18.010000"],["2024-07-24T11:32:19.010000"],["2024-07-24T11:32:20.010000"],["2024-07-24T11:32:21.010000"],["2024-07-24T11:32:22.010000"],["2024-07-24T11:32:23.010000"],["2024-07-24T11:32:24.010000"],["2024-07-24T11:32:25.010000"],["2024-07-24T11:32:26.010000"],["2024-07-24T11:32:27.010000"],["2024-07-24T11:32:28.010000"],["2024-07-24T11:32:29.010000"],["2024-07-24T11:32:30.010000"],["2024-07-24T11:32:31.010000"],["2024-07-24T11:32:32.010000"],["2024-07-24T11:32:33.010000"],["2024-07-24T11:32:34.010000"],["2024-07-24T11:32:35.010000"],["2024-07-24T11:32:36.010000"],["2024-07-24T11:32:37.010000"],["2024-07-24T11:32:38.010000"],["2024-07-24T11:32:39.010000"],["2024-07-24T11:32:40.010000"],["2024-07-24T11:32:41.010000"],["2024-07-24T11:32:42.010000"],["2024-07-24T11:32:43.010000"],["2024-07-24T11:32:44.010000"],["2024-07-24T11:32:45.010000"],["2024-07-24T11:32:46.010000"],["2024-07-24T11:32:47.010000"],["2024-07-24T11:32:48.010000"],["2024-07-24T11:32:49.010000"],["2024-07-24T11:32:50.010000"],["2024-07-24T11:32:51.010000"],["2024-07-24T11:32:52.010000"],["2024-07-24T11:32:53.010000"],["2024-07-24T11:32:54.010000"],["2024-07-24T11:32:55.010000"],["2024-07-24T11:32:56.010000"],["2024-07-24T11:32:57.010000"],["2024-07-24T11:32:58.010000"],["2024-07-24T11:32:59.010000"],["2024-07-24T11:33:00.010000"],["2024-07-24T11:33:01.010000"],["2024-07-24T11:33:02.010000"],["2024-07-24T11:33:03.010000"],["2024-07-24T11:33:04.010000"],["2024-07-24T11:33:05.010000"],["2024-07-24T11:33:06.010000"],["2024-07-24T11:33:07.010000"],["2024-07-24T11:33:08.010000"],["2024-07-24T11:33:09.010000"],["2024-07-24T11:33:10.010000"],["2024-07-24T11:33:11.010000"],["2024-07-24T11:33:12.010000"],["2024-07-24T11:33:13.010000"],["2024-07-24T11:33:14.010000"],["2024-07-24T11:33:15.010000"],["2024-07-24T11:33:16.010000"],["2024-07-24T11:33:17.010000"],["2024-07-24T11:33:18.010000"],["2024-07-24T11:33:19.010000"],["2024-07-24T11:33:20.010000"],["2024-07-24T11:33:21.010000"],["2024-07-24T11:33:22.010000"],["2024-07-24T11:33:23.010000"],["2024-07-24T11:33:24.010000"],["2024-07-24T11:33:25.010000"],["2024-07-24T11:33:26.010000"],["2024-07-24T11:33:27.010000"],["2024-07-24T11:33:28.010000"],["2024-07-24T11:33:29.010000"],["2024-07-24T11:33:30.010000"],["2024-07-24T11:33:31.010000"],["2024-07-24T11:33:32.010000"],["2024-07-24T11:33:33.010000"],["2024-07-24T11:33:34.010000"],["2024-07-24T11:33:35.010000"],["2024-07-24T11:33:36.010000"],["2024-07-24T11:33:37.010000"],["2024-07-24T11:33:38.010000"],["2024-07-24T11:33:39.010000"],["2024-07-24T11:33:40.010000"],["2024-07-24T11:33:41.010000"],["2024-07-24T11:33:42.010000"],["2024-07-24T11:33:43.010000"],["2024-07-24T11:33:44.010000"],["2024-07-24T11:33:45.010000"],["2024-07-24T11:33:46.010000"],["2024-07-24T11:33:47.010000"],["2024-07-24T11:33:48.010000"],["2024-07-24T11:33:49.010000"],["2024-07-24T11:33:50.010000"],["2024-07-24T11:33:51.010000"],["2024-07-24T11:33:52.010000"],["2024-07-24T11:33:53.010000"],["2024-07-24T11:33:54.010000"],["2024-07-24T11:33:55.010000"],["2024-07-24T11:33:56.010000"],["2024-07-24T11:33:57.010000"],["2024-07-24T11:33:58.010000"],["2024-07-24T11:33:59.010000"],["2024-07-24T11:34:00.010000"],["2024-07-24T11:34:01.010000"],["2024-07-24T11:34:02.010000"],["2024-07-24T11:34:03.010000"],["2024-07-24T11:34:04.010000"],["2024-07-24T11:34:05.010000"],["2024-07-24T11:34:06.010000"],["2024-07-24T11:34:07.010000"],["2024-07-24T11:34:08.010000"],["2024-07-24T11:34:09.010000"],["2024-07-24T11:34:10.010000"],["2024-07-24T11:34:11.010000"],["2024-07-24T11:34:12.010000"],["2024-07-24T11:34:13.010000"],["2024-07-24T11:34:14.010000"],["2024-07-24T11:34:15.010000"],["2024-07-24T11:34:16.010000"],["2024-07-24T11:34:17.010000"],["2024-07-24T11:34:18.010000"],["2024-07-24T11:34:19.010000"],["2024-07-24T11:34:20.010000"],["2024-07-24T11:34:21.010000"],["2024-07-24T11:34:22.010000"],["2024-07-24T11:34:23.010000"],["2024-07-24T11:34:24.010000"],["2024-07-24T11:34:25.010000"],["2024-07-24T11:34:26.010000"],["2024-07-24T11:34:27.010000"],["2024-07-24T11:34:28.010000"],["2024-07-24T11:34:29.010000"],["2024-07-24T11:34:30.010000"],["2024-07-24T11:34:31.010000"],["2024-07-24T11:34:32.010000"],["2024-07-24T11:34:33.010000"],["2024-07-24T11:34:34.010000"],["2024-07-24T11:34:35.010000"],["2024-07-24T11:34:36.010000"],["2024-07-24T11:34:37.010000"],["2024-07-24T11:34:38.010000"],["2024-07-24T11:34:39.010000"],["2024-07-24T11:34:40.010000"],["2024-07-24T11:34:41.010000"],["2024-07-24T11:34:42.010000"],["2024-07-24T11:34:43.010000"],["2024-07-24T11:34:44.010000"],["2024-07-24T11:34:45.010000"],["2024-07-24T11:34:46.010000"],["2024-07-24T11:34:47.010000"],["2024-07-24T11:34:48.010000"],["2024-07-24T11:34:49.010000"],["2024-07-24T11:34:50.010000"],["2024-07-24T11:34:51.010000"],["2024-07-24T11:34:52.010000"],["2024-07-24T11:34:53.010000"],["2024-07-24T11:34:54.010000"],["2024-07-24T11:34:55.010000"],["2024-07-24T11:34:56.010000"],["2024-07-24T11:34:57.010000"],["2024-07-24T11:34:58.010000"],["2024-07-24T11:34:59.010000"],["2024-07-24T11:35:00.010000"],["2024-07-24T11:35:01.010000"],["2024-07-24T11:35:02.010000"],["2024-07-24T11:35:03.010000"],["2024-07-24T11:35:04.010000"],["2024-07-24T11:35:05.010000"]],"hovertemplate":"color=1\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"1","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"1","scene":"scene","showlegend":true,"x":[18.48382763750851,19.477930477354676,19.4878187533468,20.022163670510054,19.31090568145737,19.134542857296765,19.376573040615767,18.497480581048876,18.387507073115557,18.713287298101932,18.169681461993605,18.983771273400635,19.316428461577743,19.8695702617988,19.324714039918035,18.81030024541542,19.771289888769388,19.261385151185095,19.078515507280827,19.43094342155382,19.79380513774231,19.17264592880383,18.5534747983329,18.207444684114307,17.67782013071701,18.28431244334206,19.006140902638435,18.92471494525671,19.397442410700023,20.295607779640704,20.20627303235233,19.298131247982383,20.294291297439486,19.30693964380771,19.594694692175835,19.27773754252121,20.07352073304355,20.809492810163647,19.873699141666293,19.255309026688337,19.404616705607623,20.360515067353845,19.541305960621685,20.083337070886046,19.278992887120694,19.177540881559253,19.924308037851006,19.384449251927435,18.789618760347366,19.576692291069776,20.358042663894594,20.573865931481123,20.21390618244186,21.170000028330833,21.9009298235178,22.709817523136735,22.7557415952906,22.329931877553463,23.183407564647496,23.660552205052227,23.704732591751963,23.977436658926308,24.301570229697973,25.0002528950572,25.72043693671003,26.20574136869982,26.32974258577451,26.69975299621001,27.48214755859226,26.733685102313757,27.71508966339752,27.880176080856472,27.669377258978784,27.910103161353618,28.64642972033471,28.564850371796638,29.424056748393923,28.563422005157918,27.74355915002525,28.149983808398247,27.600304208230227,27.68928783060983,26.926647788845003,27.521176836453378,28.139669589232653,28.78339036880061,29.414968215860426,29.54539038799703,28.70367682632059,29.596467438153923,30.00346411438659,30.53014582535252,30.25042917719111,30.446521380916238,29.569219931960106,29.706367822829634,29.940700619481504,29.852253904100507,30.609774997457862,29.90482121007517,29.973937693517655,30.968837265390903,31.015983785968274,30.506555925123394,29.943484499584883,30.45421316009015,29.845976944547147,30.110013187862933,30.722696440294385,29.841323922388256,29.197584816720337,28.30166636314243,28.035592474974692,27.769578767940402,27.74503291817382,28.440815379843116,27.756417443044484,27.340423215646297,27.30265473946929,27.73480474250391,26.858589871786535,26.14291326701641,26.54082138137892,26.94223138783127,27.85453446721658,27.40682461950928,28.117471674457192,27.847785864956677,28.067516028881073,27.349025536794215,27.421618254389614,27.981157833710313,28.863151184283197,29.38241239078343,30.083432549610734,29.19643226545304,29.959888528101146,29.306022735778242,28.952265069819987,28.869209029711783,29.609886994119734,30.252832390833646,30.088181354571134,30.30382495187223,30.528636805713177,30.79160339385271,30.456004575826228,30.250214135739952,29.467655940447003,30.254454617388546,29.40348039008677,29.93917792988941,30.521446412894875,30.006922555156052,30.855352287646383,31.344218679703772,30.617417856585234,29.667877670377493,30.209808279760182,29.634044758509845,29.880983070470393,30.85147882811725,30.50436197547242,30.563857234083116,30.452991330530494,29.544849357102066,29.061045323032886,28.263343015685678,27.46751870959997,27.744182700756937,27.727799245156348,27.09883889462799,27.602988260798156,27.131364872679114,26.98208110453561,27.620770937297493,27.337189477402717,26.594423145987093,25.640847619157284,25.07161111291498,24.71484401356429,24.419099597260356,23.978935800492764,24.345326790586114,24.31465113023296,23.836510729510337,23.85284138843417,22.872205573599786,22.97344437567517,22.412316550966352,22.171700162347406,21.836548167280853,21.96352248126641,21.83043269533664,21.356279162690043,21.410986985545605,21.445624133571982,21.26163343479857,21.08497626101598,21.853983741719276,21.043727016076446,20.152929642703384,20.104268153663725,19.780988128855824,20.026891297660768,20.58975107781589,20.031690863892436,20.47329046856612,20.74947770545259,21.532180030830204,20.8705768333748,20.03553451411426,19.933815073221922,20.681724726222456,21.268996170256287,22.173450184985995,21.82617367943749,22.341231958474964,21.925784786231816,21.57844662759453,21.269340767059475,21.873650609515607,21.668718828819692,21.94496102258563,21.03194374172017,20.09262250876054,19.25573184667155,18.74278444238007,19.03925990499556,18.082727323751897,18.186374991200864,18.745804126840085,19.642240984831005,20.55369790364057,20.546028233598918,19.894317413680255,19.60020861774683,19.95192077755928,20.02770529128611,19.9593062736094,20.30429118964821,19.95702694589272,19.750688845757395,19.69100453844294,20.335796310100704,19.736361562274396,19.7503949762322,20.74878714699298,20.44539528945461,20.271889256779104,20.51394433621317,21.490895677823573,20.592639402020723,20.945698444265872,21.388556886464357,21.289993430953473,22.241724500898272,21.256758147850633,21.490765538997948,20.767365012317896,21.6853341832757,22.480992548167706,23.060277396813035,22.444951199460775,22.21914498321712,22.774402515031397,22.719833076000214,23.26705191563815,22.849656152073294,22.51994363218546,22.37466908292845,22.183788899332285,22.257425975520164,22.27555996971205,22.789757897146046,22.000573372468352,22.79900633264333,22.410162386484444,21.781301115639508,22.158109369687736,22.41576434765011,22.131982586346567,23.0716295898892,23.34305256092921,22.4054504474625,21.712958964984864,21.2102210088633,21.334101009182632,20.86102012032643,20.666327056009322,20.352323948405683,21.252450379077345,20.438321514520794,20.473333715461195,20.976800074335188,21.109166498295963,22.053873863071203,21.336163317784667,20.47672864375636,19.949591899756342,20.036384279839694,19.393389178905636,19.424866931978613,19.111620478797704,18.571048471610993,17.64665306173265,18.445090560708195,17.797219739295542,18.459571823477745,18.81465968536213,19.656235970091075,19.17922499170527,18.581387780606747,18.34237273223698,18.35634815134108,18.755301969125867,18.73779448773712,18.706235002726316,18.819350723177195,19.13491820683703,18.41927360976115,18.804658225737512,18.093576475046575,19.07686516782269,19.07365756575018,18.08520885882899,19.01276635704562,19.051554538309574,18.760695801582187,19.670953635126352,18.742113927844912,18.3571112556383,18.809499260038137,18.2731694127433,18.053906137589365,17.352199804969132,17.297556324861944,17.747624256182462,18.577409184537828,19.275699573569,19.60450678365305,19.172106224112213,18.597536312416196,18.82551633240655,19.22944724280387,19.765937441028655,19.123718613293022,19.896423821803182,20.63622868945822,20.5398586736992,21.339013756252825,21.9260896560736,22.196654038503766,22.331994355190545,22.75009225681424,22.972429621964693,21.99525970965624,22.02572685899213,21.31573861790821,22.039610899519175,21.990355394314975,21.629122691228986,21.17654539551586,21.492259439546615,21.698902224190533,20.908547253813595,21.41261257091537,20.597289451397955,21.345579968765378,20.86836018320173,20.316442529670894,20.108463461510837,20.454666048288345,20.860394755378366,20.9891640227288,20.243057599291205,20.296130432747304,20.886734086088836,21.796421064529568,22.337082316167653,22.55456489836797,22.62700302246958,22.15672357287258,21.79791670385748,21.586078002117574,21.70168523490429,20.917413503397256,20.808759287931025,20.219128569122404,20.01009382819757,20.591684984508902,19.988059436436743,20.207419564947486,20.383052916266024,19.76983532914892,19.36588058108464,18.96409062994644,19.27001978037879,19.480801819823682,20.058904629200697,19.58427168801427,20.516502323560417,21.165551372803748,21.834778075106442,21.999746813438833,22.7496599429287,22.61010145023465,23.163266812451184,23.23836371768266,23.762999243102968,23.855218616779894,23.035615627653897,23.997485008556396,24.75347581366077,24.94820727687329,25.35027584992349,25.815884256269783,26.706792063545436,26.866200214717537,26.86735333269462,27.016503885388374,27.926071342546493,27.535314260981977,27.570909352507442,28.038695125374943,28.02467877138406,28.616815122310072,28.324870104901493,28.933980938512832,28.713787242304534,29.2463446254842,29.330384618137032,28.88369653886184,29.238162593450397,29.56303343689069,29.054188520647585,29.42932936968282,28.60837352834642,28.28698483807966,27.66791252559051,27.037670804653317,26.820214331615716,25.940357491839677,26.624744993634522,26.841094804462045,27.51898702373728,28.063660176470876,28.290139730088413,28.472556280437857,28.279830482322723,28.87586261657998,28.83928095921874,29.215486624278128,28.340329902246594,28.61001737928018,28.98933133436367,28.195218602661043,27.55692432774231,26.786395583767444,27.55789840547368,26.87380622467026,26.780843512155116,27.01208375580609,26.94804021716118,27.053714528679848,26.15245578577742,27.14837049273774,26.21854430437088,27.201105340383947,27.81100327288732,26.885303805582225,26.788268926087767,27.37082958361134,27.92564303567633,27.999754514545202,27.89094136841595,27.59220295259729,28.401984822936356,27.432604044210166,28.07747616432607,28.648101205006242,29.583337732125074,29.15337738674134,30.152550249826163,29.59044891130179,30.261767407879233,30.044673016294837,30.913440620992333,30.019694407004863,29.166939115617424,29.202481674496084,28.507296461146325,27.873136145994067,26.937968080863357,27.64245766121894,28.10908186994493,28.16936358390376,29.02112765656784,28.467310408130288,27.73408485017717,28.56414605071768,28.651626174803823,28.619704596698284,28.67716971412301,28.122952802106738,28.0727074961178,28.72674653818831,28.41867909906432,28.485418612137437,27.7312917932868,27.61472518881783,26.88048814283684,27.152317830361426,27.83724571345374,27.59533949987963,28.582326505798846,27.835056526586413,27.114526831544936,26.84194848826155,26.987577621359378,26.93747144890949,26.130936193745583,27.120409086812288,27.10273922747001,27.113206308800727,27.824565896298736,28.422017745673656,28.4477851097472,28.95243695192039,29.282333901152015,28.40398954693228,27.482323195785284,28.312430752441287,28.26918063033372,27.593976111151278,27.339613808318973,26.87263843929395,27.01109184930101,27.455008246470243,28.005065957084298,27.546838336624205,27.895771026611328,28.29882917739451,28.53907504491508,29.377572499681264,30.181700548622757,29.869733746163547,29.41443742532283,28.577308969572186,27.99133711727336,28.74239695770666,28.515459541231394,27.94522368023172,27.781211871653795,27.15563063090667,27.425622353795916,28.342748963739723,27.44091160269454,27.738650063984096,27.922300686128438,28.37801876477897,28.663514392450452,28.812826971523464,29.522308184299618,30.13813834451139,30.67671386199072,29.887063363101333,29.074725304730237,30.042859512846917,30.661206677556038,30.549926246516407,31.200256766285747,31.04281340772286,31.407325978390872,30.458663587924093,29.980078413151205,29.810008006636053,29.67807031562552,29.056237197015435,28.553050697781146,28.04736884497106,28.51541263796389,28.94826474180445,27.984471573028713,28.5967560489662,27.75787655543536,27.52692569885403,28.12937245843932,27.444878163281828,26.738680045120418,27.28740967437625,27.313025881536305,26.598427513614297,26.902910380158573,25.959326040931046,26.116007142234594,26.264957571402192,26.514970934018493,25.6762476535514,26.513484986964613,27.205269197002053,26.228945918846875,25.83963067503646,25.30052773002535,24.602675791829824,25.460305630695075,25.219940709415823,25.07927636569366,25.535543059464544,25.652039762586355,25.27722345618531,25.38299810467288,25.125645995605737,24.712765026837587,24.452162641100585,23.543313328642398,22.618750847876072,21.98999223532155,22.188423603773117,22.479756151791662,22.91557894833386,22.428417265880853,22.126087420154363,21.31359309051186,20.447875597514212,19.825066520366818,19.91619881335646,19.011807369533926,18.393714315257967,17.477908903267235,17.231458080932498,16.496844105422497,16.278227189090103,15.30261064786464,15.648863673675805,15.263757277280092,15.560591222718358,14.872896139975637,14.965702454559505,14.11559937056154,14.776341381948441,15.089073066599667,14.98575374763459,14.807853374630213,14.006625670939684,14.302825902123004,13.479832850862294,14.292928843293339,14.982976761180907,14.78929082211107,14.447511779610068,13.906510816887021,13.480972048826516,13.085261844098568,12.50399380363524,12.749937913380563,12.0841731200926,12.735713621601462,11.853284017182887,11.741826724726707,11.874684054404497,11.580673266202211,10.89911485882476,10.39663183875382,11.026299173478037,11.343737613875419,11.25567613961175,11.149319530464709,11.701686029322445,10.714293816592544,10.201864518225193,10.633170450571924,9.920660969801247,9.528256565332413,9.781001846306026,9.931944026611745,10.323976289946586,11.154520365875214,11.216753393877298,11.40495623042807,11.364853379316628,11.245512646157295,10.727211570832878,10.837267389986664,10.495535069145262,11.481521756388247,10.482252775225788,10.911982918158174,11.732720863539726,10.887499866541475,11.830068104434758,12.03240344999358,11.663215500302613,12.3009585281834,12.895154708530754,13.1257428470999,12.158319312147796,12.734636602457613,12.647427218034863,12.308534705080092,11.658190206158906,11.585609108675271,11.00839510280639,10.607083400245756,10.649212474003434,10.897957417648286,10.401507198810577,10.730310370679945,10.77341606747359,9.915293600875884,10.200858190190047,10.589177786838263,11.52078075427562,12.511708440259099,12.430192878469825,12.648082919884473,12.698238391894847,13.044850151985884,13.93417847249657,13.35860569961369,14.24761284980923,14.895139817148447,15.008524584583938,15.944709099829197,16.43867295468226,15.87292184541002,15.658111412078142,16.239678686950356,15.775563548319042,16.216439379379153,15.732477164361626,16.674430723767728,16.16989534161985,16.84634208586067,16.56573829939589,15.821544481441379,16.399601542856544,15.693623413331807,16.52600175747648,15.88167649647221,15.280730295460671,15.67271473724395,15.32679827325046,14.791767335031182,15.72286573285237,15.063983305357397,15.96038816170767,16.843609561678022,17.60402343934402,17.055237798485905,17.205290114041418,16.97199934674427,17.60539035592228,16.948108428623527,16.541605310048908,16.651229820679873,17.433847826439887,16.43800997082144,15.958030777052045,16.002981185447425,15.607298336923122,16.264232124667615,16.847426664549857,16.496066416613758,15.833233735058457,14.959865274373442,14.288255824707448,14.600936005823314,14.368062092922628,14.250456179492176,14.530440491158515,15.24537918716669,15.749445257242769,16.37086276942864,15.556756270118058,15.467888740822673,14.907781415618956,14.478379852604121,13.891460028477013,13.471944495569915,12.488055888097733,12.232446840032935,12.82584086433053,12.73651735438034,13.47554883128032,13.735092957038432,12.865140278358012,12.501077668741345,13.222223988734186,12.719260425772518,13.336757137440145,12.746166767552495,13.553640158381313,13.252562449779361,13.675745974760503,13.513118318282068,13.62639038497582,14.357417705934495,15.32956292713061,15.592749210074544,15.049782047979534,14.69908682955429,14.687213621102273,15.521934820804745,15.375744878314435,16.056075420230627,16.741877221502364,16.32181942043826,16.5878131557256,16.47989411279559,16.34192961966619,15.735101961530745,15.067946027498692,15.893644121941179,15.991051189601421,16.053910604678094,15.195191804785281,15.067068027332425,15.711841966025531,15.64168666023761,16.53650808520615,16.083553018514067,16.874576209113002,17.498909142799675,16.770933635998517,17.083727628923953,18.01689915219322,18.531342891976237,17.6473160777241,17.27773052966222,18.23454536125064,17.743834654334933,17.802856234833598,18.637644877191633,19.36429675668478,18.526921679265797,19.398570725228637,19.801278656348586,20.70716976048425,20.397917121183127,20.65881506493315,20.531112199649215,20.171257770154625,19.449593900702894,18.916447026189417,18.458502067252994,17.69379055313766,16.865009122062474,17.143232548143715,17.16673969104886,17.767373636830598,17.84372929483652,17.361781309824437,17.73336400464177,18.37330669676885,17.48498794157058,17.413853713776916,17.012257759924978,16.578925349283963,15.963706981856376,16.81591053167358,15.985985046252608,15.615132859442383,15.991335680242628,15.655636234674603,15.0678940564394,14.863770869094878,15.276478487998247,15.457733555231243,16.041114293038845,15.34944679401815,14.998098502866924,15.867481619119644,16.26948114996776,17.167631967458874,18.14090782776475,17.30950598139316,17.463017131667584,18.351915778126568,18.979341968428344,18.850158449728042,18.648785714060068,17.783779945690185,17.958128817379475,17.008257132954895,17.270063867792487,17.849980521015823,18.546536366455257,18.955071393866092,18.169352813623846,19.023797086440027,18.328961581923068,17.32918528234586,16.878958678804338,16.975793343037367,16.025042127352208,15.819705943576992,16.583583956118673,16.65340630756691,17.347559314221144,16.832819249480963,17.04377775406465,16.970861660316586,16.58603425277397,15.84070025710389,15.576128682587296,15.98622901365161,16.859664720483124,16.130802229512483,16.779444164130837,16.252482293639332,17.113561504986137,17.401257142890245,18.111370829399675,19.053278064355254,18.292929413728416,17.7448097942397,17.8176173819229,17.50513907102868,18.303811685182154,18.82626497093588,18.196612727362663,19.049467958509922,18.381670237518847,17.449463336262852,16.902554946951568,16.388766509946436,17.154665337875485,16.762572163250297,16.035531152039766,16.388882600702345,15.482279036659747,15.903028753120452,16.28543452778831,15.888524908106774,16.674601287581027,17.06755323940888,17.29374257614836,17.509429686702788,17.867659287061542,17.54475623741746,17.055709935724735,16.189333414193243,15.774473557248712,14.85910347290337,15.557297388557345,15.874722807202488,16.72227010363713,16.739803518168628,17.56219801073894,18.53999812854454,17.955760050565004,17.53200126858428,16.79714263835922,16.732658233493567,16.81259363470599,17.721028885338455,17.308979204390198,17.862120975740254,17.517765892203897,18.11108459625393,18.978721166029572,19.696266141720116,19.233288732357323,18.301067324820906,19.227654568850994,19.100275284145027,18.938141216989607,19.55143904639408,19.125652111135423,18.137222594115883,18.379418949596584,17.398978842422366,16.768341047223657,16.283256269060075,17.137200723402202,16.590364490170032,17.348754876758903,16.881674410309643,17.032345049548894,17.88236760161817,17.66199647868052,18.63125620270148,17.859640832059085,18.016483122948557,18.123339724261314,18.992114099208266,18.701049718540162,18.792552012950182,18.718847094569355,19.501044736709446,19.737151416018605,18.76118714455515,19.114382159896195,18.90175591595471,19.33878494799137,18.656298922374845,17.990144187118858,17.9701029304415,18.59259940730408,18.504671399481595,18.395776833873242,18.487938933074474,19.482799308840185,18.549482877366245,18.880059935618192,19.533405567985028,19.846937853377312,18.949814463034272,18.57463675364852,18.435735325794667,19.029400732833892,18.555171367246658,18.16236263886094,17.71590602910146,18.70433367881924,18.086706762667745,17.17610707739368,17.853784241247922,18.449547260068357,19.040135486982763,18.273896685335785,18.427212990820408,18.091258256696165,18.743733550887555,18.83344864146784,19.37201253604144,19.14027005759999,18.554483646992594,18.587476547341794,19.570568936876953,20.338434773031622,20.88338172249496,21.525598612613976,21.8329254463315,21.74504034779966,21.075107098091394,21.086316578555852,21.031620606780052,20.688563202042133,20.34253735281527,21.009654744993895,20.135745672043413,19.809750160202384,20.06283085141331,19.19952753186226,19.718547934200615,19.324971728492528,19.992798978462815,20.043098483234644,21.00969871878624,20.65156710613519,20.534891447983682,19.595422585494816,19.764454565476626,19.72679395508021,19.736413572449237,18.828166365157813,19.748137484304607,19.096827910281718,18.106713612563908,18.552830989006907,18.235216518864036,17.915021622087806,17.779471810441464,16.78800521697849,15.926046388223767,15.338855744805187,15.929483730345964,15.71894876519218,14.87215045467019,14.36650050105527,14.856709061656147,15.267349132336676,15.811851280741394,15.211602452676743,15.682991696055979,14.91864797892049,15.884292532224208,15.081008544191718,15.666363288648427,15.537100423127413,15.930428510531783,16.64375399518758,15.980756605044007,16.915523598436266,16.081800567451864,16.37035797536373,15.44539746409282,14.726053986232728,14.945118826813996,14.807281001005322,14.469789883121848,15.002920711878687,14.326167042832822,13.718693715054542,13.296333784703165,13.267316330224276,12.382236926350743,12.939346674829721,12.969513479620218,13.73701367340982,13.090353027917445,12.41910733608529,12.033815910108387,12.977881256956607,12.417772123590112,11.836480431258678,11.137192729860544,10.302265624981374,10.812236952595413,11.097900718450546,10.184124772902578,11.166515394113958,12.005363112781197,12.201592300552875,11.730348327197134,11.836552346125245,12.222692608367652,12.32662100950256,11.782425644807518,12.447870240546763,12.988674552645534,13.399636210408062,13.509313986636698,14.329560765065253,14.797610062174499,15.269618997350335,15.130802593193948,15.87257508886978,14.966673671267927,15.141635309904814,15.308870768174529,15.650303329806775,15.055440508760512,15.81682475330308,15.700704734306782,16.673286657314748,17.297208935022354,17.300628774799407,16.673672137781978,17.366592298727483,16.861333183478564,16.60810867883265,16.264124925248325,15.951401648111641,15.549711047206074,15.030608498025686,16.005916133522987,15.4041452948004,15.215324455406517,16.0190136609599,16.666073130443692,15.97396483272314,15.475882648024708,15.085618461016566,14.634689498692751,14.809801233932376,15.23034599982202,15.33522621402517,15.386449510697275,16.38029194623232,16.03164947545156,16.120677653700113,16.085915896110237,15.167222980875522,15.861747425515205,15.490790056064725,14.771871349774301,14.252609259914607,13.845356985926628,13.440753549803048,14.39239996438846,14.646647105459124,14.219551642425358,14.738682157825679,14.761742131784558,15.654419005382806,14.896415551193058,14.473980818875134,14.306828173808753,15.185444147326052,14.550782070029527,14.426859252154827,14.437527881469578,13.648590616416186,12.688618638087064,13.42631331179291,13.725239270366728,14.542326845694333,14.388614353723824,15.19260918861255,15.484086099080741,14.621571704745293,13.824166379403323,13.683043881785125,14.117588384542614,14.697461341507733,14.853656528051943,15.745574127417058,16.699883678928018,16.652829279191792,16.677008248399943,17.51072772871703,16.673461177386343,16.465866307727993,15.725222724955529,15.139674855861813,14.406585187651217,14.635826745536178,13.651302868500352,14.012556149624288,14.924232859630138,15.172797623090446,15.494592968840152,16.416089868173003,15.969688813202083,15.248706719838083,15.122327284421772,14.383450482040644,14.897279198747128,14.395814660936594,13.720127714332193,13.455047058407217,13.141168143134564,12.899795527104288,12.881735609844327,13.265932864509523,13.614813323598355,13.947406616993248,14.03395382873714,14.016518629156053,13.591804079245776,12.919333826284856,12.529419142287225,13.382943991106004,13.281690871808678,14.045380104333162,13.099365033209324,13.741807533893734,13.681139837950468,12.938635453116149,13.210711323656142,12.525192077737302,12.034429850522429,12.074869317933917,12.80655905790627,12.673884652554989,12.299148884601891,12.933025786653161,13.43850805144757,13.346597610972822,12.936636498197913,12.128740117885172,11.875266219023615,11.101670010015368,11.399216184392571,11.73378294100985,11.182296035811305,11.251120218075812,12.0386145375669,11.12082401709631,11.744192268233746,10.74432402709499,11.495138320606202,11.38713158108294,11.767644863575697,11.889695699792355,11.613199521787465,11.108331365976483,11.758688382338732,11.787879989948124,12.257729112636298,11.941865211352706,11.625436608679593,11.51560330297798,11.422583675477654,11.673678006976843,12.47137344488874,12.859699613880366,12.4521754514426,12.835382462479174,12.017232389654964,13.012144490145147,12.792219333350658,13.10843602893874,12.555786673445255,11.90864208061248,12.868375362828374,13.735380431171507,14.411148424260318,14.021077568177134,14.628557079005986,14.421312703751028,13.663849212694913,13.097197759896517,13.747528294567019,14.079258645884693,14.433941521216184,15.299110572319478,15.995542149990797,16.727520941756666,16.037612634710968,17.013456233311445,17.792512038256973,16.819479180965573,16.777024489827454,16.90006940625608,16.480104244779795,15.517044974025339,15.441947530489415,15.216620231978595,15.639023182448,16.154257277026772,16.447886931709945,15.725718235131353,16.46767896739766,15.884605791419744,16.522698283661157,17.232452056836337,17.664043073542416,16.750409478787333,15.800221682991832,14.956031764857471,15.227410955354571,15.32925514318049,14.697014885023236,15.565042127855122,14.832801515236497,15.130495510529727,14.154318693559617,14.89212905894965,14.999777040909976,15.137064376380295,14.448460280429572,14.619856422301382,13.71464328840375,13.860801490023732,13.960496983490884,14.084039583802223,14.720343173947185,14.804130828473717,15.487298535648733,16.145356636494398,16.02906578965485,15.90039672050625,16.35278159659356,15.906254455912858,15.65578625863418,15.584037160500884,16.312473549041897,16.145498160738498,15.439174000173807,16.426941108889878,16.34596630418673,15.962322774343193,15.150713271461427,15.169128871522844,16.159631638322026,16.012585673946887,15.99470326025039,15.088564455043525,14.639623431954533,15.214847756549716,15.091269792057574,14.132479507476091,13.59094449924305,13.85781458998099,13.537537420168519,13.797236735932529,13.35550200752914,13.906550320796669,12.944292096886784,12.20845804642886,12.796738136559725,13.579738647211343,12.928822157438844,13.168508391827345,13.256300697103143,12.729502660222352,11.809643609914929,12.043997392058372,11.05067767901346,11.826663051266223,12.007993618026376,11.6961374823004,11.267058509867638,10.821625544223934,11.674264142289758,11.8129200367257,12.783710497897118,13.304844902362674,14.304680206812918,15.048687623348087,15.86738449614495,16.284178456291556,16.629210670944303,17.353247403167188,16.736246050801128,16.204447157215327,16.552287187427282,16.046002921182662,16.84014948597178,17.736316548660398,17.37529224762693,16.49404369154945,17.05002149194479,17.473479783628136,17.252227527089417,17.087436905596405,17.66828065738082,18.39909027609974,17.57231312058866,17.460142333526164,17.506985682994127,18.21632959274575,18.496085631195456,19.14363400451839,18.899083003401756,19.223375875037163,19.05945061938837,19.013032144401222,19.841822511982173,19.586081678513438,20.284640511497855,20.74893221212551,21.263922456186265,21.79760576458648,20.971970989368856,20.26327648991719,19.6945240967907,19.806480640079826,19.926411640830338,20.614427180029452,21.573035021312535,21.10870681842789,21.340124908834696,21.276977707631886,21.982325228862464,22.26730281021446,22.903646745253354,23.763162455987185,23.70520413061604,24.35723800677806,23.70136919245124,23.404088688082993,24.368250554427505,25.30088199302554,24.78760617086664,25.770649923477322,25.535763557534665,24.606643492821604,23.697003717999905,24.15030773356557,23.194389037322253,22.899440024979413,23.039045976940542,22.347401245031506,21.75188545510173,22.206375315319747,22.55631731962785,23.437091381289065,22.598837605677545,22.889847823884338,23.489921196363866,24.07902996521443,23.326180247124285,22.69775883294642,22.663682864047587,22.053296430502087,21.078946710098535,21.193460373207927,22.13061264762655,21.886474478058517,22.731644096318632,22.961275370325893,22.255409583449364,21.58046519337222,22.366139410063624,21.878742745146155,22.055263957940042,21.562431011814624,21.31276531238109,21.163849082309753,21.66427156375721,22.501353953499347,21.684103535488248,20.958509957417846,20.059031472541392,19.34383675083518,18.78628920810297,18.95951211778447,19.53790176101029,19.957719140220433,20.42496014200151,20.57560044247657,21.128314434550703,21.710572404786944,22.062208377290517,21.150121715851128,20.913378314115107,20.776179810985923,20.27410638332367,20.912655172403902,21.873942660633475,21.981862510554492,22.658737217541784,21.857237725518644,21.196366167627275,20.47216163435951,20.971244218293577,19.977436227258295,19.46967203076929,20.092554674018174,20.77787088090554,21.559026516973972,21.315423684194684,21.601741826161742,21.069082314614207,20.887659275438637,20.235210246406496,19.97500858688727,20.81499930517748,21.109654649626464,20.349387838039547,20.793242257088423,21.124976341146976,21.07778042787686,20.425279217306525,20.568292824085802,20.007130130194128,20.157362977042794,19.360015034209937,18.43693596450612,17.890981919132173,18.44058134406805,19.310872959904373,20.037373151630163,19.555748228915036,18.95696087833494,18.344372681342065,18.512943644076586,19.505167562048882,19.13767741434276,19.846088132821023,19.873309557326138,19.36156598944217,19.283799584489316,18.918312563095242,19.30392744485289,20.05940738832578,19.434189822059125,20.066390336025506,19.93321397108957,19.099580795504153,19.616598466411233,19.090802101884037,19.62678133137524,20.47086957655847,19.521713202353567,20.261522920802236,20.636853646486998,19.663412783760577,20.52377711934969,21.037492824718356,20.579576815012842,21.490738064981997,21.644830977078527,20.661113156937063,19.812607523519546,19.007658555638045,18.857004379387945,19.17263324931264,18.735842919442803,18.605211958289146,19.18027972849086,19.396853966172785,18.766483284067363,19.199922944884747,19.282399408053607,20.020636739674956,19.79098327225074,19.557037393562496,18.755405572243035,18.15286862058565,17.898811385035515,17.090451397467405,16.71997138671577,17.68301775958389,18.256100906524807,17.793285588733852,17.693855060264468,17.990493276156485,17.077767881564796,16.382123802322894,16.939991794060916,17.312208524439484,16.413718359079212,16.633220582734793,17.437724381219596,17.55440164776519,17.381606131326407,17.591959728393704,16.924617828335613,16.62002043891698,16.195562817156315,15.465611749328673,14.624596084468067,15.461979487445205,15.471583357080817,16.13630417874083,16.062137125059962,16.06702458159998,15.233433388639241,14.28437713952735,15.069147397764027,15.880948284640908,16.504416572861373,17.148094753269106,18.09416443388909,18.89964192872867,18.985253059770912,19.11165714962408,18.749217877164483,17.8933611609973,17.855379667598754,18.62661087838933,18.43668636213988,19.424251365941018,19.109650649596006,19.439001384656876,20.29640232771635,20.02899297233671,19.6365337963216,18.883629724383354,19.58130230754614,20.250658084638417,20.50055592507124,19.561973626725376,19.20389249920845,19.921753662172705,19.581764900125563,18.861019782721996,18.69668567320332,18.223077445756644,18.345771341584623,18.47144466964528,19.216846108902246,19.199719937052578,19.764453740324825,18.87265345780179,19.821452110540122,20.80240941978991,20.717290883418173,20.994167672935873,21.21177689684555,21.080706250388175,20.387230495456606,20.089920539408922,19.472992529161274,20.049037453718483,20.10265348199755,20.415499944239855,20.62501083035022,20.29608971439302,19.883840749505907,19.20076631102711,20.129854124970734,20.827115242835134,21.743799773510545,21.033103830181062,21.14199444418773,20.94255161471665,21.749276011250913,21.32879784097895,22.024468728806823,21.17283754935488,21.925069210585207,22.23070365190506,21.661382283549756,21.78947324398905,22.58230847446248,22.92556541459635,23.866266867145896,23.954710028599948,23.281895535066724,22.89158753398806,22.52736569289118,23.45698123984039,24.005296230781823,23.696634760592133,24.587002377491444,24.100942377001047,23.32489726273343,22.777284166309983,21.93014976242557,22.541515812743455,22.620770490262657,22.93420143984258,22.861540450248867,23.6943256133236,24.51989506930113,24.699354330077767,24.340672838501632,23.59577550832182,24.30031418381259,24.577583470847458,25.417097904719412,26.29775521438569,26.678765346761793,26.165477109141648,25.63491202937439,26.25747079961002,26.54088034760207,26.417680475395173,26.05727763660252,26.523236541543156,27.330716233234853,27.660309738013893,27.077249855734408,26.523005530703813,27.119831275194883,26.19740519206971,27.190651826560497,26.68982859654352,26.624570422340184,26.36493379343301,26.931957608554512,26.618858429137617,26.41567786410451,26.555911402683705,26.25546263763681,26.681760067585856,25.8115366185084,25.905235172715038,26.168173382990062,25.645441099535674,25.492293464485556,25.75244494760409,25.431346515659243,25.96860737586394,25.43071836186573,25.31264655571431,25.328211228828877,26.195331293623894,26.99575600400567,26.4311844734475,27.104113729670644,27.79951330088079,27.228711686097085,28.047030996065587,28.28036988945678,29.073515153490007,28.693381495773792,28.556255628354847,29.39011414721608,29.40371327660978,28.82257141917944,28.78769598947838,29.732713147532195,30.391522265970707,31.28698157891631,31.229511010926217,30.881163354963064,30.700399873778224,31.693444377742708,30.892158961389214,30.17551692482084,30.661021162755787,31.216548170894384,32.014581536408514,32.8862642175518,33.7232827777043,34.223303684499115,33.9577772221528,34.84189520869404,34.92227329779416,35.63385292654857,36.48206785554066,36.182484429329634,36.2473931806162,36.4630565722473,35.63659791601822,35.0746363918297,34.09611664246768,34.47137048980221,35.46394573757425,35.53110956866294,35.66498958878219,34.93275293940678,34.40191953955218,33.566273995209485,33.835442589595914,34.22536613885313,33.68459147075191,32.71138783311471,33.67301076557487,33.33868150599301,34.25288627529517,33.90430449694395,33.84122042031959,34.31585608422756,33.583151303231716,32.983123410493135,33.42931579332799,33.46327481372282,32.565597957000136,32.10513181751594,31.949717245530337,32.00085962517187,32.77687260508537,32.35615898668766,31.93192958738655,31.949450890999287,31.885819177608937,31.48684623790905,31.31558606494218,32.19596011238173,32.7233103630133,33.03984741168097,32.18680596584454,31.581045321188867,32.27293087076396,32.32685136562213,32.61855382705107,32.205863100942224,31.268301061354578,30.655264573637396,31.590225672349334,31.822801918257028,32.51840013964102,33.25591656379402,33.223717191722244,32.311726392712444,31.594789823051542,32.49857859313488,33.41610452486202,34.143952117301524,34.04765906278044,33.36802540253848,34.23698500590399,34.585274959914386,35.44289969233796,35.75708234682679,35.760472727008164,36.43125648749992,36.42371397651732,36.90755944093689,37.26317608868703,37.35925660468638,37.60575847374275,37.14480025926605,37.30058933701366,36.48513178434223,36.28120931284502,35.89350526407361,36.33655629027635,36.495012999046594,36.90396818052977,36.44462067494169,36.25627255253494,36.58029854577035,36.26175388600677,36.02054393058643,35.90201655542478,36.67183848656714,35.92229117965326,36.80371793685481,35.84284973097965,35.15538909006864,34.467285607010126,35.10957694193348,34.26298547163606,35.01457818876952,35.43773020943627,34.4749845629558,34.30983704980463,34.388566764537245,34.864884544629604,33.94138048356399,34.12533495109528,33.341886411421,33.55310541810468,33.8891866854392,34.031258527655154,34.13495743786916,34.758288715500385,33.84449757495895,33.94985688617453,34.325967986602336,34.94848887482658,34.22307478869334,34.639216208364815,33.951253646053374,34.396541714668274,33.52792629180476,33.77678243955597,33.63502116408199,34.44908231496811,35.19744807807729,35.86526130698621,35.2764902478084,35.84763771481812,36.36828531883657,36.17656398797408,35.412638975307345,35.163181317038834,35.49293447472155,34.81554660759866,34.41880462272093,35.072236503474414,34.77496377564967,35.34973128372803,35.439096667803824,35.3710625548847,34.447089430410415,34.671006061602384,34.67897452739999,35.378082362003624,36.20986750070006,35.87674176041037,36.61810378590599,36.31683981977403,35.32290109153837,35.146814750973135,35.64711740845814,34.76299586845562,33.96593761071563,34.88265282008797,35.51230357494205,34.85766464052722,35.66826029121876,34.67939066607505,34.158800868317485,33.80937553849071,34.2142292750068,34.93135267775506,34.75344623392448,34.20957685774192,33.61373374937102,33.78206450166181,33.686403723899275,34.026183082256466,33.70102551020682,34.44686848623678,33.84659486589953,34.349354560952634,34.04188647866249,33.43036689190194,33.13091355795041,32.195972157176584,32.1231627878733,33.0329689825885,33.680498253554106,34.536012447439134,34.391628878656775,34.611294727772474,33.72221011435613,32.960520999506116,33.59351022588089,34.09630625881255,34.43713641632348,33.482628820464015,34.20286763366312,34.42345337802544,34.81819324987009,33.855515621136874,33.99454233748838,33.03013006830588,33.317616677843034,33.449673796538264,32.91962886368856,33.10710113728419,33.04962627682835,33.29686741437763,32.46106291562319,31.511658154428005,30.899336737580597,31.881652971729636,31.604548383969814,32.047415940091014,32.18166315276176,31.704815498553216,32.09263350907713,33.039963259361684,32.92276263516396,32.218935545068234,31.71043863752857,31.73448021709919,31.228720353916287,30.836104083340615,31.384036814793944,32.247324489522725,31.729709963314235,31.56573095358908,30.73265466140583,29.89658738253638,30.46691396366805,30.131542259827256,30.522736822254956,29.841338374186307,29.015919597353786,29.884841059800237,29.846575037576258,29.361325041390955,29.41132812248543,28.97762444196269,28.209723066538572,28.24927419004962,27.81425948161632,28.1984727634117,28.504255684558302,28.884249431546777,28.880778718274087,29.03073460003361,28.486871050670743,28.828225269448012,28.36113134911284,28.36762567004189,28.903556454461068,29.04276738408953,28.082925152033567,27.16633102390915,27.497664377558976,26.526414417196065,26.457465467508882,26.631237705703825,26.579009966924787,25.666246405337006,26.435277961194515,26.302860370837152,25.66754753747955,25.890547388698906,25.601447462569922,26.024620147887617,25.54350700834766,24.96141590923071,24.50546556059271,23.797315313946456,22.985921753104776,23.553377993404865,24.480652566533536,23.718489484395832,24.660630945581943,24.70575653249398,25.58676702855155,26.38154390314594,26.23987323977053,27.12701028911397,27.953309813514352,28.894057411234826,28.666196145117283,28.564904313534498,28.946393175050616,28.092744276393205,27.773618314415216,27.432973850518465,26.52628388721496,26.08966492721811,26.458203344605863,26.99913981044665,27.383489372674376,28.257894534152,28.245781517587602,28.073175481986254,27.24876994965598,26.604160899296403,26.05839081853628,25.576288992539048,24.745600547175854,23.901000185869634,24.505315092857927,25.0672303927131,25.4228900433518,25.71189058246091,24.71783590456471,25.067094705067575,25.256317279767245,26.23625744180754,26.951402796432376,26.03466978808865,25.812998837791383,26.552433100063354,27.09020711760968,26.148028423078358,26.95394745701924,27.28339961403981,26.62166770780459,25.626922745257616,25.830753734800965,25.011922284960747,25.731596213765442,26.102447834331542,25.776733601931483,25.718320085667074,25.65032109292224,25.140215266495943,24.479330465663224,25.089882917236537,25.33923073625192,26.267886484973133,27.100864264182746,26.12077333498746,25.799452445469797,25.402952909935266,26.26001156726852,26.183787118643522,26.773614495061338,27.76713963598013,28.202142732217908,28.184767801780254,27.806137929670513,27.505494891665876,28.16793254064396,27.692248793318868,27.43375144759193,27.662214898038656,28.461326682474464,27.73779814131558,27.820127320010215,27.129913948941976,27.15888768294826,27.56477862969041,26.606998545117676,27.11806481331587,26.444964083377272,27.380557247437537,28.34609656361863,27.39704490127042,26.605577080510557,26.2135627893731,25.978636684827507,25.73254990298301,24.81833647377789,24.287104718852788,23.502920879982412,23.59080268535763,24.488005966413766,24.07274523144588,24.423728602938354,24.184371023904532,24.746893911622465,25.515595792327076,25.184018654283136,24.778654156718403,25.16396627156064,24.914432224351913,24.974432913586497,24.44932443695143,24.568330354522914,25.51107627991587,25.813549387734383,25.514566994272172,24.973712861072272,24.927459416445345,25.004615996498615,24.301037435419858,24.704549856483936,24.578120877500623,25.222126002423465,25.566129335202277,24.896726101636887,24.889125041663647,25.859074337873608,26.532630225643516,26.750425450503826,27.196585442405194,27.424426044803113,27.96109393797815,28.410369721706957,27.78527684416622,28.186445778235793,28.144672858528793,27.946979814209044,28.674261638894677,29.183218862395734,28.640891385264695,29.031027984339744,29.843526461627334,28.886763331014663,28.652467611711472,28.664929995778948,28.589993786998093,27.91224960796535,28.70446103438735,29.249802430626005,29.03177652740851,29.96894971560687,30.771450537722558,30.837591741234064,31.210018075071275,30.361629887484014,30.900177229661494,31.110021125990897,31.312608444597572,30.776106024626642,30.480469291098416,29.924203130882233,29.765520439948887,30.53913809824735,31.485082045197487,32.13157429965213,32.476540899369866,32.633154273964465,31.681059882976115,32.09188457299024,31.561726117506623,31.06313098175451,30.60270748892799,31.20773129723966,30.39952430455014,30.329855099786073,29.644500297959894,29.27431630063802,29.5160373095423,30.190453584305942,31.01534060249105,31.210027755703777,30.824542799033225,30.91034400742501,31.733889929950237,31.800641296431422,31.383166244253516,31.337089512962848,30.428734594024718,30.16384844155982,29.538375503383577,28.583179300650954,28.37415103195235,28.297500014770776,28.52691136766225,28.107218670193106,28.887117503676564,29.659922947641462,29.79746686015278,30.470651420764625,30.917366847861558,30.371804235037416,30.61136361863464,31.25771340355277,32.21759054530412,33.11806269688532,33.62231685593724,34.52250256668776,34.008894259575754,33.53673972003162,32.722131359856576,33.118973136879504,33.40708972141147,32.417079854756594,32.75360923167318,33.270866448991,34.25958843994886,34.97516903374344,34.77072036918253,33.83511347929016,33.032709730323404,32.278544216416776,33.046240956522524,33.61518449988216,32.94374606758356,32.549961058888584,32.68447060044855,33.54497331706807,34.01835472229868,33.405410507228225,32.67107597924769,32.10554580949247,32.32939373282716,32.54245061567053,32.879982063081115,32.27445695968345,31.282595564145595,31.707710999064147,32.493682572152466,32.09750687982887,32.56584627786651,33.25903079472482,33.45494025852531,34.078955279663205,34.758151503279805,33.8379668481648,33.740030659362674,33.37487720372155,33.394446288235486,34.37708492996171,34.42546372488141,33.43956254282966,33.694106582552195,33.54208977194503,32.68516046134755,33.05059065343812,32.594764253124595,31.81931022182107,31.24044593796134,31.179503073450178,31.819691739510745,31.11383671546355,30.916291372850537,30.2524957023561,30.986002814490348,31.688825883436948,31.50611131871119,31.169099959544837,31.310823576990515,30.55036832112819,30.51229194132611,30.088503960054368,29.60003294982016,28.81023862818256,29.29323450429365,29.603069005999714,28.89247577218339,28.4226549314335,27.932910894043744,28.8219329030253,29.03423366462812,28.087262229528278,28.958688267040998,28.92303285934031,29.451354475226253,29.61320626968518,30.04465380264446,30.526817926205695,29.639007568825036,29.66069880872965,30.57949463231489,31.513434428256005,32.479302503634244,31.544635438825935,31.22719348082319,31.586540847085416,31.621028291992843,32.25330123165622,31.46986519591883,31.972782951779664,31.838456774596125,31.880860219243914,31.72085665538907,31.0123998131603,30.81596764922142,30.38148457603529,30.507100282236934,29.845906099770218,29.29273478826508,30.14417885662988,29.586648570839316,30.577901063486934,31.227554413489997,31.05105001339689,30.527572113089263,30.933618952985853,31.51132099283859,30.63991586584598,31.030638392549008,31.020129891112447,30.882780286017805,31.053175675682724,31.96443973807618,31.344640157651156,30.635259273461998,29.738560313358903,29.12787038879469,28.37467746809125,28.359839477110654,28.302570071071386,29.04455978795886,28.50744478451088,28.278979502618313,28.494542851578444,29.299769955221564,28.702108713332564,29.24221960781142,28.30836990615353,28.393679250963032,28.22768853418529,27.599999669007957,28.308093065861613,28.525560410227627,29.14675479242578,30.050977325998247,30.599428116809577,30.298533335793763,29.614501328207552,28.687796901445836,28.391068218275905,28.716210002079606,29.054485335946083,28.163652158342302,28.043533703312278,27.95680642221123,28.40405290853232,28.624670929275453,28.10985420877114,28.161847338080406,27.62238285318017,28.46540302876383,28.76033057225868,28.61291917366907,27.798333532176912,27.317571717314422,28.198142265435308,27.92744753183797,28.92333881603554,29.357008694671094,29.16136438958347,29.223265304230154,28.80263856984675,29.392397470306605,29.762167129199952,30.358288591727614,31.224850047379732,31.4601855953224,31.517356096301228,32.16200819471851,31.58959441818297,31.24973084963858,31.436819050461054,30.671400344464928,30.62178973853588,30.836864289361984,31.59727465827018,31.191067937295884,30.927788680884987,30.113391684833914,30.173435742035508,30.467338829301298,30.31463999673724,29.86462337942794,30.841724582016468,30.50065971398726,30.234077075496316,29.515920468606055,30.384997877292335,30.13997695595026,30.76632143650204,31.37079258542508,31.60439935978502,32.497262535151094,32.1980797201395,32.584372552111745,32.12508405186236,31.35517973313108,31.120197321288288,30.531042934395373,29.88006659504026,29.337939985096455,29.14066387945786,28.157324076630175,27.379019723739475,26.531909885816276,27.28679325338453,28.047951453365386,27.81476441444829,27.17787810601294,26.99569616653025,26.684370782226324,26.445637699216604,26.566643361467868,26.233144011814147,26.14606058364734,27.050685194320977,27.272713413462043,27.006649118848145,27.528053829912096,27.98451402410865,27.2328295330517,26.344471480231732,26.021844234783202,25.260427720379084,25.49418896716088,26.00758520839736,25.900522850919515,25.26597858266905,26.148591396864504,26.266960692591965,26.87737137172371,26.674478642176837,26.54759782087058,26.329633379820734,25.93080859957263,24.957293287385255,24.363221527077258,23.896081754006445,24.87211504066363,24.03898963937536,24.754020006861538,24.13426609383896,24.82967953151092,25.413729174993932,24.78722255723551,23.86315668048337,24.638424632139504,24.20214503724128,24.93295082030818,24.144217925611883,23.704193646553904,23.2722073844634,24.175115568563342,24.93044399190694,25.364516127854586,24.72178476722911,25.18353072507307,25.927115362137556,25.986421407200396,25.044735725969076,25.164876556955278,24.627011064440012,25.525795036461204,24.557636098004878,23.85480364691466,22.862578053958714,21.99291579471901,22.319962275214493,22.8364743757993,23.548434366937727,23.904461916536093,22.92268167156726,23.250069330912083,23.542150407563895,24.084963063243777,23.16695474041626,22.221183695830405,21.2260014237836,21.072297554463148,20.91835118085146,20.79685198329389,20.209772319998592,20.951171613298357,20.66171242762357,20.21956852823496,21.17038034647703,20.5584040787071,20.411000311840326,20.184791438747197,19.511315184645355,19.61240906594321,20.12487081484869,20.161427261773497,20.475022681523114,20.726551992818713,21.06406040582806,21.345972346141934,22.083229836076498,22.04674879135564,22.387152979616076,23.13814525352791,22.834149499889463,23.646832718979567,23.794796091038734,23.453838121611625,23.797576064709574,23.736872958019376,24.500126847065985,24.58837736491114,25.520867170300335,24.864461923018098,24.884249138645828,24.658457728102803,25.442280401010066,26.357988679315895,27.2445486811921,27.049243783112615,26.136164580006152,25.909519724547863,25.145064011681825,26.0882003842853,25.476424461230636,26.462248951662332,26.944745110347867,27.70611057570204,28.52685631206259,28.13900603959337,28.134441864211112,28.301300158258528,29.229594576638192,28.364791048690677,29.341463233344257,28.621183635666966,29.549632873386145,29.236562047619373,29.737044064328074,29.004121525678784,29.898806447163224,29.257360087241977,29.680445095524192,29.756231965497136,29.981819960288703,29.859497031196952,30.790004645939916,30.63166516367346,31.49478767486289,32.213186922483146,32.96124398941174,32.494366152677685,32.751759993843734,33.54684351058677,33.671380422543734,34.31019668607041,34.0523894415237,34.675155920442194,34.93542899331078,35.60403782688081,35.34812162909657,35.0849186135456,35.081175928004086,35.66241734055802,36.272213771007955,35.32956710085273,34.577661900315434,33.64388987747952,34.070967794861645,34.78921237261966,35.74509662948549,36.55231625074521,36.91366063943133,37.44205471035093,37.286145315971226,37.9336989140138,37.58257230883464,37.24024328775704,38.17593229468912,38.30454754875973,37.426440299488604,36.83581847604364,37.445613868068904,36.9453753028065,36.26687333267182,36.675418908242136,35.78843393409625,35.98496075486764,36.40665582194924,36.95500300358981,37.062093272805214,36.25917088240385,36.43821806507185,36.19535115035251,37.11530991550535,37.17276426544413,36.26742329960689,35.996589817572385,35.24910286208615,35.4833004581742,35.35276005184278,35.86802480369806,35.43482719734311,36.33802282297984,37.010082490276545,36.17173852864653,35.62294841604307,36.43986686132848,36.36680458765477,36.58396712038666,36.30616697203368,36.660916668362916,35.732607040554285,35.68774863798171,35.62904791906476,35.5740177561529,35.12469364376739,35.090633795131,35.15111291920766,35.04780108248815,35.44824913702905,35.85361121641472,36.72445859480649,36.2966938149184,35.404925122857094,36.29832120705396,35.585460083093494,35.68557520257309,35.433322879485786,35.39376231096685,36.389241862110794,35.51459310622886,35.402260014321655,35.82066878071055,35.817735366057605,35.19524630904198,34.25894504785538,33.89967401418835,33.06099659856409,32.149870726745576,32.51387106301263,33.129042715299875,32.803098048083484,32.41712891450152,32.84034828841686,33.23433285905048,32.623796097934246,32.02043687365949,31.515995339024812,31.272996412590146,31.291038715280592,31.90287092095241,32.82640212262049,32.89792666491121,33.228840943425894,32.39980918960646,32.794588522519916,33.08009477937594,33.35155873885378,33.071290304884315,33.716900484636426,33.84089997038245,34.29820459522307,34.79573559667915,34.89255363680422,34.855035251472145,34.869287924375385,34.934574478305876,34.71688887476921,33.81837203819305,34.69766130950302,35.41211755713448,35.97144361631945,36.185342352837324,35.37179011013359,34.87881942791864,35.020175945945084,35.83908446133137,34.972842985764146,34.542378208599985,34.18104898510501,34.27252748189494,34.947258808184415,34.085147141013294,34.21668019331992,33.74091387121007,33.63264886243269,34.231019515544176,34.06260603899136,34.747654096223414,35.29605155624449,35.34025694523007,35.96475915098563,35.648885883856565,36.13531057815999,36.5893208659254,36.84281238494441,36.28078521974385,35.56463277991861,36.37329333694652,35.98265620833263,36.276092980057,35.86253792187199,36.170181369874626,35.40811863169074,34.98745764512569,34.7089929045178,34.9573836135678,35.16866254154593,34.19438809901476,34.50139760132879,33.642334871925414,33.91328261606395,33.267879595048726,33.12908613542095,33.21555881248787,33.09017542609945,33.029975157696754,33.87155182706192,34.83955320017412,35.67809022311121,35.897796782664955,35.70510830776766,35.84758097073063,35.18600251385942,35.19266623305157,35.655278847087175,36.031928927171975,35.8263666825369,36.30305855581537,35.631063955836,35.419987545348704,36.021884836256504,35.770985497161746,35.101228275336325,34.27648013364524,35.11416735500097,34.422962160781026,33.44048269325867,34.15423870598897,33.60866251587868,34.19272909220308,34.40014047687873,34.448944311589,34.86645205877721,35.61378416093066,35.70188252720982,35.858471574727446,36.285232215654105,36.63796269521117,36.009448854252696,35.20257749594748,35.79230396077037,36.55478332424536,36.680530762299895,36.44915532087907,36.6763599650003,36.90785161824897,36.684690210502595,36.09463724959642,36.89179114671424,36.66641281777993,36.51324311364442,37.227886161766946,38.171344958245754,38.861008474603295,38.880352625623345,38.5709511237219,37.888563071377575,38.12572502391413,37.6694009443745,37.065135365817696,36.32856290740892,37.03818535944447,37.72789582842961,36.98499277513474,37.236272796522826,36.99807510338724,37.57500088447705,37.1167240832001,36.47883742349222,36.69500484969467,36.12932505225763,36.17668284708634,35.38906104536727,35.00612000050023,34.29151944303885,34.916755491402,35.54422992980108,35.948159500490874,36.34987785248086,37.018245385959744,36.23253296408802,37.204215202480555,37.52153946645558,38.110599455889314,38.64185900660232,38.898462454322726,37.98707054182887,37.21193590713665,37.80177844548598,37.88005110900849,37.54262807685882,37.621838388964534,37.089676060248166,37.701852531172335,37.29705369472504,36.78475737432018,36.09952324535698,36.68228529440239,37.48088364023715,37.41301780194044,38.16626003338024,37.63960781367496,38.417489466723055,37.521660572849214,37.132597364485264,37.631619832478464,37.31625525141135,38.311388910748065,39.259466333314776,39.832021452020854,39.011786844115704,39.08899266598746,39.743169132154435,40.54232220957056,40.61907314462587,41.12942313961685,40.290439397096634,40.78224207041785,40.22580679692328,39.61548948800191,40.40127022424713,39.99729287996888,40.264838652685285,41.07696813158691,40.78363957814872,40.56790716852993,41.291287038475275,41.69602833548561,42.5346367447637,43.07780313258991,43.6682610088028,43.11601617978886,44.08514759782702,44.38630524557084,45.16917416360229,45.68155234353617,44.770597277674824,44.391121808905154,44.92401699349284,45.44002530211583,45.25036205491051,45.83718462893739,45.050490678753704,44.36398021643981,43.713907066266984,43.09733810881153,43.812096992041916,44.52010068343952,43.89089279109612,44.46760525740683,45.137164272833616,45.55870511988178,46.31479059997946,45.36112298164517,44.52608206728473,45.35781652806327,44.91578621370718,44.68199205910787,44.51450964901596,45.43572518089786,46.358485070522875,45.605597018264234,46.28424101136625,45.932811791077256,46.624800430145115,46.50312891416252,45.83478285185993,46.5126951597631,45.92344590369612,45.16891452809796,44.863652353640646,44.274359131697565,43.55218376684934,44.30295237200335,43.643602593801916,44.15497144078836,44.72897304082289,44.64987269323319,44.30987121304497,44.13791439542547,44.92482380988076,45.05281671509147,44.06229438306764,45.06208590231836,45.25223865779117,45.359151960816234,45.72362976660952,44.986397670116276,44.9992385157384,45.063284042757004,44.67027794988826,44.124605112709105,43.966208688449115,43.39900030940771,42.574413009919226,41.60204350296408,42.383912183344364,43.34313228726387,43.226071801036596,44.16102204145864,44.44587951945141,44.285818678326905,45.222890618257225,44.41272450936958,43.928290265612304,43.01082222210243,43.43154073599726,43.229223628062755,43.283936293330044,42.61768568260595,43.37868764111772,43.132698577363044,42.182595557998866,42.66469293180853,41.9342871257104,41.8689778232947,41.87113891169429,41.74593601655215,42.544677594676614,42.932877561077476,42.43345422204584,41.92427169950679,42.121157605201006,42.387627109885216,42.20098001463339,42.65472441818565,43.22553670872003,42.24891469813883,43.111760559957474,42.57455651182681,41.937806573696434,42.93119778158143,43.02102215401828,42.500268606469035,41.96716832323,42.11516648856923,41.1377670657821,40.883113853633404,40.31159243546426,39.74071073019877,40.60071616247296,41.44815872842446,40.82944259326905,39.98129241960123,40.04492450505495,39.147531353868544,38.55940639041364,37.58297482924536,37.0416561877355,37.74877551663667,36.94785114331171,36.73086231993511,37.58854705141857,36.672730098012835,36.19928729720414,36.79971702815965,37.76282304339111,36.867188481613994,36.13276051636785,35.72538538649678,35.25907523557544,35.81602082774043,35.509309391025454,36.10316756181419,37.07670435728505,36.77601317130029,36.00592316361144,36.65524521237239,37.64928515860811,37.72160032717511,36.76415014639497,36.55014188494533,37.240407556761056,36.64661297108978,35.93451035069302,35.87161675654352,36.5982543611899,36.72627388034016,36.61774861579761,35.66649474063888,35.34036722453311,35.75211314857006,36.023660578764975,36.42627560906112,35.83927924046293,35.093361783307046,35.1668369891122,35.43377196462825,35.108462039381266,34.99863080820069,35.296530968975276,34.39026595046744,33.64998191455379,34.30509812012315,34.16106519056484,33.17542264144868,32.93408352928236,32.12928553763777,31.52138134650886,30.939399152528495,30.606338195502758,30.347378361970186,31.068383418023586,30.50070368591696,29.585398815572262,30.181339143775403,29.84734780434519,30.185834359843284,29.347350040450692,28.388418464455754,28.61962741892785,28.45631090691313,28.754140213597566,29.323443251661956,28.387080340180546,29.2968317726627,28.61484592780471,29.052317534107715,29.677271503489465,29.920407271478325,29.51726009743288,29.509463148657233,30.36256845202297,30.270860206335783,29.753970980178565,28.935508921276778,28.40750589640811,28.157649198547006,28.034984258469194,27.69468736415729,27.55035678576678,28.10688254237175,27.11571885133162,26.201960310339928,26.477172592654824,25.738809519447386,25.18221286451444,24.949165254831314,24.883892772719264,23.99884257512167,23.751022731885314,24.13786488911137,23.61609656130895,22.93045246740803,22.151887812651694,23.108365043532103,23.205039569642395,22.262184272054583,22.287356448359787,22.24342130497098,23.10432067606598,23.546940378379077,24.260769604239613,24.323527049273252,25.17049746075645,25.81157615222037,25.20431772712618,25.622198267374188,25.94877976970747,26.29778140084818,27.017685263883322,27.40985560277477,27.579207913018763,27.55992901045829,28.32348768878728,27.87188947480172,27.798227071296424,27.461010817904025,28.103623179718852,28.398063698317856,28.389188799075782,28.603402792476118,29.59497394738719,30.38185291690752,29.958178197033703,30.6269394014962,30.56290047755465,30.49198503419757,29.494960091542453,29.55616736598313,29.29470875672996,28.507644550409168,28.848829318303615,29.82570907054469,28.847264256328344,29.454798014834523,28.937128762714565,29.08729045651853,28.54717744886875,27.941769251599908,28.24730121763423,27.858832015655935,28.220013414509594,28.427837709896266,27.63639860972762,27.426553304772824,27.031304814387113,27.297013965900987,27.326312807854265,26.901924338191748,27.02236555982381,27.107203364372253,26.94786849245429,27.549625172279775,28.52823794214055,28.135056025814265,27.439203953836113,27.18466492788866,26.978422781918198,27.02877787966281,26.561682851985097,26.11321109905839,26.623238873202354,25.769072629511356,26.42583816125989,26.244878804311156,25.80538235232234,26.357955051586032,26.71802768809721,26.608964446000755,26.376485146582127,25.82573324162513,26.379657809622586,25.93853992782533,26.328873398713768,26.361224574502558,27.33883416466415,28.301541049499065,28.42885684967041,28.45857859728858,27.82700162893161,27.400988687295467,26.683951732702553,25.86433824058622,25.16344397701323,26.02306246617809,27.00337185105309,26.69822291098535,26.507934749126434,26.569225560408086,26.88940750947222,26.86881211446598,25.927782056387514,26.389398782514036,25.711334546096623,24.957103362306952,24.942212891299278,24.82818280439824,25.1400397233665,25.03050029464066,25.55130871385336,25.483741735573858,26.12274920474738,26.921764424536377,27.80923177441582,28.581495974212885,29.523581374436617,29.918428922537714,29.604869256261736,29.19316249107942,29.73794126790017,28.818233388941735,28.323390976060182,28.278718393296003,27.86595997400582,27.391005885787308,27.935004035010934,28.724318522028625,28.52279065642506,29.357609540689737,28.358638813253492,28.696567113976926,27.977425726130605,28.59598897723481,27.622618563473225,28.13573417207226,27.247547942213714,27.497423474211246,26.62754918122664,26.420740901492536,26.432812037412077,25.942241352051497,25.14505732478574,24.91311789304018,25.257002671714872,24.523306786548346,23.94858622783795,23.854142166674137,23.411180993076414,23.968259043991566,23.513394633308053,24.315628601703793,23.557365984190255,24.269797705113888,23.3463714257814,22.95973412739113,22.117246886715293,22.328644380439073,23.20707280933857,22.99831630382687,23.065603396855295,23.344136908184737,23.764091863762587,23.992573511321098,24.067931100260466,24.67788438173011,23.84290955448523,23.432240343652666,22.971775163896382,22.543079766910523,22.004933200310916,22.442416532430798,22.58430159231648,22.37866569822654,23.303240573965013,23.818981437943876,23.192032262217253,24.10535499220714,23.16126144118607,22.726584075484425,23.47360455710441,22.753442189656198,23.139717247802764,22.92973890993744,22.694436255842447,21.87335944874212,21.38388954848051,21.53779310453683,21.585326384287328,22.23156964359805,22.252491374965757,21.988986948505044,22.52629936626181,22.78253594879061,22.039507910143584,21.347352280281484,21.3407840882428,20.90226323856041,21.664213677868247,22.476154655683786,21.741955588106066,21.285171119961888,20.82714511267841,21.087787984404713,21.74166966509074,21.87619698420167,21.722061616368592,21.274610336404294,21.35061006154865,21.46162973344326,21.081413281150162,20.770110309123993,20.456407465972006,21.231643168721348,21.148027492687106,20.224339897744358,20.0157681084238,20.156123964115977,19.672941663768142,18.845558528788388,18.43426987575367,19.41195387393236,18.44588085403666,18.744247673545033,19.240351364482194,19.62488015042618,20.507660476025194,21.001129642128944,21.75280956272036,21.349571615457535,21.28784956643358,20.768093870952725,21.19782168790698,22.10998169425875,21.589564102701843,20.620886175427586,20.182090177200735,19.22341388044879,18.23857685085386,17.5377066177316,17.03034972026944,17.766216815449297,17.37612888868898,18.030538672115654,17.582815484143794,17.63843185454607,17.617998792789876,16.825875925365835,16.89501122944057,17.043956351932138,16.39477925794199,15.41940808063373,14.677133552730083,14.425158509518951,13.826369026210159,13.164402571506798,14.04179295618087,14.06010687770322,13.819814132060856,14.59388883691281,15.37388816056773,14.495572873856872,14.047147317789495,14.303097864612937,14.94070046255365,14.980474580079317,14.649548096116632,15.198984867427498,15.009055588860065,14.81146051036194,15.656817757058889,15.82711209449917,15.386123238131404,15.33587801689282,16.002786118537188,15.902069888077676,16.20215479005128,15.91117935674265,15.89489789120853,15.01111666066572,14.125900051090866,13.88162748515606,13.049070703331381,13.936618190724403,14.063294246792793,14.004600518848747,14.58308305265382,13.969092756975442,13.224229033105075,13.885146841872483,14.847356420010328,15.842145757284015,14.988479915075004,14.784415959380567,15.661934587638825,16.593712333589792,17.07206532964483,16.111824156250805,15.926016445737332,15.000267048366368,15.489026035182178,16.374403961002827,15.983904216904193,16.272092543542385,15.7276143967174,15.96017082920298,16.479575293138623,16.93680615304038,16.905672270804644,16.620027279946953,16.889150762930512,16.410678185522556,17.406420747749507,16.88348925439641,17.23414626531303,18.190293956547976,18.196670519653708,18.07423342904076,17.308353146072477,17.18638202222064,17.05748460208997,16.889070629142225,17.70155756827444,18.189953013323247,17.904974605422467,17.988243146799505,17.467781590297818,16.59771988959983,16.731673593167216,17.527265986427665,17.08557653101161,17.518916935194284,17.0159238637425,16.417074748314917,17.067603528499603,17.885274838656187,18.736015053465962,19.215185950044543,18.931531277485192,19.026831636670977,18.264015382155776,17.596988928038627,16.654121982865036,15.924664760008454,16.462551946751773,17.15955389663577,17.894287263508886,18.285598357208073,18.27252457011491,17.318988884799182,16.430628756526858,16.944972704630345,17.732079698704183,17.637764172628522,18.302652765531093,18.824130955617875,17.863904729485512,18.32830798672512,17.687041179277003,16.71083817118779,16.99968087906018,17.604291691910475,17.454895173665136,18.13235136307776,19.016402203589678,19.61402764217928,18.98459222447127,18.21812202082947,17.972070184070617,18.205705541651696,18.869894274510443,19.39559195097536,18.638918785843998,18.63780304417014,17.705271256621927,17.70453030662611,18.387876990716904,18.73540577478707,18.01760978018865,17.96337083633989,17.648035518359393,17.945117127150297,17.409461483824998,17.714281748980284,18.535036514047533,17.930390156805515,17.867969672661275,17.30260278796777,16.769708236213773,17.15386761073023,17.72465736186132,17.75586350541562,17.440231007989496,17.712842155713588,17.64660898782313,17.41547715710476,17.47583479527384,17.586168088018894,17.418047384824604,16.798225433565676,17.14318498969078,17.48434247355908,18.063653592951596,18.324788484256715,17.56832144036889,18.12549504917115,17.46277218963951,16.894930166658014,17.60727258818224,17.509071762673557,17.132377116475254,17.96633604262024,18.581602183170617,19.467855417635292,19.436092033982277,18.87463999958709,19.38297819532454,19.28364714793861,20.061682410072535,20.057882852386683,20.145440364722162,20.64048576541245,21.63862322550267,22.085875188931823,22.367319772019982,21.5576498885639,20.92083754763007,20.48983264155686,20.85215248959139,20.378091803286225,19.90030834591016,19.93423052644357,19.93603231664747,19.95819381205365,20.06758111109957,20.03779987618327,19.58528972743079,19.980814372189343,20.747188408859074,20.29614768223837,19.87605474377051,19.262034102343023,19.288384505547583,20.12887074565515,20.788756064139307,20.981450866907835,20.297602529171854,19.664564113132656,20.5577131039463,19.638201016467065,20.37995813926682,20.34048130735755,20.83690085913986,19.94938841369003,19.527595905587077,20.525912645738572,20.233021723572165,20.953599049709737,21.921727272681892,22.806789584457874,22.49769118009135,23.270861349068582,24.117646574042737,23.448635721579194,24.341808474622667,25.10150874312967,24.570628688205034,25.208241793327034,25.132603127043694,25.433239385019988,25.386754469946027,26.04541566548869,25.756631379947066,25.631410184782,25.876749674323946,25.69558941666037,26.03304774221033,26.594388943631202,25.7591503104195,25.501563728787005,25.775949710048735,26.211082769557834,25.991048947907984,26.09200659720227,25.941723397932947,25.379299866501242,25.812774090562016,26.08152809087187,26.005519784986973,25.10860599996522,24.885444074869156,25.324638869147748,24.86471476778388,25.3715820168145,24.535735620651394,24.26316233165562,24.238506277557462,24.28788029588759,24.44441903475672,25.31896619591862,24.37625238671899,23.636695152148604,23.678372527472675,22.746414141729474,21.996938029769808,21.011031723115593,21.776765648275614,21.590872400905937,22.535869061015546,23.43377926480025,23.279992221854627,22.339103953447193,22.483694719616324,22.175608274061233,21.525447584223002,21.100827751215547,21.05050444509834,20.636729662772268,21.323253767564893,21.52890447434038,21.36984953843057,22.358995696529746,21.50718402210623,21.002500577364117,20.982968339696527,21.484559936914593,20.67372507788241,19.72289725067094,20.425592934712768,21.109763372223824,21.793006726074964,21.82306218938902,21.30033010011539,20.44662889558822,20.721740880981088,21.019364493433386,20.690109598916024,20.20637216279283,20.65381473535672,19.722888580989093,19.4607952889055,18.98272371571511,18.874612238258123,18.657830274663866,19.37029149895534,19.607073281425983,19.033461225684732,19.19640969624743,19.772516219411045,19.476159577723593,20.247209987603128,19.472831601742655,19.16252977726981,18.730448643676937,18.584571078885347,17.59922516811639,18.20061073731631,18.887991626746953,18.978764100931585,19.877327318303287,18.9996576635167,19.954108730424196,19.449550207238644,20.082809466402978,20.46038295328617,19.78330065216869,19.98226613784209,20.201240236870944,20.52847009571269,21.342851116787642,21.933720046654344,21.67365819681436,20.82130754319951,21.237617786973715,21.717982730828226,22.41510385181755,21.60337668703869,21.015203399118036,20.453600042965263,21.200257746037096,21.924609053879976,21.10383286792785,20.835717190988362,20.58285633707419,20.521922877524048,19.94607297377661,20.355243653524667,20.73340288363397,20.555501252412796,19.65883246390149,19.335030646063387,19.609010162763298,20.574927122332156,19.80329750897363,19.319329745601863,20.041073423344642,20.003433550242335,19.380248145200312,19.987780258990824,20.303443719167262,21.253565654158592,20.854046226944774,21.412852437235415,21.667572243139148,21.007235834375024,21.499198457226157,22.018034655135125,21.478029746562243,20.672691501677036,20.937746630050242,21.089991284068674,20.40182564361021,21.179104493930936,20.701632858254015,20.029370930977166,19.735456160269678,19.361359374132007,20.270663117524236,21.130368961486965,21.970833919476718,22.716730235144496,22.881811380386353,22.24819938559085,21.93797527300194,21.09747430868447,21.602510522585362,21.681202368810773,22.299902754370123,21.89533997187391,22.321820637211204,22.574415910523385,23.138466965872794,24.070819152984768,23.273890015669167,22.98218324780464,21.98699384694919,20.996652501169592,21.514257275499403,21.266807064414024,21.94997250009328,22.526681878603995,22.1228992883116,21.521492256317288,21.542695847339928,21.407941938843578,21.630371716804802,21.85699012549594,21.8482246408239,21.91833236673847,21.64288453385234,21.67890768358484,21.27966759353876,20.592934413813055,21.4719907483086,21.220710067544132,22.096807307563722,22.736932792235166,23.140324814245105,23.779930654447526,23.437359110452235,23.6301254699938,24.62660434283316,24.90090030943975,24.672569321934134,23.708596508018672,22.90581583045423,22.22608161950484,21.942951964680105,21.90462646773085,21.292506047524512,21.833948202431202,21.302645924966782,21.960151506587863,22.01542154373601,22.500155149959028,21.846609649714082,22.00053321523592,21.859016132541,22.245607721619308,22.882177267689258,22.409774425439537,22.110912876203656,22.52880280232057,22.423973578959703,23.405195544473827,22.83498326689005,22.466295689344406,22.476384847424924,21.680627333000302,22.66814299672842,23.329001868143678,24.06551137706265,24.674481286201626,24.81560926185921,24.15371939726174,23.15528532816097,23.977936597075313,23.212909230962396,22.832482007797807,23.61908325040713,23.194154019467533,23.02274024952203,22.227628726046532,22.070405658334494,22.283747772220522,22.99583971640095,22.824146952014416,23.328764940146357,23.465999253559858,22.681815564632416,22.226533042266965,21.474781854543835,21.514631701633334,21.51150687551126,21.709203246515244,20.71244045998901,20.674808719195426,21.463422372937202,22.257091925945133,21.816090682987124,22.51452801609412,23.250769186299294,23.636457450222224,23.312978793866932,23.709633445367217,24.225411392748356,23.89730676729232,23.321599243674427,22.814830322749913,23.43488466879353,22.994904675055295,23.349202268291265,22.37183618079871,22.243550025392324,22.890792464837432,22.262817955575883,22.532848942559212,21.637449925299734,21.35452091647312,20.377515968400985,20.539488788228482,20.18209045007825,19.67968614352867,19.50076381722465,19.380256437230855,19.47048846865073,20.214561731554568,19.432987212203443,19.058084988966584,18.104676802642643,18.283740425948054,18.90975138824433,19.04965352313593,19.256065919995308,18.283110747113824,18.535475166048855,17.863765911199152,17.71717929886654,16.751136016566306,16.535708947572857,16.24777089059353,16.071062419563532,16.24221974425018,16.849583119619638,17.01891243783757,16.970011829398572,17.112355122808367,17.011807371862233,17.661360647063702,18.061873904429376,18.15718293422833,17.398979343939573,18.001328960061073,18.423133942764252,17.88226217776537,17.86869139643386,17.135803437326103,16.914179203100502,16.426499798428267,17.040320666506886,17.771581223700196,17.406313166953623,16.843196457717568,16.047100111376494,16.430407432373613,17.254283006768674,17.94265504833311,17.514527109451592,18.117836732417345,18.180069647263736,17.246079807169735,18.135508090257645,18.57012467039749,17.81622107932344,17.77850376488641,17.545790976844728,18.12230414012447,18.483173771295696,17.6044121934101,16.78551663318649,15.972540878225118,16.5808327132836,16.832379763945937,17.60962744941935,18.24625390674919,17.34981739986688,16.465435538906604,15.904062166810036,15.851255506742746,15.81085987854749,15.75009346101433,16.267612277064472,17.24744017701596,16.84400152368471,17.230545729398727,18.0677338745445,18.17466863663867,17.437803420703858,17.259625890292227,17.577321444638073,17.177179919090122,17.162379353307188,17.50737838074565,16.78862175066024,17.310822658240795,17.95964116184041,17.545636605471373,17.01609553489834,17.462520831730217,18.073097591288388,18.4310985035263,18.19884562678635,17.871611069887877,17.555071362759918,16.968191301915795,17.017882480751723,17.30218221154064,16.486467216163874,17.17278877645731,16.617840625345707,16.998961265664548,17.875196564476937,17.265439440961927,16.52409940259531,15.867954352404922,15.342552403919399,15.535490012727678,14.756690429057926,14.700523846782744,14.191086340229958,14.78533463506028,15.273178022820503,14.607562966644764,14.667150758206844,14.519830307457596,14.908591620158404,14.919868039898574,15.476315274834633,15.453219736460596,16.11774738645181,15.465417358558625,16.440535503439605,17.222245913930237,17.48299106536433,16.553063163999468,15.834174434654415,16.120515109039843,15.474342334549874,15.926951065193862,15.500842958688736,16.087405149824917,16.907710732426494,17.671456404495984,17.72599113639444,18.00014134403318,17.874142573215067,18.298964410554618,17.784181067720056,18.430109831038862,18.861599260941148,18.15603424841538,18.235996272414923,18.376803481951356,18.12875567516312,18.520261131227016,19.042894329410046,19.268337529618293,18.8340277466923,18.162668072152883,18.466167761012912,18.80414329189807,18.980696712620556,18.746421717107296,19.20253423601389,18.4103766893968,17.56418393459171,18.14589168736711,18.13997247396037,17.44750347500667,17.839923541992903,18.709199132863432,18.88412251509726,18.510709289927036,18.661464613862336,17.707305532414466,17.823774304240942,18.489100434351712,18.59920152137056,18.064396029803902,18.705099298153073,18.832654983270913,19.481363964267075,19.19991613458842,18.826302477624267,18.524635783862323,19.149570708163083,19.27975748060271,20.242326290812343,19.688242656178772,18.72624199744314,17.876733141951263,18.69101294828579,17.94503444992006,17.534824541769922,18.307345719542354,18.560061804484576,18.804915953893214,18.425215003546327,17.50379116088152,17.17962592607364,16.372091487515718,16.29972112039104,16.260501611046493,16.095866921823472,15.999504642561078,16.769873789977282,16.64865520829335,15.85970626724884,15.920948675833642,15.798674574121833,15.788054320029914,15.671363930217922,15.819824856705964,16.028582524508238,16.875785827171057,17.715434800833464,18.186439373064786,18.334582469426095,18.738062981516123,17.780501344706863,17.12627981323749,17.09293070435524,16.232147609815,15.84022635454312,15.824101143982261,15.878026188816875,16.021996582858264,15.387000581249595,15.8420306770131,16.16534855682403,15.182248373050243,14.528700223192573,14.902837566100061,15.650236304383725,15.129264346323907,15.290362022817135,14.291939528658986,14.875505755189806,15.38098427420482,15.130267083179206,14.576542504131794,14.763150411657989,15.735566929448396,14.858139777556062,15.10674340557307,14.894088077824563,14.627081013284624,15.211067340802401,14.777600774541497,14.046582367271185,13.958587461151183,14.054367906413972,13.570657923817635,12.669736023060977,13.319608675315976,12.54649941297248,12.707502959296107,11.779827486723661,11.234234691597521,11.578781874850392,11.971608369145542,12.295530349947512,13.152899142820388,13.054521807003766,13.55883496440947,13.7342070764862,13.321506089530885,13.39347893372178,14.277955319266766,14.811455307062715,14.243211077991873,14.8413363751024,15.357048854231834,15.945082183461636,16.133495619986206,16.758911612909287,17.331113676540554,16.536646906286478,16.54101605899632,16.506802985444665,17.27824769821018,16.503652634564787,17.06545224925503,16.6555923265405,16.631943168118596,17.354231431148946,16.828765287064016,16.681461430620402,16.891686062328517,16.575753553770483,15.854306243360043,15.47022319631651,14.877761654090136,14.393927174154669,14.81221985630691,14.315252569969743,14.869817788247019,13.890283432323486,14.734171687625349,14.251935398206115,13.725916643626988,12.898441300261766,13.25054272217676,12.963482931256294,12.310839247889817,11.865627322345972,12.428594205994159,12.336147054098547,12.183630895800889,11.733118270523846,11.769589940086007,11.410684484988451,11.284683569334447,10.987838129978627,10.18141571385786,9.76138509484008,9.750389734748751,10.31465538777411,9.528077641036361,9.327349234838039,8.830458854325116,8.762524240650237,8.887458842247725,9.855367802083492,10.664150264114141,11.176001519430429,10.252733123023063,9.738247274886817,10.292575674131513,10.964047383982688,11.79007922951132,11.970899233128875,11.499323966912925,12.233693444635719,12.39862122014165,11.489271606318653,11.596061087213457,11.025545347016305,10.481493151281029,10.101368598174304,9.950833174865693,9.913695501163602,9.053889176342636,8.114909744355828,7.570273922290653,8.397091546561569,9.015307686757296,9.805188747588545,9.247770432848483,8.878370597027242,9.570120899006724,10.07527984958142,10.539683599025011,9.55318414978683,9.994503004010767,10.85919677093625,11.667292216327041,11.538387656211853,10.622258530929685,10.854064938612282,11.072095343843102,10.84128842735663,11.052328936289996,11.823024827055633,12.580862822942436,13.474653766490519,13.019968604203314,13.739215465728194,14.188768438063562,14.530267235357314,13.665258927736431,14.28212476382032,13.671416944358498,12.693926868960261,12.71165086561814,12.661195787135512,13.45813104370609,13.893590319901705,14.624769676011056,15.263489151373506,14.480700934771448,13.878346699755639,13.736271945293993,14.65810270421207,14.78834794042632,14.350827085319906,13.733576740603894,14.594292185734957,13.939904145896435,13.257108204532415,13.155719996895641,13.46507282461971,14.082698595710099,13.831799203529954,13.734167817980051,14.51366439787671,13.748982219956815,13.516485191881657,13.672737326938659,13.703575477004051,13.492663430981338,13.228091229684651,13.688142606522888,14.385928447823972,14.626200385391712,14.518068638630211,14.046242477372289,14.26027661189437,14.52514310600236,14.671129960566759,13.77135117771104,13.702804162632674,14.011433062609285,13.210731775034219,12.36133690783754,11.416624529287219,10.44862182205543,11.026069555431604,11.982570631895214,11.323197581339628,11.693529218900949,11.959021559916437,12.09237115085125,11.829645921476185,11.512661229353398,12.349378961604089,11.514457521494478,12.371515268925577,12.943410682491958,12.165895600803196,12.398251155391335,12.209250550251454,12.481033510528505,12.576450518798083,13.146158657502383,13.714147802442312,12.756618453655392,12.415950884576887,12.163396350573748,11.83145028166473,12.63903562258929,12.773793894331902,12.000567011069506,12.283308152575046,11.609801905229688,12.332530398853123,11.48636315902695,11.405518588609993,11.059903553687036,10.538156982976943,10.61290893657133,9.892293103504926,9.979635152965784,9.413628293666989,9.442750159651041,10.003024024888873,9.79545586835593,10.536044326610863,10.830728982575238,9.875545437447727,9.7139913411811,10.040838011540473,9.336517927702516,9.97000525239855,10.184837831184268,9.748965510167181,9.401108566205949,8.838161336258054,7.855812632944435,7.175113582983613,6.257711968384683,6.950859161093831,7.108541399240494,7.711405270267278,6.760653721168637,5.823266468476504,6.800717117264867,6.363613914698362,7.14747564541176,7.510928101837635,7.244401498697698,8.09590369882062,8.388966984115541,9.120829360559583,9.980251969303936,10.928329558577389,11.86230667354539,11.651142148766667,10.939235334750265,10.310916554182768,9.598994565196335,8.608376857358962,7.772585502360016,7.61286479793489,7.109079768881202,6.385756189003587,5.666301290504634,6.310523277148604,6.792406250257045,7.028698978479952,6.098378142341971,5.4740514806471765,4.73861147928983,4.660145537927747,3.7607452757656574,4.410538417752832,3.654035638086498,3.41113969264552,3.8349967654794455,3.598913331516087,4.284465974196792,4.7656303737312555,5.759511786978692,5.292920821812004,4.7913768771104515,4.305298891849816,4.900173805188388,5.060525735840201,5.74471368920058,5.143871161621064,5.221200821921229,6.107683721464127,5.6215464463457465,5.215866177342832,5.9954584976658225,5.743674231693149,6.739860748872161,6.488409070298076,5.651980450376868,4.77774520078674,4.3079836163669825,4.367636234033853,3.3822072381153703,3.414541109930724,2.7180746789090335,2.82262578420341,2.5028906310908496,2.215041823219508,1.8643871475942433,1.2319950815290213,0.7124743075110018,-0.22832398442551494,-0.6018198351375759,-0.4014358352869749,0.5845419238321483,-0.2840613410808146,-0.07658734545111656,-0.08625991037115455,0.04211067780852318,-0.011939323507249355,0.277604715898633,0.49465200304985046,1.2585595855489373,0.8309903186745942,-0.12789194704964757,0.6439266642555594,0.9339018734171987,0.978915233630687,1.9519738075323403,1.2653059144504368,1.426831929013133,2.269337926991284,1.6148915514349937,1.5072086197324097,0.8775326767936349,0.5454264492727816,1.174022530671209,1.700305473525077,0.8790716608054936,0.8922936818562448,0.6178430928848684,0.777534157037735,1.0514657506719232,1.0883153364993632,0.2560798265039921,-0.5097545734606683,-0.7364145708270371,-0.6925687245093286,-1.178709749598056,-1.4281072560697794,-1.4920358983799815,-1.4445692719891667,-2.0299681392498314,-1.5026768683455884,-1.0144298896193504,-0.7694957563653588,-1.6493221302516758,-1.5582873807288706,-1.7646802319213748,-1.8263286044821143,-1.568201375193894,-1.3438553158193827,-1.814231077209115,-1.973570624832064,-1.5042271078564227,-1.0160676538944244,-0.5365790938958526,-0.6336136339232326,-0.7289153099991381,-0.9816305097192526,-0.2647494743578136,0.19188586855307221,0.2912860354408622,-0.4105266551487148,0.022843707352876663,-0.6072157672606409,0.252411981113255,1.102886965032667,0.4801189796999097,-0.07634880160912871,-0.6243261559866369,-1.171449071727693,-0.6871998789720237,-0.9713661815039814,-0.49463905207812786,-0.7898079762235284,-0.9432448716834188,-0.1649573789909482,0.5135716954246163,0.16378752468153834,0.4628794058226049,0.015458175912499428,-0.6831836560741067,0.15968096908181906,0.9289894346147776,0.4626281331293285,1.3599926829338074,1.6370494808070362,2.532520352397114,2.1185703091323376,1.7161935367621481,2.6322592152282596,2.7580631128512323,2.701199891977012,3.4300618236884475,2.5245172609575093,2.0103061152622104,1.0572756095789373,0.6384151689708233,1.5411420734599233,1.7781675728037953,1.5986443632282317,2.0513915503397584,2.913664191029966,3.5753704300150275,4.402752146590501,4.377472088206559,4.29800184443593,5.1666248994879425,5.304817678406835,6.156273798085749,5.601661047898233,5.67132891761139,4.671641500201076,4.5369609775952995,4.706990676466376,5.704175267834216,5.041238610167056,5.9509941465221345,6.640080450568348,6.517880057450384,6.4438875443302095,6.806968559511006,7.154607241973281,6.2940313830040395,5.797506813425571,5.164329637773335,5.155648795422167,4.702649411745369,3.7312569324858487,2.7853503194637597,2.8707626331597567,3.4372086985968053,2.9892230234108865,2.2695246865041554,2.9395505250431597,3.802002588752657,3.464723319746554,2.9948704624548554,3.2413456132635474,3.332126493100077,3.5977969230152667,4.563570334110409,3.8109709098935127,3.804429111070931,4.485585566610098,3.614363294094801,4.378699688240886,4.28146650781855,3.5348402759991586,3.1548649328760803,3.38034728448838,3.848025080282241,4.580441848374903,5.316600943915546,5.027783007826656,5.239912082441151,5.579754232428968,5.739955368917435,5.659923461265862,5.137881360948086,4.306386077776551,3.496263427194208,3.071509932167828,2.255987237673253,1.2946882215328515,1.6504434845410287,0.7765420079231262,-0.22009892435744405,0.4149765856564045,-0.452686236705631,-0.4893725630827248,0.5001278957352042,-0.4160921652801335,-0.9217669265344739,-1.8756843013688922,-2.6810183417983353,-3.4657274675555527,-4.288375780452043,-5.188830658327788,-4.461354992818087,-4.739788561593741,-4.970448482781649,-4.371635899879038,-4.732218144461513,-5.07624984998256,-5.663082472980022,-5.435022891033441,-5.034470776561648,-4.418130815029144,-4.306845358107239,-4.304747300222516,-4.506025318987668,-5.303039624355733,-6.238369902130216,-5.8854476641863585,-5.438740078359842,-5.725557290948927,-6.696625382173806,-6.1249798107892275,-6.054742688778788,-5.871622148901224,-5.3564276322722435,-4.957104088272899,-5.310616274364293,-5.728264305740595,-5.333578613586724,-5.612363839522004,-4.837412950117141,-5.830859892070293,-5.624276264570653,-6.130896090064198,-6.904373090714216,-6.664348820690066,-6.392766898497939,-6.962230771314353,-6.4354194714687765,-5.950726516544819,-6.32898064609617,-6.312481089495122,-5.482663236092776,-5.560817771125585,-5.234575937036425,-5.826419147662818,-6.772700106725097,-7.537611087784171,-6.54584553418681,-6.214095618575811,-6.615086299367249,-7.340885815676302,-7.967551182489842,-8.432981037534773,-7.673617236781865,-7.611842907499522,-7.916145212948322,-8.765459283720702,-9.168916468508542,-9.813372968230397,-9.756194869522005,-10.235524404793978,-11.01820745319128,-10.43433788465336,-11.397747629322112,-10.632459668442607,-10.469660489819944,-9.61705545336008,-10.541159288026392,-10.791122196707875,-11.790926681831479,-12.621272767428309,-13.452282192185521,-14.260081617161632,-13.390525962226093,-13.433695289306343,-13.750961267855018,-12.958178859204054,-13.332950653508306,-12.966079695615917,-12.090667280368507,-13.03079837327823,-13.409699372481555,-13.461740370839834,-13.477950133848935,-13.510400729253888,-12.9623171268031,-12.211276839487255,-11.627470043022186,-11.767615333665162,-11.85782315256074,-12.440833838190883,-11.634122573304921,-11.775085877627134,-11.459289795253426,-12.396271871868521,-12.906276169233024,-13.584688480012119,-13.622744475957006,-13.681823275983334,-14.462687705177814,-14.457003318239003,-14.913161560893059,-14.730723651126027,-15.184363078325987,-14.654561928939074,-15.10201187664643,-14.781091730110347,-14.931736699771136,-14.761738481465727,-14.253099966794252,-13.891240476164967,-13.87798727536574,-13.968425400555134,-13.87413397571072,-14.418291266541928,-14.311288612894714,-14.165781742427498,-14.675942178815603,-15.601452844683081,-16.490985956974328,-16.294764182064682,-15.834626246709377,-16.658271871507168,-15.6748435231857,-16.027109448798,-15.956939868163317,-16.68124940386042,-15.900100626051426,-16.744123910553753,-17.471570796333253,-18.149016010574996,-18.702954859938473,-19.09413815708831,-18.636752128601074,-18.43494717311114,-17.980712392833084,-18.1978020099923,-18.115924319718033,-17.7517394060269,-18.62407100573182,-17.89628026681021,-18.35695748589933,-19.021529190707952,-19.387589008547366,-19.32848578179255,-18.70872400002554,-18.51833857037127,-18.238359450362623,-18.284300576429814,-17.400445609819144,-17.184484956786036,-16.414469142910093,-15.746069537010044,-15.76099814241752,-14.766393458936363,-14.187368846032768,-14.80992380855605,-14.894481709692627,-15.716651682276279,-15.557752420660108,-15.586789353284985,-16.26062544900924,-15.947359890677035,-15.429228741675615,-16.239078973419964,-16.10223864670843,-15.815782737452537,-14.937509695533663,-14.864563924260437,-14.69201769772917,-15.187476702500135,-14.299168108031154,-15.139074940700084,-14.241755118127912,-13.945352837909013,-14.573663398157805,-13.659394778776914,-13.468696387019008,-12.668113474734128,-11.98568417550996,-12.83316352404654,-12.37789403880015,-11.796878730412573,-10.992993826977909,-10.16144083533436,-10.111609677784145,-9.233184774406254,-9.73938185395673,-10.351721994113177,-10.304937574081123,-11.11320481961593,-11.439761973451823,-11.159794684033841,-10.248801386915147,-10.642705372069031,-10.186764519661665,-9.753655302803963,-10.344856890384108,-11.03162984456867,-10.875044974964112,-10.173466166481376,-10.68152518896386,-11.6308981673792,-12.40349467098713,-13.282051729038358,-13.915272878017277,-13.467821612488478,-12.581539121922106,-12.766446385066956,-13.246878976002336,-12.482029544189572,-12.673498247750103,-13.429997844155878,-13.877245815005153,-13.050179710611701,-12.115996378008276,-11.731222759000957,-11.108181697782129,-11.896085936576128,-12.649655126500875,-13.240047394298017,-14.019866562914103,-13.525755201932043,-13.3217454100959,-13.196943271905184,-14.133064330555499,-14.888771436642855,-14.386010851245373,-15.215771418530494,-15.868470943998545,-16.775278395973146,-16.877167207654566,-17.395205582957715,-16.713372032158077,-17.088023918215185,-16.804116568062454,-16.513428357895464,-16.29263482009992,-15.94948981469497,-16.625005571637303,-17.372102437075227,-16.682160313706845,-16.00516834575683,-16.47354156244546,-16.178889775648713,-16.96294336905703,-16.20597496908158,-16.649389255791903,-16.282308893743902,-16.46470842603594,-15.774012136273086,-15.987266631796956,-15.29788394458592,-16.292328813113272,-16.228861747309566,-15.57554018450901,-15.756751403678209,-14.871849485207349,-14.282901548780501,-15.040808666497469,-14.28191836969927,-13.830966518260539,-13.528231456875801,-14.312494709622115,-14.247314769309014,-14.769207258708775,-15.047437511384487,-14.300322255585343,-13.646166696678847,-12.963268377818167,-13.79417033586651,-14.56707073468715,-15.470503208693117,-15.347880545537919,-15.534475473687053,-15.839946324937046,-14.914579715579748,-14.736448167823255,-15.051962474361062,-15.517731559462845,-16.261621945071965,-17.1974687599577,-17.38985902024433,-16.526742321439087,-16.054679584223777,-16.450065575540066,-17.342058124020696,-16.89924804214388,-16.67171020898968,-16.09352159127593,-15.646836341358721,-15.896220215596259,-16.82685216423124,-17.145997676067054,-16.327013269532472,-16.490655024535954,-15.678705553989857,-16.544396467506886,-15.847981609869748,-16.71584593737498,-15.99259439157322,-16.802350123412907,-15.961328755132854,-16.42078205337748,-17.415968597866595,-16.482439156621695,-16.010483167134225,-16.26639175089076,-16.757899982389063,-16.946175868157297,-16.696045123506337,-16.633930327370763,-15.637209489010274,-15.198691277299076,-14.441156136337668,-15.0890410002321,-15.668412176892161,-14.820052334107459,-15.30353009980172,-16.003305353224277,-15.650575953070074,-14.722680487204343,-14.9470579107292,-14.437189369928092,-14.091541854664683,-13.873435833957046,-14.867262312211096,-14.7619907008484,-15.566049325745553,-15.270443092565984,-15.106908788438886,-15.197842938825488,-16.091620932798833,-16.185561703518033,-16.481091367080808,-16.550104829948395,-17.009423478040844,-17.723122015595436,-17.88930908869952,-18.561947910115123,-19.05822372296825,-18.904575972352177,-19.819097569212317,-20.332227955572307,-20.479651268105954,-20.02378721535206,-19.578209086786956,-20.202102295588702,-20.21313764108345,-20.649132560938597,-19.82571648946032,-20.47270101401955,-20.023977333679795,-19.9054671456106,-20.653627033811063,-20.927164893131703,-21.011793318670243,-20.840149625204504,-20.91309369634837,-21.181733646430075,-21.937225331086665,-21.055999042931944,-21.787498710677028,-21.738349702674896,-22.64236622909084,-21.726933890022337,-21.360895028803498,-21.73007400240749,-21.21617193799466,-22.142226868774742,-22.0689958948642,-22.116441398859024,-21.304648784454912,-20.837256491184235,-21.185105771292,-22.01245825877413,-22.29555423464626,-21.3421485805884,-21.957911944948137,-21.274357625748962,-20.88231430063024,-20.60546306753531,-20.690825931727886,-19.783285717479885,-19.99676782405004,-20.1595275583677,-19.341438602656126,-20.187855867203325,-21.00051741860807,-21.21499022608623,-21.801449503283948,-22.025945452507585,-21.807597953360528,-21.63634339859709,-20.66506045870483,-21.116696272976696,-21.686104270163924,-21.378337101545185,-21.197966624982655,-20.78957766853273,-21.191632645204663,-20.211400639731437,-19.43917893851176,-18.879803736228496,-18.404976055491716,-18.89640518790111,-19.31357500050217,-18.678499915171415,-19.51759607763961,-19.99095719307661,-20.189033874310553,-19.215010858140886,-19.67352730827406,-19.550128621049225,-20.018049677833915,-19.45104201324284,-20.443197092972696,-20.902825041208416,-20.930320927407593,-21.35286997864023,-21.929440167266876,-22.66998576372862,-23.43428651150316,-24.38996812235564,-24.679363917093724,-25.33545888122171,-26.2201071344316,-26.29992733988911,-26.657002884428948,-26.644476676825434,-25.995203296653926,-26.17873211670667,-27.035302761010826,-26.402881988789886,-26.090156767051667,-26.21537832263857,-26.734437002334744,-26.45629737013951,-25.648641027044505,-25.393308073747903,-25.997264144942164,-25.80627070693299,-25.287137164734304,-25.299628966953605,-25.205981084611267,-24.779569757636636,-25.020222791004926,-25.555071442387998,-26.258275042753667,-27.203119578305632,-28.143193969037384,-28.545713021885604,-28.134417560882866,-28.433188600931317,-28.759428762830794,-28.75628079334274,-29.124290897510946,-29.61703336238861,-30.32995804445818,-29.94536688597873,-30.062654589302838,-29.53028729138896,-28.81887784274295,-28.409562387038022,-27.89149315422401,-28.505705860909075,-29.476814541965723,-30.125413636676967,-30.698624963872135,-30.25472243875265,-31.021373585332185,-31.557470353785902,-32.50186800118536,-32.325506151188165,-32.96482671331614,-32.15032621240243,-32.59371503954753,-33.56123234797269,-32.93002612097189,-33.43988226400688,-32.94041371298954,-32.74075597524643,-31.95319956354797,-31.946167619433254,-32.47731530247256,-33.40543164918199,-32.507188089191914,-32.50488295266405,-32.93435312854126,-33.059333339333534,-33.320580683182925,-32.57647190568969,-32.89599908236414,-33.68322376674041,-34.27269909484312,-35.01798224635422,-34.56086174398661,-35.285416819155216,-35.168049443978816,-34.93187296623364,-35.2508786120452,-35.43684157403186,-35.79073349572718,-35.631920117884874,-35.33980116248131,-34.69776489585638,-35.15791778312996,-35.00783695047721,-34.53633951256052,-34.98027109121904,-35.33567387750372,-36.24552057124674,-36.514323060866445,-36.45650065690279,-36.317602070979774,-35.56659423140809,-35.98780439887196,-35.68799025239423,-35.69222135655582,-35.937847623601556,-36.16304321261123,-35.72668878408149,-36.56457610800862,-35.59291800297797,-35.19062033388764,-36.0951722394675,-35.34486505901441,-35.57865607878193,-35.45040415553376,-35.764029507525265,-35.699470478110015,-34.94583845697343,-35.243955973535776,-34.40673666307703,-34.10554438037798,-34.12517287675291,-33.21003275644034,-33.440140582155436,-33.72345117665827,-32.72510549752042,-32.78582043480128,-33.63430085219443,-34.34035819536075,-34.620098509825766,-34.376177166588604,-34.04899540543556,-34.16712807537988,-34.81994944019243,-35.49644311936572,-34.63473054720089,-34.3006342719309,-34.01819190196693,-33.274282451719046,-32.659117938019335,-32.107370022684336,-32.32549960259348,-32.86176259024069,-32.86178044928238,-32.08293346501887,-31.41620513284579,-31.694995037745684,-32.6384367197752,-33.51171519840136,-34.23171208333224,-33.34756683977321,-34.11721870722249,-34.20664008287713,-33.55167201301083,-32.60259925574064,-31.91567860171199,-32.309739182237536,-32.69708299217746,-32.827792363241315,-33.45348385628313,-34.30645842757076,-33.8279833085835,-32.842979272361845,-33.75804701074958,-34.392658608499914,-33.91647061845288,-33.86218476342037,-34.381481524091214,-33.475380167365074,-34.21926015522331,-34.99828046839684,-34.38261331804097,-35.041916088201106,-35.13130747061223,-34.82559475209564,-34.332429704256356,-34.10909377364442,-33.27485491754487,-33.53553517861292,-33.12385225528851,-32.58844796475023,-33.13221362745389,-33.11377136269584,-33.21041268249974,-32.312815164681524,-31.99384381296113,-32.29238268779591,-31.69015029957518,-32.026715487241745,-32.27336596790701,-31.575270783156157,-30.721095530781895,-31.27935929503292,-30.597984286025167,-31.360444758087397,-31.292590389959514,-31.958766045980155,-32.57825014507398,-32.624302550219,-32.77931698039174,-33.71402620477602,-33.860421566758305,-33.74711093492806,-32.83825715724379,-32.43286319170147,-31.859881824813783,-32.44004335813224,-31.872668399475515,-32.63279612734914,-33.48977728933096,-33.65250704577193,-33.83140583988279,-33.55834848200902,-33.855834705755115,-34.23284610453993,-34.82651826040819,-34.28945200191811,-34.08156695449725,-34.45108891557902,-35.127354179508984,-36.02844118420035,-35.43735545920208,-35.99679167941213,-36.08791734557599,-36.74887097161263,-36.27130264649168,-36.303207932040095,-37.108438859693706,-38.08942679921165,-37.48886407352984,-37.57400399027392,-38.4684321237728,-38.808468654286116,-38.32162871817127,-37.84675190458074,-38.081823606044054,-37.91667044349015,-38.72885169927031,-38.140102533157915,-38.59429910732433,-39.49037929670885,-39.319346671923995,-39.22233655117452,-38.74351008841768,-39.5458641233854,-40.28314194828272,-41.25893079536036,-40.39457827899605,-40.70262289233506,-40.249213728588074,-40.070926485117525,-40.338322225026786,-39.729839398059994,-39.08802943537012,-38.21721332333982,-37.50895129516721,-36.63954284694046,-37.41756702121347,-36.675129940733314,-36.0385286398232,-35.69279378373176,-35.35460373898968,-35.98396987468004,-35.25852826284245,-34.78587079793215,-33.92759226588532,-33.075951549224555,-32.30719179054722,-32.0969004961662,-32.605145286303014,-32.65073880320415,-33.06044857855886,-32.26304317312315,-31.775240399874747,-31.610521255992353,-32.27966905385256,-33.16464982414618,-32.1854208484292,-32.94951649615541,-33.0206821593456,-32.83447442855686,-32.42896608682349,-32.56436806032434,-32.12489691749215,-32.57189037464559,-32.87401500623673,-32.38768748380244,-32.53545341733843,-33.323207162320614,-32.64453066792339,-33.333415150642395,-33.09544524876401,-33.71632863022387,-33.180296808481216,-32.85155225545168,-32.959653231315315,-33.91110348002985,-34.347329900134355,-34.79065039474517,-35.61078679561615,-35.26422211108729,-35.56019802112132,-35.330578871537,-36.24012251617387,-35.40518204448745,-35.71140976110473,-35.85698968311772,-36.848343363497406,-37.393416908569634,-37.5053126309067,-36.63697218988091,-36.70807444723323,-36.28664215654135,-36.910368049517274,-36.52189005492255,-37.046993379015476,-37.92828440386802,-37.3420655769296,-38.0628131153062,-38.87868377706036,-38.36518216691911,-37.586318188812584,-37.132652894593775,-37.12790341954678,-36.3273895829916,-37.25762049900368,-37.1255098041147,-36.23265662789345,-36.68840770749375,-37.686107722111046,-38.524499791674316,-39.21060518734157,-39.63983204588294,-38.723665243946016,-38.83426630496979,-37.97239902568981,-37.48344852635637,-37.45242959493771,-36.468469868414104,-35.971264090854675,-35.37505249818787,-34.641467852983624,-34.495954336132854,-33.5023744488135,-34.321507919579744,-33.92730403877795,-33.51433489145711,-34.347879343200475,-33.881690823473036,-33.26031444501132,-34.175903321709484,-34.911267451476306,-35.34984790952876,-35.928134023211896,-35.65481840725988,-34.73934575403109,-33.81178904697299,-33.72296065511182,-34.50002183672041,-34.644454415887594,-34.204160146880895,-34.8248366327025,-34.895613856613636,-35.78607350355014,-36.28896794188768,-36.998614120762795,-36.75518546625972,-36.584029151592404,-36.88873051200062,-36.470702266320586,-36.65305999200791,-36.43252039561048,-37.13512505684048,-37.704282014630735,-37.317971197422594,-38.224518592469394,-38.515493573620915,-38.4629053901881,-37.81599619612098,-38.47706208424643,-37.64274917682633,-37.688765184022486,-37.23400646401569,-38.12281555775553,-39.05804764246568,-38.772467077709734,-38.81226818263531,-38.87419371167198,-39.775589836761355,-39.425462312065065,-38.94825898203999,-39.33575036888942,-40.01131449872628,-40.68756598746404,-40.16688072308898,-39.58074589539319,-40.55275409668684,-41.36337552219629,-42.299381245393306,-41.71054952405393,-42.44684294005856,-42.33082488179207,-41.424136381130666,-40.43261520471424,-40.02783789113164,-39.41509286686778,-39.30583290942013,-39.10942065063864,-39.016692011617124,-38.29970431746915,-38.693409028463066,-38.60191736277193,-39.4310059659183,-39.04831436416134,-40.017556143924594,-39.73546189442277,-38.82221861369908,-39.07684221165255,-39.47172871045768,-40.094496686477214,-40.202982345595956,-39.50147124240175,-40.358801561873406,-41.093523263931274,-40.644856974482536,-40.017656742595136,-40.68644697871059,-40.086681173648685,-40.80761104822159,-41.6904311850667,-42.00382948666811,-42.71796301333234,-43.50343091180548,-42.82335492223501,-42.90789680695161,-43.679886046331376,-43.678676053881645,-43.031371290329844,-42.76111135352403,-43.6277835899964,-43.690004899166524,-44.59213064564392,-44.300875627901405,-43.358339979778975,-43.08815629919991,-42.60128540219739,-42.14422998111695,-41.31040962599218,-41.592671271413565,-41.88916342239827,-41.71723554795608,-41.09101110231131,-42.03537955181673,-42.42696464527398,-41.49760976154357,-41.7207204150036,-41.826872125733644,-41.15601089922711,-41.75916793290526,-41.194810886867344,-41.25695302290842,-41.507778282277286,-40.668902050703764,-41.172598858363926,-41.233859667088836,-41.8669132408686,-42.31196452630684,-41.36940175574273,-40.457712745293975,-40.08668954111636,-39.64441909408197,-39.718109604436904,-39.49849074753001,-39.4734847927466,-39.316564719658345,-40.198884926736355,-40.85068662883714,-41.27904240228236,-41.774400365538895,-41.175837338902056,-41.6018898175098,-40.71427093166858,-41.19278980139643,-40.352555765304714,-41.03749837214127,-40.710119989234954,-41.20896855741739,-41.236536104697734,-41.72735247807577,-41.4256295459345,-40.92449847329408,-40.056156722828746,-39.21369431586936,-39.1556924842298,-39.39998599188402,-39.835712282918394,-39.91931149410084,-39.50952400686219,-40.19507402461022,-39.32860566023737,-39.61379960877821,-38.70735810045153,-38.540703469887376,-38.313075319398195,-37.41821238771081,-36.52871236205101,-37.0424625701271,-37.6142606921494,-38.1863720966503,-38.94038686575368,-39.78719365457073,-40.150308130308986,-41.09353278251365,-40.870455359108746,-40.79901639698073,-41.568779441993684,-40.71519169071689,-40.590300037525594,-40.53856386337429,-41.39633103227243,-41.79307299759239,-41.91306919557974,-41.59375958470628,-41.69113398389891,-42.35080302739516,-42.660911477636546,-41.9170828294009,-42.639685679227114,-42.08825683640316,-43.060029527172446,-42.140041251666844,-42.943113919347525,-43.914371367078274,-44.89362351736054,-45.85437147738412,-46.09065256360918,-46.36499314010143,-46.56497084069997,-46.82839277340099,-47.667702451813966,-47.94595497334376,-48.78803946264088,-49.303559771738946,-48.44007913209498,-48.802362027578056,-47.997300278395414,-48.99534217501059,-48.97218115720898,-48.29272807948291,-47.59300741832703,-47.14780181925744,-47.1570905870758,-47.309274695813656,-48.11848100787029,-48.21275384770706,-47.63857305282727,-48.19867267925292,-47.4438903266564,-47.593238269910216,-46.948246443178505,-47.42315397085622,-48.2899964931421,-48.1944853910245,-47.795105676632375,-47.21454231021926,-46.37918096827343,-45.71262694057077,-46.606298341881484,-46.56222729664296,-46.587133474648,-47.28016461106017,-47.16570831742138,-47.21559890732169,-47.22061463771388,-47.57015423523262,-47.756855885498226,-48.05953565891832,-48.689607470761985,-49.364200443495065,-49.17516128253192,-49.84514354309067,-49.7412061416544,-50.36649960977957,-50.91570583265275,-50.33795173279941,-50.96711052535102,-50.860419435892254,-51.767772189341486,-50.95151785062626,-50.52214173460379,-50.90591075876728,-50.23262880463153,-50.439556177705526,-51.29490363178775,-51.608167642727494,-51.344844275619835,-52.309649486560374,-52.30649600736797,-51.674423900898546,-52.146650987211615,-52.83108189608902,-53.44975791266188,-53.156249726656824,-53.27005215594545,-53.3207049430348,-54.03431721869856,-54.97480599954724,-54.28715728409588,-53.60425994452089,-52.69097994687036,-52.00036362931132,-51.60715877637267,-51.734804287552834,-50.95604133233428,-50.62894871132448,-51.590057850349694,-51.630873209331185,-51.19063146878034,-51.61504571000114,-51.822137996554375,-50.96446153661236,-50.212856594938785,-50.67249126639217,-49.84050693642348,-50.82774242898449,-51.66433651559055,-52.586961205117404,-51.63236650079489,-52.08171088481322,-52.937164273578674,-52.6193433762528,-52.182255308609456,-51.20751954987645,-51.45323316100985,-50.481002368964255,-50.647787330206484,-50.38067119708285,-49.612574950326234,-49.267537902109325,-49.805999498814344,-50.47030751872808,-51.22217844054103,-52.145919498521835,-52.01064777281135,-52.46235803468153,-52.26764078810811,-52.165798916015774,-52.80447101267055,-53.32290047733113,-52.907703299075365,-53.06803960679099,-53.66889601992443,-54.03828637627885,-53.806375252548605,-53.03235410153866,-53.246943363919854,-53.072024784982204,-53.59781969152391,-53.201537009794265,-53.5399946058169,-52.92229304462671,-51.922803392168134,-51.836434164550155,-52.05106186820194,-51.972007068339735,-51.413669551722705,-52.20492685446516,-52.26449935743585,-53.15970562025905,-53.770622219890356,-53.52336822496727,-54.202263051178306,-54.24133205227554,-53.30912139033899,-54.015514995437115,-54.77156249759719,-55.584181647747755,-55.58156614145264,-56.46045320248231,-56.073514209128916,-55.58327110437676,-56.29552481370047,-56.27262304164469,-55.62805590592325,-55.51804276416078,-55.73407569620758,-55.52429084060714,-55.07043119613081,-54.296451959293336,-53.92420129245147,-52.990792443975806,-53.4421307281591,-53.38868495449424,-52.46418222086504,-53.364477480296046,-52.42193804355338,-51.88698708964512,-52.13005037745461,-51.588878753595054,-50.687708518933505,-51.184865061193705,-51.904040647204965,-51.00930024078116,-50.97401678189635,-50.30444310698658,-50.63022921560332,-51.6203863597475,-51.868323545437306,-52.0963671868667,-52.949770951643586,-53.62337475316599,-53.02797666564584,-52.75577179342508,-51.899702738039196,-51.05749940359965,-51.96065527619794,-52.93989563593641,-52.4049513223581,-53.21299884421751,-52.566593300085515,-52.24377094581723,-52.06611872045323,-51.847913834732026,-52.51837223675102,-52.27797482395545,-51.33677021274343,-51.38098686095327,-51.93836414720863,-52.39363046362996,-52.241372984834015,-53.00165523169562,-52.99313144991174,-52.83677857834846,-52.548814901616424,-52.49893214739859,-53.43764235964045,-54.31151210516691,-53.75062211276963,-52.75398788461462,-52.856934275943786,-53.44443104881793,-54.36334951967001,-53.61864206753671,-53.773269748315215,-54.33885184675455,-53.99061518302187,-53.078519077505916,-53.061858573462814,-52.57463139249012,-52.11205754103139,-51.195721310097724,-50.80722329579294,-50.535107525996864,-50.966500374954194,-50.80600571911782,-51.553369840141386,-51.18909418815747,-50.30093859322369,-49.93048974778503,-49.28483579820022,-48.891052949242294,-49.140089626424015,-48.230547070503235,-48.92048331769183,-48.85860482882708,-48.554731575306505,-48.35822517052293,-48.33481550915167,-49.29631120711565,-49.62949254177511,-48.80993793858215,-49.310239899437875,-50.19634862849489,-50.458508441690356,-49.697465448174626,-50.43876635748893,-50.38613733975217,-50.31242938200012,-49.73767176223919,-49.71496396884322,-49.22077584872022,-48.23675502697006,-48.8796508256346,-49.12580772396177,-48.91367823211476,-49.140639684628695,-49.4544234033674,-49.25595244253054,-48.3182677202858,-47.61049170745537,-46.731934604700655,-45.920080434996635,-46.61805156618357,-46.43847881210968,-47.37669849814847,-47.73484267713502,-48.35448761610314,-47.95336444210261,-48.62067490257323,-47.74967977637425,-48.55430157389492,-48.4879122171551,-48.95430970098823,-48.37544426135719,-48.26677990099415,-47.7771039721556,-47.764435740187764,-48.43138168333098,-48.92651295475662,-48.01701131509617,-47.26079354993999,-47.06956012174487,-47.07518583582714,-47.55173692153767,-46.74800956109539,-46.49808917520568,-45.49968138104305,-46.04572636587545,-46.16501219337806,-45.84348048781976,-46.30259881168604,-46.03323542838916,-46.22811894817278,-47.03540753154084,-46.27288405224681,-45.83927770052105,-45.949542575050145,-46.523943411652,-46.50989583553746,-45.690499865915626,-46.42050261422992,-46.79872669791803,-46.960095833055675,-47.89166999747977,-48.71410040836781,-48.46293570846319,-47.871062617283314,-48.687169707380235,-48.950627588666975,-48.56771258916706,-47.64848380163312,-48.26883494760841,-47.69232914503664,-47.443845010362566,-47.98437614738941,-47.81606344692409,-48.071717508137226,-47.803251299541444,-48.787300802301615,-48.12359923077747,-48.11900425888598,-47.46888649323955,-46.51341446163133,-46.08039256790653,-46.6177862752229,-46.73233933607116,-47.44294562237337,-47.016127557028085,-47.07922696182504,-47.18985217064619,-46.28725054860115,-46.033788442611694,-46.584956688806415,-45.69813341507688,-46.47864300943911,-46.45066905487329,-47.20129668759182,-47.70482177240774,-48.239341938402504,-48.60676594264805,-47.69815073767677,-48.42830635374412,-49.017065685708076,-48.08709372859448,-47.17254982003942,-47.927702156826854,-48.726768244989216,-49.05931611964479,-49.533327287063,-50.136502916924655,-50.5096870935522,-49.89790059905499,-50.68854008149356,-50.82760235387832,-51.776877300813794,-51.16656562592834,-51.373415337875485,-51.09761692723259,-51.69019655417651,-52.20891427574679,-51.56137676537037,-51.05694735934958,-51.46058139484376,-52.32389919552952,-51.851747209671885,-51.24369558459148,-51.042189001105726,-51.03089240938425,-50.29449005052447,-50.55367723107338,-51.19211694551632,-50.48811485245824,-49.722370421513915,-50.640812701545656,-50.12258567009121,-50.1908987541683,-49.996718797367066,-49.80495138745755,-50.43504887400195,-51.36301071383059,-50.398905966896564,-49.86962330760434,-50.78863887162879,-51.407153169158846,-50.78122687805444,-50.440754582639784,-51.017704266589135,-50.51490086596459,-49.597720944322646,-49.159883870743215,-49.69486790243536,-48.74232204770669,-47.90083635086194,-47.02773439139128,-46.19006082462147,-46.568286454770714,-46.34079644270241,-46.87967508286238,-47.09569326089695,-47.46570940176025,-47.23581903008744,-48.07007069699466,-48.77853048313409,-49.433139936532825,-50.17272325325757,-50.81114894989878,-50.985005089081824,-51.4154548808001,-52.113572472240776,-51.90014719311148,-51.78353408584371,-51.81655475310981,-52.81226633582264,-52.95823538582772,-53.85705450596288,-54.15490465937182,-54.550620056223124,-54.78906986955553,-55.41348590841517,-54.66438113246113,-54.31262783613056,-54.49321339605376,-54.04772333428264,-54.77236322266981,-55.668483436107635,-56.612561475951225,-57.36852445779368,-56.99760164273903,-57.98079389659688,-58.83710441272706,-59.737788170110434,-59.181674854364246,-58.543507852591574,-57.948332531843334,-58.745225282385945,-59.03207712108269,-58.72743412014097,-59.67092820815742,-60.06009685713798,-60.427871792111546,-60.172693183179945,-60.61040812218562,-59.956725410185754,-60.57803195156157,-60.67844441626221,-61.2921105902642,-61.12248895596713,-61.390456467401236,-61.991803424898535,-62.54413115000352,-62.312872351612896,-61.46174089703709,-60.88804597128183,-60.479448358062655,-61.323174566961825,-60.96228305948898,-61.72466852935031,-61.634228573180735,-61.51829738682136,-60.76246918551624,-60.412622635252774,-61.33158138394356,-60.731169251259416,-60.41584094800055,-60.071561785880476,-60.300156821496785,-59.98164724884555,-60.950545421335846,-60.678068762645125,-60.99737843265757,-60.63327023014426,-59.83984262123704,-58.909326903987676,-59.35148283978924,-58.797804445493966,-59.16140739712864,-59.801019264850765,-59.8346624430269,-60.372296425979584,-59.47481428598985,-59.419402656611055,-59.71600126568228,-60.363873910624534,-60.600873227231205,-59.698134558741,-60.42492048256099,-61.148193943779916,-61.42937598610297,-62.298051895108074,-62.11890752473846,-61.777256447356194,-61.22146150423214,-60.37112464988604,-60.7729301401414,-60.42758723208681,-60.486925097648054,-60.77608683984727,-60.77059466717765,-60.15223520435393,-59.22903330717236,-59.3397176573053,-59.81363974651322,-59.226134296972305,-58.25015062838793,-57.503624273929745,-57.34575869049877,-58.336550074163824,-57.648327542003244,-56.88824572833255,-56.72306798584759,-56.255392174236476,-55.747706251684576,-56.50115880649537,-55.57083765231073,-54.58638673834503,-53.703008122276515,-52.85339154582471,-53.40181577531621,-52.78245320590213,-53.128951942082494,-52.60247674770653,-52.499133301433176,-52.89015692193061,-52.02176252147183,-51.25054419087246,-52.063248698133975,-52.17658581677824,-52.42356845224276,-51.684000555891544,-50.69008153164759,-50.51445949124172,-51.02281548269093,-51.09768250863999,-51.0965379960835,-50.666686380747706,-51.54221228323877,-51.04128851601854,-51.33509965473786,-51.23750296141952,-51.57973513798788,-52.55869026435539,-53.508547032251954,-53.726791069842875,-53.77962556947023,-53.97584459045902,-54.25437748245895,-54.7849921612069,-54.45690503111109,-55.11037669098005,-54.180964928586036,-54.315273663029075,-54.96275388402864,-54.986598782241344,-55.41355416178703,-55.450372379273176,-54.73657457111403,-55.08645492698997,-54.2863927106373,-54.04324324661866,-53.185355856548995,-53.716465033590794,-54.556090214289725,-54.9828025107272,-55.70666441321373,-55.885181623511016,-56.23361518327147,-56.87580021703616,-56.64584746910259,-56.33634661696851,-56.579166621901095,-56.05668386397883,-56.84663221612573,-56.089097446296364,-56.563936312217265,-56.23895410634577,-55.520233888644725,-54.63516330206767,-54.26094213547185,-54.091369297821075,-54.52425221493468,-54.97929150192067,-54.021303832065314,-53.805681843776256,-54.7544188098982,-54.594623069278896,-54.149505962152034,-55.130698441527784,-54.416952485218644,-55.0799159812741,-55.79014317225665,-55.71054131630808,-56.08059824630618,-56.61156957875937,-56.46987504605204,-56.30417933035642,-56.07572867302224,-56.90920463996008,-57.12229840550572,-57.670929519459605,-58.18863060325384,-57.987912621349096,-57.017874635756016,-56.89204996684566,-57.884626450482756,-57.77971897833049,-58.534871238749474,-57.689880155958235,-56.8518961914815,-56.66346660628915,-56.73111426271498,-57.4121612906456,-56.64036122709513,-56.923868109472096,-56.64736453536898,-55.89328230032697,-54.94281817926094,-54.90621832385659,-55.382330348249525,-56.26749296206981,-56.3272324167192,-56.93134578736499,-57.79742544610053,-58.335044036153704,-58.27304921485484,-58.0291710793972,-57.326575462240726,-58.11145362723619,-58.73572466848418,-59.486103573814034,-59.20391708193347,-60.19776756875217,-59.26721423305571,-59.606347762048244,-60.48346257675439,-60.201426391955465,-60.965888678096235,-61.06069221068174,-60.67534412955865,-60.20417758822441,-60.18586535518989,-60.534558054059744,-59.612207640428096,-59.92202155198902,-60.88046928541735,-60.874268299899995,-60.320944553706795,-59.9905816745013,-60.91354035073891,-61.41550389258191,-62.39760491671041,-62.26466863183305,-62.133361463900656,-61.662938587367535,-62.32377394195646,-63.18893184605986,-62.674127771984786,-63.38026961358264,-63.719722563866526,-63.86734240921214,-64.68510920414701,-64.98413089895621,-64.52682397933677,-64.92141624353826,-64.37871344899759,-64.06259286124259,-63.52274026349187,-63.8013773933053,-64.74281059391797,-65.36312983883545,-65.41911440482363,-64.58507175324485,-63.65858592605218,-63.604422740638256,-64.49759665550664,-64.53779098810628,-64.60066930018365,-64.75016402918845,-65.20892480853945,-65.70654822187498,-66.43369325250387,-67.0114709045738,-67.3879790501669,-67.48749919002876,-67.13133681425825,-67.28936663968489,-67.53330019908026,-67.28666306752712,-67.76207742001861,-67.48628930887207,-68.02573980251327,-68.30708570871502,-67.61726242955774,-68.18544091936201,-67.24608448334038,-67.64075892046094,-68.56939578102902,-69.17033932264894,-69.34434125712141,-69.45334754837677,-68.74467679485679,-68.65442676702514,-67.68659338681027,-68.03142541693524,-68.41043370962143,-68.09909828472883,-67.82063845032826,-68.11714275181293,-69.04522944241762,-69.11129700439051,-68.36538386205211,-68.20042544556782,-68.9648505342193,-68.79922524793074,-68.70006363745779,-67.71862972853705,-67.20097434194759,-67.13894849503413,-66.65888120653108,-67.44567179540172,-68.12338055111468,-67.7395098078996,-66.76185880508274,-65.85430351924151,-65.98165318183601,-66.63684538053349,-66.11018209252506,-66.25424795690924,-66.38331420486793,-65.99804998608306,-66.2103840331547,-66.89085235539824,-66.41295049712062,-65.55395353026688,-66.13995782332495,-65.24645199161023,-65.97513186559081,-65.4278130279854,-66.13728800136596,-67.01167265698314,-67.35710754571483,-67.2961629414931,-68.19548872252926,-67.62316468777135,-67.52944184606895,-67.00634317751974,-67.56893142312765,-67.96278086584061,-67.90333730774,-68.85466924123466,-69.79451402788982,-70.44683772558346,-71.03084610635415,-70.61750595550984,-70.69141338253394,-71.11036168970168,-71.72115085134283,-71.57139784283936,-71.7035106420517,-71.84881680784747,-72.24581679562107,-71.95931270578876,-72.507853272371,-72.50475597800687,-72.82357940636575,-72.31160672241822,-72.8496730895713,-72.88205140363425,-72.88845557859167,-73.7310603079386,-73.78431046986952,-73.3249861751683,-73.37411006633192,-73.32624821690843,-74.26636663591489,-74.47682261886075,-73.81273287162185,-74.57241927552968,-74.67478745849803,-74.74805525364354,-75.36458312300965,-75.9635446453467,-75.12480754312128,-74.8517001233995,-75.67532982118428,-75.98129237862304,-76.33165263477713,-76.496699903626,-76.55854885559529,-76.9759032567963,-76.48145405482501,-75.50347030954435,-76.03761189198121,-76.39394290698692,-76.86326755257323,-77.50675833644345,-77.16808524355292,-76.57561765844002,-76.77277739159763,-76.52569091878831,-76.53915282571688,-77.4824691596441,-77.33644209848717,-77.3146887444891,-76.59654849162325,-76.45947935944423,-76.57643719390035,-77.46964102238417,-77.72978123649955,-76.8336842651479,-76.64824534626678,-77.34262537257746,-76.56514140637591,-75.9301003171131,-76.18843989446759,-76.29585414286703,-75.8876020940952,-76.13997775036842,-76.98454777477309,-77.22512960107997,-76.27180143492296,-75.44491803459823,-76.03207129705697,-75.11240266822278,-75.38588593387976,-76.10469672828913,-75.84982305718586,-75.48165795765817,-76.22763371886685,-75.72381876129657,-75.70009455876425,-75.7419595522806,-76.02042252756655,-76.55373432254419,-75.91607612418011,-75.41183091700077,-74.71639221301302,-73.85590404924005,-73.26293738512322,-72.37489402387291,-71.79373004380614,-71.45505042700097,-70.81579041294754,-71.05237348843366,-71.14742957428098,-71.28459591139108,-70.46409812569618,-70.18247254146263,-69.91349914064631,-69.24295975547284,-68.45078980736434,-68.51047206344083,-68.10681473556906,-67.87183375423774,-67.04039338324219,-66.2420828929171,-66.99545033089817,-67.48915300192311,-68.11680542631075,-68.37514366954565,-68.48543939273804,-68.56956912763417,-68.40751645853743,-67.96610014233738,-67.64956238912418,-67.0967580601573,-66.1768155656755,-66.90911068767309,-67.71360463788733,-67.74689155304804,-68.6225601695478,-69.4024693123065,-69.92038257792592,-70.4659356023185,-71.24087299453095,-70.47774170152843,-70.10091120470315,-69.1225218004547,-68.96807816019282,-68.64053959073499,-68.28928538830951,-68.70160531904548,-68.6486663557589,-69.41465108748525,-68.46648430172354,-68.41645105555654,-67.52551535470411,-68.47922596288845,-69.37150945747271,-70.1280117565766,-69.40619468363002,-69.06639770884067,-69.12030320288613,-69.96497761039063,-69.12248678458855,-68.94678003201261,-68.26711973315105,-67.84359937021509,-68.10514873499051,-68.18249242380261,-68.99820417258888,-68.86983213899657,-68.42402167618275,-68.6652987995185,-69.65522342408076,-70.44371630297974,-70.09560782741755,-69.46755505399778,-69.65005983412266,-69.54177275812253,-68.54632251290604,-68.63844669470564,-68.70084499614313,-68.90146995894611,-68.58924956200644,-68.53034547762945,-68.87707434780896,-68.09154659416527,-68.21936166239902,-67.98858999973163,-68.7933314149268,-68.46568330796435,-69.22832995885983,-68.43195427162573,-67.70586494775489,-68.16242748638615,-68.5529015478678,-67.726011401508,-67.4581601829268,-68.22256921371445,-68.75752049079165,-69.00525704026222,-68.40408616699278,-67.89092326629907,-67.60038014221936,-67.25287195947021,-67.88061631051823,-67.96711281593889,-68.16905246628448,-68.07442962797359,-67.69300923962146,-67.88192857382819,-67.83746173605323,-67.06150393001735,-66.52927464758977,-66.99229030264542,-67.159716156777,-67.64868419477716,-68.26617045793682,-67.74072961742058,-67.3322421554476,-67.29109246423468,-67.35788194695488,-67.74612434348091,-67.46315245283768,-67.78975227288902,-67.30702518671751,-67.65298004355282,-68.52435380686074,-69.0719967186451,-68.29780801199377,-67.3389784200117,-67.81216135108843,-68.27721023466438,-68.28844842826948,-68.2615944519639,-68.60858454043046,-68.31616684235632,-67.51064610434696,-66.58806981053203,-65.99760689912364,-65.08106559515,-64.93792047630996,-64.01423207251355,-63.34333684016019,-63.74900545645505,-64.59381554881111,-64.92335360776633,-65.67114513367414,-65.27097000088543,-65.48743876628578,-66.22783793509007,-67.03191367071122,-67.92942510405555,-68.01768204104155,-67.14745615562424,-67.5944131067954,-66.61009176867083,-66.26332635525614,-65.35834358772263,-64.5138633758761,-63.65576857281849,-63.858623324427754,-62.94996805349365,-63.48468359326944,-63.57885004254058,-63.498515056911856,-62.986249554902315,-63.32465382665396,-63.40157964639366,-64.08204795653,-64.80518874106929,-65.4897693824023,-65.58921003667638,-66.51077811000869,-67.21455926727504,-67.54707577917725,-66.9374972092919,-67.88722972106189,-68.32656223280355,-68.05588976386935,-68.10646024672315,-68.53383271628991,-67.7137614148669,-67.80180906318128,-68.70261399168521,-68.05903940834105,-68.27724367147312,-69.22197031835094,-68.42570175975561,-69.30095241079107,-69.76378321275115,-69.32727990904823,-70.26164207188413,-69.72599982423708,-70.44178552133963,-69.5115210195072,-68.65865765931085,-68.68690187158063,-68.89802897255868,-69.2529282020405,-68.88341381354257,-68.29235226940364,-68.44753388827667,-69.3725656257011,-69.05419960059226,-68.08750194264576,-67.76954283798113,-67.35068005369976,-67.52458520187065,-67.47087590070441,-66.65342258894816,-66.76476072240621,-67.45080411667004,-67.48521722480655,-67.57682829443365,-68.05077510466799,-67.68370672268793,-67.22316697286442,-66.29830165905878,-65.57364009227604,-65.54738416429609,-64.95660508563742,-65.30324022239074,-64.47736819228157,-63.50484011974186,-62.68540526647121,-63.24587324960157,-63.780775534920394,-63.010023528244346,-63.00421818671748,-62.282765198964626,-62.86560954991728,-62.902714136987925,-62.54636893654242,-61.940585136413574,-61.25287633575499,-60.554266795516014,-61.126943851821125,-62.02836528001353,-62.52040485152975,-61.627794643398374,-60.65673538483679,-60.12988030677661,-60.583341555669904,-61.137093246914446,-62.109315101988614,-61.38257197011262,-61.15364336548373,-61.42900269944221,-62.15486656688154,-62.46775099495426,-62.655567394569516,-63.367571123410016,-63.17886891076341,-64.10788203310221,-63.72219246486202,-64.5227335114032,-64.51853424869478,-65.28473387798294,-65.7603905168362,-65.77073848154396,-66.0932271941565,-66.25236112484708,-65.86940156854689,-65.75174695625901,-65.80995796015486,-65.65498907444999,-66.3929390902631,-65.90705720428377,-65.92719349451363,-66.34452546387911,-65.47049068985507,-65.62454986805096,-65.43448786856607,-65.06496905442327,-64.08345821639523,-63.490203668829054,-62.808712986297905,-62.955674855504185,-63.151457651052624,-63.39222499355674,-64.30156635306776,-63.620564544107765,-62.84482694650069,-62.0234816451557,-62.4476641821675,-63.290305541828275,-62.52002264140174,-62.68436459405348,-63.54085682006553,-62.810266176238656,-63.807745213620365,-62.8996515320614,-63.49765453673899,-62.5962730050087,-62.20643974561244,-62.15400932589546,-61.26510982355103,-60.27066450100392,-61.09869853593409,-61.11975624598563,-61.59674949059263,-60.9020362412557,-61.100941522978246,-61.49403524957597,-62.4743993235752,-61.68523316970095,-62.02757574338466,-61.40637371968478,-61.6301386221312,-62.10562405223027,-61.4127493663691,-62.16089910687879,-62.2020353320986,-62.30671754665673,-61.4394378089346,-60.99083135742694,-60.1848405203782,-60.87868760013953,-61.222746048122644,-60.4850835413672,-60.13168736035004,-61.03927074279636,-60.1580423861742,-59.94017457170412,-59.18139592465013,-59.41786843305454,-58.42324272636324,-59.369919918477535,-59.414777868427336,-59.01776328822598,-59.7405423023738,-60.045513645745814,-60.578946616034955,-61.331493720877916,-61.70752922445536,-62.1196767562069,-62.16568173049018,-61.19088251935318,-60.59508453635499,-60.2634112695232,-60.2728510517627,-60.653216739650816,-59.773595412261784,-59.01660747407004,-58.28768600570038,-57.967362822033465,-58.57923384010792,-57.880878009833395,-58.71349792322144,-59.164886485785246,-59.043120567221195,-58.94025006843731,-58.88543420750648,-59.21366802463308,-59.104737936519086,-60.06395382201299,-59.98594892024994,-60.6570767974481,-60.739800944924355,-60.13622356252745,-59.44808778073639,-59.825071493163705,-59.51954731531441,-60.33729492267594,-59.97631374746561,-59.352842470631,-59.37895234487951,-60.325235980562866,-59.94001727923751,-59.585591153241694,-59.91061095986515,-60.29786730045453,-60.86177327809855,-61.47757973847911,-61.11679897503927,-60.168708213139325,-60.37384418398142,-59.85401270072907,-60.76217687036842,-60.17571456730366,-60.40747603587806,-60.87896169209853,-61.15382771845907,-60.29327382100746,-59.98493302706629,-60.19258169736713,-59.819914021063596,-59.78735025180504,-60.352263047359884,-59.68118520407006,-59.419946576002985,-58.69373988267034,-58.56386099010706,-57.570490268524736,-57.72096308786422,-58.14876654651016,-57.43798519996926,-56.95048478245735,-57.332815100904554,-57.33264903491363,-56.34793230704963,-55.5290191648528,-55.07301446562633,-54.94945073314011,-55.337934480048716,-54.6508291112259,-54.34442005120218,-54.35691578686237,-54.62514183111489,-55.11056373314932,-54.77574564050883,-54.461290968582034,-55.11506958119571,-54.711493000388145,-55.654289146885276,-55.87811098853126,-56.18661224888638,-56.20151648623869,-56.066496959887445,-56.414532602764666,-55.56964795989916,-55.87478030566126,-56.80440692510456,-57.66964144771919,-57.691022913903,-58.02889688964933,-58.620117316022515,-58.639423503540456,-58.50603079330176,-58.02830634266138,-58.178541087545455,-57.81518269935623,-57.36418375559151,-56.71921024378389,-57.68830772349611,-57.818182989023626,-57.620132074225694,-56.82600623788312,-56.900479588191956,-57.39313183957711,-58.126913751941174,-57.5424397373572,-58.486871294211596,-58.90310241654515,-58.976462323218584,-59.33721182914451,-59.83245252817869,-59.7805894180201,-59.756966936867684,-58.85682321572676,-58.70399784250185,-57.86030123848468,-58.735061993822455,-58.385893904138356,-58.22666615061462,-58.75072305789217,-59.595975623931736,-59.45086630061269,-59.43199504585937,-59.336429028306156,-59.133609311655164,-58.99880314897746,-59.726845177821815,-59.92477241810411,-60.10860207397491,-59.598789647221565,-59.96730935014784,-60.247009308077395,-59.816456677857786,-59.720775715541095,-59.64121382916346,-59.456509449053556,-58.49532992346212,-58.156996397301555,-57.21415894012898,-57.28280490729958,-56.891230751760304,-56.25840948149562,-56.37268287315965,-55.8263967060484,-55.4513392127119,-56.37964802328497,-57.058299612253904,-56.34631503513083,-56.23047575727105,-55.87756529590115,-55.294232030399144,-55.49933477398008,-54.9467693134211,-55.639484975952655,-55.50358335627243,-54.955771141219884,-55.83753217710182,-55.02148108696565,-54.30155490571633,-54.597961680963635,-55.22187701612711,-54.735688962973654,-55.28864058665931,-56.184612441807985,-56.0697925677523,-56.85696941614151,-56.93410326959565,-56.59480788744986,-56.62763363821432,-56.792682539206,-56.56979524809867,-56.36051407409832,-55.37047504261136,-55.718228770419955,-55.76174633251503,-54.92639345629141,-54.742189653683454,-54.05414214916527,-53.22045790404081,-53.97723495773971,-53.01575113693252,-53.26179893128574,-53.571209536865354,-52.96234554518014,-52.84922468243167,-53.77563170948997,-53.77358144521713,-53.175204053521156,-53.61178636364639,-54.216487816534936,-53.382092769723386,-53.2306711031124,-53.428596762474626,-52.98086145846173,-53.80910056969151,-53.30807690229267,-53.30881850840524,-53.6630780743435,-53.44226200086996,-53.968587612267584,-54.92425718670711,-54.63679953105748,-54.84850421920419,-55.34327929792926,-55.68054384691641,-55.610672439448535,-56.58806080464274,-56.04918657941744,-56.33069527382031,-57.185371580999345,-57.97360301529989,-58.46878516348079,-57.55593002680689,-56.59874371625483,-56.31644058180973,-55.98408218473196,-55.62081119371578,-56.188131811562926,-55.30891843093559,-55.69303984893486,-55.87701970245689,-54.914044010452926,-54.57590604107827,-55.27509691379964,-55.300056578591466,-54.59407871495932,-55.30548987118527,-54.88909920118749,-53.892627426888794,-54.24190435837954,-54.217949494253844,-53.43732076743618,-53.877541799563915,-52.91102725081146,-53.01009252620861,-52.40189903136343,-52.65125822648406,-52.05664698034525,-52.204627194907516,-51.520456744823605,-52.48403862398118,-52.11259442567825,-51.90507676452398,-52.252137393224984,-53.09476371714845,-52.7536138468422,-51.79708770895377,-51.09256946714595,-51.789207033813,-51.02488630916923,-50.94710335601121,-51.41762397438288,-51.76382154645398,-50.911409811116755,-51.008233953733,-51.239976497367024,-50.31383780762553,-49.92955859005451,-49.30481726909056,-48.33869167556986,-48.4157915529795,-49.09742807270959,-48.57076487317681,-48.499213931150734,-48.75506532238796,-49.36510709207505,-49.799371721223,-49.8367937435396,-50.76165213715285,-51.261443914379925,-51.983610353432596,-51.82832041801885,-51.75285415397957,-50.91399551089853,-50.03790501737967,-50.611677253153175,-50.3396628680639,-50.93457762757316,-51.69054756499827,-52.15857531130314,-51.79954943852499,-52.20605618413538,-52.47557924967259,-53.09401496499777,-53.937617601361126,-53.645198572892696,-54.463407173752785,-53.50516856089234,-53.15418444480747,-53.14555705804378,-53.52430204767734,-53.29757089819759,-53.40186857804656,-54.34987675305456,-55.24774919031188,-54.690320015419275,-55.15225729858503,-55.82277976628393,-55.6156046804972,-55.75821555685252,-54.918166587129235,-54.22270379168913,-53.652795566711575,-54.38057104172185,-53.580456655006856,-53.95754853822291,-53.16408099187538,-54.029470074456185,-53.336328329052776,-52.52912692865357,-53.00127605488524,-52.30005186935887,-53.210203871596605,-53.84097764873877,-53.03576998785138,-53.48389431834221,-52.90799917560071,-53.62285054009408,-53.64957885583863,-53.65479578683153,-54.39026690740138,-54.579447547439486,-54.64032862940803,-55.5944930058904,-55.76774176862091,-54.92576006241143,-55.56406274298206,-55.938772975467145,-55.9160198145546,-56.45011146645993,-56.653263818472624,-56.181906395591795,-56.61652022507042,-56.82476522773504,-57.601102743297815,-56.73394031403586,-56.43975791754201,-55.701775363180786,-56.406748582609,-55.967060539871454,-55.78716733958572,-56.32607881212607,-55.867805988993496,-55.29839710285887,-54.41246468340978,-54.813736947253346,-55.02213904308155,-55.30615476099774,-54.68812381196767,-55.37037005787715,-54.74328938871622,-53.92760256212205,-54.53306138748303,-55.39669137541205,-55.43567316047847,-55.20186228770763,-55.111062109004706,-55.94472723733634,-55.340943296439946,-55.090981191024184,-54.23382574599236,-55.164251504000276,-55.16913209343329,-55.65014668414369,-55.29486137162894,-54.85897308308631,-55.47656254097819,-56.083802858833224,-55.10231265705079,-55.16971462732181,-55.13897877372801,-55.74876178568229,-56.120043431874365,-57.025636626407504,-58.01742506539449,-58.38682004995644,-58.35760883195326,-59.183461611159146,-58.88560996716842,-58.12724203709513,-57.8617780636996,-58.505494225304574,-58.10375893814489,-58.22475274372846,-58.24365852586925,-58.77236810605973,-59.135501948650926,-59.71438853116706,-59.150840011425316,-59.90139895724133,-60.46995124546811,-60.26135459495708,-60.127416126430035,-61.1071638870053,-61.83033096604049,-62.16726602986455,-62.33499844232574,-63.18342210352421,-62.63450641743839,-62.58682918548584,-63.1369884791784,-62.51348187960684,-62.96746857324615,-62.13915288541466,-62.11117939744145,-61.21785126486793,-60.69983975496143,-60.98151260847226,-61.60703703481704,-60.725862979423255,-60.99943502387032,-60.53930801060051,-60.631726475432515,-60.861110974568874,-61.27576412400231,-62.06149255577475,-61.296478495467454,-61.18856665911153,-61.88315086765215,-61.28151904931292,-61.45499952044338,-62.23858993547037,-62.71003112755716,-63.29948739660904,-63.23087293282151,-62.61517174588516,-62.247564075980335,-62.337937250733376,-62.777735258918256,-62.0103382691741,-62.56386890029535,-62.57812118483707,-62.31384839164093,-63.171228237915784,-63.684801761992276,-64.29160792473704,-64.44898908073083,-63.70607877429575,-62.88548680767417,-63.30873249983415,-63.66202310658991,-63.91199716832489,-63.5455188145861,-64.07349263317883,-65.0441714245826,-64.34337758459151,-63.87741638626903,-64.33075688406825,-64.83119985973462,-64.26390573568642,-63.56585723021999,-62.80570413544774,-62.642806177493185,-62.87765674199909,-63.633303033187985,-63.61142840469256,-64.49548579752445,-65.21753064543009,-65.66530634555966,-65.39088869141415,-64.71112475637347,-64.20965065760538,-65.1595972776413,-64.46585652604699,-65.22346162982285,-64.69378504436463,-64.0839530332014,-64.78806822467595,-65.12646358180791,-64.25649177329615,-64.06618633307517,-64.46850371407345,-65.24432757869363,-65.69656168902293,-66.49060945212841,-66.90655521396548,-66.97660836204886,-66.75464641768485,-67.728172050789,-68.6277827708982,-68.71583582041785,-68.5406827032566,-69.53809252707288,-70.18221302470192,-71.14268110785633,-71.04173590941355,-70.74536316841841,-70.96651477366686,-70.12109233718365,-69.38727376703173,-68.58502067020163,-67.60496709961444,-67.36361635895446,-67.68748842924833,-68.31789446715266,-68.16145936911926,-67.36373104527593,-67.96777533600107,-67.37190404115245,-67.11780367558822,-67.69787154812366,-68.11539569310844,-68.55466594500467,-68.54824846563861,-68.81918159732595,-68.10965468455106,-68.63821243587881,-68.98698127036914,-68.66537260496989,-68.47398040816188,-68.28733378602192,-67.65372738800943,-67.3387020942755,-66.46746677951887,-66.50284703215584,-66.79295490542427,-67.34241486573592,-66.59207610739395,-65.8731507146731,-65.15964351547882,-65.12235892750323,-64.38543137256056,-63.80104141170159,-64.55450203409418,-65.20678105112165,-66.16320005059242,-65.93808746431023,-65.8150838194415,-66.09301098622382,-66.02509951870888,-66.67413151310757,-66.1964303846471,-65.20912723150104,-66.10613937908784,-66.47874432848766,-66.29368786793202,-66.99486929597333,-66.08319092681631,-66.30380796687678,-65.63096217438579,-66.2175270342268,-66.38390399562195,-66.42487093806267,-67.40919924527407,-66.61363012995571,-66.98801350127906,-66.5272623389028,-66.89884773734957,-66.85787531686947,-67.63365746522322,-68.15125098312274,-67.63232140755281,-67.57566021662205,-66.60596792353317,-67.29680556757376,-67.30964289978147,-67.62672866368666,-67.41322763077915,-66.70532929012552,-67.04153645737097,-66.27260691672564,-66.69442417658865,-67.50289209606126,-68.4856832223013,-68.6060927552171,-68.16691466094926,-68.1824394077994,-67.56540674483404,-67.19484514510259,-67.64007608033717,-67.03534395247698,-67.2581365769729,-66.3000558023341,-65.85504239471629,-66.77331040380523,-66.55950906407088,-66.06742258323357,-65.07468424690887,-64.38411118183285,-63.443731784354895,-62.60229515098035,-62.589897715486586,-63.50170615874231,-64.48321893485263,-65.4338599042967,-65.43536283215508,-66.23393445508555,-66.73447365732864,-66.81161748478189,-67.49563040118665,-67.83644449803978,-68.20128448680043,-67.67219116259366,-67.61573040764779,-67.53594485158101,-67.56995779555291,-68.4631123598665,-69.18056261306629,-69.208830348216,-68.37317805830389,-68.39581824839115,-68.94802602380514,-69.06081212963909,-69.38280566874892,-69.70436878828332,-70.02725731115788,-69.86241031857207,-69.78779927548021,-69.31877620518208,-69.2488077916205,-69.62514157081023,-70.5500643728301,-71.41830807877705,-71.85486507089809,-72.44635761668906,-73.2377527570352,-73.0819464949891,-73.8274062438868,-73.39938884181902,-74.33670937968418,-75.11710779741406,-74.22583441948518,-74.41130589973181,-74.90603259252384,-74.15595101378858,-74.26490260148421,-74.07691064709798,-73.35220872797072,-73.37294823955745,-73.6392086809501,-73.37390671949834,-72.61705979472026,-73.27628092328086,-73.37588502885774,-72.754806116689,-73.69161557592452,-74.36368638882414,-74.47502687573433,-75.23464317480102,-75.14985093893483,-76.06630880897865,-76.05520220287144,-75.96520651923493,-76.30005040252581,-75.47657065326348,-76.14645147696137,-75.35928522562608,-76.18214228469878,-75.34879705822095,-75.03275184240192,-75.27913970686495,-75.387916080188,-75.57034173933789,-76.21410616114736,-76.77640656987205,-76.32385312858969,-76.229495650623,-76.81723253009841,-76.2083049416542,-76.7253287974745,-76.38061609910801,-77.1282647983171,-76.72457447648048,-77.13833825895563,-76.57468694075942,-77.15970068518072,-76.1708460887894,-77.05714524630457,-76.79333413951099,-75.80620459839702,-75.31356218317524,-75.63600953156129,-75.00938513828442,-75.38039790512994,-76.00408918969333,-75.91884418390691,-74.93726927228272,-75.8721630172804,-75.72943374468014,-74.87398410402238,-74.02572144707665,-74.69418116007,-75.59636425366625,-74.98776254383847,-74.38470814423636,-73.83394475840032,-73.54661886859685,-72.75151846092194,-71.91185908857733,-71.55854722391814,-71.53485061507672,-72.48949317447841,-72.21640580287203,-72.09015997126698,-71.69493831833825,-71.9545011012815,-72.1618153792806,-72.47249677637592,-73.07151616644114,-72.72875590715557,-73.58565183123574,-74.43592963786796,-75.29750893451273,-74.59061014978215,-74.40096796862781,-74.320892597083,-74.97322828043252,-75.78503920976073,-76.49122698046267,-77.47756996471435,-77.0552163743414,-76.27093692775816,-77.01888550678268,-77.94125177012756,-76.99979830114171,-77.59048614604399,-77.46823649993166,-78.06072364374995,-78.76669407403097,-79.72220902284607,-80.69296236569062,-81.67652281653136,-82.13090738235041,-81.77984122605994,-81.85926059819758,-81.29183740215376,-81.97382848896086,-81.91377124516293,-82.65981304598972,-82.45038249110803,-82.066191425547,-82.98089691484347,-82.18279855651781,-83.03163995919749,-83.65475726360455,-83.78489702008665,-84.38328643050045,-83.75523321283981,-82.97142977174371,-82.09334665955976,-82.46177654061466,-82.01374389184639,-82.98123705107719,-83.54647772293538,-84.35937367891893,-84.89853114914149,-84.87306975852698,-84.36613015085459,-83.7625164296478,-84.20027947891504,-84.39339080406353,-83.86340656131506,-83.81122687039897,-84.31292825751007,-84.72924530366436,-83.99878133367747,-83.24926837580279,-83.96702553657815,-83.59720007376745,-83.80704187788069,-84.11348288226873,-83.96054409816861,-83.81793080689386,-84.50113143026829,-84.86253648716956,-85.45351687818766,-85.24025611393154,-85.79754370963201,-86.10495879687369,-86.4573990679346,-86.46442696545273,-85.48842639941722,-86.02183115575463,-85.3857019324787,-86.36114656738937,-86.92581547936425,-87.71080335509032,-87.61357131414115,-86.81025411980227,-86.3402672437951,-86.39505144394934,-85.61121784104034,-84.63204694492742,-83.69371086871251,-83.95502353366464,-84.66425534524024,-84.30757149122655,-84.84895983943716,-84.60944592859596,-85.09660763386637,-85.81635081861168,-85.41334085073322,-85.17771144863218,-85.28616367699578,-85.15150698740035,-84.70459502469748,-85.62690981384367,-85.70818198518828,-85.11512258742005,-85.87763143703341,-85.26386608695611,-84.87589272996411,-85.69849349791184,-84.98557941010222,-84.5558961299248,-84.96271850820631,-85.28202424198389,-84.99840578297153,-85.66877049813047,-85.93323672842234,-86.62535817734897,-86.8429228826426,-87.23743622051552,-87.58243060251698,-87.64187559112906,-86.95139290904626,-86.81928970944136,-86.12821841659024,-86.21198265114799,-85.41486563626677,-86.08248262759298,-85.99139909585938,-86.82741332659498,-86.90692064585164,-87.28438746416941,-86.74017619807273,-85.75895278155804,-85.27552410913631,-85.46891008177772,-85.84355584625155,-86.37827210035175,-86.55897402437404,-86.15521621704102,-86.60690316278487,-85.80621152184904,-86.7696553808637,-87.64019115502015,-86.96622532606125,-86.21354616992176,-86.75921720638871,-87.68232635362074,-87.6010966761969,-87.53066658088937,-87.36819419777021,-86.83311596699059,-87.63558602239937,-87.23707451624796,-86.89710969896987,-86.57465520082042,-86.16474886611104,-86.76235580584034,-86.6642190492712,-86.66777524724603,-86.51752830762416,-87.01725878659636,-86.17649316508323,-85.78867039922625,-86.69540059007704,-87.57781781768426,-87.97458913223818,-88.03573866188526,-89.02782110543922,-88.40008793119341,-88.24109848216176,-88.39989854488522,-87.47763094957918,-88.01664812490344,-88.56866021454334,-88.07622739300132,-87.30763793829829,-87.54466528259218,-87.72777107311413,-88.13204025803134,-88.35001048259437,-87.89353547059,-88.35739559307694,-89.16296223457903,-89.77419144613668,-90.7208005306311,-91.04125357372686,-91.0022732433863,-90.46415695827454,-89.7886623213999,-89.71220416529104,-90.48183047957718,-90.95232597691938,-91.81945646973327,-92.49076629336923,-92.68386293761432,-92.70699434168637,-92.24486838141456,-93.24472954683006,-93.48734293412417,-93.96747548365965,-94.91288557974622,-94.15772970346734,-94.99662475241348,-95.02301321504638,-95.82527690799907,-95.74573868187144,-96.71977756312117,-95.74656407581642,-95.90213102428243,-95.88761684251949,-95.07359254313633,-95.2994780940935,-95.39603340392932,-94.57607374992222,-94.04615655168891,-93.55981287360191,-94.05904568498954,-94.9117558398284,-94.58013285463676,-94.83992683980614,-95.46569799352437,-95.0062537570484,-95.73572685848922,-95.53966370364651,-96.38384723244235,-95.41847303230315,-94.62346977414563,-94.91774353431538,-95.77394815487787,-95.55252380063757,-96.37333096330985,-97.34781664609909,-97.35799338156357,-98.27567258710042,-98.24413931602612,-98.82097144890577,-98.4120290754363,-97.44534851703793,-97.59770252229646,-96.74569291807711,-95.81815836345777,-95.12110265064985,-94.97190575813875,-94.79776982963085,-94.95877362741157,-94.7574533089064,-94.6283856718801,-94.60259675933048,-94.1704003107734,-93.84215579275042,-93.54412164865062,-94.433625980746,-94.10798341035843,-93.68633621139452,-93.62740202061832,-93.01532190619037,-93.70254770573229,-93.34553467854857,-92.48518338659778,-91.62829595943913,-91.71308100782335,-92.47412424022332,-93.13045961875468,-92.35900966264307,-91.43450645403937,-91.77457749983296,-92.0096254372038,-92.90743021760136,-92.42206393601373,-92.45131611125544,-91.93193762516603,-92.50244187377393,-92.31979680201039,-91.99292579386383,-91.21073964703828,-91.03519085096195,-91.35738577693701,-91.44071064377204,-91.76703069265932,-91.18508352525532,-90.8105330108665,-90.08433343144134,-89.24428167380393,-89.94674896914512,-89.63239911571145,-89.51924095256254,-89.90463955560699,-90.40883236285299,-89.74910285277292,-90.64524558512494,-89.970119102858,-89.71986261056736,-90.44366877526045,-89.81822564080358,-89.23056937335059,-88.45891106128693,-88.58912423066795,-88.10938294837251,-88.58590941503644,-88.16112780570984,-88.64448085706681,-87.91905224416405,-88.4354471550323,-88.75629964889959,-88.36929960735142,-87.46982777817175,-86.60173795791343,-85.9896428976208,-85.386856705416,-84.41591418487951,-85.21736371936277,-84.9916205345653,-84.9843600448221,-85.03648569853976,-84.3097056359984,-83.43408466875553,-83.76733765471727,-84.72952561918646,-83.9132923730649,-83.80205272464082,-82.81238202191889,-83.62609819415957,-82.972461739555,-82.66408377001062,-82.74654210684821,-83.43701344681904,-84.00480896467343,-84.15201218845323,-83.77632902469486,-82.87296780338511,-82.11930685117841,-82.28793821576983,-81.70844778837636,-80.74312197510153,-80.19370313733816,-81.08542592730373,-81.67165887495503,-81.05552957067266,-80.81156030995771,-80.16203633323312,-80.30360623262823,-80.38803158514202,-79.70914173359051,-79.60293746227399,-79.21847970131785,-79.81139029283077,-78.96102149039507,-79.73392461054027,-79.02613940136507,-79.799610841088,-80.12872562045231,-79.67567039560527,-80.56802062736824,-79.57398595893756,-79.99414734356105,-80.42077479604632,-79.44066881295294,-79.81786032859236,-79.33297345228493,-79.06596736889333,-79.80594011349604,-80.16846619267017,-79.39858307642862,-80.09930663648993,-80.54860086226836,-80.84093612059951,-80.17932595405728,-80.94927348103374,-80.20964912418276,-80.90178536530584,-80.80847718706354,-80.01824158849195,-80.72770359553397,-79.8228226993233,-80.3178932107985,-80.18188005499542,-80.32480356516317,-80.34813066385686,-80.20081198681146,-80.5196140310727,-81.44578685797751,-81.65850092191249,-81.85281761083752,-82.76652604946867,-83.47965940413997,-83.1267414689064,-83.31732327397913,-83.49855792662129,-84.05086313793436,-84.11299770325422,-84.99291989672929,-85.89929871074855,-86.0750763011165,-86.29100662237033,-85.66801766492426,-85.1534781968221,-85.725058211945,-84.86562835192308,-85.61256067547947,-86.58166943723336,-86.64637465728447,-86.22742158873007,-86.70979160396382,-85.86187603045255,-85.02676411066204,-85.32489046221599,-85.8575448882766,-85.69254131847993,-86.25439731031656,-85.6027778335847,-84.96604298241436,-85.20102574955672,-84.64194723172113,-85.09848975436762,-84.86087269475684,-84.21462270570919,-83.54270539153367,-83.94455522252247,-83.81102162925526,-83.76376775233075,-82.87665473110974,-82.62304214993492,-81.688401337713,-81.06587187154219,-80.97251136833802,-81.16188254673034,-80.19911606237292,-81.10931179625914,-81.28517982829362,-81.39178516669199,-80.59122369810939,-79.6270412155427,-79.53414633125067,-78.66721848817542,-79.23687094356865,-78.51225342834368,-78.79686239361763,-78.11456185625866,-77.67820884753019,-78.63944528764114,-77.94633513176814,-77.4653552416712,-77.86293952260166,-77.97039902769029,-77.33278683014214,-77.80890040611848,-78.13872326631099,-78.40438744518906,-78.47110483422875,-78.57451321650296,-77.90780720394105,-77.29082685383037,-77.03109658462927,-77.96897629322484,-77.21190558094531,-78.05889990599826,-77.13316939398646,-77.92859591497108,-77.07691058097407,-78.06037701899186,-77.54793897364289,-77.07583090756088,-77.29664096049964,-78.17007828922942,-78.7438460928388,-79.40706815430894,-78.75301320897415,-78.50980258919299,-77.92516868654639,-78.08230725256726,-77.57471113698557,-77.48703577881679,-77.47046321025118,-77.86681662872434,-76.98937177518383,-76.08384302165359,-76.57529928628355,-77.25297329435125,-76.87877999944612,-77.37496234476566,-77.68125806376338,-78.39163092151284,-77.76525764074177,-77.46468270523474,-77.68245745124295,-76.6926981904544,-76.84840769786388,-77.64974041515961,-76.68143715895712,-76.58209887472913,-75.98960834601894,-75.27722170203924,-75.52472268370911,-75.06868966389447,-75.83360479725525,-76.16345880227163,-77.06955536687747,-76.68732617190108,-76.67219863412902,-77.5766271315515,-78.00981066236272,-77.93120065890253,-78.02480014879256,-77.67562608420849,-77.11490143137053,-76.87966957362369,-77.0728635606356,-76.85936912568286,-77.49361956166103,-77.96643265336752,-77.01048968778923,-77.97294438676909,-78.32018222194165,-78.96656764671206,-79.29744098056108,-79.47277863509953,-79.32265113992617,-78.34057485777885,-78.97819467401132,-78.83881555544212,-79.77438871469349,-78.9271498201415,-79.37235506623983,-79.00271428423002,-78.31018066499382,-77.52775866771117,-76.5582960951142,-75.82118932390586,-75.73902258416638,-76.00550656672567,-75.35813310276717,-75.37118035648018,-75.36153270537034,-74.61652318062261,-74.17322897305712,-74.79163732333109,-74.46545710647479,-74.4507640870288,-74.51327536348253,-74.9161536116153,-75.84051337698475,-76.10098310606554,-76.27262048050761,-76.93005851330236,-76.45197314536199,-76.03641472384334,-76.76169536681846,-76.13737817294896,-77.0868990928866,-76.15578842256218,-75.71541702095419,-76.21776562929153,-75.82287664385512,-75.62550363363698,-76.12218751572073,-76.75941932201385,-76.86151182278991,-77.83361523831263,-77.71042251959443,-77.48447589203715,-76.94723317353055,-77.70970538211986,-77.69631123589352,-77.62361299525946,-77.23092686897144,-76.64499840466306,-77.38424540869892,-78.23234191071242,-77.8742273086682,-78.01057601207867,-77.41294395644218,-77.50334594026208,-77.27487860573456,-77.31261194637045,-77.77242326177657,-78.02599854627624,-78.14617277961224,-77.74517456442118,-78.35040872683749,-77.51220699958503,-76.76671693706885,-76.45460053766146,-77.4436529870145,-78.1217053188011,-78.24977347953245,-77.86748460121453,-77.55183614837006,-78.2587925652042,-77.69642906449735,-77.86787286028266,-78.1062186891213,-78.54747863253579,-79.51555650215596,-79.30180910602212,-78.7834745021537,-78.8503605616279,-79.83376856148243,-79.63354966137558,-79.64003135962412,-79.13084939261898,-79.42365486174822,-79.54315118165687,-79.29676993796602,-79.02278390293941,-78.91267876885831,-78.21916407346725,-77.27432698011398,-77.76469484344125,-77.60766941308975,-77.96301616402343,-77.23142524342984,-77.05648801708594,-77.72989088576287,-77.92336736992002,-77.26915277168155,-76.89020084124058,-76.19693451095372,-76.64219951909035,-76.6435031988658,-77.61896974546835,-77.57662503793836,-77.15977634862065,-76.26742332428694,-75.36262119049206,-75.53424909384921,-76.42758898437023,-75.5177459041588,-75.70153487846255,-76.38196378713474,-75.72782463673502,-75.52017861185595,-75.66675455402583,-74.68796706711873,-75.37967922212556,-75.12249547848478,-75.9412066154182,-75.52110089361668,-74.71566104097292,-74.75406344886869,-73.87766876118258,-73.19729207549244,-73.80464248545468,-74.42962872842327,-75.17997070541605,-74.33729526260868,-75.05933520244434,-74.56809270987287,-74.59898658609018,-73.72524863993749,-72.83584741177037,-73.31281466362998,-73.35587280988693,-72.41883553285152,-71.51045287679881,-71.66315917670727,-72.57049311464652,-71.84669796191156,-71.17750882403925,-70.67243059165776,-70.90215398045257,-71.03626722935587,-70.47294278256595,-71.19637861894444,-72.16375016840175,-71.97801686776802,-72.3604891304858,-71.63497267803177,-70.84657858591527,-70.24124575452879,-69.62744283210486,-70.18903844384477,-70.23894721083343,-69.60587504133582,-69.44704224355519,-69.34464846551418,-68.94599054986611,-69.06121876230463,-70.01303503056988,-69.96409284509718,-69.09209672221914,-68.25778986560181,-69.1845964374952,-69.7368700648658,-70.26255146414042,-69.56750262668356,-69.22990833269432,-69.64360264176503,-70.1342987101525,-69.5846224068664,-69.53180670645088,-68.77949939807877,-68.30552085395902,-67.31509505957365,-67.67217904794961,-67.3905968265608,-67.29253394668922,-68.14896601019427,-69.08911600103602,-68.32261043181643,-67.63583653001115,-67.58457283116877,-68.32561980746686,-67.39430970232934,-67.01417006598786,-67.87687949743122,-68.28500338736922,-68.23686105106026,-68.93744089454412,-68.63927287561819,-68.04773176787421,-67.7726191948168,-68.10981316352263,-68.28749882429838,-69.02607300225645,-68.80269343731925,-69.47357028443366,-69.96049746545032,-70.06434499239549,-70.49995430419222,-70.06037469254807,-69.33988729584962,-69.41219966020435,-68.56142608588561,-69.25599125213921,-68.69216507067904,-68.74503083107993,-69.49587337626144,-69.31684493040666,-69.91601448971778,-69.84413425903767,-70.04854095634073,-69.44189016800374,-70.06798288179561,-70.98760535754263,-70.3402009382844,-69.46605237293988,-68.95603808527812,-69.91887577669695,-70.67242111312225,-70.82128496328369,-71.15827882429585,-70.66333685722202,-71.5938630644232,-71.38777885120362,-71.79850034648553,-71.26661105779931,-70.85215797415003,-70.53104691952467,-69.53503338294104,-68.80391816748306,-67.92646093247458,-68.34178570564836,-68.66974077373743,-67.98235588381067,-68.16933747334406,-68.04350488213822,-68.6171660842374,-68.05888674268499,-67.66217373032123,-66.94157889438793,-67.47378088207915,-67.0544563550502,-67.39298646803945,-67.24443552689627,-67.53459883434698,-67.37345161987469,-67.4214526200667,-66.94504880066961,-66.16012215567753,-66.8804992614314,-66.15347870439291,-65.89324892917648,-65.75357945263386,-65.12933832406998,-64.26168921357021,-65.19161138683558,-64.71012153103948,-63.932519549969584,-64.6858189869672,-65.50556568661705,-65.31730692926794,-65.51377771887928,-66.45749919116497,-66.01924924412742,-65.30854564439505,-65.75221839174628,-65.67969962302595,-64.78652873821557,-65.665513867978,-66.48590691853315,-65.62158950883895,-66.00138244545087,-65.79972435999662,-64.98391221975908,-63.994304813444614,-63.97531759273261,-64.89999442407861,-64.06967070000246,-64.88370896363631,-65.2732662903145,-65.17916056094691,-65.62505638878793,-65.14364480925724,-65.13266230467707,-64.8006104095839,-64.78461436275393,-64.85612509353086,-64.24318527756259,-64.61552781891078,-64.60128584923223,-64.59521191613749,-64.9885279936716,-65.18626013910398,-64.95616184966639,-64.13104494614527,-64.8035754323937,-65.73479109117761,-65.62945762183517,-66.16484698606655,-66.43677677027881,-65.78761248243973,-65.04332870058715,-65.3683866225183,-65.1518098344095,-65.33028529537842,-64.78224369883537,-65.60694589838386,-65.83448653761297,-65.28406985849142,-64.65282060252503,-63.782378590200096,-62.82718568807468,-63.31528769992292,-63.260818269103765,-63.49332894431427,-64.49122077319771,-63.556502430699766,-62.98447684617713,-62.11318834545091,-61.25972099415958,-60.460950498469174,-60.63919359957799,-61.44848680589348,-61.55287037137896,-61.999217624776065,-62.71730332542211,-62.56070361286402,-62.9505818663165,-62.49425453739241,-63.17523921187967,-62.60346673009917,-61.716281596105546,-60.79282846162096,-60.527104682754725,-60.09475747682154,-59.61572893243283,-58.634733881335706,-59.54618703853339,-58.69164741085842,-59.12066816817969,-60.10134834283963,-59.80544761940837,-60.394045871216804,-60.69312450569123,-61.225518146995455,-60.57764308946207,-59.91121808858588,-59.57058527925983,-59.45566561166197,-60.22191347647458,-60.52527651609853,-59.94712592707947,-60.61124795675278,-61.438083053566515,-60.87132035661489,-61.71058677090332,-61.832506626378745,-62.62219985993579,-63.24864276172593,-63.4404161083512,-64.40589107852429,-63.69295613653958,-63.81223743921146,-63.46905463375151,-64.13285914249718,-63.22538527240977,-63.36137217935175,-63.30192596511915,-63.39665103144944,-63.52885943092406,-62.646913648117334,-62.29587562941015,-61.84545301878825,-62.6983324973844,-63.65920754754916,-63.48723558941856,-63.780986989848316,-64.3275873796083,-64.56440450204536,-64.53451531706378,-64.73092857562006,-64.64870530273765,-64.82545125624165,-64.76672976324335,-64.25196373043582,-64.14019581722096,-64.75016483198851,-65.12069154158235,-64.4528776477091,-63.92001133505255,-63.85042132763192,-63.19704163633287,-62.83310709288344,-63.75755960820243,-63.51719162473455,-64.25455929385498,-63.51212040660903,-62.566371901892126,-63.46562167769298,-63.973367146681994,-64.30929670715705,-63.42438426800072,-62.87056560674682,-63.41011661849916,-62.44121705973521,-61.738327126950026,-61.796098723076284,-60.91379978461191,-60.795825445558876,-60.689114602748305,-60.11657550372183,-59.79809274151921,-59.71295708650723,-58.92858184920624,-58.138431591913104,-58.57058954704553,-59.02503622230142,-58.0674256789498,-58.407530658878386,-59.36511326348409,-58.5195254413411,-57.85357973957434,-57.35227291798219,-57.51899200398475,-56.92295579891652,-56.72550274292007,-56.81269934820011,-55.81354637816548,-55.67617158172652,-55.053031156770885,-54.38675919221714,-54.4512038892135,-54.393257471267134,-54.33418054692447,-53.91390791255981,-53.28320641210303,-53.35344747407362,-53.85208071023226,-54.034618648234755,-53.24041796848178,-53.516827969346195,-53.77914191642776,-54.247941120993346,-54.48265461437404,-55.36666251067072,-55.59959425125271,-55.82648264011368,-55.08462910307571,-55.725561167579144,-56.23605772666633,-56.96299380203709,-57.51327922474593,-58.2875175117515,-58.36250599520281,-58.57539786025882,-59.10147310048342,-58.54140254994854,-59.490271237213165,-58.992353569716215,-59.23621611017734,-59.99176530353725,-59.260545689146966,-60.14894139673561,-59.18017928907648,-59.43538409937173,-59.22485207719728,-59.17296931659803,-59.39465782791376,-60.23295165738091,-60.49649653816596,-60.85730110667646,-60.738675327505916,-59.996072250884026,-59.553514171391726,-59.58702060114592,-59.224119037389755,-59.52244157716632,-59.87626270856708,-59.78288424387574,-59.48425739724189,-60.16577697126195,-59.30760900489986,-58.562722822185606,-58.857744969427586,-59.53310973290354,-59.93701564799994,-60.14012456405908,-60.18133025476709,-59.36981995496899,-59.318149716593325,-59.5972235747613,-58.803338372614235,-57.852458886336535,-57.263862010557204,-57.828973439056426,-58.458692748099566,-57.57455662405118,-57.55037648323923,-57.56331665534526,-57.81351649807766,-58.00443552155048,-58.4394277157262,-58.26734421076253,-57.934952253010124,-58.145274233072996,-58.59035139577463,-58.31931103626266,-59.012391600292176,-59.925202534068376,-59.07350803585723,-58.09094883268699,-58.68508197925985,-57.750313327647746,-57.98904800089076,-57.47278387332335,-56.776835944503546,-56.451901571359485,-55.79558498412371,-55.563677705824375,-54.737326574511826,-54.91811663238332,-55.5197083116509,-54.72682137647644,-55.48578262049705,-54.74262996716425,-54.14956596493721,-54.28844004776329,-55.03030465263873,-55.40500351320952,-56.341345556546,-56.37861472927034,-57.182171993888915,-56.27699556481093,-55.70727782137692,-54.921868147328496,-54.8159429137595,-54.42324195243418,-54.732328723184764,-55.67880764370784,-55.30821921862662,-54.659551420249045,-54.69528029765934,-54.466793704777956,-55.106347527354956,-54.53694147011265,-53.97784194117412,-54.00754783349112,-54.48027876857668,-54.14975112210959,-54.71499205194414,-54.59074437152594,-54.749038201291114,-54.61736579425633,-53.82641153410077,-53.56250430177897,-53.556480132974684,-52.83428801735863,-52.46084550442174,-52.22570868348703,-52.530638047493994,-53.08470255788416,-52.65025444049388,-52.13933236990124,-51.31436528079212,-51.25373876513913,-50.835364998783916,-50.52747663995251,-49.83588389959186,-50.786316324491054,-50.69081856124103,-50.121489878278226,-50.575866972096264,-49.98598918411881,-50.048241989687085,-49.182942416053265,-49.711143978871405,-50.360132755711675,-50.854218173306435,-50.08375115925446,-49.79353893361986,-49.96446523303166,-50.35076478822157,-49.76311005232856,-49.568986100610346,-48.76869293116033,-48.97162790270522,-48.05048850597814,-48.514675699640065,-47.90356527362019,-47.82537375483662,-48.029773463029414,-47.80728708440438,-48.14007349172607,-48.073257042095065,-47.64795838110149,-48.171759764663875,-48.69874041294679,-49.66380716627464,-49.44865585817024,-49.924012447707355,-50.48267139028758,-49.532597404904664,-50.530690640211105,-51.18567958055064,-51.89411701913923,-51.798114815726876,-52.07545217173174,-51.95860818494111,-52.74498499324545,-52.47597719589248,-52.15413012448698,-51.31491747871041,-50.58455515187234,-50.21193470386788,-50.67858901852742,-50.01112391706556,-49.426314337644726,-49.9520879695192,-48.98714402504265,-48.38380426680669,-47.576747115235776,-47.11528697842732,-46.633475576061755,-45.882504583802074,-46.66601370740682,-46.171956789679825,-46.681917037814856,-46.128699835855514,-46.82335761887953,-47.556220886763185,-47.84533347282559,-48.44745408790186,-48.02823561709374,-47.98700154526159,-47.309486514888704,-48.309094465803355,-49.29397616395727,-49.710082036443055,-49.601715240161866,-50.31866417778656,-49.69225854007527,-50.65760650159791,-49.8385700895451,-49.48025897704065,-49.64009870728478,-49.70105715934187,-50.671760021243244,-50.716211781837046,-50.00102978013456,-49.96586610842496,-49.35073708370328,-48.617324186488986,-49.1034919898957,-48.329954837914556,-48.578897279221565,-49.01833601668477,-49.057956472970545,-49.2030891450122,-49.75673532905057,-50.619902671314776,-51.28298263764009,-50.636742087081075,-51.56646654708311,-51.79026143811643,-51.792868765536696,-51.16796610178426,-50.53456307947636,-49.56189746968448,-49.26963416300714,-50.10644894465804,-50.19730784930289,-50.021335154771805,-50.527554920874536,-49.91790091153234,-50.25364849669859,-51.09833184350282,-51.63693944271654,-51.27267543319613,-51.90207939315587,-51.418981002643704,-52.08350711641833,-51.841011030599475,-51.52915041940287,-51.839925162959844,-52.7411135584116,-52.43843198660761,-52.34990895818919,-51.62223344203085,-50.79903341596946,-51.609157104976475,-51.61404616199434,-52.57769940793514,-52.29620697628707,-51.95347302732989,-51.52128893136978,-50.89892407273874,-50.93878609780222,-51.62364752497524,-51.21858732961118,-51.77066461229697,-51.62819449463859,-51.00655375234783,-51.50149653106928,-50.842459541745484,-51.80640791030601,-51.20813379343599,-51.20566677954048,-50.38873260375112,-49.92559894360602,-49.6905148983933,-50.38567074807361,-51.04206801392138,-50.330721985548735,-50.25762440217659,-49.75129179144278,-49.020260899327695,-49.82613988406956,-49.29236154165119,-49.683511571493,-48.9869546466507,-49.49792223516852,-50.39905315218493,-50.586555576883256,-51.20110928686336,-51.108956697862595,-52.06589282490313,-52.01876925956458,-51.61069719400257,-51.64108917955309,-50.979926108848304,-50.04126703366637,-50.69461419386789,-49.98286193283275,-50.239029130432755,-49.99978623678908,-49.77557565877214,-50.68428510753438,-51.005196711514145,-51.17223353963345,-51.710125636309385,-52.338830693624914,-53.19194121519104,-53.66033119009808,-53.1950932526961,-53.10049508372322,-53.70180137595162,-54.183483426459134,-54.976871547754854,-54.528149030636996,-55.175841422751546,-54.93525419430807,-54.62083372147754,-54.442054853308946,-54.219333914108574,-54.36764566414058,-55.218479978851974,-55.5641182763502,-56.170209877192974,-55.446092086844146,-55.95358631107956,-56.159049960784614,-56.36753677390516,-55.81311767920852,-56.33498375443742,-57.250260499771684,-56.99998118309304,-57.678891107905656,-58.166614851448685,-59.137635266408324,-60.120833484921604,-60.522170644719154,-59.53338387142867,-58.631487573497,-57.93035712465644,-58.51196776935831,-58.87221050960943,-58.20378181897104,-58.09874943597242,-57.173003900330514,-56.91197321424261,-56.722299181390554,-56.67934061354026,-57.36552636185661,-57.69922195468098,-58.675983767956495,-57.78979885438457,-58.007022601086646,-58.441740199457854,-59.04162475792691,-59.86991331819445,-59.94036477478221,-60.654293241910636,-60.171085712034255,-60.44438043050468,-61.070853147190064,-61.85402642656118,-61.500799058470875,-62.166630716994405,-62.33994049066678,-61.426860716659576,-60.71795415552333,-60.913367647212,-61.342093852348626,-61.93913491582498,-61.402552808169276,-61.001517850439996,-61.26568855531514,-62.04688155744225,-62.01827737130225,-62.09240629663691,-62.33332773251459,-62.962693164125085,-62.639818044845015,-63.08850906416774,-62.5405041645281,-61.96530910488218,-62.54411874059588,-62.53789628390223,-62.70380226941779,-63.67237119283527,-63.32046392560005,-62.47284802189097,-61.871604001149535,-62.1920413360931,-62.268564101774246,-61.38150518620387,-62.18871575500816,-62.275174553506076,-62.65984434541315,-61.72663921164349,-60.75845408625901,-60.806244323495775,-60.83300824975595,-60.208037917967886,-59.77227897150442,-60.059144713915884,-60.03983737528324,-59.99463329650462,-60.764911147300154,-60.24759057490155,-59.39377938397229,-59.81998760905117,-60.808013261761516,-61.55071851378307,-60.79706881614402,-60.363610718399286,-60.26359803928062,-59.584354845806956,-59.30382883455604,-60.055285800714046,-59.1965361610055,-59.85639455728233,-59.611712894868106,-59.76068728696555,-60.751142350491136,-60.1356394472532,-60.941035641822964,-60.335002498701215,-60.32619200227782,-59.683738426771015,-58.864163416903466,-59.120007385034114,-59.344891937915236,-59.31748850317672,-59.89888508012518,-60.11733926506713,-60.04037056211382,-60.654205075930804,-60.61449130019173,-60.638581545092165,-60.69558423338458,-59.702699267771095,-59.76114965090528,-60.10485997796059,-59.194010864477605,-60.034743235912174,-59.96401523146778,-60.144987617619336,-60.73047289578244,-59.730991828255355,-59.27860344713554,-59.91529068024829,-59.07349566742778,-59.078574002254754,-59.079133158084005,-58.42939114710316,-58.714060419704765,-58.34131795959547,-58.367250291164964,-58.360531826969236,-58.32560027623549,-57.559680230915546,-56.98950268002227,-56.66011280473322,-56.56870502978563,-55.60096866032109,-55.13883229997009,-55.809354674536735,-56.640519628766924,-57.262209380511194,-56.87716213054955,-56.19036060618237,-55.928779129404575,-55.95518662314862,-55.49728019954637,-55.29849805077538,-55.108796717599034,-54.55624987790361,-53.84288922790438,-54.00448989355937,-53.98532683867961,-53.01224854355678,-53.461705630645156,-53.36027860222384,-52.411550918594,-52.1921509206295,-53.14084266545251,-52.262695093639195,-52.20480772154406,-52.199760942254215,-53.07341355876997,-53.694325029384345,-54.32385466620326,-53.79982765810564,-53.54190584272146,-53.47490719333291,-53.90545170009136,-52.95267132250592,-53.47541714599356,-52.949261342640966,-53.20240164687857,-53.88277239724994,-54.46990492660552,-54.36796224815771,-55.14979661023244,-54.79199026571587,-54.70448807440698,-54.23669334733859,-54.77906110137701,-55.01912681944668,-55.33050988893956,-55.61270723445341,-54.86233766237274,-55.05867084581405,-54.15500979637727,-54.09050303278491,-54.80895873485133,-54.32873987266794,-54.42188534233719,-54.08328146440908,-54.782700629439205,-54.01270997105166,-54.56514074560255,-54.45052510034293,-55.24778465181589,-55.00213693967089,-55.9786646082066,-55.03776825964451,-54.731727360747755,-54.575081162620336,-54.12521372130141,-53.944176010321826,-54.36988910706714,-54.12718843575567,-54.51988998008892,-54.64035195671022,-55.57905176887289,-54.69102610088885,-54.69874663837254,-53.873462055809796,-53.87281899061054,-53.24470941582695,-52.619301869533956,-52.466880433727056,-52.98934002453461,-52.222087007481605,-52.819734149612486,-52.25682137347758,-52.29154532775283,-51.6141322129406,-51.05199749907479,-50.94733097963035,-50.286446567159146,-49.54424983309582,-48.59540080744773,-48.091009891591966,-47.79553362214938,-48.0647750464268,-47.6523347068578,-48.00163521291688,-47.55939861247316,-47.125990928616375,-47.453628450166434,-48.319948956370354,-47.97593818465248,-47.64395129820332,-48.17269119992852,-47.75416573183611,-47.764952272642404,-47.68525480572134,-47.8033819696866,-47.52970744576305,-47.19592723855749,-47.46581947756931,-48.457022092305124,-48.60453160991892,-48.64670982118696,-48.31511452514678,-48.64897628268227,-49.04987333435565,-48.34141262480989,-47.96122178854421,-47.234467139001936,-46.64063513092697,-46.13697071094066,-46.8650734894909,-47.53380756638944,-47.8736069034785,-47.07934834854677,-47.38756274804473,-46.44944702181965,-45.65696562547237,-45.46931320056319,-45.32405429519713,-45.356009339913726,-44.85440129833296,-44.5130823221989,-45.25841643707827,-45.6705939732492,-45.06230973126367,-44.96165928943083,-45.315538096707314,-45.640865612309426,-44.835421486757696,-44.24268992012367,-45.03498242748901,-44.88152023544535,-45.451542844064534,-44.46390399429947,-45.001070379279554,-44.910650679375976,-44.246544462163,-44.08594484720379,-43.778012053109705,-43.633531677071005,-43.7561637875624,-44.26483158720657,-44.11322653340176,-43.74590681446716,-43.32011740701273,-43.49749695835635,-44.0748452716507,-44.1517479699105,-44.57624902855605,-44.37712751980871,-45.31740888254717,-45.99695503991097,-46.7354955826886,-47.1839753575623,-47.91853084694594,-47.40773805882782,-47.16604883642867,-46.86867462238297,-47.49192981701344,-46.641275267116725,-46.18288623448461,-46.684524038340896,-47.38898017350584,-46.96848907181993,-46.97930942522362,-47.33651421638206,-47.445626663509756,-48.1696808966808,-47.46736869728193,-47.64100992726162,-46.968283134978265,-47.61986513528973,-47.65939320623875,-48.6140040284954,-48.23133011953905,-47.93283014977351,-48.33724092366174,-47.69595871120691,-47.19204415148124,-47.828504252713174,-47.43175274413079,-47.57471198635176,-46.79607411054894,-46.6244326219894,-46.16300298180431,-46.367110373452306,-47.29467321373522,-47.637218109797686,-47.49634144315496,-47.02435209834948,-46.285447775851935,-46.75128834089264,-47.415786397177726,-47.173924922943115,-48.14956057071686,-47.55462564062327,-47.885911562945694,-47.220440104138106,-47.67732213251293,-47.89649666612968,-47.43205474410206,-46.74048635549843,-45.945370870642364,-45.83618280570954,-45.943569988012314,-46.642690209206194,-47.038215870503336,-47.43837348045781,-47.835624085273594,-47.96313681034371,-48.17814189242199,-48.7116728303954,-48.670091297477484,-48.49740341445431,-47.59661594685167,-47.1568373949267,-48.08231994928792,-48.233764009550214,-47.406661570072174,-48.369330927263945,-48.159219252411276,-48.893344605807215,-49.30636023404077,-49.01484678359702,-49.52003007568419,-48.643679270520806,-47.894654595758766,-48.29517575446516,-47.50722669623792,-47.71461911359802,-47.326100825332105,-48.10618739295751,-48.00407559983432,-47.88035335112363,-47.0421298276633,-48.02567657548934,-47.2539221663028,-46.618415852077305,-45.910007250495255,-46.46563338441774,-46.62285169400275,-46.804988073185086,-47.311922292690724,-48.102768967393786,-48.04328756267205,-48.726855266839266,-49.25227450625971,-48.848205662332475,-47.88574911374599,-47.16321162786335,-47.95501256221905,-48.69400300132111,-48.64575572544709,-49.39453195221722,-48.75284349313006,-49.47643066663295,-49.52434130711481,-49.40922800311819,-49.708339808508754,-49.86908417427912,-49.53459230577573,-50.15036041289568,-51.08016715897247,-50.6214648000896,-50.247071960009634,-50.78120944881812,-51.36423947196454,-51.22244230564684,-50.27295273402706,-49.29067634185776,-49.226860971190035,-50.06128160748631,-50.63457763241604,-49.731965460348874,-50.04356087651104,-49.25237707840279,-49.92230063211173,-50.82942529581487,-50.1672532223165,-49.2172015006654,-49.54515268327668,-49.06596805527806,-49.15225755237043,-49.79826504876837,-50.142275519669056,-49.9902412975207,-49.558983673807234,-50.55804910697043,-50.54643866606057,-50.787957918364555,-50.05302081955597,-50.54905231622979,-50.94593767169863,-50.97158370446414,-50.50432144291699,-51.47727294685319,-51.151692253071815,-50.44947204645723,-50.08864695718512,-50.60523916594684,-49.72787694726139,-50.517734822351485,-49.999284505378455,-49.917937693186104,-50.25683686463162,-50.419485573191196,-51.196070006582886,-50.887213703244925,-50.7544120028615,-50.70622934680432,-50.3822183967568,-50.43163909809664,-50.300381421111524,-50.05427035968751,-50.54803334455937,-49.916251762304455,-48.99657838186249,-48.191578012891114,-47.83077159803361,-47.43366447184235,-46.54570130165666,-47.419872464146465,-47.71798428893089,-46.82091036718339,-47.54713571630418,-48.4429459082894,-48.494890267029405,-47.61400786647573,-47.6306249643676,-48.07967788958922,-48.73516137897968,-49.523206766694784,-48.86850527813658,-48.20046054851264,-47.95599116804078,-48.580772671382874,-49.38771806564182,-48.94357896363363,-48.395468913484365,-47.490994116291404,-47.24577557109296,-47.023261334747076,-46.30098748859018,-46.16238230187446,-46.57793417060748,-46.747766493819654,-46.06300070788711,-45.98215073859319,-45.87463336111978,-46.24190643290058,-45.923147309571505,-45.48112068185583,-45.426872891839594,-44.81180322775617,-44.994832744356245,-45.035169259645045,-44.34588429285213,-43.62954556196928,-42.71115136099979,-42.1495100799948,-42.35868303803727,-42.73568189656362,-42.2391723417677,-41.52843338018283,-42.26860905950889,-41.94508322607726,-42.72951291967183,-43.20133988838643,-43.064384954981506,-42.23401581728831,-41.548190334346145,-41.75706204539165,-42.359555270988494,-42.87578635010868,-43.068079999648035,-42.45878926664591,-42.11079211719334,-42.182989896740764,-42.93999312724918,-42.370506037492305,-42.56818928848952,-42.431915279477835,-43.171926382463425,-43.905525205656886,-44.78469105204567,-45.260410125833005,-44.81956905312836,-45.42408256139606,-44.64165849843994,-44.03150169644505,-44.10879141744226,-44.7232685899362,-44.01385761797428,-44.49687628634274,-44.067532297223806,-43.76400419976562,-43.411183026153594,-43.74850847572088,-42.91037886124104,-42.90535663347691,-42.812792328651994,-43.78536217985675,-44.17231118213385,-44.92775354720652,-45.07056946866214,-44.9103864626959,-44.06524222018197,-44.02097235340625,-43.38760406663641,-43.4033486940898,-42.994675760157406,-43.815581573639065,-44.303059328347445,-45.21645364258438,-44.975809508468956,-44.95673769665882,-44.577569712884724,-44.509210848249495,-44.33441437082365,-43.76544389966875,-43.08122522197664,-43.176179056055844,-43.82226956728846,-44.46115428768098,-43.642185014206916,-44.42217951035127,-43.56019991915673,-43.353856910951436,-44.27623580163345,-44.14979553921148,-44.9538191226311,-44.90027766209096,-44.741865639574826,-44.39373308606446,-45.16853783559054,-45.7425516624935,-46.66372650768608,-46.345032126642764,-46.24663318460807,-46.56319113774225,-46.6901902067475,-46.17768766824156,-45.84761998197064,-46.23940915009007,-46.22811548411846,-45.63334390707314,-45.57018812838942,-46.543927147984505,-45.61222922010347,-46.208037953358144,-47.027854047715664,-46.901153748854995,-47.265938327647746,-46.31649228557944,-45.32999166706577,-46.05624074814841,-45.628250180743635,-46.555401081219316,-46.677259779535234,-46.10721339797601,-46.26319980202243,-46.634676926769316,-46.892079225275666,-47.57686143228784,-48.23378535360098,-47.659911409020424,-47.892639939207584,-47.88447975972667,-47.80431732488796,-47.321033174172044,-46.82037021499127,-47.53036777069792,-48.38350195763633,-48.59101074654609,-48.200230956077576,-49.16064345603809,-49.236609532963485,-48.80689705070108,-48.61286108195782,-48.82117754826322,-47.966681281104684,-48.026987137738615,-47.14019518252462,-46.500416395720094,-46.63119924534112,-46.21062267292291,-46.93413860024884,-46.45665868092328,-46.12318208022043,-46.95320379594341,-46.34448625985533,-46.35642459243536,-45.50191585673019,-45.49091469543055,-45.66492971777916,-46.486796801909804,-47.13852445734665,-47.84983905078843,-48.2543782023713,-48.51782205840573,-49.46820094436407,-48.84681554278359,-48.886691014282405,-48.646601447835565,-48.151581092737615,-48.44516768027097,-49.342615669593215,-50.25508178258315,-49.55011449381709,-48.56768144154921,-48.28254283219576,-48.4435756909661,-47.64483425067738,-47.23027994018048,-47.19985568197444,-47.82770984014496,-48.228896842803806,-47.83802367793396,-48.318964078091085,-49.0762394098565,-48.62086359644309,-48.156933990772814,-48.485921676270664,-48.90747037436813,-48.132234514690936,-48.847650322597474,-49.22979849902913,-48.84782733116299,-49.1767091890797,-50.0932583482936,-50.74288323475048,-50.466260933317244,-50.35073843644932,-50.296909340657294,-50.46549761481583,-51.419690526556224,-51.070846307557076,-51.3084560460411,-51.20453722309321,-50.36784375831485,-49.80339959729463,-49.4620141768828,-49.00198546657339,-49.86822765227407,-50.31575834704563,-51.01339546078816,-50.92829148285091,-50.11414802260697,-49.39081770926714,-48.69807185232639,-49.37090868782252,-49.91936223162338,-49.25271775992587,-49.1599229821004,-48.30854424647987,-48.40634710434824,-48.567353278864175,-47.865644234698266,-48.56206570984796,-49.385020496323705,-50.208073902875185,-49.863641208037734,-49.104014633223414,-49.48320381343365,-49.63235336681828,-49.44753817375749,-49.10186807857826,-49.96369330678135,-49.63853708002716,-49.993720687460154,-49.00447749486193,-49.777581772301346,-49.74530717777088,-50.71500711562112,-50.99078714242205,-51.243267143145204,-50.43298920150846,-49.69197113532573,-49.040444993879646,-49.05778322555125,-49.60525816399604,-49.62501289555803,-49.30966614373028,-49.58078100346029,-48.75732808141038,-49.39765290822834,-48.78142409911379,-49.598179288208485,-49.22275177203119,-49.95176052348688,-50.79495176579803,-51.78015321446583,-51.20762326428667,-51.52528653666377,-51.04124616039917,-51.08400174602866,-50.369777996093035,-51.27217072062194,-50.40345543017611,-49.54221093142405,-49.88774091983214,-49.71013607131317,-49.794226503930986,-50.31972659053281,-49.652808556798846,-49.73672044137493,-49.71246882574633,-49.238319078926,-49.459366532973945,-48.56001602951437,-48.20661097764969,-47.94466051226482,-48.62312799319625,-48.75664409715682,-48.15061256894842,-47.746366592589766,-47.99322992330417,-47.107681268360466,-46.28934535197914,-45.36584797827527,-45.30223481915891,-45.40999284759164,-45.120419604703784,-45.99162398884073,-46.897664254996926,-47.66346956882626,-46.79492945363745,-47.47897921828553,-46.9219425059855,-47.185292318463326,-46.8162373774685,-47.55101371649653,-48.08813608856872,-48.56131378747523,-48.568655140232295,-48.85266034724191,-47.92412842530757,-47.253736071288586,-47.23293547797948,-48.18189536035061,-49.09898346615955,-48.52803689055145,-47.9890899839811,-48.589968353975564,-47.975639099720865,-47.24087913474068,-47.473038606811315,-47.43498486559838,-47.547095991671085,-48.36556321568787,-47.47541805030778,-46.50704214395955,-46.917341293767095,-46.06371402833611,-45.719452780205756,-46.65689433645457,-47.48617460997775,-47.49873307719827,-47.72787516005337,-48.06969872256741,-48.65243893163279,-48.98849144531414,-48.916487373411655,-49.17945360625163,-49.41501995967701,-49.292503917589784,-49.443247048184276,-48.72715110704303,-48.02789717214182,-48.36892135441303,-47.80480495514348,-47.326946498826146,-47.36251711798832,-47.12020570784807,-47.97594781778753,-47.30652500176802,-46.3784433179535,-45.664529838599265,-46.30643347883597,-47.199066598434,-48.03465957567096,-48.4319371455349,-48.07529450999573,-48.803259066771716,-47.89156408281997,-47.13846643222496,-48.12791299587116,-48.143711648881435,-49.036494323052466,-49.35535412328318,-49.671908306889236,-49.149880055338144,-49.71964634861797,-48.76087691448629,-49.246912620496005,-49.20339207537472,-48.91571495262906,-48.35619531432167,-48.51347970822826,-48.787807987537235,-48.93577979085967,-49.82663800753653,-50.73610915988684,-50.301852038130164,-49.961158300284296,-50.23171868408099,-49.668002602644265,-48.91598537936807,-49.63969954336062,-49.41901392582804,-48.98224671604112,-49.395339890383184,-48.82565336441621,-49.51246900996193,-48.822372790426016,-48.15557215269655,-48.937072962056845,-49.14134073629975,-49.495287847705185,-49.63711201492697,-49.757345060352236,-48.84328624699265,-49.0370701062493,-48.55697922920808,-48.958678155206144,-49.49923959327862,-48.90837149973959,-48.913180235307664,-49.10052007576451,-48.506041103973985,-47.815956552978605,-48.3295817472972,-47.80252647586167,-46.94494406180456,-47.062772397883236,-47.06235333532095,-46.62099278578535,-47.18295934377238,-46.62357377586886,-47.056783717125654,-46.285513770300895,-46.45980002172291,-47.03220943082124,-47.96474754344672,-48.53214046685025,-49.11114785308018,-48.58942969376221,-47.99326326837763,-47.84457353129983,-48.11983695672825,-48.760249975603074,-48.594435784965754,-47.71955478750169,-48.57609408535063,-49.27025004243478,-49.05942590162158,-49.60564014920965,-49.52473609521985,-48.90667747473344,-49.13858128944412,-49.41070781555027,-49.71442417707294,-50.303851100150496,-51.27537032403052,-50.586469057016075,-49.762746050488204,-48.83205462247133,-48.02039298415184,-47.91276884498075,-47.97556409845129,-47.73641962790862,-48.4304021615535,-48.613637728150934,-48.93960891943425,-48.66658468451351,-49.30857049301267,-49.675265493802726,-49.20449688285589,-49.35190457245335,-49.93594729201868,-50.48422386776656,-49.884386089164764,-49.58272687392309,-49.820111837703735,-49.17952965013683,-48.35366215137765,-48.89156108349562,-49.309245832730085,-50.00498804403469,-50.93941458594054,-50.68021896760911,-50.17563545703888,-49.22588199842721,-49.98988356208429,-49.1411826252006,-49.05398567719385,-49.39622247451916,-48.51965141482651,-48.54401556774974,-48.87149379402399,-48.81635925360024,-49.31613242207095,-49.65446616942063,-49.16243487037718,-48.552513553760946,-48.27034087991342,-48.2163850357756,-48.69007912604138,-48.23892977973446,-47.7619103807956,-47.75622612051666,-47.775591942016035,-48.510680015198886,-48.79249250981957,-48.96503604296595,-48.360567713622004,-48.89889415819198,-48.26413872092962,-47.60674497904256,-48.41203485848382,-49.18658302165568,-48.30166203947738,-47.37936150887981,-47.17232219455764,-46.77364315232262,-46.66159257199615,-46.53281506989151,-46.64878032449633,-46.265243134927005,-46.1768275485374,-46.60536493593827,-46.777913582511246,-47.369567117188126,-47.53131757536903,-46.59886085288599,-47.25524706253782,-46.40660228673369,-46.90883233817294,-46.21447607129812,-46.13765807682648,-45.99878093553707,-46.29118366725743,-46.658444232307374,-46.09975285688415,-46.667186754290015,-46.31808759365231,-45.72061394061893,-45.40226253354922,-44.527953000273556,-43.77041084552184,-43.46006698254496,-44.0198071366176,-43.68601408600807,-43.449936859775335,-44.38456202624366,-45.34257486369461,-45.37080222275108,-45.58583168173209,-44.78962634783238,-44.96978180622682,-44.28333581937477,-44.24383663572371,-43.26824532542378,-42.71625742781907,-43.22595397941768,-42.8017255384475,-42.26346516609192,-42.97283490886912,-42.50857460312545,-42.504628486931324,-43.01463686535135,-42.25278674205765,-42.36479249969125,-43.307507779449224,-43.70039128744975,-44.279969837516546,-44.6969678257592,-44.74498352780938,-44.2879014024511,-43.892343293875456,-44.11475304700434,-44.733786238357425,-44.60824395157397,-44.55336188385263,-43.60500126844272,-44.16980598308146,-44.99061836954206,-44.01195348473266,-43.8419802361168,-43.26819461164996,-43.959826660808176,-43.8389352732338,-44.06632455717772,-43.882511189673096,-44.7761949445121,-45.64887996064499,-46.164579584728926,-45.755896229762584,-46.712482465431094,-47.22912216512486,-47.009074601344764,-46.817835435736924,-47.22025322448462,-46.97940249880776,-46.67981847887859,-45.69823622936383,-44.81022378616035,-44.883938513696194,-44.01725331321359,-44.02686012396589,-44.512404521461576,-45.4293522159569,-46.40102440491319,-46.054529344663024,-45.5793637400493,-45.940913333557546,-46.8975273584947,-47.46064680675045,-47.5145599800162,-46.571800912264735,-47.035515253432095,-47.196818011347204,-48.09929492883384,-48.62313038436696,-47.64926991472021,-47.42749110981822,-48.2822211207822,-49.008883060887456,-48.85800813138485,-48.56661369185895,-49.184263153001666,-48.85899903252721,-49.08769981516525,-49.748338841833174,-49.1971005294472,-49.433981854468584,-49.557494991924614,-50.22949906811118,-49.65427859593183,-49.195937890093774,-49.613118418026716,-50.14806716656312,-50.57338387379423,-51.097831008955836,-50.13738234853372,-49.66759693296626,-48.961034923326224,-48.3804365163669,-49.32090514758602,-49.688005725853145,-50.46106275776401,-50.88630272168666,-50.61692729219794,-50.66952470457181,-49.89279213454574,-49.00766795920208,-48.79166766675189,-48.411179658491164,-49.11522813979536,-48.79783481732011,-48.71202053176239,-48.69571114331484,-49.00510629918426,-48.75856547895819,-48.82537707360461,-48.23132565245032,-48.90882392646745,-49.08429314289242,-48.915221966803074,-48.648841738235205,-48.51949735172093,-47.65512745268643,-46.95273423753679,-46.10738417785615,-46.508807151112705,-46.405599277466536,-45.63166462490335,-45.36526746209711,-45.531438392587006,-44.91606897255406,-45.02015227358788,-44.8292305264622,-45.39600908290595,-44.846503460314125,-44.13850841904059,-44.36354888603091,-43.45573750184849,-44.23291194299236,-44.77835800126195,-44.283258841373026,-43.781476497184485,-44.53565187891945,-43.83116311300546,-44.67737314198166,-44.88538385136053,-44.73492086073384,-44.543152696453035,-45.29654107475653,-45.27326800022274,-46.235379041172564,-46.15326407784596,-46.70582260703668,-46.7116022487171,-45.776429121848196,-46.185907658655196,-45.80420797737315,-45.869386051315814,-45.10825736168772,-44.8650739681907,-45.39131215075031,-45.44981227023527,-44.57467573741451,-44.00975973671302,-44.42784235998988,-45.383275834377855,-45.97772118868306,-46.11288163205609,-46.77330564754084,-47.58870006306097,-47.740993849467486,-48.44988759653643,-49.14721188880503,-48.88172466587275,-48.20139770535752,-48.64253723947331,-47.950095552019775,-47.462027771864086,-47.5385692785494,-48.26944893877953,-48.31624441128224,-48.817639561835676,-48.92895020823926,-49.73694361653179,-50.13817784190178,-50.238046780228615,-50.620272608008236,-50.53334901528433,-51.22195311402902,-50.683320788666606,-50.64556313911453,-50.65726317279041,-51.30319787422195,-51.0711442027241,-51.86926342686638,-50.90539119951427,-51.74936552811414,-51.73221937986091,-52.60238195350394,-53.38852109434083,-53.67330339970067,-53.0582840857096,-53.83062572265044,-54.81330768717453,-54.875972516369075,-53.953735219314694,-54.00892035290599,-54.48257000930607,-55.15096236066893,-54.58284998917952,-54.288883979897946,-53.450589971616864,-53.89016990317032,-54.58049256494269,-53.97864043759182,-53.76499568624422,-54.345630151219666,-54.71197160985321,-55.4089104491286,-55.58777411514893,-56.442794810049236,-56.49620814900845,-55.67230900935829,-55.19695802638307,-55.134503164794296,-54.86500737629831,-54.205584100913256,-53.74277292517945,-54.076301346533,-55.048511383123696,-55.40396948624402,-55.734617373440415,-56.19175209896639,-55.76020040176809,-55.06381289474666,-54.544628674630076,-54.98638717411086,-54.31152194365859,-53.84078091289848,-53.72500471677631,-53.37987239891663,-53.698296395130455,-54.21161071676761,-54.99294435419142,-54.26803324744105,-54.804397540166974,-54.56359007488936,-54.97004480287433,-55.93585359491408,-56.170480793807656,-55.50796659756452,-56.105223935097456,-55.46585041936487,-56.39787490852177,-57.20807527471334,-56.78088858863339,-57.31747152283788,-56.8285960489884,-57.8045375905931,-57.37669751700014,-56.75133171863854,-57.64156553987414,-57.77326428052038,-58.59835044015199,-57.89471579575911,-58.139161902014166,-57.760148076340556,-58.22897146549076,-58.433286586310714,-58.91235412983224,-58.5962018026039,-58.12055360013619,-58.6881361939013,-59.23842644551769,-58.36155346874148,-57.46393885370344,-58.45464416081086,-57.64326639100909,-58.44237930839881,-58.495674117002636,-59.04062499944121,-59.86089352471754,-59.804588086437434,-59.50093303946778,-59.79423815617338,-59.896237993612885,-60.763361784629524,-61.60736593930051,-61.31433741841465,-61.27717296034098,-60.33756184903905,-59.57808472029865,-59.55048730270937,-60.454817125573754,-60.63325085164979,-61.42303838767111,-62.38467923551798,-63.11334778741002,-62.22630942938849,-62.55530691659078,-63.26783040119335,-62.87418382568285,-61.880227907095104,-61.974447099957615,-61.08364886138588,-60.559615368023515,-61.0375747885555,-62.01807466847822,-62.17524461867288,-62.874467022717,-63.07722907187417,-63.74342948338017,-62.98592900997028,-63.585439966991544,-63.33116263151169,-62.54189869854599,-63.359252226538956,-64.24281723517925,-63.74607827560976,-62.75944795878604,-63.04657013621181,-63.268473324831575,-62.32667414098978,-61.36674220720306,-61.48772112512961,-61.37848707521334,-60.97574188327417,-61.11123439390212,-61.11184415919706,-61.98128478880972,-61.186521558556706,-62.13321446813643,-61.59866390703246,-61.15426996536553,-60.921209073625505,-61.03004140080884,-60.611493735108525,-60.32895094715059,-59.58075204724446,-60.416780640371144,-61.2736999085173,-60.62691062921658,-61.58370063453913,-61.335921172983944,-60.67460786970332,-60.40481626428664,-60.25510896043852,-59.705343964044005,-58.95806560013443,-58.67538164649159,-59.61365488450974,-59.01727414969355,-58.32067239983007,-58.63710554642603,-58.13671817071736,-57.74117836309597,-57.67317098053172,-56.88142117112875,-57.83036114135757,-57.980166852939874,-58.83536706119776,-58.023341255262494,-57.348518691025674,-58.12747786054388,-57.55077348649502,-56.73623509192839,-55.83084821840748,-55.81436458788812,-55.804588379338384,-56.58260938245803,-56.151579887606204,-56.39843527646735,-57.3967713015154,-57.36759548028931,-56.81915061082691,-57.16365940915421,-57.39959264313802,-56.79813826922327,-56.24082707427442,-56.26920500816777,-56.85608381032944,-56.62788819754496,-55.82955362694338,-56.572069802321494,-56.7967964312993,-56.73306381609291,-56.96332206064835,-57.87543361354619,-58.87483457475901,-58.318366734776646,-58.63496962515637,-59.085652134381235,-59.61730356095359,-58.9627820556052,-58.71411694120616,-59.32976812124252,-59.30270545836538,-59.066325773019344,-58.26986683672294,-57.439711099956185,-58.38591987360269,-59.17209866270423,-59.09918038966134,-59.296614774502814,-59.73611075617373,-59.44030084554106,-58.839344810228795,-57.91903770156205,-57.18860509013757,-57.9028555941768,-57.69818347506225,-57.29616022016853,-57.33462526416406,-58.31677892804146,-58.47925147134811,-57.8707055025734,-57.06977621652186,-56.09609931241721,-55.25040141073987,-54.57097098696977,-54.326566219329834,-53.82654469413683,-53.1607148675248,-53.86985602788627,-53.92994166398421,-54.683320585638285,-54.39265000773594,-53.68959257658571,-53.153325187042356,-53.53822109242901,-53.3904639640823,-53.08774987747893,-53.03992152540013,-53.60469722934067,-52.92547250073403,-53.2302627870813,-53.90852198423818,-53.70453612273559,-54.03804480563849,-53.12743646418676,-52.138536805752665,-51.79479994950816,-52.22234645485878,-52.41696423944086,-52.289317368064076,-51.46602737437934,-50.60646474827081,-50.22557881567627,-51.058225214947015,-51.4501080471091,-51.02780881291255,-51.31650419719517,-51.93163480935618,-52.82001764560118,-52.31516333017498,-52.688212796580046,-53.26246945373714,-53.851626033429056,-54.45969831570983,-53.73851492162794,-53.00370198581368,-52.54487836919725,-52.12559290416539,-52.47679274575785,-52.43858922785148,-53.14054795866832,-53.37621178710833,-53.53861586237326,-52.775167872197926,-51.87738475529477,-52.35799150727689,-52.845872473903,-52.26028590090573,-52.62406345643103,-52.08811705512926,-51.55156414909288,-51.176408340688795,-50.53922674711794,-49.66119981743395,-48.9321737671271,-48.1907763639465,-48.0363683430478,-47.545938372612,-48.53821187932044,-48.44717699009925,-47.87996396422386,-48.106032342184335,-47.782870046794415,-48.46182161802426,-49.316613539587706,-49.69026535283774,-49.62203205330297,-48.89391149254516,-48.41188155300915,-48.6966121122241,-49.617539294064045,-50.42582733184099,-50.49821911472827,-49.53722855495289,-49.60752170253545,-50.133138568140566,-49.17700802581385,-50.12498591141775,-49.4336215602234,-49.63966444507241,-49.44491410488263,-48.545916902367026,-48.076808808837086,-47.772573369089514,-47.04671811917797,-47.603764980100095,-47.90851895743981,-47.56498027360067,-47.99963200697675,-48.549853939563036,-47.89271852793172,-48.842832054477185,-48.569902538787574,-49.09766721120104,-49.693370966706425,-49.61165678780526,-50.1268358505331,-49.14938930887729,-49.72370802331716,-50.11319205444306,-49.61452255723998,-50.53188814083114,-50.739080452825874,-51.044363745488226,-51.82811652403325,-52.50206834031269,-52.12570919049904,-52.67210944695398,-51.883855135180056,-52.61044784076512,-52.949067677836865,-53.080084182322025,-52.8320769444108,-53.575743209104985,-53.149064717814326,-53.818275349680334,-53.952556423377246,-54.67670065071434,-54.28973377728835,-53.564064390491694,-53.20065712882206,-52.45938501600176,-51.63839016575366,-50.94036323390901,-50.66170692117885,-50.69153098668903,-50.94782766606659,-51.766705070156604,-51.94582584872842,-52.58459776965901,-51.953410242684186,-51.78668265417218,-51.57567604351789,-51.06895402772352,-50.42517139855772,-50.8058538553305,-50.67285791551694,-50.92751127900556,-51.73232771269977,-51.6709893415682,-50.725291814189404,-50.50453033903614,-49.91769205965102,-50.59763975208625,-50.9607624579221,-50.47728682961315,-51.325489851180464,-51.21754188928753,-50.64893619483337,-51.497684880159795,-50.81212082505226,-50.604045424610376,-51.60193013679236,-51.48483969643712,-51.98319645691663,-52.82443784317002,-52.62629171460867,-53.1576674846001,-53.52594188041985,-53.277416233439,-54.21477853972465,-53.78753624437377,-53.66032285941765,-54.33955840906128,-53.94380866875872,-53.63676543813199,-52.84226550767198,-52.15539574017748,-52.252007466740906,-52.522248580586165,-52.6788709461689,-52.00667075952515,-52.85872825747356,-52.94928572233766,-53.2458043564111,-52.581273522228,-52.15418346924707,-51.48967115301639,-51.18043015431613,-51.36132028140128,-51.10620217770338,-51.322309034876525,-51.0157146952115,-50.533015930093825,-49.786344865802675,-48.89378868881613,-48.176820741500705,-48.32921209651977,-47.65469287568703,-47.02578911045566,-48.01660304097459,-47.167906627524644,-47.303656267467886,-46.966257139109075,-46.69535748194903,-47.29247066890821,-46.65177829936147,-47.390414031688124,-46.756029250100255,-46.930301832035184,-47.017758052330464,-47.926392199937254,-47.04020431730896,-46.79913452221081,-46.07054746430367,-45.87247213162482,-46.45612515555695,-46.344129252713174,-46.8889077687636,-46.42050791718066,-47.087201313115656,-48.059306778013706,-48.33970229467377,-47.91788056958467,-46.938592090737075,-47.162302535027266,-46.34650107380003,-45.51977988379076,-44.69223009329289,-44.18896847171709,-44.85271545033902,-44.631442298181355,-44.81073536956683,-45.12457531737164,-45.694314694963396,-44.895388591103256,-44.97697658278048,-44.32689707912505,-44.389108459465206,-44.63733564550057,-44.11318678827956,-44.09452953794971,-44.51828091638163,-45.224958525039256,-46.08521242393181,-45.953044455032796,-45.457420035265386,-45.40207825880498,-46.24290041066706,-46.55886821914464,-46.67256296053529,-47.24287769617513,-47.53166156215593,-46.741354435216635,-45.99027210054919,-46.31634296523407,-46.70015888335183,-47.67158840177581,-48.09865665342659,-48.16327798785642,-47.69923202926293,-47.21355882752687,-47.93609569547698,-48.09815309010446,-48.67206880450249,-48.8486496405676,-49.407448324374855,-49.764943689573556,-50.15383869083598,-49.79030843498185,-50.07037327811122,-50.69566824706271,-50.51953083835542,-50.530159201473,-50.964970795903355,-50.20515881665051,-50.48177622118965,-50.7395563009195,-50.62120344117284,-50.1375771863386,-49.260888528544456,-49.12509884638712,-49.422401373740286,-48.799965555779636,-49.037569761276245,-48.576575925108045,-49.15714947832748,-49.088641757145524,-49.59953788248822,-50.13672688882798,-50.55631357524544,-50.76577782211825,-51.75487289344892,-52.72378433588892,-52.07420339901,-51.77857725089416,-52.142956777475774,-52.004383131396025,-51.46859061252326,-50.62334714503959,-50.197146818973124,-50.777513028122485,-50.41542733646929,-50.89639776526019,-51.385706098750234,-52.34000633843243,-53.04679722664878,-52.55938846850768,-53.14017860079184,-52.9691115450114,-53.704104599542916,-53.87699038721621,-53.83463781233877,-52.98403208795935,-53.51266950694844,-52.64349655993283,-52.037203811109066,-51.27639839891344,-51.50514522474259,-50.75992353493348,-51.18842263240367,-50.65058963140473,-50.75418500835076,-50.137291577644646,-50.592627646401525,-51.368741223122925,-51.22129202168435,-51.39596291165799,-50.92558897938579,-49.994335886556655,-50.79065210931003,-50.61752185691148,-50.533278176561,-49.600030487868935,-50.45311598200351,-49.72108779521659,-49.795622893143445,-48.8118400555104,-49.41646038973704,-49.222713940776885,-48.935319339390844,-48.573508902452886,-49.05731788557023,-48.5705588478595,-49.446065882686526,-48.96267539495602,-49.36182082770392,-50.03756967606023,-50.114183828700334,-50.87307487055659,-51.27210058597848,-50.34090151870623,-50.66831055516377,-51.07494867499918,-51.73753728438169,-50.74154335772619,-51.601726475171745,-52.05374526930973,-52.570843612309545,-52.632732986006886,-52.942298592533916,-52.271012167446315,-52.29090109048411,-52.199835303239524,-51.21930022072047,-51.77830862160772,-52.6786882923916,-53.514315884094685,-53.552467999979854,-53.881815573666245,-52.96223905496299,-52.676598311401904,-51.772142096888274,-52.36606964888051,-52.90538225043565,-53.05788664612919,-52.803224311675876,-53.13297136267647,-52.86354361940175,-52.38922534743324,-52.112615226302296,-52.265773884020746,-51.66713469987735,-52.229938625823706,-51.87161356955767,-51.77803570171818,-52.4832022045739,-53.11601981148124,-53.73929578624666,-53.24485826166347,-52.63434039056301,-51.74162155389786,-52.03090742882341,-51.439717596396804,-50.813361023087054,-51.792604530230165,-52.10680419160053,-52.510873172897846,-53.445997316390276,-53.32992991944775,-54.31614064658061,-54.77043486107141,-55.117132529150695,-55.36355199245736,-54.667227105237544,-55.281596621498466,-56.090542492922395,-56.093578117433935,-56.00063494825736,-56.087280230131,-55.145488345995545,-54.44925831630826,-54.46086350362748,-53.670875842217356,-53.35249070543796,-52.613002453930676,-52.99976325593889,-53.119842808227986,-53.19922160357237,-52.70321090146899,-51.71186256222427,-50.95315637253225,-51.53576331073418,-52.190565393771976,-51.88762503117323,-52.71623923024163,-52.03750980878249,-53.0246506286785,-53.10892912885174,-52.870163874235004,-53.703389103058726,-53.552977168001235,-54.534471911843866,-55.09576654387638,-55.77802951214835,-55.73697200464085,-55.765126700978726,-55.30737755121663,-55.874692018609494,-55.79077851725742,-55.06438780250028,-55.190440642647445,-55.32974106119946,-55.45397501438856,-56.375114345923066,-56.53786224126816,-55.90736411837861,-55.812990139238536,-56.50864101340994,-57.327771137002856,-57.97835507290438,-57.764263725373894,-58.12556023290381,-57.705942899920046,-56.98476195009425,-56.75212658336386,-57.1756799351424,-57.62123024882749,-57.76846231287345,-57.80653566494584,-57.993557419627905,-58.53697450319305,-59.132671107538044,-58.84137825667858,-57.94862679298967,-57.82969914237037,-58.50249276915565,-58.60195198236033,-58.37776796100661,-59.03607488144189,-60.001085337717086,-60.093105650506914,-61.05160119663924,-60.09841223061085,-59.720874863211066,-59.62278630351648,-60.36098057543859,-59.721033909823745,-58.96719615813345,-59.0091721508652,-59.804257795680314,-60.2487047300674,-61.181820997502655,-61.467618683353066,-61.24308018293232,-60.73988937865943,-61.10474392445758,-60.1243186253123,-60.99196031782776,-60.27740549854934,-60.8377574197948,-60.596795892342925,-60.40799553506076,-59.576989377848804,-59.57303246250376,-60.471940708346665,-59.75898385141045,-60.70441017951816,-60.121397835668176,-60.25876226462424,-60.46457626391202,-60.56441469211131,-61.197163444478065,-60.78384775156155,-61.59464954212308,-62.48188782064244,-63.045615687035024,-63.53047628886998,-62.68649112433195,-63.59688582038507,-62.89496183115989,-62.71048265649006,-63.498015156015754,-63.069097019732,-63.9796829870902,-64.25802197214216,-63.34054187498987,-62.81620104983449,-62.75849720928818,-63.286430068314075,-64.13642941601574,-63.611722936388105,-63.07111932337284,-63.9998920224607,-64.27663240162656,-63.28759045014158,-63.30018060328439,-62.34990362590179,-61.44734477670863,-60.49823565967381,-61.35023859096691,-62.2505927560851,-63.1775844944641,-63.74218327924609,-63.0972783844918,-62.487541262060404,-62.70722755230963,-62.51948623964563,-62.813537892885506,-62.68587597226724,-62.10487417597324,-62.37660597730428,-61.881809731479734,-61.867093317210674,-61.25645468523726,-61.95637343265116,-62.529310267884284,-62.19142965506762,-62.36919359397143,-62.014740652404726,-61.18364700535312,-60.538900691084564,-61.41164696961641,-60.705098293256015,-60.59815764660016,-59.791471287142485,-60.77045653341338,-59.83601489663124,-59.83715020958334,-60.63569274917245,-61.15571878524497,-60.86642425600439,-61.452635001856834,-60.86709350114688,-61.19299129769206,-60.4938456309028,-59.78493191441521,-59.84012340195477,-59.45298878289759,-59.7412857953459,-58.760143192484975,-57.82907601399347,-58.05568536184728,-57.20469964714721,-56.215605651494116,-56.65561815677211,-56.53104959661141,-56.54246313497424,-57.39488399401307,-57.41385703533888,-57.982585557270795,-58.64249190920964,-59.53851617593318,-59.6704928688705,-59.661901680752635,-59.266785216052085,-59.482815619558096,-60.46543656103313,-60.34372937493026,-59.782292989548296,-59.82656706543639,-59.099136230070144,-59.89444776484743,-59.37250492442399,-60.32937228679657,-59.39701030636206,-58.871967282146215,-59.79759571375325,-59.29019656125456,-59.640219651628286,-60.497130148578435,-60.3376117288135,-59.727262899279594,-60.01616767374799,-59.5792866894044,-58.89772480446845,-58.05954125709832,-57.084925330244005,-57.69513034261763,-58.18539196904749,-58.603358407039195,-58.349490789696574,-58.96328295674175,-58.50098874606192,-57.6234526517801,-58.31118977814913,-58.23192731896415,-58.00587067985907,-57.97194198006764,-58.000599685590714,-57.15132245095447,-56.59941189875826,-57.14446844859049,-57.809094845317304,-57.51250135619193,-57.17836013203487,-58.129129025153816,-58.06277149170637,-57.66333397477865,-57.75826491229236,-58.61385711515322,-58.62254961626604,-58.89355185627937,-58.38280466524884,-57.57788582518697,-57.81236839527264,-57.66027793241665,-57.307526112534106,-56.40067122038454,-55.627210622187704,-56.313863961957395,-56.532193353865296,-57.44800019124523,-57.345666338223964,-56.94695450877771,-57.16777131194249,-56.72291978914291,-57.34727358305827,-57.59239499364048,-58.254329616669565,-59.23973986087367,-59.7117439978756,-60.4721280396916,-60.11953277885914,-59.85192286130041,-59.81844456214458,-60.397374112159014,-60.87044773856178,-60.02214086148888,-60.61643188493326,-60.44676419533789,-60.80599700612947,-59.95011604530737,-59.70190040115267,-60.45893336413428,-59.94038106780499,-59.60082160728052,-60.1298071318306,-60.80371311819181,-60.54719830490649,-60.42219927627593,-59.79075254080817,-58.904414429329336,-59.69570711068809,-60.05565728247166,-59.89413570938632,-59.73746981611475,-59.83512907521799,-59.69134745886549,-59.120601704809815,-59.89640110405162,-59.09761326899752,-60.04285468533635,-60.68580306600779,-60.29369098506868,-61.14872361533344,-61.60617766994983,-61.61230405373499,-61.467168253380805,-61.99634916707873,-61.85856094909832,-60.945901894476265,-61.789533904753625,-61.71602338459343,-61.12136489665136,-61.65004247892648,-60.67735107941553,-59.69562401622534,-59.43679608870298,-59.64847554266453,-59.777317786589265,-60.59455135744065,-60.95378825394437,-60.3857205263339,-61.11082994705066,-61.15280804457143,-61.929144978523254,-61.3541684448719,-60.43219187343493,-60.56876631965861,-59.97171851154417,-59.69617387186736,-59.06098899850622,-59.02353301458061,-58.596246750094,-58.665639167651534,-58.833641819655895,-57.98268581973389,-57.68029933702201,-57.79196285502985,-58.010309589561075,-57.155858245678246,-58.07550267269835,-58.691951177082956,-58.44663147442043,-59.28396807983518,-59.080710920039564,-59.47754235332832,-59.97473471798003,-59.5065229232423,-59.18111828248948,-58.710810107178986,-57.75375935994089,-56.85742396861315,-56.425029668491334,-57.31867178203538,-57.58572576660663,-58.49379495391622,-59.145534065086395,-58.983824263326824,-59.5180740095675,-59.339037905447185,-58.89725090423599,-58.57296640612185,-58.311093841679394,-58.065437704790384,-58.18815924087539,-59.1249799951911,-58.8089364040643,-58.205146468710154,-57.28680197708309,-57.89280354836956,-57.27748423349112,-58.10834819730371,-57.87539361510426,-57.19970257021487,-57.45245369989425,-58.252711166162044,-57.26534866914153,-57.738381277769804,-57.24488429212943,-57.93236719816923,-58.10947405220941,-57.69607180310413,-58.53158370824531,-58.35927292983979,-58.434520598035306,-57.61353685008362,-58.055567568168044,-59.04492087895051,-59.36655844794586,-58.55086430069059,-58.74347443319857,-58.74176138127223,-59.10544461058453,-59.04105409607291,-59.238516113720834,-58.490860079880804,-58.999299437273294,-58.952951391693205,-57.968553497456014,-57.04087229631841,-57.591162463184446,-58.41455402690917,-59.17686892580241,-58.864053062628955,-58.36407328816131,-58.76958456635475,-57.843811471015215,-56.869646640494466,-55.98594200098887,-56.098340834956616,-55.6704326570034,-55.63289666781202,-55.94429772160947,-55.27540421904996,-56.16795894736424,-55.67471513338387,-54.732833058573306,-55.201894173864275,-54.486878087278455,-54.46082016220316,-54.69831773079932,-54.27041191840544,-53.92265877034515,-54.73823537770659,-54.368979663122445,-53.548004898708314,-53.22685921797529,-53.885243204887956,-53.01894404925406,-52.36688899854198,-52.64956392580643,-52.640538859181106,-52.17364189540967,-52.59710856433958,-53.18914788682014,-52.782452777959406,-52.717399057000875,-53.355460001155734,-53.36512483470142,-54.319955330342054,-54.978584555443376,-55.556522025726736,-55.00294126616791,-55.48005945188925,-56.213546632323414,-56.88055619364604,-56.92466282565147,-57.881687144283205,-57.953995475079864,-58.52436458552256,-59.11203685821965,-58.97295339452103,-58.21956929191947,-58.227467365097255,-58.020904118195176,-58.368093066848814,-58.124864750076085,-58.26403461070731,-57.80881470954046,-56.88349502719939,-57.34859437588602,-57.50921417679638,-57.27755154436454,-58.180138525087386,-57.41417925339192,-57.387433466967195,-56.770791680552065,-57.28345072641969,-56.58750388817862,-57.17226911103353,-57.95781773747876,-57.35852264566347,-56.985417526215315,-56.04661280103028,-55.90901983715594,-56.524320628494024,-56.77756348159164,-57.391378548927605,-56.76330908294767,-55.78167542302981,-55.762738049495965,-56.3948460156098,-55.93858610605821,-55.480651676654816,-56.16101508261636,-56.24515590863302,-56.995989420451224,-57.5991177004762,-58.4670980386436,-58.18157592182979,-58.002578942105174,-57.29410847183317,-56.69135784683749,-56.8198979604058,-57.46706973668188,-57.495761977508664,-57.78632070077583,-58.28669613972306,-58.73055832926184,-58.17868713615462,-57.18405198864639,-56.343907181639224,-56.47480206983164,-56.48025801870972,-55.95544616971165,-55.40883788187057,-54.617987285368145,-55.16883540805429,-55.72738360147923,-55.36884765373543,-55.05848217988387,-55.7169368439354,-54.91358883259818,-54.00160380220041,-53.70880355639383,-52.97741744900122,-52.32824090356007,-51.74110727524385,-51.144431587308645,-50.738241222687066,-50.41775253927335,-50.02869470277801,-49.4116573673673,-49.48412164114416,-49.69810098456219,-49.105273586232215,-49.29350455198437,-49.29895179811865,-48.81456564227119,-48.27901896974072,-49.09232499776408,-49.797329548280686,-49.54289327003062,-50.33742768224329,-50.882890061941,-51.73322847764939,-51.07188924122602,-50.422521700151265,-49.85002064332366,-49.99547283258289,-50.50648382306099,-50.22340184729546,-50.45433411048725,-49.60647239489481,-49.14148585591465,-48.90018075611442,-49.118816055357456,-48.193613788113,-48.96753830416128,-48.68230274133384,-49.66500613791868,-50.46398382913321,-51.22365937149152,-50.33841633237898,-50.916354664135724,-50.68421960482374,-51.20949587225914,-51.50072856899351,-50.68531268602237,-50.94990383600816,-51.84842601232231,-52.38901989441365,-51.66528619127348,-51.41723143449053,-52.05302243027836,-52.71216558711603,-53.03452353226021,-52.47056219121441,-52.47763732820749,-51.721769749652594,-51.79147638194263,-51.23233812395483,-51.74090541014448,-51.74206309672445,-52.64920797152445,-53.11603099992499,-53.95338931772858,-54.214496897067875,-53.47978439973667,-53.4477150789462,-53.331230969168246,-53.610583503730595,-53.395845853723586,-53.61270102253184,-53.906726577319205,-54.6156861432828,-53.75366544025019,-53.23739125998691,-53.09791199117899,-54.06788221094757,-53.43310211831704,-53.666350034065545,-53.11856920318678,-52.38188949273899,-51.75776083488017,-51.39062606589869,-50.92371264565736,-50.22522825887427,-49.4562982711941,-48.992836150340736,-49.5350678851828,-49.97895501740277,-49.30778789240867,-49.246869852766395,-49.335458343848586,-49.02090438781306,-48.98739837249741,-49.855055113788694,-50.72448074631393,-49.76462400890887,-49.466389073524624,-49.210753242485225,-48.53211047966033,-47.59597236663103,-47.888568060006946,-48.60612916573882,-48.80160219967365,-48.79808734357357,-49.789214657619596,-50.156965248286724,-50.63185193808749,-50.395468421746045,-50.60074535757303,-51.43697938648984,-52.242787428665906,-51.26468046521768,-51.06126846186817,-51.11974019743502,-50.84960936475545,-51.81871896144003,-51.87914832122624,-51.18876856286079,-50.375871900934726,-50.38156067719683,-51.01667933212593,-50.74628673354164,-51.287447151727974,-51.01136107137427,-50.968887370079756,-51.7020582430996,-51.53058563824743,-50.65061890659854,-50.5491856103763,-49.56240258459002,-50.084478684701025,-50.66591170337051,-50.5942941471003,-50.32848036941141,-50.45957819465548,-51.05007783463225,-51.85928592737764,-51.83471030090004,-51.41852002218366,-50.423798248171806,-51.14091318519786,-51.299073887523264,-51.62134173559025,-51.42875446751714,-50.705965178087354,-49.8427937659435,-49.49011303437874,-48.79229043330997,-48.33564118295908,-48.77723960345611,-49.19826556183398,-48.87536240834743,-47.88785842154175,-48.12094436120242,-47.775669930968434,-46.91190281370655,-46.45355798956007,-47.23389883665368,-48.04422946739942,-48.817230958957225,-48.89826294826344,-48.7346232496202,-48.96241801790893,-49.40489444695413,-48.61947373440489,-48.35671206749976,-48.66096671903506,-48.981104974169284,-48.212073421571404,-49.17416862770915,-48.56849184911698,-47.79825816024095,-47.344814122188836,-47.56402798881754,-47.68144667940214,-47.3286827779375,-47.14683425286785,-46.68279465474188,-46.59083593962714,-46.652885898482054,-45.759331616573036,-44.91903211642057,-44.15172955626622,-44.70158799691126,-43.975726023782045,-44.92812494374812,-45.445159532129765,-45.95774778909981,-46.915071801282465,-45.993582726921886,-46.79653955157846,-46.89015480270609,-46.51502955285832,-47.2371510528028,-48.18505626125261,-48.28829828556627,-49.122985783498734,-48.12740479456261,-48.69025835162029,-48.22826627781615,-47.8097797264345,-47.23022371251136,-46.53369962098077,-46.02336676605046,-45.37187397386879,-46.14379064179957,-46.82563667697832,-46.354564568027854,-46.31713125901297,-46.56417383160442,-46.06440570624545,-45.76140901679173,-46.53341095754877,-46.37392873503268,-46.49067918304354,-46.846324461046606,-46.78688762849197,-46.522361383307725,-47.287999026943,-47.124527940992266,-47.310446796007454,-46.87131122080609,-47.505446480587125,-46.78793661668897,-47.16972948983312,-46.24252657499164,-46.48380117164925,-45.93304683500901,-46.25050256634131,-46.254903393331915,-46.5347101171501,-45.6137492028065,-46.49471426010132,-47.23019971046597,-48.19400306697935,-48.0091184428893,-48.5235020252876,-48.9767950726673,-49.71623511379585,-49.30311336228624,-49.38154987152666,-48.833112613298,-48.161934085190296,-48.99719150364399,-49.055556017905474,-49.72895962232724,-50.468910661526024,-50.04426993848756,-50.98885171394795,-51.58653797348961,-50.8389255432412,-50.19327725516632,-51.08450660808012,-51.97469208575785,-51.820135071408004,-51.19044094905257,-51.52642819005996,-51.07372581958771,-50.46495318086818,-50.35601091571152,-50.540806697681546,-51.06919351918623,-51.63306260854006,-51.493542574346066,-52.000971807166934,-52.863780710380524,-52.094325385056436,-52.55005871038884,-51.5725683234632,-51.4595529041253,-52.35021897777915,-51.57848562858999,-51.91070495778695,-52.79635925684124,-51.80968666309491,-52.31008679885417,-51.59660177724436,-51.92464266438037,-51.33663327852264,-50.95190492551774,-50.347484159749,-50.93350862339139,-51.360510227270424,-51.47325679566711,-52.15173551440239,-51.41624197922647,-52.246757234912366,-51.81151652522385,-51.94844691129401,-51.050107354763895,-50.6264031464234,-49.87996087688953,-50.7559909070842,-51.26319355843589,-51.5226463037543,-50.80244668992236,-50.7860422343947,-50.8690694719553,-51.8242164850235,-51.734533672686666,-51.735614374279976,-50.938670904841274,-51.770451893564314,-51.673930757213384,-52.45833824388683,-52.41657138662413,-53.123270586133,-53.992929462343454,-53.03690598718822,-54.02760883467272,-54.96863803360611,-54.95521638169885,-54.63754050200805,-54.43821691162884,-55.42550079897046,-55.706671016290784,-56.33850429672748,-55.65447672177106,-56.06733781052753,-56.24922545533627,-55.50627771951258,-55.40146616473794,-55.404742010869086,-54.89281295379624,-55.01854813005775,-55.90906693832949,-55.04156649205834,-54.20668191136792,-53.71495596785098,-53.10125913284719,-52.618277326691896,-51.86371390009299,-52.770870411768556,-53.053581782616675,-52.85310064069927,-52.913604642730206,-52.37363829370588,-52.425156977027655,-53.314530443400145,-52.94742364808917,-52.29735986888409,-52.552564868703485,-51.765229628421366,-51.849523295182735,-51.27379661006853,-51.5837386357598,-51.45589811401442,-52.19833884714171,-52.907785759307444,-52.82470266101882,-52.15426914440468,-52.81089184153825,-52.92529243696481,-52.48888616077602,-51.92603628570214,-51.95887767942622,-51.57054002210498,-51.00478475820273,-51.62881831685081,-52.033678465057164,-51.90515771321952,-52.794503105804324,-52.169155817478895,-52.26668182667345,-53.21906633954495,-52.50214458722621,-51.87486233981326,-51.119880040641874,-50.37237663893029,-50.269769282545894,-49.90205434337258,-50.12578976433724,-50.71598646324128,-50.61831532046199,-50.643520860467106,-51.24218875495717,-50.721019777003676,-51.048136407043785,-51.97976030129939,-52.16330986749381,-52.84583265846595,-52.138244518544525,-52.60033305408433,-53.16447249474004,-53.608581186272204,-53.695835513062775,-52.95846142573282,-53.095118595752865,-53.51115510938689,-53.61751898704097,-53.337287919130176,-52.961326675955206,-53.16957348585129,-53.998810342513025,-54.45124589372426,-54.88646003603935,-54.93842214066535,-54.01506707118824,-54.17004220094532,-53.644594059325755,-54.273692216258496,-54.292952445335686,-54.6451607956551,-54.04832677729428,-53.53531913924962,-53.424454882740974,-52.80472087068483,-52.509216899517924,-52.30376261146739,-51.42599328560755,-51.59427921799943,-52.44222402526066,-52.62177518568933,-52.93504709471017,-53.897669739089906,-54.311338275671005,-55.01280475780368,-54.45743493922055,-54.749947362579405,-55.035573260392994,-55.24303060909733,-54.531493628863245,-53.670635879505426,-53.51796079846099,-52.8111273269169,-53.486115830019116,-53.82264764979482,-54.66748516075313,-54.045113942585886,-54.54261018615216,-54.11004436714575,-54.42154251784086,-54.49476537015289,-55.04029596270993,-54.57269470253959,-55.225992888677865,-55.555208046454936,-54.717542429454625,-55.31353034963831,-54.554845690727234,-55.20174700487405,-56.15857605217025,-56.359329604543746,-55.81878792308271,-56.58342835307121,-55.66816974943504,-55.7217187685892,-56.03606206970289,-57.0239342469722,-56.53047158708796,-55.65755093190819,-56.17146060336381,-55.37586032412946,-55.953476428985596,-55.80580213153735,-55.145803277380764,-55.328898657113314,-56.3224911368452,-56.90097742062062,-56.866799087729305,-56.66107589285821,-57.05655992263928,-57.09020495368168,-56.92180838808417,-56.739577187690884,-57.40376671496779,-56.41589179914445,-55.46097580622882,-55.59781147586182,-54.73677065689117,-55.22103611472994,-55.86136303842068,-54.98739439807832,-55.37279220065102,-55.94370117364451,-55.74840338714421,-55.119613100308925,-55.85480134189129,-55.278162078466266,-54.739950843621045,-54.327690933365375,-54.50799542479217,-55.192408584523946,-55.26766039710492,-55.90379528142512,-56.19933850085363,-57.01607458712533,-57.595845070667565,-57.32049796683714,-57.895139100030065,-57.749655555933714,-56.915806899778545,-57.0983993569389,-56.59732698975131,-55.75468871835619,-55.05682229343802,-55.72684596432373,-55.26012409059331,-55.39547310443595,-55.461925715208054,-54.6966647952795,-54.31615358963609,-54.61057184729725,-54.55276243761182,-54.70067181158811,-54.11425012908876,-54.78659984469414,-54.82638056296855,-53.836929314769804,-54.53468514094129,-54.0638079829514,-54.58652159245685,-55.089011126197875,-55.65520042832941,-56.543005959130824,-55.610927103087306,-56.3807842284441,-55.65986365545541,-55.64784411387518,-56.10967766167596,-56.74137654248625,-56.88866723701358,-56.44001628365368,-56.80919722560793,-56.524240653496236,-55.845994564238936,-56.67104776808992,-55.6932224528864,-56.3498024600558,-55.59872479503974,-55.44803434703499,-56.188576743006706,-56.405561153776944,-56.95588000770658,-57.93186114821583,-58.218194387853146,-57.51610530586913,-56.59805504884571,-56.28897562203929,-56.68278499878943,-56.49194941762835,-56.06063159974292,-56.883185140322894,-57.731978497933596,-56.821204462554306,-56.41927234875038,-57.064529875759035,-57.18474950641394,-58.0575036117807,-58.79708210285753,-58.75980181572959,-57.87406371347606,-58.58245490351692,-59.342113924212754,-58.78124462114647,-58.96405683225021,-58.356656352989376,-58.79367242986336,-58.86879086913541,-58.63762279273942,-59.20629092911258,-59.841412137728184,-59.20861989771947,-58.57511580688879,-57.66188185475767,-58.083598528523,-58.63579208869487,-59.6259509306401,-59.98613819479942,-58.98619515961036,-59.825546017382294,-59.06949684303254,-59.336982381530106,-58.36510126059875,-58.363488408736885,-57.82740660291165,-57.73403333267197,-58.06802336452529,-58.83992862747982,-59.831840296275914,-59.97755928756669,-60.438501324504614,-61.02426996733993,-60.89399159140885,-61.25565606215969,-62.14228458376601,-62.57066736463457,-62.433377102948725,-62.534446792211384,-61.83384767640382,-61.48809992708266,-61.54604677204043,-62.24001220148057,-62.36126356385648,-62.73840533476323,-61.779259756207466,-61.98912258585915,-61.14604815421626,-60.99964005686343,-61.518817325588316,-62.02976010600105,-62.776508048176765,-62.70424917852506,-63.57336002262309,-63.389819271396846,-63.08499615266919,-62.354382837191224,-63.03261609142646,-63.454121616669,-62.68557943729684,-62.581475594080985,-62.63722011633217,-63.57662863191217,-63.97454150626436,-64.59320664219558,-65.13774907542393,-64.7526085502468,-65.24571525910869,-65.66386535204947,-66.11078952020034,-65.1533686495386,-64.6798299215734,-64.44534965325147,-63.96483533317223,-64.18361634667963,-64.4468925469555,-64.82520436542109,-65.21650001779199,-64.67410622676834,-65.08330186782405,-65.24978480255231,-64.66445920336992,-63.85245962953195,-63.21630517859012,-62.5587615785189,-62.30736235110089,-63.08297617547214,-62.462270085699856,-62.55580540839583,-61.601197636686265,-61.478971919976175,-62.411368656903505,-61.44850248657167,-61.699165898840874,-60.78256194666028,-60.574664041399956,-60.428232982289046,-59.717288385145366,-60.490421341732144,-61.3541996027343,-61.35192713327706,-60.8348089363426,-61.02289860229939,-61.01979585690424,-60.69573886645958,-61.66947703342885,-61.997228966560215,-62.02261296380311,-61.95250470004976,-61.45808083657175,-60.59718005405739,-60.934637849684805,-61.04913293290883,-61.241916557308286,-60.88739758962765,-61.8584836255759,-62.4272964480333,-62.87700671562925,-63.40569430915639,-63.96479806024581,-63.06034975638613,-62.872196548152715,-63.85571434115991,-64.21499502845109,-64.00187786575407,-64.34562831558287,-65.28593622753397,-65.44179646344855,-65.92751415725797,-66.53155219648033,-66.07701772497967,-65.34560902742669,-64.35108592454344,-64.41145259374753,-65.1195645374246,-65.44541443651542,-65.18051294749603,-64.34425980458036,-64.97981073660776,-64.5799194383435,-64.20326209394261,-64.4977674074471,-63.919958143960685,-63.496493828482926,-64.29032864002511,-64.64413069887087,-63.7134074177593,-62.99019262054935,-62.06881914101541,-62.473742516711354,-63.0906642973423,-62.25458148447797,-61.712296060752124,-61.085948161780834,-61.38706664275378,-61.23314182134345,-61.91618386236951,-61.0255959359929,-60.556532287970185,-61.2585584865883,-60.883128587622195,-61.03859174903482,-61.712823109701276,-61.366979624610394,-62.125537475571036,-62.74981873808429,-62.00592436874285,-61.273345278576016,-61.54822239885107,-61.41801233123988,-61.99776890221983,-61.65040803188458,-62.436644482426345,-62.58122934168205,-62.69699225202203,-62.55665643746033,-61.720835517160594,-61.6943202028051,-62.57683927286416,-61.92179062543437,-61.34861386101693,-60.8936589746736,-60.130704395473,-61.05862502800301,-60.894765469711274,-60.43959233770147,-61.416332366876304,-61.87952075805515,-62.855194066185504,-61.8705649045296,-61.0125719611533,-61.97373249102384,-61.38156216125935,-61.599374304991215,-62.19531431281939,-61.48362341476604,-60.69898359151557,-60.23361772624776,-59.430469437502325,-58.537251190282404,-58.91533935582265,-59.85458886018023,-59.21891968790442,-59.66352945147082,-59.971786779817194,-59.852689939085394,-60.469292007386684,-60.77671372285113,-61.00789981754497,-61.08800476323813,-61.632179382722825,-61.23562339320779,-62.21352213714272,-62.73290350334719,-62.718336053192616,-63.297228056471795,-63.11097399843857,-63.008248288184404,-62.56313215009868,-61.62598531367257,-61.93245882028714,-60.941033522132784,-61.70988515438512,-62.494004076346755,-63.08527509495616,-62.35235504573211,-62.40769788296893,-62.4390058494173,-62.885378919541836,-63.04400633787736,-62.15026152972132,-62.68633840698749,-63.119664317928255,-62.73513095267117,-62.99139303108677,-63.55800893437117,-63.67287743045017,-63.49914096528664,-62.8670794009231,-63.430461797863245,-62.608923392836004,-61.61469179531559,-61.95033567165956,-61.60454787546769,-61.91016421047971,-62.15805228240788,-61.495122235734016,-61.53908686386421,-61.518332407809794,-61.854106560815126,-62.83609902439639,-62.81779092969373,-62.59655954549089,-62.96805523755029,-62.12206013733521,-62.8946519610472,-63.54187849070877,-62.55048901960254,-61.93810272356495,-62.207271880004555,-61.364830003120005,-60.47184562450275,-60.68216761248186,-60.36054574372247,-60.8101059217006,-60.04007706604898,-59.114692671224475,-59.915755511727184,-59.89224580861628,-60.185960684902966,-61.11280112341046,-61.478141121100634,-62.21870210207999,-62.14158319029957,-62.07434132043272,-62.589885662309825,-63.32927032606676,-63.863423466682434,-63.73617958649993,-62.86737062968314,-62.616983516607434,-61.62255902448669,-61.04393947822973,-60.21512572048232,-60.534588957671076,-61.40077260695398,-61.17387986974791,-60.67618967406452,-61.49034280376509,-61.069524047430605,-60.50279073044658,-60.826587026473135,-60.65891470992938,-60.10423636902124,-59.972596544306725,-60.12642399035394,-59.5502279070206,-58.79301909171045,-58.03780984785408,-58.482471662107855,-58.345905736554414,-59.05485268775374,-58.94831615826115,-59.80064277816564,-60.0256950086914,-59.83392467116937,-60.33538531931117,-60.50476754549891,-60.6872456939891,-60.600265664979815,-59.9382282118313,-59.87712574703619,-59.16342134447768,-59.01149342628196,-58.28319933032617,-59.109940653666854,-58.12207625852898,-57.77072367304936,-58.119542515836656,-58.0004076808691,-57.52757839113474,-57.56513131223619,-58.23972387891263,-57.66710264887661,-57.189641944132745,-56.54131782660261,-56.132651194464415,-55.14791868813336,-56.07886956911534,-55.442136832512915,-55.25013859849423,-55.25971573451534,-55.100435212720186,-54.65603597415611,-54.5794253568165,-54.753541147802025,-55.665625946596265,-56.17009072843939,-55.95621862821281,-55.4901408595033,-54.8812644793652,-54.182534099090844,-54.32100176019594,-54.35620198305696,-55.13909983402118,-54.932560075540096,-55.58743033744395,-56.03908279305324,-55.45105674723163,-56.08459044294432,-56.2222288060002,-55.539442082401365,-54.91459982842207,-55.20925089297816,-55.2511560828425,-54.822770869825035,-54.665173676330596,-54.03479626681656,-54.5709126428701,-54.194987771101296,-54.49423510255292,-54.44509878149256,-54.12070764461532,-54.52381366863847,-54.402714745141566,-54.47320971218869,-54.88237838586792,-54.61926245735958,-55.19282172387466,-54.87657452374697,-54.944648067466915,-55.18085025250912,-54.645996036008,-54.12517973408103,-54.71055475436151,-54.89834317192435,-54.45162499975413,-54.56494849314913,-54.89913139818236,-54.218000914901495,-55.07376225851476,-55.95574819436297,-56.38535885605961,-55.95625731954351,-56.37770490208641,-56.61166256200522,-55.932304211426526,-55.000047081615776,-55.19146049814299,-55.02672875346616,-54.27683965116739,-53.82358168065548,-54.26896553533152,-53.538742270786315,-53.30836786329746,-53.02072684047744,-52.55065360106528,-51.56973846303299,-50.72740697488189,-51.287537990137935,-51.336209785193205,-51.345303578767926,-51.38182754768059,-52.00592953711748,-52.668011497240514,-52.277016072999686,-51.84155584825203,-52.257136470638216,-52.61294918367639,-53.23646613722667,-52.274889497086406,-52.21265637082979,-51.289472768083215,-50.97555936733261,-51.04385958984494,-51.6175888851285,-50.89645495451987,-50.18424861924723,-50.02468976192176,-50.01542891655117,-49.18609762145206,-50.13258696720004,-49.60487919393927,-50.20412012562156,-49.45946410857141,-49.92962368344888,-50.05666854698211,-49.18260506493971,-49.73439614009112,-49.479010194540024,-50.10335297835991,-50.3322504167445,-50.69781657261774,-51.168903805781156,-51.254365373402834,-51.19648871617392,-50.65973384073004,-50.53182488121092,-49.80198819562793,-49.214147510938346,-49.20426892861724,-49.741077227983624,-49.852849203161895,-49.55732677038759,-49.60356056969613,-49.966855897102505,-49.19245753437281,-48.838422594591975,-47.852128237485886,-48.521364585496485,-48.59037687489763,-48.80614674370736,-47.89102774113417,-48.069508962798864,-49.04018905572593,-48.14517526561394,-47.81687073269859,-47.63309831684455,-47.50997854070738,-48.055085172411054,-47.079340767115355,-46.74023691471666,-47.28805360477418,-46.45261616492644,-45.76062776800245,-46.246799774933606,-45.286694440990686,-45.48297207150608,-45.36305586108938,-44.69934909651056,-45.64976541046053,-46.43149720923975,-46.91659362940118,-47.55744344973937,-47.41780423792079,-47.431340800598264,-47.38119338033721,-48.06257509626448,-48.91340094804764,-48.11109087429941,-47.75822780979797,-47.675399319734424,-47.547614412847906,-47.289134287275374,-47.99721542792395,-47.38970489986241,-46.726313684135675,-47.458571842871606,-46.68374756164849,-47.11001077853143,-47.8910130742006,-48.19862977787852,-48.8043895852752,-48.65033733472228,-47.72085900278762,-47.4020359008573,-46.45409398479387,-46.09769896604121,-46.71972508309409,-47.428578393533826,-48.366535822395235,-47.876783596817404,-47.49436625652015,-48.05606556124985,-48.36516153020784,-47.99583094473928,-48.49552316311747,-47.7454516752623,-47.47839336236939,-47.48334919428453,-47.69436202943325,-48.456837406847626,-48.622732426505536,-47.80152946058661,-46.95358935557306,-46.20469338167459,-46.63221872365102,-46.5668010674417,-45.928506549447775,-45.03015349013731,-44.574270215351135,-44.77700570644811,-45.29421689780429,-46.08523692423478,-47.072345012333244,-46.304477230645716,-45.98228985676542,-45.94806389277801,-46.0223152670078,-46.776870489586145,-46.20800461946055,-45.440594443585724,-45.69734667753801,-46.50636824965477,-46.3199363630265,-46.78938862821087,-47.63190186629072,-46.844121125061065,-46.56847819685936,-46.58737685717642,-45.82358184736222,-46.682848799042404,-46.1680434611626,-45.93340139789507,-46.81835309835151,-46.30492392880842,-46.77823868766427,-46.47358643449843,-46.28402018174529,-46.345712755806744,-47.04771697381511,-47.768434546887875,-47.53015184123069,-47.69919862598181,-47.61678893910721,-47.572329281363636,-48.55854963697493,-49.41759182745591,-49.37475646659732,-49.71813954273239,-48.98192885238677,-49.15314050903544,-49.575821180827916,-50.120752830524,-49.368463354650885,-50.040129143279046,-49.219451701268554,-49.248935292009264,-48.775730333756655,-48.19517557276413,-48.2600995763205,-48.458598780445755,-48.63868242315948,-48.46938621206209,-49.29739860026166,-48.60898267291486,-48.287512299604714,-48.209892789367586,-47.90058053517714,-47.00413298327476,-47.396744274534285,-46.55301393568516,-46.217137734405696,-46.365292383823544,-46.79734585946426,-47.305707801599056,-48.24644525209442,-48.57094283448532,-49.173838320188224,-50.168087649624795,-50.92929800832644,-51.73115456523374,-52.62381829647347,-52.17300983518362,-52.612962022889405,-51.84252833016217,-51.38726212410256,-52.193195334170014,-51.23028775770217,-50.60106877377257,-51.10481564840302,-51.25005636643618,-50.322516159620136,-49.480463199317455,-48.84567558532581,-49.224109375383705,-49.680984005797654,-49.13527689827606,-49.69042475754395,-48.903982129879296,-49.822774758562446,-50.72497841343284,-49.74339011916891,-49.91405917657539,-49.0752561185509,-48.79336732439697,-48.92922707647085,-48.148310667835176,-48.267249278724194,-47.86420648498461,-46.89420198276639,-46.720653977710754,-45.78173025557771,-45.97828797949478,-45.62302487203851,-46.35331829311326,-46.55512082064524,-45.73372533079237,-45.31768274726346,-45.51991938613355,-45.7509313239716,-44.97642373247072,-44.190765496343374,-44.73828452266753,-45.24335109209642,-44.71720744622871,-45.28819013154134,-44.78161392966285,-44.79206958692521,-44.20525081735104,-44.15731534129009,-43.879840256646276,-44.54952421039343,-44.327112048864365,-44.338628713041544,-45.29178468277678,-44.78581252647564,-44.7078115218319,-45.633227991871536,-45.93260792689398,-46.40238059358671,-46.62907521612942,-46.99536637682468,-46.10391566110775,-46.83883622707799,-46.796321174129844,-46.4178555351682,-46.87290420057252,-46.153825275134295,-45.31482859654352,-45.89947741199285,-45.64964096387848,-46.32663411600515,-45.719864210579544,-46.04785299953073,-45.94673596555367,-46.069422278087586,-45.308771503623575,-45.863845671061426,-45.41199259087443,-45.47441679332405,-45.60151804191992,-45.974476198200136,-46.34729929827154,-45.99851404875517,-45.87409959966317,-45.60993842454627,-44.67712644813582,-43.679643725045025,-43.58677371684462,-44.02547489432618,-44.26560927648097,-43.61136124236509,-42.66241523483768,-41.99905733251944,-42.28024111315608,-43.026704270392656,-43.591710248962045,-42.74739963375032,-43.47738350182772,-42.984605768695474,-43.406932705082,-43.75941368890926,-42.77606807043776,-43.444203475955874,-42.59951670235023,-42.24497073562816,-42.16080619720742,-41.880718341097236,-42.61275429883972,-41.72721710894257,-41.16594213154167,-40.477811318822205,-40.92943540774286,-40.330682560801506,-40.3140606735833,-39.646746086888015,-38.70254296856001,-37.91762399626896,-38.02833324857056,-38.07383903907612,-37.194471183698624,-36.59857975458726,-35.788638669997454,-35.763731171842664,-36.32020256854594,-35.50511647481471,-34.97453487245366,-34.229133799206465,-34.73192564537749,-35.594175001606345,-36.343838170636445,-36.93770064599812,-36.05323679372668,-35.06235184147954,-34.949090572074056,-34.57395896827802,-33.74094378622249,-34.26138988044113,-33.59254802856594,-34.463113938923925,-33.627926567103714,-34.02251786738634,-33.74707002053037,-33.24108587438241,-33.68524565920234,-33.22242386825383,-32.39987808186561,-32.814427342265844,-32.87096886103973,-33.54529234068468,-33.67753037903458,-34.61369802104309,-33.9354705773294,-33.67726239096373,-33.164482748135924,-33.17106371372938,-33.135506904218346,-33.805964566301554,-34.74430068815127,-33.75476539880037,-34.432473573833704,-33.67144434619695,-33.56067315256223,-34.30810653837398,-35.213859271258116,-35.379470616579056,-36.210119172465056,-36.20660156244412,-35.20949927298352,-34.98461866937578,-35.13248849008232,-35.801252163015306,-35.29166715312749,-34.31432462669909,-34.71653439756483,-34.95532945590094,-34.15449379943311,-33.9631903427653,-33.261591704096645,-33.408122163731605,-33.736570408567786,-33.24882326554507,-32.42650969186798,-32.142835702281445,-32.566686453763396,-32.9890213618055,-33.23000306496397,-33.01452945312485,-32.76404258888215,-32.63518382469192,-33.588940208312124,-33.77937223576009,-34.07379223406315,-34.63245779974386,-34.398194673936814,-33.94655864406377,-33.515165977180004,-33.408032222650945,-32.8990359660238,-33.08084643539041,-33.50311166420579,-33.69088114472106,-34.52710244525224,-33.99402973102406,-34.94568907795474,-35.58073771977797,-35.79926468571648,-35.296952673234046,-35.157118127681315,-34.517487103585154,-33.86653636256233,-34.43051318265498,-34.192402304615825,-33.573348379228264,-33.61785764200613,-32.94110310683027,-32.41176378400996,-31.449181814212352,-30.513263740576804,-31.310816601850092,-31.969783475622535,-31.631327132228762,-32.17308084946126,-33.083921558689326,-34.03192538768053,-33.286256157793105,-32.38005046406761,-32.66851397044957,-32.592767470981926,-32.26266244892031,-31.37331825401634,-31.08013251144439,-31.46427653869614,-31.32901765871793,-31.121080613695085,-30.63113612961024,-29.64212289499119,-29.620926088653505,-30.07317709038034,-30.74990884028375,-30.980549486353993,-30.218551921192557,-30.647581411525607,-30.90181218320504,-30.933022430632263,-30.4046282293275,-29.951632851269096,-30.349593348801136,-30.888473646249622,-31.390638464596123,-30.672404136508703,-30.362325232941657,-30.09496006835252,-29.580862464383245,-30.3773905322887,-30.14530503610149,-29.396480176597834,-29.354738115798682,-28.833816749509424,-29.551176708657295,-29.945965971797705,-30.71744662616402,-31.552851578686386,-32.24543560715392,-32.77164533594623,-32.55616257060319,-32.45796520495787,-33.34676462970674,-33.88002476328984,-33.12563373008743,-33.21841920726001,-32.924681276548654,-32.509439318440855,-32.792302350047976,-32.91338782617822,-33.8304585153237,-32.94207985699177,-32.456983637064695,-32.9683728502132,-33.81957334652543,-34.8180305804126,-35.385145988781005,-34.45063001383096,-34.72820380143821,-34.876730806194246,-35.864296230487525,-36.196720397565514,-36.613441267982125,-37.26859683357179,-37.4841418559663,-38.412483032327145,-38.954390773549676,-38.58262292435393,-37.64938148763031,-36.892033693380654,-36.38587093586102,-35.93065935000777,-36.18915589246899,-36.50775220571086,-36.319950136356056,-37.10070430347696,-36.715838318224996,-36.39913914445788,-36.47165682865307,-37.317179459147155,-36.907864111009985,-37.64322137553245,-37.78836621902883,-38.44387842062861,-38.6928143678233,-38.070738684386015,-38.74162204563618,-37.93682728335261,-37.65598273044452,-37.72384079406038,-37.93052078736946,-37.448773567564785,-37.165368617046624,-37.185851372312754,-36.53327111899853,-36.3231523768045,-36.37816420150921,-36.65549718681723,-37.40414933115244,-38.340815659146756,-38.3559685703367,-37.92392894299701,-38.54551390372217,-38.82702386844903,-38.06704166159034,-37.367306779604405,-37.11963565507904,-37.951148874126375,-38.06606931332499,-38.74754996271804,-39.08545157266781,-39.377932872623205,-39.06640399014577,-38.26607788261026,-38.78306189039722,-38.82346937432885,-39.747595474589616,-39.68767380900681,-39.70521712163463,-40.24817923689261,-41.14632223313674,-40.729850181844085,-40.63356374250725,-41.597677973564714,-42.127783278003335,-42.7776041617617,-42.27298491913825,-42.939394684974104,-42.90103771025315,-43.42224689479917,-43.683989288285375,-44.552433737553656,-44.9495643642731,-45.470571991987526,-46.41151708783582,-46.228465961292386,-45.322338265832514,-44.536637999117374,-44.14367008442059,-43.52122906502336,-43.386663771700114,-43.20686850231141,-42.78352350834757,-41.827119966968894,-41.85133395669982,-42.00228923512623,-42.81460194289684,-43.79882499901578,-44.413155099377036,-43.768167397007346,-43.071982805617154,-42.275756309274584,-42.394819313660264,-41.936234993860126,-41.81390979513526,-41.505810991395265,-41.402760898694396,-42.36028854502365,-42.090512924361974,-42.58452442428097,-42.79464306123555,-43.16333445906639,-42.47105883760378,-41.74926753761247,-41.71868499275297,-41.942859921604395,-41.97084560897201,-42.472537741065025,-41.52800669055432,-40.94554501725361,-41.868989509064704,-41.166713444981724,-41.818985047284514,-42.14774932991713,-42.155506304930896,-41.76235204236582,-42.2105473652482,-41.60914847580716,-42.43977847835049,-41.53383503248915,-40.62754856515676,-40.34465872263536,-40.745338941924274,-39.77837007120252,-38.806717209517956,-39.09770424198359,-39.95875960448757,-39.48284611944109,-40.02431020187214,-40.17101349448785,-41.106594235636294,-40.1378079210408,-40.99126248434186,-41.834524034988135,-42.63548332126811,-41.66508724866435,-42.39559156121686,-42.693851944524795,-43.664368889294565,-43.98711341805756,-44.66860368754715,-44.69750095764175,-44.19451946532354,-44.41765555366874,-45.163797148969024,-44.293014138937,-44.21999056311324,-43.765976598951966,-43.62150930147618,-42.71060191793367,-41.99957658210769,-42.574430661741644,-43.36417443305254,-42.61055198451504,-41.839001363143325,-41.041992851532996,-41.29158638091758,-42.11366388341412,-41.18969257874414,-41.048018880188465,-40.55730846943334,-40.16497218096629,-39.45109665533528,-40.191506397444755,-40.30019280407578,-40.88901195675135,-40.066525406204164,-39.908945681061596,-39.75143101532012,-39.66523773223162,-39.28579068090767,-39.496529329102486,-40.203432123642415,-40.01849342044443,-39.149873776361346,-39.442431749310344,-38.518054825253785,-39.2523800060153,-39.636473022866994,-39.663230512756854,-39.37358465231955,-39.25532991113141,-40.06978353159502,-40.37979677366093,-40.81416675494984,-40.757478286046535,-41.43513459386304,-42.03852774575353,-42.48851903248578,-42.7903793444857,-42.82285745302215,-43.06821035267785,-42.074550435412675,-42.40192409232259,-42.377901159226894,-41.707593116909266,-41.91891841683537,-42.27104548038915,-42.157744801137596,-41.51157202105969,-40.90277752140537,-41.3204061598517,-41.05193874053657,-41.85182456718758,-41.39169370615855,-40.5720602190122,-41.25323131028563,-40.444652032572776,-40.34680568892509,-39.72547985985875,-39.68892274238169,-39.37120953574777,-39.61502332938835,-39.04544168757275,-39.85694524785504,-40.460288661997765,-40.1306289806962,-39.942454987205565,-39.431116591673344,-39.75211487989873,-38.85340916598216,-39.6194529668428,-39.367851664777845,-38.86049849586561,-38.012425899039954,-37.78718934347853,-36.912143126595765,-37.361613927874714,-36.570278007071465,-36.056559910066426,-36.692335524596274,-36.82264133775607,-37.22927381936461,-36.99058052059263,-36.15325173875317,-35.478736880701035,-34.983433762565255,-34.95314938481897,-35.73496594186872,-34.84705261187628,-35.80182341998443,-35.84439428336918,-36.35346140526235,-37.094553754199296,-37.97331654001027,-38.86642560502514,-38.76665229629725,-39.619307555723935,-40.5898095453158,-40.60423862095922,-41.297313595190644,-40.30014895834029,-40.64115946087986,-41.59497506218031,-42.02558330539614,-41.43908071052283,-40.724545657169074,-40.3687041210942,-40.97744312696159,-41.897153235040605,-42.72454325854778,-43.42973028169945,-43.53724928991869,-44.10941998753697,-44.92295524664223,-44.3520905287005,-44.49003122234717,-45.04446540074423,-44.84631521627307,-44.865594163537025,-45.66463712928817,-45.727831908501685,-45.69856703095138,-46.017787092830986,-45.54725861316547,-45.127527297474444,-45.50764335459098,-46.40071378601715,-46.89636314054951,-47.31712347501889,-46.82818749267608,-47.213828010484576,-46.76576423458755,-46.053770078811795,-46.16689925407991,-46.94052480859682,-46.75804498838261,-45.787031556945294,-45.11500837095082,-44.362201932352036,-43.54028312303126,-42.928660817909986,-43.737064592540264,-44.716854913625866,-44.67466273903847,-44.840090475045145,-43.98404858028516,-43.66914256894961,-44.31489881174639,-44.82375658303499,-44.11669183336198,-44.374264740385115,-44.63849836355075,-44.067215231247246,-43.82016515498981,-44.6551671391353,-44.73080155905336,-44.228200875688344,-45.102126312442124,-44.32410632446408,-44.86403622664511,-45.684521643444896,-45.74934715637937,-45.63190272077918,-44.96849374193698,-44.10728512657806,-45.00163305783644,-45.12058986630291,-45.52211911045015,-45.98240403458476,-46.45013260934502,-47.133566533215344,-46.553529544733465,-46.149384030140936,-46.61086402321234,-46.654527409002185,-46.65761102037504,-47.345727199688554,-47.78426663344726,-47.39992338325828,-48.04949686396867,-47.82451878255233,-47.92416301975027,-46.929833883885294,-46.65176638495177,-47.30696468288079,-47.66777831548825,-48.28648375580087,-49.0734283355996,-48.55172425415367,-48.542281046975404,-48.90730544319376,-49.105902469716966,-48.215931511018425,-47.9218668974936,-47.87738059600815,-48.545466049108654,-49.17104548960924,-49.04934974294156,-48.54510302748531,-47.818167036399245,-48.763638217933476,-48.80661051860079,-48.54422345664352,-49.202899602707475,-48.93271640036255,-48.005251246038824,-47.50219420110807,-46.72333110496402,-46.16086355643347,-45.98287989385426,-45.130807471461594,-44.49534243158996,-43.77616328140721,-43.30586554761976,-42.42596305999905,-41.77671532146633,-42.35617648763582,-41.905926486477256,-41.563790736254305,-40.65487663866952,-40.54646233515814,-39.964182012714446,-40.76958323875442,-40.45898360339925,-40.98439042130485,-41.27229288639501,-41.72910438571125,-42.50331551535055,-43.11541837407276,-43.22564185084775,-43.17737002996728,-43.08179734880105,-43.69129958655685,-42.82521345699206,-43.393900549039245,-42.64813430607319,-42.767015581484884,-42.764472922775894,-43.66988479392603,-42.74864797340706,-41.82464891253039,-41.61425950843841,-42.02368225250393,-41.697129488922656,-41.65783898439258,-41.22333108121529,-40.46137178642675,-40.76524036517367,-40.58727773744613,-39.63480034144595,-38.846426276955754,-38.215780653990805,-38.996734901331365,-39.90854355180636,-40.650004242081195,-39.986570108216256,-40.159901794977486,-41.00729180127382,-41.8074022247456,-42.41860777651891,-42.153681964147836,-42.79100322537124,-42.50644154381007,-42.57772302534431,-42.215788575820625,-42.2552108312957,-42.979716289788485,-43.2133818003349,-43.988073856104165,-43.02267970237881,-42.80646879551932,-42.270376696716994,-41.90713053802028,-42.14467071602121,-41.81153911538422,-41.54622200503945,-41.222299921792,-40.6579627036117,-39.73100872011855,-38.802551709115505,-39.5014337846078,-39.489987346343696,-39.29251570207998,-40.018170699477196,-39.86124181188643,-40.815664696041495,-41.80865293182433,-41.82388082193211,-41.23332297895104,-41.89865666721016,-42.36778231477365,-42.41836834838614,-42.089266722556204,-42.58269705809653,-42.946022923570126,-42.69111687736586,-42.589096780866385,-43.40140386670828,-43.02753984136507,-44.01085488824174,-44.820864473003894,-44.83827840350568,-44.198497438337654,-43.212057115044445,-43.46653016237542,-44.44031575927511,-45.23795083910227,-44.84127618232742,-44.63802577974275,-45.510067460592836,-45.48955114558339,-46.20199990365654,-47.064146138727665,-47.17907960200682,-47.89457568433136,-48.16623602621257,-47.46778585156426,-48.29123819572851,-49.001356759574264,-48.593590951059014,-48.74791426490992,-49.348844869062304,-48.548547588754445,-49.0729281520471,-49.321718553081155,-50.14650752209127,-49.88013554364443,-49.3105603819713,-48.54934946494177,-49.43931002728641,-49.02506035519764,-49.59806444635615,-48.858694951981306,-49.32585739251226,-49.47369986446574,-48.76972385216504,-48.22383796982467,-49.11881438316777,-49.3420183211565,-49.47341815568507,-48.708101416472346,-47.82738283229992,-47.19912372203544,-47.47662636870518,-47.77806749148294,-47.75948329363018,-47.3775544539094,-46.911980163306,-47.30827129120007,-47.77543115057051,-47.0361970863305,-47.149386698845774,-46.194235124159604,-47.164216944016516,-47.483458631206304,-47.7335636629723,-47.74255902180448,-47.72665063664317,-48.72588485851884,-48.525597490835935,-49.51280808262527,-49.414304642006755,-50.131956099998206,-49.54447364574298,-48.95875648362562,-49.26095787761733,-49.92399467807263,-49.191922831349075,-49.20258748717606,-49.6681048036553,-50.17944461014122,-50.27307541016489,-50.33135075727478,-49.58706397563219,-48.74986327113584,-48.04939829651266,-47.200458958745,-47.48729548975825,-46.92993894824758,-46.83975254744291,-47.34491589060053,-47.38825286179781,-48.181557573378086,-48.97538955602795,-48.167719906196,-49.117331134621054,-49.54284343589097,-50.366210892796516,-51.30094578443095,-51.94832781748846,-52.572956460062414,-52.188745013438165,-52.79020124208182,-52.82821434363723,-52.04396793292835,-51.557059687096626,-50.83979228697717,-51.702301857061684,-50.897102060727775,-51.40239891130477,-51.62836520187557,-52.19500857684761,-51.7677598670125,-52.37646917439997,-53.36068846704438,-54.113176316954195,-53.145189511589706,-53.040109273511916,-53.23250325769186,-52.71538782538846,-52.51896717818454,-52.72999968100339,-52.80524411704391,-52.029273555614054,-51.28349722875282,-51.644167765975,-52.008808297570795,-51.9517084332183,-52.80661373725161,-52.237814027350396,-53.11550281196833,-52.89201066410169,-52.48223461443558,-52.098392725456506,-51.82984667271376,-52.632685780059546,-51.96782799297944,-52.21212997660041,-51.67357304971665,-50.87217284087092,-50.038300978019834,-49.681396305561066,-50.661536160856485,-50.51249242760241,-51.456067853141576,-51.379725561477244,-50.685810503549874,-51.589015319012105,-52.43235705466941,-52.03257527248934,-52.076599191874266,-52.02151404460892,-51.75641492428258,-51.742765119764954,-51.76558638783172,-51.635265396907926,-51.67678378103301,-52.45185201661661,-51.87616808898747,-52.06761586479843,-52.15500252787024,-52.5883360253647,-52.49052546406165,-52.06097587523982,-52.36981469485909,-53.16549684619531,-52.692619524430484,-51.97318852040917,-51.441408928483725,-51.878804800100625,-52.7244900688529,-52.915869139134884,-52.67824228480458,-52.89205293916166,-53.73556392407045,-53.96152264159173,-53.91610155114904,-54.25013459287584,-54.741968006361276,-54.996468380093575,-54.14489076565951,-53.463232580106705,-52.99879794521257,-52.61246828362346,-52.471096544060856,-53.182643740903586,-52.7631565425545,-53.00935998093337,-52.59738772548735,-51.75980961183086,-52.35026561934501,-52.230041057337075,-51.78106192033738,-52.41130315558985,-51.90857065701857,-50.97814174415544,-50.92235091747716,-51.2627042918466,-52.15630465652794,-51.55235295370221,-51.50647601345554,-51.97460557240993,-52.05080657126382,-52.393260661978275,-52.873772509396076,-53.2498044106178,-52.58242262341082,-52.621619349345565,-53.18021146859974,-53.42077618697658,-53.1192740960978,-52.743423679843545,-52.916118344292045,-52.47454819595441,-53.085614829324186,-52.8868311047554,-53.42185344360769,-54.023242325522006,-54.43255460821092,-54.30840880610049,-54.557302728295326,-53.97343351505697,-53.287218630779535,-53.56338872248307,-53.95238927192986,-53.45842275535688,-54.080260953865945,-55.02073281351477,-55.96164274448529,-56.208553426433355,-55.50020136265084,-54.6495068767108,-55.27747772820294,-55.49607889726758,-55.82065478153527,-55.27113092178479,-55.73473359225318,-56.25457503227517,-57.18135633226484,-57.77446766523644,-57.365300924517214,-57.77207462443039,-58.538717842660844,-58.40775456465781,-58.79239799361676,-59.4377373829484,-60.27985649369657,-60.83061901759356,-60.054603189229965,-59.98110190033913,-60.13516133883968,-60.10296561336145,-59.21370504563674,-59.309943478088826,-59.20295454794541,-59.18894868390635,-58.568701192736626,-58.66606102511287,-58.73030511755496,-58.445995956193656,-58.61327027529478,-59.0478483219631,-59.356178232468665,-60.02833557035774,-59.422600862104446,-59.238764711190015,-60.19061504025012,-59.61472951574251,-59.19070198806003,-59.25851672608405,-59.421211110427976,-59.04693991364911,-58.18148548388854,-57.38736243220046,-57.23678577551618,-58.049739830195904,-58.16570548620075,-58.978740122169256,-58.56670811306685,-58.842029768042266,-58.57404304854572,-58.60364858387038,-57.66097855521366,-56.702172636054456,-56.39335569925606,-56.40111144864932,-57.03001026716083,-56.58023460395634,-57.48740733042359,-57.152858088258654,-56.718099197838455,-56.19085813127458,-56.870610469952226,-57.27913387911394,-56.327957526780665,-55.97514667082578,-55.27575871348381,-55.28569233696908,-54.93336757738143,-53.96403218759224,-53.19869810389355,-52.332827356643975,-51.80464892229065,-52.58213045448065,-51.8502066093497,-51.2488508624956,-50.81135882856324,-49.84929574280977,-50.29203592892736,-50.7843424375169,-51.07205250300467,-51.968320411629975,-52.25772013049573,-53.04508681502193,-53.04882930079475,-53.406919160392135,-53.994755044579506,-53.67353228898719,-53.49369939882308,-54.310630328487605,-55.00328327808529,-55.519830646924675,-55.62125727906823,-56.211282895412296,-55.905718927737325,-56.44245753670111,-56.86985318176448,-57.14915789850056,-58.09559063240886,-58.412128418684006,-58.90131863579154,-59.168444690760225,-58.743222929537296,-59.47279583942145,-59.97263686358929,-59.45591288851574,-59.97303333459422,-59.2685833144933,-60.05723851080984,-60.533471055328846,-61.347036723047495,-60.902011337690055,-61.18840342434123,-60.69805017206818,-61.069215254392475,-61.03786191297695,-60.6785097704269,-60.06316418154165,-59.44336114823818,-59.44054338382557,-59.88465873664245,-59.865877884905785,-59.512152147013694,-60.39457591949031,-59.72485566884279,-58.821534365881234,-59.26081972569227,-58.56421685218811,-58.345286059658974,-58.28094219742343,-58.523092336952686,-58.56661210907623,-57.94234741246328,-57.84368718229234,-57.7610390256159,-57.49585030321032,-57.20475493418053,-57.14559090696275,-57.3613589159213,-57.382514734752476,-56.478102368768305,-57.43206322006881,-58.328929184004664,-57.35718069598079,-57.35928772203624,-58.2266098735854,-57.556120419409126,-58.52623095083982,-57.828747959807515,-58.70230764569715,-58.91260050050914,-59.777491643093526,-60.25821051141247,-60.38479896867648,-61.316352158784866,-61.58617279166356,-61.28371431492269,-61.76606169389561,-61.85270997788757,-62.23517648363486,-62.6294344519265,-62.84230077173561,-63.50100558064878,-63.910913571715355,-64.63147968892008,-65.37972633074969,-66.21419285191223,-66.1978691094555,-66.2008958272636,-65.33271713275462,-64.95918127009645,-65.24839064711705,-65.92026285268366,-66.79524229094386,-67.20444532949477,-66.65501283481717,-66.15403398917988,-65.48987664328888,-64.651041734498,-64.99107203632593,-64.90658210217953,-64.92327052494511,-65.58864568779245,-65.65709316544235,-65.85883115883917,-65.54666094528511,-66.0119805955328,-65.55044875852764,-65.47300983639434,-65.04729657666758,-65.26208406407386,-65.2187096811831,-64.29464005632326,-64.9918931145221,-64.69643215229735,-63.870954112149775,-64.03352071717381,-63.96071483939886,-64.02953469567001,-63.27747540548444,-64.02258527418599,-63.62879632646218,-64.28828007588163,-64.01054725144058,-64.06091243540868,-64.15932620549574,-63.35007594805211,-62.50286795850843,-62.704807876609266,-61.91997749591246,-61.12825736682862,-60.631289216689765,-60.77194197149947,-60.63201353047043,-60.26595980860293,-61.19735446246341,-60.71485687792301,-60.11739041283727,-60.012669848743826,-59.99798804521561,-59.694516953546554,-59.20265338849276,-59.70076568285003,-59.260066433344036,-59.689902716781944,-60.6038556615822,-60.569306834600866,-60.92124154465273,-61.86825951002538,-62.09597953828052,-62.59776085894555,-62.099823760800064,-62.70998855121434,-63.58438183693215,-63.46080349665135,-63.86588918231428,-64.58432532567531,-64.80203601764515,-65.69359674211591,-65.51144141284749,-65.57182528125122,-65.27891302015632,-64.51594050135463,-64.30112715251744,-64.14902738388628,-64.37482939241454,-63.848285109736025,-63.90861064940691,-63.768002935219556,-63.45249003637582,-62.95007077464834,-62.14800013508648,-61.389271579217166,-60.98882648535073,-60.69831500481814,-61.04888586513698,-61.286598704755306,-61.441688276827335,-60.661865438800305,-61.598729602992535,-62.394774802494794,-62.89445865992457,-62.8458430939354,-63.73806066112593,-63.43715010676533,-62.91549615515396,-62.87962408782914,-62.386232308112085,-61.46743285097182,-61.80939105246216,-62.47170805884525,-61.662165539804846,-62.078058190178126,-62.50711938459426,-62.374184287153184,-62.51123195234686,-61.740905785467476,-62.73780494276434,-62.69582150829956,-63.57648634724319,-63.30672316113487,-63.49032807350159,-63.12588334782049,-63.83784481044859,-64.53435050928965,-65.31548707559705,-66.09358497848734,-66.96877512382343,-66.2926832633093,-65.6032072128728,-65.87004103930667,-65.92547221714631,-66.13992790924385,-67.11966052558273,-67.83329318789765,-67.51805725879967,-66.86602851143107,-66.187345569022,-65.99582299636677,-66.3093354110606,-65.33666284289211,-66.00026259198785,-66.96672166697681,-67.78219673736021,-67.72908842144534,-67.45956466672942,-67.91557589313015,-67.41978069441393,-66.90883788093925,-66.76978182280436,-67.19734032079577,-66.75378299504519,-66.06922889174893,-66.66816759901121,-67.14991922583431,-67.03097076015547,-66.98806751333177,-66.67567524500191,-66.89764325832948,-66.27787551330402,-65.79733069008216,-66.45584126096219,-65.53600777778774,-65.28918508300558,-64.45465770130977,-63.5652756113559,-63.29094947176054,-62.33466696180403,-62.24491475848481,-61.63113391119987,-62.31379767227918,-61.89657225739211,-61.468764149118215,-61.38783737132326,-61.31067389668897,-62.23583627352491,-62.525019032415,-63.146461055614054,-64.09068850474432,-64.48591527156532,-64.58082520030439,-64.60302191507071,-64.68412780249491,-65.23880270496011,-64.86607808293775,-65.74337448459119,-65.20801685983315,-65.77462269971147,-66.6466818433255,-67.49338214937598,-66.98784922529012,-66.79175828257576,-66.48909809906036,-66.40280878124759,-66.61649647029117,-65.76178222335875,-66.0406178496778,-65.14354460546747,-65.27054868964478,-64.50113359559327,-64.22404774045572,-64.27229210361838,-63.73434148961678,-64.40933161927387,-63.85115427989513,-63.79786136606708,-63.30761165218428,-63.28940420830622,-63.27399537572637,-62.534662689082325,-63.25197757547721,-63.085289356764406,-63.64682630309835,-63.47044791094959,-64.1762016476132,-63.80157596291974,-64.00462844502181,-64.65141695644706,-64.0709739504382,-63.43437684746459,-64.09937386307865,-63.950740200001746,-64.42041067406535,-65.35859855078161,-65.72719749761745,-65.0654564849101,-64.52215051976964,-64.16783743305132,-63.964682878460735,-63.91424135537818,-63.42445757286623,-63.97649025078863,-64.27515855664387,-63.981436379253864,-64.78658622689545,-64.9922063886188,-64.72084913402796,-64.5378034687601,-63.67591337393969,-62.99185159150511,-63.811776348389685,-64.72802648274228,-64.55307174380869,-64.34348693443462,-64.94716620398685,-64.02232136484236,-63.809094013180584,-63.35149340238422,-62.552013352978975,-62.7652082326822,-63.22407095786184,-63.75739585515112,-63.63142906408757,-64.43247524136677,-64.089003670495,-64.32481726491824,-64.72195078060031,-64.07025947328657,-63.16451387247071,-63.51655916264281,-62.91119203623384,-63.10346129257232,-63.73626194708049,-63.36017859913409,-63.86020815325901,-63.81173696136102,-64.11256940104067,-64.32970670517534,-63.50511404220015,-64.2505231932737,-64.3909934037365,-64.44755688216537,-64.07540205167606,-64.10087717371061,-64.7656708653085,-64.43631911557168,-65.12474220711738,-65.6623590439558,-66.04053547373042,-65.20277735963464,-65.43895125668496,-64.56773838447407,-64.5852804123424,-64.37749059684575,-64.64617793262005,-64.0292121344246,-63.04213093407452,-62.81555032497272,-62.16749623790383,-62.58431973401457,-62.5163114881143,-63.31279362505302,-62.743210882879794,-63.56240557692945,-63.10435166954994,-63.23197532258928,-62.80331473518163,-63.064435644540936,-63.240483538247645,-63.025527578312904,-63.863222571555525,-63.59469651384279,-63.45861498778686,-64.08764773933217,-64.21670625312254,-64.91217809170485,-64.0671861153096,-63.62546154111624,-62.95618233690038,-63.42528235167265,-63.20660735992715,-62.74720613704994,-62.4086417122744,-61.921395398676395,-62.73551261797547,-63.34326536208391,-63.353876408655196,-62.7780330106616,-62.95582838309929,-63.334383878391236,-62.813990057911724,-61.99205752694979,-61.68742457590997,-62.244241753127426,-61.49644470680505,-62.02085517439991,-62.4376682350412,-61.79180631134659,-62.259101279545575,-62.15691157337278,-61.20478623127565,-61.48236979870126,-62.14766228478402,-62.17186012864113,-63.07961486373097,-62.727143675554544,-63.45203213207424,-62.48670226242393,-63.41475660772994,-63.15728053404018,-62.872295608278364,-62.91264983965084,-62.925140897743404,-62.998864251188934,-63.543690900318325,-63.79674984002486,-62.854420916642994,-62.5348101304844,-61.55573385767639,-61.39046257408336,-61.10928938770667,-61.62762072170153,-62.601042340975255,-62.346634675748646,-61.647812663111836,-61.631660723127425,-61.499485661275685,-61.39598622266203,-60.790582477115095,-61.64751059981063,-61.055222935043275,-60.17672823835164,-60.012024079449475,-59.272103167138994,-58.82968158926815,-59.790231889579445,-59.580471300985664,-60.252147760707885,-60.9850015072152,-61.477704083081335,-61.777475696988404,-61.43166556349024,-62.38676297850907,-62.007100767921656,-61.81353286933154,-62.271772152744234,-62.365537031088024,-61.41473356960341,-61.21861902112141,-61.245649873279035,-61.360172546468675,-60.67964968038723,-61.35560615826398,-60.83598499884829,-61.210900768171996,-61.9496530899778,-62.701442992314696,-61.775687612593174,-61.555874046869576,-62.41903214203194,-61.704017468262464,-61.41808842308819,-62.264493241440505,-61.89948388468474,-61.23687744420022,-60.60542271193117,-60.25298225041479,-60.16171506559476,-59.755126872099936,-58.83236976386979,-58.800307435914874,-58.36780029768124,-57.97301679197699,-58.72620392497629,-58.82320721447468,-58.81235198350623,-59.53715840866789,-59.317619220819324,-58.37620530510321,-57.88522546738386,-58.14638917893171,-57.362922930158675,-57.42787258466706,-57.03461109707132,-56.04125805944204,-56.560977443587035,-56.52860004687682,-56.96064901072532,-57.7822145097889,-56.78737479215488,-56.84155131364241,-57.60020993417129,-57.96982182469219,-58.920468396507204,-58.87942687794566,-59.67100484436378,-58.96612733229995,-59.94239444192499,-60.327275942545384,-60.30798384780064,-59.72933844057843,-60.53219248680398,-60.22815052466467,-60.425628813914955,-60.19270283356309,-61.040324680972844,-60.3045705598779,-60.77232020627707,-60.43999369535595,-60.50840708333999,-59.90376968262717,-60.22978936554864,-59.32004972733557,-59.95203194906935,-60.566030874382704,-60.91173156071454,-61.25449267961085,-60.90573948388919,-61.27523420052603,-61.14273336622864,-62.12676054891199,-61.49741344060749,-60.837884130422026,-59.900648137554526,-59.33117379527539,-60.14192880457267,-59.69793810043484,-58.71909899357706,-58.427447016816586,-57.96281532431021,-58.54444019775838,-58.9320184472017,-59.312720065936446,-59.53345393855125,-58.69662406295538,-59.6765227522701,-59.91098310938105,-60.4084389321506,-60.19602963607758,-61.0504215946421,-60.15574743133038,-60.68513242015615,-60.35655219852924,-60.239018058404326,-60.5477897725068,-60.24084635544568,-59.59511511726305,-59.4360466436483,-59.4335895688273,-60.413821200840175,-60.443327086512,-61.103869097307324,-61.362429186701775,-61.320845963899046,-61.94023020239547,-62.808493381366134,-63.62223473517224,-63.1532287732698,-63.7865966395475,-64.43738954281434,-64.91789920767769,-64.2537353374064,-64.23447383195162,-65.14720414206386,-64.21934975963086,-63.77733572013676,-64.52687422093004,-63.593193490058184,-63.20932995947078,-63.25173872476444,-62.83319925656542,-63.80143795069307,-63.334208715707064,-62.89641644991934,-62.63434189138934,-62.58743580011651,-63.379400624427944,-63.01119477907196,-63.3363877418451,-63.19555631792173,-62.70390131091699,-63.00399959040806,-63.0508540016599,-62.280226725619286,-62.5725153516978,-62.01047841832042,-61.31468673655763,-60.899381113704294,-60.88886069320142,-60.28231149725616,-59.99598747957498,-59.49003922333941,-59.50966064538807,-59.54296722775325,-58.59751243283972,-59.31122934399173,-59.4206684040837,-60.05255227955058,-59.608640470542014,-59.283924393355846,-58.44261869462207,-58.25941776763648,-58.2291370886378,-57.44247197173536,-57.435112102888525,-58.384957880713046,-58.67890049144626,-59.23698837868869,-60.07725404528901,-60.63549106847495,-59.98034144518897,-59.09326572017744,-58.248042369261384,-57.3689687801525,-57.90574002219364,-58.62403546599671,-58.428799205459654,-58.76339352270588,-58.72994661843404,-58.74973256420344,-57.82634822418913,-56.89633133355528,-56.159314203076065,-55.688596074003726,-56.4766247170046,-56.23730517877266,-56.146770203951746,-55.77692874521017,-55.45684603834525,-55.18476785952225,-55.845173456240445,-54.87336055468768,-54.24384735664353,-53.5671901172027,-53.88273270847276,-54.18790776794776,-53.86155083170161,-54.39398341719061,-55.360038271639496,-55.636587862856686,-55.833330306690186,-55.064292000606656,-55.262925325427204,-55.55634670611471,-56.49930435512215,-56.86877849791199,-56.91140593029559,-56.97233316022903,-57.920911697205156,-58.490681611932814,-58.10584092885256,-58.33570585725829,-59.238696083426476,-58.440643336158246,-59.032754361629486,-59.76163920434192,-59.92809771141037,-59.04060263419524,-59.653756921645254,-60.65019063139334,-60.8358261231333,-60.87949553551152,-60.82148738624528,-61.800602132920176,-61.94182080589235,-61.21659597940743,-61.390149764716625,-60.42719085048884,-59.93227913090959,-60.16764107905328,-61.01066879509017,-60.90171062620357,-59.959249060600996,-60.434066977351904,-61.059757142327726,-60.06797287752852,-60.36889697331935,-61.08164542680606,-61.91331516485661,-61.32174377515912,-60.38958849059418,-60.110640607308596,-60.87673803884536,-61.39073284436017,-61.952427338343114,-61.35339449997991,-60.3696610648185,-60.625383054837584,-59.71724223298952,-58.93464077496901,-58.953459673095495,-59.649612225126475,-60.10986932879314,-61.08198203751817,-60.61920583900064,-60.01592428935692,-59.060962663497776,-58.721404757816344,-57.99163905950263,-57.42860530735925,-58.20576840825379,-57.71183487214148,-57.810576578602195,-58.393672592006624,-58.282101520802826,-58.15358973480761,-58.48109608609229,-58.29965829150751,-57.478420154657215,-57.13641399657354,-57.22899414924905,-56.26231262460351,-56.53895479021594,-57.19474700605497,-56.998765954747796,-56.4084224444814,-57.20188617380336,-57.520203532185405,-56.922061207704246,-57.26074275095016,-57.988696644082665,-56.98989585461095,-57.059429441113025,-57.060398070607334,-56.21670626336709,-55.666659673675895,-56.28785681910813,-55.61417942866683,-54.97681082272902,-54.26324210502207,-53.548578917980194,-53.783102148678154,-54.775203458964825,-54.95246980339289,-54.942518949043006,-54.685106040909886,-54.20475164614618,-54.387790500652045,-54.04317861236632,-54.544538028072566,-53.72674409300089,-53.41681757662445,-54.25242163846269,-53.33249649731442,-53.78630871837959,-53.274828020017594,-52.91345075098798,-53.476021881215274,-52.71499903360382,-51.882968379650265,-51.00267237238586,-50.11476717935875,-50.47585669485852,-50.25348336156458,-50.70123950764537,-51.22314776200801,-52.098473687656224,-52.09020062582567,-51.32383977435529,-51.286648887209594,-51.56010663183406,-52.52678851829842,-52.53079128311947,-52.209127406124026,-51.79333568457514,-51.923911296762526,-52.723153012339026,-52.21449034800753,-52.69801132194698,-53.230674968101084,-52.71582834701985,-52.60363846598193,-51.97853827429935,-52.24305940140039,-51.87058966513723,-52.85934761306271,-52.923646739218384,-52.752184877637774,-51.82359875040129,-51.90049355244264,-52.26672088960186,-51.917965528555214,-52.62556382175535,-52.20540448278189,-52.01784839993343,-52.69551920797676,-53.20268052211031,-52.984541717451066,-52.81588494498283,-53.68013857724145,-54.54484280804172,-53.79063336690888,-53.01069611962885,-53.153132929001,-52.49541038228199,-52.51025297585875,-52.92941893870011,-52.720887274481356,-51.898069572634995,-51.0085991807282,-50.10665509663522,-50.947705801110715,-51.425878514535725,-52.14380753459409,-51.24381971266121,-51.01790234725922,-51.87747833644971,-51.54916809918359,-51.403766186442226,-50.851525811012834,-50.10104026691988,-50.649785679299384,-51.41284595569596,-50.88733072113246,-50.36356457090005,-50.580838109366596,-51.560041598044336,-51.637276696041226,-51.772364682517946,-50.9301244886592,-51.62052470492199,-50.842697909567505,-50.88010335341096,-51.71088463207707,-51.65365751180798,-52.56714123766869,-53.04603230487555,-53.8770436453633,-54.861510346177965,-54.077170034870505,-54.09050224395469,-54.06794448476285,-54.748576797544956,-55.06967982277274,-55.81438948819414,-55.676259654574096,-56.4864050373435,-56.46372963488102,-57.11956877168268,-57.406293235719204,-57.020623962860554,-56.90654714079574,-56.62919033691287,-56.4275151505135,-56.61004755832255,-56.818171872291714,-56.52988050598651,-55.75885410513729,-55.29875729698688,-55.52541611623019,-56.08107163384557,-56.81609824066982,-56.793118454981595,-55.8905869605951,-56.17207536846399,-56.791384764481336,-56.98880476737395,-57.680227894335985,-58.25636876327917,-58.22573514608666,-57.672163576819,-57.38359833415598,-57.71732168877497,-57.54530271189287,-58.46252718009055,-59.30481734313071,-59.6495062741451,-59.30931395571679,-59.024779999163,-59.44347581639886,-59.49266344681382,-58.865634287241846,-59.83200304862112,-60.2345805298537,-60.88496288098395,-61.70936123561114,-60.816085720434785,-60.438544866163284,-60.17131099989638,-61.08742363285273,-61.87835107278079,-61.24613682273775,-60.80308487126604,-59.969079883769155,-60.77423604018986,-61.090869897510856,-62.06254207575694,-61.25612474698573,-60.95595417218283,-61.74187500914559,-62.48173602716997,-62.029784285929054,-61.384400070644915,-61.67104437854141,-62.165425546467304,-62.60533540509641,-61.974962956272066,-62.694161056540906,-63.32694481872022,-62.488474467769265,-61.71769976755604,-62.69401069171727,-63.17705887882039,-63.78681975277141,-62.95031751180068,-63.281887613236904,-62.46643946738914,-62.3263347549364,-61.93158190743998,-62.127579796593636,-62.4851160957478,-63.324043683707714,-63.654315831139684,-63.82827640790492,-63.82787730824202,-63.93485405109823,-63.66293518943712,-64.45036688540131,-64.77017705794424,-64.64003809401765,-65.41766195744276,-64.94799309410155,-65.51980236684904,-65.74342770595104,-66.50564082851633,-67.41486862674356,-67.45233863312751,-67.51025005383417,-67.5447583985515,-68.24922666884959,-68.84101842856035,-69.11855924269184,-68.75789870042354,-67.7840519794263,-68.74989203503355,-68.35449916031212,-67.81057039601728,-68.68655296089128,-68.07281398633495,-67.0976952011697,-66.17588130105287,-66.618312577717,-66.79592843586579,-66.3808062649332,-66.23610689071938,-66.38668407732621,-66.07966001424938,-65.77664889441803,-65.66184799838811,-66.5377544471994,-66.49802522594109,-66.87619773158804,-66.61812720960006,-66.8932479172945,-67.45478509226814,-67.11592197511345,-66.2094084341079,-65.31993514159694,-65.10061656311154,-65.62147541390732,-66.34647400630638,-66.55853039491922,-66.97263705264777,-67.4999940963462,-68.28054783307016,-67.57012519612908,-66.65650882711634,-67.05579566350207,-66.43686471320689,-65.878439753782,-65.40714121842757,-66.31128608435392,-66.10968783125281,-66.54106017481536,-66.06681581726298,-66.02376257861033,-66.74437107006088,-67.59711272781715,-67.22809616103768,-66.32306871656328,-66.31712195277214,-65.63965687621385,-65.52133537549525,-65.9333231872879,-65.29758012620732,-65.53514456981793,-64.72948171989992,-65.28240172751248,-64.42958515090868,-63.49244575900957,-64.34437213372439,-63.39668675977737,-64.04461223771796,-63.21436201361939,-62.27520503802225,-62.928074485156685,-62.870451206341386,-63.59750772546977,-63.11048570368439,-62.724739206489176,-61.83908519055694,-62.22957192547619,-62.92224887479097,-63.800881665199995,-64.06387026282027,-64.50730928499252,-63.97309735883027,-64.9040065142326,-64.36995997512713,-65.10816212603822,-65.23177175968885,-65.98464982956648,-65.79757038969547,-65.12923174491152,-66.04276662413031,-66.26452720351517,-65.40343851177022,-64.48206310067326,-65.03730913437903,-64.13352863211185,-64.22778522502631,-63.33099132031202,-62.429439538158476,-62.86489287018776,-63.010079415049404,-63.79127437993884,-64.16598307713866,-65.1068733050488,-64.92368749994785,-65.18172969343141,-65.7221204363741,-66.27715310826898,-65.88206569571048,-65.9815128124319,-65.58745723310858,-65.35460786568001,-65.00154254119843,-64.80789369391277,-65.37440147669986,-65.1152734584175,-65.97509413026273,-65.41621923772618,-65.61298281652853,-65.93539409339428,-66.40662473067641,-65.70071533555165,-66.18081684829667,-65.34769158810377,-65.02844195300713,-65.5426549105905,-65.67735344963148,-66.10413237474859,-65.54277785122395,-65.65133281052113,-66.44577263155952,-67.2460198472254,-67.26520797377452,-67.06754111265764,-67.61491615930572,-67.10899752983823,-66.43006086349487,-66.5658498541452,-66.15276557393372,-65.85590179869905,-65.86780900647864,-65.0366059653461,-65.6959651298821,-65.874108732678,-66.42325765406713,-66.81388614652678,-67.72652577841654,-68.0645724828355,-67.81646117148921,-67.04086281778291,-66.50859705079347,-65.93736054422334,-65.7819391801022,-65.52218139637262,-66.52124363509938,-67.47153140837327,-67.99121591681615,-68.82970251701772,-67.86924794921651,-67.96597318863496,-67.41088561993092,-67.616194144357,-68.01811912888661,-68.2111758175306,-68.9016516781412,-69.3699651141651,-68.90517331240699,-69.02441154699773,-69.79064070945606,-70.18733527511358,-70.03023802349344,-69.66728779859841,-70.57366448454559,-70.41385328304023,-70.4525726181455,-70.49424007255584,-70.91186886746436,-70.95094150211662,-70.88781708991155,-69.97097615664825,-70.5347635759972,-71.00075428374112,-70.55093301972374,-71.26695281686261,-71.67491388740018,-72.26479203626513,-71.46826241863891,-72.26669527823105,-72.54238028032705,-71.84517342364416,-71.88458270672709,-71.3275679233484,-71.30113732628524,-72.300859042909,-71.66230775881559,-71.58105044346303,-72.09791689692065,-72.76290958886966,-72.2092006453313,-73.00446607777849,-73.18425591103733,-72.57646739948541,-71.696891435422,-71.2637384920381,-71.0194215355441,-71.0211985190399,-71.26866303710267,-71.18303524842486,-71.87956086033955,-71.15494329435751,-71.85499807586893,-70.98868918651715,-70.51384782465175,-69.95986139122397,-69.04212415916845,-69.06312333792448,-68.4371159626171,-69.17947888048366,-69.46922422153875,-69.26915036095306,-70.1678526122123,-70.26148041663691,-70.790000713896,-70.20427738083526,-69.28577981423587,-69.3082960783504,-69.31440303241834,-69.11203250242397,-69.38968021096662,-68.50592059455812,-68.69234275212511,-68.82628376036882,-69.50037634419277,-69.2970923311077,-68.30308420397341,-68.12993880780414,-67.63374951062724,-67.72340189293027,-68.2083278070204,-68.82136980816722,-69.22255779011175,-68.60652848659083,-68.55605538235977,-67.59936597337946,-68.42474238481373,-69.2338834493421,-68.98079258715734,-68.56216200487688,-67.71100994525477,-66.89485836774111,-66.02057209098712,-65.54770171595737,-64.80412369174883,-65.56719529861584,-65.42390426341444,-65.35285464907065,-64.79351627035066,-65.28531098505482,-65.41752782976255,-64.60947779007256,-64.85934960749,-64.84190667839721,-65.71181282168254,-65.21445921203122,-65.83388760685921,-66.14220072841272,-65.65255914535373,-64.91016219276935,-65.84443029109389,-66.67817970830947,-66.15651918761432,-65.58339778799564,-66.48223199788481,-65.86978329485282,-65.18736708397046,-65.16972064133734,-65.52640498569235,-66.20696892309934,-66.8211227026768,-67.1884178193286,-66.79060156736523,-66.72055751783773,-66.33134416723624,-67.14580701477826,-66.82501216512173,-66.10379695426673,-67.05201625498012,-67.8356012813747,-67.77532083215192,-68.33909887634218,-68.97457621898502,-68.97194992518052,-68.78131836187094,-69.07129119243473,-69.76825100881979,-70.64954230096191,-70.11539719672874,-70.3139679278247,-70.49816657975316,-70.82639640104026,-69.92675832053646,-70.1123588909395,-70.26168817654252,-71.05339581239969,-70.0707173673436,-69.18293656781316,-69.0657391184941,-69.79093344323337,-70.46157916309312,-69.9631298542954,-70.26533856196329,-70.15694824652746,-69.19149398105219,-69.15419162018225,-68.66948716342449,-67.69857695698738,-66.79072692152113,-67.77241492411122,-67.21276600798592,-67.4007234191522,-68.29234484722838,-67.62713306350634,-67.81298848148435,-68.10269869770855,-67.3216563584283,-67.14155219634995,-66.34150358568877,-66.6445864890702,-66.46535141207278,-65.89652131311595,-66.56269437167794,-66.43915578071028,-65.71613411372527,-65.61776738287881,-65.70746314106509,-66.21131659159437,-67.02775339456275,-66.3572595147416,-65.64848838374019,-66.31914990860969,-67.11976700741798,-66.71922364039347,-67.4247588776052,-67.01529379142448,-66.32399331079796,-66.3003216017969,-66.22836315864697,-65.5983753153123,-65.4474478578195,-65.07639420544729,-64.08249185513705,-64.34471808047965,-63.97961971722543,-64.47066846862435,-64.75913283135742,-64.41704720072448,-65.18275078199804,-66.01649157889187,-66.05164327798411,-67.01600685855374,-67.44795847684145,-67.86058565787971,-67.27959542581812,-68.19918354414403,-67.70516716921702,-67.74231115402654,-67.10501817567274,-66.87142290454358,-67.3116739327088,-66.51308208471164,-67.22551695629954,-67.18878553248942,-67.32764303637668,-66.51997667178512,-67.32673954963684,-66.98066451353952,-67.59174847137183,-67.48128998838365,-67.3095847479999,-66.72528563346714,-66.00978094991297,-66.85309368837625,-67.00803845841438,-67.61192060215399,-67.66678175376728,-67.04271812271327,-67.6997616449371,-68.55346427857876,-68.18024529702961,-67.20038723014295,-68.19465990643948,-67.44810173101723,-68.31623095320538,-69.11650829948485,-69.38509717443958,-69.42101778741926,-69.09533928707242,-70.03801860800013,-69.46546295378357,-70.19566768221557,-70.6466190777719,-70.31094332085922,-70.5064078788273,-70.62675739638507,-70.45439085690305,-69.60739801591262,-69.4933448326774,-69.34486321499571,-69.78139994526282,-70.58300478430465,-70.49934982927516,-69.70942018320784,-69.60073378076777,-68.86717585241422,-68.38276909897104,-67.84197064908221,-67.0061715808697,-66.19026948139071,-66.22608056338504,-66.27720873290673,-66.36769742937759,-66.36420035827905,-67.07114241831005,-67.43850607937202,-67.58423918904737,-67.3451143023558,-68.15594972716644,-67.76180459279567,-67.65372333163396,-68.41643050312996,-67.47007403243333,-66.61022513313219,-66.62190437503159,-65.85652135219425,-66.07502926513553,-67.06608368176967,-66.87685182411224,-67.17585384007543,-67.3210037862882,-66.81192378187552,-66.02149408590049,-66.28680750029162,-66.20470516011119,-66.19686879543588,-65.883960661944,-66.19893168611452,-66.13364290166646,-66.4602547311224,-66.51908080046996,-66.2021162849851,-65.71982007753104,-65.05958717968315,-64.81896822620183,-64.23013355722651,-63.83455101540312,-64.38138070004061,-63.82593447715044,-64.5867023379542,-64.79567780299112,-65.03906363714486,-64.74544490361586,-63.96294502355158,-64.50585713936016,-64.64348740503192,-63.710929966997355,-64.69910943461582,-64.04369627218693,-63.195123160257936,-63.93778947927058,-64.70229072635993,-64.68671771325171,-64.04490917688236,-64.63124420586973,-63.69951638719067,-63.680547579657286,-62.75206159427762,-63.41164883738384,-63.3491050763987,-62.45149392168969,-62.8349698567763,-62.14343662559986,-61.81904674181715,-61.26335662789643,-60.35434995498508,-60.9332162309438,-61.85281628090888,-61.847476514521986,-61.769431084394455,-61.89412022335455,-62.50097917672247,-61.85900154616684,-61.80355145037174,-61.09920196514577,-60.16342555033043,-60.92423357395455,-61.13328715227544,-61.763081148732454,-61.93561369366944,-61.01522287726402,-61.98219357524067,-61.216886358801275,-60.82488690409809,-60.52948286104947,-61.522847386077046,-60.64455995010212,-60.61009241687134,-60.579940748400986,-60.95893443375826,-60.393159876577556,-61.06007446628064,-61.47439676243812,-60.892495354637504,-61.601459776982665,-62.41266362927854,-62.053531559184194,-61.37842153292149,-61.905377773568034,-61.69793492695317,-62.31653091078624,-62.18052200041711,-62.58689119294286,-63.067233994137496,-63.31815642397851,-62.46549065411091,-63.222278096247464,-63.91853251494467,-64.62818823382258,-64.96099466085434,-65.09064321732149,-64.84448531968519,-64.24180298671126,-63.495798002928495,-63.10005722939968,-62.92965111602098,-62.22918009525165,-61.616970411036164,-60.88158350856975,-59.889556219335645,-60.29978497559205,-60.971232431940734,-60.44677181728184,-61.014710954390466,-61.26343782432377,-61.98232758650556,-61.86096499534324,-62.45557190431282,-63.307354567572474,-63.68769099609926,-63.95762549433857,-64.84814218059182,-65.4323347415775,-65.77120256936178,-65.40182160260156,-64.82077130442485,-65.71344805927947,-65.9063544808887,-65.6311836661771,-64.90529941720888,-65.19515031622723,-65.69401855068281,-66.15594324003905,-66.85133382072672,-66.43022261746228,-66.84735756367445,-66.56408004555851,-65.7002951647155,-66.3297404400073,-67.31226799776778,-66.34162761038169,-65.56892977003008,-65.57175425812602,-66.04937601601705,-65.65979805542156,-65.76058152038604,-65.64082829514518,-66.39803975215182,-66.90281887026504,-66.68295645294711,-66.08464477304369,-65.11889666412026,-65.68892401177436,-66.33992114523426,-66.77783814119175,-67.65134864952415,-66.78351992368698,-65.8499200809747,-66.54519445309415,-66.80103183165193,-66.83783187810332,-67.17146192956716,-67.42588003817946,-66.71445434493944,-66.10792067833245,-66.14187801489606,-66.16370036546141,-67.01090819295496,-66.25670877983794,-66.66345413774252,-67.50347553286701,-67.46575927175581,-66.87577710999176,-66.87547485111281,-66.21238116687164,-66.06100752949715,-66.52318359073251,-66.62116303713992,-65.81293332809582,-65.21809266973287,-64.31446020724252,-63.65068287635222,-64.6309350952506,-65.2548117255792,-64.56952000362799,-64.02922671381384,-64.77056570025161,-65.20423327526078,-65.87634872132912,-65.47873331978917,-64.97322240099311,-64.86073891771957,-64.45654347212985,-64.206283534877,-64.34286732180044,-64.27187117002904,-64.67265715776011,-65.33863188372925,-64.65720181725919,-64.68509316165,-63.959416195284575,-64.80495688831434,-64.62307197228074,-65.08035344257951,-65.3878792654723,-66.04399527981877,-66.07507683662698,-66.07148502673954,-65.36439059022814,-65.54301408212632,-65.13168810028583,-64.71384843578562,-64.26942858658731,-65.20552582945675,-65.62801624229178,-66.11990891490132,-66.12291929731146,-65.8828080422245,-65.88258654857054,-65.10679513541982,-64.81408091634512,-65.6596311465837,-65.21160719450563,-66.0114430654794,-66.80264015868306,-66.49106057174504,-65.50377374095842,-64.58145650150254,-65.4993644952774,-64.9118729699403,-65.07755634002388,-65.49702678574249,-65.10420548543334,-64.34545900626108,-64.9407264534384,-65.04428859893233,-65.94841453572735,-66.74996740696952,-67.62286555953324,-67.8572788219899,-68.26545791141689,-67.63881632592529,-67.52532299235463,-67.07946381019428,-66.30159563664347,-66.01357770292088,-66.67193535948172,-67.17876143567264,-67.61610339861363,-67.05133598390967,-67.67064267164096,-67.83658031048253,-67.29596696328372,-68.19838231895119,-69.16193202743307,-69.67428124928847,-70.44321109261364,-71.13450548797846,-72.04829211626202,-72.92902416316792,-72.25444118818268,-72.34594166185707,-72.1358572114259,-71.8369101723656,-72.7977527086623,-72.6552747557871,-73.55512661486864,-72.87915315898135,-71.94586307462305,-71.36861168593168,-70.55827602790669,-70.32030457118526,-71.19447714230046,-71.14488188875839,-71.88398041808978,-72.1347613343969,-72.63660060148686,-72.94303013244644,-72.55399650521576,-73.37090389849618,-72.84241610113531,-72.61445193411782,-71.98277879599482,-71.92741282936186,-71.12023772019893,-71.71132314438,-72.70043450780213,-73.1738170394674,-73.14520876528695,-73.7507347734645,-74.30160175729543,-74.76548674702644,-73.99472010182217,-73.76579189999029,-74.72011119825765,-74.18726890115067,-73.88867153599858,-74.54098663898185,-74.95604330068454,-75.33178327325732,-74.56982682738453,-75.56657684687525,-75.4385745790787,-75.97168921725824,-75.0439818026498,-75.25295936968178,-75.08052011718974,-74.18398971715942,-74.05433562817052,-74.8259659265168,-75.16807454451919,-74.79617176251486,-75.46343273390085,-74.6910268063657,-75.65601656446233,-75.70989184873179,-75.40767058543861,-75.4681754685007,-75.45879973191768,-76.02036241069436,-75.22098516998813,-74.91856547771022,-75.60901840496808,-75.66667513689026,-75.28789733536541,-75.87891627661884,-75.50105574401096,-75.97242626547813,-75.64260197011754,-75.47240125248209,-75.6985678486526,-76.27346458053216,-76.68472332227975,-77.0014627580531,-77.29780683713034,-77.91954191960394,-78.76272952696308,-78.51637238636613,-78.15295255137607,-78.465452442877,-79.33149907458574,-79.50533854402602,-79.24585935845971,-79.70133563643321,-80.32487396430224,-80.07284928951412,-79.87305003590882,-80.86032067565247,-80.1689265081659,-79.53450121404603,-79.68557383492589,-80.48767072148621,-79.98375288117677,-79.0094995861873,-78.61355814198032,-78.65924557391554,-78.25728455558419,-77.80059390515089,-77.67883139336482,-76.8967543519102,-76.15282314177603,-75.83738330379128,-75.22740153502673,-76.1023480524309,-75.57404410652816,-74.85440348554403,-74.57365463953465,-74.50017847400159,-74.99075824348256,-75.05167745100334,-74.87872831057757,-74.07874025823548,-74.81700879847631,-75.77271798532456,-75.5851233722642,-76.18830396141857,-76.35496426932514,-76.52395685622469,-76.70409935200587,-77.20937831839547,-76.24547895370051,-76.53429434914142,-76.42324603395537,-75.92969657341018,-76.615954504814,-76.68638235609978,-77.09544566785917,-77.93998454418033,-77.08881901670247,-76.76870311936364,-76.92607493698597,-76.19690206646919,-77.19401936559007,-76.81002228846774,-77.13192107668146,-76.6300474088639,-76.6458433503285,-76.51261071488261,-77.22263503586873,-77.86387714650482,-78.15418470045552,-77.83363689295948,-78.59171036211774,-77.74905662285164,-77.80195315321907,-76.96125125186518,-75.96278649987653,-76.0173352737911,-75.23079250613227,-76.04856222076342,-76.58874840196222,-77.3883018582128,-76.51145163411275,-77.37654692633078,-77.24210637854412,-76.86747647961602,-76.75137970410287,-76.59236013656482,-77.53976734960452,-76.98110279068351,-76.89309544302523,-77.80370111670345,-77.78305592574179,-76.86409649439156,-76.32308234274387,-76.69704387104139,-77.09810541011393,-77.7674672845751,-77.66064980486408,-78.31058794399723,-78.6459312736988,-78.85745343193412,-78.59841635497287,-79.47308824723586,-80.16422490868717,-79.84484926005825,-80.37215304700658,-80.05913532385603,-79.40324057172984,-79.86239629611373,-79.55158397555351,-79.61947906808928,-80.06730007519946,-80.6703529683873,-81.0974260205403,-80.92536228802055,-80.42257147980854,-81.26121472381055,-82.1166537865065,-82.87084248755127,-83.16567860590294,-83.22146546421573,-82.97136752959341,-82.02286736713722,-81.98490898218006,-82.88923785462976,-82.57864187238738,-82.57968266541138,-81.97582733118907,-81.83655628189445,-81.78351068729535,-82.19555459963158,-81.64938587928191,-82.0526520065032,-81.93136400962248,-81.52578449714929,-82.00981276901439,-82.94660034263507,-83.7658520671539,-83.70731600606814,-84.33547234488651,-83.42217100318521,-83.70607753982767,-83.98728243261576,-83.10813178913668,-83.51635093661025,-83.29752342309803,-83.3894212380983,-82.90787415625528,-83.7570187211968,-84.15020567690954,-83.99574165511876,-84.76043751416728,-84.35044995136559,-83.89710108982399,-83.09371790848672,-83.31591818202287,-84.06074559967965,-84.20431412290782,-85.13138586096466,-84.96292623691261,-84.69491918990389,-84.78569142101333,-84.11893782904372,-83.91653532069176,-83.20265532657504,-83.06523939780891,-84.02418249379843,-84.15841006906703,-84.37556240847334,-84.80518555268645,-84.98306382028386,-85.19596396945417,-85.64369784994051,-86.25916828820482,-85.3934172000736,-86.14885290293023,-86.8547210143879,-87.47386873839423,-87.33221942000091,-87.62611204804853,-88.00104512786493,-87.74503514682874,-87.7672853898257,-86.88228160701692,-86.20823781006038,-86.75605138251558,-87.35914627974853,-88.11780641088262,-88.23079991713166,-89.17970509594306,-89.02702462067828,-88.30238228337839,-88.25445023458451,-88.69096407154575,-88.94730313122272,-89.06956976884976,-89.26684387214482,-89.04732412006706,-89.44947725813836,-88.59649943141267,-88.12161311367527,-87.33009180054069,-87.76909549394622,-87.30351386172697,-86.6993125192821,-86.80964832659811,-87.04269032552838,-87.36300320923328,-87.92567171901464,-87.90558017138392,-87.34546113293618,-87.35451530525461,-87.87774625467137,-87.89081224240363,-88.87208230048418,-88.87908809585497,-88.21001984598115,-87.73360983515158,-87.82302521914244,-87.39756866591051,-88.1437803641893,-88.60826219571754,-89.22630933020264,-89.29116208013147,-89.9341785828583,-90.37651227554306,-91.05594033934176,-90.73897568741813,-89.75386748788878,-89.5503343786113,-88.62518812855706,-88.99224355025217,-89.36422566743568,-89.04942280333489,-88.4364029597491,-88.5942286606878,-89.35706855822355,-89.0567273516208,-89.34306125761941,-88.80416543176398,-88.32212024414912,-88.16680465312675,-88.99122533435002,-88.28711590263993,-88.48649961594492,-88.93063542572781,-88.67668964527547,-88.73174898093566,-89.08056463347748,-89.77117522479966,-88.77426570374519,-89.60809604730457,-89.93255940219387,-89.9269334631972,-89.98423992656171,-90.75164446933195,-91.4889847477898,-90.91138497414067,-91.44510706141591,-91.90356982732192,-91.54720282135531,-90.99090743483976,-91.34240614669397,-91.92496084189042,-91.94835194572806,-91.65171086136252,-90.77002478018403,-90.95910137612373,-91.74991099303588,-92.1784075642936,-91.28454311471432,-91.9040677906014,-91.00284999515861,-91.35917460219935,-92.09484134754166,-92.33785977913067,-91.9841249785386,-92.76155158318579,-93.01222452893853,-92.82800296740606,-92.88806579448283,-93.16904487041757,-93.9102542377077,-94.90075104730204,-94.79592047119513,-93.81546716438606,-93.77702797111124,-92.9009814672172,-93.39811003161594,-93.002555526793,-92.59961998369545,-91.85946465656161,-92.74137517390773,-91.94896094454452,-92.81862789066508,-92.98766462737694,-92.6328045106493,-92.60529405577108,-92.6917059388943,-93.24931391747668,-93.93808879284188,-94.54112019343302,-93.74956525303423,-93.49192555295303,-93.2631104728207,-94.158167517744,-93.91023806948215,-94.51971711963415,-93.95323742320761,-93.98119824845344,-93.41967478720471,-92.75269736582413,-93.43902313429862,-92.99352011596784,-93.9268917418085,-93.63785542920232,-93.24106738250703,-92.64177576033399,-91.75259653991088,-92.44512203335762,-92.55988617800176,-93.02931067813188,-92.08702210243791,-93.0154646160081,-93.56990078603849,-93.92363060731441,-93.51172635285184,-93.67592284968123,-93.14473979873583,-92.34524132544175,-91.40391104621813,-91.64063218375668,-92.42232038639486,-92.15642368653789,-91.59124273946509,-90.81338192196563,-91.14843896450475,-90.33135450817645,-90.57215403113514,-91.35342091601342,-90.91278592962772,-91.28312154812738,-90.73392445221543,-91.40749769518152,-91.4253614214249,-90.47981280833483,-90.56873036222532,-90.88097185781226,-90.81027851579711,-90.56037884717807,-90.90781881147996,-91.43871617177501,-90.72537752520293,-90.33108755806461,-90.54376757936552,-90.40494928555563,-90.0795902251266,-89.38821612345055,-88.8923911228776,-89.26482310891151,-88.52476848382503,-89.11946827126667,-89.73979693371803,-90.41802205145359,-90.57075996464118,-91.46552557777613,-91.5283540529199,-91.63538344018161,-91.60221729800105,-91.79500193847343,-91.7390157575719,-90.74307100428268,-90.34722147136927,-90.12703434936702,-90.45249090204015,-91.2179872021079,-92.05005688779056,-91.97841985803097,-91.64043303905055,-91.62506037950516,-90.97340793767944,-90.16773927211761,-90.40319150639698,-91.36955162836239,-90.97917521651834,-89.98540419433266,-89.83069524727762,-89.93694384535775,-89.94757745275274,-90.94197538727894,-91.47285131271929,-91.14692417904735,-90.46511038113385,-90.29094929480925,-90.42079822160304,-90.82398720318452,-90.10392571054399,-89.36769172083586,-88.76214287057519,-89.0357660013251,-89.28769834944978,-89.42855972144753,-88.57214661082253,-89.57110994542018,-88.73312097135931,-89.13369594141841,-89.3440466793254,-88.60911725275218,-89.10231147287413,-89.0831437157467,-88.51634550653398,-89.04812787845731,-89.02191642066464,-89.27307596849278,-89.61175981583074,-89.14648218266666,-89.06389257032424,-88.22856771014631,-89.17437644209713,-89.67540277121589,-90.045467288699,-89.11530711408705,-88.9708524257876,-89.62821557372808,-89.22409027488902,-90.10944541404024,-89.47148548299447,-90.01831276435405,-90.3042400921695,-89.9759386619553,-90.40151381399482,-90.32186936354265,-90.749495098833,-91.01838548108935,-90.18273880053312,-89.6436472707428,-88.75471816584468,-88.17421975778416,-89.15367857227102,-89.82803923031315,-90.2845718273893,-90.05475169885904,-89.550493942108,-88.75379900773987,-87.95545145124197,-87.86231129895896,-86.87306420970708,-87.55261695291847,-86.99393944535404,-87.8714191261679,-87.51715603331104,-87.6825684402138,-87.92726579075679,-87.2308373823762,-86.8067457745783,-86.09758113184944,-86.37360107898712,-86.16278161620721,-87.1308187651448,-87.7003248934634,-86.77982270577922,-86.3785208328627,-86.79363701259717,-86.14205600973219,-86.39678370812908,-85.89348950004205,-85.1005731113255,-85.13186618452892,-85.85381977865472,-84.89781410433352,-84.1685803104192,-84.72273186547682,-85.28097195830196,-86.01511683594435,-85.11217484856024,-85.94558122288436,-86.1827352498658,-86.50918615283445,-86.2182456846349,-86.02279181405902,-86.0329493326135,-85.16666650213301,-85.95756847970188,-85.9164970065467,-85.21692936262116,-84.45649449387565,-84.20613100007176,-83.78243807982653,-83.19434397527948,-83.66543524991721,-83.17906739423051,-82.62565665878356,-81.702850734815,-81.39939801953733,-81.20317276148126,-81.42106177378446,-81.02500666165724,-81.46651831176132,-80.85581750795245,-81.33123231958598,-81.90771205816418,-82.14043832756579,-81.74940051697195,-82.74492231337354,-83.13568783504888,-83.73875905713066,-83.74609295697883,-82.83435893431306,-82.6631210478954,-83.11544343456626,-82.15045733004808,-82.12062125699595,-81.90575760044158,-81.50810445379466,-81.05338874226436,-80.98725516209379,-80.52317398320884,-81.29073747992516,-82.01356254285201,-82.40889476332814,-82.92454330064356,-83.05923896329477,-83.5907158171758,-84.0034598596394,-83.6796984556131,-82.96447617048398,-83.14967129006982,-83.7064819210209,-83.0556931393221,-83.99004142358899,-83.95982825057581,-84.56467120116577,-85.1651899474673,-85.01742205629125,-84.0225514061749,-83.50559804122895,-83.42068081023172,-84.37800174206495,-83.93910623015836,-84.04536331119016,-83.30186658818275,-84.11889328528196,-83.55081414664164,-82.84283159952611,-82.63682856783271,-82.43265334237367,-82.94470374612138,-82.0307725276798,-82.97299810498953,-82.3919941354543,-83.2867007823661,-83.10717648360878,-83.96461537759751,-84.92435279721394,-85.08715846948326,-86.05233760923147,-86.46496765082702,-86.83580937469378,-86.858672240749,-86.55667478498071,-86.63709474168718,-87.16345102246851,-87.14224537368864,-86.71618289127946,-86.14711752953008,-87.07051670504734,-87.85619025537744,-87.12683024816215,-87.20777709921822,-86.66459202906117,-87.58272412698716,-87.82283997954801,-87.94719295809045,-87.20388951059431,-87.65586893446743,-88.60369666526094,-89.1737689031288,-88.69403741136193,-88.57349325390533,-87.85352538246661,-88.13249239930883,-87.76832476211712,-88.19027096498758,-87.56641685031354,-87.18929955130443,-87.96106458781287,-88.78856612509117,-89.01405417174101,-89.61936986725777,-89.19399554887787,-89.9765861206688,-89.92248136969283,-89.9584090760909,-90.07599854283035,-89.77089964784682,-88.86120349681005,-88.96541511034593,-88.64327498711646,-87.78039576485753,-87.37603364139795,-87.11096673132852,-87.3003862760961,-87.67800925811753,-88.26051723351702,-87.43542524473742,-87.82750035775825,-88.2600552723743,-87.73962590331212,-88.18421171419322,-87.82916486309841,-87.81636722851545,-87.81373698450625,-88.40892743412405,-87.52830247255042,-88.290377529338,-87.39914175868034,-87.52466485602781,-87.52626596111804,-86.90661725075915,-87.7797900675796,-88.02769165486097,-87.15294811595231,-87.13178446562961,-87.28374715847895,-86.80599214183167,-86.19694132078439,-86.32963945530355,-86.83069279696792,-85.97383952792734,-85.77251324802637,-86.39336263714358,-86.53126230882481,-86.16009683953598,-86.91955054737628,-86.50173045694828,-87.48088844120502,-88.326778057497,-88.19440396828577,-88.19815865997225,-88.84852696629241,-88.6265109051019,-88.241410988383,-88.75138672767207,-88.00504651945084,-87.18616198468953,-87.90190139459446,-87.64290660759434,-88.58380156802014,-87.83477538498119,-88.32903583627194,-87.37744979560375,-87.61116350675002,-88.42869325121865,-89.13804932683706,-89.23278803937137,-89.51408991077915,-88.5918128923513,-87.67199740139768,-86.92380400700495,-87.45192556036636,-86.99253840977326,-87.74813047610223,-86.82094095554203,-86.85245441831648,-86.48599029984325,-86.69023559661582,-87.34344199160114,-88.27110551018268,-87.96785888634622,-88.08158866828308,-87.35785750672221,-88.00597772886977,-88.58366283308715,-88.93883827794343,-87.97891969885677,-88.31393065862358,-88.9985689483583,-88.92882543662563,-88.33310180576518,-89.01710961852223,-88.26583267282695,-88.4523166436702,-87.88927015522495,-87.00811476819217,-86.26686711004004,-86.73962840437889,-87.3915946339257,-87.14173162076622,-87.44318792410195,-86.75623256107792,-87.55298744514585,-87.63236290821806,-88.35678723780438,-87.47046092012897,-87.91781467432156,-86.97474068962038,-87.52721274690703,-86.72002280177549,-87.33402143744752,-87.60621124785393,-87.40887867519632,-87.91120629943907,-87.49823074787855,-88.42481457954273,-88.09675561217591,-88.92305302480236,-88.38439791370183,-88.47839722968638,-87.93354266230017,-88.23878964409232,-88.77621789555997,-88.75473308656365,-89.7479622871615,-89.83870214037597,-89.46325540961698,-89.71265896921977,-88.77423540968448,-88.19973005959764,-88.51721323514357,-88.89582160301507,-88.82516084657982,-89.26352724479511,-89.22096458589658,-89.39805312873796,-89.91221057763323,-90.67511421022937,-90.17985518556088,-91.12455957056955,-91.71143497014418,-92.61970317410305,-93.11901604244485,-92.13040477130562,-91.98427448933944,-92.2809383822605,-93.07617463869974,-92.85107497591525,-91.87767410604283,-92.6683688913472,-91.763743896503,-92.12300539761782,-91.83816332183778,-91.41491489484906,-91.90366303408518,-91.62570245703682,-91.68742042500526,-90.83955579204485,-91.5620754151605,-90.70683991350234,-90.83287322428077,-90.36347048124298,-90.35164521308616,-90.23947532195598,-89.43942864378914,-89.76660560443997,-90.53714406304061,-91.5045470087789,-91.03135249996558,-90.23828776739538,-90.06116053881124,-89.61407594382763,-90.56447208067402,-90.7967912456952,-90.93609716417268,-90.08260806417093,-89.81797588290647,-90.10547913378105,-90.82065598573536,-89.84459209768102,-89.7730613942258,-90.52797774691135,-89.67349693691358,-89.9453659793362,-90.8605916807428,-90.27777782268822,-91.01437191106379,-90.02160851005465,-90.125253085047,-89.3499105158262,-88.80292684398592,-89.53005561744794,-88.85474559292197,-88.80124232219532,-89.35307278763503,-89.0374365542084,-88.7646066043526,-89.08055042242631,-89.68752650823444,-89.05538480356336,-88.67531677847728,-88.25462383357808,-87.59876680467278,-87.6556025352329,-87.1110551902093,-87.72757676290348,-88.07898205937818,-89.04496445739642,-88.13894172757864,-88.58263854682446,-88.55588287347928,-87.57599001098424,-87.23622017586604,-86.85498971724883,-87.64923461712897,-86.91368558444083,-87.65724340593442,-87.07883539889008,-86.85760964965448,-85.9072006479837,-86.74910870194435,-86.54479580651969,-86.256223551929,-85.51979556400329,-85.99252678873017,-86.14594920352101,-86.50403157947585,-85.78263702336699,-85.48229332920164,-84.85455767950043,-85.03758206265047,-84.47205090615898,-85.41907049901783,-85.88510247506201,-86.04938371106982,-86.02869598427787,-85.06755783129483,-85.34526449721307,-85.64138276875019,-86.63447070168331,-87.44667791342363,-87.73847788246349,-88.5587877552025,-89.01073406776413,-89.6674559074454,-89.78266372717917,-89.84091448737308,-90.14408989157528,-90.43509163800627,-89.45648222602904,-89.88882883591577,-90.6290840851143,-91.55402381625026,-90.75738107413054,-91.29405482159927,-90.98713784245774,-90.83231227146462,-90.416791358497,-89.41974864155054,-89.17211730219424,-89.20341606158763,-89.90958742145449,-90.7638706881553,-91.75074159447104,-91.61473293974996,-91.58658538851887,-90.76530274981633,-90.29724755277857,-89.93176906881854,-89.7109663579613,-89.44626979157329,-89.3517036200501,-89.2698289109394,-89.38762801233679,-90.11521588359028,-89.58053893363103,-89.99582577357069,-89.95412093494087,-90.16282610734925,-89.28010983765125,-89.82905857916921,-89.63078254275024,-89.9291491964832,-89.55896745901555,-90.34696363285184,-90.47575734136626,-90.04522950388491,-90.60867154924199,-91.5026660906151,-92.2931090593338,-91.92947393422946,-91.54616214940324,-91.82412404147908,-92.64074170729145,-92.09973430167884,-92.314241936896,-92.8529563639313,-92.65851435530931,-93.61307452339679,-93.9859550204128,-93.64963923022151,-93.89049384742975,-93.12706802366301,-93.15969135425985,-93.67917549191043,-93.27596443332732,-93.7243852079846,-93.8412906001322,-93.51677082572132,-92.57781041180715,-92.56428390741348,-92.36713646305725,-93.23791236476973,-92.97750037908554,-93.83154525607824,-93.87954960903153,-94.76453519426286,-95.25919497571886,-95.43938030675054,-96.01319178147241,-95.39494821242988,-95.73710446385667,-95.00105459103361,-95.41564379725605,-94.87616245308891,-94.42362705804408,-93.89787823986262,-92.9843926243484,-92.91853045346215,-93.87299940688536,-93.65403079520911,-93.53132546553388,-94.41097967885435,-95.39847915805876,-94.96383268199861,-95.70355536974967,-95.83256686618552,-96.04125642497092,-96.1613058494404,-95.41080739442259,-95.64977183332667,-96.45299379481003,-95.73644459899515,-95.49798689968884,-96.3659890126437,-96.19999112049118,-97.01792977005243,-96.86919373972341,-96.59010452730581,-97.49855047650635,-97.79458642099053,-97.77108623133972,-97.16128916013986,-96.55784322880208,-96.88564072595909,-97.3852856005542,-98.00291847903281,-97.28986246464774,-97.20246563013643,-97.77423819387332,-97.25698502734303,-97.23462562588975,-97.3297030357644,-96.45715660788119,-96.30627268413082,-96.27933027688414,-95.52086429204792,-95.96902772551402,-96.39489189349115,-96.63999109016731,-97.40767666278407,-97.3348155231215,-96.54330033157021,-96.4517410681583,-95.5265210242942,-96.05813452787697,-96.07034719828516,-96.29578684456646,-95.95053855050355,-96.68633446423337,-97.2353589120321,-97.59001847589388,-97.41101780813187,-97.5521457483992,-98.4709946331568,-98.79450000450015,-99.7242934689857,-99.45860063191503,-99.57562635466456,-99.09718807786703,-98.35222909133881,-98.78199246991426,-99.37268164241686,-99.89041417883709,-100.50875046057627,-101.46777935838327,-101.87084563961253,-102.21229658415541,-102.02174465032294,-102.02322995383292,-101.6333435815759,-100.76582097401842,-101.30958512797952,-100.82153505180031,-100.7429984305054,-101.30415661074221,-101.30747603392228,-100.98380854912102,-101.17085322923958,-101.861968875397,-102.7753299237229,-101.91807703441009,-101.85475811548531,-101.82362558320165,-101.8122176816687,-101.0431789974682,-101.33364207250997,-100.54981603473425,-101.50653753848746,-101.66558622801676,-101.50712576461956,-101.66681596357375,-101.58583429688588,-100.74521668301895,-100.39655267586932,-100.16424873052165,-100.21535068145022,-99.604277709499,-99.96363613381982,-100.36208431702107,-99.43123044027016,-99.01048132264987,-99.74265699740499,-100.20769794285297,-99.69426002446562,-100.08374706935138,-99.26398854982108,-100.06099585350603,-100.61254167975858,-99.76742970524356,-98.93644646275789,-98.05267830193043,-98.24858308304101,-97.56301119271666,-96.58417759137228,-96.4362104726024,-95.89763493416831,-96.10281960479915,-96.06504430435598,-95.46192811755463,-95.77323192590848,-96.4086701888591,-96.3669370491989,-95.97129214555025,-96.70099446969107,-97.39999041426927,-97.90203042980283,-97.41016580769792,-96.76888479711488,-97.7413632501848,-98.43368914769962,-97.97195976227522,-97.8949294150807,-97.38548467354849,-97.1626820829697,-96.40382640669122,-96.75915199704468,-97.30256445147097,-96.83519309898838,-96.0748782530427,-95.62908645905554,-96.1096534836106,-96.78237249143422,-96.81851637223735,-97.43197401380166,-97.11444282811135,-97.88528257515281,-98.17057996476069,-99.08294633124024,-98.27159145521,-98.72352634556592,-98.15763839008287,-98.97849895060062,-98.37883386993781,-98.27598358737305,-97.49434464704245,-98.37231744267046,-97.90389278205112,-97.75966720795259,-97.48177728708833,-97.39086101483554,-96.52922844747081,-95.64233357924968,-95.20406645582989,-95.14800715819001,-95.33860918367282,-95.85740483319387,-96.53326600464061,-96.79503926588222,-95.96056182077155,-96.4539163094014,-96.15337418299168,-95.19956073863432,-95.86150312796235,-96.02871668152511,-95.08366980589926,-94.26856748247519,-93.97351909428835,-94.47367032524198,-95.08758736401796,-95.01788151310757,-94.69590712571517,-95.52794789895415,-95.67632092349231,-95.20766022102907,-94.91117058554664,-95.41636798437685,-95.41660247649997,-95.33938056789339,-94.59766426216811,-95.50004196586087,-95.6030985051766,-95.28067289292812,-95.20996299525723,-95.9917353335768,-96.68108689133078,-96.73731750203297,-96.31319743162021,-96.15095807006583,-95.29594463389367,-95.80913581419736,-96.65837019262835,-96.90114199696109,-96.17228093417361,-95.86566831311211,-95.04402662580833,-94.20340093970299,-94.49620416620746,-94.34797856304795,-95.20933378161862,-94.78065960900858,-93.96761995274574,-93.78497105836868,-94.29457394499332,-94.1276695872657,-93.48676977446303,-93.57513702148572,-93.38415487715974,-92.46857296535745,-93.01987503003329,-92.06442065909505,-91.81530630914494,-92.54076432390139,-92.77839125925675,-93.22438737051561,-92.90305177401751,-93.82996413996443,-94.65696331812069,-94.24921996379271,-93.69819133123383,-92.97245446266606,-92.829120952636,-92.51875264802948,-92.57165512396023,-91.69067803956568,-90.89177331654355,-89.96526120929047,-89.69598300522193,-90.22104409663007,-89.67215155810118,-89.64882345916703,-88.8797605955042,-89.15182091947645,-89.52025882946327,-88.97400821745396,-89.12169716926292,-89.44319888437167,-89.10174431139603,-88.88080291030928,-88.63528296072036,-88.81552177108824,-88.81688483944163,-89.69564480753615,-89.56397151760757,-89.12117862002924,-90.08696050057188,-90.33392443135381,-89.83649857901037,-90.45214265724644,-91.22867774451151,-90.42898239241913,-89.79125205008313,-90.05912891309708,-90.43120255693793,-90.07859094208106,-89.36932708555833,-89.13324314868078,-88.90735737606883,-88.2693378739059,-87.39954021992162,-88.08134801778942,-87.17645816598088,-86.55799449561164,-87.04656664188951,-86.76245327387005,-86.16783891338855,-86.40347721613944,-86.59874565945938,-86.9089318481274,-87.76484523108229,-87.48916822392493,-87.33798216050491,-87.25277672335505,-86.7388171153143,-85.80011461349204,-84.8032741220668,-85.72906268574297,-85.21911027794704,-85.5621043802239,-84.63099592924118,-84.05267292633653,-84.68875750014558,-85.43821004359052,-84.89743361016735,-85.25829947926104,-84.55328616080806,-84.8623579069972,-84.48344543809071,-84.69103064015508,-85.05326488660648,-84.25539014441893,-84.08913007890806,-84.84700121404603,-84.12140062870458,-84.33575690211728,-83.43755538202822,-83.83134253555909,-83.08765754150227,-84.04010132187977,-83.96790082193911,-83.33626163890585,-82.43026248319075,-81.76108738640323,-81.26547258486971,-81.26177148101851,-82.01346608065069,-82.27554558357224,-81.92419827729464,-82.66886992193758,-83.17448297142982,-84.08647588966414,-84.92488269647583,-84.91609142255038,-85.66816691728309,-85.24710794258863,-85.75371648138389,-85.85223013302311,-85.72646574489772,-85.80324331764132,-85.23060157289729,-85.43519297149032,-85.66911669867113,-85.15281485207379,-84.59721253393218,-83.8085129763931,-84.65843447158113,-84.4564063725993,-83.71964863687754,-84.22678184742108,-83.82147742947564,-83.75757056288421,-83.67814904963598,-82.89420324470848,-81.95042480900884,-81.29483206477016,-81.80645243544132,-81.48294883221388,-80.76714764721692,-80.47353261942044,-81.26851100847125,-80.44206025265157,-80.6393856597133,-80.61410855874419,-80.63892069971189,-80.9378819107078,-81.32850018702447,-80.79731808882207,-81.09336834866554,-80.42124572070315,-80.56993660423905,-80.77843890665099,-80.18857561564073,-80.00521333375946,-79.4126405431889,-79.36648892750964,-78.98799071833491,-79.33226198749617,-79.73472684621811,-80.11255532409996,-80.98001662129536,-80.94109240965918,-80.28949596360326,-80.1702510965988,-80.41305140964687,-80.99241083581,-80.15627642627805,-80.92696686508134,-80.32875060103834,-79.78203224902973,-80.41196836717427,-79.78916174732149,-80.48267548112199,-80.8475301344879,-81.00722342124209,-80.3660248699598,-80.87502658413723,-81.53123150672764,-81.20748826907948,-80.87251861020923,-81.46804988477379,-81.80850400682539,-82.01711429096758,-82.33804178703576,-83.00514760334045,-82.10225464543328,-82.27623147936538,-81.58858946384862,-80.68684591539204,-80.7282684687525,-81.44345531240106,-80.98112962441519,-80.1323631615378,-79.73359428299591,-78.755605510436,-79.64321887213737,-78.71863589528948,-79.18740852968767,-79.16865958366543,-79.9211721168831,-80.15744181489572,-80.41945288516581,-80.4218851882033,-79.95103400945663,-79.86944219190627,-79.25402509327978,-78.38528195256367,-79.06586302537471,-78.5421373960562,-78.57807361939922,-79.43142085010186,-79.08859146852046,-78.29594662366435,-78.32816391671076,-78.46679150080308,-78.11130392365158,-77.21425811108202,-76.3967752060853,-76.21754897385836,-76.87425162503496,-77.27041765674949,-76.66075682081282,-76.39593667257577,-76.42460467340425,-76.91381081752479,-76.43793096067384,-77.31448569847271,-77.00255667744204,-76.29118490265682,-75.55817849328741,-75.61565310880542,-75.3814637856558,-74.90197789808735,-74.84901977423579,-74.13800454046577,-74.27097454154864,-74.20434060087427,-73.76484745321795,-73.98257776070386,-74.3556480887346,-74.12860364746302,-74.25987210776657,-73.50560722593218,-74.28289933642372,-74.26666385633871,-74.49492060299963,-74.21234171278775,-73.40826060017571,-74.07801978802308,-73.34038854995742,-72.51459156302735,-72.59478992410004,-72.6912353481166,-73.37895025173202,-72.41933943750337,-72.55483657401055,-73.08646118734032,-73.83929737797007,-74.30481355078518,-75.24308458855376,-75.36762166116387,-75.08420978765935,-75.19434079667553,-75.72813917603344,-74.75873760133982,-74.40258124750108,-74.43289648508653,-74.49494194472209,-73.86215260764584,-73.05221008555964,-72.90588658442721,-72.21228323038667,-72.78906709561124,-72.06992610171437,-72.77630461985245,-72.05730057461187,-72.20982524752617,-71.6551633249037,-70.88129906076938,-70.9807115085423,-70.10358897037804,-69.20160213857889,-69.08379492908716,-68.6433643377386,-68.43290341226384,-69.12733827251941,-68.17419230239466,-68.43866334389895,-68.45523622212932,-69.22230549016967,-69.43337864335626,-69.98210452590138,-70.93568941997364,-71.8304854510352,-71.25779227353632,-71.19276883499697,-72.14460659911856,-72.10020449478179,-71.6734518376179,-71.24050874542445,-72.10488517815247,-71.8771524806507,-71.14685388701037,-70.4455090528354,-71.17575474176556,-70.44101526029408,-70.62304597022012,-70.78297431813553,-71.16882503265515,-71.45226969476789,-71.24705729307607,-70.7111819209531,-70.2270419606939,-70.81047367723659,-71.55847141053528,-70.72543363412842,-71.48466322943568,-70.72739566816017,-69.98549364507198,-69.23334149178118,-69.27144736144692,-69.97222744394094,-70.59602565690875,-69.91893851105124,-69.92380092199892,-70.01983549166471,-70.24595949053764,-70.41001623263583,-69.63747806893662,-69.4498614454642,-68.96797606023028,-69.66791806183755,-69.53144845599309,-69.20311594661325,-69.77761951927096,-69.8495304370299,-69.12159067811444,-69.67944018589333,-70.03733820607886,-70.43228673608974,-70.62720345472917,-71.48357966262847,-70.88711183611304,-70.04789224034175,-69.91776299010962,-69.87209406262264,-69.32034628791735,-68.5997247188352,-69.55113328900188,-69.64171724533662,-69.58964479994029,-70.46434614202008,-71.2003301428631,-71.4169581416063,-70.98811019957066,-71.93695932393894,-72.91852960176766,-72.70307836961001,-72.80047338129953,-72.62413833616301,-72.7263003909029,-73.60378750273958,-72.8221686896868,-73.022622495424,-72.23244974343106,-72.38312787981704,-72.65002646297216,-73.63176987040788,-74.21425486216322,-73.85908083757386,-73.19832937279716,-74.0433176853694,-73.22054692311212,-73.64672836614773,-72.7121154088527,-73.56602194393054,-73.44646731391549,-72.69794666022062,-71.71717326622456,-72.34234167216346,-72.11086788447574,-71.86714067822322,-72.6171776545234,-71.8576316847466,-72.78145621251315,-72.78171705082059,-72.72923431824893,-72.56034345319495,-73.27201806847006,-73.3473174739629,-72.72486288379878,-73.46033045928925,-74.17510044574738,-73.25213447771966,-72.73563297279179,-73.3227505153045,-73.95166038814932,-74.57792588416487,-74.16429866757244,-74.25808835402131,-74.15507158637047,-74.64292006986216,-74.57629224099219,-74.92003795690835,-75.13674159673974,-75.60670436313376,-75.55966284917668,-76.43371313856915,-77.36330335913226,-76.67229402018711,-76.46326128859073,-77.38455831911415,-76.79834331339225,-77.44003476854414,-76.62282330775633,-77.52446623239666,-78.3296356992796,-78.75912903202698,-79.00704893795773,-79.81009172461927,-79.61944608297199,-78.7246227869764,-77.95395304774866,-77.61615413846448,-78.22922580409795,-77.56660340540111,-77.93724383041263,-78.62740581296384,-78.69995717471465,-78.86197895975783,-79.69001588132232,-80.60156287718564,-81.46728689502925,-82.36506065167487,-81.42991786077619,-81.10196348419413,-80.97350211907178,-80.49002991383895,-81.35080806631595,-81.08080186601728,-80.90872427495196,-81.38991153379902,-81.03735977970064,-81.51006589317694,-82.18143151281402,-82.03923232993111,-81.90366663737223,-82.32043455727398,-83.08386745443568,-82.54976707417518,-82.01664131274447,-81.84674511756748,-81.6709993085824,-81.93280253419653,-81.25882477406412,-81.2333678714931,-81.84355083759874,-82.57270116452128,-82.09609122434631,-81.8451407882385,-81.41227845661342,-80.90960779692978,-80.53568681934848,-81.45676046051085,-80.78137421095744,-80.16552296746522,-81.05150959035382,-81.53792985389009,-82.47546036913991,-82.2347476053983,-82.64267604798079,-82.03790470631793,-82.56688443338498,-83.3172378204763,-82.96849911566824,-83.54122465429828,-83.05782949971035,-83.7181515446864,-82.84123696340248,-81.9818604500033,-81.6853901236318,-81.25136697851121,-80.36181480437517,-80.84859029576182,-81.2594772935845,-82.24996682722121,-83.08735065441579,-83.73704630834982,-84.71839711815119,-84.12288201414049,-83.98153008008376,-84.65363454539329,-83.68463416723534,-84.27645557653159,-84.14121930114925,-83.4092793893069,-82.57447774382308,-82.26580850593746,-82.5229253647849,-82.62901890045032,-82.77617374062538,-83.16255012294278,-82.25969150476158,-81.2685960168019,-81.51730778813362,-80.84333655517548,-80.58095977827907,-79.76857124781236,-80.40492489701137,-80.94825509749353,-81.01540235057473,-80.70138373877853,-80.2341873110272,-80.68639336852357,-80.29502300312743,-81.23074438003823,-82.09109553555027,-81.37536469381303,-80.43408623244613,-80.13060870068148,-80.59317152108997,-80.2850212813355,-80.30293769109994,-80.07161953952163,-79.76826367108151,-79.45947145484388,-79.49784404831007,-79.38075754744932,-78.68329619662836,-79.57874662056565,-78.97467737924308,-79.30204107239842,-78.5891552302055,-78.19708913611248,-78.1548208175227,-78.68360861204565,-79.47400399995968,-79.33988241991028,-78.45698979822919,-79.09055801713839,-79.6312580788508,-79.07799732591957,-79.77603764412925,-79.15738109964877,-79.71936479397118,-80.65965016651899,-80.60325576877221,-79.9621696760878,-79.13949238043278,-79.92542980238795,-79.9599290844053,-79.02788641769439,-79.08209129422903,-78.7154485154897,-79.3079793038778,-78.63637236272916,-77.73089682124555,-77.4088976685889,-77.95757515821606,-78.33842646284029,-77.7394241518341,-77.05740348948166,-76.73571157595143,-75.82539222156629,-75.3177416883409,-76.07133400253952,-75.70917753782123,-75.21487232111394,-76.15795530192554,-76.19261602079496,-76.70395307801664,-76.32525035692379,-75.50474446127191,-74.6136957257986,-73.82750182459131,-74.6608073702082,-75.53101099049672,-76.3393854717724,-77.23520813975483,-77.41077944915742,-77.75857204850763,-77.90215919818729,-77.73934306856245,-78.01982682198286,-77.98091487493366,-77.40933530312032,-77.25154383620247,-76.96574403112754,-76.95227976376191,-76.64569014776498,-75.75282734166831,-75.43113845726475,-74.85860819835216,-75.05076842894778,-74.80100991204381,-73.83680060319602,-74.65850743278861,-75.50555222481489,-74.85682950727642,-75.39462021458894,-75.48268086509779,-75.65359330317006,-75.30807970929891,-74.94517954764888,-74.71813950827345,-73.76827847631648,-73.66859758552164,-73.59033716097474,-73.65132321882993,-72.8719218512997,-73.5280038411729,-73.51112860580906,-72.57188117317855,-71.90974700916559,-71.77615116070956,-71.68109230650589,-70.83050678484142,-71.12678991025314,-70.53126895055175,-70.53616299899295,-69.83340907469392,-69.5842544096522,-69.81536983000115,-69.56370066152886,-69.54464602936059,-68.69485295377672,-69.16859849356115,-70.1017155405134,-70.19525444041938,-69.6783362631686,-69.54338136082515,-69.00296595739201,-69.61566641321406,-70.37054449785501,-70.17000414198264,-69.30860245786607,-68.48750406363979,-68.0393525720574,-67.631460392382,-68.54701689630747,-68.45829473156482,-69.27899491880089,-69.84504124382511,-68.9163281423971,-69.28062663320452,-69.97559592500329,-69.51201972458512,-70.24600265873596,-69.96043006004766,-70.07262501120567,-69.4502787948586,-69.86779216583818,-70.76296008843929,-69.91340613365173,-70.53748557530344,-70.7234762958251,-70.69101853808388,-70.38420930504799,-70.72194590279832,-70.37752123503014,-70.11318881576881,-70.22991668106988,-71.15871289698407,-70.59278867673129,-71.05465863458812,-70.7838198854588,-70.58989221090451,-71.19064990105107,-70.30499272048473,-70.96069445321336,-70.12540141679347,-70.36528740823269,-70.24672822607681,-69.51410726970062,-68.94922112952918,-69.10503042628989,-68.70592281036079,-68.63007812434807,-68.8705467148684,-68.75078930379823,-69.20293189398944,-68.96343677537516,-68.09080618945882,-68.66716623818502,-69.23044885508716,-69.88150635547936,-69.18659168342128,-68.25926973484457,-67.31665829755366,-66.85611315490678,-66.3270850488916,-66.99528258992359,-67.40391565021127,-67.06881570769474,-66.74482167046517,-65.94814239675179,-65.2299169995822,-64.58746144454926,-64.49037303077057,-65.13644972350448,-66.0824877191335,-65.21438754303381,-64.89377595391124,-64.16540555842221,-63.946884592063725,-64.62390702404082,-64.47435817727819,-64.18243430182338,-63.32717846566811,-63.512705840636045,-63.322006817441434,-62.856835254933685,-63.851898486725986,-63.0933017055504,-63.640209486242384,-64.07892498187721,-63.96102959383279,-64.43506305897608,-63.524050703737885,-62.756899542640895,-63.55336890462786,-62.793983968906105,-63.78209949377924,-62.94382175337523,-63.047492839396,-62.53873351216316,-62.52562191337347,-63.11992133036256,-63.60557263158262,-64.40034852968529,-63.51989124249667,-64.20675719063729,-63.36849071923643,-64.26158373523504,-64.6697390358895,-64.75354372058064,-64.76769551308826,-64.9406383880414,-63.9563298295252,-64.68051399709657,-65.36035266984254,-64.89972326951101,-65.30710565438494,-64.79643045552075,-65.32295914459974,-66.22891735937446,-65.61770651675761,-65.06828233925626,-64.61782982340083,-64.25185945630074,-64.38943676650524,-63.91453144187108,-62.95903037628159,-62.03579116798937,-61.99730955762789,-62.7321562403813,-63.03367278072983,-62.42814000416547,-62.712255857884884,-62.909809683449566,-62.894230297766626,-62.05191654153168,-62.991758725140244,-63.33689261553809,-64.15761678526178,-63.20729553094134,-63.975037002470344,-64.40493866382167,-63.56460876017809,-63.841984869446605,-64.27822029450908,-63.822048925329,-63.201894181314856,-64.14594548288733,-64.75246563646942,-64.12056894786656,-64.56504053575918,-63.7396327550523,-62.86760401446372,-62.718119802419096,-63.3794956584461,-63.485457671340555,-63.47868654690683,-63.83161231642589,-63.0341430217959,-63.51713286107406,-62.99180526891723,-63.579630243591964,-63.12473989930004,-63.35026995558292,-62.48349821055308,-63.39279908966273,-64.21400478901342,-64.52665794081986,-63.555912292096764,-63.65477220946923,-63.95161479525268,-64.49235173966736,-65.36012792540714,-65.74932871200144,-65.86005532415584,-66.74241730710492,-66.76386163244024,-66.21500222431496,-65.6937396558933,-65.44137049512938,-66.34543795976788,-65.95368133904412,-66.31187337217852,-65.35013503907248,-65.57105710078031,-65.5132704260759,-66.29023742489517,-66.78188715595752,-66.99119081534445,-67.25241427822039,-67.56561196502298,-68.42439135350287,-68.45510934526101,-67.5015933313407,-67.693524251692,-68.26807552948594,-68.6936415429227,-68.89381462521851,-68.21023660479113,-68.28941408917308,-69.23903975076973,-68.84582606516778,-69.35777445929125,-69.00846285419539,-69.40448559680954,-68.7935598953627,-68.71972255175933,-68.66268361592665,-68.43664237624034,-68.701525490731,-68.32921861251816,-68.1537895957008,-68.62088844319806,-68.45012074522674,-68.58037414308637,-69.48669162625447,-68.9993248921819,-68.78049693070352,-68.05045989062637,-67.61323534930125,-68.00255927303806,-68.96644498500973,-69.3459374718368,-69.52910732990131,-68.74679256696254,-68.55761579843238,-68.38859556242824,-67.55931035615504,-67.0027590347454,-66.94182599429041,-67.1290045264177,-66.43275433126837,-65.55759417731315,-65.881441924721,-65.4761833366938,-65.94452439481393,-66.14154513878748,-66.57684200350195,-66.12585971038789,-66.10296362871304,-65.98144280957058,-66.50127539271489,-66.53487827349454,-66.84188948757946,-67.16962736519054,-66.89602747419849,-66.0968172759749,-65.57192976307124,-64.58305434742942,-64.51371595170349,-65.23521768441424,-65.45889847492799,-65.48194795288146,-66.2483778228052,-66.34755056770518,-66.52794690662995,-66.3114021117799,-65.75014354055747,-64.8247235165909,-64.63028301903978,-64.53355839988217,-64.50999108469114,-63.71003793599084,-64.091094895266,-63.75896483100951,-63.82754761306569,-62.94408812141046,-62.33511814195663,-62.497502121608704,-61.80565737374127,-61.82500311918557,-62.2392059774138,-61.780098765622824,-62.480667762923986,-62.96936595765874,-63.00321344193071,-63.24154487112537,-62.94891538238153,-62.81192764407024,-61.84502876969054,-62.162208293098956,-61.845590110402554,-61.56101515516639,-61.69071316579357,-61.74626479530707,-61.50233282195404,-60.50359242549166,-60.01079314388335,-60.55868842592463,-59.68643373111263,-59.760383774060756,-60.155748687684536,-59.80166316637769,-60.26707071298733,-60.49153172876686,-60.75720491120592,-60.670677421148866,-60.17488975729793,-59.66670689126477,-60.06451714923605,-60.45031140604988,-60.572055615950376,-60.27475919062272,-59.62620038399473,-59.04087448399514,-58.11482631787658,-57.26827545557171,-56.55152572179213,-55.77138441475108,-55.342168064787984,-56.33199109416455,-56.82848146185279,-56.34500813949853,-56.51759133907035,-55.92102769296616,-55.6379429823719,-56.01493045780808,-56.87643058365211,-57.211046582553536,-56.97586581809446,-56.786497643683106,-56.28353337245062,-57.18507304601371,-56.194434500765055,-55.56487061455846,-54.65251014754176,-54.63194259535521,-55.42949190037325,-54.45728477835655,-55.04231491545215,-54.07200294267386,-53.78848413703963,-54.775027544703335,-54.934513735584915,-54.48182960040867,-54.96818919526413,-55.13118051830679,-55.05762276239693,-55.777947961352766,-55.93670945055783,-55.16711807390675,-55.21617142064497,-54.95455786213279,-55.08839982142672,-54.74692670023069,-55.43269305489957,-56.372665096540004,-55.50571319973096,-54.83586907852441,-55.619221278931946,-55.365671215578914,-55.1881781318225,-55.534748800098896,-56.40885230433196,-56.95617770589888,-56.81035549053922,-57.24126369133592,-57.80500522442162,-58.16795855620876,-57.51835952186957,-58.0428366670385,-57.23931225435808,-56.43079351820052,-56.95749974111095,-56.381878345739096,-55.85101117193699,-56.46881346264854,-56.20274765556678,-56.481045238208026,-56.86059378879145,-56.785188029520214,-57.53143801121041,-57.03721850551665,-56.316478182561696,-57.24058551341295,-56.43430527392775,-56.83505810564384,-56.370477427728474,-56.02844202471897,-55.398206752724946,-55.97737391106784,-55.76384136034176,-55.681387938559055,-55.99446500418708,-55.26671007880941,-56.09213589690626,-56.19279321236536,-55.82518848031759,-56.10133710037917,-56.994553689844906,-56.50690704211593,-56.642208175733685,-57.46112928586081,-56.50220593530685,-56.22693778388202,-56.26586436992511,-55.89958394272253,-55.680121519602835,-54.727697669528425,-55.533701554406434,-56.34415498236194,-56.54597275517881,-55.97673797234893,-56.33378902217373,-55.765873410739005,-56.63970152055845,-56.447073115967214,-56.278376241680235,-55.65063887555152,-55.47415634198114,-55.08947572065517,-54.19308751169592,-53.543456205166876,-53.056225595995784,-52.41236317856237,-52.70104186050594,-51.837861033622175,-51.90396430995315,-51.460139013361186,-51.97007338702679,-51.0599385551177,-51.69816626794636,-50.71502071944997,-50.19904029648751,-49.89993034489453,-50.590694793500006,-51.563648821786046,-51.333953278139234,-51.41232234239578,-50.436460580676794,-50.08544318936765,-50.83202563831583,-49.96250126603991,-49.33141442667693,-49.970919500570744,-50.588512821588665,-50.20331446733326,-49.66043591266498,-50.022805511020124,-49.76268853852525,-50.762411300092936,-50.787247066386044,-50.235106627456844,-50.42594978492707,-50.040551078505814,-49.998574023135006,-50.92926180688664,-51.669301849324256,-51.037988210096955,-51.79330120515078,-52.37112484034151,-51.81624643690884,-52.21115886140615,-51.61467447457835,-50.81328653357923,-50.65186588652432,-50.95829437626526,-50.310345120728016,-49.721566159743816,-49.8323371252045,-50.116910158190876,-50.18115211464465,-50.483592577744275,-51.26679970603436,-50.34073206176981,-50.14805852808058,-50.010880006011575,-50.15271162381396,-49.168935417663306,-49.23927503079176,-48.58081047004089,-47.95492123393342,-48.77685809833929,-49.52579440223053,-49.399332243483514,-49.949699664488435,-50.86302056116983,-51.014086885377765,-51.290924792177975,-52.082220260985196,-52.38925802288577,-52.14882066566497,-53.12313075596467,-54.01137449638918,-54.8473509545438,-54.09980686893687,-54.863100526854396,-54.29982951004058,-53.907112369313836,-54.798009258229285,-53.81320050545037,-53.86190930940211,-53.29477393673733,-53.05998111329973,-52.296680129598826,-51.31206843210384,-51.53701563319191,-51.03762011323124,-50.13501664623618,-50.01637378195301,-50.70296741882339,-50.85436966409907,-50.71032001776621,-51.2419595788233,-51.68204417312518,-51.13629108481109,-51.537240584380925,-52.100105435587466,-52.12734045088291,-51.35364788537845,-52.15158879291266,-53.08816652698442,-53.68570027127862,-53.97462974162772,-54.30814504949376,-55.17642367398366,-56.14663522923365,-55.228089179378,-54.348255248274654,-53.38870955770835,-53.299434622749686,-52.83067115582526,-51.96109612938017,-51.14902060478926,-50.18088054098189,-50.3396886610426,-49.909813307691365,-49.53356514312327,-50.29155749222264,-50.99602133128792,-50.52695807488635,-50.87171758431941,-51.683274602517486,-51.76483226986602,-51.72987184114754,-51.83660453557968,-52.771257129032165,-53.55657829530537,-53.52349125733599,-53.323143783491105,-52.638505151029676,-52.31810363056138,-52.43354949494824,-52.03495096927509,-52.52609950816259,-52.20568707725033,-51.90485402755439,-51.44406151678413,-52.172698222100735,-51.40668223332614,-52.18884715437889,-53.029101693537086,-53.909830395597965,-54.22359416913241,-53.4273014315404,-54.094091665931046,-54.97994439676404,-54.4250173214823,-54.97145830234513,-55.819834102876484,-56.653100985102355,-56.553594822995365,-55.803585710935295,-55.695963790174574,-55.23368939384818,-56.23160056490451,-56.01841292018071,-56.25864893198013,-56.73525767819956,-57.38013027980924,-57.5624183351174,-57.03579136263579,-56.09501456003636,-56.16445119259879,-55.58032790618017,-55.813173349015415,-56.16731470124796,-55.190046061296016,-55.858687883242965,-56.75866445945576,-55.807000735774636,-55.11705752555281,-54.13392280880362,-53.20223350916058,-53.9886433808133,-53.66915648849681,-54.28733677510172,-55.20634996751323,-55.34193137427792,-55.79709490435198,-56.232048778329045,-56.371142582036555,-56.19809903949499,-56.66137458430603,-57.50823490554467,-58.45660487143323,-59.33238986926153,-60.26320695690811,-59.66002293629572,-58.66182235768065,-58.37712745554745,-58.842717750929296,-59.49185574380681,-58.55446681333706,-59.21640804596245,-58.88082077167928,-58.359699548222125,-58.07308046147227,-58.10870091011748,-58.05170197505504,-58.24827976850793,-57.856234858278185,-57.76924579869956,-58.16262277076021,-58.088581543415785,-58.37037532031536,-59.11763506848365,-58.533869333099574,-57.59255526820198,-56.80784297129139,-56.54029063787311,-55.771203390322626,-55.23447226919234,-54.35204340564087,-54.93561096768826,-55.08690964151174,-56.03418879956007,-56.28857417637482,-56.08338296599686,-55.24859909294173,-54.960620233323425,-54.4503263537772,-54.61651219194755,-55.063801986165345,-55.52505669603124,-54.78633696399629,-55.75902046775445,-56.61155696818605,-55.87371754646301,-54.88579127006233,-53.93009077385068,-54.01663869060576,-54.23229233222082,-54.35871480079368,-54.70513135800138,-54.79470694437623,-53.863784034736454,-52.88235369278118,-51.964407524093986,-52.510029271245,-53.49977658176795,-53.814318554941565,-53.571349592879415,-54.14328486006707,-54.28480930207297,-54.4032925744541,-53.93203072901815,-54.703078602440655,-55.28767049871385,-55.603309005498886,-56.58559316582978,-57.54444996500388,-56.988623324781656,-57.54696166375652,-58.32194053987041,-59.206437001004815,-58.76392838032916,-58.031605520285666,-58.51255071768537,-59.38632318144664,-59.45522959344089,-59.36415433418006,-59.76392041146755,-58.97793692955747,-59.05460850941017,-60.05308950506151,-60.92801274266094,-60.33794215274975,-59.5177758471109,-59.38877446111292,-59.73149672849104,-60.17785450909287,-59.90609958488494,-59.7285094182007,-58.884655851405114,-58.35864578792825,-58.74424709845334,-58.668305362109095,-57.95852803485468,-57.186467761173844,-57.233068188186735,-56.856016863137484,-57.55137533461675,-57.393685433547944,-57.08604432363063,-57.15913358703256,-58.04505784995854,-57.249875446781516,-56.818156968802214,-57.13423476042226,-57.316275767982006,-57.43628208665177,-56.89841932337731,-57.563007548451424,-57.1698437621817,-57.82238259492442,-58.36798553913832,-58.46499343123287,-58.53455405915156,-58.64202149678022,-58.91729521751404,-58.88992185192183,-58.511167254298925,-58.640749350655824,-59.006958805955946,-59.575866574421525,-59.96227522753179,-59.243902849499136,-59.42584383720532,-58.96602535666898,-59.58444077009335,-60.51251706900075,-60.81571331946179,-60.718879180029035,-61.48888109251857,-62.356889923103154,-61.800641753245145,-62.203696409240365,-62.53726934315637,-62.028992152772844,-62.07873375946656,-62.09561354899779,-61.354101814795285,-62.231506436597556,-61.64652412943542,-62.263777234591544,-61.96720366505906,-61.549660965800285,-60.97714456776157,-60.998313155956566,-60.30146856373176,-59.333791797980666,-59.00914566311985,-58.9455198966898,-59.115678207948804,-58.99633253645152,-59.63906982308254,-59.53174953535199,-59.4404837670736,-58.828483746387064,-59.589837518986315,-60.35835482971743,-60.17788447253406,-59.50182220572606,-60.41463157068938,-59.51585576729849,-59.6894886479713,-59.05311896512285,-59.59861650224775,-59.527977265417576,-60.21593093359843,-60.47147274436429,-60.18568539014086,-59.874052471946925,-59.909801355563104,-59.677335652988404,-59.715689602307975,-58.83540319604799,-59.49715810175985,-59.89122197730467,-59.960990564431995,-59.83037847606465,-59.73889541020617,-60.23777839075774,-60.010312621016055,-60.201019627507776,-59.55378535296768,-59.02160411467776,-59.73937584925443,-59.703021387569606,-59.3321914318949,-58.49301901925355,-58.954156609252095,-58.31913944100961,-58.60175380995497,-59.24604920903221,-59.002560910303146,-58.17473843740299,-58.841707239858806,-59.3883846597746,-59.31430228846148,-58.797019065823406,-58.28612369578332,-58.82605666201562,-59.45361831737682,-58.822624607943,-59.374495110008866,-60.342262293212116,-59.357154075521976,-59.95176967326552,-60.43685112660751,-60.138006755616516,-59.7043080967851,-60.50460443366319,-60.82881010696292,-59.971953788306564,-60.483487968333066,-60.756128784734756,-60.73286327486858,-61.36164027824998,-61.797531086951494,-61.10193804465234,-60.56887081824243,-60.66472618468106,-60.243206545710564,-59.83013647515327,-60.19670886686072,-60.91895231464878,-60.95144783798605,-60.842351279687136,-61.51918981457129,-60.964512093923986,-61.05379136977717,-61.564939070958644,-60.98857094999403,-61.561857188120484,-62.51269488828257,-62.33729917323217,-62.39894950482994,-61.66704698745161,-61.11743039358407,-61.861917928326875,-60.99214479792863,-61.73282231250778,-61.45410295808688,-60.99530331976712,-61.52221321826801,-61.42105721402913,-61.4261972270906,-61.34266081266105,-60.46892579039559,-60.436567321419716,-60.903393358923495,-59.97718288982287,-59.07844633422792,-60.0758029287681,-59.87660784833133,-59.193808095529675,-59.99962387327105,-59.65756675833836,-60.54310257965699,-59.550703861285,-60.491734200622886,-60.84772568335757,-61.0590894035995,-61.90064057847485,-62.11541415983811,-61.59837863780558,-60.79713868210092,-61.673240771051496,-61.78253378625959,-61.68643251340836,-60.803626525681466,-61.47533055720851,-61.486295324750245,-62.17117493413389,-61.833799408283085,-61.00066364184022,-60.76622129417956,-60.32368826167658,-60.8563989168033,-61.43888073647395,-60.51541518094018,-60.82191831199452,-61.17616880312562,-60.58858611481264,-60.723724748939276,-60.405256167054176,-61.328496027272195,-61.03379312437028,-61.924724670592695,-62.35027324967086,-61.47359818732366,-61.638670795131475,-61.81179036293179,-60.922628556378186,-60.88872185815126,-61.31604617787525,-61.978869072161615,-62.09823965327814,-61.985966651234776,-62.32929587503895,-63.15121934423223,-63.6038668602705,-63.889399393927306,-64.0363660347648,-63.204170593991876,-62.800733242649585,-62.80097244679928,-63.7693395470269,-63.278116970323026,-64.00003635464236,-63.505404740571976,-63.23363980324939,-62.4434475810267,-62.65755867306143,-62.43463650345802,-62.96390727581456,-61.99985222797841,-62.096323082689196,-61.21166488295421,-61.779586472548544,-61.758391719311476,-60.93816285999492,-61.37044615810737,-61.83737114304677,-61.36938325408846,-61.32095854822546,-60.64211166789755,-59.781372112222016,-59.06601860001683,-59.46702685020864,-58.499610596336424,-58.787576970644295,-59.11801925348118,-58.849024259485304,-58.198824434541166,-57.51574760535732,-58.47624375578016,-58.87026272295043,-58.15176988625899,-58.6325179184787,-58.13725897204131,-58.40998518187553,-57.78240871941671,-58.38127750298008,-58.86395755363628,-58.90407927474007,-59.70532567659393,-59.08558613900095,-59.59652673872188,-59.56133141182363,-58.852325002197176,-59.5545171299018,-60.34250187361613,-60.54203103994951,-59.75179850962013,-59.650341445114464,-59.23612132295966,-58.376633474137634,-58.87045259447768,-59.72418771730736,-60.486748926341534,-60.58729070657864,-61.00500264298171,-61.9215851877816,-62.57621712423861,-62.89415247226134,-63.21562579832971,-62.7055473132059,-63.010224603582174,-62.38529414869845,-61.768350071739405,-62.67869012244046,-63.66148212738335,-63.052828217390925,-62.97236693324521,-62.15131507534534,-61.40238617872819,-62.11843327013776,-62.61169847473502,-63.32675389945507,-62.526598980184644,-63.29827449237928,-63.71501004835591,-64.59861610503867,-63.79173748474568,-64.34070635214448,-65.06519782636315,-65.54987338138744,-65.6325080175884,-64.95472727157176,-65.46364949084818,-66.2124288524501,-66.5199188804254,-66.43889965629205,-67.2305937721394,-68.22337479982525,-67.27072317712009,-67.40964409802109,-67.53234314220026,-66.58844602759928,-65.81417521135882,-66.59321019845083,-67.20196779258549,-67.7337011564523,-68.06575925042853,-68.9630497856997,-69.71802883734927,-70.6259338138625,-71.04961672937497,-71.6201667683199,-71.88254384044558,-72.62991061853245,-72.46543062850833,-73.1807276760228,-73.4787704735063,-72.99348044302315,-72.24177213432267,-72.00654081720859,-71.36345403036103,-71.57311358349398,-72.49560014391318,-72.36354619916528,-73.05538355279714,-73.93208220321685,-74.4356968216598,-74.1668820977211,-74.08826838666573,-73.21102888602763,-72.72891165036708,-71.88405714649707,-71.31959110079333,-72.0994269438088,-71.85906747821718,-72.4094002856873,-72.90266001690179,-73.36553932866082,-72.64662898983806,-72.04562626592815,-71.2825005473569,-71.44950989168137,-71.40991344628856,-70.78289556223899,-71.74679076904431,-71.58512906031683,-71.93202561372891,-71.74688326800242,-71.1479831347242,-70.41647371975705,-70.60439998563379,-70.80471723061055,-71.7591153550893,-70.8740382255055,-69.88635885762051,-69.08957226248458,-69.91245951829478,-69.23797225626186,-68.43647019797936,-67.44218471786007,-67.87987710442394,-67.24364529177547,-67.88491548039019,-68.48356927325949,-68.30684932135046,-68.3903659824282,-69.33970357431099,-70.08487016987056,-69.12936706654727,-69.61806080583483,-70.25857340125367,-71.14536702260375,-70.73812116822228,-70.47741911141202,-69.82064862037078,-70.79426745371893,-71.54205575631931,-71.83169013867155,-71.23337029665709,-70.58033115556464,-70.27661659056321,-71.03653002995998,-70.32261917134747,-70.82295564655215,-70.70158585486934,-70.4847987391986,-70.87714524753392,-70.51951803872362,-71.00124355684966,-70.43158408720046,-70.92763424478471,-70.14461875380948,-70.70633213827386,-70.05861547216773,-70.84267760673538,-70.84141896292567,-70.0025500128977,-69.41199919069186,-69.30091405799612,-69.34836396714672,-69.25747113209218,-69.26615144312382,-69.16723521146923,-70.00730495806783,-70.98363016499206,-70.62073338031769,-69.62854254152626,-70.30149930575863,-71.08369954116642,-70.43830545293167,-70.76266815513372,-71.27101626666263,-71.23818209348246,-70.97793794050813,-71.30805554054677,-72.24400917673483,-71.37961626704782,-71.97067698324099,-71.41348793823272,-71.24187836004421,-70.67336408095434,-70.22380078025162,-70.74983820319176,-71.2619618573226,-71.12415005872026,-71.18255467619747,-70.34598061349243,-70.38021731888875,-70.172438737005,-70.05289644328877,-70.59816010762006,-71.52430001366884,-71.32080878177658,-70.48716522753239,-70.63564909715205,-71.04990599863231,-71.27913310099393,-71.24686544993892,-71.14828263642266,-71.63240831112489,-70.93894814187661,-70.9832983254455,-70.28936902852729,-69.71793655958027,-69.47431942727417,-70.30784961301833,-69.67217045463622,-68.67959648417309,-68.15970416320488,-68.64209320489317,-67.9491020962596,-67.70621440606192,-67.53819125285372,-67.79466754663736,-67.61537247803062,-66.78577734716237,-66.34177786577493,-67.06281981850043,-66.85129253566265,-66.33195152599365,-66.77639952721074,-66.88092117756605,-67.16343230614439,-67.37399762822315,-67.55503820395097,-66.7786163855344,-66.9898087172769,-67.54455715976655,-67.14066123496741,-67.67501030256972,-67.56473329709843,-68.44349819002673,-67.64406023081392,-67.7876114002429,-67.19548139022663,-67.3496668478474,-67.42680376814678,-68.15390689391643,-67.25861053494737,-68.04519235668704,-68.47019468294457,-68.82692791381851,-69.31821600953117,-69.97137392312288,-69.35053482372314,-68.9734440841712,-68.16264843614772,-68.0251980619505,-67.59899621922523,-67.5734449448064,-67.0019037136808,-67.8894341099076,-67.5249790432863,-68.50253931107,-68.71802754048258,-67.76952717313543,-67.33176640002057,-66.91184956999496,-67.0504957800731,-67.99248579191044,-67.50226123584434,-67.12385785765946,-67.82307259691879,-66.90875518228859,-67.01224461570382,-66.29956339625642,-67.15143137006089,-66.65386193385348,-66.8706870325841,-67.68111323099583,-67.93798415269703,-68.72181462775916,-68.94094969239086,-69.07530946936458,-69.88983018463477,-70.72200024919584,-71.63804759690538,-71.12663045106456,-70.26784084923565,-69.73376497533172,-70.50378577690572,-70.46604724181816,-69.84892821591347,-69.99120427109301,-70.2340164585039,-70.47998337773606,-70.58006904833019,-70.03919007256627,-70.91045859782025,-69.96930013224483,-70.92730662273243,-71.77341987937689,-70.85733175138012,-71.04876394756138,-70.41339941788465,-69.70749125443399,-69.68389674974605,-70.62044769059867,-69.87808985123411,-69.44695113506168,-69.40106995310634,-68.72241691593081,-69.1906688385643,-68.51007991470397,-67.90959174977615,-67.23699714662507,-68.15130926063284,-68.74881083751097,-69.14281978784129,-68.33863306138664,-67.59956074040383,-67.15505467401817,-66.40060316491872,-66.99311218876392,-66.8386504855007,-66.23001173743978,-65.81329951155931,-65.22323190653697,-65.92508778953925,-65.56373230461031,-65.38245218480006,-65.79124415572733,-66.37509722774848,-66.34991763252765,-66.33776511112228,-66.72994724847376,-66.03892900096253,-65.20312201976776,-65.75509704789147,-66.67890941770747,-66.98484597541392,-66.1083742431365,-65.21697957394645,-65.96276242705062,-66.25730014359578,-66.23980189766735,-66.74242050200701,-67.53518187487498,-68.28814526600763,-67.9378198995255,-68.00223460746929,-68.63667299598455,-68.72965015424415,-68.89622216625139,-68.79895911505446,-68.99124159105122,-69.19111033901572,-69.64343326259404,-70.42708413675427,-70.1441281856969,-69.57758883107454,-70.54139765771106,-70.39164216816425,-70.04259507218376,-69.78973723668605,-69.27517124917358,-69.7902925084345,-70.40751572186127,-70.92684459965676,-71.50316053070128,-71.69566689105704,-71.78575318399817,-71.01935024745762,-70.96047851582989,-71.31012531556189,-72.18983298586681,-71.69737283093855,-70.69962143851444,-71.43030089046806,-72.31449537351727,-71.79899209644645,-71.620186496526,-71.72353715635836,-71.52921338472515,-71.71705939248204,-71.01469494914636,-71.20458700926974,-71.57160526001826,-71.75749966641888,-71.38218736555427,-71.46528961090371,-71.70164451189339,-72.16679980326444,-71.17526176152751,-71.10487235011533,-71.9625320630148,-71.12163539696485,-70.5100007741712,-71.3859747229144,-72.27294441545382,-71.29683415405452,-71.03053052490577,-70.66560097690672,-71.60841423412785,-71.44320043036714,-71.78754376573488,-72.28048528032377,-72.02463580109179,-72.51199503429234,-72.59760993113741,-73.50704766763374,-73.7173557728529,-73.31768473982811,-72.84754429804161,-73.31561261415482,-72.38639996526763,-71.53743108548224,-72.4137949696742,-72.31881908932701,-73.26328805740923,-73.75946731073782,-73.80441347556189,-74.55497498996556,-74.27624185569584,-73.31836662488058,-73.33394591277465,-72.97637198586017,-73.4935699426569,-72.78426079778001,-72.71114710113034,-73.28692875662819,-73.9760441724211,-74.87822333537042,-74.05683606350794,-73.47594123706222,-73.51780862919986,-74.04853047523648,-75.03739568265155,-75.73323217593133,-75.63026095135137,-75.86823513451964,-75.16294931806624,-75.1915517244488,-74.44904640922323,-74.99231421295553,-74.70898810168728,-75.58764668507501,-76.10140487318859,-76.17459333594888,-75.67981764534488,-75.52004217356443,-74.64913083286956,-75.43560381280258,-76.39767377218232,-75.70195051748306,-75.87115077488124,-75.96130585530773,-76.9415897638537,-77.73446982074529,-76.85820292914286,-75.92317143687978,-76.32361657172441,-77.29230412235484,-76.73091849358752,-75.89017976308241,-75.05731814121827,-74.25911683728918,-73.47746184188873,-74.03718327265233,-74.03019577125087,-74.71862785238773,-74.58663170645013,-73.86835044808686,-73.4784635012038,-72.65801583696157,-72.20769548555836,-72.12667873082682,-71.68429438723251,-72.48528772359714,-71.68567361868918,-71.31633885903284,-72.1885322178714,-72.04089843621477,-72.8575270823203,-72.99917342420667,-72.1556375795044,-71.17591299023479,-71.89761901041493,-71.19087085779756,-70.8797258362174,-70.48528116708621,-69.63277327036485,-69.07535129180178,-68.58176354598254,-68.86926625063643,-69.46070312289521,-69.44804548798129,-70.29447442479432,-69.41325408080593,-69.42470112862065,-69.90759443165734,-70.84558571735397,-70.17135934205726,-70.13727058982477,-69.73481422569603,-70.38696593977511,-70.49543585488573,-70.13434275519103,-70.95774607313797,-70.86822148459032,-70.76353412074968,-70.21876771794632,-70.34906090144068,-71.24365912517533,-72.18685325188562,-71.81827304838225,-71.73560333950445,-70.74561901763082,-71.5897509092465,-72.17842181911692,-71.2368827899918,-71.04889704473317,-70.4808705910109,-69.9345973059535,-70.12902243994176,-70.6493553291075,-69.9710991429165,-69.48215328995138,-69.47001394163817,-69.89068302093074,-69.74960373993963,-69.52483183750883,-70.43644296890125,-70.53337295399979,-70.65766466921195,-71.25197438849136,-70.63208093727008,-70.31598609313369,-70.22182075632736,-71.10995949665084,-70.68544354336336,-70.66842008847743,-71.47471279324964,-71.82322495849803,-70.86870245495811,-70.2415499757044,-70.71504273172468,-70.17378566600382,-70.21665735030547,-70.3695609155111,-70.46793816424906,-70.91269720811397,-70.98653152957559,-70.66357181500643,-71.03937917156145,-70.78340514469892,-71.56136400485411,-70.94782350026071,-70.4703888176009,-70.84291192376986,-71.06933211348951,-70.15616570739076,-70.9375361748971,-70.20244478760287,-71.12297224067152,-71.1460835733451,-70.82719953777269,-70.42056539747864,-69.82545311609283,-69.6967668295838,-70.40958278020844,-70.7437999532558,-70.82668562233448,-71.36746550537646,-70.4581704530865,-70.69221798563376,-71.48558015283197,-71.57956348825246,-72.28285437403247,-71.51950533175841,-71.6296905647032,-72.27680613519624,-71.37658531125635,-70.9140109331347,-71.42576484242454,-72.01163890352473,-72.51262330217287,-72.1540193115361,-72.84051418490708,-72.83777849655598,-73.2988467249088,-72.77927923435345,-73.07445761095732,-72.84349028998986,-72.06134038977325,-71.8444864382036,-72.8330681361258,-72.86950911395252,-72.62023982265964,-71.78132155770436,-72.42567594209686,-73.37809913791716,-72.41080359881744,-72.651842859108,-71.7744740867056,-71.29019156843424,-71.8556867656298,-71.80166264437139,-72.6177993323654,-73.30409431830049,-74.24717524275184,-73.4131003995426,-73.53937123250216,-72.55621847230941,-71.69628009339795,-72.35961317736655,-73.26392309414223,-73.07771804789081,-73.11323984805495,-72.2365770386532,-71.44743394525722,-71.34858695883304,-71.97340464778244,-71.0322062424384,-70.70238865539432,-69.99698967952281,-69.02618563035503,-69.06155232526362,-69.30642395606264,-68.99253886658698,-68.4982967027463,-68.42855322966352,-67.76919980393723,-67.96166458819062,-68.07429988635704,-67.22112879529595,-67.87912007188424,-67.5580231002532,-66.90852297982201,-67.19562293123454,-67.89090227615088,-68.58150511607528,-68.93996407976374,-68.39019865356386,-68.8088712352328,-68.95937634725124,-69.55200242390856,-69.08331432333216,-69.87137713562697,-70.01517843082547,-69.92469899216667,-70.25213614851236,-69.35411271220073,-69.70708974869922,-69.12402544775978,-69.3439274886623,-69.66892390558496,-69.36311546387151,-68.39599484112114,-67.96332595869899,-67.36960214097053,-67.94628268759698,-67.8729263888672,-66.97344943927601,-67.31418893672526,-67.06702452618629,-66.99096678104252,-66.65992969134822,-66.556206619367,-67.26429777080193,-66.85831510880962,-67.64880661480129,-67.41040418157354,-67.00503898086026,-67.33279637666419,-67.21741222962737,-68.01421681419015,-67.42288246983662,-66.86412309575826,-66.7325365273282,-66.03427804587409,-66.86864834371954,-67.84782610228285,-67.17236708058044,-66.56225563213229,-65.67297991458327,-66.2240187865682,-65.66688130609691,-65.60191260324791,-65.95495134918019,-65.52659102529287,-65.80221231654286,-65.36534717446193,-64.55804121913388,-64.0420044446364,-64.02513855881989,-64.53170141391456,-64.28971755271778,-63.442187272012234,-62.765627704095095,-62.338221970014274,-62.78917812043801,-62.34398915665224,-63.155054992064834,-63.851740716956556,-64.11784781189635,-64.15462879743427,-64.86867670388892,-65.24153384100646,-64.49958767741919,-64.62733847973868,-64.37805635482073,-63.434333951212466,-62.664558224380016,-63.24558832729235,-64.23319560755044,-64.88384671788663,-64.4166508950293,-63.80612023966387,-63.22639612015337,-63.43251456040889,-63.062303616665304,-62.7922091698274,-62.55104520218447,-61.71319181844592,-62.27681224653497,-61.755083517637104,-61.51583668682724,-61.71394067024812,-62.24387020478025,-63.04735393030569,-62.99794772081077,-63.917820158880204,-63.75121785700321,-63.994871573057026,-64.44450008962303,-63.77108085900545,-64.0257083075121,-64.62604595441371,-64.12844969844446,-64.76051470637321,-63.88748177932575,-62.97200300777331,-63.67300942912698,-63.178360840305686,-63.8777962597087,-63.06924185389653,-63.228951865341514,-62.486769161652774,-62.01236539846286,-61.43225663295016,-62.027766787447035,-61.66498316684738,-60.81066913064569,-60.90298768412322,-61.88492005830631,-62.06225643213838,-62.311866962816566,-61.38505304697901,-62.05774919455871,-61.39462097734213,-61.31198326917365,-60.930573728866875,-61.698070727754384,-60.820449823047966,-60.05442937929183,-60.802540086209774,-61.05818632245064,-61.16632434679195,-60.51109338225797,-59.82689051190391,-58.84646629123017,-58.73610952682793,-58.715156821068376,-57.93186966329813,-58.43588557699695,-59.02575387666002,-58.25213593384251,-58.964217932894826,-59.246141808107495,-58.33325810544193,-58.076471731998026,-57.80784880416468,-57.53737486107275,-56.893178751692176,-56.8984844959341,-57.65555721428245,-57.6499102935195,-56.9164907168597,-56.14639253355563,-55.69015063298866,-56.00564882252365,-55.83371796924621,-56.37070923298597,-55.58902969304472,-55.328366762492806,-55.24984869826585,-54.503192333038896,-53.939380439464,-53.855397794395685,-54.15439809951931,-54.10186048783362,-54.80313734756783,-54.567682239227,-54.76126591395587,-55.108083496335894,-55.518924658652395,-55.917629577219486,-55.5528309205547,-55.65628216136247,-56.11807690002024,-56.27334772143513,-55.60197264375165,-55.483845598530024,-55.52119609294459,-54.57677584234625,-53.58711657812819,-54.08271885942668,-53.686668696813285,-53.071622878778726,-53.48451764183119,-53.54897998645902,-54.28561230469495,-53.91569443233311,-54.40379569446668,-53.92129833577201,-54.2046446595341,-53.521705836523324,-53.31432898156345,-53.056787876877934,-53.92721240920946,-53.07052416354418,-53.23826470505446,-53.19760941946879,-53.32501095952466,-52.32669725222513,-52.75641085905954,-52.61971463309601,-51.675567677710205,-51.84715304430574,-51.116019115783274,-50.95736889913678,-50.117538809776306,-50.6331423050724,-49.647204029839486,-48.7231185301207,-49.272947300225496,-48.92743200156838,-48.381472072098404,-48.23852115590125,-48.00098356185481,-48.48212293861434,-48.26088930293918,-48.97024933900684,-48.08823907421902,-47.41408043447882,-46.58981950394809,-46.181109122000635,-46.048270631115884,-45.970279969275,-45.76020532101393,-45.30519152013585,-44.81986790057272,-44.80083932867274,-45.58613946195692,-45.22020791564137,-46.18378066690639,-45.387534115463495,-46.29692885186523,-46.011630810797215,-46.27253938280046,-45.642923523206264,-45.82842222461477,-45.11263220384717,-45.73231138801202,-45.93519903346896,-46.372668161056936,-46.60869122995064,-47.59809396415949,-47.41470853378996,-47.94369900645688,-47.234184429980814,-47.62502150470391,-46.892084875609726,-47.28422746574506,-47.69911839812994,-47.75959300156683,-47.334970991592854,-47.42239139229059,-47.91189966350794,-48.134812073782086,-48.744578876532614,-47.925199965015054,-47.87341474322602,-48.45835913764313,-48.76810329267755,-48.21220301184803,-49.163407714571804,-48.886286282446235,-48.80639285920188,-49.174094579182565,-49.49905267357826,-49.77035007299855,-50.58864100789651,-50.579591198824346,-50.994398224167526,-50.37539717415348,-50.48217723052949,-50.18739186413586,-49.30249285092577,-50.1706966618076,-49.878886678256094,-49.74550393829122,-49.766484941821545,-48.79794455366209,-49.14923585765064,-49.52505450276658,-50.01884807785973,-50.22915728483349,-50.46863956563175,-49.5414275303483,-49.351368099451065,-49.66291103279218,-48.976173400413245,-48.54996064584702,-48.91644887952134,-48.74571221228689,-49.071159459184855,-48.933952793478966,-48.814240044448525,-48.317086909431964,-48.5633359933272,-49.227493182290345,-49.11747758788988,-49.822750818450004,-49.29043749673292,-49.20526750665158,-49.65451745130122,-49.62019206909463,-49.893624015152454,-49.1731791193597,-48.258143013808876,-48.9334268043749,-48.124646313954145,-47.17400631448254,-47.66971967695281,-48.354503967333585,-49.03452491713688,-48.11132893851027,-48.89051825273782,-48.34346764208749,-48.059795236214995,-47.275805414654315,-48.164026730228215,-48.16310263145715,-47.90074319764972,-47.37312699947506,-47.86213648505509,-47.23848117981106,-47.323508193250746,-47.57674277713522,-48.19067828450352,-48.50066464440897,-48.273985545150936,-48.03244804544374,-47.89483250817284,-48.022709735669196,-48.29912263760343,-48.3683001678437,-49.08090193523094,-48.86344543797895,-49.09208839293569,-49.236024491954595,-48.28548994008452,-49.16199714830145,-49.349466387648135,-49.22116031264886,-48.369540927466005,-47.65853600343689,-48.262417177669704,-48.680923021864146,-49.269640310201794,-50.18571450654417,-49.27750352025032,-49.05113129410893,-49.683480942156166,-49.80121888453141,-49.19403919670731,-48.963261037599295,-48.29868867667392,-47.43718308955431,-46.57980444980785,-46.1881061331369,-45.460142923053354,-44.881755381822586,-45.52994213113561,-44.62078558141366,-44.21896080253646,-43.652402757201344,-44.43208425678313,-44.3925422411412,-43.41738032037392,-43.06557949073613,-43.9255859637633,-44.45211764611304,-45.309308962896466,-45.3870281977579,-44.84176828386262,-44.29752351110801,-43.535742804873735,-43.720614867284894,-44.65455841971561,-44.226489229593426,-44.58780486136675,-44.14582623587921,-43.92509526386857,-42.95387586718425,-42.341257251333445,-42.49339892715216,-42.0846505695954,-42.467860819771886,-43.262277741450816,-42.89544254401699,-42.860028724651784,-41.906610771548,-41.57638526149094,-41.228463797830045,-41.960511742159724,-41.55477319471538,-41.33528768783435,-41.154397706035525,-40.677241219673306,-39.7718198900111,-40.296698212623596,-39.486061718314886,-39.10119803156704,-39.38587515614927,-38.899343099910766,-38.35194180998951,-37.84310307400301,-38.17958322633058,-38.2508953739889,-38.47763765696436,-37.86808162275702,-38.43450756231323,-37.523795248009264,-37.679143629036844,-38.40146347368136,-38.70769749674946,-38.25442101666704,-38.38644542219117,-38.31265133013949,-38.11904544290155,-38.353064821567386,-38.53397436533123,-39.437350103165954,-39.683201206382364,-38.72687116684392,-38.9662255323492,-38.112686255481094,-38.82700684759766,-38.794785767327994,-38.386404749471694,-37.55152218602598,-37.23489429196343,-37.77853250550106,-37.398081314750016,-37.657881763763726,-37.76688577327877,-38.02114792494103,-37.09310685424134,-37.010404504835606,-36.40358637738973,-36.72163967229426,-37.421222815755755,-38.010885142721236,-38.52727443771437,-38.275069353636354,-39.25592181738466,-39.25376494321972,-40.057676911354065,-39.0771526847966,-39.192014143802226,-39.05684119556099,-39.29874027520418,-39.24304412910715,-39.93935508094728,-39.99615665245801,-39.34928602632135,-38.586582630407065,-38.781575054861605,-38.69739368231967,-38.085648798849434,-37.453519450034946,-37.227535516023636,-37.968609913717955,-37.21255040867254,-36.78424347145483,-36.82127934182063,-36.12241711933166,-35.88879072945565,-35.210126019548625,-35.148290453944355,-35.216921837069094,-34.60617321822792,-35.318368058186024,-34.358541808556765,-34.34823030279949,-35.131352256052196,-35.399675495456904,-34.570177825633436,-34.56323788454756,-35.161955377087,-35.15447532385588,-34.72659512469545,-34.1131907152012,-35.00013371836394,-34.95848766574636,-35.44694781769067,-35.89645708911121,-36.76783410273492,-37.19673156645149,-36.64159996248782,-36.174636573530734,-35.34941582987085,-35.43590587284416,-34.98761347029358,-34.228110880125314,-34.38858206802979,-34.77027442585677,-34.13952896371484,-34.38577698729932,-33.93546045292169,-33.82114185625687,-33.683895849157125,-33.09941506618634,-33.09050799719989,-32.83038772176951,-32.371603498701006,-32.70355182979256,-32.465515572577715,-33.440031034871936,-32.65297444537282,-32.29256308125332,-32.41214018734172,-31.66860879957676,-31.218058289028704,-32.07949730986729,-33.0239293705672,-33.99098264193162,-34.48664735304192,-34.53594584716484,-34.68798509798944,-35.557151686400175,-35.18844228144735,-35.08048282470554,-34.567964426707476,-33.59080200828612,-33.84323104005307,-34.58049914147705,-35.14026545640081,-35.14924824330956,-35.89142138743773,-35.183087366167456,-35.81863502738997,-36.668719487730414,-37.39735175622627,-36.87816499918699,-36.67936197621748,-36.722108595538884,-36.54019563179463,-37.24882291210815,-37.249677133746445,-36.92211132775992,-37.595149813219905,-37.853424950968474,-37.602337695192546,-38.18553195660934,-38.59300731448457,-39.286842389497906,-39.888773437123746,-39.77411422552541,-39.44249754445627,-39.08695147233084,-39.49951551947743,-39.54216410359368,-39.9161227112636,-39.71169469272718,-39.966681331861764,-39.111793644260615,-38.69703410798684,-39.375705894082785,-39.42387600103393,-39.946001863107085,-39.35229747230187,-39.48057383997366,-39.03089502872899,-39.701807314530015,-40.42936140997335,-39.9206066490151,-40.00455602770671,-39.96454141288996,-40.65504898969084,-40.43158967839554,-39.75469434680417,-39.942313857376575,-39.722254019696265,-39.719801547471434,-40.01660927431658,-40.31338845426217,-41.27974316757172,-40.8244585567154,-40.444950363598764,-39.62483690492809,-38.870942008215934,-37.89985877228901,-38.40750564262271,-38.66381961340085,-39.52813711762428,-39.880517785903066,-40.34376788465306,-41.26202024985105,-42.07462103897706,-42.70471771014854,-42.43644930003211,-42.01832305593416,-41.42534015001729,-41.76048720534891,-41.890687693841755,-40.97236583707854,-40.0885282359086,-40.88889605225995,-41.466422573663294,-41.26319484272972,-41.53544803056866,-42.25290767243132,-41.811194670852274,-42.08936617476866,-42.86125426320359,-42.29277508286759,-41.977824977599084,-41.24745267117396,-40.592237149365246,-40.32942221965641,-40.048112380318344,-39.42349899420515,-38.458916649688035,-38.59619339834899,-39.48904732707888,-39.84246525308117,-40.407206122297794,-39.572064959444106,-40.02386521920562,-40.035068462602794,-41.010906303301454,-41.05759299825877,-40.341503244359046,-40.93488279636949,-40.73703116411343,-40.59501992119476,-41.29993635043502,-40.795917885378,-41.272327304352075,-40.665226597804576,-40.63718811236322,-40.8967473320663,-39.9251995915547,-40.42937562474981,-39.64072878565639,-38.92047883104533,-39.57839609589428,-40.51385649573058,-40.5563495317474,-41.11737072141841,-41.11490368889645,-40.743795906193554,-39.849238181021065,-39.83256092853844,-39.28018272574991,-39.43776851333678,-38.541960783302784,-38.60289571899921,-39.06735864793882,-38.125167972873896,-38.270092780701816,-39.17933774460107,-39.91543358983472,-39.56661340640858,-40.330850918311626,-40.84974831715226,-39.93263941630721,-39.87411239836365,-40.16033432353288,-39.40749306883663,-38.612801347859204,-37.67394834756851,-38.39950513280928,-38.25728201214224,-37.79298750124872,-37.3263238449581,-37.19504802534357,-37.53069474641234,-37.10748864058405,-36.77059178426862,-37.39633493497968,-37.24040560564026,-36.58756693266332,-36.96934545086697,-36.64632681803778,-36.06902934983373,-36.842811388894916,-37.40997999859974,-36.60778196249157,-35.97478738287464,-36.099653005134314,-35.83840528689325,-36.8158870562911,-37.519164226949215,-37.62952564610168,-36.76358008570969,-36.776379087008536,-36.18018381856382,-36.362883891910315,-37.123340650461614,-36.548484614118934,-37.211943860631436,-37.80091535765678,-37.70520277926698,-37.62970729963854,-37.00527294026688,-37.16070758085698,-36.34097026567906,-36.29838409041986,-36.16358709335327,-35.4380968878977,-36.42956959223375,-37.12677423423156,-37.89306723931804,-37.89694357290864,-38.82608469808474,-38.312417792622,-37.85385461524129,-37.70002021966502,-38.41815284918994,-37.5499569689855,-38.42147719487548,-37.618170868605375,-37.715429820120335,-37.01640711305663,-38.01090546650812,-37.33767791977152,-36.822008738759905,-37.812763719353825,-37.622464432846755,-37.258607159834355,-38.11056479206309,-38.5772424293682,-39.48792661912739,-38.59255787311122,-37.75891289161518,-38.019251849502325,-37.60635870182887,-37.081969724502414,-36.293884774670005,-35.83615905838087,-35.77922109887004,-36.451495143119246,-36.68418091116473,-36.56487329676747,-37.419625247363,-38.305779120419174,-38.88016192056239,-38.37088664993644,-38.17989833885804,-38.571776597294956,-38.46422804892063,-38.323841471690685,-38.6449647131376,-39.43350695632398,-38.580060901120305,-39.04480855213478,-39.18708153581247,-38.74500848958269,-39.434665656182915,-38.976766855455935,-39.06311332480982,-38.90686797210947,-39.101892561186105,-39.878869912121445,-40.21092040324584,-40.11612239247188,-40.293905075173825,-40.946986792609096,-40.33492674259469,-40.35767636168748,-40.62866548029706,-40.5086511564441,-40.004523107316345,-40.23053551092744,-40.42542046029121,-40.43062771903351,-40.43551533296704,-40.857615077868104,-41.605237586423755,-40.85807511815801,-41.01369519205764,-40.624249392189085,-40.30006985226646,-39.33605880616233,-39.78467654529959,-40.75730932177976,-40.45396814029664,-40.614457266405225,-41.186991774477065,-40.46552284853533,-41.00424252776429,-41.961020809132606,-41.24879534728825,-40.25619084108621,-40.38073903974146,-41.0411577578634,-41.55192356836051,-41.780253960751,-42.23779434990138,-41.41205649962649,-41.12623314233497,-41.28553723823279,-40.49534153146669,-40.94418116565794,-41.22358588920906,-40.95696589304134,-41.30550759052858,-41.59049451025203,-41.94412721507251,-42.11442935699597,-41.56532278005034,-41.296587268356234,-41.99438197538257,-41.728037658613175,-42.6999959172681,-42.48431786708534,-42.55597591679543,-41.572484320029616,-41.0058204731904,-40.18636094266549,-40.855211606714875,-40.883926160633564,-41.44397493125871,-41.06768564879894,-41.745182261802256,-41.79957690509036,-42.028604817576706,-42.38917000358924,-43.11048378283158,-42.55368275893852,-42.82821200834587,-42.14059961074963,-42.30614908831194,-41.70346096297726,-41.18141615577042,-40.23814205080271,-40.391324043273926,-39.903443629387766,-40.78741676406935,-40.620009078644216,-40.69486975716427,-41.21921849064529,-41.43206576490775,-40.836766647640616,-41.371760302223265,-42.045607367064804,-42.05358156468719,-42.22657419461757,-43.14169047307223,-44.12751490948722,-44.85769765637815,-44.410014694556594,-45.338652823120356,-44.70681980345398,-45.06884157564491,-45.96496116090566,-46.21767480112612,-46.940729171969,-45.98111507296562,-46.87153695523739,-47.66014725342393,-47.02637108275667,-47.48213811265305,-48.278590738307685,-47.8693892871961,-47.92651506513357,-48.82547371881083,-48.22337753418833,-47.44715554686263,-48.11487163184211,-48.47989054117352,-49.3370034112595,-49.19056278420612,-50.11867476720363,-50.62701609544456,-50.55609011044726,-51.16786663047969,-50.20027968753129,-50.95164428092539,-51.63290344271809,-52.073359662201256,-52.83740598289296,-52.39292267570272,-52.15847825072706,-51.817783426027745,-51.555649565998465,-52.036256291903555,-51.651050521060824,-50.92272573849186,-51.67401170823723,-51.79295148840174,-50.963213585317135,-50.3465968715027,-49.673821651376784,-49.56045452039689,-49.61379159241915,-50.3987898924388,-49.69175193272531,-49.80555525096133,-49.73064094595611,-49.126656875014305,-49.57645939942449,-50.428785416763276,-50.15915721328929,-49.19975082250312,-49.70747166033834,-49.56502347206697,-48.81578773120418,-49.21189789008349,-49.00243980018422,-49.710733698215336,-49.927924412768334,-49.41814549220726,-49.95657220995054,-49.92469778377563,-49.16044953186065,-48.98028269642964,-49.89840425318107,-49.89521356858313,-49.11904273740947,-49.81258450169116,-49.089319156017154,-48.33606931194663,-48.795126885175705,-48.93060522060841,-49.3929926045239,-50.15743348794058,-50.22709202719852,-50.58132909797132,-51.50450374186039,-51.47498892620206,-50.73109299596399,-51.442164164502174,-51.262711881194264,-51.5380233284086,-52.43690025340766,-52.43061657669023,-52.182035657111555,-51.194149705115706,-50.331795861478895,-49.561341057065874,-49.13401750382036,-48.18908293219283,-48.87833923008293,-49.69134459365159,-48.90092414943501,-48.95144938165322,-48.12928022723645,-48.17012406513095,-48.44269895274192,-47.605552576016635,-48.334740325342864,-48.630081191658974,-47.860870950855315,-48.4903535596095,-48.163111194968224,-47.4582806956023,-48.169082526583225,-48.28934667818248,-48.65318100573495,-48.07047804677859,-48.15782303921878,-48.05104053905234,-47.595666884444654,-48.448169065173715,-49.207336893770844,-49.18214952852577,-49.94617161760107,-49.482299864292145,-50.16316628921777,-49.94392967829481,-49.2070250059478,-48.41855359636247,-47.56753453658894,-47.60036734584719,-47.05594810191542,-47.291994001716375,-47.45911904843524,-48.16769747110084,-47.8500284710899,-47.85499900812283,-48.31997676379979,-47.80389865860343,-47.568668408319354,-46.878286567050964,-47.34613330150023,-48.05625958042219,-47.1074874419719,-47.34912606654689,-47.8442779914476,-47.0054724519141,-47.91063274303451,-47.17054138099775,-46.949042396154255,-46.15922603709623,-46.092825770843774,-46.85150160221383,-47.24098393181339,-46.436200357507914,-46.15670910291374,-46.05467060394585,-45.85505467839539,-45.353219139855355,-45.17764024017379,-44.76662011165172,-44.59197800187394,-45.0126894316636,-45.74205156369135,-45.604413732886314,-46.021676811389625,-45.8469888176769,-46.22277087299153,-47.17834778968245,-47.2008630936034,-47.6743617230095,-46.874866352882236,-46.01676318049431,-45.21424782695249,-45.29110616724938,-45.545387625694275,-45.396118013653904,-45.654729953967035,-44.678489638958126,-44.59218851104379,-45.31164194876328,-44.73684277338907,-44.049234942067415,-44.343180927913636,-44.43705957848579,-44.536346059758216,-44.09197737229988,-44.05102034565061,-43.97559917718172,-43.85604562610388,-43.404826926998794,-43.184072316624224,-43.0806845263578,-42.20933928806335,-41.914921877905726,-41.979638915508986,-41.75807534903288,-42.58368029957637,-43.48017469281331,-43.38375915354118,-44.229592432733625,-44.000619826838374,-43.609592077322304,-43.76473605260253,-43.43771085655317,-43.30649560224265,-44.071657123975456,-43.52264974266291,-44.00349576352164,-44.96416283072904,-44.93981157755479,-45.26022877590731,-45.25185470934957,-44.903340061660856,-44.79726270399988,-44.17355783376843,-44.93467213585973,-44.59712815890089,-44.576231605838984,-44.99365481035784,-44.140737576875836,-43.85825533559546,-44.55135155143216,-44.42171646747738,-45.4038321939297,-46.11236743349582,-46.57752568554133,-46.39261365495622,-45.96703458484262,-46.07986611826345,-47.073923733551055,-47.243998332414776,-46.932783626019955,-46.443298218306154,-46.42607211321592,-46.18969928799197,-46.430760650895536,-45.88523163693026,-46.19671564269811,-46.784268368035555,-46.43368173902854,-46.24724184256047,-45.314245868939906,-44.83480114955455,-44.15370544604957,-43.26908381795511,-44.19102638307959,-43.640190980862826,-42.69031240604818,-43.05287286825478,-43.10207874793559,-43.20128032332286,-42.60072408709675,-42.21457171160728,-41.29957911558449,-40.63377745077014,-40.02489730948582,-39.54369880724698,-38.705109557602555,-39.156749319750816,-40.084107872564346,-39.535202025901526,-39.85442850878462,-39.99115127231926,-40.58792592352256,-40.38492109673098,-40.59612920880318,-40.10512855928391,-39.60165873495862,-40.0369925070554,-40.163619202096015,-40.16602939646691,-40.26684784376994,-41.180565365590155,-40.542165043763816,-41.053271079901606,-40.649133931379765,-41.36126091144979,-41.6600809218362,-42.0403031622991,-42.77254034532234,-42.0201244042255,-41.365982609800994,-41.46121944114566,-41.162024807650596,-40.21926453104243,-39.63117143092677,-39.61934281094,-39.6450761561282,-39.232448750175536,-38.55521283950657,-39.27595443837345,-39.16964284190908,-38.84131888812408,-39.19942372851074,-39.8181362869218,-39.19535639230162,-38.45180731313303,-37.93311154469848,-38.2510745129548,-37.85636114422232,-37.159627933986485,-37.566848068032414,-36.92452104669064,-36.13165698107332,-35.25989887677133,-35.51741615822539,-35.315299617592245,-34.573874252382666,-33.922666168771684,-34.74350661691278,-34.31330884061754,-35.26454221783206,-36.07564045069739,-35.11522861151025,-34.31369789689779,-34.132165011484176,-34.013986489735544,-34.68283109460026,-34.68621315807104,-34.84631352685392,-35.25967242568731,-36.250313084572554,-35.802879384253174,-35.69669701019302,-36.304289476480335,-37.097192998509854,-38.01195962075144,-37.26265377132222,-36.95985497394577,-37.02436288399622,-36.600273648742586,-35.77902706619352,-36.28951066872105,-36.594982360024005,-37.16563052916899,-37.837896787095815,-38.71767151169479,-38.38921135663986,-38.23817562172189,-38.04162474628538,-38.79876296594739,-38.42742340033874,-37.599662522785366,-38.21654247911647,-38.055924002081156,-37.791034487076104,-38.142232668586075,-38.80079441703856,-39.50921063264832,-38.73145143780857,-38.24441224010661,-37.392336652614176,-38.155700619798154,-37.83453912148252,-38.16254328330979,-37.89988185092807,-37.14235353702679,-37.08783625299111,-36.88552189664915,-36.20911371940747,-36.05100404471159,-35.959277029149234,-35.486144254449755,-35.13654371071607,-35.820748422294855,-36.485104421619326,-36.36694543249905,-36.51697327522561,-36.392984732519835,-36.181519920472056,-36.445517940446734,-36.03549420833588,-35.72681111795828,-35.06470948876813,-35.593740372918546,-35.15101682860404,-35.13530407566577,-36.04937979578972,-35.27922280365601,-34.44831866258755,-34.95017226599157,-35.615258012898266,-35.314872139599174,-34.98276472929865,-33.99771464569494,-34.09479009313509,-34.79357113176957,-35.7840618272312,-36.05522049870342,-37.05262300930917,-36.44676016969606,-35.47710109734908,-35.490997762884945,-35.13936472358182,-34.78558180015534,-35.098915512207896,-36.08707488141954,-36.172557913232595,-35.55346336774528,-35.21724101155996,-35.577561809681356,-35.21547388564795,-36.214931642170995,-36.6039939741604,-36.382076520472765,-36.45263919280842,-37.44788188440725,-36.49564938200638,-36.71452309191227,-36.117425127886236,-35.95104178087786,-35.44722298160195,-34.80876669846475,-35.14173300424591,-35.13934017671272,-35.83453889703378,-34.90690451627597,-34.3774891840294,-35.16075531067327,-36.11240894487128,-35.23693080805242,-35.358055682852864,-35.056124814320356,-35.98743806639686,-35.46847321931273,-35.780830891337246,-36.69729186594486,-36.53202001331374,-35.862712083850056,-35.00989360548556,-34.21048140292987,-34.325053587090224,-35.19587035570294,-35.51517245080322,-35.842346953228116,-35.1391642736271,-34.40090718725696,-35.14309506164864,-35.34870795859024,-35.254342917818576,-35.26697134086862,-35.19632823439315,-34.81213697837666,-34.852632727939636,-34.41946103423834,-33.47435072995722,-32.51476949220523,-32.310381221584976,-32.60367859248072,-32.60482657374814,-31.76643024990335,-30.910279396455735,-29.934412132017314,-29.556460743304342,-28.998837722931057,-28.611368659883738,-28.568896325305104,-28.597724748775363,-29.53322855802253,-30.118937010411173,-29.479134012944996,-29.50830237707123,-28.51768482103944,-29.280137210153043,-29.78734681243077,-30.658243275247514,-30.171299376990646,-30.38653526082635,-30.572710038162768,-30.60789096588269,-30.930952338967472,-29.983890514355153,-30.088838468771428,-29.217778699938208,-29.23944107675925,-28.61742313299328,-28.687928149476647,-29.014110453426838,-28.07625519949943,-27.219353860709816,-27.413931880146265,-27.691222331486642,-27.87604434043169,-27.984954979270697,-28.491889778058976,-28.018159926403314,-28.164783012121916,-28.812150543089956,-28.99624451296404,-29.01048274151981,-28.432895632460713,-27.89603312080726,-27.081106583122164,-27.562271528877318,-26.792125823907554,-27.180577269289643,-27.75388451013714,-28.519930423237383,-28.950184444431216,-29.466037065256387,-29.594718205276877,-29.95283688325435,-29.98476072680205,-29.102999536320567,-29.34071669401601,-29.770605345256627,-30.401296025142074,-30.68034751014784,-31.331899621989578,-31.199789209757,-31.568064539693296,-31.983869437128305,-32.30094855558127,-31.729377396870404,-32.210433756466955,-33.11027786601335,-33.309691853355616,-32.72585392417386,-33.15465515339747,-33.887516892980784,-32.99383042054251,-32.769286680966616,-32.36200886173174,-32.85889535723254,-32.760907704010606,-32.58316094940528,-31.588048222940415,-30.970793064218014,-30.53859887039289,-30.353863725904375,-29.585233793128282,-28.960964281577617,-28.357969576958567,-28.866349331568927,-27.95776113215834,-27.85062436759472,-27.582138252444565,-26.87238436937332,-26.296052537392825,-26.66209812555462,-26.5926770363003,-26.94320242293179,-27.43213266832754,-26.839780187234282,-27.777879017870873,-28.488021575845778,-28.572731976397336,-28.118477466981858,-29.106783267110586,-28.30473580909893,-28.165439838543534,-29.110281735192984,-29.23918047081679,-29.448359148111194,-28.963978303596377,-29.619623084086925,-30.36488978425041,-31.10328743979335,-31.03114037029445,-31.61261030472815,-30.835072997026145,-31.71329392446205,-32.56347200181335,-31.65859856037423,-31.834520370233804,-32.601048681885004,-33.1928337784484,-32.49210455594584,-31.968254309147596,-30.991808332968503,-31.156376437749714,-30.91418798873201,-30.817418466787785,-30.97474498860538,-31.974723785184324,-32.56767040910199,-32.840885071549565,-32.25095321377739,-32.536277424544096,-33.05335932737216,-33.838309527840465,-34.718251920770854,-34.799797385931015,-35.535030546598136,-35.619285880587995,-36.101898204535246,-36.78774762758985,-36.46922237239778,-35.90878400206566,-36.88808675855398,-36.39296284504235,-35.99427107581869,-35.340932303108275,-35.33720357855782,-35.26993074314669,-35.471984315197915,-35.40498709306121,-34.91896492289379,-35.499690217431635,-35.844897139817476,-36.06289527704939,-35.637338519096375,-36.354080433025956,-36.956745410338044,-36.17437739809975,-36.87408591108397,-36.18007125519216,-36.2150988234207,-35.48033048817888,-35.98893674463034,-35.41600928362459,-35.7465534331277,-35.95864794543013,-35.016089299693704,-34.974610360804945,-34.961614079773426,-34.10098354425281,-34.88914740039036,-35.12900703120977,-35.04376689810306,-34.32529017003253,-34.511738556902856,-35.397060092072934,-34.40378382336348,-34.22370554599911,-34.67604438215494,-34.821408019866794,-33.849326346535236,-34.02787632262334,-34.424586264416575,-34.46580507652834,-35.18402392230928,-36.03786352276802,-36.419722244143486,-37.159719416406006,-37.602506395895034,-36.832604873459786,-37.66886286251247,-38.145076828077435,-37.85644165240228,-37.47425575274974,-36.754839587025344,-36.48705987352878,-35.87795860879123,-35.624816024210304,-36.540231053717434,-36.144075917080045,-37.07489966368303,-37.93887139810249,-37.72108171181753,-37.21246567182243,-37.558421697001904,-36.91573054948822,-36.76173413870856,-36.920711343642324,-36.92302905349061,-36.31007084483281,-36.534036497585475,-35.77284918166697,-34.85570843378082,-34.52212766138837,-34.112437958363444,-34.50284950248897,-35.334468678571284,-34.457423985004425,-33.5135478740558,-32.73936368897557,-32.73570105899125,-33.63679150864482,-34.579983385745436,-34.845605484209955,-35.698702808469534,-35.93881518021226,-36.57723457692191,-35.75639126403257,-36.02055676933378,-36.98875056114048,-36.5390090723522,-36.01414021058008,-35.91536202840507,-36.44868473242968,-36.863485902082175,-36.01624087616801,-35.31231263605878,-35.093625461217016,-34.54982278868556,-34.203414670191705,-34.516269327607006,-33.91262712655589,-34.33294341759756,-34.89830011781305,-34.28389680245891,-34.863562730606645,-35.80716829793528,-36.31663355883211,-35.81651349971071,-35.224487303290516,-35.510359432548285,-34.933757117949426,-34.986418748274446,-35.51570198405534,-36.32859774492681,-36.707191101741046,-37.40220936620608,-37.92706787912175,-38.78493135003373,-37.798729308880866,-37.74087268533185,-38.293745800387114,-38.857595460955054,-38.30361572466791,-38.139787930529565,-38.00818138662726,-38.87203005468473,-38.82021832978353,-39.095329673960805,-39.885667159222066,-40.40046718576923,-40.52202524477616,-40.52237220807001,-39.993764034006745,-40.50225058430806,-39.93496369710192,-40.40769145498052,-41.197791561018676,-41.18553131679073,-41.6812010044232,-42.27346424525604,-42.30728962831199,-41.53752282774076,-41.99162101279944,-42.6207714159973,-42.4632088188082,-43.3606042121537,-44.16962939687073,-43.365376802627,-43.16452870517969,-43.584830357693136,-43.56995733547956,-43.84766572294757,-44.823860260657966,-44.8071311772801,-43.88032383611426,-43.81304906727746,-43.469555233139545,-43.26150311296806,-43.76749467616901,-43.49138787807897,-44.298311247490346,-44.32624194538221,-43.40827386872843,-43.40256229881197,-43.23667981848121,-42.66152472188696,-43.599524156656116,-43.22823820542544,-43.39849772723392,-44.201049495022744,-45.03697703592479,-45.32072368217632,-46.12154319323599,-46.80928928917274,-46.31302334368229,-45.356576022692025,-45.363031153567135,-46.187647096812725,-46.69170904858038,-46.573731418233365,-46.60005098162219,-45.925779913086444,-46.79956788616255,-47.2480579521507,-46.92334798257798,-47.47302611684427,-47.190359860192984,-47.46743427263573,-47.673420754261315,-47.71244247164577,-47.39735477371141,-47.9933984647505,-47.59433600446209,-47.54217516677454,-48.164847293403,-47.99612243101001,-47.13185723917559,-47.45872983755544,-47.76033742586151,-48.371374636888504,-47.864808222744614,-47.180885720066726,-46.226142142899334,-46.65672649117187,-46.49674785323441,-47.04181862575933,-46.28641569474712,-46.041475331410766,-45.4111468270421,-45.390805140603334,-46.09109512902796,-45.1243622074835,-45.096867757383734,-45.90421341126785,-45.01123568508774,-44.4854770754464,-45.1642396543175,-45.00227261474356,-44.30297917453572,-44.223449531942606,-43.62977419467643,-44.43014034628868,-44.895255740731955,-44.08777951216325,-44.36423773644492,-44.564523983281106,-43.95075328042731,-44.5209145154804,-43.68777143070474,-43.58246217202395,-43.73862571828067,-43.57077133376151,-44.531682673376054,-44.79493067506701,-44.056022942531854,-43.08047794550657,-43.38165302760899,-43.19668604293838,-42.99504650058225,-43.69387596799061,-43.471090777311474,-44.1858151583001,-45.17053319327533,-45.24234570702538,-46.14665382867679,-46.3999661016278,-45.89953418960795,-46.0194358676672,-46.64372493233532,-47.133042734116316,-47.903315261006355,-48.69533459562808,-47.85406199749559,-48.34982086159289,-48.536846794653684,-49.3982218648307,-50.281214461196214,-50.467351959552616,-50.36953910347074,-51.30547621566802,-50.66638195607811,-50.08989103231579,-50.796418737620115,-51.70976118789986,-51.29641337133944,-50.55697541916743,-50.79881899151951,-50.43805662728846,-51.33433698862791,-51.53111692564562,-51.40348915057257,-52.33170018484816,-51.89383643493056,-50.92041269876063,-50.318430710118264,-49.95108379190788,-50.56829889630899,-50.463464757893234,-50.66196858836338,-49.998882266227156,-50.308224321808666,-50.751805521547794,-49.99891120148823,-50.461493401788175,-50.55967683298513,-51.224689446855336,-50.385556570254266,-50.34278147481382,-50.11089794104919,-50.53847377980128,-50.18810928147286,-51.11358625302091,-51.46855170466006,-51.20062797795981,-50.34558995394036,-51.05921923695132,-51.12122398009524,-50.743160866200924,-49.83958478504792,-50.56801457423717,-49.69766905438155,-49.06691936869174,-49.269767657388,-50.034890197683126,-50.75023317383602,-50.98240938549861,-50.680480655282736,-50.84840586967766,-50.1669606436044,-50.67738826526329,-50.053755794651806,-49.5063101220876,-50.11750641418621,-49.16616616770625,-48.99497770098969,-49.01457344787195,-49.8630442507565,-50.11760998843238,-50.245478593278676,-49.94375977292657,-49.89776917407289,-50.23202999448404,-49.624766221269965,-50.60865558544174,-50.04470663238317,-51.02302950108424,-50.172579462174326,-50.86163078295067,-51.603191575501114,-51.95603826455772,-51.36679393844679,-51.5360866189003,-52.40452317800373,-52.70558055629954,-52.663191113621,-52.03099093493074,-52.6449358612299,-51.749959856737405,-50.86490298761055,-50.57457730732858,-51.07945471582934,-51.13358384836465,-50.72509140660986,-51.373002484906465,-51.12116974685341,-51.506618397310376,-50.78833122225478,-50.63766928343102,-50.30810005450621,-50.99132700264454,-51.72400169353932,-51.99551583873108,-51.03805017005652,-50.66772617585957,-50.11197560047731,-49.894099632743746,-49.078109859954566,-49.26719956565648,-49.83872805768624,-49.09874550718814,-48.14843065151945,-49.009247299749404,-49.47270604176447,-48.56655064318329,-48.00541620887816,-48.75996479857713,-49.565974118188024,-48.74661087198183,-48.26775858877227,-48.6234703422524,-49.40175732783973,-49.67606294481084,-49.40415761992335,-50.30490272678435,-50.23865825915709,-51.05095410812646,-51.64062280533835,-52.415904617868364,-51.9969967873767,-51.45262467628345,-52.013182438444346,-51.55010601412505,-50.6700186310336,-50.87407805817202,-51.30220017302781,-50.751681711059064,-50.273042359389365,-50.114124273415655,-49.154483144171536,-49.23861958226189,-48.633798404596746,-49.01064828643575,-48.21422393480316,-48.121750867925584,-47.53815677808598,-46.581219343002886,-45.622564491350204,-45.15105332620442,-44.811067109927535,-44.51406196085736,-43.808047177735716,-44.61085477564484,-43.697212608065456,-43.791769174393266,-42.82899296237156,-43.66306012077257,-44.55239719245583,-44.04352385178208,-43.33695201901719,-42.35413229651749,-42.20882705692202,-42.19621822005138,-42.01434190245345,-42.03928606817499,-41.13188121840358,-40.34584606252611,-39.43027396220714,-39.31202313210815,-38.56590386480093,-38.206040512770414,-37.56471908185631,-36.63624268537387,-36.56128044379875,-36.117079531773925,-35.20707111386582,-34.68374113319442,-34.84487522672862,-35.44868105975911,-36.264224340673536,-35.61522289086133,-36.43667460186407,-36.486609164625406,-36.89558630809188,-36.67952695302665,-35.774244545493275,-36.110752107575536,-35.82761567411944,-35.73027694830671,-35.21169881289825,-36.175832877866924,-35.924748852383345,-36.065650957170874,-36.66003579692915,-36.471277489326894,-36.37921841349453,-35.86013711290434,-36.59518010541797,-36.960701525211334,-36.559279318433255,-36.3487936523743,-35.363303599879146,-35.10232921829447,-34.5600152281113,-34.861949247308075,-34.64527034852654,-34.20645285723731,-34.251417505554855,-34.47433133190498,-34.8624908560887,-35.54386528162286,-35.61641445290297,-36.26537734409794,-36.58152252761647,-37.27568351151422,-37.26335816178471,-36.313430131878704,-36.40372659312561,-36.56269636703655,-36.64210398448631,-36.68934419518337,-36.4032047316432,-35.67144308472052,-35.31781229702756,-35.683012733235955,-35.320523095782846,-35.96668187621981,-36.101019530091435,-35.13613817002624,-35.15305790118873,-35.380213170778006,-34.450707151088864,-35.36098255356774,-35.59148855833337,-35.35884375870228,-35.64931669086218,-35.67516116471961,-35.67143748421222,-35.62670937925577,-35.40188488410786,-34.93724198639393,-34.92817233968526,-34.17525632213801,-33.572202931623906,-33.30460042273626,-33.074268385302275,-33.16437026159838,-32.548312853556126,-32.85098553402349,-32.036056760232896,-31.24948110198602,-30.86189400125295,-31.209189811255783,-30.907264738343656,-31.47332089394331,-31.599929758813232,-31.045184902846813,-30.66021124832332,-31.353078772313893,-30.953594758640975,-30.24015762237832,-30.902181312441826,-29.917013946454972,-30.622856175526977,-31.60410709353164,-31.996463298331946,-31.938545926939696,-32.595466300379485,-33.494699836242944,-32.60452773142606,-32.18900345591828,-32.8020886820741,-32.57126247184351,-32.442566129378974,-32.393182910978794,-32.90277670836076,-33.24353344831616,-33.096599431242794,-32.67556129163131,-32.905969630461186,-33.01537364022806,-32.56980657437816,-32.0538050881587,-32.93188528018072,-32.16415242291987,-31.914652002044022,-32.68433927092701,-32.32868930557743,-32.37550385808572,-32.296039312612265,-33.10136714018881,-33.91329637635499,-34.420457494445145,-34.5375447422266,-33.79849595949054,-34.41158201126382,-34.03920935746282,-33.87809106754139,-34.15251775411889,-34.75047219963744,-35.00757574522868,-34.99728092784062,-35.66603504354134,-36.24514319328591,-35.911784044932574,-35.11692263325676,-35.665316462516785,-35.40531954076141,-35.273672983050346,-35.80615079496056,-36.04257565783337,-35.29890820430592,-34.808474753051996,-34.31586033757776,-35.2779584270902,-36.12514271074906,-36.673312925733626,-37.0799991437234,-37.1829254119657,-36.24706567404792,-36.39834463968873,-36.00440434599295,-35.614395605400205,-36.35956456512213,-36.84898065729067,-36.74173363717273,-35.877240262925625,-36.56250273017213,-35.740376306232065,-35.04415467334911,-34.33357626805082,-35.12468627374619,-34.60383826261386,-35.4437295855023,-34.51951595349237,-34.626765119377524,-33.67318711010739,-33.464302397333086,-32.78804402239621,-32.3489111578092,-33.057045257184654,-32.7347948201932,-33.196806884836406,-32.52739465562627,-33.35107172699645,-33.31355584412813,-33.0336081054993,-33.59265741566196,-33.61115391878411,-34.08697470463812,-35.005993525497615,-35.2560636154376,-35.510518732480705,-36.49227509275079,-35.72325281985104,-36.54377131070942,-37.32757136505097,-38.05746499495581,-37.96722278743982,-37.13368050567806,-36.93451973469928,-36.84606828447431,-37.50625839503482,-38.36238106992096,-37.880406736861914,-37.85875712428242,-37.59789923205972,-38.000652791932225,-37.71598546812311,-38.36757124075666,-37.852893341798335,-37.40898988908157,-38.040664094965905,-38.29242078028619,-38.36766137368977,-37.51124374801293,-38.4011273290962,-37.92378836637363,-38.78511902876198,-39.48374018445611,-40.40489874687046,-40.64782820083201,-41.047194353770465,-40.73048734059557,-40.985524961259216,-41.33655081083998,-41.90716802049428,-42.207360761705786,-42.76645354228094,-42.69097396824509,-42.14234950346872,-41.52153454627842,-41.28539654612541,-41.60024277912453,-42.36259161448106,-42.166990905534476,-41.536400239914656,-40.57235635863617,-39.84295846382156,-40.09420180460438,-40.09458593837917,-40.092924253083766,-40.836778429336846,-40.54176067048684,-40.86624769913033,-39.87497202027589,-38.937912116292864,-38.79518273891881,-37.996087038423866,-37.89153410261497,-37.89651768095791,-37.56507162377238,-38.44367930153385,-39.19490412436426,-38.448363290634006,-37.856382944621146,-37.00475512398407,-36.14552832162008,-36.59769114013761,-36.997589752078056,-36.995740584563464,-37.91625150386244,-38.32554694684222,-38.09025089070201,-37.255834298208356,-37.244181531481445,-36.687232290394604,-36.59036233834922,-36.122369970194995,-35.18242791527882,-35.960252640303224,-35.118869996163994,-35.296260219532996,-35.47309257322922,-34.710446648765355,-35.588136124424636,-35.739684265106916,-35.384120606817305,-35.19834364019334,-34.78950838558376,-34.501475791912526,-33.78234365861863,-34.503258584067225,-34.27111248439178,-33.437073468696326,-33.04285757150501,-32.09565798379481,-32.14451631112024,-32.442612102255225,-31.646304280962795,-31.752643219195306,-31.187348345760256,-31.60392358712852,-30.882605219259858,-30.347308157011867,-30.14366798521951,-29.690244502853602,-29.049274211283773,-28.894124627113342,-28.819851257372648,-29.541730855125934,-29.323157861828804,-28.686330194119364,-27.842268832959235,-27.672169883269817,-27.32280005235225,-26.366535742301494,-26.26524884160608,-26.208940795157105,-25.471739383414388,-26.46556501183659,-25.84163493802771,-26.27227811003104,-25.845466988161206,-25.22060158662498,-25.029556460678577,-25.391247945837677,-25.153878612443805,-24.19829211337492,-24.625303654000163,-25.36181235173717,-25.96518945833668,-26.180229384917766,-25.182289883494377,-25.056134475860745,-25.222517665009946,-26.075762359891087,-26.88713554153219,-27.083778717555106,-27.213536504190415,-27.692717318423092,-27.016957220621407,-26.856264791451395,-27.653227016795427,-26.93385879183188,-26.78500219527632,-26.157834449317306,-26.70929623581469,-27.497269256040454,-26.639761575032026,-26.476397132966667,-27.1581849437207,-27.123320914339274,-27.19132253481075,-27.342757578007877,-28.062179462984204,-28.0791503819637,-27.82935672812164,-27.02862807083875,-26.78053684346378,-26.486956268548965,-26.072705233935267,-26.11185716232285,-25.85058239940554,-26.77650580741465,-26.29839995643124,-25.659478011075407,-25.904397274833173,-26.644386371131986,-26.305024292785674,-26.245470268651843,-26.81370691070333,-26.37515965057537,-26.546527640428394,-26.709771779365838,-26.345983436331153,-25.3896869905293,-25.490442178677768,-26.39848753903061,-26.416008971165866,-26.18460166081786,-26.54958142945543,-27.04400509223342,-26.071402433793992,-25.214626827277243,-24.368211144115776,-23.611620627343655,-24.0879007675685,-24.71225222153589,-24.41280488530174,-23.718179892748594,-23.02578340098262,-23.372413761448115,-23.65960002411157,-23.022021651268005,-23.117532451171428,-22.686522285919636,-21.791973914019763,-21.130919544026256,-20.959201178047806,-20.53757247282192,-21.194940176792443,-21.050705421715975,-21.262183517683297,-21.63529260037467,-21.57975123077631,-21.51044185226783,-21.541846020612866,-20.878816578071564,-20.36972791608423,-20.174248005263507,-20.621154363732785,-20.37048008153215,-20.745700144208968,-19.773833121173084,-20.741653044708073,-20.82543773530051,-20.468014681711793,-20.340090666897595,-19.36221446376294,-18.553765105083585,-17.775457369629294,-18.21967104356736,-18.02847580704838,-18.968010384589434,-19.20197871979326,-18.810111824888736,-18.482429365161806,-18.881451559253037,-18.699551194440573,-18.22979700099677,-18.288245225325227,-18.85890435380861,-19.18630210822448,-19.540725876111537,-19.993644017726183,-19.456660233438015,-18.778736488893628,-18.73578627081588,-18.600197413936257,-18.457492030691355,-18.872311618644744,-19.761208874639124,-20.13647517422214,-20.191036033444107,-19.851781806442887,-20.252238764427602,-19.318325391039252,-18.883704090025276,-19.82660658331588,-19.854476591106504,-20.325418269261718,-20.7595243062824,-20.595359123777598,-21.398016600869596,-20.56717587634921,-20.723969937302172,-21.17113972455263,-22.061272104736418,-21.316399143543094,-21.682263730093837,-21.64821486501023,-21.790484791155905,-21.45059385104105,-21.57806528918445,-20.91441115923226,-20.152636709157377,-19.436332881450653,-19.268530040048063,-19.563732856418937,-19.636443004012108,-19.841492836829275,-19.540470611769706,-19.980795281473547,-19.25924849929288,-20.018871170002967,-19.331117432564497,-19.502686583437026,-20.408550749067217,-19.459684106055647,-19.657054094132036,-19.837767048738897,-19.172079662326723,-18.36244445759803,-18.393715663347393,-19.287413692101836,-18.586678114254028,-19.403252077288926,-18.718783799558878,-18.16229740763083,-18.15990721154958,-18.60774986166507,-19.512031152378768,-19.823206438682973,-20.118796383030713,-19.905307453591377,-20.805440398864448,-21.66499564796686,-21.112863963469863,-20.19544388819486,-20.26050302758813,-19.736787781119347,-18.951239715795964,-18.527673206757754,-18.004960616119206,-17.94691250566393,-18.81801575422287,-17.828423872590065,-17.926999032497406,-17.48391406517476,-16.909026566892862,-16.149405118077993,-16.665178115479648,-17.522405236493796,-16.87129840394482,-16.643858066294342,-16.70628424361348,-17.163123251404613,-17.821364417672157,-18.014747957699,-17.290052839554846,-17.1248385515064,-18.005415350664407,-17.82472107047215,-17.135044226422906,-16.476069905329496,-15.556202189065516,-14.611352188512683,-14.963076564949006,-15.24000727199018,-16.195391988381743,-16.554822530131787,-15.743704054038972,-15.952055479865521,-16.035765521228313,-15.873595184646547,-16.649518340360373,-15.83368612267077,-15.921720704529434,-15.95103653613478,-16.908345685806125,-17.485898221842945,-17.95246297074482,-17.771449686028063,-17.438760370016098,-17.655980126466602,-18.37942824838683,-18.62633866397664,-19.175466883461922,-18.427971676457673,-18.995341196190566,-19.14478084538132,-19.61969996104017,-19.415532222017646,-18.469672170002013,-18.766667728777975,-18.953502133954316,-18.73256703885272,-18.58168256562203,-19.07111423043534,-19.605253477580845,-19.473509495612234,-18.827211951371282,-18.271145255304873,-17.897495701909065,-18.330427386797965,-17.75935508683324,-17.57710078265518,-17.696590326260775,-17.33750197989866,-16.38453179784119,-17.091456172056496,-16.96259368211031,-16.741599689237773,-17.09839283535257,-17.966688245534897,-18.24149365723133,-17.713206090964377,-17.382340549491346,-17.058217596262693,-17.62458276003599,-16.665476496331394,-16.481892798561603,-17.1856399057433,-16.959703331347555,-16.340991873759776,-17.037665468640625,-17.3886256092228,-17.267853030003607,-17.285205241758376,-16.966211405582726,-16.67720156023279,-15.763452800456434,-15.440167839638889,-15.150629665702581,-15.562857285607606,-15.25862885499373,-16.12911175377667,-16.29613441321999,-15.926911024842411,-16.043699333444238,-16.106520978268236,-15.199091920163482,-15.146781878080219,-15.010681522544473,-14.066370784305036,-13.157306614797562,-13.457676138263196,-13.186831928323954,-12.695311821065843,-13.174774451646954,-12.883356639184058,-13.73365497076884,-14.057520261965692,-14.426329072099179,-15.018687087576836,-15.017575716599822,-15.788404639810324,-14.9201945126988,-14.818576165940613,-14.612275701016188,-14.025941912084818,-14.80301466351375,-14.324286905582994,-14.465379608329386,-13.478144052438438,-13.755719142965972,-13.569159397855401,-13.35700334655121,-13.232038126327097,-12.897590545471758,-12.979265756439418,-12.529939427040517,-12.553932686336339,-13.514164011925459,-13.13783929310739,-13.710168674122542,-13.089072433300316,-12.377908539958298,-11.758062545675784,-12.753085613250732,-11.89841099223122,-12.115560463629663,-11.503834940958768,-10.941907934844494,-11.682822502683848,-11.979872146621346,-11.957596303895116,-12.152802747674286,-12.642405974678695,-12.991952294949442,-12.781651915051043,-13.183929964900017,-13.912934589199722,-12.937771177850664,-12.739000625442713,-11.832953098230064,-11.859876419883221,-11.476396932732314,-10.799628395587206,-9.846757778897882,-10.106280968990177,-11.081802843138576,-10.556201103143394,-10.330313874408603,-9.928312020376325,-10.31761921942234,-10.415010017342865,-10.150893882848322,-9.515935401432216,-9.71528082061559,-10.326778346672654,-10.42916742246598,-9.742470833938569,-10.427578857168555,-9.996667506173253,-10.314320731908083,-9.757080766838044,-9.930305092129856,-10.23128905845806,-9.872623114846647,-9.431596977170557,-8.463907926809043,-8.723640326876193,-8.047680536285043,-9.009547473862767,-9.432939013000578,-10.224216750822961,-9.251384482253343,-8.96187716210261,-8.216338984668255,-7.8920264933258295,-7.684000086039305,-7.211538260336965,-7.804101339541376,-7.0535918767564,-6.300298172980547,-5.838579130358994,-6.060378527734429,-6.5032363082282245,-7.350907971151173,-7.943697307724506,-8.182402906473726,-7.924590226728469,-7.240450129844248,-7.4311388223432004,-7.635324775706977,-8.450660431291908,-9.201443616300821,-8.707297146320343,-8.133521071635187,-9.13290174677968,-8.808919390663505,-8.390392968431115,-8.319653829559684,-8.84699011594057,-8.908342643175274,-8.435047226957977,-9.29507692810148,-8.96800413634628,-8.595234926324338,-9.208763025235385,-9.505833472125232,-8.589743049815297,-8.527335059363395,-8.340852722525597,-8.590264310128987,-9.108350429683924,-9.201295994222164,-8.428230972960591,-7.95433044526726,-8.818177520763129,-8.208861412014812,-8.861694935709238,-8.97545007802546,-9.557571523822844,-8.82660170411691,-9.718735722824931,-9.227682495489717,-9.729964691679925,-10.552736639976501,-10.941287542227656,-11.754874558188021,-11.21762205986306,-11.44964857166633,-10.836267724633217,-10.35299786599353,-10.07301555806771,-10.355913072358817,-10.016198098659515,-10.825632532127202,-10.327189242932945,-9.632769607007504,-9.461157427169383,-9.521688696928322,-10.177324449177831,-10.701740691903979,-11.132900726050138,-11.370162898208946,-11.66723712021485,-11.35367886396125,-10.481380245648324,-11.078132694587111,-11.19190529268235,-10.635025109630078,-11.450647834222764,-10.55072476575151,-10.984565995633602,-11.189938243944198,-10.511532123200595,-11.406783895101398,-10.434789613354951,-11.230469497386366,-12.033172632567585,-12.89095775410533,-13.552570964209735,-14.02339215343818,-13.980634143110365,-14.3889443827793,-14.07462942181155,-13.86862629558891,-13.82172760926187,-13.076919382438064,-13.639465884305537,-13.776450449600816,-12.983784363605082,-12.471034480724484,-13.093391688540578,-13.004869400989264,-13.54650296131149,-13.035354643594474,-12.654538020025939,-13.06104238703847,-13.440591652877629,-12.74895380064845,-12.85910172201693,-13.705319000408053,-13.623000315856189,-13.313034201040864,-12.442559566814452,-12.089613197837025,-12.272656681481749,-11.783311228267848,-12.236418810207397,-12.953069490846246,-12.762339947745204,-11.83966775611043,-11.91135882679373,-11.681545508094132,-11.2885663039051,-11.32896816637367,-11.399566378910094,-10.59698944306001,-11.258309338241816,-11.190413446165621,-11.24299539765343,-11.020538781303912,-10.381844735238701,-10.338855594862252,-10.943615376017988,-10.750685936771333,-10.588569151237607,-10.898396927397698,-9.914368140976876,-9.655602528247982,-8.763782317284495,-9.353097036946565,-9.804093007929623,-9.829695225693285,-9.94073353195563,-9.13995117135346,-9.822998722549528,-10.287549869157374,-10.064704043790698,-10.117893415037543,-9.979149526916444,-9.895372091792524,-9.865372267086059,-9.687112999614328,-10.367579516023397,-11.147114984691143,-10.350707775913179,-10.072284601163119,-9.82098971772939,-9.757317676674575,-9.783581188414246,-9.756746801082045,-10.36075873253867,-10.447158977389336,-10.066389700397849,-10.150889422744513,-10.592950437683612,-11.277409476228058,-10.95529738906771,-11.596531442832202,-10.609497396275401,-10.804770286660641,-11.71648330334574,-11.905584284104407,-10.937709637451917,-11.259134775493294,-10.370224098209292,-10.369056298397481,-10.864984697662294,-10.937774467281997,-9.968968181870878,-10.673254224006087,-10.267101490870118,-10.91177287651226,-11.876763136126101,-12.369781620800495,-12.725157740525901,-12.375763120595366,-12.210466934368014,-13.058220296632499,-12.610288456082344,-11.853886367753148,-12.77421562699601,-13.460859482176602,-14.174126190599054,-14.927857827860862,-15.664582187775522,-16.52471465198323,-17.378315472509712,-17.941164002288133,-18.007608505431563,-18.754741167183965,-19.138395251706243,-20.06212200783193,-20.978412978816777,-20.10037397267297,-20.45427526626736,-19.697504634503275,-19.277416634373367,-18.88527320791036,-19.273709065746516,-18.445840245578438,-18.01453630346805,-17.9895805651322,-17.27681830013171,-16.429989974945784,-16.7645730311051,-16.17645333101973,-15.40251654619351,-16.316770497709513,-15.97018271079287,-16.946820444893092,-17.095679190009832,-16.241132671479136,-16.29709163866937,-16.993202732410282,-16.4658608911559,-15.739394499454647,-14.75226240977645,-13.915080420207232,-14.244610568974167,-13.270399815868586,-13.527473784051836,-13.098036610521376,-12.425556776113808,-12.191429271828383,-11.84797213319689,-12.79239984601736,-12.052558558993042,-12.068953074514866,-11.344401351641864,-11.953378896228969,-11.906314051244408,-11.748616135679185,-10.837655767798424,-10.752821274567395,-11.064716565422714,-11.210021578706801,-10.463500769808888,-10.626183342654258,-9.865878449752927,-9.299925440456718,-9.680012090597302,-8.80186250526458,-8.886638964526355,-8.854704916011542,-8.144348852802068,-7.736395837273449,-7.119467364624143,-6.640148630831391,-6.0922415112145245,-5.7425632099621,-5.601283800788224,-5.95658055273816,-5.676785743795335,-5.358750185929239,-5.551539588253945,-5.356154671870172,-4.3804643247276545,-4.975962063297629,-5.945996899623424,-6.227206594776362,-6.797203256748617,-6.53068581270054,-7.2573089227080345,-6.2855403907597065,-6.114059899002314,-6.642854910809547,-5.83945202594623,-5.476036837790161,-5.40954083064571,-5.119650929700583,-4.133059916086495,-4.8134961924515665,-5.730711138341576,-5.972538533154875,-5.426934116519988,-5.583756787702441,-6.5445205378346145,-7.272667932789773,-8.099365016445518,-8.445340608712286,-8.69742774637416,-8.829902209341526,-9.375895085278898,-10.307082219980657,-9.847299531567842,-10.53204973647371,-9.96107452781871,-10.671880967449397,-11.204284676816314,-10.217012783512473,-10.903238819446415,-10.006175714544952,-9.921553194988519,-10.89901361707598,-11.023378369864076,-11.101743014063686,-10.363113639410585,-10.96710902499035,-11.416204949375242,-11.409128004219383,-11.595149041619152,-10.644513329025358,-10.537936884444207,-9.919756755232811,-9.189951134379953,-9.491764147300273,-8.594831263180822,-7.937044937629253,-7.352174491621554,-6.400517827831209,-6.331423862371594,-6.8998045404441655,-7.412862517870963,-7.032207313459367,-6.9962808093987405,-6.432232211809605,-7.073144074529409,-6.862822136841714,-6.553900189232081,-7.246424571145326,-7.476518373936415,-7.849716569297016,-8.213153219316155,-7.618508996907622,-7.337502560578287,-7.301442456431687,-7.236377416644245,-6.288786850869656,-7.216628002934158,-6.769737883936614,-6.067270572297275,-5.84790007583797,-6.409372889436781,-5.702160840388387,-4.925707320217043,-5.29816128872335,-6.005143716931343,-5.059247471392155,-4.141712445765734,-3.8565579270944,-3.7559112180024385,-3.871769598685205,-3.695229871198535,-3.612730437424034,-4.597144904080778,-3.622251225169748,-2.751433222088963,-2.6664127111434937,-2.6077935216017067,-1.697380651254207,-1.7322716102935374,-2.353783013764769,-2.9448971361853182,-2.7405937151052058,-3.355244739446789,-2.5427261856384575,-3.4013638482429087,-3.0962481894530356,-4.077015529386699,-3.6533511034213006,-3.0261495718732476,-2.401795216370374,-1.6770688025280833,-1.4025728232227266,-1.6002156576141715,-2.1516758133657277,-2.690441287588328,-3.1809941180981696,-3.4253167412243783,-2.65209747152403,-3.3071037773042917,-2.480781623162329,-1.8315485836938024,-0.944863329641521,-1.8694074153900146,-2.0640091677196324,-2.1780402092263103,-2.7320859599858522,-2.40181733481586,-2.4054096788167953,-2.5314084286801517,-2.214593240991235,-1.5324143250472844,-0.9330933610908687,-1.8102230201475322,-2.7604067092761397,-3.026130978949368,-3.1197688444517553,-2.609984891023487,-1.907590792980045,-2.6859661489725113,-2.127505240496248,-1.744083831552416,-2.065137448720634,-2.889564560726285,-3.2243721801787615,-3.261044308077544,-3.0243711224757135,-3.290797021239996,-2.9559277771040797,-2.4872559923678637,-3.0119078257121146,-2.341975131072104,-1.5843306095339358,-0.8303946144878864,0.07691728277131915,-0.08110275072976947,-0.2656862810254097,0.1408189437352121,-0.3353519234806299,0.37428685231134295,-0.5201315334998071,-1.1780886445194483,-0.3251420264132321,0.3694799654185772,0.5482180914841592,0.42712431168183684,0.400052972137928,0.38403539918363094,0.9155382048338652,1.1928066927939653,1.517226870637387,1.3255867129191756,1.3153884201310575,1.1229344494640827,1.8003267799504101,1.989203148521483,1.9684909917414188,2.504122272133827,3.0690498002804816,2.188797142356634,2.4356293701566756,3.0915692653506994,2.2268909150734544,2.6539370310492814,1.9265432958491147,2.5363602857105434,2.9196990788914263,2.9482175018638372,2.8431681343354285,3.2791596902534366,2.988987237215042,2.616749642416835,2.5831704447045922,2.391481513623148,3.1312292087823153,3.343673873692751,3.1390551747754216,2.5721239214763045,3.286263794172555,2.649517302401364,2.6584647009149194,2.52726394822821,1.8937153383158147,2.3729736218228936,1.5893176272511482,2.238016180228442,1.605463600717485,0.6341412835754454,-0.15459255408495665,0.26755955209955573,0.4609676790423691,1.387471828609705,2.275058056227863,1.483173762448132,0.9472079523839056,1.3549906108528376,0.542481052223593,0.5167339649051428,-0.023609251715242863,-0.5873963134363294,-0.7177713206037879,-0.4403716828674078,0.41451093973591924,1.1532460572198033,1.9590419176965952,1.251937312539667,1.1494185775518417,2.059853844344616,2.4543971670791507,3.2674735505133867,3.9625334246084094,3.0023857932537794,2.6183972037397325,1.971071571111679,2.1766612492501736,1.3800910799764097,2.063949640840292,2.1533608017489314,2.3153630080632865,2.8803209476172924,3.8700487660244107,3.706040264572948,3.849942190106958,4.401280095800757,4.367672523949295,4.440972696524113,4.503376848064363,5.341760086361319,5.724180143792182,6.069746392313391,6.259274289011955,5.449793195351958,5.588491451460868,5.132979637477547,4.656660184264183,4.678393271751702,4.524905850645155,5.509473740588874,6.5047025117091835,5.907032082788646,6.526354086585343,6.937926402781159,6.584576523397118,6.696177555248141,6.766001534182578,6.489000101573765,6.405295912642032,5.678128224797547,4.691200093366206,5.160566793754697,4.615067541133612,4.854500061366707,5.51408701017499,5.279937593732029,4.7151336395181715,5.646926440764219,6.217725242488086,6.444009332917631,5.888469120953232,5.467876337934285,4.934917411301285,4.62811881583184,4.171752996742725,3.7241438180208206,3.9271229351870716,3.012633244972676,3.131466399412602,4.018841772340238,4.068449934478849,4.798353293444961,5.521177460439503,4.943090511020273,5.708865145221353,4.751433400902897,4.88431689934805,5.227886956650764,5.335669947322458,4.779076898936182,4.790849771350622,5.208974328823388,5.4921176778152585,4.940489815082401,5.595330226700753,4.977692334912717,4.191809493117034,3.7723784637637436,3.2805705023929477,3.8167190197855234,3.9111737203784287,4.169131039176136,3.218952267896384,3.159429455175996,3.136991250794381,2.537244211882353,2.388354812283069,2.3181004668585956,2.3610390927642584,2.2640209863893688,2.154133009724319,2.1739160516299307,2.972055835649371,3.2974390159361064,3.296973056625575,3.7598132882267237,4.108716820366681,3.630999380722642,4.102038361132145,5.05498049268499,5.664893744047731,5.876130945980549,5.898102173116058,6.001799126621336,6.191947835031897,6.881833403836936,7.114513289183378,7.9188693687319756,7.775302167516202,7.4751388733275235,7.054064496885985,7.756215233355761,8.640929888933897,9.052862494252622,9.048136999830604,8.198210415430367,8.33091744594276,7.96045082854107,8.284898693207651,8.014387571718544,7.959386170376092,7.426333064679056,8.33723937254399,8.066243244335055,8.613575930707157,8.987823211122304,9.55263864947483,8.588195448741317,8.213558319024742,8.44417109247297,8.59279858507216,7.812824124004692,7.4123873882927,7.294464390259236,6.3596486444585025,5.911823402624577,6.898623179178685,6.196634993888438,6.696017513982952,6.246527487412095,5.553159545175731,6.516884952783585,5.810444214381278,6.2357138632796705,6.965776225551963,6.089037953875959,6.320618102326989,7.082226713187993,6.986572051886469,6.317249254789203,6.325703478883952,6.034713543951511,5.725516363047063,6.1413168320432305,5.527769166510552,6.031996234785765,5.452197966631502,5.0692153186537325,5.320880483835936,4.981009382754564,5.782505500596017,5.572362707927823,5.013162015005946,5.086759061552584,5.09436336485669,5.834406366571784,6.430047369562089,6.86714630946517,6.4191691554151475,5.761152067687362,5.529074419755489,4.8541680639609694,4.166109670884907,3.8941266322508454,4.822673067916185,5.198701344430447,4.99248827341944,5.616589320357889,5.507768299430609,5.234963811002672,5.062399132642895,4.2615473619662225,4.0095866257324815,4.576192236505449,5.4024098590016365,4.84554768493399,4.717231936287135,3.749960265122354,3.807956373784691,4.482502942439169,4.548988682683557,5.259636411443353,6.254666405264288,6.024121203459799,5.4761471333913505,5.152347002178431,5.041691490449011,4.797689490951598,5.597418806049973,5.9296218431554735,4.944517693016678,5.651009094435722,4.672462230082601,3.8932945341803133,3.319830264430493,2.7774057709611952,1.78225105907768,2.6179930921643972,2.334980412386358,2.954980229958892,3.465848426800221,3.1665264912880957,3.831091694533825,3.9559886013157666,3.9138596220873296,4.373470947612077,4.483624488580972,3.7478728950954974,3.7527154898270965,3.794711023569107,3.391570454929024,4.210125595796853,3.766795350704342,3.6063454463146627,3.7012357912026346,4.570938924793154,5.567275590728968,6.543891644105315,5.822925277519971,6.245746783912182,5.969228982925415,6.7044953210279346,6.083068665582687,6.3579765860922635,6.002873091958463,6.994159048423171,7.148541437461972,6.154091252014041,6.455218667630106,6.620909671764821,6.790307044517249,7.491114546079189,6.795881691854447,7.631268282420933,6.671975950244814,6.55610727192834,7.5534414341673255,8.457873213570565,9.300235729664564,9.254011335782707,8.37929460592568,8.347496778238565,7.48165533458814,7.966732517816126,7.159849063958973,7.338787489105016,6.98902574274689,6.738825327716768,7.35951514961198,7.018827674910426,7.952830064110458,8.58020063303411,8.10487575829029,8.287225099280477,8.867858957033604,9.811335118487477,10.216232264880091,10.61893017264083,10.319608993362635,10.841623876709491,9.964747269172221,9.312188618816435,10.032375014387071,10.810830107424408,10.644602057524025,10.024621144402772,10.914732489269227,11.22331465780735,11.83884032536298,12.372134444769472,13.02398060169071,12.49233614327386,12.150741704273969,11.307728205807507,10.370125340297818,11.066359724849463,10.778098458889872,11.342772514093667,11.766489992383868,12.746529035270214,11.77575528388843,11.61909284023568,10.924045646097511,10.289958155713975,10.951571720652282,11.63797705527395,11.427706110756844,12.093504482880235,12.963422836270183,13.419077705591917,13.055055393837392,13.114670023787767,12.334882996976376,13.234837416559458,13.51900146715343,13.992574533447623,14.09304370637983,13.3860599626787,13.06392344320193,12.297985162120312,12.804533044341952,13.01100443629548,13.792251917999238,13.863789534661919,12.909295019228011,12.55264219455421,13.330006801057607,13.377592469099909,13.6926603410393,13.445712593384087,12.991490601096302,12.86623034439981,12.37049228651449,11.961984450928867,11.034390922170132,11.029288557823747,10.970200738403946,11.91549073997885,11.551833666861057,11.09231340372935,11.310043352656066,11.766890499275178,11.287260298617184,12.197686080355197,11.268858858849853,11.037833974696696,11.551431931555271,12.363512500189245,13.300398353952914,12.820523153524846,12.518540288321674,11.542769350577146,10.618091042619199,10.791394366882741,9.836906084325165,9.784182992298156,9.117475696373731,8.720208934042603,8.886104156728834,8.421372167300433,8.442758921533823,7.732127089519054,7.784720147959888,7.869158111047,7.739681948907673,7.898112848866731,7.4077123599126935,7.2712425966747105,7.51094978954643,8.41037521418184,8.84033415839076,9.26296762097627,9.340746896341443,10.15491259843111,10.862278903834522,11.603102173656225,11.065825252328068,10.615866312291473,11.192559067159891,11.540277590975165,12.214940105564892,13.029132553841919,13.231940200086683,12.44722274132073,13.369394404813647,14.268952185753733,14.780580048914999,15.205846116878092,14.679688276257366,14.494274678174406,13.58916149660945,12.640681385993958,13.609312733169645,13.214012146461755,14.123248340561986,13.893988687545061,13.091266693081707,13.093359143007547,13.900755694601685,12.971101368777454,13.428655935451388,12.963803584687412,12.100323772523552,11.730387021787465,11.510063027963042,11.15000735083595,11.289432608522475,10.306646464858204,9.98127117427066,9.37846461031586,8.634723140858114,8.21635036310181,7.556956778280437,7.111437474843115,6.661130429711193,6.6672024126164615,7.3413974065333605,7.517804306000471,7.799314674921334,7.124463111627847,6.263205946423113,6.225848855916411,5.509707030374557,4.968352981377393,4.2677570772357285,4.521506924647838,4.854237981606275,4.175004524644464,3.279373516794294,3.7693475955165923,4.345149150583893,4.52485415013507,4.910108842886984,5.024111469741911,5.3573613641783595,5.479024838190526,6.214351937640458,7.075512242037803,7.600057231262326,7.741711424663663,7.852468543685973,6.9360750978812575,7.690047576092184,7.375715494155884,8.312686215620488,7.397701500914991,6.953885950613767,7.509441124275327,7.614743426442146,8.109724863898009,7.609224668703973,7.356017192360014,8.041695569641888,8.755525582935661,8.54503571242094,7.688933002296835,7.082766929641366,7.194140231702477,6.894339147955179,6.479580303654075,5.843297535553575,5.440792498644441,5.739934252109379,5.337379083037376,6.09989375853911,5.540887481998652,5.00815892405808,5.135922536253929,4.6386380456388,4.064502688124776,4.862467755097896,5.27741976454854,4.646005663089454,3.916040654294193,4.4227925864979625,4.215070818550885,4.924334343522787,5.903947277925909,5.564448724966496,6.117113794665784,6.088586595840752,6.192494930233806,5.453532178886235,4.926842167042196,4.5451478604227304,4.825514605734497,4.993730395566672,4.378949787467718,3.90702694747597,3.3500865073874593,2.3969157999381423,1.633487232029438,0.6568269561976194,0.39118936378508806,0.7455186322331429,0.26944967079907656,-0.1844795923680067,-0.4285863139666617,-1.0393947325646877,-0.5208741296082735],"y":[-40.531673001591116,-41.282371239736676,-41.412757200188935,-42.146273457445204,-43.09071518247947,-42.69645156618208,-42.16213479451835,-42.07409727899358,-42.37129167187959,-42.23270830698311,-43.208444512449205,-44.10136677417904,-44.02192944800481,-44.036888966336846,-44.58007918251678,-43.707490403205156,-43.230176818557084,-44.146289275959134,-44.61123901652172,-44.29935396136716,-43.436220400966704,-44.16930034570396,-44.76207836298272,-44.82893289625645,-44.14998316857964,-44.679694345686585,-44.18697036616504,-43.86313098249957,-44.54213524563238,-44.05925381416455,-43.57404194585979,-43.81025051465258,-42.86842434294522,-42.664883598685265,-43.24073139159009,-43.77722467901185,-43.80765208322555,-43.661371228285134,-42.86013390403241,-42.673142748419195,-42.733428792562336,-42.53518307209015,-41.65716393152252,-41.50136025529355,-41.97951948270202,-42.744107770267874,-42.632747704163194,-42.35024959780276,-42.892927037552,-42.58240252872929,-42.33796117687598,-42.573133817408234,-43.26284317718819,-42.441891512833536,-41.91404772084206,-41.87797155510634,-41.40861560869962,-41.88757781730965,-40.93764748517424,-41.449306590948254,-42.123334961012006,-42.93702917918563,-43.89087923290208,-43.06638175807893,-43.761318671517074,-43.71377186849713,-43.68872646940872,-42.907325801905245,-42.16950156586245,-41.93464420456439,-41.60403304127976,-41.8797014169395,-41.47964829625562,-42.14073986373842,-42.45215810742229,-42.1993223936297,-42.45528248976916,-42.37286707106978,-43.132273534778506,-42.686132399365306,-41.710890690330416,-41.89184756902978,-40.954004525672644,-40.221490687690675,-40.57953743590042,-40.26394149335101,-39.37902477197349,-38.98292524088174,-38.14813280943781,-37.51008584583178,-38.03356380434707,-38.29338523838669,-37.752952897921205,-37.99343737959862,-37.954894496593624,-38.42472955863923,-38.00979994609952,-37.697995707858354,-38.154120243154466,-37.391839367803186,-36.799752200488,-36.81621993193403,-37.36920945486054,-36.84020981192589,-36.709422044456005,-36.785301169380546,-37.06441900599748,-36.47890401119366,-36.7945973793976,-37.20706838788465,-36.93959019333124,-37.303665621671826,-37.65493074944243,-36.76803707052022,-37.289532559458166,-38.039161635097116,-37.71126488223672,-37.91084982268512,-38.721764316316694,-37.95962052093819,-37.20710690598935,-38.03602502821013,-37.31124237040058,-37.03842823114246,-37.50922555150464,-36.56829791003838,-36.4483174928464,-36.57104364596307,-36.22993609216064,-36.816596403717995,-37.04840697394684,-37.02233905531466,-37.589503611437976,-37.21197107248008,-37.23223358532414,-36.56426448794082,-35.94400548748672,-36.89330040151253,-36.425223651807755,-35.51707289926708,-34.541205446235836,-34.648694679606706,-35.22460771398619,-35.19726550485939,-34.88711720705032,-34.254592628218234,-34.32618024433032,-33.79428735328838,-33.246457061264664,-33.627396998461336,-33.78582873707637,-34.58815295062959,-35.169209216721356,-34.226371821481735,-33.3922449266538,-33.22073125746101,-33.33689163764939,-33.858353309798986,-34.34032132662833,-34.83238448575139,-35.170733633451164,-34.700468346942216,-34.59441366419196,-34.286410748027265,-33.878940461203456,-33.92964869644493,-34.451864352449775,-35.07820196263492,-35.1191047555767,-35.97696575522423,-35.183020032942295,-35.00968772685155,-34.368791453074664,-33.63564037671313,-34.05983565468341,-33.97300141211599,-33.71038021566346,-33.58827347587794,-34.12547769770026,-34.76785845030099,-34.88282797439024,-34.6121819592081,-34.28421879932284,-34.78121487889439,-34.05822540493682,-34.559646169655025,-34.87163154222071,-34.1484536267817,-34.076836716383696,-34.80727284215391,-35.252861697692424,-36.08737871842459,-35.919888821430504,-35.826359272934496,-35.26625815266743,-35.731139990501106,-35.67806630348787,-35.41712694056332,-34.66540404688567,-35.3803969565779,-36.0538568678312,-36.66542125446722,-37.34999194089323,-38.201964621432126,-38.025269873440266,-37.2076322119683,-36.388198173604906,-37.322671491187066,-36.34744809567928,-36.21786436904222,-37.10889844316989,-37.39568080706522,-37.93029568716884,-37.85144478827715,-37.07206403231248,-36.29358336888254,-36.92086380766705,-37.02300565363839,-36.409629905130714,-35.6043278076686,-34.666240942664444,-34.01169455843046,-34.70184662891552,-35.083717146888375,-35.9117194050923,-36.39520286116749,-37.344900040421635,-36.443906486500055,-35.95884379046038,-36.0898528881371,-36.30365703580901,-36.99640676146373,-36.84303970867768,-35.87769355950877,-36.36242870846763,-36.345903700217605,-37.26286384742707,-36.75895822327584,-36.03728073835373,-36.2548640454188,-36.19294986082241,-35.591459170915186,-34.63956453418359,-34.85758043220267,-33.98449504422024,-34.66027970472351,-34.37481608660892,-34.67590023949742,-34.21666655084118,-34.596200936008245,-34.808712147176266,-35.14208176359534,-34.417852570768446,-34.25901478389278,-34.857320724986494,-34.448531293310225,-34.73083746386692,-35.56748083839193,-34.99371241405606,-35.261178160086274,-36.019601819105446,-35.6706874393858,-36.02026309957728,-35.13403280917555,-34.17611272260547,-34.220638981088996,-33.55474615516141,-34.10646683117375,-34.081612398382276,-34.962259399238974,-35.82622239133343,-35.54292224114761,-34.9737641136162,-34.18897039163858,-34.279445386491716,-34.34652432752773,-34.2949732397683,-34.540860465262085,-34.32751404447481,-34.05394690576941,-34.048795151058584,-34.830814083106816,-34.981155645567924,-35.30300767766312,-35.86859072931111,-35.681476096622646,-35.53346258075908,-35.37899211561307,-35.864470527973026,-35.78535099513829,-36.13511180598289,-36.38902989728376,-36.36420355923474,-36.02529066754505,-36.44947312679142,-37.12070403294638,-37.80280544701964,-37.380946793127805,-36.70382300904021,-37.054663309361786,-37.21293273381889,-37.01328330440447,-36.94218773487955,-36.650497623253614,-36.78880070196465,-37.14333167951554,-37.405799771659076,-36.884266218170524,-36.2487403228879,-37.211593113839626,-36.72462505847216,-37.13118797028437,-36.84859990840778,-36.96947960508987,-36.31202465714887,-37.27908744150773,-36.51890803920105,-36.693860387429595,-35.93330396292731,-36.44942340999842,-36.20370740070939,-35.577783290762454,-36.20264729298651,-36.05902700126171,-35.64903195388615,-35.42004374507815,-35.62819961691275,-34.78652304178104,-34.092039494309574,-33.689380233641714,-34.147278209682554,-35.009760714601725,-34.41627257084474,-35.38414680957794,-35.350518006365746,-35.743524006567895,-36.16822160407901,-35.55137819843367,-34.989154423587024,-35.23515136633068,-34.69841961469501,-35.160011812113225,-35.89602982485667,-35.30288386065513,-34.612897189334035,-34.784103160724044,-34.637942367233336,-34.55000007990748,-33.67054319381714,-32.740840453188866,-33.19394244020805,-33.29863965511322,-32.59688433166593,-33.33790216827765,-34.24744093418121,-33.440541261807084,-33.686330819968134,-34.32255122810602,-35.30047049932182,-34.37716984003782,-33.548893090337515,-33.285852384287864,-32.37162526277825,-31.863755031488836,-32.81110114743933,-32.15160991763696,-31.824217490386218,-30.89077897835523,-30.897811375092715,-31.651861351449043,-32.5079007986933,-32.17159401578829,-32.40851575648412,-31.90246034786105,-31.533478301018476,-30.561896888073534,-30.853658678475767,-30.13356304774061,-30.621127721853554,-30.931144467554986,-31.0817085984163,-31.876081028487533,-32.577891547232866,-32.02897057402879,-32.972542704083025,-33.81206476408988,-34.21757644787431,-34.35721205128357,-33.931553714443,-34.819643375463784,-34.91192210186273,-35.355985346250236,-35.838848787825555,-36.30517514934763,-36.44634713465348,-36.81059170374647,-37.44579939497635,-36.59437550837174,-36.94166922569275,-37.7144313165918,-38.060935739893466,-38.39405327476561,-39.31870259810239,-39.629466518294066,-39.43016723822802,-40.33755635842681,-39.85576750617474,-38.87624321365729,-37.953612769022584,-38.328804611228406,-38.36104386486113,-38.57169265905395,-37.76275713741779,-37.615890805609524,-37.641837189439684,-37.00944397971034,-37.70599777204916,-36.72793020308018,-36.029091047123075,-35.08814008254558,-36.06603866070509,-36.7021717838943,-36.556847522966564,-36.481178985442966,-37.2552924035117,-37.429034903179854,-37.760222101118416,-37.261158369481564,-38.0899822707288,-38.89904932491481,-38.38430571136996,-38.29108341317624,-38.87251813104376,-38.013241602573544,-38.185375867411494,-39.071623008698225,-38.17001883266494,-37.429799537174404,-37.81133310496807,-38.3156146267429,-37.84503057599068,-38.137828551698476,-37.17696501640603,-37.41182625014335,-37.55110839102417,-37.99130785418674,-38.763821272179484,-37.97912808554247,-37.04411806259304,-36.43914259970188,-35.896638453472406,-35.02343329554424,-34.31950798165053,-35.11596675403416,-34.23938946053386,-34.05509547609836,-33.40778060397133,-34.05387689638883,-33.788033629301935,-33.66888617631048,-33.09921684442088,-32.73448190884665,-33.431293920148164,-32.85407865419984,-32.9317113137804,-33.91245009377599,-34.542670050635934,-35.087440725415945,-35.21360242925584,-34.87974801938981,-35.68147900188342,-35.186308305710554,-35.41651456011459,-35.04278817726299,-34.30171510344371,-33.41538355126977,-32.612145179882646,-33.018719165585935,-33.377460218034685,-33.938264079391956,-32.96954085305333,-32.17935503972694,-32.59700140915811,-33.02532149711624,-32.36458816519007,-32.213725921697915,-31.595612179953605,-31.892512504942715,-32.8516003228724,-33.17110904073343,-33.031548854429275,-33.95673018228263,-33.61678552441299,-33.75877980981022,-33.37902677152306,-34.33549961959943,-35.079203536733985,-35.049827098380774,-35.42677855305374,-34.740605456288904,-34.38770400173962,-33.48107469500974,-33.15485593723133,-32.462423901073635,-33.4575678370893,-32.73761247470975,-32.96570613794029,-33.352388247381896,-34.22465340746567,-33.41480005020276,-33.582982478663325,-33.525379358325154,-34.106873573269695,-34.69982051011175,-35.01465946622193,-35.405833300668746,-34.47197639197111,-34.28933081170544,-34.704444971866906,-35.110131008550525,-34.34776671836153,-34.56241672858596,-35.429889391642064,-34.782788136508316,-34.68230545241386,-35.543646418023854,-34.79531059321016,-34.35204209620133,-34.02008015336469,-34.265261572785676,-34.51943575171754,-35.29217160213739,-35.318642657250166,-34.739993321709335,-34.160263403784484,-34.06150422617793,-34.94018234917894,-34.517527592368424,-34.91346278740093,-34.928204668685794,-35.68368404917419,-35.418022270314395,-34.45523023791611,-33.86111789802089,-34.098466807976365,-33.18151684990153,-33.23997458489612,-32.98820826364681,-32.99068951746449,-32.97070225793868,-32.14307815907523,-32.7042675842531,-33.23058464890346,-32.998936093878,-32.42195831192657,-32.70509079657495,-33.269872901029885,-33.68866195064038,-33.168540086597204,-33.138077947776765,-33.57430396648124,-34.1872034505941,-35.02298196963966,-35.04829220240936,-35.534797112457454,-35.65283789811656,-34.66233404073864,-34.11786772264168,-33.53057548822835,-32.794282927177846,-33.32724250201136,-33.708992555737495,-34.17344709066674,-33.89497391041368,-34.50092453556135,-34.08282049745321,-34.09603152796626,-33.78566642291844,-34.53505059564486,-34.21746077388525,-34.78067097486928,-34.28692411677912,-34.536590655334294,-34.18400112912059,-34.18602795014158,-34.98649552371353,-35.01651409640908,-34.47482490632683,-34.17411251505837,-34.077642464544624,-33.94655187288299,-34.675775992684066,-34.84569188114256,-35.818345085252076,-35.98744775634259,-35.63540954887867,-36.550923438277096,-36.84770505176857,-36.90619873069227,-35.952562073245645,-36.6102527868934,-36.99312008731067,-36.1793481647037,-36.3052139505744,-35.475814055651426,-34.71808763826266,-35.34989076247439,-35.87148485472426,-35.979339881800115,-36.67651987075806,-36.83790608216077,-37.11542822420597,-36.7901105848141,-36.79921047296375,-36.29250709852204,-35.76699214987457,-34.962628225795925,-35.22736353939399,-35.2875455962494,-35.40029443986714,-35.07302166474983,-34.196874890010804,-33.363276267424226,-33.68700943700969,-32.82601284887642,-32.828266779426485,-32.88630522741005,-32.479433400090784,-31.564153536222875,-32.282923500053585,-31.50946799432859,-31.804491557646543,-31.34491283353418,-30.79149358253926,-31.578060921747237,-32.027626319322735,-32.93318041274324,-33.672426311299205,-34.11187686957419,-33.48579025315121,-34.08414820255712,-33.15671468572691,-32.90259644854814,-33.7394457180053,-34.36718744598329,-34.050907980185,-34.38316129613668,-33.560470554511994,-33.42002166295424,-33.4650114197284,-34.21700893621892,-34.442977535538375,-35.04493115050718,-35.340081298258156,-34.50340816844255,-34.492965389974415,-34.2871151403524,-34.731574691832066,-34.542963086627424,-34.23708788305521,-34.34622828941792,-34.01085311034694,-34.56282199220732,-34.717843670398,-34.88598164496943,-34.23170224111527,-34.40656701056287,-34.11075422214344,-33.15685085626319,-32.62585009355098,-31.99605989502743,-32.04491763515398,-32.2631914508529,-32.74231693893671,-33.08143169665709,-33.50757911289111,-32.85324943298474,-32.00543026672676,-32.2452371888794,-31.45343297161162,-30.762880628928542,-30.96507729589939,-30.04240494221449,-29.576718139462173,-28.773504259996116,-28.428069416433573,-27.50837123626843,-28.492074260953814,-28.604546189308167,-27.994753283448517,-28.064471653662622,-28.963219901546836,-28.78593413857743,-29.322967445477843,-28.657704092096537,-28.019023042172194,-27.561270887497813,-28.425941474270076,-28.33679557358846,-28.951235251501203,-28.81976464856416,-29.651063363067806,-29.707008165307343,-30.138952527195215,-30.077652684412897,-30.28361133299768,-29.53157589631155,-29.90131491003558,-30.190114905126393,-29.342738173902035,-29.33703659893945,-29.311516215093434,-28.674334717914462,-29.46765715442598,-29.07659360067919,-29.864746869076043,-29.151825983077288,-28.207154280971736,-27.45250500133261,-28.16582255344838,-28.427566315047443,-27.582633756566793,-28.373757894616574,-28.46956084901467,-28.696117491461337,-28.82664098078385,-28.263733197934926,-27.34970204671845,-27.655210976023227,-26.890961221884936,-27.76400224165991,-28.395444693043828,-27.786245876457542,-27.786282933782786,-26.927586629986763,-26.024898959323764,-25.21377611439675,-24.638944424223155,-25.59200149588287,-26.446506506297737,-26.36433441983536,-25.45047617936507,-25.517573174089193,-24.734614124987274,-24.8550014635548,-25.585265721194446,-26.33184264972806,-26.246893285773695,-26.801023880485445,-27.736818973906338,-28.65217260690406,-28.611231796909124,-28.84785511251539,-28.14193874457851,-29.02226542122662,-29.04128370899707,-29.387884432449937,-30.36181017383933,-30.645820582751185,-31.13355896109715,-30.780922289937735,-30.836042086593807,-30.535678343847394,-30.483452861662954,-29.883167223073542,-29.072021340485662,-29.096127193421125,-28.579222660977393,-29.349336138460785,-29.1703528072685,-28.95564195420593,-28.604751620441675,-29.196404011454433,-30.14253925671801,-30.943723163567483,-31.802253524772823,-31.981211084872484,-31.607627235352993,-31.030150798615068,-30.66630569146946,-31.042964222840965,-30.173597218934447,-30.074994917493314,-29.101167269982398,-29.481450664345175,-29.27282190648839,-29.17392372060567,-29.71870798896998,-28.99696965701878,-28.29294725926593,-28.554598387796432,-28.31841796450317,-28.865417127497494,-29.117906297557056,-28.456944504752755,-29.05482016224414,-29.71364523144439,-29.476300501730293,-28.8897413732484,-29.039686320815235,-29.45469481917098,-28.544322225265205,-28.00753615843132,-29.00645590899512,-29.772889038547873,-28.777080161031336,-29.292450471315533,-28.58500109333545,-28.158111876808107,-28.09481876483187,-28.596247683279216,-28.238456709310412,-28.02353369211778,-27.188479281961918,-26.197349591646343,-25.329066900070757,-25.05629138322547,-25.794679324142635,-26.35956183867529,-25.38116279616952,-24.612017933279276,-25.186405044049025,-25.3477142136544,-26.18641770631075,-26.021187708713114,-25.52568572340533,-25.568202602211386,-25.901938857045025,-26.769421115517616,-27.543468482792377,-27.030364700593054,-27.127475050278008,-26.43505628639832,-25.522238781675696,-25.743292490020394,-25.305992300622165,-25.272122007794678,-26.025427049025893,-26.324533722829074,-25.42078479519114,-24.606712863314897,-23.654394473414868,-22.70295788254589,-22.84994798945263,-22.149511930998415,-22.064381144475192,-21.56662348192185,-21.122264669276774,-21.026759394910187,-20.036800045520067,-19.24914234271273,-18.45831152331084,-19.26744185620919,-19.69994598440826,-18.797112772706896,-18.26526793697849,-18.835502468515188,-19.43572132755071,-19.526095541659743,-18.905561841558665,-18.924079968594015,-18.899822591338307,-19.40135697228834,-19.91954416781664,-19.705686864443123,-19.348955569323152,-19.221967852674425,-19.80327892769128,-20.536952634342015,-20.027798008173704,-19.68551644589752,-20.53514112206176,-20.396437515038997,-21.012066705152392,-20.855295803397894,-20.827371771913022,-21.481637505348772,-21.90292397979647,-22.174412714783102,-21.443765770178288,-21.78870644653216,-21.81575241824612,-22.69593904633075,-21.781305252574384,-20.89447192614898,-20.006299751345068,-19.978172628208995,-19.11545578856021,-19.186869600322098,-19.696982803288847,-19.81290456512943,-20.71495911711827,-20.654168990906328,-20.040420056786388,-19.067430016119033,-19.854701286181808,-20.796419676858932,-20.39414127683267,-19.649100189097226,-18.8339360547252,-19.481236254330724,-19.384440922178328,-19.93782739713788,-20.331566797569394,-20.473072859458625,-21.381099171936512,-20.501921132672578,-20.980457855854183,-20.14229534426704,-19.667062028776854,-20.503837928641587,-20.736686969641596,-20.729345615021884,-21.114970300346613,-20.125347284134477,-20.072497417218983,-19.752668221946806,-20.448570800945163,-21.377472720108926,-21.828026823699474,-20.889915343374014,-20.898394376505166,-19.99129021167755,-19.291605452541262,-19.774234143085778,-19.62779875053093,-20.334773945622146,-21.072554395534098,-20.939480339176953,-20.916227189358324,-21.184249787591398,-21.50359332282096,-21.35661196289584,-20.77667735889554,-21.415847747586668,-21.75992885744199,-22.468971957918257,-21.71247190888971,-20.79300879081711,-20.380669344682246,-19.579859506804496,-20.313698840793222,-19.392092474270612,-19.925881256349385,-19.304830783512443,-19.510301048867404,-20.330626549199224,-19.6834377492778,-18.858870978467166,-19.562028200365603,-18.978657302912325,-18.997879690490663,-19.21352737955749,-18.287893960252404,-18.81598747940734,-19.402138961479068,-18.60563558107242,-18.24238628707826,-18.546281322371215,-18.131790983024985,-18.226142616942525,-19.192635420244187,-19.003949009347707,-18.748134713154286,-19.671677185688168,-19.018713592085987,-18.39184054499492,-19.365456917788833,-19.820633199997246,-19.74573224503547,-20.25210491893813,-20.795274114701897,-21.0828434699215,-20.16950951749459,-20.125255974940956,-20.082137565594167,-19.36386014847085,-18.84116766275838,-19.125047139823437,-19.014067554380745,-18.722309834789485,-18.01715085702017,-18.397764272987843,-19.22839997941628,-19.11327818548307,-18.701468252576888,-18.276449099648744,-18.793484123423696,-17.919860658235848,-18.07670663576573,-17.885032007005066,-18.808910300955176,-18.378137765917927,-17.59304216550663,-17.913816129323095,-17.316257999278605,-18.229686063248664,-17.775368039961904,-17.249008445069194,-18.15322552761063,-18.07426905957982,-17.458707485347986,-17.681715661194175,-18.625557360239327,-19.552145313937217,-19.035750285256654,-18.49519774131477,-18.44504431122914,-17.507315306924284,-17.785595653112978,-17.63954396592453,-17.005126945208758,-17.340078658424318,-16.453523182310164,-16.942814977373928,-16.33030954748392,-16.896678050979972,-15.918699038680643,-16.25561747327447,-17.068168403115124,-17.61611624993384,-18.200902252458036,-19.145620114635676,-19.652909610886127,-18.666666055563837,-18.1863771667704,-18.671263583935797,-19.419816014822572,-19.22054654126987,-18.436782352160662,-18.656215702183545,-18.36264567822218,-19.252644789405167,-18.854099282994866,-18.663492334075272,-17.948954286519438,-18.640644126571715,-17.831220359075814,-17.476592374034226,-18.370127260219306,-18.64529838692397,-18.25694292318076,-17.73024669662118,-17.780284825712442,-17.96856466680765,-17.611501133535057,-18.133494639303535,-18.170833370182663,-18.86832546722144,-18.309471651446074,-18.3459550794214,-18.03878849884495,-17.777442849241197,-17.282842426095158,-17.99552068253979,-18.13889854773879,-18.603686132468283,-17.641213304828852,-18.29597021313384,-18.873401468619704,-19.31260567670688,-18.737235142849386,-18.14325971947983,-17.430293925572187,-17.960490118712187,-18.413946172222495,-17.93111530551687,-18.896063888445497,-19.237616536207497,-19.47197971260175,-20.452377437148243,-21.189771197270602,-20.281371265649796,-19.54733700538054,-19.965221998747438,-20.95088137453422,-20.5885339663364,-21.14168507559225,-21.347550156060606,-22.063159927725792,-21.925144981592894,-21.592991282232106,-21.659491959493607,-20.77410743292421,-20.82486824458465,-20.96097678411752,-21.910059010609984,-21.221401766408235,-20.37810559058562,-19.849979085847735,-20.628181387670338,-21.24215772887692,-21.497615471947938,-22.424044913146645,-22.831318342592567,-23.490400965791196,-24.1981961899437,-23.225612664129585,-22.446314838249236,-23.01476581627503,-22.310216184239835,-23.30374461133033,-23.023433117661625,-23.047191520687193,-22.486453122925013,-21.667035028338432,-21.68194776820019,-22.121645458508283,-22.88443323969841,-22.898889530450106,-23.60019185114652,-23.060801749117672,-23.987502704374492,-24.20638156682253,-23.6937897503376,-23.576501332689077,-22.72002389607951,-23.424960005562752,-23.412982426583767,-23.3776834635064,-22.69895887002349,-22.929515249095857,-23.551638815551996,-22.994032733608037,-22.283137204125524,-22.200910676270723,-22.063603366725147,-21.583718864247203,-20.924828524701297,-20.244643868878484,-19.68701033014804,-20.234209330752492,-21.099159877281636,-22.042778647039086,-21.461080312728882,-21.717225173022598,-22.221688834950328,-23.008231054991484,-22.94539440330118,-23.382403811439872,-23.42402666248381,-24.082876222673804,-23.22062988439575,-22.46700051194057,-23.114714117720723,-23.133760408964008,-23.1229291097261,-22.3320234217681,-23.315954331774265,-23.3350546406582,-22.847178073134273,-23.629860008135438,-23.065605327486992,-22.890422868542373,-23.21593599068001,-23.76674780342728,-23.331160669215024,-24.112001513130963,-24.10756245534867,-24.77426452282816,-25.01181078515947,-25.213464139029384,-24.565984244458377,-25.13855982432142,-24.98474861262366,-25.774259041063488,-25.313572301529348,-25.035332596395165,-25.71848663268611,-25.141835254617035,-25.99627296999097,-25.62855803128332,-26.50839166622609,-26.45654267584905,-26.64554157247767,-27.03000294789672,-27.139437739737332,-26.770711485296488,-25.967184205073863,-26.58371314080432,-26.15646505681798,-26.66983099654317,-25.710959970019758,-25.583188133779913,-25.850083279423416,-25.300269793253392,-25.223625728394836,-26.053011481650174,-26.990368564613163,-26.60284036723897,-26.54475902253762,-25.679668767377734,-24.793476715683937,-24.470759050920606,-23.752584748901427,-22.974019026383758,-22.64451490994543,-23.598979593720287,-24.511052822694182,-24.715819063130766,-25.410054784733802,-25.393828930798918,-25.93417911976576,-26.48499028943479,-25.819364806171507,-25.346951794344932,-24.519464529119432,-24.56627522269264,-23.56909769261256,-24.092299460433424,-23.271476775873452,-22.963581253308803,-23.937390652950853,-24.66004429711029,-24.300942772068083,-23.953834305051714,-24.634028883185238,-23.866753003560007,-23.560613134410232,-22.817303276620805,-23.37707576015964,-23.938220876734704,-23.152364348527044,-23.05986770382151,-22.123319535516202,-23.123069538269192,-22.620693852193654,-22.78596656676382,-23.09777561435476,-23.91250527324155,-23.819367675110698,-23.397863302379847,-24.261252413038164,-23.933054390829057,-23.958175426814705,-23.235503912437707,-24.023154532071203,-23.73604172701016,-23.362997487187386,-22.62289763847366,-23.61678069876507,-24.33619105955586,-24.881532781757414,-25.151509933639318,-25.872500950936228,-26.521969073917717,-27.48915368039161,-28.037007221020758,-27.327286414802074,-28.18462108215317,-28.246596477460116,-28.313860275782645,-27.679749535862356,-27.988217456731945,-27.531095983926207,-26.98577536456287,-26.697573388926685,-27.00744013953954,-26.850114680826664,-27.213730413932353,-27.913357025012374,-27.396301803644747,-27.31570400390774,-27.547839449718595,-27.63431014213711,-28.41278460389003,-27.832070189528167,-28.59729456482455,-28.26572475861758,-28.113453484605998,-27.729142223019153,-27.592807439155877,-27.547470920253545,-28.28480037068948,-29.00306814070791,-29.397012926638126,-28.48138292413205,-28.2082003694959,-28.553302822634578,-28.122185275889933,-27.516494585666806,-26.94239173596725,-26.347588600590825,-26.256909873802215,-26.996144799981266,-27.457496249116957,-27.22539483103901,-28.150061566848308,-28.095063094515353,-27.940323288552463,-27.274937302339822,-26.416717358864844,-26.393908618483692,-26.026702982373536,-26.769621067214757,-26.557150404900312,-26.417919095605612,-25.576179661788046,-26.413518168963492,-26.048978936392814,-25.45157728716731,-25.23748144460842,-24.578190443105996,-24.119276037439704,-24.019097623880953,-23.432495531626046,-22.53993237251416,-23.335361189674586,-22.45015172753483,-22.102998551912606,-21.165360802784562,-20.670874730683863,-20.491667196620256,-19.703247975558043,-20.694393284153193,-20.45117905922234,-20.999334137886763,-20.636921968776733,-20.62534070201218,-20.40040298225358,-21.082839059177786,-20.090588215272874,-19.785138173028827,-19.055019488558173,-18.578570102341473,-19.498629215639085,-18.825016296003014,-17.85816199146211,-18.465125779621303,-17.491873040795326,-18.123198106884956,-18.872634476516396,-18.621020302176476,-19.065858284942806,-19.99622345995158,-18.99813636066392,-19.777491326909512,-19.75790613424033,-19.96871569380164,-18.992952327709645,-19.94816021481529,-19.543220492079854,-20.42972155380994,-19.46397629287094,-19.8826363212429,-20.106870527379215,-19.2306543183513,-20.174053007736802,-20.2101187906228,-20.844932524021715,-20.650825164746493,-19.88249935116619,-20.552093795500696,-20.175907189026475,-20.633210632484406,-21.266665065661073,-20.32433221815154,-20.178813609760255,-20.626245204824954,-20.568946059327573,-21.129781606141478,-20.43782835546881,-21.32020760513842,-21.23567735683173,-21.310945437289774,-21.101468029432,-21.709233444184065,-22.619151923339814,-23.44706857437268,-23.47597003635019,-23.50461454084143,-23.533089766744524,-23.400967442896217,-23.383804849814624,-23.36074628867209,-22.52419298235327,-21.607639649882913,-21.01154352305457,-21.975244840607047,-22.595048409420997,-22.912874637637287,-22.11576015362516,-22.877252915874124,-22.11318351328373,-22.28059685602784,-21.519692552275956,-21.617587042972445,-21.04890232766047,-21.292173855472356,-20.70332107366994,-20.449056873563677,-20.47023273864761,-20.660378448665142,-20.647182932123542,-20.086073973216116,-19.41456570615992,-20.31886225938797,-20.176603359170258,-19.27011480089277,-18.923229832202196,-18.434777295216918,-18.033026247750968,-17.336227998603135,-16.792270064819604,-16.484126118477434,-16.76411688933149,-17.55892956117168,-18.00978681864217,-17.890059985686094,-18.524636892136186,-17.763573403470218,-17.995679520070553,-18.911151632666588,-19.52171051967889,-20.25447183381766,-20.41814675554633,-20.60614143544808,-19.656568935140967,-20.265257106162608,-19.89704496599734,-19.07200874108821,-19.039675406645983,-18.52516457810998,-17.53763824282214,-17.769596849568188,-17.75259711081162,-18.021104616113007,-18.977098810952157,-18.3945992118679,-19.075017248280346,-18.524368800688535,-19.080368418246508,-20.058010707609355,-19.34879935439676,-19.98644734825939,-19.80289379460737,-19.784105900209397,-19.034242474939674,-19.37273907242343,-19.73370853671804,-20.490118112880737,-20.84222861006856,-21.151067154482007,-21.44007008196786,-21.245216897688806,-21.80755819287151,-22.222423982806504,-23.13459544442594,-22.699866151437163,-23.472633481491357,-23.628872089087963,-22.7441250202246,-22.76507619349286,-23.675618725828826,-24.406942517496645,-25.264967726543546,-26.00587293691933,-25.664383492432535,-26.62158880988136,-27.57861629035324,-27.339983800891787,-27.379306506365538,-26.65882169175893,-26.23432003799826,-25.637448030058295,-26.308378107380122,-25.901117123197764,-26.011489576660097,-26.02223942661658,-25.132298449985683,-24.159967362880707,-23.84963268460706,-24.054971739649773,-23.822713176719844,-23.8000156856142,-23.201564754825085,-23.493501253426075,-22.93958924850449,-22.15657717268914,-22.703518088907003,-22.740472888108343,-21.843902802094817,-22.065816682297736,-22.32627284526825,-23.229152928106487,-22.743744638282806,-22.256410748697817,-22.715795455966145,-22.145158227998763,-21.486036189366132,-21.14674228010699,-21.83078302955255,-21.895916859153658,-22.02014962444082,-21.713623953051865,-20.739543065428734,-21.209361977875233,-20.35088788252324,-19.612806159071624,-19.440006516873837,-18.60083221644163,-18.004963581450284,-17.398433776572347,-18.375595855526626,-18.994752765633166,-19.793739810120314,-18.862419890239835,-18.75675876205787,-19.118400123901665,-18.345061705447733,-18.694210631307214,-18.701325707603246,-18.35535349790007,-18.14856028649956,-17.37132258247584,-16.670099841896445,-16.43989820126444,-16.78139693941921,-16.66888392996043,-17.33571843476966,-18.010382727719843,-18.789384321309626,-18.36414574785158,-18.32265919074416,-17.51011460646987,-18.266160148195922,-17.292335626203567,-16.767222330905497,-16.62936504604295,-15.70097370352596,-15.58758611464873,-15.355321046430618,-15.141338464338332,-15.771734307520092,-16.125528767239302,-15.200155469588935,-14.858855531085283,-14.355127275921404,-14.977253136690706,-15.61581458710134,-15.653616384603083,-15.40267819352448,-16.25835705548525,-16.358509538229555,-16.39264971856028,-16.580468114465475,-15.651131404563785,-15.893922132439911,-15.931999526452273,-16.715952859260142,-16.63864147895947,-17.017289229668677,-16.1490226094611,-16.287406333722174,-16.198520458303392,-16.308293864130974,-16.020912610460073,-15.979816000442952,-16.423384828493,-17.07277017319575,-16.513909094035625,-16.920158810913563,-17.10783352702856,-17.1377486535348,-16.21639848453924,-15.996579367201775,-15.010691268369555,-14.573742332868278,-14.668935417663306,-14.094707828015089,-13.93002764461562,-13.721113195177168,-13.77488850383088,-13.30901573318988,-12.785784233827144,-13.125808177515864,-13.190384609624743,-12.734576360788196,-12.88748698309064,-12.033655183389783,-12.873470969498158,-12.526075745467097,-12.657164694275707,-12.905168251134455,-12.226238097529858,-12.996531996876001,-12.130845186300576,-11.520526359323412,-10.63479099329561,-11.054574597626925,-11.91971841827035,-11.447327536530793,-11.288278429303318,-11.51666633412242,-11.781043587252498,-12.377881129737943,-12.152029584627599,-12.366835737135261,-13.110029423609376,-13.316736485343426,-13.394435808993876,-12.81399697298184,-12.667554290033877,-11.992262352257967,-11.036480920389295,-10.06750730983913,-10.786104290746152,-10.3663588645868,-9.92218487104401,-9.366409059613943,-8.614901026710868,-8.18256435263902,-8.493238946888596,-9.147143237292767,-9.422145661432296,-9.237206940539181,-9.555809470359236,-9.099428104702383,-8.78975532669574,-9.57604253757745,-9.315010896418244,-10.107658761553466,-10.830376830417663,-10.321321413852274,-9.432391385547817,-9.591421361081302,-10.41769144218415,-10.586366215720773,-10.133169696200639,-9.72807922679931,-8.809791676234454,-9.075308228377253,-8.366187226492912,-8.279106973204762,-7.763098971918225,-7.657609634567052,-7.391230228822678,-7.794488370418549,-7.762634431477636,-7.680056623183191,-8.451191569212824,-7.550465928390622,-6.887051495723426,-7.473505730275065,-8.336702830158174,-8.763426116202027,-7.992515842430294,-7.225501962006092,-7.058428144082427,-7.794466385152191,-8.779040751047432,-8.526507787872106,-7.669581431429833,-8.52776061045006,-8.259858158417046,-8.237666019704193,-7.996709414757788,-8.33668099436909,-8.37630875222385,-9.011413106229156,-8.111375475768,-8.541869525332004,-8.075636171270162,-7.996525177266449,-7.1467887461185455,-7.747312981169671,-7.694357646629214,-7.267350094858557,-8.067175739910454,-7.134018482640386,-8.068586874287575,-8.248293701093644,-8.497816507704556,-9.091715137474239,-9.573956530541182,-8.736527149099857,-9.366855854168534,-9.019316509831697,-9.031134339980781,-8.04654017649591,-7.964314115699381,-8.55350084649399,-7.764548243023455,-8.49106171214953,-7.501128744799644,-8.160855741705745,-8.01791309332475,-7.511283908039331,-8.386800289154053,-8.178641053847969,-7.790127889253199,-6.950478448998183,-6.8948519439436495,-6.851898728404194,-6.379170303232968,-7.375708359759301,-6.946736474521458,-7.25513682840392,-6.743073396850377,-7.632655526977032,-8.444712159223855,-7.717676813248545,-7.207115791738033,-8.199138469994068,-8.472981206141412,-7.588630459271371,-7.092328448779881,-6.73730205046013,-7.019531092606485,-7.7424987917765975,-6.8413428189232945,-7.806109837722033,-8.622187550645322,-8.4285854450427,-8.240039522759616,-8.816871026530862,-8.248575052246451,-8.471281071193516,-9.158335049636662,-9.77777166152373,-9.129766194149852,-9.203757744748145,-9.703863048925996,-10.453399340156466,-10.697852827142924,-11.551561286207289,-11.083287733606994,-10.215202474966645,-9.8251853142865,-8.978150648996234,-9.651177747175097,-8.98457539267838,-9.21903630392626,-9.431567437015474,-10.120603385847062,-9.305493090767413,-8.896022079512477,-8.443718338385224,-8.163461526855826,-8.967251332476735,-8.332710430957377,-8.836447073612362,-9.734640889801085,-10.443918148986995,-9.502783571369946,-10.189982555340976,-9.477574444375932,-9.862184771336615,-10.416036969050765,-10.722314450889826,-10.141783845610917,-10.112268821336329,-9.331335071008652,-9.836482422892004,-9.879561224021018,-10.04625907028094,-10.01013693632558,-10.290589364711195,-9.601642972324044,-9.85198091622442,-9.62809821870178,-9.934484488796443,-9.728399927727878,-10.554826377891004,-11.404092396609485,-10.84921353822574,-10.818874642252922,-11.244751934427768,-11.399393406696618,-10.598763309884816,-10.094247745815665,-10.928119596559554,-10.324344417080283,-9.9823486241512,-9.184922956395894,-8.893959579989314,-8.7470099972561,-8.831983336247504,-7.89888206962496,-8.10686064651236,-9.06110081775114,-9.95760987745598,-9.515174789819866,-9.864262792747468,-10.306401603389531,-11.033443967346102,-11.01962065976113,-10.592321407049894,-10.225794485770166,-10.93361576134339,-11.580708313267678,-11.573690101038665,-12.22772801015526,-11.243369624949992,-11.694752239156514,-11.588620045688003,-10.790715338196605,-10.031335982494056,-10.554988541640341,-9.971626727841794,-10.686047783121467,-11.283205022569746,-11.11942131537944,-10.625852219294757,-10.471822572406381,-11.093660954851657,-11.23360626026988,-11.549292613752186,-11.79660066217184,-12.122164933942258,-12.314775013364851,-11.538989966735244,-10.631763639394194,-9.734038901980966,-9.83838362712413,-10.053080535493791,-10.518419554457068,-11.308597426395863,-10.564094663597643,-10.15707131382078,-10.392477886285633,-10.787952763494104,-10.521397343371063,-10.025329537689686,-10.628061207942665,-11.171847333665937,-11.61551035149023,-12.285589381121099,-11.290936782490462,-11.33905180869624,-11.763884679879993,-11.158116874750704,-10.935001369565725,-10.282858713995665,-10.976150975562632,-10.928945525549352,-10.553604607004672,-10.70578849222511,-11.55876154312864,-11.209255968220532,-11.732145843096077,-11.005986155476421,-11.465758360456675,-11.513543998356909,-11.23939420748502,-10.579838567879051,-10.244028851855546,-11.014649986755103,-10.536123251542449,-10.64678627345711,-9.893991115968674,-10.688003355171531,-10.15162698039785,-9.706366042140871,-10.360811320599169,-9.697427009698004,-9.326037483289838,-8.871199153363705,-9.439963195938617,-10.047091658227146,-9.314973591361195,-10.182359605561942,-9.527691310737282,-9.53968103788793,-10.401313570793718,-9.892150373663753,-10.373188270721585,-11.132263873703778,-10.200230321381241,-9.979200380388647,-10.301116629038006,-9.38947468996048,-9.13801413308829,-8.601762601640075,-9.445168872363865,-9.72207214962691,-10.681083096191287,-11.332180804573,-11.989630189724267,-12.213595635723323,-12.419377631973475,-13.00734466034919,-13.030473672784865,-13.94306851318106,-13.178505027666688,-12.428426700644195,-12.358104286249727,-11.438495845533907,-11.72066469071433,-10.900449339300394,-10.756886859890074,-10.585321705788374,-10.008895782753825,-10.07832681760192,-9.156601469498128,-9.39439542638138,-9.428007180802524,-9.969450585078448,-10.193239178974181,-9.755028063431382,-8.879795999731869,-9.556608157698065,-10.142959064804018,-9.896874640602618,-9.330725234467536,-10.295047236140817,-9.850586091633886,-9.62680973438546,-9.380282054655254,-10.29451127583161,-9.45123527571559,-10.333272508345544,-11.242918479256332,-10.5234981989488,-11.349347431212664,-11.51333271106705,-12.086522006895393,-12.484859992284328,-12.099479227792472,-12.19535978231579,-12.460153757594526,-13.028179639019072,-12.096198568120599,-13.000939914491028,-12.015755237545818,-11.952807942405343,-11.285405456088483,-11.253682783339173,-11.661048779729754,-12.030517760664225,-12.912122110370547,-12.651754441205412,-12.797285573091358,-13.484421349130571,-12.529774193186313,-12.108293602243066,-12.83281574305147,-11.998961077537388,-11.618627173826098,-11.72872329922393,-11.28326642466709,-11.669587077572942,-12.347448670770973,-13.158510216977447,-12.598975513130426,-13.322546370327473,-13.97727337339893,-14.799886487890035,-14.927746665198356,-14.860509941820055,-15.817909186705947,-15.786278900690377,-14.88220481434837,-15.513856154400855,-15.636242068372667,-15.418055653572083,-14.467642882373184,-14.862553040962666,-15.817758659366518,-16.32506966823712,-16.693080991040915,-17.272966094315052,-17.162945810239762,-16.63837823132053,-16.539648178964853,-16.610511710401624,-17.445278007071465,-17.553510433994234,-16.995015900582075,-17.479173872619867,-18.47018201975152,-17.92443493520841,-17.25063676852733,-17.247267398051918,-17.089201024267823,-18.042957899160683,-17.43484730925411,-16.547457569278777,-15.564714454114437,-16.548891100101173,-16.735957339406013,-17.030893990769982,-17.28976187016815,-16.70553348120302,-16.219549098517746,-17.110619561281055,-18.000768688041717,-18.72222802322358,-18.63438218086958,-19.558672104030848,-18.905305665917695,-18.26029911544174,-18.85242642555386,-18.476431291084737,-18.14682465326041,-18.46545435860753,-19.090467878617346,-18.798704065848142,-18.368434010073543,-17.56413353094831,-17.71455755457282,-18.46414458565414,-17.603097050450742,-17.338465495500714,-17.02997301798314,-17.472580099478364,-17.44355352735147,-17.308644370175898,-16.635836625937372,-15.95823513623327,-16.30246248980984,-16.66324521182105,-17.36669665435329,-16.648949042428285,-17.199745771475136,-17.14024023571983,-17.445055303163826,-17.80167147004977,-18.267245427705348,-19.164291826542467,-18.954987747594714,-19.342497203033417,-19.55437004659325,-19.781859536655247,-19.991056793369353,-20.811705208849162,-20.124614449217916,-20.40537708438933,-20.517273634206504,-19.731833002064377,-19.23555518873036,-19.870785222854465,-19.75627896282822,-19.89368438255042,-19.11883377470076,-19.693788337986916,-18.712303972337395,-19.100945128127933,-19.324051240459085,-18.839619911741465,-17.9814255614765,-17.497998918406665,-16.874143602792174,-16.383426984772086,-16.42226103041321,-15.601050925441086,-16.068900961894542,-15.554477476514876,-15.04966690344736,-15.469535598997027,-14.493488520849496,-13.955563871189952,-14.767312612850219,-14.98545867903158,-15.942227769643068,-16.717889367602766,-15.775603346060961,-16.191014281008393,-17.081558101810515,-16.2171167768538,-16.350534783676267,-17.024747241754085,-17.884270198177546,-17.865659753326327,-18.490783241577446,-18.808751593343914,-18.901103973388672,-18.120235833805054,-18.339776763226837,-17.356160171795636,-18.03703134553507,-18.346645130310208,-18.188573411200196,-17.529537041671574,-17.63856698386371,-18.502821390517056,-18.088423713110387,-18.52746500261128,-18.779133224394172,-17.869158376008272,-17.169207079336047,-18.141702546272427,-18.081754944752902,-17.978446380700916,-17.194562211167067,-16.67479458730668,-17.298881924245507,-17.05364718195051,-17.52793211163953,-16.987755101174116,-17.121522557921708,-17.00118419714272,-17.779186467640102,-18.302949365228415,-18.207811446860433,-17.524513573851436,-17.4378761947155,-17.84487857017666,-18.835707048885524,-19.63982035871595,-19.119828248862177,-18.99572477117181,-18.090590596664697,-17.29437962314114,-16.62700102245435,-17.409558478742838,-16.63324240455404,-16.72222193190828,-16.691582722123712,-17.19524686411023,-16.37913134880364,-16.506915277335793,-16.557477933354676,-16.298718695994467,-16.041629811748862,-15.62013357784599,-14.829370949417353,-13.887162180617452,-14.57367519242689,-13.599108843132854,-14.105895776767284,-15.018702235538512,-15.049483953043818,-14.94125543255359,-13.969338307157159,-14.400341506581753,-14.913821801077574,-14.245801084674895,-13.263504137750715,-13.356825846247375,-12.824641987215728,-13.36337462021038,-13.05198121862486,-13.522551563568413,-14.167852863669395,-14.54967228602618,-14.827758523169905,-14.436107061803341,-13.549454571213573,-13.888311487156898,-14.715973069425672,-14.190865899436176,-13.849504108075052,-13.367317777127028,-12.672785884235054,-13.513594889082015,-14.261664492078125,-13.791164592839777,-13.933230633381754,-13.251775802113116,-13.396064234431833,-12.90576554229483,-13.384389311540872,-14.374937914311886,-14.332809272222221,-13.616720377001911,-13.587313496042043,-14.576163123827428,-13.914292156230658,-14.17423038976267,-14.641308514866978,-14.577241640537977,-15.336789509281516,-15.85605154838413,-16.664345733821392,-16.272706128191203,-15.442183695267886,-15.52570469956845,-14.887368449475616,-14.887355253566056,-15.776305134408176,-16.363018149975687,-15.57344672922045,-16.187266325578094,-15.243092181626707,-15.259882640559226,-15.85845764959231,-15.749520257581025,-15.661146105732769,-16.129892679397017,-16.149547601118684,-16.55063644098118,-16.218505192082375,-16.313017377629876,-17.116374692879617,-16.508413346018642,-16.87886982690543,-17.821254603099078,-18.49247091356665,-18.49746491899714,-17.792221425566822,-18.168266849592328,-18.511333190836012,-18.290730657055974,-17.471482671797276,-17.626991539262235,-17.928808632306755,-18.01240746723488,-17.71215623943135,-16.966314466204494,-15.980070013087243,-16.4299827683717,-16.642154321074486,-17.033932983409613,-16.55635529384017,-16.20114834466949,-15.246556597296149,-15.52290262747556,-16.13027859479189,-16.98356939991936,-17.29104728391394,-16.31358758872375,-16.27684648754075,-15.707028897479177,-15.936019651126117,-15.43287648819387,-15.415717575699091,-15.937105612363666,-15.443524609785527,-15.88482225406915,-15.163640652783215,-14.738660474773496,-14.16014475747943,-14.554819038137794,-15.316605007275939,-15.423286660574377,-15.44315222883597,-14.925983471795917,-15.615044701844454,-16.04299254110083,-16.09186481917277,-15.807494631968439,-14.833614026196301,-15.570263182278723,-14.88551984122023,-15.769708860199898,-15.578807447571307,-16.039051997009665,-16.18928413745016,-15.676949402783066,-15.129146974068135,-15.40614485507831,-15.646915844175965,-15.45369505090639,-14.985868642572314,-15.22336079319939,-14.817154613789171,-14.041712119244039,-14.623658739030361,-13.708746114745736,-13.313248957972974,-13.460873796604574,-13.052871562540531,-13.950892960652709,-14.118905218318105,-15.077976562548429,-15.012380809523165,-14.242544036824256,-13.63625078368932,-13.014321065042168,-12.118223282508552,-12.757794682402164,-11.978242726996541,-11.095252400264144,-11.506533497478813,-11.736029277089983,-11.451041537337005,-11.188911890145391,-12.007258045952767,-12.413320088293403,-11.89517983328551,-12.514033013023436,-12.018731015268713,-11.356049579102546,-10.36577637726441,-9.654530165717006,-8.969959832727909,-9.77633752906695,-10.428591374773532,-11.350107200443745,-10.88962380681187,-10.262592975981534,-9.624746957793832,-9.197810240089893,-8.324376404751092,-8.227976948022842,-8.359337597619742,-8.578960587270558,-8.143892352469265,-8.677733029704541,-8.15238631144166,-7.892684675753117,-8.864207244943827,-9.70834070444107,-10.373396027833223,-9.979689383879304,-10.843328262679279,-11.337454658932984,-12.018878675997257,-11.986271754372865,-11.576859274879098,-10.64606909872964,-11.282131086103618,-10.83071160968393,-11.746215363964438,-11.478592740837485,-12.104467647150159,-12.103451957460493,-12.391279390547425,-12.185572853777558,-12.389752838760614,-12.708794706966728,-12.317998812068254,-13.302743319887668,-13.53611235274002,-14.193368096835911,-15.020186804700643,-14.31309204455465,-15.287929333746433,-15.230583145748824,-14.74788805283606,-15.384259236045182,-15.016012907028198,-14.761180102359504,-14.051874504424632,-14.399265469517559,-14.887952973600477,-14.387285725679249,-14.176171730738133,-15.093495816458017,-15.765710444189608,-15.105452186893672,-15.091792369261384,-15.544919811654836,-14.800349830184132,-15.686835722997785,-16.23090680129826,-17.133367852307856,-16.617778123356402,-16.47231662692502,-16.692715615499765,-16.220389672089368,-17.060130268801004,-16.68900861032307,-16.98345797834918,-16.430262227077037,-16.045929732732475,-16.434230300132185,-15.504501811694354,-14.61961337318644,-14.023957410827279,-13.730135382618755,-13.910619233269244,-13.444510775618255,-12.694067563861609,-12.591899634804577,-11.9944177698344,-12.508006183430552,-12.200766101945192,-12.66559785977006,-12.114512358792126,-11.512282673735172,-10.776701871771365,-11.724759702105075,-12.284305994864553,-12.364722845610231,-12.968339365441352,-12.78142880834639,-12.16916337190196,-12.327433998230845,-12.071711543947458,-11.534747532568872,-11.027704080101103,-11.706786260008812,-11.478725351393223,-10.697102965787053,-11.271307588554919,-10.30290840845555,-9.77667040284723,-9.636540267150849,-9.130437326151878,-8.82930344576016,-8.435336255002767,-7.504497000481933,-7.655163175892085,-8.24422436626628,-8.629232751205564,-9.524235687218606,-9.757449744734913,-10.145232912618667,-11.025490893051028,-10.11052581248805,-10.731148556806147,-9.825215889606625,-10.61209194175899,-10.619404152035713,-11.575260615441948,-11.76722106197849,-11.03494197782129,-11.576485230121762,-12.327580952085555,-12.909109718166292,-13.541693214792758,-12.548533453140408,-12.88586401892826,-13.045583414379507,-12.04812926473096,-11.453979555517435,-11.133322892244905,-10.931993638165295,-10.03869033139199,-9.842280494514853,-9.618356691673398,-9.555430496111512,-10.025215837173164,-9.965901853516698,-9.785395441111177,-10.727934552822262,-10.956292330753058,-10.676860292907804,-11.320213127881289,-10.941115874331445,-11.49086153600365,-12.42703497223556,-13.216787316370755,-13.704478106927127,-14.320210926234722,-13.565708378329873,-14.294504943303764,-14.329931166023016,-13.608929106034338,-12.909308416768909,-13.86877807462588,-13.42744748108089,-13.933364011812955,-13.407702869735658,-13.81880660308525,-13.560405408963561,-12.936731459572911,-13.03138376539573,-12.397073245141655,-11.461904976516962,-11.194649304728955,-11.346503634937108,-10.689569137059152,-11.46635894337669,-11.849717451259494,-12.002454809844494,-11.552781564649194,-12.539450745563954,-13.27052707131952,-13.681274444330484,-14.353135301731527,-13.670384688302875,-13.776879923883826,-13.81700983364135,-14.578223183285445,-14.015485313721001,-13.903505664784461,-13.20278261974454,-12.553587198257446,-12.459970193915069,-12.872483907267451,-12.60173231549561,-11.6392607181333,-11.038992751389742,-11.978401099331677,-11.019967671949416,-10.906236872076988,-10.44758095126599,-9.793185533490032,-10.220801789313555,-10.795653100591153,-11.238118501845747,-11.325493462383747,-10.834370157681406,-10.366241465322673,-11.124184937216341,-11.783498230855912,-11.475678128656,-12.19813453219831,-12.6503930920735,-11.919408226385713,-12.65781059069559,-12.157599875703454,-11.888898035511374,-12.501008012332022,-12.186144925653934,-12.471549633424729,-13.409002630971372,-13.413890433963388,-13.250177423935384,-12.852536232210696,-13.036835788283497,-13.327028408646584,-12.704981331247836,-12.95002692984417,-12.573386462405324,-12.796061178203672,-13.18011415284127,-12.65938605600968,-12.310672575607896,-12.89321633335203,-12.112876363098621,-11.543006660882384,-11.389547421596944,-10.792443648446351,-10.749841942917556,-10.45408143568784,-9.52509550191462,-8.644991423934698,-8.518997794482857,-9.293196816463023,-10.158723230473697,-9.79767490318045,-8.810825034044683,-9.258916369173676,-9.802282658405602,-9.621262113563716,-9.634927470237017,-9.577818615362048,-9.453935648780316,-9.136985225137323,-9.18008826393634,-8.65693606575951,-9.32942700618878,-8.988485280890018,-8.251053691376,-9.207282881718129,-9.073486148845404,-9.315018134191632,-10.125935428775847,-10.021829647477716,-9.103407250251621,-9.999301045201719,-9.932951527647674,-10.906514463480562,-11.660601371433586,-11.011991971638054,-10.834575018379837,-11.562864083331078,-11.741762528661638,-11.151746083982289,-12.085816205479205,-11.767196806147695,-11.318827470298856,-11.324438723735511,-11.260887352749705,-10.490634449291974,-10.092187771573663,-10.190371507778764,-9.54414913104847,-8.581926762592047,-9.30625403067097,-9.517571363598108,-8.613074870314449,-8.023446454200894,-8.46843133540824,-9.069674232508987,-9.886335020884871,-9.902644504327327,-10.164682809729129,-10.014930179342628,-10.714494687970728,-11.146897229831666,-11.024350570514798,-10.304000741802156,-10.751727308612317,-10.402758252806962,-10.307318054139614,-9.67155043175444,-8.721183588728309,-8.731282768771052,-8.907110497821122,-8.882398334797472,-9.524994710925967,-9.116223443299532,-9.701982754748315,-9.458932896144688,-10.020208287984133,-9.402398897334933,-9.249555309768766,-8.460138645023108,-8.52415287680924,-7.609373698476702,-8.474888289812952,-8.060075675603002,-8.495523625519127,-8.032689286395907,-8.301994928624481,-7.927459369413555,-8.616103954613209,-7.838482387363911,-7.48682471876964,-7.282920664642006,-6.857950144447386,-7.333314154297113,-7.331880550365895,-7.937642993405461,-7.875441269017756,-7.661512855440378,-7.203980505466461,-7.317959471605718,-6.424890637397766,-6.570274306926876,-6.518502767197788,-7.125940728466958,-7.533572854474187,-6.7013681679964066,-7.48604405997321,-6.653508138842881,-7.087155484128743,-8.007126278243959,-7.136990445200354,-6.16481113107875,-6.753347923047841,-6.147513980511576,-5.76886091940105,-4.980651396792382,-4.60181268164888,-5.03123952774331,-4.4753693379461765,-4.722110389266163,-4.130888692568988,-4.051744413562119,-3.5665063192136586,-4.503735780250281,-4.623932974878699,-4.909580985549837,-4.9989874749444425,-5.460424780379981,-5.586475067771971,-4.6505405604839325,-5.598792899865657,-6.0866631381213665,-5.911471700761467,-5.652801403775811,-5.275390547700226,-5.90152693958953,-6.462476104963571,-6.781757247168571,-6.273896870203316,-6.983857633545995,-7.397736226208508,-7.9992341957986355,-7.923338774591684,-8.068186638411134,-7.392937166616321,-7.865241102874279,-7.784749046433717,-7.103638754691929,-7.591917812358588,-6.981934004463255,-6.5177582716569304,-6.068972447421402,-5.547242636792362,-6.34484111238271,-5.504751184489578,-6.269843466579914,-5.4999407841823995,-5.4321635835804045,-4.93053178768605,-4.576777373440564,-4.962680695578456,-4.244220174383372,-4.569412806071341,-3.6540925903245807,-4.509686721488833,-4.66719260904938,-4.2292117360048,-4.168231363873929,-3.7715183198451996,-3.8704193644225597,-3.4892239961773157,-3.6124651255086064,-4.500190954189748,-5.396304497960955,-5.818420223891735,-5.784630942158401,-6.609403415583074,-7.222124557942152,-7.63165131630376,-8.46242796536535,-9.336951978038996,-9.73405137937516,-10.164112772792578,-11.15280031785369,-10.856952583882958,-9.972890454810113,-9.098217806778848,-9.787047181278467,-9.966284335125238,-10.736463606357574,-10.233731637243181,-9.46200037561357,-8.748504066374153,-9.301690660882741,-8.819712173193693,-8.982813206966966,-9.087114766705781,-9.770436170976609,-9.092449059244245,-9.684281254187226,-9.208975297398865,-8.963825223967433,-8.667976004537195,-8.21664215810597,-8.688279983587563,-7.866446056868881,-6.873445435892791,-7.477683051489294,-7.316831004340202,-7.801037301309407,-8.240937996655703,-8.563561406452209,-9.214807385578752,-8.281968283001333,-8.9171431530267,-9.244449392426759,-9.219489831011742,-9.861355127301067,-9.198086039163172,-10.132216812577099,-10.151284738443792,-9.866047618445009,-10.478714879136533,-11.323969124350697,-11.593562250491232,-11.995046093594283,-11.774260946549475,-12.35773772932589,-12.887823161203414,-13.193195295054466,-13.629114943556488,-13.995953128673136,-13.786021647509187,-13.387339842040092,-12.985549277160317,-13.860869226045907,-14.556104780640453,-14.371310229413211,-15.0236946339719,-14.63756226375699,-14.98366637667641,-14.876715487334877,-14.884083739016205,-15.511969379149377,-14.961323363240808,-15.28296537976712,-14.508698429912329,-14.612860029097646,-14.900424929335713,-13.962610064540058,-13.469718992244452,-14.02602084307,-13.692192563321441,-14.210581038147211,-14.371535341721028,-14.568997817113996,-14.975377639289945,-14.64500379608944,-15.038537655957043,-14.881350212730467,-14.374250388238579,-13.697621659841388,-14.388588842004538,-13.400000749155879,-14.136753130704165,-14.814818011131138,-13.929976124316454,-14.313497452065349,-14.18784597190097,-14.870355693623424,-15.742763475514948,-15.127426903229207,-14.681902039796114,-15.491309010889381,-15.000637497752905,-15.152613894548267,-14.72209003707394,-14.31187002779916,-15.177711668424308,-14.551595878321677,-14.89851214690134,-14.91229850333184,-14.362756685819477,-15.097340653184801,-14.228578765876591,-14.217461577616632,-14.440262734889984,-14.611755163874477,-14.401903237216175,-14.289535694755614,-14.784331514965743,-14.749725009780377,-14.389152104500681,-15.011784486006945,-14.678727369289845,-15.491337633226067,-14.786705159582198,-14.5582764595747,-15.454504557419568,-14.941933881025761,-14.96102145826444,-15.475962955504656,-16.08487631753087,-16.146401853766292,-16.741040209773928,-17.0143431564793,-17.10449713980779,-16.55505314283073,-17.525626397226006,-17.138109225779772,-16.265272424556315,-15.580952608957887,-14.741140304598957,-13.749496610369533,-13.981996685732156,-14.288018914405257,-14.86978556914255,-14.337180011440068,-15.205892249941826,-14.889083245303482,-15.410089695826173,-14.681727458257228,-15.470851711463183,-15.400760747957975,-15.018959822133183,-14.905959404073656,-14.979906348977238,-15.871307260356843,-16.63135953200981,-16.457725325599313,-15.458988416008651,-15.214922646060586,-14.235724437516183,-14.960330193862319,-15.233844685833901,-15.03585773985833,-14.491381517611444,-13.589267975185066,-14.559415171854198,-13.84331678180024,-14.196478797588497,-14.852193739730865,-15.520879864692688,-16.268834670074284,-16.622034552507102,-16.483211284969002,-16.22919538896531,-17.093928835820407,-17.751051384489983,-17.125284884590656,-16.406703810673207,-15.778623288031667,-16.724527904298156,-15.972856970038265,-15.755477583035827,-16.34576833806932,-17.122646963223815,-16.910721577703953,-16.215562508441508,-15.953468154650182,-15.557681075762957,-16.19942884054035,-17.18625697074458,-17.22375905048102,-16.406714409124106,-15.71360987238586,-16.255812992807478,-15.659680490382016,-15.710383662488312,-16.377204288262874,-15.435337323695421,-14.460203321650624,-13.815765571314842,-13.044174349401146,-12.464643839746714,-12.55779024073854,-12.67983269598335,-13.587682629935443,-14.107193933799863,-14.389570186380297,-14.049488628748804,-14.033976085018367,-13.353825606405735,-13.047180109657347,-13.818567110225558,-14.564303473103791,-14.83610204514116,-14.02647157991305,-13.12822151184082,-12.599206960760057,-13.527500817552209,-13.227270053233951,-12.74701863899827,-13.719874578993767,-12.79019735660404,-11.890829233918339,-12.086646851617843,-11.85955189820379,-12.15335698518902,-12.509963251184672,-12.328034438192844,-12.199719573371112,-12.343274717219174,-13.238147872965783,-13.321409779600799,-13.771879854146391,-13.093406429048628,-13.940225595608354,-13.116596883162856,-13.629403267987072,-13.20968816196546,-12.811760850716382,-11.82450077868998,-10.83296688972041,-10.563157550059259,-10.313628249801695,-10.312695750966668,-9.67133494373411,-10.539839423261583,-10.157051771879196,-10.552533062174916,-11.449012383352965,-11.01792028453201,-11.68069552257657,-12.609103495720774,-12.251324146520346,-12.439424202311784,-12.610100641846657,-12.283151537179947,-11.814024729654193,-11.368568235542625,-10.422681075986475,-10.54136340180412,-11.506345857866108,-10.952689055819064,-11.73935304256156,-12.128762308042496,-12.141410613898188,-12.430692485533655,-11.9941171775572,-11.021856961771846,-11.99198344629258,-12.53640310652554,-13.014893198851496,-12.747179511934519,-12.395616642665118,-11.701669742818922,-11.48894892539829,-11.644484561868012,-11.793312582187355,-11.831475944258273,-12.587976012844592,-12.515725679695606,-13.420673350803554,-13.35851579066366,-12.626117201521993,-13.05858682282269,-12.178997406736016,-12.454694487620145,-12.046858170535415,-11.331113994587213,-11.778824172914028,-11.466746919322759,-10.486348278820515,-9.510371943935752,-10.162385027389973,-9.602722979150712,-10.194567622616887,-9.524605555459857,-9.57842519134283,-8.664596098475158,-9.440209876280278,-9.518603551667184,-9.777410164475441,-10.325732403900474,-11.117621375713497,-10.994938447140157,-11.11084710760042,-11.147700407542288,-11.218808738514781,-12.216110095847398,-13.013854855671525,-13.598416430875659,-13.600775049068034,-13.324253635946661,-14.207725760526955,-13.768840310629457,-14.694032579194754,-14.735515341162682,-15.57269810512662,-15.867961517069489,-15.072430097498,-14.756945351604372,-14.289426186587662,-15.02144888183102,-14.612026307731867,-13.847778796683997,-13.181159721687436,-13.474891047924757,-13.940430646762252,-12.988056032452732,-12.182910923846066,-12.318561456631869,-12.897413777653128,-13.775576269254088,-13.291984286624938,-13.059153671376407,-12.897391950711608,-13.273556649219245,-13.271279446780682,-13.191929874010384,-12.62568041915074,-12.190205277875066,-12.95826114108786,-12.98519726563245,-13.7145327613689,-13.35098496126011,-12.787758968304843,-12.942585684359074,-13.459632666781545,-12.522232664749026,-12.56141474796459,-13.132551255635917,-13.327090325765312,-13.989676642697304,-13.729208027012646,-13.675183933228254,-14.550729385577142,-13.567880523391068,-13.896035722922534,-14.296075469814241,-14.991195426788181,-14.844392541330308,-14.805943437386304,-14.465495594311506,-13.625411686487496,-12.983413809444755,-12.783222023397684,-11.981884425971657,-11.888948420528322,-12.41475283820182,-13.387272424064577,-13.394868661649525,-14.177911311853677,-13.908073252532631,-14.02863774355501,-13.61470383265987,-13.6386754559353,-14.036209598649293,-13.335942172445357,-12.39975449629128,-11.439277902245522,-10.457398410420865,-11.00579870166257,-10.101678658742458,-10.056077792774886,-10.485408867243677,-9.66716742888093,-9.413941978476942,-10.373893658164889,-10.247787480708212,-9.920298522338271,-10.069787865038961,-10.837865141686052,-10.094902331475168,-10.688599922228605,-10.646588271018118,-11.356605911627412,-11.441596006043255,-10.896592679899186,-11.480079346336424,-11.915698454715312,-11.55351581191644,-11.434661525301635,-11.90734893642366,-11.239439847879112,-11.0149096082896,-10.589344163425267,-11.130262160208076,-11.849041294772178,-11.132646855898201,-10.549656329676509,-11.205219164025038,-11.853574856650084,-12.851547808386385,-12.717733410187066,-12.278193878475577,-12.8330148733221,-11.913970940746367,-11.163895110134035,-12.024252320174128,-12.665420971345156,-13.144984455779195,-12.54954544082284,-12.982835576869547,-12.712505519855767,-13.538827714510262,-13.051989372354,-12.51359255425632,-12.064480412751436,-11.171930793207139,-10.245642310008407,-9.509246634785086,-8.74546651635319,-8.838641099166125,-7.89366432512179,-8.304875625297427,-8.73872900661081,-9.173903617542237,-9.237191344145685,-8.750966933555901,-9.302710071206093,-9.297761764843017,-9.212799243628979,-8.835556565783918,-8.638293424155563,-8.665271752979606,-7.675754173658788,-7.471685409545898,-6.815297061577439,-7.5760752777569,-7.510372476186603,-6.955951038282365,-6.898690554779023,-7.073932401835918,-7.079120183829218,-6.875180872157216,-6.303823698312044,-7.202682394534349,-7.084211186971515,-6.727992549072951,-6.155128674115986,-6.192670315969735,-5.662281959783286,-5.504241999704391,-6.116824630647898,-6.3893143543973565,-6.681544438935816,-6.46304869139567,-6.474700921215117,-6.479750308673829,-7.256109076552093,-7.373036960139871,-6.8230912876315415,-6.260283158160746,-5.8532095132395625,-6.009312113747001,-6.809480411931872,-7.678855226840824,-8.318592344410717,-8.10716803278774,-7.435245793778449,-7.02807281864807,-6.7207473292946815,-6.77119673974812,-5.946810459252447,-6.702559345867485,-7.185083413030952,-6.521924759726971,-6.266008116304874,-7.2339737974107265,-7.340804864652455,-6.982522661797702,-6.33271004492417,-6.54660654021427,-6.21160423476249,-5.446930966805667,-5.5177232483401895,-6.294604311697185,-7.098158671054989,-7.224507292732596,-6.593468936160207,-5.598772617056966,-6.355492562055588,-6.190003676805645,-7.127831446938217,-6.9829121683724225,-6.252538866363466,-6.762970432639122,-5.919637896120548,-5.683060810435563,-4.868546110577881,-4.8912733173929155,-5.482611049897969,-6.163787247613072,-5.5355310323648155,-6.151594544295222,-5.402894821483642,-5.117185905110091,-4.845293570309877,-4.123931686859578,-3.245039361063391,-4.141351823229343,-4.495341804344207,-3.654170583933592,-2.912042705807835,-1.9167627422139049,-1.099012698046863,-1.8882206832058728,-1.6727962014265358,-2.5262042628601193,-3.134975637309253,-3.0469789588823915,-3.9414945230819285,-3.2344570332206786,-3.8636691006831825,-4.180949461180717,-4.484813102986664,-3.560557398479432,-3.8419743981212378,-3.37961969897151,-3.733793946914375,-3.2640572185628116,-3.2166397236287594,-3.5711700869724154,-3.7289179796352983,-3.3624298269860446,-2.638378362171352,-3.4878878900781274,-4.240532393101603,-4.776598013006151,-4.060528777074069,-4.5647000866010785,-4.66462516784668,-3.8995430106297135,-4.094094476196915,-3.6624356959946454,-2.8755165990442038,-3.1315555972978473,-2.8833916815929115,-2.1266294927336276,-2.374823014717549,-2.6148848119191825,-2.456918202806264,-1.6507027396000922,-2.150993217714131,-1.253002228680998,-2.1355649032630026,-2.0813672617077827,-3.0227083382196724,-3.958625290542841,-4.1216038363054395,-4.785585469566286,-3.9191841296851635,-3.2042910885065794,-3.4337413418106735,-2.547703641001135,-2.8724753451533616,-2.797534511424601,-2.169588139746338,-1.8648929982446134,-1.6125159012153745,-0.9344806536100805,-0.08884319057688117,-0.41122626001015306,0.18155243946239352,-0.16755191516131163,0.7425689781084657,1.3888084893114865,1.8721916899085045,1.7702184724621475,1.7720888517796993,1.3504606098867953,1.5683841430582106,2.4448208678513765,3.211603359784931,3.822902179323137,2.949698119889945,2.5755513440817595,2.553182893898338,3.0609374456107616,3.8906913842074573,4.8838150152005255,5.277395030949265,4.427416817750782,5.263999863062054,5.346424609422684,5.229101445525885,5.063594011589885,4.605070834979415,3.967246654909104,4.012422792147845,4.4687426667660475,3.573666133452207,3.510601738933474,4.184185802005231,4.197504841722548,3.2048604036681354,3.4555640532635152,2.8937126379460096,2.382034162990749,3.273503557778895,2.836007767356932,1.985994170885533,1.799504385329783,2.508812041953206,1.9754300503991544,2.5049959048628807,2.6970673259347677,3.1906152390874922,3.0487281954847276,2.07887196354568,1.2035107356496155,2.0455397139303386,2.1930394330993295,2.363505258690566,1.906961818691343,1.0613219481892884,1.0571774700656533,0.7232718775048852,1.5973949721083045,1.1957762404344976,0.4832678195089102,0.9262464810162783,1.8702906076796353,2.3632584461010993,1.5914730788208544,1.5617770217359066,0.6152024040929973,1.3237897311337292,1.6489595933817327,1.8517879331484437,1.591636155731976,1.2670432613231242,0.8624527310021222,1.6911802785471082,2.151059389580041,3.0643639392219484,3.5955260819755495,3.4926506765186787,4.299931027460843,3.586753773037344,3.850148526020348,4.169283393304795,4.861981744877994,4.81866736151278,4.781315574422479,5.612189762759954,5.814418169669807,4.999126258306205,4.881215068511665,4.91396066127345,5.890816850122064,5.699810371268541,5.935209150891751,6.056954312603921,6.109364606440067,5.613033898640424,6.5733965379185975,6.907695642672479,7.165708989836276,7.333191303070635,7.076748120598495,6.889930028002709,7.268961461260915,7.047617243137211,6.542556802742183,5.994669416919351,6.431025316007435,7.04000465804711,7.798144639004022,7.059277507010847,6.8936380674131215,6.255966778844595,6.096513298340142,7.076700184959918,7.269465554971248,6.45174382859841,5.898633883334696,6.014103511814028,5.382303374353796,5.460744000039995,5.6572089632973075,5.540966481436044,5.256959124933928,5.554743505548686,6.180350520648062,7.1801327764987946,7.4290048512630165,8.336663303896785,7.448487897403538,7.472786890342832,8.06678358046338,7.864674867130816,7.15158875240013,8.120962201617658,8.383648126386106,9.167829976417124,8.261489007156342,7.483204102143645,7.360792918596417,7.934078361839056,6.972367986105382,7.21400939533487,7.4942485322244465,6.990953523665667,7.415607158560306,7.177121681161225,8.021203686483204,7.065865789074451,6.428125009872019,5.889881977811456,6.800477837678045,6.289105928968638,6.267465830780566,5.845465013757348,5.674092546105385,5.067582428921014,5.9063546801917255,5.326588624622673,5.714921904262155,6.357802319806069,6.706898815464228,6.070496115833521,6.02810543589294,5.193634757772088,5.721096048597246,5.873071071691811,5.0840571699664,4.373175888322294,4.452887400519103,4.075140409171581,4.082891647703946,4.841942886821926,5.172752812039107,4.280168033204973,3.8690317342989147,4.739853942766786,5.004302161280066,4.865277948323637,4.915772120002657,5.014047142583877,5.240771530661732,4.368792552035302,4.917920508887619,4.141342689283192,4.383860387373716,4.891248253639787,5.313938152976334,6.135232151020318,7.094871669076383,7.640620198566467,6.73952578054741,6.082073726691306,6.259412904269993,5.521157259121537,4.822412503417581,5.5723315784707665,6.154773040674627,5.8382110404782,6.38657615846023,6.127305617555976,6.66628597304225,7.480645629111677,8.010101867839694,8.02366237482056,7.786636015865952,7.633533779531717,8.607204722240567,7.790511461440474,7.319045001640916,6.961076675914228,7.851932215038687,8.473976064939052,8.968799733556807,9.956834933254868,9.971783373970538,10.369626274332404,10.312863134779036,10.848273319657892,11.357263598125428,11.163073764182627,11.352425147779286,11.535716961603612,10.806315482594073,10.316949158906937,9.97779182670638,9.90815853793174,10.449861725792289,10.230153869371861,10.302258198149502,9.980017339345068,10.011689115315676,10.53067705547437,10.189249134156853,10.684399584773928,10.381975043099374,10.494474811013788,10.241611677687615,9.533680361229926,10.277864857576787,9.351511156186461,8.772010362707078,8.844144666567445,8.352422679308802,8.96931775053963,8.169094680342823,8.552576493937522,7.8766914727166295,7.115963896270841,6.269946026150137,7.146218433976173,7.24095567734912,6.358208391815424,6.832757619675249,5.969884805381298,6.955559232737869,6.957804124802351,6.969019274692982,6.317467727232724,7.09805656876415,6.509192056488246,7.156941991299391,7.918759412597865,8.144017620943487,8.154857787769288,7.745088566094637,7.733685216866434,8.398606129456311,9.215891340747476,8.46606755303219,8.51389721641317,9.092912890948355,9.080578631721437,9.817340581212193,9.90901432838291,9.271921355742961,9.422208852134645,8.941299634519964,9.935162554029375,10.756253122817725,11.028642508201301,11.518905213102698,11.410816780757159,11.57577282609418,11.88681086525321,11.86090890923515,12.019259385764599,12.914579133037478,13.759967410936952,14.607080969959497,15.476116336416453,15.680343395564705,14.954960734583437,15.467145428992808,15.069656247738749,14.21782064717263,14.543304254300892,14.001993615180254,14.397134775295854,13.975376646965742,14.376109059434384,14.418050760403275,13.803291706368327,14.336833375040442,14.413261767942458,14.712175644002855,14.081807566341013,14.215913497842848,13.998867874033749,14.014689148403704,14.977809282951057,15.136596018914133,14.38736065523699,14.93146297475323,15.796751982998103,15.91937282634899,15.938061581924558,15.934299813583493,16.39521173387766,17.31741834944114,16.73082468798384,17.4488806524314,18.0177882630378,18.763593883253634,18.573832888156176,18.41112071601674,17.482623080257326,17.993288680911064,18.261881244834512,17.97782007837668,17.08278818288818,17.19958276115358,18.003200461622328,17.4437444540672,16.701784531585872,16.892023697961122,17.1887359037064,16.82703942898661,16.418377206195146,17.416637482121587,17.97761617647484,18.145625580567867,17.188548187725246,17.45270281843841,16.656733707990497,16.252208579331636,15.790441730059683,16.53212021617219,15.542762231081724,16.47917596390471,16.739620368462056,16.336529737338424,15.545038184151053,15.80510387988761,15.788537388667464,15.770528994966298,15.608482205308974,15.163631360977888,15.283408727031201,15.128634883556515,15.889849395956844,15.34759732754901,16.10730695258826,15.58164798701182,16.380402494221926,16.76928789820522,16.15752151980996,16.240333177149296,16.079114169813693,15.093173149507493,14.921040013432503,14.75393035588786,14.106621835380793,14.131678854580969,13.656998367514461,13.304894356057048,14.161209596786648,14.955430002883077,14.87785768462345,14.745720623061061,14.12714716233313,14.970857072621584,15.316537586506456,16.00024887593463,16.110536224208772,15.666707891505212,16.476185775827616,15.619261481799185,16.50291052320972,16.06415643915534,15.331256440375,14.61391268717125,14.141933570615947,14.691188140772283,14.495953054632992,13.5662686470896,13.346593864727765,13.107548496685922,12.110151866450906,12.549899351317436,12.947720301803201,12.059801654424518,11.90578831359744,12.697328359819949,11.927231534849852,12.142200541682541,12.166167953517288,12.350339939352125,12.419351098127663,12.0047218920663,11.23682595230639,11.218528646044433,10.910490050446242,11.864581763744354,11.926492514554411,11.771082155406475,11.194035815540701,11.352460236754268,12.25842226948589,13.162211874499917,12.731458937283605,12.347264755051583,12.708893456496298,13.203618358355016,13.186819158494473,13.800036218948662,13.155295378062874,13.221922236960381,13.210005758795887,12.325705647002906,12.03861600998789,12.412331830244511,12.534379300661385,13.424703979399055,12.642596477176994,12.409286508802325,12.13094523595646,12.664421449415386,12.077438493259251,12.21407295577228,12.25563487643376,11.892982171382755,11.938519600778818,11.297932182438672,11.30156533094123,12.180784515105188,11.799343148712069,12.580857088323683,13.292152126319706,14.12661958578974,14.065501228906214,15.053666317369789,15.813634333666414,16.5324502652511,16.73194128042087,16.658122966066003,15.769535691011697,15.430749097838998,15.267238484695554,15.074540025554597,15.991057073697448,16.914301473181695,16.559195009060204,17.509201819542795,18.40842421539128,17.899264144245535,17.619322314392775,17.460163534153253,16.78789735166356,15.839749509468675,15.686694089788944,16.201614294666797,17.10598471853882,16.924351905938238,16.327631734777242,15.368486710824072,15.891608087345958,16.828269984573126,15.974162846803665,15.234099932946265,15.566694650333375,15.506119194906205,16.360606465488672,17.330179928801954,18.097674466203898,18.870596325490624,19.199323795735836,19.10667896969244,19.87387716723606,20.627046482171863,19.665691724978387,18.746382031589746,18.744796586222947,17.81932493764907,18.463243823498487,17.498572822660208,16.699339896440506,16.06436580605805,16.526739040389657,16.796371806412935,17.279019215144217,16.7627056511119,17.44775749044493,17.60602607531473,18.112059871200472,18.758661929983646,17.919353470671922,18.239245555829257,18.29671293310821,17.410067109856755,17.10758657148108,16.695742528885603,15.721572662703693,16.23483645124361,15.62473546154797,16.35910174716264,16.327654276508838,16.065208405721933,15.068548032548279,15.455505570862442,15.421207596547902,16.262390478514135,15.943580134771764,14.959276029840112,14.360617840196937,15.091683593112975,14.561298030428588,14.868459458462894,14.58959085168317,14.551684681791812,14.326535248663276,15.133160906843841,15.767172169871628,15.383834074717015,15.668349236249924,14.93850903911516,14.231646002270281,14.015266006812453,13.995492073707283,13.368248524144292,14.018778128083795,14.553737974725664,14.683739719446748,14.058903344441205,13.727717787027359,14.60634747473523,14.26693623373285,14.9001927790232,15.409641037229449,15.767850494012237,15.656537414062768,15.71720079286024,15.036234076600522,15.427122589666396,14.573749923147261,13.70705240778625,12.715112345293164,13.518230957444757,14.10211025364697,13.721456168685108,13.99555710889399,14.345013961661607,15.228373102843761,14.392665933817625,13.414866676554084,13.618753207847476,13.739803691860288,13.54153055511415,13.323832465335727,14.04051457438618,14.404763779602945,15.116632020566612,15.137598548084497,15.803105790633708,15.840308322105557,15.014019324909896,14.990180907770991,15.116131336428225,15.873113854322582,16.360967956017703,16.2469211271964,16.24472748208791,17.124679789412767,17.32557793473825,18.12845305353403,17.510095759294927,16.956596193369478,16.87113398546353,16.972929215524346,16.07212063204497,16.51304468140006,17.053527941927314,17.760219781659544,18.490909381303936,18.34753968100995,18.168418428860605,18.279639682732522,18.918321770150214,19.659245618619025,19.34053534269333,19.029798068106174,19.93301321659237,19.599081700202078,18.679286662954837,18.324877532664686,17.98304546950385,18.80833655409515,19.090187994763255,19.043447610922158,19.642610327340662,19.000082506332546,19.45054877642542,20.323242302984,20.260720469988883,19.730595901608467,18.829344612080604,19.388309980276972,19.947327851317823,20.540048610419035,21.219028998631984,21.96961123449728,22.407420831732452,22.457603334914893,22.950236605945975,23.478605310898274,23.663853187114,23.37743641389534,23.329588113352656,22.66978698875755,21.68552480218932,21.535031896084547,21.798397538252175,21.621698504313827,20.972619431558996,20.374863157980144,19.498410259373486,19.59508654475212,20.171549091115594,19.78525834856555,19.23878728924319,19.53825058788061,18.59525355231017,18.10777577199042,17.89039253303781,18.033238409552723,18.63599287159741,18.809728434309363,18.324944517109543,18.088285212405026,17.701203376520425,18.150081462226808,17.670797053258866,18.46516588050872,19.267666475847363,19.640304788481444,19.254405684303492,19.7288236040622,20.054644708056003,19.464976895134896,19.757124641910195,19.41305741062388,18.73715121578425,18.980293080676347,19.532721356488764,19.817748808301985,20.53470712946728,21.44820311339572,21.835152334999293,21.59029854182154,22.01729867234826,21.27377073140815,20.56518494244665,20.887883212883025,20.345634082332253,20.718023060355335,20.76426696171984,20.92715041851625,21.062853296287358,20.46801924146712,20.690320388413966,21.518938259221613,21.90265895240009,21.160574818961322,20.725335884373635,19.920683515258133,19.253812294453382,19.49956163391471,18.846340351738036,19.32738587120548,18.499109918251634,18.719148329924792,18.938328956253827,18.35959038231522,18.74219149304554,18.824612625408918,19.78379572974518,19.701519309077412,19.24896492389962,18.50684689031914,18.633459157310426,19.263619085308164,19.03976696403697,19.787766056600958,19.9829285684973,20.922537337057292,20.132156503852457,20.100350461434573,19.522087136283517,19.7588715380989,19.427321244962513,19.699025832582265,19.41431879485026,19.051737680565566,18.656078186351806,19.021531808190048,19.45762705989182,19.724906608927995,18.76550311362371,17.973087491001934,17.392821312882006,16.87617042567581,16.751860331743956,17.555034632328898,16.646777102723718,17.29046623595059,17.947547272313386,18.687648279126734,18.706192328128964,18.500964435748756,18.648419303353876,19.593747915700078,20.3517310670577,19.453911554068327,19.749241872690618,18.98505352716893,18.256788740400225,17.266086442861706,17.548039282206446,17.08788097696379,16.28139574546367,15.682666699867696,15.608262354973704,16.07971932925284,15.907768852077425,16.07298672851175,15.567713285330683,16.37329320749268,15.540506527759135,15.348138036206365,16.340939980000257,15.920188470277935,16.909645655658096,17.236012193374336,17.43991662701592,18.365302038379014,18.067358674947172,18.636236225720495,18.246012710034847,17.314918318297714,17.51548333046958,16.641392584424466,16.165179810486734,16.41067377757281,16.16863448591903,16.277317319996655,16.106275852769613,16.56809987826273,15.969815640244633,15.531093174126,15.637836545705795,16.552779654040933,15.595565348863602,16.132894586771727,16.90592655632645,16.28351603401825,17.255065666511655,18.241875210311264,18.87753510288894,18.44806725019589,17.550533098634332,18.341337544843554,18.069877214729786,18.582149331457913,19.489329962525517,20.207188970874995,19.29750031651929,18.893872492946684,18.00978946639225,18.46622731303796,17.636183361988515,18.44369156192988,17.952881881035864,17.231465072836727,16.60837034136057,15.876518610864878,15.79771361220628,15.109708990901709,15.489931227173656,16.37492677848786,17.121310328133404,17.37357964599505,17.60832900227979,17.35541820153594,17.12015332141891,16.161246648989618,15.727323723956943,15.362300943117589,14.506103151943535,15.354962899815291,15.942902633920312,15.685249337926507,15.947106897365302,15.568405425641686,16.004797569010407,16.654043606482446,16.91108272317797,16.460405618418008,17.064038316253573,17.140987338963896,16.337811623699963,16.04637340363115,15.962001196108758,16.83429013006389,16.231981209944934,16.973739537410438,17.223225115798414,17.104370651300997,17.743702181149274,18.10858745314181,18.72642779070884,17.773487250786275,18.515913750976324,19.25012743799016,19.304003848694265,19.385460167657584,20.00203061196953,20.77619408350438,21.657962551806122,20.838453945238143,19.99459942104295,19.547053423244506,19.84912599576637,20.552346531767398,19.990127950906754,20.16935097705573,20.77660268684849,21.09127943078056,20.448083599563688,20.79473195038736,20.13997303880751,21.010459053330123,20.709120345301926,20.380676155444235,20.664838609751314,20.703582155983895,19.732914882246405,20.491173837333918,20.81570032564923,20.966581417713314,20.01076677814126,19.584051925688982,19.928253990598023,20.841411302797496,21.401532561518252,21.987038269173354,21.831245813518763,22.216851859819144,21.8082157461904,22.65869819931686,23.48815660411492,23.73360146768391,23.24682937283069,22.323620512150228,23.075061723124236,23.835293631069362,23.691437054425478,23.241742259357125,22.644365161191672,23.221149309538305,22.64074055897072,22.241740826983005,22.926710051950067,23.67673692665994,22.81262257276103,22.29631313448772,21.897906239144504,22.768429026938975,21.79048206144944,21.034202240407467,21.272803486790508,20.596931542269886,21.185790898278356,21.889664142392576,21.284436999820173,22.04093696642667,22.629979775752872,21.96395460003987,22.757194194942713,22.250309235416353,22.74190744711086,22.94286607997492,22.938326082658023,23.684062373358756,22.857651161495596,22.21745030162856,21.403431998565793,21.81036471761763,21.738271410577,20.76856848737225,21.323926624376327,22.24675468262285,22.118078091647476,22.907524215988815,21.977126804180443,22.633258159272373,21.754524600226432,22.432110213208944,23.40972654055804,23.262347276322544,23.97073663631454,24.59220869280398,25.25389211345464,26.03029772778973,26.37701546633616,26.06366549897939,26.16765169519931,25.769748548045754,25.936305085662752,26.48520123679191,26.88923540711403,25.983705213293433,25.030479627195746,24.203184977639467,23.644411716610193,22.941003733314574,23.216015882324427,22.511481961235404,23.1507429308258,22.385326787363738,23.24054537154734,23.9245027853176,24.003495537210256,24.744872419163585,23.813616489991546,23.67671912908554,23.612150476314127,24.067843773867935,23.088705074507743,23.844057923182845,23.233564636670053,23.744995875749737,24.132214926648885,23.173938960768282,23.2165268920362,23.176437667105347,23.12289162306115,23.969312496483326,23.849406668450683,23.41387354489416,23.129312189295888,23.00639329617843,23.09835017612204,22.406061047688127,22.546487094834447,22.608171831816435,23.33868603594601,23.15196376806125,22.354261222761124,22.0159085476771,22.8059837333858,22.934586187824607,23.843215828295797,24.40949206845835,24.599686661269516,23.91467370186001,23.117678164038807,22.921458343509585,22.660565712489188,22.213858908507973,21.718838058877736,22.075467702001333,21.81212119758129,21.254709218628705,22.202440585009754,22.652831460814923,23.56324524106458,24.392955026589334,23.501408976037055,22.871762567199767,23.5120808952488,24.18661503912881,23.50114068761468,22.749877955764532,23.212786274030805,24.047861153259873,23.183177595492452,22.58726449869573,21.67296686489135,21.46185994707048,20.5473994622007,20.613028408959508,20.02247765986249,20.706553380470723,20.352527072187513,20.05123406322673,20.9426076291129,20.434286777861416,21.27541842451319,21.697667952626944,22.226925229653716,22.63133039744571,21.76844974141568,20.845431295689195,20.059052801225334,20.39303063414991,20.755382113624364,21.672259926330298,21.733470355626196,21.30071830097586,21.232044629752636,21.18500131368637,21.302506691310555,21.164343409240246,20.54087220923975,21.418816013727337,20.508521091658622,20.89833861263469,21.26834393059835,20.85989074362442,20.992045267485082,20.194148584268987,19.695046511944383,20.015319463796914,19.44543107645586,19.52463333820924,20.120009385980666,19.418311036657542,19.730717903468758,20.30459515750408,20.47622582875192,20.468756097368896,20.393680806737393,20.754457416478544,20.78735774802044,19.81066359532997,20.551185783930123,21.53777796495706,21.121685574296862,20.83138198312372,20.418817052152008,19.634800714906305,18.69060503784567,19.684983188752085,19.045404971111566,18.79258206905797,19.286373670678586,20.101411540061235,19.77454469492659,18.858438523951918,18.057460316922516,18.410313433036208,18.16043473035097,18.989073395263404,19.322506198193878,19.91116650076583,20.46064052172005,20.53594310116023,21.122180154547095,21.425105010159314,22.294259476475418,22.050902851857245,21.278612989000976,21.083718915469944,22.061828669160604,21.160337864421308,21.911015377845615,21.111245755571872,20.779631638433784,21.134765023831278,20.74698893725872,20.740873152390122,21.22011940833181,21.29728524852544,22.193911096081138,21.202858339063823,21.868723057210445,21.588851997628808,20.70754374517128,20.521664986852556,19.89848584542051,20.097238360904157,20.616086061112583,20.053047797642648,19.76662642788142,20.766361814457923,21.24776134453714,21.579552066046745,21.387595905456692,20.96362514095381,21.02765590744093,21.420543151907623,20.7136208480224,20.319162467028946,19.767690224573016,19.404933956917375,19.429743213113397,18.690032238140702,18.125607181340456,17.630535333883017,17.058009766973555,17.34473032830283,16.557389677502215,16.45590156549588,15.643657104112208,15.080044412519783,15.775930618401617,14.904606907628477,14.996385695878416,14.191199133638293,14.216823429334909,13.363818498328328,13.024230912327766,13.386445447802544,12.860087397042662,12.944934725295752,13.37011731415987,13.875687217805535,12.966118457727134,12.755971196107566,13.122646401170641,12.34625679301098,12.358261472079903,11.828526289667934,11.03891232283786,11.791331528220326,11.284573921002448,10.472734407056123,10.280498353298753,9.549884584732354,9.896107028704137,9.033890996593982,9.52572416048497,9.052048521582037,8.44630427332595,7.468077052384615,6.865213977638632,7.081933728884906,7.218768830876797,8.101443283259869,8.754651783034205,8.334417244885117,8.030545921530575,7.425213293172419,8.29409598885104,9.142133069224656,9.03614052105695,8.702321575954556,7.914884589146823,7.73291868949309,7.972058238461614,7.093101125210524,6.54896439705044,6.103589603211731,5.397013885900378,4.532589455600828,4.8463066085241735,5.227997660636902,5.583584152627736,6.236715351231396,6.6853750995360315,7.487669605296105,6.968126908876002,7.927896607667208,7.470626981928945,8.04156931117177,7.673833602573723,8.449200146831572,7.683237251825631,8.109258491080254,7.972395313438028,8.172614414710552,8.805087031330913,8.213911368977278,8.206860532052815,8.416447767987847,7.555494606029242,7.983067373745143,7.689833997748792,7.75282576167956,7.251148121897131,7.598123882897198,7.574331301730126,8.01972990995273,7.093119534198195,6.762880020774901,7.070676676463336,6.8608909379690886,7.24610296683386,7.554795713629574,8.19715907331556,7.77514979057014,7.6553706442937255,8.033833482302725,7.172741270624101,7.028451652266085,7.783950622193515,8.767194143962115,9.05746832396835,8.78502472024411,8.45563948014751,7.882755162194371,8.860615038778633,8.155336174648255,8.05676019564271,7.512762979604304,7.7457427410408854,7.130775795318186,8.010483254212886,7.298405305482447,7.998749956954271,8.1247887047939,7.932326008565724,7.098848414141685,6.901677648536861,6.744425826240331,6.838564576115459,6.403958502691239,7.3449823572300375,6.824877073056996,6.067178276833147,6.985380705911666,7.880841844715178,8.541750292293727,8.704479277599603,8.315890558063984,8.404211688786745,7.901218947023153,8.693284676875919,9.079945963807404,8.905484918970615,8.920913383830339,8.07149885315448,7.903354419860989,8.376158208586276,7.900631291791797,8.166997467633337,8.771274415776134,9.768183874431998,9.19411857612431,8.362613775767386,7.70776278199628,7.941217691171914,8.383282373659313,9.215482564177364,8.92349084932357,8.5280318595469,8.593518844805658,8.349470374640077,8.494228780269623,8.61680365819484,9.118640941567719,8.253800268750638,7.808787412010133,8.056300255469978,8.69021202577278,9.475974265951663,9.266702896449715,8.897878971416503,9.339178962633014,9.21052149636671,9.855287197977304,9.458468198776245,10.219249278306961,9.371322930324823,9.21162916906178,9.920688440091908,9.204160912893713,9.745837172027677,9.174423949792981,9.497361962217838,10.083002369850874,9.723188649397343,8.951204811688513,8.359408430755138,8.358029983472079,8.78003580449149,9.418669455684721,10.136410342995077,10.686363521963358,10.056877669878304,11.042143255472183,11.019338248763233,10.934568589087576,11.23106711031869,12.20922413887456,11.876463759690523,11.254299963824451,12.102897541597486,12.174137056339532,12.640207264572382,12.797015350311995,12.201709201093763,11.596579858567566,11.321457042824477,11.088588708080351,11.424287849105895,11.285885115154088,11.814266670495272,10.823535681236535,10.709665848873556,11.045558489393443,11.173898504115641,11.222906514070928,10.705671689007431,9.945519482251257,9.509373578242958,10.46244792593643,10.454665236640722,9.904926632996649,9.044154720846564,8.311270290985703,9.217631558422,8.234928521793336,8.23600475024432,9.184257246088237,8.35549953347072,7.916910483501852,7.058634982910007,6.664208552800119,7.082743669394404,7.394372971262783,7.618143565487117,7.479042685125023,7.642167862970382,7.2285834308713675,7.578154757618904,7.595264816656709,8.338290170766413,8.385549027472734,7.896702576428652,7.4799678372219205,6.549128293059766,7.453615097794682,7.099190263543278,7.991748835891485,8.870858056470752,8.48970336979255,7.591114874463528,7.144705188460648,6.42785220593214,6.096424522809684,6.977312678471208,7.404677418060601,7.185762012377381,7.18090519728139,6.978551585692912,7.113759679254144,7.17373680183664,6.6689005782827735,5.98665091721341,6.1166294938884676,5.132323398254812,4.948691800236702,4.5263877916149795,4.076646267436445,3.8871318721212447,3.6596854124218225,4.397752285003662,3.5109660173766315,3.0542117352597415,3.2564032995142043,3.044364574830979,2.7075415095314384,2.9582807938568294,2.468657416291535,3.273964765947312,3.26003527501598,2.883433301001787,3.3608088907785714,3.573683847207576,4.208365391008556,5.118829097598791,5.008487798273563,4.902701140381396,4.823855001945049,4.478648770600557,3.828599115367979,3.6145565705373883,3.816545844078064,3.525717956479639,2.8240890805609524,2.2291124733164907,1.242975817527622,1.5360695575363934,0.5620692954398692,-0.43654328864067793,-0.8485278766602278,-1.3623758316971362,-1.3367585842497647,-0.599931956268847,-1.193738205358386,-1.7978448448702693,-2.393396929372102,-1.568643730133772,-0.895007885992527,-1.155404136981815,-0.3556616799905896,0.0007457961328327656,0.4161035646684468,0.44472396466881037,-0.2602993114851415,-0.6584714790806174,-0.28176476899534464,0.08819302311167121,0.22393278684467077,-0.6416722727008164,-0.08477101428434253,-0.960549951530993,-0.5853272480890155,-1.427673740312457,-1.6928624659776688,-2.4845675262622535,-2.7931578252464533,-2.175126780755818,-2.9865643652155995,-2.587307541631162,-2.2716314769349992,-2.6645501712337136,-2.907683754339814,-3.182193850632757,-4.021856023464352,-3.9528947765938938,-3.1200929158367217,-2.3410391486249864,-1.45508903125301,-0.7054139822721481,-0.7515262099914253,-0.6664960687048733,0.30630597611889243,0.5355380675755441,-0.3244952065870166,-0.07912259083241224,0.27090533217415214,1.0218325364403427,1.3499077432788908,0.6437710565514863,-0.3425841270945966,-1.2753788270056248,-2.199378987774253,-3.0155143565498292,-3.7324959486722946,-3.3653290937654674,-3.8870898466557264,-4.298133871052414,-3.9640751876868308,-3.1071240166202188,-3.881135483738035,-3.7169020497240126,-3.3644431876018643,-3.6088859015144408,-4.4303290247917175,-4.158021552488208,-3.833398651331663,-3.4190362044610083,-3.404840547591448,-3.350263957865536,-3.98657174827531,-3.3893945864401758,-3.5067888810299337,-3.6651737787760794,-3.0623971298336983,-3.36931320047006,-2.9510845858603716,-3.0552087016403675,-2.1705141463316977,-2.5324289738200605,-2.0220784270204604,-2.8288001269102097,-3.4022223614156246,-3.3872189396061003,-3.035240034107119,-3.1616832711733878,-2.6358182756230235,-2.5483185066841543,-3.206960674840957,-2.370580941438675,-1.7808974022045732,-1.7352629704400897,-1.0699282572604716,-1.8804282462224364,-2.426323075313121,-2.79514620359987,-1.9220659090206027,-1.6736846421845257,-2.492515713442117,-1.6284896861761808,-1.354672273620963,-0.6066798460669816,-0.6666428945027292,-0.33510634303092957,-0.10671245772391558,-0.5283575556240976,-0.43532327050343156,-0.6399668771773577,-0.6992278387770057,-0.626658562105149,-0.7859232043847442,-1.0057448344305158,-0.6666029095649719,-0.9549352582544088,-1.5446153306402266,-1.7375557883642614,-2.241929388139397,-2.2133480105549097,-2.1759790224023163,-1.713680733460933,-0.8638136847876012,-1.6307772593572736,-1.3035459155216813,-1.003003567457199,-0.7032194859348238,-1.1497316029854119,-0.97586106415838,-0.14412249764427543,-0.6726640141569078,-0.09377186186611652,0.6953781968913972,0.8751750481314957,0.7856180923990905,0.3705014009028673,0.8860525661148131,1.5808291444554925,2.223014106042683,1.9248552252538502,2.227540256921202,2.6240879450924695,3.046238061506301,2.9220982347615063,2.0495036276988685,1.9443901958875358,2.359489883761853,2.8933164407499135,3.6245754994452,4.127022609114647,3.8511303178966045,4.372816508635879,4.251056658104062,3.823572929482907,4.219960470683873,4.590476561337709,5.540656508412212,5.996258126106113,5.327869854867458,5.992665737401694,5.4112320160493255,5.5517548294737935,5.444755321368575,4.80311275087297,5.315541852265596,5.606166558340192,4.710860138759017,3.7916590156964958,4.449804286006838,5.069721171632409,4.800522812642157,3.818676927126944,4.346795764751732,4.75018464634195,4.287679719273001,3.8565355613827705,4.72839110950008,4.641705290414393,5.30300474492833,5.885301387868822,4.891442287713289,5.447973373346031,5.967237195931375,6.115997311659157,7.02489197300747,6.663682447746396,5.701134535949677,5.362519669812173,5.436739794444293,5.692342678550631,6.158030493650585,6.65080350684002,7.026390876155347,6.937019897159189,7.587457361631095,8.323643946554512,8.414993707090616,8.519620798528194,9.02456485107541,9.398261977359653,9.905212815385312,9.549093327019364,9.666724905837327,10.000200198963284,10.350357733201236,10.498857786413282,9.816403494682163,9.241100539453328,10.207046908792108,9.920516543090343,9.659129668027163,8.680718914140016,7.978957778308541,7.848055250942707,8.58965955907479,8.158561078831553,8.65870797727257,8.475765592884272,7.935274097137153,7.398214814718813,6.601480532437563,7.600893127731979,7.423366930801421,7.133819117676467,6.6842110846191645,7.6054266155697405,8.393283783458173,9.005981332156807,9.724074289668351,10.302864979021251,10.702105838339776,11.285825897473842,11.036981341894716,11.867207411676645,12.31281257700175,13.245114338584244,13.733638938516378,12.939603046514094,13.742961771786213,13.455048807431012,14.011996014975011,13.841452457476407,13.55410334514454,14.114955052733421,13.82211621152237,14.757155259605497,15.6102313590236,16.129558329936117,15.949015970341861,16.045778369996697,16.59167137183249,17.056630226317793,16.692010505124927,16.848070623818785,16.17176238493994,15.188047650270164,14.89846214139834,14.02653775550425,14.380222119390965,13.699866747483611,14.489494075533003,14.674844513647258,15.274869115557522,15.676545740105212,16.111038414761424,15.165966447908431,14.2378767314367,14.607609595172107,14.530577216297388,13.982014678418636,14.547924854792655,15.498240270186216,16.030758193228394,15.174946337472647,16.16383748361841,16.856085570994765,15.859933595173061,15.067161180544645,14.444591837469488,14.824807904660702,14.353286082390696,13.381850776728243,14.36575151188299,15.01503021363169,14.891086415853351,15.768356121145189,15.802961099892855,14.981233577709645,15.869318718090653,16.02739582536742,16.368573986925185,15.490918568801135,15.501624560449272,14.600737737491727,14.69100483180955,15.49583546537906,15.787222407292575,15.638376960530877,15.97338681621477,15.017620936501771,14.261192702222615,13.89822156354785,13.007076806854457,13.411491874139756,12.711129655595869,13.085156550165266,13.851384500041604,14.257804555352777,14.589901268016547,15.431761608924717,15.887325171381235,14.939838640391827,14.843172458931804,14.83933841669932,15.580728041939437,15.926091869361699,16.171937379054725,15.973358024843037,16.023363802116364,15.264629434794188,14.912911140359938,14.967583728022873,14.0553895002231,14.687012406997383,15.203999700956047,16.15375451138243,16.757493440061808,15.85372772347182,15.926307834684849,15.180346859619021,15.663629344198853,15.18222405249253,15.45869321608916,16.366596481762826,15.706650155596435,15.109965678770095,14.393070926424116,14.386413890402764,13.392452265601605,14.235536963213235,14.658185648731887,13.910495843272656,14.500940961763263,15.422980855684727,15.232455612160265,15.457980435341597,14.544054886326194,14.696324314456433,14.936281240079552,14.867860108148307,14.324083577375859,13.920439875219017,14.79565838817507,15.660851413849741,15.887244737707078,15.838937452062964,15.791763538960367,16.42965259635821,17.357698052655905,17.160988357383758,17.039857105351985,17.679322882555425,18.05206849053502,17.429145697504282,18.19530159793794,18.38078128080815,17.80691357748583,17.139545620419085,16.806795611046255,16.87374794203788,17.23709202837199,17.561941237654537,17.331229526083916,16.402081216219813,16.744946615304798,17.31687265681103,18.030619632452726,18.180417522788048,17.221626029349864,16.667571739759296,16.076818211004138,16.338703003246337,16.778358795214444,16.990567781962454,17.814662044402212,18.363503956235945,18.23554710764438,18.38334452873096,18.69393970631063,19.332824729382992,18.872249585576355,19.51582103036344,18.673494982067496,17.70598605554551,17.463749702554196,17.484871537890285,16.89631411805749,17.19944953918457,16.66774348495528,17.23937159217894,17.576353053562343,17.752298560924828,18.159031513612717,17.893730517011136,17.36272726720199,17.06097426218912,17.694541258271784,18.46323795709759,17.894719627685845,17.183534166309983,16.63111758697778,16.54237601114437,16.259550985414535,16.181465439498425,16.52293558884412,16.09369382634759,16.85379089601338,17.01760468026623,17.568988960701972,17.730346576776356,17.512371082324535,18.488499498926103,17.66924077877775,17.75977009627968,17.30067295115441,17.701952861621976,18.537566544953734,18.74870631750673,19.48958337493241,19.266161194071174,19.378926592878997,18.616488077677786,17.889463908504695,17.832458571065217,17.78170945867896,17.55323647754267,17.115818242542446,17.971703809220344,17.108489859849215,16.183501430321485,16.907134442124516,17.788868536707014,18.227493084035814,17.26882916688919,17.181574683636427,16.722869293298572,16.49230003822595,16.98776773782447,17.592931114137173,16.79471258306876,16.718369896523654,17.03627681406215,16.374817775096744,16.134514760691673,16.20173588488251,16.27989606652409,16.426145080011338,15.693139691837132,14.802613707259297,14.937858195509762,15.502844776026905,14.907680475153029,15.376234631985426,15.220461381133646,15.830572688486427,15.14519601361826,14.327420825138688,13.759552635718137,13.902509941719472,13.385181251913309,13.71611153613776,13.024871679022908,13.703634421341121,14.300548658706248,14.095593611709774,14.346885209903121,13.558368055615574,12.716462512034923,11.778234565164894,11.923530626110733,12.301319498103112,11.328259833622724,11.666155797429383,11.15119407651946,10.239228800870478,10.087600781582296,9.335243614390492,8.911353584844619,9.730696911923587,9.58289499161765,10.058854474686086,9.4618812748231,10.212467469274998,9.810752565506846,9.101517356932163,10.008886159863323,9.632085107266903,9.865502553526312,9.55892406636849,9.549827128648758,9.313622592482716,10.26757060084492,10.124121786095202,10.984513917006552,11.440400168299675,12.024742957670242,11.334077014122158,11.220921568572521,11.709533532615751,11.96066549886018,11.567493925336748,11.613725198898464,11.000855678226799,10.732497876044363,10.867908500134945,9.934162526857108,10.407789540942758,9.8760986039415,10.240946891251951,9.783791764173657,10.640494334511459,10.635107362642884,11.547616443131119,11.475926288869232,10.496199055109173,10.699568354524672,11.086676958017051,10.772878479678184,11.223912244662642,11.501539453398436,11.227288790047169,11.909087844192982,12.50961619336158,12.18239817675203,12.39406934985891,13.07041635317728,12.341273467987776,12.90164866996929,13.385708916932344,13.071979981381446,13.577077677939087,12.611508527770638,12.398340322077274,12.349665380548686,12.12566879298538,12.906622587703168,13.040372715797275,12.048917858395725,12.573658778797835,12.363280517514795,12.021231251768768,11.714071635622531,12.071983963716775,11.657687660306692,11.207060523796827,10.436058875638992,11.311171278823167,11.576296585611999,10.812754076439887,10.019271215889603,9.257169261574745,9.660338279325515,8.751513427123427,8.894626833498478,8.448229826521128,7.871616049669683,8.553963578306139,7.738248799461871,7.414759807288647,7.9470833176746964,7.081850038841367,6.203794865403324,5.775180075317621,5.801016037818044,5.984963963273913,5.099738197866827,5.020737862680107,4.664849309716374,3.7058142190799117,4.650196495000273,5.066809769719839,5.970003185793757,5.568984021432698,4.707389782648534,4.656371263321489,5.592391605488956,6.2179906074889,6.956586759071797,6.144519905094057,5.453716182615608,6.3142128377221525,5.406052242033184,5.9033294641412795,4.943265600595623,5.443969951476902,4.931333803106099,4.055548674892634,3.2758707562461495,2.5539899743162096,1.8244787761941552,1.0240917103365064,0.6785781322978437,0.9220198360271752,0.6283236206509173,1.3921001139096916,0.9061305313371122,1.2251157220453024,0.8592167119495571,0.9078615256585181,1.1890871953219175,2.039512796793133,1.9748706752434373,0.9811847466044128,0.0390561418607831,0.9584046555683017,0.09917861828580499,0.24978073965758085,-0.653633386362344,-1.447900194209069,-1.9747563027776778,-1.3942317641340196,-1.735938411206007,-0.9945068564265966,-1.0144463842734694,-1.7892711176536977,-2.0457389750517905,-2.4975524516776204,-2.6209494140930474,-2.173754739575088,-2.541893015615642,-3.0878655007109046,-2.8935154085047543,-3.259201428387314,-3.335252785589546,-4.113550547976047,-5.041015897877514,-4.704797080717981,-5.480254140216857,-4.851709279697388,-5.480310941115022,-4.7160843927413225,-4.869617358315736,-5.841922541148961,-4.997406516224146,-5.0321580888703465,-5.600799019448459,-5.057920776773244,-5.9570103120058775,-5.856416440103203,-6.278827921487391,-7.0344056179746985,-6.483934424351901,-6.374547633342445,-7.151669057551771,-6.778183293063194,-6.01206684159115,-6.86744098411873,-7.255556692369282,-7.956931393127888,-7.546383321750909,-8.24675071472302,-8.510842284653336,-9.048799893818796,-8.509339508600533,-9.232858096249402,-9.305250965058804,-8.794589669443667,-8.030218673404306,-7.544265985954553,-7.817070914898068,-7.803408807143569,-8.498726974707097,-9.26893089292571,-8.488788850605488,-9.172889770474285,-9.635144183877856,-8.984766393434256,-9.574851539451629,-9.16884134663269,-8.242140572052449,-7.599609626457095,-7.077432499732822,-6.326650230679661,-6.184055479243398,-5.437482574488968,-5.359614319168031,-6.294795555062592,-6.121601795312017,-6.121013821102679,-6.788761091884226,-7.100920071825385,-6.592933211475611,-6.937239405699074,-6.462524423375726,-7.39980587689206,-7.761948807630688,-7.840954145416617,-8.368926066439599,-8.476476759184152,-8.531266246922314,-8.831543184351176,-8.68820230755955,-8.547320366837084,-9.481360078789294,-10.380102888215333,-10.703043565154076,-9.749333689454943,-9.900825414340943,-10.532377175986767,-10.471243276260793,-9.869330599438399,-9.878303783480078,-10.50017892755568,-10.393479832448065,-10.246945208869874,-9.314888235647231,-9.96036651963368,-9.46297805197537,-8.938469165470451,-9.233634503558278,-8.84900537552312,-8.705006351694465,-8.280342198908329,-8.467762517742813,-7.493564669042826,-7.439692405052483,-7.594883746001869,-7.05136544816196,-6.549696719273925,-6.597207504790276,-5.7673086686991155,-4.922375396359712,-5.353688076138496,-4.863501914776862,-4.57637243391946,-4.600606712512672,-4.2819638745859265,-4.820042239502072,-4.399759958032519,-4.617734671570361,-5.101154645439237,-5.053145702928305,-5.200705426279455,-4.768589832354337,-4.202892082743347,-5.012643536552787,-5.567989670205861,-4.874780310317874,-5.443181913346052,-5.548805576749146,-5.463701809756458,-4.577279866673052,-5.575091142207384,-6.2282826830632985,-6.854393508750945,-7.103672365192324,-6.811959343962371,-5.861278658267111,-6.831299570389092,-7.565876394044608,-7.756146367173642,-6.9912627520971,-6.2598456628620625,-6.4234837158583105,-7.191708883736283,-7.339191483799368,-7.531415949575603,-7.96019216440618,-7.696371258236468,-8.10169012658298,-7.671442783437669,-7.955369550734758,-8.260829926934093,-8.582600927446038,-7.972169152460992,-7.74267968069762,-7.719746790826321,-8.212336773984134,-8.436955575365573,-8.90418559499085,-8.888823401648551,-9.513501349370927,-10.494021219667047,-11.269816812127829,-11.651316210161895,-10.702400512062013,-11.690107683185488,-12.195492334663868,-11.846789283677936,-12.331494466401637,-13.10541723575443,-12.355534012895077,-12.536931679584086,-12.901468916330487,-13.770376099739224,-13.912071105558425,-13.998157704249024,-13.034281988628209,-13.138880491256714,-14.081914640963078,-14.947871687356383,-14.062031070236117,-15.060464914888144,-16.035741000901908,-16.458023191429675,-17.07208312349394,-17.601967472583055,-17.763549404684454,-17.054620993323624,-17.15383101440966,-16.826237379573286,-16.0303152683191,-16.03921329928562,-16.039702143520117,-15.070074879098684,-15.307102117687464,-16.133115781471133,-15.472267193254083,-16.379398787394166,-16.023794773500413,-15.323426966555417,-16.16568757686764,-16.791443344205618,-16.94223807565868,-16.826239406131208,-16.867477418854833,-16.547272528056055,-16.52124594245106,-16.97210542531684,-17.31093100970611,-18.027849732432514,-18.136837078258395,-18.07559090014547,-18.807474826462567,-19.216487929224968,-18.239242606796324,-18.804369176272303,-19.20808862010017,-19.44506327016279,-18.583744352683425,-18.70537302037701,-17.83633751468733,-17.141101128887385,-17.303954287897795,-17.17806695960462,-17.0724317538552,-18.05249103344977,-17.22607344482094,-16.97899849480018,-16.271389179863036,-16.174100406933576,-16.978075922001153,-16.01991205336526,-15.75864142505452,-15.013657245784998,-15.95216675940901,-16.683636642061174,-15.83301654504612,-16.466830803547055,-17.33632648969069,-17.13644824596122,-16.205539845861495,-15.78086509462446,-15.109702548477799,-14.446900157257915,-15.071605120785534,-14.151711649261415,-13.239513247739524,-12.526726284995675,-12.336869315709919,-13.12543819565326,-13.106874578632414,-12.651714550331235,-12.533489959780127,-12.512413605116308,-13.052321247756481,-13.252800164744258,-13.945644005667418,-13.97809993242845,-14.775048678740859,-14.071034559514374,-14.634005355183035,-14.402585506439209,-13.909203844610602,-14.833555397577584,-15.71389620564878,-15.012216827832162,-15.846533413045108,-16.841098479926586,-17.593450730200857,-16.70019820285961,-15.835559693630785,-15.548240741249174,-14.986197158694267,-15.49020697362721,-15.198333864100277,-15.333320283796638,-14.998421874828637,-14.137727645225823,-14.10880476841703,-13.416498599108309,-13.01218973658979,-12.538163574412465,-12.231449651066214,-11.918566730804741,-11.02388328500092,-11.982423212844878,-11.457126301247627,-11.54130048956722,-12.060099716763943,-11.217539642937481,-11.092743950430304,-10.554987212643027,-10.41779250279069,-9.754311373922974,-9.264619308523834,-9.26256373198703,-10.139742116443813,-9.813006117474288,-9.31447882251814,-9.211619911715388,-9.713976657018065,-9.200667201075703,-9.42112092860043,-9.62090619141236,-9.182682973798364,-9.093778071925044,-8.758053218014538,-9.738909075036645,-9.504926013760269,-10.249008003622293,-10.367389612831175,-10.31975442217663,-9.38206378929317,-9.10006049554795,-8.8943856456317,-8.276971701998264,-8.211473570205271,-8.41636354289949,-9.234466888476163,-9.075424023438245,-8.094096245244145,-7.217643941286951,-6.731008369941264,-6.887793843634427,-5.96002379944548,-5.90219797892496,-6.071476964280009,-6.977873696014285,-6.330506504978985,-6.807116406504065,-6.707493107765913,-7.3702726466581225,-6.654166661668569,-6.45138562656939,-7.225274702999741,-7.756262158509344,-8.423771361354738,-8.035922892391682,-7.157967310398817,-7.4711354174651206,-6.879099600948393,-5.907869765534997,-6.423817108850926,-6.0100701614283025,-5.235783311538398,-4.629072600509971,-4.071390981320292,-4.9656924228183925,-4.283834130503237,-3.5565253500826657,-4.297689851373434,-4.692536261398345,-5.628273692913353,-5.309816281311214,-4.454769276548177,-4.699220278300345,-3.8857239256612957,-3.5855615991167724,-3.1328743803314865,-2.189906229265034,-1.393842723686248,-1.321051913779229,-1.6626971559599042,-0.8138314806856215,-1.1793696251697838,-1.294347763992846,-2.154582009650767,-3.04391565406695,-3.0764886629767716,-2.3889534776099026,-3.145141253247857,-3.135995323769748,-2.4376872973516583,-2.92901364620775,-2.0110255433246493,-1.4616134446114302,-0.7425666102208197,0.18863867316395044,1.10103972395882,1.2791740004904568,0.7830957407131791,1.633056768681854,0.6560243084095418,1.1486614258028567,1.6150279282592237,0.8437228603288531,-0.0774861816316843,-0.7708097784779966,-0.8479757523164153,-1.332013594917953,-1.8568448810838163,-1.6551915286108851,-2.0101507771760225,-2.5788645772263408,-1.7041784841567278,-2.260986449662596,-2.780336275231093,-3.1683724145404994,-2.5218195500783622,-2.9979387153871357,-3.663890128955245,-2.7410252899862826,-3.6823524166829884,-2.77933631464839,-2.1421099030412734,-1.3713989742100239,-1.985372310038656,-2.189217021688819,-2.4909981447272003,-2.128727032802999,-1.309343768749386,-1.1146290618926287,-0.9398705782368779,-0.7675946070812643,-0.6848147260025144,-0.8360753655433655,-0.7627991591580212,-0.32912019547075033,-0.2625705120153725,-0.6051307846792042,-0.593854590319097,-0.35881192050874233,-0.636170987971127,-0.6460254625417292,-0.546531428117305,-1.3219014229252934,-0.6625189799815416,0.16425435803830624,-0.5492571727372706,-0.8301468500867486,-0.7831021915189922,-0.3257840988226235,-1.170362033881247,-0.5967000252567232,0.049316009506583214,-0.8503851932473481,-0.382382417563349,-0.8594832951202989,-0.7280362658202648,-0.9879899015650153,-0.22236564429476857,-1.2105019954033196,-1.0215589683502913,-0.7190602086484432,-0.14693820662796497,-0.6162177524529397,-1.061156874988228,-0.5494714258238673,-0.16281303018331528,-0.5247791786678135,-0.37842818023636937,0.003727302420884371,-0.16733705205842853,-0.3998218937776983,0.3623198331333697,1.1377922329120338,1.6721421419642866,1.4898194819688797,0.925520661752671,1.880023263860494,1.5701949670910835,0.8204905400052667,1.229072188027203,1.5347807137295604,0.9945872300304472,1.9332756297662854,1.1490983003750443,2.135280689224601,2.5903169861994684,3.4726307447999716,3.687851079273969,3.704493118915707,2.8373049832880497,3.427678602281958,3.1420974489301443,3.2362326928414404,3.372376210987568,4.122761867474765,3.769243147224188,2.9553703609853983,3.3280612737871706,2.614077752456069,2.0682976352982223,2.683169041760266,2.4408746412955225,1.5555067732930183,2.214208714198321,2.496951471082866,1.5078880744986236,1.3584651951678097,2.0426137540489435,2.5281880046240985,1.8154988139867783,1.5075075840577483,2.182111589703709,2.8548884321935475,2.8273266023024917,1.9268064009957016,1.6585305468179286,2.6221518251113594,2.375473463907838,2.4530815524049103,1.4606324103660882,1.7549656918272376,2.333482837770134,2.345299532637,3.3218854791484773,3.7630941257812083,3.3969064191915095,2.5746652926318347,3.1235200352966785,2.7975793089717627,2.5890679825097322,3.485155069734901,2.6788134849630296,3.672710339538753,4.224767018575221,4.2278881734237075,3.745727062225342,4.456586549058557,4.784737629350275,5.6288436758331954,5.779752752278,5.656249112915248,5.018290265928954,4.982886438257992,4.771752069704235,4.6569580202922225,5.5703534334897995,4.915608236100525,4.7354636918753386,3.7369469455443323,4.61833598325029,4.956491002812982,5.698584579396993,5.623244592454284,5.5342179159633815,5.016362803056836,4.680215924978256,5.546803199220449,5.202529348898679,4.318791867699474,4.462983830366284,5.309822108596563,5.392666692845523,4.59026085305959,4.820347105618566,4.765853323508054,5.0815080045722425,4.731913801282644,5.294962024781853,6.056485124863684,5.434337214566767,4.817643014714122,3.973274212796241,4.404008792247623,3.8239690186455846,3.229227206669748,3.1988014234229922,2.5694784275256097,2.530922708567232,2.0182089917361736,1.1511571980081499,1.6044851928018034,2.1232735635712743,1.7662821938283741,1.0997064439579844,1.1397160571068525,0.6742523955181241,0.5666765868663788,1.3068853188306093,1.879660779144615,2.486210247501731,2.9894168814644217,3.0944957975298166,3.7034785468131304,3.4719390962272882,2.911416240502149,2.294313687365502,2.2908201860263944,1.9797395593486726,2.643002369441092,1.7751197461038828,1.6127853826619685,1.4835232449695468,0.9145547677762806,1.2884244150482118,0.568767053540796,-0.40386972669512033,-0.2815958713181317,-0.6487743430770934,-0.0628084409981966,-0.7966956575401127,-0.015616558026522398,0.2307582381181419,0.08653441444039345,0.3694632053375244,0.4057400147430599,-0.32874784898012877,-0.6931472411379218,-0.4465162418782711,-1.238325853832066,-0.26123444782570004,0.2295595151372254,0.5414488082751632,1.340427927672863,0.5573020251467824,-0.11064794799312949,0.3133015721105039,0.78864790732041,0.8051482266746461,0.006903207860887051,-0.5020420821383595,-0.03431322518736124,0.7102473564445972,0.3895401773042977,1.32957728439942,2.0507269129157066,2.902987288776785,3.3333044666796923,3.8720070756971836,4.257115359418094,4.42775581497699,3.6255484027788043,3.952968397643417,4.835474111605436,4.172997751738876,4.268516708165407,3.409996294416487,2.639844003133476,3.212325043976307,3.260923147201538,3.6171255856752396,4.1411811164580286,3.4740871996618807,2.945285680703819,2.5083371880464256,2.9848712268285453,3.6312257880344987,2.8986526615917683,3.0648534414358437,3.508890023920685,4.00991645315662,3.3566338131204247,2.616014313418418,2.584125737193972,2.6220534197054803,2.5153592373244464,1.7645665216259658,1.0298439734615386,1.97866423567757,1.9064245875924826,1.716220538597554,0.8251440720632672,-0.07586407801136374,-0.23864981206133962,-0.3917196774855256,-1.2348177670501173,-0.9404485085979104,-0.5507232462987304,0.17569555807858706,0.8523596241138875,0.5407430906780064,1.0431191604584455,0.7847121809609234,0.017297339159995317,0.4121653623878956,-0.23976802686229348,0.5068098688498139,-0.27499007945880294,-0.6305939210578799,-0.5704251965507865,-1.013255306519568,-1.4620134867727757,-1.1166142751462758,-2.0787117243744433,-3.0762712485156953,-2.297120814677328,-1.7435534740798175,-1.887842462863773,-2.8685112087987363,-3.0963990786112845,-4.0602610213682055,-3.6969021377153695,-3.7822552314028144,-3.1106146830134094,-2.94666202692315,-3.74289896665141,-4.468040221836418,-3.9485490387305617,-4.120992521289736,-3.424930027220398,-3.157667301595211,-3.5456867571920156,-4.386779482476413,-4.522341994568706,-4.410562198143452,-5.226935257669538,-6.091198364272714,-6.16755529679358,-6.637251416221261,-6.917575291823596,-6.715034673921764,-5.924932561814785,-5.967412738129497,-5.357913997489959,-5.439720277674496,-5.655712384264916,-6.248794389422983,-7.100585208274424,-7.225825543515384,-7.942600891459733,-7.636364027392119,-7.839495930355042,-6.985937740188092,-7.754684994928539,-8.249105888884515,-7.814797047991306,-7.8497024439275265,-8.601207407191396,-8.192368273623288,-7.941068660933524,-7.709859285503626,-7.165688433218747,-6.964341633487493,-7.5124884829856455,-6.779984209220856,-6.763398673851043,-6.156281086150557,-6.34629219211638,-7.1256522997282445,-6.362617923878133,-7.211327998433262,-8.151240956503898,-8.851006089244038,-9.29216543911025,-9.426548639312387,-9.694294313900173,-10.415266742464155,-10.32677557086572,-9.672743508126587,-9.288680646102875,-8.497626174706966,-9.37447400810197,-10.115889691747725,-9.683691378682852,-9.26532407803461,-9.397870576474816,-9.751551306806505,-9.915595922153443,-10.729590056929737,-10.477242914494127,-11.10439020395279,-11.115774153731763,-11.770510848611593,-10.863012534566224,-9.874566515441984,-9.955067842733115,-9.38162513077259,-10.07031506486237,-11.000344835221767,-11.73262035753578,-12.44859019247815,-11.563719900790602,-11.118510433938354,-11.893502611201257,-11.059334281366318,-11.138616715557873,-11.665800346527249,-12.285455408506095,-12.711629697587341,-11.892959726043046,-10.906821106560528,-10.921437309123576,-10.582257914822549,-9.76227382523939,-9.839113818015903,-10.493244561832398,-10.282101558987051,-11.001098740380257,-10.166162664536387,-10.550421869847924,-9.937636158429086,-9.885639327578247,-9.7119371118024,-10.536911790724844,-11.372927562333643,-11.486196429934353,-10.950958527624607,-11.02799258986488,-10.571927255019546,-9.729820555076003,-8.810547215864062,-8.475409052800387,-7.994989180937409,-8.450086663477123,-8.553253282792866,-7.631224242039025,-8.051886391360313,-8.149244840722531,-8.223637646529824,-8.259390103630722,-8.94649668596685,-8.426378404255956,-8.143681924790144,-7.404791022185236,-7.468141695018858,-7.470762046519667,-8.38363417191431,-8.686454457230866,-8.062377713620663,-8.098693846724927,-7.861952611710876,-7.924840806983411,-7.394757098052651,-7.963759536854923,-7.74186004884541,-6.893788370769471,-6.361324097495526,-5.657080098986626,-5.984827965963632,-6.218373260460794,-5.3501962292939425,-4.940262135118246,-4.840674848295748,-4.816412722691894,-5.050877911504358,-5.615131796337664,-5.4795080865733325,-6.174707161728293,-5.901864687912166,-5.448403415735811,-4.45120177231729,-5.0731105245649815,-4.564818448387086,-5.265209851320833,-4.5846395581029356,-3.6249761427752674,-3.081516562961042,-2.9177682558074594,-3.80621000751853,-2.827488662675023,-3.5486135594546795,-2.6813420886173844,-2.1264875940978527,-1.9922533095814288,-2.4785818583332,-2.879376830533147,-2.2283427035436034,-1.388462683185935,-0.8089249674230814,-0.8274044101126492,-0.9827331244014204,-1.133021985180676,-0.4503067471086979,0.08019123785197735,0.9359283777885139,0.29195666313171387,-0.4870539945550263,-1.2308088215067983,-0.2985394415445626,0.6317567098885775,-0.3191520953550935,0.04383506206795573,0.5294496999122202,0.6223340011201799,0.10635696072131395,0.8357024728320539,0.9391210260801017,0.6546756853349507,-0.2669506222009659,0.44391731545329094,1.2624173481017351,1.0275782775133848,0.282714378554374,-0.17826746543869376,0.17294333036988974,0.9564721104688942,1.546082607936114,1.4395630075596273,1.5196723858825862,2.118384838104248,3.0786942057311535,2.6994541599415243,2.9755363017320633,3.7753706593066454,3.27417201269418,3.06186664942652,3.3192500732839108,3.4018816188909113,3.147149891592562,3.6549852401949465,2.7102819960564375,2.11498705111444,1.739658426027745,2.569961266592145,3.0803693076595664,2.9611437544226646,3.3327833102084696,3.3793918304145336,2.8015046063810587,3.6783940135501325,4.397249536123127,4.250635117292404,4.516822570934892,5.3323427168652415,4.483754531480372,4.526051719207317,3.9739058217965066,3.959846107289195,4.743576019536704,4.600943256635219,4.28195586707443,5.031043794937432,5.542048786301166,5.818640940822661,5.305830230470747,5.9134602677077055,6.342022613156587,6.467286052182317,6.045238349586725,5.3646690379828215,5.1993212178349495,5.497305016964674,5.297411011066288,5.449326029513031,4.82622562116012,4.1835729400627315,4.716172574553639,5.2907903413288295,5.2432748270221055,4.728845842182636,3.785416068509221,4.274570602923632,4.030199199449271,4.1473638862371445,4.1399503839202225,4.2645249790512025,3.620423604734242,4.306567245628685,5.271842971909791,6.233861411456019,6.145321066956967,5.542834694962949,6.476497539319098,6.485661489423364,6.003393778577447,6.58888147957623,6.2871585679240525,6.644199791830033,6.547807222232223,5.861950271297246,6.0700038759969175,6.0480851931497455,5.068010432180017,4.886129403952509,5.4170688688755035,5.382586052175611,6.208013200666755,6.150006861425936,6.362938614562154,7.236703112255782,6.503215007483959,6.788583581335843,6.476782949641347,5.569618757814169,6.435880032833666,7.433055228088051,6.981271893251687,7.223757794126868,7.611473394557834,7.469285456463695,8.387438006233424,9.266823139972985,9.058987371623516,8.18334147380665,7.549006720073521,8.266519063618034,7.727753107901663,8.668360173236579,8.905161425005645,8.162462835665792,8.169637101702392,8.4176832488738,8.476108452770859,7.515561300329864,7.638373244553804,7.054070475511253,6.387666944414377,7.221042977180332,6.567998002748936,5.830990644637495,5.037185349501669,5.270762895233929,5.899535040836781,5.528763476293534,5.120575872715563,4.358616885729134,5.239993650931865,5.500827449839562,5.581348263658583,4.815112261567265,4.323016727808863,4.570220900699496,5.243578700348735,4.350434265099466,4.7771222200244665,4.605750095564872,3.8149133156985044,4.032284360844642,3.889823581557721,3.294408019632101,3.5552143561653793,2.635491654276848,2.134100442752242,1.5733567313291132,1.242046887986362,1.524716121610254,1.9257773980498314,0.9572064699605107,1.2686175499111414,2.1218240126036108,3.1162625974975526,2.81756799435243,1.9231670815497637,0.9645061329938471,1.6574576743878424,2.0399834266863763,2.3984230645000935,2.8244893816299736,1.9374459804967046,1.8343841498717666,1.5639018104411662,1.3649602527730167,1.8865104811266065,1.7047623228281736,1.7533015673980117,2.077327216975391,1.270584000274539,1.7210194068029523,2.1092015970498323,2.283847600687295,1.899691377300769,2.0657116468064487,1.7125163795426488,2.0536211794242263,1.606701496988535,2.329312782268971,1.3658481198363006,0.8290346674621105,0.39898379473015666,0.7208698089234531,1.411817530170083,0.9976360662840307,0.9759589019231498,0.15925052016973495,-0.7765290783718228,-0.08550985623151064,-0.4888559365645051,-0.9209053758531809,-1.2165841558016837,-0.7338536796160042,-1.3595775491558015,-1.0583089352585375,-1.0708516114391387,-1.4074719767086208,-2.4054419668391347,-3.3697285978123546,-4.046529220417142,-3.8171788682229817,-4.012558722868562,-3.250561566092074,-3.7273152293637395,-3.0338769503869116,-2.390410060528666,-2.9634325453080237,-2.6707150884903967,-3.204119891859591,-3.307681077159941,-3.6501565957441926,-4.4340796447359025,-3.8764018807560205,-4.348179316613823,-5.008178670424968,-5.445734300184995,-5.777721815742552,-6.373722053132951,-6.744124112185091,-6.063336067833006,-5.974891100078821,-6.754658947233111,-7.487010424025357,-6.632998013403267,-6.119617942720652,-6.939448677003384,-7.693841125816107,-8.022430856246501,-7.796314126811922,-8.787971950601786,-8.483798169065267,-7.927140837535262,-8.381637196987867,-8.924720069393516,-8.568577661644667,-8.715990275610238,-8.0758275706321,-7.810472751036286,-8.507805125322193,-8.620765707921237,-9.543920379597694,-8.853556368034333,-9.364775747992098,-10.009005090687424,-9.630011301022023,-9.520246067084372,-9.754697510041296,-10.434590426739305,-9.874499847646803,-9.03548388229683,-9.162340509705245,-9.759778825100511,-9.620681224856526,-9.490176557097584,-9.162552058231086,-10.15913048107177,-9.714850976131856,-10.22133032977581,-9.426945728249848,-9.743168488144875,-9.21737356344238,-9.206559761427343,-9.087627690285444,-8.958375269547105,-9.14621140435338,-8.561077821999788,-8.893506845925003,-9.147958233952522,-9.12101271841675,-9.20712903747335,-9.57672803197056,-9.435080043040216,-9.995208407752216,-9.885323956143111,-10.135243244003505,-9.705597733147442,-9.56029968522489,-10.35665771458298,-9.470958517398685,-10.423620326444507,-10.609107809141278,-10.699763898737729,-11.410458092112094,-11.335432580206543,-12.073210176546127,-12.460469217970967,-13.293597759213299,-12.6402130224742,-11.745961800217628,-12.631721273064613,-12.09741631988436,-12.87260467512533,-13.043755469843745,-13.74322478286922,-14.572136339265853,-13.626584036741406,-14.554631890263408,-14.589764304459095,-15.549627951811999,-14.806608316022903,-14.015953602734953,-14.303904763888568,-14.246111005544662,-14.15552526107058,-13.387973621021956,-12.706523711327463,-13.414691367652267,-13.700512980110943,-13.062287494074553,-12.372816243674606,-12.78215478407219,-13.484391754493117,-12.995497300755233,-13.011220777407289,-13.02480335533619,-12.931800776161253,-12.955577551852912,-13.761936919298023,-13.005390164908022,-13.321381464600563,-13.825897216796875,-14.255766855087131,-15.044002405833453,-15.07757696788758,-15.146953018847853,-14.70728426007554,-14.305746384896338,-13.667091569397599,-12.9717185087502,-12.784833947196603,-13.68553983187303,-14.310552855022252,-14.288406357169151,-13.897116031032056,-14.03387179877609,-14.951903732027858,-15.65386268356815,-15.594895662739873,-16.513859293423593,-16.293550943024457,-16.712374940980226,-17.51730757765472,-17.912654152605683,-18.701873331330717,-17.73069345857948,-18.698330217506737,-18.329650461208075,-18.12120181787759,-18.741353475488722,-19.73439768794924,-19.7851372663863,-20.593670084141195,-21.591434613335878,-21.51477047847584,-22.372577915899456,-22.45637732371688,-22.660731489304453,-22.705544424708933,-22.36407009186223,-23.18496270524338,-23.40577465854585,-22.471967248711735,-23.305942750535905,-23.324047590605915,-22.998350244015455,-22.92642087722197,-22.95598569093272,-22.866253463551402,-22.872229335829616,-23.597848630975932,-24.560845057014376,-25.15969205228612,-25.70961079141125,-26.053113914094865,-25.120352699421346,-25.311793520115316,-26.20120092201978,-25.371037759352475,-25.119095515925437,-25.030593920964748,-25.243572022300214,-24.51977267442271,-23.63792219525203,-23.047009914182127,-23.923146106302738,-23.97438022820279,-23.553073486313224,-23.39591615088284,-23.417119964491576,-22.581770102027804,-21.600758372806013,-22.006829235702753,-22.23678685259074,-21.49671769561246,-21.587519806344062,-21.551041850820184,-21.964977560564876,-22.412206734064966,-22.50844035996124,-22.91219912841916,-22.142462116666138,-22.280849926173687,-21.631328916177154,-22.378014967776835,-21.753968306817114,-21.7650654502213,-22.186332121957093,-22.797232559882104,-22.331839704420418,-22.260414438787848,-21.462733168620616,-21.659170395694673,-20.986534613650292,-21.70706411730498,-22.36876964988187,-21.561583845410496,-21.051166374702007,-21.224412952549756,-21.913185570389032,-20.968138753436506,-20.668325199279934,-20.07850482314825,-20.90003078384325,-21.11117280088365,-20.25344204902649,-20.56679319124669,-20.034056797157973,-19.860871316865087,-19.41810293821618,-19.88185225101188,-19.730928575154394,-18.733295493759215,-18.163532031700015,-18.561638543382287,-19.160728652961552,-18.972406193148345,-18.628836480434984,-17.949110608082265,-17.047787794843316,-16.243426515720785,-15.842076130211353,-15.333366487640887,-15.648521851748228,-15.073185049463063,-15.4975865050219,-16.26310845790431,-15.971689556725323,-16.698378624860197,-16.597320007625967,-17.39903889549896,-18.23516304185614,-18.373110403306782,-17.616985860280693,-17.81280566798523,-18.176999690476805,-18.91703065717593,-18.710792735684663,-19.55851306533441,-19.034481408074498,-18.865825299639255,-18.36299647530541,-18.76706240326166,-18.11036427365616,-18.466310031246394,-18.54071631655097,-18.279475647956133,-18.579605254810303,-18.754207959398627,-19.16793632088229,-18.2595294569619,-17.82979811448604,-18.7522330339998,-19.02038585022092,-19.559081627987325,-20.227586809545755,-19.338236573617905,-18.969777966383845,-19.817836492322385,-20.77804224798456,-20.767018700018525,-20.881290175020695,-20.232071203179657,-20.894349089823663,-20.82568195881322,-20.580514549743384,-19.656444566324353,-18.88524094503373,-18.605991235934198,-19.01752272527665,-19.28551431838423,-19.357022143900394,-20.141715263482183,-19.999715245328844,-20.044463379774243,-19.550493228714913,-20.216725280042738,-20.59675939939916,-20.86399650759995,-20.55615655053407,-20.054325432050973,-19.443971895147115,-20.070687850937247,-19.64253643155098,-19.523014864884317,-19.141366611234844,-18.512078356929123,-17.519047060981393,-17.681321969255805,-16.955009170342237,-17.907117660623044,-18.650977300014347,-17.84266479406506,-18.77852837368846,-18.33473651530221,-19.202135105151683,-19.590397370047867,-19.933229628950357,-19.69834999507293,-20.316707985009998,-21.174267845693976,-22.10561911482364,-22.55708117596805,-23.339729653671384,-23.395615286193788,-23.981885835062712,-23.964120160788298,-23.451365258079022,-23.914456275757402,-24.192134436685592,-23.234283180441707,-23.540419902652502,-23.089541622437537,-23.457293485756963,-23.50537490239367,-22.736818595789373,-22.69448253372684,-22.845430839806795,-22.70046116737649,-21.7822681250982,-22.64090597536415,-22.39337256969884,-21.860072150360793,-21.75063056219369,-21.787986426614225,-22.274234931916,-22.484868003055453,-23.405959805939347,-24.388666186481714,-24.03140253853053,-23.839408712927252,-23.741639973130077,-22.88307541469112,-22.859393125399947,-22.523921442218125,-22.571879625320435,-23.49402379570529,-23.318452334962785,-23.33578796358779,-23.560986903030425,-23.053548824042082,-22.39959006011486,-23.37484422326088,-23.45485687069595,-22.759133427403867,-22.884649752639234,-23.703925566747785,-24.4229741175659,-24.955586409196258,-25.538498368579894,-25.00614171847701,-24.538532704114914,-24.910584379453212,-25.123535517137498,-25.111413492821157,-24.888566537760198,-25.763974521309137,-26.20029923412949,-26.663901635445654,-27.213216526433825,-27.306957764085382,-26.707935522776097,-25.989830748643726,-26.58265703357756,-25.990960679017007,-26.531717229168862,-26.667074335273355,-26.872101612389088,-26.17768931016326,-26.900179591961205,-26.29789769416675,-26.996742490679026,-27.38125142129138,-26.661002582870424,-26.77001791493967,-27.132607280742377,-26.794299136847258,-26.753817167598754,-26.372148165479302,-25.999322184361517,-25.439484759699553,-25.087381570134312,-24.36067127948627,-24.46599681628868,-24.46391666540876,-24.768998021725565,-24.044716058764607,-24.946338889189065,-24.6815537000075,-24.76909812539816,-24.371234774123877,-24.4740855647251,-24.68609011126682,-25.67405129224062,-25.064834157470614,-25.800954708829522,-26.050064048264176,-25.74485163576901,-26.695275282021612,-27.25875050481409,-26.766695802100003,-26.371103217359632,-25.40831190114841,-26.319912898354232,-26.250231786165386,-25.282825996167958,-25.91075977543369,-25.777941381558776,-25.149414954241365,-25.29061168525368,-25.994879066944122,-25.44955645641312,-25.812352712266147,-25.75066195335239,-26.413030358962715,-26.897796001750976,-26.879253130871803,-27.76308976812288,-28.396880353800952,-28.475155018735677,-29.23601748654619,-28.589563845656812,-28.07812876207754,-27.79942413372919,-27.664953843224794,-26.927067335229367,-27.37909003533423,-26.584116875659674,-26.55169777618721,-27.19225277379155,-26.88370086159557,-26.103545476216823,-26.534597472287714,-26.823565436527133,-27.241705420427024,-26.521487645804882,-27.473646249156445,-27.40039648208767,-26.847666676621884,-26.7758172522299,-26.050932084210217,-26.46522072982043,-26.816806179471314,-26.34619133360684,-25.96543146017939,-26.92144582606852,-26.11004823865369,-26.43382948730141,-27.371751657687128,-27.186020587105304,-27.00919474521652,-26.341898932121694,-25.761821513995528,-26.41539862146601,-26.92581857042387,-26.34084391547367,-26.038349432405084,-25.082219569478184,-25.693721376359463,-26.103414482902735,-26.843336465768516,-26.057722805533558,-25.26438354374841,-25.819857330992818,-26.48694970132783,-27.373807918746024,-27.163967709522694,-26.96553627680987,-26.974001097958535,-27.76373026287183,-28.414058717433363,-28.36751368874684,-27.723307562526315,-27.690716153010726,-27.696214631665498,-27.802388590294868,-27.020752129144967,-27.80198218394071,-28.417152734473348,-28.41171811008826,-28.278714717831463,-28.586638772394508,-28.7248384677805,-27.865666653495282,-27.80745268287137,-28.242848832625896,-29.149318039417267,-28.935396452900022,-29.415560049936175,-29.55342616746202,-29.974979859776795,-29.1353430878371,-28.295325985644013,-28.314349906519055,-28.06378666125238,-27.561575692612678,-27.062909135594964,-26.958401079289615,-26.11134956497699,-25.557489223312587,-25.65142574440688,-25.542998031247407,-24.938894625287503,-24.1220499756746,-23.216164771467447,-23.12414095783606,-22.170482740737498,-21.70148840872571,-22.0807793722488,-22.948708379641175,-22.531863008625805,-22.139398163650185,-22.541070082224905,-23.36687179002911,-23.31164070032537,-22.732438184320927,-23.542167252860963,-24.14240736933425,-24.127809018827975,-23.221370057668537,-23.31813101982698,-23.287758632097393,-23.582230391912162,-23.317619875073433,-24.124183823354542,-23.496669379994273,-23.9145028302446,-23.846479069907218,-23.293937436304986,-24.14575280668214,-23.930314776021987,-24.024047360755503,-23.34263878921047,-23.074190454557538,-23.01371650537476,-23.967856390867382,-23.25171052897349,-23.572386948391795,-23.444269041065127,-22.798643622081727,-22.786613503936678,-23.691919004544616,-23.291545528918505,-24.134352955035865,-24.88278375705704,-24.02934913150966,-23.11623801710084,-22.79472778690979,-21.87424359843135,-22.16098621673882,-22.406019662041217,-22.552975273691118,-22.880099129397422,-23.80705182813108,-24.460135208442807,-24.15854565706104,-23.323305419646204,-24.24093953706324,-23.565873644780368,-22.66140751587227,-22.629211636725813,-22.35691319964826,-22.850442813243717,-22.745177508331835,-23.278639644850045,-24.094667667988688,-23.24136001430452,-22.86663861712441,-22.088312667328864,-22.881858048960567,-23.612522214185447,-23.548616950400174,-24.25656987167895,-23.27198129473254,-23.169807807076722,-22.99487213231623,-22.436200588475913,-21.989535602740943,-21.135399766266346,-20.831578535027802,-20.758079927414656,-20.771575334947556,-21.27582248719409,-21.79884494142607,-22.403407896868885,-23.402934274170548,-24.31594782974571,-24.86504969187081,-24.54026699764654,-24.952421483118087,-25.772146347444504,-26.12076899409294,-26.11219481891021,-26.120616279076785,-25.321279394906014,-26.250092822592705,-26.58151986077428,-27.5266928342171,-26.900629678275436,-26.54488011263311,-27.483310020994395,-26.703210400417447,-25.718472259119153,-25.98235724773258,-25.11289640981704,-25.738876524847,-25.973762361332774,-25.920570480637252,-26.518601585179567,-26.33997349999845,-27.003681662026793,-27.80396775295958,-27.743568373378366,-27.786536568775773,-27.368522169068456,-26.526831024792045,-27.041306258179247,-26.123123303987086,-26.61240619281307,-26.439168855082244,-25.65009067254141,-25.147719143889844,-26.13538412610069,-26.234619717113674,-26.805767732206732,-25.839455029461533,-25.616559287067503,-26.194552945904434,-26.732134723104537,-25.97429495723918,-25.924911961425096,-26.907138699200004,-27.027970859315246,-26.204893693793565,-26.146262172143906,-26.105874869041145,-25.339314009062946,-25.131603728979826,-24.263949723448604,-24.32068185741082,-23.825276906602085,-23.242583797313273,-23.600762557704,-23.40759677765891,-23.13436835166067,-23.568294737953693,-23.40882950089872,-22.627204832155257,-22.749110704753548,-22.04521838342771,-22.999616886489093,-23.144118334632367,-23.293382667470723,-23.97895029047504,-24.794143800158054,-23.833062536083162,-23.984349030535668,-23.72782274475321,-23.945030824746937,-23.95309788826853,-23.847456065006554,-24.156952606514096,-24.76873278990388,-24.498150209430605,-24.504840684123337,-24.79033521329984,-24.909005825407803,-25.796879244968295,-25.835960782598704,-25.42356555070728,-24.869452945888042,-24.73465439816937,-25.457637256011367,-25.52469215169549,-25.732492440845817,-26.06187961436808,-26.815197088755667,-27.69585636164993,-27.697686405852437,-27.004807936493307,-26.045079303439707,-26.43422784563154,-25.89058080734685,-26.747953731566668,-26.066304163541645,-25.375066871289164,-25.002853997517377,-24.3383946781978,-24.716129121370614,-24.412894350942224,-23.93583340011537,-23.335425768978894,-24.197647359222174,-23.512406419031322,-23.789212240837514,-23.900742626283318,-23.77321864850819,-23.725797562859952,-24.36541272746399,-23.57236281549558,-22.88696800544858,-23.223462003283203,-23.960230075754225,-24.59625294106081,-24.65745252976194,-25.044062482658774,-25.89936023345217,-26.70307169901207,-26.453168858774006,-25.874864236451685,-25.747643074020743,-26.378007187042385,-26.08795227203518,-26.90845672506839,-26.808454025536776,-26.35277430387214,-26.499354921281338,-26.909542851615697,-26.951938315760344,-27.91358607262373,-27.992208507843316,-27.665987538639456,-27.94057067669928,-28.25400191731751,-28.591687798965722,-27.918208505026996,-28.69545693928376,-29.461114433594048,-30.33920904248953,-30.128258048556745,-30.656415204051882,-30.732279147487134,-31.688002204988152,-32.606198381166905,-33.406414825003594,-33.627272265963256,-32.858982131350785,-32.95246184244752,-32.25094913551584,-33.142297788057476,-32.27252148091793,-31.427798411343247,-30.49447267735377,-29.7701862026006,-28.82009249785915,-28.372875679749995,-27.899579863529652,-27.46546713123098,-26.799703104887158,-27.092684660106897,-26.74508009571582,-26.948770784772933,-26.253709002863616,-26.553025528322905,-27.53553086752072,-27.54870278108865,-26.734273261856288,-27.36875274218619,-26.384777297265828,-25.693809470627457,-25.896781247574836,-26.38525418518111,-25.564928538165987,-24.816170475445688,-25.468183991499245,-25.921254756394774,-25.582273196429014,-26.15243500098586,-25.88985525863245,-26.258887071162462,-25.668105793185532,-24.91476329602301,-25.012363192625344,-24.57773351902142,-24.306358185131103,-24.8048641346395,-24.934560873545706,-24.341813154984266,-23.748910217545927,-23.463664909359068,-22.6715172464028,-23.449942231178284,-23.770969856064767,-23.732115553226322,-24.090190233662724,-23.20413798512891,-22.39312642486766,-21.94488520687446,-21.64568043826148,-22.473594983574003,-21.63914358895272,-22.084750411566347,-22.57618995849043,-22.836679847911,-22.09954204922542,-21.567340193782,-20.723317520692945,-20.895834478083998,-21.20473504718393,-21.008345080073923,-21.624834946356714,-21.374945856630802,-21.334509178064764,-20.70564584666863,-20.275918976403773,-19.404884656425565,-18.546285779681057,-18.95080624334514,-18.74593715975061,-18.14279677113518,-17.20032394491136,-17.03419389994815,-17.38577385386452,-18.31630610814318,-18.929516738746315,-18.356103310827166,-17.869934684131294,-17.077771720010787,-16.797145523130894,-17.534282878041267,-17.79799711238593,-17.697018375154585,-17.61404725909233,-17.914599652867764,-17.22436316870153,-17.31733813788742,-17.12774886423722,-16.456397268921137,-16.781325903721154,-17.16389913065359,-17.851565799675882,-18.35200374154374,-18.661276404280216,-18.417976807802916,-18.715148358605802,-19.18171240668744,-19.47520299302414,-19.839697148650885,-19.743408223148435,-19.46409832732752,-20.185914910398424,-19.637098257429898,-19.563122297171503,-20.274594210553914,-21.26714525790885,-21.941448772791773,-20.99557856703177,-21.108520769514143,-21.533700660336763,-22.343780155759305,-22.740312262438238,-22.382748264819384,-22.206077279057354,-23.012515152804554,-23.523847253527492,-23.471805131528527,-22.911676755174994,-23.566613934002817,-22.99869665550068,-22.381181368604302,-22.08116693375632,-21.119498970452696,-20.89961212547496,-21.330585351679474,-21.71975117875263,-22.633236672729254,-22.934702212456614,-22.01774280052632,-22.541317423339933,-23.035722718574107,-22.10403078235686,-22.98164612427354,-22.953552866354585,-23.524220340885222,-23.291499864310026,-23.353411484509706,-22.955511537846178,-23.930937612894922,-23.49802392628044,-24.214530513156205,-24.512355436570942,-24.411037016194314,-23.67230151547119,-24.669904815033078,-24.627952442038804,-25.199931175448,-25.422099734656513,-24.93629364622757,-25.634569552727044,-26.390240909531713,-25.985135925468057,-25.056644533760846,-24.338188858237118,-24.407980046700686,-23.508895348757505,-24.140043241903186,-24.12688760459423,-23.496225927956402,-22.957610750570893,-22.873931295238435,-23.029280545189977,-23.006192909553647,-23.627735746093094,-22.723583463579416,-22.51906446646899,-22.118410592433065,-21.978228191379458,-22.609709437470883,-23.292273081839085,-23.85858906665817,-23.513938188087195,-23.775923821143806,-23.007488686125726,-22.956666839774698,-22.055533905047923,-21.650742162019014,-21.993338720407337,-22.16960950754583,-22.797833796590567,-22.979858849663287,-23.189238962717354,-23.68144454434514,-24.391311021521688,-24.010251564905047,-24.61455692863092,-25.079833178780973,-24.58538426598534,-23.717083786148578,-24.24433873454109,-24.715149094350636,-24.457770640030503,-24.369919831398875,-24.15413697157055,-24.697563900612295,-24.227812993340194,-23.94734903005883,-24.827634601853788,-25.10868329834193,-25.638184468261898,-25.56717248354107,-25.500205787830055,-24.648390059825033,-23.66349297296256,-22.909371591173112,-23.15844068629667,-23.93792513012886,-23.757438073400408,-23.369257611222565,-22.60843950835988,-22.02659674966708,-21.0595911196433,-20.992891163099557,-21.693602417595685,-21.40388285042718,-22.063461068551987,-22.962191903498024,-22.874231704045087,-22.83061867998913,-23.792505965568125,-23.285635189618915,-23.18669295590371,-22.350041823461652,-22.39941950980574,-23.126871895976365,-24.00493712723255,-23.676479400601238,-24.42575606238097,-23.88822646671906,-24.544394926168025,-24.169016897678375,-24.25082054687664,-23.918672057799995,-23.523884024471045,-23.157536985818297,-23.57258168142289,-23.18711981596425,-22.747224586084485,-22.81694624107331,-22.92346465634182,-23.07840936118737,-23.966335034929216,-23.109453797806054,-23.75312405033037,-24.052482204977423,-24.001222361344844,-24.028496605809778,-23.108381879981607,-22.601581713650376,-22.431310137268156,-22.781344305723906,-23.202285319566727,-23.60831437865272,-24.220174927730113,-23.78600417310372,-24.092666702345014,-24.31263834796846,-24.68505159392953,-24.404599466361105,-23.62538798013702,-24.49732224782929,-23.90198954800144,-24.5633057304658,-23.575324956793338,-23.27932407427579,-23.69471158646047,-23.914276758674532,-23.45424142293632,-23.605454517528415,-24.408279069233686,-24.80240194965154,-24.373357308097184,-23.513068872503936,-24.105980481486768,-24.43795086396858,-25.18935275496915,-25.645254435017705,-25.909084758721292,-25.841902103740722,-25.91545646917075,-26.106210111174732,-26.505290256347507,-25.714865116868168,-25.017670841421932,-24.50620613526553,-25.050880110822618,-25.493754013441503,-26.230692219920456,-25.812637164723128,-25.8526479229331,-25.30169135099277,-24.958785332739353,-24.30667820200324,-24.183290982153267,-24.04590332787484,-24.45531408628449,-25.01128621539101,-24.276484173722565,-23.752618479542434,-23.654918417334557,-24.09714011894539,-23.209615100175142,-23.992875387892127,-23.919551563914865,-24.880926484707743,-25.31659854389727,-25.16287846164778,-24.522183431778103,-23.571826874744147,-23.729125808458775,-23.752299044746906,-24.097843060735613,-23.281641679815948,-22.600700152106583,-22.181237605866045,-21.322402758523822,-21.781017070636153,-21.166390568949282,-22.122325223870575,-22.445778978522867,-23.097537599503994,-22.999863947276026,-23.64637926686555,-24.20150486379862,-24.42057237541303,-24.754141225479543,-23.890678636729717,-23.485900008585304,-23.37670597061515,-23.85603222064674,-23.538735387846828,-22.9072821396403,-22.646994148846716,-22.47162689967081,-22.711854513268918,-21.860683266073465,-22.36916389502585,-22.446401634719223,-22.29863622924313,-22.287068021018058,-23.261318114586174,-24.07892941357568,-23.64747770410031,-24.306667041033506,-24.854153013788164,-24.33390617975965,-24.9740296616219,-24.65664487099275,-25.044336793012917,-24.312206760048866,-24.962933995760977,-24.653043190948665,-24.803695569746196,-25.056801096070558,-25.69690066529438,-25.70261513441801,-26.59387354645878,-26.251033837441355,-25.575447777286172,-25.91242462163791,-25.731621927116066,-25.51100474363193,-24.871414649300277,-24.46420901454985,-23.778910984285176,-24.304157122969627,-23.329567627515644,-24.172200636938214,-24.186723331920803,-24.574611239135265,-24.77611471666023,-25.3034256962128,-24.383427925873548,-24.667614267673343,-24.65722448239103,-23.78951964713633,-22.89559040684253,-22.41266347374767,-21.584371245931834,-21.688106588087976,-22.282534836325794,-22.22256320156157,-21.61789402505383,-21.521452964749187,-21.45689244940877,-22.21845167595893,-22.740168853197247,-23.734371063299477,-24.013828492257744,-23.46241091331467,-23.34267613478005,-23.883090476039797,-23.999690536875278,-24.290371337439865,-24.313189941924065,-23.461825856473297,-22.86857650708407,-23.196476324927062,-22.402900444343686,-22.357796374708414,-22.211027569603175,-22.797705271281302,-23.59280352247879,-23.220189474057406,-23.035744180437177,-22.489273680374026,-23.14039183454588,-23.85734597593546,-24.115778602659702,-24.425233834888786,-25.333737501874566,-26.132341898977757,-25.946909748017788,-25.230016632936895,-26.06743374140933,-27.00829581078142,-26.297761887777597,-26.16512945992872,-26.989545525051653,-25.994897070340812,-26.170826784335077,-26.684985897503793,-27.64564223214984,-28.32608869066462,-27.99608129588887,-27.669004295952618,-26.747249839361757,-27.0387477632612,-26.782122226897627,-26.51105053257197,-27.357294724788517,-26.510562809649855,-25.534421373158693,-26.50077845202759,-26.641607800964266,-26.684463918209076,-26.23680880665779,-26.96233322331682,-26.031068420037627,-26.790657548699528,-26.498181709088385,-27.480510285589844,-27.791352739557624,-27.088265179190785,-27.20534014934674,-27.735941217280924,-26.76741776568815,-27.18504763999954,-28.016984866932034,-28.45810675341636,-27.91688665142283,-27.605098728556186,-26.654505448415875,-26.269833981525153,-25.724377937149256,-24.91186299547553,-24.986730274744332,-25.010511443484575,-25.582996694371104,-26.531515617389232,-26.2576077375561,-26.652260321658105,-26.125659035053104,-26.52930429391563,-25.94591856142506,-25.23119445843622,-26.04633006406948,-25.342026247177273,-26.04747025668621,-25.1882326961495,-24.451610981021076,-25.158533221576363,-25.197280930820853,-24.3299896446988,-25.180778541602194,-24.789716858882457,-25.781758886296302,-25.04748918954283,-25.842374437954277,-26.76402516104281,-27.268034278415143,-26.27427246561274,-26.50676759518683,-26.560152476187795,-25.89565853215754,-25.993963885121047,-25.63414277136326,-25.469745262060314,-25.546532842796296,-25.36673609353602,-25.309117700438946,-24.31220550229773,-24.462283888366073,-24.95165451383218,-24.93494876753539,-24.6990221994929,-24.174546929541975,-24.469063704367727,-25.28508879430592,-24.9464287632145,-25.162532740738243,-24.31605932349339,-24.752595917787403,-25.134336406365037,-24.86820098431781,-25.830896116793156,-26.716980271972716,-27.009557278826833,-26.841237370390445,-26.829724834300578,-25.957482071593404,-26.68966438015923,-25.71240826556459,-26.165404610801488,-26.064577667042613,-25.762739535421133,-25.583867194131017,-24.688715904019773,-24.990922533441335,-25.936964271590114,-26.80779748549685,-25.882984339259565,-26.57227866537869,-27.219941443763673,-27.993354680016637,-28.26487852167338,-28.549063770100474,-27.927605625707656,-27.94580499548465,-28.344471712596714,-28.95466192672029,-29.744325511623174,-28.81420811219141,-29.525136128999293,-29.38871904509142,-28.78978321934119,-29.09830912016332,-28.170957632828504,-27.899223395623267,-27.7263665352948,-28.216014198958874,-28.772514382842928,-28.603049625642598,-28.0982099394314,-28.102284148335457,-27.98469587508589,-28.458100616466254,-28.070330502465367,-27.774731097742915,-28.72923129517585,-28.744476111140102,-28.624996833503246,-29.043100709095597,-29.483131445012987,-29.440213022287935,-28.84718151623383,-29.15285707078874,-28.889539715833962,-29.64717526966706,-30.109317695721984,-30.204912033397704,-29.638119214214385,-29.445802397094667,-28.463469258975238,-28.298117799684405,-28.89750782866031,-28.157644180580974,-28.375552451238036,-28.1599932606332,-28.53014245815575,-28.956407045479864,-29.708233673591167,-29.20849426742643,-30.11561570269987,-30.763933715876192,-30.75135161029175,-30.034207131247967,-29.515157212037593,-29.51322513120249,-29.279747661668807,-28.639636110980064,-28.02820841036737,-28.600581483915448,-28.625895521603525,-28.756289969198406,-27.76893506804481,-27.971906062215567,-27.251021531410515,-26.312128806021065,-26.99120766017586,-26.295931562315673,-26.79624469205737,-27.680281684268266,-28.119227286893874,-28.672678843140602,-29.51198529265821,-29.902940541971475,-29.66215698234737,-29.847194452770054,-30.51503980346024,-31.250368950888515,-31.021247535478324,-31.61048634815961,-31.168402158655226,-30.811790676787496,-31.0323690418154,-31.427290262654424,-31.29497621767223,-31.912490654736757,-31.36405267426744,-30.825415062252432,-30.4379831016995,-30.867570276837796,-31.829958701040596,-31.23984246654436,-30.408659844193608,-30.328670376446098,-29.486847194842994,-29.259234470315278,-28.55759484646842,-29.068686635233462,-29.68562344275415,-29.66832230705768,-28.83038999699056,-27.979031436145306,-28.414009888190776,-29.12743596173823,-29.205963359214365,-29.711657559033483,-29.861261662095785,-28.91721616545692,-29.610677817836404,-29.110812794882804,-29.481603504158556,-29.983740201219916,-29.179728016722947,-28.874940991867334,-28.21392971696332,-27.859031178057194,-28.439863110426813,-27.664907862897962,-27.116673129145056,-26.719984129536897,-27.251589801628143,-28.0649890396744,-27.18641812959686,-26.81376254511997,-27.659468096215278,-27.0276636518538,-27.75767390942201,-27.51943328976631,-28.305586798116565,-28.19772844063118,-27.756231983657926,-26.97324979584664,-26.197491453029215,-25.931209379341453,-25.970098605845124,-25.549509592354298,-25.615076743531972,-24.84723277995363,-24.922734532039613,-25.4219823773019,-25.100008884444833,-26.091719441115856,-25.20973763242364,-25.3325913422741,-24.874046423006803,-25.846707447897643,-25.750535569153726,-26.043222283478826,-25.7936000963673,-25.476728262379766,-25.356572972610593,-25.878648886922747,-25.360649100504816,-26.309439630713314,-26.455320153851062,-26.612683160230517,-26.645772491581738,-25.79300381941721,-25.111872611567378,-25.377628323156387,-24.467229747679085,-25.368289741687477,-25.965416274499148,-25.874407412018627,-25.66747270617634,-25.937315220944583,-25.247770873829722,-25.66763768112287,-25.070736025460064,-25.09699130197987,-24.43819821672514,-24.89305233908817,-25.53808592259884,-24.77588304085657,-25.068518243730068,-25.248725050594658,-25.893598751164973,-25.415256313048303,-25.39452088670805,-25.81738509144634,-25.930274969432503,-26.5656604222022,-26.120946856681257,-26.405201661400497,-25.55418591806665,-25.12559716682881,-24.92879821965471,-23.9997354648076,-23.981561943888664,-24.20155621180311,-24.461549827363342,-24.213086730334908,-23.2563249389641,-23.705850063823164,-22.99029416590929,-22.911743164993823,-22.393995070829988,-22.01733211474493,-21.127150336280465,-20.514591991901398,-19.782419330906123,-18.823402649722993,-17.86680915672332,-18.34155530994758,-18.592563275247812,-19.431748531758785,-19.87530247773975,-20.026342124678195,-19.497799057979137,-18.874004687648267,-19.61524220649153,-19.556305495556444,-19.939059615135193,-19.42780739022419,-19.000117565970868,-19.125793050508946,-18.858969253953546,-19.47496271133423,-19.269184752367437,-19.48919584415853,-19.333593836519867,-20.095466639846563,-20.440118388272822,-19.54348442517221,-18.978739084675908,-18.126031626481563,-17.14378177234903,-17.391907517332584,-17.882968637626618,-17.6776012070477,-18.07256762869656,-17.328518074005842,-17.99708837782964,-18.945976448245347,-19.36241488624364,-18.801930461078882,-18.281065033283085,-17.957282606512308,-17.787420386448503,-18.467149429488927,-19.231629037298262,-19.728298092260957,-20.72394551988691,-19.729258741252124,-19.017897862475365,-19.373218561057,-18.418724812567234,-18.597866672091186,-19.41059242747724,-18.57370269903913,-19.3328207032755,-19.09295568242669,-18.261811296921223,-18.471877246629447,-17.747112198732793,-17.34825777867809,-17.919510101433843,-18.145561071112752,-18.6570812324062,-19.09709211718291,-19.2814657012932,-18.747050771024078,-17.95569351501763,-18.86451185727492,-18.86905187368393,-18.978786590043455,-19.97368061169982,-19.769503310788423,-19.078001437243074,-18.451369585935026,-18.763313366565853,-19.60261187609285,-19.00462983455509,-18.401693268679082,-18.905380943324417,-19.226101596374065,-18.22644783463329,-17.570852634031326,-18.180508926976472,-17.721508639398962,-17.29425115324557,-17.630484613589942,-17.374742501415312,-16.54002732364461,-16.41987685719505,-17.374948264099658,-18.245683582499623,-17.312556831166148,-16.950773920398206,-17.492269313894212,-18.383578940294683,-17.56738739600405,-17.072412062902004,-16.7770558972843,-17.050927724689245,-16.777638188563287,-16.812380322255194,-17.527262576390058,-16.894458826165646,-16.59417793340981,-16.55022704647854,-16.140884043183178,-16.388038308825344,-16.145965468138456,-16.088090752251446,-15.855146448127925,-15.488260968122631,-15.661816879175603,-15.682959593832493,-16.50260426243767,-15.95249095140025,-15.079203572589904,-16.046411017421633,-15.786496839951724,-16.0189525289461,-15.878541143611073,-15.953700634650886,-16.89116017939523,-16.647703979164362,-17.43605850962922,-17.243353177793324,-16.509115151129663,-16.123651541769505,-17.024619239382446,-16.08958888426423,-16.29059572238475,-15.342675911262631,-15.893405957147479,-16.369413731619716,-16.88327617291361,-16.352340346667916,-16.098236739169806,-16.20482189161703,-16.607530899345875,-16.53605170175433,-15.838294247165322,-16.40713471127674,-16.940855951514095,-16.991107212379575,-17.945858590770513,-17.179797342512757,-17.175186038948596,-16.98362955916673,-17.23514069011435,-16.27678735787049,-16.035633221734315,-15.886934098787606,-15.342775800265372,-15.790078442078084,-15.099209843669087,-14.558548979461193,-13.571209017653018,-13.437548093497753,-13.397487927228212,-14.155544149223715,-13.384136113803834,-13.270281624048948,-13.033105270005763,-13.255930977407843,-12.627164640463889,-12.960020889528096,-12.49261103477329,-12.960060415323824,-13.5544180162251,-13.00057191029191,-12.199994202703238,-11.629379479214549,-11.52218196215108,-12.33473665267229,-13.114714359864593,-12.361110281664878,-11.478097385726869,-12.429201656021178,-13.177491632290184,-12.755852183327079,-13.4266471224837,-13.303961639292538,-12.992896802723408,-12.516640601679683,-12.099266789853573,-11.529134078416973,-11.980647206306458,-12.884114883374423,-12.572198482695967,-12.9060587156564,-12.041074298787862,-11.46872171992436,-11.929549988824874,-11.036148572340608,-11.17343509523198,-11.068580649327487,-11.928848259150982,-12.201069872360677,-12.46556710684672,-12.482775470241904,-12.214290765114129,-11.258642754517496,-12.044880415312946,-11.406857201363891,-11.384957347996533,-10.394575177691877,-9.443552062381059,-10.197351579088718,-10.75417547672987,-10.226715199183673,-9.4925347706303,-9.890498514287174,-9.563967705704272,-10.499430083669722,-10.373618429061025,-10.934908461291343,-10.34027992747724,-10.89259201893583,-10.741780947893858,-10.613266720902175,-11.25408176658675,-11.858873956371099,-12.725205889903009,-13.04499995149672,-12.095098059158772,-11.866072475444525,-12.127672053873539,-11.743474191520363,-10.846300277393311,-10.452739643864334,-9.69528973987326,-9.073160160332918,-8.175867779646069,-7.4633313193917274,-7.244992078281939,-6.26272213133052,-5.952098444569856,-6.775551496073604,-6.706142448820174,-7.270941992755979,-6.82835599174723,-6.608739928342402,-7.072856166865677,-7.7810090887360275,-7.0781978545710444,-6.424365495331585,-7.072985498700291,-6.9654181795194745,-5.990447749383748,-6.536501107737422,-6.7621952490881085,-7.521130236797035,-7.655043517705053,-6.83603310957551,-7.546800610143691,-7.66128807887435,-7.382536445744336,-8.048278636764735,-8.906349933240563,-8.271849873941392,-7.62677683820948,-6.987929251044989,-6.876479132566601,-6.363330231513828,-5.417046962771565,-5.502296129241586,-5.166461687069386,-4.569000873714685,-3.767890232615173,-4.165638062171638,-4.742564043495804,-5.423825053498149,-4.556578002404422,-4.746302653104067,-4.064087837003171,-3.1437593195587397,-2.8353645112365484,-3.7841967940330505,-3.6880572070367634,-3.325421049259603,-3.0195892066694796,-3.6254555550403893,-3.8469554437324405,-3.1909334524534643,-2.6004276294261217,-2.463844571262598,-2.876661472953856,-1.8941954183392227,-2.321255990769714,-2.5905177709646523,-3.5351966000162065,-3.6433232240378857,-3.0337198516353965,-2.473391210194677,-2.7416638638824224,-2.8114078640937805,-3.499476504512131,-3.3422680064104497,-3.177387658506632,-3.6173941399902105,-3.8756067538633943,-3.346431118901819,-3.8078233539126813,-4.785053146071732,-5.468085198197514,-5.855457229074091,-6.797248960006982,-6.979524880647659,-7.135905016679317,-7.55698614846915,-6.561070343479514,-7.134336484130472,-7.8998325872235,-7.914510644972324,-8.026393285486847,-8.822980002500117,-9.373716259840876,-9.021551590412855,-8.224633560981601,-8.81083360966295,-9.160952390637249,-9.367541796527803,-9.550681138411164,-9.780309688299894,-10.228907788638026,-10.388872704934329,-10.126126213464886,-9.171186455525458,-10.087294173892587,-9.329289835412055,-9.292806521058083,-9.369430800899863,-9.573725787457079,-10.311165345832705,-9.64214378874749,-9.035745825152844,-9.08472895482555,-10.024310432374477,-11.010050345212221,-10.265798930078745,-10.373339931946248,-9.682135856710374,-9.840081185568124,-9.441872509662062,-9.20096283312887,-10.083333167247474,-9.083580738399178,-9.586570321582258,-9.461988574825227,-9.899731871671975,-10.399874309077859,-9.527970260940492,-9.700700216460973,-8.73001214908436,-7.998326370026916,-7.307923688087612,-6.579792155884206,-5.642664257436991,-4.707702900283039,-4.677434928249568,-4.6979247140698135,-4.429378752596676,-5.387813670560718,-5.111010406166315,-5.44899133220315,-6.081211521755904,-5.827459891792387,-6.440441126003861,-7.175795373506844,-7.68388541880995,-7.460591916926205,-6.884872529190034,-6.3865319127216935,-7.044090097304434,-6.689499577507377,-6.227527362760156,-6.710694179404527,-7.16064433241263,-6.289135551545769,-6.437877904623747,-7.1385108241811395,-7.947452386375517,-7.155629996210337,-8.017703857272863,-7.8122589606791735,-8.071903034113348,-7.500454286113381,-7.991660437081009,-8.84151844587177,-8.19634157512337,-8.65330538712442,-9.032354951370507,-9.000175652559847,-9.418480485212058,-9.310384643264115,-10.114772269967943,-11.004004922695458,-10.307465828489512,-9.796949743758887,-9.297270817216486,-10.295662974007428,-11.160285294987261,-10.691158592235297,-10.052890583872795,-9.820113191846758,-9.651068081147969,-10.603050622157753,-11.402734126430005,-10.881700310856104,-11.68679667590186,-10.740434208419174,-10.214052934199572,-9.551152138505131,-9.236827099695802,-9.793892640154809,-10.021639788523316,-10.511653029825538,-10.704663857351989,-10.86565328668803,-10.541223862674087,-10.57747779879719,-10.42202938022092,-10.356170737184584,-9.891469634603709,-9.12432058621198,-8.511301319114864,-9.200542786624283,-9.083038731943816,-9.493678582366556,-10.195642116479576,-10.157735808286816,-9.937901394441724,-9.887390157673508,-10.19659510999918,-11.194857655093074,-10.461911587044597,-10.622157867066562,-11.411909053567797,-11.257649384438992,-11.097567673306912,-11.583736556582153,-11.827504636719823,-10.940959153696895,-11.615866742096841,-12.17678719945252,-11.897011232562363,-12.23316287342459,-13.061499325092882,-14.008517403155565,-13.831083443947136,-13.435381559189409,-12.859996265731752,-12.039388065226376,-12.230065997224301,-12.25600569974631,-11.36585649382323,-11.744966638740152,-10.951287604868412,-10.162046077195555,-11.039828351233155,-10.764711992349476,-11.012559309601784,-10.933140671346337,-10.988686291966587,-10.869534019380808,-10.429488718509674,-9.835083812940866,-10.284868290647864,-9.87843907577917,-9.97571323486045,-10.893193872645497,-11.285088026430458,-11.506982400547713,-11.875860299915075,-11.736911096610129,-11.552174397744238,-10.742599861230701,-10.527669867500663,-9.859538714867085,-8.93634482100606,-9.518957126419991,-9.229543436784297,-8.646595058497041,-9.027707560919225,-8.73929573316127,-8.059699171222746,-8.582375979982316,-8.219385389238596,-7.637762313243002,-7.857084386982024,-7.552910405676812,-6.700420536100864,-6.5525942095555365,-7.044410043861717,-6.783487957436591,-7.416576139628887,-7.902507283259183,-8.083732176106423,-8.737439878750592,-8.198124160524458,-8.526123750954866,-8.712953185662627,-9.096327384002507,-8.1231225207448,-8.257518504280597,-9.189272636082023,-8.552795058116317,-9.281450311187655,-8.724439206067473,-8.0075016268529,-7.708487584255636,-7.91688333498314,-8.291786409914494,-8.882176365703344,-9.814079657196999,-10.083556858822703,-10.61911122314632,-11.373337942175567,-12.04592935135588,-12.218871507793665,-12.974745420739055,-13.959469307214022,-13.767973055597395,-13.7739063994959,-14.13588965171948,-14.068518080282956,-14.058386991731822,-13.884101427160203,-14.041991499718279,-13.634774132166058,-13.323297312948853,-12.371159119531512,-12.349251530133188,-12.149208683986217,-11.864665850996971,-12.729554301593453,-12.294682769104838,-11.684912467841059,-10.824852440040559,-11.396399897988886,-11.121416027657688,-11.637028475292027,-11.882300945930183,-10.948072194121778,-10.992259554564953,-10.859660094138235,-10.574986052699387,-11.113786227535456,-10.245573814027011,-9.952452407684177,-10.377877539023757,-10.792366271372885,-11.389490652363747,-11.72731513530016,-10.757753355894238,-10.983587559778243,-11.721439828630537,-11.820511122699827,-11.227085918188095,-10.886426978744566,-11.842934277374297,-11.55353602860123,-11.376664096489549,-10.391110988799483,-11.104621470440179,-11.001892731990665,-11.756452766247094,-10.870548082981259,-11.10209481138736,-10.331439409404993,-10.77373522054404,-11.292271558661014,-12.090343383606523,-12.929715215228498,-12.690467345993966,-12.733296807855368,-13.410463647451252,-12.749874014407396,-11.968032877892256,-12.30831849668175,-12.537746827118099,-11.624730939045548,-12.335589347407222,-11.864736839663237,-11.95740983588621,-12.697418521158397,-11.815702153369784,-12.00714996829629,-12.8582370323129,-13.356716117355973,-12.743680523242801,-13.614675065036863,-14.46321150334552,-13.964614412281662,-14.497978070285171,-14.993872978258878,-14.00309026427567,-13.81069164397195,-13.067847231402993,-12.426479767542332,-12.587112461216748,-13.361173208337277,-13.956453748047352,-14.87817138666287,-13.976805485785007,-13.74153375113383,-14.441104567144066,-15.320522302761674,-16.144748556427658,-16.072843494359404,-17.01287704706192,-16.195404931437224,-15.423134123906493,-15.596374474931508,-15.357372816186398,-15.947838182095438,-15.468701269943267,-15.617915721144527,-16.238764422014356,-16.237774482928216,-16.04586081393063,-16.30831016926095,-15.32967046648264,-14.426189751829952,-14.490129581652582,-13.665150347631425,-14.550186250824481,-14.717955281026661,-14.683357641566545,-15.225986392702907,-14.632596543990076,-15.433608791790903,-15.139653130900115,-15.15583526249975,-15.189599560108036,-15.102766146883368,-14.786264013499022,-14.536830784287304,-14.388660902157426,-15.102565615437925,-15.616739505436271,-16.261186274699867,-15.871506310533732,-16.21111814631149,-17.135550496168435,-17.04315921617672,-17.43653455050662,-17.455954818986356,-17.334232236724347,-17.751246985513717,-17.558786621317267,-16.840699477121234,-16.323412916157395,-16.647899582982063,-16.400735104922205,-15.840493054594845,-16.284232725854963,-16.814273400697857,-16.55748755345121,-16.068106412887573,-16.87005589529872,-16.66957476688549,-17.620669671799988,-18.601665657944977,-18.94733128976077,-18.86081493832171,-18.65098518738523,-17.97681724000722,-18.203375312499702,-18.363645817153156,-17.519571856129915,-16.842948872596025,-17.564396421425045,-17.853175499476492,-17.82609378080815,-16.86226228903979,-16.417181020602584,-17.124389606527984,-17.301931872963905,-17.82864332012832,-17.15278284624219,-17.021274658851326,-17.87202782742679,-18.13421470951289,-18.91524068173021,-18.99843072006479,-19.85583922546357,-19.414261056575924,-19.56494878185913,-18.67827823990956,-18.79547309828922,-18.858096551150084,-18.466015487909317,-17.74352785013616,-17.115060202777386,-17.036679460201412,-16.287190129980445,-17.201413033995777,-16.52480138838291,-17.177937756758183,-17.999801851343364,-17.19425109727308,-17.493310602381825,-16.98962409514934,-16.647698855027556,-17.204859657213092,-16.3575604329817,-15.836646514944732,-14.944059825502336,-14.634984043426812,-15.158173269126564,-15.405937817879021,-14.596803862601519,-15.237221661489457,-15.490966096054763,-15.173054633662105,-16.050575259141624,-15.231933157891035,-15.271489786915481,-14.350248150527477,-14.27170481858775,-13.875974476337433,-13.027117047458887,-12.877183175180107,-13.449501771014184,-13.76967623271048,-13.219829718582332,-12.599458620417863,-13.189531846437603,-12.421034624800086,-13.27357515040785,-12.908069146797061,-12.089182739611715,-13.011935113929212,-12.683441940695047,-11.787095382809639,-11.670524595305324,-11.49241149192676,-12.196888590697199,-12.520158263854682,-12.117888181004673,-11.989709878806025,-12.71128505980596,-12.765797588974237,-12.619368250947446,-13.591308605857193,-14.102374229580164,-14.86872207466513,-15.854587429668754,-15.83773822709918,-16.589505550451577,-16.105854130350053,-15.584028462413698,-15.04118572594598,-15.864249748177826,-16.221400785259902,-15.800504483282566,-15.397882032673806,-15.003281911835074,-15.291038011200726,-15.976265751756728,-15.678966973442584,-15.944395457860082,-15.811491405125707,-16.604394267313182,-17.356515299063176,-17.21737007331103,-17.03732456592843,-16.29733631387353,-15.65259315399453,-14.908991483505815,-15.240191909018904,-14.784797124098986,-14.487913508433849,-14.529285654891282,-13.690331913996488,-13.754821402952075,-13.8390063168481,-13.444135659374297,-13.334166957996786,-14.1698973425664,-14.885070943273604,-14.761198982596397,-15.18810994643718,-15.165578431915492,-15.206025251187384,-14.786688870750368,-14.44985127961263,-14.602537215687335,-14.501017923466861,-14.088451521005481,-13.409538875333965,-12.516073333099484,-11.945514290127903,-11.247303711716086,-10.40251360880211,-10.11667238874361,-9.120056913234293,-8.288483529351652,-8.584157748613507,-9.402608400210738,-9.232513128779829,-8.3709024656564,-7.701286582741886,-7.1645332127809525,-7.867162883747369,-7.585925771389157,-8.216868909541517,-7.95746077504009,-7.655738804023713,-8.488196330145001,-9.460045743733644,-9.9286482129246,-9.270263128913939,-9.209552235901356,-8.717834385111928,-9.089972589164972,-10.000265957787633,-9.873450099490583,-10.699095403309911,-9.755477948579937,-8.838303699623793,-8.906108043156564,-9.158940047957003,-8.5535519127734,-7.786212493665516,-8.213676759507507,-8.394650660920888,-8.745003018528223,-9.252451246138662,-9.972845930606127,-10.68376181833446,-11.513812481891364,-12.412288135383278,-12.193644687533379,-11.985106257721782,-12.237629203125834,-11.517948479391634,-11.527487711515278,-10.775054782163352,-11.33297049626708,-11.25178192788735,-11.187981666531414,-11.421007747761905,-11.249940100125968,-11.069410666823387,-10.740269865840673,-10.11639337753877,-10.180740116164088,-9.443995759356767,-10.32474592840299,-10.64192694844678,-10.106024622917175,-10.872086831368506,-10.233092613518238,-10.467180230654776,-10.95951624494046,-10.800637947395444,-11.386099523399025,-11.294893170706928,-12.016749249305576,-12.018778499215841,-11.073745298665017,-11.324824558570981,-11.695086539257318,-11.726761200465262,-11.247136902064085,-11.901001331396401,-11.640460348222405,-11.054755167569965,-11.663573237601668,-10.724161149468273,-11.496948241256177,-11.313224137295038,-11.371926536317915,-12.356820696499199,-13.023672265931964,-12.886740678921342,-12.74496220657602,-13.082679875195026,-12.815621681511402,-12.021333274431527,-12.308028324972838,-12.869315566960722,-13.433143768459558,-12.666459791827947,-13.011457483749837,-13.6004144763574,-13.308528418652713,-12.713246558327228,-12.302898020483553,-11.851464250124991,-11.924315248150378,-12.863170406315476,-13.133337841834873,-12.808561095967889,-12.191315867006779,-11.787805253174156,-10.916197709273547,-10.685359141323715,-9.724716059397906,-10.406195417512208,-10.034162234980613,-10.887713353149593,-10.240386974066496,-10.901222875341773,-10.301633492577821,-11.261010493617505,-11.747339372057468,-11.697397732175887,-10.842729158699512,-10.475306478794664,-11.291137730237097,-11.28539220476523,-12.241202708799392,-12.657145341392606,-12.710400664247572,-12.68606730690226,-13.033542240038514,-13.583241367246956,-13.198060005437583,-12.46461120294407,-12.231044600252062,-11.495605987496674,-12.141019530594349,-11.906202086247504,-12.857853188645095,-13.41713108215481,-13.37937233177945,-13.641637733206153,-13.342313748784363,-14.138916848693043,-14.21139363013208,-13.438707243651152,-14.41588226146996,-14.01781724812463,-13.98042384069413,-13.873015716206282,-13.006636555772275,-13.884118885267526,-13.80970763321966,-13.543120361398906,-13.946886841673404,-14.713618164882064,-14.472916865721345,-13.960871793329716,-13.652488419320434,-13.860076527576894,-13.948208706453443,-14.548612979240716,-14.670643347781152,-13.784673912916332,-13.136873050127178,-13.563723193481565,-12.88818664290011,-12.404001011513174,-12.02054855786264,-11.032485185656697,-11.348713060375303,-12.25984401581809,-13.214529614895582,-12.488015851005912,-13.186770554631948,-12.626511900685728,-12.079372208565474,-11.465039039496332,-11.976001041475683,-12.026064027100801,-12.392331177834421,-12.930345028173178,-12.011408143211156,-11.721570274792612,-12.709849113132805,-12.488464247900993,-12.018966504838318,-12.315099989064038,-12.959208306856453,-13.92150201741606,-14.703478632029146,-14.923764783889055,-14.377439975272864,-14.36856022849679,-15.134802357293665,-14.996100515127182,-15.049967523664236,-15.54084568284452,-16.17134340433404,-16.8756694663316,-17.58633727300912,-17.67818208457902,-16.711193608585745,-17.525647753849626,-17.783288463484496,-18.063670037314296,-17.17381848860532,-16.511841896921396,-15.966130382847041,-15.533412729389966,-16.245335238520056,-15.509352007415146,-15.012474489863962,-14.528922895900905,-14.601413433905691,-14.155790893826634,-14.230190001893789,-14.041448247153312,-14.685665328521281,-13.772525806445628,-12.80196627927944,-12.590356853790581,-13.263411136344075,-12.546978678554296,-12.804059125017375,-12.545096589718014,-13.298846807796508,-12.406378817278892,-12.252680729608983,-12.125418143346906,-12.126867817249149,-11.7306571258232,-11.135455815121531,-10.817339980974793,-10.781211861409247,-11.76221044268459,-12.18723160913214,-12.354115619789809,-13.11694224132225,-12.432376006618142,-12.221771975979209,-11.365241534542292,-11.069327654317021,-11.764856881462038,-11.134391532745212,-11.618313215207309,-10.783084163907915,-10.727195725776255,-11.173208123072982,-10.451826822943985,-10.294128603301942,-10.530984856188297,-10.642498711124063,-10.096489700488746,-10.204401564318687,-9.452708099968731,-9.386197903193533,-10.11802996462211,-9.72943511325866,-9.036543691996485,-9.70610814774409,-10.46300438651815,-9.571059722453356,-10.286798481363803,-9.663496150169522,-9.548377207946032,-10.198276573326439,-10.501017127651721,-11.436312799807638,-11.575244613457471,-11.383650457952172,-11.561448707710952,-12.03470135293901,-11.154444416053593,-10.63309552706778,-11.079699642490596,-11.879804136231542,-11.92743096780032,-11.719399711117148,-11.940679729450494,-12.13130264217034,-11.688132278155535,-11.937477897386998,-11.9632373531349,-11.264125934336334,-12.008745833300054,-12.47746695112437,-13.287685878574848,-14.04655401641503,-13.413620886858553,-13.3850431535393,-12.474325082730502,-12.412993410602212,-11.469486227724701,-10.487398784141988,-9.983501952141523,-9.588562783785164,-10.135869270190597,-9.379561636596918,-9.237423327751458,-9.258026874624193,-9.521856419276446,-10.234499691519886,-10.723625586368144,-10.311548050493002,-9.741724756546319,-9.456390012521297,-9.355533834546804,-9.11641400679946,-8.4094234444201,-8.965263253543526,-8.782318668439984,-7.963950279168785,-8.038223051931709,-7.9722899766638875,-7.793966856319457,-7.3261666018515825,-8.247373949736357,-7.775396949611604,-8.76176921511069,-9.022871878929436,-8.976516541093588,-8.771875329781324,-9.204653176944703,-8.59393781144172,-9.330544770695269,-9.202136239036918,-9.066009376663715,-8.416569819673896,-7.796482478734106,-7.271172869950533,-6.6188214109279215,-7.283974698744714,-6.493497294839472,-5.61324845161289,-5.804050943814218,-5.7790073803626,-5.8669254765845835,-5.881154903676361,-5.31964945839718,-6.22596726147458,-6.6378151178359985,-5.6936753508634865,-5.948488384950906,-5.838109455537051,-6.117858201730996,-6.509431423153728,-6.516409003641456,-6.114440937992185,-5.165778999216855,-4.278720250818878,-4.150742046535015,-4.886450660880655,-4.373808942269534,-4.869554235599935,-5.253452621400356,-5.933396736159921,-6.433389272540808,-6.949175069574267,-7.905962114688009,-7.9282058123499155,-7.763934331014752,-8.084344688802958,-8.748882308602333,-9.023605334106833,-8.174751874059439,-8.200390459503978,-8.195159433409572,-7.741776576731354,-7.8047690889798105,-7.366744053550065,-6.504093610681593,-5.798982168082148,-4.920253255870193,-4.99898042017594,-5.946695975027978,-6.078211271204054,-5.749068900477141,-6.509813886135817,-5.619850590825081,-6.297902551013976,-5.347379283513874,-4.552873011212796,-4.57030694372952,-4.37801370723173,-4.980864209588617,-4.077598826028407,-4.079807850066572,-3.7996495771221817,-3.149455170147121,-3.710081437602639,-4.6535297660157084,-4.561237829737365,-4.586739701218903,-4.785800288431346,-4.094585898332298,-4.3581188060343266,-4.377274049445987,-4.084218638483435,-4.731948382221162,-5.265863509848714,-4.455874110106379,-3.7366112670861185,-3.117045165039599,-2.1216158871538937,-1.7658909391611814,-0.9309366578236222,-0.1797477430664003,0.6070304582826793,0.6924413223750889,0.4190482161939144,1.0416237520985305,0.5985207441262901,1.3180931084789336,1.0836358745582402,1.0200001583434641,0.13526012562215328,1.0656386790797114,0.17093950929120183,-0.4712237664498389,-1.3027679030783474,-0.49675394780933857,-1.3303695642389357,-0.8324361410923302,-0.6106313373893499,-1.3280285275541246,-0.4264159444719553,-1.0376151404343545,-0.6381902075372636,0.08753854921087623,0.21651734644547105,-0.2681063087657094,-1.1867468398995697,-1.057039661332965,-1.3629569835029542,-2.218970686197281,-2.620067779440433,-3.214861769694835,-2.3299009641632438,-2.394585210364312,-3.033272602595389,-2.559326358605176,-1.6881534489803016,-2.6778424065560102,-3.1949216262437403,-2.355437054298818,-1.775722032878548,-1.8464996232651174,-2.163619004189968,-1.6176500264555216,-2.4131358163431287,-2.162728255148977,-1.7778729666024446,-1.0897299475036561,-0.8984964895062149,-1.2338479775935411,-1.1834540800191462,-1.7768168020993471,-1.044594053644687,-1.6785788256675005,-2.011792143806815,-2.509686274919659,-1.6299887797795236,-0.949407753534615,-0.1122236866503954,-0.2435449822805822,0.28144460916519165,0.6946384469047189,0.970351324416697,0.5660067806020379,0.36055427929386497,1.1987153440713882,0.6329073458909988,1.3207113612443209,1.3298218850977719,1.7136029517278075,2.0338795906864107,1.8853071155026555,2.4204355627298355,2.495191667228937,2.4952974910847843,2.046992185525596,2.517505304887891,2.803605107590556,2.279812268912792,2.0244844765402377,2.5238296817988157,2.548227543476969,3.4599894182756543,2.544701867736876,3.164184295106679,2.33222273318097,3.2947682556696236,3.5330193266272545,2.6295470162294805,3.056626451667398,3.6023703129030764,2.860529636964202,2.2655783821828663,1.4810005747713149,1.18845049245283,0.28065313678234816,0.8712584376335144,1.347541763447225,1.5970306769013405,2.1636539003811777,2.731700720731169,2.4420340675860643,2.7900279266759753,2.15730394795537,2.914393888786435,3.03197607351467,2.7856885930523276,1.8546555391512811,2.079120534937829,2.566016781143844,2.754198530688882,2.584953342564404,1.6983553250320256,2.591420265380293,1.8545663640834391,1.8094586282968521,1.2127351039089262,1.4341596378944814,1.2763425004668534,1.710256977006793,2.049693529959768,2.3672799388878047,2.6654740567319095,3.447482633870095,2.515792685560882,2.017587535083294,2.086345064919442,2.1704581431113183,2.2315467577427626,1.2760024736635387,0.8074572030454874,1.1178287607617676,1.6754282885231078,0.9569381894543767,1.1032098685391247,0.8145451489835978,0.22752460837364197,1.0294756842777133,2.0278834849596024,1.3676286665722728,1.9231804395094514,1.694253632798791,1.5647570067085326,2.1265714410692453,1.696320093702525,1.0820637457072735,0.8437049337662756,0.8500457024201751,1.1395621947012842,1.1746192476712167,0.34693515859544277,0.5474376622587442,0.12910981848835945,0.7871927563101053,1.18184175202623,0.2996326838620007,1.0080080069601536,1.8596564293839037,2.6762708984315395,3.3758391365408897,3.585984089411795,4.296183309983462,5.284050434362143,5.2421979499049485,4.266652763821185,4.381513561122119,3.962694110814482,3.4741688282229006,2.9657503459602594,2.5993938823230565,3.2869695466943085,3.6523589747957885,4.1058196453377604,3.5785638159140944,4.090468829963356,5.0324051128700376,4.821974235586822,4.712342511862516,4.730695657897741,4.952694179024547,4.997424642555416,5.428887170273811,6.316153545398265,6.412612139247358,6.143150211311877,6.147721881046891,6.1217358615249395,5.755904350429773,6.6108604785986245,7.148395264521241,6.7960952441208065,7.101221777033061,6.4221701780334115,6.035935765132308,5.893683216068894,4.9447705508209765,4.356636000331491,4.217954388819635,3.9707700605504215,4.897993314545602,5.4443849618546665,5.764464805368334,5.485952182672918,4.6652648015879095,4.384877027478069,4.60661897668615,5.182775618508458,5.216381374746561,5.058748168870807,5.937472439836711,6.766039354261011,7.346642185002565,7.370696646627039,6.40768373850733,7.166480952408165,8.124357670545578,7.625581610016525,7.560990915633738,7.206241205800325,7.940839054528624,7.045515093952417,7.656038103159517,7.2368976008147,6.7340650437399745,5.8451011115685105,5.267417739145458,4.891887890640646,5.885695669334382,5.800495477858931,6.395348398946226,5.529755659867078,4.896447848994285,5.738096991553903,5.242619639728218,5.725256678182632,6.700919186230749,7.6059971558861434,6.906413260381669,6.016812975052744,6.371183345094323,6.919869055505842,7.560463024768978,7.412993003614247,6.969023233279586,7.567473809700459,6.822120468132198,5.835369566921145,6.253440543543547,5.916657913010567,5.996552932541817,5.906072642188519,5.145241951569915,6.008552996441722,5.132356109563261,5.217626896221191,5.353544735349715,6.079216989688575,5.313802847638726,5.538617065642029,6.100774247664958,6.25078179128468,6.426422724034637,6.816837947815657,6.553228879813105,7.172304298263043,7.57185884937644,6.747905135154724,7.481883213855326,7.640320679638535,8.593799526803195,8.952593577094376,8.460987215861678,8.501030932180583,8.205496038775891,9.07937151612714,10.022099025547504,10.547850224655122,9.954621716402471,9.850518635008484,9.075621867086738,9.512162940111011,10.161334765609354,9.518974537495524,9.352449704427272,9.165499372407794,8.604199679102749,8.1652200371027,8.328475788701326,8.351374232210219,7.571364767383784,7.546399543993175,8.078644330147654,7.84414497949183,8.715447454713285,8.599869130644947,9.414818274788558,9.017920447513461,9.55676143663004,9.56697261845693,9.557719870470464,9.23582201031968,9.785002710763365,9.6929055955261,10.60834075184539,11.00489805592224,10.81088724033907,11.334490798879415,11.575522543862462,12.019133223220706,12.793904732447118,12.132243158761412,11.401868161279708,10.59604242676869,11.53599132457748,11.288279605098069,11.365889077540487,12.048612893559039,11.2913849321194,10.866676062811166,11.582239291165024,11.981918470468372,12.348609042353928,11.815952191129327,12.29332418460399,11.937630550935864,11.457009755074978,10.823949567507952,11.16245155595243,10.972092308104038,10.333568294998258,10.7119375821203,10.488187396433204,10.082060026936233,9.135418583638966,9.668762728571892,10.517311051953584,9.598158604465425,9.71415952546522,10.334672728553414,11.010009526275098,10.025234775152057,9.56223669508472,8.825010013766587,7.937994276173413,7.792114368639886,8.230244248639792,8.491752343717963,9.344161056447774,9.817607265431434,9.105505960527807,8.928715895861387,8.746706575155258,9.26962078223005,9.884948787745088,9.174497839994729,9.227790689561516,9.82474828325212,9.258854300249368,8.526452544145286,9.507710081525147,8.542868060059845,8.912244342267513,8.888649309054017,8.32637175405398,8.861287284176797,8.203245410695672,8.673188894521445,8.264278546441346,7.304591893218458,6.830284314230084,7.648624299559742,8.398438336327672,8.153152441140264,7.599456123542041,7.212458629626781,7.553781145252287,8.453635743819177,8.777702413033694,8.884933068417013,9.13518610643223,8.300849562045187,9.242369934916496,9.458639601245522,9.492824344430119,8.608907030895352,8.481135253794491,7.95879245782271,8.228742042556405,8.133289894089103,8.29533747304231,8.761119050905108,8.347131557762623,8.33559797424823,8.878899125847965,9.48676466010511,9.631532324943691,9.696821047458798,10.566636877134442,10.454042805358768,9.983807004522532,10.116266689728945,9.520514511037618,9.115984495729208,9.324824323877692,10.047104325145483,10.919140829704702,11.077916983980685,11.302527537569404,10.922704817727208,11.242212750483304,12.116963856387883,12.095826533157378,12.635192646179348,12.189105344936252,11.469297599513084,10.565632557496428,10.59215952642262,10.585640031844378,11.088646644726396,11.899782477878034,11.816963553894311,11.891145553905517,11.472068911418319,12.40007796837017,12.33960945205763,11.81795191206038,12.547932780813426,13.34509753016755,13.818973216693848,14.023894080426544,13.81247778236866,14.577866156585515,15.112466983031482,14.899312850553542,15.094967185519636,14.592723948415369,14.369812125340104,14.573394048493356,14.279296732041985,13.41563323000446,12.823752474505454,12.096888898871839,12.02841732557863,11.35289336182177,12.240377336740494,12.305157622788101,12.274767520837486,11.834038777742535,12.78826568974182,12.997252418193966,12.122307080309838,12.98372100526467,12.285671132616699,13.006819964386523,12.229395348578691,11.867021281272173,12.797113205306232,13.745836487039924,13.368108944036067,13.178941974882036,12.691126233898103,12.737686495296657,12.810556646436453,13.141432163771242,12.582475337199867,12.205070059280843,11.795837728306651,12.336400632746518,12.779495283029974,12.555855608079582,12.099132146686316,12.044875495601445,12.181567437015474,12.336744723841548,13.07609658036381,12.905068608000875,12.987834212370217,13.825432515703142,13.430028172209859,12.688845975324512,13.077408318407834,13.909149993676692,14.401954818051308,14.858244283590466,15.439965319819748,15.190603816881776,14.808094816748053,15.671910120174289,16.18463507667184,16.21026820410043,15.499208159279078,15.728996080812067,15.801888592075557,16.142510067205876,16.53065082244575,17.45182779431343,17.542418662458658,16.852905646897852,17.586982217617333,17.02303106850013,16.115878661628813,16.031738768797368,16.683150168973953,16.391013571992517,15.586695292033255,15.98643941199407,15.574556054547429,14.886992672923952,15.064126712735742,14.507881212979555,14.596555744297802,14.047939172014594,14.62871353700757,15.587412459775805,14.953729101456702,13.994828587863594,13.835569530259818,14.784296853933483,14.628384671639651,14.187857480719686,14.823630756698549,14.546654396690428,15.309151000808924,14.349966985173523,14.365397916175425,15.307360296137631,15.22435568133369,15.894852414727211,16.133911746554077,15.169280696194619,14.69618583843112,14.40612310776487,13.532145192846656,13.23081485601142,13.10602464247495,12.587474839296192,12.045542031060904,12.184943867847323,11.51235131220892,12.399452646728605,12.094071205705404,11.117611599620432,10.589480135589838,10.477580699604005,10.587041464168578,11.158512644004077,11.109064263757318,10.162510940339416,10.857230455614626,10.614888217300177,10.85686441976577,10.708143485710025,11.408149692229927,10.827122649177909,9.927239814773202,9.948929080273956,10.920383620541543,11.374682175926864,10.43706544302404,10.150080646853894,10.945651346351951,10.09523893846199,10.364210126921535,11.033260345924646,11.333403022494167,10.80340996477753,10.837201005779207,9.924989586696029,9.21020340686664,10.084900539834052,10.912212113849819,11.293718055356294,11.618237826507539,11.914928318466991,11.530196812003851,10.621881523169577,10.973693264648318,11.531991043593735,11.678846042137593,12.485553320031613,11.926559090148658,12.28938656207174,12.14316041721031,12.852232804521918,13.65580279333517,13.845074953045696,12.961167735978961,12.237578719854355,11.78375344723463,12.744441643822938,11.892899740021676,12.033029451500624,12.25330243865028,11.380309405270964,11.282226865179837,10.561811902560294,9.66808913089335,8.821949102915823,8.582357157021761,8.077217631507665,8.615616045892239,8.616394315380603,8.18546728324145,8.850044233724475,7.87293633306399,8.044847796205431,8.623925691004843,8.594369165133685,9.441347701940686,9.259913015179336,9.363837532233447,10.343599433545023,11.332244045566767,10.336662998888642,10.521936118602753,11.320240247529,10.57342448271811,11.02877031546086,10.846222306136042,10.240185394417495,10.20155324600637,10.380075373221189,11.205477505922318,11.263109989929944,11.478430896997452,11.389103112276644,11.286299384199083,10.394874299876392,10.649688752833754,11.552772992756218,12.248482225928456,12.831445570103824,13.316873451694846,13.69220189936459,13.67749710706994,13.473597342148423,12.564706255681813,12.182832457125187,11.955078003928065,11.128833423368633,10.970768940169364,10.420870061963797,10.51052282936871,10.956643174402416,10.520426296629012,11.145213740412146,11.988328543957323,12.230444814544171,12.371210657060146,11.544311139266938,12.185772396624088,12.507353310007602,12.810945285949856,12.699263677932322,12.689668053761125,12.890369879081845,12.769279847852886,12.57906620297581,12.662093603052199,12.479610269423574,11.985523398499936,11.42605206137523,11.608225622214377,12.265443314798176,11.570751944091171,12.506157408002764,12.87293172487989,12.12549841729924,11.264639648608863,11.895356139633805,10.988082433585078,11.792024055495858,11.582057852298021,10.675591591745615,11.120791528373957,10.361158209387213,9.514298278372735,10.32606908492744,11.064674712251872,10.778747449629009,11.43497620522976,11.11702090734616,12.066523528192192,12.738029059022665,12.770034147426486,12.800416986458004,13.2275005672127,14.068546236027032,13.931842360645533,14.091217755805701,13.882326235063374,14.205223835073411,14.74462764756754,13.964682023506612,14.315574460662901,14.353642532601953,15.259038078133017,14.984524264931679,15.730380002874881,16.269163822755218,17.217347181402147,17.003577328287065,17.33878719806671,17.30254802154377,16.45060693938285,17.03299797233194,16.166039956733584,15.68708973005414,14.863460080698133,14.363685784395784,14.823930779937655,14.848952173255384,15.173569973558187,15.262429987080395,14.266289927531034,14.27319971844554,13.514468933455646,14.358639254700392,13.372739078942686,13.963878653012216,14.376369182486087,13.988041483797133,14.048960752785206,14.801301726605743,13.80184673005715,12.855871232226491,12.921169493347406,11.927341336850077,12.632660867646337,13.1174177643843,13.677513382863253,13.16465248633176,13.999777479562908,13.310034125111997,12.607067319564521,11.957551173400134,11.848093857057393,11.309908861294389,11.61558338208124,11.046939563006163,11.477504097856581,11.927417387720197,12.562537957448512,12.304332228843123,12.09222735883668,12.303553358186036,12.311415045987815,13.25473707774654,12.890223918017,13.337147313170135,13.229488113429397,13.004760366864502,12.578678238671273,12.743065295740962,12.998058009892702,12.802898793015629,12.796061103232205,13.515273030847311,14.415839308407158,14.130966096185148,13.63616252783686,13.93756843591109,13.805659257806838,14.403322965838015,15.017307572066784,14.71831937553361,15.583840332459658,16.297373082023114,16.123172600287944,16.13716207118705,16.93024933896959,16.635300042573363,15.74345672223717,15.525080433581024,16.312963333912194,17.00139811867848,17.817399809136987,18.758241086732596,18.385326573625207,18.95763255469501,18.294543226715177,18.35268612904474,19.240957155358046,19.499810172244906,19.505591473076493,19.32908922433853,18.886823685839772,19.884786349721253,20.744796906597912,20.8243573801592,20.992702348623425,20.79074255609885,20.65746612753719,19.807494881097227,20.10184588097036,20.161053088493645,20.372222915291786,21.337260771542788,21.37809612741694,21.453318311367184,21.214812204241753,21.123869441449642,21.881970998365432,21.170483064372092,20.773235116153955,20.67793366499245,21.24807432992384,20.531016485765576,19.670436920132488,18.708463264163584,17.8451916850172,18.728268068749458,18.58836427051574,17.887128822971135,17.63220315054059,17.508918539155275,18.019417292438447,17.618787029292434,17.69583687884733,16.77918406203389,17.045260487124324,17.68612506473437,18.05795736098662,17.64698385586962,17.188071885611862,16.8906766413711,16.30060047097504,16.676210843026638,17.00406870478764,17.10007158620283,16.22796927811578,16.340076780412346,16.875451122410595,17.26141068339348,18.240791319403797,18.094552852213383,17.404674233868718,18.35168680269271,17.59412844479084,16.758734388276935,17.653687780257314,17.906845121644437,17.372886198107153,17.416772728785872,17.155915792565793,16.540687354281545,16.96514053316787,16.276341223157942,17.182271827477962,16.23626507818699,15.954876423813403,15.065262915100902,14.911334445234388,15.594370176550001,15.443944504950196,15.642505774274468,14.708546224515885,13.90094877500087,14.748460282105953,13.830419905483723,13.693562465254217,13.345937622711062,12.656366758048534,13.644035640638322,13.3546516825445,13.97092009941116,14.481020087841898,13.83982793847099,14.675044024828821,14.654511156026274,14.727777203079313,14.103073740843683,15.05163667909801,14.542638218495995,14.648190039675683,15.6040866705589,15.179783653933555,15.935916407965124,16.65601195814088,17.516157641541213,17.317021060269326,16.401476869359612,16.74972847662866,16.21881828829646,15.655198222957551,15.978775823488832,16.549419795628637,16.591843506786972,16.462244554888457,17.2500713407062,17.488519652280957,17.537615433335304,17.721303483005613,17.655513694509864,17.160473342984915,17.05365412356332,17.474815719760954,17.448063160292804,17.508078213315457,18.161336393561214,19.125022179447114,19.168311095796525,18.725851900409907,18.430474534630775,17.56820806954056,16.592863378115,16.911003651097417,16.47172235324979,16.24055150244385,17.120895055122674,16.267094554845244,16.175277406349778,16.720844749826938,17.181764317676425,18.105490711517632,18.392608884256333,18.262086441740394,19.215553050860763,19.23378975596279,18.406924032606184,18.34003021894023,18.198806698899716,17.761087397113442,17.56513322610408,17.10961926728487,17.839463146869093,17.953667644411325,18.070615702774376,18.733703824691474,18.442294841632247,19.006392333190888,18.670657524839044,19.46843922883272,19.63351393956691,19.75871395599097,19.568282566964626,20.18344505922869,21.002488587982953,21.261709193699062,21.23467141063884,20.973714522086084,20.453845179639757,19.613067376427352,20.090141413267702,20.37461670022458,20.444921299349517,20.56846864754334,19.599702110514045,19.890740489121526,18.95688314549625,19.536989306565374,20.359977560583502,20.491001966875046,20.850320663303137,20.852235028985888,20.142926794476807,20.646595866419375,20.921290927566588,20.4670701790601,19.924393442459404,19.661338133737445,20.280970933381468,20.784577487502247,21.28572221659124,20.496345861349255,21.472958180122077,22.127516048960388,22.52489265333861,21.84659197041765,21.210401516407728,21.69787436677143,21.298052471131086,20.45682605030015,21.3834164198488,21.977837674319744,21.86665094876662,21.725636559072882,20.98898161202669,20.73627566965297,21.6979263368994,21.953740995377302,22.694853718858212,23.28513070382178,23.590715762693435,23.998060018755496,24.45968149602413,24.9713152423501,24.60548914829269,23.876511938404292,23.846707426942885,23.469791264273226,23.13570263190195,22.53161019133404,23.477503810543567,23.237069690134376,24.216616201680154,24.490881618112326,25.327630891930312,25.343699688557535,25.36263606743887,24.665547670796514,23.992834048811346,23.665274625178427,24.63111164048314,23.980196197982877,24.927772503346205,25.519954251591116,25.445674599148333,26.290988051798195,27.006804270669818,27.865784000605345,27.577899334952235,27.27836659224704,26.757011491805315,26.85231491783634,26.763772749342024,26.785849425010383,26.104357159230858,26.648185269441456,26.138946682214737,26.082681727595627,25.17775856005028,25.73639956768602,26.040749739389867,25.30576239246875,26.288295971229672,26.772851617541164,26.000075812917203,25.08789867768064,24.526130159851164,25.319888123311102,25.7894895975478,26.69572835136205,25.970680040773004,26.96625580638647,26.412569481879473,26.813620167784393,27.454520161263645,27.074858476873487,26.478878812864423,26.4998223236762,25.908524219878018,25.00988570228219,24.046538745984435,24.140135837253183,24.9093756377697,25.000967336352915,25.82400615559891,26.644366937689483,26.41218010149896,26.980183282401413,26.960749687626958,27.38629438728094,27.51931835897267,27.855238157324493,28.48717153770849,29.286905564833432,29.22888295352459,29.06690803123638,28.210425906348974,27.981430768035352,28.832315581850708,29.103053675498813,28.7313660569489,27.747967227362096,27.322652564849705,27.191849859431386,28.12084423098713,28.64075418235734,27.895604632794857,28.163404637482017,28.123410779051483,28.07484852336347,27.426225473638624,28.12670578341931,27.89624466141686,27.973735976964235,27.927193920128047,26.928056839387864,27.511908845975995,27.348038689699024,26.43907660525292,27.1255395244807,26.231909736059606,26.415248139295727,25.714013040065765,25.265409218147397,24.7614609724842,24.27189637394622,24.593086345586926,25.03669855883345,25.13666888140142,25.64069350482896,25.654127410613,26.52997400937602,26.38242591964081,25.72886967472732,25.227539038285613,26.039440870285034,26.62856129463762,27.21002230234444,26.74394842516631,27.723224284593016,27.534617045894265,27.63982477877289,27.173942824825644,27.805864416062832,28.380403178744018,28.120999781414866,27.36439023958519,27.5487638451159,26.67716224724427,26.97646713955328,26.924252956174314,27.728240177500993,27.473398744594306,27.34218669962138,27.905992767307907,28.107157498132437,28.63548013754189,27.769907687790692,27.5823893439956,27.016363265924156,26.751219200901687,27.085902377031744,27.328205545432866,27.448213510215282,26.75590472854674,26.048067051451653,25.586917190346867,25.284490359947085,25.680497606750578,25.339261793065816,25.129499072209,24.92749470518902,24.75984462723136,23.788540915120393,23.654623502399772,23.458157109562308,23.970342485699803,23.271556025836617,23.888448868878186,23.797329710796475,24.43319693300873,25.431031186133623,25.220028143841773,24.364747232291847,23.62494470505044,24.599731286522,24.819130008108914,23.934523009695113,23.095078566577286,23.51111955055967,22.52230398217216,23.090934671927243,22.26832983829081,22.24483645753935,21.834976015612483,22.515934409573674,22.888036195654422,21.91516089718789,22.317913842387497,22.081541696563363,21.70424252562225,20.827579502481967,21.78507026936859,21.457398034632206,21.59997840039432,21.661584043875337,21.70536228781566,22.209093370474875,22.081855149939656,21.196360355243087,22.158091000746936,22.128331997431815,22.739578800741583,22.553445717319846,23.248254750855267,23.982844983693212,23.101661765016615,23.131559004075825,23.251999348867685,23.552688688971102,23.366949167102575,23.659634043928236,24.33520439499989,25.020698067266494,24.073791481088847,24.173394351266325,24.425788297783583,23.6901956028305,24.612003471236676,24.51094044931233,24.024977213703096,24.075581477954984,23.704349553212523,23.509224138688296,23.675809672102332,24.100966291502118,24.038600189145654,23.74314617505297,23.235307222232223,22.963800801429898,22.59992609359324,23.083769826684147,23.416433985810727,24.39325864892453,25.307630002964288,24.779193545226008,24.964804134797305,25.63864880707115,25.6167377573438,26.171656403690577,26.66818864317611,27.314425641205162,28.30246181646362,28.672951421234757,27.960519175510854,28.296390214934945,28.056900279130787,27.078601805958897,27.071373620070517,27.093761659692973,27.886172073427588,28.36656132666394,27.766499030869454,26.814359408803284,26.175589219201356,25.86548821721226,25.42666847119108,25.621392026543617,26.3829966140911,26.692891222424805,26.325160349253565,25.9642065144144,25.955733100418,25.261315734125674,25.617908030748367,25.174471570178866,24.89156611636281,25.308066263329238,25.579616931732744,24.95580010022968,24.51395318377763,25.16645055450499,24.75044258730486,24.567292685620487,24.368467748630792,23.846084766555578,23.57059285743162,24.272585558705032,24.887940577231348,25.338946091476828,25.629034973680973,25.87446645926684,26.782865730579942,27.760668660048395,28.196465330198407,28.650748977437615,29.24508296046406,28.745080572087318,28.023538266774267,27.28714568214491,27.0362567785196,27.661117248237133,27.688719058409333,27.929176286794245,28.74468994094059,28.677077621687204,28.340750239323825,29.121715725865215,29.1312047210522,29.004383354447782,29.919723614584655,29.831246855203062,28.93374159419909,28.578510488849133,27.904779323376715,28.20132547430694,28.523625370580703,28.92609589267522,29.64112441847101,28.7936959117651,29.550071210134774,29.374798773787916,29.044435938820243,29.506836869753897,30.060890500899404,29.54241881193593,28.682436601258814,28.44620194705203,29.344037739560008,28.670679036993533,29.20673765707761,29.70930702239275,29.82684049103409,30.057448273524642,30.417545079253614,30.559157906565815,29.715896216221154,30.63491559261456,31.420826515648514,31.560505689587444,31.564796453807503,30.931241618003696,31.012076848652214,31.39537084987387,30.65606623562053,30.09661023458466,29.727953856810927,29.129739872179925,29.08755343221128,28.1385583486408,27.8628126909025,27.313862318638712,27.943786062300205,27.570124424993992,28.063023703638464,27.155215259175748,26.549308175221086,27.375466476660222,27.708792368415743,28.270147918257862,28.129453216679394,28.33438860345632,27.718830198515207,28.655557706486434,28.380538147408515,28.245805230457336,28.814196647144854,29.733463677112013,30.173189604654908,31.116083970759064,32.10416589351371,33.093410660047084,32.219852414447814,32.68287233449519,33.13684302382171,32.15436878800392,32.746084382757545,33.05643905932084,32.44150701537728,31.821624328847975,32.54776325915009,33.435380682814866,34.341366726439446,34.07567625492811,34.99319726508111,34.07139106513932,33.65013703191653,32.73062465386465,33.09501936938614,34.02615819172934,34.870749907102436,35.747211039531976,34.84098342480138,35.64187389984727,35.71419635321945,35.99332146765664,35.19917907798663,35.38101538689807,35.96569916373119,35.21411311579868,34.84643357200548,34.04047587234527,33.279513326473534,33.87318511866033,34.354698402341455,34.65120368404314,35.11305585782975,35.823959023691714,35.54165865993127,35.89084464404732,35.08431078027934,34.465450200717896,33.84079753002152,34.66183334635571,35.267386343795806,34.485817668028176,34.64395486749709,34.21192324580625,33.94325548270717,34.59301839536056,35.53342406172305,36.153772790916264,35.59871242148802,34.62557291612029,33.78822909994051,32.93713733041659,33.24879886303097,33.9375621015206,34.41563102835789,33.86898920079693,33.27991256956011,33.92800285900012,33.80558744492009,33.51451992429793,34.408977068029344,35.27831602282822,35.440769399516284,35.71935593197122,35.686676213517785,36.197978999931365,35.39020437980071,35.30340140219778,34.31138083105907,34.64018160570413,34.420381932519376,34.8654395788908,34.1408058963716,33.69908150425181,34.36802962748334,35.03388275532052,35.48062365828082,34.87481821421534,34.507184617221355,34.3849286865443,34.97877285210416,35.61732650408521,35.6467241467908,36.18548659142107,35.72203913843259,35.64163036318496,35.976674627978355,36.77804557234049,36.291756892576814,36.267536654137075,35.71170790027827,36.277498276438564,35.92153714457527,36.75136024272069,37.03498862776905,37.73887267103419,38.130016283132136,38.429139520507306,38.95574921974912,38.49295118032023,39.04139958554879,38.12024614261463,38.46398521121591,39.429323110263795,39.70004111342132,39.59147235006094,39.52812794735655,38.85908460756764,38.403686669655144,38.36740217078477,39.12194051826373,38.276269984897226,39.16711889626458,39.95183362625539,40.646426608320326,40.29609681619331,41.25638987170532,41.819434363394976,42.37652869941667,42.960685167461634,42.17122358689085,42.76678883191198,42.71818065177649,42.14375042077154,42.23934039985761,42.500195590313524,43.33057020697743,43.65746422577649,42.900523599237204,43.32665697578341,42.73158868169412,42.461340985260904,42.89286034414545,43.583730415441096,42.8698580916971,43.146262888330966,42.754046376328915,43.33975072298199,42.95452165231109,42.01189656602219,41.93947957735509,42.48345376411453,42.76464296737686,43.0697819404304,43.963066671509296,44.26145085785538,43.61227597715333,43.17610010225326,42.234978300053626,41.79356933897361,42.14346526004374,41.7782560121268,42.48106962069869,42.973468584474176,43.697038010228425,43.471700748894364,42.81511690514162,42.151474659796804,42.5884561445564,43.37951649352908,43.282360112294555,43.08603830309585,42.81187329348177,42.013812413439155,42.522780732251704,43.277020540088415,43.602843892760575,43.35581525741145,43.42867051437497,42.567404279485345,42.11557325022295,41.79327911743894,42.607076816260815,43.456064701545984,42.458158703986555,41.98966190172359,41.08687857585028,41.127358588855714,42.00458996463567,42.707379394210875,42.09169389260933,41.55508327484131,40.61913618631661,41.11993057327345,41.438917248509824,41.62435112707317,41.680455485358834,40.74393119383603,40.7668566191569,40.351649483665824,40.80436131171882,40.77189550641924,41.09335630107671,40.66985593084246,41.55885509541258,40.60632294276729,41.116591981146485,41.102718292269856,41.579217709600925,40.72563422145322,40.66363430349156,40.990265937987715,40.14883296750486,40.496594585478306,39.68387976568192,40.26310056634247,40.240399186033756,40.24882865510881,39.938636066857725,40.27265836158767,39.88365310896188,40.34322065114975,39.469475253950804,39.25217416184023,39.24680352769792,39.63716660765931,39.77457298664376,40.00582620128989,39.66786601161584,40.6352663920261,40.34638880286366,41.02684738440439,40.43838127609342,40.19785657571629,40.19529848312959,40.58941855188459,40.355066613759845,40.45575009007007,40.19570391019806,39.73728692298755,39.922884001396596,39.11121904151514,38.72933678980917,38.067669136915356,38.040280759334564,38.4058163035661,38.21147658582777,37.76813359698281,38.67170521989465,38.63978576567024,38.27879415964708,37.86098878458142,38.798412072472274,38.15480951638892,38.409847505390644,37.69594192923978,38.01444079913199,37.50428793625906,36.795611639041454,37.28492062492296,36.381475317291915,36.55118591571227,36.612512740306556,36.55508089251816,37.23441928625107,36.64251990430057,36.96484987344593,36.40252168383449,36.445922343060374,35.467211971990764,34.594689334742725,34.262641481589526,33.32481580413878,33.181187017355114,33.297705684322864,34.29404157306999,34.927354119718075,35.27522112010047,35.204670287203044,34.40913923922926,33.7888516667299,33.90086516365409,33.96301247784868,33.81441794708371,33.493929436895996,32.71351424511522,32.71325621707365,33.68655406497419,34.16681470349431,33.16725263977423,33.06876030564308,33.17443726211786,32.81241785129532,32.94136427575722,33.449511512648314,33.826829113066196,33.2129495809786,33.47995435120538,33.84301883820444,33.23726818431169,34.20126535277814,34.961163780186325,35.28824901022017,34.79083664342761,35.1814266894944,35.50540352193639,35.02897389791906,34.41191895771772,33.80601314129308,33.11198391020298,32.29477392649278,32.81816087896004,32.2501626634039,31.329672638326883,30.782603566069156,30.33492617541924,30.53502422804013,29.65792118990794,28.79555206373334,28.524112397339195,28.503284639213234,29.245628827717155,28.279541638679802,28.51922779297456,29.415579225402325,29.961216557305306,29.368942018132657,28.995112884324044,28.681102325674146,28.82876713294536,28.67988383024931,28.64750624075532,28.06257001729682,28.124843499157578,28.70618883240968,29.414299954194576,29.463175379205495,28.463910141494125,27.670052096713334,27.71703202603385,28.487398860044777,28.308449041098356,28.55632553389296,27.719875272829086,27.246442798525095,26.43315790174529,25.742271836847067,24.7736952919513,25.48955961316824,26.08725236915052,25.123281287495047,25.35759838297963,25.752709492109716,26.714208643883467,25.753921792376786,26.56469555478543,27.550260895397514,27.811288265511394,28.046965094748884,28.482705513946712,27.512086655013263,28.304449131246656,28.46553474245593,29.407589138951153,29.723175574094057,29.263844095170498,29.840974467806518,30.13987092068419,30.334271682426333,30.11716442462057,30.735566060524434,30.112020610831678,29.936056785751134,29.068391385953873,29.496150524821132,28.566767040640116,29.015565742272884,29.94936911482364,29.137409339658916,28.340868414379656,28.83517463505268,29.66108762519434,29.46854831604287,30.398975467775017,31.34568820660934,31.230263602919877,32.21007561683655,31.21463670860976,30.36347969342023,29.850158602930605,29.65870553953573,30.343539917375892,30.680710062384605,31.136253430042416,32.10171884763986,31.28049695584923,32.16138852434233,32.57188527286053,31.710526802111417,30.988331685308367,30.844244448002428,29.99047373700887,29.1828877707012,28.364683946594596,27.39990574447438,27.005904160439968,27.033554664812982,26.058161304332316,25.479912762530148,25.402292660437524,26.32290668459609,25.48603153321892,26.030353790149093,25.183253850787878,24.681956479791552,25.008191828150302,24.72687269607559,24.048838121350855,23.371467837132514,22.78754522977397,21.954883601982147,22.55031571397558,23.259371291380376,24.026013653725386,23.95324517181143,24.088081378489733,23.62178581999615,22.973211688455194,23.69280228530988,24.244742734823376,24.270685240626335,23.782475364860147,22.94282380864024,22.505875057540834,21.894197952467948,21.80281711462885,20.968505560420454,20.1187248211354,19.78648777026683,19.135623362846673,19.588555246591568,20.088951351121068,19.442290900740772,19.975873809307814,19.88001017458737,20.03754571825266,19.568886201828718,18.963974241632968,19.689481901936233,19.59935657447204,18.870558181311935,19.262586114928126,19.690124803222716,20.63969278987497,20.785033801570535,20.48973120888695,19.923492935486138,20.41926324274391,19.48181388573721,20.127340840175748,20.157302173320204,19.634954544715583,19.629413865040988,19.551246946211904,20.317548231687397,19.92395395319909,19.989754646085203,20.585699401330203,20.181313825771213,19.933954832609743,20.27469050558284,20.898670035414398,20.443531746510416,19.852233779150993,20.011733287014067,20.520092903636396,19.834746235981584,20.150758482981473,19.798035517334938,19.7966275960207,19.322126776445657,20.211756201460958,19.82284471578896,19.760527597740293,19.270280549302697,20.023275904357433,20.349217591341585,20.992716066073626,20.400126272346824,20.484026482794434,21.03459800640121,21.03603667905554,20.472706604748964,19.86696648178622,19.871731431223452,19.90365279605612,20.787830431945622,20.35536351101473,21.19904757384211,22.16997791454196,21.502214941196144,21.724935110192746,21.748965106904507,22.547175540588796,23.311309815384448,24.04027270898223,23.969101892784238,24.644356137607247,24.31896052742377,24.799019776284695,24.084873849526048,23.665323886089027,24.219514564611018,25.15430324478075,25.202081139665097,26.197929770685732,26.22627833066508,26.957675250712782,27.596679073758423,26.77160228881985,26.750695054885,26.699341089464724,26.97900860570371,26.48717133468017,25.572401171084493,25.47934750886634,24.615519651211798,24.00537188537419,23.469892028253525,23.449722627177835,24.10464865481481,23.81969179911539,22.888506878633052,22.414193402044475,22.139077667612582,21.75188916036859,22.213088639080524,23.063880407251418,22.990969597827643,23.886351631954312,24.495167477522045,24.754352586809546,24.914450383279473,25.316620897036046,26.222292749211192,25.736780339386314,24.897150595206767,23.94537881668657,23.86451659910381,24.09828701755032,23.2460755482316,23.824350222945213,24.310368400998414,24.743743371218443,25.113481495529413,25.4745504274033,25.473444460425526,25.594802357722074,25.976139519829303,26.09473414486274,25.393263301812112,25.38163241976872,26.194961129687726,25.256829279009253,24.970373461022973,24.08631374221295,24.568913637194782,25.334041475318372,25.145685722585768,25.905518690124154,25.964135355781764,25.13161792419851,25.935260316822678,26.387776341289282,27.025059652049094,26.570226477924734,26.600564104504883,26.63975721085444,26.275376907084137,25.541325370315462,24.66674094973132,24.271498900372535,25.105095792096108,24.94466968998313,25.392408246640116,25.694317126180977,25.32993006380275,24.634230428840965,24.76942768180743,25.444513821508735,26.409369976259768,26.167734631337225,25.252527511678636,24.90200065355748,25.054867626167834,25.07099348027259,25.927020381670445,25.608718041796237,25.911174279171973,26.434722154401243,26.12907716166228,26.83943742606789,26.339024416171014,25.67170512257144,24.73273163335398,24.703975485637784,24.247534866444767,23.67930890386924,23.395572366192937,24.234960611443967,23.38441635342315,24.252435898408294,24.55863793985918,24.976417096797377,25.66998512810096,26.630549484398216,26.622782915830612,26.36232013721019,26.843153691850603,26.722252640407532,26.738776408601552,27.571364410687238,26.946938478853554,27.644930641166866,26.99327091453597,26.12033133022487,26.205908848438412,26.316823919303715,26.773221094161272,26.340217747725546,26.092628065496683,25.7280127084814,25.02295208023861,25.764539460185915,25.51841101143509,25.71425036713481,26.393404399510473,25.801365771796554,26.75254441285506,27.689220692962408,27.289064664859325,28.055710479151458,28.08140494255349,27.832570146303624,27.651980414055288,27.015276041347533,26.075103575829417,26.73679113155231,26.0741872866638,26.66325971344486,27.4570598481223,26.964145939797163,26.097218648530543,25.235456119757146,26.076446055434644,26.889805558603257,26.0536380559206,26.26751612825319,27.174811721313745,27.065496874041855,27.19842232717201,27.372532173991203,27.360143202822655,27.888232317287475,28.07987692160532,27.432648443151265,28.21451003011316,28.52743168314919,28.5363407144323,29.323073025792837,30.25357631687075,30.913274054415524,31.38340524304658,31.82721162447706,30.971469913609326,30.237246660050005,29.36471069511026,28.41478730738163,27.86232111044228,27.40934616420418,27.100468803662807,27.818819264881313,28.46430919272825,29.2832723101601,28.897116132546216,28.893896001856774,28.487401423510164,28.533786716405302,28.297720765694976,28.15405774489045,28.56266690697521,27.98826674511656,27.631369004491717,27.409731844905764,27.2994163534604,27.48903425084427,27.012788204476237,27.631765509955585,27.21633921051398,27.77348568243906,27.93711828859523,27.0710734478198,26.347858757246286,25.700611498206854,24.9716355339624,25.48666868591681,25.50512738712132,25.406993973068893,25.104301815852523,25.684684900101274,24.778707920573652,24.711527213919908,25.552763687446713,25.73051071865484,26.67430347809568,26.147760526742786,25.38082713354379,24.525566795375198,24.60639268066734,24.7130867135711,24.80831077694893,24.439232396427542,24.745489774271846,25.37027383269742,25.5257164449431,25.516509267967194,25.080586994066834,24.67747871018946,24.20020474633202,23.350792285520583,22.85396990645677,23.536895495839417,24.135886202566326,23.941998159512877,23.648635054938495,24.267279621213675,23.68290983233601,22.83156779408455,23.247205551248044,22.522324001416564,21.616446321364492,22.57964626699686,23.012573190499097,22.752408050000668,23.152237301226705,22.77708419552073,22.403065813239664,23.221659429371357,22.709236699156463,22.022892233915627,22.951384427491575,22.242708555888385,23.102274583186954,23.48014826606959,23.32102283835411,23.807416380383074,24.738026587292552,24.86088870698586,23.862282734829932,24.204525099601597,23.642163652461022,24.00261448416859,24.276030464097857,24.787700752262026,25.15354471746832,24.49853956559673,24.00176145741716,24.473341473843902,25.232093130704015,25.27446324052289,26.000513106118888,26.21736843045801,25.85246208962053,25.296979925129563,25.76640594145283,25.56598995346576,25.901102354750037,25.925313907209784,26.065196687355638,25.969412345439196,25.437068082857877,25.881800821516663,26.43195651471615,27.069355399813503,26.586039586924016,26.983544926624745,26.47365902038291,25.846223547589034,25.85031099570915,25.922705256845802,26.877698678988963,26.76870512124151,26.62983184820041,27.550703757908195,28.296907438430935,29.176813207101077,28.40025850897655,28.951226762030274,28.59862420381978,28.763092539738864,28.917621961329132,28.897342524956912,27.916025018319488,28.177170109469444,28.82366462610662,27.920936924405396,27.78786378679797,27.097050363197923,26.148381244856864,26.7578611318022,26.981235580984503,27.46795540302992,28.18818326946348,28.879796478897333,28.80481139011681,28.18500557495281,28.053729633335024,27.229173839557916,27.13091316819191,27.003708557225764,27.027133859228343,26.210849828552455,26.476221893914044,26.520366983953863,26.13610597839579,25.770075348205864,25.796966745052487,25.63310604635626,24.82983335154131,25.000704827718437,24.316968678031117,24.086715035606176,24.64294559089467,25.417051036376506,24.722816232126206,24.475716538261622,23.52919522766024,22.7728712586686,22.310314552858472,22.490058590192348,23.349784289952368,22.492703317198902,23.400978571735322,22.799264723435044,22.514879171270877,23.347542313858867,23.697344283107668,24.44618274876848,24.009105113800615,23.94597739353776,24.807533571030945,23.89033410185948,23.290920151397586,22.54707091115415,22.48976982757449,22.04195423144847,22.373129297979176,22.617339790798724,22.223304465878755,22.657922426704317,22.88337441859767,23.608672367874533,22.78270725440234,22.169567556120455,22.751689386554062,22.81360231107101,23.430890205316246,24.14042028831318,24.20509326690808,23.524220254272223,22.76959007466212,23.01846183044836,23.39631675230339,24.04927191371098,24.25316149648279,23.838402861263603,24.58764453465119,24.565180331934243,25.278412610758096,25.767759422771633,26.514412133488804,25.658168686553836,26.006367583293468,25.693249782081693,25.525277636945248,26.38501811400056,25.877367257140577,25.94967296998948,25.20820579910651,24.802904954645783,25.752399945631623,25.592693658545613,24.751220589503646,25.003483110573143,24.521721803117543,25.409981571137905,25.912193855270743,25.210625265259296,26.002769481856376,25.174220893532038,24.175027559977025,24.828973148949444,25.59036727063358,25.506397700868547,25.94175310432911,25.74077036930248,25.95943324873224,25.33556409040466,24.561346540227532,24.985040894709527,25.272521163802594,26.07623101072386,26.99324325239286,26.94831987703219,26.085296396166086,26.36465889820829,26.21008762763813,26.474149817600846,26.852924903854728,27.591460751369596,27.225143290124834,26.700983369722962,26.8489805101417,26.80490120127797,27.451758314855397,26.67704901844263,26.716559838037938,26.18093012785539,26.93347508413717,26.567347871139646,27.136629813350737,27.232641221489757,28.089202009141445,27.305354156531394,27.45363326650113,27.638107917271554,27.182104860432446,26.249848156236112,26.404351733159274,27.304881726857275,26.349502567201853,25.920067911967635,25.378234285861254,24.627780937124044,25.102915409952402,26.01784467510879,26.032224926631898,25.981553212739527,25.995283209253103,25.632988578639925,26.562942096497864,25.69844266679138,25.441489862743765,25.411691224202514,26.386458108667284,26.853187086526304,26.311573836952448,26.96480544609949,27.844941516872495,27.171795492060483,26.846438873093575,27.352165795862675,28.05010954895988,28.84267316153273,29.13920596288517,29.459556315094233,30.027412035502493,29.19243444968015,29.74111399659887,29.91049530170858,29.996603454928845,29.640446677338332,28.84686784306541,29.471244480460882,30.021800292655826,31.019848781172186,31.713190317619592,30.995503311045468,30.397312675137073,30.260465401224792,30.559218019712716,29.931058652698994,29.48766984185204,30.241161060519516,29.498758592177182,30.359115060418844,30.16206031711772,29.344839508645236,29.956796064507216,29.98348272545263,30.564911760389805,30.066847061738372,30.672608010005206,30.802481980994344,31.731553772464395,30.933689380530268,31.17200855957344,30.528973867185414,30.49808980943635,30.896808933466673,31.53711349098012,31.8727003429085,32.59126939950511,33.16749813919887,32.66440927889198,31.924123379401863,31.528770704288036,31.694980837404728,32.11690067220479,31.95407613599673,31.61814897460863,30.9720679060556,31.959051066078246,32.05567784560844,31.443996510002762,30.9161902773194,30.037680921610445,29.143795107025653,28.974557859357446,29.673053945414722,29.688535357359797,29.95132177742198,29.541588762309402,29.39110211096704,29.152474373113364,29.727481598500162,30.38582537136972,30.19074374763295,30.385173092596233,29.87077621743083,29.55443681264296,30.313624119386077,30.863734152633697,30.474886218551546,31.07117666490376,31.949334926903248,31.87232758384198,30.963805948384106,31.93325520772487,32.039955170825124,31.571809934917837,31.878227681387216,32.70073570776731,32.285757148172706,32.14531716378406,33.01350028254092,33.87295397929847,33.0644700168632,33.155346867628396,32.7433604169637,33.41328310966492,33.74621168291196,33.83858029032126,34.80023529101163,34.347745642997324,33.90709180710837,34.422989814542234,33.58821532456204,33.554441961459816,34.49017967982218,34.92868262855336,35.11906578252092,36.101713123265654,35.12334000971168,34.324421517550945,34.74179045250639,35.57659440534189,35.30389662319794,35.032502016983926,34.53322084294632,34.46129432786256,34.730709221214056,33.854326435830444,34.124877421651036,34.90304262004793,34.50725861778483,34.41580751677975,34.568803852424026,35.057631235104054,34.22312739957124,33.93162912828848,34.61329102050513,35.559468865860254,34.96525446046144,34.16953088901937,33.91450744587928,34.808129706885666,34.42762253014371,35.009277873206884,34.59216836420819,34.98822240578011,35.41552020283416,35.24219527794048,35.95657952828333,35.08119868207723,34.26244067540392,34.841559460386634,34.89614376379177,35.56179930921644,35.92457661125809,36.5707095018588,36.91573647828773,36.14031840162352,36.162373745813966,35.201421475503594,35.703527802135795,36.00965793337673,36.07837274111807,36.13870564009994,35.247663562651724,35.16212369967252,34.89287615660578,34.18750067939982,33.44341610465199,33.86521159904078,34.47117228899151,34.20067896647379,35.1027224319987,34.152519481722265,33.66544485790655,33.428749768063426,34.13714576186612,33.74953936552629,34.72563343914226,34.447229576297104,35.43300729896873,36.376848011277616,36.75192857161164,37.37978676939383,38.20266912737861,37.2425534427166,36.3895487007685,36.048551151994616,36.76610508793965,36.99735422991216,37.54616035055369,37.96966014849022,38.96224627457559,39.706648882012814,40.51064360514283,39.58939938945696,39.009105554781854,39.96411754563451,40.15493112336844,40.522407652344555,40.69452748633921,40.81596400775015,40.45541511615738,40.55673955846578,39.669907768722624,40.465492913499475,39.91522974940017,39.49578569550067,39.434519584756345,38.82672496186569,38.17349102348089,38.55294782901183,39.012214770540595,39.687471866142005,40.64958143141121,41.41517385235056,41.30334946932271,40.44714507088065,40.41444571316242,40.750733461696655,41.18898755637929,41.34330615121871,41.88325504120439,41.97636276204139,41.170955860987306,41.56725548347458,42.43508160300553,42.449463214259595,42.70766432909295,43.43805371504277,42.588528987020254,42.53562145959586,42.936086129862815,43.671579227782786,44.01796857174486,43.33459048671648,43.60702674649656,44.12861961778253,43.21547647099942,43.370716486126184,44.107607340440154,45.009319501463324,44.767754920292646,45.20402372581884,44.84784867055714,45.01375548960641,45.91797967860475,45.55754707893357,44.88917305879295,45.721422627102584,45.70154052739963,45.787640935275704,44.818251453805715,44.388198181055486,44.15345226647332,44.60111994529143,44.39361996296793,43.52933774748817,43.715823218692094,42.887164215091616,42.389026707969606,43.37782620638609,43.88239238457754,43.26427643559873,43.69820004887879,43.234487829729915,44.17197359306738,44.57119317026809,45.33079501800239,44.75409203907475,43.809468084946275,43.07064786646515,43.58587636239827,43.91300019575283,43.60619851201773,43.29764648107812,43.486094725783914,43.564616800285876,44.40944597730413,43.88097047107294,44.54738065600395,44.59951470699161,44.59380063833669,44.509867643006146,43.7191752018407,43.04865628061816,43.03825293853879,43.41174844931811,43.11627937061712,43.29208253137767,43.25885897874832,43.27009392809123,43.8754503801465,44.072929504327476,44.50577385118231,44.29154637036845,44.1084985435009,44.50324058253318,44.03256038762629,44.44603494834155,43.66189569700509,42.9018342923373,43.712705325800925,43.351505887228996,44.17940654652193,44.800926863681525,43.914586207363755,43.173253369517624,44.03686006786302,43.700844631530344,43.33170446706936,43.109786295797676,42.50319096725434,43.19050633115694,43.249831604305655,43.32594862347469,43.36279604583979,42.859478866215795,42.390077885240316,41.48713804455474,41.2624850072898,40.728442411869764,40.472494090907276,40.40641218051314,39.91145377792418,39.67535230284557,40.58046552166343,39.6157520650886,40.605067496187985,39.869598058983684,39.464900142047554,39.166467495728284,38.52242537820712,38.380087609402835,38.33852001512423,37.83803518814966,38.11893568048254,37.98728447314352,37.05646055843681,36.06313046719879,35.18356693116948,34.326098875608295,34.017865560017526,34.55536596849561,34.296230484731495,33.45202127704397,32.573258228134364,33.31653505610302,34.215045775752515,34.411419766489416,33.81211779732257,34.64580007921904,34.97371330065653,35.556174385827035,36.08192666294053,36.22769196610898,35.411229646764696,34.58032626379281,35.41768649965525,35.640379189513624,36.279850208200514,35.506368143483996,35.16611480200663,35.52003728831187,34.5483901402913,34.95596765214577,35.579817867372185,35.448308158200234,35.00540652591735,35.972740590106696,36.54241061769426,37.08099368214607,37.02389598963782,36.35949832480401,35.55913341511041,35.96159480931237,36.00441347854212,35.60159192001447,35.060010376852006,35.74070194829255,36.42987293424085,37.14601219492033,36.43477847520262,37.41054453747347,37.3512977543287,37.232716501224786,36.58848436130211,36.448327434714884,36.607399797067046,36.212517734151334,36.257980378810316,35.81658260989934,36.68420229339972,36.2597212693654,35.482347764540464,35.36861862428486,34.869903549551964,34.70359205454588,34.14944370277226,34.16332149319351,34.010117968544364,33.57961095543578,34.11510185431689,34.03230944601819,34.01186171639711,34.94126074016094,34.61945365462452,35.36303823348135,35.86685300245881,36.207845519296825,36.865556257311255,37.77032615290955,37.176273041870445,36.91563580138609,36.506975574884564,36.07159000309184,35.73798916861415,34.819144637323916,34.750398623757064,34.8883430082351,35.713060528971255,35.46072431607172,35.44661769783124,35.51529620401561,35.81949464837089,36.72723741456866,37.398848108015954,36.98049625521526,36.963362536393106,36.42502679396421,36.091776647605,36.04023461416364,35.08688082359731,35.231170860119164,35.421624444425106,35.87639650097117,36.29555751616135,35.58578375540674,36.357597357127815,35.85357048455626,36.46634300798178,36.77169878734276,35.893748888745904,36.20546210836619,36.95573098771274,37.920749279204756,37.81522317044437,36.93165045930073,36.71545770205557,37.53332072403282,37.64031065674499,37.561497351620346,38.4532127790153,38.036412701476365,37.047657473012805,37.18864356959239,37.26432335469872,36.67770395753905,35.932589024771005,36.334245970938355,37.057590233162045,38.01673967158422,38.96048285998404,38.82494072755799,38.84464819263667,37.892444607336074,37.63733258238062,37.20675240363926,36.81229881988838,36.528331166598946,36.9786382894963,36.60311708133668,37.53605163609609,38.2640655846335,37.744800575543195,37.61975220916793,37.27904644468799,37.07548751728609,36.990876195020974,36.210295064374804,36.287207116838545,36.681982413399965,37.26228560321033,37.23715471010655,37.85392204206437,38.55593299167231,38.12716175150126,37.7150733624585,37.973704886157066,38.31738680182025,38.14750351244584,37.86922478536144,38.718712254893035,37.96908580837771,38.863772108219564,38.76166002545506,39.18866894673556,39.25709681585431,38.813145126216114,37.85918944189325,36.89356750110164,37.13779155118391,36.58287877123803,36.08902555005625,35.13123335503042,35.63551903190091,36.34838441712782,36.97841270361096,37.70475013041869,38.54925377573818,38.298120473045856,38.25221668789163,38.49031912442297,39.00590983312577,38.32835443271324,38.18188248574734,37.91075260005891,38.47739135241136,38.87405480397865,39.698287836741656,39.369631154462695,39.88532109931111,40.65697626490146,39.69335885159671,40.17067749844864,39.58686511358246,39.7151756756939,39.75228901254013,38.85673450725153,39.29897425090894,38.351851562503725,37.6578558026813,38.00151779316366,38.97626021550968,38.81916252616793,37.97557501634583,38.309493923094124,38.90271625807509,39.11960909655318,38.72364897932857,39.41051685810089,39.262929286807775,38.99854294396937,38.14386743120849,37.9322352190502,37.878177400678396,37.61707684118301,36.96675928728655,37.95016766479239,37.52268007397652,38.20146989542991,38.86146616656333,38.36933247419074,37.931195327080786,37.5159503291361,37.904316305182874,37.4928711312823,36.93638609722257,36.88527077063918,37.04865223634988,38.03467524191365,37.7493835138157,37.07579211844131,36.6347513590008,36.99120114231482,37.0319614643231,37.97242948366329,38.67956997593865,38.890491095371544,39.423443706706166,39.08951227553189,40.05437356699258,40.44983940804377,40.69527906505391,40.3309960514307,41.07806897396222,41.72846304625273,40.778831765055656,41.35311447363347,40.73578045098111,40.46848075604066,40.440407005138695,40.48933496046811,39.58172642625868,39.774604505859315,39.535897329915315,40.04037296306342,40.36647897446528,40.51559275621548,41.27384389284998,41.38931075390428,41.309482185170054,40.633732868824154,41.356772143859416,40.791655286215246,40.672199266497046,40.92745437705889,40.15805550571531,41.12521298415959,40.90057096257806,41.85517333634198,41.39389768522233,41.68641766253859,41.03146645054221,40.598185647744685,40.176720168907195,40.992233073338866,40.94920233171433,40.912614710163325,40.877787282224745,40.36615531332791,39.86810910189524,40.85564597090706,40.8128906339407,41.354828958399594,41.8000607280992,42.13151056598872,41.46212296560407,41.25093347392976,41.319571272004396,41.11289257276803,42.05537624657154,42.20251847151667,41.33447530865669,40.72175314836204,41.66036309720948,41.218123643193394,42.0388323017396,41.23045583581552,42.01433099526912,41.12281820224598,42.077946071513,42.97017217660323,43.514349192380905,43.19663365604356,42.918748713098466,42.05561897251755,42.39567605778575,42.186286240816116,42.22533621219918,41.22833162546158,41.02100663213059,40.13716350309551,39.540199319366366,39.53477633371949,40.255950189661235,39.3424264350906,39.02396814990789,38.773116203956306,39.04578694701195,38.466515875887126,39.173716955818236,39.77700215158984,40.30524141108617,40.970939602702856,40.9126349510625,40.797122152056545,41.54731497867033,40.99457388278097,41.73666888056323,41.528081940021366,42.420668041333556,42.48447586549446,41.728967951610684,41.673921327106655,40.850157362408936,40.23904701881111,40.80963162332773,41.04155116388574,41.85689537553117,41.9546872372739,41.57509805075824,41.940799430944026,42.45318209193647,41.81282446254045,41.63608346367255,42.43698035972193,42.64400985883549,43.04723772313446,42.362456992734224,42.3840271034278,42.39342429256067,43.04057417809963,42.88173813279718,43.18149649258703,43.930335133336484,43.91573277581483,44.69910547696054,44.44131659576669,44.419902842957526,43.95493396371603,44.42334164818749,44.043313584290445,44.90415960550308,45.458942976314574,44.474323365371674,45.19422175642103,45.13546367269009,44.97950315894559,44.59711424028501,45.47022540960461,46.02952180756256,45.33162174932659,45.29821208259091,44.63666845159605,43.66812534024939,44.66207979246974,44.517773274332285,43.75445623509586,44.50902337022126,45.08930674800649,44.298230504151434,45.048006386030465,44.25836038636044,44.33097131503746,43.815734268166125,43.38013242324814,42.57538185920566,43.095045536290854,43.112441421020776,42.22797934804112,42.64226702786982,42.414993590675294,41.45509252231568,40.624926562886685,40.48884890321642,41.128670793026686,41.157516601961106,40.60394911421463,40.73115851962939,41.40227245585993,41.31594847002998,42.0877889841795,41.29080664366484,40.87440457101911,40.14141536829993,40.80697404127568,40.322049668524414,40.06963497819379,40.35312674101442,39.71175343263894,39.98527764296159,39.91715833824128,39.76757377386093,39.748400289565325,38.7891033324413,39.48808266688138,39.14638818008825,38.68039867840707,38.684364701621234,38.27169659920037,38.65911053447053,38.80319931684062,39.67595260683447,39.61705042608082,40.60811537923291,40.49330941401422,39.775241419672966,40.12192446552217,39.77123757870868,40.28259472968057,41.19181316578761,40.28796639293432,39.33605820732191,40.185548559296876,39.86824598489329,39.03441821690649,38.0583495660685,38.229915840085596,38.69579561660066,38.73094994109124,39.09779655188322,38.185425016563386,37.342658108100295,37.20657329028472,37.12343038525432,36.68791598500684,36.58311529457569,36.64068671269342,37.20798435108736,37.37468089768663,36.492250389419496,37.19826783472672,37.79704380268231,37.394004533067346,36.81511030672118,36.089018234051764,35.62322288332507,36.2742982506752,35.60769700072706,34.887821109965444,35.41076156869531,36.12422096775845,35.621335913892835,36.14723392250016,35.42967457463965,34.784710322041065,34.740794053301215,34.34413630189374,33.97521137073636,34.872171447612345,34.64353211643174,35.36627600947395,35.33739455230534,34.91309240832925,34.614845926407725,35.27469413494691,34.87917000614107,35.82833849778399,35.36320134392008,35.97646033670753,35.826383283827454,36.311183634679765,35.54249517666176,35.143779477570206,35.32736979518086,34.972664654720575,35.010961095336825,35.64591482235119,34.81605703942478,34.65144717087969,34.45801318902522,34.483551455661654,34.338720742147416,33.437538179568946,33.869714233558625,34.03954984713346,34.05782676208764,34.0358441923745,33.38886346435174,32.82248008577153,32.087224260438234,32.14267121255398,32.14449588721618,31.336882789619267,31.19940490089357,30.741887093987316,30.159976065158844,30.646715591661632,30.80939221289009,30.25238921912387,30.51760424533859,30.03517556609586,30.680584755260497,31.20189896086231,30.83513070968911,31.673323449213058,31.138987089507282,30.46943663060665,31.414800388738513,31.89358036313206,31.18347417982295,30.447739648167044,29.5149341407232,30.258573630359024,29.989715286530554,30.86671841563657,30.31198710668832,30.175474689807743,30.654107009992003,31.556734901852906,31.996564911678433,32.93898846860975,32.876628569792956,32.82119331648573,33.39393493067473,32.850397884845734,32.802634278312325,31.923934125341475,32.192726076580584,31.21614087698981,30.218288241885602,29.53841105243191,29.451368980575353,29.364899654872715,28.582585414405912,27.882640189956874,27.13034263253212,26.996106630656868,26.606889065355062,25.91929689841345,26.209646926727146,25.211923628579825,24.413402107544243,24.569846336729825,25.11518657254055,24.727504157926887,25.22833159705624,24.904790041968226,24.33131484594196,24.97695217654109,25.64811546448618,25.238042432814837,25.851314462721348,25.686408591922373,25.94516515592113,25.961931439116597,25.977985564619303,26.0329071264714,26.204368779901415,26.13203714741394,25.51899562915787,25.65631184913218,25.973785327281803,25.17395832343027,25.551070721354336,26.422032778151333,27.34973328700289,27.655410394538194,28.360690280795097,27.930810143705457,27.61848096596077,27.941964856814593,27.464458441361785,26.791686604265124,26.716595942620188,27.54554565809667,26.88307551899925,26.17570720333606,26.615604666993022,27.386493640951812,27.791361514944583,28.61729246703908,29.326753187458962,30.178351710084826,30.00880875205621,30.577365468256176,30.219091150909662,30.622390313539654,31.050751154776663,31.657097798772156,31.208678825292736,31.789757261052728,32.28408555826172,33.2528388989158,34.154989765025675,33.232360750902444,34.21529144607484,34.459935968741775,34.80420391447842,34.450677395332605,34.905639212112874,34.843491503968835,35.326877208892256,34.969110692385584,34.369199928827584,33.481710775755346,32.53766747750342,32.996927201747894,32.424997774884105,31.778696382883936,31.782215083949268,32.21722421096638,33.027828990947455,33.661330367438495,32.68662585364655,32.43635656358674,33.387762347236276,32.57700799498707,32.200598978903145,31.993838921189308,32.96199540933594,33.8006062428467,34.28736002743244,34.0885231369175,33.14389694714919,34.0635423110798,33.32636319287121,33.48145028622821,34.155520140659064,34.78899681987241,34.8754043597728,35.83291880553588,36.522699100896716,35.69699527369812,35.172223777510226,35.445138262584805,35.16358834924176,35.66615708684549,36.60198998870328,36.73663874203339,37.36052240198478,37.126558480318636,37.276183718349785,36.39251191401854,37.330942454747856,38.1812355988659,37.28778655594215,37.87102059694007,38.481019974220544,38.84044703654945,39.62856525555253,39.93083750130609,40.328419665805995,41.06430116156116,41.745864655822515,42.14025916578248,41.516685015521944,40.72157475957647,40.12918166257441,39.31238160934299,40.14452921971679,40.8846549061127,41.21432766923681,42.10749896103516,41.549313069786876,40.855533035006374,40.23249577591196,40.54259327193722,40.09919053083286,39.15139598026872,39.00957493996248,38.32256029359996,39.16598152089864,39.93211596272886,40.85558004397899,41.1145188594237,40.94487817957997,41.271995150949806,40.401451732963324,40.75643759313971,39.88028569193557,38.89663997385651,38.12747770501301,38.76846626307815,39.29624452255666,39.470966713503,39.06865027593449,38.23023921623826,38.23523667640984,37.284178712870926,37.77335060155019,37.39055414078757,37.44701103074476,36.5045788353309,36.160249275155365,35.421874248888344,35.90893811825663,35.601816332899034,35.48994735442102,35.59706705017015,35.303545854985714,35.14362075738609,35.23487186897546,34.863176400307566,34.719919104129076,35.44011600269005,35.682001524139196,35.62413109000772,35.62544625252485,34.66642438573763,34.37768452242017,34.13250965019688,33.474422933068126,32.54289583908394,32.418593471869826,33.17138378554955,33.27222668984905,34.27107767062262,34.82253385381773,35.59124640934169,35.414680526126176,35.00762888928875,35.360292066819966,34.875090174376965,34.258409414906055,34.48858239687979,33.546342871151865,34.21775537962094,34.54853120353073,35.38597434107214,35.70598949724808,36.6876396141015,35.831164178438485,34.997856229078025,35.1940686237067,34.77399299107492,34.868518996518105,33.952092225663364,34.266029060818255,34.6049557258375,34.37734407093376,34.32352583762258,33.823403077200055,34.60348115954548,35.562766088638455,36.38473515212536,37.203248863108456,37.325738412793726,36.45989859988913,36.65255322959274,36.36397929349914,35.52146560372785,36.4258045530878,36.026142927818,35.07099562184885,34.14235852472484,34.19880757853389,34.263298619072884,33.987155637238175,34.26859696023166,34.155595265328884,34.59848946193233,33.62956239422783,33.13704325305298,33.11264886101708,32.43637127196416,31.83378372248262,32.476666496135294,32.22254788456485,31.70633744681254,31.603857326786965,31.463164205662906,31.263140433933586,30.66015479899943,31.541692367754877,31.590156798250973,31.294867292512208,32.18491149274632,31.37765269074589,32.28420584090054,31.54550226731226,30.752717812545598,31.00282449508086,31.195426063612103,31.691178826149553,31.35508114239201,31.537304413039237,30.757171471603215,30.210993067827076,30.39952992228791,31.23181633418426,31.811680611688644,32.13556418614462,32.98874668683857,32.081354103051126,32.85042568901554,32.11706698918715,31.464602588210255,31.461568584199995,31.452688713558018,31.45989820966497,30.993286282755435,30.364019631873816,29.841191766317934,29.933135719504207,28.966099050361663,28.6448311121203,29.27377999620512,28.282352868001908,27.43979505682364,27.08713213726878,27.704588319174945,28.616788470186293,28.980153915006667,29.487690140027553,29.077313265763223,29.844043377321213,30.022054525557905,30.059232505504042,29.576881346758455,30.154437270015478,29.447286438196898,28.885493506211787,27.91088419687003,27.02381471544504,26.332089808769524,25.424518660642207,25.03573308000341,25.673217648640275,25.460389662068337,25.568788879085332,25.224254483357072,24.475373779889196,24.063635806553066,24.776397951878607,25.13786553684622,24.58317010384053,24.67086658021435,24.406725315377116,23.620952143333852,22.80910741444677,22.994956218171865,22.67329422943294,21.73652824573219,22.26209209766239,22.20365613186732,23.13722831942141,22.391453018411994,22.787110107950866,22.595702284481376,22.69163722032681,22.050373061560094,21.062078129965812,21.91066089179367,21.018542682752013,21.219943241216242,20.228273558430374,21.09662487450987,20.890241148415953,20.58009536890313,20.941490828525275,20.360485109034926,19.88439280539751,19.461848467588425,18.76629897672683,18.21016399608925,18.98139296285808,18.825255723204464,17.982527181506157,17.559741185512394,17.250402755104005,17.815519019495696,17.683466943912208,17.503142854198813,17.29365912033245,16.964220264926553,16.249936183914542,16.124970049597323,16.056220525410026,15.900782485958189,15.772147604264319,14.945801022928208,14.263133095111698,14.963844166137278,15.650172621477395,15.212805355433375,15.481409859843552,15.116379389539361,15.663169670850039,14.918029878288507,14.183814023155719,14.749976235441864,14.132331219967455,13.92580072954297,13.487607999704778,13.72708794195205,14.3509779763408,13.660151348914951,14.559423265978694,15.508082349784672,16.07254383340478,16.094550892710686,15.670895845163614,15.626654280349612,15.68647167365998,16.58434836799279,17.468853373080492,16.74911334645003,16.37706235051155,16.72012527566403,16.913537934422493,16.828708017244935,17.189806940499693,16.614925637841225,16.648107501212507,16.080618610139936,16.74776513921097,16.399019116535783,16.423680967651308,15.539811335504055,14.904939463362098,15.653968304395676,15.593390713911504,15.40583002846688,15.784154707565904,15.345635964069515,15.433832257054746,14.936016971245408,14.596585656981915,15.449594442732632,15.251290782820433,15.817379603162408,15.057455475442111,15.299247437622398,16.180681687779725,16.253422138281167,16.697968227788806,16.960329570341855,15.999404076021165,15.733166355174035,16.52370336977765,17.276013143360615,17.42636998463422,18.035864629317075,18.04679259378463,17.719378414563835,17.223033129237592,18.031226784922183,17.997270045336336,17.463517071679235,17.37416439782828,17.363910197280347,17.941773720551282,17.08546997839585,18.07618339220062,17.774626246653497,16.89010311011225,17.849499266128987,17.624453433789313,18.22183466888964,18.58064300660044,19.53441332746297,18.73446314362809,18.120970112737268,17.194504311308265,16.564466896932572,17.078241067938507,16.159523434005678,16.85317169642076,17.20913822343573,17.341063807718456,16.40604669880122,16.997537530958652,17.669243299402297,17.56492705643177,17.88001427333802,16.912241531535983,16.95798619138077,17.52637642621994,18.389569639693946,19.10324616683647,19.241127132438123,19.84804158611223,19.50719367247075,19.01699573919177,18.767164533492178,19.097293676342815,18.70123007008806,17.84561919886619,18.69815683970228,18.268529653083533,17.62523920694366,18.058004648424685,17.767581176478416,18.407195756677538,18.015516504179686,18.253423639573157,18.51489569619298,18.805964064784348,18.29219737323001,19.28437565593049,19.019955188967288,19.94971822667867,19.976146459579468,20.26992947002873,19.828441643621773,20.000707625877112,19.269153019879013,19.054623074363917,18.13313465146348,17.143569317646325,17.737047293689102,17.993472087662667,17.804211900103837,16.85079465387389,17.476339315995574,17.946598941460252,17.760291763581336,17.211215030401945,16.468961945269257,16.928972259629518,17.008801023010164,17.821589508093894,18.2182088047266,18.73523073317483,17.791413915343583,18.571771658025682,18.10396713204682,18.420212127733976,19.259798758663237,18.713072320446372,18.64804779086262,18.84724902641028,18.134731528814882,18.718792656902224,19.407999511808157,18.91784716490656,19.428413932211697,20.012046978343278,19.585376265924424,19.565715636126697,19.304648241959512,19.175572122447193,19.388207568321377,19.47920890012756,19.061621117405593,18.59838125295937,17.73938225256279,18.550931053236127,17.97680734237656,17.090901502408087,17.819853235036135,17.888738562352955,18.657588630914688,17.720673515927047,18.15901005268097,17.586024404969066,17.210855706594884,16.841466337442398,16.693655752576888,17.37972988327965,17.03457232285291,16.558965771459043,16.329568991903216,16.086093115154654,16.056873462628573,15.590808292850852,16.339873189106584,16.089505122043192,16.693560027051717,17.208365357946604,16.579191465396434,17.496733566746116,18.324298299383372,17.97985238954425,18.22131183836609,17.461440099403262,17.44279954675585,16.825151194352657,16.745888174511492,15.954622911289334,16.397374028339982,15.887778983451426,16.43249195953831,17.319820010568947,16.323492027353495,15.980363210197538,16.938790194224566,17.023445073980838,17.419409899506718,18.381499393843114,18.777431023307145,19.51824333006516,18.955529385711998,17.989051504060626,17.021028412040323,16.919714184477925,15.93184057623148,15.559874864295125,16.475600593723357,16.23594032647088,16.52123893238604,16.312469594180584,16.384934653993696,16.249800058081746,15.727017601486295,16.226366173941642,16.893202733714134,17.21162358764559,16.890364645514637,16.464137284085155,15.891755239572376,15.692415510304272,15.691272201947868,16.607853969559073,17.33705072151497,16.44853287888691,15.793369015213102,15.463518626056612,14.7236687252298,14.578157762996852,15.367578962352127,14.560020709875971,13.984406225848943,14.812915314920247,14.061252982355654,13.999354247935116,14.538168835453689,14.359236182179302,13.643758807796985,12.68844934180379,13.466175840701908,14.426029194612056,13.862010013777763,14.831141556613147,15.546169246546924,15.939625624101609,15.893978881184012,15.637838042341173,15.926028462126851,15.769135434180498,14.776404133532196,14.163621008396149,13.984249487053603,13.938906526193023,13.120030377525836,13.43558176746592,13.788342476822436,12.900671625044197,11.998539921827614,12.574612861964852,13.411461617331952,13.807855419348925,13.103141670580953,13.461595404427499,12.497412461787462,11.678925198502839,11.59245935222134,11.986320910044014,12.065879797562957,11.95021748682484,12.228600227274,12.594438078813255,11.942789867520332,12.506464331876487,13.0930717587471,13.862620550673455,14.35325817251578,14.280388789717108,14.274066454265267,14.09799992153421,14.48825050285086,14.853887325152755,14.76371971424669,14.389772171154618,15.279950086027384,15.359584121964872,15.913985323160887,15.106436205562204,15.364398861769587,14.881107709370553,14.315741504076868,14.151427382137626,13.94274856010452,14.668692285194993,13.84815137879923,13.073693407233804,13.821114759426564,13.602375028189272,13.945694155059755,14.209974269848317,15.099948451854289,14.410930255893618,15.348592701368034,15.437985341530293,15.109008196275681,14.32759528933093,14.054386262781918,14.24698959570378,13.412295437417924,13.906803699210286,14.216325151268393,14.920338725671172,14.710563231725246,15.605127188377082,15.922121189069003,15.51433094078675,16.40098610520363,16.100610979367048,16.001059486996382,15.956824173685163,15.609433045145124,15.41231219144538,16.060225890483707,15.798345491755754,16.417072305455804,15.676398935262114,15.730696613900363,15.253043685574085,14.485743462108076,13.996529881842434,13.398856025189161,14.134626327082515,14.687755754683167,14.551896987017244,15.046718531753868,14.52330182120204,13.88255772087723,14.638921279925853,13.655191274359822,13.22638961719349,12.943878621794283,13.305330564733595,12.526815620716661,12.022592719178647,11.923317083157599,11.358554768841714,11.495791093911976,10.90179497981444,10.089295343030244,9.666581606958061,10.260381334461272,9.709375583566725,10.34902044152841,10.463128519244492,10.212253286968917,9.368483013939112,8.771940687671304,8.281135027296841,7.934749023523182,8.188591259997338,7.801781953778118,8.382217234000564,8.395755331031978,7.892861186992377,8.806475710123777,8.108212699182332,7.946339961141348,7.160237032454461,7.17671359796077,7.386035742238164,6.55029188003391,6.214975081384182,6.249672818463296,5.48196779191494,4.647615647409111,4.739283410832286,5.466736571397632,5.4078781409189105,5.527001784648746,5.816540109459311,6.777860627509654,7.536828205455095,7.965068356599659,7.380893965251744,6.837938054464757,7.570534146390855,7.460660495329648,6.897912793792784,6.263498380314559,6.942184668499976,6.693489111959934,6.6696226904168725,6.363504367414862,5.774753597099334,5.426614276133478,4.6366099221631885,4.945187594741583,4.639271393418312,4.014842758420855,3.9718527416698635,3.598984718788415,4.306410616263747,4.868166581261903,4.890839564613998,5.536839217413217,6.352347743231803,6.958877800963819,6.3886951161548495,7.314338228665292,7.851315334904939,8.24433940043673,7.718143782578409,7.902370016090572,8.141433380544186,8.052510457579046,9.03464215900749,9.50355680519715,9.458448998630047,9.850581208709627,9.919481099117547,10.448164708912373,9.91036409046501,10.0478180446662,10.873429310508072,10.610292497556657,10.96381601691246,11.384624300990254,12.226241224911064,12.24751803977415,12.446856452617794,13.35988574149087,13.809095883276314,14.604709664359689,13.899981401395053,14.351779625285417,13.721189146395773,12.984960683621466,12.163235464598984,11.568152200896293,11.938721320126206,12.462884584441781,11.518428906332701,11.857049279846251,11.800804170314223,12.291166419629008,12.529828311409801,13.433442435227334,13.44459875440225,13.183012031950057,12.310371993575245,13.237909683492035,13.339836801867932,12.879366152919829,11.905925461091101,12.428577781189233,12.059751892462373,11.666142724920064,11.665142882615328,12.04619106138125,11.405224900692701,11.275633151177317,11.745733244344592,11.795516445767134,11.846611781511456,12.322880894411355,12.255451568868011,11.91747763613239,12.666879961267114,13.48795718466863,14.34131111111492,13.981600249186158,14.41394225275144,14.626769864466041,14.866524317767471,14.746525321621448,15.59463509451598,15.714943475555629,16.144762702286243,15.182570684701204,15.871782563626766,15.93980505131185,15.526263643521816,15.04814772028476,14.051157304551452,13.222440626472235,13.48892547795549,14.361253008246422,14.975844784174114,14.745624016504735,14.398156567011029,13.932599779218435,14.533762163482606,14.000514360144734,13.67179246339947,14.13729822030291,13.71088561648503,13.349736351985484,13.590302945114672,14.199849038384855,14.069722270127386,13.462615798227489,14.237810077145696,14.552636215928942,14.773864769842476,15.346110835671425,15.815636756829917,14.867221929132938,15.38412805693224,15.804916550405324,16.09110298519954,15.778686567209661,15.319847844075412,14.791094512213022,15.025916418991983,15.158820093609393,15.640549408271909,14.646954590454698,15.27624972211197,15.393661371897906,16.285316545981914,16.478137687779963,17.164096243213862,16.59917414933443,16.613604832906276,16.98252839082852,17.56053603766486,18.1005201889202,17.87848399253562,17.427882232237607,16.880168958567083,16.06234332313761,16.513863247819245,16.228373018093407,15.408449317794293,15.524263345170766,15.446509171277285,15.529933211859316,15.102941254153848,15.23422989109531,14.783841733820736,15.234012104570866,16.009113675449044,15.665331433527172,15.180151081643999,16.066327315289527,15.979569751303643,16.056229723617435,15.88816575333476,14.935957422479987,15.725635876879096,15.548352044541389,15.511359201744199,14.823319339659065,15.075829492881894,15.988030380569398,16.81195701425895,15.87307263398543,15.687625624239445,15.83404119964689,15.246450366452336,15.40638491557911,14.600477024447173,15.581719956360757,16.159547593910247,15.457075923215598,15.850698232185096,15.557513881474733,15.646438462194055,16.4567543794401,16.977524588815868,16.638978980015963,17.445307408459485,17.694366466253996,18.14978900179267,17.69225734518841,17.708867185283452,18.214361959137022,17.299732025247067,16.920162410009652,16.97209269925952,17.201773478183895,17.04669645940885,16.21680675446987,15.822619926650077,15.501596867106855,15.115522671490908,14.939735788851976,14.045781700406224,14.567236864939332,13.787105738185346,14.528502934146672,13.683840558864176,14.074059263337404,13.639196395408362,13.41308840084821,12.562019186560065,11.672466304618865,10.982879605609924,11.487965039443225,11.587679140735418,12.29896864714101,11.54996985802427,10.904587530065328,10.72454994963482,10.012253606226295,9.52423706324771,9.803910578135401,10.414828634820879,10.878643246367574,11.649327801540494,12.167964685708284,11.365715805441141,10.658745988737792,10.400030163582414,10.107306670863181,9.732932433951646,9.305821892805398,8.94248651061207,9.468599861022085,9.0941869658418,8.648973382078111,8.265487163793296,7.9846910666674376,8.876227319706231,9.50808413606137,8.676358570344746,9.614914993289858,9.702934315428138,9.160754737909883,9.11153931869194,8.995490071363747,8.850264392327517,8.492993139196187,8.536808902397752,8.673003610223532,7.726060576271266,8.163466308731586,8.082221186719835,8.809876249171793,8.871003762353212,8.811216745525599,8.910724283196032,9.162448156625032,9.143284417688847,9.998688527848572,9.128730573225766,8.590256402269006,8.666582446545362,8.674368232954293,8.566671922802925,8.870920887216926,9.2179623125121,9.38695035642013,8.745650755707175,8.261816333048046,7.404968464747071,7.248610379174352,7.996830193325877,8.102233319543302,7.9803903247229755,7.838586555793881,6.933931239880621,7.339902786538005,8.163601784035563,8.440757371019572,9.269522320944816,10.088199914433062,10.926232053898275,11.272473458666354,10.950319319497794,11.785857359413058,11.708594364579767,11.013973257504404,11.525593240745366,11.909433144610375,12.332202564924955,12.482263087294996,11.69431617949158,11.692096738144755,12.09240057040006,11.644095784518868,12.143664868082851,12.101964006200433,12.430879062507302,11.797647299710661,11.15451554208994,10.586078181862831,11.399660730268806,11.160553113557398,11.0610750769265,10.466713699977845,10.746491198893636,10.979234438855201,10.224552363157272,9.886925735510886,10.287530875299126,10.247730121016502,9.688438802957535,10.267316120211035,9.558764622081071,9.509009296540171,9.182595248799771,10.031032029539347,9.908504762686789,9.994396233465523,9.497651571873575,10.246703773271292,10.987208925653249,10.815518629271537,10.445251867175102,11.258768284227699,11.727979343850166,12.600097478367388,13.020884653553367,13.833287179935724,13.597473209258169,14.395665428135544,14.141732443124056,14.981610811315477,14.212683610152453,13.67378209112212,12.691126222722232,13.270617097616196,13.127967935986817,13.761124440468848,14.56526859709993,14.378737352322787,14.311236459761858,14.333488767500967,13.436694601550698,13.477021249011159,13.248151279520243,12.611177606973797,12.383874183986336,11.53705216338858,10.812541197054088,10.020473083946854,10.602409310173243,9.954674390610307,10.40105367032811,10.779270693194121,10.42463913699612,11.113355715759099,10.97915112040937,10.30844575772062,10.888905324041843,10.969096777494997,10.291950919199735,9.3340527494438,9.045326595194638,9.586383066140115,9.37613427080214,9.433112560771406,10.250115214381367,11.178510806057602,11.194627742748708,10.340562813915312,10.26407874096185,11.041857700329274,10.25334985787049,10.503116271458566,10.249440725427121,9.992308215703815,9.97137680882588,9.042537013534456,8.770846696104854,9.765730131417513,9.670251052360982,8.98969291569665,9.621993040200323,9.357778252568096,9.435857463628054,10.387230246327817,10.515827416442335,11.222647612448782,11.185393870808184,11.498137834016234,11.290506214369088,11.599321484565735,11.119040905032307,10.348617936018854,10.540535270702094,11.080461596138775,10.412446437869221,10.790928151458502,10.00798264797777,9.872592336963862,10.598485973663628,9.779244870413095,10.410988782066852,9.817197291646153,9.951392504852265,10.12164562381804,10.068037040065974,9.967552115675062,9.267016024328768,9.175985776819289,9.953983121085912,9.57391518400982,9.04640002315864,9.215679534710944,9.88680235715583,9.496022791136056,9.79614556953311,9.562358634080738,9.97521292930469,10.410713125951588,11.315810936037451,11.091232482343912,11.461207781452686,12.210181146394461,11.792617707513273,11.167639961931854,11.81737031089142,11.835446415934712,11.82935600169003,11.820671702735126,12.54955665487796,12.722609693650156,13.606414687819779,13.624472836963832,13.256033575627953,13.705711196642369,14.564480458386242,15.107854846864939,14.350249888841063,15.020811167545617,14.85534156858921,15.222779595293105,14.352222310844809,13.943805485032499,13.90163486590609,14.580424865242094,14.563403928186744,14.234953282400966,14.213533310219646,13.88176137721166,13.827546928543597,13.06948919268325,13.544046149589121,14.354547276161611,15.070513213053346,15.12317237816751,16.073535499162972,16.06069170171395,16.784598126076162,17.4324418772012,17.940809223800898,17.2179362680763,18.04921977315098,18.243373163044453,17.635823115706444,17.196261967997998,17.59784904262051,17.440781365614384,17.454445878509432,17.89242473896593,18.253439514897764,17.816694634966552,18.48801936302334,17.748182502109557,17.23362263571471,18.130546696018428,18.541404109448195,18.15849509788677,17.415985009167343,18.190281667746603,17.603845562785864,17.21537746861577,16.473290235269815,16.661121470853686,16.537469695322216,17.218254845123738,16.714151203166693,16.743567436002195,16.476464823354036,16.86021186551079,17.192514941561967,16.683839933015406,16.38674207404256,16.471596631687135,15.979698397684842,15.468785238917917,15.90762632060796,15.280190032441169,15.29763309052214,14.78948388947174,14.728492802940309,15.627449193969369,14.810621039010584,15.232830261811614,14.805788279976696,15.528983228839934,15.1693527684547,14.297961052972823,15.062920251861215,15.095459798816592,14.792627090588212,14.994908745866269,15.636887521017343,16.529903578106314,16.13255518814549,15.905263608787209,15.136011223774403,15.840446868911386,15.463566447608173,14.561938268598169,13.598413289990276,13.906154238153249,14.371938555501401,14.73822946799919,13.808403024915606,13.427972175180912,13.340338475070894,13.097910496406257,13.730477998498827,13.400051373057067,13.923599728383124,14.732172346208245,14.442172669339925,13.572549201082438,14.24806507024914,15.025528605096042,14.5594876925461,14.668869756162167,14.527113761287183,15.39759026048705,14.883293060585856,15.807753727771342,16.07130041765049,15.182959946803749,15.844462549313903,15.929939014837146,14.95465334597975,14.183991555124521,14.817676447797567,15.300795312505215,14.535341579001397,14.020141466520727,13.82387069053948,12.977068668231368,12.838300718925893,13.395414718892425,13.398826914839447,12.8639133926481,12.468860407359898,12.091940775513649,12.66402857331559,12.440768642816693,12.12914523249492,12.930545712355524,13.517427366226912,12.911399484146386,13.589580154512078,14.54182120738551,13.901069052517414,13.13011847063899,12.86711300862953,12.61838201014325,12.302563289180398,13.21153559582308,13.194650545716286,13.423831180669367,14.142382620833814,14.4605084634386,15.010504631791264,15.119809141382575,14.659544857218862,14.492333489935845,14.707099538296461,14.97282029222697,15.5119814472273,14.796128261834383,15.288068468682468,15.657490998506546,16.346240398474038,15.824010060634464,14.940229415427893,15.027577759698033,14.339136252645403,13.776446455158293,13.599876253399998,13.7823576470837,14.433668657205999,15.264455918222666,14.396757130976766,13.445044239982963,13.057273025158793,13.671437710523605,12.786798261571676,12.376481531187892,12.134593521710485,11.30244307173416,11.195107458159328,10.567009207326919,10.169131784234196,9.452434529084712,8.903004289139062,8.451895158272237,8.834838153794408,8.829041566234082,9.260257605463266,9.14807840809226,8.440414857119322,7.517452489584684,6.8591895047575235,6.033217963762581,6.529548509512097,6.993574601598084,6.9331222884356976,5.971299442928284,5.564526561647654,5.058716893661767,5.216927399393171,5.048088716343045,4.368845450691879,3.5143987932242453,2.756927358917892,1.8544983244501054,2.2876094970852137,2.0806604051031172,1.3602980212308466,1.9369515399448574,2.7927870955318213,2.135582769755274,2.8909136303700507,2.602817776147276,1.8512395336292684,2.332250213716179,2.6541665620170534,3.555127331521362,3.203874562866986,3.74120310600847,3.707912136334926,4.11582116317004,4.280491524375975,3.408779115881771,3.4212756054475904,3.2678134869784117,3.636666787788272,3.229235330596566,2.5555122080259025,1.6050198394805193,0.611373545601964,0.727006196975708,1.187721393071115,1.9650022387504578,1.3414476457983255,0.6688947845250368,0.22078360756859183,1.147413314320147,0.639236525632441,0.11689753038808703,1.0826873052865267,0.29183857794851065,-0.4597987695597112,0.3462800718843937,0.6207298398949206,-0.29648064402863383,-0.8087887992151082,-0.47254419745877385,-0.11240360513329506,-0.5847760415636003,-0.706900903955102,-0.767765692435205,-0.6395196965895593,-1.117254729848355,-1.0611225068569183,-1.5473217004910111,-1.4187510651536286,-1.3881822051480412,-0.4379740050062537,0.42457606503739953,1.2144148251973093,2.1877961298450828,2.9839524193666875,2.0059516690671444,1.8639787007123232,2.0731163071468472,2.902495347894728,3.476048259064555,3.913969773799181,4.726232980377972,5.504480903502554,5.697520390152931,5.813337727449834,6.591029557865113,6.089023344218731,5.6760617680847645,5.213120171800256,4.865785648114979,4.010444123763591,4.845199558883905,5.304683268535882,5.918235118500888,6.381314164958894,5.957316772080958,5.771159266587347,5.830947845708579,5.157711185049266,4.991167721804231,5.116709932684898,4.211322603747249,4.57515253406018,4.279200583696365,5.2280448651872575,4.883277982007712,5.457529541570693,6.406387156341225,7.098347370047122,8.08442337391898,8.970410447567701,9.695641956292093,9.16770816128701,9.477100968826562,9.289051842410117,10.041513303294778,10.867792598437518,11.456524568144232,11.755064907483757,12.029777807183564,12.04930145246908,11.404393593780696,11.764625811949372,12.322560279630125,12.190385829657316,11.819047312252223,11.071030226536095,10.955006847158074,10.227094365283847,9.353129405528307,9.448670384008437,8.543645817786455,8.25899844430387,7.354030356742442,7.142737605143338,8.06142023159191,7.5784983318299055,7.995689341798425,8.367673579603434,8.680545937269926,8.748715471476316,9.061375190503895,9.024003958329558,9.492170528043061,9.746364997699857,9.763100504875183,10.681911979801953,9.736115873325616,10.063763951417059,9.990887581836432,9.75672620581463,9.951720749493688,10.88054392626509,11.33331452915445,10.956328686326742,10.068963509052992,9.091686185915023,8.867537314537913,8.641077841166407,8.565957572776824,8.473492614924908,7.7874625930562615,7.055410330649465,6.155265077017248,5.36717699887231,5.816850152797997,5.000749463681132,4.51067895302549,5.416644931770861,5.900719635654241,5.2350151697173715,5.546119060367346,4.701304942369461,4.7687924089841545,5.152062921784818,5.280631186906248,4.933618999551982,4.693044579587877,3.7803068761713803,4.7590792290866375,5.331201029475778,5.854429805185646,5.9873701757751405,6.080055410973728,5.681103779003024,5.698952657170594,5.258745577186346,5.445098859723657,5.86008509201929,4.876521306112409,4.959186111111194,4.842762312386185,4.936106661334634,5.351833271794021,5.747778421733528,6.219721862580627,6.7319802404381335,7.143285766243935,6.9011648702435195,6.482705744449049,6.5046327537857,5.888242236338556,5.299063819926232,4.722535781096667,4.89020960777998,5.3243634179234505,5.309877953957766,4.404489106032997,4.075914043001831,4.6103689656592906,4.127863813657314,3.24452220229432,3.8023713883012533,3.2328274720348418,2.7237134873867035,2.286995144095272,1.3223214293830097,0.6447739535942674,-0.1673288489691913,-0.05436695506796241,-0.7284672418609262,-0.7247677650302649,-0.20913635846227407,0.7245792048051953,1.4214943214319646,2.228435756172985,1.4166402486152947,1.4233714155852795,1.7512130406685174,2.3750871154479682,3.350031833630055,2.9228461268357933,3.4280513473786414,2.9659306593239307,2.1718325936235487,2.670780580956489,2.3578512221574783,1.6726256385445595,1.8396319476887584,2.3054568539373577,1.5202963994815946,1.4341468065977097,2.1720976238138974,2.882539183832705,1.8879925073124468,1.913486828096211,2.3910417333245277,3.3340236535295844,2.631866442039609,1.719652572646737,1.1665172544308007,1.1714622592553496,0.5181759754195809,1.4899220238439739,0.7165887989103794,0.7886647959239781,1.3149886466562748,0.7227746625430882,1.1713646994903684,1.630993559025228,1.5114221456460655,0.7764900117181242,1.3144931187853217,0.9214355926960707,1.1217985330149531,1.6600227155722678,1.1724348086863756,0.37177928956225514,1.0549608557485044,1.5969802071340382,2.4195054271258414,1.5271433787420392,1.2586963009089231,1.8023133291862905,0.9794114823453128,0.403636721894145,0.43248924147337675,0.36812898935750127,0.43467881344258785,0.2671513119712472,-0.4609809056855738,-1.3051971197128296,-1.2168945190496743,-1.6357314134947956,-2.1476904577575624,-2.6398872481659055,-2.165560729801655,-2.845491142012179,-2.1701537701301277,-2.647222442086786,-3.5952550848014653,-2.9856464536860585,-2.4303008606657386,-1.8162140054628253,-2.765489942394197,-3.045382422860712,-3.414017071481794,-2.589858014136553,-1.872351797297597,-2.2977603911422193,-2.6813512057997286,-3.2079057516530156,-3.7702462510205805,-3.790144744794816,-2.950390050187707,-2.4592930441722274,-2.701228166464716,-1.792601085267961,-1.0208547729998827,-0.7878566682338715,-0.7561128349043429,-1.6413225368596613,-0.7548585194163024,-1.722835371736437,-1.9040075964294374,-1.478337874636054,-1.898964683059603,-2.3425614978186786,-2.882455392740667,-2.9582887925207615,-2.692931245546788,-2.3329677334986627,-2.799438184592873,-2.061887144111097,-1.5763827911578119,-1.1692764475010335,-0.5974132264964283,-1.1064352979883552,-0.6699888953007758,-0.03406637441366911,-0.8379993927665055,-1.6885433150455356,-1.5404715025797486,-1.058680315501988,-1.7896431218832731,-1.220038558356464,-0.6927312016487122,-0.9035431682132185,-0.509791748598218,-0.6485123503953218,-1.6381839262321591,-1.0408878712914884,-1.6975216590799391,-2.180040300358087,-2.427180729340762,-2.130809780675918,-2.024896111804992,-2.3997667864896357,-2.4935168442316353,-1.7527827355079353,-1.863066563848406,-2.625896625686437,-3.448682062793523,-3.0680134864524007,-2.821531974244863,-1.8220131327398121,-2.503742325119674,-2.1813910421915352,-1.5548405493609607,-1.6383095593191683,-1.1316648148931563,-1.055032060481608,-0.7167486646212637,-0.1693235170096159,-1.108767899684608,-1.7542030313052237,-1.8027599696069956,-2.606171615421772,-3.264677160885185,-3.6728385873138905,-3.703923022840172,-3.3393635442480445,-3.7273744284175336,-3.789043170399964,-4.71544622303918,-4.797160188201815,-5.549553472548723,-5.130763025023043,-4.57385812420398,-5.205411234870553,-5.486716571263969,-4.6354407840408385,-4.972934117075056,-5.48877472570166,-5.897497807163745,-5.1829641428776085,-4.68909274879843,-5.619582702871412,-5.099747017025948,-5.816659939009696,-5.833205703645945,-6.4220098638907075,-5.939230775460601,-5.974167914595455,-6.095126629341394,-5.237587045412511,-5.34685777220875,-6.293738116975874,-6.791941398754716,-7.2101357858628035,-6.946319727692753,-7.077083299867809,-7.770134954713285,-7.906686701346189,-7.405455513857305,-8.111537280958146,-7.951229016762227,-7.75496873119846,-7.484164971858263,-6.754439373500645,-6.776924790348858,-6.98898647306487,-6.844728396739811,-7.70205042231828,-6.91215147357434,-6.200723114889115,-5.551243017427623,-5.127252245787531,-4.6440910822711885,-4.819430652074516,-5.396453109569848,-5.319779489655048,-5.827161186840385,-5.7425611699,-5.925335983745754,-5.748386990278959,-6.553334596101195,-7.249959858134389,-8.147072853520513,-8.045034426264465,-7.051915515214205,-6.782389829400927,-6.10334394313395,-5.401657956186682,-5.655145864933729,-4.813397651538253,-5.677056437823921,-5.085973073262721,-4.196286393795162,-4.629741165786982,-4.691203356254846,-5.060746566392481,-4.7193922945298254,-3.978086171206087,-3.554241059347987,-3.105344458948821,-3.8949529146775603,-4.887409298215061,-4.544223008677363,-4.162283127196133,-3.4662641915492713,-4.236943499185145,-5.001399356406182,-4.349346128292382,-4.775172448717058,-5.773877543862909,-5.8065198310650885,-6.496148599311709,-5.858297702856362,-5.814016847405583,-6.142017077188939,-6.348876777105033,-6.639246427919716,-5.712272800505161,-6.009619091171771,-5.980718036647886,-5.033868713770062,-5.318608571309596,-5.739560615736991,-5.524004625156522,-6.122196613345295,-5.774759515188634,-6.682130111847073,-6.089847231283784,-5.1834701844491065,-5.622222236823291,-6.023001548834145,-6.785561892669648,-7.198224025778472,-6.551066823769361,-5.994101950433105,-6.129661339800805,-6.048404343891889,-6.894336780998856,-7.445200922433287,-7.9268197156488895,-7.92019266821444,-7.303638903424144,-8.189114964567125,-9.027156520169228,-9.12079393537715,-8.13140749791637,-8.785032318904996,-7.88305835146457,-7.510175667703152,-6.678577822167426,-5.844186770729721,-6.661171722225845,-5.705473029986024,-6.456428935285658,-6.207012723200023,-6.973336034920067,-6.858025188557804,-7.2063591144979,-6.789418582804501,-7.408880285453051,-7.434750338550657,-7.058460338041186,-7.704505024012178,-7.486792927142233,-8.47286264412105,-7.826781810261309,-7.450865984894335,-8.36147940531373,-7.491621657740325,-8.01400624262169,-7.193221399560571,-7.849119374062866,-7.46765979193151,-8.200671625789255,-7.353749666363001,-7.312835910357535,-7.022787798196077,-7.1165806907229125,-7.0258057792671025,-6.179084305185825,-6.437297358643264,-7.3089363146573305,-8.308018731418997,-8.997644430026412,-9.014886118937284,-9.899108573328704,-10.577729826793075,-10.906616825144738,-11.74708096543327,-12.161304402165115,-11.577856983523816,-12.372419058345258,-11.580243518576026,-10.780702355783433,-11.440377062186599,-11.415542147122324,-10.833944155368954,-10.772003937512636,-9.848147671669722,-9.135784773621708,-9.009811323136091,-8.171040498651564,-7.474438224453479,-7.0755355432629585,-6.926712634507567,-7.663217115215957,-8.04166565882042,-8.588741911575198,-9.0280407438986,-8.581820474471897,-8.607123146764934,-8.132126267068088,-8.898903247900307,-8.105427387170494,-8.59503808664158,-7.980647249612957,-8.946283975150436,-8.853642866946757,-9.524668600410223,-9.835275942925364,-10.556502353865653,-11.2832818957977,-11.694045160897076,-12.049065460450947,-12.242205576971173,-11.314997000154108,-11.386590349022299,-12.327389768324792,-11.805765783879906,-11.916527057997882,-12.76202091621235,-11.80099020479247,-11.9213449168019,-11.24855507677421,-12.083558682817966,-12.686165167950094,-13.304097110405564,-13.042256754357368,-12.16208483884111,-11.748666260391474,-12.294529302977026,-11.67434755526483,-12.611536885611713,-12.918094501364976,-13.366578728426248,-13.892212160862982,-12.993212190456688,-13.66991768637672,-13.256447380874306,-12.570793225895613,-12.599981946405023,-11.870965670328587,-11.448930591810495,-11.178839355241507,-11.905044232495129,-11.18095712410286,-12.11754666408524,-12.91616345057264,-12.052487983833998,-12.597567241173238,-11.863935083150864,-12.066585718654096,-11.697764060925692,-10.970158083364367,-11.468043971806765,-11.791087097488344,-12.4275010721758,-12.86739747133106,-12.122100831475109,-12.025303709786385,-12.341153411194682,-13.064365820493549,-13.63320631859824,-12.715389696881175,-11.78648130968213,-11.705118393991143,-11.154806128237396,-11.292095313314348,-10.54545702598989,-11.375745728146285,-12.117733009625226,-12.87059193663299,-11.951323295943439,-12.194311841391027,-12.624643631279469,-13.404566873330623,-12.932199600618333,-13.071822150610387,-13.066461350768805,-12.281733831390738,-12.933948617894202,-12.71171671198681,-12.759665075689554,-13.374015746172518,-13.399761193897575,-14.098752296064049,-13.357820465695113,-13.278574713040143,-12.454691835679114,-12.00232913158834,-11.465504692401737,-11.310105812735856,-12.02112967800349,-11.736680387984961,-11.106419103220105,-11.063823027070612,-11.26088157761842,-12.02453825622797,-12.549112551379949,-11.96016206080094,-12.58258064929396,-11.618519073817879,-11.659195677377284,-11.392061241902411,-11.139314148575068,-11.145654190331697,-11.208071069326252,-10.465689077042043,-11.076373583171517,-10.538944988977164,-9.827517095487565,-10.643372341059148,-11.10200602374971,-10.241101047489792,-9.496504998765886,-10.180039676837623,-11.019652070011944,-11.668148500844836,-11.025953116826713,-10.903928059153259,-11.310250857379287,-10.924457754939795,-11.448879391886294,-11.662409579847008,-10.983416260685772,-11.45621072826907,-11.287203305400908,-10.509151028003544,-10.85916204052046,-10.162102053873241,-11.012084290385246,-10.837903141509742,-11.265335186384618,-11.336532820016146,-11.946488816291094,-12.660087792668492,-12.46759594231844,-12.648745701182634,-13.554548441898078,-13.816270295530558,-13.547019091434777,-13.881146613974124,-14.010305855888873,-14.225736248772591,-13.873408490791917,-13.453291039448231,-12.775166540872306,-12.793996156658977,-12.859548807144165,-13.585215657949448,-13.551058502402157,-13.708693442400545,-13.26420473959297,-12.413508507888764,-11.508456612471491,-10.990858954377472,-11.298249372281134,-12.274549204856157,-11.667524271644652,-12.40754939056933,-12.84639751398936,-12.41268887417391,-13.236509442795068,-13.925387997180223,-14.815551391337067,-14.479195956140757,-14.02005127351731,-13.166733752470464,-12.226072871126235,-12.625336206052452,-11.648791632149369,-10.784586089663208,-11.219611371401697,-11.096188134979457,-11.151291989255697,-11.550622692331672,-12.291805340908468,-12.862522887066007,-12.253433370962739,-11.634476977866143,-11.125076173339039,-11.518030307721347,-12.465608895290643,-11.631863844580948,-12.46267292369157,-12.147202353458852,-12.961915326304734,-13.083668570499867,-13.087724957615137,-12.247804559767246,-11.453231097664684,-12.325681666843593,-13.178228090982884,-12.25528668705374,-12.416110311169177,-11.616990367881954,-11.262605990283191,-10.365992999169976,-10.54004665883258,-11.243302019778639,-11.50631668837741,-10.557682886719704,-10.938109542243183,-11.273550469893962,-10.628541381563991,-10.650289899203926,-10.09643314126879,-9.348589551169425,-10.01945028360933,-9.15894800843671,-9.397723750211298,-9.321161756757647,-10.239208684768528,-10.479603032115847,-11.120396553073078,-10.253372132312506,-10.017246798612177,-10.23199187219143,-11.163353171665221,-11.80867040110752,-11.700240390375257,-12.408877921756357,-12.131839857902378,-11.771798252128065,-10.832074515987188,-10.585976579226553,-10.349675222765654,-9.772162563167512,-9.78183175669983,-8.892065432853997,-8.972246494609863,-8.56536290794611,-8.646578401327133,-8.306313564069569,-7.489653497934341,-7.059255157131702,-6.775622875895351,-6.607079189270735,-5.75842279009521,-6.634447916876525,-7.506788106635213,-7.0533072534017265,-6.234789191745222,-5.319068648852408,-5.073762563057244,-5.048226363491267,-5.6507013770751655,-5.115905459038913,-4.9087539706379175,-4.562716547399759,-4.193793433252722,-4.81760478252545,-5.194640590809286,-5.721814424265176,-6.000663466285914,-6.533382366411388,-7.458311704918742,-8.207228255458176,-8.508694447111338,-7.863296396564692,-7.337214131373912,-8.103093820158392,-8.51049630716443,-8.2396274600178,-7.484363574068993,-6.898929320741445,-6.181069980375469,-6.748230871744454,-7.447376701049507,-7.756246328353882,-8.642455744091421,-8.63944288296625,-9.395400015171617,-10.038467765785754,-10.167030854616314,-9.31614033645019,-8.797490447293967,-8.859206986613572,-8.74534258665517,-7.771118126343936,-7.4073420111089945,-6.548259865492582,-6.569447627291083,-7.464477668050677,-8.142849921714514,-8.116203794255853,-8.299511769320816,-7.963532675523311,-8.003613078966737,-8.913098773453385,-9.640389071311802,-9.120416328776628,-9.744662535842508,-9.226812660694122,-8.262591648846865,-8.456896396819502,-8.096304168459028,-7.474106526002288,-7.7212935774587095,-6.871539662592113,-5.967111865058541,-5.750319389626384,-5.348295272793621,-5.564096156973392,-5.642610442824662,-6.607537550851703,-7.403422062750906,-8.167000766843557,-8.356979505624622,-8.996094826143235,-8.809202005155385,-8.640961171593517,-8.298293454106897,-8.29649231955409,-8.444887757766992,-8.984722240827978,-9.735652753151953,-8.959479289129376,-9.032683536875993,-9.266300493385643,-8.664182532578707,-8.001029834151268,-7.710637678857893,-7.31898003583774,-7.561641175765544,-7.966707757208496,-7.793235012795776,-6.858962386380881,-7.708635343704373,-6.74285139888525,-6.514502950944006,-7.158967210911214,-6.593159428332001,-6.261357565410435,-6.182030157186091,-7.099280958529562,-7.337094511836767,-6.380985521711409,-5.554116400424391,-5.039815919473767,-5.051818547770381,-4.967611540108919,-4.007152027916163,-3.236699849832803,-3.084370858501643,-2.9102522432804108,-2.4750777697190642,-2.4769199802540243,-2.4030360635370016,-2.3058989639393985,-1.5178981912322342,-0.7337907403707504,-1.6846391968429089,-0.8963061710819602,-0.7071389500051737,-1.1255840039812028,-0.9908897979184985,-1.895805456675589,-0.9922496555373073,-1.7969754841178656,-1.0097615025006235,-0.30785391805693507,-0.5813214550726116,0.10380291845649481,0.9005585028789937,0.7430526581592858,0.15057255700230598,0.24198405863717198,0.5828679413534701,0.378510317299515,-0.16082394681870937,-0.4135934067890048,-0.4111153883859515,-0.7939126752316952,0.06832048250362277,-0.54631900601089,-1.525750991422683,-1.5596985463052988,-1.2300308076664805,-1.1157426540739834,-0.2047335202805698,-0.43359561869874597,-1.1211790558882058,-0.2358807739801705,-1.027892207261175,-1.9501101220957935,-2.6196460342034698,-2.1986236395314336,-2.9588143448345363,-2.301254148129374,-1.5519044999964535,-1.61994604812935,-1.3841135031543672,-0.4747141394764185,-0.1733026779256761,-0.7736083525232971,0.19720832677558064,0.4808066477999091,-0.04731076303869486,-0.4753688764758408,-0.5702155996114016,-0.6234905496239662,-0.7976486533880234,-1.1987780663184822,-0.5069008991122246,-0.33319126069545746,0.5750315804034472,-0.11822431907057762,-0.2843483272008598,0.13736141938716173,-0.5357313635759056,-0.8940170351415873,-0.9650742895901203,-1.852105479221791,-1.0301272040233016,-0.9847074886783957,-0.8830967415124178,-1.3278691647574306,-1.4841409251093864,-1.697607814334333,-2.5548962457105517,-2.0672198715619743,-2.2798950211144984,-1.9481349871493876,-1.5151975634507835,-0.7453305912204087,-0.2891917652450502,0.17132141767069697,0.3709642239846289,0.19333253474906087,0.9079114338383079,0.39275421341881156,-0.26791252521798015,-0.9551154640503228,-0.46572312293574214,-1.017963979858905,-1.1421831212937832,-0.28380442783236504,0.3460418269969523,-0.4231105977669358,-0.9962152959778905,-1.7152305450290442,-2.0002343747764826,-2.9212978961877525,-3.0676600076258183,-3.605861776974052,-2.7622483954764903,-1.9675463796593249,-1.0229250909760594,-1.5209291707724333,-1.6879090261645615,-1.2299405373632908,-1.876341441180557,-1.5265354490838945,-2.40996858663857,-3.198822128586471,-3.4125508493743837,-3.426265119574964,-3.113188872579485,-2.481443648226559,-1.9757685586810112,-1.7110908450558782,-2.3542222850956023,-2.80980744631961,-3.4695804840885103,-2.9887267714366317,-3.2678840178996325,-2.842055103275925,-2.747143756598234,-2.001800294034183,-2.899958440102637,-3.4784967745654285,-4.262038292828947,-4.431149651296437,-3.8246818585321307,-3.436912593897432,-3.020983382128179,-3.030418802984059,-3.4948245608247817,-4.4508576998487115,-4.015703321434557,-4.076752898748964,-4.3280953876674175,-4.6178562878631055,-5.512865147553384,-5.294120074715465,-5.9053757530637085,-6.138896478805691,-6.367696245666593,-7.292810022365302,-6.341615612618625,-5.581561945844442,-4.985550721175969,-4.154774084687233,-4.28673301730305,-4.937330860644579,-4.9555744510143995,-4.340645074378699,-3.7131177498959005,-3.839250309858471,-4.0625939248129725,-3.2340070083737373,-3.0003752312622964,-2.913623987697065,-3.6168340132571757,-3.0808878177776933,-2.6924574146978557,-3.237968775909394,-3.884787244722247,-4.555221830029041,-5.152065088506788,-5.63986884476617,-5.045677084010094,-4.119360784068704,-4.318295607343316,-4.855528988875449,-5.7215837626717985,-5.388125983998179,-4.931545723695308,-4.519285386893898,-5.331114279106259,-5.3195833042263985,-6.153633872978389,-6.479167305864394,-7.312273097224534,-6.740162014495581,-6.931112395599484,-7.519883690401912,-7.96873844275251,-7.123723948374391,-6.935086851939559,-7.672644787468016,-7.5487495781853795,-7.199971468187869,-7.000747828278691,-6.6895165322348475,-6.0804532510228455,-6.993083336390555,-6.011214240919799,-6.7663016323931515,-6.407613335177302,-6.4723066058941185,-5.832670255564153,-6.588017430622131,-6.829878685530275,-6.520492047071457,-6.390502586495131,-6.357697456609458,-6.709549157880247,-7.151050994638354,-7.059576753061265,-8.034841899760067,-8.12284839618951,-8.196098573040217,-7.323100774548948,-6.324748768471181,-5.60789778875187,-5.055630978196859,-5.061054996214807,-5.833820742089301,-6.613062672782689,-7.112512439955026,-7.496241225861013,-6.913065280765295,-7.043550666887313,-8.01391270570457,-7.520811122842133,-8.098409056197852,-7.261498448438942,-6.408578707370907,-6.741507144179195,-6.446291973348707,-5.694125440437347,-4.946561478078365,-5.296735307201743,-6.067799240350723,-5.415744018275291,-5.24907226767391,-5.133966010063887,-5.06075962074101,-4.928503370378166,-5.742705542594194,-6.416380981914699,-6.016847679391503,-6.311412901151925,-6.864063024986535,-6.205056711565703,-5.227826829999685,-4.848940754774958,-3.918140931520611,-4.8297570906579494,-4.268869403749704,-5.128017680719495,-4.672014067880809,-5.003583735320717,-5.688780628610402,-6.184505392797291,-7.128576836548746,-6.473589260131121,-6.712473382242024,-6.883868869859725,-7.305359745863825,-7.35086476476863,-8.345378428231925,-7.945689035113901,-8.76612098235637,-9.327994231600314,-9.04662902932614,-8.784107061102986,-9.523394872900099,-10.321214508730918,-10.57730988273397,-11.570714328438044,-11.844449726864696,-11.356100629083812,-10.797306960914284,-11.759340210352093,-11.602598976809531,-11.725623772013932,-11.585740681272,-12.532893303781748,-12.421413001138717,-11.495275104418397,-11.29149826662615,-11.191887645516545,-11.197918444871902,-12.1481878682971,-11.561107350047678,-10.608358134981245,-11.394235566724092,-11.18595553515479,-11.632170942611992,-11.022022013552487,-10.98849550075829,-10.587765677832067,-9.92430496495217,-9.314944785553962,-8.702166260685772,-8.096391577273607,-8.548281909432262,-7.900567417964339,-7.720193458721042,-6.740781477186829,-7.457523363176733,-6.857598777394742,-5.995330781675875,-6.172560922801495,-7.073859349358827,-8.040182057768106,-8.843009804841131,-8.284387446008623,-8.03596735233441,-7.323827859479934,-6.525936766061932,-6.211794495582581,-5.953104941174388,-6.632729975972325,-7.568461392074823,-7.162150572054088,-7.144477341324091,-7.365611401386559,-7.088190344627947,-7.238304632715881,-7.750112383626401,-6.962617156561464,-7.95094944210723,-7.372427827678621,-7.095988997258246,-7.819325673393905,-8.505105890333652,-7.9611029964871705,-8.552204620093107,-8.416400779038668,-7.882765564601868,-7.801709016785026,-8.016890850383788,-8.089152857195586,-8.941042742691934,-9.918930440209806,-9.5572251197882,-10.323451097123325,-10.653833527583629,-11.479805267881602,-12.043021827470511,-11.864393287803978,-11.438628570176661,-10.529645235277712,-10.041660650167614,-10.080959170591086,-9.709222042001784,-9.42685622163117,-9.313802586868405,-10.301860393024981,-10.525909844785929,-11.385775052942336,-11.893105626571923,-10.997325719799846,-11.884597695898265,-11.776013726368546,-11.672701405361295,-11.414770404808223,-11.100941456388682,-10.934743840713054,-10.999659574124962,-11.728560657706112,-10.73308851197362,-10.10245023202151,-10.056521387770772,-9.716593840625137,-10.189457467757165,-10.380179036874324,-10.011037957854569,-9.655023730825633,-9.268443678505719,-9.881981340236962,-10.520335416775197,-10.470869245007634,-10.563063468784094,-9.7020324151963,-9.930910622235388,-10.564687381032854,-11.18093124916777,-10.283969145268202,-10.87494881125167,-10.834424899891019,-10.89281471259892,-10.777814630419016,-10.255889100022614,-10.158278793562204,-10.493450551759452,-11.213145756162703,-12.212011485360563,-13.168504239991307,-14.120520265307277,-13.1753257852979,-12.745956183876842,-13.272060802672058,-13.83425540337339,-13.912088779732585,-14.604675264563411,-14.481806173920631,-14.807674834970385,-14.44566786615178,-13.879874108824879,-14.55214039934799,-13.741315288003534,-13.338126439601183,-12.453059103805572,-11.861385824624449,-11.595906923990697,-12.43477268377319,-12.3566128234379,-13.34555854741484,-12.856019659433514,-12.809292261488736,-12.649467060808092,-11.693604641128331,-11.184341405984014,-10.70101880049333,-10.234025453217328,-10.375286360271275,-10.997440487146378,-11.820712374988943,-12.56248986441642,-12.023347510024905,-12.251896028406918,-12.219960043206811,-12.829464251175523,-12.912678497843444,-12.366750274784863,-11.486943394877017,-11.845398938748986,-11.94815282896161,-11.608080544043332,-11.446898446418345,-10.822584920562804,-11.25802265200764,-10.566760796587914,-9.70458880579099,-9.232964366208762,-10.018805760890245,-9.442708429414779,-10.079254116397351,-9.241640387102962,-9.423494362272322,-9.41890878137201,-10.03309582406655,-10.324445341248065,-9.611265116371214,-9.720624829642475,-10.692926128860563,-10.815789361018687,-11.316565940156579,-10.922020930796862,-10.231710792984813,-10.642346193548292,-9.88831347040832,-10.496482407208532,-10.238881162833422,-11.127499816007912,-11.556528233457357,-11.112279331777245,-10.193936165422201,-10.990973979700357,-10.150780372787267,-11.056109443306923,-10.517967260908335,-10.317876355722547,-10.777859296649694,-10.434799308422953,-9.688111977651715,-9.740662849508226,-9.355673141311854,-10.311257439199835,-10.844950838945806,-10.271242094226182,-9.414144227746874,-10.139960100874305,-9.610919849481434,-10.410415093880147,-10.52682616142556,-10.306982389185578,-10.402512577362359,-9.867979069240391,-9.322118727955967,-9.669342139270157,-10.303496631793678,-10.048376682214439,-10.672293671406806,-10.45437065185979,-9.79451871290803,-9.444305176846683,-9.2583141583018,-9.629967192187905,-9.330548777244985,-9.274086476769298,-9.152856595348567,-9.782426228746772,-8.870928543619812,-8.188928204588592,-7.622143100015819,-8.440345532260835,-8.342215307056904,-7.445162316784263,-7.370646686758846,-7.339720900170505,-6.712714662775397,-6.237523800227791,-5.622679955791682,-5.126079601701349,-5.508140806574374,-4.616542076691985,-5.551273457240313,-6.161566829774529,-7.016838779207319,-6.545640859287232,-7.1369763682596385,-7.306442026980221,-7.123462162911892,-6.532098927535117,-6.8889474319294095,-6.471619789022952,-6.308823806699365,-6.229795948602259,-6.36992409825325,-6.252630839589983,-5.542936652433127,-5.830624857917428,-6.445697200950235,-5.781658292282373,-4.979613492731005,-4.766870751976967,-5.087070737499744,-4.296141027007252,-4.197215597145259,-3.5410511074587703,-3.9715116703882813,-3.4891872135922313,-4.336565006524324,-4.42795235151425,-3.9773748917505145,-3.4093122407794,-2.774313908070326,-2.517696694470942,-1.6117264130152762,-1.747338649816811,-2.49202901404351,-2.3588966471143067,-1.721736362669617,-0.9035984370857477,-0.5333604370243847,0.069115090649575,-0.11770953517407179,0.29041921719908714,0.4577564555220306,-0.4185151206329465,0.18670907989144325,-0.448716449085623,0.22819633083418012,-0.6298174178227782,-1.104905271437019,-0.9893548297695816,-1.0819062157534063,-0.6902307709679008,-0.3138136616908014,-0.33692894224077463,0.4085308606736362,-0.05589011125266552,0.39697166439145803,0.09037039894610643,0.9544917633756995,1.5619406099431217,2.5453733755275607,2.924740895163268,3.6288213063962758,2.9418329829350114,2.9329123911447823,2.172674945089966,1.607067323755473,2.199401730671525,2.5427895868197083,3.3583334772847593,3.2784467949531972,3.160044053569436,3.243536696303636,3.4347175280563533,4.346435682382435,3.9904424315318465,4.157675668597221,4.636943076737225,5.138822065200657,4.469493200536817,4.371410543099046,4.921584332827479,5.609833036083728,5.319339708425105,4.350120737683028,4.758470218162984,4.22290706820786,4.47028720099479,4.357528525870293,4.740285327658057,5.493170332629234,5.06230338010937,5.3753394382074475,6.359502112027258,7.084618184249848,7.218542262911797,8.106158601585776,8.334245656151325,8.448314369656146,7.5692200949415565,6.919723338447511,6.7452051299624145,6.618845818564296,6.992737945634872,7.789495110977441,8.362284071277827,8.146012525074184,7.377079710830003,7.700308834202588,8.353328326251358,8.369925651233643,7.812277590855956,7.631094494368881,7.583086597267538,8.252618779428303,7.3721981341950595,7.09622985124588,6.525356563739479,5.929020284675062,6.47771406872198,5.796985005494207,5.460247242357582,5.142863311804831,5.818732150364667,5.585198279004544,5.260206712875515,4.341670555528253,5.264037807006389,5.072607622481883,4.339225699659437,4.56509101158008,3.790106256958097,3.7306167162023485,3.3169841687195003,3.4149078060872853,3.336299696471542,2.912158580031246,3.231020450592041,4.014647169038653,4.819823635276407,5.4009883110411465,5.600095985922962,6.356351163703948,6.243980998173356,5.4921997911296785,4.991888960823417,4.2210410898551345,4.634961108211428,3.7788497800938785,3.8562010531313717,4.31063731899485,4.639904010575265,5.234057520516217,6.05193609604612,6.194899147842079,6.922981491778046,7.884502557571977,8.659342888277024,8.371008545160294,9.261011642869562,8.98963515041396,9.775115471798927,9.934523698408157,9.882597037125379,9.464623329229653,10.298401110805571,9.522222038824111,9.666671602521092,9.306735557503998,9.597988513298333,8.732792775612324,9.566044483333826,8.710060890298337,7.896167760249227,7.10085953399539,7.181370025034994,8.10691764112562,7.643124917987734,7.608316188678145,8.585717875510454,9.262080783955753,9.180047262925655,8.433341435156763,8.758798962458968,9.647229149006307,9.919969120528549,10.396931897383183,9.576821273192763,10.364428263623267,9.94073134334758,10.065246298909187,9.99377104640007,10.866231918800622,10.778118559625,10.003731103613973,9.910935260355473,10.387595851905644,10.349019494373351,9.856390351429582,8.864604660309851,8.012930798344314,7.967308827210218,7.012268396094441,6.185709461569786,6.797035615425557,7.6615494466386735,7.115256499499083,6.212925988249481,5.340204454492778,5.242034289054573,5.72208535624668,6.675328807905316,6.783943012822419,6.308262567035854,6.574913900345564,6.3746158182621,6.402071121614426,7.2837353544309735,7.468456845730543,7.44162017153576,7.6652522860094905,7.065441629849374,6.190358010586351,6.125102146528661,6.639748946763575,6.482294232584536,6.662141624838114,6.322950038593262,5.892832317855209,6.068088971078396,6.796947264578193,6.860135772265494,5.983088325243443,6.175244870595634,5.627250296063721,5.563090246170759,4.8009001784957945,4.989975906442851,4.300300315953791,3.6378372395411134,3.5466546304523945,2.6810137652792037,2.6383018498308957,2.0892032915726304,3.064441623631865,3.9610064984299242,3.5999459489248693,4.070484098512679,3.529141356702894,4.0699411779642105,4.545793409924954,5.462402411270887,5.34248847188428,4.767372671049088,4.952105149626732,4.530381562188268,4.700505026150495,4.179254700429738,4.295897921081632,5.237997375894338,4.419185716658831,3.4643588648177683,3.7744504660367966,4.287068696226925,3.6428705188445747,4.467074551619589,4.765491441357881,5.675647542346269,5.9040484596043825,6.89266215544194,6.9318634499795735,7.874151315074414,8.686388224363327,9.302596267778426,8.917751317843795,8.63408222142607,9.100613801274449,8.64394711703062,7.77033842401579,8.33242763672024,7.987237215973437,7.741029101423919,7.513998059555888,7.430693525355309,7.330239307601005,6.540689782239497,5.7178170727565885,6.681198166683316,7.615007122512907,8.138221033848822,7.364821352530271,8.348668764345348,9.023937875870615,9.585894296411425,9.032029238529503,8.756127040367573,9.163984801620245,8.977983128279448,9.115773008204997,8.700476300437003,8.195966344792396,7.541131045669317,8.107933587394655,7.317110578529537,6.62201288016513,6.103499740362167,6.341302836313844,7.195635942276567,7.115554492454976,7.335556803736836,8.182891889009625,7.841364528052509,8.059004991315305,8.96114253718406,9.787505177780986,10.167018493637443,10.928754004184157,10.161431345157325,10.095764219760895,10.788545885588974,11.14588002441451,10.3520920118317,10.066639267839491,10.407123634591699,10.768758118152618,10.248435833491385,9.35793309379369,9.047350677661598,9.67568676872179,8.721088233869523,8.199465339072049,8.09139559417963,8.529010816011578,7.879521976690739,7.494931890629232,6.922013843432069,7.664748011622578,7.136741341557354,6.975834811106324,6.478515684604645,6.517122060060501,7.217432632111013,7.841095667798072,7.9379850728437304,7.440856516826898,6.86175397131592,6.757170422002673,7.303227989003062,6.729246128816158,5.946021024603397,6.0051577892154455,6.001315040048212,6.9536099676042795,6.028641746379435,5.099376109428704,5.4563859067857265,5.7980739627964795,5.492578603327274,6.387735684867948,7.272696880623698,7.939135958906263,7.860186646692455,7.464755026157945,6.510679911356419,5.93947071954608,5.932213684543967,6.41366271674633,5.434903383720666,4.5933171338401735,4.4317132998257875,3.472812765277922,4.117840527556837,3.9537350037135184,4.115130206570029,3.870121017098427,3.9164748792536557,4.248878694139421,3.3753080051392317,3.9936103667132556,3.7817107760347426,4.329281087964773,4.657729118596762,4.8558779545128345,4.0117282858118415,3.132171109318733,2.48932466795668,3.142175678163767,2.3679848625324667,2.61973296944052,3.0475626178085804,2.2603253787383437,2.3215657202526927,1.5492789312265813,2.2124692760407925,1.2930311816744506,0.5430034971795976,0.5986810284666717,-0.28399290423840284,0.3317632912658155,0.9374699490144849,0.26231282437220216,0.3434581533074379,0.3286848980933428,-0.20510581135749817,0.46501861372962594,0.97073127143085,0.15633139247074723,0.3278649440035224,0.9301258665509522,0.8651035018265247,0.5665827691555023,0.3151848358102143,0.6208577798679471,0.6342328554019332,1.5858514332212508,0.7483450253494084,1.4228225932456553,1.9550623572431505,2.4334684051573277,2.0713434852659702,2.849800271447748,3.674572466406971,4.520631217863411,3.578224713448435,3.7991700349375606,3.4563387790694833,3.9633772880770266,3.4628513967618346,3.7393016954883933,3.397668279707432,3.485111183486879,3.587482185102999,2.872307482175529,2.035938690416515,1.2128056744113564,2.178425755351782,2.8395126843824983,3.6620987853966653,4.33028204832226,3.434661343693733,3.3988420497626066,4.2739848624914885,4.307889126706868,5.199489368591458,4.2364712986163795,5.029766638297588,4.90411996236071,4.873273235280067,5.485764755867422,5.951491609681398,5.586950646247715,4.639191764872521,4.6022993712686,4.926647040527314,4.560234902892262,3.9379788152873516,3.426993389148265,2.7704610475338995,2.1331136785447598,1.3665670044720173,0.6712027289904654,0.21145742340013385,-0.00674278661608696,-0.7550768149085343,-1.0541816274635494,-1.3585666548460722,-2.0461982511915267,-1.1710429838858545,-1.4211669890210032,-2.4139608591794968,-1.4273566245101392,-2.238283005543053,-1.287433142773807,-1.1595255536958575,-0.9541213265620172,-1.3803186560980976,-2.345466143451631,-2.5783055061474442,-3.186033261474222,-3.5211753393523395,-3.0733578517101705,-2.4250516374595463,-2.1805026065558195,-2.859823066741228,-2.720058011356741,-2.308970718178898,-1.6202356326393783,-1.5416161990724504,-2.2051854440942407,-2.1886434401385486,-2.109339999035001,-1.2681171018630266,-2.2447847593575716,-2.296658333390951,-3.1457054843194783,-3.627633814699948,-3.9602079642936587,-3.1564661324955523,-3.6481399657204747,-3.6017393548972905,-3.6654795589856803,-3.483965206425637,-3.583769403398037,-4.141572322230786,-4.3791972422041,-4.756320132873952,-4.121190209873021,-3.4530351972207427,-3.0580298705026507,-3.4631341183558106,-4.4057893343269825,-4.275775574147701,-4.798674899153411,-4.572679194621742,-4.585056075360626,-4.938713603653014,-3.9691880960017443,-3.9357860521413386,-3.2158516123890877,-2.413278082385659,-1.619178812019527,-2.0185419567860663,-1.5318005196750164,-1.4446910512633622,-1.021937571465969,-0.5301118553616107,-0.5014420188963413,-1.4711599699221551,-1.9626144785434008,-1.5924875801429152,-0.6563089480623603,-0.9737993460148573,-0.46015125000849366,-1.374200126156211,-2.223631938919425,-1.5095793190412223,-1.764657027553767,-2.079854368697852,-1.3981776554137468,-1.958107940852642,-1.3614311912097037,-1.8859179797582328,-1.0573263922706246,-0.899724948219955,-1.4457966550253332,-1.6418118183501065,-2.0996264815330505,-2.0464594732038677,-2.3241018131375313,-3.1343964310362935,-3.2791487015783787,-4.242394369095564,-3.905161553993821,-4.026394209358841,-4.807587462477386,-4.88518478628248,-4.450920606497675,-4.370115974452347,-3.7852687565609813,-3.686425299849361,-3.30361484689638,-2.979851056355983,-2.7063993201591074,-3.5954938773065805,-3.951044358778745,-3.5852254405617714,-4.485140021890402,-4.865391755476594,-5.0612428383901715,-5.70521368086338,-6.432713007088751,-7.319977079518139,-7.67684106528759,-7.98834457853809,-7.0853016301989555,-6.379299847409129,-6.1651370991021395,-6.571714731864631,-6.0137351276353,-5.501669885125011,-5.3820667755790055,-4.423472755588591,-3.9900245144963264,-4.583628447726369,-4.560921327676624,-5.518616121727973,-5.583769218530506,-6.4380887085571885,-5.8099367609247565,-6.403218436520547,-6.752676778007299,-6.019486490171403,-6.675312949810177,-5.776458607055247,-4.826116873882711,-5.201857043430209,-5.596436719410121,-4.713696646504104,-4.2321243938058615,-3.742703319527209,-3.611425789538771,-4.250956194475293,-4.0311599797569215,-3.4099549306556582,-3.6894759694114327,-4.020408703479916,-4.828919666819274,-5.058122057002038,-4.589260173030198,-3.796525053214282,-4.3840245716273785,-4.861197759397328,-4.985049381386489,-4.325751162134111,-4.813377422746271,-5.216120018623769,-5.237930316943675,-4.804570201784372,-4.19593768613413,-4.593950087670237,-4.8431246392428875,-4.318457513581961,-3.9431491252034903,-4.482873171102256,-4.974412514362484,-4.352911241818219,-5.111101329792291,-5.298984851222485,-4.340111046098173,-3.7043338012881577,-3.8794608837924898,-3.2807357837446034,-3.24785737413913,-3.320644483435899,-3.682139858137816,-3.841727051883936,-3.4397005341015756,-4.197906406596303,-4.520458594895899,-4.558472601696849,-4.446519547142088,-3.460279295220971,-3.95372396428138,-4.166481026448309,-4.9113494316115975,-4.519103196449578,-4.887477268464863,-5.454476127400994,-5.935427571181208,-5.392947765532881,-4.8645217679440975,-5.736343413591385,-5.081487333402038,-6.080073938705027,-6.4236654047854245,-7.119400400202721,-7.669936558697373,-7.784340125974268,-7.052061996422708,-6.613098478410393,-5.779929680749774,-6.463222761172801,-5.517041818704456,-6.2699150196276605,-5.437921634409577,-5.997779692988843,-6.379441511351615,-5.781686833593994,-6.1046415767632425,-5.435119263827801,-6.284939208999276,-5.7225690530613065,-5.047665297053754,-5.41991100134328,-6.411902826745063,-6.165387180633843,-6.466230769641697,-6.739039804320782,-6.128637557849288,-6.558848996646702,-7.366049841511995,-7.281600514426827,-8.035488559864461,-8.183012577239424,-7.4670673636719584,-6.955797016154975,-7.340000953525305,-6.5684632495976985,-7.294870097190142,-7.901171997655183,-7.4124439670704305,-6.663184768985957,-6.934730036649853,-6.585091221611947,-6.156314263585955,-5.59677993459627,-4.979833054821938,-5.915150453802198,-5.091746045742184,-5.1247721877880394,-4.372285379562527,-4.35825130622834,-5.327105584554374,-4.97009690431878,-5.88207783177495,-4.9210593635216355,-4.550951614510268,-4.0846605389378965,-4.314810418058187,-4.308539904188365,-4.088095075916499,-3.847786808386445,-3.7175608002580702,-3.696057323832065,-4.427431513555348,-4.420101838186383,-4.851370280608535,-4.269081320147961,-3.5700719570741057,-4.444251053966582,-3.87129977485165,-4.7065328801982105,-5.341120499186218,-5.337946055922657,-5.9500568411313,-6.697978848125786,-6.37776151066646,-6.522373866289854,-6.647489708382636,-6.870980109088123,-6.967060280032456,-7.940562211442739,-8.745802328921854,-9.346320399083197,-9.975394211243838,-9.922801271546632,-10.21368495747447,-10.003957462497056,-10.012893646024168,-10.070551849901676,-9.6679632733576,-9.330749585293233,-9.170711704995483,-9.881440442521125,-9.355930508580059,-8.81289857486263,-8.440248456317931,-7.547465824987739,-7.576619773637503,-8.48681794386357,-9.055638333782554,-8.639405561145395,-9.488519460428506,-9.06211888929829,-9.347742457408458,-9.643093717750162,-10.487323114648461,-10.60972789535299,-10.142864105291665,-10.001551046036184,-10.474996162112802,-10.174125685822219,-10.042029710486531,-9.92994893481955,-10.751443878281862,-11.227768219541758,-12.192807735409588,-12.023449821863323,-12.45291828038171,-11.780772341415286,-11.364910352509469,-12.27511149039492,-12.516987510491163,-11.706811089999974,-12.079765197820961,-13.016493523027748,-12.86238516215235,-12.957937125116587,-12.280039998237044,-11.495523147750646,-10.952563169412315,-10.213967247400433,-10.153269173111767,-10.783062974456698,-11.682012006640434,-12.084581487812102,-11.931151599157602,-10.992981751449406,-11.701076060067862,-12.667420569807291,-13.117985238321126,-13.195143969263881,-14.092523379717022,-13.83431752724573,-13.424898984842002,-12.780926040373743,-12.054028179496527,-12.28478793008253,-13.014784588012844,-12.946345907635987,-13.621372656431049,-13.662821656093001,-14.183448898140341,-14.808395074214786,-14.45690644858405,-13.789992322213948,-14.602106403093785,-15.268684794194996,-15.054690508171916,-15.329609502572566,-16.286642716266215,-16.30822193529457,-15.351208900567144,-15.088904364500195,-14.482026421930641,-14.590668102260679,-13.610479094088078,-13.344463519752026,-12.969017984811217,-13.62155281053856,-14.182625676505268,-14.138681289274246,-14.854015033692122,-15.256594617385417,-16.110114914830774,-16.701776546426117,-17.532277300488204,-17.149947846774012,-17.12723971856758,-17.086162458639592,-17.02449700376019,-16.95504047209397,-17.65913341054693,-16.665835451800376,-16.136563198640943,-15.209070194512606,-15.954618636984378,-16.412957571912557,-16.863189674448222,-16.900315931532532,-16.736226804554462,-16.790310480166227,-16.292932601179928,-16.8815256068483,-17.7488707206212,-18.390156796667725,-18.59642921667546,-17.67187100974843,-18.664757763501257,-17.732768976595253,-17.50960264261812,-16.957102419808507,-17.007068127393723,-17.631395167671144,-18.11544656800106,-18.554305975791067,-17.666654417756945,-18.482201960403472,-19.123923908919096,-20.11652707029134,-20.558898075018078,-19.90256413584575,-19.67466823151335,-20.641277072485536,-19.856531281024218,-19.06100658979267,-18.52024881914258,-17.872492770664394,-18.590472572483122,-18.53752967948094,-18.752515157684684,-18.595284045673907,-18.467958126682788,-19.293978417292237,-18.85559520078823,-18.45713165635243,-19.096019576769322,-19.80373525666073,-19.970300510991365,-20.941686233039945,-20.463801776990294,-21.37289796350524,-20.876918404363096,-21.13074487168342,-21.9935200791806,-21.736864877399057,-21.266576214227825,-21.921929821837693,-22.84491416020319,-22.971806661691517,-22.33747025858611,-23.127294200006872,-22.90485758939758,-22.314319730270654,-22.035190143156797,-22.191670630592853,-21.26811172766611,-21.686852091923356,-21.284249703399837,-22.066923512145877,-21.792438990436494,-20.9452631236054,-20.520433370023966,-20.903997473884374,-20.320132694672793,-20.43022962100804,-19.531417141202837,-19.50295591726899,-20.104244898073375,-20.264357967302203,-20.56215827167034,-20.755147791001946,-21.297214352991432,-20.97010531835258,-21.480133024044335,-21.0738576175645,-21.04133263323456,-21.130254475865513,-20.61637363350019,-19.682236584369093,-20.2753900680691,-21.234100163914263,-21.007241582032293,-20.468923158943653,-19.937774060759693,-19.17873987555504,-19.661205135751516,-20.47136192349717,-20.732956276275218,-20.403040297329426,-21.051976629532874,-21.590059439186007,-20.994980494026095,-21.401173073798418,-20.915373156778514,-21.47348410030827,-21.184983055572957,-21.73997962800786,-21.445607339031994,-21.177946647629142,-21.17538586491719,-20.882999567780644,-20.458084343001246,-20.262660779524595,-20.388231840450317,-19.4954793327488,-20.08566345553845,-20.457347265910357,-20.858414167072624,-21.276053060777485,-21.09357049036771,-20.692942412104458,-21.007969786878675,-20.739129605237395,-20.774937942624092,-21.094980978406966,-20.95046361722052,-21.534006047528237,-22.15506749600172,-21.171502296812832,-21.371974141336977,-21.549457987770438,-21.055132318288088,-21.33818348683417,-22.225175704341382,-21.912145149428397,-21.69015712151304,-21.964069929439574,-22.420500915963203,-21.69441448105499,-22.241070799529552,-21.58785944757983,-21.72308413265273,-22.666860003955662,-22.541665377561003,-22.815967373549938,-23.178271731361747,-22.460579702164978,-22.715654590632766,-22.50368111487478,-23.057482678908855,-22.359949036501348,-22.271555186249316,-23.179533950518817,-23.696941984351724,-24.527734843548387,-25.206936015747488,-26.019113436341286,-26.598862329032272,-26.230361082125455,-25.995309349615127,-26.131779518909752,-25.743089618626982,-25.94941571727395,-26.054650157690048,-26.99400477996096,-26.39335311530158,-27.20176320336759,-28.094751303084195,-27.921810413710773,-28.781608728691936,-28.55420618876815,-29.20955428527668,-29.210354327224195,-28.352953885681927,-29.08880995819345,-28.11800800682977,-28.027313521597534,-28.212004516273737,-28.782909171190113,-29.30546117713675,-28.543647970072925,-29.089272276032716,-28.502094595693052,-28.481101454701275,-29.266551640816033,-28.58023113803938,-29.471190764568746,-29.263015260454267,-29.311530051752925,-29.744041870813817,-28.824522694107145,-28.886794957332313,-28.323142997920513,-28.69621028425172,-28.384805467445403,-28.370706682559103,-27.864301609341055,-28.25254144379869,-27.418771833647043,-26.856537445914,-26.202831542119384,-25.48055762052536,-25.10191100416705,-24.637899359688163,-23.897616520058364,-23.594961668830365,-23.73076452128589,-24.225860462523997,-23.404586465097964,-22.723344299942255,-22.34252649685368,-21.41278749657795,-21.692650918848813,-22.072119883727282,-22.062237684149295,-21.245245995931327,-21.296243738848716,-21.59711663145572,-21.239395427983254,-21.624237748328596,-21.864326401613653,-22.109753190074116,-22.68486480321735,-22.202216520905495,-21.28072391403839,-21.275426344014704,-21.313569200690836,-21.979018804151565,-21.130758041981608,-20.348036729730666,-19.98681359924376,-19.044229180552065,-18.096072914544493,-17.856011810246855,-17.37633599806577,-16.645157834514976,-16.515771215315908,-17.271461376920342,-17.791728342417628,-17.916596575640142,-17.625878708902746,-17.94474332081154,-17.66080108564347,-17.75292354216799,-18.12178042670712,-18.252964036073536,-19.02490256400779,-18.174452966079116,-18.660344858188182,-18.1900656176731,-18.69174727285281,-18.311625184025615,-18.824660421349108,-19.384726140648127,-20.14866837998852,-19.502591303084046,-18.988944916054606,-19.886450093239546,-20.39361684396863,-20.847210239619017,-21.0119761233218,-21.702356271911412,-22.363181055523455,-21.488023336976767,-21.285114040598273,-20.332753448281437,-20.92955938214436,-19.981173956301063,-19.684236865025014,-20.499568863306195,-21.319756743032485,-22.23727242089808,-22.098399087786674,-22.66871966375038,-22.199027488939464,-22.95788323879242,-21.965121069923043,-22.665462703444064,-22.96183402603492,-22.173266041092575,-22.218104065861553,-22.35909029096365,-22.02356651611626,-22.988134392071515,-23.473545564338565,-24.38938108831644,-24.11733893956989,-24.324495571199805,-23.8795013143681,-24.33273318177089,-25.128202136140317,-24.65730684902519,-24.56761444034055,-24.42056838236749,-25.063439446501434,-24.150709607172757,-23.56366943428293,-23.891389013268054,-23.852790042292327,-24.64243872463703,-25.5611699456349,-24.850577801000327,-24.448978452011943,-23.749383257701993,-23.090579265728593,-22.69480220368132,-23.259781279135495,-23.715564304962754,-22.820713432040066,-23.245984825771302,-23.746208313386887,-24.002125544007868,-24.924812640994787,-25.24111992912367,-24.293483457528055,-25.2903369278647,-25.34845786448568,-25.123838340863585,-24.647743477486074,-23.85623176395893,-24.440985368564725,-24.75393832148984,-25.11958598345518,-25.672131430357695,-26.41227375017479,-26.95471241278574,-26.156095134094357,-26.04098698683083,-25.615380229894072,-25.824811688624322,-26.740847612265497,-25.744636204559356,-26.188039077445865,-26.840616976842284,-26.437100453302264,-25.579525496345013,-24.962375041563064,-25.55945317214355,-25.846801394596696,-25.948959844186902,-25.72617464326322,-25.59618462016806,-24.863883906044066,-24.40701850131154,-23.788356724660844,-23.488148553296924,-23.08838746510446,-23.48655657749623,-23.699372462928295,-23.59922433597967,-24.334368299227208,-25.136001101695,-25.8936447231099,-24.995950761716813,-25.820019674953073,-26.073814147152007,-26.89350869692862,-26.6443932345137,-25.673164959531277,-26.34716007579118,-26.85898475209251,-26.69834063993767,-25.87739429017529,-25.31253357185051,-24.841443466953933,-25.086559335235506,-24.853758428245783,-25.315371606033295,-25.114836449269205,-25.106518365442753,-24.80056861927733,-24.18667225446552,-23.461519196163863,-22.63497510459274,-23.41319341491908,-22.789015287999064,-22.339343147352338,-22.439826015383005,-23.122759694699198,-23.152636675629765,-24.083580459933728,-24.484422559384257,-25.34956421982497,-26.15279374970123,-26.38467609975487,-25.725669076666236,-26.58456036960706,-26.57105318782851,-27.3763107964769,-28.01578443311155,-27.087149916682392,-27.2261069053784,-27.175114440731704,-26.497997177764773,-26.787440057843924,-26.674066375475377,-27.047601360362023,-26.604719057213515,-26.719958915375173,-26.866585379000753,-27.83223914820701,-28.314081084914505,-27.358256803825498,-27.431389370933175,-26.645541437901556,-25.664802900515497,-26.11328700184822,-25.725784732960165,-24.959868816658854,-24.517078287899494,-23.795816875528544,-24.677940332796425,-24.419865572359413,-24.184065969660878,-24.293957428541034,-23.5320129445754,-22.61196190910414,-21.821945555508137,-20.958545045461506,-21.05151417152956,-21.74337409529835,-21.79238682705909,-21.60515152523294,-21.89940765919164,-21.533847671933472,-21.67985925730318,-20.95880732499063,-20.4499690849334,-19.53712527360767,-20.46761654689908,-19.771328860428184,-18.789228241425008,-19.093781891278923,-18.303933896590024,-18.44992536911741,-17.906589266378433,-17.848847683053464,-17.280863494146615,-17.67538613686338,-17.747509324923158,-17.698490559589118,-18.43481957912445,-19.14174661319703,-18.83338735345751,-19.476130950730294,-20.29875970026478,-20.85042693465948,-21.324974636547267,-21.065296162385494,-21.171811987180263,-22.0546927601099,-22.248067300301045,-23.22561251372099,-22.502254544291645,-21.791718709282577,-21.90643537743017,-21.250760914757848,-20.75475306203589,-20.65796049591154,-20.227362785022706,-19.596429786179215,-19.591816833708435,-19.555566924158484,-18.87341302447021,-18.811653893440962,-19.677542231045663,-18.86523854639381,-18.21272123325616,-17.47463134722784,-16.540386706590652,-16.801181657705456,-17.034643700812012,-17.210579950828105,-17.596270761452615,-17.0204415358603,-17.513314025010914,-18.22879764297977,-18.352204918395728,-18.099764074664563,-18.23410306684673,-18.621940492652357,-19.524623810779303,-20.444890244398266,-19.84715417539701,-20.293357564136386,-21.049035204574466,-20.905214028432965,-20.05987316602841,-20.36113957129419,-20.92405502591282,-20.11398194730282,-21.013839062303305,-21.210392902605236,-21.261197315063328,-21.286950937937945,-22.06695048464462,-21.91078270971775,-22.81627219216898,-23.174980878364295,-22.71946020750329,-22.605759202502668,-21.69070512102917,-21.08868516748771,-20.30390595132485,-20.766566406469792,-20.643984446767718,-21.433223493397236,-22.2906924970448,-21.840966793242842,-21.295669885817915,-22.069972264114767,-22.063845716416836,-22.05334242619574,-22.36611172510311,-22.812554897274822,-22.75280500156805,-21.874379904940724,-22.526407243683934,-22.724335638806224,-22.75245774537325,-22.765341327991337,-23.02044982323423,-22.049051279667765,-21.282609077636153,-21.452622297685593,-20.564538029022515,-19.57739763893187,-18.642467317171395,-18.848537071142346,-18.587895683944225,-19.336972505319864,-19.43029407132417,-18.593065141234547,-18.169512681197375,-18.877749163191766,-19.155870425980538,-19.00016846647486,-19.694343155249953,-20.46758315106854,-21.097204010933638,-20.23235927755013,-20.363989600446075,-20.007326328661293,-20.019101994112134,-19.110793341416866,-19.74166839849204,-19.453568964265287,-19.21728435019031,-20.136921637691557,-19.616675769444555,-19.63884000107646,-20.352179906796664,-20.496834841556847,-20.5833927183412,-21.271285091526806,-20.277272573206574,-20.023136040661484,-20.438535395544022,-20.03673600871116,-19.054915241897106,-18.08659126283601,-18.18345783976838,-18.040195691864938,-18.26683923834935,-18.681305460166186,-17.69890882819891,-17.616448272950947,-18.418614430353045,-19.28359022643417,-18.450039401184767,-19.241990455426276,-18.481039606500417,-18.415352372452617,-19.08554643765092,-18.933460184838623,-19.064875472337008,-18.419270391575992,-18.018680973444134,-18.54812419367954,-18.703893828671426,-18.64863853296265,-18.52922715805471,-18.003215070813894,-17.574357671663165,-16.64509878354147,-15.955722094513476,-15.788401954807341,-16.527534739580005,-16.597940663807094,-16.435622642748058,-15.953865919727832,-16.158518029842526,-17.065081063658,-16.189267138950527,-16.665133839007467,-17.32764191320166,-16.62764635682106,-17.53743394743651,-18.134828435257077,-18.527628843206912,-18.92460553953424,-18.328569202683866,-17.406569506973028,-17.854464042000473,-18.19746955204755,-18.467762363608927,-17.77418241556734,-16.832040547858924,-17.77043848950416,-16.795839400030673,-17.206956243608147,-17.1314503015019,-17.291076006367803,-17.50574754551053,-17.807794948574156,-18.71968232654035,-17.86355209350586,-18.13368998747319,-19.098582671955228,-18.538102648220956,-17.94333187257871,-17.054863904602826,-16.818882988765836,-15.94188055768609,-15.446681437082589,-14.84867737768218,-13.891455749049783,-13.630534457508475,-14.19135804194957,-13.641691896133125,-12.656695305369794,-12.986895964946598,-13.16139360750094,-13.117092110216618,-12.384668701793998,-12.351007271092385,-11.597644921857864,-11.955122999846935,-11.710366600193083,-11.301190556958318,-11.971576511859894,-12.662228718865663,-12.753625836223364,-13.683274141512811,-13.89762691874057,-12.910869124811143,-12.58205906348303,-12.731496547348797,-11.990829993970692,-11.580816457979381,-11.682609635405242,-12.307463158853352,-12.004496756009758,-11.048177550546825,-10.872179870959371,-11.143296143971384,-11.4007094851695,-10.558907729573548,-9.982457535807043,-10.33856736170128,-9.471112503670156,-9.558808128349483,-9.966403897851706,-9.647827466018498,-9.278201867360622,-9.673492989502847,-10.665739176794887,-10.127896313555539,-11.103752063587308,-10.12200173502788,-10.822577553801239,-10.974862604867667,-11.429501276928931,-10.681308964267373,-11.235889909323305,-12.003955406602472,-11.923321801237762,-12.158730517607182,-13.080865910742432,-13.900158498436213,-13.74876064574346,-13.904482135083526,-12.982954744715244,-12.60838869214058,-12.319817323237658,-12.600044063758105,-11.885863286443055,-12.716735524125397,-12.486213369760662,-11.857799096498638,-11.072720071300864,-11.882509912829846,-11.12261996138841,-11.15676291193813,-11.250598758924752,-10.34295082744211,-9.406274245120585,-9.543916266411543,-9.002187951933593,-9.040055325254798,-8.97029492026195,-8.38176827924326,-7.720178430434316,-7.292116692755371,-7.729067466687411,-7.241900579538196,-6.302205135580152,-6.115413710940629,-6.781983261927962,-6.421158661134541,-5.613596760202199,-6.1461067027412355,-6.692992609459907,-7.269823692273349,-7.094164754264057,-7.885087692178786,-8.567206266801804,-9.13407082716003,-8.832000749185681,-8.694866922684014,-8.220906259957701,-8.872138088103384,-9.523554830811918,-8.613618876319379,-7.98641049861908,-8.803971669636667,-9.317435851320624,-8.359173649456352,-7.659098417498171,-8.425442037638277,-7.913588345050812,-7.374986873008311,-6.928664232604206,-7.367781217675656,-6.551120308693498,-5.818409570958465,-5.76508411206305,-5.890960012096912,-5.938449950423092,-5.987516556400806,-5.417486116755754,-5.474752057343721,-6.372342103626579,-5.880812036804855,-5.604396943934262,-5.164483207277954,-4.175544569268823,-5.063257574103773,-5.618261308409274,-6.18905825400725,-7.177609506063163,-7.3641137634404,-7.253803645260632,-7.988006568979472,-8.523273998871446,-9.366929242853075,-9.82219572039321,-10.646782925818115,-10.39607035042718,-10.557778432033956,-10.037496318109334,-9.244558370672166,-10.230959483888,-9.432278190273792,-9.266928050667048,-8.360174563713372,-7.775093419477344,-8.54044331656769,-8.274684929288924,-7.9154596365988255,-7.270404171664268,-6.404533552005887,-5.952532344963402,-5.973470927216113,-6.316679667681456,-6.976355250924826,-7.137568577192724,-7.392706478945911,-6.702476662583649,-6.326405652333051,-6.020650145132095,-5.080559209454805,-4.534816124476492,-5.111710670404136,-5.323064064607024,-4.480349705088884,-4.687358822673559,-5.344163808505982,-5.041046468541026,-5.228654144331813,-5.246047014370561,-4.838244393933564,-5.385209531057626,-5.6417157095856965,-6.031155250035226,-6.9138642912730575,-7.4306530947797,-7.4347907598130405,-6.736795089673251,-7.149073523934931,-7.661617116536945,-8.187177970539778,-7.554853701964021,-6.588694815058261,-6.986311188898981,-6.9371060519479215,-7.935503854416311,-7.420074430759996,-6.92715605860576,-6.742793285753578,-6.854153575841337,-6.358706102240831,-6.797520817257464,-6.19779217382893,-5.255700105801225,-5.213637618348002,-4.956550860777497,-4.621012432035059,-4.254002102185041,-5.079408796969801,-5.785966450348496,-5.280609000008553,-5.3860236294567585,-5.823029013350606,-5.935221778228879,-5.087136215530336,-5.188962601590902,-5.24399956362322,-4.85527648916468,-4.068745304830372,-4.88733629649505,-4.81199314026162,-4.992775608319789,-5.739346079993993,-5.016276706010103,-5.96856910828501,-5.649815151933581,-5.65778723731637,-5.118744135368615,-4.598353140521795,-4.545993961393833,-4.566051903180778,-4.506118598859757,-4.888435946311802,-4.331263660918921,-4.721515901852399,-5.35727411089465,-5.502077046781778,-5.230968655552715,-5.900639497675002,-5.2231098231859505,-5.4537562620826066,-5.85443845950067,-6.604267263785005,-7.567139419261366,-7.057233981322497,-6.594302674289793,-7.395027136430144,-7.79080622876063,-7.691501441877335,-6.7867263881489635,-6.43020120030269,-5.840639762580395,-5.080795881804079,-5.541743938345462,-6.032636829651892,-5.155218325089663,-5.302072625607252,-5.655798009596765,-5.01799755403772,-4.328272319864482,-4.177818443160504,-4.114723527804017,-3.749008803628385,-4.354098595213145,-5.236385408323258,-6.164486966561526,-5.954074010718614,-6.531034188345075,-5.574307061731815,-6.465478636324406,-6.8793759336695075,-6.772773277014494,-5.985166356898844,-6.1014224560931325,-6.426537845749408,-5.601308608427644,-5.094735749065876,-5.216412883717567,-4.360218310263008,-3.6624023783951998,-3.431791789829731,-4.141982374712825,-4.09792853705585,-4.571759520098567,-4.296915339771658,-4.332570311613381,-4.482249836903065,-4.591768937185407,-4.955824022181332,-4.896676208823919,-4.0507730091921985,-4.851222258992493,-5.403431929182261,-5.931505329441279,-5.234029036946595,-5.312706413213164,-5.002225888893008,-5.9654099168255925,-6.760000831447542,-6.425663884263486,-6.66801657481119,-7.093380897305906,-8.06595076713711,-9.006434979848564,-9.665168334264308,-10.148454836569726,-10.087495042011142,-9.618037968873978,-9.314973060041666,-8.52672766475007,-7.871488177683204,-7.046663986053318,-7.889059964567423,-7.813143574632704,-8.668559767771512,-8.169703148771077,-8.85148821072653,-8.215220104902983,-7.966207772027701,-7.620441798120737,-8.111341229639947,-9.078977594152093,-9.933693266939372,-10.853752718307078,-10.030687271617353,-9.405275841243565,-8.744501132518053,-9.332617167849094,-8.40355539880693,-7.537745012901723,-7.881488379091024,-8.387933692429215,-9.092863076832145,-9.731894062366337,-9.134379546158016,-9.194385851267725,-8.891742447856814,-9.214671156834811,-9.90481724543497,-9.40932958573103,-10.034854874014854,-9.136015630792826,-9.301358048804104,-9.789034001063555,-10.011067498009652,-9.230410343501717,-8.747996481601149,-9.080015012994409,-8.690294256899506,-9.37685439363122,-8.790096235927194,-9.330293968785554,-10.122297613881528,-10.890092371497303,-11.372859735041857,-11.49234103737399,-11.062044998630881,-10.386553874704987,-9.490271766204387,-9.847952850162983,-10.757838274352252,-10.83870657440275,-10.883757359813899,-10.033685878384858,-9.385141222272068,-9.48047749651596,-9.396503110881895,-9.954777656588703,-10.316225641872734,-10.892336938530207,-9.95225242851302,-9.983350414317101,-9.109321149531752,-9.609787481371313,-10.20568658132106,-9.6572251659818,-8.811498478055,-9.168250827118754,-8.962320064660162,-9.710246501024812,-9.862691046204418,-10.308242037892342,-9.815473564900458,-8.913818406872451,-9.481934490147978,-9.923529556952417,-10.542186126112938,-10.227905966807157,-10.39960461575538,-10.18698827829212,-9.753602699376643,-9.884770203381777,-9.391138962935656,-9.669117883779109,-9.072999123483896,-8.33971414109692,-8.315057347994298,-7.895492396783084,-7.65046674432233,-7.141734717413783,-7.988449808675796,-8.594960066024214,-9.501735751051456,-9.84965233784169,-9.767494561616331,-10.240617714822292,-9.975265790242702,-9.270294150337577,-9.658896943554282,-9.926964019425213,-10.788011296186596,-9.871524046640843,-9.135060698259622,-8.45432963827625,-8.710781052242965,-9.698805277701467,-9.281146252993494,-8.894881386309862,-8.965631553903222,-8.888829552102834,-8.888583288062364,-9.230284238234162,-8.854646051768214,-9.285637100227177,-10.167976151686162,-9.583508440293372,-9.788492210675031,-10.39741473365575,-9.580654605757445,-9.371090278029442,-9.652659531217068,-9.10896523669362,-9.35142740001902,-8.585968806408346,-8.986603968776762,-9.763491406105459,-10.11532729305327,-9.53854807605967,-9.854122908320278,-9.153672592248768,-8.672328817192465,-9.28873620647937,-8.728194691240788,-7.735099070239812,-7.688708724919707,-8.437792029231787,-7.883515726774931,-7.125214851927012,-6.702638660557568,-6.225456089247018,-6.858894408680499,-6.655200381763279,-6.39401655131951,-6.569388037547469,-6.914473901037127,-7.7169434409588575,-8.329841047525406,-8.230568914674222,-7.326928259804845,-7.979464795440435,-8.422564710024744,-9.111959810834378,-10.060970531310886,-10.185952766798437,-10.835497967898846,-11.688551876228303,-11.77423070371151,-12.516573556698859,-12.748394832015038,-13.124537029769272,-12.181268142536283,-12.907765741925687,-12.91501956898719,-12.45145322009921,-11.597024526912719,-11.917705853004009,-12.806031938642263,-12.626302866265178,-11.9897262849845,-12.244183138012886,-13.20301773538813,-13.947591398842633,-13.640555485151708,-12.779300830792636,-12.2987727872096,-13.162650817539543,-13.466789507307112,-14.422827510163188,-14.841417405288666,-14.753319006413221,-14.27108394401148,-14.758426790125668,-14.448406944051385,-14.26264576613903,-14.939763195812702,-14.397308629471809,-13.67663328628987,-14.477586750406772,-14.99271255126223,-15.712157954461873,-16.360257717315108,-15.934527838602662,-15.534583487547934,-15.412980626802891,-15.494526070542634,-15.95265794871375,-16.9466941235587,-17.34768096357584,-17.781514004804194,-17.596210427116603,-16.95942050870508,-16.442280157469213,-16.05625440273434,-16.23304310347885,-16.450605196412653,-16.338551043067127,-16.93353477632627,-16.7147313663736,-16.58159135002643,-16.245523573830724,-16.458808809053153,-15.484575069975108,-14.931615176610649,-14.503718684893101,-14.900754060130566,-15.554993924219161,-16.51192336110398,-16.611347169149667,-16.43675362225622,-15.66409592796117,-16.501301954034716,-16.222577213309705,-15.399761852808297,-16.252295695245266,-16.423279815819114,-16.022871998604387,-16.106350612826645,-16.071507173590362,-15.5722921686247,-15.527755055576563,-14.80590879265219,-15.358698543161154,-16.126915802713484,-16.945915090385824,-17.871123945806175,-17.680650420021266,-17.73674054769799,-16.885464349761605,-17.673118866514415,-17.46126923477277,-17.08141410117969,-17.997932272031903,-18.17142214998603,-17.285172183066607,-17.820445882622153,-16.89210620895028,-16.145945120602846,-15.936091952957213,-16.218630170449615,-16.599234324879944,-16.71134440973401,-15.856898785103112,-16.55149246705696,-16.407583105843514,-17.193996677640826,-17.615621564444155,-18.19921777676791,-18.316655761562288,-17.671425451058894,-17.724071878474206,-18.0615027025342,-18.795105464290828,-18.93798268493265,-19.731236269231886,-20.35518928570673,-20.288598969578743,-19.695068566594273,-18.93212885502726,-18.06599599076435,-17.44999269489199,-17.878371092956513,-16.933073468040675,-17.867793994490057,-16.9623886118643,-16.682815823238343,-15.905037955846637,-16.473160640802234,-15.593617954291403,-15.85558332549408,-15.452117952518165,-14.816210042219609,-14.706740732304752,-15.380602492485195,-14.390440955758095,-14.839169492013752,-14.032892091199756,-14.486133004073054,-14.612094635609537,-13.92212042491883,-14.378385418094695,-14.433433246798813,-13.97030670242384,-13.226673714350909,-12.991612609941512,-12.176520380191505,-11.640157725661993,-11.46155041595921,-10.509345920290798,-10.83587584644556,-11.521899069659412,-11.797769520431757,-12.092880432493985,-12.144008453935385,-12.860107473097742,-12.008670228999108,-12.289771543815732,-13.213353276718408,-12.522220210637897,-12.842800061684102,-12.650479157455266,-12.073173276148736,-11.39033511094749,-10.944929925724864,-11.591600706800818,-11.87434349115938,-11.828439509961754,-11.981495092157274,-12.390734490472823,-12.344232064671814,-12.524984485469759,-12.0781069281511,-11.59978087991476,-11.593765887897462,-11.495336657389998,-11.96330398786813,-12.80586063535884,-13.356534459628165,-13.5123974615708,-12.523636797908694,-11.882506288122386,-11.228492952883244,-12.127211524173617,-11.621730970684439,-11.079104111064225,-11.176767753902823,-11.402994825970381,-11.2347203893587,-11.580996340606362,-11.019396866671741,-11.79704479360953,-11.612267182674259,-12.524391112383455,-12.947188366670161,-12.924177893437445,-13.811865257564932,-13.795031499117613,-14.044072970282286,-13.225348424632102,-14.09475881094113,-13.76127539202571,-14.487188349477947,-15.140576883684844,-14.247014614287764,-13.533070858567953,-14.339834354352206,-13.791261665057391,-12.919047123286873,-12.34196955524385,-12.415849320590496,-12.600261227693409,-13.548845618031919,-14.096015212591738,-13.515890482347459,-13.114374593831599,-12.878649157937616,-13.27666668780148,-13.706901504658163,-12.787471155636013,-13.05409014550969,-12.333113258238882,-12.300061606336385,-12.999048918485641,-13.079202134162188,-13.76483848132193,-13.046961697749794,-12.62079266551882,-12.78249286673963,-13.209105898626149,-12.773788758087903,-12.31317561166361,-12.696493229363114,-12.580794528126717,-12.721640264149755,-12.512923820875585,-12.068903823848814,-13.046950429677963,-13.09306603576988,-13.425122863147408,-12.62303178710863,-11.727856517769396,-12.049157725647092,-11.718326189555228,-12.523438486270607,-12.132010761648417,-11.636807000730187,-11.014791991561651,-11.340592087246478,-11.139014393556863,-11.774334569461644,-12.157163275871426,-11.927285990677774,-11.761609331704676,-12.01798762800172,-11.43112298194319,-11.372994173318148,-11.073388585820794,-11.331720388960093,-11.325904479250312,-10.886736626271158,-10.786735703703016,-11.588916193228215,-10.92151892464608,-11.119097559247166,-10.908479829318821,-9.928733677603304,-10.343363180290908,-10.745321813970804,-10.291781072039157,-11.049956192728132,-10.343094561249018,-10.647750824689865,-11.638366516213864,-10.96820016251877,-11.368160424288362,-10.778965407516807,-10.526963676325977,-10.69495023181662,-10.739306626841426,-11.625112171750516,-12.310350021813065,-11.410182768013328,-11.940832638181746,-12.789979396853596,-12.674749471712857,-13.284531497396529,-13.58621073467657,-14.106039521750063,-15.073601873125881,-14.225644439924508,-14.532206274103373,-14.854740427341312,-15.2728026015684,-14.955485350452363,-14.685620183125138,-14.110746102407575,-13.756965908687562,-13.650217189453542,-14.470954635646194,-13.59943608334288,-14.486564703285694,-13.991145616862923,-14.411020379979163,-13.767515789717436,-13.412228453438729,-13.341341608669609,-12.916312613524497,-13.612837561406195,-13.97918058745563,-13.127989172004163,-13.613059431314468,-13.64189460221678,-14.049316112417728,-13.43493297835812,-12.574861022178084,-13.534241945948452,-12.681369358673692,-13.266000878531486,-12.9160903445445,-12.549384861718863,-13.005669782403857,-13.143836194183677,-12.66564958775416,-12.064285170286894,-11.784246340859681,-12.52776561351493,-13.035725810565054,-12.849765829741955,-13.58989757951349,-14.43650760827586,-15.227324289735407,-14.426572209689766,-15.007213794626296,-14.598023115191609,-14.071573674678802,-13.087377618998289,-12.173561102710664,-12.053334188181907,-11.115073624998331,-11.28360490128398,-11.094769877847284,-11.428320845589042,-11.742814620956779,-11.778320028446615,-11.325492705218494,-10.356421613600105,-11.113191700540483,-11.595087847672403,-12.394683353602886,-12.570713430643082,-13.421831040177494,-14.417537437286228,-13.494038566946983,-13.504552497528493,-13.33173936419189,-13.618875421583652,-13.553042219020426,-13.645754936151206,-14.105090279597789,-13.793197678402066,-14.041784811764956,-14.332916139159352,-15.18448657495901,-16.147978943772614,-15.703702916856855,-15.178587507922202,-14.428044124972075,-14.542674226686358,-15.24448654288426,-14.801271032076329,-13.903484080452472,-14.79342583892867,-15.03499353909865,-14.576553960330784,-14.428281695116311,-15.366020757704973,-16.159714336972684,-17.07066492829472,-16.24305406631902,-16.555178740993142,-15.782550154719502,-16.151349391788244,-16.003914416301996,-16.322746836580336,-16.085254420060664,-16.050850777886808,-15.909670153167099,-14.951887397095561,-15.761859390418977,-15.25602940749377,-15.345990203786641,-15.745015589985996,-16.351121730171144,-16.949267905205488,-16.6618308047764,-17.11972139729187,-16.815162647515535,-16.803474286571145,-17.654380813241005,-17.0590998288244,-16.962536811362952,-16.88341518677771,-17.192019857931882,-17.009445370174944,-16.773861563764513,-15.973138438537717,-16.2181653464213,-17.16006573056802,-17.188057951629162,-18.092969607561827,-18.937505203764886,-19.919730827677995,-20.051096086390316,-20.25743787456304,-19.471495766658336,-20.332000732887536,-19.366092602722347,-20.074525436386466,-20.418473351746798,-21.282393040601164,-22.111491124611348,-22.3834651815705,-23.053431815933436,-23.035162724088877,-23.027419017162174,-23.40085073048249,-23.150304833892733,-24.08538364758715,-23.49517820496112,-23.013679336756468,-22.223828062880784,-23.206306925974786,-22.89762157155201,-21.948657983448356,-21.19403559435159,-21.977119985036552,-22.812156608793885,-22.859412155579776,-22.685124006588012,-22.693606012966484,-22.422807983588427,-22.832100100349635,-22.66382760228589,-22.98496716050431,-22.70438243355602,-22.762359734158963,-22.309133572038263,-22.68889776384458,-23.19753889925778,-22.304122114088386,-21.949587807059288,-21.82317073037848,-22.013137423899025,-21.282182855065912,-21.941667581908405,-21.625317097175866,-22.260673427022994,-22.07236136170104,-22.71457264572382,-21.717891259118915,-22.213540247175843,-22.63877247227356,-21.76525166304782,-20.933926270343363,-20.113267479930073,-20.876270029693842,-21.1748375473544,-20.951565025839955,-20.213662708178163,-20.294035417959094,-20.22072367882356,-19.93483264511451,-20.044652260374278,-20.692895612679422,-21.100172387436032,-21.455679126549512,-21.435652386862785,-20.55977270612493,-20.86339047877118,-21.682987411972135,-21.87301092641428,-22.685162235517055,-23.186342508066446,-22.620312151964754,-22.745191511232406,-23.478039578534663,-22.751379020046443,-22.388551963493228,-22.11719569284469,-21.17273841938004,-20.65380226029083,-20.03565720934421,-20.493234876543283,-21.481518452521414,-21.560895900707692,-22.307446725666523,-21.641566968057305,-21.63587009627372,-20.992071649059653,-20.820078859105706,-20.940879926085472,-20.188163395039737,-20.150333509314805,-20.431536220014095,-19.442365041933954,-19.059573233593255,-19.337062515784055,-18.84926732024178,-18.539366732351482,-17.87563576363027,-18.7016216753982,-18.88531741220504,-18.31014994997531,-17.59212184790522,-17.371501731686294,-17.896829915232956,-17.025274920277297,-16.436159927863628,-16.03739640954882,-16.97551283845678,-16.63296680478379,-16.521710926201195,-16.0291986213997,-16.21517908759415,-16.13637247448787,-16.91943547129631,-17.877296179998666,-18.20418168604374,-18.079510337207466,-17.66018227301538,-17.22767905332148,-17.83333897544071,-18.28702666517347,-17.45825964352116,-17.631258295383304,-18.13643533596769,-19.046870454214513,-19.005042917095125,-18.791578309610486,-18.759369783569127,-19.274932386819273,-19.859677233733237,-20.71558412956074,-21.171939018182456,-20.800423038657755,-21.702640275936574,-20.813630764838308,-21.390212326310575,-20.57186453603208,-21.05860579945147,-21.384195851627737,-22.268240220844746,-21.963227247819304,-21.347647784277797,-21.656043597497046,-21.79666450805962,-22.43586320336908,-22.994368184823543,-23.238366415258497,-24.096308168023825,-24.232158567290753,-23.37838955409825,-22.979253204073757,-23.163768424652517,-23.357748611364514,-23.201576681341976,-23.73539429716766,-24.686791630927473,-23.944209384266287,-23.836776765063405,-23.43946865387261,-22.605374962557107,-21.934453594963998,-21.746766053140163,-22.272178157698363,-22.071008207276464,-22.056275149807334,-21.536123138852417,-20.61090365750715,-21.316729737445712,-22.010719631798565,-21.639731607865542,-20.70602296665311,-20.22391058318317,-21.168192389421165,-21.573727132286876,-22.050065828487277,-21.42952979495749,-20.762910921592265,-20.11780026741326,-20.78873547585681,-21.11942985514179,-20.192955946084112,-20.609758721198887,-20.06775165349245,-20.348530019633472,-20.25588445691392,-21.005687640514225,-20.454483011271805,-20.578221117146313,-19.735050000716,-20.423680431675166,-21.121011732146144,-21.63315258268267,-21.371479933615774,-21.58579301321879,-21.284930917434394,-21.24838907783851,-20.639421252533793,-19.87969905557111,-19.708253513090312,-19.960759746842086,-20.163933304604143,-19.38652375014499,-19.800851551815867,-19.996598177589476,-19.75473843468353,-19.399801853112876,-19.264301253017038,-18.551111149135977,-18.145122586749494,-18.07044118270278,-17.374088895041496,-17.37080883141607,-16.8400216717273,-16.677987950854003,-16.093409980181605,-16.425969941541553,-17.079054042696953,-16.62485552346334,-16.683092955499887,-16.445436669047922,-15.940159460529685,-16.090147794689983,-15.833620563149452,-14.913108136504889,-14.88387290108949,-15.344097764231265,-15.717195523902774,-15.43207330070436,-15.777592026628554,-16.615323700476438,-15.894311806187034,-16.87060627900064,-16.657766317483038,-15.661275531165302,-16.152348914183676,-16.618781523313373,-16.702351385727525,-16.868623332120478,-16.676510732620955,-15.802351921796799,-16.334472382441163,-15.502102050930262,-16.09096016502008,-16.306210769806057,-15.714623448438942,-16.003766973968595,-16.043774470686913,-16.14529058523476,-16.14489247277379,-17.115886986255646,-17.493864920455962,-17.580790653359145,-16.767238507047296,-16.63128351699561,-17.557702323887497,-18.01314811548218,-17.77428447920829,-17.307266434654593,-17.35499957203865,-17.203679551836103,-17.41805725544691,-16.954208217561245,-16.41786827892065,-15.80516330525279,-16.292579900473356,-16.16789778554812,-15.234787841327488,-14.768865189515054,-14.051291619893163,-13.726905340328813,-14.100510214455426,-14.019359656143934,-13.122677905950695,-12.445165973622352,-11.733958806376904,-11.069193459581584,-11.07183298515156,-12.028329927939922,-11.715898879338056,-11.725620814133435,-12.709237914066762,-12.70014504948631,-12.782025295775384,-13.164641919080168,-12.36568599473685,-11.42590384138748,-10.999847009778023,-10.144606623332947,-10.036009370815009,-9.122793950140476,-9.13081531599164,-10.075006375089288,-10.004894776269794,-10.276705840602517,-9.392090837936848,-9.493195307441056,-9.994443273637444,-9.91562435682863,-10.222077003214508,-9.252345358487219,-8.688999521546066,-9.300348547752947,-9.865952422842383,-9.29963251017034,-8.583719476126134,-8.80032199760899,-9.725928764790297,-10.285706974565983,-10.577946416568011,-10.941311275586486,-11.838085916824639,-11.706209474708885,-11.972236379981041,-11.004452861379832,-11.785926937125623,-10.871113657020032,-11.212023768574,-11.88940550526604,-11.715456154663116,-11.673366094008088,-12.483959841076285,-11.986127671785653,-12.382207365706563,-12.565398639068007,-13.200169098097831,-12.447552234400064,-12.266163479536772,-12.389437575824559,-12.169712816830724,-12.56579283485189,-13.271813881583512,-12.719942416995764,-12.33446692628786,-12.868355002254248,-13.421579378657043,-14.055610112380236,-14.151680337265134,-14.450206768233329,-14.366298087872565,-14.157747951336205,-13.506673058960587,-13.904463830403984,-14.185307426378131,-13.669890537392348,-14.438545273151249,-14.967227605637163,-15.111252624541521,-14.402134895790368,-13.72334731509909,-13.05884752748534,-13.446817987132818,-13.930918298661709,-13.98228183016181,-13.73159218672663,-14.091193217784166,-14.357923884410411,-14.42840491514653,-13.598190061282367,-14.166276064701378,-14.138985933735967,-13.37960141338408,-12.602526957169175,-13.500537087675184,-14.248303725849837,-14.75017303461209,-14.97146156290546,-15.005968844983727,-15.663172809407115,-15.693474898580462,-15.988192779477686,-16.711133426520973,-16.73608023719862,-16.222182027529925,-15.368509160820395,-15.473441252950579,-14.749171174596995,-14.200054161716253,-14.375516658183187,-13.639646072871983,-13.530345649458468,-12.75585271930322,-12.733106005005538,-13.266839487478137,-12.72249387903139,-12.094121577218175,-13.00910587143153,-12.036318129394203,-11.951616919133812,-12.88310438906774,-13.109879748895764,-12.491545342840254,-13.231178674846888,-14.15818560635671,-13.480439554899931,-13.344129604753107,-13.138793297111988,-13.513460918329656,-13.15425263158977,-12.886522915679961,-13.503186331130564,-14.052538204472512,-14.909095305483788,-14.007946117315441,-14.121676503680646,-14.086525291670114,-13.371176312211901,-13.8820885210298,-14.140675075352192,-14.097581510432065,-14.524811566341668,-13.996662792749703,-13.173093249090016,-13.095568689052016,-12.51802432956174,-13.303776564076543,-13.557526764459908,-13.189583407714963,-14.126008377876133,-13.429961240384728,-13.629808988887817,-14.369484879542142,-14.654053041245788,-13.908549581188709,-14.843163134995848,-14.002006825525314,-13.25441176444292,-13.745245336089283,-13.423727612476796,-14.138994083739817,-14.910016659181565,-15.115343485027552,-14.940437588840723,-14.024275090079755,-14.251326513011009,-14.288473527878523,-14.32203544350341,-14.501350950915366,-13.622392435092479,-12.685978034511209,-12.250981072429568,-13.13328894553706,-13.488634312525392,-12.85858059162274,-12.476639667525887,-12.644643295090646,-12.690824249293655,-13.580922684632242,-12.624799608718604,-12.958053296431899,-12.816451157443225,-12.985941944643855,-13.783998031169176,-14.138922404497862,-13.891920287627727,-13.125475307926536,-12.159295962192118,-11.563973206561059,-10.827147861476988,-10.055058171506971,-9.756783552467823,-9.253032001666725,-8.627091345842928,-8.208991216495633,-8.820838105399162,-7.938614524435252,-7.711344359442592,-7.0902574034407735,-7.0793500654399395,-6.1070784903131425,-6.625019032508135,-6.731668690685183,-7.721408579032868,-7.546028473414481,-6.860548686701804,-6.416754148434848,-6.063803604338318,-6.092689257115126,-6.016071210615337,-5.700516843702644,-6.0333067686297,-5.8538149474188685,-6.525781820062548,-7.321912268176675,-6.425966914743185,-7.144949089735746,-7.948667886201292,-7.2105108625255525,-7.59412812627852,-8.283256898168474,-8.500419087707996,-9.380263462197036,-9.250771353952587,-10.062434011138976,-9.654677575454116,-9.497093167155981,-9.680555176455528,-9.79585922183469,-9.49834327865392,-8.840233600698411,-8.757503958418965,-8.650612675119191,-9.627509756479412,-9.390460051130503,-9.920560426078737,-9.418980150017887,-9.655792268924415,-10.13548736134544,-10.89946296531707,-9.994315480347723,-10.367858215235174,-11.098776472732425,-10.23651224002242,-10.01937705790624,-9.562405291944742,-9.321816065814346,-10.028021129779518,-10.918303109705448,-11.674664072692394,-11.646331544499844,-11.346656968817115,-12.058960667345673,-12.744887995533645,-13.455302754417062,-12.660200437996536,-11.918680539354682,-11.794259244110435,-11.083510537166148,-10.449260549154133,-10.464663497637957,-10.39524843962863,-10.107691392768174,-9.502223898191005,-8.723979282192886,-8.579688495956361,-9.327808244153857,-8.396072772331536,-7.92801216384396,-8.068819171283394,-8.595128623303026,-8.212749812752008,-8.177067061886191,-8.523801702540368,-8.216335162054747,-7.803152106702328,-6.823863917496055,-7.695913517381996,-7.657947740983218,-6.907348682638258,-7.527152289636433,-6.9369368981570005,-7.34123842837289,-6.644687119871378,-6.01046993676573,-6.564578863792121,-6.69070384465158,-7.3167469426989555,-8.131266050040722,-7.3423022255301476,-6.679158020298928,-6.017398885451257,-5.017403924372047,-4.860092762392014,-5.346076145302504,-5.878723094705492,-5.846623266115785,-5.120770421344787,-4.409257422666997,-4.314323594328016,-5.09309215657413,-5.701085194945335,-5.401386040728539,-5.548202456440777,-6.127911190036684,-7.018980976194143,-7.764154225587845,-7.107492473442107,-7.4379100115038455,-6.621608843561262,-6.087396064773202,-6.662328317761421,-7.003042853903025,-6.4083482045680285,-5.939349772408605,-6.7131715272553265,-7.460216766688973,-8.090425014030188,-7.696555023547262,-7.842455321922898,-6.897276682313532,-6.5183201832696795,-5.931445652153343,-4.9620698895305395,-4.401777422986925,-3.707252782769501,-4.376140921376646,-4.1822350937873125,-3.548932676203549,-4.541040703654289,-5.129385243169963,-5.35518249636516,-5.899374306667596,-5.081825417466462,-5.467235995922238,-5.364046255592257,-6.28422919427976,-6.99042331520468,-6.000404504593462,-6.451681341510266,-6.031074222177267,-5.528426562901586,-6.038947789464146,-5.929177273530513,-5.809208205435425,-5.055114379152656,-4.765732963569462,-5.107270139735192,-4.417747963219881,-3.6392157706432045,-3.1360261710360646,-2.2032533516176045,-1.6342262821272016,-1.530725207645446,-0.9500512909144163,-1.7641954026184976,-1.6788844242691994,-2.4219746491871774,-2.5747667802497745,-1.656990029849112,-1.053300336934626,-1.089676165021956,-1.1659591882489622,-0.7145808511413634,-0.3395957890897989,-0.16608254332095385,-0.009179082699120045,-0.053549375385046005,-0.0883505535311997,0.446502354927361,0.28736809082329273,1.1169678112491965,2.1068553142249584,1.771649673115462,2.4635205818340182,2.182769772130996,2.9156971923075616,3.431207279674709,2.672897848766297,3.499467425979674,3.5329324076883495,3.4201746131293476,3.1457066810689867,3.759706981945783,3.2880116323940456,3.2781116948463023,3.1867891661822796,2.905419775750488,2.1579497097991407,1.875193739309907,2.791771692223847,2.260663367807865,2.686480239033699,2.6336785363964736,2.4587150206789374,1.4814705736935139,1.3512329212389886,2.1948452536016703,3.1117145107127726,2.4182690558955073,2.8153235660865903,1.8510200795717537,2.494993245229125,2.072698960080743,1.1795952473767102,1.2756618047133088,1.098641897086054,0.1517089414410293,-0.6177810304798186,-0.36475714202970266,0.2784082191064954,0.25167729659006,-0.32003922993317246,0.19430199824273586,-0.25668014539405704,0.4924258631654084,-0.2073630173690617,0.01665703020989895,0.3707178640179336,-0.10785731486976147,-0.78494459297508,0.023144013248384,0.7816037125885487,0.7409423827193677,1.204698596149683,0.5874394262209535,-0.34025095542892814,-1.299487132113427,-1.4266012194566429,-1.7501855320297182,-0.9312945962883532,-0.4921716507524252,-1.1662712208926678,-2.044494826346636,-1.0880245720036328,-1.0583592411130667,-1.1857907557860017,-0.3656899896450341,0.13615158991888165,0.14820006489753723,0.5831502489745617,1.1520661492832005,0.7066445238888264,0.482148424256593,-0.05569111555814743,-0.7560508861206472,-0.9441511407494545,0.00890128081664443,-0.3857146385125816,-1.2071711854077876,-1.1992816622368991,-0.6163722733035684,-0.9556795805692673,-0.8244441458955407,-0.6810653596185148,-0.655516957398504,0.16736535960808396,0.8481604517437518,0.8045905847102404,0.2650288646109402,0.03570112818852067,0.711294827517122,-0.06587581988424063,-0.4716032790020108,-1.3552476684562862,-1.8482688395306468,-1.7801792928948998,-1.0998732568696141,-0.19657511683180928,-1.0752180046401918,-1.08254059497267,-0.417377470061183,-0.9831196065060794,-0.7044493621215224,-0.5815539048053324,-1.0238769119605422,-0.6425049188546836,-1.1142242820933461,-1.7446595798246562,-2.234855765476823,-1.567505129147321,-1.3426571590825915,-1.2694911686703563,-1.2411682037636638,-0.9669144875369966,-1.062762991990894,-0.5790076935663819,0.3179773958399892,0.2501655435189605,-0.04576205601915717,0.05031667836010456,0.5009172577410936,1.1345920944586396,1.721813041716814,1.274281517136842,1.9465643409639597,2.3540625041350722,1.9214860890060663,2.126236769836396,1.320594059303403,0.43948296597227454,1.1370365065522492,0.9269880657084286,1.8765566041693091,1.829394997563213,1.4505774811841547,1.8632025131955743,1.9304413036443293,2.468701995909214,3.391131727490574,3.5045818598009646,3.1505712810903788,2.6253678714856505,3.546109232120216,4.445364068262279,3.7678990443237126,2.92420701822266,3.799358400516212,2.9668098837137222,3.2663296507671475,3.4826621981337667,4.2013775166124105,4.641618836205453,4.822771884966642,4.147856587078422,4.54787489771843,5.044873607344925,5.241636221762747,4.967394921928644,5.066561107058078,4.743966091889888,4.104960023891181,3.97910962626338,4.053668225184083,4.374254527967423,4.577313898596913,4.928609994705766,5.814710231497884,5.358632042538375,5.605290784500539,5.028066880535334,6.008217209484428,6.593313469085842,6.277285595890135,5.927571646403521,6.675191928166896,7.591762610245496,8.145743062254041,7.696102226618677,8.187239261809736,8.29382189316675,7.873858505859971,8.548293513711542,8.207585494965315,8.653226812370121,8.986274148337543,9.766689429059625,10.432997910305858,10.030080360826105,9.727624418213964,8.883902614470571,9.075814771465957,8.833463713992387,8.282428716309369,9.0275336522609,9.78808433841914,9.85445458535105,9.394344230182469,10.259816498029977,10.895815331954509,10.770565766841173,10.162216700147837,10.833017806056887,11.614695486146957,11.885445578955114,12.572682865895331,13.472695439588279,12.495813047047704,11.907351598143578,12.728648324497044,13.055554568301886,13.944050119258463,14.249073980376124,14.181031990796328,14.980664340779185,14.2352238856256,14.139619091991335,13.96147668082267,14.347466692794114,14.17044690810144,14.978531764820218,15.602508187759668,16.597663143649697,17.536377929151058,17.14340014755726,16.728447363246232,16.08961263112724,15.161417970899493,14.79856989486143,14.209329548291862,14.725384581368417,14.934366039466113,15.504146344494075,15.998720932751894,16.129574020393193,15.497095809783787,16.178217502310872,16.381702520418912,16.607353806030005,16.934961054939777,17.17746780999005,16.298450372181833,16.888978218194097,17.675970579963177,16.924971693195403,17.161380610894412,17.574280695058405,16.753790720831603,16.804612193722278,16.864823196083307,17.79627255583182,17.47740769572556,16.970347955357283,15.979709974955767,16.691092655528337,15.799570485949516,15.748833027202636,15.088444688357413,14.111047736834735,14.812460753601044,14.436175904702395,15.282899995800108,14.330318147316575,14.655810474883765,15.556180507410318,15.753025106620044,15.240662631113082,15.151141250506043,15.166873923968524,14.663282913155854,14.308391442522407,14.476773810572922,15.16433192929253,15.90928513975814,16.286344767548144,16.004185473080724,16.505892226472497,15.69814360095188,15.443434736691415,16.2177876601927,16.500030927360058,17.196279681753367,17.408389946911484,17.972300095018,18.850867956876755,19.816165073774755,18.98007962666452,19.493618455715477,18.793238434474915,19.242746945936233,20.18025482725352,20.305354678072035,20.916660671122372,21.505201269872487,20.729585527442396,19.770596540998667,19.045769303571433,18.965618199203163,18.78870249213651,18.79744361806661,18.050283337477595,17.53241609968245,17.730493287090212,18.696272521745414,18.961799795739353,19.87246664520353,19.246786747593433,18.710013731382787,19.254745443817228,19.136522798333317,18.525581882800907,19.364100065547973,19.50719137955457,19.972558222711086,20.585988273844123,21.540386401116848,21.89652437949553,22.883426240179688,23.85478500649333,24.41110107023269,24.25137230148539,25.04349198564887,24.842115867417306,25.157013937830925,25.35655038105324,26.32419531000778,25.745867842342705,25.452937797177583,26.353040548507124,26.451444040518254,26.958646980579942,27.943278085440397,27.86638559633866,27.477723728399724,26.807874655816704,25.99231489188969,26.448491489049047,26.213789490051568,26.589807133190334,26.495593337807804,25.534171390347183,26.035111924167722,26.398774570785463,25.71246789721772,25.29968019714579,25.634363723453134,26.339485915843397,26.053567577619106,25.470031393226236,25.80378719093278,26.55053117359057,26.42473948094994,26.17653545178473,25.257094112224877,26.03279064456001,25.191869237460196,25.40977563802153,25.88586711930111,26.4597570002079,25.821483581792563,25.297140858136117,25.635085546411574,25.637216553557664,26.448482597712427,26.795323364902288,26.818343084771186,27.13190576992929,26.79644088074565,25.841826756484807,25.504354083910584,25.7765517947264,25.687820036895573,25.006838236469775,24.810718744061887,24.20932086929679,24.302375629544258,23.65944463806227,23.594950672239065,24.001130619551986,24.530212244484574,24.26312346244231,24.82502130465582,25.697313544806093,25.275879953987896,24.296513331588358,25.020692754536867,25.23746883030981,24.693732253741473,24.44434476364404,24.779996851924807,25.18399110622704,25.036217538174242,24.33271778607741,24.047261198982596,23.946978903841227,24.538740108255297,25.472923518624157,24.651409588754177,23.933560182806104,23.413359885569662,23.436011438257992,22.492004790809005,22.72084311163053,21.766074643004686,21.81289308704436,21.785415625199676,22.019334502518177,22.149101375136524,21.673907321412116,22.61301156692207,22.874945976771414,22.449813318438828,23.291182471439242,23.784997991286218,24.575135050341487,25.490955935791135,25.692485854495317,26.49827737500891,25.545027079991996,25.394909834023565,25.284290513489395,25.18687027459964,25.508840264286846,25.195298126433045,24.70221791230142,25.688803307712078,25.488525124266744,25.297846246510744,25.39472884312272,25.51981241768226,26.17657806351781,27.094758866354823,27.198793892282993,26.817210424225777,26.24244916718453,26.382563813123852,25.459464865736663,24.886302365921438,23.999210884794593,23.5393922124058,23.42981554241851,24.124650228302926,24.72438776353374,25.289477972779423,24.84770811581984,24.760688512586057,24.420321106445044,24.697140544187278,23.99066037638113,23.253096173517406,23.983277411200106,23.624951208010316,23.187139264773577,22.224016442894936,21.702459982130677,21.854070857632905,22.114351329859346,22.340863271150738,21.701051082927734,21.682125730905682,22.41270244633779,22.45020434446633,22.769822625909,22.4396185381338,21.78447996964678,21.97402374399826,21.462196682114154,22.103809310123324,21.136415850371122,21.639626750256866,21.47322865203023,21.671445447485894,22.513790674507618,23.434704187791795,23.29554363247007,23.82984555279836,23.282016462646425,23.680025107227266,22.988565063569695,22.420933509711176,22.20909754280001,21.861317238770425,21.445750046521425,21.446094625629485,20.454193132929504,20.681083304807544,19.99651406519115,20.48395086079836,21.09118733042851,20.954373543616384,20.12576479651034,20.9270612266846,21.7757101142779,21.343766445294023,21.717413935344666,20.811762132681906,21.694061509799212,22.33798785833642,22.106006087735295,22.317039262503386,23.288192799780518,23.8892631130293,23.810607148800045,22.92554777301848,22.556597816757858,22.53429010277614,21.881174803711474,21.879295479506254,22.06202033907175,23.03537289891392,22.397800089791417,21.867605892010033,21.05992434360087,20.211429697927088,20.036866885144264,20.96248968411237,20.230724507477134,20.638194625731558,21.115432233083993,21.307800442911685,20.968975502531976,21.59705926431343,20.893780688289553,20.89133064309135,20.526878233999014,19.748574688099325,19.607566421851516,19.028058850672096,18.463653655722737,19.228097282350063,18.32326958887279,18.581241683568805,17.87436323519796,18.782443947624415,19.511914737522602,18.56885983608663,19.289048531558365,19.608642475213856,20.58803605940193,19.614754274021834,19.327567749191076,18.864848100580275,19.03222458437085,19.066554674878716,19.724594510626048,18.783858539070934,18.606572879943997,19.317579679191113,20.007008352782577,19.795351424254477,19.327354573179036,19.743819539435208,19.2265034141019,18.25815294124186,19.003984164912254,18.937470217701048,18.64739342406392,18.6642934367992,19.28584299888462,19.60974062839523,19.32743495516479,19.039199679158628,18.73901352752,17.813121815677732,18.20393650792539,17.60235922317952,17.111916022840887,16.872109197080135,17.507375383283943,17.68631561798975,18.644786837045103,18.81026071961969,19.244491573423147,18.669245470315218,18.870676873251796,18.260917448904365,17.946696038357913,17.871300886385143,18.382531912997365,17.83858951367438,17.027097668498755,17.40822204714641,17.102631383109838,17.38939245324582,17.148083344101906,17.601552810985595,17.10024047922343,17.300172980409116,17.427869827486575,17.28598095383495,17.397537618875504,16.444177978206426,16.058054719585925,15.3026507133618,16.00468433322385,16.061179366428405,15.87895147362724,16.58974390150979,15.667587193660438,15.317717157304287,15.354697328060865,15.930129488464445,15.295766657683998,14.566747131757438,15.505853281822056,16.24071495141834,15.632298916112632,15.666878922842443,16.28218430839479,17.09028025344014,17.850836033001542,18.277671106159687,17.428446235135198,16.646299850661308,15.79127290006727,15.196967909112573,16.169952255208045,16.560121474787593,16.595511023886502,16.05292989918962,15.966260102577507,16.292518301401287,15.598071062471718,15.35166906984523,16.172906894236803,15.789853555615991,15.879207976628095,16.77357283094898,16.562693024985492,17.411148827522993,17.85254617454484,16.90931652672589,16.045947639737278,16.39428561925888,15.765924879349768,16.443399775307626,15.545283672399819,14.97323558293283,15.782327295746654,16.6432151151821,16.695483351591974,16.41208336595446,16.82857898902148,17.572938168421388,18.499799851328135,18.91558169107884,18.41161852236837,18.630743535701185,19.41490784753114,19.40216886252165,18.920526913832873,19.64734710427001,20.07744627073407,20.16363751096651,20.304533852729946,20.670631901361048,20.8136969152838,21.686347872484475,21.39056317973882,20.70848283264786,19.97518858872354,19.173871089704335,18.688191782217473,18.09068030724302,17.21962638013065,16.77107316115871,16.637495829723775,16.573063984978944,16.695392557885498,17.037748164962977,16.93263234803453,16.440852696541697,16.867931267712265,16.119549450930208,15.476043573580682,15.927611521910876,16.073879572097212,15.211422483902425,14.2307796231471,14.18748002126813,13.924537032376975,13.531782428268343,13.76593818794936,12.798072800505906,12.551983847748488,12.296043862588704,13.192743541672826,12.998741815797985,12.930977853015065,12.886982137337327,13.809817664790899,14.152902719564736,13.51210696529597,14.16437113424763,15.10570094268769,14.511975376866758,14.353885040152818,13.591393347363919,12.95126060442999,13.484348406549543,12.512876573950052,12.225956584792584,12.42841569473967,12.845029629766941,12.843467865139246,13.651491047348827,14.42594640608877,15.025850451551378,16.014326276723295,15.52559830993414,14.968072718475014,15.528879722114652,15.883904938586056,15.138693602290004,15.161586055532098,16.091607309877872,16.394156942144036,15.865489141549915,16.804086743853986,15.993612801190466,15.990424995776266,15.36794937774539,16.32267554011196,16.14129629638046,15.6298439046368,15.590925329364836,15.5306804808788,16.36706601968035,15.918199569918215,15.795741513371468,15.089047214947641,16.04981329292059,16.35820801835507,17.023565256036818,16.230696022044867,15.761282057501376,15.028072237502784,14.920387914869934,15.049931941088289,14.927216562442482,15.639374101068825,15.677255311980844,16.537937295157462,16.09863344859332,16.205512716434896,16.767953204456717,16.312092234846205,17.23740844009444,16.634055305738002,17.304690550081432,17.048504231963307,16.450240798294544,15.63214243715629,15.152468709275126,15.580999289639294,15.096147160977125,14.197788922581822,13.899479836691171,14.406889964360744,13.414105286821723,13.238264215644449,13.361077904701233,12.90581486839801,11.99913417454809,12.990784845780581,13.644879594445229,13.82428701967001,12.94963771989569,12.926243773195893,13.45574021851644,13.95477429125458,14.41285358602181,15.060580119024962,15.465816283598542,16.285978672560304,15.740134574472904,16.33351301588118,17.062304573133588,16.97927365079522,16.39321387372911,15.731674386188388,15.040448774117976,15.321777684148401,14.724720149766654,14.274954526219517,13.387147492263466,13.945085901301354,13.640444323420525,12.907994494773448,12.719451424200088,12.95649079605937,12.789880690164864,13.045824761502445,13.508479084819555,12.860910871066153,12.119528363458812,11.942049066536129,11.394372512586415,11.022942880168557,10.435383448842913,11.012334503233433,11.847618585918099,11.22834584955126,11.83359978813678,11.411644030828029,11.368141683749855,11.90451493812725,12.759746024850756,12.476150227244943,11.570872685872018,12.051503381226212,11.583096692804247,12.128147646319121,11.220381463877857,12.021901191212237,11.692189840134233,10.894487243611366,11.64162270957604,12.497457466088235,12.537757905665785,12.667671302799135,13.628935304004699,14.413862597662956,14.726146174129099,15.33799074869603,15.595762509852648,14.621729168575257,15.196747375652194,14.998321294784546,15.620815868023783,15.245939461514354,14.538323908578604,15.007814110256732,14.045868657063693,13.706596482545137,13.858942047692835,13.263283445965499,12.765257780440152,13.044747395440936,12.447729291860014,12.615279511548579,11.952515750657767,11.649808415677398,10.684450554195791,10.658943835180253,10.769434875808656,10.225407916121185,10.307648358400911,10.967668989207596,10.013120676856488,10.205946283880621,9.570484125055373,9.356560101732612,9.941533955279738,9.726050595752895,9.451956232544035,8.793280631769449,8.83659595111385,8.117245354223996,9.006900153122842,8.899425422772765,7.984024713281542,8.962649655994028,9.856569113209844,10.539111910387874,9.93440546700731,9.760395287070423,8.860706022474915,9.367455595638603,9.09415468852967,10.089972412213683,9.793405810371041,10.55048615206033,10.702470096759498,10.191693568136543,9.985847967676818,10.54224923811853,10.057702721096575,9.563156861346215,9.158195700962096,10.11004300834611,9.741390271112323,8.74869846040383,9.012874322012067,8.327414486091584,7.934050212614238,8.104137021116912,8.632553512696177,8.561994512099773,8.466766892466694,8.882696403190494,9.45257668942213,10.133512740023434,9.666835197247565,9.462986065540463,9.478301051538438,8.489136079791933,8.00192606728524,8.814529886003584,8.198266858700663,8.459823637735099,8.329336232040077,7.408821324817836,8.114536289125681,8.971751326695085,9.297515537589788,9.19356561359018,9.308379063848406,9.964315614197403,9.563469239976257,8.798700728919357,9.201780763920397,9.975147522520274,9.145810696762055,9.623540515080094,10.463852173648775,9.865207137539983,9.928338914643973,10.452426305040717,9.81760078202933,10.78552382811904,11.010768444277346,11.182569405529648,10.4303859192878,9.647714029066265,9.543963390402496,10.47646388458088,10.978792338632047,10.052556056529284,9.148445731960237,8.469211474992335,8.440690328832716,8.556614517234266,8.345575732178986,8.222587302792817,8.756301214452833,8.520653612911701,9.075588346458972,10.056742302142084,9.600456073414534,10.162208517547697,9.9574753199704,9.107847678475082,9.361116006970406,9.22866053180769,8.360937590245157,7.472922882065177,7.142182269599289,6.847117466386408,5.915230872575194,6.092713228892535,6.485805591568351,5.96168170357123,6.247163547668606,7.188833819702268,6.545453104190528,6.774039159994572,7.134416685439646,8.009252661839128,7.56758716609329,8.049564091488719,7.249423976521939,6.737920301966369,6.0566517766565084,5.7182044931687415,5.320822367910296,4.441356511320919,5.346893472131342,5.295510552357882,5.095511423889548,5.682831364683807,5.32767127873376,6.057521267328411,6.181747873779386,6.054311059881002,6.840515468735248,7.007068578153849,6.851638408843428,6.57436678186059,6.449252394493669,5.46921709086746,4.766707646194845,4.142667876556516,4.826393795199692,5.802777094300836,4.976238337811083,5.332437104545534,5.873826547525823,6.441996575333178,7.042835099622607,6.853110565338284,6.7590196137316525,6.902231265325099,6.69326735753566,7.15220617223531,6.655179183930159,7.52697167173028,6.882233264390379,7.84954620571807,7.402770954184234,7.897373664192855,8.52352667786181,7.895381690002978,7.341010646428913,6.794249174185097,7.196390826255083,8.181163102854043,7.7118945573456585,7.46910039242357,7.945000065024942,8.785813687834889,7.868199113290757,7.338223022408783,6.5215781312435865,5.86217273818329,4.98464864725247,4.376951241400093,5.066675761714578,5.958698095288128,5.845492552500218,5.922328798566014,6.367298275232315,6.719094006344676,7.262739658821374,7.222718637436628,6.450324573088437,6.624223700724542,7.0476788356900215,7.151358676142991,6.812309890985489,7.238221647683531,7.697621298022568,8.158289804123342,7.4070795169100165,7.668492319993675,7.880512050352991,7.259334294125438,8.176947476807982,8.435045475605875,7.799156425986439,7.901378447189927,8.092859048396349,8.309805604163557,7.741179088130593,7.893560031894594,7.463595813140273,7.274276991840452,6.814155619125813,5.886779044754803,6.571788074448705,6.07413348229602,5.893156135454774,6.271250411868095,6.107980741653591,6.404161026701331,7.198339174035937,8.127107692416757,7.520191071089357,7.506303514819592,7.847948103677481,7.638809059280902,7.459661923814565,6.686880738474429,7.124569788575172,7.257679905742407,7.5891684596426785,7.958689847029746,8.283879584632814,9.062211755197495,8.920759294647723,8.603642868809402,8.769839975982904,8.742106055375189,8.120101533830166,7.604932431131601,7.508772417437285,6.988797980360687,6.973858718760312,7.295005009975284,6.899424720089883,6.0842967834323645,6.923574399668723,6.197249886579812,7.094522055238485,6.278659056406468,5.3027894464321434,4.721749699674547,4.81673095934093,5.486004563048482,5.1521827187389135,5.412941406480968,6.296364453621209,5.7602217542007565,6.629015846643597,6.533456603065133,5.82397649390623,6.60191442957148,5.903551030438393,5.204087809659541,5.545015616342425,5.002804351039231,5.297982624266297,6.275850258767605,5.692141842562705,5.421406051609665,5.232275466900319,4.691273994278163,4.712973497342318,4.799565073568374,4.546764249447733,4.3504928313195705,4.497022938448936,3.682682109531015,4.173227321822196,4.454304485116154,3.609603854827583,3.0943361446261406,3.1819359650835395,4.173116446472704,4.475170672405511,3.9338849261403084,3.893409360665828,2.988286254927516,3.237997349817306,3.6819699215702713,2.8559899642132223,2.3921544793993235,2.4580634268932045,3.011078790295869,2.9394816770218313,2.6245203432627022,2.9585052193142474,2.3373667313717306,3.1428048382513225,2.5179295879788697,3.247761367354542,2.4632821399718523,1.5701009291224182,2.195076545700431,1.9978584903292358,2.2434071940369904,1.6058217813260853,1.6906779981218278,1.414068451616913,1.6315847900696099,2.2184498994611204,3.0211421605199575,3.8559166034683585,3.7016214253380895,2.867161254864186,2.780785364098847,2.726454399060458,3.035031456965953,2.3423176938667893,2.379925288259983,1.5771042038686574,1.7694213180802763,1.7099521583877504,1.3495455803349614,1.794212925247848,1.3978128703311086,1.8806961826048791,1.312974161002785,1.4224121705628932,0.80933842016384,1.3533377307467163,1.3704128772951663,1.8334973519667983,2.1768705039285123,3.142988032195717,3.338213483337313,2.368616590742022,2.7281560702249408,2.2568327360786498,3.0178324091248214,2.890759120695293,2.269664629828185,1.94915453158319,1.5315118888393044,1.3011740827932954,0.4657055977731943,1.3934874408878386,1.2794506223872304,0.5603110031224787,0.1504676165059209,0.7789733069948852,0.23179245134815574,0.22505512554198503,-0.35724582988768816,0.4597218967974186,-0.44276877818629146,-1.428173707332462,-1.9254496437497437,-1.8916273494251072,-1.2887653657235205,-1.4361969758756459,-0.6688665663823485,-1.5648106425069273,-1.9671193952672184,-2.712439806200564,-2.803266095928848,-2.9896926563233137,-3.4793640640564263,-3.581061530392617,-3.1012289207428694,-3.7885576323606074,-4.244173663202673,-3.8319301824085414,-4.115136682521552,-5.038084350060672,-5.221891555469483,-4.425275637302548,-4.755675085354596,-5.365547205321491,-4.617478939704597,-4.5940767005085945,-3.871904417872429,-3.9958923598751426,-3.563459080643952,-3.214524040929973,-3.0300918514840305,-3.254158698488027,-3.474873560015112,-3.7559401467442513,-4.406926322262734,-3.7079994650557637,-2.7364454488269985,-2.602618841920048,-3.396197893191129,-4.020673570223153,-4.813342068344355,-5.013940346427262,-4.486272243317217,-5.414960520807654,-4.616834191139787,-5.396786558907479,-4.601426998153329,-4.806757950223982,-4.058692917693406,-3.994380495045334,-4.654064955189824,-4.405233973171562,-3.5610033199191093,-3.899933661799878,-3.320831931196153,-2.8099246211349964,-2.886296472977847,-2.344472968019545,-1.6614199155010283,-0.8522918028756976,-0.06719485903158784,0.5180824398994446,0.6830230532214046,0.8803667747415602,1.204194763675332,1.154639187734574,1.3652021987363696,0.7895778710953891,-0.04535599844530225,-0.10081962822005153,0.8406779579818249,1.5648157242685556,1.4943624162115157,1.2025245898403227,1.6523581873625517,2.5231590452603996,1.857793774921447,2.432581244967878,3.2297956408001482,2.6555725946091115,1.8494198699481785,2.3944768575020134,3.31077566370368,2.429309249855578,2.8180479453876615,2.2218487206846476,2.0770934601314366,2.445234059356153,3.177969308104366,2.3875729790888727,1.7950876927934587,1.357446646783501,0.8314376967027783,-0.13297789450734854,-0.7875077081844211,0.07959589315578341,0.26994374953210354,-0.23035942623391747,0.4052548916079104,0.8950033141300082,1.522290350869298,1.4621341465972364,0.5724947764538229,-0.02204040251672268,0.207108736038208,0.2208106075413525,1.187369683291763,1.5160868735983968,1.4807030642405152,2.4593368391506374,3.178149196319282,2.980957665015012,2.2415031446143985,1.864259243477136,1.5662415083497763,1.1669989954680204,2.1519792918115854,2.8262323420494795,3.351568323094398,3.6220548124983907,4.156573863700032,4.858710885513574,3.963036279194057,4.239444673992693,4.510949777439237,4.2599951843731105,5.147907733917236,5.168875358533114,4.80192907853052,4.965162121225148,5.035372341051698,6.00887591438368,5.379486954770982,4.5301099377684295,3.953571616206318,4.463839725591242,5.288580358959734,5.010069034527987,4.258050607983023,4.013473974075168,3.1376962661743164,2.566065705846995,2.362760794814676,2.4966886173933744,2.5632724007591605,2.843186224345118,3.4475516863167286,2.6741275978274643,2.5993228941224515,2.7514344910159707,3.511796879116446,2.6086513199843466,2.2696259384974837,1.7648657415993512,1.604225464630872,2.597808027639985,3.209331820253283,3.5275942594744265,2.9010135270655155,1.9259895817376673,2.2547860741615295,3.2465729652903974,2.76115567330271,2.1653780662454665,2.283936085179448,2.7827178463339806,1.8911712430417538,1.8037137645296752,2.192673427518457,1.9258520207367837,1.5289462092332542,1.1991256456822157,1.5062403324991465,1.3259298522025347,1.512444831430912,1.9736619959585369,1.6830290132202208,1.1751821064390242,0.9404274388216436,0.465491752140224,0.26151054399088025,0.23503972310572863,-0.017323740292340517,0.9321657144464552,0.25186475180089474,0.7283190949819982,1.6726951785385609,0.8802801128476858,1.2009297967888415,0.24136941833421588,1.1006521643139422,1.668898246716708,1.2955753006972373,2.0741016743704677,2.138607290573418,2.2238148623146117,2.265638415236026,2.221607154700905,1.7617538990452886,1.6177094923332334,0.8716510199010372,1.498340061865747,2.1715918094851077,2.553242384456098,3.3867002641782165,3.342002778314054,2.6567236077971756,3.144103976432234,3.933863975573331,3.9433581377379596,3.9867065991275012,4.719031821005046,3.841078892350197,4.440123891923577,3.576300600543618,3.9290614617057145,3.455959666520357,4.034491778817028,4.21116058062762,4.0773849580436945,3.088994501158595,2.532652915455401,3.1740873814560473,4.137148767244071,4.451931995339692,4.5751073164865375,3.7406422654166818,3.5629002898931503,3.041818035300821,2.843735495582223,3.505690386518836,3.281346518546343,3.0432117371819913,2.5641054743900895,1.7099349685013294,1.915151834487915,2.5734741194173694,2.838065041229129,2.7790555632673204,2.2267331653274596,2.821153753902763,2.1912963767535985,1.2247173781506717,0.5939609413035214,0.23981322767212987,0.7842025016434491,0.05788578139618039,-0.18925531581044197,-0.8342889179475605,0.10108885355293751,0.2545906384475529,0.5902102896943688,0.15406755125150084,0.30674563720822334,-0.1906357714906335,-0.1422785520553589,0.218479978851974,-0.6759627102874219,-0.7523551043123007,-1.0786207243800163,-1.684622549917549,-2.3197602685540915,-1.8052711030468345,-2.009978473186493,-1.1835458767600358,-1.2825111118145287,-0.7921618190594018,-0.31444156216457486,0.618580776732415,-0.2850529169663787,0.10151874087750912,-0.8070385330356658,-0.5515955965965986,-0.022725467570126057,0.02437880029901862,-0.4433528995141387,-0.4099708688445389,0.24809735780581832,0.01949577545747161,-0.9405270805582404,-1.2211122275330126,-1.2857056315988302,-1.8598742363974452,-2.108609815593809,-2.132996088359505,-2.049371535424143,-1.4542953437194228,-1.3305611456744373,-1.6085316226817667,-2.3076608907431364,-2.3629071433097124,-1.9069655258208513,-1.1686764662154019,-1.1377010880969465,-1.3511028196662664,-1.8333034198731184,-2.770469068083912,-3.045384535100311,-2.666033549234271,-1.7454318841919303,-1.0521087814122438,-0.7295516547746956,-0.5553132579661906,-0.5710808830335736,0.25495263934135437,0.6538622742518783,1.6361284237354994,1.8246680051088333,1.5011672731488943,1.7238380727358162,1.2881692545488477,0.379742453340441,1.0954964002594352,0.512107040733099,0.7054873015731573,-0.11427406733855605,0.6994472928345203,0.5668079243041575,0.9919593469239771,0.8289375398308039,1.6205562744289637,2.0517560192383826,1.7747120088897645,0.91027922462672,0.7269004350528121,1.0933111514896154,0.6870605098083615,0.8721117726527154,0.8136464315466583,1.6793779102154076,1.576421923469752,1.5388650828972459,1.4554151543416083,1.8819548315368593,2.1673953398130834,2.1643919800408185,2.7856458756141365,3.5467430618591607,3.9417163422331214,4.405671983025968,5.183646598365158,5.4502848270349205,5.808404203969985,5.56266169436276,5.544452612288296,6.094802375882864,5.5167957516387105,5.7499051368795335,6.209208480082452,5.817487945780158,6.423122834879905,7.3615631139837205,7.253596562426537,7.1584231103770435,7.107425554655492,6.206858286168426,5.314512325916439,4.676273380871862,4.1725735533982515,4.333173192106187,3.906676429323852,3.078367255628109,2.484154441393912,2.454495501704514,1.9216711102053523,1.392678358592093,1.6500232117250562,1.151849739253521,1.7917759236879647,2.0875317994505167,2.130763781722635,1.937918426003307,1.5086711682379246,2.4010409410111606,2.104558444581926,1.1333855953998864,0.4766464396379888,0.6532925888895988,0.04597750632092357,0.048564070370048285,-0.6985022821463645,-0.6657868791371584,-0.8527370532974601,0.00031652068719267845,0.40375820454210043,0.8268271926790476,0.6511856992729008,0.8698926717042923,1.7636555009521544,1.4362979107536376,0.7323139104992151,0.8714772649109364,0.9989359825849533,1.328737725969404,1.4001924572512507,0.9718822790309787,0.22728103073313832,1.0714215766638517,0.6482627554796636,0.5357471508905292,-0.03820737637579441,-0.37766567384824157,-0.3093332196585834,-0.8719217418693006,-0.7010165904648602,-1.2257928443141282,-0.515473916195333,-0.10669548530131578,-0.08381144050508738,-0.9541990291327238,-0.47803444135934114,0.34376658545807004,0.29448974411934614,-0.1403018687851727,-0.12860126653686166,0.04212500946596265,-0.6720493868924677,-0.3659688518382609,0.32518724305555224,-0.057518314104527235,0.47280563972890377,-0.19246036000549793,-0.9413034007884562,-0.9197817300446332,-0.5311291683465242,-0.6067480179481208,-1.4077627528458834,-1.6153234136290848,-1.7949600839056075,-1.7740084170363843,-2.490235070232302,-3.0785073544830084,-2.5297418134287,-2.7156100077554584,-3.6255491939373314,-3.2006329367868602,-3.31098739663139,-3.674456076696515,-4.358523312956095,-4.624159658327699,-4.3014188995584846,-3.8823746647685766,-3.3411271814256907,-3.7412148085422814,-3.199516147375107,-3.2073883367702365,-3.032784932292998,-2.299418196082115,-1.8753250981681049,-2.2243216214701533,-1.3506849482655525,-1.335358114913106,-1.0536432126536965,-0.8019086746498942,-0.7703598388470709,-1.0470631499774754,-1.0373827731236815,-1.081695751287043,-0.24569980800151825,-1.0273929913528264,-1.076180572155863,-1.7686327300034463,-2.2416563499718904,-1.3578335349448025,-2.3402639837004244,-2.9494163570925593,-2.709375612437725,-2.0762753942981362,-1.7097042757086456,-0.7530112345702946,0.053017972968518734,-0.48895880952477455,0.014413455035537481,-0.0006354823708534241,0.8515958008356392,1.1562070320360363,0.19573534280061722,0.528877034317702,0.1628100024536252,1.1524343132041395,1.2877559694461524,0.6507899034768343,1.1840144419111311,1.7421176880598068,1.4956575883552432,0.9375607063993812,0.13735787570476532,0.07708920445293188,-0.6588480439968407,-0.8082195091992617,-1.0563044864684343,-1.838651280850172,-1.6465114364400506,-0.9695457010529935,-1.8500367626547813,-1.9166195476427674,-2.6546107660979033,-2.5396656510420144,-3.0481142913922668,-3.0074382023885846,-2.3843044731765985,-2.8005345528945327,-2.8202015520073473,-1.8612095257267356,-1.4243420311249793,-1.6614620662294328,-2.2948809461668134,-2.1400497928261757,-2.509516549296677,-1.6812387849204242,-1.1169960694387555,-1.746390894986689,-0.7954960013739765,-0.623646660707891,-0.8338577784597874,-0.9856452522799373,-0.37066572811454535,-0.9609695677645504,-1.2222292898222804,-0.9647235553711653,-1.4320010100491345,-1.4039260637946427,-1.8028959669172764,-2.799935535993427,-1.9690061253495514,-2.844031000509858,-2.0200713337399065,-1.0935233370400965,-2.0365549731068313,-1.824735801666975,-0.9361123540438712,-0.6554856798611581,-1.2783970586024225,-2.1972626009956002,-1.6073024622164667,-2.2298839734867215,-1.3705173046328127,-2.3435563924722373,-2.5758494841866195,-3.4150717332959175,-3.250498053152114,-2.5826279218308628,-2.4576619318686426,-1.68535361206159,-0.8379242867231369,-1.7661512484773993,-2.5051726195961237,-2.467377399560064,-2.6127430484630167,-1.997575905174017,-2.807648442685604,-2.4189767739735544,-2.78837285656482,-2.6674688067287207,-3.437278733123094,-3.295662742573768,-2.6471806303597987,-2.820282442960888,-3.2815122455358505,-2.816805456764996,-2.9707630407065153,-3.274191588163376,-2.7251718370243907,-2.7686155950650573,-3.2301431843079627,-3.5425165835767984,-3.8475235416553915,-4.639345857780427,-5.589125501457602,-5.133718686178327,-4.271411051042378,-4.781723544467241,-3.8596516642719507,-3.5465172147378325,-3.3256043852306902,-2.471650304738432,-1.9359477325342596,-1.5385927818715572,-2.468868736177683,-3.43671997776255,-2.4768045842647552,-2.634917906485498,-2.668832117225975,-3.0494667761959136,-3.6405547987669706,-3.0434791641309857,-2.466716513969004,-1.9395663114264607,-2.01068161893636,-1.7351250029169023,-1.1001051827333868,-1.142262025270611,-1.8518310473300517,-2.6138290148228407,-2.1640103859826922,-2.2292492329142988,-1.976320680230856,-2.5983758899383247,-2.8308917731046677,-2.7420663363300264,-1.9336191546171904,-1.5361670455895364,-1.802775766234845,-2.14221965149045,-2.8696265146136284,-1.9826947078108788,-2.8603121847845614,-3.3840636550448835,-2.8655199208296835,-2.4768666783347726,-2.3161709350533783,-2.0417241882532835,-2.0269658803008497,-3.007304994389415,-2.0819171858020127,-2.42281141737476,-2.3759491643868387,-2.4911729972809553,-3.4241492436267436,-4.2366899605840445,-3.6762326867319643,-3.5984864165075123,-2.8952111206017435,-3.77543427888304,-4.7361044911667705,-5.720988546963781,-5.0598120940849185,-5.490796978585422,-6.411236350424588,-6.567653732839972,-5.679559870623052,-5.884965429082513,-5.3422609604895115,-4.7626466220244765,-4.302466494496912,-4.903404941782355,-4.6882028062827885,-4.079256542026997,-3.476666649337858,-3.0451327725313604,-2.2138280593790114,-2.8205274608917534,-2.1264789681881666,-2.451602876186371,-3.390507773961872,-4.080016554798931,-3.5079579683952034,-2.7634509038180113,-1.8631630199961364,-1.0299090598709881,-2.01029414171353,-1.7455499451607466,-2.019910848233849,-1.9190550791099668,-1.0906432550400496,-0.760298362467438,-0.03531102603301406,-0.10088221123442054,0.8434460423886776,1.594959253910929,2.2838865448720753,1.6334152538329363,0.8787835910916328,0.31489267107099295,-0.5485954382456839,0.002464340068399906,0.5069440072402358,0.0375093761831522,-0.16044795466586947,-0.7231591939926147,-0.3713468280620873,-0.9654661626555026,-0.3609163071960211,0.18924962356686592,0.20607997896149755,0.4666690118610859,-0.46723828883841634,-1.0487629370763898,-1.331183900590986,-1.7057239930145442,-0.7609990127384663,-0.601446243468672,-1.5661403434351087,-2.2406608927994967,-3.1381204864010215,-3.8136048070155084,-3.475185224786401,-3.336576250847429,-2.920324525795877,-2.3083343589678407,-2.9615148208104074,-3.9069132856093347,-4.00262954691425,-3.493127904832363,-4.278014755807817,-3.448658522684127,-4.346102961804718,-3.387395524419844,-2.7036322099156678,-3.0137762590311468,-3.465512806084007,-4.337937084492296,-4.655921868979931,-4.126005167607218,-4.295512817800045,-3.985664060804993,-4.094798823352903,-3.2214112440124154,-3.237860890571028,-3.5721532804891467,-3.900098044425249,-4.669836739078164,-5.339068581815809,-6.329543887171894,-5.536759511567652,-5.970151697285473,-6.287492562551051,-5.942688872106373,-5.219189019873738,-4.273026764392853,-3.8705387585796416,-3.000961699988693,-3.7118305768817663,-3.7367713688872755,-4.633338937535882,-5.37623746227473,-5.939749908167869,-5.829017496667802,-5.716701058670878,-5.813807669095695,-6.461532765533775,-5.474383315071464,-6.3693323521874845,-6.0749635943211615,-5.248287217225879,-5.075496764387935,-5.937532533425838,-5.0518977688625455,-6.03938968712464,-6.934006864205003,-7.0238968268968165,-6.549055773299187,-7.441424649674445,-6.740837113931775,-6.541959721595049,-7.402370037510991,-7.1103007001802325,-8.004804872907698,-7.938400922343135,-7.99710291530937,-7.769796218723059,-7.328116707969457,-7.93403464416042,-7.862776102032512,-7.168812698684633,-7.288196173962206,-6.507224867120385,-5.551147966179997,-6.282712718006223,-6.255613855086267,-6.533855268266052,-6.057280343957245,-6.4639702322892845,-5.59642604039982,-4.9400364784523845,-4.437746145296842,-4.192386161070317,-4.002237304113805,-3.4049768620170653,-3.103555500973016,-2.5223524034954607,-1.5761704160831869,-2.348073528613895,-2.7464431189000607,-3.578088417649269,-2.6110227284953,-2.678220238070935,-3.258506452664733,-3.8969965698197484,-3.2916368981823325,-3.3360322695225477,-2.8115584645420313,-2.493650001473725,-2.8680868931114674,-2.523920119740069,-2.859278446994722,-2.5052798171527684,-2.182223136536777,-2.494091911241412,-2.1101155607029796,-1.203854851424694,-1.2461324045434594,-0.7060135961510241,-1.3935562949627638,-0.7536229710094631,-0.9961949759162962,-0.4738147337920964,-1.1637832848355174,-1.8314145421609282,-1.2786780721507967,-2.072071039583534,-2.236540875863284,-2.3258870411664248,-2.7187109934166074,-3.34812385821715,-3.5645266184583306,-3.7968897125683725,-4.230613379273564,-4.193276979029179,-4.127306933514774,-5.055676183197647,-4.569392055273056,-4.229729939252138,-3.6647561178542674,-4.59759203530848,-4.452846380416304,-3.49279172020033,-3.5262900455854833,-2.5269947983324528,-1.6553123034536839,-0.9610171332024038,-1.7760854177176952,-1.259964482858777,-2.130985672585666,-1.4516444555483758,-1.3564461972564459,-2.2089037359692156,-1.291272526141256,-0.7828130926936865,-0.32935552997514606,-0.4435614310204983,0.40907626738771796,0.9475353583693504,1.8788579683750868,1.7955688582733274,1.1336181811057031,0.8913767146877944,1.8229475016705692,1.2949446165002882,1.5677937483415008,0.9461028017103672,0.0024159522727131844,-0.6004257649183273,-0.8164570941589773,-1.4202347551472485,-0.9744456908665597,-0.3739717626012862,-0.8236606256105006,-1.5637961807660758,-2.1537206824868917,-2.4848993071354926,-2.3729490623809397,-2.0657781520858407,-2.3950864099897444,-3.344735669437796,-2.505107351578772,-1.9368215668946505,-2.1449496778659523,-2.0517064318992198,-2.536098051816225,-2.5974652003496885,-3.461269525811076,-2.9104026090353727,-3.5512557267211378,-2.743366628885269,-2.8816505833528936,-3.348630439955741,-3.525071994867176,-3.4913382725790143,-2.6801358624361455,-2.0348248542286456,-1.0373113509267569,-1.8049154286272824,-2.343838171567768,-1.7226883196271956,-0.7876525921747088,0.13128123339265585,0.367134521715343,-0.3645912241190672,-0.926441315561533,-1.0327501902356744,-1.972711760085076,-2.0576211465522647,-2.5531163993291557,-3.1190398265607655,-2.345987163949758,-2.799607853870839,-2.4038999169133604,-3.052009779959917,-3.6536415182054043,-2.972160430625081,-3.5375462835654616,-3.1388937467709184,-4.086899578105658,-4.215509865898639,-5.1267477865330875,-4.6057164878584445,-4.612272751983255,-3.646469181869179,-3.6751644709147513,-3.1662005302496254,-3.276702642440796,-2.6742867631837726,-1.9230753858573735,-1.1702854624018073,-1.6990616265684366,-1.5875159013085067,-1.6613129060715437,-1.2334785140119493,-1.4233358036726713,-2.228419069200754,-1.4218458402901888,-1.216740901581943,-0.7187074176035821,-0.7598432688973844,-0.4240350304171443,-0.4957903465256095,-0.3663505078293383,-0.510239468421787,-0.00732754822820425,-0.10723121790215373,-0.4847305230796337,-1.1897203708067536,-2.0250519062392414,-1.3064437354914844,-0.427028882317245,-0.2452191892080009,-0.9045966910198331,-0.5323724467307329,0.22975691221654415,1.1523767574690282,1.5874226898886263,2.547848051879555,3.4093210180290043,3.854983930941671,2.919645063113421,3.7838108907453716,2.93679700512439,2.808938540518284,2.080791466869414,3.013358428142965,3.5124079496599734,3.4666363266296685,3.4969736328348517,3.388561061117798,4.341932708397508,4.065671019256115,4.8172312011010945,5.805793302133679,6.5685499659739435,7.058304239530116,6.154723346699029,6.940436112694442,6.008088632021099,6.548815766349435,7.334476231597364,7.731918682809919,7.315661205444485,7.040175433270633,7.6502927341498435,7.735220593865961,7.687020647805184,8.308956212829798,7.601486537605524,7.41185625968501,7.856707575265318,7.011726347263902,6.1314774407073855,5.729692833032459,6.66814140137285,6.387644083239138,6.479585313703865,5.86223858082667,6.504449259955436,5.5138078620657325,5.113018547184765,4.197189367376268,4.371323599945754,3.3808974446728826,3.429421644192189,4.412762681022286,4.091040954459459,3.4088201140984893,3.0200123745016754,2.6282256352715194,2.0061953687109053,2.8994342535734177,2.118795347865671,2.6598304961808026,1.7008345238864422,2.40456341765821,3.0914249774068594,2.2003620178438723,1.4594916561618447,0.6124482597224414,0.20426151948049664,-0.20098234154284,0.18339194590225816,-0.3657950619235635,-1.2237926269881427,-1.9302517208270729,-1.2832047520205379,-1.7271565734408796,-1.123074159026146,-1.8639925043098629,-2.8079669903963804,-3.4389506322331727,-4.233530400786549,-3.6135015445761383,-4.252997265197337,-3.5152137405239046,-3.638227988500148,-3.392870986368507,-2.457124404143542,-3.389785743318498,-4.138426967896521,-4.23592116497457,-3.887356278952211,-3.6087436242960393,-4.565093378536403,-5.483723912388086,-4.929203653242439,-5.691163701936603,-6.370528172701597,-7.1275944276712835,-7.132955331820995,-8.091254118829966,-7.7010640180669725,-7.760889383032918,-7.243179648183286,-7.99128618882969,-7.780321998987347,-6.988757058046758,-7.0277816746383905,-7.707682128064334,-7.713431368581951,-8.424320133402944,-9.323572126217186,-9.703191373497248,-9.566331184469163,-9.648439513519406,-10.1054240395315,-9.307436195667833,-8.355436579789966,-7.521854600869119,-6.542187236249447,-5.882334056776017,-5.340178207028657,-6.202914705500007,-5.96605413639918,-5.29947991669178,-5.998047705739737,-6.0440030000172555,-6.599284963682294,-6.771605925168842,-7.6234601004980505,-7.274461343418807,-7.626408415846527,-8.58717109169811,-7.999992387369275,-7.637553273234516,-7.217038548085839,-6.9493286572396755,-6.845681299921125,-6.933556550648063,-5.950526101980358,-6.47031806781888,-6.625606156419963,-7.580249726772308,-7.82153788767755,-6.845949363429099,-7.639538125600666,-8.482892389874905,-8.552820778917521,-8.303265687543899,-7.995826228987426,-8.010518422815949,-7.542846334166825,-6.645193489734083,-7.573753560893238,-7.236180296167731,-6.4643260720185935,-6.353898648172617,-6.948086662683636,-6.493994222488254,-6.425960017368197,-5.857858806382865,-5.605535204522312,-5.782206020317972,-6.66344897588715,-5.980751980096102,-5.705661774147302,-6.222388410009444,-5.394601060077548,-5.2546183741651475,-4.821147636976093,-4.2251378102228045,-4.184139683376998,-3.6197805223055184,-3.871291340328753,-4.471001631580293,-5.156952176243067,-6.018623160663992,-5.919688475783914,-5.2028062511235476,-4.555777711328119,-5.517387130763382,-6.329913172870874,-6.232685782946646,-7.034692840650678,-6.503952383995056,-6.4500759886577725,-6.503680823836476,-6.034597329329699,-5.53696351358667,-4.988964077085257,-5.958250581286848,-5.043759292922914,-4.939881770405918,-4.183274303562939,-4.77533437917009,-4.826920914463699,-5.772487577516586,-5.617410701699555,-5.731994779780507,-5.022777267731726,-4.175904001574963,-5.081072413828224,-4.144203259143978,-4.124141678214073,-3.36944530159235,-3.5243214424699545,-3.0437585096806288,-3.466621614061296,-3.22534388769418,-3.888932704925537,-3.8487021643668413,-4.1395545224659145,-4.385189299006015,-4.5821444992907345,-4.51537160621956,-3.548762165941298,-3.160046990029514,-3.378179191611707,-2.8832138148136437,-2.134646950289607,-2.2206542235799134,-2.4631343679502606,-1.6954469489865005,-1.609812022652477,-2.2134077977389097,-1.3413414075039327,-2.115976693108678,-1.2774993060156703,-1.3747487803921103,-2.335438529960811,-1.741673197131604,-1.1525616245344281,-1.611577081028372,-1.3591747400350869,-0.6950708581134677,0.1821797750890255,-0.15125893941149116,0.22054514894261956,-0.13502006186172366,-0.8032606584019959,-1.3074531177990139,-2.0647381413728,-1.118078981526196,-0.5719886943697929,0.1603978993371129,0.6164863840676844,-0.22540073888376355,-0.4147828216664493,-0.05628851056098938,0.5911662885919213,0.9361129463650286,0.14889889769256115,0.3846026589162648,-0.5654634451493621,-1.3265415974892676,-1.0686746858991683,-0.6510264747776091,-0.8521082261577249,-0.4962316369637847,-0.07390877092257142,0.18460928183048964,-0.574090217705816,-1.1418861197307706,-1.6836292021907866,-1.9344214424490929,-1.8588516982272267,-1.1687544621527195,-1.0952787059359252,-0.7381388857029378,0.12358347792178392,-0.8366311597637832,-1.210497508291155,-1.144655728712678,-0.5187854850664735,0.31932575488463044,-0.6367111746221781,0.24313127528876066,0.9740377748385072,0.9947278168983757,0.7874148981645703,1.2050310941413045,1.1024588383734226,1.4090029303915799,1.2940641134046018,2.278038279619068,2.358632216695696,2.2864116253331304,2.5098016001284122,3.0524593787267804,2.426172201987356,3.2075464241206646,2.2850925750099123,2.1548742749728262,2.454522647894919,2.062565016094595,2.8348782574757934,2.926649264059961,2.0946773160248995,2.4602778274565935,1.822000663727522,2.262242767959833,2.473549198359251,2.4153378787450492,2.1460256087593734,1.973480932880193,2.6090983827598393,3.163187571335584,4.035174527205527,3.200744547881186,2.8070869292132556,1.9295642143115401,1.3541284501552582,1.0292034521698952,1.0391098614782095,0.12033074302598834,1.0969945932738483,1.3136662268079817,1.9208095180802047,1.4205313688144088,0.8957168906927109,0.8116808426566422,0.3749525072053075,1.3256012271158397,0.46643509343266487,1.0206504124216735,1.5157094676978886,0.592457480262965,1.5295236236415803,1.0424580187536776,0.5190296545624733,0.8243943196721375,0.06865491578355432,0.017295222729444504,0.6906139235943556,1.285292578395456,0.3783235363662243,-0.560170422308147,-0.6398297143168747,-0.04636959079653025,0.19901857944205403,0.4128535813651979,-0.4041064768098295,-1.0865660780109465,-1.9825292150489986,-2.2515817978419363,-1.7517977240495384,-1.46268439758569,-1.9683162337169051,-2.119955884758383,-2.5900961691513658,-3.452556556556374,-4.065344404894859,-4.459747198969126,-4.777334663551301,-5.292182904668152,-4.297438828740269,-4.522275824099779,-4.817894999869168,-4.73028578935191,-4.7565611293539405,-5.393092392478138,-6.109847923275083,-5.16926310909912,-4.866938223131001,-4.164582697674632,-4.281678723637015,-5.10918760066852,-4.186247997451574,-3.643296191468835,-3.089850011281669,-3.5438395524397492,-4.140629122965038,-5.045794667676091,-4.051987566053867,-3.168189587071538,-2.2106658881530166,-2.149956279899925,-2.840497316326946,-2.358988127205521,-1.511207789182663,-0.7758015654981136,-1.522029303945601,-2.2540333876386285,-1.4960168721154332,-1.0234518498182297,-1.7378071234561503,-2.5161613831296563,-3.2638571970164776,-2.597442843951285,-2.866044918075204,-2.7327742744237185,-1.7584808231331408,-0.8394405334256589,-0.0747743183746934,0.14320129854604602,-0.44273850601166487,-1.2375181089155376,-1.62288274243474,-2.011888869572431,-2.3955218167975545,-3.010520314797759,-2.846776976250112,-1.8656982597894967,-2.5839103627949953,-2.472075955476612,-3.0013031023554504,-3.17794530140236,-2.408027064986527,-1.6306509356945753,-1.7596588535234332,-0.8798638805747032,-1.152559052221477,-1.7828455893322825,-2.2653176253661513,-3.2290892861783504,-2.5650043385103345,-2.5839177556335926,-1.8449471830390394,-0.9548104987479746,-0.7921065082773566,-1.016387287992984,-1.3572643115185201,-1.651669580489397,-1.2562493681907654,-0.9842051197774708,-1.3518120823428035,-0.37590934056788683,0.056796825025230646,0.8383937883190811,0.7303796806372702,0.9924622531980276,1.496591149829328,2.4881519060581923,2.6351713966578245,1.774347077589482,1.273619127459824,1.3905855459161103,1.632204266730696,2.236780229024589,3.1908068833872676,3.671249737497419,4.326015087775886,4.222180537413806,4.170835739467293,3.1796866385266185,3.491866419557482,3.3832110902294517,4.1901030275039375,4.451002398971468,5.282515299972147,5.925650208257139,4.9596690139733255,5.212302171159536,5.36373426951468,6.017621856182814,6.930710583459586,7.84405520837754,8.14054351253435,8.458556936588138,7.78230936685577,8.73672182392329,9.3781315991655,10.242182666901499,10.303623841144145,11.266568726394325,11.784961577504873,12.471028957515955,12.876169557217509,13.393964503891766,14.021770123392344,13.509540737606585,13.955234365537763,13.594585340935737,13.999468764290214,13.56253896607086,13.406520938500762,13.090679828543216,12.200225140433758,11.767825490795076,10.848874429706484,10.401110233273357,11.119468923658133,10.230059882625937,10.583119733724743,10.692750968970358,10.850643278565258,10.287744325120002,9.765557597856969,9.139024569652975,8.418561012949795,7.968993023503572,8.868859980255365,8.934607428498566,8.082153218332678,8.052385369781405,7.195526225026697,7.420080222189426,7.76609356328845,7.904900667257607,8.596621736418456,8.086153040174395,8.000556103885174,8.70664919866249,8.468495685607195,7.610109507106245,7.773670203983784,8.276559680700302,7.304485888686031,6.5351052498444915,6.041740277316421,6.655473065562546,7.185849216300994,7.576501588337123,7.7191543355584145,7.700307934079319,8.058794425334781,8.818173998501152,8.089787818025798,7.7493400210514665,7.82019620295614,8.211634289473295,9.0252366787754,8.684878777246922,9.184889753349125,10.183480637613684,9.281680879648775,9.108250725548714,9.797306400723755,9.708802845794708,9.8065219768323,9.936286182142794,10.11760193714872,9.814098748844117,10.019048314541578,9.841975148301572,10.239675127901137,10.72666227305308,9.78143062023446,8.94994854554534,8.98100002342835,8.686552044469863,8.770071881823242,8.536278487183154,7.797003041952848,8.435036751907319,8.518987091258168,8.952369374688715,9.877521969843656,9.505084191448987,9.147232500370592,8.39402065007016,7.505603756289929,8.118967444635928,8.633602490648627,8.10925587406382,8.276972963474691,8.638325761537999,8.148263637442142,9.000235938932747,9.699709090404212,10.594717317726463,10.76933033997193,10.209859197493643,10.188885192386806,10.88176357280463,10.511319362558424,11.142214263323694,10.561971405055374,10.939129429403692,10.808821932878345,11.037653973791748,11.832894891034812,12.597759578377008,11.880542401224375,11.779167779255658,12.12232077959925,12.754303213208914,12.90638780221343,12.930824038106948,12.746971991378814,12.881454832386225,13.39609384490177,12.740231364499778,13.721826497465372,13.685263886116445,14.224412124138325,14.409893683623523,15.207479768898338,14.415532750543207,14.211861890275031,14.643443217501044,15.279001995455474,15.449851120822132,15.584293710067868,15.510244903620332,15.662165507208556,16.589642342645675,17.220820950344205,18.057971915230155,17.25133505044505,17.24870737735182,16.560573045164347,16.987036100123078,17.066290084738284,16.614314151462168,16.713293702807277,17.53231607703492,18.314116675872356,18.183508497662842,18.271734405774623,18.89189803833142,19.517651533242315,19.53886168031022,18.636790820397437,18.564005081541836,17.988649469334632,18.812535669654608,18.979092868510634,18.00093763694167,18.856062932871282,18.06332590477541,18.397431577555835,18.523700275924057,17.87527581024915,18.18568058218807,17.561586240772158,16.930526831187308,17.57986730709672,16.758428955450654,15.9701481400989,15.597986557520926,14.743144233245403,14.56142502464354,14.889406383037567,14.782689225394279,13.815185114741325,14.641501540783793,14.389312114566565,15.001057137269527,15.786990746390074,15.01487684296444,14.7461399724707,14.783377746120095,15.526405573822558,15.874058704357594,16.702414902858436,17.644480266142637,17.138202705420554,17.548257873393595,17.077541954815388,16.730771239381284,17.569970261771232,17.88740180199966,18.341549289412796,17.728524261619896,17.354897849727422,18.32794555509463,19.271948251873255,18.94960049679503,19.920735743828118,20.902232682332397,21.671426590532064,22.355724074412137,22.223441241774708,23.025326578412205,23.56733662588522,24.512536080554128,24.08908112766221,24.795691961422563,23.953655566088855,23.439817018806934,23.141575972083956,23.06780369905755,22.319004837889224,21.39708477584645,22.156139399390668,21.9309242926538,21.465156924910843,21.60564386891201,22.086550801061094,21.854341459926218,22.51117361197248,23.41513595264405,22.493890104349703,22.388716836925596,22.03881264384836,21.356219126842916,22.270556878764182,21.82274885615334,21.296257856301963,20.357709404081106,19.597005722578615,19.53271606983617,19.902680535335094,19.490447957534343,18.529569996055216,17.681299494113773,18.08890590351075,18.560930660460144,18.891266831196845,18.686679900158197,19.301613707095385,19.08813938451931,18.625499239191413,18.197914325166494,17.862353632226586,17.1495736730285,17.2669252413325,17.823834773153067,17.38349716551602,17.760319584980607,17.979051724541932,18.725940333213657,19.158722271677107,18.690722493454814,18.502499839756638,19.48285062937066,19.996081167366356,19.924714983906597,20.209086454473436,21.0634027114138,20.607133361510932,21.23424025811255,20.430347067769617,19.779512898996472,19.075134283863008,19.9587928596884,20.456625026185066,21.114542171359062,21.46328091667965,20.495526204816997,21.39020432252437,21.2946318956092,20.61889726901427,21.341287522111088,21.457039730623364,22.34450231399387,21.869927633088082,21.331944185774773,20.594898773822933,19.895356605295092,19.75969054782763,18.916561604943126,19.301685099489987,18.881495399400592,18.48619332490489,18.476334896869957,19.473460330162197,18.549471301957965,19.360278169158846,18.390679586678743,18.390195805579424,19.093990082852542,18.614917769562453,18.37075600074604,17.463814036920667,17.47871708124876,17.44388078013435,18.135867042466998,17.95287116523832,17.756727810949087,17.121398087590933,17.58244425524026,17.618663555942476,16.680166078731418,16.64917522110045,17.549768150784075,17.27918713213876,17.685096902772784,18.37832822604105,18.42275554453954,19.29391994792968,18.557468318846077,18.761668793391436,17.798583189956844,17.931246187072247,17.97037033410743,17.638008198700845,16.844467787072062,16.68823184724897,16.594673465471715,16.896713407244533,17.034649543929845,16.810413667932153,17.662604784592986,17.888717989902943,17.98424420831725,18.7781302803196,18.203913579694927,17.98111401218921,17.246890465263277,16.90030835242942,16.8484988771379,16.938855389133096,16.787715419661254,16.99353868048638,17.15892538614571,16.495239078067243,15.978430260438472,15.805357343517244,16.64584330189973,15.895604551769793,16.262217935174704,17.04918899293989,17.378978043794632,17.853502477519214,18.600383727811277,18.552673819940537,19.251102684997022,19.421221021097153,19.914416922722012,19.354961697477847,18.789730997290462,18.316566286142915,18.199548857752234,18.615751969162375,19.413999885786325,19.195876421872526,19.27703832089901,20.016690304037184,19.875576097983867,19.011106627061963,19.63457570411265,18.63492963509634,19.10942846443504,19.330406352877617,19.79646186856553,19.88336405949667,19.449859496206045,20.311539131216705,21.1214347044006,20.81358503131196,21.71485757501796,21.05082250153646,21.282438200432807,22.042020656634122,22.24755921168253,22.098668748047203,22.49865432549268,22.126251367852092,21.60495637310669,21.019932699389756,21.709707658272237,20.83138851262629,21.754382563289255,22.21845797728747,22.659297100268304,22.570145498029888,21.86429474176839,22.734904894139618,22.257868072018027,23.141591783612967,23.49199561169371,22.7334122704342,23.01076139556244,23.876064898911864,23.335245572030544,24.21411204803735,23.29791634576395,22.787296319380403,23.533015022519976,22.87388608045876,23.358604141976684,22.91852886369452,22.53114725043997,23.382929040119052,22.68763287132606,22.10075513832271,23.056161605287343,22.70588371809572,22.012625583447516,21.94924047915265,21.214807561133057,21.474736886564642,22.168398472946137,22.782497090753168,22.300900691654533,22.06987069407478,21.897310934960842,20.909507184755057,20.617882497143,21.553203950170428,21.899114390369505,21.265794340055436,21.069383992813528,21.212357650045305,21.78844330366701,22.162606935948133,22.55789109552279,23.36169877788052,22.381848825141788,21.41245928267017,20.452867506071925,19.93484328640625,19.888167358003557,20.05302335554734,19.817295759916306,19.66119478829205,20.235824389848858,20.784227893687785,20.676108418032527,20.18394468445331,20.620603890158236,21.582270599436015,22.05382592463866,22.373008106835186,22.838422749657184,23.07961008604616,23.95300188381225,24.097972085233778,23.239215566776693,22.823185676243156,22.710687095299363,22.531748455949128,22.020428787451237,21.473400878254324,21.4403571523726,21.975395848974586,21.42728853644803,22.195685882121325,21.821008612867445,22.761278779711574,22.117018269840628,23.065844390541315,22.732643437106162,22.599158534314483,23.41621457831934,23.56290334975347,22.79055335558951,21.83252674760297,22.430098838638514,23.406517690978944,23.51065866043791,24.25142791867256,23.26848479686305,24.0678522256203,23.509578346740454,23.018888399004936,23.983010929543525,23.87832943163812,23.60493627982214,23.50918170856312,23.55394761543721,23.87034955341369,24.32620016299188,24.63036728883162,25.048923520371318,25.90807348722592,25.365023056510836,24.97444176953286,25.563674001023173,24.814145473763347,23.880158338230103,23.308971892111003,23.625877398531884,24.3575254320167,25.35600526770577,24.502278135623783,25.32422734797001,25.47675759671256,26.42411920009181,27.180661926511675,28.060349410865456,27.39286067103967,28.100933246314526,28.030870764516294,28.74505228223279,28.000837698113173,27.308968972880393,27.033604788128287,27.52220513112843,27.408554716967046,27.999558406416327,27.62637824099511,28.24242730764672,28.72933263797313,29.408361366484314,30.209317307919264,30.925999505911022,31.28527205903083,32.15789063554257,31.441195371560752,31.261645037680864,31.674031091388315,31.40107346046716,32.245430207811296,31.816319447942078,31.97386449808255,31.29186195228249,31.148109702393413,30.75455302139744,30.441187772434205,30.74303569411859,31.332349571865052,31.411184751428664,31.78894674964249,31.067041158210486,30.911795248277485,30.44615157181397,30.07982468791306,30.3962421589531,30.774167236406356,31.12660087738186,30.144612047821283,29.299419851973653,28.63596625579521,28.0858717658557,28.71528970543295,29.236032146960497,29.33815379953012,30.00520943850279,30.804494775366038,30.929876669310033,30.153310693334788,30.74547613831237,31.661619490478188,30.96379323164001,31.21490114601329,30.58202694216743,29.943369953427464,29.516436111181974,29.411441809032112,28.755233571399003,28.179933013394475,28.09506774926558,28.276349615771323,27.842374462634325,27.562343209050596,27.208782487083226,27.219851702451706,27.190975837409496,27.34662275761366,27.289798526093364,27.215881664771587,26.979280817322433,26.944084933493286,27.327842556871474,27.65730441408232,28.571606242563576,28.611746510025114,28.476797779090703,27.969719756394625,27.405854914337397,28.101530281826854,27.881821421906352,28.740417688619345,28.00484634237364,27.888263429515064,28.289072696119547,27.304690106306225,26.470072268508375,27.399271072354168,28.18547634780407,29.060212103649974,29.61715446971357,28.75766598340124,29.525513280648738,30.351777100469917,30.822622656822205,31.377425061538815,30.70780857792124,30.687463375739753,31.67151256185025,31.380188761278987,31.456324287690222,31.74376900307834,32.1456002430059,32.47105559986085,32.5762879201211,32.92012800229713,33.3158083697781,33.660424248315394,33.859800030477345,33.508578333538026,33.643556302413344,34.230341859627515,33.94075352419168,33.07716828817502,33.26443071477115,32.28350053727627,31.32302164239809,31.692120573017746,32.626614165026695,31.983798259403557,31.818285430781543,32.7330604493618,33.62289259210229,32.79748921096325,33.69724336778745,33.804374216124415,34.54466810775921,35.040851986035705,34.58318591490388,34.314320667181164,35.07596172951162,34.67785209976137,35.50351145397872,35.461080382112414,35.573797835968435,36.295956334564835,35.61982128303498,35.00802941340953,35.06330846482888,35.0017477395013,34.34760152641684,33.472391282673925,33.054837591946125,32.71878105867654,32.50668659573421,31.586293244268745,31.48103180201724,31.643148452509195,31.533959556836635,32.26575625920668,32.59762045042589,33.522760060150176,34.20828471053392,34.67469786852598,35.56569479079917,36.105644098017365,35.90641651675105,36.07739765942097,36.56938637513667,36.30424013547599,36.75657686125487,35.83437070949003,35.38470167526975,36.24012457765639,36.044402298051864,36.17508014757186,36.29909014003351,37.28861148003489,37.30269342660904,38.29846266889945,38.82044289493933,39.57444809563458,38.78287756070495,39.40913872094825,39.05907062487677,39.00205422472209,38.12548647541553,37.18530740356073,36.335515826009214,37.278313951566815,38.18314577173442,38.12548329913989,37.28456074139103,37.38139361701906,37.587434514425695,37.1136385560967,36.91902249166742,36.40714955981821,36.82473736675456,37.033922019414604,37.54627921245992,38.134152678307146,37.735368319787085,37.97452807147056,38.69098064722493,38.13532751845196,37.889291289262474,38.76560200192034,39.58686070935801,39.212598328944296,38.87676766002551,38.70813781535253,39.03656699415296,38.98187911324203,39.26541012758389,39.83324417844415,39.57321732165292,39.44086103281006,40.29766025720164,40.3504433054477,39.57988508511335,39.24530526250601,40.133003633935004,39.88861780241132,39.717798477970064,39.405958615243435,38.97245213063434,38.134779846761376,38.95803867094219,39.29106107633561,39.31098495516926,38.59654864249751,38.94728246331215,39.59263066854328,39.148186058271676,40.0682286596857,40.557798051740974,39.62060525920242,38.69948364421725,39.2623549727723,39.826923716347665,39.96476291725412,39.723436567466706,39.910176439676434,40.13206100836396,40.32117378292605,40.2941109854728,39.95787385618314,39.10224400926381,38.104696742258966,38.17009645467624,38.73925977339968,38.8942084107548,38.855099318083376,39.68703154241666,39.20633824588731,39.849394203629345,40.32252202788368,40.11174210999161,40.46268909657374,41.361799240577966,40.527715004980564,40.15351384598762,41.042235085275024,41.17376477783546,41.3947285101749,41.86550082731992,42.37656631600112,41.50483062816784,40.97336316714063,40.55577265052125,40.70425653969869,40.79285507183522,40.09668564517051,39.43756115576252,38.63555917935446,39.54601536737755,38.617496880702674,39.46613195864484,38.47989936731756,39.268846496474,39.840711798053235,39.83827894600108,40.548588721547276,40.9785062125884,41.07862561335787,41.16532225627452,41.401285668835044,40.96305453032255,40.995696139056236,40.150734197348356,39.49223056714982,38.70666637411341,38.70547115430236,38.359167877584696,38.80426499247551,39.73314661625773,39.006693297531456,38.09439211990684,38.19321274571121,38.5577355385758,38.76099689491093,39.63376869028434,39.526755940169096,39.82657469063997,40.43501594569534,40.35210909880698,39.903034436516464,40.85850836336613,40.64283807342872,40.63398441346362,41.553690584842116,40.80793611658737,39.8852847176604,40.117154479026794,41.03762876056135,41.754899627994746,42.46679947338998,41.69830386666581,42.45893515367061,42.25084733963013,42.45155483903363,42.01823639636859,42.197332702577114,42.204618490766734,42.448824068531394,42.09797290386632,41.55214664200321,42.37899484811351,42.103271279949695,41.960108081810176,41.84634140972048,41.38107893289998,42.20903528854251,42.063657524529845,41.55775780091062,42.14875111123547,42.90019568009302,43.39905466558412,42.65262152580544,43.01845513144508,42.33688425924629,41.97252369206399,42.85276445560157,42.67610973585397,42.97398671368137,42.48448947072029,42.02222637319937,41.307706212159246,41.14268598519266,41.57143307290971,41.327163285110146,41.80192014109343,42.731188900303096,42.81102288747206,42.94832847546786,42.124636192806065,41.270255390089005,40.78439423115924,41.26545872539282,40.76221858151257,40.68741803104058,39.80587279191241,40.2134954649955,41.00469525530934,41.22538545820862,40.80456030322239,39.96581956092268,40.30211447738111,40.27557229343802,39.58408834412694,39.71801325585693,39.461892240680754,40.09625252941623,39.63833291642368,40.46604880783707,40.2187859993428,39.42232888843864,39.799393308348954,39.956529369577765,39.044774138368666,39.31936852680519,38.51467104675248,38.6600974528119,37.876432543154806,37.149782058317214,37.63988400809467,37.40498373936862,38.00224012741819,38.05439260834828,38.0410665567033,38.39471954293549,38.11186204524711,37.82192882196978,37.583998498506844,37.54099811241031,36.662286687176675,36.906742656603456,36.25044777430594,36.593495714478195,35.863915799651295,36.039548438973725,36.88279506377876,37.2780194459483,38.25653095031157,38.64182684663683,39.2535772905685,39.2965063280426,39.945151128806174,39.5550978933461,39.684049253351986,38.99340250296518,38.0256630894728,37.92170442966744,38.69214181229472,37.78710526321083,38.103269807528704,38.54471677727997,38.7723801410757,38.59574668761343,38.287450462114066,38.0201843585819,37.31973249046132,36.986800980288535,36.754475195426494,37.31268111709505,36.413224612828344,36.0012781964615,35.67182368924841,36.40161634096876,35.721984782256186,35.159035355784,36.02803344698623,36.06370932934806,36.60971725638956,37.09019277850166,37.549122027587146,37.752870260272175,38.157095660921186,38.090320985298604,37.132028287276626,36.71225317660719,37.042267160024494,36.19037406286225,36.095835477113724,35.403709893114865,35.8088982636109,35.86640783213079,34.94971145084128,35.384835104923695,35.66477339528501,35.249413752462715,35.305989537388086,36.018712690565735,35.331986238248646,36.10656867362559,35.6880217269063,35.898312360513955,36.13979211170226,36.493593610823154,36.928086827509105,36.421377828810364,35.70265951473266,36.459105883259326,35.767156570684165,36.45927592879161,37.415531262755394,36.77501379651949,35.91832649894059,35.45497677894309,35.56997215049341,36.09155374485999,35.84998669847846,35.43678610632196,35.72783174784854,36.09490623511374,36.35890147509053,36.764600451570004,36.534911820665,37.33533517178148,37.642730177380145,37.02620124677196,36.40268553327769,35.79163070162758,34.98625905672088,34.94917233660817,35.33977745985612,35.915643743705004,35.01842259382829,35.41633919579908,35.54340751981363,35.40548459487036,34.83122351905331,35.64333688095212,35.92548163374886,36.02674314100295,36.61228973604739,35.96660596085712,36.733345785643905,36.62593124713749,36.83187246741727,37.614228449296206,37.4713639896363,36.88502465374768,36.77624281914905,37.75184775982052,38.43689906504005,37.73714206647128,38.42791857942939,38.339355654548854,39.313394284807146,38.694855658803135,38.53315059328452,38.543289282824844,38.77174929017201,39.72437914274633,40.549212630372494,41.5309040970169,42.51510165259242,42.202661723364145,41.31183399865404,40.6897928561084,40.36329741822556,40.12151544354856,39.9740999401547,39.20438391948119,38.2143858410418,38.15281438268721,38.147926493082196,38.29085888992995,37.98329886747524,38.75338588608429,37.94125226838514,38.26588858105242,37.855185095686466,37.5734684439376,37.39843783294782,37.432342203333974,38.15975818177685,37.218530520796776,37.20022045727819,36.33986519090831,37.33978257328272,36.739456485491246,37.28542026504874,37.68801560904831,38.51623832061887,39.31217432953417,39.68355075130239,39.134580199141055,39.45140805514529,39.81738324183971,39.14137448603287,39.169205313082784,39.63104315334931,40.451664586085826,40.46808443032205,40.08399373339489,39.79033683240414,40.11124737141654,40.04007253423333,40.873528313823044,40.02684866823256,40.3576549901627,40.60235593421385,39.60573249170557,39.60633452935144,40.083821662236005,40.20505081722513,39.90883664460853,40.55116888694465,41.518449530005455,41.883358967956156,41.11696977075189,41.97129039140418,42.002284856978804,42.650283988099545,41.81134541053325,41.57473215041682,40.911575871519744,41.77226502355188,42.272951959166676,43.07240481255576,42.850904654245824,43.079644214361906,42.233780700247735,42.85913088126108,42.522284938488156,42.81944320676848,43.41963787609711,42.4824908724986,42.55724106868729,42.1186829819344,42.57177819125354,43.33776391064748,43.71928082080558,43.62418275605887,43.4085476747714,44.395669758785516,43.634062725584954,43.65350486896932,43.01844498794526,42.96260847058147,43.36852252436802,43.53144003171474,42.68312067631632,42.920788016635925,43.21756226895377,44.09067630767822,44.933567355852574,45.344254336319864,45.78452462377027,44.93454115372151,45.60101456288248,46.593531384598464,46.18667720677331,46.12403799407184,46.9042081120424,47.01573518430814,46.10717633087188,46.469023858662695,46.564022223465145,46.591779571492225,47.37544697802514,46.413918073289096,45.76457108510658,44.85194692434743,44.740149543620646,44.65197612065822,43.91520069167018,43.521138303913176,43.890752017032355,44.717744800727814,45.075671744998544,44.25923542724922,43.9840531158261,43.152173780836165,42.83581954613328,42.90392534760758,43.25740539468825,43.14468736900017,42.415703173261136,43.4110830607824,44.33002329710871,43.773716744501144,44.59281032439321,43.59456757362932,43.498055109754205,43.02927382476628,42.521621072199196,42.76729763112962,41.79477990884334,41.116634097415954,40.345266899093986,41.264101553242654,40.66737492661923,41.16244134353474,42.132353751920164],"z":[29.893797988072038,29.564656472299248,30.346813421696424,30.543112318962812,31.358118442818522,31.898240979760885,31.876766019966453,31.720906439702958,32.21244267979637,32.94227600609884,32.010990026872605,31.59321610769257,32.2563081337139,31.798112004995346,32.44616510672495,32.301220402587205,32.1059942743741,32.58674151496962,32.4236011384055,32.72265237523243,33.60249873297289,33.337355067487806,32.99084744928405,33.59522120421752,32.67450805474073,32.039400765206665,32.612533109262586,32.66658819746226,32.55362424906343,32.09156708559021,32.295170351397246,32.05994194978848,32.91152488999069,32.833115082234144,33.82032144581899,34.448484036140144,34.20706486236304,34.572629945818335,35.09547586319968,34.89171136170626,34.41227857070044,35.36756726587191,35.05237900977954,35.260294820182025,35.619776169769466,35.83202427951619,35.873014082200825,36.66404619906098,37.1223261510022,37.88042812189087,37.30492504220456,38.25588272605091,38.895175588317215,38.893509964924306,38.23380411369726,38.45548201026395,38.82396348984912,39.38106858031824,39.393704924266785,39.68672969983891,39.64653674978763,38.76127588376403,38.242616437375546,37.70097920624539,37.51827259268612,36.974014022387564,36.57749307015911,36.41889462992549,37.36027557728812,37.27476788824424,37.42867445060983,38.034244755283,38.24235824076459,38.921536619775,38.356722094118595,38.21503132721409,39.054256337694824,38.490817754063755,38.80851376336068,39.02405247790739,39.13153922604397,40.00989879248664,40.54784007836133,39.55604573665187,39.548429743852466,39.10166560020298,38.47501057758927,37.61905273841694,37.78966618422419,37.85738345608115,37.81918847654015,37.323118589352816,37.32030857773498,36.80924800597131,36.21147949388251,35.69971445808187,36.10693475464359,35.5647637094371,35.90543065685779,35.03185411868617,34.0585034028627,33.73438410414383,33.826987320091575,33.672465848270804,33.90494303731248,33.7323478362523,33.343226617667824,33.226799342315644,33.06629334995523,32.51413780357689,31.806346605997533,32.30402347026393,31.861377308145165,31.223102552816272,31.762957194820046,31.55644583515823,31.95859256759286,31.754293809179217,31.14236018434167,31.886493565514684,31.10714661469683,30.81329618860036,30.77937425300479,30.38847047649324,31.278098585549742,32.13859674986452,31.85203517274931,32.072417735122144,32.27105921134353,32.10748514160514,31.523009444586933,30.555178908165544,29.77788635948673,30.543238184414804,29.636912948451936,29.896594445686787,30.448060741648078,29.71826312271878,29.675759550649673,29.305639125872403,28.492067767772824,28.920853724703193,28.3206925727427,28.04809187259525,29.014371568802744,29.143333859741688,28.16701501654461,27.22899721004069,27.76993862213567,27.816846421919763,27.05512444768101,27.47555094724521,26.59349346999079,26.407814831472933,26.69851339282468,27.26967718731612,27.49670886155218,28.475950996857136,29.170467211399227,29.141154405660927,28.92399883363396,29.123197394423187,29.229532872792333,28.53054875927046,28.607821982353926,28.14541255356744,27.95661276113242,28.171954524237663,28.19113596342504,28.603700641542673,28.99479789286852,29.308588061481714,29.34647399513051,30.241843714844435,29.806037882342935,29.301968497224152,29.46068319445476,29.292359064798802,28.986854079645127,28.686346861999482,28.137964752037078,27.579550312366337,27.27891112305224,26.510368559043854,27.047316025942564,26.890678775962442,27.449137264396995,27.75111675867811,28.628185999114066,29.349746098276228,29.7198371803388,30.254603209905326,30.53754789568484,29.924235704820603,29.79925502371043,30.736469123046845,30.34581976989284,30.43732296070084,31.049437906593084,31.80563956545666,31.658738303463906,31.77902263775468,31.754647334106266,32.68662800313905,32.955200793687254,32.93033105088398,32.31538084149361,31.57832388440147,31.19891521660611,30.671862750314176,31.046173577662557,30.93590537784621,31.03633615281433,30.7510071718134,30.378273169510067,29.446131388191134,29.22534663742408,28.91190948151052,28.693483585026115,29.01738074142486,28.491491769906133,28.907188394106925,29.827838629018515,29.876646044664085,29.296750247478485,28.35089161200449,28.852980928495526,29.589752623345703,29.02392090158537,28.83201233902946,28.76420802809298,28.35011210804805,27.726864026859403,27.034003537148237,27.776783077511936,28.14181268727407,27.24185119662434,27.73325751768425,26.773401976563036,26.479926260188222,25.8907357477583,26.303942824713886,26.250997840892524,26.216458275914192,25.927487585227937,25.52170391054824,25.534597136545926,26.062709690071642,26.510705483611673,25.874224515166134,25.997760456521064,25.719225563574582,26.643216556403786,26.27581443497911,25.81361334118992,25.01997561752796,24.968874643556774,25.667522467672825,26.324019244872034,26.336571808438748,26.11298139905557,25.161735530011356,25.46683135209605,25.973213857971132,25.840277625247836,25.158487489446998,24.2372944932431,23.332348546013236,23.588178170844913,23.83418795047328,24.10782786551863,23.8342653401196,23.24205467477441,22.485315531492233,21.577180752996355,21.557701155077666,21.39164636284113,21.83756046090275,22.068936926778406,23.04787985328585,22.735331170260906,22.390854923054576,23.141315197572112,23.6286941152066,22.709314418490976,22.813153425231576,23.250122289638966,23.46870869025588,23.076004376169294,22.215873397421092,21.36371210962534,21.844594487920403,22.47830019844696,21.817834679502994,21.967896149028093,22.63806245708838,22.425249251537025,22.13864871300757,21.93199015595019,22.22619656380266,22.40116532612592,22.929936322849244,23.742336220573634,23.402076583821326,24.220085590612143,23.37368270661682,22.66062832949683,21.719254357740283,22.095445645041764,21.496094985399395,21.82097168220207,22.480863095261157,23.445158964488655,22.59754259418696,21.867869471665472,21.234243964310735,20.445120182819664,19.920208285562694,19.97486653458327,19.31735689472407,18.72075090603903,18.522039331961423,18.096615551505238,18.072956929914653,18.043938184157014,18.76814429135993,18.931107516400516,18.395277636591345,19.25930258957669,19.801994737703353,19.477647755295038,18.839367520529777,18.376006735954434,18.984095585532486,19.572406298480928,20.132686084136367,19.831501507665962,19.74702478898689,19.895487122703344,19.074146630242467,18.264905974734575,19.145868255291134,18.481213200371712,19.27791448496282,18.57883945479989,19.114115523640066,20.056991114281118,19.69687351025641,19.30207833647728,18.80026057595387,19.026179320644587,18.329913474153727,18.503905961755663,17.51137255318463,17.88261452736333,18.25828543305397,18.24885503249243,19.124099590349942,19.562777068000287,19.832794056739658,19.42304422520101,18.775579776614904,18.456346285995096,18.276856055483222,17.526567476335913,16.980422772932798,17.94920360809192,17.53271405864507,18.341153313405812,17.707478213123977,17.942585552111268,18.551814706996083,19.109267430379987,18.798299313988537,18.849671559408307,18.492608903441578,19.37069973582402,18.94432786060497,18.5797109156847,17.789384270086884,17.13876164657995,16.409598524682224,16.197397015057504,16.044757472816855,15.296551444102079,15.383234657812864,15.73067934019491,15.74392986483872,16.17898271093145,16.032358730677515,16.45579573698342,15.940540292300284,16.324702932033688,16.070542513392866,15.549011861439794,14.735599419567734,14.733431847766042,14.704355794936419,14.288238497450948,14.981234095524997,14.916270979680121,14.038594301324338,13.930256843566895,14.777284445706755,13.914148992393166,14.307453493587673,14.95932937785983,15.266391017008573,14.985924539156258,15.452615043148398,14.916902089025825,14.193363740574569,13.397127986419946,13.455417776480317,14.139113700482994,14.383059781044722,13.720609170850366,13.623371814843267,13.607997374609113,14.579281532205641,14.896779378410429,14.064256011508405,14.77516913600266,14.618181836325675,14.568323525600135,15.324672664981335,14.740602634847164,15.45794717874378,15.414589364547282,15.270689501427114,16.264964564237744,16.88955512084067,17.740224005654454,18.482270926702768,19.121118388604373,19.15092931734398,19.968886219896376,20.951896014157683,20.01073380652815,19.58958759205416,19.29028911795467,18.956770597957075,18.002643919549882,17.76137735741213,18.406065244227648,18.551161114592105,17.65810092445463,18.610964893829077,18.794469896238297,18.202884808182716,18.916668180841953,19.778727908153087,20.362478652969003,20.9642775375396,20.756214049179107,20.934719956945628,21.57808943092823,21.861423071473837,22.798388872295618,22.225053274538368,22.761406265199184,23.67610840080306,24.66971386037767,25.063718524761498,25.13792305579409,24.757765613961965,25.215833112597466,24.389032849110663,23.588360950816423,24.10997545113787,23.675089227501303,24.314729153644294,24.386026887223125,23.827580506913364,23.13550607021898,24.12649333756417,23.637755536474288,23.255605661310256,22.536043947562575,22.522623614408076,22.103964403271675,22.401760364416987,21.84004610683769,21.62410757644102,21.022068537771702,21.928748403675854,22.91410926822573,22.305422885343432,23.06454099714756,22.577300078235567,22.401475568767637,23.317067339085042,23.885813456960022,24.13209559675306,23.98649804573506,23.083390788640827,23.270705372095108,22.838144072331488,23.13741391757503,23.437634489499032,23.650472211651504,23.039122816640884,23.337610160000622,23.482344371266663,23.003824473824352,22.868364682421088,22.264011413790286,21.644344115629792,22.183246640954167,22.80680881300941,22.222509247250855,21.595270202029496,21.484195821918547,21.849737223237753,21.02458904730156,20.328680047765374,20.08363205846399,21.04919596435502,20.14083397714421,21.085783967282623,20.61456697806716,20.711073273792863,20.881033554673195,21.162028487306088,21.929222603328526,22.915333122015,23.070254081394523,23.0365778519772,22.47088116314262,23.443644223734736,24.329815518576652,25.027092691045254,24.884262594860047,25.428926423192024,26.15113702835515,26.781205176841468,26.054962819442153,26.936195658519864,27.529485604260117,28.30648704431951,28.70935252867639,28.72483023488894,29.27912692166865,29.476730526890606,28.81640657922253,28.489450292196125,27.58289030333981,28.504493750166148,27.818776330444962,26.950729922391474,27.216366754379123,27.156160484533757,27.054853241425008,28.041333770379424,28.441950548440218,27.55852986453101,27.678219992201775,28.183254743926227,28.195078823249787,27.869320877362043,27.428020289167762,26.893336578737944,27.545118839945644,27.08682824810967,26.59620599867776,25.79546499904245,26.635237286798656,27.544238603673875,27.68958428967744,27.22200687788427,28.027551371138543,28.058128047268838,27.1406809380278,27.187746239360422,26.835805743467063,26.621421141084284,27.3494241964072,26.50831562280655,26.092789174523205,25.711435046046972,26.135783297475427,25.59287701593712,26.430175045505166,26.912770229391754,26.866577334702015,26.314934140071273,25.635918490588665,25.733316597528756,25.334119168110192,24.749107191804796,25.557386913802475,25.6490371520631,25.67355563491583,24.99497859273106,25.785656894091517,26.07783393515274,27.04082291247323,27.275835155509412,27.593347799498588,28.018578071612865,28.564960326533765,29.075716682244092,28.71305441716686,27.722492817323655,28.11588619882241,28.04535723431036,27.55579758482054,27.172134225722402,26.463856908492744,25.665339102968574,25.663315653800964,26.45003990503028,26.62911905348301,27.01758498325944,27.017075228039175,26.025551815517247,26.57402444491163,25.803945158142596,25.727494705002755,26.253944910597056,26.211079007945955,26.641542743425816,27.589369567576796,26.838434259407222,26.11977463355288,25.15689175389707,25.3689178628847,24.63886273931712,24.39347704546526,24.929031489416957,23.939324859529734,24.147221006453037,24.844360444694757,24.343540685717016,24.231779753696173,24.11681258212775,23.977328891400248,24.1320194224827,25.10996852070093,24.80196498008445,25.447055898141116,24.927233652677387,24.880366312805563,24.584829836618155,25.01488120947033,25.023188774473965,24.199176316615194,24.25177823752165,24.214502562303096,24.891255390830338,24.784157073125243,24.78876281576231,23.92313721217215,24.13266433076933,23.220291763544083,23.905623383354396,23.263283050619066,22.887829539831728,22.557974487543106,23.464001287706196,24.310623744502664,24.311204126104712,23.879363911226392,23.95825537899509,23.655824167188257,23.120678906794637,22.320277971681207,22.359196776058525,22.419359687250108,21.56407718034461,22.557559052016586,22.254188786726445,21.60578297963366,21.959132756572217,22.431020201183856,22.58686466049403,22.969848276115954,22.449675063602626,23.10986898979172,23.8140216935426,24.593905784655362,25.492970772553235,25.257401051931083,24.9888447932899,24.66394785605371,24.51109316619113,24.086383879650384,24.135222902987152,24.30245217261836,24.655849410686642,25.42677902849391,25.95075133536011,25.51126024313271,26.403021302539855,26.305727040860802,26.387412953656167,27.096078804228455,27.131278390530497,27.804224606137723,28.49725383752957,27.922073568217456,27.833094730507582,28.510657425504178,28.62131003383547,28.917686304077506,28.974876215215772,29.42316010175273,28.746036676689982,28.288080783560872,29.22584504680708,28.606473681516945,28.496476096566767,28.77621887763962,29.74005617853254,29.516080039087683,30.28110350947827,30.02611126471311,30.99288355745375,31.314589040353894,30.735954623669386,29.811398629564792,30.14692148566246,30.608210475649685,29.96085092658177,29.603562444914132,28.899481407832354,29.49315108032897,29.690272544045,29.301596321631223,28.349728907458484,28.884070169646293,29.817460907623172,29.07010512985289,29.902291391044855,30.166054473724216,29.245480756741017,29.727505644317716,29.129630783572793,29.91346744587645,29.74202293390408,29.731531700119376,29.300103534478694,29.01517334813252,28.383920753840357,27.83253884734586,27.80362644372508,27.674237950704992,27.350169345736504,27.878348174970597,28.005744497291744,28.64602436684072,28.491648817434907,28.015046485699713,28.015406432561576,28.432666562031955,27.481387006584555,26.996203277260065,26.76694037951529,27.270002438221127,28.113160118926316,27.830875356215984,27.123324231244624,27.393634585198015,27.967513537965715,27.340473271906376,26.54936410114169,26.182541062124074,26.003681906033307,26.331326777115464,26.433415809180588,26.90304124960676,27.642778788227588,28.289830347523093,28.950519785284996,29.11658228188753,29.67701500095427,29.491523316595703,29.39098573382944,29.581469979602844,30.012179097160697,30.063759656157345,29.10514025669545,28.944601361174136,29.26398082729429,29.80871202517301,28.929978371132165,28.803049464244395,29.702359061222523,29.669922614935786,28.98354085488245,29.973618631716818,30.927600813098252,31.44439721480012,31.69540833029896,31.7752304286696,30.940220350399613,31.563075168523937,31.63590971333906,31.814731393940747,31.839662932325155,31.481328161899,31.125508837867528,30.64109404478222,30.39618610497564,29.426677393727005,29.266749086324126,30.1650895960629,30.37638265034184,29.86121146287769,30.855072390753776,30.5400959989056,30.728717604652047,30.190095944330096,30.50801103701815,31.485792122781277,30.765158823225647,30.29993211477995,30.542522334493697,30.326117725111544,30.897999284323305,31.63688394613564,31.018790311645716,31.057901429012418,30.267883443273604,29.999742978718132,30.193728596437722,30.53125681169331,29.912140913307667,30.904122157022357,31.685900872107595,32.1147032128647,31.583161647431552,31.167344362474978,31.994862373452634,31.778446400538087,32.575170353055,33.42945546004921,33.62952145189047,33.08960148040205,32.949939453043044,32.04818141693249,32.336795119568706,32.2425370994024,32.40760253276676,32.95598901854828,32.57105071051046,31.779425017535686,31.826979245059192,31.06587101286277,31.139148492831737,31.662377833388746,31.65742679219693,31.495659622829407,31.886950825806707,32.108033856377006,33.04728944366798,33.93872756604105,34.82051101885736,35.6609523287043,34.73962668981403,35.47668363759294,34.60940374946222,34.47855383204296,35.37123772222549,35.917475493159145,35.134148825891316,35.06577855627984,34.54644860746339,34.80309749627486,35.60392291052267,36.02556651737541,36.51008243858814,37.27597083803266,36.552978629712015,36.458002601284534,36.93901879712939,36.61529240850359,35.907149804290384,35.641952383797616,35.68659286526963,36.23889729054645,37.139240737538785,36.34702727012336,35.61304962774739,36.12523677619174,35.15359891066328,35.58282978646457,36.029536022339016,35.997792263980955,35.908563187811524,34.96119348425418,34.65216744551435,34.72046382073313,34.58694229926914,35.0541682690382,34.31487801717594,33.86755020171404,34.8094704952091,33.896639046259224,33.57052456960082,33.65556169766933,34.5512658203952,35.12499811174348,35.105283982120454,34.271671588066965,34.29924045782536,33.873516499530524,33.11960069136694,33.61296326154843,33.70841503981501,33.28483844129369,32.46645238716155,31.90773577336222,31.85847290745005,32.594029754865915,33.28870517574251,34.1784480297938,34.6893305350095,33.84849301725626,32.92929815966636,33.92445651581511,34.594141870737076,34.71840704372153,33.78748720791191,33.83828083379194,34.81672640424222,35.23745147138834,35.35490889195353,36.34316384932026,36.232587340753525,36.84396598208696,36.01127742836252,35.35656612133607,35.24766746722162,36.04594600945711,35.16276662517339,36.15075242333114,35.383803507778794,34.57711417833343,33.97403895482421,33.70036458643153,34.3055508476682,33.64640199020505,33.393284167628735,32.61717483308166,32.06086338451132,32.76264807069674,33.44612283818424,33.92364201089367,34.30980467889458,34.92949296860024,34.66430470580235,34.46884867781773,33.724838838446885,34.13246378256008,34.33260932052508,34.69880349794403,34.84070693142712,35.24350404320285,34.668836465105414,34.83207299048081,35.42529629776254,35.0528568206355,35.97654034849256,36.18993057170883,35.25388559093699,35.372756614815444,35.62196802906692,34.75375442998484,35.17229615850374,34.49654192943126,33.959540233016014,33.013544119894505,33.65019767312333,32.79443595279008,33.21282722521573,33.14213064825162,32.28837596485391,31.663844146300107,31.738844320643693,32.21349503053352,31.39193213218823,31.98736735014245,31.94767586607486,31.090684549417347,30.47738661756739,30.86223122663796,30.92909383866936,30.46345229120925,30.663900265470147,31.2660304591991,31.848179607652128,31.289200881496072,30.47321984032169,30.927378962747753,30.88329475419596,30.870890910737216,31.593624139670283,32.236692926846445,32.506143210455775,33.44097343692556,32.88619945617393,32.78403630154207,32.12409410672262,32.47260015364736,32.123601438477635,32.27717464603484,33.0498336488381,34.0088239419274,33.87392869731411,33.448738374747336,33.42958104144782,32.75192480487749,33.37678837357089,33.27500176336616,32.91293125366792,33.50442588562146,32.50969516998157,32.670512245967984,31.6777209113352,32.12689356971532,32.31123197777197,31.54274488147348,32.38673130469397,32.71259617852047,32.85246138088405,32.76685548387468,33.281027525197715,32.58611449692398,32.0266295382753,31.939869053196162,31.930992167443037,31.954638212919235,31.739406384993345,31.644775525201112,32.42389926081523,32.191175263840705,32.383824854157865,33.21947555197403,33.406802704092115,34.283567478414625,35.214831586461514,35.99537861999124,36.43226902605966,36.16707764565945,36.86766508966684,36.82632113201544,37.16669907281175,38.12074904423207,38.83104644995183,38.444893449079245,37.82828973559663,37.24188193352893,37.89985932642594,36.9108504941687,35.912897231057286,36.440876125823706,36.955300541594625,36.34242926072329,35.6235276455991,35.60753504280001,35.746569668874145,36.121156544890255,36.439804133959115,35.604166951496154,36.016958312597126,36.40788040077314,36.11926984554157,35.25401880592108,36.13146153371781,36.90865072980523,37.90664854366332,38.04479471407831,38.61458721617237,39.187534934375435,38.92191443732008,38.91292081493884,39.054164100438356,38.68198253493756,37.8016437352635,37.96866297535598,38.63964712433517,38.011710956692696,37.997937912121415,38.49520307639614,38.024068617261946,37.8475653603673,38.62067808257416,38.967688652686775,38.332471046596766,38.6364560010843,38.576615252532065,39.28267255658284,38.860064981505275,39.25313881132752,38.84230672754347,39.00963929388672,38.65999160706997,38.40379930566996,38.96075268974528,39.70389501657337,39.01953684305772,38.83242927258834,38.94805039325729,38.47050066385418,37.97549134818837,38.64129483839497,37.917914423160255,37.81539487838745,37.158728196285665,36.32954101311043,36.233671149238944,36.24379492038861,36.0044033722952,36.047927039675415,35.090115401893854,35.34439730364829,35.55504246940836,35.51667463313788,36.41359518561512,36.46346211479977,36.42961945710704,36.94360147090629,36.447170986793935,37.161347527522594,37.08263093745336,36.81821535807103,36.947592691518366,36.586166786495596,35.68249308690429,34.94032231066376,34.050705971196294,33.50089364312589,33.870004537981,33.5336440699175,33.801006691064686,33.71787649206817,34.11494574369863,33.88293603481725,33.88932252721861,34.82075943984091,35.27507550409064,34.57965824427083,34.082351341843605,34.58471842762083,34.926744708325714,34.36250706575811,33.851586622186005,33.30586789455265,32.51269328920171,32.36713461717591,33.345998206175864,32.655411867424846,32.742220451589674,31.886604752391577,32.046875377651304,31.38300201157108,32.187074032612145,32.42655736207962,32.12685112049803,32.39271978242323,32.828491725958884,33.20871902117506,32.56090451171622,31.823628950398415,31.088361304719,30.094084478449076,29.205422238912433,29.229146408848464,28.771149488631636,28.751890630926937,28.699149900116026,27.890419284813106,28.306007432751358,28.040510609280318,27.273722470272332,26.671673014760017,27.50821830658242,27.54023743607104,28.335103377699852,27.362540556117892,27.654833705630153,27.34292921796441,26.642594125587493,27.341885859612375,26.977025415748358,26.503082619514316,26.532609025016427,27.278179129119962,27.643172291107476,28.538694554939866,29.002951972186565,29.659901157021523,30.048792153596878,30.91723990580067,30.86527184676379,30.159334554802626,30.40257083903998,29.640617642086,30.54012402240187,30.106710652355105,29.48586662299931,29.94444384938106,30.522280630189925,29.789347434882075,30.435736446641386,30.89360251603648,30.897424888331443,30.76065429020673,30.834510105662048,30.065747246611863,30.739708453882486,30.669769634958357,30.690800443757325,30.109885681886226,30.27163274632767,30.964190231170505,31.652093078009784,30.964551464654505,31.037027716636658,31.4714248618111,31.29982010507956,31.275831133592874,31.24364056997001,31.99626549286768,31.90039540361613,31.846442538313568,31.166096774395555,31.06740528019145,31.770244451239705,31.560744321439415,30.96610744856298,30.44901143759489,31.417098206002265,32.05568959657103,31.38925268687308,30.962716105859727,31.332269760314375,31.786674593109637,31.396672702394426,31.671142282895744,32.50800374429673,32.03524840809405,31.496434951666743,31.05468911677599,31.13559438707307,30.44435454439372,30.960368318948895,31.26545406319201,31.583923769183457,31.65766751486808,31.827808366157115,32.19195940764621,32.62002939544618,32.21719293668866,31.59332738025114,31.109871569555253,31.78359280899167,32.2108290027827,31.353025758638978,30.741590230260044,31.16270813671872,30.929651216138154,31.27483569458127,30.622126871254295,29.942793399561197,30.780443735420704,30.074979876633734,29.695466223638505,29.0244380813092,29.85119494283572,29.558712630998343,30.171470968518406,29.56314206495881,29.933368790894747,28.98706959793344,28.219179292675108,28.05564425047487,28.08932368690148,27.84221605444327,27.746204090770334,27.392214408144355,27.627718107774854,27.936216665431857,27.658690297976136,28.428325091022998,27.91472970554605,27.926888898946345,27.90476285573095,28.098031973466277,28.435900346841663,28.87974394997582,29.378977028653026,28.81597506487742,29.308543739374727,28.93124247342348,29.71051295939833,29.014288262929767,28.058971870690584,28.2061819517985,28.027115741278976,28.869018006604165,28.900359644554555,27.90274413395673,27.041823754552752,26.783009050413966,26.597044381313026,26.0119707332924,25.21396771725267,25.842930370010436,24.95118373585865,24.135471960529685,23.39602276077494,24.23107642866671,24.527597412932664,25.52150731906295,25.301176829263568,25.05320195481181,24.075842844787985,23.334347381722182,23.916478969156742,23.892929217312485,24.45727841136977,24.274825962260365,23.777850539423525,22.863406501710415,23.417146716732532,23.727141425479203,22.926241557579488,22.419273691251874,22.221749293152243,21.484490869566798,21.5517073078081,21.624454429838806,21.385327694471925,20.867771916091442,21.33198758866638,20.54223203053698,20.478534202091396,21.384170175064355,21.39609423931688,21.87590125389397,21.53193716565147,21.598386788275093,20.651789733674377,20.093427477404475,19.92207992170006,19.988123692572117,19.59876531176269,18.87363469460979,18.007005317136645,18.939599354751408,18.051846037153155,19.043063159566373,19.158097923267633,18.525494948029518,17.988633893430233,17.105870492756367,17.39145847968757,16.39534509368241,15.783497302327305,15.423770661931485,15.978396391030401,16.218508028425276,16.755815860349685,16.411248488817364,15.638420171104372,15.576426167506725,16.282144008670002,16.130080950446427,17.128358236514032,18.0400620540604,18.782923750579357,18.53998945793137,18.66189332259819,19.4765594471246,19.846250044647604,19.95307958871126,20.806701474357396,20.23509408161044,20.965447858907282,20.299233466852456,20.300187341868877,19.833343624137342,20.525382479652762,20.52868325309828,19.568835146259516,20.268497561104596,21.0563321178779,22.012521773576736,21.832891606725752,22.582717690151185,21.786849123891443,20.928775181993842,20.833859198726714,20.342261593788862,20.363578429445624,20.006296832114458,20.066772414837033,19.35653774626553,19.962218165863305,20.646293153055012,20.85151516692713,21.402723596896976,21.48600805364549,21.95531919039786,22.234385159797966,22.486604125238955,22.38990448275581,22.359393034130335,21.787506450898945,22.58956681052223,22.579871407710016,22.472917321138084,23.221688863821328,22.527663978282362,23.298765188548714,22.732455942314118,23.50738047901541,23.318191280122846,22.35834869975224,22.388299205340445,22.6610094839707,21.666286199353635,21.40028468798846,22.398407719563693,22.475702170748264,22.179137805942446,22.153486327733845,21.29537091543898,22.043713164981455,21.4581661936827,20.777034590020776,19.942339400295168,19.00046169338748,19.34131136815995,20.17751780617982,19.559288180898875,20.346141867805272,20.143656035419554,21.100202064029872,21.779505029786378,22.028845031745732,21.658252202905715,21.187072604894638,21.483249090146273,20.759292422328144,20.59883805224672,19.983734321780503,19.44553602207452,20.002200518734753,20.64251826517284,21.428294043056667,21.51568766310811,22.09507275093347,21.12973099388182,20.549034924712032,20.903498843777925,21.60957582714036,22.245114699937403,22.899351087398827,23.02850143890828,22.74586497526616,22.392394857946783,22.366146706044674,22.173074778169394,22.10299389483407,21.482031092979014,20.829898548778147,20.298893272411078,20.929031243082136,21.09305671043694,20.885684981010854,21.632041903212667,21.344184373971075,20.763676439411938,19.812341364100575,20.746327945496887,20.704627083148807,21.139009521342814,20.97708900878206,20.065707919187844,20.32281848648563,19.94522322760895,19.723602015990764,18.998723584692925,19.59017029684037,20.291578187141567,19.85303621320054,19.052337945904583,19.867714354302734,19.418694944120944,20.059192603919655,20.382261348888278,20.062031814362854,19.741258648224175,19.668596521951258,20.537260002922267,21.108266906812787,20.50695405807346,20.364088812377304,21.207797823939472,21.21260973997414,20.705702729988843,21.53200005600229,20.561455747112632,21.03742984542623,20.605017244350165,20.655379009898752,21.201424452941865,21.41272324230522,21.047229930292815,20.69833075813949,20.51517422311008,19.517431567423046,18.536186367738992,18.33821335155517,18.104309524875134,18.05143779842183,17.939765038434416,18.38195763109252,17.692517668008804,18.365830963943154,17.841414426919073,17.90868689958006,17.634677787311375,18.449970471672714,18.86859582364559,18.170403908006847,17.96765850065276,17.44196263886988,17.55472832173109,18.240091035608202,17.41006149351597,17.958954831119627,18.235712230205536,18.519513046368957,19.516391093842685,20.005589950364083,19.71629928983748,18.796505346894264,18.40054672723636,18.923114412929863,18.23030765540898,19.080347906798124,18.857999857515097,18.888411114923656,19.388317526318133,19.85905564809218,20.79608218278736,21.238254448398948,20.91318067954853,21.42668925365433,21.102691539097577,20.93278547236696,21.506161032244563,20.669795187655836,21.532728550955653,22.040589885786176,21.3292338415049,20.641785773448646,20.44825823744759,20.384139840956777,21.25706438207999,21.862247159704566,21.798023184761405,21.86873838165775,21.91096128243953,21.07533859182149,21.312262836378068,21.92386137600988,21.44678727630526,22.244501213543117,21.65867434302345,21.604460494592786,21.772589397616684,22.35134873446077,22.24677008530125,22.794692336581647,23.751032939646393,23.066896667703986,23.746909903828055,24.401117145083845,25.125509792473167,25.829187315888703,25.392739590723068,25.00014505814761,24.5068670832552,25.054567720275372,24.925209536682814,24.38890136219561,25.29782337229699,25.441359934397042,25.805894368328154,26.057798905763775,26.247888904064894,26.933863676153123,26.61585428752005,27.394603959750384,26.88063744502142,26.65106906136498,26.28474209085107,27.176283774431795,27.538437656592578,27.23178157536313,27.74080462101847,28.666966140270233,29.508944739587605,30.101823871489614,31.06522036390379,30.504454359877855,31.203819604590535,30.733461108524352,31.444759802427143,30.84718529181555,30.413487969432026,31.185886785853654,31.43871766841039,31.38773552607745,32.09636271931231,31.501045318786055,31.813000060617924,32.36207958031446,32.09725770819932,31.23384637432173,30.971218200866133,30.308080221991986,29.324774046894163,30.16966051980853,30.20160098792985,29.71390372607857,28.897720320615917,29.09665570501238,28.975230660289526,28.061976437456906,27.388565390370786,26.410824079997838,26.801407874561846,25.897348935250193,26.098099363967776,26.789621625095606,26.904925395268947,27.429904671385884,27.15895645134151,27.424405322875828,27.941145999357104,28.81674966774881,28.739587002433836,29.048663035035133,28.538935258053243,28.626542891841382,29.2582892710343,29.845331384334713,29.529947709757835,30.11084882868454,29.465308907907456,28.92440560599789,29.597989125642926,30.232095105107874,29.561415940523148,29.55729342577979,29.965590480715036,29.41962215024978,29.805464661680162,29.07458471087739,28.547733690124005,28.94614444160834,29.691166181582958,29.19698945246637,29.189888005144894,28.60839075455442,27.83688142662868,27.402414506301284,26.893122063949704,26.46157441381365,26.599191062618047,25.65283718984574,25.835104884579778,25.115214735735208,25.098236131016165,24.459819342941046,24.931819489225745,25.88661888660863,25.100477140396833,25.314462263137102,26.172950331587344,26.158441907260567,25.20107177225873,24.6861265511252,25.60115982964635,25.904618901666254,25.27444773260504,25.430890979710966,25.81495276466012,25.365289104171097,25.820041991304606,25.631059036124498,25.375520491972566,26.371753328014165,26.38271581940353,27.230694415513426,27.315886934753507,26.653989640064538,26.37094348669052,25.739914395846426,25.48096526460722,26.21132987830788,25.925729559734464,26.12037141341716,25.68005806300789,26.620041341055185,27.483359170611948,26.909597440622747,27.404128956142813,27.328074359335005,27.980733721051365,28.085356826428324,28.00609987648204,27.83493587654084,27.711605238262564,27.001867189072073,26.80009591113776,27.221107236109674,27.271433371584862,27.932731844019145,28.483623502310365,29.126417979598045,29.64600908663124,29.46945553738624,30.4653451400809,29.687030178960413,28.943092154338956,28.940891567617655,28.701166837476194,28.35224181646481,28.737117482349277,28.635798139497638,29.114724971354008,28.813529985491186,29.29769316641614,29.227359707001597,28.23561435425654,28.877826244104654,29.56399647053331,30.173172887880355,30.240303026977926,29.40916066011414,29.123790565878153,29.79728880384937,29.75336914230138,30.619872112292796,30.288552506361157,30.99934288766235,30.420614534989,30.019949061330408,29.101442923303694,28.178783348295838,28.022614884655923,27.421669548843056,27.939605350606143,27.444555253721774,28.09836153825745,27.498803613707423,26.603375010192394,26.963880623690784,27.215061268769205,27.737367378547788,27.44298149878159,27.955989827401936,27.789241881575435,28.40906024398282,28.966471998486668,28.38771504536271,29.318407202605158,30.314709981437773,30.82719710469246,30.9226990849711,30.652395290788263,30.29576939251274,30.700366027187556,31.597105031833053,31.289820755366236,31.165354255586863,32.011068207677454,32.98397764284164,32.643163500819355,32.28156332857907,31.460107231047004,32.42325244145468,32.52236281102523,32.18004525126889,32.58963640034199,33.57087975088507,33.50656863767654,34.45517939981073,35.06252563232556,35.92720081610605,36.394953223410994,37.24291275255382,37.263759871944785,36.51620777929202,35.64321402134374,35.399809448514134,35.84967355336994,35.31880338257179,35.56831941893324,34.98917054012418,34.70073548750952,34.160878606140614,34.55329950340092,33.814440791960806,32.845116211567074,32.46908616274595,32.9864725000225,32.5464246510528,33.133519689552486,32.59834954608232,32.953255471307784,33.028000603895634,32.28948649810627,31.735440991353244,30.951030840631574,31.101134981960058,31.88787892460823,31.311233055312186,31.811723437160254,31.3887193845585,32.01424634223804,32.85306272050366,33.119706228375435,33.05102789122611,32.37570164585486,31.8503573294729,31.648931848350912,31.734074488747865,31.051151422783732,31.237642667256296,30.793881270103157,31.249623654410243,30.631520561873913,30.014736657962203,29.91208673780784,29.125905179884285,28.249594021122903,28.421243517193943,28.109159625135362,28.75989078823477,29.48814299982041,29.789787635207176,30.109068805351853,30.203027564566582,29.94349175412208,29.326918160077184,30.18359674559906,30.732778566889465,29.98016937635839,30.627468500752002,30.62406974611804,30.121765446383506,30.364434758666903,31.003719428088516,31.33606682671234,31.861868956591934,31.72452492173761,30.922965758945793,31.7977130045183,31.075509908609092,30.79355728952214,30.044242093339562,30.543943856377155,30.65045283269137,30.435523827094585,31.209633647464216,31.801878344267607,32.14115946833044,31.512365837115794,30.591901988722384,30.727229194249958,31.55061738193035,32.06274235714227,32.27496137842536,32.68587553454563,32.354761607944965,32.27054336387664,32.19820607965812,32.163884800858796,32.41635987581685,31.45676804659888,31.889361780136824,32.18581989873201,31.6053723488003,31.375396861229092,30.972062401939183,31.337127902545035,32.24101900914684,33.14673934644088,33.95749702351168,33.59710887633264,34.5434109615162,34.484342333395034,35.05420821532607,34.170546611305326,35.12660234095529,35.99758956581354,36.31479128263891,35.66501480713487,34.734875148162246,34.25695570046082,33.28474554186687,34.01022450439632,34.888421630486846,35.860929565969855,36.07248700177297,36.53972281329334,36.8612859621644,36.911914742551744,37.87386069120839,36.981485405005515,37.5365238096565,38.46516821021214,38.394339659716934,37.62201012298465,37.20512472791597,36.478405120782554,36.20288080396131,36.37504290184006,35.48192219808698,35.00186697859317,35.9764033164829,35.79896709183231,36.15575918368995,36.2851423243992,37.091500683221966,37.39341425243765,38.247685860376805,38.466998018790036,39.061309423763305,39.2440589456819,39.58260270534083,38.65886141965166,39.15789006277919,39.646566726733,39.4232083898969,39.5178152420558,39.99262155452743,39.54929260676727,40.11293543782085,39.93775987997651,39.10544784599915,38.86982055613771,39.6434315382503,39.04586603771895,39.82670633262023,40.7340815924108,40.71757049765438,41.09473842661828,42.057009052019566,41.815005236305296,41.033753897063434,41.68203100049868,42.04248170880601,41.79987720679492,42.223073391243815,41.765659692231566,40.90623694984242,40.45542919402942,40.36221614200622,40.30581037607044,40.516321355476975,41.30319295451045,42.26300946390256,42.53462849743664,43.43625449389219,43.384750943630934,43.995088681112975,43.76292322622612,43.766544005833566,43.41293276520446,43.50465549901128,43.41635680757463,43.035367912612855,43.29198593972251,43.69559130910784,43.37614758312702,42.80342061538249,42.22183808637783,41.91339193144813,41.97433063900098,42.966402858961374,43.47403176268563,44.217332849279046,44.86061502248049,44.966237037442625,45.83886634139344,45.91311757080257,46.14062273874879,45.921425534412265,46.59716890845448,45.724339010659605,45.512067584786564,45.60091563872993,45.02567814430222,44.07610199553892,44.07403591834009,43.892383485566825,44.741274908185005,43.84878934919834,43.400810131337494,44.217815305572,45.05719653470442,44.36161683592945,43.72731057461351,44.528426949400455,43.768985183443874,42.8372642188333,42.03314465470612,42.73570254771039,41.79458637395874,41.767780251801014,41.00547973392531,40.8660359447822,40.244367064442486,41.09493241785094,40.56917118979618,39.70464540878311,40.18540279008448,40.271026491653174,39.480131790973246,39.324815371539444,38.635564231779426,39.49564338847995,38.56563068041578,39.36386686749756,38.730178172234446,38.84326675813645,39.23955137701705,40.23722052387893,40.039139688014984,40.204408396501094,39.58562295231968,39.37820920487866,38.50082847569138,38.2474827603437,37.80404874589294,37.94719099160284,37.415140714962035,37.65741413924843,37.85101656103507,37.58164735324681,36.956364809535444,37.78334038518369,36.908174680545926,36.96936333971098,36.730740507133305,37.137045920826495,36.772289875429124,36.08318347344175,35.465529734734446,36.0215022796765,35.87353687174618,36.760863771662116,36.50101068196818,36.877363570034504,36.01572873070836,36.991535124368966,37.15511075081304,37.56799615873024,37.30555039085448,37.68940740311518,36.943987706676126,37.8581921691075,38.029256662819535,38.115109561011195,38.041559224482626,38.884061199612916,38.72433684533462,38.42804727284238,38.228888537269086,37.377908929716796,38.14112754678354,38.139469780027866,38.689083996694535,38.57857770426199,39.318236409220845,39.02508587948978,39.39444527262822,39.60172092355788,40.062414455693215,40.16575613664463,39.42314100591466,38.74243580177426,38.883461684919894,39.03317608870566,39.44784200377762,39.60641898820177,40.221380861941725,39.82143251597881,40.740527926944196,41.47974881529808,41.49455884331837,40.92384710162878,40.960933677852154,40.74537478433922,41.11324643995613,40.67204165458679,40.137814071495086,40.111711603123695,39.61035304982215,39.30618473980576,39.543850677553564,39.90506563987583,39.258022270631045,39.531044194009155,40.05220225919038,40.83190759411082,40.4456753176637,39.99616858828813,39.566054549533874,38.81436289148405,39.4059904939495,38.87611591303721,39.052200343459845,38.32471519475803,37.502572431694716,37.487539156805724,37.38945036614314,38.106866809073836,37.642801980953664,38.37856138404459,39.090927574783564,39.90156559087336,40.563830790575594,40.437094069086015,40.39455973915756,40.43602008046582,40.78767242981121,39.989840861875564,39.745933833066374,39.17745988257229,39.62042647600174,38.78902089456096,38.560311055742204,37.68993034446612,36.74234539689496,36.38051670975983,35.8259877092205,36.326722502708435,36.59860420553014,35.692553577013314,34.90030239103362,33.94929727958515,34.84914066269994,34.43398357834667,34.6853013751097,34.46729670604691,35.073542119469494,35.17779902694747,35.26288310997188,36.213539123069495,35.581428395584226,35.55246681626886,35.89008367387578,36.32902046851814,35.493860240560025,36.08355000289157,35.986847875174135,36.892213521990925,36.62788557028398,36.50227586412802,35.972954839933664,35.69427254097536,35.922114700544626,35.13482795609161,34.304230268113315,33.38470852933824,33.0202240338549,33.333331666421145,33.93900395045057,33.191107977647334,33.583960397168994,32.89690137282014,33.00769988633692,33.3306009368971,33.403415717184544,33.403934699017555,32.43000218877569,32.998217653948814,33.88717179605737,34.54744062991813,35.28005007747561,36.16110934736207,36.45207802671939,35.52331196749583,35.83208485227078,36.39201191579923,37.38600242044777,36.983425442595035,36.05235469760373,35.686194826383144,34.80383035168052,34.31449397420511,33.618238967843354,34.21761265769601,34.010750013869256,33.971626181621104,33.74703435599804,34.45256102643907,33.99712675344199,33.54924794752151,34.529400484170765,33.85456869006157,33.46199408452958,33.327244837768376,33.688403168693185,33.90294790267944,34.30257939407602,35.14836642332375,35.07041419716552,34.93789546750486,33.979517666157335,33.35884976806119,33.237962952349335,33.29970876080915,32.948722045868635,32.92629869002849,32.22726532816887,32.608488337136805,32.965703974012285,33.400682700332254,32.792268133256584,32.71429076604545,32.544500592164695,32.69836117280647,32.973071781452745,32.13593059685081,32.90181114291772,33.5848770304583,33.97128530498594,33.784971540328115,32.94839624594897,32.6224121437408,32.8242128319107,31.891559257172048,31.252390918321908,32.17066646134481,31.4950515399687,30.727316400501877,30.73820523545146,30.780253787059337,31.721527903806418,31.22993927448988,30.967738188337535,30.47085415618494,31.17268050974235,31.162357121240348,30.500334131531417,31.26475871214643,31.93735851580277,32.383627369534224,32.8111855131574,32.706033893395215,33.5533249839209,33.87795843509957,34.02347632078454,33.74348069680855,33.9171881233342,34.17523028468713,33.74890711391345,34.532308330293745,34.224780306220055,33.23284485889599,32.34373328788206,32.77182654617354,33.57921915035695,32.59479230782017,33.221386504825205,33.86751001654193,34.83813854958862,35.37025604536757,35.66896409820765,36.06249175965786,35.986978710629046,36.364215075504035,35.51936254929751,35.988176851999015,36.38612630823627,37.20741133065894,36.354659790638834,36.17050013458356,35.903399273287505,36.601161245722324,36.59566429909319,35.817146440036595,36.59218095801771,36.22365398146212,35.95339449122548,35.09270395105705,34.99051771685481,34.65079264855012,34.10531421704218,33.65274581313133,34.29175875661895,34.203017722815275,34.36241735517979,34.14881908707321,34.32672552810982,34.0529915522784,34.03693438414484,33.647184394299984,34.28138408297673,35.028876316268,35.19007908878848,34.19340906338766,33.982827002648264,33.38212398951873,33.72971174027771,32.7516644988209,32.80623829970136,32.01835957728326,32.069597804453224,31.20574991358444,32.18533783266321,32.564867281820625,32.87887176312506,32.75502604711801,31.999622370116413,31.849285524804145,32.28794786287472,32.43724111933261,32.79945521755144,33.33696337090805,32.8967807861045,33.78204161254689,33.66150020528585,33.57387295132503,34.396378385834396,34.765764453448355,34.373592490796,34.79059097729623,33.796940905973315,33.706430919934064,33.67108542332426,33.763331168331206,34.58460487192497,35.35481826681644,36.11772068915889,37.11175360903144,37.41556996945292,36.85911202477291,36.15516569791362,36.91644212976098,37.864921318832785,37.550826913677156,38.26252387557179,38.98260515835136,38.57758151227608,38.37166402256116,39.170687433332205,38.43611340178177,38.3138575386256,37.573819586541504,38.49754307232797,38.97627609828487,38.62910680426285,37.91801748611033,38.3246934870258,37.6640843693167,38.46304945042357,37.59246402094141,37.35115439072251,37.95200703619048,38.94872008590028,39.90123392548412,39.645127239171416,40.320252323988825,39.54469599341974,39.22282167663798,39.50049656815827,38.66529003623873,39.089331903960556,39.06865301635116,38.081877406686544,38.68508593272418,38.30517034558579,38.076558927074075,38.7262456221506,38.13277290109545,38.0704320515506,37.558490755502135,37.953889357857406,37.646406943909824,37.50191143807024,37.78570991335437,37.25021568220109,36.804403530899435,37.02404953306541,36.57709397887811,36.24943663040176,35.596221182029694,36.50207458343357,35.53034494584426,34.88456299807876,35.48820335324854,36.22316391160712,36.978826745413244,36.854705604258925,37.16051404410973,37.77483119722456,37.03196908859536,36.27220498211682,37.19858272746205,37.85499262996018,38.13101097010076,38.13088592281565,38.049678910989314,37.68098189588636,37.72655484965071,36.94459020253271,37.1040965737775,36.72794720437378,36.21276754559949,36.7023637117818,36.23083954770118,37.133375220000744,37.633907199371606,37.240935696754605,37.05489243008196,37.89789332449436,38.71896614972502,38.48718900419772,37.82541865250096,36.95602518692613,36.04164411872625,36.64156176475808,36.23404934769496,36.29155182931572,36.2103922450915,36.391372551210225,36.676996923517436,36.67987187951803,37.630839123390615,37.39679885422811,36.502539582550526,36.657229044009,37.203743546269834,37.771424318198115,36.946617455687374,37.06904509384185,38.01244737487286,38.18408645549789,38.19206214463338,37.72360339388251,37.200356549117714,36.78293646173552,36.76131069660187,36.159921104088426,37.04046805156395,36.822079576551914,37.703716720920056,37.762159493751824,38.055996311828494,38.018827193416655,37.718240009620786,37.94779155775905,37.59740331210196,36.88421164872125,36.450464617460966,37.327792536932975,37.10649152100086,36.22050932003185,35.23422201536596,34.54588256869465,33.77400252688676,33.62820422463119,34.30444073583931,34.03565478743985,34.85797825967893,35.576132882386446,35.98200870817527,36.972057617269456,37.74803924560547,38.20551504008472,39.19349525729194,38.44442957313731,37.684001518413424,37.1156164649874,37.91307869972661,38.811912240926176,39.524108732584864,39.586179913487285,40.069789852481335,40.34990113787353,39.7192751634866,38.74519997602329,38.3518982087262,38.986769545357674,38.65828554611653,39.59283048659563,38.98511118069291,38.863401697948575,37.9095798949711,38.495188113767654,38.02724449662492,38.91067755687982,38.31373258959502,37.794623222667724,38.63011306943372,38.99419880285859,39.617954187095165,39.05265890574083,38.65105023654178,39.53173134988174,40.407480442430824,40.98422265565023,40.54480807669461,39.63140821363777,39.948406426701695,40.470506116747856,39.83476682147011,40.75108617451042,41.32190252142027,41.75932614598423,41.47201635688543,41.83298980910331,41.84522522892803,42.703230649232864,43.268862491473556,42.80849703028798,43.60422589536756,43.76575814699754,44.34294869797304,43.92274570185691,43.80301341926679,43.638282996136695,43.90882992744446,44.398050443734974,44.67194634489715,44.2643711399287,44.2741212178953,43.723816950339824,43.640434856992215,43.93852356495336,42.94709041528404,43.36884263763204,43.154213873669505,42.29996677581221,43.00868951110169,42.09686175407842,43.04398354375735,42.92343612015247,43.41141765611246,42.57599167060107,42.60679220082238,43.20783139578998,43.054837187286466,43.83148266421631,43.908354881219566,42.99520413391292,42.92107290960848,43.783886454533786,43.718790707178414,43.50952252326533,43.2975744321011,43.368752415757626,43.35724025266245,42.60051376745105,43.0410313680768,42.977272373624146,43.09544561849907,43.124792906455696,42.472333104815334,41.529834491200745,40.907149620354176,40.647132999263704,41.16328724566847,40.30680908774957,40.096939319279045,40.28929153410718,40.67306180624291,41.22745844628662,41.35830174153671,42.34171561151743,41.59726930921897,41.27974522765726,41.1962817562744,41.57851367117837,42.132922584656626,42.31266476446763,42.98289144830778,43.765778933186084,44.566550992429256,44.69071796350181,44.12497963104397,43.46190006099641,43.66476012626663,43.93544000480324,43.08470625150949,43.2030986729078,42.23875366244465,42.96371495677158,42.31129473308101,41.39478836301714,41.78943194355816,41.295630844309926,41.619011264294386,41.7796919895336,40.89051901549101,40.28839603951201,40.19725604262203,39.7712229443714,39.69717825204134,40.19953459268436,40.961910997051746,39.98911361861974,39.75368336960673,40.26644246187061,40.42773038102314,40.48836089391261,41.26926017133519,40.8052283632569,41.63498097658157,41.077441413886845,41.92104142624885,41.30012547923252,40.542685909662396,41.09931010613218,41.153727639932185,40.647500006947666,40.50239851139486,39.50887583196163,40.36003855615854,39.61347024189308,40.59779751067981,41.37107943603769,42.17991984402761,41.944963530637324,41.87929385015741,41.31494488287717,40.8136845016852,40.447442536242306,41.389457560144365,40.82071616919711,41.67182581918314,42.52749567851424,43.10319010121748,43.17195186857134,44.023974265903234,43.18233844731003,44.09504174022004,43.156126188114285,42.856690131127834,43.68894734792411,44.05072125419974,44.30580153083429,43.4034903049469,43.545200916938484,44.24309425847605,45.03960833558813,44.37336939852685,44.15206514345482,45.123617788311094,44.514133343007416,43.713348710909486,43.30339157767594,43.34660744993016,43.62331505212933,43.34814372472465,43.65841552242637,43.456597133073956,43.204865044914186,42.59413168672472,42.88683977443725,43.136933580972254,42.894336039666086,41.9343745727092,41.655518654733896,42.4456611094065,42.49796181032434,41.721978187561035,42.6624813945964,41.86250817915425,41.764168597757816,42.25485094822943,42.061337587889284,42.70299822464585,43.18750765034929,43.89749428443611,43.54084420390427,43.99263420840725,43.11061206366867,43.68018754106015,42.91162286233157,43.594596373382956,44.50865195179358,44.69972859323025,45.577811936382204,46.43518620822579,45.73939448129386,46.54478044854477,47.102087429724634,47.996947980020195,47.573963874485344,47.22961033321917,47.28535680193454,47.86814707191661,48.756398362107575,49.73034268897027,50.56232484290376,50.511314327362925,51.23976025218144,51.07874043704942,51.78931127907708,52.26323068095371,52.42635982017964,51.53433490404859,51.24789198487997,51.77659974433482,52.08848192170262,52.359637181740254,52.11620130902156,52.76810701563954,53.52690296061337,53.91828624159098,54.12704546330497,55.05073946667835,55.4829284674488,55.17587029002607,55.838200653903186,55.648569175973535,54.927306425757706,55.25323982723057,55.465895822271705,55.791793500538915,54.86427941080183,54.848347960505635,55.73474897118285,55.18639767775312,55.387129474431276,55.695551600307226,55.72715370170772,55.10362628288567,55.183345864061266,56.14688303414732,56.25323233194649,57.11965399142355,56.70288525568321,56.070401473902166,56.36045613186434,56.61555276159197,57.331458896398544,57.192565373610705,57.137567572295666,57.983047424349934,57.09918509470299,57.24688379140571,57.702793704811484,58.30741890426725,57.76641086675227,57.97726720524952,57.69577179290354,57.620872979052365,57.65617522550747,57.25917194178328,57.89640286844224,58.666901144664735,58.63699610205367,59.31743374839425,59.35263735847548,58.454795653000474,59.27508320659399,58.62509140884504,59.43708354514092,59.115686788223684,58.19010894931853,59.141860492527485,58.1509250048548,57.203417119104415,56.30903552379459,55.35935677262023,55.4181891027838,55.31122363358736,55.76088040089235,56.74665704322979,55.936122958082706,56.404298982117325,56.11192114185542,55.918510221876204,56.915777715388685,56.9769450169988,56.26396910054609,55.93940818030387,56.56707052187994,56.40801204787567,55.438403230160475,55.52158084930852,56.25400405563414,55.35230503510684,55.49225524626672,55.17018453637138,55.263565100263804,54.39515592996031,55.02172129834071,55.876273033209145,55.93045067647472,55.92670614691451,55.82706794003025,55.41507481364533,54.83866246743128,53.868689621798694,53.00317411310971,52.69970580516383,53.052871133666486,52.93438964756206,53.65505600022152,53.73991016903892,54.34998623095453,53.47439075727016,52.90834053885192,52.32651437539607,51.331932108383626,51.279096795246005,51.03568506753072,51.60789789678529,52.37174854474142,52.88256980152801,52.39819782041013,52.25945879938081,53.24913306487724,52.49560943758115,51.86842768639326,52.818622761406004,52.33473360352218,53.02052015857771,53.28326560370624,53.700197119731456,52.760237752925605,53.306736453901976,53.72297139279544,53.78223511669785,53.12647024029866,52.318004528060555,53.142049906309694,52.36696704523638,52.99057126697153,52.15674181561917,51.84350447822362,51.930788421072066,52.80297280009836,51.845532544422895,52.64618638996035,52.88392964750528,53.797986393328756,53.58659715671092,54.46309773856774,55.41961195785552,55.269542223308235,55.62233290448785,54.89624795131385,55.12198319332674,54.40670906472951,54.455303355585784,53.947571120690554,54.93499797582626,54.07324474584311,55.00831220857799,55.05927395680919,55.27816643565893,56.22990214219317,56.1574269128032,56.26225764583796,56.18686723103747,56.96609889762476,56.12649739719927,56.0603516031988,55.22513297200203,55.80510605080053,56.541756205260754,57.39107207581401,56.431733907200396,55.93443355895579,55.29756108764559,55.78874242771417,55.239256957080215,55.25829397095367,55.76754093077034,56.221645411569625,57.16314523573965,57.660785745829344,58.22516736900434,58.831601820886135,59.058096167165786,59.48384755151346,60.29951915796846,60.28083215048537,60.93116674060002,61.34967680973932,61.08011179603636,61.670689697843045,61.842893541790545,62.39008026570082,63.35327495029196,62.44811146007851,61.523633000440896,62.208781889639795,61.66821782942861,61.86109541449696,62.61307261232287,63.36702085426077,63.52414157893509,64.0030641714111,63.244403649587184,62.30235907854512,61.5080800363794,62.456187745556235,61.71601449046284,62.2370713991113,61.606309776194394,62.4197767120786,62.70348455896601,62.12712979968637,63.005045793484896,62.7225601291284,62.597976081073284,61.812547153793275,61.875176911242306,61.95044301263988,61.30395504273474,60.93605222040787,59.953634972218424,59.380229000002146,58.559692927170545,58.752607956994325,59.725421820767224,60.23639633785933,59.505654024891555,60.50520099932328,60.70211740164086,61.348846145905554,61.2399326171726,61.424064371269196,62.365948990453035,62.9580979407765,61.96472888533026,62.12897870782763,61.956904812250286,61.00881881546229,60.706069263163954,60.1810118034482,59.44297945871949,59.38838457968086,60.09459408791736,59.17480084253475,59.79185040015727,58.82888477202505,59.66565251071006,59.163961802609265,59.60157426120713,58.959531570319086,59.87288004811853,59.98841190431267,59.328009460587054,60.02633406035602,59.221059947274625,58.9976125722751,58.180889684241265,58.26834446610883,58.52171912137419,58.245579971931875,57.43307832162827,56.56952564558014,57.43415668653324,57.89885282237083,57.93006884632632,58.61486627953127,57.85786952357739,58.62313704844564,57.78405497642234,57.99076752923429,57.83266473328695,57.523532409686595,57.156612577848136,57.19215122424066,57.20904272887856,57.16984590375796,57.96959456289187,58.96557730715722,58.631197658833116,58.97684189490974,59.409341571852565,59.592488571535796,59.36834514187649,59.74585012951866,60.39587900321931,60.263446705415845,60.82125729834661,59.83159481268376,59.56485021440312,59.63186326250434,59.84012832865119,60.67403299547732,61.13483743323013,60.766700715292245,61.06679327879101,60.319702804554254,61.06358779408038,61.693600236903876,61.630795722361654,61.545901872217655,61.447641984559596,61.054270593915135,61.568327160552144,61.018375338520855,60.58406307455152,59.86900312360376,60.34888637345284,60.92027467582375,61.8437141510658,62.67546032741666,63.09821256902069,63.39876160817221,63.00351123139262,62.4673132924363,61.84123940905556,61.86190323904157,62.29810799146071,61.485787749290466,61.058244672603905,60.58218174288049,59.596061487682164,59.33736873138696,58.86869719205424,59.79343073721975,60.66537211602554,60.57407696265727,60.04648718005046,59.472391600720584,59.64971236651763,60.5006678532809,60.493881955277175,61.22340864967555,61.301872548647225,60.877247179392725,60.531024008989334,61.08413561107591,60.97393827792257,61.80065811146051,62.51086440589279,61.76429005712271,60.8329606782645,60.80731929233298,60.033570118714124,60.927894262596965,60.95032306667417,61.84587185131386,62.55923698982224,63.46262438548729,63.52566194720566,64.02861209539697,64.49905002349988,63.790134540293366,64.61046642111614,63.63736882759258,64.33301221951842,64.2646628851071,64.09253443591297,63.23771690810099,63.37561847269535,62.95853536762297,63.335884366650134,62.50417186319828,63.04742490127683,63.46894588461146,62.86015758570284,62.25738761667162,61.601979760453105,61.8746837945655,61.0178427612409,61.1431249785237,60.66538466559723,60.34981014346704,59.720382606610656,60.038793922867626,59.92714990489185,60.246001300401986,60.26795760449022,60.461098505184054,60.02579310582951,60.070769811514765,60.72136207530275,60.74978337576613,60.35720139089972,60.93757113395259,60.77817790210247,60.30086006876081,60.41902855038643,61.26685028988868,60.75093737570569,61.446286988444626,60.84982770308852,61.8097318271175,61.64981817314401,61.25161031866446,61.115024752449244,60.27002414967865,59.81649751774967,59.21236763661727,58.37946958420798,57.5876326742582,58.40525107039139,58.64339876221493,59.46265506511554,60.00659258943051,59.665336166508496,59.2332574184984,59.07933688117191,59.415988128166646,59.98458438552916,60.73631491931155,60.6013900549151,59.60757839307189,58.954599175136536,59.915153911337256,59.554749115835875,60.196810433641076,59.951740430667996,59.10013949126005,58.27593715675175,58.92416113661602,58.03903120895848,58.73271751450375,59.17987846909091,58.254571916069835,58.35987005662173,58.597825162578374,59.31667528115213,59.059412031434476,58.10974434996024,57.37418346432969,56.58710464509204,56.430063909851015,55.638172913342714,54.72731388825923,55.4988333764486,56.37006806023419,57.36095168348402,57.997011760249734,57.169177944306284,56.659683546517044,56.03824594710022,56.880589589476585,57.531971618998796,56.553212362807244,56.95695931557566,56.87224193755537,57.522379723377526,57.13628407334909,57.15772397490218,56.369265855289996,57.04176194081083,56.5064650173299,56.529446724802256,56.09161410201341,56.480051934719086,55.90108333481476,55.63868607953191,55.705534890759736,55.66617062641308,56.197717033326626,55.51641748007387,55.34025955013931,55.2416012827307,55.57411451311782,55.02941070264205,54.11915209516883,53.5481726648286,52.743610673584044,52.06154819158837,51.29496425297111,52.06840331107378,51.260406682733446,51.579960186965764,50.95709714433178,51.265363433398306,51.60157534992322,52.06045894464478,51.20520765054971,51.800531052518636,51.61786939390004,51.49676635675132,51.62616411969066,51.819903523195535,51.17990559339523,50.531399042811245,49.87563231121749,50.477894054725766,50.91476640943438,50.44126576418057,50.64638611068949,50.105775410309434,50.88401771429926,51.35436465265229,50.982334471773356,51.48992996010929,50.50888412212953,51.13497073575854,51.079180031549186,52.01597094675526,52.218796542380005,52.04224856616929,51.1987082362175,50.95691639743745,49.9924934618175,49.522226174362004,48.727849510964006,48.27036059787497,48.3050446100533,48.700682553462684,48.611355752218515,49.090512576978654,49.183302316349,48.250029460527,48.68802016694099,48.49478704761714,49.05516038509086,48.99694631481543,48.7286236169748,47.77318749949336,47.08997755823657,47.38924163673073,48.30103408265859,48.26002291357145,47.601517151575536,46.81970561435446,46.00986909400672,46.75000542541966,46.78090175567195,46.01344034029171,45.9411219349131,45.1889988547191,45.0759517820552,45.03601624723524,44.8225258551538,45.368921753019094,46.05829159542918,45.52431602682918,45.14577947650105,46.10344532178715,46.35696293832734,45.9204785884358,46.10184995830059,45.31754668569192,46.085569456685334,45.73499989695847,46.109022920019925,45.453447244130075,44.6980155124329,44.99953692778945,45.07799482997507,44.48741890722886,43.56510305311531,43.39291971223429,42.82777833333239,43.689879859331995,43.238492677453905,42.242336340248585,42.027563992887735,42.96713696792722,41.98446872504428,42.0784274446778,41.139697439502925,40.582551459316164,40.33958456944674,39.771004914771765,39.07003183895722,39.238184191752225,38.77545488020405,37.88952340045944,37.833236158359796,38.56875415099785,37.991348976735026,38.217727557290345,38.48691512783989,39.09290409088135,38.19173260498792,38.169324898626655,38.11139191919938,37.80207409290597,38.533370011951774,39.269071275833994,40.104408606886864,39.65235071675852,40.20963860023767,40.82696241280064,40.7836403879337,40.901608946267515,40.54743143171072,41.19793729390949,41.37147259991616,41.8244892321527,41.614598219282925,42.16204268950969,41.89236196689308,42.28497526142746,42.32800457300618,41.70786397717893,40.814825075212866,40.56325989542529,40.97936855861917,40.99503321805969,40.27061168337241,40.91332451021299,40.826915077865124,40.47186568006873,40.98404264636338,40.37458889419213,40.7012656214647,41.606121921911836,40.99018129333854,40.654900243505836,39.704169359989464,40.468138214666396,40.17146804090589,39.94986737985164,40.90624315943569,41.14223504019901,41.92556002829224,42.049748819787055,41.696777877397835,41.46042675571516,40.75553180417046,41.41834799433127,41.79557878850028,41.16019112477079,40.95548873767257,41.4940617820248,41.7166920946911,41.1891041030176,41.53446995932609,41.86548076476902,41.26209616707638,41.00609224801883,41.567846049088985,40.71211615484208,40.325129482429475,40.95989984087646,40.93918778374791,41.45782880065963,41.944894067943096,42.096648240461946,42.52159241680056,43.007250658702105,42.57294655032456,42.951738320756704,43.747361827176064,44.72293765516952,45.50730148842558,44.681936434004456,43.854697552043945,44.71400530776009,45.4911890742369,44.87797509646043,44.86075572390109,45.62509034946561,45.621108170133084,44.697925285901874,44.30059762811288,45.04621862247586,45.48519767029211,45.24183981260285,44.34066356765106,44.34090752992779,43.905029765330255,43.24421774921939,43.40252835350111,44.000987094361335,44.08568145427853,43.25373344635591,43.969416244421154,43.50495754322037,43.719799771904945,43.65689592109993,43.172536502126604,43.29386799829081,44.063478467054665,44.413067953661084,44.56435916433111,44.96412931010127,44.8363225851208,45.26774816587567,44.85993154812604,45.31416674889624,44.7179573434405,44.684213067404926,44.487268256023526,44.103386329486966,44.054318266455084,43.15858646063134,42.19450892135501,42.64841712266207,42.60782537655905,42.324313800316304,41.47851573256776,42.420585504267365,43.277183507569134,43.89667263627052,44.03870273614302,43.9999434184283,44.831443154253066,44.8928521820344,44.63623472535983,44.24992200033739,44.61402520397678,45.009805934969336,45.72281787497923,45.11982986377552,45.36263227136806,45.10895841289312,44.96026333793998,44.22583013167605,44.311510449741036,43.790365405380726,44.30432781390846,43.50764388451353,43.33842284651473,44.05633897194639,44.43453699583188,43.63311641616747,43.176648202352226,42.18362121284008,42.72018429264426,43.18784750113264,43.71645435132086,44.24764362955466,43.77867718832567,42.889151020441204,43.792014196980745,43.92811596719548,44.11636953148991,43.23976302612573,42.81717078248039,43.226761595346034,43.236301347613335,43.111127991229296,43.15582736255601,43.689102654345334,43.063520456664264,43.00816815253347,43.04068152140826,43.127417160663754,42.1740804053843,41.469175880309194,40.63100120006129,41.09842325374484,40.72275209473446,41.17646359326318,40.338657673448324,40.84889273857698,41.16909874416888,40.88710169726983,40.35505509749055,40.495002020616084,39.52384222345427,39.55011311173439,39.448675154242665,39.24803030351177,39.37413930753246,40.10299363266677,40.70931636495516,40.9718106132932,40.90183012234047,41.542523559648544,42.14660463761538,42.66310986690223,43.63005718542263,43.06978596793488,43.87245904235169,42.92074549756944,42.147236595861614,41.15168772591278,41.38196319621056,40.51117942808196,40.9063957054168,41.8241184563376,41.490065419115126,41.01424468168989,40.73844299884513,41.51604784745723,42.279527361504734,41.43493043165654,41.89539563562721,42.16216806136072,41.35760221304372,41.59647955140099,41.13961707847193,41.07069980353117,40.95603013923392,41.23274245392531,40.8565516481176,41.42775702988729,41.288470949511975,40.92645369330421,40.217255120165646,40.077702968381345,39.869268398266286,40.24926594970748,40.76620872411877,39.87749936571345,39.6734789093025,39.76584259606898,40.51117766788229,39.8293265751563,40.231791156344116,39.633545434102416,39.43855639593676,39.44961227942258,39.851819245144725,39.64826541906223,39.53891408396885,39.40633583208546,40.33046307461336,40.663643532432616,41.29577642865479,40.52967340359464,40.182928586378694,41.17987401550636,41.19736553169787,40.47373607661575,41.059601936489344,40.128869054373354,40.20709604816511,40.41193584911525,39.72612767107785,39.511978805065155,40.182255724444985,41.174805980641395,41.25792557420209,41.414695928804576,41.82238943548873,41.31115558091551,40.6182454880327,39.955879396758974,38.95731487683952,38.795261261984706,38.4784522629343,39.082521602045745,38.69116109330207,39.10647615743801,38.36422514123842,37.39433090342209,37.524985544383526,38.08456080732867,37.22735033277422,37.353982992470264,37.216003451962024,36.40544902905822,36.8762641986832,37.680499949958175,36.98460290534422,37.62062884029001,38.007889854721725,38.12332999520004,38.18518002098426,37.72541726892814,36.93963110493496,36.08461151830852,36.19148507202044,36.38279685052112,35.787644455675036,35.77384630823508,35.28661714401096,34.46502357441932,35.14204389229417,35.04694474162534,34.15631609549746,33.37255776161328,33.73940706346184,34.66646802984178,35.09149498352781,35.883409342262894,36.65122181037441,37.09751262050122,36.160502506420016,36.729842950124294,36.62058503739536,36.69378179637715,37.3248243778944,36.91572090005502,37.02653348306194,37.70090942969546,37.24898531427607,36.85992072708905,37.654553587548435,38.01483374554664,37.48136952333152,37.4390857568942,37.895202309358865,37.018892869818956,36.31106694927439,35.756824059877545,36.55115022696555,36.950238671153784,37.58361529791728,38.39680131338537,38.40231021074578,38.60260024201125,38.95875163655728,39.66213771654293,39.40559445088729,39.71031229896471,40.4525908222422,40.289324776269495,40.54927710769698,39.961314188782126,40.57173372898251,40.13439882360399,40.224462288897485,39.389089822303504,39.56916641211137,39.382929836865515,40.32747714640573,40.83801458403468,41.76343439286575,40.79708092100918,40.80708338227123,41.02268805122003,41.17930093081668,40.444867683108896,40.0766579490155,39.738020757213235,40.5864070369862,41.26311349449679,40.925850422587246,41.47806388651952,41.023444005753845,40.87264799652621,40.99114408483729,41.858773577958345,42.415068535134196,42.57888585142791,43.39734022691846,44.27548040635884,44.07104137632996,44.25251371785998,44.51927932910621,43.56809483328834,44.50761527521536,43.63952978514135,43.35436449106783,43.98733593104407,43.71703905472532,43.5118013699539,44.51083838706836,44.96530382568017,44.90146911609918,45.15241881040856,44.77907617017627,45.617614523507655,45.05403611063957,44.963363914750516,44.977189562283456,44.722002014983445,44.66448390670121,45.50422728294507,46.08441426604986,46.043467783369124,46.872776456642896,45.97203054325655,46.22249153535813,45.56968779489398,45.6909941569902,45.18765965476632,45.72864777361974,45.67603037552908,46.144134784583,45.21227794280276,44.60957657452673,43.65293546020985,42.918216303922236,42.25757023552433,41.79262643866241,41.84529641130939,41.23990594269708,42.11741895414889,42.23761811712757,41.525099229533225,40.70252665458247,40.615173287689686,40.00873581832275,39.071430884767324,38.637195847928524,38.2715395251289,38.441211382858455,38.76228194171563,39.19783467007801,38.42658906662837,37.5965871848166,37.724638271611184,38.11702461820096,37.56555823562667,37.897234389558434,37.17709283856675,37.220267099794,36.77684157947078,37.39172281976789,37.22589370748028,36.506343563552946,35.80283052381128,36.78988610766828,37.517872519325465,37.11538773262873,36.3856896571815,37.316548882517964,37.67915814137086,37.85242416569963,38.48196011641994,39.4158388110809,40.09882238693535,39.181253225542605,38.31404650909826,39.235392285045236,39.82546381652355,40.44741675304249,40.28250622190535,39.58587914612144,38.98504431825131,39.8541300422512,39.10373427486047,38.20079761836678,38.21883904701099,38.074364623986185,37.45023367507383,37.00351176876575,37.493351308163255,37.087864093482494,37.96313794469461,38.276769197545946,37.50317510217428,37.65108918631449,38.037744626868516,37.41317223524675,37.136593860108405,36.28429461363703,36.23596530780196,35.59516080329195,35.47466007992625,36.21726777823642,36.0395099776797,35.80447888141498,35.94280994916335,35.27592693641782,34.81574768200517,35.68676693504676,35.47074711648747,35.237124998122454,35.9093376621604,35.582321610767394,36.46462357509881,36.39932516682893,36.61733645526692,36.31860061734915,35.367577218450606,34.912662810646,34.35626439098269,35.303497093729675,35.38097944064066,36.36692906497046,36.18342670472339,35.53868102142587,36.403774353675544,36.65786811383441,36.60286377137527,36.28204523352906,35.95217787614092,35.934072396252304,35.102522696368396,34.45418738014996,34.29176692524925,33.527927866671234,33.679525297600776,33.30679545458406,32.33596940152347,32.696636338252574,32.89937218790874,33.20416283700615,33.53645727550611,34.28920753346756,34.87405540095642,34.41009119944647,34.06445102067664,33.514848423190415,34.30385493254289,33.42548457952216,33.150777720380574,33.30664519686252,33.63360645575449,33.308542722370476,32.50026249885559,31.56231212383136,32.505483862478286,31.702300417702645,31.184847811236978,31.69106122944504,32.02550667850301,32.43100281059742,31.57741761347279,31.44507672311738,30.9287078413181,31.807065654546022,31.877008519601077,32.702357937116176,31.77503688633442,31.420217174571007,30.78197810938582,30.227214933373034,30.504682149738073,30.73627745034173,30.968426235485822,30.23145018145442,30.79391927504912,30.62622432038188,30.891910114791244,30.655441600829363,29.73628264432773,29.830927148927003,29.10629731742665,28.70548728108406,29.430695501621813,30.12408983753994,29.68071907479316,30.503558670170605,30.839721153024584,30.570804761257023,30.121624660678208,29.75797113729641,30.610399016179144,30.12879568338394,30.79947127075866,29.917368326336145,30.792531804647297,31.641440731007606,32.276361658237875,32.59336959011853,31.631551939994097,30.81791754439473,30.870514631271362,31.42477466305718,31.928048885427415,32.68031775485724,32.40156386466697,31.41834931029007,32.282220853026956,32.2770180972293,32.23059084452689,33.07635358441621,33.75114291906357,33.99008158175275,34.527995753567666,34.35134191531688,33.44770196406171,34.21109702158719,34.56492519797757,35.01251789415255,35.86928945221007,36.32128423638642,35.352759110275656,34.674381606280804,35.53393232310191,35.10967231774703,35.284106738399714,34.46807083580643,34.18772593792528,34.768960477784276,34.13565257564187,34.03091078158468,34.81780626764521,35.32173776580021,34.90443746559322,34.9308307194151,34.32086121616885,33.979035954456776,33.50012594508007,33.96006725402549,34.73176097776741,34.08466657809913,35.01495356345549,35.8856405490078,35.7465661810711,34.79298146953806,35.198563244659454,36.105377837084234,36.99317722627893,36.07863823790103,36.54890913143754,36.6799003938213,37.07985185692087,37.21124593820423,37.47651946218684,36.74483879189938,37.52819434180856,38.097370360046625,38.90161375096068,39.41211386118084,40.22971055097878,39.65175669826567,39.083114268723875,39.604612994007766,38.989335283171386,38.839881990104914,38.22801573900506,37.265459946822375,37.38446643156931,38.27338545117527,38.5572880259715,38.99782155407593,39.11615131562576,39.97039392916486,39.71066202316433,39.0114018865861,38.386611002963036,38.28151746233925,38.23964611534029,38.20176169136539,38.17012911103666,38.46719331294298,37.579846812877804,36.79240715363994,37.726398517843336,38.56676917895675,39.031012947671115,39.57950701052323,40.365392801351845,40.63190788589418,39.95260897325352,40.30842431355268,39.50884319283068,40.233581537380815,40.69151620939374,41.50239603361115,40.84329990996048,39.93932309234515,39.81498175719753,40.78879511822015,41.349925853312016,40.67496916092932,40.38824074761942,40.9450516551733,41.63849452044815,42.16456816485152,41.93084148550406,41.51436082320288,42.424665508791804,42.851772643160075,42.83151811501011,41.83225814765319,42.50345177995041,42.01062844786793,41.832308230921626,42.51472279056907,41.919805297628045,41.81550824549049,41.135117046535015,42.084478753153235,41.83281242987141,41.12624801276252,40.9290258847177,41.25028223544359,41.25402681529522,42.194415805861354,41.487570288125426,42.255133335478604,43.094444087240845,43.63573344564065,43.08542713383213,43.26825945591554,43.09099552407861,43.49527864949778,44.45679675647989,44.12817751336843,44.92991696065292,44.650820723269135,44.21809430932626,43.48475433839485,44.342270044609904,44.77672987570986,44.931401402223855,44.42153013497591,43.83258620649576,44.221929755061865,44.85611298913136,45.76815160503611,46.458128817379475,46.87862740037963,47.120296908542514,47.902653032913804,47.72998110903427,48.46068145008758,48.500854757614434,48.021127885673195,48.609553694259375,48.557742688339204,48.63971268385649,49.58312324434519,49.98876221431419,49.96045505302027,49.383183632045984,49.769916424993426,49.342227555345744,48.77496844995767,48.63835344882682,47.64113905886188,48.43074262980372,48.5709981569089,48.97628115396947,48.56633165758103,48.560591192450374,47.69451722456142,46.765975408256054,46.68270367477089,46.579053551889956,45.92625711020082,46.566144719254225,46.448223748244345,45.672325290273875,46.66521101491526,45.81233828142285,45.34570513572544,44.691798623185605,44.8295871661976,45.55797959351912,45.52405356615782,45.308433254249394,45.814798317849636,46.74989753263071,47.2990416190587,47.72825530497357,47.37755479756743,47.01683043735102,47.08315290231258,47.99153558257967,48.67362108454108,49.337641823105514,49.882315658032894,50.80880477046594,50.77286400599405,51.04485825588927,50.30541560379788,49.34071884304285,49.39922044565901,49.94572157226503,50.69547094916925,49.825256353244185,50.62028377596289,51.064325890969485,51.103466485626996,50.10690253600478,50.605995199643075,49.65763680683449,50.502249280922115,50.197258598636836,49.25312879122794,49.7858681040816,50.09090777905658,50.11944361496717,49.864335007965565,49.50653674919158,48.88740761810914,49.72960990248248,49.9249540749006,50.76773860072717,51.293684881646186,52.28051621187478,53.21919538453221,54.03651858633384,53.81506097596139,53.012641007080674,52.41361284488812,51.75863847602159,50.8278001411818,51.162295271176845,50.66815761150792,49.938776071649045,49.38055169722065,48.77761412411928,49.16808446589857,48.460131051484495,48.378286242019385,48.74122813390568,48.63590526115149,48.67476288834587,47.75969635276124,47.243311745114625,46.83539446955547,46.060800028499216,46.657019537873566,46.60582347633317,46.11934563051909,46.0589627251029,46.89876707736403,46.825847171247005,46.02096906583756,46.806084810290486,46.15846790606156,45.45859439717606,45.17611247114837,45.086401919834316,45.195253112353384,44.466172483284026,43.908615332096815,43.95735983084887,43.84912314731628,43.320250963326544,44.11338356509805,43.344294579699636,43.020484095439315,43.35159735288471,43.76868175668642,44.38222499657422,44.33789991773665,43.93230053782463,43.48236431973055,44.06559128407389,43.93733814684674,43.017059991601855,42.23112716246396,41.43938923627138,42.13175634434447,42.68071070825681,41.921027943491936,41.02536208741367,41.96644874336198,41.43381985183805,42.19712870428339,43.153126599267125,43.477366094943136,43.50004251208156,42.741473755799234,42.23683136096224,43.180171681102365,43.473307272884995,43.38805797789246,44.13235944742337,44.679991480428725,44.62435386609286,43.638851108029485,44.515054394025356,43.62119224015623,42.866772185545415,42.30048649897799,42.25287144072354,41.73069054167718,41.59868660196662,42.488760619889945,42.211765305139124,41.234615532681346,42.19329644739628,42.39710292825475,42.34222505195066,41.58671471569687,41.24054538179189,40.66006106650457,40.61060312297195,40.47038212791085,40.534027175977826,41.016877301968634,41.09533595200628,40.31886142445728,39.56938746664673,40.521708896849304,41.15146282920614,41.8725599530153,40.954123940784484,40.07092841947451,39.27124985679984,40.25084098754451,41.22017868049443,40.513874475844204,41.12514557177201,40.88335815956816,40.03021452249959,40.476636436767876,40.96830788021907,40.65822406159714,41.33236500713974,42.10096409032121,42.51573652261868,41.7099912436679,41.34155646106228,40.364643660373986,40.66358099505305,40.534952241927385,41.223208758514374,40.76463811844587,40.240889235865325,41.220351808238775,40.315869144164026,41.129852918908,41.432309973053634,42.205793099012226,41.476269201841205,41.62530932808295,42.16425979323685,41.59149102959782,41.90858605643734,42.55341768683866,43.53336906386539,42.77555863186717,41.85927984537557,42.517813198734075,42.52342713624239,42.24481693608686,42.73227881314233,43.723143805749714,43.90988343860954,43.93223062297329,42.9561947514303,42.808093681465834,43.4232839839533,42.47536713629961,42.492485038004816,41.57520788162947,40.86733767436817,40.607762418687344,40.813454813323915,41.4186918316409,40.76827983092517,40.290822019800544,39.67617845768109,40.412630065809935,40.763013461604714,39.816364620346576,39.84002929087728,40.55145992897451,40.60273256106302,39.70081946160644,40.27035005018115,40.02575420215726,40.34743297658861,40.61258050240576,40.1525625330396,40.56800192967057,39.62377075757831,39.106988669838756,39.1091727996245,39.77254759473726,39.096474879421294,38.42960755946115,39.25502614816651,39.7286093365401,39.69849021965638,40.540272092912346,40.63270718464628,40.5760669647716,41.410697592422366,42.357205119449645,42.829029311425984,43.74483572784811,43.66430384712294,44.004382603336126,44.46444102469832,44.52416833303869,44.66197168501094,43.90151770785451,43.32271651457995,43.9592393822968,44.775780339725316,44.27927527949214,44.75985998194665,44.75955619523302,45.30004449374974,45.04012181330472,44.11157376645133,43.65712696267292,43.41597497044131,44.24249112419784,43.82456498546526,44.18675779737532,44.53589862398803,43.70442130882293,44.071275466587394,44.026872374117374,44.18642197782174,43.33229986065999,42.79139292193577,41.81643705070019,41.685905396007,40.80620743567124,40.58065400784835,41.40508629800752,41.659252979792655,41.62876480771229,40.63017875561491,39.96653855778277,39.98897982062772,39.13604229781777,38.63178046327084,37.641673075500876,38.18128528725356,37.38723434461281,36.74593901121989,36.058325668331236,36.18687186855823,36.53879406955093,36.36067957337946,36.34111407864839,36.964433677494526,37.72361067077145,37.95320067554712,38.08214462734759,38.18306894926354,38.29211070900783,37.87842350080609,38.67825738992542,39.30521147791296,38.78306200169027,38.411376922391355,38.6227268287912,39.5365951792337,39.12517068022862,39.3944008089602,38.86497947666794,39.46039297385141,38.64588546473533,38.00987576274201,37.995474508963525,37.28224351629615,36.37960020964965,37.09000436170027,36.31558521930128,36.15259127365425,36.835778154432774,37.11393269337714,37.063256707042456,37.6638352223672,38.44461192144081,39.07155297882855,40.04525592410937,40.31915261223912,39.72658635629341,40.44901973521337,39.80993428314105,40.29071646882221,39.34052410861477,39.75232627755031,40.72983856732026,41.60018895333633,41.84007569914684,40.964878511149436,40.25833825394511,40.19125758577138,40.86550130834803,40.79816602729261,40.53388224216178,41.078117295634,41.75626242207363,41.32004515826702,41.006474626716226,40.093499070964754,39.49572559259832,39.29066691594198,38.74480905290693,38.788431697525084,39.1731928200461,39.49472395889461,38.762348285876215,38.52050761785358,38.69830713653937,37.89278604835272,37.18850456411019,37.38878893526271,38.23156600724906,37.65813965070993,36.9238898656331,37.86797994328663,38.42980392789468,37.99378874525428,37.42826173780486,37.65866864612326,38.30686536664143,38.27819504868239,38.592565182596445,39.47656617499888,39.36931780446321,38.72078808769584,37.93689257092774,38.76541324518621,38.127935053315014,38.53828745568171,38.22974931867793,38.64289384800941,38.92451002681628,39.27479061158374,38.42888702871278,38.96487797005102,39.964450656436384,40.122767275664955,39.57117656292394,38.84079891256988,39.79500453500077,40.26791816903278,39.45703334314749,40.074596393387765,39.570276661776006,39.132802985142916,38.864570738747716,39.51126923318952,40.10750018572435,39.496197973843664,38.73802912933752,38.67200682498515,39.24044041754678,39.87388703273609,40.65652808127925,40.1534522799775,39.929347527679056,39.73908316763118,39.1210613232106,38.77856447035447,37.8929857686162,37.8335982337594,38.3974967841059,38.625866459682584,38.25643747020513,38.096476732287556,38.60772579209879,39.210207626689225,39.20293782977387,39.00891928607598,38.069650202058256,37.98906301148236,37.35657873516902,37.267850315663964,37.16389924613759,36.7008238164708,37.29054422536865,37.34032055363059,38.26221877988428,38.76457106601447,39.679536235984415,40.290349648334086,41.18699166132137,41.199128701817244,41.78205326246098,41.45321012614295,41.037801313679665,41.52085554972291,41.05177049757913,41.42193829640746,40.68179459776729,41.09651094023138,41.979832684155554,42.415439394302666,42.32348949927837,42.443687946069986,42.890449977945536,42.34920499287546,43.24762900546193,43.59573425492272,44.27697569876909,44.557416467461735,44.208795440383255,45.191818521823734,45.015906929038465,44.62205744627863,45.380954523105174,46.240052410867065,47.0654527018778,47.66991728171706,47.59043801249936,47.63277952885255,47.25469797383994,46.28291820688173,47.10017109801993,47.403127449564636,47.60564274387434,47.42507821135223,47.60663268947974,46.64889160031453,47.201563133858144,46.31403195578605,45.80458278488368,45.69990637246519,45.94719236763194,46.27270354004577,45.42969179432839,46.2099956991151,46.197526041418314,46.0339092486538,45.58774508535862,46.44203205499798,46.73079349566251,47.300818868912756,47.87048424500972,46.92275368142873,47.85087445238605,47.83875981764868,47.25279541127384,47.37889367667958,47.614769184496254,46.76140849478543,47.68146499339491,47.74517448851839,47.99650448001921,48.964395854622126,48.558733446057886,48.28111147414893,48.82525080349296,49.52192275598645,50.31229615164921,51.26419824780896,51.18613372184336,50.722651754971594,51.61656837305054,50.745922395028174,50.092346251010895,51.0091258296743,51.29221379198134,51.076206038706005,50.4397623189725,51.38011588854715,50.39910909533501,49.735893761739135,49.10196926398203,48.547990610823035,49.111054183449596,48.57602613978088,47.640548893716186,47.65700315730646,47.021680295001715,47.214993350207806,46.98266326356679,47.031062277499586,46.975740970578045,47.86903101345524,48.073456617072225,48.92837721435353,49.85181076033041,49.41725502535701,49.885010288096964,48.94982590479776,49.316930305212736,49.297498523723334,49.55814210465178,49.72013505361974,49.22652994422242,48.55655955709517,48.01686133956537,48.8122904705815,49.28896372206509,48.34140885062516,48.86625422211364,48.81332763237879,48.520909431856126,47.85830686381087,47.61395883280784,47.60259407060221,47.28582415450364,47.96725163888186,47.85655447328463,47.84687685314566,46.87140365596861,46.306697064079344,46.726222408469766,46.30980408610776,45.803497252985835,45.14783337479457,44.518694730941206,45.04577656555921,45.93081279704347,45.535937623586506,46.18651848845184,45.42226725211367,44.728453036397696,44.31143799284473,43.96718304697424,44.762077427934855,44.929032091517,45.39093188988045,46.35552055435255,46.57848094077781,46.18595971027389,46.33161675091833,46.63426848081872,47.42350808251649,47.46732240635902,47.40731430379674,48.25708318222314,48.55340490024537,48.83680717041716,48.82756061293185,48.89208770170808,49.558185377623886,50.3705999488011,49.68250247789547,50.41421333234757,50.18384681036696,51.13934958865866,51.682992248330265,51.9702117680572,52.876347093842924,52.684893960598856,52.74371918151155,52.344087422359735,52.675632601603866,51.77751803956926,51.18251786706969,51.97439471259713,52.44659149553627,52.861361525487155,53.02989328792319,52.978720367886126,52.349452751223,51.4336077044718,52.00675446353853,52.50079195480794,53.010308200027794,54.01018400909379,54.26164565701038,53.343406562227756,52.37843221798539,53.23495221370831,53.092902693431824,52.72728009382263,52.672394830267876,52.524609114043415,51.55161972809583,51.864822529256344,52.767367778811604,52.23224187409505,53.02090418199077,52.2603688207455,52.53755547804758,52.03744950750843,51.967562990263104,51.19224580563605,50.41599744698033,50.4579773247242,49.52171880193055,49.646817680448294,49.88719323370606,49.04735373146832,49.288701497484,49.82452692557126,49.430175248067826,50.234573983587325,50.78815209213644,50.30614673625678,49.68671780778095,50.14012369187549,49.900173333939165,50.59336584433913,51.59084729710594,52.430113460402936,52.389726967550814,52.17347957100719,52.19694479228929,51.64915224118158,51.37445109337568,51.030707385391,50.91738294484094,50.870160018559545,50.09945043968037,50.61376990471035,49.87270144280046,50.75075820228085,50.14134836522862,49.34671259345487,48.597270391415805,49.266341858077794,50.01147679751739,50.035631463397294,49.40100704226643,49.28160892101005,49.262598710134625,49.61821506964043,48.90489669935778,49.38198222219944,48.75851942971349,48.55506122345105,48.19697172055021,48.37154788337648,48.05443225381896,47.66988881584257,47.922045479062945,48.37184155313298,47.428388215601444,46.642673606052995,46.81844504410401,46.250825276598334,46.26705563813448,46.32849090406671,46.97484232066199,47.616706230212,48.118657094892114,47.29495811229572,46.9835731042549,47.43287038523704,46.783771470654756,47.0077664363198,47.72037760866806,48.22578489687294,47.57696713740006,47.74153167242184,48.418298984877765,48.03051720187068,47.88867049617693,47.3624083022587,47.11061949376017,47.27251663058996,47.76961542433128,48.21625438146293,48.750602564774454,48.04476685123518,47.549975574947894,46.99141247058287,46.99399201013148,46.86791679169983,47.55419358983636,48.083496341947466,48.76649881340563,47.80665308376774,48.286346294451505,47.70985988015309,48.13856945000589,47.18993230583146,47.802193600684404,48.59364476148039,48.15833229664713,48.638359893579036,48.428698270116,48.37504871515557,47.953218281734735,48.612264247145504,49.177355215419084,49.43454758962616,49.52241342840716,49.29015904571861,49.656586800236255,48.7611260288395,48.04713065223768,48.92009381065145,48.8294567768462,48.77775364741683,48.78193795494735,49.39914242364466,49.176921121776104,49.00015580654144,49.580703645944595,49.69422356411815,48.93887788010761,49.525774631649256,49.299720014911145,49.596793653443456,50.10934012243524,50.08207368245348,49.204237811267376,48.25106167513877,48.954932203516364,49.17788892239332,48.77688279422,49.33279663370922,49.631628402508795,49.75899766292423,50.0131801222451,50.36773938778788,51.145041533745825,50.55568562773988,50.70662319054827,50.30740166967735,50.55273313308135,50.87550894450396,50.95220398949459,50.02659685816616,49.96861675940454,49.47191475145519,48.938823173288256,49.2936437651515,48.4257946847938,49.16446676198393,49.88697921624407,50.86066485894844,50.25818615825847,49.33765463344753,48.41093575488776,49.20875829597935,48.57743092952296,48.000611457042396,48.83373541152105,47.899839548394084,48.749886063393205,49.400840310845524,48.71895211795345,47.84470725199208,48.66268734121695,48.07131483359262,47.53661286085844,46.84347878489643,46.74200684251264,46.007029465865344,46.31919998396188,46.09792644856498,46.11996653024107,46.48537034774199,46.22644880134612,46.169111646711826,45.70426540449262,45.11357812443748,45.278457653243095,44.85897856019437,44.60562497237697,44.65393547900021,44.25601785071194,43.55778603255749,44.15373651776463,44.91684619151056,45.11567662889138,45.56414079852402,45.91951670264825,46.690902875270694,46.40557797206566,45.92662206431851,45.485966726671904,45.729132099077106,45.4193219114095,45.32214242266491,44.72692104661837,44.21795546961948,44.265892332885414,45.14443687815219,45.809835308697075,45.127072758972645,44.61891704285517,45.60767880920321,45.99259403953329,45.260720752645284,45.73532074689865,45.8237463850528,45.78519298089668,45.684340997599065,45.79617131501436,45.24987530428916,44.959715232718736,45.292739854194224,45.19294493179768,45.39295055856928,44.719831069000065,45.19599986914545,45.856331408489496,45.09878405183554,46.08201101049781,45.49261463433504,45.468055033590645,45.0677807466127,44.80940106138587,45.19415489397943,44.759408864658326,44.35800323495641,43.453518273774534,44.00079717952758,44.18124984251335,43.922986718825996,43.73677425365895,43.359648099634796,43.79975401237607,44.20676002604887,44.924195166211575,44.655363800004125,44.94893027469516,44.104080653283745,44.282792325131595,44.406988938804716,44.30200685141608,44.21870775287971,44.63406509021297,45.55944984033704,46.341049598529935,47.078824043273926,47.86220259685069,47.646276431623846,47.56688407622278,46.58462809305638,47.129550819285214,46.18112576613203,46.159401695244014,46.65070210257545,45.78585014026612,45.406647752039135,45.19909768085927,44.497172073461115,44.207872044760734,44.3509025843814,44.39999348623678,45.099632863886654,45.65853737760335,45.82122715516016,45.752064978238195,45.86928138276562,45.211014329921454,45.57042294368148,46.24586835876107,45.25631428556517,45.85351532371715,46.83551819715649,47.03592996671796,47.3086382932961,46.41639961116016,46.78024269454181,45.97962194401771,46.57905464572832,47.40579099813476,46.666513624601066,46.490264624822885,46.54218385182321,46.67280731862411,47.01099326368421,47.58865419309586,46.61338028404862,46.18333600368351,46.63910400029272,46.21867173910141,45.54188160551712,45.620964081492275,45.992360753472894,46.38188765430823,46.454552242998034,45.53843962121755,44.69509273208678,45.60132951196283,46.40031871944666,46.970110992435366,47.360478890594095,46.56109267799184,45.56265184562653,44.63158035464585,44.26623602770269,43.882535696495324,44.30807138280943,44.283478727564216,45.09060445567593,45.90152894286439,44.93750407593325,44.370394678320736,44.678302977699786,45.179711770731956,44.61224984470755,44.21064802259207,44.05178735451773,43.84894080879167,44.79252914013341,44.06033886829391,43.866093697957695,43.07598360115662,43.18004792556167,43.461029950063676,43.15356015553698,42.3346669441089,41.70215375907719,41.58320975257084,42.391223995015025,41.91701627103612,42.019017049111426,42.74702478945255,43.45425292477012,43.21770547609776,43.0911727049388,44.010004558134824,44.55798256164417,45.03884097468108,45.14627450378612,45.653437124565244,46.379516234621406,47.28148821601644,46.973691415507346,46.12148362258449,46.43230594974011,47.39549008337781,47.54742205794901,47.28746550017968,46.29470328055322,45.427050191909075,46.278166490606964,47.04724443471059,47.49307178519666,46.64809904573485,47.210351053625345,48.086748698726296,48.19133729208261,49.14747289381921,49.17589585855603,49.02818684279919,48.87968813069165,49.316733977757394,49.84547552326694,50.15442254347727,50.19157311273739,50.90155221382156,51.1997675569728,51.39734153961763,51.882611888926476,51.07143402006477,50.89462540531531,50.26744914148003,50.048489687033,50.39214855246246,51.21169221634045,50.507720752153546,49.94633536180481,49.524665085133165,50.48177095036954,51.07082651183009,50.78896652860567,50.75542627368122,49.86573757743463,48.89909460674971,48.9663169849664,48.56883101770654,49.27112833270803,48.57789184479043,48.62929614307359,48.991439416538924,48.07181487232447,48.48803058126941,48.629251156467944,48.497364175505936,48.995240786112845,49.01589620998129,49.72578376810998,49.667181151453406,50.443799160420895,50.219385620206594,49.436887975782156,50.19211513642222,50.4751698859036,50.92852488625795,50.99091674713418,50.49402273725718,51.34658970311284,51.25482042133808,50.828163504600525,50.3001008965075,49.80373662058264,50.10983882844448,49.537758152000606,49.94393173744902,49.63105250382796,49.55647535715252,49.38864657422528,49.582239363808185,48.940776146482676,49.380572862457484,49.1512963953428,48.251588750164956,48.29798509320244,47.7392248660326,47.14839420188218,47.65892631188035,47.95053951162845,47.64701802562922,47.13670552242547,47.398745195474476,46.932678528595716,47.41007537627593,47.75733098341152,47.99528177967295,48.559426257852465,49.04302328964695,50.02181485667825,50.66454121749848,51.587085785809904,50.67495099361986,50.83178411703557,50.39540907787159,50.55292757321149,50.90063627017662,51.029165792278945,51.34970610309392,51.35394411860034,50.894475451204926,50.74104722030461,51.602562819141895,52.044165284372866,52.710359055083245,52.83717093709856,52.5898287971504,52.991271139122546,53.072259032633156,53.402532424312085,52.407800478395075,53.01814983878285,52.36560975201428,52.85262025799602,51.91321735084057,51.248847355134785,50.7607647376135,50.53725894913077,51.370000356808305,51.415254204533994,52.0130506507121,52.496872566174716,53.32988343760371,53.42910102941096,53.04010287486017,52.84460708592087,53.066209414508194,52.18372968584299,52.03916974226013,52.86148227611557,52.0368793704547,52.599748480599374,52.77922168886289,51.91244650166482,52.84781247051433,53.17414912302047,54.11655308492482,53.42864420544356,54.23906987486407,53.980623319745064,54.969608846120536,54.79829247482121,54.95543033350259,55.40407160576433,54.498040416743606,55.350718387868255,55.526611550245434,56.041053316090256,56.806526102125645,57.42029894562438,56.58529369207099,56.62194634694606,57.56292846845463,56.77663055295125,56.574826191179454,56.4615761754103,56.92093599680811,56.817131601739675,55.90036439150572,56.424828426446766,55.70614868309349,55.94777410803363,55.96394490869716,56.03732262458652,55.11072902707383,55.73949951026589,55.736648675985634,55.638631435111165,55.98053965438157,55.149647960904986,55.652727112639695,56.40987453889102,56.99863937171176,57.26478410838172,56.49651980493218,55.96359946625307,56.68796286685392,57.23521140171215,57.1536502353847,57.43398616183549,58.28265235340223,57.812631383072585,58.174507330171764,57.187409242615104,57.04912170069292,56.29340915195644,57.13977048313245,56.534268281422555,56.731955874245614,55.963490861002356,55.461394533049315,54.97553612431511,54.504872330930084,54.21001419844106,53.720316492952406,53.97278617275879,54.75773768732324,53.84065857715905,54.04910802282393,54.08550096582621,54.337498515378684,53.58778484351933,53.77015879005194,52.90948980581015,52.327071509789675,52.80807118304074,51.83237446518615,51.69341445155442,51.4924797154963,51.0841991272755,51.54131550481543,51.90580949559808,51.681573648005724,51.293923274148256,51.353650600183755,51.672181758563966,50.814463038463145,49.882338946219534,50.26336121186614,49.361895739566535,50.29731964226812,50.86767480708659,50.6326517094858,51.01155711431056,50.686688054353,51.12796777719632,50.841262710280716,51.35185320302844,52.328317124862224,52.17716791993007,52.478677317500114,53.41748300846666,53.07821520650759,52.21229034010321,53.08211003942415,52.34877095418051,52.47385670244694,52.92193898046389,53.313339286483824,52.84062341181561,52.44171370752156,52.60064089810476,52.03864425281063,51.05308526894078,50.6230408269912,50.7585499510169,50.231113145593554,49.88857899559662,50.260097990278155,50.09909245511517,49.81324988324195,50.091883410699666,49.98490457236767,50.9620140385814,50.39828760875389,49.97804094105959,49.922709949780256,49.88133740518242,50.48453485965729,50.13122483063489,50.66683311574161,50.78944758931175,50.20573901524767,50.02482078131288,50.023699005600065,50.8750883792527,51.656306977849454,51.386286680120975,52.00169342150912,51.79456117236987,52.240063519682735,51.947543093934655,51.67708664666861,51.73673112830147,52.28752535255626,52.679198399186134,53.21230567013845,54.12442888924852,54.806655204389244,54.05271262023598,53.113628265913576,52.967129273340106,53.93911711825058,53.582664102781564,54.46958183310926,53.944030285812914,53.821863343939185,54.38730638055131,54.13040904328227,54.31539043271914,54.31438422156498,54.7441122950986,55.60743016470224,54.878783317282796,54.67716077249497,53.737685561645776,53.914605874568224,53.906820787116885,54.42323023220524,54.988983346149325,55.87084555346519,55.502351231407374,55.045989183709025,55.979380736127496,56.517299976199865,56.657133425120264,57.55028305994347,57.39669574704021,57.015726945828646,56.70827010599896,56.0295277540572,56.35637303395197,55.9395678602159,55.58167696418241,55.202609250321984,55.782506972085685,56.645971348974854,56.23098908783868,55.54109976394102,54.899474488571286,54.9934596279636,54.62116458872333,55.41876399703324,55.41251631686464,56.191591541748494,56.663321235217154,57.204238125123084,56.625583361368626,56.68285128334537,56.840832533780485,56.31246014451608,55.88654566882178,56.71361143980175,55.78070560656488,56.610028981696814,57.09027160983533,56.576996211428195,56.884725720155984,57.0435125711374,56.9115578699857,57.27420659130439,57.667497222311795,56.990619144402444,57.89043133473024,57.682364052161574,56.73213469656184,56.653035124763846,57.30140578979626,58.26421065395698,58.68869516905397,59.5528760147281,60.303878113627434,59.938732034526765,60.468802868854254,59.79349281685427,60.41507379710674,59.641534604132175,58.87237821659073,57.954682474955916,58.09815750364214,58.326268155593425,57.46010624570772,57.66521761845797,58.06493950076401,58.48577210539952,57.66505791479722,57.14279746636748,56.58792643249035,55.795274428557605,55.55233947141096,55.95697114383802,55.23426749184728,56.196111099328846,56.880499546416104,57.20094149373472,57.62884816713631,56.97802622476593,57.89137069741264,58.466638441663235,58.78185628866777,58.025804709643126,57.8952290317975,58.51996322860941,57.9112918660976,57.170257987454534,56.76843590661883,57.69510325603187,57.25270543200895,58.153942465782166,58.469076852779835,58.444925570394844,58.502614833880216,59.25177509337664,59.407296708785,60.36378176789731,60.25924692628905,59.92336244834587,59.67955305473879,59.32348876213655,59.01287503819913,58.731732551474124,58.33234003325924,58.07156706834212,59.006168825086206,59.48717929236591,58.8822526037693,59.61597351450473,59.396451050415635,58.56986415106803,59.408735738135874,60.07412783335894,60.035616447683424,60.82944816723466,61.46392887132242,61.32212739251554,60.77610845584422,60.22486177645624,59.89812930021435,60.237852331250906,60.30733183445409,60.68477431079373,60.78783625550568,60.22286994382739,61.08129318943247,60.77622568747029,61.04384509334341,61.17904343735427,60.75501789525151,61.02862962568179,60.59887597709894,60.77092138817534,59.90816727373749,59.66790029685944,59.164149422198534,58.9363659163937,59.12127537187189,59.81268920330331,58.97083459282294,59.51941701723263,59.42338497471064,59.873466305900365,60.58315379591659,60.802661082707345,61.28795301821083,61.75717434240505,61.24206649698317,60.546578485518694,61.29261318175122,61.03930161893368,61.53415584517643,61.093687957618386,60.75975312758237,60.08626996958628,60.081660107243806,60.2740588914603,60.360759548377246,61.3130745915696,60.42533683869988,61.40464799012989,61.23445929354057,61.86543568735942,60.89563832664862,61.20964448619634,60.496218024753034,61.379232755396515,60.48670085100457,60.5385709553957,61.3508773278445,60.99387736991048,61.45263804867864,60.47200554795563,61.339816213119775,61.26130103273317,60.49362531024963,60.88243442308158,60.817221694625914,61.60818822681904,61.320846169721335,60.57421150524169,60.10559140658006,61.008396798279136,61.2539570289664,60.49720502225682,60.38212122069672,60.507956435438246,59.85353540722281,60.499452352989465,59.72450459795073,58.74256416037679,58.46586241945624,59.446434458717704,60.28727573156357,60.36418599123135,60.24559574108571,60.250661708880216,59.56855327496305,59.255063101649284,58.39454886689782,58.529726893641055,58.78467077855021,58.538528530392796,57.98829278582707,57.41661771107465,58.0029313233681,58.167690373025835,57.665222690440714,57.98718701908365,57.063695191405714,57.97163446992636,57.5243609524332,58.20615823986009,57.582382862921804,56.90418519312516,57.26747152302414,56.75476125488058,56.45502691529691,57.25445534242317,57.74991482589394,57.46858340874314,58.447008535731584,59.24183436250314,58.500052514951676,59.48077360028401,60.20061008539051,60.73758631572127,61.52932657999918,62.10417820326984,62.212094247341156,62.21545911766589,62.340862897690386,61.87559098517522,62.13099988410249,61.63552360702306,61.72017065808177,60.8250746158883,61.3129650792107,61.47386687807739,60.72108589485288,60.86243735719472,61.67853436106816,62.465298022609204,61.50558377383277,60.94208473339677,61.30315234605223,60.67613493837416,61.569226395804435,60.757345064077526,59.880130253732204,60.10979044763371,60.82886581681669,61.27998691285029,60.79900578223169,61.61735400231555,61.194262977689505,60.407554688397795,60.016981405671686,60.806163189932704,61.48331548925489,62.15225400170311,62.80407716194168,62.87020648969337,63.76705213077366,64.2418302539736,63.90323871746659,64.04357871459797,63.23464781558141,62.90525179589167,62.85680567100644,62.35142841329798,62.65782261546701,62.03501142933965,62.179450096562505,62.55699260951951,62.551981998141855,63.017190244514495,62.20079933991656,61.7546362914145,62.19476805254817,61.51082664960995,62.21793526224792,61.50497939949855,62.241026184055954,62.017662403639406,61.194162748754025,61.90111644519493,62.584192543290555,61.930383703671396,62.281952971592546,62.855307360645384,61.955546603072435,62.30159149784595,61.33541140984744,62.19861709699035,62.890972554683685,62.42775068897754,63.09380113193765,62.817014150321484,63.66143488697708,63.4519293368794,63.88690189085901,64.42138685984537,63.59565789718181,64.05630492605269,63.30913658905774,63.39102718047798,62.94662900036201,62.73725757841021,62.10531665291637,61.52001722669229,61.44452518085018,62.07113065570593,61.1199711188674,61.44271969143301,61.285426715388894,61.04187189275399,62.01185684511438,62.60294863162562,63.567986126989126,62.76623391499743,63.59197115805,64.31927501317114,64.64695326425135,63.979311018716544,64.23689549649134,63.81438319897279,63.47654476342723,64.31816936051473,64.71981120761484,65.55750966630876,66.14212839445099,66.30040790187195,66.37741161463782,67.20451670419425,66.4236637991853,65.5692774686031,65.79903085250407,65.74746405798942,66.65518491063267,67.60104256495833,67.38298706524074,66.66567500773817,65.70735290832818,66.04252985818312,65.7994373110123,66.69240333791822,67.0337204542011,66.26707354234532,66.74245190061629,67.28327474370599,67.02684647776186,66.22807919280604,65.72208368452266,65.17833756143227,66.0588681618683,66.95749090658501,66.34910261491314,67.06061945296824,66.22034411178902,66.44029481289908,65.92815580265597,65.66024261992425,64.74701118515804,64.72222280083224,64.34673054562882,65.08762010373175,64.8895707144402,65.05594578012824,64.76713613979518,65.68216210789979,65.52435911539942,65.41948573151603,66.03390238806605,65.50080909952521,65.3430118765682,64.5558581543155,63.759134797379375,63.45830390043557,63.586492612957954,63.52884411299601,63.933196562342346,64.59965220931917,64.5256288703531,65.1130758356303,64.7060887911357,65.01642614835873,65.03455284889787,64.3603488644585,63.92077949270606,64.14146087411791,63.36111332336441,63.38392226351425,64.35832533426583,64.45716044586152,63.7949154721573,63.12889236025512,63.72343756491318,64.59032636648044,64.25316414050758,64.72246548300609,64.75629180064425,65.35740436799824,65.56407620105892,65.89267202746123,66.55861642118543,66.61486001173034,66.35857445001602,67.13504480477422,67.90168780926615,68.1897531230934,69.06199938524514,69.92588695557788,70.75087768724188,70.47747732745484,71.01706430828199,70.46593322930858,70.06737141963094,69.70449204090983,68.83052522549406,68.38223352702335,69.08599322056398,69.14319731295109,69.59236562298611,70.56486722733825,70.72200695611537,70.924221502617,71.41782798757777,70.96225103223696,70.40838140249252,69.57644439535215,70.34151077643037,70.44952965248376,70.90468915505335,70.54462270718068,70.54363733390346,70.53118944913149,69.6018808586523,68.91657900158316,69.45678732031956,68.48254336463287,69.21938278339803,69.10390936490148,68.54173199972138,69.47595826769248,69.68405317468569,68.86893428536132,68.0523006641306,68.57649801112711,67.61169963004068,66.64160655485466,66.01101603312418,66.67385792033747,65.75059826718643,66.05839488795027,65.1227940437384,64.26591174956411,63.711385586299,64.36013482697308,64.60995218902826,65.0774350296706,64.26070904452354,64.01493130577728,63.61853002710268,63.52725143823773,64.12726765498519,64.87956306291744,64.35964150680229,64.01201113779098,64.99909573188052,64.1120590781793,63.45934264920652,62.58830712782219,61.747945081442595,60.75226872554049,61.494854383636266,61.08058593980968,60.2938489173539,61.14542826777324,60.17232572706416,61.057978820987046,61.45060293190181,61.4709666678682,62.038106279913336,61.894035746809095,62.10127161303535,61.54175712680444,61.48677102616057,61.85172243183479,61.68686030153185,62.01757889147848,62.21955311205238,62.10667287558317,61.136920656077564,61.97772546717897,62.93011826602742,62.460024000611156,61.9451390565373,62.733493097592145,62.22481983341277,61.61112636467442,61.47121864743531,61.580013977363706,62.30217765457928,63.12163758277893,63.20977969421074,62.23023751704022,61.55610149446875,60.84553654072806,59.99906930606812,59.072593620978296,59.29260093951598,59.059315064456314,58.30242084758356,58.7861959785223,59.72911071078852,59.93122777156532,59.010599214117974,58.31820278428495,57.962842671666294,57.68104830989614,57.27830248232931,56.5524586555548,55.79444173583761,55.51837331755087,56.51605324214324,57.31045221025124,56.42948884796351,55.86493592802435,55.99163227714598,56.56045888690278,56.61539128469303,56.21522570634261,56.845354405231774,57.439220933709294,56.620543577708304,56.85406742524356,56.01613514497876,55.64271138003096,55.31065244646743,54.4106669658795,54.87714954977855,54.7264874689281,55.70877222670242,55.11367658153176,55.16363676870242,55.241156922187656,56.20509104710072,56.72567734494805,57.366506658960134,56.72630947176367,57.01130016008392,57.87232008902356,58.13639462273568,57.52450747229159,57.546260017436,57.871180986985564,58.32287116860971,58.94012226071209,59.18922798661515,58.377806656528264,59.006997155956924,58.39864378655329,57.449634776916355,58.28526145359501,58.798269202467054,59.10170607455075,59.098202251363546,59.47765074437484,59.76293425494805,60.543848956003785,61.10368384793401,60.255199525970966,60.34887371677905,61.04108827281743,60.66217526514083,61.01036559091881,60.18132759723812,60.92545757396147,61.77302947919816,61.19626141991466,60.196895132772624,60.71909965062514,61.66792795667425,60.99039863655344,61.122778337448835,61.48044812818989,61.32898872485384,60.475170833058655,60.75900609046221,60.51992337172851,61.472945055458695,61.369641412980855,61.62511135917157,60.72571854433045,60.21158847073093,59.904127802699804,60.33757458999753,60.59755460219458,61.085532687138766,61.35306487325579,61.281578307040036,60.575717316474766,59.62463900400326,59.116384874563664,59.26145995175466,59.37795742833987,58.79357488034293,59.03210868593305,59.75919370353222,60.08702467707917,60.819355606567115,60.41758155450225,59.81596814049408,60.52569107711315,59.97122842213139,60.92566186049953,60.7524802768603,59.95682839350775,60.45987846888602,59.95540005387738,60.72222411213443,61.36781511316076,60.39370804326609,59.7240758696571,60.63568997802213,60.61281842412427,60.055336164776236,59.30933920107782,58.56695882324129,58.52967909630388,57.76455629337579,57.21255558449775,57.30339496396482,56.389424682129174,55.50116661610082,55.02090577641502,54.1589074828662,54.55348730273545,53.69158832868561,53.18905947683379,52.441587165463716,52.6021392759867,53.13880783878267,52.88369060726836,52.85835078684613,53.15926197823137,53.770352428779006,53.36179979564622,52.61382791912183,51.72977979388088,51.34698929684237,50.684127961751074,50.22381395474076,50.516054997220635,49.84471786906943,50.424447152763605,49.66220237594098,49.0536594921723,49.87960634799674,49.975536117795855,50.923650685697794,50.38871009508148,49.54933082917705,48.87853621644899,48.30121471686289,48.51512811332941,49.284116472583264,50.01697746664286,50.58603615639731,51.18679828802124,51.72147909831256,51.21572807896882,51.3444715780206,50.56129225017503,50.6386638446711,50.40297919185832,50.18538688868284,50.691551126074046,51.133864753413945,51.16022641584277,51.90514828404412,52.83465619524941,52.069535181391984,51.64614875102416,51.94504603696987,52.52024549944326,52.60063889529556,52.382706337142736,53.34021882386878,53.09757625544444,53.482677596155554,54.40033362992108,55.11105769313872,55.772772431373596,56.075077509041876,56.992378204129636,56.57741218758747,56.081424578558654,56.796421059407294,57.65033387206495,57.65204742876813,58.16316107288003,59.10679023899138,58.91318569192663,59.879390113055706,59.74382247123867,60.27445816108957,59.32143749156967,59.72670768853277,59.73368024174124,60.2809654106386,60.99463343853131,61.144851768855006,61.82346354285255,62.1688778991811,61.42362741334364,61.55004993267357,61.57567217713222,61.00711606442928,60.55542707070708,59.670372990425676,60.50174756348133,59.60395944258198,60.33088184753433,59.679660726804286,59.88326059654355,60.79047984536737,61.40363091323525,61.07821643445641,60.89789175475016,60.15043445955962,60.806685861665756,60.84855360770598,60.71104510920122,60.04039386520162,60.45449194358662,61.11414575809613,60.61131914192811,60.62765884399414,59.893334126565605,59.536947017069906,58.946094346698374,58.38067581038922,57.55694744037464,58.37943270429969,58.93449469516054,59.689757550135255,59.20434645237401,59.26048407610506,59.44534441456199,59.41639588261023,58.85440146084875,58.249923802912235,58.950391771737486,58.894932612311095,58.8720884132199,58.748896833043545,58.9859117353335,59.8469421886839,60.76938372524455,60.059428144712,59.275883700698614,59.16916028782725,59.43747968040407,59.3911018203944,60.130370155442506,60.96690283808857,61.012892121914774,60.99884774116799,60.80781043227762,60.00857366947457,60.581633024383336,60.26142266439274,60.35539135383442,59.397347344085574,60.043592628557235,60.105438673868775,59.99839778710157,60.48003392107785,61.07830797508359,60.514172945637256,59.94992834329605,59.45459597278386,58.513212522957474,58.95414058258757,58.488347300793976,58.4522993019782,58.62207805039361,57.90985398599878,57.30954280029982,57.36309980368242,56.569314380176365,56.27755557699129,56.78734768321738,55.91659355536103,55.64924712246284,56.09891522489488,55.93267822870985,56.218638671562076,56.63109002588317,56.11302514374256,56.70873162569478,55.84031722834334,56.8220628676936,57.706013810355216,57.29226754652336,58.29182391939685,58.51152969803661,57.976643298752606,57.20383594930172,57.1865889695473,57.04612553678453,58.0450073806569,57.82348666386679,57.5078460406512,56.90718150045723,55.94411980127916,56.565712097566575,56.290527363773435,55.69731239415705,54.86397817451507,55.56913087889552,55.42502472549677,56.195474370382726,55.958271361887455,55.61313924565911,56.44709306862205,57.15664246492088,56.837935413233936,56.04905579192564,55.29769055917859,54.88820489495993,54.346420630346984,54.05439107399434,54.04179470008239,54.46697229100391,54.256978450808674,54.687528600916266,54.86957555543631,54.64372220262885,55.188326007220894,54.73352964175865,55.11628336599097,55.56462183594704,55.20502076111734,55.256656794808805,55.208983508870006,56.163140559569,55.59079605760053,56.26789735397324,56.137981416191906,55.270552838686854,56.16688711382449,55.86163998674601,56.01053657988086,56.75207163114101,56.122636277228594,56.589906490407884,56.381627650465816,56.72873746044934,56.439128330908716,55.85458173882216,54.90006337547675,54.50498874951154,54.115082379896194,53.51401848485693,52.655761775095016,53.49918222380802,53.76679933536798,54.2085844501853,54.93687852146104,55.53827892197296,54.76848006853834,55.146450978238136,54.35313589544967,54.551320909522474,53.62265424663201,54.39877786813304,53.42946010129526,52.553170481696725,52.98729943530634,52.67786625912413,52.11147654056549,51.79738661181182,52.36451346287504,52.62650300748646,52.99831622093916,53.39175552036613,52.592505865264684,51.794363209977746,52.01648659305647,52.8676643492654,53.35856242617592,52.72956349840388,52.61311319377273,52.73316732654348,53.48127417406067,52.747639630921185,52.29619290167466,51.5827304800041,51.319990675896406,51.463282191660255,51.613232308998704,51.17507384670898,50.45376928104088,51.06386870192364,50.39951137965545,49.980736897327006,50.615040759090334,51.313068308867514,52.170903898309916,52.69057531980798,52.1282154712826,51.58267866820097,51.91963760973886,51.93383725127205,52.30131023796275,52.27617094479501,52.18506677728146,51.473276120144874,51.02584809437394,51.91609005443752,51.66360266180709,51.364221293479204,51.05090610077605,51.94831819552928,51.01051140204072,51.932846195530146,52.694756659679115,53.65680705290288,54.25480118114501,54.995499182492495,55.09029038436711,54.136876803822815,54.518971908371896,54.58928649267182,55.09506781678647,55.0673012342304,55.371918809600174,55.212523135356605,54.47985272761434,54.056272914633155,54.72350612701848,54.22406757995486,53.88887976948172,54.886389792431146,54.4225181536749,54.90789421927184,54.64524177275598,54.537033785134554,54.016661764122546,54.825062623247504,54.90199412684888,54.73257237812504,54.840796866454184,55.211842610966414,55.74811094533652,56.2353830258362,56.84666149504483,57.3874681526795,57.40471750264987,56.978715382516384,56.46887659514323,55.565032687969506,55.56167418556288,56.446193646173924,55.960462402086705,55.420688232406974,55.03421587264165,55.216675830539316,55.729369120672345,56.30087937274948,55.885731398593634,55.05334284948185,54.98984864167869,55.790446881670505,56.2581347883679,55.73052965058014,54.73607491282746,54.89458853472024,54.286194521933794,53.54400079092011,54.08618152095005,53.66213690582663,54.2070375001058,53.99625351047143,53.90085583506152,54.07814403017983,53.31326472014189,53.79577076295391,54.07836158433929,54.287930907681584,54.23206749232486,53.77778358897194,54.082244358956814,54.2082579578273,54.770039794035256,55.04347870172933,55.20927006332204,56.05142306443304,56.57670900039375,57.385090531315655,57.90922088967636,58.426819323096424,58.79287759633735,58.42878420371562,57.65128155518323,57.35748569667339,57.017391313333064,57.87776151765138,57.113069938495755,57.665112394373864,58.15186534775421,58.050218377262354,57.39068655716255,56.859724247362465,56.62470138631761,55.99061617907137,55.27463108766824,55.943715086206794,56.855879430193454,57.64126358926296,57.61256404360756,57.70841633155942,57.07736781099811,56.19626214914024,55.90388218918815,56.24157662782818,56.09709354210645,55.974460255820304,56.64926997292787,56.92704930435866,57.85698196385056,57.59894503559917,57.68484480911866,57.965712930075824,57.31645990116522,56.493622089736164,56.77570357406512,57.55399956507608,57.361396042164415,57.78585780085996,57.241283205803484,57.16434045461938,57.18057044176385,56.97897165082395,56.46343661472201,56.51899832673371,56.42479139007628,56.44000121485442,55.58156823227182,55.76757127372548,55.853745229542255,55.34590735612437,56.128770077135414,56.9220255468972,57.15818762173876,58.052494385279715,58.91294487984851,59.718214908614755,60.5021310695447,60.99874793877825,61.08732342720032,61.69000910781324,62.56219312408939,63.077125390060246,62.44068133085966,61.54604655364528,60.67937302822247,61.35858210269362,61.76784637570381,61.60294901859015,60.68377231992781,60.05361545039341,59.63392936391756,60.10191436158493,59.358679385855794,58.69120430666953,59.64125929074362,59.35154607333243,60.013583834748715,60.07433374971151,60.80085700843483,60.911607255693525,60.87591281719506,61.55255258316174,60.925501643680036,61.494179054163396,61.9524048846215,62.192922364454716,63.18104007700458,62.87834376003593,62.108841818291694,61.153203590307385,60.94648181973025,61.374811481218785,60.50951356673613,61.47515665832907,61.429823875427246,62.05592161696404,62.777748215477914,62.44738402683288,62.48014762904495,62.14303342346102,62.02867701649666,61.640414252877235,61.840317730326205,61.46211066422984,61.858126322738826,61.96473375754431,61.471355772111565,61.27227863203734,60.76218107203022,59.900727617088705,60.246784689836204,60.20206348691136,60.852987359277904,59.86050046933815,60.438770406879485,60.97617169376463,61.30804796656594,62.123012715019286,62.984810795634985,61.98660971131176,62.21633548894897,62.09487668611109,62.08115028729662,62.001157264225185,62.176261296495795,61.53118238830939,60.97504561301321,61.64594769151881,62.517993106506765,61.58988415170461,60.962513386737555,60.00626663118601,59.0280490135774,59.494244986679405,58.75014760019258,58.614597658161074,59.16637915652245,59.27697928017005,60.25613672379404,59.404465487692505,58.99261542223394,59.85391627531499,58.868315789382905,59.44909683475271,59.955845115706325,59.18089432455599,60.1199665768072,61.014386917464435,61.055427928455174,61.55747945327312,62.21750210644677,61.77936627250165,62.70016078418121,62.56053644185886,63.22269339347258,64.01051758322865,64.71587223233655,65.67008210672066,64.98301614681259,64.80158950248733,65.37856640201062,64.85722676757723,64.67251386586577,65.30776099348441,66.05659187305719,66.45122955739498,67.01973153557628,66.86285881605,66.71918280841783,66.43896931735799,66.70817054109648,67.17992640985176,66.36556231090799,66.97737037716433,67.41428217478096,66.86092391749844,67.54715738072991,67.87057464243844,68.19153415504843,68.94075046759099,68.6350364536047,69.38889877824113,69.23084370652214,68.5007333336398,67.6393118603155,67.72680265363306,67.2793925749138,66.40062151476741,66.0433700941503,65.60646806377918,66.38628535158932,66.46954913018271,65.7958032968454,65.1189534580335,65.46288489038125,65.58548189792782,65.1930884537287,64.49049338977784,65.05803672457114,64.76106080366299,65.6936895083636,65.30261997086927,65.18287976505235,64.43504036730155,64.0118827545084,64.35054587433115,65.21713314112276,65.8391106473282,66.74351110961288,66.84739242354408,67.37237051595002,68.05893561895937,67.19926281878725,66.53828395484015,65.53934464370832,66.15291710058227,65.9359381091781,66.69312657928094,65.98332147859037,65.1983703225851,65.81312251230702,65.02897552587092,64.39893766259775,63.78591620037332,64.43655676208436,64.7539411005564,63.757247844245285,64.55475895432755,63.9016594029963,64.21468145307153,65.1790003888309,64.88692780723795,65.68237975332886,65.45446148468181,64.71211760211736,63.85146018629894,63.26843770314008,62.77169595845044,62.49096801271662,63.20091594196856,64.00710371509194,64.25646061915904,63.640000481158495,62.725025090854615,62.36194087238982,61.42543616471812,60.60287296772003,60.956632061861455,61.84229690767825,62.70819109631702,63.5082061314024,64.4005855312571,65.39425016241148,64.67025674600154,65.4767121062614,65.79023839905858,65.54886423051357,64.91237050574273,65.73760371142998,64.96544041996822,65.35919490177184,64.87700000358745,64.11998667987064,64.69484418118373,64.364763695281,63.68019236344844,63.84990307642147,63.90587564604357,64.76067339768633,64.03598411381245,64.62426922516897,63.84894468355924,64.22599655389786,64.4282884313725,63.93674573069438,64.18340334715322,64.99955436820164,64.10306456591934,63.65271924249828,63.658038179855794,63.48285343311727,63.105699461419135,62.11181375524029,61.35639083618298,60.60346873709932,61.077643766999245,60.324601392261684,60.53130235662684,60.3920032531023,60.16552979685366,59.372400930617005,58.9982977649197,59.02410694304854,58.16780748590827,57.336261285468936,56.624561234842986,55.779264798387885,55.9198771067895,55.44753492157906,54.451483013574034,54.007467980496585,53.534094971604645,52.597533331718296,53.561432633083314,53.36563726840541,53.786699591670185,53.6823513652198,52.891878195572644,53.71086231386289,53.62673852266744,54.18061649473384,53.58475875854492,54.1161219808273,54.29942779475823,54.56669599190354,53.59400429483503,52.885507225524634,53.56104187713936,53.66049493709579,53.93591285357252,54.32637086650357,54.806830395013094,54.34701828844845,53.58692081971094,54.46960772993043,54.31728283269331,54.606823085807264,55.46386936493218,55.288405074737966,55.266048884019256,54.8581596785225,55.6533580115065,55.668523671571165,55.27194082504138,54.69375696545467,54.82189391506836,55.11629828624427,54.199510170612484,54.195302040316164,54.40095537574962,53.67387609463185,52.70456917118281,53.65063169784844,52.768443506676704,53.49530308507383,54.29583878349513,54.14498830912635,54.91783766495064,54.22262813849375,54.24274236150086,54.65590317826718,54.50498237647116,53.58631088444963,53.24518127553165,52.67326201684773,53.61531160399318,53.10029196878895,52.8291886895895,53.17082317918539,53.57982373330742,52.72736343368888,52.79985819384456,52.53763778926805,52.6757129705511,53.32277193758637,54.2313547283411,55.124274764209986,54.47100252006203,55.10881427768618,54.5476432684809,54.49864958645776,54.05060940142721,54.69331218721345,55.554263117257506,55.48066299315542,56.204534319695085,56.345378312282264,56.24568763608113,57.00548493722454,57.07389797642827,57.80358909256756,58.6395868929103,58.45925232488662,58.66545461863279,58.76720336871222,59.37982349842787,58.598127158824354,58.80590031668544,59.28047705674544,60.067706886678934,60.732252933084965,61.04205346060917,61.51964929001406,61.396351534407586,60.434533435851336,61.28193674143404,61.26258306670934,62.0543620493263,61.861053621862084,60.965349892154336,60.901459872722626,60.596627679187804,61.22079568495974,61.99848079029471,62.42272296408191,61.508480532094836,61.552486846689135,61.667372138705105,61.1416143309325,61.28466897131875,61.86361972009763,61.43868325604126,62.080873577389866,61.258731881156564,61.41702441079542,61.352837511803955,61.2311599641107,60.75964025920257,60.67295713396743,61.348936054855585,61.00307710794732,60.10225509898737,59.23094209516421,59.29831309337169,58.75268831430003,58.27488098945469,57.54545329231769,58.19885179726407,58.722313567530364,59.71835587080568,59.18135036621243,58.94115662854165,58.41757524665445,57.88606896623969,58.6725473520346,58.41332489205524,58.086137673817575,58.55692428164184,59.55313669517636,58.99608959350735,58.06065342389047,57.899563087150455,57.624796733260155,56.918961198069155,56.17815380403772,56.67672847490758,56.7190563720651,57.50469610886648,57.276093032211065,56.63419030047953,55.78701346274465,55.54663161793724,56.490276647266,56.49051767354831,56.306762606836855,57.30076746130362,56.49710181681439,57.152452883310616,57.37327742530033,58.01101114368066,57.99004977568984,57.94628808228299,57.44109924277291,57.30092942668125,56.46099035954103,57.24578393669799,58.22849778458476,57.80788854882121,58.799882219173014,59.16836975887418,58.84493265952915,58.35229396214709,58.905098125804216,58.89073544368148,58.45825758902356,59.3568437541835,60.16038906946778,59.474811038933694,60.252285149879754,61.094245379790664,60.77876435313374,60.560603947378695,60.9238044754602,59.924802381545305,60.797838925383985,60.51851507509127,60.92710105422884,60.64141628984362,60.38664238201454,60.0615287842229,60.66997711127624,61.01434323564172,60.66611897852272,60.42878542188555,60.54528644494712,59.72222125437111,59.489197455346584,58.76636291062459,57.86799900326878,58.22396132070571,57.959485105704516,58.69717743527144,59.64052333449945,59.43511821143329,59.64646405680105,59.8426796826534,59.55394079256803,59.528044728096575,60.0970529220067,60.13958958443254,61.03167566470802,61.38004774553701,60.70430322224274,61.272853498812765,61.711457330267876,61.04001864977181,60.589898745529354,61.523833078332245,60.66637384472415,60.31023609964177,59.70422977907583,60.555177986156195,60.528820196632296,60.510629154741764,59.82715879799798,58.99055069684982,58.34662862820551,58.805745758116245,58.06641011266038,57.919044775888324,57.9128837576136,58.45352288661525,58.52717077964917,57.785378112923354,57.424155389890075,57.81591465882957,58.1003249832429,57.15987790049985,56.80988582782447,57.3187766703777,57.42674355907366,57.81910001952201,57.757655458990484,58.43671182822436,59.257269367109984,58.50387261575088,58.25965279294178,58.84038549568504,59.03200767515227,58.33601471642032,59.275305019225925,59.74337357096374,59.01286389073357,59.32954399706796,58.400258663576096,57.50814062776044,57.71756091155112,57.30461826780811,57.645161379594356,57.07365906890482,57.1249347939156,56.62703635636717,56.18820393970236,57.004533290397376,56.09188379859552,56.69129911996424,57.649266788270324,57.37049159966409,56.857510016765445,56.98397796554491,57.63289334252477,57.6073827506043,57.21403675386682,57.52206636732444,57.43102219281718,56.490077493246645,56.05721587035805,55.14764506975189,54.80128466524184,54.50158648006618,53.7770748026669,53.79547184193507,52.99118652800098,53.81823943043128,53.33450566744432,52.92448386969045,53.42843467090279,54.3767182151787,53.67216364853084,52.97647439222783,53.676359861623496,52.97020135354251,52.184660132043064,51.188642357010394,50.39132243860513,50.53753772517666,51.29702477157116,51.14871477941051,51.01466915104538,50.31670560082421,50.22553914133459,49.74570609070361,48.879508844576776,49.69589548045769,49.39119324879721,50.184657780919224,49.5787992477417,49.357408304233104,49.279574047308415,49.22762678237632,49.6748551861383,48.83517447067425,49.34108336130157,48.591310873162,48.80170316621661,48.0976648312062,48.376750133000314,47.52640006085858,48.23688609385863,47.92865517595783,48.803565949201584,49.1490846327506,48.933912655804306,49.810392428189516,50.65886776987463,50.32815407495946,49.85389566514641,50.09678776189685,50.04310955526307,50.27853660704568,49.7917429539375,49.74567816546187,48.91537166014314,48.73773478763178,49.14880360197276,48.32370618823916,47.699463529512286,46.94009986380115,47.17101301904768,47.75240781158209,47.59746217960492,46.64776591490954,47.09675374254584,46.603056008927524,46.155510156881064,46.577918521128595,45.718225948978215,45.21114777820185,46.13948994362727,46.38057052297518,45.44909976935014,45.88807410141453,45.15172604331747,44.96219953801483,44.35899944603443,44.76701258029789,44.72280917363241,44.98369277175516,44.46425493946299,44.68712827702984,44.35374355735257,44.924804280512035,45.56513266544789,46.46166745852679,46.29387934273109,46.46792233362794,46.977370475418866,47.932023097295314,48.57539232214913,48.602340729441494,47.821488889399916,47.70266662957147,47.67667585005984,47.40937682706863,46.96093335794285,45.974165566731244,45.905413896776736,46.40491605410352,45.95932822022587,46.65130693651736,46.935684031806886,47.719178282655776,46.971264586318284,46.127351752948016,45.232247427571565,45.89048598939553,46.21551510179415,46.89668141119182,46.703781875316054,47.54119234904647,46.62793733505532,46.67709822114557,47.676269092131406,48.10845956392586,48.20836634468287,49.17213098425418,48.37211144948378,48.5495300963521,48.6831391970627,49.35383976763114,50.13659483147785,49.84688484156504,49.74298316286877,50.096130734775215,50.31764740636572,51.06969730043784,50.15666923625395,50.072386329993606,50.21380270225927,50.405988064128906,49.881654725410044,49.628679959103465,50.30109066236764,50.92868751101196,50.036201279144734,49.55001891544089,48.64461851725355,48.080005505122244,48.89694507326931,48.595569864381105,48.611426098737866,48.72798731457442,49.721389417070895,50.113950330298394,50.39994268678129,50.90496272686869,50.33192031411454,49.770560265984386,49.70328269293532,49.5019271960482,50.087622764054686,49.917578029446304,48.99306807713583,49.40222179144621,49.44824708532542,50.280624515842646,50.14284909097478,50.41569889662787,49.94632230233401,50.72759375162423,50.28670465154573,50.2914103702642,50.94148944178596,51.1966403783299,51.1808289620094,51.62943454599008,51.69817068753764,50.92558375513181,51.334278870373964,52.13076093187556,52.52280958322808,51.90003958530724,51.36688229581341,51.11431724065915,51.73793586436659,50.95907141035423,51.20794826885685,51.89064251957461,52.186344909947366,52.24359262082726,51.929617221001536,51.80557216051966,51.91133763175458,51.51110779680312,51.77444847719744,51.01656141132116,51.83578063407913,52.67571056354791,51.78806654829532,51.21359064383432,51.305550712160766,52.27484683459625,52.94821030134335,53.513514569960535,53.29356760811061,53.462015037890524,53.69252128712833,53.895406837109476,53.47583272168413,54.35765338689089,54.49421050073579,54.97444760845974,55.44097148068249,55.49981460534036,54.79189845640212,53.9446872388944,54.33061903435737,54.780832442920655,55.55827257782221,55.07189590064809,55.743418290279806,55.57040784973651,55.1653204606846,54.82155885268003,54.61991132656112,55.059292756952345,55.66465390473604,54.96911245491356,55.5010200436227,55.45077719120309,56.26217317208648,56.78880990110338,56.664495766628534,56.685771082527936,57.02582180034369,57.44530310295522,56.8936450346373,56.60460143815726,57.40626952936873,58.171975444070995,58.466663581784815,58.01321769785136,57.11996408458799,57.873541636392474,57.57159192068502,57.143495509400964,57.718924595974386,57.18356754118577,56.366228045895696,56.13697585416958,55.32672133715823,55.75588445737958,56.35312443040311,56.84627739991993,55.88471337920055,56.18524657515809,55.69996746396646,56.6393463187851,56.98572619166225,56.20424640085548,55.59360511833802,54.763631862122566,54.194720819592476,54.23523862939328,54.568603575229645,55.03307920601219,55.21938755875453,55.238468911964446,54.73325619427487,54.37274448107928,53.651046955026686,54.618809293955564,54.131650449708104,55.075814777519554,55.393198874313384,54.8234555227682,54.228561292402446,54.77934276126325,54.46469660522416,54.60954483971,54.43313062097877,53.63762588799,52.6688620117493,52.220632064156234,51.6678481856361,52.47728387499228,52.08671974251047,52.96039104368538,52.92582717118785,52.89959042426199,52.71642605215311,53.51121858274564,52.53266032785177,51.93475528107956,51.159669612534344,50.779603097587824,49.901191807352006,50.55921213561669,50.27211331157014,50.13542157178745,50.27632096828893,50.0610848008655,49.42127288272604,48.5789952785708,49.098209973890334,48.47655540984124,47.50514172529802,48.33461204217747,49.154431951232255,50.13831366924569,49.15162185113877,48.52229609480128,48.372103253845125,47.420417787507176,47.404976583085954,47.56133756786585,47.19229050073773,47.11269361060113,47.167904935311526,47.770485430490226,48.006380651611835,48.46496523125097,49.21700700605288,49.056074273306876,49.78335864748806,48.859700138214976,49.08020626753569,48.90790679957718,49.82500999420881,49.191759014036506,49.89960545534268,48.957587321288884,49.73231773963198,48.76356790168211,49.07030570413917,48.32421799004078,49.237706292420626,49.13942850846797,48.17552303895354,48.38520368607715,48.517193463630974,48.18103857617825,48.397500614169985,48.10658450424671,48.015131891239434,47.776983625721186,48.32781744329259,48.48169951047748,49.17340978886932,48.63989733532071,48.10365081438795,47.26840071612969,46.94466161169112,46.22063557151705,45.71340839844197,45.0457866336219,45.97946964809671,46.32876951713115,45.34206670103595,46.25509273679927,46.60998588753864,46.85155642731115,47.41225073719397,47.595458103809506,46.69188837474212,45.97309999587014,46.24551943130791,45.892201617360115,45.51091524399817,44.70124226389453,43.80998892337084,43.73364604823291,43.226927378214896,42.76191701320931,42.95553910546005,43.056999595370144,43.229438250884414,43.17716122884303,43.80550564173609,42.850196284241974,42.36125362850726,43.2762124245055,43.005751443095505,42.79179003415629,42.826540265697986,42.34072284400463,43.00882787257433,42.60210750438273,41.968750692903996,42.34546697931364,43.006754737347364,42.435184844303876,42.75700139161199,42.228152609895915,43.09876107471064,42.10939200222492,42.0214083599858,42.16071511572227,42.44434435013682,41.48473721835762,40.69264026032761,41.26105085387826,41.45034939143807,42.20500225480646,42.117312172893435,42.28368760738522,42.4793895483017,41.66311092255637,41.58128723176196,42.51468457793817,42.6891632755287,43.36430852115154,42.98189880978316,42.18696203222498,42.51812922814861,42.47170331981033,42.66896527633071,43.395868233405054,43.595397893339396,44.01514582382515,43.91125199524686,43.42885703686625,44.11943758651614,43.490134912543,43.33429889380932,42.94791243551299,43.86046282434836,42.97862256411463,43.58663566457108,43.820969965308905,44.136132708750665,43.869568216148764,43.096984419971704,43.80155111523345,44.59972779499367,44.33202473493293,43.55666311085224,42.95278820162639,43.86503465566784,44.588683696463704,43.81585216615349,43.65394774219021,42.93705030810088,42.185146428178996,41.88227312080562,41.22452285699546,40.87551010586321,41.4831319572404,42.330782684497535,42.97770601324737,42.23363033588976,42.47294654836878,43.468143328558654,43.34861487336457,44.10377882560715,44.92561781266704,44.93064687587321,44.43494158657268,44.958161387592554,45.16540891164914,44.51655502105132,44.19602085929364,43.22102993307635,43.78664569975808,43.67168621486053,43.46018716832623,43.438916430808604,43.03415658092126,42.90654020337388,43.6700044805184,43.87314114579931,44.27558622369543,45.241521168500185,44.58774803485721,45.5463007139042,45.020837909542024,45.42653644410893,46.11731345579028,46.48057731753215,45.76142258383334,45.56287514278665,46.35801006294787,46.16460078768432,45.50279621779919,44.99723335262388,44.85129278060049,45.25797297200188,45.48180227028206,46.0463903369382,46.678532420191914,46.09320961777121,47.008031256031245,46.82280289568007,47.62934091966599,47.669105507433414,46.681569527834654,45.740706441923976,45.34774266835302,45.76537196012214,44.77365002594888,44.15220222203061,44.44124864693731,44.014738349244,43.092000514734536,42.109123341273516,42.015450045932084,41.70266159065068,41.80037188762799,42.05449841776863,42.851400192826986,42.019871066790074,41.59549424936995,41.41767707373947,41.80905796028674,40.941009887028486,41.473303293809295,42.32502672215924,42.66604837263003,42.97993701463565,42.23227767832577,42.741961350664496,42.2834638976492,41.90191573277116,42.7138351672329,42.31803958117962,41.94662258401513,41.12134926300496,40.892236470710486,41.10689590824768,41.86228386871517,41.05611508479342,41.50702501554042,41.42703355522826,42.320123402867466,41.85082639893517,40.95653907302767,41.329272959847,40.88928859960288,40.400085953529924,39.65711253369227,38.90664982423186,39.248603492509574,38.55786390323192,38.598016392905265,39.50952888419852,38.734283794183284,39.643803916405886,38.76298015052453,38.40182603383437,37.64915989013389,38.632192922290415,37.87948643229902,37.58807768765837,38.177335914224386,38.651079080533236,38.0328701348044,38.81631088769063,38.189011783804744,38.7927381307818,37.960060263983905,38.45250340132043,37.73652074113488,38.04921614378691,38.06170837627724,38.86344921775162,38.810928037855774,39.17144030984491,39.68804311892018,40.30536674102768,41.18542683450505,41.869670171290636,42.71806677104905,42.42776158079505,41.65108143584803,41.89304645778611,42.31689582206309,42.964797265361995,43.14398375200108,42.57440518354997,42.93422511033714,42.11315168114379,42.48928985185921,42.165040026884526,42.74583782721311,42.01364478236064,42.08976025879383,41.20140073215589,41.64376280782744,41.49449880467728,41.362575160339475,41.85321187088266,40.941966720391065,40.71878250408918,41.59452024847269,42.233709942083806,41.85297989519313,42.08142322907224,42.3261714912951,41.79643986327574,41.58785890834406,42.36781785218045,41.50749142188579,40.94424479501322,41.15170935122296,41.414538154844195,41.22222213586792,40.711861395742744,40.52390817599371,40.890953729860485,40.04116535326466,39.655894631519914,40.06538072647527,39.2744436529465,38.70839542802423,38.06150723202154,37.63296473165974,37.91457640752196,37.24508153786883,37.76037656655535,37.05079317186028,36.43715309770778,35.507810490205884,35.98361972067505,35.24784589512274,35.84988749958575,36.812241887673736,37.03447640268132,36.434439464937896,36.22638039756566,35.43440666701645,35.90108542283997,36.65760658867657,36.00622542435303,36.652436623349786,36.85968135949224,37.24537459528074,37.12808774039149,37.83756499737501,37.41708446666598,36.79789578076452,36.1807388481684,36.780414721462876,37.740271089132875,38.32534801680595,37.69851159583777,37.440533249638975,38.21401496883482,39.14159977249801,39.99698779126629,40.2006397950463,40.05634967330843,40.509804277680814,39.95633240090683,39.533624249044806,40.242669232189655,40.213344938121736,40.53619783744216,40.77287867665291,41.137755828443915,40.7778471307829,41.626798138953745,40.6748828953132,39.79322300525382,39.79866237100214,40.48464205954224,39.65206009428948,39.475929226726294,39.90619952091947,39.47703924542293,39.93403987120837,39.364671303424984,39.82183974003419,40.16749902302399,39.4800162287429,40.2196209160611,40.319437466561794,40.31537687173113,39.352616880554706,40.16218847455457,40.284486221149564,40.11795907188207,39.94893413456157,38.96030974574387,39.878297325223684,39.960681854281574,40.215621035546064,40.730740514118224,41.24225391307846,41.33703446853906,40.53444867115468,40.1926039988175,40.7892582998611,41.132276113610715,41.72052079671994,41.60333753796294,40.9245947310701,40.306269293650985,39.8365140077658,39.774586798623204,39.05162975238636,39.87600601417944,39.17554939398542,39.1718270694837,39.73824591934681,39.89638332510367,40.77356486674398,39.91752448491752,40.840286244638264,41.60955516342074,41.58202611329034,41.87121585290879,41.54162247804925,42.11725714337081,42.982013737782836,43.05915337335318,43.25538355810568,42.32090844074264,41.913366463501006,41.457311308942735,42.41847310401499,42.38030352583155,42.43687257356942,42.741297216154635,42.442288062069565,41.52398299612105,41.800435801036656,42.16246896237135,41.62501823017374,42.22642953367904,42.15381405642256,42.56083789560944,42.15852027758956,41.60496854363009,41.526294882874936,41.992867516353726,40.99792966619134,41.986946103628725,41.523299055639654,41.55542904045433,40.897767008747905,41.4289731439203,40.558437786996365,40.3897605240345,39.633424929343164,39.0569770000875,39.27031911723316,40.219100090675056,40.391429151874036,40.60778875928372,40.74591805040836,40.49926999118179,40.11335399420932,39.632902182172984,38.687389513943344,39.14301790902391,38.69427002966404,38.49302347237244,38.74935550009832,37.970704404171556,38.87015902996063,39.42607145244256,39.9305191221647,40.337685159407556,39.597606462426484,39.083998422604054,38.18905853899196,38.31777354655787,37.4952619895339,37.10325766308233,36.67572050401941,36.90526138385758,37.16715971427038,37.597964412067086,38.46202825661749,38.94305384485051,39.874713896308094,39.96380497002974,39.66380897723138,39.05011523561552,39.3432707847096,38.54928619787097,38.683570561464876,39.04407572513446,39.24918148294091,39.129463869612664,38.51570307649672,38.876035541296005,39.59772605728358,39.66192881669849,40.133593949489295,39.878229308873415,40.81240494828671,40.2012778762728,39.77628983696923,38.90020073577762,38.10754958586767,37.29210373852402,38.204842082224786,37.530808380804956,38.19541245652363,39.12190064555034,38.469939820468426,37.86910241050646,38.5165653177537,38.7812247951515,38.3959722048603,37.48866391507909,37.76346908789128,38.30723850382492,39.05527600226924,38.50041499454528,37.989660249557346,37.820495889522135,38.276322099380195,38.522484581917524,37.97697630338371,38.476914497092366,38.13415602501482,37.252334479708225,37.242632096633315,36.58870935393497,36.74414057843387,36.12437877198681,35.14534921431914,34.18367749545723,34.4231664207764,35.37274608248845,35.71343073993921,36.50194096844643,35.78711426211521,35.46032655471936,34.9337551840581,34.99224211135879,34.627780019305646,34.77996610337868,33.80518333846703,33.32238727156073,33.38024123432115,32.57017794670537,33.29600194375962,33.08788710460067,33.14666592422873,32.24903655331582,31.254810058977455,32.16689042234793,32.253014866728336,31.817587214987725,32.07711587427184,32.7169740232639,31.745185035746545,31.28740633931011,30.71545020164922,30.309510700870305,30.860554337967187,30.4255429985933,30.660909050609916,30.166631924454123,30.359843938611448,29.70366174960509,29.34481316898018,29.51051224116236,30.040403080638498,29.37548956926912,28.825308725703508,27.970480491407216,27.975894167553633,27.40622622333467,26.91167893446982,26.580216233152896,25.93962969444692,25.07498164800927,25.813315141014755,25.35775998327881,25.204644188284874,25.297748947981745,25.214137045666575,25.26721819676459,24.538574050180614,25.029397794045508,24.983341194689274,25.16442585363984,25.980463564395905,26.253138687461615,25.94902315083891,25.191017545294017,25.33899736730382,25.686069667339325,26.570413219276816,27.30199592607096,28.276450681034476,28.916018219664693,29.0818014414981,29.87154059810564,30.580134202260524,29.74190264614299,30.407392857596278,30.76141396537423,31.5296195987612,31.535026674624532,31.211776714306325,30.36457631411031,31.053937902208418,31.73642784357071,31.255349283106625,32.03863740991801,31.148270883131772,31.4037258294411,31.818634748924524,32.5048353234306,31.728658721316606,32.33576999139041,32.9216387225315,32.175906215794384,32.26918481523171,32.36849683849141,31.740763326641172,31.72674642596394,31.857322190422565,32.016748243477196,31.113321960438043,31.436724642291665,31.215472392272204,32.0482989740558,32.513471480458975,32.96712929708883,33.90972493728623,33.23889349959791,32.99590148264542,32.49430000409484,33.4536066390574,33.4827516367659,33.04195106122643,32.453222000505775,32.99349577119574,33.54989296942949,32.674186069052666,32.695528937503695,32.59962776163593,32.05064838891849,31.55001419922337,31.466875876300037,31.12471237592399,31.51985198445618,31.35696268826723,31.20002585509792,30.95154168177396,30.853926295414567,31.391070934012532,31.949643599800766,31.795401842333376,31.23406877135858,31.969872645568103,31.104514721781015,31.457036833278835,31.163045194465667,31.959494770504534,32.45386632718146,31.55827314592898,30.82807988161221,30.652059734333307,31.34413979994133,31.945494262501597,31.506522508338094,31.113513271789998,32.108121978119016,32.10497302049771,32.85940365307033,32.97006978653371,33.74082473246381,33.86097528645769,33.055853504221886,33.62483333609998,34.21011303039268,33.58019147673622,33.91770482296124,33.11086452100426,32.358714796602726,32.03565023094416,31.37242327723652,30.873688951600343,31.761864918284118,30.93167202686891,30.507056179922074,30.28145751869306,31.067560769617558,31.586345517076552,31.616409790702164,31.08835895685479,31.514023064170033,32.187776459380984,31.25060397433117,30.898411279078573,31.896021529566497,32.672848876565695,32.891451065894216,33.08117020316422,34.03210228541866,34.83699119882658,35.573901899158955,35.931072764564306,36.01570441480726,35.360045278444886,34.54764083633199,35.48383392812684,36.07468812959269,35.25184647226706,35.016584584489465,34.490455536171794,33.84601907245815,33.27573954220861,33.765286655165255,33.184958460275084,33.95592699898407,33.987467327620834,34.71994206821546,34.33528148243204,33.99914527963847,33.562311354558915,33.856610941234976,34.277995213866234,33.67960764840245,33.66100207623094,32.76108206762001,32.139512702822685,32.217222806066275,32.48814032506198,32.92929930891842,32.754249214194715,32.99556214781478,32.11378403939307,31.857880040537566,31.010948824696243,31.71272066887468,32.58505262900144,32.50045757787302,31.83972331089899,30.853362744674087,30.801120076328516,31.173199146520346,31.358105895575136,31.278180149383843,32.132985058706254,32.287281510420144,32.044313550461084,31.99193013412878,31.028490552678704,31.38171776989475,32.311185527127236,32.84124099789187,32.773851529695094,32.7344135819003,31.78572283219546,31.692672573029995,31.70930535439402,31.54491616273299,30.881138243712485,31.791283845435828,31.446919972542673,32.185958303976804,32.18548668548465,32.75171681912616,31.847318321466446,31.7736648991704,31.748979677446187,32.230114843696356,32.22212000191212,31.6632788204588,30.933243898209184,29.938501636963338,29.101682029664516,28.150454292539507,27.54087933851406,28.32489369995892,29.17744002956897,29.79457659041509,29.854529639240354,30.423432745505124,29.616148008499295,30.588580383453518,30.610232815146446,29.774791092146188,30.696091788820922,30.89434567699209,30.194489680230618,30.364867955446243,31.272180899977684,31.251885201316327,31.289267738349736,31.599356482736766,31.98176419036463,31.546943937428296,31.499549770727754,31.078709866851568,31.148876754567027,31.672182842623442,31.151968638878316,30.77721838466823,31.042402032762766,31.464329526294023,31.789401228539646,31.620125162415206,32.14409399451688,32.09369862359017,32.95041458355263,32.02797468798235,32.192530050873756,32.10851258831099,31.185885972343385,31.632311324588954,30.777364321053028,30.283669461496174,29.72748655639589,30.46880657505244,31.251410434022546,31.7477414640598,31.03358517633751,31.541340762749314,30.93371005402878,30.94113405281678,30.284299231600016,29.28691458934918,30.012589061632752,30.90866901446134,30.21450309967622,30.026060706935823,30.577121411450207,31.510047276038677,31.33972407784313,31.329954726155847,31.111245120409876,31.548422179650515,31.535539268516004,31.20000107958913,31.28822414809838,31.238332241307944,30.85068616224453,31.773566274903715,32.487232273910195,32.145104084163904,31.49070351012051,32.25539534399286,33.127649310510606,34.00166992889717,33.34885747823864,33.15196241158992,32.85108046513051,33.38370902836323,32.431123201269656,31.556640217080712,30.651759274769574,29.870156643912196,29.65365050267428,29.42796059558168,28.938458643388003,29.212708681821823,29.684316565748304,29.806374673265964,29.766103780362755,29.1051805280149,28.461511925328523,28.170987519435585,27.470509903971106,27.96540407789871,28.050303301773965,27.627328425180167,27.56969145964831,28.21457330370322,27.95320058707148,27.64543735794723,26.810344346333295,27.143882506992668,27.347825306933373,26.579704684671015,26.935876487754285,26.281504814513028,25.913021503947675,26.67830409342423,26.02854533586651,26.229060614015907,26.396195651963353,26.135138105601072,25.401493760291487,25.744974012952298,24.849902293644845,25.827287543565035,26.20395788177848,26.651208774652332,26.78340440429747,26.47678471216932,25.880796000361443,26.541011770721525,26.25145199149847,25.575576574075967,25.15269498573616,25.807322219014168,25.514090035110712,25.45491551142186,24.81065369118005,25.64067580923438,24.851116506382823,24.639052774757147,25.32142205350101,24.60531826503575,24.305251833517104,24.197762313764542,24.112840964924544,25.09865877404809,25.07414938416332,25.170317908283323,25.698473343625665,25.019291271921247,25.33149807015434,24.601193721406162,25.152063007000834,25.216612370684743,25.250105017330498,25.140606487635523,24.900418811943382,24.49987489171326,25.33839110424742,25.826540439855307,26.45787836611271,26.971201821696013,26.755371138453484,26.350713863037527,25.961905937176198,25.591530581004918,25.287421205081046,25.87739115441218,25.84994474845007,25.315592570696026,24.71454279869795,24.276897039730102,23.98153971415013,24.364306680858135,24.65478224819526,24.305689490865916,23.66025882260874,24.37782585527748,23.823687523137778,23.852656662929803,23.08073283173144,23.26566999265924,23.393341841176152,23.895862467121333,24.649024077225477,24.627407123800367,23.990762145724148,23.95018404442817,24.30610620416701,23.38563105184585,23.494925872888416,23.6515368768014,23.29792722593993,22.3129850984551,21.715682559646666,21.193771514110267,22.014405410271138,22.55348520958796,21.60843268316239,20.79557967465371,21.008314008358866,21.29303578240797,21.72919331304729,21.6729009822011,21.125555379781872,21.80790095962584,22.095349315553904,22.133865650743246,22.854089443571866,23.50772723555565,24.00143773574382,24.743630642537028,24.953819646965712,25.378987823612988,26.372143225744367,26.77027489291504,26.24322821572423,26.068026949185878,26.775995392352343,26.749482875224203,26.701832799240947,26.802619396708906,27.754987232387066,27.366598080843687,27.896269337739795,28.160725558642298,28.07152618607506,28.527505213860422,27.615682396106422,27.612591828685254,28.465282783843577,28.50783554278314,29.245582840871066,28.38365729060024,28.515255690552294,28.14902382204309,27.500802580732852,26.89631440024823,27.159881928935647,26.175128218717873,25.30064873676747,25.67883319221437,25.77844007546082,26.138255885336548,25.20061738183722,24.230674676131457,25.191925402730703,24.91329128993675,25.743354845326394,25.79937578411773,26.36975846812129,25.86424283729866,25.634014421142638,25.59577487502247,26.29293416067958,25.880033945199102,26.7880070800893,26.353489935398102,26.272920957766473,25.915568250697106,26.030637418385595,25.33758990187198,26.23796187993139,26.78206572216004,27.37194278417155,26.695694657508284,26.396692028734833,26.956358714494854,26.658631464932114,27.602273917756975,27.582391743548214,28.01762728858739,28.1442714901641,28.721135059837252,28.935251069255173,29.487463601864874,29.947571977972984,29.98506280221045,30.413537067361176,31.18115702038631,31.333516301121563,31.48745505558327,30.55888631893322,30.058568818494678,29.92312516225502,30.18535863328725,29.692286669742316,29.95808691624552,30.943149036262184,30.457173313945532,30.77762082312256,31.485125691629946,32.17370906006545,32.868922245223075,32.1863088295795,32.40145768551156,31.500278728548437,31.06670466531068,30.14265328971669,29.56186034483835,29.505505569279194,30.028345037717372,30.968486179132015,31.730883380863816,31.987212086562067,31.115602777339518,30.21427419781685,29.563654912635684,29.011966028250754,29.30698269698769,28.666845149360597,28.893602686468512,28.16670485539362,28.60205777408555,29.01973006129265,28.939759409055114,29.7889211056754,29.072560724336654,29.13740221923217,29.326542019378394,28.337332115974277,28.47828741930425,29.1863345769234,28.408932075835764,28.578082696069032,28.515936885029078,27.798423351719975,27.646652777213603,27.71406192239374,27.747453732416034,28.689677957445383,28.846687098033726,28.469229832291603,29.174361227080226,29.185020108241588,28.278882161248475,27.677149374503642,28.158958866726607,28.30067004961893,28.746249216143042,28.23799957288429,29.012972625903785,28.82344555715099,28.891216905321926,29.133955400902778,29.913577346131206,30.115155800245702,29.515584338456392,28.750235420651734,28.99759041890502,29.802885907236487,30.010813026688993,30.021523063536733,30.99376146821305,31.972677723970264,31.456465013790876,31.318948441185057,30.668350644409657,30.307026480324566,30.96342355431989,31.41410665260628,30.58687151968479,31.40705823386088,31.601970032323152,30.974946259520948,31.042824622243643,30.74333880469203,31.28703571856022,31.71438423357904,31.94566514948383,31.256360098719597,31.305226848926395,31.521552592981607,30.689036298543215,31.316615297924727,31.929153168573976,31.863546060863882,31.165614327881485,31.84929719613865,32.154696254990995,31.231076549738646,32.012826156802475,31.690361435059458,30.755684429313987,30.39966537570581,30.012139728758484,30.646936499048024,30.963358353357762,30.69395015016198,31.230954164639115,31.24771777819842,30.47517661517486,30.24097447330132,30.43957794085145,31.014412017073482,31.310765127185732,31.059844204690307,30.68760234443471,29.85269434377551,30.25216720160097,30.05227146949619,29.671388522256166,30.1948324162513,30.45968483481556,30.280727543868124,31.13739883294329,31.922772633843124,32.82516984269023,33.43254857324064,32.51248326245695,32.9295593877323,33.1965048443526,33.17423255648464,33.49736629240215,32.874033282045275,33.14534280076623,32.158577993977815,32.75266863172874,32.79770938074216,33.16869993368164,32.19675134634599,31.48590187681839,31.250976465642452,30.38039987022057,31.23456124169752,30.42440265417099,30.927472478710115,29.934604179114103,29.03202062426135,28.52457317430526,29.143022895324975,29.05832481989637,28.97330013010651,28.054830715060234,28.13818218000233,28.4925152156502,28.79833483044058,29.646462172735482,29.635720160324126,28.865390717983246,29.21934946393594,28.834194920025766,29.59151926357299,29.56791018974036,29.97711877245456,29.80557858198881,29.595005229115486,28.597456596791744,29.183441875502467,28.645920120179653,28.391863846220076,27.552765395492315,27.911462910007685,28.72815333120525,28.248442409560084,28.612908525858074,29.597744073718786,29.665708616841584,29.02744481060654,28.54550719447434,28.00737163890153,28.121198595501482,28.40003165230155,27.43974868254736,27.992820411454886,28.2118017077446,29.09248341061175,29.990281648933887,29.973059127572924,30.166109961923212,30.278273601084948,29.809208757709712,28.99319382198155,29.55732832569629,30.11022035079077,29.71917383139953,30.351188105531037,31.31337852915749,32.16068450640887,31.77024619281292,31.15163150941953,31.53042944893241,31.190133883152157,30.647041911259294,31.306900655850768,30.8442722838372,30.30015148734674,31.114370511379093,30.132550856564194,31.070406256709248,31.748559854459018,30.77529895864427,29.949169510044158,30.20503439567983,30.4814732670784,30.285165142733604,29.659633349161595,30.32199595728889,31.160586951300502,30.413028522394598,31.023216994013637,31.13276909524575,31.2295961859636,31.56581085268408,32.14405240351334,32.094305356033146,31.187899561133236,31.791629132814705,30.807013729121536,30.122256115544587,29.168120468501,28.56165749905631,28.53223459701985,29.507494382560253,29.42875097459182,29.03098041145131,29.9790901360102,29.810003911610693,29.615441949572414,30.359945082571357,31.297665318474174,30.45354495057836,31.17045215656981,30.50498506007716,30.261753489263356,29.412818529177457,28.476248357910663,27.768191600684077,27.04674203367904,27.191005651373416,27.63738226564601,28.454258526675403,28.07874213717878,28.848999104462564,29.186784952878952,28.94769360590726,28.55494081834331,29.403679048642516,30.352038548327982,29.92520593525842,29.438239991664886,29.08024057978764,29.318579241167754,28.42501086369157,28.855151700321585,29.260256812442094,30.06001332588494,30.01176953315735,30.369193941820413,31.157839537598193,30.16495523834601,30.187297561205924,30.36692791664973,29.59492726670578,29.35922394366935,28.607653645798564,28.481588864233345,28.789029243867844,28.266455862671137,27.280734258238226,27.67668680753559,27.607842172961682,28.129896639380604,27.741397670004517,26.84587489720434,26.746522803790867,26.408446782268584,25.96756806364283,24.980672039091587,24.355730761773884,24.094922796823084,23.645825350657105,23.149508191272616,24.052290005143732,24.452756294980645,25.41009623138234,25.78220419632271,24.793314983136952,25.63593154679984,26.47645283350721,25.653021294157952,25.30169766349718,25.272660105023533,25.07551373867318,24.30314751714468,23.876462786924094,24.50699214078486,24.253502855543047,24.852774309925735,25.54178104829043,25.255714379716665,24.92734848242253,25.46843775594607,25.958034256007522,25.056444414891303,25.825805015396327,26.465565285179764,25.65020218072459,25.085128562990576,25.167253382038325,26.04488638555631,25.837405862286687,26.15296975756064,27.15213606180623,26.781603942159563,27.17799245333299,27.0161553574726,26.204209056682885,25.578114272095263,24.892027650028467,25.27773679094389,25.562733347993344,24.719804250635207,23.810308076441288,24.60233352985233,24.27575582265854,23.697682206518948,23.49716894933954,23.285315623506904,23.55766556970775,23.212207042146474,23.5829177047126,24.193354839924723,24.319144110661,24.188345028087497,24.124739891849458,23.81589664844796,23.604381683282554,22.93359724478796,22.55142291262746,22.406184795778245,22.71245686430484,23.322495211381465,24.292710032314062,24.41244367416948,24.90725318575278,25.699023138731718,26.27598058618605,26.87089599808678,26.852875607088208,27.739133681636304,27.739297372754663,28.72261161636561,29.103792445734143,29.135601192712784,29.712506980169564,29.798282839357853,28.815452196635306,28.041314973961562,28.803675486240536,29.43356750998646,28.709139979910105,29.334591363556683,29.56802817201242,28.92815182125196,28.92733714170754,29.24719560937956,29.080765293445438,28.694371859077364,27.796490928623825,27.076450173277408,26.61188316019252,26.255096724256873,25.488287554122508,24.533166758250445,24.159553804434836,24.23730239830911,24.733757983893156,24.196886226534843,24.841275818645954,25.310310506261885,25.643968116492033,25.231787614524364,24.57699036691338,25.097670097835362,25.52845781855285,25.13440274214372,25.018321744631976,24.68293443741277,24.93329477729276,25.863519955426455,25.57111056521535,25.449825301300734,25.043909105006605,25.500723406206816,26.13131712283939,26.477441388182342,26.138704210985452,25.431272060610354,25.139162863139063,25.621292386204004,25.612025684211403,24.846246181987226,24.055106464307755,23.177634408697486,22.84438330354169,23.675493124406785,23.288902486208826,22.479507349897176,23.350183071102947,22.608776237349957,21.892311761155725,21.24953198293224,20.25993582047522,20.660564532503486,20.962388969492167,21.04054229380563,20.092654922045767,20.771721572615206,20.737131181173027,21.70729441381991,21.84494746243581,20.96514430269599,20.888154366519302,20.329411552287638,19.331693317275494,20.191477029118687,21.18071043677628,20.93694967404008,21.618987827561796,22.366477432195097,22.545744048431516,21.763294452801347,21.840681094676256,22.5520558655262,23.524265742395073,23.86487526446581,23.641535190865397,24.161143374163657,24.1346572348848,24.358314847107977,24.511365122627467,25.143041274044663,25.969018021132797,25.161375485360622,24.292497055605054,23.430022308137268,23.548149982467294,24.193454017862678,24.904281485825777,24.074598633218557,23.68910032743588,23.542356577701867,24.23571931757033,23.95182687183842,23.401810710784048,22.542718990240246,22.333569674752653,23.266732485499233,22.400824334472418,22.742742179427296,22.001028462778777,22.075379053596407,22.9965294348076,22.51810023142025,21.999421749729663,22.17621299205348,22.432045325636864,23.12211440410465,23.35121401725337,24.313640017062426,25.293942510616034,24.8053015768528,24.259916848503053,24.430349844973534,24.325635600369424,24.387228403706104,24.13831918500364,25.007860233541578,24.77717343484983,25.660661096218973,25.370440676342696,26.014190906193107,26.087671225424856,25.643486369401217,25.823413159698248,26.48448578454554,26.731800575740635,27.405081608332694,26.97896304819733,27.469207954593003,27.975522230844945,28.820389732718468,28.456813998520374,27.70544059900567,27.973822869360447,28.225691587664187,27.75430904282257,27.893012208864093,28.51150972256437,28.507346231490374,28.629573623184115,29.616488128900528,30.066750549245626,29.913390842732042,29.164851379580796,29.9787900429219,30.060470894910395,30.92673810198903,31.21146794175729,31.21525263087824,31.802290813997388,31.130755296442658,31.971938211470842,31.543937504757196,30.841068292967975,29.95012115361169,30.86933767888695,31.141697803046554,31.39384641451761,30.71422560699284,30.866033410653472,30.599133355077356,31.4482343448326,30.93777065910399,30.160155615303665,30.16143040219322,29.35119731957093,28.66171095566824,28.02383182523772,28.264026578050107,28.508548410609365,29.235593839082867,28.677257727831602,29.57225578278303,30.252612335141748,31.08853153977543,31.09050873341039,31.076100904494524,31.756492793560028,31.659282967448235,31.754421858582646,31.121984405908734,31.75192782934755,32.51917116064578,31.80226951604709,31.913697662763298,31.315334373619407,30.764393794815987,31.303963851649314,30.837984564714134,31.068064375780523,30.622371052391827,31.589515906292945,32.070556714665145,31.3181668180041,31.089456335175782,30.25883144652471,30.43415842205286,29.859702739864588,29.521892392076552,28.663320509251207,28.197340928949416,27.674884209409356,28.005777184385806,28.553501966875046,28.62393449479714,28.492018976714462,28.952211522031575,29.444181731902063,28.577385211363435,29.16541149187833,28.711481858044863,27.90577532304451,27.812058247160167,26.980486467014998,27.8891871990636,27.239259365014732,27.569501268211752,27.733035150915384,27.53448130795732,26.676702772732824,27.669396745972335,27.150343345012516,27.521024459972978,27.871389458421618,27.775481482502073,26.852323269937187,26.25042680464685,25.527984534855932,26.001480273902416,25.171900813933462,24.455370662733912,23.65879354160279,24.143065578769892,24.889473164919764,25.825489913113415,26.337497198488563,27.19381577661261,26.634584133978933,26.84258105698973,26.033686959184706,26.207983803004026,25.684254655614495,25.092462356667966,24.88742612861097,24.164486145600677,23.911521153524518,23.916446342132986,24.890552978031337,24.1845364975743,25.011857770383358,24.24243377428502,24.689003311563283,24.46913034748286,24.414243597071618,24.453997586853802,25.413845646195114,26.085841017309576,25.300834188237786,25.593004318419844,25.283969793003052,25.5669755153358,24.586632134392858,24.713634674903005,24.097738961689174,24.584256877191365,24.37600668706,24.229625036008656,23.30520113511011,23.862582539208233,24.129614040255547,24.706923079211265,24.431341561023146,25.388595580589026,24.905341275967658,24.317020264454186,23.934966216795146,23.370896373409778,23.140489612240344,23.127120337449014,22.484638526570052,21.981214973144233,21.512586708646268,21.035483249928802,21.394005755428225,21.05420819669962,21.069667811505497,21.99688858166337,21.6345050977543,21.72788097569719,21.724234940018505,20.90849124453962,21.581717228982598,21.47323649469763,22.127832313999534,22.64624869870022,22.428492843639106,23.122148241847754,23.417456270195544,23.043490482959896,22.88783877948299,22.362223527394235,23.05115292686969,22.196273375768214,22.04435809282586,21.631827647797763,21.520523827522993,20.711029389407486,21.176022694446146,20.617897983640432,21.13851305283606,20.215164224151522,19.22324166400358,19.327018009033054,19.294819148723036,19.8526900568977,20.691835386678576,19.916301471181214,20.68998353695497,21.299866487737745,20.98651946289465,21.177203150000423,20.912761657033116,21.201559675857425,22.075079835020006,22.359681410714984,21.890361034311354,21.294993243645877,20.454487652983516,21.45117705874145,20.943291953299195,21.443239812739193,20.65160298254341,20.20564766600728,20.27601063810289,20.28876451542601,19.581493900623173,20.35421732533723,19.590353670995682,19.67751523759216,19.347638186998665,18.952809346839786,19.29773541726172,20.028392407111824,19.849795998074114,19.740853254683316,19.777327224146575,18.995256522204727,18.581488335505128,18.652923175599426,18.272617660462856,17.67636336805299,17.675548592116684,18.50102467974648,17.94774852041155,17.780468033626676,18.305486210621893,19.160919154062867,20.116759845986962,20.870755224488676,21.838040612637997,21.439943376462907,20.895873666740954,21.0940524879843,21.992086515761912,21.3503221985884,21.270283706951886,20.33880208618939,20.513721568509936,20.8895410830155,21.579791897907853,21.77833770867437,20.923273083288223,20.78302611457184,21.511150217615068,21.578675180207938,20.70624582376331,20.250770940445364,20.974539540708065,20.112972686998546,20.92533108498901,20.981728447135538,20.86634139623493,21.588234266266227,21.888858751393855,20.938984889537096,20.23688469361514,20.10456804651767,19.7783938604407,20.502184291835874,19.918207379523665,19.391338693443686,18.499757330399007,18.53660216368735,17.79945643339306,18.762516654562205,17.95328066824004,17.724533669650555,18.24713234603405,17.743734755553305,17.650631667114794,17.391208009794354,16.714317176491022,15.871940037235618,15.088492823764682,14.512658137828112,14.248114832676947,15.042128787841648,15.84788475278765,16.74483590433374,16.698299808893353,16.820232299156487,15.876908316742629,15.953574790153652,16.445835383608937,16.57967343647033,16.83827155828476,17.006643335334957,17.77276076283306,17.170565305277705,17.37788856262341,17.498221679590642,17.862014350946993,18.102087111677974,18.199238895904273,18.388531549833715,18.86523472284898,18.843458557035774,18.56222337530926,19.3910347702913,19.21243511978537,18.751394401770085,19.593504189513624,20.191575376316905,21.12472681608051,20.68092773249373,21.57231975765899,21.44051275635138,20.513291884679347,20.144102174788713,20.761950046755373,21.308815697208047,20.525243288837373,19.986161494627595,20.924257894977927,21.5003584115766,22.182004127651453,22.02210644679144,21.514266713522375,21.84890641598031,21.83100648643449,22.235249905847013,21.26096057333052,22.21887792646885,21.32226544385776,20.36781822098419,20.777240727562457,20.726698713377118,20.521172855515033,21.04895468382165,21.341418092139065,21.610276870429516,21.158376368694007,21.360287909395993,22.312490954529494,22.63572078431025,22.55898664938286,23.434510721825063,22.658788674976677,22.900686125736684,22.09327116329223,22.35021942667663,22.401200097519904,21.84616257576272,21.435485965572298,21.709894121158868,21.22610303107649,21.459355438128114,20.534130467567593,21.098962327931076,20.61046555172652,20.679110975004733,20.954845655243844,20.557136222720146,20.376435314305127,19.77631523879245,20.131464196834713,20.587225240655243,20.73959807632491,20.59897816181183,21.20239903545007,21.78375822585076,21.270321974065155,22.170939366333187,23.049800634849817,23.002046634443104,22.096931198611856,22.42366334842518,21.948660782538354,21.023841727059335,21.040254867635667,20.942385759204626,21.592271597590297,21.40370345674455,20.493485308717936,21.151420082896948,21.380632536951452,21.862066680565476,21.34955704724416,21.33266412001103,21.748864800669253,20.98893421748653,21.62846863688901,21.680502352770418,21.207569276914,20.925819327589124,21.06193477055058,20.39999454561621,20.223590740934014,19.232736120931804,19.76269988156855,19.753136038780212,20.74497763812542,21.440131574403495,21.814553942531347,22.115251165349036,23.03775835968554,23.929675528779626,22.954605352133512,22.017104424070567,21.71367542585358,21.124137371778488,20.278054777998477,19.295028317719698,19.748141122050583,19.275484727695584,19.383584865368903,19.54045808967203,18.77587275300175,18.40336258849129,18.15892217028886,17.579055469017476,17.211879858747125,16.505472562275827,16.287395177874714,15.983957223128527,16.080992049071938,16.61736346129328,17.10418321006,17.910189770627767,18.613199196755886,19.138783294241875,19.81642709299922,20.003324933350086,19.809635166078806,20.085018993355334,19.57017070474103,19.961519757285714,19.58619508240372,18.586826792918146,18.250042285304517,18.184381905011833,18.02285218378529,17.789443405345082,17.114557914435863,17.163439044728875,17.158586256206036,16.944276814814657,17.231379739940166,17.148075507953763,16.709880715236068,17.027458013035357,16.341515951789916,16.26957648480311,16.633148673456162,16.930244489572942,17.322253274265677,16.889573774766177,17.436382081825286,17.99915044894442,17.1045663501136,16.164853887166828,16.379732138942927,16.530075087677687,16.768364791292697,17.027967933565378,16.35223882738501,15.788298782892525,15.427860777825117,14.954213563818485,14.814380152150989,15.356666246429086,14.424949410371482,15.419518111739308,14.707159550860524,15.041101808194071,14.752103867940605,14.64428578922525,14.237976300530136,13.60937033733353,13.403074090369046,14.09923218889162,13.928501079324633,14.266597365960479,14.620253708679229,14.468248957302421,15.432978057302535,15.17601348599419,14.987237830180675,15.747858616057783,15.716387725435197,16.64719232916832,16.673609336838126,17.09278411231935,16.118420604150742,15.691183329094201,14.81087086442858,14.010893803089857,14.134545296896249,14.754829157143831,15.50652452930808,14.897582863457501,14.707455817610025,15.133117763325572,15.608660818543285,15.671077050734311,16.411862426437438,15.683503182139248,15.409902777988464,16.06641703331843,16.973940942436457,16.91125695966184,16.69486036989838,16.90616044169292,17.795039303600788,17.1012113802135,17.26327782124281,16.918878563214093,17.45838962448761,17.553645517211407,16.620774143841118,17.302409950643778,17.57107522012666,18.53174294438213,18.365890238899738,18.213977029547095,17.625536900013685,18.211552274879068,18.514256892725825,18.565999487414956,19.132777340710163,18.30627096723765,18.615365769714117,18.103500265162438,17.440674777608365,17.211376475635916,17.44226853037253,17.311331293545663,18.23893260816112,18.11158203193918,18.234606434125453,18.932056569494307,18.73622398963198,19.59065126720816,19.11148406099528,19.74088070029393,20.576056917663664,19.877381558530033,20.689580999780446,20.53194332541898,19.934737220406532,20.834226242266595,21.15940957609564,21.54130793362856,22.25351574178785,22.940713812597096,22.224296330008656,22.4638287355192,22.820382963865995,22.293553804513067,22.531398030463606,21.724790191743523,21.74434511642903,22.41556148417294,21.958626066800207,21.31178923835978,22.231399986427277,21.93456504866481,21.082571376115084,21.948722659610212,22.2423609434627,22.051287460606545,22.320917731616646,21.478855608962476,21.435483942739666,22.217233672272414,21.386126150842756,20.89672795496881,21.297671429812908,21.184820466674864,20.329940762370825,20.122521011624485,19.76435848744586,19.853658472187817,19.47882390767336,19.773257789667696,20.26973758544773,19.430405448190868,18.58999442588538,19.171225991565734,20.094836288131773,19.764878541696817,20.15301932906732,20.14226604392752,19.54107772419229,19.07306339452043,19.58266032068059,19.991309808567166,20.792776186484843,20.46660667285323,19.671017022337765,18.75612582778558,19.370433585718274,19.70518758939579,19.731697064824402,20.462665630038828,19.726940299849957,20.506087428424507,20.536261728499085,21.47011781996116,20.845395018346608,20.122791251633316,19.239096250385046,18.896706426981837,18.047351867426187,18.940045684576035,17.98337560845539,17.656246135942638,17.78449681121856,18.23815251234919,18.483321336098015,18.487906709779054,17.994473102502525,18.84935462521389,18.97738365456462,18.21231436682865,18.274505666922778,17.38599799014628,16.4848803114146,17.27626308146864,18.091959671583027,17.941307560540736,17.8156205448322,17.706761808600277,17.057784132193774,16.638208272866905,16.759679526090622,17.3695020833984,17.953513564541936,17.327993261627853,16.369930662680417,16.28895165445283,17.253764481283724,16.54020908800885,16.702542460523546,15.907767326571047,16.403182183392346,16.256553893443197,15.553514412604272,15.107692674733698,14.338178531266749,13.91049323650077,14.23956852639094,14.557773540262133,14.90242848964408,14.28497419692576,14.931565485429019,15.365527831949294,16.18953979574144,16.015530510805547,15.263400818221271,15.722076239064336,14.768265636172146,13.81182609917596,14.164406173862517,14.644641066901386,15.300843165256083,14.555000460706651,13.851076550781727,13.061822867486626,13.433877805247903,14.327607511077076,13.41139793023467,14.305567068513483,15.282709326595068,15.161780909635127,15.383028844371438,15.784722414333373,16.720226669684052,17.5178239508532,18.35388007806614,18.987424361053854,18.807189494371414,18.393043137621135,18.61418384127319,17.74774364195764,17.507545097731054,17.48943933006376,18.079816268756986,18.659372607711703,18.77554318634793,19.480317247565836,19.81646491168067,18.855622599367052,19.42462316621095,19.290524526964873,19.584949718788266,19.507746593095362,18.797139612957835,18.00759768858552,18.51252016192302,19.178508825600147,18.483671489637345,18.24005731754005,19.115075179375708,18.621103080455214,18.12319234991446,18.87138227839023,19.46488027833402,19.78718640236184,18.837678510230035,18.935271208640188,19.68043553084135,19.734338469803333,19.50487031461671,19.3950250223279,19.732095793820918,20.36629478307441,19.71293091122061,19.733706783968955,19.78263248829171,20.492977033369243,20.718830334488302,20.527407181914896,20.775022264569998,20.33151258016005,19.763568973634392,18.86982448026538,18.623836633283645,18.777537143789232,18.806697664316744,19.060808300971985,18.673368795774877,19.22420399589464,19.095765076112002,19.910521721933037,19.756473982241005,20.474289170932025,21.292345594614744,20.396673374343663,20.820001499261707,20.37744566425681,20.971987759694457,20.66533234762028,20.32477645901963,20.89501520525664,21.442976840306073,20.950275884009898,20.882154089398682,20.711649095639586,21.211445011664182,21.06397776538506,21.097405238077044,21.799936006311327,22.6016584020108,23.429234355222434,24.02552515687421,24.74682132480666,24.816428017802536,25.21694990573451,25.587212685029954,26.153378231450915,25.96473725233227,26.00210783444345,25.740327239967883,26.256285341456532,27.21329771494493,27.689196865539998,28.606975311413407,28.949060841929168,28.04584284638986,27.966886934358627,28.601496897637844,28.01667256001383,27.933039121329784,27.701058632228523,27.612609596922994,27.632582983002067,27.7157101216726,27.787751453462988,28.061074369121343,27.363130438607186,27.415223143994808,26.789871238637716,26.36965081980452,26.31313876947388,26.767030889634043,27.65490656066686,27.75748314941302,28.04008769709617,27.62290172278881,27.00841951649636,26.92819891218096,27.451227423734963,27.112304912880063,27.44191589485854,26.65420825080946,26.3855384089984,26.06114830588922,26.602341091725975,27.125301689840853,26.301378562580794,25.746715824585408,26.457772539928555,26.138539215549827,26.200798589736223,25.947635234333575,26.787593855522573,26.410614005289972,26.826737437862903,26.789481430780143,26.161829948425293,25.332307210657746,24.56653327960521,24.454148711171,24.600092173088342,23.996693172957748,23.217678800225258,23.427348328288645,22.64132642559707,22.852500497363508,22.283040470909327,22.375285149086267,21.719524294137955,22.19644960667938,21.29602985177189,20.35018382128328,20.38573146192357,20.97615434927866,20.19928185734898,20.57237014081329,21.447685877326876,20.756799389142543,19.85741742979735,19.504267123993486,19.987334018107504,19.29855884751305,20.148608196992427,19.641741998959333,20.41187541373074,20.710226497147232,21.457499456126243,22.43405627179891,21.700120434630662,21.01137383840978,20.809291547629982,21.14845597790554,20.448417683597654,20.25031513767317,20.49474516743794,20.832576002459973,19.877496048808098,20.044899510219693,20.44860429596156,20.4499871856533,21.1309337974526,22.10083623509854,22.558649117592722,22.84845554502681,22.894812100101262,22.043755835853517,21.599632187746465,20.77623841818422,20.135383561253548,19.89295172551647,19.231753586325794,19.854201486334205,20.33525768481195,20.106566701550037,19.71677053300664,19.715265046339482,19.869981423020363,19.83826538361609,19.709518000483513,19.11188797093928,19.125813860911876,18.528449372388422,18.16891518328339,18.523805918172002,19.244851826690137,19.037994917482138,18.99645214062184,19.003001117147505,18.020808106288314,17.041481498628855,16.562249636277556,15.929496622178704,16.5237822458148,16.533857504837215,16.96730585116893,16.34571763454005,16.811744157224894,16.699660998769104,16.067638442851603,15.844421626534313,14.919342242646962,15.355096410028636,15.202056319452822,15.532607405912131,15.012488293461502,15.74596048751846,16.66049478109926,17.653753384016454,18.53720623580739,18.576567275915295,18.71741747763008,17.82321798009798,17.03806141205132,16.073893543332815,16.67181405471638,16.236741775646806,15.501712186262012,15.100069941487163,14.227165317628533,13.58549974532798,13.62329822126776,13.844337100163102,13.055060151033103,13.883397372905165,14.845139099750668,15.200275913346559,15.997925609350204,16.785590708255768,16.247125271242112,15.583360870368779,15.405493904370815,16.170924360863864,16.64612123463303,16.860027300193906,16.624401316046715,15.774819802027196,15.011950939428061,15.897422401700169,15.147703131660819,16.021748763043433,16.362276795785874,16.883598810527474,16.95991444354877,17.2332003894262,16.391790519468486,15.592494145967066,16.050400922540575,15.385002949275076,15.089601369109005,14.9588701762259,15.111348627600819,15.047917375806719,14.587480938062072,15.450691673904657,16.091467091348022,15.271594653837383,14.936741216108203,15.55213456461206,16.020927348174155,16.352155442815274,17.247070145327598,17.782906303647906,18.742510257754475,19.382840376347303,20.269935556221753,20.27756920037791,21.101627436466515,21.491974747739732,21.5871336129494,21.219912806525826,21.07802096521482,21.023452072869986,21.57813852187246,22.135714166332036,22.750016811303794,23.330193244852126,22.584593013860285,23.4595940024592,22.933449326548725,22.49348138552159,23.306335910689086,23.022115859668702,23.65046199783683,23.68701715255156,23.359112062957138,23.600999971386045,22.763225727714598,22.370179918128997,23.16288427170366,23.517189404927194,22.57992075011134,23.146543379873037,22.744753480423242,23.467861393466592,23.784993133042008,23.62532340409234,23.233533478807658,22.72720481036231,23.377474263310432,22.464362822007388,23.154936334118247,23.054400030057877,22.812443437520415,22.599900863599032,21.877991636749357,22.71083078207448,23.616728571243584,23.64330394100398,23.28286409424618,22.711652249097824,23.617368815932423,23.63014267431572,24.51849046489224,24.245911109726876,23.98423208668828,24.206042197532952,23.41467539500445,22.660203844774514,22.648474080953747,22.889121127314866,23.695962369907647,24.26976172020659,23.598357189446688,23.306454610079527,22.938192406203598,23.26467621512711,22.933120421599597,23.7723722117953,24.619011429604143,25.262448273133487,25.13023269129917,24.227888179942966,23.358831172809005,24.08469363488257,24.914739870931953,24.77118037873879,24.572613776195794,23.59465463506058,22.839557075873017,21.92557360883802,22.756178895477206,23.355461788829416,22.70158116146922,22.76616344274953,22.28887818660587,22.947018969338387,23.842566324863583,23.218707155436277,23.915925407782197,23.044092923868448,22.623657875228673,21.915596031583846,22.45547510869801,22.197180127725005,22.890431879553944,22.98660331685096,23.415814741048962,24.35637489007786,25.039198564365506,24.76090132072568,25.513983960729092,25.859552219044417,26.01507696788758,26.91695404238999,26.282986252568662,26.933129001408815,26.443722646217793,26.304938529152423,26.608496278058738,27.520672142971307,27.69140925537795,27.1833342644386,27.464427293278277,27.75167316570878,27.330601053778082,26.888156458735466,27.68606514064595,26.95764210447669,26.273888039868325,26.904560724738985,26.42572258366272,27.29859589925036,26.629858403932303,26.707831679843366,27.635455710347742,27.219676157459617,26.988324240315706,27.66883103735745,27.474455307237804,27.999909528996795,28.59581275936216,28.581773478537798,28.111634775064886,28.370180753525347,28.809575878549367,27.893580141477287,28.112221692223102,29.00793587230146,29.118306642398238,29.661458344664425,30.42202057596296,31.176586809102446,31.77804704476148,31.317237448412925,31.0633951658383,30.127720427233726,30.861357929650694,31.119237396400422,31.07382063474506,31.037943813949823,31.841632884461433,32.80626856721938,33.18521041423082,33.86283928202465,34.496414713095874,34.02210563700646,35.020721873734146,34.175041728653014,33.78523681079969,34.06192863266915,33.425364669878036,33.12689561350271,33.927379003260285,33.50097935227677,33.36053109169006,33.571829637978226,32.78659694362432,33.60454016318545,34.403772165067494,33.85190155915916,33.42102918121964,33.75878381030634,32.95902335783467,33.481918532866985,33.41905857948586,33.950333691202104,34.77097081905231,34.600623751059175,34.53021482611075,33.79256319720298,34.577555041760206,34.16097733192146,33.76547571411356,32.96968796243891,32.77099093142897,33.731135967653245,33.203982098028064,32.21399034326896,32.969495622906834,33.02778534358367,33.38155517587438,32.72357317665592,32.43071872042492,31.825793012976646,31.80740247713402,30.937435098923743,30.92757887020707,30.24264454934746,29.946825582068413,30.245142627507448,29.98613519454375,30.57784858206287,30.915230016689748,31.235101313795894,31.453078410588205,31.35034858621657,30.723330225329846,30.01291040191427,29.414479124359787,29.406348360702395,29.41314572421834,28.96189467329532,29.884047049563378,29.435326545964926,28.483563284389675,28.47647602017969,27.997890372760594,28.99267659103498,28.29323357436806,28.435990899335593,28.739647296257317,28.579917816910893,29.27632080670446,29.37535065272823,29.307060674298555,28.666095667053014,28.574433628935367,27.683307119179517,27.99601947143674,27.941431001760066,27.378798987250775,27.432246742770076,27.473008101806045,28.17194205429405,27.841335787437856,28.362558985129,29.20586684020236,29.143814804963768,28.487973875831813,29.3259242400527,29.34235026827082,28.792318095453084,27.86188549734652,26.926938849966973,27.69014273956418,26.974427616689354,25.995733791030943,26.899115364532918,26.30528940493241,26.346829244401306,25.694640724454075,26.455930408556014,27.29702163580805,27.164025663398206,27.375361086335033,26.420715991873294,25.56161154527217,25.197716616094112,25.06700098980218,25.349939577747136,24.44619012903422,24.03402753500268,23.743271607439965,24.51274751406163,24.748193156905472,24.6213896474801,24.496754221618176,24.61237446963787,25.407099180389196,24.64216340519488,23.877631253562868,24.62304445914924,23.63293572794646,23.544062568806112,23.892360298428684,24.682682272512466,23.943059135694057,24.47624285891652,23.715388254262507,23.95117089059204,23.83985540922731,22.918693576473743,22.9536414318718,23.553880469407886,23.746544829104096,23.299827164504677,22.43517796136439,23.298403864260763,24.049838162958622,23.230667328462005,23.573786216787994,23.131639297120273,22.416961757000536,23.05061688646674,22.503421443048865,23.445055591408163,24.11943734670058,23.93614040175453,24.245580105576664,24.254166291560978,24.957319452427328,24.886769284959882,24.95825683604926,24.991613266058266,24.36493052728474,23.94074865290895,24.82570027373731,23.834185153245926,23.248376162257046,22.553075172472745,22.178621393162757,21.644198100548238,21.43145886529237,21.885080913547426,22.028042708989233,21.845378157682717,20.997449753805995,20.558411030564457,21.1310846041888,20.99620350357145,20.47178553463891,21.201776658650488,20.900209508370608,21.4937230409123,22.48267004173249,22.781050362624228,22.648013012018055,22.22426848486066,22.166995351202786,21.309125958010554,21.406938505824655,20.732695852406323,20.85152398282662,21.284409303683788,20.7443749406375,20.96939135575667,20.36104630958289,20.567566895857453,20.08734922995791,20.922162784729153,20.81176059274003,20.34898837795481,20.509967451915145,20.186328209470958,20.02046066476032,20.366901190951467,20.15978882322088,20.119803622364998,20.17710258346051,20.361505386419594,19.998507323209196,20.222584762144834,19.944110269192606,20.534287582617253,21.231635679490864,21.942669331096113,21.77109184069559,21.29380884859711,20.31553510343656,20.68470877641812,21.41759043605998,22.05572388600558,22.634858211502433,22.469646499492228,22.179973755497485,21.68519138963893,21.915902595967054,21.741692782379687,21.339763982687145,20.657050853595138,19.69984818715602,18.85006036469713,17.942531952168792,18.354309835936874,18.86977511178702,19.593298219144344,20.10987730929628,19.91827499680221,19.112244771793485,18.961655527818948,18.18958560936153,18.675442455802113,18.099002028349787,17.255022330209613,16.323723300825804,16.257066663354635,16.528751673642546,16.11231608549133,15.811007224489003,16.000086310785264,16.169663602486253,15.83758272510022,15.229193148668855,15.23829650087282,14.447167388163507,15.216482643038034,15.759477332700044,14.801815621554852,14.711223233956844,13.961532581131905,14.906285558827221,15.162482848390937,15.349762386176735,15.354149703402072,15.02173202112317,14.652960777748376,15.301555291283876,16.253418256994337,17.16898809513077,16.304621706716716,16.19648780627176,16.000601334962994,16.420549923554063,17.13450701860711,17.889157898258418,17.480222711805254,16.760165865533054,16.81010895827785,16.28291241824627,16.636612528935075,17.11859853193164,17.6116538583301,18.46201698575169,18.831110541708767,18.480858667753637,17.849833398126066,17.87209382094443,17.753041557502,18.077406720723957,17.96023478684947,18.687143937218934,17.728753588628024,17.366360708605498,16.684675808995962,17.268628102261573,17.934432660229504,18.647587632294744,18.037184187676758,18.849820274394006,19.48676796723157,20.452586035244167,20.30498404800892,20.548065425362438,20.77931771473959,21.559697018936276,22.349336948245764,22.801297754980624,22.740050984546542,23.079657341353595,22.785241847857833,22.827450608368963,23.433100410271436,23.27276658359915,23.1311514955014,23.969405511859804,23.88159693358466,22.947313708253205,22.99850801564753,22.267899344675243,22.43306503398344,22.2304151263088,22.49990329844877,23.170849253889173,24.057337856385857,24.34348177490756,25.327737404499203,25.292597101069987,25.766643435694277,26.753776548895985,26.0860834158957,26.897692246362567,27.894024435430765,28.5738968802616,29.098296754062176,29.49614868639037,29.8163979225792,29.758734693285078,29.9930929238908,30.0442875479348,31.01404398912564,30.95646634697914,30.28208442311734,29.383783960714936,29.985686821397394,29.73692093603313,29.17644326761365,30.026991728227586,29.555304450914264,28.733800602145493,27.755708707496524,27.613992569968104,27.51834788452834,27.553731326945126,27.738256568089128,28.509206338319927,27.675796227063984,27.828566670883447,27.171395696233958,27.96673790132627,28.781921103596687,28.378753803204745,28.106192632112652,28.853129206225276,28.71271095937118,28.973742552567273,28.371835763100535,28.98489431478083,28.237714602146298,28.00912773050368,28.96135553577915,28.124241246376187,27.73015872715041,27.129830743186176,27.87521269824356,28.350075155030936,28.06638480955735,27.069818252697587,26.397415096405894,27.13233782351017,26.70996301714331,26.893593806773424,26.29663064936176,27.038515376858413,26.509663123171777,27.39374297717586,26.475592898204923,27.309927045367658,28.09661481110379,27.30336704198271,26.368037467822433,26.21390766557306,25.66708034882322,26.583963762503117,26.546977072488517,26.518492446746677,27.414371720980853,28.259697179310024,27.34936064016074,27.6364208124578,28.495073303114623,28.740741315297782,29.34013264719397,28.921815590467304,29.833122679963708,29.66751290531829,30.122286434751004,30.727579773869365,31.56400915654376,31.728129766415805,32.57506202533841,33.060731421690434,32.939753242302686,33.42061859369278,33.02316882554442,33.588097440078855,34.19524695398286,34.48215583106503,34.83008257113397,34.2555806604214,33.600384858902544,33.32650764519349,33.96856127306819,34.19443573988974,34.015185319818556,34.88671604450792,35.027057468891144,34.28155281068757,33.86187555314973,34.41159136965871,34.325929049402475,34.30948330415413,33.66214833315462,34.59691398777068,35.52274930011481,36.31177914189175,36.03523912280798,36.86230251379311,36.31413647113368,36.936510879546404,37.167843664996326,36.68795662978664,36.216256794985384,35.471872764639556,36.30657228361815,36.45542183239013,36.29660815279931,35.92211651569232,36.32046425482258,36.41269954899326,35.542258070316166,36.17037686845288,36.41103695286438,36.90418341383338,36.76557373115793,36.94403336197138,36.82538910303265,37.334919047541916,36.656500400509685,35.96541898138821,36.594431187957525,37.48166266083717,36.971031131688505,36.50079466961324,36.71874011261389,37.26265619788319,38.22453331761062,37.594087020494044,36.97000403655693,36.80423441948369,36.074279443360865,35.293555457144976,35.00582250393927,34.49286308372393,33.77672858349979,33.2924876101315,33.52651633415371,34.285448112059385,34.70912385499105,33.96138036483899,33.87500435253605,33.39047347102314,32.68187477393076,32.76075680274516,32.270365013275295,33.10299902409315,33.67736717220396,32.87420376902446,32.936338391620666,32.70657329401001,32.98035375867039,33.60316487355158,33.14326734794304,33.0140141597949,32.16123773297295,31.92161730118096,32.707178364507854,31.876777189783752,31.811573990620673,31.623915683012456,32.09999651648104,32.37941024778411,32.646607847418636,32.46281713992357,32.850710972212255,33.55078441789374,34.27571993554011,33.778185565024614,33.52925246395171,32.88231810228899,33.35798723390326,32.862419065553695,33.64735712623224,32.73934815637767,32.46748479316011,32.58782722381875,31.675179566722363,30.889233303256333,31.351930583361536,30.778214873746037,29.89062380231917,30.63549722544849,30.01583191100508,29.169168423395604,30.019570289645344,30.23375956295058,31.17855320451781,30.388654423877597,30.50480038765818,29.73446867847815,29.023569241631776,29.110682717058808,29.903348233085126,30.05121001508087,30.981618552003056,31.43894518399611,31.828776913229376,32.09418368153274,32.45146485231817,33.084434709046036,32.62663704762235,32.05308194831014,31.737828307785094,31.003378530498594,31.905334807466716,31.42745092138648,31.318575483746827,32.20195819064975,32.82123080966994,33.27802489930764,32.68692602124065,32.85331417154521,32.1850976459682,32.28328551305458,32.78770709084347,33.43815704761073,34.00085187703371,33.321165652014315,33.77903879387304,33.48108487064019,33.868652052246034,33.720545096322894,32.920491945929825,33.31934116501361,33.10002372926101,32.511746033560485,33.13930918928236,34.1247373954393,34.57320949528366,35.041667121928185,35.660949202720076,35.7094712536782,35.90109454933554,36.85447840997949,37.040384985972196,37.96895888354629,37.6958560179919,37.04382222471759,37.71517659164965,36.781872616149485,36.903945156838745,37.09930864535272,36.429880428127944,36.31538468552753,36.121282739099115,36.09971863217652,37.02248879056424,37.498579224105924,38.104975070338696,37.50504209147766,38.269873957615346,37.7918144967407,36.94287328282371,36.2394574675709,35.781102346256375,36.601036242209375,36.159379723947495,35.93020163662732,35.85021649952978,36.19335205992684,35.64350323937833,36.025598224718124,36.73269286099821,37.18495409982279,37.35738972714171,37.042427939828485,36.691378401592374,37.04958693869412,36.54507435625419,35.699176063295454,35.60289944941178,35.16247671516612,34.2605332871899,33.93336179526523,33.33522145496681,34.1594099458307,34.67657814035192,35.15876048244536,36.10966293513775,35.3161282739602,35.0298611568287,35.231501364614815,35.895343721378595,36.54378896858543,36.785426867194474,36.68508929666132,37.075438815169036,37.20730778388679,36.96338897245005,37.34873938374221,37.50019806949422,36.96879301359877,37.513894277159125,36.76782434107736,37.44512284081429,38.195232290774584,38.78107688203454,37.80106931691989,37.44549725903198,38.07816413510591,38.24901077290997,37.94039836945012,37.1506105014123,37.95530481263995,38.823138820473105,39.19877978460863,39.08340838551521,38.48220509290695,38.48812410188839,38.390822098590434,39.3233062075451,39.40121778426692,38.85929980548099,39.532402164302766,39.16936109634116,38.35168698010966,38.30946388002485,38.272149150725454,39.24875320168212,39.42845631064847,40.143849375192076,40.720435259863734,40.80534462630749,40.944661751855165,41.87299529649317,40.95116309868172,41.677600586786866,42.48165998002514,41.73625084385276,41.763653841335326,42.37832622136921,43.36815865337849,42.79159142728895,42.51025955704972,43.43879767274484,43.75011557340622,43.69619713630527,44.22366865538061,45.07100980076939,44.881163257639855,44.386293419171125,45.16206793859601,44.24470458505675,44.75123976683244,44.128830085508525,43.20447951275855,43.89888791041449,43.576082285959274,43.383549568243325,42.46367967873812,42.50237546721473,42.42684624204412,41.71672618528828,41.126135730650276,41.85013160388917,40.87461314164102,40.20849867258221,40.4818220785819,39.5531741050072,39.697684335988015,40.39512639772147,40.69830959709361,41.20951495319605,41.67169577255845,41.850592931732535,42.33498512720689,42.22717575961724,42.039711823221296,41.86521570617333,41.95665473397821,41.69011616986245,41.28851400921121,41.531420417595655,40.68513639923185,40.180152679327875,41.07135988725349,40.59967108257115,39.68983402103186,38.85973596107215,38.73430943116546,38.761639438569546,39.67641231091693,38.91511292709038,38.95813515782356,38.5169657249935,37.802620886825025,38.6473656562157,39.397840255871415,39.01601309841499,38.02691212622449,37.14617920760065,36.20076510310173,35.56307620415464,36.30387598508969,36.314181049820036,35.49940986884758,34.65612000366673,34.688909261953086,34.189092750195414,33.59074949240312,32.95000990154222,33.34398464486003,33.86921950755641,33.219065128359944,33.31895478302613,33.746559417806566,34.09954732703045,33.37234319606796,33.17604261962697,32.19245714740828,32.221484513022006,31.26866012858227,31.940552118699998,32.91188451927155,33.57646075077355,33.71833953727037,34.098746238742024,34.9342806446366,34.79733807826415,35.27388765476644,34.39486260758713,33.59811521600932,32.7585936030373,33.74991280538961,34.715536781121045,35.55144724808633,34.982029863633215,34.437082949560136,35.228111842181534,35.28186790924519,36.115695097949356,35.387316167820245,36.04962841980159,36.22793374536559,36.389699690043926,36.33824353385717,36.516795543488115,36.27700240723789,35.38923637010157,36.04571772227064,35.73829398583621,36.46275234501809,36.07372183166444,36.92434422019869,37.25481198402122,38.06162919383496,38.8734105527401,38.003935883753,38.10896766092628,38.77785606356338,37.967089699115604,38.01735071837902,37.39404395734891,36.512672337237746,35.84120765700936,35.060303799342364,34.87207890022546,34.82306879758835,34.97030498087406,34.74146970547736,34.201340914703906,33.337873476557434,32.91850377526134,32.34841549349949,32.764618759509176,32.09103843662888,32.1659050444141,32.83137030666694,32.78278356883675,31.92355715483427,32.39740794477984,31.687348989769816,31.835886362940073,31.417239327915013,32.14258965663612,31.816247545648366,31.572255840990692,31.803588376846164,31.525215923320502,32.35712424106896,31.791128797456622,30.906191937625408,30.560245693661273,31.21838579699397,32.0970054930076,32.847191124688834,33.25447261380032,33.73997017368674,33.03956693643704,32.928340264130384,32.690062581561506,31.96075564576313,31.18106781411916,31.449903102591634,30.847567402757704,30.89282293897122,31.674159071873873,31.14420973788947,31.273911888711154,32.07509074034169,32.29844324896112,32.191776011139154,33.18893134081736,32.90002019703388,31.932917566038668,32.89412166969851,32.45929039036855,32.572434140369296,33.34891345631331,33.014806918334216,33.93513508839533,33.85667215753347,33.618122772313654,32.748869122006,32.132495131809264,31.753259207122028,32.15746701974422,31.90511601092294,32.89497081656009,33.25501239160076,33.826195870526135,34.232593996450305,33.45587695436552,32.943250288721174,33.268565273843706,34.061469382140785,34.06318250950426,33.91272418294102,33.20355648826808,33.23848781129345,32.386130050290376,31.471780150663108,30.50621676631272,29.816005716565996,30.00257875677198,29.13082429114729,28.897726143710315,28.873472358565778,29.042171662673354,29.406881131697446,29.209163166116923,29.493657909799367,29.061240523587912,29.32381764939055,29.256787778809667,28.36262191226706,27.848397853318602,27.545110531616956,27.561622732318938,28.358631773851812,29.27835046965629,28.87031321739778,28.51337243663147,28.027983511332422,28.594324711710215,27.84894764702767,28.383706639986485,27.4290236113593,28.009080256335437,27.148303990717977,26.97525849705562,27.964588041882962,27.372716766316444,26.755971463397145,26.03166330838576,25.321235181298107,25.11975530302152,25.953326894901693,25.756334278266877,25.392250610049814,25.22439084202051,25.675051067955792,26.063542731571943,26.247568288818,27.163211598061025,27.788130107335746,28.390795791056007,27.923517952673137,27.1000540163368,26.68538575945422,26.304959078785032,25.997550735250115,26.178683610633016,25.829692414030433,25.82200078945607,25.130756007973105,24.954414039384574,25.399295788723975,25.49877463793382,25.29360065748915,24.408159951213747,25.02661979943514,24.57819867739454,24.561212425585836,23.865490200463682,23.79803201230243,22.90447296248749,22.992315764538944,22.380781865678728,21.539877963718027,21.009826954454184,21.25115327583626,20.665036857128143,21.442845419049263,21.31096385465935,21.7619093186222,21.607403869275004,21.24221968697384,20.266419507097453,20.57616834854707,20.822298346552998,21.68433793913573,21.705082206521183,21.415666681248695,21.841235088650137,22.176943777129054,21.704571674577892,21.582789266481996,22.049660437274724,21.17082958482206,22.09887282922864,21.456928733270615,21.449131113942713,21.980774245224893,22.392073841765523,23.288832435384393,22.40925280423835,22.288168772589415,22.02204376878217,22.040597585961223,21.360007260926068,20.741946265101433,21.241151676513255,20.627202875446528,20.998585003893822,21.83274338906631,22.287748553790152,23.058081126306206,23.529877870343626,23.301091238390654,24.202166978735477,23.705972431227565,23.53272097930312,23.080539821647108,23.657799997366965,22.907669723499566,22.50825083721429,21.958041235804558,22.811129765585065,23.49586515361443,22.89550372818485,23.35128360055387,23.902001644019037,24.843256551772356,24.6790163051337,25.398342260159552,24.577238745056093,25.544659337494522,24.70535218063742,23.77374059194699,24.601246770471334,24.448654014617205,24.16808225074783,24.320230707526207,25.080608927179128,25.53673062240705,26.279843592084944,25.65827876655385,25.591358265373856,25.181508717592806,25.943150382954627,26.677698333747685,27.140241774730384,28.125386571977288,28.61985871847719,28.785562639590353,28.342726815957576,27.812574475537986,28.241859405767173,27.833369847852737,27.147158837411553,26.715187382884324,26.942596945911646,27.458246327470988,27.986526248045266,28.682845030445606,28.401439202483743,28.368782894685864,27.959830122068524,28.00067177740857,28.389380290638655,28.13980481820181,27.340401996392757,27.15650957589969,27.71339944563806,28.06454533431679,27.311608779709786,27.688902178779244,28.091870825737715,27.1125964615494,27.17491802154109,27.980765582527965,27.76208879845217,27.889990644529462,27.051980101969093,26.15557093778625,26.509223936125636,25.785967296455055,26.507840128149837,26.83974601747468,25.85249751759693,26.054662387818098,25.601615353487432,26.254657790530473,25.339370212052017,24.546320820692927,24.97335024829954,24.79326727706939,24.95627271477133,25.874620251357555,25.48194057215005,24.763998951297253,24.520148428622633,23.810258103068918,24.366412582807243,23.446071971207857,22.5785517799668,23.543065113946795,24.340633286628872,24.400220680516213,23.781033370643854,23.039227936882526,23.636129197198898,24.359783813823014,25.020255278330296,25.697767287492752,25.04594559594989,25.892009240575135,25.380135318264365,25.63211972825229,26.145392919890583,25.995301928836852,26.646679617930204,27.641967687755823,28.614312261808664,28.77871880121529,29.01192869292572,28.16190061531961,29.142140510957688,29.289981932844967,29.506101936567575,29.37150072772056,28.939801543019712,28.206783331464976,28.014182918239385,27.556350456085056,27.385260053444654,26.836918095126748,27.091746350750327,27.737745124846697,28.37879257602617,27.45229569170624,26.79818397620693,27.49429629277438,28.227213901933283,27.310988828074187,27.627050668932498,27.91773580480367,27.931692163925618,28.20794415427372,28.909073523245752,29.61302554095164,30.588313528802246,30.745591749902815,31.261558551341295,31.518471904098988,31.151490455958992,30.790361718274653,29.90230501908809,30.267905593384057,30.758086211048067,31.530884767882526,31.16600119601935,31.786743791308254,31.05119306826964,30.308050917461514,29.87583760591224,29.27393545443192,29.28614312969148,28.962915731128305,28.858684865757823,28.857084352057427,29.202472099103034,28.780376948881894,29.316029543988407,28.86633377801627,29.314556228928268,29.30543069122359,29.66330920299515,30.015937304124236,30.643682681955397,31.102346470113844,30.83958867378533,31.809047548100352,30.834478102158755,30.36565588414669,31.151418634690344,31.140336849726737,31.20808555278927,30.21992619894445,30.467090964317322,30.061590556055307,30.707829766906798,30.020086407661438,29.376216327305883,29.49925254145637,29.91053359117359,29.53223226638511,28.65089527145028,28.00248359143734,28.002283434849232,27.806144786067307,27.194027022458613,27.39787384867668,27.09142110310495,26.125998709816486,26.118294328451157,26.572813778650016,26.943000714294612,26.54503892129287,27.25617928057909,27.367003393825144,26.860064689069986,26.868950001895428,26.586739477235824,26.80643257452175,26.527532717213035,27.17943364707753,27.999673527199775,28.985163217876107,29.8127386062406,28.845779534894973,28.7204992021434,28.60113637847826,28.526028661057353,28.85265005612746,27.866199111100286,27.103693935088813,26.783484511543065,26.68606444913894,27.352583883795887,26.934256313368678,26.880686834454536,27.860361269675195,28.234393472783267,28.08850899199024,27.795695434324443,26.92951620835811,27.744674127548933,26.94575247867033,26.437057526316494,26.058910475112498,25.67131064226851,26.433530574664474,25.964371378533542,25.138436475303024,25.428224813193083,25.27605691179633,24.672506218310446,24.31368840765208,24.021688198205084,24.030668484047055,24.96203824225813,25.079481597524136,24.301096166018397,24.735709824599326,25.14987014560029,25.454720865469426,26.020253592636436,25.677273985464126,26.254866101313382,26.80609873076901,27.185264814645052,26.20165876718238,26.860211273189634,27.384311468806118,27.297266524285078,26.301200423855335,25.50680203642696,25.957201735582203,26.142961399629712,26.347551862709224,26.348779436200857,26.806487183086574,26.03452944988385,25.235729216597974,24.69817027868703,25.441658657509834,26.43910345667973,26.013711638282984,25.095846096985042,24.388469596393406,24.770136753562838,24.58312185201794,25.536474749445915,26.498051442205906,26.075247088912874,26.615957459434867,27.440096974372864,27.86415409343317,27.707593061961234,27.822397532872856,26.899308341555297,26.552751867566258,25.935694770887494,25.03434294462204,24.26290424959734,24.266321227885783,25.117383209522814,25.937561923172325,26.92992883035913,26.36418111110106,26.035577746573836,25.661985301878303,25.23539260448888,25.820111429784447,25.77751922234893,26.12153276335448,26.31904883030802,26.870653874706477,27.559855959843844,27.308161264751107,27.342541036661714,28.305065277498215,27.586734018288553,28.006469251587987,27.771269909571856,28.32721730414778,28.482213884592056,27.59274355787784,26.98805066756904,27.080263844225556,27.954133309889585,27.067737479694188,26.569624279625714,25.943265716545284,25.820519886910915,25.503046742174774,25.813160293735564,24.95177659066394,25.095116089098155,25.62950774654746,25.55076262820512,25.437438859138638,25.78248820034787,24.99616173794493,24.38736222498119,23.909157081972808,24.14057917520404,23.23014400480315,22.70520836673677,23.67403021361679,22.93166417023167,23.923682243097574,23.350351099390537,23.337385549675673,23.966914746910334,23.090466336347163,22.735073023475707,22.620242877397686,22.745025349780917,22.493401852436364,22.994720098096877,23.921905788127333,23.58803800540045,23.756697667296976,23.467418088577688,23.496483791153878,24.274861792568117,24.75092291086912,25.56892454670742,25.980362652335316,25.10884778574109,26.050916719716042,25.896516759414226,25.033879195339978,25.788900622166693,25.277742221485823,25.269245138391852,25.588412050157785,25.241662280168384,24.702819756697863,24.60736420797184,24.33459409326315,23.859056101646274,23.858235403429717,24.397046129219234,24.994142663199455,24.88220932846889,24.143095251638442,24.172887520398945,24.90258934115991,25.586924347560853,25.3149304096587,25.399161689914763,25.261289714369923,26.055904594250023,26.404824323486537,25.932080529630184,25.58882554061711,25.956395368091762,25.84957842575386,26.38984654424712,27.19448137609288,27.903984749689698,28.264873411506414,28.64975166041404,28.954122798051685,28.558875154703856,29.55374661879614,28.851742080412805,28.101556233596057,27.66800021659583,27.97908602328971,27.035562915727496,26.930585782043636,26.219118202570826,27.012837152928114,26.694001813884825,27.478085310198367,26.76566250110045,26.65809887787327,27.360749749001116,27.395320730749518,27.84544270625338,28.291509007569402,28.152345404960215,28.567004310898483,29.147410608828068,28.8759499238804,28.305773302912712,28.66749331727624,29.412268586922437,30.040092419832945,29.253450993914157,29.325270718429238,29.771691457368433,28.974378652404994,29.57571065193042,28.938414869830012,28.605188925284892,28.87781597999856,29.35039448272437,29.63385730283335,28.912203200161457,28.2928903484717,28.31563290953636,28.194296007510275,27.326521850656718,26.34767269808799,26.636056561022997,27.534627282526344,26.725197514984757,26.91214897064492,26.874994224868715,27.377945660613477,27.473020339850336,27.34401135891676,26.978232134133577,26.590743489563465,26.449685601051897,25.499123653396964,25.73014920996502,26.569941844791174,26.62309582764283,25.627710977569222,26.511258844751865,25.926077580545098,25.345573225524276,25.920874377712607,26.345155799761415,26.19505483098328,27.08382964041084,27.28929080814123,26.941007923334837,27.461943018250167,27.103082375600934,26.18848462868482,26.78097239183262,27.186150386929512,27.552918159868568,27.99635924771428,28.757523144129664,28.00702391564846,28.35762419598177,28.8818057901226,28.34315410628915,29.320045914966613,29.582933023106307,29.956301965285093,30.896249311044812,30.05629316996783,29.75133836781606,29.78157466556877,29.635751646012068,30.307229502126575,30.49949490558356,30.946201676968485,31.3852079664357,32.21876171557233,31.388068962842226,32.225259667262435,32.78665846772492,33.46081300964579,32.86391584249213,32.961567072197795,32.56629742728546,31.902552709914744,31.522616676520556,32.18984362948686,31.8438852657564,31.80135024152696,31.83927100757137,32.20799132902175,33.04430093243718,32.441829475574195,32.35285158222541,32.76942728180438,32.14607339864597,32.01896609691903,32.46929641859606,32.26959807705134,31.394502762705088,31.546118346508592,32.359863127581775,32.68088122084737,32.51297266129404,32.54078407306224,33.27894624462351,32.68130895216018,33.23673427384347,32.49371396936476,32.17061065649614,32.67278608586639,33.48614366911352,33.327894136775285,34.27635411499068,33.62446189764887,34.09643698576838,34.125940361991525,33.288534787949175,32.96859809150919,32.024504537228495,32.585294821765274,32.739508589264005,31.96045515872538,32.455432545393705,32.947759116534144,33.4206039858982,33.323350734077394,32.33608697168529,31.684809369966388,31.59308108082041,31.861269216053188,30.936788434162736,31.337226377334446,30.409170450177044,29.488065141253173,29.30515183089301,28.538206893019378,28.646709049586207,28.488342059310526,27.935286042746156,27.296527731232345,27.496970439795405,27.54150408692658,28.12517204042524,29.12042709439993,29.430212647188455,29.064868428278714,29.246053006034344,30.16831406019628,30.394899221137166,30.95098949316889,30.177982517052442,29.798656104598194,29.204395246692002,28.390966876409948,29.298369772732258,30.01029566815123,29.129409303423017,28.672171777114272,29.438720662146807,29.4244049442932,29.30126757733524,28.92829532409087,28.725837708450854,29.512812308501452,29.80940004112199,30.058677663560957,29.403913476038724,29.784066739026457,30.105012700892985,29.569010253529996,29.46562599390745,29.826977640856057,29.24882798548788,29.347981019411236,29.304061155300587,28.921901903115213,29.511682368349284,29.76735338801518,29.834918235894293,29.361164811067283,29.446883616037667,29.8779413276352,29.145286896266043,28.815038548316807,28.082391114905477,27.961744401138276,28.113334649708122,28.37917845696211,27.68678496265784,27.026202240027487,26.455622828099877,27.342447236645967,28.152384453918785,28.309062440879643,29.235971444286406,29.188911801669747,29.494307023938745,30.12614993005991,29.52205905271694,30.456607179250568,30.980053543113172,31.597819882445037,31.529773658607155,30.64622961357236,31.13326460821554,30.66083621280268,30.898965051863343,30.62776042614132,30.1869785473682,30.98665836127475,31.144283129367977,30.40617508115247,29.664021390490234,30.607684636022896,30.81559338606894,31.252982502337545,30.429221514612436,29.837674099951982,29.5386186321266,29.520261423662305,28.60694700665772,28.55000789789483,29.4035078198649,28.54539979621768,27.681812492664903,28.46135058440268,27.686553838197142,27.590239417739213,28.02674058265984,27.991577303037047,27.517785949166864,28.386685584206134,28.92130223568529,29.585313809569925,28.61492499615997,28.094228428322822,27.373290325514972,26.659483401104808,27.341894761659205,26.925974464043975,27.108352021779865,28.026646934449673,27.631687524262816,27.72568441182375,27.892315777018666,28.544875716790557,27.8577225250192,27.484552474692464,26.514098077546805,26.454302292782813,25.751207100693136,25.32057196786627,24.91003072168678,23.959687443450093,24.276914032176137,24.745253378525376,25.48080861615017,25.932898847851902,26.14238620409742,25.162010597530752,24.878288850188255,25.877337669953704,25.923307603225112,25.04009702289477,25.162093959748745,25.16841803956777,26.023206901270896,25.479073768947273,25.917024918831885,25.580530123319477,26.49724609963596,26.962420107331127,26.00760619295761,25.979561055544764,26.82828809786588,26.35052503971383,26.654034849256277,26.66516175866127,26.16608526930213,25.361040071118623,24.623498937115073,25.614121170714498,24.963006232399493,23.992082990240306,24.55275950394571,23.90220669005066,23.29418716998771,24.246625205036253,25.15368380304426,24.281783366575837,23.468802300281823,24.012546374462545,23.40614159591496,24.33343564067036,24.83124384796247,24.726730396971107,24.3708457313478,23.947905662003905,24.385310913901776,25.357878184877336,24.70249910792336,24.75667153298855,24.070214883890003,24.1333678830415,24.605614999774843,24.987706976477057,25.84463308658451,25.175709187053144,25.676114497706294,24.70126748038456,24.076750417239964,23.98882018076256,23.49621978122741,24.440966161433607,24.726058105472475,25.530984829645604,25.307722890749574,24.809172386303544,24.611336646135896,23.761353224050254,24.65711430646479,23.982482789084315,23.418040630873293,24.221754061523825,23.971716878935695,24.036603109911084,24.76298721274361,24.429000644478947,24.784490756690502,25.537498113699257,24.673200415913016,24.623770657926798,24.06414735270664,23.55487056588754,23.462197381071746,22.761798640247434,23.010211605113,22.793257891666144,22.734363332390785,23.319549572188407,24.281375044956803,24.734062529169023,24.06313433032483,24.492625925224274,23.858782012946904,23.706299116369337,24.53373321471736,24.852050562389195,24.150079552084208,24.457161671482027,23.942785107530653,23.51144583337009,23.955820127855986,23.969786524306983,23.868705452419817,23.241693003103137,23.028319706674665,23.0675481534563,22.179359269794077,22.61368149332702,21.825981341302395,22.249720256775618,22.350245920941234,22.551039387471974,23.027758890297264,22.170881289523095,23.09023672901094,23.100770740769804,23.705319839064032,23.974667515605688,23.03968279575929,22.82425389532,22.70433338591829,22.679394994396716,21.810751939192414,22.15707674715668,22.211190440692008,22.740139548201114,23.01713250624016,22.127544277347624,21.684974846895784,21.381269057281315,21.885115320794284,21.352391561493278,20.523888629861176,20.417940790299326,20.19012525724247,20.818073583766818,20.49769959691912,20.856651610229164,20.63504983158782,20.94724555592984,20.90587523346767,21.113662004005164,20.373193501960486,21.349127146881074,21.774373908527195,20.860136299859732,19.93202137341723,20.652054894249886,20.643232530448586,21.631646891124547,22.385834680870175,22.21326951822266,21.43961653765291,22.010950503870845,21.427533741109073,22.104669245891273,21.51497471658513,21.56808215333149,21.551223791204393,22.12872526375577,21.558498078025877,21.62238441640511,21.460891739465296,21.09105216478929,20.490155417937785,19.55676341895014,19.079191675875336,19.99344100896269,20.55332002416253,20.56843857979402,20.849522188771516,20.940959157422185,20.534096115268767,19.917363870423287,20.871271426789463,20.776149099692702,20.463847356382757,20.938721511978656,20.666321496013552,20.981415807735175,20.101100775878876,19.31075497623533,19.835010753944516,20.294816554524004,19.30841372348368,19.75595801603049,18.776545220054686,18.819701409433037,18.65652194339782,17.781154295429587,17.239698964636773,17.89980486780405,18.661433895584196,18.80609347485006,19.76433846866712,19.704360934440047,19.41638683900237,18.477339051663876,18.862444463185966,19.54612862272188,19.04010466579348,18.854864709544927,18.008710184600204,17.315667109563947,17.929327546153218,18.348857496399432,18.306215400341898,18.730026913341135,17.942487397696823,18.801568696741015,18.917440349701792,19.357179469894618,20.180974131450057,20.06663983501494,20.18979614926502,19.655640786048025,19.483683275524527,19.535138171631843,20.238436517771333,19.43966635502875,19.463611342944205,19.457834551576525,19.705654584337026,19.043982113245875,19.17528089787811,18.776623966638,19.61960505414754,20.30570223554969,20.266105154529214,20.37491145497188,20.663468847516924,21.47947484208271,21.57675778120756,20.85906171379611,21.611871148459613,21.0692672659643,21.82634023576975,21.211874862667173,21.565758820157498,21.28205604571849,22.010159400757402,22.2607886120677,23.155497257597744,23.870580025482923,23.74075367162004,23.550715007819235,23.710486765485257,23.80582071794197,24.58984956331551,25.56545105203986,24.731086479965597,24.359665068797767,23.56508008390665,24.495421698782593,24.773566764313728,25.577302671503276,26.256894678343087,26.769965569954365,27.298711428884417,27.3294812948443,26.817942527588457,26.08414844982326,26.303934096824378,26.42813310166821,27.27506726142019,27.593103925697505,26.803134959656745,27.504810258746147,28.440556136425585,27.81409465195611,28.62570593925193,29.01493148272857,28.671726308297366,29.236707869451493,28.41754995798692,28.596868723165244,29.186160371638834,28.517034836579114,28.26948502054438,27.482774501200765,26.61974156787619,27.2757380977273,27.23345231078565,26.781787568237633,27.502599545754492,27.30548803554848,27.624391936231405,28.385963840410113,27.771005364134908,27.465896740090102,27.82043618755415,28.610144393052906,28.840534606482834,29.102476763073355,30.07484332891181,30.352531844750047,30.40138315036893,29.40444584051147,29.761394798755646,30.302891296334565,30.575308340601623,30.883404792752117,31.099897465202957,30.5614606551826,30.16545351035893,29.644160847645253,30.495239468757063,30.203962510451674,30.9301301301457,30.1512053553015,29.394215600099415,28.822968173306435,29.230619681533426,29.590976318344474,30.033889499492943,29.7095308736898,28.954382713418454,28.115563840139657,28.297791775316,28.763823869172484,29.144422612152994,29.409016704186797,29.81048676231876,30.473295277915895,31.3334063985385,32.179542229510844,31.97690426837653,32.05962366564199,32.492428133264184,31.927857938222587,31.763895070180297,30.924276173114777,31.25892316782847,30.476888744626194,30.542578728869557,29.83338849665597,30.216995716560632,30.89545191731304,30.782187902834266,31.69471496064216,32.05224870238453,32.155330860521644,31.67510440433398,32.54026884352788,33.017913782037795,33.90408653765917,34.61180456355214,35.06459876196459,35.46150439279154,35.87891325261444,36.603581712115556,37.07485529733822,37.01116628199816,37.26829423615709,37.98018624121323,38.264875097200274,38.031738040968776,38.49517778260633,37.68188378214836,36.71711689140648,37.20542705710977,36.59427525382489,36.99268646771088,37.43123077554628,36.48559672338888,37.17763023497537,36.22999778809026,36.37253997521475,36.539016001392156,37.52166583947837,37.45172095298767,36.57290678843856,37.317215571179986,36.78681038832292,35.94903291296214,36.00812494661659,35.22792515531182,34.91441131522879,35.55892105586827,35.88508543884382,35.50905838934705,35.39409286947921,35.17193641187623,35.94131205230951,35.828815900254995,35.150131434667856,35.091657005250454,35.29921822156757,35.43681387603283,34.43738626642153,34.81273260572925,35.15770935919136,35.33971309522167,36.19950257148594,35.958874062635005,36.02042523538694,35.21310065686703,34.57183934561908,34.51921698637307,34.28182385955006,33.89392053289339,34.5396484285593,34.82726935017854,35.5427421182394,36.449728060979396,36.72657187329605,36.66623561037704,36.17846403922886,36.23745012609288,37.228906283155084,37.65283339796588,38.644302773755044,38.11579659767449,38.11125313397497,39.07602240424603,38.61331056570634,38.40186271024868,38.697383418213576,37.83812535228208,38.48260361980647,38.40301205357537,38.95609831996262,39.91769224451855,39.90764186391607,40.77269363729283,41.235476069152355,41.50617178948596,42.03847089363262,41.57148850383237,41.07992442185059,40.762406231835485,41.26894425228238,40.47734814696014,41.1564935259521,40.48003458091989,41.46072944160551,41.70770353451371,42.34932726668194,41.73469397472218,41.46469649346545,42.363207950256765,41.779747223015875,42.190077806822956,41.40613955166191,42.04571358859539,42.30141235142946,41.72560399770737,42.400052974931896,43.36384263820946,43.02880562702194,43.15110036311671,43.00380925415084,43.2117237104103,43.61938319681212,44.300625399686396,45.23715641768649,46.0668319016695,46.696998186875135,46.16060876986012,46.10465539153665,46.0824035028927,46.797991023398936,47.65307851694524,47.62210245523602,47.10724205290899,46.64157008565962,47.219507136847824,47.218523601070046,47.04244033899158,47.69672224391252,47.671708106063306,46.73996443813667,46.522975865751505,45.95518156886101,45.66926372889429,46.22764191403985,45.7274099024944,46.63655423000455,46.10028072074056,45.32535675447434,45.85878364928067,45.35945055820048,45.77741333562881,44.81634905608371,45.02779147867113,45.68772553652525,45.21424047695473,45.63113988470286,45.71127372747287,44.85141884535551,45.47334281541407,44.79994553886354,45.32375391991809,44.510016795713454,43.85568331787363,44.30823924858123,43.721745799761266,43.70342171564698,43.953656422905624,44.1483761575073,43.87217597709969,43.78557047061622,43.32930808048695,42.372500200755894,41.47339417412877,41.59486573236063,41.801936897449195,41.12790340837091,40.28857642877847,41.251517097465694,40.447678497992456,39.780862445011735,40.60202749725431,40.98370948666707,40.197098636999726,39.85411501117051,39.75778473215178,40.580687686335295,40.042957284487784,39.40203599026427,40.04278417536989,39.96654275292531,39.86916162632406,39.151506030000746,39.93637529341504,39.82708603190258,40.64627349469811,39.66872315108776,40.61312265880406,40.6584034524858,40.80660254275426,41.00692193675786,41.261509228963405,42.21664444170892,42.77134890342131,42.91367893340066,43.42119938833639,43.16709401085973,43.28086891863495,43.29729854827747,43.295842120889574,42.64655692316592,42.089450616855174,42.02212941041216,42.785315577406436,42.367585946340114,42.780686632264405,42.054873436223716,41.791521437931806,42.35759457712993,42.57604029541835,42.37556542549282,42.39282004721463,41.99170646304265,41.841115965973586,41.36758549697697,41.66274917637929,42.583888213615865,41.97782101808116,42.296179064549506,42.00599443819374,42.99997158534825,43.15220377827063,43.89883903320879,42.943794548045844,42.23240666417405,41.60725206742063,42.27601178223267,42.151257943362,41.49852804513648,40.770887025631964,41.13600774249062,40.87169190682471,41.36954596918076,40.60950866341591,41.32167071197182,41.18118993425742,41.07855005655438,41.79643128812313,41.852974626235664,40.971713948994875,40.09234964149073,40.45101852249354,40.148975706193596,40.814132551662624,41.04965155525133,41.399951295461506,40.56594530818984,39.64637108519673,38.9308966267854,38.46036317758262,39.095785113517195,40.025176249910146,40.36430247500539,40.30985910259187,40.77146885544062,40.46467818459496,39.76124417409301,39.00967031903565,39.021140184253454,39.57511116750538,39.91596309654415,40.20381451724097,40.145818774122745,39.40538510447368,39.29225037479773,39.07971532875672,39.60305141983554,40.24645052943379,39.939584338571876,40.45983494911343,40.01309894584119,39.856019743252546,39.62545642256737,40.51199780916795,41.36936374474317,41.84060104936361,41.177952877711505,42.17785699851811,42.08248781459406,41.912892180494964,41.03358907671645,41.6366366436705,41.05896063847467,41.63588056899607,41.85614282125607,41.50706922682002,41.77563524385914,42.76264304248616,43.14502584794536,43.47283240407705,43.59947589645162,44.39644469646737,44.46708363853395,44.04771201638505,43.83017124142498,43.83462277567014,44.48985203774646,43.73774177627638,44.42299029743299,44.62126405350864,44.84687198139727,44.124372167512774,44.62838343018666,44.15972709003836,43.852551782969385,43.991378309205174,43.87768717948347,44.73854225175455,44.35364782018587,44.758404629305005,44.228730879724026,43.89815648458898,44.162360071670264,45.1339049465023,45.82974760606885,45.014984847512096,44.66817980399355,45.36121806548908,45.974222836084664,45.232631479389966,46.111457710154355,47.074916729237884,46.59694475727156,45.74714557826519,46.45151375187561,46.30165371391922,46.131543926429,45.76975247170776,45.08207283494994,45.77644346561283,45.69873586343601,45.59754642425105,44.87392144789919,45.50604407861829,44.54884984297678,44.46959914127365,44.71534730307758,44.12687224056572,44.88709064386785,44.203713421244174,43.92579118348658,43.51791974063963,44.15839762520045,43.881770132575184,42.93393627367914,43.65351549675688,43.486558698583394,42.56895402120426,42.611449430231005,42.822546982672065,41.841964702587575,42.21008788794279,42.653523216955364,43.4703607163392,42.60812130384147,41.93143439292908,42.87186766881496,42.881887059658766,42.78357377368957,43.645071488339454,44.260428617708385,43.999875525943935,44.166139672044665,45.15227141324431,45.225305534899235,44.47716395370662,43.96987301716581,43.39075514534488,44.02581217326224,43.047793607693166,42.11132124811411,41.9951541707851,42.81452076556161,42.79564352100715,42.06684799399227,43.02599239861593,43.6879328568466,43.86649872455746,43.33119454840198,43.997718547005206,44.619626713451,44.85258693341166,45.64743998507038,45.60157225932926,46.45837441878393,46.85092900739983,45.92396318214014,46.14166693016887,45.570500914007425,45.64765252964571,46.1370196021162,45.23573652934283,45.190889379475266,44.495915157254785,45.03510094806552,45.47609553625807,46.03352517215535,45.849487244617194,44.89243843406439,44.685563899576664,44.603563190903515,43.92711613792926,43.144689831417054,43.32752164034173,43.97569574601948,44.610536076594144,44.30758535116911,43.60871089762077,44.44471616530791,44.02861446654424,43.503842459991574,43.976659807842225,43.508445446845144,44.40707003278658,44.92954770894721,45.186701704747975,45.44243739917874,45.745371343102306,46.3732227049768,46.94060445157811,47.60887125413865,47.20648164767772,46.94880512356758,46.518199688754976,47.417724147904664,46.731525061652064,46.83698550378904,45.921582370530814,46.10150848561898,45.91855903388932,46.504962706472725,46.578718572389334,46.38115119980648,45.91729823127389,46.830858188681304,46.775567350909114,45.98986172210425,45.76357505237684,46.73236321983859,46.83553715469316,47.78796640550718,48.51616068882868,49.26027695974335,49.00334338564426,49.062549450434744,48.23252949304879,47.93589446879923,48.454257268924266,49.25882347347215,48.84395129233599,49.532646199688315,50.48284778185189,50.88898302661255,51.37203622236848,52.36289265239611,53.293187194503844,53.82566049462184,52.982247156556696,53.97656434215605,53.65364940138534,54.18101025186479,53.48746718093753,53.693961531855166,54.11776017723605,54.86193372448906,55.63093667477369,55.905170642305166,55.31152844149619,54.94579892186448,55.91529490752146,56.09532833099365,55.88701726309955,56.62208887422457,57.09745113598183,57.50646767485887,58.42894130060449,59.161253227386624,58.900717373006046,58.74877740442753,59.69862570799887,59.6237339717336,59.3821797077544,59.13217354938388,59.99018587032333,59.24524117540568,58.848380487877876,59.71044823573902,59.53581045521423,59.52161651989445,58.642742453143,59.07596190972254,58.38352196896449,57.624180116690695,57.4675783184357,58.24701509112492,58.905416175723076,59.030014583375305,58.13600565632805,58.500291203614324,58.627460135146976,58.05553896538913,57.52771997731179,57.08533023437485,56.304769083391875,56.88257070584223,57.389547783415765,57.657478699460626,56.69500949792564,57.00300568295643,56.50347537221387,57.322425100486726,57.66047214670107,57.453218296635896,57.98295779200271,57.93299110932276,57.91381510114297,57.73030859977007,57.840606324374676,57.23284427262843,58.20332791656256,57.53641588194296,57.6144585609436,57.41008171532303,57.08380075870082,56.9260785584338,57.55268830060959,57.14347402844578,57.718176856637,58.644364862237126,59.31845012772828,58.65271240659058,59.360842956230044,60.12395190494135,59.95692165568471,59.59721091855317,59.01528679020703,59.52315149875358,60.13475906243548,60.76936187688261,60.07992337504402,59.51902268268168,59.61751458607614,59.871677671559155,60.492529823444784,60.43629315076396,61.31275085126981,60.41128662787378,60.75010217120871,61.25768755655736,61.43545395741239,61.84634506562725,62.50791987031698,61.83607844915241,62.216306751128286,62.02426252188161,61.87398075684905,61.349848293699324,60.3975875955075,61.110891580581665,61.155850540846586,60.290213893167675,60.36722553987056,59.605573575012386,59.393697975669056,59.147290472406894,58.784146015997976,59.386522443499416,59.59227402554825,58.672325633466244,58.22905271779746,59.06097135785967,58.21551909344271,59.094669909216464,59.54383416334167,58.71413463074714,57.77590268943459,58.49810315435752,59.40110321016982,60.1119784777984,60.429033192805946,60.70870092976838,60.6777133080177,60.55992319341749,60.36367770424113,60.357274116482586,60.89938155375421,60.68794510001317,61.03435728792101,60.39580094348639,59.6581194200553,59.22303796792403,58.337334231007844,58.511763331945986,58.84545228770003,57.928271278738976,58.81250955723226,58.5831886511296,57.64086310658604,57.2843852089718,57.274775811005384,57.702994987368584,57.98179444903508,57.12469838745892,57.81299783568829,58.76681721257046,59.163492342457175,58.39282200811431,57.92179436143488,57.80268475366756,56.881582809612155,56.116783330217004,55.58304189983755,55.99099536892027,55.843393933959305,55.51563650928438,54.80381397064775,54.67047628527507,55.59755909210071,55.96623747050762,55.26940061757341,55.59409286128357,56.35170570528135,56.49690249282867,56.5365219800733,57.496886170469224,57.30193233303726,56.51150738354772,56.513323777820915,55.83735976414755,56.37596608046442,56.16858508111909,55.224423077423126,54.61927009699866,55.55277145234868,55.286803838796914,55.51723782485351,54.91305383294821,55.36543835978955,56.299067817628384,56.87629143986851,57.82881555147469,57.15193133428693,58.120813647750765,58.06704089185223,57.532630714122206,58.132525654975325,58.47258347738534,58.42799699725583,57.59006064524874,57.971723835449666,58.74730120552704,58.639867707155645,58.679950944148004,58.094888978172094,58.03230442479253,58.81883594440296,58.64152395538986,59.616241943091154,59.52052282122895,59.02006423147395,59.908578475005925,59.888601635582745,58.900826811790466,58.69623775035143,58.28859033994377,58.833986861631274,58.54564571194351,58.55850837333128,58.823000226635486,59.508563679177314,58.883028644137084,58.91190012358129,59.7347691738978,59.7126184287481,60.49918911792338,61.04111198661849,62.03093451960012,62.99640383385122,63.65161524992436,64.50257126102224,64.75170540763065,64.36163245001808,65.12988533079624,64.57425156002864,64.59301946451887,64.08386267907917,63.16911009512842,63.86597142228857,63.837813240941614,64.54716497519985,65.37765510380268,65.18241908634081,65.35603122413158,65.29493775730953,65.17539609456435,65.55626978492364,64.86664107069373,64.9326076968573,64.06337601551786,64.36408584192395,65.19301217840984,64.8126701079309,65.37717372458428,64.60482458537444,64.61674927873537,64.04651752207428,63.41790361888707,63.57284576492384,64.07006778940558,64.12359863612801,63.72989609511569,62.864837917499244,63.73369516292587,64.52960936864838,64.71426269272342,65.00324243819341,65.75008540134877,65.35184913687408,64.47690977342427,64.19994152756408,64.92964025586843,64.94792573712766,64.64548452757299,65.51600359333679,64.76008821371943,64.32042182190344,65.18232909636572,64.30576625280082,63.477303637657315,63.55282388906926,63.480402239598334,63.77198392059654,63.60040942160413,63.23941874271259,63.10432622767985,63.89098074333742,63.99101355532184,64.83572184061632,65.19130835263059,64.81483362894505,65.39447664562613,65.54213013174012,65.52977783791721,65.44110562559217,64.76125240977854,65.58274646475911,64.60550245409831,65.0987917194143,65.70389907667413,64.81968571525067,64.49527906440198,64.37802913598716,65.30386851960793,65.76345670968294,65.22217526426539,66.0602418538183,65.73405427997932,66.45355471223593,66.75130406860262,66.54772267537192,67.3355348398909,68.06425134791061,68.23082747263834,68.71016120351851,69.57547990558669,70.25209267390892,69.90114945359528,70.09938545431942,70.2142429118976,71.04976958734915,71.9371828045696,71.1302912067622,70.88890137569979,70.81071676174179,71.15213575772941,72.06294665392488,72.25079209171236,72.7437363290228,72.65634373715147,72.21390692517161,72.47047240193933,72.31256773788482,71.4675965742208,70.9313808879815,70.11381546687335,69.44477837206796,69.33295717230067,70.22678622789681,69.40059705683962,70.01528417877853,70.13480368023738,70.70841184817255,71.61207364685833,72.55679325154051,71.91006102832034,71.57322198618203,71.90115351742133,71.04470750829205,71.53324588993564,71.04654860496521,70.70429794443771,70.08763146493584,70.96473955875263,71.93841044371948,72.02948668505996,72.07088626734912,71.17172457603738,70.44038110272959,70.6604425739497,71.32093203580007,71.19724017661065,70.81456442875788,69.99444771977141,69.70823298348114,69.36898653395474,68.41720190970227,67.43546383455396,66.97696089884266,67.03888966795057,66.75573806650937,66.03365768492222,65.43331821449101,65.06538282101974,65.03117588488385,65.48363377247006,64.87467122729868,65.67905419971794,65.8851371044293,65.3078025765717,66.23597932420671,65.40637962613255,65.79254142567515,66.13487377623096,67.06165059143677,66.59932083869353,65.65926080290228,65.51717844745144,65.61086178431287,64.88925223331898,65.27589488681406,64.93280138541013,65.75017596641555,66.72820501821116,67.18605917226523,66.82610271545127,67.3631677404046,66.50102874310687,66.7763624493964,67.23862275155261,67.90559650817886,68.76323864702135,68.25376991042867,68.61397934518754,68.40132091706619,68.2117530698888,67.29838437959552,67.04013862088323,67.12633099872619,67.79984095599502,67.29444067878649,68.04952242178842,68.78622275404632,69.05227336892858,69.9043058399111,70.0272218552418,70.85811959765851,71.06011639349163,70.73292223224416,70.63125370070338,70.63136782497168,70.91662827366963,69.9305216385983,70.41989767597988,70.26715932087973,70.10375915234908,70.17177876830101,69.2292544641532,69.72137288562953,69.01910105999559,68.43123178416863,68.65217011608183,69.1946915294975,69.49258572421968,68.51133032003418,67.64872342627496,68.03404957940802,67.19376954901963,66.20418774010614,65.40588161349297,65.83329852623865,64.83856312092394,65.81664052372798,66.45896569499746,66.55366412550211,65.97585131553933,66.24109797459096,66.23228158196434,66.01454453589395,66.0614597001113,65.18626715848222,65.93599700788036,65.76726176962256,66.24484396027401,65.61441043345258,65.84595682052895,65.2317535248585,64.63206847338006,65.30408905819058,65.76359473075718,65.3316846662201,65.0935304700397,65.64862650912255,66.16697777900845,66.31952004460618,65.96923797996715,65.53138959454373,64.98799433326349,64.30816642660648,63.54585647583008,63.94418729096651,63.75142229022458,64.13524085702375,64.15237380284816,64.92118085548282,65.29911917680874,65.15673381369561,64.63673956831917,64.37851703865454,64.66475356230512,64.5570327444002,63.995296739041805,64.093288062606,64.47908248240128,63.75683424947783,64.08782140770927,64.77135810535401,65.64371480792761,65.49944893317297,66.3250748552382,66.72678037080914,66.98914391174912,66.23464455548674,65.60280504263937,66.4562578490004,67.06331245461479,66.6945944163017,67.28492921497673,66.69654966052622,66.69778261426836,66.37543482286856,67.12227557320148,67.29238732391968,66.99450468784198,67.16054377146065,66.32429484697059,66.02551124757156,65.86025675013661,65.52835494140163,65.73582247598097,65.90705270599574,66.4195723971352,66.43743296340108,66.38519661827013,65.61980274599046,66.30315609555691,66.01594549696892,66.384542029351,66.88154181046411,66.60422457149252,65.67575204605237,64.99101676372811,65.78034886484966,64.89605694403872,65.59103307686746,65.33042070223019,65.02514065662399,64.52141153393313,64.41563730873168,64.41534947836772,64.05883254297078,64.68145753629506,64.09470556909218,64.79140924382955,64.72982247034088,63.91527817863971,64.34608465479687,64.3291776208207,63.56569831306115,64.39858006546274,64.59537826944143,64.42999778641388,64.16631072061136,63.22257195226848,63.87567536486313,62.917465208563954,63.34618829609826,63.80212261574343,63.64633233984932,64.43173642456532,64.58603041479364,65.1201683357358,65.08822684874758,64.75918256910518,65.07107479078695,65.16477375337854,65.6980569800362,64.91646900167689,64.38591193594038,64.24552159989253,63.46129110036418,63.540232142899185,62.873475508764386,61.96317825047299,61.06668070377782,60.584839368239045,60.12729007657617,59.77862745244056,60.05268715508282,59.68508778931573,59.331986675504595,58.44188283896074,58.35937312617898,57.890929725486785,58.42553306976333,58.254972318187356,58.86930613592267,58.088195560500026,57.29734276793897,57.59991804230958,58.44654005486518,58.10502314474434,58.6350457589142,58.96038950467482,58.97061053337529,58.41983936401084,57.65107321785763,56.70134865725413,56.024510437157005,56.25349805643782,56.07017434667796,55.4982029478997,55.56040246784687,56.126864654012024,55.29340572981164,55.06660588644445,55.56420842604712,54.676201617810875,55.35410552332178,55.303063596598804,54.735315665602684,54.56522048916668,55.21447787154466,54.36097708111629,54.93184562353417,54.01777018792927,54.866213004570454,54.45877187559381,53.84184222854674,53.802818330936134,54.712816315703094,53.85084986500442,53.30082350736484,52.46424927841872,52.33291456615552,51.97060647793114,52.610193483065814,53.1077195815742,54.02860020613298,53.26549969613552,53.67738566920161,54.065348064526916,53.931699487846345,54.41834722319618,54.38182829320431,54.18036732496694,53.74929253337905,53.40359705733135,52.923441658727825,52.00035684835166,51.463566376361996,51.9058277849108,51.18324770824984,51.880131414625794,51.89138031890616,52.60372636653483,52.62269975617528,52.710908765438944,52.549080091528594,52.50952079007402,53.500273055862635,52.926103418227285,52.92067232960835,53.64469451410696,53.790528384037316,53.3272610460408,53.10865833470598,52.53782707778737,52.67696241568774,51.76396663347259,51.52563495282084,51.88857139740139,51.96410204283893,51.719765450339764,50.78436536481604,51.59293144475669,51.0236128536053,51.60649526817724,51.19391481997445,50.562168683391064,50.74468624498695,51.08115084422752,51.753361800219864,52.3997566876933,52.1622969051823,52.182952692266554,53.027630381751806,53.4389533190988,53.75411064829677,54.05879286956042,53.47085241321474,53.40593716688454,54.1706283739768,53.62306407652795,53.675344307441264,53.9578405902721,53.33331468794495,53.13815149385482,52.73592274589464,52.86705718841404,53.279657552950084,52.295503456611186,52.073765323497355,52.974794602487236,53.6316092624329,53.79433162836358,53.78327190224081,52.792799323797226,52.392766411881894,53.39150953898206,53.624667171388865,53.787517888937145,53.946663439739496,54.59441316733137,54.37543593160808,55.136053763795644,55.95359138492495,56.65473715914413,56.34526217728853,55.663459019735456,55.37798917060718,56.34540069941431,56.429242965299636,57.018077824730426,57.451952911913395,57.919609249569476,57.5731933680363,56.62789899064228,56.759543779771775,55.85704423952848,55.32748414808884,54.8179250927642,55.29076390899718,54.938822608441114,55.60403870604932,54.966953405644745,55.94771445868537,55.7406130512245,54.986292528454214,54.336636557709426,54.93286523222923,54.99601945793256,54.74896112224087,54.458871303126216,53.477725874166936,53.339500521309674,52.35837540123612,51.91376599436626,52.787060651928186,52.55332655785605,53.28870395338163,53.66195249883458,52.88286068895832,51.92695749597624,51.35582810919732,50.60930660041049,51.15242543583736,51.516040766611695,51.7416002782993,52.30164243746549,52.545344879385084,52.22154544200748,52.74709499021992,53.601012823171914,53.52385782636702,54.105471070855856,53.88115460239351,54.519639229401946,54.40464875707403,54.43476747116074,53.669679686427116,54.4688031245023,53.62285526236519,54.17988253803924,54.592933437786996,55.29761544521898,54.89177199918777,53.92996710911393,53.192312149330974,52.874586780555546,52.63458250882104,52.0383241456002,52.05418537557125,52.265049434732646,52.95501998299733,53.05878928536549,53.730995879508555,53.97838511876762,53.43397893337533,53.27804954070598,52.97511976817623,52.552922459319234,51.78432103479281,50.90623360686004,50.82066146098077,51.24856539303437,50.61462801462039,50.84794054925442,51.17272919137031,50.82938218396157,50.5074058403261,49.850517462939024,49.22013812325895,49.69444171292707,48.88415503501892,48.712813743855804,48.33073610300198,47.551808887626976,47.25995923904702,48.16330269817263,49.14279291220009,48.570192645769566,49.0143327889964,48.318067661486566,47.98941733222455,48.903352432418615,49.05941274063662,49.44509482802823,49.24559064814821,48.64472645986825,49.399056711699814,48.939424842596054,48.02830290608108,47.22164812870324,47.396606877911836,46.62832376174629,46.03837281791493,46.345875857863575,45.58244228642434,45.6593856299296,45.97721197176725,45.867404610384256,46.25053689163178,45.40991930663586,45.25652146479115,44.63808921305463,44.992051971144974,44.02044221945107,43.131636925041676,42.39005536260083,43.09846484428272,43.84333432884887,44.261456141248345,43.574795306660235,44.07895732484758,44.85050002206117,44.18987073469907,43.57362316455692,43.31153714377433,43.46708511793986,42.60795625438914,42.49977894220501,43.4583884277381,43.184998692944646,43.15510640712455,42.18233499862254,41.763779083266854,42.730234168469906,43.253860973753035,42.76316267764196,43.14447796437889,42.66899131378159,42.36515069659799,42.67923489678651,42.707178169395775,42.33664772706106,41.536717536859214,42.45616531232372,42.31372905569151,42.22821969585493,42.93417854467407,43.04541631322354,43.81898290710524,42.914832231123,43.57851765304804,43.49356087855995,43.62272390909493,43.43207069579512,44.21667322702706,43.77653075475246,43.58948119357228,44.58369709877297,45.390982035081834,44.456447307020426,44.90633299574256,44.58395669097081,44.901868948247284,44.52982685388997,43.68522526929155,44.04708537273109,44.810097872279584,43.82083397870883,43.70248020766303,44.64128079498187,44.119023215956986,43.43027692101896,43.870385305490345,43.68442959105596,42.75412543769926,43.551042586099356,44.20660514011979,43.281406883616,42.698325124103576,43.59562445944175,43.97709587868303,44.09953047009185,43.401173202786595,42.568500449415296,42.43986148061231,42.6385068660602,42.520270232111216,43.43221853720024,42.7799704070203,42.29628671798855,42.33657176652923,42.109281320590526,41.43722171662375,41.667730789165944,41.00727395713329,40.33201238140464,39.761466700583696,39.085308803245425,39.825983714312315,39.84936835570261,39.22353532910347,40.10641213739291,39.1954745282419,38.250402859412134,37.42027440527454,38.06137272994965,39.00987992249429,38.68725368892774,38.26334803644568,38.364427133928984,37.89363346947357,37.98067151242867,37.7955931853503,38.04308010870591,38.4202900743112,38.23950801836327,38.67027801228687,39.41237335233018,39.776255225297064,40.016808711458,40.99836810445413,41.184467936865985,40.30890978872776,40.33397158468142,40.21044469252229,40.788679614663124,40.028475519735366,39.12085235025734,39.76826006593183,39.92642062949017,40.8309564916417,39.920356618240476,39.057595951948315,40.0256777391769,40.59908056259155,40.36482269363478,40.946923720650375,41.27498464472592,41.04958170698956,41.123749122954905,40.67129003163427,41.46770539227873,41.1201259274967,40.4311738954857,40.74988139560446,40.338492684066296,39.86450738552958,40.416068342514336,40.02122782263905,40.967083958908916,40.865187912248075,41.37297363951802,42.28690101997927,41.96937720710412,42.289779195562005,41.844613034278154,42.26890956284478,41.80181366298348,41.875809902790934,42.84356608102098,43.1043281336315,42.99076988454908,42.16772779356688,41.480350215919316,40.923391580581665,41.46704331878573,41.4458536002785,42.10709872376174,42.447488782927394,43.17453766800463,43.874858839437366,43.19644325785339,42.76108829770237,41.8377835098654,41.864497270900756,42.79002200579271,43.63468086486682,43.40564989717677,42.799327698070556,42.16782700829208,42.713200233876705,41.84937925823033,42.003414367325604,41.938864306081086,41.20123256044462,40.92542607104406,41.742475694511086,42.23464450286701,41.65995529061183,41.692601261194795,40.90613177372143,40.08534886781126,39.65249335439876,39.718235632404685,39.46633296459913,38.80677218269557,38.476616808678955,39.402528325561434,39.12672873586416,39.66761507932097,38.70674250414595,38.44041745690629,38.71972057130188,38.114119169767946,38.33029622491449,39.29112377250567,39.73789023188874,39.90471407212317,39.091331467498094,38.982606100384146,38.806812946219,39.35738153522834,40.20874097105116,40.493316646665335,39.86144907027483,39.905649011489004,39.97692046221346,40.93922506459057,40.08007803373039,40.77691107010469,41.15566849010065,40.55949507188052,40.53110317979008,40.26157199591398,39.46650886675343,40.35184854827821,40.213461129926145,39.492719010449946,39.67355092102662,39.312293904833496,39.937258512713015,40.73926261253655,41.18416098179296,41.998482203576714,41.737379346974194,42.5558559843339,42.71937587112188,42.85187522880733,42.56883103493601,42.1498181973584,42.26952808117494,42.16698614042252,41.5092688719742,41.878306010272354,40.97978696599603,41.196321957279,42.19500569906086,42.894042392261326,41.91994012752548,42.88876206893474,43.45165445050225,44.216737748123705,43.809343077242374,43.9380755033344,43.50483853695914,44.197895305231214,44.08827462280169,43.44566561747342,43.068015621975064,42.551669395528734,41.62402361724526,41.134117593057454,40.151539077516645,39.456391353625804,38.818889430724084,37.89113740203902,38.6466174046509,38.13744266144931,38.048171998467296,37.236234778072685,37.449574928730726,38.23633005004376,37.96749696275219,38.64860927965492,38.18398594716564,38.23965960228816,38.09530853992328,38.922800512518734,38.48193176975474,37.91416911734268,37.48070271965116,38.389277352485806,38.35359979048371,38.81128598144278,38.035486629232764,37.25997858820483,37.41798220947385,37.21623192168772,36.24058913020417,36.406606149859726,36.371364375110716,36.69916824204847,36.987626287620515,36.69342466397211,36.108897822443396,36.86286379303783,37.51094169123098,36.881029163487256,37.07910154387355,37.87488687597215,37.88829260505736,37.83965463889763,38.56412008590996,37.82513843337074,38.11802444746718,37.39594617020339,36.83404113119468,37.33012200938538,38.169869046192616,37.806595942471176,38.39027617685497,39.124600388575345,38.69381118332967,38.67695189407095,39.165524324867874,38.49130550213158,37.57215335033834,36.89818686619401,36.729213036131114,36.41483133053407,36.05534301046282,36.09087832691148,36.31345253949985,37.15737110795453,36.66966851009056,35.83711530035362,35.59012829232961,35.56175910960883,35.89390149572864,36.79518363950774,36.14668017346412,36.579341440461576,36.789772047661245,36.76514959894121,37.519935979973525,36.96850297925994,36.84181008813903,35.89271244732663,35.28174550831318,35.41493386775255,34.74290024815127,34.75377404876053,34.323046083096415,34.016199096571654,34.37243963871151,34.682131573557854,34.39225115533918,33.71379062253982,33.35325137199834,34.28089532349259,33.78830141760409,33.82909487327561,33.703440769109875,34.12424109689891,34.692251874133945,34.84982853429392,34.4746058662422,34.07475790427998,34.72948829224333,34.830238934606314,35.27417789492756,34.76437313994393,35.71971959155053,35.492140882182866,36.19997915066779,35.68775199074298,35.69316403474659,35.98205610457808,35.27042748965323,34.78297851514071,35.71863865898922,36.2827384355478,35.56909751147032,35.15110039617866,34.974884113296866,35.4761339710094,36.24992794543505,36.44127103546634,35.59849651530385,35.21193978423253,34.86794090177864,34.02140256622806,33.84287824993953,33.65058332774788,34.45911461301148,35.05463391775265,35.97912406688556,35.48198183113709,35.865426113363355,36.53958559082821,35.79391902219504,35.05261495290324,35.15813580946997,34.42760755168274,34.09291843697429,34.15109727811068,34.172727305907756,33.20827365806326,32.2655323613435,32.53082130569965,31.698472183197737,31.621941226534545,32.06631393311545,31.64714312227443,30.822537678293884,31.089855276513845,30.337181725539267,31.127509449142963,30.226985053159297,29.74125788360834,29.18137316033244,29.09509112033993,29.50039366306737,30.200595043133944,30.801269341725856,31.258385587483644,31.867870619986206,31.231989339459687,31.81659395620227,32.61604181025177,32.57761981384829,33.39232585160062,34.06105715315789,34.89673692546785,35.34822955308482,35.50121728517115,35.527330646291375,34.868882226757705,34.98191885557026,34.591536849271506,34.90983011154458,35.216451689600945,35.51004070043564,36.11409500101581,36.47858622530475,37.47468540631235,36.67984879296273,35.68590486003086,35.06275863200426,35.67668606154621,34.98251031432301,34.914486202411354,34.71614144183695,34.56777560012415,35.17950418032706,35.960247486364096,35.02246778411791,34.20680031133816,34.65513402596116,34.95663493685424,34.712593850679696,34.86189385037869,34.27344031119719,34.073291569016874,33.2203824846074,32.71350251464173,32.9344855886884,33.37553353887051,33.60205101594329,33.65848671644926,33.90778768155724,33.82045790087432,33.56882215896621,32.73336816392839,32.614715593867004,33.28301438689232,33.79487724788487,33.567957860883325,34.42679399065673,34.86919485870749,35.48701163940132,34.78428816655651,33.840860766824335,33.532431760802865,33.71302661439404,33.472208904102445,34.09349458292127,33.53694898635149,33.29596498608589,32.87724054744467,33.15817482955754,32.65643603494391,33.01387983886525,33.435093058273196,32.79516179533675,32.43839835887775,32.075560592114925,32.993202668149024,32.03865233575925,31.425743313040584,31.4833476212807,31.959816112648696,31.561991825699806,31.985303626861423,31.772412532009184,32.13639916339889,31.441568681504577,31.28892129054293,30.75505010271445,31.036079173907638,31.111235013231635,30.630012802779675,31.437211480922997,30.44058869825676,31.237441367004067,30.352252535521984,31.281696177553385,31.370769089087844,30.723867263179272,30.817253309767693,30.840929815080017,31.029511861968786,31.538242993876338,32.39784677512944,31.828265140764415,32.25794800883159,31.585326047148556,31.555783317424357,31.13411707757041,30.816739983856678,31.05356927914545,30.707417986355722,30.827858726028353,30.200179753359407,31.03820071928203,30.995882167946547,30.11801195796579,30.660459683276713,30.70777398813516,31.500333530362695,31.25176675664261,31.591821586247534,31.537255542352796,32.38732384284958,32.75021118996665,32.519140436314046,33.48451541364193,34.372317048721015,34.987247223965824,34.487686704378575,33.75527989678085,33.36802689637989,32.4517698851414,32.34561936091632,32.01950361672789,31.58610851643607,31.002194796223193,31.365862613078207,31.107221314217895,30.40230547869578,29.734476217534393,29.314243950881064,29.241642523091286,28.90043193893507,29.083012925460935,28.400620392989367,27.762981375679374,27.475162191782147,27.7729875696823,27.060690999031067,26.35246435785666,25.56486647669226,26.003733176738024,25.10202429816127,25.760322242509574,26.218554929830134,26.98664828762412,27.73105191765353,27.60320916492492,27.55709314160049,28.079987245146185,28.717125391121954,28.171608958858997,27.27394420420751,26.391895570326596,25.894785196054727,24.92907438147813,25.610184946563095,26.544914919883013,26.681613756343722,27.409363775979728,27.331505523528904,27.842714608181268,28.550746666267514,28.550933746621013,28.57715985784307,28.198834033682942,28.517589571885765,28.6708096540533,27.809618758037686,27.217343328054994,27.95939166843891,27.877932394389063,27.221695348620415,27.074891979340464,27.8945800405927,27.36273974645883,26.754695001989603,26.68178951367736,26.009760993532836,26.306141586508602,27.301522149704397,26.847159198485315,26.100734433624893,26.36889048991725,25.84849311457947,25.760722203180194,25.83761324500665,26.469908185768872,25.499712763354182,24.608445598743856,24.008940809872,24.524118210654706,23.77641038876027,23.815550652332604,24.142799029126763,24.31032689474523,24.51293348055333,24.46918219793588,23.997203722130507,24.82094163214788,25.339460118673742,26.281790792476386,26.54305028449744,25.716807299293578,25.372695966623724,25.237879120279104,25.657417957670987,25.2513997820206,24.81412169151008,25.01291487645358,24.71263726009056,25.520136485807598,25.98143720207736,25.41424489347264,26.28920494299382,26.25662279780954,25.978333232924342,25.90813083993271,24.929361098445952,24.843940631020814,25.518251415807754,26.285226276610047,25.352435700129718,25.414618111681193,25.437104909680784,25.424004233442247,24.628966381773353,24.75808300683275,24.164523968473077,25.078848151955754,24.888097154907882,25.00169902248308,24.16721512330696,24.735699634533376,25.266617919318378,24.765610949601978,25.388159030582756,25.994074850343168,26.780599144287407,25.99691768689081,25.46639467868954,25.168808287475258,24.604301726445556,23.757924028672278,23.077779272105545,22.440775837749243,21.489455775823444,21.967266142368317,22.13644279865548,22.39050973393023,23.031403670087457,23.083358019590378,23.805366749875247,23.048997073434293,22.56670896243304,23.135231263469905,24.02197385346517,23.07158994488418,23.764425318688154,22.918031598441303,22.10987963574007,21.766706784721464,20.888097876682878,21.56317342724651,22.027561848517507,22.681747351773083,21.920758391264826,22.132185597904027,21.999708867631853,22.808215342927724,22.577955786138773,22.15777679439634,22.230273925233632,22.960993685293943,23.15918286377564,22.269415583461523,22.238790241535753,22.98757053213194,22.60718328692019,22.632142012007535,23.597088041715324,22.828535513021052,23.719485777895898,23.5839224467054,23.491298926062882,22.829393352847546,23.19528856454417,23.919525746721774,24.82062064204365,25.69781354116276,26.497368883807212,26.417648900300264,26.716549166943878,26.350827139802277,25.762146677356213,26.688494474161416,25.7963500530459,26.10275234747678,25.28357808664441,25.36716761579737,24.64711222378537,24.605227549560368,23.64532264554873,23.43284845724702,24.00608466938138,23.51205120049417,22.523696886841208,22.31855508359149,23.085346264299005,22.666267768479884,23.455177090130746,24.181991073768586,25.06611054437235,26.05746766831726,25.211290169972926,25.515071846544743,25.589122732169926,25.82720355782658,25.06183911859989,24.489052306860685,24.548376119229943,24.68304856866598,25.086958941537887,24.447810790967196,25.161178338807076,24.550373871345073,24.81970630772412,25.598236890509725,24.704202780965716,23.97371516469866,23.968343670014292,23.285197763703763,24.251132206059992,23.28875629324466,24.263762949965894,24.878579213749617,25.415414336137474,25.388400813098997,25.02569001726806,24.675999456085265,23.90239809732884,23.1881083836779,22.253686029929668,22.537689661607146,22.23964195791632,22.690702400170267,22.97757329745218,23.26478082081303,22.878333866596222,22.715608954429626,23.15772063145414,22.551230889745057,22.379003731999546,21.927696084138006,21.25612353440374,21.06215053331107,21.84600758878514,21.894057866185904,22.37380177807063,21.47249437402934,20.583279856014997,20.405743073672056,20.032297134399414,19.179373402148485,18.624293688684702,19.43278875341639,19.046322198584676,18.077486236114055,17.775716013275087,16.92836732044816,17.81695041945204,17.80198407592252,17.146754838060588,16.882008378393948,17.86177993938327,17.266784802544862,17.77253509638831,16.996575886849314,17.161191019695252,16.297208720818162,16.205638327170163,16.056728159543127,15.721057525835931,16.015242313966155,16.827460850588977,17.260492839850485,16.591123803518713,16.728627853561193,17.018674650229514,17.3533995016478,17.833284558262676,17.651449221652,17.50784780178219,16.52882800763473,16.05348728504032,16.691424489486963,16.773218429181725,16.820817878935486,16.76508230995387,16.61374138854444,15.845142535865307,15.50578790763393,15.89462225139141,16.083580936305225,16.794704561587423,16.346198712475598,17.131732962094247,16.851947588380426,16.299453424755484,16.8008806463331,17.536549967247993,17.340975997969508,16.627502501476556,16.51825539721176,17.508826590608805,16.600270281545818,16.802296293433756,16.487241497263312,17.281999927479774,17.193655104842037,18.188444698695093,17.397969759069383,17.01324847806245,16.88869328936562,16.73116524424404,16.679064443334937,17.079008145723492,16.818707981612533,17.77262186817825,18.383621070999652,18.16385644255206,17.756090252660215,17.268817375414073,17.326496702153236,18.09702051943168,18.146952792070806,17.540529659949243,17.85107539454475,17.177178237587214,17.00091113895178,17.668374871835113,17.48844630550593,18.26304092584178,18.189924511592835,18.732565726619214,18.94162375619635,19.557245067320764,19.128195285331458,18.378916462417692,18.16393260192126,19.157446899916977,18.293749469332397,17.572794453706592,17.09529694635421,17.120747273322195,16.154822130221874,15.373104362282902,15.623717627488077,15.412783349864185,16.087819912470877,16.794637258164585,16.334906117990613,17.119787311647087,16.973365420475602,16.94476615684107,16.86226116772741,16.658743039239198,15.819392058998346,14.92147214198485,14.458585667423904,14.710051514673978,14.753429285716265,15.722569243982434,16.1377932485193,16.351007896941155,15.444953540805727,15.321831919252872,14.749370425008237,15.43030009046197,15.412375355139375,15.113914969842881,15.153613198082894,14.993224334903061,14.957756689283997,14.853934795595706,15.459035712759942,16.091832280624658,16.210972625762224,16.355393388774246,17.2605236209929,16.969418718479574,17.67560197552666,18.112094100099057,18.610755381174386,18.832768212538213,19.29522349545732,19.33160974876955,19.922473567537963,20.75755618745461,20.068649986758828,20.32071124901995,21.119250868447125,21.967077940236777,21.123044170439243,21.975599981844425,22.770217201672494,22.057601814623922,22.53377541806549,21.637553555425256,21.041900082025677,20.236488674301654,19.47747572697699,20.273268260993063,20.772126650903374,20.873210925143212,20.335604531224817,19.544495036359876,19.765355279203504,20.596453247591853,19.855715489946306,20.235776748042554,19.25927098048851,18.41498597105965,19.32499537616968,19.759613653179258,20.71639200206846,20.05818063672632,20.64388414332643,20.883509611245245,20.038794649299234,20.712152517866343,21.113435400649905,21.148097481112927,21.092685242183506,21.73078445950523,22.463732288684696,22.313961169682443,22.749648495111614,23.67017890838906,23.683689122088253,23.054985898081213,22.313520683906972,23.24930399795994,23.12686312245205,22.837586286477745,21.919644291512668,21.08698118943721,21.99255570350215,21.466363268438727,21.049124220386147,20.09757141582668,20.91061027534306,20.33264137338847,19.975845051929355,20.34624786209315,20.51779257413,21.40870391810313,21.556705068796873,21.097272988408804,21.38305894425139,22.21458705421537,21.32340964768082,21.107441471889615,21.752512328792363,20.80636703269556,20.605924068950117,21.595161529257894,21.563773832749575,21.092910811305046,20.89687981037423,21.775207966566086,22.580380223225802,23.14624233543873,22.451296811923385,21.953069397248328,22.70893487241119,22.437591228168458,23.257477572653443,23.972822682000697,23.127502928022295,23.864498721435666,22.990688767749816,23.710635418072343,23.85366459796205,24.103776056319475,24.05175960250199,24.743722102139145,25.662052765954286,25.18661615019664,25.6094191824086,26.33149894559756,25.549714802298695,25.37108130985871,24.85251943068579,25.283564634155482,25.00444426946342,24.46986471954733,25.340628517325968,24.896661583334208,24.60295450873673,24.171502850484103,24.932188565842807,24.67120952764526,23.68879097001627,22.748492151964456,23.28719273582101,23.889936819672585,23.90225817123428,24.67902175569907,24.81455096974969,24.85690580494702,24.64267590129748,24.967396788764745,25.313950209412724,25.442555045243353,25.14272113982588,24.688494426663965,25.60074778739363,26.394521369133145,25.62311223661527,26.049615129362792,26.32923887949437,27.059464432299137,27.909722837153822,28.587401886470616,29.190112660638988,29.36275508068502,29.314279519487172,30.18614224297926,30.165041785687208,29.566880561877042,29.662561076227576,28.768895187415183,29.549649067688733,28.792802123352885,28.389168230816722,27.463963439222425,28.447680140845478,28.62537983711809,29.06441953824833,28.584091562312096,29.189001003745943,29.146947769913822,28.920698437839746,28.95730878273025,28.889137039426714,28.664380525704473,29.132823443505913,29.709167851135135,29.11243578698486,28.749702758621424,29.490750355180353,29.14193250797689,29.371923292055726,29.150278088636696,28.988406765740365,29.96528690867126,29.05548898410052,29.773702985141426,29.95444041164592,30.702858034987003,30.15955030824989,31.00432662619278,31.66819273913279,31.544044773094356,31.007238700520247,31.13296515541151,31.704696143977344,31.26602545240894,31.842619164846838,31.33557969890535,31.469290946610272,31.276350697036833,30.464795930311084,31.327590522821993,30.41067594755441,30.198042964097112,30.629753760062158,30.936828849371523,30.064925351180136,29.27526558795944,28.33193165436387,28.48375224042684,28.48902000626549,28.950705931521952,29.13857531407848,29.12449930375442,29.374233703594655,28.775273676030338,29.14301897585392,29.92489195195958,29.343206307850778,28.454320987220854,28.33708769036457,27.784946813248098,28.05930025782436,27.0742470882833,27.9247204400599,27.149923274759203,27.925395673606545,28.31836785702035,27.457274148240685,26.763701257761568,27.297036243602633,27.476927981711924,26.890146609395742,27.36676421482116,27.026282350998372,27.210741269867867,26.81423103902489,27.694145555607975,27.18114469340071,26.76008065091446,26.694588961079717,25.983409346081316,25.743231774307787,25.371380428783596,25.73761143302545,25.503141197841614,24.65480295335874,24.872057241387665,24.65308419568464,25.40569381043315,25.92030764790252,26.81077612983063,26.739978258498013,26.75117562757805,26.19058093521744,25.779065889772028,26.33853438589722,26.34738958068192,25.74684252263978,25.117485042195767,24.811046055983752,24.34336370555684,24.073493756353855,24.579448372591287,24.243339587468654,24.10107391839847,24.100222632288933,23.879265615716577,24.345391726121306,24.289678471628577,25.01531725609675,24.247271075844765,24.121645257808268,23.23357771523297,24.17958582006395,25.134553997777402,25.452383066527545,25.006658859550953,25.76650045486167,25.37178187025711,24.59073106246069,24.843330418225378,24.3843261054717,25.311411124188453,24.322854700498283,23.59754801914096,22.79380224365741,22.934537462424487,22.588474015239626,22.287112344056368,21.462537865154445,20.95293434150517,20.37682330980897,20.18511709338054,20.372702061664313,19.698093885555863,18.875836330465972,19.516279495786875,20.38104902068153,19.974049723241478,19.90617021592334,20.3902481473051,21.191543636843562,20.412268401589245,20.047106105368584,19.87702145986259,19.80679301964119,20.609853736590594,20.860847764182836,20.782082225196064,21.117366963997483,20.21687024179846,19.727266998030245,19.456378155387938,19.185005456674844,19.125614520162344,19.089276235550642,19.230069833341986,20.18385280529037,19.438531156163663,18.46445803064853,18.82624243153259,19.73640344152227,20.41799470409751,20.994513743557036,21.68207317730412,20.86885303724557,20.290311558637768,19.560068149119616,19.687929068226367,18.764801733661443,19.29636297840625,18.635548249818385,19.22517188079655,18.3820686978288,17.850198493804783,17.519705425482243,17.90407329890877,18.08557093050331,17.46807109657675,17.764404212124646,18.65095662465319,18.989188125357032,19.455785902682692,20.449071458075196,20.085969989188015,20.2681654705666,19.361439619679004,18.819068661890924,19.570142262149602,19.810670771170408,19.19770498154685,19.434824916534126,20.193761989939958,21.030875537078828,21.227123801596463,21.284354097675532,21.679494983516634,21.598032048903406,21.147775425575674,21.740445734467357,21.346951792482287,21.104292993899435,21.420921177603304,20.611668382305652,20.87460856884718,20.085262540262192,19.68641549348831,19.064131926745176,18.999970473814756,18.79579485533759,19.756907047703862,20.17840823577717,20.1782409963198,19.832334920298308,19.09907970018685,19.44760218076408,18.687725758645684,18.28470580931753,18.04610594920814,18.890184067655355,17.9380123722367,18.291982599999756,19.172801359556615,19.147593923844397,18.967139082495123,19.383204797748476,19.275117088109255,19.109609830658883,19.79243090422824,20.067694888450205,19.680398577824235,19.642203351017088,20.114838403649628,20.06430527381599,20.8311036946252,20.7951369327493,19.82628413848579,19.584725125692785,18.796447159256786,18.22142334515229,17.590909557417035,16.628965547308326,17.093267708085477,17.00569753209129,17.24934801645577,17.720566005446017,16.834264073055238,16.99526885105297,17.824525981210172,18.297003019601107,17.710623746737838,18.421607045456767,18.31207920331508,18.01878624316305,18.507186690345407,19.098833401221782,20.038203646428883,19.136617962736636,19.910411198157817,20.071743433363736,19.29358546854928,19.255372234620154,18.891839281655848,18.43254854204133,18.424946355633438,17.75767323607579,16.808113472536206,15.9067024551332,16.793699843343347,16.91628048894927,17.566176411230117,16.727033589500934,16.45527071552351,15.655918184667826,15.411871355492622,16.322545528877527,15.717759430408478,15.831379077397287,15.256261257920414,15.074383592698723,14.861760866828263,15.772874386049807,14.839351413305849,14.978109949734062,15.458575742319226,16.153528138063848,16.26138110132888,15.927416689228266,16.920573465060443,17.392706549260765,17.885547359008342,18.552657078485936,17.65550751890987,17.37821282632649,17.000981564167887,16.220698596909642,15.338409481104463,14.875534097664058,14.981904510874301,14.779260367155075,14.27859778702259,15.197841645218432,14.472519235219806,14.709034372121096,14.52252171933651,15.308667061850429,16.23682862194255,16.19871258828789,16.733849592506886,17.268192091491073,17.19475960917771,16.463978459127247,15.4763641548343,16.451289049349725,16.377630428876728,16.701675915624946,15.899968958459795,15.291276101954281,14.462987584993243,13.471347341313958,12.6193171213381,12.421324061229825,11.749572854489088,11.063930213917047,10.438389345537871,10.307559689506888,10.700947271194309,11.596163148060441,11.319734188728034,11.0249616894871,11.729488155804574,12.108562590088695,11.192916752304882,11.172219044994563,10.451901056803763,10.080864712130278,9.352458774112165,8.451635234989226,8.404776560608298,7.709825460333377,8.682887634728104,8.380513574462384,9.06861042091623,8.553690903820097,8.239387651905417,8.208259597886354,8.545752987265587,7.61586951604113,7.056701299268752,7.154162268619984,6.301336859352887,7.0296600121073425,7.615720080211759,8.210588471964002,8.599669732619077,7.631443728227168,6.90009089699015,6.4623877089470625,5.67457797518,5.483576633501798,6.156148253008723,5.50558293517679,5.56150540523231,6.441888472530991,6.46856985706836,5.821738736703992,5.180686225183308,5.878012259490788,6.768971486017108,7.0281394980847836,7.719883040525019,7.239260911941528,8.126238698139787,7.976900517940521,7.100035589188337,6.907194492872804,7.898334848228842,8.2115746201016,7.5214114910922945,7.663079853635281,7.883356432430446,7.850389450788498,7.133460550568998,7.1927958461456,7.450167799368501,6.770696179941297,6.324961009435356,5.528227812610567,6.4130940195173025,6.674089940730482,6.097424636594951,6.349799836054444,6.416500611696392,6.963022598065436,7.138282060157508,6.700188630260527,6.759826929308474,6.335367668420076,5.683481267187744,5.345712745562196,4.629550219513476,3.8730010795406997,3.9093789029866457,4.5804788009263575,4.7632364351302385,4.6075524860061705,4.643890865612775,5.430335350800306,5.983199532609433,5.639409434515983,6.265594204887748,6.087929310277104,5.341797422617674,5.77970014186576,6.58951317705214,6.643589158076793,6.737468161154538,5.795248742215335,6.360213904175907,5.876987145282328,4.88875139830634,5.0929919658228755,5.045276457909495,4.314667783677578,5.281884505413473,4.315025789197534,4.702998900320381,4.164849164895713,5.039485571905971,5.711983141954988,5.394416650757194,4.490475722122937,4.3282565348781645,4.962865924462676,4.136353985406458,4.032500593923032,4.302126864437014,3.7511981348507106,3.6863946774974465,4.586104347370565,5.474187480751425,5.401494046673179,5.407564234919846,5.485566774848849,5.835949423722923,6.795909615699202,7.669786857906729,7.138545667752624,7.401836747769266,7.039036997128278,6.452768779359758,6.361024955287576,5.616327118594199,5.80258272588253,6.624724481720477,7.473954188171774,6.990398698020726,6.4847822417505085,7.315889156423509,7.35466424189508,6.470744775608182,6.229996987152845,6.4877122598700225,5.819967265706509,5.949394064024091,4.952514288481325,5.3576919049955904,5.1874532527290285,4.52513133874163,4.000569723546505,3.1396116465330124,3.9056679462082684,4.67745369579643,4.794667473528534,4.707509448751807,4.029075474012643,4.784167498350143,4.6043856223113835,4.149214820936322,3.418206708971411,2.8248889362439513,3.375722470227629,3.5018777791410685,2.7528436039574444,3.143462136387825,3.3090231460519135,4.215401283930987,4.592731094919145,4.3927868329919875,3.526108448859304,4.498825318180025,4.175027254037559,3.2949853194877505,3.059376195538789,2.3468937668949366,1.4464815999381244,0.8730017296038568,-0.11480629537254572,-0.10325426561757922,0.034419518895447254,-0.7196149993687868,-0.4386728433892131,-1.0139079801738262,-1.3992379242554307,-0.9510830123908818,-0.7061368054710329,-1.098457520827651,-1.50990131450817,-1.944457659497857,-2.1119971279986203,-3.092271182220429,-2.4780346057377756,-3.048176769167185,-3.6586782233789563,-3.5584325259551406,-3.7167555415071547,-4.1685773697681725,-3.6489432263188064,-3.5227139377966523,-3.5132078020833433,-2.887227055616677,-3.834167213179171,-2.8359335493296385,-1.8921737521886826,-1.3754817047156394,-0.6195674347691238,-0.2701906762085855,-0.3902539610862732,-0.496820698492229,0.4169242987409234,0.7668012506328523,1.6313624656759202,1.931680039037019,1.39870843058452,0.9178260774351656,1.731137512717396,2.457605200819671,3.0394051652401686,3.249008236452937,3.608523297123611,3.7626107544638216,4.135484401602298,4.671387173701078,4.654665395617485,4.096042667981237,3.1170589267276227,3.706522013992071,3.324332638643682,2.949882963206619,3.2326233969070017,2.5477866688743234,1.7437991499900818,2.7362287254072726,2.481708978768438,2.1567226541228592,2.4864918519742787,1.9787518116645515,2.536495016887784,2.134105175267905,1.3702282779850066,2.256761856842786,1.3449099296703935,2.002738884650171,2.283810244407505,2.4606508654542267,3.1450269534252584,3.8803198295645416,3.2006775974296033,2.5574910324066877,2.096563938539475,1.64751953817904,2.504277077037841,2.711339386180043,3.1275729169137776,3.649351259227842,4.331230961252004,3.9481737334281206,4.566539014223963,5.487004894763231,6.0308065307326615,6.826625571586192,6.286648931913078,7.033368963282555,7.622181904502213,7.400013718754053,7.056389242876321,7.025264739058912,7.854931409005076,8.334159170277417,7.421235773246735,7.9076888002455235,7.6508370176889,8.09547899896279,8.791206217370927,8.960712096653879,8.72221195884049,8.462692669127136,8.61621656268835,9.438658759463578,9.270292663015425,9.604889553505927,8.957490450236946,8.740743565838784,9.161421567667276,9.371095540933311,8.802970982622355,9.419788122642785,8.676297890488058,8.42391216289252,9.404981005005538,9.265485334210098,8.84610836720094,8.094589108135551,8.123784772586077,8.07476415950805,7.310124100651592,7.526665460783988,7.492418269626796,8.196099884342402,7.917852805927396,8.141064688563347,8.705995665397495,9.640256214886904,9.767527632880956,9.694395324215293,9.028919958043844,8.241780266165733,8.683550753165036,8.47536529880017,8.59327278798446,8.65809293044731,8.059619839303195,7.547700143419206,7.848695466294885,7.879575675353408,7.688521028030664,7.60571356350556,7.583346863742918,8.408987456932664,8.706963634118438,8.307737547904253,8.296302740462124,8.963806543964893,9.0107627264224,9.013017199467868,9.561350032687187,9.114873736165464,9.225681006908417,9.032181540038437,8.161774986889213,7.3265942288562655,7.280563038773835,6.912411543074995,7.846320997457951,7.566232399549335,8.295457797590643,7.716727845836431,7.8553503905422986,8.843750753439963,8.020897547714412,7.090736010111868,6.334675987251103,6.566078044939786,5.734895043075085,6.5139469197019935,5.755919101648033,6.607640583533794,6.46409012330696,7.13969541573897,6.550071572419256,6.433820998761803,6.581831609364599,6.85281762201339,7.413395652547479,7.389823869802058,7.211072712671012,7.159428393468261,6.511699429247528,6.302204413805157,6.008778654038906,5.6131901615299284,5.6403408804908395,5.532732600811869,5.819962070323527,6.213166311848909,7.141672265715897,6.474877962842584,5.87128872377798,6.5881681884638965,6.465814634691924,5.623511411715299,5.935101600363851,6.250367371831089,7.094271001871675,7.348747587762773,7.943458414636552,8.926904956810176,9.843853740021586,9.018196124583483,8.64927733456716,7.674875850323588,7.532942675985396,7.49308981699869,6.505342898424715,6.5502480692230165,5.678777404129505,6.1423057722859085,6.9451247486285865,6.262047667056322,6.760712172836065,7.003963393624872,7.079144990537316,7.945702129974961,7.301177001558244,7.969662465620786,8.81428374350071,8.607720302883536,7.7063496662303805,7.653219744563103,8.168736702296883,8.738756851293147,8.981391282752156,9.753202475607395,8.906972875352949,8.072835428640246,7.368418026249856,8.232097495812923,7.875023006927222,7.711783979088068,8.338783657643944,8.71806724416092,7.967620144598186,8.895777229685336,7.925504450220615,8.291684867348522,7.7842189613729715,7.480661648325622,7.903078076895326,7.62086281273514,7.627968082670122,7.778587325010449,7.1890444732271135,7.404707519337535,7.970480198971927,7.8164317086339,8.45750811137259,8.909348653629422,8.654308430850506,8.975392129272223,8.688114926218987,8.789882477372885,9.184800588991493,8.494917849544436,9.174945557489991,8.366966679226607,7.464891496114433,7.591004717163742,6.927060201764107,5.963794504757971,5.25007211510092,4.3454201756976545,4.136631778907031,3.9942558212205768,3.4547091787680984,4.017248359508812,3.2426558793522418,3.4179264279082417,4.289096755441278,5.109919081442058,5.282014292199165,5.242497444618493,6.207803701516241,6.500535292550921,7.243186510633677,7.99919020337984,7.3179419175721705,6.621503137052059,6.10989833669737,6.854834040161222,5.949229019228369,5.910860045813024,4.971876815427095,5.4093322600238025,5.019700725097209,4.599624756723642,4.645090440288186,5.515545847825706,5.328260601498187,5.87373753124848,5.862478933762759,5.790602909401059,5.747187857050449,6.286184150259942,6.725193205755204,6.058598553296179,5.185808979906142,5.295448224060237,4.45100796315819,4.5862862495705485,3.7943486967124045,3.680196037515998,3.921854159794748,3.1844161059707403,2.5945463343523443,2.9378020418807864,2.5946989310905337,3.49739304324612,4.05413438891992,4.290435594972223,4.143329914659262,4.027140800375491,3.392966376617551,3.6283638142049313,4.139222980942577,4.5906148864887655,4.887856517918408,5.503519417252392,5.979653511196375,6.567800705786794,6.495398655533791,6.493789799511433,7.009448972996324,7.601805318612605,8.20984823256731,8.759571549948305,9.08701252611354,8.995569807942957,9.571258381940424,9.677460909355432,10.590868168976158,9.995662711560726,10.988304271828383,11.146091859787703,10.473008945118636,10.293844800908118,9.50050593772903,9.991056181490421,9.121139286085963,9.259593044407666,9.98821207601577,10.09017523843795,9.68232608679682,10.520315435249358,10.545362365432084,10.957994630094618,10.971312053035945,10.167375257238746,10.460829719435424,11.376469646580517,10.824889195617288,11.497705834917724,12.196407401934266,12.469614323694259,12.062429697718471,12.302452805452049,13.139992722310126,13.401512524113059,13.80928713735193,13.492575355805457,12.694915712345392,13.531043211463839,13.07988214539364,12.509960664901882,11.60987078724429,12.583258313592523,12.889768855180591,12.118707698304206,11.695718714036047,12.504527695477009,11.547633311711252,11.97703270567581,11.84038948500529,11.810421174392104,11.674891808070242,11.552332561928779,11.619535818696022,11.311392213217914,11.732975074090064,10.899592202622443,10.831485900096595,11.463385195471346,11.19917266862467,10.884936903603375,10.143086377996951,10.550695473793894,10.537016844376922,11.080376622732729,11.175880164373666,11.189444780349731,11.79904317157343,11.622410788200796,12.457000502385199,13.236067729070783,12.95893444120884,12.385905471630394,12.120044800452888,12.383989731781185,12.768899912014604,12.991034029982984,12.759259471204132,13.237522085662931,12.725120909977704,12.878933628555387,13.175448704510927,12.21291079884395,12.326540814246982,11.810270693153143,11.606766324490309,11.836157382465899,11.997257051523775,11.059107397682965,10.903545913752168,10.894984640181065,9.962763933464885,9.579627921804786,9.470895822625607,9.944524907041341,9.472508736886084,9.415670031215996,10.004640150349587,10.040622263215482,9.306642329320312,8.781592094805092,7.943733399733901,8.350281698163599,8.336160422768444,7.472939343657345,7.49067879607901,7.0007300190627575,7.888996289111674,6.99707703338936,6.373106982558966,6.238022475503385,5.719740760046989,5.446950985584408,6.252088636159897,6.085206902585924,6.0228806510567665,5.781153677497059,5.994168831501156,5.344743110705167,6.122523240745068,6.6930311638861895,6.149622122757137,6.014534610323608,6.468496133107692,6.610087932087481,6.953942337539047,7.195043938234448,7.538505036383867,8.389527203980833,7.91103257285431,7.405184398405254,7.170031501445919,7.422919345553964,7.9698945293203,8.70893241558224,9.163757601287216,8.962110138032585,9.298575078137219,8.835045075509697,9.568597522564232,8.798997065518051,8.505046414211392,9.375448835082352,10.29773142375052,9.995632921345532,9.96045681135729,9.914366673212498,10.483297096099705,10.745012536644936,10.202396003063768,9.48579162126407,9.288558055646718,10.1216702866368,11.109384370967746,11.294957398436964,12.024963180534542,12.292740595061332,12.290440645068884,11.446838164236397,11.327152207493782,11.980208053719252,11.903606472536922,12.741941450163722,12.428057142999023,12.874630501493812,13.798274166416377,14.418134292121977,15.078944008797407,15.647693688049912,15.228838837705553,15.919413560535759,15.245973381213844,16.031279106624424,16.230423973873258,15.970297168008983,15.553352608345449,16.134017372503877,16.418179879896343,15.803034108132124,15.085507195908576,14.097672543954104,14.332498477306217,14.315919886343181,14.800778838340193,14.600834760814905,15.377805830910802,14.98607592470944,14.30952334869653,13.620994807220995,14.001437896396965,14.52797557413578,15.025892280973494,15.56488783750683,14.786856994964182,14.527216485701501,14.974826729856431,15.534742976073176,15.051461540628225,15.33504891814664,14.707646571099758,15.061438846867532,15.885903766844422,15.495248716324568,14.780983559787273,15.2138712964952,14.516997329425067,14.088974067941308,13.234177018515766,13.96339270612225,13.316173491533846,13.938490524888039,14.498728609643877,14.715819211676717,14.898663751315325,15.792530526872724,14.945246392395347,14.084681791253388,13.952234635595232,13.515394386369735,13.923693548422307,13.47381935454905,14.095532422885299,14.930182982701808,15.826596970669925,15.766115928068757,15.602064166218042,16.03389452630654,16.735650656744838,17.242781297303736,17.748939192388207,17.971804296132177,18.91285317344591,18.912154290359467,19.83190187672153,20.727966954931617,19.90111903101206,20.21166350832209,19.492912468966097,18.990237125661224,18.1197488931939,17.49306180374697,17.78462906135246,18.530220854561776,17.55716565111652,17.089470812585205,17.761036093346775,17.488622130360454,16.53319309465587,16.103837365284562,16.032335648313165,15.33190801134333,16.112468698527664,15.728938327170908,15.51107078883797,15.326536464970559,15.535598954651505,14.763971333391964,15.741055084392428,15.520123618654907,15.019808730576187,15.122856988571584,14.507845212239772,14.489683595951647,14.599964297376573,14.151217342354357,13.671922128647566,14.263673243112862,13.995157146826386,14.262875476386398,13.47241985425353,12.525462101213634,13.026288392022252,12.699391398113221,12.941752282436937,13.06913902470842,13.117135568521917,12.961639052722603,12.692413658834994,12.12060018023476,11.18407847546041,10.849879032932222,11.593807411845773,11.0000566910021,11.22483303816989,10.479845995083451,9.662967957556248,9.785144726745784,9.9843078404665,10.036644829437137,10.195375693030655,9.465036679059267,10.344439152162522,10.895782383624464,10.373020753730088,10.128741659689695,10.740186696872115,10.310970146674663,9.766759765800089,9.60815526265651,8.906663600821048,8.008929598610848,8.703543769661337,9.43197580659762,9.962923451326787,10.748292796313763,10.894413047004491,11.339092774316669,10.804036519955844,10.764334331266582,10.358600829727948,9.421748985536397,10.078232082538307,10.536854987498373,9.895193068310618,10.769771832041442,10.625373359303921,11.199650717433542,10.544867201708257,11.189097039867193,11.428361235186458,10.630944695323706,9.650305644609034,9.131404074374586,8.265914306044579,8.047920004930347,7.40337391057983,7.9373505944386125,8.084980457089841,8.65720165008679,9.062967150006443,9.816829040646553,9.908981860149652,9.468461896758527,9.603828091174364,10.428402413148433,9.850594078656286,10.758736185729504,10.045585551299155,9.07469492778182,9.071411373559386,8.114019978325814,7.1605118731968105,6.801380797754973,6.651827326975763,6.2779577053152025,5.965311937965453,6.698753486853093,7.58676991192624,7.099145267158747,6.8771353284828365,7.285210563801229,7.024451508186758,6.393492293078452,7.314093328546733,7.292156609706581,7.2859722576104105,8.019913773518056,7.516602439805865,6.984428721945733,6.2820081720128655,7.050641074310988,6.549570290371776,6.287767631933093,6.13050759350881,5.9945250186137855,5.195380986202508,5.68702652445063,6.413679166696966,6.775025936309248,7.519167288672179,7.405772508122027,8.032962764147669,7.944199962541461,8.698560726828873,8.133855374995619,8.150662519037724,7.450306281913072,7.093405881430954,6.120368978474289,6.471083323936909,6.606509731151164,6.043282323051244,6.484093057923019,6.355768823530525,5.689366418868303,6.161983412690461,6.549859213642776,7.059893378522247,7.587212876416743,7.767835076432675,8.589602707419544,8.932526223827153,7.946739186067134,8.916898797266185,9.895598885603249,8.966936273034662,8.850404164288193,9.600708766840398,10.519127492792904,10.541725585702807,10.814365427941084,10.460674973670393,9.557357702869922,10.335294537246227,9.983920145779848,9.218385332729667,9.796391368377954,10.419706431217492,10.347467461135238,9.825764062814415,9.803529432509094,9.94451800500974,9.23654853226617,9.841033461038023,10.451324280817062,9.87178591452539,10.753853015601635,11.263780027162284,12.116722289007157,12.56663053529337,13.353058749809861,12.938118731137365,13.38392114220187,13.246660589240491,13.305534287821501,12.471684640273452,11.875216521322727,12.098823279608041,11.369351720437407,10.719937156420201,10.367778324522078,11.203029144089669,11.955774293281138,12.405836903490126,12.54111092723906,13.189723095856607,12.659715765155852,13.258913699071854,13.630722794681787,13.52724687429145,13.089130902197212,12.652529694139957,12.316159941721708,11.974566332995892,12.490650108549744,12.569928234443069,12.653449102770537,13.244712220970541,13.860081390943378,13.896495675202459,14.133097837213427,14.647252621129155,14.768514777068049,14.962122146505862,14.54535656934604,14.546430171467364,15.510012791492045,16.046275298576802,16.320829603355378,16.78939548879862,17.585535537451506,18.16281081456691,19.1264708917588,19.24641240760684,19.00993790337816,18.199693056289107,18.741688812617213,18.949282750487328,19.48471790831536,19.594548073597252,20.484206951223314,21.361648350022733,20.697266668081284,20.501151341944933,20.91080964077264,21.0131056481041,21.84612110024318,21.500166181474924,21.250851654913276,20.28061526408419,20.267218281514943,19.922471596859396,20.411636862903833,20.941619450226426,21.144983409903944,20.212980190292,19.822329324670136,19.610166553407907,19.621514035388827,18.83565170923248,18.34549696324393,17.463064859155566,16.80185579881072,16.08156019775197,15.257917147129774,14.651865909341723,13.904053395614028,13.17445752210915,13.431167308241129,13.106097511481494,12.669775325804949,13.566769039724022,12.870287647470832,13.644964473322034,14.063841518945992,13.098025818355381,13.815628876909614,12.873916277196258,13.008879957254976,12.04646253446117,11.647802444640547,11.898314477875829,12.805592322722077,13.146068753674626,13.169985691085458,13.622749965637922,12.647697823587805,12.62500712601468,11.901630699634552,11.549549995455891,11.489650252275169,12.389600611757487,12.497005711775273,13.480550321284682,14.437797229737043,13.669003950897604,13.244492634665221,14.068487679585814,14.46341124502942,15.078435116447508,15.063300980255008,14.760933057870716,14.506908984854817,15.424291212111712,15.543071493972093,14.663967767264694,14.408783676568419,14.7068637968041,14.513189572375268,13.624817764386535,12.696350685786456,11.785636960994452,11.673025572206825,12.316185927949846,12.176025444176048,11.521166663616896,11.630980292800814,11.462346642278135,11.18749738810584,11.394693958107382,11.82548154052347,12.544249957427382,13.432066508103162,14.06802665675059,13.68572397949174,14.669500797521323,14.008035723119974,14.884052351117134,14.354749400634319,13.515678889583796,14.021683363243937,14.535241420380771,15.075075263157487,14.94130639731884,15.665289527736604,15.706210765056312,16.628435566090047,17.50031986553222,17.82421576883644,18.121368748135865,17.68419730849564,17.017595044337213,16.529094450641423,17.271925250068307,18.044579471461475,17.135915919207036,16.261013218201697,15.436256499029696,15.306487027555704,15.476904545910656,16.13075165776536,17.100549223367125,16.878806222230196,16.672317613847554,16.60232752142474,17.187306152191013,16.31321498984471,16.167111680377275,16.01902995724231,15.985193934291601,16.49011898599565,16.98371144104749,17.180220648646355,17.190851105377078,17.15472169406712,16.18446703441441,16.46719657164067,16.385829620994627,16.89283805852756,17.55781746143475,16.60267224581912,16.829892970155925,17.295277591329068,17.925820352509618,18.575113086029887,17.988029491622,17.301909018307924,16.74194818548858,17.229353252332658,18.054858782328665,17.54899360286072,18.460875207558274,18.107516870833933,17.439266526605934,18.4108746512793,18.072123412508518,18.42645965795964,19.233118404168636,19.454165181610733,19.841419842094183,19.27433227095753,19.17334647849202,18.362023632973433,19.10999628622085,18.376868662424386,18.989739823620766,19.063301565125585,19.655103733297437,20.565395808778703,20.89207912515849,21.582093968521804,21.882290549576283,22.002190500497818,22.153647269122303,22.616023359354585,22.25728451879695,22.1212412789464,22.652526959311217,22.21187809901312,22.275475724600255,22.509295634925365,21.844058129005134,21.242534091230482,21.780189289245754,22.23090011579916,21.579824863001704,21.339992734137923,21.713213673327118,20.741760230623186,20.080772918183357,19.27407338982448,19.148999731522053,18.72505164053291,19.380980310495943,19.253721233457327,19.75320972688496,20.463128610048443,20.111625579651445,20.240012609865516,20.9717581840232,21.15774375665933,21.970137516967952,22.743691900745034,23.197466806974262,23.148367437534034,23.049411868676543,22.51516286889091,22.166133997496217,21.73237369209528,21.78563161054626,20.957188663072884,21.827594136819243,22.682623479980975,22.728643836453557,21.89769424125552,21.998085658065975,21.67464574892074,21.83531651366502,21.77363308845088,22.26259840792045,22.950749691575766,23.66567805642262,23.90359348617494,24.3530292250216,23.426160983275622,23.527244408614933,23.744007799308747,23.032924070954323,22.74362287670374,22.62180460477248,22.78178215259686,22.27739941654727,21.483029196504503,21.540328559465706,20.7309092390351,20.91346547519788,20.755403886549175,21.00206558778882,20.399162559304386,20.330055138096213,20.114359999541193,19.235971783753484,19.76504836976528,19.63436900265515,20.57601887593046,21.36187949636951,21.767493535298854,20.896780194714665,20.80793136311695,21.31437792768702,22.155839146580547,21.92707288544625,22.540189797990024,21.729464846197516,21.128887205850333,22.018169535323977,21.460319272242486,22.277042584959418,21.722861199174076,22.701195323839784,22.605779476929456,23.249682006426156,23.68291003582999,23.91253100708127,23.134749854449183,23.3271139212884,22.884588208049536,22.31007654964924,22.71814364520833,23.306362498551607,24.19033801741898,23.666491440031677,24.084797512739897,23.37878027651459,23.576208194252104,22.84113800432533,22.432592974975705,21.71833299845457,21.81310289679095,22.547883703839034,22.164715252816677,22.222159291617572,21.65172886941582,21.255693337414414,21.075539690442383,21.755428586620837,22.48199987364933,22.339374678209424,22.121989930048585,21.316596827935427,22.08512603258714,22.546151515562087,22.270504876971245,21.318821642547846,20.346680368762463,20.826211496256292,20.737289367243648,20.412234388757497,19.918068304657936,20.36042016930878,21.269714928232133,20.771967499516904,20.16991614177823,19.48741428833455,20.23588018072769,21.047495746519417,20.36540353903547,19.97849382739514,20.97631261823699,21.78164066374302,21.60179219627753,22.594446865376085,22.929422043729573,23.157573642674834,24.08928656950593,23.31488341744989,24.139203775674105,24.925156520679593,24.34704295359552,25.31452992744744,25.227548459079117,24.861859002616256,24.244839986320585,23.65780094033107,23.50867615547031,24.465095163788646,23.653312504291534,23.996757512912154,24.259258412756026,25.106365196872503,24.674118680413812,25.02577722724527,24.81339824059978,24.18628456769511,24.97004656214267,24.041608098894358,23.263305130880326,23.150678522419184,22.314792586490512,22.299743166659027,22.071792237460613,21.97670878097415,21.859728508628905,22.023228778038174,21.166159875690937,21.68072178028524,22.119349947664887,21.823462528176606,21.445071740075946,22.293611254077405,21.78712105145678,21.68122037872672,22.550310670398176,22.232001232914627,22.838855837006122,22.365827411878854,23.095820927992463,23.86494698515162,24.403521955944598,25.18614200176671,25.041133334860206,24.63235240150243,23.804120189510286,23.716755132190883,22.983160122763366,22.711880011484027,22.44276349944994,23.30474528670311,23.106395289301872,23.854850305709988,22.9280120767653,23.674611777532846,24.22005167743191,25.089075960684568,24.4439595695585,23.8327741259709,23.031785934232175,23.57075500441715,23.266538724303246,22.483715548645705,23.23171867011115,24.1486954013817,24.03159915888682,24.03221390582621,23.06830755993724,22.944391447585076,21.997839270159602,22.85802950616926,22.236425845418125,21.990575330797583,22.654946060851216,22.71336062764749,22.682292425539345,22.624482459854335,22.20541066257283,21.869367379229516,20.871559324208647,20.013086150866002,19.58599678426981,19.702116147149354,19.401213156525046,20.089371158275753,20.736260265577585,21.35705699212849,21.044341668486595,22.028053978458047,22.560522433836013,22.00706920027733,22.418324103578925,22.198841127566993,22.20565788540989,22.32808804884553,22.893221244215965,23.887787873856723,23.660587805788964,23.11927758110687,22.272574946284294,22.148521311115474,21.425635029096156,20.937068639323115,21.47011147905141,20.856961124576628,20.04545469302684,19.78419024636969,19.84591090446338,19.875150011852384,19.634456377476454,19.97545883851126,20.11227154964581,20.737644284497947,20.256982734892517,20.36146046128124,21.095639888197184,21.532153183594346,22.388979266397655,22.12759803654626,21.207677784841508,21.578937634825706,21.510463423095644,21.888985494617373,22.432161014527082,23.125750209204853,22.98898075753823,23.474779401440173,24.332086534705013,24.82096303952858,24.919855777639896,25.596971505321562,25.132461370900273,24.746068054810166,24.658143282867968,24.791464819107205,24.788231583312154,23.825167743954808,23.231563871260732,23.06827156757936,23.318381928373128,23.73402703460306,24.36904358956963,23.42492769146338,23.4214315158315,22.951389002148062,23.77267246786505,24.03047646023333,24.63416061270982,24.75638539576903,24.045819249004126,23.560759427957237,23.34899919712916,23.24393810192123,23.149250510148704,23.213994359131902,23.74893607851118,23.313298366963863,24.183153844904155,24.291908563580364,23.715811755973846,24.349541634786874,23.361795961856842,23.145266896113753,23.515974884387106,23.58127082325518,22.968695203773677,23.59161402983591,22.595523988828063,22.269210883416235,22.726938664447516,23.557857577688992,22.606906882021576,22.938057916238904,22.729907852597535,22.47678028838709,21.511103773023933,21.887075609061867,21.426594235468656,22.394282503519207,22.809327873867005,23.659645668696612,24.508249402511865,24.127973857335746,23.86142809689045,24.57053157314658,25.504353031050414,25.556653988547623,26.448848471976817,26.988198356237262,27.40535786189139,27.06740158703178,27.693725157063454,27.178725566715002,27.704540621023625,28.098851992748678,27.72466611256823,27.719231280032545,28.161599727813154,27.888513871468604,27.96797470189631,28.81922526936978,28.414361802861094,27.828028299380094,27.566430820152164,26.610320219304413,26.644258791580796,26.96418978041038,26.52864511637017,25.957362004555762,25.82957000285387,25.810825719032437,26.21937884017825,26.64979678951204,27.209854979999363,27.25830057449639,26.988524731248617,26.370065896771848,25.63283638469875,25.29231934156269,25.1598453191109,24.81914253672585,24.411793416831642,24.95138172665611,25.902595340274274,26.754092269111425,26.267386362422258,26.784555964171886,26.113174241036177,25.805159212555736,25.039380468428135,24.078635392244905,24.942978776991367,24.293147978838533,25.164218653924763,24.543498096987605,24.134784133173525,24.076118679717183,23.10766591038555,22.509092573076487,22.329486082307994,21.65884208958596,20.69694578507915,20.858712350483984,19.989953487645835,20.898826458025724,20.24143989291042,19.50211518164724,19.672640099190176,18.874669363256544,18.628747515846044,18.47884673718363,17.613793014083058,17.226703533437103,17.00723562669009,16.609241978265345,17.52210157783702,17.32128298934549,17.840680160094053,16.984854033216834,17.597649125847965,18.191314205992967,17.251510348636657,16.314089545514435,16.89302557427436,17.48582957079634,18.29296253854409,18.948862539138645,19.780641320627183,20.66666540876031,19.789923143107444,20.158829922322184,20.221477329730988,20.737041666638106,19.934052384458482,20.174546256661415,20.906695106066763,20.268369318917394,20.43380068661645,20.801500430330634,21.5175117761828,21.646496256347746,21.28265925636515,20.484738988801837,20.60189853841439,20.704390010796487,21.50344070326537,21.355481864418834,22.248270016163588,21.671531381551176,21.917825921904296,21.217682025395334,21.2489706678316,21.095940065104514,20.90852465154603,21.366770871449262,21.378446851391345,22.102807336021215,22.126985320821404,22.29066158691421,22.686404406558722,22.436025437898934,22.0968563281931,23.062222231179476,23.339994315989316,23.174350191373378,24.089514875784516,23.971384269651026,23.250224316492677,23.526297707576305,23.314975589048117,22.7278907247819,22.022914132568985,21.38372222473845,20.93623217800632,21.00303486082703,21.441874471493065,21.321876380126923,20.43810355104506,20.808925421442837,21.351961015723646,20.537503376603127,20.70052079902962,20.770233968738467,20.16690652258694,20.17878249846399,19.604369365610182,19.238202973268926,19.36625248659402,18.76161005254835,18.96256270399317,19.375668180175126,20.16911195917055,20.614003926049918,20.574776460416615,19.67154081352055,20.6105964994058,20.51645424636081,19.598632257431746,18.840757028199732,18.813017481006682,19.22174768988043,19.59700293187052,19.323733816854656,19.239663706626743,18.991334044374526,18.84970800159499,19.174254635814577,18.7945087980479,18.464197200722992,17.713754438329488,17.85148791829124,17.74586108047515,18.031725470907986,18.604459709487855,17.606177900917828,16.968890404328704,16.443385392427444,17.285169376526028,16.343251783400774,16.28842740971595,16.496426600962877,16.06824795715511,16.005006956867874,15.462268201168627,16.1728263781406,15.261333449743688,14.740291589405388,14.226479375269264,14.330001255497336,13.921140428632498,13.47848768113181,13.66607522778213,12.666667365469038,12.14231407130137,12.278662717435509,12.002728036604822,11.224920001346618,10.263357481919229,10.719594184309244,9.898620498366654,9.75905949017033,9.161609489936382,9.374747258611023,9.620516661088914,9.948171977885067,10.026445067021996,9.497839170973748,10.470210424624383,10.16396116791293,10.781639334280044,10.075800568796694,10.476887989323586,9.501375764142722,8.960943165700883,8.471549179404974,8.829832668416202,9.570418023504317,9.234009517356753,10.199540916830301,9.535248426254839,9.32948539359495,9.276597262360156,9.585900974925607,9.839120562188327,10.648233379703015,11.633060939610004,12.477491504047066,12.191504074726254,12.159247352275997,11.274634298402816,11.49341838620603,11.291173170786351,11.396904971450567,12.034794849343598,11.678171864245087,11.010236508212984,11.980472950730473,11.258452069945633,11.662196603138,12.44431150984019,13.231448287609965,13.352119675371796,12.90191548736766,13.698966113850474,14.52064039092511,13.901569858659059,13.393735072109848,13.89378867764026,14.829820653889328,15.78441898105666,16.22347873216495,16.355350645724684,16.418095142114908,15.62421352090314,14.81809102371335,15.027602836955339,15.949574838858098,15.153829687274992,16.056830059736967,15.6159433494322,15.185155277140439,15.422339357901365,15.397251658607274,15.814233096782118,16.014370389282703,15.499734496232122,14.58890212001279,14.04950184095651,14.747680934146047,15.651291911490262,14.903261789120734,13.934407813940197,13.044558863155544,13.623760559596121,12.958596692420542,12.628563275095075,12.352013010997325,12.280820664949715,11.605875045061111,11.346264821477234,12.053022134583443,11.17220376804471,11.621630552224815,11.246571216732264,10.405629423446953,10.180619383696467,10.009183612186462,9.862819870468229,9.308723032474518,8.384436124004424,8.931687556672841,8.710397799033672,8.327916379552335,9.129419011063874,9.797870671376586,9.238112839870155,9.36402963846922,8.852652453817427,8.160832874011248,8.114214453846216,8.171246112789959,8.307155025657266,9.278745357412845,9.663919964805245,10.325271470472217,9.823668799363077,9.29775186534971,9.392582124564797,9.19623417686671,9.607079056557268,8.848571753595024,8.757457251194865,8.020506725646555,8.098856382071972,8.844603079371154,9.451836144085974,8.527174004819244,8.352320496924222,8.364898389670998,8.742178917396814,8.952376663684845,9.544515130110085,9.238519742619246,9.860694393515587,10.022840811870992,9.466024471912533,9.54745767172426,10.153147238306701,9.932632191106677,9.472109572030604,8.739137996453792,7.749883203301579,8.365620695985854,7.751570604275912,6.952506678644568,6.588217215612531,6.462204893119633,5.708844281733036,6.701585300732404,7.580279560294002,8.417206751182675,8.652949560899287,8.452920735348016,9.164020396769047,9.86742454348132,10.808975434862077,11.155108245555311,10.65088118892163,10.349356666672975,9.519893982913345,9.060198040213436,9.435016633477062,8.688882580026984,8.713421269785613,9.554165265057236,10.149178548250347,9.232560743112117,9.198524086736143,10.054184020962566,9.604417880997062,10.410270237363875,11.019713641144335,10.152214441914111,9.76782991271466,9.012036012019962,9.919919344596565,9.998142812401056,9.272863018792123,9.149105000309646,10.051786817144603,9.123918786644936,9.024198364466429,8.455317611806095,8.609279709402472,7.8489556312561035,7.321744301356375,7.103863619733602,7.988052680157125,7.805673353374004,7.994305908679962,7.257535206153989,6.598574396688491,5.874830241315067,5.784386563114822,4.828025476075709,4.122178771533072,4.593713308684528,4.767644818872213,4.4283930426463485,3.883810737170279,4.511648618616164,5.377351246774197,5.185655632056296,5.383022785652429,6.015829812269658,6.866965060587972,6.9955314407125115,6.050060912966728,6.190942122135311,6.393155622761697,5.692055799998343,4.839109384920448,4.354372906498611,3.7951271226629615,3.720888289157301,2.822232168633491,2.767847800627351,1.905988146085292,0.951318577863276,0.7687708642333746,-0.05597265483811498,-0.018171086441725492,0.40738297207280993,0.9778499025851488,0.5007763155736029,0.3561142007820308,1.0111010121181607,0.6465663076378405,0.5640320675447583,0.522311297710985,0.4066054429858923,0.4321619882248342,0.6615610932931304,0.6733037550002337,1.3016676725819707,2.045351690147072,2.2712043072097003,1.635432852897793,1.411421526223421,0.8872638284228742,1.7706925044767559,1.9206029446795583,1.7345577110536397,1.1833508564159274,1.710603775922209,1.8409190326929092,1.638547788374126,2.2247344427742064,1.889371242839843,1.9264339921064675,2.2522476464509964,2.798150138463825,2.572847807779908,3.4419745979830623,3.7407314251177013,3.5924721490591764,3.859045523684472,3.821820188779384,4.294603369664401,4.908966414630413,5.386669106315821,6.17928056884557,5.58828830672428,6.5153266112320125,6.193565714173019,6.9743773294612765,7.447369226254523,6.605394912883639,6.119347111787647,5.5702367620542645,4.663543928414583,4.9699400519020855,5.372001804411411,4.626774596516043,3.9343181243166327,4.392735826317221,4.148806921672076,3.484794281423092,2.549370476976037,2.733973534312099,2.8923291079699993,2.4836456049233675,3.0608881902880967,3.1576450914144516,2.381397989112884,2.284876602701843,1.3246588287875056,1.0326579581014812,0.4777076579630375,-0.4691571914590895,-1.2340590157546103,-1.792572501115501,-2.660714657045901,-3.224776142742485,-4.0583981280215085,-4.499585958197713,-3.700042176991701,-4.1727071008645,-4.197995983064175,-4.507765436545014,-4.512212481349707,-4.392221613321453,-5.33923717867583,-5.808201515581459,-6.730912742204964,-7.201662723906338,-6.414325417019427,-7.104022761806846,-7.583306106738746,-7.389833561144769,-8.032801572233438,-8.295879523735493,-7.522575182840228,-7.085388934239745,-6.499095742125064,-5.796202071011066,-5.60368455061689,-4.636390925850719,-4.986232561059296,-5.170894889626652,-5.658434402663261,-6.039107644464821,-5.676325619686395,-6.3173905038274825,-6.3306987644173205,-6.959997966885567,-6.631771879270673,-7.029079086147249,-6.725182912312448,-6.2640971527434886,-6.44934583036229,-7.190251647494733,-7.653847548179328,-6.660882302094251,-7.190898606553674,-6.717519193422049,-6.568476273212582,-6.496053786482662,-6.172383075580001,-5.443659987766296,-6.153072466142476,-6.765783214010298,-6.782396526541561,-6.320059877354652,-5.62580534350127,-6.61342062195763,-5.702759984880686,-4.968111703172326,-5.345298658590764,-5.083789807744324,-5.84853676520288,-5.149531187489629,-5.065853665117174,-4.987714064307511,-5.059612474404275,-4.171701037790626,-3.194417961873114,-2.647840177640319,-2.441169143188745,-1.827970629092306,-2.102529195137322,-3.0029621105641127,-3.6158276544883847,-3.4094168576411903,-4.033287039492279,-3.7233029641211033,-3.635920842643827,-4.309028124436736,-3.4158882168121636,-2.9452895927242935,-2.973129941150546,-3.739085730165243,-3.891120233107358,-2.9776317668147385,-2.4517646078020334,-2.287130814511329,-2.134621711447835,-2.1084024724550545,-2.9687780463136733,-3.0520381717942655,-3.5551740820519626,-3.750726764090359,-4.635557692497969,-5.155937513336539,-5.198233738541603,-4.216311349533498,-3.7387252682819963,-4.226211444474757,-3.236762666143477,-3.0386771224439144,-3.798555390909314,-4.442813507281244,-4.372377687133849,-5.148574225138873,-5.30606833845377,-5.724374446552247,-6.690476533956826,-7.65593978529796,-7.373499902430922,-7.812702709343284,-7.606646693311632,-7.245833779685199,-7.272958459332585,-7.6229682778939605,-7.252745248842984,-7.299920757301152,-7.865991435479373,-8.5451878355816,-8.606132314074785,-8.09209275059402,-7.839204313233495,-8.540366114582866,-8.526273206807673,-8.805448770988733,-9.460815195925534,-9.524138666689396,-9.39450061460957,-9.327648205216974,-9.847066684626043,-9.245381742715836,-10.186374092008919,-10.62114236317575,-10.354099855292588,-9.991604225710034,-9.799049453344196,-9.40535920439288,-10.250138846691698,-9.424113155342638,-9.754186339210719,-10.314102841541171,-9.440285510849208,-8.546377759426832,-8.511708438396454,-9.32841934915632,-8.722013650927693,-9.023324601817876,-8.64604334300384,-8.975915288552642,-7.983642728533596,-8.80806147493422,-9.284870603587478,-8.315732484217733,-9.084376403130591,-10.04515744233504,-10.582734730094671,-11.112326778005809,-10.61344305286184,-11.018730966374278,-10.485371236689389,-9.941146488301456,-10.552208469249308,-10.610206734854728,-10.41398982796818,-9.950438478495926,-9.009336041752249,-8.243091731332242,-8.316087800543755,-8.36385346017778,-8.520523351617157,-7.716675864066929,-8.41950863506645,-9.00730048166588,-9.482617074623704,-9.55278299562633,-9.252096098382026,-9.700436022598296,-9.942583164200187,-9.727797894738615,-9.584938744083047,-10.459098054096103,-10.891536652110517,-10.39826537668705,-10.951722586527467,-11.109529245644808,-10.837771551217884,-10.265088292304426,-9.997478330507874,-9.845822874922305,-10.288588664494455,-11.155743341892958,-12.003953275736421,-11.272847379092127,-11.781637526582927,-12.291074334643781,-12.668493432924151,-13.379011486656964,-12.677271866705269,-12.838396299630404,-11.843588332645595,-11.656572351232171,-11.45923075126484,-11.318225789349526,-11.158386056311429,-10.418111704289913,-9.505013677291572,-8.909637790173292,-8.242743077222258,-8.628153450787067,-9.229412378743291,-8.285735604353249,-8.555613601114601,-8.853779335971922,-8.46947632310912,-7.7925836546346545,-8.640016137156636,-8.495756453368813,-7.659671165049076,-8.105067835655063,-8.489823177456856,-9.00852479506284,-8.859442996792495,-8.153980916365981,-7.656601743772626,-8.180440216325223,-9.00228011328727,-8.416313064284623,-7.424670871347189,-7.719202215317637,-8.089050390291959,-9.00681849848479,-8.131617304868996,-7.991621817462146,-7.780254585668445,-7.388296301942319,-7.114206947386265,-6.192018270026892,-7.108264102600515,-6.181000547949225,-5.233915132004768,-4.717478041071445,-4.185913951136172,-3.970301296096295,-4.535308993887156,-3.6321641844697297,-2.6528874398209155,-2.246200026012957,-1.40070043457672,-1.8459668857976794,-1.2525236452929676,-2.03969781473279,-2.6314636496827006,-3.2968007470481098,-2.3847756977193058,-1.9106544880196452,-1.6827143914997578,-2.2763690664432943,-3.2756533375941217,-3.820630163885653,-3.7097967215813696,-3.6062806453555822,-3.9490309017710388,-4.26771978661418,-3.314929272979498,-4.156092754565179,-5.022912516724318,-5.135217423550785,-5.812831821851432,-5.315114778932184,-4.667908424977213,-4.90771114686504,-4.432702098041773,-4.969030775129795,-5.0457237414084375,-4.697127676568925,-5.670521384105086,-5.552468089386821,-5.703018083702773,-5.3032701392658055,-5.471746093593538,-5.65015996620059,-5.665131215006113,-6.322731664404273,-6.684594539925456,-7.069760005921125,-6.38405691832304,-6.405846478417516,-6.26921621337533,-5.569532771594822,-6.268347830977291,-7.167519272770733,-7.844133978243917,-8.195123434532434,-8.263439944945276,-8.727726294659078,-8.087372722569853,-8.6886962428689,-9.09630085201934,-8.545310968533158,-8.633187297731638,-8.393277323804796,-7.92853650636971,-7.280126043129712,-7.202742372639477,-7.567906423471868,-7.729636391159147,-7.069318172521889,-6.20538375293836,-6.600546077825129,-6.869237185455859,-7.486872544046491,-6.7733242264948785,-7.471641295589507,-7.145953370723873,-7.124705272261053,-6.870632409583777,-7.633913217578083,-7.985573313664645,-8.100240838248283,-8.236017419025302,-8.343892498407513,-7.7413499085232615,-7.923656144645065,-8.517364704050124,-8.859287156257778,-9.153332957997918,-8.546310612466186,-7.569614632520825,-8.110587758943439,-7.5702720996923745,-7.882597673684359,-8.276662453543395,-8.000423899386078,-7.435996714513749,-7.127333380281925,-7.5539313168264925,-7.244379279203713,-6.859637892339379,-5.909259228035808,-5.186657607555389,-6.089154999237508,-6.1778123043477535,-6.8507744474336505,-7.247980633750558,-6.694380289874971,-7.655427512247115,-7.026190887670964,-7.573550952132791,-7.675784206483513,-7.210115074645728,-7.846369034610689,-8.317465762142092,-8.021517700050026,-8.190460067242384,-8.772699557244778,-8.948136305436492,-9.563305639661849,-10.29094280069694,-10.496476435102522,-11.283264068420976,-10.478755895979702,-10.487181230913848,-11.024454367812723,-10.581862535793334,-11.141721698921174,-10.746056789066643,-9.832743447739631,-10.123940406832844,-10.881109023466706,-10.674613196402788,-10.518042712006718,-10.641806557774544,-10.436628660187125,-11.269992709625512,-12.169872175902128,-11.556433357764035,-11.19609520630911,-11.347969450056553,-10.916117145679891,-11.773847862612456,-11.271520282141864,-12.003723175730556,-12.55137481726706,-12.770805624779314,-12.437758586369455,-13.272205259650946,-12.548682484775782,-12.7556063644588,-13.342643823008984,-13.128671204205602,-13.658295744098723,-13.848418998531997,-13.44179330067709,-13.221579724922776,-14.160440321080387,-14.247741581872106,-14.501093461643904,-14.969721576664597,-15.938865516334772,-15.41971312277019,-14.775213138666004,-15.686755356378853,-15.944234191905707,-16.582391266711056,-17.143778385594487,-17.703683704137802,-18.00369536690414,-18.685503779910505,-19.437373757362366,-18.507120110094547,-18.123437849339098,-17.664964037481695,-17.926078212447464,-18.326932887081057,-17.90372240776196,-18.20816830219701,-19.045954645145684,-19.95674759056419,-19.81638396764174,-20.372786202467978,-19.78771268343553,-20.682883229106665,-21.31954646622762,-21.094272907357663,-21.375212610233575,-21.543896954506636,-21.809921814128757,-22.368335452396423,-21.37943911459297,-20.912229577545077,-20.887074319645762,-21.10272489162162,-21.20499118603766,-21.727226443123072,-21.6243601385504,-21.25603202637285,-20.283237472176552,-20.94265133002773,-21.60257956944406,-21.772592641413212,-22.030729840043932,-22.245057590771466,-21.879663427360356,-21.20588352298364,-20.830507247243077,-19.966756256762892,-19.5502015077509,-19.458721806295216,-19.044258414767683,-19.989508074708283,-19.196164253167808,-18.893535532988608,-17.90395297994837,-18.01300595048815,-17.055977989919484,-16.521677798591554,-16.77283427491784,-16.193795365281403,-16.320093822665513,-17.116554125677794,-16.58842638414353,-16.750378279015422,-16.077256369870156,-15.564827754627913,-15.08750176243484,-14.73098221840337,-13.87947074463591,-13.826022662222385,-13.350253797136247,-12.843947768677026,-13.619302056264132,-13.921630979515612,-13.9977046684362,-13.768673366867006,-13.133720974437892,-13.869481915142387,-13.435383551754057,-14.368663236498833,-14.72332174377516,-15.668673946056515,-15.05103362025693,-14.056168657261878,-14.081248887814581,-15.048195760231465,-14.097446262836456,-14.347114729695022,-14.114113921299577,-14.215430678799748,-15.041019070427865,-14.230215744115412,-14.25140513246879,-14.56414310541004,-14.056909640785307,-13.83725931448862,-13.141390070784837,-12.36207145312801,-12.942061104346067,-12.634797090198845,-13.333376741968095,-12.414266482461244,-13.10087561653927,-12.110702823847532,-11.288909402675927,-10.834002442192286,-9.886534477584064,-9.380839772056788,-10.073462696745992,-9.572161056566983,-8.947054060641676,-8.179962701629847,-8.883403263054788,-9.362445626873523,-9.436656290665269,-8.949889542069286,-9.691935688257217,-8.850049990229309,-8.544698152225465,-8.962504291906953,-8.302211607340723,-9.086189569439739,-9.42039592238143,-8.74366458132863,-8.536479523871094,-8.032633963041008,-8.73616485716775,-8.11561011010781,-7.95034574624151,-7.546838553156704,-7.878693293780088,-8.764882806688547,-9.004392048344016,-8.231053421739489,-8.272693644277751,-8.849025674629956,-8.710539293475449,-9.60007608262822,-8.913275233935565,-8.536177809350193,-7.9379397057928145,-8.586035718675703,-8.015199339482933,-7.629949660040438,-7.781650811433792,-8.577852599322796,-8.263470002450049,-8.987723106518388,-8.983824392315,-8.490677421912551,-9.310096827801317,-8.469028112012893,-9.252484055235982,-9.625977931544185,-8.854404712095857,-8.238669829908758,-9.014289904851466,-9.040842626709491,-8.382371105719358,-7.99370330106467,-8.916673535015434,-9.31000664504245,-8.987498661968857,-9.47383583849296,-9.954069976694882,-10.786476579029113,-10.19401410035789,-10.030132363084704,-10.10647229384631,-10.951328548137099,-11.511176984291524,-12.42478645266965,-13.233443604782224,-13.111132852267474,-12.905150348320603,-13.396514701191336,-13.76763583207503,-14.55838113091886,-15.115224256645888,-15.306333088316023,-15.531828257720917,-15.3197156265378,-15.22302713803947,-15.081818263512105,-14.239438259974122,-13.925147776026279,-14.406939344014972,-14.002994500100613,-13.876170470844954,-13.330944726709276,-12.835539132356644,-12.986351596657187,-12.205630894750357,-12.189554073382169,-11.791834543459117,-12.029746294952929,-12.19365712814033,-11.575541922356933,-12.49544764868915,-12.117114481516182,-11.910027408506721,-12.622202666476369,-13.496200068388134,-12.902778331656009,-12.007440608460456,-12.074487704318017,-11.480848520062864,-11.472816518042237,-10.675707431975752,-11.273349885363132,-10.593626670073718,-10.96242076670751,-11.296552494633943,-11.67491166293621,-10.820035842712969,-10.561670038383454,-9.695480996277183,-9.790163079742342,-9.92503538960591,-10.85344321699813,-10.484112316276878,-10.931550520472229,-10.783648661803454,-11.114199897274375,-10.330818366724998,-11.066343199461699,-11.058572540991008,-10.570411552209407,-9.855240329168737,-9.810243987478316,-9.83627384295687,-10.253520442172885,-10.354875779245049,-9.55757969012484,-10.490484967827797,-10.175214203074574,-10.70902429940179,-10.785680305212736,-9.850924527738243,-9.907241759356111,-9.342021851800382,-8.489625969901681,-8.966036033350974,-9.476545418612659,-9.60130634624511,-9.689719857648015,-10.23183974251151,-10.016175874508917,-10.944933622144163,-11.343333105556667,-11.344885234721005,-11.5816066339612,-10.767382690683007,-11.270149329211563,-11.396947882603854,-11.600404176395386,-11.220226800534874,-10.76242505852133,-11.03774848068133,-11.664800365455449,-11.377126778941602,-11.085341393947601,-10.541656415443867,-9.920561251230538,-9.655281403567642,-9.999432573560625,-10.271970404312015,-9.501601276919246,-10.076953244861215,-10.692989110946655,-11.552564226090908,-10.893607588484883,-10.043376912828535,-10.503939479123801,-10.010608180426061,-9.066338570322841,-8.23542909976095,-8.480045578442514,-8.255443609319627,-9.143793620169163,-8.894877382554114,-7.970793251879513,-8.15438320953399,-9.020409161690623,-8.635612830054015,-9.117241698782891,-8.678349141031504,-8.093513863626868,-9.057560314889997,-8.683055536821485,-8.021040317136794,-8.358967937529087,-7.61404568515718,-8.00648739002645,-8.769567207898945,-8.948398353531957,-8.947372377384454,-8.750347725115716,-8.25058522168547,-7.841679900418967,-7.454217063263059,-7.107053108513355,-7.766092533711344,-7.199271679390222,-7.378546596970409,-6.976054267957807,-6.020032596774399,-6.070716009940952,-5.379262152593583,-5.520164653193206,-5.190775252413005,-4.842798243742436,-4.91944689815864,-3.9923070408403873,-3.2571934829466045,-3.0800057644955814,-3.313627351075411,-3.4675623578950763,-4.163042581640184,-3.5039325561374426,-3.5321255712769926,-4.514460287522525,-4.778319636825472,-4.7885498576797545,-3.81886021560058,-4.221734745893627,-4.902812022250146,-4.642914351075888,-4.714299921412021,-3.8708142857067287,-3.426753391046077,-4.287967789452523,-4.417177059687674,-4.626725871581584,-5.039002844132483,-5.248016520868987,-5.546028944198042,-5.431796916294843,-5.357557559851557,-6.058661685790867,-5.357255097012967,-6.267434054985642,-5.404618375003338,-4.430052514653653,-4.156394885852933,-5.097374225966632,-4.659265886992216,-3.836132489144802,-3.0667847129516304,-2.338010719511658,-1.735335393808782,-1.0513074845075607,-1.2282805843278766,-0.8020205348730087,-1.5410032528452575,-0.6353251440450549,-1.4281660253182054,-1.7930029295384884,-0.9218450118787587,-1.5183119745925069,-1.8484749919734895,-1.757738537620753,-1.434094964992255,-0.8611275092698634,0.06035534618422389,0.9244031831622124,1.5624581277370453,1.8011664068326354,2.7364661851897836,2.831152687780559,1.9438535822555423,2.8425410855561495,2.9098664270713925,2.036501858383417,2.614091039635241,2.0085889282636344,2.5096124703995883,2.604586145374924,2.0942581319250166,3.040382261388004,3.2377282325178385,2.741487347520888,3.740632448811084,3.6628175787627697,3.6425322415307164,4.015235600061715,3.0233031078241765,3.4773763292469084,2.96613623900339,3.4826705856248736,3.62300120620057,3.6520252930931747,4.44308907026425,4.7486925991252065,5.333662210963666,5.006649204529822,5.578789115417749,5.35555763123557,5.39185736188665,6.243333059828728,6.379776548594236,7.379625814501196,6.583963424433023,5.781190812122077,5.135812945663929,4.2108505023643374,3.460880604106933,3.687867021653801,4.606090788263828,3.7435401999391615,3.5665879785083234,2.743634285405278,1.8329658131115139,2.304374273866415,1.405850742943585,0.7879291544668376,1.1462271246127784,0.2856009313836694,0.4633309771306813,1.3285732343792915,1.236298680305481,1.1397827854380012,1.1916751507669687,0.21949154697358608,0.03319460153579712,-0.8686249838210642,-1.3311037784442306,-0.8936618310399354,-0.15633341064676642,-1.0641263257712126,-2.009466585703194,-2.6971844416111708,-2.557171235792339,-2.469674250576645,-3.3672461337409914,-3.3499465379863977,-3.9638603306375444,-4.345502832438797,-3.5337340445257723,-2.663838861975819,-1.8893053270876408,-1.0261844107881188,-1.462943710386753,-1.462359584402293,-2.1131014116108418,-1.2761269863694906,-2.015940169338137,-1.2101117921993136,-0.5282778353430331,0.003149016760289669,-0.27930480148643255,-0.5751411663368344,-0.01040182774886489,0.1489015663973987,-0.4053775523789227,0.1304182899184525,-0.0924966293387115,-0.5268539069220424,0.143671166151762,0.8857848150655627,0.82553442241624,0.01897262642160058,0.5638152519240975,0.14218415413051844,0.831275892443955,1.266862596385181,0.739822500385344,-0.02869456820189953,-0.8524808301590383,-0.31535134371370077,-0.7391067650169134,-1.4968351740390062,-0.8204967435449362,-0.2873030654154718,-0.2199697121977806,-0.42596391402184963,-0.8952724966220558,-1.6219847649335861,-2.5377387632615864,-3.0044943196699023,-2.164306408725679,-3.160527619533241,-2.2697750092484057,-3.1205808366648853,-3.381143726874143,-3.36199933802709,-2.4561198940500617,-2.6768133649602532,-2.2019183984957635,-2.485631010029465,-2.0080550243146718,-1.3601850429549813,-1.9576140511780977,-2.4423896241933107,-1.7740940428338945,-1.391020584385842,-1.4512192155234516,-0.5319323888979852,-0.748584680724889,-0.9393148650415242,-0.33550083450973034,0.23394684959203005,-0.3342057513073087,-0.1287781186401844,-0.10021933214738965,-0.4862472377717495,-0.6193079357035458,-0.5873642978258431,-0.18889493541792035,-0.4230027562007308,0.0975379147566855,0.90025689965114,1.490611388348043,1.6047837221994996,2.4994216319173574,2.7816427438519895,3.528884051833302,4.4318758505396545,4.114556056447327,3.334556881338358,2.7040844447910786,3.332660492975265,3.5406987462192774,3.4134395220316947,3.0595857482403517,3.8146565561182797,3.838483407627791,3.9789554681628942,3.5771891959011555,4.549609343986958,3.892827444244176,3.1587570011615753,2.1900008069351315,1.3571911924518645,2.1044962611049414,1.513901777099818,1.4375201119109988,1.581759445834905,1.4617289174348116,1.2612941567786038,1.6155986096709967,2.494289420545101,1.7681444371119142,1.4643517397344112,2.229850026778877,2.584800744894892,3.5133820376358926,3.0858757528476417,2.5168850966729224,2.995058645028621,2.863589390181005,3.825396205764264,3.9204108910635114,3.136694378685206,2.2744493228383362,2.146077079232782,2.1655587390996516,1.1690447200089693,2.066874213051051,2.4126541167497635,3.0677158627659082,2.113362211268395,2.274696775712073,3.25577747868374,3.403677027672529,3.37504699267447,4.044915818609297,4.145658232271671,3.580525546800345,2.7757396893575788,3.324062175117433,2.842185821849853,2.527163745369762,1.639546976890415,0.6885926001705229,-0.051987842191010714,-1.0044576791115105,-0.6713256407529116,0.06944876816123724,0.8479849984869361,0.9179378263652325,1.2966543626971543,1.3650343394838274,0.6840495429933071,0.4574751886539161,1.0311979898251593,0.15272990614175797,0.22622873447835445,-0.5015580151230097,-0.4766951873898506,-1.4587925495579839,-1.3986069508828223,-1.7037978824228048,-1.2951270481571555,-2.2818407346494496,-1.8859616937115788,-2.724137372802943,-3.043007764033973,-2.6041752053424716,-2.845546883530915,-3.2161246151663363,-2.5941456989385188,-3.1905752001330256,-3.2132588885724545,-3.6397618176415563,-2.9470763374119997,-3.7598597179166973,-4.619561475235969,-4.203598423860967,-4.485120025463402,-5.0592974331229925,-5.4894063379615545,-6.478609067387879,-5.740661965217441,-5.587335941847414,-5.837833032477647,-6.042414882685989,-5.473308274988085,-5.656035816296935,-5.115488260053098,-6.059184141922742,-6.423144931904972,-5.437974879518151,-5.555760821793228,-5.213830754626542,-5.003916499670595,-5.585188531316817,-6.071161180734634,-5.586681884713471,-4.754277259111404,-4.635607364587486,-5.062798660714179,-5.894815701059997,-5.323151431512088,-5.000278859399259,-4.291045380290598,-3.619325607083738,-3.7542456220835447,-3.600372049957514,-4.352142869029194,-4.94266833178699,-5.49123056512326,-5.257244428619742,-5.671359458006918,-4.946306139696389,-4.318635079078376,-5.260620423126966,-4.992685134056956,-4.89495844533667,-5.551878246013075,-5.943377188872546,-5.821929864119738,-5.008363523054868,-4.23967379424721,-4.527864569332451,-4.476744866929948,-4.678231060039252,-4.162542240694165,-4.273212760221213,-4.307515895459801,-4.953328973148018,-5.1195361712016165,-5.681510147172958,-6.3419624818488955,-5.773959159385413,-6.025533412117511,-5.759175977203995,-6.757275864947587,-5.921251719817519,-5.684009241871536,-5.820663622114807,-5.54210339859128,-5.220872919540852,-4.717462792526931,-4.586341520305723,-5.326840374153107,-4.91224664170295,-5.0847048596479,-5.707750905305147,-4.833298413082957,-4.104765590280294,-4.983867898583412,-4.642145618796349,-4.766213072929531,-5.671669246163219,-4.77420550538227,-4.655029591172934,-3.8481511711142957,-3.6110638505779207,-3.820928453002125,-3.973146317061037,-3.814236826263368,-3.641236085444689,-3.5461745215579867,-3.981833078432828,-3.3854182991199195,-3.2870750073343515,-2.3716222872026265,-1.3827021606266499,-2.1285410402342677,-1.7418167684227228,-2.28803108073771,-1.3258307464420795,-0.7266890122555196,-0.9163805902935565,-0.9757566791959107,-1.4564506970345974,-1.2225219262763858,-0.6864018687047064,0.21406611520797014,0.3849409152753651,0.1824412285350263,0.2814031043089926,0.08512972854077816,0.8689459734596312,1.1901808539405465,1.9915178632363677,2.0170273231342435,2.0059624360874295,2.627185942605138,2.752539510373026,3.317848985083401,4.251479858066887,4.541871923021972,4.521767599973828,3.588960728608072,3.8146389927715063,3.6297348490916193,4.436261050868779,4.074816757813096,3.6008843136951327,2.9609195133671165,3.7039685267955065,4.194482618942857,3.735677494201809,3.8515595803037286,4.287570257671177,4.47256968729198,3.657993302680552,4.521583576221019,5.113306441344321,4.950854057446122,4.902309978846461,4.232083125039935,3.680510359816253,4.627151576336473,4.550434987060726,3.635813999455422,4.391749858856201,4.925038679037243,5.6527327401563525,4.65630376432091,5.027635112870485,5.512436052784324,4.766011929139495,4.842181833460927,5.544523972086608,5.24896700726822,4.710411737207323,4.790379079990089,4.400342317763716,3.5002721566706896,3.54575603781268,2.6197757171466947,1.6956274136900902,1.4207773027010262,0.5016452525742352,0.5830516000278294,0.0005820165388286114,-0.35233947448432446,-1.1797854723408818,-1.1131047648377717,-0.46896675135940313,-0.9946375945582986,-0.9361665979959071,-0.4839386618696153,-0.5819799224846065,-0.8370565930381417,-1.39904682058841,-2.1862467397004366,-1.8432773826643825,-1.6619536047801375,-1.1156703252345324,-1.5404247818514705,-1.9669825755991042,-2.8061842657625675,-3.366582772228867,-3.1600929885171354,-3.114530571270734,-3.4521052511408925,-2.857945226598531,-1.924286031164229,-2.3058574344031513,-2.090763120446354,-1.7346897283568978,-0.9920803946442902,-1.564532415010035,-2.176241580862552,-2.912655539344996,-2.068889963440597,-2.1133675831370056,-3.035498038865626,-3.9587234472855926,-4.58705527568236,-5.26078292215243,-5.386237382423133,-4.496448064222932,-4.523429094348103,-4.14579886617139,-4.712460531853139,-4.026489173062146,-3.2652349239215255,-4.126334562897682,-4.416345002129674,-4.724053862504661,-4.443286606110632,-4.034644838888198,-3.8030570475384593,-4.1121552819386125,-3.922406090889126,-4.352561690844595,-5.024590194225311,-4.343112638685852,-4.442232432775199,-4.905843503307551,-4.988821410108358,-4.087769226636738,-4.28582510817796,-3.92093020118773,-2.9741103500127792,-1.9989609038457274,-2.098031480330974,-1.4543790756724775,-2.105774671304971,-2.4759408091194928,-2.371984962373972,-3.0400733537971973,-2.294542282819748,-1.539861598983407,-1.5015218541957438,-2.2356991292908788,-2.9552896306850016,-3.0280123353004456,-3.897300884127617,-3.4063517092727125,-3.527681048028171,-3.1599672874435782,-2.8311543641611934,-3.7753695310093462,-3.0186205743812025,-3.4097370957024395,-2.77033878210932,-1.983602138236165,-2.2289566206745803,-2.2765082283876836,-2.3560839239507914,-1.9323383569717407,-2.8660998209379613,-2.1057024179026484,-1.313327046111226,-2.190760474652052,-2.4513417747803032,-1.8198701553046703,-2.094422124326229,-1.8975537600927055,-0.9369117487221956,-0.7955749351531267,-0.7280666260048747,-0.35969047574326396,-0.7552878446877003,-1.4638529550284147,-0.544497452210635,0.2839091424830258,-0.4413618417456746,-0.9427543045021594,-1.653831274714321,-1.253998507745564,-0.58543686196208,-1.2449755882844329,-1.496778023429215,-1.686811841558665,-1.361241179984063,-0.5568857877515256,-0.2199846156872809,-0.045403786934912205,0.7497411430813372,1.6699493932537735,1.3772815172560513,1.1523269060999155,0.5186807154677808,0.645561988465488,0.5728505058214068,1.2696193028241396,0.9119371082633734,1.5526113673113286,0.7852354291826487,-0.13780159363523126,-1.1278287800960243,-1.7869931049644947,-2.749403368216008,-3.2971191946417093,-2.4829427367076278,-1.7801431026309729,-0.806102461181581,-0.3163520712405443,0.6381171680986881,0.001096102874726057,0.9634021800011396,0.4075482948683202,-0.4847732447087765,0.26748388912528753,-0.45500011229887605,0.283820484764874,1.2061781301163137,0.3916453900747001,0.30950877815485,0.40679912315681577,-0.4961209543980658,-0.8580248998478055,-0.692226265091449,-1.601916573010385,-1.6210065721534193,-0.8776312074624002,-0.8808810184709728,-0.8018059623427689,-0.4679248803295195,-0.5111566470004618,-0.6858134581707418,-0.40311249950900674,-0.8121796604245901,-1.511795253958553,-0.7936903485096991,-0.38876890763640404,-1.2574103842489421,-1.067714000120759,-1.4704294358380139,-0.5447361771948636,-0.1685061575844884,0.4793046312406659,0.9766558199189603,0.2882404066622257,0.2642584550194442,-0.7178688524290919,-1.6814722679555416,-1.3329842379316688,-2.2638184861280024,-2.9318027212284505,-2.7115673143416643,-1.8832057202234864,-2.335912100505084,-2.784099232405424,-1.8430819362401962,-1.015772441867739,-1.5840297495014966,-0.680491236038506,-0.8394724330864847,-1.7341184108518064,-0.7682715593837202,0.05038270680233836,0.050843847915530205,1.0162660381756723,0.8117248779162765,1.3989311303012073,1.4668984222225845,1.5023271422833204,1.1887090159580112,1.2386397030204535,1.4075513225980103,2.068799527361989,2.193304586224258,2.9106418024748564,3.8819430475123227,4.715425083879381,5.676118660718203,5.887177089229226,6.57446217816323,6.504151080735028,5.70547162508592,5.84853383526206,5.958805734291673,5.911318474914879,5.941041269339621,5.156494266819209,6.03381603397429,5.744148975703865,4.758355917409062,4.059059384744614,3.396471747662872,3.076315564569086,2.4371085870079696,3.3549789506942034,2.4451426342129707,1.4545372687280178,1.3163630282506347,0.39536515763029456,0.004288140218704939,-0.05649419641122222,0.12543637119233608,-0.6581986718811095,-0.5867904662154615,0.1850310591980815,-0.46711066644638777,0.5206612474285066,1.1825019102543592,1.7658194852992892,2.363775117788464,2.891172517556697,2.384684328455478,2.5890968558378518,2.8230496188625693,2.827373936306685,3.423682653810829,2.509571112226695,2.4914807570166886,2.7946112491190434,3.5260257748886943,3.0039960420690477,3.0957364891655743,4.06117148231715,4.840421269182116,4.230698171071708,4.716400481760502,5.1570487739518285,5.118952525779605,5.543030386324972,5.187317017000169,5.019996060989797,5.844320243224502,6.653675404842943,6.2735796556808054,5.572481513954699,5.2933426313102245,4.704851961694658,5.359459946397692,5.640042023733258,4.934799818787724,4.767920457758009,5.423003797419369,4.674958371091634,4.727168365381658,4.979843037202954,4.737871143966913,4.607888387981802,4.594059063587338,4.321104274597019,4.196016005706042,4.950665543787181,5.427473782096058,5.606730628293008,6.410464454907924,6.857727249152958,6.180344432592392,5.545465778559446,4.734973998740315,4.193369253538549,4.478160498663783,4.391557656694204,4.873095031827688,5.605050171259791,5.204382935538888,4.521547752432525,5.0190102476626635,4.1153307650238276,3.4889235314913094,4.258414447307587,4.996596555691212,4.193857759237289,3.8075438868254423,2.874233392532915,2.7920234529301524,3.192251719534397,3.6139675099402666,3.696503805462271,3.6633896119892597,3.9301096629351377,4.634569156449288,3.7866950863972306,3.4154081740416586,3.7668549972586334,3.8600570894777775,4.7204327108338475,4.036276087164879,3.69773359503597,3.9439354352653027,3.9693813221529126,3.8297741529531777,4.507926390971988,4.39897061791271,3.8279883596114814,3.6872591669671237,3.085693597327918,3.764079954009503,3.4597110021859407,2.8238889165222645,2.607004432938993,3.003839672077447,2.2910365955904126,2.3950434937141836,1.868495725095272,1.0292885275557637,1.2902997848577797,1.4567821975797415,2.306090455967933,2.037130934651941,1.7026303666643798,2.501516885124147,2.5394243472255766,3.528239283710718,4.087832082528621,4.932144403457642,4.97176298359409,5.293954188004136,5.1197983380407095,5.354810398537666,5.962260628119111,5.646475068759173,6.569496567361057,6.24426645366475,6.499876814894378,6.1709556095302105,5.670797863509506,6.3782669603824615,7.212688723113388,6.3537854687310755,5.507970194332302,4.898105381987989,4.456803575158119,4.96519242413342,5.215154450852424,4.790114675182849,4.6607821099460125,4.27010974753648,3.9235963905230165,4.489126220811158,4.376211973372847,4.59103186102584,4.253594073466957,4.429520782548934,3.700799051206559,2.775314171332866,3.439711662940681,4.203231310006231,4.61270592873916,3.649351182859391,4.140794376377016,4.2523619956336915,5.143547384999692,4.930869609583169,4.870174521114677,4.634601271245629,5.623918740544468,6.598732692655176,6.4597830446437,5.687346644233912,6.246192879509181,5.504453327506781,4.5266828765161335,5.038404553197324,5.8630643505603075,6.137572600506246,6.680216461420059,6.659143263474107,6.128425680100918,6.12188301468268,6.656740284524858,7.270666807889938,7.376994451973587,7.821489086840302,8.40825928421691,7.699140257202089,8.010871142614633,7.514510074164718,7.435579300392419,7.4621667130850255,6.913513638544828,7.523869168944657,6.769446634221822,6.345542695838958,5.808864193968475,5.1903821541927755,5.9495888547971845,5.405022490303963,4.487232874147594,3.7917548045516014,4.45272225420922,5.059049181174487,5.331088814884424,5.292616195045412,5.616509384009987,4.877378772944212,4.471491886302829,5.318219151813537,5.231129332911223,4.627156016416848,4.522554456721991,4.4567740727216005,4.7279422376304865,5.361575503833592,4.8665357935242355,4.259727766737342,4.185217498335987,3.7167788790538907,4.467845901846886,3.9719559056684375,4.129236810375005,3.4007093710824847,2.508320242166519,2.643530915491283,3.3861037576571107,3.7520535346120596,4.216027055401355,3.872908564750105,4.366316323168576,3.8560056686401367,4.526401101611555,3.5364020969718695,3.6379502252675593,3.974837667774409,4.763709676451981,5.098974006250501,4.743991945870221,5.103326463140547,4.267003782093525,5.068350443616509,5.954639493953437,6.313834170810878,6.891974741127342,6.014837664552033,6.5525539624504745,6.287543462589383,5.767565168906003,4.901786545757204,4.614318805281073,4.616389614064246,4.757975288666785,4.524541158229113,3.5656324014998972,3.220836813095957,2.423777151387185,2.4196061212569475,2.0055978409945965,2.2276157164014876,2.0723134139552712,2.0823550280183554,1.908655432984233,2.3002420431002975,2.8885621926747262,2.9941611364483833,2.88201450323686,3.6886065476574004,3.9879041337408125,4.381656003650278,4.63229063199833,4.663964387960732,5.44032723037526,4.876887930557132,5.753263632301241,6.09489633096382,6.8094901936128736,7.176648120395839,6.207588166929781,7.189369793515652,7.096565794665366,6.899052819702774,7.487364223692566,7.46776627888903,7.084401493892074,7.544078920502216,7.137711996212602,7.706851178780198,6.898393826093525,6.171354930847883,7.060850543435663,6.923741838429123,6.744151414372027,7.503437988460064,8.124050964135677,8.444073427468538,8.20940967882052,7.813445354346186,6.924714405555278,7.100504862610251,7.83686073217541,6.9702451271004975,6.456641138531268,6.183021140750498,6.142556860111654,7.1017011110670865,6.652874819468707,6.378686336800456,5.504556861240417,6.382898801006377,6.462941230274737,7.143017395865172,7.146102668251842,6.365677981637418,6.277039624750614,5.911910809576511,5.192841169424355,5.452376528643072,5.801390097476542,6.0515085575170815,6.5312007665634155,6.800782216247171,7.139513856265694,6.665773892309517,5.6732603665441275,6.15650838939473,6.030154570471495,5.4445743365213275,4.889152098447084,5.831946660298854,5.167112404014915,5.99403929989785,6.51052356697619,5.928303735330701,6.096749196760356,6.865909238345921,7.319249240215868,7.7620640262030065,7.38823378412053,7.266547684092075,7.882114086765796,7.644742422737181,7.30939712934196,6.872072116937488,6.547634243499488,5.853193710092455,5.125610831659287,4.655459429137409,4.581874557770789,4.791502682026476,4.991280627902597,4.322500232607126,4.463866130914539,4.2194191929884255,4.116768304258585,4.203835983294994,4.62157059693709,4.921928783878684,5.734322244301438,5.9546622624620795,5.3882882609032094,5.008521359413862,4.115592984482646,4.103618150576949,4.803966759238392,5.33618802530691,5.673571508843452,6.399643338285387,5.512403741944581,4.74796392954886,3.75039628893137,3.998696875292808,3.6013494515791535,3.3894591187126935,2.5991907701827586,2.7664723210036755,1.9598325556144118,2.943440483417362,2.3036946547217667,1.670484445989132,1.4171155011281371,1.8529598447494209,1.5045350808650255,1.2279580840840936,0.2737089488655329,0.019331421703100204,0.24413990648463368,0.5539318937808275,0.7788126962259412,0.7935145883820951,-0.005544584710150957,-0.04023784166201949,-1.007497455459088,-1.2104837046936154,-0.2649257378652692,0.6149758151732385,1.471574633847922,0.5349619393236935,-0.15831421362236142,-1.1539087570272386,-1.764471204020083,-2.0681825624778867,-2.0373262632638216,-2.800214860588312,-2.4891920615918934,-2.642843881621957,-1.7683354103937745,-0.9772455282509327,-1.478196288459003,-0.7353647639974952,-0.08897797763347626,-0.5919255097396672,-0.49463054817169905,0.035756425466388464,-0.6778645822778344,-0.26204809453338385,-0.8857919760048389,-1.6884637055918574,-1.9910541116259992,-1.1284066098742187,-1.38936323300004,-1.4010036000981927,-1.7873822078108788,-0.8086385866627097,-0.8567038695327938,-1.7171573173254728,-0.7513584811240435,-1.3621487529017031,-1.9396273931488395,-2.0396993872709572,-1.9244768708012998,-1.04160102782771,-1.17493850691244,-1.635253175161779,-1.0279492372646928,-1.316230338998139,-1.440392019227147,-0.9145720927044749,-0.9703991287387908,-0.949112684931606,-1.5867690634913743,-2.29538951581344,-3.283329151570797,-3.784524889662862,-3.251298689749092,-3.551563778426498,-3.513322439044714,-2.556337108835578,-2.511172752827406,-2.1463132183998823,-1.4668565201573074,-0.5906954575330019,-0.35682314867153764,-0.8777273967862129,-1.2857247800566256,-0.35383091773837805,0.5447316714562476,0.7846534885466099,0.012536412570625544,0.28525305027142167,0.6479357099160552,0.17651010304689407,-0.16232933942228556,-0.9458692339248955,-1.664263237733394,-1.1072674845345318,-1.106705970596522,-1.9955811612308025,-1.6998857273720205,-1.4095861865207553,-2.197167618665844,-1.8993869558908045,-1.0923983128741384,-0.2833888968452811,-0.9902179567143321,-1.9016487505286932,-2.172523867338896,-1.3847424243576825,-0.4460208425298333,0.27091816952452064,1.0936578316614032,2.067164279986173,2.5062570748850703,2.8902506371960044,2.8157332320697606,3.4754676073789597,3.2105115363374352,3.1988235344178975,2.558157723862678,1.8734542517922819,1.0231462209485471,1.1740460461005569,1.6887371772900224,0.8972756383009255,0.07530374685302377,-0.7681573829613626,-0.20503601105883718,-0.8718930054455996,-0.9297289932146668,-1.150856067892164,-0.4608888225629926,-0.738692841026932,0.07197640091180801,0.43284880463033915,-0.5213425518013537,-0.9948710869066417,-1.5739720524288714,-2.1476548933424056,-2.1637824256904423,-2.330157635267824,-2.9537198608741164,-3.1555333705618978,-3.549675553571433,-4.244566478766501,-4.323071285150945,-4.994455319363624,-5.894254579208791,-6.256246915552765,-6.7078147935681045,-6.514658118598163,-6.31940653687343,-5.398098197765648,-5.501311860047281,-4.959468245040625,-4.8357512932270765,-5.036614779848605,-6.00190008059144,-6.1881810002960265,-6.727504388894886,-7.702736969571561,-8.149749122094363,-9.139097708277404,-9.82298512244597,-9.703285936266184,-9.701411071699113,-9.25777284335345,-8.511319572571665,-9.286719772033393,-8.757151396479458,-8.95406805165112,-9.59610041230917,-9.577522868756205,-8.606284084264189,-9.42875844007358,-9.604311036877334,-10.459347469732165,-10.063144291751087,-9.53133669309318,-8.594253455288708,-8.176538513507694,-8.490831294097006,-9.341980135068297,-8.646727573126554,-7.753792485687882,-8.259896688628942,-7.358787904493511,-6.845838629640639,-6.982815355528146,-6.117325764615089,-7.0261221076361835,-6.0682973503135145,-6.485688053071499,-6.489931415300816,-6.154959703795612,-6.394121986813843,-5.907619719393551,-6.379936826881021,-6.185482288710773,-6.622101867105812,-6.162489155773073,-5.890847988426685,-6.811008055694401,-7.0394779443740845,-7.356334066949785,-7.53953543305397,-8.375649495050311,-8.075285679660738,-7.940322736743838,-7.171449835412204,-7.643645642325282,-8.528371782973409,-7.906002386473119,-7.3657050197944045,-6.999393853824586,-6.7381197870709,-7.6688586082309484,-7.811897537205368,-8.583719493821263,-8.21632894454524,-8.833764335606247,-7.967890555039048,-8.19982102746144,-7.528779125772417,-8.204394683707505,-8.054477270692587,-7.61328847007826,-6.955762434285134,-6.3544289213605225,-5.72707741940394,-4.877088766545057,-4.124875817913562,-4.833727365825325,-5.431560558732599,-5.786172824911773,-5.905347093939781,-6.77734203543514,-7.22390965372324,-7.45882028574124,-7.160240032710135,-6.5891008586622775,-7.278435001615435,-7.915007520467043,-8.27736035361886,-8.557182924821973,-8.362410524860024,-8.779741516336799,-8.042771229054779,-7.517690441571176,-8.274724250659347,-8.795941015705466,-9.363448658958077,-9.822640585247427,-9.834681315813214,-10.272429797332734,-10.62792596500367,-11.200957706198096,-10.453840672038496,-9.82222706405446,-10.435848025605083,-10.743865515105426,-10.536595613695681,-10.603015160188079,-11.29648322518915,-10.62080578878522,-10.748699795920402,-10.59848888264969,-9.862200378905982,-10.28337877849117,-9.881729258224368,-9.827673529274762,-8.876470015384257,-8.31356674991548,-8.388100309297442,-8.379406745079905,-8.562329563312232,-8.957170272711664,-8.557053648866713,-9.447406363673508,-9.835809050127864,-9.936967125162482,-9.353226548526436,-9.178888839203864,-8.617477086838335,-9.018866250291467,-9.357632640749216,-8.40849381312728,-7.7941078674048185,-8.11432014266029,-8.891254233196378,-9.529145968146622,-10.0890280646272,-10.939235059544444,-11.431002365425229,-11.873140088748187,-11.829578147735447,-11.015434662345797,-11.816838650032878,-12.07247877959162,-12.074841676279902,-12.969860909506679,-13.074432401917875,-13.964679626747966,-13.487747156061232,-13.368470986373723,-14.03175813658163,-14.538090088404715,-13.953803595621139,-14.697479990310967,-14.708753764163703,-13.983413740526885,-13.350140616297722,-13.534959880635142,-13.347761952783912,-13.232209634967148,-13.916162579786032,-14.636674409732223,-13.928197369445115,-14.122761626727879,-14.50480486964807,-14.200035380665213,-14.059470440261066,-14.36267959466204,-13.866572740487754,-14.74861284531653,-15.716945966240019,-15.36707916855812,-16.20822451915592,-16.70271016471088,-16.91959016630426,-17.033182244747877,-17.585060384124517,-18.02280784584582,-18.07540832599625,-17.676116727292538,-18.24059623433277,-18.412752142176032,-19.3872476532124,-19.3914313307032,-19.645434092264622,-19.720675725955516,-20.11507254326716,-21.031674201134592,-21.257685663178563,-20.5376351242885,-20.528184074908495,-21.49006149964407,-22.132153866812587,-22.042226003017277,-21.550263952929527,-21.121590397320688,-21.066001016646624,-21.931945839896798,-22.663464905228466,-23.071989957243204,-23.534513557329774,-24.08285136288032,-23.088020019233227,-23.52167499344796,-22.662862434983253,-21.930534433573484,-21.556637679692358,-21.99919874034822,-21.68468662770465,-21.04002639884129,-22.011197668500245,-21.577639766968787,-21.408814251422882,-20.43724710540846,-20.252177600748837,-19.459121223539114,-19.34689269727096,-19.125203368254006,-18.276337425690144,-18.151887231506407,-18.672269702423364,-18.36505457572639,-18.05786778125912,-18.35538480291143,-17.826099422294647,-17.857427851762623,-18.2145130247809,-18.098671331536025,-18.720899036619812,-18.952443730086088,-18.02952493634075,-18.82655499270186,-17.896163113880903,-17.12443266157061,-17.177040165755898,-16.98019828973338,-17.519571410492063,-18.374467870686203,-18.441205635666847,-18.89862514846027,-18.027452868875116,-17.693852397147566,-18.0943896449171,-19.0719357249327,-18.07209425466135,-17.36096807057038,-16.878417593427002,-16.834689414594322,-16.354062512982637,-16.244942187797278,-17.230550681706518,-16.795502203051,-17.237552502192557,-16.379521993920207,-17.133189947344363,-17.293186975177377,-17.22912624012679,-16.620129405520856,-17.605274066329002,-18.198633222375065,-19.147552424576133,-18.15559179428965,-18.024348485283554,-18.376854025758803,-17.40645700553432,-17.789301679935306,-18.291669528000057,-18.039315327536315,-17.155923064798117,-16.30403480352834,-16.789344350341707,-16.759755444712937,-17.58424068801105,-16.904559628572315,-16.45709093566984,-17.286673416849226,-17.208538502454758,-16.747422729153186,-16.68144371174276,-16.86649866728112,-17.08887398429215,-16.297665000893176,-16.086817394942045,-15.462755247019231,-15.051579169463366,-14.455684467684478,-14.956663040909916,-15.458243982866406,-15.07689955830574,-15.348115304484963,-15.782834780868143,-15.88243965851143,-15.711295172106475,-16.11385803297162,-15.759840458631516,-16.05025204643607,-16.663441110402346,-16.633441471494734,-16.19197208620608,-17.001051317434758,-16.070271968841553,-15.726119481958449,-16.41860105469823,-16.560362110380083,-16.427634933963418,-15.4433139055036,-15.835058351047337,-15.677290473598987,-15.742712977342308,-14.927245013415813,-14.993387245107442,-15.84221216244623,-15.934556979686022,-15.228800546377897,-16.202762835659087,-16.12558878818527,-16.812677043955773,-16.04542283900082,-15.804722166620195,-16.652937601786107,-16.782287332229316,-15.836580539587885,-15.013207603711635,-14.266638276167214,-14.782094126567245,-15.30510849552229,-15.621173331514001,-16.40299244876951,-15.56458229618147,-15.981515285558999,-15.96800713520497,-15.899505976121873,-15.427156277000904,-15.874317795503885,-16.80627074185759,-16.15763899916783,-16.634484434034675,-17.43549046339467,-17.101584419142455,-17.20267764944583,-16.78933915682137,-16.64635432790965,-16.63983618700877,-16.39627850241959,-16.858021882828325,-17.353267471771687,-17.578120035119355,-18.429477286990732,-18.27274628682062,-17.907834611367434,-17.459516247734427,-18.155475733801723,-18.132027468644083,-18.122909518890083,-18.350822606123984,-17.96527521731332,-18.567149577196687,-19.46309862518683,-18.77376829367131,-19.244906189851463,-20.032144852913916,-21.016137066297233,-20.816419303882867,-21.05705339461565,-22.00529045332223,-22.19076581997797,-23.189969012513757,-23.486605803016573,-23.23257491644472,-24.120015480089933,-24.426518077030778,-24.20100366976112,-25.07192148640752,-24.54304089071229,-25.18468451825902,-25.014788719359785,-25.431311852298677,-25.652292985934764,-25.194039893802255,-25.079863706137985,-25.36994012678042,-25.214152123313397,-26.02861441578716,-26.815700144972652,-26.649517054203898,-25.924877253826708,-25.193746116012335,-25.675900041125715,-24.925921679940075,-25.762283612042665,-26.213402742519975,-27.14939434081316,-27.859091326594353,-27.316301378887147,-27.820380372926593,-26.96708678873256,-26.362361301202327,-27.052975304890424,-26.42511312291026,-27.318131299689412,-27.378410966601223,-27.743450263515115,-27.26481979805976,-26.665820755064487,-26.12619721936062,-26.112402917817235,-25.359894534107298,-25.99779518181458,-26.179021404590458,-25.65374350734055,-25.521369501482695,-25.087919065728784,-24.767620938830078,-24.718756089918315,-25.658227562904358,-25.98841509455815,-25.81531963776797,-25.18785589840263,-24.71921055065468,-24.06626166542992,-24.708251075819135,-25.484897438436747,-26.139677136670798,-26.91030181525275,-27.64944352163002,-28.477887753397226,-29.230278733186424,-28.556121742818505,-27.645536969881505,-26.892781858798116,-26.168726592790335,-25.255638872273266,-24.47513235686347,-24.953752777539194,-24.33393745077774,-24.074098008219153,-24.495232096407562,-24.34285168070346,-25.253226961474866,-24.929895632434636,-24.522994427010417,-25.367723952513188,-25.110333695076406,-24.24213963933289,-25.210244649089873,-24.770136611536145,-25.506819680333138,-24.77911620726809,-25.395241578109562,-26.247612910345197,-25.317122528795153,-25.68218118045479,-24.77669722121209,-24.950096336659044,-25.293883305974305,-24.82918930100277,-24.73978253826499,-24.304538732394576,-23.341317731887102,-22.45239431131631,-21.854637771844864,-22.27211934654042,-22.388677866198123,-23.01918635191396,-22.611048249993473,-23.438320490997285,-23.483875046484172,-24.03287060977891,-23.9980428526178,-23.969372980762273,-23.175375142134726,-22.909715177025646,-23.677521073259413,-23.7633636854589,-23.744784608948976,-24.25830870307982,-24.356620494276285,-24.87546455208212,-25.21834570961073,-24.419710511807352,-23.580117860343307,-23.24075039755553,-22.630375884938985,-22.164879211690277,-23.06391750322655,-23.72842487739399,-23.01640373840928,-23.6133579085581,-22.882350602652878,-21.987422137055546,-22.650389161426574,-23.565101101063192,-24.23787115421146,-23.319957793690264,-22.59359164023772,-22.695146581623703,-23.227381935343146,-22.37937510292977,-23.068090790417045,-23.59912478644401,-23.434393203351647,-22.843152803834528,-21.922038223128766,-22.861666157841682,-22.95390458125621,-23.607982326764613,-23.519136907998472,-24.34296855982393,-24.762567666824907,-25.280218093190342,-25.644657472148538,-26.607740027364343,-27.290089821908623,-27.263886189553887,-26.91352304397151,-27.34873404726386,-27.93345372285694,-27.78665370773524,-28.20551173761487,-27.632988524623215,-26.704675570130348,-26.95474368473515,-27.254122420214117,-27.564660551957786,-27.31749744247645,-26.73159032734111,-27.13355994038284,-27.661244125571102,-27.4024631367065,-27.19334389269352,-27.444996339734644,-27.873407050501555,-28.803669755812734,-28.60142074059695,-28.320769760757685,-27.995209041517228,-28.913866823539138,-28.7075596190989,-27.760254436638206,-27.75660028634593,-28.474641349632293,-28.15271737286821,-27.941828027367592,-28.68477432662621,-28.233891535550356,-27.911716890055686,-27.443354695569724,-26.93195559643209,-27.472654594574124,-28.420183414127678,-27.937542497180402,-27.540269123390317,-27.094526396598667,-26.71525600552559,-26.40600415505469,-25.55710713379085,-24.600154836662114,-25.305315375328064,-25.16859208792448,-25.968376996926963,-26.28510001860559,-26.91135485097766,-27.21339637041092,-27.13261185400188,-26.32697664014995,-25.834183021914214,-25.12361343903467,-25.331906020175666,-25.775402658618987,-26.013768836390227,-26.265933652874082,-25.53560012811795,-26.327510185539722,-25.360295505728573,-25.593148466199636,-24.817414939869195,-24.274814199190587,-25.14582235366106,-24.567918096203357,-24.924121263902634,-25.357056703884155,-25.221204539760947,-25.03545173443854,-25.830342393368483,-25.54394428199157,-25.519087692257017,-25.90562295773998,-25.40079668816179,-25.407049015630037,-25.317297043744475,-25.95288119185716,-25.679942429531366,-25.425033381208777,-25.20925901364535,-25.153269273694605,-24.224880003836006,-24.63841700227931,-24.875707087107003,-24.03381974576041,-24.474882152862847,-24.67247172165662,-23.93107719020918,-24.510695061646402,-23.710449137724936,-22.79391936864704,-22.19821016304195,-21.79746202006936,-21.322318558115512,-21.726411605253816,-21.266332688741386,-21.45851302612573,-21.94319817563519,-22.694622955750674,-23.448995392769575,-24.021219599060714,-23.93808128265664,-24.646014399826527,-24.17180681368336,-25.159720504656434,-25.13517156196758,-25.265203029848635,-25.01695631677285,-24.531198769807816,-24.034481957554817,-24.86662541748956,-25.437164949718863,-26.375030336435884,-26.76029222412035,-27.643319312483072,-27.84255876298994,-28.354248704388738,-27.891647598706186,-28.499621792230755,-28.0143707790412,-27.517011305317283,-26.796282519120723,-26.390232869423926,-27.23806628631428,-27.42688767099753,-28.013597323559225,-28.755767490249127,-28.34911201847717,-27.636600775644183,-27.052357013802975,-27.960614156909287,-27.889372010715306,-28.589478900656104,-28.585628809873015,-28.15448596328497,-27.819067128468305,-28.152856431901455,-28.880656365770847,-29.743851103354245,-29.87032350851223,-30.304841584526002,-30.273036142345518,-31.13283189944923,-30.194273908622563,-31.03242250625044,-30.94047385500744,-30.813845442142338,-30.1274900380522,-30.90226674079895,-30.357925824820995,-30.530527716036886,-30.61394416494295,-29.759283747524023,-29.515610666014254,-29.974392233416438,-30.825339812785387,-31.27617052849382,-30.3117435448803,-30.79833238432184,-31.158486670348793,-30.508387319743633,-31.476230467204005,-32.07014849735424,-31.536008317489177,-30.729384180158377,-30.53681876230985,-30.281179973855615,-29.287075615487993,-28.809912698809057,-29.422531590797007,-28.550162001047283,-28.801465699914843,-28.24259327352047,-27.389981690328568,-28.253843642771244,-28.218518423382193,-28.78360462700948,-28.908523429185152,-29.62467238958925,-30.20915109058842,-30.413728134240955,-29.836466116830707,-29.737986950669438,-30.47925834124908,-29.829999956302345,-30.3353512538597,-31.3195852576755,-31.265810939017683,-32.06557472096756,-31.459219520911574,-31.168059782590717,-31.887455967254937,-32.74847234971821,-32.182203996926546,-31.848356111440808,-31.313808077480644,-31.380091164261103,-30.69912887737155,-30.971038221847266,-30.92211610963568,-31.832571710459888,-32.759340995922685,-33.62547566276044,-33.92292703874409,-33.927672737743706,-34.266031111590564,-35.234413913451135,-35.39325355179608,-35.04249477898702,-35.706082643941045,-36.63575827982277,-37.59082280751318,-37.13279846124351,-37.837320923339576,-37.75821115495637,-36.84278916148469,-37.25459191808477,-37.27033640816808,-37.513427700381726,-37.61389949126169,-37.52121480181813,-36.918315982911736,-36.605879799928516,-37.55687616812065,-37.182259602006525,-37.652315912768245,-36.806024230550975,-36.99337689904496,-37.17780896695331,-37.33025252120569,-38.29564039921388,-38.10844975383952,-37.911547989118844,-38.63832654617727,-39.473614051006734,-38.66653756564483,-39.50846529332921,-39.59681421145797,-38.724105446599424,-38.96581820957363,-38.90842106658965,-39.39214380830526,-40.34712598193437,-39.55721121886745,-40.1537558035925,-40.73272318765521,-40.98689001286402,-40.97339052287862,-40.97860244149342,-40.525290007237345,-40.39750557113439,-39.47261789673939,-39.556616390589625,-40.311542828567326,-40.82326762750745,-41.36811186186969,-41.293850873596966,-40.484942928887904,-39.953617782332,-40.11933137150481,-40.71735219657421,-41.45058527914807,-42.11014755582437,-41.14798299828544,-41.766437453217804,-41.854959078133106,-41.882294652052224,-41.47252722736448,-41.60062116244808,-42.496218589600176,-42.580785741098225,-43.06489125918597,-43.47760571120307,-44.01321391062811,-43.157258780673146,-44.05402054544538,-43.520953060127795,-43.54155882867053,-43.76597613282502,-44.23064886732027,-43.67273981217295,-42.77231452194974,-43.19041057117283,-43.28721530130133,-43.754711693152785,-43.011416805908084,-42.237340854946524,-42.103488357272,-42.90885698609054,-43.3896329854615,-43.76476733898744,-43.98068067710847,-44.9095569611527,-45.44872390432283,-45.90038571739569,-45.473248454742134,-44.789623961783946,-44.46459703380242,-45.036837972234935,-45.565112200099975,-44.78165566548705,-45.50255154678598,-46.31396398646757,-46.501667181029916,-45.52406267775223,-46.00014237686992,-45.97879936080426,-46.578421107959,-46.76753161801025,-47.06638901727274,-47.72821422992274,-48.71455256547779,-49.52566579496488,-50.47921849042177,-50.60823577456176,-51.471930569037795,-51.15564070083201,-50.208080717828125,-50.09032741514966,-50.2471423256211,-50.161473222542554,-50.887223524507135,-51.11391047434881,-51.432026190683246,-51.80107284942642,-52.42954940488562,-52.3900210079737,-52.613024346064776,-53.383845317177474,-53.951510903891176,-54.78425386687741,-55.671399059239775,-56.39077187143266,-55.49824475683272,-56.058119389694184,-57.03039856860414,-57.0630291341804,-57.560496516525745,-57.47354429587722,-57.46596860559657,-58.404897143598646,-57.72661291109398,-57.40826090471819,-56.721176859457046,-56.3954064771533,-55.715216455515474,-56.40839611412957,-56.38107313495129,-56.09626189805567,-56.701172673143446,-56.63944764668122,-56.39968389645219,-57.15070166485384,-56.6849221768789,-55.99994906783104,-55.516551033593714,-55.05528426077217,-54.892576314043254,-54.796744940802455,-54.527275927364826,-54.28097790898755,-54.289781326428056,-54.00302649382502,-53.60856372863054,-53.28516850061715,-54.10883912956342,-53.29121351754293,-53.680648466106504,-53.535921283531934,-53.36754906689748,-52.60721229529008,-52.78904634574428,-53.12323159072548,-52.99470010120422,-52.75486135901883,-52.0313419662416,-52.3453307999298,-53.12063662568107,-53.5631065107882,-52.56436785124242,-52.335607116576284,-52.95182586507872,-53.34317184612155,-53.97511537699029,-53.42614836059511,-54.12056710058823,-53.929405122064054,-53.05058737657964,-52.662535069976,-51.96125080110505,-51.544722160790116,-51.763505634851754,-51.663547093980014,-50.89399739447981,-50.455318672116846,-49.94462353782728,-49.43519435916096,-49.48300702217966,-48.849756419193,-49.82808575872332,-50.527815049514174,-49.61780014168471,-49.74238508474082,-50.00365741830319,-49.51077374024317,-49.29595095990226,-50.19460203219205,-51.028697832487524,-52.012964200694114,-51.18404054827988,-50.91523944819346,-50.12504455819726,-50.87326578935608,-51.24164680857211,-51.119219867978245,-50.83807549159974,-51.07269583037123,-50.59303784696385,-49.804061896167696,-50.655620471108705,-51.08068550750613,-50.59312205435708,-50.001461753156036,-50.61792491097003,-50.8484867522493,-51.049502251669765,-50.320564368739724,-50.722365921828896,-49.897247690707445,-50.79716461664066,-51.63028171937913,-51.75250458344817,-51.82686779694632,-51.087903999723494,-51.362276517320424,-51.82423874735832,-51.07834348734468,-51.9749040575698,-52.64640614576638,-53.34988910378888,-52.36418661195785,-53.044272208586335,-53.24271085765213,-53.51493726950139,-53.87124984944239,-54.1325595038943,-54.942966057918966,-55.09657390136272,-55.00991500541568,-55.24836850864813,-54.5234158243984,-54.613530959468335,-53.76551616424695,-54.22050575632602,-53.96948219416663,-53.642842828296125,-53.54521080991253,-53.57634485140443,-52.698319704737514,-52.787011119537055,-52.8930730917491,-53.12681459868327,-53.289191361982375,-53.13148842845112,-52.756106895860285,-52.75945376465097,-53.40872553456575,-54.219862543046474,-54.31401118962094,-53.37317369552329,-54.04056896222755,-54.105046906508505,-54.38854256365448,-53.98008530493826,-54.27399795409292,-55.02754218596965,-55.61967430636287,-55.55069835903123,-54.72826525568962,-54.376589734107256,-55.30090528540313,-55.80633722990751,-55.93240771209821,-56.870432801079005,-57.31628737365827,-58.14838544279337,-57.72742478735745,-58.67542420467362,-59.66248652013019,-59.501601927913725,-60.0594808771275,-59.46723013231531,-59.512444789521396,-59.38939559319988,-59.885383233428,-60.65008813375607,-60.79500791989267,-60.61556836217642,-61.37525760522112,-61.14907354442403,-60.80137103330344,-60.11642584716901,-59.920718904584646,-59.21390422200784,-60.01345840934664,-59.55956900632009,-58.71556718181819,-57.78000244218856,-58.648674624506384,-57.913083765190095,-57.8719241078943,-57.72384097566828,-57.59622769104317,-57.268020004965365,-56.83257016027346,-57.24534824769944,-56.76513524958864,-56.56722801271826,-56.36447549890727,-56.216888719704,-56.476348362863064,-56.55622071959078,-56.44817621028051,-55.45421360991895,-55.00606742454693,-55.296164848376065,-55.854062331840396,-56.302481087855995,-56.54934108629823,-57.28010131418705,-57.19051372120157,-57.99082984821871,-57.55791772948578,-58.12357958313078,-57.279184211511165,-57.01892907777801,-56.716087996494025,-57.17274410929531,-58.01469706278294,-58.79820225061849,-59.61604677932337,-59.55571506731212,-59.70204299548641,-59.66275220690295,-59.49579599080607,-59.608890978619456,-59.83779802965,-60.27956136316061,-59.57084831409156,-59.12799971783534,-59.51253202185035,-60.4197644116357,-60.711581982672215,-60.47583762649447,-61.22051292145625,-61.44211933109909,-61.756603620015085,-62.043609180953354,-61.16387034486979,-60.901542329229414,-60.4267911571078,-59.75690304161981,-59.3103352044709,-58.96343723544851,-59.15513751003891,-58.27715453412384,-58.373525050934404,-59.121895911637694,-58.59128580149263,-59.08554963162169,-59.46219012700021,-59.91501076472923,-60.28953630151227,-59.982066959142685,-60.241156828124076,-59.67456960072741,-59.755571994930506,-59.869274843949825,-60.7533570532687,-59.99236857704818,-60.49760079476982,-61.21367972390726,-61.37338916072622,-61.186080739833415,-60.81235835375264,-59.90963501483202,-59.43451559916139,-60.13214164972305,-60.309830053243786,-60.26504643633962,-59.808930818457156,-58.878316681832075,-57.892476291395724,-57.80449120188132,-58.411479527596384,-58.23201751289889,-57.706448207609355,-56.99585438007489,-56.87211002781987,-57.04757822398096,-56.32275924086571,-56.04589398717508,-56.00029049254954,-55.32268569851294,-55.04351619631052,-55.036080732475966,-55.54030739469454,-56.235906935762614,-57.112060993444175,-56.74138432368636,-56.43445902923122,-57.10878262203187,-57.72766003012657,-57.30737624363974,-58.003750105854124,-58.08736382704228,-58.782958939671516,-59.242952903266996,-58.694892262574285,-58.21005778061226,-57.74033722747117,-57.367185729090124,-57.16708897333592,-56.77037025755271,-55.93603693880141,-56.76364999497309,-55.8670998304151,-56.86476546432823,-57.27509219991043,-57.58444427046925,-57.07400917029008,-57.768678677268326,-57.06216091103852,-56.12270761327818,-56.14961470896378,-55.82309648534283,-55.206916050519794,-55.29526181239635,-55.568800112232566,-55.376017747446895,-56.1284223748371,-55.726171544287354,-56.076360755134374,-55.90032087918371,-55.89514948334545,-55.28296487312764,-54.481894384138286,-53.84799276199192,-54.280302945990115,-54.86323352297768,-55.55805070651695,-56.401251040864736,-56.3032830436714,-56.55866556754336,-56.70280723180622,-55.95336495293304,-55.85840425174683,-56.77139640785754,-57.70724384021014,-57.356507025659084,-56.650564920622855,-56.82438402576372,-57.767651631031185,-56.76863151695579,-57.69760317122564,-57.59236517781392,-58.303860544227064,-59.14899590332061,-59.91312519600615,-59.045280900318176,-59.88234009640291,-60.04730311781168,-60.54642111156136,-61.19326498778537,-61.32796326512471,-60.48295294679701,-60.1946476995945,-60.952789263334125,-61.640202288050205,-61.30280167097226,-60.736891342327,-60.36087067145854,-60.32703863363713,-61.12263563973829,-60.34034375846386,-59.9198800502345,-59.70114121865481,-59.32995291845873,-58.961877558380365,-59.95446741627529,-60.89718218380585,-60.33703737286851,-60.359318079892546,-61.342924270778894,-60.86785458819941,-61.02849815785885,-61.27139547560364,-60.98039173102006,-60.30388382729143,-59.70528657408431,-58.945992492605,-58.04049814073369,-57.715260514989495,-58.68364785751328,-57.74333781609312,-57.5308777121827,-57.00146547053009,-56.539751939009875,-56.11239000223577,-56.10391316562891,-56.059946433175355,-56.702021040953696,-55.73662439128384,-56.24334810394794,-55.52609784016386,-55.09996081329882,-54.657186564058065,-55.60207036184147,-55.05494311871007,-55.65810456126928,-55.16441179346293,-54.455366431269795,-54.2842426286079,-55.18947613891214,-55.007347049191594,-55.59176539303735,-55.36370375286788,-54.84922359883785,-54.52383329253644,-53.620688958559185,-54.52974678762257,-54.7118896972388,-55.64514928078279,-55.73491396382451,-55.37372538773343,-54.97515209810808,-55.01904216874391,-54.93903125496581,-55.460762220900506,-55.03936206456274,-55.383389819879085,-54.48296339344233,-53.887273385655135,-53.41378617146984,-53.99355412926525,-53.48243030440062,-53.854165711440146,-52.87100251484662,-53.521871477365494,-53.98993431776762,-53.289428647607565,-52.57640978787094,-52.69431802816689,-53.15102085797116,-52.16086269170046,-52.32157126162201,-51.932498070877045,-51.38442943105474,-52.05546396970749,-51.43705735122785,-51.556348773650825,-50.982801486738026,-50.48290713271126,-50.178710494656116,-49.64084303472191,-50.17572242114693,-49.64016659464687,-48.68177095847204,-47.96729742316529,-47.620361605193466,-48.50539833586663,-47.58555404143408,-47.09868117701262,-47.425330508966,-46.7126673720777,-46.88171695033088,-47.447113739326596,-48.37746995082125,-48.026174754835665,-48.0193576393649,-47.16346808196977,-46.340810141991824,-45.51593897724524,-44.95423840126023,-45.43822111468762,-45.49841620121151,-45.584300386253744,-45.46059209154919,-45.259113643784076,-44.770335879642516,-44.05968000832945,-43.305708058644086,-43.5428012884222,-43.94474981026724,-44.143571047112346,-44.84511362016201,-45.58109902217984,-45.7099325126037,-45.93598180776462,-45.73803131701425,-45.91601268714294,-46.035667192190886,-46.07755422824994,-46.11300536617637,-47.10177012998611,-47.76556737488136,-48.67791609046981,-48.49776673736051,-48.88231272948906,-47.963807626627386,-48.08635043585673,-48.84889601543546,-48.409265528898686,-48.48918221285567,-48.68156416295096,-49.435536842793226,-49.848151058889925,-50.79077990632504,-49.87525124382228,-49.40826666820794,-48.5324001153931,-49.29075298504904,-49.47977645788342,-48.83358331164345,-48.54451058153063,-49.07988169929013,-48.27300381148234,-48.09302277583629,-49.08909909473732,-50.053166393656284,-50.01659854128957,-50.31141101848334,-49.87677236786112,-48.92430680198595,-49.39947329694405,-49.08547022473067,-48.39809632394463,-49.306080313399434,-48.47573030507192,-48.59013221831992,-47.94957908382639,-47.82685386808589,-47.19717508601025,-46.9748169220984,-46.15723184635863,-47.12636597780511,-46.567766095511615,-46.31735695479438,-47.246706943027675,-47.88950359961018,-48.207685336936265,-48.41710485750809,-49.15734462160617,-49.823567256797105,-50.364713354967535,-49.76449043583125,-50.6794947902672,-50.92837418662384,-50.75983531679958,-51.583460193593055,-51.08826350187883,-51.01292435405776,-50.5954146431759,-50.924108216073364,-49.999759558588266,-49.151088405400515,-48.63046657061204,-49.08732296852395,-49.095356896054,-48.942513236775994,-48.65853820089251,-49.131189656443894,-48.491979403886944,-49.427669916301966,-49.26630289386958,-48.84269069042057,-48.07168473023921,-48.536606980953366,-48.36465702857822,-48.58240574412048,-47.94272551918402,-47.813718205783516,-48.444407421629876,-47.88140986254439,-47.06422771140933,-47.66372460499406,-47.78956539137289,-46.990495666861534,-46.70377205312252,-46.15719953458756,-45.26213241601363,-45.7548907417804,-44.92360997572541,-45.44051077682525,-46.14809488132596,-47.01560922944918,-47.705067270901054,-48.465043862815946,-48.20904660085216,-48.00636751204729,-47.92888205451891,-48.431647231802344,-48.46111696911976,-48.68181833764538,-49.00062581105158,-48.38334679789841,-48.476421013474464,-49.0746278418228,-49.96868806146085,-49.159216050524265,-48.302528829313815,-48.4552260003984,-48.80217456072569,-48.53983931057155,-48.89678255887702,-48.36000192863867,-48.067682310938835,-47.634277660399675,-48.00135749485344,-47.59110471699387,-47.95104021858424,-48.27653773641214,-48.11745080212131,-47.18868876900524,-47.25250030774623,-48.15314793726429,-48.36283475533128,-48.80626249825582,-49.695615206845105,-50.63262481195852,-49.745450836606324,-48.92076031304896,-47.949112970381975,-47.835701941046864,-47.90758524928242,-46.936057683546096,-45.93936354294419,-46.64133859751746,-45.849641857203096,-45.289644359610975,-44.99546264577657,-45.40623027039692,-45.590119237080216,-44.918537508230656,-45.75216701766476,-46.40472048241645,-46.40223036380485,-47.2949263532646,-47.54055293742567,-47.32973373495042,-47.859446885529906,-48.36738871736452,-48.42453925218433,-48.47192335873842,-48.144620892591774,-49.01561557780951,-48.19711276330054,-47.75620225863531,-47.8310043765232,-46.901347203180194,-46.18464258220047,-46.89284105785191,-46.93041019840166,-46.03282852983102,-46.58877640590072,-46.76172618754208,-47.23890213062987,-46.79048984264955,-45.81485785683617,-46.2755530057475,-46.98223132174462,-46.84820484695956,-46.73306310828775,-46.59229533839971,-47.37379612214863,-47.16762435855344,-48.027194811496884,-47.25157387275249,-46.79386662598699,-45.85198161005974,-45.16109614726156,-45.63567713322118,-44.86966091673821,-44.82640949683264,-43.91297229658812,-43.44938161270693,-44.44419984612614,-44.08994986722246,-44.47235771315172,-45.44389343587682,-44.99453059025109,-44.36969844857231,-45.13824811996892,-45.75997891649604,-46.70642985962331,-46.2017663619481,-46.28614105703309,-47.03258022433147,-47.043000410776585,-46.76997348526493,-46.42349831899628,-46.42955314461142,-46.23071670625359,-45.390406171325594,-45.04721087124199,-44.965744896326214,-44.804068863391876,-45.03710741084069,-45.78963225800544,-45.611614655237645,-45.99715619068593,-45.20164439594373,-44.63664864515886,-44.629208667669445,-44.68768817931414,-44.1669522379525,-44.01923469360918,-43.495916766580194,-44.023486028425395,-43.25699221761897,-42.7436517868191,-42.42684021964669,-41.90124989114702,-41.485475284513086,-41.707547104451805,-41.51352413324639,-42.46674516424537,-42.30319890612736,-42.72780709480867,-43.17508262908086,-43.35363223729655,-44.35138693777844,-43.415696014184505,-43.16244141431525,-42.24844957096502,-42.88861531810835,-43.795284365303814,-43.506548437755555,-42.76669982355088,-43.19297566218302,-42.368871147278696,-43.28724106727168,-43.37819250114262,-42.87609680369496,-42.46203219238669,-43.222685396671295,-42.96033292170614,-43.715684552211314,-44.485904479864985,-45.42140084505081,-44.43845237232745,-43.49159603426233,-44.2574319713749,-44.14401323348284,-45.12277934420854,-45.277498729527,-45.15700921649113,-46.141191062517464,-46.75253132265061,-47.502546108327806,-46.72312762448564,-45.9993828702718,-45.24479840695858,-44.78904463676736,-44.50092291785404,-43.90608529932797,-43.53005414130166,-42.873620324302465,-43.77734297467396,-44.17564670974389,-44.39934279816225,-43.532005780376494,-43.86097705177963,-43.962011612951756,-44.83771718479693,-44.08173648873344,-44.59850773913786,-44.18574912752956,-43.94567057676613,-43.21311372471973,-43.87293667392805,-43.11407271074131,-42.69842779962346,-42.466206854674965,-43.27420650376007,-43.32716141175479,-43.83283718675375,-44.715845617465675,-44.6822536829859,-45.214303588029,-45.842180693522096,-44.996397798880935,-44.27019410301,-45.106491622980684,-45.534594310913235,-45.55520927486941,-46.390515147242695,-46.75039285281673,-47.560877757146955,-48.10464656446129,-47.721726692747325,-48.5154185295105,-48.65059300372377,-48.19815565133467,-47.36810903577134,-47.74160187272355,-46.985352504532784,-46.671920468099415,-47.28488663351163,-48.2247496470809,-48.79070826107636,-48.99147094786167,-49.56767534883693,-49.71485805045813,-49.30967406183481,-48.610580757725984,-48.00165151571855,-47.272529371548444,-47.875796483363956,-46.95656813913956,-47.47937519894913,-48.36388439964503,-47.49458368634805,-47.80703171342611,-48.24412746634334,-47.2665687026456,-48.21446824632585,-48.77119123283774,-48.20537319453433,-48.82191568939015,-49.5506235556677,-49.01174342026934,-49.12564443098381,-49.187143989373,-48.205023751128465,-48.75413690181449,-49.36733759846538,-48.73240722389892,-49.08114878600463,-50.014710299670696,-49.66997100505978,-50.60423462418839,-49.985273166093975,-49.48201676784083,-49.49396822741255,-48.71179744089022,-47.993497965391725,-47.65422234963626,-46.717451530043036,-46.55122362403199,-46.42487590294331,-47.03264742298052,-46.55348069034517,-46.991133329458535,-47.43668059119955,-48.3523559900932,-48.19315322767943,-47.33944907877594,-48.313403776381165,-49.17423888947815,-48.61127649107948,-47.880822665058076,-47.06043634284288,-47.32624077005312,-46.80949134938419,-45.933334024623036,-44.96776414336637,-45.457998130470514,-46.16486874083057,-46.008954922668636,-45.963499610777944,-45.314725793432444,-44.43573571881279,-43.97215015394613,-43.98729035630822,-43.336138386745006,-43.79826663527638,-44.197723338380456,-44.0425788378343,-43.28477867366746,-43.37529231142253,-44.20006894832477,-44.28533298475668,-44.66433242242783,-45.258265376556665,-44.80088821006939,-43.96508657792583,-43.313023429363966,-42.794742146041244,-42.009055487811565,-42.23150973254815,-42.87291740626097,-42.724724074825644,-43.052348512690514,-42.9748455635272,-43.62558689014986,-44.5422947765328,-44.56060423981398,-44.1469732709229,-44.3614302217029,-43.81471343431622,-43.227154354099184,-42.331514353398234,-42.35187048558146,-42.98202696396038,-43.25950854970142,-44.01948473090306,-44.48712611151859,-44.892310050781816,-45.51935162395239,-44.863219901919365,-44.34047457529232,-45.10906909732148,-45.12967502279207,-44.16408039815724,-44.16766331763938,-44.70927684800699,-43.91301852930337,-44.868745180778205,-45.66482607088983,-44.94313561124727,-44.52701626950875,-44.52121708448976,-44.15434517664835,-44.76052707992494,-45.33626365009695,-45.05752575676888,-44.435761691536754,-44.9806599249132,-45.092604513280094,-45.72690855152905,-46.376834279391915,-46.5809058859013,-45.73743778234348,-45.22006268566474,-45.37674013199285,-44.989670984447,-44.78807447850704,-45.75483292900026,-45.25048671616241,-45.49375257594511,-44.82421375857666,-45.50083395233378,-45.84470499213785,-46.023110955022275,-46.06016470817849,-46.43814178183675,-46.59101654822007,-47.2417504475452,-47.9554517949,-48.281935630366206,-48.78167810384184,-48.29974929895252,-47.75188957946375,-47.10263412911445,-48.01867691427469,-47.027369691524655,-46.111790981609374,-45.3123305728659,-45.108159807976335,-46.04153912793845,-45.355293998960406,-44.99018365750089,-44.84299942338839,-44.82178141362965,-44.88451442262158,-45.010062319692224,-44.47524700406939,-43.69800639804453,-43.218456571456045,-43.4839226086624,-44.19341981969774,-44.87145334854722,-45.683647556230426,-45.89530610339716,-44.916827351786196,-44.892567744944245,-44.0908781029284,-43.8906270340085,-44.066247392911464,-43.33503569336608,-43.56261012563482,-43.62374676018953,-42.762068196665496,-41.88626294257119,-41.35341128753498,-40.58049353258684,-41.07103065168485,-40.94789005257189,-41.630357465706766,-41.39005268830806,-41.999425931833684,-41.57081037433818,-41.3968200837262,-40.902234241366386,-40.65354816429317,-40.23253221530467,-40.763493976555765,-41.27183069754392,-41.91917909914628,-41.93356893211603,-42.262211515102535,-42.152407202869654,-41.78904325189069,-41.4127427758649,-42.18783575762063,-42.9436807250604,-43.45035301987082,-43.33395291911438,-42.4656628347002,-43.45224736398086,-42.62408297555521,-42.24801317602396,-42.39203947223723,-42.72356564318761,-43.257157656829804,-43.69063439592719,-43.37550063151866,-42.772885042242706,-43.26747635751963,-43.673819091171026,-43.90064715826884,-44.208777794614434,-44.31979894824326,-43.7616365053691,-44.0491697024554,-44.31143604917452,-44.142237573396415,-44.33968086587265,-44.887205032631755,-44.30338836601004,-45.21476784860715,-45.082595301326364,-44.38623722596094,-43.41922198608518,-44.38726567616686,-43.87949579954147,-42.907419357448816,-42.4323160732165,-42.77976569160819,-42.798638246022165,-43.36005504615605,-42.85194984963164,-42.350742099341005,-42.10096825892106,-42.63636083342135,-43.439453375991434,-42.78551554726437,-42.36670900741592,-43.32157692499459,-43.39694428863004,-42.57343728886917,-41.576084486208856,-41.560958174057305,-41.50612121261656,-42.29322587931529,-42.826632854994386,-42.2010781285353,-43.154282856266946,-43.32968688197434,-44.12085941107944,-43.88981263060123,-43.61069261375815,-43.33552534226328,-42.89423711737618,-43.498878080397844,-43.99055194482207,-43.99940078286454,-44.814384368713945,-44.93576332041994,-45.93110162205994,-45.50748313264921,-45.42796084750444,-44.51082301000133,-45.49755477486178,-45.21651295060292,-45.245571645442396,-44.47785945190117,-44.90582146495581,-45.21791759086773,-44.804594652261585,-44.42578887147829,-44.74320960370824,-45.38638253323734,-44.840825121849775,-45.8196019413881,-46.420816944912076,-46.54296534880996,-47.189570111222565,-48.003637803252786,-47.659371071495116,-48.300307013094425,-49.06949547864497,-48.34430842427537,-47.79722401872277,-47.69461628049612,-48.68914507050067,-48.57177633512765,-48.74583351705223,-47.993740102276206,-48.652372899930924,-47.95739126158878,-48.35265072295442,-48.199720931239426,-47.75493612186983,-48.29894355451688,-48.54628479015082,-48.73860932700336,-49.12470901804045,-50.02042677346617,-50.48392697563395,-51.4732648790814,-51.99364430177957,-51.83308738935739,-51.94656327646226,-52.576723410747945,-53.2971676485613,-53.50777954561636,-52.61516764294356,-53.145733545999974,-54.07776970649138,-54.383742046542466,-54.13186565367505,-53.17586727300659,-53.30995072191581,-52.60638713464141,-52.10356857208535,-51.53623823588714,-50.58762365812436,-51.42893083114177,-51.61408383632079,-51.42239340720698,-51.76967926090583,-51.94708811445162,-52.931698837317526,-52.272148901131004,-51.33619181578979,-50.98064796673134,-51.74680636776611,-52.42769082682207,-52.375624468084425,-51.99504761490971,-51.08669648412615,-50.191282535437495,-49.559667030349374,-48.69957967894152,-49.53799377242103,-50.28251283848658,-51.203500990755856,-51.99777622334659,-52.27199540892616,-53.104520784225315,-52.63818211015314,-52.931726701557636,-53.38148499047384,-53.80670078564435,-52.81764410203323,-53.56764320190996,-54.12342494959012,-54.20204129675403,-53.96084754448384,-53.3507971521467,-52.84643061039969,-52.258584171999246,-52.143832304514945,-53.13534417329356,-52.63627267116681,-52.92214642697945,-53.3120254855603,-52.469559350050986,-53.37313034106046,-54.16024425672367,-54.93260598788038,-55.13210736121982,-54.59183603897691,-53.79517134418711,-53.754000157117844,-54.65534583479166,-53.89464661339298,-53.4104945291765,-53.191843586508185,-52.82464713836089,-51.94618915626779,-52.53466117056087,-51.97768545104191,-52.039282619953156,-51.04719652934,-50.56159090716392,-50.36586573626846,-50.09421422984451,-50.03709989506751,-49.338365035131574,-50.30307858530432,-49.36923613632098,-49.43912998680025,-49.24547670595348,-48.55739047797397,-49.39460094785318,-50.31200749659911,-49.88518908061087,-50.02054236643016,-50.50446276552975,-50.05074218986556,-50.92599130515009,-51.19870020868257,-51.57522774301469,-51.86375757912174,-52.213329943828285,-51.514024240430444,-51.39290083758533,-51.902728432789445,-52.32845653872937,-51.457912375219166,-50.56714717345312,-50.21624848200008,-49.38493408821523,-49.17807992035523,-49.72996017988771,-48.77437860239297,-49.37743205623701,-49.396541385445744,-49.484090577811,-48.79200085857883,-48.07239383365959,-48.265628043562174,-48.80687120137736,-48.734189313370734,-48.95915884897113,-49.24227294884622,-48.26054090773687,-48.66607699776068,-49.62927674269304,-49.87349321274087,-50.0230320408009,-49.34106740448624,-50.25297674909234,-50.88054190389812,-50.490469542331994,-50.41959519172087,-50.009922785684466,-49.98951484868303,-49.04994829883799,-48.65777321020141,-48.73389000073075,-49.062548213172704,-49.03260552510619,-49.695008559618145,-49.41203034389764,-50.356921419966966,-50.3591518048197,-51.24781234795228,-50.704391872975975,-50.706767295487225,-51.57369221094996,-50.81616444699466,-51.44183964468539,-52.16805903613567,-51.436116956174374,-51.688473978079855,-51.62270289566368,-50.71272148005664,-51.306784241925925,-51.748465104494244,-51.65683690831065,-51.851733090821654,-52.450436966028064,-53.32129782252014,-52.98878703266382,-53.029782752506435,-52.040337019599974,-51.257958930917084,-52.118296183645725,-52.36252354923636,-53.05269355745986,-52.145913997199386,-53.05392724974081,-52.63225663499907,-52.43476880481467,-53.24538013478741,-54.22560531878844,-53.30612444039434,-53.901459116488695,-53.16107463557273,-53.55872211046517,-52.5976029294543,-51.75265120808035,-51.88362755719572,-51.630400091875345,-51.479914305731654,-51.71637415327132,-51.88903487101197,-52.08188956649974,-52.932641606777906,-52.09942538430914,-52.08756477665156,-51.422560622449964,-52.23358455207199,-52.694134794641286,-52.53946722578257,-52.17021984467283,-52.456092287320644,-52.886863079387695,-52.30484144343063,-53.27346077701077,-54.17478731647134,-54.75747764063999,-54.699593680445105,-55.17859748285264,-55.60427533136681,-55.34372273972258,-54.412908553145826,-54.064311740454286,-54.51244485843927,-53.60640962375328,-54.338068472221494,-53.647164455614984,-54.16318542184308,-53.44754696963355,-53.15899403439835,-52.500960478559136,-52.98173261526972,-53.231681565754116,-54.21730731194839,-54.21553655900061,-53.70951624074951,-53.98279920918867,-54.32159147504717,-53.653759236913174,-53.200634562410414,-52.29580503422767,-51.357951768208295,-50.89063941780478,-51.1008794256486,-50.27440544730052,-50.82698073470965,-50.748897512909025,-50.438914780505,-49.92562463739887,-50.61009215563536,-50.7199668250978,-49.939372872933745,-50.92526692384854,-51.80307821696624,-52.721503612585366,-53.35932586109266,-54.08712349599227,-53.40738736838102,-53.22590568754822,-52.974156270269305,-52.22525495104492,-52.052698130719364,-52.48393417382613,-52.80084625771269,-52.89852612093091,-53.283316663932055,-53.13490155618638,-53.89900677278638,-54.740430924110115,-55.13437517825514,-55.226438160054386,-55.33987115090713,-54.847634692210704,-55.61419420456514,-56.322772815357894,-56.447035597637296,-56.32327068829909,-57.27557829441503,-57.819854664150625,-56.97670661192387,-57.26200071722269,-56.38533874275163,-56.12012936221436,-55.58483081078157,-54.97747860522941,-55.80623795418069,-56.26742561440915,-56.19684566138312,-56.26831095898524,-57.227526175323874,-57.99115349724889,-58.29735537432134,-58.84896564250812,-59.71525884559378,-59.41491136420518,-60.30612475704402,-60.10186324734241,-59.328806806355715,-59.399049144238234,-58.600569260306656,-58.19001038791612,-57.989962940104306,-58.44791287276894,-59.385790925938636,-60.166579339653254,-59.70227152714506,-59.71636794088408,-60.31937986146659,-61.008215757552534,-61.63652754994109,-61.801821823231876,-61.259990768972784,-61.87730040540919,-62.062046464998275,-61.51082277158275,-62.423188637942076,-63.35766062838957,-62.479766707867384,-62.23195010004565,-62.82315875124186,-62.177071769256145,-62.402816927060485,-61.43417314812541,-62.37087679049,-62.61607187567279,-63.348769408185035,-63.65014559449628,-64.20419209962711,-65.02790255378932,-64.37003401992843,-64.12364710168913,-63.179163868539035,-62.660091046243906,-62.16771997278556,-62.27265143347904,-62.42950488999486,-62.69031041674316,-62.307869479991496,-61.713964139577,-61.163797944784164,-61.01501215621829,-61.98826132621616,-61.02931518666446,-61.04524694848806,-61.017000804655254,-61.291906780097634,-61.56828643241897,-61.162186027504504,-60.39014561101794,-61.09323768597096,-61.061592461541295,-60.179012172389776,-59.924282868392766,-59.56800418160856,-59.98625645972788,-59.01978331012651,-59.59533540252596,-60.52982477797195,-61.462759694084525,-62.10825443593785,-61.223099826369435,-60.59474322805181,-60.80447275750339,-60.82521651079878,-61.38668801030144,-62.03989282017574,-62.864654103294015,-63.170818952377886,-62.25148347206414,-61.33295412361622,-62.221141463611275,-62.05854790005833,-61.802398880477995,-62.06381658837199,-63.04159498400986,-63.85108287539333,-64.8233368373476,-64.45709792105481,-64.63507418613881,-63.7058306732215,-63.677370278630406,-63.93132443865761,-64.8552719829604,-64.18951514456421,-64.90172271803021,-64.40734901698306,-64.5081743071787,-64.06045944709331,-63.07307138573378,-62.274804800748825,-62.43735331762582,-62.420888556633145,-61.666832520160824,-61.80537313781679,-61.057915322016925,-61.611932408064604,-61.2061038245447,-60.97421806305647,-60.81931444210932,-61.0694237165153,-61.58308520866558,-62.55363764753565,-62.90802226634696,-62.66889268066734,-62.87914384808391,-62.68280965136364,-63.58074243646115,-62.709132517222315,-61.82091348618269,-62.30081864958629,-62.67907919641584,-61.74991986807436,-62.06398253887892,-62.96391379041597,-63.74687049165368,-64.24788922164589,-64.39031973388046,-64.35968948667869,-64.08040966652334,-63.42158347601071,-63.40483569353819,-64.0246235341765,-64.69966392684728,-64.64216044032946,-64.20113272452727,-64.22019510623068,-64.32309167925268,-64.96602504095063,-64.72282558726147,-64.73205911181867,-65.3666970715858,-65.90613662777469,-65.20795859955251,-65.00395496794954,-64.90578651195392,-65.47574028279632,-66.19353931071237,-66.3513353113085,-66.44254595041275,-66.92504376498982,-67.89491005660966,-68.51159556955099,-69.02772900601849,-69.39255775185302,-69.88813142245635,-70.1342565366067,-70.05081319855526,-70.09080837061629,-70.29321953840554,-70.92290530679747,-71.13327726209536,-70.97509688418359,-70.49091780651361,-70.56251198565587,-70.39274905715138,-70.96206573490053,-70.32435858529061,-69.61982761742547,-70.35164959309623,-70.42140621179715,-71.09812880819663,-71.61417532991618,-71.53821525210515,-71.46462406031787,-70.66933507518843,-71.27852329052985,-71.51089883968234,-71.51756500639021,-72.30140031827614,-72.5863481014967,-72.50708285765722,-72.39122873777524,-71.92786726122722,-71.20592313073575,-70.99217965081334,-70.64640085399151,-70.23029736150056,-69.30468471581116,-70.2623615427874,-71.02042659185827,-71.4396514990367,-71.46579815307632,-72.2682597800158,-71.76335915736854,-70.80968062952161,-70.61368840327486,-70.01386468391865,-69.9590900237672,-70.08273545280099,-69.8716111285612,-70.75473224557936,-70.21786393271759,-71.15577369369566,-71.49671879364178,-71.78183008963242,-71.69295111391693,-72.60310376761481,-73.09540772996843,-72.99003121862188,-73.26538819586858,-72.82998159248382,-72.59945519408211,-72.53931309143081,-72.1905958247371,-72.42429622355849,-72.29089915379882,-72.82348957238719,-72.54038689425215,-72.69312702165917,-73.02541603380814,-73.59452081751078,-73.66476608160883,-74.57845040550455,-74.4062946359627,-74.07774292537943,-73.36620773933828,-74.08390997862443,-74.8141153245233,-73.94325704360381,-73.78812625212595,-73.83936839364469,-73.35391519078985,-72.90138543676585,-73.7668252303265,-73.31935071293265,-73.23876092862338,-74.130507778842,-75.04690672690049,-74.17091589514166,-73.89714668504894,-73.5459425994195,-72.97961520543322,-72.55370569042861,-72.56930436985567,-73.5576218161732,-72.93997952714562,-72.93219401547685,-72.14164339425042,-71.50656633544713,-71.14274734351784,-70.76412424445152,-69.93551355553791,-68.99014715012163,-68.90468198247254,-69.31126465136185,-69.16991870990023,-69.91590977692977,-69.5127803995274,-70.35356429824606,-70.14025261625648,-69.32740237331018,-69.10259937914088,-69.13917779875919,-68.84749169275165,-68.76309562148526,-68.84820982860401,-68.60464771836996,-67.61827397020534,-68.43191994866356,-68.48271349770948,-69.01060279877856,-69.72343157231808,-70.54054907104,-69.66073070047423,-70.30610696040094,-70.9246078170836,-71.85312784695998,-72.45264796260744,-73.07221510959789,-72.10859121056274,-73.0663809357211,-72.52829377679154,-73.47656689910218,-74.4093766133301,-73.63987664645538,-74.38065300602466,-73.57387381698936,-72.9132228945382,-72.59283475158736,-72.25746220443398,-72.48609319981188,-72.51216299878433,-71.5975355473347,-71.08524227142334,-71.16737428028136,-71.53534400742501,-70.53943515382707,-71.33617755910382,-71.90727641480044,-70.908646132797,-71.38656500354409,-71.93472977308556,-72.724712040741,-72.28577041765675,-72.85250980919227,-73.1239394559525,-72.5586814074777,-72.69458006881177,-73.29792955331504,-73.71218720264733,-74.36192750325426,-74.60614274116233,-73.69865692034364,-73.75434702727944,-73.98470324231312,-74.35707600647584,-73.42071446590126,-73.4373420025222,-74.36743460781872,-74.89519253233448,-74.43970155715942,-73.49500554893166,-74.11642940109596,-73.76047477358952,-73.06476067798212,-73.82702533481643,-74.42984464857727,-73.56626314111054,-74.47062190296128,-75.42493147170171,-75.9256052984856,-75.14772780332714,-75.79061566200107,-75.111459760461,-76.09989833645523,-76.80957734910771,-76.56710480200127,-76.28027665661648,-76.03214707318693,-75.92748619569466,-74.94220613874495,-74.07288869842887,-73.1997297280468,-74.05015120608732,-74.59957985440269,-74.12811081111431,-73.94704037206247,-74.38538692053407,-74.0299006793648,-73.88210477493703,-73.00485450820997,-72.80803888943046,-73.32021088339388,-72.81360550317913,-72.62171799130738,-72.8903341088444,-72.9987218673341,-73.16040031285957,-73.19286477798596,-72.64629658637568,-73.32035569800064,-73.72805613884702,-73.96536527341232,-74.5815617358312,-75.16730708163232,-74.61999945156276,-75.4255364225246,-75.03874094458297,-74.95342594198883,-74.86280825873837,-75.48479913594201,-75.68654581112787,-75.00922524370253,-74.4416707791388,-75.38573970133439,-74.72390575101599,-75.66012208489701,-74.70694268355146,-74.23393135238439,-74.38601643592119,-74.76822096994147,-74.21646178467199,-73.40180279873312,-73.02727867290378,-72.93887978885323,-73.40868464065716,-74.11456389771774,-73.3326240410097,-74.12873045820743,-73.3753219153732,-73.68897435907274,-74.5789550258778,-75.38516034325585,-74.89971483591944,-74.68478427315131,-75.18002468487248,-75.83673732588068,-75.41666097706184,-76.38147496664897,-76.1614557961002,-76.32444411050528,-76.07915456965566,-76.66374616045505,-76.95921363402158,-76.14759983168915,-75.30930833425373,-75.28879755409434,-76.18298564711586,-76.9179817494005,-77.77891959855333,-77.93893460882828,-78.14859131537378,-77.48506477754563,-77.43325428944081,-77.66845633508638,-77.6843562242575,-77.14364207582548,-78.04044737946242,-77.6338488147594,-78.17502007633448,-77.84586848318577,-77.11235203873366,-77.72241837298498,-77.07388416165486,-76.51868344843388,-76.44072534656152,-76.24561585951596,-76.42922786111012,-75.53960228944197,-76.53303897194564,-76.85921236127615,-77.40602121409029,-76.46690666070208,-76.41667139856145,-76.51484865928069,-76.13293644739315,-76.9001504634507,-76.11590540641919,-76.21340002398938,-76.48649721266702,-76.80817341944203,-76.57595207402483,-77.32900578249246,-77.9131641490385,-78.13589872606099,-77.45301118725911,-77.59529175143689,-76.89754226990044,-77.55020658252761,-77.56342627806589,-77.16959487274289,-76.902731413953,-77.23657376784831,-77.55499538965523,-77.43291561957449,-76.60237805219367,-77.0164623260498,-76.0457999962382,-75.68520820885897,-76.49731076695025,-76.46702160919085,-77.3744273534976,-78.12469171639532,-78.31773190526292,-78.00529096275568,-77.79182211076841,-78.11244239797816,-77.79126093769446,-78.31425451952964,-77.85401942906901,-78.19208114687353,-78.33072968199849,-78.53027188172564,-78.89682513056323,-78.17244953475893,-79.13330656290054,-78.21278266841546,-78.18137334147468,-78.56752308132127,-79.23759034229442,-80.18637059628963,-79.87745767459273,-79.72925070859492,-78.9641665047966,-78.86728331679478,-79.02911004470661,-78.9557004715316,-78.93017189204693,-79.1079576597549,-79.15794079890475,-79.51317156711593,-79.48840820556507,-79.22858670260757,-79.90851761074737,-79.68364510778338,-80.39909328147769,-81.1835585613735,-80.64272447535768,-79.97208075132221,-79.26681335223839,-79.45238169142976,-80.09290956705809,-80.17117611179128,-79.4967180043459,-78.58633832633495,-78.45801294688135,-77.97977245179936,-77.97687944443896,-77.3602474075742,-76.7042547557503,-76.35755197238177,-76.29674750892445,-76.51910417806357,-77.10868143616244,-76.74796039704233,-76.50768131064251,-77.40486862510443,-76.83995192684233,-77.16811994975433,-77.09337997855619,-77.84387564752251,-77.6019583218731,-78.49351088982075,-79.0208123861812,-78.63331759814173,-78.19587497645989,-77.8815444232896,-78.10368892038241,-77.86354661500081,-78.16265726136044,-78.74315855139866,-78.55121532035992,-78.4179990645498,-78.06771855149418,-77.33085221704096,-77.84442142536864,-77.98185040149838,-78.28786493372172,-78.6253923731856,-79.09088393952698,-79.341145909857,-79.61698662210256,-80.22234661830589,-81.173634509556,-82.08837311342359,-81.37140985066071,-81.40306218154728,-80.63184291636571,-80.92945498693734,-80.79669737722725,-80.73702047206461,-80.62706809397787,-81.55446080118418,-81.46377625595778,-82.43495861301199,-81.65508315479383,-81.26112978020683,-80.75962761417031,-81.4513971186243,-82.0556960250251,-81.957970560994,-81.86122228950262,-82.59037287253886,-83.18572208564728,-82.54386029858142,-83.42533154645935,-83.19029943458736,-83.87179729528725,-83.89606052869931,-84.04866206040606,-83.31953617045656,-83.64535753941163,-82.88596547394991,-83.74462376022711,-83.43359485687688,-82.5884321872145,-82.93872542586178,-83.4785296288319,-83.80362116592005,-83.60517426207662,-84.51144463988021,-84.32345507806167,-84.60272942343727,-84.63242392707616,-84.0832992810756,-84.17942399950698,-83.58575282804668,-84.47675691358745,-84.27920345868915,-85.11485747573897,-86.01719942130148,-85.34515943005681,-85.36568315839395,-85.47874743724242,-85.30416378704831,-85.86840270925313,-85.02359987189993,-85.05402661720291,-84.29103515064344,-83.96303648268804,-84.69510162062943,-84.28232388850302,-83.56217921059579,-83.17107310704887,-83.39685299247503,-83.38935802597553,-83.65260585444048,-84.45959503669292,-84.3670181389898,-84.74859021836892,-85.11006161756814,-84.80538691673428,-84.79943099338561,-85.70943023078144,-86.29146310128272,-85.90808357764035,-85.95858833892271,-86.58827096177265,-86.09477442875504,-86.85327826999128,-86.27438137028366,-85.81144004082307,-86.79912577057257,-87.6014712001197,-86.62943071406335,-86.82068122643977,-86.81303681991994,-86.87654075585306,-87.07636311231181,-87.83365890476853,-88.73448583250865,-89.46574047487229,-89.51635018875822,-89.73283672286198,-89.24025878449902,-88.9315748498775,-89.24101528292522,-89.77409595064819,-89.63104603905231,-89.50266119232401,-90.41315369540825,-90.73962237220258,-89.84959339024499,-90.65748672746122,-90.33724689297378,-90.82232887670398,-90.360960168764,-89.62034199992195,-89.91115485923365,-88.93735572509468,-89.22885169321671,-88.87875896226615,-89.77443639142439,-89.87801166344434,-89.04056884301826,-89.22520792484283,-89.59464669087902,-89.2366853049025,-89.73606782406569,-89.4825499379076,-88.86568977870047,-88.22599912853912,-87.29166755825281,-88.12449941644445,-87.48996084742248,-86.72107019228861,-87.540235910099,-87.7674632514827,-87.37451858399436,-87.97523554973304,-87.63631306169555,-87.11250252323225,-86.47090895334259,-86.45144010428339,-85.95954522816464,-86.2135033882223,-86.89153425488621,-86.37693596957251,-86.87035194644704,-86.9021466509439,-87.84088518517092,-88.64415044337511,-88.42753947991878,-87.73301975708455,-86.75050400849432,-86.23674539709464,-86.18382663326338,-85.59397286502644,-85.26890759542584,-85.11234686058015,-84.13989678723738,-84.75378812942654,-84.04920939356089,-84.77505404641852,-84.30881652515382,-85.2598375719972,-84.8109793132171,-84.30847008898854,-83.71635714266449,-84.2777729909867,-84.50379327312112,-84.74363418482244,-84.27450233558193,-83.78602044237778,-83.9755978747271,-83.06936371233314,-82.52978681446984,-81.70679877325892,-81.99389412952587,-81.0620625349693,-81.6823405539617,-82.36333301803097,-82.83766790898517,-82.43746539298445,-81.934921013657,-82.2687403196469,-82.29991787252948,-82.1627895901911,-82.52938990714028,-81.87241082498804,-81.76403185911477,-81.27035794593394,-81.14291514409706,-80.68867809372023,-80.5281591033563,-80.11285609938204,-79.45973696280271,-80.21486154617742,-80.71812963206321,-80.80414670845494,-80.93513248302042,-81.65342845581472,-81.7575242081657,-81.84265925968066,-82.06032422930002,-83.02943087229505,-83.20149037940428,-83.79394422192127,-83.92040859768167,-84.36955480091274,-84.16870080912486,-84.01527101919055,-83.80909106181934,-84.7072150488384,-84.45131721021608,-84.7818561932072,-84.15630240924656,-84.98366250516847,-84.38214545464143,-83.71497905161232,-84.52063967194408,-85.41104414314032,-85.23926721839234,-85.48123422265053,-84.89861102122813,-85.72969700023532,-85.90318045252934,-85.8431899594143,-85.39030721690506,-85.93512406246737,-85.7597578689456,-85.97507663676515,-85.52809088397771,-85.28062103129923,-86.16028174990788,-87.05848576733842,-87.44525181129575,-87.67417555069551,-87.14220185298473,-86.5439220322296,-86.46095318254083,-86.07827143650502,-86.90882835676894,-86.91174476779997,-87.84598752530292,-87.41010526614264,-87.03594867698848,-86.13762556947768,-85.71326822414994,-84.86899931496009,-85.25336628733203,-84.31939320405945,-85.12513606622815,-85.99839631374925,-85.5859852922149,-86.00771883642301,-86.06650714902207,-86.45958149246871,-86.84262820426375,-87.45099068712443,-86.65662173554301,-86.63225376605988,-86.51709607010707,-86.71698888437822,-87.66188102960587,-87.63092919578776,-87.81673331698403,-86.86249129800126,-87.84869502531365,-87.49252977548167,-86.68112224340439,-86.5429045795463,-86.31444422202185,-86.83830148680136,-86.01073293201625,-86.81389122176915,-86.96420053299516,-86.54142684070393,-86.16708945669234,-86.04204515647143,-85.74797249538824,-86.35714402748272,-86.20016332296655,-85.5379996583797,-84.64151953253895,-85.00470383092761,-84.43663621554151,-84.82225637789816,-84.2940722424537,-84.8764513535425,-85.07516517443582,-84.355419812724,-84.528359785676,-83.99448556033894,-83.3008357421495,-83.52265619719401,-83.24752243189141,-82.64092181809247,-82.94636665843427,-82.76675736624748,-82.347085039597,-82.55783154955134,-83.26997221121565,-82.78732010209933,-83.56433269754052,-83.89563711127266,-84.78212050255388,-84.58305059932172,-83.68891049316153,-84.07443343568593,-83.7821893482469,-83.99613887956366,-83.30936052650213,-84.13606875902042,-83.18490235647187,-82.92463187221438,-82.87644481705502,-82.41874253330752,-82.47052884753793,-83.16442041937262,-82.7329317452386,-83.59958283789456,-84.53108453471214,-84.73900624830276,-84.8957761162892,-85.19047883152962,-85.43296307558194,-84.45730224857107,-84.05044622952119,-84.87578470259905,-84.77492831228301,-85.29785481514409,-85.07023779209703,-85.64080943074077,-86.49031479842961,-86.0196608514525,-86.88008705992252,-87.11703042360023,-87.95361474854872,-88.03711651964113,-88.49138804525137,-88.98542648460716,-89.07431758847088,-88.96925437171012,-87.97336150379851,-87.06396042415872,-87.9501176001504,-88.17875900585204,-88.23741223150864,-88.78535493044183,-88.2780606620945,-87.6967668896541,-87.86772135132924,-87.42594076879323,-88.09711420629174,-87.31667947210371,-86.67121126782149,-86.87554311193526,-86.50567278405651,-86.2698610369116,-86.05333708412945,-86.89959358703345,-87.71288481820375,-87.39528433699161,-86.89185711042956,-87.02357282117009,-86.31019238615409,-87.2280124234967,-86.90176029736176,-87.37054934725165,-87.90988867310807,-87.7600892232731,-86.78595648240298,-87.03810807596892,-87.3595040277578,-87.53799265855923,-87.97006401279941,-88.79849469149485,-89.00230239890516,-89.62926389835775,-90.03750583715737,-89.60780120547861,-89.42673114268109,-89.9850038094446,-89.90831557894126,-89.2345625157468,-90.23413818050176,-90.97669305605814,-91.9561748453416,-91.3902986375615,-90.7961065932177,-91.70434012822807,-92.21924575790763,-91.63902987912297,-90.88552226684988,-91.28732414357364,-92.26960586151108,-91.6564823766239,-90.91386542236432,-91.3439998999238,-92.32984703453258,-91.68945620767772,-90.991774703376,-91.37825730163604,-91.7876910273917,-91.5954545782879,-91.56099801464006,-92.20892488816753,-91.95371559867635,-91.8516240217723,-92.01734546665102,-92.21419658791274,-93.01521737501025,-93.1468076184392,-93.1687840395607,-94.06185553269461,-94.24775858456269,-94.22351256944239,-93.63782212976366,-92.67681938875467,-93.347452679649,-92.7393090352416,-92.9945576256141,-92.48873546300456,-92.24974289815873,-93.08115665568039,-93.95900861499831,-93.49198045115918,-93.07142307190225,-93.13824189361185,-92.38258962938562,-93.28143598372117,-92.93034961773083,-92.07188007701188,-92.45479263551533,-91.45765869971365,-91.97927597770467,-91.13918486936018,-92.00951583636925,-91.75222225487232,-92.36139226146042,-91.77438966697082,-90.84052206669003,-90.80736539559439,-90.98069373099133,-90.96422383142635,-91.32465439708903,-91.94007465010509,-92.84937079856172,-92.96721581555903,-92.66748653165996,-92.79063176969066,-93.7018188056536,-93.41466930974275,-92.7861855183728,-92.39029423054308,-92.41499683074653,-93.18751442432404,-92.64685145486146,-92.5519006610848,-91.56820892775431,-91.12516393931583,-91.83530656900257,-91.57200675783679,-91.90792986471206,-91.42136202100664,-90.50598226673901,-89.89234988112003,-90.72421102272347,-90.15568662062287,-89.33938075834885,-89.4887889251113,-89.14891571784392,-88.27497845934704,-87.61376673961058,-86.94262630166486,-87.30072867311537,-87.41956544294953,-87.29811761341989,-87.41876806830987,-87.59250821452588,-86.89172467077151,-87.75161679182202,-88.18006733525544,-88.78344157105312,-89.01731684058905,-88.12203194247559,-88.34685137076303,-87.71849084226415,-88.4688786091283,-89.09647539863363,-88.84163561603054,-89.13090872438625,-88.1671713385731,-88.65328439604491,-87.71704901196063,-87.96288248850033,-87.11154648056254,-86.31923123961315,-85.92716709757224,-86.8411752381362,-87.56973059335724,-87.25316364923492,-86.79157978203148,-87.57620590925217,-87.51882900111377,-87.08521534409374,-87.13503584219143,-87.74203707044944,-87.78524485090747,-86.8535156082362,-86.16252872394398,-85.3297760291025,-84.70165995834395,-85.65517831919715,-86.0784207386896,-85.33306608814746,-84.94800586579368,-85.42837379127741,-85.70832965429872,-84.75479585397989,-85.00037452019751,-85.32100543100387,-85.03617731388658,-85.37587293982506,-85.21844278275967,-86.09579520113766,-85.15165168885142,-84.1962647815235,-84.21717621246353,-83.35656972415745,-82.80093067325652,-83.00785619439557,-82.77246034238487,-82.5390508309938,-82.21359561569989,-81.92265785392374,-81.75993581255898,-80.76068773958832,-80.73862736485898,-80.93370460253209,-81.04746966296807,-80.80654309922829,-81.22346545336768,-80.27866043848917,-79.69057018775493,-79.9190689297393,-80.68039884138852,-80.20353012857959,-79.43718698155135,-79.58624114375561,-79.24787392606959,-79.38224261533469,-79.41547076590359,-79.25500778341666,-78.52908902335912,-78.69881299883127,-78.53723776247352,-78.3871567575261,-77.92894054716453,-77.36815209453925,-76.50813697325066,-75.71441230317578,-75.18953322106972,-74.8150949110277,-74.81759525137022,-75.60648402711377,-76.33548356220126,-76.4551516235806,-77.33125461731106,-77.26973268855363,-77.70896115107462,-77.48744289996102,-76.75055155716836,-76.7374045024626,-76.84771161805838,-77.80666681705043,-78.39907111180946,-79.2317638960667,-79.96938765980303,-79.77896198350936,-80.55475573521107,-80.69848501915112,-80.43822414847091,-80.39388142433017,-81.08391313115135,-81.8665467244573,-82.52657308988273,-82.35596981737763,-81.84318829653785,-82.09504056442529,-81.40464789699763,-81.57321669207886,-80.89965512510389,-80.78559986269102,-80.04406909225509,-79.14218612993136,-79.31320328684524,-78.35317482007667,-77.67689094459638,-78.54161381302401,-79.05408574966714,-79.07311420422047,-79.75330921215937,-79.09057443356141,-80.06876660929993,-79.31405934737995,-78.91276460606605,-78.26653350656852,-78.43004834186286,-79.30019567813724,-79.69312712736428,-78.91786842187867,-78.8506794096902,-78.3504273458384,-77.94458349375054,-78.1937265205197,-77.79822799563408,-77.59001507703215,-77.74362753564492,-77.22821251535788,-77.82752155372873,-77.44846514472738,-77.01919675851241,-77.225355099421,-78.10856501758099,-78.05468542408198,-78.6821714551188,-79.66619017906487,-79.77208869112656,-80.65403136564419,-79.78601141553372,-79.76477262191474,-78.93431264488026,-78.00717451004311,-77.75045921187848,-78.65458057215437,-79.21494126366451,-78.33892046380788,-78.74775420222431,-78.26430527912453,-78.0028910310939,-77.85480849910527,-77.87313969619572,-77.27218134794384,-77.42888845968992,-77.67654271097854,-78.65314372908324,-78.52461269171908,-78.28962123719975,-77.72110510524362,-77.22275801375508,-76.6236696220003,-77.58538554422557,-76.80126423761249,-77.25072829192504,-77.24700932670385,-77.01996697904542,-77.04604027140886,-77.39966412074864,-76.80696811713278,-77.6585030471906,-77.69087478751317,-77.16186471283436,-76.83184535056353],"type":"scatter3d"},{"customdata":[["2024-07-24T11:35:06.010000"],["2024-07-24T11:35:07.010000"],["2024-07-24T11:35:08.010000"],["2024-07-24T11:35:09.010000"],["2024-07-24T11:35:10.010000"],["2024-07-24T11:35:11.010000"],["2024-07-24T11:35:12.010000"],["2024-07-24T11:35:13.010000"],["2024-07-24T11:35:14.010000"],["2024-07-24T11:35:15.010000"],["2024-07-24T11:35:16.010000"],["2024-07-24T11:35:17.010000"],["2024-07-24T11:35:18.010000"],["2024-07-24T11:35:19.010000"],["2024-07-24T11:35:20.010000"],["2024-07-24T11:35:21.010000"],["2024-07-24T11:35:22.010000"],["2024-07-24T11:35:23.010000"],["2024-07-24T11:35:24.010000"],["2024-07-24T11:35:25.010000"],["2024-07-24T11:35:26.010000"],["2024-07-24T11:35:27.010000"],["2024-07-24T11:35:28.010000"],["2024-07-24T11:35:29.010000"],["2024-07-24T11:35:30.010000"],["2024-07-24T11:35:31.010000"],["2024-07-24T11:35:32.010000"],["2024-07-24T11:35:33.010000"],["2024-07-24T11:35:34.010000"],["2024-07-24T11:35:35.010000"],["2024-07-24T11:35:36.010000"],["2024-07-24T11:35:37.010000"],["2024-07-24T11:35:38.010000"],["2024-07-24T11:35:39.010000"],["2024-07-24T11:35:40.010000"],["2024-07-24T11:35:41.010000"],["2024-07-24T11:35:42.010000"],["2024-07-24T11:35:43.010000"],["2024-07-24T11:35:44.010000"],["2024-07-24T11:35:45.010000"],["2024-07-24T11:35:46.010000"],["2024-07-24T11:35:47.010000"],["2024-07-24T11:35:48.010000"],["2024-07-24T11:35:49.010000"],["2024-07-24T11:35:50.010000"],["2024-07-24T11:35:51.010000"],["2024-07-24T11:35:52.010000"],["2024-07-24T11:35:53.010000"],["2024-07-24T11:35:54.010000"],["2024-07-24T11:35:55.010000"],["2024-07-24T11:35:56.010000"],["2024-07-24T11:35:57.010000"],["2024-07-24T11:35:58.010000"],["2024-07-24T11:35:59.010000"],["2024-07-24T11:36:00.010000"],["2024-07-24T11:36:01.010000"],["2024-07-24T11:36:02.010000"],["2024-07-24T11:36:03.010000"],["2024-07-24T11:36:04.010000"],["2024-07-24T11:36:05.010000"],["2024-07-24T11:36:06.010000"],["2024-07-24T11:36:07.010000"],["2024-07-24T11:36:08.010000"],["2024-07-24T11:36:09.010000"],["2024-07-24T11:36:10.010000"],["2024-07-24T11:36:11.010000"],["2024-07-24T11:36:12.010000"],["2024-07-24T11:36:13.010000"],["2024-07-24T11:36:14.010000"],["2024-07-24T11:36:15.010000"],["2024-07-24T11:36:16.010000"],["2024-07-24T11:36:17.010000"],["2024-07-24T11:36:18.010000"],["2024-07-24T11:36:19.010000"],["2024-07-24T11:36:20.010000"],["2024-07-24T11:36:21.010000"],["2024-07-24T11:36:22.010000"],["2024-07-24T11:36:23.010000"],["2024-07-24T11:36:24.010000"],["2024-07-24T11:36:25.010000"],["2024-07-24T11:36:26.010000"],["2024-07-24T11:36:27.010000"],["2024-07-24T11:36:28.010000"],["2024-07-24T11:36:29.010000"],["2024-07-24T11:36:30.010000"],["2024-07-24T11:36:31.010000"],["2024-07-24T11:36:32.010000"],["2024-07-24T11:36:33.010000"],["2024-07-24T11:36:34.010000"],["2024-07-24T11:36:35.010000"],["2024-07-24T11:36:36.010000"],["2024-07-24T11:36:37.010000"],["2024-07-24T11:36:38.010000"],["2024-07-24T11:36:39.010000"],["2024-07-24T11:36:40.010000"],["2024-07-24T11:36:41.010000"],["2024-07-24T11:36:42.010000"],["2024-07-24T11:36:43.010000"],["2024-07-24T11:36:44.010000"],["2024-07-24T11:36:45.010000"],["2024-07-24T11:36:46.010000"],["2024-07-24T11:36:47.010000"],["2024-07-24T11:36:48.010000"],["2024-07-24T11:36:49.010000"],["2024-07-24T11:36:50.010000"],["2024-07-24T11:36:51.010000"],["2024-07-24T11:36:52.010000"],["2024-07-24T11:36:53.010000"],["2024-07-24T11:36:54.010000"],["2024-07-24T11:36:55.010000"],["2024-07-24T11:36:56.010000"],["2024-07-24T11:36:57.010000"],["2024-07-24T11:36:58.010000"],["2024-07-24T11:36:59.010000"],["2024-07-24T11:37:00.010000"],["2024-07-24T11:37:01.010000"],["2024-07-24T11:37:02.010000"],["2024-07-24T11:37:03.010000"],["2024-07-24T11:37:04.010000"],["2024-07-24T11:37:05.010000"],["2024-07-24T11:37:06.010000"],["2024-07-24T11:37:07.010000"],["2024-07-24T11:37:08.010000"],["2024-07-24T11:37:09.010000"],["2024-07-24T11:37:10.010000"],["2024-07-24T11:37:11.010000"],["2024-07-24T11:37:12.010000"],["2024-07-24T11:37:13.010000"],["2024-07-24T11:37:14.010000"],["2024-07-24T11:37:15.010000"],["2024-07-24T11:37:16.010000"],["2024-07-24T11:37:17.010000"],["2024-07-24T11:37:18.010000"],["2024-07-24T11:37:19.010000"],["2024-07-24T11:37:20.010000"],["2024-07-24T11:37:21.010000"],["2024-07-24T11:37:22.010000"],["2024-07-24T11:37:23.010000"],["2024-07-24T11:37:24.010000"],["2024-07-24T11:37:25.010000"],["2024-07-24T11:37:26.010000"],["2024-07-24T11:37:27.010000"],["2024-07-24T11:37:28.010000"],["2024-07-24T11:37:29.010000"],["2024-07-24T11:37:30.010000"],["2024-07-24T11:37:31.010000"],["2024-07-24T11:37:32.010000"],["2024-07-24T11:37:33.010000"],["2024-07-24T11:37:34.010000"],["2024-07-24T11:37:35.010000"],["2024-07-24T11:37:36.010000"],["2024-07-24T11:37:37.010000"],["2024-07-24T11:37:38.010000"],["2024-07-24T11:37:39.010000"],["2024-07-24T11:37:40.010000"],["2024-07-24T11:37:41.010000"],["2024-07-24T11:37:42.010000"],["2024-07-24T11:37:43.010000"],["2024-07-24T11:37:44.010000"],["2024-07-24T11:37:45.010000"],["2024-07-24T11:37:46.010000"],["2024-07-24T11:37:47.010000"],["2024-07-24T11:37:48.010000"],["2024-07-24T11:37:49.010000"],["2024-07-24T11:37:50.010000"],["2024-07-24T11:37:51.010000"],["2024-07-24T11:37:52.010000"],["2024-07-24T11:37:53.010000"],["2024-07-24T11:37:54.010000"],["2024-07-24T11:37:55.010000"],["2024-07-24T11:37:56.010000"],["2024-07-24T11:37:57.010000"],["2024-07-24T11:37:58.010000"],["2024-07-24T11:37:59.010000"],["2024-07-24T11:38:00.010000"],["2024-07-24T11:38:01.010000"],["2024-07-24T11:38:02.010000"],["2024-07-24T11:38:03.010000"],["2024-07-24T11:38:04.010000"],["2024-07-24T11:38:05.010000"],["2024-07-24T11:38:06.010000"],["2024-07-24T11:38:07.010000"],["2024-07-24T11:38:08.010000"],["2024-07-24T11:38:09.010000"],["2024-07-24T11:38:10.010000"],["2024-07-24T11:38:11.010000"],["2024-07-24T11:38:12.010000"],["2024-07-24T11:38:13.010000"],["2024-07-24T11:38:14.010000"],["2024-07-24T11:38:15.010000"],["2024-07-24T11:38:16.010000"],["2024-07-24T11:38:17.010000"],["2024-07-24T11:38:18.010000"],["2024-07-24T11:38:19.010000"],["2024-07-24T11:38:20.010000"],["2024-07-24T11:38:21.010000"],["2024-07-24T11:38:22.010000"],["2024-07-24T11:38:23.010000"],["2024-07-24T11:38:24.010000"],["2024-07-24T11:38:25.010000"],["2024-07-24T11:38:26.010000"],["2024-07-24T11:38:27.010000"],["2024-07-24T11:38:28.010000"],["2024-07-24T11:38:29.010000"],["2024-07-24T11:38:30.010000"],["2024-07-24T11:38:31.010000"],["2024-07-24T11:38:32.010000"],["2024-07-24T11:38:33.010000"],["2024-07-24T11:38:34.010000"],["2024-07-24T11:38:35.010000"],["2024-07-24T11:38:36.010000"],["2024-07-24T11:38:37.010000"],["2024-07-24T11:38:38.010000"],["2024-07-24T11:38:39.010000"],["2024-07-24T11:38:40.010000"],["2024-07-24T11:38:41.010000"],["2024-07-24T11:38:42.010000"],["2024-07-24T11:38:43.010000"],["2024-07-24T11:38:44.010000"],["2024-07-24T11:38:45.010000"],["2024-07-24T11:38:46.010000"],["2024-07-24T11:38:47.010000"],["2024-07-24T11:38:48.010000"],["2024-07-24T11:38:49.010000"],["2024-07-24T11:38:50.010000"],["2024-07-24T11:38:51.010000"],["2024-07-24T11:38:52.010000"],["2024-07-24T11:38:53.010000"],["2024-07-24T11:38:54.010000"],["2024-07-24T11:38:55.010000"],["2024-07-24T11:38:56.010000"],["2024-07-24T11:38:57.010000"],["2024-07-24T11:38:58.010000"],["2024-07-24T11:38:59.010000"],["2024-07-24T11:39:00.010000"],["2024-07-24T11:39:01.010000"],["2024-07-24T11:39:02.010000"],["2024-07-24T11:39:03.010000"],["2024-07-24T11:39:04.010000"],["2024-07-24T11:39:05.010000"],["2024-07-24T11:39:06.010000"],["2024-07-24T11:39:07.010000"],["2024-07-24T11:39:08.010000"],["2024-07-24T11:39:09.010000"],["2024-07-24T11:39:10.010000"],["2024-07-24T11:39:11.010000"],["2024-07-24T11:39:12.010000"],["2024-07-24T11:39:13.010000"],["2024-07-24T11:39:14.010000"],["2024-07-24T11:39:15.010000"],["2024-07-24T11:39:16.010000"],["2024-07-24T11:39:17.010000"],["2024-07-24T11:39:18.010000"],["2024-07-24T11:39:19.010000"],["2024-07-24T11:39:20.010000"],["2024-07-24T11:39:21.010000"],["2024-07-24T11:39:22.010000"],["2024-07-24T11:39:23.010000"],["2024-07-24T11:39:24.010000"],["2024-07-24T11:39:25.010000"],["2024-07-24T11:39:26.010000"],["2024-07-24T11:39:27.010000"],["2024-07-24T11:39:28.010000"],["2024-07-24T11:39:29.010000"],["2024-07-24T11:39:30.010000"],["2024-07-24T11:39:31.010000"],["2024-07-24T11:39:32.010000"],["2024-07-24T11:39:33.010000"],["2024-07-24T11:39:34.010000"],["2024-07-24T11:39:35.010000"],["2024-07-24T11:39:36.010000"],["2024-07-24T11:39:37.010000"],["2024-07-24T11:39:38.010000"],["2024-07-24T11:39:39.010000"],["2024-07-24T11:39:40.010000"],["2024-07-24T11:39:41.010000"],["2024-07-24T11:39:42.010000"],["2024-07-24T11:39:43.010000"],["2024-07-24T11:39:44.010000"],["2024-07-24T11:39:45.010000"],["2024-07-24T11:39:46.010000"],["2024-07-24T11:39:47.010000"],["2024-07-24T11:39:48.010000"],["2024-07-24T11:39:49.010000"],["2024-07-24T11:39:50.010000"],["2024-07-24T11:39:51.010000"],["2024-07-24T11:39:52.010000"],["2024-07-24T11:39:53.010000"],["2024-07-24T11:39:54.010000"],["2024-07-24T11:39:55.010000"],["2024-07-24T11:39:56.010000"],["2024-07-24T11:39:57.010000"],["2024-07-24T11:39:58.010000"],["2024-07-24T11:39:59.010000"],["2024-07-24T11:40:00.010000"],["2024-07-24T11:40:01.010000"],["2024-07-24T11:40:02.010000"],["2024-07-24T11:40:03.010000"],["2024-07-24T11:40:04.010000"],["2024-07-24T11:40:05.010000"],["2024-07-24T11:40:06.010000"],["2024-07-24T11:40:07.010000"],["2024-07-24T11:40:08.010000"],["2024-07-24T11:40:09.010000"],["2024-07-24T11:40:10.010000"],["2024-07-24T11:40:11.010000"],["2024-07-24T11:40:12.010000"],["2024-07-24T11:40:13.010000"],["2024-07-24T11:40:14.010000"],["2024-07-24T11:40:15.010000"],["2024-07-24T11:40:16.010000"],["2024-07-24T11:40:17.010000"],["2024-07-24T11:40:18.010000"],["2024-07-24T11:40:19.010000"],["2024-07-24T11:40:20.010000"],["2024-07-24T11:40:21.010000"],["2024-07-24T11:40:22.010000"],["2024-07-24T11:40:23.010000"],["2024-07-24T11:40:24.010000"],["2024-07-24T11:40:25.010000"],["2024-07-24T11:40:26.010000"],["2024-07-24T11:40:27.010000"],["2024-07-24T11:40:28.010000"],["2024-07-24T11:40:29.010000"],["2024-07-24T11:40:30.010000"],["2024-07-24T11:40:31.010000"],["2024-07-24T11:40:32.010000"],["2024-07-24T11:40:33.010000"],["2024-07-24T11:40:34.010000"],["2024-07-24T11:40:35.010000"],["2024-07-24T11:40:36.010000"],["2024-07-24T11:40:37.010000"],["2024-07-24T11:40:38.010000"],["2024-07-24T11:40:39.010000"],["2024-07-24T11:40:40.010000"],["2024-07-24T11:40:41.010000"],["2024-07-24T11:40:42.010000"],["2024-07-24T11:40:43.010000"],["2024-07-24T11:40:44.010000"],["2024-07-24T11:40:45.010000"],["2024-07-24T11:40:46.010000"],["2024-07-24T11:40:47.010000"],["2024-07-24T11:40:48.010000"],["2024-07-24T11:40:49.010000"],["2024-07-24T11:40:50.010000"],["2024-07-24T11:40:51.010000"],["2024-07-24T11:40:52.010000"],["2024-07-24T11:40:53.010000"],["2024-07-24T11:40:54.010000"],["2024-07-24T11:40:55.010000"],["2024-07-24T11:40:56.010000"],["2024-07-24T11:40:57.010000"],["2024-07-24T11:40:58.010000"],["2024-07-24T11:40:59.010000"],["2024-07-24T11:41:00.010000"],["2024-07-24T11:41:01.010000"],["2024-07-24T11:41:02.010000"],["2024-07-24T11:41:03.010000"],["2024-07-24T11:41:04.010000"],["2024-07-24T11:41:05.010000"],["2024-07-24T11:41:06.010000"],["2024-07-24T11:41:07.010000"],["2024-07-24T11:41:08.010000"],["2024-07-24T11:41:09.010000"],["2024-07-24T11:41:10.010000"],["2024-07-24T11:41:11.010000"],["2024-07-24T11:41:12.010000"],["2024-07-24T11:41:13.010000"],["2024-07-24T11:41:14.010000"],["2024-07-24T11:41:15.010000"],["2024-07-24T11:41:16.010000"],["2024-07-24T11:41:17.010000"],["2024-07-24T11:41:18.010000"],["2024-07-24T11:41:19.010000"],["2024-07-24T11:41:20.010000"],["2024-07-24T11:41:21.010000"],["2024-07-24T11:41:22.010000"],["2024-07-24T11:41:23.010000"],["2024-07-24T11:41:24.010000"],["2024-07-24T11:41:25.010000"],["2024-07-24T11:41:26.010000"],["2024-07-24T11:41:27.010000"],["2024-07-24T11:41:28.010000"],["2024-07-24T11:41:29.010000"],["2024-07-24T11:41:30.010000"],["2024-07-24T11:41:31.010000"],["2024-07-24T11:41:32.010000"],["2024-07-24T11:41:33.010000"],["2024-07-24T11:41:34.010000"],["2024-07-24T11:41:35.010000"],["2024-07-24T11:41:36.010000"],["2024-07-24T11:41:37.010000"],["2024-07-24T11:41:38.010000"],["2024-07-24T11:41:39.010000"],["2024-07-24T11:41:40.010000"],["2024-07-24T11:41:41.010000"],["2024-07-24T11:41:42.010000"],["2024-07-24T11:41:43.010000"],["2024-07-24T11:41:44.010000"],["2024-07-24T11:41:45.010000"],["2024-07-24T11:41:46.010000"],["2024-07-24T11:41:47.010000"],["2024-07-24T11:41:48.010000"],["2024-07-24T11:41:49.010000"],["2024-07-24T11:41:50.010000"],["2024-07-24T11:41:51.010000"],["2024-07-24T11:41:52.010000"],["2024-07-24T11:41:53.010000"],["2024-07-24T11:41:54.010000"],["2024-07-24T11:41:55.010000"],["2024-07-24T11:41:56.010000"],["2024-07-24T11:41:57.010000"],["2024-07-24T11:41:58.010000"],["2024-07-24T11:41:59.010000"],["2024-07-24T11:42:00.010000"],["2024-07-24T11:42:01.010000"],["2024-07-24T11:42:02.010000"],["2024-07-24T11:42:03.010000"],["2024-07-24T11:42:04.010000"],["2024-07-24T11:42:05.010000"],["2024-07-24T11:42:06.010000"],["2024-07-24T11:42:07.010000"],["2024-07-24T11:42:08.010000"],["2024-07-24T11:42:09.010000"],["2024-07-24T11:42:10.010000"],["2024-07-24T11:42:11.010000"],["2024-07-24T11:42:12.010000"],["2024-07-24T11:42:13.010000"],["2024-07-24T11:42:14.010000"],["2024-07-24T11:42:15.010000"],["2024-07-24T11:42:16.010000"],["2024-07-24T11:42:17.010000"],["2024-07-24T11:42:18.010000"],["2024-07-24T11:42:19.010000"],["2024-07-24T11:42:20.010000"],["2024-07-24T11:42:21.010000"],["2024-07-24T11:42:22.010000"],["2024-07-24T11:42:23.010000"],["2024-07-24T11:42:24.010000"],["2024-07-24T11:42:25.010000"],["2024-07-24T11:42:26.010000"],["2024-07-24T11:42:27.010000"],["2024-07-24T11:42:28.010000"],["2024-07-24T11:42:29.010000"],["2024-07-24T11:42:30.010000"],["2024-07-24T11:42:31.010000"],["2024-07-24T11:42:32.010000"],["2024-07-24T11:42:33.010000"],["2024-07-24T11:42:34.010000"],["2024-07-24T11:42:35.010000"],["2024-07-24T11:42:36.010000"],["2024-07-24T11:42:37.010000"],["2024-07-24T11:42:38.010000"],["2024-07-24T11:42:39.010000"],["2024-07-24T11:42:40.010000"],["2024-07-24T11:42:41.010000"],["2024-07-24T11:42:42.010000"],["2024-07-24T11:42:43.010000"],["2024-07-24T11:42:44.010000"],["2024-07-24T11:42:45.010000"],["2024-07-24T11:42:46.010000"],["2024-07-24T11:42:47.010000"],["2024-07-24T11:42:48.010000"],["2024-07-24T11:42:49.010000"],["2024-07-24T11:42:50.010000"],["2024-07-24T11:42:51.010000"],["2024-07-24T11:42:52.010000"],["2024-07-24T11:42:53.010000"],["2024-07-24T11:42:54.010000"],["2024-07-24T11:42:55.010000"],["2024-07-24T11:42:56.010000"],["2024-07-24T11:42:57.010000"],["2024-07-24T11:42:58.010000"],["2024-07-24T11:42:59.010000"],["2024-07-24T11:43:00.010000"],["2024-07-24T11:43:01.010000"],["2024-07-24T11:43:02.010000"],["2024-07-24T11:43:03.010000"],["2024-07-24T11:43:04.010000"],["2024-07-24T11:43:05.010000"],["2024-07-24T11:43:06.010000"],["2024-07-24T11:43:07.010000"],["2024-07-24T11:43:08.010000"],["2024-07-24T11:43:09.010000"],["2024-07-24T11:43:10.010000"],["2024-07-24T11:43:11.010000"],["2024-07-24T11:43:12.010000"],["2024-07-24T11:43:13.010000"],["2024-07-24T11:43:14.010000"],["2024-07-24T11:43:15.010000"],["2024-07-24T11:43:16.010000"],["2024-07-24T11:43:17.010000"],["2024-07-24T11:43:18.010000"],["2024-07-24T11:43:19.010000"],["2024-07-24T11:43:20.010000"],["2024-07-24T11:43:21.010000"],["2024-07-24T11:43:22.010000"],["2024-07-24T11:43:23.010000"],["2024-07-24T11:43:24.010000"],["2024-07-24T11:43:25.010000"],["2024-07-24T11:43:26.010000"],["2024-07-24T11:43:27.010000"],["2024-07-24T11:43:28.010000"],["2024-07-24T11:43:29.010000"],["2024-07-24T11:43:30.010000"],["2024-07-24T11:43:31.010000"],["2024-07-24T11:43:32.010000"],["2024-07-24T11:43:33.010000"],["2024-07-24T11:43:34.010000"],["2024-07-24T11:43:35.010000"],["2024-07-24T11:43:36.010000"],["2024-07-24T11:43:37.010000"],["2024-07-24T11:43:38.010000"],["2024-07-24T11:43:39.010000"],["2024-07-24T11:43:40.010000"],["2024-07-24T11:43:41.010000"],["2024-07-24T11:43:42.010000"],["2024-07-24T11:43:43.010000"],["2024-07-24T11:43:44.010000"],["2024-07-24T11:43:45.010000"],["2024-07-24T11:43:46.010000"],["2024-07-24T11:43:47.010000"],["2024-07-24T11:43:48.010000"],["2024-07-24T11:43:49.010000"],["2024-07-24T11:43:50.010000"],["2024-07-24T11:43:51.010000"],["2024-07-24T11:43:52.010000"],["2024-07-24T11:43:53.010000"],["2024-07-24T11:43:54.010000"],["2024-07-24T11:43:55.010000"],["2024-07-24T11:43:56.010000"],["2024-07-24T11:43:57.010000"],["2024-07-24T11:43:58.010000"],["2024-07-24T11:43:59.010000"],["2024-07-24T11:44:00.010000"],["2024-07-24T11:44:01.010000"],["2024-07-24T11:44:02.010000"],["2024-07-24T11:44:03.010000"],["2024-07-24T11:44:04.010000"],["2024-07-24T11:44:05.010000"],["2024-07-24T11:44:06.010000"],["2024-07-24T11:44:07.010000"],["2024-07-24T11:44:08.010000"],["2024-07-24T11:44:09.010000"],["2024-07-24T11:44:10.010000"],["2024-07-24T11:44:11.010000"],["2024-07-24T11:44:12.010000"],["2024-07-24T11:44:13.010000"],["2024-07-24T11:44:14.010000"],["2024-07-24T11:44:15.010000"],["2024-07-24T11:44:16.010000"],["2024-07-24T11:44:17.010000"],["2024-07-24T11:44:18.010000"],["2024-07-24T11:44:19.010000"],["2024-07-24T11:44:20.010000"],["2024-07-24T11:44:21.010000"],["2024-07-24T11:44:22.010000"],["2024-07-24T11:44:23.010000"],["2024-07-24T11:44:24.010000"],["2024-07-24T11:44:25.010000"],["2024-07-24T11:44:26.010000"],["2024-07-24T11:44:27.010000"],["2024-07-24T11:44:28.010000"],["2024-07-24T11:44:29.010000"],["2024-07-24T11:44:30.010000"],["2024-07-24T11:44:31.010000"],["2024-07-24T11:44:32.010000"],["2024-07-24T11:44:33.010000"],["2024-07-24T11:44:34.010000"],["2024-07-24T11:44:35.010000"],["2024-07-24T11:44:36.010000"],["2024-07-24T11:44:37.010000"],["2024-07-24T11:44:38.010000"],["2024-07-24T11:44:39.010000"],["2024-07-24T11:44:40.010000"],["2024-07-24T11:44:41.010000"],["2024-07-24T11:44:42.010000"],["2024-07-24T11:44:43.010000"],["2024-07-24T11:44:44.010000"],["2024-07-24T11:44:45.010000"],["2024-07-24T11:44:46.010000"],["2024-07-24T11:44:47.010000"],["2024-07-24T11:44:48.010000"],["2024-07-24T11:44:49.010000"],["2024-07-24T11:44:50.010000"],["2024-07-24T11:44:51.010000"],["2024-07-24T11:44:52.010000"],["2024-07-24T11:44:53.010000"],["2024-07-24T11:44:54.010000"],["2024-07-24T11:44:55.010000"],["2024-07-24T11:44:56.010000"],["2024-07-24T11:44:57.010000"],["2024-07-24T11:44:58.010000"],["2024-07-24T11:44:59.010000"],["2024-07-24T11:45:00.010000"],["2024-07-24T11:45:01.010000"],["2024-07-24T11:45:02.010000"],["2024-07-24T11:45:03.010000"],["2024-07-24T11:45:04.010000"],["2024-07-24T11:45:05.010000"],["2024-07-24T11:45:06.010000"],["2024-07-24T11:45:07.010000"],["2024-07-24T11:45:08.010000"],["2024-07-24T11:45:09.010000"],["2024-07-24T11:45:10.010000"],["2024-07-24T11:45:11.010000"],["2024-07-24T11:45:12.010000"],["2024-07-24T11:45:13.010000"],["2024-07-24T11:45:14.010000"],["2024-07-24T11:45:15.010000"],["2024-07-24T11:45:16.010000"],["2024-07-24T11:45:17.010000"],["2024-07-24T11:45:18.010000"],["2024-07-24T11:45:19.010000"],["2024-07-24T11:45:20.010000"],["2024-07-24T11:45:21.010000"],["2024-07-24T11:45:22.010000"],["2024-07-24T11:45:23.010000"],["2024-07-24T11:45:24.010000"],["2024-07-24T11:45:25.010000"],["2024-07-24T11:45:26.010000"],["2024-07-24T11:45:27.010000"],["2024-07-24T11:45:28.010000"],["2024-07-24T11:45:29.010000"],["2024-07-24T11:45:30.010000"],["2024-07-24T11:45:31.010000"],["2024-07-24T11:45:32.010000"],["2024-07-24T11:45:33.010000"],["2024-07-24T11:45:34.010000"],["2024-07-24T11:45:35.010000"],["2024-07-24T11:45:36.010000"],["2024-07-24T11:45:37.010000"],["2024-07-24T11:45:38.010000"],["2024-07-24T11:45:39.010000"],["2024-07-24T11:45:40.010000"],["2024-07-24T11:45:41.010000"],["2024-07-24T11:45:42.010000"],["2024-07-24T11:45:43.010000"],["2024-07-24T11:45:44.010000"],["2024-07-24T11:45:45.010000"],["2024-07-24T11:45:46.010000"],["2024-07-24T11:45:47.010000"],["2024-07-24T11:45:48.010000"],["2024-07-24T11:45:49.010000"],["2024-07-24T11:45:50.010000"],["2024-07-24T11:45:51.010000"],["2024-07-24T11:45:52.010000"],["2024-07-24T11:45:53.010000"],["2024-07-24T11:45:54.010000"],["2024-07-24T11:45:55.010000"],["2024-07-24T11:45:56.010000"],["2024-07-24T11:45:57.010000"],["2024-07-24T11:45:58.010000"],["2024-07-24T11:45:59.010000"],["2024-07-24T11:46:00.010000"],["2024-07-24T11:46:01.010000"],["2024-07-24T11:46:02.010000"],["2024-07-24T11:46:03.010000"],["2024-07-24T11:46:04.010000"],["2024-07-24T11:46:05.010000"],["2024-07-24T11:46:06.010000"],["2024-07-24T11:46:07.010000"],["2024-07-24T11:46:08.010000"],["2024-07-24T11:46:09.010000"],["2024-07-24T11:46:10.010000"],["2024-07-24T11:46:11.010000"],["2024-07-24T11:46:12.010000"],["2024-07-24T11:46:13.010000"],["2024-07-24T11:46:14.010000"],["2024-07-24T11:46:15.010000"],["2024-07-24T11:46:16.010000"],["2024-07-24T11:46:17.010000"],["2024-07-24T11:46:18.010000"],["2024-07-24T11:46:19.010000"],["2024-07-24T11:46:20.010000"],["2024-07-24T11:46:21.010000"],["2024-07-24T11:46:22.010000"],["2024-07-24T11:46:23.010000"],["2024-07-24T11:46:24.010000"],["2024-07-24T11:46:25.010000"],["2024-07-24T11:46:26.010000"],["2024-07-24T11:46:27.010000"],["2024-07-24T11:46:28.010000"],["2024-07-24T11:46:29.010000"],["2024-07-24T11:46:30.010000"],["2024-07-24T11:46:31.010000"],["2024-07-24T11:46:32.010000"],["2024-07-24T11:46:33.010000"],["2024-07-24T11:46:34.010000"],["2024-07-24T11:46:35.010000"],["2024-07-24T11:46:36.010000"],["2024-07-24T11:46:37.010000"],["2024-07-24T11:46:38.010000"],["2024-07-24T11:46:39.010000"],["2024-07-24T11:46:40.010000"],["2024-07-24T11:46:41.010000"],["2024-07-24T11:46:42.010000"],["2024-07-24T11:46:43.010000"],["2024-07-24T11:46:44.010000"],["2024-07-24T11:46:45.010000"],["2024-07-24T11:46:46.010000"],["2024-07-24T11:46:47.010000"],["2024-07-24T11:46:48.010000"],["2024-07-24T11:46:49.010000"],["2024-07-24T11:46:50.010000"],["2024-07-24T11:46:51.010000"],["2024-07-24T11:46:52.010000"],["2024-07-24T11:46:53.010000"],["2024-07-24T11:46:54.010000"],["2024-07-24T11:46:55.010000"],["2024-07-24T11:46:56.010000"],["2024-07-24T11:46:57.010000"],["2024-07-24T11:46:58.010000"],["2024-07-24T11:46:59.010000"],["2024-07-24T11:47:00.010000"],["2024-07-24T11:47:01.010000"],["2024-07-24T11:47:02.010000"],["2024-07-24T11:47:03.010000"],["2024-07-24T11:47:04.010000"],["2024-07-24T11:47:05.010000"],["2024-07-24T11:47:06.010000"],["2024-07-24T11:47:07.010000"],["2024-07-24T11:47:08.010000"],["2024-07-24T11:47:09.010000"],["2024-07-24T11:47:10.010000"],["2024-07-24T11:47:11.010000"],["2024-07-24T11:47:12.010000"],["2024-07-24T11:47:13.010000"],["2024-07-24T11:47:14.010000"],["2024-07-24T11:47:15.010000"],["2024-07-24T11:47:16.010000"],["2024-07-24T11:47:17.010000"],["2024-07-24T11:47:18.010000"],["2024-07-24T11:47:19.010000"],["2024-07-24T11:47:20.010000"],["2024-07-24T11:47:21.010000"],["2024-07-24T11:47:22.010000"],["2024-07-24T11:47:23.010000"],["2024-07-24T11:47:24.010000"],["2024-07-24T11:47:25.010000"],["2024-07-24T11:47:26.010000"],["2024-07-24T11:47:27.010000"],["2024-07-24T11:47:28.010000"],["2024-07-24T11:47:29.010000"],["2024-07-24T11:47:30.010000"],["2024-07-24T11:47:31.010000"],["2024-07-24T11:47:32.010000"],["2024-07-24T11:47:33.010000"],["2024-07-24T11:47:34.010000"],["2024-07-24T11:47:35.010000"],["2024-07-24T11:47:36.010000"],["2024-07-24T11:47:37.010000"],["2024-07-24T11:47:38.010000"],["2024-07-24T11:47:39.010000"],["2024-07-24T11:47:40.010000"],["2024-07-24T11:47:41.010000"],["2024-07-24T11:47:42.010000"],["2024-07-24T11:47:43.010000"],["2024-07-24T11:47:44.010000"],["2024-07-24T11:47:45.010000"],["2024-07-24T11:47:46.010000"],["2024-07-24T11:47:47.010000"],["2024-07-24T11:47:48.010000"],["2024-07-24T11:47:49.010000"],["2024-07-24T11:47:50.010000"],["2024-07-24T11:47:51.010000"],["2024-07-24T11:47:52.010000"],["2024-07-24T11:47:53.010000"],["2024-07-24T11:47:54.010000"],["2024-07-24T11:47:55.010000"],["2024-07-24T11:47:56.010000"],["2024-07-24T11:47:57.010000"],["2024-07-24T11:47:58.010000"],["2024-07-24T11:47:59.010000"],["2024-07-24T11:48:00.010000"],["2024-07-24T11:48:01.010000"],["2024-07-24T11:48:02.010000"],["2024-07-24T11:48:03.010000"],["2024-07-24T11:48:04.010000"],["2024-07-24T11:48:05.010000"],["2024-07-24T11:48:06.010000"],["2024-07-24T11:48:07.010000"],["2024-07-24T11:48:08.010000"],["2024-07-24T11:48:09.010000"],["2024-07-24T11:48:10.010000"],["2024-07-24T11:48:11.010000"],["2024-07-24T11:48:12.010000"],["2024-07-24T11:48:13.010000"],["2024-07-24T11:48:14.010000"],["2024-07-24T11:48:15.010000"],["2024-07-24T11:48:16.010000"],["2024-07-24T11:48:17.010000"],["2024-07-24T11:48:18.010000"],["2024-07-24T11:48:19.010000"],["2024-07-24T11:48:20.010000"],["2024-07-24T11:48:21.010000"],["2024-07-24T11:48:22.010000"],["2024-07-24T11:48:23.010000"],["2024-07-24T11:48:24.010000"],["2024-07-24T11:48:25.010000"],["2024-07-24T11:48:26.010000"],["2024-07-24T11:48:27.010000"],["2024-07-24T11:48:28.010000"],["2024-07-24T11:48:29.010000"],["2024-07-24T11:48:30.010000"],["2024-07-24T11:48:31.010000"],["2024-07-24T11:48:32.010000"],["2024-07-24T11:48:33.010000"],["2024-07-24T11:48:34.010000"],["2024-07-24T11:48:35.010000"],["2024-07-24T11:48:36.010000"],["2024-07-24T11:48:37.010000"],["2024-07-24T11:48:38.010000"],["2024-07-24T11:48:39.010000"],["2024-07-24T11:48:40.010000"],["2024-07-24T11:48:41.010000"],["2024-07-24T11:48:42.010000"],["2024-07-24T11:48:43.010000"],["2024-07-24T11:48:44.010000"],["2024-07-24T11:48:45.010000"],["2024-07-24T11:48:46.010000"],["2024-07-24T11:48:47.010000"],["2024-07-24T11:48:48.010000"],["2024-07-24T11:48:49.010000"],["2024-07-24T11:48:50.010000"],["2024-07-24T11:48:51.010000"],["2024-07-24T11:48:52.010000"],["2024-07-24T11:48:53.010000"],["2024-07-24T11:48:54.010000"],["2024-07-24T11:48:55.010000"],["2024-07-24T11:48:56.010000"],["2024-07-24T11:48:57.010000"],["2024-07-24T11:48:58.010000"],["2024-07-24T11:48:59.010000"],["2024-07-24T11:49:00.010000"],["2024-07-24T11:49:01.010000"],["2024-07-24T11:49:02.010000"],["2024-07-24T11:49:03.010000"],["2024-07-24T11:49:04.010000"],["2024-07-24T11:49:05.010000"],["2024-07-24T11:49:06.010000"],["2024-07-24T11:49:07.010000"],["2024-07-24T11:49:08.010000"],["2024-07-24T11:49:09.010000"],["2024-07-24T11:49:10.010000"],["2024-07-24T11:49:11.010000"],["2024-07-24T11:49:12.010000"],["2024-07-24T11:49:13.010000"],["2024-07-24T11:49:14.010000"],["2024-07-24T11:49:15.010000"],["2024-07-24T11:49:16.010000"],["2024-07-24T11:49:17.010000"],["2024-07-24T11:49:18.010000"],["2024-07-24T11:49:19.010000"],["2024-07-24T11:49:20.010000"],["2024-07-24T11:49:21.010000"],["2024-07-24T11:49:22.010000"],["2024-07-24T11:49:23.010000"],["2024-07-24T11:49:24.010000"],["2024-07-24T11:49:25.010000"],["2024-07-24T11:49:26.010000"],["2024-07-24T11:49:27.010000"],["2024-07-24T11:49:28.010000"],["2024-07-24T11:49:29.010000"],["2024-07-24T11:49:30.010000"],["2024-07-24T11:49:31.010000"],["2024-07-24T11:49:32.010000"],["2024-07-24T11:49:33.010000"],["2024-07-24T11:49:34.010000"],["2024-07-24T11:49:35.010000"],["2024-07-24T11:49:36.010000"],["2024-07-24T11:49:37.010000"],["2024-07-24T11:49:38.010000"],["2024-07-24T11:49:39.010000"],["2024-07-24T11:49:40.010000"],["2024-07-24T11:49:41.010000"],["2024-07-24T11:49:42.010000"],["2024-07-24T11:49:43.010000"],["2024-07-24T11:49:44.010000"],["2024-07-24T11:49:45.010000"],["2024-07-24T11:49:46.010000"],["2024-07-24T11:49:47.010000"],["2024-07-24T11:49:48.010000"],["2024-07-24T11:49:49.010000"],["2024-07-24T11:49:50.010000"],["2024-07-24T11:49:51.010000"],["2024-07-24T11:49:52.010000"],["2024-07-24T11:49:53.010000"],["2024-07-24T11:49:54.010000"],["2024-07-24T11:49:55.010000"],["2024-07-24T11:49:56.010000"],["2024-07-24T11:49:57.010000"],["2024-07-24T11:49:58.010000"],["2024-07-24T11:49:59.010000"],["2024-07-24T11:50:00.010000"],["2024-07-24T11:50:01.010000"],["2024-07-24T11:50:02.010000"],["2024-07-24T11:50:03.010000"],["2024-07-24T11:50:04.010000"],["2024-07-24T11:50:05.010000"],["2024-07-24T11:50:06.010000"],["2024-07-24T11:50:07.010000"],["2024-07-24T11:50:08.010000"],["2024-07-24T11:50:09.010000"],["2024-07-24T11:50:10.010000"],["2024-07-24T11:50:11.010000"],["2024-07-24T11:50:12.010000"],["2024-07-24T11:50:13.010000"],["2024-07-24T11:50:14.010000"],["2024-07-24T11:50:15.010000"],["2024-07-24T11:50:16.010000"],["2024-07-24T11:50:17.010000"],["2024-07-24T11:50:18.010000"],["2024-07-24T11:50:19.010000"],["2024-07-24T11:50:20.010000"],["2024-07-24T11:50:21.010000"],["2024-07-24T11:50:22.010000"],["2024-07-24T11:50:23.010000"],["2024-07-24T11:50:24.010000"],["2024-07-24T11:50:25.010000"],["2024-07-24T11:50:26.010000"],["2024-07-24T11:50:27.010000"],["2024-07-24T11:50:28.010000"],["2024-07-24T11:50:29.010000"],["2024-07-24T11:50:30.010000"],["2024-07-24T11:50:31.010000"],["2024-07-24T11:50:32.010000"],["2024-07-24T11:50:33.010000"],["2024-07-24T11:50:34.010000"],["2024-07-24T11:50:35.010000"],["2024-07-24T11:50:36.010000"],["2024-07-24T11:50:37.010000"],["2024-07-24T11:50:38.010000"],["2024-07-24T11:50:39.010000"],["2024-07-24T11:50:40.010000"],["2024-07-24T11:50:41.010000"],["2024-07-24T11:50:42.010000"],["2024-07-24T11:50:43.010000"],["2024-07-24T11:50:44.010000"],["2024-07-24T11:50:45.010000"],["2024-07-24T11:50:46.010000"],["2024-07-24T11:50:47.010000"],["2024-07-24T11:50:48.010000"],["2024-07-24T11:50:49.010000"],["2024-07-24T11:50:50.010000"],["2024-07-24T11:50:51.010000"],["2024-07-24T11:50:52.010000"],["2024-07-24T11:50:53.010000"],["2024-07-24T11:50:54.010000"],["2024-07-24T11:50:55.010000"],["2024-07-24T11:50:56.010000"],["2024-07-24T11:50:57.010000"],["2024-07-24T11:50:58.010000"],["2024-07-24T11:50:59.010000"],["2024-07-24T11:51:00.010000"],["2024-07-24T11:51:01.010000"],["2024-07-24T11:51:02.010000"],["2024-07-24T11:51:03.010000"],["2024-07-24T11:51:04.010000"],["2024-07-24T11:51:05.010000"],["2024-07-24T11:51:06.010000"],["2024-07-24T11:51:07.010000"],["2024-07-24T11:51:08.010000"],["2024-07-24T11:51:09.010000"],["2024-07-24T11:51:10.010000"],["2024-07-24T11:51:11.010000"],["2024-07-24T11:51:12.010000"],["2024-07-24T11:51:13.010000"],["2024-07-24T11:51:14.010000"],["2024-07-24T11:51:15.010000"],["2024-07-24T11:51:16.010000"],["2024-07-24T11:51:17.010000"],["2024-07-24T11:51:18.010000"],["2024-07-24T11:51:19.010000"],["2024-07-24T11:51:20.010000"],["2024-07-24T11:51:21.010000"],["2024-07-24T11:51:22.010000"],["2024-07-24T11:51:23.010000"],["2024-07-24T11:51:24.010000"],["2024-07-24T11:51:25.010000"],["2024-07-24T11:51:26.010000"],["2024-07-24T11:51:27.010000"],["2024-07-24T11:51:28.010000"],["2024-07-24T11:51:29.010000"],["2024-07-24T11:51:30.010000"],["2024-07-24T11:51:31.010000"],["2024-07-24T11:51:32.010000"],["2024-07-24T11:51:33.010000"],["2024-07-24T11:51:34.010000"],["2024-07-24T11:51:35.010000"],["2024-07-24T11:51:36.010000"],["2024-07-24T11:51:37.010000"],["2024-07-24T11:51:38.010000"],["2024-07-24T11:51:39.010000"],["2024-07-24T11:51:40.010000"],["2024-07-24T11:51:41.010000"],["2024-07-24T11:51:42.010000"],["2024-07-24T11:51:43.010000"],["2024-07-24T11:51:44.010000"],["2024-07-24T11:51:45.010000"],["2024-07-24T11:51:46.010000"],["2024-07-24T11:51:47.010000"],["2024-07-24T11:51:48.010000"],["2024-07-24T11:51:49.010000"],["2024-07-24T11:51:50.010000"],["2024-07-24T11:51:51.010000"],["2024-07-24T11:51:52.010000"],["2024-07-24T11:51:53.010000"],["2024-07-24T11:51:54.010000"],["2024-07-24T11:51:55.010000"],["2024-07-24T11:51:56.010000"],["2024-07-24T11:51:57.010000"],["2024-07-24T11:51:58.010000"],["2024-07-24T11:51:59.010000"],["2024-07-24T11:52:00.010000"],["2024-07-24T11:52:01.010000"],["2024-07-24T11:52:02.010000"],["2024-07-24T11:52:03.010000"],["2024-07-24T11:52:04.010000"],["2024-07-24T11:52:05.010000"],["2024-07-24T11:52:06.010000"],["2024-07-24T11:52:07.010000"],["2024-07-24T11:52:08.010000"],["2024-07-24T11:52:09.010000"],["2024-07-24T11:52:10.010000"],["2024-07-24T11:52:11.010000"],["2024-07-24T11:52:12.010000"],["2024-07-24T11:52:13.010000"],["2024-07-24T11:52:14.010000"],["2024-07-24T11:52:15.010000"],["2024-07-24T11:52:16.010000"],["2024-07-24T11:52:17.010000"],["2024-07-24T11:52:18.010000"],["2024-07-24T11:52:19.010000"],["2024-07-24T11:52:20.010000"],["2024-07-24T11:52:21.010000"],["2024-07-24T11:52:22.010000"],["2024-07-24T11:52:23.010000"],["2024-07-24T11:52:24.010000"],["2024-07-24T11:52:25.010000"],["2024-07-24T11:52:26.010000"],["2024-07-24T11:52:27.010000"],["2024-07-24T11:52:28.010000"],["2024-07-24T11:52:29.010000"],["2024-07-24T11:52:30.010000"],["2024-07-24T11:52:31.010000"],["2024-07-24T11:52:32.010000"],["2024-07-24T11:52:33.010000"],["2024-07-24T11:52:34.010000"],["2024-07-24T11:52:35.010000"],["2024-07-24T11:52:36.010000"],["2024-07-24T11:52:37.010000"],["2024-07-24T11:52:38.010000"],["2024-07-24T11:52:39.010000"],["2024-07-24T11:52:40.010000"],["2024-07-24T11:52:41.010000"],["2024-07-24T11:52:42.010000"],["2024-07-24T11:52:43.010000"],["2024-07-24T11:52:44.010000"],["2024-07-24T11:52:45.010000"],["2024-07-24T11:52:46.010000"],["2024-07-24T11:52:47.010000"],["2024-07-24T11:52:48.010000"],["2024-07-24T11:52:49.010000"],["2024-07-24T11:52:50.010000"],["2024-07-24T11:52:51.010000"],["2024-07-24T11:52:52.010000"],["2024-07-24T11:52:53.010000"],["2024-07-24T11:52:54.010000"],["2024-07-24T11:52:55.010000"],["2024-07-24T11:52:56.010000"],["2024-07-24T11:52:57.010000"],["2024-07-24T11:52:58.010000"],["2024-07-24T11:52:59.010000"],["2024-07-24T11:53:00.010000"],["2024-07-24T11:53:01.010000"],["2024-07-24T11:53:02.010000"],["2024-07-24T11:53:03.010000"],["2024-07-24T11:53:04.010000"],["2024-07-24T11:53:05.010000"],["2024-07-24T11:53:06.010000"],["2024-07-24T11:53:07.010000"],["2024-07-24T11:53:08.010000"],["2024-07-24T11:53:09.010000"],["2024-07-24T11:53:10.010000"],["2024-07-24T11:53:11.010000"],["2024-07-24T11:53:12.010000"],["2024-07-24T11:53:13.010000"],["2024-07-24T11:53:14.010000"],["2024-07-24T11:53:15.010000"],["2024-07-24T11:53:16.010000"],["2024-07-24T11:53:17.010000"],["2024-07-24T11:53:18.010000"],["2024-07-24T11:53:19.010000"],["2024-07-24T11:53:20.010000"],["2024-07-24T11:53:21.010000"],["2024-07-24T11:53:22.010000"],["2024-07-24T11:53:23.010000"],["2024-07-24T11:53:24.010000"],["2024-07-24T11:53:25.010000"],["2024-07-24T11:53:26.010000"],["2024-07-24T11:53:27.010000"],["2024-07-24T11:53:28.010000"],["2024-07-24T11:53:29.010000"],["2024-07-24T11:53:30.010000"],["2024-07-24T11:53:31.010000"],["2024-07-24T11:53:32.010000"],["2024-07-24T11:53:33.010000"],["2024-07-24T11:53:34.010000"],["2024-07-24T11:53:35.010000"],["2024-07-24T11:53:36.010000"],["2024-07-24T11:53:37.010000"],["2024-07-24T11:53:38.010000"],["2024-07-24T11:53:39.010000"],["2024-07-24T11:53:40.010000"],["2024-07-24T11:53:41.010000"],["2024-07-24T11:53:42.010000"],["2024-07-24T11:53:43.010000"],["2024-07-24T11:53:44.010000"],["2024-07-24T11:53:45.010000"],["2024-07-24T11:53:46.010000"],["2024-07-24T11:53:47.010000"],["2024-07-24T11:53:48.010000"],["2024-07-24T11:53:49.010000"],["2024-07-24T11:53:50.010000"],["2024-07-24T11:53:51.010000"],["2024-07-24T11:53:52.010000"],["2024-07-24T11:53:53.010000"],["2024-07-24T11:53:54.010000"],["2024-07-24T11:53:55.010000"],["2024-07-24T11:53:56.010000"],["2024-07-24T11:53:57.010000"],["2024-07-24T11:53:58.010000"],["2024-07-24T11:53:59.010000"],["2024-07-24T11:54:00.010000"],["2024-07-24T11:54:01.010000"],["2024-07-24T11:54:02.010000"],["2024-07-24T11:54:03.010000"],["2024-07-24T11:54:04.010000"],["2024-07-24T11:54:05.010000"],["2024-07-24T11:54:06.010000"],["2024-07-24T11:54:07.010000"],["2024-07-24T11:54:08.010000"],["2024-07-24T11:54:09.010000"],["2024-07-24T11:54:10.010000"],["2024-07-24T11:54:11.010000"],["2024-07-24T11:54:12.010000"],["2024-07-24T11:54:13.010000"],["2024-07-24T11:54:14.010000"],["2024-07-24T11:54:15.010000"],["2024-07-24T11:54:16.010000"],["2024-07-24T11:54:17.010000"],["2024-07-24T11:54:18.010000"],["2024-07-24T11:54:19.010000"],["2024-07-24T11:54:20.010000"],["2024-07-24T11:54:21.010000"],["2024-07-24T11:54:22.010000"],["2024-07-24T11:54:23.010000"],["2024-07-24T11:54:24.010000"],["2024-07-24T11:54:25.010000"],["2024-07-24T11:54:26.010000"],["2024-07-24T11:54:27.010000"],["2024-07-24T11:54:28.010000"],["2024-07-24T11:54:29.010000"],["2024-07-24T11:54:30.010000"],["2024-07-24T11:54:31.010000"],["2024-07-24T11:54:32.010000"],["2024-07-24T11:54:33.010000"],["2024-07-24T11:54:34.010000"],["2024-07-24T11:54:35.010000"],["2024-07-24T11:54:36.010000"],["2024-07-24T11:54:37.010000"],["2024-07-24T11:54:38.010000"],["2024-07-24T11:54:39.010000"],["2024-07-24T11:54:40.010000"],["2024-07-24T11:54:41.010000"],["2024-07-24T11:54:42.010000"],["2024-07-24T11:54:43.010000"],["2024-07-24T11:54:44.010000"],["2024-07-24T11:54:45.010000"],["2024-07-24T11:54:46.010000"],["2024-07-24T11:54:47.010000"],["2024-07-24T11:54:48.010000"],["2024-07-24T11:54:49.010000"],["2024-07-24T11:54:50.010000"],["2024-07-24T11:54:51.010000"],["2024-07-24T11:54:52.010000"],["2024-07-24T11:54:53.010000"],["2024-07-24T11:54:54.010000"],["2024-07-24T11:54:55.010000"],["2024-07-24T11:54:56.010000"],["2024-07-24T11:54:57.010000"],["2024-07-24T11:54:58.010000"],["2024-07-24T11:54:59.010000"],["2024-07-24T11:55:00.010000"],["2024-07-24T11:55:01.010000"],["2024-07-24T11:55:02.010000"],["2024-07-24T11:55:03.010000"],["2024-07-24T11:55:04.010000"],["2024-07-24T11:55:05.010000"],["2024-07-24T11:55:06.010000"],["2024-07-24T11:55:07.010000"],["2024-07-24T11:55:08.010000"],["2024-07-24T11:55:09.010000"],["2024-07-24T11:55:10.010000"],["2024-07-24T11:55:11.010000"],["2024-07-24T11:55:12.010000"],["2024-07-24T11:55:13.010000"],["2024-07-24T11:55:14.010000"],["2024-07-24T11:55:15.010000"],["2024-07-24T11:55:16.010000"],["2024-07-24T11:55:17.010000"],["2024-07-24T11:55:18.010000"],["2024-07-24T11:55:19.010000"],["2024-07-24T11:55:20.010000"],["2024-07-24T11:55:21.010000"],["2024-07-24T11:55:22.010000"],["2024-07-24T11:55:23.010000"],["2024-07-24T11:55:24.010000"],["2024-07-24T11:55:25.010000"],["2024-07-24T11:55:26.010000"],["2024-07-24T11:55:27.010000"],["2024-07-24T11:55:28.010000"],["2024-07-24T11:55:29.010000"],["2024-07-24T11:55:30.010000"],["2024-07-24T11:55:31.010000"],["2024-07-24T11:55:32.010000"],["2024-07-24T11:55:33.010000"],["2024-07-24T11:55:34.010000"],["2024-07-24T11:55:35.010000"],["2024-07-24T11:55:36.010000"],["2024-07-24T11:55:37.010000"],["2024-07-24T11:55:38.010000"],["2024-07-24T11:55:39.010000"],["2024-07-24T11:55:40.010000"],["2024-07-24T11:55:41.010000"],["2024-07-24T11:55:42.010000"],["2024-07-24T11:55:43.010000"],["2024-07-24T11:55:44.010000"],["2024-07-24T11:55:45.010000"],["2024-07-24T11:55:46.010000"],["2024-07-24T11:55:47.010000"],["2024-07-24T11:55:48.010000"],["2024-07-24T11:55:49.010000"],["2024-07-24T11:55:50.010000"],["2024-07-24T11:55:51.010000"],["2024-07-24T11:55:52.010000"],["2024-07-24T11:55:53.010000"],["2024-07-24T11:55:54.010000"],["2024-07-24T11:55:55.010000"],["2024-07-24T11:55:56.010000"],["2024-07-24T11:55:57.010000"],["2024-07-24T11:55:58.010000"],["2024-07-24T11:55:59.010000"],["2024-07-24T11:56:00.010000"],["2024-07-24T11:56:01.010000"],["2024-07-24T11:56:02.010000"],["2024-07-24T11:56:03.010000"],["2024-07-24T11:56:04.010000"],["2024-07-24T11:56:05.010000"],["2024-07-24T11:56:06.010000"],["2024-07-24T11:56:07.010000"],["2024-07-24T11:56:08.010000"],["2024-07-24T11:56:09.010000"],["2024-07-24T11:56:10.010000"],["2024-07-24T11:56:11.010000"],["2024-07-24T11:56:12.010000"],["2024-07-24T11:56:13.010000"],["2024-07-24T11:56:14.010000"],["2024-07-24T11:56:15.010000"],["2024-07-24T11:56:16.010000"],["2024-07-24T11:56:17.010000"],["2024-07-24T11:56:18.010000"],["2024-07-24T11:56:19.010000"],["2024-07-24T11:56:20.010000"],["2024-07-24T11:56:21.010000"],["2024-07-24T11:56:22.010000"],["2024-07-24T11:56:23.010000"],["2024-07-24T11:56:24.010000"],["2024-07-24T11:56:25.010000"],["2024-07-24T11:56:26.010000"],["2024-07-24T11:56:27.010000"],["2024-07-24T11:56:28.010000"],["2024-07-24T11:56:29.010000"],["2024-07-24T11:56:30.010000"],["2024-07-24T11:56:31.010000"],["2024-07-24T11:56:32.010000"],["2024-07-24T11:56:33.010000"],["2024-07-24T11:56:34.010000"],["2024-07-24T11:56:35.010000"],["2024-07-24T11:56:36.010000"],["2024-07-24T11:56:37.010000"],["2024-07-24T11:56:38.010000"],["2024-07-24T11:56:39.010000"],["2024-07-24T11:56:40.010000"],["2024-07-24T11:56:41.010000"],["2024-07-24T11:56:42.010000"],["2024-07-24T11:56:43.010000"],["2024-07-24T11:56:44.010000"],["2024-07-24T11:56:45.010000"],["2024-07-24T11:56:46.010000"],["2024-07-24T11:56:47.010000"],["2024-07-24T11:56:48.010000"],["2024-07-24T11:56:49.010000"],["2024-07-24T11:56:50.010000"],["2024-07-24T11:56:51.010000"],["2024-07-24T11:56:52.010000"],["2024-07-24T11:56:53.010000"],["2024-07-24T11:56:54.010000"],["2024-07-24T11:56:55.010000"],["2024-07-24T11:56:56.010000"],["2024-07-24T11:56:57.010000"],["2024-07-24T11:56:58.010000"],["2024-07-24T11:56:59.010000"],["2024-07-24T11:57:00.010000"],["2024-07-24T11:57:01.010000"],["2024-07-24T11:57:02.010000"],["2024-07-24T11:57:03.010000"],["2024-07-24T11:57:04.010000"],["2024-07-24T11:57:05.010000"],["2024-07-24T11:57:06.010000"],["2024-07-24T11:57:07.010000"],["2024-07-24T11:57:08.010000"],["2024-07-24T11:57:09.010000"],["2024-07-24T11:57:10.010000"],["2024-07-24T11:57:11.010000"],["2024-07-24T11:57:12.010000"],["2024-07-24T11:57:13.010000"],["2024-07-24T11:57:14.010000"],["2024-07-24T11:57:15.010000"],["2024-07-24T11:57:16.010000"],["2024-07-24T11:57:17.010000"],["2024-07-24T11:57:18.010000"],["2024-07-24T11:57:19.010000"],["2024-07-24T11:57:20.010000"],["2024-07-24T11:57:21.010000"],["2024-07-24T11:57:22.010000"],["2024-07-24T11:57:23.010000"],["2024-07-24T11:57:24.010000"],["2024-07-24T11:57:25.010000"],["2024-07-24T11:57:26.010000"],["2024-07-24T11:57:27.010000"],["2024-07-24T11:57:28.010000"],["2024-07-24T11:57:29.010000"],["2024-07-24T11:57:30.010000"],["2024-07-24T11:57:31.010000"],["2024-07-24T11:57:32.010000"],["2024-07-24T11:57:33.010000"],["2024-07-24T11:57:34.010000"],["2024-07-24T11:57:35.010000"],["2024-07-24T11:57:36.010000"],["2024-07-24T11:57:37.010000"],["2024-07-24T11:57:38.010000"],["2024-07-24T11:57:39.010000"],["2024-07-24T11:57:40.010000"],["2024-07-24T11:57:41.010000"],["2024-07-24T11:57:42.010000"],["2024-07-24T11:57:43.010000"],["2024-07-24T11:57:44.010000"],["2024-07-24T11:57:45.010000"],["2024-07-24T11:57:46.010000"],["2024-07-24T11:57:47.010000"],["2024-07-24T11:57:48.010000"],["2024-07-24T11:57:49.010000"],["2024-07-24T11:57:50.010000"],["2024-07-24T11:57:51.010000"],["2024-07-24T11:57:52.010000"],["2024-07-24T11:57:53.010000"],["2024-07-24T11:57:54.010000"],["2024-07-24T11:57:55.010000"],["2024-07-24T11:57:56.010000"],["2024-07-24T11:57:57.010000"],["2024-07-24T11:57:58.010000"],["2024-07-24T11:57:59.010000"],["2024-07-24T11:58:00.010000"],["2024-07-24T11:58:01.010000"],["2024-07-24T11:58:02.010000"],["2024-07-24T11:58:03.010000"],["2024-07-24T11:58:04.010000"],["2024-07-24T11:58:05.010000"],["2024-07-24T11:58:06.010000"],["2024-07-24T11:58:07.010000"],["2024-07-24T11:58:08.010000"],["2024-07-24T11:58:09.010000"],["2024-07-24T11:58:10.010000"],["2024-07-24T11:58:11.010000"],["2024-07-24T11:58:12.010000"],["2024-07-24T11:58:13.010000"],["2024-07-24T11:58:14.010000"],["2024-07-24T11:58:15.010000"],["2024-07-24T11:58:16.010000"],["2024-07-24T11:58:17.010000"],["2024-07-24T11:58:18.010000"],["2024-07-24T11:58:19.010000"],["2024-07-24T11:58:20.010000"],["2024-07-24T11:58:21.010000"],["2024-07-24T11:58:22.010000"],["2024-07-24T11:58:23.010000"],["2024-07-24T11:58:24.010000"],["2024-07-24T11:58:25.010000"],["2024-07-24T11:58:26.010000"],["2024-07-24T11:58:27.010000"],["2024-07-24T11:58:28.010000"],["2024-07-24T11:58:29.010000"],["2024-07-24T11:58:30.010000"],["2024-07-24T11:58:31.010000"],["2024-07-24T11:58:32.010000"],["2024-07-24T11:58:33.010000"],["2024-07-24T11:58:34.010000"],["2024-07-24T11:58:35.010000"],["2024-07-24T11:58:36.010000"],["2024-07-24T11:58:37.010000"],["2024-07-24T11:58:38.010000"],["2024-07-24T11:58:39.010000"],["2024-07-24T11:58:40.010000"],["2024-07-24T11:58:41.010000"],["2024-07-24T11:58:42.010000"],["2024-07-24T11:58:43.010000"],["2024-07-24T11:58:44.010000"],["2024-07-24T11:58:45.010000"],["2024-07-24T11:58:46.010000"],["2024-07-24T11:58:47.010000"],["2024-07-24T11:58:48.010000"],["2024-07-24T11:58:49.010000"],["2024-07-24T11:58:50.010000"],["2024-07-24T11:58:51.010000"],["2024-07-24T11:58:52.010000"],["2024-07-24T11:58:53.010000"],["2024-07-24T11:58:54.010000"],["2024-07-24T11:58:55.010000"],["2024-07-24T11:58:56.010000"],["2024-07-24T11:58:57.010000"],["2024-07-24T11:58:58.010000"],["2024-07-24T11:58:59.010000"],["2024-07-24T11:59:00.010000"],["2024-07-24T11:59:01.010000"],["2024-07-24T11:59:02.010000"],["2024-07-24T11:59:03.010000"],["2024-07-24T11:59:04.010000"],["2024-07-24T11:59:05.010000"],["2024-07-24T11:59:06.010000"],["2024-07-24T11:59:07.010000"],["2024-07-24T11:59:08.010000"],["2024-07-24T11:59:09.010000"],["2024-07-24T11:59:10.010000"],["2024-07-24T11:59:11.010000"],["2024-07-24T11:59:12.010000"],["2024-07-24T11:59:13.010000"],["2024-07-24T11:59:14.010000"],["2024-07-24T11:59:15.010000"],["2024-07-24T11:59:16.010000"],["2024-07-24T11:59:17.010000"],["2024-07-24T11:59:18.010000"],["2024-07-24T11:59:19.010000"],["2024-07-24T11:59:20.010000"],["2024-07-24T11:59:21.010000"],["2024-07-24T11:59:22.010000"],["2024-07-24T11:59:23.010000"],["2024-07-24T11:59:24.010000"],["2024-07-24T11:59:25.010000"],["2024-07-24T11:59:26.010000"],["2024-07-24T11:59:27.010000"],["2024-07-24T11:59:28.010000"],["2024-07-24T11:59:29.010000"],["2024-07-24T11:59:30.010000"],["2024-07-24T11:59:31.010000"],["2024-07-24T11:59:32.010000"],["2024-07-24T11:59:33.010000"],["2024-07-24T11:59:34.010000"],["2024-07-24T11:59:35.010000"],["2024-07-24T11:59:36.010000"],["2024-07-24T11:59:37.010000"],["2024-07-24T11:59:38.010000"],["2024-07-24T11:59:39.010000"],["2024-07-24T11:59:40.010000"],["2024-07-24T11:59:41.010000"],["2024-07-24T11:59:42.010000"],["2024-07-24T11:59:43.010000"],["2024-07-24T11:59:44.010000"],["2024-07-24T11:59:45.010000"],["2024-07-24T11:59:46.010000"],["2024-07-24T11:59:47.010000"],["2024-07-24T11:59:48.010000"],["2024-07-24T11:59:49.010000"],["2024-07-24T11:59:50.010000"],["2024-07-24T11:59:51.010000"],["2024-07-24T11:59:52.010000"],["2024-07-24T11:59:53.010000"],["2024-07-24T11:59:54.010000"],["2024-07-24T11:59:55.010000"],["2024-07-24T11:59:56.010000"],["2024-07-24T11:59:57.010000"],["2024-07-24T11:59:58.010000"],["2024-07-24T11:59:59.010000"],["2024-07-24T12:00:00.010000"],["2024-07-24T12:00:01.010000"],["2024-07-24T12:00:02.010000"],["2024-07-24T12:00:03.010000"],["2024-07-24T12:00:04.010000"],["2024-07-24T12:00:05.010000"],["2024-07-24T12:00:06.010000"],["2024-07-24T12:00:07.010000"],["2024-07-24T12:00:08.010000"],["2024-07-24T12:00:09.010000"],["2024-07-24T12:00:10.010000"],["2024-07-24T12:00:11.010000"],["2024-07-24T12:00:12.010000"],["2024-07-24T12:00:13.010000"],["2024-07-24T12:00:14.010000"],["2024-07-24T12:00:15.010000"],["2024-07-24T12:00:16.010000"],["2024-07-24T12:00:17.010000"],["2024-07-24T12:00:18.010000"],["2024-07-24T12:00:19.010000"],["2024-07-24T12:00:20.010000"],["2024-07-24T12:00:21.010000"],["2024-07-24T12:00:22.010000"],["2024-07-24T12:00:23.010000"],["2024-07-24T12:00:24.010000"],["2024-07-24T12:00:25.010000"],["2024-07-24T12:00:26.010000"],["2024-07-24T12:00:27.010000"],["2024-07-24T12:00:28.010000"],["2024-07-24T12:00:29.010000"],["2024-07-24T12:00:30.010000"],["2024-07-24T12:00:31.010000"],["2024-07-24T12:00:32.010000"],["2024-07-24T12:00:33.010000"],["2024-07-24T12:00:34.010000"],["2024-07-24T12:00:35.010000"],["2024-07-24T12:00:36.010000"],["2024-07-24T12:00:37.010000"],["2024-07-24T12:00:38.010000"],["2024-07-24T12:00:39.010000"],["2024-07-24T12:00:40.010000"],["2024-07-24T12:00:41.010000"],["2024-07-24T12:00:42.010000"],["2024-07-24T12:00:43.010000"],["2024-07-24T12:00:44.010000"],["2024-07-24T12:00:45.010000"],["2024-07-24T12:00:46.010000"],["2024-07-24T12:00:47.010000"],["2024-07-24T12:00:48.010000"],["2024-07-24T12:00:49.010000"],["2024-07-24T12:00:50.010000"],["2024-07-24T12:00:51.010000"],["2024-07-24T12:00:52.010000"],["2024-07-24T12:00:53.010000"],["2024-07-24T12:00:54.010000"],["2024-07-24T12:00:55.010000"],["2024-07-24T12:00:56.010000"],["2024-07-24T12:00:57.010000"],["2024-07-24T12:00:58.010000"],["2024-07-24T12:00:59.010000"],["2024-07-24T12:01:00.010000"],["2024-07-24T12:01:01.010000"],["2024-07-24T12:01:02.010000"],["2024-07-24T12:01:03.010000"],["2024-07-24T12:01:04.010000"],["2024-07-24T12:01:05.010000"],["2024-07-24T12:01:06.010000"],["2024-07-24T12:01:07.010000"],["2024-07-24T12:01:08.010000"],["2024-07-24T12:01:09.010000"],["2024-07-24T12:01:10.010000"],["2024-07-24T12:01:11.010000"],["2024-07-24T12:01:12.010000"],["2024-07-24T12:01:13.010000"],["2024-07-24T12:01:14.010000"],["2024-07-24T12:01:15.010000"],["2024-07-24T12:01:16.010000"],["2024-07-24T12:01:17.010000"],["2024-07-24T12:01:18.010000"],["2024-07-24T12:01:19.010000"],["2024-07-24T12:01:20.010000"],["2024-07-24T12:01:21.010000"],["2024-07-24T12:01:22.010000"],["2024-07-24T12:01:23.010000"],["2024-07-24T12:01:24.010000"],["2024-07-24T12:01:25.010000"],["2024-07-24T12:01:26.010000"],["2024-07-24T12:01:27.010000"],["2024-07-24T12:01:28.010000"],["2024-07-24T12:01:29.010000"],["2024-07-24T12:01:30.010000"],["2024-07-24T12:01:31.010000"],["2024-07-24T12:01:32.010000"],["2024-07-24T12:01:33.010000"],["2024-07-24T12:01:34.010000"],["2024-07-24T12:01:35.010000"],["2024-07-24T12:01:36.010000"],["2024-07-24T12:01:37.010000"],["2024-07-24T12:01:38.010000"],["2024-07-24T12:01:39.010000"],["2024-07-24T12:01:40.010000"],["2024-07-24T12:01:41.010000"],["2024-07-24T12:01:42.010000"],["2024-07-24T12:01:43.010000"],["2024-07-24T12:01:44.010000"],["2024-07-24T12:01:45.010000"],["2024-07-24T12:01:46.010000"],["2024-07-24T12:01:47.010000"],["2024-07-24T12:01:48.010000"],["2024-07-24T12:01:49.010000"],["2024-07-24T12:01:50.010000"],["2024-07-24T12:01:51.010000"],["2024-07-24T12:01:52.010000"],["2024-07-24T12:01:53.010000"],["2024-07-24T12:01:54.010000"],["2024-07-24T12:01:55.010000"],["2024-07-24T12:01:56.010000"],["2024-07-24T12:01:57.010000"],["2024-07-24T12:01:58.010000"],["2024-07-24T12:01:59.010000"],["2024-07-24T12:02:00.010000"],["2024-07-24T12:02:01.010000"],["2024-07-24T12:02:02.010000"],["2024-07-24T12:02:03.010000"],["2024-07-24T12:02:04.010000"],["2024-07-24T12:02:05.010000"],["2024-07-24T12:02:06.010000"],["2024-07-24T12:02:07.010000"],["2024-07-24T12:02:08.010000"],["2024-07-24T12:02:09.010000"],["2024-07-24T12:02:10.010000"],["2024-07-24T12:02:11.010000"],["2024-07-24T12:02:12.010000"],["2024-07-24T12:02:13.010000"],["2024-07-24T12:02:14.010000"],["2024-07-24T12:02:15.010000"],["2024-07-24T12:02:16.010000"],["2024-07-24T12:02:17.010000"],["2024-07-24T12:02:18.010000"],["2024-07-24T12:02:19.010000"],["2024-07-24T12:02:20.010000"],["2024-07-24T12:02:21.010000"],["2024-07-24T12:02:22.010000"],["2024-07-24T12:02:23.010000"],["2024-07-24T12:02:24.010000"],["2024-07-24T12:02:25.010000"],["2024-07-24T12:02:26.010000"],["2024-07-24T12:02:27.010000"],["2024-07-24T12:02:28.010000"],["2024-07-24T12:02:29.010000"],["2024-07-24T12:02:30.010000"],["2024-07-24T12:02:31.010000"],["2024-07-24T12:02:32.010000"],["2024-07-24T12:02:33.010000"],["2024-07-24T12:02:34.010000"],["2024-07-24T12:02:35.010000"],["2024-07-24T12:02:36.010000"],["2024-07-24T12:02:37.010000"],["2024-07-24T12:02:38.010000"],["2024-07-24T12:02:39.010000"],["2024-07-24T12:02:40.010000"],["2024-07-24T12:02:41.010000"],["2024-07-24T12:02:42.010000"],["2024-07-24T12:02:43.010000"],["2024-07-24T12:02:44.010000"],["2024-07-24T12:02:45.010000"],["2024-07-24T12:02:46.010000"],["2024-07-24T12:02:47.010000"],["2024-07-24T12:02:48.010000"],["2024-07-24T12:02:49.010000"],["2024-07-24T12:02:50.010000"],["2024-07-24T12:02:51.010000"],["2024-07-24T12:02:52.010000"],["2024-07-24T12:02:53.010000"],["2024-07-24T12:02:54.010000"],["2024-07-24T12:02:55.010000"],["2024-07-24T12:02:56.010000"],["2024-07-24T12:02:57.010000"],["2024-07-24T12:02:58.010000"],["2024-07-24T12:02:59.010000"],["2024-07-24T12:03:00.010000"],["2024-07-24T12:03:01.010000"],["2024-07-24T12:03:02.010000"],["2024-07-24T12:03:03.010000"],["2024-07-24T12:03:04.010000"],["2024-07-24T12:03:05.010000"],["2024-07-24T12:03:06.010000"],["2024-07-24T12:03:07.010000"],["2024-07-24T12:03:08.010000"],["2024-07-24T12:03:09.010000"],["2024-07-24T12:03:10.010000"],["2024-07-24T12:03:11.010000"],["2024-07-24T12:03:12.010000"],["2024-07-24T12:03:13.010000"],["2024-07-24T12:03:14.010000"],["2024-07-24T12:03:15.010000"],["2024-07-24T12:03:16.010000"],["2024-07-24T12:03:17.010000"],["2024-07-24T12:03:18.010000"],["2024-07-24T12:03:19.010000"],["2024-07-24T12:03:20.010000"],["2024-07-24T12:03:21.010000"],["2024-07-24T12:03:22.010000"],["2024-07-24T12:03:23.010000"],["2024-07-24T12:03:24.010000"],["2024-07-24T12:03:25.010000"],["2024-07-24T12:03:26.010000"],["2024-07-24T12:03:27.010000"],["2024-07-24T12:03:28.010000"],["2024-07-24T12:03:29.010000"],["2024-07-24T12:03:30.010000"],["2024-07-24T12:03:31.010000"],["2024-07-24T12:03:32.010000"],["2024-07-24T12:03:33.010000"],["2024-07-24T12:03:34.010000"],["2024-07-24T12:03:35.010000"],["2024-07-24T12:03:36.010000"],["2024-07-24T12:03:37.010000"],["2024-07-24T12:03:38.010000"],["2024-07-24T12:03:39.010000"],["2024-07-24T12:03:40.010000"],["2024-07-24T12:03:41.010000"],["2024-07-24T12:03:42.010000"],["2024-07-24T12:03:43.010000"],["2024-07-24T12:03:44.010000"],["2024-07-24T12:03:45.010000"],["2024-07-24T12:03:46.010000"],["2024-07-24T12:03:47.010000"],["2024-07-24T12:03:48.010000"],["2024-07-24T12:03:49.010000"],["2024-07-24T12:03:50.010000"],["2024-07-24T12:03:51.010000"],["2024-07-24T12:03:52.010000"],["2024-07-24T12:03:53.010000"],["2024-07-24T12:03:54.010000"],["2024-07-24T12:03:55.010000"],["2024-07-24T12:03:56.010000"],["2024-07-24T12:03:57.010000"],["2024-07-24T12:03:58.010000"],["2024-07-24T12:03:59.010000"],["2024-07-24T12:04:00.010000"],["2024-07-24T12:04:01.010000"],["2024-07-24T12:04:02.010000"],["2024-07-24T12:04:03.010000"],["2024-07-24T12:04:04.010000"],["2024-07-24T12:04:05.010000"],["2024-07-24T12:04:06.010000"],["2024-07-24T12:04:07.010000"],["2024-07-24T12:04:08.010000"],["2024-07-24T12:04:09.010000"],["2024-07-24T12:04:10.010000"],["2024-07-24T12:04:11.010000"],["2024-07-24T12:04:12.010000"],["2024-07-24T12:04:13.010000"],["2024-07-24T12:04:14.010000"],["2024-07-24T12:04:15.010000"],["2024-07-24T12:04:16.010000"],["2024-07-24T12:04:17.010000"],["2024-07-24T12:04:18.010000"],["2024-07-24T12:04:19.010000"],["2024-07-24T12:04:20.010000"],["2024-07-24T12:04:21.010000"],["2024-07-24T12:04:22.010000"],["2024-07-24T12:04:23.010000"],["2024-07-24T12:04:24.010000"],["2024-07-24T12:04:25.010000"],["2024-07-24T12:04:26.010000"],["2024-07-24T12:04:27.010000"],["2024-07-24T12:04:28.010000"],["2024-07-24T12:04:29.010000"],["2024-07-24T12:04:30.010000"],["2024-07-24T12:04:31.010000"],["2024-07-24T12:04:32.010000"],["2024-07-24T12:04:33.010000"],["2024-07-24T12:04:34.010000"],["2024-07-24T12:04:35.010000"],["2024-07-24T12:04:36.010000"],["2024-07-24T12:04:37.010000"],["2024-07-24T12:04:38.010000"],["2024-07-24T12:04:39.010000"],["2024-07-24T12:04:40.010000"],["2024-07-24T12:04:41.010000"],["2024-07-24T12:04:42.010000"],["2024-07-24T12:04:43.010000"],["2024-07-24T12:04:44.010000"],["2024-07-24T12:04:45.010000"],["2024-07-24T12:04:46.010000"],["2024-07-24T12:04:47.010000"],["2024-07-24T12:04:48.010000"],["2024-07-24T12:04:49.010000"],["2024-07-24T12:04:50.010000"],["2024-07-24T12:04:51.010000"],["2024-07-24T12:04:52.010000"],["2024-07-24T12:04:53.010000"],["2024-07-24T12:04:54.010000"],["2024-07-24T12:04:55.010000"],["2024-07-24T12:04:56.010000"],["2024-07-24T12:04:57.010000"],["2024-07-24T12:04:58.010000"],["2024-07-24T12:04:59.010000"],["2024-07-24T12:05:00.010000"],["2024-07-24T12:05:01.010000"],["2024-07-24T12:05:02.010000"],["2024-07-24T12:05:03.010000"],["2024-07-24T12:05:04.010000"],["2024-07-24T12:05:05.010000"],["2024-07-24T12:05:06.010000"],["2024-07-24T12:05:07.010000"],["2024-07-24T12:05:08.010000"],["2024-07-24T12:05:09.010000"],["2024-07-24T12:05:10.010000"],["2024-07-24T12:05:11.010000"],["2024-07-24T12:05:12.010000"],["2024-07-24T12:05:13.010000"],["2024-07-24T12:05:14.010000"],["2024-07-24T12:05:15.010000"],["2024-07-24T12:05:16.010000"],["2024-07-24T12:05:17.010000"],["2024-07-24T12:05:18.010000"],["2024-07-24T12:05:19.010000"],["2024-07-24T12:05:20.010000"],["2024-07-24T12:05:21.010000"],["2024-07-24T12:05:22.010000"],["2024-07-24T12:05:23.010000"],["2024-07-24T12:05:24.010000"],["2024-07-24T12:05:25.010000"],["2024-07-24T12:05:26.010000"],["2024-07-24T12:05:27.010000"],["2024-07-24T12:05:28.010000"],["2024-07-24T12:05:29.010000"],["2024-07-24T12:05:30.010000"],["2024-07-24T12:05:31.010000"],["2024-07-24T12:05:32.010000"],["2024-07-24T12:05:33.010000"],["2024-07-24T12:05:34.010000"],["2024-07-24T12:05:35.010000"],["2024-07-24T12:05:36.010000"],["2024-07-24T12:05:37.010000"],["2024-07-24T12:05:38.010000"],["2024-07-24T12:05:39.010000"],["2024-07-24T12:05:40.010000"],["2024-07-24T12:05:41.010000"],["2024-07-24T12:05:42.010000"],["2024-07-24T12:05:43.010000"],["2024-07-24T12:05:44.010000"],["2024-07-24T12:05:45.010000"],["2024-07-24T12:05:46.010000"],["2024-07-24T12:05:47.010000"],["2024-07-24T12:05:48.010000"],["2024-07-24T12:05:49.010000"],["2024-07-24T12:05:50.010000"],["2024-07-24T12:05:51.010000"],["2024-07-24T12:05:52.010000"],["2024-07-24T12:05:53.010000"],["2024-07-24T12:05:54.010000"],["2024-07-24T12:05:55.010000"],["2024-07-24T12:05:56.010000"],["2024-07-24T12:05:57.010000"],["2024-07-24T12:05:58.010000"],["2024-07-24T12:05:59.010000"],["2024-07-24T12:06:00.010000"],["2024-07-24T12:06:01.010000"],["2024-07-24T12:06:02.010000"],["2024-07-24T12:06:03.010000"],["2024-07-24T12:06:04.010000"],["2024-07-24T12:06:05.010000"],["2024-07-24T12:06:06.010000"],["2024-07-24T12:06:07.010000"],["2024-07-24T12:06:08.010000"],["2024-07-24T12:06:09.010000"],["2024-07-24T12:06:10.010000"],["2024-07-24T12:06:11.010000"],["2024-07-24T12:06:12.010000"],["2024-07-24T12:06:13.010000"],["2024-07-24T12:06:14.010000"],["2024-07-24T12:06:15.010000"],["2024-07-24T12:06:16.010000"],["2024-07-24T12:06:17.010000"],["2024-07-24T12:06:18.010000"],["2024-07-24T12:06:19.010000"],["2024-07-24T12:06:20.010000"],["2024-07-24T12:06:21.010000"],["2024-07-24T12:06:22.010000"],["2024-07-24T12:06:23.010000"],["2024-07-24T12:06:24.010000"],["2024-07-24T12:06:25.010000"],["2024-07-24T12:06:26.010000"],["2024-07-24T12:06:27.010000"],["2024-07-24T12:06:28.010000"],["2024-07-24T12:06:29.010000"],["2024-07-24T12:06:30.010000"],["2024-07-24T12:06:31.010000"],["2024-07-24T12:06:32.010000"],["2024-07-24T12:06:33.010000"],["2024-07-24T12:06:34.010000"],["2024-07-24T12:06:35.010000"],["2024-07-24T12:06:36.010000"],["2024-07-24T12:06:37.010000"],["2024-07-24T12:06:38.010000"],["2024-07-24T12:06:39.010000"],["2024-07-24T12:06:40.010000"],["2024-07-24T12:06:41.010000"],["2024-07-24T12:06:42.010000"],["2024-07-24T12:06:43.010000"],["2024-07-24T12:06:44.010000"],["2024-07-24T12:06:45.010000"],["2024-07-24T12:06:46.010000"],["2024-07-24T12:06:47.010000"],["2024-07-24T12:06:48.010000"],["2024-07-24T12:06:49.010000"],["2024-07-24T12:06:50.010000"],["2024-07-24T12:06:51.010000"],["2024-07-24T12:06:52.010000"],["2024-07-24T12:06:53.010000"],["2024-07-24T12:06:54.010000"],["2024-07-24T12:06:55.010000"],["2024-07-24T12:06:56.010000"],["2024-07-24T12:06:57.010000"],["2024-07-24T12:06:58.010000"],["2024-07-24T12:06:59.010000"],["2024-07-24T12:07:00.010000"],["2024-07-24T12:07:01.010000"],["2024-07-24T12:07:02.010000"],["2024-07-24T12:07:03.010000"],["2024-07-24T12:07:04.010000"],["2024-07-24T12:07:05.010000"],["2024-07-24T12:07:06.010000"],["2024-07-24T12:07:07.010000"],["2024-07-24T12:07:08.010000"],["2024-07-24T12:07:09.010000"],["2024-07-24T12:07:10.010000"],["2024-07-24T12:07:11.010000"],["2024-07-24T12:07:12.010000"],["2024-07-24T12:07:13.010000"],["2024-07-24T12:07:14.010000"],["2024-07-24T12:07:15.010000"],["2024-07-24T12:07:16.010000"],["2024-07-24T12:07:17.010000"],["2024-07-24T12:07:18.010000"],["2024-07-24T12:07:19.010000"],["2024-07-24T12:07:20.010000"],["2024-07-24T12:07:21.010000"],["2024-07-24T12:07:22.010000"],["2024-07-24T12:07:23.010000"],["2024-07-24T12:07:24.010000"],["2024-07-24T12:07:25.010000"],["2024-07-24T12:07:26.010000"],["2024-07-24T12:07:27.010000"],["2024-07-24T12:07:28.010000"],["2024-07-24T12:07:29.010000"],["2024-07-24T12:07:30.010000"],["2024-07-24T12:07:31.010000"],["2024-07-24T12:07:32.010000"],["2024-07-24T12:07:33.010000"],["2024-07-24T12:07:34.010000"],["2024-07-24T12:07:35.010000"],["2024-07-24T12:07:36.010000"],["2024-07-24T12:07:37.010000"],["2024-07-24T12:07:38.010000"],["2024-07-24T12:07:39.010000"],["2024-07-24T12:07:40.010000"],["2024-07-24T12:07:41.010000"],["2024-07-24T12:07:42.010000"],["2024-07-24T12:07:43.010000"],["2024-07-24T12:07:44.010000"],["2024-07-24T12:07:45.010000"],["2024-07-24T12:07:46.010000"],["2024-07-24T12:07:47.010000"],["2024-07-24T12:07:48.010000"],["2024-07-24T12:07:49.010000"],["2024-07-24T12:07:50.010000"],["2024-07-24T12:07:51.010000"],["2024-07-24T12:07:52.010000"],["2024-07-24T12:07:53.010000"],["2024-07-24T12:07:54.010000"],["2024-07-24T12:07:55.010000"],["2024-07-24T12:07:56.010000"],["2024-07-24T12:07:57.010000"],["2024-07-24T12:07:58.010000"],["2024-07-24T12:07:59.010000"],["2024-07-24T12:08:00.010000"],["2024-07-24T12:08:01.010000"],["2024-07-24T12:08:02.010000"],["2024-07-24T12:08:03.010000"],["2024-07-24T12:08:04.010000"],["2024-07-24T12:08:05.010000"],["2024-07-24T12:08:06.010000"],["2024-07-24T12:08:07.010000"],["2024-07-24T12:08:08.010000"],["2024-07-24T12:08:09.010000"],["2024-07-24T12:08:10.010000"],["2024-07-24T12:08:11.010000"],["2024-07-24T12:08:12.010000"],["2024-07-24T12:08:13.010000"],["2024-07-24T12:08:14.010000"],["2024-07-24T12:08:15.010000"],["2024-07-24T12:08:16.010000"],["2024-07-24T12:08:17.010000"],["2024-07-24T12:08:18.010000"],["2024-07-24T12:08:19.010000"],["2024-07-24T12:08:20.010000"],["2024-07-24T12:08:21.010000"],["2024-07-24T12:08:22.010000"],["2024-07-24T12:08:23.010000"],["2024-07-24T12:08:24.010000"],["2024-07-24T12:08:25.010000"],["2024-07-24T12:08:26.010000"],["2024-07-24T12:08:27.010000"],["2024-07-24T12:08:28.010000"],["2024-07-24T12:08:29.010000"],["2024-07-24T12:08:30.010000"],["2024-07-24T12:08:31.010000"],["2024-07-24T12:08:32.010000"],["2024-07-24T12:08:33.010000"],["2024-07-24T12:08:34.010000"],["2024-07-24T12:08:35.010000"],["2024-07-24T12:08:36.010000"],["2024-07-24T12:08:37.010000"],["2024-07-24T12:08:38.010000"],["2024-07-24T12:08:39.010000"],["2024-07-24T12:08:40.010000"],["2024-07-24T12:08:41.010000"],["2024-07-24T12:08:42.010000"],["2024-07-24T12:08:43.010000"],["2024-07-24T12:08:44.010000"],["2024-07-24T12:08:45.010000"],["2024-07-24T12:08:46.010000"],["2024-07-24T12:08:47.010000"],["2024-07-24T12:08:48.010000"],["2024-07-24T12:08:49.010000"],["2024-07-24T12:08:50.010000"],["2024-07-24T12:08:51.010000"],["2024-07-24T12:08:52.010000"],["2024-07-24T12:08:53.010000"],["2024-07-24T12:08:54.010000"],["2024-07-24T12:08:55.010000"],["2024-07-24T12:08:56.010000"],["2024-07-24T12:08:57.010000"],["2024-07-24T12:08:58.010000"],["2024-07-24T12:08:59.010000"],["2024-07-24T12:09:00.010000"],["2024-07-24T12:09:01.010000"],["2024-07-24T12:09:02.010000"],["2024-07-24T12:09:03.010000"],["2024-07-24T12:09:04.010000"],["2024-07-24T12:09:05.010000"],["2024-07-24T12:09:06.010000"],["2024-07-24T12:09:07.010000"],["2024-07-24T12:09:08.010000"],["2024-07-24T12:09:09.010000"],["2024-07-24T12:09:10.010000"],["2024-07-24T12:09:11.010000"],["2024-07-24T12:09:12.010000"],["2024-07-24T12:09:13.010000"],["2024-07-24T12:09:14.010000"],["2024-07-24T12:09:15.010000"],["2024-07-24T12:09:16.010000"],["2024-07-24T12:09:17.010000"],["2024-07-24T12:09:18.010000"],["2024-07-24T12:09:19.010000"],["2024-07-24T12:09:20.010000"],["2024-07-24T12:09:21.010000"],["2024-07-24T12:09:22.010000"],["2024-07-24T12:09:23.010000"],["2024-07-24T12:09:24.010000"],["2024-07-24T12:09:25.010000"],["2024-07-24T12:09:26.010000"],["2024-07-24T12:09:27.010000"],["2024-07-24T12:09:28.010000"],["2024-07-24T12:09:29.010000"],["2024-07-24T12:09:30.010000"],["2024-07-24T12:09:31.010000"],["2024-07-24T12:09:32.010000"],["2024-07-24T12:09:33.010000"],["2024-07-24T12:09:34.010000"],["2024-07-24T12:09:35.010000"],["2024-07-24T12:09:36.010000"],["2024-07-24T12:09:37.010000"],["2024-07-24T12:09:38.010000"],["2024-07-24T12:09:39.010000"],["2024-07-24T12:09:40.010000"],["2024-07-24T12:09:41.010000"],["2024-07-24T12:09:42.010000"],["2024-07-24T12:09:43.010000"],["2024-07-24T12:09:44.010000"],["2024-07-24T12:09:45.010000"],["2024-07-24T12:09:46.010000"],["2024-07-24T12:09:47.010000"],["2024-07-24T12:09:48.010000"],["2024-07-24T12:09:49.010000"],["2024-07-24T12:09:50.010000"],["2024-07-24T12:09:51.010000"],["2024-07-24T12:09:52.010000"],["2024-07-24T12:09:53.010000"],["2024-07-24T12:09:54.010000"],["2024-07-24T12:09:55.010000"],["2024-07-24T12:09:56.010000"],["2024-07-24T12:09:57.010000"],["2024-07-24T12:09:58.010000"],["2024-07-24T12:09:59.010000"],["2024-07-24T12:10:00.010000"],["2024-07-24T12:10:01.010000"],["2024-07-24T12:10:02.010000"],["2024-07-24T12:10:03.010000"],["2024-07-24T12:10:04.010000"],["2024-07-24T12:10:05.010000"],["2024-07-24T12:10:06.010000"],["2024-07-24T12:10:07.010000"],["2024-07-24T12:10:08.010000"],["2024-07-24T12:10:09.010000"],["2024-07-24T12:10:10.010000"],["2024-07-24T12:10:11.010000"],["2024-07-24T12:10:12.010000"],["2024-07-24T12:10:13.010000"],["2024-07-24T12:10:14.010000"],["2024-07-24T12:10:15.010000"],["2024-07-24T12:10:16.010000"],["2024-07-24T12:10:17.010000"],["2024-07-24T12:10:18.010000"],["2024-07-24T12:10:19.010000"],["2024-07-24T12:10:20.010000"],["2024-07-24T12:10:21.010000"],["2024-07-24T12:10:22.010000"],["2024-07-24T12:10:23.010000"],["2024-07-24T12:10:24.010000"],["2024-07-24T12:10:25.010000"],["2024-07-24T12:10:26.010000"],["2024-07-24T12:10:27.010000"],["2024-07-24T12:10:28.010000"],["2024-07-24T12:10:29.010000"],["2024-07-24T12:10:30.010000"],["2024-07-24T12:10:31.010000"],["2024-07-24T12:10:32.010000"],["2024-07-24T12:10:33.010000"],["2024-07-24T12:10:34.010000"],["2024-07-24T12:10:35.010000"],["2024-07-24T12:10:36.010000"],["2024-07-24T12:10:37.010000"],["2024-07-24T12:10:38.010000"],["2024-07-24T12:10:39.010000"],["2024-07-24T12:10:40.010000"],["2024-07-24T12:10:41.010000"],["2024-07-24T12:10:42.010000"],["2024-07-24T12:10:43.010000"],["2024-07-24T12:10:44.010000"],["2024-07-24T12:10:45.010000"],["2024-07-24T12:10:46.010000"],["2024-07-24T12:10:47.010000"],["2024-07-24T12:10:48.010000"],["2024-07-24T12:10:49.010000"],["2024-07-24T12:10:50.010000"],["2024-07-24T12:10:51.010000"],["2024-07-24T12:10:52.010000"],["2024-07-24T12:10:53.010000"],["2024-07-24T12:10:54.010000"],["2024-07-24T12:10:55.010000"],["2024-07-24T12:10:56.010000"],["2024-07-24T12:10:57.010000"],["2024-07-24T12:10:58.010000"],["2024-07-24T12:10:59.010000"],["2024-07-24T12:11:00.010000"],["2024-07-24T12:11:01.010000"],["2024-07-24T12:11:02.010000"],["2024-07-24T12:11:03.010000"],["2024-07-24T12:11:04.010000"],["2024-07-24T12:11:05.010000"],["2024-07-24T12:11:06.010000"],["2024-07-24T12:11:07.010000"],["2024-07-24T12:11:08.010000"],["2024-07-24T12:11:09.010000"],["2024-07-24T12:11:10.010000"],["2024-07-24T12:11:11.010000"],["2024-07-24T12:11:12.010000"],["2024-07-24T12:11:13.010000"],["2024-07-24T12:11:14.010000"],["2024-07-24T12:11:15.010000"],["2024-07-24T12:11:16.010000"],["2024-07-24T12:11:17.010000"],["2024-07-24T12:11:18.010000"],["2024-07-24T12:11:19.010000"],["2024-07-24T12:11:20.010000"],["2024-07-24T12:11:21.010000"],["2024-07-24T12:11:22.010000"],["2024-07-24T12:11:23.010000"],["2024-07-24T12:11:24.010000"],["2024-07-24T12:11:25.010000"],["2024-07-24T12:11:26.010000"],["2024-07-24T12:11:27.010000"],["2024-07-24T12:11:28.010000"],["2024-07-24T12:11:29.010000"],["2024-07-24T12:11:30.010000"],["2024-07-24T12:11:31.010000"],["2024-07-24T12:11:32.010000"],["2024-07-24T12:11:33.010000"],["2024-07-24T12:11:34.010000"],["2024-07-24T12:11:35.010000"],["2024-07-24T12:11:36.010000"],["2024-07-24T12:11:37.010000"],["2024-07-24T12:11:38.010000"],["2024-07-24T12:11:39.010000"],["2024-07-24T12:11:40.010000"],["2024-07-24T12:11:41.010000"],["2024-07-24T12:11:42.010000"],["2024-07-24T12:11:43.010000"],["2024-07-24T12:11:44.010000"],["2024-07-24T12:11:45.010000"],["2024-07-24T12:11:46.010000"],["2024-07-24T12:11:47.010000"],["2024-07-24T12:11:48.010000"],["2024-07-24T12:11:49.010000"],["2024-07-24T12:11:50.010000"],["2024-07-24T12:11:51.010000"],["2024-07-24T12:11:52.010000"],["2024-07-24T12:11:53.010000"],["2024-07-24T12:11:54.010000"],["2024-07-24T12:11:55.010000"],["2024-07-24T12:11:56.010000"],["2024-07-24T12:11:57.010000"],["2024-07-24T12:11:58.010000"],["2024-07-24T12:11:59.010000"],["2024-07-24T12:12:00.010000"],["2024-07-24T12:12:01.010000"],["2024-07-24T12:12:02.010000"],["2024-07-24T12:12:03.010000"],["2024-07-24T12:12:04.010000"],["2024-07-24T12:12:05.010000"],["2024-07-24T12:12:06.010000"],["2024-07-24T12:12:07.010000"],["2024-07-24T12:12:08.010000"],["2024-07-24T12:12:09.010000"],["2024-07-24T12:12:10.010000"],["2024-07-24T12:12:11.010000"],["2024-07-24T12:12:12.010000"],["2024-07-24T12:12:13.010000"],["2024-07-24T12:12:14.010000"],["2024-07-24T12:12:15.010000"],["2024-07-24T12:12:16.010000"],["2024-07-24T12:12:17.010000"],["2024-07-24T12:12:18.010000"],["2024-07-24T12:12:19.010000"],["2024-07-24T12:12:20.010000"],["2024-07-24T12:12:21.010000"],["2024-07-24T12:12:22.010000"],["2024-07-24T12:12:23.010000"],["2024-07-24T12:12:24.010000"],["2024-07-24T12:12:25.010000"],["2024-07-24T12:12:26.010000"],["2024-07-24T12:12:27.010000"],["2024-07-24T12:12:28.010000"],["2024-07-24T12:12:29.010000"],["2024-07-24T12:12:30.010000"],["2024-07-24T12:12:31.010000"],["2024-07-24T12:12:32.010000"],["2024-07-24T12:12:33.010000"],["2024-07-24T12:12:34.010000"],["2024-07-24T12:12:35.010000"],["2024-07-24T12:12:36.010000"],["2024-07-24T12:12:37.010000"],["2024-07-24T12:12:38.010000"],["2024-07-24T12:12:39.010000"],["2024-07-24T12:12:40.010000"],["2024-07-24T12:12:41.010000"],["2024-07-24T12:12:42.010000"],["2024-07-24T12:12:43.010000"],["2024-07-24T12:12:44.010000"],["2024-07-24T12:12:45.010000"],["2024-07-24T12:12:46.010000"],["2024-07-24T12:12:47.010000"],["2024-07-24T12:12:48.010000"],["2024-07-24T12:12:49.010000"],["2024-07-24T12:12:50.010000"],["2024-07-24T12:12:51.010000"],["2024-07-24T12:12:52.010000"],["2024-07-24T12:12:53.010000"],["2024-07-24T12:12:54.010000"],["2024-07-24T12:12:55.010000"],["2024-07-24T12:12:56.010000"],["2024-07-24T12:12:57.010000"],["2024-07-24T12:12:58.010000"],["2024-07-24T12:12:59.010000"],["2024-07-24T12:13:00.010000"],["2024-07-24T12:13:01.010000"],["2024-07-24T12:13:02.010000"],["2024-07-24T12:13:03.010000"],["2024-07-24T12:13:04.010000"],["2024-07-24T12:13:05.010000"],["2024-07-24T12:13:06.010000"],["2024-07-24T12:13:07.010000"],["2024-07-24T12:13:08.010000"],["2024-07-24T12:13:09.010000"],["2024-07-24T12:13:10.010000"],["2024-07-24T12:13:11.010000"],["2024-07-24T12:13:12.010000"],["2024-07-24T12:13:13.010000"],["2024-07-24T12:13:14.010000"],["2024-07-24T12:13:15.010000"],["2024-07-24T12:13:16.010000"],["2024-07-24T12:13:17.010000"],["2024-07-24T12:13:18.010000"],["2024-07-24T12:13:19.010000"],["2024-07-24T12:13:20.010000"],["2024-07-24T12:13:21.010000"],["2024-07-24T12:13:22.010000"],["2024-07-24T12:13:23.010000"],["2024-07-24T12:13:24.010000"],["2024-07-24T12:13:25.010000"],["2024-07-24T12:13:26.010000"],["2024-07-24T12:13:27.010000"],["2024-07-24T12:13:28.010000"],["2024-07-24T12:13:29.010000"],["2024-07-24T12:13:30.010000"],["2024-07-24T12:13:31.010000"],["2024-07-24T12:13:32.010000"],["2024-07-24T12:13:33.010000"],["2024-07-24T12:13:34.010000"],["2024-07-24T12:13:35.010000"],["2024-07-24T12:13:36.010000"],["2024-07-24T12:13:37.010000"],["2024-07-24T12:13:38.010000"],["2024-07-24T12:13:39.010000"],["2024-07-24T12:13:40.010000"],["2024-07-24T12:13:41.010000"],["2024-07-24T12:13:42.010000"],["2024-07-24T12:13:43.010000"],["2024-07-24T12:13:44.010000"],["2024-07-24T12:13:45.010000"],["2024-07-24T12:13:46.010000"],["2024-07-24T12:13:47.010000"],["2024-07-24T12:13:48.010000"],["2024-07-24T12:13:49.010000"],["2024-07-24T12:13:50.010000"],["2024-07-24T12:13:51.010000"],["2024-07-24T12:13:52.010000"],["2024-07-24T12:13:53.010000"],["2024-07-24T12:13:54.010000"],["2024-07-24T12:13:55.010000"],["2024-07-24T12:13:56.010000"],["2024-07-24T12:13:57.010000"],["2024-07-24T12:13:58.010000"],["2024-07-24T12:13:59.010000"],["2024-07-24T12:14:00.010000"],["2024-07-24T12:14:01.010000"],["2024-07-24T12:14:02.010000"],["2024-07-24T12:14:03.010000"],["2024-07-24T12:14:04.010000"],["2024-07-24T12:14:05.010000"],["2024-07-24T12:14:06.010000"],["2024-07-24T12:14:07.010000"],["2024-07-24T12:14:08.010000"],["2024-07-24T12:14:09.010000"],["2024-07-24T12:14:10.010000"],["2024-07-24T12:14:11.010000"],["2024-07-24T12:14:12.010000"],["2024-07-24T12:14:13.010000"],["2024-07-24T12:14:14.010000"],["2024-07-24T12:14:15.010000"],["2024-07-24T12:14:16.010000"],["2024-07-24T12:14:17.010000"],["2024-07-24T12:14:18.010000"],["2024-07-24T12:14:19.010000"],["2024-07-24T12:14:20.010000"],["2024-07-24T12:14:21.010000"],["2024-07-24T12:14:22.010000"],["2024-07-24T12:14:23.010000"],["2024-07-24T12:14:24.010000"],["2024-07-24T12:14:25.010000"],["2024-07-24T12:14:26.010000"],["2024-07-24T12:14:27.010000"],["2024-07-24T12:14:28.010000"],["2024-07-24T12:14:29.010000"],["2024-07-24T12:14:30.010000"],["2024-07-24T12:14:31.010000"],["2024-07-24T12:14:32.010000"],["2024-07-24T12:14:33.010000"],["2024-07-24T12:14:34.010000"],["2024-07-24T12:14:35.010000"],["2024-07-24T12:14:36.010000"],["2024-07-24T12:14:37.010000"],["2024-07-24T12:14:38.010000"],["2024-07-24T12:14:39.010000"],["2024-07-24T12:14:40.010000"],["2024-07-24T12:14:41.010000"],["2024-07-24T12:14:42.010000"],["2024-07-24T12:14:43.010000"],["2024-07-24T12:14:44.010000"],["2024-07-24T12:14:45.010000"],["2024-07-24T12:14:46.010000"],["2024-07-24T12:14:47.010000"],["2024-07-24T12:14:48.010000"],["2024-07-24T12:14:49.010000"],["2024-07-24T12:14:50.010000"],["2024-07-24T12:14:51.010000"],["2024-07-24T12:14:52.010000"],["2024-07-24T12:14:53.010000"],["2024-07-24T12:14:54.010000"],["2024-07-24T12:14:55.010000"],["2024-07-24T12:14:56.010000"],["2024-07-24T12:14:57.010000"],["2024-07-24T12:14:58.010000"],["2024-07-24T12:14:59.010000"],["2024-07-24T12:15:00.010000"],["2024-07-24T12:15:01.010000"],["2024-07-24T12:15:02.010000"],["2024-07-24T12:15:03.010000"],["2024-07-24T12:15:04.010000"],["2024-07-24T12:15:05.010000"],["2024-07-24T12:15:06.010000"],["2024-07-24T12:15:07.010000"],["2024-07-24T12:15:08.010000"],["2024-07-24T12:15:09.010000"],["2024-07-24T12:15:10.010000"],["2024-07-24T12:15:11.010000"],["2024-07-24T12:15:12.010000"],["2024-07-24T12:15:13.010000"],["2024-07-24T12:15:14.010000"],["2024-07-24T12:15:15.010000"],["2024-07-24T12:15:16.010000"],["2024-07-24T12:15:17.010000"],["2024-07-24T12:15:18.010000"],["2024-07-24T12:15:19.010000"],["2024-07-24T12:15:20.010000"],["2024-07-24T12:15:21.010000"],["2024-07-24T12:15:22.010000"],["2024-07-24T12:15:23.010000"],["2024-07-24T12:15:24.010000"],["2024-07-24T12:15:25.010000"],["2024-07-24T12:15:26.010000"],["2024-07-24T12:15:27.010000"],["2024-07-24T12:15:28.010000"],["2024-07-24T12:15:29.010000"],["2024-07-24T12:15:30.010000"],["2024-07-24T12:15:31.010000"],["2024-07-24T12:15:32.010000"],["2024-07-24T12:15:33.010000"],["2024-07-24T12:15:34.010000"],["2024-07-24T12:15:35.010000"],["2024-07-24T12:15:36.010000"],["2024-07-24T12:15:37.010000"],["2024-07-24T12:15:38.010000"],["2024-07-24T12:15:39.010000"],["2024-07-24T12:15:40.010000"],["2024-07-24T12:15:41.010000"],["2024-07-24T12:15:42.010000"],["2024-07-24T12:15:43.010000"],["2024-07-24T12:15:44.010000"],["2024-07-24T12:15:45.010000"],["2024-07-24T12:15:46.010000"],["2024-07-24T12:15:47.010000"],["2024-07-24T12:15:48.010000"],["2024-07-24T12:15:49.010000"],["2024-07-24T12:15:50.010000"],["2024-07-24T12:15:51.010000"],["2024-07-24T12:15:52.010000"],["2024-07-24T12:15:53.010000"],["2024-07-24T12:15:54.010000"],["2024-07-24T12:15:55.010000"],["2024-07-24T12:15:56.010000"],["2024-07-24T12:15:57.010000"],["2024-07-24T12:15:58.010000"],["2024-07-24T12:15:59.010000"],["2024-07-24T12:16:00.010000"],["2024-07-24T12:16:01.010000"],["2024-07-24T12:16:02.010000"],["2024-07-24T12:16:03.010000"],["2024-07-24T12:16:04.010000"],["2024-07-24T12:16:05.010000"],["2024-07-24T12:16:06.010000"],["2024-07-24T12:16:07.010000"],["2024-07-24T12:16:08.010000"],["2024-07-24T12:16:09.010000"],["2024-07-24T12:16:10.010000"],["2024-07-24T12:16:11.010000"],["2024-07-24T12:16:12.010000"],["2024-07-24T12:16:13.010000"],["2024-07-24T12:16:14.010000"],["2024-07-24T12:16:15.010000"],["2024-07-24T12:16:16.010000"],["2024-07-24T12:16:17.010000"],["2024-07-24T12:16:18.010000"],["2024-07-24T12:16:19.010000"],["2024-07-24T12:16:20.010000"],["2024-07-24T12:16:21.010000"],["2024-07-24T12:16:22.010000"],["2024-07-24T12:16:23.010000"],["2024-07-24T12:16:24.010000"],["2024-07-24T12:16:25.010000"],["2024-07-24T12:16:26.010000"],["2024-07-24T12:16:27.010000"],["2024-07-24T12:16:28.010000"],["2024-07-24T12:16:29.010000"],["2024-07-24T12:16:30.010000"],["2024-07-24T12:16:31.010000"],["2024-07-24T12:16:32.010000"],["2024-07-24T12:16:33.010000"],["2024-07-24T12:16:34.010000"],["2024-07-24T12:16:35.010000"],["2024-07-24T12:16:36.010000"],["2024-07-24T12:16:37.010000"],["2024-07-24T12:16:38.010000"],["2024-07-24T12:16:39.010000"],["2024-07-24T12:16:40.010000"],["2024-07-24T12:16:41.010000"],["2024-07-24T12:16:42.010000"],["2024-07-24T12:16:43.010000"],["2024-07-24T12:16:44.010000"],["2024-07-24T12:16:45.010000"],["2024-07-24T12:16:46.010000"],["2024-07-24T12:16:47.010000"],["2024-07-24T12:16:48.010000"],["2024-07-24T12:16:49.010000"],["2024-07-24T12:16:50.010000"],["2024-07-24T12:16:51.010000"],["2024-07-24T12:16:52.010000"],["2024-07-24T12:16:53.010000"],["2024-07-24T12:16:54.010000"],["2024-07-24T12:16:55.010000"],["2024-07-24T12:16:56.010000"],["2024-07-24T12:16:57.010000"],["2024-07-24T12:16:58.010000"],["2024-07-24T12:16:59.010000"],["2024-07-24T12:17:00.010000"],["2024-07-24T12:17:01.010000"],["2024-07-24T12:17:02.010000"],["2024-07-24T12:17:03.010000"],["2024-07-24T12:17:04.010000"],["2024-07-24T12:17:05.010000"],["2024-07-24T12:17:06.010000"],["2024-07-24T12:17:07.010000"],["2024-07-24T12:17:08.010000"],["2024-07-24T12:17:09.010000"],["2024-07-24T12:17:10.010000"],["2024-07-24T12:17:11.010000"],["2024-07-24T12:17:12.010000"],["2024-07-24T12:17:13.010000"],["2024-07-24T12:17:14.010000"],["2024-07-24T12:17:15.010000"],["2024-07-24T12:17:16.010000"],["2024-07-24T12:17:17.010000"],["2024-07-24T12:17:18.010000"],["2024-07-24T12:17:19.010000"],["2024-07-24T12:17:20.010000"],["2024-07-24T12:17:21.010000"],["2024-07-24T12:17:22.010000"],["2024-07-24T12:17:23.010000"],["2024-07-24T12:17:24.010000"],["2024-07-24T12:17:25.010000"],["2024-07-24T12:17:26.010000"],["2024-07-24T12:17:27.010000"],["2024-07-24T12:17:28.010000"],["2024-07-24T12:17:29.010000"],["2024-07-24T12:17:30.010000"],["2024-07-24T12:17:31.010000"],["2024-07-24T12:17:32.010000"],["2024-07-24T12:17:33.010000"],["2024-07-24T12:17:34.010000"],["2024-07-24T12:17:35.010000"],["2024-07-24T12:17:36.010000"],["2024-07-24T12:17:37.010000"],["2024-07-24T12:17:38.010000"],["2024-07-24T12:17:39.010000"],["2024-07-24T12:17:40.010000"],["2024-07-24T12:17:41.010000"],["2024-07-24T12:17:42.010000"],["2024-07-24T12:17:43.010000"],["2024-07-24T12:17:44.010000"],["2024-07-24T12:17:45.010000"],["2024-07-24T12:17:46.010000"],["2024-07-24T12:17:47.010000"],["2024-07-24T12:17:48.010000"],["2024-07-24T12:17:49.010000"],["2024-07-24T12:17:50.010000"],["2024-07-24T12:17:51.010000"],["2024-07-24T12:17:52.010000"],["2024-07-24T12:17:53.010000"],["2024-07-24T12:17:54.010000"],["2024-07-24T12:17:55.010000"],["2024-07-24T12:17:56.010000"],["2024-07-24T12:17:57.010000"],["2024-07-24T12:17:58.010000"],["2024-07-24T12:17:59.010000"],["2024-07-24T12:18:00.010000"],["2024-07-24T12:18:01.010000"],["2024-07-24T12:18:02.010000"],["2024-07-24T12:18:03.010000"],["2024-07-24T12:18:04.010000"],["2024-07-24T12:18:05.010000"],["2024-07-24T12:18:06.010000"],["2024-07-24T12:18:07.010000"],["2024-07-24T12:18:08.010000"],["2024-07-24T12:18:09.010000"],["2024-07-24T12:18:10.010000"],["2024-07-24T12:18:11.010000"],["2024-07-24T12:18:12.010000"],["2024-07-24T12:18:13.010000"],["2024-07-24T12:18:14.010000"],["2024-07-24T12:18:15.010000"],["2024-07-24T12:18:16.010000"],["2024-07-24T12:18:17.010000"],["2024-07-24T12:18:18.010000"],["2024-07-24T12:18:19.010000"],["2024-07-24T12:18:20.010000"],["2024-07-24T12:18:21.010000"],["2024-07-24T12:18:22.010000"],["2024-07-24T12:18:23.010000"],["2024-07-24T12:18:24.010000"],["2024-07-24T12:18:25.010000"],["2024-07-24T12:18:26.010000"],["2024-07-24T12:18:27.010000"],["2024-07-24T12:18:28.010000"],["2024-07-24T12:18:29.010000"],["2024-07-24T12:18:30.010000"],["2024-07-24T12:18:31.010000"],["2024-07-24T12:18:32.010000"],["2024-07-24T12:18:33.010000"],["2024-07-24T12:18:34.010000"],["2024-07-24T12:18:35.010000"],["2024-07-24T12:18:36.010000"],["2024-07-24T12:18:37.010000"],["2024-07-24T12:18:38.010000"],["2024-07-24T12:18:39.010000"],["2024-07-24T12:18:40.010000"],["2024-07-24T12:18:41.010000"],["2024-07-24T12:18:42.010000"],["2024-07-24T12:18:43.010000"],["2024-07-24T12:18:44.010000"],["2024-07-24T12:18:45.010000"],["2024-07-24T12:18:46.010000"],["2024-07-24T12:18:47.010000"],["2024-07-24T12:18:48.010000"],["2024-07-24T12:18:49.010000"],["2024-07-24T12:18:50.010000"],["2024-07-24T12:18:51.010000"],["2024-07-24T12:18:52.010000"],["2024-07-24T12:18:53.010000"],["2024-07-24T12:18:54.010000"],["2024-07-24T12:18:55.010000"],["2024-07-24T12:18:56.010000"],["2024-07-24T12:18:57.010000"],["2024-07-24T12:18:58.010000"],["2024-07-24T12:18:59.010000"],["2024-07-24T12:19:00.010000"],["2024-07-24T12:19:01.010000"],["2024-07-24T12:19:02.010000"],["2024-07-24T12:19:03.010000"],["2024-07-24T12:19:04.010000"],["2024-07-24T12:19:05.010000"],["2024-07-24T12:19:06.010000"],["2024-07-24T12:19:07.010000"],["2024-07-24T12:19:08.010000"],["2024-07-24T12:19:09.010000"],["2024-07-24T12:19:10.010000"],["2024-07-24T12:19:11.010000"],["2024-07-24T12:19:12.010000"],["2024-07-24T12:19:13.010000"],["2024-07-24T12:19:14.010000"],["2024-07-24T12:19:15.010000"],["2024-07-24T12:19:16.010000"],["2024-07-24T12:19:17.010000"],["2024-07-24T12:19:18.010000"],["2024-07-24T12:19:19.010000"],["2024-07-24T12:19:20.010000"],["2024-07-24T12:19:21.010000"],["2024-07-24T12:19:22.010000"],["2024-07-24T12:19:23.010000"],["2024-07-24T12:19:24.010000"],["2024-07-24T12:19:25.010000"],["2024-07-24T12:19:26.010000"],["2024-07-24T12:19:27.010000"],["2024-07-24T12:19:28.010000"],["2024-07-24T12:19:29.010000"],["2024-07-24T12:19:30.010000"],["2024-07-24T12:19:31.010000"],["2024-07-24T12:19:32.010000"],["2024-07-24T12:19:33.010000"],["2024-07-24T12:19:34.010000"],["2024-07-24T12:19:35.010000"],["2024-07-24T12:19:36.010000"],["2024-07-24T12:19:37.010000"],["2024-07-24T12:19:38.010000"],["2024-07-24T12:19:39.010000"],["2024-07-24T12:19:40.010000"],["2024-07-24T12:19:41.010000"],["2024-07-24T12:19:42.010000"],["2024-07-24T12:19:43.010000"],["2024-07-24T12:19:44.010000"],["2024-07-24T12:19:45.010000"],["2024-07-24T12:19:46.010000"],["2024-07-24T12:19:47.010000"],["2024-07-24T12:19:48.010000"],["2024-07-24T12:19:49.010000"],["2024-07-24T12:19:50.010000"],["2024-07-24T12:19:51.010000"],["2024-07-24T12:19:52.010000"],["2024-07-24T12:19:53.010000"],["2024-07-24T12:19:54.010000"],["2024-07-24T12:19:55.010000"],["2024-07-24T12:19:56.010000"],["2024-07-24T12:19:57.010000"],["2024-07-24T12:19:58.010000"],["2024-07-24T12:19:59.010000"],["2024-07-24T12:20:00.010000"],["2024-07-24T12:20:01.010000"],["2024-07-24T12:20:02.010000"],["2024-07-24T12:20:03.010000"],["2024-07-24T12:20:04.010000"],["2024-07-24T12:20:05.010000"],["2024-07-24T12:20:06.010000"],["2024-07-24T12:20:07.010000"],["2024-07-24T12:20:08.010000"],["2024-07-24T12:20:09.010000"],["2024-07-24T12:20:10.010000"],["2024-07-24T12:20:11.010000"],["2024-07-24T12:20:12.010000"],["2024-07-24T12:20:13.010000"],["2024-07-24T12:20:14.010000"],["2024-07-24T12:20:15.010000"],["2024-07-24T12:20:16.010000"],["2024-07-24T12:20:17.010000"],["2024-07-24T12:20:18.010000"],["2024-07-24T12:20:19.010000"],["2024-07-24T12:20:20.010000"],["2024-07-24T12:20:21.010000"],["2024-07-24T12:20:22.010000"],["2024-07-24T12:20:23.010000"],["2024-07-24T12:20:24.010000"],["2024-07-24T12:20:25.010000"],["2024-07-24T12:20:26.010000"],["2024-07-24T12:20:27.010000"],["2024-07-24T12:20:28.010000"],["2024-07-24T12:20:29.010000"],["2024-07-24T12:20:30.010000"],["2024-07-24T12:20:31.010000"],["2024-07-24T12:20:32.010000"],["2024-07-24T12:20:33.010000"],["2024-07-24T12:20:34.010000"],["2024-07-24T12:20:35.010000"],["2024-07-24T12:20:36.010000"],["2024-07-24T12:20:37.010000"],["2024-07-24T12:20:38.010000"],["2024-07-24T12:20:39.010000"],["2024-07-24T12:20:40.010000"],["2024-07-24T12:20:41.010000"],["2024-07-24T12:20:42.010000"],["2024-07-24T12:20:43.010000"],["2024-07-24T12:20:44.010000"],["2024-07-24T12:20:45.010000"],["2024-07-24T12:20:46.010000"],["2024-07-24T12:20:47.010000"],["2024-07-24T12:20:48.010000"],["2024-07-24T12:20:49.010000"],["2024-07-24T12:20:50.010000"],["2024-07-24T12:20:51.010000"],["2024-07-24T12:20:52.010000"],["2024-07-24T12:20:53.010000"],["2024-07-24T12:20:54.010000"],["2024-07-24T12:20:55.010000"],["2024-07-24T12:20:56.010000"],["2024-07-24T12:20:57.010000"],["2024-07-24T12:20:58.010000"],["2024-07-24T12:20:59.010000"],["2024-07-24T12:21:00.010000"],["2024-07-24T12:21:01.010000"],["2024-07-24T12:21:02.010000"],["2024-07-24T12:21:03.010000"],["2024-07-24T12:21:04.010000"],["2024-07-24T12:21:05.010000"],["2024-07-24T12:21:06.010000"],["2024-07-24T12:21:07.010000"],["2024-07-24T12:21:08.010000"],["2024-07-24T12:21:09.010000"],["2024-07-24T12:21:10.010000"],["2024-07-24T12:21:11.010000"],["2024-07-24T12:21:12.010000"],["2024-07-24T12:21:13.010000"],["2024-07-24T12:21:14.010000"],["2024-07-24T12:21:15.010000"],["2024-07-24T12:21:16.010000"],["2024-07-24T12:21:17.010000"],["2024-07-24T12:21:18.010000"],["2024-07-24T12:21:19.010000"],["2024-07-24T12:21:20.010000"],["2024-07-24T12:21:21.010000"],["2024-07-24T12:21:22.010000"],["2024-07-24T12:21:23.010000"],["2024-07-24T12:21:24.010000"],["2024-07-24T12:21:25.010000"],["2024-07-24T12:21:26.010000"],["2024-07-24T12:21:27.010000"],["2024-07-24T12:21:28.010000"],["2024-07-24T12:21:29.010000"],["2024-07-24T12:21:30.010000"],["2024-07-24T12:21:31.010000"],["2024-07-24T12:21:32.010000"],["2024-07-24T12:21:33.010000"],["2024-07-24T12:21:34.010000"],["2024-07-24T12:21:35.010000"],["2024-07-24T12:21:36.010000"],["2024-07-24T12:21:37.010000"],["2024-07-24T12:21:38.010000"],["2024-07-24T12:21:39.010000"],["2024-07-24T12:21:40.010000"],["2024-07-24T12:21:41.010000"],["2024-07-24T12:21:42.010000"],["2024-07-24T12:21:43.010000"],["2024-07-24T12:21:44.010000"],["2024-07-24T12:21:45.010000"],["2024-07-24T12:21:46.010000"],["2024-07-24T12:21:47.010000"],["2024-07-24T12:21:48.010000"],["2024-07-24T12:21:49.010000"],["2024-07-24T12:21:50.010000"],["2024-07-24T12:21:51.010000"],["2024-07-24T12:21:52.010000"],["2024-07-24T12:21:53.010000"],["2024-07-24T12:21:54.010000"],["2024-07-24T12:21:55.010000"],["2024-07-24T12:21:56.010000"],["2024-07-24T12:21:57.010000"],["2024-07-24T12:21:58.010000"],["2024-07-24T12:21:59.010000"],["2024-07-24T12:22:00.010000"],["2024-07-24T12:22:01.010000"],["2024-07-24T12:22:02.010000"],["2024-07-24T12:22:03.010000"],["2024-07-24T12:22:04.010000"],["2024-07-24T12:22:05.010000"],["2024-07-24T12:22:06.010000"],["2024-07-24T12:22:07.010000"],["2024-07-24T12:22:08.010000"],["2024-07-24T12:22:09.010000"],["2024-07-24T12:22:10.010000"],["2024-07-24T12:22:11.010000"],["2024-07-24T12:22:12.010000"],["2024-07-24T12:22:13.010000"],["2024-07-24T12:22:14.010000"],["2024-07-24T12:22:15.010000"],["2024-07-24T12:22:16.010000"],["2024-07-24T12:22:17.010000"],["2024-07-24T12:22:18.010000"],["2024-07-24T12:22:19.010000"],["2024-07-24T12:22:20.010000"],["2024-07-24T12:22:21.010000"],["2024-07-24T12:22:22.010000"],["2024-07-24T12:22:23.010000"],["2024-07-24T12:22:24.010000"],["2024-07-24T12:22:25.010000"],["2024-07-24T12:22:26.010000"],["2024-07-24T12:22:27.010000"],["2024-07-24T12:22:28.010000"],["2024-07-24T12:22:29.010000"],["2024-07-24T12:22:30.010000"],["2024-07-24T12:22:31.010000"],["2024-07-24T12:22:32.010000"],["2024-07-24T12:22:33.010000"],["2024-07-24T12:22:34.010000"],["2024-07-24T12:22:35.010000"],["2024-07-24T12:22:36.010000"],["2024-07-24T12:22:37.010000"],["2024-07-24T12:22:38.010000"],["2024-07-24T12:22:39.010000"],["2024-07-24T12:22:40.010000"],["2024-07-24T12:22:41.010000"],["2024-07-24T12:22:42.010000"],["2024-07-24T12:22:43.010000"],["2024-07-24T12:22:44.010000"],["2024-07-24T12:22:45.010000"],["2024-07-24T12:22:46.010000"],["2024-07-24T12:22:47.010000"],["2024-07-24T12:22:48.010000"],["2024-07-24T12:22:49.010000"],["2024-07-24T12:22:50.010000"],["2024-07-24T12:22:51.010000"],["2024-07-24T12:22:52.010000"],["2024-07-24T12:22:53.010000"],["2024-07-24T12:22:54.010000"],["2024-07-24T12:22:55.010000"],["2024-07-24T12:22:56.010000"],["2024-07-24T12:22:57.010000"],["2024-07-24T12:22:58.010000"],["2024-07-24T12:22:59.010000"],["2024-07-24T12:23:00.010000"],["2024-07-24T12:23:01.010000"],["2024-07-24T12:23:02.010000"],["2024-07-24T12:23:03.010000"],["2024-07-24T12:23:04.010000"],["2024-07-24T12:23:05.010000"],["2024-07-24T12:23:06.010000"],["2024-07-24T12:23:07.010000"],["2024-07-24T12:23:08.010000"],["2024-07-24T12:23:09.010000"],["2024-07-24T12:23:10.010000"],["2024-07-24T12:23:11.010000"],["2024-07-24T12:23:12.010000"],["2024-07-24T12:23:13.010000"],["2024-07-24T12:23:14.010000"],["2024-07-24T12:23:15.010000"],["2024-07-24T12:23:16.010000"],["2024-07-24T12:23:17.010000"],["2024-07-24T12:23:18.010000"],["2024-07-24T12:23:19.010000"],["2024-07-24T12:23:20.010000"],["2024-07-24T12:23:21.010000"],["2024-07-24T12:23:22.010000"],["2024-07-24T12:23:23.010000"],["2024-07-24T12:23:24.010000"],["2024-07-24T12:23:25.010000"],["2024-07-24T12:23:26.010000"],["2024-07-24T12:23:27.010000"],["2024-07-24T12:23:28.010000"],["2024-07-24T12:23:29.010000"],["2024-07-24T12:23:30.010000"],["2024-07-24T12:23:31.010000"],["2024-07-24T12:23:32.010000"],["2024-07-24T12:23:33.010000"],["2024-07-24T12:23:34.010000"],["2024-07-24T12:23:35.010000"],["2024-07-24T12:23:36.010000"],["2024-07-24T12:23:37.010000"],["2024-07-24T12:23:38.010000"],["2024-07-24T12:23:39.010000"],["2024-07-24T12:23:40.010000"],["2024-07-24T12:23:41.010000"],["2024-07-24T12:23:42.010000"],["2024-07-24T12:23:43.010000"],["2024-07-24T12:23:44.010000"],["2024-07-24T12:23:45.010000"],["2024-07-24T12:23:46.010000"],["2024-07-24T12:23:47.010000"],["2024-07-24T12:23:48.010000"],["2024-07-24T12:23:49.010000"],["2024-07-24T12:23:50.010000"],["2024-07-24T12:23:51.010000"],["2024-07-24T12:23:52.010000"],["2024-07-24T12:23:53.010000"],["2024-07-24T12:23:54.010000"],["2024-07-24T12:23:55.010000"],["2024-07-24T12:23:56.010000"],["2024-07-24T12:23:57.010000"],["2024-07-24T12:23:58.010000"],["2024-07-24T12:23:59.010000"],["2024-07-24T12:24:00.010000"],["2024-07-24T12:24:01.010000"],["2024-07-24T12:24:02.010000"],["2024-07-24T12:24:03.010000"],["2024-07-24T12:24:04.010000"],["2024-07-24T12:24:05.010000"],["2024-07-24T12:24:06.010000"],["2024-07-24T12:24:07.010000"],["2024-07-24T12:24:08.010000"],["2024-07-24T12:24:09.010000"],["2024-07-24T12:24:10.010000"],["2024-07-24T12:24:11.010000"],["2024-07-24T12:24:12.010000"],["2024-07-24T12:24:13.010000"],["2024-07-24T12:24:14.010000"],["2024-07-24T12:24:15.010000"],["2024-07-24T12:24:16.010000"],["2024-07-24T12:24:17.010000"],["2024-07-24T12:24:18.010000"],["2024-07-24T12:24:19.010000"],["2024-07-24T12:24:20.010000"],["2024-07-24T12:24:21.010000"],["2024-07-24T12:24:22.010000"],["2024-07-24T12:24:23.010000"],["2024-07-24T12:24:24.010000"],["2024-07-24T12:24:25.010000"],["2024-07-24T12:24:26.010000"],["2024-07-24T12:24:27.010000"],["2024-07-24T12:24:28.010000"],["2024-07-24T12:24:29.010000"],["2024-07-24T12:24:30.010000"],["2024-07-24T12:24:31.010000"],["2024-07-24T12:24:32.010000"],["2024-07-24T12:24:33.010000"],["2024-07-24T12:24:34.010000"],["2024-07-24T12:24:35.010000"],["2024-07-24T12:24:36.010000"],["2024-07-24T12:24:37.010000"],["2024-07-24T12:24:38.010000"],["2024-07-24T12:24:39.010000"],["2024-07-24T12:24:40.010000"],["2024-07-24T12:24:41.010000"],["2024-07-24T12:24:42.010000"],["2024-07-24T12:24:43.010000"],["2024-07-24T12:24:44.010000"],["2024-07-24T12:24:45.010000"],["2024-07-24T12:24:46.010000"],["2024-07-24T12:24:47.010000"],["2024-07-24T12:24:48.010000"],["2024-07-24T12:24:49.010000"],["2024-07-24T12:24:50.010000"],["2024-07-24T12:24:51.010000"],["2024-07-24T12:24:52.010000"],["2024-07-24T12:24:53.010000"],["2024-07-24T12:24:54.010000"],["2024-07-24T12:24:55.010000"],["2024-07-24T12:24:56.010000"],["2024-07-24T12:24:57.010000"],["2024-07-24T12:24:58.010000"],["2024-07-24T12:24:59.010000"],["2024-07-24T12:25:00.010000"],["2024-07-24T12:25:01.010000"],["2024-07-24T12:25:02.010000"],["2024-07-24T12:25:03.010000"],["2024-07-24T12:25:04.010000"],["2024-07-24T12:25:05.010000"],["2024-07-24T12:25:06.010000"],["2024-07-24T12:25:07.010000"],["2024-07-24T12:25:08.010000"],["2024-07-24T12:25:09.010000"],["2024-07-24T12:25:10.010000"],["2024-07-24T12:25:11.010000"],["2024-07-24T12:25:12.010000"],["2024-07-24T12:25:13.010000"],["2024-07-24T12:25:14.010000"],["2024-07-24T12:25:15.010000"],["2024-07-24T12:25:16.010000"],["2024-07-24T12:25:17.010000"],["2024-07-24T12:25:18.010000"],["2024-07-24T12:25:19.010000"],["2024-07-24T12:25:20.010000"],["2024-07-24T12:25:21.010000"],["2024-07-24T12:25:22.010000"],["2024-07-24T12:25:23.010000"],["2024-07-24T12:25:24.010000"],["2024-07-24T12:25:25.010000"],["2024-07-24T12:25:26.010000"],["2024-07-24T12:25:27.010000"],["2024-07-24T12:25:28.010000"],["2024-07-24T12:25:29.010000"],["2024-07-24T12:25:30.010000"],["2024-07-24T12:25:31.010000"],["2024-07-24T12:25:32.010000"],["2024-07-24T12:25:33.010000"],["2024-07-24T12:25:34.010000"],["2024-07-24T12:25:35.010000"],["2024-07-24T12:25:36.010000"],["2024-07-24T12:25:37.010000"],["2024-07-24T12:25:38.010000"],["2024-07-24T12:25:39.010000"],["2024-07-24T12:25:40.010000"],["2024-07-24T12:25:41.010000"],["2024-07-24T12:25:42.010000"],["2024-07-24T12:25:43.010000"],["2024-07-24T12:25:44.010000"],["2024-07-24T12:25:45.010000"],["2024-07-24T12:25:46.010000"],["2024-07-24T12:25:47.010000"],["2024-07-24T12:25:48.010000"],["2024-07-24T12:25:49.010000"],["2024-07-24T12:25:50.010000"],["2024-07-24T12:25:51.010000"],["2024-07-24T12:25:52.010000"],["2024-07-24T12:25:53.010000"],["2024-07-24T12:25:54.010000"],["2024-07-24T12:25:55.010000"],["2024-07-24T12:25:56.010000"],["2024-07-24T12:25:57.010000"],["2024-07-24T12:25:58.010000"],["2024-07-24T12:25:59.010000"],["2024-07-24T12:26:00.010000"],["2024-07-24T12:26:01.010000"],["2024-07-24T12:26:02.010000"],["2024-07-24T12:26:03.010000"],["2024-07-24T12:26:04.010000"],["2024-07-24T12:26:05.010000"],["2024-07-24T12:26:06.010000"],["2024-07-24T12:26:07.010000"],["2024-07-24T12:26:08.010000"],["2024-07-24T12:26:09.010000"],["2024-07-24T12:26:10.010000"],["2024-07-24T12:26:11.010000"],["2024-07-24T12:26:12.010000"],["2024-07-24T12:26:13.010000"],["2024-07-24T12:26:14.010000"],["2024-07-24T12:26:15.010000"],["2024-07-24T12:26:16.010000"],["2024-07-24T12:26:17.010000"],["2024-07-24T12:26:18.010000"],["2024-07-24T12:26:19.010000"],["2024-07-24T12:26:20.010000"],["2024-07-24T12:26:21.010000"],["2024-07-24T12:26:22.010000"],["2024-07-24T12:26:23.010000"],["2024-07-24T12:26:24.010000"],["2024-07-24T12:26:25.010000"],["2024-07-24T12:26:26.010000"],["2024-07-24T12:26:27.010000"],["2024-07-24T12:26:28.010000"],["2024-07-24T12:26:29.010000"],["2024-07-24T12:26:30.010000"],["2024-07-24T12:26:31.010000"],["2024-07-24T12:26:32.010000"],["2024-07-24T12:26:33.010000"],["2024-07-24T12:26:34.010000"],["2024-07-24T12:26:35.010000"],["2024-07-24T12:26:36.010000"],["2024-07-24T12:26:37.010000"],["2024-07-24T12:26:38.010000"],["2024-07-24T12:26:39.010000"],["2024-07-24T12:26:40.010000"],["2024-07-24T12:26:41.010000"],["2024-07-24T12:26:42.010000"],["2024-07-24T12:26:43.010000"],["2024-07-24T12:26:44.010000"],["2024-07-24T12:26:45.010000"],["2024-07-24T12:26:46.010000"],["2024-07-24T12:26:47.010000"],["2024-07-24T12:26:48.010000"],["2024-07-24T12:26:49.010000"],["2024-07-24T12:26:50.010000"],["2024-07-24T12:26:51.010000"],["2024-07-24T12:26:52.010000"],["2024-07-24T12:26:53.010000"],["2024-07-24T12:26:54.010000"],["2024-07-24T12:26:55.010000"],["2024-07-24T12:26:56.010000"],["2024-07-24T12:26:57.010000"],["2024-07-24T12:26:58.010000"],["2024-07-24T12:26:59.010000"],["2024-07-24T12:27:00.010000"],["2024-07-24T12:27:01.010000"],["2024-07-24T12:27:02.010000"],["2024-07-24T12:27:03.010000"],["2024-07-24T12:27:04.010000"],["2024-07-24T12:27:05.010000"],["2024-07-24T12:27:06.010000"],["2024-07-24T12:27:07.010000"],["2024-07-24T12:27:08.010000"],["2024-07-24T12:27:09.010000"],["2024-07-24T12:27:10.010000"],["2024-07-24T12:27:11.010000"],["2024-07-24T12:27:12.010000"],["2024-07-24T12:27:13.010000"],["2024-07-24T12:27:14.010000"],["2024-07-24T12:27:15.010000"],["2024-07-24T12:27:16.010000"],["2024-07-24T12:27:17.010000"],["2024-07-24T12:27:18.010000"],["2024-07-24T12:27:19.010000"],["2024-07-24T12:27:20.010000"],["2024-07-24T12:27:21.010000"],["2024-07-24T12:27:22.010000"],["2024-07-24T12:27:23.010000"],["2024-07-24T12:27:24.010000"],["2024-07-24T12:27:25.010000"],["2024-07-24T12:27:26.010000"],["2024-07-24T12:27:27.010000"],["2024-07-24T12:27:28.010000"],["2024-07-24T12:27:29.010000"],["2024-07-24T12:27:30.010000"],["2024-07-24T12:27:31.010000"],["2024-07-24T12:27:32.010000"],["2024-07-24T12:27:33.010000"],["2024-07-24T12:27:34.010000"],["2024-07-24T12:27:35.010000"],["2024-07-24T12:27:36.010000"],["2024-07-24T12:27:37.010000"],["2024-07-24T12:27:38.010000"],["2024-07-24T12:27:39.010000"],["2024-07-24T12:27:40.010000"],["2024-07-24T12:27:41.010000"],["2024-07-24T12:27:42.010000"],["2024-07-24T12:27:43.010000"],["2024-07-24T12:27:44.010000"],["2024-07-24T12:27:45.010000"],["2024-07-24T12:27:46.010000"],["2024-07-24T12:27:47.010000"],["2024-07-24T12:27:48.010000"],["2024-07-24T12:27:49.010000"],["2024-07-24T12:27:50.010000"],["2024-07-24T12:27:51.010000"],["2024-07-24T12:27:52.010000"],["2024-07-24T12:27:53.010000"],["2024-07-24T12:27:54.010000"],["2024-07-24T12:27:55.010000"],["2024-07-24T12:27:56.010000"],["2024-07-24T12:27:57.010000"],["2024-07-24T12:27:58.010000"],["2024-07-24T12:27:59.010000"],["2024-07-24T12:28:00.010000"],["2024-07-24T12:28:01.010000"],["2024-07-24T12:28:02.010000"],["2024-07-24T12:28:03.010000"],["2024-07-24T12:28:04.010000"],["2024-07-24T12:28:05.010000"],["2024-07-24T12:28:06.010000"],["2024-07-24T12:28:07.010000"],["2024-07-24T12:28:08.010000"],["2024-07-24T12:28:09.010000"],["2024-07-24T12:28:10.010000"],["2024-07-24T12:28:11.010000"],["2024-07-24T12:28:12.010000"],["2024-07-24T12:28:13.010000"],["2024-07-24T12:28:14.010000"],["2024-07-24T12:28:15.010000"],["2024-07-24T12:28:16.010000"],["2024-07-24T12:28:17.010000"],["2024-07-24T12:28:18.010000"],["2024-07-24T12:28:19.010000"],["2024-07-24T12:28:20.010000"],["2024-07-24T12:28:21.010000"],["2024-07-24T12:28:22.010000"],["2024-07-24T12:28:23.010000"],["2024-07-24T12:28:24.010000"],["2024-07-24T12:28:25.010000"],["2024-07-24T12:28:26.010000"],["2024-07-24T12:28:27.010000"],["2024-07-24T12:28:28.010000"],["2024-07-24T12:28:29.010000"],["2024-07-24T12:28:30.010000"],["2024-07-24T12:28:31.010000"],["2024-07-24T12:28:32.010000"],["2024-07-24T12:28:33.010000"],["2024-07-24T12:28:34.010000"],["2024-07-24T12:28:35.010000"],["2024-07-24T12:28:36.010000"],["2024-07-24T12:28:37.010000"],["2024-07-24T12:28:38.010000"],["2024-07-24T12:28:39.010000"],["2024-07-24T12:28:40.010000"],["2024-07-24T12:28:41.010000"],["2024-07-24T12:28:42.010000"],["2024-07-24T12:28:43.010000"],["2024-07-24T12:28:44.010000"],["2024-07-24T12:28:45.010000"],["2024-07-24T12:28:46.010000"],["2024-07-24T12:28:47.010000"],["2024-07-24T12:28:48.010000"],["2024-07-24T12:28:49.010000"],["2024-07-24T12:28:50.010000"],["2024-07-24T12:28:51.010000"],["2024-07-24T12:28:52.010000"],["2024-07-24T12:28:53.010000"],["2024-07-24T12:28:54.010000"],["2024-07-24T12:28:55.010000"],["2024-07-24T12:28:56.010000"],["2024-07-24T12:28:57.010000"],["2024-07-24T12:28:58.010000"],["2024-07-24T12:28:59.010000"],["2024-07-24T12:29:00.010000"],["2024-07-24T12:29:01.010000"],["2024-07-24T12:29:02.010000"],["2024-07-24T12:29:03.010000"],["2024-07-24T12:29:04.010000"],["2024-07-24T12:29:05.010000"],["2024-07-24T12:29:06.010000"],["2024-07-24T12:29:07.010000"],["2024-07-24T12:29:08.010000"],["2024-07-24T12:29:09.010000"],["2024-07-24T12:29:10.010000"],["2024-07-24T12:29:11.010000"],["2024-07-24T12:29:12.010000"],["2024-07-24T12:29:13.010000"],["2024-07-24T12:29:14.010000"],["2024-07-24T12:29:15.010000"],["2024-07-24T12:29:16.010000"],["2024-07-24T12:29:17.010000"],["2024-07-24T12:29:18.010000"],["2024-07-24T12:29:19.010000"],["2024-07-24T12:29:20.010000"],["2024-07-24T12:29:21.010000"],["2024-07-24T12:29:22.010000"],["2024-07-24T12:29:23.010000"],["2024-07-24T12:29:24.010000"],["2024-07-24T12:29:25.010000"],["2024-07-24T12:29:26.010000"],["2024-07-24T12:29:27.010000"],["2024-07-24T12:29:28.010000"],["2024-07-24T12:29:29.010000"],["2024-07-24T12:29:30.010000"],["2024-07-24T12:29:31.010000"],["2024-07-24T12:29:32.010000"],["2024-07-24T12:29:33.010000"],["2024-07-24T12:29:34.010000"],["2024-07-24T12:29:35.010000"],["2024-07-24T12:29:36.010000"],["2024-07-24T12:29:37.010000"],["2024-07-24T12:29:38.010000"],["2024-07-24T12:29:39.010000"],["2024-07-24T12:29:40.010000"],["2024-07-24T12:29:41.010000"],["2024-07-24T12:29:42.010000"],["2024-07-24T12:29:43.010000"],["2024-07-24T12:29:44.010000"],["2024-07-24T12:29:45.010000"],["2024-07-24T12:29:46.010000"],["2024-07-24T12:29:47.010000"],["2024-07-24T12:29:48.010000"],["2024-07-24T12:29:49.010000"],["2024-07-24T12:29:50.010000"],["2024-07-24T12:29:51.010000"],["2024-07-24T12:29:52.010000"],["2024-07-24T12:29:53.010000"],["2024-07-24T12:29:54.010000"],["2024-07-24T12:29:55.010000"],["2024-07-24T12:29:56.010000"],["2024-07-24T12:29:57.010000"],["2024-07-24T12:29:58.010000"],["2024-07-24T12:29:59.010000"],["2024-07-24T12:30:00.010000"],["2024-07-24T12:30:01.010000"],["2024-07-24T12:30:02.010000"],["2024-07-24T12:30:03.010000"],["2024-07-24T12:30:04.010000"],["2024-07-24T12:30:05.010000"],["2024-07-24T12:30:06.010000"],["2024-07-24T12:30:07.010000"],["2024-07-24T12:30:08.010000"],["2024-07-24T12:30:09.010000"],["2024-07-24T12:30:10.010000"],["2024-07-24T12:30:11.010000"],["2024-07-24T12:30:12.010000"],["2024-07-24T12:30:13.010000"],["2024-07-24T12:30:14.010000"],["2024-07-24T12:30:15.010000"],["2024-07-24T12:30:16.010000"],["2024-07-24T12:30:17.010000"],["2024-07-24T12:30:18.010000"],["2024-07-24T12:30:19.010000"],["2024-07-24T12:30:20.010000"],["2024-07-24T12:30:21.010000"],["2024-07-24T12:30:22.010000"],["2024-07-24T12:30:23.010000"],["2024-07-24T12:30:24.010000"],["2024-07-24T12:30:25.010000"],["2024-07-24T12:30:26.010000"],["2024-07-24T12:30:27.010000"],["2024-07-24T12:30:28.010000"],["2024-07-24T12:30:29.010000"],["2024-07-24T12:30:30.010000"],["2024-07-24T12:30:31.010000"],["2024-07-24T12:30:32.010000"],["2024-07-24T12:30:33.010000"],["2024-07-24T12:30:34.010000"],["2024-07-24T12:30:35.010000"],["2024-07-24T12:30:36.010000"],["2024-07-24T12:30:37.010000"],["2024-07-24T12:30:38.010000"],["2024-07-24T12:30:39.010000"],["2024-07-24T12:30:40.010000"],["2024-07-24T12:30:41.010000"],["2024-07-24T12:30:42.010000"],["2024-07-24T12:30:43.010000"],["2024-07-24T12:30:44.010000"],["2024-07-24T12:30:45.010000"],["2024-07-24T12:30:46.010000"],["2024-07-24T12:30:47.010000"],["2024-07-24T12:30:48.010000"],["2024-07-24T12:30:49.010000"],["2024-07-24T12:30:50.010000"],["2024-07-24T12:30:51.010000"],["2024-07-24T12:30:52.010000"],["2024-07-24T12:30:53.010000"],["2024-07-24T12:30:54.010000"],["2024-07-24T12:30:55.010000"],["2024-07-24T12:30:56.010000"],["2024-07-24T12:30:57.010000"],["2024-07-24T12:30:58.010000"],["2024-07-24T12:30:59.010000"],["2024-07-24T12:31:00.010000"],["2024-07-24T12:31:01.010000"],["2024-07-24T12:31:02.010000"],["2024-07-24T12:31:03.010000"],["2024-07-24T12:31:04.010000"],["2024-07-24T12:31:05.010000"],["2024-07-24T12:31:06.010000"],["2024-07-24T12:31:07.010000"],["2024-07-24T12:31:08.010000"],["2024-07-24T12:31:09.010000"],["2024-07-24T12:31:10.010000"],["2024-07-24T12:31:11.010000"],["2024-07-24T12:31:12.010000"],["2024-07-24T12:31:13.010000"],["2024-07-24T12:31:14.010000"],["2024-07-24T12:31:15.010000"],["2024-07-24T12:31:16.010000"],["2024-07-24T12:31:17.010000"],["2024-07-24T12:31:18.010000"],["2024-07-24T12:31:19.010000"],["2024-07-24T12:31:20.010000"],["2024-07-24T12:31:21.010000"],["2024-07-24T12:31:22.010000"],["2024-07-24T12:31:23.010000"],["2024-07-24T12:31:24.010000"],["2024-07-24T12:31:25.010000"],["2024-07-24T12:31:26.010000"],["2024-07-24T12:31:27.010000"],["2024-07-24T12:31:28.010000"],["2024-07-24T12:31:29.010000"],["2024-07-24T12:31:30.010000"],["2024-07-24T12:31:31.010000"],["2024-07-24T12:31:32.010000"],["2024-07-24T12:31:33.010000"],["2024-07-24T12:31:34.010000"],["2024-07-24T12:31:35.010000"],["2024-07-24T12:31:36.010000"],["2024-07-24T12:31:37.010000"],["2024-07-24T12:31:38.010000"],["2024-07-24T12:31:39.010000"],["2024-07-24T12:31:40.010000"],["2024-07-24T12:31:41.010000"],["2024-07-24T12:31:42.010000"],["2024-07-24T12:31:43.010000"],["2024-07-24T12:31:44.010000"],["2024-07-24T12:31:45.010000"],["2024-07-24T12:31:46.010000"],["2024-07-24T12:31:47.010000"],["2024-07-24T12:31:48.010000"],["2024-07-24T12:31:49.010000"],["2024-07-24T12:31:50.010000"],["2024-07-24T12:31:51.010000"],["2024-07-24T12:31:52.010000"],["2024-07-24T12:31:53.010000"],["2024-07-24T12:31:54.010000"],["2024-07-24T12:31:55.010000"],["2024-07-24T12:31:56.010000"],["2024-07-24T12:31:57.010000"],["2024-07-24T12:31:58.010000"],["2024-07-24T12:31:59.010000"],["2024-07-24T12:32:00.010000"],["2024-07-24T12:32:01.010000"],["2024-07-24T12:32:02.010000"],["2024-07-24T12:32:03.010000"],["2024-07-24T12:32:04.010000"],["2024-07-24T12:32:05.010000"],["2024-07-24T12:32:06.010000"],["2024-07-24T12:32:07.010000"],["2024-07-24T12:32:08.010000"],["2024-07-24T12:32:09.010000"],["2024-07-24T12:32:10.010000"],["2024-07-24T12:32:11.010000"],["2024-07-24T12:32:12.010000"],["2024-07-24T12:32:13.010000"],["2024-07-24T12:32:14.010000"],["2024-07-24T12:32:15.010000"],["2024-07-24T12:32:16.010000"],["2024-07-24T12:32:17.010000"],["2024-07-24T12:32:18.010000"],["2024-07-24T12:32:19.010000"],["2024-07-24T12:32:20.010000"],["2024-07-24T12:32:21.010000"],["2024-07-24T12:32:22.010000"],["2024-07-24T12:32:23.010000"],["2024-07-24T12:32:24.010000"],["2024-07-24T12:32:25.010000"],["2024-07-24T12:32:26.010000"],["2024-07-24T12:32:27.010000"],["2024-07-24T12:32:28.010000"],["2024-07-24T12:32:29.010000"],["2024-07-24T12:32:30.010000"],["2024-07-24T12:32:31.010000"],["2024-07-24T12:32:32.010000"],["2024-07-24T12:32:33.010000"],["2024-07-24T12:32:34.010000"],["2024-07-24T12:32:35.010000"],["2024-07-24T12:32:36.010000"],["2024-07-24T12:32:37.010000"],["2024-07-24T12:32:38.010000"],["2024-07-24T12:32:39.010000"],["2024-07-24T12:32:40.010000"],["2024-07-24T12:32:41.010000"],["2024-07-24T12:32:42.010000"],["2024-07-24T12:32:43.010000"],["2024-07-24T12:32:44.010000"],["2024-07-24T12:32:45.010000"],["2024-07-24T12:32:46.010000"],["2024-07-24T12:32:47.010000"],["2024-07-24T12:32:48.010000"],["2024-07-24T12:32:49.010000"],["2024-07-24T12:32:50.010000"],["2024-07-24T12:32:51.010000"],["2024-07-24T12:32:52.010000"],["2024-07-24T12:32:53.010000"],["2024-07-24T12:32:54.010000"],["2024-07-24T12:32:55.010000"],["2024-07-24T12:32:56.010000"],["2024-07-24T12:32:57.010000"],["2024-07-24T12:32:58.010000"],["2024-07-24T12:32:59.010000"],["2024-07-24T12:33:00.010000"],["2024-07-24T12:33:01.010000"],["2024-07-24T12:33:02.010000"],["2024-07-24T12:33:03.010000"],["2024-07-24T12:33:04.010000"],["2024-07-24T12:33:05.010000"],["2024-07-24T12:33:06.010000"],["2024-07-24T12:33:07.010000"],["2024-07-24T12:33:08.010000"],["2024-07-24T12:33:09.010000"],["2024-07-24T12:33:10.010000"],["2024-07-24T12:33:11.010000"],["2024-07-24T12:33:12.010000"],["2024-07-24T12:33:13.010000"],["2024-07-24T12:33:14.010000"],["2024-07-24T12:33:15.010000"],["2024-07-24T12:33:16.010000"],["2024-07-24T12:33:17.010000"],["2024-07-24T12:33:18.010000"],["2024-07-24T12:33:19.010000"],["2024-07-24T12:33:20.010000"],["2024-07-24T12:33:21.010000"],["2024-07-24T12:33:22.010000"],["2024-07-24T12:33:23.010000"],["2024-07-24T12:33:24.010000"],["2024-07-24T12:33:25.010000"],["2024-07-24T12:33:26.010000"],["2024-07-24T12:33:27.010000"],["2024-07-24T12:33:28.010000"],["2024-07-24T12:33:29.010000"],["2024-07-24T12:33:30.010000"],["2024-07-24T12:33:31.010000"],["2024-07-24T12:33:32.010000"],["2024-07-24T12:33:33.010000"],["2024-07-24T12:33:34.010000"],["2024-07-24T12:33:35.010000"],["2024-07-24T12:33:36.010000"],["2024-07-24T12:33:37.010000"],["2024-07-24T12:33:38.010000"],["2024-07-24T12:33:39.010000"],["2024-07-24T12:33:40.010000"],["2024-07-24T12:33:41.010000"],["2024-07-24T12:33:42.010000"],["2024-07-24T12:33:43.010000"],["2024-07-24T12:33:44.010000"],["2024-07-24T12:33:45.010000"],["2024-07-24T12:33:46.010000"],["2024-07-24T12:33:47.010000"],["2024-07-24T12:33:48.010000"],["2024-07-24T12:33:49.010000"],["2024-07-24T12:33:50.010000"],["2024-07-24T12:33:51.010000"],["2024-07-24T12:33:52.010000"],["2024-07-24T12:33:53.010000"],["2024-07-24T12:33:54.010000"],["2024-07-24T12:33:55.010000"],["2024-07-24T12:33:56.010000"],["2024-07-24T12:33:57.010000"],["2024-07-24T12:33:58.010000"],["2024-07-24T12:33:59.010000"],["2024-07-24T12:34:00.010000"],["2024-07-24T12:34:01.010000"],["2024-07-24T12:34:02.010000"],["2024-07-24T12:34:03.010000"],["2024-07-24T12:34:04.010000"],["2024-07-24T12:34:05.010000"],["2024-07-24T12:34:06.010000"],["2024-07-24T12:34:07.010000"],["2024-07-24T12:34:08.010000"],["2024-07-24T12:34:09.010000"],["2024-07-24T12:34:10.010000"],["2024-07-24T12:34:11.010000"],["2024-07-24T12:34:12.010000"],["2024-07-24T12:34:13.010000"],["2024-07-24T12:34:14.010000"],["2024-07-24T12:34:15.010000"],["2024-07-24T12:34:16.010000"],["2024-07-24T12:34:17.010000"],["2024-07-24T12:34:18.010000"],["2024-07-24T12:34:19.010000"],["2024-07-24T12:34:20.010000"],["2024-07-24T12:34:21.010000"],["2024-07-24T12:34:22.010000"],["2024-07-24T12:34:23.010000"],["2024-07-24T12:34:24.010000"],["2024-07-24T12:34:25.010000"],["2024-07-24T12:34:26.010000"],["2024-07-24T12:34:27.010000"],["2024-07-24T12:34:28.010000"],["2024-07-24T12:34:29.010000"],["2024-07-24T12:34:30.010000"],["2024-07-24T12:34:31.010000"],["2024-07-24T12:34:32.010000"],["2024-07-24T12:34:33.010000"],["2024-07-24T12:34:34.010000"],["2024-07-24T12:34:35.010000"],["2024-07-24T12:34:36.010000"],["2024-07-24T12:34:37.010000"],["2024-07-24T12:34:38.010000"],["2024-07-24T12:34:39.010000"],["2024-07-24T12:34:40.010000"],["2024-07-24T12:34:41.010000"],["2024-07-24T12:34:42.010000"],["2024-07-24T12:34:43.010000"],["2024-07-24T12:34:44.010000"],["2024-07-24T12:34:45.010000"],["2024-07-24T12:34:46.010000"],["2024-07-24T12:34:47.010000"],["2024-07-24T12:34:48.010000"],["2024-07-24T12:34:49.010000"],["2024-07-24T12:34:50.010000"],["2024-07-24T12:34:51.010000"],["2024-07-24T12:34:52.010000"],["2024-07-24T12:34:53.010000"],["2024-07-24T12:34:54.010000"],["2024-07-24T12:34:55.010000"],["2024-07-24T12:34:56.010000"],["2024-07-24T12:34:57.010000"],["2024-07-24T12:34:58.010000"],["2024-07-24T12:34:59.010000"],["2024-07-24T12:35:00.010000"],["2024-07-24T12:35:01.010000"],["2024-07-24T12:35:02.010000"],["2024-07-24T12:35:03.010000"],["2024-07-24T12:35:04.010000"],["2024-07-24T12:35:05.010000"],["2024-07-24T12:35:06.010000"],["2024-07-24T12:35:07.010000"],["2024-07-24T12:35:08.010000"],["2024-07-24T12:35:09.010000"],["2024-07-24T12:35:10.010000"],["2024-07-24T12:35:11.010000"],["2024-07-24T12:35:12.010000"],["2024-07-24T12:35:13.010000"],["2024-07-24T12:35:14.010000"],["2024-07-24T12:35:15.010000"],["2024-07-24T12:35:16.010000"],["2024-07-24T12:35:17.010000"],["2024-07-24T12:35:18.010000"],["2024-07-24T12:35:19.010000"],["2024-07-24T12:35:20.010000"],["2024-07-24T12:35:21.010000"],["2024-07-24T12:35:22.010000"],["2024-07-24T12:35:23.010000"],["2024-07-24T12:35:24.010000"],["2024-07-24T12:35:25.010000"],["2024-07-24T12:35:26.010000"],["2024-07-24T12:35:27.010000"],["2024-07-24T12:35:28.010000"],["2024-07-24T12:35:29.010000"],["2024-07-24T12:35:30.010000"],["2024-07-24T12:35:31.010000"],["2024-07-24T12:35:32.010000"],["2024-07-24T12:35:33.010000"],["2024-07-24T12:35:34.010000"],["2024-07-24T12:35:35.010000"],["2024-07-24T12:35:36.010000"],["2024-07-24T12:35:37.010000"],["2024-07-24T12:35:38.010000"],["2024-07-24T12:35:39.010000"],["2024-07-24T12:35:40.010000"],["2024-07-24T12:35:41.010000"],["2024-07-24T12:35:42.010000"],["2024-07-24T12:35:43.010000"],["2024-07-24T12:35:44.010000"],["2024-07-24T12:35:45.010000"],["2024-07-24T12:35:46.010000"],["2024-07-24T12:35:47.010000"],["2024-07-24T12:35:48.010000"],["2024-07-24T12:35:49.010000"],["2024-07-24T12:35:50.010000"],["2024-07-24T12:35:51.010000"],["2024-07-24T12:35:52.010000"],["2024-07-24T12:35:53.010000"],["2024-07-24T12:35:54.010000"],["2024-07-24T12:35:55.010000"],["2024-07-24T12:35:56.010000"],["2024-07-24T12:35:57.010000"],["2024-07-24T12:35:58.010000"],["2024-07-24T12:35:59.010000"],["2024-07-24T12:36:00.010000"],["2024-07-24T12:36:01.010000"],["2024-07-24T12:36:02.010000"],["2024-07-24T12:36:03.010000"],["2024-07-24T12:36:04.010000"],["2024-07-24T12:36:05.010000"],["2024-07-24T12:36:06.010000"],["2024-07-24T12:36:07.010000"],["2024-07-24T12:36:08.010000"],["2024-07-24T12:36:09.010000"],["2024-07-24T12:36:10.010000"],["2024-07-24T12:36:11.010000"],["2024-07-24T12:36:12.010000"],["2024-07-24T12:36:13.010000"],["2024-07-24T12:36:14.010000"],["2024-07-24T12:36:15.010000"],["2024-07-24T12:36:16.010000"],["2024-07-24T12:36:17.010000"],["2024-07-24T12:36:18.010000"],["2024-07-24T12:36:19.010000"],["2024-07-24T12:36:20.010000"],["2024-07-24T12:36:21.010000"],["2024-07-24T12:36:22.010000"],["2024-07-24T12:36:23.010000"],["2024-07-24T12:36:24.010000"],["2024-07-24T12:36:25.010000"],["2024-07-24T12:36:26.010000"],["2024-07-24T12:36:27.010000"],["2024-07-24T12:36:28.010000"],["2024-07-24T12:36:29.010000"],["2024-07-24T12:36:30.010000"],["2024-07-24T12:36:31.010000"],["2024-07-24T12:36:32.010000"],["2024-07-24T12:36:33.010000"],["2024-07-24T12:36:34.010000"],["2024-07-24T12:36:35.010000"],["2024-07-24T12:36:36.010000"],["2024-07-24T12:36:37.010000"],["2024-07-24T12:36:38.010000"],["2024-07-24T12:36:39.010000"],["2024-07-24T12:36:40.010000"],["2024-07-24T12:36:41.010000"],["2024-07-24T12:36:42.010000"],["2024-07-24T12:36:43.010000"],["2024-07-24T12:36:44.010000"],["2024-07-24T12:36:45.010000"],["2024-07-24T12:36:46.010000"],["2024-07-24T12:36:47.010000"],["2024-07-24T12:36:48.010000"],["2024-07-24T12:36:49.010000"],["2024-07-24T12:36:50.010000"],["2024-07-24T12:36:51.010000"],["2024-07-24T12:36:52.010000"],["2024-07-24T12:36:53.010000"],["2024-07-24T12:36:54.010000"],["2024-07-24T12:36:55.010000"],["2024-07-24T12:36:56.010000"],["2024-07-24T12:36:57.010000"],["2024-07-24T12:36:58.010000"],["2024-07-24T12:36:59.010000"],["2024-07-24T12:37:00.010000"],["2024-07-24T12:37:01.010000"],["2024-07-24T12:37:02.010000"],["2024-07-24T12:37:03.010000"],["2024-07-24T12:37:04.010000"],["2024-07-24T12:37:05.010000"],["2024-07-24T12:37:06.010000"],["2024-07-24T12:37:07.010000"],["2024-07-24T12:37:08.010000"],["2024-07-24T12:37:09.010000"],["2024-07-24T12:37:10.010000"],["2024-07-24T12:37:11.010000"],["2024-07-24T12:37:12.010000"],["2024-07-24T12:37:13.010000"],["2024-07-24T12:37:14.010000"],["2024-07-24T12:37:15.010000"],["2024-07-24T12:37:16.010000"],["2024-07-24T12:37:17.010000"],["2024-07-24T12:37:18.010000"],["2024-07-24T12:37:19.010000"],["2024-07-24T12:37:20.010000"],["2024-07-24T12:37:21.010000"],["2024-07-24T12:37:22.010000"],["2024-07-24T12:37:23.010000"],["2024-07-24T12:37:24.010000"],["2024-07-24T12:37:25.010000"],["2024-07-24T12:37:26.010000"],["2024-07-24T12:37:27.010000"],["2024-07-24T12:37:28.010000"],["2024-07-24T12:37:29.010000"],["2024-07-24T12:37:30.010000"],["2024-07-24T12:37:31.010000"],["2024-07-24T12:37:32.010000"],["2024-07-24T12:37:33.010000"],["2024-07-24T12:37:34.010000"],["2024-07-24T12:37:35.010000"],["2024-07-24T12:37:36.010000"],["2024-07-24T12:37:37.010000"],["2024-07-24T12:37:38.010000"],["2024-07-24T12:37:39.010000"],["2024-07-24T12:37:40.010000"],["2024-07-24T12:37:41.010000"],["2024-07-24T12:37:42.010000"],["2024-07-24T12:37:43.010000"],["2024-07-24T12:37:44.010000"],["2024-07-24T12:37:45.010000"],["2024-07-24T12:37:46.010000"],["2024-07-24T12:37:47.010000"],["2024-07-24T12:37:48.010000"],["2024-07-24T12:37:49.010000"],["2024-07-24T12:37:50.010000"],["2024-07-24T12:37:51.010000"],["2024-07-24T12:37:52.010000"],["2024-07-24T12:37:53.010000"],["2024-07-24T12:37:54.010000"],["2024-07-24T12:37:55.010000"],["2024-07-24T12:37:56.010000"],["2024-07-24T12:37:57.010000"],["2024-07-24T12:37:58.010000"],["2024-07-24T12:37:59.010000"],["2024-07-24T12:38:00.010000"],["2024-07-24T12:38:01.010000"],["2024-07-24T12:38:02.010000"],["2024-07-24T12:38:03.010000"],["2024-07-24T12:38:04.010000"],["2024-07-24T12:38:05.010000"],["2024-07-24T12:38:06.010000"],["2024-07-24T12:38:07.010000"],["2024-07-24T12:38:08.010000"],["2024-07-24T12:38:09.010000"],["2024-07-24T12:38:10.010000"],["2024-07-24T12:38:11.010000"],["2024-07-24T12:38:12.010000"],["2024-07-24T12:38:13.010000"],["2024-07-24T12:38:14.010000"],["2024-07-24T12:38:15.010000"],["2024-07-24T12:38:16.010000"],["2024-07-24T12:38:17.010000"],["2024-07-24T12:38:18.010000"],["2024-07-24T12:38:19.010000"],["2024-07-24T12:38:20.010000"],["2024-07-24T12:38:21.010000"],["2024-07-24T12:38:22.010000"],["2024-07-24T12:38:23.010000"],["2024-07-24T12:38:24.010000"],["2024-07-24T12:38:25.010000"],["2024-07-24T12:38:26.010000"],["2024-07-24T12:38:27.010000"],["2024-07-24T12:38:28.010000"],["2024-07-24T12:38:29.010000"],["2024-07-24T12:38:30.010000"],["2024-07-24T12:38:31.010000"],["2024-07-24T12:38:32.010000"],["2024-07-24T12:38:33.010000"],["2024-07-24T12:38:34.010000"],["2024-07-24T12:38:35.010000"],["2024-07-24T12:38:36.010000"],["2024-07-24T12:38:37.010000"],["2024-07-24T12:38:38.010000"],["2024-07-24T12:38:39.010000"],["2024-07-24T12:38:40.010000"],["2024-07-24T12:38:41.010000"],["2024-07-24T12:38:42.010000"],["2024-07-24T12:38:43.010000"],["2024-07-24T12:38:44.010000"],["2024-07-24T12:38:45.010000"],["2024-07-24T12:38:46.010000"],["2024-07-24T12:38:47.010000"],["2024-07-24T12:38:48.010000"],["2024-07-24T12:38:49.010000"],["2024-07-24T12:38:50.010000"],["2024-07-24T12:38:51.010000"],["2024-07-24T12:38:52.010000"],["2024-07-24T12:38:53.010000"],["2024-07-24T12:38:54.010000"],["2024-07-24T12:38:55.010000"],["2024-07-24T12:38:56.010000"],["2024-07-24T12:38:57.010000"],["2024-07-24T12:38:58.010000"],["2024-07-24T12:38:59.010000"],["2024-07-24T12:39:00.010000"],["2024-07-24T12:39:01.010000"],["2024-07-24T12:39:02.010000"],["2024-07-24T12:39:03.010000"],["2024-07-24T12:39:04.010000"],["2024-07-24T12:39:05.010000"],["2024-07-24T12:39:06.010000"],["2024-07-24T12:39:07.010000"],["2024-07-24T12:39:08.010000"],["2024-07-24T12:39:09.010000"],["2024-07-24T12:39:10.010000"],["2024-07-24T12:39:11.010000"],["2024-07-24T12:39:12.010000"],["2024-07-24T12:39:13.010000"],["2024-07-24T12:39:14.010000"],["2024-07-24T12:39:15.010000"],["2024-07-24T12:39:16.010000"],["2024-07-24T12:39:17.010000"],["2024-07-24T12:39:18.010000"],["2024-07-24T12:39:19.010000"],["2024-07-24T12:39:20.010000"],["2024-07-24T12:39:21.010000"],["2024-07-24T12:39:22.010000"],["2024-07-24T12:39:23.010000"],["2024-07-24T12:39:24.010000"],["2024-07-24T12:39:25.010000"],["2024-07-24T12:39:26.010000"],["2024-07-24T12:39:27.010000"],["2024-07-24T12:39:28.010000"],["2024-07-24T12:39:29.010000"],["2024-07-24T12:39:30.010000"],["2024-07-24T12:39:31.010000"],["2024-07-24T12:39:32.010000"],["2024-07-24T12:39:33.010000"],["2024-07-24T12:39:34.010000"],["2024-07-24T12:39:35.010000"],["2024-07-24T12:39:36.010000"],["2024-07-24T12:39:37.010000"],["2024-07-24T12:39:38.010000"],["2024-07-24T12:39:39.010000"],["2024-07-24T12:39:40.010000"],["2024-07-24T12:39:41.010000"],["2024-07-24T12:39:42.010000"],["2024-07-24T12:39:43.010000"],["2024-07-24T12:39:44.010000"],["2024-07-24T12:39:45.010000"],["2024-07-24T12:39:46.010000"],["2024-07-24T12:39:47.010000"],["2024-07-24T12:39:48.010000"],["2024-07-24T12:39:49.010000"],["2024-07-24T12:39:50.010000"],["2024-07-24T12:39:51.010000"],["2024-07-24T12:39:52.010000"],["2024-07-24T12:39:53.010000"],["2024-07-24T12:39:54.010000"],["2024-07-24T12:39:55.010000"],["2024-07-24T12:39:56.010000"],["2024-07-24T12:39:57.010000"],["2024-07-24T12:39:58.010000"],["2024-07-24T12:39:59.010000"],["2024-07-24T12:40:00.010000"],["2024-07-24T12:40:01.010000"],["2024-07-24T12:40:02.010000"],["2024-07-24T12:40:03.010000"],["2024-07-24T12:40:04.010000"],["2024-07-24T12:40:05.010000"],["2024-07-24T12:40:06.010000"],["2024-07-24T12:40:07.010000"],["2024-07-24T12:40:08.010000"],["2024-07-24T12:40:09.010000"],["2024-07-24T12:40:10.010000"],["2024-07-24T12:40:11.010000"],["2024-07-24T12:40:12.010000"],["2024-07-24T12:40:13.010000"],["2024-07-24T12:40:14.010000"],["2024-07-24T12:40:15.010000"],["2024-07-24T12:40:16.010000"],["2024-07-24T12:40:17.010000"],["2024-07-24T12:40:18.010000"],["2024-07-24T12:40:19.010000"],["2024-07-24T12:40:20.010000"],["2024-07-24T12:40:21.010000"],["2024-07-24T12:40:22.010000"],["2024-07-24T12:40:23.010000"],["2024-07-24T12:40:24.010000"],["2024-07-24T12:40:25.010000"],["2024-07-24T12:40:26.010000"],["2024-07-24T12:40:27.010000"],["2024-07-24T12:40:28.010000"],["2024-07-24T12:40:29.010000"],["2024-07-24T12:40:30.010000"],["2024-07-24T12:40:31.010000"],["2024-07-24T12:40:32.010000"],["2024-07-24T12:40:33.010000"],["2024-07-24T12:40:34.010000"],["2024-07-24T12:40:35.010000"],["2024-07-24T12:40:36.010000"],["2024-07-24T12:40:37.010000"],["2024-07-24T12:40:38.010000"],["2024-07-24T12:40:39.010000"],["2024-07-24T12:40:40.010000"],["2024-07-24T12:40:41.010000"],["2024-07-24T12:40:42.010000"],["2024-07-24T12:40:43.010000"],["2024-07-24T12:40:44.010000"],["2024-07-24T12:40:45.010000"],["2024-07-24T12:40:46.010000"],["2024-07-24T12:40:47.010000"],["2024-07-24T12:40:48.010000"],["2024-07-24T12:40:49.010000"],["2024-07-24T12:40:50.010000"],["2024-07-24T12:40:51.010000"],["2024-07-24T12:40:52.010000"],["2024-07-24T12:40:53.010000"],["2024-07-24T12:40:54.010000"],["2024-07-24T12:40:55.010000"],["2024-07-24T12:40:56.010000"],["2024-07-24T12:40:57.010000"],["2024-07-24T12:40:58.010000"],["2024-07-24T12:40:59.010000"],["2024-07-24T12:41:00.010000"],["2024-07-24T12:41:01.010000"],["2024-07-24T12:41:02.010000"],["2024-07-24T12:41:03.010000"],["2024-07-24T12:41:04.010000"],["2024-07-24T12:41:05.010000"],["2024-07-24T12:41:06.010000"],["2024-07-24T12:41:07.010000"],["2024-07-24T12:41:08.010000"],["2024-07-24T12:41:09.010000"],["2024-07-24T12:41:10.010000"],["2024-07-24T12:41:11.010000"],["2024-07-24T12:41:12.010000"],["2024-07-24T12:41:13.010000"],["2024-07-24T12:41:14.010000"],["2024-07-24T12:41:15.010000"],["2024-07-24T12:41:16.010000"],["2024-07-24T12:41:17.010000"],["2024-07-24T12:41:18.010000"],["2024-07-24T12:41:19.010000"],["2024-07-24T12:41:20.010000"],["2024-07-24T12:41:21.010000"],["2024-07-24T12:41:22.010000"],["2024-07-24T12:41:23.010000"],["2024-07-24T12:41:24.010000"],["2024-07-24T12:41:25.010000"],["2024-07-24T12:41:26.010000"],["2024-07-24T12:41:27.010000"],["2024-07-24T12:41:28.010000"],["2024-07-24T12:41:29.010000"],["2024-07-24T12:41:30.010000"],["2024-07-24T12:41:31.010000"],["2024-07-24T12:41:32.010000"],["2024-07-24T12:41:33.010000"],["2024-07-24T12:41:34.010000"],["2024-07-24T12:41:35.010000"],["2024-07-24T12:41:36.010000"],["2024-07-24T12:41:37.010000"],["2024-07-24T12:41:38.010000"],["2024-07-24T12:41:39.010000"],["2024-07-24T12:41:40.010000"],["2024-07-24T12:41:41.010000"],["2024-07-24T12:41:42.010000"],["2024-07-24T12:41:43.010000"],["2024-07-24T12:41:44.010000"],["2024-07-24T12:41:45.010000"],["2024-07-24T12:41:46.010000"],["2024-07-24T12:41:47.010000"],["2024-07-24T12:41:48.010000"],["2024-07-24T12:41:49.010000"],["2024-07-24T12:41:50.010000"],["2024-07-24T12:41:51.010000"],["2024-07-24T12:41:52.010000"],["2024-07-24T12:41:53.010000"],["2024-07-24T12:41:54.010000"],["2024-07-24T12:41:55.010000"],["2024-07-24T12:41:56.010000"],["2024-07-24T12:41:57.010000"],["2024-07-24T12:41:58.010000"],["2024-07-24T12:41:59.010000"],["2024-07-24T12:42:00.010000"],["2024-07-24T12:42:01.010000"],["2024-07-24T12:42:02.010000"],["2024-07-24T12:42:03.010000"],["2024-07-24T12:42:04.010000"],["2024-07-24T12:42:05.010000"],["2024-07-24T12:42:06.010000"],["2024-07-24T12:42:07.010000"],["2024-07-24T12:42:08.010000"],["2024-07-24T12:42:09.010000"],["2024-07-24T12:42:10.010000"],["2024-07-24T12:42:11.010000"],["2024-07-24T12:42:12.010000"],["2024-07-24T12:42:13.010000"],["2024-07-24T12:42:14.010000"],["2024-07-24T12:42:15.010000"],["2024-07-24T12:42:16.010000"],["2024-07-24T12:42:17.010000"],["2024-07-24T12:42:18.010000"],["2024-07-24T12:42:19.010000"],["2024-07-24T12:42:20.010000"],["2024-07-24T12:42:21.010000"],["2024-07-24T12:42:22.010000"],["2024-07-24T12:42:23.010000"],["2024-07-24T12:42:24.010000"],["2024-07-24T12:42:25.010000"],["2024-07-24T12:42:26.010000"],["2024-07-24T12:42:27.010000"],["2024-07-24T12:42:28.010000"],["2024-07-24T12:42:29.010000"],["2024-07-24T12:42:30.010000"],["2024-07-24T12:42:31.010000"],["2024-07-24T12:42:32.010000"],["2024-07-24T12:42:33.010000"],["2024-07-24T12:42:34.010000"],["2024-07-24T12:42:35.010000"],["2024-07-24T12:42:36.010000"],["2024-07-24T12:42:37.010000"],["2024-07-24T12:42:38.010000"],["2024-07-24T12:42:39.010000"],["2024-07-24T12:42:40.010000"],["2024-07-24T12:42:41.010000"],["2024-07-24T12:42:42.010000"],["2024-07-24T12:42:43.010000"],["2024-07-24T12:42:44.010000"],["2024-07-24T12:42:45.010000"],["2024-07-24T12:42:46.010000"],["2024-07-24T12:42:47.010000"],["2024-07-24T12:42:48.010000"],["2024-07-24T12:42:49.010000"],["2024-07-24T12:42:50.010000"],["2024-07-24T12:42:51.010000"],["2024-07-24T12:42:52.010000"],["2024-07-24T12:42:53.010000"],["2024-07-24T12:42:54.010000"],["2024-07-24T12:42:55.010000"],["2024-07-24T12:42:56.010000"],["2024-07-24T12:42:57.010000"],["2024-07-24T12:42:58.010000"],["2024-07-24T12:42:59.010000"],["2024-07-24T12:43:00.010000"],["2024-07-24T12:43:01.010000"],["2024-07-24T12:43:02.010000"],["2024-07-24T12:43:03.010000"],["2024-07-24T12:43:04.010000"],["2024-07-24T12:43:05.010000"],["2024-07-24T12:43:06.010000"],["2024-07-24T12:43:07.010000"],["2024-07-24T12:43:08.010000"],["2024-07-24T12:43:09.010000"],["2024-07-24T12:43:10.010000"],["2024-07-24T12:43:11.010000"],["2024-07-24T12:43:12.010000"],["2024-07-24T12:43:13.010000"],["2024-07-24T12:43:14.010000"],["2024-07-24T12:43:15.010000"],["2024-07-24T12:43:16.010000"],["2024-07-24T12:43:17.010000"],["2024-07-24T12:43:18.010000"],["2024-07-24T12:43:19.010000"],["2024-07-24T12:43:20.010000"],["2024-07-24T12:43:21.010000"],["2024-07-24T12:43:22.010000"],["2024-07-24T12:43:23.010000"],["2024-07-24T12:43:24.010000"],["2024-07-24T12:43:25.010000"],["2024-07-24T12:43:26.010000"],["2024-07-24T12:43:27.010000"],["2024-07-24T12:43:28.010000"],["2024-07-24T12:43:29.010000"],["2024-07-24T12:43:30.010000"],["2024-07-24T12:43:31.010000"],["2024-07-24T12:43:32.010000"],["2024-07-24T12:43:33.010000"],["2024-07-24T12:43:34.010000"],["2024-07-24T12:43:35.010000"],["2024-07-24T12:43:36.010000"],["2024-07-24T12:43:37.010000"],["2024-07-24T12:43:38.010000"],["2024-07-24T12:43:39.010000"],["2024-07-24T12:43:40.010000"],["2024-07-24T12:43:41.010000"],["2024-07-24T12:43:42.010000"],["2024-07-24T12:43:43.010000"],["2024-07-24T12:43:44.010000"],["2024-07-24T12:43:45.010000"],["2024-07-24T12:43:46.010000"],["2024-07-24T12:43:47.010000"],["2024-07-24T12:43:48.010000"],["2024-07-24T12:43:49.010000"],["2024-07-24T12:43:50.010000"],["2024-07-24T12:43:51.010000"],["2024-07-24T12:43:52.010000"],["2024-07-24T12:43:53.010000"],["2024-07-24T12:43:54.010000"],["2024-07-24T12:43:55.010000"],["2024-07-24T12:43:56.010000"],["2024-07-24T12:43:57.010000"],["2024-07-24T12:43:58.010000"],["2024-07-24T12:43:59.010000"],["2024-07-24T12:44:00.010000"],["2024-07-24T12:44:01.010000"],["2024-07-24T12:44:02.010000"],["2024-07-24T12:44:03.010000"],["2024-07-24T12:44:04.010000"],["2024-07-24T12:44:05.010000"],["2024-07-24T12:44:06.010000"],["2024-07-24T12:44:07.010000"],["2024-07-24T12:44:08.010000"],["2024-07-24T12:44:09.010000"],["2024-07-24T12:44:10.010000"],["2024-07-24T12:44:11.010000"],["2024-07-24T12:44:12.010000"],["2024-07-24T12:44:13.010000"],["2024-07-24T12:44:14.010000"],["2024-07-24T12:44:15.010000"],["2024-07-24T12:44:16.010000"],["2024-07-24T12:44:17.010000"],["2024-07-24T12:44:18.010000"],["2024-07-24T12:44:19.010000"],["2024-07-24T12:44:20.010000"],["2024-07-24T12:44:21.010000"],["2024-07-24T12:44:22.010000"],["2024-07-24T12:44:23.010000"],["2024-07-24T12:44:24.010000"],["2024-07-24T12:44:25.010000"],["2024-07-24T12:44:26.010000"],["2024-07-24T12:44:27.010000"],["2024-07-24T12:44:28.010000"],["2024-07-24T12:44:29.010000"],["2024-07-24T12:44:30.010000"],["2024-07-24T12:44:31.010000"],["2024-07-24T12:44:32.010000"],["2024-07-24T12:44:33.010000"],["2024-07-24T12:44:34.010000"],["2024-07-24T12:44:35.010000"],["2024-07-24T12:44:36.010000"],["2024-07-24T12:44:37.010000"],["2024-07-24T12:44:38.010000"],["2024-07-24T12:44:39.010000"],["2024-07-24T12:44:40.010000"],["2024-07-24T12:44:41.010000"],["2024-07-24T12:44:42.010000"],["2024-07-24T12:44:43.010000"],["2024-07-24T12:44:44.010000"],["2024-07-24T12:44:45.010000"],["2024-07-24T12:44:46.010000"],["2024-07-24T12:44:47.010000"],["2024-07-24T12:44:48.010000"],["2024-07-24T12:44:49.010000"],["2024-07-24T12:44:50.010000"],["2024-07-24T12:44:51.010000"],["2024-07-24T12:44:52.010000"],["2024-07-24T12:44:53.010000"],["2024-07-24T12:44:54.010000"],["2024-07-24T12:44:55.010000"],["2024-07-24T12:44:56.010000"],["2024-07-24T12:44:57.010000"],["2024-07-24T12:44:58.010000"],["2024-07-24T12:44:59.010000"],["2024-07-24T12:45:00.010000"],["2024-07-24T12:45:01.010000"],["2024-07-24T12:45:02.010000"],["2024-07-24T12:45:03.010000"],["2024-07-24T12:45:04.010000"],["2024-07-24T12:45:05.010000"],["2024-07-24T12:45:06.010000"],["2024-07-24T12:45:07.010000"],["2024-07-24T12:45:08.010000"],["2024-07-24T12:45:09.010000"],["2024-07-24T12:45:10.010000"],["2024-07-24T12:45:11.010000"],["2024-07-24T12:45:12.010000"],["2024-07-24T12:45:13.010000"],["2024-07-24T12:45:14.010000"],["2024-07-24T12:45:15.010000"],["2024-07-24T12:45:16.010000"],["2024-07-24T12:45:17.010000"],["2024-07-24T12:45:18.010000"],["2024-07-24T12:45:19.010000"],["2024-07-24T12:45:20.010000"],["2024-07-24T12:45:21.010000"],["2024-07-24T12:45:22.010000"],["2024-07-24T12:45:23.010000"],["2024-07-24T12:45:24.010000"],["2024-07-24T12:45:25.010000"],["2024-07-24T12:45:26.010000"],["2024-07-24T12:45:27.010000"],["2024-07-24T12:45:28.010000"],["2024-07-24T12:45:29.010000"],["2024-07-24T12:45:30.010000"],["2024-07-24T12:45:31.010000"],["2024-07-24T12:45:32.010000"],["2024-07-24T12:45:33.010000"],["2024-07-24T12:45:34.010000"],["2024-07-24T12:45:35.010000"],["2024-07-24T12:45:36.010000"],["2024-07-24T12:45:37.010000"],["2024-07-24T12:45:38.010000"],["2024-07-24T12:45:39.010000"],["2024-07-24T12:45:40.010000"],["2024-07-24T12:45:41.010000"],["2024-07-24T12:45:42.010000"],["2024-07-24T12:45:43.010000"],["2024-07-24T12:45:44.010000"],["2024-07-24T12:45:45.010000"],["2024-07-24T12:45:46.010000"],["2024-07-24T12:45:47.010000"],["2024-07-24T12:45:48.010000"],["2024-07-24T12:45:49.010000"],["2024-07-24T12:45:50.010000"],["2024-07-24T12:45:51.010000"],["2024-07-24T12:45:52.010000"],["2024-07-24T12:45:53.010000"],["2024-07-24T12:45:54.010000"],["2024-07-24T12:45:55.010000"],["2024-07-24T12:45:56.010000"],["2024-07-24T12:45:57.010000"],["2024-07-24T12:45:58.010000"],["2024-07-24T12:45:59.010000"],["2024-07-24T12:46:00.010000"],["2024-07-24T12:46:01.010000"],["2024-07-24T12:46:02.010000"],["2024-07-24T12:46:03.010000"],["2024-07-24T12:46:04.010000"],["2024-07-24T12:46:05.010000"],["2024-07-24T12:46:06.010000"],["2024-07-24T12:46:07.010000"],["2024-07-24T12:46:08.010000"],["2024-07-24T12:46:09.010000"],["2024-07-24T12:46:10.010000"],["2024-07-24T12:46:11.010000"],["2024-07-24T12:46:12.010000"],["2024-07-24T12:46:13.010000"],["2024-07-24T12:46:14.010000"],["2024-07-24T12:46:15.010000"],["2024-07-24T12:46:16.010000"],["2024-07-24T12:46:17.010000"],["2024-07-24T12:46:18.010000"],["2024-07-24T12:46:19.010000"],["2024-07-24T12:46:20.010000"],["2024-07-24T12:46:21.010000"],["2024-07-24T12:46:22.010000"],["2024-07-24T12:46:23.010000"],["2024-07-24T12:46:24.010000"],["2024-07-24T12:46:25.010000"],["2024-07-24T12:46:26.010000"],["2024-07-24T12:46:27.010000"],["2024-07-24T12:46:28.010000"],["2024-07-24T12:46:29.010000"],["2024-07-24T12:46:30.010000"],["2024-07-24T12:46:31.010000"],["2024-07-24T12:46:32.010000"],["2024-07-24T12:46:33.010000"],["2024-07-24T12:46:34.010000"],["2024-07-24T12:46:35.010000"],["2024-07-24T12:46:36.010000"],["2024-07-24T12:46:37.010000"],["2024-07-24T12:46:38.010000"],["2024-07-24T12:46:39.010000"],["2024-07-24T12:46:40.010000"],["2024-07-24T12:46:41.010000"],["2024-07-24T12:46:42.010000"],["2024-07-24T12:46:43.010000"],["2024-07-24T12:46:44.010000"],["2024-07-24T12:46:45.010000"],["2024-07-24T12:46:46.010000"],["2024-07-24T12:46:47.010000"],["2024-07-24T12:46:48.010000"],["2024-07-24T12:46:49.010000"],["2024-07-24T12:46:50.010000"],["2024-07-24T12:46:51.010000"],["2024-07-24T12:46:52.010000"],["2024-07-24T12:46:53.010000"],["2024-07-24T12:46:54.010000"],["2024-07-24T12:46:55.010000"],["2024-07-24T12:46:56.010000"],["2024-07-24T12:46:57.010000"],["2024-07-24T12:46:58.010000"],["2024-07-24T12:46:59.010000"],["2024-07-24T12:47:00.010000"],["2024-07-24T12:47:01.010000"],["2024-07-24T12:47:02.010000"],["2024-07-24T12:47:03.010000"],["2024-07-24T12:47:04.010000"],["2024-07-24T12:47:05.010000"],["2024-07-24T12:47:06.010000"],["2024-07-24T12:47:07.010000"],["2024-07-24T12:47:08.010000"],["2024-07-24T12:47:09.010000"],["2024-07-24T12:47:10.010000"],["2024-07-24T12:47:11.010000"],["2024-07-24T12:47:12.010000"],["2024-07-24T12:47:13.010000"],["2024-07-24T12:47:14.010000"],["2024-07-24T12:47:15.010000"],["2024-07-24T12:47:16.010000"],["2024-07-24T12:47:17.010000"],["2024-07-24T12:47:18.010000"],["2024-07-24T12:47:19.010000"],["2024-07-24T12:47:20.010000"],["2024-07-24T12:47:21.010000"],["2024-07-24T12:47:22.010000"],["2024-07-24T12:47:23.010000"],["2024-07-24T12:47:24.010000"],["2024-07-24T12:47:25.010000"],["2024-07-24T12:47:26.010000"],["2024-07-24T12:47:27.010000"],["2024-07-24T12:47:28.010000"],["2024-07-24T12:47:29.010000"],["2024-07-24T12:47:30.010000"],["2024-07-24T12:47:31.010000"],["2024-07-24T12:47:32.010000"],["2024-07-24T12:47:33.010000"],["2024-07-24T12:47:34.010000"],["2024-07-24T12:47:35.010000"],["2024-07-24T12:47:36.010000"],["2024-07-24T12:47:37.010000"],["2024-07-24T12:47:38.010000"],["2024-07-24T12:47:39.010000"],["2024-07-24T12:47:40.010000"],["2024-07-24T12:47:41.010000"],["2024-07-24T12:47:42.010000"],["2024-07-24T12:47:43.010000"],["2024-07-24T12:47:44.010000"],["2024-07-24T12:47:45.010000"],["2024-07-24T12:47:46.010000"],["2024-07-24T12:47:47.010000"],["2024-07-24T12:47:48.010000"],["2024-07-24T12:47:49.010000"],["2024-07-24T12:47:50.010000"],["2024-07-24T12:47:51.010000"],["2024-07-24T12:47:52.010000"],["2024-07-24T12:47:53.010000"],["2024-07-24T12:47:54.010000"],["2024-07-24T12:47:55.010000"],["2024-07-24T12:47:56.010000"],["2024-07-24T12:47:57.010000"],["2024-07-24T12:47:58.010000"],["2024-07-24T12:47:59.010000"],["2024-07-24T12:48:00.010000"],["2024-07-24T12:48:01.010000"],["2024-07-24T12:48:02.010000"],["2024-07-24T12:48:03.010000"],["2024-07-24T12:48:04.010000"],["2024-07-24T12:48:05.010000"],["2024-07-24T12:48:06.010000"],["2024-07-24T12:48:07.010000"],["2024-07-24T12:48:08.010000"],["2024-07-24T12:48:09.010000"],["2024-07-24T12:48:10.010000"],["2024-07-24T12:48:11.010000"],["2024-07-24T12:48:12.010000"],["2024-07-24T12:48:13.010000"],["2024-07-24T12:48:14.010000"],["2024-07-24T12:48:15.010000"],["2024-07-24T12:48:16.010000"],["2024-07-24T12:48:17.010000"],["2024-07-24T12:48:18.010000"],["2024-07-24T12:48:19.010000"],["2024-07-24T12:48:20.010000"],["2024-07-24T12:48:21.010000"],["2024-07-24T12:48:22.010000"],["2024-07-24T12:48:23.010000"],["2024-07-24T12:48:24.010000"],["2024-07-24T12:48:25.010000"],["2024-07-24T12:48:26.010000"],["2024-07-24T12:48:27.010000"],["2024-07-24T12:48:28.010000"],["2024-07-24T12:48:29.010000"],["2024-07-24T12:48:30.010000"],["2024-07-24T12:48:31.010000"],["2024-07-24T12:48:32.010000"],["2024-07-24T12:48:33.010000"],["2024-07-24T12:48:34.010000"],["2024-07-24T12:48:35.010000"],["2024-07-24T12:48:36.010000"],["2024-07-24T12:48:37.010000"],["2024-07-24T12:48:38.010000"],["2024-07-24T12:48:39.010000"],["2024-07-24T12:48:40.010000"],["2024-07-24T12:48:41.010000"],["2024-07-24T12:48:42.010000"],["2024-07-24T12:48:43.010000"],["2024-07-24T12:48:44.010000"],["2024-07-24T12:48:45.010000"],["2024-07-24T12:48:46.010000"],["2024-07-24T12:48:47.010000"],["2024-07-24T12:48:48.010000"],["2024-07-24T12:48:49.010000"],["2024-07-24T12:48:50.010000"],["2024-07-24T12:48:51.010000"],["2024-07-24T12:48:52.010000"],["2024-07-24T12:48:53.010000"],["2024-07-24T12:48:54.010000"],["2024-07-24T12:48:55.010000"],["2024-07-24T12:48:56.010000"],["2024-07-24T12:48:57.010000"],["2024-07-24T12:48:58.010000"],["2024-07-24T12:48:59.010000"],["2024-07-24T12:49:00.010000"],["2024-07-24T12:49:01.010000"],["2024-07-24T12:49:02.010000"],["2024-07-24T12:49:03.010000"],["2024-07-24T12:49:04.010000"],["2024-07-24T12:49:05.010000"],["2024-07-24T12:49:06.010000"],["2024-07-24T12:49:07.010000"],["2024-07-24T12:49:08.010000"],["2024-07-24T12:49:09.010000"],["2024-07-24T12:49:10.010000"],["2024-07-24T12:49:11.010000"],["2024-07-24T12:49:12.010000"],["2024-07-24T12:49:13.010000"],["2024-07-24T12:49:14.010000"],["2024-07-24T12:49:15.010000"],["2024-07-24T12:49:16.010000"],["2024-07-24T12:49:17.010000"],["2024-07-24T12:49:18.010000"],["2024-07-24T12:49:19.010000"],["2024-07-24T12:49:20.010000"],["2024-07-24T12:49:21.010000"],["2024-07-24T12:49:22.010000"],["2024-07-24T12:49:23.010000"],["2024-07-24T12:49:24.010000"],["2024-07-24T12:49:25.010000"],["2024-07-24T12:49:26.010000"],["2024-07-24T12:49:27.010000"],["2024-07-24T12:49:28.010000"],["2024-07-24T12:49:29.010000"],["2024-07-24T12:49:30.010000"],["2024-07-24T12:49:31.010000"],["2024-07-24T12:49:32.010000"],["2024-07-24T12:49:33.010000"],["2024-07-24T12:49:34.010000"],["2024-07-24T12:49:35.010000"],["2024-07-24T12:49:36.010000"],["2024-07-24T12:49:37.010000"],["2024-07-24T12:49:38.010000"],["2024-07-24T12:49:39.010000"],["2024-07-24T12:49:40.010000"],["2024-07-24T12:49:41.010000"],["2024-07-24T12:49:42.010000"],["2024-07-24T12:49:43.010000"],["2024-07-24T12:49:44.010000"],["2024-07-24T12:49:45.010000"],["2024-07-24T12:49:46.010000"],["2024-07-24T12:49:47.010000"],["2024-07-24T12:49:48.010000"],["2024-07-24T12:49:49.010000"],["2024-07-24T12:49:50.010000"],["2024-07-24T12:49:51.010000"],["2024-07-24T12:49:52.010000"],["2024-07-24T12:49:53.010000"],["2024-07-24T12:49:54.010000"],["2024-07-24T12:49:55.010000"],["2024-07-24T12:49:56.010000"],["2024-07-24T12:49:57.010000"],["2024-07-24T12:49:58.010000"],["2024-07-24T12:49:59.010000"],["2024-07-24T12:50:00.010000"],["2024-07-24T12:50:01.010000"],["2024-07-24T12:50:02.010000"],["2024-07-24T12:50:03.010000"],["2024-07-24T12:50:04.010000"],["2024-07-24T12:50:05.010000"],["2024-07-24T12:50:06.010000"],["2024-07-24T12:50:07.010000"],["2024-07-24T12:50:08.010000"],["2024-07-24T12:50:09.010000"],["2024-07-24T12:50:10.010000"],["2024-07-24T12:50:11.010000"],["2024-07-24T12:50:12.010000"],["2024-07-24T12:50:13.010000"],["2024-07-24T12:50:14.010000"],["2024-07-24T12:50:15.010000"],["2024-07-24T12:50:16.010000"],["2024-07-24T12:50:17.010000"],["2024-07-24T12:50:18.010000"],["2024-07-24T12:50:19.010000"],["2024-07-24T12:50:20.010000"],["2024-07-24T12:50:21.010000"],["2024-07-24T12:50:22.010000"],["2024-07-24T12:50:23.010000"],["2024-07-24T12:50:24.010000"],["2024-07-24T12:50:25.010000"],["2024-07-24T12:50:26.010000"],["2024-07-24T12:50:27.010000"],["2024-07-24T12:50:28.010000"],["2024-07-24T12:50:29.010000"],["2024-07-24T12:50:30.010000"],["2024-07-24T12:50:31.010000"],["2024-07-24T12:50:32.010000"],["2024-07-24T12:50:33.010000"],["2024-07-24T12:50:34.010000"],["2024-07-24T12:50:35.010000"],["2024-07-24T12:50:36.010000"],["2024-07-24T12:50:37.010000"],["2024-07-24T12:50:38.010000"],["2024-07-24T12:50:39.010000"],["2024-07-24T12:50:40.010000"],["2024-07-24T12:50:41.010000"],["2024-07-24T12:50:42.010000"],["2024-07-24T12:50:43.010000"],["2024-07-24T12:50:44.010000"],["2024-07-24T12:50:45.010000"],["2024-07-24T12:50:46.010000"],["2024-07-24T12:50:47.010000"],["2024-07-24T12:50:48.010000"],["2024-07-24T12:50:49.010000"],["2024-07-24T12:50:50.010000"],["2024-07-24T12:50:51.010000"],["2024-07-24T12:50:52.010000"],["2024-07-24T12:50:53.010000"],["2024-07-24T12:50:54.010000"],["2024-07-24T12:50:55.010000"],["2024-07-24T12:50:56.010000"],["2024-07-24T12:50:57.010000"],["2024-07-24T12:50:58.010000"],["2024-07-24T12:50:59.010000"],["2024-07-24T12:51:00.010000"],["2024-07-24T12:51:01.010000"],["2024-07-24T12:51:02.010000"],["2024-07-24T12:51:03.010000"],["2024-07-24T12:51:04.010000"],["2024-07-24T12:51:05.010000"],["2024-07-24T12:51:06.010000"],["2024-07-24T12:51:07.010000"],["2024-07-24T12:51:08.010000"],["2024-07-24T12:51:09.010000"],["2024-07-24T12:51:10.010000"],["2024-07-24T12:51:11.010000"],["2024-07-24T12:51:12.010000"],["2024-07-24T12:51:13.010000"],["2024-07-24T12:51:14.010000"],["2024-07-24T12:51:15.010000"],["2024-07-24T12:51:16.010000"],["2024-07-24T12:51:17.010000"],["2024-07-24T12:51:18.010000"],["2024-07-24T12:51:19.010000"],["2024-07-24T12:51:20.010000"],["2024-07-24T12:51:21.010000"],["2024-07-24T12:51:22.010000"],["2024-07-24T12:51:23.010000"],["2024-07-24T12:51:24.010000"],["2024-07-24T12:51:25.010000"],["2024-07-24T12:51:26.010000"],["2024-07-24T12:51:27.010000"],["2024-07-24T12:51:28.010000"],["2024-07-24T12:51:29.010000"],["2024-07-24T12:51:30.010000"],["2024-07-24T12:51:31.010000"],["2024-07-24T12:51:32.010000"],["2024-07-24T12:51:33.010000"],["2024-07-24T12:51:34.010000"],["2024-07-24T12:51:35.010000"],["2024-07-24T12:51:36.010000"],["2024-07-24T12:51:37.010000"],["2024-07-24T12:51:38.010000"],["2024-07-24T12:51:39.010000"],["2024-07-24T12:51:40.010000"],["2024-07-24T12:51:41.010000"],["2024-07-24T12:51:42.010000"],["2024-07-24T12:51:43.010000"],["2024-07-24T12:51:44.010000"],["2024-07-24T12:51:45.010000"],["2024-07-24T12:51:46.010000"],["2024-07-24T12:51:47.010000"],["2024-07-24T12:51:48.010000"],["2024-07-24T12:51:49.010000"],["2024-07-24T12:51:50.010000"],["2024-07-24T12:51:51.010000"],["2024-07-24T12:51:52.010000"],["2024-07-24T12:51:53.010000"],["2024-07-24T12:51:54.010000"],["2024-07-24T12:51:55.010000"],["2024-07-24T12:51:56.010000"],["2024-07-24T12:51:57.010000"],["2024-07-24T12:51:58.010000"],["2024-07-24T12:51:59.010000"],["2024-07-24T12:52:00.010000"],["2024-07-24T12:52:01.010000"],["2024-07-24T12:52:02.010000"],["2024-07-24T12:52:03.010000"],["2024-07-24T12:52:04.010000"],["2024-07-24T12:52:05.010000"],["2024-07-24T12:52:06.010000"],["2024-07-24T12:52:07.010000"],["2024-07-24T12:52:08.010000"],["2024-07-24T12:52:09.010000"],["2024-07-24T12:52:10.010000"],["2024-07-24T12:52:11.010000"],["2024-07-24T12:52:12.010000"],["2024-07-24T12:52:13.010000"],["2024-07-24T12:52:14.010000"],["2024-07-24T12:52:15.010000"],["2024-07-24T12:52:16.010000"],["2024-07-24T12:52:17.010000"],["2024-07-24T12:52:18.010000"],["2024-07-24T12:52:19.010000"],["2024-07-24T12:52:20.010000"],["2024-07-24T12:52:21.010000"],["2024-07-24T12:52:22.010000"],["2024-07-24T12:52:23.010000"],["2024-07-24T12:52:24.010000"],["2024-07-24T12:52:25.010000"],["2024-07-24T12:52:26.010000"],["2024-07-24T12:52:27.010000"],["2024-07-24T12:52:28.010000"],["2024-07-24T12:52:29.010000"],["2024-07-24T12:52:30.010000"],["2024-07-24T12:52:31.010000"],["2024-07-24T12:52:32.010000"],["2024-07-24T12:52:33.010000"],["2024-07-24T12:52:34.010000"],["2024-07-24T12:52:35.010000"],["2024-07-24T12:52:36.010000"],["2024-07-24T12:52:37.010000"],["2024-07-24T12:52:38.010000"],["2024-07-24T12:52:39.010000"],["2024-07-24T12:52:40.010000"],["2024-07-24T12:52:41.010000"],["2024-07-24T12:52:42.010000"],["2024-07-24T12:52:43.010000"],["2024-07-24T12:52:44.010000"],["2024-07-24T12:52:45.010000"],["2024-07-24T12:52:46.010000"],["2024-07-24T12:52:47.010000"],["2024-07-24T12:52:48.010000"],["2024-07-24T12:52:49.010000"],["2024-07-24T12:52:50.010000"],["2024-07-24T12:52:51.010000"],["2024-07-24T12:52:52.010000"],["2024-07-24T12:52:53.010000"],["2024-07-24T12:52:54.010000"],["2024-07-24T12:52:55.010000"],["2024-07-24T12:52:56.010000"],["2024-07-24T12:52:57.010000"],["2024-07-24T12:52:58.010000"],["2024-07-24T12:52:59.010000"],["2024-07-24T12:53:00.010000"],["2024-07-24T12:53:01.010000"],["2024-07-24T12:53:02.010000"],["2024-07-24T12:53:03.010000"],["2024-07-24T12:53:04.010000"],["2024-07-24T12:53:05.010000"],["2024-07-24T12:53:06.010000"],["2024-07-24T12:53:07.010000"],["2024-07-24T12:53:08.010000"],["2024-07-24T12:53:09.010000"],["2024-07-24T12:53:10.010000"],["2024-07-24T12:53:11.010000"],["2024-07-24T12:53:12.010000"],["2024-07-24T12:53:13.010000"],["2024-07-24T12:53:14.010000"],["2024-07-24T12:53:15.010000"],["2024-07-24T12:53:16.010000"],["2024-07-24T12:53:17.010000"],["2024-07-24T12:53:18.010000"],["2024-07-24T12:53:19.010000"],["2024-07-24T12:53:20.010000"],["2024-07-24T12:53:21.010000"],["2024-07-24T12:53:22.010000"],["2024-07-24T12:53:23.010000"],["2024-07-24T12:53:24.010000"],["2024-07-24T12:53:25.010000"],["2024-07-24T12:53:26.010000"],["2024-07-24T12:53:27.010000"],["2024-07-24T12:53:28.010000"],["2024-07-24T12:53:29.010000"],["2024-07-24T12:53:30.010000"],["2024-07-24T12:53:31.010000"],["2024-07-24T12:53:32.010000"],["2024-07-24T12:53:33.010000"],["2024-07-24T12:53:34.010000"],["2024-07-24T12:53:35.010000"],["2024-07-24T12:53:36.010000"],["2024-07-24T12:53:37.010000"],["2024-07-24T12:53:38.010000"],["2024-07-24T12:53:39.010000"],["2024-07-24T12:53:40.010000"],["2024-07-24T12:53:41.010000"],["2024-07-24T12:53:42.010000"],["2024-07-24T12:53:43.010000"],["2024-07-24T12:53:44.010000"],["2024-07-24T12:53:45.010000"],["2024-07-24T12:53:46.010000"],["2024-07-24T12:53:47.010000"],["2024-07-24T12:53:48.010000"],["2024-07-24T12:53:49.010000"],["2024-07-24T12:53:50.010000"],["2024-07-24T12:53:51.010000"],["2024-07-24T12:53:52.010000"],["2024-07-24T12:53:53.010000"],["2024-07-24T12:53:54.010000"],["2024-07-24T12:53:55.010000"],["2024-07-24T12:53:56.010000"],["2024-07-24T12:53:57.010000"],["2024-07-24T12:53:58.010000"],["2024-07-24T12:53:59.010000"],["2024-07-24T12:54:00.010000"],["2024-07-24T12:54:01.010000"],["2024-07-24T12:54:02.010000"],["2024-07-24T12:54:03.010000"],["2024-07-24T12:54:04.010000"],["2024-07-24T12:54:05.010000"],["2024-07-24T12:54:06.010000"],["2024-07-24T12:54:07.010000"],["2024-07-24T12:54:08.010000"],["2024-07-24T12:54:09.010000"],["2024-07-24T12:54:10.010000"],["2024-07-24T12:54:11.010000"],["2024-07-24T12:54:12.010000"],["2024-07-24T12:54:13.010000"],["2024-07-24T12:54:14.010000"],["2024-07-24T12:54:15.010000"],["2024-07-24T12:54:16.010000"],["2024-07-24T12:54:17.010000"],["2024-07-24T12:54:18.010000"],["2024-07-24T12:54:19.010000"],["2024-07-24T12:54:20.010000"],["2024-07-24T12:54:21.010000"],["2024-07-24T12:54:22.010000"],["2024-07-24T12:54:23.010000"],["2024-07-24T12:54:24.010000"],["2024-07-24T12:54:25.010000"],["2024-07-24T12:54:26.010000"],["2024-07-24T12:54:27.010000"],["2024-07-24T12:54:28.010000"],["2024-07-24T12:54:29.010000"],["2024-07-24T12:54:30.010000"],["2024-07-24T12:54:31.010000"],["2024-07-24T12:54:32.010000"],["2024-07-24T12:54:33.010000"],["2024-07-24T12:54:34.010000"],["2024-07-24T12:54:35.010000"],["2024-07-24T12:54:36.010000"],["2024-07-24T12:54:37.010000"],["2024-07-24T12:54:38.010000"],["2024-07-24T12:54:39.010000"],["2024-07-24T12:54:40.010000"],["2024-07-24T12:54:41.010000"],["2024-07-24T12:54:42.010000"],["2024-07-24T12:54:43.010000"],["2024-07-24T12:54:44.010000"],["2024-07-24T12:54:45.010000"],["2024-07-24T12:54:46.010000"],["2024-07-24T12:54:47.010000"],["2024-07-24T12:54:48.010000"],["2024-07-24T12:54:49.010000"],["2024-07-24T12:54:50.010000"],["2024-07-24T12:54:51.010000"],["2024-07-24T12:54:52.010000"],["2024-07-24T12:54:53.010000"],["2024-07-24T12:54:54.010000"],["2024-07-24T12:54:55.010000"],["2024-07-24T12:54:56.010000"],["2024-07-24T12:54:57.010000"],["2024-07-24T12:54:58.010000"],["2024-07-24T12:54:59.010000"],["2024-07-24T12:55:00.010000"],["2024-07-24T12:55:01.010000"],["2024-07-24T12:55:02.010000"],["2024-07-24T12:55:03.010000"],["2024-07-24T12:55:04.010000"],["2024-07-24T12:55:05.010000"],["2024-07-24T12:55:06.010000"],["2024-07-24T12:55:07.010000"],["2024-07-24T12:55:08.010000"],["2024-07-24T12:55:09.010000"],["2024-07-24T12:55:10.010000"],["2024-07-24T12:55:11.010000"],["2024-07-24T12:55:12.010000"],["2024-07-24T12:55:13.010000"],["2024-07-24T12:55:14.010000"],["2024-07-24T12:55:15.010000"],["2024-07-24T12:55:16.010000"],["2024-07-24T12:55:17.010000"],["2024-07-24T12:55:18.010000"],["2024-07-24T12:55:19.010000"],["2024-07-24T12:55:20.010000"],["2024-07-24T12:55:21.010000"],["2024-07-24T12:55:22.010000"],["2024-07-24T12:55:23.010000"],["2024-07-24T12:55:24.010000"],["2024-07-24T12:55:25.010000"],["2024-07-24T12:55:26.010000"],["2024-07-24T12:55:27.010000"],["2024-07-24T12:55:28.010000"],["2024-07-24T12:55:29.010000"],["2024-07-24T12:55:30.010000"],["2024-07-24T12:55:31.010000"],["2024-07-24T12:55:32.010000"],["2024-07-24T12:55:33.010000"],["2024-07-24T12:55:34.010000"],["2024-07-24T12:55:35.010000"],["2024-07-24T12:55:36.010000"],["2024-07-24T12:55:37.010000"],["2024-07-24T12:55:38.010000"],["2024-07-24T12:55:39.010000"],["2024-07-24T12:55:40.010000"],["2024-07-24T12:55:41.010000"],["2024-07-24T12:55:42.010000"],["2024-07-24T12:55:43.010000"],["2024-07-24T12:55:44.010000"],["2024-07-24T12:55:45.010000"],["2024-07-24T12:55:46.010000"],["2024-07-24T12:55:47.010000"],["2024-07-24T12:55:48.010000"],["2024-07-24T12:55:49.010000"],["2024-07-24T12:55:50.010000"],["2024-07-24T12:55:51.010000"],["2024-07-24T12:55:52.010000"],["2024-07-24T12:55:53.010000"],["2024-07-24T12:55:54.010000"],["2024-07-24T12:55:55.010000"],["2024-07-24T12:55:56.010000"],["2024-07-24T12:55:57.010000"],["2024-07-24T12:55:58.010000"],["2024-07-24T12:55:59.010000"],["2024-07-24T12:56:00.010000"],["2024-07-24T12:56:01.010000"],["2024-07-24T12:56:02.010000"],["2024-07-24T12:56:03.010000"],["2024-07-24T12:56:04.010000"],["2024-07-24T12:56:05.010000"],["2024-07-24T12:56:06.010000"],["2024-07-24T12:56:07.010000"],["2024-07-24T12:56:08.010000"],["2024-07-24T12:56:09.010000"],["2024-07-24T12:56:10.010000"],["2024-07-24T12:56:11.010000"],["2024-07-24T12:56:12.010000"],["2024-07-24T12:56:13.010000"],["2024-07-24T12:56:14.010000"],["2024-07-24T12:56:15.010000"],["2024-07-24T12:56:16.010000"],["2024-07-24T12:56:17.010000"],["2024-07-24T12:56:18.010000"],["2024-07-24T12:56:19.010000"],["2024-07-24T12:56:20.010000"],["2024-07-24T12:56:21.010000"],["2024-07-24T12:56:22.010000"],["2024-07-24T12:56:23.010000"],["2024-07-24T12:56:24.010000"],["2024-07-24T12:56:25.010000"],["2024-07-24T12:56:26.010000"],["2024-07-24T12:56:27.010000"],["2024-07-24T12:56:28.010000"],["2024-07-24T12:56:29.010000"],["2024-07-24T12:56:30.010000"],["2024-07-24T12:56:31.010000"],["2024-07-24T12:56:32.010000"],["2024-07-24T12:56:33.010000"],["2024-07-24T12:56:34.010000"],["2024-07-24T12:56:35.010000"],["2024-07-24T12:56:36.010000"],["2024-07-24T12:56:37.010000"],["2024-07-24T12:56:38.010000"],["2024-07-24T12:56:39.010000"],["2024-07-24T12:56:40.010000"],["2024-07-24T12:56:41.010000"],["2024-07-24T12:56:42.010000"],["2024-07-24T12:56:43.010000"],["2024-07-24T12:56:44.010000"],["2024-07-24T12:56:45.010000"],["2024-07-24T12:56:46.010000"],["2024-07-24T12:56:47.010000"],["2024-07-24T12:56:48.010000"],["2024-07-24T12:56:49.010000"],["2024-07-24T12:56:50.010000"],["2024-07-24T12:56:51.010000"],["2024-07-24T12:56:52.010000"],["2024-07-24T12:56:53.010000"],["2024-07-24T12:56:54.010000"],["2024-07-24T12:56:55.010000"],["2024-07-24T12:56:56.010000"],["2024-07-24T12:56:57.010000"],["2024-07-24T12:56:58.010000"],["2024-07-24T12:56:59.010000"],["2024-07-24T12:57:00.010000"],["2024-07-24T12:57:01.010000"],["2024-07-24T12:57:02.010000"],["2024-07-24T12:57:03.010000"],["2024-07-24T12:57:04.010000"],["2024-07-24T12:57:05.010000"],["2024-07-24T12:57:06.010000"],["2024-07-24T12:57:07.010000"],["2024-07-24T12:57:08.010000"],["2024-07-24T12:57:09.010000"],["2024-07-24T12:57:10.010000"],["2024-07-24T12:57:11.010000"],["2024-07-24T12:57:12.010000"],["2024-07-24T12:57:13.010000"],["2024-07-24T12:57:14.010000"],["2024-07-24T12:57:15.010000"],["2024-07-24T12:57:16.010000"],["2024-07-24T12:57:17.010000"],["2024-07-24T12:57:18.010000"],["2024-07-24T12:57:19.010000"],["2024-07-24T12:57:20.010000"],["2024-07-24T12:57:21.010000"],["2024-07-24T12:57:22.010000"],["2024-07-24T12:57:23.010000"],["2024-07-24T12:57:24.010000"],["2024-07-24T12:57:25.010000"],["2024-07-24T12:57:26.010000"],["2024-07-24T12:57:27.010000"],["2024-07-24T12:57:28.010000"],["2024-07-24T12:57:29.010000"],["2024-07-24T12:57:30.010000"],["2024-07-24T12:57:31.010000"],["2024-07-24T12:57:32.010000"],["2024-07-24T12:57:33.010000"],["2024-07-24T12:57:34.010000"],["2024-07-24T12:57:35.010000"],["2024-07-24T12:57:36.010000"],["2024-07-24T12:57:37.010000"],["2024-07-24T12:57:38.010000"],["2024-07-24T12:57:39.010000"],["2024-07-24T12:57:40.010000"],["2024-07-24T12:57:41.010000"],["2024-07-24T12:57:42.010000"],["2024-07-24T12:57:43.010000"],["2024-07-24T12:57:44.010000"],["2024-07-24T12:57:45.010000"],["2024-07-24T12:57:46.010000"],["2024-07-24T12:57:47.010000"],["2024-07-24T12:57:48.010000"],["2024-07-24T12:57:49.010000"],["2024-07-24T12:57:50.010000"],["2024-07-24T12:57:51.010000"],["2024-07-24T12:57:52.010000"],["2024-07-24T12:57:53.010000"],["2024-07-24T12:57:54.010000"],["2024-07-24T12:57:55.010000"],["2024-07-24T12:57:56.010000"],["2024-07-24T12:57:57.010000"],["2024-07-24T12:57:58.010000"],["2024-07-24T12:57:59.010000"],["2024-07-24T12:58:00.010000"],["2024-07-24T12:58:01.010000"],["2024-07-24T12:58:02.010000"],["2024-07-24T12:58:03.010000"],["2024-07-24T12:58:04.010000"],["2024-07-24T12:58:05.010000"],["2024-07-24T12:58:06.010000"],["2024-07-24T12:58:07.010000"],["2024-07-24T12:58:08.010000"],["2024-07-24T12:58:09.010000"],["2024-07-24T12:58:10.010000"],["2024-07-24T12:58:11.010000"],["2024-07-24T12:58:12.010000"],["2024-07-24T12:58:13.010000"],["2024-07-24T12:58:14.010000"],["2024-07-24T12:58:15.010000"],["2024-07-24T12:58:16.010000"],["2024-07-24T12:58:17.010000"],["2024-07-24T12:58:18.010000"],["2024-07-24T12:58:19.010000"],["2024-07-24T12:58:20.010000"],["2024-07-24T12:58:21.010000"],["2024-07-24T12:58:22.010000"],["2024-07-24T12:58:23.010000"],["2024-07-24T12:58:24.010000"],["2024-07-24T12:58:25.010000"],["2024-07-24T12:58:26.010000"],["2024-07-24T12:58:27.010000"],["2024-07-24T12:58:28.010000"],["2024-07-24T12:58:29.010000"],["2024-07-24T12:58:30.010000"],["2024-07-24T12:58:31.010000"],["2024-07-24T12:58:32.010000"],["2024-07-24T12:58:33.010000"],["2024-07-24T12:58:34.010000"],["2024-07-24T12:58:35.010000"],["2024-07-24T12:58:36.010000"],["2024-07-24T12:58:37.010000"],["2024-07-24T12:58:38.010000"],["2024-07-24T12:58:39.010000"],["2024-07-24T12:58:40.010000"],["2024-07-24T12:58:41.010000"],["2024-07-24T12:58:42.010000"],["2024-07-24T12:58:43.010000"],["2024-07-24T12:58:44.010000"],["2024-07-24T12:58:45.010000"],["2024-07-24T12:58:46.010000"],["2024-07-24T12:58:47.010000"],["2024-07-24T12:58:48.010000"],["2024-07-24T12:58:49.010000"],["2024-07-24T12:58:50.010000"],["2024-07-24T12:58:51.010000"],["2024-07-24T12:58:52.010000"],["2024-07-24T12:58:53.010000"],["2024-07-24T12:58:54.010000"],["2024-07-24T12:58:55.010000"],["2024-07-24T12:58:56.010000"],["2024-07-24T12:58:57.010000"],["2024-07-24T12:58:58.010000"],["2024-07-24T12:58:59.010000"],["2024-07-24T12:59:00.010000"],["2024-07-24T12:59:01.010000"],["2024-07-24T12:59:02.010000"],["2024-07-24T12:59:03.010000"],["2024-07-24T12:59:04.010000"],["2024-07-24T12:59:05.010000"],["2024-07-24T12:59:06.010000"],["2024-07-24T12:59:07.010000"],["2024-07-24T12:59:08.010000"],["2024-07-24T12:59:09.010000"],["2024-07-24T12:59:10.010000"],["2024-07-24T12:59:11.010000"],["2024-07-24T12:59:12.010000"],["2024-07-24T12:59:13.010000"],["2024-07-24T12:59:14.010000"],["2024-07-24T12:59:15.010000"],["2024-07-24T12:59:16.010000"],["2024-07-24T12:59:17.010000"],["2024-07-24T12:59:18.010000"],["2024-07-24T12:59:19.010000"],["2024-07-24T12:59:20.010000"],["2024-07-24T12:59:21.010000"],["2024-07-24T12:59:22.010000"],["2024-07-24T12:59:23.010000"],["2024-07-24T12:59:24.010000"],["2024-07-24T12:59:25.010000"],["2024-07-24T12:59:26.010000"],["2024-07-24T12:59:27.010000"],["2024-07-24T12:59:28.010000"],["2024-07-24T12:59:29.010000"],["2024-07-24T12:59:30.010000"],["2024-07-24T12:59:31.010000"],["2024-07-24T12:59:32.010000"],["2024-07-24T12:59:33.010000"],["2024-07-24T12:59:34.010000"],["2024-07-24T12:59:35.010000"],["2024-07-24T12:59:36.010000"],["2024-07-24T12:59:37.010000"],["2024-07-24T12:59:38.010000"],["2024-07-24T12:59:39.010000"],["2024-07-24T12:59:40.010000"],["2024-07-24T12:59:41.010000"],["2024-07-24T12:59:42.010000"],["2024-07-24T12:59:43.010000"],["2024-07-24T12:59:44.010000"],["2024-07-24T12:59:45.010000"],["2024-07-24T12:59:46.010000"],["2024-07-24T12:59:47.010000"],["2024-07-24T12:59:48.010000"],["2024-07-24T12:59:49.010000"],["2024-07-24T12:59:50.010000"],["2024-07-24T12:59:51.010000"],["2024-07-24T12:59:52.010000"],["2024-07-24T12:59:53.010000"],["2024-07-24T12:59:54.010000"],["2024-07-24T12:59:55.010000"],["2024-07-24T12:59:56.010000"],["2024-07-24T12:59:57.010000"],["2024-07-24T12:59:58.010000"],["2024-07-24T12:59:59.010000"],["2024-07-24T13:00:00.010000"],["2024-07-24T13:00:01.010000"],["2024-07-24T13:00:02.010000"],["2024-07-24T13:00:03.010000"],["2024-07-24T13:00:04.010000"],["2024-07-24T13:00:05.010000"],["2024-07-24T13:00:06.010000"],["2024-07-24T13:00:07.010000"],["2024-07-24T13:00:08.010000"],["2024-07-24T13:00:09.010000"],["2024-07-24T13:00:10.010000"],["2024-07-24T13:00:11.010000"],["2024-07-24T13:00:12.010000"],["2024-07-24T13:00:13.010000"],["2024-07-24T13:00:14.010000"],["2024-07-24T13:00:15.010000"],["2024-07-24T13:00:16.010000"],["2024-07-24T13:00:17.010000"],["2024-07-24T13:00:18.010000"],["2024-07-24T13:00:19.010000"],["2024-07-24T13:00:20.010000"],["2024-07-24T13:00:21.010000"],["2024-07-24T13:00:22.010000"],["2024-07-24T13:00:23.010000"],["2024-07-24T13:00:24.010000"],["2024-07-24T13:00:25.010000"],["2024-07-24T13:00:26.010000"],["2024-07-24T13:00:27.010000"],["2024-07-24T13:00:28.010000"],["2024-07-24T13:00:29.010000"],["2024-07-24T13:00:30.010000"],["2024-07-24T13:00:31.010000"],["2024-07-24T13:00:32.010000"],["2024-07-24T13:00:33.010000"],["2024-07-24T13:00:34.010000"],["2024-07-24T13:00:35.010000"],["2024-07-24T13:00:36.010000"],["2024-07-24T13:00:37.010000"],["2024-07-24T13:00:38.010000"],["2024-07-24T13:00:39.010000"],["2024-07-24T13:00:40.010000"],["2024-07-24T13:00:41.010000"],["2024-07-24T13:00:42.010000"],["2024-07-24T13:00:43.010000"],["2024-07-24T13:00:44.010000"],["2024-07-24T13:00:45.010000"],["2024-07-24T13:00:46.010000"],["2024-07-24T13:00:47.010000"],["2024-07-24T13:00:48.010000"],["2024-07-24T13:00:49.010000"],["2024-07-24T13:00:50.010000"],["2024-07-24T13:00:51.010000"],["2024-07-24T13:00:52.010000"],["2024-07-24T13:00:53.010000"],["2024-07-24T13:00:54.010000"],["2024-07-24T13:00:55.010000"],["2024-07-24T13:00:56.010000"],["2024-07-24T13:00:57.010000"],["2024-07-24T13:00:58.010000"],["2024-07-24T13:00:59.010000"],["2024-07-24T13:01:00.010000"],["2024-07-24T13:01:01.010000"],["2024-07-24T13:01:02.010000"],["2024-07-24T13:01:03.010000"],["2024-07-24T13:01:04.010000"],["2024-07-24T13:01:05.010000"],["2024-07-24T13:01:06.010000"],["2024-07-24T13:01:07.010000"],["2024-07-24T13:01:08.010000"],["2024-07-24T13:01:09.010000"],["2024-07-24T13:01:10.010000"],["2024-07-24T13:01:11.010000"],["2024-07-24T13:01:12.010000"],["2024-07-24T13:01:13.010000"],["2024-07-24T13:01:14.010000"],["2024-07-24T13:01:15.010000"],["2024-07-24T13:01:16.010000"],["2024-07-24T13:01:17.010000"],["2024-07-24T13:01:18.010000"],["2024-07-24T13:01:19.010000"],["2024-07-24T13:01:20.010000"],["2024-07-24T13:01:21.010000"],["2024-07-24T13:01:22.010000"],["2024-07-24T13:01:23.010000"],["2024-07-24T13:01:24.010000"],["2024-07-24T13:01:25.010000"],["2024-07-24T13:01:26.010000"],["2024-07-24T13:01:27.010000"],["2024-07-24T13:01:28.010000"],["2024-07-24T13:01:29.010000"],["2024-07-24T13:01:30.010000"],["2024-07-24T13:01:31.010000"],["2024-07-24T13:01:32.010000"],["2024-07-24T13:01:33.010000"],["2024-07-24T13:01:34.010000"],["2024-07-24T13:01:35.010000"],["2024-07-24T13:01:36.010000"],["2024-07-24T13:01:37.010000"],["2024-07-24T13:01:38.010000"],["2024-07-24T13:01:39.010000"],["2024-07-24T13:01:40.010000"],["2024-07-24T13:01:41.010000"],["2024-07-24T13:01:42.010000"],["2024-07-24T13:01:43.010000"],["2024-07-24T13:01:44.010000"],["2024-07-24T13:01:45.010000"],["2024-07-24T13:01:46.010000"],["2024-07-24T13:01:47.010000"],["2024-07-24T13:01:48.010000"],["2024-07-24T13:01:49.010000"],["2024-07-24T13:01:50.010000"],["2024-07-24T13:01:51.010000"],["2024-07-24T13:01:52.010000"],["2024-07-24T13:01:53.010000"],["2024-07-24T13:01:54.010000"],["2024-07-24T13:01:55.010000"],["2024-07-24T13:01:56.010000"],["2024-07-24T13:01:57.010000"],["2024-07-24T13:01:58.010000"],["2024-07-24T13:01:59.010000"],["2024-07-24T13:02:00.010000"],["2024-07-24T13:02:01.010000"],["2024-07-24T13:02:02.010000"],["2024-07-24T13:02:03.010000"],["2024-07-24T13:02:04.010000"],["2024-07-24T13:02:05.010000"],["2024-07-24T13:02:06.010000"],["2024-07-24T13:02:07.010000"],["2024-07-24T13:02:08.010000"],["2024-07-24T13:02:09.010000"],["2024-07-24T13:02:10.010000"],["2024-07-24T13:02:11.010000"],["2024-07-24T13:02:12.010000"],["2024-07-24T13:02:13.010000"],["2024-07-24T13:02:14.010000"],["2024-07-24T13:02:15.010000"],["2024-07-24T13:02:16.010000"],["2024-07-24T13:02:17.010000"],["2024-07-24T13:02:18.010000"],["2024-07-24T13:02:19.010000"],["2024-07-24T13:02:20.010000"],["2024-07-24T13:02:21.010000"],["2024-07-24T13:02:22.010000"],["2024-07-24T13:02:23.010000"],["2024-07-24T13:02:24.010000"],["2024-07-24T13:02:25.010000"],["2024-07-24T13:02:26.010000"],["2024-07-24T13:02:27.010000"],["2024-07-24T13:02:28.010000"],["2024-07-24T13:02:29.010000"],["2024-07-24T13:02:30.010000"],["2024-07-24T13:02:31.010000"],["2024-07-24T13:02:32.010000"],["2024-07-24T13:02:33.010000"],["2024-07-24T13:02:34.010000"],["2024-07-24T13:02:35.010000"],["2024-07-24T13:02:36.010000"],["2024-07-24T13:02:37.010000"],["2024-07-24T13:02:38.010000"],["2024-07-24T13:02:39.010000"],["2024-07-24T13:02:40.010000"],["2024-07-24T13:02:41.010000"],["2024-07-24T13:02:42.010000"],["2024-07-24T13:02:43.010000"],["2024-07-24T13:02:44.010000"],["2024-07-24T13:02:45.010000"],["2024-07-24T13:02:46.010000"],["2024-07-24T13:02:47.010000"],["2024-07-24T13:02:48.010000"],["2024-07-24T13:02:49.010000"],["2024-07-24T13:02:50.010000"],["2024-07-24T13:02:51.010000"],["2024-07-24T13:02:52.010000"],["2024-07-24T13:02:53.010000"],["2024-07-24T13:02:54.010000"],["2024-07-24T13:02:55.010000"],["2024-07-24T13:02:56.010000"],["2024-07-24T13:02:57.010000"],["2024-07-24T13:02:58.010000"],["2024-07-24T13:02:59.010000"],["2024-07-24T13:03:00.010000"],["2024-07-24T13:03:01.010000"],["2024-07-24T13:03:02.010000"],["2024-07-24T13:03:03.010000"],["2024-07-24T13:03:04.010000"],["2024-07-24T13:03:05.010000"],["2024-07-24T13:03:06.010000"],["2024-07-24T13:03:07.010000"],["2024-07-24T13:03:08.010000"],["2024-07-24T13:03:09.010000"],["2024-07-24T13:03:10.010000"],["2024-07-24T13:03:11.010000"],["2024-07-24T13:03:12.010000"],["2024-07-24T13:03:13.010000"],["2024-07-24T13:03:14.010000"],["2024-07-24T13:03:15.010000"],["2024-07-24T13:03:16.010000"],["2024-07-24T13:03:17.010000"],["2024-07-24T13:03:18.010000"],["2024-07-24T13:03:19.010000"],["2024-07-24T13:03:20.010000"],["2024-07-24T13:03:21.010000"],["2024-07-24T13:03:22.010000"],["2024-07-24T13:03:23.010000"],["2024-07-24T13:03:24.010000"],["2024-07-24T13:03:25.010000"],["2024-07-24T13:03:26.010000"],["2024-07-24T13:03:27.010000"],["2024-07-24T13:03:28.010000"],["2024-07-24T13:03:29.010000"],["2024-07-24T13:03:30.010000"],["2024-07-24T13:03:31.010000"],["2024-07-24T13:03:32.010000"],["2024-07-24T13:03:33.010000"],["2024-07-24T13:03:34.010000"],["2024-07-24T13:03:35.010000"],["2024-07-24T13:03:36.010000"],["2024-07-24T13:03:37.010000"],["2024-07-24T13:03:38.010000"],["2024-07-24T13:03:39.010000"],["2024-07-24T13:03:40.010000"],["2024-07-24T13:03:41.010000"],["2024-07-24T13:03:42.010000"],["2024-07-24T13:03:43.010000"],["2024-07-24T13:03:44.010000"],["2024-07-24T13:03:45.010000"],["2024-07-24T13:03:46.010000"],["2024-07-24T13:03:47.010000"],["2024-07-24T13:03:48.010000"],["2024-07-24T13:03:49.010000"],["2024-07-24T13:03:50.010000"],["2024-07-24T13:03:51.010000"],["2024-07-24T13:03:52.010000"],["2024-07-24T13:03:53.010000"],["2024-07-24T13:03:54.010000"],["2024-07-24T13:03:55.010000"],["2024-07-24T13:03:56.010000"],["2024-07-24T13:03:57.010000"],["2024-07-24T13:03:58.010000"],["2024-07-24T13:03:59.010000"],["2024-07-24T13:04:00.010000"],["2024-07-24T13:04:01.010000"],["2024-07-24T13:04:02.010000"],["2024-07-24T13:04:03.010000"],["2024-07-24T13:04:04.010000"],["2024-07-24T13:04:05.010000"],["2024-07-24T13:04:06.010000"],["2024-07-24T13:04:07.010000"],["2024-07-24T13:04:08.010000"],["2024-07-24T13:04:09.010000"],["2024-07-24T13:04:10.010000"],["2024-07-24T13:04:11.010000"],["2024-07-24T13:04:12.010000"],["2024-07-24T13:04:13.010000"],["2024-07-24T13:04:14.010000"],["2024-07-24T13:04:15.010000"],["2024-07-24T13:04:16.010000"],["2024-07-24T13:04:17.010000"],["2024-07-24T13:04:18.010000"],["2024-07-24T13:04:19.010000"],["2024-07-24T13:04:20.010000"],["2024-07-24T13:04:21.010000"],["2024-07-24T13:04:22.010000"],["2024-07-24T13:04:23.010000"],["2024-07-24T13:04:24.010000"],["2024-07-24T13:04:25.010000"],["2024-07-24T13:04:26.010000"],["2024-07-24T13:04:27.010000"],["2024-07-24T13:04:28.010000"],["2024-07-24T13:04:29.010000"],["2024-07-24T13:04:30.010000"],["2024-07-24T13:04:31.010000"],["2024-07-24T13:04:32.010000"],["2024-07-24T13:04:33.010000"],["2024-07-24T13:04:34.010000"],["2024-07-24T13:04:35.010000"],["2024-07-24T13:04:36.010000"],["2024-07-24T13:04:37.010000"],["2024-07-24T13:04:38.010000"],["2024-07-24T13:04:39.010000"],["2024-07-24T13:04:40.010000"],["2024-07-24T13:04:41.010000"],["2024-07-24T13:04:42.010000"],["2024-07-24T13:04:43.010000"],["2024-07-24T13:04:44.010000"],["2024-07-24T13:04:45.010000"],["2024-07-24T13:04:46.010000"],["2024-07-24T13:04:47.010000"],["2024-07-24T13:04:48.010000"],["2024-07-24T13:04:49.010000"],["2024-07-24T13:04:50.010000"],["2024-07-24T13:04:51.010000"],["2024-07-24T13:04:52.010000"],["2024-07-24T13:04:53.010000"],["2024-07-24T13:04:54.010000"],["2024-07-24T13:04:55.010000"],["2024-07-24T13:04:56.010000"],["2024-07-24T13:04:57.010000"],["2024-07-24T13:04:58.010000"],["2024-07-24T13:04:59.010000"],["2024-07-24T13:05:00.010000"],["2024-07-24T13:05:01.010000"],["2024-07-24T13:05:02.010000"],["2024-07-24T13:05:03.010000"],["2024-07-24T13:05:04.010000"],["2024-07-24T13:05:05.010000"],["2024-07-24T13:05:06.010000"],["2024-07-24T13:05:07.010000"],["2024-07-24T13:05:08.010000"],["2024-07-24T13:05:09.010000"],["2024-07-24T13:05:10.010000"],["2024-07-24T13:05:11.010000"],["2024-07-24T13:05:12.010000"],["2024-07-24T13:05:13.010000"],["2024-07-24T13:05:14.010000"],["2024-07-24T13:05:15.010000"],["2024-07-24T13:05:16.010000"],["2024-07-24T13:05:17.010000"],["2024-07-24T13:05:18.010000"],["2024-07-24T13:05:19.010000"],["2024-07-24T13:05:20.010000"],["2024-07-24T13:05:21.010000"],["2024-07-24T13:05:22.010000"],["2024-07-24T13:05:23.010000"],["2024-07-24T13:05:24.010000"],["2024-07-24T13:05:25.010000"],["2024-07-24T13:05:26.010000"],["2024-07-24T13:05:27.010000"],["2024-07-24T13:05:28.010000"],["2024-07-24T13:05:29.010000"],["2024-07-24T13:05:30.010000"],["2024-07-24T13:05:31.010000"],["2024-07-24T13:05:32.010000"],["2024-07-24T13:05:33.010000"],["2024-07-24T13:05:34.010000"],["2024-07-24T13:05:35.010000"],["2024-07-24T13:05:36.010000"],["2024-07-24T13:05:37.010000"],["2024-07-24T13:05:38.010000"],["2024-07-24T13:05:39.010000"],["2024-07-24T13:05:40.010000"],["2024-07-24T13:05:41.010000"],["2024-07-24T13:05:42.010000"],["2024-07-24T13:05:43.010000"],["2024-07-24T13:05:44.010000"],["2024-07-24T13:05:45.010000"],["2024-07-24T13:05:46.010000"],["2024-07-24T13:05:47.010000"],["2024-07-24T13:05:48.010000"],["2024-07-24T13:05:49.010000"],["2024-07-24T13:05:50.010000"],["2024-07-24T13:05:51.010000"],["2024-07-24T13:05:52.010000"],["2024-07-24T13:05:53.010000"],["2024-07-24T13:05:54.010000"],["2024-07-24T13:05:55.010000"],["2024-07-24T13:05:56.010000"],["2024-07-24T13:05:57.010000"],["2024-07-24T13:05:58.010000"],["2024-07-24T13:05:59.010000"],["2024-07-24T13:06:00.010000"],["2024-07-24T13:06:01.010000"],["2024-07-24T13:06:02.010000"],["2024-07-24T13:06:03.010000"],["2024-07-24T13:06:04.010000"],["2024-07-24T13:06:05.010000"],["2024-07-24T13:06:06.010000"],["2024-07-24T13:06:07.010000"],["2024-07-24T13:06:08.010000"],["2024-07-24T13:06:09.010000"],["2024-07-24T13:06:10.010000"],["2024-07-24T13:06:11.010000"],["2024-07-24T13:06:12.010000"],["2024-07-24T13:06:13.010000"],["2024-07-24T13:06:14.010000"],["2024-07-24T13:06:15.010000"],["2024-07-24T13:06:16.010000"],["2024-07-24T13:06:17.010000"],["2024-07-24T13:06:18.010000"],["2024-07-24T13:06:19.010000"],["2024-07-24T13:06:20.010000"],["2024-07-24T13:06:21.010000"],["2024-07-24T13:06:22.010000"],["2024-07-24T13:06:23.010000"],["2024-07-24T13:06:24.010000"],["2024-07-24T13:06:25.010000"],["2024-07-24T13:06:26.010000"],["2024-07-24T13:06:27.010000"],["2024-07-24T13:06:28.010000"],["2024-07-24T13:06:29.010000"],["2024-07-24T13:06:30.010000"],["2024-07-24T13:06:31.010000"],["2024-07-24T13:06:32.010000"],["2024-07-24T13:06:33.010000"],["2024-07-24T13:06:34.010000"],["2024-07-24T13:06:35.010000"],["2024-07-24T13:06:36.010000"],["2024-07-24T13:06:37.010000"],["2024-07-24T13:06:38.010000"],["2024-07-24T13:06:39.010000"],["2024-07-24T13:06:40.010000"],["2024-07-24T13:06:41.010000"],["2024-07-24T13:06:42.010000"],["2024-07-24T13:06:43.010000"],["2024-07-24T13:06:44.010000"],["2024-07-24T13:06:45.010000"],["2024-07-24T13:06:46.010000"],["2024-07-24T13:06:47.010000"],["2024-07-24T13:06:48.010000"],["2024-07-24T13:06:49.010000"],["2024-07-24T13:06:50.010000"],["2024-07-24T13:06:51.010000"],["2024-07-24T13:06:52.010000"],["2024-07-24T13:06:53.010000"],["2024-07-24T13:06:54.010000"],["2024-07-24T13:06:55.010000"],["2024-07-24T13:06:56.010000"],["2024-07-24T13:06:57.010000"],["2024-07-24T13:06:58.010000"],["2024-07-24T13:06:59.010000"],["2024-07-24T13:07:00.010000"],["2024-07-24T13:07:01.010000"],["2024-07-24T13:07:02.010000"],["2024-07-24T13:07:03.010000"],["2024-07-24T13:07:04.010000"],["2024-07-24T13:07:05.010000"],["2024-07-24T13:07:06.010000"],["2024-07-24T13:07:07.010000"],["2024-07-24T13:07:08.010000"],["2024-07-24T13:07:09.010000"],["2024-07-24T13:07:10.010000"],["2024-07-24T13:07:11.010000"],["2024-07-24T13:07:12.010000"],["2024-07-24T13:07:13.010000"],["2024-07-24T13:07:14.010000"],["2024-07-24T13:07:15.010000"],["2024-07-24T13:07:16.010000"],["2024-07-24T13:07:17.010000"],["2024-07-24T13:07:18.010000"],["2024-07-24T13:07:19.010000"],["2024-07-24T13:07:20.010000"],["2024-07-24T13:07:21.010000"],["2024-07-24T13:07:22.010000"],["2024-07-24T13:07:23.010000"],["2024-07-24T13:07:24.010000"],["2024-07-24T13:07:25.010000"],["2024-07-24T13:07:26.010000"],["2024-07-24T13:07:27.010000"],["2024-07-24T13:07:28.010000"],["2024-07-24T13:07:29.010000"],["2024-07-24T13:07:30.010000"],["2024-07-24T13:07:31.010000"],["2024-07-24T13:07:32.010000"],["2024-07-24T13:07:33.010000"],["2024-07-24T13:07:34.010000"],["2024-07-24T13:07:35.010000"],["2024-07-24T13:07:36.010000"],["2024-07-24T13:07:37.010000"],["2024-07-24T13:07:38.010000"],["2024-07-24T13:07:39.010000"],["2024-07-24T13:07:40.010000"],["2024-07-24T13:07:41.010000"],["2024-07-24T13:07:42.010000"],["2024-07-24T13:07:43.010000"],["2024-07-24T13:07:44.010000"],["2024-07-24T13:07:45.010000"],["2024-07-24T13:07:46.010000"],["2024-07-24T13:07:47.010000"],["2024-07-24T13:07:48.010000"],["2024-07-24T13:07:49.010000"],["2024-07-24T13:07:50.010000"],["2024-07-24T13:07:51.010000"],["2024-07-24T13:07:52.010000"],["2024-07-24T13:07:53.010000"],["2024-07-24T13:07:54.010000"],["2024-07-24T13:07:55.010000"],["2024-07-24T13:07:56.010000"],["2024-07-24T13:07:57.010000"],["2024-07-24T13:07:58.010000"],["2024-07-24T13:07:59.010000"],["2024-07-24T13:08:00.010000"],["2024-07-24T13:08:01.010000"],["2024-07-24T13:08:02.010000"],["2024-07-24T13:08:03.010000"],["2024-07-24T13:08:04.010000"],["2024-07-24T13:08:05.010000"],["2024-07-24T13:08:06.010000"],["2024-07-24T13:08:07.010000"],["2024-07-24T13:08:08.010000"],["2024-07-24T13:08:09.010000"],["2024-07-24T13:08:10.010000"],["2024-07-24T13:08:11.010000"],["2024-07-24T13:08:12.010000"],["2024-07-24T13:08:13.010000"],["2024-07-24T13:08:14.010000"],["2024-07-24T13:08:15.010000"],["2024-07-24T13:08:16.010000"],["2024-07-24T13:08:17.010000"],["2024-07-24T13:08:18.010000"],["2024-07-24T13:08:19.010000"],["2024-07-24T13:08:20.010000"],["2024-07-24T13:08:21.010000"],["2024-07-24T13:08:22.010000"],["2024-07-24T13:08:23.010000"],["2024-07-24T13:08:24.010000"],["2024-07-24T13:08:25.010000"],["2024-07-24T13:08:26.010000"],["2024-07-24T13:08:27.010000"],["2024-07-24T13:08:28.010000"],["2024-07-24T13:08:29.010000"],["2024-07-24T13:08:30.010000"],["2024-07-24T13:08:31.010000"],["2024-07-24T13:08:32.010000"],["2024-07-24T13:08:33.010000"],["2024-07-24T13:08:34.010000"],["2024-07-24T13:08:35.010000"],["2024-07-24T13:08:36.010000"],["2024-07-24T13:08:37.010000"],["2024-07-24T13:08:38.010000"],["2024-07-24T13:08:39.010000"],["2024-07-24T13:08:40.010000"],["2024-07-24T13:08:41.010000"],["2024-07-24T13:08:42.010000"],["2024-07-24T13:08:43.010000"],["2024-07-24T13:08:44.010000"],["2024-07-24T13:08:45.010000"],["2024-07-24T13:08:46.010000"],["2024-07-24T13:08:47.010000"],["2024-07-24T13:08:48.010000"],["2024-07-24T13:08:49.010000"],["2024-07-24T13:08:50.010000"],["2024-07-24T13:08:51.010000"],["2024-07-24T13:08:52.010000"],["2024-07-24T13:08:53.010000"],["2024-07-24T13:08:54.010000"],["2024-07-24T13:08:55.010000"],["2024-07-24T13:08:56.010000"],["2024-07-24T13:08:57.010000"],["2024-07-24T13:08:58.010000"],["2024-07-24T13:08:59.010000"],["2024-07-24T13:09:00.010000"],["2024-07-24T13:09:01.010000"],["2024-07-24T13:09:02.010000"],["2024-07-24T13:09:03.010000"],["2024-07-24T13:09:04.010000"],["2024-07-24T13:09:05.010000"],["2024-07-24T13:09:06.010000"],["2024-07-24T13:09:07.010000"],["2024-07-24T13:09:08.010000"],["2024-07-24T13:09:09.010000"],["2024-07-24T13:09:10.010000"],["2024-07-24T13:09:11.010000"],["2024-07-24T13:09:12.010000"],["2024-07-24T13:09:13.010000"],["2024-07-24T13:09:14.010000"],["2024-07-24T13:09:15.010000"],["2024-07-24T13:09:16.010000"],["2024-07-24T13:09:17.010000"],["2024-07-24T13:09:18.010000"],["2024-07-24T13:09:19.010000"],["2024-07-24T13:09:20.010000"],["2024-07-24T13:09:21.010000"],["2024-07-24T13:09:22.010000"],["2024-07-24T13:09:23.010000"],["2024-07-24T13:09:24.010000"],["2024-07-24T13:09:25.010000"],["2024-07-24T13:09:26.010000"],["2024-07-24T13:09:27.010000"],["2024-07-24T13:09:28.010000"],["2024-07-24T13:09:29.010000"],["2024-07-24T13:09:30.010000"],["2024-07-24T13:09:31.010000"],["2024-07-24T13:09:32.010000"],["2024-07-24T13:09:33.010000"],["2024-07-24T13:09:34.010000"],["2024-07-24T13:09:35.010000"],["2024-07-24T13:09:36.010000"],["2024-07-24T13:09:37.010000"],["2024-07-24T13:09:38.010000"],["2024-07-24T13:09:39.010000"],["2024-07-24T13:09:40.010000"],["2024-07-24T13:09:41.010000"],["2024-07-24T13:09:42.010000"],["2024-07-24T13:09:43.010000"],["2024-07-24T13:09:44.010000"],["2024-07-24T13:09:45.010000"],["2024-07-24T13:09:46.010000"],["2024-07-24T13:09:47.010000"],["2024-07-24T13:09:48.010000"],["2024-07-24T13:09:49.010000"],["2024-07-24T13:09:50.010000"],["2024-07-24T13:09:51.010000"],["2024-07-24T13:09:52.010000"],["2024-07-24T13:09:53.010000"],["2024-07-24T13:09:54.010000"],["2024-07-24T13:09:55.010000"],["2024-07-24T13:09:56.010000"],["2024-07-24T13:09:57.010000"],["2024-07-24T13:09:58.010000"],["2024-07-24T13:09:59.010000"],["2024-07-24T13:10:00.010000"],["2024-07-24T13:10:01.010000"],["2024-07-24T13:10:02.010000"],["2024-07-24T13:10:03.010000"],["2024-07-24T13:10:04.010000"],["2024-07-24T13:10:05.010000"],["2024-07-24T13:10:06.010000"],["2024-07-24T13:10:07.010000"],["2024-07-24T13:10:08.010000"],["2024-07-24T13:10:09.010000"],["2024-07-24T13:10:10.010000"],["2024-07-24T13:10:11.010000"],["2024-07-24T13:10:12.010000"],["2024-07-24T13:10:13.010000"],["2024-07-24T13:10:14.010000"],["2024-07-24T13:10:15.010000"],["2024-07-24T13:10:16.010000"],["2024-07-24T13:10:17.010000"],["2024-07-24T13:10:18.010000"],["2024-07-24T13:10:19.010000"],["2024-07-24T13:10:20.010000"],["2024-07-24T13:10:21.010000"],["2024-07-24T13:10:22.010000"],["2024-07-24T13:10:23.010000"],["2024-07-24T13:10:24.010000"],["2024-07-24T13:10:25.010000"],["2024-07-24T13:10:26.010000"],["2024-07-24T13:10:27.010000"],["2024-07-24T13:10:28.010000"],["2024-07-24T13:10:29.010000"],["2024-07-24T13:10:30.010000"],["2024-07-24T13:10:31.010000"],["2024-07-24T13:10:32.010000"],["2024-07-24T13:10:33.010000"],["2024-07-24T13:10:34.010000"],["2024-07-24T13:10:35.010000"],["2024-07-24T13:10:36.010000"],["2024-07-24T13:10:37.010000"],["2024-07-24T13:10:38.010000"],["2024-07-24T13:10:39.010000"],["2024-07-24T13:10:40.010000"],["2024-07-24T13:10:41.010000"],["2024-07-24T13:10:42.010000"],["2024-07-24T13:10:43.010000"],["2024-07-24T13:10:44.010000"],["2024-07-24T13:10:45.010000"],["2024-07-24T13:10:46.010000"],["2024-07-24T13:10:47.010000"],["2024-07-24T13:10:48.010000"],["2024-07-24T13:10:49.010000"],["2024-07-24T13:10:50.010000"],["2024-07-24T13:10:51.010000"],["2024-07-24T13:10:52.010000"],["2024-07-24T13:10:53.010000"],["2024-07-24T13:10:54.010000"],["2024-07-24T13:10:55.010000"],["2024-07-24T13:10:56.010000"],["2024-07-24T13:10:57.010000"],["2024-07-24T13:10:58.010000"],["2024-07-24T13:10:59.010000"],["2024-07-24T13:11:00.010000"],["2024-07-24T13:11:01.010000"],["2024-07-24T13:11:02.010000"],["2024-07-24T13:11:03.010000"],["2024-07-24T13:11:04.010000"],["2024-07-24T13:11:05.010000"],["2024-07-24T13:11:06.010000"],["2024-07-24T13:11:07.010000"],["2024-07-24T13:11:08.010000"],["2024-07-24T13:11:09.010000"],["2024-07-24T13:11:10.010000"],["2024-07-24T13:11:11.010000"],["2024-07-24T13:11:12.010000"],["2024-07-24T13:11:13.010000"],["2024-07-24T13:11:14.010000"],["2024-07-24T13:11:15.010000"],["2024-07-24T13:11:16.010000"],["2024-07-24T13:11:17.010000"],["2024-07-24T13:11:18.010000"],["2024-07-24T13:11:19.010000"],["2024-07-24T13:11:20.010000"],["2024-07-24T13:11:21.010000"],["2024-07-24T13:11:22.010000"],["2024-07-24T13:11:23.010000"],["2024-07-24T13:11:24.010000"],["2024-07-24T13:11:25.010000"],["2024-07-24T13:11:26.010000"],["2024-07-24T13:11:27.010000"],["2024-07-24T13:11:28.010000"],["2024-07-24T13:11:29.010000"],["2024-07-24T13:11:30.010000"],["2024-07-24T13:11:31.010000"],["2024-07-24T13:11:32.010000"],["2024-07-24T13:11:33.010000"],["2024-07-24T13:11:34.010000"],["2024-07-24T13:11:35.010000"],["2024-07-24T13:11:36.010000"],["2024-07-24T13:11:37.010000"],["2024-07-24T13:11:38.010000"],["2024-07-24T13:11:39.010000"],["2024-07-24T13:11:40.010000"],["2024-07-24T13:11:41.010000"],["2024-07-24T13:11:42.010000"],["2024-07-24T13:11:43.010000"],["2024-07-24T13:11:44.010000"],["2024-07-24T13:11:45.010000"],["2024-07-24T13:11:46.010000"],["2024-07-24T13:11:47.010000"],["2024-07-24T13:11:48.010000"],["2024-07-24T13:11:49.010000"],["2024-07-24T13:11:50.010000"],["2024-07-24T13:11:51.010000"],["2024-07-24T13:11:52.010000"],["2024-07-24T13:11:53.010000"],["2024-07-24T13:11:54.010000"],["2024-07-24T13:11:55.010000"],["2024-07-24T13:11:56.010000"],["2024-07-24T13:11:57.010000"],["2024-07-24T13:11:58.010000"],["2024-07-24T13:11:59.010000"],["2024-07-24T13:12:00.010000"],["2024-07-24T13:12:01.010000"],["2024-07-24T13:12:02.010000"],["2024-07-24T13:12:03.010000"],["2024-07-24T13:12:04.010000"],["2024-07-24T13:12:05.010000"],["2024-07-24T13:12:06.010000"],["2024-07-24T13:12:07.010000"],["2024-07-24T13:12:08.010000"],["2024-07-24T13:12:09.010000"],["2024-07-24T13:12:10.010000"],["2024-07-24T13:12:11.010000"],["2024-07-24T13:12:12.010000"],["2024-07-24T13:12:13.010000"],["2024-07-24T13:12:14.010000"],["2024-07-24T13:12:15.010000"],["2024-07-24T13:12:16.010000"],["2024-07-24T13:12:17.010000"],["2024-07-24T13:12:18.010000"],["2024-07-24T13:12:19.010000"],["2024-07-24T13:12:20.010000"],["2024-07-24T13:12:21.010000"],["2024-07-24T13:12:22.010000"],["2024-07-24T13:12:23.010000"],["2024-07-24T13:12:24.010000"],["2024-07-24T13:12:25.010000"],["2024-07-24T13:12:26.010000"],["2024-07-24T13:12:27.010000"],["2024-07-24T13:12:28.010000"],["2024-07-24T13:12:29.010000"],["2024-07-24T13:12:30.010000"],["2024-07-24T13:12:31.010000"],["2024-07-24T13:12:32.010000"],["2024-07-24T13:12:33.010000"],["2024-07-24T13:12:34.010000"],["2024-07-24T13:12:35.010000"],["2024-07-24T13:12:36.010000"],["2024-07-24T13:12:37.010000"],["2024-07-24T13:12:38.010000"],["2024-07-24T13:12:39.010000"],["2024-07-24T13:12:40.010000"],["2024-07-24T13:12:41.010000"],["2024-07-24T13:12:42.010000"],["2024-07-24T13:12:43.010000"],["2024-07-24T13:12:44.010000"],["2024-07-24T13:12:45.010000"],["2024-07-24T13:12:46.010000"],["2024-07-24T13:12:47.010000"],["2024-07-24T13:12:48.010000"],["2024-07-24T13:12:49.010000"],["2024-07-24T13:12:50.010000"],["2024-07-24T13:12:51.010000"],["2024-07-24T13:12:52.010000"],["2024-07-24T13:12:53.010000"],["2024-07-24T13:12:54.010000"],["2024-07-24T13:12:55.010000"],["2024-07-24T13:12:56.010000"],["2024-07-24T13:12:57.010000"],["2024-07-24T13:12:58.010000"],["2024-07-24T13:12:59.010000"],["2024-07-24T13:13:00.010000"],["2024-07-24T13:13:01.010000"],["2024-07-24T13:13:02.010000"],["2024-07-24T13:13:03.010000"],["2024-07-24T13:13:04.010000"],["2024-07-24T13:13:05.010000"],["2024-07-24T13:13:06.010000"],["2024-07-24T13:13:07.010000"],["2024-07-24T13:13:08.010000"],["2024-07-24T13:13:09.010000"],["2024-07-24T13:13:10.010000"],["2024-07-24T13:13:11.010000"],["2024-07-24T13:13:12.010000"],["2024-07-24T13:13:13.010000"],["2024-07-24T13:13:14.010000"],["2024-07-24T13:13:15.010000"],["2024-07-24T13:13:16.010000"],["2024-07-24T13:13:17.010000"],["2024-07-24T13:13:18.010000"],["2024-07-24T13:13:19.010000"],["2024-07-24T13:13:20.010000"],["2024-07-24T13:13:21.010000"],["2024-07-24T13:13:22.010000"],["2024-07-24T13:13:23.010000"],["2024-07-24T13:13:24.010000"],["2024-07-24T13:13:25.010000"],["2024-07-24T13:13:26.010000"],["2024-07-24T13:13:27.010000"],["2024-07-24T13:13:28.010000"],["2024-07-24T13:13:29.010000"],["2024-07-24T13:13:30.010000"],["2024-07-24T13:13:31.010000"],["2024-07-24T13:13:32.010000"],["2024-07-24T13:13:33.010000"],["2024-07-24T13:13:34.010000"],["2024-07-24T13:13:35.010000"],["2024-07-24T13:13:36.010000"],["2024-07-24T13:13:37.010000"],["2024-07-24T13:13:38.010000"],["2024-07-24T13:13:39.010000"],["2024-07-24T13:13:40.010000"],["2024-07-24T13:13:41.010000"],["2024-07-24T13:13:42.010000"],["2024-07-24T13:13:43.010000"],["2024-07-24T13:13:44.010000"],["2024-07-24T13:13:45.010000"],["2024-07-24T13:13:46.010000"],["2024-07-24T13:13:47.010000"],["2024-07-24T13:13:48.010000"],["2024-07-24T13:13:49.010000"],["2024-07-24T13:13:50.010000"],["2024-07-24T13:13:51.010000"],["2024-07-24T13:13:52.010000"],["2024-07-24T13:13:53.010000"],["2024-07-24T13:13:54.010000"],["2024-07-24T13:13:55.010000"],["2024-07-24T13:13:56.010000"],["2024-07-24T13:13:57.010000"],["2024-07-24T13:13:58.010000"],["2024-07-24T13:13:59.010000"],["2024-07-24T13:14:00.010000"],["2024-07-24T13:14:01.010000"],["2024-07-24T13:14:02.010000"],["2024-07-24T13:14:03.010000"],["2024-07-24T13:14:04.010000"],["2024-07-24T13:14:05.010000"],["2024-07-24T13:14:06.010000"],["2024-07-24T13:14:07.010000"],["2024-07-24T13:14:08.010000"],["2024-07-24T13:14:09.010000"],["2024-07-24T13:14:10.010000"],["2024-07-24T13:14:11.010000"],["2024-07-24T13:14:12.010000"],["2024-07-24T13:14:13.010000"],["2024-07-24T13:14:14.010000"],["2024-07-24T13:14:15.010000"],["2024-07-24T13:14:16.010000"],["2024-07-24T13:14:17.010000"],["2024-07-24T13:14:18.010000"],["2024-07-24T13:14:19.010000"],["2024-07-24T13:14:20.010000"],["2024-07-24T13:14:21.010000"],["2024-07-24T13:14:22.010000"],["2024-07-24T13:14:23.010000"],["2024-07-24T13:14:24.010000"],["2024-07-24T13:14:25.010000"],["2024-07-24T13:14:26.010000"],["2024-07-24T13:14:27.010000"],["2024-07-24T13:14:28.010000"],["2024-07-24T13:14:29.010000"],["2024-07-24T13:14:30.010000"],["2024-07-24T13:14:31.010000"],["2024-07-24T13:14:32.010000"],["2024-07-24T13:14:33.010000"],["2024-07-24T13:14:34.010000"],["2024-07-24T13:14:35.010000"],["2024-07-24T13:14:36.010000"],["2024-07-24T13:14:37.010000"],["2024-07-24T13:14:38.010000"],["2024-07-24T13:14:39.010000"],["2024-07-24T13:14:40.010000"],["2024-07-24T13:14:41.010000"],["2024-07-24T13:14:42.010000"],["2024-07-24T13:14:43.010000"],["2024-07-24T13:14:44.010000"],["2024-07-24T13:14:45.010000"],["2024-07-24T13:14:46.010000"],["2024-07-24T13:14:47.010000"],["2024-07-24T13:14:48.010000"],["2024-07-24T13:14:49.010000"],["2024-07-24T13:14:50.010000"],["2024-07-24T13:14:51.010000"],["2024-07-24T13:14:52.010000"],["2024-07-24T13:14:53.010000"],["2024-07-24T13:14:54.010000"],["2024-07-24T13:14:55.010000"],["2024-07-24T13:14:56.010000"],["2024-07-24T13:14:57.010000"],["2024-07-24T13:14:58.010000"],["2024-07-24T13:14:59.010000"],["2024-07-24T13:15:00.010000"],["2024-07-24T13:15:01.010000"],["2024-07-24T13:15:02.010000"],["2024-07-24T13:15:03.010000"],["2024-07-24T13:15:04.010000"],["2024-07-24T13:15:05.010000"],["2024-07-24T13:15:06.010000"],["2024-07-24T13:15:07.010000"],["2024-07-24T13:15:08.010000"],["2024-07-24T13:15:09.010000"],["2024-07-24T13:15:10.010000"],["2024-07-24T13:15:11.010000"],["2024-07-24T13:15:12.010000"],["2024-07-24T13:15:13.010000"],["2024-07-24T13:15:14.010000"],["2024-07-24T13:15:15.010000"],["2024-07-24T13:15:16.010000"],["2024-07-24T13:15:17.010000"],["2024-07-24T13:15:18.010000"],["2024-07-24T13:15:19.010000"],["2024-07-24T13:15:20.010000"],["2024-07-24T13:15:21.010000"],["2024-07-24T13:15:22.010000"],["2024-07-24T13:15:23.010000"],["2024-07-24T13:15:24.010000"],["2024-07-24T13:15:25.010000"],["2024-07-24T13:15:26.010000"],["2024-07-24T13:15:27.010000"],["2024-07-24T13:15:28.010000"],["2024-07-24T13:15:29.010000"],["2024-07-24T13:15:30.010000"],["2024-07-24T13:15:31.010000"],["2024-07-24T13:15:32.010000"],["2024-07-24T13:15:33.010000"],["2024-07-24T13:15:34.010000"],["2024-07-24T13:15:35.010000"],["2024-07-24T13:15:36.010000"],["2024-07-24T13:15:37.010000"],["2024-07-24T13:15:38.010000"],["2024-07-24T13:15:39.010000"],["2024-07-24T13:15:40.010000"],["2024-07-24T13:15:41.010000"],["2024-07-24T13:15:42.010000"],["2024-07-24T13:15:43.010000"],["2024-07-24T13:15:44.010000"],["2024-07-24T13:15:45.010000"],["2024-07-24T13:15:46.010000"],["2024-07-24T13:15:47.010000"],["2024-07-24T13:15:48.010000"],["2024-07-24T13:15:49.010000"],["2024-07-24T13:15:50.010000"],["2024-07-24T13:15:51.010000"],["2024-07-24T13:15:52.010000"],["2024-07-24T13:15:53.010000"],["2024-07-24T13:15:54.010000"],["2024-07-24T13:15:55.010000"],["2024-07-24T13:15:56.010000"],["2024-07-24T13:15:57.010000"],["2024-07-24T13:15:58.010000"],["2024-07-24T13:15:59.010000"],["2024-07-24T13:16:00.010000"],["2024-07-24T13:16:01.010000"],["2024-07-24T13:16:02.010000"],["2024-07-24T13:16:03.010000"],["2024-07-24T13:16:04.010000"],["2024-07-24T13:16:05.010000"],["2024-07-24T13:16:06.010000"],["2024-07-24T13:16:07.010000"],["2024-07-24T13:16:08.010000"],["2024-07-24T13:16:09.010000"],["2024-07-24T13:16:10.010000"],["2024-07-24T13:16:11.010000"],["2024-07-24T13:16:12.010000"],["2024-07-24T13:16:13.010000"],["2024-07-24T13:16:14.010000"],["2024-07-24T13:16:15.010000"],["2024-07-24T13:16:16.010000"],["2024-07-24T13:16:17.010000"],["2024-07-24T13:16:18.010000"],["2024-07-24T13:16:19.010000"],["2024-07-24T13:16:20.010000"],["2024-07-24T13:16:21.010000"],["2024-07-24T13:16:22.010000"],["2024-07-24T13:16:23.010000"],["2024-07-24T13:16:24.010000"],["2024-07-24T13:16:25.010000"],["2024-07-24T13:16:26.010000"],["2024-07-24T13:16:27.010000"],["2024-07-24T13:16:28.010000"],["2024-07-24T13:16:29.010000"],["2024-07-24T13:16:30.010000"],["2024-07-24T13:16:31.010000"],["2024-07-24T13:16:32.010000"],["2024-07-24T13:16:33.010000"],["2024-07-24T13:16:34.010000"],["2024-07-24T13:16:35.010000"],["2024-07-24T13:16:36.010000"],["2024-07-24T13:16:37.010000"],["2024-07-24T13:16:38.010000"],["2024-07-24T13:16:39.010000"],["2024-07-24T13:16:40.010000"],["2024-07-24T13:16:41.010000"],["2024-07-24T13:16:42.010000"],["2024-07-24T13:16:43.010000"],["2024-07-24T13:16:44.010000"],["2024-07-24T13:16:45.010000"],["2024-07-24T13:16:46.010000"],["2024-07-24T13:16:47.010000"],["2024-07-24T13:16:48.010000"],["2024-07-24T13:16:49.010000"],["2024-07-24T13:16:50.010000"],["2024-07-24T13:16:51.010000"],["2024-07-24T13:16:52.010000"],["2024-07-24T13:16:53.010000"],["2024-07-24T13:16:54.010000"],["2024-07-24T13:16:55.010000"],["2024-07-24T13:16:56.010000"],["2024-07-24T13:16:57.010000"],["2024-07-24T13:16:58.010000"],["2024-07-24T13:16:59.010000"],["2024-07-24T13:17:00.010000"],["2024-07-24T13:17:01.010000"],["2024-07-24T13:17:02.010000"],["2024-07-24T13:17:03.010000"],["2024-07-24T13:17:04.010000"],["2024-07-24T13:17:05.010000"],["2024-07-24T13:17:06.010000"],["2024-07-24T13:17:07.010000"],["2024-07-24T13:17:08.010000"],["2024-07-24T13:17:09.010000"],["2024-07-24T13:17:10.010000"],["2024-07-24T13:17:11.010000"],["2024-07-24T13:17:12.010000"],["2024-07-24T13:17:13.010000"],["2024-07-24T13:17:14.010000"],["2024-07-24T13:17:15.010000"],["2024-07-24T13:17:16.010000"],["2024-07-24T13:17:17.010000"],["2024-07-24T13:17:18.010000"],["2024-07-24T13:17:19.010000"],["2024-07-24T13:17:20.010000"],["2024-07-24T13:17:21.010000"],["2024-07-24T13:17:22.010000"],["2024-07-24T13:17:23.010000"],["2024-07-24T13:17:24.010000"],["2024-07-24T13:17:25.010000"],["2024-07-24T13:17:26.010000"],["2024-07-24T13:17:27.010000"],["2024-07-24T13:17:28.010000"],["2024-07-24T13:17:29.010000"],["2024-07-24T13:17:30.010000"],["2024-07-24T13:17:31.010000"],["2024-07-24T13:17:32.010000"],["2024-07-24T13:17:33.010000"],["2024-07-24T13:17:34.010000"],["2024-07-24T13:17:35.010000"],["2024-07-24T13:17:36.010000"],["2024-07-24T13:17:37.010000"],["2024-07-24T13:17:38.010000"],["2024-07-24T13:17:39.010000"],["2024-07-24T13:17:40.010000"],["2024-07-24T13:17:41.010000"],["2024-07-24T13:17:42.010000"],["2024-07-24T13:17:43.010000"],["2024-07-24T13:17:44.010000"],["2024-07-24T13:17:45.010000"],["2024-07-24T13:17:46.010000"],["2024-07-24T13:17:47.010000"],["2024-07-24T13:17:48.010000"],["2024-07-24T13:17:49.010000"],["2024-07-24T13:17:50.010000"],["2024-07-24T13:17:51.010000"],["2024-07-24T13:17:52.010000"],["2024-07-24T13:17:53.010000"],["2024-07-24T13:17:54.010000"],["2024-07-24T13:17:55.010000"],["2024-07-24T13:17:56.010000"],["2024-07-24T13:17:57.010000"],["2024-07-24T13:17:58.010000"],["2024-07-24T13:17:59.010000"],["2024-07-24T13:18:00.010000"],["2024-07-24T13:18:01.010000"],["2024-07-24T13:18:02.010000"],["2024-07-24T13:18:03.010000"],["2024-07-24T13:18:04.010000"],["2024-07-24T13:18:05.010000"],["2024-07-24T13:18:06.010000"],["2024-07-24T13:18:07.010000"],["2024-07-24T13:18:08.010000"],["2024-07-24T13:18:09.010000"],["2024-07-24T13:18:10.010000"],["2024-07-24T13:18:11.010000"],["2024-07-24T13:18:12.010000"],["2024-07-24T13:18:13.010000"],["2024-07-24T13:18:14.010000"],["2024-07-24T13:18:15.010000"],["2024-07-24T13:18:16.010000"],["2024-07-24T13:18:17.010000"],["2024-07-24T13:18:18.010000"],["2024-07-24T13:18:19.010000"],["2024-07-24T13:18:20.010000"],["2024-07-24T13:18:21.010000"],["2024-07-24T13:18:22.010000"],["2024-07-24T13:18:23.010000"],["2024-07-24T13:18:24.010000"],["2024-07-24T13:18:25.010000"],["2024-07-24T13:18:26.010000"],["2024-07-24T13:18:27.010000"],["2024-07-24T13:18:28.010000"],["2024-07-24T13:18:29.010000"],["2024-07-24T13:18:30.010000"],["2024-07-24T13:18:31.010000"],["2024-07-24T13:18:32.010000"],["2024-07-24T13:18:33.010000"],["2024-07-24T13:18:34.010000"],["2024-07-24T13:18:35.010000"],["2024-07-24T13:18:36.010000"],["2024-07-24T13:18:37.010000"],["2024-07-24T13:18:38.010000"],["2024-07-24T13:18:39.010000"],["2024-07-24T13:18:40.010000"],["2024-07-24T13:18:41.010000"],["2024-07-24T13:18:42.010000"],["2024-07-24T13:18:43.010000"],["2024-07-24T13:18:44.010000"],["2024-07-24T13:18:45.010000"],["2024-07-24T13:18:46.010000"],["2024-07-24T13:18:47.010000"],["2024-07-24T13:18:48.010000"],["2024-07-24T13:18:49.010000"],["2024-07-24T13:18:50.010000"],["2024-07-24T13:18:51.010000"],["2024-07-24T13:18:52.010000"],["2024-07-24T13:18:53.010000"],["2024-07-24T13:18:54.010000"],["2024-07-24T13:18:55.010000"],["2024-07-24T13:18:56.010000"],["2024-07-24T13:18:57.010000"],["2024-07-24T13:18:58.010000"],["2024-07-24T13:18:59.010000"],["2024-07-24T13:19:00.010000"],["2024-07-24T13:19:01.010000"],["2024-07-24T13:19:02.010000"],["2024-07-24T13:19:03.010000"],["2024-07-24T13:19:04.010000"],["2024-07-24T13:19:05.010000"],["2024-07-24T13:19:06.010000"],["2024-07-24T13:19:07.010000"],["2024-07-24T13:19:08.010000"],["2024-07-24T13:19:09.010000"],["2024-07-24T13:19:10.010000"],["2024-07-24T13:19:11.010000"],["2024-07-24T13:19:12.010000"],["2024-07-24T13:19:13.010000"],["2024-07-24T13:19:14.010000"],["2024-07-24T13:19:15.010000"],["2024-07-24T13:19:16.010000"],["2024-07-24T13:19:17.010000"],["2024-07-24T13:19:18.010000"],["2024-07-24T13:19:19.010000"],["2024-07-24T13:19:20.010000"],["2024-07-24T13:19:21.010000"],["2024-07-24T13:19:22.010000"],["2024-07-24T13:19:23.010000"],["2024-07-24T13:19:24.010000"],["2024-07-24T13:19:25.010000"],["2024-07-24T13:19:26.010000"],["2024-07-24T13:19:27.010000"],["2024-07-24T13:19:28.010000"],["2024-07-24T13:19:29.010000"],["2024-07-24T13:19:30.010000"],["2024-07-24T13:19:31.010000"],["2024-07-24T13:19:32.010000"],["2024-07-24T13:19:33.010000"],["2024-07-24T13:19:34.010000"],["2024-07-24T13:19:35.010000"],["2024-07-24T13:19:36.010000"],["2024-07-24T13:19:37.010000"],["2024-07-24T13:19:38.010000"],["2024-07-24T13:19:39.010000"],["2024-07-24T13:19:40.010000"],["2024-07-24T13:19:41.010000"],["2024-07-24T13:19:42.010000"],["2024-07-24T13:19:43.010000"],["2024-07-24T13:19:44.010000"],["2024-07-24T13:19:45.010000"],["2024-07-24T13:19:46.010000"],["2024-07-24T13:19:47.010000"],["2024-07-24T13:19:48.010000"],["2024-07-24T13:19:49.010000"],["2024-07-24T13:19:50.010000"],["2024-07-24T13:19:51.010000"],["2024-07-24T13:19:52.010000"],["2024-07-24T13:19:53.010000"],["2024-07-24T13:19:54.010000"],["2024-07-24T13:19:55.010000"],["2024-07-24T13:19:56.010000"],["2024-07-24T13:19:57.010000"],["2024-07-24T13:19:58.010000"],["2024-07-24T13:19:59.010000"],["2024-07-24T13:20:00.010000"],["2024-07-24T13:20:01.010000"],["2024-07-24T13:20:02.010000"],["2024-07-24T13:20:03.010000"],["2024-07-24T13:20:04.010000"],["2024-07-24T13:20:05.010000"],["2024-07-24T13:20:06.010000"],["2024-07-24T13:20:07.010000"],["2024-07-24T13:20:08.010000"],["2024-07-24T13:20:09.010000"],["2024-07-24T13:20:10.010000"],["2024-07-24T13:20:11.010000"],["2024-07-24T13:20:12.010000"],["2024-07-24T13:20:13.010000"],["2024-07-24T13:20:14.010000"],["2024-07-24T13:20:15.010000"],["2024-07-24T13:20:16.010000"],["2024-07-24T13:20:17.010000"],["2024-07-24T13:20:18.010000"],["2024-07-24T13:20:19.010000"],["2024-07-24T13:20:20.010000"],["2024-07-24T13:20:21.010000"],["2024-07-24T13:20:22.010000"],["2024-07-24T13:20:23.010000"],["2024-07-24T13:20:24.010000"],["2024-07-24T13:20:25.010000"],["2024-07-24T13:20:26.010000"],["2024-07-24T13:20:27.010000"],["2024-07-24T13:20:28.010000"],["2024-07-24T13:20:29.010000"],["2024-07-24T13:20:30.010000"],["2024-07-24T13:20:31.010000"],["2024-07-24T13:20:32.010000"],["2024-07-24T13:20:33.010000"],["2024-07-24T13:20:34.010000"],["2024-07-24T13:20:35.010000"],["2024-07-24T13:20:36.010000"],["2024-07-24T13:20:37.010000"],["2024-07-24T13:20:38.010000"],["2024-07-24T13:20:39.010000"],["2024-07-24T13:20:40.010000"],["2024-07-24T13:20:41.010000"],["2024-07-24T13:20:42.010000"],["2024-07-24T13:20:43.010000"],["2024-07-24T13:20:44.010000"],["2024-07-24T13:20:45.010000"],["2024-07-24T13:20:46.010000"],["2024-07-24T13:20:47.010000"],["2024-07-24T13:20:48.010000"],["2024-07-24T13:20:49.010000"],["2024-07-24T13:20:50.010000"],["2024-07-24T13:20:51.010000"],["2024-07-24T13:20:52.010000"],["2024-07-24T13:20:53.010000"],["2024-07-24T13:20:54.010000"],["2024-07-24T13:20:55.010000"],["2024-07-24T13:20:56.010000"],["2024-07-24T13:20:57.010000"],["2024-07-24T13:20:58.010000"],["2024-07-24T13:20:59.010000"],["2024-07-24T13:21:00.010000"],["2024-07-24T13:21:01.010000"],["2024-07-24T13:21:02.010000"],["2024-07-24T13:21:03.010000"],["2024-07-24T13:21:04.010000"],["2024-07-24T13:21:05.010000"],["2024-07-24T13:21:06.010000"],["2024-07-24T13:21:07.010000"],["2024-07-24T13:21:08.010000"],["2024-07-24T13:21:09.010000"],["2024-07-24T13:21:10.010000"],["2024-07-24T13:21:11.010000"],["2024-07-24T13:21:12.010000"],["2024-07-24T13:21:13.010000"],["2024-07-24T13:21:14.010000"],["2024-07-24T13:21:15.010000"],["2024-07-24T13:21:16.010000"],["2024-07-24T13:21:17.010000"],["2024-07-24T13:21:18.010000"],["2024-07-24T13:21:19.010000"],["2024-07-24T13:21:20.010000"],["2024-07-24T13:21:21.010000"],["2024-07-24T13:21:22.010000"],["2024-07-24T13:21:23.010000"],["2024-07-24T13:21:24.010000"],["2024-07-24T13:21:25.010000"],["2024-07-24T13:21:26.010000"],["2024-07-24T13:21:27.010000"],["2024-07-24T13:21:28.010000"],["2024-07-24T13:21:29.010000"],["2024-07-24T13:21:30.010000"],["2024-07-24T13:21:31.010000"],["2024-07-24T13:21:32.010000"],["2024-07-24T13:21:33.010000"],["2024-07-24T13:21:34.010000"],["2024-07-24T13:21:35.010000"],["2024-07-24T13:21:36.010000"],["2024-07-24T13:21:37.010000"],["2024-07-24T13:21:38.010000"],["2024-07-24T13:21:39.010000"],["2024-07-24T13:21:40.010000"],["2024-07-24T13:21:41.010000"],["2024-07-24T13:21:42.010000"],["2024-07-24T13:21:43.010000"],["2024-07-24T13:21:44.010000"],["2024-07-24T13:21:45.010000"],["2024-07-24T13:21:46.010000"],["2024-07-24T13:21:47.010000"],["2024-07-24T13:21:48.010000"],["2024-07-24T13:21:49.010000"],["2024-07-24T13:21:50.010000"],["2024-07-24T13:21:51.010000"],["2024-07-24T13:21:52.010000"],["2024-07-24T13:21:53.010000"],["2024-07-24T13:21:54.010000"],["2024-07-24T13:21:55.010000"],["2024-07-24T13:21:56.010000"],["2024-07-24T13:21:57.010000"],["2024-07-24T13:21:58.010000"],["2024-07-24T13:21:59.010000"],["2024-07-24T13:22:00.010000"],["2024-07-24T13:22:01.010000"],["2024-07-24T13:22:02.010000"],["2024-07-24T13:22:03.010000"],["2024-07-24T13:22:04.010000"],["2024-07-24T13:22:05.010000"],["2024-07-24T13:22:06.010000"],["2024-07-24T13:22:07.010000"],["2024-07-24T13:22:08.010000"],["2024-07-24T13:22:09.010000"],["2024-07-24T13:22:10.010000"],["2024-07-24T13:22:11.010000"],["2024-07-24T13:22:12.010000"],["2024-07-24T13:22:13.010000"],["2024-07-24T13:22:14.010000"],["2024-07-24T13:22:15.010000"],["2024-07-24T13:22:16.010000"],["2024-07-24T13:22:17.010000"],["2024-07-24T13:22:18.010000"],["2024-07-24T13:22:19.010000"],["2024-07-24T13:22:20.010000"],["2024-07-24T13:22:21.010000"],["2024-07-24T13:22:22.010000"],["2024-07-24T13:22:23.010000"],["2024-07-24T13:22:24.010000"],["2024-07-24T13:22:25.010000"],["2024-07-24T13:22:26.010000"],["2024-07-24T13:22:27.010000"],["2024-07-24T13:22:28.010000"],["2024-07-24T13:22:29.010000"],["2024-07-24T13:22:30.010000"],["2024-07-24T13:22:31.010000"],["2024-07-24T13:22:32.010000"],["2024-07-24T13:22:33.010000"],["2024-07-24T13:22:34.010000"],["2024-07-24T13:22:35.010000"],["2024-07-24T13:22:36.010000"],["2024-07-24T13:22:37.010000"],["2024-07-24T13:22:38.010000"],["2024-07-24T13:22:39.010000"],["2024-07-24T13:22:40.010000"],["2024-07-24T13:22:41.010000"],["2024-07-24T13:22:42.010000"],["2024-07-24T13:22:43.010000"],["2024-07-24T13:22:44.010000"],["2024-07-24T13:22:45.010000"],["2024-07-24T13:22:46.010000"],["2024-07-24T13:22:47.010000"],["2024-07-24T13:22:48.010000"],["2024-07-24T13:22:49.010000"],["2024-07-24T13:22:50.010000"],["2024-07-24T13:22:51.010000"],["2024-07-24T13:22:52.010000"],["2024-07-24T13:22:53.010000"],["2024-07-24T13:22:54.010000"],["2024-07-24T13:22:55.010000"],["2024-07-24T13:22:56.010000"],["2024-07-24T13:22:57.010000"],["2024-07-24T13:22:58.010000"],["2024-07-24T13:22:59.010000"],["2024-07-24T13:23:00.010000"],["2024-07-24T13:23:01.010000"],["2024-07-24T13:23:02.010000"],["2024-07-24T13:23:03.010000"],["2024-07-24T13:23:04.010000"],["2024-07-24T13:23:05.010000"],["2024-07-24T13:23:06.010000"],["2024-07-24T13:23:07.010000"],["2024-07-24T13:23:08.010000"],["2024-07-24T13:23:09.010000"],["2024-07-24T13:23:10.010000"],["2024-07-24T13:23:11.010000"],["2024-07-24T13:23:12.010000"],["2024-07-24T13:23:13.010000"],["2024-07-24T13:23:14.010000"],["2024-07-24T13:23:15.010000"],["2024-07-24T13:23:16.010000"],["2024-07-24T13:23:17.010000"],["2024-07-24T13:23:18.010000"],["2024-07-24T13:23:19.010000"],["2024-07-24T13:23:20.010000"],["2024-07-24T13:23:21.010000"],["2024-07-24T13:23:22.010000"],["2024-07-24T13:23:23.010000"],["2024-07-24T13:23:24.010000"],["2024-07-24T13:23:25.010000"],["2024-07-24T13:23:26.010000"],["2024-07-24T13:23:27.010000"],["2024-07-24T13:23:28.010000"],["2024-07-24T13:23:29.010000"],["2024-07-24T13:23:30.010000"],["2024-07-24T13:23:31.010000"],["2024-07-24T13:23:32.010000"],["2024-07-24T13:23:33.010000"],["2024-07-24T13:23:34.010000"],["2024-07-24T13:23:35.010000"],["2024-07-24T13:23:36.010000"],["2024-07-24T13:23:37.010000"],["2024-07-24T13:23:38.010000"],["2024-07-24T13:23:39.010000"],["2024-07-24T13:23:40.010000"],["2024-07-24T13:23:41.010000"],["2024-07-24T13:23:42.010000"],["2024-07-24T13:23:43.010000"],["2024-07-24T13:23:44.010000"],["2024-07-24T13:23:45.010000"],["2024-07-24T13:23:46.010000"],["2024-07-24T13:23:47.010000"],["2024-07-24T13:23:48.010000"],["2024-07-24T13:23:49.010000"],["2024-07-24T13:23:50.010000"],["2024-07-24T13:23:51.010000"],["2024-07-24T13:23:52.010000"],["2024-07-24T13:23:53.010000"],["2024-07-24T13:23:54.010000"],["2024-07-24T13:23:55.010000"],["2024-07-24T13:23:56.010000"],["2024-07-24T13:23:57.010000"],["2024-07-24T13:23:58.010000"],["2024-07-24T13:23:59.010000"],["2024-07-24T13:24:00.010000"],["2024-07-24T13:24:01.010000"],["2024-07-24T13:24:02.010000"],["2024-07-24T13:24:03.010000"],["2024-07-24T13:24:04.010000"],["2024-07-24T13:24:05.010000"],["2024-07-24T13:24:06.010000"],["2024-07-24T13:24:07.010000"],["2024-07-24T13:24:08.010000"],["2024-07-24T13:24:09.010000"],["2024-07-24T13:24:10.010000"],["2024-07-24T13:24:11.010000"],["2024-07-24T13:24:12.010000"],["2024-07-24T13:24:13.010000"],["2024-07-24T13:24:14.010000"],["2024-07-24T13:24:15.010000"],["2024-07-24T13:24:16.010000"],["2024-07-24T13:24:17.010000"],["2024-07-24T13:24:18.010000"],["2024-07-24T13:24:19.010000"],["2024-07-24T13:24:20.010000"],["2024-07-24T13:24:21.010000"],["2024-07-24T13:24:22.010000"],["2024-07-24T13:24:23.010000"],["2024-07-24T13:24:24.010000"],["2024-07-24T13:24:25.010000"],["2024-07-24T13:24:26.010000"],["2024-07-24T13:24:27.010000"],["2024-07-24T13:24:28.010000"],["2024-07-24T13:24:29.010000"],["2024-07-24T13:24:30.010000"],["2024-07-24T13:24:31.010000"],["2024-07-24T13:24:32.010000"],["2024-07-24T13:24:33.010000"],["2024-07-24T13:24:34.010000"],["2024-07-24T13:24:35.010000"],["2024-07-24T13:24:36.010000"],["2024-07-24T13:24:37.010000"],["2024-07-24T13:24:38.010000"],["2024-07-24T13:24:39.010000"],["2024-07-24T13:24:40.010000"],["2024-07-24T13:24:41.010000"],["2024-07-24T13:24:42.010000"],["2024-07-24T13:24:43.010000"],["2024-07-24T13:24:44.010000"],["2024-07-24T13:24:45.010000"],["2024-07-24T13:24:46.010000"],["2024-07-24T13:24:47.010000"],["2024-07-24T13:24:48.010000"],["2024-07-24T13:24:49.010000"],["2024-07-24T13:24:50.010000"],["2024-07-24T13:24:51.010000"],["2024-07-24T13:24:52.010000"],["2024-07-24T13:24:53.010000"],["2024-07-24T13:24:54.010000"],["2024-07-24T13:24:55.010000"],["2024-07-24T13:24:56.010000"],["2024-07-24T13:24:57.010000"],["2024-07-24T13:24:58.010000"],["2024-07-24T13:24:59.010000"],["2024-07-24T13:25:00.010000"],["2024-07-24T13:25:01.010000"],["2024-07-24T13:25:02.010000"],["2024-07-24T13:25:03.010000"],["2024-07-24T13:25:04.010000"],["2024-07-24T13:25:05.010000"],["2024-07-24T13:25:06.010000"],["2024-07-24T13:25:07.010000"],["2024-07-24T13:25:08.010000"],["2024-07-24T13:25:09.010000"],["2024-07-24T13:25:10.010000"],["2024-07-24T13:25:11.010000"],["2024-07-24T13:25:12.010000"],["2024-07-24T13:25:13.010000"],["2024-07-24T13:25:14.010000"],["2024-07-24T13:25:15.010000"],["2024-07-24T13:25:16.010000"],["2024-07-24T13:25:17.010000"],["2024-07-24T13:25:18.010000"],["2024-07-24T13:25:19.010000"],["2024-07-24T13:25:20.010000"],["2024-07-24T13:25:21.010000"],["2024-07-24T13:25:22.010000"],["2024-07-24T13:25:23.010000"],["2024-07-24T13:25:24.010000"],["2024-07-24T13:25:25.010000"],["2024-07-24T13:25:26.010000"],["2024-07-24T13:25:27.010000"],["2024-07-24T13:25:28.010000"],["2024-07-24T13:25:29.010000"],["2024-07-24T13:25:30.010000"],["2024-07-24T13:25:31.010000"],["2024-07-24T13:25:32.010000"],["2024-07-24T13:25:33.010000"],["2024-07-24T13:25:34.010000"],["2024-07-24T13:25:35.010000"],["2024-07-24T13:25:36.010000"],["2024-07-24T13:25:37.010000"],["2024-07-24T13:25:38.010000"],["2024-07-24T13:25:39.010000"],["2024-07-24T13:25:40.010000"],["2024-07-24T13:25:41.010000"],["2024-07-24T13:25:42.010000"],["2024-07-24T13:25:43.010000"],["2024-07-24T13:25:44.010000"],["2024-07-24T13:25:45.010000"],["2024-07-24T13:25:46.010000"],["2024-07-24T13:25:47.010000"],["2024-07-24T13:25:48.010000"],["2024-07-24T13:25:49.010000"],["2024-07-24T13:25:50.010000"],["2024-07-24T13:25:51.010000"],["2024-07-24T13:25:52.010000"],["2024-07-24T13:25:53.010000"],["2024-07-24T13:25:54.010000"],["2024-07-24T13:25:55.010000"],["2024-07-24T13:25:56.010000"],["2024-07-24T13:25:57.010000"],["2024-07-24T13:25:58.010000"],["2024-07-24T13:25:59.010000"],["2024-07-24T13:26:00.010000"],["2024-07-24T13:26:01.010000"],["2024-07-24T13:26:02.010000"],["2024-07-24T13:26:03.010000"],["2024-07-24T13:26:04.010000"],["2024-07-24T13:26:05.010000"],["2024-07-24T13:26:06.010000"],["2024-07-24T13:26:07.010000"],["2024-07-24T13:26:08.010000"],["2024-07-24T13:26:09.010000"],["2024-07-24T13:26:10.010000"],["2024-07-24T13:26:11.010000"],["2024-07-24T13:26:12.010000"],["2024-07-24T13:26:13.010000"],["2024-07-24T13:26:14.010000"],["2024-07-24T13:26:15.010000"],["2024-07-24T13:26:16.010000"],["2024-07-24T13:26:17.010000"],["2024-07-24T13:26:18.010000"],["2024-07-24T13:26:19.010000"],["2024-07-24T13:26:20.010000"],["2024-07-24T13:26:21.010000"],["2024-07-24T13:26:22.010000"],["2024-07-24T13:26:23.010000"],["2024-07-24T13:26:24.010000"],["2024-07-24T13:26:25.010000"],["2024-07-24T13:26:26.010000"],["2024-07-24T13:26:27.010000"],["2024-07-24T13:26:28.010000"],["2024-07-24T13:26:29.010000"],["2024-07-24T13:26:30.010000"],["2024-07-24T13:26:31.010000"],["2024-07-24T13:26:32.010000"],["2024-07-24T13:26:33.010000"],["2024-07-24T13:26:34.010000"],["2024-07-24T13:26:35.010000"],["2024-07-24T13:26:36.010000"],["2024-07-24T13:26:37.010000"],["2024-07-24T13:26:38.010000"],["2024-07-24T13:26:39.010000"],["2024-07-24T13:26:40.010000"],["2024-07-24T13:26:41.010000"],["2024-07-24T13:26:42.010000"],["2024-07-24T13:26:43.010000"],["2024-07-24T13:26:44.010000"],["2024-07-24T13:26:45.010000"],["2024-07-24T13:26:46.010000"],["2024-07-24T13:26:47.010000"],["2024-07-24T13:26:48.010000"],["2024-07-24T13:26:49.010000"],["2024-07-24T13:26:50.010000"],["2024-07-24T13:26:51.010000"],["2024-07-24T13:26:52.010000"],["2024-07-24T13:26:53.010000"],["2024-07-24T13:26:54.010000"],["2024-07-24T13:26:55.010000"],["2024-07-24T13:26:56.010000"],["2024-07-24T13:26:57.010000"],["2024-07-24T13:26:58.010000"],["2024-07-24T13:26:59.010000"],["2024-07-24T13:27:00.010000"],["2024-07-24T13:27:01.010000"],["2024-07-24T13:27:02.010000"],["2024-07-24T13:27:03.010000"],["2024-07-24T13:27:04.010000"],["2024-07-24T13:27:05.010000"],["2024-07-24T13:27:06.010000"],["2024-07-24T13:27:07.010000"],["2024-07-24T13:27:08.010000"],["2024-07-24T13:27:09.010000"],["2024-07-24T13:27:10.010000"],["2024-07-24T13:27:11.010000"],["2024-07-24T13:27:12.010000"],["2024-07-24T13:27:13.010000"],["2024-07-24T13:27:14.010000"],["2024-07-24T13:27:15.010000"],["2024-07-24T13:27:16.010000"],["2024-07-24T13:27:17.010000"],["2024-07-24T13:27:18.010000"],["2024-07-24T13:27:19.010000"],["2024-07-24T13:27:20.010000"],["2024-07-24T13:27:21.010000"],["2024-07-24T13:27:22.010000"],["2024-07-24T13:27:23.010000"],["2024-07-24T13:27:24.010000"],["2024-07-24T13:27:25.010000"],["2024-07-24T13:27:26.010000"],["2024-07-24T13:27:27.010000"],["2024-07-24T13:27:28.010000"],["2024-07-24T13:27:29.010000"],["2024-07-24T13:27:30.010000"],["2024-07-24T13:27:31.010000"],["2024-07-24T13:27:32.010000"],["2024-07-24T13:27:33.010000"],["2024-07-24T13:27:34.010000"],["2024-07-24T13:27:35.010000"],["2024-07-24T13:27:36.010000"],["2024-07-24T13:27:37.010000"],["2024-07-24T13:27:38.010000"],["2024-07-24T13:27:39.010000"],["2024-07-24T13:27:40.010000"],["2024-07-24T13:27:41.010000"],["2024-07-24T13:27:42.010000"],["2024-07-24T13:27:43.010000"],["2024-07-24T13:27:44.010000"],["2024-07-24T13:27:45.010000"],["2024-07-24T13:27:46.010000"],["2024-07-24T13:27:47.010000"],["2024-07-24T13:27:48.010000"],["2024-07-24T13:27:49.010000"],["2024-07-24T13:27:50.010000"],["2024-07-24T13:27:51.010000"],["2024-07-24T13:27:52.010000"],["2024-07-24T13:27:53.010000"],["2024-07-24T13:27:54.010000"],["2024-07-24T13:27:55.010000"],["2024-07-24T13:27:56.010000"],["2024-07-24T13:27:57.010000"],["2024-07-24T13:27:58.010000"],["2024-07-24T13:27:59.010000"],["2024-07-24T13:28:00.010000"],["2024-07-24T13:28:01.010000"],["2024-07-24T13:28:02.010000"],["2024-07-24T13:28:03.010000"],["2024-07-24T13:28:04.010000"],["2024-07-24T13:28:05.010000"],["2024-07-24T13:28:06.010000"],["2024-07-24T13:28:07.010000"],["2024-07-24T13:28:08.010000"],["2024-07-24T13:28:09.010000"],["2024-07-24T13:28:10.010000"],["2024-07-24T13:28:11.010000"],["2024-07-24T13:28:12.010000"],["2024-07-24T13:28:13.010000"],["2024-07-24T13:28:14.010000"],["2024-07-24T13:28:15.010000"],["2024-07-24T13:28:16.010000"],["2024-07-24T13:28:17.010000"],["2024-07-24T13:28:18.010000"],["2024-07-24T13:28:19.010000"],["2024-07-24T13:28:20.010000"],["2024-07-24T13:28:21.010000"],["2024-07-24T13:28:22.010000"],["2024-07-24T13:28:23.010000"],["2024-07-24T13:28:24.010000"],["2024-07-24T13:28:25.010000"],["2024-07-24T13:28:26.010000"],["2024-07-24T13:28:27.010000"],["2024-07-24T13:28:28.010000"],["2024-07-24T13:28:29.010000"],["2024-07-24T13:28:30.010000"],["2024-07-24T13:28:31.010000"],["2024-07-24T13:28:32.010000"],["2024-07-24T13:28:33.010000"],["2024-07-24T13:28:34.010000"],["2024-07-24T13:28:35.010000"],["2024-07-24T13:28:36.010000"],["2024-07-24T13:28:37.010000"],["2024-07-24T13:28:38.010000"],["2024-07-24T13:28:39.010000"],["2024-07-24T13:28:40.010000"],["2024-07-24T13:28:41.010000"],["2024-07-24T13:28:42.010000"],["2024-07-24T13:28:43.010000"],["2024-07-24T13:28:44.010000"],["2024-07-24T13:28:45.010000"],["2024-07-24T13:28:46.010000"],["2024-07-24T13:28:47.010000"],["2024-07-24T13:28:48.010000"],["2024-07-24T13:28:49.010000"],["2024-07-24T13:28:50.010000"],["2024-07-24T13:28:51.010000"],["2024-07-24T13:28:52.010000"],["2024-07-24T13:28:53.010000"],["2024-07-24T13:28:54.010000"],["2024-07-24T13:28:55.010000"],["2024-07-24T13:28:56.010000"],["2024-07-24T13:28:57.010000"],["2024-07-24T13:28:58.010000"],["2024-07-24T13:28:59.010000"],["2024-07-24T13:29:00.010000"],["2024-07-24T13:29:01.010000"],["2024-07-24T13:29:02.010000"],["2024-07-24T13:29:03.010000"],["2024-07-24T13:29:04.010000"],["2024-07-24T13:29:05.010000"],["2024-07-24T13:29:06.010000"],["2024-07-24T13:29:07.010000"],["2024-07-24T13:29:08.010000"],["2024-07-24T13:29:09.010000"],["2024-07-24T13:29:10.010000"],["2024-07-24T13:29:11.010000"],["2024-07-24T13:29:12.010000"],["2024-07-24T13:29:13.010000"],["2024-07-24T13:29:14.010000"],["2024-07-24T13:29:15.010000"],["2024-07-24T13:29:16.010000"],["2024-07-24T13:29:17.010000"],["2024-07-24T13:29:18.010000"],["2024-07-24T13:29:19.010000"],["2024-07-24T13:29:20.010000"],["2024-07-24T13:29:21.010000"],["2024-07-24T13:29:22.010000"],["2024-07-24T13:29:23.010000"],["2024-07-24T13:29:24.010000"],["2024-07-24T13:29:25.010000"],["2024-07-24T13:29:26.010000"],["2024-07-24T13:29:27.010000"],["2024-07-24T13:29:28.010000"],["2024-07-24T13:29:29.010000"],["2024-07-24T13:29:30.010000"],["2024-07-24T13:29:31.010000"],["2024-07-24T13:29:32.010000"],["2024-07-24T13:29:33.010000"],["2024-07-24T13:29:34.010000"],["2024-07-24T13:29:35.010000"],["2024-07-24T13:29:36.010000"],["2024-07-24T13:29:37.010000"],["2024-07-24T13:29:38.010000"],["2024-07-24T13:29:39.010000"],["2024-07-24T13:29:40.010000"],["2024-07-24T13:29:41.010000"],["2024-07-24T13:29:42.010000"],["2024-07-24T13:29:43.010000"],["2024-07-24T13:29:44.010000"],["2024-07-24T13:29:45.010000"],["2024-07-24T13:29:46.010000"],["2024-07-24T13:29:47.010000"],["2024-07-24T13:29:48.010000"],["2024-07-24T13:29:49.010000"],["2024-07-24T13:29:50.010000"],["2024-07-24T13:29:51.010000"],["2024-07-24T13:29:52.010000"],["2024-07-24T13:29:53.010000"],["2024-07-24T13:29:54.010000"],["2024-07-24T13:29:55.010000"],["2024-07-24T13:29:56.010000"],["2024-07-24T13:29:57.010000"],["2024-07-24T13:29:58.010000"],["2024-07-24T13:29:59.010000"],["2024-07-24T13:30:00.010000"],["2024-07-24T13:30:01.010000"],["2024-07-24T13:30:02.010000"],["2024-07-24T13:30:03.010000"],["2024-07-24T13:30:04.010000"],["2024-07-24T13:30:05.010000"],["2024-07-24T13:30:06.010000"],["2024-07-24T13:30:07.010000"],["2024-07-24T13:30:08.010000"],["2024-07-24T13:30:09.010000"],["2024-07-24T13:30:10.010000"],["2024-07-24T13:30:11.010000"],["2024-07-24T13:30:12.010000"],["2024-07-24T13:30:13.010000"],["2024-07-24T13:30:14.010000"],["2024-07-24T13:30:15.010000"],["2024-07-24T13:30:16.010000"],["2024-07-24T13:30:17.010000"],["2024-07-24T13:30:18.010000"],["2024-07-24T13:30:19.010000"],["2024-07-24T13:30:20.010000"],["2024-07-24T13:30:21.010000"],["2024-07-24T13:30:22.010000"],["2024-07-24T13:30:23.010000"],["2024-07-24T13:30:24.010000"],["2024-07-24T13:30:25.010000"],["2024-07-24T13:30:26.010000"],["2024-07-24T13:30:27.010000"],["2024-07-24T13:30:28.010000"],["2024-07-24T13:30:29.010000"],["2024-07-24T13:30:30.010000"],["2024-07-24T13:30:31.010000"],["2024-07-24T13:30:32.010000"],["2024-07-24T13:30:33.010000"],["2024-07-24T13:30:34.010000"],["2024-07-24T13:30:35.010000"],["2024-07-24T13:30:36.010000"],["2024-07-24T13:30:37.010000"],["2024-07-24T13:30:38.010000"],["2024-07-24T13:30:39.010000"],["2024-07-24T13:30:40.010000"],["2024-07-24T13:30:41.010000"],["2024-07-24T13:30:42.010000"],["2024-07-24T13:30:43.010000"],["2024-07-24T13:30:44.010000"],["2024-07-24T13:30:45.010000"],["2024-07-24T13:30:46.010000"],["2024-07-24T13:30:47.010000"],["2024-07-24T13:30:48.010000"],["2024-07-24T13:30:49.010000"],["2024-07-24T13:30:50.010000"],["2024-07-24T13:30:51.010000"],["2024-07-24T13:30:52.010000"],["2024-07-24T13:30:53.010000"],["2024-07-24T13:30:54.010000"],["2024-07-24T13:30:55.010000"],["2024-07-24T13:30:56.010000"],["2024-07-24T13:30:57.010000"],["2024-07-24T13:30:58.010000"],["2024-07-24T13:30:59.010000"],["2024-07-24T13:31:00.010000"],["2024-07-24T13:31:01.010000"],["2024-07-24T13:31:02.010000"],["2024-07-24T13:31:03.010000"],["2024-07-24T13:31:04.010000"],["2024-07-24T13:31:05.010000"],["2024-07-24T13:31:06.010000"],["2024-07-24T13:31:07.010000"],["2024-07-24T13:31:08.010000"],["2024-07-24T13:31:09.010000"],["2024-07-24T13:31:10.010000"],["2024-07-24T13:31:11.010000"],["2024-07-24T13:31:12.010000"],["2024-07-24T13:31:13.010000"],["2024-07-24T13:31:14.010000"],["2024-07-24T13:31:15.010000"],["2024-07-24T13:31:16.010000"],["2024-07-24T13:31:17.010000"],["2024-07-24T13:31:18.010000"],["2024-07-24T13:31:19.010000"],["2024-07-24T13:31:20.010000"],["2024-07-24T13:31:21.010000"],["2024-07-24T13:31:22.010000"],["2024-07-24T13:31:23.010000"],["2024-07-24T13:31:24.010000"],["2024-07-24T13:31:25.010000"],["2024-07-24T13:31:26.010000"],["2024-07-24T13:31:27.010000"],["2024-07-24T13:31:28.010000"],["2024-07-24T13:31:29.010000"],["2024-07-24T13:31:30.010000"],["2024-07-24T13:31:31.010000"],["2024-07-24T13:31:32.010000"],["2024-07-24T13:31:33.010000"],["2024-07-24T13:31:34.010000"],["2024-07-24T13:31:35.010000"],["2024-07-24T13:31:36.010000"],["2024-07-24T13:31:37.010000"],["2024-07-24T13:31:38.010000"],["2024-07-24T13:31:39.010000"],["2024-07-24T13:31:40.010000"],["2024-07-24T13:31:41.010000"],["2024-07-24T13:31:42.010000"],["2024-07-24T13:31:43.010000"],["2024-07-24T13:31:44.010000"],["2024-07-24T13:31:45.010000"],["2024-07-24T13:31:46.010000"],["2024-07-24T13:31:47.010000"],["2024-07-24T13:31:48.010000"],["2024-07-24T13:31:49.010000"],["2024-07-24T13:31:50.010000"],["2024-07-24T13:31:51.010000"],["2024-07-24T13:31:52.010000"],["2024-07-24T13:31:53.010000"],["2024-07-24T13:31:54.010000"],["2024-07-24T13:31:55.010000"],["2024-07-24T13:31:56.010000"],["2024-07-24T13:31:57.010000"],["2024-07-24T13:31:58.010000"],["2024-07-24T13:31:59.010000"],["2024-07-24T13:32:00.010000"],["2024-07-24T13:32:01.010000"],["2024-07-24T13:32:02.010000"],["2024-07-24T13:32:03.010000"],["2024-07-24T13:32:04.010000"],["2024-07-24T13:32:05.010000"],["2024-07-24T13:32:06.010000"],["2024-07-24T13:32:07.010000"],["2024-07-24T13:32:08.010000"],["2024-07-24T13:32:09.010000"],["2024-07-24T13:32:10.010000"],["2024-07-24T13:32:11.010000"],["2024-07-24T13:32:12.010000"],["2024-07-24T13:32:13.010000"],["2024-07-24T13:32:14.010000"],["2024-07-24T13:32:15.010000"],["2024-07-24T13:32:16.010000"],["2024-07-24T13:32:17.010000"],["2024-07-24T13:32:18.010000"],["2024-07-24T13:32:19.010000"],["2024-07-24T13:32:20.010000"],["2024-07-24T13:32:21.010000"],["2024-07-24T13:32:22.010000"],["2024-07-24T13:32:23.010000"],["2024-07-24T13:32:24.010000"],["2024-07-24T13:32:25.010000"],["2024-07-24T13:32:26.010000"],["2024-07-24T13:32:27.010000"],["2024-07-24T13:32:28.010000"],["2024-07-24T13:32:29.010000"],["2024-07-24T13:32:30.010000"],["2024-07-24T13:32:31.010000"],["2024-07-24T13:32:32.010000"],["2024-07-24T13:32:33.010000"],["2024-07-24T13:32:34.010000"],["2024-07-24T13:32:35.010000"],["2024-07-24T13:32:36.010000"],["2024-07-24T13:32:37.010000"],["2024-07-24T13:32:38.010000"],["2024-07-24T13:32:39.010000"],["2024-07-24T13:32:40.010000"],["2024-07-24T13:32:41.010000"],["2024-07-24T13:32:42.010000"],["2024-07-24T13:32:43.010000"],["2024-07-24T13:32:44.010000"],["2024-07-24T13:32:45.010000"],["2024-07-24T13:32:46.010000"],["2024-07-24T13:32:47.010000"],["2024-07-24T13:32:48.010000"],["2024-07-24T13:32:49.010000"],["2024-07-24T13:32:50.010000"],["2024-07-24T13:32:51.010000"],["2024-07-24T13:32:52.010000"],["2024-07-24T13:32:53.010000"],["2024-07-24T13:32:54.010000"],["2024-07-24T13:32:55.010000"],["2024-07-24T13:32:56.010000"],["2024-07-24T13:32:57.010000"],["2024-07-24T13:32:58.010000"],["2024-07-24T13:32:59.010000"],["2024-07-24T13:33:00.010000"],["2024-07-24T13:33:01.010000"],["2024-07-24T13:33:02.010000"],["2024-07-24T13:33:03.010000"],["2024-07-24T13:33:04.010000"],["2024-07-24T13:33:05.010000"],["2024-07-24T13:33:06.010000"],["2024-07-24T13:33:07.010000"],["2024-07-24T13:33:08.010000"],["2024-07-24T13:33:09.010000"],["2024-07-24T13:33:10.010000"],["2024-07-24T13:33:11.010000"],["2024-07-24T13:33:12.010000"],["2024-07-24T13:33:13.010000"],["2024-07-24T13:33:14.010000"],["2024-07-24T13:33:15.010000"],["2024-07-24T13:33:16.010000"],["2024-07-24T13:33:17.010000"],["2024-07-24T13:33:18.010000"],["2024-07-24T13:33:19.010000"],["2024-07-24T13:33:20.010000"],["2024-07-24T13:33:21.010000"],["2024-07-24T13:33:22.010000"],["2024-07-24T13:33:23.010000"],["2024-07-24T13:33:24.010000"],["2024-07-24T13:33:25.010000"],["2024-07-24T13:33:26.010000"],["2024-07-24T13:33:27.010000"],["2024-07-24T13:33:28.010000"],["2024-07-24T13:33:29.010000"],["2024-07-24T13:33:30.010000"],["2024-07-24T13:33:31.010000"],["2024-07-24T13:33:32.010000"],["2024-07-24T13:33:33.010000"],["2024-07-24T13:33:34.010000"],["2024-07-24T13:33:35.010000"],["2024-07-24T13:33:36.010000"],["2024-07-24T13:33:37.010000"],["2024-07-24T13:33:38.010000"],["2024-07-24T13:33:39.010000"],["2024-07-24T13:33:40.010000"],["2024-07-24T13:33:41.010000"],["2024-07-24T13:33:42.010000"],["2024-07-24T13:33:43.010000"],["2024-07-24T13:33:44.010000"],["2024-07-24T13:33:45.010000"],["2024-07-24T13:33:46.010000"],["2024-07-24T13:33:47.010000"],["2024-07-24T13:33:48.010000"],["2024-07-24T13:33:49.010000"],["2024-07-24T13:33:50.010000"],["2024-07-24T13:33:51.010000"],["2024-07-24T13:33:52.010000"],["2024-07-24T13:33:53.010000"],["2024-07-24T13:33:54.010000"],["2024-07-24T13:33:55.010000"],["2024-07-24T13:33:56.010000"],["2024-07-24T13:33:57.010000"],["2024-07-24T13:33:58.010000"],["2024-07-24T13:33:59.010000"],["2024-07-24T13:34:00.010000"],["2024-07-24T13:34:01.010000"],["2024-07-24T13:34:02.010000"],["2024-07-24T13:34:03.010000"],["2024-07-24T13:34:04.010000"],["2024-07-24T13:34:05.010000"],["2024-07-24T13:34:06.010000"],["2024-07-24T13:34:07.010000"],["2024-07-24T13:34:08.010000"],["2024-07-24T13:34:09.010000"],["2024-07-24T13:34:10.010000"],["2024-07-24T13:34:11.010000"],["2024-07-24T13:34:12.010000"],["2024-07-24T13:34:13.010000"],["2024-07-24T13:34:14.010000"],["2024-07-24T13:34:15.010000"],["2024-07-24T13:34:16.010000"],["2024-07-24T13:34:17.010000"],["2024-07-24T13:34:18.010000"],["2024-07-24T13:34:19.010000"],["2024-07-24T13:34:20.010000"],["2024-07-24T13:34:21.010000"],["2024-07-24T13:34:22.010000"],["2024-07-24T13:34:23.010000"],["2024-07-24T13:34:24.010000"],["2024-07-24T13:34:25.010000"],["2024-07-24T13:34:26.010000"],["2024-07-24T13:34:27.010000"],["2024-07-24T13:34:28.010000"],["2024-07-24T13:34:29.010000"],["2024-07-24T13:34:30.010000"],["2024-07-24T13:34:31.010000"],["2024-07-24T13:34:32.010000"],["2024-07-24T13:34:33.010000"],["2024-07-24T13:34:34.010000"],["2024-07-24T13:34:35.010000"],["2024-07-24T13:34:36.010000"],["2024-07-24T13:34:37.010000"],["2024-07-24T13:34:38.010000"],["2024-07-24T13:34:39.010000"],["2024-07-24T13:34:40.010000"],["2024-07-24T13:34:41.010000"],["2024-07-24T13:34:42.010000"],["2024-07-24T13:34:43.010000"],["2024-07-24T13:34:44.010000"],["2024-07-24T13:34:45.010000"],["2024-07-24T13:34:46.010000"],["2024-07-24T13:34:47.010000"],["2024-07-24T13:34:48.010000"],["2024-07-24T13:34:49.010000"],["2024-07-24T13:34:50.010000"],["2024-07-24T13:34:51.010000"],["2024-07-24T13:34:52.010000"],["2024-07-24T13:34:53.010000"],["2024-07-24T13:34:54.010000"],["2024-07-24T13:34:55.010000"],["2024-07-24T13:34:56.010000"],["2024-07-24T13:34:57.010000"],["2024-07-24T13:34:58.010000"],["2024-07-24T13:34:59.010000"],["2024-07-24T13:35:00.010000"],["2024-07-24T13:35:01.010000"],["2024-07-24T13:35:02.010000"],["2024-07-24T13:35:03.010000"],["2024-07-24T13:35:04.010000"],["2024-07-24T13:35:05.010000"],["2024-07-24T13:35:06.010000"],["2024-07-24T13:35:07.010000"],["2024-07-24T13:35:08.010000"],["2024-07-24T13:35:09.010000"],["2024-07-24T13:35:10.010000"],["2024-07-24T13:35:11.010000"],["2024-07-24T13:35:12.010000"],["2024-07-24T13:35:13.010000"],["2024-07-24T13:35:14.010000"],["2024-07-24T13:35:15.010000"],["2024-07-24T13:35:16.010000"],["2024-07-24T13:35:17.010000"],["2024-07-24T13:35:18.010000"],["2024-07-24T13:35:19.010000"],["2024-07-24T13:35:20.010000"],["2024-07-24T13:35:21.010000"],["2024-07-24T13:35:22.010000"],["2024-07-24T13:35:23.010000"],["2024-07-24T13:35:24.010000"],["2024-07-24T13:35:25.010000"],["2024-07-24T13:35:26.010000"],["2024-07-24T13:35:27.010000"],["2024-07-24T13:35:28.010000"],["2024-07-24T13:35:29.010000"],["2024-07-24T13:35:30.010000"],["2024-07-24T13:35:31.010000"],["2024-07-24T13:35:32.010000"],["2024-07-24T13:35:33.010000"],["2024-07-24T13:35:34.010000"],["2024-07-24T13:35:35.010000"],["2024-07-24T13:35:36.010000"],["2024-07-24T13:35:37.010000"],["2024-07-24T13:35:38.010000"],["2024-07-24T13:35:39.010000"],["2024-07-24T13:35:40.010000"],["2024-07-24T13:35:41.010000"],["2024-07-24T13:35:42.010000"],["2024-07-24T13:35:43.010000"],["2024-07-24T13:35:44.010000"],["2024-07-24T13:35:45.010000"],["2024-07-24T13:35:46.010000"],["2024-07-24T13:35:47.010000"],["2024-07-24T13:35:48.010000"],["2024-07-24T13:35:49.010000"],["2024-07-24T13:35:50.010000"],["2024-07-24T13:35:51.010000"],["2024-07-24T13:35:52.010000"],["2024-07-24T13:35:53.010000"],["2024-07-24T13:35:54.010000"],["2024-07-24T13:35:55.010000"],["2024-07-24T13:35:56.010000"],["2024-07-24T13:35:57.010000"],["2024-07-24T13:35:58.010000"],["2024-07-24T13:35:59.010000"],["2024-07-24T13:36:00.010000"],["2024-07-24T13:36:01.010000"],["2024-07-24T13:36:02.010000"],["2024-07-24T13:36:03.010000"],["2024-07-24T13:36:04.010000"],["2024-07-24T13:36:05.010000"],["2024-07-24T13:36:06.010000"],["2024-07-24T13:36:07.010000"],["2024-07-24T13:36:08.010000"],["2024-07-24T13:36:09.010000"],["2024-07-24T13:36:10.010000"],["2024-07-24T13:36:11.010000"],["2024-07-24T13:36:12.010000"],["2024-07-24T13:36:13.010000"],["2024-07-24T13:36:14.010000"],["2024-07-24T13:36:15.010000"],["2024-07-24T13:36:16.010000"],["2024-07-24T13:36:17.010000"],["2024-07-24T13:36:18.010000"],["2024-07-24T13:36:19.010000"],["2024-07-24T13:36:20.010000"],["2024-07-24T13:36:21.010000"],["2024-07-24T13:36:22.010000"],["2024-07-24T13:36:23.010000"],["2024-07-24T13:36:24.010000"],["2024-07-24T13:36:25.010000"],["2024-07-24T13:36:26.010000"],["2024-07-24T13:36:27.010000"],["2024-07-24T13:36:28.010000"],["2024-07-24T13:36:29.010000"],["2024-07-24T13:36:30.010000"],["2024-07-24T13:36:31.010000"],["2024-07-24T13:36:32.010000"],["2024-07-24T13:36:33.010000"],["2024-07-24T13:36:34.010000"],["2024-07-24T13:36:35.010000"],["2024-07-24T13:36:36.010000"],["2024-07-24T13:36:37.010000"],["2024-07-24T13:36:38.010000"],["2024-07-24T13:36:39.010000"],["2024-07-24T13:36:40.010000"],["2024-07-24T13:36:41.010000"],["2024-07-24T13:36:42.010000"],["2024-07-24T13:36:43.010000"],["2024-07-24T13:36:44.010000"],["2024-07-24T13:36:45.010000"],["2024-07-24T13:36:46.010000"],["2024-07-24T13:36:47.010000"],["2024-07-24T13:36:48.010000"],["2024-07-24T13:36:49.010000"],["2024-07-24T13:36:50.010000"],["2024-07-24T13:36:51.010000"],["2024-07-24T13:36:52.010000"],["2024-07-24T13:36:53.010000"],["2024-07-24T13:36:54.010000"],["2024-07-24T13:36:55.010000"],["2024-07-24T13:36:56.010000"],["2024-07-24T13:36:57.010000"],["2024-07-24T13:36:58.010000"],["2024-07-24T13:36:59.010000"],["2024-07-24T13:37:00.010000"],["2024-07-24T13:37:01.010000"],["2024-07-24T13:37:02.010000"],["2024-07-24T13:37:03.010000"],["2024-07-24T13:37:04.010000"],["2024-07-24T13:37:05.010000"],["2024-07-24T13:37:06.010000"],["2024-07-24T13:37:07.010000"],["2024-07-24T13:37:08.010000"],["2024-07-24T13:37:09.010000"],["2024-07-24T13:37:10.010000"],["2024-07-24T13:37:11.010000"],["2024-07-24T13:37:12.010000"],["2024-07-24T13:37:13.010000"],["2024-07-24T13:37:14.010000"],["2024-07-24T13:37:15.010000"],["2024-07-24T13:37:16.010000"],["2024-07-24T13:37:17.010000"],["2024-07-24T13:37:18.010000"],["2024-07-24T13:37:19.010000"],["2024-07-24T13:37:20.010000"],["2024-07-24T13:37:21.010000"],["2024-07-24T13:37:22.010000"],["2024-07-24T13:37:23.010000"],["2024-07-24T13:37:24.010000"],["2024-07-24T13:37:25.010000"],["2024-07-24T13:37:26.010000"],["2024-07-24T13:37:27.010000"],["2024-07-24T13:37:28.010000"],["2024-07-24T13:37:29.010000"],["2024-07-24T13:37:30.010000"],["2024-07-24T13:37:31.010000"],["2024-07-24T13:37:32.010000"],["2024-07-24T13:37:33.010000"],["2024-07-24T13:37:34.010000"],["2024-07-24T13:37:35.010000"],["2024-07-24T13:37:36.010000"],["2024-07-24T13:37:37.010000"],["2024-07-24T13:37:38.010000"],["2024-07-24T13:37:39.010000"],["2024-07-24T13:37:40.010000"],["2024-07-24T13:37:41.010000"],["2024-07-24T13:37:42.010000"],["2024-07-24T13:37:43.010000"],["2024-07-24T13:37:44.010000"],["2024-07-24T13:37:45.010000"],["2024-07-24T13:37:46.010000"],["2024-07-24T13:37:47.010000"],["2024-07-24T13:37:48.010000"],["2024-07-24T13:37:49.010000"],["2024-07-24T13:37:50.010000"],["2024-07-24T13:37:51.010000"],["2024-07-24T13:37:52.010000"],["2024-07-24T13:37:53.010000"],["2024-07-24T13:37:54.010000"],["2024-07-24T13:37:55.010000"],["2024-07-24T13:37:56.010000"],["2024-07-24T13:37:57.010000"],["2024-07-24T13:37:58.010000"],["2024-07-24T13:37:59.010000"],["2024-07-24T13:38:00.010000"],["2024-07-24T13:38:01.010000"],["2024-07-24T13:38:02.010000"],["2024-07-24T13:38:03.010000"],["2024-07-24T13:38:04.010000"],["2024-07-24T13:38:05.010000"],["2024-07-24T13:38:06.010000"],["2024-07-24T13:38:07.010000"],["2024-07-24T13:38:08.010000"],["2024-07-24T13:38:09.010000"],["2024-07-24T13:38:10.010000"],["2024-07-24T13:38:11.010000"],["2024-07-24T13:38:12.010000"],["2024-07-24T13:38:13.010000"],["2024-07-24T13:38:14.010000"],["2024-07-24T13:38:15.010000"],["2024-07-24T13:38:16.010000"],["2024-07-24T13:38:17.010000"],["2024-07-24T13:38:18.010000"],["2024-07-24T13:38:19.010000"],["2024-07-24T13:38:20.010000"],["2024-07-24T13:38:21.010000"],["2024-07-24T13:38:22.010000"],["2024-07-24T13:38:23.010000"],["2024-07-24T13:38:24.010000"],["2024-07-24T13:38:25.010000"],["2024-07-24T13:38:26.010000"],["2024-07-24T13:38:27.010000"],["2024-07-24T13:38:28.010000"],["2024-07-24T13:38:29.010000"],["2024-07-24T13:38:30.010000"],["2024-07-24T13:38:31.010000"],["2024-07-24T13:38:32.010000"],["2024-07-24T13:38:33.010000"],["2024-07-24T13:38:34.010000"],["2024-07-24T13:38:35.010000"],["2024-07-24T13:38:36.010000"],["2024-07-24T13:38:37.010000"],["2024-07-24T13:38:38.010000"],["2024-07-24T13:38:39.010000"],["2024-07-24T13:38:40.010000"],["2024-07-24T13:38:41.010000"],["2024-07-24T13:38:42.010000"],["2024-07-24T13:38:43.010000"],["2024-07-24T13:38:44.010000"],["2024-07-24T13:38:45.010000"],["2024-07-24T13:38:46.010000"],["2024-07-24T13:38:47.010000"],["2024-07-24T13:38:48.010000"],["2024-07-24T13:38:49.010000"],["2024-07-24T13:38:50.010000"],["2024-07-24T13:38:51.010000"],["2024-07-24T13:38:52.010000"],["2024-07-24T13:38:53.010000"],["2024-07-24T13:38:54.010000"],["2024-07-24T13:38:55.010000"],["2024-07-24T13:38:56.010000"],["2024-07-24T13:38:57.010000"],["2024-07-24T13:38:58.010000"],["2024-07-24T13:38:59.010000"],["2024-07-24T13:39:00.010000"],["2024-07-24T13:39:01.010000"],["2024-07-24T13:39:02.010000"],["2024-07-24T13:39:03.010000"],["2024-07-24T13:39:04.010000"],["2024-07-24T13:39:05.010000"],["2024-07-24T13:39:06.010000"],["2024-07-24T13:39:07.010000"],["2024-07-24T13:39:08.010000"],["2024-07-24T13:39:09.010000"],["2024-07-24T13:39:10.010000"],["2024-07-24T13:39:11.010000"],["2024-07-24T13:39:12.010000"],["2024-07-24T13:39:13.010000"],["2024-07-24T13:39:14.010000"],["2024-07-24T13:39:15.010000"],["2024-07-24T13:39:16.010000"],["2024-07-24T13:39:17.010000"],["2024-07-24T13:39:18.010000"],["2024-07-24T13:39:19.010000"],["2024-07-24T13:39:20.010000"],["2024-07-24T13:39:21.010000"],["2024-07-24T13:39:22.010000"],["2024-07-24T13:39:23.010000"],["2024-07-24T13:39:24.010000"],["2024-07-24T13:39:25.010000"],["2024-07-24T13:39:26.010000"],["2024-07-24T13:39:27.010000"],["2024-07-24T13:39:28.010000"],["2024-07-24T13:39:29.010000"],["2024-07-24T13:39:30.010000"],["2024-07-24T13:39:31.010000"],["2024-07-24T13:39:32.010000"],["2024-07-24T13:39:33.010000"],["2024-07-24T13:39:34.010000"],["2024-07-24T13:39:35.010000"],["2024-07-24T13:39:36.010000"],["2024-07-24T13:39:37.010000"],["2024-07-24T13:39:38.010000"],["2024-07-24T13:39:39.010000"],["2024-07-24T13:39:40.010000"],["2024-07-24T13:39:41.010000"],["2024-07-24T13:39:42.010000"],["2024-07-24T13:39:43.010000"],["2024-07-24T13:39:44.010000"],["2024-07-24T13:39:45.010000"],["2024-07-24T13:39:46.010000"],["2024-07-24T13:39:47.010000"],["2024-07-24T13:39:48.010000"],["2024-07-24T13:39:49.010000"],["2024-07-24T13:39:50.010000"],["2024-07-24T13:39:51.010000"],["2024-07-24T13:39:52.010000"],["2024-07-24T13:39:53.010000"],["2024-07-24T13:39:54.010000"],["2024-07-24T13:39:55.010000"],["2024-07-24T13:39:56.010000"],["2024-07-24T13:39:57.010000"],["2024-07-24T13:39:58.010000"],["2024-07-24T13:39:59.010000"],["2024-07-24T13:40:00.010000"],["2024-07-24T13:40:01.010000"],["2024-07-24T13:40:02.010000"],["2024-07-24T13:40:03.010000"],["2024-07-24T13:40:04.010000"],["2024-07-24T13:40:05.010000"],["2024-07-24T13:40:06.010000"],["2024-07-24T13:40:07.010000"],["2024-07-24T13:40:08.010000"],["2024-07-24T13:40:09.010000"],["2024-07-24T13:40:10.010000"],["2024-07-24T13:40:11.010000"],["2024-07-24T13:40:12.010000"],["2024-07-24T13:40:13.010000"],["2024-07-24T13:40:14.010000"],["2024-07-24T13:40:15.010000"],["2024-07-24T13:40:16.010000"],["2024-07-24T13:40:17.010000"],["2024-07-24T13:40:18.010000"],["2024-07-24T13:40:19.010000"],["2024-07-24T13:40:20.010000"],["2024-07-24T13:40:21.010000"],["2024-07-24T13:40:22.010000"],["2024-07-24T13:40:23.010000"],["2024-07-24T13:40:24.010000"],["2024-07-24T13:40:25.010000"],["2024-07-24T13:40:26.010000"],["2024-07-24T13:40:27.010000"],["2024-07-24T13:40:28.010000"],["2024-07-24T13:40:29.010000"],["2024-07-24T13:40:30.010000"],["2024-07-24T13:40:31.010000"],["2024-07-24T13:40:32.010000"],["2024-07-24T13:40:33.010000"],["2024-07-24T13:40:34.010000"],["2024-07-24T13:40:35.010000"],["2024-07-24T13:40:36.010000"],["2024-07-24T13:40:37.010000"],["2024-07-24T13:40:38.010000"],["2024-07-24T13:40:39.010000"],["2024-07-24T13:40:40.010000"],["2024-07-24T13:40:41.010000"],["2024-07-24T13:40:42.010000"],["2024-07-24T13:40:43.010000"],["2024-07-24T13:40:44.010000"],["2024-07-24T13:40:45.010000"],["2024-07-24T13:40:46.010000"],["2024-07-24T13:40:47.010000"],["2024-07-24T13:40:48.010000"],["2024-07-24T13:40:49.010000"],["2024-07-24T13:40:50.010000"],["2024-07-24T13:40:51.010000"],["2024-07-24T13:40:52.010000"],["2024-07-24T13:40:53.010000"],["2024-07-24T13:40:54.010000"],["2024-07-24T13:40:55.010000"],["2024-07-24T13:40:56.010000"],["2024-07-24T13:40:57.010000"],["2024-07-24T13:40:58.010000"],["2024-07-24T13:40:59.010000"],["2024-07-24T13:41:00.010000"],["2024-07-24T13:41:01.010000"],["2024-07-24T13:41:02.010000"],["2024-07-24T13:41:03.010000"],["2024-07-24T13:41:04.010000"],["2024-07-24T13:41:05.010000"],["2024-07-24T13:41:06.010000"],["2024-07-24T13:41:07.010000"],["2024-07-24T13:41:08.010000"],["2024-07-24T13:41:09.010000"],["2024-07-24T13:41:10.010000"],["2024-07-24T13:41:11.010000"],["2024-07-24T13:41:12.010000"],["2024-07-24T13:41:13.010000"],["2024-07-24T13:41:14.010000"],["2024-07-24T13:41:15.010000"],["2024-07-24T13:41:16.010000"],["2024-07-24T13:41:17.010000"],["2024-07-24T13:41:18.010000"],["2024-07-24T13:41:19.010000"],["2024-07-24T13:41:20.010000"],["2024-07-24T13:41:21.010000"],["2024-07-24T13:41:22.010000"],["2024-07-24T13:41:23.010000"],["2024-07-24T13:41:24.010000"],["2024-07-24T13:41:25.010000"],["2024-07-24T13:41:26.010000"],["2024-07-24T13:41:27.010000"],["2024-07-24T13:41:28.010000"],["2024-07-24T13:41:29.010000"],["2024-07-24T13:41:30.010000"],["2024-07-24T13:41:31.010000"],["2024-07-24T13:41:32.010000"],["2024-07-24T13:41:33.010000"],["2024-07-24T13:41:34.010000"],["2024-07-24T13:41:35.010000"],["2024-07-24T13:41:36.010000"],["2024-07-24T13:41:37.010000"],["2024-07-24T13:41:38.010000"],["2024-07-24T13:41:39.010000"],["2024-07-24T13:41:40.010000"],["2024-07-24T13:41:41.010000"],["2024-07-24T13:41:42.010000"],["2024-07-24T13:41:43.010000"],["2024-07-24T13:41:44.010000"],["2024-07-24T13:41:45.010000"],["2024-07-24T13:41:46.010000"],["2024-07-24T13:41:47.010000"],["2024-07-24T13:41:48.010000"],["2024-07-24T13:41:49.010000"],["2024-07-24T13:41:50.010000"],["2024-07-24T13:41:51.010000"],["2024-07-24T13:41:52.010000"],["2024-07-24T13:41:53.010000"],["2024-07-24T13:41:54.010000"],["2024-07-24T13:41:55.010000"],["2024-07-24T13:41:56.010000"],["2024-07-24T13:41:57.010000"],["2024-07-24T13:41:58.010000"],["2024-07-24T13:41:59.010000"],["2024-07-24T13:42:00.010000"],["2024-07-24T13:42:01.010000"],["2024-07-24T13:42:02.010000"],["2024-07-24T13:42:03.010000"],["2024-07-24T13:42:04.010000"],["2024-07-24T13:42:05.010000"],["2024-07-24T13:42:06.010000"],["2024-07-24T13:42:07.010000"],["2024-07-24T13:42:08.010000"],["2024-07-24T13:42:09.010000"],["2024-07-24T13:42:10.010000"],["2024-07-24T13:42:11.010000"],["2024-07-24T13:42:12.010000"],["2024-07-24T13:42:13.010000"],["2024-07-24T13:42:14.010000"],["2024-07-24T13:42:15.010000"],["2024-07-24T13:42:16.010000"],["2024-07-24T13:42:17.010000"],["2024-07-24T13:42:18.010000"],["2024-07-24T13:42:19.010000"],["2024-07-24T13:42:20.010000"],["2024-07-24T13:42:21.010000"],["2024-07-24T13:42:22.010000"],["2024-07-24T13:42:23.010000"],["2024-07-24T13:42:24.010000"],["2024-07-24T13:42:25.010000"],["2024-07-24T13:42:26.010000"],["2024-07-24T13:42:27.010000"],["2024-07-24T13:42:28.010000"],["2024-07-24T13:42:29.010000"],["2024-07-24T13:42:30.010000"],["2024-07-24T13:42:31.010000"],["2024-07-24T13:42:32.010000"],["2024-07-24T13:42:33.010000"],["2024-07-24T13:42:34.010000"],["2024-07-24T13:42:35.010000"],["2024-07-24T13:42:36.010000"],["2024-07-24T13:42:37.010000"],["2024-07-24T13:42:38.010000"],["2024-07-24T13:42:39.010000"],["2024-07-24T13:42:40.010000"],["2024-07-24T13:42:41.010000"],["2024-07-24T13:42:42.010000"],["2024-07-24T13:42:43.010000"],["2024-07-24T13:42:44.010000"],["2024-07-24T13:42:45.010000"],["2024-07-24T13:42:46.010000"],["2024-07-24T13:42:47.010000"],["2024-07-24T13:42:48.010000"],["2024-07-24T13:42:49.010000"],["2024-07-24T13:42:50.010000"],["2024-07-24T13:42:51.010000"],["2024-07-24T13:42:52.010000"],["2024-07-24T13:42:53.010000"],["2024-07-24T13:42:54.010000"],["2024-07-24T13:42:55.010000"],["2024-07-24T13:42:56.010000"],["2024-07-24T13:42:57.010000"],["2024-07-24T13:42:58.010000"],["2024-07-24T13:42:59.010000"],["2024-07-24T13:43:00.010000"],["2024-07-24T13:43:01.010000"],["2024-07-24T13:43:02.010000"],["2024-07-24T13:43:03.010000"],["2024-07-24T13:43:04.010000"],["2024-07-24T13:43:05.010000"],["2024-07-24T13:43:06.010000"],["2024-07-24T13:43:07.010000"],["2024-07-24T13:43:08.010000"],["2024-07-24T13:43:09.010000"],["2024-07-24T13:43:10.010000"],["2024-07-24T13:43:11.010000"],["2024-07-24T13:43:12.010000"],["2024-07-24T13:43:13.010000"],["2024-07-24T13:43:14.010000"],["2024-07-24T13:43:15.010000"],["2024-07-24T13:43:16.010000"],["2024-07-24T13:43:17.010000"],["2024-07-24T13:43:18.010000"],["2024-07-24T13:43:19.010000"],["2024-07-24T13:43:20.010000"],["2024-07-24T13:43:21.010000"],["2024-07-24T13:43:22.010000"],["2024-07-24T13:43:23.010000"],["2024-07-24T13:43:24.010000"],["2024-07-24T13:43:25.010000"],["2024-07-24T13:43:26.010000"],["2024-07-24T13:43:27.010000"],["2024-07-24T13:43:28.010000"],["2024-07-24T13:43:29.010000"],["2024-07-24T13:43:30.010000"],["2024-07-24T13:43:31.010000"],["2024-07-24T13:43:32.010000"],["2024-07-24T13:43:33.010000"],["2024-07-24T13:43:34.010000"],["2024-07-24T13:43:35.010000"],["2024-07-24T13:43:36.010000"],["2024-07-24T13:43:37.010000"],["2024-07-24T13:43:38.010000"],["2024-07-24T13:43:39.010000"],["2024-07-24T13:43:40.010000"],["2024-07-24T13:43:41.010000"],["2024-07-24T13:43:42.010000"],["2024-07-24T13:43:43.010000"],["2024-07-24T13:43:44.010000"],["2024-07-24T13:43:45.010000"],["2024-07-24T13:43:46.010000"],["2024-07-24T13:43:47.010000"],["2024-07-24T13:43:48.010000"],["2024-07-24T13:43:49.010000"],["2024-07-24T13:43:50.010000"],["2024-07-24T13:43:51.010000"],["2024-07-24T13:43:52.010000"],["2024-07-24T13:43:53.010000"],["2024-07-24T13:43:54.010000"],["2024-07-24T13:43:55.010000"],["2024-07-24T13:43:56.010000"],["2024-07-24T13:43:57.010000"],["2024-07-24T13:43:58.010000"],["2024-07-24T13:43:59.010000"],["2024-07-24T13:44:00.010000"],["2024-07-24T13:44:01.010000"],["2024-07-24T13:44:02.010000"],["2024-07-24T13:44:03.010000"],["2024-07-24T13:44:04.010000"],["2024-07-24T13:44:05.010000"],["2024-07-24T13:44:06.010000"],["2024-07-24T13:44:07.010000"],["2024-07-24T13:44:08.010000"],["2024-07-24T13:44:09.010000"],["2024-07-24T13:44:10.010000"],["2024-07-24T13:44:11.010000"],["2024-07-24T13:44:12.010000"],["2024-07-24T13:44:13.010000"],["2024-07-24T13:44:14.010000"],["2024-07-24T13:44:15.010000"],["2024-07-24T13:44:16.010000"],["2024-07-24T13:44:17.010000"],["2024-07-24T13:44:18.010000"],["2024-07-24T13:44:19.010000"],["2024-07-24T13:44:20.010000"],["2024-07-24T13:44:21.010000"],["2024-07-24T13:44:22.010000"],["2024-07-24T13:44:23.010000"],["2024-07-24T13:44:24.010000"],["2024-07-24T13:44:25.010000"],["2024-07-24T13:44:26.010000"],["2024-07-24T13:44:27.010000"],["2024-07-24T13:44:28.010000"],["2024-07-24T13:44:29.010000"],["2024-07-24T13:44:30.010000"],["2024-07-24T13:44:31.010000"],["2024-07-24T13:44:32.010000"],["2024-07-24T13:44:33.010000"],["2024-07-24T13:44:34.010000"],["2024-07-24T13:44:35.010000"],["2024-07-24T13:44:36.010000"],["2024-07-24T13:44:37.010000"],["2024-07-24T13:44:38.010000"],["2024-07-24T13:44:39.010000"],["2024-07-24T13:44:40.010000"],["2024-07-24T13:44:41.010000"],["2024-07-24T13:44:42.010000"],["2024-07-24T13:44:43.010000"],["2024-07-24T13:44:44.010000"],["2024-07-24T13:44:45.010000"],["2024-07-24T13:44:46.010000"],["2024-07-24T13:44:47.010000"],["2024-07-24T13:44:48.010000"],["2024-07-24T13:44:49.010000"],["2024-07-24T13:44:50.010000"],["2024-07-24T13:44:51.010000"],["2024-07-24T13:44:52.010000"],["2024-07-24T13:44:53.010000"],["2024-07-24T13:44:54.010000"],["2024-07-24T13:44:55.010000"],["2024-07-24T13:44:56.010000"],["2024-07-24T13:44:57.010000"],["2024-07-24T13:44:58.010000"],["2024-07-24T13:44:59.010000"],["2024-07-24T13:45:00.010000"],["2024-07-24T13:45:01.010000"],["2024-07-24T13:45:02.010000"],["2024-07-24T13:45:03.010000"],["2024-07-24T13:45:04.010000"],["2024-07-24T13:45:05.010000"],["2024-07-24T13:45:06.010000"],["2024-07-24T13:45:07.010000"],["2024-07-24T13:45:08.010000"],["2024-07-24T13:45:09.010000"],["2024-07-24T13:45:10.010000"],["2024-07-24T13:45:11.010000"],["2024-07-24T13:45:12.010000"],["2024-07-24T13:45:13.010000"],["2024-07-24T13:45:14.010000"],["2024-07-24T13:45:15.010000"],["2024-07-24T13:45:16.010000"],["2024-07-24T13:45:17.010000"],["2024-07-24T13:45:18.010000"],["2024-07-24T13:45:19.010000"],["2024-07-24T13:45:20.010000"],["2024-07-24T13:45:21.010000"],["2024-07-24T13:45:22.010000"],["2024-07-24T13:45:23.010000"],["2024-07-24T13:45:24.010000"],["2024-07-24T13:45:25.010000"],["2024-07-24T13:45:26.010000"],["2024-07-24T13:45:27.010000"],["2024-07-24T13:45:28.010000"],["2024-07-24T13:45:29.010000"],["2024-07-24T13:45:30.010000"],["2024-07-24T13:45:31.010000"],["2024-07-24T13:45:32.010000"],["2024-07-24T13:45:33.010000"],["2024-07-24T13:45:34.010000"],["2024-07-24T13:45:35.010000"],["2024-07-24T13:45:36.010000"],["2024-07-24T13:45:37.010000"],["2024-07-24T13:45:38.010000"],["2024-07-24T13:45:39.010000"],["2024-07-24T13:45:40.010000"],["2024-07-24T13:45:41.010000"],["2024-07-24T13:45:42.010000"],["2024-07-24T13:45:43.010000"],["2024-07-24T13:45:44.010000"],["2024-07-24T13:45:45.010000"],["2024-07-24T13:45:46.010000"],["2024-07-24T13:45:47.010000"],["2024-07-24T13:45:48.010000"],["2024-07-24T13:45:49.010000"],["2024-07-24T13:45:50.010000"],["2024-07-24T13:45:51.010000"],["2024-07-24T13:45:52.010000"],["2024-07-24T13:45:53.010000"],["2024-07-24T13:45:54.010000"],["2024-07-24T13:45:55.010000"],["2024-07-24T13:45:56.010000"],["2024-07-24T13:45:57.010000"],["2024-07-24T13:45:58.010000"],["2024-07-24T13:45:59.010000"],["2024-07-24T13:46:00.010000"],["2024-07-24T13:46:01.010000"],["2024-07-24T13:46:02.010000"],["2024-07-24T13:46:03.010000"],["2024-07-24T13:46:04.010000"],["2024-07-24T13:46:05.010000"],["2024-07-24T13:46:06.010000"],["2024-07-24T13:46:07.010000"],["2024-07-24T13:46:08.010000"],["2024-07-24T13:46:09.010000"],["2024-07-24T13:46:10.010000"],["2024-07-24T13:46:11.010000"],["2024-07-24T13:46:12.010000"],["2024-07-24T13:46:13.010000"],["2024-07-24T13:46:14.010000"],["2024-07-24T13:46:15.010000"],["2024-07-24T13:46:16.010000"],["2024-07-24T13:46:17.010000"],["2024-07-24T13:46:18.010000"],["2024-07-24T13:46:19.010000"],["2024-07-24T13:46:20.010000"],["2024-07-24T13:46:21.010000"],["2024-07-24T13:46:22.010000"],["2024-07-24T13:46:23.010000"],["2024-07-24T13:46:24.010000"],["2024-07-24T13:46:25.010000"],["2024-07-24T13:46:26.010000"],["2024-07-24T13:46:27.010000"],["2024-07-24T13:46:28.010000"],["2024-07-24T13:46:29.010000"],["2024-07-24T13:46:30.010000"],["2024-07-24T13:46:31.010000"],["2024-07-24T13:46:32.010000"],["2024-07-24T13:46:33.010000"],["2024-07-24T13:46:34.010000"],["2024-07-24T13:46:35.010000"],["2024-07-24T13:46:36.010000"],["2024-07-24T13:46:37.010000"],["2024-07-24T13:46:38.010000"],["2024-07-24T13:46:39.010000"],["2024-07-24T13:46:40.010000"],["2024-07-24T13:46:41.010000"],["2024-07-24T13:46:42.010000"],["2024-07-24T13:46:43.010000"],["2024-07-24T13:46:44.010000"],["2024-07-24T13:46:45.010000"],["2024-07-24T13:46:46.010000"],["2024-07-24T13:46:47.010000"],["2024-07-24T13:46:48.010000"],["2024-07-24T13:46:49.010000"],["2024-07-24T13:46:50.010000"],["2024-07-24T13:46:51.010000"],["2024-07-24T13:46:52.010000"],["2024-07-24T13:46:53.010000"],["2024-07-24T13:46:54.010000"],["2024-07-24T13:46:55.010000"],["2024-07-24T13:46:56.010000"],["2024-07-24T13:46:57.010000"],["2024-07-24T13:46:58.010000"],["2024-07-24T13:46:59.010000"],["2024-07-24T13:47:00.010000"],["2024-07-24T13:47:01.010000"],["2024-07-24T13:47:02.010000"],["2024-07-24T13:47:03.010000"],["2024-07-24T13:47:04.010000"],["2024-07-24T13:47:05.010000"],["2024-07-24T13:47:06.010000"],["2024-07-24T13:47:07.010000"],["2024-07-24T13:47:08.010000"],["2024-07-24T13:47:09.010000"],["2024-07-24T13:47:10.010000"],["2024-07-24T13:47:11.010000"],["2024-07-24T13:47:12.010000"],["2024-07-24T13:47:13.010000"],["2024-07-24T13:47:14.010000"],["2024-07-24T13:47:15.010000"],["2024-07-24T13:47:16.010000"],["2024-07-24T13:47:17.010000"],["2024-07-24T13:47:18.010000"],["2024-07-24T13:47:19.010000"],["2024-07-24T13:47:20.010000"],["2024-07-24T13:47:21.010000"],["2024-07-24T13:47:22.010000"],["2024-07-24T13:47:23.010000"],["2024-07-24T13:47:24.010000"],["2024-07-24T13:47:25.010000"],["2024-07-24T13:47:26.010000"],["2024-07-24T13:47:27.010000"],["2024-07-24T13:47:28.010000"],["2024-07-24T13:47:29.010000"],["2024-07-24T13:47:30.010000"],["2024-07-24T13:47:31.010000"],["2024-07-24T13:47:32.010000"],["2024-07-24T13:47:33.010000"],["2024-07-24T13:47:34.010000"],["2024-07-24T13:47:35.010000"],["2024-07-24T13:47:36.010000"],["2024-07-24T13:47:37.010000"],["2024-07-24T13:47:38.010000"],["2024-07-24T13:47:39.010000"],["2024-07-24T13:47:40.010000"],["2024-07-24T13:47:41.010000"],["2024-07-24T13:47:42.010000"],["2024-07-24T13:47:43.010000"],["2024-07-24T13:47:44.010000"],["2024-07-24T13:47:45.010000"],["2024-07-24T13:47:46.010000"],["2024-07-24T13:47:47.010000"],["2024-07-24T13:47:48.010000"],["2024-07-24T13:47:49.010000"],["2024-07-24T13:47:50.010000"],["2024-07-24T13:47:51.010000"],["2024-07-24T13:47:52.010000"],["2024-07-24T13:47:53.010000"],["2024-07-24T13:47:54.010000"],["2024-07-24T13:47:55.010000"],["2024-07-24T13:47:56.010000"],["2024-07-24T13:47:57.010000"],["2024-07-24T13:47:58.010000"],["2024-07-24T13:47:59.010000"],["2024-07-24T13:48:00.010000"],["2024-07-24T13:48:01.010000"],["2024-07-24T13:48:02.010000"],["2024-07-24T13:48:03.010000"],["2024-07-24T13:48:04.010000"],["2024-07-24T13:48:05.010000"],["2024-07-24T13:48:06.010000"],["2024-07-24T13:48:07.010000"],["2024-07-24T13:48:08.010000"],["2024-07-24T13:48:09.010000"],["2024-07-24T13:48:10.010000"],["2024-07-24T13:48:11.010000"],["2024-07-24T13:48:12.010000"],["2024-07-24T13:48:13.010000"],["2024-07-24T13:48:14.010000"],["2024-07-24T13:48:15.010000"],["2024-07-24T13:48:16.010000"],["2024-07-24T13:48:17.010000"],["2024-07-24T13:48:18.010000"],["2024-07-24T13:48:19.010000"],["2024-07-24T13:48:20.010000"],["2024-07-24T13:48:21.010000"],["2024-07-24T13:48:22.010000"],["2024-07-24T13:48:23.010000"],["2024-07-24T13:48:24.010000"],["2024-07-24T13:48:25.010000"],["2024-07-24T13:48:26.010000"],["2024-07-24T13:48:27.010000"],["2024-07-24T13:48:28.010000"],["2024-07-24T13:48:29.010000"],["2024-07-24T13:48:30.010000"],["2024-07-24T13:48:31.010000"],["2024-07-24T13:48:32.010000"],["2024-07-24T13:48:33.010000"],["2024-07-24T13:48:34.010000"],["2024-07-24T13:48:35.010000"],["2024-07-24T13:48:36.010000"],["2024-07-24T13:48:37.010000"],["2024-07-24T13:48:38.010000"],["2024-07-24T13:48:39.010000"],["2024-07-24T13:48:40.010000"],["2024-07-24T13:48:41.010000"],["2024-07-24T13:48:42.010000"],["2024-07-24T13:48:43.010000"],["2024-07-24T13:48:44.010000"],["2024-07-24T13:48:45.010000"],["2024-07-24T13:48:46.010000"],["2024-07-24T13:48:47.010000"],["2024-07-24T13:48:48.010000"],["2024-07-24T13:48:49.010000"],["2024-07-24T13:48:50.010000"],["2024-07-24T13:48:51.010000"],["2024-07-24T13:48:52.010000"],["2024-07-24T13:48:53.010000"],["2024-07-24T13:48:54.010000"],["2024-07-24T13:48:55.010000"],["2024-07-24T13:48:56.010000"],["2024-07-24T13:48:57.010000"],["2024-07-24T13:48:58.010000"],["2024-07-24T13:48:59.010000"],["2024-07-24T13:49:00.010000"],["2024-07-24T13:49:01.010000"],["2024-07-24T13:49:02.010000"],["2024-07-24T13:49:03.010000"],["2024-07-24T13:49:04.010000"],["2024-07-24T13:49:05.010000"],["2024-07-24T13:49:06.010000"],["2024-07-24T13:49:07.010000"],["2024-07-24T13:49:08.010000"],["2024-07-24T13:49:09.010000"],["2024-07-24T13:49:10.010000"],["2024-07-24T13:49:11.010000"],["2024-07-24T13:49:12.010000"],["2024-07-24T13:49:13.010000"],["2024-07-24T13:49:14.010000"],["2024-07-24T13:49:15.010000"],["2024-07-24T13:49:16.010000"],["2024-07-24T13:49:17.010000"],["2024-07-24T13:49:18.010000"],["2024-07-24T13:49:19.010000"],["2024-07-24T13:49:20.010000"],["2024-07-24T13:49:21.010000"],["2024-07-24T13:49:22.010000"],["2024-07-24T13:49:23.010000"],["2024-07-24T13:49:24.010000"],["2024-07-24T13:49:25.010000"],["2024-07-24T13:49:26.010000"],["2024-07-24T13:49:27.010000"],["2024-07-24T13:49:28.010000"],["2024-07-24T13:49:29.010000"],["2024-07-24T13:49:30.010000"],["2024-07-24T13:49:31.010000"],["2024-07-24T13:49:32.010000"],["2024-07-24T13:49:33.010000"],["2024-07-24T13:49:34.010000"],["2024-07-24T13:49:35.010000"],["2024-07-24T13:49:36.010000"],["2024-07-24T13:49:37.010000"],["2024-07-24T13:49:38.010000"],["2024-07-24T13:49:39.010000"],["2024-07-24T13:49:40.010000"],["2024-07-24T13:49:41.010000"],["2024-07-24T13:49:42.010000"],["2024-07-24T13:49:43.010000"],["2024-07-24T13:49:44.010000"],["2024-07-24T13:49:45.010000"],["2024-07-24T13:49:46.010000"],["2024-07-24T13:49:47.010000"],["2024-07-24T13:49:48.010000"],["2024-07-24T13:49:49.010000"],["2024-07-24T13:49:50.010000"],["2024-07-24T13:49:51.010000"],["2024-07-24T13:49:52.010000"],["2024-07-24T13:49:53.010000"],["2024-07-24T13:49:54.010000"],["2024-07-24T13:49:55.010000"],["2024-07-24T13:49:56.010000"],["2024-07-24T13:49:57.010000"],["2024-07-24T13:49:58.010000"],["2024-07-24T13:49:59.010000"],["2024-07-24T13:50:00.010000"],["2024-07-24T13:50:01.010000"],["2024-07-24T13:50:02.010000"],["2024-07-24T13:50:03.010000"],["2024-07-24T13:50:04.010000"],["2024-07-24T13:50:05.010000"],["2024-07-24T13:50:06.010000"],["2024-07-24T13:50:07.010000"],["2024-07-24T13:50:08.010000"],["2024-07-24T13:50:09.010000"],["2024-07-24T13:50:10.010000"],["2024-07-24T13:50:11.010000"],["2024-07-24T13:50:12.010000"],["2024-07-24T13:50:13.010000"],["2024-07-24T13:50:14.010000"],["2024-07-24T13:50:15.010000"],["2024-07-24T13:50:16.010000"],["2024-07-24T13:50:17.010000"],["2024-07-24T13:50:18.010000"],["2024-07-24T13:50:19.010000"],["2024-07-24T13:50:20.010000"],["2024-07-24T13:50:21.010000"],["2024-07-24T13:50:22.010000"],["2024-07-24T13:50:23.010000"],["2024-07-24T13:50:24.010000"],["2024-07-24T13:50:25.010000"],["2024-07-24T13:50:26.010000"],["2024-07-24T13:50:27.010000"],["2024-07-24T13:50:28.010000"],["2024-07-24T13:50:29.010000"],["2024-07-24T13:50:30.010000"],["2024-07-24T13:50:31.010000"],["2024-07-24T13:50:32.010000"],["2024-07-24T13:50:33.010000"],["2024-07-24T13:50:34.010000"],["2024-07-24T13:50:35.010000"],["2024-07-24T13:50:36.010000"],["2024-07-24T13:50:37.010000"],["2024-07-24T13:50:38.010000"],["2024-07-24T13:50:39.010000"],["2024-07-24T13:50:40.010000"],["2024-07-24T13:50:41.010000"],["2024-07-24T13:50:42.010000"],["2024-07-24T13:50:43.010000"],["2024-07-24T13:50:44.010000"],["2024-07-24T13:50:45.010000"],["2024-07-24T13:50:46.010000"],["2024-07-24T13:50:47.010000"],["2024-07-24T13:50:48.010000"],["2024-07-24T13:50:49.010000"],["2024-07-24T13:50:50.010000"],["2024-07-24T13:50:51.010000"],["2024-07-24T13:50:52.010000"],["2024-07-24T13:50:53.010000"],["2024-07-24T13:50:54.010000"],["2024-07-24T13:50:55.010000"],["2024-07-24T13:50:56.010000"],["2024-07-24T13:50:57.010000"],["2024-07-24T13:50:58.010000"],["2024-07-24T13:50:59.010000"],["2024-07-24T13:51:00.010000"],["2024-07-24T13:51:01.010000"],["2024-07-24T13:51:02.010000"],["2024-07-24T13:51:03.010000"],["2024-07-24T13:51:04.010000"],["2024-07-24T13:51:05.010000"],["2024-07-24T13:51:06.010000"],["2024-07-24T13:51:07.010000"],["2024-07-24T13:51:08.010000"],["2024-07-24T13:51:09.010000"],["2024-07-24T13:51:10.010000"],["2024-07-24T13:51:11.010000"],["2024-07-24T13:51:12.010000"],["2024-07-24T13:51:13.010000"],["2024-07-24T13:51:14.010000"],["2024-07-24T13:51:15.010000"],["2024-07-24T13:51:16.010000"],["2024-07-24T13:51:17.010000"],["2024-07-24T13:51:18.010000"],["2024-07-24T13:51:19.010000"],["2024-07-24T13:51:20.010000"],["2024-07-24T13:51:21.010000"],["2024-07-24T13:51:22.010000"],["2024-07-24T13:51:23.010000"],["2024-07-24T13:51:24.010000"],["2024-07-24T13:51:25.010000"],["2024-07-24T13:51:26.010000"],["2024-07-24T13:51:27.010000"],["2024-07-24T13:51:28.010000"],["2024-07-24T13:51:29.010000"],["2024-07-24T13:51:30.010000"],["2024-07-24T13:51:31.010000"],["2024-07-24T13:51:32.010000"],["2024-07-24T13:51:33.010000"],["2024-07-24T13:51:34.010000"],["2024-07-24T13:51:35.010000"],["2024-07-24T13:51:36.010000"],["2024-07-24T13:51:37.010000"],["2024-07-24T13:51:38.010000"],["2024-07-24T13:51:39.010000"],["2024-07-24T13:51:40.010000"],["2024-07-24T13:51:41.010000"],["2024-07-24T13:51:42.010000"],["2024-07-24T13:51:43.010000"],["2024-07-24T13:51:44.010000"],["2024-07-24T13:51:45.010000"],["2024-07-24T13:51:46.010000"],["2024-07-24T13:51:47.010000"],["2024-07-24T13:51:48.010000"],["2024-07-24T13:51:49.010000"],["2024-07-24T13:51:50.010000"],["2024-07-24T13:51:51.010000"],["2024-07-24T13:51:52.010000"],["2024-07-24T13:51:53.010000"],["2024-07-24T13:51:54.010000"],["2024-07-24T13:51:55.010000"],["2024-07-24T13:51:56.010000"],["2024-07-24T13:51:57.010000"],["2024-07-24T13:51:58.010000"],["2024-07-24T13:51:59.010000"],["2024-07-24T13:52:00.010000"],["2024-07-24T13:52:01.010000"],["2024-07-24T13:52:02.010000"],["2024-07-24T13:52:03.010000"],["2024-07-24T13:52:04.010000"],["2024-07-24T13:52:05.010000"],["2024-07-24T13:52:06.010000"],["2024-07-24T13:52:07.010000"],["2024-07-24T13:52:08.010000"],["2024-07-24T13:52:09.010000"],["2024-07-24T13:52:10.010000"],["2024-07-24T13:52:11.010000"],["2024-07-24T13:52:12.010000"],["2024-07-24T13:52:13.010000"],["2024-07-24T13:52:14.010000"],["2024-07-24T13:52:15.010000"],["2024-07-24T13:52:16.010000"],["2024-07-24T13:52:17.010000"],["2024-07-24T13:52:18.010000"],["2024-07-24T13:52:19.010000"],["2024-07-24T13:52:20.010000"],["2024-07-24T13:52:21.010000"],["2024-07-24T13:52:22.010000"],["2024-07-24T13:52:23.010000"],["2024-07-24T13:52:24.010000"],["2024-07-24T13:52:25.010000"],["2024-07-24T13:52:26.010000"],["2024-07-24T13:52:27.010000"],["2024-07-24T13:52:28.010000"],["2024-07-24T13:52:29.010000"],["2024-07-24T13:52:30.010000"],["2024-07-24T13:52:31.010000"],["2024-07-24T13:52:32.010000"],["2024-07-24T13:52:33.010000"],["2024-07-24T13:52:34.010000"],["2024-07-24T13:52:35.010000"],["2024-07-24T13:52:36.010000"],["2024-07-24T13:52:37.010000"],["2024-07-24T13:52:38.010000"],["2024-07-24T13:52:39.010000"],["2024-07-24T13:52:40.010000"],["2024-07-24T13:52:41.010000"],["2024-07-24T13:52:42.010000"],["2024-07-24T13:52:43.010000"],["2024-07-24T13:52:44.010000"],["2024-07-24T13:52:45.010000"],["2024-07-24T13:52:46.010000"],["2024-07-24T13:52:47.010000"],["2024-07-24T13:52:48.010000"],["2024-07-24T13:52:49.010000"],["2024-07-24T13:52:50.010000"],["2024-07-24T13:52:51.010000"],["2024-07-24T13:52:52.010000"],["2024-07-24T13:52:53.010000"],["2024-07-24T13:52:54.010000"],["2024-07-24T13:52:55.010000"],["2024-07-24T13:52:56.010000"],["2024-07-24T13:52:57.010000"],["2024-07-24T13:52:58.010000"],["2024-07-24T13:52:59.010000"],["2024-07-24T13:53:00.010000"],["2024-07-24T13:53:01.010000"],["2024-07-24T13:53:02.010000"],["2024-07-24T13:53:03.010000"],["2024-07-24T13:53:04.010000"],["2024-07-24T13:53:05.010000"],["2024-07-24T13:53:06.010000"],["2024-07-24T13:53:07.010000"],["2024-07-24T13:53:08.010000"],["2024-07-24T13:53:09.010000"],["2024-07-24T13:53:10.010000"],["2024-07-24T13:53:11.010000"],["2024-07-24T13:53:12.010000"],["2024-07-24T13:53:13.010000"],["2024-07-24T13:53:14.010000"],["2024-07-24T13:53:15.010000"],["2024-07-24T13:53:16.010000"],["2024-07-24T13:53:17.010000"],["2024-07-24T13:53:18.010000"],["2024-07-24T13:53:19.010000"],["2024-07-24T13:53:20.010000"],["2024-07-24T13:53:21.010000"],["2024-07-24T13:53:22.010000"],["2024-07-24T13:53:23.010000"],["2024-07-24T13:53:24.010000"],["2024-07-24T13:53:25.010000"],["2024-07-24T13:53:26.010000"],["2024-07-24T13:53:27.010000"],["2024-07-24T13:53:28.010000"],["2024-07-24T13:53:29.010000"],["2024-07-24T13:53:30.010000"],["2024-07-24T13:53:31.010000"],["2024-07-24T13:53:32.010000"],["2024-07-24T13:53:33.010000"],["2024-07-24T13:53:34.010000"],["2024-07-24T13:53:35.010000"],["2024-07-24T13:53:36.010000"],["2024-07-24T13:53:37.010000"],["2024-07-24T13:53:38.010000"],["2024-07-24T13:53:39.010000"],["2024-07-24T13:53:40.010000"],["2024-07-24T13:53:41.010000"],["2024-07-24T13:53:42.010000"],["2024-07-24T13:53:43.010000"],["2024-07-24T13:53:44.010000"],["2024-07-24T13:53:45.010000"],["2024-07-24T13:53:46.010000"],["2024-07-24T13:53:47.010000"],["2024-07-24T13:53:48.010000"],["2024-07-24T13:53:49.010000"],["2024-07-24T13:53:50.010000"],["2024-07-24T13:53:51.010000"],["2024-07-24T13:53:52.010000"],["2024-07-24T13:53:53.010000"],["2024-07-24T13:53:54.010000"],["2024-07-24T13:53:55.010000"],["2024-07-24T13:53:56.010000"],["2024-07-24T13:53:57.010000"],["2024-07-24T13:53:58.010000"],["2024-07-24T13:53:59.010000"],["2024-07-24T13:54:00.010000"],["2024-07-24T13:54:01.010000"],["2024-07-24T13:54:02.010000"],["2024-07-24T13:54:03.010000"],["2024-07-24T13:54:04.010000"],["2024-07-24T13:54:05.010000"],["2024-07-24T13:54:06.010000"],["2024-07-24T13:54:07.010000"],["2024-07-24T13:54:08.010000"],["2024-07-24T13:54:09.010000"],["2024-07-24T13:54:10.010000"],["2024-07-24T13:54:11.010000"],["2024-07-24T13:54:12.010000"],["2024-07-24T13:54:13.010000"],["2024-07-24T13:54:14.010000"],["2024-07-24T13:54:15.010000"],["2024-07-24T13:54:16.010000"],["2024-07-24T13:54:17.010000"],["2024-07-24T13:54:18.010000"],["2024-07-24T13:54:19.010000"],["2024-07-24T13:54:20.010000"],["2024-07-24T13:54:21.010000"],["2024-07-24T13:54:22.010000"],["2024-07-24T13:54:23.010000"],["2024-07-24T13:54:24.010000"],["2024-07-24T13:54:25.010000"],["2024-07-24T13:54:26.010000"],["2024-07-24T13:54:27.010000"],["2024-07-24T13:54:28.010000"],["2024-07-24T13:54:29.010000"],["2024-07-24T13:54:30.010000"],["2024-07-24T13:54:31.010000"],["2024-07-24T13:54:32.010000"],["2024-07-24T13:54:33.010000"],["2024-07-24T13:54:34.010000"],["2024-07-24T13:54:35.010000"],["2024-07-24T13:54:36.010000"],["2024-07-24T13:54:37.010000"],["2024-07-24T13:54:38.010000"],["2024-07-24T13:54:39.010000"],["2024-07-24T13:54:40.010000"],["2024-07-24T13:54:41.010000"],["2024-07-24T13:54:42.010000"],["2024-07-24T13:54:43.010000"],["2024-07-24T13:54:44.010000"],["2024-07-24T13:54:45.010000"],["2024-07-24T13:54:46.010000"],["2024-07-24T13:54:47.010000"],["2024-07-24T13:54:48.010000"],["2024-07-24T13:54:49.010000"],["2024-07-24T13:54:50.010000"],["2024-07-24T13:54:51.010000"],["2024-07-24T13:54:52.010000"],["2024-07-24T13:54:53.010000"],["2024-07-24T13:54:54.010000"],["2024-07-24T13:54:55.010000"],["2024-07-24T13:54:56.010000"],["2024-07-24T13:54:57.010000"],["2024-07-24T13:54:58.010000"],["2024-07-24T13:54:59.010000"],["2024-07-24T13:55:00.010000"],["2024-07-24T13:55:01.010000"],["2024-07-24T13:55:02.010000"],["2024-07-24T13:55:03.010000"],["2024-07-24T13:55:04.010000"],["2024-07-24T13:55:05.010000"],["2024-07-24T13:55:06.010000"],["2024-07-24T13:55:07.010000"],["2024-07-24T13:55:08.010000"],["2024-07-24T13:55:09.010000"],["2024-07-24T13:55:10.010000"],["2024-07-24T13:55:11.010000"],["2024-07-24T13:55:12.010000"],["2024-07-24T13:55:13.010000"],["2024-07-24T13:55:14.010000"],["2024-07-24T13:55:15.010000"],["2024-07-24T13:55:16.010000"],["2024-07-24T13:55:17.010000"],["2024-07-24T13:55:18.010000"],["2024-07-24T13:55:19.010000"],["2024-07-24T13:55:20.010000"],["2024-07-24T13:55:21.010000"],["2024-07-24T13:55:22.010000"],["2024-07-24T13:55:23.010000"],["2024-07-24T13:55:24.010000"],["2024-07-24T13:55:25.010000"],["2024-07-24T13:55:26.010000"],["2024-07-24T13:55:27.010000"],["2024-07-24T13:55:28.010000"],["2024-07-24T13:55:29.010000"],["2024-07-24T13:55:30.010000"],["2024-07-24T13:55:31.010000"],["2024-07-24T13:55:32.010000"],["2024-07-24T13:55:33.010000"],["2024-07-24T13:55:34.010000"],["2024-07-24T13:55:35.010000"],["2024-07-24T13:55:36.010000"],["2024-07-24T13:55:37.010000"],["2024-07-24T13:55:38.010000"],["2024-07-24T13:55:39.010000"],["2024-07-24T13:55:40.010000"],["2024-07-24T13:55:41.010000"],["2024-07-24T13:55:42.010000"],["2024-07-24T13:55:43.010000"],["2024-07-24T13:55:44.010000"],["2024-07-24T13:55:45.010000"],["2024-07-24T13:55:46.010000"],["2024-07-24T13:55:47.010000"],["2024-07-24T13:55:48.010000"],["2024-07-24T13:55:49.010000"],["2024-07-24T13:55:50.010000"],["2024-07-24T13:55:51.010000"],["2024-07-24T13:55:52.010000"],["2024-07-24T13:55:53.010000"],["2024-07-24T13:55:54.010000"],["2024-07-24T13:55:55.010000"],["2024-07-24T13:55:56.010000"],["2024-07-24T13:55:57.010000"],["2024-07-24T13:55:58.010000"],["2024-07-24T13:55:59.010000"],["2024-07-24T13:56:00.010000"],["2024-07-24T13:56:01.010000"],["2024-07-24T13:56:02.010000"],["2024-07-24T13:56:03.010000"],["2024-07-24T13:56:04.010000"],["2024-07-24T13:56:05.010000"],["2024-07-24T13:56:06.010000"],["2024-07-24T13:56:07.010000"],["2024-07-24T13:56:08.010000"],["2024-07-24T13:56:09.010000"],["2024-07-24T13:56:10.010000"],["2024-07-24T13:56:11.010000"],["2024-07-24T13:56:12.010000"],["2024-07-24T13:56:13.010000"],["2024-07-24T13:56:14.010000"],["2024-07-24T13:56:15.010000"],["2024-07-24T13:56:16.010000"],["2024-07-24T13:56:17.010000"],["2024-07-24T13:56:18.010000"],["2024-07-24T13:56:19.010000"],["2024-07-24T13:56:20.010000"],["2024-07-24T13:56:21.010000"],["2024-07-24T13:56:22.010000"],["2024-07-24T13:56:23.010000"],["2024-07-24T13:56:24.010000"],["2024-07-24T13:56:25.010000"],["2024-07-24T13:56:26.010000"],["2024-07-24T13:56:27.010000"],["2024-07-24T13:56:28.010000"],["2024-07-24T13:56:29.010000"],["2024-07-24T13:56:30.010000"],["2024-07-24T13:56:31.010000"],["2024-07-24T13:56:32.010000"],["2024-07-24T13:56:33.010000"],["2024-07-24T13:56:34.010000"],["2024-07-24T13:56:35.010000"],["2024-07-24T13:56:36.010000"],["2024-07-24T13:56:37.010000"],["2024-07-24T13:56:38.010000"],["2024-07-24T13:56:39.010000"],["2024-07-24T13:56:40.010000"],["2024-07-24T13:56:41.010000"],["2024-07-24T13:56:42.010000"],["2024-07-24T13:56:43.010000"],["2024-07-24T13:56:44.010000"],["2024-07-24T13:56:45.010000"],["2024-07-24T13:56:46.010000"],["2024-07-24T13:56:47.010000"],["2024-07-24T13:56:48.010000"],["2024-07-24T13:56:49.010000"],["2024-07-24T13:56:50.010000"],["2024-07-24T13:56:51.010000"],["2024-07-24T13:56:52.010000"],["2024-07-24T13:56:53.010000"],["2024-07-24T13:56:54.010000"],["2024-07-24T13:56:55.010000"],["2024-07-24T13:56:56.010000"],["2024-07-24T13:56:57.010000"],["2024-07-24T13:56:58.010000"],["2024-07-24T13:56:59.010000"],["2024-07-24T13:57:00.010000"],["2024-07-24T13:57:01.010000"],["2024-07-24T13:57:02.010000"],["2024-07-24T13:57:03.010000"],["2024-07-24T13:57:04.010000"],["2024-07-24T13:57:05.010000"],["2024-07-24T13:57:06.010000"],["2024-07-24T13:57:07.010000"],["2024-07-24T13:57:08.010000"],["2024-07-24T13:57:09.010000"],["2024-07-24T13:57:10.010000"],["2024-07-24T13:57:11.010000"],["2024-07-24T13:57:12.010000"],["2024-07-24T13:57:13.010000"],["2024-07-24T13:57:14.010000"],["2024-07-24T13:57:15.010000"],["2024-07-24T13:57:16.010000"],["2024-07-24T13:57:17.010000"],["2024-07-24T13:57:18.010000"],["2024-07-24T13:57:19.010000"],["2024-07-24T13:57:20.010000"],["2024-07-24T13:57:21.010000"],["2024-07-24T13:57:22.010000"],["2024-07-24T13:57:23.010000"],["2024-07-24T13:57:24.010000"],["2024-07-24T13:57:25.010000"],["2024-07-24T13:57:26.010000"],["2024-07-24T13:57:27.010000"],["2024-07-24T13:57:28.010000"],["2024-07-24T13:57:29.010000"],["2024-07-24T13:57:30.010000"],["2024-07-24T13:57:31.010000"],["2024-07-24T13:57:32.010000"],["2024-07-24T13:57:33.010000"],["2024-07-24T13:57:34.010000"],["2024-07-24T13:57:35.010000"],["2024-07-24T13:57:36.010000"],["2024-07-24T13:57:37.010000"],["2024-07-24T13:57:38.010000"],["2024-07-24T13:57:39.010000"],["2024-07-24T13:57:40.010000"],["2024-07-24T13:57:41.010000"],["2024-07-24T13:57:42.010000"],["2024-07-24T13:57:43.010000"],["2024-07-24T13:57:44.010000"],["2024-07-24T13:57:45.010000"],["2024-07-24T13:57:46.010000"],["2024-07-24T13:57:47.010000"],["2024-07-24T13:57:48.010000"],["2024-07-24T13:57:49.010000"],["2024-07-24T13:57:50.010000"],["2024-07-24T13:57:51.010000"],["2024-07-24T13:57:52.010000"],["2024-07-24T13:57:53.010000"],["2024-07-24T13:57:54.010000"],["2024-07-24T13:57:55.010000"],["2024-07-24T13:57:56.010000"],["2024-07-24T13:57:57.010000"],["2024-07-24T13:57:58.010000"],["2024-07-24T13:57:59.010000"],["2024-07-24T13:58:00.010000"],["2024-07-24T13:58:01.010000"],["2024-07-24T13:58:02.010000"],["2024-07-24T13:58:03.010000"],["2024-07-24T13:58:04.010000"],["2024-07-24T13:58:05.010000"],["2024-07-24T13:58:06.010000"],["2024-07-24T13:58:07.010000"],["2024-07-24T13:58:08.010000"],["2024-07-24T13:58:09.010000"],["2024-07-24T13:58:10.010000"],["2024-07-24T13:58:11.010000"],["2024-07-24T13:58:12.010000"],["2024-07-24T13:58:13.010000"],["2024-07-24T13:58:14.010000"],["2024-07-24T13:58:15.010000"],["2024-07-24T13:58:16.010000"],["2024-07-24T13:58:17.010000"],["2024-07-24T13:58:18.010000"],["2024-07-24T13:58:19.010000"],["2024-07-24T13:58:20.010000"],["2024-07-24T13:58:21.010000"],["2024-07-24T13:58:22.010000"],["2024-07-24T13:58:23.010000"],["2024-07-24T13:58:24.010000"],["2024-07-24T13:58:25.010000"],["2024-07-24T13:58:26.010000"],["2024-07-24T13:58:27.010000"],["2024-07-24T13:58:28.010000"],["2024-07-24T13:58:29.010000"],["2024-07-24T13:58:30.010000"],["2024-07-24T13:58:31.010000"],["2024-07-24T13:58:32.010000"],["2024-07-24T13:58:33.010000"],["2024-07-24T13:58:34.010000"],["2024-07-24T13:58:35.010000"],["2024-07-24T13:58:36.010000"],["2024-07-24T13:58:37.010000"],["2024-07-24T13:58:38.010000"],["2024-07-24T13:58:39.010000"],["2024-07-24T13:58:40.010000"],["2024-07-24T13:58:41.010000"],["2024-07-24T13:58:42.010000"],["2024-07-24T13:58:43.010000"],["2024-07-24T13:58:44.010000"],["2024-07-24T13:58:45.010000"],["2024-07-24T13:58:46.010000"],["2024-07-24T13:58:47.010000"],["2024-07-24T13:58:48.010000"],["2024-07-24T13:58:49.010000"],["2024-07-24T13:58:50.010000"],["2024-07-24T13:58:51.010000"],["2024-07-24T13:58:52.010000"],["2024-07-24T13:58:53.010000"],["2024-07-24T13:58:54.010000"],["2024-07-24T13:58:55.010000"],["2024-07-24T13:58:56.010000"],["2024-07-24T13:58:57.010000"],["2024-07-24T13:58:58.010000"],["2024-07-24T13:58:59.010000"],["2024-07-24T13:59:00.010000"],["2024-07-24T13:59:01.010000"],["2024-07-24T13:59:02.010000"],["2024-07-24T13:59:03.010000"],["2024-07-24T13:59:04.010000"],["2024-07-24T13:59:05.010000"],["2024-07-24T13:59:06.010000"],["2024-07-24T13:59:07.010000"],["2024-07-24T13:59:08.010000"],["2024-07-24T13:59:09.010000"],["2024-07-24T13:59:10.010000"],["2024-07-24T13:59:11.010000"],["2024-07-24T13:59:12.010000"],["2024-07-24T13:59:13.010000"],["2024-07-24T13:59:14.010000"],["2024-07-24T13:59:15.010000"],["2024-07-24T13:59:16.010000"],["2024-07-24T13:59:17.010000"],["2024-07-24T13:59:18.010000"],["2024-07-24T13:59:19.010000"],["2024-07-24T13:59:20.010000"],["2024-07-24T13:59:21.010000"],["2024-07-24T13:59:22.010000"],["2024-07-24T13:59:23.010000"],["2024-07-24T13:59:24.010000"],["2024-07-24T13:59:25.010000"],["2024-07-24T13:59:26.010000"],["2024-07-24T13:59:27.010000"],["2024-07-24T13:59:28.010000"],["2024-07-24T13:59:29.010000"],["2024-07-24T13:59:30.010000"],["2024-07-24T13:59:31.010000"],["2024-07-24T13:59:32.010000"],["2024-07-24T13:59:33.010000"],["2024-07-24T13:59:34.010000"],["2024-07-24T13:59:35.010000"],["2024-07-24T13:59:36.010000"],["2024-07-24T13:59:37.010000"],["2024-07-24T13:59:38.010000"],["2024-07-24T13:59:39.010000"],["2024-07-24T13:59:40.010000"],["2024-07-24T13:59:41.010000"],["2024-07-24T13:59:42.010000"],["2024-07-24T13:59:43.010000"],["2024-07-24T13:59:44.010000"],["2024-07-24T13:59:45.010000"],["2024-07-24T13:59:46.010000"],["2024-07-24T13:59:47.010000"],["2024-07-24T13:59:48.010000"],["2024-07-24T13:59:49.010000"],["2024-07-24T13:59:50.010000"],["2024-07-24T13:59:51.010000"],["2024-07-24T13:59:52.010000"],["2024-07-24T13:59:53.010000"],["2024-07-24T13:59:54.010000"],["2024-07-24T13:59:55.010000"],["2024-07-24T13:59:56.010000"],["2024-07-24T13:59:57.010000"],["2024-07-24T13:59:58.010000"],["2024-07-24T13:59:59.010000"],["2024-07-24T14:00:00.010000"],["2024-07-24T14:00:01.010000"],["2024-07-24T14:00:02.010000"],["2024-07-24T14:00:03.010000"],["2024-07-24T14:00:04.010000"],["2024-07-24T14:00:05.010000"],["2024-07-24T14:00:06.010000"],["2024-07-24T14:00:07.010000"],["2024-07-24T14:00:08.010000"],["2024-07-24T14:00:09.010000"],["2024-07-24T14:00:10.010000"],["2024-07-24T14:00:11.010000"],["2024-07-24T14:00:12.010000"],["2024-07-24T14:00:13.010000"],["2024-07-24T14:00:14.010000"],["2024-07-24T14:00:15.010000"],["2024-07-24T14:00:16.010000"],["2024-07-24T14:00:17.010000"],["2024-07-24T14:00:18.010000"],["2024-07-24T14:00:19.010000"],["2024-07-24T14:00:20.010000"],["2024-07-24T14:00:21.010000"],["2024-07-24T14:00:22.010000"],["2024-07-24T14:00:23.010000"],["2024-07-24T14:00:24.010000"],["2024-07-24T14:00:25.010000"],["2024-07-24T14:00:26.010000"],["2024-07-24T14:00:27.010000"],["2024-07-24T14:00:28.010000"],["2024-07-24T14:00:29.010000"],["2024-07-24T14:00:30.010000"],["2024-07-24T14:00:31.010000"],["2024-07-24T14:00:32.010000"],["2024-07-24T14:00:33.010000"],["2024-07-24T14:00:34.010000"],["2024-07-24T14:00:35.010000"],["2024-07-24T14:00:36.010000"],["2024-07-24T14:00:37.010000"],["2024-07-24T14:00:38.010000"],["2024-07-24T14:00:39.010000"],["2024-07-24T14:00:40.010000"],["2024-07-24T14:00:41.010000"],["2024-07-24T14:00:42.010000"],["2024-07-24T14:00:43.010000"],["2024-07-24T14:00:44.010000"],["2024-07-24T14:00:45.010000"],["2024-07-24T14:00:46.010000"],["2024-07-24T14:00:47.010000"],["2024-07-24T14:00:48.010000"],["2024-07-24T14:00:49.010000"],["2024-07-24T14:00:50.010000"],["2024-07-24T14:00:51.010000"],["2024-07-24T14:00:52.010000"],["2024-07-24T14:00:53.010000"],["2024-07-24T14:00:54.010000"],["2024-07-24T14:00:55.010000"],["2024-07-24T14:00:56.010000"],["2024-07-24T14:00:57.010000"],["2024-07-24T14:00:58.010000"],["2024-07-24T14:00:59.010000"],["2024-07-24T14:01:00.010000"],["2024-07-24T14:01:01.010000"],["2024-07-24T14:01:02.010000"],["2024-07-24T14:01:03.010000"],["2024-07-24T14:01:04.010000"],["2024-07-24T14:01:05.010000"],["2024-07-24T14:01:06.010000"],["2024-07-24T14:01:07.010000"],["2024-07-24T14:01:08.010000"],["2024-07-24T14:01:09.010000"],["2024-07-24T14:01:10.010000"],["2024-07-24T14:01:11.010000"],["2024-07-24T14:01:12.010000"],["2024-07-24T14:01:13.010000"],["2024-07-24T14:01:14.010000"],["2024-07-24T14:01:15.010000"],["2024-07-24T14:01:16.010000"],["2024-07-24T14:01:17.010000"],["2024-07-24T14:01:18.010000"],["2024-07-24T14:01:19.010000"],["2024-07-24T14:01:20.010000"],["2024-07-24T14:01:21.010000"],["2024-07-24T14:01:22.010000"],["2024-07-24T14:01:23.010000"],["2024-07-24T14:01:24.010000"],["2024-07-24T14:01:25.010000"],["2024-07-24T14:01:26.010000"],["2024-07-24T14:01:27.010000"],["2024-07-24T14:01:28.010000"],["2024-07-24T14:01:29.010000"],["2024-07-24T14:01:30.010000"],["2024-07-24T14:01:31.010000"],["2024-07-24T14:01:32.010000"],["2024-07-24T14:01:33.010000"],["2024-07-24T14:01:34.010000"],["2024-07-24T14:01:35.010000"],["2024-07-24T14:01:36.010000"],["2024-07-24T14:01:37.010000"],["2024-07-24T14:01:38.010000"],["2024-07-24T14:01:39.010000"],["2024-07-24T14:01:40.010000"],["2024-07-24T14:01:41.010000"],["2024-07-24T14:01:42.010000"],["2024-07-24T14:01:43.010000"],["2024-07-24T14:01:44.010000"],["2024-07-24T14:01:45.010000"],["2024-07-24T14:01:46.010000"],["2024-07-24T14:01:47.010000"],["2024-07-24T14:01:48.010000"],["2024-07-24T14:01:49.010000"],["2024-07-24T14:01:50.010000"],["2024-07-24T14:01:51.010000"],["2024-07-24T14:01:52.010000"],["2024-07-24T14:01:53.010000"],["2024-07-24T14:01:54.010000"],["2024-07-24T14:01:55.010000"],["2024-07-24T14:01:56.010000"],["2024-07-24T14:01:57.010000"],["2024-07-24T14:01:58.010000"],["2024-07-24T14:01:59.010000"],["2024-07-24T14:02:00.010000"],["2024-07-24T14:02:01.010000"],["2024-07-24T14:02:02.010000"],["2024-07-24T14:02:03.010000"],["2024-07-24T14:02:04.010000"],["2024-07-24T14:02:05.010000"],["2024-07-24T14:02:06.010000"],["2024-07-24T14:02:07.010000"],["2024-07-24T14:02:08.010000"],["2024-07-24T14:02:09.010000"],["2024-07-24T14:02:10.010000"],["2024-07-24T14:02:11.010000"],["2024-07-24T14:02:12.010000"],["2024-07-24T14:02:13.010000"],["2024-07-24T14:02:14.010000"],["2024-07-24T14:02:15.010000"],["2024-07-24T14:02:16.010000"],["2024-07-24T14:02:17.010000"],["2024-07-24T14:02:18.010000"],["2024-07-24T14:02:19.010000"],["2024-07-24T14:02:20.010000"],["2024-07-24T14:02:21.010000"],["2024-07-24T14:02:22.010000"],["2024-07-24T14:02:23.010000"],["2024-07-24T14:02:24.010000"],["2024-07-24T14:02:25.010000"],["2024-07-24T14:02:26.010000"],["2024-07-24T14:02:27.010000"],["2024-07-24T14:02:28.010000"],["2024-07-24T14:02:29.010000"],["2024-07-24T14:02:30.010000"],["2024-07-24T14:02:31.010000"],["2024-07-24T14:02:32.010000"],["2024-07-24T14:02:33.010000"],["2024-07-24T14:02:34.010000"],["2024-07-24T14:02:35.010000"],["2024-07-24T14:02:36.010000"],["2024-07-24T14:02:37.010000"],["2024-07-24T14:02:38.010000"],["2024-07-24T14:02:39.010000"],["2024-07-24T14:02:40.010000"],["2024-07-24T14:02:41.010000"],["2024-07-24T14:02:42.010000"],["2024-07-24T14:02:43.010000"],["2024-07-24T14:02:44.010000"],["2024-07-24T14:02:45.010000"],["2024-07-24T14:02:46.010000"],["2024-07-24T14:02:47.010000"],["2024-07-24T14:02:48.010000"],["2024-07-24T14:02:49.010000"],["2024-07-24T14:02:50.010000"],["2024-07-24T14:02:51.010000"],["2024-07-24T14:02:52.010000"],["2024-07-24T14:02:53.010000"],["2024-07-24T14:02:54.010000"],["2024-07-24T14:02:55.010000"],["2024-07-24T14:02:56.010000"],["2024-07-24T14:02:57.010000"],["2024-07-24T14:02:58.010000"],["2024-07-24T14:02:59.010000"],["2024-07-24T14:03:00.010000"],["2024-07-24T14:03:01.010000"],["2024-07-24T14:03:02.010000"],["2024-07-24T14:03:03.010000"],["2024-07-24T14:03:04.010000"],["2024-07-24T14:03:05.010000"],["2024-07-24T14:03:06.010000"],["2024-07-24T14:03:07.010000"],["2024-07-24T14:03:08.010000"],["2024-07-24T14:03:09.010000"],["2024-07-24T14:03:10.010000"],["2024-07-24T14:03:11.010000"],["2024-07-24T14:03:12.010000"],["2024-07-24T14:03:13.010000"],["2024-07-24T14:03:14.010000"],["2024-07-24T14:03:15.010000"],["2024-07-24T14:03:16.010000"],["2024-07-24T14:03:17.010000"],["2024-07-24T14:03:18.010000"],["2024-07-24T14:03:19.010000"],["2024-07-24T14:03:20.010000"],["2024-07-24T14:03:21.010000"],["2024-07-24T14:03:22.010000"],["2024-07-24T14:03:23.010000"],["2024-07-24T14:03:24.010000"],["2024-07-24T14:03:25.010000"],["2024-07-24T14:03:26.010000"],["2024-07-24T14:03:27.010000"],["2024-07-24T14:03:28.010000"],["2024-07-24T14:03:29.010000"],["2024-07-24T14:03:30.010000"],["2024-07-24T14:03:31.010000"],["2024-07-24T14:03:32.010000"],["2024-07-24T14:03:33.010000"],["2024-07-24T14:03:34.010000"],["2024-07-24T14:03:35.010000"],["2024-07-24T14:03:36.010000"],["2024-07-24T14:03:37.010000"],["2024-07-24T14:03:38.010000"],["2024-07-24T14:03:39.010000"],["2024-07-24T14:03:40.010000"],["2024-07-24T14:03:41.010000"],["2024-07-24T14:03:42.010000"],["2024-07-24T14:03:43.010000"],["2024-07-24T14:03:44.010000"],["2024-07-24T14:03:45.010000"],["2024-07-24T14:03:46.010000"],["2024-07-24T14:03:47.010000"],["2024-07-24T14:03:48.010000"],["2024-07-24T14:03:49.010000"],["2024-07-24T14:03:50.010000"],["2024-07-24T14:03:51.010000"],["2024-07-24T14:03:52.010000"],["2024-07-24T14:03:53.010000"],["2024-07-24T14:03:54.010000"],["2024-07-24T14:03:55.010000"],["2024-07-24T14:03:56.010000"],["2024-07-24T14:03:57.010000"],["2024-07-24T14:03:58.010000"],["2024-07-24T14:03:59.010000"],["2024-07-24T14:04:00.010000"],["2024-07-24T14:04:01.010000"],["2024-07-24T14:04:02.010000"],["2024-07-24T14:04:03.010000"],["2024-07-24T14:04:04.010000"],["2024-07-24T14:04:05.010000"],["2024-07-24T14:04:06.010000"],["2024-07-24T14:04:07.010000"],["2024-07-24T14:04:08.010000"],["2024-07-24T14:04:09.010000"],["2024-07-24T14:04:10.010000"],["2024-07-24T14:04:11.010000"],["2024-07-24T14:04:12.010000"],["2024-07-24T14:04:13.010000"],["2024-07-24T14:04:14.010000"],["2024-07-24T14:04:15.010000"],["2024-07-24T14:04:16.010000"],["2024-07-24T14:04:17.010000"],["2024-07-24T14:04:18.010000"],["2024-07-24T14:04:19.010000"],["2024-07-24T14:04:20.010000"],["2024-07-24T14:04:21.010000"],["2024-07-24T14:04:22.010000"],["2024-07-24T14:04:23.010000"],["2024-07-24T14:04:24.010000"],["2024-07-24T14:04:25.010000"],["2024-07-24T14:04:26.010000"],["2024-07-24T14:04:27.010000"],["2024-07-24T14:04:28.010000"],["2024-07-24T14:04:29.010000"],["2024-07-24T14:04:30.010000"],["2024-07-24T14:04:31.010000"],["2024-07-24T14:04:32.010000"],["2024-07-24T14:04:33.010000"],["2024-07-24T14:04:34.010000"],["2024-07-24T14:04:35.010000"],["2024-07-24T14:04:36.010000"],["2024-07-24T14:04:37.010000"],["2024-07-24T14:04:38.010000"],["2024-07-24T14:04:39.010000"],["2024-07-24T14:04:40.010000"],["2024-07-24T14:04:41.010000"],["2024-07-24T14:04:42.010000"],["2024-07-24T14:04:43.010000"],["2024-07-24T14:04:44.010000"],["2024-07-24T14:04:45.010000"],["2024-07-24T14:04:46.010000"],["2024-07-24T14:04:47.010000"],["2024-07-24T14:04:48.010000"],["2024-07-24T14:04:49.010000"],["2024-07-24T14:04:50.010000"],["2024-07-24T14:04:51.010000"],["2024-07-24T14:04:52.010000"],["2024-07-24T14:04:53.010000"],["2024-07-24T14:04:54.010000"],["2024-07-24T14:04:55.010000"],["2024-07-24T14:04:56.010000"],["2024-07-24T14:04:57.010000"],["2024-07-24T14:04:58.010000"],["2024-07-24T14:04:59.010000"],["2024-07-24T14:05:00.010000"],["2024-07-24T14:05:01.010000"],["2024-07-24T14:05:02.010000"],["2024-07-24T14:05:03.010000"],["2024-07-24T14:05:04.010000"],["2024-07-24T14:05:05.010000"],["2024-07-24T14:05:06.010000"],["2024-07-24T14:05:07.010000"],["2024-07-24T14:05:08.010000"],["2024-07-24T14:05:09.010000"],["2024-07-24T14:05:10.010000"],["2024-07-24T14:05:11.010000"],["2024-07-24T14:05:12.010000"],["2024-07-24T14:05:13.010000"],["2024-07-24T14:05:14.010000"],["2024-07-24T14:05:15.010000"],["2024-07-24T14:05:16.010000"],["2024-07-24T14:05:17.010000"],["2024-07-24T14:05:18.010000"],["2024-07-24T14:05:19.010000"],["2024-07-24T14:05:20.010000"],["2024-07-24T14:05:21.010000"],["2024-07-24T14:05:22.010000"],["2024-07-24T14:05:23.010000"],["2024-07-24T14:05:24.010000"],["2024-07-24T14:05:25.010000"],["2024-07-24T14:05:26.010000"],["2024-07-24T14:05:27.010000"],["2024-07-24T14:05:28.010000"],["2024-07-24T14:05:29.010000"],["2024-07-24T14:05:30.010000"],["2024-07-24T14:05:31.010000"],["2024-07-24T14:05:32.010000"],["2024-07-24T14:05:33.010000"],["2024-07-24T14:05:34.010000"],["2024-07-24T14:05:35.010000"],["2024-07-24T14:05:36.010000"],["2024-07-24T14:05:37.010000"],["2024-07-24T14:05:38.010000"],["2024-07-24T14:05:39.010000"],["2024-07-24T14:05:40.010000"],["2024-07-24T14:05:41.010000"],["2024-07-24T14:05:42.010000"],["2024-07-24T14:05:43.010000"],["2024-07-24T14:05:44.010000"],["2024-07-24T14:05:45.010000"],["2024-07-24T14:05:46.010000"],["2024-07-24T14:05:47.010000"],["2024-07-24T14:05:48.010000"],["2024-07-24T14:05:49.010000"],["2024-07-24T14:05:50.010000"],["2024-07-24T14:05:51.010000"],["2024-07-24T14:05:52.010000"],["2024-07-24T14:05:53.010000"],["2024-07-24T14:05:54.010000"],["2024-07-24T14:05:55.010000"],["2024-07-24T14:05:56.010000"],["2024-07-24T14:05:57.010000"],["2024-07-24T14:05:58.010000"],["2024-07-24T14:05:59.010000"],["2024-07-24T14:06:00.010000"],["2024-07-24T14:06:01.010000"],["2024-07-24T14:06:02.010000"],["2024-07-24T14:06:03.010000"],["2024-07-24T14:06:04.010000"],["2024-07-24T14:06:05.010000"],["2024-07-24T14:06:06.010000"],["2024-07-24T14:06:07.010000"],["2024-07-24T14:06:08.010000"],["2024-07-24T14:06:09.010000"],["2024-07-24T14:06:10.010000"],["2024-07-24T14:06:11.010000"],["2024-07-24T14:06:12.010000"],["2024-07-24T14:06:13.010000"],["2024-07-24T14:06:14.010000"],["2024-07-24T14:06:15.010000"],["2024-07-24T14:06:16.010000"],["2024-07-24T14:06:17.010000"],["2024-07-24T14:06:18.010000"],["2024-07-24T14:06:19.010000"],["2024-07-24T14:06:20.010000"],["2024-07-24T14:06:21.010000"],["2024-07-24T14:06:22.010000"],["2024-07-24T14:06:23.010000"],["2024-07-24T14:06:24.010000"],["2024-07-24T14:06:25.010000"],["2024-07-24T14:06:26.010000"],["2024-07-24T14:06:27.010000"],["2024-07-24T14:06:28.010000"],["2024-07-24T14:06:29.010000"],["2024-07-24T14:06:30.010000"],["2024-07-24T14:06:31.010000"],["2024-07-24T14:06:32.010000"],["2024-07-24T14:06:33.010000"],["2024-07-24T14:06:34.010000"],["2024-07-24T14:06:35.010000"],["2024-07-24T14:06:36.010000"],["2024-07-24T14:06:37.010000"],["2024-07-24T14:06:38.010000"],["2024-07-24T14:06:39.010000"],["2024-07-24T14:06:40.010000"],["2024-07-24T14:06:41.010000"],["2024-07-24T14:06:42.010000"],["2024-07-24T14:06:43.010000"],["2024-07-24T14:06:44.010000"],["2024-07-24T14:06:45.010000"],["2024-07-24T14:06:46.010000"],["2024-07-24T14:06:47.010000"],["2024-07-24T14:06:48.010000"],["2024-07-24T14:06:49.010000"],["2024-07-24T14:06:50.010000"],["2024-07-24T14:06:51.010000"],["2024-07-24T14:06:52.010000"],["2024-07-24T14:06:53.010000"],["2024-07-24T14:06:54.010000"],["2024-07-24T14:06:55.010000"],["2024-07-24T14:06:56.010000"],["2024-07-24T14:06:57.010000"],["2024-07-24T14:06:58.010000"],["2024-07-24T14:06:59.010000"],["2024-07-24T14:07:00.010000"],["2024-07-24T14:07:01.010000"],["2024-07-24T14:07:02.010000"],["2024-07-24T14:07:03.010000"],["2024-07-24T14:07:04.010000"],["2024-07-24T14:07:05.010000"],["2024-07-24T14:07:06.010000"],["2024-07-24T14:07:07.010000"],["2024-07-24T14:07:08.010000"],["2024-07-24T14:07:09.010000"],["2024-07-24T14:07:10.010000"],["2024-07-24T14:07:11.010000"],["2024-07-24T14:07:12.010000"],["2024-07-24T14:07:13.010000"],["2024-07-24T14:07:14.010000"],["2024-07-24T14:07:15.010000"],["2024-07-24T14:07:16.010000"],["2024-07-24T14:07:17.010000"],["2024-07-24T14:07:18.010000"],["2024-07-24T14:07:19.010000"],["2024-07-24T14:07:20.010000"],["2024-07-24T14:07:21.010000"],["2024-07-24T14:07:22.010000"],["2024-07-24T14:07:23.010000"],["2024-07-24T14:07:24.010000"],["2024-07-24T14:07:25.010000"],["2024-07-24T14:07:26.010000"],["2024-07-24T14:07:27.010000"],["2024-07-24T14:07:28.010000"],["2024-07-24T14:07:29.010000"],["2024-07-24T14:07:30.010000"],["2024-07-24T14:07:31.010000"],["2024-07-24T14:07:32.010000"],["2024-07-24T14:07:33.010000"],["2024-07-24T14:07:34.010000"],["2024-07-24T14:07:35.010000"],["2024-07-24T14:07:36.010000"],["2024-07-24T14:07:37.010000"],["2024-07-24T14:07:38.010000"],["2024-07-24T14:07:39.010000"],["2024-07-24T14:07:40.010000"],["2024-07-24T14:07:41.010000"],["2024-07-24T14:07:42.010000"],["2024-07-24T14:07:43.010000"],["2024-07-24T14:07:44.010000"],["2024-07-24T14:07:45.010000"],["2024-07-24T14:07:46.010000"],["2024-07-24T14:07:47.010000"],["2024-07-24T14:07:48.010000"],["2024-07-24T14:07:49.010000"],["2024-07-24T14:07:50.010000"],["2024-07-24T14:07:51.010000"],["2024-07-24T14:07:52.010000"],["2024-07-24T14:07:53.010000"],["2024-07-24T14:07:54.010000"],["2024-07-24T14:07:55.010000"],["2024-07-24T14:07:56.010000"],["2024-07-24T14:07:57.010000"],["2024-07-24T14:07:58.010000"],["2024-07-24T14:07:59.010000"],["2024-07-24T14:08:00.010000"],["2024-07-24T14:08:01.010000"],["2024-07-24T14:08:02.010000"],["2024-07-24T14:08:03.010000"],["2024-07-24T14:08:04.010000"],["2024-07-24T14:08:05.010000"],["2024-07-24T14:08:06.010000"],["2024-07-24T14:08:07.010000"],["2024-07-24T14:08:08.010000"],["2024-07-24T14:08:09.010000"],["2024-07-24T14:08:10.010000"],["2024-07-24T14:08:11.010000"],["2024-07-24T14:08:12.010000"],["2024-07-24T14:08:13.010000"],["2024-07-24T14:08:14.010000"],["2024-07-24T14:08:15.010000"],["2024-07-24T14:08:16.010000"],["2024-07-24T14:08:17.010000"],["2024-07-24T14:08:18.010000"],["2024-07-24T14:08:19.010000"],["2024-07-24T14:08:20.010000"],["2024-07-24T14:08:21.010000"],["2024-07-24T14:08:22.010000"],["2024-07-24T14:08:23.010000"],["2024-07-24T14:08:24.010000"],["2024-07-24T14:08:25.010000"],["2024-07-24T14:08:26.010000"],["2024-07-24T14:08:27.010000"],["2024-07-24T14:08:28.010000"],["2024-07-24T14:08:29.010000"],["2024-07-24T14:08:30.010000"],["2024-07-24T14:08:31.010000"],["2024-07-24T14:08:32.010000"],["2024-07-24T14:08:33.010000"],["2024-07-24T14:08:34.010000"],["2024-07-24T14:08:35.010000"],["2024-07-24T14:08:36.010000"],["2024-07-24T14:08:37.010000"],["2024-07-24T14:08:38.010000"],["2024-07-24T14:08:39.010000"],["2024-07-24T14:08:40.010000"],["2024-07-24T14:08:41.010000"],["2024-07-24T14:08:42.010000"],["2024-07-24T14:08:43.010000"],["2024-07-24T14:08:44.010000"],["2024-07-24T14:08:45.010000"],["2024-07-24T14:08:46.010000"],["2024-07-24T14:08:47.010000"],["2024-07-24T14:08:48.010000"],["2024-07-24T14:08:49.010000"],["2024-07-24T14:08:50.010000"],["2024-07-24T14:08:51.010000"],["2024-07-24T14:08:52.010000"],["2024-07-24T14:08:53.010000"],["2024-07-24T14:08:54.010000"],["2024-07-24T14:08:55.010000"],["2024-07-24T14:08:56.010000"],["2024-07-24T14:08:57.010000"],["2024-07-24T14:08:58.010000"],["2024-07-24T14:08:59.010000"],["2024-07-24T14:09:00.010000"],["2024-07-24T14:09:01.010000"],["2024-07-24T14:09:02.010000"],["2024-07-24T14:09:03.010000"],["2024-07-24T14:09:04.010000"],["2024-07-24T14:09:05.010000"],["2024-07-24T14:09:06.010000"],["2024-07-24T14:09:07.010000"],["2024-07-24T14:09:08.010000"],["2024-07-24T14:09:09.010000"],["2024-07-24T14:09:10.010000"],["2024-07-24T14:09:11.010000"],["2024-07-24T14:09:12.010000"],["2024-07-24T14:09:13.010000"],["2024-07-24T14:09:14.010000"],["2024-07-24T14:09:15.010000"],["2024-07-24T14:09:16.010000"],["2024-07-24T14:09:17.010000"],["2024-07-24T14:09:18.010000"],["2024-07-24T14:09:19.010000"],["2024-07-24T14:09:20.010000"],["2024-07-24T14:09:21.010000"],["2024-07-24T14:09:22.010000"],["2024-07-24T14:09:23.010000"],["2024-07-24T14:09:24.010000"],["2024-07-24T14:09:25.010000"],["2024-07-24T14:09:26.010000"],["2024-07-24T14:09:27.010000"],["2024-07-24T14:09:28.010000"],["2024-07-24T14:09:29.010000"],["2024-07-24T14:09:30.010000"],["2024-07-24T14:09:31.010000"],["2024-07-24T14:09:32.010000"],["2024-07-24T14:09:33.010000"],["2024-07-24T14:09:34.010000"],["2024-07-24T14:09:35.010000"],["2024-07-24T14:09:36.010000"],["2024-07-24T14:09:37.010000"],["2024-07-24T14:09:38.010000"],["2024-07-24T14:09:39.010000"],["2024-07-24T14:09:40.010000"],["2024-07-24T14:09:41.010000"],["2024-07-24T14:09:42.010000"],["2024-07-24T14:09:43.010000"],["2024-07-24T14:09:44.010000"],["2024-07-24T14:09:45.010000"],["2024-07-24T14:09:46.010000"],["2024-07-24T14:09:47.010000"],["2024-07-24T14:09:48.010000"],["2024-07-24T14:09:49.010000"],["2024-07-24T14:09:50.010000"],["2024-07-24T14:09:51.010000"],["2024-07-24T14:09:52.010000"],["2024-07-24T14:09:53.010000"],["2024-07-24T14:09:54.010000"],["2024-07-24T14:09:55.010000"],["2024-07-24T14:09:56.010000"],["2024-07-24T14:09:57.010000"],["2024-07-24T14:09:58.010000"],["2024-07-24T14:09:59.010000"],["2024-07-24T14:10:00.010000"],["2024-07-24T14:10:01.010000"],["2024-07-24T14:10:02.010000"],["2024-07-24T14:10:03.010000"],["2024-07-24T14:10:04.010000"],["2024-07-24T14:10:05.010000"],["2024-07-24T14:10:06.010000"],["2024-07-24T14:10:07.010000"],["2024-07-24T14:10:08.010000"],["2024-07-24T14:10:09.010000"],["2024-07-24T14:10:10.010000"],["2024-07-24T14:10:11.010000"],["2024-07-24T14:10:12.010000"],["2024-07-24T14:10:13.010000"],["2024-07-24T14:10:14.010000"],["2024-07-24T14:10:15.010000"],["2024-07-24T14:10:16.010000"],["2024-07-24T14:10:17.010000"],["2024-07-24T14:10:18.010000"],["2024-07-24T14:10:19.010000"],["2024-07-24T14:10:20.010000"],["2024-07-24T14:10:21.010000"],["2024-07-24T14:10:22.010000"],["2024-07-24T14:10:23.010000"],["2024-07-24T14:10:24.010000"],["2024-07-24T14:10:25.010000"],["2024-07-24T14:10:26.010000"],["2024-07-24T14:10:27.010000"],["2024-07-24T14:10:28.010000"],["2024-07-24T14:10:29.010000"],["2024-07-24T14:10:30.010000"],["2024-07-24T14:10:31.010000"],["2024-07-24T14:10:32.010000"],["2024-07-24T14:10:33.010000"],["2024-07-24T14:10:34.010000"],["2024-07-24T14:10:35.010000"],["2024-07-24T14:10:36.010000"],["2024-07-24T14:10:37.010000"],["2024-07-24T14:10:38.010000"],["2024-07-24T14:10:39.010000"],["2024-07-24T14:10:40.010000"],["2024-07-24T14:10:41.010000"],["2024-07-24T14:10:42.010000"],["2024-07-24T14:10:43.010000"],["2024-07-24T14:10:44.010000"],["2024-07-24T14:10:45.010000"],["2024-07-24T14:10:46.010000"],["2024-07-24T14:10:47.010000"],["2024-07-24T14:10:48.010000"],["2024-07-24T14:10:49.010000"],["2024-07-24T14:10:50.010000"],["2024-07-24T14:10:51.010000"],["2024-07-24T14:10:52.010000"],["2024-07-24T14:10:53.010000"],["2024-07-24T14:10:54.010000"],["2024-07-24T14:10:55.010000"],["2024-07-24T14:10:56.010000"],["2024-07-24T14:10:57.010000"],["2024-07-24T14:10:58.010000"],["2024-07-24T14:10:59.010000"],["2024-07-24T14:11:00.010000"],["2024-07-24T14:11:01.010000"],["2024-07-24T14:11:02.010000"],["2024-07-24T14:11:03.010000"],["2024-07-24T14:11:04.010000"],["2024-07-24T14:11:05.010000"],["2024-07-24T14:11:06.010000"],["2024-07-24T14:11:07.010000"],["2024-07-24T14:11:08.010000"],["2024-07-24T14:11:09.010000"],["2024-07-24T14:11:10.010000"],["2024-07-24T14:11:11.010000"],["2024-07-24T14:11:12.010000"],["2024-07-24T14:11:13.010000"],["2024-07-24T14:11:14.010000"],["2024-07-24T14:11:15.010000"],["2024-07-24T14:11:16.010000"],["2024-07-24T14:11:17.010000"],["2024-07-24T14:11:18.010000"],["2024-07-24T14:11:19.010000"],["2024-07-24T14:11:20.010000"],["2024-07-24T14:11:21.010000"],["2024-07-24T14:11:22.010000"],["2024-07-24T14:11:23.010000"],["2024-07-24T14:11:24.010000"],["2024-07-24T14:11:25.010000"],["2024-07-24T14:11:26.010000"],["2024-07-24T14:11:27.010000"],["2024-07-24T14:11:28.010000"],["2024-07-24T14:11:29.010000"],["2024-07-24T14:11:30.010000"],["2024-07-24T14:11:31.010000"],["2024-07-24T14:11:32.010000"],["2024-07-24T14:11:33.010000"],["2024-07-24T14:11:34.010000"],["2024-07-24T14:11:35.010000"],["2024-07-24T14:11:36.010000"],["2024-07-24T14:11:37.010000"],["2024-07-24T14:11:38.010000"],["2024-07-24T14:11:39.010000"],["2024-07-24T14:11:40.010000"],["2024-07-24T14:11:41.010000"],["2024-07-24T14:11:42.010000"],["2024-07-24T14:11:43.010000"],["2024-07-24T14:11:44.010000"],["2024-07-24T14:11:45.010000"],["2024-07-24T14:11:46.010000"],["2024-07-24T14:11:47.010000"],["2024-07-24T14:11:48.010000"],["2024-07-24T14:11:49.010000"],["2024-07-24T14:11:50.010000"],["2024-07-24T14:11:51.010000"],["2024-07-24T14:11:52.010000"],["2024-07-24T14:11:53.010000"],["2024-07-24T14:11:54.010000"],["2024-07-24T14:11:55.010000"],["2024-07-24T14:11:56.010000"],["2024-07-24T14:11:57.010000"],["2024-07-24T14:11:58.010000"],["2024-07-24T14:11:59.010000"],["2024-07-24T14:12:00.010000"],["2024-07-24T14:12:01.010000"],["2024-07-24T14:12:02.010000"],["2024-07-24T14:12:03.010000"],["2024-07-24T14:12:04.010000"],["2024-07-24T14:12:05.010000"],["2024-07-24T14:12:06.010000"],["2024-07-24T14:12:07.010000"],["2024-07-24T14:12:08.010000"],["2024-07-24T14:12:09.010000"],["2024-07-24T14:12:10.010000"],["2024-07-24T14:12:11.010000"],["2024-07-24T14:12:12.010000"],["2024-07-24T14:12:13.010000"],["2024-07-24T14:12:14.010000"],["2024-07-24T14:12:15.010000"],["2024-07-24T14:12:16.010000"],["2024-07-24T14:12:17.010000"],["2024-07-24T14:12:18.010000"],["2024-07-24T14:12:19.010000"],["2024-07-24T14:12:20.010000"],["2024-07-24T14:12:21.010000"],["2024-07-24T14:12:22.010000"],["2024-07-24T14:12:23.010000"],["2024-07-24T14:12:24.010000"],["2024-07-24T14:12:25.010000"],["2024-07-24T14:12:26.010000"],["2024-07-24T14:12:27.010000"],["2024-07-24T14:12:28.010000"],["2024-07-24T14:12:29.010000"],["2024-07-24T14:12:30.010000"],["2024-07-24T14:12:31.010000"],["2024-07-24T14:12:32.010000"],["2024-07-24T14:12:33.010000"],["2024-07-24T14:12:34.010000"],["2024-07-24T14:12:35.010000"],["2024-07-24T14:12:36.010000"],["2024-07-24T14:12:37.010000"],["2024-07-24T14:12:38.010000"],["2024-07-24T14:12:39.010000"],["2024-07-24T14:12:40.010000"],["2024-07-24T14:12:41.010000"],["2024-07-24T14:12:42.010000"],["2024-07-24T14:12:43.010000"],["2024-07-24T14:12:44.010000"],["2024-07-24T14:12:45.010000"],["2024-07-24T14:12:46.010000"],["2024-07-24T14:12:47.010000"],["2024-07-24T14:12:48.010000"],["2024-07-24T14:12:49.010000"],["2024-07-24T14:12:50.010000"],["2024-07-24T14:12:51.010000"],["2024-07-24T14:12:52.010000"],["2024-07-24T14:12:53.010000"],["2024-07-24T14:12:54.010000"],["2024-07-24T14:12:55.010000"],["2024-07-24T14:12:56.010000"],["2024-07-24T14:12:57.010000"],["2024-07-24T14:12:58.010000"],["2024-07-24T14:12:59.010000"],["2024-07-24T14:13:00.010000"],["2024-07-24T14:13:01.010000"],["2024-07-24T14:13:02.010000"],["2024-07-24T14:13:03.010000"],["2024-07-24T14:13:04.010000"],["2024-07-24T14:13:05.010000"],["2024-07-24T14:13:06.010000"],["2024-07-24T14:13:07.010000"],["2024-07-24T14:13:08.010000"],["2024-07-24T14:13:09.010000"],["2024-07-24T14:13:10.010000"],["2024-07-24T14:13:11.010000"],["2024-07-24T14:13:12.010000"],["2024-07-24T14:13:13.010000"],["2024-07-24T14:13:14.010000"],["2024-07-24T14:13:15.010000"],["2024-07-24T14:13:16.010000"],["2024-07-24T14:13:17.010000"],["2024-07-24T14:13:18.010000"],["2024-07-24T14:13:19.010000"],["2024-07-24T14:13:20.010000"],["2024-07-24T14:13:21.010000"],["2024-07-24T14:13:22.010000"],["2024-07-24T14:13:23.010000"],["2024-07-24T14:13:24.010000"],["2024-07-24T14:13:25.010000"],["2024-07-24T14:13:26.010000"],["2024-07-24T14:13:27.010000"],["2024-07-24T14:13:28.010000"],["2024-07-24T14:13:29.010000"],["2024-07-24T14:13:30.010000"],["2024-07-24T14:13:31.010000"],["2024-07-24T14:13:32.010000"],["2024-07-24T14:13:33.010000"],["2024-07-24T14:13:34.010000"],["2024-07-24T14:13:35.010000"],["2024-07-24T14:13:36.010000"],["2024-07-24T14:13:37.010000"],["2024-07-24T14:13:38.010000"],["2024-07-24T14:13:39.010000"],["2024-07-24T14:13:40.010000"],["2024-07-24T14:13:41.010000"],["2024-07-24T14:13:42.010000"],["2024-07-24T14:13:43.010000"],["2024-07-24T14:13:44.010000"],["2024-07-24T14:13:45.010000"],["2024-07-24T14:13:46.010000"],["2024-07-24T14:13:47.010000"],["2024-07-24T14:13:48.010000"],["2024-07-24T14:13:49.010000"],["2024-07-24T14:13:50.010000"],["2024-07-24T14:13:51.010000"],["2024-07-24T14:13:52.010000"],["2024-07-24T14:13:53.010000"],["2024-07-24T14:13:54.010000"],["2024-07-24T14:13:55.010000"],["2024-07-24T14:13:56.010000"],["2024-07-24T14:13:57.010000"],["2024-07-24T14:13:58.010000"],["2024-07-24T14:13:59.010000"],["2024-07-24T14:14:00.010000"],["2024-07-24T14:14:01.010000"],["2024-07-24T14:14:02.010000"],["2024-07-24T14:14:03.010000"],["2024-07-24T14:14:04.010000"],["2024-07-24T14:14:05.010000"],["2024-07-24T14:14:06.010000"],["2024-07-24T14:14:07.010000"],["2024-07-24T14:14:08.010000"],["2024-07-24T14:14:09.010000"],["2024-07-24T14:14:10.010000"],["2024-07-24T14:14:11.010000"],["2024-07-24T14:14:12.010000"],["2024-07-24T14:14:13.010000"],["2024-07-24T14:14:14.010000"],["2024-07-24T14:14:15.010000"],["2024-07-24T14:14:16.010000"],["2024-07-24T14:14:17.010000"],["2024-07-24T14:14:18.010000"],["2024-07-24T14:14:19.010000"],["2024-07-24T14:14:20.010000"],["2024-07-24T14:14:21.010000"],["2024-07-24T14:14:22.010000"],["2024-07-24T14:14:23.010000"],["2024-07-24T14:14:24.010000"],["2024-07-24T14:14:25.010000"],["2024-07-24T14:14:26.010000"],["2024-07-24T14:14:27.010000"],["2024-07-24T14:14:28.010000"],["2024-07-24T14:14:29.010000"],["2024-07-24T14:14:30.010000"],["2024-07-24T14:14:31.010000"],["2024-07-24T14:14:32.010000"],["2024-07-24T14:14:33.010000"],["2024-07-24T14:14:34.010000"],["2024-07-24T14:14:35.010000"],["2024-07-24T14:14:36.010000"],["2024-07-24T14:14:37.010000"],["2024-07-24T14:14:38.010000"],["2024-07-24T14:14:39.010000"],["2024-07-24T14:14:40.010000"],["2024-07-24T14:14:41.010000"],["2024-07-24T14:14:42.010000"],["2024-07-24T14:14:43.010000"],["2024-07-24T14:14:44.010000"],["2024-07-24T14:14:45.010000"],["2024-07-24T14:14:46.010000"],["2024-07-24T14:14:47.010000"],["2024-07-24T14:14:48.010000"],["2024-07-24T14:14:49.010000"],["2024-07-24T14:14:50.010000"],["2024-07-24T14:14:51.010000"],["2024-07-24T14:14:52.010000"],["2024-07-24T14:14:53.010000"],["2024-07-24T14:14:54.010000"],["2024-07-24T14:14:55.010000"],["2024-07-24T14:14:56.010000"],["2024-07-24T14:14:57.010000"],["2024-07-24T14:14:58.010000"],["2024-07-24T14:14:59.010000"],["2024-07-24T14:15:00.010000"],["2024-07-24T14:15:01.010000"],["2024-07-24T14:15:02.010000"],["2024-07-24T14:15:03.010000"],["2024-07-24T14:15:04.010000"],["2024-07-24T14:15:05.010000"],["2024-07-24T14:15:06.010000"],["2024-07-24T14:15:07.010000"],["2024-07-24T14:15:08.010000"],["2024-07-24T14:15:09.010000"],["2024-07-24T14:15:10.010000"],["2024-07-24T14:15:11.010000"],["2024-07-24T14:15:12.010000"],["2024-07-24T14:15:13.010000"],["2024-07-24T14:15:14.010000"],["2024-07-24T14:15:15.010000"],["2024-07-24T14:15:16.010000"],["2024-07-24T14:15:17.010000"],["2024-07-24T14:15:18.010000"],["2024-07-24T14:15:19.010000"],["2024-07-24T14:15:20.010000"],["2024-07-24T14:15:21.010000"],["2024-07-24T14:15:22.010000"],["2024-07-24T14:15:23.010000"],["2024-07-24T14:15:24.010000"],["2024-07-24T14:15:25.010000"],["2024-07-24T14:15:26.010000"],["2024-07-24T14:15:27.010000"],["2024-07-24T14:15:28.010000"],["2024-07-24T14:15:29.010000"],["2024-07-24T14:15:30.010000"],["2024-07-24T14:15:31.010000"],["2024-07-24T14:15:32.010000"],["2024-07-24T14:15:33.010000"],["2024-07-24T14:15:34.010000"],["2024-07-24T14:15:35.010000"],["2024-07-24T14:15:36.010000"],["2024-07-24T14:15:37.010000"],["2024-07-24T14:15:38.010000"],["2024-07-24T14:15:39.010000"],["2024-07-24T14:15:40.010000"],["2024-07-24T14:15:41.010000"],["2024-07-24T14:15:42.010000"],["2024-07-24T14:15:43.010000"],["2024-07-24T14:15:44.010000"],["2024-07-24T14:15:45.010000"],["2024-07-24T14:15:46.010000"],["2024-07-24T14:15:47.010000"],["2024-07-24T14:15:48.010000"],["2024-07-24T14:15:49.010000"],["2024-07-24T14:15:50.010000"],["2024-07-24T14:15:51.010000"],["2024-07-24T14:15:52.010000"],["2024-07-24T14:15:53.010000"],["2024-07-24T14:15:54.010000"],["2024-07-24T14:15:55.010000"],["2024-07-24T14:15:56.010000"],["2024-07-24T14:15:57.010000"],["2024-07-24T14:15:58.010000"],["2024-07-24T14:15:59.010000"],["2024-07-24T14:16:00.010000"],["2024-07-24T14:16:01.010000"],["2024-07-24T14:16:02.010000"],["2024-07-24T14:16:03.010000"],["2024-07-24T14:16:04.010000"],["2024-07-24T14:16:05.010000"],["2024-07-24T14:16:06.010000"],["2024-07-24T14:16:07.010000"],["2024-07-24T14:16:08.010000"],["2024-07-24T14:16:09.010000"],["2024-07-24T14:16:10.010000"],["2024-07-24T14:16:11.010000"],["2024-07-24T14:16:12.010000"],["2024-07-24T14:16:13.010000"],["2024-07-24T14:16:14.010000"],["2024-07-24T14:16:15.010000"],["2024-07-24T14:16:16.010000"],["2024-07-24T14:16:17.010000"],["2024-07-24T14:16:18.010000"],["2024-07-24T14:16:19.010000"],["2024-07-24T14:16:20.010000"],["2024-07-24T14:16:21.010000"],["2024-07-24T14:16:22.010000"],["2024-07-24T14:16:23.010000"],["2024-07-24T14:16:24.010000"],["2024-07-24T14:16:25.010000"],["2024-07-24T14:16:26.010000"],["2024-07-24T14:16:27.010000"],["2024-07-24T14:16:28.010000"],["2024-07-24T14:16:29.010000"],["2024-07-24T14:16:30.010000"],["2024-07-24T14:16:31.010000"],["2024-07-24T14:16:32.010000"],["2024-07-24T14:16:33.010000"],["2024-07-24T14:16:34.010000"],["2024-07-24T14:16:35.010000"],["2024-07-24T14:16:36.010000"],["2024-07-24T14:16:37.010000"],["2024-07-24T14:16:38.010000"],["2024-07-24T14:16:39.010000"],["2024-07-24T14:16:40.010000"],["2024-07-24T14:16:41.010000"],["2024-07-24T14:16:42.010000"],["2024-07-24T14:16:43.010000"],["2024-07-24T14:16:44.010000"],["2024-07-24T14:16:45.010000"],["2024-07-24T14:16:46.010000"],["2024-07-24T14:16:47.010000"],["2024-07-24T14:16:48.010000"],["2024-07-24T14:16:49.010000"],["2024-07-24T14:16:50.010000"],["2024-07-24T14:16:51.010000"],["2024-07-24T14:16:52.010000"],["2024-07-24T14:16:53.010000"],["2024-07-24T14:16:54.010000"],["2024-07-24T14:16:55.010000"],["2024-07-24T14:16:56.010000"],["2024-07-24T14:16:57.010000"],["2024-07-24T14:16:58.010000"],["2024-07-24T14:16:59.010000"],["2024-07-24T14:17:00.010000"],["2024-07-24T14:17:01.010000"],["2024-07-24T14:17:02.010000"],["2024-07-24T14:17:03.010000"],["2024-07-24T14:17:04.010000"],["2024-07-24T14:17:05.010000"],["2024-07-24T14:17:06.010000"],["2024-07-24T14:17:07.010000"],["2024-07-24T14:17:08.010000"],["2024-07-24T14:17:09.010000"],["2024-07-24T14:17:10.010000"],["2024-07-24T14:17:11.010000"],["2024-07-24T14:17:12.010000"],["2024-07-24T14:17:13.010000"],["2024-07-24T14:17:14.010000"],["2024-07-24T14:17:15.010000"],["2024-07-24T14:17:16.010000"],["2024-07-24T14:17:17.010000"],["2024-07-24T14:17:18.010000"],["2024-07-24T14:17:19.010000"],["2024-07-24T14:17:20.010000"],["2024-07-24T14:17:21.010000"],["2024-07-24T14:17:22.010000"],["2024-07-24T14:17:23.010000"],["2024-07-24T14:17:24.010000"],["2024-07-24T14:17:25.010000"],["2024-07-24T14:17:26.010000"],["2024-07-24T14:17:27.010000"],["2024-07-24T14:17:28.010000"],["2024-07-24T14:17:29.010000"],["2024-07-24T14:17:30.010000"],["2024-07-24T14:17:31.010000"],["2024-07-24T14:17:32.010000"],["2024-07-24T14:17:33.010000"],["2024-07-24T14:17:34.010000"],["2024-07-24T14:17:35.010000"],["2024-07-24T14:17:36.010000"],["2024-07-24T14:17:37.010000"],["2024-07-24T14:17:38.010000"],["2024-07-24T14:17:39.010000"],["2024-07-24T14:17:40.010000"],["2024-07-24T14:17:41.010000"],["2024-07-24T14:17:42.010000"],["2024-07-24T14:17:43.010000"],["2024-07-24T14:17:44.010000"],["2024-07-24T14:17:45.010000"],["2024-07-24T14:17:46.010000"],["2024-07-24T14:17:47.010000"],["2024-07-24T14:17:48.010000"],["2024-07-24T14:17:49.010000"],["2024-07-24T14:17:50.010000"],["2024-07-24T14:17:51.010000"],["2024-07-24T14:17:52.010000"],["2024-07-24T14:17:53.010000"],["2024-07-24T14:17:54.010000"],["2024-07-24T14:17:55.010000"],["2024-07-24T14:17:56.010000"],["2024-07-24T14:17:57.010000"],["2024-07-24T14:17:58.010000"],["2024-07-24T14:17:59.010000"],["2024-07-24T14:18:00.010000"],["2024-07-24T14:18:01.010000"],["2024-07-24T14:18:02.010000"],["2024-07-24T14:18:03.010000"],["2024-07-24T14:18:04.010000"],["2024-07-24T14:18:05.010000"],["2024-07-24T14:18:06.010000"],["2024-07-24T14:18:07.010000"],["2024-07-24T14:18:08.010000"],["2024-07-24T14:18:09.010000"],["2024-07-24T14:18:10.010000"],["2024-07-24T14:18:11.010000"],["2024-07-24T14:18:12.010000"],["2024-07-24T14:18:13.010000"],["2024-07-24T14:18:14.010000"],["2024-07-24T14:18:15.010000"],["2024-07-24T14:18:16.010000"],["2024-07-24T14:18:17.010000"],["2024-07-24T14:18:18.010000"],["2024-07-24T14:18:19.010000"],["2024-07-24T14:18:20.010000"],["2024-07-24T14:18:21.010000"],["2024-07-24T14:18:22.010000"],["2024-07-24T14:18:23.010000"],["2024-07-24T14:18:24.010000"],["2024-07-24T14:18:25.010000"],["2024-07-24T14:18:26.010000"],["2024-07-24T14:18:27.010000"],["2024-07-24T14:18:28.010000"],["2024-07-24T14:18:29.010000"],["2024-07-24T14:18:30.010000"],["2024-07-24T14:18:31.010000"],["2024-07-24T14:18:32.010000"],["2024-07-24T14:18:33.010000"],["2024-07-24T14:18:34.010000"],["2024-07-24T14:18:35.010000"],["2024-07-24T14:18:36.010000"],["2024-07-24T14:18:37.010000"],["2024-07-24T14:18:38.010000"],["2024-07-24T14:18:39.010000"],["2024-07-24T14:18:40.010000"],["2024-07-24T14:18:41.010000"],["2024-07-24T14:18:42.010000"],["2024-07-24T14:18:43.010000"],["2024-07-24T14:18:44.010000"],["2024-07-24T14:18:45.010000"],["2024-07-24T14:18:46.010000"],["2024-07-24T14:18:47.010000"],["2024-07-24T14:18:48.010000"],["2024-07-24T14:18:49.010000"],["2024-07-24T14:18:50.010000"],["2024-07-24T14:18:51.010000"],["2024-07-24T14:18:52.010000"],["2024-07-24T14:18:53.010000"],["2024-07-24T14:18:54.010000"],["2024-07-24T14:18:55.010000"],["2024-07-24T14:18:56.010000"],["2024-07-24T14:18:57.010000"],["2024-07-24T14:18:58.010000"],["2024-07-24T14:18:59.010000"],["2024-07-24T14:19:00.010000"],["2024-07-24T14:19:01.010000"],["2024-07-24T14:19:02.010000"],["2024-07-24T14:19:03.010000"],["2024-07-24T14:19:04.010000"],["2024-07-24T14:19:05.010000"],["2024-07-24T14:19:06.010000"],["2024-07-24T14:19:07.010000"],["2024-07-24T14:19:08.010000"],["2024-07-24T14:19:09.010000"],["2024-07-24T14:19:10.010000"],["2024-07-24T14:19:11.010000"],["2024-07-24T14:19:12.010000"],["2024-07-24T14:19:13.010000"],["2024-07-24T14:19:14.010000"],["2024-07-24T14:19:15.010000"],["2024-07-24T14:19:16.010000"],["2024-07-24T14:19:17.010000"],["2024-07-24T14:19:18.010000"],["2024-07-24T14:19:19.010000"],["2024-07-24T14:19:20.010000"],["2024-07-24T14:19:21.010000"],["2024-07-24T14:19:22.010000"],["2024-07-24T14:19:23.010000"],["2024-07-24T14:19:24.010000"],["2024-07-24T14:19:25.010000"],["2024-07-24T14:19:26.010000"],["2024-07-24T14:19:27.010000"],["2024-07-24T14:19:28.010000"],["2024-07-24T14:19:29.010000"],["2024-07-24T14:19:30.010000"],["2024-07-24T14:19:31.010000"],["2024-07-24T14:19:32.010000"],["2024-07-24T14:19:33.010000"],["2024-07-24T14:19:34.010000"],["2024-07-24T14:19:35.010000"],["2024-07-24T14:19:36.010000"],["2024-07-24T14:19:37.010000"],["2024-07-24T14:19:38.010000"],["2024-07-24T14:19:39.010000"],["2024-07-24T14:19:40.010000"],["2024-07-24T14:19:41.010000"],["2024-07-24T14:19:42.010000"],["2024-07-24T14:19:43.010000"],["2024-07-24T14:19:44.010000"],["2024-07-24T14:19:45.010000"],["2024-07-24T14:19:46.010000"],["2024-07-24T14:19:47.010000"],["2024-07-24T14:19:48.010000"],["2024-07-24T14:19:49.010000"],["2024-07-24T14:19:50.010000"],["2024-07-24T14:19:51.010000"],["2024-07-24T14:19:52.010000"],["2024-07-24T14:19:53.010000"],["2024-07-24T14:19:54.010000"],["2024-07-24T14:19:55.010000"],["2024-07-24T14:19:56.010000"],["2024-07-24T14:19:57.010000"],["2024-07-24T14:19:58.010000"],["2024-07-24T14:19:59.010000"],["2024-07-24T14:20:00.010000"],["2024-07-24T14:20:01.010000"],["2024-07-24T14:20:02.010000"],["2024-07-24T14:20:03.010000"],["2024-07-24T14:20:04.010000"],["2024-07-24T14:20:05.010000"],["2024-07-24T14:20:06.010000"],["2024-07-24T14:20:07.010000"],["2024-07-24T14:20:08.010000"],["2024-07-24T14:20:09.010000"],["2024-07-24T14:20:10.010000"],["2024-07-24T14:20:11.010000"],["2024-07-24T14:20:12.010000"],["2024-07-24T14:20:13.010000"],["2024-07-24T14:20:14.010000"],["2024-07-24T14:20:15.010000"],["2024-07-24T14:20:16.010000"],["2024-07-24T14:20:17.010000"],["2024-07-24T14:20:18.010000"],["2024-07-24T14:20:19.010000"],["2024-07-24T14:20:20.010000"],["2024-07-24T14:20:21.010000"],["2024-07-24T14:20:22.010000"],["2024-07-24T14:20:23.010000"],["2024-07-24T14:20:24.010000"],["2024-07-24T14:20:25.010000"],["2024-07-24T14:20:26.010000"],["2024-07-24T14:20:27.010000"],["2024-07-24T14:20:28.010000"],["2024-07-24T14:20:29.010000"],["2024-07-24T14:20:30.010000"],["2024-07-24T14:20:31.010000"],["2024-07-24T14:20:32.010000"],["2024-07-24T14:20:33.010000"],["2024-07-24T14:20:34.010000"],["2024-07-24T14:20:35.010000"],["2024-07-24T14:20:36.010000"],["2024-07-24T14:20:37.010000"],["2024-07-24T14:20:38.010000"],["2024-07-24T14:20:39.010000"],["2024-07-24T14:20:40.010000"],["2024-07-24T14:20:41.010000"],["2024-07-24T14:20:42.010000"],["2024-07-24T14:20:43.010000"],["2024-07-24T14:20:44.010000"],["2024-07-24T14:20:45.010000"],["2024-07-24T14:20:46.010000"],["2024-07-24T14:20:47.010000"],["2024-07-24T14:20:48.010000"],["2024-07-24T14:20:49.010000"],["2024-07-24T14:20:50.010000"],["2024-07-24T14:20:51.010000"],["2024-07-24T14:20:52.010000"],["2024-07-24T14:20:53.010000"],["2024-07-24T14:20:54.010000"],["2024-07-24T14:20:55.010000"],["2024-07-24T14:20:56.010000"],["2024-07-24T14:20:57.010000"],["2024-07-24T14:20:58.010000"],["2024-07-24T14:20:59.010000"],["2024-07-24T14:21:00.010000"],["2024-07-24T14:21:01.010000"],["2024-07-24T14:21:02.010000"],["2024-07-24T14:21:03.010000"],["2024-07-24T14:21:04.010000"],["2024-07-24T14:21:05.010000"],["2024-07-24T14:21:06.010000"],["2024-07-24T14:21:07.010000"],["2024-07-24T14:21:08.010000"],["2024-07-24T14:21:09.010000"],["2024-07-24T14:21:10.010000"],["2024-07-24T14:21:11.010000"],["2024-07-24T14:21:12.010000"],["2024-07-24T14:21:13.010000"],["2024-07-24T14:21:14.010000"],["2024-07-24T14:21:15.010000"],["2024-07-24T14:21:16.010000"],["2024-07-24T14:21:17.010000"],["2024-07-24T14:21:18.010000"],["2024-07-24T14:21:19.010000"],["2024-07-24T14:21:20.010000"],["2024-07-24T14:21:21.010000"],["2024-07-24T14:21:22.010000"],["2024-07-24T14:21:23.010000"],["2024-07-24T14:21:24.010000"],["2024-07-24T14:21:25.010000"],["2024-07-24T14:21:26.010000"],["2024-07-24T14:21:27.010000"],["2024-07-24T14:21:28.010000"],["2024-07-24T14:21:29.010000"],["2024-07-24T14:21:30.010000"],["2024-07-24T14:21:31.010000"],["2024-07-24T14:21:32.010000"],["2024-07-24T14:21:33.010000"],["2024-07-24T14:21:34.010000"],["2024-07-24T14:21:35.010000"],["2024-07-24T14:21:36.010000"],["2024-07-24T14:21:37.010000"],["2024-07-24T14:21:38.010000"],["2024-07-24T14:21:39.010000"],["2024-07-24T14:21:40.010000"],["2024-07-24T14:21:41.010000"],["2024-07-24T14:21:42.010000"],["2024-07-24T14:21:43.010000"],["2024-07-24T14:21:44.010000"],["2024-07-24T14:21:45.010000"],["2024-07-24T14:21:46.010000"],["2024-07-24T14:21:47.010000"],["2024-07-24T14:21:48.010000"],["2024-07-24T14:21:49.010000"],["2024-07-24T14:21:50.010000"],["2024-07-24T14:21:51.010000"],["2024-07-24T14:21:52.010000"],["2024-07-24T14:21:53.010000"],["2024-07-24T14:21:54.010000"],["2024-07-24T14:21:55.010000"],["2024-07-24T14:21:56.010000"],["2024-07-24T14:21:57.010000"],["2024-07-24T14:21:58.010000"],["2024-07-24T14:21:59.010000"],["2024-07-24T14:22:00.010000"],["2024-07-24T14:22:01.010000"],["2024-07-24T14:22:02.010000"],["2024-07-24T14:22:03.010000"],["2024-07-24T14:22:04.010000"],["2024-07-24T14:22:05.010000"],["2024-07-24T14:22:06.010000"],["2024-07-24T14:22:07.010000"],["2024-07-24T14:22:08.010000"],["2024-07-24T14:22:09.010000"],["2024-07-24T14:22:10.010000"],["2024-07-24T14:22:11.010000"],["2024-07-24T14:22:12.010000"],["2024-07-24T14:22:13.010000"],["2024-07-24T14:22:14.010000"],["2024-07-24T14:22:15.010000"],["2024-07-24T14:22:16.010000"],["2024-07-24T14:22:17.010000"],["2024-07-24T14:22:18.010000"],["2024-07-24T14:22:19.010000"],["2024-07-24T14:22:20.010000"],["2024-07-24T14:22:21.010000"],["2024-07-24T14:22:22.010000"],["2024-07-24T14:22:23.010000"],["2024-07-24T14:22:24.010000"],["2024-07-24T14:22:25.010000"],["2024-07-24T14:22:26.010000"],["2024-07-24T14:22:27.010000"],["2024-07-24T14:22:28.010000"],["2024-07-24T14:22:29.010000"],["2024-07-24T14:22:30.010000"],["2024-07-24T14:22:31.010000"],["2024-07-24T14:22:32.010000"],["2024-07-24T14:22:33.010000"],["2024-07-24T14:22:34.010000"],["2024-07-24T14:22:35.010000"],["2024-07-24T14:22:36.010000"],["2024-07-24T14:22:37.010000"],["2024-07-24T14:22:38.010000"],["2024-07-24T14:22:39.010000"],["2024-07-24T14:22:40.010000"],["2024-07-24T14:22:41.010000"],["2024-07-24T14:22:42.010000"],["2024-07-24T14:22:43.010000"],["2024-07-24T14:22:44.010000"],["2024-07-24T14:22:45.010000"],["2024-07-24T14:22:46.010000"],["2024-07-24T14:22:47.010000"],["2024-07-24T14:22:48.010000"],["2024-07-24T14:22:49.010000"],["2024-07-24T14:22:50.010000"],["2024-07-24T14:22:51.010000"],["2024-07-24T14:22:52.010000"],["2024-07-24T14:22:53.010000"],["2024-07-24T14:22:54.010000"],["2024-07-24T14:22:55.010000"],["2024-07-24T14:22:56.010000"],["2024-07-24T14:22:57.010000"],["2024-07-24T14:22:58.010000"],["2024-07-24T14:22:59.010000"],["2024-07-24T14:23:00.010000"],["2024-07-24T14:23:01.010000"],["2024-07-24T14:23:02.010000"],["2024-07-24T14:23:03.010000"],["2024-07-24T14:23:04.010000"],["2024-07-24T14:23:05.010000"],["2024-07-24T14:23:06.010000"],["2024-07-24T14:23:07.010000"],["2024-07-24T14:23:08.010000"],["2024-07-24T14:23:09.010000"],["2024-07-24T14:23:10.010000"],["2024-07-24T14:23:11.010000"],["2024-07-24T14:23:12.010000"],["2024-07-24T14:23:13.010000"],["2024-07-24T14:23:14.010000"],["2024-07-24T14:23:15.010000"],["2024-07-24T14:23:16.010000"],["2024-07-24T14:23:17.010000"],["2024-07-24T14:23:18.010000"],["2024-07-24T14:23:19.010000"],["2024-07-24T14:23:20.010000"],["2024-07-24T14:23:21.010000"],["2024-07-24T14:23:22.010000"],["2024-07-24T14:23:23.010000"],["2024-07-24T14:23:24.010000"],["2024-07-24T14:23:25.010000"],["2024-07-24T14:23:26.010000"],["2024-07-24T14:23:27.010000"],["2024-07-24T14:23:28.010000"],["2024-07-24T14:23:29.010000"],["2024-07-24T14:23:30.010000"],["2024-07-24T14:23:31.010000"],["2024-07-24T14:23:32.010000"],["2024-07-24T14:23:33.010000"],["2024-07-24T14:23:34.010000"],["2024-07-24T14:23:35.010000"],["2024-07-24T14:23:36.010000"],["2024-07-24T14:23:37.010000"],["2024-07-24T14:23:38.010000"],["2024-07-24T14:23:39.010000"],["2024-07-24T14:23:40.010000"],["2024-07-24T14:23:41.010000"],["2024-07-24T14:23:42.010000"],["2024-07-24T14:23:43.010000"],["2024-07-24T14:23:44.010000"],["2024-07-24T14:23:45.010000"],["2024-07-24T14:23:46.010000"],["2024-07-24T14:23:47.010000"],["2024-07-24T14:23:48.010000"],["2024-07-24T14:23:49.010000"],["2024-07-24T14:23:50.010000"],["2024-07-24T14:23:51.010000"],["2024-07-24T14:23:52.010000"],["2024-07-24T14:23:53.010000"],["2024-07-24T14:23:54.010000"],["2024-07-24T14:23:55.010000"],["2024-07-24T14:23:56.010000"],["2024-07-24T14:23:57.010000"],["2024-07-24T14:23:58.010000"],["2024-07-24T14:23:59.010000"],["2024-07-24T14:24:00.010000"],["2024-07-24T14:24:01.010000"],["2024-07-24T14:24:02.010000"],["2024-07-24T14:24:03.010000"],["2024-07-24T14:24:04.010000"],["2024-07-24T14:24:05.010000"],["2024-07-24T14:24:06.010000"],["2024-07-24T14:24:07.010000"],["2024-07-24T14:24:08.010000"],["2024-07-24T14:24:09.010000"],["2024-07-24T14:24:10.010000"],["2024-07-24T14:24:11.010000"],["2024-07-24T14:24:12.010000"],["2024-07-24T14:24:13.010000"],["2024-07-24T14:24:14.010000"],["2024-07-24T14:24:15.010000"],["2024-07-24T14:24:16.010000"],["2024-07-24T14:24:17.010000"],["2024-07-24T14:24:18.010000"],["2024-07-24T14:24:19.010000"],["2024-07-24T14:24:20.010000"],["2024-07-24T14:24:21.010000"],["2024-07-24T14:24:22.010000"],["2024-07-24T14:24:23.010000"],["2024-07-24T14:24:24.010000"],["2024-07-24T14:24:25.010000"],["2024-07-24T14:24:26.010000"],["2024-07-24T14:24:27.010000"],["2024-07-24T14:24:28.010000"],["2024-07-24T14:24:29.010000"],["2024-07-24T14:24:30.010000"],["2024-07-24T14:24:31.010000"],["2024-07-24T14:24:32.010000"],["2024-07-24T14:24:33.010000"],["2024-07-24T14:24:34.010000"],["2024-07-24T14:24:35.010000"],["2024-07-24T14:24:36.010000"],["2024-07-24T14:24:37.010000"],["2024-07-24T14:24:38.010000"],["2024-07-24T14:24:39.010000"],["2024-07-24T14:24:40.010000"],["2024-07-24T14:24:41.010000"],["2024-07-24T14:24:42.010000"],["2024-07-24T14:24:43.010000"],["2024-07-24T14:24:44.010000"],["2024-07-24T14:24:45.010000"],["2024-07-24T14:24:46.010000"],["2024-07-24T14:24:47.010000"],["2024-07-24T14:24:48.010000"],["2024-07-24T14:24:49.010000"],["2024-07-24T14:24:50.010000"],["2024-07-24T14:24:51.010000"],["2024-07-24T14:24:52.010000"],["2024-07-24T14:24:53.010000"],["2024-07-24T14:24:54.010000"],["2024-07-24T14:24:55.010000"],["2024-07-24T14:24:56.010000"],["2024-07-24T14:24:57.010000"],["2024-07-24T14:24:58.010000"],["2024-07-24T14:24:59.010000"],["2024-07-24T14:25:00.010000"],["2024-07-24T14:25:01.010000"],["2024-07-24T14:25:02.010000"],["2024-07-24T14:25:03.010000"],["2024-07-24T14:25:04.010000"],["2024-07-24T14:25:05.010000"],["2024-07-24T14:25:06.010000"],["2024-07-24T14:25:07.010000"],["2024-07-24T14:25:08.010000"],["2024-07-24T14:25:09.010000"],["2024-07-24T14:25:10.010000"],["2024-07-24T14:25:11.010000"],["2024-07-24T14:25:12.010000"],["2024-07-24T14:25:13.010000"],["2024-07-24T14:25:14.010000"],["2024-07-24T14:25:15.010000"],["2024-07-24T14:25:16.010000"],["2024-07-24T14:25:17.010000"],["2024-07-24T14:25:18.010000"],["2024-07-24T14:25:19.010000"],["2024-07-24T14:25:20.010000"],["2024-07-24T14:25:21.010000"],["2024-07-24T14:25:22.010000"],["2024-07-24T14:25:23.010000"],["2024-07-24T14:25:24.010000"],["2024-07-24T14:25:25.010000"],["2024-07-24T14:25:26.010000"],["2024-07-24T14:25:27.010000"],["2024-07-24T14:25:28.010000"],["2024-07-24T14:25:29.010000"],["2024-07-24T14:25:30.010000"],["2024-07-24T14:25:31.010000"],["2024-07-24T14:25:32.010000"],["2024-07-24T14:25:33.010000"],["2024-07-24T14:25:34.010000"],["2024-07-24T14:25:35.010000"],["2024-07-24T14:25:36.010000"],["2024-07-24T14:25:37.010000"],["2024-07-24T14:25:38.010000"],["2024-07-24T14:25:39.010000"],["2024-07-24T14:25:40.010000"],["2024-07-24T14:25:41.010000"],["2024-07-24T14:25:42.010000"],["2024-07-24T14:25:43.010000"],["2024-07-24T14:25:44.010000"],["2024-07-24T14:25:45.010000"],["2024-07-24T14:25:46.010000"],["2024-07-24T14:25:47.010000"],["2024-07-24T14:25:48.010000"],["2024-07-24T14:25:49.010000"],["2024-07-24T14:25:50.010000"],["2024-07-24T14:25:51.010000"],["2024-07-24T14:25:52.010000"],["2024-07-24T14:25:53.010000"],["2024-07-24T14:25:54.010000"],["2024-07-24T14:25:55.010000"],["2024-07-24T14:25:56.010000"],["2024-07-24T14:25:57.010000"],["2024-07-24T14:25:58.010000"],["2024-07-24T14:25:59.010000"],["2024-07-24T14:26:00.010000"],["2024-07-24T14:26:01.010000"],["2024-07-24T14:26:02.010000"],["2024-07-24T14:26:03.010000"],["2024-07-24T14:26:04.010000"],["2024-07-24T14:26:05.010000"],["2024-07-24T14:26:06.010000"],["2024-07-24T14:26:07.010000"],["2024-07-24T14:26:08.010000"],["2024-07-24T14:26:09.010000"],["2024-07-24T14:26:10.010000"],["2024-07-24T14:26:11.010000"],["2024-07-24T14:26:12.010000"],["2024-07-24T14:26:13.010000"],["2024-07-24T14:26:14.010000"],["2024-07-24T14:26:15.010000"],["2024-07-24T14:26:16.010000"],["2024-07-24T14:26:17.010000"],["2024-07-24T14:26:18.010000"],["2024-07-24T14:26:19.010000"],["2024-07-24T14:26:20.010000"],["2024-07-24T14:26:21.010000"],["2024-07-24T14:26:22.010000"],["2024-07-24T14:26:23.010000"],["2024-07-24T14:26:24.010000"],["2024-07-24T14:26:25.010000"],["2024-07-24T14:26:26.010000"],["2024-07-24T14:26:27.010000"],["2024-07-24T14:26:28.010000"],["2024-07-24T14:26:29.010000"],["2024-07-24T14:26:30.010000"],["2024-07-24T14:26:31.010000"],["2024-07-24T14:26:32.010000"],["2024-07-24T14:26:33.010000"],["2024-07-24T14:26:34.010000"],["2024-07-24T14:26:35.010000"],["2024-07-24T14:26:36.010000"],["2024-07-24T14:26:37.010000"],["2024-07-24T14:26:38.010000"],["2024-07-24T14:26:39.010000"],["2024-07-24T14:26:40.010000"],["2024-07-24T14:26:41.010000"],["2024-07-24T14:26:42.010000"],["2024-07-24T14:26:43.010000"],["2024-07-24T14:26:44.010000"],["2024-07-24T14:26:45.010000"],["2024-07-24T14:26:46.010000"],["2024-07-24T14:26:47.010000"],["2024-07-24T14:26:48.010000"],["2024-07-24T14:26:49.010000"],["2024-07-24T14:26:50.010000"],["2024-07-24T14:26:51.010000"],["2024-07-24T14:26:52.010000"],["2024-07-24T14:26:53.010000"],["2024-07-24T14:26:54.010000"],["2024-07-24T14:26:55.010000"],["2024-07-24T14:26:56.010000"],["2024-07-24T14:26:57.010000"],["2024-07-24T14:26:58.010000"],["2024-07-24T14:26:59.010000"],["2024-07-24T14:27:00.010000"],["2024-07-24T14:27:01.010000"],["2024-07-24T14:27:02.010000"],["2024-07-24T14:27:03.010000"],["2024-07-24T14:27:04.010000"],["2024-07-24T14:27:05.010000"],["2024-07-24T14:27:06.010000"],["2024-07-24T14:27:07.010000"],["2024-07-24T14:27:08.010000"],["2024-07-24T14:27:09.010000"],["2024-07-24T14:27:10.010000"],["2024-07-24T14:27:11.010000"],["2024-07-24T14:27:12.010000"],["2024-07-24T14:27:13.010000"],["2024-07-24T14:27:14.010000"],["2024-07-24T14:27:15.010000"],["2024-07-24T14:27:16.010000"],["2024-07-24T14:27:17.010000"],["2024-07-24T14:27:18.010000"],["2024-07-24T14:27:19.010000"],["2024-07-24T14:27:20.010000"],["2024-07-24T14:27:21.010000"],["2024-07-24T14:27:22.010000"],["2024-07-24T14:27:23.010000"],["2024-07-24T14:27:24.010000"],["2024-07-24T14:27:25.010000"],["2024-07-24T14:27:26.010000"],["2024-07-24T14:27:27.010000"],["2024-07-24T14:27:28.010000"],["2024-07-24T14:27:29.010000"],["2024-07-24T14:27:30.010000"],["2024-07-24T14:27:31.010000"],["2024-07-24T14:27:32.010000"],["2024-07-24T14:27:33.010000"],["2024-07-24T14:27:34.010000"],["2024-07-24T14:27:35.010000"],["2024-07-24T14:27:36.010000"],["2024-07-24T14:27:37.010000"],["2024-07-24T14:27:38.010000"],["2024-07-24T14:27:39.010000"],["2024-07-24T14:27:40.010000"],["2024-07-24T14:27:41.010000"],["2024-07-24T14:27:42.010000"],["2024-07-24T14:27:43.010000"],["2024-07-24T14:27:44.010000"],["2024-07-24T14:27:45.010000"],["2024-07-24T14:27:46.010000"],["2024-07-24T14:27:47.010000"],["2024-07-24T14:27:48.010000"],["2024-07-24T14:27:49.010000"],["2024-07-24T14:27:50.010000"],["2024-07-24T14:27:51.010000"],["2024-07-24T14:27:52.010000"],["2024-07-24T14:27:53.010000"],["2024-07-24T14:27:54.010000"],["2024-07-24T14:27:55.010000"],["2024-07-24T14:27:56.010000"],["2024-07-24T14:27:57.010000"],["2024-07-24T14:27:58.010000"],["2024-07-24T14:27:59.010000"],["2024-07-24T14:28:00.010000"],["2024-07-24T14:28:01.010000"],["2024-07-24T14:28:02.010000"],["2024-07-24T14:28:03.010000"],["2024-07-24T14:28:04.010000"],["2024-07-24T14:28:05.010000"],["2024-07-24T14:28:06.010000"],["2024-07-24T14:28:07.010000"],["2024-07-24T14:28:08.010000"],["2024-07-24T14:28:09.010000"],["2024-07-24T14:28:10.010000"],["2024-07-24T14:28:11.010000"],["2024-07-24T14:28:12.010000"],["2024-07-24T14:28:13.010000"],["2024-07-24T14:28:14.010000"],["2024-07-24T14:28:15.010000"],["2024-07-24T14:28:16.010000"],["2024-07-24T14:28:17.010000"],["2024-07-24T14:28:18.010000"],["2024-07-24T14:28:19.010000"],["2024-07-24T14:28:20.010000"],["2024-07-24T14:28:21.010000"],["2024-07-24T14:28:22.010000"],["2024-07-24T14:28:23.010000"],["2024-07-24T14:28:24.010000"],["2024-07-24T14:28:25.010000"],["2024-07-24T14:28:26.010000"],["2024-07-24T14:28:27.010000"],["2024-07-24T14:28:28.010000"],["2024-07-24T14:28:29.010000"],["2024-07-24T14:28:30.010000"],["2024-07-24T14:28:31.010000"],["2024-07-24T14:28:32.010000"],["2024-07-24T14:28:33.010000"],["2024-07-24T14:28:34.010000"],["2024-07-24T14:28:35.010000"],["2024-07-24T14:28:36.010000"],["2024-07-24T14:28:37.010000"],["2024-07-24T14:28:38.010000"],["2024-07-24T14:28:39.010000"],["2024-07-24T14:28:40.010000"],["2024-07-24T14:28:41.010000"],["2024-07-24T14:28:42.010000"],["2024-07-24T14:28:43.010000"],["2024-07-24T14:28:44.010000"],["2024-07-24T14:28:45.010000"],["2024-07-24T14:28:46.010000"],["2024-07-24T14:28:47.010000"],["2024-07-24T14:28:48.010000"],["2024-07-24T14:28:49.010000"],["2024-07-24T14:28:50.010000"],["2024-07-24T14:28:51.010000"],["2024-07-24T14:28:52.010000"],["2024-07-24T14:28:53.010000"],["2024-07-24T14:28:54.010000"],["2024-07-24T14:28:55.010000"],["2024-07-24T14:28:56.010000"],["2024-07-24T14:28:57.010000"],["2024-07-24T14:28:58.010000"],["2024-07-24T14:28:59.010000"],["2024-07-24T14:29:00.010000"],["2024-07-24T14:29:01.010000"],["2024-07-24T14:29:02.010000"],["2024-07-24T14:29:03.010000"],["2024-07-24T14:29:04.010000"],["2024-07-24T14:29:05.010000"],["2024-07-24T14:29:06.010000"],["2024-07-24T14:29:07.010000"],["2024-07-24T14:29:08.010000"],["2024-07-24T14:29:09.010000"],["2024-07-24T14:29:10.010000"],["2024-07-24T14:29:11.010000"],["2024-07-24T14:29:12.010000"],["2024-07-24T14:29:13.010000"],["2024-07-24T14:29:14.010000"],["2024-07-24T14:29:15.010000"],["2024-07-24T14:29:16.010000"],["2024-07-24T14:29:17.010000"],["2024-07-24T14:29:18.010000"],["2024-07-24T14:29:19.010000"],["2024-07-24T14:29:20.010000"],["2024-07-24T14:29:21.010000"],["2024-07-24T14:29:22.010000"],["2024-07-24T14:29:23.010000"],["2024-07-24T14:29:24.010000"],["2024-07-24T14:29:25.010000"],["2024-07-24T14:29:26.010000"],["2024-07-24T14:29:27.010000"],["2024-07-24T14:29:28.010000"],["2024-07-24T14:29:29.010000"],["2024-07-24T14:29:30.010000"],["2024-07-24T14:29:31.010000"],["2024-07-24T14:29:32.010000"],["2024-07-24T14:29:33.010000"],["2024-07-24T14:29:34.010000"],["2024-07-24T14:29:35.010000"],["2024-07-24T14:29:36.010000"],["2024-07-24T14:29:37.010000"],["2024-07-24T14:29:38.010000"],["2024-07-24T14:29:39.010000"],["2024-07-24T14:29:40.010000"],["2024-07-24T14:29:41.010000"],["2024-07-24T14:29:42.010000"],["2024-07-24T14:29:43.010000"],["2024-07-24T14:29:44.010000"],["2024-07-24T14:29:45.010000"],["2024-07-24T14:29:46.010000"],["2024-07-24T14:29:47.010000"],["2024-07-24T14:29:48.010000"],["2024-07-24T14:29:49.010000"],["2024-07-24T14:29:50.010000"],["2024-07-24T14:29:51.010000"],["2024-07-24T14:29:52.010000"],["2024-07-24T14:29:53.010000"],["2024-07-24T14:29:54.010000"],["2024-07-24T14:29:55.010000"],["2024-07-24T14:29:56.010000"],["2024-07-24T14:29:57.010000"],["2024-07-24T14:29:58.010000"],["2024-07-24T14:29:59.010000"],["2024-07-24T14:30:00.010000"],["2024-07-24T14:30:01.010000"],["2024-07-24T14:30:02.010000"],["2024-07-24T14:30:03.010000"],["2024-07-24T14:30:04.010000"],["2024-07-24T14:30:05.010000"],["2024-07-24T14:30:06.010000"],["2024-07-24T14:30:07.010000"],["2024-07-24T14:30:08.010000"],["2024-07-24T14:30:09.010000"],["2024-07-24T14:30:10.010000"],["2024-07-24T14:30:11.010000"],["2024-07-24T14:30:12.010000"],["2024-07-24T14:30:13.010000"],["2024-07-24T14:30:14.010000"],["2024-07-24T14:30:15.010000"],["2024-07-24T14:30:16.010000"],["2024-07-24T14:30:17.010000"],["2024-07-24T14:30:18.010000"],["2024-07-24T14:30:19.010000"],["2024-07-24T14:30:20.010000"],["2024-07-24T14:30:21.010000"],["2024-07-24T14:30:22.010000"],["2024-07-24T14:30:23.010000"],["2024-07-24T14:30:24.010000"],["2024-07-24T14:30:25.010000"],["2024-07-24T14:30:26.010000"],["2024-07-24T14:30:27.010000"],["2024-07-24T14:30:28.010000"],["2024-07-24T14:30:29.010000"],["2024-07-24T14:30:30.010000"],["2024-07-24T14:30:31.010000"],["2024-07-24T14:30:32.010000"],["2024-07-24T14:30:33.010000"],["2024-07-24T14:30:34.010000"],["2024-07-24T14:30:35.010000"],["2024-07-24T14:30:36.010000"],["2024-07-24T14:30:37.010000"],["2024-07-24T14:30:38.010000"],["2024-07-24T14:30:39.010000"],["2024-07-24T14:30:40.010000"],["2024-07-24T14:30:41.010000"],["2024-07-24T14:30:42.010000"],["2024-07-24T14:30:43.010000"],["2024-07-24T14:30:44.010000"],["2024-07-24T14:30:45.010000"],["2024-07-24T14:30:46.010000"],["2024-07-24T14:30:47.010000"],["2024-07-24T14:30:48.010000"],["2024-07-24T14:30:49.010000"],["2024-07-24T14:30:50.010000"],["2024-07-24T14:30:51.010000"],["2024-07-24T14:30:52.010000"],["2024-07-24T14:30:53.010000"],["2024-07-24T14:30:54.010000"],["2024-07-24T14:30:55.010000"],["2024-07-24T14:30:56.010000"],["2024-07-24T14:30:57.010000"],["2024-07-24T14:30:58.010000"],["2024-07-24T14:30:59.010000"],["2024-07-24T14:31:00.010000"],["2024-07-24T14:31:01.010000"],["2024-07-24T14:31:02.010000"],["2024-07-24T14:31:03.010000"],["2024-07-24T14:31:04.010000"],["2024-07-24T14:31:05.010000"],["2024-07-24T14:31:06.010000"],["2024-07-24T14:31:07.010000"],["2024-07-24T14:31:08.010000"],["2024-07-24T14:31:09.010000"],["2024-07-24T14:31:10.010000"],["2024-07-24T14:31:11.010000"],["2024-07-24T14:31:12.010000"],["2024-07-24T14:31:13.010000"],["2024-07-24T14:31:14.010000"],["2024-07-24T14:31:15.010000"],["2024-07-24T14:31:16.010000"],["2024-07-24T14:31:17.010000"],["2024-07-24T14:31:18.010000"],["2024-07-24T14:31:19.010000"],["2024-07-24T14:31:20.010000"],["2024-07-24T14:31:21.010000"],["2024-07-24T14:31:22.010000"],["2024-07-24T14:31:23.010000"],["2024-07-24T14:31:24.010000"],["2024-07-24T14:31:25.010000"],["2024-07-24T14:31:26.010000"],["2024-07-24T14:31:27.010000"],["2024-07-24T14:31:28.010000"],["2024-07-24T14:31:29.010000"],["2024-07-24T14:31:30.010000"],["2024-07-24T14:31:31.010000"],["2024-07-24T14:31:32.010000"],["2024-07-24T14:31:33.010000"],["2024-07-24T14:31:34.010000"],["2024-07-24T14:31:35.010000"],["2024-07-24T14:31:36.010000"],["2024-07-24T14:31:37.010000"],["2024-07-24T14:31:38.010000"],["2024-07-24T14:31:39.010000"],["2024-07-24T14:31:40.010000"],["2024-07-24T14:31:41.010000"],["2024-07-24T14:31:42.010000"],["2024-07-24T14:31:43.010000"],["2024-07-24T14:31:44.010000"],["2024-07-24T14:31:45.010000"],["2024-07-24T14:31:46.010000"],["2024-07-24T14:31:47.010000"],["2024-07-24T14:31:48.010000"],["2024-07-24T14:31:49.010000"],["2024-07-24T14:31:50.010000"],["2024-07-24T14:31:51.010000"],["2024-07-24T14:31:52.010000"],["2024-07-24T14:31:53.010000"],["2024-07-24T14:31:54.010000"],["2024-07-24T14:31:55.010000"],["2024-07-24T14:31:56.010000"],["2024-07-24T14:31:57.010000"],["2024-07-24T14:31:58.010000"],["2024-07-24T14:31:59.010000"],["2024-07-24T14:32:00.010000"],["2024-07-24T14:32:01.010000"],["2024-07-24T14:32:02.010000"],["2024-07-24T14:32:03.010000"],["2024-07-24T14:32:04.010000"],["2024-07-24T14:32:05.010000"],["2024-07-24T14:32:06.010000"],["2024-07-24T14:32:07.010000"],["2024-07-24T14:32:08.010000"],["2024-07-24T14:32:09.010000"],["2024-07-24T14:32:10.010000"],["2024-07-24T14:32:11.010000"],["2024-07-24T14:32:12.010000"],["2024-07-24T14:32:13.010000"],["2024-07-24T14:32:14.010000"],["2024-07-24T14:32:15.010000"],["2024-07-24T14:32:16.010000"],["2024-07-24T14:32:17.010000"],["2024-07-24T14:32:18.010000"],["2024-07-24T14:32:19.010000"],["2024-07-24T14:32:20.010000"],["2024-07-24T14:32:21.010000"],["2024-07-24T14:32:22.010000"],["2024-07-24T14:32:23.010000"],["2024-07-24T14:32:24.010000"],["2024-07-24T14:32:25.010000"],["2024-07-24T14:32:26.010000"],["2024-07-24T14:32:27.010000"],["2024-07-24T14:32:28.010000"],["2024-07-24T14:32:29.010000"],["2024-07-24T14:32:30.010000"],["2024-07-24T14:32:31.010000"],["2024-07-24T14:32:32.010000"],["2024-07-24T14:32:33.010000"],["2024-07-24T14:32:34.010000"],["2024-07-24T14:32:35.010000"],["2024-07-24T14:32:36.010000"],["2024-07-24T14:32:37.010000"],["2024-07-24T14:32:38.010000"],["2024-07-24T14:32:39.010000"],["2024-07-24T14:32:40.010000"],["2024-07-24T14:32:41.010000"],["2024-07-24T14:32:42.010000"],["2024-07-24T14:32:43.010000"],["2024-07-24T14:32:44.010000"],["2024-07-24T14:32:45.010000"],["2024-07-24T14:32:46.010000"],["2024-07-24T14:32:47.010000"],["2024-07-24T14:32:48.010000"],["2024-07-24T14:32:49.010000"],["2024-07-24T14:32:50.010000"],["2024-07-24T14:32:51.010000"],["2024-07-24T14:32:52.010000"],["2024-07-24T14:32:53.010000"],["2024-07-24T14:32:54.010000"],["2024-07-24T14:32:55.010000"],["2024-07-24T14:32:56.010000"],["2024-07-24T14:32:57.010000"],["2024-07-24T14:32:58.010000"],["2024-07-24T14:32:59.010000"],["2024-07-24T14:33:00.010000"],["2024-07-24T14:33:01.010000"],["2024-07-24T14:33:02.010000"],["2024-07-24T14:33:03.010000"],["2024-07-24T14:33:04.010000"],["2024-07-24T14:33:05.010000"],["2024-07-24T14:33:06.010000"],["2024-07-24T14:33:07.010000"],["2024-07-24T14:33:08.010000"],["2024-07-24T14:33:09.010000"],["2024-07-24T14:33:10.010000"],["2024-07-24T14:33:11.010000"],["2024-07-24T14:33:12.010000"],["2024-07-24T14:33:13.010000"],["2024-07-24T14:33:14.010000"],["2024-07-24T14:33:15.010000"],["2024-07-24T14:33:16.010000"],["2024-07-24T14:33:17.010000"],["2024-07-24T14:33:18.010000"],["2024-07-24T14:33:19.010000"],["2024-07-24T14:33:20.010000"],["2024-07-24T14:33:21.010000"],["2024-07-24T14:33:22.010000"],["2024-07-24T14:33:23.010000"],["2024-07-24T14:33:24.010000"],["2024-07-24T14:33:25.010000"],["2024-07-24T14:33:26.010000"],["2024-07-24T14:33:27.010000"],["2024-07-24T14:33:28.010000"],["2024-07-24T14:33:29.010000"],["2024-07-24T14:33:30.010000"],["2024-07-24T14:33:31.010000"],["2024-07-24T14:33:32.010000"],["2024-07-24T14:33:33.010000"],["2024-07-24T14:33:34.010000"],["2024-07-24T14:33:35.010000"],["2024-07-24T14:33:36.010000"],["2024-07-24T14:33:37.010000"],["2024-07-24T14:33:38.010000"],["2024-07-24T14:33:39.010000"],["2024-07-24T14:33:40.010000"],["2024-07-24T14:33:41.010000"],["2024-07-24T14:33:42.010000"],["2024-07-24T14:33:43.010000"],["2024-07-24T14:33:44.010000"],["2024-07-24T14:33:45.010000"],["2024-07-24T14:33:46.010000"],["2024-07-24T14:33:47.010000"],["2024-07-24T14:33:48.010000"],["2024-07-24T14:33:49.010000"],["2024-07-24T14:33:50.010000"],["2024-07-24T14:33:51.010000"],["2024-07-24T14:33:52.010000"],["2024-07-24T14:33:53.010000"],["2024-07-24T14:33:54.010000"],["2024-07-24T14:33:55.010000"],["2024-07-24T14:33:56.010000"],["2024-07-24T14:33:57.010000"],["2024-07-24T14:33:58.010000"],["2024-07-24T14:33:59.010000"],["2024-07-24T14:34:00.010000"],["2024-07-24T14:34:01.010000"],["2024-07-24T14:34:02.010000"],["2024-07-24T14:34:03.010000"],["2024-07-24T14:34:04.010000"],["2024-07-24T14:34:05.010000"],["2024-07-24T14:34:06.010000"],["2024-07-24T14:34:07.010000"],["2024-07-24T14:34:08.010000"],["2024-07-24T14:34:09.010000"],["2024-07-24T14:34:10.010000"],["2024-07-24T14:34:11.010000"],["2024-07-24T14:34:12.010000"],["2024-07-24T14:34:13.010000"],["2024-07-24T14:34:14.010000"],["2024-07-24T14:34:15.010000"],["2024-07-24T14:34:16.010000"],["2024-07-24T14:34:17.010000"],["2024-07-24T14:34:18.010000"],["2024-07-24T14:34:19.010000"],["2024-07-24T14:34:20.010000"],["2024-07-24T14:34:21.010000"],["2024-07-24T14:34:22.010000"],["2024-07-24T14:34:23.010000"],["2024-07-24T14:34:24.010000"],["2024-07-24T14:34:25.010000"],["2024-07-24T14:34:26.010000"],["2024-07-24T14:34:27.010000"],["2024-07-24T14:34:28.010000"],["2024-07-24T14:34:29.010000"],["2024-07-24T14:34:30.010000"],["2024-07-24T14:34:31.010000"],["2024-07-24T14:34:32.010000"],["2024-07-24T14:34:33.010000"],["2024-07-24T14:34:34.010000"],["2024-07-24T14:34:35.010000"],["2024-07-24T14:34:36.010000"],["2024-07-24T14:34:37.010000"],["2024-07-24T14:34:38.010000"],["2024-07-24T14:34:39.010000"],["2024-07-24T14:34:40.010000"],["2024-07-24T14:34:41.010000"],["2024-07-24T14:34:42.010000"],["2024-07-24T14:34:43.010000"],["2024-07-24T14:34:44.010000"],["2024-07-24T14:34:45.010000"],["2024-07-24T14:34:46.010000"],["2024-07-24T14:34:47.010000"],["2024-07-24T14:34:48.010000"],["2024-07-24T14:34:49.010000"],["2024-07-24T14:34:50.010000"],["2024-07-24T14:34:51.010000"],["2024-07-24T14:34:52.010000"],["2024-07-24T14:34:53.010000"],["2024-07-24T14:34:54.010000"],["2024-07-24T14:34:55.010000"],["2024-07-24T14:34:56.010000"],["2024-07-24T14:34:57.010000"],["2024-07-24T14:34:58.010000"],["2024-07-24T14:34:59.010000"],["2024-07-24T14:35:00.010000"],["2024-07-24T14:35:01.010000"],["2024-07-24T14:35:02.010000"],["2024-07-24T14:35:03.010000"],["2024-07-24T14:35:04.010000"],["2024-07-24T14:35:05.010000"],["2024-07-24T14:35:06.010000"],["2024-07-24T14:35:07.010000"],["2024-07-24T14:35:08.010000"],["2024-07-24T14:35:09.010000"],["2024-07-24T14:35:10.010000"],["2024-07-24T14:35:11.010000"],["2024-07-24T14:35:12.010000"],["2024-07-24T14:35:13.010000"],["2024-07-24T14:35:14.010000"],["2024-07-24T14:35:15.010000"],["2024-07-24T14:35:16.010000"],["2024-07-24T14:35:17.010000"],["2024-07-24T14:35:18.010000"],["2024-07-24T14:35:19.010000"],["2024-07-24T14:35:20.010000"],["2024-07-24T14:35:21.010000"],["2024-07-24T14:35:22.010000"],["2024-07-24T14:35:23.010000"],["2024-07-24T14:35:24.010000"],["2024-07-24T14:35:25.010000"],["2024-07-24T14:35:26.010000"],["2024-07-24T14:35:27.010000"],["2024-07-24T14:35:28.010000"],["2024-07-24T14:35:29.010000"],["2024-07-24T14:35:30.010000"],["2024-07-24T14:35:31.010000"],["2024-07-24T14:35:32.010000"],["2024-07-24T14:35:33.010000"],["2024-07-24T14:35:34.010000"],["2024-07-24T14:35:35.010000"],["2024-07-24T14:35:36.010000"],["2024-07-24T14:35:37.010000"],["2024-07-24T14:35:38.010000"],["2024-07-24T14:35:39.010000"],["2024-07-24T14:35:40.010000"],["2024-07-24T14:35:41.010000"],["2024-07-24T14:35:42.010000"],["2024-07-24T14:35:43.010000"],["2024-07-24T14:35:44.010000"],["2024-07-24T14:35:45.010000"],["2024-07-24T14:35:46.010000"],["2024-07-24T14:35:47.010000"],["2024-07-24T14:35:48.010000"],["2024-07-24T14:35:49.010000"],["2024-07-24T14:35:50.010000"],["2024-07-24T14:35:51.010000"],["2024-07-24T14:35:52.010000"],["2024-07-24T14:35:53.010000"],["2024-07-24T14:35:54.010000"],["2024-07-24T14:35:55.010000"],["2024-07-24T14:35:56.010000"],["2024-07-24T14:35:57.010000"],["2024-07-24T14:35:58.010000"],["2024-07-24T14:35:59.010000"],["2024-07-24T14:36:00.010000"],["2024-07-24T14:36:01.010000"],["2024-07-24T14:36:02.010000"],["2024-07-24T14:36:03.010000"],["2024-07-24T14:36:04.010000"],["2024-07-24T14:36:05.010000"],["2024-07-24T14:36:06.010000"],["2024-07-24T14:36:07.010000"],["2024-07-24T14:36:08.010000"],["2024-07-24T14:36:09.010000"],["2024-07-24T14:36:10.010000"],["2024-07-24T14:36:11.010000"],["2024-07-24T14:36:12.010000"],["2024-07-24T14:36:13.010000"],["2024-07-24T14:36:14.010000"],["2024-07-24T14:36:15.010000"],["2024-07-24T14:36:16.010000"],["2024-07-24T14:36:17.010000"],["2024-07-24T14:36:18.010000"],["2024-07-24T14:36:19.010000"],["2024-07-24T14:36:20.010000"],["2024-07-24T14:36:21.010000"],["2024-07-24T14:36:22.010000"],["2024-07-24T14:36:23.010000"],["2024-07-24T14:36:24.010000"],["2024-07-24T14:36:25.010000"],["2024-07-24T14:36:26.010000"],["2024-07-24T14:36:27.010000"],["2024-07-24T14:36:28.010000"],["2024-07-24T14:36:29.010000"],["2024-07-24T14:36:30.010000"],["2024-07-24T14:36:31.010000"],["2024-07-24T14:36:32.010000"],["2024-07-24T14:36:33.010000"],["2024-07-24T14:36:34.010000"],["2024-07-24T14:36:35.010000"],["2024-07-24T14:36:36.010000"],["2024-07-24T14:36:37.010000"],["2024-07-24T14:36:38.010000"],["2024-07-24T14:36:39.010000"],["2024-07-24T14:36:40.010000"],["2024-07-24T14:36:41.010000"],["2024-07-24T14:36:42.010000"],["2024-07-24T14:36:43.010000"],["2024-07-24T14:36:44.010000"],["2024-07-24T14:36:45.010000"],["2024-07-24T14:36:46.010000"],["2024-07-24T14:36:47.010000"],["2024-07-24T14:36:48.010000"],["2024-07-24T14:36:49.010000"],["2024-07-24T14:36:50.010000"],["2024-07-24T14:36:51.010000"],["2024-07-24T14:36:52.010000"],["2024-07-24T14:36:53.010000"],["2024-07-24T14:36:54.010000"],["2024-07-24T14:36:55.010000"],["2024-07-24T14:36:56.010000"],["2024-07-24T14:36:57.010000"],["2024-07-24T14:36:58.010000"],["2024-07-24T14:36:59.010000"],["2024-07-24T14:37:00.010000"],["2024-07-24T14:37:01.010000"],["2024-07-24T14:37:02.010000"],["2024-07-24T14:37:03.010000"],["2024-07-24T14:37:04.010000"],["2024-07-24T14:37:05.010000"],["2024-07-24T14:37:06.010000"],["2024-07-24T14:37:07.010000"],["2024-07-24T14:37:08.010000"],["2024-07-24T14:37:09.010000"],["2024-07-24T14:37:10.010000"],["2024-07-24T14:37:11.010000"],["2024-07-24T14:37:12.010000"],["2024-07-24T14:37:13.010000"],["2024-07-24T14:37:14.010000"],["2024-07-24T14:37:15.010000"],["2024-07-24T14:37:16.010000"],["2024-07-24T14:37:17.010000"],["2024-07-24T14:37:18.010000"],["2024-07-24T14:37:19.010000"],["2024-07-24T14:37:20.010000"],["2024-07-24T14:37:21.010000"],["2024-07-24T14:37:22.010000"],["2024-07-24T14:37:23.010000"],["2024-07-24T14:37:24.010000"],["2024-07-24T14:37:25.010000"],["2024-07-24T14:37:26.010000"],["2024-07-24T14:37:27.010000"],["2024-07-24T14:37:28.010000"],["2024-07-24T14:37:29.010000"],["2024-07-24T14:37:30.010000"],["2024-07-24T14:37:31.010000"],["2024-07-24T14:37:32.010000"],["2024-07-24T14:37:33.010000"],["2024-07-24T14:37:34.010000"],["2024-07-24T14:37:35.010000"],["2024-07-24T14:37:36.010000"],["2024-07-24T14:37:37.010000"],["2024-07-24T14:37:38.010000"],["2024-07-24T14:37:39.010000"],["2024-07-24T14:37:40.010000"],["2024-07-24T14:37:41.010000"],["2024-07-24T14:37:42.010000"],["2024-07-24T14:37:43.010000"],["2024-07-24T14:37:44.010000"],["2024-07-24T14:37:45.010000"],["2024-07-24T14:37:46.010000"],["2024-07-24T14:37:47.010000"],["2024-07-24T14:37:48.010000"],["2024-07-24T14:37:49.010000"],["2024-07-24T14:37:50.010000"],["2024-07-24T14:37:51.010000"],["2024-07-24T14:37:52.010000"],["2024-07-24T14:37:53.010000"],["2024-07-24T14:37:54.010000"],["2024-07-24T14:37:55.010000"],["2024-07-24T14:37:56.010000"],["2024-07-24T14:37:57.010000"],["2024-07-24T14:37:58.010000"],["2024-07-24T14:37:59.010000"],["2024-07-24T14:38:00.010000"],["2024-07-24T14:38:01.010000"],["2024-07-24T14:38:02.010000"],["2024-07-24T14:38:03.010000"],["2024-07-24T14:38:04.010000"],["2024-07-24T14:38:05.010000"],["2024-07-24T14:38:06.010000"],["2024-07-24T14:38:07.010000"],["2024-07-24T14:38:08.010000"],["2024-07-24T14:38:09.010000"],["2024-07-24T14:38:10.010000"],["2024-07-24T14:38:11.010000"],["2024-07-24T14:38:12.010000"],["2024-07-24T14:38:13.010000"],["2024-07-24T14:38:14.010000"],["2024-07-24T14:38:15.010000"],["2024-07-24T14:38:16.010000"],["2024-07-24T14:38:17.010000"],["2024-07-24T14:38:18.010000"],["2024-07-24T14:38:19.010000"],["2024-07-24T14:38:20.010000"],["2024-07-24T14:38:21.010000"],["2024-07-24T14:38:22.010000"],["2024-07-24T14:38:23.010000"],["2024-07-24T14:38:24.010000"],["2024-07-24T14:38:25.010000"],["2024-07-24T14:38:26.010000"],["2024-07-24T14:38:27.010000"],["2024-07-24T14:38:28.010000"],["2024-07-24T14:38:29.010000"],["2024-07-24T14:38:30.010000"],["2024-07-24T14:38:31.010000"],["2024-07-24T14:38:32.010000"],["2024-07-24T14:38:33.010000"],["2024-07-24T14:38:34.010000"],["2024-07-24T14:38:35.010000"],["2024-07-24T14:38:36.010000"],["2024-07-24T14:38:37.010000"],["2024-07-24T14:38:38.010000"],["2024-07-24T14:38:39.010000"],["2024-07-24T14:38:40.010000"],["2024-07-24T14:38:41.010000"],["2024-07-24T14:38:42.010000"],["2024-07-24T14:38:43.010000"],["2024-07-24T14:38:44.010000"],["2024-07-24T14:38:45.010000"],["2024-07-24T14:38:46.010000"],["2024-07-24T14:38:47.010000"],["2024-07-24T14:38:48.010000"],["2024-07-24T14:38:49.010000"],["2024-07-24T14:38:50.010000"],["2024-07-24T14:38:51.010000"],["2024-07-24T14:38:52.010000"],["2024-07-24T14:38:53.010000"],["2024-07-24T14:38:54.010000"],["2024-07-24T14:38:55.010000"],["2024-07-24T14:38:56.010000"],["2024-07-24T14:38:57.010000"],["2024-07-24T14:38:58.010000"],["2024-07-24T14:38:59.010000"],["2024-07-24T14:39:00.010000"],["2024-07-24T14:39:01.010000"],["2024-07-24T14:39:02.010000"],["2024-07-24T14:39:03.010000"],["2024-07-24T14:39:04.010000"],["2024-07-24T14:39:05.010000"],["2024-07-24T14:39:06.010000"],["2024-07-24T14:39:07.010000"],["2024-07-24T14:39:08.010000"],["2024-07-24T14:39:09.010000"],["2024-07-24T14:39:10.010000"],["2024-07-24T14:39:11.010000"],["2024-07-24T14:39:12.010000"],["2024-07-24T14:39:13.010000"],["2024-07-24T14:39:14.010000"],["2024-07-24T14:39:15.010000"],["2024-07-24T14:39:16.010000"],["2024-07-24T14:39:17.010000"],["2024-07-24T14:39:18.010000"],["2024-07-24T14:39:19.010000"],["2024-07-24T14:39:20.010000"],["2024-07-24T14:39:21.010000"],["2024-07-24T14:39:22.010000"],["2024-07-24T14:39:23.010000"],["2024-07-24T14:39:24.010000"],["2024-07-24T14:39:25.010000"],["2024-07-24T14:39:26.010000"],["2024-07-24T14:39:27.010000"],["2024-07-24T14:39:28.010000"],["2024-07-24T14:39:29.010000"],["2024-07-24T14:39:30.010000"],["2024-07-24T14:39:31.010000"],["2024-07-24T14:39:32.010000"],["2024-07-24T14:39:33.010000"],["2024-07-24T14:39:34.010000"],["2024-07-24T14:39:35.010000"],["2024-07-24T14:39:36.010000"],["2024-07-24T14:39:37.010000"],["2024-07-24T14:39:38.010000"],["2024-07-24T14:39:39.010000"],["2024-07-24T14:39:40.010000"],["2024-07-24T14:39:41.010000"],["2024-07-24T14:39:42.010000"],["2024-07-24T14:39:43.010000"],["2024-07-24T14:39:44.010000"],["2024-07-24T14:39:45.010000"],["2024-07-24T14:39:46.010000"],["2024-07-24T14:39:47.010000"],["2024-07-24T14:39:48.010000"],["2024-07-24T14:39:49.010000"],["2024-07-24T14:39:50.010000"],["2024-07-24T14:39:51.010000"],["2024-07-24T14:39:52.010000"],["2024-07-24T14:39:53.010000"],["2024-07-24T14:39:54.010000"],["2024-07-24T14:39:55.010000"],["2024-07-24T14:39:56.010000"],["2024-07-24T14:39:57.010000"],["2024-07-24T14:39:58.010000"],["2024-07-24T14:39:59.010000"],["2024-07-24T14:40:00.010000"],["2024-07-24T14:40:01.010000"],["2024-07-24T14:40:02.010000"],["2024-07-24T14:40:03.010000"],["2024-07-24T14:40:04.010000"],["2024-07-24T14:40:05.010000"],["2024-07-24T14:40:06.010000"],["2024-07-24T14:40:07.010000"],["2024-07-24T14:40:08.010000"],["2024-07-24T14:40:09.010000"],["2024-07-24T14:40:10.010000"],["2024-07-24T14:40:11.010000"],["2024-07-24T14:40:12.010000"],["2024-07-24T14:40:13.010000"],["2024-07-24T14:40:14.010000"],["2024-07-24T14:40:15.010000"],["2024-07-24T14:40:16.010000"],["2024-07-24T14:40:17.010000"],["2024-07-24T14:40:18.010000"],["2024-07-24T14:40:19.010000"],["2024-07-24T14:40:20.010000"],["2024-07-24T14:40:21.010000"],["2024-07-24T14:40:22.010000"],["2024-07-24T14:40:23.010000"],["2024-07-24T14:40:24.010000"],["2024-07-24T14:40:25.010000"],["2024-07-24T14:40:26.010000"],["2024-07-24T14:40:27.010000"],["2024-07-24T14:40:28.010000"],["2024-07-24T14:40:29.010000"],["2024-07-24T14:40:30.010000"],["2024-07-24T14:40:31.010000"],["2024-07-24T14:40:32.010000"],["2024-07-24T14:40:33.010000"],["2024-07-24T14:40:34.010000"],["2024-07-24T14:40:35.010000"],["2024-07-24T14:40:36.010000"],["2024-07-24T14:40:37.010000"],["2024-07-24T14:40:38.010000"],["2024-07-24T14:40:39.010000"],["2024-07-24T14:40:40.010000"],["2024-07-24T14:40:41.010000"],["2024-07-24T14:40:42.010000"],["2024-07-24T14:40:43.010000"],["2024-07-24T14:40:44.010000"],["2024-07-24T14:40:45.010000"],["2024-07-24T14:40:46.010000"],["2024-07-24T14:40:47.010000"],["2024-07-24T14:40:48.010000"],["2024-07-24T14:40:49.010000"],["2024-07-24T14:40:50.010000"],["2024-07-24T14:40:51.010000"],["2024-07-24T14:40:52.010000"],["2024-07-24T14:40:53.010000"],["2024-07-24T14:40:54.010000"],["2024-07-24T14:40:55.010000"],["2024-07-24T14:40:56.010000"],["2024-07-24T14:40:57.010000"],["2024-07-24T14:40:58.010000"],["2024-07-24T14:40:59.010000"],["2024-07-24T14:41:00.010000"],["2024-07-24T14:41:01.010000"],["2024-07-24T14:41:02.010000"],["2024-07-24T14:41:03.010000"],["2024-07-24T14:41:04.010000"],["2024-07-24T14:41:05.010000"],["2024-07-24T14:41:06.010000"],["2024-07-24T14:41:07.010000"],["2024-07-24T14:41:08.010000"],["2024-07-24T14:41:09.010000"],["2024-07-24T14:41:10.010000"],["2024-07-24T14:41:11.010000"],["2024-07-24T14:41:12.010000"],["2024-07-24T14:41:13.010000"],["2024-07-24T14:41:14.010000"],["2024-07-24T14:41:15.010000"],["2024-07-24T14:41:16.010000"],["2024-07-24T14:41:17.010000"],["2024-07-24T14:41:18.010000"],["2024-07-24T14:41:19.010000"],["2024-07-24T14:41:20.010000"],["2024-07-24T14:41:21.010000"],["2024-07-24T14:41:22.010000"],["2024-07-24T14:41:23.010000"],["2024-07-24T14:41:24.010000"],["2024-07-24T14:41:25.010000"],["2024-07-24T14:41:26.010000"],["2024-07-24T14:41:27.010000"],["2024-07-24T14:41:28.010000"],["2024-07-24T14:41:29.010000"],["2024-07-24T14:41:30.010000"],["2024-07-24T14:41:31.010000"],["2024-07-24T14:41:32.010000"],["2024-07-24T14:41:33.010000"],["2024-07-24T14:41:34.010000"],["2024-07-24T14:41:35.010000"],["2024-07-24T14:41:36.010000"],["2024-07-24T14:41:37.010000"],["2024-07-24T14:41:38.010000"],["2024-07-24T14:41:39.010000"],["2024-07-24T14:41:40.010000"],["2024-07-24T14:41:41.010000"],["2024-07-24T14:41:42.010000"],["2024-07-24T14:41:43.010000"],["2024-07-24T14:41:44.010000"],["2024-07-24T14:41:45.010000"],["2024-07-24T14:41:46.010000"],["2024-07-24T14:41:47.010000"],["2024-07-24T14:41:48.010000"],["2024-07-24T14:41:49.010000"],["2024-07-24T14:41:50.010000"],["2024-07-24T14:41:51.010000"],["2024-07-24T14:41:52.010000"],["2024-07-24T14:41:53.010000"],["2024-07-24T14:41:54.010000"],["2024-07-24T14:41:55.010000"],["2024-07-24T14:41:56.010000"],["2024-07-24T14:41:57.010000"],["2024-07-24T14:41:58.010000"],["2024-07-24T14:41:59.010000"],["2024-07-24T14:42:00.010000"],["2024-07-24T14:42:01.010000"],["2024-07-24T14:42:02.010000"],["2024-07-24T14:42:03.010000"],["2024-07-24T14:42:04.010000"],["2024-07-24T14:42:05.010000"],["2024-07-24T14:42:06.010000"],["2024-07-24T14:42:07.010000"],["2024-07-24T14:42:08.010000"],["2024-07-24T14:42:09.010000"],["2024-07-24T14:42:10.010000"],["2024-07-24T14:42:11.010000"],["2024-07-24T14:42:12.010000"],["2024-07-24T14:42:13.010000"],["2024-07-24T14:42:14.010000"],["2024-07-24T14:42:15.010000"],["2024-07-24T14:42:16.010000"],["2024-07-24T14:42:17.010000"],["2024-07-24T14:42:18.010000"],["2024-07-24T14:42:19.010000"],["2024-07-24T14:42:20.010000"],["2024-07-24T14:42:21.010000"],["2024-07-24T14:42:22.010000"],["2024-07-24T14:42:23.010000"],["2024-07-24T14:42:24.010000"],["2024-07-24T14:42:25.010000"],["2024-07-24T14:42:26.010000"],["2024-07-24T14:42:27.010000"],["2024-07-24T14:42:28.010000"],["2024-07-24T14:42:29.010000"],["2024-07-24T14:42:30.010000"],["2024-07-24T14:42:31.010000"],["2024-07-24T14:42:32.010000"],["2024-07-24T14:42:33.010000"],["2024-07-24T14:42:34.010000"],["2024-07-24T14:42:35.010000"],["2024-07-24T14:42:36.010000"],["2024-07-24T14:42:37.010000"],["2024-07-24T14:42:38.010000"],["2024-07-24T14:42:39.010000"],["2024-07-24T14:42:40.010000"],["2024-07-24T14:42:41.010000"],["2024-07-24T14:42:42.010000"],["2024-07-24T14:42:43.010000"],["2024-07-24T14:42:44.010000"],["2024-07-24T14:42:45.010000"],["2024-07-24T14:42:46.010000"],["2024-07-24T14:42:47.010000"],["2024-07-24T14:42:48.010000"],["2024-07-24T14:42:49.010000"],["2024-07-24T14:42:50.010000"],["2024-07-24T14:42:51.010000"],["2024-07-24T14:42:52.010000"],["2024-07-24T14:42:53.010000"],["2024-07-24T14:42:54.010000"],["2024-07-24T14:42:55.010000"],["2024-07-24T14:42:56.010000"],["2024-07-24T14:42:57.010000"],["2024-07-24T14:42:58.010000"],["2024-07-24T14:42:59.010000"],["2024-07-24T14:43:00.010000"],["2024-07-24T14:43:01.010000"],["2024-07-24T14:43:02.010000"],["2024-07-24T14:43:03.010000"],["2024-07-24T14:43:04.010000"],["2024-07-24T14:43:05.010000"],["2024-07-24T14:43:06.010000"],["2024-07-24T14:43:07.010000"],["2024-07-24T14:43:08.010000"],["2024-07-24T14:43:09.010000"],["2024-07-24T14:43:10.010000"],["2024-07-24T14:43:11.010000"],["2024-07-24T14:43:12.010000"],["2024-07-24T14:43:13.010000"],["2024-07-24T14:43:14.010000"],["2024-07-24T14:43:15.010000"],["2024-07-24T14:43:16.010000"],["2024-07-24T14:43:17.010000"],["2024-07-24T14:43:18.010000"],["2024-07-24T14:43:19.010000"],["2024-07-24T14:43:20.010000"],["2024-07-24T14:43:21.010000"],["2024-07-24T14:43:22.010000"],["2024-07-24T14:43:23.010000"],["2024-07-24T14:43:24.010000"],["2024-07-24T14:43:25.010000"],["2024-07-24T14:43:26.010000"],["2024-07-24T14:43:27.010000"],["2024-07-24T14:43:28.010000"],["2024-07-24T14:43:29.010000"],["2024-07-24T14:43:30.010000"],["2024-07-24T14:43:31.010000"],["2024-07-24T14:43:32.010000"],["2024-07-24T14:43:33.010000"],["2024-07-24T14:43:34.010000"],["2024-07-24T14:43:35.010000"],["2024-07-24T14:43:36.010000"],["2024-07-24T14:43:37.010000"],["2024-07-24T14:43:38.010000"],["2024-07-24T14:43:39.010000"],["2024-07-24T14:43:40.010000"],["2024-07-24T14:43:41.010000"],["2024-07-24T14:43:42.010000"],["2024-07-24T14:43:43.010000"],["2024-07-24T14:43:44.010000"],["2024-07-24T14:43:45.010000"],["2024-07-24T14:43:46.010000"],["2024-07-24T14:43:47.010000"],["2024-07-24T14:43:48.010000"],["2024-07-24T14:43:49.010000"],["2024-07-24T14:43:50.010000"],["2024-07-24T14:43:51.010000"],["2024-07-24T14:43:52.010000"],["2024-07-24T14:43:53.010000"],["2024-07-24T14:43:54.010000"],["2024-07-24T14:43:55.010000"],["2024-07-24T14:43:56.010000"],["2024-07-24T14:43:57.010000"],["2024-07-24T14:43:58.010000"],["2024-07-24T14:43:59.010000"],["2024-07-24T14:44:00.010000"],["2024-07-24T14:44:01.010000"],["2024-07-24T14:44:02.010000"],["2024-07-24T14:44:03.010000"],["2024-07-24T14:44:04.010000"],["2024-07-24T14:44:05.010000"],["2024-07-24T14:44:06.010000"],["2024-07-24T14:44:07.010000"],["2024-07-24T14:44:08.010000"],["2024-07-24T14:44:09.010000"],["2024-07-24T14:44:10.010000"],["2024-07-24T14:44:11.010000"],["2024-07-24T14:44:12.010000"],["2024-07-24T14:44:13.010000"],["2024-07-24T14:44:14.010000"],["2024-07-24T14:44:15.010000"],["2024-07-24T14:44:16.010000"],["2024-07-24T14:44:17.010000"],["2024-07-24T14:44:18.010000"],["2024-07-24T14:44:19.010000"],["2024-07-24T14:44:20.010000"],["2024-07-24T14:44:21.010000"],["2024-07-24T14:44:22.010000"],["2024-07-24T14:44:23.010000"],["2024-07-24T14:44:24.010000"],["2024-07-24T14:44:25.010000"],["2024-07-24T14:44:26.010000"],["2024-07-24T14:44:27.010000"],["2024-07-24T14:44:28.010000"],["2024-07-24T14:44:29.010000"],["2024-07-24T14:44:30.010000"],["2024-07-24T14:44:31.010000"],["2024-07-24T14:44:32.010000"],["2024-07-24T14:44:33.010000"],["2024-07-24T14:44:34.010000"],["2024-07-24T14:44:35.010000"],["2024-07-24T14:44:36.010000"],["2024-07-24T14:44:37.010000"],["2024-07-24T14:44:38.010000"],["2024-07-24T14:44:39.010000"],["2024-07-24T14:44:40.010000"],["2024-07-24T14:44:41.010000"],["2024-07-24T14:44:42.010000"],["2024-07-24T14:44:43.010000"],["2024-07-24T14:44:44.010000"],["2024-07-24T14:44:45.010000"],["2024-07-24T14:44:46.010000"],["2024-07-24T14:44:47.010000"],["2024-07-24T14:44:48.010000"],["2024-07-24T14:44:49.010000"],["2024-07-24T14:44:50.010000"],["2024-07-24T14:44:51.010000"],["2024-07-24T14:44:52.010000"],["2024-07-24T14:44:53.010000"],["2024-07-24T14:44:54.010000"],["2024-07-24T14:44:55.010000"],["2024-07-24T14:44:56.010000"],["2024-07-24T14:44:57.010000"],["2024-07-24T14:44:58.010000"],["2024-07-24T14:44:59.010000"],["2024-07-24T14:45:00.010000"],["2024-07-24T14:45:01.010000"],["2024-07-24T14:45:02.010000"],["2024-07-24T14:45:03.010000"],["2024-07-24T14:45:04.010000"],["2024-07-24T14:45:05.010000"],["2024-07-24T14:45:06.010000"],["2024-07-24T14:45:07.010000"],["2024-07-24T14:45:08.010000"],["2024-07-24T14:45:09.010000"],["2024-07-24T14:45:10.010000"],["2024-07-24T14:45:11.010000"],["2024-07-24T14:45:12.010000"],["2024-07-24T14:45:13.010000"],["2024-07-24T14:45:14.010000"],["2024-07-24T14:45:15.010000"],["2024-07-24T14:45:16.010000"],["2024-07-24T14:45:17.010000"],["2024-07-24T14:45:18.010000"],["2024-07-24T14:45:19.010000"],["2024-07-24T14:45:20.010000"],["2024-07-24T14:45:21.010000"],["2024-07-24T14:45:22.010000"],["2024-07-24T14:45:23.010000"],["2024-07-24T14:45:24.010000"],["2024-07-24T14:45:25.010000"],["2024-07-24T14:45:26.010000"],["2024-07-24T14:45:27.010000"],["2024-07-24T14:45:28.010000"],["2024-07-24T14:45:29.010000"],["2024-07-24T14:45:30.010000"],["2024-07-24T14:45:31.010000"],["2024-07-24T14:45:32.010000"],["2024-07-24T14:45:33.010000"],["2024-07-24T14:45:34.010000"],["2024-07-24T14:45:35.010000"],["2024-07-24T14:45:36.010000"],["2024-07-24T14:45:37.010000"],["2024-07-24T14:45:38.010000"],["2024-07-24T14:45:39.010000"],["2024-07-24T14:45:40.010000"],["2024-07-24T14:45:41.010000"],["2024-07-24T14:45:42.010000"],["2024-07-24T14:45:43.010000"],["2024-07-24T14:45:44.010000"],["2024-07-24T14:45:45.010000"],["2024-07-24T14:45:46.010000"],["2024-07-24T14:45:47.010000"],["2024-07-24T14:45:48.010000"],["2024-07-24T14:45:49.010000"],["2024-07-24T14:45:50.010000"],["2024-07-24T14:45:51.010000"],["2024-07-24T14:45:52.010000"],["2024-07-24T14:45:53.010000"],["2024-07-24T14:45:54.010000"],["2024-07-24T14:45:55.010000"],["2024-07-24T14:45:56.010000"],["2024-07-24T14:45:57.010000"],["2024-07-24T14:45:58.010000"],["2024-07-24T14:45:59.010000"],["2024-07-24T14:46:00.010000"],["2024-07-24T14:46:01.010000"],["2024-07-24T14:46:02.010000"],["2024-07-24T14:46:03.010000"],["2024-07-24T14:46:04.010000"],["2024-07-24T14:46:05.010000"],["2024-07-24T14:46:06.010000"],["2024-07-24T14:46:07.010000"],["2024-07-24T14:46:08.010000"],["2024-07-24T14:46:09.010000"],["2024-07-24T14:46:10.010000"],["2024-07-24T14:46:11.010000"],["2024-07-24T14:46:12.010000"],["2024-07-24T14:46:13.010000"],["2024-07-24T14:46:14.010000"],["2024-07-24T14:46:15.010000"],["2024-07-24T14:46:16.010000"],["2024-07-24T14:46:17.010000"],["2024-07-24T14:46:18.010000"],["2024-07-24T14:46:19.010000"],["2024-07-24T14:46:20.010000"],["2024-07-24T14:46:21.010000"],["2024-07-24T14:46:22.010000"],["2024-07-24T14:46:23.010000"],["2024-07-24T14:46:24.010000"],["2024-07-24T14:46:25.010000"],["2024-07-24T14:46:26.010000"],["2024-07-24T14:46:27.010000"],["2024-07-24T14:46:28.010000"],["2024-07-24T14:46:29.010000"],["2024-07-24T14:46:30.010000"],["2024-07-24T14:46:31.010000"],["2024-07-24T14:46:32.010000"],["2024-07-24T14:46:33.010000"],["2024-07-24T14:46:34.010000"],["2024-07-24T14:46:35.010000"],["2024-07-24T14:46:36.010000"],["2024-07-24T14:46:37.010000"],["2024-07-24T14:46:38.010000"],["2024-07-24T14:46:39.010000"],["2024-07-24T14:46:40.010000"],["2024-07-24T14:46:41.010000"],["2024-07-24T14:46:42.010000"],["2024-07-24T14:46:43.010000"],["2024-07-24T14:46:44.010000"],["2024-07-24T14:46:45.010000"],["2024-07-24T14:46:46.010000"],["2024-07-24T14:46:47.010000"],["2024-07-24T14:46:48.010000"],["2024-07-24T14:46:49.010000"],["2024-07-24T14:46:50.010000"],["2024-07-24T14:46:51.010000"],["2024-07-24T14:46:52.010000"],["2024-07-24T14:46:53.010000"],["2024-07-24T14:46:54.010000"],["2024-07-24T14:46:55.010000"],["2024-07-24T14:46:56.010000"],["2024-07-24T14:46:57.010000"],["2024-07-24T14:46:58.010000"],["2024-07-24T14:46:59.010000"],["2024-07-24T14:47:00.010000"],["2024-07-24T14:47:01.010000"],["2024-07-24T14:47:02.010000"],["2024-07-24T14:47:03.010000"],["2024-07-24T14:47:04.010000"],["2024-07-24T14:47:05.010000"],["2024-07-24T14:47:06.010000"],["2024-07-24T14:47:07.010000"],["2024-07-24T14:47:08.010000"],["2024-07-24T14:47:09.010000"],["2024-07-24T14:47:10.010000"],["2024-07-24T14:47:11.010000"],["2024-07-24T14:47:12.010000"],["2024-07-24T14:47:13.010000"],["2024-07-24T14:47:14.010000"],["2024-07-24T14:47:15.010000"],["2024-07-24T14:47:16.010000"],["2024-07-24T14:47:17.010000"],["2024-07-24T14:47:18.010000"],["2024-07-24T14:47:19.010000"],["2024-07-24T14:47:20.010000"],["2024-07-24T14:47:21.010000"],["2024-07-24T14:47:22.010000"],["2024-07-24T14:47:23.010000"],["2024-07-24T14:47:24.010000"],["2024-07-24T14:47:25.010000"],["2024-07-24T14:47:26.010000"],["2024-07-24T14:47:27.010000"],["2024-07-24T14:47:28.010000"],["2024-07-24T14:47:29.010000"],["2024-07-24T14:47:30.010000"],["2024-07-24T14:47:31.010000"],["2024-07-24T14:47:32.010000"],["2024-07-24T14:47:33.010000"],["2024-07-24T14:47:34.010000"],["2024-07-24T14:47:35.010000"],["2024-07-24T14:47:36.010000"],["2024-07-24T14:47:37.010000"],["2024-07-24T14:47:38.010000"],["2024-07-24T14:47:39.010000"],["2024-07-24T14:47:40.010000"],["2024-07-24T14:47:41.010000"],["2024-07-24T14:47:42.010000"],["2024-07-24T14:47:43.010000"],["2024-07-24T14:47:44.010000"],["2024-07-24T14:47:45.010000"],["2024-07-24T14:47:46.010000"],["2024-07-24T14:47:47.010000"],["2024-07-24T14:47:48.010000"],["2024-07-24T14:47:49.010000"],["2024-07-24T14:47:50.010000"],["2024-07-24T14:47:51.010000"],["2024-07-24T14:47:52.010000"],["2024-07-24T14:47:53.010000"],["2024-07-24T14:47:54.010000"],["2024-07-24T14:47:55.010000"],["2024-07-24T14:47:56.010000"],["2024-07-24T14:47:57.010000"],["2024-07-24T14:47:58.010000"],["2024-07-24T14:47:59.010000"],["2024-07-24T14:48:00.010000"],["2024-07-24T14:48:01.010000"],["2024-07-24T14:48:02.010000"],["2024-07-24T14:48:03.010000"],["2024-07-24T14:48:04.010000"],["2024-07-24T14:48:05.010000"],["2024-07-24T14:48:06.010000"],["2024-07-24T14:48:07.010000"],["2024-07-24T14:48:08.010000"],["2024-07-24T14:48:09.010000"],["2024-07-24T14:48:10.010000"],["2024-07-24T14:48:11.010000"],["2024-07-24T14:48:12.010000"],["2024-07-24T14:48:13.010000"],["2024-07-24T14:48:14.010000"],["2024-07-24T14:48:15.010000"],["2024-07-24T14:48:16.010000"],["2024-07-24T14:48:17.010000"],["2024-07-24T14:48:18.010000"],["2024-07-24T14:48:19.010000"],["2024-07-24T14:48:20.010000"],["2024-07-24T14:48:21.010000"],["2024-07-24T14:48:22.010000"],["2024-07-24T14:48:23.010000"],["2024-07-24T14:48:24.010000"],["2024-07-24T14:48:25.010000"],["2024-07-24T14:48:26.010000"],["2024-07-24T14:48:27.010000"],["2024-07-24T14:48:28.010000"],["2024-07-24T14:48:29.010000"],["2024-07-24T14:48:30.010000"],["2024-07-24T14:48:31.010000"],["2024-07-24T14:48:32.010000"],["2024-07-24T14:48:33.010000"],["2024-07-24T14:48:34.010000"],["2024-07-24T14:48:35.010000"],["2024-07-24T14:48:36.010000"],["2024-07-24T14:48:37.010000"],["2024-07-24T14:48:38.010000"],["2024-07-24T14:48:39.010000"],["2024-07-24T14:48:40.010000"],["2024-07-24T14:48:41.010000"],["2024-07-24T14:48:42.010000"],["2024-07-24T14:48:43.010000"],["2024-07-24T14:48:44.010000"],["2024-07-24T14:48:45.010000"],["2024-07-24T14:48:46.010000"],["2024-07-24T14:48:47.010000"],["2024-07-24T14:48:48.010000"],["2024-07-24T14:48:49.010000"],["2024-07-24T14:48:50.010000"],["2024-07-24T14:48:51.010000"],["2024-07-24T14:48:52.010000"],["2024-07-24T14:48:53.010000"],["2024-07-24T14:48:54.010000"],["2024-07-24T14:48:55.010000"],["2024-07-24T14:48:56.010000"],["2024-07-24T14:48:57.010000"],["2024-07-24T14:48:58.010000"],["2024-07-24T14:48:59.010000"],["2024-07-24T14:49:00.010000"],["2024-07-24T14:49:01.010000"],["2024-07-24T14:49:02.010000"],["2024-07-24T14:49:03.010000"],["2024-07-24T14:49:04.010000"],["2024-07-24T14:49:05.010000"],["2024-07-24T14:49:06.010000"],["2024-07-24T14:49:07.010000"],["2024-07-24T14:49:08.010000"],["2024-07-24T14:49:09.010000"],["2024-07-24T14:49:10.010000"],["2024-07-24T14:49:11.010000"],["2024-07-24T14:49:12.010000"],["2024-07-24T14:49:13.010000"],["2024-07-24T14:49:14.010000"],["2024-07-24T14:49:15.010000"],["2024-07-24T14:49:16.010000"],["2024-07-24T14:49:17.010000"],["2024-07-24T14:49:18.010000"],["2024-07-24T14:49:19.010000"],["2024-07-24T14:49:20.010000"],["2024-07-24T14:49:21.010000"],["2024-07-24T14:49:22.010000"],["2024-07-24T14:49:23.010000"],["2024-07-24T14:49:24.010000"],["2024-07-24T14:49:25.010000"],["2024-07-24T14:49:26.010000"],["2024-07-24T14:49:27.010000"],["2024-07-24T14:49:28.010000"],["2024-07-24T14:49:29.010000"],["2024-07-24T14:49:30.010000"],["2024-07-24T14:49:31.010000"],["2024-07-24T14:49:32.010000"],["2024-07-24T14:49:33.010000"],["2024-07-24T14:49:34.010000"],["2024-07-24T14:49:35.010000"],["2024-07-24T14:49:36.010000"],["2024-07-24T14:49:37.010000"],["2024-07-24T14:49:38.010000"],["2024-07-24T14:49:39.010000"],["2024-07-24T14:49:40.010000"],["2024-07-24T14:49:41.010000"],["2024-07-24T14:49:42.010000"],["2024-07-24T14:49:43.010000"],["2024-07-24T14:49:44.010000"],["2024-07-24T14:49:45.010000"],["2024-07-24T14:49:46.010000"],["2024-07-24T14:49:47.010000"],["2024-07-24T14:49:48.010000"],["2024-07-24T14:49:49.010000"],["2024-07-24T14:49:50.010000"],["2024-07-24T14:49:51.010000"],["2024-07-24T14:49:52.010000"],["2024-07-24T14:49:53.010000"],["2024-07-24T14:49:54.010000"],["2024-07-24T14:49:55.010000"],["2024-07-24T14:49:56.010000"],["2024-07-24T14:49:57.010000"],["2024-07-24T14:49:58.010000"],["2024-07-24T14:49:59.010000"],["2024-07-24T14:50:00.010000"],["2024-07-24T14:50:01.010000"],["2024-07-24T14:50:02.010000"],["2024-07-24T14:50:03.010000"],["2024-07-24T14:50:04.010000"],["2024-07-24T14:50:05.010000"],["2024-07-24T14:50:06.010000"],["2024-07-24T14:50:07.010000"],["2024-07-24T14:50:08.010000"],["2024-07-24T14:50:09.010000"],["2024-07-24T14:50:10.010000"],["2024-07-24T14:50:11.010000"],["2024-07-24T14:50:12.010000"],["2024-07-24T14:50:13.010000"],["2024-07-24T14:50:14.010000"],["2024-07-24T14:50:15.010000"],["2024-07-24T14:50:16.010000"],["2024-07-24T14:50:17.010000"],["2024-07-24T14:50:18.010000"],["2024-07-24T14:50:19.010000"],["2024-07-24T14:50:20.010000"],["2024-07-24T14:50:21.010000"],["2024-07-24T14:50:22.010000"],["2024-07-24T14:50:23.010000"],["2024-07-24T14:50:24.010000"],["2024-07-24T14:50:25.010000"],["2024-07-24T14:50:26.010000"],["2024-07-24T14:50:27.010000"],["2024-07-24T14:50:28.010000"],["2024-07-24T14:50:29.010000"],["2024-07-24T14:50:30.010000"],["2024-07-24T14:50:31.010000"],["2024-07-24T14:50:32.010000"],["2024-07-24T14:50:33.010000"],["2024-07-24T14:50:34.010000"],["2024-07-24T14:50:35.010000"],["2024-07-24T14:50:36.010000"],["2024-07-24T14:50:37.010000"],["2024-07-24T14:50:38.010000"],["2024-07-24T14:50:39.010000"],["2024-07-24T14:50:40.010000"],["2024-07-24T14:50:41.010000"],["2024-07-24T14:50:42.010000"],["2024-07-24T14:50:43.010000"],["2024-07-24T14:50:44.010000"],["2024-07-24T14:50:45.010000"],["2024-07-24T14:50:46.010000"],["2024-07-24T14:50:47.010000"],["2024-07-24T14:50:48.010000"],["2024-07-24T14:50:49.010000"],["2024-07-24T14:50:50.010000"],["2024-07-24T14:50:51.010000"],["2024-07-24T14:50:52.010000"],["2024-07-24T14:50:53.010000"],["2024-07-24T14:50:54.010000"],["2024-07-24T14:50:55.010000"],["2024-07-24T14:50:56.010000"],["2024-07-24T14:50:57.010000"],["2024-07-24T14:50:58.010000"],["2024-07-24T14:50:59.010000"],["2024-07-24T14:51:00.010000"],["2024-07-24T14:51:01.010000"],["2024-07-24T14:51:02.010000"],["2024-07-24T14:51:03.010000"],["2024-07-24T14:51:04.010000"],["2024-07-24T14:51:05.010000"],["2024-07-24T14:51:06.010000"],["2024-07-24T14:51:07.010000"],["2024-07-24T14:51:08.010000"],["2024-07-24T14:51:09.010000"],["2024-07-24T14:51:10.010000"],["2024-07-24T14:51:11.010000"],["2024-07-24T14:51:12.010000"],["2024-07-24T14:51:13.010000"],["2024-07-24T14:51:14.010000"],["2024-07-24T14:51:15.010000"],["2024-07-24T14:51:16.010000"],["2024-07-24T14:51:17.010000"],["2024-07-24T14:51:18.010000"],["2024-07-24T14:51:19.010000"],["2024-07-24T14:51:20.010000"],["2024-07-24T14:51:21.010000"],["2024-07-24T14:51:22.010000"],["2024-07-24T14:51:23.010000"],["2024-07-24T14:51:24.010000"],["2024-07-24T14:51:25.010000"],["2024-07-24T14:51:26.010000"],["2024-07-24T14:51:27.010000"],["2024-07-24T14:51:28.010000"],["2024-07-24T14:51:29.010000"],["2024-07-24T14:51:30.010000"],["2024-07-24T14:51:31.010000"],["2024-07-24T14:51:32.010000"],["2024-07-24T14:51:33.010000"],["2024-07-24T14:51:34.010000"],["2024-07-24T14:51:35.010000"],["2024-07-24T14:51:36.010000"],["2024-07-24T14:51:37.010000"],["2024-07-24T14:51:38.010000"],["2024-07-24T14:51:39.010000"],["2024-07-24T14:51:40.010000"],["2024-07-24T14:51:41.010000"],["2024-07-24T14:51:42.010000"],["2024-07-24T14:51:43.010000"],["2024-07-24T14:51:44.010000"],["2024-07-24T14:51:45.010000"],["2024-07-24T14:51:46.010000"],["2024-07-24T14:51:47.010000"],["2024-07-24T14:51:48.010000"],["2024-07-24T14:51:49.010000"],["2024-07-24T14:51:50.010000"],["2024-07-24T14:51:51.010000"],["2024-07-24T14:51:52.010000"],["2024-07-24T14:51:53.010000"],["2024-07-24T14:51:54.010000"],["2024-07-24T14:51:55.010000"],["2024-07-24T14:51:56.010000"],["2024-07-24T14:51:57.010000"],["2024-07-24T14:51:58.010000"],["2024-07-24T14:51:59.010000"],["2024-07-24T14:52:00.010000"],["2024-07-24T14:52:01.010000"],["2024-07-24T14:52:02.010000"],["2024-07-24T14:52:03.010000"],["2024-07-24T14:52:04.010000"],["2024-07-24T14:52:05.010000"],["2024-07-24T14:52:06.010000"],["2024-07-24T14:52:07.010000"],["2024-07-24T14:52:08.010000"],["2024-07-24T14:52:09.010000"],["2024-07-24T14:52:10.010000"],["2024-07-24T14:52:11.010000"],["2024-07-24T14:52:12.010000"],["2024-07-24T14:52:13.010000"],["2024-07-24T14:52:14.010000"],["2024-07-24T14:52:15.010000"],["2024-07-24T14:52:16.010000"],["2024-07-24T14:52:17.010000"],["2024-07-24T14:52:18.010000"],["2024-07-24T14:52:19.010000"],["2024-07-24T14:52:20.010000"],["2024-07-24T14:52:21.010000"],["2024-07-24T14:52:22.010000"],["2024-07-24T14:52:23.010000"],["2024-07-24T14:52:24.010000"],["2024-07-24T14:52:25.010000"],["2024-07-24T14:52:26.010000"],["2024-07-24T14:52:27.010000"],["2024-07-24T14:52:28.010000"],["2024-07-24T14:52:29.010000"],["2024-07-24T14:52:30.010000"],["2024-07-24T14:52:31.010000"],["2024-07-24T14:52:32.010000"],["2024-07-24T14:52:33.010000"],["2024-07-24T14:52:34.010000"],["2024-07-24T14:52:35.010000"],["2024-07-24T14:52:36.010000"],["2024-07-24T14:52:37.010000"],["2024-07-24T14:52:38.010000"],["2024-07-24T14:52:39.010000"],["2024-07-24T14:52:40.010000"],["2024-07-24T14:52:41.010000"],["2024-07-24T14:52:42.010000"],["2024-07-24T14:52:43.010000"],["2024-07-24T14:52:44.010000"],["2024-07-24T14:52:45.010000"],["2024-07-24T14:52:46.010000"],["2024-07-24T14:52:47.010000"],["2024-07-24T14:52:48.010000"],["2024-07-24T14:52:49.010000"],["2024-07-24T14:52:50.010000"],["2024-07-24T14:52:51.010000"],["2024-07-24T14:52:52.010000"],["2024-07-24T14:52:53.010000"],["2024-07-24T14:52:54.010000"],["2024-07-24T14:52:55.010000"],["2024-07-24T14:52:56.010000"],["2024-07-24T14:52:57.010000"],["2024-07-24T14:52:58.010000"],["2024-07-24T14:52:59.010000"],["2024-07-24T14:53:00.010000"],["2024-07-24T14:53:01.010000"],["2024-07-24T14:53:02.010000"],["2024-07-24T14:53:03.010000"],["2024-07-24T14:53:04.010000"],["2024-07-24T14:53:05.010000"],["2024-07-24T14:53:06.010000"],["2024-07-24T14:53:07.010000"],["2024-07-24T14:53:08.010000"],["2024-07-24T14:53:09.010000"],["2024-07-24T14:53:10.010000"],["2024-07-24T14:53:11.010000"],["2024-07-24T14:53:12.010000"],["2024-07-24T14:53:13.010000"],["2024-07-24T14:53:14.010000"],["2024-07-24T14:53:15.010000"],["2024-07-24T14:53:16.010000"],["2024-07-24T14:53:17.010000"],["2024-07-24T14:53:18.010000"],["2024-07-24T14:53:19.010000"],["2024-07-24T14:53:20.010000"],["2024-07-24T14:53:21.010000"],["2024-07-24T14:53:22.010000"],["2024-07-24T14:53:23.010000"],["2024-07-24T14:53:24.010000"],["2024-07-24T14:53:25.010000"],["2024-07-24T14:53:26.010000"],["2024-07-24T14:53:27.010000"],["2024-07-24T14:53:28.010000"],["2024-07-24T14:53:29.010000"],["2024-07-24T14:53:30.010000"],["2024-07-24T14:53:31.010000"],["2024-07-24T14:53:32.010000"],["2024-07-24T14:53:33.010000"],["2024-07-24T14:53:34.010000"],["2024-07-24T14:53:35.010000"],["2024-07-24T14:53:36.010000"],["2024-07-24T14:53:37.010000"],["2024-07-24T14:53:38.010000"],["2024-07-24T14:53:39.010000"],["2024-07-24T14:53:40.010000"],["2024-07-24T14:53:41.010000"],["2024-07-24T14:53:42.010000"],["2024-07-24T14:53:43.010000"],["2024-07-24T14:53:44.010000"],["2024-07-24T14:53:45.010000"],["2024-07-24T14:53:46.010000"],["2024-07-24T14:53:47.010000"],["2024-07-24T14:53:48.010000"],["2024-07-24T14:53:49.010000"],["2024-07-24T14:53:50.010000"],["2024-07-24T14:53:51.010000"],["2024-07-24T14:53:52.010000"],["2024-07-24T14:53:53.010000"],["2024-07-24T14:53:54.010000"],["2024-07-24T14:53:55.010000"],["2024-07-24T14:53:56.010000"],["2024-07-24T14:53:57.010000"],["2024-07-24T14:53:58.010000"],["2024-07-24T14:53:59.010000"],["2024-07-24T14:54:00.010000"],["2024-07-24T14:54:01.010000"],["2024-07-24T14:54:02.010000"],["2024-07-24T14:54:03.010000"],["2024-07-24T14:54:04.010000"],["2024-07-24T14:54:05.010000"],["2024-07-24T14:54:06.010000"],["2024-07-24T14:54:07.010000"],["2024-07-24T14:54:08.010000"],["2024-07-24T14:54:09.010000"],["2024-07-24T14:54:10.010000"],["2024-07-24T14:54:11.010000"],["2024-07-24T14:54:12.010000"],["2024-07-24T14:54:13.010000"],["2024-07-24T14:54:14.010000"],["2024-07-24T14:54:15.010000"],["2024-07-24T14:54:16.010000"],["2024-07-24T14:54:17.010000"],["2024-07-24T14:54:18.010000"],["2024-07-24T14:54:19.010000"],["2024-07-24T14:54:20.010000"],["2024-07-24T14:54:21.010000"],["2024-07-24T14:54:22.010000"],["2024-07-24T14:54:23.010000"],["2024-07-24T14:54:24.010000"],["2024-07-24T14:54:25.010000"],["2024-07-24T14:54:26.010000"],["2024-07-24T14:54:27.010000"],["2024-07-24T14:54:28.010000"],["2024-07-24T14:54:29.010000"],["2024-07-24T14:54:30.010000"],["2024-07-24T14:54:31.010000"],["2024-07-24T14:54:32.010000"],["2024-07-24T14:54:33.010000"],["2024-07-24T14:54:34.010000"],["2024-07-24T14:54:35.010000"],["2024-07-24T14:54:36.010000"],["2024-07-24T14:54:37.010000"],["2024-07-24T14:54:38.010000"],["2024-07-24T14:54:39.010000"],["2024-07-24T14:54:40.010000"],["2024-07-24T14:54:41.010000"],["2024-07-24T14:54:42.010000"],["2024-07-24T14:54:43.010000"],["2024-07-24T14:54:44.010000"],["2024-07-24T14:54:45.010000"],["2024-07-24T14:54:46.010000"],["2024-07-24T14:54:47.010000"],["2024-07-24T14:54:48.010000"],["2024-07-24T14:54:49.010000"],["2024-07-24T14:54:50.010000"],["2024-07-24T14:54:51.010000"],["2024-07-24T14:54:52.010000"],["2024-07-24T14:54:53.010000"],["2024-07-24T14:54:54.010000"],["2024-07-24T14:54:55.010000"],["2024-07-24T14:54:56.010000"],["2024-07-24T14:54:57.010000"],["2024-07-24T14:54:58.010000"],["2024-07-24T14:54:59.010000"],["2024-07-24T14:55:00.010000"],["2024-07-24T14:55:01.010000"],["2024-07-24T14:55:02.010000"],["2024-07-24T14:55:03.010000"],["2024-07-24T14:55:04.010000"],["2024-07-24T14:55:05.010000"],["2024-07-24T14:55:06.010000"],["2024-07-24T14:55:07.010000"],["2024-07-24T14:55:08.010000"],["2024-07-24T14:55:09.010000"],["2024-07-24T14:55:10.010000"],["2024-07-24T14:55:11.010000"],["2024-07-24T14:55:12.010000"],["2024-07-24T14:55:13.010000"],["2024-07-24T14:55:14.010000"],["2024-07-24T14:55:15.010000"],["2024-07-24T14:55:16.010000"],["2024-07-24T14:55:17.010000"],["2024-07-24T14:55:18.010000"],["2024-07-24T14:55:19.010000"],["2024-07-24T14:55:20.010000"],["2024-07-24T14:55:21.010000"],["2024-07-24T14:55:22.010000"],["2024-07-24T14:55:23.010000"],["2024-07-24T14:55:24.010000"],["2024-07-24T14:55:25.010000"],["2024-07-24T14:55:26.010000"],["2024-07-24T14:55:27.010000"],["2024-07-24T14:55:28.010000"],["2024-07-24T14:55:29.010000"],["2024-07-24T14:55:30.010000"],["2024-07-24T14:55:31.010000"],["2024-07-24T14:55:32.010000"],["2024-07-24T14:55:33.010000"],["2024-07-24T14:55:34.010000"],["2024-07-24T14:55:35.010000"],["2024-07-24T14:55:36.010000"],["2024-07-24T14:55:37.010000"],["2024-07-24T14:55:38.010000"],["2024-07-24T14:55:39.010000"],["2024-07-24T14:55:40.010000"],["2024-07-24T14:55:41.010000"],["2024-07-24T14:55:42.010000"],["2024-07-24T14:55:43.010000"],["2024-07-24T14:55:44.010000"],["2024-07-24T14:55:45.010000"],["2024-07-24T14:55:46.010000"],["2024-07-24T14:55:47.010000"],["2024-07-24T14:55:48.010000"],["2024-07-24T14:55:49.010000"],["2024-07-24T14:55:50.010000"],["2024-07-24T14:55:51.010000"],["2024-07-24T14:55:52.010000"],["2024-07-24T14:55:53.010000"],["2024-07-24T14:55:54.010000"],["2024-07-24T14:55:55.010000"],["2024-07-24T14:55:56.010000"],["2024-07-24T14:55:57.010000"],["2024-07-24T14:55:58.010000"],["2024-07-24T14:55:59.010000"],["2024-07-24T14:56:00.010000"],["2024-07-24T14:56:01.010000"],["2024-07-24T14:56:02.010000"],["2024-07-24T14:56:03.010000"],["2024-07-24T14:56:04.010000"],["2024-07-24T14:56:05.010000"],["2024-07-24T14:56:06.010000"],["2024-07-24T14:56:07.010000"],["2024-07-24T14:56:08.010000"],["2024-07-24T14:56:09.010000"],["2024-07-24T14:56:10.010000"],["2024-07-24T14:56:11.010000"],["2024-07-24T14:56:12.010000"],["2024-07-24T14:56:13.010000"],["2024-07-24T14:56:14.010000"],["2024-07-24T14:56:15.010000"],["2024-07-24T14:56:16.010000"],["2024-07-24T14:56:17.010000"],["2024-07-24T14:56:18.010000"],["2024-07-24T14:56:19.010000"],["2024-07-24T14:56:20.010000"],["2024-07-24T14:56:21.010000"],["2024-07-24T14:56:22.010000"],["2024-07-24T14:56:23.010000"],["2024-07-24T14:56:24.010000"],["2024-07-24T14:56:25.010000"],["2024-07-24T14:56:26.010000"],["2024-07-24T14:56:27.010000"],["2024-07-24T14:56:28.010000"],["2024-07-24T14:56:29.010000"],["2024-07-24T14:56:30.010000"],["2024-07-24T14:56:31.010000"],["2024-07-24T14:56:32.010000"],["2024-07-24T14:56:33.010000"],["2024-07-24T14:56:34.010000"],["2024-07-24T14:56:35.010000"],["2024-07-24T14:56:36.010000"],["2024-07-24T14:56:37.010000"],["2024-07-24T14:56:38.010000"],["2024-07-24T14:56:39.010000"],["2024-07-24T14:56:40.010000"],["2024-07-24T14:56:41.010000"],["2024-07-24T14:56:42.010000"],["2024-07-24T14:56:43.010000"],["2024-07-24T14:56:44.010000"],["2024-07-24T14:56:45.010000"],["2024-07-24T14:56:46.010000"],["2024-07-24T14:56:47.010000"],["2024-07-24T14:56:48.010000"],["2024-07-24T14:56:49.010000"],["2024-07-24T14:56:50.010000"],["2024-07-24T14:56:51.010000"],["2024-07-24T14:56:52.010000"],["2024-07-24T14:56:53.010000"],["2024-07-24T14:56:54.010000"],["2024-07-24T14:56:55.010000"],["2024-07-24T14:56:56.010000"],["2024-07-24T14:56:57.010000"],["2024-07-24T14:56:58.010000"],["2024-07-24T14:56:59.010000"],["2024-07-24T14:57:00.010000"],["2024-07-24T14:57:01.010000"],["2024-07-24T14:57:02.010000"],["2024-07-24T14:57:03.010000"],["2024-07-24T14:57:04.010000"],["2024-07-24T14:57:05.010000"],["2024-07-24T14:57:06.010000"],["2024-07-24T14:57:07.010000"],["2024-07-24T14:57:08.010000"],["2024-07-24T14:57:09.010000"],["2024-07-24T14:57:10.010000"],["2024-07-24T14:57:11.010000"],["2024-07-24T14:57:12.010000"],["2024-07-24T14:57:13.010000"],["2024-07-24T14:57:14.010000"],["2024-07-24T14:57:15.010000"],["2024-07-24T14:57:16.010000"],["2024-07-24T14:57:17.010000"],["2024-07-24T14:57:18.010000"],["2024-07-24T14:57:19.010000"],["2024-07-24T14:57:20.010000"],["2024-07-24T14:57:21.010000"],["2024-07-24T14:57:22.010000"],["2024-07-24T14:57:23.010000"],["2024-07-24T14:57:24.010000"],["2024-07-24T14:57:25.010000"],["2024-07-24T14:57:26.010000"],["2024-07-24T14:57:27.010000"],["2024-07-24T14:57:28.010000"],["2024-07-24T14:57:29.010000"],["2024-07-24T14:57:30.010000"],["2024-07-24T14:57:31.010000"],["2024-07-24T14:57:32.010000"],["2024-07-24T14:57:33.010000"],["2024-07-24T14:57:34.010000"],["2024-07-24T14:57:35.010000"],["2024-07-24T14:57:36.010000"],["2024-07-24T14:57:37.010000"],["2024-07-24T14:57:38.010000"],["2024-07-24T14:57:39.010000"],["2024-07-24T14:57:40.010000"],["2024-07-24T14:57:41.010000"],["2024-07-24T14:57:42.010000"],["2024-07-24T14:57:43.010000"],["2024-07-24T14:57:44.010000"],["2024-07-24T14:57:45.010000"],["2024-07-24T14:57:46.010000"],["2024-07-24T14:57:47.010000"],["2024-07-24T14:57:48.010000"],["2024-07-24T14:57:49.010000"],["2024-07-24T14:57:50.010000"],["2024-07-24T14:57:51.010000"],["2024-07-24T14:57:52.010000"],["2024-07-24T14:57:53.010000"],["2024-07-24T14:57:54.010000"],["2024-07-24T14:57:55.010000"],["2024-07-24T14:57:56.010000"],["2024-07-24T14:57:57.010000"],["2024-07-24T14:57:58.010000"],["2024-07-24T14:57:59.010000"],["2024-07-24T14:58:00.010000"],["2024-07-24T14:58:01.010000"],["2024-07-24T14:58:02.010000"],["2024-07-24T14:58:03.010000"],["2024-07-24T14:58:04.010000"],["2024-07-24T14:58:05.010000"],["2024-07-24T14:58:06.010000"],["2024-07-24T14:58:07.010000"],["2024-07-24T14:58:08.010000"],["2024-07-24T14:58:09.010000"],["2024-07-24T14:58:10.010000"],["2024-07-24T14:58:11.010000"],["2024-07-24T14:58:12.010000"],["2024-07-24T14:58:13.010000"],["2024-07-24T14:58:14.010000"],["2024-07-24T14:58:15.010000"],["2024-07-24T14:58:16.010000"],["2024-07-24T14:58:17.010000"],["2024-07-24T14:58:18.010000"],["2024-07-24T14:58:19.010000"],["2024-07-24T14:58:20.010000"],["2024-07-24T14:58:21.010000"],["2024-07-24T14:58:22.010000"],["2024-07-24T14:58:23.010000"],["2024-07-24T14:58:24.010000"],["2024-07-24T14:58:25.010000"],["2024-07-24T14:58:26.010000"],["2024-07-24T14:58:27.010000"],["2024-07-24T14:58:28.010000"],["2024-07-24T14:58:29.010000"],["2024-07-24T14:58:30.010000"],["2024-07-24T14:58:31.010000"],["2024-07-24T14:58:32.010000"],["2024-07-24T14:58:33.010000"],["2024-07-24T14:58:34.010000"],["2024-07-24T14:58:35.010000"],["2024-07-24T14:58:36.010000"],["2024-07-24T14:58:37.010000"],["2024-07-24T14:58:38.010000"],["2024-07-24T14:58:39.010000"],["2024-07-24T14:58:40.010000"],["2024-07-24T14:58:41.010000"],["2024-07-24T14:58:42.010000"],["2024-07-24T14:58:43.010000"],["2024-07-24T14:58:44.010000"],["2024-07-24T14:58:45.010000"],["2024-07-24T14:58:46.010000"],["2024-07-24T14:58:47.010000"],["2024-07-24T14:58:48.010000"],["2024-07-24T14:58:49.010000"],["2024-07-24T14:58:50.010000"],["2024-07-24T14:58:51.010000"],["2024-07-24T14:58:52.010000"],["2024-07-24T14:58:53.010000"],["2024-07-24T14:58:54.010000"],["2024-07-24T14:58:55.010000"],["2024-07-24T14:58:56.010000"],["2024-07-24T14:58:57.010000"],["2024-07-24T14:58:58.010000"],["2024-07-24T14:58:59.010000"],["2024-07-24T14:59:00.010000"],["2024-07-24T14:59:01.010000"],["2024-07-24T14:59:02.010000"],["2024-07-24T14:59:03.010000"],["2024-07-24T14:59:04.010000"],["2024-07-24T14:59:05.010000"],["2024-07-24T14:59:06.010000"],["2024-07-24T14:59:07.010000"],["2024-07-24T14:59:08.010000"],["2024-07-24T14:59:09.010000"],["2024-07-24T14:59:10.010000"],["2024-07-24T14:59:11.010000"],["2024-07-24T14:59:12.010000"],["2024-07-24T14:59:13.010000"],["2024-07-24T14:59:14.010000"],["2024-07-24T14:59:15.010000"],["2024-07-24T14:59:16.010000"],["2024-07-24T14:59:17.010000"],["2024-07-24T14:59:18.010000"],["2024-07-24T14:59:19.010000"],["2024-07-24T14:59:20.010000"],["2024-07-24T14:59:21.010000"],["2024-07-24T14:59:22.010000"],["2024-07-24T14:59:23.010000"],["2024-07-24T14:59:24.010000"],["2024-07-24T14:59:25.010000"],["2024-07-24T14:59:26.010000"],["2024-07-24T14:59:27.010000"],["2024-07-24T14:59:28.010000"],["2024-07-24T14:59:29.010000"],["2024-07-24T14:59:30.010000"],["2024-07-24T14:59:31.010000"],["2024-07-24T14:59:32.010000"],["2024-07-24T14:59:33.010000"],["2024-07-24T14:59:34.010000"],["2024-07-24T14:59:35.010000"],["2024-07-24T14:59:36.010000"],["2024-07-24T14:59:37.010000"],["2024-07-24T14:59:38.010000"],["2024-07-24T14:59:39.010000"],["2024-07-24T14:59:40.010000"],["2024-07-24T14:59:41.010000"],["2024-07-24T14:59:42.010000"],["2024-07-24T14:59:43.010000"],["2024-07-24T14:59:44.010000"],["2024-07-24T14:59:45.010000"],["2024-07-24T14:59:46.010000"],["2024-07-24T14:59:47.010000"],["2024-07-24T14:59:48.010000"],["2024-07-24T14:59:49.010000"],["2024-07-24T14:59:50.010000"],["2024-07-24T14:59:51.010000"],["2024-07-24T14:59:52.010000"],["2024-07-24T14:59:53.010000"],["2024-07-24T14:59:54.010000"],["2024-07-24T14:59:55.010000"],["2024-07-24T14:59:56.010000"],["2024-07-24T14:59:57.010000"],["2024-07-24T14:59:58.010000"],["2024-07-24T14:59:59.010000"],["2024-07-24T15:00:00.010000"],["2024-07-24T15:00:01.010000"],["2024-07-24T15:00:02.010000"],["2024-07-24T15:00:03.010000"],["2024-07-24T15:00:04.010000"],["2024-07-24T15:00:05.010000"],["2024-07-24T15:00:06.010000"],["2024-07-24T15:00:07.010000"],["2024-07-24T15:00:08.010000"],["2024-07-24T15:00:09.010000"],["2024-07-24T15:00:10.010000"],["2024-07-24T15:00:11.010000"],["2024-07-24T15:00:12.010000"],["2024-07-24T15:00:13.010000"],["2024-07-24T15:00:14.010000"],["2024-07-24T15:00:15.010000"],["2024-07-24T15:00:16.010000"],["2024-07-24T15:00:17.010000"],["2024-07-24T15:00:18.010000"],["2024-07-24T15:00:19.010000"],["2024-07-24T15:00:20.010000"],["2024-07-24T15:00:21.010000"],["2024-07-24T15:00:22.010000"],["2024-07-24T15:00:23.010000"],["2024-07-24T15:00:24.010000"],["2024-07-24T15:00:25.010000"],["2024-07-24T15:00:26.010000"],["2024-07-24T15:00:27.010000"],["2024-07-24T15:00:28.010000"],["2024-07-24T15:00:29.010000"],["2024-07-24T15:00:30.010000"],["2024-07-24T15:00:31.010000"],["2024-07-24T15:00:32.010000"],["2024-07-24T15:00:33.010000"],["2024-07-24T15:00:34.010000"],["2024-07-24T15:00:35.010000"],["2024-07-24T15:00:36.010000"],["2024-07-24T15:00:37.010000"],["2024-07-24T15:00:38.010000"],["2024-07-24T15:00:39.010000"],["2024-07-24T15:00:40.010000"],["2024-07-24T15:00:41.010000"],["2024-07-24T15:00:42.010000"],["2024-07-24T15:00:43.010000"],["2024-07-24T15:00:44.010000"],["2024-07-24T15:00:45.010000"],["2024-07-24T15:00:46.010000"],["2024-07-24T15:00:47.010000"],["2024-07-24T15:00:48.010000"],["2024-07-24T15:00:49.010000"],["2024-07-24T15:00:50.010000"],["2024-07-24T15:00:51.010000"],["2024-07-24T15:00:52.010000"],["2024-07-24T15:00:53.010000"],["2024-07-24T15:00:54.010000"],["2024-07-24T15:00:55.010000"],["2024-07-24T15:00:56.010000"],["2024-07-24T15:00:57.010000"],["2024-07-24T15:00:58.010000"],["2024-07-24T15:00:59.010000"],["2024-07-24T15:01:00.010000"],["2024-07-24T15:01:01.010000"],["2024-07-24T15:01:02.010000"],["2024-07-24T15:01:03.010000"],["2024-07-24T15:01:04.010000"],["2024-07-24T15:01:05.010000"],["2024-07-24T15:01:06.010000"],["2024-07-24T15:01:07.010000"],["2024-07-24T15:01:08.010000"],["2024-07-24T15:01:09.010000"],["2024-07-24T15:01:10.010000"],["2024-07-24T15:01:11.010000"],["2024-07-24T15:01:12.010000"],["2024-07-24T15:01:13.010000"],["2024-07-24T15:01:14.010000"],["2024-07-24T15:01:15.010000"],["2024-07-24T15:01:16.010000"],["2024-07-24T15:01:17.010000"],["2024-07-24T15:01:18.010000"],["2024-07-24T15:01:19.010000"],["2024-07-24T15:01:20.010000"],["2024-07-24T15:01:21.010000"],["2024-07-24T15:01:22.010000"],["2024-07-24T15:01:23.010000"],["2024-07-24T15:01:24.010000"],["2024-07-24T15:01:25.010000"],["2024-07-24T15:01:26.010000"],["2024-07-24T15:01:27.010000"],["2024-07-24T15:01:28.010000"],["2024-07-24T15:01:29.010000"],["2024-07-24T15:01:30.010000"],["2024-07-24T15:01:31.010000"],["2024-07-24T15:01:32.010000"],["2024-07-24T15:01:33.010000"],["2024-07-24T15:01:34.010000"],["2024-07-24T15:01:35.010000"],["2024-07-24T15:01:36.010000"],["2024-07-24T15:01:37.010000"],["2024-07-24T15:01:38.010000"],["2024-07-24T15:01:39.010000"],["2024-07-24T15:01:40.010000"],["2024-07-24T15:01:41.010000"],["2024-07-24T15:01:42.010000"],["2024-07-24T15:01:43.010000"],["2024-07-24T15:01:44.010000"],["2024-07-24T15:01:45.010000"],["2024-07-24T15:01:46.010000"],["2024-07-24T15:01:47.010000"],["2024-07-24T15:01:48.010000"],["2024-07-24T15:01:49.010000"],["2024-07-24T15:01:50.010000"],["2024-07-24T15:01:51.010000"],["2024-07-24T15:01:52.010000"],["2024-07-24T15:01:53.010000"],["2024-07-24T15:01:54.010000"],["2024-07-24T15:01:55.010000"],["2024-07-24T15:01:56.010000"],["2024-07-24T15:01:57.010000"],["2024-07-24T15:01:58.010000"],["2024-07-24T15:01:59.010000"],["2024-07-24T15:02:00.010000"],["2024-07-24T15:02:01.010000"],["2024-07-24T15:02:02.010000"],["2024-07-24T15:02:03.010000"],["2024-07-24T15:02:04.010000"],["2024-07-24T15:02:05.010000"],["2024-07-24T15:02:06.010000"],["2024-07-24T15:02:07.010000"],["2024-07-24T15:02:08.010000"],["2024-07-24T15:02:09.010000"],["2024-07-24T15:02:10.010000"],["2024-07-24T15:02:11.010000"],["2024-07-24T15:02:12.010000"],["2024-07-24T15:02:13.010000"],["2024-07-24T15:02:14.010000"],["2024-07-24T15:02:15.010000"],["2024-07-24T15:02:16.010000"],["2024-07-24T15:02:17.010000"],["2024-07-24T15:02:18.010000"],["2024-07-24T15:02:19.010000"],["2024-07-24T15:02:20.010000"],["2024-07-24T15:02:21.010000"],["2024-07-24T15:02:22.010000"],["2024-07-24T15:02:23.010000"],["2024-07-24T15:02:24.010000"],["2024-07-24T15:02:25.010000"],["2024-07-24T15:02:26.010000"],["2024-07-24T15:02:27.010000"],["2024-07-24T15:02:28.010000"],["2024-07-24T15:02:29.010000"],["2024-07-24T15:02:30.010000"],["2024-07-24T15:02:31.010000"],["2024-07-24T15:02:32.010000"],["2024-07-24T15:02:33.010000"],["2024-07-24T15:02:34.010000"],["2024-07-24T15:02:35.010000"],["2024-07-24T15:02:36.010000"],["2024-07-24T15:02:37.010000"],["2024-07-24T15:02:38.010000"],["2024-07-24T15:02:39.010000"],["2024-07-24T15:02:40.010000"],["2024-07-24T15:02:41.010000"],["2024-07-24T15:02:42.010000"],["2024-07-24T15:02:43.010000"],["2024-07-24T15:02:44.010000"],["2024-07-24T15:02:45.010000"],["2024-07-24T15:02:46.010000"],["2024-07-24T15:02:47.010000"],["2024-07-24T15:02:48.010000"],["2024-07-24T15:02:49.010000"],["2024-07-24T15:02:50.010000"],["2024-07-24T15:02:51.010000"],["2024-07-24T15:02:52.010000"],["2024-07-24T15:02:53.010000"],["2024-07-24T15:02:54.010000"],["2024-07-24T15:02:55.010000"],["2024-07-24T15:02:56.010000"],["2024-07-24T15:02:57.010000"],["2024-07-24T15:02:58.010000"],["2024-07-24T15:02:59.010000"],["2024-07-24T15:03:00.010000"],["2024-07-24T15:03:01.010000"],["2024-07-24T15:03:02.010000"],["2024-07-24T15:03:03.010000"],["2024-07-24T15:03:04.010000"],["2024-07-24T15:03:05.010000"],["2024-07-24T15:03:06.010000"],["2024-07-24T15:03:07.010000"],["2024-07-24T15:03:08.010000"],["2024-07-24T15:03:09.010000"],["2024-07-24T15:03:10.010000"],["2024-07-24T15:03:11.010000"],["2024-07-24T15:03:12.010000"],["2024-07-24T15:03:13.010000"],["2024-07-24T15:03:14.010000"],["2024-07-24T15:03:15.010000"],["2024-07-24T15:03:16.010000"],["2024-07-24T15:03:17.010000"],["2024-07-24T15:03:18.010000"],["2024-07-24T15:03:19.010000"],["2024-07-24T15:03:20.010000"],["2024-07-24T15:03:21.010000"],["2024-07-24T15:03:22.010000"],["2024-07-24T15:03:23.010000"],["2024-07-24T15:03:24.010000"],["2024-07-24T15:03:25.010000"],["2024-07-24T15:03:26.010000"],["2024-07-24T15:03:27.010000"],["2024-07-24T15:03:28.010000"],["2024-07-24T15:03:29.010000"],["2024-07-24T15:03:30.010000"],["2024-07-24T15:03:31.010000"],["2024-07-24T15:03:32.010000"],["2024-07-24T15:03:33.010000"],["2024-07-24T15:03:34.010000"],["2024-07-24T15:03:35.010000"],["2024-07-24T15:03:36.010000"],["2024-07-24T15:03:37.010000"],["2024-07-24T15:03:38.010000"],["2024-07-24T15:03:39.010000"],["2024-07-24T15:03:40.010000"],["2024-07-24T15:03:41.010000"],["2024-07-24T15:03:42.010000"],["2024-07-24T15:03:43.010000"],["2024-07-24T15:03:44.010000"],["2024-07-24T15:03:45.010000"],["2024-07-24T15:03:46.010000"],["2024-07-24T15:03:47.010000"],["2024-07-24T15:03:48.010000"],["2024-07-24T15:03:49.010000"],["2024-07-24T15:03:50.010000"],["2024-07-24T15:03:51.010000"],["2024-07-24T15:03:52.010000"],["2024-07-24T15:03:53.010000"],["2024-07-24T15:03:54.010000"],["2024-07-24T15:03:55.010000"],["2024-07-24T15:03:56.010000"],["2024-07-24T15:03:57.010000"],["2024-07-24T15:03:58.010000"],["2024-07-24T15:03:59.010000"],["2024-07-24T15:04:00.010000"],["2024-07-24T15:04:01.010000"],["2024-07-24T15:04:02.010000"],["2024-07-24T15:04:03.010000"],["2024-07-24T15:04:04.010000"],["2024-07-24T15:04:05.010000"],["2024-07-24T15:04:06.010000"],["2024-07-24T15:04:07.010000"],["2024-07-24T15:04:08.010000"],["2024-07-24T15:04:09.010000"],["2024-07-24T15:04:10.010000"],["2024-07-24T15:04:11.010000"],["2024-07-24T15:04:12.010000"],["2024-07-24T15:04:13.010000"],["2024-07-24T15:04:14.010000"],["2024-07-24T15:04:15.010000"],["2024-07-24T15:04:16.010000"],["2024-07-24T15:04:17.010000"],["2024-07-24T15:04:18.010000"],["2024-07-24T15:04:19.010000"],["2024-07-24T15:04:20.010000"],["2024-07-24T15:04:21.010000"],["2024-07-24T15:04:22.010000"],["2024-07-24T15:04:23.010000"],["2024-07-24T15:04:24.010000"],["2024-07-24T15:04:25.010000"],["2024-07-24T15:04:26.010000"],["2024-07-24T15:04:27.010000"],["2024-07-24T15:04:28.010000"],["2024-07-24T15:04:29.010000"],["2024-07-24T15:04:30.010000"],["2024-07-24T15:04:31.010000"],["2024-07-24T15:04:32.010000"],["2024-07-24T15:04:33.010000"],["2024-07-24T15:04:34.010000"],["2024-07-24T15:04:35.010000"],["2024-07-24T15:04:36.010000"],["2024-07-24T15:04:37.010000"],["2024-07-24T15:04:38.010000"],["2024-07-24T15:04:39.010000"],["2024-07-24T15:04:40.010000"],["2024-07-24T15:04:41.010000"],["2024-07-24T15:04:42.010000"],["2024-07-24T15:04:43.010000"],["2024-07-24T15:04:44.010000"],["2024-07-24T15:04:45.010000"],["2024-07-24T15:04:46.010000"],["2024-07-24T15:04:47.010000"],["2024-07-24T15:04:48.010000"],["2024-07-24T15:04:49.010000"],["2024-07-24T15:04:50.010000"],["2024-07-24T15:04:51.010000"],["2024-07-24T15:04:52.010000"],["2024-07-24T15:04:53.010000"],["2024-07-24T15:04:54.010000"],["2024-07-24T15:04:55.010000"],["2024-07-24T15:04:56.010000"],["2024-07-24T15:04:57.010000"],["2024-07-24T15:04:58.010000"],["2024-07-24T15:04:59.010000"],["2024-07-24T15:05:00.010000"],["2024-07-24T15:05:01.010000"],["2024-07-24T15:05:02.010000"],["2024-07-24T15:05:03.010000"],["2024-07-24T15:05:04.010000"],["2024-07-24T15:05:05.010000"],["2024-07-24T15:05:06.010000"],["2024-07-24T15:05:07.010000"],["2024-07-24T15:05:08.010000"],["2024-07-24T15:05:09.010000"],["2024-07-24T15:05:10.010000"],["2024-07-24T15:05:11.010000"],["2024-07-24T15:05:12.010000"],["2024-07-24T15:05:13.010000"],["2024-07-24T15:05:14.010000"],["2024-07-24T15:05:15.010000"],["2024-07-24T15:05:16.010000"],["2024-07-24T15:05:17.010000"],["2024-07-24T15:05:18.010000"],["2024-07-24T15:05:19.010000"],["2024-07-24T15:05:20.010000"],["2024-07-24T15:05:21.010000"],["2024-07-24T15:05:22.010000"],["2024-07-24T15:05:23.010000"],["2024-07-24T15:05:24.010000"],["2024-07-24T15:05:25.010000"],["2024-07-24T15:05:26.010000"],["2024-07-24T15:05:27.010000"],["2024-07-24T15:05:28.010000"],["2024-07-24T15:05:29.010000"],["2024-07-24T15:05:30.010000"],["2024-07-24T15:05:31.010000"],["2024-07-24T15:05:32.010000"],["2024-07-24T15:05:33.010000"],["2024-07-24T15:05:34.010000"],["2024-07-24T15:05:35.010000"],["2024-07-24T15:05:36.010000"],["2024-07-24T15:05:37.010000"],["2024-07-24T15:05:38.010000"],["2024-07-24T15:05:39.010000"],["2024-07-24T15:05:40.010000"],["2024-07-24T15:05:41.010000"],["2024-07-24T15:05:42.010000"],["2024-07-24T15:05:43.010000"],["2024-07-24T15:05:44.010000"],["2024-07-24T15:05:45.010000"],["2024-07-24T15:05:46.010000"],["2024-07-24T15:05:47.010000"],["2024-07-24T15:05:48.010000"],["2024-07-24T15:05:49.010000"],["2024-07-24T15:05:50.010000"],["2024-07-24T15:05:51.010000"],["2024-07-24T15:05:52.010000"],["2024-07-24T15:05:53.010000"],["2024-07-24T15:05:54.010000"],["2024-07-24T15:05:55.010000"],["2024-07-24T15:05:56.010000"],["2024-07-24T15:05:57.010000"],["2024-07-24T15:05:58.010000"],["2024-07-24T15:05:59.010000"],["2024-07-24T15:06:00.010000"],["2024-07-24T15:06:01.010000"],["2024-07-24T15:06:02.010000"],["2024-07-24T15:06:03.010000"],["2024-07-24T15:06:04.010000"],["2024-07-24T15:06:05.010000"],["2024-07-24T15:06:06.010000"],["2024-07-24T15:06:07.010000"],["2024-07-24T15:06:08.010000"],["2024-07-24T15:06:09.010000"],["2024-07-24T15:06:10.010000"],["2024-07-24T15:06:11.010000"],["2024-07-24T15:06:12.010000"],["2024-07-24T15:06:13.010000"],["2024-07-24T15:06:14.010000"],["2024-07-24T15:06:15.010000"],["2024-07-24T15:06:16.010000"],["2024-07-24T15:06:17.010000"],["2024-07-24T15:06:18.010000"],["2024-07-24T15:06:19.010000"],["2024-07-24T15:06:20.010000"],["2024-07-24T15:06:21.010000"],["2024-07-24T15:06:22.010000"],["2024-07-24T15:06:23.010000"],["2024-07-24T15:06:24.010000"],["2024-07-24T15:06:25.010000"],["2024-07-24T15:06:26.010000"],["2024-07-24T15:06:27.010000"],["2024-07-24T15:06:28.010000"],["2024-07-24T15:06:29.010000"],["2024-07-24T15:06:30.010000"],["2024-07-24T15:06:31.010000"],["2024-07-24T15:06:32.010000"],["2024-07-24T15:06:33.010000"],["2024-07-24T15:06:34.010000"],["2024-07-24T15:06:35.010000"],["2024-07-24T15:06:36.010000"],["2024-07-24T15:06:37.010000"],["2024-07-24T15:06:38.010000"],["2024-07-24T15:06:39.010000"],["2024-07-24T15:06:40.010000"],["2024-07-24T15:06:41.010000"],["2024-07-24T15:06:42.010000"],["2024-07-24T15:06:43.010000"],["2024-07-24T15:06:44.010000"],["2024-07-24T15:06:45.010000"],["2024-07-24T15:06:46.010000"],["2024-07-24T15:06:47.010000"],["2024-07-24T15:06:48.010000"],["2024-07-24T15:06:49.010000"],["2024-07-24T15:06:50.010000"],["2024-07-24T15:06:51.010000"],["2024-07-24T15:06:52.010000"],["2024-07-24T15:06:53.010000"],["2024-07-24T15:06:54.010000"],["2024-07-24T15:06:55.010000"],["2024-07-24T15:06:56.010000"],["2024-07-24T15:06:57.010000"],["2024-07-24T15:06:58.010000"],["2024-07-24T15:06:59.010000"],["2024-07-24T15:07:00.010000"],["2024-07-24T15:07:01.010000"],["2024-07-24T15:07:02.010000"],["2024-07-24T15:07:03.010000"],["2024-07-24T15:07:04.010000"],["2024-07-24T15:07:05.010000"],["2024-07-24T15:07:06.010000"],["2024-07-24T15:07:07.010000"],["2024-07-24T15:07:08.010000"],["2024-07-24T15:07:09.010000"],["2024-07-24T15:07:10.010000"],["2024-07-24T15:07:11.010000"],["2024-07-24T15:07:12.010000"],["2024-07-24T15:07:13.010000"],["2024-07-24T15:07:14.010000"],["2024-07-24T15:07:15.010000"],["2024-07-24T15:07:16.010000"],["2024-07-24T15:07:17.010000"],["2024-07-24T15:07:18.010000"],["2024-07-24T15:07:19.010000"],["2024-07-24T15:07:20.010000"],["2024-07-24T15:07:21.010000"],["2024-07-24T15:07:22.010000"],["2024-07-24T15:07:23.010000"],["2024-07-24T15:07:24.010000"],["2024-07-24T15:07:25.010000"],["2024-07-24T15:07:26.010000"],["2024-07-24T15:07:27.010000"],["2024-07-24T15:07:28.010000"],["2024-07-24T15:07:29.010000"],["2024-07-24T15:07:30.010000"],["2024-07-24T15:07:31.010000"],["2024-07-24T15:07:32.010000"],["2024-07-24T15:07:33.010000"],["2024-07-24T15:07:34.010000"],["2024-07-24T15:07:35.010000"],["2024-07-24T15:07:36.010000"],["2024-07-24T15:07:37.010000"],["2024-07-24T15:07:38.010000"],["2024-07-24T15:07:39.010000"],["2024-07-24T15:07:40.010000"],["2024-07-24T15:07:41.010000"],["2024-07-24T15:07:42.010000"],["2024-07-24T15:07:43.010000"],["2024-07-24T15:07:44.010000"],["2024-07-24T15:07:45.010000"],["2024-07-24T15:07:46.010000"],["2024-07-24T15:07:47.010000"],["2024-07-24T15:07:48.010000"],["2024-07-24T15:07:49.010000"],["2024-07-24T15:07:50.010000"],["2024-07-24T15:07:51.010000"],["2024-07-24T15:07:52.010000"],["2024-07-24T15:07:53.010000"],["2024-07-24T15:07:54.010000"],["2024-07-24T15:07:55.010000"],["2024-07-24T15:07:56.010000"],["2024-07-24T15:07:57.010000"],["2024-07-24T15:07:58.010000"],["2024-07-24T15:07:59.010000"],["2024-07-24T15:08:00.010000"],["2024-07-24T15:08:01.010000"],["2024-07-24T15:08:02.010000"],["2024-07-24T15:08:03.010000"],["2024-07-24T15:08:04.010000"],["2024-07-24T15:08:05.010000"],["2024-07-24T15:08:06.010000"],["2024-07-24T15:08:07.010000"],["2024-07-24T15:08:08.010000"],["2024-07-24T15:08:09.010000"],["2024-07-24T15:08:10.010000"],["2024-07-24T15:08:11.010000"],["2024-07-24T15:08:12.010000"],["2024-07-24T15:08:13.010000"],["2024-07-24T15:08:14.010000"],["2024-07-24T15:08:15.010000"],["2024-07-24T15:08:16.010000"],["2024-07-24T15:08:17.010000"],["2024-07-24T15:08:18.010000"],["2024-07-24T15:08:19.010000"],["2024-07-24T15:08:20.010000"],["2024-07-24T15:08:21.010000"],["2024-07-24T15:08:22.010000"],["2024-07-24T15:08:23.010000"],["2024-07-24T15:08:24.010000"],["2024-07-24T15:08:25.010000"],["2024-07-24T15:08:26.010000"],["2024-07-24T15:08:27.010000"],["2024-07-24T15:08:28.010000"],["2024-07-24T15:08:29.010000"],["2024-07-24T15:08:30.010000"],["2024-07-24T15:08:31.010000"],["2024-07-24T15:08:32.010000"],["2024-07-24T15:08:33.010000"],["2024-07-24T15:08:34.010000"],["2024-07-24T15:08:35.010000"],["2024-07-24T15:08:36.010000"],["2024-07-24T15:08:37.010000"],["2024-07-24T15:08:38.010000"],["2024-07-24T15:08:39.010000"],["2024-07-24T15:08:40.010000"],["2024-07-24T15:08:41.010000"],["2024-07-24T15:08:42.010000"],["2024-07-24T15:08:43.010000"],["2024-07-24T15:08:44.010000"],["2024-07-24T15:08:45.010000"],["2024-07-24T15:08:46.010000"],["2024-07-24T15:08:47.010000"],["2024-07-24T15:08:48.010000"],["2024-07-24T15:08:49.010000"],["2024-07-24T15:08:50.010000"],["2024-07-24T15:08:51.010000"],["2024-07-24T15:08:52.010000"],["2024-07-24T15:08:53.010000"],["2024-07-24T15:08:54.010000"],["2024-07-24T15:08:55.010000"],["2024-07-24T15:08:56.010000"],["2024-07-24T15:08:57.010000"],["2024-07-24T15:08:58.010000"],["2024-07-24T15:08:59.010000"],["2024-07-24T15:09:00.010000"],["2024-07-24T15:09:01.010000"],["2024-07-24T15:09:02.010000"],["2024-07-24T15:09:03.010000"],["2024-07-24T15:09:04.010000"],["2024-07-24T15:09:05.010000"],["2024-07-24T15:09:06.010000"],["2024-07-24T15:09:07.010000"],["2024-07-24T15:09:08.010000"],["2024-07-24T15:09:09.010000"],["2024-07-24T15:09:10.010000"],["2024-07-24T15:09:11.010000"],["2024-07-24T15:09:12.010000"],["2024-07-24T15:09:13.010000"],["2024-07-24T15:09:14.010000"],["2024-07-24T15:09:15.010000"],["2024-07-24T15:09:16.010000"],["2024-07-24T15:09:17.010000"],["2024-07-24T15:09:18.010000"],["2024-07-24T15:09:19.010000"],["2024-07-24T15:09:20.010000"],["2024-07-24T15:09:21.010000"],["2024-07-24T15:09:22.010000"],["2024-07-24T15:09:23.010000"],["2024-07-24T15:09:24.010000"],["2024-07-24T15:09:25.010000"],["2024-07-24T15:09:26.010000"],["2024-07-24T15:09:27.010000"],["2024-07-24T15:09:28.010000"],["2024-07-24T15:09:29.010000"],["2024-07-24T15:09:30.010000"],["2024-07-24T15:09:31.010000"],["2024-07-24T15:09:32.010000"],["2024-07-24T15:09:33.010000"],["2024-07-24T15:09:34.010000"],["2024-07-24T15:09:35.010000"],["2024-07-24T15:09:36.010000"],["2024-07-24T15:09:37.010000"],["2024-07-24T15:09:38.010000"],["2024-07-24T15:09:39.010000"],["2024-07-24T15:09:40.010000"],["2024-07-24T15:09:41.010000"],["2024-07-24T15:09:42.010000"],["2024-07-24T15:09:43.010000"],["2024-07-24T15:09:44.010000"],["2024-07-24T15:09:45.010000"],["2024-07-24T15:09:46.010000"],["2024-07-24T15:09:47.010000"],["2024-07-24T15:09:48.010000"],["2024-07-24T15:09:49.010000"],["2024-07-24T15:09:50.010000"],["2024-07-24T15:09:51.010000"],["2024-07-24T15:09:52.010000"],["2024-07-24T15:09:53.010000"],["2024-07-24T15:09:54.010000"],["2024-07-24T15:09:55.010000"],["2024-07-24T15:09:56.010000"],["2024-07-24T15:09:57.010000"],["2024-07-24T15:09:58.010000"],["2024-07-24T15:09:59.010000"],["2024-07-24T15:10:00.010000"],["2024-07-24T15:10:01.010000"],["2024-07-24T15:10:02.010000"],["2024-07-24T15:10:03.010000"],["2024-07-24T15:10:04.010000"],["2024-07-24T15:10:05.010000"],["2024-07-24T15:10:06.010000"],["2024-07-24T15:10:07.010000"],["2024-07-24T15:10:08.010000"],["2024-07-24T15:10:09.010000"],["2024-07-24T15:10:10.010000"],["2024-07-24T15:10:11.010000"],["2024-07-24T15:10:12.010000"],["2024-07-24T15:10:13.010000"],["2024-07-24T15:10:14.010000"],["2024-07-24T15:10:15.010000"],["2024-07-24T15:10:16.010000"],["2024-07-24T15:10:17.010000"],["2024-07-24T15:10:18.010000"],["2024-07-24T15:10:19.010000"],["2024-07-24T15:10:20.010000"],["2024-07-24T15:10:21.010000"],["2024-07-24T15:10:22.010000"],["2024-07-24T15:10:23.010000"],["2024-07-24T15:10:24.010000"],["2024-07-24T15:10:25.010000"],["2024-07-24T15:10:26.010000"],["2024-07-24T15:10:27.010000"],["2024-07-24T15:10:28.010000"],["2024-07-24T15:10:29.010000"],["2024-07-24T15:10:30.010000"],["2024-07-24T15:10:31.010000"],["2024-07-24T15:10:32.010000"],["2024-07-24T15:10:33.010000"],["2024-07-24T15:10:34.010000"],["2024-07-24T15:10:35.010000"],["2024-07-24T15:10:36.010000"],["2024-07-24T15:10:37.010000"],["2024-07-24T15:10:38.010000"],["2024-07-24T15:10:39.010000"],["2024-07-24T15:10:40.010000"],["2024-07-24T15:10:41.010000"],["2024-07-24T15:10:42.010000"],["2024-07-24T15:10:43.010000"],["2024-07-24T15:10:44.010000"],["2024-07-24T15:10:45.010000"],["2024-07-24T15:10:46.010000"],["2024-07-24T15:10:47.010000"],["2024-07-24T15:10:48.010000"],["2024-07-24T15:10:49.010000"],["2024-07-24T15:10:50.010000"],["2024-07-24T15:10:51.010000"],["2024-07-24T15:10:52.010000"],["2024-07-24T15:10:53.010000"],["2024-07-24T15:10:54.010000"],["2024-07-24T15:10:55.010000"],["2024-07-24T15:10:56.010000"],["2024-07-24T15:10:57.010000"],["2024-07-24T15:10:58.010000"],["2024-07-24T15:10:59.010000"],["2024-07-24T15:11:00.010000"],["2024-07-24T15:11:01.010000"],["2024-07-24T15:11:02.010000"],["2024-07-24T15:11:03.010000"],["2024-07-24T15:11:04.010000"],["2024-07-24T15:11:05.010000"],["2024-07-24T15:11:06.010000"],["2024-07-24T15:11:07.010000"],["2024-07-24T15:11:08.010000"],["2024-07-24T15:11:09.010000"],["2024-07-24T15:11:10.010000"],["2024-07-24T15:11:11.010000"],["2024-07-24T15:11:12.010000"],["2024-07-24T15:11:13.010000"],["2024-07-24T15:11:14.010000"],["2024-07-24T15:11:15.010000"],["2024-07-24T15:11:16.010000"],["2024-07-24T15:11:17.010000"],["2024-07-24T15:11:18.010000"],["2024-07-24T15:11:19.010000"],["2024-07-24T15:11:20.010000"],["2024-07-24T15:11:21.010000"],["2024-07-24T15:11:22.010000"],["2024-07-24T15:11:23.010000"],["2024-07-24T15:11:24.010000"],["2024-07-24T15:11:25.010000"],["2024-07-24T15:11:26.010000"],["2024-07-24T15:11:27.010000"],["2024-07-24T15:11:28.010000"],["2024-07-24T15:11:29.010000"],["2024-07-24T15:11:30.010000"],["2024-07-24T15:11:31.010000"],["2024-07-24T15:11:32.010000"],["2024-07-24T15:11:33.010000"],["2024-07-24T15:11:34.010000"],["2024-07-24T15:11:35.010000"],["2024-07-24T15:11:36.010000"],["2024-07-24T15:11:37.010000"],["2024-07-24T15:11:38.010000"],["2024-07-24T15:11:39.010000"],["2024-07-24T15:11:40.010000"],["2024-07-24T15:11:41.010000"],["2024-07-24T15:11:42.010000"],["2024-07-24T15:11:43.010000"],["2024-07-24T15:11:44.010000"],["2024-07-24T15:11:45.010000"],["2024-07-24T15:11:46.010000"],["2024-07-24T15:11:47.010000"],["2024-07-24T15:11:48.010000"],["2024-07-24T15:11:49.010000"],["2024-07-24T15:11:50.010000"],["2024-07-24T15:11:51.010000"],["2024-07-24T15:11:52.010000"],["2024-07-24T15:11:53.010000"],["2024-07-24T15:11:54.010000"],["2024-07-24T15:11:55.010000"],["2024-07-24T15:11:56.010000"],["2024-07-24T15:11:57.010000"],["2024-07-24T15:11:58.010000"],["2024-07-24T15:11:59.010000"],["2024-07-24T15:12:00.010000"],["2024-07-24T15:12:01.010000"],["2024-07-24T15:12:02.010000"],["2024-07-24T15:12:03.010000"],["2024-07-24T15:12:04.010000"],["2024-07-24T15:12:05.010000"],["2024-07-24T15:12:06.010000"],["2024-07-24T15:12:07.010000"],["2024-07-24T15:12:08.010000"],["2024-07-24T15:12:09.010000"],["2024-07-24T15:12:10.010000"],["2024-07-24T15:12:11.010000"],["2024-07-24T15:12:12.010000"],["2024-07-24T15:12:13.010000"],["2024-07-24T15:12:14.010000"],["2024-07-24T15:12:15.010000"],["2024-07-24T15:12:16.010000"],["2024-07-24T15:12:17.010000"],["2024-07-24T15:12:18.010000"],["2024-07-24T15:12:19.010000"],["2024-07-24T15:12:20.010000"],["2024-07-24T15:12:21.010000"],["2024-07-24T15:12:22.010000"],["2024-07-24T15:12:23.010000"],["2024-07-24T15:12:24.010000"],["2024-07-24T15:12:25.010000"],["2024-07-24T15:12:26.010000"],["2024-07-24T15:12:27.010000"],["2024-07-24T15:12:28.010000"],["2024-07-24T15:12:29.010000"],["2024-07-24T15:12:30.010000"],["2024-07-24T15:12:31.010000"],["2024-07-24T15:12:32.010000"],["2024-07-24T15:12:33.010000"],["2024-07-24T15:12:34.010000"],["2024-07-24T15:12:35.010000"],["2024-07-24T15:12:36.010000"],["2024-07-24T15:12:37.010000"],["2024-07-24T15:12:38.010000"],["2024-07-24T15:12:39.010000"],["2024-07-24T15:12:40.010000"],["2024-07-24T15:12:41.010000"],["2024-07-24T15:12:42.010000"],["2024-07-24T15:12:43.010000"],["2024-07-24T15:12:44.010000"],["2024-07-24T15:12:45.010000"],["2024-07-24T15:12:46.010000"],["2024-07-24T15:12:47.010000"],["2024-07-24T15:12:48.010000"],["2024-07-24T15:12:49.010000"],["2024-07-24T15:12:50.010000"],["2024-07-24T15:12:51.010000"],["2024-07-24T15:12:52.010000"],["2024-07-24T15:12:53.010000"],["2024-07-24T15:12:54.010000"],["2024-07-24T15:12:55.010000"],["2024-07-24T15:12:56.010000"],["2024-07-24T15:12:57.010000"],["2024-07-24T15:12:58.010000"],["2024-07-24T15:12:59.010000"],["2024-07-24T15:13:00.010000"],["2024-07-24T15:13:01.010000"],["2024-07-24T15:13:02.010000"],["2024-07-24T15:13:03.010000"],["2024-07-24T15:13:04.010000"],["2024-07-24T15:13:05.010000"],["2024-07-24T15:13:06.010000"],["2024-07-24T15:13:07.010000"],["2024-07-24T15:13:08.010000"],["2024-07-24T15:13:09.010000"],["2024-07-24T15:13:10.010000"],["2024-07-24T15:13:11.010000"],["2024-07-24T15:13:12.010000"],["2024-07-24T15:13:13.010000"],["2024-07-24T15:13:14.010000"],["2024-07-24T15:13:15.010000"],["2024-07-24T15:13:16.010000"],["2024-07-24T15:13:17.010000"],["2024-07-24T15:13:18.010000"],["2024-07-24T15:13:19.010000"],["2024-07-24T15:13:20.010000"],["2024-07-24T15:13:21.010000"],["2024-07-24T15:13:22.010000"],["2024-07-24T15:13:23.010000"],["2024-07-24T15:13:24.010000"],["2024-07-24T15:13:25.010000"],["2024-07-24T15:13:26.010000"],["2024-07-24T15:13:27.010000"],["2024-07-24T15:13:28.010000"],["2024-07-24T15:13:29.010000"],["2024-07-24T15:13:30.010000"],["2024-07-24T15:13:31.010000"],["2024-07-24T15:13:32.010000"],["2024-07-24T15:13:33.010000"],["2024-07-24T15:13:34.010000"],["2024-07-24T15:13:35.010000"],["2024-07-24T15:13:36.010000"],["2024-07-24T15:13:37.010000"],["2024-07-24T15:13:38.010000"],["2024-07-24T15:13:39.010000"],["2024-07-24T15:13:40.010000"],["2024-07-24T15:13:41.010000"],["2024-07-24T15:13:42.010000"],["2024-07-24T15:13:43.010000"],["2024-07-24T15:13:44.010000"],["2024-07-24T15:13:45.010000"],["2024-07-24T15:13:46.010000"],["2024-07-24T15:13:47.010000"],["2024-07-24T15:13:48.010000"],["2024-07-24T15:13:49.010000"],["2024-07-24T15:13:50.010000"],["2024-07-24T15:13:51.010000"],["2024-07-24T15:13:52.010000"],["2024-07-24T15:13:53.010000"],["2024-07-24T15:13:54.010000"],["2024-07-24T15:13:55.010000"],["2024-07-24T15:13:56.010000"],["2024-07-24T15:13:57.010000"],["2024-07-24T15:13:58.010000"],["2024-07-24T15:13:59.010000"],["2024-07-24T15:14:00.010000"],["2024-07-24T15:14:01.010000"],["2024-07-24T15:14:02.010000"],["2024-07-24T15:14:03.010000"],["2024-07-24T15:14:04.010000"],["2024-07-24T15:14:05.010000"],["2024-07-24T15:14:06.010000"],["2024-07-24T15:14:07.010000"],["2024-07-24T15:14:08.010000"],["2024-07-24T15:14:09.010000"],["2024-07-24T15:14:10.010000"],["2024-07-24T15:14:11.010000"],["2024-07-24T15:14:12.010000"],["2024-07-24T15:14:13.010000"],["2024-07-24T15:14:14.010000"],["2024-07-24T15:14:15.010000"],["2024-07-24T15:14:16.010000"],["2024-07-24T15:14:17.010000"],["2024-07-24T15:14:18.010000"],["2024-07-24T15:14:19.010000"],["2024-07-24T15:14:20.010000"],["2024-07-24T15:14:21.010000"],["2024-07-24T15:14:22.010000"],["2024-07-24T15:14:23.010000"],["2024-07-24T15:14:24.010000"],["2024-07-24T15:14:25.010000"],["2024-07-24T15:14:26.010000"],["2024-07-24T15:14:27.010000"],["2024-07-24T15:14:28.010000"],["2024-07-24T15:14:29.010000"],["2024-07-24T15:14:30.010000"],["2024-07-24T15:14:31.010000"],["2024-07-24T15:14:32.010000"],["2024-07-24T15:14:33.010000"],["2024-07-24T15:14:34.010000"],["2024-07-24T15:14:35.010000"],["2024-07-24T15:14:36.010000"],["2024-07-24T15:14:37.010000"],["2024-07-24T15:14:38.010000"],["2024-07-24T15:14:39.010000"],["2024-07-24T15:14:40.010000"],["2024-07-24T15:14:41.010000"],["2024-07-24T15:14:42.010000"],["2024-07-24T15:14:43.010000"],["2024-07-24T15:14:44.010000"],["2024-07-24T15:14:45.010000"],["2024-07-24T15:14:46.010000"],["2024-07-24T15:14:47.010000"],["2024-07-24T15:14:48.010000"],["2024-07-24T15:14:49.010000"],["2024-07-24T15:14:50.010000"],["2024-07-24T15:14:51.010000"],["2024-07-24T15:14:52.010000"],["2024-07-24T15:14:53.010000"],["2024-07-24T15:14:54.010000"],["2024-07-24T15:14:55.010000"],["2024-07-24T15:14:56.010000"],["2024-07-24T15:14:57.010000"],["2024-07-24T15:14:58.010000"],["2024-07-24T15:14:59.010000"],["2024-07-24T15:15:00.010000"],["2024-07-24T15:15:01.010000"],["2024-07-24T15:15:02.010000"],["2024-07-24T15:15:03.010000"],["2024-07-24T15:15:04.010000"],["2024-07-24T15:15:05.010000"],["2024-07-24T15:15:06.010000"],["2024-07-24T15:15:07.010000"],["2024-07-24T15:15:08.010000"],["2024-07-24T15:15:09.010000"],["2024-07-24T15:15:10.010000"],["2024-07-24T15:15:11.010000"],["2024-07-24T15:15:12.010000"],["2024-07-24T15:15:13.010000"],["2024-07-24T15:15:14.010000"],["2024-07-24T15:15:15.010000"],["2024-07-24T15:15:16.010000"],["2024-07-24T15:15:17.010000"],["2024-07-24T15:15:18.010000"],["2024-07-24T15:15:19.010000"],["2024-07-24T15:15:20.010000"],["2024-07-24T15:15:21.010000"],["2024-07-24T15:15:22.010000"],["2024-07-24T15:15:23.010000"],["2024-07-24T15:15:24.010000"],["2024-07-24T15:15:25.010000"],["2024-07-24T15:15:26.010000"],["2024-07-24T15:15:27.010000"],["2024-07-24T15:15:28.010000"],["2024-07-24T15:15:29.010000"],["2024-07-24T15:15:30.010000"],["2024-07-24T15:15:31.010000"],["2024-07-24T15:15:32.010000"],["2024-07-24T15:15:33.010000"],["2024-07-24T15:15:34.010000"],["2024-07-24T15:15:35.010000"],["2024-07-24T15:15:36.010000"],["2024-07-24T15:15:37.010000"],["2024-07-24T15:15:38.010000"],["2024-07-24T15:15:39.010000"],["2024-07-24T15:15:40.010000"],["2024-07-24T15:15:41.010000"],["2024-07-24T15:15:42.010000"],["2024-07-24T15:15:43.010000"],["2024-07-24T15:15:44.010000"],["2024-07-24T15:15:45.010000"],["2024-07-24T15:15:46.010000"],["2024-07-24T15:15:47.010000"],["2024-07-24T15:15:48.010000"],["2024-07-24T15:15:49.010000"],["2024-07-24T15:15:50.010000"],["2024-07-24T15:15:51.010000"],["2024-07-24T15:15:52.010000"],["2024-07-24T15:15:53.010000"],["2024-07-24T15:15:54.010000"],["2024-07-24T15:15:55.010000"],["2024-07-24T15:15:56.010000"],["2024-07-24T15:15:57.010000"],["2024-07-24T15:15:58.010000"],["2024-07-24T15:15:59.010000"],["2024-07-24T15:16:00.010000"],["2024-07-24T15:16:01.010000"],["2024-07-24T15:16:02.010000"],["2024-07-24T15:16:03.010000"],["2024-07-24T15:16:04.010000"],["2024-07-24T15:16:05.010000"],["2024-07-24T15:16:06.010000"],["2024-07-24T15:16:07.010000"],["2024-07-24T15:16:08.010000"],["2024-07-24T15:16:09.010000"],["2024-07-24T15:16:10.010000"],["2024-07-24T15:16:11.010000"],["2024-07-24T15:16:12.010000"],["2024-07-24T15:16:13.010000"],["2024-07-24T15:16:14.010000"],["2024-07-24T15:16:15.010000"],["2024-07-24T15:16:16.010000"],["2024-07-24T15:16:17.010000"],["2024-07-24T15:16:18.010000"],["2024-07-24T15:16:19.010000"],["2024-07-24T15:16:20.010000"],["2024-07-24T15:16:21.010000"],["2024-07-24T15:16:22.010000"],["2024-07-24T15:16:23.010000"],["2024-07-24T15:16:24.010000"],["2024-07-24T15:16:25.010000"],["2024-07-24T15:16:26.010000"],["2024-07-24T15:16:27.010000"],["2024-07-24T15:16:28.010000"],["2024-07-24T15:16:29.010000"],["2024-07-24T15:16:30.010000"],["2024-07-24T15:16:31.010000"],["2024-07-24T15:16:32.010000"],["2024-07-24T15:16:33.010000"],["2024-07-24T15:16:34.010000"],["2024-07-24T15:16:35.010000"],["2024-07-24T15:16:36.010000"],["2024-07-24T15:16:37.010000"],["2024-07-24T15:16:38.010000"],["2024-07-24T15:16:39.010000"],["2024-07-24T15:16:40.010000"],["2024-07-24T15:16:41.010000"],["2024-07-24T15:16:42.010000"],["2024-07-24T15:16:43.010000"],["2024-07-24T15:16:44.010000"],["2024-07-24T15:16:45.010000"],["2024-07-24T15:16:46.010000"],["2024-07-24T15:16:47.010000"],["2024-07-24T15:16:48.010000"],["2024-07-24T15:16:49.010000"],["2024-07-24T15:16:50.010000"],["2024-07-24T15:16:51.010000"],["2024-07-24T15:16:52.010000"],["2024-07-24T15:16:53.010000"],["2024-07-24T15:16:54.010000"],["2024-07-24T15:16:55.010000"],["2024-07-24T15:16:56.010000"],["2024-07-24T15:16:57.010000"],["2024-07-24T15:16:58.010000"],["2024-07-24T15:16:59.010000"],["2024-07-24T15:17:00.010000"],["2024-07-24T15:17:01.010000"],["2024-07-24T15:17:02.010000"],["2024-07-24T15:17:03.010000"],["2024-07-24T15:17:04.010000"],["2024-07-24T15:17:05.010000"],["2024-07-24T15:17:06.010000"],["2024-07-24T15:17:07.010000"],["2024-07-24T15:17:08.010000"],["2024-07-24T15:17:09.010000"],["2024-07-24T15:17:10.010000"],["2024-07-24T15:17:11.010000"],["2024-07-24T15:17:12.010000"],["2024-07-24T15:17:13.010000"],["2024-07-24T15:17:14.010000"],["2024-07-24T15:17:15.010000"],["2024-07-24T15:17:16.010000"],["2024-07-24T15:17:17.010000"],["2024-07-24T15:17:18.010000"],["2024-07-24T15:17:19.010000"],["2024-07-24T15:17:20.010000"],["2024-07-24T15:17:21.010000"],["2024-07-24T15:17:22.010000"],["2024-07-24T15:17:23.010000"],["2024-07-24T15:17:24.010000"],["2024-07-24T15:17:25.010000"],["2024-07-24T15:17:26.010000"],["2024-07-24T15:17:27.010000"],["2024-07-24T15:17:28.010000"],["2024-07-24T15:17:29.010000"],["2024-07-24T15:17:30.010000"],["2024-07-24T15:17:31.010000"],["2024-07-24T15:17:32.010000"],["2024-07-24T15:17:33.010000"],["2024-07-24T15:17:34.010000"],["2024-07-24T15:17:35.010000"],["2024-07-24T15:17:36.010000"],["2024-07-24T15:17:37.010000"],["2024-07-24T15:17:38.010000"],["2024-07-24T15:17:39.010000"],["2024-07-24T15:17:40.010000"],["2024-07-24T15:17:41.010000"],["2024-07-24T15:17:42.010000"],["2024-07-24T15:17:43.010000"],["2024-07-24T15:17:44.010000"],["2024-07-24T15:17:45.010000"],["2024-07-24T15:17:46.010000"],["2024-07-24T15:17:47.010000"],["2024-07-24T15:17:48.010000"],["2024-07-24T15:17:49.010000"],["2024-07-24T15:17:50.010000"],["2024-07-24T15:17:51.010000"],["2024-07-24T15:17:52.010000"],["2024-07-24T15:17:53.010000"],["2024-07-24T15:17:54.010000"],["2024-07-24T15:17:55.010000"],["2024-07-24T15:17:56.010000"],["2024-07-24T15:17:57.010000"],["2024-07-24T15:17:58.010000"],["2024-07-24T15:17:59.010000"],["2024-07-24T15:18:00.010000"],["2024-07-24T15:18:01.010000"],["2024-07-24T15:18:02.010000"],["2024-07-24T15:18:03.010000"],["2024-07-24T15:18:04.010000"],["2024-07-24T15:18:05.010000"],["2024-07-24T15:18:06.010000"],["2024-07-24T15:18:07.010000"],["2024-07-24T15:18:08.010000"],["2024-07-24T15:18:09.010000"],["2024-07-24T15:18:10.010000"],["2024-07-24T15:18:11.010000"],["2024-07-24T15:18:12.010000"],["2024-07-24T15:18:13.010000"],["2024-07-24T15:18:14.010000"],["2024-07-24T15:18:15.010000"],["2024-07-24T15:18:16.010000"],["2024-07-24T15:18:17.010000"],["2024-07-24T15:18:18.010000"],["2024-07-24T15:18:19.010000"],["2024-07-24T15:18:20.010000"],["2024-07-24T15:18:21.010000"],["2024-07-24T15:18:22.010000"],["2024-07-24T15:18:23.010000"],["2024-07-24T15:18:24.010000"],["2024-07-24T15:18:25.010000"],["2024-07-24T15:18:26.010000"],["2024-07-24T15:18:27.010000"],["2024-07-24T15:18:28.010000"],["2024-07-24T15:18:29.010000"],["2024-07-24T15:18:30.010000"],["2024-07-24T15:18:31.010000"],["2024-07-24T15:18:32.010000"],["2024-07-24T15:18:33.010000"],["2024-07-24T15:18:34.010000"],["2024-07-24T15:18:35.010000"],["2024-07-24T15:18:36.010000"],["2024-07-24T15:18:37.010000"],["2024-07-24T15:18:38.010000"],["2024-07-24T15:18:39.010000"],["2024-07-24T15:18:40.010000"],["2024-07-24T15:18:41.010000"],["2024-07-24T15:18:42.010000"],["2024-07-24T15:18:43.010000"],["2024-07-24T15:18:44.010000"],["2024-07-24T15:18:45.010000"],["2024-07-24T15:18:46.010000"],["2024-07-24T15:18:47.010000"],["2024-07-24T15:18:48.010000"],["2024-07-24T15:18:49.010000"],["2024-07-24T15:18:50.010000"],["2024-07-24T15:18:51.010000"],["2024-07-24T15:18:52.010000"],["2024-07-24T15:18:53.010000"],["2024-07-24T15:18:54.010000"],["2024-07-24T15:18:55.010000"],["2024-07-24T15:18:56.010000"],["2024-07-24T15:18:57.010000"],["2024-07-24T15:18:58.010000"],["2024-07-24T15:18:59.010000"],["2024-07-24T15:19:00.010000"],["2024-07-24T15:19:01.010000"],["2024-07-24T15:19:02.010000"],["2024-07-24T15:19:03.010000"],["2024-07-24T15:19:04.010000"],["2024-07-24T15:19:05.010000"],["2024-07-24T15:19:06.010000"],["2024-07-24T15:19:07.010000"],["2024-07-24T15:19:08.010000"],["2024-07-24T15:19:09.010000"],["2024-07-24T15:19:10.010000"],["2024-07-24T15:19:11.010000"],["2024-07-24T15:19:12.010000"],["2024-07-24T15:19:13.010000"],["2024-07-24T15:19:14.010000"],["2024-07-24T15:19:15.010000"],["2024-07-24T15:19:16.010000"],["2024-07-24T15:19:17.010000"],["2024-07-24T15:19:18.010000"],["2024-07-24T15:19:19.010000"],["2024-07-24T15:19:20.010000"],["2024-07-24T15:19:21.010000"],["2024-07-24T15:19:22.010000"],["2024-07-24T15:19:23.010000"],["2024-07-24T15:19:24.010000"],["2024-07-24T15:19:25.010000"],["2024-07-24T15:19:26.010000"],["2024-07-24T15:19:27.010000"],["2024-07-24T15:19:28.010000"],["2024-07-24T15:19:29.010000"],["2024-07-24T15:19:30.010000"],["2024-07-24T15:19:31.010000"],["2024-07-24T15:19:32.010000"],["2024-07-24T15:19:33.010000"],["2024-07-24T15:19:34.010000"],["2024-07-24T15:19:35.010000"],["2024-07-24T15:19:36.010000"],["2024-07-24T15:19:37.010000"],["2024-07-24T15:19:38.010000"],["2024-07-24T15:19:39.010000"],["2024-07-24T15:19:40.010000"],["2024-07-24T15:19:41.010000"],["2024-07-24T15:19:42.010000"],["2024-07-24T15:19:43.010000"],["2024-07-24T15:19:44.010000"],["2024-07-24T15:19:45.010000"],["2024-07-24T15:19:46.010000"],["2024-07-24T15:19:47.010000"],["2024-07-24T15:19:48.010000"],["2024-07-24T15:19:49.010000"],["2024-07-24T15:19:50.010000"],["2024-07-24T15:19:51.010000"],["2024-07-24T15:19:52.010000"],["2024-07-24T15:19:53.010000"],["2024-07-24T15:19:54.010000"],["2024-07-24T15:19:55.010000"],["2024-07-24T15:19:56.010000"],["2024-07-24T15:19:57.010000"],["2024-07-24T15:19:58.010000"],["2024-07-24T15:19:59.010000"],["2024-07-24T15:20:00.010000"],["2024-07-24T15:20:01.010000"],["2024-07-24T15:20:02.010000"],["2024-07-24T15:20:03.010000"],["2024-07-24T15:20:04.010000"],["2024-07-24T15:20:05.010000"],["2024-07-24T15:20:06.010000"],["2024-07-24T15:20:07.010000"],["2024-07-24T15:20:08.010000"],["2024-07-24T15:20:09.010000"],["2024-07-24T15:20:10.010000"],["2024-07-24T15:20:11.010000"],["2024-07-24T15:20:12.010000"],["2024-07-24T15:20:13.010000"],["2024-07-24T15:20:14.010000"],["2024-07-24T15:20:15.010000"],["2024-07-24T15:20:16.010000"],["2024-07-24T15:20:17.010000"],["2024-07-24T15:20:18.010000"],["2024-07-24T15:20:19.010000"],["2024-07-24T15:20:20.010000"],["2024-07-24T15:20:21.010000"],["2024-07-24T15:20:22.010000"],["2024-07-24T15:20:23.010000"],["2024-07-24T15:20:24.010000"],["2024-07-24T15:20:25.010000"],["2024-07-24T15:20:26.010000"],["2024-07-24T15:20:27.010000"],["2024-07-24T15:20:28.010000"],["2024-07-24T15:20:29.010000"],["2024-07-24T15:20:30.010000"],["2024-07-24T15:20:31.010000"],["2024-07-24T15:20:32.010000"],["2024-07-24T15:20:33.010000"],["2024-07-24T15:20:34.010000"],["2024-07-24T15:20:35.010000"],["2024-07-24T15:20:36.010000"],["2024-07-24T15:20:37.010000"],["2024-07-24T15:20:38.010000"],["2024-07-24T15:20:39.010000"],["2024-07-24T15:20:40.010000"],["2024-07-24T15:20:41.010000"],["2024-07-24T15:20:42.010000"],["2024-07-24T15:20:43.010000"],["2024-07-24T15:20:44.010000"],["2024-07-24T15:20:45.010000"],["2024-07-24T15:20:46.010000"],["2024-07-24T15:20:47.010000"],["2024-07-24T15:20:48.010000"],["2024-07-24T15:20:49.010000"],["2024-07-24T15:20:50.010000"],["2024-07-24T15:20:51.010000"],["2024-07-24T15:20:52.010000"],["2024-07-24T15:20:53.010000"],["2024-07-24T15:20:54.010000"],["2024-07-24T15:20:55.010000"],["2024-07-24T15:20:56.010000"],["2024-07-24T15:20:57.010000"],["2024-07-24T15:20:58.010000"],["2024-07-24T15:20:59.010000"],["2024-07-24T15:21:00.010000"],["2024-07-24T15:21:01.010000"],["2024-07-24T15:21:02.010000"],["2024-07-24T15:21:03.010000"],["2024-07-24T15:21:04.010000"],["2024-07-24T15:21:05.010000"],["2024-07-24T15:21:06.010000"],["2024-07-24T15:21:07.010000"],["2024-07-24T15:21:08.010000"],["2024-07-24T15:21:09.010000"],["2024-07-24T15:21:10.010000"],["2024-07-24T15:21:11.010000"],["2024-07-24T15:21:12.010000"],["2024-07-24T15:21:13.010000"],["2024-07-24T15:21:14.010000"],["2024-07-24T15:21:15.010000"],["2024-07-24T15:21:16.010000"],["2024-07-24T15:21:17.010000"],["2024-07-24T15:21:18.010000"],["2024-07-24T15:21:19.010000"],["2024-07-24T15:21:20.010000"],["2024-07-24T15:21:21.010000"],["2024-07-24T15:21:22.010000"],["2024-07-24T15:21:23.010000"],["2024-07-24T15:21:24.010000"],["2024-07-24T15:21:25.010000"],["2024-07-24T15:21:26.010000"],["2024-07-24T15:21:27.010000"],["2024-07-24T15:21:28.010000"],["2024-07-24T15:21:29.010000"],["2024-07-24T15:21:30.010000"],["2024-07-24T15:21:31.010000"],["2024-07-24T15:21:32.010000"],["2024-07-24T15:21:33.010000"],["2024-07-24T15:21:34.010000"],["2024-07-24T15:21:35.010000"],["2024-07-24T15:21:36.010000"],["2024-07-24T15:21:37.010000"],["2024-07-24T15:21:38.010000"],["2024-07-24T15:21:39.010000"],["2024-07-24T15:21:40.010000"],["2024-07-24T15:21:41.010000"],["2024-07-24T15:21:42.010000"],["2024-07-24T15:21:43.010000"],["2024-07-24T15:21:44.010000"],["2024-07-24T15:21:45.010000"],["2024-07-24T15:21:46.010000"],["2024-07-24T15:21:47.010000"],["2024-07-24T15:21:48.010000"],["2024-07-24T15:21:49.010000"],["2024-07-24T15:21:50.010000"],["2024-07-24T15:21:51.010000"],["2024-07-24T15:21:52.010000"],["2024-07-24T15:21:53.010000"],["2024-07-24T15:21:54.010000"],["2024-07-24T15:21:55.010000"],["2024-07-24T15:21:56.010000"],["2024-07-24T15:21:57.010000"],["2024-07-24T15:21:58.010000"],["2024-07-24T15:21:59.010000"],["2024-07-24T15:22:00.010000"],["2024-07-24T15:22:01.010000"],["2024-07-24T15:22:02.010000"],["2024-07-24T15:22:03.010000"],["2024-07-24T15:22:04.010000"],["2024-07-24T15:22:05.010000"],["2024-07-24T15:22:06.010000"],["2024-07-24T15:22:07.010000"],["2024-07-24T15:22:08.010000"],["2024-07-24T15:22:09.010000"],["2024-07-24T15:22:10.010000"],["2024-07-24T15:22:11.010000"],["2024-07-24T15:22:12.010000"],["2024-07-24T15:22:13.010000"],["2024-07-24T15:22:14.010000"],["2024-07-24T15:22:15.010000"],["2024-07-24T15:22:16.010000"],["2024-07-24T15:22:17.010000"],["2024-07-24T15:22:18.010000"],["2024-07-24T15:22:19.010000"],["2024-07-24T15:22:20.010000"],["2024-07-24T15:22:21.010000"],["2024-07-24T15:22:22.010000"],["2024-07-24T15:22:23.010000"],["2024-07-24T15:22:24.010000"],["2024-07-24T15:22:25.010000"],["2024-07-24T15:22:26.010000"],["2024-07-24T15:22:27.010000"],["2024-07-24T15:22:28.010000"],["2024-07-24T15:22:29.010000"],["2024-07-24T15:22:30.010000"],["2024-07-24T15:22:31.010000"],["2024-07-24T15:22:32.010000"],["2024-07-24T15:22:33.010000"],["2024-07-24T15:22:34.010000"],["2024-07-24T15:22:35.010000"],["2024-07-24T15:22:36.010000"],["2024-07-24T15:22:37.010000"],["2024-07-24T15:22:38.010000"],["2024-07-24T15:22:39.010000"],["2024-07-24T15:22:40.010000"],["2024-07-24T15:22:41.010000"],["2024-07-24T15:22:42.010000"],["2024-07-24T15:22:43.010000"],["2024-07-24T15:22:44.010000"],["2024-07-24T15:22:45.010000"],["2024-07-24T15:22:46.010000"],["2024-07-24T15:22:47.010000"],["2024-07-24T15:22:48.010000"],["2024-07-24T15:22:49.010000"],["2024-07-24T15:22:50.010000"],["2024-07-24T15:22:51.010000"],["2024-07-24T15:22:52.010000"],["2024-07-24T15:22:53.010000"],["2024-07-24T15:22:54.010000"],["2024-07-24T15:22:55.010000"],["2024-07-24T15:22:56.010000"],["2024-07-24T15:22:57.010000"],["2024-07-24T15:22:58.010000"],["2024-07-24T15:22:59.010000"],["2024-07-24T15:23:00.010000"],["2024-07-24T15:23:01.010000"],["2024-07-24T15:23:02.010000"],["2024-07-24T15:23:03.010000"],["2024-07-24T15:23:04.010000"],["2024-07-24T15:23:05.010000"],["2024-07-24T15:23:06.010000"],["2024-07-24T15:23:07.010000"],["2024-07-24T15:23:08.010000"],["2024-07-24T15:23:09.010000"],["2024-07-24T15:23:10.010000"],["2024-07-24T15:23:11.010000"],["2024-07-24T15:23:12.010000"],["2024-07-24T15:23:13.010000"],["2024-07-24T15:23:14.010000"],["2024-07-24T15:23:15.010000"],["2024-07-24T15:23:16.010000"],["2024-07-24T15:23:17.010000"],["2024-07-24T15:23:18.010000"],["2024-07-24T15:23:19.010000"],["2024-07-24T15:23:20.010000"],["2024-07-24T15:23:21.010000"],["2024-07-24T15:23:22.010000"],["2024-07-24T15:23:23.010000"],["2024-07-24T15:23:24.010000"],["2024-07-24T15:23:25.010000"],["2024-07-24T15:23:26.010000"],["2024-07-24T15:23:27.010000"],["2024-07-24T15:23:28.010000"],["2024-07-24T15:23:29.010000"],["2024-07-24T15:23:30.010000"],["2024-07-24T15:23:31.010000"],["2024-07-24T15:23:32.010000"],["2024-07-24T15:23:33.010000"],["2024-07-24T15:23:34.010000"],["2024-07-24T15:23:35.010000"],["2024-07-24T15:23:36.010000"],["2024-07-24T15:23:37.010000"],["2024-07-24T15:23:38.010000"],["2024-07-24T15:23:39.010000"],["2024-07-24T15:23:40.010000"],["2024-07-24T15:23:41.010000"],["2024-07-24T15:23:42.010000"],["2024-07-24T15:23:43.010000"],["2024-07-24T15:23:44.010000"],["2024-07-24T15:23:45.010000"],["2024-07-24T15:23:46.010000"],["2024-07-24T15:23:47.010000"],["2024-07-24T15:23:48.010000"],["2024-07-24T15:23:49.010000"],["2024-07-24T15:23:50.010000"],["2024-07-24T15:23:51.010000"],["2024-07-24T15:23:52.010000"],["2024-07-24T15:23:53.010000"],["2024-07-24T15:23:54.010000"],["2024-07-24T15:23:55.010000"],["2024-07-24T15:23:56.010000"],["2024-07-24T15:23:57.010000"],["2024-07-24T15:23:58.010000"],["2024-07-24T15:23:59.010000"],["2024-07-24T15:24:00.010000"],["2024-07-24T15:24:01.010000"],["2024-07-24T15:24:02.010000"],["2024-07-24T15:24:03.010000"],["2024-07-24T15:24:04.010000"],["2024-07-24T15:24:05.010000"],["2024-07-24T15:24:06.010000"],["2024-07-24T15:24:07.010000"],["2024-07-24T15:24:08.010000"],["2024-07-24T15:24:09.010000"],["2024-07-24T15:24:10.010000"],["2024-07-24T15:24:11.010000"],["2024-07-24T15:24:12.010000"],["2024-07-24T15:24:13.010000"],["2024-07-24T15:24:14.010000"],["2024-07-24T15:24:15.010000"],["2024-07-24T15:24:16.010000"],["2024-07-24T15:24:17.010000"],["2024-07-24T15:24:18.010000"],["2024-07-24T15:24:19.010000"],["2024-07-24T15:24:20.010000"],["2024-07-24T15:24:21.010000"],["2024-07-24T15:24:22.010000"],["2024-07-24T15:24:23.010000"],["2024-07-24T15:24:24.010000"],["2024-07-24T15:24:25.010000"],["2024-07-24T15:24:26.010000"],["2024-07-24T15:24:27.010000"],["2024-07-24T15:24:28.010000"],["2024-07-24T15:24:29.010000"],["2024-07-24T15:24:30.010000"],["2024-07-24T15:24:31.010000"],["2024-07-24T15:24:32.010000"],["2024-07-24T15:24:33.010000"],["2024-07-24T15:24:34.010000"],["2024-07-24T15:24:35.010000"],["2024-07-24T15:24:36.010000"],["2024-07-24T15:24:37.010000"],["2024-07-24T15:24:38.010000"],["2024-07-24T15:24:39.010000"],["2024-07-24T15:24:40.010000"],["2024-07-24T15:24:41.010000"],["2024-07-24T15:24:42.010000"],["2024-07-24T15:24:43.010000"],["2024-07-24T15:24:44.010000"],["2024-07-24T15:24:45.010000"],["2024-07-24T15:24:46.010000"],["2024-07-24T15:24:47.010000"],["2024-07-24T15:24:48.010000"],["2024-07-24T15:24:49.010000"],["2024-07-24T15:24:50.010000"],["2024-07-24T15:24:51.010000"],["2024-07-24T15:24:52.010000"],["2024-07-24T15:24:53.010000"],["2024-07-24T15:24:54.010000"],["2024-07-24T15:24:55.010000"],["2024-07-24T15:24:56.010000"],["2024-07-24T15:24:57.010000"],["2024-07-24T15:24:58.010000"],["2024-07-24T15:24:59.010000"],["2024-07-24T15:25:00.010000"],["2024-07-24T15:25:01.010000"],["2024-07-24T15:25:02.010000"],["2024-07-24T15:25:03.010000"],["2024-07-24T15:25:04.010000"],["2024-07-24T15:25:05.010000"],["2024-07-24T15:25:06.010000"],["2024-07-24T15:25:07.010000"],["2024-07-24T15:25:08.010000"],["2024-07-24T15:25:09.010000"],["2024-07-24T15:25:10.010000"],["2024-07-24T15:25:11.010000"],["2024-07-24T15:25:12.010000"],["2024-07-24T15:25:13.010000"],["2024-07-24T15:25:14.010000"],["2024-07-24T15:25:15.010000"],["2024-07-24T15:25:16.010000"],["2024-07-24T15:25:17.010000"],["2024-07-24T15:25:18.010000"],["2024-07-24T15:25:19.010000"],["2024-07-24T15:25:20.010000"],["2024-07-24T15:25:21.010000"],["2024-07-24T15:25:22.010000"],["2024-07-24T15:25:23.010000"],["2024-07-24T15:25:24.010000"],["2024-07-24T15:25:25.010000"],["2024-07-24T15:25:26.010000"],["2024-07-24T15:25:27.010000"],["2024-07-24T15:25:28.010000"],["2024-07-24T15:25:29.010000"],["2024-07-24T15:25:30.010000"],["2024-07-24T15:25:31.010000"],["2024-07-24T15:25:32.010000"],["2024-07-24T15:25:33.010000"],["2024-07-24T15:25:34.010000"],["2024-07-24T15:25:35.010000"],["2024-07-24T15:25:36.010000"],["2024-07-24T15:25:37.010000"],["2024-07-24T15:25:38.010000"],["2024-07-24T15:25:39.010000"],["2024-07-24T15:25:40.010000"],["2024-07-24T15:25:41.010000"],["2024-07-24T15:25:42.010000"],["2024-07-24T15:25:43.010000"],["2024-07-24T15:25:44.010000"],["2024-07-24T15:25:45.010000"],["2024-07-24T15:25:46.010000"],["2024-07-24T15:25:47.010000"],["2024-07-24T15:25:48.010000"],["2024-07-24T15:25:49.010000"],["2024-07-24T15:25:50.010000"],["2024-07-24T15:25:51.010000"],["2024-07-24T15:25:52.010000"],["2024-07-24T15:25:53.010000"],["2024-07-24T15:25:54.010000"],["2024-07-24T15:25:55.010000"],["2024-07-24T15:25:56.010000"],["2024-07-24T15:25:57.010000"],["2024-07-24T15:25:58.010000"],["2024-07-24T15:25:59.010000"],["2024-07-24T15:26:00.010000"],["2024-07-24T15:26:01.010000"],["2024-07-24T15:26:02.010000"],["2024-07-24T15:26:03.010000"],["2024-07-24T15:26:04.010000"],["2024-07-24T15:26:05.010000"],["2024-07-24T15:26:06.010000"],["2024-07-24T15:26:07.010000"],["2024-07-24T15:26:08.010000"],["2024-07-24T15:26:09.010000"],["2024-07-24T15:26:10.010000"],["2024-07-24T15:26:11.010000"],["2024-07-24T15:26:12.010000"],["2024-07-24T15:26:13.010000"],["2024-07-24T15:26:14.010000"],["2024-07-24T15:26:15.010000"],["2024-07-24T15:26:16.010000"],["2024-07-24T15:26:17.010000"],["2024-07-24T15:26:18.010000"],["2024-07-24T15:26:19.010000"],["2024-07-24T15:26:20.010000"],["2024-07-24T15:26:21.010000"],["2024-07-24T15:26:22.010000"],["2024-07-24T15:26:23.010000"],["2024-07-24T15:26:24.010000"],["2024-07-24T15:26:25.010000"],["2024-07-24T15:26:26.010000"],["2024-07-24T15:26:27.010000"],["2024-07-24T15:26:28.010000"],["2024-07-24T15:26:29.010000"],["2024-07-24T15:26:30.010000"],["2024-07-24T15:26:31.010000"],["2024-07-24T15:26:32.010000"],["2024-07-24T15:26:33.010000"],["2024-07-24T15:26:34.010000"],["2024-07-24T15:26:35.010000"],["2024-07-24T15:26:36.010000"],["2024-07-24T15:26:37.010000"],["2024-07-24T15:26:38.010000"],["2024-07-24T15:26:39.010000"],["2024-07-24T15:26:40.010000"],["2024-07-24T15:26:41.010000"],["2024-07-24T15:26:42.010000"],["2024-07-24T15:26:43.010000"],["2024-07-24T15:26:44.010000"],["2024-07-24T15:26:45.010000"],["2024-07-24T15:26:46.010000"],["2024-07-24T15:26:47.010000"],["2024-07-24T15:26:48.010000"],["2024-07-24T15:26:49.010000"],["2024-07-24T15:26:50.010000"],["2024-07-24T15:26:51.010000"],["2024-07-24T15:26:52.010000"],["2024-07-24T15:26:53.010000"],["2024-07-24T15:26:54.010000"],["2024-07-24T15:26:55.010000"],["2024-07-24T15:26:56.010000"],["2024-07-24T15:26:57.010000"],["2024-07-24T15:26:58.010000"],["2024-07-24T15:26:59.010000"],["2024-07-24T15:27:00.010000"],["2024-07-24T15:27:01.010000"],["2024-07-24T15:27:02.010000"],["2024-07-24T15:27:03.010000"],["2024-07-24T15:27:04.010000"],["2024-07-24T15:27:05.010000"],["2024-07-24T15:27:06.010000"],["2024-07-24T15:27:07.010000"],["2024-07-24T15:27:08.010000"],["2024-07-24T15:27:09.010000"],["2024-07-24T15:27:10.010000"],["2024-07-24T15:27:11.010000"],["2024-07-24T15:27:12.010000"],["2024-07-24T15:27:13.010000"],["2024-07-24T15:27:14.010000"],["2024-07-24T15:27:15.010000"],["2024-07-24T15:27:16.010000"],["2024-07-24T15:27:17.010000"],["2024-07-24T15:27:18.010000"],["2024-07-24T15:27:19.010000"],["2024-07-24T15:27:20.010000"],["2024-07-24T15:27:21.010000"],["2024-07-24T15:27:22.010000"],["2024-07-24T15:27:23.010000"],["2024-07-24T15:27:24.010000"],["2024-07-24T15:27:25.010000"],["2024-07-24T15:27:26.010000"],["2024-07-24T15:27:27.010000"],["2024-07-24T15:27:28.010000"],["2024-07-24T15:27:29.010000"],["2024-07-24T15:27:30.010000"],["2024-07-24T15:27:31.010000"],["2024-07-24T15:27:32.010000"],["2024-07-24T15:27:33.010000"],["2024-07-24T15:27:34.010000"],["2024-07-24T15:27:35.010000"],["2024-07-24T15:27:36.010000"],["2024-07-24T15:27:37.010000"],["2024-07-24T15:27:38.010000"],["2024-07-24T15:27:39.010000"],["2024-07-24T15:27:40.010000"],["2024-07-24T15:27:41.010000"],["2024-07-24T15:27:42.010000"],["2024-07-24T15:27:43.010000"],["2024-07-24T15:27:44.010000"],["2024-07-24T15:27:45.010000"],["2024-07-24T15:27:46.010000"],["2024-07-24T15:27:47.010000"],["2024-07-24T15:27:48.010000"],["2024-07-24T15:27:49.010000"],["2024-07-24T15:27:50.010000"],["2024-07-24T15:27:51.010000"],["2024-07-24T15:27:52.010000"],["2024-07-24T15:27:53.010000"],["2024-07-24T15:27:54.010000"],["2024-07-24T15:27:55.010000"],["2024-07-24T15:27:56.010000"],["2024-07-24T15:27:57.010000"],["2024-07-24T15:27:58.010000"],["2024-07-24T15:27:59.010000"],["2024-07-24T15:28:00.010000"],["2024-07-24T15:28:01.010000"],["2024-07-24T15:28:02.010000"],["2024-07-24T15:28:03.010000"],["2024-07-24T15:28:04.010000"],["2024-07-24T15:28:05.010000"],["2024-07-24T15:28:06.010000"],["2024-07-24T15:28:07.010000"],["2024-07-24T15:28:08.010000"],["2024-07-24T15:28:09.010000"],["2024-07-24T15:28:10.010000"],["2024-07-24T15:28:11.010000"],["2024-07-24T15:28:12.010000"],["2024-07-24T15:28:13.010000"],["2024-07-24T15:28:14.010000"],["2024-07-24T15:28:15.010000"],["2024-07-24T15:28:16.010000"],["2024-07-24T15:28:17.010000"],["2024-07-24T15:28:18.010000"],["2024-07-24T15:28:19.010000"],["2024-07-24T15:28:20.010000"],["2024-07-24T15:28:21.010000"],["2024-07-24T15:28:22.010000"],["2024-07-24T15:28:23.010000"],["2024-07-24T15:28:24.010000"],["2024-07-24T15:28:25.010000"],["2024-07-24T15:28:26.010000"],["2024-07-24T15:28:27.010000"],["2024-07-24T15:28:28.010000"],["2024-07-24T15:28:29.010000"],["2024-07-24T15:28:30.010000"],["2024-07-24T15:28:31.010000"],["2024-07-24T15:28:32.010000"],["2024-07-24T15:28:33.010000"],["2024-07-24T15:28:34.010000"],["2024-07-24T15:28:35.010000"],["2024-07-24T15:28:36.010000"],["2024-07-24T15:28:37.010000"],["2024-07-24T15:28:38.010000"],["2024-07-24T15:28:39.010000"],["2024-07-24T15:28:40.010000"],["2024-07-24T15:28:41.010000"],["2024-07-24T15:28:42.010000"],["2024-07-24T15:28:43.010000"],["2024-07-24T15:28:44.010000"],["2024-07-24T15:28:45.010000"],["2024-07-24T15:28:46.010000"],["2024-07-24T15:28:47.010000"],["2024-07-24T15:28:48.010000"],["2024-07-24T15:28:49.010000"],["2024-07-24T15:28:50.010000"],["2024-07-24T15:28:51.010000"],["2024-07-24T15:28:52.010000"],["2024-07-24T15:28:53.010000"],["2024-07-24T15:28:54.010000"],["2024-07-24T15:28:55.010000"],["2024-07-24T15:28:56.010000"],["2024-07-24T15:28:57.010000"],["2024-07-24T15:28:58.010000"],["2024-07-24T15:28:59.010000"],["2024-07-24T15:29:00.010000"],["2024-07-24T15:29:01.010000"],["2024-07-24T15:29:02.010000"],["2024-07-24T15:29:03.010000"],["2024-07-24T15:29:04.010000"],["2024-07-24T15:29:05.010000"],["2024-07-24T15:29:06.010000"],["2024-07-24T15:29:07.010000"],["2024-07-24T15:29:08.010000"],["2024-07-24T15:29:09.010000"],["2024-07-24T15:29:10.010000"],["2024-07-24T15:29:11.010000"],["2024-07-24T15:29:12.010000"],["2024-07-24T15:29:13.010000"],["2024-07-24T15:29:14.010000"],["2024-07-24T15:29:15.010000"],["2024-07-24T15:29:16.010000"],["2024-07-24T15:29:17.010000"],["2024-07-24T15:29:18.010000"],["2024-07-24T15:29:19.010000"],["2024-07-24T15:29:20.010000"],["2024-07-24T15:29:21.010000"],["2024-07-24T15:29:22.010000"],["2024-07-24T15:29:23.010000"],["2024-07-24T15:29:24.010000"],["2024-07-24T15:29:25.010000"],["2024-07-24T15:29:26.010000"],["2024-07-24T15:29:27.010000"],["2024-07-24T15:29:28.010000"],["2024-07-24T15:29:29.010000"],["2024-07-24T15:29:30.010000"],["2024-07-24T15:29:31.010000"],["2024-07-24T15:29:32.010000"],["2024-07-24T15:29:33.010000"],["2024-07-24T15:29:34.010000"],["2024-07-24T15:29:35.010000"],["2024-07-24T15:29:36.010000"],["2024-07-24T15:29:37.010000"],["2024-07-24T15:29:38.010000"],["2024-07-24T15:29:39.010000"],["2024-07-24T15:29:40.010000"],["2024-07-24T15:29:41.010000"],["2024-07-24T15:29:42.010000"],["2024-07-24T15:29:43.010000"],["2024-07-24T15:29:44.010000"],["2024-07-24T15:29:45.010000"],["2024-07-24T15:29:46.010000"],["2024-07-24T15:29:47.010000"],["2024-07-24T15:29:48.010000"],["2024-07-24T15:29:49.010000"],["2024-07-24T15:29:50.010000"],["2024-07-24T15:29:51.010000"],["2024-07-24T15:29:52.010000"],["2024-07-24T15:29:53.010000"],["2024-07-24T15:29:54.010000"],["2024-07-24T15:29:55.010000"],["2024-07-24T15:29:56.010000"],["2024-07-24T15:29:57.010000"],["2024-07-24T15:29:58.010000"],["2024-07-24T15:29:59.010000"],["2024-07-24T15:30:00.010000"],["2024-07-24T15:30:01.010000"],["2024-07-24T15:30:02.010000"],["2024-07-24T15:30:03.010000"],["2024-07-24T15:30:04.010000"],["2024-07-24T15:30:05.010000"],["2024-07-24T15:30:06.010000"],["2024-07-24T15:30:07.010000"],["2024-07-24T15:30:08.010000"],["2024-07-24T15:30:09.010000"],["2024-07-24T15:30:10.010000"],["2024-07-24T15:30:11.010000"],["2024-07-24T15:30:12.010000"],["2024-07-24T15:30:13.010000"],["2024-07-24T15:30:14.010000"],["2024-07-24T15:30:15.010000"],["2024-07-24T15:30:16.010000"],["2024-07-24T15:30:17.010000"],["2024-07-24T15:30:18.010000"],["2024-07-24T15:30:19.010000"],["2024-07-24T15:30:20.010000"],["2024-07-24T15:30:21.010000"],["2024-07-24T15:30:22.010000"],["2024-07-24T15:30:23.010000"],["2024-07-24T15:30:24.010000"],["2024-07-24T15:30:25.010000"],["2024-07-24T15:30:26.010000"],["2024-07-24T15:30:27.010000"],["2024-07-24T15:30:28.010000"],["2024-07-24T15:30:29.010000"],["2024-07-24T15:30:30.010000"],["2024-07-24T15:30:31.010000"],["2024-07-24T15:30:32.010000"],["2024-07-24T15:30:33.010000"],["2024-07-24T15:30:34.010000"],["2024-07-24T15:30:35.010000"],["2024-07-24T15:30:36.010000"],["2024-07-24T15:30:37.010000"],["2024-07-24T15:30:38.010000"],["2024-07-24T15:30:39.010000"],["2024-07-24T15:30:40.010000"],["2024-07-24T15:30:41.010000"],["2024-07-24T15:30:42.010000"],["2024-07-24T15:30:43.010000"],["2024-07-24T15:30:44.010000"],["2024-07-24T15:30:45.010000"],["2024-07-24T15:30:46.010000"],["2024-07-24T15:30:47.010000"],["2024-07-24T15:30:48.010000"],["2024-07-24T15:30:49.010000"],["2024-07-24T15:30:50.010000"],["2024-07-24T15:30:51.010000"],["2024-07-24T15:30:52.010000"],["2024-07-24T15:30:53.010000"],["2024-07-24T15:30:54.010000"],["2024-07-24T15:30:55.010000"],["2024-07-24T15:30:56.010000"],["2024-07-24T15:30:57.010000"],["2024-07-24T15:30:58.010000"],["2024-07-24T15:30:59.010000"],["2024-07-24T15:31:00.010000"],["2024-07-24T15:31:01.010000"],["2024-07-24T15:31:02.010000"],["2024-07-24T15:31:03.010000"],["2024-07-24T15:31:04.010000"],["2024-07-24T15:31:05.010000"],["2024-07-24T15:31:06.010000"],["2024-07-24T15:31:07.010000"],["2024-07-24T15:31:08.010000"],["2024-07-24T15:31:09.010000"],["2024-07-24T15:31:10.010000"],["2024-07-24T15:31:11.010000"],["2024-07-24T15:31:12.010000"],["2024-07-24T15:31:13.010000"],["2024-07-24T15:31:14.010000"],["2024-07-24T15:31:15.010000"],["2024-07-24T15:31:16.010000"],["2024-07-24T15:31:17.010000"],["2024-07-24T15:31:18.010000"],["2024-07-24T15:31:19.010000"],["2024-07-24T15:31:20.010000"],["2024-07-24T15:31:21.010000"],["2024-07-24T15:31:22.010000"],["2024-07-24T15:31:23.010000"],["2024-07-24T15:31:24.010000"],["2024-07-24T15:31:25.010000"],["2024-07-24T15:31:26.010000"],["2024-07-24T15:31:27.010000"],["2024-07-24T15:31:28.010000"],["2024-07-24T15:31:29.010000"],["2024-07-24T15:31:30.010000"],["2024-07-24T15:31:31.010000"],["2024-07-24T15:31:32.010000"],["2024-07-24T15:31:33.010000"],["2024-07-24T15:31:34.010000"],["2024-07-24T15:31:35.010000"],["2024-07-24T15:31:36.010000"],["2024-07-24T15:31:37.010000"],["2024-07-24T15:31:38.010000"],["2024-07-24T15:31:39.010000"],["2024-07-24T15:31:40.010000"],["2024-07-24T15:31:41.010000"],["2024-07-24T15:31:42.010000"],["2024-07-24T15:31:43.010000"],["2024-07-24T15:31:44.010000"],["2024-07-24T15:31:45.010000"],["2024-07-24T15:31:46.010000"],["2024-07-24T15:31:47.010000"],["2024-07-24T15:31:48.010000"],["2024-07-24T15:31:49.010000"],["2024-07-24T15:31:50.010000"],["2024-07-24T15:31:51.010000"],["2024-07-24T15:31:52.010000"],["2024-07-24T15:31:53.010000"],["2024-07-24T15:31:54.010000"],["2024-07-24T15:31:55.010000"],["2024-07-24T15:31:56.010000"],["2024-07-24T15:31:57.010000"],["2024-07-24T15:31:58.010000"],["2024-07-24T15:31:59.010000"],["2024-07-24T15:32:00.010000"],["2024-07-24T15:32:01.010000"],["2024-07-24T15:32:02.010000"],["2024-07-24T15:32:03.010000"],["2024-07-24T15:32:04.010000"],["2024-07-24T15:32:05.010000"],["2024-07-24T15:32:06.010000"],["2024-07-24T15:32:07.010000"],["2024-07-24T15:32:08.010000"],["2024-07-24T15:32:09.010000"],["2024-07-24T15:32:10.010000"],["2024-07-24T15:32:11.010000"],["2024-07-24T15:32:12.010000"],["2024-07-24T15:32:13.010000"],["2024-07-24T15:32:14.010000"],["2024-07-24T15:32:15.010000"],["2024-07-24T15:32:16.010000"],["2024-07-24T15:32:17.010000"],["2024-07-24T15:32:18.010000"],["2024-07-24T15:32:19.010000"],["2024-07-24T15:32:20.010000"],["2024-07-24T15:32:21.010000"],["2024-07-24T15:32:22.010000"],["2024-07-24T15:32:23.010000"],["2024-07-24T15:32:24.010000"],["2024-07-24T15:32:25.010000"],["2024-07-24T15:32:26.010000"],["2024-07-24T15:32:27.010000"],["2024-07-24T15:32:28.010000"],["2024-07-24T15:32:29.010000"],["2024-07-24T15:32:30.010000"],["2024-07-24T15:32:31.010000"],["2024-07-24T15:32:32.010000"],["2024-07-24T15:32:33.010000"],["2024-07-24T15:32:34.010000"],["2024-07-24T15:32:35.010000"],["2024-07-24T15:32:36.010000"],["2024-07-24T15:32:37.010000"],["2024-07-24T15:32:38.010000"],["2024-07-24T15:32:39.010000"],["2024-07-24T15:32:40.010000"],["2024-07-24T15:32:41.010000"],["2024-07-24T15:32:42.010000"],["2024-07-24T15:32:43.010000"],["2024-07-24T15:32:44.010000"],["2024-07-24T15:32:45.010000"],["2024-07-24T15:32:46.010000"],["2024-07-24T15:32:47.010000"],["2024-07-24T15:32:48.010000"],["2024-07-24T15:32:49.010000"],["2024-07-24T15:32:50.010000"],["2024-07-24T15:32:51.010000"],["2024-07-24T15:32:52.010000"],["2024-07-24T15:32:53.010000"],["2024-07-24T15:32:54.010000"],["2024-07-24T15:32:55.010000"],["2024-07-24T15:32:56.010000"],["2024-07-24T15:32:57.010000"],["2024-07-24T15:32:58.010000"],["2024-07-24T15:32:59.010000"],["2024-07-24T15:33:00.010000"],["2024-07-24T15:33:01.010000"],["2024-07-24T15:33:02.010000"],["2024-07-24T15:33:03.010000"],["2024-07-24T15:33:04.010000"],["2024-07-24T15:33:05.010000"],["2024-07-24T15:33:06.010000"],["2024-07-24T15:33:07.010000"],["2024-07-24T15:33:08.010000"],["2024-07-24T15:33:09.010000"],["2024-07-24T15:33:10.010000"],["2024-07-24T15:33:11.010000"],["2024-07-24T15:33:12.010000"],["2024-07-24T15:33:13.010000"],["2024-07-24T15:33:14.010000"],["2024-07-24T15:33:15.010000"],["2024-07-24T15:33:16.010000"],["2024-07-24T15:33:17.010000"],["2024-07-24T15:33:18.010000"],["2024-07-24T15:33:19.010000"],["2024-07-24T15:33:20.010000"],["2024-07-24T15:33:21.010000"],["2024-07-24T15:33:22.010000"],["2024-07-24T15:33:23.010000"],["2024-07-24T15:33:24.010000"],["2024-07-24T15:33:25.010000"],["2024-07-24T15:33:26.010000"],["2024-07-24T15:33:27.010000"],["2024-07-24T15:33:28.010000"],["2024-07-24T15:33:29.010000"],["2024-07-24T15:33:30.010000"],["2024-07-24T15:33:31.010000"],["2024-07-24T15:33:32.010000"],["2024-07-24T15:33:33.010000"],["2024-07-24T15:33:34.010000"],["2024-07-24T15:33:35.010000"],["2024-07-24T15:33:36.010000"],["2024-07-24T15:33:37.010000"],["2024-07-24T15:33:38.010000"],["2024-07-24T15:33:39.010000"],["2024-07-24T15:33:40.010000"],["2024-07-24T15:33:41.010000"],["2024-07-24T15:33:42.010000"],["2024-07-24T15:33:43.010000"],["2024-07-24T15:33:44.010000"],["2024-07-24T15:33:45.010000"],["2024-07-24T15:33:46.010000"],["2024-07-24T15:33:47.010000"],["2024-07-24T15:33:48.010000"],["2024-07-24T15:33:49.010000"],["2024-07-24T15:33:50.010000"],["2024-07-24T15:33:51.010000"],["2024-07-24T15:33:52.010000"],["2024-07-24T15:33:53.010000"],["2024-07-24T15:33:54.010000"],["2024-07-24T15:33:55.010000"],["2024-07-24T15:33:56.010000"],["2024-07-24T15:33:57.010000"],["2024-07-24T15:33:58.010000"],["2024-07-24T15:33:59.010000"],["2024-07-24T15:34:00.010000"],["2024-07-24T15:34:01.010000"],["2024-07-24T15:34:02.010000"],["2024-07-24T15:34:03.010000"],["2024-07-24T15:34:04.010000"],["2024-07-24T15:34:05.010000"],["2024-07-24T15:34:06.010000"],["2024-07-24T15:34:07.010000"],["2024-07-24T15:34:08.010000"],["2024-07-24T15:34:09.010000"],["2024-07-24T15:34:10.010000"],["2024-07-24T15:34:11.010000"],["2024-07-24T15:34:12.010000"],["2024-07-24T15:34:13.010000"],["2024-07-24T15:34:14.010000"],["2024-07-24T15:34:15.010000"],["2024-07-24T15:34:16.010000"],["2024-07-24T15:34:17.010000"],["2024-07-24T15:34:18.010000"],["2024-07-24T15:34:19.010000"],["2024-07-24T15:34:20.010000"],["2024-07-24T15:34:21.010000"],["2024-07-24T15:34:22.010000"],["2024-07-24T15:34:23.010000"],["2024-07-24T15:34:24.010000"],["2024-07-24T15:34:25.010000"],["2024-07-24T15:34:26.010000"],["2024-07-24T15:34:27.010000"],["2024-07-24T15:34:28.010000"],["2024-07-24T15:34:29.010000"],["2024-07-24T15:34:30.010000"],["2024-07-24T15:34:31.010000"],["2024-07-24T15:34:32.010000"],["2024-07-24T15:34:33.010000"],["2024-07-24T15:34:34.010000"],["2024-07-24T15:34:35.010000"],["2024-07-24T15:34:36.010000"],["2024-07-24T15:34:37.010000"],["2024-07-24T15:34:38.010000"],["2024-07-24T15:34:39.010000"],["2024-07-24T15:34:40.010000"],["2024-07-24T15:34:41.010000"],["2024-07-24T15:34:42.010000"],["2024-07-24T15:34:43.010000"],["2024-07-24T15:34:44.010000"],["2024-07-24T15:34:45.010000"],["2024-07-24T15:34:46.010000"],["2024-07-24T15:34:47.010000"],["2024-07-24T15:34:48.010000"],["2024-07-24T15:34:49.010000"],["2024-07-24T15:34:50.010000"],["2024-07-24T15:34:51.010000"],["2024-07-24T15:34:52.010000"],["2024-07-24T15:34:53.010000"],["2024-07-24T15:34:54.010000"],["2024-07-24T15:34:55.010000"],["2024-07-24T15:34:56.010000"],["2024-07-24T15:34:57.010000"],["2024-07-24T15:34:58.010000"],["2024-07-24T15:34:59.010000"],["2024-07-24T15:35:00.010000"],["2024-07-24T15:35:01.010000"],["2024-07-24T15:35:02.010000"],["2024-07-24T15:35:03.010000"],["2024-07-24T15:35:04.010000"],["2024-07-24T15:35:05.010000"],["2024-07-24T15:35:06.010000"],["2024-07-24T15:35:07.010000"],["2024-07-24T15:35:08.010000"],["2024-07-24T15:35:09.010000"],["2024-07-24T15:35:10.010000"],["2024-07-24T15:35:11.010000"],["2024-07-24T15:35:12.010000"],["2024-07-24T15:35:13.010000"],["2024-07-24T15:35:14.010000"],["2024-07-24T15:35:15.010000"],["2024-07-24T15:35:16.010000"],["2024-07-24T15:35:17.010000"],["2024-07-24T15:35:18.010000"],["2024-07-24T15:35:19.010000"],["2024-07-24T15:35:20.010000"],["2024-07-24T15:35:21.010000"],["2024-07-24T15:35:22.010000"],["2024-07-24T15:35:23.010000"],["2024-07-24T15:35:24.010000"],["2024-07-24T15:35:25.010000"],["2024-07-24T15:35:26.010000"],["2024-07-24T15:35:27.010000"],["2024-07-24T15:35:28.010000"],["2024-07-24T15:35:29.010000"],["2024-07-24T15:35:30.010000"],["2024-07-24T15:35:31.010000"],["2024-07-24T15:35:32.010000"],["2024-07-24T15:35:33.010000"],["2024-07-24T15:35:34.010000"],["2024-07-24T15:35:35.010000"],["2024-07-24T15:35:36.010000"],["2024-07-24T15:35:37.010000"],["2024-07-24T15:35:38.010000"],["2024-07-24T15:35:39.010000"],["2024-07-24T15:35:40.010000"],["2024-07-24T15:35:41.010000"],["2024-07-24T15:35:42.010000"],["2024-07-24T15:35:43.010000"],["2024-07-24T15:35:44.010000"],["2024-07-24T15:35:45.010000"],["2024-07-24T15:35:46.010000"],["2024-07-24T15:35:47.010000"],["2024-07-24T15:35:48.010000"],["2024-07-24T15:35:49.010000"],["2024-07-24T15:35:50.010000"],["2024-07-24T15:35:51.010000"],["2024-07-24T15:35:52.010000"],["2024-07-24T15:35:53.010000"],["2024-07-24T15:35:54.010000"],["2024-07-24T15:35:55.010000"],["2024-07-24T15:35:56.010000"],["2024-07-24T15:35:57.010000"],["2024-07-24T15:35:58.010000"],["2024-07-24T15:35:59.010000"],["2024-07-24T15:36:00.010000"],["2024-07-24T15:36:01.010000"],["2024-07-24T15:36:02.010000"],["2024-07-24T15:36:03.010000"],["2024-07-24T15:36:04.010000"],["2024-07-24T15:36:05.010000"],["2024-07-24T15:36:06.010000"],["2024-07-24T15:36:07.010000"],["2024-07-24T15:36:08.010000"],["2024-07-24T15:36:09.010000"],["2024-07-24T15:36:10.010000"],["2024-07-24T15:36:11.010000"],["2024-07-24T15:36:12.010000"],["2024-07-24T15:36:13.010000"],["2024-07-24T15:36:14.010000"],["2024-07-24T15:36:15.010000"],["2024-07-24T15:36:16.010000"],["2024-07-24T15:36:17.010000"],["2024-07-24T15:36:18.010000"],["2024-07-24T15:36:19.010000"],["2024-07-24T15:36:20.010000"],["2024-07-24T15:36:21.010000"],["2024-07-24T15:36:22.010000"],["2024-07-24T15:36:23.010000"],["2024-07-24T15:36:24.010000"],["2024-07-24T15:36:25.010000"],["2024-07-24T15:36:26.010000"],["2024-07-24T15:36:27.010000"],["2024-07-24T15:36:28.010000"],["2024-07-24T15:36:29.010000"],["2024-07-24T15:36:30.010000"],["2024-07-24T15:36:31.010000"],["2024-07-24T15:36:32.010000"],["2024-07-24T15:36:33.010000"],["2024-07-24T15:36:34.010000"],["2024-07-24T15:36:35.010000"],["2024-07-24T15:36:36.010000"],["2024-07-24T15:36:37.010000"],["2024-07-24T15:36:38.010000"],["2024-07-24T15:36:39.010000"],["2024-07-24T15:36:40.010000"],["2024-07-24T15:36:41.010000"],["2024-07-24T15:36:42.010000"],["2024-07-24T15:36:43.010000"],["2024-07-24T15:36:44.010000"],["2024-07-24T15:36:45.010000"],["2024-07-24T15:36:46.010000"],["2024-07-24T15:36:47.010000"],["2024-07-24T15:36:48.010000"],["2024-07-24T15:36:49.010000"],["2024-07-24T15:36:50.010000"],["2024-07-24T15:36:51.010000"],["2024-07-24T15:36:52.010000"],["2024-07-24T15:36:53.010000"],["2024-07-24T15:36:54.010000"],["2024-07-24T15:36:55.010000"],["2024-07-24T15:36:56.010000"],["2024-07-24T15:36:57.010000"],["2024-07-24T15:36:58.010000"],["2024-07-24T15:36:59.010000"],["2024-07-24T15:37:00.010000"],["2024-07-24T15:37:01.010000"],["2024-07-24T15:37:02.010000"],["2024-07-24T15:37:03.010000"],["2024-07-24T15:37:04.010000"],["2024-07-24T15:37:05.010000"],["2024-07-24T15:37:06.010000"],["2024-07-24T15:37:07.010000"],["2024-07-24T15:37:08.010000"],["2024-07-24T15:37:09.010000"],["2024-07-24T15:37:10.010000"],["2024-07-24T15:37:11.010000"],["2024-07-24T15:37:12.010000"],["2024-07-24T15:37:13.010000"],["2024-07-24T15:37:14.010000"],["2024-07-24T15:37:15.010000"],["2024-07-24T15:37:16.010000"],["2024-07-24T15:37:17.010000"],["2024-07-24T15:37:18.010000"],["2024-07-24T15:37:19.010000"],["2024-07-24T15:37:20.010000"],["2024-07-24T15:37:21.010000"],["2024-07-24T15:37:22.010000"],["2024-07-24T15:37:23.010000"],["2024-07-24T15:37:24.010000"],["2024-07-24T15:37:25.010000"],["2024-07-24T15:37:26.010000"],["2024-07-24T15:37:27.010000"],["2024-07-24T15:37:28.010000"],["2024-07-24T15:37:29.010000"],["2024-07-24T15:37:30.010000"],["2024-07-24T15:37:31.010000"],["2024-07-24T15:37:32.010000"],["2024-07-24T15:37:33.010000"],["2024-07-24T15:37:34.010000"],["2024-07-24T15:37:35.010000"],["2024-07-24T15:37:36.010000"],["2024-07-24T15:37:37.010000"],["2024-07-24T15:37:38.010000"],["2024-07-24T15:37:39.010000"],["2024-07-24T15:37:40.010000"],["2024-07-24T15:37:41.010000"],["2024-07-24T15:37:42.010000"],["2024-07-24T15:37:43.010000"],["2024-07-24T15:37:44.010000"],["2024-07-24T15:37:45.010000"],["2024-07-24T15:37:46.010000"],["2024-07-24T15:37:47.010000"],["2024-07-24T15:37:48.010000"],["2024-07-24T15:37:49.010000"],["2024-07-24T15:37:50.010000"],["2024-07-24T15:37:51.010000"],["2024-07-24T15:37:52.010000"],["2024-07-24T15:37:53.010000"],["2024-07-24T15:37:54.010000"],["2024-07-24T15:37:55.010000"],["2024-07-24T15:37:56.010000"],["2024-07-24T15:37:57.010000"],["2024-07-24T15:37:58.010000"],["2024-07-24T15:37:59.010000"],["2024-07-24T15:38:00.010000"],["2024-07-24T15:38:01.010000"],["2024-07-24T15:38:02.010000"],["2024-07-24T15:38:03.010000"],["2024-07-24T15:38:04.010000"],["2024-07-24T15:38:05.010000"],["2024-07-24T15:38:06.010000"],["2024-07-24T15:38:07.010000"],["2024-07-24T15:38:08.010000"],["2024-07-24T15:38:09.010000"],["2024-07-24T15:38:10.010000"],["2024-07-24T15:38:11.010000"],["2024-07-24T15:38:12.010000"],["2024-07-24T15:38:13.010000"],["2024-07-24T15:38:14.010000"],["2024-07-24T15:38:15.010000"],["2024-07-24T15:38:16.010000"],["2024-07-24T15:38:17.010000"],["2024-07-24T15:38:18.010000"],["2024-07-24T15:38:19.010000"],["2024-07-24T15:38:20.010000"],["2024-07-24T15:38:21.010000"],["2024-07-24T15:38:22.010000"],["2024-07-24T15:38:23.010000"],["2024-07-24T15:38:24.010000"],["2024-07-24T15:38:25.010000"],["2024-07-24T15:38:26.010000"],["2024-07-24T15:38:27.010000"],["2024-07-24T15:38:28.010000"],["2024-07-24T15:38:29.010000"],["2024-07-24T15:38:30.010000"],["2024-07-24T15:38:31.010000"],["2024-07-24T15:38:32.010000"],["2024-07-24T15:38:33.010000"],["2024-07-24T15:38:34.010000"],["2024-07-24T15:38:35.010000"],["2024-07-24T15:38:36.010000"],["2024-07-24T15:38:37.010000"],["2024-07-24T15:38:38.010000"],["2024-07-24T15:38:39.010000"],["2024-07-24T15:38:40.010000"],["2024-07-24T15:38:41.010000"],["2024-07-24T15:38:42.010000"],["2024-07-24T15:38:43.010000"],["2024-07-24T15:38:44.010000"],["2024-07-24T15:38:45.010000"],["2024-07-24T15:38:46.010000"],["2024-07-24T15:38:47.010000"],["2024-07-24T15:38:48.010000"],["2024-07-24T15:38:49.010000"],["2024-07-24T15:38:50.010000"],["2024-07-24T15:38:51.010000"],["2024-07-24T15:38:52.010000"],["2024-07-24T15:38:53.010000"],["2024-07-24T15:38:54.010000"],["2024-07-24T15:38:55.010000"],["2024-07-24T15:38:56.010000"],["2024-07-24T15:38:57.010000"],["2024-07-24T15:38:58.010000"],["2024-07-24T15:38:59.010000"],["2024-07-24T15:39:00.010000"],["2024-07-24T15:39:01.010000"],["2024-07-24T15:39:02.010000"],["2024-07-24T15:39:03.010000"],["2024-07-24T15:39:04.010000"],["2024-07-24T15:39:05.010000"],["2024-07-24T15:39:06.010000"],["2024-07-24T15:39:07.010000"],["2024-07-24T15:39:08.010000"],["2024-07-24T15:39:09.010000"],["2024-07-24T15:39:10.010000"],["2024-07-24T15:39:11.010000"],["2024-07-24T15:39:12.010000"],["2024-07-24T15:39:13.010000"],["2024-07-24T15:39:14.010000"],["2024-07-24T15:39:15.010000"],["2024-07-24T15:39:16.010000"],["2024-07-24T15:39:17.010000"],["2024-07-24T15:39:18.010000"],["2024-07-24T15:39:19.010000"],["2024-07-24T15:39:20.010000"],["2024-07-24T15:39:21.010000"],["2024-07-24T15:39:22.010000"],["2024-07-24T15:39:23.010000"],["2024-07-24T15:39:24.010000"],["2024-07-24T15:39:25.010000"],["2024-07-24T15:39:26.010000"],["2024-07-24T15:39:27.010000"],["2024-07-24T15:39:28.010000"],["2024-07-24T15:39:29.010000"],["2024-07-24T15:39:30.010000"],["2024-07-24T15:39:31.010000"],["2024-07-24T15:39:32.010000"],["2024-07-24T15:39:33.010000"],["2024-07-24T15:39:34.010000"],["2024-07-24T15:39:35.010000"],["2024-07-24T15:39:36.010000"],["2024-07-24T15:39:37.010000"],["2024-07-24T15:39:38.010000"],["2024-07-24T15:39:39.010000"],["2024-07-24T15:39:40.010000"],["2024-07-24T15:39:41.010000"],["2024-07-24T15:39:42.010000"],["2024-07-24T15:39:43.010000"],["2024-07-24T15:39:44.010000"],["2024-07-24T15:39:45.010000"],["2024-07-24T15:39:46.010000"],["2024-07-24T15:39:47.010000"],["2024-07-24T15:39:48.010000"],["2024-07-24T15:39:49.010000"],["2024-07-24T15:39:50.010000"],["2024-07-24T15:39:51.010000"],["2024-07-24T15:39:52.010000"],["2024-07-24T15:39:53.010000"],["2024-07-24T15:39:54.010000"],["2024-07-24T15:39:55.010000"],["2024-07-24T15:39:56.010000"],["2024-07-24T15:39:57.010000"],["2024-07-24T15:39:58.010000"],["2024-07-24T15:39:59.010000"],["2024-07-24T15:40:00.010000"],["2024-07-24T15:40:01.010000"],["2024-07-24T15:40:02.010000"],["2024-07-24T15:40:03.010000"],["2024-07-24T15:40:04.010000"],["2024-07-24T15:40:05.010000"],["2024-07-24T15:40:06.010000"],["2024-07-24T15:40:07.010000"],["2024-07-24T15:40:08.010000"],["2024-07-24T15:40:09.010000"],["2024-07-24T15:40:10.010000"],["2024-07-24T15:40:11.010000"],["2024-07-24T15:40:12.010000"],["2024-07-24T15:40:13.010000"],["2024-07-24T15:40:14.010000"],["2024-07-24T15:40:15.010000"],["2024-07-24T15:40:16.010000"],["2024-07-24T15:40:17.010000"],["2024-07-24T15:40:18.010000"],["2024-07-24T15:40:19.010000"],["2024-07-24T15:40:20.010000"],["2024-07-24T15:40:21.010000"],["2024-07-24T15:40:22.010000"],["2024-07-24T15:40:23.010000"],["2024-07-24T15:40:24.010000"],["2024-07-24T15:40:25.010000"],["2024-07-24T15:40:26.010000"],["2024-07-24T15:40:27.010000"],["2024-07-24T15:40:28.010000"],["2024-07-24T15:40:29.010000"],["2024-07-24T15:40:30.010000"],["2024-07-24T15:40:31.010000"],["2024-07-24T15:40:32.010000"],["2024-07-24T15:40:33.010000"],["2024-07-24T15:40:34.010000"],["2024-07-24T15:40:35.010000"],["2024-07-24T15:40:36.010000"],["2024-07-24T15:40:37.010000"],["2024-07-24T15:40:38.010000"],["2024-07-24T15:40:39.010000"],["2024-07-24T15:40:40.010000"],["2024-07-24T15:40:41.010000"],["2024-07-24T15:40:42.010000"],["2024-07-24T15:40:43.010000"],["2024-07-24T15:40:44.010000"],["2024-07-24T15:40:45.010000"],["2024-07-24T15:40:46.010000"],["2024-07-24T15:40:47.010000"],["2024-07-24T15:40:48.010000"],["2024-07-24T15:40:49.010000"],["2024-07-24T15:40:50.010000"],["2024-07-24T15:40:51.010000"],["2024-07-24T15:40:52.010000"],["2024-07-24T15:40:53.010000"],["2024-07-24T15:40:54.010000"],["2024-07-24T15:40:55.010000"],["2024-07-24T15:40:56.010000"],["2024-07-24T15:40:57.010000"],["2024-07-24T15:40:58.010000"],["2024-07-24T15:40:59.010000"],["2024-07-24T15:41:00.010000"],["2024-07-24T15:41:01.010000"],["2024-07-24T15:41:02.010000"],["2024-07-24T15:41:03.010000"],["2024-07-24T15:41:04.010000"],["2024-07-24T15:41:05.010000"],["2024-07-24T15:41:06.010000"],["2024-07-24T15:41:07.010000"],["2024-07-24T15:41:08.010000"],["2024-07-24T15:41:09.010000"],["2024-07-24T15:41:10.010000"],["2024-07-24T15:41:11.010000"],["2024-07-24T15:41:12.010000"],["2024-07-24T15:41:13.010000"],["2024-07-24T15:41:14.010000"],["2024-07-24T15:41:15.010000"],["2024-07-24T15:41:16.010000"],["2024-07-24T15:41:17.010000"],["2024-07-24T15:41:18.010000"],["2024-07-24T15:41:19.010000"],["2024-07-24T15:41:20.010000"],["2024-07-24T15:41:21.010000"],["2024-07-24T15:41:22.010000"],["2024-07-24T15:41:23.010000"],["2024-07-24T15:41:24.010000"],["2024-07-24T15:41:25.010000"],["2024-07-24T15:41:26.010000"],["2024-07-24T15:41:27.010000"],["2024-07-24T15:41:28.010000"],["2024-07-24T15:41:29.010000"],["2024-07-24T15:41:30.010000"],["2024-07-24T15:41:31.010000"],["2024-07-24T15:41:32.010000"],["2024-07-24T15:41:33.010000"],["2024-07-24T15:41:34.010000"],["2024-07-24T15:41:35.010000"],["2024-07-24T15:41:36.010000"],["2024-07-24T15:41:37.010000"],["2024-07-24T15:41:38.010000"],["2024-07-24T15:41:39.010000"],["2024-07-24T15:41:40.010000"],["2024-07-24T15:41:41.010000"],["2024-07-24T15:41:42.010000"],["2024-07-24T15:41:43.010000"],["2024-07-24T15:41:44.010000"],["2024-07-24T15:41:45.010000"],["2024-07-24T15:41:46.010000"],["2024-07-24T15:41:47.010000"],["2024-07-24T15:41:48.010000"],["2024-07-24T15:41:49.010000"],["2024-07-24T15:41:50.010000"],["2024-07-24T15:41:51.010000"],["2024-07-24T15:41:52.010000"],["2024-07-24T15:41:53.010000"],["2024-07-24T15:41:54.010000"],["2024-07-24T15:41:55.010000"],["2024-07-24T15:41:56.010000"],["2024-07-24T15:41:57.010000"],["2024-07-24T15:41:58.010000"],["2024-07-24T15:41:59.010000"],["2024-07-24T15:42:00.010000"],["2024-07-24T15:42:01.010000"],["2024-07-24T15:42:02.010000"],["2024-07-24T15:42:03.010000"],["2024-07-24T15:42:04.010000"],["2024-07-24T15:42:05.010000"],["2024-07-24T15:42:06.010000"],["2024-07-24T15:42:07.010000"],["2024-07-24T15:42:08.010000"],["2024-07-24T15:42:09.010000"],["2024-07-24T15:42:10.010000"],["2024-07-24T15:42:11.010000"],["2024-07-24T15:42:12.010000"],["2024-07-24T15:42:13.010000"],["2024-07-24T15:42:14.010000"],["2024-07-24T15:42:15.010000"],["2024-07-24T15:42:16.010000"],["2024-07-24T15:42:17.010000"],["2024-07-24T15:42:18.010000"],["2024-07-24T15:42:19.010000"],["2024-07-24T15:42:20.010000"],["2024-07-24T15:42:21.010000"],["2024-07-24T15:42:22.010000"],["2024-07-24T15:42:23.010000"],["2024-07-24T15:42:24.010000"],["2024-07-24T15:42:25.010000"],["2024-07-24T15:42:26.010000"],["2024-07-24T15:42:27.010000"],["2024-07-24T15:42:28.010000"],["2024-07-24T15:42:29.010000"],["2024-07-24T15:42:30.010000"],["2024-07-24T15:42:31.010000"],["2024-07-24T15:42:32.010000"],["2024-07-24T15:42:33.010000"],["2024-07-24T15:42:34.010000"],["2024-07-24T15:42:35.010000"],["2024-07-24T15:42:36.010000"],["2024-07-24T15:42:37.010000"],["2024-07-24T15:42:38.010000"],["2024-07-24T15:42:39.010000"],["2024-07-24T15:42:40.010000"],["2024-07-24T15:42:41.010000"],["2024-07-24T15:42:42.010000"],["2024-07-24T15:42:43.010000"],["2024-07-24T15:42:44.010000"],["2024-07-24T15:42:45.010000"],["2024-07-24T15:42:46.010000"],["2024-07-24T15:42:47.010000"],["2024-07-24T15:42:48.010000"],["2024-07-24T15:42:49.010000"],["2024-07-24T15:42:50.010000"],["2024-07-24T15:42:51.010000"],["2024-07-24T15:42:52.010000"],["2024-07-24T15:42:53.010000"],["2024-07-24T15:42:54.010000"],["2024-07-24T15:42:55.010000"],["2024-07-24T15:42:56.010000"],["2024-07-24T15:42:57.010000"],["2024-07-24T15:42:58.010000"],["2024-07-24T15:42:59.010000"],["2024-07-24T15:43:00.010000"],["2024-07-24T15:43:01.010000"],["2024-07-24T15:43:02.010000"],["2024-07-24T15:43:03.010000"],["2024-07-24T15:43:04.010000"],["2024-07-24T15:43:05.010000"],["2024-07-24T15:43:06.010000"],["2024-07-24T15:43:07.010000"],["2024-07-24T15:43:08.010000"],["2024-07-24T15:43:09.010000"],["2024-07-24T15:43:10.010000"],["2024-07-24T15:43:11.010000"],["2024-07-24T15:43:12.010000"],["2024-07-24T15:43:13.010000"],["2024-07-24T15:43:14.010000"],["2024-07-24T15:43:15.010000"],["2024-07-24T15:43:16.010000"],["2024-07-24T15:43:17.010000"],["2024-07-24T15:43:18.010000"],["2024-07-24T15:43:19.010000"],["2024-07-24T15:43:20.010000"],["2024-07-24T15:43:21.010000"],["2024-07-24T15:43:22.010000"],["2024-07-24T15:43:23.010000"],["2024-07-24T15:43:24.010000"],["2024-07-24T15:43:25.010000"],["2024-07-24T15:43:26.010000"],["2024-07-24T15:43:27.010000"],["2024-07-24T15:43:28.010000"],["2024-07-24T15:43:29.010000"],["2024-07-24T15:43:30.010000"],["2024-07-24T15:43:31.010000"],["2024-07-24T15:43:32.010000"],["2024-07-24T15:43:33.010000"],["2024-07-24T15:43:34.010000"],["2024-07-24T15:43:35.010000"],["2024-07-24T15:43:36.010000"],["2024-07-24T15:43:37.010000"],["2024-07-24T15:43:38.010000"],["2024-07-24T15:43:39.010000"],["2024-07-24T15:43:40.010000"],["2024-07-24T15:43:41.010000"],["2024-07-24T15:43:42.010000"],["2024-07-24T15:43:43.010000"],["2024-07-24T15:43:44.010000"],["2024-07-24T15:43:45.010000"],["2024-07-24T15:43:46.010000"],["2024-07-24T15:43:47.010000"],["2024-07-24T15:43:48.010000"],["2024-07-24T15:43:49.010000"],["2024-07-24T15:43:50.010000"],["2024-07-24T15:43:51.010000"],["2024-07-24T15:43:52.010000"],["2024-07-24T15:43:53.010000"],["2024-07-24T15:43:54.010000"],["2024-07-24T15:43:55.010000"],["2024-07-24T15:43:56.010000"],["2024-07-24T15:43:57.010000"],["2024-07-24T15:43:58.010000"],["2024-07-24T15:43:59.010000"],["2024-07-24T15:44:00.010000"],["2024-07-24T15:44:01.010000"],["2024-07-24T15:44:02.010000"],["2024-07-24T15:44:03.010000"],["2024-07-24T15:44:04.010000"],["2024-07-24T15:44:05.010000"],["2024-07-24T15:44:06.010000"],["2024-07-24T15:44:07.010000"],["2024-07-24T15:44:08.010000"],["2024-07-24T15:44:09.010000"],["2024-07-24T15:44:10.010000"],["2024-07-24T15:44:11.010000"],["2024-07-24T15:44:12.010000"],["2024-07-24T15:44:13.010000"],["2024-07-24T15:44:14.010000"],["2024-07-24T15:44:15.010000"],["2024-07-24T15:44:16.010000"],["2024-07-24T15:44:17.010000"],["2024-07-24T15:44:18.010000"],["2024-07-24T15:44:19.010000"],["2024-07-24T15:44:20.010000"],["2024-07-24T15:44:21.010000"],["2024-07-24T15:44:22.010000"],["2024-07-24T15:44:23.010000"],["2024-07-24T15:44:24.010000"],["2024-07-24T15:44:25.010000"],["2024-07-24T15:44:26.010000"],["2024-07-24T15:44:27.010000"],["2024-07-24T15:44:28.010000"],["2024-07-24T15:44:29.010000"],["2024-07-24T15:44:30.010000"],["2024-07-24T15:44:31.010000"],["2024-07-24T15:44:32.010000"],["2024-07-24T15:44:33.010000"],["2024-07-24T15:44:34.010000"],["2024-07-24T15:44:35.010000"],["2024-07-24T15:44:36.010000"],["2024-07-24T15:44:37.010000"],["2024-07-24T15:44:38.010000"],["2024-07-24T15:44:39.010000"],["2024-07-24T15:44:40.010000"],["2024-07-24T15:44:41.010000"],["2024-07-24T15:44:42.010000"],["2024-07-24T15:44:43.010000"],["2024-07-24T15:44:44.010000"],["2024-07-24T15:44:45.010000"],["2024-07-24T15:44:46.010000"],["2024-07-24T15:44:47.010000"],["2024-07-24T15:44:48.010000"],["2024-07-24T15:44:49.010000"],["2024-07-24T15:44:50.010000"],["2024-07-24T15:44:51.010000"],["2024-07-24T15:44:52.010000"],["2024-07-24T15:44:53.010000"],["2024-07-24T15:44:54.010000"],["2024-07-24T15:44:55.010000"],["2024-07-24T15:44:56.010000"],["2024-07-24T15:44:57.010000"],["2024-07-24T15:44:58.010000"],["2024-07-24T15:44:59.010000"],["2024-07-24T15:45:00.010000"],["2024-07-24T15:45:01.010000"],["2024-07-24T15:45:02.010000"],["2024-07-24T15:45:03.010000"],["2024-07-24T15:45:04.010000"],["2024-07-24T15:45:05.010000"],["2024-07-24T15:45:06.010000"],["2024-07-24T15:45:07.010000"],["2024-07-24T15:45:08.010000"],["2024-07-24T15:45:09.010000"],["2024-07-24T15:45:10.010000"],["2024-07-24T15:45:11.010000"],["2024-07-24T15:45:12.010000"],["2024-07-24T15:45:13.010000"],["2024-07-24T15:45:14.010000"],["2024-07-24T15:45:15.010000"],["2024-07-24T15:45:16.010000"],["2024-07-24T15:45:17.010000"],["2024-07-24T15:45:18.010000"],["2024-07-24T15:45:19.010000"],["2024-07-24T15:45:20.010000"],["2024-07-24T15:45:21.010000"],["2024-07-24T15:45:22.010000"],["2024-07-24T15:45:23.010000"],["2024-07-24T15:45:24.010000"],["2024-07-24T15:45:25.010000"],["2024-07-24T15:45:26.010000"],["2024-07-24T15:45:27.010000"],["2024-07-24T15:45:28.010000"],["2024-07-24T15:45:29.010000"],["2024-07-24T15:45:30.010000"],["2024-07-24T15:45:31.010000"],["2024-07-24T15:45:32.010000"],["2024-07-24T15:45:33.010000"],["2024-07-24T15:45:34.010000"],["2024-07-24T15:45:35.010000"],["2024-07-24T15:45:36.010000"],["2024-07-24T15:45:37.010000"],["2024-07-24T15:45:38.010000"],["2024-07-24T15:45:39.010000"],["2024-07-24T15:45:40.010000"],["2024-07-24T15:45:41.010000"],["2024-07-24T15:45:42.010000"],["2024-07-24T15:45:43.010000"],["2024-07-24T15:45:44.010000"],["2024-07-24T15:45:45.010000"],["2024-07-24T15:45:46.010000"],["2024-07-24T15:45:47.010000"],["2024-07-24T15:45:48.010000"],["2024-07-24T15:45:49.010000"],["2024-07-24T15:45:50.010000"],["2024-07-24T15:45:51.010000"],["2024-07-24T15:45:52.010000"],["2024-07-24T15:45:53.010000"],["2024-07-24T15:45:54.010000"],["2024-07-24T15:45:55.010000"],["2024-07-24T15:45:56.010000"],["2024-07-24T15:45:57.010000"],["2024-07-24T15:45:58.010000"],["2024-07-24T15:45:59.010000"],["2024-07-24T15:46:00.010000"],["2024-07-24T15:46:01.010000"],["2024-07-24T15:46:02.010000"],["2024-07-24T15:46:03.010000"],["2024-07-24T15:46:04.010000"],["2024-07-24T15:46:05.010000"],["2024-07-24T15:46:06.010000"],["2024-07-24T15:46:07.010000"],["2024-07-24T15:46:08.010000"],["2024-07-24T15:46:09.010000"],["2024-07-24T15:46:10.010000"],["2024-07-24T15:46:11.010000"],["2024-07-24T15:46:12.010000"],["2024-07-24T15:46:13.010000"],["2024-07-24T15:46:14.010000"],["2024-07-24T15:46:15.010000"],["2024-07-24T15:46:16.010000"],["2024-07-24T15:46:17.010000"],["2024-07-24T15:46:18.010000"],["2024-07-24T15:46:19.010000"],["2024-07-24T15:46:20.010000"],["2024-07-24T15:46:21.010000"],["2024-07-24T15:46:22.010000"],["2024-07-24T15:46:23.010000"],["2024-07-24T15:46:24.010000"],["2024-07-24T15:46:25.010000"],["2024-07-24T15:46:26.010000"],["2024-07-24T15:46:27.010000"],["2024-07-24T15:46:28.010000"],["2024-07-24T15:46:29.010000"],["2024-07-24T15:46:30.010000"],["2024-07-24T15:46:31.010000"],["2024-07-24T15:46:32.010000"],["2024-07-24T15:46:33.010000"],["2024-07-24T15:46:34.010000"],["2024-07-24T15:46:35.010000"],["2024-07-24T15:46:36.010000"],["2024-07-24T15:46:37.010000"],["2024-07-24T15:46:38.010000"],["2024-07-24T15:46:39.010000"],["2024-07-24T15:46:40.010000"],["2024-07-24T15:46:41.010000"],["2024-07-24T15:46:42.010000"],["2024-07-24T15:46:43.010000"],["2024-07-24T15:46:44.010000"],["2024-07-24T15:46:45.010000"],["2024-07-24T15:46:46.010000"],["2024-07-24T15:46:47.010000"],["2024-07-24T15:46:48.010000"],["2024-07-24T15:46:49.010000"],["2024-07-24T15:46:50.010000"],["2024-07-24T15:46:51.010000"],["2024-07-24T15:46:52.010000"],["2024-07-24T15:46:53.010000"],["2024-07-24T15:46:54.010000"],["2024-07-24T15:46:55.010000"],["2024-07-24T15:46:56.010000"],["2024-07-24T15:46:57.010000"],["2024-07-24T15:46:58.010000"],["2024-07-24T15:46:59.010000"],["2024-07-24T15:47:00.010000"],["2024-07-24T15:47:01.010000"],["2024-07-24T15:47:02.010000"],["2024-07-24T15:47:03.010000"],["2024-07-24T15:47:04.010000"],["2024-07-24T15:47:05.010000"],["2024-07-24T15:47:06.010000"],["2024-07-24T15:47:07.010000"],["2024-07-24T15:47:08.010000"],["2024-07-24T15:47:09.010000"],["2024-07-24T15:47:10.010000"],["2024-07-24T15:47:11.010000"],["2024-07-24T15:47:12.010000"],["2024-07-24T15:47:13.010000"],["2024-07-24T15:47:14.010000"],["2024-07-24T15:47:15.010000"],["2024-07-24T15:47:16.010000"],["2024-07-24T15:47:17.010000"],["2024-07-24T15:47:18.010000"],["2024-07-24T15:47:19.010000"],["2024-07-24T15:47:20.010000"],["2024-07-24T15:47:21.010000"],["2024-07-24T15:47:22.010000"],["2024-07-24T15:47:23.010000"],["2024-07-24T15:47:24.010000"],["2024-07-24T15:47:25.010000"],["2024-07-24T15:47:26.010000"],["2024-07-24T15:47:27.010000"],["2024-07-24T15:47:28.010000"],["2024-07-24T15:47:29.010000"],["2024-07-24T15:47:30.010000"],["2024-07-24T15:47:31.010000"],["2024-07-24T15:47:32.010000"],["2024-07-24T15:47:33.010000"],["2024-07-24T15:47:34.010000"],["2024-07-24T15:47:35.010000"],["2024-07-24T15:47:36.010000"],["2024-07-24T15:47:37.010000"],["2024-07-24T15:47:38.010000"],["2024-07-24T15:47:39.010000"],["2024-07-24T15:47:40.010000"],["2024-07-24T15:47:41.010000"],["2024-07-24T15:47:42.010000"],["2024-07-24T15:47:43.010000"],["2024-07-24T15:47:44.010000"],["2024-07-24T15:47:45.010000"],["2024-07-24T15:47:46.010000"],["2024-07-24T15:47:47.010000"],["2024-07-24T15:47:48.010000"],["2024-07-24T15:47:49.010000"],["2024-07-24T15:47:50.010000"],["2024-07-24T15:47:51.010000"],["2024-07-24T15:47:52.010000"],["2024-07-24T15:47:53.010000"],["2024-07-24T15:47:54.010000"],["2024-07-24T15:47:55.010000"],["2024-07-24T15:47:56.010000"],["2024-07-24T15:47:57.010000"],["2024-07-24T15:47:58.010000"],["2024-07-24T15:47:59.010000"],["2024-07-24T15:48:00.010000"],["2024-07-24T15:48:01.010000"],["2024-07-24T15:48:02.010000"],["2024-07-24T15:48:03.010000"],["2024-07-24T15:48:04.010000"],["2024-07-24T15:48:05.010000"],["2024-07-24T15:48:06.010000"],["2024-07-24T15:48:07.010000"],["2024-07-24T15:48:08.010000"],["2024-07-24T15:48:09.010000"],["2024-07-24T15:48:10.010000"],["2024-07-24T15:48:11.010000"],["2024-07-24T15:48:12.010000"],["2024-07-24T15:48:13.010000"],["2024-07-24T15:48:14.010000"],["2024-07-24T15:48:15.010000"],["2024-07-24T15:48:16.010000"],["2024-07-24T15:48:17.010000"],["2024-07-24T15:48:18.010000"],["2024-07-24T15:48:19.010000"],["2024-07-24T15:48:20.010000"],["2024-07-24T15:48:21.010000"],["2024-07-24T15:48:22.010000"],["2024-07-24T15:48:23.010000"],["2024-07-24T15:48:24.010000"],["2024-07-24T15:48:25.010000"],["2024-07-24T15:48:26.010000"],["2024-07-24T15:48:27.010000"],["2024-07-24T15:48:28.010000"],["2024-07-24T15:48:29.010000"],["2024-07-24T15:48:30.010000"],["2024-07-24T15:48:31.010000"],["2024-07-24T15:48:32.010000"],["2024-07-24T15:48:33.010000"],["2024-07-24T15:48:34.010000"],["2024-07-24T15:48:35.010000"],["2024-07-24T15:48:36.010000"],["2024-07-24T15:48:37.010000"],["2024-07-24T15:48:38.010000"],["2024-07-24T15:48:39.010000"],["2024-07-24T15:48:40.010000"],["2024-07-24T15:48:41.010000"],["2024-07-24T15:48:42.010000"],["2024-07-24T15:48:43.010000"],["2024-07-24T15:48:44.010000"],["2024-07-24T15:48:45.010000"],["2024-07-24T15:48:46.010000"],["2024-07-24T15:48:47.010000"],["2024-07-24T15:48:48.010000"],["2024-07-24T15:48:49.010000"],["2024-07-24T15:48:50.010000"],["2024-07-24T15:48:51.010000"],["2024-07-24T15:48:52.010000"],["2024-07-24T15:48:53.010000"],["2024-07-24T15:48:54.010000"],["2024-07-24T15:48:55.010000"],["2024-07-24T15:48:56.010000"],["2024-07-24T15:48:57.010000"],["2024-07-24T15:48:58.010000"],["2024-07-24T15:48:59.010000"],["2024-07-24T15:49:00.010000"],["2024-07-24T15:49:01.010000"],["2024-07-24T15:49:02.010000"],["2024-07-24T15:49:03.010000"],["2024-07-24T15:49:04.010000"],["2024-07-24T15:49:05.010000"],["2024-07-24T15:49:06.010000"],["2024-07-24T15:49:07.010000"],["2024-07-24T15:49:08.010000"],["2024-07-24T15:49:09.010000"],["2024-07-24T15:49:10.010000"],["2024-07-24T15:49:11.010000"],["2024-07-24T15:49:12.010000"],["2024-07-24T15:49:13.010000"],["2024-07-24T15:49:14.010000"],["2024-07-24T15:49:15.010000"],["2024-07-24T15:49:16.010000"],["2024-07-24T15:49:17.010000"],["2024-07-24T15:49:18.010000"],["2024-07-24T15:49:19.010000"],["2024-07-24T15:49:20.010000"],["2024-07-24T15:49:21.010000"],["2024-07-24T15:49:22.010000"],["2024-07-24T15:49:23.010000"],["2024-07-24T15:49:24.010000"],["2024-07-24T15:49:25.010000"],["2024-07-24T15:49:26.010000"],["2024-07-24T15:49:27.010000"],["2024-07-24T15:49:28.010000"],["2024-07-24T15:49:29.010000"],["2024-07-24T15:49:30.010000"],["2024-07-24T15:49:31.010000"],["2024-07-24T15:49:32.010000"],["2024-07-24T15:49:33.010000"],["2024-07-24T15:49:34.010000"],["2024-07-24T15:49:35.010000"],["2024-07-24T15:49:36.010000"],["2024-07-24T15:49:37.010000"],["2024-07-24T15:49:38.010000"],["2024-07-24T15:49:39.010000"],["2024-07-24T15:49:40.010000"],["2024-07-24T15:49:41.010000"],["2024-07-24T15:49:42.010000"],["2024-07-24T15:49:43.010000"],["2024-07-24T15:49:44.010000"],["2024-07-24T15:49:45.010000"],["2024-07-24T15:49:46.010000"],["2024-07-24T15:49:47.010000"],["2024-07-24T15:49:48.010000"],["2024-07-24T15:49:49.010000"],["2024-07-24T15:49:50.010000"],["2024-07-24T15:49:51.010000"],["2024-07-24T15:49:52.010000"],["2024-07-24T15:49:53.010000"],["2024-07-24T15:49:54.010000"],["2024-07-24T15:49:55.010000"],["2024-07-24T15:49:56.010000"],["2024-07-24T15:49:57.010000"],["2024-07-24T15:49:58.010000"],["2024-07-24T15:49:59.010000"],["2024-07-24T15:50:00.010000"],["2024-07-24T15:50:01.010000"],["2024-07-24T15:50:02.010000"],["2024-07-24T15:50:03.010000"],["2024-07-24T15:50:04.010000"],["2024-07-24T15:50:05.010000"],["2024-07-24T15:50:06.010000"],["2024-07-24T15:50:07.010000"],["2024-07-24T15:50:08.010000"],["2024-07-24T15:50:09.010000"],["2024-07-24T15:50:10.010000"],["2024-07-24T15:50:11.010000"],["2024-07-24T15:50:12.010000"],["2024-07-24T15:50:13.010000"],["2024-07-24T15:50:14.010000"],["2024-07-24T15:50:15.010000"],["2024-07-24T15:50:16.010000"],["2024-07-24T15:50:17.010000"],["2024-07-24T15:50:18.010000"],["2024-07-24T15:50:19.010000"],["2024-07-24T15:50:20.010000"],["2024-07-24T15:50:21.010000"],["2024-07-24T15:50:22.010000"],["2024-07-24T15:50:23.010000"],["2024-07-24T15:50:24.010000"],["2024-07-24T15:50:25.010000"],["2024-07-24T15:50:26.010000"],["2024-07-24T15:50:27.010000"],["2024-07-24T15:50:28.010000"],["2024-07-24T15:50:29.010000"],["2024-07-24T15:50:30.010000"],["2024-07-24T15:50:31.010000"],["2024-07-24T15:50:32.010000"],["2024-07-24T15:50:33.010000"],["2024-07-24T15:50:34.010000"],["2024-07-24T15:50:35.010000"],["2024-07-24T15:50:36.010000"],["2024-07-24T15:50:37.010000"],["2024-07-24T15:50:38.010000"],["2024-07-24T15:50:39.010000"],["2024-07-24T15:50:40.010000"],["2024-07-24T15:50:41.010000"],["2024-07-24T15:50:42.010000"],["2024-07-24T15:50:43.010000"],["2024-07-24T15:50:44.010000"],["2024-07-24T15:50:45.010000"],["2024-07-24T15:50:46.010000"],["2024-07-24T15:50:47.010000"],["2024-07-24T15:50:48.010000"],["2024-07-24T15:50:49.010000"],["2024-07-24T15:50:50.010000"],["2024-07-24T15:50:51.010000"],["2024-07-24T15:50:52.010000"],["2024-07-24T15:50:53.010000"],["2024-07-24T15:50:54.010000"],["2024-07-24T15:50:55.010000"],["2024-07-24T15:50:56.010000"],["2024-07-24T15:50:57.010000"],["2024-07-24T15:50:58.010000"],["2024-07-24T15:50:59.010000"],["2024-07-24T15:51:00.010000"],["2024-07-24T15:51:01.010000"],["2024-07-24T15:51:02.010000"],["2024-07-24T15:51:03.010000"],["2024-07-24T15:51:04.010000"],["2024-07-24T15:51:05.010000"],["2024-07-24T15:51:06.010000"],["2024-07-24T15:51:07.010000"],["2024-07-24T15:51:08.010000"],["2024-07-24T15:51:09.010000"],["2024-07-24T15:51:10.010000"],["2024-07-24T15:51:11.010000"],["2024-07-24T15:51:12.010000"],["2024-07-24T15:51:13.010000"],["2024-07-24T15:51:14.010000"],["2024-07-24T15:51:15.010000"],["2024-07-24T15:51:16.010000"],["2024-07-24T15:51:17.010000"],["2024-07-24T15:51:18.010000"],["2024-07-24T15:51:19.010000"],["2024-07-24T15:51:20.010000"],["2024-07-24T15:51:21.010000"],["2024-07-24T15:51:22.010000"],["2024-07-24T15:51:23.010000"],["2024-07-24T15:51:24.010000"],["2024-07-24T15:51:25.010000"],["2024-07-24T15:51:26.010000"],["2024-07-24T15:51:27.010000"],["2024-07-24T15:51:28.010000"],["2024-07-24T15:51:29.010000"],["2024-07-24T15:51:30.010000"],["2024-07-24T15:51:31.010000"],["2024-07-24T15:51:32.010000"],["2024-07-24T15:51:33.010000"],["2024-07-24T15:51:34.010000"],["2024-07-24T15:51:35.010000"],["2024-07-24T15:51:36.010000"],["2024-07-24T15:51:37.010000"],["2024-07-24T15:51:38.010000"],["2024-07-24T15:51:39.010000"],["2024-07-24T15:51:40.010000"],["2024-07-24T15:51:41.010000"],["2024-07-24T15:51:42.010000"],["2024-07-24T15:51:43.010000"],["2024-07-24T15:51:44.010000"],["2024-07-24T15:51:45.010000"],["2024-07-24T15:51:46.010000"],["2024-07-24T15:51:47.010000"],["2024-07-24T15:51:48.010000"],["2024-07-24T15:51:49.010000"],["2024-07-24T15:51:50.010000"],["2024-07-24T15:51:51.010000"],["2024-07-24T15:51:52.010000"],["2024-07-24T15:51:53.010000"],["2024-07-24T15:51:54.010000"],["2024-07-24T15:51:55.010000"],["2024-07-24T15:51:56.010000"],["2024-07-24T15:51:57.010000"],["2024-07-24T15:51:58.010000"],["2024-07-24T15:51:59.010000"],["2024-07-24T15:52:00.010000"],["2024-07-24T15:52:01.010000"],["2024-07-24T15:52:02.010000"],["2024-07-24T15:52:03.010000"],["2024-07-24T15:52:04.010000"],["2024-07-24T15:52:05.010000"],["2024-07-24T15:52:06.010000"],["2024-07-24T15:52:07.010000"],["2024-07-24T15:52:08.010000"],["2024-07-24T15:52:09.010000"],["2024-07-24T15:52:10.010000"],["2024-07-24T15:52:11.010000"],["2024-07-24T15:52:12.010000"],["2024-07-24T15:52:13.010000"],["2024-07-24T15:52:14.010000"],["2024-07-24T15:52:15.010000"],["2024-07-24T15:52:16.010000"],["2024-07-24T15:52:17.010000"],["2024-07-24T15:52:18.010000"],["2024-07-24T15:52:19.010000"],["2024-07-24T15:52:20.010000"],["2024-07-24T15:52:21.010000"],["2024-07-24T15:52:22.010000"],["2024-07-24T15:52:23.010000"],["2024-07-24T15:52:24.010000"],["2024-07-24T15:52:25.010000"],["2024-07-24T15:52:26.010000"],["2024-07-24T15:52:27.010000"],["2024-07-24T15:52:28.010000"],["2024-07-24T15:52:29.010000"],["2024-07-24T15:52:30.010000"],["2024-07-24T15:52:31.010000"],["2024-07-24T15:52:32.010000"],["2024-07-24T15:52:33.010000"],["2024-07-24T15:52:34.010000"],["2024-07-24T15:52:35.010000"],["2024-07-24T15:52:36.010000"],["2024-07-24T15:52:37.010000"],["2024-07-24T15:52:38.010000"],["2024-07-24T15:52:39.010000"],["2024-07-24T15:52:40.010000"],["2024-07-24T15:52:41.010000"],["2024-07-24T15:52:42.010000"],["2024-07-24T15:52:43.010000"],["2024-07-24T15:52:44.010000"],["2024-07-24T15:52:45.010000"],["2024-07-24T15:52:46.010000"],["2024-07-24T15:52:47.010000"],["2024-07-24T15:52:48.010000"],["2024-07-24T15:52:49.010000"],["2024-07-24T15:52:50.010000"],["2024-07-24T15:52:51.010000"],["2024-07-24T15:52:52.010000"],["2024-07-24T15:52:53.010000"],["2024-07-24T15:52:54.010000"],["2024-07-24T15:52:55.010000"],["2024-07-24T15:52:56.010000"],["2024-07-24T15:52:57.010000"],["2024-07-24T15:52:58.010000"],["2024-07-24T15:52:59.010000"],["2024-07-24T15:53:00.010000"],["2024-07-24T15:53:01.010000"],["2024-07-24T15:53:02.010000"],["2024-07-24T15:53:03.010000"],["2024-07-24T15:53:04.010000"],["2024-07-24T15:53:05.010000"],["2024-07-24T15:53:06.010000"],["2024-07-24T15:53:07.010000"],["2024-07-24T15:53:08.010000"],["2024-07-24T15:53:09.010000"],["2024-07-24T15:53:10.010000"],["2024-07-24T15:53:11.010000"],["2024-07-24T15:53:12.010000"],["2024-07-24T15:53:13.010000"],["2024-07-24T15:53:14.010000"],["2024-07-24T15:53:15.010000"],["2024-07-24T15:53:16.010000"],["2024-07-24T15:53:17.010000"],["2024-07-24T15:53:18.010000"],["2024-07-24T15:53:19.010000"],["2024-07-24T15:53:20.010000"],["2024-07-24T15:53:21.010000"],["2024-07-24T15:53:22.010000"],["2024-07-24T15:53:23.010000"],["2024-07-24T15:53:24.010000"],["2024-07-24T15:53:25.010000"],["2024-07-24T15:53:26.010000"],["2024-07-24T15:53:27.010000"],["2024-07-24T15:53:28.010000"],["2024-07-24T15:53:29.010000"],["2024-07-24T15:53:30.010000"],["2024-07-24T15:53:31.010000"],["2024-07-24T15:53:32.010000"],["2024-07-24T15:53:33.010000"],["2024-07-24T15:53:34.010000"],["2024-07-24T15:53:35.010000"],["2024-07-24T15:53:36.010000"],["2024-07-24T15:53:37.010000"],["2024-07-24T15:53:38.010000"],["2024-07-24T15:53:39.010000"],["2024-07-24T15:53:40.010000"],["2024-07-24T15:53:41.010000"],["2024-07-24T15:53:42.010000"],["2024-07-24T15:53:43.010000"],["2024-07-24T15:53:44.010000"],["2024-07-24T15:53:45.010000"],["2024-07-24T15:53:46.010000"],["2024-07-24T15:53:47.010000"],["2024-07-24T15:53:48.010000"],["2024-07-24T15:53:49.010000"],["2024-07-24T15:53:50.010000"],["2024-07-24T15:53:51.010000"],["2024-07-24T15:53:52.010000"],["2024-07-24T15:53:53.010000"],["2024-07-24T15:53:54.010000"],["2024-07-24T15:53:55.010000"],["2024-07-24T15:53:56.010000"],["2024-07-24T15:53:57.010000"],["2024-07-24T15:53:58.010000"],["2024-07-24T15:53:59.010000"],["2024-07-24T15:54:00.010000"],["2024-07-24T15:54:01.010000"],["2024-07-24T15:54:02.010000"],["2024-07-24T15:54:03.010000"],["2024-07-24T15:54:04.010000"],["2024-07-24T15:54:05.010000"],["2024-07-24T15:54:06.010000"],["2024-07-24T15:54:07.010000"],["2024-07-24T15:54:08.010000"],["2024-07-24T15:54:09.010000"],["2024-07-24T15:54:10.010000"],["2024-07-24T15:54:11.010000"],["2024-07-24T15:54:12.010000"],["2024-07-24T15:54:13.010000"],["2024-07-24T15:54:14.010000"],["2024-07-24T15:54:15.010000"],["2024-07-24T15:54:16.010000"],["2024-07-24T15:54:17.010000"],["2024-07-24T15:54:18.010000"],["2024-07-24T15:54:19.010000"],["2024-07-24T15:54:20.010000"],["2024-07-24T15:54:21.010000"],["2024-07-24T15:54:22.010000"],["2024-07-24T15:54:23.010000"],["2024-07-24T15:54:24.010000"],["2024-07-24T15:54:25.010000"],["2024-07-24T15:54:26.010000"],["2024-07-24T15:54:27.010000"],["2024-07-24T15:54:28.010000"],["2024-07-24T15:54:29.010000"],["2024-07-24T15:54:30.010000"],["2024-07-24T15:54:31.010000"],["2024-07-24T15:54:32.010000"],["2024-07-24T15:54:33.010000"],["2024-07-24T15:54:34.010000"],["2024-07-24T15:54:35.010000"],["2024-07-24T15:54:36.010000"],["2024-07-24T15:54:37.010000"],["2024-07-24T15:54:38.010000"],["2024-07-24T15:54:39.010000"],["2024-07-24T15:54:40.010000"],["2024-07-24T15:54:41.010000"],["2024-07-24T15:54:42.010000"],["2024-07-24T15:54:43.010000"],["2024-07-24T15:54:44.010000"],["2024-07-24T15:54:45.010000"],["2024-07-24T15:54:46.010000"],["2024-07-24T15:54:47.010000"],["2024-07-24T15:54:48.010000"],["2024-07-24T15:54:49.010000"],["2024-07-24T15:54:50.010000"],["2024-07-24T15:54:51.010000"],["2024-07-24T15:54:52.010000"],["2024-07-24T15:54:53.010000"],["2024-07-24T15:54:54.010000"],["2024-07-24T15:54:55.010000"],["2024-07-24T15:54:56.010000"],["2024-07-24T15:54:57.010000"],["2024-07-24T15:54:58.010000"],["2024-07-24T15:54:59.010000"],["2024-07-24T15:55:00.010000"],["2024-07-24T15:55:01.010000"],["2024-07-24T15:55:02.010000"],["2024-07-24T15:55:03.010000"],["2024-07-24T15:55:04.010000"],["2024-07-24T15:55:05.010000"],["2024-07-24T15:55:06.010000"],["2024-07-24T15:55:07.010000"],["2024-07-24T15:55:08.010000"],["2024-07-24T15:55:09.010000"],["2024-07-24T15:55:10.010000"],["2024-07-24T15:55:11.010000"],["2024-07-24T15:55:12.010000"],["2024-07-24T15:55:13.010000"],["2024-07-24T15:55:14.010000"],["2024-07-24T15:55:15.010000"],["2024-07-24T15:55:16.010000"],["2024-07-24T15:55:17.010000"],["2024-07-24T15:55:18.010000"],["2024-07-24T15:55:19.010000"],["2024-07-24T15:55:20.010000"],["2024-07-24T15:55:21.010000"],["2024-07-24T15:55:22.010000"],["2024-07-24T15:55:23.010000"],["2024-07-24T15:55:24.010000"],["2024-07-24T15:55:25.010000"],["2024-07-24T15:55:26.010000"],["2024-07-24T15:55:27.010000"],["2024-07-24T15:55:28.010000"],["2024-07-24T15:55:29.010000"],["2024-07-24T15:55:30.010000"],["2024-07-24T15:55:31.010000"],["2024-07-24T15:55:32.010000"],["2024-07-24T15:55:33.010000"],["2024-07-24T15:55:34.010000"],["2024-07-24T15:55:35.010000"],["2024-07-24T15:55:36.010000"],["2024-07-24T15:55:37.010000"],["2024-07-24T15:55:38.010000"],["2024-07-24T15:55:39.010000"],["2024-07-24T15:55:40.010000"],["2024-07-24T15:55:41.010000"],["2024-07-24T15:55:42.010000"],["2024-07-24T15:55:43.010000"],["2024-07-24T15:55:44.010000"],["2024-07-24T15:55:45.010000"],["2024-07-24T15:55:46.010000"],["2024-07-24T15:55:47.010000"],["2024-07-24T15:55:48.010000"],["2024-07-24T15:55:49.010000"],["2024-07-24T15:55:50.010000"],["2024-07-24T15:55:51.010000"],["2024-07-24T15:55:52.010000"],["2024-07-24T15:55:53.010000"],["2024-07-24T15:55:54.010000"],["2024-07-24T15:55:55.010000"],["2024-07-24T15:55:56.010000"],["2024-07-24T15:55:57.010000"],["2024-07-24T15:55:58.010000"],["2024-07-24T15:55:59.010000"],["2024-07-24T15:56:00.010000"],["2024-07-24T15:56:01.010000"],["2024-07-24T15:56:02.010000"],["2024-07-24T15:56:03.010000"],["2024-07-24T15:56:04.010000"],["2024-07-24T15:56:05.010000"],["2024-07-24T15:56:06.010000"],["2024-07-24T15:56:07.010000"],["2024-07-24T15:56:08.010000"],["2024-07-24T15:56:09.010000"],["2024-07-24T15:56:10.010000"],["2024-07-24T15:56:11.010000"],["2024-07-24T15:56:12.010000"],["2024-07-24T15:56:13.010000"],["2024-07-24T15:56:14.010000"],["2024-07-24T15:56:15.010000"],["2024-07-24T15:56:16.010000"],["2024-07-24T15:56:17.010000"],["2024-07-24T15:56:18.010000"],["2024-07-24T15:56:19.010000"],["2024-07-24T15:56:20.010000"],["2024-07-24T15:56:21.010000"],["2024-07-24T15:56:22.010000"],["2024-07-24T15:56:23.010000"],["2024-07-24T15:56:24.010000"],["2024-07-24T15:56:25.010000"],["2024-07-24T15:56:26.010000"],["2024-07-24T15:56:27.010000"],["2024-07-24T15:56:28.010000"],["2024-07-24T15:56:29.010000"],["2024-07-24T15:56:30.010000"],["2024-07-24T15:56:31.010000"],["2024-07-24T15:56:32.010000"],["2024-07-24T15:56:33.010000"],["2024-07-24T15:56:34.010000"],["2024-07-24T15:56:35.010000"],["2024-07-24T15:56:36.010000"],["2024-07-24T15:56:37.010000"],["2024-07-24T15:56:38.010000"],["2024-07-24T15:56:39.010000"],["2024-07-24T15:56:40.010000"],["2024-07-24T15:56:41.010000"],["2024-07-24T15:56:42.010000"],["2024-07-24T15:56:43.010000"],["2024-07-24T15:56:44.010000"],["2024-07-24T15:56:45.010000"],["2024-07-24T15:56:46.010000"],["2024-07-24T15:56:47.010000"],["2024-07-24T15:56:48.010000"],["2024-07-24T15:56:49.010000"],["2024-07-24T15:56:50.010000"],["2024-07-24T15:56:51.010000"],["2024-07-24T15:56:52.010000"],["2024-07-24T15:56:53.010000"],["2024-07-24T15:56:54.010000"],["2024-07-24T15:56:55.010000"],["2024-07-24T15:56:56.010000"],["2024-07-24T15:56:57.010000"],["2024-07-24T15:56:58.010000"],["2024-07-24T15:56:59.010000"],["2024-07-24T15:57:00.010000"],["2024-07-24T15:57:01.010000"],["2024-07-24T15:57:02.010000"],["2024-07-24T15:57:03.010000"],["2024-07-24T15:57:04.010000"],["2024-07-24T15:57:05.010000"],["2024-07-24T15:57:06.010000"],["2024-07-24T15:57:07.010000"],["2024-07-24T15:57:08.010000"],["2024-07-24T15:57:09.010000"],["2024-07-24T15:57:10.010000"],["2024-07-24T15:57:11.010000"],["2024-07-24T15:57:12.010000"],["2024-07-24T15:57:13.010000"],["2024-07-24T15:57:14.010000"],["2024-07-24T15:57:15.010000"],["2024-07-24T15:57:16.010000"],["2024-07-24T15:57:17.010000"],["2024-07-24T15:57:18.010000"],["2024-07-24T15:57:19.010000"],["2024-07-24T15:57:20.010000"],["2024-07-24T15:57:21.010000"],["2024-07-24T15:57:22.010000"],["2024-07-24T15:57:23.010000"],["2024-07-24T15:57:24.010000"],["2024-07-24T15:57:25.010000"],["2024-07-24T15:57:26.010000"],["2024-07-24T15:57:27.010000"],["2024-07-24T15:57:28.010000"],["2024-07-24T15:57:29.010000"],["2024-07-24T15:57:30.010000"],["2024-07-24T15:57:31.010000"],["2024-07-24T15:57:32.010000"],["2024-07-24T15:57:33.010000"],["2024-07-24T15:57:34.010000"],["2024-07-24T15:57:35.010000"],["2024-07-24T15:57:36.010000"],["2024-07-24T15:57:37.010000"],["2024-07-24T15:57:38.010000"],["2024-07-24T15:57:39.010000"],["2024-07-24T15:57:40.010000"],["2024-07-24T15:57:41.010000"],["2024-07-24T15:57:42.010000"],["2024-07-24T15:57:43.010000"],["2024-07-24T15:57:44.010000"],["2024-07-24T15:57:45.010000"],["2024-07-24T15:57:46.010000"],["2024-07-24T15:57:47.010000"],["2024-07-24T15:57:48.010000"],["2024-07-24T15:57:49.010000"],["2024-07-24T15:57:50.010000"],["2024-07-24T15:57:51.010000"],["2024-07-24T15:57:52.010000"],["2024-07-24T15:57:53.010000"],["2024-07-24T15:57:54.010000"],["2024-07-24T15:57:55.010000"],["2024-07-24T15:57:56.010000"],["2024-07-24T15:57:57.010000"],["2024-07-24T15:57:58.010000"],["2024-07-24T15:57:59.010000"],["2024-07-24T15:58:00.010000"],["2024-07-24T15:58:01.010000"],["2024-07-24T15:58:02.010000"],["2024-07-24T15:58:03.010000"],["2024-07-24T15:58:04.010000"],["2024-07-24T15:58:05.010000"],["2024-07-24T15:58:06.010000"],["2024-07-24T15:58:07.010000"],["2024-07-24T15:58:08.010000"],["2024-07-24T15:58:09.010000"],["2024-07-24T15:58:10.010000"],["2024-07-24T15:58:11.010000"],["2024-07-24T15:58:12.010000"],["2024-07-24T15:58:13.010000"],["2024-07-24T15:58:14.010000"],["2024-07-24T15:58:15.010000"],["2024-07-24T15:58:16.010000"],["2024-07-24T15:58:17.010000"],["2024-07-24T15:58:18.010000"],["2024-07-24T15:58:19.010000"],["2024-07-24T15:58:20.010000"],["2024-07-24T15:58:21.010000"],["2024-07-24T15:58:22.010000"],["2024-07-24T15:58:23.010000"],["2024-07-24T15:58:24.010000"],["2024-07-24T15:58:25.010000"],["2024-07-24T15:58:26.010000"],["2024-07-24T15:58:27.010000"],["2024-07-24T15:58:28.010000"],["2024-07-24T15:58:29.010000"],["2024-07-24T15:58:30.010000"],["2024-07-24T15:58:31.010000"],["2024-07-24T15:58:32.010000"],["2024-07-24T15:58:33.010000"],["2024-07-24T15:58:34.010000"],["2024-07-24T15:58:35.010000"],["2024-07-24T15:58:36.010000"],["2024-07-24T15:58:37.010000"],["2024-07-24T15:58:38.010000"],["2024-07-24T15:58:39.010000"],["2024-07-24T15:58:40.010000"],["2024-07-24T15:58:41.010000"],["2024-07-24T15:58:42.010000"],["2024-07-24T15:58:43.010000"],["2024-07-24T15:58:44.010000"],["2024-07-24T15:58:45.010000"],["2024-07-24T15:58:46.010000"],["2024-07-24T15:58:47.010000"],["2024-07-24T15:58:48.010000"],["2024-07-24T15:58:49.010000"],["2024-07-24T15:58:50.010000"],["2024-07-24T15:58:51.010000"],["2024-07-24T15:58:52.010000"],["2024-07-24T15:58:53.010000"],["2024-07-24T15:58:54.010000"],["2024-07-24T15:58:55.010000"],["2024-07-24T15:58:56.010000"],["2024-07-24T15:58:57.010000"],["2024-07-24T15:58:58.010000"],["2024-07-24T15:58:59.010000"],["2024-07-24T15:59:00.010000"],["2024-07-24T15:59:01.010000"],["2024-07-24T15:59:02.010000"],["2024-07-24T15:59:03.010000"],["2024-07-24T15:59:04.010000"],["2024-07-24T15:59:05.010000"],["2024-07-24T15:59:06.010000"],["2024-07-24T15:59:07.010000"],["2024-07-24T15:59:08.010000"],["2024-07-24T15:59:09.010000"],["2024-07-24T15:59:10.010000"],["2024-07-24T15:59:11.010000"],["2024-07-24T15:59:12.010000"],["2024-07-24T15:59:13.010000"],["2024-07-24T15:59:14.010000"],["2024-07-24T15:59:15.010000"],["2024-07-24T15:59:16.010000"],["2024-07-24T15:59:17.010000"],["2024-07-24T15:59:18.010000"],["2024-07-24T15:59:19.010000"],["2024-07-24T15:59:20.010000"],["2024-07-24T15:59:21.010000"],["2024-07-24T15:59:22.010000"],["2024-07-24T15:59:23.010000"],["2024-07-24T15:59:24.010000"],["2024-07-24T15:59:25.010000"],["2024-07-24T15:59:26.010000"],["2024-07-24T15:59:27.010000"],["2024-07-24T15:59:28.010000"],["2024-07-24T15:59:29.010000"],["2024-07-24T15:59:30.010000"],["2024-07-24T15:59:31.010000"],["2024-07-24T15:59:32.010000"],["2024-07-24T15:59:33.010000"],["2024-07-24T15:59:34.010000"],["2024-07-24T15:59:35.010000"],["2024-07-24T15:59:36.010000"],["2024-07-24T15:59:37.010000"],["2024-07-24T15:59:38.010000"],["2024-07-24T15:59:39.010000"],["2024-07-24T15:59:40.010000"],["2024-07-24T15:59:41.010000"],["2024-07-24T15:59:42.010000"],["2024-07-24T15:59:43.010000"],["2024-07-24T15:59:44.010000"],["2024-07-24T15:59:45.010000"],["2024-07-24T15:59:46.010000"],["2024-07-24T15:59:47.010000"],["2024-07-24T15:59:48.010000"],["2024-07-24T15:59:49.010000"],["2024-07-24T15:59:50.010000"],["2024-07-24T15:59:51.010000"],["2024-07-24T15:59:52.010000"],["2024-07-24T15:59:53.010000"],["2024-07-24T15:59:54.010000"],["2024-07-24T15:59:55.010000"],["2024-07-24T15:59:56.010000"],["2024-07-24T15:59:57.010000"],["2024-07-24T15:59:58.010000"],["2024-07-24T15:59:59.010000"],["2024-07-24T16:00:00.010000"],["2024-07-24T16:00:01.010000"],["2024-07-24T16:00:02.010000"],["2024-07-24T16:00:03.010000"],["2024-07-24T16:00:04.010000"],["2024-07-24T16:00:05.010000"],["2024-07-24T16:00:06.010000"],["2024-07-24T16:00:07.010000"],["2024-07-24T16:00:08.010000"],["2024-07-24T16:00:09.010000"],["2024-07-24T16:00:10.010000"],["2024-07-24T16:00:11.010000"],["2024-07-24T16:00:12.010000"],["2024-07-24T16:00:13.010000"],["2024-07-24T16:00:14.010000"],["2024-07-24T16:00:15.010000"],["2024-07-24T16:00:16.010000"],["2024-07-24T16:00:17.010000"],["2024-07-24T16:00:18.010000"],["2024-07-24T16:00:19.010000"],["2024-07-24T16:00:20.010000"],["2024-07-24T16:00:21.010000"],["2024-07-24T16:00:22.010000"],["2024-07-24T16:00:23.010000"],["2024-07-24T16:00:24.010000"],["2024-07-24T16:00:25.010000"],["2024-07-24T16:00:26.010000"],["2024-07-24T16:00:27.010000"],["2024-07-24T16:00:28.010000"],["2024-07-24T16:00:29.010000"],["2024-07-24T16:00:30.010000"],["2024-07-24T16:00:31.010000"],["2024-07-24T16:00:32.010000"],["2024-07-24T16:00:33.010000"],["2024-07-24T16:00:34.010000"],["2024-07-24T16:00:35.010000"],["2024-07-24T16:00:36.010000"],["2024-07-24T16:00:37.010000"],["2024-07-24T16:00:38.010000"],["2024-07-24T16:00:39.010000"],["2024-07-24T16:00:40.010000"],["2024-07-24T16:00:41.010000"],["2024-07-24T16:00:42.010000"],["2024-07-24T16:00:43.010000"],["2024-07-24T16:00:44.010000"],["2024-07-24T16:00:45.010000"],["2024-07-24T16:00:46.010000"],["2024-07-24T16:00:47.010000"],["2024-07-24T16:00:48.010000"],["2024-07-24T16:00:49.010000"],["2024-07-24T16:00:50.010000"],["2024-07-24T16:00:51.010000"],["2024-07-24T16:00:52.010000"],["2024-07-24T16:00:53.010000"],["2024-07-24T16:00:54.010000"],["2024-07-24T16:00:55.010000"],["2024-07-24T16:00:56.010000"],["2024-07-24T16:00:57.010000"],["2024-07-24T16:00:58.010000"],["2024-07-24T16:00:59.010000"],["2024-07-24T16:01:00.010000"],["2024-07-24T16:01:01.010000"],["2024-07-24T16:01:02.010000"],["2024-07-24T16:01:03.010000"],["2024-07-24T16:01:04.010000"],["2024-07-24T16:01:05.010000"],["2024-07-24T16:01:06.010000"],["2024-07-24T16:01:07.010000"],["2024-07-24T16:01:08.010000"],["2024-07-24T16:01:09.010000"],["2024-07-24T16:01:10.010000"],["2024-07-24T16:01:11.010000"],["2024-07-24T16:01:12.010000"],["2024-07-24T16:01:13.010000"],["2024-07-24T16:01:14.010000"],["2024-07-24T16:01:15.010000"],["2024-07-24T16:01:16.010000"],["2024-07-24T16:01:17.010000"],["2024-07-24T16:01:18.010000"],["2024-07-24T16:01:19.010000"],["2024-07-24T16:01:20.010000"],["2024-07-24T16:01:21.010000"],["2024-07-24T16:01:22.010000"],["2024-07-24T16:01:23.010000"],["2024-07-24T16:01:24.010000"],["2024-07-24T16:01:25.010000"],["2024-07-24T16:01:26.010000"],["2024-07-24T16:01:27.010000"],["2024-07-24T16:01:28.010000"],["2024-07-24T16:01:29.010000"],["2024-07-24T16:01:30.010000"],["2024-07-24T16:01:31.010000"],["2024-07-24T16:01:32.010000"],["2024-07-24T16:01:33.010000"],["2024-07-24T16:01:34.010000"],["2024-07-24T16:01:35.010000"],["2024-07-24T16:01:36.010000"],["2024-07-24T16:01:37.010000"],["2024-07-24T16:01:38.010000"],["2024-07-24T16:01:39.010000"],["2024-07-24T16:01:40.010000"],["2024-07-24T16:01:41.010000"],["2024-07-24T16:01:42.010000"],["2024-07-24T16:01:43.010000"],["2024-07-24T16:01:44.010000"],["2024-07-24T16:01:45.010000"],["2024-07-24T16:01:46.010000"],["2024-07-24T16:01:47.010000"],["2024-07-24T16:01:48.010000"],["2024-07-24T16:01:49.010000"],["2024-07-24T16:01:50.010000"],["2024-07-24T16:01:51.010000"],["2024-07-24T16:01:52.010000"],["2024-07-24T16:01:53.010000"],["2024-07-24T16:01:54.010000"],["2024-07-24T16:01:55.010000"],["2024-07-24T16:01:56.010000"],["2024-07-24T16:01:57.010000"],["2024-07-24T16:01:58.010000"],["2024-07-24T16:01:59.010000"],["2024-07-24T16:02:00.010000"],["2024-07-24T16:02:01.010000"],["2024-07-24T16:02:02.010000"],["2024-07-24T16:02:03.010000"],["2024-07-24T16:02:04.010000"],["2024-07-24T16:02:05.010000"],["2024-07-24T16:02:06.010000"],["2024-07-24T16:02:07.010000"],["2024-07-24T16:02:08.010000"],["2024-07-24T16:02:09.010000"],["2024-07-24T16:02:10.010000"],["2024-07-24T16:02:11.010000"],["2024-07-24T16:02:12.010000"],["2024-07-24T16:02:13.010000"],["2024-07-24T16:02:14.010000"],["2024-07-24T16:02:15.010000"],["2024-07-24T16:02:16.010000"],["2024-07-24T16:02:17.010000"],["2024-07-24T16:02:18.010000"],["2024-07-24T16:02:19.010000"],["2024-07-24T16:02:20.010000"],["2024-07-24T16:02:21.010000"],["2024-07-24T16:02:22.010000"],["2024-07-24T16:02:23.010000"],["2024-07-24T16:02:24.010000"],["2024-07-24T16:02:25.010000"],["2024-07-24T16:02:26.010000"],["2024-07-24T16:02:27.010000"],["2024-07-24T16:02:28.010000"],["2024-07-24T16:02:29.010000"],["2024-07-24T16:02:30.010000"],["2024-07-24T16:02:31.010000"],["2024-07-24T16:02:32.010000"],["2024-07-24T16:02:33.010000"],["2024-07-24T16:02:34.010000"],["2024-07-24T16:02:35.010000"],["2024-07-24T16:02:36.010000"],["2024-07-24T16:02:37.010000"],["2024-07-24T16:02:38.010000"],["2024-07-24T16:02:39.010000"],["2024-07-24T16:02:40.010000"],["2024-07-24T16:02:41.010000"],["2024-07-24T16:02:42.010000"],["2024-07-24T16:02:43.010000"],["2024-07-24T16:02:44.010000"],["2024-07-24T16:02:45.010000"],["2024-07-24T16:02:46.010000"],["2024-07-24T16:02:47.010000"],["2024-07-24T16:02:48.010000"],["2024-07-24T16:02:49.010000"],["2024-07-24T16:02:50.010000"],["2024-07-24T16:02:51.010000"],["2024-07-24T16:02:52.010000"],["2024-07-24T16:02:53.010000"],["2024-07-24T16:02:54.010000"],["2024-07-24T16:02:55.010000"],["2024-07-24T16:02:56.010000"],["2024-07-24T16:02:57.010000"],["2024-07-24T16:02:58.010000"],["2024-07-24T16:02:59.010000"],["2024-07-24T16:03:00.010000"],["2024-07-24T16:03:01.010000"],["2024-07-24T16:03:02.010000"],["2024-07-24T16:03:03.010000"],["2024-07-24T16:03:04.010000"],["2024-07-24T16:03:05.010000"],["2024-07-24T16:03:06.010000"],["2024-07-24T16:03:07.010000"],["2024-07-24T16:03:08.010000"],["2024-07-24T16:03:09.010000"],["2024-07-24T16:03:10.010000"],["2024-07-24T16:03:11.010000"],["2024-07-24T16:03:12.010000"],["2024-07-24T16:03:13.010000"],["2024-07-24T16:03:14.010000"],["2024-07-24T16:03:15.010000"],["2024-07-24T16:03:16.010000"],["2024-07-24T16:03:17.010000"],["2024-07-24T16:03:18.010000"],["2024-07-24T16:03:19.010000"],["2024-07-24T16:03:20.010000"],["2024-07-24T16:03:21.010000"],["2024-07-24T16:03:22.010000"],["2024-07-24T16:03:23.010000"],["2024-07-24T16:03:24.010000"],["2024-07-24T16:03:25.010000"],["2024-07-24T16:03:26.010000"],["2024-07-24T16:03:27.010000"],["2024-07-24T16:03:28.010000"],["2024-07-24T16:03:29.010000"],["2024-07-24T16:03:30.010000"],["2024-07-24T16:03:31.010000"],["2024-07-24T16:03:32.010000"],["2024-07-24T16:03:33.010000"],["2024-07-24T16:03:34.010000"],["2024-07-24T16:03:35.010000"],["2024-07-24T16:03:36.010000"],["2024-07-24T16:03:37.010000"],["2024-07-24T16:03:38.010000"],["2024-07-24T16:03:39.010000"],["2024-07-24T16:03:40.010000"],["2024-07-24T16:03:41.010000"],["2024-07-24T16:03:42.010000"],["2024-07-24T16:03:43.010000"],["2024-07-24T16:03:44.010000"],["2024-07-24T16:03:45.010000"],["2024-07-24T16:03:46.010000"],["2024-07-24T16:03:47.010000"],["2024-07-24T16:03:48.010000"],["2024-07-24T16:03:49.010000"],["2024-07-24T16:03:50.010000"],["2024-07-24T16:03:51.010000"],["2024-07-24T16:03:52.010000"],["2024-07-24T16:03:53.010000"],["2024-07-24T16:03:54.010000"],["2024-07-24T16:03:55.010000"],["2024-07-24T16:03:56.010000"],["2024-07-24T16:03:57.010000"],["2024-07-24T16:03:58.010000"],["2024-07-24T16:03:59.010000"],["2024-07-24T16:04:00.010000"],["2024-07-24T16:04:01.010000"],["2024-07-24T16:04:02.010000"],["2024-07-24T16:04:03.010000"],["2024-07-24T16:04:04.010000"],["2024-07-24T16:04:05.010000"],["2024-07-24T16:04:06.010000"],["2024-07-24T16:04:07.010000"],["2024-07-24T16:04:08.010000"],["2024-07-24T16:04:09.010000"],["2024-07-24T16:04:10.010000"],["2024-07-24T16:04:11.010000"],["2024-07-24T16:04:12.010000"],["2024-07-24T16:04:13.010000"],["2024-07-24T16:04:14.010000"],["2024-07-24T16:04:15.010000"],["2024-07-24T16:04:16.010000"],["2024-07-24T16:04:17.010000"],["2024-07-24T16:04:18.010000"],["2024-07-24T16:04:19.010000"],["2024-07-24T16:04:20.010000"],["2024-07-24T16:04:21.010000"],["2024-07-24T16:04:22.010000"],["2024-07-24T16:04:23.010000"],["2024-07-24T16:04:24.010000"],["2024-07-24T16:04:25.010000"],["2024-07-24T16:04:26.010000"],["2024-07-24T16:04:27.010000"],["2024-07-24T16:04:28.010000"],["2024-07-24T16:04:29.010000"],["2024-07-24T16:04:30.010000"],["2024-07-24T16:04:31.010000"],["2024-07-24T16:04:32.010000"],["2024-07-24T16:04:33.010000"],["2024-07-24T16:04:34.010000"],["2024-07-24T16:04:35.010000"],["2024-07-24T16:04:36.010000"],["2024-07-24T16:04:37.010000"],["2024-07-24T16:04:38.010000"],["2024-07-24T16:04:39.010000"],["2024-07-24T16:04:40.010000"],["2024-07-24T16:04:41.010000"],["2024-07-24T16:04:42.010000"],["2024-07-24T16:04:43.010000"],["2024-07-24T16:04:44.010000"],["2024-07-24T16:04:45.010000"],["2024-07-24T16:04:46.010000"],["2024-07-24T16:04:47.010000"],["2024-07-24T16:04:48.010000"],["2024-07-24T16:04:49.010000"],["2024-07-24T16:04:50.010000"],["2024-07-24T16:04:51.010000"],["2024-07-24T16:04:52.010000"],["2024-07-24T16:04:53.010000"],["2024-07-24T16:04:54.010000"],["2024-07-24T16:04:55.010000"],["2024-07-24T16:04:56.010000"],["2024-07-24T16:04:57.010000"],["2024-07-24T16:04:58.010000"],["2024-07-24T16:04:59.010000"],["2024-07-24T16:05:00.010000"],["2024-07-24T16:05:01.010000"],["2024-07-24T16:05:02.010000"],["2024-07-24T16:05:03.010000"],["2024-07-24T16:05:04.010000"],["2024-07-24T16:05:05.010000"],["2024-07-24T16:05:06.010000"],["2024-07-24T16:05:07.010000"],["2024-07-24T16:05:08.010000"],["2024-07-24T16:05:09.010000"],["2024-07-24T16:05:10.010000"],["2024-07-24T16:05:11.010000"],["2024-07-24T16:05:12.010000"],["2024-07-24T16:05:13.010000"],["2024-07-24T16:05:14.010000"],["2024-07-24T16:05:15.010000"],["2024-07-24T16:05:16.010000"],["2024-07-24T16:05:17.010000"],["2024-07-24T16:05:18.010000"],["2024-07-24T16:05:19.010000"],["2024-07-24T16:05:20.010000"],["2024-07-24T16:05:21.010000"],["2024-07-24T16:05:22.010000"],["2024-07-24T16:05:23.010000"],["2024-07-24T16:05:24.010000"],["2024-07-24T16:05:25.010000"],["2024-07-24T16:05:26.010000"],["2024-07-24T16:05:27.010000"],["2024-07-24T16:05:28.010000"],["2024-07-24T16:05:29.010000"],["2024-07-24T16:05:30.010000"],["2024-07-24T16:05:31.010000"],["2024-07-24T16:05:32.010000"],["2024-07-24T16:05:33.010000"],["2024-07-24T16:05:34.010000"],["2024-07-24T16:05:35.010000"],["2024-07-24T16:05:36.010000"],["2024-07-24T16:05:37.010000"],["2024-07-24T16:05:38.010000"],["2024-07-24T16:05:39.010000"],["2024-07-24T16:05:40.010000"],["2024-07-24T16:05:41.010000"],["2024-07-24T16:05:42.010000"],["2024-07-24T16:05:43.010000"],["2024-07-24T16:05:44.010000"],["2024-07-24T16:05:45.010000"],["2024-07-24T16:05:46.010000"],["2024-07-24T16:05:47.010000"],["2024-07-24T16:05:48.010000"],["2024-07-24T16:05:49.010000"],["2024-07-24T16:05:50.010000"],["2024-07-24T16:05:51.010000"],["2024-07-24T16:05:52.010000"],["2024-07-24T16:05:53.010000"],["2024-07-24T16:05:54.010000"],["2024-07-24T16:05:55.010000"],["2024-07-24T16:05:56.010000"],["2024-07-24T16:05:57.010000"],["2024-07-24T16:05:58.010000"],["2024-07-24T16:05:59.010000"],["2024-07-24T16:06:00.010000"],["2024-07-24T16:06:01.010000"],["2024-07-24T16:06:02.010000"],["2024-07-24T16:06:03.010000"],["2024-07-24T16:06:04.010000"],["2024-07-24T16:06:05.010000"],["2024-07-24T16:06:06.010000"],["2024-07-24T16:06:07.010000"],["2024-07-24T16:06:08.010000"],["2024-07-24T16:06:09.010000"],["2024-07-24T16:06:10.010000"],["2024-07-24T16:06:11.010000"],["2024-07-24T16:06:12.010000"],["2024-07-24T16:06:13.010000"],["2024-07-24T16:06:14.010000"],["2024-07-24T16:06:15.010000"],["2024-07-24T16:06:16.010000"],["2024-07-24T16:06:17.010000"],["2024-07-24T16:06:18.010000"],["2024-07-24T16:06:19.010000"],["2024-07-24T16:06:20.010000"],["2024-07-24T16:06:21.010000"],["2024-07-24T16:06:22.010000"],["2024-07-24T16:06:23.010000"],["2024-07-24T16:06:24.010000"],["2024-07-24T16:06:25.010000"],["2024-07-24T16:06:26.010000"],["2024-07-24T16:06:27.010000"],["2024-07-24T16:06:28.010000"],["2024-07-24T16:06:29.010000"],["2024-07-24T16:06:30.010000"],["2024-07-24T16:06:31.010000"],["2024-07-24T16:06:32.010000"],["2024-07-24T16:06:33.010000"],["2024-07-24T16:06:34.010000"],["2024-07-24T16:06:35.010000"],["2024-07-24T16:06:36.010000"],["2024-07-24T16:06:37.010000"],["2024-07-24T16:06:38.010000"],["2024-07-24T16:06:39.010000"],["2024-07-24T16:06:40.010000"],["2024-07-24T16:06:41.010000"],["2024-07-24T16:06:42.010000"],["2024-07-24T16:06:43.010000"],["2024-07-24T16:06:44.010000"],["2024-07-24T16:06:45.010000"],["2024-07-24T16:06:46.010000"],["2024-07-24T16:06:47.010000"],["2024-07-24T16:06:48.010000"],["2024-07-24T16:06:49.010000"],["2024-07-24T16:06:50.010000"],["2024-07-24T16:06:51.010000"],["2024-07-24T16:06:52.010000"],["2024-07-24T16:06:53.010000"],["2024-07-24T16:06:54.010000"],["2024-07-24T16:06:55.010000"],["2024-07-24T16:06:56.010000"],["2024-07-24T16:06:57.010000"],["2024-07-24T16:06:58.010000"],["2024-07-24T16:06:59.010000"],["2024-07-24T16:07:00.010000"],["2024-07-24T16:07:01.010000"],["2024-07-24T16:07:02.010000"],["2024-07-24T16:07:03.010000"],["2024-07-24T16:07:04.010000"],["2024-07-24T16:07:05.010000"],["2024-07-24T16:07:06.010000"],["2024-07-24T16:07:07.010000"],["2024-07-24T16:07:08.010000"],["2024-07-24T16:07:09.010000"],["2024-07-24T16:07:10.010000"],["2024-07-24T16:07:11.010000"],["2024-07-24T16:07:12.010000"],["2024-07-24T16:07:13.010000"],["2024-07-24T16:07:14.010000"],["2024-07-24T16:07:15.010000"],["2024-07-24T16:07:16.010000"],["2024-07-24T16:07:17.010000"],["2024-07-24T16:07:18.010000"],["2024-07-24T16:07:19.010000"],["2024-07-24T16:07:20.010000"],["2024-07-24T16:07:21.010000"],["2024-07-24T16:07:22.010000"],["2024-07-24T16:07:23.010000"],["2024-07-24T16:07:24.010000"],["2024-07-24T16:07:25.010000"],["2024-07-24T16:07:26.010000"],["2024-07-24T16:07:27.010000"],["2024-07-24T16:07:28.010000"],["2024-07-24T16:07:29.010000"],["2024-07-24T16:07:30.010000"],["2024-07-24T16:07:31.010000"],["2024-07-24T16:07:32.010000"],["2024-07-24T16:07:33.010000"],["2024-07-24T16:07:34.010000"],["2024-07-24T16:07:35.010000"],["2024-07-24T16:07:36.010000"],["2024-07-24T16:07:37.010000"],["2024-07-24T16:07:38.010000"],["2024-07-24T16:07:39.010000"],["2024-07-24T16:07:40.010000"],["2024-07-24T16:07:41.010000"],["2024-07-24T16:07:42.010000"],["2024-07-24T16:07:43.010000"],["2024-07-24T16:07:44.010000"],["2024-07-24T16:07:45.010000"],["2024-07-24T16:07:46.010000"],["2024-07-24T16:07:47.010000"],["2024-07-24T16:07:48.010000"],["2024-07-24T16:07:49.010000"],["2024-07-24T16:07:50.010000"],["2024-07-24T16:07:51.010000"],["2024-07-24T16:07:52.010000"],["2024-07-24T16:07:53.010000"],["2024-07-24T16:07:54.010000"],["2024-07-24T16:07:55.010000"],["2024-07-24T16:07:56.010000"],["2024-07-24T16:07:57.010000"],["2024-07-24T16:07:58.010000"],["2024-07-24T16:07:59.010000"],["2024-07-24T16:08:00.010000"],["2024-07-24T16:08:01.010000"],["2024-07-24T16:08:02.010000"],["2024-07-24T16:08:03.010000"],["2024-07-24T16:08:04.010000"],["2024-07-24T16:08:05.010000"],["2024-07-24T16:08:06.010000"],["2024-07-24T16:08:07.010000"],["2024-07-24T16:08:08.010000"],["2024-07-24T16:08:09.010000"],["2024-07-24T16:08:10.010000"],["2024-07-24T16:08:11.010000"],["2024-07-24T16:08:12.010000"],["2024-07-24T16:08:13.010000"],["2024-07-24T16:08:14.010000"],["2024-07-24T16:08:15.010000"],["2024-07-24T16:08:16.010000"],["2024-07-24T16:08:17.010000"],["2024-07-24T16:08:18.010000"],["2024-07-24T16:08:19.010000"],["2024-07-24T16:08:20.010000"],["2024-07-24T16:08:21.010000"],["2024-07-24T16:08:22.010000"],["2024-07-24T16:08:23.010000"],["2024-07-24T16:08:24.010000"],["2024-07-24T16:08:25.010000"],["2024-07-24T16:08:26.010000"],["2024-07-24T16:08:27.010000"],["2024-07-24T16:08:28.010000"],["2024-07-24T16:08:29.010000"],["2024-07-24T16:08:30.010000"],["2024-07-24T16:08:31.010000"],["2024-07-24T16:08:32.010000"],["2024-07-24T16:08:33.010000"],["2024-07-24T16:08:34.010000"],["2024-07-24T16:08:35.010000"],["2024-07-24T16:08:36.010000"],["2024-07-24T16:08:37.010000"],["2024-07-24T16:08:38.010000"],["2024-07-24T16:08:39.010000"],["2024-07-24T16:08:40.010000"],["2024-07-24T16:08:41.010000"],["2024-07-24T16:08:42.010000"],["2024-07-24T16:08:43.010000"],["2024-07-24T16:08:44.010000"],["2024-07-24T16:08:45.010000"],["2024-07-24T16:08:46.010000"],["2024-07-24T16:08:47.010000"],["2024-07-24T16:08:48.010000"],["2024-07-24T16:08:49.010000"],["2024-07-24T16:08:50.010000"],["2024-07-24T16:08:51.010000"],["2024-07-24T16:08:52.010000"],["2024-07-24T16:08:53.010000"],["2024-07-24T16:08:54.010000"],["2024-07-24T16:08:55.010000"],["2024-07-24T16:08:56.010000"],["2024-07-24T16:08:57.010000"],["2024-07-24T16:08:58.010000"],["2024-07-24T16:08:59.010000"],["2024-07-24T16:09:00.010000"],["2024-07-24T16:09:01.010000"],["2024-07-24T16:09:02.010000"],["2024-07-24T16:09:03.010000"],["2024-07-24T16:09:04.010000"],["2024-07-24T16:09:05.010000"],["2024-07-24T16:09:06.010000"],["2024-07-24T16:09:07.010000"],["2024-07-24T16:09:08.010000"],["2024-07-24T16:09:09.010000"],["2024-07-24T16:09:10.010000"],["2024-07-24T16:09:11.010000"],["2024-07-24T16:09:12.010000"],["2024-07-24T16:09:13.010000"],["2024-07-24T16:09:14.010000"],["2024-07-24T16:09:15.010000"],["2024-07-24T16:09:16.010000"],["2024-07-24T16:09:17.010000"],["2024-07-24T16:09:18.010000"],["2024-07-24T16:09:19.010000"],["2024-07-24T16:09:20.010000"],["2024-07-24T16:09:21.010000"],["2024-07-24T16:09:22.010000"],["2024-07-24T16:09:23.010000"],["2024-07-24T16:09:24.010000"],["2024-07-24T16:09:25.010000"],["2024-07-24T16:09:26.010000"],["2024-07-24T16:09:27.010000"],["2024-07-24T16:09:28.010000"],["2024-07-24T16:09:29.010000"],["2024-07-24T16:09:30.010000"],["2024-07-24T16:09:31.010000"],["2024-07-24T16:09:32.010000"],["2024-07-24T16:09:33.010000"],["2024-07-24T16:09:34.010000"],["2024-07-24T16:09:35.010000"],["2024-07-24T16:09:36.010000"],["2024-07-24T16:09:37.010000"],["2024-07-24T16:09:38.010000"],["2024-07-24T16:09:39.010000"],["2024-07-24T16:09:40.010000"],["2024-07-24T16:09:41.010000"],["2024-07-24T16:09:42.010000"],["2024-07-24T16:09:43.010000"],["2024-07-24T16:09:44.010000"],["2024-07-24T16:09:45.010000"],["2024-07-24T16:09:46.010000"],["2024-07-24T16:09:47.010000"],["2024-07-24T16:09:48.010000"],["2024-07-24T16:09:49.010000"],["2024-07-24T16:09:50.010000"],["2024-07-24T16:09:51.010000"],["2024-07-24T16:09:52.010000"],["2024-07-24T16:09:53.010000"],["2024-07-24T16:09:54.010000"],["2024-07-24T16:09:55.010000"],["2024-07-24T16:09:56.010000"],["2024-07-24T16:09:57.010000"],["2024-07-24T16:09:58.010000"],["2024-07-24T16:09:59.010000"],["2024-07-24T16:10:00.010000"],["2024-07-24T16:10:01.010000"],["2024-07-24T16:10:02.010000"],["2024-07-24T16:10:03.010000"],["2024-07-24T16:10:04.010000"],["2024-07-24T16:10:05.010000"],["2024-07-24T16:10:06.010000"],["2024-07-24T16:10:07.010000"],["2024-07-24T16:10:08.010000"],["2024-07-24T16:10:09.010000"],["2024-07-24T16:10:10.010000"],["2024-07-24T16:10:11.010000"],["2024-07-24T16:10:12.010000"],["2024-07-24T16:10:13.010000"],["2024-07-24T16:10:14.010000"],["2024-07-24T16:10:15.010000"],["2024-07-24T16:10:16.010000"],["2024-07-24T16:10:17.010000"],["2024-07-24T16:10:18.010000"],["2024-07-24T16:10:19.010000"],["2024-07-24T16:10:20.010000"],["2024-07-24T16:10:21.010000"],["2024-07-24T16:10:22.010000"],["2024-07-24T16:10:23.010000"],["2024-07-24T16:10:24.010000"],["2024-07-24T16:10:25.010000"],["2024-07-24T16:10:26.010000"],["2024-07-24T16:10:27.010000"],["2024-07-24T16:10:28.010000"],["2024-07-24T16:10:29.010000"],["2024-07-24T16:10:30.010000"],["2024-07-24T16:10:31.010000"],["2024-07-24T16:10:32.010000"],["2024-07-24T16:10:33.010000"],["2024-07-24T16:10:34.010000"],["2024-07-24T16:10:35.010000"],["2024-07-24T16:10:36.010000"],["2024-07-24T16:10:37.010000"],["2024-07-24T16:10:38.010000"],["2024-07-24T16:10:39.010000"],["2024-07-24T16:10:40.010000"],["2024-07-24T16:10:41.010000"],["2024-07-24T16:10:42.010000"],["2024-07-24T16:10:43.010000"],["2024-07-24T16:10:44.010000"],["2024-07-24T16:10:45.010000"],["2024-07-24T16:10:46.010000"],["2024-07-24T16:10:47.010000"],["2024-07-24T16:10:48.010000"],["2024-07-24T16:10:49.010000"],["2024-07-24T16:10:50.010000"],["2024-07-24T16:10:51.010000"],["2024-07-24T16:10:52.010000"],["2024-07-24T16:10:53.010000"],["2024-07-24T16:10:54.010000"],["2024-07-24T16:10:55.010000"],["2024-07-24T16:10:56.010000"],["2024-07-24T16:10:57.010000"],["2024-07-24T16:10:58.010000"],["2024-07-24T16:10:59.010000"],["2024-07-24T16:11:00.010000"],["2024-07-24T16:11:01.010000"],["2024-07-24T16:11:02.010000"],["2024-07-24T16:11:03.010000"],["2024-07-24T16:11:04.010000"],["2024-07-24T16:11:05.010000"],["2024-07-24T16:11:06.010000"],["2024-07-24T16:11:07.010000"],["2024-07-24T16:11:08.010000"],["2024-07-24T16:11:09.010000"],["2024-07-24T16:11:10.010000"],["2024-07-24T16:11:11.010000"],["2024-07-24T16:11:12.010000"],["2024-07-24T16:11:13.010000"],["2024-07-24T16:11:14.010000"],["2024-07-24T16:11:15.010000"],["2024-07-24T16:11:16.010000"],["2024-07-24T16:11:17.010000"],["2024-07-24T16:11:18.010000"],["2024-07-24T16:11:19.010000"],["2024-07-24T16:11:20.010000"],["2024-07-24T16:11:21.010000"],["2024-07-24T16:11:22.010000"],["2024-07-24T16:11:23.010000"],["2024-07-24T16:11:24.010000"],["2024-07-24T16:11:25.010000"],["2024-07-24T16:11:26.010000"],["2024-07-24T16:11:27.010000"],["2024-07-24T16:11:28.010000"],["2024-07-24T16:11:29.010000"],["2024-07-24T16:11:30.010000"],["2024-07-24T16:11:31.010000"],["2024-07-24T16:11:32.010000"],["2024-07-24T16:11:33.010000"],["2024-07-24T16:11:34.010000"],["2024-07-24T16:11:35.010000"],["2024-07-24T16:11:36.010000"],["2024-07-24T16:11:37.010000"],["2024-07-24T16:11:38.010000"],["2024-07-24T16:11:39.010000"],["2024-07-24T16:11:40.010000"],["2024-07-24T16:11:41.010000"],["2024-07-24T16:11:42.010000"],["2024-07-24T16:11:43.010000"],["2024-07-24T16:11:44.010000"],["2024-07-24T16:11:45.010000"],["2024-07-24T16:11:46.010000"],["2024-07-24T16:11:47.010000"],["2024-07-24T16:11:48.010000"],["2024-07-24T16:11:49.010000"],["2024-07-24T16:11:50.010000"],["2024-07-24T16:11:51.010000"],["2024-07-24T16:11:52.010000"],["2024-07-24T16:11:53.010000"],["2024-07-24T16:11:54.010000"],["2024-07-24T16:11:55.010000"],["2024-07-24T16:11:56.010000"],["2024-07-24T16:11:57.010000"],["2024-07-24T16:11:58.010000"],["2024-07-24T16:11:59.010000"],["2024-07-24T16:12:00.010000"],["2024-07-24T16:12:01.010000"],["2024-07-24T16:12:02.010000"],["2024-07-24T16:12:03.010000"],["2024-07-24T16:12:04.010000"],["2024-07-24T16:12:05.010000"],["2024-07-24T16:12:06.010000"],["2024-07-24T16:12:07.010000"],["2024-07-24T16:12:08.010000"],["2024-07-24T16:12:09.010000"],["2024-07-24T16:12:10.010000"],["2024-07-24T16:12:11.010000"],["2024-07-24T16:12:12.010000"],["2024-07-24T16:12:13.010000"],["2024-07-24T16:12:14.010000"],["2024-07-24T16:12:15.010000"],["2024-07-24T16:12:16.010000"],["2024-07-24T16:12:17.010000"],["2024-07-24T16:12:18.010000"],["2024-07-24T16:12:19.010000"],["2024-07-24T16:12:20.010000"],["2024-07-24T16:12:21.010000"],["2024-07-24T16:12:22.010000"],["2024-07-24T16:12:23.010000"],["2024-07-24T16:12:24.010000"],["2024-07-24T16:12:25.010000"],["2024-07-24T16:12:26.010000"],["2024-07-24T16:12:27.010000"],["2024-07-24T16:12:28.010000"],["2024-07-24T16:12:29.010000"],["2024-07-24T16:12:30.010000"],["2024-07-24T16:12:31.010000"],["2024-07-24T16:12:32.010000"],["2024-07-24T16:12:33.010000"],["2024-07-24T16:12:34.010000"],["2024-07-24T16:12:35.010000"],["2024-07-24T16:12:36.010000"],["2024-07-24T16:12:37.010000"],["2024-07-24T16:12:38.010000"],["2024-07-24T16:12:39.010000"],["2024-07-24T16:12:40.010000"],["2024-07-24T16:12:41.010000"],["2024-07-24T16:12:42.010000"],["2024-07-24T16:12:43.010000"],["2024-07-24T16:12:44.010000"],["2024-07-24T16:12:45.010000"],["2024-07-24T16:12:46.010000"],["2024-07-24T16:12:47.010000"],["2024-07-24T16:12:48.010000"],["2024-07-24T16:12:49.010000"],["2024-07-24T16:12:50.010000"],["2024-07-24T16:12:51.010000"],["2024-07-24T16:12:52.010000"],["2024-07-24T16:12:53.010000"],["2024-07-24T16:12:54.010000"],["2024-07-24T16:12:55.010000"],["2024-07-24T16:12:56.010000"],["2024-07-24T16:12:57.010000"],["2024-07-24T16:12:58.010000"],["2024-07-24T16:12:59.010000"],["2024-07-24T16:13:00.010000"],["2024-07-24T16:13:01.010000"],["2024-07-24T16:13:02.010000"],["2024-07-24T16:13:03.010000"],["2024-07-24T16:13:04.010000"],["2024-07-24T16:13:05.010000"],["2024-07-24T16:13:06.010000"],["2024-07-24T16:13:07.010000"],["2024-07-24T16:13:08.010000"],["2024-07-24T16:13:09.010000"],["2024-07-24T16:13:10.010000"],["2024-07-24T16:13:11.010000"],["2024-07-24T16:13:12.010000"],["2024-07-24T16:13:13.010000"],["2024-07-24T16:13:14.010000"],["2024-07-24T16:13:15.010000"],["2024-07-24T16:13:16.010000"],["2024-07-24T16:13:17.010000"],["2024-07-24T16:13:18.010000"],["2024-07-24T16:13:19.010000"],["2024-07-24T16:13:20.010000"],["2024-07-24T16:13:21.010000"],["2024-07-24T16:13:22.010000"],["2024-07-24T16:13:23.010000"],["2024-07-24T16:13:24.010000"],["2024-07-24T16:13:25.010000"],["2024-07-24T16:13:26.010000"],["2024-07-24T16:13:27.010000"],["2024-07-24T16:13:28.010000"],["2024-07-24T16:13:29.010000"],["2024-07-24T16:13:30.010000"],["2024-07-24T16:13:31.010000"],["2024-07-24T16:13:32.010000"],["2024-07-24T16:13:33.010000"],["2024-07-24T16:13:34.010000"],["2024-07-24T16:13:35.010000"],["2024-07-24T16:13:36.010000"],["2024-07-24T16:13:37.010000"],["2024-07-24T16:13:38.010000"],["2024-07-24T16:13:39.010000"],["2024-07-24T16:13:40.010000"],["2024-07-24T16:13:41.010000"],["2024-07-24T16:13:42.010000"],["2024-07-24T16:13:43.010000"],["2024-07-24T16:13:44.010000"],["2024-07-24T16:13:45.010000"],["2024-07-24T16:13:46.010000"],["2024-07-24T16:13:47.010000"],["2024-07-24T16:13:48.010000"],["2024-07-24T16:13:49.010000"],["2024-07-24T16:13:50.010000"],["2024-07-24T16:13:51.010000"],["2024-07-24T16:13:52.010000"],["2024-07-24T16:13:53.010000"],["2024-07-24T16:13:54.010000"],["2024-07-24T16:13:55.010000"],["2024-07-24T16:13:56.010000"],["2024-07-24T16:13:57.010000"],["2024-07-24T16:13:58.010000"],["2024-07-24T16:13:59.010000"],["2024-07-24T16:14:00.010000"],["2024-07-24T16:14:01.010000"],["2024-07-24T16:14:02.010000"],["2024-07-24T16:14:03.010000"],["2024-07-24T16:14:04.010000"],["2024-07-24T16:14:05.010000"],["2024-07-24T16:14:06.010000"],["2024-07-24T16:14:07.010000"],["2024-07-24T16:14:08.010000"],["2024-07-24T16:14:09.010000"],["2024-07-24T16:14:10.010000"],["2024-07-24T16:14:11.010000"],["2024-07-24T16:14:12.010000"],["2024-07-24T16:14:13.010000"],["2024-07-24T16:14:14.010000"],["2024-07-24T16:14:15.010000"],["2024-07-24T16:14:16.010000"],["2024-07-24T16:14:17.010000"],["2024-07-24T16:14:18.010000"],["2024-07-24T16:14:19.010000"],["2024-07-24T16:14:20.010000"],["2024-07-24T16:14:21.010000"],["2024-07-24T16:14:22.010000"],["2024-07-24T16:14:23.010000"],["2024-07-24T16:14:24.010000"],["2024-07-24T16:14:25.010000"],["2024-07-24T16:14:26.010000"],["2024-07-24T16:14:27.010000"],["2024-07-24T16:14:28.010000"],["2024-07-24T16:14:29.010000"],["2024-07-24T16:14:30.010000"],["2024-07-24T16:14:31.010000"],["2024-07-24T16:14:32.010000"],["2024-07-24T16:14:33.010000"],["2024-07-24T16:14:34.010000"],["2024-07-24T16:14:35.010000"],["2024-07-24T16:14:36.010000"],["2024-07-24T16:14:37.010000"],["2024-07-24T16:14:38.010000"],["2024-07-24T16:14:39.010000"],["2024-07-24T16:14:40.010000"],["2024-07-24T16:14:41.010000"],["2024-07-24T16:14:42.010000"],["2024-07-24T16:14:43.010000"],["2024-07-24T16:14:44.010000"],["2024-07-24T16:14:45.010000"],["2024-07-24T16:14:46.010000"],["2024-07-24T16:14:47.010000"],["2024-07-24T16:14:48.010000"],["2024-07-24T16:14:49.010000"],["2024-07-24T16:14:50.010000"],["2024-07-24T16:14:51.010000"],["2024-07-24T16:14:52.010000"],["2024-07-24T16:14:53.010000"],["2024-07-24T16:14:54.010000"],["2024-07-24T16:14:55.010000"],["2024-07-24T16:14:56.010000"],["2024-07-24T16:14:57.010000"],["2024-07-24T16:14:58.010000"],["2024-07-24T16:14:59.010000"],["2024-07-24T16:15:00.010000"],["2024-07-24T16:15:01.010000"],["2024-07-24T16:15:02.010000"],["2024-07-24T16:15:03.010000"],["2024-07-24T16:15:04.010000"],["2024-07-24T16:15:05.010000"],["2024-07-24T16:15:06.010000"],["2024-07-24T16:15:07.010000"],["2024-07-24T16:15:08.010000"],["2024-07-24T16:15:09.010000"],["2024-07-24T16:15:10.010000"],["2024-07-24T16:15:11.010000"],["2024-07-24T16:15:12.010000"],["2024-07-24T16:15:13.010000"],["2024-07-24T16:15:14.010000"],["2024-07-24T16:15:15.010000"],["2024-07-24T16:15:16.010000"],["2024-07-24T16:15:17.010000"],["2024-07-24T16:15:18.010000"],["2024-07-24T16:15:19.010000"],["2024-07-24T16:15:20.010000"],["2024-07-24T16:15:21.010000"],["2024-07-24T16:15:22.010000"],["2024-07-24T16:15:23.010000"],["2024-07-24T16:15:24.010000"],["2024-07-24T16:15:25.010000"],["2024-07-24T16:15:26.010000"],["2024-07-24T16:15:27.010000"],["2024-07-24T16:15:28.010000"],["2024-07-24T16:15:29.010000"],["2024-07-24T16:15:30.010000"],["2024-07-24T16:15:31.010000"],["2024-07-24T16:15:32.010000"],["2024-07-24T16:15:33.010000"],["2024-07-24T16:15:34.010000"],["2024-07-24T16:15:35.010000"],["2024-07-24T16:15:36.010000"],["2024-07-24T16:15:37.010000"],["2024-07-24T16:15:38.010000"],["2024-07-24T16:15:39.010000"],["2024-07-24T16:15:40.010000"],["2024-07-24T16:15:41.010000"],["2024-07-24T16:15:42.010000"],["2024-07-24T16:15:43.010000"],["2024-07-24T16:15:44.010000"],["2024-07-24T16:15:45.010000"],["2024-07-24T16:15:46.010000"],["2024-07-24T16:15:47.010000"],["2024-07-24T16:15:48.010000"],["2024-07-24T16:15:49.010000"],["2024-07-24T16:15:50.010000"],["2024-07-24T16:15:51.010000"],["2024-07-24T16:15:52.010000"],["2024-07-24T16:15:53.010000"],["2024-07-24T16:15:54.010000"],["2024-07-24T16:15:55.010000"],["2024-07-24T16:15:56.010000"],["2024-07-24T16:15:57.010000"],["2024-07-24T16:15:58.010000"],["2024-07-24T16:15:59.010000"],["2024-07-24T16:16:00.010000"],["2024-07-24T16:16:01.010000"],["2024-07-24T16:16:02.010000"],["2024-07-24T16:16:03.010000"],["2024-07-24T16:16:04.010000"],["2024-07-24T16:16:05.010000"],["2024-07-24T16:16:06.010000"],["2024-07-24T16:16:07.010000"],["2024-07-24T16:16:08.010000"],["2024-07-24T16:16:09.010000"],["2024-07-24T16:16:10.010000"],["2024-07-24T16:16:11.010000"],["2024-07-24T16:16:12.010000"],["2024-07-24T16:16:13.010000"],["2024-07-24T16:16:14.010000"],["2024-07-24T16:16:15.010000"],["2024-07-24T16:16:16.010000"],["2024-07-24T16:16:17.010000"],["2024-07-24T16:16:18.010000"],["2024-07-24T16:16:19.010000"],["2024-07-24T16:16:20.010000"],["2024-07-24T16:16:21.010000"],["2024-07-24T16:16:22.010000"],["2024-07-24T16:16:23.010000"],["2024-07-24T16:16:24.010000"],["2024-07-24T16:16:25.010000"],["2024-07-24T16:16:26.010000"],["2024-07-24T16:16:27.010000"],["2024-07-24T16:16:28.010000"],["2024-07-24T16:16:29.010000"],["2024-07-24T16:16:30.010000"],["2024-07-24T16:16:31.010000"],["2024-07-24T16:16:32.010000"],["2024-07-24T16:16:33.010000"],["2024-07-24T16:16:34.010000"],["2024-07-24T16:16:35.010000"],["2024-07-24T16:16:36.010000"],["2024-07-24T16:16:37.010000"],["2024-07-24T16:16:38.010000"],["2024-07-24T16:16:39.010000"],["2024-07-24T16:16:40.010000"],["2024-07-24T16:16:41.010000"],["2024-07-24T16:16:42.010000"],["2024-07-24T16:16:43.010000"],["2024-07-24T16:16:44.010000"],["2024-07-24T16:16:45.010000"],["2024-07-24T16:16:46.010000"],["2024-07-24T16:16:47.010000"],["2024-07-24T16:16:48.010000"],["2024-07-24T16:16:49.010000"],["2024-07-24T16:16:50.010000"],["2024-07-24T16:16:51.010000"],["2024-07-24T16:16:52.010000"],["2024-07-24T16:16:53.010000"],["2024-07-24T16:16:54.010000"],["2024-07-24T16:16:55.010000"],["2024-07-24T16:16:56.010000"],["2024-07-24T16:16:57.010000"],["2024-07-24T16:16:58.010000"],["2024-07-24T16:16:59.010000"],["2024-07-24T16:17:00.010000"],["2024-07-24T16:17:01.010000"],["2024-07-24T16:17:02.010000"],["2024-07-24T16:17:03.010000"],["2024-07-24T16:17:04.010000"],["2024-07-24T16:17:05.010000"],["2024-07-24T16:17:06.010000"],["2024-07-24T16:17:07.010000"],["2024-07-24T16:17:08.010000"],["2024-07-24T16:17:09.010000"],["2024-07-24T16:17:10.010000"],["2024-07-24T16:17:11.010000"],["2024-07-24T16:17:12.010000"],["2024-07-24T16:17:13.010000"],["2024-07-24T16:17:14.010000"],["2024-07-24T16:17:15.010000"],["2024-07-24T16:17:16.010000"],["2024-07-24T16:17:17.010000"],["2024-07-24T16:17:18.010000"],["2024-07-24T16:17:19.010000"],["2024-07-24T16:17:20.010000"],["2024-07-24T16:17:21.010000"],["2024-07-24T16:17:22.010000"],["2024-07-24T16:17:23.010000"],["2024-07-24T16:17:24.010000"],["2024-07-24T16:17:25.010000"],["2024-07-24T16:17:26.010000"],["2024-07-24T16:17:27.010000"],["2024-07-24T16:17:28.010000"],["2024-07-24T16:17:29.010000"],["2024-07-24T16:17:30.010000"],["2024-07-24T16:17:31.010000"],["2024-07-24T16:17:32.010000"],["2024-07-24T16:17:33.010000"],["2024-07-24T16:17:34.010000"],["2024-07-24T16:17:35.010000"],["2024-07-24T16:17:36.010000"],["2024-07-24T16:17:37.010000"],["2024-07-24T16:17:38.010000"],["2024-07-24T16:17:39.010000"],["2024-07-24T16:17:40.010000"],["2024-07-24T16:17:41.010000"],["2024-07-24T16:17:42.010000"],["2024-07-24T16:17:43.010000"],["2024-07-24T16:17:44.010000"],["2024-07-24T16:17:45.010000"],["2024-07-24T16:17:46.010000"],["2024-07-24T16:17:47.010000"],["2024-07-24T16:17:48.010000"],["2024-07-24T16:17:49.010000"],["2024-07-24T16:17:50.010000"],["2024-07-24T16:17:51.010000"],["2024-07-24T16:17:52.010000"],["2024-07-24T16:17:53.010000"],["2024-07-24T16:17:54.010000"],["2024-07-24T16:17:55.010000"],["2024-07-24T16:17:56.010000"],["2024-07-24T16:17:57.010000"],["2024-07-24T16:17:58.010000"],["2024-07-24T16:17:59.010000"],["2024-07-24T16:18:00.010000"],["2024-07-24T16:18:01.010000"],["2024-07-24T16:18:02.010000"],["2024-07-24T16:18:03.010000"],["2024-07-24T16:18:04.010000"],["2024-07-24T16:18:05.010000"],["2024-07-24T16:18:06.010000"],["2024-07-24T16:18:07.010000"],["2024-07-24T16:18:08.010000"],["2024-07-24T16:18:09.010000"],["2024-07-24T16:18:10.010000"],["2024-07-24T16:18:11.010000"],["2024-07-24T16:18:12.010000"],["2024-07-24T16:18:13.010000"],["2024-07-24T16:18:14.010000"],["2024-07-24T16:18:15.010000"],["2024-07-24T16:18:16.010000"],["2024-07-24T16:18:17.010000"],["2024-07-24T16:18:18.010000"],["2024-07-24T16:18:19.010000"],["2024-07-24T16:18:20.010000"],["2024-07-24T16:18:21.010000"],["2024-07-24T16:18:22.010000"],["2024-07-24T16:18:23.010000"],["2024-07-24T16:18:24.010000"],["2024-07-24T16:18:25.010000"],["2024-07-24T16:18:26.010000"],["2024-07-24T16:18:27.010000"],["2024-07-24T16:18:28.010000"],["2024-07-24T16:18:29.010000"],["2024-07-24T16:18:30.010000"],["2024-07-24T16:18:31.010000"],["2024-07-24T16:18:32.010000"],["2024-07-24T16:18:33.010000"],["2024-07-24T16:18:34.010000"],["2024-07-24T16:18:35.010000"],["2024-07-24T16:18:36.010000"],["2024-07-24T16:18:37.010000"],["2024-07-24T16:18:38.010000"],["2024-07-24T16:18:39.010000"],["2024-07-24T16:18:40.010000"],["2024-07-24T16:18:41.010000"],["2024-07-24T16:18:42.010000"],["2024-07-24T16:18:43.010000"],["2024-07-24T16:18:44.010000"],["2024-07-24T16:18:45.010000"],["2024-07-24T16:18:46.010000"],["2024-07-24T16:18:47.010000"],["2024-07-24T16:18:48.010000"],["2024-07-24T16:18:49.010000"],["2024-07-24T16:18:50.010000"],["2024-07-24T16:18:51.010000"],["2024-07-24T16:18:52.010000"],["2024-07-24T16:18:53.010000"],["2024-07-24T16:18:54.010000"],["2024-07-24T16:18:55.010000"],["2024-07-24T16:18:56.010000"],["2024-07-24T16:18:57.010000"],["2024-07-24T16:18:58.010000"],["2024-07-24T16:18:59.010000"],["2024-07-24T16:19:00.010000"],["2024-07-24T16:19:01.010000"],["2024-07-24T16:19:02.010000"],["2024-07-24T16:19:03.010000"],["2024-07-24T16:19:04.010000"],["2024-07-24T16:19:05.010000"],["2024-07-24T16:19:06.010000"],["2024-07-24T16:19:07.010000"],["2024-07-24T16:19:08.010000"],["2024-07-24T16:19:09.010000"],["2024-07-24T16:19:10.010000"],["2024-07-24T16:19:11.010000"],["2024-07-24T16:19:12.010000"],["2024-07-24T16:19:13.010000"],["2024-07-24T16:19:14.010000"],["2024-07-24T16:19:15.010000"],["2024-07-24T16:19:16.010000"],["2024-07-24T16:19:17.010000"],["2024-07-24T16:19:18.010000"],["2024-07-24T16:19:19.010000"],["2024-07-24T16:19:20.010000"],["2024-07-24T16:19:21.010000"],["2024-07-24T16:19:22.010000"],["2024-07-24T16:19:23.010000"],["2024-07-24T16:19:24.010000"],["2024-07-24T16:19:25.010000"],["2024-07-24T16:19:26.010000"],["2024-07-24T16:19:27.010000"],["2024-07-24T16:19:28.010000"],["2024-07-24T16:19:29.010000"],["2024-07-24T16:19:30.010000"],["2024-07-24T16:19:31.010000"],["2024-07-24T16:19:32.010000"],["2024-07-24T16:19:33.010000"],["2024-07-24T16:19:34.010000"],["2024-07-24T16:19:35.010000"],["2024-07-24T16:19:36.010000"],["2024-07-24T16:19:37.010000"],["2024-07-24T16:19:38.010000"],["2024-07-24T16:19:39.010000"],["2024-07-24T16:19:40.010000"],["2024-07-24T16:19:41.010000"],["2024-07-24T16:19:42.010000"],["2024-07-24T16:19:43.010000"],["2024-07-24T16:19:44.010000"],["2024-07-24T16:19:45.010000"],["2024-07-24T16:19:46.010000"],["2024-07-24T16:19:47.010000"],["2024-07-24T16:19:48.010000"],["2024-07-24T16:19:49.010000"],["2024-07-24T16:19:50.010000"],["2024-07-24T16:19:51.010000"],["2024-07-24T16:19:52.010000"],["2024-07-24T16:19:53.010000"],["2024-07-24T16:19:54.010000"],["2024-07-24T16:19:55.010000"],["2024-07-24T16:19:56.010000"],["2024-07-24T16:19:57.010000"],["2024-07-24T16:19:58.010000"],["2024-07-24T16:19:59.010000"],["2024-07-24T16:20:00.010000"],["2024-07-24T16:20:01.010000"],["2024-07-24T16:20:02.010000"],["2024-07-24T16:20:03.010000"],["2024-07-24T16:20:04.010000"],["2024-07-24T16:20:05.010000"],["2024-07-24T16:20:06.010000"],["2024-07-24T16:20:07.010000"],["2024-07-24T16:20:08.010000"],["2024-07-24T16:20:09.010000"],["2024-07-24T16:20:10.010000"],["2024-07-24T16:20:11.010000"],["2024-07-24T16:20:12.010000"],["2024-07-24T16:20:13.010000"],["2024-07-24T16:20:14.010000"],["2024-07-24T16:20:15.010000"],["2024-07-24T16:20:16.010000"],["2024-07-24T16:20:17.010000"],["2024-07-24T16:20:18.010000"],["2024-07-24T16:20:19.010000"],["2024-07-24T16:20:20.010000"],["2024-07-24T16:20:21.010000"],["2024-07-24T16:20:22.010000"],["2024-07-24T16:20:23.010000"],["2024-07-24T16:20:24.010000"],["2024-07-24T16:20:25.010000"],["2024-07-24T16:20:26.010000"],["2024-07-24T16:20:27.010000"],["2024-07-24T16:20:28.010000"],["2024-07-24T16:20:29.010000"],["2024-07-24T16:20:30.010000"],["2024-07-24T16:20:31.010000"],["2024-07-24T16:20:32.010000"],["2024-07-24T16:20:33.010000"],["2024-07-24T16:20:34.010000"],["2024-07-24T16:20:35.010000"],["2024-07-24T16:20:36.010000"],["2024-07-24T16:20:37.010000"],["2024-07-24T16:20:38.010000"],["2024-07-24T16:20:39.010000"],["2024-07-24T16:20:40.010000"],["2024-07-24T16:20:41.010000"],["2024-07-24T16:20:42.010000"],["2024-07-24T16:20:43.010000"],["2024-07-24T16:20:44.010000"],["2024-07-24T16:20:45.010000"],["2024-07-24T16:20:46.010000"],["2024-07-24T16:20:47.010000"],["2024-07-24T16:20:48.010000"],["2024-07-24T16:20:49.010000"],["2024-07-24T16:20:50.010000"],["2024-07-24T16:20:51.010000"],["2024-07-24T16:20:52.010000"],["2024-07-24T16:20:53.010000"],["2024-07-24T16:20:54.010000"],["2024-07-24T16:20:55.010000"],["2024-07-24T16:20:56.010000"],["2024-07-24T16:20:57.010000"],["2024-07-24T16:20:58.010000"],["2024-07-24T16:20:59.010000"],["2024-07-24T16:21:00.010000"],["2024-07-24T16:21:01.010000"],["2024-07-24T16:21:02.010000"],["2024-07-24T16:21:03.010000"],["2024-07-24T16:21:04.010000"],["2024-07-24T16:21:05.010000"],["2024-07-24T16:21:06.010000"],["2024-07-24T16:21:07.010000"],["2024-07-24T16:21:08.010000"],["2024-07-24T16:21:09.010000"],["2024-07-24T16:21:10.010000"],["2024-07-24T16:21:11.010000"],["2024-07-24T16:21:12.010000"],["2024-07-24T16:21:13.010000"],["2024-07-24T16:21:14.010000"],["2024-07-24T16:21:15.010000"],["2024-07-24T16:21:16.010000"],["2024-07-24T16:21:17.010000"],["2024-07-24T16:21:18.010000"],["2024-07-24T16:21:19.010000"],["2024-07-24T16:21:20.010000"],["2024-07-24T16:21:21.010000"],["2024-07-24T16:21:22.010000"],["2024-07-24T16:21:23.010000"],["2024-07-24T16:21:24.010000"],["2024-07-24T16:21:25.010000"],["2024-07-24T16:21:26.010000"],["2024-07-24T16:21:27.010000"],["2024-07-24T16:21:28.010000"],["2024-07-24T16:21:29.010000"],["2024-07-24T16:21:30.010000"],["2024-07-24T16:21:31.010000"],["2024-07-24T16:21:32.010000"],["2024-07-24T16:21:33.010000"],["2024-07-24T16:21:34.010000"],["2024-07-24T16:21:35.010000"],["2024-07-24T16:21:36.010000"],["2024-07-24T16:21:37.010000"],["2024-07-24T16:21:38.010000"],["2024-07-24T16:21:39.010000"],["2024-07-24T16:21:40.010000"],["2024-07-24T16:21:41.010000"],["2024-07-24T16:21:42.010000"],["2024-07-24T16:21:43.010000"],["2024-07-24T16:21:44.010000"],["2024-07-24T16:21:45.010000"],["2024-07-24T16:21:46.010000"],["2024-07-24T16:21:47.010000"],["2024-07-24T16:21:48.010000"],["2024-07-24T16:21:49.010000"],["2024-07-24T16:21:50.010000"],["2024-07-24T16:21:51.010000"],["2024-07-24T16:21:52.010000"],["2024-07-24T16:21:53.010000"],["2024-07-24T16:21:54.010000"],["2024-07-24T16:21:55.010000"],["2024-07-24T16:21:56.010000"],["2024-07-24T16:21:57.010000"],["2024-07-24T16:21:58.010000"],["2024-07-24T16:21:59.010000"],["2024-07-24T16:22:00.010000"],["2024-07-24T16:22:01.010000"],["2024-07-24T16:22:02.010000"],["2024-07-24T16:22:03.010000"],["2024-07-24T16:22:04.010000"],["2024-07-24T16:22:05.010000"],["2024-07-24T16:22:06.010000"],["2024-07-24T16:22:07.010000"],["2024-07-24T16:22:08.010000"],["2024-07-24T16:22:09.010000"],["2024-07-24T16:22:10.010000"],["2024-07-24T16:22:11.010000"],["2024-07-24T16:22:12.010000"],["2024-07-24T16:22:13.010000"],["2024-07-24T16:22:14.010000"],["2024-07-24T16:22:15.010000"],["2024-07-24T16:22:16.010000"],["2024-07-24T16:22:17.010000"],["2024-07-24T16:22:18.010000"],["2024-07-24T16:22:19.010000"],["2024-07-24T16:22:20.010000"],["2024-07-24T16:22:21.010000"],["2024-07-24T16:22:22.010000"],["2024-07-24T16:22:23.010000"],["2024-07-24T16:22:24.010000"],["2024-07-24T16:22:25.010000"],["2024-07-24T16:22:26.010000"],["2024-07-24T16:22:27.010000"],["2024-07-24T16:22:28.010000"],["2024-07-24T16:22:29.010000"],["2024-07-24T16:22:30.010000"],["2024-07-24T16:22:31.010000"],["2024-07-24T16:22:32.010000"],["2024-07-24T16:22:33.010000"],["2024-07-24T16:22:34.010000"],["2024-07-24T16:22:35.010000"],["2024-07-24T16:22:36.010000"],["2024-07-24T16:22:37.010000"],["2024-07-24T16:22:38.010000"],["2024-07-24T16:22:39.010000"],["2024-07-24T16:22:40.010000"],["2024-07-24T16:22:41.010000"],["2024-07-24T16:22:42.010000"],["2024-07-24T16:22:43.010000"],["2024-07-24T16:22:44.010000"],["2024-07-24T16:22:45.010000"],["2024-07-24T16:22:46.010000"],["2024-07-24T16:22:47.010000"],["2024-07-24T16:22:48.010000"],["2024-07-24T16:22:49.010000"],["2024-07-24T16:22:50.010000"],["2024-07-24T16:22:51.010000"],["2024-07-24T16:22:52.010000"],["2024-07-24T16:22:53.010000"],["2024-07-24T16:22:54.010000"],["2024-07-24T16:22:55.010000"],["2024-07-24T16:22:56.010000"],["2024-07-24T16:22:57.010000"],["2024-07-24T16:22:58.010000"],["2024-07-24T16:22:59.010000"],["2024-07-24T16:23:00.010000"],["2024-07-24T16:23:01.010000"],["2024-07-24T16:23:02.010000"],["2024-07-24T16:23:03.010000"],["2024-07-24T16:23:04.010000"],["2024-07-24T16:23:05.010000"],["2024-07-24T16:23:06.010000"],["2024-07-24T16:23:07.010000"],["2024-07-24T16:23:08.010000"],["2024-07-24T16:23:09.010000"],["2024-07-24T16:23:10.010000"],["2024-07-24T16:23:11.010000"],["2024-07-24T16:23:12.010000"],["2024-07-24T16:23:13.010000"],["2024-07-24T16:23:14.010000"],["2024-07-24T16:23:15.010000"],["2024-07-24T16:23:16.010000"],["2024-07-24T16:23:17.010000"],["2024-07-24T16:23:18.010000"],["2024-07-24T16:23:19.010000"],["2024-07-24T16:23:20.010000"],["2024-07-24T16:23:21.010000"],["2024-07-24T16:23:22.010000"],["2024-07-24T16:23:23.010000"],["2024-07-24T16:23:24.010000"],["2024-07-24T16:23:25.010000"],["2024-07-24T16:23:26.010000"],["2024-07-24T16:23:27.010000"],["2024-07-24T16:23:28.010000"],["2024-07-24T16:23:29.010000"],["2024-07-24T16:23:30.010000"],["2024-07-24T16:23:31.010000"],["2024-07-24T16:23:32.010000"],["2024-07-24T16:23:33.010000"],["2024-07-24T16:23:34.010000"],["2024-07-24T16:23:35.010000"],["2024-07-24T16:23:36.010000"],["2024-07-24T16:23:37.010000"],["2024-07-24T16:23:38.010000"],["2024-07-24T16:23:39.010000"],["2024-07-24T16:23:40.010000"],["2024-07-24T16:23:41.010000"],["2024-07-24T16:23:42.010000"],["2024-07-24T16:23:43.010000"],["2024-07-24T16:23:44.010000"],["2024-07-24T16:23:45.010000"],["2024-07-24T16:23:46.010000"],["2024-07-24T16:23:47.010000"],["2024-07-24T16:23:48.010000"],["2024-07-24T16:23:49.010000"],["2024-07-24T16:23:50.010000"],["2024-07-24T16:23:51.010000"],["2024-07-24T16:23:52.010000"],["2024-07-24T16:23:53.010000"],["2024-07-24T16:23:54.010000"],["2024-07-24T16:23:55.010000"],["2024-07-24T16:23:56.010000"],["2024-07-24T16:23:57.010000"],["2024-07-24T16:23:58.010000"],["2024-07-24T16:23:59.010000"],["2024-07-24T16:24:00.010000"],["2024-07-24T16:24:01.010000"],["2024-07-24T16:24:02.010000"],["2024-07-24T16:24:03.010000"],["2024-07-24T16:24:04.010000"],["2024-07-24T16:24:05.010000"],["2024-07-24T16:24:06.010000"],["2024-07-24T16:24:07.010000"],["2024-07-24T16:24:08.010000"],["2024-07-24T16:24:09.010000"],["2024-07-24T16:24:10.010000"],["2024-07-24T16:24:11.010000"],["2024-07-24T16:24:12.010000"],["2024-07-24T16:24:13.010000"],["2024-07-24T16:24:14.010000"],["2024-07-24T16:24:15.010000"],["2024-07-24T16:24:16.010000"],["2024-07-24T16:24:17.010000"],["2024-07-24T16:24:18.010000"],["2024-07-24T16:24:19.010000"],["2024-07-24T16:24:20.010000"],["2024-07-24T16:24:21.010000"],["2024-07-24T16:24:22.010000"],["2024-07-24T16:24:23.010000"],["2024-07-24T16:24:24.010000"],["2024-07-24T16:24:25.010000"],["2024-07-24T16:24:26.010000"],["2024-07-24T16:24:27.010000"],["2024-07-24T16:24:28.010000"],["2024-07-24T16:24:29.010000"],["2024-07-24T16:24:30.010000"],["2024-07-24T16:24:31.010000"],["2024-07-24T16:24:32.010000"],["2024-07-24T16:24:33.010000"],["2024-07-24T16:24:34.010000"],["2024-07-24T16:24:35.010000"],["2024-07-24T16:24:36.010000"],["2024-07-24T16:24:37.010000"],["2024-07-24T16:24:38.010000"],["2024-07-24T16:24:39.010000"],["2024-07-24T16:24:40.010000"],["2024-07-24T16:24:41.010000"],["2024-07-24T16:24:42.010000"],["2024-07-24T16:24:43.010000"],["2024-07-24T16:24:44.010000"],["2024-07-24T16:24:45.010000"],["2024-07-24T16:24:46.010000"],["2024-07-24T16:24:47.010000"],["2024-07-24T16:24:48.010000"],["2024-07-24T16:24:49.010000"],["2024-07-24T16:24:50.010000"],["2024-07-24T16:24:51.010000"],["2024-07-24T16:24:52.010000"],["2024-07-24T16:24:53.010000"],["2024-07-24T16:24:54.010000"],["2024-07-24T16:24:55.010000"],["2024-07-24T16:24:56.010000"],["2024-07-24T16:24:57.010000"],["2024-07-24T16:24:58.010000"],["2024-07-24T16:24:59.010000"],["2024-07-24T16:25:00.010000"],["2024-07-24T16:25:01.010000"],["2024-07-24T16:25:02.010000"],["2024-07-24T16:25:03.010000"],["2024-07-24T16:25:04.010000"],["2024-07-24T16:25:05.010000"],["2024-07-24T16:25:06.010000"],["2024-07-24T16:25:07.010000"],["2024-07-24T16:25:08.010000"],["2024-07-24T16:25:09.010000"],["2024-07-24T16:25:10.010000"],["2024-07-24T16:25:11.010000"],["2024-07-24T16:25:12.010000"],["2024-07-24T16:25:13.010000"],["2024-07-24T16:25:14.010000"],["2024-07-24T16:25:15.010000"],["2024-07-24T16:25:16.010000"],["2024-07-24T16:25:17.010000"],["2024-07-24T16:25:18.010000"],["2024-07-24T16:25:19.010000"],["2024-07-24T16:25:20.010000"],["2024-07-24T16:25:21.010000"],["2024-07-24T16:25:22.010000"],["2024-07-24T16:25:23.010000"],["2024-07-24T16:25:24.010000"],["2024-07-24T16:25:25.010000"],["2024-07-24T16:25:26.010000"],["2024-07-24T16:25:27.010000"],["2024-07-24T16:25:28.010000"],["2024-07-24T16:25:29.010000"],["2024-07-24T16:25:30.010000"],["2024-07-24T16:25:31.010000"],["2024-07-24T16:25:32.010000"],["2024-07-24T16:25:33.010000"],["2024-07-24T16:25:34.010000"],["2024-07-24T16:25:35.010000"],["2024-07-24T16:25:36.010000"],["2024-07-24T16:25:37.010000"],["2024-07-24T16:25:38.010000"],["2024-07-24T16:25:39.010000"],["2024-07-24T16:25:40.010000"],["2024-07-24T16:25:41.010000"],["2024-07-24T16:25:42.010000"],["2024-07-24T16:25:43.010000"],["2024-07-24T16:25:44.010000"],["2024-07-24T16:25:45.010000"],["2024-07-24T16:25:46.010000"],["2024-07-24T16:25:47.010000"],["2024-07-24T16:25:48.010000"],["2024-07-24T16:25:49.010000"],["2024-07-24T16:25:50.010000"],["2024-07-24T16:25:51.010000"],["2024-07-24T16:25:52.010000"],["2024-07-24T16:25:53.010000"],["2024-07-24T16:25:54.010000"],["2024-07-24T16:25:55.010000"],["2024-07-24T16:25:56.010000"],["2024-07-24T16:25:57.010000"],["2024-07-24T16:25:58.010000"],["2024-07-24T16:25:59.010000"],["2024-07-24T16:26:00.010000"],["2024-07-24T16:26:01.010000"],["2024-07-24T16:26:02.010000"],["2024-07-24T16:26:03.010000"],["2024-07-24T16:26:04.010000"],["2024-07-24T16:26:05.010000"],["2024-07-24T16:26:06.010000"],["2024-07-24T16:26:07.010000"],["2024-07-24T16:26:08.010000"],["2024-07-24T16:26:09.010000"],["2024-07-24T16:26:10.010000"],["2024-07-24T16:26:11.010000"],["2024-07-24T16:26:12.010000"],["2024-07-24T16:26:13.010000"],["2024-07-24T16:26:14.010000"],["2024-07-24T16:26:15.010000"],["2024-07-24T16:26:16.010000"],["2024-07-24T16:26:17.010000"],["2024-07-24T16:26:18.010000"],["2024-07-24T16:26:19.010000"],["2024-07-24T16:26:20.010000"],["2024-07-24T16:26:21.010000"],["2024-07-24T16:26:22.010000"],["2024-07-24T16:26:23.010000"],["2024-07-24T16:26:24.010000"],["2024-07-24T16:26:25.010000"],["2024-07-24T16:26:26.010000"],["2024-07-24T16:26:27.010000"],["2024-07-24T16:26:28.010000"],["2024-07-24T16:26:29.010000"],["2024-07-24T16:26:30.010000"],["2024-07-24T16:26:31.010000"],["2024-07-24T16:26:32.010000"],["2024-07-24T16:26:33.010000"],["2024-07-24T16:26:34.010000"],["2024-07-24T16:26:35.010000"],["2024-07-24T16:26:36.010000"],["2024-07-24T16:26:37.010000"],["2024-07-24T16:26:38.010000"],["2024-07-24T16:26:39.010000"],["2024-07-24T16:26:40.010000"],["2024-07-24T16:26:41.010000"],["2024-07-24T16:26:42.010000"],["2024-07-24T16:26:43.010000"],["2024-07-24T16:26:44.010000"],["2024-07-24T16:26:45.010000"],["2024-07-24T16:26:46.010000"],["2024-07-24T16:26:47.010000"],["2024-07-24T16:26:48.010000"],["2024-07-24T16:26:49.010000"],["2024-07-24T16:26:50.010000"],["2024-07-24T16:26:51.010000"],["2024-07-24T16:26:52.010000"],["2024-07-24T16:26:53.010000"],["2024-07-24T16:26:54.010000"],["2024-07-24T16:26:55.010000"],["2024-07-24T16:26:56.010000"],["2024-07-24T16:26:57.010000"],["2024-07-24T16:26:58.010000"],["2024-07-24T16:26:59.010000"],["2024-07-24T16:27:00.010000"],["2024-07-24T16:27:01.010000"],["2024-07-24T16:27:02.010000"],["2024-07-24T16:27:03.010000"],["2024-07-24T16:27:04.010000"],["2024-07-24T16:27:05.010000"],["2024-07-24T16:27:06.010000"],["2024-07-24T16:27:07.010000"],["2024-07-24T16:27:08.010000"],["2024-07-24T16:27:09.010000"],["2024-07-24T16:27:10.010000"],["2024-07-24T16:27:11.010000"],["2024-07-24T16:27:12.010000"],["2024-07-24T16:27:13.010000"],["2024-07-24T16:27:14.010000"],["2024-07-24T16:27:15.010000"],["2024-07-24T16:27:16.010000"],["2024-07-24T16:27:17.010000"],["2024-07-24T16:27:18.010000"],["2024-07-24T16:27:19.010000"],["2024-07-24T16:27:20.010000"],["2024-07-24T16:27:21.010000"],["2024-07-24T16:27:22.010000"],["2024-07-24T16:27:23.010000"],["2024-07-24T16:27:24.010000"],["2024-07-24T16:27:25.010000"],["2024-07-24T16:27:26.010000"],["2024-07-24T16:27:27.010000"],["2024-07-24T16:27:28.010000"],["2024-07-24T16:27:29.010000"],["2024-07-24T16:27:30.010000"],["2024-07-24T16:27:31.010000"],["2024-07-24T16:27:32.010000"],["2024-07-24T16:27:33.010000"],["2024-07-24T16:27:34.010000"],["2024-07-24T16:27:35.010000"],["2024-07-24T16:27:36.010000"],["2024-07-24T16:27:37.010000"],["2024-07-24T16:27:38.010000"],["2024-07-24T16:27:39.010000"],["2024-07-24T16:27:40.010000"],["2024-07-24T16:27:41.010000"],["2024-07-24T16:27:42.010000"],["2024-07-24T16:27:43.010000"],["2024-07-24T16:27:44.010000"],["2024-07-24T16:27:45.010000"],["2024-07-24T16:27:46.010000"],["2024-07-24T16:27:47.010000"],["2024-07-24T16:27:48.010000"],["2024-07-24T16:27:49.010000"],["2024-07-24T16:27:50.010000"],["2024-07-24T16:27:51.010000"],["2024-07-24T16:27:52.010000"],["2024-07-24T16:27:53.010000"],["2024-07-24T16:27:54.010000"],["2024-07-24T16:27:55.010000"],["2024-07-24T16:27:56.010000"],["2024-07-24T16:27:57.010000"],["2024-07-24T16:27:58.010000"],["2024-07-24T16:27:59.010000"],["2024-07-24T16:28:00.010000"],["2024-07-24T16:28:01.010000"],["2024-07-24T16:28:02.010000"],["2024-07-24T16:28:03.010000"],["2024-07-24T16:28:04.010000"],["2024-07-24T16:28:05.010000"],["2024-07-24T16:28:06.010000"],["2024-07-24T16:28:07.010000"],["2024-07-24T16:28:08.010000"],["2024-07-24T16:28:09.010000"],["2024-07-24T16:28:10.010000"],["2024-07-24T16:28:11.010000"],["2024-07-24T16:28:12.010000"],["2024-07-24T16:28:13.010000"],["2024-07-24T16:28:14.010000"],["2024-07-24T16:28:15.010000"],["2024-07-24T16:28:16.010000"],["2024-07-24T16:28:17.010000"],["2024-07-24T16:28:18.010000"],["2024-07-24T16:28:19.010000"],["2024-07-24T16:28:20.010000"],["2024-07-24T16:28:21.010000"],["2024-07-24T16:28:22.010000"],["2024-07-24T16:28:23.010000"],["2024-07-24T16:28:24.010000"],["2024-07-24T16:28:25.010000"],["2024-07-24T16:28:26.010000"],["2024-07-24T16:28:27.010000"],["2024-07-24T16:28:28.010000"],["2024-07-24T16:28:29.010000"],["2024-07-24T16:28:30.010000"],["2024-07-24T16:28:31.010000"],["2024-07-24T16:28:32.010000"],["2024-07-24T16:28:33.010000"],["2024-07-24T16:28:34.010000"],["2024-07-24T16:28:35.010000"],["2024-07-24T16:28:36.010000"],["2024-07-24T16:28:37.010000"],["2024-07-24T16:28:38.010000"],["2024-07-24T16:28:39.010000"],["2024-07-24T16:28:40.010000"],["2024-07-24T16:28:41.010000"],["2024-07-24T16:28:42.010000"],["2024-07-24T16:28:43.010000"],["2024-07-24T16:28:44.010000"],["2024-07-24T16:28:45.010000"],["2024-07-24T16:28:46.010000"],["2024-07-24T16:28:47.010000"],["2024-07-24T16:28:48.010000"],["2024-07-24T16:28:49.010000"],["2024-07-24T16:28:50.010000"],["2024-07-24T16:28:51.010000"],["2024-07-24T16:28:52.010000"],["2024-07-24T16:28:53.010000"],["2024-07-24T16:28:54.010000"],["2024-07-24T16:28:55.010000"],["2024-07-24T16:28:56.010000"],["2024-07-24T16:28:57.010000"],["2024-07-24T16:28:58.010000"],["2024-07-24T16:28:59.010000"],["2024-07-24T16:29:00.010000"],["2024-07-24T16:29:01.010000"],["2024-07-24T16:29:02.010000"],["2024-07-24T16:29:03.010000"],["2024-07-24T16:29:04.010000"],["2024-07-24T16:29:05.010000"],["2024-07-24T16:29:06.010000"],["2024-07-24T16:29:07.010000"],["2024-07-24T16:29:08.010000"],["2024-07-24T16:29:09.010000"],["2024-07-24T16:29:10.010000"],["2024-07-24T16:29:11.010000"],["2024-07-24T16:29:12.010000"],["2024-07-24T16:29:13.010000"],["2024-07-24T16:29:14.010000"],["2024-07-24T16:29:15.010000"],["2024-07-24T16:29:16.010000"],["2024-07-24T16:29:17.010000"],["2024-07-24T16:29:18.010000"],["2024-07-24T16:29:19.010000"],["2024-07-24T16:29:20.010000"],["2024-07-24T16:29:21.010000"],["2024-07-24T16:29:22.010000"],["2024-07-24T16:29:23.010000"],["2024-07-24T16:29:24.010000"],["2024-07-24T16:29:25.010000"],["2024-07-24T16:29:26.010000"],["2024-07-24T16:29:27.010000"],["2024-07-24T16:29:28.010000"],["2024-07-24T16:29:29.010000"],["2024-07-24T16:29:30.010000"],["2024-07-24T16:29:31.010000"],["2024-07-24T16:29:32.010000"],["2024-07-24T16:29:33.010000"],["2024-07-24T16:29:34.010000"],["2024-07-24T16:29:35.010000"],["2024-07-24T16:29:36.010000"],["2024-07-24T16:29:37.010000"],["2024-07-24T16:29:38.010000"],["2024-07-24T16:29:39.010000"],["2024-07-24T16:29:40.010000"],["2024-07-24T16:29:41.010000"],["2024-07-24T16:29:42.010000"],["2024-07-24T16:29:43.010000"],["2024-07-24T16:29:44.010000"],["2024-07-24T16:29:45.010000"],["2024-07-24T16:29:46.010000"],["2024-07-24T16:29:47.010000"],["2024-07-24T16:29:48.010000"],["2024-07-24T16:29:49.010000"],["2024-07-24T16:29:50.010000"],["2024-07-24T16:29:51.010000"],["2024-07-24T16:29:52.010000"],["2024-07-24T16:29:53.010000"],["2024-07-24T16:29:54.010000"],["2024-07-24T16:29:55.010000"],["2024-07-24T16:29:56.010000"],["2024-07-24T16:29:57.010000"],["2024-07-24T16:29:58.010000"],["2024-07-24T16:29:59.010000"],["2024-07-24T16:30:00.010000"],["2024-07-24T16:30:01.010000"],["2024-07-24T16:30:02.010000"],["2024-07-24T16:30:03.010000"],["2024-07-24T16:30:04.010000"],["2024-07-24T16:30:05.010000"],["2024-07-24T16:30:06.010000"],["2024-07-24T16:30:07.010000"],["2024-07-24T16:30:08.010000"],["2024-07-24T16:30:09.010000"],["2024-07-24T16:30:10.010000"],["2024-07-24T16:30:11.010000"],["2024-07-24T16:30:12.010000"],["2024-07-24T16:30:13.010000"],["2024-07-24T16:30:14.010000"],["2024-07-24T16:30:15.010000"],["2024-07-24T16:30:16.010000"],["2024-07-24T16:30:17.010000"],["2024-07-24T16:30:18.010000"],["2024-07-24T16:30:19.010000"],["2024-07-24T16:30:20.010000"],["2024-07-24T16:30:21.010000"],["2024-07-24T16:30:22.010000"],["2024-07-24T16:30:23.010000"],["2024-07-24T16:30:24.010000"],["2024-07-24T16:30:25.010000"],["2024-07-24T16:30:26.010000"],["2024-07-24T16:30:27.010000"],["2024-07-24T16:30:28.010000"],["2024-07-24T16:30:29.010000"],["2024-07-24T16:30:30.010000"],["2024-07-24T16:30:31.010000"],["2024-07-24T16:30:32.010000"],["2024-07-24T16:30:33.010000"],["2024-07-24T16:30:34.010000"],["2024-07-24T16:30:35.010000"],["2024-07-24T16:30:36.010000"],["2024-07-24T16:30:37.010000"],["2024-07-24T16:30:38.010000"],["2024-07-24T16:30:39.010000"],["2024-07-24T16:30:40.010000"],["2024-07-24T16:30:41.010000"],["2024-07-24T16:30:42.010000"],["2024-07-24T16:30:43.010000"],["2024-07-24T16:30:44.010000"],["2024-07-24T16:30:45.010000"],["2024-07-24T16:30:46.010000"],["2024-07-24T16:30:47.010000"],["2024-07-24T16:30:48.010000"],["2024-07-24T16:30:49.010000"],["2024-07-24T16:30:50.010000"],["2024-07-24T16:30:51.010000"],["2024-07-24T16:30:52.010000"],["2024-07-24T16:30:53.010000"],["2024-07-24T16:30:54.010000"],["2024-07-24T16:30:55.010000"],["2024-07-24T16:30:56.010000"],["2024-07-24T16:30:57.010000"],["2024-07-24T16:30:58.010000"],["2024-07-24T16:30:59.010000"],["2024-07-24T16:31:00.010000"],["2024-07-24T16:31:01.010000"],["2024-07-24T16:31:02.010000"],["2024-07-24T16:31:03.010000"],["2024-07-24T16:31:04.010000"],["2024-07-24T16:31:05.010000"],["2024-07-24T16:31:06.010000"],["2024-07-24T16:31:07.010000"],["2024-07-24T16:31:08.010000"],["2024-07-24T16:31:09.010000"],["2024-07-24T16:31:10.010000"],["2024-07-24T16:31:11.010000"],["2024-07-24T16:31:12.010000"],["2024-07-24T16:31:13.010000"],["2024-07-24T16:31:14.010000"],["2024-07-24T16:31:15.010000"],["2024-07-24T16:31:16.010000"],["2024-07-24T16:31:17.010000"],["2024-07-24T16:31:18.010000"],["2024-07-24T16:31:19.010000"],["2024-07-24T16:31:20.010000"],["2024-07-24T16:31:21.010000"],["2024-07-24T16:31:22.010000"],["2024-07-24T16:31:23.010000"],["2024-07-24T16:31:24.010000"],["2024-07-24T16:31:25.010000"],["2024-07-24T16:31:26.010000"],["2024-07-24T16:31:27.010000"],["2024-07-24T16:31:28.010000"],["2024-07-24T16:31:29.010000"],["2024-07-24T16:31:30.010000"],["2024-07-24T16:31:31.010000"],["2024-07-24T16:31:32.010000"],["2024-07-24T16:31:33.010000"],["2024-07-24T16:31:34.010000"],["2024-07-24T16:31:35.010000"],["2024-07-24T16:31:36.010000"],["2024-07-24T16:31:37.010000"],["2024-07-24T16:31:38.010000"],["2024-07-24T16:31:39.010000"],["2024-07-24T16:31:40.010000"],["2024-07-24T16:31:41.010000"],["2024-07-24T16:31:42.010000"],["2024-07-24T16:31:43.010000"],["2024-07-24T16:31:44.010000"],["2024-07-24T16:31:45.010000"],["2024-07-24T16:31:46.010000"],["2024-07-24T16:31:47.010000"],["2024-07-24T16:31:48.010000"],["2024-07-24T16:31:49.010000"],["2024-07-24T16:31:50.010000"],["2024-07-24T16:31:51.010000"],["2024-07-24T16:31:52.010000"],["2024-07-24T16:31:53.010000"],["2024-07-24T16:31:54.010000"],["2024-07-24T16:31:55.010000"],["2024-07-24T16:31:56.010000"],["2024-07-24T16:31:57.010000"],["2024-07-24T16:31:58.010000"],["2024-07-24T16:31:59.010000"],["2024-07-24T16:32:00.010000"],["2024-07-24T16:32:01.010000"],["2024-07-24T16:32:02.010000"],["2024-07-24T16:32:03.010000"],["2024-07-24T16:32:04.010000"],["2024-07-24T16:32:05.010000"],["2024-07-24T16:32:06.010000"],["2024-07-24T16:32:07.010000"],["2024-07-24T16:32:08.010000"],["2024-07-24T16:32:09.010000"],["2024-07-24T16:32:10.010000"],["2024-07-24T16:32:11.010000"],["2024-07-24T16:32:12.010000"],["2024-07-24T16:32:13.010000"],["2024-07-24T16:32:14.010000"],["2024-07-24T16:32:15.010000"],["2024-07-24T16:32:16.010000"],["2024-07-24T16:32:17.010000"],["2024-07-24T16:32:18.010000"],["2024-07-24T16:32:19.010000"],["2024-07-24T16:32:20.010000"],["2024-07-24T16:32:21.010000"],["2024-07-24T16:32:22.010000"],["2024-07-24T16:32:23.010000"],["2024-07-24T16:32:24.010000"],["2024-07-24T16:32:25.010000"],["2024-07-24T16:32:26.010000"],["2024-07-24T16:32:27.010000"],["2024-07-24T16:32:28.010000"],["2024-07-24T16:32:29.010000"],["2024-07-24T16:32:30.010000"],["2024-07-24T16:32:31.010000"],["2024-07-24T16:32:32.010000"],["2024-07-24T16:32:33.010000"],["2024-07-24T16:32:34.010000"],["2024-07-24T16:32:35.010000"],["2024-07-24T16:32:36.010000"],["2024-07-24T16:32:37.010000"],["2024-07-24T16:32:38.010000"],["2024-07-24T16:32:39.010000"],["2024-07-24T16:32:40.010000"],["2024-07-24T16:32:41.010000"],["2024-07-24T16:32:42.010000"],["2024-07-24T16:32:43.010000"],["2024-07-24T16:32:44.010000"],["2024-07-24T16:32:45.010000"],["2024-07-24T16:32:46.010000"],["2024-07-24T16:32:47.010000"],["2024-07-24T16:32:48.010000"],["2024-07-24T16:32:49.010000"],["2024-07-24T16:32:50.010000"],["2024-07-24T16:32:51.010000"],["2024-07-24T16:32:52.010000"],["2024-07-24T16:32:53.010000"],["2024-07-24T16:32:54.010000"],["2024-07-24T16:32:55.010000"],["2024-07-24T16:32:56.010000"],["2024-07-24T16:32:57.010000"],["2024-07-24T16:32:58.010000"],["2024-07-24T16:32:59.010000"],["2024-07-24T16:33:00.010000"],["2024-07-24T16:33:01.010000"],["2024-07-24T16:33:02.010000"],["2024-07-24T16:33:03.010000"],["2024-07-24T16:33:04.010000"],["2024-07-24T16:33:05.010000"],["2024-07-24T16:33:06.010000"],["2024-07-24T16:33:07.010000"],["2024-07-24T16:33:08.010000"],["2024-07-24T16:33:09.010000"],["2024-07-24T16:33:10.010000"],["2024-07-24T16:33:11.010000"],["2024-07-24T16:33:12.010000"],["2024-07-24T16:33:13.010000"],["2024-07-24T16:33:14.010000"],["2024-07-24T16:33:15.010000"],["2024-07-24T16:33:16.010000"],["2024-07-24T16:33:17.010000"],["2024-07-24T16:33:18.010000"],["2024-07-24T16:33:19.010000"],["2024-07-24T16:33:20.010000"],["2024-07-24T16:33:21.010000"],["2024-07-24T16:33:22.010000"],["2024-07-24T16:33:23.010000"],["2024-07-24T16:33:24.010000"],["2024-07-24T16:33:25.010000"],["2024-07-24T16:33:26.010000"],["2024-07-24T16:33:27.010000"],["2024-07-24T16:33:28.010000"],["2024-07-24T16:33:29.010000"],["2024-07-24T16:33:30.010000"],["2024-07-24T16:33:31.010000"],["2024-07-24T16:33:32.010000"],["2024-07-24T16:33:33.010000"],["2024-07-24T16:33:34.010000"],["2024-07-24T16:33:35.010000"],["2024-07-24T16:33:36.010000"],["2024-07-24T16:33:37.010000"],["2024-07-24T16:33:38.010000"],["2024-07-24T16:33:39.010000"],["2024-07-24T16:33:40.010000"],["2024-07-24T16:33:41.010000"],["2024-07-24T16:33:42.010000"],["2024-07-24T16:33:43.010000"],["2024-07-24T16:33:44.010000"],["2024-07-24T16:33:45.010000"],["2024-07-24T16:33:46.010000"],["2024-07-24T16:33:47.010000"],["2024-07-24T16:33:48.010000"],["2024-07-24T16:33:49.010000"],["2024-07-24T16:33:50.010000"],["2024-07-24T16:33:51.010000"],["2024-07-24T16:33:52.010000"],["2024-07-24T16:33:53.010000"],["2024-07-24T16:33:54.010000"],["2024-07-24T16:33:55.010000"],["2024-07-24T16:33:56.010000"],["2024-07-24T16:33:57.010000"],["2024-07-24T16:33:58.010000"],["2024-07-24T16:33:59.010000"],["2024-07-24T16:34:00.010000"],["2024-07-24T16:34:01.010000"],["2024-07-24T16:34:02.010000"],["2024-07-24T16:34:03.010000"],["2024-07-24T16:34:04.010000"],["2024-07-24T16:34:05.010000"],["2024-07-24T16:34:06.010000"],["2024-07-24T16:34:07.010000"],["2024-07-24T16:34:08.010000"],["2024-07-24T16:34:09.010000"],["2024-07-24T16:34:10.010000"],["2024-07-24T16:34:11.010000"],["2024-07-24T16:34:12.010000"],["2024-07-24T16:34:13.010000"],["2024-07-24T16:34:14.010000"],["2024-07-24T16:34:15.010000"],["2024-07-24T16:34:16.010000"],["2024-07-24T16:34:17.010000"],["2024-07-24T16:34:18.010000"],["2024-07-24T16:34:19.010000"],["2024-07-24T16:34:20.010000"],["2024-07-24T16:34:21.010000"],["2024-07-24T16:34:22.010000"],["2024-07-24T16:34:23.010000"],["2024-07-24T16:34:24.010000"],["2024-07-24T16:34:25.010000"],["2024-07-24T16:34:26.010000"],["2024-07-24T16:34:27.010000"],["2024-07-24T16:34:28.010000"],["2024-07-24T16:34:29.010000"],["2024-07-24T16:34:30.010000"],["2024-07-24T16:34:31.010000"],["2024-07-24T16:34:32.010000"],["2024-07-24T16:34:33.010000"],["2024-07-24T16:34:34.010000"],["2024-07-24T16:34:35.010000"],["2024-07-24T16:34:36.010000"],["2024-07-24T16:34:37.010000"],["2024-07-24T16:34:38.010000"],["2024-07-24T16:34:39.010000"],["2024-07-24T16:34:40.010000"],["2024-07-24T16:34:41.010000"],["2024-07-24T16:34:42.010000"],["2024-07-24T16:34:43.010000"],["2024-07-24T16:34:44.010000"],["2024-07-24T16:34:45.010000"],["2024-07-24T16:34:46.010000"],["2024-07-24T16:34:47.010000"],["2024-07-24T16:34:48.010000"],["2024-07-24T16:34:49.010000"],["2024-07-24T16:34:50.010000"],["2024-07-24T16:34:51.010000"],["2024-07-24T16:34:52.010000"],["2024-07-24T16:34:53.010000"],["2024-07-24T16:34:54.010000"],["2024-07-24T16:34:55.010000"],["2024-07-24T16:34:56.010000"],["2024-07-24T16:34:57.010000"],["2024-07-24T16:34:58.010000"],["2024-07-24T16:34:59.010000"],["2024-07-24T16:35:00.010000"],["2024-07-24T16:35:01.010000"],["2024-07-24T16:35:02.010000"],["2024-07-24T16:35:03.010000"],["2024-07-24T16:35:04.010000"],["2024-07-24T16:35:05.010000"],["2024-07-24T16:35:06.010000"],["2024-07-24T16:35:07.010000"],["2024-07-24T16:35:08.010000"],["2024-07-24T16:35:09.010000"],["2024-07-24T16:35:10.010000"],["2024-07-24T16:35:11.010000"],["2024-07-24T16:35:12.010000"],["2024-07-24T16:35:13.010000"],["2024-07-24T16:35:14.010000"],["2024-07-24T16:35:15.010000"],["2024-07-24T16:35:16.010000"],["2024-07-24T16:35:17.010000"],["2024-07-24T16:35:18.010000"],["2024-07-24T16:35:19.010000"],["2024-07-24T16:35:20.010000"],["2024-07-24T16:35:21.010000"],["2024-07-24T16:35:22.010000"],["2024-07-24T16:35:23.010000"],["2024-07-24T16:35:24.010000"],["2024-07-24T16:35:25.010000"],["2024-07-24T16:35:26.010000"],["2024-07-24T16:35:27.010000"],["2024-07-24T16:35:28.010000"],["2024-07-24T16:35:29.010000"],["2024-07-24T16:35:30.010000"],["2024-07-24T16:35:31.010000"],["2024-07-24T16:35:32.010000"],["2024-07-24T16:35:33.010000"],["2024-07-24T16:35:34.010000"],["2024-07-24T16:35:35.010000"],["2024-07-24T16:35:36.010000"],["2024-07-24T16:35:37.010000"],["2024-07-24T16:35:38.010000"],["2024-07-24T16:35:39.010000"],["2024-07-24T16:35:40.010000"],["2024-07-24T16:35:41.010000"],["2024-07-24T16:35:42.010000"],["2024-07-24T16:35:43.010000"],["2024-07-24T16:35:44.010000"],["2024-07-24T16:35:45.010000"],["2024-07-24T16:35:46.010000"],["2024-07-24T16:35:47.010000"],["2024-07-24T16:35:48.010000"],["2024-07-24T16:35:49.010000"],["2024-07-24T16:35:50.010000"],["2024-07-24T16:35:51.010000"],["2024-07-24T16:35:52.010000"],["2024-07-24T16:35:53.010000"],["2024-07-24T16:35:54.010000"],["2024-07-24T16:35:55.010000"],["2024-07-24T16:35:56.010000"],["2024-07-24T16:35:57.010000"],["2024-07-24T16:35:58.010000"],["2024-07-24T16:35:59.010000"],["2024-07-24T16:36:00.010000"],["2024-07-24T16:36:01.010000"],["2024-07-24T16:36:02.010000"],["2024-07-24T16:36:03.010000"],["2024-07-24T16:36:04.010000"],["2024-07-24T16:36:05.010000"],["2024-07-24T16:36:06.010000"],["2024-07-24T16:36:07.010000"],["2024-07-24T16:36:08.010000"],["2024-07-24T16:36:09.010000"],["2024-07-24T16:36:10.010000"],["2024-07-24T16:36:11.010000"],["2024-07-24T16:36:12.010000"],["2024-07-24T16:36:13.010000"],["2024-07-24T16:36:14.010000"],["2024-07-24T16:36:15.010000"],["2024-07-24T16:36:16.010000"],["2024-07-24T16:36:17.010000"],["2024-07-24T16:36:18.010000"],["2024-07-24T16:36:19.010000"],["2024-07-24T16:36:20.010000"],["2024-07-24T16:36:21.010000"],["2024-07-24T16:36:22.010000"],["2024-07-24T16:36:23.010000"],["2024-07-24T16:36:24.010000"],["2024-07-24T16:36:25.010000"],["2024-07-24T16:36:26.010000"],["2024-07-24T16:36:27.010000"],["2024-07-24T16:36:28.010000"],["2024-07-24T16:36:29.010000"],["2024-07-24T16:36:30.010000"],["2024-07-24T16:36:31.010000"],["2024-07-24T16:36:32.010000"],["2024-07-24T16:36:33.010000"],["2024-07-24T16:36:34.010000"],["2024-07-24T16:36:35.010000"],["2024-07-24T16:36:36.010000"],["2024-07-24T16:36:37.010000"],["2024-07-24T16:36:38.010000"],["2024-07-24T16:36:39.010000"],["2024-07-24T16:36:40.010000"],["2024-07-24T16:36:41.010000"],["2024-07-24T16:36:42.010000"],["2024-07-24T16:36:43.010000"],["2024-07-24T16:36:44.010000"],["2024-07-24T16:36:45.010000"],["2024-07-24T16:36:46.010000"],["2024-07-24T16:36:47.010000"],["2024-07-24T16:36:48.010000"],["2024-07-24T16:36:49.010000"],["2024-07-24T16:36:50.010000"],["2024-07-24T16:36:51.010000"],["2024-07-24T16:36:52.010000"],["2024-07-24T16:36:53.010000"],["2024-07-24T16:36:54.010000"],["2024-07-24T16:36:55.010000"],["2024-07-24T16:36:56.010000"],["2024-07-24T16:36:57.010000"],["2024-07-24T16:36:58.010000"],["2024-07-24T16:36:59.010000"],["2024-07-24T16:37:00.010000"],["2024-07-24T16:37:01.010000"],["2024-07-24T16:37:02.010000"],["2024-07-24T16:37:03.010000"],["2024-07-24T16:37:04.010000"],["2024-07-24T16:37:05.010000"],["2024-07-24T16:37:06.010000"],["2024-07-24T16:37:07.010000"],["2024-07-24T16:37:08.010000"],["2024-07-24T16:37:09.010000"],["2024-07-24T16:37:10.010000"],["2024-07-24T16:37:11.010000"],["2024-07-24T16:37:12.010000"],["2024-07-24T16:37:13.010000"],["2024-07-24T16:37:14.010000"],["2024-07-24T16:37:15.010000"],["2024-07-24T16:37:16.010000"],["2024-07-24T16:37:17.010000"],["2024-07-24T16:37:18.010000"],["2024-07-24T16:37:19.010000"],["2024-07-24T16:37:20.010000"],["2024-07-24T16:37:21.010000"],["2024-07-24T16:37:22.010000"],["2024-07-24T16:37:23.010000"],["2024-07-24T16:37:24.010000"],["2024-07-24T16:37:25.010000"],["2024-07-24T16:37:26.010000"],["2024-07-24T16:37:27.010000"],["2024-07-24T16:37:28.010000"],["2024-07-24T16:37:29.010000"],["2024-07-24T16:37:30.010000"],["2024-07-24T16:37:31.010000"],["2024-07-24T16:37:32.010000"],["2024-07-24T16:37:33.010000"],["2024-07-24T16:37:34.010000"],["2024-07-24T16:37:35.010000"],["2024-07-24T16:37:36.010000"],["2024-07-24T16:37:37.010000"],["2024-07-24T16:37:38.010000"],["2024-07-24T16:37:39.010000"],["2024-07-24T16:37:40.010000"],["2024-07-24T16:37:41.010000"],["2024-07-24T16:37:42.010000"],["2024-07-24T16:37:43.010000"],["2024-07-24T16:37:44.010000"],["2024-07-24T16:37:45.010000"],["2024-07-24T16:37:46.010000"],["2024-07-24T16:37:47.010000"],["2024-07-24T16:37:48.010000"],["2024-07-24T16:37:49.010000"],["2024-07-24T16:37:50.010000"],["2024-07-24T16:37:51.010000"],["2024-07-24T16:37:52.010000"],["2024-07-24T16:37:53.010000"],["2024-07-24T16:37:54.010000"],["2024-07-24T16:37:55.010000"],["2024-07-24T16:37:56.010000"],["2024-07-24T16:37:57.010000"],["2024-07-24T16:37:58.010000"],["2024-07-24T16:37:59.010000"],["2024-07-24T16:38:00.010000"],["2024-07-24T16:38:01.010000"],["2024-07-24T16:38:02.010000"],["2024-07-24T16:38:03.010000"],["2024-07-24T16:38:04.010000"],["2024-07-24T16:38:05.010000"],["2024-07-24T16:38:06.010000"],["2024-07-24T16:38:07.010000"],["2024-07-24T16:38:08.010000"],["2024-07-24T16:38:09.010000"],["2024-07-24T16:38:10.010000"],["2024-07-24T16:38:11.010000"],["2024-07-24T16:38:12.010000"],["2024-07-24T16:38:13.010000"],["2024-07-24T16:38:14.010000"],["2024-07-24T16:38:15.010000"],["2024-07-24T16:38:16.010000"],["2024-07-24T16:38:17.010000"],["2024-07-24T16:38:18.010000"],["2024-07-24T16:38:19.010000"],["2024-07-24T16:38:20.010000"],["2024-07-24T16:38:21.010000"],["2024-07-24T16:38:22.010000"],["2024-07-24T16:38:23.010000"],["2024-07-24T16:38:24.010000"],["2024-07-24T16:38:25.010000"],["2024-07-24T16:38:26.010000"],["2024-07-24T16:38:27.010000"],["2024-07-24T16:38:28.010000"],["2024-07-24T16:38:29.010000"],["2024-07-24T16:38:30.010000"],["2024-07-24T16:38:31.010000"],["2024-07-24T16:38:32.010000"],["2024-07-24T16:38:33.010000"],["2024-07-24T16:38:34.010000"],["2024-07-24T16:38:35.010000"],["2024-07-24T16:38:36.010000"],["2024-07-24T16:38:37.010000"],["2024-07-24T16:38:38.010000"],["2024-07-24T16:38:39.010000"],["2024-07-24T16:38:40.010000"],["2024-07-24T16:38:41.010000"],["2024-07-24T16:38:42.010000"],["2024-07-24T16:38:43.010000"],["2024-07-24T16:38:44.010000"],["2024-07-24T16:38:45.010000"],["2024-07-24T16:38:46.010000"],["2024-07-24T16:38:47.010000"],["2024-07-24T16:38:48.010000"],["2024-07-24T16:38:49.010000"],["2024-07-24T16:38:50.010000"],["2024-07-24T16:38:51.010000"],["2024-07-24T16:38:52.010000"],["2024-07-24T16:38:53.010000"],["2024-07-24T16:38:54.010000"],["2024-07-24T16:38:55.010000"],["2024-07-24T16:38:56.010000"],["2024-07-24T16:38:57.010000"],["2024-07-24T16:38:58.010000"],["2024-07-24T16:38:59.010000"],["2024-07-24T16:39:00.010000"],["2024-07-24T16:39:01.010000"],["2024-07-24T16:39:02.010000"],["2024-07-24T16:39:03.010000"],["2024-07-24T16:39:04.010000"],["2024-07-24T16:39:05.010000"],["2024-07-24T16:39:06.010000"],["2024-07-24T16:39:07.010000"],["2024-07-24T16:39:08.010000"],["2024-07-24T16:39:09.010000"],["2024-07-24T16:39:10.010000"],["2024-07-24T16:39:11.010000"],["2024-07-24T16:39:12.010000"],["2024-07-24T16:39:13.010000"],["2024-07-24T16:39:14.010000"],["2024-07-24T16:39:15.010000"],["2024-07-24T16:39:16.010000"],["2024-07-24T16:39:17.010000"],["2024-07-24T16:39:18.010000"],["2024-07-24T16:39:19.010000"],["2024-07-24T16:39:20.010000"],["2024-07-24T16:39:21.010000"],["2024-07-24T16:39:22.010000"],["2024-07-24T16:39:23.010000"],["2024-07-24T16:39:24.010000"],["2024-07-24T16:39:25.010000"],["2024-07-24T16:39:26.010000"],["2024-07-24T16:39:27.010000"],["2024-07-24T16:39:28.010000"],["2024-07-24T16:39:29.010000"],["2024-07-24T16:39:30.010000"],["2024-07-24T16:39:31.010000"],["2024-07-24T16:39:32.010000"],["2024-07-24T16:39:33.010000"],["2024-07-24T16:39:34.010000"],["2024-07-24T16:39:35.010000"],["2024-07-24T16:39:36.010000"],["2024-07-24T16:39:37.010000"],["2024-07-24T16:39:38.010000"],["2024-07-24T16:39:39.010000"],["2024-07-24T16:39:40.010000"],["2024-07-24T16:39:41.010000"],["2024-07-24T16:39:42.010000"],["2024-07-24T16:39:43.010000"],["2024-07-24T16:39:44.010000"],["2024-07-24T16:39:45.010000"],["2024-07-24T16:39:46.010000"],["2024-07-24T16:39:47.010000"],["2024-07-24T16:39:48.010000"],["2024-07-24T16:39:49.010000"],["2024-07-24T16:39:50.010000"],["2024-07-24T16:39:51.010000"],["2024-07-24T16:39:52.010000"],["2024-07-24T16:39:53.010000"],["2024-07-24T16:39:54.010000"],["2024-07-24T16:39:55.010000"],["2024-07-24T16:39:56.010000"],["2024-07-24T16:39:57.010000"],["2024-07-24T16:39:58.010000"],["2024-07-24T16:39:59.010000"],["2024-07-24T16:40:00.010000"],["2024-07-24T16:40:01.010000"],["2024-07-24T16:40:02.010000"],["2024-07-24T16:40:03.010000"],["2024-07-24T16:40:04.010000"],["2024-07-24T16:40:05.010000"],["2024-07-24T16:40:06.010000"],["2024-07-24T16:40:07.010000"],["2024-07-24T16:40:08.010000"],["2024-07-24T16:40:09.010000"],["2024-07-24T16:40:10.010000"],["2024-07-24T16:40:11.010000"],["2024-07-24T16:40:12.010000"],["2024-07-24T16:40:13.010000"],["2024-07-24T16:40:14.010000"],["2024-07-24T16:40:15.010000"],["2024-07-24T16:40:16.010000"],["2024-07-24T16:40:17.010000"],["2024-07-24T16:40:18.010000"],["2024-07-24T16:40:19.010000"],["2024-07-24T16:40:20.010000"],["2024-07-24T16:40:21.010000"],["2024-07-24T16:40:22.010000"],["2024-07-24T16:40:23.010000"],["2024-07-24T16:40:24.010000"],["2024-07-24T16:40:25.010000"],["2024-07-24T16:40:26.010000"],["2024-07-24T16:40:27.010000"],["2024-07-24T16:40:28.010000"],["2024-07-24T16:40:29.010000"],["2024-07-24T16:40:30.010000"],["2024-07-24T16:40:31.010000"],["2024-07-24T16:40:32.010000"],["2024-07-24T16:40:33.010000"],["2024-07-24T16:40:34.010000"],["2024-07-24T16:40:35.010000"],["2024-07-24T16:40:36.010000"],["2024-07-24T16:40:37.010000"],["2024-07-24T16:40:38.010000"],["2024-07-24T16:40:39.010000"],["2024-07-24T16:40:40.010000"],["2024-07-24T16:40:41.010000"],["2024-07-24T16:40:42.010000"],["2024-07-24T16:40:43.010000"],["2024-07-24T16:40:44.010000"],["2024-07-24T16:40:45.010000"],["2024-07-24T16:40:46.010000"],["2024-07-24T16:40:47.010000"],["2024-07-24T16:40:48.010000"],["2024-07-24T16:40:49.010000"],["2024-07-24T16:40:50.010000"],["2024-07-24T16:40:51.010000"],["2024-07-24T16:40:52.010000"],["2024-07-24T16:40:53.010000"],["2024-07-24T16:40:54.010000"],["2024-07-24T16:40:55.010000"],["2024-07-24T16:40:56.010000"],["2024-07-24T16:40:57.010000"],["2024-07-24T16:40:58.010000"],["2024-07-24T16:40:59.010000"],["2024-07-24T16:41:00.010000"],["2024-07-24T16:41:01.010000"],["2024-07-24T16:41:02.010000"],["2024-07-24T16:41:03.010000"],["2024-07-24T16:41:04.010000"],["2024-07-24T16:41:05.010000"],["2024-07-24T16:41:06.010000"],["2024-07-24T16:41:07.010000"],["2024-07-24T16:41:08.010000"],["2024-07-24T16:41:09.010000"],["2024-07-24T16:41:10.010000"],["2024-07-24T16:41:11.010000"],["2024-07-24T16:41:12.010000"],["2024-07-24T16:41:13.010000"],["2024-07-24T16:41:14.010000"],["2024-07-24T16:41:15.010000"],["2024-07-24T16:41:16.010000"],["2024-07-24T16:41:17.010000"],["2024-07-24T16:41:18.010000"],["2024-07-24T16:41:19.010000"],["2024-07-24T16:41:20.010000"],["2024-07-24T16:41:21.010000"],["2024-07-24T16:41:22.010000"],["2024-07-24T16:41:23.010000"],["2024-07-24T16:41:24.010000"],["2024-07-24T16:41:25.010000"],["2024-07-24T16:41:26.010000"],["2024-07-24T16:41:27.010000"],["2024-07-24T16:41:28.010000"],["2024-07-24T16:41:29.010000"],["2024-07-24T16:41:30.010000"],["2024-07-24T16:41:31.010000"],["2024-07-24T16:41:32.010000"],["2024-07-24T16:41:33.010000"],["2024-07-24T16:41:34.010000"],["2024-07-24T16:41:35.010000"],["2024-07-24T16:41:36.010000"],["2024-07-24T16:41:37.010000"],["2024-07-24T16:41:38.010000"],["2024-07-24T16:41:39.010000"],["2024-07-24T16:41:40.010000"],["2024-07-24T16:41:41.010000"],["2024-07-24T16:41:42.010000"],["2024-07-24T16:41:43.010000"],["2024-07-24T16:41:44.010000"],["2024-07-24T16:41:45.010000"],["2024-07-24T16:41:46.010000"],["2024-07-24T16:41:47.010000"],["2024-07-24T16:41:48.010000"],["2024-07-24T16:41:49.010000"],["2024-07-24T16:41:50.010000"],["2024-07-24T16:41:51.010000"],["2024-07-24T16:41:52.010000"],["2024-07-24T16:41:53.010000"],["2024-07-24T16:41:54.010000"],["2024-07-24T16:41:55.010000"],["2024-07-24T16:41:56.010000"],["2024-07-24T16:41:57.010000"],["2024-07-24T16:41:58.010000"],["2024-07-24T16:41:59.010000"],["2024-07-24T16:42:00.010000"],["2024-07-24T16:42:01.010000"],["2024-07-24T16:42:02.010000"],["2024-07-24T16:42:03.010000"],["2024-07-24T16:42:04.010000"],["2024-07-24T16:42:05.010000"],["2024-07-24T16:42:06.010000"],["2024-07-24T16:42:07.010000"],["2024-07-24T16:42:08.010000"],["2024-07-24T16:42:09.010000"],["2024-07-24T16:42:10.010000"],["2024-07-24T16:42:11.010000"],["2024-07-24T16:42:12.010000"],["2024-07-24T16:42:13.010000"],["2024-07-24T16:42:14.010000"],["2024-07-24T16:42:15.010000"],["2024-07-24T16:42:16.010000"],["2024-07-24T16:42:17.010000"],["2024-07-24T16:42:18.010000"],["2024-07-24T16:42:19.010000"],["2024-07-24T16:42:20.010000"],["2024-07-24T16:42:21.010000"],["2024-07-24T16:42:22.010000"],["2024-07-24T16:42:23.010000"],["2024-07-24T16:42:24.010000"],["2024-07-24T16:42:25.010000"],["2024-07-24T16:42:26.010000"],["2024-07-24T16:42:27.010000"],["2024-07-24T16:42:28.010000"],["2024-07-24T16:42:29.010000"],["2024-07-24T16:42:30.010000"],["2024-07-24T16:42:31.010000"],["2024-07-24T16:42:32.010000"],["2024-07-24T16:42:33.010000"],["2024-07-24T16:42:34.010000"],["2024-07-24T16:42:35.010000"],["2024-07-24T16:42:36.010000"],["2024-07-24T16:42:37.010000"],["2024-07-24T16:42:38.010000"],["2024-07-24T16:42:39.010000"],["2024-07-24T16:42:40.010000"],["2024-07-24T16:42:41.010000"],["2024-07-24T16:42:42.010000"],["2024-07-24T16:42:43.010000"],["2024-07-24T16:42:44.010000"],["2024-07-24T16:42:45.010000"],["2024-07-24T16:42:46.010000"],["2024-07-24T16:42:47.010000"],["2024-07-24T16:42:48.010000"],["2024-07-24T16:42:49.010000"],["2024-07-24T16:42:50.010000"],["2024-07-24T16:42:51.010000"],["2024-07-24T16:42:52.010000"],["2024-07-24T16:42:53.010000"],["2024-07-24T16:42:54.010000"],["2024-07-24T16:42:55.010000"],["2024-07-24T16:42:56.010000"],["2024-07-24T16:42:57.010000"],["2024-07-24T16:42:58.010000"],["2024-07-24T16:42:59.010000"],["2024-07-24T16:43:00.010000"],["2024-07-24T16:43:01.010000"],["2024-07-24T16:43:02.010000"],["2024-07-24T16:43:03.010000"],["2024-07-24T16:43:04.010000"],["2024-07-24T16:43:05.010000"],["2024-07-24T16:43:06.010000"],["2024-07-24T16:43:07.010000"],["2024-07-24T16:43:08.010000"],["2024-07-24T16:43:09.010000"],["2024-07-24T16:43:10.010000"],["2024-07-24T16:43:11.010000"],["2024-07-24T16:43:12.010000"],["2024-07-24T16:43:13.010000"],["2024-07-24T16:43:14.010000"],["2024-07-24T16:43:15.010000"],["2024-07-24T16:43:16.010000"],["2024-07-24T16:43:17.010000"],["2024-07-24T16:43:18.010000"],["2024-07-24T16:43:19.010000"],["2024-07-24T16:43:20.010000"],["2024-07-24T16:43:21.010000"],["2024-07-24T16:43:22.010000"],["2024-07-24T16:43:23.010000"],["2024-07-24T16:43:24.010000"],["2024-07-24T16:43:25.010000"],["2024-07-24T16:43:26.010000"],["2024-07-24T16:43:27.010000"],["2024-07-24T16:43:28.010000"],["2024-07-24T16:43:29.010000"],["2024-07-24T16:43:30.010000"],["2024-07-24T16:43:31.010000"],["2024-07-24T16:43:32.010000"],["2024-07-24T16:43:33.010000"],["2024-07-24T16:43:34.010000"],["2024-07-24T16:43:35.010000"],["2024-07-24T16:43:36.010000"],["2024-07-24T16:43:37.010000"],["2024-07-24T16:43:38.010000"],["2024-07-24T16:43:39.010000"],["2024-07-24T16:43:40.010000"],["2024-07-24T16:43:41.010000"],["2024-07-24T16:43:42.010000"],["2024-07-24T16:43:43.010000"],["2024-07-24T16:43:44.010000"],["2024-07-24T16:43:45.010000"],["2024-07-24T16:43:46.010000"],["2024-07-24T16:43:47.010000"],["2024-07-24T16:43:48.010000"],["2024-07-24T16:43:49.010000"],["2024-07-24T16:43:50.010000"],["2024-07-24T16:43:51.010000"],["2024-07-24T16:43:52.010000"],["2024-07-24T16:43:53.010000"],["2024-07-24T16:43:54.010000"],["2024-07-24T16:43:55.010000"],["2024-07-24T16:43:56.010000"],["2024-07-24T16:43:57.010000"],["2024-07-24T16:43:58.010000"],["2024-07-24T16:43:59.010000"],["2024-07-24T16:44:00.010000"],["2024-07-24T16:44:01.010000"],["2024-07-24T16:44:02.010000"],["2024-07-24T16:44:03.010000"],["2024-07-24T16:44:04.010000"],["2024-07-24T16:44:05.010000"],["2024-07-24T16:44:06.010000"],["2024-07-24T16:44:07.010000"],["2024-07-24T16:44:08.010000"],["2024-07-24T16:44:09.010000"],["2024-07-24T16:44:10.010000"],["2024-07-24T16:44:11.010000"],["2024-07-24T16:44:12.010000"],["2024-07-24T16:44:13.010000"],["2024-07-24T16:44:14.010000"],["2024-07-24T16:44:15.010000"],["2024-07-24T16:44:16.010000"],["2024-07-24T16:44:17.010000"],["2024-07-24T16:44:18.010000"],["2024-07-24T16:44:19.010000"],["2024-07-24T16:44:20.010000"],["2024-07-24T16:44:21.010000"],["2024-07-24T16:44:22.010000"],["2024-07-24T16:44:23.010000"],["2024-07-24T16:44:24.010000"],["2024-07-24T16:44:25.010000"],["2024-07-24T16:44:26.010000"],["2024-07-24T16:44:27.010000"],["2024-07-24T16:44:28.010000"],["2024-07-24T16:44:29.010000"],["2024-07-24T16:44:30.010000"],["2024-07-24T16:44:31.010000"],["2024-07-24T16:44:32.010000"],["2024-07-24T16:44:33.010000"],["2024-07-24T16:44:34.010000"],["2024-07-24T16:44:35.010000"],["2024-07-24T16:44:36.010000"],["2024-07-24T16:44:37.010000"],["2024-07-24T16:44:38.010000"],["2024-07-24T16:44:39.010000"],["2024-07-24T16:44:40.010000"],["2024-07-24T16:44:41.010000"],["2024-07-24T16:44:42.010000"],["2024-07-24T16:44:43.010000"],["2024-07-24T16:44:44.010000"],["2024-07-24T16:44:45.010000"],["2024-07-24T16:44:46.010000"],["2024-07-24T16:44:47.010000"],["2024-07-24T16:44:48.010000"],["2024-07-24T16:44:49.010000"],["2024-07-24T16:44:50.010000"],["2024-07-24T16:44:51.010000"],["2024-07-24T16:44:52.010000"],["2024-07-24T16:44:53.010000"],["2024-07-24T16:44:54.010000"],["2024-07-24T16:44:55.010000"],["2024-07-24T16:44:56.010000"],["2024-07-24T16:44:57.010000"],["2024-07-24T16:44:58.010000"],["2024-07-24T16:44:59.010000"],["2024-07-24T16:45:00.010000"],["2024-07-24T16:45:01.010000"],["2024-07-24T16:45:02.010000"],["2024-07-24T16:45:03.010000"],["2024-07-24T16:45:04.010000"],["2024-07-24T16:45:05.010000"],["2024-07-24T16:45:06.010000"],["2024-07-24T16:45:07.010000"],["2024-07-24T16:45:08.010000"],["2024-07-24T16:45:09.010000"],["2024-07-24T16:45:10.010000"],["2024-07-24T16:45:11.010000"],["2024-07-24T16:45:12.010000"],["2024-07-24T16:45:13.010000"],["2024-07-24T16:45:14.010000"],["2024-07-24T16:45:15.010000"],["2024-07-24T16:45:16.010000"],["2024-07-24T16:45:17.010000"],["2024-07-24T16:45:18.010000"],["2024-07-24T16:45:19.010000"],["2024-07-24T16:45:20.010000"],["2024-07-24T16:45:21.010000"],["2024-07-24T16:45:22.010000"],["2024-07-24T16:45:23.010000"],["2024-07-24T16:45:24.010000"],["2024-07-24T16:45:25.010000"],["2024-07-24T16:45:26.010000"],["2024-07-24T16:45:27.010000"],["2024-07-24T16:45:28.010000"],["2024-07-24T16:45:29.010000"],["2024-07-24T16:45:30.010000"],["2024-07-24T16:45:31.010000"],["2024-07-24T16:45:32.010000"],["2024-07-24T16:45:33.010000"],["2024-07-24T16:45:34.010000"],["2024-07-24T16:45:35.010000"],["2024-07-24T16:45:36.010000"],["2024-07-24T16:45:37.010000"],["2024-07-24T16:45:38.010000"],["2024-07-24T16:45:39.010000"],["2024-07-24T16:45:40.010000"],["2024-07-24T16:45:41.010000"],["2024-07-24T16:45:42.010000"],["2024-07-24T16:45:43.010000"],["2024-07-24T16:45:44.010000"],["2024-07-24T16:45:45.010000"],["2024-07-24T16:45:46.010000"],["2024-07-24T16:45:47.010000"],["2024-07-24T16:45:48.010000"],["2024-07-24T16:45:49.010000"],["2024-07-24T16:45:50.010000"],["2024-07-24T16:45:51.010000"],["2024-07-24T16:45:52.010000"],["2024-07-24T16:45:53.010000"],["2024-07-24T16:45:54.010000"],["2024-07-24T16:45:55.010000"],["2024-07-24T16:45:56.010000"],["2024-07-24T16:45:57.010000"],["2024-07-24T16:45:58.010000"],["2024-07-24T16:45:59.010000"],["2024-07-24T16:46:00.010000"],["2024-07-24T16:46:01.010000"],["2024-07-24T16:46:02.010000"],["2024-07-24T16:46:03.010000"],["2024-07-24T16:46:04.010000"],["2024-07-24T16:46:05.010000"],["2024-07-24T16:46:06.010000"],["2024-07-24T16:46:07.010000"],["2024-07-24T16:46:08.010000"],["2024-07-24T16:46:09.010000"],["2024-07-24T16:46:10.010000"],["2024-07-24T16:46:11.010000"],["2024-07-24T16:46:12.010000"],["2024-07-24T16:46:13.010000"],["2024-07-24T16:46:14.010000"],["2024-07-24T16:46:15.010000"],["2024-07-24T16:46:16.010000"],["2024-07-24T16:46:17.010000"],["2024-07-24T16:46:18.010000"],["2024-07-24T16:46:19.010000"],["2024-07-24T16:46:20.010000"],["2024-07-24T16:46:21.010000"],["2024-07-24T16:46:22.010000"],["2024-07-24T16:46:23.010000"],["2024-07-24T16:46:24.010000"],["2024-07-24T16:46:25.010000"],["2024-07-24T16:46:26.010000"],["2024-07-24T16:46:27.010000"],["2024-07-24T16:46:28.010000"],["2024-07-24T16:46:29.010000"],["2024-07-24T16:46:30.010000"],["2024-07-24T16:46:31.010000"],["2024-07-24T16:46:32.010000"],["2024-07-24T16:46:33.010000"],["2024-07-24T16:46:34.010000"],["2024-07-24T16:46:35.010000"],["2024-07-24T16:46:36.010000"],["2024-07-24T16:46:37.010000"],["2024-07-24T16:46:38.010000"],["2024-07-24T16:46:39.010000"],["2024-07-24T16:46:40.010000"],["2024-07-24T16:46:41.010000"],["2024-07-24T16:46:42.010000"],["2024-07-24T16:46:43.010000"],["2024-07-24T16:46:44.010000"],["2024-07-24T16:46:45.010000"],["2024-07-24T16:46:46.010000"],["2024-07-24T16:46:47.010000"],["2024-07-24T16:46:48.010000"],["2024-07-24T16:46:49.010000"],["2024-07-24T16:46:50.010000"],["2024-07-24T16:46:51.010000"],["2024-07-24T16:46:52.010000"],["2024-07-24T16:46:53.010000"],["2024-07-24T16:46:54.010000"],["2024-07-24T16:46:55.010000"],["2024-07-24T16:46:56.010000"],["2024-07-24T16:46:57.010000"],["2024-07-24T16:46:58.010000"],["2024-07-24T16:46:59.010000"],["2024-07-24T16:47:00.010000"],["2024-07-24T16:47:01.010000"],["2024-07-24T16:47:02.010000"],["2024-07-24T16:47:03.010000"],["2024-07-24T16:47:04.010000"],["2024-07-24T16:47:05.010000"],["2024-07-24T16:47:06.010000"],["2024-07-24T16:47:07.010000"],["2024-07-24T16:47:08.010000"],["2024-07-24T16:47:09.010000"],["2024-07-24T16:47:10.010000"],["2024-07-24T16:47:11.010000"],["2024-07-24T16:47:12.010000"],["2024-07-24T16:47:13.010000"],["2024-07-24T16:47:14.010000"],["2024-07-24T16:47:15.010000"],["2024-07-24T16:47:16.010000"],["2024-07-24T16:47:17.010000"],["2024-07-24T16:47:18.010000"],["2024-07-24T16:47:19.010000"],["2024-07-24T16:47:20.010000"],["2024-07-24T16:47:21.010000"],["2024-07-24T16:47:22.010000"],["2024-07-24T16:47:23.010000"],["2024-07-24T16:47:24.010000"],["2024-07-24T16:47:25.010000"],["2024-07-24T16:47:26.010000"],["2024-07-24T16:47:27.010000"],["2024-07-24T16:47:28.010000"],["2024-07-24T16:47:29.010000"],["2024-07-24T16:47:30.010000"],["2024-07-24T16:47:31.010000"],["2024-07-24T16:47:32.010000"],["2024-07-24T16:47:33.010000"],["2024-07-24T16:47:34.010000"],["2024-07-24T16:47:35.010000"],["2024-07-24T16:47:36.010000"],["2024-07-24T16:47:37.010000"],["2024-07-24T16:47:38.010000"],["2024-07-24T16:47:39.010000"],["2024-07-24T16:47:40.010000"],["2024-07-24T16:47:41.010000"],["2024-07-24T16:47:42.010000"],["2024-07-24T16:47:43.010000"],["2024-07-24T16:47:44.010000"],["2024-07-24T16:47:45.010000"],["2024-07-24T16:47:46.010000"],["2024-07-24T16:47:47.010000"],["2024-07-24T16:47:48.010000"],["2024-07-24T16:47:49.010000"],["2024-07-24T16:47:50.010000"],["2024-07-24T16:47:51.010000"],["2024-07-24T16:47:52.010000"],["2024-07-24T16:47:53.010000"],["2024-07-24T16:47:54.010000"],["2024-07-24T16:47:55.010000"],["2024-07-24T16:47:56.010000"],["2024-07-24T16:47:57.010000"],["2024-07-24T16:47:58.010000"],["2024-07-24T16:47:59.010000"],["2024-07-24T16:48:00.010000"],["2024-07-24T16:48:01.010000"],["2024-07-24T16:48:02.010000"],["2024-07-24T16:48:03.010000"],["2024-07-24T16:48:04.010000"],["2024-07-24T16:48:05.010000"],["2024-07-24T16:48:06.010000"],["2024-07-24T16:48:07.010000"],["2024-07-24T16:48:08.010000"],["2024-07-24T16:48:09.010000"],["2024-07-24T16:48:10.010000"],["2024-07-24T16:48:11.010000"],["2024-07-24T16:48:12.010000"],["2024-07-24T16:48:13.010000"],["2024-07-24T16:48:14.010000"],["2024-07-24T16:48:15.010000"],["2024-07-24T16:48:16.010000"],["2024-07-24T16:48:17.010000"],["2024-07-24T16:48:18.010000"],["2024-07-24T16:48:19.010000"],["2024-07-24T16:48:20.010000"],["2024-07-24T16:48:21.010000"],["2024-07-24T16:48:22.010000"],["2024-07-24T16:48:23.010000"],["2024-07-24T16:48:24.010000"],["2024-07-24T16:48:25.010000"],["2024-07-24T16:48:26.010000"],["2024-07-24T16:48:27.010000"],["2024-07-24T16:48:28.010000"],["2024-07-24T16:48:29.010000"],["2024-07-24T16:48:30.010000"],["2024-07-24T16:48:31.010000"],["2024-07-24T16:48:32.010000"],["2024-07-24T16:48:33.010000"],["2024-07-24T16:48:34.010000"],["2024-07-24T16:48:35.010000"],["2024-07-24T16:48:36.010000"],["2024-07-24T16:48:37.010000"],["2024-07-24T16:48:38.010000"],["2024-07-24T16:48:39.010000"],["2024-07-24T16:48:40.010000"],["2024-07-24T16:48:41.010000"],["2024-07-24T16:48:42.010000"],["2024-07-24T16:48:43.010000"],["2024-07-24T16:48:44.010000"],["2024-07-24T16:48:45.010000"],["2024-07-24T16:48:46.010000"],["2024-07-24T16:48:47.010000"],["2024-07-24T16:48:48.010000"],["2024-07-24T16:48:49.010000"],["2024-07-24T16:48:50.010000"],["2024-07-24T16:48:51.010000"],["2024-07-24T16:48:52.010000"],["2024-07-24T16:48:53.010000"],["2024-07-24T16:48:54.010000"],["2024-07-24T16:48:55.010000"],["2024-07-24T16:48:56.010000"],["2024-07-24T16:48:57.010000"],["2024-07-24T16:48:58.010000"],["2024-07-24T16:48:59.010000"],["2024-07-24T16:49:00.010000"],["2024-07-24T16:49:01.010000"],["2024-07-24T16:49:02.010000"],["2024-07-24T16:49:03.010000"],["2024-07-24T16:49:04.010000"],["2024-07-24T16:49:05.010000"],["2024-07-24T16:49:06.010000"],["2024-07-24T16:49:07.010000"],["2024-07-24T16:49:08.010000"],["2024-07-24T16:49:09.010000"],["2024-07-24T16:49:10.010000"],["2024-07-24T16:49:11.010000"],["2024-07-24T16:49:12.010000"],["2024-07-24T16:49:13.010000"],["2024-07-24T16:49:14.010000"],["2024-07-24T16:49:15.010000"],["2024-07-24T16:49:16.010000"],["2024-07-24T16:49:17.010000"],["2024-07-24T16:49:18.010000"],["2024-07-24T16:49:19.010000"],["2024-07-24T16:49:20.010000"],["2024-07-24T16:49:21.010000"],["2024-07-24T16:49:22.010000"],["2024-07-24T16:49:23.010000"],["2024-07-24T16:49:24.010000"],["2024-07-24T16:49:25.010000"],["2024-07-24T16:49:26.010000"],["2024-07-24T16:49:27.010000"],["2024-07-24T16:49:28.010000"],["2024-07-24T16:49:29.010000"],["2024-07-24T16:49:30.010000"],["2024-07-24T16:49:31.010000"],["2024-07-24T16:49:32.010000"],["2024-07-24T16:49:33.010000"],["2024-07-24T16:49:34.010000"],["2024-07-24T16:49:35.010000"],["2024-07-24T16:49:36.010000"],["2024-07-24T16:49:37.010000"],["2024-07-24T16:49:38.010000"],["2024-07-24T16:49:39.010000"],["2024-07-24T16:49:40.010000"],["2024-07-24T16:49:41.010000"],["2024-07-24T16:49:42.010000"],["2024-07-24T16:49:43.010000"],["2024-07-24T16:49:44.010000"],["2024-07-24T16:49:45.010000"],["2024-07-24T16:49:46.010000"],["2024-07-24T16:49:47.010000"],["2024-07-24T16:49:48.010000"],["2024-07-24T16:49:49.010000"],["2024-07-24T16:49:50.010000"],["2024-07-24T16:49:51.010000"],["2024-07-24T16:49:52.010000"],["2024-07-24T16:49:53.010000"],["2024-07-24T16:49:54.010000"],["2024-07-24T16:49:55.010000"],["2024-07-24T16:49:56.010000"],["2024-07-24T16:49:57.010000"],["2024-07-24T16:49:58.010000"],["2024-07-24T16:49:59.010000"],["2024-07-24T16:50:00.010000"],["2024-07-24T16:50:01.010000"],["2024-07-24T16:50:02.010000"],["2024-07-24T16:50:03.010000"],["2024-07-24T16:50:04.010000"],["2024-07-24T16:50:05.010000"],["2024-07-24T16:50:06.010000"],["2024-07-24T16:50:07.010000"],["2024-07-24T16:50:08.010000"],["2024-07-24T16:50:09.010000"],["2024-07-24T16:50:10.010000"],["2024-07-24T16:50:11.010000"],["2024-07-24T16:50:12.010000"],["2024-07-24T16:50:13.010000"],["2024-07-24T16:50:14.010000"],["2024-07-24T16:50:15.010000"],["2024-07-24T16:50:16.010000"],["2024-07-24T16:50:17.010000"],["2024-07-24T16:50:18.010000"],["2024-07-24T16:50:19.010000"],["2024-07-24T16:50:20.010000"],["2024-07-24T16:50:21.010000"],["2024-07-24T16:50:22.010000"],["2024-07-24T16:50:23.010000"],["2024-07-24T16:50:24.010000"],["2024-07-24T16:50:25.010000"],["2024-07-24T16:50:26.010000"],["2024-07-24T16:50:27.010000"],["2024-07-24T16:50:28.010000"],["2024-07-24T16:50:29.010000"],["2024-07-24T16:50:30.010000"],["2024-07-24T16:50:31.010000"],["2024-07-24T16:50:32.010000"],["2024-07-24T16:50:33.010000"],["2024-07-24T16:50:34.010000"],["2024-07-24T16:50:35.010000"],["2024-07-24T16:50:36.010000"],["2024-07-24T16:50:37.010000"],["2024-07-24T16:50:38.010000"],["2024-07-24T16:50:39.010000"],["2024-07-24T16:50:40.010000"],["2024-07-24T16:50:41.010000"],["2024-07-24T16:50:42.010000"],["2024-07-24T16:50:43.010000"],["2024-07-24T16:50:44.010000"],["2024-07-24T16:50:45.010000"],["2024-07-24T16:50:46.010000"],["2024-07-24T16:50:47.010000"],["2024-07-24T16:50:48.010000"],["2024-07-24T16:50:49.010000"],["2024-07-24T16:50:50.010000"],["2024-07-24T16:50:51.010000"],["2024-07-24T16:50:52.010000"],["2024-07-24T16:50:53.010000"],["2024-07-24T16:50:54.010000"],["2024-07-24T16:50:55.010000"],["2024-07-24T16:50:56.010000"],["2024-07-24T16:50:57.010000"],["2024-07-24T16:50:58.010000"],["2024-07-24T16:50:59.010000"],["2024-07-24T16:51:00.010000"],["2024-07-24T16:51:01.010000"],["2024-07-24T16:51:02.010000"],["2024-07-24T16:51:03.010000"],["2024-07-24T16:51:04.010000"],["2024-07-24T16:51:05.010000"],["2024-07-24T16:51:06.010000"],["2024-07-24T16:51:07.010000"],["2024-07-24T16:51:08.010000"],["2024-07-24T16:51:09.010000"],["2024-07-24T16:51:10.010000"],["2024-07-24T16:51:11.010000"],["2024-07-24T16:51:12.010000"],["2024-07-24T16:51:13.010000"],["2024-07-24T16:51:14.010000"],["2024-07-24T16:51:15.010000"],["2024-07-24T16:51:16.010000"],["2024-07-24T16:51:17.010000"],["2024-07-24T16:51:18.010000"],["2024-07-24T16:51:19.010000"],["2024-07-24T16:51:20.010000"],["2024-07-24T16:51:21.010000"],["2024-07-24T16:51:22.010000"],["2024-07-24T16:51:23.010000"],["2024-07-24T16:51:24.010000"],["2024-07-24T16:51:25.010000"],["2024-07-24T16:51:26.010000"],["2024-07-24T16:51:27.010000"],["2024-07-24T16:51:28.010000"],["2024-07-24T16:51:29.010000"],["2024-07-24T16:51:30.010000"],["2024-07-24T16:51:31.010000"],["2024-07-24T16:51:32.010000"],["2024-07-24T16:51:33.010000"],["2024-07-24T16:51:34.010000"],["2024-07-24T16:51:35.010000"],["2024-07-24T16:51:36.010000"],["2024-07-24T16:51:37.010000"],["2024-07-24T16:51:38.010000"],["2024-07-24T16:51:39.010000"],["2024-07-24T16:51:40.010000"],["2024-07-24T16:51:41.010000"],["2024-07-24T16:51:42.010000"],["2024-07-24T16:51:43.010000"],["2024-07-24T16:51:44.010000"],["2024-07-24T16:51:45.010000"],["2024-07-24T16:51:46.010000"],["2024-07-24T16:51:47.010000"],["2024-07-24T16:51:48.010000"],["2024-07-24T16:51:49.010000"],["2024-07-24T16:51:50.010000"],["2024-07-24T16:51:51.010000"],["2024-07-24T16:51:52.010000"],["2024-07-24T16:51:53.010000"],["2024-07-24T16:51:54.010000"],["2024-07-24T16:51:55.010000"],["2024-07-24T16:51:56.010000"],["2024-07-24T16:51:57.010000"],["2024-07-24T16:51:58.010000"],["2024-07-24T16:51:59.010000"],["2024-07-24T16:52:00.010000"],["2024-07-24T16:52:01.010000"],["2024-07-24T16:52:02.010000"],["2024-07-24T16:52:03.010000"],["2024-07-24T16:52:04.010000"],["2024-07-24T16:52:05.010000"],["2024-07-24T16:52:06.010000"],["2024-07-24T16:52:07.010000"],["2024-07-24T16:52:08.010000"],["2024-07-24T16:52:09.010000"],["2024-07-24T16:52:10.010000"],["2024-07-24T16:52:11.010000"],["2024-07-24T16:52:12.010000"],["2024-07-24T16:52:13.010000"],["2024-07-24T16:52:14.010000"],["2024-07-24T16:52:15.010000"],["2024-07-24T16:52:16.010000"],["2024-07-24T16:52:17.010000"],["2024-07-24T16:52:18.010000"],["2024-07-24T16:52:19.010000"],["2024-07-24T16:52:20.010000"],["2024-07-24T16:52:21.010000"],["2024-07-24T16:52:22.010000"],["2024-07-24T16:52:23.010000"],["2024-07-24T16:52:24.010000"],["2024-07-24T16:52:25.010000"],["2024-07-24T16:52:26.010000"],["2024-07-24T16:52:27.010000"],["2024-07-24T16:52:28.010000"],["2024-07-24T16:52:29.010000"],["2024-07-24T16:52:30.010000"],["2024-07-24T16:52:31.010000"],["2024-07-24T16:52:32.010000"],["2024-07-24T16:52:33.010000"],["2024-07-24T16:52:34.010000"],["2024-07-24T16:52:35.010000"],["2024-07-24T16:52:36.010000"],["2024-07-24T16:52:37.010000"],["2024-07-24T16:52:38.010000"],["2024-07-24T16:52:39.010000"],["2024-07-24T16:52:40.010000"],["2024-07-24T16:52:41.010000"],["2024-07-24T16:52:42.010000"],["2024-07-24T16:52:43.010000"],["2024-07-24T16:52:44.010000"],["2024-07-24T16:52:45.010000"],["2024-07-24T16:52:46.010000"],["2024-07-24T16:52:47.010000"],["2024-07-24T16:52:48.010000"],["2024-07-24T16:52:49.010000"],["2024-07-24T16:52:50.010000"],["2024-07-24T16:52:51.010000"],["2024-07-24T16:52:52.010000"],["2024-07-24T16:52:53.010000"],["2024-07-24T16:52:54.010000"],["2024-07-24T16:52:55.010000"],["2024-07-24T16:52:56.010000"],["2024-07-24T16:52:57.010000"],["2024-07-24T16:52:58.010000"],["2024-07-24T16:52:59.010000"],["2024-07-24T16:53:00.010000"],["2024-07-24T16:53:01.010000"],["2024-07-24T16:53:02.010000"],["2024-07-24T16:53:03.010000"],["2024-07-24T16:53:04.010000"],["2024-07-24T16:53:05.010000"],["2024-07-24T16:53:06.010000"],["2024-07-24T16:53:07.010000"],["2024-07-24T16:53:08.010000"],["2024-07-24T16:53:09.010000"],["2024-07-24T16:53:10.010000"],["2024-07-24T16:53:11.010000"],["2024-07-24T16:53:12.010000"],["2024-07-24T16:53:13.010000"],["2024-07-24T16:53:14.010000"],["2024-07-24T16:53:15.010000"],["2024-07-24T16:53:16.010000"],["2024-07-24T16:53:17.010000"],["2024-07-24T16:53:18.010000"],["2024-07-24T16:53:19.010000"],["2024-07-24T16:53:20.010000"],["2024-07-24T16:53:21.010000"],["2024-07-24T16:53:22.010000"],["2024-07-24T16:53:23.010000"],["2024-07-24T16:53:24.010000"],["2024-07-24T16:53:25.010000"],["2024-07-24T16:53:26.010000"],["2024-07-24T16:53:27.010000"],["2024-07-24T16:53:28.010000"],["2024-07-24T16:53:29.010000"],["2024-07-24T16:53:30.010000"],["2024-07-24T16:53:31.010000"],["2024-07-24T16:53:32.010000"],["2024-07-24T16:53:33.010000"],["2024-07-24T16:53:34.010000"],["2024-07-24T16:53:35.010000"],["2024-07-24T16:53:36.010000"],["2024-07-24T16:53:37.010000"],["2024-07-24T16:53:38.010000"],["2024-07-24T16:53:39.010000"],["2024-07-24T16:53:40.010000"],["2024-07-24T16:53:41.010000"],["2024-07-24T16:53:42.010000"],["2024-07-24T16:53:43.010000"],["2024-07-24T16:53:44.010000"],["2024-07-24T16:53:45.010000"],["2024-07-24T16:53:46.010000"],["2024-07-24T16:53:47.010000"],["2024-07-24T16:53:48.010000"],["2024-07-24T16:53:49.010000"],["2024-07-24T16:53:50.010000"],["2024-07-24T16:53:51.010000"],["2024-07-24T16:53:52.010000"],["2024-07-24T16:53:53.010000"],["2024-07-24T16:53:54.010000"],["2024-07-24T16:53:55.010000"],["2024-07-24T16:53:56.010000"],["2024-07-24T16:53:57.010000"],["2024-07-24T16:53:58.010000"],["2024-07-24T16:53:59.010000"],["2024-07-24T16:54:00.010000"],["2024-07-24T16:54:01.010000"],["2024-07-24T16:54:02.010000"],["2024-07-24T16:54:03.010000"],["2024-07-24T16:54:04.010000"],["2024-07-24T16:54:05.010000"],["2024-07-24T16:54:06.010000"],["2024-07-24T16:54:07.010000"],["2024-07-24T16:54:08.010000"],["2024-07-24T16:54:09.010000"],["2024-07-24T16:54:10.010000"],["2024-07-24T16:54:11.010000"],["2024-07-24T16:54:12.010000"],["2024-07-24T16:54:13.010000"],["2024-07-24T16:54:14.010000"],["2024-07-24T16:54:15.010000"],["2024-07-24T16:54:16.010000"],["2024-07-24T16:54:17.010000"],["2024-07-24T16:54:18.010000"],["2024-07-24T16:54:19.010000"],["2024-07-24T16:54:20.010000"],["2024-07-24T16:54:21.010000"],["2024-07-24T16:54:22.010000"],["2024-07-24T16:54:23.010000"],["2024-07-24T16:54:24.010000"],["2024-07-24T16:54:25.010000"],["2024-07-24T16:54:26.010000"],["2024-07-24T16:54:27.010000"],["2024-07-24T16:54:28.010000"],["2024-07-24T16:54:29.010000"],["2024-07-24T16:54:30.010000"],["2024-07-24T16:54:31.010000"],["2024-07-24T16:54:32.010000"],["2024-07-24T16:54:33.010000"],["2024-07-24T16:54:34.010000"],["2024-07-24T16:54:35.010000"],["2024-07-24T16:54:36.010000"],["2024-07-24T16:54:37.010000"],["2024-07-24T16:54:38.010000"],["2024-07-24T16:54:39.010000"],["2024-07-24T16:54:40.010000"],["2024-07-24T16:54:41.010000"],["2024-07-24T16:54:42.010000"],["2024-07-24T16:54:43.010000"],["2024-07-24T16:54:44.010000"],["2024-07-24T16:54:45.010000"],["2024-07-24T16:54:46.010000"],["2024-07-24T16:54:47.010000"],["2024-07-24T16:54:48.010000"],["2024-07-24T16:54:49.010000"],["2024-07-24T16:54:50.010000"],["2024-07-24T16:54:51.010000"],["2024-07-24T16:54:52.010000"],["2024-07-24T16:54:53.010000"],["2024-07-24T16:54:54.010000"],["2024-07-24T16:54:55.010000"],["2024-07-24T16:54:56.010000"],["2024-07-24T16:54:57.010000"],["2024-07-24T16:54:58.010000"],["2024-07-24T16:54:59.010000"],["2024-07-24T16:55:00.010000"],["2024-07-24T16:55:01.010000"],["2024-07-24T16:55:02.010000"],["2024-07-24T16:55:03.010000"],["2024-07-24T16:55:04.010000"],["2024-07-24T16:55:05.010000"],["2024-07-24T16:55:06.010000"],["2024-07-24T16:55:07.010000"],["2024-07-24T16:55:08.010000"],["2024-07-24T16:55:09.010000"],["2024-07-24T16:55:10.010000"],["2024-07-24T16:55:11.010000"],["2024-07-24T16:55:12.010000"],["2024-07-24T16:55:13.010000"],["2024-07-24T16:55:14.010000"],["2024-07-24T16:55:15.010000"],["2024-07-24T16:55:16.010000"],["2024-07-24T16:55:17.010000"],["2024-07-24T16:55:18.010000"],["2024-07-24T16:55:19.010000"],["2024-07-24T16:55:20.010000"],["2024-07-24T16:55:21.010000"],["2024-07-24T16:55:22.010000"],["2024-07-24T16:55:23.010000"],["2024-07-24T16:55:24.010000"],["2024-07-24T16:55:25.010000"],["2024-07-24T16:55:26.010000"],["2024-07-24T16:55:27.010000"],["2024-07-24T16:55:28.010000"],["2024-07-24T16:55:29.010000"],["2024-07-24T16:55:30.010000"],["2024-07-24T16:55:31.010000"],["2024-07-24T16:55:32.010000"],["2024-07-24T16:55:33.010000"],["2024-07-24T16:55:34.010000"],["2024-07-24T16:55:35.010000"],["2024-07-24T16:55:36.010000"],["2024-07-24T16:55:37.010000"],["2024-07-24T16:55:38.010000"],["2024-07-24T16:55:39.010000"],["2024-07-24T16:55:40.010000"],["2024-07-24T16:55:41.010000"],["2024-07-24T16:55:42.010000"],["2024-07-24T16:55:43.010000"],["2024-07-24T16:55:44.010000"],["2024-07-24T16:55:45.010000"],["2024-07-24T16:55:46.010000"],["2024-07-24T16:55:47.010000"],["2024-07-24T16:55:48.010000"],["2024-07-24T16:55:49.010000"],["2024-07-24T16:55:50.010000"],["2024-07-24T16:55:51.010000"],["2024-07-24T16:55:52.010000"],["2024-07-24T16:55:53.010000"],["2024-07-24T16:55:54.010000"],["2024-07-24T16:55:55.010000"],["2024-07-24T16:55:56.010000"],["2024-07-24T16:55:57.010000"],["2024-07-24T16:55:58.010000"],["2024-07-24T16:55:59.010000"],["2024-07-24T16:56:00.010000"],["2024-07-24T16:56:01.010000"],["2024-07-24T16:56:02.010000"],["2024-07-24T16:56:03.010000"],["2024-07-24T16:56:04.010000"],["2024-07-24T16:56:05.010000"],["2024-07-24T16:56:06.010000"],["2024-07-24T16:56:07.010000"],["2024-07-24T16:56:08.010000"],["2024-07-24T16:56:09.010000"],["2024-07-24T16:56:10.010000"],["2024-07-24T16:56:11.010000"],["2024-07-24T16:56:12.010000"],["2024-07-24T16:56:13.010000"],["2024-07-24T16:56:14.010000"],["2024-07-24T16:56:15.010000"],["2024-07-24T16:56:16.010000"],["2024-07-24T16:56:17.010000"],["2024-07-24T16:56:18.010000"],["2024-07-24T16:56:19.010000"],["2024-07-24T16:56:20.010000"],["2024-07-24T16:56:21.010000"],["2024-07-24T16:56:22.010000"],["2024-07-24T16:56:23.010000"],["2024-07-24T16:56:24.010000"],["2024-07-24T16:56:25.010000"],["2024-07-24T16:56:26.010000"],["2024-07-24T16:56:27.010000"],["2024-07-24T16:56:28.010000"],["2024-07-24T16:56:29.010000"],["2024-07-24T16:56:30.010000"],["2024-07-24T16:56:31.010000"],["2024-07-24T16:56:32.010000"],["2024-07-24T16:56:33.010000"],["2024-07-24T16:56:34.010000"],["2024-07-24T16:56:35.010000"],["2024-07-24T16:56:36.010000"],["2024-07-24T16:56:37.010000"],["2024-07-24T16:56:38.010000"],["2024-07-24T16:56:39.010000"],["2024-07-24T16:56:40.010000"],["2024-07-24T16:56:41.010000"],["2024-07-24T16:56:42.010000"],["2024-07-24T16:56:43.010000"],["2024-07-24T16:56:44.010000"],["2024-07-24T16:56:45.010000"],["2024-07-24T16:56:46.010000"],["2024-07-24T16:56:47.010000"],["2024-07-24T16:56:48.010000"],["2024-07-24T16:56:49.010000"],["2024-07-24T16:56:50.010000"],["2024-07-24T16:56:51.010000"],["2024-07-24T16:56:52.010000"],["2024-07-24T16:56:53.010000"],["2024-07-24T16:56:54.010000"],["2024-07-24T16:56:55.010000"],["2024-07-24T16:56:56.010000"],["2024-07-24T16:56:57.010000"],["2024-07-24T16:56:58.010000"],["2024-07-24T16:56:59.010000"],["2024-07-24T16:57:00.010000"],["2024-07-24T16:57:01.010000"],["2024-07-24T16:57:02.010000"],["2024-07-24T16:57:03.010000"],["2024-07-24T16:57:04.010000"],["2024-07-24T16:57:05.010000"],["2024-07-24T16:57:06.010000"],["2024-07-24T16:57:07.010000"],["2024-07-24T16:57:08.010000"],["2024-07-24T16:57:09.010000"],["2024-07-24T16:57:10.010000"],["2024-07-24T16:57:11.010000"],["2024-07-24T16:57:12.010000"],["2024-07-24T16:57:13.010000"],["2024-07-24T16:57:14.010000"],["2024-07-24T16:57:15.010000"],["2024-07-24T16:57:16.010000"],["2024-07-24T16:57:17.010000"],["2024-07-24T16:57:18.010000"],["2024-07-24T16:57:19.010000"],["2024-07-24T16:57:20.010000"],["2024-07-24T16:57:21.010000"],["2024-07-24T16:57:22.010000"],["2024-07-24T16:57:23.010000"],["2024-07-24T16:57:24.010000"],["2024-07-24T16:57:25.010000"],["2024-07-24T16:57:26.010000"],["2024-07-24T16:57:27.010000"],["2024-07-24T16:57:28.010000"],["2024-07-24T16:57:29.010000"],["2024-07-24T16:57:30.010000"],["2024-07-24T16:57:31.010000"],["2024-07-24T16:57:32.010000"],["2024-07-24T16:57:33.010000"],["2024-07-24T16:57:34.010000"],["2024-07-24T16:57:35.010000"],["2024-07-24T16:57:36.010000"],["2024-07-24T16:57:37.010000"],["2024-07-24T16:57:38.010000"],["2024-07-24T16:57:39.010000"],["2024-07-24T16:57:40.010000"],["2024-07-24T16:57:41.010000"],["2024-07-24T16:57:42.010000"],["2024-07-24T16:57:43.010000"],["2024-07-24T16:57:44.010000"],["2024-07-24T16:57:45.010000"],["2024-07-24T16:57:46.010000"],["2024-07-24T16:57:47.010000"],["2024-07-24T16:57:48.010000"],["2024-07-24T16:57:49.010000"],["2024-07-24T16:57:50.010000"],["2024-07-24T16:57:51.010000"],["2024-07-24T16:57:52.010000"],["2024-07-24T16:57:53.010000"],["2024-07-24T16:57:54.010000"],["2024-07-24T16:57:55.010000"],["2024-07-24T16:57:56.010000"],["2024-07-24T16:57:57.010000"],["2024-07-24T16:57:58.010000"],["2024-07-24T16:57:59.010000"],["2024-07-24T16:58:00.010000"],["2024-07-24T16:58:01.010000"],["2024-07-24T16:58:02.010000"],["2024-07-24T16:58:03.010000"],["2024-07-24T16:58:04.010000"],["2024-07-24T16:58:05.010000"],["2024-07-24T16:58:06.010000"],["2024-07-24T16:58:07.010000"],["2024-07-24T16:58:08.010000"],["2024-07-24T16:58:09.010000"],["2024-07-24T16:58:10.010000"],["2024-07-24T16:58:11.010000"],["2024-07-24T16:58:12.010000"],["2024-07-24T16:58:13.010000"],["2024-07-24T16:58:14.010000"],["2024-07-24T16:58:15.010000"],["2024-07-24T16:58:16.010000"],["2024-07-24T16:58:17.010000"],["2024-07-24T16:58:18.010000"],["2024-07-24T16:58:19.010000"],["2024-07-24T16:58:20.010000"],["2024-07-24T16:58:21.010000"],["2024-07-24T16:58:22.010000"],["2024-07-24T16:58:23.010000"],["2024-07-24T16:58:24.010000"],["2024-07-24T16:58:25.010000"],["2024-07-24T16:58:26.010000"],["2024-07-24T16:58:27.010000"],["2024-07-24T16:58:28.010000"],["2024-07-24T16:58:29.010000"],["2024-07-24T16:58:30.010000"],["2024-07-24T16:58:31.010000"],["2024-07-24T16:58:32.010000"],["2024-07-24T16:58:33.010000"],["2024-07-24T16:58:34.010000"],["2024-07-24T16:58:35.010000"],["2024-07-24T16:58:36.010000"],["2024-07-24T16:58:37.010000"],["2024-07-24T16:58:38.010000"],["2024-07-24T16:58:39.010000"],["2024-07-24T16:58:40.010000"],["2024-07-24T16:58:41.010000"],["2024-07-24T16:58:42.010000"],["2024-07-24T16:58:43.010000"],["2024-07-24T16:58:44.010000"],["2024-07-24T16:58:45.010000"],["2024-07-24T16:58:46.010000"],["2024-07-24T16:58:47.010000"],["2024-07-24T16:58:48.010000"],["2024-07-24T16:58:49.010000"],["2024-07-24T16:58:50.010000"],["2024-07-24T16:58:51.010000"],["2024-07-24T16:58:52.010000"],["2024-07-24T16:58:53.010000"],["2024-07-24T16:58:54.010000"],["2024-07-24T16:58:55.010000"],["2024-07-24T16:58:56.010000"],["2024-07-24T16:58:57.010000"],["2024-07-24T16:58:58.010000"],["2024-07-24T16:58:59.010000"],["2024-07-24T16:59:00.010000"],["2024-07-24T16:59:01.010000"],["2024-07-24T16:59:02.010000"],["2024-07-24T16:59:03.010000"],["2024-07-24T16:59:04.010000"],["2024-07-24T16:59:05.010000"],["2024-07-24T16:59:06.010000"],["2024-07-24T16:59:07.010000"],["2024-07-24T16:59:08.010000"],["2024-07-24T16:59:09.010000"],["2024-07-24T16:59:10.010000"],["2024-07-24T16:59:11.010000"],["2024-07-24T16:59:12.010000"],["2024-07-24T16:59:13.010000"],["2024-07-24T16:59:14.010000"],["2024-07-24T16:59:15.010000"],["2024-07-24T16:59:16.010000"],["2024-07-24T16:59:17.010000"],["2024-07-24T16:59:18.010000"],["2024-07-24T16:59:19.010000"],["2024-07-24T16:59:20.010000"],["2024-07-24T16:59:21.010000"],["2024-07-24T16:59:22.010000"],["2024-07-24T16:59:23.010000"],["2024-07-24T16:59:24.010000"],["2024-07-24T16:59:25.010000"],["2024-07-24T16:59:26.010000"],["2024-07-24T16:59:27.010000"],["2024-07-24T16:59:28.010000"],["2024-07-24T16:59:29.010000"],["2024-07-24T16:59:30.010000"],["2024-07-24T16:59:31.010000"],["2024-07-24T16:59:32.010000"],["2024-07-24T16:59:33.010000"],["2024-07-24T16:59:34.010000"],["2024-07-24T16:59:35.010000"],["2024-07-24T16:59:36.010000"],["2024-07-24T16:59:37.010000"],["2024-07-24T16:59:38.010000"],["2024-07-24T16:59:39.010000"],["2024-07-24T16:59:40.010000"],["2024-07-24T16:59:41.010000"],["2024-07-24T16:59:42.010000"],["2024-07-24T16:59:43.010000"],["2024-07-24T16:59:44.010000"],["2024-07-24T16:59:45.010000"],["2024-07-24T16:59:46.010000"],["2024-07-24T16:59:47.010000"],["2024-07-24T16:59:48.010000"],["2024-07-24T16:59:49.010000"],["2024-07-24T16:59:50.010000"],["2024-07-24T16:59:51.010000"],["2024-07-24T16:59:52.010000"],["2024-07-24T16:59:53.010000"],["2024-07-24T16:59:54.010000"],["2024-07-24T16:59:55.010000"],["2024-07-24T16:59:56.010000"],["2024-07-24T16:59:57.010000"],["2024-07-24T16:59:58.010000"],["2024-07-24T16:59:59.010000"],["2024-07-24T17:00:00.010000"],["2024-07-24T17:00:01.010000"],["2024-07-24T17:00:02.010000"],["2024-07-24T17:00:03.010000"],["2024-07-24T17:00:04.010000"],["2024-07-24T17:00:05.010000"],["2024-07-24T17:00:06.010000"],["2024-07-24T17:00:07.010000"],["2024-07-24T17:00:08.010000"],["2024-07-24T17:00:09.010000"],["2024-07-24T17:00:10.010000"],["2024-07-24T17:00:11.010000"],["2024-07-24T17:00:12.010000"],["2024-07-24T17:00:13.010000"],["2024-07-24T17:00:14.010000"],["2024-07-24T17:00:15.010000"],["2024-07-24T17:00:16.010000"],["2024-07-24T17:00:17.010000"],["2024-07-24T17:00:18.010000"],["2024-07-24T17:00:19.010000"],["2024-07-24T17:00:20.010000"],["2024-07-24T17:00:21.010000"],["2024-07-24T17:00:22.010000"],["2024-07-24T17:00:23.010000"],["2024-07-24T17:00:24.010000"],["2024-07-24T17:00:25.010000"],["2024-07-24T17:00:26.010000"],["2024-07-24T17:00:27.010000"],["2024-07-24T17:00:28.010000"],["2024-07-24T17:00:29.010000"],["2024-07-24T17:00:30.010000"],["2024-07-24T17:00:31.010000"],["2024-07-24T17:00:32.010000"],["2024-07-24T17:00:33.010000"],["2024-07-24T17:00:34.010000"],["2024-07-24T17:00:35.010000"],["2024-07-24T17:00:36.010000"],["2024-07-24T17:00:37.010000"],["2024-07-24T17:00:38.010000"],["2024-07-24T17:00:39.010000"],["2024-07-24T17:00:40.010000"],["2024-07-24T17:00:41.010000"],["2024-07-24T17:00:42.010000"],["2024-07-24T17:00:43.010000"],["2024-07-24T17:00:44.010000"],["2024-07-24T17:00:45.010000"],["2024-07-24T17:00:46.010000"],["2024-07-24T17:00:47.010000"],["2024-07-24T17:00:48.010000"],["2024-07-24T17:00:49.010000"],["2024-07-24T17:00:50.010000"],["2024-07-24T17:00:51.010000"],["2024-07-24T17:00:52.010000"],["2024-07-24T17:00:53.010000"],["2024-07-24T17:00:54.010000"],["2024-07-24T17:00:55.010000"],["2024-07-24T17:00:56.010000"],["2024-07-24T17:00:57.010000"],["2024-07-24T17:00:58.010000"],["2024-07-24T17:00:59.010000"],["2024-07-24T17:01:00.010000"],["2024-07-24T17:01:01.010000"],["2024-07-24T17:01:02.010000"],["2024-07-24T17:01:03.010000"],["2024-07-24T17:01:04.010000"],["2024-07-24T17:01:05.010000"],["2024-07-24T17:01:06.010000"],["2024-07-24T17:01:07.010000"],["2024-07-24T17:01:08.010000"],["2024-07-24T17:01:09.010000"],["2024-07-24T17:01:10.010000"],["2024-07-24T17:01:11.010000"],["2024-07-24T17:01:12.010000"],["2024-07-24T17:01:13.010000"],["2024-07-24T17:01:14.010000"],["2024-07-24T17:01:15.010000"],["2024-07-24T17:01:16.010000"],["2024-07-24T17:01:17.010000"],["2024-07-24T17:01:18.010000"],["2024-07-24T17:01:19.010000"],["2024-07-24T17:01:20.010000"],["2024-07-24T17:01:21.010000"],["2024-07-24T17:01:22.010000"],["2024-07-24T17:01:23.010000"],["2024-07-24T17:01:24.010000"],["2024-07-24T17:01:25.010000"],["2024-07-24T17:01:26.010000"],["2024-07-24T17:01:27.010000"],["2024-07-24T17:01:28.010000"],["2024-07-24T17:01:29.010000"],["2024-07-24T17:01:30.010000"],["2024-07-24T17:01:31.010000"],["2024-07-24T17:01:32.010000"],["2024-07-24T17:01:33.010000"],["2024-07-24T17:01:34.010000"],["2024-07-24T17:01:35.010000"],["2024-07-24T17:01:36.010000"],["2024-07-24T17:01:37.010000"],["2024-07-24T17:01:38.010000"],["2024-07-24T17:01:39.010000"],["2024-07-24T17:01:40.010000"],["2024-07-24T17:01:41.010000"],["2024-07-24T17:01:42.010000"],["2024-07-24T17:01:43.010000"],["2024-07-24T17:01:44.010000"],["2024-07-24T17:01:45.010000"],["2024-07-24T17:01:46.010000"],["2024-07-24T17:01:47.010000"],["2024-07-24T17:01:48.010000"],["2024-07-24T17:01:49.010000"],["2024-07-24T17:01:50.010000"],["2024-07-24T17:01:51.010000"],["2024-07-24T17:01:52.010000"],["2024-07-24T17:01:53.010000"],["2024-07-24T17:01:54.010000"],["2024-07-24T17:01:55.010000"],["2024-07-24T17:01:56.010000"],["2024-07-24T17:01:57.010000"],["2024-07-24T17:01:58.010000"],["2024-07-24T17:01:59.010000"],["2024-07-24T17:02:00.010000"],["2024-07-24T17:02:01.010000"],["2024-07-24T17:02:02.010000"],["2024-07-24T17:02:03.010000"],["2024-07-24T17:02:04.010000"],["2024-07-24T17:02:05.010000"],["2024-07-24T17:02:06.010000"],["2024-07-24T17:02:07.010000"],["2024-07-24T17:02:08.010000"],["2024-07-24T17:02:09.010000"],["2024-07-24T17:02:10.010000"],["2024-07-24T17:02:11.010000"],["2024-07-24T17:02:12.010000"],["2024-07-24T17:02:13.010000"],["2024-07-24T17:02:14.010000"],["2024-07-24T17:02:15.010000"],["2024-07-24T17:02:16.010000"],["2024-07-24T17:02:17.010000"],["2024-07-24T17:02:18.010000"],["2024-07-24T17:02:19.010000"],["2024-07-24T17:02:20.010000"],["2024-07-24T17:02:21.010000"],["2024-07-24T17:02:22.010000"],["2024-07-24T17:02:23.010000"],["2024-07-24T17:02:24.010000"],["2024-07-24T17:02:25.010000"],["2024-07-24T17:02:26.010000"],["2024-07-24T17:02:27.010000"],["2024-07-24T17:02:28.010000"],["2024-07-24T17:02:29.010000"],["2024-07-24T17:02:30.010000"],["2024-07-24T17:02:31.010000"],["2024-07-24T17:02:32.010000"],["2024-07-24T17:02:33.010000"],["2024-07-24T17:02:34.010000"],["2024-07-24T17:02:35.010000"],["2024-07-24T17:02:36.010000"],["2024-07-24T17:02:37.010000"],["2024-07-24T17:02:38.010000"],["2024-07-24T17:02:39.010000"],["2024-07-24T17:02:40.010000"],["2024-07-24T17:02:41.010000"],["2024-07-24T17:02:42.010000"],["2024-07-24T17:02:43.010000"],["2024-07-24T17:02:44.010000"],["2024-07-24T17:02:45.010000"],["2024-07-24T17:02:46.010000"],["2024-07-24T17:02:47.010000"],["2024-07-24T17:02:48.010000"],["2024-07-24T17:02:49.010000"],["2024-07-24T17:02:50.010000"],["2024-07-24T17:02:51.010000"],["2024-07-24T17:02:52.010000"],["2024-07-24T17:02:53.010000"],["2024-07-24T17:02:54.010000"],["2024-07-24T17:02:55.010000"],["2024-07-24T17:02:56.010000"],["2024-07-24T17:02:57.010000"],["2024-07-24T17:02:58.010000"],["2024-07-24T17:02:59.010000"],["2024-07-24T17:03:00.010000"],["2024-07-24T17:03:01.010000"],["2024-07-24T17:03:02.010000"],["2024-07-24T17:03:03.010000"],["2024-07-24T17:03:04.010000"],["2024-07-24T17:03:05.010000"],["2024-07-24T17:03:06.010000"],["2024-07-24T17:03:07.010000"],["2024-07-24T17:03:08.010000"],["2024-07-24T17:03:09.010000"],["2024-07-24T17:03:10.010000"],["2024-07-24T17:03:11.010000"],["2024-07-24T17:03:12.010000"],["2024-07-24T17:03:13.010000"],["2024-07-24T17:03:14.010000"],["2024-07-24T17:03:15.010000"],["2024-07-24T17:03:16.010000"],["2024-07-24T17:03:17.010000"],["2024-07-24T17:03:18.010000"],["2024-07-24T17:03:19.010000"],["2024-07-24T17:03:20.010000"],["2024-07-24T17:03:21.010000"],["2024-07-24T17:03:22.010000"],["2024-07-24T17:03:23.010000"],["2024-07-24T17:03:24.010000"],["2024-07-24T17:03:25.010000"],["2024-07-24T17:03:26.010000"],["2024-07-24T17:03:27.010000"],["2024-07-24T17:03:28.010000"],["2024-07-24T17:03:29.010000"],["2024-07-24T17:03:30.010000"],["2024-07-24T17:03:31.010000"],["2024-07-24T17:03:32.010000"],["2024-07-24T17:03:33.010000"],["2024-07-24T17:03:34.010000"],["2024-07-24T17:03:35.010000"],["2024-07-24T17:03:36.010000"],["2024-07-24T17:03:37.010000"],["2024-07-24T17:03:38.010000"],["2024-07-24T17:03:39.010000"],["2024-07-24T17:03:40.010000"],["2024-07-24T17:03:41.010000"],["2024-07-24T17:03:42.010000"],["2024-07-24T17:03:43.010000"],["2024-07-24T17:03:44.010000"],["2024-07-24T17:03:45.010000"],["2024-07-24T17:03:46.010000"],["2024-07-24T17:03:47.010000"],["2024-07-24T17:03:48.010000"],["2024-07-24T17:03:49.010000"],["2024-07-24T17:03:50.010000"],["2024-07-24T17:03:51.010000"],["2024-07-24T17:03:52.010000"],["2024-07-24T17:03:53.010000"],["2024-07-24T17:03:54.010000"],["2024-07-24T17:03:55.010000"],["2024-07-24T17:03:56.010000"],["2024-07-24T17:03:57.010000"],["2024-07-24T17:03:58.010000"],["2024-07-24T17:03:59.010000"],["2024-07-24T17:04:00.010000"],["2024-07-24T17:04:01.010000"],["2024-07-24T17:04:02.010000"],["2024-07-24T17:04:03.010000"],["2024-07-24T17:04:04.010000"],["2024-07-24T17:04:05.010000"],["2024-07-24T17:04:06.010000"],["2024-07-24T17:04:07.010000"],["2024-07-24T17:04:08.010000"],["2024-07-24T17:04:09.010000"],["2024-07-24T17:04:10.010000"],["2024-07-24T17:04:11.010000"],["2024-07-24T17:04:12.010000"],["2024-07-24T17:04:13.010000"],["2024-07-24T17:04:14.010000"],["2024-07-24T17:04:15.010000"],["2024-07-24T17:04:16.010000"],["2024-07-24T17:04:17.010000"],["2024-07-24T17:04:18.010000"],["2024-07-24T17:04:19.010000"],["2024-07-24T17:04:20.010000"],["2024-07-24T17:04:21.010000"],["2024-07-24T17:04:22.010000"],["2024-07-24T17:04:23.010000"],["2024-07-24T17:04:24.010000"],["2024-07-24T17:04:25.010000"],["2024-07-24T17:04:26.010000"],["2024-07-24T17:04:27.010000"],["2024-07-24T17:04:28.010000"],["2024-07-24T17:04:29.010000"],["2024-07-24T17:04:30.010000"],["2024-07-24T17:04:31.010000"],["2024-07-24T17:04:32.010000"],["2024-07-24T17:04:33.010000"],["2024-07-24T17:04:34.010000"],["2024-07-24T17:04:35.010000"],["2024-07-24T17:04:36.010000"],["2024-07-24T17:04:37.010000"],["2024-07-24T17:04:38.010000"],["2024-07-24T17:04:39.010000"],["2024-07-24T17:04:40.010000"],["2024-07-24T17:04:41.010000"],["2024-07-24T17:04:42.010000"],["2024-07-24T17:04:43.010000"],["2024-07-24T17:04:44.010000"],["2024-07-24T17:04:45.010000"],["2024-07-24T17:04:46.010000"],["2024-07-24T17:04:47.010000"],["2024-07-24T17:04:48.010000"],["2024-07-24T17:04:49.010000"],["2024-07-24T17:04:50.010000"],["2024-07-24T17:04:51.010000"],["2024-07-24T17:04:52.010000"],["2024-07-24T17:04:53.010000"],["2024-07-24T17:04:54.010000"],["2024-07-24T17:04:55.010000"],["2024-07-24T17:04:56.010000"],["2024-07-24T17:04:57.010000"],["2024-07-24T17:04:58.010000"],["2024-07-24T17:04:59.010000"],["2024-07-24T17:05:00.010000"],["2024-07-24T17:05:01.010000"],["2024-07-24T17:05:02.010000"],["2024-07-24T17:05:03.010000"],["2024-07-24T17:05:04.010000"],["2024-07-24T17:05:05.010000"],["2024-07-24T17:05:06.010000"],["2024-07-24T17:05:07.010000"],["2024-07-24T17:05:08.010000"],["2024-07-24T17:05:09.010000"],["2024-07-24T17:05:10.010000"],["2024-07-24T17:05:11.010000"],["2024-07-24T17:05:12.010000"],["2024-07-24T17:05:13.010000"],["2024-07-24T17:05:14.010000"],["2024-07-24T17:05:15.010000"],["2024-07-24T17:05:16.010000"],["2024-07-24T17:05:17.010000"],["2024-07-24T17:05:18.010000"],["2024-07-24T17:05:19.010000"],["2024-07-24T17:05:20.010000"],["2024-07-24T17:05:21.010000"],["2024-07-24T17:05:22.010000"],["2024-07-24T17:05:23.010000"],["2024-07-24T17:05:24.010000"],["2024-07-24T17:05:25.010000"],["2024-07-24T17:05:26.010000"],["2024-07-24T17:05:27.010000"],["2024-07-24T17:05:28.010000"],["2024-07-24T17:05:29.010000"],["2024-07-24T17:05:30.010000"],["2024-07-24T17:05:31.010000"],["2024-07-24T17:05:32.010000"],["2024-07-24T17:05:33.010000"],["2024-07-24T17:05:34.010000"],["2024-07-24T17:05:35.010000"],["2024-07-24T17:05:36.010000"],["2024-07-24T17:05:37.010000"],["2024-07-24T17:05:38.010000"],["2024-07-24T17:05:39.010000"],["2024-07-24T17:05:40.010000"],["2024-07-24T17:05:41.010000"],["2024-07-24T17:05:42.010000"],["2024-07-24T17:05:43.010000"],["2024-07-24T17:05:44.010000"],["2024-07-24T17:05:45.010000"],["2024-07-24T17:05:46.010000"],["2024-07-24T17:05:47.010000"],["2024-07-24T17:05:48.010000"],["2024-07-24T17:05:49.010000"],["2024-07-24T17:05:50.010000"],["2024-07-24T17:05:51.010000"],["2024-07-24T17:05:52.010000"],["2024-07-24T17:05:53.010000"],["2024-07-24T17:05:54.010000"],["2024-07-24T17:05:55.010000"],["2024-07-24T17:05:56.010000"],["2024-07-24T17:05:57.010000"],["2024-07-24T17:05:58.010000"],["2024-07-24T17:05:59.010000"],["2024-07-24T17:06:00.010000"],["2024-07-24T17:06:01.010000"],["2024-07-24T17:06:02.010000"],["2024-07-24T17:06:03.010000"],["2024-07-24T17:06:04.010000"],["2024-07-24T17:06:05.010000"],["2024-07-24T17:06:06.010000"],["2024-07-24T17:06:07.010000"],["2024-07-24T17:06:08.010000"],["2024-07-24T17:06:09.010000"],["2024-07-24T17:06:10.010000"],["2024-07-24T17:06:11.010000"],["2024-07-24T17:06:12.010000"],["2024-07-24T17:06:13.010000"],["2024-07-24T17:06:14.010000"],["2024-07-24T17:06:15.010000"],["2024-07-24T17:06:16.010000"],["2024-07-24T17:06:17.010000"],["2024-07-24T17:06:18.010000"],["2024-07-24T17:06:19.010000"],["2024-07-24T17:06:20.010000"],["2024-07-24T17:06:21.010000"],["2024-07-24T17:06:22.010000"],["2024-07-24T17:06:23.010000"],["2024-07-24T17:06:24.010000"],["2024-07-24T17:06:25.010000"],["2024-07-24T17:06:26.010000"],["2024-07-24T17:06:27.010000"],["2024-07-24T17:06:28.010000"],["2024-07-24T17:06:29.010000"],["2024-07-24T17:06:30.010000"],["2024-07-24T17:06:31.010000"],["2024-07-24T17:06:32.010000"],["2024-07-24T17:06:33.010000"],["2024-07-24T17:06:34.010000"],["2024-07-24T17:06:35.010000"],["2024-07-24T17:06:36.010000"],["2024-07-24T17:06:37.010000"],["2024-07-24T17:06:38.010000"],["2024-07-24T17:06:39.010000"],["2024-07-24T17:06:40.010000"],["2024-07-24T17:06:41.010000"],["2024-07-24T17:06:42.010000"],["2024-07-24T17:06:43.010000"],["2024-07-24T17:06:44.010000"],["2024-07-24T17:06:45.010000"],["2024-07-24T17:06:46.010000"],["2024-07-24T17:06:47.010000"],["2024-07-24T17:06:48.010000"],["2024-07-24T17:06:49.010000"],["2024-07-24T17:06:50.010000"],["2024-07-24T17:06:51.010000"],["2024-07-24T17:06:52.010000"],["2024-07-24T17:06:53.010000"],["2024-07-24T17:06:54.010000"],["2024-07-24T17:06:55.010000"],["2024-07-24T17:06:56.010000"],["2024-07-24T17:06:57.010000"],["2024-07-24T17:06:58.010000"],["2024-07-24T17:06:59.010000"],["2024-07-24T17:07:00.010000"],["2024-07-24T17:07:01.010000"],["2024-07-24T17:07:02.010000"],["2024-07-24T17:07:03.010000"],["2024-07-24T17:07:04.010000"],["2024-07-24T17:07:05.010000"],["2024-07-24T17:07:06.010000"],["2024-07-24T17:07:07.010000"],["2024-07-24T17:07:08.010000"],["2024-07-24T17:07:09.010000"],["2024-07-24T17:07:10.010000"],["2024-07-24T17:07:11.010000"],["2024-07-24T17:07:12.010000"],["2024-07-24T17:07:13.010000"],["2024-07-24T17:07:14.010000"],["2024-07-24T17:07:15.010000"],["2024-07-24T17:07:16.010000"],["2024-07-24T17:07:17.010000"],["2024-07-24T17:07:18.010000"],["2024-07-24T17:07:19.010000"],["2024-07-24T17:07:20.010000"],["2024-07-24T17:07:21.010000"],["2024-07-24T17:07:22.010000"],["2024-07-24T17:07:23.010000"],["2024-07-24T17:07:24.010000"],["2024-07-24T17:07:25.010000"],["2024-07-24T17:07:26.010000"],["2024-07-24T17:07:27.010000"],["2024-07-24T17:07:28.010000"],["2024-07-24T17:07:29.010000"],["2024-07-24T17:07:30.010000"],["2024-07-24T17:07:31.010000"],["2024-07-24T17:07:32.010000"],["2024-07-24T17:07:33.010000"],["2024-07-24T17:07:34.010000"],["2024-07-24T17:07:35.010000"],["2024-07-24T17:07:36.010000"],["2024-07-24T17:07:37.010000"],["2024-07-24T17:07:38.010000"],["2024-07-24T17:07:39.010000"],["2024-07-24T17:07:40.010000"],["2024-07-24T17:07:41.010000"],["2024-07-24T17:07:42.010000"],["2024-07-24T17:07:43.010000"],["2024-07-24T17:07:44.010000"],["2024-07-24T17:07:45.010000"],["2024-07-24T17:07:46.010000"],["2024-07-24T17:07:47.010000"],["2024-07-24T17:07:48.010000"],["2024-07-24T17:07:49.010000"],["2024-07-24T17:07:50.010000"],["2024-07-24T17:07:51.010000"],["2024-07-24T17:07:52.010000"],["2024-07-24T17:07:53.010000"],["2024-07-24T17:07:54.010000"],["2024-07-24T17:07:55.010000"],["2024-07-24T17:07:56.010000"],["2024-07-24T17:07:57.010000"],["2024-07-24T17:07:58.010000"],["2024-07-24T17:07:59.010000"],["2024-07-24T17:08:00.010000"],["2024-07-24T17:08:01.010000"],["2024-07-24T17:08:02.010000"],["2024-07-24T17:08:03.010000"],["2024-07-24T17:08:04.010000"],["2024-07-24T17:08:05.010000"],["2024-07-24T17:08:06.010000"],["2024-07-24T17:08:07.010000"],["2024-07-24T17:08:08.010000"],["2024-07-24T17:08:09.010000"],["2024-07-24T17:08:10.010000"],["2024-07-24T17:08:11.010000"],["2024-07-24T17:08:12.010000"],["2024-07-24T17:08:13.010000"],["2024-07-24T17:08:14.010000"],["2024-07-24T17:08:15.010000"],["2024-07-24T17:08:16.010000"],["2024-07-24T17:08:17.010000"],["2024-07-24T17:08:18.010000"],["2024-07-24T17:08:19.010000"],["2024-07-24T17:08:20.010000"],["2024-07-24T17:08:21.010000"],["2024-07-24T17:08:22.010000"],["2024-07-24T17:08:23.010000"],["2024-07-24T17:08:24.010000"],["2024-07-24T17:08:25.010000"],["2024-07-24T17:08:26.010000"],["2024-07-24T17:08:27.010000"],["2024-07-24T17:08:28.010000"],["2024-07-24T17:08:29.010000"],["2024-07-24T17:08:30.010000"],["2024-07-24T17:08:31.010000"],["2024-07-24T17:08:32.010000"],["2024-07-24T17:08:33.010000"],["2024-07-24T17:08:34.010000"],["2024-07-24T17:08:35.010000"],["2024-07-24T17:08:36.010000"],["2024-07-24T17:08:37.010000"],["2024-07-24T17:08:38.010000"],["2024-07-24T17:08:39.010000"],["2024-07-24T17:08:40.010000"],["2024-07-24T17:08:41.010000"],["2024-07-24T17:08:42.010000"],["2024-07-24T17:08:43.010000"],["2024-07-24T17:08:44.010000"],["2024-07-24T17:08:45.010000"],["2024-07-24T17:08:46.010000"],["2024-07-24T17:08:47.010000"],["2024-07-24T17:08:48.010000"],["2024-07-24T17:08:49.010000"],["2024-07-24T17:08:50.010000"],["2024-07-24T17:08:51.010000"],["2024-07-24T17:08:52.010000"],["2024-07-24T17:08:53.010000"],["2024-07-24T17:08:54.010000"],["2024-07-24T17:08:55.010000"],["2024-07-24T17:08:56.010000"],["2024-07-24T17:08:57.010000"],["2024-07-24T17:08:58.010000"],["2024-07-24T17:08:59.010000"],["2024-07-24T17:09:00.010000"],["2024-07-24T17:09:01.010000"],["2024-07-24T17:09:02.010000"],["2024-07-24T17:09:03.010000"],["2024-07-24T17:09:04.010000"],["2024-07-24T17:09:05.010000"],["2024-07-24T17:09:06.010000"],["2024-07-24T17:09:07.010000"],["2024-07-24T17:09:08.010000"],["2024-07-24T17:09:09.010000"],["2024-07-24T17:09:10.010000"],["2024-07-24T17:09:11.010000"],["2024-07-24T17:09:12.010000"],["2024-07-24T17:09:13.010000"],["2024-07-24T17:09:14.010000"],["2024-07-24T17:09:15.010000"],["2024-07-24T17:09:16.010000"],["2024-07-24T17:09:17.010000"],["2024-07-24T17:09:18.010000"],["2024-07-24T17:09:19.010000"],["2024-07-24T17:09:20.010000"],["2024-07-24T17:09:21.010000"],["2024-07-24T17:09:22.010000"],["2024-07-24T17:09:23.010000"],["2024-07-24T17:09:24.010000"],["2024-07-24T17:09:25.010000"],["2024-07-24T17:09:26.010000"],["2024-07-24T17:09:27.010000"],["2024-07-24T17:09:28.010000"],["2024-07-24T17:09:29.010000"],["2024-07-24T17:09:30.010000"],["2024-07-24T17:09:31.010000"],["2024-07-24T17:09:32.010000"],["2024-07-24T17:09:33.010000"],["2024-07-24T17:09:34.010000"],["2024-07-24T17:09:35.010000"],["2024-07-24T17:09:36.010000"],["2024-07-24T17:09:37.010000"],["2024-07-24T17:09:38.010000"],["2024-07-24T17:09:39.010000"],["2024-07-24T17:09:40.010000"],["2024-07-24T17:09:41.010000"],["2024-07-24T17:09:42.010000"],["2024-07-24T17:09:43.010000"],["2024-07-24T17:09:44.010000"],["2024-07-24T17:09:45.010000"],["2024-07-24T17:09:46.010000"],["2024-07-24T17:09:47.010000"],["2024-07-24T17:09:48.010000"],["2024-07-24T17:09:49.010000"],["2024-07-24T17:09:50.010000"],["2024-07-24T17:09:51.010000"],["2024-07-24T17:09:52.010000"],["2024-07-24T17:09:53.010000"],["2024-07-24T17:09:54.010000"],["2024-07-24T17:09:55.010000"],["2024-07-24T17:09:56.010000"],["2024-07-24T17:09:57.010000"],["2024-07-24T17:09:58.010000"],["2024-07-24T17:09:59.010000"],["2024-07-24T17:10:00.010000"],["2024-07-24T17:10:01.010000"],["2024-07-24T17:10:02.010000"],["2024-07-24T17:10:03.010000"],["2024-07-24T17:10:04.010000"],["2024-07-24T17:10:05.010000"],["2024-07-24T17:10:06.010000"],["2024-07-24T17:10:07.010000"],["2024-07-24T17:10:08.010000"],["2024-07-24T17:10:09.010000"],["2024-07-24T17:10:10.010000"],["2024-07-24T17:10:11.010000"],["2024-07-24T17:10:12.010000"],["2024-07-24T17:10:13.010000"],["2024-07-24T17:10:14.010000"],["2024-07-24T17:10:15.010000"],["2024-07-24T17:10:16.010000"],["2024-07-24T17:10:17.010000"],["2024-07-24T17:10:18.010000"],["2024-07-24T17:10:19.010000"],["2024-07-24T17:10:20.010000"],["2024-07-24T17:10:21.010000"],["2024-07-24T17:10:22.010000"],["2024-07-24T17:10:23.010000"],["2024-07-24T17:10:24.010000"],["2024-07-24T17:10:25.010000"],["2024-07-24T17:10:26.010000"],["2024-07-24T17:10:27.010000"],["2024-07-24T17:10:28.010000"],["2024-07-24T17:10:29.010000"],["2024-07-24T17:10:30.010000"],["2024-07-24T17:10:31.010000"],["2024-07-24T17:10:32.010000"],["2024-07-24T17:10:33.010000"],["2024-07-24T17:10:34.010000"],["2024-07-24T17:10:35.010000"],["2024-07-24T17:10:36.010000"],["2024-07-24T17:10:37.010000"],["2024-07-24T17:10:38.010000"],["2024-07-24T17:10:39.010000"],["2024-07-24T17:10:40.010000"],["2024-07-24T17:10:41.010000"],["2024-07-24T17:10:42.010000"],["2024-07-24T17:10:43.010000"],["2024-07-24T17:10:44.010000"],["2024-07-24T17:10:45.010000"],["2024-07-24T17:10:46.010000"],["2024-07-24T17:10:47.010000"],["2024-07-24T17:10:48.010000"],["2024-07-24T17:10:49.010000"],["2024-07-24T17:10:50.010000"],["2024-07-24T17:10:51.010000"],["2024-07-24T17:10:52.010000"],["2024-07-24T17:10:53.010000"],["2024-07-24T17:10:54.010000"],["2024-07-24T17:10:55.010000"],["2024-07-24T17:10:56.010000"],["2024-07-24T17:10:57.010000"],["2024-07-24T17:10:58.010000"],["2024-07-24T17:10:59.010000"],["2024-07-24T17:11:00.010000"],["2024-07-24T17:11:01.010000"],["2024-07-24T17:11:02.010000"],["2024-07-24T17:11:03.010000"],["2024-07-24T17:11:04.010000"],["2024-07-24T17:11:05.010000"],["2024-07-24T17:11:06.010000"],["2024-07-24T17:11:07.010000"],["2024-07-24T17:11:08.010000"],["2024-07-24T17:11:09.010000"],["2024-07-24T17:11:10.010000"],["2024-07-24T17:11:11.010000"],["2024-07-24T17:11:12.010000"],["2024-07-24T17:11:13.010000"],["2024-07-24T17:11:14.010000"],["2024-07-24T17:11:15.010000"],["2024-07-24T17:11:16.010000"],["2024-07-24T17:11:17.010000"],["2024-07-24T17:11:18.010000"],["2024-07-24T17:11:19.010000"],["2024-07-24T17:11:20.010000"],["2024-07-24T17:11:21.010000"],["2024-07-24T17:11:22.010000"],["2024-07-24T17:11:23.010000"],["2024-07-24T17:11:24.010000"],["2024-07-24T17:11:25.010000"],["2024-07-24T17:11:26.010000"],["2024-07-24T17:11:27.010000"],["2024-07-24T17:11:28.010000"],["2024-07-24T17:11:29.010000"],["2024-07-24T17:11:30.010000"],["2024-07-24T17:11:31.010000"],["2024-07-24T17:11:32.010000"],["2024-07-24T17:11:33.010000"],["2024-07-24T17:11:34.010000"],["2024-07-24T17:11:35.010000"],["2024-07-24T17:11:36.010000"],["2024-07-24T17:11:37.010000"],["2024-07-24T17:11:38.010000"],["2024-07-24T17:11:39.010000"],["2024-07-24T17:11:40.010000"],["2024-07-24T17:11:41.010000"],["2024-07-24T17:11:42.010000"],["2024-07-24T17:11:43.010000"],["2024-07-24T17:11:44.010000"],["2024-07-24T17:11:45.010000"],["2024-07-24T17:11:46.010000"],["2024-07-24T17:11:47.010000"],["2024-07-24T17:11:48.010000"],["2024-07-24T17:11:49.010000"],["2024-07-24T17:11:50.010000"],["2024-07-24T17:11:51.010000"],["2024-07-24T17:11:52.010000"],["2024-07-24T17:11:53.010000"],["2024-07-24T17:11:54.010000"],["2024-07-24T17:11:55.010000"],["2024-07-24T17:11:56.010000"],["2024-07-24T17:11:57.010000"],["2024-07-24T17:11:58.010000"],["2024-07-24T17:11:59.010000"],["2024-07-24T17:12:00.010000"],["2024-07-24T17:12:01.010000"],["2024-07-24T17:12:02.010000"],["2024-07-24T17:12:03.010000"],["2024-07-24T17:12:04.010000"],["2024-07-24T17:12:05.010000"],["2024-07-24T17:12:06.010000"],["2024-07-24T17:12:07.010000"],["2024-07-24T17:12:08.010000"],["2024-07-24T17:12:09.010000"],["2024-07-24T17:12:10.010000"],["2024-07-24T17:12:11.010000"],["2024-07-24T17:12:12.010000"],["2024-07-24T17:12:13.010000"],["2024-07-24T17:12:14.010000"],["2024-07-24T17:12:15.010000"],["2024-07-24T17:12:16.010000"],["2024-07-24T17:12:17.010000"],["2024-07-24T17:12:18.010000"],["2024-07-24T17:12:19.010000"],["2024-07-24T17:12:20.010000"],["2024-07-24T17:12:21.010000"],["2024-07-24T17:12:22.010000"],["2024-07-24T17:12:23.010000"],["2024-07-24T17:12:24.010000"],["2024-07-24T17:12:25.010000"],["2024-07-24T17:12:26.010000"],["2024-07-24T17:12:27.010000"],["2024-07-24T17:12:28.010000"],["2024-07-24T17:12:29.010000"],["2024-07-24T17:12:30.010000"],["2024-07-24T17:12:31.010000"],["2024-07-24T17:12:32.010000"],["2024-07-24T17:12:33.010000"],["2024-07-24T17:12:34.010000"],["2024-07-24T17:12:35.010000"],["2024-07-24T17:12:36.010000"],["2024-07-24T17:12:37.010000"],["2024-07-24T17:12:38.010000"],["2024-07-24T17:12:39.010000"],["2024-07-24T17:12:40.010000"],["2024-07-24T17:12:41.010000"],["2024-07-24T17:12:42.010000"],["2024-07-24T17:12:43.010000"],["2024-07-24T17:12:44.010000"],["2024-07-24T17:12:45.010000"],["2024-07-24T17:12:46.010000"],["2024-07-24T17:12:47.010000"],["2024-07-24T17:12:48.010000"],["2024-07-24T17:12:49.010000"],["2024-07-24T17:12:50.010000"],["2024-07-24T17:12:51.010000"],["2024-07-24T17:12:52.010000"],["2024-07-24T17:12:53.010000"],["2024-07-24T17:12:54.010000"],["2024-07-24T17:12:55.010000"],["2024-07-24T17:12:56.010000"],["2024-07-24T17:12:57.010000"],["2024-07-24T17:12:58.010000"],["2024-07-24T17:12:59.010000"],["2024-07-24T17:13:00.010000"],["2024-07-24T17:13:01.010000"],["2024-07-24T17:13:02.010000"],["2024-07-24T17:13:03.010000"],["2024-07-24T17:13:04.010000"],["2024-07-24T17:13:05.010000"],["2024-07-24T17:13:06.010000"],["2024-07-24T17:13:07.010000"],["2024-07-24T17:13:08.010000"],["2024-07-24T17:13:09.010000"],["2024-07-24T17:13:10.010000"],["2024-07-24T17:13:11.010000"],["2024-07-24T17:13:12.010000"],["2024-07-24T17:13:13.010000"],["2024-07-24T17:13:14.010000"],["2024-07-24T17:13:15.010000"],["2024-07-24T17:13:16.010000"],["2024-07-24T17:13:17.010000"],["2024-07-24T17:13:18.010000"],["2024-07-24T17:13:19.010000"],["2024-07-24T17:13:20.010000"],["2024-07-24T17:13:21.010000"],["2024-07-24T17:13:22.010000"],["2024-07-24T17:13:23.010000"],["2024-07-24T17:13:24.010000"],["2024-07-24T17:13:25.010000"],["2024-07-24T17:13:26.010000"],["2024-07-24T17:13:27.010000"],["2024-07-24T17:13:28.010000"],["2024-07-24T17:13:29.010000"],["2024-07-24T17:13:30.010000"],["2024-07-24T17:13:31.010000"],["2024-07-24T17:13:32.010000"],["2024-07-24T17:13:33.010000"],["2024-07-24T17:13:34.010000"],["2024-07-24T17:13:35.010000"],["2024-07-24T17:13:36.010000"],["2024-07-24T17:13:37.010000"],["2024-07-24T17:13:38.010000"],["2024-07-24T17:13:39.010000"],["2024-07-24T17:13:40.010000"],["2024-07-24T17:13:41.010000"],["2024-07-24T17:13:42.010000"],["2024-07-24T17:13:43.010000"],["2024-07-24T17:13:44.010000"],["2024-07-24T17:13:45.010000"],["2024-07-24T17:13:46.010000"],["2024-07-24T17:13:47.010000"],["2024-07-24T17:13:48.010000"],["2024-07-24T17:13:49.010000"],["2024-07-24T17:13:50.010000"],["2024-07-24T17:13:51.010000"],["2024-07-24T17:13:52.010000"],["2024-07-24T17:13:53.010000"],["2024-07-24T17:13:54.010000"],["2024-07-24T17:13:55.010000"],["2024-07-24T17:13:56.010000"],["2024-07-24T17:13:57.010000"],["2024-07-24T17:13:58.010000"],["2024-07-24T17:13:59.010000"],["2024-07-24T17:14:00.010000"],["2024-07-24T17:14:01.010000"],["2024-07-24T17:14:02.010000"],["2024-07-24T17:14:03.010000"],["2024-07-24T17:14:04.010000"],["2024-07-24T17:14:05.010000"],["2024-07-24T17:14:06.010000"],["2024-07-24T17:14:07.010000"],["2024-07-24T17:14:08.010000"],["2024-07-24T17:14:09.010000"],["2024-07-24T17:14:10.010000"],["2024-07-24T17:14:11.010000"],["2024-07-24T17:14:12.010000"],["2024-07-24T17:14:13.010000"],["2024-07-24T17:14:14.010000"],["2024-07-24T17:14:15.010000"],["2024-07-24T17:14:16.010000"],["2024-07-24T17:14:17.010000"],["2024-07-24T17:14:18.010000"],["2024-07-24T17:14:19.010000"],["2024-07-24T17:14:20.010000"],["2024-07-24T17:14:21.010000"],["2024-07-24T17:14:22.010000"],["2024-07-24T17:14:23.010000"],["2024-07-24T17:14:24.010000"],["2024-07-24T17:14:25.010000"],["2024-07-24T17:14:26.010000"],["2024-07-24T17:14:27.010000"],["2024-07-24T17:14:28.010000"],["2024-07-24T17:14:29.010000"],["2024-07-24T17:14:30.010000"],["2024-07-24T17:14:31.010000"],["2024-07-24T17:14:32.010000"],["2024-07-24T17:14:33.010000"],["2024-07-24T17:14:34.010000"],["2024-07-24T17:14:35.010000"],["2024-07-24T17:14:36.010000"],["2024-07-24T17:14:37.010000"],["2024-07-24T17:14:38.010000"],["2024-07-24T17:14:39.010000"],["2024-07-24T17:14:40.010000"],["2024-07-24T17:14:41.010000"],["2024-07-24T17:14:42.010000"],["2024-07-24T17:14:43.010000"],["2024-07-24T17:14:44.010000"],["2024-07-24T17:14:45.010000"],["2024-07-24T17:14:46.010000"],["2024-07-24T17:14:47.010000"],["2024-07-24T17:14:48.010000"],["2024-07-24T17:14:49.010000"],["2024-07-24T17:14:50.010000"],["2024-07-24T17:14:51.010000"],["2024-07-24T17:14:52.010000"],["2024-07-24T17:14:53.010000"],["2024-07-24T17:14:54.010000"],["2024-07-24T17:14:55.010000"],["2024-07-24T17:14:56.010000"],["2024-07-24T17:14:57.010000"],["2024-07-24T17:14:58.010000"],["2024-07-24T17:14:59.010000"],["2024-07-24T17:15:00.010000"],["2024-07-24T17:15:01.010000"],["2024-07-24T17:15:02.010000"],["2024-07-24T17:15:03.010000"],["2024-07-24T17:15:04.010000"],["2024-07-24T17:15:05.010000"],["2024-07-24T17:15:06.010000"],["2024-07-24T17:15:07.010000"],["2024-07-24T17:15:08.010000"],["2024-07-24T17:15:09.010000"],["2024-07-24T17:15:10.010000"],["2024-07-24T17:15:11.010000"],["2024-07-24T17:15:12.010000"],["2024-07-24T17:15:13.010000"],["2024-07-24T17:15:14.010000"],["2024-07-24T17:15:15.010000"],["2024-07-24T17:15:16.010000"],["2024-07-24T17:15:17.010000"],["2024-07-24T17:15:18.010000"],["2024-07-24T17:15:19.010000"],["2024-07-24T17:15:20.010000"],["2024-07-24T17:15:21.010000"],["2024-07-24T17:15:22.010000"],["2024-07-24T17:15:23.010000"],["2024-07-24T17:15:24.010000"],["2024-07-24T17:15:25.010000"],["2024-07-24T17:15:26.010000"],["2024-07-24T17:15:27.010000"],["2024-07-24T17:15:28.010000"],["2024-07-24T17:15:29.010000"],["2024-07-24T17:15:30.010000"],["2024-07-24T17:15:31.010000"],["2024-07-24T17:15:32.010000"],["2024-07-24T17:15:33.010000"],["2024-07-24T17:15:34.010000"],["2024-07-24T17:15:35.010000"],["2024-07-24T17:15:36.010000"],["2024-07-24T17:15:37.010000"],["2024-07-24T17:15:38.010000"],["2024-07-24T17:15:39.010000"],["2024-07-24T17:15:40.010000"],["2024-07-24T17:15:41.010000"],["2024-07-24T17:15:42.010000"],["2024-07-24T17:15:43.010000"],["2024-07-24T17:15:44.010000"],["2024-07-24T17:15:45.010000"],["2024-07-24T17:15:46.010000"],["2024-07-24T17:15:47.010000"],["2024-07-24T17:15:48.010000"],["2024-07-24T17:15:49.010000"],["2024-07-24T17:15:50.010000"],["2024-07-24T17:15:51.010000"],["2024-07-24T17:15:52.010000"],["2024-07-24T17:15:53.010000"],["2024-07-24T17:15:54.010000"],["2024-07-24T17:15:55.010000"],["2024-07-24T17:15:56.010000"],["2024-07-24T17:15:57.010000"],["2024-07-24T17:15:58.010000"],["2024-07-24T17:15:59.010000"],["2024-07-24T17:16:00.010000"],["2024-07-24T17:16:01.010000"],["2024-07-24T17:16:02.010000"],["2024-07-24T17:16:03.010000"],["2024-07-24T17:16:04.010000"],["2024-07-24T17:16:05.010000"],["2024-07-24T17:16:06.010000"],["2024-07-24T17:16:07.010000"],["2024-07-24T17:16:08.010000"],["2024-07-24T17:16:09.010000"],["2024-07-24T17:16:10.010000"],["2024-07-24T17:16:11.010000"],["2024-07-24T17:16:12.010000"],["2024-07-24T17:16:13.010000"],["2024-07-24T17:16:14.010000"],["2024-07-24T17:16:15.010000"],["2024-07-24T17:16:16.010000"],["2024-07-24T17:16:17.010000"],["2024-07-24T17:16:18.010000"],["2024-07-24T17:16:19.010000"],["2024-07-24T17:16:20.010000"],["2024-07-24T17:16:21.010000"],["2024-07-24T17:16:22.010000"],["2024-07-24T17:16:23.010000"],["2024-07-24T17:16:24.010000"],["2024-07-24T17:16:25.010000"],["2024-07-24T17:16:26.010000"],["2024-07-24T17:16:27.010000"],["2024-07-24T17:16:28.010000"],["2024-07-24T17:16:29.010000"],["2024-07-24T17:16:30.010000"],["2024-07-24T17:16:31.010000"],["2024-07-24T17:16:32.010000"],["2024-07-24T17:16:33.010000"],["2024-07-24T17:16:34.010000"],["2024-07-24T17:16:35.010000"],["2024-07-24T17:16:36.010000"],["2024-07-24T17:16:37.010000"],["2024-07-24T17:16:38.010000"],["2024-07-24T17:16:39.010000"],["2024-07-24T17:16:40.010000"],["2024-07-24T17:16:41.010000"],["2024-07-24T17:16:42.010000"],["2024-07-24T17:16:43.010000"],["2024-07-24T17:16:44.010000"],["2024-07-24T17:16:45.010000"],["2024-07-24T17:16:46.010000"],["2024-07-24T17:16:47.010000"],["2024-07-24T17:16:48.010000"],["2024-07-24T17:16:49.010000"],["2024-07-24T17:16:50.010000"],["2024-07-24T17:16:51.010000"],["2024-07-24T17:16:52.010000"],["2024-07-24T17:16:53.010000"],["2024-07-24T17:16:54.010000"],["2024-07-24T17:16:55.010000"],["2024-07-24T17:16:56.010000"],["2024-07-24T17:16:57.010000"],["2024-07-24T17:16:58.010000"],["2024-07-24T17:16:59.010000"],["2024-07-24T17:17:00.010000"],["2024-07-24T17:17:01.010000"],["2024-07-24T17:17:02.010000"],["2024-07-24T17:17:03.010000"],["2024-07-24T17:17:04.010000"],["2024-07-24T17:17:05.010000"],["2024-07-24T17:17:06.010000"],["2024-07-24T17:17:07.010000"],["2024-07-24T17:17:08.010000"],["2024-07-24T17:17:09.010000"],["2024-07-24T17:17:10.010000"],["2024-07-24T17:17:11.010000"],["2024-07-24T17:17:12.010000"],["2024-07-24T17:17:13.010000"],["2024-07-24T17:17:14.010000"],["2024-07-24T17:17:15.010000"],["2024-07-24T17:17:16.010000"],["2024-07-24T17:17:17.010000"],["2024-07-24T17:17:18.010000"],["2024-07-24T17:17:19.010000"],["2024-07-24T17:17:20.010000"],["2024-07-24T17:17:21.010000"],["2024-07-24T17:17:22.010000"],["2024-07-24T17:17:23.010000"],["2024-07-24T17:17:24.010000"],["2024-07-24T17:17:25.010000"],["2024-07-24T17:17:26.010000"],["2024-07-24T17:17:27.010000"],["2024-07-24T17:17:28.010000"],["2024-07-24T17:17:29.010000"],["2024-07-24T17:17:30.010000"],["2024-07-24T17:17:31.010000"],["2024-07-24T17:17:32.010000"],["2024-07-24T17:17:33.010000"],["2024-07-24T17:17:34.010000"],["2024-07-24T17:17:35.010000"],["2024-07-24T17:17:36.010000"],["2024-07-24T17:17:37.010000"],["2024-07-24T17:17:38.010000"],["2024-07-24T17:17:39.010000"],["2024-07-24T17:17:40.010000"],["2024-07-24T17:17:41.010000"],["2024-07-24T17:17:42.010000"],["2024-07-24T17:17:43.010000"],["2024-07-24T17:17:44.010000"],["2024-07-24T17:17:45.010000"],["2024-07-24T17:17:46.010000"],["2024-07-24T17:17:47.010000"],["2024-07-24T17:17:48.010000"],["2024-07-24T17:17:49.010000"],["2024-07-24T17:17:50.010000"],["2024-07-24T17:17:51.010000"],["2024-07-24T17:17:52.010000"],["2024-07-24T17:17:53.010000"],["2024-07-24T17:17:54.010000"],["2024-07-24T17:17:55.010000"],["2024-07-24T17:17:56.010000"],["2024-07-24T17:17:57.010000"],["2024-07-24T17:17:58.010000"],["2024-07-24T17:17:59.010000"],["2024-07-24T17:18:00.010000"],["2024-07-24T17:18:01.010000"],["2024-07-24T17:18:02.010000"],["2024-07-24T17:18:03.010000"],["2024-07-24T17:18:04.010000"],["2024-07-24T17:18:05.010000"],["2024-07-24T17:18:06.010000"],["2024-07-24T17:18:07.010000"],["2024-07-24T17:18:08.010000"],["2024-07-24T17:18:09.010000"],["2024-07-24T17:18:10.010000"],["2024-07-24T17:18:11.010000"],["2024-07-24T17:18:12.010000"],["2024-07-24T17:18:13.010000"],["2024-07-24T17:18:14.010000"],["2024-07-24T17:18:15.010000"],["2024-07-24T17:18:16.010000"],["2024-07-24T17:18:17.010000"],["2024-07-24T17:18:18.010000"],["2024-07-24T17:18:19.010000"],["2024-07-24T17:18:20.010000"],["2024-07-24T17:18:21.010000"],["2024-07-24T17:18:22.010000"],["2024-07-24T17:18:23.010000"],["2024-07-24T17:18:24.010000"],["2024-07-24T17:18:25.010000"],["2024-07-24T17:18:26.010000"],["2024-07-24T17:18:27.010000"],["2024-07-24T17:18:28.010000"],["2024-07-24T17:18:29.010000"],["2024-07-24T17:18:30.010000"],["2024-07-24T17:18:31.010000"],["2024-07-24T17:18:32.010000"],["2024-07-24T17:18:33.010000"],["2024-07-24T17:18:34.010000"],["2024-07-24T17:18:35.010000"],["2024-07-24T17:18:36.010000"],["2024-07-24T17:18:37.010000"],["2024-07-24T17:18:38.010000"],["2024-07-24T17:18:39.010000"],["2024-07-24T17:18:40.010000"],["2024-07-24T17:18:41.010000"],["2024-07-24T17:18:42.010000"],["2024-07-24T17:18:43.010000"],["2024-07-24T17:18:44.010000"],["2024-07-24T17:18:45.010000"],["2024-07-24T17:18:46.010000"],["2024-07-24T17:18:47.010000"],["2024-07-24T17:18:48.010000"],["2024-07-24T17:18:49.010000"],["2024-07-24T17:18:50.010000"],["2024-07-24T17:18:51.010000"],["2024-07-24T17:18:52.010000"],["2024-07-24T17:18:53.010000"],["2024-07-24T17:18:54.010000"],["2024-07-24T17:18:55.010000"],["2024-07-24T17:18:56.010000"],["2024-07-24T17:18:57.010000"],["2024-07-24T17:18:58.010000"],["2024-07-24T17:18:59.010000"],["2024-07-24T17:19:00.010000"],["2024-07-24T17:19:01.010000"],["2024-07-24T17:19:02.010000"],["2024-07-24T17:19:03.010000"],["2024-07-24T17:19:04.010000"],["2024-07-24T17:19:05.010000"],["2024-07-24T17:19:06.010000"],["2024-07-24T17:19:07.010000"],["2024-07-24T17:19:08.010000"],["2024-07-24T17:19:09.010000"],["2024-07-24T17:19:10.010000"],["2024-07-24T17:19:11.010000"],["2024-07-24T17:19:12.010000"],["2024-07-24T17:19:13.010000"],["2024-07-24T17:19:14.010000"],["2024-07-24T17:19:15.010000"],["2024-07-24T17:19:16.010000"],["2024-07-24T17:19:17.010000"],["2024-07-24T17:19:18.010000"],["2024-07-24T17:19:19.010000"],["2024-07-24T17:19:20.010000"],["2024-07-24T17:19:21.010000"],["2024-07-24T17:19:22.010000"],["2024-07-24T17:19:23.010000"],["2024-07-24T17:19:24.010000"],["2024-07-24T17:19:25.010000"],["2024-07-24T17:19:26.010000"],["2024-07-24T17:19:27.010000"],["2024-07-24T17:19:28.010000"],["2024-07-24T17:19:29.010000"],["2024-07-24T17:19:30.010000"],["2024-07-24T17:19:31.010000"],["2024-07-24T17:19:32.010000"],["2024-07-24T17:19:33.010000"],["2024-07-24T17:19:34.010000"],["2024-07-24T17:19:35.010000"],["2024-07-24T17:19:36.010000"],["2024-07-24T17:19:37.010000"],["2024-07-24T17:19:38.010000"],["2024-07-24T17:19:39.010000"],["2024-07-24T17:19:40.010000"],["2024-07-24T17:19:41.010000"],["2024-07-24T17:19:42.010000"],["2024-07-24T17:19:43.010000"],["2024-07-24T17:19:44.010000"],["2024-07-24T17:19:45.010000"],["2024-07-24T17:19:46.010000"],["2024-07-24T17:19:47.010000"],["2024-07-24T17:19:48.010000"],["2024-07-24T17:19:49.010000"],["2024-07-24T17:19:50.010000"],["2024-07-24T17:19:51.010000"],["2024-07-24T17:19:52.010000"],["2024-07-24T17:19:53.010000"],["2024-07-24T17:19:54.010000"],["2024-07-24T17:19:55.010000"],["2024-07-24T17:19:56.010000"],["2024-07-24T17:19:57.010000"],["2024-07-24T17:19:58.010000"],["2024-07-24T17:19:59.010000"],["2024-07-24T17:20:00.010000"],["2024-07-24T17:20:01.010000"],["2024-07-24T17:20:02.010000"],["2024-07-24T17:20:03.010000"],["2024-07-24T17:20:04.010000"],["2024-07-24T17:20:05.010000"],["2024-07-24T17:20:06.010000"],["2024-07-24T17:20:07.010000"],["2024-07-24T17:20:08.010000"],["2024-07-24T17:20:09.010000"],["2024-07-24T17:20:10.010000"],["2024-07-24T17:20:11.010000"],["2024-07-24T17:20:12.010000"],["2024-07-24T17:20:13.010000"],["2024-07-24T17:20:14.010000"],["2024-07-24T17:20:15.010000"],["2024-07-24T17:20:16.010000"],["2024-07-24T17:20:17.010000"],["2024-07-24T17:20:18.010000"],["2024-07-24T17:20:19.010000"],["2024-07-24T17:20:20.010000"],["2024-07-24T17:20:21.010000"],["2024-07-24T17:20:22.010000"],["2024-07-24T17:20:23.010000"],["2024-07-24T17:20:24.010000"],["2024-07-24T17:20:25.010000"],["2024-07-24T17:20:26.010000"],["2024-07-24T17:20:27.010000"],["2024-07-24T17:20:28.010000"],["2024-07-24T17:20:29.010000"],["2024-07-24T17:20:30.010000"],["2024-07-24T17:20:31.010000"],["2024-07-24T17:20:32.010000"],["2024-07-24T17:20:33.010000"],["2024-07-24T17:20:34.010000"],["2024-07-24T17:20:35.010000"],["2024-07-24T17:20:36.010000"],["2024-07-24T17:20:37.010000"],["2024-07-24T17:20:38.010000"],["2024-07-24T17:20:39.010000"],["2024-07-24T17:20:40.010000"],["2024-07-24T17:20:41.010000"],["2024-07-24T17:20:42.010000"],["2024-07-24T17:20:43.010000"],["2024-07-24T17:20:44.010000"],["2024-07-24T17:20:45.010000"],["2024-07-24T17:20:46.010000"],["2024-07-24T17:20:47.010000"],["2024-07-24T17:20:48.010000"],["2024-07-24T17:20:49.010000"],["2024-07-24T17:20:50.010000"],["2024-07-24T17:20:51.010000"],["2024-07-24T17:20:52.010000"],["2024-07-24T17:20:53.010000"],["2024-07-24T17:20:54.010000"],["2024-07-24T17:20:55.010000"],["2024-07-24T17:20:56.010000"],["2024-07-24T17:20:57.010000"],["2024-07-24T17:20:58.010000"],["2024-07-24T17:20:59.010000"],["2024-07-24T17:21:00.010000"],["2024-07-24T17:21:01.010000"],["2024-07-24T17:21:02.010000"],["2024-07-24T17:21:03.010000"],["2024-07-24T17:21:04.010000"],["2024-07-24T17:21:05.010000"],["2024-07-24T17:21:06.010000"],["2024-07-24T17:21:07.010000"],["2024-07-24T17:21:08.010000"],["2024-07-24T17:21:09.010000"],["2024-07-24T17:21:10.010000"],["2024-07-24T17:21:11.010000"],["2024-07-24T17:21:12.010000"],["2024-07-24T17:21:13.010000"],["2024-07-24T17:21:14.010000"],["2024-07-24T17:21:15.010000"],["2024-07-24T17:21:16.010000"],["2024-07-24T17:21:17.010000"],["2024-07-24T17:21:18.010000"],["2024-07-24T17:21:19.010000"],["2024-07-24T17:21:20.010000"],["2024-07-24T17:21:21.010000"],["2024-07-24T17:21:22.010000"],["2024-07-24T17:21:23.010000"],["2024-07-24T17:21:24.010000"],["2024-07-24T17:21:25.010000"],["2024-07-24T17:21:26.010000"],["2024-07-24T17:21:27.010000"],["2024-07-24T17:21:28.010000"],["2024-07-24T17:21:29.010000"],["2024-07-24T17:21:30.010000"],["2024-07-24T17:21:31.010000"],["2024-07-24T17:21:32.010000"],["2024-07-24T17:21:33.010000"],["2024-07-24T17:21:34.010000"],["2024-07-24T17:21:35.010000"],["2024-07-24T17:21:36.010000"],["2024-07-24T17:21:37.010000"],["2024-07-24T17:21:38.010000"],["2024-07-24T17:21:39.010000"],["2024-07-24T17:21:40.010000"],["2024-07-24T17:21:41.010000"],["2024-07-24T17:21:42.010000"],["2024-07-24T17:21:43.010000"],["2024-07-24T17:21:44.010000"],["2024-07-24T17:21:45.010000"],["2024-07-24T17:21:46.010000"],["2024-07-24T17:21:47.010000"],["2024-07-24T17:21:48.010000"],["2024-07-24T17:21:49.010000"],["2024-07-24T17:21:50.010000"],["2024-07-24T17:21:51.010000"],["2024-07-24T17:21:52.010000"],["2024-07-24T17:21:53.010000"],["2024-07-24T17:21:54.010000"],["2024-07-24T17:21:55.010000"],["2024-07-24T17:21:56.010000"],["2024-07-24T17:21:57.010000"],["2024-07-24T17:21:58.010000"],["2024-07-24T17:21:59.010000"],["2024-07-24T17:22:00.010000"],["2024-07-24T17:22:01.010000"],["2024-07-24T17:22:02.010000"],["2024-07-24T17:22:03.010000"],["2024-07-24T17:22:04.010000"],["2024-07-24T17:22:05.010000"],["2024-07-24T17:22:06.010000"],["2024-07-24T17:22:07.010000"],["2024-07-24T17:22:08.010000"],["2024-07-24T17:22:09.010000"],["2024-07-24T17:22:10.010000"],["2024-07-24T17:22:11.010000"],["2024-07-24T17:22:12.010000"],["2024-07-24T17:22:13.010000"],["2024-07-24T17:22:14.010000"],["2024-07-24T17:22:15.010000"],["2024-07-24T17:22:16.010000"],["2024-07-24T17:22:17.010000"],["2024-07-24T17:22:18.010000"],["2024-07-24T17:22:19.010000"],["2024-07-24T17:22:20.010000"],["2024-07-24T17:22:21.010000"],["2024-07-24T17:22:22.010000"],["2024-07-24T17:22:23.010000"],["2024-07-24T17:22:24.010000"],["2024-07-24T17:22:25.010000"],["2024-07-24T17:22:26.010000"],["2024-07-24T17:22:27.010000"],["2024-07-24T17:22:28.010000"],["2024-07-24T17:22:29.010000"],["2024-07-24T17:22:30.010000"],["2024-07-24T17:22:31.010000"],["2024-07-24T17:22:32.010000"],["2024-07-24T17:22:33.010000"],["2024-07-24T17:22:34.010000"],["2024-07-24T17:22:35.010000"],["2024-07-24T17:22:36.010000"],["2024-07-24T17:22:37.010000"],["2024-07-24T17:22:38.010000"],["2024-07-24T17:22:39.010000"],["2024-07-24T17:22:40.010000"],["2024-07-24T17:22:41.010000"],["2024-07-24T17:22:42.010000"],["2024-07-24T17:22:43.010000"],["2024-07-24T17:22:44.010000"],["2024-07-24T17:22:45.010000"],["2024-07-24T17:22:46.010000"],["2024-07-24T17:22:47.010000"],["2024-07-24T17:22:48.010000"],["2024-07-24T17:22:49.010000"],["2024-07-24T17:22:50.010000"],["2024-07-24T17:22:51.010000"],["2024-07-24T17:22:52.010000"],["2024-07-24T17:22:53.010000"],["2024-07-24T17:22:54.010000"],["2024-07-24T17:22:55.010000"],["2024-07-24T17:22:56.010000"],["2024-07-24T17:22:57.010000"],["2024-07-24T17:22:58.010000"],["2024-07-24T17:22:59.010000"],["2024-07-24T17:23:00.010000"],["2024-07-24T17:23:01.010000"],["2024-07-24T17:23:02.010000"],["2024-07-24T17:23:03.010000"],["2024-07-24T17:23:04.010000"],["2024-07-24T17:23:05.010000"],["2024-07-24T17:23:06.010000"],["2024-07-24T17:23:07.010000"],["2024-07-24T17:23:08.010000"],["2024-07-24T17:23:09.010000"],["2024-07-24T17:23:10.010000"],["2024-07-24T17:23:11.010000"],["2024-07-24T17:23:12.010000"],["2024-07-24T17:23:13.010000"],["2024-07-24T17:23:14.010000"],["2024-07-24T17:23:15.010000"],["2024-07-24T17:23:16.010000"],["2024-07-24T17:23:17.010000"],["2024-07-24T17:23:18.010000"],["2024-07-24T17:23:19.010000"],["2024-07-24T17:23:20.010000"],["2024-07-24T17:23:21.010000"],["2024-07-24T17:23:22.010000"],["2024-07-24T17:23:23.010000"],["2024-07-24T17:23:24.010000"],["2024-07-24T17:23:25.010000"],["2024-07-24T17:23:26.010000"],["2024-07-24T17:23:27.010000"],["2024-07-24T17:23:28.010000"],["2024-07-24T17:23:29.010000"],["2024-07-24T17:23:30.010000"],["2024-07-24T17:23:31.010000"],["2024-07-24T17:23:32.010000"],["2024-07-24T17:23:33.010000"],["2024-07-24T17:23:34.010000"],["2024-07-24T17:23:35.010000"],["2024-07-24T17:23:36.010000"],["2024-07-24T17:23:37.010000"],["2024-07-24T17:23:38.010000"],["2024-07-24T17:23:39.010000"],["2024-07-24T17:23:40.010000"],["2024-07-24T17:23:41.010000"],["2024-07-24T17:23:42.010000"],["2024-07-24T17:23:43.010000"],["2024-07-24T17:23:44.010000"],["2024-07-24T17:23:45.010000"],["2024-07-24T17:23:46.010000"],["2024-07-24T17:23:47.010000"],["2024-07-24T17:23:48.010000"],["2024-07-24T17:23:49.010000"],["2024-07-24T17:23:50.010000"],["2024-07-24T17:23:51.010000"],["2024-07-24T17:23:52.010000"],["2024-07-24T17:23:53.010000"],["2024-07-24T17:23:54.010000"],["2024-07-24T17:23:55.010000"],["2024-07-24T17:23:56.010000"],["2024-07-24T17:23:57.010000"],["2024-07-24T17:23:58.010000"],["2024-07-24T17:23:59.010000"],["2024-07-24T17:24:00.010000"],["2024-07-24T17:24:01.010000"],["2024-07-24T17:24:02.010000"],["2024-07-24T17:24:03.010000"],["2024-07-24T17:24:04.010000"],["2024-07-24T17:24:05.010000"],["2024-07-24T17:24:06.010000"],["2024-07-24T17:24:07.010000"],["2024-07-24T17:24:08.010000"],["2024-07-24T17:24:09.010000"],["2024-07-24T17:24:10.010000"],["2024-07-24T17:24:11.010000"],["2024-07-24T17:24:12.010000"],["2024-07-24T17:24:13.010000"],["2024-07-24T17:24:14.010000"],["2024-07-24T17:24:15.010000"],["2024-07-24T17:24:16.010000"],["2024-07-24T17:24:17.010000"],["2024-07-24T17:24:18.010000"],["2024-07-24T17:24:19.010000"],["2024-07-24T17:24:20.010000"],["2024-07-24T17:24:21.010000"],["2024-07-24T17:24:22.010000"],["2024-07-24T17:24:23.010000"],["2024-07-24T17:24:24.010000"],["2024-07-24T17:24:25.010000"],["2024-07-24T17:24:26.010000"],["2024-07-24T17:24:27.010000"],["2024-07-24T17:24:28.010000"],["2024-07-24T17:24:29.010000"],["2024-07-24T17:24:30.010000"],["2024-07-24T17:24:31.010000"],["2024-07-24T17:24:32.010000"],["2024-07-24T17:24:33.010000"],["2024-07-24T17:24:34.010000"],["2024-07-24T17:24:35.010000"],["2024-07-24T17:24:36.010000"],["2024-07-24T17:24:37.010000"],["2024-07-24T17:24:38.010000"],["2024-07-24T17:24:39.010000"],["2024-07-24T17:24:40.010000"],["2024-07-24T17:24:41.010000"],["2024-07-24T17:24:42.010000"],["2024-07-24T17:24:43.010000"],["2024-07-24T17:24:44.010000"],["2024-07-24T17:24:45.010000"],["2024-07-24T17:24:46.010000"],["2024-07-24T17:24:47.010000"],["2024-07-24T17:24:48.010000"],["2024-07-24T17:24:49.010000"],["2024-07-24T17:24:50.010000"],["2024-07-24T17:24:51.010000"],["2024-07-24T17:24:52.010000"],["2024-07-24T17:24:53.010000"],["2024-07-24T17:24:54.010000"],["2024-07-24T17:24:55.010000"],["2024-07-24T17:24:56.010000"],["2024-07-24T17:24:57.010000"],["2024-07-24T17:24:58.010000"],["2024-07-24T17:24:59.010000"],["2024-07-24T17:25:00.010000"],["2024-07-24T17:25:01.010000"],["2024-07-24T17:25:02.010000"],["2024-07-24T17:25:03.010000"],["2024-07-24T17:25:04.010000"],["2024-07-24T17:25:05.010000"],["2024-07-24T17:25:06.010000"],["2024-07-24T17:25:07.010000"],["2024-07-24T17:25:08.010000"],["2024-07-24T17:25:09.010000"],["2024-07-24T17:25:10.010000"],["2024-07-24T17:25:11.010000"],["2024-07-24T17:25:12.010000"],["2024-07-24T17:25:13.010000"],["2024-07-24T17:25:14.010000"],["2024-07-24T17:25:15.010000"],["2024-07-24T17:25:16.010000"],["2024-07-24T17:25:17.010000"],["2024-07-24T17:25:18.010000"],["2024-07-24T17:25:19.010000"],["2024-07-24T17:25:20.010000"],["2024-07-24T17:25:21.010000"],["2024-07-24T17:25:22.010000"],["2024-07-24T17:25:23.010000"],["2024-07-24T17:25:24.010000"],["2024-07-24T17:25:25.010000"],["2024-07-24T17:25:26.010000"],["2024-07-24T17:25:27.010000"],["2024-07-24T17:25:28.010000"],["2024-07-24T17:25:29.010000"],["2024-07-24T17:25:30.010000"],["2024-07-24T17:25:31.010000"],["2024-07-24T17:25:32.010000"],["2024-07-24T17:25:33.010000"],["2024-07-24T17:25:34.010000"],["2024-07-24T17:25:35.010000"],["2024-07-24T17:25:36.010000"],["2024-07-24T17:25:37.010000"],["2024-07-24T17:25:38.010000"],["2024-07-24T17:25:39.010000"],["2024-07-24T17:25:40.010000"],["2024-07-24T17:25:41.010000"],["2024-07-24T17:25:42.010000"],["2024-07-24T17:25:43.010000"],["2024-07-24T17:25:44.010000"],["2024-07-24T17:25:45.010000"],["2024-07-24T17:25:46.010000"],["2024-07-24T17:25:47.010000"],["2024-07-24T17:25:48.010000"],["2024-07-24T17:25:49.010000"],["2024-07-24T17:25:50.010000"],["2024-07-24T17:25:51.010000"],["2024-07-24T17:25:52.010000"],["2024-07-24T17:25:53.010000"],["2024-07-24T17:25:54.010000"],["2024-07-24T17:25:55.010000"],["2024-07-24T17:25:56.010000"],["2024-07-24T17:25:57.010000"],["2024-07-24T17:25:58.010000"],["2024-07-24T17:25:59.010000"],["2024-07-24T17:26:00.010000"],["2024-07-24T17:26:01.010000"],["2024-07-24T17:26:02.010000"],["2024-07-24T17:26:03.010000"],["2024-07-24T17:26:04.010000"],["2024-07-24T17:26:05.010000"],["2024-07-24T17:26:06.010000"],["2024-07-24T17:26:07.010000"],["2024-07-24T17:26:08.010000"],["2024-07-24T17:26:09.010000"],["2024-07-24T17:26:10.010000"],["2024-07-24T17:26:11.010000"],["2024-07-24T17:26:12.010000"],["2024-07-24T17:26:13.010000"],["2024-07-24T17:26:14.010000"],["2024-07-24T17:26:15.010000"],["2024-07-24T17:26:16.010000"],["2024-07-24T17:26:17.010000"],["2024-07-24T17:26:18.010000"],["2024-07-24T17:26:19.010000"],["2024-07-24T17:26:20.010000"],["2024-07-24T17:26:21.010000"],["2024-07-24T17:26:22.010000"],["2024-07-24T17:26:23.010000"],["2024-07-24T17:26:24.010000"],["2024-07-24T17:26:25.010000"],["2024-07-24T17:26:26.010000"],["2024-07-24T17:26:27.010000"],["2024-07-24T17:26:28.010000"],["2024-07-24T17:26:29.010000"],["2024-07-24T17:26:30.010000"],["2024-07-24T17:26:31.010000"],["2024-07-24T17:26:32.010000"],["2024-07-24T17:26:33.010000"],["2024-07-24T17:26:34.010000"],["2024-07-24T17:26:35.010000"],["2024-07-24T17:26:36.010000"],["2024-07-24T17:26:37.010000"],["2024-07-24T17:26:38.010000"],["2024-07-24T17:26:39.010000"],["2024-07-24T17:26:40.010000"],["2024-07-24T17:26:41.010000"],["2024-07-24T17:26:42.010000"],["2024-07-24T17:26:43.010000"],["2024-07-24T17:26:44.010000"],["2024-07-24T17:26:45.010000"],["2024-07-24T17:26:46.010000"],["2024-07-24T17:26:47.010000"],["2024-07-24T17:26:48.010000"],["2024-07-24T17:26:49.010000"],["2024-07-24T17:26:50.010000"],["2024-07-24T17:26:51.010000"],["2024-07-24T17:26:52.010000"],["2024-07-24T17:26:53.010000"],["2024-07-24T17:26:54.010000"],["2024-07-24T17:26:55.010000"],["2024-07-24T17:26:56.010000"],["2024-07-24T17:26:57.010000"],["2024-07-24T17:26:58.010000"],["2024-07-24T17:26:59.010000"],["2024-07-24T17:27:00.010000"],["2024-07-24T17:27:01.010000"],["2024-07-24T17:27:02.010000"],["2024-07-24T17:27:03.010000"],["2024-07-24T17:27:04.010000"],["2024-07-24T17:27:05.010000"],["2024-07-24T17:27:06.010000"],["2024-07-24T17:27:07.010000"],["2024-07-24T17:27:08.010000"],["2024-07-24T17:27:09.010000"],["2024-07-24T17:27:10.010000"],["2024-07-24T17:27:11.010000"],["2024-07-24T17:27:12.010000"],["2024-07-24T17:27:13.010000"],["2024-07-24T17:27:14.010000"],["2024-07-24T17:27:15.010000"],["2024-07-24T17:27:16.010000"],["2024-07-24T17:27:17.010000"],["2024-07-24T17:27:18.010000"],["2024-07-24T17:27:19.010000"],["2024-07-24T17:27:20.010000"],["2024-07-24T17:27:21.010000"],["2024-07-24T17:27:22.010000"],["2024-07-24T17:27:23.010000"],["2024-07-24T17:27:24.010000"],["2024-07-24T17:27:25.010000"],["2024-07-24T17:27:26.010000"],["2024-07-24T17:27:27.010000"],["2024-07-24T17:27:28.010000"],["2024-07-24T17:27:29.010000"],["2024-07-24T17:27:30.010000"],["2024-07-24T17:27:31.010000"],["2024-07-24T17:27:32.010000"],["2024-07-24T17:27:33.010000"],["2024-07-24T17:27:34.010000"],["2024-07-24T17:27:35.010000"],["2024-07-24T17:27:36.010000"],["2024-07-24T17:27:37.010000"],["2024-07-24T17:27:38.010000"],["2024-07-24T17:27:39.010000"],["2024-07-24T17:27:40.010000"],["2024-07-24T17:27:41.010000"],["2024-07-24T17:27:42.010000"],["2024-07-24T17:27:43.010000"],["2024-07-24T17:27:44.010000"],["2024-07-24T17:27:45.010000"],["2024-07-24T17:27:46.010000"],["2024-07-24T17:27:47.010000"],["2024-07-24T17:27:48.010000"],["2024-07-24T17:27:49.010000"],["2024-07-24T17:27:50.010000"],["2024-07-24T17:27:51.010000"],["2024-07-24T17:27:52.010000"],["2024-07-24T17:27:53.010000"],["2024-07-24T17:27:54.010000"],["2024-07-24T17:27:55.010000"],["2024-07-24T17:27:56.010000"],["2024-07-24T17:27:57.010000"],["2024-07-24T17:27:58.010000"],["2024-07-24T17:27:59.010000"],["2024-07-24T17:28:00.010000"],["2024-07-24T17:28:01.010000"],["2024-07-24T17:28:02.010000"],["2024-07-24T17:28:03.010000"],["2024-07-24T17:28:04.010000"],["2024-07-24T17:28:05.010000"],["2024-07-24T17:28:06.010000"],["2024-07-24T17:28:07.010000"],["2024-07-24T17:28:08.010000"],["2024-07-24T17:28:09.010000"],["2024-07-24T17:28:10.010000"],["2024-07-24T17:28:11.010000"],["2024-07-24T17:28:12.010000"],["2024-07-24T17:28:13.010000"],["2024-07-24T17:28:14.010000"],["2024-07-24T17:28:15.010000"],["2024-07-24T17:28:16.010000"],["2024-07-24T17:28:17.010000"],["2024-07-24T17:28:18.010000"],["2024-07-24T17:28:19.010000"],["2024-07-24T17:28:20.010000"],["2024-07-24T17:28:21.010000"],["2024-07-24T17:28:22.010000"],["2024-07-24T17:28:23.010000"],["2024-07-24T17:28:24.010000"],["2024-07-24T17:28:25.010000"],["2024-07-24T17:28:26.010000"],["2024-07-24T17:28:27.010000"],["2024-07-24T17:28:28.010000"],["2024-07-24T17:28:29.010000"],["2024-07-24T17:28:30.010000"],["2024-07-24T17:28:31.010000"],["2024-07-24T17:28:32.010000"],["2024-07-24T17:28:33.010000"],["2024-07-24T17:28:34.010000"],["2024-07-24T17:28:35.010000"],["2024-07-24T17:28:36.010000"],["2024-07-24T17:28:37.010000"],["2024-07-24T17:28:38.010000"],["2024-07-24T17:28:39.010000"],["2024-07-24T17:28:40.010000"],["2024-07-24T17:28:41.010000"],["2024-07-24T17:28:42.010000"],["2024-07-24T17:28:43.010000"],["2024-07-24T17:28:44.010000"],["2024-07-24T17:28:45.010000"],["2024-07-24T17:28:46.010000"],["2024-07-24T17:28:47.010000"],["2024-07-24T17:28:48.010000"],["2024-07-24T17:28:49.010000"],["2024-07-24T17:28:50.010000"],["2024-07-24T17:28:51.010000"],["2024-07-24T17:28:52.010000"],["2024-07-24T17:28:53.010000"],["2024-07-24T17:28:54.010000"],["2024-07-24T17:28:55.010000"],["2024-07-24T17:28:56.010000"],["2024-07-24T17:28:57.010000"],["2024-07-24T17:28:58.010000"],["2024-07-24T17:28:59.010000"],["2024-07-24T17:29:00.010000"],["2024-07-24T17:29:01.010000"],["2024-07-24T17:29:02.010000"],["2024-07-24T17:29:03.010000"],["2024-07-24T17:29:04.010000"],["2024-07-24T17:29:05.010000"],["2024-07-24T17:29:06.010000"],["2024-07-24T17:29:07.010000"],["2024-07-24T17:29:08.010000"],["2024-07-24T17:29:09.010000"],["2024-07-24T17:29:10.010000"],["2024-07-24T17:29:11.010000"],["2024-07-24T17:29:12.010000"],["2024-07-24T17:29:13.010000"],["2024-07-24T17:29:14.010000"],["2024-07-24T17:29:15.010000"],["2024-07-24T17:29:16.010000"],["2024-07-24T17:29:17.010000"],["2024-07-24T17:29:18.010000"],["2024-07-24T17:29:19.010000"],["2024-07-24T17:29:20.010000"],["2024-07-24T17:29:21.010000"],["2024-07-24T17:29:22.010000"],["2024-07-24T17:29:23.010000"],["2024-07-24T17:29:24.010000"],["2024-07-24T17:29:25.010000"],["2024-07-24T17:29:26.010000"],["2024-07-24T17:29:27.010000"],["2024-07-24T17:29:28.010000"],["2024-07-24T17:29:29.010000"],["2024-07-24T17:29:30.010000"],["2024-07-24T17:29:31.010000"],["2024-07-24T17:29:32.010000"],["2024-07-24T17:29:33.010000"],["2024-07-24T17:29:34.010000"],["2024-07-24T17:29:35.010000"],["2024-07-24T17:29:36.010000"],["2024-07-24T17:29:37.010000"],["2024-07-24T17:29:38.010000"],["2024-07-24T17:29:39.010000"],["2024-07-24T17:29:40.010000"],["2024-07-24T17:29:41.010000"],["2024-07-24T17:29:42.010000"],["2024-07-24T17:29:43.010000"],["2024-07-24T17:29:44.010000"],["2024-07-24T17:29:45.010000"],["2024-07-24T17:29:46.010000"],["2024-07-24T17:29:47.010000"],["2024-07-24T17:29:48.010000"],["2024-07-24T17:29:49.010000"],["2024-07-24T17:29:50.010000"],["2024-07-24T17:29:51.010000"],["2024-07-24T17:29:52.010000"],["2024-07-24T17:29:53.010000"],["2024-07-24T17:29:54.010000"],["2024-07-24T17:29:55.010000"],["2024-07-24T17:29:56.010000"],["2024-07-24T17:29:57.010000"],["2024-07-24T17:29:58.010000"],["2024-07-24T17:29:59.010000"],["2024-07-24T17:30:00.010000"],["2024-07-24T17:30:01.010000"],["2024-07-24T17:30:02.010000"],["2024-07-24T17:30:03.010000"],["2024-07-24T17:30:04.010000"],["2024-07-24T17:30:05.010000"],["2024-07-24T17:30:06.010000"],["2024-07-24T17:30:07.010000"],["2024-07-24T17:30:08.010000"],["2024-07-24T17:30:09.010000"],["2024-07-24T17:30:10.010000"],["2024-07-24T17:30:11.010000"],["2024-07-24T17:30:12.010000"],["2024-07-24T17:30:13.010000"],["2024-07-24T17:30:14.010000"],["2024-07-24T17:30:15.010000"],["2024-07-24T17:30:16.010000"],["2024-07-24T17:30:17.010000"],["2024-07-24T17:30:18.010000"],["2024-07-24T17:30:19.010000"],["2024-07-24T17:30:20.010000"],["2024-07-24T17:30:21.010000"],["2024-07-24T17:30:22.010000"],["2024-07-24T17:30:23.010000"],["2024-07-24T17:30:24.010000"],["2024-07-24T17:30:25.010000"],["2024-07-24T17:30:26.010000"],["2024-07-24T17:30:27.010000"],["2024-07-24T17:30:28.010000"],["2024-07-24T17:30:29.010000"],["2024-07-24T17:30:30.010000"],["2024-07-24T17:30:31.010000"],["2024-07-24T17:30:32.010000"],["2024-07-24T17:30:33.010000"],["2024-07-24T17:30:34.010000"],["2024-07-24T17:30:35.010000"],["2024-07-24T17:30:36.010000"],["2024-07-24T17:30:37.010000"],["2024-07-24T17:30:38.010000"],["2024-07-24T17:30:39.010000"],["2024-07-24T17:30:40.010000"],["2024-07-24T17:30:41.010000"],["2024-07-24T17:30:42.010000"],["2024-07-24T17:30:43.010000"],["2024-07-24T17:30:44.010000"],["2024-07-24T17:30:45.010000"],["2024-07-24T17:30:46.010000"],["2024-07-24T17:30:47.010000"],["2024-07-24T17:30:48.010000"],["2024-07-24T17:30:49.010000"],["2024-07-24T17:30:50.010000"],["2024-07-24T17:30:51.010000"],["2024-07-24T17:30:52.010000"],["2024-07-24T17:30:53.010000"],["2024-07-24T17:30:54.010000"],["2024-07-24T17:30:55.010000"],["2024-07-24T17:30:56.010000"],["2024-07-24T17:30:57.010000"],["2024-07-24T17:30:58.010000"],["2024-07-24T17:30:59.010000"],["2024-07-24T17:31:00.010000"],["2024-07-24T17:31:01.010000"],["2024-07-24T17:31:02.010000"],["2024-07-24T17:31:03.010000"],["2024-07-24T17:31:04.010000"],["2024-07-24T17:31:05.010000"],["2024-07-24T17:31:06.010000"],["2024-07-24T17:31:07.010000"],["2024-07-24T17:31:08.010000"],["2024-07-24T17:31:09.010000"],["2024-07-24T17:31:10.010000"],["2024-07-24T17:31:11.010000"],["2024-07-24T17:31:12.010000"],["2024-07-24T17:31:13.010000"],["2024-07-24T17:31:14.010000"],["2024-07-24T17:31:15.010000"],["2024-07-24T17:31:16.010000"],["2024-07-24T17:31:17.010000"],["2024-07-24T17:31:18.010000"],["2024-07-24T17:31:19.010000"],["2024-07-24T17:31:20.010000"],["2024-07-24T17:31:21.010000"],["2024-07-24T17:31:22.010000"],["2024-07-24T17:31:23.010000"],["2024-07-24T17:31:24.010000"],["2024-07-24T17:31:25.010000"],["2024-07-24T17:31:26.010000"],["2024-07-24T17:31:27.010000"],["2024-07-24T17:31:28.010000"],["2024-07-24T17:31:29.010000"],["2024-07-24T17:31:30.010000"],["2024-07-24T17:31:31.010000"],["2024-07-24T17:31:32.010000"],["2024-07-24T17:31:33.010000"],["2024-07-24T17:31:34.010000"],["2024-07-24T17:31:35.010000"],["2024-07-24T17:31:36.010000"],["2024-07-24T17:31:37.010000"],["2024-07-24T17:31:38.010000"],["2024-07-24T17:31:39.010000"],["2024-07-24T17:31:40.010000"],["2024-07-24T17:31:41.010000"],["2024-07-24T17:31:42.010000"],["2024-07-24T17:31:43.010000"],["2024-07-24T17:31:44.010000"],["2024-07-24T17:31:45.010000"],["2024-07-24T17:31:46.010000"],["2024-07-24T17:31:47.010000"],["2024-07-24T17:31:48.010000"],["2024-07-24T17:31:49.010000"],["2024-07-24T17:31:50.010000"],["2024-07-24T17:31:51.010000"],["2024-07-24T17:31:52.010000"],["2024-07-24T17:31:53.010000"],["2024-07-24T17:31:54.010000"],["2024-07-24T17:31:55.010000"],["2024-07-24T17:31:56.010000"],["2024-07-24T17:31:57.010000"],["2024-07-24T17:31:58.010000"],["2024-07-24T17:31:59.010000"],["2024-07-24T17:32:00.010000"],["2024-07-24T17:32:01.010000"],["2024-07-24T17:32:02.010000"],["2024-07-24T17:32:03.010000"],["2024-07-24T17:32:04.010000"],["2024-07-24T17:32:05.010000"],["2024-07-24T17:32:06.010000"],["2024-07-24T17:32:07.010000"],["2024-07-24T17:32:08.010000"],["2024-07-24T17:32:09.010000"],["2024-07-24T17:32:10.010000"],["2024-07-24T17:32:11.010000"],["2024-07-24T17:32:12.010000"],["2024-07-24T17:32:13.010000"],["2024-07-24T17:32:14.010000"],["2024-07-24T17:32:15.010000"],["2024-07-24T17:32:16.010000"],["2024-07-24T17:32:17.010000"],["2024-07-24T17:32:18.010000"],["2024-07-24T17:32:19.010000"],["2024-07-24T17:32:20.010000"],["2024-07-24T17:32:21.010000"],["2024-07-24T17:32:22.010000"],["2024-07-24T17:32:23.010000"],["2024-07-24T17:32:24.010000"],["2024-07-24T17:32:25.010000"],["2024-07-24T17:32:26.010000"],["2024-07-24T17:32:27.010000"],["2024-07-24T17:32:28.010000"],["2024-07-24T17:32:29.010000"],["2024-07-24T17:32:30.010000"],["2024-07-24T17:32:31.010000"],["2024-07-24T17:32:32.010000"],["2024-07-24T17:32:33.010000"],["2024-07-24T17:32:34.010000"],["2024-07-24T17:32:35.010000"],["2024-07-24T17:32:36.010000"],["2024-07-24T17:32:37.010000"],["2024-07-24T17:32:38.010000"],["2024-07-24T17:32:39.010000"],["2024-07-24T17:32:40.010000"],["2024-07-24T17:32:41.010000"],["2024-07-24T17:32:42.010000"],["2024-07-24T17:32:43.010000"],["2024-07-24T17:32:44.010000"],["2024-07-24T17:32:45.010000"],["2024-07-24T17:32:46.010000"],["2024-07-24T17:32:47.010000"],["2024-07-24T17:32:48.010000"],["2024-07-24T17:32:49.010000"],["2024-07-24T17:32:50.010000"],["2024-07-24T17:32:51.010000"],["2024-07-24T17:32:52.010000"],["2024-07-24T17:32:53.010000"],["2024-07-24T17:32:54.010000"],["2024-07-24T17:32:55.010000"],["2024-07-24T17:32:56.010000"],["2024-07-24T17:32:57.010000"],["2024-07-24T17:32:58.010000"],["2024-07-24T17:32:59.010000"],["2024-07-24T17:33:00.010000"],["2024-07-24T17:33:01.010000"],["2024-07-24T17:33:02.010000"],["2024-07-24T17:33:03.010000"],["2024-07-24T17:33:04.010000"],["2024-07-24T17:33:05.010000"],["2024-07-24T17:33:06.010000"],["2024-07-24T17:33:07.010000"],["2024-07-24T17:33:08.010000"],["2024-07-24T17:33:09.010000"],["2024-07-24T17:33:10.010000"],["2024-07-24T17:33:11.010000"],["2024-07-24T17:33:12.010000"],["2024-07-24T17:33:13.010000"],["2024-07-24T17:33:14.010000"],["2024-07-24T17:33:15.010000"],["2024-07-24T17:33:16.010000"],["2024-07-24T17:33:17.010000"],["2024-07-24T17:33:18.010000"],["2024-07-24T17:33:19.010000"],["2024-07-24T17:33:20.010000"],["2024-07-24T17:33:21.010000"],["2024-07-24T17:33:22.010000"],["2024-07-24T17:33:23.010000"],["2024-07-24T17:33:24.010000"],["2024-07-24T17:33:25.010000"],["2024-07-24T17:33:26.010000"],["2024-07-24T17:33:27.010000"],["2024-07-24T17:33:28.010000"],["2024-07-24T17:33:29.010000"],["2024-07-24T17:33:30.010000"],["2024-07-24T17:33:31.010000"],["2024-07-24T17:33:32.010000"],["2024-07-24T17:33:33.010000"],["2024-07-24T17:33:34.010000"],["2024-07-24T17:33:35.010000"],["2024-07-24T17:33:36.010000"],["2024-07-24T17:33:37.010000"],["2024-07-24T17:33:38.010000"],["2024-07-24T17:33:39.010000"],["2024-07-24T17:33:40.010000"],["2024-07-24T17:33:41.010000"],["2024-07-24T17:33:42.010000"],["2024-07-24T17:33:43.010000"],["2024-07-24T17:33:44.010000"],["2024-07-24T17:33:45.010000"],["2024-07-24T17:33:46.010000"],["2024-07-24T17:33:47.010000"],["2024-07-24T17:33:48.010000"],["2024-07-24T17:33:49.010000"],["2024-07-24T17:33:50.010000"],["2024-07-24T17:33:51.010000"],["2024-07-24T17:33:52.010000"],["2024-07-24T17:33:53.010000"],["2024-07-24T17:33:54.010000"],["2024-07-24T17:33:55.010000"],["2024-07-24T17:33:56.010000"],["2024-07-24T17:33:57.010000"],["2024-07-24T17:33:58.010000"],["2024-07-24T17:33:59.010000"],["2024-07-24T17:34:00.010000"],["2024-07-24T17:34:01.010000"],["2024-07-24T17:34:02.010000"],["2024-07-24T17:34:03.010000"],["2024-07-24T17:34:04.010000"],["2024-07-24T17:34:05.010000"],["2024-07-24T17:34:06.010000"],["2024-07-24T17:34:07.010000"],["2024-07-24T17:34:08.010000"],["2024-07-24T17:34:09.010000"],["2024-07-24T17:34:10.010000"],["2024-07-24T17:34:11.010000"],["2024-07-24T17:34:12.010000"],["2024-07-24T17:34:13.010000"],["2024-07-24T17:34:14.010000"],["2024-07-24T17:34:15.010000"],["2024-07-24T17:34:16.010000"],["2024-07-24T17:34:17.010000"],["2024-07-24T17:34:18.010000"],["2024-07-24T17:34:19.010000"],["2024-07-24T17:34:20.010000"],["2024-07-24T17:34:21.010000"],["2024-07-24T17:34:22.010000"],["2024-07-24T17:34:23.010000"],["2024-07-24T17:34:24.010000"],["2024-07-24T17:34:25.010000"],["2024-07-24T17:34:26.010000"],["2024-07-24T17:34:27.010000"],["2024-07-24T17:34:28.010000"],["2024-07-24T17:34:29.010000"],["2024-07-24T17:34:30.010000"],["2024-07-24T17:34:31.010000"],["2024-07-24T17:34:32.010000"],["2024-07-24T17:34:33.010000"],["2024-07-24T17:34:34.010000"],["2024-07-24T17:34:35.010000"],["2024-07-24T17:34:36.010000"],["2024-07-24T17:34:37.010000"],["2024-07-24T17:34:38.010000"],["2024-07-24T17:34:39.010000"],["2024-07-24T17:34:40.010000"],["2024-07-24T17:34:41.010000"],["2024-07-24T17:34:42.010000"],["2024-07-24T17:34:43.010000"],["2024-07-24T17:34:44.010000"],["2024-07-24T17:34:45.010000"],["2024-07-24T17:34:46.010000"],["2024-07-24T17:34:47.010000"],["2024-07-24T17:34:48.010000"],["2024-07-24T17:34:49.010000"],["2024-07-24T17:34:50.010000"],["2024-07-24T17:34:51.010000"],["2024-07-24T17:34:52.010000"],["2024-07-24T17:34:53.010000"],["2024-07-24T17:34:54.010000"],["2024-07-24T17:34:55.010000"],["2024-07-24T17:34:56.010000"],["2024-07-24T17:34:57.010000"],["2024-07-24T17:34:58.010000"],["2024-07-24T17:34:59.010000"],["2024-07-24T17:35:00.010000"],["2024-07-24T17:35:01.010000"],["2024-07-24T17:35:02.010000"],["2024-07-24T17:35:03.010000"],["2024-07-24T17:35:04.010000"],["2024-07-24T17:35:05.010000"]],"hovertemplate":"color=2\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"2","line":{"color":"#00cc96","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"2","scene":"scene","showlegend":true,"x":[-0.6095501235686243,-0.8837088709697127,-0.6177589148283005,-0.2919598841108382,-0.4551585582084954,-0.833881767001003,-0.7336321510374546,-1.0443999096751213,-1.0450031403452158,-1.0155642959289253,-1.5300650717690587,-1.8736007967963815,-2.3645885013975203,-1.8808842469006777,-2.318103404249996,-1.5127822891809046,-1.7961357794702053,-2.445285683963448,-2.2367717335000634,-2.087071356829256,-2.6557243587449193,-2.7594072432257235,-1.9193535428494215,-1.4486885108053684,-1.374984108377248,-0.8385374033823609,-0.5599207179620862,-1.0431004222482443,-0.7489298190921545,-1.4203523737378418,-1.0903400797396898,-1.652240731753409,-0.8138458160683513,-0.3519756840541959,-0.8297638813965023,-0.4214736404828727,0.47185016609728336,0.22277051489800215,0.5577629841864109,1.371462568640709,2.315326841082424,1.6626816499046981,2.3945621419698,1.5771387950517237,2.1866012001410127,2.5292411521077156,1.988790899515152,2.2301614368334413,2.22862338880077,2.0423771934583783,2.2074857358820736,2.309166337363422,2.755862051155418,2.0169338481500745,2.202911373693496,2.9410030371509492,2.494535429868847,2.6674817935563624,2.7589287948794663,3.2060741269961,2.69715250749141,2.8487521433271468,2.6106600295752287,2.406319414731115,2.060384014621377,1.3569264831021428,0.8715683757327497,1.5886147432029247,1.4310085200704634,0.55244762590155,0.5127511979080737,1.357725948560983,0.6157390708103776,1.0040563400834799,1.573155889287591,1.5306477341800928,1.9131839834153652,2.6923937355168164,1.9320316947996616,2.1197907887399197,2.126040597446263,1.7716132160276175,2.631044827401638,1.7349581653252244,1.2532990649342537,0.30612911796197295,1.0469179269857705,0.4685657415539026,0.0035094781778752804,0.13625628501176834,-0.0939118224196136,-0.39737919298931956,-0.6379845938645303,-1.4515456394292414,-1.0118122561834753,-0.5086526507511735,-0.563854196574539,-0.9705254025757313,-1.0820873426273465,-1.7691308073699474,-1.141227088868618,-0.824527167249471,-0.6859799781814218,-0.10395141458138824,0.3667179015465081,0.9312526141293347,1.0281734596937895,1.7706123874522746,0.9188005290925503,1.346285693347454,0.634441636968404,0.4631233378313482,-0.12090115575119853,0.26983646862208843,0.17434790963307023,-0.45268070325255394,0.3934927140362561,-0.4360554376617074,0.5206326367333531,1.1868418739177287,1.8109264569357038,2.4621442020870745,2.9011181476525962,3.0623532785102725,2.8949203658849,3.652477961499244,4.0671643554233015,4.765485624782741,3.8295940500684083,3.536769070662558,2.677825198508799,2.3233817210420966,2.7622547526843846,3.302684226538986,2.803014036733657,3.3951256619766355,2.880101275164634,2.2860477352514863,2.266705156303942,2.4577127532102168,2.6732267667539418,2.870451870840043,3.3512867549434304,3.6587758427485824,2.954351444263011,2.4464952372945845,2.5823660152964294,2.6759969745762646,3.657060693949461,4.0983562199398875,4.8858762052841485,3.919552802108228,4.106885459274054,3.757523908279836,2.8196606040000916,2.0135199087671936,1.4881514138542116,1.4877551021054387,2.109051297418773,2.7513721883296967,3.0682449624873698,3.664586423430592,3.9922716808505356,3.423161218408495,3.728987905662507,3.5867632403969765,3.2841911781579256,2.3618917814455926,1.486290067434311,0.9829394319094718,1.3627103329636157,0.8552567143924534,0.5733497114852071,0.5151766347698867,-0.4275153963826597,-0.6952435281127691,0.05356826214119792,-0.8850338733755052,-1.1469217836856842,-1.8000268950127065,-0.8940320760011673,-1.7298372047953308,-1.9816269595175982,-2.8108198228292167,-1.9520869385451078,-1.834583141375333,-1.6215891437605023,-1.062518218997866,-0.34187170350924134,0.5296447305008769,1.0571834822185338,1.9811641164124012,1.8096500192768872,2.3727227644994855,3.0183308399282396,3.3966371892020106,2.662835302297026,2.1639235340990126,2.6198194371536374,2.144648344255984,1.8294909121468663,2.065571542363614,1.870094710495323,2.2281601019203663,1.6229098248295486,1.3227215269580483,0.9547943482175469,0.35172166069969535,0.3023064839653671,0.15239390637725592,0.7788484296761453,1.2025057743303478,1.8837599772959948,1.5817014113999903,0.7336880858056247,1.293053067754954,0.7146770833060145,-0.08101670956239104,-0.8890945501625538,-1.219836353790015,-0.5199776380322874,0.2862914274446666,0.8038662970066071,0.31338206911459565,1.1183926803059876,0.9330462459474802,1.9252091506496072,1.4565268969163299,0.4831496370024979,0.0684639704413712,-0.4017674154601991,0.550092757679522,0.6732313209213316,-0.22455526050180197,0.7570159123279154,1.409491206984967,1.281427149195224,0.6168931247666478,1.3796533131971955,0.6666627656668425,-0.291612789966166,-0.6824812977574766,-0.7647149683907628,-0.13692919397726655,-1.0257557216100395,-0.8076333124190569,-0.7313305921852589,-0.8709582211449742,-1.6379210911691189,-2.2001162976957858,-3.192859223112464,-3.4098818209022284,-4.265769869554788,-3.2785331550985575,-3.3572739236988127,-3.309381748083979,-3.874743086285889,-4.246602873317897,-4.615386898163706,-4.175956605467945,-3.3617177046835423,-2.981523570138961,-2.811126012355089,-2.3003388168290257,-3.0943693369627,-2.398986994754523,-2.4311393150128424,-1.4443698078393936,-1.1072588204406202,-1.6484764940105379,-0.891624943818897,-0.6513848300091922,-1.4360351543873549,-0.9054098804481328,-1.5042368187569082,-1.233384779188782,-0.9699034974910319,-1.9082601061090827,-1.880726063158363,-0.9912715274840593,-0.7058149958029389,0.19040879094973207,0.916161089669913,1.228836806025356,1.1872238395735621,0.7359541063196957,1.6120594153180718,0.8725615730509162,0.11348825599998236,-0.7006566785275936,-1.068098092917353,-1.871312387753278,-2.3088334747590125,-2.9440498226322234,-2.7006001258268952,-3.599281224887818,-4.205329635180533,-4.82791104586795,-4.863909551873803,-4.267121471464634,-3.475973015651107,-3.061780822928995,-2.6938268491066992,-2.3275236235931516,-1.4405571254901588,-1.9861526768654585,-1.9295402159914374,-1.745766400359571,-1.9099494945257902,-2.591468366328627,-3.1090909810736775,-3.8003862472251058,-3.4655962763354182,-4.058191013988107,-4.940264358650893,-4.198815157171339,-3.7981768185272813,-4.0959574822336435,-4.6213451395742595,-5.147686095908284,-5.398115746676922,-6.184220017399639,-6.399230678100139,-6.1987612238153815,-5.251907784957439,-5.046345681417733,-5.904035401530564,-5.587042134720832,-5.332139063626528,-5.547617695759982,-5.047168277204037,-4.934752514120191,-4.3540644575841725,-4.070306779816747,-4.45816441392526,-4.4354131310246885,-5.318185046315193,-4.510859666392207,-4.742079828400165,-4.929470364470035,-4.989712950307876,-5.092718183528632,-5.189825544133782,-4.481301968451589,-4.4901483920402825,-4.936438442673534,-4.183108770754188,-4.066437728237361,-4.078047509305179,-3.7528424793854356,-4.035891216248274,-3.1255416297353804,-3.1669106488116086,-2.821366017218679,-3.553433710709214,-3.666110945865512,-3.2091893278993666,-2.707352261058986,-3.5195841207168996,-4.431136149913073,-3.610045936424285,-3.5591261703521013,-3.534217552281916,-4.397326090373099,-3.9194624768570065,-3.890169143676758,-3.294103851541877,-3.4716068040579557,-3.3491661697626114,-3.1114747561514378,-2.765224158298224,-2.574611838441342,-2.3230598708614707,-2.8313945890404284,-2.463054217863828,-1.970157160423696,-1.4011862413026392,-1.4653787915594876,-0.7120279264636338,0.09581548953428864,-0.20747584104537964,-0.23897968418896198,-0.7374854162335396,-1.0993613172322512,-1.860191716812551,-2.2000742848031223,-3.0461350828409195,-2.060144293587655,-1.1634030966088176,-1.393463138025254,-0.9457369009032845,-1.4548409446142614,-0.9058662289753556,-0.5710773845203221,-0.7197457230649889,0.047117029782384634,-0.04241726454347372,-0.12285655457526445,0.4850805699825287,0.35685426462441683,1.347362601198256,0.9791761026717722,1.0298493937589228,1.4483429812826216,0.5863036387600005,1.0679178507998586,1.8235616856254637,2.4475655197165906,1.875022228807211,2.4173842975869775,3.1781603316776454,2.860302285756916,3.3188205477781594,3.0706767393276095,2.4371333736926317,1.6027485756203532,1.1124250791035593,1.1035135448910296,0.8866229075938463,-0.09528373368084431,-0.687403840944171,-1.4220057101920247,-1.821148265618831,-1.0827029580250382,-0.3101269006729126,-1.2152602025307715,-1.7953898161649704,-2.1108346162363887,-1.490778375416994,-2.3895169463939965,-1.8958890289068222,-2.0418900712393224,-1.0546882948838174,-0.6656912104226649,-0.3579130517318845,0.20989039773121476,0.7850954979658127,1.2240151586011052,1.6598505396395922,1.3526232377626002,0.5430016741156578,0.7065587658435106,-0.27773515367880464,0.617238569073379,-0.34377460461109877,0.4968362837098539,0.01347973383963108,-0.8116868860088289,-1.485901451203972,-1.1120376219041646,-1.1346535119228065,-0.20183363044634461,-1.037735099438578,-0.6827372163534164,-0.46546910470351577,0.3980623045936227,1.2521492098458111,1.5393959479406476,0.5490870526991785,0.8659987989813089,0.3207345148548484,0.9059249996207654,0.2220324957743287,1.0172670516185462,0.02704314049333334,-0.1842602170072496,-1.0732162450440228,-0.7533063786104321,-1.0037082191556692,-0.3724764375947416,0.5685104210861027,0.037638573441654444,0.5381877236068249,1.5029588076286018,1.3794404566287994,1.2118799798190594,1.506149830762297,1.3136548371985555,1.6926459283567965,1.0036348714493215,1.1739794663153589,1.8592161391861737,1.5242791105993092,2.349544912111014,1.652601023670286,2.0768163898028433,2.5325048500671983,2.896172830834985,2.9387575713917613,1.9965921291150153,2.4985946980305016,1.721250575967133,2.3652082616463304,2.9933616402558982,2.740522821433842,2.0586857590824366,1.5786773622967303,1.8218263401649892,1.9941787393763661,2.082796132657677,2.5872646933421493,2.9374618283472955,3.702368183992803,2.8433767072856426,2.0244398755021393,2.9696638048626482,3.5916311470791698,2.702252326067537,2.7075725942850113,2.9944918458350003,3.6304283970966935,3.0296598998829722,3.5090002273209393,2.8200148246251047,3.264374134596437,3.4722477472387254,2.593709909822792,2.191672007087618,1.5177684179507196,1.8057639189064503,2.3763843895867467,3.0992801361717284,4.087989188265055,4.736627811100334,4.977816125378013,4.749508831184357,5.327889047097415,5.126634975895286,5.83501484664157,5.0434206034988165,4.957120888866484,4.938357503619045,4.216642539948225,4.386875876691192,4.849281711503863,5.351013184059411,5.51519132219255,5.5952632944099605,5.7078534425236285,6.28577021881938,5.834985614288598,6.098433006089181,6.293064470402896,6.340586815960705,5.4732431042939425,5.989338933490217,5.459293119143695,6.349416008219123,6.672442570794374,6.983211873564869,7.705055432859808,7.4514007973484695,6.842368901707232,5.964131851680577,5.102504871785641,4.434504904318601,4.264364222995937,5.135918214917183,5.0967036336660385,5.17383299767971,4.900639773812145,5.853578470181674,6.654473307542503,6.883168932516128,6.079194448422641,6.5360774071887136,6.380943822674453,5.97166623454541,6.06562059931457,6.863681698217988,6.015558801125735,5.796425010543317,5.7522875047288835,5.915148090105504,5.83071022387594,6.476629646494985,6.075469945091754,5.272536799777299,5.957335983868688,5.106141967698932,5.4422168508172035,5.496439383830875,5.513140893075615,6.346188730094582,6.30289496621117,7.182029090821743,7.545234779827297,7.64581672847271,7.063521855510771,8.056870461441576,7.511488578747958,7.609952879138291,7.326213031541556,6.6188550987280905,6.54022003384307,5.935111553873867,6.328228648751974,6.188953749835491,6.684895663522184,5.733730867039412,4.819191562477499,5.053311955183744,5.599322324618697,5.715012963395566,6.681203562300652,7.317288752179593,7.4244615086354315,7.503685757052153,7.903937438968569,7.996032475028187,7.700486835092306,7.446297372691333,6.884883483871818,6.231889506801963,7.016015159897506,7.2486847578547895,6.48930140491575,7.05978107592091,7.55186829296872,8.082566427998245,7.687704382929951,7.493146528024226,7.678879031911492,7.097235456109047,6.5651503638364375,7.3941880078054965,7.993115366436541,7.585637230426073,7.695781005546451,7.15457380656153,7.948781174141914,8.632308896631002,7.880350966472179,7.343740663025528,6.465301261749119,7.05948462150991,7.259526148904115,6.759257127996534,6.5768428281880915,6.71118538454175,6.179565338417888,6.5983145334757864,7.556534392293543,7.74331826902926,7.369050051085651,7.649563875049353,7.651945621240884,7.951733075082302,7.796818939503282,7.070736777503043,7.962558330502361,7.959597945678979,8.446049664635211,7.750338412355632,7.488423951435834,7.78712602192536,8.172594359144568,9.095523750409484,9.794136793818325,9.9638393484056,9.27951360726729,8.711959786247462,8.77423977246508,9.5298301265575,10.285166293848306,10.354402931872755,11.24941901024431,10.815510138869286,10.59655845630914,9.961130211595446,10.767218735069036,10.781101616565138,10.71456040488556,10.324787245132029,10.41320079099387,11.137503499165177,11.300353975966573,12.041060305666178,12.996810998767614,12.8803681419231,13.024152650497854,12.891768117900938,13.448222897946835,12.701843680813909,13.202649577986449,13.674002623651177,13.036364331375808,12.440546028316021,13.405943997669965,13.219088877085596,12.860100229270756,12.81358515797183,13.567840602714568,12.99171772878617,12.719307004474103,13.674034082330763,14.587548554409295,14.461088655982167,15.31504955375567,14.700953550636768,15.506315815728158,16.18580580689013,15.273540179245174,16.095812192652375,16.10715161403641,16.455188995227218,16.025872780475765,16.947197678033262,17.360798336565495,16.488041990902275,15.918289536610246,16.355474030133337,15.532379815820605,16.397676369640976,15.672451828606427,15.52555002272129,15.421194894239306,16.36401905119419,16.056547103449702,15.441158220171928,15.733129548374563,15.825487448368222,16.667229316197336,17.086496368050575,16.124624385964125,15.47830263292417,15.910039331298321,16.65174269443378,17.155216951388866,17.973558544181287,17.97852670866996,17.085620769765228,16.89474111609161,16.823465616907924,16.86131079029292,16.080092516262084,16.29436136689037,16.959265758749098,16.6359315472655,15.91553642321378,15.208140873350203,16.160781904123724,16.58829206461087,16.73294532345608,17.301951011177152,16.89700136287138,16.31464053085074,17.287847043480724,16.339578080456704,15.453642511740327,14.739618818741292,15.201528283767402,16.084192170761526,16.32278395164758,15.821070488542318,16.260603515431285,15.771675250027329,15.563125593587756,16.01610773289576,16.853513367008418,16.46080069569871,15.959543702658266,16.58449904434383,16.42899065790698,16.97017681179568,16.632318030577153,16.527103987522423,16.875006357207894,16.161904365289956,16.87255587335676,17.362800016533583,16.380542961414903,15.928868418559432,16.319388336036354,15.66823724238202,15.059099183883518,14.997700748499483,15.620679684448987,15.757401943672448,14.880348238162696,14.597996818367392,14.740039410535246,15.149910919833928,15.002198312431574,15.460092981811613,16.093698726035655,16.475518754217774,15.639533885288984,15.851499032229185,15.593038592953235,15.740599407814443,15.293652968481183,14.52543957484886,13.835774780716747,14.15948578901589,15.085221452638507,14.173399682622403,14.746902708895504,15.574781915638596,15.030655902810395,14.447236009407789,14.817674898542464,14.025660182815045,14.419122177176178,14.986048775259405,15.847932767588645,15.854344768915325,14.920201761182398,13.957162523176521,13.139185265172273,13.605017678812146,14.297725000418723,14.889614656101912,13.95167645579204,13.436810731887817,13.787894332781434,13.008280427660793,12.541474235709757,12.785582609008998,12.072078433353454,11.424181886948645,11.946365656796843,11.636771386954933,11.33948255283758,10.49329642439261,9.49922162014991,9.756645808927715,9.905869950540364,9.850606186781079,9.012270775157958,9.018052387982607,8.42050134157762,9.401242203544825,10.245737370569259,10.841457607690245,11.571918515954167,11.117000094614923,11.49708347208798,11.635679166764021,11.942939788568765,11.338000798597932,11.163574350066483,11.746549456380308,12.525964841246605,12.555732979439199,11.798794144764543,12.390647368505597,12.361586974002421,13.131707680411637,12.385609459597617,12.716817669570446,12.846339861862361,12.648116077296436,13.336015577893704,13.869553729891777,13.823368928395212,14.694456674624234,14.022398261353374,13.61790524283424,12.7805435648188,13.512594836764038,13.679458818398416,13.295308322180063,12.785849384497851,13.332335781306028,14.27844346826896,14.46617888007313,14.893264097627252,14.39695685217157,14.539073693566024,13.838482975028455,12.876460941974074,12.179792101494968,11.345457151997834,11.693528587929904,12.638121540658176,12.720795978792012,11.749516070820391,12.16201936127618,12.45003595855087,12.156414869241416,11.36618021177128,11.523049789015204,12.470170991960913,11.643992274068296,11.910359679721296,11.80993236321956,10.979979247786105,10.381120927166194,11.085595656652004,11.615159472916275,11.902588008902967,11.38243707222864,11.255415892694145,10.783735816832632,11.20231487089768,10.769951853435487,10.596762282308191,11.076676214113832,11.907238064799458,10.92857817094773,11.225073026958853,11.286168563645333,11.58669033413753,12.550530103035271,11.562721114605665,10.629515482112765,11.226035572588444,10.769491072744131,10.097103809006512,10.933288716711104,11.821429029107094,11.802899510599673,12.079485588241369,11.334382424596697,10.78808580385521,10.324982296209782,10.821064693387598,10.352733789477497,11.106740511022508,12.050595819950104,11.355594613123685,11.071634092368186,10.49285297933966,10.71952347131446,11.673830524086952,11.374231190886348,11.680989427026361,12.164626340381801,12.645260485820472,13.556587445084006,12.666905506979674,13.325532401446253,12.57311989646405,12.458717873319983,12.429063063580543,12.749147080350667,13.60042964341119,12.816904019098729,11.927986246533692,11.125747002195567,12.022409884724766,11.345203198958188,10.590630053076893,10.980960302520543,11.940287372097373,11.770154204685241,10.938378820661455,11.036745302844793,10.210309298709035,9.353193216957152,9.508325494360179,8.755353809799999,8.089303939603269,7.874552846886218,8.70324907451868,8.265981333795935,7.787508142180741,7.801024692133069,7.3206712692044675,6.529619289562106,6.371423922013491,7.14239435410127,7.749574567656964,8.102688907179981,8.307875826954842,9.127979209180921,8.678408953826874,8.575830227695405,9.196484595537186,9.791762434411794,10.757771668955684,10.691063979640603,10.795170433819294,10.798179982230067,9.911647075321525,10.643116714432836,10.084369149059057,10.520298507064581,10.87470247456804,11.53325198404491,11.778707677964121,11.406533263623714,12.281575966160744,11.76011223392561,11.974761305376887,11.850718114990741,10.874897750560194,10.11156846396625,10.71835937909782,10.252112894318998,10.654203675221652,10.41020873375237,9.774783109780401,9.790446216240525,9.928611333481967,9.648035254795104,10.50492326868698,11.244226317387074,12.210228416137397,12.902908032760024,12.641105284914374,12.102225524373353,12.032148375175893,11.140311123337597,11.533621062524617,12.26536058075726,12.530817527789623,11.595508849713951,12.55218012072146,12.854716173838824,13.485986170824617,13.543760176282376,13.572930216789246,13.493665693793446,13.20030582556501,13.685865901876241,12.810289956629276,12.312069669831544,11.625780356116593,11.068039120174944,10.10789051791653,10.410389807075262,10.31822673138231,10.75506128417328,11.307495228946209,10.98881169501692,10.435308693442494,9.918165641836822,9.202134761027992,8.855572288390249,8.909987826365978,9.231793135870248,9.459418639075011,8.82507247524336,8.345209673512727,9.2724154824391,9.916747180279344,9.222675821278244,9.232275057584047,9.33314925385639,9.133704412728548,8.882833532523364,9.069131214171648,9.404822191223502,8.903896912001073,8.537261507473886,7.757694834843278,8.257590873166919,7.491083417087793,7.874772100709379,6.998020728118718,7.826592596247792,7.225886300206184,7.287866294384003,7.355792976915836,6.401441344060004,6.501162585802376,5.602993126958609,5.150183157529682,4.881696529686451,4.759789599105716,5.0187345668673515,5.412724984344095,6.292105647735298,5.397603673860431,6.164635440334678,5.905794787686318,5.016287343110889,4.058589821215719,3.305554950609803,4.280547221191227,4.650383199565113,4.162195611745119,5.071208376437426,4.1554449130780995,3.6750105186365545,4.138413513544947,5.024890559725463,5.953892265912145,5.764043487608433,4.95428783679381,5.602980819530785,5.636002858635038,5.485830333083868,4.736403968650848,3.9831434064544737,4.66661485331133,4.555583066307008,4.109373600687832,4.9945882968604565,4.791194467805326,4.411413393449038,5.082341384142637,4.676912529394031,4.934915927238762,4.834331810940057,4.141234806738794,3.3213046323508024,3.934366277884692,4.271253515500575,4.31269792560488,4.648036355152726,5.225976262707263,5.023892160505056,5.4839445669204,5.982837131246924,5.5252421968616545,5.19777771178633,6.057312257122248,6.91904368577525,6.17427803715691,6.29855643119663,5.395958067383617,5.357531539630145,6.118942737113684,6.470010580495,5.657206146512181,4.965787335764617,4.8346134829334915,4.40442184265703,3.491292854771018,3.9950951621867716,3.3951181401498616,2.579978838097304,3.154255053959787,2.7051438190974295,3.5831188037991524,3.388637605123222,2.933815997093916,2.110347191337496,1.4550979821942747,1.570810201112181,1.9035305832512677,1.5995198586024344,1.8539351508952677,0.9141639773733914,1.8419555486179888,2.4224415863864124,1.4884847896173596,2.283299083355814,1.9392163278535008,2.8528394266031682,2.121016654651612,1.4768471578136086,0.823163004592061,0.956480554305017,0.43560923589393497,0.09225937025621533,0.7672709142789245,1.7036438467912376,1.9157931092195213,1.6979344002902508,1.2544018095359206,1.1912592598237097,0.920544255990535,0.12531102821230888,-0.5007323902100325,-1.2918314011767507,-1.195644570980221,-0.47819557460024953,-0.6278173378668725,-1.3272845977917314,-0.42428102158010006,-0.5249549131840467,-0.863293394446373,-0.9878837084397674,-0.4259632765315473,-1.225861279759556,-0.8021789495833218,0.16410093009471893,0.8282938506454229,1.7746817716397345,1.8840858642943203,1.9275612677447498,1.7513423240743577,2.647580498829484,3.394625128246844,2.781455895397812,2.0412210966460407,2.556386419106275,2.551622447092086,2.9624490328133106,3.226113642565906,2.988552413880825,2.146109820343554,2.374460232909769,3.201973646413535,2.7687326539307833,2.8556263148784637,2.115526824723929,1.7076117596589029,1.125154352746904,1.2347428007051349,1.0852427277714014,1.7182905706577003,2.277839167509228,1.637312759179622,0.9385929731652141,0.9160039336420596,1.7063907044939697,2.270472220610827,1.6163626033812761,1.6820988771505654,1.1038934011012316,0.8399299592711031,1.7725066202692688,1.5563978245481849,2.1141293831169605,1.3626106241717935,2.301084485370666,2.6843124995939434,2.412811832036823,1.630033408291638,1.9322106055915356,2.8660736959427595,3.19196282280609,2.718239956535399,1.752683772239834,1.1516716093756258,1.860790904611349,1.4382607089355588,0.5887536257505417,0.4133771527558565,1.1310078790411353,0.7600371595472097,0.6725914655253291,1.434897339437157,0.5541996187530458,1.3162379246205091,1.989066342357546,1.065009467303753,1.5658536469563842,0.8022861485369503,0.8279625391587615,1.2479998269118369,1.4452987951226532,1.4338172990828753,0.5053941691294312,-0.2936501079238951,0.3517205803655088,0.620774619281292,0.2620812547393143,1.2524935649707913,2.1719795130193233,1.477299579884857,1.3171086474321783,0.5924787754192948,1.0072563267312944,0.9317733072675765,1.7427683090791106,1.31519111758098,1.120201448444277,1.9757840218953788,2.2584016006439924,1.930305203422904,2.8554560993798077,2.2513943389058113,2.0423817853443325,1.8824962978251278,1.8709541275165975,1.9131495207548141,1.0505935307592154,0.18659893702715635,-0.7981881583109498,-1.1498798904940486,-0.47935579158365726,-0.6026103193871677,0.05378824891522527,0.1748554389923811,-0.6800704761408269,-1.2026260765269399,-0.20396909583359957,-0.13788686459884048,0.2608707114122808,1.0689661069773138,0.7347347349859774,0.3216146812774241,0.25931234983727336,-0.04578153509646654,-0.4091281620785594,-0.09518794482573867,0.076657357160002,-0.22252584155648947,-0.45061693899333477,0.11112896632403135,0.6621693675406277,1.3059566621668637,0.8173885615542531,1.6322488589212298,1.2449532211758196,0.765170187689364,0.5079504954628646,0.11144094867631793,0.8465910502709448,0.929693941026926,0.3994013061746955,1.356489243451506,0.5872806613333523,-0.38086332147940993,0.5377896218560636,0.14859842788428068,-0.41855104733258486,-0.671963463537395,-0.03561733569949865,-0.14412819826975465,-0.41490346007049084,0.10074570681899786,-0.8356675594113767,-0.10814774874597788,-0.5283362395130098,-0.738772623706609,-1.1529460111632943,-0.9348818305879831,-0.24749647825956345,-0.664575076662004,-0.816627292893827,-0.24332284834235907,-1.032135296612978,-0.7575985928997397,-0.12877805484458804,-1.0970407319255173,-1.2417967868968844,-1.3326522009447217,-1.3829380022361875,-1.0470439693890512,-1.7008338631130755,-2.2454254496842623,-2.480485592968762,-3.3184624048881233,-2.9396500452421606,-2.938901674002409,-2.017942332662642,-1.5488702016882598,-1.8829545048065484,-2.445491214748472,-2.4448057590052485,-2.2907231356948614,-1.900472640991211,-2.8722160034812987,-3.2982935830950737,-2.5838287053629756,-2.797679800540209,-2.438786083832383,-2.164480342529714,-3.145723600871861,-2.6449999725446105,-1.6871801828965545,-1.890999877359718,-1.018244409468025,-0.8908224804326892,-1.0453877542167902,-0.6144586061127484,0.28218489652499557,-0.13364021107554436,0.8431466077454388,1.423114599660039,2.341083657927811,2.931189665570855,2.321967269759625,2.496975369285792,3.042643149383366,3.605150505900383,2.9986928277648985,3.478540643118322,3.9470241726376116,3.1370760980062187,2.5159351932816207,3.4226999166421592,2.7632666351273656,3.129885603673756,2.982980423606932,2.215819241013378,2.264351461082697,3.0627850056625903,3.4205939043313265,3.07973346253857,3.8885506098158658,2.9680516375228763,3.7869045827537775,3.725528810173273,4.462931108195335,4.101948710158467,5.035371548961848,4.305993853602558,3.8886465835385025,3.3781073475256562,2.405848767608404,1.6308027422055602,2.303650424350053,1.5127432476729155,1.3260003072209656,0.7424984415993094,0.20201525185257196,1.1421017609536648,1.5902564241550863,2.208987577352673,1.4176173452287912,1.8475457155145705,1.9085196643136442,2.028502077795565,1.7977760192006826,0.9321450251154602,1.7564834118820727,2.65487805288285,3.057956828735769,2.1313774595037103,1.1612704508006573,0.20618577487766743,0.45696440851315856,-0.43932552821934223,-0.9950837176293135,-1.189747005701065,-0.8689067638479173,-0.46729465294629335,-1.1630945089273155,-0.21811948949471116,0.10689434595406055,0.5909532988443971,0.2829908551648259,1.0985736926086247,0.2579759075306356,-0.08186549553647637,0.3224057792685926,1.3077354696579278,1.2928243386559188,1.7000118577852845,2.257305954582989,2.8882975461892784,3.5951479421928525,4.099585910327733,3.7905723322182894,3.384395133238286,2.608042602427304,3.1358001246117055,2.8459520139731467,3.4162534354254603,3.5809932481497526,4.490942082833499,5.133397793862969,5.658506728243083,6.394226904027164,7.134842013474554,6.694976034574211,6.78338329680264,7.098961261566728,6.4098491203039885,7.0260812705382705,7.917809284757823,7.481188913341612,6.924248415976763,7.397321477532387,7.123342369217426,7.3861806825734675,7.638912682887167,7.097251860424876,7.744479600340128,8.666759867221117,8.398097661789507,8.542540787253529,8.651181641966105,8.49706715438515,9.165362119674683,8.192096875514835,8.966482133138925,8.021847106982023,7.485682988539338,7.028923213016242,7.216138398740441,7.213277612347156,7.966591342817992,7.80238842824474,7.46082047233358,7.59629441332072,7.532287458889186,8.417289804201573,8.116627321112901,7.318694069050252,7.285424759145826,7.131813953630626,6.18581159459427,7.155440509319305,7.312487192917615,6.969952122773975,7.409033029340208,8.2308692894876,8.768772778101265,8.270549179054797,9.189044373109937,10.069672480691224,9.856769753620028,10.435408512596041,10.799748479854316,10.20718782581389,10.45975036919117,11.314984794706106,12.08656769245863,12.844732503406703,11.850010733120143,12.13435403490439,12.335473617073148,12.055136111564934,12.806884532794356,11.984854281879961,11.659652950707823,11.56609162222594,11.957658376544714,11.239924172870815,10.688517124392092,10.754993739072233,10.779852558858693,10.875135069247335,11.395178758073598,11.425843155011535,12.234175755642354,11.349209311883897,11.967884352896363,12.839349607937038,12.337296090554446,12.78808543086052,12.40536231501028,13.341570565477014,13.650258393958211,14.330279206391424,15.21282749157399,14.702425444498658,14.55416253162548,14.51872728485614,14.20442590629682,13.99894631234929,13.440293465740979,14.370984427630901,13.67646622704342,14.070699299219996,13.608666787855327,13.682194792665541,13.358069324400276,13.398562835529447,13.557904039509594,13.19719209894538,13.53083513956517,14.114690254442394,14.832354059908539,14.902743155136704,15.059601306915283,15.423278314061463,14.670009706169367,14.01881635794416,13.065006969030946,13.10763640748337,12.312234094832093,13.14959508460015,12.392634425777942,12.87526436848566,13.83386440994218,14.043970548082143,14.382390994112939,13.909434760455042,14.276222192216665,15.166492869146168,15.89235867233947,16.307178936433047,15.795884402934462,14.961174426134676,15.513752514496446,15.028817625716329,15.35426677018404,15.51873398385942,15.153877213597298,15.509602877311409,15.622739976737648,16.49270077655092,15.950957912486047,16.603025341406465,16.193048426881433,17.106924138963223,17.541528617031872,18.151068917941302,17.8183280271478,17.955960330553353,18.492922561708838,17.741362063679844,18.27889782236889,17.594828071072698,18.48499713325873,19.445126257371157,19.497447249479592,18.73013786971569,18.798112937714905,19.378843443933874,19.029945891350508,18.223438201937824,18.44648447725922,18.410156650468707,18.158829752355814,18.376617302186787,18.407548064365983,18.12309265648946,18.008860498666763,18.8007855694741,18.03806309355423,17.28867769939825,16.517895117402077,15.991436989977956,15.732251146342605,16.290704048238695,17.146027775015682,17.532766454853117,17.422621627803892,17.156670953147113,16.723846746608615,17.534978189971298,18.38778922567144,17.74789431039244,18.093640464823693,18.482455730438232,19.39599080523476,18.41014117235318,18.17832259228453,17.543194376397878,16.97225695103407,16.9664873839356,17.04813994606957,17.048409358598292,17.27437074203044,16.739842591341585,17.039972591679543,17.36436472274363,16.733930006623268,17.42721887351945,18.293336804956198,19.154383859131485,18.578784056939185,18.681323477998376,18.502218396402895,19.132195562589914,18.724652556236833,18.016474994830787,18.28174063656479,19.16851558489725,19.57693951483816,19.524114104919136,20.074897627346218,20.003163021989167,20.516736934892833,20.718485031742603,21.09779228270054,20.145051400642842,19.7139183441177,19.53528923774138,18.820574111305177,19.33158073015511,19.61587649444118,19.543700132053345,20.21408874168992,19.60398771520704,20.464747074060142,21.091337881516665,20.136428700760007,19.47597528481856,19.476702159270644,19.676848678383976,20.464162351563573,19.61814234079793,20.032410466577858,20.631572564598173,20.176840485073626,19.53012312296778,20.155209539458156,19.883190664928406,19.257703458424658,19.478679026011378,19.825509569607675,19.960778002161533,20.325285182334483,20.277592787053436,19.525788717903197,18.58661193912849,18.815982114057988,18.388300741557032,19.056439376436174,18.098402723670006,17.736713434103876,18.344056876841933,17.885354296769947,18.15292659960687,18.323872279841453,19.016515695955604,19.75659744720906,18.901195564307272,19.02837739745155,19.560021439101547,19.86092514777556,20.718263247981668,19.77079812437296,20.454447227995843,20.046297568362206,20.194901860319078,20.074748035520315,20.2882886454463,19.682840039487928,18.828764258883893,18.367362609133124,17.780323981307447,17.521418668795377,17.52203650632873,18.400701889768243,17.547611341811717,17.34594574663788,17.76494052959606,17.17687167460099,17.463969079311937,17.057453203946352,16.276868398766965,16.892374692484736,17.410406570415944,16.500922579318285,17.34852782357484,17.38421499589458,18.38351260079071,18.826682050712407,19.450888528954238,19.534730258397758,20.449112615548074,21.163720605894923,21.7297951602377,22.489632731769234,21.951952268369496,22.624905105680227,22.146367464214563,21.203773057553917,20.89304185844958,20.019189655780792,20.485600483603776,20.697607406880707,20.692035789601505,21.681436989456415,21.212039679288864,21.237009131349623,20.359626037999988,21.183400287292898,20.38559462595731,20.621705715544522,19.738889555912465,19.90517163509503,19.595231044106185,18.768402212299407,18.508915472310036,18.23276413884014,19.094878553878516,18.167484199162573,18.481549196876585,18.136525216978043,19.034368976019323,18.855488694272935,18.645522152539343,19.32592981401831,19.043431393802166,19.051598687190562,19.18647127179429,20.099176281597465,19.51642179628834,20.44156770966947,19.97132313530892,20.229315012693405,20.193249539472163,21.02878835098818,21.803681804332882,21.305908096488565,21.501117285806686,21.25978604424745,21.29069158481434,21.86558733182028,20.909213345497847,21.00923783518374,21.90006193658337,21.727349215187132,21.20246705925092,22.121507262811065,21.56296290596947,20.841079279780388,20.44153108773753,20.006046829279512,20.05030717747286,20.107939512003213,19.822448044549674,18.955458915792406,18.035484610125422,18.102229095064104,18.197619655169547,18.088726460002363,17.822205046657473,17.33941470971331,17.474462119862437,18.407879699021578,17.964822043664753,17.233218058012426,17.752131729852408,17.687947310507298,16.988000154029578,17.034606056753546,17.84901238558814,17.087690465152264,16.11702157370746,15.97257717512548,16.917703242972493,16.30136154498905,16.513077516574413,16.898651474155486,16.155702237971127,15.972649765666574,15.268045675940812,16.157138872426003,16.951802030205727,17.675187966786325,18.581895098090172,18.87238412257284,19.375539633911103,20.375281061045825,20.52997191576287,20.743353318423033,19.753330289851874,20.041576060000807,19.855847667902708,20.01899085054174,20.044325186870992,19.982342296279967,19.860857704654336,19.117801319807768,18.64954133145511,18.992864069063216,19.76359327416867,20.375786167103797,21.305053781718016,21.889976779464632,21.671774426009506,22.387235418893397,21.71027823863551,21.13575041666627,21.667868424672633,21.663437753915787,22.546463595703244,23.37038732646033,24.122001386713237,23.59628100739792,24.212718612980098,25.206351171713322,24.585306917782873,23.820536039303988,23.915535669773817,23.03345252852887,23.84700179193169,22.979722500313073,22.794480088166893,23.398302267771214,24.216095097828656,23.614621041808277,23.956323322840035,24.079978029243648,23.265948556363583,23.830971761140972,23.59164348244667,23.898770795669407,24.678799396380782,24.36027129087597,25.157996704336256,24.870656492188573,25.2343859965913,24.975973677821457,24.862345729023218,24.28425326012075,23.450194676872343,24.29596666060388,24.877304528839886,25.002194060012698,24.796654038131237,25.4612068971619,24.570772398728877,24.551964314188808,24.51750410394743,24.090712717268616,23.41388143505901,22.50628367299214,22.49769549909979,22.43189269118011,22.214426669757813,21.446350156329572,21.12284228671342,20.943785046227276,20.95867672096938,20.591803392395377,19.694084206596017,19.975559569429606,19.832395383622497,20.188827387057245,19.703558722045273,20.35226659476757,21.12245844118297,21.617213770281523,21.476874229032546,21.823027583770454,22.517300342209637,23.039724904112518,22.047053133137524,22.183060001116246,21.603244482539594,21.96651051705703,22.350307214539498,22.003450643271208,22.74631785741076,22.43392957840115,22.32113637914881,22.43430209811777,22.908443899359554,22.648459718562663,23.148128201719373,22.641115191858262,22.701467524748296,22.8664753572084,23.78002197854221,24.647297178395092,25.16281066648662,24.54917149990797,25.095120158977807,25.61242728959769,26.1333708204329,25.137750362977386,25.92304589599371,25.392620593309402,25.29990095924586,24.654299650806934,24.689427841454744,23.74425949715078,23.556725761387497,23.655352967325598,24.047022162936628,24.963996077422053,25.62654057191685,25.02437649993226,24.151624353136867,23.28705740906298,22.862035322003067,22.285408875904977,21.512362582609057,21.561397191602737,22.398003892041743,21.45520776323974,20.980306764133275,21.851723575033247,21.80752908810973,21.634434897452593,21.616204453166574,22.19278775434941,21.578026776667684,20.63354260008782,21.579314338043332,22.55080522596836,22.625782287679613,23.49575646268204,23.98956468142569,23.78536602249369,23.37089180201292,22.795951617415994,22.15832138294354,21.98828700184822,21.000593749806285,21.67737892875448,22.55395979480818,23.19371724780649,23.65298584057018,23.115694494452327,22.41879614535719,22.431526477914304,22.364543193019927,22.61123050842434,22.726008064113557,22.253492039628327,22.163571000564843,23.151422259863466,23.55898558581248,23.109997305087745,22.88623283384368,23.321121169254184,22.369401443284005,23.180759770795703,23.05211921269074,23.285059842746705,22.34969337284565,21.88069959823042,22.721108245663345,21.978071581106633,21.7948748646304,21.979201718233526,22.551772797480226,23.01116752345115,22.547023099381477,22.37242135964334,21.84066770458594,21.22135710902512,20.385287568438798,19.42284560902044,19.73753201123327,20.73695514909923,20.92890600534156,21.163805013988167,22.15142308641225,23.108148951549083,23.110492575448006,23.149678625632077,22.56470191013068,23.062334345187992,22.224703026004136,21.901313656009734,22.82221237011254,21.920272135641426,22.083034271840006,21.1422907714732,21.867806071415544,20.885399864520878,21.000435910653323,21.65480358712375,20.873853073455393,20.630473104771227,19.691653575282544,20.5375539730303,19.735952405259013,20.429586282931268,21.246156512759626,20.25926543585956,20.135656101163477,20.40375926392153,19.872107442468405,18.985337550286204,18.28463707352057,19.096116741653532,18.11479044891894,18.284917049575597,18.90949942264706,18.71465435810387,17.81345826620236,16.907822645734996,17.70704578794539,18.28730755392462,17.620838774368167,18.57744700089097,18.847384721506387,19.335358252283186,18.335826183203608,17.62701401906088,16.687208766583353,17.60887049185112,17.84068658296019,18.705872782040387,19.337993894703686,19.911798931192607,20.84765052422881,21.838700820226222,22.142629589419812,22.9622585917823,23.74463560944423,23.144065083004534,23.17966980068013,22.270687990356237,21.94784932769835,20.97434549499303,21.490336193703115,20.654462598264217,20.314078494906425,20.507478420622647,21.36823029909283,21.061633090488613,20.76395183056593,20.69328828016296,21.543699380010366,20.88472787803039,21.130017023533583,20.772552884649485,19.954856612253934,19.755534382071346,19.665100117679685,20.484195002820343,21.126008646097034,20.58844656124711,20.62993316166103,20.36661272868514,20.242058229167014,19.294616603758186,18.426472725346684,19.223113182000816,19.152359975501895,19.573399388231337,18.591057357843965,18.274665480013937,18.61641678819433,19.588031865190715,19.880020508542657,19.78219029540196,19.569564348086715,19.586683818604797,20.312360909301788,20.732075885869563,21.236742915119976,22.00415077712387,21.233922456391156,20.999434523750097,21.467253748327494,20.759462034795433,19.914323454722762,20.6312595452182,20.27301366534084,20.248071021866053,19.556907542515546,19.846267161425203,18.90351079031825,17.912664057221264,16.941908713895828,17.897835250012577,17.177447237074375,17.055596763268113,17.351125145331025,16.92270560748875,16.141886992845684,16.20786365075037,15.995990582741797,16.692508722189814,16.437192962970585,15.610282490961254,15.078316189348698,14.560518897604197,15.478252848610282,15.186854138504714,14.28206692636013,13.755629382561892,13.291249339468777,12.952893612906337,13.570169658400118,13.835781169123948,13.641167706809938,12.921320683788508,12.82016117265448,12.762024248484522,13.5139244152233,12.605279069859535,13.134935888461769,14.102119038347155,13.918842040468007,14.291850845795125,14.228499330580235,14.032031514681876,14.661259740125388,14.645186175126582,13.867769004777074,14.152716326527297,14.87141882861033,15.380214509554207,15.414842337369919,14.496676759328693,14.541883909609169,14.20172411063686,14.756710779387504,15.088554981164634,15.222181297838688,15.579281733836979,14.591498582158238,15.27265985822305,15.793435138184577,16.052586877252907,16.008945341221988,15.768349166028202,14.891980030573905,15.53978662705049,14.565780410543084,15.015382468234748,14.79579918179661,14.868649262934923,15.469844352453947,16.224777751602232,16.050272895488888,15.650637991726398,16.010854346212,16.65419023297727,16.327320740092546,17.237979459110647,16.901364563498646,16.99979481101036,16.44065399421379,16.758441684301943,16.1996827875264,17.110814929939806,17.06117110932246,16.748735119588673,16.061705560889095,15.543722396250814,14.564481576438993,14.907726604957134,15.563519042916596,16.24449550965801,16.482343568466604,16.422691070474684,15.66257182462141,15.434181227814406,15.664345679804683,15.836781163234264,15.042132077738643,15.817900284659117,16.207378764171153,17.19403110956773,17.588249277323484,17.978243282530457,18.687037854921073,17.879121821839362,18.286954579409212,18.64141128398478,19.021365810651332,19.566249866969883,19.869816223625094,18.942979652434587,18.177408838178962,18.011920244432986,18.570086732972413,17.738382866140455,18.39776779199019,19.255927480757236,18.675477747805417,18.395181322004646,19.339783889241517,19.768419067841023,20.515915296506137,19.579280874226242,20.40001379372552,21.304937973618507,21.727636424824595,22.009755196981132,22.557279337663203,21.711503327358514,21.354417700786144,21.29144423827529,20.55130239808932,19.90960201760754,20.82476708199829,20.08639044361189,19.847754932474345,19.493577321991324,18.79125690786168,19.608678229618818,19.03334060870111,18.323870454914868,17.619820648804307,18.10086636291817,17.135758482385427,16.74131302209571,16.601157158147544,15.89908434683457,15.908854029141366,14.924056676682085,14.92425558110699,14.231352604925632,13.67814431572333,13.743500212207437,14.309620251413435,15.286864961497486,15.26399973127991,15.682258126325905,15.2856030697003,14.914511827751994,15.753834461793303,14.937243904452771,14.61387633671984,14.54617058346048,13.975414026994258,14.66098505910486,14.352579959668219,14.667776884976774,13.73760742181912,13.953348134178668,14.208419040311128,13.860502667259425,12.866205350030214,12.575515581294894,13.470378471072763,13.842589093372226,14.423169856425375,15.29681733250618,14.835622292943299,14.842552826739848,15.114430648740381,15.72560981893912,15.098641260992736,14.929596710950136,15.099494963884354,15.34035516018048,14.676522235386074,15.237417706288397,14.407247371971607,13.7244076654315,14.124556473921984,14.758552202023566,15.165456832852215,14.661946604494005,14.83753919461742,15.628488790243864,16.39988898904994,16.532967964187264,16.66798188397661,16.318841617088765,15.778702985029668,15.956747312098742,16.90848027402535,17.807921916246414,18.402163919527084,17.507308615837246,16.977264674846083,17.063132449053228,16.673515202943236,17.07398502388969,16.705420914571732,16.67942508496344,15.851864162832499,16.327497076243162,16.525562157854438,17.17868492566049,17.00159608339891,16.06677389703691,15.978847587481141,15.436043642926961,15.816932373680174,16.238799290265888,16.853141956962645,17.643932360224426,17.60565201099962,18.5833269986324,19.318196398206055,18.599822901189327,19.261370171327144,19.03299597557634,18.967522801365703,18.46420724922791,18.353697747923434,19.316946897655725,19.96760632796213,19.487836733460426,20.11479714885354,19.177560379728675,18.386390011757612,19.365598859731108,19.711593401618302,19.672075203619897,19.261564939282835,19.97369173867628,20.026554483454674,20.1585550182499,20.518576870206743,20.71973414113745,21.40167105430737,21.28011473780498,20.348172199446708,20.964693122543395,21.627700264099985,20.824975348543376,20.622221018653363,20.469363678246737,20.745069564320147,19.85689246468246,20.373531756922603,19.76073946012184,20.26775954477489,21.265520183369517,22.13582294387743,21.343576568644494,22.072562476620078,21.38118609879166,21.334637055639178,21.656480885110795,21.268837075680494,21.603038514964283,21.219674226362258,22.182755558751523,23.080917082726955,22.653998530935496,23.211010697763413,24.076392863877118,23.07665241835639,23.371634130831808,22.945361538790166,23.34982099244371,22.69983225222677,22.42384984716773,22.6685867998749,22.256703776773065,22.23839361872524,21.537737359292805,20.858366745058447,20.676283951848745,20.17227767780423,19.773316373117268,19.471349419094622,20.276801090221852,20.364352556876838,19.441615777555853,18.551316138822585,19.23619429115206,18.444058728870004,18.45352916698903,18.770315400324762,18.615098654292524,18.072495809290558,18.926001167856157,18.944912579841912,18.345382422208786,18.184981025755405,18.240587294567376,18.19653869094327,17.5252169277519,18.154210215900093,18.126565838232636,18.27558524115011,17.830712758004665,17.427805454004556,17.36082595679909,17.857018272858113,18.655979686416686,18.531047793105245,18.44748202105984,18.1834140191786,17.96694493573159,17.631327087059617,17.935354224871844,18.095657089725137,18.47033655550331,18.359392216894776,18.401092783547938,18.447120228316635,18.528738123364747,18.90421188622713,18.45053517445922,18.423452884424478,19.244389670901,18.792322024703026,17.856963677797467,18.0184513409622,18.603778195101768,18.98449057759717,19.620038878638297,19.467794968746603,20.221250080969185,19.92706779157743,20.444047845434397,21.343143304809928,20.377424866426736,20.873523003421724,21.327201186213642,22.223378074355423,22.8522356916219,23.683047980535775,23.58822199003771,24.561552858911455,24.358240369241685,25.176524166949093,24.33830296387896,23.73564345855266,23.164808752480894,23.75652428297326,24.576394205447286,23.731159939430654,24.54618941480294,24.049173327162862,24.043788010720164,23.11271326849237,23.80798752233386,24.689292364753783,24.472935256082565,23.997982297092676,23.52211325475946,23.47335230372846,23.629443177953362,24.22166308388114,23.709173797629774,23.88468053471297,22.975447880104184,22.22411342803389,21.690025099087507,22.210761011578143,21.61823666933924,21.585408713202924,21.488028744235635,21.912195765879005,22.36995975067839,22.610085230786353,22.659572513308376,23.423114210367203,22.589641366619617,22.842489182483405,22.35111275454983,21.67184831434861,21.8835381641984,21.040730429813266,20.09179016156122,20.481720259878784,20.52101414743811,21.46361747197807,22.437403335701674,23.37775997677818,23.45628222869709,23.520389111712575,22.91331528360024,23.508399792946875,23.134637628681958,23.66807963233441,23.353819611482322,23.315446787513793,23.681607224512845,24.585548102855682,25.213486709166318,24.847217310220003,25.4731593481265,26.416551323607564,26.05231180228293,25.72231599641964,26.167066840454936,26.98400430008769,26.20236439956352,25.281045449897647,25.18633945984766,24.417972896248102,23.85935591813177,24.37276202114299,23.930872068274766,23.296791048254818,23.797104229219258,23.74380279891193,24.68071104446426,24.292296409141272,24.76068635750562,24.732043306343257,24.173095640726388,23.866213732864708,23.383680802304298,24.15445984294638,24.228797263931483,25.136143324896693,25.472961253020912,24.504922727122903,24.17764758411795,24.678299481980503,25.64295407710597,26.09427846595645,25.770848096348345,25.77445504255593,25.353788887616247,25.382808917202055,26.353347822558135,25.507828783243895,25.8488647271879,26.44351994106546,26.926377810537815,25.972370110917836,25.563173601869494,24.89348069485277,24.49711911007762,24.836171629838645,24.23889168864116,23.938846099656075,24.2650321633555,23.285058948211372,22.94883618457243,23.276098090223968,22.593835229519755,22.824979291763157,23.67718241037801,23.410417920909822,23.209453615359962,23.672206627205014,23.286754499189556,22.86320606712252,23.85233919741586,23.48476657923311,22.918081604875624,23.499773911200464,24.186721686739475,24.990657770074904,24.14692414365709,24.430151261854917,25.249351664446294,25.10812583938241,24.674289559945464,25.154792993795127,24.577991914004087,23.669639182742685,22.793485863599926,23.41986430156976,23.16536535322666,22.769019096158445,22.404040433466434,21.701026290655136,22.583275600802153,22.381328696385026,21.85121421283111,22.82784809684381,22.97414044290781,22.866520188283175,22.045546564273536,21.71890169661492,20.95691731199622,20.895261726807803,20.719666412100196,19.814211008604616,20.47265298711136,20.867220719810575,21.42907463060692,21.043804422952235,21.095271692611277,21.116023783106357,20.363294121809304,19.7404125793837,19.42763115465641,19.964480850845575,20.11817568913102,20.431007695849985,20.355995426885784,20.678307885769755,21.33998854737729,21.23998275678605,21.674163810443133,20.85135889844969,21.331726677250117,21.952190952841192,21.32916655112058,22.05480474093929,21.147645263932645,21.97263868851587,22.51042959233746,22.169508513994515,21.8708754805848,21.13911736384034,21.925534395035356,22.35076100192964,21.82029263768345,21.911496728658676,22.458927656989545,23.196660481859,23.78838503919542,23.28133280482143,22.657950534950942,22.27313762390986,23.126272203866392,23.78724100999534,23.579255524557084,22.808070566970855,22.675509260501713,23.38386245071888,22.837141003459692,21.892542749177665,21.458112625405192,22.300102369394153,23.025477810762823,23.910401699133217,23.533719141036272,22.841254680417478,23.70000311359763,22.888861613813788,23.593300171662122,23.969576532486826,24.779720154590905,25.195209115743637,24.403322748839855,23.886605928186327,24.23930831812322,24.56977387331426,25.173975062556565,24.70593251241371,25.062627694569528,25.04478900274262,24.721431599464267,24.672444941475987,24.492065322585404,23.67975796898827,23.56582073913887,23.211148127913475,24.14666078099981,24.258062853943557,24.96335788536817,25.4834186444059,24.667473850771785,24.024410478770733,24.258639082778245,24.956451047677547,24.53295356966555,24.739223526790738,25.449083097744733,26.38372609158978,26.952624106779695,27.344187264796346,27.80259812809527,28.203510550782084,27.448517149779946,27.978580890223384,27.476188672240824,27.99809945328161,28.101579287089407,28.674426448065788,29.64131896616891,30.50468610227108,30.931653738487512,30.577367225661874,30.594847076572478,31.546503038611263,31.313232633285224,31.322359041310847,31.202950996812433,30.26482589682564,29.432352972682565,29.852173653896898,29.24163741338998,29.321046453434974,28.332073658704758,28.298821900971234,27.468899690546095,27.990242609288543,27.809185442049056,28.572719123680145,29.297610762063414,29.458667080383748,30.303763462230563,30.47133545856923,31.423492897301912,30.78165587456897,29.953043372835964,30.241516208276153,30.80026154825464,31.58069787407294,30.73682915372774,31.21917158178985,31.076027233619243,31.72460182895884,32.38611417170614,32.58010180434212,31.87574884481728,32.44573463406414,32.00939202262089,32.523389850743115,33.32325353147462,34.14268627529964,34.18551698606461,33.29800631897524,34.22717081476003,33.4106909269467,33.68111335346475,33.54451831849292,32.875857893843204,33.066854682751,33.01676038606092,32.967079415451735,32.89987607765943,32.45956557104364,31.802013385575265,31.64285023836419,31.44545462122187,30.941901383921504,30.8057568971999,31.11190922698006,30.43086412921548,30.254445567261428,29.28174294810742,29.11806903593242,28.31822886597365,27.36706188786775,26.577785872854292,27.304818802513182,28.041063351090997,27.327973248437047,26.444258629344404,25.698520203121006,25.17939346563071,24.460648075677454,24.650513019878417,25.487278127577156,25.763041344005615,26.359825387597084,26.35126527538523,25.62030175048858,24.933431186247617,24.58290813025087,25.48310038726777,26.45165199972689,25.90747049637139,26.028714896645397,26.909367286600173,25.91568705253303,25.00979355396703,25.535711616277695,25.806277934927493,26.368390110787004,27.219739525113255,27.68356870301068,27.834410639014095,28.540410866960883,28.266921179834753,28.107392300851643,28.682089905254543,29.419535039924085,29.51377869490534,28.606432552449405,29.301336743403226,29.591017397586256,29.34729791339487,29.83341549290344,29.652662951964885,29.047959584742785,29.97163852583617,30.71963003417477,31.24379407381639,31.72344261407852,30.825093709863722,30.517101236619055,31.127906414680183,31.69116080412641,31.19926645467058,31.674859817139804,32.404299789108336,32.25070282025263,33.23322357982397,32.69159393850714,33.46073309332132,34.16671373927966,33.78180447453633,32.90058671776205,33.47773821791634,32.735145720187575,32.647196118719876,31.67340223584324,31.291649842634797,32.2704973584041,33.069357899948955,33.5400120196864,32.721854775212705,31.892410296481103,31.746713034808636,32.475369022227824,32.657361990306526,32.38479462265968,32.34822594514117,32.360529186204076,31.499305810313672,30.98398031387478,31.239149913657457,30.43003063555807,31.04970557289198,31.341427469160408,30.68122072983533,30.317242710851133,31.023249607998878,30.640080221462995,30.977125216741115,31.547167769167572,31.14786436315626,31.62973649520427,31.400880082976073,30.453702879603952,31.290572248399258,31.315846601501107,30.968763516750187,30.86644259048626,31.576767357997596,31.0695104659535,31.057319400366396,31.409599295817316,31.997796169947833,31.62041981657967,30.749016572721303,30.41608676640317,30.168596462346613,30.251202686689794,29.265867196023464,29.57612846745178,29.010455226060003,28.39070769632235,28.739932072348893,28.946865716017783,28.875936266500503,28.26563913701102,27.34481858741492,26.755779336672276,26.561103139072657,26.287187363486737,25.907898244913667,25.527928384486586,24.970062933396548,24.83296896656975,24.389402657281607,24.760067705065012,24.9948394279927,24.44126336183399,24.743976842146367,23.94030231796205,23.66275784932077,23.497004178818315,23.926313859410584,24.882637256756425,25.214740545954555,25.417663142085075,25.13353521330282,25.965082072187215,26.964297669939697,27.649505090899765,26.856293134391308,27.156140034087002,26.569762788247317,26.119963369797915,26.227528968825936,25.442363332491368,26.0406974516809,25.73173967190087,26.660205656196922,27.18736917991191,26.365261376835406,26.63961859839037,25.833260532002896,26.135192465037107,25.960641567595303,26.538601226639003,26.01767828455195,25.17447575321421,25.380060725379735,25.45843067392707,25.77915524272248,25.847058411687613,25.828839269466698,26.825039443559945,26.308140547014773,26.05104476120323,26.440157591365278,27.339022708591074,27.968060484621674,28.280740194022655,27.47411044780165,27.715624071191996,27.03402345813811,26.850174077320844,26.259304696228355,26.506145887076855,26.38685957668349,25.573109951801598,25.98004717286676,26.921324010007083,27.323138527572155,27.932780989911407,27.091956310905516,27.49996667727828,27.795107959769666,28.282986460253596,28.852176701184362,27.98207430820912,28.843673828523606,29.678779593203217,30.35079861804843,30.687914058100432,29.895694710314274,28.907001901883632,28.030011989176273,28.14174368744716,28.33254591189325,28.913243014365435,29.179518352262676,28.228295542299747,28.675845422316343,28.184592900797725,28.480635991320014,27.570974364876747,28.489595441147685,28.453746776096523,29.273583920672536,29.686259001027793,30.092091157101095,29.298994298558682,29.821531302295625,30.63222947763279,31.05984634719789,30.188372176606208,29.91144552687183,29.368614229373634,30.06469479901716,30.330366057809442,30.1872249385342,31.167592698242515,30.404928259551525,29.904164373874664,29.691816558595747,30.456823781132698,31.300450628157705,31.183292638510466,31.5642667892389,30.81026453478262,31.5775789860636,31.311008726712316,31.01024074992165,30.252841716166586,30.27361858310178,29.593005142640322,30.274341427721083,30.75839784182608,31.728916822467,32.33775914926082,32.909650444984436,32.4427005215548,33.1315151322633,32.46851240610704,32.20849679317325,32.88860797416419,32.726658295374364,32.190902271773666,31.54801582125947,32.2660522502847,33.05294364830479,32.51539854519069,31.885267287492752,31.63402462238446,32.06881620269269,31.56829264946282,31.676096411887556,32.43404342466965,32.576569901779294,33.15906826592982,33.31949324719608,32.35698558250442,32.84453272121027,33.18991492781788,32.28798844013363,31.973400495946407,31.54889525938779,31.466531184501946,31.181933742947876,31.64713429613039,32.41072135278955,32.21518831467256,33.00250911060721,33.51813377905637,33.94718102365732,33.77656163088977,34.36917038960382,34.60498073184863,34.4262076318264,34.638999599497765,35.136549287475646,35.399079258553684,36.18891423335299,35.55530248954892,35.905211427249014,35.94113988010213,35.59558806754649,35.65574088599533,34.74009207356721,34.89521358627826,35.33280870644376,34.64407050982118,34.43159056594595,33.49538551829755,34.38385496754199,33.58717766124755,34.21255248133093,33.237705167382956,33.97204260760918,33.385070582386106,33.31996245868504,33.18230277206749,33.62760657584295,33.19251307006925,33.64383356226608,33.226235028356314,33.662298060022295,33.17057972587645,33.324545917101204,34.073489780537784,34.687635115813464,34.327806293964386,34.72548277070746,34.45239548338577,35.286026884336025,36.08567157527432,36.68278070446104,36.98398172296584,37.65938639966771,37.72515089344233,37.82142882514745,37.16335069434717,37.998669563326985,37.82698167581111,37.26998120546341,36.96504488727078,37.03748672455549,37.94511138135567,37.320159702096134,36.658995939884335,35.735758387483656,34.87422678666189,35.30677638761699,34.38411753345281,34.85901021817699,34.24759192718193,35.18474874692038,34.33003608090803,33.94748537661508,33.272590511478484,33.94375576172024,34.103724100627005,34.79650830198079,34.038384481333196,34.673443940933794,35.209744279272854,34.47800560109317,35.14098517596722,35.19693503296003,35.89395465934649,36.22723688185215,35.94525146111846,34.988634103443474,34.870428040158004,34.819260709453374,35.52199099538848,34.61114859255031,35.401799723971635,35.10388186806813,35.048780287615955,35.50208544312045,36.21530214184895,36.514439209830016,36.988210496958345,36.478789563756436,37.21845124475658,37.935159945860505,37.42835197085515,37.238312827888876,36.33951381640509,35.89585187006742,34.9436718323268,34.41613162262365,34.27083295863122,34.56057746661827,34.24562157597393,33.51254849554971,33.1721165063791,32.345288034994155,31.608845938462764,32.41640804382041,32.77099007414654,32.28314989292994,32.26780608994886,32.766553826164454,32.38873671926558,32.941124997567385,33.698085620068014,32.93687194865197,33.71199739724398,34.66402352787554,35.23942597722635,34.7328092828393,33.84935842361301,33.66992592718452,34.617807287257165,34.253853847738355,34.945018503814936,35.103122615255415,35.033786695450544,34.654468820896,33.70463954098523,33.087515756022185,33.23622183781117,33.600514934398234,33.41229943325743,33.715821352321655,32.93920864816755,32.25290058692917,31.871879461221397,30.911778303794563,30.328553022816777,30.8199640722014,30.62983916234225,30.249552085530013,29.935356836766005,30.51341555826366,29.890012593008578,30.789149625692517,30.435132135171443,29.47821846557781,30.138359932228923,29.247953140176833,28.579208084382117,28.711497496813536,28.495762162841856,28.48368101939559,28.09631928242743,28.020487376954406,27.18321187561378,27.4029237232171,26.712214098777622,26.436147540342063,26.473253780510277,26.241426321212202,26.269343493971974,26.06332301767543,26.32647507218644,25.518858012277633,25.26763987215236,25.673294765874743,26.523629635572433,26.480985776521266,27.364459889475256,27.78666994627565,27.185573623050004,26.533719420433044,25.925558058544993,25.935612828936428,26.551988958846778,25.8083262774162,26.737664779182523,26.764883302617818,27.11012325529009,27.037134046666324,26.265693686902523,25.367688480764627,25.4684771951288,26.321830497588962,25.46350740035996,24.629870580974966,24.003114396706223,24.981783585157245,24.080300497356802,24.57413639035076,25.02532773045823,24.264861365780234,24.46094666933641,24.588243534322828,25.208069134503603,24.343158898409456,24.722752219066024,24.673525619786233,23.96317439386621,23.753306622151285,24.142461250536144,25.048131220508367,24.19053890556097,24.033870430663228,24.348199693951756,24.606718241237104,24.35960570909083,23.60103026824072,24.407474738545716,24.273874578997493,24.914709036704153,25.32991929864511,25.73398553347215,24.84721471136436,25.12783385720104,24.44751862855628,24.355358082335442,24.316992030013353,23.397662850562483,24.273084730375558,24.24077848577872,23.637392172124237,24.54882350610569,24.941865388303995,25.509098147507757,26.401060498785228,27.077831521630287,26.599474692717195,26.255463344044983,25.583804885856807,26.105362044647336,26.593285729642957,26.620164098218083,26.17461377615109,26.606112505309284,26.84986918559298,25.85189530113712,25.059044406283647,24.49717732332647,24.267033741809428,24.81732930103317,25.712651826441288,26.04466100828722,27.038575402926654,27.602909015491605,28.497387178242207,29.21718301717192,29.37982195802033,29.1750816735439,29.717532272916287,30.623092795722187,30.676737758331,31.54310225136578,32.05713616684079,32.84816728485748,32.62597886752337,32.729073541238904,33.004134878050536,32.70514014456421,31.73023273376748,32.09224349167198,33.091411508619785,32.172854002565145,31.662715394981205,30.808444304857403,31.448250118643045,31.77979002473876,31.260009071789682,31.573058509267867,31.634375873953104,32.42294400976971,31.902421121951193,32.19630945613608,32.33717498835176,32.80519697582349,32.16414771275595,32.373725267127156,32.63622151687741,33.34143966110423,32.88979747425765,33.65464329905808,33.75423001404852,34.7402961300686,35.00108728930354,34.91511654527858,34.56934371124953,35.51173453126103,35.57357893930748,36.07624107087031,36.71954602282494,35.967381219845265,35.527888698969036,36.09913894813508,36.42790368292481,35.51732165040448,34.69338011695072,34.088387205731124,33.80352464225143,33.1737388856709,33.3915158896707,32.630583002697676,32.00930330622941,31.381384431384504,31.572219053748995,32.22450712416321,32.11815673392266,33.04549332894385,33.13379685766995,33.29434549435973,32.41559360176325,31.44248305261135,31.540125619620085,30.839408537372947,31.115508454851806,31.90305302478373,31.937570066656917,32.49184761568904,32.93798853456974,33.349419376812875,33.83720375131816,32.878919790964574,32.81516646454111,32.72558274585754,32.481059595011175,32.07053621066734,31.090783486608416,30.116898179985583,29.321158518083394,29.366526235360652,30.153005401603878,31.1343897189945,30.339566197711974,30.647795028053224,29.79624533141032,30.012796012684703,30.68948936322704,30.836282941047102,31.79762794962153,31.276906975079328,31.185397513210773,31.811261536553502,31.84017163142562,32.03849042020738,31.369034914299846,31.634455632884055,31.505139598622918,31.910697368439287,31.496201379224658,32.36447580624372,31.44687819108367,31.204769569914788,30.741979875136167,29.880516872741282,28.921711361035705,29.81609039194882,30.199019444640726,31.151989833451807,31.21697911201045,31.085970147512853,31.268359415233135,31.03654515882954,30.30133356526494,30.207230534870178,30.81492412323132,30.08971916884184,29.88191720470786,29.150127129163593,29.59473367827013,29.51194406207651,28.698264287784696,29.263521540910006,28.84996904945001,29.578425425570458,30.189238601364195,29.257235028315336,29.657654512673616,30.153977854643017,29.31981643056497,29.621630577836186,29.97357653453946,29.40010710945353,30.15585690457374,30.917957657482475,30.47927478281781,30.485874462407082,29.752924009691924,29.801244244445115,29.726883014664054,29.14591773506254,29.560036880895495,30.211586552206427,30.297789841424674,30.86475835647434,30.556848894339055,31.416323690209538,31.174779035616666,31.754907463211566,31.656953603960574,31.457641961984336,31.946763614192605,32.77784714568406,32.197326300200075,31.329981355927885,30.695256548933685,30.457999925129116,30.333148297388107,29.53164734924212,29.11974390503019,29.255241277161986,28.541613616980612,29.506238363683224,29.484658090863377,28.836345748975873,29.154920447152108,29.31163388909772,28.390137428883463,27.74713267153129,27.998262321576476,28.76863468065858,28.764555456582457,29.07103656930849,29.062150665558875,28.535634166561067,28.017203892581165,27.46400871220976,27.98044764949009,27.168951280415058,26.596378629561514,25.657299366313964,24.84601096669212,25.361479479353875,26.1258698948659,26.19600575370714,26.457807979080826,26.30548351025209,27.14497986063361,26.685393569990993,26.58444819273427,26.052420140244067,25.20119546400383,25.92041102051735,25.308683935087174,24.54954641032964,23.903519327752292,24.22884608944878,24.29797061206773,23.888296195771545,24.049926245585084,24.418179395142943,24.375418129377067,24.326898141764104,24.9329544887878,24.669375668279827,24.78977746516466,24.752433739136904,24.740407013799995,25.028220418374985,25.311400376725942,26.113704587332904,26.2570186778903,25.380934066604823,25.22288379771635,24.89730155142024,25.77865919144824,25.53459744108841,24.71189668122679,23.93675487395376,23.68754966603592,22.768588214181364,23.524715857580304,23.088133920915425,24.059719945769757,24.130725751630962,24.956431702245027,24.563058322295547,25.215006385929883,26.08419494656846,25.735766493249685,26.55405857646838,25.691744428593665,24.869595472700894,25.5440207477659,25.164246901404113,25.484799532219768,24.544183486606926,24.77936409926042,23.788325192406774,23.602001481689513,22.718865926843137,22.32926582125947,21.710602321196347,22.01422444358468,22.8769947825931,23.29596979636699,23.466712455730885,22.573930751997977,23.38930930523202,24.204963194206357,23.554444298148155,23.551634883508086,24.041716218926013,23.979605262167752,24.837004255969077,24.22455715574324,23.262676483020186,22.400836376473308,23.29325461620465,22.826781403273344,23.149480933323503,23.869759829249233,24.645930777769536,24.190403265412897,23.704505782574415,23.164162394590676,23.73137955274433,24.211553820874542,24.485468016937375,24.828453388996422,24.513724408112466,24.06485289754346,23.713408668525517,23.954719892237335,24.33689634455368,25.297485255636275,25.866990391165018,26.392885275185108,26.449061981402338,27.229862931650132,27.598228922113776,28.31598430732265,28.824881407432258,29.585564968176186,29.51958863530308,29.803510097786784,29.195493725128472,30.167506197467446,30.196436313912272,30.1545990887098,29.316402971278876,29.398173672147095,29.161298129707575,28.691890416666865,29.326375416014344,29.05111155938357,29.031966629438102,29.821934265550226,29.082798725459725,29.35155301867053,29.737320439890027,30.02286162879318,30.55869370419532,29.702107581309974,30.609807886183262,30.857384039554745,29.980610413476825,30.96868184907362,30.93796476814896,30.67682356480509,30.601470262743533,31.328348649665713,30.649695069063455,30.29862980451435,31.268153335899115,31.48529406124726,31.508001801092178,30.957374387886375,30.250711934175342,29.443310065194964,29.04657324589789,28.36186945810914,27.93168895272538,28.32761373743415,27.482564634177834,27.709166971966624,27.86668553808704,27.481384427286685,27.95010202517733,27.150424650404602,27.61000096751377,27.568850659299642,26.599196621216834,26.16911857482046,26.42326373560354,27.27384605165571,27.517158785369247,27.326011660974473,27.892174321692437,27.434623721055686,27.946633881889284,27.78270551888272,27.518977297004312,28.346103699877858,28.737327869515866,28.38363128527999,27.43961032992229,27.373320996761322,26.805120550096035,25.86988668842241,25.28549352288246,25.197915092110634,26.11843952257186,26.09593888418749,26.909192045684904,27.619828808587044,28.451306554488838,29.1377386697568,29.825163995847106,29.394652221817523,29.30909061199054,28.587128951679915,27.72954219020903,27.248232298064977,27.571518271695822,27.347189251799136,28.126518615987152,28.238382223062217,28.055339524056762,28.26261964207515,29.218405179213732,28.30650147749111,28.677435523364693,28.0395063534379,28.477922840043902,29.40216703247279,28.958335494156927,27.976364399306476,28.183535129297525,27.97418942907825,26.975448965560645,26.27450896287337,26.911634814925492,26.20453360909596,26.995743453968316,26.52280466631055,25.62872652988881,24.65896614640951,23.812363295350224,23.682184320874512,23.292120383121073,23.25876898691058,24.03126159403473,23.821151543874294,24.7323319199495,25.059604508336633,24.148555191699415,24.07121863635257,25.002711014822125,24.981177570298314,24.034894911106676,23.04298382345587,23.385620716027915,22.568490136414766,22.056854034308344,21.583803485147655,22.22805984597653,23.079431931953877,22.914864407852292,23.122946305200458,23.771810619160533,23.19858246203512,23.204593496397138,22.7235111836344,23.589067884720862,23.068684943951666,23.668769503943622,24.291646538767964,24.027246869169176,24.802283233497292,25.079065159428865,24.641160091850907,24.883012000937015,24.650885195937008,25.32588505651802,24.58224234683439,23.778938808478415,23.78153541777283,24.18902196921408,23.331145716365427,23.96784938732162,23.713609357364476,24.30464756069705,23.38516191812232,22.50554241752252,23.44257834646851,24.04897379828617,24.827892763074487,23.860176702961326,23.24112547468394,23.49537838017568,23.469870786182582,22.973937646020204,23.32150843227282,22.753312475979328,23.058013470377773,22.22512147668749,22.53961095167324,21.64108892576769,21.476083194371313,21.507697929162532,20.996981921605766,21.688218850642443,21.427081844303757,22.073447659611702,21.832900308072567,22.319648020435125,22.822490222752094,22.10182138485834,22.99330377113074,23.508348030038178,22.86039153067395,23.187831082381308,23.212198495399207,23.90284564020112,22.95933483261615,23.121477478183806,22.706427310593426,23.48958380986005,23.132270963396877,22.14199599577114,21.184454783331603,22.18344450322911,21.383668414782733,21.773154141847044,22.241824108641595,22.58353684656322,22.837247448042035,22.726274682208896,23.56515930360183,23.37793871574104,24.16154500003904,24.014492804184556,23.385776902083308,23.989121442195028,24.57987776072696,24.28011821815744,25.150601972825825,24.21650477172807,24.90685993526131,25.705875977873802,26.070336082950234,25.91770449653268,25.215868117753416,25.08131173113361,24.836620623245835,24.168677435722202,24.15596486767754,24.794028620701283,23.985651075839996,24.229055784177035,24.563987192697823,24.161371359135956,23.44326218124479,24.275411266833544,25.08850752003491,24.167825199197978,23.949986794497818,23.3125759861432,23.863164090551436,24.01206684531644,24.649580508470535,24.079400642775,24.407953510526568,24.12691564904526,23.383241216186434,22.900276044383645,23.35963314631954,22.372700655367225,21.618161315098405,21.726124400738627,20.973776108585298,21.79509289888665,21.611635013017803,22.00888442620635,22.084731405135244,21.31745094805956,21.877741066738963,22.499036867171526,21.59254025714472,21.730425460729748,21.87806617980823,20.900232315063477,21.58597227325663,22.191856204532087,21.214915157761425,21.72763441922143,22.42150860466063,21.490184522699565,21.405566116794944,21.85610148496926,22.341969774104655,22.912250538356602,23.00107412599027,22.420421504881233,23.31906403088942,22.41510859457776,23.133598097600043,22.38966669468209,22.12442648038268,21.908981061074883,22.37536278832704,21.467987437266856,21.65392622537911,20.703741180244833,20.177641202230006,19.709373808000237,20.227357075549662,20.766782586462796,20.800937867257744,20.317724977154285,20.02335725724697,20.7676180168055,20.92004452832043,19.991592130623758,19.581014355644584,18.59884758805856,18.13067107181996,17.868728402536362,18.053882736712694,17.61223861016333,18.042346608825028,18.31245821202174,19.04547415813431,19.210460477974266,19.34445385541767,18.42816583160311,17.876508919987828,17.02010484598577,17.707706312648952,16.71935350075364,16.86813186854124,16.209925691597164,15.654159998521209,16.326608357485384,15.629575015977025,15.31510720634833,15.603255946189165,16.50988523242995,16.04890300054103,16.892322291154414,17.48141682939604,17.780623065773398,18.165790637023747,17.31970283575356,17.814294974319637,17.58737407019362,17.017971341963857,17.01021436881274,17.637341039720923,17.735717710573226,16.910382515285164,17.430299845989794,16.727057381998748,16.371674795635045,16.921968832146376,17.900635110214353,18.12154841562733,18.16280848532915,18.543779608793557,18.34890898456797,18.258376909885556,17.819430643692613,18.261452314909548,18.703875256236643,19.556060910690576,20.40124911116436,19.867562246974558,20.041957976296544,19.16954123834148,19.50806829240173,20.031587003264576,20.467525042127818,19.54410894168541,19.734572315122932,20.40872539812699,20.862175108864903,21.325418297667056,21.046734229661524,21.788188455160707,20.819172391667962,20.49762034509331,20.74815037054941,21.14661745959893,21.946889475919306,21.52946487395093,21.90615835553035,21.206458510831,20.783061286900192,20.11195044685155,19.433280285447836,19.227162750903517,19.19128881394863,19.345325987786055,19.024072403553873,18.56597988680005,17.616709078196436,18.05744099896401,17.321024200413376,16.821125817485154,17.694492359645665,18.44691614387557,17.76378887426108,18.39311785530299,18.263764969538897,17.57733153598383,16.801243422087282,16.704979995731264,17.502603454049677,18.438077523373067,19.22528859321028,19.81809196434915,19.270492765586823,19.308044714387506,18.84484503697604,18.719477507285774,19.613518327008933,19.641960876528174,18.6630496410653,18.866421579383314,19.82901716278866,20.054319015238434,19.839130737353116,19.985847315285355,19.306482818443328,19.950491306837648,20.58719860482961,20.572073493618518,19.61713905259967,19.852816372644156,19.70285031106323,20.062156409490854,19.430868783034384,20.211240126751363,21.05859403591603,21.25580172240734,20.805640576872975,20.538843174930662,21.4928134996444,20.89431422483176,21.72893135296181,20.78606873936951,21.04737275512889,21.930546950083226,21.261626560706645,20.34750533569604,20.315733642783016,21.00022841617465,21.379159082192928,21.37820733850822,21.836528875865042,22.250570661388338,22.36519248597324,22.104215318802744,21.15969927702099,21.620329110417515,22.498916785698384,22.434777034446597,23.110246903728694,23.943928753957152,23.800341150257736,23.795545716769993,24.3382663638331,24.531384813133627,24.17017911048606,24.0134938810952,24.521147255320102,23.683557100128382,22.855273789260536,22.497963888105005,21.753409910015762,22.195529283955693,21.591692397370934,20.744669802952558,20.5230118567124,20.428935463540256,20.90193063346669,21.27351100044325,20.53743089409545,21.088305321522057,21.11308173649013,21.56383625883609,21.866462060716003,21.51946490397677,21.01994460867718,20.760014086496085,20.448971038218588,20.08953262679279,19.120028919074684,19.741739589720964,19.34277629107237,19.360033416654915,19.352924750186503,18.757780267391354,18.397435874678195,18.06914382893592,17.195637154392898,16.21558436844498,16.628247029613703,16.498401262797415,16.92188592767343,16.096019374206662,16.54167822562158,16.00920103630051,16.030994098167866,16.25160712050274,17.13801268255338,17.847853838466108,18.09174008667469,18.58162958594039,18.91268600989133,18.512456316500902,18.50475234305486,18.668580351397395,18.346872503403574,19.012438718229532,19.071449474897236,19.3410213640891,20.32281550578773,19.378632355015725,18.41293117776513,18.790624242741615,18.53531535482034,18.86166227143258,19.004441558849066,18.598206306807697,18.078251462895423,18.59172583837062,18.872497749049217,18.480208057444543,17.61603033542633,17.10595351457596,16.10850592656061,16.17419504141435,16.46873127343133,15.821742102503777,14.96077173948288,14.802079725079238,14.113495562691242,13.619761337060481,13.815239707939327,14.326060723979026,14.871877093799412,14.948780099861324,15.675156160257757,16.394001703243703,16.82243772270158,16.24577876087278,15.511539359111339,16.307395559269935,15.937251809984446,16.20809363387525,15.311133046168834,14.976981258951128,15.75176284974441,16.600535925012082,16.22073900513351,15.810363746248186,16.7673052479513,16.977461024187505,17.241519142407924,16.683896142523736,16.283117453102022,16.997003390453756,16.604858248028904,16.47994347801432,16.85011873394251,17.350552396848798,17.139068161137402,16.26482706097886,16.765732559841126,16.463545333594084,17.426867404021323,16.538678012322634,16.7112530679442,17.12333869934082,16.832364899571985,17.30568847246468,16.65005833795294,17.521359954960644,17.02989963069558,16.839621901977807,17.609398351516575,17.41042559267953,16.80118628870696,17.00716405780986,17.937324894126505,18.62436807807535,18.22903295280412,17.745470093097538,17.743737537413836,17.49258482363075,16.943976731505245,16.03179728006944,16.888524795416743,17.238422446884215,17.645549471955746,17.904068536125124,17.879781315103173,17.92720796028152,18.158008572179824,18.087853703647852,18.927171036601067,19.176867541391402,19.723123053554446,20.34422409022227,19.960102674085647,20.509738225024194,19.92558124428615,19.925267888233066,20.528270828537643,20.58959340583533,21.42275199526921,20.947370148729533,20.96595572773367,21.941211676690727,22.921007763128728,22.683209121692926,23.3553011235781,24.29828842310235,24.83708843542263,24.710987084079534,24.881806841120124,25.774019326549023,25.99487834563479,25.62019502883777,25.011574116069824,24.323445974383503,24.425945343449712,24.86617540800944,25.041993545833975,24.244464652147144,25.182840913999826,25.228301829192787,24.25637552468106,23.867828867398202,23.478594438638538,23.88732686592266,23.881088399793953,23.37094735307619,22.419948228634894,22.56448790151626,21.71872506523505,21.02988097257912,20.553949122782797,19.780140169896185,20.65828829538077,21.397268446628004,21.592614389955997,21.749870954081416,22.72584389569238,23.700590837281197,24.2905026008375,24.856648199260235,24.735722173936665,25.055419380310923,25.262300710659474,26.20679101301357,25.548123428132385,24.777081307023764,25.098267691209912,25.324273174628615,24.49913018429652,24.175852383486927,24.46587892714888,25.31637797318399,26.13187587633729,25.246534732170403,25.008273187093437,24.328075510449708,24.955523543059826,24.926913250703365,25.479079556185752,24.556821666657925,24.370303054340184,24.635086588095874,25.535922302864492,25.762723778374493,26.33610169077292,25.526267402805388,26.418975175824016,27.403459472581744,28.116095162928104,28.454247972462326,28.85614234628156,29.554291114211082,29.060936473309994,29.908988473936915,30.12970078457147,31.107974993996322,31.05919209262356,31.640854097902775,31.92945933016017,31.96809249278158,32.757902469486,33.10874987114221,33.233411270193756,33.59966515516862,33.18387499731034,32.62450235057622,32.49961521010846,33.39263979066163,32.83327936101705,32.6882628146559,32.212132441811264,32.94686254672706,33.625264316331595,33.90655753016472,34.14047559769824,35.08849922474474,34.90983135532588,35.0786063130945,35.98450217023492,36.16144968010485,35.762586631812155,35.20459617534652,34.74307930795476,33.989084291271865,33.216408104170114,32.72839672584087,32.77304907795042,32.639682760927826,32.88081784499809,33.2861985815689,33.4508959101513,33.755267882253975,33.95467267697677,32.99482973944396,33.80859361262992,32.96578162582591,32.810648064594716,33.09154371358454,33.555540503934026,33.5785649237223,34.010655045975,34.73157146200538,35.27323524095118,34.70528141409159,34.582834500819445,34.00888426043093,33.08280814718455,32.69466540124267,31.788598812185228,32.54080099938437,32.566099252551794,31.904843551572412,31.12027231650427,30.560353175736964,31.06465226225555,30.952446310780942,30.975100830662996,31.698259744327515,31.527948875445873,30.86870174529031,30.157561408355832,29.63359476532787,29.949515329673886,30.573948464822024,29.86882150778547,29.776004367507994,30.69337054528296,30.482278423849493,31.340412786230445,30.718944705557078,31.56486119143665,30.627894120290875,29.805613269563764,29.15492547629401,30.13237691298127,29.632679911330342,30.499526865780354,31.376776369754225,30.417609915602952,30.66215275088325,31.41847258899361,30.45556056406349,29.57897162437439,29.62316788174212,30.29520774492994,30.521574785467237,30.67229101015255,31.19512503221631,31.81409054948017,32.68388827191666,33.338428024202585,34.05367809534073,33.204751055222005,34.143556356895715,34.73671714589,35.34275024617091,35.61705209314823,35.72086525661871,35.93249358795583,35.268066151067615,34.97311035078019,34.45224054902792,33.853150670882314,32.92656970908865,33.035405206959695,32.128016222734004,32.72090400895104,33.47098862659186,33.274103918578476,32.37879359675571,31.71516697248444,31.49141924083233,32.2744653695263,32.646629015915096,33.25849263276905,33.529515005648136,33.48956701532006,33.491532765794545,32.594764213077724,33.038794487249106,33.33418872114271,33.94414704153314,33.27167921233922,32.775096216239035,32.55655088229105,31.84803361352533,32.18084874749184,31.249868482351303,31.437414133921266,31.9790330035612,31.745962046086788,31.066026812884957,31.940331956371665,31.08911030413583,30.36722620949149,29.661043713334948,30.09107667999342,30.229600550606847,29.415795907843858,30.255067803431302,29.72593382326886,29.667091961484402,28.724218311719596,29.015297202393413,28.156687684357166,27.92336688376963,28.888544145971537,27.982998898718506,28.60886496026069,28.313565261196345,28.493975572753698,28.485976327210665,29.339541040360928,29.056066328193992,29.363250609487295,29.972906662151217,30.324294405523688,31.246595127973706,31.121462549082935,32.026175247039646,32.13535446394235,32.13442752417177,31.56599918799475,31.215123157948256,30.970587253104895,31.486899320967495,31.10397162148729,31.19143357919529,31.48577564349398,32.44888886529952,31.70547002926469,31.66722481464967,31.823926406446844,32.786856967024505,33.511197813320905,32.61457459954545,33.406204531900585,32.80459107970819,33.63258581003174,33.87916475441307,33.817540454212576,33.05849988479167,34.00586894713342,34.25147258909419,34.65393529413268,33.87254890287295,34.48864359036088,34.287994127720594,33.972938063554466,33.37332068523392,34.30649565067142,33.45998527435586,32.65721059869975,31.787347994744778,31.231807386036962,31.13433534745127,31.369768076576293,30.922520780935884,31.212817289400846,30.796634001191705,30.175917889457196,30.011061508674175,29.077049103099853,28.42500696796924,29.29704975290224,30.022667886689305,30.96642519161105,30.361986032687128,30.989423947874457,31.006040861830115,31.570948363747448,31.469576055649668,31.438070693053305,31.718715525232255,32.08201084472239,31.722660474013537,31.969751947093755,32.08179991366342,31.857208057772368,31.33462349465117,31.651032908353955,31.26164506515488,31.118570591323078,31.854764703661203,30.975929932203144,31.332589704543352,31.599516151472926,31.700081141199917,32.04846909083426,31.745123291853815,32.003335819114,31.666485527995974,31.4683123328723,32.098639116156846,31.494891638401896,30.533154542557895,30.859956881497055,31.536677388008684,32.17582504451275,31.804214326664805,32.324368730187416,32.84703028947115,31.990716247353703,32.833027329761535,32.78453025734052,33.52077129809186,34.13745473138988,33.57654554815963,33.96509190974757,33.57383966166526,33.6482536252588,34.5372318723239,34.725517980754375,34.581566167995334,34.055687395855784,34.309255186934024,33.88483190583065,34.23709364095703,34.45679939445108,35.114728681743145,36.0337473959662,37.002602462191135,36.37955998070538,36.90710744867101,35.99012854276225,36.74255072977394,37.059240800794214,37.24069359712303,36.70068546989933,36.38571243779734,37.130978176835924,38.066166314296424,38.781957725062966,39.73841001512483,40.100821807514876,41.05064225522801,41.06844679405913,40.61425525601953,41.43348540365696,42.293740866705775,42.90398368425667,41.930625702254474,42.35712282685563,42.91328328009695,43.414200907573104,43.67681307718158,43.01956650754437,42.60353407682851,43.15384067455307,43.41777723748237,44.049935035873204,44.25290011195466,43.900510888546705,44.44185338448733,44.47287458507344,44.935832125134766,44.926767813041806,44.77646933821961,45.20994277950376,44.9213930410333,45.89467039052397,46.040656592231244,46.20137660484761,46.60164262866601,45.759628421161324,45.66023566899821,46.55290975701064,46.41604086430743,46.591683321166784,45.96739974338561,46.18839634815231,47.099781040567905,47.307356123346835,46.638663528487086,45.82368621742353,45.74549927841872,44.95068507967517,44.911265038885176,45.34923546295613,45.69179982552305,45.54806929687038,46.11202257219702,46.09256719145924,45.95376447727904,46.75768488552421,46.01946179708466,45.463150893338025,46.41103468649089,46.69431632896885,46.84611074021086,47.648139647673815,48.02749294927344,47.74745158944279,47.42750575346872,47.12079537194222,47.207853256724775,47.145945742726326,47.61280205799267,46.61974983103573,47.14852166408673,48.092343006748706,47.93313585408032,46.951742640696466,47.21216514147818,47.5937172267586,47.874784724321216,48.2015150655061,47.22216018335894,47.72414702177048,47.51082063978538,47.75812591565773,48.38970882445574,48.7927106549032,48.324353240430355,47.43652610387653,46.51746767992154,47.13258425751701,47.97123070014641,48.19585794257,47.92840956058353,47.907654534094036,47.609790636692196,47.06733261467889,47.65706970496103,48.00902046216652,47.7829633904621,47.78402536036447,47.50760830193758,48.29766141390428,47.33265214646235,47.27593212528154,48.25650314055383,47.93033999018371,47.67064021155238,48.23164378060028,49.10535495495424,49.89401833200827,50.573839782271534,51.14892879547551,51.283933208324015,51.67129975697026,52.273546376265585,52.749963843263686,52.862557544372976,52.472171237226576,51.83046914450824,51.48836594913155,51.13415110018104,50.56282905675471,50.18861326435581,50.93677597446367,50.45360485697165,50.62196482857689,50.04723178828135,49.73953902255744,50.68795482395217,51.14498327719048,50.38786230189726,51.06332878861576,50.31221401086077,49.895144833251834,49.39427278749645,49.28693193383515,49.00708856759593,48.144089471548796,48.520347216166556,48.39823216479272,48.50511691858992,49.094962161034346,48.27031820546836,47.98105325177312,48.96187011245638,48.782915336079895,49.251755150500685,48.85017778072506,49.162167710252106,48.48292028158903,48.02127795945853,49.01364703057334,48.11937538627535,48.975966051686555,48.31142647424713,47.474281665403396,47.156461181584746,48.12364471331239,47.17997595202178,47.120954658370465,47.701097938232124,48.66069549461827,49.612534993328154,50.278214478399605,51.093772617168725,51.305952173657715,50.4747522813268,50.71168539952487,50.053088530898094,50.23977279430255,49.38861631322652,48.7092464659363,49.45120004238561,50.24622128158808,49.3401582906954,49.965662928298116,50.10252444865182,50.82850123755634,50.4681195714511,49.889790517278016,50.74328500125557,51.735024988185614,51.467053663916886,51.82245658664033,52.10099616739899,52.14491276629269,52.76343701221049,53.75438085524365,53.09126558806747,52.22114837542176,53.197654323186725,53.681561725214124,54.43060726346448,55.086540557444096,55.93679746473208,56.91222986904904,56.287209442816675,56.33834054041654,55.711800144053996,55.77193082217127,55.74833062244579,55.384837517514825,54.88135133450851,55.57973430771381,54.931532060261816,55.17676707589999,54.698243668768555,54.25222376314923,54.018500541336834,54.583352914080024,55.11134200915694,54.73269462538883,55.2863259925507,55.524702521041036,55.982318684924394,56.69030313426629,56.060558965895325,55.23931582644582,55.50710844807327,55.82208815636113,54.96099938545376,55.63915404025465,55.781199518591166,54.88651849888265,55.58513668458909,55.108894841279835,54.28967048320919,54.64304197905585,55.198086036834866,55.59888056246564,54.86613467242569,54.63120385538787,55.566073946189135,55.32300214096904,56.28071632934734,55.28575556073338,55.47714453097433,55.23298020474613,54.682381082791835,53.91478657070547,52.92794216610491,53.67198097798973,54.406900856643915,54.62007339578122,54.47294866619632,53.89794506365433,53.69173890678212,54.26613768702373,54.79860820155591,54.92363992705941,55.61575081013143,55.14645605767146,55.093791424296796,54.69178032083437,54.71911391383037,55.33782619051635,55.125401173718274,54.217021842487156,53.9641193235293,54.47054738877341,55.078042215667665,55.39290607813746,56.05488488683477,56.769431963097304,56.14629458356649,56.137116957921535,55.26208792952821,56.129985947627574,56.670730869751424,57.43891467805952,57.651558965910226,57.211014272179455,58.02279371814802,58.32334515778348,58.86235733842477,59.669473755173385,59.002506617922336,58.296798795461655,59.22774280840531,59.41989719076082,58.73829904012382,59.6507065766491,60.53524410305545,61.49605359882116,62.17665310297161,61.850941345561296,60.91707207681611,60.41633987007663,61.01959160435945,61.43399589974433,61.97696571564302,61.45528062665835,61.06728267855942,60.36861883290112,60.48323224624619,59.796803708188236,60.210673035122454,59.29267858946696,59.35400559660047,59.6632135566324,59.4627405628562,59.58562350412831,58.63425230747089,58.856715138070285,59.70435957890004,59.111189959105104,59.6330596730113,59.70956608885899,59.86442684242502,59.263827653601766,59.99625963298604,59.96054903138429,59.81286429101601,59.658215845469385,59.58031311817467,60.54873401252553,61.41313097300008,62.10211900761351,62.759382714517415,62.17682788800448,62.563466873485595,63.005155879538506,63.848385226447135,63.260904343333095,63.98941218852997,63.71840752568096,64.22796615213156,64.76520293857902,65.69327084627002,66.3448344185017,65.75147426407784,65.42795865377411,65.92750161932781,65.97825166769326,66.97209847532213,67.78311417158693,67.76864443253726,67.21740200556815,67.6026690020226,68.27880546404049,69.09326494997367,69.39737035520375,68.95972323184833,69.78446098230779,69.3113594991155,69.0274883294478,68.88552006566897,69.22672025719658,70.17190755018964,69.87159531284124,69.88492875220254,69.7541024251841,69.34399091638625,69.99740181816742,70.76220647525042,70.0213574571535,70.09238954586908,70.78522150311619,70.17211408028379,69.97415225580335,70.01478964462876,69.77126954589039,68.82100041257218,69.7067471370101,70.43355552246794,70.4997019963339,71.43738320982084,71.9078926932998,71.43169364193454,72.33258308237419,72.21397774107754,72.90489949425682,73.06113339075819,73.96101372223347,73.01463299850002,73.37853234866634,73.58153356285766,73.69976654462516,74.61613949248567,74.80134522216395,75.58320616418496,75.84804598521441,76.06930541945621,76.72196779772639,75.99475678149611,76.53967903694138,76.92681246763095,76.82105307746679,77.70880151819438,77.40194640727714,77.63456370960921,78.24098291853443,77.48174133524299,77.06466098548844,76.1822653496638,76.90763749647886,77.35984202800319,77.99322445783764,78.72706791199744,79.21137467958033,79.04519116645679,78.78380857780576,79.29623933881521,80.09376336680725,79.29856315627694,79.45783437881619,79.92800155794248,79.4066614951007,79.51564348023385,79.79539819806814,80.48568936483935,81.00776988826692,80.54620354669169,81.45001629088074,80.92926993500441,80.40742555167526,81.16402500495315,81.48995460942388,82.43584816157818,82.75733955018222,81.79310677712783,81.86806977074593,81.56042114505544,81.20984486909583,80.51351534901187,81.46344587067142,81.28585672518238,80.74059848301113,80.14951589377597,79.18500061146915,79.79241104982793,79.98699466930702,79.83163987239823,79.5945287165232,79.06444347416982,78.21639511873946,77.90050438884646,76.91432636417449,76.0358887645416,75.8967635189183,76.01771341403946,75.31388757703826,75.93915562750772,75.18110583117232,74.4264499945566,74.99763010954484,74.49319021170959,73.51057265186682,73.13152906857431,74.12067258451134,73.56852779816836,73.68865184113383,73.60106875980273,73.8668778645806,74.7490654150024,73.76469246624038,73.05900350306183,73.56111054494977,73.95614637667313,73.7740685120225,74.53096623485908,73.92551291082054,74.06855162000284,73.49439319735393,73.46261133952066,74.00043775094673,73.5900478954427,74.05857274541631,74.0524065583013,73.35041277296841,73.82297864556313,72.8382501960732,73.11456263018772,72.76584697468206,72.6331474352628,73.06309471372515,72.21140486327931,72.33203510846943,73.2567397984676,73.23253905354068,73.63335571717471,72.76952524576336,73.49948723101988,74.39920725068077,75.17193207331002,75.81745173735544,76.76572591532022,76.13393741333857,76.35561899282038,76.27982440171763,75.48243208602071,75.23839122336358,74.96190132573247,75.36261494411156,75.68947562063113,75.84059276105836,75.82372380280867,76.7970377150923,76.27308651572093,76.00515945022926,76.16080941352993,77.12569844955578,76.71130700455979,76.5773950535804,77.3179596667178,76.31961738225073,75.43570691812783,76.08118998166174,76.97461364371702,76.90676737530157,76.98654043860734,76.63988337758929,75.64502510940656,76.39507914055139,75.70957978768274,76.15818438446149,76.33745259605348,76.95624742936343,76.63201811164618,76.60982273705304,76.60137735679746,77.38144484395161,78.14443881297484,78.40433971304446,78.43912170547992,77.87280554324389,76.97259047906846,77.74793050205335,77.21893123351038,76.51160087110475,76.83770924294367,75.94345958065242,75.91104387352243,75.13708636444062,75.71769288694486,75.74587644310668,76.00368524063379,75.71395767154172,76.33188101742417,77.3277296568267,78.31490000756457,77.40651222178712,77.80571461236104,78.0812563910149,77.62557415524498,78.39314236026257,77.80078548984602,77.47972402023152,78.38776641339064,78.63284945115447,79.05550955189392,78.94630332617089,78.83525096764788,79.74000862287357,80.0284728333354,80.72451035259292,80.5593405244872,81.27368675544858,81.89245198201388,82.67363823810592,81.97036880953237,81.89478626055643,81.80562986759469,81.55354008171707,80.62509561842307,80.07415977073833,79.99217089824378,79.39671645220369,80.08904747897759,79.81974556623027,80.31562517723069,80.88079755427316,80.87872318830341,80.10017541330308,79.88972521806136,80.8535042675212,80.53737244661897,81.39684212906286,81.58025382226333,81.3880431423895,82.05022506136447,82.21351616689935,83.01290725683793,83.07617933070287,82.80291905393824,82.07649411214516,82.77600271068513,82.94170730933547,83.05224324343726,83.20373787917197,84.1906052371487,84.318982235156,84.44350587995723,83.5465451059863,83.10943644028157,82.70538108656183,83.5028687636368,82.59199137566611,81.60967418225482,81.78551468858495,81.87964952737093,82.03277810709551,81.8370411908254,80.97256788564846,81.36922679236159,82.16818428970873,81.87216264940798,82.80315044848248,82.32206316525117,82.99594573210925,82.37440844159573,82.44030963024125,81.937463354785,81.41597283259034,81.97081072814763,82.0588743542321,81.49675154872239,81.85713440505788,81.38449507718906,81.20197388296947,81.89327668212354,81.06062026461586,80.40202589845285,79.89241690002382,79.91970713157207,80.09366472577676,79.33263655332848,80.29038748890162,80.02849429054186,80.21190399164334,80.91653588367626,81.83453827630728,82.07582107186317,81.37826767982915,82.29055689787492,82.42905209725723,82.40053162677214,82.07159750908613,82.76462125685066,81.98797202063724,81.49534178897738,82.18968861270696,83.15489393938333,83.54803487518802,82.90430962853134,82.99747974565253,82.10603137034923,81.19381850492209,81.3682263433002,81.35788995819166,80.89622847596183,81.826866670046,81.70205714739859,81.04161329101771,81.17470787558705,81.07147929584607,80.61857344489545,81.47007611906156,80.87527063582093,81.1695673619397,81.93974116165191,80.95579583756626,81.34490757063031,81.69924681074917,82.27090166555718,82.51714405231178,83.10814344044775,83.5023545883596,84.07849593227729,83.86706732446328,83.03344972245395,84.01539287762716,83.13095458364114,82.20085069350898,81.84641657071188,81.78619923396036,81.30973317008466,81.39185502845794,81.15450655575842,80.30582499550655,79.82513869786635,79.66421513119712,79.77919996250421,79.30031322594732,80.14168289862573,80.45421176590025,80.73590377857909,80.3157964865677,80.06237561721355,80.6524889790453,80.75711029302329,81.48531199106947,80.70986280729994,80.76994119491428,80.81224165344611,80.39826341997832,80.29451419040561,80.17488154163584,79.49094404187053,79.62940649595112,79.07484870729968,78.90276362234727,78.15283300727606,78.70022510690615,77.93438282515854,78.54883233224973,79.54030989622697,79.60176515439525,80.39031037595123,79.94429505104199,80.51773423748091,80.15554458275437,80.5823915055953,79.78693056153134,80.30256466800347,80.26680555846542,79.8509807693772,80.72835004050285,79.8972756122239,80.48730224138126,80.61712477961555,81.23149691382423,81.54824942164123,82.2299118922092,83.04759036749601,83.34149489877746,84.33268922707066,83.96916572889313,83.03601199761033,82.7388975219801,82.20702864928171,82.16898866789415,82.96333773666993,83.76084851101041,84.30799961835146,84.24858991149813,84.94673001393676,84.4817063701339,84.47584617650136,85.27898349706084,84.32813523616642,84.22727057291195,83.3367958473973,82.55892798677087,83.54551082244143,83.45888009713963,83.4845490292646,83.37525709019974,83.35855732671916,83.21745411725715,82.81486624386162,83.60600339248776,83.48044874239713,83.73736897110939,83.6845329431817,84.66431296197698,85.61171355377883,85.61359271965921,86.43873317213729,87.2786288545467,87.507268557325,87.1795237744227,87.66464824788272,88.57672322774306,89.02292804606259,88.98501713806763,88.64476137049496,88.74892621301115,89.65351631538942,89.28912409208715,89.19089750712737,88.81558870291337,89.30484934384003,89.65117779700086,88.9683303986676,89.40841037873179,89.7932742475532,89.13821467431262,88.50055699283257,87.64259689860046,88.38039622502401,88.22860566619784,88.26190313696861,87.5825796732679,87.00476560648531,87.36754790740088,87.858451704029,87.3770082029514,86.37843784922734,86.9363694647327,86.4767903550528,86.5340239694342,85.6804306237027,86.32448077527806,87.24925249954686,87.92623097309843,87.3087854096666,87.40495414612815,87.0040417672135,86.33580788038671,85.84400055278093,85.55425714654848,85.59963248763233,85.46120603242889,86.28938826359808,86.3000563038513,86.74712213082239,85.86994794849306,86.35108342161402,86.85543440422043,86.50449850177392,86.82426402112469,85.9729435397312,85.44596689939499,85.5730808051303,85.15846243826672,84.1815870241262,85.01994513440877,84.61375562334433,85.42107511125505,85.35859794029966,85.0753394276835,85.13308374071494,84.41544623719528,84.02518380014226,83.98610608326271,84.26882575917989,84.76942717516795,85.29747206252068,84.46294781146571,85.25577561603859,84.57777862343937,84.18847880326211,84.01494256872684,83.5095612918958,84.03244881751016,84.18548950599506,84.90677361469716,84.02032334404066,83.77701755892485,83.74220880772918,84.59276340901852,83.84730976587161,84.67780845891684,84.58689941233024,84.3014733698219,85.17549046734348,86.04228131612763,86.30759260430932,87.19010900799185,87.22031763754785,88.01852954505011,88.247104187496,88.77724339393899,88.68847713433206,88.41543366853148,89.22826678212732,89.25390095449984,88.61253872746602,88.97067586891353,89.58778215944767,90.11162375006825,90.37371204793453,90.1001850226894,91.03342185541987,90.95638387557119,91.08665693271905,91.07670659432188,92.01669979607686,92.1334147262387,91.14113964745775,91.18649897212163,90.25863313069567,90.84127569105476,90.5350218815729,90.4947084216401,91.19398140953854,91.27678546216339,90.3209347659722,89.7206229600124,89.5442305104807,88.94479083409533,88.18787780823186,87.39896946260706,87.36764637753367,88.13573181070387,88.81717947870493,87.85669816844165,87.33471199404448,86.66496583586559,86.64806135976687,86.5421038120985,86.96544363722205,87.844151717145,88.78929411014542,89.04038703022525,89.98578177252784,89.38057337095961,89.74001364223659,90.29065602784976,90.58325348095968,90.45554381748661,90.27255510771647,90.8758583702147,90.04740128479898,89.49525878485292,88.64802491525188,89.08781567728147,88.38616694137454,88.76476735062897,88.10720326285809,88.21452637203038,87.54885898251086,88.19702231651172,88.60843752231449,89.28548288159072,88.60520836198702,88.18188440660015,88.32895964384079,87.90244913706556,87.48651376646012,87.76843948941678,87.57661858899519,86.62516832724214,87.59623004356399,86.69758847914636,86.78003516700119,87.05210638977587,86.62164043588564,87.39579934626818,87.76297545200214,88.50752227334306,89.38104557711631,88.70345453452319,88.08926895959303,87.21213859179989,86.29519254108891,86.31978557864204,85.67776780575514,86.66862411284819,86.9004082721658,86.9988612215966,87.49235240276903,87.29116835864261,87.97471969760954,88.1721375901252,88.96754368813708,88.05324037838727,87.89437772752717,87.64535900717601,87.19157325290143,87.65855734655634,88.65663456032053,88.53443136904389,89.36220499780029,89.4109731731005,88.43970171222463,89.35920839570463,89.10557484952733,89.58967882720754,89.35855322703719,89.50922342995182,89.26814215769991,90.01804678933695,89.31106389174238,88.52790890820324,88.57601864077151,88.50927358027548,87.74915640382096,88.4046235610731,87.7526608556509,87.78659701300785,87.30805777711794,87.54479246912524,87.86312191514298,86.99799688532948,87.75424371287227,86.99461109051481,86.64266852615401,87.62027068668976,87.28834835067391,86.68491186248139,85.8165288507007,85.48245628690347,85.69614053377882,86.07432107254863,86.59377586096525,86.85075351549312,86.87578364973888,86.5118338461034,86.07855532085523,85.9638971183449,86.08206613734365,85.9901639604941,86.88602634100243,87.8106618388556,87.18271491117775,87.5695591820404,87.04697426361963,86.31800788501278,86.25861105555668,85.53402299247682,86.31862829392776,85.95677836704999,85.3999671866186,84.57362862862647,84.87626757612452,85.17761536175385,85.80809349799529,85.57207243144512,84.92589623294771,85.45992608182132,85.91183991823345,85.6192935956642,84.74702159501612,85.09302720008418,85.60230992268771,86.40878159785643,86.37916711810976,86.96360231516883,87.90795290237293,88.07494486728683,87.52042829152197,87.5269864955917,87.01864196592942,86.72830108879134,87.59858654532582,86.95683699008077,87.05073599005118,86.83394380519167,86.1805776678957,86.66522213909775,87.47734786663204,87.62479552254081,87.86623903363943,87.12026751879603,87.61189764831215,87.30491048563272,88.15513587091118,88.09354041935876,88.26808807766065,89.185320364777,88.94401453621686,89.26835475955158,89.52708592778072,88.88218272384256,89.24876218987629,88.46317981462926,88.20713962800801,88.6198152853176,88.71978261042386,88.42721408139914,88.70665259147063,88.34240858955309,89.1615946199745,89.83440200658515,89.25967235909775,90.19293436128646,89.24715812271461,89.712354877498,89.61531352763996,90.23208050290123,90.814751656726,90.55525718675926,89.94198585115373,89.54098236514255,89.2973162215203,88.63559354702011,88.25869107665494,88.56137376325205,89.16418237704784,88.8029582099989,89.52256449731067,89.0979806506075,88.6458505098708,89.08361898595467,89.38849175395444,88.40191545290872,88.39592117164284,87.59566019056365,87.89508787635714,87.285000232514,86.94509134627879,87.58491858886555,87.05295640369877,86.39614025875926,86.7114866510965,87.3905844334513,88.33076333347708,88.04641645820811,87.69997058995068,87.33109748270363,87.69115811958909,88.17874645069242,87.65043999627233,87.28057673294097,86.88539128098637,85.93755953852087,85.82162714097649,86.24681201111525,85.31748554529622,85.04268278367817,85.26118625327945,84.59198199957609,83.74909528251737,84.71841131197289,84.74570115935057,84.00049648294225,83.39706125948578,82.99773085862398,82.67420704988763,82.88862697640434,82.7770894751884,83.08835850981995,82.83756360644475,83.58766619674861,82.90477174147964,83.07448532851413,82.3657012898475,83.3605595161207,82.83789625577629,81.85169128607959,81.8857667343691,82.6872217846103,83.51537419855595,82.89275314705446,83.69435737608,83.82248434936628,82.99730794969946,83.36663187481463,84.36375182727352,84.54869213933125,84.0854076477699,83.77600772259757,84.48501499602571,84.99783756583929,85.97752578789368,86.26685444125906,86.13952319929376,85.30988743761554,85.17092969082296,84.33771109674126,83.96949712652713,83.21097686327994,83.08587358612567,82.46913086809218,82.16357059497386,81.3710247753188,80.6998560409993,79.81038741208613,79.04454648587853,79.0565181421116,78.23266084492207,78.65961235389113,77.84158331621438,78.02462191088125,78.54546313500032,79.31137599004433,80.11509804241359,79.76021189801395,80.29619860462844,79.90897301211953,80.86044074129313,81.62555523077026,82.31243157340214,82.68610341846943,82.94240416539833,83.73340108664706,83.42248187353835,83.61838706349954,84.01407991209999,83.21630842145532,83.75781619315967,83.20188953960314,83.06280083116144,82.23628996545449,82.31566792260855,82.62160758767277,82.07561332872137,82.96236097859219,82.88407805282623,81.95653411187232,82.16706183133647,81.8189979987219,81.11002580448985,81.910031279549,82.77439275244251,81.79375854926184,82.0044657480903,81.1298870719038,81.03284842055291,80.84031732566655,79.85556360939518,80.81321990676224,81.7662581554614,80.76702800346538,80.11099754553288,80.57562012504786,80.31905757403001,79.35011107428,78.6275540185161,79.4219430712983,78.77232868038118,78.54673211788759,79.20218039816245,78.84362183371559,78.457598564215,78.18397636944428,78.0310616614297,77.77652440452948,78.58303438220173,77.65550518315285,76.97420618031174,76.63556633144617,77.06719149742275,77.38371441420168,77.08870615903288,76.1974771944806,76.30831088405102,76.51113240187988,75.80615728767589,75.5543788834475,75.71859106747434,76.46398067334667,77.20818297518417,76.36189639661461,75.51997079979628,75.23843482136726,74.24828480184078,73.52412069169804,73.24359435867518,74.07801629044116,73.28630411112681,74.07948966929689,73.31571583496407,72.82739574695006,71.84334555454552,71.95409672614187,71.97153731854632,71.4358678930439,72.18278988357633,71.90514141600579,72.45331429177895,72.41993576753885,72.37564027309418,72.26812123833224,72.46314609283581,72.57092736614868,72.31226668739691,72.44939679419622,73.3671479318291,73.65766346501186,74.45588598307222,75.3797168796882,74.9407742540352,75.46916425321251,75.32378940284252,76.24980501877144,75.34440505411476,75.99253060668707,76.17465756740421,76.7548469719477,76.88859554566443,77.44258098304272,77.97798471106216,77.83449590718374,78.3744984860532,77.8956790426746,78.13897138880566,78.99771638447419,78.10815273085609,77.45992599334568,78.4203250859864,79.20208189729601,79.375476768706,78.73018338391557,78.34429838880897,77.43677499331534,77.69047523569316,77.53146132500842,76.70686473185197,76.21435554558411,75.5241738660261,75.8423797218129,75.45376234687865,75.7548323343508,74.87035983754322,75.45383268408477,75.75895508658141,76.4640988316387,76.15972023457289,76.42360559105873,76.34656047960743,75.93661954486743,75.47530377749354,75.44687031535432,75.0890840832144,74.4675893932581,73.96150927944109,73.28129376238212,72.36979792127386,72.81878391001374,73.59774097520858,73.37130428990349,73.43145346082747,72.71628466574475,71.87636408256367,72.50683014467359,72.01833981322125,71.14298052992672,71.4098802707158,72.40371227590367,72.32557835010812,73.13061890518293,72.97146750008687,72.00654422864318,72.58492091624066,71.6006455719471,72.43346749804914,73.27282054862007,73.39465245883912,73.33310590358451,72.41313093760982,73.00867932615802,72.09081126051024,72.40578487422317,73.37888394203037,73.5271713770926,73.29597524320707,72.45052982354537,73.33377411821857,73.59226053673774,74.16403140313923,73.64919377490878,73.80643598316237,73.10552965058014,72.92670970410109,73.90957765141502,73.81632020417601,74.13148104352877,74.33166090864688,74.70341465715319,73.80124507006258,74.68498102156445,74.25595009280369,73.92882311716676,73.85200472967699,74.15992230270058,74.443334819749,75.06987831229344,75.39853793941438,74.81857562810183,75.4578854762949,76.26055990159512,76.98530474724248,76.7940309853293,76.8691058633849,77.19906621053815,77.62816434632987,77.48019034788013,76.93109598848969,76.00506769958884,75.26850135438144,75.32262129615992,75.8312883018516,75.92236746614799,75.77571183629334,75.42178653320298,75.8722282438539,76.693849329371,76.8291346244514,77.72593002207577,77.0135609949939,77.08093148423359,77.40680856769904,77.59157698741183,77.39509307453409,77.27661853842437,77.83019542926922,78.35008865129203,78.42651279643178,77.68745464924723,77.1410319362767,76.51104014879093,76.79775462998077,76.3565699965693,76.09819677099586,75.43191765807569,75.46034959889948,74.94750497909263,75.28342807339504,75.6710958480835,74.94742082804441,74.4126751809381,73.61275122547522,74.20550012914464,74.5399122601375,75.31696797767654,74.80137547850609,74.34992445027456,73.42200911417603,73.0146425110288,72.0819440819323,71.69619163265452,71.36937275482342,71.98695836076513,71.2623457275331,71.52437069173902,71.02488876599818,70.3184477975592,69.6145387981087,69.3949720277451,69.97809218522161,70.33885383652523,70.22848689835519,69.34522173460573,68.65648104157299,69.30516023375094,68.5318265245296,68.88711064122617,68.47742740716785,68.08467252971604,68.68328420026228,67.99311591172591,67.76994529366493,67.18022446893156,67.25823855260387,66.34069047728553,66.58707764418796,67.07840638421476,66.11208715476096,65.41820940421894,66.39689118554816,66.64491230156273,66.98434429522604,67.56419372884557,67.56483597354963,67.20327716739848,67.80990848643705,66.88387715723366,66.6785415369086,66.97835767501965,66.791334846057,66.37933200784028,66.83206379273906,67.82489324407652,67.67915210826322,67.45249964017421,67.7454702584073,68.20025538047776,68.47220685053617,69.03859595861286,69.69533176999539,70.53974934155121,69.76610978320241,69.34364857105538,69.17753112409264,69.44038617890328,69.86037694383413,68.96494227461517,68.70994659513235,68.17464811494574,68.92861101124436,68.27630691369995,68.54444332746789,69.27237827843055,69.48037541052327,68.7042661299929,68.36470693582669,68.86183239100501,69.35644197277725,69.79547775629908,69.39629716007039,69.92237083008513,70.47459394996986,69.928009822499,69.5395901510492,69.90025947755203,69.24664648855105,69.68979733809829,69.41256918013096,68.52537996554747,67.5915457913652,67.29521915735677,68.20793734770268,68.78129771817476,67.97647874383256,67.35526740038767,67.44814497884363,68.10830646101385,68.39205686654896,69.24799929698929,69.72792987152934,70.51738444110379,71.40096140094101,71.75633038487285,72.11597958020866,72.13873955188319,71.50407865922898,70.66196955135092,71.27526176953688,71.28231653710827,70.7881826213561,70.28990402119234,70.87895059073344,71.83539037406445,70.89968427270651,71.44002216681838,71.54523824900389,70.72529441537336,71.02180497348309,71.75608364352956,72.5541668292135,72.29193132091314,71.39547583693638,70.7337367492728,71.17587810009718,71.3323886776343,71.64290420338511,72.2882417649962,72.97375530190766,72.35217656753957,72.8794333259575,72.16216546110809,72.57721892325208,73.50329905049875,72.65934948436916,71.78543692734092,71.97529734298587,71.23487771861255,71.23735045548528,70.50653367396444,69.93037373200059,70.88542859628797,71.19175019301474,70.55631660297513,71.16835235245526,71.31056377664208,70.76477087615058,70.53383426647633,71.23712031496689,71.663702219259,70.855911353603,70.35960581060499,70.38633560575545,70.45850801933557,69.79927354678512,69.15678366133943,68.43547322507948,68.03594975639135,67.98266251431778,68.09031318780035,68.8963525458239,69.48402881063521,69.76121393218637,70.54343911539763,69.71957579161972,70.2198564875871,70.36687582870945,69.5127127431333,68.70404114061967,69.2844266006723,69.67205652408302,70.05988844390959,70.18400645721704,69.43921733601019,68.84007581835613,67.93740593316033,68.37416589958593,69.19748697662726,70.13943211967126,69.82379469554871,70.07438057800755,70.23945993930101,70.65457933908328,70.43134617432952,69.60496032470837,68.64411190804094,68.38965779775754,67.6016912246123,67.06685517542064,67.48105388740078,68.38784440886229,68.27355710696429,67.61368467425928,68.42598839104176,67.824293166399,67.13236604258418,67.73438027640805,67.633301531896,66.68870986020193,67.22159154480323,68.2153564109467,68.2734681754373,68.44855308672413,68.00193703873083,67.94936355622485,67.3755815862678,68.23111964249983,67.25305368984118,66.56702457508072,66.1019902122207,66.35703481920063,66.88095751963556,67.30926188547164,68.15201521990821,68.70458485698327,67.71643444336951,67.9656102959998,67.8446506075561,68.67604108713567,69.5486118835397,68.59481609612703,69.4833801491186,68.58842577645555,69.32347789686173,69.0205797557719,69.57845181040466,68.90595629997551,68.34530088631436,67.38659206591547,67.14822675753385,66.69496213691309,67.50006487686187,67.18362295394763,67.51702969847247,67.30209957715124,67.86445878166705,68.35569820087403,68.72626251680776,69.54881660221145,69.24770576367155,68.73412557970732,68.20281628146768,69.0342962006107,68.62916619703174,68.96994278393686,68.3747999635525,67.70699399802834,68.47337169153616,68.30372231453657,69.04702976765111,70.02004307322204,69.21005939505994,68.59962497744709,68.71664899401367,69.41341962479055,70.0152931669727,70.05964416125789,69.09187308093533,69.77968852594495,68.90634085796773,69.23991088196635,69.62446423899382,70.00931178964674,69.26411597058177,70.20220516435802,70.04225580906495,70.7289187302813,70.27744875382632,69.48137333849445,69.2515068128705,69.59712910000235,70.43092824146152,70.7177809313871,71.59896803554147,70.94028368219733,71.54905174393207,71.11504218308255,70.33320805802941,70.71202764566988,71.31496567418799,71.83099319785833,72.75503337336704,71.76696980791166,72.22686044313014,72.79680263902992,72.44163734326139,73.41105750203133,73.29863615706563,72.88742638332769,73.1442734496668,73.18708054441959,73.64394967444241,73.02299418440089,73.25486447708681,72.38880738196895,72.22600852837786,71.98418785445392,71.26941414829344,72.26025512255728,72.10826186975464,72.36439107218757,72.43010747479275,73.27961547439918,73.01415490778163,72.95678895059973,73.21704813558608,72.69858330115676,72.31653979048133,71.37606984609738,72.16523579880595,73.12320976378396,72.74799693003297,72.20000105444342,71.59750724583864,72.05234558414668,72.81631641322747,72.98927196022123,73.87566935131326,74.72270378144458,74.04602637048811,74.67428765399382,73.85651265224442,74.23294749343768,74.3866988196969,73.65944303618744,73.6350879771635,73.23918820545077,72.42742885276675,72.2875137035735,71.65024241246283,71.26969216857105,70.73551223101094,70.46841040998697,70.75952091859654,70.31764436420053,70.45694886613637,69.59087286284193,69.08463958930224,69.25154399452731,69.43464311305434,69.33114591194317,69.28719259006903,68.49631305830553,69.45029295794666,69.20250808866695,68.56216336926445,68.45509572699666,68.831192296464,68.79624270508066,69.38135859463364,68.45830685505643,68.07598905265331,67.36636042501777,66.42388439830393,65.76990623259917,66.06180806970224,66.57793642859906,67.36606590403244,67.23576952330768,67.20579024963081,66.96737731900066,67.49728083284572,66.6682870676741,66.45346830552444,66.34460504772142,67.10957393515855,67.86943506775424,67.55985311232507,68.22742837807164,67.8230395577848,68.33726225653663,69.101071188692,68.47342638159171,67.85713364975527,67.73331226361915,67.91896511008963,68.60211587557569,67.74309957260266,66.81878259545192,67.29660856025293,66.82418512087315,67.30144869815558,67.08962632482871,67.76053538452834,67.34623727435246,68.2107130237855,68.01652527134866,68.69877516059205,68.70000093709677,68.523295620922,69.13774352474138,68.29819831671193,69.03389461152256,68.78098571114242,68.90966841066256,68.66844875272363,68.18734671361744,67.61416858015582,66.88164552254602,66.00885772891343,66.7042125989683,67.50913986517116,67.10598229430616,67.73373604752123,67.28531380929053,66.5307549489662,67.44534390652552,67.46622880734503,68.22822612337768,68.01446327008307,67.60382609069347,68.12216800032184,68.3149884310551,67.69678448885679,67.46216367511079,66.69704182818532,66.68869346380234,66.32721964968368,65.85207380075008,65.12225492578,65.274439945817,65.24106694152579,65.3173105190508,65.06717301439494,64.42212051898241,65.21921323239803,64.426562840119,64.0469029750675,64.96769284363836,64.70777381770313,65.4907199209556,65.89333378523588,65.12703191116452,64.5580989443697,64.83949937252328,64.70318373246118,65.31558559043333,64.64111008029431,64.52883901912719,64.68880300410092,63.86566190328449,63.03689792891964,63.810621839948,63.75721169356257,63.867452940903604,64.27761775953695,65.02963046217337,65.64544001407921,65.17075028736144,64.17920709401369,64.5434664641507,65.32566375425085,65.98150313226506,65.56018572067842,64.57688466319814,64.92983216512948,64.67334680305794,63.976947711315006,63.42527219746262,63.40291296085343,63.740143085829914,63.31531001161784,62.68822933360934,63.52845285180956,63.71185196656734,62.84015458682552,62.177753483410925,62.53912190627307,61.93769950000569,62.86510490486398,61.96617388725281,62.45432844152674,62.158402966335416,63.053501419723034,62.10027508623898,62.99539582291618,62.4799286336638,61.6847200631164,61.43830187339336,60.564839462284,60.83405516669154,60.97952200798318,60.25743016600609,59.33827787078917,59.714233067817986,60.42626342596486,60.59572726581246,61.378214499447495,61.71947178430855,61.90715547045693,61.75011249491945,61.28207907266915,60.40695569710806,60.26198313292116,60.50188010837883,60.195008620619774,60.9527745381929,61.09034599317238,62.069989604409784,62.77698195585981,61.826571783516556,61.86197121394798,61.52567672356963,60.731137201655656,60.48299528285861,61.43829808617011,61.000384144485,61.87320866808295,62.85463562281802,62.07825354905799,62.2265720423311,62.36720702238381,63.02268162416294,62.11107764625922,63.06547970836982,63.60896094376221,64.35582706192508,64.41426136158407,65.19583848817274,65.5671630455181,65.64193055173382,65.19954424910247,66.00624161586165,65.22583442553878,65.51318129757419,64.52465003775433,63.626613236032426,63.32775649614632,64.19390336377546,65.19116516411304,64.47413902683184,63.74762403592467,62.81628284882754,62.94047150108963,62.592282416298985,63.28720303950831,62.748035467695445,63.34680359112099,63.92964492877945,63.916515382006764,63.675569815095514,63.85479576187208,63.34852133272216,64.34385611629114,63.779570722486824,63.73305569589138,63.65399462543428,63.541728367097676,63.55435906443745,63.74996568495408,63.07641164492816,63.879092883784324,64.46852973522618,65.18123468430713,65.4284379305318,65.80198840238154,65.49531610170379,65.08431169204414,64.76869936473668,63.88494888646528,64.3632797030732,63.80947456229478,64.60069410735741,64.13801457453519,64.17378372047096,63.615797424688935,64.04134012991562,64.45222207577899,64.48325604060665,64.24433918017894,64.76639164378867,64.71420908207074,64.25488199014217,63.77695364551619,64.17653102101758,64.9342706152238,64.08272314211354,63.729866655077785,63.086360099259764,62.11337516782805,62.79545328672975,62.87161656515673,62.0148946614936,61.484537922777236,61.03666976001114,61.754753404762596,62.35234793042764,62.11169038899243,62.52307642111555,62.50030271569267,62.74611765239388,62.34585369657725,62.39822092046961,62.74217825056985,63.20283202873543,62.394793478772044,62.35365414386615,62.651699936017394,61.724239642731845,62.019717819057405,62.28781352331862,62.56560526927933,63.157631900627166,63.173783720936626,63.02332347491756,63.95313532697037,64.81961782556027,65.1207021549344,64.7623833664693,64.0063886642456,64.48336189473048,64.69013941194862,63.83667642623186,62.915724830236286,63.08381779445335,63.659133788663894,62.683428327552974,62.761003230232745,63.37220234144479,63.31550502264872,63.86128420429304,64.12905793590471,64.97254842007533,65.76749834837392,65.22398008499295,64.60067028040066,64.09416993288323,63.258283860981464,62.47403208166361,62.21307177422568,61.798265748657286,61.08109586779028,60.17811154946685,60.13906764378771,59.30555434059352,58.78417740436271,59.704938349779695,60.64191768784076,60.79292699834332,60.14860240742564,60.11812693346292,59.16518218256533,58.48029848979786,58.54789297422394,58.984499861020595,59.25055941892788,60.152974975295365,60.51980405021459,60.86156715126708,60.01150048384443,59.533174271695316,59.080880431458354,59.71684039523825,59.92300347937271,59.189959559589624,58.62022892339155,58.62080284906551,59.5450158813037,59.24906560499221,59.72500494075939,59.64987980294973,60.6386587289162,59.686155347153544,59.022580560762435,59.830367704387754,60.4808495612815,60.518969915341586,59.75431058648974,59.53506631264463,59.58408071892336,58.605695565696806,59.13447937043384,58.9771558274515,58.52990009402856,59.12973308516666,60.06734863994643,60.67044285079464,61.41059094341472,62.34663388924673,62.529416906647384,62.605700864456594,62.09014509804547,62.636347157415,62.79763469193131,63.50145310070366,64.38471884885803,63.91056563612074,64.84592040069401,64.78892296971753,64.88569137640297,65.73900498310104,65.9533280255273,66.11101814452559,66.67077253712341,67.08305990789086,67.36956701939926,66.74844460887834,67.23543588863686,67.42946905642748,66.57329531665891,67.1550408587791,67.71984704583883,67.84953849576414,67.20223733317107,67.60367335984483,67.50756615586579,67.43316241633147,67.81356888264418,68.51654009567574,68.15843465225771,68.86235249834135,69.47369615733624,69.97600314067677,69.8154187919572,68.91467126365751,68.76038932939991,69.46637027291581,69.79097145004198,69.8817849168554,69.01432396052405,68.92058003460988,67.94717053649947,68.62954531982541,69.60779662290588,69.96962713636458,69.63479257002473,70.26214269502088,69.46596587542444,68.78815928753465,68.95748764742166,68.38804005086422,68.3540437920019,68.59985841717571,67.88882447173819,67.9397408622317,67.43958530575037,66.48798699071631,67.3553671729751,67.23008776083589,67.4329099287279,67.54556015133858,66.94838157622144,67.19062548968941,67.04150644456968,66.69777507707477,66.65877935988829,66.4433906590566,67.36063615977764,66.79468605387956,66.53885806724429,65.82814705744386,65.91791983321309,66.58522012503818,65.68791628396139,65.01345868874341,64.34547327505425,65.07681415136904,64.16295569809154,64.28264761064202,63.95994788222015,62.995633830316365,63.567334114573896,64.25309191038832,63.97661228850484,64.42945001227781,64.78593677515164,64.33671752503142,64.27431225124747,65.20279545709491,65.07347126305103,65.7387749501504,66.26081231236458,67.21948256390169,67.9055024064146,67.0763939213939,67.8624459002167,68.3866201066412,67.68113575037569,66.75923363864422,65.9771082974039,66.44297258416191,66.56558162812144,66.3782160258852,67.22043599467725,68.04223962360993,68.65932084992528,69.38694587210193,69.8081677169539,69.40130152227357,68.70754796359688,68.19079159107059,67.4053331837058,67.74268401274458,67.2128219967708,68.1267903149128,69.08202727558091,69.41751002240926,70.27123146643862,70.10800773091614,70.18681346438825,70.49489684775472,71.05992436548695,71.2499978877604,70.4536495138891,69.91273534065112,69.62146419659257,69.19637791486457,69.9071610160172,70.1000856552273,69.57459046272561,70.52198672341183,70.40638593118638,69.93311110371724,70.85222872765735,71.62421446945518,70.86524607427418,69.86766315810382,69.27004741225392,70.24285320332274,69.69111813651398,70.24655059166253,69.47462478745729,68.64925180794671,69.10526134353131,69.60825567413121,70.35632051760331,70.96214647497982,70.15092163113877,71.05833152635023,70.62189512327313,70.2151438370347,71.15338022820652,70.578492985107,70.66806082194671,69.97479689354077,69.18586835591123,69.36396367708221,68.6897932915017,69.60490289330482,69.67594625847414,69.8984822621569,69.14094372978434,69.69360381085426,70.3997627212666,70.11295334389433,70.28958866745234,69.50849079200998,69.03307539317757,68.34738005278632,68.03005457529798,68.45081979641691,68.02673332626,67.58730611158535,67.51343197282404,67.4127502515912,67.13082727324218,67.84503708174452,68.14696305524558,68.73651319928467,69.28738064877689,68.98412670521066,69.03337300568819,68.33433819562197,68.36766945803538,68.29712215578184,68.5484852688387,67.73899408103898,67.57453329768032,68.15749600110576,67.36559025431052,67.0226144939661,67.79495932487771,67.48723187996075,68.0250791925937,67.84823886305094,68.69830700941384,68.30640374496579,67.6333675775677,68.50466303154826,68.79718522075564,69.53517657797784,69.68159371241927,70.26149092894047,69.65076582413167,68.68597290245816,69.39658816624433,69.93247094983235,69.88296480290592,70.75187817262486,70.99211389524862,71.32064800709486,71.80810635024682,71.56251773843542,72.17096173064783,71.64693861082196,71.49660983076319,71.8184058717452,72.523510387633,72.68651022063568,72.93827131623402,72.31361986137927,72.0592218246311,72.58295886870474,72.68357039475814,73.63373245438561,74.21465468220413,73.63432311080396,72.82149314321578,73.79080565972254,73.46213820995763,74.04423032235354,73.09557505371049,73.37897104304284,74.1013138112612,74.24974453775212,74.7905817287974,75.62707682000473,75.68580199824646,75.79273685626686,75.5155378463678,74.59738562768325,74.28284744545817,73.7000564658083,72.91818971931934,73.64799892390147,73.93076919438317,73.0467015299946,73.8416119478643,73.40669075353071,73.9573995298706,74.44232509005815,74.97807855531573,75.11516261240467,74.71867295959964,74.24139606812969,73.72507601417601,74.21414473187178,74.86651798291132,74.42859415058047,74.43627869011834,74.69011718407273,73.84397920314223,74.74114563316107,73.80736369686201,73.9692555880174,73.51292049326003,73.84356190636754,72.93521048175171,72.27931974781677,71.59457594063133,71.61135044833645,72.36952059017494,72.14213213743642,72.22225203970447,71.54494959162548,72.03578017977998,71.7936106575653,71.70000029122457,71.9494068599306,72.33475965773687,72.34982148045674,72.26607717387378,73.21017338009551,73.9906157986261,74.0769924861379,74.68062204262242,74.98083346290514,75.4966282309033,74.58128843130544,74.01550359418616,74.40592163940892,74.36652264697477,73.43701674835756,74.40017325105146,75.01933873910457,74.89384263753891,74.90072912443429,75.65244506206363,75.88169642305002,75.51580624841154,74.96089638443664,75.88646446494386,75.1216896045953,75.3635540525429,76.10637514526024,75.49611314432696,74.75827543856576,74.949736751616,75.28215049626306,75.21373386587948,75.90293091116473,76.54903109837323,77.1921261656098,76.19255132833496,77.0922070289962,77.54336607269943,78.44149536686018,78.14274348318577,78.1502248160541,78.12596998363733,77.47870912775397,77.26235323539004,76.45602857321501,77.16402919823304,78.14220886770636,77.82921459851786,78.34052503854036,77.49941816972569,76.97734250919893,76.98711833218113,76.8584129344672,77.50703544262797,78.33177215373144,78.1410669144243,78.76419583102688,79.14250300219283,79.22827561339363,79.02254055952653,78.65449587302282,78.41937035089359,79.20213034097105,78.87418144242838,79.04731672396883,79.22419440373778,80.11882918095216,80.03154076077044,79.38876450341195,79.76376779796556,80.30250790296122,79.62074764212593,80.07483225455508,80.24047685740516,80.28268237505108,80.70636063534766,80.9394325716421,80.04754784889519,80.92630338063464,80.71376374457031,80.44973277766258,80.5848946440965,80.59779101191089,80.62287340592593,81.0217873165384,81.16551347495988,81.37799741793424,80.4935378418304,80.02189620165154,79.54795618308708,80.13507822435349,79.57078203512356,78.64155033882707,79.23473741486669,79.73424334544688,79.55068627698347,80.25288027198985,79.44571419991553,79.70235881581903,79.16280079865828,78.2288260590285,79.04758859984577,78.71347637288272,78.53638018248603,78.25861260667443,78.78864224581048,77.91593832150102,78.62764661666006,77.87861973326653,77.38634933251888,77.84220904484391,77.66805746546015,78.16552598075941,78.81649205554277,78.565955595579,78.59701791312546,78.1018199371174,77.99904202762991,77.07546685496345,76.67139238491654,76.70359064685181,76.5271349507384,76.72869291296229,75.74841709667817,76.65065012639388,77.28474789159372,77.69440574711189,77.3169803917408,77.89022771222517,77.73848268669099,77.25463904021308,77.34068235289305,76.42791492911056,76.91224850714207,76.7648816970177,76.69413748430088,76.92316366825253,76.04917809739709,76.3802619422786,75.83429330727085,76.37554972665384,76.39831071672961,75.52420649351552,75.38515200093389,74.7611279040575,73.98366069188341,74.89772006124258,74.36622330825776,74.07812077179551,73.62239764723927,73.017618897371,72.28079256042838,73.23406679881737,72.6472392976284,73.20568382227793,73.91399244777858,74.16688654804602,73.85003344528377,72.8895456744358,71.98749430803582,71.52403821004555,70.96025330899283,70.55603123316541,69.60676388908178,70.26895330706611,70.15256910165772,70.22748738760129,70.02265041042119,69.85203531337902,70.21097469888628,71.08452864270657,71.77667603967711,71.51655697217211,71.7775791734457,72.03381540020928,72.83700553048402,73.5658045061864,73.08790200622752,72.2370933056809,72.737971666269,72.4576695333235,71.93121671536937,71.79004187183455,72.4505744301714,73.01956703560427,73.18417077697814,73.99663276271895,73.9062753226608,74.78234445350245,74.2777154785581,74.34620511112735,74.24255643272772,73.39543807925656,73.51454812427983,73.3904000041075,72.52064435230568,73.2620058292523,74.06962275831029,74.61830521794036,75.15577787300572,74.59874028014019,75.00194551004097,75.2577266623266,74.79048853274435,74.73295663809404,74.0529102832079,73.88019381463528,73.0368198635988,72.8934817854315,72.4096595342271,72.64854181418195,72.79435792937875,72.1559180743061,71.34633312840015,71.72844261908904,72.6569556882605,72.14030442712829,72.24817850347608,72.01504367450252,72.13360355654731,72.78310851193964,72.44949197303504,71.5505397003144,71.41933858580887,71.04606621712446,71.72290916461498,72.15187865542248,72.73739451728761,72.16876308247447,72.4268931876868,72.928312337026,73.06810261588544,73.70750131737441,73.72678096359596,74.6415612460114,74.38830709876493,73.43330852594227,74.2142459130846,73.76552600506693,73.26991672161967,73.0167757733725,73.60261395433918,72.9132075374946,72.58268452249467,72.79688359005377,73.35764545807615,74.02704832237214,73.93524335836992,74.44155772496015,73.49309845175594,72.69616781966761,71.92987291421741,72.2835215148516,72.46788887865841,72.61389750428498,73.12357616145164,72.812072948087,72.38773517170921,72.61948557011783,73.20513162668794,73.0920943361707,73.10001904005185,74.03520714910701,74.04103497415781,74.78543652081862,75.15599792823195,74.77662050910294,74.0460853818804,74.55832485156134,75.21641384484246,75.94760570721701,76.75954607175663,76.31098413234577,76.20752653293312,77.16139582544565,78.05233815126121,77.17926759133115,76.4343151729554,76.04514221148565,76.35210077185184,75.98021170916036,75.59273951128125,75.99601635430008,76.06652294006199,76.2813019179739,75.35316746775061,74.47434876766056,73.9182054027915,74.28864254895598,74.41860191477463,74.01864196779206,74.74822604423389,75.08514363178983,75.50858157780021,76.04875415517017,75.99035693192855,76.21075032604858,75.5787672912702,74.73244400275871,74.88618038175628,74.1520876265131,75.10565551184118,75.0288527160883,74.06216726731509,74.99566565779969,74.78669119626284,73.8815861386247,74.40643871994689,74.3813237119466,75.22696268325672,74.51709467265755,73.79687287611887,73.38754514278844,74.29291476774961,73.9144089166075,73.00348937977105,72.59076146967709,72.17307551577687,71.50264065666124,71.22721024230123,70.72431075386703,71.58098995545879,71.96049519488588,71.2269728211686,71.20942954905331,71.0631132661365,71.58818790875375,71.30886846315116,71.9458461762406,71.16308154771104,70.6390775195323,70.29178670048714,70.0959856766276,69.52098179422319,70.39849978266284,70.99156123772264,70.44040072662756,70.98974602483213,70.50944059854373,70.8838029615581,69.92697619553655,69.10808208351955,69.18086671316996,69.8703991677612,68.9609461617656,69.42388049792498,68.58195763407275,67.66359545988962,67.33655375428498,67.60622197808698,66.70519939670339,66.0827835733071,65.62753097200766,66.12334681302309,66.53200652403757,66.64910194696859,66.61028342554346,65.773486985825,65.55554331233725,65.97159215854481,66.70122575340793,67.43233407847583,68.11715419078246,68.37361384928226,68.81090043345466,69.68222093069926,68.87609777925536,67.91477497760206,67.080452054739,66.8451460218057,67.81826214911416,67.81696197809651,68.21261694515124,67.60788360191509,67.74690134450793,66.74903848394752,67.7381768100895,67.84681848064065,67.49589313426986,66.77907945169136,67.40434883348644,67.74799550371245,67.64685668749735,67.81708955252543,67.85019665071741,68.14526961836964,69.12947135139257,68.31329362373799,67.77142119081691,67.48741853190586,67.794012024533,66.91256293142214,66.4056265768595,66.77759955544025,67.22249302314594,68.21944412309676,68.74960562447086,69.59265751903877,70.21450031641871,70.3095076540485,69.86366285849363,70.01734906993806,70.5333694810979,69.91895184991881,70.75891870772466,71.6549206553027,72.47150452248752,72.03824417758733,72.87790541443974,72.30939692584798,71.54242550209165,70.95707017788664,71.67042122827843,71.70772439008579,72.49435469228774,71.70188775099814,72.36059175431728,71.5653419662267,72.0081855384633,72.9190895925276,73.44480806728825,72.49844709550962,71.74500734871253,72.49412566935644,72.59976615244523,73.07892610831186,74.07734924461693,74.86722475616261,75.08525625336915,75.80086760316044,75.73838960379362,75.58098399313167,75.11815766617656,74.74098956631497,73.95164337707683,74.77151256334037,75.67975513078272,74.79818271100521,74.60702030174434,73.65276401955634,73.96122877113521,73.87020596116781,74.78995071118698,74.43909483635798,73.49583909381181,72.7292859419249,73.2275997409597,73.37615361623466,72.90732750669122,72.57141717383638,73.49909238051623,73.27481599478051,73.73519035801291,74.6833942416124,74.46227740403265,73.58846330549568,73.85093289148062,72.86994027066976,72.47631204454228,72.14167474862188,72.15860538324341,71.68881059298292,71.93935040012002,72.0292943730019,71.53943831380457,72.3310798346065,71.77445016708225,71.87863574642688,72.84476652275771,72.52631401084363,72.52458684379235,71.72334836050868,72.03870493825525,71.23037278885022,71.86895612254739,71.00013252254575,70.77537091216072,70.94976423261687,70.82962375646457,71.61082368064672,71.56854131864384,71.37587890727445,72.17318534711376,71.58699806500226,71.75809732358903,70.77637235168368,70.72941117687151,69.81631141342223,70.40114343119785,70.74950034031644,71.33184064971283,70.90728672314435,71.44486854085699,72.12470161775127,72.7796568875201,72.55405260529369,72.21037022769451,72.31447859480977,72.5874132476747,71.85317451274022,70.94388930313289,70.50539044244215,70.6903860848397,71.22837604396045,71.37770721875131,71.04695739597082,71.76410358399153,72.35565934190527,72.00343929696828,71.7755812657997,71.76785439439118,72.75193903269246,71.79616194264963,72.48795278416947,71.7666201251559,72.12002159841359,71.37016783980653,72.34969547018409,71.76760102435946,71.43070243718103,71.75413281051442,72.1728595518507,72.95983226690441,73.91604557773098,73.35272896429524,74.25007662409917,74.92310032481328,75.10067549021915,75.62713761581108,75.51764104980975,75.05967945838347,75.66326337633654,75.47613150114194,75.95642953971401,75.69810892175883,76.17576058022678,76.59644312690943,75.69014596194029,76.17706193448976,75.62404230982065,74.95861212722957,75.5901506668888,76.25040246034041,77.01258845627308,77.52078824862838,78.48879228858277,77.8869679896161,78.42246335977688,79.14657648932189,79.81331282714382,80.47850973531604,80.47035974636674,81.0910556553863,80.98568359902129,81.79197883885354,81.66835381742567,80.76618321891874,81.08723118202761,81.16882311180234,81.13370110560209,80.71571695245802,80.34407701576129,80.53625453170389,81.04458182910457,81.76889511290938,81.55086710816249,80.7964556417428,81.13937500258908,81.62160678487271,81.09307671990246,80.82728074910119,80.46273978706449,80.19047766039148,80.07493913033977,80.71995690604672,80.41992320166901,79.95267191156745,80.1699196905829,79.64111260697246,79.41278114542365,79.86814872687683,80.24176205974072,80.55606610095128,80.57906024437398,80.07358356518671,80.73629186488688,81.59954542433843,82.354751910083,83.16367088444531,83.20891714841127,84.08438531169668,83.96482895780355,83.86453474173322,83.05071288626641,84.01381738344207,83.76589136291295,83.84212241880596,84.10557913174853,83.56208628974855,83.373011643067,84.14293177332729,84.06826253933832,84.68924072524533,85.61196643905714,84.8672447600402,85.3130643311888,85.09249473270029,84.8486772859469,85.14402496162802,85.32709243707359,85.55670708185062,85.96377683291212,86.09303280245513,86.17601997498423,86.04610601672903,85.48530823877081,86.12360804248601,85.94193113129586,85.68559249071404,84.9534940677695,83.98868674691767,83.33633913984522,83.04760894645005,82.77330813044682,82.53091985173523,81.84975540218875,81.9613904231228,82.52475477801636,82.06082669273019,82.61092141224071,81.80953571479768,82.41527648968622,81.54307641414925,81.88375518284738,81.86330210464075,82.6845799474977,83.1894159684889,83.18802307033911,82.25511163007468,81.83331516291946,81.1676767328754,80.60325925750658,81.03296244237572,81.28036389220506,82.00871526263654,81.66508694225922,81.89385098451748,82.7853030464612,82.64842696674168,82.22347216773778,81.89939758880064,82.32950007729232,82.8174492684193,83.34810518659651,83.98436349490657,83.59435194451362,83.77809114893898,84.77148825023323,84.08265734324232,83.24378709774464,83.56104785529897,83.4126243502833,82.97219510702416,82.35059954412282,82.77147424640134,83.73743687616661,82.86528273206204,83.09229320380837,82.94394072145224,82.98343881079927,83.24191114492714,83.40965934051201,82.92557249823585,83.48819761862978,83.83797256788239,83.38071649800986,84.14481268869713,85.01130458340049,84.72768511530012,84.63418013276532,83.97680192207918,83.29154090816155,83.79893692582846,84.0039957924746,83.82867406355217,84.63693674188107,84.35661359177902,83.84243012731895,83.65112392045557,84.40451143449172,84.70761625189334,85.65732228104025,84.77692665020004,85.2518331608735,85.93139095418155,86.65208593290299,86.1550272279419,86.95567301660776,87.2668098625727,87.20020968234167,86.48274205671623,86.65668689459562,86.03031038772315,85.17702763108537,85.9085754789412,86.74967065267265,87.41737891640514,88.33354441681877,88.34314621379599,87.92734620254487,88.76429794868454,87.98094295198098,87.19101580651477,86.53631311934441,85.81556871999055,85.94797808257863,85.92413785168901,85.8290894930251,84.88308322243392,84.22968526743352,85.17147925077006,84.95883343741298,85.5050177006051,86.0978841772303,85.74274582462385,86.62944013858214,87.57531104283407,88.5576704936102,88.6898314668797,88.57172775128856,88.0677164522931,88.21783743333071,88.09976756293327,88.46714164316654,88.98711017379537,89.94220176991075,89.40467634564266,88.50049538677558,87.95873725041747,88.78657764242962,88.10404361505061,87.84076943760738,87.18564712256193,87.61418052995577,86.948827305343,86.83216809201986,86.39099851762876,87.1548162586987,87.83447612216696,88.42741643451154,87.72591971233487,88.71643750509247,89.55202446272597,89.27740355068818,88.98345833225176,89.52035594079643,89.67180171562359,90.56396135454997,90.17999828187749,89.30580374132842,89.44864268414676,88.74089744500816,88.30667381826788,87.73533973004669,88.26213695621118,87.78547312691808,88.36526993196458,88.27727116970345,88.48093924159184,87.86135624814779,87.85298580443487,86.86952842772007,86.3208511560224,85.6730676703155,86.12305933283642,85.74165214272216,85.90815113345161,86.04752417979762,86.91451739240438,87.19673786824569,86.86222483823076,86.0629015546292,86.41578332521021,85.69988823635504,84.77798811485991,84.4299781974405,83.53180644009262,83.33404606208205,83.47933819377795,83.51973813539371,83.60829171771184,83.61218053195626,82.83953273156658,83.07574738794938,82.81461073644459,82.61667200224474,83.42681850027293,83.65991230867803,83.07678782846779,83.45830107526854,83.34590365085751,84.27030023327097,84.05993132898584,83.62982779648155,83.87700163107365,83.5419791592285,84.18192841345444,84.34119514143094,84.13069559400901,84.70102543663234,84.26261173561215,83.69109554728493,83.1914628376253,82.52593956468627,82.31000935519114,82.35204184101894,82.96070002950728,82.73492618976161,83.73335499223322,83.57166327675804,84.35049541760236,84.05555714992806,83.10989352548495,83.0406682183966,83.29246529890224,83.95037062373012,84.23605343233794,84.73146480228752,85.716132810805,86.22835965640843,85.89986013295129,85.92554564401507,86.63146735820919,87.3440279411152,86.49207753269002,86.61461914330721,87.14431050792336,87.77968408772722,87.94098525401205,87.15356707526371,88.05377145064995,88.29886211501434,87.54058347037062,88.21994667453691,87.43649143446237,87.7614482557401,87.47140985261649,88.11297299945727,88.96198518807068,88.97816835297272,89.2501293704845,88.60897678695619,88.59472752874717,89.25245051458478,89.85464984178543,90.38157398346812,90.33320530876517,90.52686915965751,90.61277706222609,90.93594631971791,91.46522914804518,90.63738504610956,91.4070149147883,90.7810632600449,90.8936151205562,90.78338716970757,90.2679681321606,89.78702200390399,88.93478862801567,89.70210383273661,89.79511869791895,89.6380395819433,90.21728817978874,90.31106139812618,89.54159445967525,89.03462039399892,89.87329731788486,89.43061469960958,88.48276259191334,87.75107173947617,87.56861045118421,86.9078378197737,87.77460181573406,87.79411824978888,87.61564542958513,87.7643979396671,87.73551221517846,88.25609754677862,88.97523421281949,89.50329395383596,90.33992081182078,89.50741368206218,89.65679582441226,88.90250983880833,88.16975450748578,88.45181325869635,87.8095134506002,87.11778394505382,87.98438527993858,88.77857274655253,89.69714979501441,89.82050261134282,90.57982175424695,90.17788448464125,89.53985850419849,89.64732813974842,89.01258705416694,88.37178822839633,88.37110216915607,88.37902779970318,88.54210444213822,89.22716680401936,89.10363944340497,88.21557068591937,88.35327903414145,89.05164139391854,89.19069092534482,89.46615178184584,90.40130090946332,90.0824554990977,89.27343493280932,88.93603083956987,89.77242949185893,89.28780894260854,90.17287187324837,89.4791710502468,88.69136851886287,88.39678255002946,88.46483296295628,88.35581731935963,88.17867570975795,88.72071753069758,89.13199426420033,89.79595687706023,90.30986620346084,90.84149840893224,90.11262864619493,89.15235932311043,88.51811192790046,89.19402235653251,90.06008581444621,89.48730054637417,90.03616795223206,91.0262533123605,90.71405452862382,89.97308642882854,90.37861215183511,90.21262743510306,91.00939003191888,91.33596260938793,91.09793736739084,90.15079307509586,89.5728409755975,88.98951911274344,89.3115145387128,88.62045949604362,87.92428978579119,88.53794244816527,88.07157943444327,87.70104003418237,87.38734407164156,87.26179993478581,87.21948627475649,86.99878711206838,87.84210517955944,87.57454387517646,88.17054349556565,88.5441069402732,88.02098593860865,88.36853888584301,88.2984332931228,89.23690513288602,89.13768721744418,89.71710066031665,88.76134193595499,88.1366340094246,88.5621533789672,89.41107424069196,90.1264999457635,90.57964928494766,90.70976104354486,90.17845571739599,89.39470365038142,89.29143572039902,88.72849157685414,89.4762643110007,89.23966721119359,88.56062596244738,87.78391737723723,87.45550636388361,88.24781071767211,87.37215933995321,87.89133667387068,87.58433924382553,86.8422003928572,86.02567988773808,85.31952755525708,85.83764757914469,85.59122633561492,85.86439812649041,86.36530262604356,87.21598420431837,87.04660709155723,86.97251453623176,87.59194575157017,86.79051834531128,86.28448267979547,86.28121597599238,86.1056950436905,85.86702235555276,84.98976638866588,85.50245744222775,86.34501877892762,87.31021093716845,87.70535146445036,86.73277364298701,86.6957714422606,86.3936228742823,85.96864468045533,86.86220079753548,87.39949513366446,87.46490709902719,87.90337941981852,87.53806816786528,87.95323171606287,87.19065229780972,88.02219740254804,88.22607546951622,88.87836228869855,88.55908584780991,88.27668361878023,87.62416124902666,86.70937570603564,87.61642746534199,88.06219608848915,89.02999461209401,89.95907230162993,89.87744057178497,90.6719229943119,91.22533946763724,92.10187411028892,91.77126272534952,92.32476786570624,91.9269028576091,92.34628137294203,93.00516011100262,92.46492611430585,91.67255617585033,91.72315642656758,91.72584257367998,90.86863883631304,89.99462034646422,89.62152128620073,90.58278032531962,91.20773251121864,91.82153197238222,92.02448788983747,91.56805130420253,90.90147239621729,91.51357973366976,91.913046493195,92.23419239744544,92.33732134941965,93.0926197450608,94.07259443635121,94.31684427615255,93.53863766323775,93.37767583644018,93.32264349143952,94.20472325803712,94.21587128518149,93.27910593571141,92.77769744675606,93.32449004100636,93.07104289904237,93.87098355730996,93.49905457021669,92.791480879765,91.7991408915259,91.51331174839288,92.1774531127885,91.42336643999442,91.08471728907898,91.19565978413448,91.00586658157408,90.2178436848335,90.30166445625946,91.18673011427745,92.10572799574584,92.14833018556237,92.46857181889936,93.3804924050346,93.27394807524979,94.05025258241221,93.79342059837654,92.84237622190267,93.6402289411053,92.72657855181023,93.21744096232578,94.04559243563563,94.07464618328959,93.86628045095131,94.50645953137428,95.24994033202529,96.24987086327747,96.6450070142746,97.5587867195718,97.04928269283846,98.01339046284556,98.87733011227101,98.97267033206299,99.63983102329075,100.57143330806866,101.40851711854339,100.63145846594125,99.78194021480158,99.74338000267744,99.28753121942282,99.3821169459261,98.73055155435577,99.10548541136086,99.26899800915271,99.7086139046587,100.22058461420238,99.31964463787153,99.46311831381172,99.55622184695676,99.23714424669743,98.41923399362713,98.87360746460035,99.84659604821354,99.10456883069128,99.03052761452273,99.68336658226326,99.79496201314032,98.93433542177081,99.29661989351735,99.22295543784276,98.67751041194424,99.01786772208288,98.83194561675191,99.4842184735462,100.03892759792507,99.90539103699848,100.4270418449305,100.02767669828609,99.27380896126851,99.365582132712,99.9829148799181,99.46323274541646,98.99159640306607,99.18902844237164,98.20825301948935,98.35047346213832,98.14627542998642,98.96682535531,98.19247207418084,98.15516712004319,99.0257557630539,99.79046839196235,99.0362672447227,99.81771601131186,100.2246591327712,99.4505653786473,100.19861955801025,99.26700379932299,100.08265851065516,101.03882696479559,101.06744010839611,101.65762353874743,100.89286253182217,100.36705565871671,99.77574180671945,100.12879721680656,101.10131315886974,101.06449351692572,101.3835134850815,102.12963400175795,101.46335178101435,100.54635306634009,100.53020273149014,100.56862482614815,99.897159289103,99.96217916021124,100.92948937090114,101.81764245219529,100.84035022417083,100.81774482456967,101.560797594022,101.43575219903141,100.57998995529488,100.80153982853517,100.73014870844781,101.49910714663565,101.7586821722798,101.55964362667874,101.91350168222561,101.99180641584098,102.68607405712828,102.55236890446395,102.50987941492349,101.66021532379091,102.48750013764948,101.68142673606053,101.89409876149148,101.78422999754548,101.31937766028568,102.25978055642918,101.8231666139327,102.38930350076407,103.1029797680676,103.63832266628742,104.1155342864804,104.79894491098821,103.90278179384768,103.46728015970439,103.98577918345109,103.58894905168563,103.91932836314663,104.22544269403443,105.12248027510941,105.77439325256273,106.7582522565499,107.3069530390203,108.05255498504266,107.39200982591137,107.57276691775769,107.54648956330493,107.87037242529914,107.00436769379303,106.87921445490792,107.70287957973778,108.5138327521272,107.72008452890441,106.74964952468872,106.40318597806618,105.96644609188661,106.61938318517059,106.56888518482447,107.01846448890865,107.34852566383779,108.21611025044695,107.46721657784656,106.83973865676671,106.64733742317185,106.63103403756395,107.29786327201873,106.95522216428071,107.76657908316702,107.48113277973607,107.03992410702631,106.89923388697207,106.35131583176553,106.87845717230812,106.25260669644922,106.435758496169,106.52194612333551,106.59107458172366,107.17070977576077,107.28351383144036,106.88189195701852,105.90978888748214,106.50265086907893,106.75246529886499,105.8066469039768,105.77453358797356,104.81370696844533,105.42709681671113,104.71129355952144,104.64955048821867,104.54443743079901,104.75524734193459,104.4067662646994,104.22174798045307,103.72129622474313,104.2692527291365,103.88349452288821,103.34805750846863,103.67538232123479,102.78622726537287,102.49073665775359,102.54136078665033,103.12151595856994,103.64026440354064,102.7348106331192,102.64369924878702,102.38830202072859,103.19673479581252,103.19119120761752,103.30705766752362,104.17723766993731,104.28853366384283,104.2228155406192,105.13949573459104,105.532430190593,106.0209946045652,105.48972552502528,105.9481371184811,106.72221763106063,106.92358738230541,107.45583033049479,106.67020640987903,106.26309301424772,105.56837957398966,106.14631310058758,105.8744261553511,104.92738444823772,104.94710311712697,104.07665919791907,104.74296202650294,104.28811176633462,103.98111703014001,104.56655359780416,104.36727735912427,104.00678501930088,104.65476283291355,103.96145957009867,104.08124863030389,104.75095375301316,105.62916097836569,105.22243606857955,105.43395317532122,104.55968470219523,103.59451049007475,103.46103241154924,103.32224633451551,104.09408792341128,104.41476303013042,103.65655930666253,103.0163993043825,102.03040976822376,101.24439333425835,101.67231782898307,101.7274289582856,101.58903879998252,101.18494901899248,102.1046323091723,101.55110575770959,102.45469247596338,102.95870689395815,102.7893062280491,103.31883326917887,104.22807550011203,104.36363719170913,103.5262844171375,103.92633052589372,103.35488233715296,103.57564414432272,104.14869635878131,103.38202848145738,103.46657377947122,103.05904948199168,103.12176579562947,102.49819511501119,102.62314972747117,102.01508773537353,101.18770349258557,102.00733098108321,101.98391455924138,102.44971276586875,103.06322703650221,103.91816060710698,104.50222452403978,103.67962799780071,103.07587453583255,103.47001619264483,104.18124947370961,104.30596144776791,103.49782767985016,103.63827422074974,103.22531309910119,102.53547352086753,102.92367709008977,103.78581315884367,104.00197444064543,103.5483647082001,102.75926030427217,102.89466472296044,103.33881587255746,103.57448325818405,103.23837862256914,103.7196555766277,103.88642068300396,104.40695702284575,105.12938399007544,104.48995034629479,104.93368454789743,104.20520330918953,103.57974033011124,104.4341908483766,104.95668263081461,105.46820169314742,105.82287027966231,105.81377511750907,105.94668872980401,105.90954193100333,106.26121510146186,107.01880807382986,107.87804569583386,107.94642083020881,108.22491224156693,107.8423763117753,108.39376196172088,108.25307095842436,108.87941209506243,109.06285846186802,108.30040513537824,108.7248824662529,108.13037060946226,109.12209688778967,109.50324092106894,109.01607937319204,109.63747386122122,110.3127908417955,109.56541395373642,108.89114726195112,109.45923806540668,109.48258276609704,110.47144778585061,110.32716910727322,110.22266799444333,110.3583531100303,111.05685390159488,110.20292008016258,110.16618347773328,110.24802417913452,109.69362077629194,110.0809204429388,110.32977106655017,110.59367454703897,111.21058223443106,112.07816965458915,112.27818180061877,112.04432154539973,111.94771877862513,112.45221340004355,111.97043507453054,112.8438234445639,112.98177826730534,112.27485301252455,112.3656195057556,111.83294637454674,112.18823515763506,111.79315525246784,110.92971857823431,111.68154709227383,111.20321832876652,111.78156239073724,112.25995737547055,112.07359760953113,112.38647847389802,112.13498400431126,112.30978894419968,112.46221341472119,112.04188222531229,112.05388968996704,112.73172462219372,111.90208098711446,112.48211769247428,113.40307745523751,113.79704413888976,113.2579033463262,112.80026417598128,113.73970564361662,113.68446508096531,113.78508841758594,114.04237457923591,113.67117942171171,114.33019345998764,113.34724990511313,113.05334072187543,113.18349748943001,114.10327191464603,114.88894025608897,114.34985236031935,114.33598670037463,113.7454718388617,114.62001276342198,113.63335826294497,113.80846210103482,112.84058539103717,113.70657061366364,113.7655865335837,114.26459933025762,114.7105234223418,114.2796697509475,114.39758902229369,114.72772995987907,114.28964975755662,113.96028048824519,114.55950079858303,114.15814562840387,113.44135888013989,113.43364164000377,114.36184136103839,114.94336749333888,114.40375843085349,114.70098008960485,114.14062935579568,113.38011236349121,112.74287748755887,112.5285664848052,113.40454164799303,113.79467214783654,114.35239024180919,114.27002368215472,113.82423862954602,114.24531504604965,114.72848622081801,113.99935540929437,114.68542689457536,115.39523311983794,115.47226756485179,115.60353157902136,115.25797528587282,114.72412990778685,115.59654202405363,115.52325503341854,116.4007327160798,116.32548793498427,116.26648415531963,116.4670575009659,117.00295347813517,116.83552166633308,117.08349520713091,117.10080948658288,117.51107053272426,118.26772066019475,117.53225938230753,116.82495057815686,116.9724909318611,117.86341637838632,118.0905687827617,118.97466244874522,118.57188640581444,117.88470881944522,118.0906302575022,118.39440798619762,118.03664727229625,117.80981093365699,118.65572597691789,118.98093569651246,119.58761238632724,119.40787616185844,119.75163258751854,119.37658961256966,119.30513426568359,118.71792874718085,117.85317960754037,118.63854530919343,118.62149957194924,118.61017353786156,118.36905989795923,118.8234833246097,119.48271952336654,119.39391599781811,118.97442699037492,118.48161604627967,119.05722601525486,118.31897168746218,117.38967260578647,118.2433488634415,118.98331302544102,118.78169648721814,118.36721979780123,118.5679316339083,118.83242302993312,117.98333301302046,117.84219788340852,117.9316657059826,117.38222965179011,117.35674301767722,117.78713783901185,118.05138979014009,118.70340827386826,118.39811254711822,117.89840281987563,117.37889804365113,117.48545042844489,117.9875602517277,118.70789269777015,117.97142802551389,117.89509351970628,118.59992969315499,118.30499875918031,117.4733531838283,118.3067425172776,118.26671237777919,118.27363250171766,117.67638499196619,117.77335937228054,117.8107089898549,118.48836688371375,119.45767893875018,118.89020636631176,119.3915125252679,119.06867075059563,119.51468723360449,119.87406842131168,120.22561127319932,120.18944180104882,119.85181060899049,119.43021452566609,119.32120594056323,119.53346408717334,119.8692742837593,119.84849015716463,119.62698430195451,119.44231863319874,119.60274038091302,120.05245959060267,119.0816091671586,119.81133107980713,120.53916936414316,120.80477234488353,119.97975649917498,119.0463223834522,119.80552203627303,120.27480207569897,121.09381668502465,121.52731115045026,121.17043020948768,121.22109687933698,121.96410999959335,121.9015907291323,121.73393360432237,121.67263548914343,121.73297880869359,122.10603645490482,121.24299868196249,120.51527275377885,121.35002906853333,120.78333496348932,119.8278557122685,120.56572110811248,120.05356187652797,119.2819615835324,118.92635033326223,118.7320415363647,118.00194641202688,118.22519953828305,117.41620274214074,116.56085274042562,115.58830479811877,115.37088627647609,114.53805123688653,114.39199467329308,114.6882374221459,115.30743451742455,115.52313859760761,115.83455920452252,115.64991323975846,116.6043105199933,116.24766605813056,116.82673444179818,116.65882679121569,117.48147046286613,118.08281949488446,118.24784439289942,117.51516722049564,118.43518772535026,118.43146570213139,119.14294354477897,119.22887743869796,119.89074295572937,119.63318761158735,119.48854029225186,118.96680450020358,119.66976242372766,119.11872406955808,118.96604286832735,118.76004642480984,119.38633609190583,119.46404118603095,120.0337784383446,119.73734711669385,119.62303857970983,118.8098276508972,118.43198041198775,118.26713600289077,118.90956057561561,117.97452808683738,117.84159670071676,117.86665719887242,117.63285666424781,116.86641758261248,116.74428293993697,115.7806595582515,116.36001010937616,116.53317061346024,117.49507982051,116.96717858593911,116.66790223307908,117.30977628007531,117.85020656790584,117.68580370116979,117.91404073499143,118.7783114016056,119.0063181584701,118.34548925468698,117.75012019602582,118.26634509814903,117.96458869380876,118.40944535192102,118.312150250189,118.64250572258607,118.83328128466383,118.95256131608039,119.20221343357116,119.62021484598517,119.36384340189397,119.83218603162095,119.18996995128691,119.1349945734255,119.94952211761847,119.20763169554994,119.15015461202711,119.48807838605717,119.16914623463526,119.34810072276741,119.13230175245553,119.36918723536655,119.42816681414843,120.23230339540169,120.82324140006676,120.02122427802533,119.12107702204958,120.04965168889612,120.12949081370607,120.09936531679705,121.02721827477217,120.39242765353993,119.98072957992554,120.89344813954085,121.55071647884324,121.40866584517062,121.31813781289384,121.84209596458822,122.34096096735448,123.05674362136051,122.3758560018614,121.988584513776,121.58376065734774,120.72326234262437,121.46281372755766,121.41151134250686,120.76918819360435,120.58203480020165,120.21526206238195,120.84829002199695,121.12888903403655,120.71573543874547,121.42806452512741,121.292701496277,121.50110976304859,121.60209784796461,122.37854328053072,122.0952290808782,122.72695071436465,123.37712482595816,123.89510820573196,123.72268234798685,123.70490785967559,123.77416844386607,123.08312034141272,123.89751649741083,123.96349355438724,123.17182989651337,122.56456226948649,123.44903755187988,123.61519912304357,124.05197902303189,123.73886229423806,123.24883040226996,122.81353137036785,123.7110371789895,123.57975572813302,124.10362212406471,124.3027655929327,124.17814654996619,123.39641216257587,124.19147105235606,125.08289390429854,125.09746863739565,125.37050767475739,124.47336415247992,124.87813750561327,124.86909559322521,124.83515367796645,125.20206151157618,126.15428802324459,126.57184604555368,127.27361209737137,126.42016195924953,126.90590634476393,126.30231772642583,126.27470623888075,125.61106912838295,125.78616137150675,126.4502085223794,126.28780806437135,126.94613984925672,126.77031149202958,127.39354742178693,128.19644737243652,128.95384568488225,129.01740926224738,129.73782391054556,130.48612654116005,131.10781619371846,131.25143084861338,130.32724138814956,131.13503092667088,130.7247927058488,130.07857602788135,130.4163811923936,130.47146360110492,130.0241506220773,129.13812461635098,129.39832684164867,129.4702130658552,129.26980384858325,129.58176881168038,130.44709663139656,129.81854664441198,129.13420713180676,129.17591981962323,130.0317846974358,130.16613895213231,130.77608791738749,130.0557776489295,129.37407505745068,130.3141076262109,130.2220471985638,130.41323167691007,129.93569526961073,129.19017493491992,128.96005110582337,128.63089387025684,127.92870987160131,128.5980525035411,127.71466281311586,126.86015005270019,126.15208483394235,126.77303748484701,126.08788755256683,125.906303410884,126.31806783471256,125.55155239766464,124.7679766016081,124.50910462765023,124.54428272554651,124.24176132353023,124.4850794649683,125.12938749743626,124.98591099539772,125.3336339215748,125.01248554885387,124.08155290782452,124.48317850055173,125.13790895976126,125.14373729750514,125.14993754215539,124.4508930244483,124.09524156944826,124.35108059132472,124.52194596081972,123.56574540538713,124.53740046452731,124.94598143640906,124.31801662640646,123.97162622725591,124.7347266646102,124.85714481258765,123.88297766726464,123.0620846375823,123.64183008624241,123.15208284789696,123.94689455535263,123.82117225276306,123.6440811753273,123.24736267281696,123.07842975342646,123.0179036827758,122.73245170619339,121.79014823725447,121.5107974037528,120.60290077049285,120.15787819866091,119.59659539395943,118.93047415651381,118.38060588622466,118.95778650278226,119.73874438833445,120.34299992071465,120.23123308457434,120.55113653279841,121.03879322158173,121.87850847747177,121.53767425799742,120.94434227608144,120.3534594248049,120.96667102677748,121.56927487626672,122.41808685427532,122.52102513145655,122.14394423505291,121.38461612537503,121.0322746145539,121.56668499251828,121.77629964472726,121.81334865046665,121.75470253266394,121.56398637033999,122.47158236661926,121.91950896242633,121.24958291836083,120.97427779017016,120.3440008382313,120.28928116336465,120.50795481540263,119.85231427662075,119.17582849506289,118.94621714251116,118.74474031012505,119.23883155593649,118.69027303345501,119.63201725808904,120.12280998053029,119.23471919912845,118.79271407146007,117.82689751917496,118.53797370335087,119.0651865801774,118.77450794866309,119.34354639565572,118.45637857727706,119.39200160466135,120.22813478577882,119.99835742078722,119.26147846970707,119.37696996051818,118.6843556179665,118.3345047691837,118.10724129294977,118.57378710387275,118.95858907839283,118.62080652266741,118.0459135947749,117.24531914293766,116.94682401046157,117.21213572239503,117.62396673858166,118.23136797081679,117.53201529290527,117.28069609776139,116.93807791592553,116.30378315830603,116.78804113995284,115.80536205554381,115.44348371261731,115.34958575572819,114.59710363578051,114.86348132789135,113.89824763033539,114.28486379655078,114.46315568126738,115.28623813157901,116.28385262610391,116.26857320033014,116.85134494071826,116.57535235863179,117.29767387034371,118.15426003420725,118.34298192057759,117.49908668873832,118.3341728397645,118.55506739998236,118.79713121196255,117.87803897634149,118.72084701620042,117.95297197718173,118.53330259816721,118.00533711863682,117.72796519612893,116.90666019823402,117.56006322754547,116.98173309117556,117.72318040486425,118.44225775124505,118.10837798612192,118.91495850961655,118.43305625021458,118.61892207572237,117.7661167238839,118.19026702595875,117.92304709879681,116.96836419310421,117.60141613800079,116.97379514202476,117.06898257276043,117.6054771267809,117.33143432065845,118.27891074353829,117.7969484818168,118.35773388808593,118.88078740891069,118.49757176544517,117.56297307554632,117.29568423843011,117.84699569642544,117.77548745786771,118.46364249708131,119.32000604690984,119.16290792590007,118.84913936071098,119.44187016272917,120.26896935282275,120.58052039239556,119.7789128147997,118.82481491798535,118.96603345545009,119.88156377058476,119.0690546380356,119.1499644825235,119.3054795190692,118.35227426001802,117.94473680341616,117.3684659730643,117.76598562626168,118.51933807414025,119.19067266909406,119.7109744134359,119.1256641075015,120.04201940633357,120.78455429989845,121.02761996397749,121.23985227150843,120.66085695987567,121.36237725475803,121.54124326212332,122.04585263878107,122.06150951422751,122.29485094267875,121.79575379705057,122.71597082633525,122.48344763042405,123.06580497324467,122.83660310693085,122.36900259088725,122.20604196423665,123.05757332034409,123.69530436443165,122.98523846035823,122.06870192522183,121.17083606263623,120.6508739166893,120.60102287912741,119.72256045369431,120.59797216532752,121.40429387520999,121.4019777290523,121.39713978394866,120.62810339359567,120.88207236863673,119.92740821652114,120.40661206236109,119.8509648158215,120.41603334061801,119.98555901041254,120.57648592442274,120.89697537850589,121.03603009693325,120.84605685202405,121.3463819976896,120.96363976877183,120.37182735605165,121.188077297993,120.57404204225168,120.90983444079757,120.24811273813248,121.14659363869578,121.20325005659834,120.26634921878576,121.17328315600753,121.70866398420185,120.88626901758835,121.18931868532673,120.65678508253768,121.0157874757424,120.48449871363118,119.66872378671542,118.94984672032297,119.01640187716112,119.97382498485968,120.26489010825753,119.4477730691433,119.37914683530107,120.03180745290592,120.76916889799759,120.45910722296685,120.74513546517119,120.98095106566325,120.7427996811457,120.36829178128392,120.8433476742357,121.38310699211434,122.25725923851132,121.49209215538576,121.73247225070372,121.42503820592538,121.54667241638526,121.8661886965856,122.25858023948967,122.60423124954104,122.20174685306847,121.69218667643145,121.79983616340905,122.40180453006178,121.577031460125,120.9202706203796,120.5565677518025,119.61459396081045,119.50765520660207,119.63387617655098,118.74257274856791,118.58410952007398,118.78608109336346,119.76043676957488,120.60860934527591,121.09238145407289,120.34851644188166,119.51011381624267,118.60000345204026,119.587719372008,119.60815803380683,119.49787763878703,118.87311834143475,117.97555283317342,117.0063736634329,116.48161299200729,117.36540968250483,117.63215481257066,117.91545914066955,117.2230374943465,117.54069983912632,117.94909728644416,117.88807239430025,116.94580267602578,116.86988661717623,116.8769247434102,116.8509061508812,116.65536271268502,117.47727371193469,116.78978659864515,116.18509857496247,117.06734724948183,116.2797093312256,117.25197028042749,117.90617020055652,117.34510769555345,116.83757781982422,116.2194782202132,116.66345414705575,117.30840246938169,116.6087347813882,117.33814944280311,116.39568975102156,116.94693270046264,116.3951629055664,116.52040935354307,116.91955899260938,117.50166891841218,116.8694663234055,116.8647971288301,116.80698881018907,117.7679176996462,118.47645089635625,117.549124781508,117.38062842562795,117.5730601917021,117.53624365199357,117.24742538575083,117.30476687569171,117.04396107280627,116.31173036620021,116.86585809616372,116.28582628117874,116.51937792217359,117.12532692728564,116.67587757250294,116.27618292719126,116.27895361091942,115.45263236807659,115.89091065339744,115.58323253504932,115.77169195516035,116.15238183084875,116.89081569435075,116.23159590363503,115.84943986358121,115.83250777097419,115.46911087306216,114.89770212164149,115.34759362787008,114.77092371368781,115.2989905658178,115.6156714190729,115.1704727304168,114.627206441015,114.78747945418581,114.800010566134,114.42466239677742,114.63898411719128,115.54242289578542,116.38132468657568,116.35634014289826,116.92423804476857,116.94859050866216,117.33258064603433,117.74284577742219,118.17172178439796,117.86499487608671,117.32907875347883,117.0850347308442,117.23456486919895,117.98076607845724,118.89832731988281,119.42386192362756,120.13226241944358,119.81491562118754,120.71794791892171,119.73452131217346,120.67330880323425,120.08549519116059,120.70993210142478,120.59722536383197,120.06541037838906,119.66286885924637,119.69704912323505,119.627476926893,120.52130649844185,120.13543919892982,120.30558369774371,119.37365664402023,119.59246150683612,119.41855290485546,119.50498440256342,118.81974138040096,119.07199918013066,118.52934062574059,117.57621457334608,118.45378160197288,117.49531113822013,117.40124574350193,117.74870032677427,118.57885759836063,118.22745666326955,118.01907750824466,117.39200105052441,116.51485295640305,116.75584816001356,116.5899837021716,116.9561851141043,117.46637751953676,116.84732925798744,115.96486243838444,115.88611187320203,115.76166409906,115.39404748938978,114.913140472956,115.8739464841783,116.72590329358354,115.90810374170542,115.65956675307825,115.46871832432225,116.31495033856481,115.69165699370205,115.90368528105319,116.50499791838229,116.82222325308248,117.45018316525966,118.0711968075484,118.33349140267819,117.71425315365195,117.60844502272084,116.69477345608175,116.13233905984089,115.63353733345866,116.61123752826825,116.59799851011485,116.77927915705368,115.8678973657079,115.72644090466201,116.71543542668223,117.64696106687188,117.86274720309302,116.91392902983353,116.77726883906871,116.67824726877734,115.82793562859297,116.63931283727288,117.36286974744871,116.62044662889093,116.56693065771833,117.49321827664971,118.26710848044604,118.82248247461393,119.28023041365668,119.22136631049216,119.15214289072901,119.80670074000955,120.3548287153244,121.18680311692879,120.55502632865682,119.76372259482741,119.30765373026952,120.04073890578002,119.12733020586893,119.42102937586606,120.29864846123382,120.60884501924738,121.01451394567266,121.09885452361777,122.06988257030025,122.60469759069383,122.94115080172196,122.00573510024697,122.70854128152132,122.65885847760364,123.45333115989342,123.88394137471914,124.4520533499308,125.02931865910068,124.75731336278841,123.7852522591129,124.44922407018021,123.83218579180539,124.62645817594603,125.29890723945573,124.37222791742533,124.510746659711,124.46514799306169,124.19563166517764,124.8865276700817,123.98074200144038,123.2216281183064,122.44880948076025,122.72891256771982,121.92516959924251,122.72535957302898,122.63455242104828,123.50417000148445,124.33879904681817,124.05651603918523,124.82706057094038,125.05782766081393,125.2133705993183,125.99303161352873,126.11137463431805,127.09927482623607,127.13512823497877,126.64795203972608,126.40577767090872,126.03560157865286,126.80278399027884,126.9958393801935,127.93629177287221,127.31475709751248,127.18481226125732,126.1914330017753,127.05378461955115,126.20341436844319,125.83863402809948,126.79399158898741,127.24533593468368,127.26350177265704,126.46102679660544,127.06744216987863,127.47422269778326,127.87877151370049,128.19703185604885,127.36570055456832,128.3149213627912,127.45310161774978,128.36763063352555,128.30733949318528,129.30043544014916,129.29912819107994,128.53824605140835,128.79189118370414,129.5151199293323,128.69260465120897,129.06120452051982,128.67356760054827,128.05826517147943,128.23113676533103,127.68999600736424,127.26652153069153,126.44337913347408,125.49868052592501,126.28447214886546,125.83295493992046,125.24535459047183,124.74566076835617,123.86332264728844,123.27306846575812,122.85801755962893,123.4589938186109,123.43682457366958,122.84443970909342,123.1727742520161,122.62008869834244,122.86684631276876,123.02931796619669,123.90010622516274,124.59805115871131,124.17967799678445,124.61099823145196,124.3032561186701,125.14762191846967,126.13353579631075,125.69696100614965,124.70596269890666,124.44115905789658,124.33573643537238,123.53350543882698,124.3458350035362,123.67325264308602,123.07817840669304,122.86368288518861,122.957491484005,122.94349293084815,122.7542522889562,121.94115294516087,121.98498620837927,121.09623971628025,120.9837330984883,120.73848390765488,120.48664193693548,120.30828848853707,119.79690480139107,120.70757453143597,121.47468770621344,121.44049405911937,121.97553046280518,122.31814123410732,123.2131743109785,122.76519554713741,122.04011405678466,122.94906598702073,122.9271583831869,122.70409512706101,123.28432803042233,122.83147714613006,123.0560248401016,123.58771504694596,124.29959948826581,125.28268430847675,124.82246722234413,124.68072173232213,124.11992625892162,123.9140597381629,124.8177499664016,125.71722383797169,124.81513766990975,124.5668148365803,124.52683434076607,124.28943337965757,124.82705358508974,124.65823208494112,125.12913853721693,125.30897169280797,125.87565452372655,126.26719506131485,126.0974965938367,125.90550455404446,125.041870160494,124.78616545209661,123.84598532877862,124.4513022871688,124.76115481182933,124.15406933473423,123.67656556749716,123.26717865886167,122.43246502801776,123.14656533999369,123.85535547602922,124.52459764946252,125.0868363068439,125.42387779802084,124.81598877487704,124.74470449052751,125.64554700022563,125.65561313647777,125.9779127179645,126.872275124304,127.56010584812611,128.4835830340162,128.75717569654807,128.10347071336582,127.27096254006028,127.92433512816206,128.34316803561524,127.79715284425765,128.6039030207321,129.56173845147714,129.11782247759402,129.3175006415695,129.39706923393533,130.08504045195878,129.81707693170756,129.22313292138278,129.72886513127014,129.16447246447206,128.83773606456816,129.3876999267377,128.73773064045236,129.0294691277668,128.94683909462765,129.08660843921825,129.12799245398492,129.17572920862585,129.07922447519377,129.7496350808069,130.21700230799615,130.17067877575755,129.47120973048732,129.46952075744048,130.02637989306822,129.17439864156768,130.12897662073374,129.19283569045365,129.61159849306569,129.16304016532376,129.13578759972006,130.1113342838362,129.53104009013623,129.364142249804,129.27935743611306,129.38591820001602,130.2010812186636,129.2885452909395,128.86723084701225,128.8360473383218,129.52609301172197,130.32578851096332,130.46051348280162,130.89828723622486,129.98002631682903,130.10818107891828,130.5452426201664,129.64730750583112,129.73775686789304,130.33850133651868,129.8711100667715,129.75367870600894,129.6041981377639,128.7170488955453,129.35450332984328,129.48904080083594,128.85862468834966,129.40264492388815,130.06449864571914,130.0851220791228,130.698569631204,130.4594555706717,131.04912308230996,130.8351300098002,130.46826327918097,130.65074036596343,130.5353463301435,130.6762973801233,129.98916046041995,130.48435289878398,131.42075169365853,130.62675820151344,131.57932739984244,131.2271294426173,131.8243264388293,132.31656445097178,132.54708812898025,132.019583592657,132.9952644603327,132.49396841786802,132.35062597226351,132.60356137063354,132.12872890755534,131.70926184905693,130.87852967483923,130.56838182266802,130.6392607516609,131.0156799191609,130.18433124292642,131.0453647407703,130.2772960504517,131.21649421099573,132.11119343480095,131.11833389522508,130.3082234095782,129.3728840649128,129.15879173669964,129.13307458441705,128.9755732952617,128.73857632745057,127.99295392725617,128.78751105815172,128.1339079909958,128.25729292444885,127.47826767712831,127.00113245751709,126.85969734098762,126.4825465423055,126.79874508455396,126.8629016787745,126.36698649683967,126.34914652910084,126.3864281415008,126.94432834489271,126.17227762937546,125.72938776016235,124.96949857799336,124.26868914207444,125.04411892453209,125.36546734953299,124.86955103091896,124.43800105061382,124.32948538009077,124.41274783015251,124.04272440355271,124.32283905474469,125.23625516612083,125.927969109267,126.76852952223271,127.07688531000167,127.3104931069538,127.04615918267518,126.94475493812934,126.70249535609037,126.05039920751005,126.99323350610211,126.16537940409034,125.55089567881078,125.69524947507307,124.81804398074746,124.94961291179061,125.7681432091631,126.7249943036586,126.88640741910785,126.20045951427892,127.13073921157047,127.05063695972785,127.57711274875328,128.43612030660734,129.27396435989067,128.76107217557728,128.5207624337636,128.65023487946019,129.0832345741801,128.7501718099229,129.26846612105146,128.52925377339125,128.59835529327393,129.4141979208216,128.41647453280166,128.01670104451478,127.7984342649579,128.15367118502036,128.86891442211345,129.7306136637926,130.01633942313492,129.52337914751843,129.18496855255216,129.43989057047293,129.33913770411164,129.65794996358454,130.4341156091541,130.14723578793928,129.64555809553713,129.00953814573586,128.77635371731594,129.7669702223502,130.13169955508783,129.22456689365208,129.7352846735157,130.56861570989713,129.71884529013187,128.9428763128817,129.65279297158122,129.27055242750794,130.09566849516705,129.28915497288108,129.44147979980335,130.2009634785354,130.47585127828643,129.6414121799171,129.66044142004102,129.29625513451174,128.78041753172874,129.09327049786225,129.52815906936303,128.6763678472489,127.7095710565336,128.58367836894467,128.55368222296238,127.6080332538113,127.63613999029621,127.24463135842234,126.32512461347505,125.53289495268837,124.83832705765963,124.2369119618088,123.88237628759816,124.40654529305175,124.77639677328989,124.33691355399787,124.30557379871607,123.45273041725159,122.55045436369255,123.4751702323556,124.05711465841159,123.0754782888107,122.42697040736675,122.97928552422673,123.82116111880168,123.19369271304458,123.91214654874057,123.93658464262262,124.06156681943685,124.80089488159865,124.71194222895429,125.35334837203845,125.51602994976565,124.80714883143082,124.7548194420524,124.24609162472188,123.26965979626402,124.2417392898351,124.13588271522895,123.25482211867347,122.52490171277896,123.48857831675559,123.67170408833772,124.42390045477077,124.48214361816645,124.46198144135997,124.8379174680449,124.48821322387084,124.88895864551887,125.13802760932595,125.4304355471395,126.14135344838724,126.22704990021884,125.62896935921162,126.32559593534097,127.00263223331422,127.79164077108726,126.82672320771962,127.63569333869964,126.85267104394734,126.81821480207145,127.47931302525103,126.71582127315924,125.8483300707303,126.13655269844458,125.24933651229367,125.21995059354231,126.02818004926667,125.0956802465953,125.0562087749131,125.61244969442487,124.84327988605946,124.77540406677872,124.60196837363765,125.06237305374816,125.82901334483176,126.7863118504174,127.44441987248138,126.61299562361091,127.56589166959748,126.86793866567314,127.3840472442098,127.88372838357463,127.64304451597854,128.25462469318882,128.00324445497245,127.54142233310267,126.98673344403505,127.77670132275671,128.49330485379323,128.01547922426835,127.95353076886386,128.52818622626364,128.25634503830224,128.95032508857548,129.33337282016873,130.00525971408933,129.38967274455354,130.11455243034288,130.3546644845046,129.47248509293422,129.84874538052827,129.62231356743723,129.98269531456754,129.9896991881542,130.54265119228512,130.40992312598974,130.24774470878765,129.925183665473,128.97119073243812,128.8006703397259,128.3859081673436,128.47118932986632,128.42638226551935,129.24223384959623,129.08129119500518,128.47556389449164,128.2941990592517,127.66518118651584,127.95036253007129,128.52046264754608,128.65602383064106,127.97532290779054,128.318217755761,128.18201009044424,128.61308640567586,128.7231423733756,127.77782853506505,128.18855947395787,127.8129049311392,127.12284827372059,127.6384813725017,126.68712864909321,127.50395608320832,128.49896019790322,129.17877690540627,128.6557211279869,129.56507009454072,129.04649736499414,129.13709751097485,129.57470190012828,128.96471120091155,129.07755126338452,128.974269031547,128.0121633685194,127.62687500938773,126.95325223403051,127.12312199501321,127.73125001508743,127.25367275299504,127.21422107936814,126.58424268104136,127.11462641274557,126.30558963259682,127.03373080026358,128.0176045736298,128.44592867000028,128.47321324888617,128.90871983813122,129.25348804425448,129.5820482573472,128.7700363365002,128.22229011124,129.00032604997978,129.6666816859506,130.25294726574793,130.13099666684866,129.18957184953615,129.8350272490643,129.5890585342422,130.50418294686824,130.04311096994206,131.02101593045518,131.47220809431747,131.39014386944473,132.28419558145106,131.8608933351934,132.1416867552325,132.19279805012047,131.7323334706016,132.1105871926993,132.50385226495564,131.93436388066038,132.5228839884512,132.9585913978517,133.80278110317886,134.32379530603066,134.97729822760448,134.3402321585454,134.4169015167281,134.28547604195774,134.82163348188624,135.2457746937871,134.2754537644796,133.65015069162473,134.11076371511444,134.4541299790144,133.5820257505402,134.14416479272768,133.96475724317133,134.30137949204072,134.3553460999392,135.08712540008128,134.32904558209702,135.17103846743703,136.00477937003598,136.145239115227,135.87536236224696,136.1041562622413,136.8330620410852,137.21865877509117,137.44509534351528,137.2302022720687,136.8132791169919,136.0235709748231,136.68036067392677,136.3833284592256,135.83805099595338,136.01268109027296,135.8412455576472,135.7167800576426,135.32367832260206,134.65691346675158,134.91149402968585,135.80970233445987,134.92287229653448,135.51492381701246,134.5802877312526,134.917010193225,135.5274559194222,135.24625646695495,135.3212909870781,134.55762351118028,134.20165989315137,134.09417018899694,134.68745364248753,134.3978583784774,135.25140831805766,135.5444554714486,136.51009955490008,136.09615828795359,136.94189154263586,137.70139027107507,137.68258011061698,136.8812147192657,136.35942460782826,136.60395729541779,137.06389512540773,137.0376850250177,136.8678390183486,136.41319165192544,136.62346923863515,137.15004146145657,136.28582994872704,136.4223640379496,136.00526822777465,136.86383224464953,137.76645433809608,138.27153224358335,138.8831249619834,137.96783003024757,137.0078449784778,137.78763577109203,137.35197002021596,137.49364983616397,137.11925143748522,137.83889839146286,138.4350608382374,138.7253510323353,138.42402628296986,138.2978243571706,137.44863257277757,136.5778156989254,136.4884009854868,137.48061280464754,138.16906962636858,137.66672422923148,138.28495519701391,138.05888518923894,138.1395490434952,137.4147116416134,137.57909544929862,138.00686335097998,137.77521790843457,137.71529234945774,136.7305330047384,136.16099832765758,135.58918373752385,134.78628116380423,135.4860664322041,135.47389041818678,135.5496219135821,135.54403499746695,134.9060870828107,135.56555544259027,134.9441059762612,135.25980284065008,134.6634807344526,134.34092742484063,135.0581894996576,134.11481389636174,133.60631283000112,133.0886693848297,133.12108850292861,132.27967069949955,131.69432472949848,132.63705266965553,132.28483039233834,131.45984820695594,132.076654182747,131.8644964643754,132.6927637453191,133.06365899788216,133.56384639674798,133.57608575560153,132.9014247711748,132.014074023813,132.5689058532007,133.53454242274165,133.98396096704528,134.0670091016218,134.41123551502824,133.86516528297216,134.2001105453819,133.57806713413447,133.18695206660777,133.56035451218486,134.0384129518643,134.40018881624565,134.26269563985988,133.99744593258947,134.2801390993409,133.4237077566795,133.66253045061603,134.52834747871384,135.01931684277952,134.22590740770102,133.29556060722098,132.5754067497328,132.8667738335207,132.47492068074644,132.8242669645697,132.4547002366744,131.92795780301094,131.2511837631464,131.19187024747953,130.98194309463724,130.34446878172457,130.58903054334223,129.83477947907522,129.83750589285046,129.67533733602613,129.02993001276627,128.19316137209535,128.81462914543226,129.27707266248763,128.90447830501944,128.63701091101393,129.53195460606366,129.21890175854787,129.61049303645268,129.45514456322417,128.94194338750094,128.5672998772934,127.86816005082801,128.10559043707326,127.2548824432306,128.06429954152554,127.53513855207711,126.84911165805534,126.23068412952125,126.23739513801411,125.50435476889834,125.13132251333445,126.07675954001024,125.69449694501236,124.90912058018148,124.73928244458511,125.53513112664223,125.5831662886776,124.96108453907073,125.02151228813455,125.43611844396219,125.1831983383745,125.31235645432025,124.78302266448736,124.39252777118236,124.58996319165453,124.94590783910826,123.97355395602062,124.59840694488958,124.4418127243407,125.4368262924254,125.8325126892887,124.89862750703469,124.29866085760295,123.63221770338714,124.06113892188296,124.84555078716949,124.69598169066012,123.73652841243893,124.04583429172635,124.13166336342692,125.11649820487946,124.1620512669906,124.27674791263416,123.32411564840004,122.61025210889056,123.59438295662403,122.93948155688122,122.176684924867,121.1957746190019,121.48214168101549,121.12596015119925,120.45378992613405,120.50095270061865,120.40212140092626,120.81084805820137,121.68065945245326,122.10003230208531,122.99607486277819,122.89147335616872,123.82535344175994,124.53898543398827,125.47892673872411,125.89785421732813,125.21343245077878,125.41736659780145,124.70244607236236,124.08779642451555,123.12775488151237,123.29104006802663,123.05323546472937,123.42581248423085,122.58813994703814,122.2933927285485,123.24430829565972,123.17705440614372,123.69910495216027,123.4307709527202,122.9613680280745,122.36413815058768,121.56524716271088,121.65774042066187,122.57686283206567,122.47959377756342,122.72888190159574,123.36487743631005,123.25275674415752,122.70357224531472,123.08801720710471,122.23782199155539,122.3394416142255,122.64497266430408,122.36935812840238,121.47622977336869,121.80339589435607,121.62754197465256,120.96226282883435,121.51412997813895,121.26126145478338,121.92948205256835,122.46234961831942,122.77960145287216,123.53779630549252,122.91477945167571,122.73330073151737,122.69743745634332,123.19272756204009,122.4015293167904,121.85919831553474,122.34846488432959,122.34516239212826,122.12849866040051,122.02078641252592,121.92083048075438,121.04097790457308,120.4369631446898,121.17549622990191,120.42233049450442,120.77599499374628,119.99916886910796,120.87999772373587,121.29664600128308,121.95547496480867,122.81766145862639,122.73242045985535,122.42816276662052,121.84742441726848,122.12758412817493,122.63736258493736,122.83954204292968,121.91936646401882,121.22674786671996,121.58644735394046,121.52077561989427,120.99396193632856,120.0260684271343,119.97538462327793,120.52238682517782,120.7990166968666,121.0635943072848,120.91463491646573,121.28907068027183,121.10563235543668,121.16123537626117,121.34483944019303,121.5401909854263,121.90343960560858,121.95249458355829,122.09700723411515,122.23219697270542,121.28612811490893,120.91658334480599,120.46802290994674,120.24750812351704,120.11588296573609,120.35252381721511,120.60418781405315,121.17291942145675,120.47311047650874,121.2919524423778,121.25880213174969,121.72949236445129,122.35894389264286,121.99578127730638,122.04580194037408,121.22839971352369,121.02134219091386,121.85895143542439,121.33541439287364,122.07106055971235,121.66295265313238,122.05108571145684,122.62991135008633,123.10859549976885,122.15927141485736,121.7625296334736,122.55823951261118,122.93797932378948,122.19977776892483,121.69784337002784,122.03774484014139,121.29953535553068,121.65730566997081,121.61717641819268,120.88856295868754,121.44185345666483,121.36529484717175,120.46884920587763,119.62679616222158,119.38847026368603,120.09577162470669,120.01427021296695,119.09921623859555,119.46674903156236,118.9531802488491,119.62120455596596,119.20962214004248,118.60856837173924,118.40204573888332,118.5779819758609,117.73706858884543,117.64805129682645,118.3026338336058,119.21470866166055,119.85122560430318,118.96856454154477,119.8142866352573,119.28002804564312,119.51133291563019,118.58938046498224,119.17303056409582,118.82140617026016,119.19589394098148,118.52192669454962,117.90917709516361,117.90956800756976,117.68140893988311,118.21993802348152,118.06722209462896,117.32658651657403,117.50009423540905,118.35733195580542,118.04036131547764,118.70862184744328,118.591594458092,117.9959822515957,117.17057927791029,116.17930846195668,116.14289342286065,115.83234716951847,115.81130121089518,115.07647796534002,114.77360161533579,114.83585447166115,115.37804911378771,115.54522860608995,114.93182934448123,114.22212345572188,114.12143045850098,114.56608671182767,114.20549342781305,115.02402208279818,114.42988566402346,113.75801997771487,114.47681177733466,113.48859677556902,113.96248038252816,113.54436280811206,114.02721500676125,114.51768320659176,115.2662495598197,114.30092136980966,114.91102332994342,115.40522654633969,115.89870945271105,115.01041855476797,115.58706565760076,115.16499368287623,115.19771863007918,115.34371781535447,115.11750769708306,114.14308821456507,113.88680699793622,113.6695537227206,113.87193546863273,114.49126553162932,114.91687197191641,114.96427260898054,115.10753794573247,114.85532449837774,115.62647420959547,116.49012438394129,116.38370001502335,117.09020611131564,116.46270391764119,117.25763181364164,116.3484062650241,115.40136673068628,115.66374329477549,115.36040502646938,114.90507747465745,115.88807284925133,115.16775986598805,115.6470276764594,115.60978114930913,116.1824166001752,115.55874855816364,115.51104317279533,116.24273061566055,116.67715301224962,115.6927771512419,116.03460995899513,115.35891381977126,116.25531037757173,115.84686132892966,114.97159377438948,114.19042306859046,114.70852584857494,115.32989720115438,116.12653278047219,116.55070593673736,116.42787301912904,116.24985924037173,116.32462942972779,115.7967184111476,114.94510540179908,115.91730291768909,116.71095999144018,117.44039037032053,117.72077631019056,117.26193779241294,116.77784458594397,116.27393993316218,116.15869355993345,115.97785279713571,115.71211155224591,114.93342486675829,115.34261906752363,115.14354512980208,115.42125714523718,115.84754887735471,116.71277797874063,116.51696581207216,116.91617822134867,117.24444461939856,117.90015050489455,118.06249275803566,118.57825921289623,118.13019699603319,119.12301742983982,118.20996353123337,118.28011764958501,117.97142942529172,118.46659431280568,118.93839117884636,118.57966171996668,118.48461605096236,119.0086038610898,118.75745588727295,118.84702339442447,118.44613638846204,119.00936238188297,119.2462185495533,119.09972731256858,119.42759606428444,120.37064181966707,120.65501111140475,120.91005551768467,121.44690160360187,121.40965908300132,122.07513692043722,121.57502985559404,121.24969050334767,120.28853668645024,120.60663559986278,120.3585097277537,120.30126863531768,120.59840729692951,120.92950998339802,119.9886018964462,120.1676462655887,119.36286914814264,119.12078035622835,118.12315982347354,119.04056683694944,118.8554452713579,118.59600964840502,118.00796001637354,118.12226616032422,118.16583862574771,118.60281367786229,118.59291196381673,118.522392839659,119.48533378681168,118.65240517025813,118.69770059967414,118.17242721095681,117.40245890943334,118.01164189819247,117.41928894771263,117.0637257648632,117.50942974397913,118.3234181064181,118.70877816574648,118.27137782378122,118.22875017859042,118.17933668056503,118.10557128256187,117.38109384896234,117.32331814896315,116.73334111599252,116.4994747438468,117.11826477898285,116.1922616250813,116.52850757166743,117.51808863319457,117.57878177473322,117.82508687162772,117.59114669263363,117.41971301473677,117.21061987057328,117.1739130183123,116.19921442633495,115.6066033677198,115.10019912570715,115.04010827979073,114.63276992412284,113.98292279243469,114.70989158237353,115.11618819553405,114.57729581743479,114.19653886416927,114.5616788896732,114.69101266050711,114.75328924274072,114.38822253793478,114.41206858074293,114.10282464278862,113.56979524018243,113.11446082685143,112.79280554270372,112.1193236168474,112.2469099573791,113.01225024042651,113.6523206490092,113.46619773516431,113.58404860226437,112.78106720000505,111.81603101454675,111.06028801901266,111.05729434080422,111.34919202048331,111.13690391927958,111.50054023088887,111.83697422966361,110.96223684074357,110.93850564118475,110.909584866371,110.4713772740215,109.60733226733282,109.16484472062439,110.03919394826517,109.83901710109785,108.87962160399184,109.37744220718741,110.36614843970165,110.5662198541686,110.55870629940182,109.86190718226135,110.5079802214168,110.03790083993226,110.94569973088801,111.36751053668559,110.60202101804316,110.43918848317116,110.16289303032681,110.14480183692649,110.72033829940483,111.51267492678016,111.13049987331033,111.57188799604774,111.73539069201797,111.92019120883197,112.68994013452902,113.29162276675925,112.52875169552863,113.09127032244578,112.81302149267867,112.92065392807126,113.86259375791997,113.99884532252327,114.35403726110235,114.88306432729587,114.67905901605263,115.00736580369994,115.79236374469474,114.9362739729695,115.64541659830138,115.83009147271514,114.88172669289634,114.93312150519341,114.07189282821491,114.47771063493565,114.6542959609069,115.00060970755294,114.14420471107587,114.45212567038834,115.43461567070335,115.30694641498849,115.27492347406223,115.55637670261785,115.81569592515007,115.7993344082497,115.47261350275949,114.49867375195026,114.69264773000032,114.91824839031324,114.76598901720718,114.00420090928674,114.7457625917159,114.01083552930504,113.17109043197706,112.9215935850516,112.78093581274152,113.62201122846454,114.57214949047193,114.61832102853805,114.88284304132685,114.90245347330347,115.73183680558577,115.609033907298,114.85906103486195,114.39876037137583,113.84425929561257,114.80237557087094,113.88040443370119,114.34330501966178,114.63665982149541,113.65859551820904,113.0262747737579,113.76220238674432,114.05950826592743,113.43663475243375,113.12041188543662,113.57000206271186,114.12398314056918,114.17035304615274,114.96990501787513,114.28185215964913,115.08811671892181,116.0366255166009,116.15201517101377,116.23293180949986,116.04434833675623,115.33039287477732,115.53649213211611,116.24208236392587,115.96975424652919,115.17119260597974,115.26687863934785,115.41562776779756,116.3437221404165,117.28960126265883,117.00719491578639,116.70422757091,115.96511237090454,116.65579191176221,116.13215409545228,116.13668679445982,115.62114507798105,115.29009486502036,116.03000447992235,116.69453721540049,116.62154227821156,115.83451088890433,115.39014391880482,115.53798324102536,115.42744684033096,116.24918408039957,116.50344885420054,116.62274432973936,117.51852290984243,118.37164242845029,117.37265682220459,117.11817042669281,116.49259668262675,115.74837839696556,115.46247950103134,114.65810776269063,114.80736821843311,113.87650050921366,114.20846672635525,114.13647190853953,114.88202010886744,114.67841812269762,115.00971019687131,114.60334847401828,115.58309933403507,115.36653056135401,115.15080629475415,114.23164055496454,115.15607480891049,114.64141996158287,114.67044458398595,114.46071361005306,114.76365471770987,115.4976748181507,115.15132671454921,114.80247169919312,114.67387072043493,114.35866283485666,114.7886290308088,113.98686124850065,113.87482113251463,114.26765667414293,115.05438854405656,115.79235053155571,116.03940789401531,115.94788662111387,115.11817884631455,114.86652587214485,114.75545960990712,115.49342929758132,115.42997531825677,115.71239862777293,116.02083977451548,115.54227885697037,116.3316868711263,115.68243730161339,116.13539256295189,116.98346722638234,116.69519622251391,117.08463787008077,116.24315703427419,116.72056101635098,117.55932222958654,118.40621942514554,119.18526872200891,119.81146968854591,120.19985706778243,119.2252280479297,119.40697914827615,118.88970799650997,118.76115260832012,117.92726447805762,118.21463879710063,118.43074772320688,118.59418495092541,117.96144172316417,117.08374797878787,118.00589112890884,118.59996979124844,119.43786186119542,118.69631105149165,117.83190640201792,117.81343167973682,117.81411353358999,118.06664417730644,117.57458648923784,117.87195489509031,118.51707603177056,119.36670185113326,120.13439173344523,119.24377611884847,118.54326428892091,118.81088452087715,118.84145947918296,118.23128024348989,118.9032705067657,117.93556266510859,118.35006974823773,117.98771323775873,118.15374300256371,117.98687210353091,117.30095713492483,117.23842526553199,117.47146977251396,117.24137511150911,116.39309242134914,116.6139040873386,116.59403815260157,115.78456578310579,116.59390312619507,115.78243904467672,116.64612433826551,117.37470569834113,117.88950262917206,118.00753598846495,117.66887780698016,117.35415933188051,117.027012381237,116.04183632414788,116.70181170897558,115.98662038287148,116.94917949987575,117.33413619967178,117.49375487444922,117.4944599531591,116.55124464817345,115.82375361537561,115.30796076124534,115.37758391629905,115.46227975655347,114.58358421130106,113.96764851547778,114.52519982401282,115.28124897554517,115.9476000405848,115.39599773008376,116.2535051079467,116.63620768906549,117.48778275959194,117.76382098440081,118.62931228615344,119.06534497393295,118.36321038380265,118.75618970487267,119.42080036085099,119.14973587961867,118.638383413665,119.27527769841254,120.00733522512019,119.90074140764773,119.17245319625363,119.53562604216859,119.98573412373662,120.55582819832489,121.32128338469192,121.77352542057633,121.08090263744816,121.66136794211343,120.9529285733588,121.61858955817297,121.46230158908293,121.87471581250429,121.59893111651763,121.15249218046665,120.25036010053009,119.68379552243277,119.99360301857814,120.7169120288454,121.09337797854096,120.98832407267764,121.46538656484336,121.41933861328289,122.00144115602598,121.93843094445765,122.79252162389457,121.84693858399987,122.28509793942794,123.2446846878156,123.537460220512,123.0535999960266,122.85528106568381,123.44402336888015,123.540902455803,123.61016327468678,123.39273561630398,122.73320804769173,122.68488176865503,121.69444988388568,121.08340742113069,120.39510955056176,120.53612724831328,120.31784973060712,119.33037969237193,119.99235613737255,120.03463023109362,120.96062467386946,121.03581541916355,122.02421085909009,122.62871979502961,121.93922573467717,122.20970519259572,121.44119698600844,121.81588550284505,121.33744872175157,122.2220560181886,122.87538226973265,122.63565589534119,122.11583387339488,121.44461785070598,122.27919545769691,121.52742587542161,122.50303491484374,121.87120983423665,121.42886527674273,122.18471275595948,121.75782310310751,121.14111038250849,120.55400917958468,120.51495828060433,120.03053287463263,119.89139493182302,119.08513334812596,119.05712691321969,119.99609218724072,119.32785182725638,119.59358677081764,119.18364828499034,119.18662354908884,119.27538744965568,120.05681440187618,119.3093631574884,119.46302958857268,119.56432183552533,119.48135579330847,119.83037261758,119.92093707295135,120.00137685844675,119.65549245802686,120.61402300139889,120.38520323345438,120.65320131089538,119.87367128301412,119.5056208698079,119.7208351502195,120.60830627009273,120.09030947601423,119.83555629150942,119.18530887598172,118.42763924598694,117.98146674176678,118.65651682205498,118.1659960472025,117.2898628897965,118.1005303314887,118.90372532466426,118.20107224676758,118.93870269414037,118.10262201726437,117.98647247534245,117.66053021326661,117.20116794621572,117.58456232585013,118.48736249376088,117.51663000462577,116.79021734977141,116.19432579400018,116.85464974213392,117.53859886527061,118.44682499533519,118.35731679061428,118.17243129899725,118.27843588171527,117.90744405752048,117.06689590914175,116.35149967018515,117.15263247396797,117.27795052807778,117.4724426898174,117.27205762267113,118.01798006519675,117.4949165508151,118.41120895557106,118.08547029830515,117.87402509944513,117.3184458152391,117.74438917217776,118.30514969024807,117.3165216348134,117.32480186643079,118.16445759125054,118.87034112541005,119.70246835751459,120.55387566424906,119.73118688212708,120.5849365661852,121.08162405667827,121.4875045879744,121.6685001552105,121.4114475348033,121.3448548167944,120.71890958445147,120.41071753110737,120.81213301420212,121.36931495554745,121.27214156696573,120.3822968993336,120.71270354138687,121.45264666480944,120.59615070559084,119.90875543048605,120.78100768430158,121.10186206549406,121.10561467520893,122.0102773103863,122.04179810453206,122.9060558010824,122.57470156112686,123.00866948952898,122.29741660645232,123.10347453178838,123.91944599058479,124.19794704671949,124.64725618390366,124.5181129812263,125.30994246946648,124.48764638183638,124.12595557840541,124.08846794255078,124.90933007793501,124.74766100849956,125.31660092622042,124.43574643181637,125.36001172941178,124.6121402173303,123.6595734837465,124.14892314281315,123.59500801190734,123.8152498723939,124.00190666131675,124.9945513708517,124.77095102099702,124.20853792410344,124.73031307850033,124.31364185037091,125.2420963156037,125.78263301542029,126.18937010038644,125.8757806927897,126.29107523476705,127.09123434592038,127.98107901541516,128.97788824234158,129.4120472110808,129.53898825496435,129.5953333391808,130.18157620262355,129.249328491278,128.91367311170325,128.13316270289943,128.40310424705967,128.74641211796552,128.2386025437154,127.88042948162183,127.31236307276413,127.0049919448793,127.06048878328875,126.91944335075095,125.94708851259202,125.22627735091373,124.64499504258856,124.35915732197464,124.41600906522945,124.66237979801372,123.6679304339923,124.22486112266779,124.56955576548353,124.21885921247303,124.39887980557978,123.4634852395393,122.90729504777119,123.76284786406904,123.27869637683034,123.86912854528055,123.12089334754273,122.58659342629835,122.1239906810224,121.97066139569506,122.8324867496267,123.52090909425169,123.33461666153744,122.54545866465196,122.74902719957754,123.20364789571613,122.71946982340887,122.56435943674296,121.6699098078534,121.6602373844944,122.65139199234545,122.11417290987447,121.64145531645045,122.06726088840514,122.23645999841392,121.38185102166608,121.10055401921272,120.12853283574805,119.47422402352095,119.5187913775444,120.42029695771635,121.41327637946233,120.89749512914568,120.3294939394109,119.96970027405769,119.69102870766073,119.69128610752523,120.02028971398249,119.6045590643771,119.70386993931606,119.44352010125294,119.2757648518309,120.12795961322263,119.2140598660335,118.30182792572305,117.59372059488669,116.98838020628318,117.47954974323511,117.97378671448678,118.14288002671674,117.57994677498937,118.52883432107046,119.29483288666233,119.07492114696652,119.21974849235266,119.31139290658757,118.41090186079964,118.72435987088829,119.18913528230041,118.38591057760641,118.24536033067852,118.76894259173423,119.58181200688705,118.91736028902233,119.73873719200492,120.73101752763614,120.7679233038798,121.68449041899294,121.27407565619797,120.29702219646424,120.65445473184809,120.13667647121474,120.1222745012492,120.44637810206041,121.4063486927189,120.99749972997233,121.81662505306304,122.05388402426615,121.46649368898943,122.22825499577448,122.44036336475983,122.5650013438426,123.3492399356328,123.47858524182811,123.32042178371921,123.27471511717886,123.4792226892896,123.11198757728562,122.17992036696523,121.26745955832303,120.83093662932515,121.49723552912474,121.27607231866568,120.86715537775308,120.72873135097325,120.68494017515332,120.5098441047594,121.03619004553184,121.92197476653382,121.73601705022156,122.69948730291799,123.10420579975471,122.86042784294114,122.96931669814512,122.46257831249386,122.40681182034314,123.05251186201349,122.26355053298175,122.41943110711873,122.31152005074546,123.3016782104969,123.71250389609486,124.36526273889467,124.43555897474289,123.73405023803934,124.24162631481886,124.35739486478269,123.99401036184281,123.72611154615879,123.27589538833126,123.46728888479993,123.75283725978807,124.12306778132915,124.93808671692386,124.83447579992935,125.36230693617836,124.47194689093158,123.4992056041956,123.72557973954827,124.63982824934646,124.76933507015929,125.74267657613382,125.74564071092755,126.63417676463723,127.54701914591715,128.11644847458228,127.85060290712863,127.35185408312827,127.67630405211821,127.80040091509,127.66766024939716,126.77642784733325,127.7654280308634,128.68979629082605,128.40537345549092,128.51116765011102,127.96137703210115,128.11756313219666,127.93092661118135,127.38871759688482,126.67198886256665,127.63172846985981,128.626180306077,127.99733752338216,128.10010479250923,127.55896971048787,128.02606829814613,128.47579970629886,128.52517251297832,128.8669158294797,129.03615417331457,128.88423552224413,128.75605687964708,128.03746572323143,128.63060229830444,128.82777704903856,128.86675222497433,128.25536750396714,129.0044497475028,128.58801062731072,128.52778447698802,127.70869571855292,128.04214054346085,127.59184146439657,127.79237306443974,127.17905696574599,126.33753550192341,126.83827358763665,127.5728819211945,128.4793590148911,128.49354867683724,128.52387940185145,127.72934198565781,127.77774488693103,128.25064439931884,127.46781958453357,128.054379504174,128.92330012796447,128.963382744696,129.56025459431112,129.7374350503087,128.97956370422617,128.29251046199352,128.61224972456694,129.23069607606158,129.84435760276392,129.9573007146828,129.39680811483413,128.5458585624583,128.70031547080725,128.62965402984992,128.9130365299061,129.1304659876041,129.45950897410512,129.87868228228763,130.17334430338815,130.6020430070348,130.26969170896336,130.27142108185217,130.7178558073938,131.51103400625288,131.00770530011505,131.2561526792124,131.27972800191492,130.53941255481914,129.6605243375525,130.41946891788393,131.24487176910043,131.9160716375336,131.3629199694842,132.14660271722823,132.55260073021054,132.05396176502109,132.70912417024374,132.85664463508874,133.38873292459175,133.62325663445517,133.51074045524,133.60872454056516,133.47443653875962,133.56730437790975,133.3491271501407,132.4822595147416,132.27439472917467,132.34014931321144,133.0372200468555,133.85286547336727,134.1700722798705,134.17443808866665,134.2231028182432,133.81264999043196,133.02091779606417,133.3908655885607,132.91258867410943,133.18891771510243,133.1329857269302,133.98290452873334,133.75119345029816,134.64595982665196,134.65156893152744,135.03347414219752,134.39125476311892,134.40817448403686,133.85944871837273,133.51542168902233,133.49720550095662,133.86067718779668,134.52698341105133,134.95025262236595,134.93895271746442,134.52024192735553,134.73373566940427,135.25590184610337,135.39041095366701,135.96212923899293,134.98184503242373,135.4438903229311,134.51487463200465,134.14469601539895,134.82185319066048,134.30727666802704,133.39299381058663,134.38190491730347,133.41743493406102,134.38568068062887,134.64131095679477,134.01032394636422,134.2766631199047,133.36312891868874,133.12822218379006,133.0037377756089,132.09514952357858,131.1805349122733,130.60758034186438,130.19249436305836,130.5905895875767,130.83592775976285,130.3005950106308,129.64462600229308,130.56375092221424,130.2619886714965,130.415147557389,129.5344264311716,129.272930925712,129.00979202007875,129.2349937702529,129.02039253525436,128.7872919747606,129.51765940710902,129.72594443242997,129.49923060880974,129.4140266701579,129.78654173808172,129.66172281466424,129.1025044824928,128.16551506286487,128.66229622298852,128.0708676544018,128.54258875502273,128.52649471815675,128.8869925197214,129.75804993184283,128.79594665998593,128.94589291652665,128.39251110330224,129.22668698849156,128.51754223462194,128.12321689818054,127.78489650553092,127.72009415226057,126.85397485643625,126.2936427933164,127.04638210311532,128.02606710093096,127.83586725918576,128.57954886555672,127.82867112895474,128.00692479405552,127.89465851755813,127.18106365157291,127.75173882441595,127.81407660106197,128.32548980601132,127.97314252937213,127.18290243577212,126.34953112434596,125.43395100487396,125.38382193539292,124.76470333477482,124.46222652308643,123.6355824554339,123.51752999005839,124.46606164379045,125.32945434935391,125.5240330370143,125.2249099011533,125.70099991653115,126.41491318121552,125.69783414900303,125.31241165101528,125.23650402575731,125.70366355078295,126.48892014892772,127.02701428206638,126.66071357531473,125.73418490914628,125.9384431396611,125.98917856393382,125.8152497629635,124.83736810320988,124.15895114140585,124.99251505220309,125.15260495059192,125.30776498001069,125.8247500769794,126.7011703653261,126.4983748048544,126.22306168777868,125.45470971986651,126.1493311515078,126.36140029458329,126.42143342876807,125.6405675620772,126.3900430300273,126.32140050362796,126.18196702748537,126.250240677502,127.2016402524896,126.8855427633971,127.57026869105175,128.3290550224483,128.55359454732388,129.51396997645497,128.94354149745777,128.76497717900202,127.98880459694192,128.69697484793141,128.99736035242677,128.4821564243175,127.7443520813249,127.93856577621773,127.52253489429131,126.78072398807853,126.72027070494369,127.04117172164842,127.87456407677382,128.39881370263174,128.32824787078425,128.0050637051463,128.03102895151824,128.5460313949734,127.97304388787597,128.87072015972808,128.43526391033083,129.32772208889946,128.74079646822065,129.49147070385516,129.57852570386603,129.96379521349445,130.05432244762778,130.19315300881863,130.95507481321692,130.03829948138446,130.8485622452572,130.38443556893617,129.7332799867727,130.22978556109592,129.36004523839802,130.24306706665084,130.1947095929645,130.82776205195114,130.5647801682353,129.93741649203002,129.5581437163055,129.59818785218522,129.66033453308046,130.1515041072853,129.45614842837676,130.27986846026033,130.64191035553813,129.9089853768237,129.06967335147783,128.32916762167588,127.98396041383967,127.83595944708213,127.06250445917249,126.61615335429087,125.84223039541394,126.69400402810425,125.80703817633912,125.69324823701754,125.79092815704644,125.7961983885616,126.76726700598374,125.78549368679523,125.2146392413415,124.87964774807915,125.27569019421935,126.19308080803603,126.52589758299291,127.08039171807468,126.24497181503102,126.29421714693308,127.04131298977882,127.70051479293033,127.82242214120924,128.1396980076097,128.42749549355358,127.742386569269,128.61211529327556,128.5303548304364,129.04173497622833,128.5062869368121,129.07676930632442,129.5753836799413,129.18433291418478,128.29955227999017,129.0560059263371,129.68977461988106,130.19398280326277,129.93993636313826,129.57955153333023,128.91010975977406,128.30193230090663,128.9522382868454,128.55175097007304,128.3509825943038,128.375931059476,129.36338019836694,129.49432200286537,129.10345538938418,130.02455091523007,129.17529503721744,129.85560277942568,129.75300645641983,129.67955099605024,128.8891706909053,129.25270149298012,129.41987584950402,128.73982053482905,128.0824576849118,128.9422371420078,129.8805731292814,129.28061286127195,129.46576766949147,128.46704341936857,129.1249473928474,129.2090613162145,130.14713418018073,130.37753704749048,130.76769755687565,130.4947530850768,131.42476427415386,131.19594948086888,130.60391425946727,130.55163705255836,129.70499553345144,129.96443490264937,129.18007444031537,128.2433930397965,128.61286336183548,128.33190492913127,128.2760833967477,127.81122873723507,126.99989873636514,127.99597776727751,128.71179488813505,128.54144157422706,128.82569340011105,129.38056249218062,129.96729068877175,130.89490641653538,130.63386911340058,131.54037937149405,131.58413602644578,132.17195291770622,131.89973273826763,132.2949287937954,132.997755930759,132.79621093068272,133.01154278730974,133.46631840104237,133.12069048313424,132.623961889185,133.14411040348932,132.89466758677736,132.79820417938754,133.00267734238878,132.45672952849418,132.62725396780297,131.82132449373603,131.68155392678455,131.93931225175038,132.24596763867885,131.64542179135606,131.22732990980148,132.2000449821353,131.57496261270717,131.04509896598756,131.53878347948194,131.1143259452656,130.7464951989241,131.35757434321567,130.49969160556793,130.5306643298827,131.39285038458183,131.88052038196474,132.1981525621377,132.59115610597655,131.7150067766197,130.9840813181363,130.9977094270289,131.7027589743957,132.27673693560064,132.0792352273129,131.86241776356474,131.06511102663353,131.74545656656846,131.42714086454362,131.1085848202929,132.0135694271885,132.88236285047606,133.5961833372712,133.70641266321763,133.87855462357402,133.9463508152403,133.6346153751947,133.73611351195723,134.69184570014477,134.74001592071727,134.154257690534,134.28039096854627,135.05818251986057,134.36611777264625,134.1903508109972,134.04911014530808,133.57363189850003,134.26622325461358,134.24458690918982,134.62285167723894,134.82114834105596,135.42859379621223,136.41424928465858,136.29879342671484,136.16943686595187,135.27149364445359,134.85913181398064,135.57374841626734,135.4494925918989,135.53292939811945,135.90974264545366,136.5284352232702,137.02851979620755,136.03735647303984,136.77724264049903,136.92103239847347,136.2816381342709,136.24716549087316,136.32349602971226,136.6397821092978,135.8699768409133,135.02317646425217,134.93642984842882,135.75961163127795,135.63074533361942,135.66857731807977,135.11421467922628,134.34647909272462,135.0191269298084,135.58236169070005,134.65526173403487,134.41744175972417,134.02841219725087,134.5604794076644,134.88348477706313,134.31662452826276,134.86885219160467,134.9403537721373,134.14937642775476,133.20714382221922,132.54603059915826,132.57822066918015,132.46987975062802,133.05865362472832,132.29926600586623,131.75633612973616,131.26278456579894,130.79894796945155,130.6096776672639,129.65511793503538,129.97979177581146,129.84244236908853,130.4401954766363,131.4156036390923,132.31456283666193,132.8615524196066,133.33042640425265,134.29149684589356,134.03221502853557,134.2740060761571,134.46283319219947,133.64771137433127,133.0773625439033,132.22111345268786,131.62562911724672,131.2417471613735,131.55162068642676,131.66054191812873,132.21310409065336,131.6997257070616,131.73006102256477,132.63751801429316,132.1340907732956,132.96367533039302,132.99883177131414,133.11322490358725,133.47443033242598,132.8120258655399,133.46286643762141,134.25314093800262,133.38360555795953,133.70976099185646,133.47790652466938,133.7470330214128,134.1207809257321,134.0513886688277,133.1093747341074,132.7333807023242,131.82952005928382,132.2444428484887,132.78357119392604,132.9047874333337,132.42808267101645,132.30615045130253,132.37054137559608,131.46329899178818,131.39099079417065,131.50322466623038,131.99250479228795,132.3142163013108,131.8355515608564,132.1343924026005,131.69268744112924,131.3689304832369,130.78827619506046,130.68740706751123,131.4673152351752,132.0262019680813,131.70290394453332,132.07362127304077,131.95663379784673,132.06326065585017,132.54738735128194,132.43595240823925,131.99598969798535,131.45141357695684,131.9370096162893,132.9000249709934,133.78747828491032,134.52727397251874,134.68422889476642,133.7703796266578,132.87029784172773,133.62664091726765,132.74785821139812,132.72934399545193,133.725375440903,134.18849175749347,134.10067549115047,133.77177255088463,132.94147108169273,133.16453858697787,132.49135354021564,133.41801080992445,132.74951481167227,132.7049312144518,132.86057405686006,133.1065592621453,132.22719584126025,132.22609273297712,132.08918241597712,132.7762329056859,133.66922112181783,133.32063966663554,132.82569347321987,133.55198819888756,133.83274040510878,134.33323816303164,134.75750327156857,134.16438063466921,133.2150062364526,133.12977698305622,132.1965343062766,132.91707682423294,133.26779854716733,133.27057941444218,133.39236069004983,132.63842964032665,132.07150594564155,131.28921243315563,130.7778381695971,130.5392524646595,131.1548750931397,131.13018622109666,130.33369458746165,129.762027180288,130.07908741245046,129.10357815027237,128.38526040874422,129.05547657469288,128.66386616649106,127.89715031255037,128.19110256293789,128.4179291878827,128.59081809641793,129.20078340964392,128.62040946120396,128.04384031053632,127.73262570425868,127.04330653464422,127.17010862426832,127.60169369028881,127.64986991370097,126.82103667361662,126.80836202157661,125.85691701294854,125.03959631826729,124.27404285455123,125.20463729184121,126.05568592762575,125.1638664053753,124.44744614930823,124.10246700560674,124.68306655948982,123.91708513628691,123.26742745237425,124.17364345630631,124.12087139068171,124.4316188194789,125.26425047172233,126.23926787311211,126.86679028719664,126.31114791100845,126.7176195406355,126.98988300934434,127.74574120296165,127.35046855965629,126.64912183629349,126.43712061271071,126.33775434363633,126.64457260258496,126.10632655909285,126.91638141777366,126.48111865716055,126.87054820545018,127.23548560682684,126.51178728882223,126.97243060730398,127.93430390534922,128.33268811227754,129.2073444928974,129.06011589989066,129.76111825322732,129.1063031014055,129.90527928853408,129.7181518925354,129.2997911083512,130.140039160382,129.71672012470663,129.7428871858865,129.9785944293253,130.5842972570099,131.29132265644148,130.4224875732325,130.23071044730023,130.8248247713782,130.48847191175446,130.00076105305925,129.04587600845844,128.89943305496126,128.95955583453178,128.3328144615516,129.11739452788606,128.96257615089417,129.50105165038258,128.77924572117627,128.09021681174636,127.6961223045364,127.81417299807072,128.64829999301583,128.25292953290045,128.8376581305638,128.37808536645025,128.1338288388215,129.11286443192512,129.66058475570753,128.88906970992684,128.17399828275666,128.77862074319273,129.76113593252376,130.49832098698243,130.65382221667096,130.55680381180719,130.15115024335682,129.75331105384976,129.26081467187032,129.65496271802112,128.85513046197593,128.62358114682138,127.79505172558129,127.30446127895266,126.90555975353345,126.04720888473094,125.07451660372317,124.50492145726457,125.45957455830649,124.90865706605837,125.48985486803576,124.93461407069117,125.18089452944696,125.34606608655304,125.1621637023054,125.19827512418851,124.23221789253876,124.65173057513312,124.30500474292785,123.8076120596379,122.8182890964672,123.71967691322789,124.28846403164789,125.07124861795455,124.41990174492821,124.7659931150265,124.60926676541567,124.9779993374832,125.66647237492725,125.34908401826397,124.89977398794144,124.38110091444105,124.52925402205437,123.69576955307275,123.3647358356975,123.34700001683086,123.60918527748436,124.54554290138185,124.57128210132942,123.75698655145243,122.93532417714596,123.78537679603323,124.51696513360366,124.51356936153024,124.46363290119916,124.63943513203412,124.95212421938777,125.6185152027756,125.94100767560303,125.11984459124506,124.83291661506519,125.41978852590546,125.3078129561618,125.02617418533191,124.60931149078533,124.23987298645079,124.99272111011669,124.03432720107958,123.51134845940396,123.50997252948582,124.18702351488173,124.82246597623453,124.9095864132978,125.43114873114973,125.20958895608783,124.67815036233515,125.35201014904305,125.91451347572729,126.66795158945024,127.18165796808898,127.63792509119958,128.32828692672774,127.6909732366912,127.52147642942145,126.99956993944943,127.10895696468651,126.914391242899,126.98680496122688,127.28593245893717,127.793604883831,127.28061587782577,126.57735630543903,126.17790487175807,126.47098068986088,127.14208101481199,126.19440112216398,126.88371273688972,126.13907890254632,125.56388047989458,125.48961112042889,126.25507697835565,125.7466053138487,126.30530311353505,127.01017243601382,127.15930793201551,126.27501888666302,125.78403147310019,125.65586115140468,125.81381140975282,125.35588295618072,124.43301797891036,124.51375743933022,124.86066721472889,124.54246174916625,124.73905876791105,124.42301688343287,124.94428274827078,124.2942587598227,124.21724799880758,123.27255163621157,123.85385331977159,122.9596721814014,122.15719051938504,122.61751055624336,123.23999531473964,122.86181152798235,121.91263937391341,122.66446885792539,122.03979217726737,121.79825225612149,121.64516462059692,122.41707426914945,122.80646330304444,122.82704767771065,123.72328301984817,124.1373955165036,123.92945468099788,123.34863323159516,122.56197991874069,121.79230324272066,122.06726840091869,122.77921020844951,122.75094370823354,122.10358281387016,122.37796524725854,122.65190542023629,122.33417739672586,121.86897961469367,122.43555511115119,121.84659367939457,122.29060545098037,121.76883212802932,121.36139131477103,121.39156354172155,122.11568660056219,121.79013181151822,120.8160157087259,120.6191385728307,120.98049470223486,121.9646619730629,122.94258488807827,122.44129211409017,122.68753204541281,122.77030745800585,123.60224016243592,124.43722283979878,124.95296909892932,125.75960354413837,125.6718116486445,125.25298083107919,125.76279689418152,126.43766496796161,126.01027498394251,125.94532910455018,125.17812138609588,124.74500227393582,125.59003100823611,125.78438690584153,126.68570108897984,126.07594895828515,126.2638529278338,126.48765980452299,127.26501152478158,127.10030830232427,127.37568476051092,128.31305669574067,128.50816340977326,127.96503926394507,128.524341001641,129.08124892925844,129.8489635065198,129.1278532370925,129.73532588034868,129.52173285046592,129.59144990192726,128.97919300338253,129.05962016573176,129.83969632489607,129.18419776950032,129.14710522210225,128.76435522269458,128.97378410911188,129.11460764566436,129.07108203228563,128.247689884156,127.4420269834809,127.7702536243014,128.49353142967448,127.63822812633589,127.1614934434183,128.01894586533308,127.38147329865023,128.360161784105,127.89278202597052,127.04070024983957,126.78252398176119,125.86288693593815,126.74760310957208,127.21232251310721,126.9726436054334,126.67750062281266,127.14410864375532,127.42110951477662,126.99837854178622,127.2717337878421,127.36725282622501,127.68781884061173,127.57197029748932,126.78270958131179,125.8393840836361,126.3050424917601,126.01347163785249,126.83156967209652,126.20307274907827,126.54423400061205,127.38372663129121,128.14563843840733,128.66061538318172,129.2047108146362,128.9311721767299,129.75309229036793,128.79536659503356,128.18910508416593,128.78833372425288,128.45455738343298,128.6485343533568,128.2624201173894,129.19676820049062,129.13658257108182,128.36923839664087,128.53351586405188,129.23238010331988,129.180484008044,129.5294612417929,130.4449460702017,129.94282981194556,129.6183378174901,130.0352573315613,129.22585201868787,129.77041275706142,130.72961830021814,131.38438641792163,131.02410242753103,130.61472610430792,130.75632097572088,130.56132974661887,130.43409440340474,130.78391416976228,131.18530619330704,131.55375666497275,132.2561622671783,131.46783595578745,131.48843653406948,131.31690881308168,131.35572639247403,130.77387393964455,130.87198260473087,130.53654367197305,130.79375650407746,131.09899576893076,130.1042016921565,130.8666964462027,130.50365146435797,130.1275611044839,130.6217208392918,130.526700258255,130.24592465674505,130.76380511093885,129.81919395830482,130.185138521716,129.92679539881647,129.58524690568447,130.34423923352733,130.77863253932446,130.8630921728909,131.112110523507,130.2229479327798,130.55959289846942,130.335888214875,130.07934354944155,129.83185490500182,129.99534858902916,129.6106940638274,129.2853490789421,128.77404005918652,128.990122909192,129.6882935790345,129.3150187046267,128.69066338567063,128.9370192294009,128.53034601779655,127.58896211301908,128.1385794924572,128.65698792878538,129.36618020338938,129.58972335187718,130.35924461157992,130.53451911220327,129.57230724068359,129.37637913646176,130.12690280890092,129.44984145322815,129.66757865948603,129.63577765226364,130.25005166372284,130.87711240025237,130.0132383988239,131.00361272273585,131.33717125933617,132.21035253070295,132.99044950585812,133.58419915661216,132.8575333901681,133.26338125299662,133.40231058048084,133.4634999590926,133.79401803575456,133.89054201263934,133.275837094523,133.45707252481952,133.5073412959464,133.3586791511625,134.2272796095349,133.35736036114395,133.8183643920347,133.82301029004157,134.59506354480982,133.80358060868457,134.25407296558842,134.65325423842296,134.31803444912657,134.24997316673398,133.6351463003084,134.58611514884979,135.225317616947,134.6650676811114,133.7850197777152,134.1037306827493,133.45006998442113,133.5395578420721,133.17098089726642,133.31706054788083,132.6920552351512,133.6488497122191,133.5100037115626,133.24461513757706,133.53409782797098,133.84202877804637,134.17956756567582,134.13916480820626,133.92202322511002,133.0937718967907,133.5806252914481,132.80662592034787,133.67340308940038,134.13618847401813,134.98167102970183,134.10502962442115,133.14644943969324,133.00028360728174,133.36970692593604,133.633205357939,134.3410119023174,135.04837294574827,135.4409111281857,135.00121443206444,134.58265703497455,135.52274712454528,135.41073954105377,135.78503889637068,136.43041439494118,135.77995729912072,136.3859573137015,135.40131260175258,135.4902273719199,134.8882222105749,135.48588973237202,136.05968254199252,136.97976673580706,136.52205188386142,135.74457404902205,134.84234898956493,135.0844692955725,135.10583377908915,134.58418172225356,135.2147647808306,135.33500208240002,136.30066655715927,135.40438171848655,134.90860640536994,134.9701714264229,135.16218578862026,135.07441891310737,135.95053493930027,136.3126371568069,135.70218422543257,135.11675405781716,134.691404257901,135.1259287064895,135.16069216793403,134.2809120216407,135.2651962041855,135.55902379006147,135.49268652917817,134.9164478345774,135.72094656480476,135.80925616296008,135.75526644894853,136.43812859104946,137.16823876835406,136.546016568318,135.65060724597424,136.3279814524576,135.97065489273518,136.23346793092787,136.578346345108,137.31616136524826,137.87488085310906,138.51737915724516,138.79301381949335,139.5168818612583,138.9114683130756,138.0901903291233,138.97039111191407,139.5359136494808,140.0356783401221,139.8451543287374,140.34437967836857,140.98685174202546,141.5478093069978,142.3970198254101,142.82964293658733,142.14799287589267,142.0786292445846,143.01559384074062,142.7766430210322,142.3669492318295,142.90899983560666,142.25837101601064,142.4752720883116,141.77394364541396,142.26040569366887,141.52901839883998,141.98945071035996,142.9280036711134,142.5321682053618,142.9697254053317,143.3546286453493,144.19982798444107,144.92613947298378,144.05754438973963,144.09763832576573,144.0099224532023,143.4628510759212,143.20813801139593,142.4109980999492,142.43759326077998,142.06473430944607,142.50655116233975,141.77131176600233,142.39331577625126,142.80605162121356,143.15310522867367,142.6760393967852,142.4440800305456,142.92709203343838,142.82275327434763,143.75421198736876,144.29316494101658,143.79008012078702,143.50017398269847,143.15010193130001,143.873725714162,143.32700726110488,142.98892417922616,143.49244486447424,143.07361901458353,143.87378740357235,143.0362309338525,143.45945777371526,144.24884895794094,144.76033813273534,144.4758068807423,143.5986965065822,143.77630535140634,144.4389457926154,144.30639781057835,144.02175208739936,144.98629550728947,144.7137033622712,144.56454662466422,144.25371288275346,144.8228633874096,144.85142270335928,144.15706572774798,144.1177481901832,143.80293089104816,142.9758562054485,142.04419862339273,141.37385381385684,141.93166333949193,142.62558883568272,142.76356311654672,143.20676940120757,143.54316128976643,143.51264988305047,143.01782754296437,142.3244586167857,142.28268790384755,143.03289883723482,143.011570262257,143.60564243467525,143.56576133240014,143.5308418329805,142.84558061137795,142.32335803238675,142.20123020047322,141.5488754371181,140.93385606398806,140.65865574311465,141.5031305816956,142.2019881713204,143.16506078094244,143.14879384683445,143.54265329567716,143.43326042266563,142.44979378627613,142.99758800538257,142.50813796371222,141.86332096764818,140.92620645510033,141.17159974947572,141.10848370520398,141.77791914297268,142.4469513343647,142.91783897858113,142.60022238874808,141.694174928125,141.51101390179247,141.33298261323944,140.34652421902865,139.72984657483175,139.05167226772755,139.28538335487247,138.4730513417162,139.0656761173159,138.43968466389924,137.65352508658543,137.02469198172912,136.19367041392252,136.36139303212985,135.62905624881387,135.92915866803378,135.42943903291598,135.4397672507912,135.83637436432764,135.94619403639808,136.25428102491423,135.89725002273917,135.18184334179386,135.08513724338263,134.95999097824097,134.6041337433271,133.8528071595356,133.49717574380338,133.43417961383238,132.61543255206198,131.93690312327817,131.90158953797072,132.27686704928055,132.23799244873226,132.3223492000252,131.90011547040194,131.22241964610294,131.8841181565076,132.84039167361334,132.8362051253207,132.0105321793817,131.77857896778733,132.44581549754366,133.28797580301762,134.04622348817065,133.15866760350764,132.2147336998023,132.9067606977187,133.64830494485795,133.7663350640796,133.5751863019541,133.50230947555974,133.7132403072901,133.8430509120226,133.86584119405597,133.6244788793847,134.32774601504207,134.03279198799282,133.62451192177832,133.2917797025293,133.17709275195375,132.60952425049618,132.5814187284559,133.32575216004625,133.52749156486243,133.7495655938983,133.80889522098005,133.56986997649074,133.67170272255316,133.3705562846735,133.9378256322816,134.2318312372081,134.47168035060167,135.30995014309883,134.81633214466274,134.7432827912271,134.5661502322182,134.51172657543793,133.54890905320644,132.7524089324288,132.02597336657345,131.52939397562295,132.03687608474866,131.2059734063223,131.75835094694048,130.77219664724544,130.07081472920254,129.74223917722702,129.40557288983837,128.68166816886514,129.34982222691178,129.7617547973059,130.06881721597165,129.543435418047,128.90945703769103,128.14101306768134,128.53503026347607,127.9751989278011,128.94566394621506,128.31515220412984,128.29973998619244,128.8625084203668,128.94931413140148,129.38632225990295,129.80962655646726,130.50005528144538,129.52470460999757,129.44386670645326,129.25064241373911,128.9026208887808,128.45510570984334,128.54837975278497,128.78915792424232,128.4698795862496,127.53482449008152,127.11947882454842,127.04694226989523,126.1686538620852,126.20437638089061,126.06086894636974,125.2420946485363,124.69046157225966,125.48935120459646,126.0103596067056,125.93499114830047,126.6783778485842,126.29578293301165,126.90918298251927,127.69476256240159,127.65320433024317,128.28525715973228,127.7581095858477,127.66455873055384,127.31645521055907,127.29073872743174,126.63764678593725,125.70194021239877,125.21307933982462,124.40407925099134,124.6190800704062,125.10314480634406,124.27122142584994,125.1913463640958,125.9816983253695,126.85396133782342,125.95378316938877,125.85269700782374,126.31929810578004,126.95625098841265,126.73831524886191,127.13562011253089,127.5764054027386,127.02433786122128,126.46739998320118,126.64789979159832,127.32244448782876,126.58512316131964,126.33709972444922,126.76967796962708,127.46352755930275,127.11461303336546,126.54055032785982,126.66268267482519,126.84561710152775,127.46757190488279,126.94940612884238,126.54601749638095,125.57575870724395,125.76800679555163,126.63212092779577,126.77634909236804,127.0686212759465,127.72435208177194,128.10772452689707,127.6430682647042,128.47928157728165,129.21249768137932,129.9418689198792,129.45832290081307,129.64185664290562,129.79892691317946,130.100958338473,129.84235492162406,129.51048707636073,128.99955840036273,128.63233807170764,129.2138593266718,128.44868414197117,128.32807705318555,128.34294381877407,129.14803412370384,129.5006312634796,130.4370825989172,130.28614293877035,131.24903879407793,131.98185580363497,132.8271327340044,132.06364202313125,132.054486611858,132.40174058731645,133.27737932745367,133.76604402530938,133.5800330056809,134.3166434345767,134.45653121965006,134.52442535711452,134.6253463840112,133.65100097563118,132.71161178313196,132.843391017057,133.20395812951028,132.59342658007517,133.110120232217,133.13736539846286,133.92055299319327,133.26503305137157,132.90979092009366,132.5156160062179,131.98335769446567,132.2349400203675,132.99249700829387,133.3164700847119,134.2971227983944,135.0978859947063,135.44175280537456,134.61329953884706,134.098551267758,134.0575323230587,134.08154429355636,134.15554141206667,134.90877004526556,134.53886746661738,135.15098641393706,134.47207910893485,134.7860237872228,133.86286626989022,133.36682426929474,133.58339230436832,134.35017437906936,134.73442027531564,135.3723355717957,135.8405435392633,135.06646013632417,135.9311698260717,136.85262151062489,136.8822736805305,136.94088560948148,136.26197009859607,135.97807082999498,135.68259910028428,135.97468838095665,136.42830979591236,137.001289665699,137.5637052692473,138.35159621061757,138.88911767676473,138.52438663458452,139.0404334552586,139.33689814480022,139.9396190624684,140.8505363035947,141.75719042308629,142.17222432466224,142.63366211857647,143.53968017175794,143.42937913397327,142.52269224775955,143.17498313914984,143.46532749617472,144.14458581013605,144.38794137351215,144.5650863707997,144.3054400132969,145.00409748079255,144.2786606857553,145.14796585170552,145.7816820833832,146.30732769239694,146.11163550196216,146.73169652884826,146.13249124586582,145.52208242891356,145.96183322789147,146.94571963790804,147.83750671893358,147.37795334495604,147.34938835771754,147.80452219350263,147.16461137123406,146.32883705478162,146.74837181344628,147.07536893803626,147.6068850532174,147.22463940037414,146.59657339099795,146.0096165216528,146.16706998227164,146.51017217710614,146.61535649141297,147.34096883330494,147.9488528459333,148.33146516326815,147.6852393229492,148.34407374775037,147.6270384043455,147.23009220976382,147.50406221253797,148.41302048461512,148.22083464218304,147.22956095822155,148.05439004814252,148.32767978636548,149.06894993921742,149.00693952431902,148.30131944874302,147.95131413266063,148.87364225275815,148.84626229153946,148.10284451860934,147.76472571352497,148.05476344376802,147.52912153070793,147.0981338773854,147.8028229540214,147.6565338987857,147.81569899385795,147.6605623769574,147.18234180053696,146.75014057569206,146.2086005541496,147.18756005028263,148.01087201107293,147.28619345417246,148.20793900080025,147.6065841410309,147.22019402962178,146.87413352588192,147.59843649808317,147.27784614404663,147.0736974356696,147.7820482859388,148.55995384650305,148.1705445498228,148.81207671947777,149.59265909530222,149.68890274502337,149.00510571012273,148.8424878786318,149.68623061757535,149.4787448141724,150.05142331821844,150.68470608862117,151.48889478482306,151.55023465584964,151.5692014140077,152.3609703173861,152.0953862243332,151.94091485394165,152.11376860365272,153.11271873302758,152.5933361966163,153.3067691931501,153.12905443506315,153.8348778700456,153.3456261344254,152.4964345167391,153.38944620685652,152.7196769574657,152.9313639770262,152.2744163312018,151.85439044376835,152.16224516928196,152.45428330637515,152.4453719360754,151.46242466848344,151.3140585408546,151.8200789084658,151.23071261215955,152.1328732050024,151.26499947113916,151.43545559607446,152.28067422751337,151.55519567476586,152.22326129302382,152.53653440903872,152.95054035400972,152.9539666334167,153.3815270802006,152.54448210680857,153.37432987429202,152.45646714232862,152.24737054901198,152.71516549028456,152.58811042224988,153.35453066509217,152.73221878660843,152.23707850975916,152.51769737200812,152.29651536699384,152.38832532195374,152.03411101689562,152.8390313857235,153.7508689253591,154.34933136031032,155.14893606258556,155.58681941078976,156.4326780694537,157.32187527045608,158.1615819814615,158.07175865909085,158.16079246765003,158.9417108600028,158.34165985463187,157.417702591978,158.2887572972104,158.6100522261113,158.46906583337113,157.87481631105766,158.81020548334345,159.53454702766612,159.15197107335553,158.63015927746892,158.49710381636396,158.3428375623189,158.10126074310392,157.11776794493198,156.5456016897224,156.08980166818947,155.96296054823324,156.77898477576673,155.84339047316462,155.6038147485815,154.69529203511775,155.1316187842749,155.51000913092867,156.00554297864437,156.7592718550004,156.1995806521736,157.09180182404816,156.12085918942466,156.83179746381938,157.35063395509496,156.79440164007246,157.00403688801453,156.71124781435356,155.90592944715172,155.17715306160972,155.07981648948044,155.93379483325407,155.68167806928977,155.14349406771362,154.41282795136794,154.8139394330792,155.70696830376983,154.78854691516608,154.78583398321643,154.76891185110435,155.42832094896585,156.28036894230172,155.85388902109116,155.98722439818084,155.1538789253682,155.7169084805064,156.21575224399567,156.49297999870032,157.44548191409558,157.97446819813922,158.117832722608,158.81307491613552,159.56722892541438,160.1280750054866,159.508327444084,158.9502402273938,158.33670587511733,157.70546897035092,157.74803750542924,158.30501654651016,157.791109404061,157.89149302756414,157.17250189743936,157.8836671966128,158.16678512236103,158.15980108687654,157.76168423239142,158.45664975512773,158.31705693667755,158.02590317092836,157.69602222554386,157.33595074666664,158.28626090614125,157.53436433896422,157.74019928602502,158.511787223164,159.1745707844384,159.42339744837955,158.8815770582296,159.53699407400563,159.50805994635448,159.66011737426743,159.808280358091,160.24138902779669,161.02008219016716,161.16798658203334,161.78666348662227,161.08855573786423,160.5675677661784,160.774704140611,161.35685773706064,160.65757127525285,161.18532084068283,161.4632780086249,161.59854619624093,160.9939591609873,161.54537880513817,160.83965302165598,161.68612744193524,162.65079123573378,162.31397089734674,162.30037197144702,162.1180752455257,162.25401453999802,163.1501384493895,163.3299838337116,162.9590967260301,162.3239217288792,162.87778096087277,163.32476705685258,163.66682146303356,164.63684905832633,163.64762642374262,164.34261781256646,163.358970830217,162.91155847301707,163.31272488133982,163.7075763978064,163.861740201246,163.36539235524833,163.0202385452576,163.9815666032955,164.3337370515801,164.17647516960278,163.7412842209451,164.46576037770137,164.22233541775495,163.62348663713783,163.58106167940423,164.1270138528198,164.88314804108813,164.58485098695382,165.09265647968277,165.0562076633796,165.22089663567021,164.6165988156572,165.06812944589183,165.37285621697083,165.7948364885524,166.60508719924837,166.44872983777896,167.05442665982991,167.090294145979,168.05293388385326,168.44312827661633,168.7505264626816,168.7043371256441,167.9396324250847,168.56156217539683,169.04553918354213,168.12710478249937,167.91129344468936,166.91461100429296,167.10422225529328,166.72533214557916,167.71558444295079,167.54864836251363,166.9289380791597,166.4009575387463,165.54879860160872,165.35875846352428,164.66596642741933,165.06513370014727,164.10078588407487,163.68423245521262,164.15962779987603,164.68577141175047,164.24717159103602,164.95352976815775,165.1116484045051,164.87692118110135,165.7161249499768,166.02927708160132,165.6379592292942,166.27983989240602,166.24284189520404,166.50622117333114,166.65302630420774,166.01912214094773,166.62717441515997,166.26708027301356,166.315690709278,166.87784099578857,166.06199427926913,166.35320950625464,165.4323079031892,164.81152654392645,164.67756947269663,164.39130494138226,163.9105205363594,163.07548145204782,163.53647343441844,164.17409416427836,163.74535136530176,163.33826746512204,163.73474784661084,164.09866995131597,163.47672055335715,163.36672424944118,163.03684218786657,163.1276447335258,162.67892024153844,162.29945975681767,162.67491537099704,162.52195804473013,162.6874896506779,162.4249772564508,162.46448971657082,162.4911467046477,162.83742435043678,162.0352200064808,162.31602946994826,163.03639152273536,162.3637640834786,162.31442107493058,161.89624960301444,162.86364085040987,163.831834057346,164.1282325349748,164.89832138316706,165.3002195963636,165.68389844708145,165.65009118895978,166.3245700825937,165.43482783716172,164.98874330660328,164.81035335408524,163.89601887762547,164.63162477174774,163.65663837920874,163.43635725602508,163.01841679029167,163.72397531196475,163.95004990743473,164.43281019153073,164.25147525547072,164.60679194750264,163.75725739402696,162.8628455339931,162.0282819471322,161.9733752203174,162.82691928511485,162.16176803410053,162.17621834389865,162.73568088933825,162.70551973208785,162.59293431276456,162.511410609819,162.6142989154905,161.68561056489125,160.8407942680642,161.7538307257928,162.27796292677522,163.14060514094308,162.19340250873938,161.502909633331,162.42836847761646,161.55606097821146,160.82791139557958,160.4841184616089,159.5188154927455,160.14033307600766,160.21302367467433,159.70888839196414,159.04032593034208,159.39672664087266,160.26505385246128,160.02094552014023,159.31065884791315,159.97696945536882,159.5886754677631,159.0996289202012,159.8405782962218,160.78522503655404,160.0217618648894,160.4555389317684,159.9737439476885,160.5215478176251,161.21263480791822,161.42603680770844,162.08389701182023,162.46059033926576,162.19659863924608,163.0760147627443,163.45522250048816,163.92010029498488,164.5258864564821,164.49723897594959,164.35863940650597,164.95484912395477,164.2120570242405,163.71079390402883,162.86939039314166,163.17692577838898,162.32096386980265,161.42233853321522,161.66921498486772,162.1494221398607,162.5788270253688,162.82720065210015,162.1367306751199,161.41526445001364,161.60430655255914,162.0966635798104,161.82696873880923,160.8743954161182,160.60450486373156,160.11320592323318,159.11945399595425,159.15535102738068,158.67229915829375,157.98887283960357,157.79824065882713,158.0431178198196,158.55759369116277,159.51411383133382,159.51794247562066,158.805990237277,158.5408761021681,159.44253552658483,160.28877385146916,160.18504824256524,159.4919566521421,158.72254012851045,158.8275883514434,159.4001009091735,160.39481874648482,161.27737179072574,161.39665497327223,160.5336083569564,159.85413623554632,159.92180671542883,160.2749039232731,160.26998617174104,160.85135332215577,161.20361321605742,160.4872380369343,160.0550934849307,160.4647713713348,160.65245302394032,159.93066940596327,160.0922516575083,160.0318245156668,159.32134839473292,158.49184799473733,157.79429008532315,158.0096278884448,157.06860229792073,156.34647078067064,155.4440081738867,155.50807344727218,155.61997137917206,154.93387231463566,155.81328512076288,154.95880329981446,154.96924254717305,155.4284081477672,155.8517613261938,156.80567102180794,157.10034342575818,157.64755041338503,158.23684291774407,158.3297791853547,159.14151919307187,159.10881891241297,158.4562753024511,157.66512347059324,156.84685642644763,156.40861985087395,156.47179230954498,156.8201745809056,156.54218206740916,157.09896394005045,156.92139914957806,156.72478498099372,155.7858555293642,155.15414170408621,155.48765104310587,155.70250319549814,156.35596393514425,156.72161325765774,155.8654630659148,155.35994307650253,156.3098093541339,155.4107981948182,154.60329138021916,155.31010458245873,156.00080629019067,156.12168809352443,155.4487330056727,156.27924693981186,157.16732005402446,157.11948564322665,157.5831993483007,156.61915579484776,157.15364793362096,157.63290991261601,157.7570896972902,157.16294924728572,157.32046575145796,158.0674990559928,158.46643323544413,157.53820257168263,156.61641083611175,156.1526514356956,155.19921337533742,155.38503592833877,154.59199555125087,153.94877188280225,153.46175988018513,154.43918349547312,154.88661702210084,155.10652141924948,154.65914864093065,154.61326723964885,154.10040331166238,154.80095147062093,154.57059948379174,154.836991855409,154.94189469050616,155.24918750021607,155.69537301454693,155.68366946140304,156.5444107656367,156.15971205523238,155.7212423607707,155.11714760493487,154.54126182198524,153.73855726700276,154.50652274908498,154.30178567022085,155.05441123479977,154.97566324612126,154.80967348394915,154.00074301287532,153.49513422092423,154.15486515732482,153.65186595870182,153.29146022116765,153.8145499280654,154.31508143432438,154.23628345923498,154.13719295943156,153.83371422765777,154.32440475560725,155.1539537664503,154.31546553084627,154.05521712545305,153.05529056070372,154.01048308284953,154.34583892021328,154.58043734868988,154.242089508567,153.51524576731026,153.50774919055402,153.67608697526157,152.9606050401926,152.283126053866,152.33235294464976,151.55526677099988,150.83371553756297,151.0087489192374,151.8519137436524,152.6962221651338,153.18942029122263,152.84876817138866,153.30717688333243,153.54282736266032,153.53080209204927,153.52950818603858,152.91276523843408,153.74659357173368,153.67352262837812,152.82408689847216,153.8000085633248,153.85312292771414,154.19729359261692,154.5292167114094,154.42868711566553,154.81018423242494,154.83386491099373,154.25317009398714,154.53394831344485,155.22643381590024,154.683289360255,154.8727668914944,154.4940948234871,153.85704015893862,153.18147211428732,152.69163519097492,153.47075268719345,152.5957488915883,152.304280965589,152.89248316455632,153.61372155323625,154.39962671604007,154.07103661447763,153.40138341579586,153.65375220263377,153.82428908441216,153.5992427621968,153.52590384241194,153.86911267228425,154.6926357699558,154.83144785603508,155.3205449404195,156.13028994807974,157.0717475549318,156.7801390546374,155.8155791242607,155.0131258899346,155.0594994481653,154.95307788811624,154.74688452947885,154.807110180147,155.11928872019053,155.35850985348225,156.00011916831136,156.17867518635467,156.3286833879538,155.44258883967996,154.52848745090887,154.2158536943607,153.3595325956121,153.31051535485312,152.54324317537248,152.81900905957446,151.939408371225,152.7223906959407,153.01994265522808,153.46062481356785,152.8116641654633,153.67118564620614,153.68893806263804,154.12480690982193,154.21704754279926,154.14497976889834,153.6769273225218,152.87179598771036,152.8961849892512,153.51681412244216,153.64697710424662,152.85213476000354,152.5251709120348,151.54868214344606,150.8381973700598,150.34578429860994,149.7799631091766,149.6780164781958,149.71548846550286,148.8673126040958,149.8385140961036,150.04009782429785,149.2965783290565,148.4559239000082,148.26184955239296,148.22830093698576,149.2273582057096,148.41315593756735,148.41899446584284,147.8387522813864,148.06247734604403,147.40284012490883,148.30437214113772,147.9055384863168,146.95455418061465,146.20607883203775,146.82644614903256,146.99079953460023,146.40082519082353,146.0693478207104,145.62985847331583,144.8481832286343,145.1946728429757,145.91548195807263,145.09719613846391,144.97927542217076,144.88916527526453,144.587822469417,145.06414955295622,145.5084365196526,146.3562401914969,146.88904669694602,147.61625315854326,146.8120476868935,146.05940249888226,146.69294068636373,147.17888855561614,146.24012425774708,145.5008389740251,145.86473251506686,146.3330899248831,145.34364417754114,145.66710803331807,144.85316803725436,144.22570244409144,144.09553250437602,144.09918119944632,143.37104600155726,142.511986379046,142.5469791549258,142.31854233052582,142.29400772880763,142.77478023571894,142.47951565077528,142.94645985448733,143.27916285442188,143.39267867337912,143.52996586076915,142.9855936858803,142.25359177263454,142.95289334561676,142.66155439941213,143.56993594160303,143.45027762837708,142.88898392859846,142.23943219333887,143.059167209547,143.29636162379757,143.96843551192433,143.29642759589478,142.8268750240095,142.96271092258394,142.52568792784587,143.1911594499834,143.21122531639412,143.10789595590904,143.07760480511934,142.36349991336465,141.56874066218734,140.60286647919565,139.9098671413958,139.23522134684026,139.6006453470327,140.39408289687708,139.51503929309547,140.12006067298353,139.71744695631787,140.30799827491865,139.45812232932076,139.38982867309824,139.20976284332573,138.8533448111266,138.57569473283365,139.4470258471556,139.82635336369276,139.18236411176622,139.5351352454163,140.35694239661098,141.07833125675097,140.69804287375882,139.9778995201923,139.8735322910361,140.07180164428428,140.6397615573369,140.71810447936878,141.1473238891922,140.3149585807696,141.18462452292442,140.5736492392607,140.21837030956522,140.35589508572593,140.53125367080793,140.06135555217043,139.92465199762955,140.64032131806016,141.5279747680761,141.60475765215233,141.42076136916876,142.32562913140282,143.20068391179666,142.7547157332301,142.03429176611826,142.07700226362795,142.8672040826641,143.18650032393634,143.57389118755236,142.75278640445322,142.01040704827756,142.29202204477042,141.6596924639307,142.38247343385592,142.24435285246,143.10160576878116,143.47337008686736,144.18673825543374,144.14694622950628,144.74207839323208,145.30572575842962,146.1708561917767,146.17163762869313,145.99265343183652,146.36075350642204,147.1801418797113,147.77198066050187,147.47942824382335,147.7251887251623,147.19742016866803,146.3230964015238,146.09448344819248,145.61684774048626,145.11978510022163,145.60392227815464,145.0391675005667,144.97709612827748,144.45427957037464,144.66477980511263,143.74374800221995,143.12458318006247,142.49553337553516,141.8476901324466,142.6739163105376,141.98296200251207,141.12608563667163,141.1862765206024,141.12408800423145,141.58573463372886,142.35233557550237,142.84136439068243,141.8489401275292,141.8770687878132,141.4334476995282,142.3287312821485,142.73134874692187,142.12538747489452,141.57137179048732,141.4304177975282,141.179655614309,141.29404682293534,142.16756020253524,142.92895222315565,143.41573950042948,143.7827862096019,143.8658038629219,143.8366318945773,143.80128960078582,143.42731768637896,143.4479039045982,142.60650515090674,142.11358401132748,143.0230181850493,143.87130273738876,144.40942362882197,143.5230545522645,143.77493345132098,144.43743469845504,145.33388911327347,145.02798499912024,145.39617126015946,144.43123493436724,145.40980504918844,144.4856610908173,145.08968020463362,144.7912058220245,145.02649042615667,145.48239451553673,145.05029315082356,145.13179868459702,145.6384593034163,146.59849312482402,146.74475148133934,147.6822571833618,148.55584870884195,147.76449241535738,146.82233766838908,147.8162017450668,148.596706263721,148.0686014010571,148.9080934850499,149.70715882396325,149.71162611385807,149.77789641963318,149.51426227390766,149.9703589566052,149.10495381383225,148.2698326483369,148.02112768078223,147.9344460745342,146.99831902980804,147.1417118362151,146.42313314182684,146.61077997181565,146.18455344671384,147.16349022556096,147.50985124427825,146.5248040528968,147.11292667221278,146.24648872949183,146.663313256111,146.42708198959008,146.75366918137297,147.13298555696383,147.44623956130818,147.41592793818563,147.8318153959699,147.2548571471125,147.79550702683628,147.81035009771585,147.4589800965041,146.78691342752427,146.24059415934607,146.5052184886299,145.81723317177966,146.44496134249493,146.24456458864734,145.3129278793931,145.63834738824517,144.91577717568725,145.27927386201918,145.16763184778392,144.96507213218138,145.77310421364382,146.43814440630376,145.54313008347526,146.12742757052183,145.64609538577497,145.73448652634397,146.24745457433164,145.63664743397385,144.7360928193666,145.23187746992335,146.19008901668712,146.37906061904505,145.87673568958417,145.23912839079276,144.24764981493354,144.9881251011975,144.5198838734068,145.14349385118112,144.80588238872588,144.30448334058747,144.0275986646302,144.59464996960014,143.93263410544023,143.63932681502774,143.79488022159785,142.9696999550797,143.94647336611524,144.65622653905302,143.67488112999126,144.3809121637605,144.03505643224344,144.71155183389783,145.04160841507837,144.66839359607548,145.1756679895334,145.2000982426107,144.35810468206182,143.6292151734233,142.8438304970041,142.53627035021782,141.72311039967462,141.4327384424396,142.2214276054874,141.9049694063142,142.5626369691454,142.96095471503213,143.76185428071767,143.77975963708013,144.41962442034855,144.81181272910908,144.10767331672832,143.5635980949737,144.00958296982571,144.01368675380945,143.75066780112684,143.43466277467087,143.07484926097095,143.6640676315874,144.03134112339467,143.7035878538154,144.6239909036085,145.62134341802448,145.89039816474542,146.67555599007756,147.3093754085712,146.54728665249422,147.40339142736048,148.3940174705349,148.13192215422168,148.30596655327827,149.16322270501405,149.15314819803461,149.1139433584176,149.41077461466193,149.31385227339342,149.97258485574275,149.1237834733911,148.77621085988358,148.64853353751823,148.5603476781398,149.44378858199343,150.38172061741352,150.19931088294834,149.92496479069814,150.73246666463092,150.53182699577883,150.596507193055,150.52451117848977,149.5583674539812,150.28648473601788,149.89387983689085,150.32314913906157,149.75893108500168,149.3051564921625,149.4592444365844,149.88240443868563,149.39523132704198,150.09570419508964,150.35518615553156,149.88492340175435,149.35845660977066,150.14375586016104,150.96919478103518,150.9561245595105,150.39687971025705,150.5997254718095,151.5540283913724,150.74178037047386,150.15861761709675,150.99605937721208,150.96115535544232,150.6249875286594,150.4864756106399,150.62868961552158,151.56576494220644,150.67894200375304,150.9375969665125,150.88095867726952,150.1909873522818,150.28947445424274,150.29525151662529,150.93998046731576,151.23228285368532,151.8129164762795,150.9790183850564,151.53778098057956,150.94136268272996,150.16011094860733,150.78787237405777,150.2858708575368,150.6456231107004,151.37248158082366,151.70549314189702,151.4116936493665,152.38674396276474,153.2422429183498,153.2713764514774,153.74148002499714,152.95980714261532,153.08103009825572,152.1229243259877,151.47433869028464,151.57720868010074,152.37091714097187,152.48945193039253,152.59822931000963,153.01327751483768,153.00004821224138,152.41901314258575,151.58529642643407,151.87683235900477,152.56742477836087,152.69598957244307,152.9570347541012,152.8920443621464,153.12050536321476,153.814392501954,153.65162272611633,153.73194252047688,154.4692407939583,154.30488167889416,155.258426674176,154.9499467993155,154.5607136641629,153.67873325804248,154.64298246847466,154.12465927610174,154.24778268299997,153.356090801768,152.90365253714845,152.653272327967,153.12049342412502,152.67412233911455,153.07506937673315,153.66667854506522,152.68112601386383,153.0177456382662,153.99841268965974,153.05067935911939,152.34657127503306,151.66525516612455,151.76695601688698,152.1708103795536,152.58931048493832,152.27639647433534,151.9722976316698,152.03999215364456,152.65594504773617,153.32419273862615,152.48431914206594,153.28612227272242,152.3774808384478,151.6155294785276,152.47286571655422,151.99016500543803,151.06669743172824,150.2189398398623,151.146076974459,151.77981667453423,151.83707091305405,150.96121486695483,150.76566765084863,151.32345890859142,151.3568953126669,151.5282149380073,151.59334091097116,151.882020290941,152.47584423795342,153.331507391762,154.19232953106984,153.72855715965852,154.08479531295598,154.48379952507094,155.16004476882517,156.06993943918496,156.50483163585886,155.83643364487216,154.92488792398944,154.10691313585266,154.80991037515923,154.30956567497924,153.77707722596824,153.98278694041073,153.81584367761388,154.63042625971138,155.1910923733376,154.52296599186957,154.01595531217754,153.2233132412657,153.81082850927487,154.4397731749341,154.83462783508003,154.4446086823009,154.7766043911688,154.35722336173058,154.61359935672954,155.4198896298185,156.08668960584328,156.77329442324117,157.71083189174533,157.06609184667468,158.05742769455537,158.56691057095304,158.52591008786112,158.78794412640855,159.2941591492854,159.70462750922889,159.10631579812616,159.24313317378983,158.5805495926179,158.36583479354158,159.10270462417975,159.8960390719585,159.5666395481676,158.98396598920226,158.22645436180755,157.85134044662118,158.81742888968438,158.45307830628008,159.29993756767362,159.27754907822236,160.10706722456962,160.63204242102802,159.68166562356055,159.43643678631634,159.29728457005695,159.46447586314753,159.70234398031607,159.30080036260188,158.9264914970845,158.99869721382856,159.9583174805157,159.68370823422447,159.010348060634,158.5867724334821,157.64939573360607,157.82031560409814,158.7532166331075,159.29628642648458,159.49813200859353,158.954428487923,159.73267338844016,159.40318202832714,159.55271511990577,159.70202337251976,160.67867470392957,160.32004601275548,160.71530907554552,159.98150513786823,160.37683427985758,160.97703540092334,161.37339146062732,161.0866016293876,160.54948186967522,159.93390220729634,159.41522641060874,159.88468124857172,160.0013700532727,160.07857233611867,159.0866136965342,159.58939362922683,160.30511187855154,160.87755126971751,160.05876084556803,160.3465467505157,159.47652677679434,159.08345372090116,159.28692437941208,159.03427799465135,158.7711208127439,159.68142976099625,160.4299290534109,161.36836551083252,161.8951586065814,162.11249932227656,161.53273106087,162.01577946403995,161.42676108051091,162.28632153617218,162.94139638729393,162.83792579174042,162.67198099009693,162.4304906092584,162.13603112613782,162.5695679797791,162.43544549914077,161.96985603915527,161.49700326332822,160.528916221112,160.62003616290167,160.10265293670818,161.05574432061985,161.05643048742786,161.37558287661523,162.27756432071328,161.76201606402174,160.84856837335974,161.67355696298182,162.24723282502964,162.47332666628063,163.33133198972791,164.23999475641176,164.97189854411408,164.24056049622595,163.5013817003928,162.66320378240198,161.85803303541616,162.1764182895422,162.32478549750522,162.27148011419922,161.2812981507741,160.51633993769065,161.45919754821807,160.6066255895421,161.22859091265127,160.69730295194313,160.5752727841027,160.61444732919335,161.2020048154518,160.9807885028422,160.60536532802507,161.54390722094104,162.17142845038325,162.286052250769,162.61646608961746,163.3567793192342,162.8010126547888,162.58870363328606,163.4737806757912,162.68083473481238,162.3489075275138,162.55957025289536,163.30053587071598,163.80806415202096,164.67283305199817,163.75756526505575,164.44637345010415,164.91549616446719,164.15924907661974,163.90207456378266,163.39457867480814,162.62645291816443,162.97186086839065,162.93568389629945,162.79410947905853,163.02165301609784,163.74754316359758,163.00317768240348,163.54690464679152,163.19329997198656,163.7170809819363,162.95433636475354,163.39716200064868,164.02568021370098,164.47853703098372,164.48506204783916,165.40993635356426,165.86394649930298,164.88931307243183,164.2623572619632,163.3764162445441,163.09004230750725,162.4569284711033,162.37113194912672,163.31029186584055,162.4165775096044,162.2078649904579,161.63178813504055,161.73192119132727,161.40798465395346,161.2093492639251,162.13842502096668,162.57647361746058,163.39123648498207,163.99830009927973,164.05146286217496,163.30212113354355,163.67564173880965,163.1007478069514,162.32863173168153,161.56698627397418,161.34923650464043,160.50947786075994,161.3278082134202,161.7356028985232,162.5467669023201,162.88089516898617,162.44372958038002,161.6035382738337,162.0500904750079,161.46031933557242,161.52397649828345,161.0701621551998,162.05579997226596,161.37366731557995,160.99353004759178,161.80878777895123,162.0776501102373,161.86090622236952,162.2285580066964,161.49843127885833,161.11077399551868,161.62171424319968,161.20195147767663,161.82068361109123,162.72339926473796,163.41006473917514,164.3312224042602,164.0739393015392,164.5203690319322,164.9428590722382,165.94123266637325,166.45577266719192,165.49945780541748,166.34089369606227,166.4611419122666,166.78289476362988,167.03291776869446,167.9932475844398,168.44511867361143,167.47776117688045,168.2959600673057,169.13324786769226,169.90881574060768,169.10149956215173,170.04353400692344,170.88979147514328,170.98381930217147,170.06671189051121,171.04322799947113,171.14802701305598,170.43566939933226,170.12978284433484,169.45582978380844,168.64513334725052,168.7534005176276,168.52335141040385,167.96160085033625,167.65393405221403,168.02222917042673,168.9104318022728,169.3037978131324,168.62204067409039,168.63034694688395,168.21806799946353,167.22925128228962,168.03155016014352,167.68934030039236,168.09520515566692,167.5740443081595,166.70165732083842,167.03222926193848,167.07955441856757,166.3958916584961,166.07476372877136,166.59608352556825,166.84601660678163,166.70115690957755,166.56499359151348,165.89108563680202,164.97994725685567,164.6704246592708,164.34818629035726,164.90841079456732,164.91862074658275,164.92321340041235,165.79714141739532,165.23997386312112,165.82287576003,164.9338931730017,164.47358294809237,163.70223892945796,163.80766704352573,164.53245967440307,165.30828627524897,165.47153178602457,165.62084353389218,166.1205587470904,165.78622829308733,166.66519225900993,166.77809506002814,167.01786026498303,167.36613268218935,167.39124635979533,168.15682791825384,168.69974443269894,169.24188332585618,169.95611196942627,170.00463938852772,170.9017667886801,171.0499274530448,170.2268595523201,169.96003933576867,169.88990805251524,169.871409364976,170.2023952230811,169.91136659821495,169.3817639821209,169.957846599631,169.2956499895081,168.70708705903962,169.14943677419797,169.51567767281085,169.75572962174192,170.7358208973892,170.19550079060718,170.6089026592672,169.7703902972862,168.77478688489646,169.15879119979218,168.54853258142248,168.2085426626727,168.1623738692142,167.73929423093796,166.98022394627333,166.8900152533315,167.88014121865854,167.15695012547076,166.19053527759388,166.06346940109506,166.08086620643735,167.05224532540888,166.10720768896863,166.28610300039873,165.83415061142296,166.7079833871685,167.34514486137778,167.0979641810991,167.14779639337212,167.17854563100263,166.75149597926065,166.28252484230325,166.7652736743912,165.9198755188845,166.11829286022112,166.13445241982117,165.40212360071018,165.36195162078366,165.54351988155395,165.9796114070341,165.03336499631405,164.44920401461422,165.24408061150461,165.62215371383354,166.42288766847923,166.69144786614925,166.08419416472316,165.25339387869462,165.88702185917646,166.65876901056617,167.3960323012434,167.82405425282195,168.54104007827118,169.46638298593462,168.85795243782923,168.18243617890403,168.06603495171294,168.5545975822024,168.8157381825149,168.82754819327965,169.5918297227472,169.8815050283447,169.10230360459536,169.8403856586665,170.15405574813485,170.33898856397718,170.30334808351472,170.07396169146523,169.9854073370807,169.20686046313494,168.79497570777312,168.00198632106185,168.21109933266416,168.41115902457386,167.87171706743538,167.4816574268043,168.30566667811945,168.10368329752237,167.2181447846815,166.24659947538748,167.04171253368258,167.23768364312127,166.42424737568945,166.84163961559534,166.07458952907473,167.01709543308243,166.81940673151985,166.85274823848158,167.08418380096555,167.61654186062515,166.84211239079013,166.02412960259244,166.3974120914936,166.06020282395184,165.73185659758747,164.8776350831613,164.62900971621275,164.69716822402552,165.0428566597402,164.70013622241095,165.6431791363284,164.6521508609876,164.7220744485967,165.6914323703386,164.917080453597,164.83172180876136,164.64123204723,163.73259711824358,163.41578134568408,162.98773685796186,162.98075982974842,163.83512421604246,164.6599079966545,165.3597556198947,165.2113960958086,165.90438154665753,165.7873962894082,165.52704875031486,165.42784441355616,165.40299617312849,165.8905852045864,165.90999428834766,166.44180512381718,167.36523793358356,167.23254518490285,167.25673262169585,166.79107406549156,166.27967843879014,167.10572022385895,166.3119252892211,166.1331138079986,165.215450105723,165.2543627009727,164.43776349630207,165.07986482372507,165.59530190983787,165.2919275648892,166.1616565035656,165.91431220481172,165.6765261851251,164.94315121974796,165.37700605252758,165.08281696634367,165.8814967586659,166.21889867726713,165.93482756614685,166.58358367858455,165.94066353840753,165.96359991561621,166.18187742074952,166.10226923041046,166.40158051252365,167.3517520390451,167.75021014735103,167.95127966674045,168.81021607201546,169.2626445647329,170.12888875277713,170.629739894066,170.7342756120488,170.03615375887603,169.96424747863784,170.6153406961821,171.23792648734525,171.6444296981208,171.85371471056715,171.89978665066883,171.77753240894526,170.972706775181,171.7434381302446,171.82209981419146,171.98594820825383,172.4716862179339,171.4878200283274,170.8552089924924,171.64284402271733,171.81768623180687,171.92620926117525,172.38748625060543,172.02414986211807,171.33411165094003,171.36300806049258,171.95052608055994,171.03053029580042,170.213903516531,169.75297585641965,169.15077719837427,169.80323734413832,170.21741898497567,169.28701099287719,168.80964063992724,169.21889292867854,169.39956302335486,170.10606118664145,169.12298845499754,169.2227304512635,169.17556720925495,168.8622897947207,169.81629535648972,169.86063744034618,170.57414703955874,170.70616583386436,170.5100491126068,170.60284434165806,171.555855600629,171.149993813131,171.15664410637692,171.75356105482206,172.32493330631405,172.88774916855618,173.50262139504775,172.95694476505741,173.2519551604055,172.7026585279964,172.4166333586909,173.40671744663268,173.2435320513323,173.1409778962843,172.23788561439142,172.63164480263367,172.1801081513986,172.88517983537167,173.84325879672542,174.10823052655905,175.02113268896937,175.96652058139443,176.76287392666563,177.26139258034527,177.3552508233115,176.58095367904752,175.91794602852315,176.20670639257878,176.48812059918419,176.80545786069706,177.55246863374487,176.76585160195827,176.2504172772169,175.76050768885761,176.00143910525367,176.6415572501719,175.6449398244731,176.20597783196718,175.94262061547488,175.730932880193,176.07617075089365,176.824898338411,177.01160143269226,177.8091586646624,178.45731931738555,178.847724723164,178.18107818253338,178.25823460705578,177.6745213395916,177.87801625812426,178.57378784706816,178.36573933064938,178.18352800002322,177.53807939216495,178.3658237978816,177.90328872948885,177.08223314629868,176.35789759550244,176.05960870534182,177.0403460660018,176.34898040024564,177.26422680495307,177.63762536551803,176.85217720875517,176.9836940895766,177.05285837873816,176.48802185291424,176.65133515000343,175.9691745247692,176.23323668166995,176.11664335988462,175.7742120521143,176.59799229959026,176.33240497205406,176.12984160194173,176.48401984851807,175.99512906977907,176.242248586379,176.28572240797803,176.6088158963248,176.87056219065562,177.13387061934918,176.70865371869877,175.98695642407984,176.83904899377376,177.74051320832223,177.7763687330298,178.72024593967944,178.83807235211134,179.7764646965079,178.80989208770916,179.10519570391625,178.84671682491899,179.51200402434915,178.59375840472057,179.35431742668152,178.84151654038578,179.67506906343624,179.2948614032939,179.62379073537886,180.0573721639812,179.723692254629,179.4825066975318,179.31583734415472,178.5395333999768,177.93509653164074,177.0293687414378,177.19737227912992,176.53230951959267,177.1362180961296,177.28888806840405,178.07167577091604,178.43771031685174,177.5865580253303,177.5332773500122,177.86296197772026,177.55311078671366,176.66737764934078,176.188322968781,176.02222454501316,175.17007558047771,175.05848494404927,174.09957435540855,173.18437579926103,172.38771427143365,172.779588597361,173.2008747663349,173.13523725233972,173.85818748548627,172.88964295759797,172.0875013913028,172.32202878966928,173.08720149751753,173.26617505261675,173.8363291504793,173.94241520902142,174.11500298883766,174.62030651420355,174.6657204478979,174.36119238939136,174.0977100012824,173.69248889619485,173.3703516824171,173.0505774714984,173.28344137733802,172.38489361619577,171.65260821394622,171.7361178919673,171.87411914533004,171.16087442077696,170.83038821490481,171.0141047379002,170.227582170628,170.33217506762594,170.78613216383383,169.89963941462338,170.61244114814326,170.72829251457006,171.4900143793784,170.8421324151568,170.19926843652502,170.93251349544153,170.37025897344574,169.46325877774507,169.16602532332763,168.6589063294232,168.42282626964152,168.2926610261202,169.20660428376868,169.3833247036673,168.86720597557724,168.48183893412352,167.74822061648592,167.79523366037756,166.9390229145065,166.29499781737104,166.705330228433,167.5642476323992,167.81266277702525,167.94731158437207,167.3346660286188,167.27200395567343,168.24068514676765,167.70940113347024,166.87576389079913,166.41395192593336,166.22800634801388,166.7307691881433,167.6238781614229,167.9217184712179,167.7555982619524,167.88967676181346,167.56540485657752,167.20593208493665,167.23639193736017,167.42420673230663,166.74564094748348,166.58439556509256,166.57403790205717,166.34375527175143,165.95596633385867,166.95556937577203,167.9274359322153,168.29754312010482,167.6988364146091,168.4256244059652,168.34526808094233,168.02085857605562,167.36455851513892,167.94647621689364,167.5752230170183,167.835158939939,167.1914894604124,167.5612510368228,167.75530390953645,167.63336430024356,167.29034373443574,167.48601514706388,167.52334495680407,167.35375802079216,167.66181806568056,167.823440651875,168.71690845815465,168.99086879985407,169.96998442988843,169.6431065183133,169.45244450168684,169.4056567484513,170.0504433005117,169.84846866270527,169.77935484424233,170.44040793320164,170.93432553950697,170.22822189936414,170.34905678546056,171.13036669278517,170.18865463975817,171.11269516078755,170.90397606091574,171.38663244480267,171.29255914175883,170.34308700822294,170.45991538418457,171.34568318352103,170.7734418134205,170.0791646647267,170.01151465205476,169.2553558521904,168.94041234394535,168.404923082795,168.2300698715262,169.10291481623426,168.14110912196338,168.50107664102688,168.94837299035862,169.7098576463759,168.83029091218486,168.47180432034656,168.03760145930573,167.48762245383114,168.3813200374134,168.01988323265687,168.8192064757459,169.36710674036294,169.1607996299863,169.7367324270308,169.46475624432787,168.84894377319142,169.45385221624747,168.51934354752302,168.03880714811385,168.27487549278885,167.85675977310166,167.9447259423323,167.97868825122714,168.7937193675898,168.7815125049092,169.76724957069382,168.85750031331554,168.09632663661614,167.30807816470042,166.3469815994613,165.58624986559153,166.1523957643658,166.88123425282538,166.80581230390817,167.0579576510936,166.5375033337623,166.80704874033108,166.9411520352587,167.8503202078864,168.4777888855897,169.27810496883467,169.3493337398395,168.3962521380745,168.7700858535245,167.78713050298393,167.3181645339355,168.10001538321376,167.7438276996836,168.39930195361376,168.46770549099892,167.83125673420727,168.44315750012174,168.39698563190177,167.93691260321066,168.5834043524228,167.68048031721264,167.51785405399278,167.40592538705096,168.27286485536024,169.182978047058,169.70307508902624,169.37060012342408,168.40721909049898,168.60492079565302,167.85162011813372,167.74442372797057,167.528241104912,167.02422727178782,166.71596351498738,165.7851187856868,165.3193679242395,165.56823360174894,165.88078606920317,165.20185036677867,164.71628751372918,164.08873260114342,164.75203970167786,165.69511240767315,164.73367109661922,164.02475467696786,163.47014167066664,163.72252970002592,163.25682415626943,163.7170842331834,164.37395977135748,165.30109893437475,165.63470693584532,165.80686883768067,165.41113510588184,166.0830783774145,165.51526858797297,164.51629537716508,164.16349841607735,164.16623013140634,164.90025114407763,165.50625540781766,165.01502743922174,165.94500412000343,165.66838701302186,166.38820078549907,167.34239815594628,167.16387738427147,167.2401339332573,166.25425599934533,166.81271240254864,166.88431627536193,167.86917684040964,167.56501219421625,168.4913504035212,169.09318849397823,169.77595259994268,170.65511844912544,171.1611408321187,170.8985194535926,170.59865502268076,169.74888456612825,169.7500368342735,169.54456846183166,169.6872163368389,168.79180181911215,168.4991526431404,168.57877888157964,168.06671253824607,167.92860691575333,168.90685412706807,168.0968579435721,167.6783881066367,167.82475203089416,167.80686642974615,168.18064916599542,167.47447003563866,167.46295577846467,166.8967981613241,166.95727288816124,167.43038901500404,167.67014972958714,168.0817165565677,168.62978795776144,167.86296412535012,167.60812963498756,166.9824684257619,167.56116252439097,167.27403551805764,166.88043766049668,166.5575524000451,167.22311882628128,168.14740158151835,168.69346662890166,168.76177564123645,168.8417466203682,168.78805373655632,168.73872655583546,169.19160270085558,169.85895774466917,169.05549854086712,168.8695128899999,168.9930853722617,168.90447928663343,168.47904651798308,169.05075149657205,168.4206805001013,168.2353498651646,168.12061836756766,168.72831259202212,169.01185528561473,168.30111854011193,167.8559791664593,167.60002563567832,167.40957226604223,168.22176679223776,167.94276411598548,168.67500025127083,169.64264627126977,169.75588994799182,169.2189553817734,168.4327580728568,168.03667266806588,167.37515595695004,168.04926222003996,167.72431584168226,168.33540471456945,167.9004908753559,168.8432042519562,168.16579242702574,167.43009509285912,167.52755164681002,167.4051157995127,167.1565020121634,168.14815557841212,168.07530799414963,167.2135745184496,167.7357944524847,167.03903037589043,166.59860272798687,166.84751353692263,165.97608789242804,166.24084093840793,165.28857048321515,166.15128735639155,166.45139905670658,165.70048110419884,166.34745558537543,165.87377264117822,165.44971056189388,165.60259423637763,166.17273973859847,165.9635647283867,165.34160828730091,165.01170546514913,165.51250829035416,165.49011718202382,165.2739365301095,165.01199774071574,164.92227040417492,164.1186360749416,164.3140850905329,164.39983479119837,164.19730505067855,164.15098504396155,164.02510942146182,164.7730117016472,164.1467858236283,164.9141909563914,165.7842369871214,166.57356665004045,167.3573183058761,167.96096555376425,167.59286361886188,167.74841415975243,167.60152169689536,167.07642028294504,167.9447351898998,168.13304587407038,168.31752483546734,167.5840927483514,167.86877557309344,168.01950631523505,167.5358742424287,167.03178959386423,167.24631366087124,166.83808904746547,166.92478850111365,167.70209876913577,168.30617675976828,167.8708075066097,168.35374496877193,168.46642860211432,169.37213302310556,168.93325506709516,168.48805193509907,168.47202902799472,169.47201984981075,168.65648569725454,168.67987013002858,167.90864198142663,167.44978300016373,167.50027251290157,167.39796653809026,167.9148721769452,167.89438631664962,168.21324547100812,168.92549943272024,169.26047506555915,169.55891002947465,169.48634259728715,169.84885564120486,170.54028124269098,171.20200735190883,170.67197021329775,169.82213615020737,170.3886273270473,169.63906010286883,169.8810070133768,169.47114235861227,168.78606879292056,169.26048717973754,168.55354861496016,168.0480938050896,167.46525708632544,167.95692592160776,167.1333547658287,166.44284739764407,167.21773694176227,166.9080235059373,167.48972419230267,167.76762880850583,167.88951524486765,168.73522890359163,168.84344017272815,168.5955135882832,168.72415830148384,167.84677960257977,166.95236935140565,167.9251680658199,167.3016583933495,166.78144840570167,166.9149569910951,166.8339918293059,167.22838405752555,167.86613870225847,166.9295908799395,166.3254181589,166.5923502650112,166.17416496900842,166.49027599580586,166.00078313564882,166.0153879816644,166.05134508991614,165.16738011594862,164.6624792595394,163.94447471993044,163.59428359009326,164.1120234215632,163.33118930179626,163.34710117056966,162.98454665811732,162.87660263571888,163.63332732394338,163.83489202475175,163.53106771362945,163.93748601945117,163.82369382027537,163.99426492117345,164.93907007714733,164.4898591968231,164.74206136306748,165.4939412404783,166.42522891797125,165.68074750341475,164.8423810848035,165.00205504568294,166.0010847216472,165.28416009340435,164.618756077718,165.11072332737967,165.6809934838675,165.71401369711384,166.12496840767562,167.07818693481386,167.51450732070953,167.66984418174252,168.0764947682619,168.5078615262173,168.1470200694166,167.14904054207727,167.86088679777458,168.2473315866664,167.35875513078645,166.45001138933003,166.61563151981682,166.15789190819487,166.28012953605503,166.5335615221411,166.66548883914948,165.7002974981442,164.98616506066173,165.72961060656235,166.2573394156061,165.5276753846556,164.78312495769933,164.91337460558861,165.44648439716548,165.5485670370981,165.54017343511805,164.61316422512755,165.11837840499356,164.14839529292658,164.47887044167146,165.32586606498808,164.5419735093601,163.9756866581738,163.99449809873477,164.8570450800471,164.0053546372801,163.09547328623012,163.02143952110782,163.5096614905633,163.22625654377043,163.08865194069222,163.1058401670307,163.79069459810853,163.1614169050008,162.8304813085124,163.6161770024337,163.1862308732234,162.85221731383353,163.67989413812757,162.80914392042905,162.23410535091534,162.77922276128083,163.3421032507904,164.23294772021472,164.30834526009858,163.56349507067353,163.69011702993885,163.57100974628702,163.94007600983605,163.28067290456966,163.24591897102073,163.8736844654195,163.39665360050276,163.76339880144224,164.6882770685479,165.11895915307105,166.1188983838074,165.99455619836226,166.24317789589986,166.65565038379282,165.71590544702485,166.4985709185712,167.4163107452914,168.32886820985004,168.25254268664867,167.31430021161214,168.25464773969725,169.233964656014,170.1770176552236,169.46463833842427,169.65320840012282,169.6986432299018,170.5247743059881,170.39242471940815,171.00390486232936,170.39385450119153,170.07069805590436,170.505868811626,171.2998923403211,170.98350255563855,171.3687231936492,171.48688120068982,170.56880127638578,170.00895462324843,169.2179424255155,169.9395575253293,169.07716870307922,169.00803083507344,169.03267264319584,168.2054667309858,168.5882517118007,168.51549232471734,167.79832875635475,168.21777714090422,168.0887312013656,167.9606492863968,168.19092603586614,167.83794068405405,168.15825331164524,168.6786530460231,169.57805241225287,168.6299313539639,169.32210331223905,169.8652188256383,169.89187950314954,170.05052196327597,170.55465299077332,171.26108231861144,171.31127057923004,171.33228467591107,170.5277502257377,171.22354768402874,171.75346488924697,172.58732051867992,172.17626469954848,172.51518214447424,171.78352888766676,172.60544202895835,172.7289253375493,172.73060096427798,172.327340724878,171.7415816229768,172.59426858322695,172.9011801755987,173.52255310397595,172.64670742116868,172.20355795649812,172.54074183758348,173.1862777536735,174.13325776159763,174.59245982766151,175.59109456883743,176.51262569706887,177.21145358821377,178.13396260561422,178.66805157624185,178.70541083812714,179.05749558005482,178.96535851620138,179.92838636273518,179.01675183419138,179.27202571323141,179.5902210441418,180.09395315963775,179.28107249597088,178.3358138189651,178.64296362409368,178.33850678056479,177.46328347641975,177.46421783277765,177.6626529530622,178.49210794083774,177.92830161331221,178.90764239663258,179.63058784371242,179.4366140938364,180.1244963631034,180.6100566526875,179.89572608843446,179.6477615935728,180.28750825300813,179.46982129104435,179.633391730953,180.62139885220677,181.42789844982326,180.4559176894836,180.01003500819206,179.0401803124696,178.44188238075003,179.0385744953528,178.1074542249553,179.04425997380167,179.18146287091076,178.45670248940587,178.9201684645377,179.73317127954215,180.6348220044747,180.1609596903436,180.14569596666843,179.92677239747718,179.74906261544675,179.9386105206795,179.305658868514,178.9380770586431,178.23614216595888,178.54657868202776,178.43112795008346,179.02470387984067,179.78421378787607,180.208512079902,179.51800971664488,179.0466377432458,179.60179553972557,178.74929604306817,177.96896142093465,178.39434518292546,178.82241950090975,179.4018486859277,179.13164409901947,178.3699695034884,177.5983032095246,177.90914559410885,177.53194611240178,177.03068107087165,177.0663857399486,177.61784876557067,177.82992569403723,176.91872560605407,177.2873662021011,177.63891967991367,178.5172689706087,179.108399996534,179.78372901724651,179.44176904531196,179.4393636714667,178.70128910522908,179.0559208104387,178.7109707458876,178.13394934218377,177.22132862405851,177.38900588918477,178.01478699501604,178.08605937939137,178.69922094233334,179.57850638544187,178.96982922730967,179.40804763045162,178.73701140563935,178.59744213102385,179.0304095186293,179.4390146145597,178.51788191031665,178.15673254756257,178.3036464266479,178.42166306218132,177.51245131343603,178.09760233201087,178.4842093233019,179.00820820499212,179.09393606334925,178.27432656753808,178.04873062530532,178.37808839417994,179.01618813024834,178.0433226521127,178.71399091091007,179.41824208432809,178.66874122060835,178.67295326199383,178.98088398808613,179.48938930546865,179.71442561317235,178.726985655725,178.08379664598033,177.8780842772685,177.2723539378494,177.10455217584968,177.94402751885355,178.24756532115862,177.57976705767214,176.7249940992333,176.3006882085465,176.80128714442253,175.81507090339437,176.0033472822979,175.5866210013628,175.92753482377157,176.05486650764942,176.22972649149597,177.0391805334948,177.4493400924839,176.74942960962653,176.13058128813282,176.11177661456168,176.10619195597246,175.93454375769943,174.98101212549955,174.79649583343416,175.53396955225617,176.25540822651237,175.47563400305808,174.51095395954326,175.02067842148244,174.06632313225418,173.18255627388135,172.43078825762495,172.73277152189985,173.28745905449614,173.39760587364435,173.6403280077502,172.9982456229627,173.68585285451263,174.29176475014538,174.5823443904519,175.2902924627997,175.94973320746794,175.88830264518037,175.3506387840025,175.12191402027383,175.77910186955705,175.64669124409556,176.25375611055642,175.71488571725786,175.03382259141654,174.98475694749504,174.4850002019666,174.9642320703715,175.78116603428498,174.94984616804868,175.83441724581644,175.04063697904348,174.6776515506208,175.6373478854075,175.10591854481027,175.92533199861646,175.3431679927744,174.92885858612135,174.69348179688677,174.90281259594485,174.61344201350585,174.9436626592651,174.26603009924293,174.79797989781946,174.18147919280455,175.02454147161916,175.42358809895813,175.20271077845246,174.55087323626503,174.94641420897096,175.11317676398903,174.58475841628388,174.09726839791983,173.33705218322575,174.3337085605599,174.6781028546393,175.17843294283375,174.19980856077746,174.70025892928243,174.85911291837692,174.39423713320866,174.46267115650699,174.51058020303026,175.4133120845072,175.29650198854506,175.16750332014635,175.3263887935318,175.18448995659128,176.1009384347126,176.96489952038974,176.20423791510984,175.57552208472043,175.20876506110653,175.67301401821896,174.80203466070816,173.92022536881268,173.9704111162573,174.66920283110812,173.78967109881341,173.8852326325141,174.36605374794453,173.49355763476342,173.2055379524827,172.55466532660648,172.9089406300336,171.93090301379561,172.02150768088177,172.0482390606776,172.52380153583363,171.5480546806939,172.268209583126,172.29811335681006,173.0637837862596,173.49181832373142,172.62774209678173,172.10086839972064,173.07350005302578,174.06035233708099,173.54578531440347,173.67083580838516,174.63094221288338,175.02464672038332,174.11463400395587,175.0241536302492,175.70159645332024,176.37008924409747,177.0020811385475,177.0971640944481,177.57195890368894,176.96125254873186,176.47924731764942,175.8078529718332,175.41293444251642,175.03586450358853,175.6078999377787,175.20943039050326,174.3731885352172,175.14580617658794,175.47746942937374,175.12503198022023,174.6061754785478,174.3088034344837,175.10141708143055,175.0121463732794,174.43091024644673,173.66213855938986,174.16926400084049,173.7009236831218,173.49861791916192,173.5836566928774,174.26368207391351,174.86462283832952,175.2765813372098,174.82656233245507,174.4741843054071,175.46037316787988,174.87579798465595,174.8411240996793,174.5283668525517,174.9435173398815,175.25832686480135,174.39188638934866,175.3726053708233,175.42293780250475,176.27400186797604,177.14547095773742,177.50562317250296,178.4532375568524,178.79102001618594,178.33926069596782,179.04230646556243,178.2488680141978,178.53803165396675,178.66856718575582,178.5260118828155,177.96927940659225,177.68782370863482,178.68747102376074,179.2951485645026,179.7198635772802,178.96956944931298,179.24241029238328,178.48385522607714,177.54560604924336,176.69767356617376,176.2767196050845,177.23197874054313,177.30026766099036,177.1001499458216,177.72397674061358,177.42569122463465,177.7994123334065,177.28017517086118,176.34303776780143,175.94278531661257,175.95190320862457,176.6659904550761,176.70506217563525,176.56998709402978,176.8673135302961,177.1713105784729,177.34098398964852,177.32929460564628,176.94887444004416,177.8314083814621,177.0188641906716,176.13566810218617,176.53127332637087,176.59861357416958,175.70135332178324,174.71895206300542,174.34159487532452,174.93775943201035,175.68173237796873,176.46802556607872,176.00742840906605,176.46964655816555,176.36897470848635,176.61379102384672,177.39361141249537,177.87877326225862,177.72725984826684,177.2517798282206,176.53651063563302,175.7256884528324,176.52481245342642,177.1252590487711,177.68130794772878,178.64956653723493,178.53065109299496,178.41239201044664,177.58367575192824,177.66921242373064,177.73734452901408,177.31637190654874,177.66520587727427,177.58869461296126,177.84741934621707,177.74492088984698,177.3186730411835,178.23921727295965,178.32743944367394,178.20405388390645,178.80211479589343,179.46921676862985,178.9271071171388,179.09369431436062,179.209587325342,180.158177905716,180.74145424552262,181.50952520640567,182.4789897822775,182.82966750627384,183.01125855650753,183.24218539567664,183.26678166771308,183.45939743425697,182.62324826372787,183.51881507365033,182.90962703246623,183.7734974641353,182.9835180612281,182.07177727855742,182.8521837000735,183.26462580403313,182.64161740336567,183.54852887010202,183.50344971381128,184.34440975729376,185.27741423528641,184.67078608833253,185.31996395997703,185.98143383022398,185.5629278854467,184.76684643840417,184.06274139415473,183.2424409566447,182.48856888571754,183.3408429552801,182.7067521805875,183.68175206286833,183.03900296986103,183.71583921741694,183.51764952065423,183.20202628476545,182.80225130030885,182.2212211661972,181.22930141165853,182.1708680978045,182.21614269725978,183.0261849425733,183.1677699778229,184.1144907521084,184.26696626935154,184.49693069141358,184.52834417391568,183.9157354584895,184.55970098637044,183.6726312134415,182.8333915071562,182.3919180459343,183.3829176723957,183.24621138628572,182.8851143461652,183.04010408977047,182.74792475719005,183.11316131940112,182.44286330696195,182.72765662055463,182.63656577747315,181.9888166701421,182.32472169073299,182.29835130739957,182.8206535675563,182.08201218117028,181.23805654374883,181.65182870533317,182.55738058080897,182.99592649098486,182.40609645890072,181.89246490085497,181.3055951804854,180.51593155506998,180.05363388732076,180.6712168334052,180.74830657616258,180.24809118406847,179.2786005269736,178.89579945849255,179.183695491869,179.4815384191461,179.93337793415412,179.61346094682813,179.614976267796,179.21713776653633,179.9946279679425,179.62278354307637,179.41811728430912,179.29404258541763,179.50322613446042,179.25425524497405,178.60522104240954,178.3575735418126,178.78482392337173,178.470787208993,178.18490351736546,177.82240694388747,177.84030687529594,177.72895538806915,178.52631396986544,178.56985294399783,178.3023296785541,177.32264599343762,176.83670979179442,177.1903807898052,177.4693673173897,176.48973979242146,175.9727269364521,176.4444091184996,176.33361379336566,176.92190893972293,177.14136420702562,177.5262370412238,178.15054490463808,178.27425831230357,178.42894043726847,177.74365732027218,178.5639849868603,178.27997855143622,177.77065118029714,178.172299108468,177.70327631291002,178.68752716574818,177.96336491731927,178.90838387887925,178.09763801656663,177.43425491917878,178.41342994198203,177.51023230934516,178.09616305213422,177.47130415216088,177.50688591506332,177.35402058297768,177.67170238588005,177.54069325793535,176.83019301155582,177.06050933804363,176.11061131674796,175.99320085532963,175.03493214817718,175.69049580255523,175.18840485159308,175.8584970724769,176.74012720910832,175.96805765805766,175.4444031813182,175.28529529972002,176.19244186393917,176.73627585172653,176.70217032264918,177.17872819351032,177.1729194414802,177.10573323862627,177.65827117627487,176.68169446941465,177.17948449403048,177.4633392924443,176.635232698638,177.33292671851814,177.83863143948838,177.25194868724793,176.6708873049356,175.7551707890816,176.5234227660112,177.0713115525432,177.74655155139044,178.2350668674335,177.71685511479154,177.81566814845428,178.11370875360444,178.45844209799543,179.35681524127722,179.1093309991993,179.54814456170425,179.4463321696967,178.69985130429268,179.15849365852773,178.67134247580543,177.76178759289905,176.96504647145048,176.8274409896694,177.6403905665502,176.88916642218828,177.84866023715585,178.35160374408588,178.69974301289767,179.49772774474695,179.01524291466922,179.58565332833678,179.58827689429745,180.06899190694094,179.1469386764802,178.81831810297444,178.34518118249252,177.8804741082713,177.47972608171403,176.67490915907547,177.02743881056085,177.107147322502,177.38610334554687,178.15033525694162,178.65216699196026,178.30446434114128,178.62707137782127,178.945004273206,179.5481930198148,179.58299984317273,179.4503562906757,179.46917896997184,180.33618450770155,181.0472040954046,180.53059470653534,181.38269388582557,182.15618713991717,182.36944496631622,182.62613972928375,182.51838907366619,181.93688172334805,181.8047969029285,181.0685693267733,180.23120134929195,181.0315055618994,181.8887558071874,182.05003145337105,181.26294957194477,180.73912904085591,180.58731973031536,181.50758454669267,180.749258373864,181.01748258247972,181.9718058668077,181.22749992227182,180.6152004203759,179.78013162314892,178.90479088807479,179.15055767819285,179.17445449344814,178.96971651166677,178.05621988791972,177.92329624621198,178.8992880997248,179.72203625366092,179.56825201492757,179.70205103931949,179.4377111978829,179.0361877833493,179.27957313787192,179.69715109700337,180.4608626049012,179.63788511790335,179.81506761396304,178.92370207142085,178.90218765102327,179.12925804872066,179.96443109214306,179.83825719030574,180.38767854403704,180.3840423473157,181.188918617554,181.37883908627555,181.7381548783742,182.3267710809596,182.27353140711784,181.29686933523044,180.86770552955568,181.70730368373916,181.62228499585763,180.62778915837407,179.76361001189798,179.8907237588428,179.08591408841312,178.37483291421086,177.55851482599974,178.47026007808745,178.827606392093,178.15926723135635,177.7602111240849,177.03501136647537,177.92944084759802,177.2490793489851,177.96768220048398,177.17306544911116,176.97044166410342,177.06529262149706,176.42072529299185,175.59749355260283,176.51095719262958,176.400527223479,177.00659392680973,176.36486901482567,176.34634766774252,176.41888842266053,175.80843558348715,176.72348517971113,176.80360182886943,177.25956511124969,176.4038350856863,176.74773767450824,176.5186042492278,175.81522208731622,175.20624635042623,175.5274282139726,174.85616848105565,174.4901526272297,173.52198494924232,173.3531476603821,173.2061457755044,173.88170353369787,172.96627792017534,173.5371956997551,172.76071048341691,171.91885929415002,172.19723537936807,173.10450887167826,173.6419640216045,174.34867149638012,174.29314781725407,175.24385598069057,175.35212727123871,175.9984085247852,175.67398855043575,175.1973164472729,175.66197489853948,176.19369011744857,176.91875459766015,175.97726353583857,175.23552209651098,175.3314141719602,175.89191838074476,176.83302340796217,176.840257902164,175.99673820240423,175.49102180916816,176.2623535799794,177.04095515608788,177.91877752309665,178.3121816101484,178.5914684049785,177.68379443883896,177.5819403952919,177.46768288919702,177.80404315376654,177.03210297273472,176.62380052823573,176.1848904308863,175.26206297054887,175.48674128344283,175.94442342408001,175.2912789103575,175.68378275772557,175.76805061567575,175.96200843621045,175.61192686948925,176.4584548752755,175.99188854265958,176.92947045573965,176.42786800395697,175.61187997832894,174.67966694012284,174.0215259124525,174.2246478823945,173.76158090634272,173.46856464166194,173.23187554813921,172.3106774073094,171.7683149781078,172.28025868628174,171.62899346230552,170.7823484884575,170.73923231614754,171.35197548102587,171.45467534055933,171.84387955907732,172.10232428787276,172.99124873103574,172.20114934351295,173.10439268732443,172.89782449183986,173.21005796454847,173.55266338819638,173.02678586775437,173.14996733423322,172.96272862609476,172.82045905198902,173.25352504197508,174.02711177943274,173.93964389059693,174.1021077549085,173.87462830916047,173.41094909934327,173.03144578123465,173.27521244203672,173.20505372202024,172.8191980062984,172.92782164551318,173.2870262027718,173.03768702596426,173.56565185636282,174.3844844698906,174.53659891476855,173.94471149519086,174.213349734433,173.6122505995445,174.4667611643672,173.5928838616237,173.91861260589212,173.2911874470301,172.5104282698594,172.25606434978545,171.38461792981252,171.92114976979792,171.70854939427227,171.95231271348894,172.0701382192783,172.06255906214938,172.64628742961213,172.61988688725978,172.20445105200633,173.10407598689198,172.2689134790562,171.6934474017471,172.19877937156707,172.41894266195595,171.7541284216568,171.03379679238424,170.35923396470025,170.1414809031412,170.4907266497612,171.02852376084775,171.04922837857157,170.2966560353525,170.3272783732973,170.44145274860784,170.2083196635358,169.90385522693396,170.3514406788163,170.54926915746182,170.73182761855423,170.26187224453315,171.03534494526684,171.67344987718388,171.91921364003792,172.43529564794153,173.40732651622966,172.89040559669957,173.13871323829517,173.98670256184414,173.9431443423964,173.4319207011722,172.97843700647354,172.45631540799513,172.91755614429712,172.9756166227162,172.0520990435034,171.14034081995487,171.88486531795934,172.66786331962794,172.01705171912909,172.74444509437308,173.7273080404848,174.4849052899517,174.8531888546422,173.88865651655942,174.30703421402723,175.2967312396504,174.60383807867765,175.47594147687778,175.8471007840708,175.44423760613427,174.59570385701954,174.69430900737643,175.0112781766802,175.11737411702052,175.3521797140129,175.9003538689576,175.58402468869463,174.6819305079989,175.1929895686917,175.4442263515666,175.26452639186755,175.53814507368952,174.68607119191438,175.47684344183654,175.1881820661947,174.66776141989976,175.4068223531358,175.18410596391186,175.65300287585706,175.09764586901292,175.00676058977842,175.3224467630498,174.86968895513564,175.33099544420838,175.79732522554696,175.55689307441935,175.41543007595465,175.372048814781,174.58770410483703,174.54674841370434,175.30491551337764,174.8755066022277,174.73776329495013,174.4546388257295,175.00142562715337,175.09548119455576,175.17540775611997,175.14141387632117,174.46273064939305,174.94518610276282,175.3140478497371,174.49674213398248,173.60558364819735,172.7991215432994,172.99210181832314,172.70285385567695,171.84387045400217,171.2829353599809,171.6826712479815,171.07687087915838,171.9502315740101,171.27618753584102,170.40392919257283,169.5192753248848,170.08427760889754,170.04134003072977,170.5698742279783,170.15126695344225,170.97480876324698,170.0451312554069,169.50867497129366,169.8008783487603,170.11560213798657,169.97834126930684,169.67458024807274,170.6630733483471,171.58681036997586,172.2877214741893,173.0758174750954,172.6812324305065,172.5435417154804,171.5529254982248,171.54928599484265,171.1650315974839,171.5397643307224,171.95214145025238,172.52524940203875,172.64904208201915,171.7283311970532,171.77451467420906,172.09600525069982,171.85634284792468,170.97624824987724,171.58420975413173,170.64398991921917,171.2282149787061,171.8776566828601,171.1603439343162,171.51823975890875,171.34709576843306,172.15352927474305,173.1005830829963,172.9666815502569,173.20612138696015,173.77288633724675,174.31490147812292,173.35567021695897,173.74713774537668,174.7064870079048,174.41176653746516,173.73810070194304,173.6718270033598,172.91036166856065,173.33575127180666,173.09935298236087,173.50831756740808,172.90098613966256,172.7802284900099,172.58018825761974,172.08335763635114,172.64981454843655,171.93519137613475,171.8956790980883,172.72306055296212,172.5356840803288,172.00325985625386,172.826212849468,172.70966040017083,172.4429944595322,172.29049757448956,172.62982688192278,172.7151305815205,172.4132774118334,173.3135606572032,173.91190053103492,174.44177126372233,173.7948128762655,173.2222788343206,172.3213547775522,171.7018695641309,171.2388491462916,171.04539758479223,172.0010410998948,172.8643936701119,172.42826159205288,173.19426470529288,173.57943533966318,174.3678460335359,173.7475167098455,174.37764824694023,174.64583953889087,173.92992236744612,173.34655568096787,173.4670214774087,172.56078950036317,172.97296047816053,173.4393241815269,174.37599745439366,174.97550184093416,175.66174288466573,175.21606535837054,174.6806821585633,174.58877662662417,174.14643012546003,173.62993837473914,174.28459578659385,174.96172050526366,174.87966664228588,174.64584954455495,173.76911140605807,174.112563832663,174.63820957532153,173.8808864550665,174.35708416253328,174.0936608738266,173.96915121749043,174.24387248791754,174.8044702480547,175.24818217987195,176.12638607807457,175.72673814091831,175.98371473886073,175.9020478622988,175.9677480761893,175.44885602453724,176.3891700883396,176.6169463498518,176.74876602832228,177.21884810598567,177.90623604971915,177.8036732203327,176.8143334290944,175.95705388486385,176.7842004741542,177.37405057344586,177.75560916913673,177.79430870665237,177.83247764687985,177.32231870107353,177.39124626852572,177.27600391255692,176.71749043324962,177.50991075020283,178.29180654557422,178.15631939470768,177.34301581280306,178.32075349614024,179.03885216079652,179.54456478450447,178.59383806213737,179.05737856030464,178.54311403632164,177.80421280954033,178.4696198767051,178.55066287470981,178.24833376705647,178.78048818558455,179.33742419769987,178.6913779405877,179.31763623235747,180.30276200175285,181.17975618876517,180.7171184765175,181.5651475014165,182.05548131652176,181.39896442135796,181.008185507264,181.17418758710846,181.53689876245335,182.27057903259993,183.20595380011946,182.9370161513798,182.37780898343772,181.38952241139486,181.9733490734361,181.44455428468063,182.39253740152344,182.0616881758906,182.56401808233932,183.33032312151045,184.0456009367481,184.29507016437128,184.99733551964164,185.94152050605044,185.00071891071275,185.64993236912414,184.92997219227254,185.2325144871138,184.7622510427609,184.99944194685668,185.77869869815186,185.75284998258576,185.66879716608673,186.28208104055375,185.39309626771137,184.7274428573437,184.23022392205894,183.91725765215233,184.56830617738888,185.2124207392335,186.0789737245068,186.10810589883476,185.26176126627252,184.62953606247902,185.19884549966082,185.39919326268137,184.62373102921993,184.52603576006368,184.42453942773864,184.5925700534135,184.2744978349656,183.60028022993356,184.48732660291716,183.98152972757816,183.13425026554614,183.66027337918058,183.37238141801208,182.39124060980976,182.1443741666153,182.8410096769221,181.90616432437673,182.30083995731547,181.9632187183015,181.0892449133098,181.78108459571376,181.56206560134888,181.79886065796018,180.9867675458081,181.61981977242976,181.65399751113728,181.98684633756056,181.60499738669023,180.92819946119562,179.93700183276087,180.03521446045488,180.29996034456417,179.58935435209423,179.4534835885279,178.54281758097932,177.71999259339646,177.63942970708013,178.04904367774725,178.1281844638288,178.63105860864744,179.48349370853975,178.54080527368933,178.34878176636994,179.28441947698593,178.85409640101716,177.8740087626502,178.1380437500775,179.09334041643888,178.6036153663881,177.6090014022775,177.29254149179906,177.45485472446308,177.242069831118,177.43848166428506,177.5840524090454,177.29778420645744,178.0916199563071,178.39609329635277,177.6469852454029,177.21210675220937,177.91256322478876,178.72276950906962,178.29270217614248,179.17776841530576,179.22734506148845,178.8531273296103,179.80186633951962,180.7131663695909,180.7871648594737,181.7864163061604,182.2931400858797,181.35160571709275,181.46977652795613,181.97762749856338,182.54808120941743,181.55531401280314,182.29616247024387,183.22159340325743,182.5480430033058,182.51138446386904,181.71444460190833,181.33355127321556,182.21126693906263,183.17455690493807,182.51108258403838,182.79036385798827,182.7180902394466,182.54493083851412,181.88603685284033,181.94338954240084,182.45696026924998,183.0047889673151,182.39689769223332,183.05464101443067,183.85460987966508,183.81995369726792,184.5016636843793,185.38905739365146,185.2130023627542,185.3253730116412,185.92389596346766,186.2355712945573,187.01833538757637,186.45255917450413,187.0627535157837,186.1923531824723,186.18593759974465,186.7468072976917,186.79189044702798,186.7205537459813,187.50270296167582,186.51414868282154,187.40239461837336,187.4917643526569,187.1470343247056,187.9104236382991,188.58764764433727,189.50354374526069,188.86816776869819,189.34512375760823,188.76625472446904,189.23908458277583,189.35786752775311,188.76501048076898,189.53229715442285,190.04927637334913,189.26901635574177,189.52945621404797,190.17025428730994,190.6979057500139,190.70497696101665,191.26103155408055,191.69400436244905,191.68724006414413,191.90079292096198,191.01494821114466,191.76893727574497,191.0513808047399,190.3050152217038,189.59719129372388,190.18200655234978,189.86758215678856,189.79750694008544,189.0228527635336,189.67279168125242,189.27212378196418,189.4808192937635,188.9916933067143,189.00214212108403,189.6092233164236,189.06341627566144,188.64561600005254,189.61750509450212,190.4823483224027,190.40649787103757,190.4796463395469,190.69776103505865,190.03224096959457,190.5239327014424,191.10873680654913,190.51457022782415,190.3428517379798,191.16326307458803,191.2292358027771,191.4105424657464,190.9709789743647,190.45213663764298,189.78837666241452,189.7061727596447,190.6721956077963,191.45136924879625,190.6497857319191,189.77491896413267,190.32815705006942,190.3895329674706,190.27251353207976,189.6317493119277,189.76686498476192,189.0536352484487,188.45310825109482,187.75650901300833,188.59894210286438,189.51217238185927,189.1680912231095,188.17956250580028,188.40165346115828,188.09363927831873,187.37146846437827,187.35142623307183,188.0896567562595,188.35253847483546,187.86593031091616,186.96909235138446,187.324297407642,187.78933254955336,188.22558970563114,189.11632162658498,189.68548483541235,188.87525970395654,189.34579754341394,188.4381192405708,187.43935556756333,187.86429874692112,187.33108360506594,187.21361351991072,186.40106006665155,187.12850140500814,187.02126939035952,186.06692862138152,186.28541400050744,186.7698867735453,187.123895667959,186.8773277932778,187.26421259203926,187.80546775879338,188.3255750979297,187.71437253430486,187.32791158976033,187.5915581677109,186.65290430560708,186.1301286406815,186.24714895198122,185.53704917198047,185.70904597919434,186.34848094172776,186.76487729232758,186.29431825736538,186.77329852199182,187.46927252737805,188.4012355976738,188.21213146904483,187.28318034950644,187.60038459766656,186.8015467026271,186.56284997053444,186.0888977306895,186.75974745722488,187.1493517914787,187.1534132938832,187.94526372896507,188.55159896751866,187.9633591370657,187.95979194296524,187.19384096143767,187.62871771352366,186.66603060113266,187.4197246399708,186.74548460822552,186.30198994465172,185.9648065622896,186.05695172026753,186.62123214779422,186.93486189562827,187.53413773328066,188.23465243168175,189.12288365978748,188.41420250106603,187.44637480704114,186.46660501742736,186.31081252591684,187.18439379055053,187.05316890683025,187.03226554160938,186.93176232185215,187.06970991706476,186.3508698735386,187.03506233170629,186.849981745705,186.8642852413468,186.5753317172639,186.27154716895893,185.73240633588284,186.25913848681375,185.91515909833834,185.116733757779,184.53183485614136,183.76332030491903,182.943214236293,183.62757708644494,184.3977867886424,184.17807666026056,183.60821575671434,183.1035236925818,183.18149671843275,182.7230738592334,181.96802291134372,182.69529613340273,183.29406730132177,183.35052220663056,183.5897624483332,183.26050437707454,183.34850638266653,183.1981673790142,182.71498912665993,182.1108585903421,182.09186424408108,181.37493301276118,180.48549157427624,179.72674979967996,179.74930515419692,180.18935802439228,180.57117670122534,181.380010351073,182.23646387737244,183.10753620276228,183.9013953935355,183.32381238834932,184.28618517098948,184.5251457495615,183.94904883299023,184.75130579434335,185.30542591260746,185.14581775525585,185.00310347555205,184.15079683391377,183.9369001518935,183.12277023075148,182.78635114617646,183.74935695761815,183.86254880251363,184.12031029257923,183.93056778842583,184.7434448641725,185.60704887937754,184.71503840433434,185.17764187138528,184.46260238392279,185.025186880026,184.70723333023489,185.0326822521165,185.32115841889754,186.2344618421048,185.73944908380508,186.44115150161088,185.71259090164676,184.9546485436149,185.4720539120026,186.0460984571837,185.88025537133217,186.48711484624073,186.58949844166636,185.5970317972824,185.66269831126556,186.05329693155363,185.4118550834246,185.952787080314,186.14622689317912,186.67843827279285,187.09092104062438,186.83887422923,187.5473464494571,187.0769113576971,186.1817939854227,186.4714981089346,185.5769030386582,185.9124892023392,186.71425626752898,186.85519264033064,187.17412678478286,187.92369930865243,188.45534928515553,187.57809193246067,188.16189902462065,188.23660025792196,188.2485002153553,189.13776494842023,188.50144401192665,188.0262348256074,187.41822105785832,187.25588546367362,186.2846846957691,185.4189966833219,184.76952237496153,184.36113220266998,185.30363040464,185.09549684310332,185.04917959915474,184.7103021228686,185.10808607377112,184.8374035479501,184.6327039366588,183.6559300883673,182.75662365788594,182.5198503760621,183.2208246840164,182.63026484148577,181.6722209271975,181.37482837354764,180.9821339980699,181.81672801217064,182.44159583561122,181.74262345116585,182.05483104055747,181.9691502377391,182.0030623464845,182.09427755791694,181.80273549584672,181.01746175950393,180.504168481566,180.65096701541916,181.14310133643448,181.9442392392084,181.5364507799968,180.94059138419107,180.2573886285536,179.65354508394375,178.87397814216092,178.95171051332727,178.9597381646745,179.95582915237173,180.08962586941198,179.84062660252675,180.30790345882997,181.1339606824331,180.14567298442125,180.7491946350783,180.49882594542578,179.6104121953249,178.80834185238928,178.08520575752482,178.48148638289422,179.35631111310795,180.0062435027212,179.41559728980064,179.77668020129204,179.36294206883758,178.64323055464774,178.02597399707884,177.87463712645695,177.6741296821274,177.21787118259817,176.30089249741286,177.1538681103848,176.72730892756954,176.7956166807562,176.48472379893064,177.23801676696166,176.3403653362766,175.8633977524005,176.10879748687148,176.70414483593777,177.53070082282647,178.26573275309056,177.97069394448772,178.0134699391201,178.7153806341812,177.9620306813158,178.41885870089754,178.90276550501585,178.65205479087308,177.82403749926016,177.9119380498305,178.24309358745813,177.2483773138374,177.24136238684878,176.99039375316352,176.4621080099605,175.48583871964365,174.91959357168525,174.64093008823693,175.5567398914136,174.76878435723484,173.97143419785425,173.86375655187294,174.29803359601647,173.83045927993953,173.18815737729892,173.40172439534217,173.28007954265922,172.9826688929461,172.73087977990508,173.2410961636342,173.12087268568575,172.62178884027526,172.71002178406343,173.13824603613466,172.60723734274507,172.8556922050193,172.5179309588857,172.56724209757522,172.6998792719096,172.79173236712813,172.78935418231413,173.30796438734978,173.04727323912084,173.052128598094,173.47517522796988,174.10128999641165,174.15803845552728,174.77859235322103,174.07126096868888,174.08855327777565,174.12934142258018,174.9753467165865,175.53418970573694,174.7573436629027,174.00231581972912,173.0771301672794,173.35775438230485,173.94284104695544,174.0052125635557,174.48724111402407,174.6525523243472,175.3537483937107,176.26076187565923,176.85587187390774,176.5001654108055,175.7775693014264,175.33780208742246,174.46356035768986,173.58224036032334,173.00244552874938,173.52054566564038,173.07063952554017,173.4773157625459,173.22468242049217,172.96481085987762,172.7166346674785,171.98384695593268,171.97438972396776,171.9772416073829,172.26074009621516,171.4607252473943,171.70084434887394,170.97698536189273,171.7330023283139,170.75277832336724,170.34998439904302,170.75720165949315,171.38199944188818,170.78895907988772,170.1155393216759,169.6987668890506,169.274977682624,170.1817256687209,170.22841427475214,169.80896840803325,169.62915599578992,169.2155492096208,169.53698523622006,170.05978206684813,170.3797489758581,170.35221849754453,169.37187639577314,168.6358751100488,168.00132540939376,168.1021621208638,169.01409891340882,169.34447433799505,169.83612129930407,170.43537103105336,170.1510333842598,171.1262369127944,172.1230009016581,172.0574378944002,171.24060383625329,170.5332550718449,170.6865104008466,169.90832817694172,169.52030980680138,169.44667127588764,170.21565722022206,169.58679806720465,169.24473665188998,169.59415029967204,168.91444505844265,169.63944106409326,169.49507732642815,169.58319271169603,169.67922444595024,169.62604466220364,170.4952879822813,170.3626087559387,170.40086360508576,171.26535886805505,171.41748430998996,171.4649851131253,170.5924121439457,170.25814830558375,171.17577440710738,171.51407806342468,170.8238985692151,171.51162149803713,171.18771894229576,171.65235097659752,171.53731945669279,172.38622805802152,172.79458888527006,173.13255420327187,172.3231216459535,173.29791265074164,172.7953381757252,173.6955886366777,172.93781074276194,173.63133000116795,172.99809737829491,173.83611853653565,173.42584135383368,173.8400160316378,173.93157498259097,174.91324462043121,175.07970283506438,175.8893920890987,176.74703470710665,177.42916903924197,177.78830015426502,177.12555304542184,176.42894171504304,175.7640282693319,175.39857494505122,174.59880233136937,174.3880008198321,175.21373363770545,174.4104430526495,173.481138037052,174.0943879247643,173.87817227607593,174.35739826364443,174.06214903574437,173.22614400228485,173.03894951054826,172.3669253368862,172.88753850897774,172.137055659201,172.01430851360783,171.92736326623708,171.21496884711087,170.3959227814339,169.74447735771537,169.54646261082962,170.45838543074206,169.80065925046802,169.1656994940713,168.63901520660147,167.67470839014277,168.63779671117663,169.19210114888847,169.35881060454994,170.13204000052065,170.29088093573228,170.7393142846413,170.99124015774578,171.8627171833068,171.86653991695493,171.70097011700273,171.6037726183422,171.51830073958263,171.97080706246197,172.2737153065391,172.66135844029486,172.8349068025127,172.99939760705456,173.36687276838347,173.1871402687393,172.42767227254808,171.6709887930192,170.8929278650321,169.92194830439985,169.83905698545277,169.35358739783987,168.98496136814356,169.73372462578118,170.40818525943905,171.37773156072944,171.74802771629766,172.35977326892316,172.76195784285665,172.93177007883787,172.26402298780158,172.1716461549513,171.50707480544224,170.90644765552133,170.01467985333875,169.27105804067105,168.86802870919928,168.80949860345572,168.97711237939075,168.56267683999613,168.5986868138425,167.7505065286532,167.9458093373105,167.42576322099194,168.27223807852715,168.48420365760103,167.79862669017166,167.47020301502198,166.98625074885786,166.55465316213667,166.30252990918234,166.89137471932918,166.1309605902061,165.95848240004852,165.739010556601,165.285839646589,165.01284609595314,165.6267699575983,165.8939977036789,166.41192974708974,167.03034246060997,167.63656125683337,168.42172174481675,169.24462654767558,169.3177314316854,168.56916530337185,169.37918822839856,169.2923011695966,168.752576792147,169.62203841796145,170.41781532764435,170.90257739182562,170.74816959025338,170.65678191231564,169.82585965655744,169.05462084710598,168.70090117724612,169.33511468628421,169.62295700004324,170.5992149412632,170.95533009478822,170.99857824342325,170.29159998055547,170.81770902732387,170.09304822282866,170.86210205359384,171.71614367887378,170.93864928884432,171.84167565591633,171.8094637421891,171.2872709427029,171.87879347614944,172.49234335310757,171.7474002512172,172.00692310463637,171.91516289114952,172.40626328717917,171.714396443218,170.73675737297162,170.6919887526892,170.83746643178165,170.4759073406458,171.42264868319035,172.3467184174806,172.11921725189313,172.17316455440596,173.02374152466655,173.1401815409772,173.25006204936653,172.51229542540386,171.5837407577783,171.26479311473668,171.37679741112515,171.45270498888567,171.3851782027632,171.8395215892233,171.16995981195942,171.71928075002506,171.17773392610252,171.90249219583347,172.1920372163877,172.71920031215996,173.61153368046507,174.09656243445352,173.6417300836183,173.61010389681906,174.08498798310757,173.57112823147327,174.24016207642853,174.40642831660807,174.71988854324445,174.5063269897364,173.85888065723702,173.45881310245022,173.1165166371502,173.7240080628544,173.0616203090176,173.95769383292645,174.5030409670435,174.5730596948415,175.29362032702193,174.62452325224876,175.4952638875693,174.77670360449702,174.18808145076036,173.83417887613177,174.29616083297879,174.56466878950596,175.3601386155933,175.06940855737776,175.53876440227032,174.8891550968401,173.91453835507855,174.21876661200076,174.21239704592153,174.08079728251323,174.0285371914506,173.62415378028527,174.07834892487153,174.28744515636936,173.8719647768885,173.70225862739608,173.2107587773353,172.89496837370098,172.91149507835507,173.50408581271768,172.64822956779972,172.37822556169704,171.7505562803708,171.79122630972415,172.64925932511687,173.42899664258584,173.73365457169712,174.12748633977026,173.83494058065116,174.2393548055552,174.9192790952511,175.56572567904368,176.02339104935527,175.32440828345716,175.84294648701325,175.94674575561658,175.605182135012,176.5932953702286,176.68817447405308,177.48946685669944,177.02527277776971,176.075332459528,175.99084946606308,176.8616564180702,176.34393130941316,176.2554378961213,177.03826776286587,177.69706897530705,177.82293929718435,177.64613472484052,176.9790300852619,176.3257975941524,177.0449150633067,176.31474945228547,176.279003651347,175.74028134020045,174.93243511812761,175.13885877048597,175.41757054720074,175.10962489480153,174.40914591029286,174.67866165889427,174.40822455706075,174.48604623693973,174.78357369080186,175.5203300821595,175.04178143572062,174.04376641334966,173.42541153589264,173.3149691587314,172.60925249941647,172.03816999541596,171.6074152532965,170.87479908717796,170.24376839306206,170.3902298263274,170.73756851488724,170.23128383234143,169.49957655742764,170.3127014595084,171.0157041377388,171.10707332147285,171.2433221261017,171.52368430234492,171.41314190113917,171.44102291064337,171.03175412584096,170.71438065776601,170.84816876566038,170.09930659318343,170.3920286167413,170.81981041608378,170.98658833373338,171.81509191868827,172.78207936510444,172.49072068976238,172.7079859552905,173.31605534814298,172.69780923053622,172.37868852261454,172.26959537668154,171.93051630537957,172.0971911153756,171.50606832141057,170.58378964662552,170.85572826582938,171.77632860420272,172.3097818796523,173.0807713009417,173.2100095897913,173.15896563511342,172.67668905481696,172.15448608761653,171.82824360905215,171.68440774362534,171.5169655275531,171.9509105272591,171.4551681629382,171.57638635393232,172.12329673627391,172.07039835024625,171.10053230077028,170.43603759724647,170.31438106298447,170.4992856811732,170.45338133955374,171.20269476762041,171.49449191708118,171.8065315564163,171.527505279053,172.2849057391286,172.73488304577768,172.53741123341024,173.2483420148492,172.74622330488637,172.86970379343256,172.56517915986478,173.39767856197432,172.55838516866788,171.77600671211258,172.57142647448927,171.70286577148363,172.29997585667297,173.28864011261612,173.55794966686517,173.50024860119447,173.0878800842911,173.3209536569193,173.21013273857534,172.66661262884736,173.45140959136188,172.76426479779184,173.33779470110312,173.47543441178277,174.2395751271397,174.53792886901647,175.47754910262302,175.17401737114415,174.78406380861998,174.1203636904247,174.7645843261853,175.64104981068522,175.75160911213607,175.29167992295697,174.712319068145,175.32581314444542,174.36491324193776,174.52764378208667,175.19748550327495,174.41797899780795,174.70792361022905,174.48955725179985,175.30185606284067,174.86627569515258,174.13188449852169,174.85826300969347,175.08014451386407,175.78070431854576,176.13159843022004,176.6639758385718,177.51958664739504,177.38491373276338,177.54195650992915,178.14237729180604,177.95436277147382,177.32872069766745,176.77166754752398,176.36156541109085,175.9114168388769,175.93489877134562,174.9891256969422,174.4188159168698,174.27825050381944,173.71276925457641,173.2831443506293,173.5447475174442,172.7287271693349,172.39479752955958,172.27578689577058,172.7720574666746,173.3232052703388,172.80331215960905,172.05169227626175,171.93203829508275,171.47400063928217,170.86171880364418,170.66285781841725,171.33045902429149,171.05636690137908,171.7460042242892,171.88936741324142,171.2906716056168,171.57960169762373,171.75563357863575,171.94437547260895,171.2555912057869,172.00088766682893,171.50875485874712,170.93299325555563,170.98992764996365,171.7019548183307,171.2177401459776,171.1487323762849,170.7750103319995,169.90737771289423,169.46539543475956,168.56358112674206,168.77608668571338,169.72877495316789,170.1463180752471,170.03029039874673,170.62209342652932,170.776225999929,171.2549419174902,171.306571891997,170.84831364871934,170.8665198041126,171.5699918740429,172.052395359613,171.11369006475434,171.1211421941407,170.64545754063874,170.0656133927405,169.50498118717223,169.77017837250605,170.63978327950463,170.18967403192073,171.04164826544002,170.38586362125352,170.55680394079536,170.9375138930045,171.6296191792935,172.2932524322532,173.0681626922451,172.72853813599795,172.4004291924648,172.7127077835612,173.46941744349897,173.0382721615024,172.28106162557378,172.27837987570092,171.85003352118656,171.63015987118706,172.13000819971785,171.2589743467979,171.5495046316646,170.70117792952806,170.4016788857989,169.42834410304204,168.90637113479897,169.227655839175,168.82607634970918,169.49486435716972,169.4522802126594,170.2304212790914,170.8910201434046,171.11472313199192,170.44500015396625,170.44723070925102,170.96524441055954,171.37106426339597,172.2073262813501,172.87503589503467,173.83817671053112,172.98792015155777,173.054950916674,172.7810984305106,173.0615180558525,173.14975263364613,172.65062308358029,173.19044197211042,172.92513821274042,173.55806735996157,173.1302249711007,172.2694999477826,173.1559577784501,173.48320645326748,172.52139007672668,173.06485370593145,173.1637754458934,172.67896480672061,172.41931492462754,173.3664110423997,173.64154026843607,174.40055017219856,174.97042382182553,174.44042517850175,175.1861302233301,174.59840843174607,174.60460756905377,174.91812726669014,174.5860719573684,174.17455087788403,174.16377841262147,174.82144699897617,174.29807538259774,173.81026370916516,173.90140565950423,173.61053431918845,173.17347248457372,173.22131697135046,172.89354825252667,172.03036588151008,172.97258318401873,173.54403239721432,173.7286157719791,173.6756249750033,173.52304667886347,174.3695076731965,174.33706327807158,173.89561555953696,172.98706325003877,173.79450502060354,174.17789296340197,174.4216632102616,173.9084653975442,173.94943934492767,173.9728547334671,173.28335116710514,172.65708541870117,173.53030001278967,172.87221870431677,172.91244519734755,172.39053970947862,171.96521016117185,172.0035317740403,171.95824725087732,172.87203790666535,172.2320712110959,171.29965141694993,172.0153996506706,171.19627259578556,171.79583740374073,172.68081187363714,172.970921382308,172.13923991983756,171.68992194300517,171.630785881076,172.46641692193225,171.94745858339593,171.25875524897128,171.02740449924022,170.23266562540084,169.8163588247262,169.10933953011408,169.14973799604923,168.6777945170179,167.8709141924046,167.56169947516173,168.1865053186193,168.21210484486073,169.0796396206133,168.38386879954487,169.26058957865462,169.6770489732735,170.59338699653745,170.83244967786595,170.5934735806659,171.46487901126966,171.62515299394727,172.1987023721449,171.21271260734648,171.88237175391987,171.55011749826372,171.88961780490354,172.7130293464288,173.3929018736817,172.76049604499713,173.4033553325571,172.51283265650272,171.69772103754804,171.51220282679424,170.724265886005,171.45186066441238,171.11045834701508,171.920568741858,172.62128159264103,172.689377699513,173.53470944147557,172.9855947890319,172.971957300324,172.71970106987283,173.20456517441198,172.89207452209666,172.0868701520376,171.66758488537744,171.4062421717681,171.03033095551655,170.89268704969436,171.23139319755137,171.48773682536557,171.4738513045013,171.95874269260094,172.7256211610511,173.5072795767337,174.37421082798392,173.96552506275475,173.09385137772188,172.45001854607835,173.02462766505778,172.61761479172856,172.34473687130958,171.99267004430294,171.67695373250172,172.1526926397346,172.90236336179078,172.98337114648893,173.16771362768486,172.68201609468088,171.87129580555484,172.60476576397195,172.8515346199274,172.10584192955866,173.06802537618205,173.26766481809318,174.17255267314613,173.5272616678849,174.3353515760973,174.1247838032432,174.11112382868305,174.04299412388355,173.65286789741367,174.63617566460744,174.55154476920143,174.44748565088958,175.1906262943521,175.24199285171926,175.436887037009,175.19154876563698,174.6777810100466,175.03444927977398,175.69226469146088,174.70742472587153,173.96916001010686,173.19630782166496,172.58959061885253,172.5431002737023,171.6294867126271,171.24943362595513,171.69081229297444,171.09877510229126,170.3883021166548,170.4712051912211,169.6358612291515,168.70200863247737,168.60545735200867,168.5369758666493,168.77710025385022,169.3483869638294,168.9781973483041,168.54038131423295,168.06060991436243,167.12472257111222,166.18549274886027,167.01963608292863,166.50821411190554,166.67918719630688,167.16778182331473,168.00337253510952,168.58415830228478,167.73696736432612,167.71895422041416,167.352561396081,166.8016030304134,167.0722554945387,167.81844587111846,168.76152419112623,168.98487700894475,168.55735650332645,168.919688642025,168.11513896705583,168.82071819948032,167.88259098120034,168.23136347858235,168.11887007812038,167.2923547695391,167.47281468380243,168.0407439963892,167.4272792711854,166.79110651975498,166.37907768134028,166.68926764652133,166.67802352830768,166.3186188270338,165.39073526486754,165.1078010443598,164.58633521851152,165.2260198178701,165.38109990768135,164.3901098947972,165.205105047673,165.1644812268205,165.1879805144854,165.80804179934785,165.70429518911988,165.18947038426995,164.6944118612446,165.5116709470749,164.86857747659087,164.11194823589176,163.87639144062996,163.67120497534052,163.30317271593958,162.720244362019,162.86786934640259,162.11627433588728,163.04665385186672,163.5991348931566,163.35659419372678,162.60686255898327,162.6210463969037,162.4398887725547,163.3333105482161,162.80187745764852,161.9031778536737,162.66358789429069,161.75966875068843,161.90712744370103,161.93339794920757,161.23078976385295,161.63114256970584,162.3236698228866,161.7880771337077,161.44184095226228,160.69136598147452,161.12052489630878,160.63504748325795,160.24116944521666,159.7655560206622,159.67513961344957,160.46938225952908,161.12863774690777,161.74997422704473,162.67179782735184,163.57092414284125,164.43842031015083,164.30894191144034,163.9402937204577,163.37132773781195,163.48475108621642,164.01517500542104,164.4426807933487,165.16059174761176,165.41512390691787,165.5610065292567,164.64605847094208,165.12315119383857,164.23004680359736,164.01738160056993,164.4514993620105,164.57153776474297,165.3185030198656,164.48954413831234,165.0454041971825,164.94055637298152,165.7092572110705,165.76644531451166,164.86083978274837,164.59351602289826,164.31764842383564,163.46129539934918,162.536283579655,161.8308875351213,162.7556790835224,163.29117686999962,163.43287830986083,163.64063546946272,164.2732180110179,165.08747613197193,164.78050378058106,165.05401429207996,165.19107106374577,164.41500105848536,163.53603779152036,163.14078011270612,163.41808404773474,163.1203410453163,163.82595469569787,162.8832065546885,163.47084139706567,163.95248690852895,164.0421610577032,163.81261846190318,162.82312842272222,162.44479459524155,163.21241836622357,163.65591220278293,163.9321244135499,163.11735137086362,162.29664609534666,161.78664887929335,161.17123570200056,160.68197467597201,160.8046386563219,160.89507621107623,161.52457266673446,160.5305012082681,160.3060635747388,160.38153438689187,160.42094638803974,160.95177726075053,161.37526023201644,161.14816506393254,160.46639593830332,161.4566620006226,161.491454991512,161.9108806042932,161.3436366082169,160.4240701426752,160.3665477191098,160.54459432093427,161.1696915216744,162.04019108833745,162.13190521858633,161.96375782508403,161.6906383903697,162.56367042660713,162.7044773073867,163.58473445056006,163.56246643187478,163.3063105395995,163.41723300982267,162.6277734232135,163.50599852437153,163.84907807270065,163.64986459119245,162.74370970577002,162.8456654571928,162.21369414916262,162.8094641403295,162.535440872889,161.67728687496856,162.41486177919433,161.73661997308955,161.60709308134392,160.87167990859598,161.29185363743454,161.19412642205134,160.71476512681693,160.28183510899544,160.56334372702986,160.86598276533186,161.36218232428655,161.98612579051405,162.1594161777757,162.69375059381127,163.6026193415746,164.35952889360487,164.06006973329931,163.56270892219618,163.273878430482,162.67494121193886,163.1608230723068,162.23001318331808,162.859060108196,163.57731171976775,163.5497651747428,163.38662175880745,163.3673177305609,162.65539555298164,162.75758572481573,162.33325953036547,161.59923584666103,160.72560092341155,161.62034585652873,160.91508834064007,159.9450654303655,159.80755653697997,158.89730314118788,158.75416108360514,159.33997994987294,158.61713474197313,159.5328740440309,158.81626907316968,158.77731796028093,159.62368708476424,160.61904289666563,161.39425208885223,160.76305186748505,161.2342009670101,160.8649817048572,161.44335722876713,162.18732585804537,161.95838690921664,162.29245363315567,163.19431327050552,164.0694528236054,164.32348812837154,165.2574204695411,165.818182149902,166.36863625096157,165.941946642939,166.05813292693347,166.85419158125296,167.20627167262137,166.2978506758809,165.6200905200094,165.3980820858851,165.44252822874114,166.09876035293564,166.60900155780837,166.3382611144334,166.13951176824048,167.09350325679407,167.43648599321023,167.4662497858517,166.5958926049061,166.9291623472236,166.59125047223642,166.79106968874112,165.8560396740213,165.06536703696474,164.90267126541585,164.32010894455016,163.60890915291384,162.87623728392646,163.1638683900237,163.76783736981452,163.7788128843531,163.62143433839083,162.89061644254252,162.63808879768476,163.31582870241255,162.63512143865228,163.3373916898854,162.60009273840114,162.944900251925,163.7310110628605,163.73402218008414,163.79066390078515,163.51060268096626,163.0618371963501,162.6789694330655,163.26496478775516,162.9626925145276,162.30526636028662,161.56921687349677,161.6835363493301,162.29528986196965,162.37812908133492,162.396827171091,162.50107332412153,162.65500752115622,162.32211436936632,162.03064026124775,162.52019395167008,163.0721839349717,163.14311099704355,163.7342295651324,163.62550431722775,163.16045791562647,162.26508022705093,163.1898273541592,164.14426057925448,164.36777166137472,163.5659957169555,164.27672903891653,163.48288827110082,163.10120254475623,163.75700975675136,163.71139140753075,163.021787609905,163.79852660978213,164.5242822887376,164.6788651207462,165.43529805075377,166.1635713391006,165.41894348990172,166.05874139536172,166.9289073110558,167.50362012302503,167.91223065042868,168.18012492964044,167.66887095430866,167.72077301843092,168.03394462913275,168.74927369132638,168.00720182340592,168.95642834622413,169.79760246165097,170.73296117130667,169.90180370025337,169.63231776142493,168.83377373917028,168.6093476889655,168.7742974977009,168.1711177234538,168.6684177061543,168.66180112352595,168.66882851859555,168.55109310988337,167.910319800023,168.50347654800862,169.09081654902548,169.74019431928173,168.8215320929885,168.66098352940753,168.40686757536605,169.1376822493039,168.59585924539715,168.9371790997684,169.72355325426906,170.69826379278675,170.6635749512352,169.6933066053316,169.89701052522287,169.24049622984603,169.03855252405629,168.99406402511522,169.1285615595989,168.1358468271792,167.54145101970062,167.46647654520348,167.73922595009208,168.25553712900728,167.94291057018563,167.56725420197472,167.9694971460849,168.1851398544386,167.39474715199322,167.37067480105907,168.17761267814785,167.93567477399483,167.12061417195946,167.47155860392377,168.29664967115968,167.50434723030776,167.93305442016572,167.24529193062335,168.18895274819806,167.54171968158334,167.67461562203243,167.8217383674346,168.2778434883803,168.73738557752222,168.6344053791836,168.7312355497852,168.12922227056697,167.4400183269754,166.99581869412214,166.2491777986288,165.9153167977929,165.42621086724102,165.29150995239615,164.6802652203478,165.52946672495455,165.07619753992185,165.14055991638452,166.04350423719734,165.54220961872488,165.3952384646982,165.93415494728833,166.0192106361501,166.65139664290473,166.07644840329885,165.19937187805772,164.94326520431787,165.56319223809987,165.02764441026375,165.24881216604263,165.53299265401438,165.79535315884277,166.39754197280854,166.11893847258762,166.1493014525622,166.38839847734198,165.92500004172325,165.02468658518046,165.54045069310814,165.7902717278339,165.67211210075766,165.51606451207772,165.61993486993015,165.98228137474507,166.2482854151167,166.3117555435747,165.5580779868178,164.88548605469987,165.1419390309602,165.27205721382052,166.2554579861462,166.04856803640723,165.86575708026066,166.1345749311149,166.1931275879033,165.3235475490801,164.40861599054188,165.2996846609749,165.5495910923928,165.8619077806361,166.1292822160758,165.97059396188706,165.5289686168544,165.26053971983492,165.19263077527285,164.91034203767776,164.98076029634103,165.28496932145208,166.0034525762312,165.2117875693366,165.52048034407198,164.55648803990334,164.4741837917827,163.55584426643327,163.14445571694523,163.1305031538941,163.69618487125263,163.21119188331068,163.7951573804021,163.64252864476293,163.97789189592004,163.71755047468469,163.52140328241512,163.81645785272121,164.13626246154308,163.80582863418385,162.81621874170378,163.64294478483498,162.81413768185303,162.16526660788804,163.094417671673,162.7741545336321,162.99282686552033,162.90277856076136,162.5973821762018,162.306894317735,163.25007555633783,164.08075316715986,163.33795965835452,163.04339474160224,162.54895323188975,162.68254426587373,162.1912976759486,162.16788947256282,161.25353943929076,162.12994223460555,161.48026622040197,161.15946720913053,160.33734770072624,159.41837276425213,158.58268449176103,159.33811569958925,159.81249492010102,160.80866811750457,161.14189828466624,161.56342584174126,161.04958205623552,160.5542340655811,159.894635906443,160.57307353895158,159.73555482085794,159.27652355236933,159.3681721314788,159.36475026840344,159.9498164295219,160.2203766144812,161.02363930037245,161.28356533451006,161.63364385068417,161.77190194511786,161.0681108380668,160.76044577453285,160.6593322805129,161.57474602479488,161.9759931252338,162.19685113150626,162.77599587477744,161.8104341533035,161.38104551564902,161.97485667513683,161.8251757044345,162.73722401773557,162.0080469562672,162.39146464644,162.84865426132455,161.94486107164994,161.8875207901001,162.51082826033235,161.96890538698062,161.92380298720673,162.71505442401394,162.07678602682427,161.68143136659637,162.34588254615664,161.4166287793778,161.32523660361767,161.1074116048403,161.29370034951717,161.9121895506978,161.30371896084398,161.81105696130544,162.7892800872214,162.50616241106763,162.4530185693875,162.46944393822923,161.84779797913507,161.99205421609804,161.6181991850026,161.3234095829539,161.30689234705642,161.65247826697305,162.52423230512068,162.35853788256645,163.0149915665388,163.92242167331278,163.2047956069,162.86121547268704,162.2248417949304,162.3109105359763,162.35510725947097,161.5113564063795,160.99060620274395,160.38733673794195,160.70897090388462,160.144282550551,161.1228601881303,160.65125987492502,160.4909999659285,159.57609546883032,160.3949901596643,159.92802967270836,160.16794441407546,160.42428209166974,160.55857465183362,160.94875968946144,161.34062615362927,162.27035285858437,161.94194759521633,162.22106489306316,161.98904193099588,161.12192403245717,161.47047792049125,162.33833142463118,161.89784161187708,161.33854273334146,161.41343384142965,161.74445263994858,162.31096134893596,163.09534184308723,163.15276666730642,163.96362891886383,163.07382464315742,163.23659712448716,163.2192475637421,163.4144010366872,163.4553888584487,164.05401699384674,163.77357101114467,164.50742385722697,164.31206296617165,164.6071810903959,165.21276540495455,165.91990690445527,165.89368407521397,166.28513257484883,166.8615851397626,166.18349607707933,165.72985429083928,165.18077384121716,164.68710752297193,164.45037148240954,165.27096461039037,165.58469390310347,166.35967423161492,165.9725072281435,165.6657382515259,165.98816888825968,166.90404510730878,166.22091181809083,165.90085972845554,166.40812302194536,167.23475928930566,167.24116614833474,168.10369002912194,168.04537784913555,168.8403402660042,168.2326268213801,167.78217806341127,168.5971739506349,167.63311218004674,168.59839676041156,168.65905514219776,167.78844464896247,168.01373335625976,168.2197990049608,167.33083248417825,167.26417684927583,167.27708640042692,166.64303683955222,167.44662372209132,167.59313966799527,167.08799063879997,167.2891740393825,168.0980191710405,169.04274899838492,169.04432023409754,169.60763892251998,170.60313812457025,170.77228252682835,171.48331669159234,171.889701963868,172.67600678745657,171.96706379856914,171.23529548430815,170.78534720093012,171.39298764336854,170.45812384737656,170.13346945261583,170.6861865078099,171.36974874371663,171.7815344473347,170.79114185459912,170.66765723284334,171.47405463503674,172.0115840351209,171.42867395514622,171.82521082134917,172.80221526976675,172.3124430370517,173.24967462057248,172.91495660459623,172.84067740198225,172.15804073913023,172.88216488668695,171.9197770874016,172.13530135387555,171.86372312670574,172.22645516507328,171.61852153530344,172.02288053929806,172.99119469569996,172.77834609383717,173.71762752206996,173.1852541938424,172.42096670996398,171.81677256291732,172.41122855013236,173.2999115861021,173.04637642903253,173.4092545621097,173.89315534336492,174.22217166656628,174.06531888386235,174.17562998645008,173.35199503740296,173.06356926448643,173.4533364744857,173.2833987963386,173.88699598936364,174.32458688970655,175.00452648103237,175.75084256753325,175.42405275721103,175.6575081893243,176.21183616295457,176.61336257029325,177.39289106801152,178.0360529902391,178.64739409135655,178.78479235991836,179.34823355497792,178.86863896856084,177.86883793817833,178.7766181761399,178.5276172272861,178.92160962382331,179.48926318762824,179.7327851378359,180.6034805024974,181.45096517074853,180.8002572543919,180.74835895607248,180.50700369523838,181.03639301657677,180.27756188903004,181.23940773773938,181.97425880562514,181.72225186927244,182.61507376702502,182.41155236400664,182.9044377519749,183.4050917425193,184.26898667169735,184.97235486004502,185.08080750191584,185.14080711314455,184.67869117995724,184.5487176035531,184.87011920521036,183.94060347415507,184.12812724197283,184.35905077354982,184.7313301046379,185.1685700486414,185.78856871277094,185.7231073421426,186.40685272356495,186.487491090782,185.8101162877865,184.97241650288925,184.39439938869327,184.52376099163666,184.79408255638555,183.94844511756673,183.9883418683894,184.25304328650236,185.13419969379902,184.80623753974214,184.07428026665002,183.96624371642247,183.28494310518727,184.21996305510402,183.62804919015616,184.199240246322,184.75218855496496,185.18779557663947,184.20837034843862,184.9119680505246,184.7802006523125,184.72383298818022,184.0051094284281,184.0507170255296,184.1832033856772,184.7090570651926,185.5823130076751,186.43435914022848,186.59418277349323,186.53545237518847,186.76958855614066,187.15007210709155,187.86539935832843,187.79975456465036,187.78486502496526,188.15238431748003,188.0609346642159,188.09954136051238,188.48411813564599,188.55509990733117,188.82017052499577,189.09254725603387,188.99228804837912,188.89477322949097,188.00465231575072,188.031573030632,188.50493193231523,187.6312924795784,186.97352871811017,186.43279875069857,187.18091173935682,186.63861177675426,186.26194728258997,186.49661624478176,185.94586605252698,185.4405540623702,185.01852337736636,184.56551680341363,185.0530937067233,184.67938372446224,185.47890662867576,185.98472539288923,186.1807381263934,186.55259782494977,185.99980627000332,186.68897292856127,187.34974565170705,186.98542505828664,186.67105528898537,186.03237748751417,186.20092229358852,187.0717301275581,187.22190631506965,187.72884086053818,188.4909435659647,188.4171484420076,187.7627944680862,187.1946465219371,187.71528032515198,187.7793103484437,187.12497453717515,187.12177130719647,188.0678700604476,187.8063374888152,187.241050648503,186.72156175458804,187.02627427317202,186.11309341248125,186.5292295180261,186.54030051175505,186.2799053513445,186.86059336410835,187.55589916789904,188.16920169163495,188.28199033159763,187.8207578472793,187.21561358403414,187.24465876072645,187.0496097691357,186.64899054029956,185.9858502810821,186.89524659700692,186.38558766106144,185.4667773670517,185.41445066221058,185.55733608733863,185.7624478326179,186.26481401454657,186.5261020208709,187.26982101425529,187.5343588902615,186.7776561724022,186.399554584641,186.46595935709774,185.7906075445935,186.01604411378503,185.86156818363816,186.19193853158504,186.01655778149143,186.49202237883583,187.29657031781971,187.80978272901848,187.48832138068974,187.22933608479798,186.64576685940847,186.86839650664479,186.51037698797882,187.16507909772918,187.80970599735156,188.49442284321412,187.9461097633466,188.59255028888583,187.62218331592157,187.72641637781635,187.09799300180748,186.74083902081475,186.8264216920361,185.9507018495351,186.7840413628146,187.35982902441174,188.08314673276618,188.29446062119678,188.5576660009101,188.37802977161482,187.47377668088302,188.11545710265636,188.36219368316233,187.41148138185963,187.42445455677807,186.70987374149263,187.15474558621645,186.7401972883381,186.24467640044168,185.40048523666337,186.06145970057696,186.9607103788294,186.58501420216635,185.62422482902184,186.2745946785435,186.9255375894718,186.07742160838097,185.3191522085108,185.79077515099198,185.99714444531128,186.08256997400895,185.29185671545565,185.04005699930713,185.52267052745447,184.58288109395653,185.03917011758313,184.0674674906768,184.9210996357724,185.19986738450825,185.9504016349092,186.38437985349447,186.51011838251725,187.2974212677218,187.0282362936996,187.08569665439427,187.96973830554634,188.71395662240684,188.43927856581286,189.26417549094185,188.7710905894637,189.04260343080387,189.19391810987145,189.7318400372751,190.16518356092274,189.30950384913012,188.42541164020076,188.76589183043689,188.75891617126763,188.54549020668492,188.71948129637167,188.36376172024757,187.65762539813295,188.18117662053555,187.97463510045782,188.12475386587903,187.49208834208548,187.84841757034883,188.1145693087019,188.4941711295396,187.78160553751513,188.5330690923147,188.46231681201607,189.30544767994434,188.63521108729765,187.92933668429032,188.69785982137546,188.59886779356748,188.77850176626816,189.43463021796197,189.71070045419037,190.3110972433351,190.87770545529202,190.62801560433581,190.04414789238945,189.59532590722665,189.98940541781485,189.58752261148766,190.3926646769978,191.24341016821563,191.57302922243252,191.75510894227773,191.27921165665612,190.37894501630217,191.14704398391768,190.82224258873612,191.08624618826434,191.81375737022609,191.35350467078388,191.78899669554085,191.7009551427327,191.57480196561664,191.1954972166568,190.95067376736552,190.65981109580025,190.9259574287571,191.3663206375204,192.20883264392614,192.9771929406561,192.73323226440698,192.51544137159362,192.0186820179224,191.69429541099817,191.1555950990878,191.9171428065747,191.89752126904204,192.50513549894094,193.24401727551594,193.60187663091347,193.75878802640364,193.79097121069208,193.3192002493888,192.76610501343384,192.01347347861156,192.39469998236746,192.70471691293642,193.6853387276642,193.1991235106252,193.506415696349,193.3847371819429,192.50110827572644,192.35153034795076,193.04914537910372,192.75303000723943,192.59808806655928,192.02438536006957,192.236147983931,191.62671488849446,192.6155802803114,192.948269772809,193.54304928705096,192.6640830929391,191.8592738462612,192.80646995501593,193.61268725432456,193.61448265938088,193.92573640216142,194.69366690749303,194.25511421309784,195.15828670514748,195.36387072643265,194.5370719335042,194.79342480795458,194.98083332553506,195.5306509817019,196.12060888996348,195.1464349720627,195.21954567404464,194.4251945009455,195.2182373269461,195.28541466174647,195.8527724025771,195.57403182145208,196.30557203572243,195.40675551444292,194.81837431620806,195.0124241951853,195.2795278429985,194.39250584086403,194.06953301141039,194.8591890670359,195.55064385663718,194.69379950361326,194.25459763780236,193.73877882305533,194.100764058996,194.10549374250695,193.13337281672284,194.11565412767231,193.5135544380173,193.14119692659006,193.68345248606056,192.9764552861452,193.27808381058276,192.6250272570178,193.1526648271829,192.9693364012055,192.64045504201204,193.43479843996465,193.8575847116299,194.76386673701927,194.76853454578668,193.96802243264392,193.41245020134374,194.30243192333728,194.9132135361433,194.8909079716541,194.0318599594757,193.5809997948818,193.238664326258,194.2384239579551,194.3097905581817,193.495589657221,194.33349521784112,193.7030835817568,194.00814490905032,194.762487183325,194.61635947413743,195.564033952076,195.1804830050096,194.5081696147099,193.62242211168632,193.1190528003499,193.19089155690745,193.4886219734326,193.56923836655915,193.90314596379176,194.33403229666874,194.14336165972054,193.79999726079404,194.50150115042925,194.4660522309132,194.8489028820768,195.8349981107749,196.11467715678737,195.35099848965183,196.11488030385226,195.58050079317763,195.722153367009,194.8630480808206,195.21952184662223,196.074645570945,195.23329042457044,195.66117059532553,195.78575192717835,196.42288502305746,196.16862212959677,196.39641176024452,197.3926371987909,197.13226734893396,197.56710174214095,197.8199582020752,198.12398689845577,198.02111298637465,197.1623384943232,197.9496994325891,197.63600334711373,198.34836992481723,197.48999281274155,197.42020123964176,198.38554903492332,198.49503542715684,199.14334258716553,199.10280823893845,199.91308452794328,199.26432481594384,198.4738820125349,199.26717589003965,199.3680845326744,199.8297888794914,199.60371205070987,199.54537444887683,199.37027190253139,199.92108662519604,200.072858131025,199.74612785875797,200.20417015766725,200.86241410579532,199.9063914520666,199.61418791860342,200.04497903212905,200.65851202700287,199.91245220974088,200.49328522523865,201.063553316053,200.06618840945885,200.1920442553237,199.84329234203324,199.97777660842985,199.15171890100464,198.4110088138841,197.74349702568725,196.81431989884004,196.774167815689,197.7240272425115,197.15659672301263,197.0963376974687,197.05284243170172,197.17591594439,196.63151626242325,197.39239605003968,197.61294765910134,197.77125572180375,197.12809360632673,196.87836955068633,196.98387972451746,197.25677848840132,197.1082084965892,196.31944862287492,195.51961598964408,195.34724758099765,195.18386969529092,194.65939809475094,194.35356338415295,194.99899299442768,194.1266869045794,193.8599212304689,194.23161606956273,193.95167074445635,193.6607421291992,193.43211065791547,192.620528800413,191.92451175581664,192.01254280889407,191.11984870629385,192.00422865198925,192.1889669522643,192.9153224779293,193.1097908797674,192.63223527092487,193.31180719472468,194.03116943174973,194.04952536104247,194.6851138989441,193.83555002463982,194.55521471006796,194.39051883667707,193.89855359494686,193.90085806325078,193.70783313084394,193.1110596153885,193.31327501498163,193.5281474920921,193.79018582543358,193.28676843922585,193.9783348152414,193.06719544623047,194.04656915413216,193.70991064189002,192.75664128921926,192.30841587204486,191.37028502253816,190.7204683725722,190.3408071193844,189.94955233018845,190.61588565260172,190.21928980899975,191.06653901515529,191.48797036148608,191.42763401009142,190.66376102669165,191.33810043148696,191.7306882054545,192.5935227549635,192.87233308050781,193.08110729139298,194.00384784629568,194.42907148599625,194.9474863950163,195.65908468328416,194.79420368745923,194.09511687932536,194.4335478642024,195.10957845393568,194.20262398570776,194.0301201203838,193.3719153078273,192.8126558274962,192.30957598937675,192.97808511927724,193.55406992183998,193.16726828040555,193.17880723858252,192.2138280440122,192.764748910442,193.2454084660858,193.27762090135366,192.68742909282446,192.7425161502324,192.5658128131181,192.1202692128718,191.52698866231367,191.44984133914113,190.80802726605907,191.47007161844522,190.82216443913057,190.99440264655277,190.7413462405093,190.6083311084658,190.06076233368367,189.5374295283109,190.08203170634806,190.67459813365713,190.8151126401499,190.95285357302055,190.79248465783894,190.9550010911189,190.30350868869573,190.4594766870141,191.05189648643136,191.68916967883706,192.51792913861573,193.39756183419377,192.9176061442122,191.9887181483209,191.4196688150987,192.39596155611798,191.94894120283425,191.33697129273787,191.7512349546887,192.30790542485192,192.72538606775925,193.0957111637108,193.36268466571346,193.81888643978164,193.13763963477686,194.08866906538606,193.2914741616696,192.65826257225126,192.30397625500336,192.28567715873942,191.34794386662543,191.87057679938152,192.26677582785487,191.56552860094234,192.00653682136908,192.7826531319879,192.5106357736513,192.18415458220989,192.21238251402974,193.15979150496423,194.1088608140126,194.3895122925751,195.2056736415252,195.38315543020144,194.7954561249353,194.89461729768664,195.03798125777394,195.28117186343297,194.4086478576064,193.97682459186763,194.3017554488033,195.14643867965788,195.38588685449213,194.61921013565734,193.95764921372756,193.07933780830353,192.95061442395672,193.1114426641725,193.96001679450274,194.1909246891737,193.3722278792411,193.1536949193105,192.64413913805038,191.92306394316256,191.35720178158954,191.04022150998935,192.01779068773612,191.3811115990393,192.02026301342994,192.36525955749676,192.2595056053251,192.65579273784533,193.24414261244237,193.2397597846575,193.78323330217972,194.44283842341974,194.36952141765505,194.86257370654494,194.23365912307054,193.8611206668429,193.35192838357762,192.36724812397733,192.00020436989143,191.64403155865148,191.02304560970515,190.5300907306373,190.99968199105933,191.20098595460877,191.18986098701134,191.8389298520051,191.41872000321746,190.5159064680338,190.41992974700406,189.98741199681535,190.74104075925425,190.5745671899058,190.95308217639104,191.2491722907871,190.54355568159372,190.2033708319068,189.71064570732415,188.79591877711937,187.8197647384368,188.67242496926337,187.73302296642214,188.68174394592643,188.91048612864688,188.76116446964443,189.07168650859967,188.85199031140655,188.02932200580835,187.77397799305618,187.6543821254745,187.92069963319227,187.72518223244697,187.56225780770183,187.2734458455816,187.1733269104734,187.12111357739195,187.12205491680652,187.02496281871572,186.11948804650456,186.89249415928498,186.07983851386234,185.4620615830645,184.63790037389845,185.4285217979923,185.39632927346975,185.1897636554204,186.03094197204337,185.16122697805986,185.7409495022148,185.49360519181937,184.702170366887,183.86483214749023,183.95314916735515,184.41501855431125,183.51546255033463,182.55057011637837,182.2727541490458,182.51435465738177,181.53696111403406,181.37705723149702,181.6188697856851,182.49630256416276,182.2492101714015,182.30639991723,183.2690709331073,183.99072534311563,183.35178758157417,183.88420479139313,182.98270252766088,182.6009301734157,182.43018994480371,182.47838572598994,182.85780489444733,182.35343998670578,183.24372605560347,183.29651022376493,183.31158374948427,182.6672036787495,182.72918856702745,183.09148065000772,183.18249021610245,183.69153781421483,184.43833612510934,185.0675371834077,185.4847638728097,184.88415329903364,185.18026255536824,184.35000196192414,183.86030671419576,183.16972755081952,183.2926147407852,183.90238532004878,184.05827481066808,184.06437125056982,184.31953860493377,184.7078379644081,185.19352423259988,186.15140729071572,185.26144392369315,185.4446414746344,184.88352705491707,184.4782081693411,184.43623239779845,183.75857988838106,184.4680702444166,184.08252467168495,183.5795729602687,184.4526105588302,185.11200305167586,185.13554168818519,185.7126168119721,185.9296274059452,186.59059862885624,185.69531319476664,185.7946680705063,185.44275829894468,185.37613007146865,184.50056711304933,184.30853287922218,183.5386552787386,184.07936870865524,183.31270515266806,182.6485511418432,182.78721943404526,182.85163460252807,182.77615072065964,182.54274750314653,181.9786453587003,182.56464007403702,183.3723703934811,184.11426860792562,184.7824896723032,184.14628248522058,184.49382828595117,183.96495314314961,184.33059065323323,184.64906634530053,184.15612434130162,183.6882999194786,184.66180073469877,185.3272033436224,185.23628455307335,186.04948517447338,186.34006204782054,186.1164123066701,185.76650821557269,186.57879294641316,187.10853669140488,187.09043870447204,187.65183486463502,187.19789094803855,187.21001307899132,186.29213117063046,185.5309550263919,185.63003237405792,185.30982288205996,184.4864637791179,185.35796480160207,184.55096745630726,184.50955347018316,183.57785512693226,184.08563437359408,184.268592574168,183.5486792754382,184.12055399361998,184.89808398205787,185.73341942578554,186.10520386276767,186.80319972522557,186.87822283385321,187.0099737565033,186.62745562149212,186.17139432718977,185.1940686586313,185.90447061462328,186.7078372607939,187.01808589231223,187.51209113188088,188.31320081558079,188.55967238917947,187.83355456450954,187.08887662738562,186.7809289530851,187.23810265259817,188.11120814597234,187.5015358920209,187.93741439841688,188.01622406579554,188.56756548397243,189.00968607980758,188.37360204709694,188.03265847545117,188.98268260993063,188.74079013476148,189.42256117844954,189.55382874049246,188.7586900582537,189.41806973982602,189.42141159018502,190.22505834978074,189.81783835683018,190.0986864613369,189.99496105266735,189.95672363834456,189.7613323079422,189.00291735399514,189.32321072136983,189.68652239907533,188.9282569536008,189.35879621561617,188.798596133478,188.22443980164826,188.87697760527954,189.00789772998542,189.9373642555438,189.66972779901698,189.9559983117506,189.10923774773255,189.13714738097042,189.017052879557,189.32134807109833,188.66003302065656,187.8965975586325,187.847440732643,187.36063774768263,188.23687700275332,188.63581478362903,189.1501283789985,189.0317573393695,189.4531533191912,188.94438949786127,188.65478469291702,188.6105138217099,189.34140163566917,189.90439100237563,189.95411721337587,189.67651487374678,189.99679319560528,190.18254335178062,190.69634357700124,190.28325677197427,190.42299071140587,190.4666900378652,189.5020650792867,189.16533108986914,189.75897902809083,189.2085878169164,188.88044517766684,188.68145799823105,188.51665050536394,189.07579797878861,189.75658932700753,188.81065343506634,189.6955530643463,188.92830441333354,188.6202713274397,188.9334278004244,187.9554358604364,188.06529227038845,188.15132104745135,187.2649175291881,186.73307692818344,185.8668587883003,186.09939400013536,187.05504716187716,187.5606365799904,186.64276997139677,186.7567586824298,186.40672300802544,186.84940068004653,186.5765006011352,186.3094198363833,186.26579628977925,185.6152065335773,184.80462956056,185.12657281849533,185.70355959795415,185.19220434734598,184.5192097388208,184.99234746256843,185.8714357796125,186.5373713094741,185.79026394430548,185.57479995209724,186.41160658793524,185.817208759021,186.52079155435786,185.67568388441578,186.32579918857664,186.22207311540842,186.22035267017782,186.0672568543814,186.59088832186535,187.32996022887528,187.49109336035326,187.92619090573862,188.15252476977184,188.46600708318874,189.32055350905284,188.6454002945684,188.36168950004503,189.0576998773031,189.61077087558806,190.44193636951968,190.94511443795636,190.4685708368197,191.30068327812478,190.79104004334658,190.66312369983643,191.64697948424146,192.03580226609483,191.11334811942652,190.67779394984245,191.58733877260238,191.62489226227626,190.91165021108463,190.1958617689088,190.59357651183382,189.65317076491192,190.15180850587785,189.6177787114866,189.0126872472465,188.18283924413845,188.88009116007015,189.09151360578835,188.8088320060633,189.111875240691,189.4494294906035,189.15911232726648,188.85657955380157,188.0442241965793,187.08969923853874,187.42626153491437,188.26397466147318,187.48691369174048,186.63570341374725,186.05515421181917,185.51161592453718,186.31061821524054,186.0360022392124,185.1513321539387,184.3758854130283,184.15284181386232,183.3786461618729,183.59356669103727,184.25424268934876,183.42767800856382,183.5085590337403,184.4767467849888,184.6941015087068,183.71436940319836,184.25810565520078,183.96098200092092,184.90237390156835,184.77398933749646,185.68329369276762,185.07063293736428,184.07554961461574,183.1732424609363,183.08794354321435,182.21512244502082,182.68467211630195,183.5941121019423,183.31684967316687,184.2459593275562,183.97193456953391,183.56775545468554,184.10316572058946,183.94234488578513,183.50474543171003,182.5360451741144,182.77120843762532,183.18390614306554,182.99045851407573,183.53203340340406,184.00660933647305,183.71526263980195,182.78514396212995,183.24606192018837,184.19889196753502,184.01660014642403,184.01375928800553,183.46866808831692,183.9768597362563,183.5910051180981,183.32138394471258,183.401580540929,184.18834718782455,184.65341945923865,185.49886967102066,184.51234136335552,184.73858204483986,185.51903581572697,186.21423731930554,186.8588722241111,187.81104360334575,186.8704180540517,187.77949540736154,187.23797301668674,186.9147576908581,187.48632712755352,187.06241667596623,187.95220902422443,187.92343247355893,188.3855451522395,188.2498814710416,187.27993721794337,186.35859100194648,185.7278005387634,186.690045571886,186.88430063053966,186.89978158008307,187.61882819095626,187.73524063592777,187.92987974733114,187.08710014028475,186.2394270976074,187.21546116098762,186.55777938850224,186.77047776151448,187.63983206776902,188.55066271778196,188.96953718736768,189.86593791702762,188.99939326988533,189.80922315409407,190.22635281644762,190.08021535119042,189.7238142406568,190.22937131486833,191.02848705556244,192.02403283584863,191.41865165019408,192.19839638797566,192.661073371768,192.7945296014659,192.54038636479527,192.6650043260306,191.99795196484774,192.57786629116163,192.3923501195386,191.92675976501778,192.55972971208394,191.66653550881892,192.66640538861975,191.74274113355204,190.74697754438967,189.8176761418581,189.30966525664553,188.71106701763347,189.4803766789846,190.00584081560373,190.81586917163804,191.35488597629592,190.4092908380553,190.07215578015894,190.92706570914015,190.33018669160083,191.00199925899506,191.39568278053775,192.07265584543347,191.57727703638375,190.90671428106725,191.07243127888069,191.79019855940714,190.88494048127905,191.07503417367116,190.7535599381663,191.70698940753937,191.1562565350905,190.71167162247002,190.25300739891827,190.23728570202366,189.5178971341811,190.1518875141628,190.27780661033466,189.716512021143,190.477766612079,189.73226619744673,189.18449321668595,188.71716267475858,188.81124502047896,189.74309036973864,190.19638637732714,191.16546489996836,192.0993787762709,193.03272108267993,192.67098912224174,193.1828543287702,192.94767443602905,193.2372064711526,192.61236953316256,192.70578605029732,191.88830754952505,191.40570159768686,192.0025164699182,191.3766999328509,191.27983817178756,191.416237287689,190.96781063312665,189.99892166210338,190.3699946720153,191.20327072963119,190.77702121296898,190.18597248662263,190.2399508082308,189.7389683551155,190.04445250844583,189.5274759735912,189.8946574172005,190.1545399511233,190.4615984861739,191.29181125434116,190.94487430388108,190.58174225734547,190.37669843574986,191.31473195645958,191.4991490934044,191.64722682116553,192.05500542372465,191.5492535433732,192.20421574963257,191.90767130628228,192.1150750280358,191.3073809375055,191.64871995942667,192.2956188376993,192.58062362438068,193.29191910894588,194.01003375742584,194.008425838314,193.9822567505762,193.36839014291763,193.33890216285363,192.360844057519,192.27507795579731,192.32331159245223,192.232807203196,191.59908516984433,191.37692076526582,191.40128701832145,192.00234046392143,192.78376374626532,193.6755838501267,194.63565408578143,194.00032372772694,194.65024555614218,193.79462899267673,194.18520332546905,194.45960397692397,194.76379751693457,195.10549810621887,195.00630059093237,194.60555500444025,193.62775754649192,194.38064535148442,194.43556240946054,195.36990320915356,194.7606813260354,194.0075747091323,194.51567167975008,193.85047445259988,193.70326663181186,194.15156419109553,193.98472819523886,193.08475780952722,193.5396165442653,192.97214975534007,192.5348568353802,193.32832468533888,193.5089125521481,194.1607731017284,194.21525859786198,195.16075262287632,195.3832864612341,194.92568792030215,195.34001282416284,194.81903088884428,194.14163106493652,193.19287957902998,194.18712237477303,193.37201460823417,193.68858693959191,192.84444210585207,193.3540430595167,193.7105659386143,192.76942393835634,193.27688117232174,193.89998175483197,193.1342505486682,193.52601584326476,193.5428020604886,194.3979259771295,194.72715210868046,195.67290253890678,196.00780964409932,195.06153195397928,194.56196003546938,195.21148963319138,194.51207016129047,194.3111581574194,194.7255830615759,194.23684873385355,193.45635533239692,192.52233674982563,191.63606865052134,192.32344144769013,192.7595660770312,192.00141341844574,191.31719717290252,191.95234668347985,191.36796087073162,191.95453606266528,191.41157954884693,191.4220666415058,191.39190659625456,192.03625774709508,192.81965300440788,193.56195103004575,193.26823476934806,192.35180161055177,193.15520349051803,193.20755281299353,193.38717336766422,194.2458614637144,195.13933889986947,195.19293503835797,195.64415996847674,194.77933089295402,193.86973708774894,194.60852409759536,194.13597996579483,194.04703586921096,194.90137252770364,195.33907747035846,195.99352723546326,196.464764514938,197.24246195470914,198.20837578782812,197.93181187100708,198.89501431398094,199.57086133258417,198.91831367230043,198.44237851072103,197.72239383263513,198.168642914854,197.21017280453816,197.30020955670625,198.04536041012034,197.40669726859778,196.8146741380915,195.93458311073482,195.0267598987557,194.88255877932534,194.726898198016,195.37227726448327,195.14182291505858,195.58170511946082,196.3711719289422,196.96905161626637,197.9318676223047,198.13922619214281,197.62830260396004,197.8893588911742,197.69531766604632,197.41867879824713,196.88389410078526,196.33223699731752,195.6718396032229,194.68848705943674,194.62095845816657,194.09282837435603,193.5629754732363,193.7649702965282,193.31400714349002,194.28283878136426,193.8023947593756,194.23186778230593,194.3459105519578,193.44508099695668,193.73197429487482,193.31308308802545,192.907977913972,193.90567050455138,194.57003824599087,194.81868851929903,194.8900923151523,195.12500336999074,194.78924132185057,194.2579844123684,194.81266480591148,195.67282639769837,195.11665605800226,194.698348114267,195.48348642745987,195.2741983323358,195.23447606060654,195.17136771511286,195.52732433751225,195.60935449413955,195.1395185161382,194.68830422405154,194.91767239756882,194.04549947706982,194.9160752715543,194.851752538234,194.54673360520974,193.8976534320973,193.93867486948147,194.53079451387748,195.0562236988917,195.64446972869337,195.64191434904933,196.57436201861128,197.29557350464165,197.8437256431207,198.12364767072722,197.68063547089696,198.62949772784486,197.85053494386375,198.41464287089184,198.39678108412772,197.64847085857764,197.4484149813652,196.6434188359417,196.23694422794506,196.68541052378714,196.3254154655151,197.25748611660674,197.1602235478349,197.99416316999123,197.09930380620062,197.06225096201524,197.36832617316395,196.4142965953797,195.6692007984966,195.68072270369157,196.0561699992977,195.47846242506057,195.05893255630508,194.8594899470918,194.0756657361053,193.10384539002553,193.1963925869204,192.4967799736187,192.243631684687,192.9990909327753,193.79668773850426,192.97237738687545,193.45640276232734,194.21644591493532,193.82104958454147,194.3378869695589,194.95838265353814,195.13165629887953,194.79791023675352,194.1675488022156,194.09605838358402,194.66673600953072,194.1714014741592,193.37349150376394,193.04685099981725,193.58956385217607,194.4118961719796,194.36559427157044,193.5037917974405,193.78611706150696,193.23417904088274,193.10807227157056,192.43356669833884,191.56537061464041,190.7410139949061,191.35074318712577,192.0314617967233,192.84406436420977,193.54034742619842,194.5386987812817,194.106950215064,193.39912497857586,193.20886956714094,192.4977292874828,192.4302694867365,191.71142701711506,191.5123700015247,191.12256592977792,190.36076975846663,190.31351979775354,190.82259176066145,190.22968662763014,189.84536755178124,189.48952710116282,190.15639263484627,189.6891317591071,188.88960520084947,188.52954026078805,188.78826391790062,188.62255611550063,188.0318319676444,187.17240197211504,186.47333264397457,187.41892819246277,187.35027440218255,186.81367457518354,186.69701968226582,186.32582171773538,185.94742235634476,185.8971467036754,185.67176092974842,184.88130084658042,183.8992773401551,182.96847758628428,183.62900369567797,183.70358882518485,183.68965034047142,183.6171337789856,183.05412210337818,183.72211901424453,183.82783061778173,183.87222169572487,183.32082712370902,183.3852297384292,183.7152246516198,184.56497324071825,183.75049366382882,184.5824005799368,185.32185775088146,186.2469149553217,186.74808893771842,186.10442121047527,185.21071858052164,184.75979564711452,183.96948770573363,182.98380336211994,182.7088079219684,182.31193918921053,182.73783237906173,182.46687516430393,182.8081203047186,182.2701068869792,182.0431678048335,181.30018630018458,180.54732737876475,180.8640882926993,180.13769921008497,180.8958374923095,181.43493276229128,182.34359196014702,182.4797934931703,182.89166690036654,182.67568323900923,183.2706343755126,182.6677930788137,183.56458957353607,183.6651525804773,184.65917681204155,183.97572189802304,183.00218568602577,182.811707675457,183.11620782967657,183.0172925060615,182.798527169507,182.0700809895061,181.24245138000697,181.04113313602284,181.88383363652974,181.2892720764503,182.09842437552288,181.60809505032375,181.8693674863316,182.6280555445701,182.50666228914633,182.7020976934582,182.42642597295344,182.54233766999096,182.6497310148552,181.73539627855644,181.8153050574474,181.0576086519286,181.42069030320272,181.3146687205881,180.69921007892117,180.01621322054416,179.3687028088607,178.39028254989535,177.99973323382437,177.357994413469,176.9900200655684,176.46343874232844,175.65666133724153,175.71052740793675,176.69928219588473,177.291731541045,176.31624693516642,176.7694024918601,176.20152644021437,175.33429957414046,174.9494844279252,174.91040273336694,175.3899581208825,175.88906266121194,176.32664793170989,176.60877808649093,176.87872765259817,176.59698921674863,175.92018386954442,176.79060854855925,176.88136899890378,176.3601228413172,175.6246270709671,176.38634159229696,176.74292099103332,177.47133879596367,178.01746414182708,178.49625700898468,178.5997901246883,179.52316256333143,178.96443164953962,178.85350689152256,178.22468259837478,177.41526114940643,176.7073114560917,177.6194207915105,177.81094497349113,177.29428461473435,177.49290349520743,177.6445772089064,177.18256778875366,177.5228292462416,178.2232940737158,178.51198487635702,178.3898069174029,178.93883311888203,179.4749010866508,180.2336788047105,180.66814875090495,180.94915566546842,180.5623492533341,180.54174619540572,180.0510366698727,179.4486796334386,179.98427730891854,180.07551626628265,180.03840589756146,179.926115273498,180.81817711377516,179.84788915421814,180.43952333601192,179.68307379540056,179.593509956263,178.92278139619157,178.4796417900361,179.46210590656847,179.42694637691602,179.31457854853943,178.65736542269588,179.5076826051809,178.64095597155392,178.09325104625896,177.7651955964975,177.8329027770087,177.75708726234734,176.99125102115795,176.75519899185747,176.06744330236688,176.47704522684216,175.7174028060399,175.20695906272158,176.04782048240304,176.4225688795559,175.66997692594305,174.6819838611409,174.82640058360994,175.65381990512833,175.25350255332887,175.5449203727767,174.9153742347844,174.09314770624042,173.3437083242461,173.89853663602844,173.22927083121613,173.9109702478163,174.10065561486408,175.0690660448745,175.79356616782025,176.65526322415099,175.86224140459672,176.14178547542542,175.171130055096,175.49032504670322,174.53085451666266,173.94279986293986,174.8391890451312,175.19528943207115,174.4596849004738,174.16465818649158,173.48465506685898,173.29241837747395,172.46999353077263,173.42037761118263,173.97773187002167,173.67500715050846,174.3027875958942,175.28423277987167,174.79546126397327,175.17556015122682,175.00786411296576,175.53434773068875,175.95507045881823,176.46840893337503,177.3185385814868,177.05580744938925,177.86236415291205,177.70624219626188,177.9127695611678,178.4555784831755,178.96810079691932,178.32859726343304,178.78517282754183,179.3107001739554,179.38717456674203,178.90156000107527,178.92554813576862,179.77099760435522,178.92898642504588,178.222574793268,178.08442018646747,178.88424762291834,177.94437091005966,178.37617490906268,178.1765794735402,177.4572600540705,178.23825823748484,179.2153499298729,179.70199347427115,179.7128748856485,178.72045288793743,179.5140064288862,178.92387110553682,178.6838764050044,179.55527754081413,179.40850538620725,179.9699165262282,179.80316880950704,180.17929183039814,179.18632413540035,180.11812156485394,179.80221811542287,179.56477244244888,180.17303441278636,180.03381247026846,180.16359761869535,180.78822852950543,180.82675006892532,180.38943022675812,179.4277283102274,180.30797567637637,180.39064552960917,180.99976812209934,181.99411041429266,181.9503384847194,182.67035867460072,182.5746827418916,182.1922192540951,181.40043653314933,180.4662192943506,179.75732141640037,180.22533933166414,179.2651039925404,178.30806512385607,178.50542915891856,178.60864496510476,178.4882297408767,178.66582580888644,177.82390130357817,178.62997648818418,178.55595810478553,178.2361472225748,178.71108836773783,178.47686006501317,177.68467552307993,177.82754386076704,178.48284900700673,178.52855157200247,178.2224862468429,179.20224788412452,179.46349222771823,180.034333194606,179.91271898662671,180.14347970252857,179.58198057487607,179.83920481195673,179.9853507289663,179.56519428035244,179.91805313993245,180.76337124640122,180.5690558888018,180.55724143935367,179.9954680427909,180.20934006758034,179.89821300189942,179.84249817579985,179.340015291702,179.69461450632662,180.17295115347952,180.839611094445,180.51194373704493,180.306272580754,179.54099107068032,180.34577943291515,181.19268172746524,182.12595606967807,181.68672988004982,182.3260831842199,181.46233285870403,181.28379121096805,181.99494621017948,182.113291665446,181.26118898019195,181.50947997160256,182.19145654514432,182.6247389013879,182.13666365342215,181.7111352845095,180.93740385118872,180.1777319284156,179.42693210067227,178.89656594069675,178.9529518969357,179.0203749537468,179.05713285598904,179.91263746237382,180.00653182901442,180.68215978099033,179.6856963043101,179.96909570740536,179.62028414430097,179.6949810711667,179.0256125163287,179.04451333684847,179.95910038799047,179.41431880556047,179.73633580375463,179.7555636819452,179.49237707210705,179.3411368690431,179.89290123898536,180.72100195102394,180.88753488939255,180.73483848106116,181.6411373927258,182.53374998038635,182.541609313339,181.7694354346022,182.6504748617299,182.6055618878454,182.2204347695224,182.52034008083865,181.6929881926626,182.32233547000214,181.78170591872185,181.85738516412675,180.99703706149012,180.71066643716767,181.10006874520332,180.6232265480794,181.47828566515818,182.410060711205,183.2843789635226,182.30930623505265,181.89218522887677,182.2264390066266,182.45360182691365,182.3657316104509,182.80497902538627,182.42963238060474,181.89483828423545,181.81868777936324,181.84754513995722,182.64305457426235,182.6256443914026,181.79651581170037,182.4472133293748,182.47458964539692,182.51494472799823,182.22094212053344,182.00723178731278,182.82765188394114,183.00366553477943,182.59805629169568,183.375967241358,183.4562098220922,182.92217717552558,182.920755836647,182.57841706788167,182.47585057280958,182.24937457079068,181.95160165149719,180.96549252979457,181.2585221719928,181.5941009428352,182.49456664267927,182.5859274477698,182.8645984539762,183.7267365544103,184.55896198470145,184.57105918973684,184.2185998498462,184.25203439965844,185.20456221606582,186.03900921531022,186.20970886852592,186.7527953358367,187.56298336293548,187.60281871072948,186.60998019343242,186.35896491957828,186.0455367253162,185.86730291554704,185.97580673312768,186.23019019002095,185.80283893737942,185.25470768800005,185.47338945511729,184.81367512326688,185.15320182358846,185.300068421755,185.57996655348688,185.5558072491549,186.37592895468697,186.23517168452963,186.96259959647432,186.95409845327958,186.07919689454138,186.06016964511946,186.31287126196548,185.67033042525873,185.1307674557902,184.82359466003254,183.96517418231815,184.2043615519069,185.13108159601688,185.46057374868542,184.46839290345088,184.0523391617462,183.4557022973895,184.2859856719151,185.12078245403245,185.89866738859564,186.5281998408027,187.1726883938536,186.33476103376597,187.26248667296022,186.80623592389748,185.82095439452678,186.4937218609266,186.98913737526163,185.9949698979035,185.59846255276352,184.64112995192409,184.83996426919475,185.38587298197672,186.15050747338682,186.78965781955048,186.91947406018153,186.10845396388322,186.37528397282586,186.25937517173588,186.61290805321187,187.30245217494667,187.57661260804161,188.4731160630472,189.39002675237134,189.24059626320377,188.2526113782078,189.07166411168873,188.48005270399153,189.32184821320698,190.31508363503963,190.9762686090544,190.35912873176858,189.44703732058406,188.7091466896236,189.61374981561676,189.052262915764,188.8626754307188,188.50998008716851,189.41647197538987,189.5447176215239,189.16228665597737,188.67600048566237,189.35955525143072,189.7182067022659,189.51257621869445,189.39927682187408,189.51483947318047,189.91962886648253,190.50598436174914,190.7564804586582,189.8921130700037,189.43699288973585,188.70940435724333,189.21600383426994,188.86996668670326,189.4933961299248,190.47801534133032,189.7769071427174,190.4477400011383,190.62414030637592,190.14293109299615,189.65078971209005,190.4633319247514,189.88587275426835,189.5405721166171,189.2309127165936,190.07857945282012,189.8133899299428,188.9014114732854,188.18891635723412,188.31614338234067,189.13760831253603,188.64436680218205,188.82654997054487,188.68073762068525,189.25837690848857,188.72162719117478,189.63936947006732,188.96306544030085,188.99832635838538,189.18394514312968,189.84487486444414,190.48749175155535,191.22441367059946,191.67479082476348,191.15244739782065,190.37520170770586,191.02345483843237,191.6487502171658,190.98396482458338,190.18949688738212,189.65587442275137,189.7842366285622,190.51580371940508,191.31817667046562,190.410460841842,190.30101564712822,190.76990830618888,191.7360028522089,192.4097775053233,192.00556233152747,191.70140006719157,191.89989335555583,191.97594845667481,191.21958815166727,190.85520560620353,190.9125715745613,191.8870230433531,192.6960814250633,192.55975314509124,192.2708580456674,191.83602117653936,191.1411122912541,191.81986768636853,192.72464941069484,192.1387838991359,192.80915539572015,193.65520933270454,193.12179089104757,193.46713347546756,193.77617160230875,193.72576453490183,194.70458851614967,194.8656433839351,194.02063705166802,194.80905256792903,194.46124448813498,194.05469326442108,194.33833310427144,194.570473538246,195.14385898271576,195.11819487437606,194.84744030283764,195.1888516866602,195.28480036230758,196.0967590319924,195.48434174479917,194.70331566547975,195.46581804053858,195.07525974558666,196.03120701108128,195.22456833394244,195.65149520197883,194.66303316969424,195.02534806588665,195.27692968351766,195.82463325560093,195.5709127043374,195.9960133805871,196.13406869908795,196.51990386657417,195.90395111078396,195.43931829743087,195.97323999926448,196.00560899777338,195.06898692576215,195.61996609717607,194.94538652524352,195.8451919243671,195.22931097913533,195.5191789814271,194.94348787749186,194.14295211760327,194.86739515792578,195.39422807563096,195.37157873017713,194.92497214861214,194.52861692896113,195.17061362601817,194.36681799031794,195.1714878110215,195.52182009164244,195.8803141200915,196.58164857607335,197.56696099461988,198.04585893871263,198.4408201458864,198.52046214835718,199.28901396272704,198.96036171587184,199.6433437797241,200.2180839087814,200.60694056842476,200.92770011164248,199.97391168540344,200.58163817040622,201.23306756606326,202.05052281357348,202.02399632846937,202.92288231709972,202.26085766637698,201.7857350721024,201.84141486370936,202.8268770892173,202.6047021234408,201.6180664151907,201.67646051105112,201.29733659420162,200.94623222434893,201.55053630191833,200.6564803137444,201.33127481210977,200.85448772506788,200.33908053813502,199.88442547945306,199.95316570112482,200.5292548770085,199.83670446975157,200.17261974699795,199.24880058923736,198.8377789882943,199.2894991338253,198.91112043429166,199.11601219000295,199.008887543343,199.37700048973784,199.32793319318444,198.52685008803383,199.3163819895126,199.52562668640167,200.30089633865282,201.0789982196875,201.53818879229948,201.68938402365893,201.25159218953922,201.4035108271055,201.79179235221818,201.42745805392042,202.38908212212846,201.6736982744187,202.47520891577005,203.38507786393166,202.72894600965083,203.42167517589405,203.05228959396482,203.07224595174193,202.91028247680515,203.7421993133612,204.68629483692348,205.5633696964942,205.30650532385334,205.43661885149777,205.89125007158145,205.44288531970233,205.7072856533341,206.41915051732212,205.94090227829292,206.16550478339195,207.0197262824513,206.02526099747047,205.2525320239365,205.4062735978514,206.02855656202883,205.11680544354022,204.5948775690049,204.36955439206213,204.38910647155717,203.4257054645568,203.85656718490645,203.6300650727935,203.54981772694737,202.73730360949412,203.43092558020726,203.7372460900806,203.9084824337624,202.93144263792783,202.70559580577537,203.1457481062971,202.69833413790911,202.1487238346599,202.17975371237844,201.18642966635525,201.43760717613623,200.5302094798535,199.66329053370282,198.87872379412875,198.24156014621258,198.3646599110216,197.66420771600679,197.60097619099542,197.92609525099397,198.37120390543714,198.28833648981526,198.66175912087783,198.70175640378147,199.3337312345393,198.57743882155046,197.7503710235469,197.33483645506203,197.01111787557602,196.63040977763012,196.56280269566923,196.36133083282039,196.72657286841422,196.50991138070822,196.919653437566,197.88661314966157,198.20939368661493,197.40403679711744,196.5355316088535,196.63894764706492,197.62877996405587,198.17670855578035,198.12014279188588,198.47193935932592,197.5184215097688,198.04002005280927,198.41769127594307,198.86805874016136,199.29888695990667,198.8299654717557,198.81173416646197,198.1293130600825,198.88684248412028,198.4907358409837,197.65381692070514,197.22755736252293,196.23633522633463,195.40163274062797,195.41832397598773,195.9263474540785,196.86820400645956,197.7474960172549,198.3377883178182,198.86637395014986,199.32224493660033,199.6064381240867,198.81183941476047,198.94143068790436,198.70819934923202,198.35695650056005,198.63387706456706,199.27397184632719,198.83219490479678,199.24232196481898,198.39030743716285,198.9568310622126,199.31043091323227,198.3456720057875,199.20362909324467,199.38026793207973,199.84204762568697,199.59557738201693,199.85935586923733,199.5670974724926,199.88180882111192,200.46632249141112,200.5049077095464,200.20683837123215,199.61790146771818,200.29936590977013,199.68035406293347,198.71203603083268,199.2239329237491,198.65490479627624,198.70379413710907,198.0224859090522,197.8888546791859,197.9189399983734,197.5752780851908,197.71440768474713,197.53418470500037,196.68873099517077,195.75368215562776,195.47413972113281,196.04854330653325,195.0813769013621,194.42832803027704,194.0323972273618,194.6481530959718,193.74429127387702,194.55520322872326,195.30952722160146,194.64150187419727,194.02247932832688,194.26982348691672,193.50775424949825,193.0076393801719,192.53086036909372,191.93806335283443,191.95712531683967,191.73326328210533,191.87322126235813,192.21727250842378,192.16427118470892,192.0899603497237,192.3999618445523,193.23943369602785,192.30591078056023,192.99827290838584,192.83697783527896,192.96044450160116,193.8629359412007,194.8252800256014,195.44346285285428,194.7809364986606,194.4769419678487,193.7569174640812,193.2397485920228,192.6683063460514,191.96158913709223,191.42369030229747,191.11280645476654,191.13572300877422,192.10021655261517,192.93124573864043,192.25047568324953,192.8397704907693,192.01675666915253,191.2979108421132,190.68590772431344,191.55566762201488,190.99969626776874,190.75352860661224,191.24252408137545,190.96350702643394,190.39990967838094,190.0473107546568,189.6697677797638,189.96655899938196,189.67969347862527,189.86408771341667,189.4152202294208,188.79236477660015,189.13617709232494,189.07456179754809,190.01909909723327,189.57798775238916,188.79625927424058,188.88556044828147,188.12757414206862,187.9362428584136,188.70511610107496,188.26244091847911,189.0670250467956,188.07621076935902,187.69766818266362,188.5153282219544,188.15497785247862,187.40515963640064,188.22473529353738,189.05978965992108,188.9174996688962,189.70944921160117,190.25627462472767,190.33185004722327,189.536390052177,190.0954038957134,190.3136623064056,191.13270347798243,190.6107313237153,190.65073234541342,190.9844408123754,191.2455153777264,191.09721219353378,191.19911089586094,191.25942231761292,192.2448436524719,192.630013379734,192.45891439635307,192.50050820456818,192.33468127902597,191.4724439312704,191.06973522529006,191.21394590940326,192.1642810786143,193.0101100122556,192.44910449674353,192.45112514588982,191.5025444328785,191.46733644139022,191.04957039793953,190.37634017504752,189.4875311232172,189.21699406858534,188.81670528417453,189.31347126001492,188.5531390211545,188.5425765006803,189.51290066586807,189.6847540619783,190.3837311938405,190.71614029817283,190.64915156643838,190.54986811848357,191.24476612219587,191.20491139171645,190.5065617649816,190.14656137535349,189.41572208190337,188.78876250283793,188.09219055157155,187.59577997867018,187.91706329165027,188.1054363893345,187.816704521887,187.05662737460807,187.97303646430373,188.62257583858445,188.59560640808195,187.67058938276023,186.8160322853364,186.88773393584415,187.58328099455684,187.62457039486617,188.39027141360566,188.66570915002376,189.29216447239742,189.27093048766255,188.7724072514102,188.22462354321033,188.2565807388164,187.9027515994385,188.4463909654878,187.66281686117873,187.15416909521446,186.16477126674727,185.6019492666237,185.3659290811047,185.0343644930981,184.94691073987633,185.5452004764229,186.06110390508547,185.10768355755135,185.91882615862414,186.59713045880198,187.53008040832356,187.47010990371928,188.03064780076966,188.21821842808276,188.68220116384327,189.21839278005064,189.93540983181447,189.48866455396637,188.52205570461228,187.81904827198014,187.01697640120983,187.36171530885622,187.12493473198265,187.9985563554801,188.36909965239465,189.11768913362175,188.9564965274185,189.9391161412932,189.68524025566876,190.3388868640177,190.56034164130688,190.4191151955165,190.94919404340908,190.2803183980286,190.25899448245764,189.80593768926337,190.73297295719385,191.17278532590717,191.43149454146624,192.26626942818984,192.09644105657935,192.68143585370854,193.11873491248116,193.2858895305544,194.26770609756932,194.9250549194403,194.24077992420644,194.2341432198882,193.57895919820294,192.8270615870133,193.19399383245036,192.66062278207392,192.04718964081258,191.19012495782226,191.30504880985245,190.87437958735973,190.5353106497787,190.6318065249361,190.48095873137936,191.35635359259322,191.1343753170222,191.81597002176568,191.99395224498585,191.74832357792184,191.38285292498767,190.69193649850786,190.8439407935366,191.4667243170552,191.2736757453531,191.62934656767175,191.91521564638242,191.01891038380563,190.11127403844148,189.80004430748522,188.96772478381172,189.80656570242718,190.46097234124318,190.23397686472163,189.3773630214855,189.50135304406285,189.6504530138336,188.85772329522297,189.58562228735536,189.4622359792702,189.32480340544134,189.59743494773284,189.51496765762568,189.92165678320453,190.293221546337,189.69749786891043,189.55664542783052,188.96728415461257,189.9014454674907,189.6000562137924,190.34932439262047,190.27644203510135,189.52763458620757,189.00544038694352,188.40093684289604,188.11448020813987,187.26019085291773,186.57470034109429,185.74466990493238,185.08282184507698,184.58549118647352,185.05132672470063,184.7385214632377,185.4299657815136,185.068077607546,185.38909311080351,185.85508315032348,185.92427457217127,185.2197880013846,185.9625991526991,186.29613074893132,185.59375996235758,185.82329429220408,185.42425466421992,185.82537875091657,185.45203988207504,185.76223221141845,185.14459246676415,185.148375924211,185.98523747129366,186.44528174493462,186.60059452382848,186.1255674911663,186.21841974835843,186.30355783039704,187.04156082030386,186.71374953072518,185.95690746977925,185.9683778132312,186.20587301347405,185.42361555900425,184.99024655297399,185.3836475913413,186.06664668442681,186.9435236849822,187.27466392191127,187.31728510046378,187.92027379898354,188.03130982490256,188.21178167080507,187.87051169667393,187.14584403578192,187.9065038813278,188.37921756505966,188.87357816984877,189.6498637138866,190.59046477777883,190.19402951514348,190.79152412945405,190.24586064508185,189.36478473991156,188.98627113224939,189.9016518732533,188.95043076993898,189.2264220751822,189.76988132717088,190.32263281475753,191.2008284390904,191.79365818900988,190.81308274995536,190.6167700374499,190.1647506156005,189.17795481486246,188.54115092102438,188.9755765851587,189.76807727571577,188.841260869056,189.62582393921912,188.9817698984407,189.30068175913766,188.60216514812782,187.7812823499553,187.0119983861223,186.727398540359,185.89789341855794,186.8269951371476,186.2303764168173,186.06594837782905,186.56636664178222,185.99795128311962,185.90793221071362,185.01599495811388,185.2962057911791,186.25143435923383,185.74991155043244,185.00211131060496,185.61874976567924,184.96285879332572,185.68430378101766,185.7647221633233,184.89095194032416,185.28492442285642,186.24241785192862,186.14361663768068,185.22280231304467,184.78058964619413,184.18382593104616,184.2917497670278,183.55930803343654,184.1516064577736,183.4481186941266,183.0350598511286,183.778744708281,184.08184400340542,184.02135355770588,183.56663706433028,183.09794679051265,183.77178390836343,184.17516217473894,185.14134390186518,185.8150086440146,186.49088249448687,185.62699174461886,185.92574632540345,186.3992523937486,186.7132513592951,186.26560823852196,186.45614218898118,186.7774224053137,187.25082132359967,187.54506158363074,187.18949045427144,187.77596486918628,187.8212044336833,187.82213904568925,187.45752137433738,188.21946840267628,188.13173931092024,187.8368275212124,188.66335126338527,189.5984051572159,188.98799682036042,188.60780403390527,189.1925460519269,189.71760114608333,190.60176362516358,189.63237063772976,188.90866662189364,188.84296540124342,189.2753662285395,188.4262452479452,188.21162545727566,188.66187547380105,189.25319054396823,190.17144974740222,190.74551285943016,191.01977490773425,190.31415062397718,189.66629721131176,190.00363641092554,190.49948563054204,190.9249998643063,190.00966612342745,190.47148880641907,189.66018545813859,190.27880919957533,190.23930336954072,190.5094023263082,189.69393606390804,190.1258256956935,189.3731431560591,190.05675126006827,189.47809743415564,189.11231793882325,188.2194981421344,188.23441868601367,188.92935226671398,188.4554258035496,189.11101533472538,189.65124605922028,188.73186283372343,187.9997298666276,187.77474650926888,188.23034965246916,189.04382690880448,189.36899708444253,188.74641514429823,188.63753113290295,189.37103515584022,189.32260450255126,188.41610894864425,189.273933716584,188.7438663332723,188.6115245721303,188.7504578079097,188.56416379660368,188.67895048344508,187.93079269304872,187.6912598470226,188.0713886078447,189.06703179189935,189.77744204876944,190.17924772528931,189.22069591423497,190.08632839331403,190.79263311624527,190.63759176433086,191.52931530307978,191.74840369587764,191.48476838879287,190.89661943353713,191.29071513423696,190.75726554822177,190.06564316572621,189.64955701027066,189.00649698683992,189.88072249665856,190.20441501960158,190.61223554611206,191.46179440710694,190.7659665159881,190.70564153324813,191.627606629394,190.79885850241408,191.66672315634787,192.46163593046367,193.39484988711774,193.44963114149868,193.23965235985816,193.7199372369796,194.45226829918101,194.99986628675833,194.52660739654675,194.10307041276246,193.65878457995132,194.51270554028451,194.59815228683874,193.8239017832093,193.16388645907864,192.89358007209376,193.78194551728666,193.21107822889462,193.06339587271214,193.81337759876624,193.2202891544439,193.71789643680677,193.3271061112173,193.18374354904518,193.63453663187101,194.22328549716622,193.56387423258275,192.84176538698375,193.719880358316,194.65322552016005,194.16849944693968,194.49802329344675,195.12556810630485,195.2526182886213,195.94008141197264,195.16801715176553,195.34776754584163,195.98932955553755,196.72115322528407,196.73373374482617,197.72949430160224,197.60564178740606,197.64851873135194,197.48996056662872,198.12498603528365,197.5621196134016,197.8593076984398,198.63223878014833,198.99678179854527,198.20630940096453,198.03709394438192,198.31848750123754,198.27860004501417,197.64997484209016,197.35134923970327,196.81930223293602,196.83452078560367,195.97922646813095,195.3511249506846,195.172493387945,195.67291469918564,194.78674016939476,194.8610292226076,194.97397885937244,194.60975529812276,194.20053262123838,194.43335501942784,194.03167148167267,193.14507491048425,193.46765688667074,194.21051229070872,193.69899626262486,193.22189243370667,192.69250074820593,193.37068479461595,192.49185406416655,191.79446584451944,191.10295627871528,191.5079983267933,190.6907650534995,191.6824616328813,192.4549986217171,193.24545727204531,193.93470471492037,194.39866844424978,195.08316496899351,194.55250805756077,194.95632895687595,194.04339712439105,194.31102824723348,194.0940391230397,194.69945464329794,194.924709496554,194.58809636253864,195.08369433134794,194.3060748372227,193.60302183125168,193.66766997147352,194.20532169006765,194.1277588577941,194.35517676686868,195.0647462788038,194.86472774017602,195.84656163631007,195.85251357359812,195.2635817853734,194.88777095312253,194.60185997840017,193.71893564146012,193.1025437247008,193.8437128290534,194.74536018026993,194.18496205238625,193.46870231442153,193.07805251330137,192.58265521703288,191.91001047892496,191.25909620057791,191.1532476665452,190.88973328610882,189.91949732787907,189.6289441762492,189.0543254148215,189.95321515388787,189.22192698344588,189.42305512493476,188.99241104489192,189.028938151896,188.90758794127032,188.6046887570992,188.87266532843933,189.26534775691107,189.44096824806184,189.3001428535208,188.45227059628814,188.65665286406875,188.20175750833005,188.8216391960159,188.43108717538416,188.91877672215924,187.95943635702133,187.35998810082674,187.35864522168413,187.75007683504373,187.12689130473882,186.794456589967,187.7421707008034,187.27944007795304,187.60904977610335,188.54160233493894,188.0161891086027,188.82851795805618,188.1866636914201,188.02057867730036,187.8788926540874,187.1795346927829,187.33986553316936,186.88569374987856,186.5974572636187,186.07692930754274,186.24169387947768,186.0222258074209,185.14640196273103,184.43650992400944,183.70911431824788,183.62058507557958,183.08789869165048,184.07468533702195,183.33913242816925,183.57946129143238,183.83631537575275,184.6178207900375,184.90414089569822,185.04398204898462,184.91624435596168,185.2387662678957,184.993847633712,184.63044045912102,184.183389400132,183.95176311722025,183.88218292454258,184.20406827377155,184.00078919017687,184.5305365701206,184.18387848045677,183.75837836693972,182.83764455793425,182.0888297748752,181.9181089401245,181.9610799504444,182.45780797069892,183.01324133668095,183.22024918999523,183.7022226182744,184.62550601921976,183.77228560624644,183.81488615460694,183.3723731986247,183.4276793282479,184.11474015703425,183.66765418695286,183.9825006001629,184.7198028168641,184.044594718609,183.47780010197312,183.7547387452796,182.76362481480464,182.37135352706537,182.65530897350982,182.43452941533178,181.74748224811628,182.47371515631676,181.53705136850476,181.90080748032779,181.93786461325362,181.1661165249534,181.8090702961199,181.64029942266643,180.69253573799506,181.34831303358078,181.81827718112618,181.10921739507467,181.84222109336406,181.69215532578528,181.85750454105437,181.8289789762348,182.70340726710856,181.78614920657128,182.48715814808384,182.76121267536655,183.51536324527115,183.59123981790617,182.64339189510792,182.59609876433387,182.14273688476533,182.30985450651497,182.31243482977152,182.3538727434352,181.4128575734794,180.700805938337,180.07560023060068,180.54609078587964,181.04804083053023,180.31842940254137,179.91494433907792,179.49149706913158,178.72757326299325,178.07560468139127,179.0154383489862,179.2877099714242,179.07513107080013,179.31438670679927,179.94502530433238,180.1987084276043,181.1236861697398,181.00735991587862,180.82750850589946,181.4423956507817,181.22785710636526,181.60623978218064,181.19491114187986,180.64493491314352,181.34217823529616,180.59626313718036,181.33299224916846,180.4260573857464,180.4318868983537,180.0500609735027,180.84523665439337,181.05374490236863,181.8688257918693,181.2350306501612,181.2371818833053,181.8183156652376,182.74643701780587,183.39154941262677,182.47397421859205,183.18057205015793,182.6216338230297,182.46100690122694,182.64683209033683,182.09953329293057,181.14667363092303,181.58650656510144,181.70783157320693,181.9721338483505,182.85095602506772,182.38883364060894,182.0202270243317,181.7918636156246,182.08730042772368,181.43087407806888,180.5774718518369,181.37869428889826,181.48098623845726,180.9565798593685,180.83277876256034,181.68022263562307,182.3514784402214,183.26074926229194,182.3657353091985,181.72704889485613,180.89690053928643,181.20827962225303,180.48498163977638,180.33702836744487,180.23027192475274,181.2128157094121,181.61467372998595,180.63873962173238,180.65719284769148,181.28306958032772,180.78785227192566,180.83110119914636,180.3598226197064,179.60043299384415,179.91097042523324,179.11896105017513,178.36586957098916,177.75779044581577,177.79631482856348,177.6143738492392,177.96497184690088,177.58822036581114,177.64179468294606,178.3303116336465,177.62175720836967,177.570048362948,177.54147492349148,178.13852335046977,178.95829594507813,178.69111446058378,177.95232355687767,177.91320952866226,177.25267237238586,177.40579380560666,178.1709704254754,177.95769746694714,178.73092284006998,179.167095228564,179.49981808988377,178.86034339061007,179.40249890321866,178.9117386220023,179.0770503631793,179.6712790345773,179.09409742662683,178.1202966310084,178.95910770539194,179.05028029158711,178.5256138909608,179.46354665560648,180.24197528604418,180.9100014846772,181.1472497615032,181.34412572300062,181.35070431930944,181.0779609363526,181.93065948225558,181.6724569676444,180.8127766745165,180.66689318651333,179.70907626207918,178.94876895053312,178.3087842585519,177.7196738217026,178.7104013748467,178.81577675882727,177.83560765953735,177.45356536330655,176.82110432675108,175.90049254056066,174.9535176185891,175.76446129661053,175.00339862238616,174.35582991177216,174.618969832547,175.5199314900674,175.17437664652243,174.41531413746998,175.15849897498265,175.93268088344485,175.7095323977992,175.1123356311582,175.05562593787909,174.73134411126375,174.8034891821444,174.5607169070281,175.21817542472854,175.94429761404172,175.81832967465743,176.55213120765984,176.62505264673382,177.34633607184514,177.98697445727885,178.05287814419717,177.11534427898005,177.46737270895392,178.45003912225366,178.78741922834888,179.53213471919298,179.79475296195596,179.02141436189413,178.2323747514747,178.21213763253763,178.58895643474534,177.97057987796143,177.9721470340155,177.1003269054927,176.30896034417674,177.27382760681212,176.45152699109167,176.58664681622759,176.32921804348007,176.0594112467952,176.5518302563578,175.68183736130595,176.01593648968264,175.2785259168595,174.3855717079714,174.80382469575852,174.779531002976,175.10034435614944,175.31907811528072,175.59724956844002,175.7193842213601,175.53993308870122,175.96705941669643,176.59705147193745,176.90861101355404,177.5359436571598,178.2062663170509,178.70412857504562,179.53785800049081,180.07874715793878,180.15861491626129,179.9955516201444,180.19002719363198,181.09327220730484,182.04569021100178,181.4492282262072,181.4198217880912,181.23401782521978,180.43402277305722,179.4703741124831,178.79376125754789,179.28465968184173,180.0927990656346,179.66471914527938,180.13028555735946,179.98490015091375,179.70382056711242,179.781550118234,179.58830783329904,179.73094626422971,178.86762845050544,179.21228273957968,179.290301584173,178.71042883116752,179.2605913411826,179.33158859424293,179.4640297750011,178.56365022761747,179.45803045947105,178.54494857834652,178.31157084601,178.43207844439894,179.17718897433951,179.83746113069355,180.19506144430488,179.6870460063219,179.5445334422402,180.4837471889332,179.9120999001898,180.10830380069092,179.82597511122003,180.53663043584675,180.68044125614688,180.53114110371098,181.1201789751649,180.89173781359568,181.61126388795674,182.43436933588237,181.87080205557868,182.08276139665395,182.40346153406426,182.18815331999213,181.64201541431248,180.67494288273156,180.79160311445594,181.20898176031187,180.75207806797698,179.85045190807432,180.6850474094972,180.04388217348605,179.41718335775658,180.07381925033405,179.53322957176715,178.99426213558763,178.4178986158222,177.47308233752847,176.96922024572268,176.41282876720652,175.94974292768165,176.63019569963217,176.53692270070314,176.52222221670672,176.98267794633284,176.0479227108881,176.1847842852585,175.96275312872604,176.84515955857933,176.139855009038,176.66381902899593,177.00848871376365,177.9072207263671,177.30815729917958,176.46001677867025,175.84896571934223,176.66566214337945,177.07682327600196,176.9680942571722,177.566409971565,177.18397244391963,177.14343631500378,177.71622219728306,178.40609431127086,177.77549423836172,177.0878024958074,176.9113755468279,175.93746304651722,176.22971403598785,176.17614431865513,175.59970541112125,175.5697725135833,175.6009496031329,175.66395047446713,174.90981967467815,175.2189783640206,174.37681682035327,174.99249807745218,175.94322519935668,176.82262405753136,177.35768841998652,178.1858982173726,178.29308573668823,178.2569865239784,178.23690820671618,178.54927747696638,179.0078083430417,178.3926099310629,178.73641357803717,178.30598816741258,179.1276408531703,179.69858389440924,180.1543659940362,179.65265513025224,178.9923527315259,179.41777350148186,180.33808337105438,180.09000463457778,181.03321836935356,181.78704865043983,181.77165460027754,182.5368986693211,181.98695016046986,182.25430550333112,183.08092930167913,184.04306069854647,183.64756649453193,183.82487555453554,183.16817859141156,183.191278711427,184.10254110163078,184.94683597469702,184.98248134879395,185.09309106320143,185.3995283236727,184.4928482118994,185.105410492979,184.82525848131627,185.55835971795022,184.81608893023804,185.0151139497757,184.11768427537754,184.14345743879676,184.7499160701409,184.08450216567144,184.28143237018958,183.50801976397634,182.95951070962474,183.89432780304924,184.5426734769717,184.21386525640264,183.8871467844583,183.90734389610589,183.3075587595813,183.90931959729642,183.06209792522714,183.76078118477017,184.10540730692446,183.87427022960037,183.37891013966873,183.34991757757962,182.7914882930927,182.66156844235957,182.4926881706342,181.49712245026603,181.90734813641757,181.69268088182434,182.53459209855646,183.44836127059534,182.77975101582706,183.0455656903796,182.88819740666077,182.51872784039006,182.07284771697596,182.38783967122436,182.7551493193023,183.65510816592723,182.9254066599533,182.0611206884496,182.52834552247077,181.81223735632375,182.06690717162564,182.57418306125328,182.23617512453347,181.78100204421207,181.99077477306128,181.44592308299616,182.12425705883652,182.6281927204691,183.1257104249671,182.52840500185266,181.8607422299683,182.3370742779225,182.1260854122229,182.8532978305593,182.31753261527047,182.04559030057862,182.14214673778042,182.4476118925959,182.4075375176035,182.46259867446497,183.0168462395668,182.57477626111358,183.06672300817445,182.64304090756923,182.17351779621094,181.2226121854037,181.775349998381,181.4462072774768,181.39526719925925,181.78157951217145,181.9401127267629,182.81818218296394,182.0842452957295,182.38043441576883,181.7488361010328,181.95960067445412,182.45443906541914,182.26506139803678,183.1156859016046,183.32950364844874,184.00783804571256,184.0172870340757,183.86640209518373,183.70150753948838,184.1546657658182,183.77268982259557,183.5584243335761,184.51688255229965,185.00527365785092,184.16261132108048,183.27056653331965,183.1601794711314,182.2332183783874,181.25789328524843,181.35048207640648,182.14850511727855,182.6433356711641,181.94790122145787,182.56263590883464,182.4159564175643,182.29235020605847,181.6670073554851,181.50330667942762,180.68387140892446,181.3565218495205,180.76082095270976,179.8834107927978,179.81767803104594,180.57757972739637,181.34533741883934,181.7372513199225,181.7500624228269,182.05604053055868,181.1623552297242,180.89407760603353,181.43164841039106,181.02054477622733,180.15598815539852,179.38497235672548,178.94838426355273,178.1130974041298,178.947048607748,178.07929231226444,178.04070125427097,177.1716567594558,176.56693442957476,176.87568235723302,177.5948899621144,177.22275126958266,176.66244841134176,175.6993224043399,175.5342562990263,175.82461482053623,175.43187396414578,175.0553401466459,174.3473630240187,174.64389759860933,174.79160279920325,174.66550116427243,175.48438617680222,175.1952883610502,175.69158828770742,175.8730221260339,175.7054852861911,175.52145902486518,175.00999174034223,174.7155839013867,175.24673164263368,176.07863885117695,175.0827305051498,175.17296914802864,174.48331085778773,175.1425917088054,175.47136101219803,175.09153447067365,174.49496366409585,174.77519881678745,175.63902512285858,174.73229037597775,175.34383066231385,175.22030428610742,176.06332895345986,175.43463827576488,175.69366733310744,175.3733479627408,175.86632597167045,175.39677799120545,174.9061867352575,174.71064869500697,174.0267385118641,174.77413809113204,174.5240194601938,174.6753314398229,173.72091802442446,173.4652174008079,173.95135957701132,173.73282413417473,174.72832344006747,174.58215081738308,173.65173451742157,174.44625955680385,174.0407874751836,174.3596173110418,175.12531783711165,175.2767420085147,176.00806549564004,175.4734557387419,174.75324295042083,175.2193658570759,174.77486855024472,173.86298973998055,173.6448018187657,173.51494774082676,173.4073517387733,173.5688108894974,174.36531787598506,174.2400435693562,174.29299127543345,173.56858572363853,173.0188777386211,172.49415456689894,172.0291571128182,171.60894793411717,171.31896646227688,170.65509752184153,171.41408249689266,171.74910703208297,171.80023582838476,170.81952181924134,170.00890387129039,169.48133035562932,170.3620346141979,170.4432144681923,169.9830297222361,170.10257244482636,169.72922435076907,170.7266493467614,170.02583591174334,170.1088097114116,169.110745718237,169.94887119578198,169.9272377109155,169.40827202890068,170.2842575320974,170.39088356262073,170.7762574404478,171.50826968159527,170.57105508539826,170.04584388202056,169.08253054553643,169.43757871352136,170.07335610315204,169.88200113503262,170.27760086301714,171.0575594981201,170.59533433336765,171.26338795665652,171.03387603955343,171.83158914092928,171.852139797993,171.20027125487104,171.78915193490684,171.69708151416853,170.7767126825638,170.9212970547378,170.85796835413203,170.18737747799605,169.37068943493068,169.45679206913337,168.55477879894897,169.3660212336108,169.66127083916217,168.90944470418617,168.80062632914633,169.2001190232113,168.825950788334,167.9634174653329,167.31458353158087,167.9703138791956,167.5032297889702,167.05321761313826,167.99859265517443,168.1244884072803,168.08791160723194,168.0102997161448,167.94834148976952,167.83494148543105,167.42000242695212,167.9424221655354,168.053416906856,167.08832305064425,167.14299666136503,166.56881697429344,166.45520688360557,166.99626087304205,166.84829714894295,167.66198632400483,168.0924209896475,168.98093735985458],"y":[41.717459436971694,41.66423035552725,41.09852369874716,41.8526024017483,41.09668924892321,40.484899977687746,39.84250459354371,39.685732691548765,40.46042989753187,40.306079489178956,40.808357200119644,41.76380387367681,40.88989771716297,40.897573246620595,41.03954077186063,40.083624738734215,40.689733549486846,41.2359045217745,41.122773746494204,40.391592748463154,39.81437455303967,39.46813149983063,40.22113990224898,39.82517904229462,39.28626574296504,39.58020219579339,39.17880052700639,38.44222222780809,39.03265090659261,38.676867682952434,37.910040015820414,37.63447478227317,36.87760609574616,36.317377779167145,36.55553849041462,36.392249992117286,36.47036105627194,36.2560569467023,35.452208139467984,35.167854068335146,35.38419418223202,34.42226079059765,35.1405951725319,35.49488903116435,35.700414140708745,35.96679121349007,35.004025367088616,34.98359339311719,34.66120819142088,34.95018461858854,35.45932093542069,35.61009099893272,35.01386037096381,35.86683709360659,35.35907715605572,35.2706414652057,35.783821168355644,35.91351721389219,36.41544431494549,35.87047806754708,35.89333028998226,36.88669729977846,35.99513677228242,36.439507451839745,37.14420963823795,37.39513771701604,38.16062642773613,38.502413500566036,39.26131868734956,39.60650709737092,39.03194697899744,38.23756567761302,38.939929615706205,38.4164670757018,38.97211671061814,39.733167693950236,38.79402709333226,37.95843147719279,37.446013575419784,37.90089279739186,37.73012321488932,37.03870652709156,36.275479457341135,36.07473824638873,36.91370945610106,36.55038313753903,37.031126777641475,36.725649543106556,36.79830666864291,36.1388786919415,36.81504624010995,36.399347234051675,37.02293843170628,36.7754291347228,37.263990624807775,37.108456305693835,36.174430748447776,36.22966375295073,35.510809152852744,34.594178618863225,33.81244937190786,34.61406552279368,34.66628791578114,34.869701984804124,34.191186134237796,35.04291434586048,34.12248299783096,34.66234797332436,33.97481909999624,34.6378018069081,34.99437237670645,35.96310080494732,36.35549417510629,36.79933936940506,36.11725230421871,35.895458637271076,34.97922486346215,34.16346432128921,33.89576862938702,34.50364022888243,34.51429459359497,35.30306971818209,34.854535000398755,34.729413190856576,35.358596763107926,35.28884141379967,35.68397625815123,35.18548116879538,35.5257617412135,35.798086249269545,36.48386350926012,37.0604472248815,36.788546128664166,36.49576183501631,35.725687260739505,36.58803997235373,36.74691988155246,37.40713934786618,36.84003087179735,37.04033746756613,37.35654099145904,37.10194592969492,36.877294015605,37.68788772588596,36.91257847007364,37.137743963394314,36.840713378507644,36.868153085932136,36.251701356843114,36.80044319294393,37.134051757864654,37.32243578135967,38.19153168052435,38.486231938935816,37.71305429935455,38.674296870362014,39.66274187900126,38.97388708079234,39.69894531741738,39.23561125388369,39.66863850830123,40.2184640802443,41.062400843482465,40.39176364382729,41.229467407334596,41.49108332302421,40.94961401075125,40.92559286346659,40.86496173031628,41.40320030786097,41.76087442273274,41.08410778315738,41.074740659445524,40.24468123726547,41.228035455569625,41.56041917484254,42.486335299909115,43.070690913591534,44.05704921344295,44.84051330201328,44.204699367750436,44.96921493113041,44.3696765685454,44.72335360571742,44.63063570391387,43.96576414210722,43.00547135109082,43.734440008644015,42.9191061379388,43.056982116773725,42.58139476273209,41.892042191233486,42.542526721954346,41.7356143691577,42.36824574833736,41.84622633922845,41.65258517442271,40.976614669431,41.2995646269992,41.78044979413971,41.718597878236324,42.01843198435381,42.8009471045807,41.852310054935515,41.2690735142678,41.3827017089352,42.049438775051385,42.068303220905364,41.70770897902548,42.39220844488591,43.04835228342563,43.9332025218755,44.66819608816877,45.54365480085835,45.3699996243231,45.3622974306345,44.66747255763039,45.10390161909163,44.32782587269321,43.73651127144694,43.388415922410786,43.51869564317167,42.778565077576786,42.53851586394012,41.773127370048314,42.471894898917526,42.367798241321,41.72892882395536,40.843185406178236,40.52144522126764,41.29445815784857,40.41112299216911,41.28165086917579,41.36698670638725,41.61927445465699,42.325158601626754,43.149487402290106,43.2160761510022,43.9532918157056,43.36824897117913,42.53365817293525,41.978223440703005,41.970495257526636,42.64597270451486,42.117135474924,42.61615455709398,42.19135243957862,43.016511430963874,42.18276025680825,41.66266891779378,42.17558087874204,41.75221916940063,42.39498327486217,43.31828533671796,43.3265931122005,44.17245334200561,44.20546013768762,43.50870751030743,42.93313865829259,43.75355414394289,44.281510170549154,44.318385323975235,44.28399437805638,43.34859627438709,43.532060637604445,42.704352863598615,41.9200409706682,41.782197228167206,42.73755320813507,41.7413263740018,41.39009508024901,41.216022222302854,40.51318324264139,40.21860444126651,40.99910438898951,41.094391976483166,41.30927974591032,41.48802215093747,41.106832672376186,40.657110430300236,39.81688839010894,39.68258541543037,40.67917741416022,40.16146756429225,39.43859405815601,38.91184859443456,38.0113033154048,37.177213776391,37.59287866996601,37.3313723676838,37.154775547795,36.84162076143548,36.13013025606051,36.69593367772177,36.8089144914411,36.13879635045305,36.71096987929195,36.08757236553356,36.847163329366595,37.56783883552998,38.525833604391664,38.38909235363826,39.11279231123626,38.15158720314503,37.55796831753105,37.93060906883329,37.186613959260285,37.788215623702854,38.03540385654196,37.03944140672684,36.96060575218871,37.884589524473995,37.170767940580845,36.686402146238834,37.16634478326887,37.955975386314094,37.33259872579947,38.17818729672581,37.58226380683482,36.640652710571885,36.73165689455345,36.387587872333825,36.47419317951426,37.17634439980611,37.22352896630764,36.797752771992236,37.14878455968574,36.70803350536153,37.25649200100452,37.46855684928596,36.64134029811248,36.101298104040325,36.87820609891787,36.64791624806821,36.11699952976778,35.45597893698141,35.193322179373354,35.49974122783169,36.0460999077186,35.07186225987971,34.28138600010425,35.04175196681172,35.754913648124784,35.17334282351658,35.537562552373856,36.35891806986183,35.36809754371643,36.115733459591866,36.59693004656583,36.586958271451294,36.92159168096259,36.52609806833789,35.56733302259818,35.62589544756338,35.006621417589486,34.55185694154352,34.43996959505603,35.33289610175416,35.824997012969106,35.15121292555705,35.35162551468238,36.16560067050159,37.13043207488954,37.12460942659527,36.14405815443024,36.06988684646785,36.45612396020442,37.20176595216617,36.64400418987498,37.51515096100047,36.87179613113403,37.4968321826309,37.07509595528245,36.371474410407245,35.731934247072786,34.760876916348934,34.33856221055612,33.667744083330035,33.80735549889505,33.534554009791464,33.96748163970187,33.29145197151229,33.96358853438869,34.233411928173155,35.20129238534719,35.179666998796165,35.396844655275345,36.217730498407036,36.62449070811272,35.9198931674473,36.83717751363292,36.51114481501281,37.09792153071612,37.36144869681448,36.64269500505179,37.10847674822435,36.35371043579653,36.576189413201064,37.18503643013537,37.2628205451183,38.11938824970275,38.85469500347972,39.663012721110135,39.077331124804914,39.98070578603074,39.73692414164543,40.618312189821154,40.94490023609251,40.42713436158374,40.856104761362076,40.36291175941005,40.47786405449733,39.75774019770324,38.98823529668152,39.692048913799226,38.86428588628769,38.390839777421206,39.160446010529995,39.24742302671075,38.96283191489056,38.59001793945208,39.1173609578982,39.19208003208041,39.32175041688606,40.25940315704793,40.86374248052016,40.86028651660308,41.11292724823579,40.72805432183668,40.12803603615612,39.775294760707766,39.32329390803352,39.54008512152359,40.04334977129474,40.10137729160488,39.55700586736202,40.46061423746869,40.74488564999774,41.267925831489265,40.637830222491175,40.82465504761785,41.4694047360681,40.797280866187066,39.80534396925941,39.481796495616436,39.915462878067046,39.81915968004614,39.2245136522688,38.228351153898984,38.47841762471944,38.45217470312491,38.1420154995285,37.86386186629534,38.469647562131286,38.48653797758743,39.420272377319634,38.44052712759003,39.18138084188104,38.44087461568415,38.14020853070542,37.17782415589318,38.04322405811399,38.01368791377172,38.80981875304133,38.03441056376323,38.13844502856955,37.88549891067669,38.67790777934715,38.01813925942406,38.69389334926382,38.21373913669959,38.56519222166389,39.3454127907753,38.921049217227846,38.65875038411468,39.22485041851178,38.8738846112974,39.598960377275944,40.145351917948574,39.20754157518968,39.8885516198352,39.087600054685026,38.65961739514023,38.661326814908534,38.25429715029895,37.84412213368341,38.813814816530794,37.93082865420729,38.89975867792964,38.8140988079831,38.67178459651768,37.747306843753904,37.90652911178768,38.09584495658055,37.18293607980013,37.94109787000343,38.59123077103868,38.68283810839057,38.01545871142298,38.362464911304414,38.78103617299348,39.491313606500626,40.443271722178906,41.40056875254959,41.783493435010314,41.6756221530959,40.87464287597686,41.64482552278787,42.08376335538924,41.589912908151746,40.96665990538895,41.21866837469861,41.37516260193661,42.32927428139374,41.42446718318388,41.191299561876804,41.40597990620881,40.94636592734605,41.71658811857924,41.08972039958462,40.21535801514983,39.97754542948678,39.764693775214255,38.93883205065504,39.637436158489436,39.05897703533992,38.95437604561448,39.012821892276406,39.631396115291864,39.7583942534402,39.89962041191757,40.584943880327046,40.27963801007718,40.27677424065769,40.12905600853264,39.24481386691332,39.76997528132051,39.84003814263269,39.49321759538725,39.82790163345635,39.13444736413658,39.563977270852774,39.72215742385015,40.206041861791164,41.10930519737303,40.16136610414833,40.244106902275234,40.77290238859132,40.68198789609596,41.660202546510845,41.16703707911074,40.19482314074412,40.95593323605135,40.353776088915765,39.92333355778828,39.58713365904987,40.56759444018826,40.27780043659732,39.48403183883056,39.00216545211151,39.65849634865299,39.124110244680196,39.41449844138697,39.7624573581852,39.98019083822146,39.0229469621554,39.08825525594875,38.1640560394153,37.29205482639372,37.22750992886722,37.61510134022683,37.331245741806924,37.81439185794443,37.543216607533395,36.70072960900143,36.859408280812204,37.774283706210554,38.06444998830557,37.41377908131108,37.97069937363267,38.81340001709759,39.37205888843164,40.22888681292534,39.85969414142892,39.05097818933427,39.79937357502058,40.324183558579534,41.03396818274632,41.027213831432164,40.431403880007565,39.69256456987932,40.62595739355311,40.319754463620484,40.04460544325411,40.39571073418483,39.42752424348146,39.978815731592476,40.09097595186904,39.70155869051814,40.372732700780034,40.37888454180211,41.15104096522555,40.877818084321916,41.826731205452234,41.60345915239304,42.21371186291799,41.68212319491431,42.30049917148426,42.91748322080821,42.892270129173994,43.742625802289695,44.73157335910946,45.43825972918421,44.626707156188786,45.48428349196911,46.02147771650925,45.24297886574641,46.19451922457665,46.481194554362446,46.994209797587246,47.46752184862271,47.068471420090646,46.93378596426919,46.51902482844889,47.36153012653813,47.348286958877,47.359970113262534,46.95962882274762,47.640894919168204,48.021545328665525,47.87027579313144,48.23775704205036,47.3868183484301,47.09344726707786,47.29068977292627,46.626361350063235,47.09072986803949,47.67898711329326,48.50586616806686,47.95776616316289,47.7597879646346,47.23128732154146,46.7998784147203,46.97641677968204,47.85180145455524,48.29164219228551,47.29277527239174,47.00087689096108,47.92615198716521,46.992149045690894,46.78007398778573,46.58553632022813,45.9338513542898,46.29239851422608,45.66552118398249,45.63001673296094,45.21135926293209,45.42886094516143,45.758879490196705,46.46760040149093,45.61407036520541,44.721026135608554,44.24984986009076,44.67756171012297,44.78490196401253,44.056115061976016,44.65583447320387,45.01918662991375,45.7862834231928,45.34587006829679,46.18986873328686,46.08765053097159,46.58282429911196,46.3031387203373,45.323279451578856,46.253452838398516,45.47985350526869,45.1718530729413,46.060289605520666,45.49553765542805,46.48136587208137,46.55856872117147,45.90710417740047,45.036991310771555,45.86359504098073,45.215495692100376,45.23090566927567,45.33922198880464,44.94079035287723,44.52826388273388,44.30230548558757,43.50868556043133,44.479555625934154,44.45309471245855,44.802350082900375,45.64857271686196,46.5546102640219,46.857183324638754,47.11461060214788,47.186297385022044,47.53485851082951,46.57173912553117,47.33121041255072,48.06308327242732,47.935744448099285,47.851854535751045,48.80514720082283,48.70025187218562,47.81235835747793,47.59330734377727,47.36416924837977,47.293261726386845,47.437083133962005,47.05254708183929,48.00801293132827,48.6223256518133,49.50697605405003,50.09790170704946,49.19838260952383,48.50063582044095,48.70194716285914,48.94494464574382,48.943783019669354,49.768303950317204,50.1633303235285,49.1799124609679,48.30324841616675,49.0548140136525,48.549669680185616,47.66051820619032,47.18179588019848,46.97126473020762,47.90916127059609,48.90514826076105,48.82640442997217,48.34433056181297,48.557101434096694,48.06796218408272,48.56949292868376,49.40764773823321,49.19203921686858,50.14150830032304,50.802884384058416,49.80853078700602,49.80074686044827,48.99823193857446,48.34802833665162,49.143003498669714,48.87941813468933,48.07239592587575,48.96293937973678,49.02354667382315,49.09263135166839,49.6432991893962,48.71767300274223,49.50845298077911,50.2297548558563,50.363485156558454,50.85388352582231,50.60254405159503,50.36446498380974,49.811624492984265,49.668597884476185,50.59340752288699,50.05266579473391,49.85613995650783,50.03578496351838,50.23761837137863,50.59392143646255,50.47745441412553,50.37493151053786,50.34481820045039,49.60873674089089,49.905934867449105,49.54336989764124,49.983501435257494,50.90120423864573,50.64803706854582,51.02485721092671,50.61538654565811,51.27580748265609,50.78752874489874,51.326876235660166,51.77843217784539,51.797138878144324,51.286268442403525,50.35275950562209,49.4378691855818,49.471085004508495,48.909464235883206,49.60330612491816,50.12669296236709,49.1897664363496,49.388634082861245,49.14307930972427,49.58424795465544,49.00598029047251,48.09640268329531,48.96868134941906,48.2056211498566,48.04978448851034,48.249204062856734,48.29254126409069,48.181481098756194,47.38612676272169,46.895699908491224,46.94646191643551,46.74753242172301,46.409356945194304,46.613069859799,46.76821933872998,46.86996387550607,47.28888716874644,46.294692013412714,47.28920320933685,47.3255037041381,48.230889085680246,47.48051043506712,46.892465573735535,47.34433272480965,46.68950655637309,45.789545899722725,45.45829960424453,45.71698554651812,46.458832984790206,47.4171941219829,47.3990341052413,47.18077394925058,48.139245393686,48.85218933643773,49.69459884893149,48.83511124458164,48.9242880390957,49.27928223274648,49.638883939478546,50.19501893268898,50.10082818567753,50.114209645893425,50.68728421954438,51.20797911239788,51.14668671460822,50.22913847025484,51.05130030680448,51.40828744880855,51.56155983265489,51.67665328737348,51.57712592603639,51.75695549044758,52.27842218847945,51.695039812941104,50.99749647453427,50.90684234770015,49.94557444471866,50.72011334495619,50.25853618001565,50.807832919061184,51.472590202931315,52.16948836389929,52.20663010980934,51.650465852580965,51.20295258471742,50.48590920632705,50.95079174404964,51.66578454198316,51.568262309767306,51.26737736957148,50.738705133553594,50.75747439963743,51.15976426238194,50.47167510399595,51.36957889422774,52.21439735312015,51.70474713714793,51.33462465647608,52.11525473650545,52.14532374031842,52.657837306614965,52.9314145501703,53.83917655330151,54.68878154316917,54.44104354502633,54.45343761565164,53.968776863534,53.132182508241385,52.99127704650164,53.84321241220459,53.71924843871966,54.405928131658584,53.982538809999824,53.16015730332583,54.14835947426036,53.78888699784875,53.13147175312042,53.485663081519306,53.94682481419295,53.45586058497429,53.059714247938246,52.86560123367235,52.461183918174356,53.41071229381487,52.565352650824934,52.404971088748425,52.30549325468019,51.66632645158097,50.75990240322426,49.93605966633186,50.14088271278888,51.10094587597996,51.751587136182934,51.8677450097166,52.27062783809379,52.026596987619996,51.3467284347862,50.75578708387911,49.87649152800441,49.022603476420045,49.47311159223318,49.870319759938866,48.956562572624534,48.55331237940118,49.0100881527178,48.696975838858634,48.67201958503574,48.200672989245504,48.78905554488301,47.79075983026996,48.59097160305828,49.56541498657316,49.7613430628553,49.31148458272219,48.77080090297386,49.17322344426066,49.81254798406735,48.99070876184851,49.118107778485864,49.35062957368791,48.792071206495166,48.254991417750716,48.16557727754116,48.96179860504344,48.823413252830505,47.930016399826854,47.34342527715489,48.00678519392386,47.94662394979969,47.62574059469625,47.18510698759928,46.55144199216738,46.52003705641255,45.6503215408884,46.08377468539402,45.304292102809995,46.23972559394315,45.34283436648548,45.04322102712467,45.02208255417645,44.884245165623724,44.601289921440184,45.55194405419752,45.108413389883935,45.538479464594275,45.69024621043354,45.14768720977008,45.74432501709089,46.08422740222886,45.9969283528626,45.45489340368658,45.440289040096104,44.60668888268992,44.00138922967017,44.785859370138496,44.92899099458009,44.213303975295275,43.316920328419656,43.60461541591212,44.324775139801204,44.48979822034016,43.60256507107988,43.571385205257684,43.64112609345466,42.88893634779379,42.76175668928772,42.81384199252352,43.777525348588824,43.487220051232725,43.36626576539129,43.801954437978566,43.66954123880714,43.39413988310844,42.840329113882035,43.20730422018096,43.175706864800304,43.98662532074377,44.956176636274904,44.07952045230195,44.64225667901337,44.93429702334106,44.106939769815654,44.45796234207228,44.1123930090107,43.20222645485774,43.036798318848014,42.38342290278524,42.2758906618692,42.603385052643716,42.403153291437775,42.15003445930779,42.09619014104828,41.30950556183234,40.48930526198819,39.69092396926135,40.1840017111972,41.0491533447057,40.10454532597214,39.27276356611401,39.813497547991574,39.564893322531134,39.365527966059744,39.577179078012705,38.91758061479777,38.95435052597895,38.212494392413646,39.049256349913776,38.54791152663529,39.23327899072319,40.01496770279482,40.05708453198895,40.13512898981571,40.44663955597207,40.130678286310285,40.36534337885678,39.83718964084983,39.25858975760639,38.461235033813864,38.38978568371385,38.13830976327881,37.38951138034463,36.70260165678337,35.94799109688029,36.09887211211026,35.83785212831572,35.73187584243715,35.256270325277,34.33793753897771,35.28152949968353,34.73367308732122,34.94635981833562,34.282245048787445,35.100512630771846,35.470625875517726,35.985067879315466,35.079415504820645,35.762349179945886,34.96498972456902,35.425950039643794,35.86663283687085,35.531918617896736,35.205980885308236,35.02663183910772,35.00800650380552,35.26194377988577,35.91488480614498,36.613037042319775,36.63745712954551,37.03595601813868,36.8905026698485,37.24626835435629,37.2588235582225,37.042580764275044,37.26938796881586,37.21991650480777,37.40920178918168,36.51129883667454,36.8647381272167,35.88117753760889,36.216495557222515,37.08029792224988,37.19072872726247,36.3149760463275,35.6488592508249,35.73888917034492,35.865041457582265,34.87295418884605,35.585005096159875,35.048288682475686,34.30584835540503,34.83226114884019,34.5379266156815,34.232661191839725,34.93204253120348,35.119399742688984,35.857985423877835,36.65121677238494,37.54511345596984,37.89942291704938,38.865827441215515,38.044520541559905,37.10113047249615,37.70573371089995,36.888070959132165,37.03904699534178,36.553351851180196,35.65199906844646,36.296063841320574,37.23480202862993,36.90267284261063,37.4280425128527,36.985310453455895,37.44953169580549,37.224116321187466,37.97731516696513,37.50873744254932,37.07182236621156,37.614494706038386,36.750837333034724,37.55277398461476,38.14275059849024,38.586456570308656,39.1231363103725,38.158330066129565,38.53690793458372,38.64428257755935,38.33084132615477,38.170891255605966,37.968341613188386,38.19857444614172,38.5576241617091,38.822845810092986,38.54628238128498,38.73506353748962,38.06277596671134,37.94724117591977,37.84222743054852,38.63959662662819,38.21727936528623,38.11682080104947,39.01172509789467,38.28020165814087,38.41917969845235,39.114751695189625,39.53671590844169,40.085836046840996,40.14040182251483,39.92518752766773,40.28986276732758,40.90476098563522,40.860598313156515,41.51208037743345,40.62015082873404,41.09906590450555,40.34695091564208,39.51659795921296,38.874270477332175,38.39001983869821,38.738365770783275,38.95013186335564,39.58577291155234,40.077806857880205,39.59396787220612,40.494181668851525,39.81686982186511,39.32493473822251,39.113139851018786,39.84568074904382,39.464193956926465,39.9216617285274,39.53837571665645,40.41036382410675,40.851172148715705,41.71677815262228,41.466133990790695,40.738563779741526,40.738019791431725,41.12721465015784,40.27150665409863,39.89648336637765,39.00407665036619,38.633739995304495,37.70586153352633,37.20665936777368,36.29223274625838,36.20688657416031,35.34784457879141,34.35495043033734,33.52231346350163,33.24223330337554,32.39024038705975,32.5358893442899,32.0349504686892,32.80402037361637,32.31453502830118,31.332724686712027,31.06243976391852,31.561402966734022,31.91845213295892,31.483813498169184,32.26505754003301,32.64906368497759,32.68991902982816,33.368102725129575,33.61862594168633,33.57088867435232,33.35111322067678,33.09573266888037,33.24786796653643,32.92013390082866,32.674077303148806,33.294293206650764,32.390801425557584,33.07836016500369,33.93194897240028,33.79511320637539,32.95424526417628,33.2074857307598,32.919335916638374,32.583157481625676,32.963531516026706,32.383142940700054,31.450807481538504,32.26820284221321,32.26229900261387,32.283348130993545,31.96645462838933,31.97116683330387,31.3794012083672,31.990854946896434,32.1372951939702,32.30084405047819,32.39430978195742,33.35299888299778,33.80639164475724,34.680925101041794,35.15805862238631,35.15290914289653,34.52251018630341,35.100647458806634,35.21061483072117,34.25713541498408,34.981686913874,34.579803322441876,35.226997355464846,35.653616884257644,35.661339298821986,34.67607441311702,35.34349048137665,35.25612417887896,34.44637987948954,34.6966198948212,33.93856533197686,33.36763506708667,33.374724444933236,33.83589532505721,34.769130697939545,34.10412521800026,33.65885503171012,34.44056557351723,35.02014300459996,34.41232697106898,35.063621785026044,34.09240680001676,34.24904119456187,35.030716869514436,35.991696815006435,36.83318777708337,36.42163659213111,35.625049371272326,35.849634430371225,35.20556101668626,35.88336913892999,36.86923346109688,36.57549588102847,35.80391048127785,36.24237977899611,36.01834804052487,35.318285941146314,35.91160268569365,36.17365233320743,36.90968743385747,36.963106320705265,37.70932607213035,38.046286795288324,38.61968735791743,39.37486110068858,39.19671150902286,39.55283649964258,40.21201341878623,39.829017295502126,40.69661010755226,40.48543584858999,39.486995537765324,39.93844225909561,39.56547628622502,39.19546178309247,39.23287236364558,38.71208178810775,37.76272063655779,38.65876981569454,39.078099293634295,39.59898155974224,39.6154831466265,39.747965153772384,39.31784160947427,39.61470125103369,40.35842136386782,41.012283992022276,40.16850181296468,39.90313365543261,39.59482999891043,39.92922733305022,40.031462263315916,40.406467352528125,41.401298305019736,40.55825059954077,40.61770636495203,40.138216155581176,39.73104326566681,39.22940319404006,39.40900042420253,38.90715740667656,38.887640341650695,38.56463937135413,37.689407287631184,38.017589894123375,38.673337328247726,38.6787854754366,38.36858568480238,37.62854911154136,36.647390951402485,36.91570929856971,36.821984589565545,36.049016021657735,36.63748284848407,36.50672250427306,35.639508470892906,35.38517410075292,35.458083434496075,35.78422583313659,34.98560547456145,35.90588903799653,35.76555378502235,35.25223890831694,35.67040266795084,35.6018457794562,34.76590005075559,35.03959494829178,35.46905900305137,35.55813539586961,35.64232686161995,36.05667906207964,35.219884345307946,35.74235093872994,36.159690591041,35.216162919066846,35.963576674461365,35.9335429049097,36.187695029657334,36.50211878772825,37.392080349847674,37.99123380193487,38.36142554599792,39.18745038844645,39.47359738079831,38.47675162088126,38.63188237976283,38.816043123137206,39.00791244395077,39.14688543928787,39.65827164566144,40.48270152695477,41.34338873485103,42.185333942528814,42.10245175799355,42.87015899736434,42.28729795617983,42.29786258051172,42.118905768729746,42.638376764953136,43.454411728307605,43.73782385978848,43.57515727635473,43.25774661870673,43.7397634270601,43.9299009735696,44.76463468046859,45.095530211459845,44.162121994420886,43.43366018123925,43.37879182677716,42.796045953873545,43.23770220996812,44.07515794504434,44.04691143706441,44.565126217436045,44.17496037995443,43.25678651686758,42.94550788542256,43.14975252887234,43.19432182237506,42.98694208357483,42.89142712717876,42.88549162494019,42.327117076609284,41.45374123333022,41.82655883021653,41.140622769948095,41.29482653271407,42.145440908148885,42.52468837285414,42.844304331578314,42.16272082179785,42.437127424869686,41.5782829108648,41.38769451295957,41.491340461652726,41.88658564956859,41.52386737987399,41.710743877105415,41.47692965250462,42.38895704317838,41.60929518286139,42.05098770791665,41.94784200331196,42.51842827536166,42.88667962048203,43.8702634149231,44.303992070723325,44.463766718283296,44.11903094872832,43.67753871064633,44.35746688535437,44.43376434594393,44.28717631055042,45.262614058330655,46.009309952612966,46.22702136263251,47.09706026222557,46.60922666452825,46.05635817395523,45.10810497868806,44.32161058904603,44.88760175742209,45.79584865178913,45.65594692481682,46.27997721778229,47.278617456089705,46.828431237023324,45.85456562228501,45.27582885604352,45.46842713980004,46.38304477091879,45.93980674166232,46.640884139575064,46.39597637113184,45.484696275088936,46.26996105723083,46.56205224106088,46.19889922859147,45.821382720954716,46.02667340869084,45.988948920276016,46.05269315652549,45.81602404266596,45.92864035721868,46.074677280616015,46.08858090173453,45.90723537001759,46.685440071858466,47.530402545351535,48.01072176359594,48.999981137458235,48.510910203680396,47.546318247914314,47.9593770862557,47.17627651756629,48.04607481183484,47.754995957482606,48.72630766686052,48.429864888545126,48.20822806051001,48.718871587421745,49.17229987308383,49.244909192901105,48.83433817140758,47.87875294778496,47.65331296483055,48.06526290765032,48.07565519493073,48.90339783066884,48.29748321743682,48.61538424855098,48.67847700044513,48.98889033636078,49.41796378605068,49.323189748451114,49.1068174559623,49.75804141629487,50.56224959064275,49.6768285902217,50.50201901374385,49.75911712879315,49.90961108542979,49.54457155615091,48.649832614231855,48.02322332188487,47.64922311576083,47.482364126481116,46.731297778431326,47.623465694021434,48.29498510342091,47.546917939092964,47.41463078092784,46.70732194604352,46.36693624360487,46.1574680339545,47.08851437177509,46.09351423662156,45.834890042897314,46.58047234080732,46.54184681735933,46.756646804045886,46.26784252654761,46.68889180989936,47.250055614858866,47.6187850558199,47.7148700254038,48.067608180921525,47.20448100892827,47.56021743360907,48.46074094297364,48.74015027098358,49.64131038170308,49.37518423888832,49.68238166999072,50.00533759826794,49.948930115439,49.854517930187285,49.913472736254334,49.19984454661608,49.45988539420068,49.35705017577857,50.067756158299744,49.17267303308472,49.75273593189195,49.27089429181069,49.75909422431141,50.20133950561285,50.88252823892981,50.4167029815726,49.63497427897528,50.10735429124907,50.326950925868005,51.124440021812916,50.45798032870516,50.97964949533343,50.24277472309768,49.631318007130176,48.763015769887716,47.80228457367048,48.49293087469414,48.24999771500006,47.433181325905025,48.35994197661057,48.937993263825774,47.93881918955594,48.215773553121835,47.643409966956824,47.325583702884614,47.066172112710774,46.618316238280386,45.65127580612898,46.60322083812207,47.26569942710921,46.76078836340457,46.03119033295661,45.08833231963217,46.08488751295954,46.89431443018839,46.762028130702674,46.62307221163064,47.47073634620756,46.68028319114819,47.59950857795775,46.637565919198096,45.648389745503664,45.99003639258444,45.87354525271803,45.64557854644954,45.95873898174614,46.432489222846925,45.906712411902845,45.420214786659926,45.74220599187538,45.81128776818514,45.98994518863037,45.73346949508414,46.35422623110935,45.66138295317069,44.68813620088622,43.75800077849999,44.60056535433978,44.49341242806986,44.33486489811912,43.52944586100057,42.66543471906334,42.1171233872883,41.56436875928193,42.246933376416564,41.61071796575561,40.807220310438424,40.88935697032139,41.12609027931467,42.07252100808546,41.10686043230817,41.77657406590879,41.14820614783093,42.00276264222339,41.25049135554582,40.41797488601878,39.418984410818666,39.98926652921364,40.793949980754405,40.090802586171776,40.897617858834565,40.06651137256995,39.162945091724396,39.85772755043581,39.339861346408725,39.73137965472415,38.988549436908215,38.9668488339521,38.34096758719534,38.28348814509809,37.68304726853967,37.66143446182832,36.74918828671798,36.75232314737514,36.92879025358707,36.545314721763134,37.31625530915335,36.377186383120716,35.72424349281937,34.8550568241626,34.19583792798221,35.18063302850351,34.699877517763525,34.89900679839775,35.30531701305881,34.98202816769481,34.77517411252484,33.973289580550045,34.48824967676774,34.4502512300387,34.99806373147294,35.69862662348896,36.328666811808944,36.40675625670701,37.253029534593225,38.068417753558606,37.969425664749,38.91458929749206,39.62658281484619,39.54417904373258,39.774249815847725,40.70404014643282,40.03640152467415,39.690150981303304,40.00520107196644,39.749181259889156,40.64044508198276,41.32719125505537,41.551130432635546,40.80097728827968,40.020959875546396,39.32700918102637,39.16690648254007,39.442063085734844,39.18734764074907,39.61685752868652,39.35275533795357,39.56625041179359,39.97794337430969,39.930389878340065,40.10810420336202,41.1045327517204,41.15001729782671,41.82278529461473,42.55305783031508,42.063556427136064,41.975624807644635,42.66938425600529,43.572796766646206,44.34260349860415,44.06216412130743,44.88845026958734,44.79502990562469,43.893209212925285,43.78936209436506,44.57362931035459,44.01774657750502,43.66805929178372,43.07067968090996,42.32153175910935,41.585557089187205,42.50216113543138,42.66317378450185,42.480907240882516,42.015144207980484,41.915668428875506,42.47430701367557,41.683105984237045,42.64173587271944,42.59961562231183,43.42381758755073,43.47626485535875,43.822771582286805,43.16450073523447,42.35216182237491,43.341653258074075,44.07191322557628,44.55414913780987,45.00907983165234,45.064547318499535,46.01378177665174,45.85568332253024,45.788597924634814,44.894925308413804,45.6422284534201,46.402086769230664,46.53787047509104,45.90183219965547,46.589684524107724,47.527618300169706,47.78652428230271,48.37641705060378,48.138711511623114,47.26814241614193,47.40747060999274,46.600470228120685,46.986724466085434,47.44284501625225,47.45343924174085,48.29604127025232,47.60416557267308,47.100178357213736,46.870565669145435,47.14821131341159,46.36818377347663,46.683646278921515,47.35600235546008,48.289516266901046,49.208383694756776,48.671097855083644,49.59715159330517,48.91104008210823,49.329666854813695,49.492061445023865,50.460392045322806,50.224614806473255,49.94840599410236,49.40132355224341,49.14878142578527,50.03023952199146,50.837261327542365,51.182316351216286,51.613714705687016,51.208918942604214,51.4927025209181,50.95989041449502,50.15864307060838,50.98665875941515,50.02835952164605,49.89414515905082,49.903013807255775,49.360874307807535,49.38999584456906,49.61511576967314,49.30697764782235,48.50282219098881,49.36465969728306,49.60023444471881,49.80879775667563,49.95310649415478,50.891017069574445,51.4666315424256,51.913519215304404,51.692481607198715,51.19742059102282,51.31138256797567,50.68070158129558,50.24061480443925,49.756732118315995,50.148297243285924,51.05755581939593,50.09597968449816,50.9504501526244,51.08601810922846,51.81293968297541,52.10246630804613,52.31364930188283,51.474598825443536,52.2009189161472,51.48083164729178,51.84076820453629,52.09838308952749,52.411280010826886,53.28736665379256,54.031814229208976,53.3791916356422,52.40131299942732,52.18239764729515,51.61427846318111,51.55106326099485,52.50287908874452,52.848997868131846,52.184903607238084,51.511529421433806,51.053968410007656,51.018650522921234,51.354285162407905,51.378952723462135,50.97736430168152,51.390101823955774,51.586040096823126,51.23912408482283,50.52813597256318,50.53334607696161,50.60200655926019,51.18485873751342,50.48329832451418,50.93891174625605,51.3631669213064,52.08261668914929,52.610450581647456,53.111553465016186,53.66605726396665,53.23154514003545,52.54870035266504,53.51799375703558,54.50243652937934,54.28732359409332,54.86464285850525,54.08623141050339,54.50719243614003,55.43668065825477,54.588462334126234,54.79736569523811,53.84519890137017,53.68330095894635,53.351519285701215,52.8734408095479,52.09829206112772,51.38561376277357,51.66720394650474,51.50374366110191,50.67452766560018,51.442567540798336,50.51850893814117,51.37178137945011,51.00877707451582,50.72269569709897,51.59978976659477,50.74642819724977,51.493838323280215,52.2599490811117,52.88828127924353,52.56758565129712,52.75725170178339,52.9473534328863,52.75448600854725,53.52910517062992,53.36956108920276,53.02303285896778,52.28142383741215,51.518256324809045,51.60844029765576,52.1181781264022,51.99186891550198,52.233804039191455,52.246476519387215,52.37619811343029,53.18684227624908,53.49563598912209,53.36692455038428,53.246787522919476,52.4080568542704,52.96616665273905,53.289491408504546,52.88767662225291,52.696965367067605,53.604437943547964,53.69727596733719,54.06337448209524,53.9924088595435,53.746173184830695,54.02800169074908,53.909161410760134,54.466089092660695,53.48283286159858,52.54299501841888,52.96565872523934,53.19769546156749,52.5354927056469,51.779749693814665,52.10473420843482,52.4487937153317,53.13849401380867,52.207600239664316,51.96522205416113,52.333552019670606,51.51799047132954,52.43605593079701,52.18733104830608,53.0007515149191,53.76664218911901,52.81381097296253,53.25139692006633,52.44093152973801,53.07132326019928,52.99853558046743,52.793979964219034,52.23612510273233,53.232902926858515,54.12891243677586,53.65379269933328,54.57176201045513,54.45204858900979,55.273387922905385,55.36860972549766,54.772914393339306,53.86692770430818,52.89391770167276,53.58228171616793,53.34355890704319,53.73351060412824,53.340154071804136,53.93178423773497,53.37305388832465,53.29520464269444,52.56584845855832,53.075393301900476,52.5539688882418,51.75176551984623,50.945851990021765,50.74922690493986,51.19999555405229,52.05935469036922,52.418247676920146,51.889673551078886,50.97235686145723,50.419228189624846,50.43770092073828,49.87185548990965,50.21409201063216,50.784213952720165,50.063720577862114,50.4620951609686,49.46927971858531,48.48766082525253,48.893513140734285,49.107788583729416,48.48441029665992,48.63796919817105,48.74088089587167,49.646245235577226,50.236603022087365,49.58401382667944,49.70962171955034,49.760898113716394,49.459520237986,49.12823126837611,48.511718925088644,47.69799785781652,48.10253666806966,48.688835084903985,48.29356153635308,48.911297000944614,49.81745716789737,50.16172051848844,50.77367760054767,49.79278436722234,50.65831021172926,49.746118725743145,49.5677397986874,49.623050063382834,49.04896611580625,49.60488674324006,50.02871019998565,50.13329925946891,49.97276458982378,50.221418069675565,50.70196812134236,50.13529164204374,49.550889786332846,48.63991078361869,48.07906118826941,48.77662178594619,48.29559569666162,47.434413419570774,47.27747794985771,47.48334128782153,46.56790129560977,45.67722487496212,46.21236608410254,46.00467032799497,45.34385722223669,45.27849281113595,46.257002615369856,45.407287306617945,44.4166163331829,44.85443863924593,45.7363982507959,44.833436496555805,45.765458203386515,46.38576084235683,46.19570489646867,46.62539665913209,46.38769867410883,46.40801104856655,47.389610725454986,48.023909012787044,47.41307635884732,48.06878173118457,48.4617034913972,49.361419702880085,49.25960605312139,49.809596836101264,49.80403435276821,49.63822367647663,50.25893078325316,50.26211687223986,50.97520893532783,51.459276178851724,50.77142527420074,51.551496870815754,51.85454122070223,51.35814915364608,52.2309583616443,52.178248988464475,52.08149824338034,52.35969594400376,51.77416423195973,51.923393826931715,51.16073605418205,50.938276775646955,51.11816903529689,50.25337380962446,50.49072907445952,50.28275178140029,49.47848725039512,50.07187944930047,50.48973511438817,49.82127524539828,50.155505628325045,49.601673622615635,49.864699703175575,49.31294257007539,48.74704670533538,47.820751920342445,47.79019358754158,48.5257127112709,47.61772621469572,48.05606699781492,48.566396991256624,48.0782912527211,48.85265554999933,48.876547125168145,47.88654574332759,48.306730007752776,48.04563542408869,47.403604215011,46.8411483829841,47.47117053018883,47.701555081643164,46.88671339536086,47.37147586978972,47.61338548222557,47.49062692420557,48.49056610232219,48.24200766067952,47.731857617385685,48.11978749465197,47.66387420101091,47.984440127853304,48.13081608666107,48.86368674226105,49.09222126239911,49.53021490480751,49.829045072663575,49.31956481654197,48.87841187464073,48.370770471170545,48.17779382131994,48.484613720327616,48.905628298874944,48.46281823189929,48.84128153277561,48.29066745471209,48.55782190198079,47.94297913229093,48.04687359277159,47.90246904781088,47.710604067891836,47.26099910167977,46.699645039159805,46.50580188445747,46.35436476115137,46.12845698185265,45.54445901559666,45.04543113196269,44.69279851624742,45.14467394631356,44.93654341623187,45.8727261996828,46.183952645398676,46.09807208366692,46.20069449720904,46.073534679599106,46.13139310386032,45.85426551429555,45.4057806939818,45.9170798342675,45.666137245018035,44.77436375198886,45.516490165609866,46.2121109161526,45.59319798229262,46.0288622463122,46.632535519078374,47.58592379745096,46.84541564900428,46.54490805976093,47.28065631352365,46.41304410621524,45.91436810977757,45.6583467409946,46.49841207219288,46.154694511089474,45.376666623633355,44.741952205542475,44.16896680789068,43.58563784696162,42.89136789413169,42.153023635502905,42.62562855007127,42.41132726799697,42.24637530883774,43.18239659676328,43.718580939807,43.96653207950294,44.88954270258546,45.21777079068124,44.250148854684085,43.79622055729851,43.59056105418131,43.9202019716613,43.006778579205275,43.2970493901521,42.967160892207175,42.181540169753134,41.32859480101615,40.53815763210878,40.19728509383276,40.92367838509381,40.57299518445507,41.18224208801985,41.539193861186504,40.74103295849636,40.67606696067378,40.4044678513892,40.44200931722298,40.14398820651695,39.89255101280287,39.08820675034076,39.50609370833263,40.33740711119026,40.04162982152775,39.20286648767069,38.945949353743345,39.329463430680335,39.42049516318366,39.66925426386297,40.376332751475275,41.01091848500073,40.15177076635882,39.275079605169594,38.90044913440943,38.40504030138254,37.92647967999801,38.00194915710017,37.80420595314354,37.12772395228967,37.31286617182195,37.68276773951948,37.52605187147856,36.78303767228499,37.48662734404206,36.98264012578875,37.4201692501083,36.93989085452631,37.39806478470564,36.50345316110179,36.07110090786591,37.03560279449448,37.17682988522574,37.454691908787936,38.30001432355493,37.540808165911585,37.484183736145496,37.788555421400815,38.12580533651635,38.87843985622749,38.17132084723562,38.05947676161304,38.49761741468683,37.73958911979571,38.072932281997055,37.95264537585899,37.08299989486113,36.90582896396518,36.649754737038165,36.20928663853556,35.62994394544512,36.1467282329686,36.826081182807684,36.116078758612275,35.87573326798156,35.193809317890555,34.76463503204286,34.768943153787404,35.283623818773776,35.27795923734084,34.38786316243932,34.92135252431035,34.07274210965261,33.40748827904463,32.58311389479786,32.327770004514605,33.30278288433328,34.018938469234854,34.616732417140156,34.39066531183198,35.244843693915755,35.96731123002246,35.00324812531471,34.650618022307754,35.06069495016709,35.95350499683991,35.90858117630705,35.02421410009265,35.137597736436874,36.08833356387913,37.03614291502163,36.57458243286237,35.74788893247023,36.00239444850013,36.69767366722226,36.51547857141122,36.638548851944506,37.16044561797753,37.0828140694648,37.168837785255164,37.390692711342126,38.18569160718471,37.2184376497753,36.80754373827949,36.11555240256712,36.4506498943083,37.12018432980403,36.48077344708145,35.999290513806045,36.28736668685451,36.47862469032407,36.36972194723785,37.216402587946504,37.49273579567671,37.84992276597768,38.838076998014,39.21613041032106,39.415980108082294,40.34666197700426,40.44020931329578,40.89742866810411,41.54935583565384,42.115275736898184,42.32627109531313,43.31921143596992,44.121505830436945,44.98263287078589,45.607957537751645,45.588855643291026,45.62894525518641,44.676962276920676,44.58178310375661,44.35161665407941,45.13561652554199,44.62184922583401,44.63740219455212,45.40299348719418,45.546382640488446,45.02001465205103,45.67034961283207,46.13639888120815,46.28698964510113,46.958148607518524,47.21218048641458,47.748678819742054,48.65757154207677,48.070558454375714,47.61374882096425,46.73936034971848,47.30523870047182,47.504750872496516,47.96892387280241,47.4945882554166,46.64910527179018,47.559981568250805,48.38939584977925,48.93103444715962,49.138014076743275,48.22185398871079,47.81796631915495,47.785209050402045,47.65582226682454,47.97146749170497,48.321200859732926,47.653178504202515,48.097561326343566,48.11194353271276,48.073080093599856,49.05748596927151,49.190995265729725,48.492308056913316,47.868027553893626,48.0561513020657,47.60797243192792,48.41113336244598,49.2865223037079,48.40315279830247,49.241623596288264,49.189358873758465,48.346857643220574,48.364001852460206,49.09655436268076,48.41211601160467,47.71542317792773,47.40774850547314,47.302024682983756,47.42715292098001,47.50911042653024,47.70417850930244,47.73384207673371,48.7038364126347,48.432163262274116,48.76683498732746,48.76855204952881,49.173003310803324,49.26988941151649,49.09447830868885,49.46667726105079,50.3870311435312,49.66754880966619,48.6848249444738,48.388628111220896,49.049094347283244,49.25898361299187,48.27980742836371,47.2988923387602,46.61027634097263,46.013099962845445,46.666954304557294,46.87472253246233,47.12416866282001,47.052233883179724,47.24087525345385,46.53176249843091,45.991954343393445,46.47517988132313,46.0539318844676,46.18383429571986,47.06655355170369,47.09965907968581,47.82916213851422,47.23846860975027,46.882526400033385,47.53782976511866,46.67325512273237,47.12349515967071,47.119904848281294,47.10257156100124,47.01195098180324,47.91819675499573,48.734046888072044,48.5300849811174,49.25084234168753,49.43554261699319,49.14891519024968,48.36869831616059,47.77640220057219,47.793613174930215,47.270163969136775,47.13918996695429,46.27755183214322,46.577063381671906,46.41172222327441,45.573780936188996,46.447573512326926,45.74986416986212,45.35469881724566,45.575622201897204,46.44538404233754,46.51113047078252,47.48068850208074,48.14687968278304,47.37359075760469,47.782862920314074,48.00835209293291,48.63424251507968,49.00470708543435,48.042062340304255,48.50955198984593,47.85637546842918,47.694238387513906,47.04531168146059,46.664728191681206,47.60948078753427,47.785002742893994,47.39325351314619,46.634471827186644,46.80796544998884,45.891519643832,45.726882732938975,45.65516593726352,46.43243590602651,46.10640856763348,46.23593171592802,46.95290843350813,47.457503613550216,46.87754620146006,46.2232871549204,45.75256489077583,45.07295442279428,44.75832788692787,45.284241209272295,44.47874911688268,44.09636036818847,43.596999700181186,44.48749859910458,44.43817374436185,44.083202265203,44.451310474425554,44.34521270962432,44.47607966605574,43.903328942134976,44.184025910217315,43.91262460872531,42.969687486533076,43.08775248331949,43.685920260846615,42.764335826504976,42.50115794595331,42.044336734339595,42.30509830079973,41.857278934214264,41.40721637196839,40.98611128749326,41.9639586256817,42.620412609539926,43.178144893143326,43.55541714467108,42.850357736926526,42.848627989180386,43.27378894062713,44.00402862019837,43.37687795050442,43.47774862777442,43.21920435549691,43.30505560897291,43.76698609627783,43.10447294358164,42.963411004748195,42.39731106441468,42.5665364167653,42.06293651694432,42.76676317071542,43.67632829537615,44.63925964012742,44.89666433399543,45.42606219602749,46.196401056367904,46.30555105628446,46.72062354721129,47.458566940855235,47.79322741692886,47.72295138891786,46.89071947708726,46.447187959216535,45.776421987917274,46.70643898751587,46.29775483766571,46.65868179220706,47.12063025915995,48.106115862261504,48.372461444698274,48.255386588163674,47.97897629067302,47.38665119372308,48.179961550980806,47.94728519162163,48.187324572354555,47.64913096418604,47.34411097643897,46.61065046209842,45.821398766711354,46.77416740776971,46.101825083605945,46.05303665762767,46.598443201743066,46.51464895531535,47.394003455061466,47.3920131274499,46.4128312561661,46.36117697041482,47.134203860070556,48.03224553959444,47.514744146727026,46.8742298213765,47.39871408091858,47.20836228085682,46.44298075418919,47.17578257061541,47.466200853232294,48.09062753757462,48.03989454777911,48.31116744503379,48.703332292381674,49.11080462951213,48.89048434142023,49.12775968434289,50.00186243373901,49.09737848537043,48.96165063884109,48.808576392475516,48.236482818610966,47.26352527970448,46.5839087953791,45.69785851240158,46.13104323251173,45.83148436713964,46.17002909211442,46.93979348987341,46.782416698057204,46.00889694551006,45.59175220457837,45.6366328317672,45.34591448260471,46.09523952845484,46.44433021731675,47.33254615962505,46.698042921721935,46.01945448666811,45.19837117660791,46.13439462194219,46.44445639429614,46.22002931544557,46.558716864325106,46.55634666699916,47.509288255125284,47.601502808742225,48.37645032303408,48.0262676612474,48.72008799621835,48.47481464687735,49.47233148338273,49.96651941211894,50.93464675126597,50.48237515054643,50.261462141759694,49.37202304974198,49.48173616454005,48.92567572230473,48.9609107831493,49.769143452867866,48.946325002703816,49.045737634878606,49.700091229751706,49.51032347232103,49.51765530090779,49.66861768020317,49.66376256849617,49.67965904576704,50.33570779161528,50.28597669163719,50.75313863996416,51.66932652145624,51.72569740843028,51.28198567871004,51.860674189869314,51.995909000281245,51.06804770650342,50.14709892962128,50.520102699287236,50.36461632652208,50.18262093141675,49.38521436275914,48.78697838913649,48.986122004222125,48.293733245227486,49.09241759357974,49.85985151445493,50.787910835817456,50.37985602999106,50.345674521289766,50.72694154875353,49.94763070298359,50.21077988576144,49.27158551989123,48.69604770373553,48.06161204725504,48.55723558086902,47.75932915089652,47.86151503492147,47.07387975184247,47.17928476491943,46.8615601696074,46.22626623744145,46.2701796987094,46.9476741431281,46.81665211869404,47.67509040655568,48.25879991427064,49.2208406557329,50.140720549505204,50.175559863913804,49.67977952910587,49.921456238254905,50.401235414203256,50.61899740854278,50.55032625142485,50.87045887252316,51.83289422886446,52.02330586826429,52.14467707881704,53.02149467589334,53.52079234179109,52.58365736389533,52.29625345300883,51.68889894988388,52.479951760265976,51.78869828116149,51.2750797951594,50.434801048599184,49.78952719736844,48.87808506609872,49.81398059241474,50.705503017641604,50.93713388545439,51.71206739684567,51.19678810797632,50.34783354913816,50.815210034139454,50.12178433779627,49.27267435006797,49.73801510594785,49.245389259886,50.03250205563381,49.97481744037941,49.31909507745877,48.45573731698096,48.64745942782611,48.68990993266925,49.620329670608044,49.40460928529501,50.2037035417743,50.703941856045276,50.25902302423492,50.416717497166246,49.96109704626724,50.820152811240405,50.73336666962132,49.92390576284379,49.40440769866109,48.86664973432198,49.111110928002745,48.84157211193815,49.24833487998694,49.70258057350293,49.51563979219645,50.49952666182071,49.50286252936348,50.35708349198103,50.55855963099748,50.1280959979631,49.20775893796235,48.30368115659803,48.13262133486569,47.1742887259461,47.575824617408216,46.687906050588936,46.04629115946591,45.59037213632837,46.40799444494769,45.67350519774482,46.13987556193024,46.99054060038179,47.368743158876896,46.73197218310088,46.17383220279589,46.94925813609734,46.569890967570245,46.686494178604335,46.69350959127769,47.45726739894599,47.60829984489828,46.85402040183544,46.802356818225235,45.94372565485537,44.976170977111906,44.367902357596904,44.81946697132662,44.15408308291808,43.54249865235761,43.05617234669626,42.15750797279179,41.434652837459,41.16595517937094,40.945266250986606,40.090437427628785,40.0368416570127,39.98101236624643,39.19774212734774,40.173872608691454,40.892038230318576,40.624779753386974,41.482174484059215,41.865720483940095,42.48786696512252,42.60637049283832,42.89078374905512,43.09389193961397,42.24996173195541,41.46175629273057,41.77730005513877,41.27406749455258,40.62512179091573,40.1445592129603,39.93186682602391,40.34827677113935,39.88338177325204,40.31873238552362,41.12071497319266,40.17171507747844,39.91588643239811,39.399958255235106,39.735165742691606,39.898514203261584,40.46303137391806,39.839822102338076,40.661450686398894,39.93880397360772,39.846577807329595,40.271425989922136,39.60788713535294,39.05994628695771,38.85974169848487,38.685933735221624,39.45149801298976,40.21571317734197,41.14889978663996,40.371798906009644,41.10780817968771,40.76272389665246,40.84915418550372,41.06300507998094,41.76575506059453,42.587260702159256,43.08962354529649,42.734774781856686,41.79253137856722,42.077325433027,42.81889901030809,42.92141463281587,43.325699030887336,43.76896740542725,43.873405284713954,44.25603013206273,43.82319075521082,43.27989961905405,42.32969401078299,41.96524589788169,42.146387278568,41.309424933977425,41.89823515061289,41.355761245358735,40.377176662907004,40.92443893710151,40.560404082760215,40.87336372304708,41.617496279999614,41.34824593691155,40.81151995342225,40.120700222905725,40.9384607411921,40.41858520312235,40.500452663283795,41.49657887639478,42.01377766299993,42.15439357236028,42.2900481056422,41.63548722863197,40.776051632128656,40.05410509137437,39.78484246414155,39.770733094308525,40.120424000546336,40.43076406279579,39.83848576107994,40.74620860489085,40.117094945628196,39.90198536822572,39.18071902683005,38.7298364979215,37.80860410584137,36.877012117765844,36.361119071953,36.07847305294126,36.5862465724349,36.94002311350778,37.07230689097196,36.29980363231152,37.082067529670894,37.7446034620516,36.993035970721394,37.471100508701056,36.491718830075115,36.06602555094287,35.58892847504467,34.929262705147266,34.642527317628264,34.53834858909249,34.845928019843996,35.53803773038089,35.61934933997691,34.940401196014136,34.94759096391499,34.86268374696374,35.85014775907621,36.482341094408184,36.20392706384882,36.84189535025507,36.71291183214635,36.63464090274647,36.28122346661985,35.952895608730614,36.16239314433187,35.62685751961544,34.8244258062914,33.9407704398036,33.062893146649,33.96403541183099,33.90403069881722,33.859765731263906,33.16468299925327,32.387892675586045,31.512584032025188,30.820471538230777,29.945119778160006,30.217807829380035,29.970691245049238,30.41718295030296,31.09438241319731,31.64948743674904,31.16295472672209,30.80433581257239,31.39344539726153,31.450986268464476,32.10709448857233,32.918901252094656,33.86068347096443,33.39946687920019,32.89424215722829,32.628086228854954,33.39867260912433,33.22627410851419,32.86821086285636,33.13938885368407,33.50092298723757,32.62050036666915,32.83405325328931,33.279357112478465,32.845771592110395,33.431917612440884,34.140587794128805,34.901086235418916,34.497044034767896,33.661366450600326,34.234701815992594,34.49798660725355,34.40869371825829,34.82620652485639,35.11764394491911,34.14756030449644,33.609070079401135,33.96627795416862,33.4801949551329,33.32499605091289,33.55644493550062,33.518908275756985,34.360183799639344,33.62510186061263,32.89114453550428,33.625453129410744,34.04260585596785,34.25424064975232,35.24695396004245,35.04905826412141,35.67050534998998,35.299265418201685,35.25006139092147,35.13618055451661,35.4382676105015,35.19297688314691,35.912289798259735,36.40470782015473,35.84399066027254,34.89556636381894,34.99906433839351,34.30810176115483,34.60660402523354,33.68668172787875,33.61422427603975,33.6686264523305,34.08254559338093,33.41031386330724,33.7322789253667,33.90101413894445,33.58541379310191,33.612798230256885,34.283547677565366,33.591051161289215,32.83053099364042,33.8304969323799,34.51969886897132,33.78726186323911,33.68057251535356,33.288343351799995,34.27099017472938,33.39073813147843,32.63317217770964,33.603291018866,32.698931459803134,32.33370993938297,32.02235719189048,31.241589097771794,30.849195949267596,31.637514050118625,31.330713288858533,32.21424524392933,32.38134156167507,32.354859536048025,32.81283967802301,32.436494291294366,31.520453537348658,32.42225197143853,32.15995504288003,32.33201179560274,31.82797720376402,30.991845021490008,31.105337714776397,30.21780203608796,30.552542665973306,31.223090294748545,31.095490735955536,31.73608933016658,30.891736197751015,30.84519425360486,31.02517419261858,30.05459589837119,31.052993300370872,31.076117143500596,30.828151402063668,31.548765184357762,31.49427241552621,31.871078854892403,31.754703036975116,32.35988592868671,33.12699245288968,33.93697216082364,33.02495016530156,33.4596723462455,33.753782654646784,34.375307011883706,33.386842829640955,33.99366943864152,33.442383035086095,33.82619981979951,33.70356576750055,34.26254243962467,35.1463385601528,34.517094566486776,34.53459846973419,35.30341410450637,35.23474443471059,34.54796652356163,34.031246207654476,34.620597809553146,34.037156249862164,33.2922620899044,33.907783864066005,34.79815942561254,34.88877549394965,34.14992821402848,33.99311345862225,33.58061904460192,33.21334309177473,33.874653866514564,33.407957973424345,32.539743275381625,31.713960229884833,32.293951036874205,33.016148526687175,33.44094344833866,32.91630888450891,32.45795548008755,31.947122239507735,32.73279478261247,32.29036495555192,32.25940142571926,32.22654044488445,32.46101987361908,32.98864779016003,33.313884963747114,34.22744284430519,35.166544089559466,34.57771544344723,33.793519685044885,34.49770419578999,33.90503539890051,32.94550177641213,32.707297591492534,32.90360997058451,33.08368831221014,32.7296553500928,32.80663232784718,32.95457351906225,32.56576558481902,32.862657599616796,32.482059312053025,32.17387267621234,32.857828913256526,32.42263870546594,32.67829939723015,32.160655764862895,32.10065770056099,32.582780512049794,32.33219111338258,31.580763936042786,32.116699058096856,32.50291025219485,32.321672823280096,32.28895720420405,32.607785559259355,32.579140804708004,32.772157901432365,32.19232671987265,31.96541127189994,32.308260942809284,32.753476176876575,32.6501628048718,32.460498119704425,31.676083040889353,32.0903316703625,32.711020819377154,33.27469348628074,33.59263495821506,33.75431644869968,34.70394940068945,34.50778059149161,34.75472033722326,34.25104730529711,34.317030334379524,33.6352830324322,33.08301901491359,33.65548096690327,34.50621362403035,35.167908863630146,34.89527031267062,34.64189302036539,34.385219221469015,34.81344924494624,34.893010791391134,33.93893311358988,34.10067405970767,33.478717498946935,33.69969358528033,33.45597931323573,33.43904599081725,34.291020311415195,34.21859843004495,35.188289262820035,34.65706453891471,35.05104141961783,35.362356478814036,35.448471578303725,36.346816706471145,35.857679513283074,35.98738707276061,35.632712146732956,34.82165826624259,35.61794395791367,35.113027608487755,34.88772774487734,35.1558995381929,35.751088929362595,36.069103145971894,36.488436384592205,36.76766656571999,37.14162777271122,36.427742519415915,36.84691566321999,37.191850828006864,36.72093818616122,37.45057743927464,38.400342498440295,38.795192076824605,39.408991410862654,38.74598781624809,38.4629600350745,39.41373660741374,38.423995417077094,39.39563430007547,39.303518175147474,39.13958803098649,39.404470359906554,39.011050302535295,38.98422127356753,38.845800913870335,39.656906847376376,39.62089740578085,38.69721483066678,39.64152831910178,38.739331925753504,39.586581860203296,39.26546101598069,39.40244008600712,39.2540145451203,39.2017049244605,38.99793742969632,38.16041968297213,37.239665074739605,37.519271455239505,37.45600065216422,36.465222095604986,36.919600875582546,37.14091811655089,37.37910734768957,36.52450006082654,35.64584537781775,36.391775043681264,35.81032870942727,35.67890917463228,36.63893805118278,35.95569280348718,36.09863296197727,35.71198519738391,35.524706261232495,35.947784257587045,35.67665708530694,36.59646283974871,37.17979353759438,37.8395727975294,37.10176980961114,37.21914214966819,37.311614798381925,37.57963123265654,38.011756831780076,37.99228877341375,38.676957794465125,39.43494424922392,39.14583956962451,38.68041228549555,38.88731664838269,39.750060125719756,38.95446519041434,38.36258410848677,38.44311579596251,38.220179005060345,38.172294344287366,37.49133380316198,36.5908155022189,36.83256362238899,36.46947002457455,36.540991275105625,35.55853588273749,35.44056800985709,35.31172702694312,35.90255751693621,36.64849584409967,37.09180192928761,37.5116553301923,37.03225322207436,37.01957078790292,37.8553131762892,37.78429467789829,37.450463029555976,36.78385048964992,36.50020435359329,36.00804104702547,35.09041733620688,34.547275634948164,33.71306865103543,33.01572409784421,32.23749247333035,31.42840401781723,31.811036557890475,32.10391997965053,33.00029405858368,32.91476642712951,33.1319204014726,33.91292402846739,33.33812457975,33.897455228026956,33.906918313354254,33.46301501477137,34.05659536132589,34.93870510067791,34.79324592323974,35.02654426544905,34.23270412348211,33.40231056511402,33.916339869610965,34.413942865561694,34.31561263138428,35.298610804602504,35.73860315931961,36.58749707788229,36.9930263068527,36.43550815433264,35.8259783773683,35.92005301686004,35.23027418507263,34.66923162806779,35.62227657297626,34.70745615288615,34.225257923826575,34.07640076102689,34.40979000600055,33.65095392335206,33.29604915669188,32.593442319426686,33.123080123215914,32.86889656772837,32.746711236890405,32.009008259512484,31.700963012874126,32.68751832423732,31.80197732942179,31.83021471556276,32.65781925758347,31.826104643289,32.03239113185555,32.90324955340475,33.035878968425095,32.588797827251256,32.52315736422315,33.20331560308114,33.32944626407698,33.53848969191313,34.223275495227426,34.3884769086726,34.99877038272098,34.31509066326544,33.851556981448084,33.88384906295687,34.79158239066601,34.22397226188332,34.41809286829084,35.37360356701538,35.88642938574776,36.675483473576605,35.81587104965001,35.13365409243852,34.406357881147414,34.425367357674986,34.2020384054631,33.719159099273384,33.56878637941554,32.878925166558474,33.51763086626306,34.294922180939466,33.96002895664424,33.80305369198322,32.910834663081914,32.38820321718231,32.779684936627746,32.0128330886364,31.203514751046896,30.76531112752855,30.903030540328473,31.610604098066688,30.746413545683026,31.440093922428787,31.987901888787746,32.53968791430816,33.44457087852061,32.7749562934041,33.35465685976669,34.083891104441136,33.171843303367496,33.183612876571715,32.9963518679142,32.52686586230993,33.00615381868556,33.28151983814314,33.733822151087224,33.045724818017334,32.08071467233822,31.302004994358867,30.84640597505495,31.57465957896784,31.69877191213891,30.77700510714203,30.411016704514623,30.054940389934927,30.704737124964595,30.255576201714575,30.851103134918958,30.535342588555068,30.970167415216565,30.224102678708732,29.43709693150595,28.8066441048868,27.859666601754725,28.62591957207769,28.875786409247667,29.599244134500623,29.779102207161486,29.799096170347184,30.48768975958228,31.09508411306888,30.355556735768914,30.75292099453509,30.807553078513592,31.618129930924624,31.487847917713225,32.246298915706575,33.02353503508493,32.603304598946124,31.679310131818056,32.081378544680774,32.11267247842625,31.188453348353505,31.308181238360703,31.208420848939568,30.21769230766222,31.02170711243525,31.474299111403525,30.795990754384547,30.80273409280926,31.058806655928493,30.45288288919255,30.31061716005206,29.68524164846167,30.335238941479474,29.58833510708064,29.69393144501373,29.03871457790956,29.57928676297888,28.776874956209213,29.590430804528296,29.746527234558016,30.255295307841152,31.110482991673052,31.366302341222763,31.668028936255723,31.267758776433766,30.515119936782867,31.215399131178856,30.564264386426657,30.183204433415085,29.802458363119513,29.227378444746137,30.079848449211568,29.36709316028282,29.37332550715655,28.889503507874906,28.955679613165557,28.48358145589009,27.833083135075867,27.831575526390225,28.288778101094067,28.947151616681367,27.970098914578557,28.42611312586814,28.924844179768115,28.92821624968201,29.259619921445847,29.28242747951299,28.86110856756568,29.6847811806947,29.009037480223924,28.126908091362566,27.96650306880474,28.247523021884263,27.53560057654977,27.296155982650816,27.190530519001186,26.302139840088785,25.96637904085219,26.885061050299555,26.34187770728022,26.397562516853213,25.495559016242623,24.65325481723994,24.950349180027843,24.16306939162314,23.571320379618555,23.627115888055414,23.4476910661906,22.820123170502484,23.38416416430846,23.70609402982518,22.93082735594362,23.72876268159598,23.319311881437898,23.320262546185404,22.874680540524423,23.721861962229013,24.135413966607302,23.776312955655158,23.443912327755243,24.100671374239028,23.83343436010182,24.824335246812552,24.038784590084106,24.545948408078402,24.54548189835623,24.146919370628893,23.815808737184852,24.640666670631617,25.552546817809343,25.96443252079189,25.35786382202059,24.950797276571393,24.266541472170502,23.60726304119453,23.22750472277403,22.772839291021228,22.00369762117043,22.102705317549407,22.60973913455382,22.09439445985481,21.636553559452295,20.837217662483454,20.225258495658636,21.09342594118789,21.93598738592118,22.62210343685001,23.03060394152999,23.089019244536757,23.720405084080994,22.924782417714596,22.160840906668454,22.93648992991075,23.41720856213942,24.11781672621146,24.656856792978942,24.176531387027353,23.410082216840237,22.584107565227896,22.53663937514648,22.636254888027906,22.181356635876,22.37369879288599,22.226449819281697,22.514913935679942,22.700362923089415,23.526131125632674,22.610834252089262,22.09847398707643,22.47291289549321,22.81272025872022,22.900614036247134,21.924290837254375,22.19349640700966,22.607886750251055,23.16448238072917,23.248336729593575,22.59812272945419,21.620783099438995,21.75865937070921,22.569791658315808,21.76605410221964,22.762912948150188,21.870630339253694,20.910289228428155,21.298291234765202,22.087125845253468,22.741906138602644,23.725009377580136,24.190535130444914,23.39922730717808,24.046713079791516,24.590244822204113,25.031892156694084,25.651856160722673,25.84484600648284,26.619825208559632,25.869999542366713,26.37901266058907,25.513837072066963,26.225978962145746,25.860930333845317,26.276975210290402,25.627540371380746,25.376527200452983,25.64667668985203,26.080371140968055,25.72012763330713,25.797242150176316,26.155177269596606,26.916255694814026,26.45805967738852,26.49865661934018,26.237094928044826,26.057075870223343,26.52897677058354,27.04544543614611,27.428719194605947,27.27566998777911,27.340786071959883,26.760537596885115,26.42988868523389,27.185706369113177,27.50477903103456,26.582194758113474,25.972506765276194,25.242351695895195,25.635578052140772,24.650992000475526,24.973151828162372,24.826048428192735,24.198613945394754,23.696475030388683,23.214348253794014,22.742552404291928,22.3366660871543,22.01314292475581,22.507548136636615,21.71763585647568,21.22551348665729,20.673038399778306,21.01889081252739,21.09101979760453,20.29362188698724,19.71797421760857,20.544742203317583,20.48572684172541,20.59939485695213,20.597438202239573,21.420201129745692,22.105657135602087,21.617014137562364,22.40966120734811,22.232920571230352,22.075951321516186,21.346705818083137,21.991772633977234,21.50270880619064,20.64058651542291,19.66203186661005,18.99126793956384,19.382883104495704,20.05523557169363,19.144533457700163,18.976559550035745,19.57564636738971,18.759983191266656,18.6549225137569,18.294650283642113,19.27469699503854,19.341859989333898,18.989837197121233,19.97807815624401,20.7179111125879,20.225519218482077,20.37308796821162,20.177396258804947,20.610596837475896,21.051202374044806,21.716356612741947,21.210729340091348,21.9440098865889,22.2742077591829,22.92556385928765,21.989608999807388,21.25727920141071,21.21104330290109,20.684480872936547,20.507972833700478,20.34612768748775,20.58499385137111,19.598308172542602,19.193228665739298,18.48917876323685,18.052341694012284,18.434370723553002,18.34778350405395,17.583452361170202,17.907628452870995,17.26177639979869,17.148156984243542,16.575074434280396,17.042061633896083,17.689988455269486,17.660443901550025,18.38824588712305,18.40034502092749,17.71299953944981,16.997618709225208,17.026206181850284,16.847756416536868,16.484571745153517,15.703439340461046,15.292179629672319,14.866605343762785,14.95360531937331,14.61178585095331,14.432254695799202,14.899237364996225,15.53267159871757,14.55874306615442,15.085505093913525,14.70269186096266,13.924878473393619,13.535593593493104,12.726422802079469,13.059750766027719,12.709999238140881,12.426298632286489,12.868865148164332,12.367481530178338,11.407440410926938,11.92976688221097,11.988026028499007,12.8252640273422,12.919535321649164,13.769547685049474,12.900997030548751,12.581692285835743,12.638939670752734,13.43173600314185,13.046777966432273,13.022527039982378,13.499620791524649,13.5541245858185,13.734693178441375,14.004725898150355,14.32348966319114,13.325994445476681,12.717470709234476,13.225259061902761,13.400961230508983,13.337691370397806,13.78867404581979,13.501588702667505,12.600661552976817,12.693796874489635,13.3055922803469,14.003316671121866,14.563200617674738,13.57274459535256,13.158532705157995,12.35091950232163,12.976634999737144,12.64572935551405,11.99945218116045,12.933076401241124,13.192156072705984,13.632277465891093,13.745020410511643,13.441945293918252,12.643173793330789,12.491389317438006,12.305013911798596,12.223557343706489,12.132779130712152,12.122922085225582,11.526359719224274,11.530683927237988,10.837991428095847,11.79155769944191,11.840412352699786,11.040725368540734,10.11192426038906,10.548320955596864,9.552052209153771,10.544695819262415,9.9812448839657,9.87653588829562,10.40719847381115,10.174103677738458,10.682032943237573,9.74183459021151,10.001517058350146,10.214278574101627,11.121397206559777,10.201244710478932,9.211170978844166,8.633835304528475,9.22991871042177,10.120808027219027,10.922377328854054,11.479608146939427,11.797068742103875,11.74341712705791,11.419653863180429,12.097777931019664,12.522448231000453,12.663955610245466,12.145471041090786,12.942105583380908,13.592208666261286,13.233989395666867,13.23644026182592,13.023629230912775,12.683017937932163,12.43508952576667,12.324575028847903,11.423146359156817,11.513393827248365,11.421201257966459,11.09503915393725,12.084286997560412,11.684800976421684,11.08973440900445,10.159691888839006,10.874222911894321,10.995875713415444,10.619234318379313,10.927573728840798,11.013098465278745,10.095191515050828,9.779693011194468,10.366997443605214,9.549573163036257,8.621667684055865,7.742959893774241,8.43217799719423,8.566520988475531,8.935630957596004,9.448914858978242,9.114281503483653,9.174297869205475,9.80478384718299,9.37990341661498,9.900636339560151,9.447434376459569,10.00577918998897,9.972269524354488,10.576444052625448,9.977105436380953,8.995500557124615,8.024791809730232,8.49317852826789,8.181857199408114,8.61458281101659,9.237159056589007,8.34333077352494,8.187825498636812,7.659655868075788,7.99438349949196,7.071069063618779,7.780112497974187,8.304046465549618,8.502017994876951,8.018207448534667,8.174373179208487,7.362082693260163,7.74984914669767,7.030138164758682,7.7510331477969885,7.908040605951101,8.562334082089365,8.266063743736595,8.022813038434833,8.903748946264386,8.685301753226668,8.328951307106763,7.868032045662403,7.724252820480615,7.688634096644819,8.119682215154171,7.499513439834118,7.156684282235801,7.406070457305759,6.944649296812713,6.680563864763826,7.165873082820326,7.263619480654597,6.372352214995772,6.185226145200431,5.821434522047639,5.979357421398163,6.874280200339854,6.596159926149994,6.244372139219195,6.736534378491342,5.992273500189185,6.574772893451154,6.553624409250915,6.4600156201049685,6.093479775823653,5.7458122367970645,5.532337232492864,5.016106499359012,4.163140974007547,4.885576400440186,4.849255459848791,4.910539088770747,4.2878291523084044,4.088346810080111,3.5793566782958806,3.5957484301179647,3.6645794305950403,2.8620542394928634,2.791370691731572,2.5925709512084723,1.9530536029487848,2.050116049591452,2.266368769109249,2.537625520955771,3.0275622992776334,3.9074975941330194,4.334289371035993,4.544529119040817,4.2984849023632705,4.979530964512378,5.87282926030457,6.410556701477617,5.644287059549242,5.898644488770515,6.540506144519895,6.788047588896006,7.493364082183689,7.288935891352594,7.337497197557241,7.468468172475696,8.23285469878465,7.373939841520041,6.57563256053254,6.300791488960385,5.651295361109078,5.056979078333825,4.833263670094311,5.130846760701388,5.956729744095355,6.77318000420928,7.121020455379039,6.189128418918699,6.067984032910317,7.060390963219106,7.87071270449087,8.524235759861767,9.084505092352629,8.545156149659306,8.644933895673603,9.6078250836581,8.903770733624697,9.703907104674727,9.567750259302557,9.950372538063675,10.319783516228199,10.396384574938565,10.267356436699629,11.055759314913303,11.180682932958007,11.271152244880795,10.916061795316637,11.333533714525402,10.423371484968811,10.109097233973444,10.618603895418346,11.253118216991425,11.72570211486891,11.22552567301318,11.453090850263834,11.477184581104666,12.14199631055817,13.053959481883794,13.620392490644008,14.089013188611716,14.983502537943423,14.525929115712643,15.375176323577762,14.586684555746615,14.732192432042211,14.778106017038226,15.038912493735552,15.07058224780485,15.015490429941565,15.842030882369727,16.228362805675715,15.572462137322873,14.996671026106924,15.255367922596633,15.000640562269837,14.279095043893903,14.427213414106518,13.566047068219632,12.709389111958444,12.628622540272772,13.511807398870587,13.186215213499963,13.882095099426806,14.24020526977256,14.584826706908643,15.183587378822267,15.280364562291652,14.971821341197938,15.21430773800239,16.15903699537739,15.398486629594117,15.114983597304672,14.680605829227716,14.1273184097372,13.415768276900053,13.159465157892555,13.176881588529795,13.549241298809648,14.489670300856233,14.206968276295811,14.012776703573763,14.505586849991232,14.054095522034913,13.142513902392238,14.036612189374864,14.616938893217593,15.290333137847483,15.533093094825745,14.770500395447016,14.354331687558442,14.20106744626537,13.519379287492484,13.19279401237145,13.234266402199864,12.998353397939354,13.329911444801837,13.556225448846817,13.230970856267959,13.086050365120173,13.47133760759607,13.094668976496905,12.857139868661761,13.554017612710595,14.447531263809651,13.863373811356723,14.162184164859354,14.298443175852299,13.531069921329618,14.184830768033862,14.106906066648662,13.456517254933715,12.869517342653126,13.83809422235936,13.624469914939255,13.904440015088767,13.991069198586047,13.37791906716302,13.515614809002727,12.7561427494511,13.286299329251051,13.549715061672032,13.743612420279533,14.240797601640224,13.38605847582221,14.133034044411033,13.5996761941351,14.507208256516606,14.57540299044922,14.797742489725351,15.289851033128798,14.64142596302554,13.873519143089652,14.290762172080576,13.652888142038137,14.543993631843477,14.990129016339779,14.94695954117924,14.00198413990438,13.061152697075158,13.6577980206348,14.413912402000278,14.85744939930737,15.651090149767697,15.24657790036872,15.241667672991753,14.324082585982978,13.409430305939168,12.594064931385219,11.605194633360952,10.73180648079142,10.40064355917275,9.79864408960566,9.780310306232423,8.981508142780513,8.230783662758768,9.086975780781358,8.670488553121686,8.608610183000565,9.224222391378134,8.640843184199184,8.566169107332826,7.8974010134115815,7.414421477820724,7.099544552154839,8.065015761647373,7.950250777415931,7.395618648733944,6.7784993895329535,6.3892276477999985,6.0649267276749015,5.947341688908637,6.532667112536728,5.936357654631138,5.84499157499522,6.672856023069471,5.8124813553877175,4.949088193010539,4.71648731501773,5.4972813543863595,5.717155190184712,6.331179925240576,6.5406039003282785,6.607859356794506,7.482405839022249,6.772539263125509,5.940228867344558,5.486303267534822,4.534208633936942,5.295492533128709,5.754418565891683,6.442005948163569,7.0277600502595305,7.103619369678199,7.95208735158667,7.554095710627735,7.191866939421743,7.023211192339659,6.07401209557429,5.868077377323061,6.842604153323919,5.951332468539476,5.8999733733944595,5.891342442017049,6.820026299916208,7.612755530048162,7.440861590672284,6.4635601988993585,7.460863305721432,6.56908201565966,7.050130493938923,6.052127261646092,6.310530579648912,5.466446318197995,4.726969309616834,5.391458332538605,4.8693961864337325,5.409843339584768,5.38406028598547,5.587911123409867,5.167840790003538,5.699825892690569,4.917124280706048,4.720466638915241,4.651532451622188,3.8910528807900846,4.06413080310449,4.808989947196096,4.046994825359434,3.4871139437891543,4.4634306631051,5.21336798556149,6.1583495531231165,6.039834263268858,5.836544611025602,5.043733074795455,5.595474273432046,5.903111103456467,5.694852756801993,5.774886158294976,6.320835683029145,6.764484022744,7.225853108800948,8.211560756433755,7.610685126390308,8.232283560093492,8.83275037817657,8.673035057261586,7.801588091533631,7.318351780530065,7.207430780399591,6.326897528488189,6.222164303995669,6.011569730006158,5.579576026648283,4.642868224997073,3.7360934331081808,3.8925886396318674,4.220100475009531,4.68515036161989,5.2891182149760425,5.754704039543867,4.948625537101179,5.586697685997933,5.389633491635323,6.29038265440613,5.99489470012486,6.6449136808514595,7.574910788796842,7.170284434687346,6.743983128108084,7.738265372812748,7.12562959920615,6.553129963111132,5.606397601775825,4.694922762922943,5.286984980106354,5.608167438302189,4.866074584424496,5.359318137168884,5.014617863111198,5.649407090619206,4.6682206257246435,4.187884597107768,5.094132692553103,4.5060040429234505,3.5163884544745088,3.9507555095478892,3.130596481729299,3.728352411650121,2.863273026421666,3.2160323346033692,2.483951458707452,3.3059095474891365,3.953911229968071,2.963801296427846,3.706310016103089,4.24796537309885,4.681804093066603,3.898054381366819,3.4981763139367104,3.2940347706899047,3.875868392176926,3.0332295219413936,3.383967990987003,3.7406189227476716,3.5313864410854876,3.277648088056594,2.6396795311011374,2.089424340054393,1.2783015058375895,1.1073880097828805,0.3066271864809096,-0.18533956864848733,-0.9323818003758788,-0.83615602273494,0.03261994570493698,-0.3462042436003685,-0.06049007410183549,0.01858069607988,-0.36683919047936797,0.3754317630082369,-0.22835603542625904,-1.171690464951098,-2.1461183354258537,-2.349582115188241,-2.91476387437433,-3.654426211491227,-3.1557266670279205,-2.7721058260649443,-2.6436300156638026,-1.959217268973589,-1.814598892815411,-1.8495881669223309,-1.4951103399507701,-1.8912152480334044,-1.8785012196749449,-1.6858729007653892,-1.1917749107815325,-0.39022513572126627,-0.8105699885636568,0.09021231113001704,0.9875978701747954,0.5540059553459287,0.7636117325164378,1.3252513408660889,0.7868418907746673,1.1665674364194274,1.0571127086877823,1.0256841159425676,0.5590740335173905,0.3603169792331755,0.8581283940002322,0.5820843488909304,0.5943413083441556,1.5605634348466992,1.5932331760413945,2.385601783171296,2.6820402895100415,3.160286941099912,2.901813045144081,2.8000388415530324,2.2173828301019967,1.8221827852539718,0.9766559321433306,1.8611590089276433,1.0833321027457714,0.18815645901486278,0.4357255012728274,0.4643777273595333,-0.22445436706766486,0.6375187044031918,1.3456188146956265,1.8093587285839021,2.6317022535949945,1.9417783892713487,2.199357092846185,2.2958386093378067,2.0732090496458113,2.944847862701863,2.898418601602316,1.9576953458599746,2.4328767168335617,2.1598669313825667,2.848116898909211,3.6697208052501082,2.957011270802468,2.3211328219622374,2.2594103668816388,2.578050293959677,2.033874929882586,1.0883605028502643,0.44546470465138555,0.5042568552307785,1.1260854941792786,1.947168075479567,1.6251025469973683,1.8158448836766183,1.2856677756644785,1.4949410231783986,1.8592076390050352,2.2424754318781197,1.9180503352545202,2.3137080343440175,2.1675382694229484,1.2536984463222325,1.0990067305974662,1.3247510744258761,1.7352605634368956,2.3098555356264114,3.0486012985929847,3.5151355457492173,3.2000597855076194,3.2443066905252635,2.8090013107284904,3.6812781803309917,4.220013779122382,4.778368320781738,4.6274222964420915,4.220447429455817,4.086559311021119,3.2396920560859144,3.3178273146040738,2.734141817782074,2.2756829177960753,1.445758962072432,1.463903596624732,1.5066717178560793,2.0443781283684075,3.017029302660376,2.8688372024334967,1.9433329841122031,1.3290513074025512,0.4433393916115165,0.31382698426023126,-0.42946757981553674,-0.583018543664366,-1.1808321992866695,-0.5143714216537774,-0.6935199745930731,-1.2853475315496325,-0.5120228286832571,0.2644174392335117,1.0570688778534532,0.47410327661782503,-0.11357366060838103,-0.19533240795135498,0.21905593806877732,1.119076471310109,0.5851732660084963,0.9239088254980743,1.4877172033302486,1.942689225077629,1.1983805452473462,0.5151511509902775,0.31565745221450925,0.3527639303356409,-0.0042113992385566235,0.3858434362336993,0.19637848623096943,-0.04438744904473424,0.5025646481662989,0.7176183476112783,1.4676663153804839,0.7872748239897192,0.34391934238374233,0.14773030346259475,0.8250828799791634,1.3236048710532486,0.35924920020624995,1.1200559744611382,1.619322163052857,1.407391453627497,1.540195676498115,0.5845713820308447,0.919273495208472,0.6509044677950442,0.14503273740410805,0.7958377320319414,0.8451563399285078,1.7731252387166023,1.0098536373116076,0.522610493004322,1.24062224291265,2.1635299450717866,2.510969773400575,1.7486965316347778,1.15351309068501,1.5513395490124822,2.237497080117464,1.352582042105496,1.5308446325361729,1.5061064786277711,0.7085075764916837,0.14171321922913194,0.7259163684211671,0.9743479415774345,0.5651615741662681,0.14166794996708632,1.1012011705897748,1.3466815282590687,0.47981470124796033,-0.01828142534941435,-0.586831159889698,0.13501301174983382,-0.04525802005082369,-0.1432808474637568,0.38559478847309947,0.7095004487782717,0.8774804514832795,0.49134139344096184,0.46939910063520074,-0.14310263004153967,-0.22701634094119072,-0.5643675955943763,-0.3422541581094265,0.45872118789702654,1.0538487993180752,1.961071471683681,1.5181123465299606,1.2235591686330736,1.7749202479608357,0.8295135144144297,-0.09688728814944625,0.3044016743078828,1.1379430363886058,1.4154058783315122,1.6401405553333461,1.8937857928685844,2.309699259698391,2.698157171253115,1.8431635536253452,2.7974872570484877,3.3677770630456507,3.0854941848665476,2.2490073116496205,1.6898315935395658,0.9202846423722804,0.3148290002718568,-0.21225233329460025,0.6110747000202537,0.6824665125459433,1.5639711301773787,1.9499148498289287,2.5163694634102285,3.0588192166760564,3.760990639217198,2.9181714900769293,2.1374883954413235,1.6265674447640777,1.9228116660378873,1.8179318634793162,1.2972910292446613,1.6655179052613676,0.8104651900939643,1.3213730975985527,0.6876714932732284,0.4546840190887451,1.2642249427735806,0.6355832675471902,0.016669762786477804,-0.2239047740586102,-0.4569006720557809,0.016784051898866892,0.01370780635625124,-0.7762058419175446,-0.779687331058085,-0.0653991256840527,0.40401856042444706,-0.015170084312558174,-0.5175181431695819,-1.0146474167704582,-1.2060157917439938,-0.6170642534270883,0.16465731337666512,0.047005875036120415,0.18177918111905456,1.1809943774715066,1.2052111430093646,0.6548994765616953,1.0055115125142038,1.205159374512732,0.96241665026173,0.9058212153613567,1.1054222527891397,0.23539545154199004,-0.7170424745418131,-0.3064862941391766,0.14107757294550538,0.17414611810818315,-0.22647773707285523,0.44128350261598825,0.4003369412384927,1.0565446577966213,1.6307279085740447,1.5747467707842588,0.5780076556839049,0.5516690504737198,1.537536547984928,2.323366394266486,1.5897713555023074,2.2085868208669126,1.3849359164014459,1.4967535650357604,1.1627102228812873,0.206269727088511,-0.1957847559824586,-0.7739919265732169,-1.4657343793660402,-2.4459141143597662,-1.6686801319010556,-1.7690453543327749,-2.0917309024371207,-2.6851623808033764,-2.8079952923581004,-3.221989171113819,-3.1764156986027956,-3.5622000261209905,-3.061608144082129,-4.058715815190226,-3.261367317289114,-3.4882831247523427,-2.7752249310724437,-3.209802328143269,-2.902563316281885,-1.9133635242469609,-2.206250053830445,-2.216269490774721,-1.7070588492788374,-1.556248021312058,-1.1897044270299375,-0.25498928129673004,0.19483713852241635,-0.5285539450123906,-0.18854467663913965,-0.30816679215058684,-0.1560826664790511,-0.8076668232679367,0.1416944796219468,-0.48494060011580586,0.23088631127029657,-0.5683152745477855,-0.6172479931265116,-0.26700636092573404,0.5546333664096892,0.3076713220216334,1.2833863152191043,0.31872023129835725,0.1992066246457398,-0.7400249117054045,-0.7803845251910388,-0.02085486752912402,-0.7536205048672855,-0.6455023419111967,-0.24707155488431454,-0.9067441457882524,-0.1922486750409007,0.6128188413567841,0.7425422826781869,1.2887036390602589,0.8207845576107502,0.534362961538136,0.5633285813964903,-0.07273534778505564,-0.38154654018580914,-1.3206397923640907,-1.9954217439517379,-1.3747791252098978,-2.2845138614065945,-2.700518822763115,-3.668115086853504,-3.14447177387774,-2.583735699765384,-2.158785596024245,-2.0915357912890613,-1.2992464285343885,-0.6657951339147985,-0.7868158658966422,-1.0631393259391189,-0.9062579474411905,-1.7949919365346432,-1.04166374867782,-1.0519551658071578,-1.0915387473069131,-2.0219473093748093,-2.4733364125713706,-1.66062220511958,-1.468645790591836,-1.94854631787166,-1.6452374146319926,-2.0685205664485693,-2.1601661653257906,-2.413603366818279,-3.150607818271965,-2.9548524017445743,-3.163163621444255,-2.54334252839908,-1.7090453361161053,-1.208740762900561,-2.0422032102942467,-1.2864569621160626,-1.6667006639763713,-2.353118791244924,-1.9335512882098556,-1.683955489192158,-0.9745402568951249,-0.5919972900301218,0.2337934384122491,0.15033120568841696,0.9416279620490968,0.6329656490124762,1.3764618183486164,1.3280715164728463,0.38053630106151104,0.5883560101501644,1.129747134167701,2.0823867223225534,2.2925350023433566,1.9985806518234313,1.8798550693318248,1.3255903138779104,0.711525340564549,1.704842561390251,1.6290387879125774,0.8652188940905035,0.9042913690209389,0.3493682723492384,0.8018616680055857,1.538088430184871,2.2746354546397924,2.7071003578603268,2.9851089669391513,2.226751979906112,1.5727143362164497,1.1534149679355323,1.5804370054975152,1.374196330551058,1.178261762484908,0.2515634233132005,1.0683233453892171,0.5267979316413403,1.0005197604186833,1.0867039053700864,1.9903054456226528,2.736698820721358,1.7998919296078384,1.619271764997393,0.9278565477579832,0.9640697576105595,0.6606335733085871,1.2191598387435079,0.2624232009984553,1.1386711215600371,1.4927650168538094,0.5515901995822787,-0.10587678058072925,0.7591143772006035,1.2369409720413387,2.2012645779177547,2.1533523541875184,2.1811314118094742,2.9844772713258862,3.737536208704114,3.647834485396743,4.476495877839625,3.7836525752209127,2.8675948646850884,2.3985863006673753,1.6319886045530438,1.9445459600538015,1.2903930554166436,1.1774031464010477,0.7418122915551066,1.047191349323839,1.5420971289277077,0.6251763785257936,-0.3226950871758163,-0.4279503971338272,0.23921748902648687,-0.5132965813390911,-0.3814976750873029,0.16165535198524594,0.9434156809002161,1.6654707239940763,2.6232328643091023,3.6072239708155394,4.416137675754726,3.9842717330902815,4.932085049338639,5.2499490939080715,5.383035391103476,5.241072985343635,4.980223055463284,4.308708774857223,4.9495926685631275,4.828339167870581,4.011016291566193,3.144389233086258,3.08768751937896,3.677271434571594,4.0257318345829844,3.1908891177736223,3.9344034558162093,3.0124158267863095,2.6856706691905856,3.6554738390259445,3.6936078700236976,2.873157862108201,3.5956677650101483,3.062031169887632,2.6426521791145205,1.8968749209307134,1.6420988943427801,2.5084067843854427,2.7326001771725714,2.1132896742783487,1.7538638669066131,1.5509026432409883,0.7802666421048343,0.20562125789001584,0.6178791718557477,0.9384925123304129,1.1652797497808933,0.26099718268960714,-0.5794107089750469,0.20811719726771116,0.2036198447458446,1.1880587991327047,2.055634270887822,2.372843097895384,3.081189112737775,2.9768859590403736,2.569866216275841,2.805765783879906,3.0949841677211225,4.089055582880974,4.141539520584047,4.380333110690117,4.052275951951742,3.0936544397845864,3.4607966574840248,2.9112250776961446,3.0914500444196165,2.207649321295321,1.7860637959092855,1.0301858270540833,0.8793479111045599,0.6546290088444948,-0.2178701013326645,0.5277743940241635,0.1284191976301372,0.562526639085263,0.9966356582008302,1.6985045638866723,1.9400683604180813,2.436769548803568,3.0062184506095946,3.8999106036499143,4.137250077910721,4.55513783171773,4.83523824904114,4.937842279206961,4.870344193652272,4.690835899673402,4.023537556640804,4.404122407082468,4.39865502063185,4.970394999720156,5.336097582709044,5.929922968149185,5.206125812139362,5.222331327851862,5.601847417652607,5.054456492420286,4.431354351341724,3.690933840814978,4.114374634809792,3.1536430814303458,3.9444795520976186,3.478875613771379,4.196767069865018,3.234941703733057,2.371195964515209,2.563642029184848,3.223961499519646,3.7870238102041185,3.517644905950874,2.856403135228902,1.8705869633704424,1.891392670571804,1.6711639887653291,1.2018980216234922,0.8233893569558859,-0.13731953455135226,-0.4023785633035004,-1.3082068786025047,-0.7273962632752955,-1.2175346775911748,-1.6017805808223784,-1.3885597297921777,-2.360607407055795,-1.5608538938686252,-1.8995241862721741,-2.7528109499253333,-3.1556789819151163,-2.492232871707529,-1.6507481033913791,-1.5303833577781916,-1.0333326342515647,-0.4369645365513861,-1.3159788656048477,-0.4762917165644467,0.12117370311170816,-0.14750261278823018,0.23235237039625645,-0.2130162757821381,-0.3249438344500959,-0.3117080256342888,-0.6467396914958954,-0.5493888659402728,-1.1585582988336682,-1.605621315073222,-1.1618674476630986,-0.9388728328049183,-1.3369630677625537,-0.70450294110924,-1.345529097598046,-0.6455927337519825,-1.6304290485568345,-1.138101832009852,-1.589272728189826,-0.7508700243197381,-0.320967479608953,-1.100818476639688,-0.7628837279044092,-0.8570373677648604,-0.007847909349948168,0.36694449791684747,-0.32662915205582976,-0.18369005667045712,-0.3999544829130173,0.5931425164453685,1.2487024394795299,2.0867558112367988,2.665258661378175,2.349207194522023,1.5024137678556144,1.9446984687820077,1.4991040844470263,1.4043551073409617,0.5150605570524931,0.5433268398046494,1.2344246935099363,1.2284017447382212,1.0460385433398187,1.5207507302984595,2.176298371516168,2.054270493797958,1.7652102052234113,1.2880405755713582,1.8441258622333407,1.1372146788053215,0.9643996879458427,1.6701031029224396,1.9353084918111563,1.4328483287245035,2.2676942269317806,2.8913323837332428,3.479944732505828,3.8408752493560314,4.344578913412988,4.25502125127241,4.8165519828908145,5.54405043553561,4.891279275063425,4.238285397179425,3.9463587827049196,4.79380773101002,4.494368689134717,5.054315590765327,5.857137919403613,6.032800558954477,6.539075859822333,6.512216993607581,5.571832648478448,6.036696134600788,5.392422193195671,5.870108810253441,4.955576259177178,4.9236595164984465,5.4363095769658685,6.099192363675684,5.839951066765934,5.533390150405467,5.2495443522930145,5.88319643586874,5.276299719698727,6.268840680830181,5.591934502590448,5.632330440916121,5.260790496133268,5.884153479710221,5.97964831488207,6.44079773966223,6.370227137114853,7.315373291261494,7.86051740963012,8.831717380788177,8.435960644390434,7.9312765509821475,7.8870917852036655,8.122356579639018,7.411753041204065,8.221370347309858,8.826919235289097,9.65011160261929,8.733008356764913,8.905471989884973,9.3387824841775,10.263566541485488,10.925761376973242,10.124413555022329,11.003753868862987,11.135797244496644,11.497394491452724,11.738872961141169,11.152672131545842,10.709276732522994,10.785335009917617,10.37967376690358,10.399140884634107,11.318660511169583,11.683922476135194,10.819461465347558,10.117308895569295,9.74994880752638,10.564845414832234,9.75821212027222,10.096458659972996,9.211819250602275,9.845739777665585,9.725665648002177,9.793475373648107,9.634893248323351,9.543067022692412,9.724689667578787,9.233406682964414,9.009488303214312,9.705787783488631,9.321389604825526,9.765077739953995,9.227886036038399,8.284431657288224,8.323281220626086,8.634135297499597,7.88345692679286,7.573404627386481,8.33662429684773,7.934596057515591,7.262274609412998,7.393047070130706,6.939224453177303,6.53340384690091,6.0546700856648386,5.955163781531155,5.76645034365356,5.57152241980657,4.8179195816628635,5.735705294646323,5.922696211375296,5.456381763331592,4.650702082552016,4.29042598977685,3.7645530737936497,4.253563455305994,3.676871126051992,4.6621577041223645,3.9771943036466837,3.9884627358987927,3.1739183263853192,2.7534930100664496,3.1582543407566845,3.077468307223171,3.945918354205787,4.660943197086453,4.356106044258922,4.188780430238694,5.132808053866029,4.310041220858693,3.3178830915130675,4.226542562711984,4.862608233932406,5.11523059848696,4.335119101218879,4.059923252090812,4.636541344225407,5.0223898543044925,4.974449318367988,5.866155850701034,5.964892441406846,5.895120542496443,6.714291974902153,6.269484042655677,6.70782940229401,5.897795375436544,4.898953713476658,5.510335775092244,5.102352235931903,4.400779678486288,5.063636278733611,4.193213222082704,3.576638256665319,3.9811875764280558,4.121939869597554,4.932088426314294,4.597340096253902,5.159179412294179,4.867717248853296,5.450435173232108,6.131525953300297,6.428173849824816,6.485413728281856,5.810438350774348,6.094788264483213,6.651146742980927,6.446479111444205,7.321780249476433,6.833065698388964,5.998386066406965,5.586996179074049,6.035374594386667,5.93978103203699,6.934912282973528,7.412561574485153,7.655451600905508,7.973031162284315,8.824176765512675,9.2649707631208,9.162115132436156,9.735630779527128,10.446167001035064,10.888110732659698,11.51342576323077,10.82690417394042,11.460126284509897,11.945614417549223,11.119982054457068,12.056330770719796,12.114942141342908,12.766816605813801,12.453912534285337,12.431216756813228,12.65461907768622,12.062538348603994,11.230023877229542,10.761576788965613,11.720769230276346,12.32822895841673,11.938654597848654,10.999310833401978,10.148821210954338,9.341813510283828,8.904630975332111,9.16677055042237,8.800267653074116,7.8544571860693395,8.12489301757887,8.811107817105949,8.91832470567897,9.017328599933535,8.894879007246345,8.486424630507827,8.141105524729937,8.964870173949748,9.77542263129726,9.575162755325437,8.81496781250462,9.428326298948377,8.74219406535849,8.050018329638988,7.611628707963973,6.640314593911171,7.3181122611276805,7.998968083411455,7.048894288018346,6.881934835575521,6.600525212474167,6.4562263689003885,5.757116763386875,5.87358369352296,6.740286493673921,6.393985972739756,6.256235822103918,6.144283802714199,5.39153055800125,5.318122248630971,4.4495558072812855,3.6889219768345356,3.797439284622669,3.5813196673989296,4.054650207050145,3.811594973318279,4.469068651553243,4.804143724031746,4.802245415747166,3.988179648760706,3.8008329826407135,2.965761115308851,3.821766988374293,3.714896713849157,3.3343772194348276,3.540734776761383,3.530578444711864,3.5652672848664224,4.0693499953486025,3.595881081186235,4.589392942842096,3.8554572756402194,4.551730326842517,4.024076935835183,4.473818539176136,3.85804230440408,3.907158860936761,4.539099992252886,4.895593580789864,4.298616667743772,4.787487747613341,4.101412672549486,3.4312688005156815,2.6130385529249907,3.10859715892002,3.231033408548683,3.0375841693021357,3.6427064300514758,3.2312570000067353,2.508759632706642,3.2882076036185026,3.3243925273418427,3.2339462572708726,3.28810673719272,2.4162966441363096,1.613087376113981,0.8491049790754914,0.8855854994617403,0.4624131880700588,0.22789699910208583,0.9606342162005603,0.8754930417053401,1.2429540092125535,1.916247765533626,1.8847705200314522,2.4785553687252104,2.3342294711619616,2.983199254143983,3.5504821352660656,3.262754211202264,2.6894335043616593,2.95258713606745,3.7737911203876138,4.398663497064263,3.539555324241519,2.6291578700765967,3.2176904007792473,3.0041974908672273,3.5550768934190273,3.510590573772788,3.9084974844008684,3.4850891223177314,3.2589699369855225,4.042133096605539,3.1142529426142573,3.383353539276868,3.5817658132873476,4.450427348259836,4.63619545288384,5.433494587894529,5.6210044249892235,6.4855291484855115,6.63530346378684,6.832677940838039,5.924477193504572,5.451701833400875,5.665670976508409,5.17283449601382,4.895697329659015,4.465553977526724,4.477367974817753,4.683014423586428,4.662970046978444,5.504310359247029,5.619072915054858,5.0854590074159205,5.979138891212642,6.145230412483215,5.494383070617914,5.279082130175084,4.567276343237609,5.020886122249067,5.511056879535317,5.274511623661965,6.224232238251716,6.103370372205973,6.7878092816099524,6.756024479866028,6.390870228875428,7.042017748579383,6.9832905707880855,6.193127130623907,6.31318985670805,5.984396809246391,6.469399245455861,6.1630154312588274,6.035102904774249,6.409749839454889,5.741978804580867,6.5613805232569575,6.683876993134618,5.795596013776958,6.534460065886378,6.902883648406714,6.118216431234032,6.977208368014544,7.194625847041607,6.837595466058701,7.688071188516915,8.123755699954927,9.123443085234612,9.076713430229574,9.79649671819061,9.151329436339438,10.05277024814859,9.874492252711207,9.53018145263195,9.80112119903788,9.120447929482907,8.778920632787049,9.078792217187583,8.518555245827883,8.415867558214813,9.345306172035635,10.259367247112095,10.991533632855862,10.184306758455932,9.599427541252226,8.762369316071272,8.64864358631894,8.602643094956875,7.784213199280202,7.302855597343296,7.593182547017932,8.44013295788318,8.875047880224884,9.004227237775922,8.993721649516374,9.718512342311442,9.150295583996922,8.462941163685173,7.904441585764289,8.070890523027629,7.388783981092274,6.980893807020038,6.818628055974841,7.171218213159591,6.490614742506295,7.038472245447338,7.617722937371582,6.819398788269609,6.188167644664645,6.941966984421015,6.89610390830785,7.855404376983643,8.494821676053107,8.95955195883289,9.941316267941147,9.86390553181991,10.035354360472411,9.523055820725858,9.185215056408197,9.938318218570203,9.351749218534678,10.096602185629308,10.423418445512652,9.805527777876705,9.65650422964245,9.315685464069247,8.728382863104343,8.21149482158944,8.37051348388195,9.302655856590718,8.772977423388511,8.356479979120195,7.686600268352777,7.468948000576347,7.413101913873106,6.637062109075487,6.088342531584203,5.985443403478712,6.450878020841628,7.303663634695113,6.433580496348441,6.283673046622425,6.529737425036728,6.2788564204238355,6.83822825178504,6.48191334027797,7.040249635465443,6.351629078388214,5.8269382189027965,6.399982170667499,6.4070736998692155,6.184143439400941,5.880377762950957,6.42495504906401,6.228039402980357,6.1337497271597385,6.714187863748521,7.430297031998634,6.968808749224991,6.026229897048324,5.983678280841559,6.799502577632666,6.917096179444343,7.224370437674224,6.47452451614663,6.163142318371683,5.942009735386819,6.316915069706738,6.815600465517491,6.85661023715511,5.931158194318414,6.632350974250585,7.150079951155931,6.604944668710232,7.557900150772184,8.21535463258624,9.129786565899849,8.38164210272953,8.991443732753396,9.071552649140358,8.384225990157574,8.81957749882713,8.334454845171422,9.316256089136004,9.51449631806463,10.17019028449431,10.703094251919538,10.969263721257448,10.549690339714289,10.011119889561087,10.413990054745227,10.293128871824592,9.976903002243489,9.870235094800591,9.498691307380795,8.828865333925933,7.918375452980399,8.735590484924614,8.540404555387795,8.696631978731602,9.080220399424434,9.20487754419446,9.522031588945538,10.001445867586881,9.023009980563074,8.03486685687676,7.942725306842476,7.432846306823194,6.981065031141043,6.2654606443829834,5.620243303477764,6.067352373152971,6.639573370106518,6.287383125629276,5.757551772054285,6.333631835877895,5.5388743546791375,6.23032838338986,6.211806772276759,5.645126984920353,6.280757214874029,6.845238927286118,7.400098511949182,7.1520493547432125,7.870713256765157,8.386405986268073,9.340968989301473,8.401599000673741,8.969313233625144,8.802310526836663,8.789362326730043,7.931115595623851,7.464030318427831,8.368261818774045,8.298481684643775,7.6877210340462625,7.373141599353403,7.087235408835113,6.228318287525326,5.391460394486785,4.670760412234813,5.127323481719941,4.829244421795011,5.736464178655297,5.823546681553125,5.677506606094539,5.202861138153821,5.793217767495662,5.768792761489749,6.089537086896598,6.809214025735855,7.756640470586717,6.867433859501034,6.756721897050738,7.41295031318441,7.460759087000042,8.063083791173995,9.02450358076021,8.87734653847292,8.519101039506495,9.076870602089912,8.785105677787215,8.34909030655399,8.93504759343341,8.619519393891096,7.905820214189589,7.785611595027149,6.797956079710275,6.184997622389346,5.6440858780406415,4.746614036615938,4.218881072010845,4.003519637975842,3.898832308128476,4.7853187113069,4.450499544385821,3.624043257907033,4.129814432468265,4.9809533497318625,4.919758431147784,3.92920940509066,4.193392614834011,4.227976236958057,3.328300734516233,2.48717434797436,2.140980050433427,1.9568443708121777,2.074166568927467,1.4774398277513683,2.001358496490866,2.9288489809259772,3.4377147485502064,3.4336639875546098,3.4480828680098057,3.560655791312456,3.071113572921604,3.058676307089627,2.162659327033907,2.4837077115662396,2.8085818821564317,2.554795741569251,3.4156432868912816,3.555969432927668,2.6214036708697677,2.538596256170422,1.7172996308654547,2.3565461016260087,2.633404134772718,2.428214320912957,2.534777928609401,3.1010403968393803,3.431941811926663,3.140889332164079,3.8436314687132835,4.543616912793368,3.9700834774412215,4.842582100071013,5.062267708592117,4.3611661666072905,4.961897598579526,4.124567718245089,4.266516441479325,3.9882312580011785,4.517788305878639,4.333690913859755,4.176921923179179,3.7326566437259316,4.3248101132921875,5.3006760366261005,5.788148508872837,6.286079793702811,6.123274368233979,5.327188346069306,5.664270276203752,6.506000491324812,6.208030084148049,6.446431032847613,6.369822824373841,6.9382684654556215,7.871103403158486,7.632125538773835,6.851885973941535,6.586539662908763,7.124063627328724,7.405511134304106,7.5931055303663015,8.471249310299754,7.596521186642349,7.871770030353218,8.113939926028252,9.022247017361224,9.451705067418516,9.695412122644484,8.909228348173201,8.132676367647946,8.120198221411556,8.819120940286666,9.68441061489284,8.732721874956042,8.311747559346259,8.219010923523456,8.059702901635319,8.61372647760436,9.545512369368225,8.763900005724281,8.316655122675002,8.561068320646882,8.488801867701113,9.292755127418786,8.589874785859138,8.777020276058465,8.308625299017876,7.555705990642309,7.667844746261835,7.484952157828957,6.608901069033891,7.467832658439875,8.010475203860551,7.589139978867024,6.830695406533778,6.377723465207964,6.8864959217607975,6.04354560514912,5.1622615228407085,4.643793862778693,5.3960683844052255,5.937767846044153,5.764065122697502,6.320666937157512,6.677071292884648,6.9253478441387415,7.4427743521519005,8.235847215168178,7.711129969917238,7.82946307444945,8.32388052996248,7.457586094271392,7.392249386291951,8.141351317055523,8.689460550434887,9.583798665553331,9.16234731161967,8.863746827002615,9.780128065031022,10.27694557281211,10.369194054044783,10.326798774302006,9.911721498239785,9.099828809965402,8.3293236810714,8.356506632175297,8.810123297385871,8.557625834830105,8.461233374197036,8.162889908533543,8.172483061440289,8.994488312397152,9.439584526699036,10.348699632100761,10.42648130794987,11.29658731026575,11.047283206600696,11.833437375724316,11.052005492616445,11.165744415018708,11.059018769767135,10.513563511427492,9.838299945928156,10.185980255249888,9.852823922410607,9.669475556351244,9.717869445681572,9.77627868624404,9.049320572521538,8.756791208405048,8.849109152331948,8.256203413009644,9.112481981050223,8.579677626490593,8.057048436719924,8.394035944249481,7.859015874098986,7.785296166315675,8.575874342117459,8.77657692367211,8.07054912019521,7.867756406776607,8.224253268912435,7.726935470942408,7.05680235195905,7.999534041620791,8.008434262592345,8.052949516568333,8.298895149026066,8.099911554250866,7.4806594853289425,8.320430194027722,8.520307626575232,8.213942782022059,8.020736126694828,7.493557612411678,6.713214259594679,7.116667245980352,7.814914929680526,7.127002064604312,6.7400200283154845,6.664361743722111,6.261053638998419,6.937550767790526,6.719379082322121,6.836577413138002,6.400443080812693,5.497193896211684,5.725458458531648,4.77433037571609,4.8121669865213335,4.89037368260324,4.7308951686136425,4.0423414981924,3.3818381736055017,3.5872665126807988,2.7655730694532394,1.8012657896615565,2.555011248216033,2.0875767399556935,2.6966555756516755,2.0903394292108715,2.1583503847941756,1.4013726888224483,2.198341033421457,1.3185140993446112,1.910497259348631,0.9445677362382412,1.1955620795488358,0.711182324681431,1.114146440755576,1.440157967619598,1.8543625129386783,1.783113212324679,1.5326456776820123,0.9765964392572641,1.7101056282408535,2.4525007498450577,3.039159265346825,2.4971125251613557,1.9347736546769738,2.467134289909154,2.5132723562419415,3.480903177987784,4.430431910790503,4.003802629187703,4.982959351502359,5.655190407298505,6.494344267994165,7.333906688261777,7.475812666118145,6.4957097209990025,7.150038966909051,7.995983943808824,8.460078741889447,7.828373404685408,8.70664660865441,8.216764515731484,7.781393698882312,7.314422781113535,6.588125302921981,7.378379879519343,7.0235914387740195,7.04896643711254,7.198005390353501,7.719848819542676,7.333831547759473,7.923165093641728,6.935021659359336,7.044335836544633,7.223466182127595,6.970657885540277,6.56752002146095,6.229781665839255,6.685101656243205,7.083988891448826,7.79449193412438,8.152732320595533,8.793732571415603,8.937969367485493,9.03614576999098,8.33509967289865,8.108722161967307,8.00080978916958,7.698790582828224,8.159906134009361,7.56417860975489,8.358136664610356,9.264505488332361,9.543736554216594,10.284155850298703,10.699534497689456,11.51412399392575,11.457723416853696,11.701749114785343,12.007843025960028,11.540636369492859,11.233620810322464,11.361056352034211,12.28157713636756,12.46886035753414,12.3634644895792,12.321517057716846,11.63035466009751,10.708270449656993,10.52629158925265,10.735534958541393,11.688320718705654,12.038643408566713,11.944500285200775,11.30844542896375,12.03258854104206,11.7420614794828,12.129420448560268,12.403339839540422,13.33180508762598,13.653289528097957,13.930181768257171,13.23108786251396,13.78799962438643,12.917446835897863,12.142072713933885,12.652951688040048,12.91770291235298,13.762360132765025,14.550866389647126,14.11987735517323,14.423935622442514,13.797157424502075,14.613216136582196,14.827676380053163,15.075320100877434,14.368268728721887,14.972115782555193,15.448487200774252,16.086147570051253,16.431966794189066,16.88392735598609,16.34232343873009,16.811661558691412,16.800441996660084,16.13266459060833,16.842629537452012,16.212559377308935,17.019295940641314,17.379182350821793,17.53866249602288,16.683149575721473,16.239417308941483,16.806323937606066,16.940480260178447,16.544892482459545,16.257452583871782,15.717599800322205,16.638869533780962,17.51067444588989,17.32731782225892,16.356402590870857,16.376519786659628,17.18996230373159,17.126924832817167,16.27844597538933,15.60108543233946,15.600536936428398,16.096234041731805,16.018667066004127,16.696329112630337,16.369623398408294,16.597464348189533,15.626417852006853,16.26143976347521,17.143247629050165,16.251755061093718,16.30934327794239,15.62251786980778,15.362650888040662,14.791261974722147,15.2252469942905,15.861491235438734,15.328911227639765,14.481588821858168,13.886966316960752,13.543743033893406,14.307171800173819,14.348356992471963,14.16197699867189,14.667949944734573,15.57139872200787,15.628752183169127,14.647184062749147,15.358168091624975,14.709077880252153,14.359368361067027,15.092906295787543,14.485459371935576,14.706251920666546,14.19089511781931,14.814306850079447,15.373618712183088,14.934451511129737,14.058991282712668,14.055316044948995,14.546274313237518,14.5434375628829,14.810817854944617,14.927773132920265,15.287898781709373,14.809590121731162,14.946509909816086,14.494043272454292,15.244972514919937,15.77679369226098,14.938460635952652,15.25922891125083,14.846252053044736,14.712895005941391,13.912549878004938,13.68297192081809,12.72465468943119,13.20054615335539,12.280593166593462,11.7399325161241,12.032816875725985,12.47818614821881,12.4368786518462,11.538397730793804,10.77951952861622,10.400962822139263,10.917361619882286,11.609685305505991,11.793556188698858,11.381833464838564,12.118810725864023,11.65681106923148,11.688973302952945,12.604060573503375,11.735758623108268,12.691181667149067,12.833912780042738,12.605151126161218,12.001207359135151,12.217239333316684,12.764491448178887,12.68992473045364,13.05488633364439,13.374525277875364,13.339644552674145,14.096618528012186,14.04959956696257,15.029091163538396,14.642203060444444,13.75178436562419,14.396247446071357,15.013485674280673,14.864178196527064,15.017398324795067,15.64737904863432,16.439115991350263,15.837920050602406,14.896280251443386,15.358426585327834,15.482043688651174,15.53729789890349,14.56577908853069,14.521180752664804,13.804832379799336,12.86872335942462,12.279934977646917,12.855467803776264,12.20068840496242,13.058712415397167,13.051848952658474,13.880675087682903,13.620786026585847,14.100925249047577,14.191547994036227,14.789922478143126,13.860795626416802,14.649112121202052,14.320094401948154,15.268098689150065,14.962634466588497,15.883100242819637,15.188186326995492,15.312939120922238,16.196703133173287,17.148124050348997,17.9047448518686,18.738061870913953,19.05702126957476,19.153422930743545,18.69500924833119,19.654839844908565,19.48423139564693,20.465583343524486,20.02728372393176,20.083427515346557,20.85770932212472,19.884174671489745,19.757050859276205,20.69931809930131,19.894328933674842,20.2377959638834,19.352494342252612,18.680647112894803,18.690364883746952,18.653867497108877,17.70669599296525,18.257681230083108,18.11092268116772,18.4683605581522,18.631749198772013,18.001263414509594,17.56642552325502,16.99077289737761,17.82235919032246,18.077073503285646,17.395184584427625,18.19267553417012,17.322018175385892,17.812793938908726,17.980607595760375,17.58714487310499,18.200560935772955,18.473263102117926,17.60807498684153,16.703468861524016,16.391187564469874,15.48979157814756,14.95305407838896,14.28816226683557,15.090305018238723,14.694374215323478,15.275002938695252,15.292776183690876,15.5641816155985,15.969730674289167,16.611238811165094,16.352226718328893,16.724011472892016,16.75946161802858,16.807154699228704,17.203054749406874,17.665598958265036,16.943583357147872,16.45425205444917,15.618551164399832,15.252129303757101,15.695955200120807,16.646639897488058,16.756378538906574,17.255903876386583,16.602825148496777,16.25632826425135,16.512666841503233,15.62551906099543,14.9234789009206,15.119600352831185,14.48399717034772,14.281424247659743,14.262939538341016,13.443409867584705,13.219698110129684,13.685929115861654,13.491008807905018,13.11960373679176,12.388022353872657,12.665455732028931,12.476501109544188,12.427114536985755,13.149290882982314,12.618663711939007,13.243562434334308,13.55920149711892,13.163838953711092,12.96210951404646,12.156191013753414,12.241584151051939,11.801913377828896,11.571018755901605,12.403717450331897,12.853653686586767,13.77497796388343,13.031152655836195,12.868169730063528,13.120602909475565,12.199384031351656,11.511861017439514,12.495069535914809,12.901409737765789,11.944427595939487,11.814684993121773,11.645592385903,11.92548787780106,11.909429763443768,12.311046977061778,13.252411404624581,13.012639481108636,13.510469764005393,13.071912762708962,13.155007511842996,13.729907584842294,14.671425187494606,13.71668925601989,13.428628999274224,13.134544781874865,12.138759864494205,12.589109223335981,12.003716835286468,11.807231259066612,12.311489804182202,11.462507357355207,12.14468188304454,12.629485945682973,12.724682585336268,11.886876754462719,11.019757928792387,10.10998761607334,11.029761775396764,11.099548730067909,11.845995190087706,11.33975745132193,11.57041528262198,12.217674182262272,12.037220364902169,12.307930378708988,12.044381075073034,11.653574176132679,11.708417078014463,11.66870595421642,12.223121670074761,12.891078235581517,13.541459816042334,12.546735554002225,13.129370317794383,12.29176148492843,11.977596340700984,12.204006718471646,11.476869441568851,11.008998710196465,10.955091988202184,11.306724617257714,10.743216403760016,11.665866521187127,12.012974088545889,11.50889660185203,12.284513444639742,11.899961290415376,12.431310297455639,11.489885220304132,11.8474450991489,11.472449077293277,11.367828013375401,10.961264468729496,11.0909139723517,10.338605251163244,11.259221929125488,10.735823641065508,11.151583150494844,10.849455526098609,10.675036487635225,9.794946019537747,10.736690728459507,11.27453636797145,11.689866729546338,12.277707287110388,12.872290906962007,12.534762415569276,13.304682991467416,13.310499998740852,12.649055946152657,12.12787189334631,12.841703818645328,13.101048803888261,12.229850568808615,11.935629326850176,11.449223598930985,11.532547420356423,11.303496282547712,10.378031437285244,10.913108593318611,10.51061441237107,9.971324311569333,9.737591578625143,10.62276319367811,9.787041828036308,9.434668818488717,9.630532271694392,8.78646434424445,9.582753797993064,9.993946458678693,10.242633427958935,10.126499008852988,10.525053801946342,11.371251774020493,12.190795229747891,13.131846351083368,13.195998066104949,14.011216087732464,14.704981696326286,15.228885048534721,15.169034434948117,14.81355056911707,15.059669793117791,15.36157315177843,16.216847963631153,17.112638713326305,17.77917134994641,17.151077764108777,16.958362651523203,17.00955615704879,16.83106072898954,17.43582802126184,17.319564873352647,17.778099312912673,17.08876182883978,17.712779096327722,18.300988155417144,17.76410423638299,16.937297327443957,17.353050413075835,17.137999792117625,17.76191393053159,17.223294170107692,18.21222868328914,19.04378917440772,18.870509004686028,19.531959236133844,19.153200979344547,19.967627299018204,20.28639105008915,21.156348614487797,21.16847472731024,21.353212779853493,21.51403554622084,21.980636229272932,22.219842214137316,21.53910585399717,20.63299062848091,21.47012027539313,21.825055425520986,21.527249314356595,20.710318023804575,21.659442183095962,22.499074792023748,22.047343102749437,21.715729081537575,21.826562860049307,20.9119934537448,20.510087405331433,20.960060076322407,21.633078917395324,22.296437105629593,23.265235755126923,23.76643790770322,23.546129086986184,23.893481620121747,23.769810174126178,23.676366517785937,24.45138728991151,23.79213754553348,23.819099771324545,23.37103006662801,22.484539296943694,22.118250127881765,22.65245386119932,21.787193331401795,20.840616376139224,21.246246327180415,21.428572261240333,21.180980262346566,20.63266887422651,20.027580117806792,19.152200629469007,18.92796092433855,18.00289257336408,17.975535582285374,18.39915834646672,18.106113363523036,19.004443188663572,18.69579708855599,19.44363593030721,18.992274625692517,18.799155005719513,19.724229807034135,19.478071172256023,19.87986977910623,19.87810134422034,19.863681571558118,19.056357078254223,19.104852477554232,18.342964592389762,17.848384412471205,17.105313416570425,17.82826404692605,18.807412474881858,19.315284649841487,20.078406553249806,19.19194471789524,18.684404998086393,19.04959878977388,19.994900337886065,20.24240558827296,20.103159997612238,19.457505650352687,20.343926058150828,20.398013816215098,20.32109828153625,21.13820407446474,21.440491534769535,20.598755498882383,21.023147522937506,20.45553633477539,20.24355632904917,21.227707328740507,21.519441807176918,20.770629487466067,20.793529618065804,20.87493039853871,21.352052602916956,21.983975848648697,21.819476374890655,21.77774472767487,21.66797437192872,21.096792491152883,21.881628423463553,21.168940869159997,20.625818083062768,19.923507892992347,20.370485271327198,21.299889368470758,20.923787825740874,21.212456319946796,21.673005202319473,21.602755077183247,20.611024879384786,19.732557215727866,20.567908209282905,20.67852975986898,20.831123183947057,21.19964267173782,21.555282443296164,21.669071754440665,21.11016729241237,20.29313281364739,19.69159701652825,20.572503693401814,20.75877947313711,20.8310741414316,20.678010198753327,20.72463171137497,21.501365325413644,21.158680683467537,20.50848542805761,20.421768724452704,19.593222160823643,20.56831690715626,21.295972364023328,21.504670751746744,21.921613230835646,22.898064529523253,22.73916047392413,22.744823557324708,22.18804321018979,22.687950401566923,22.399957156274468,22.29670970560983,23.08919407054782,23.458823950961232,23.794643542263657,23.866516067180783,23.366405072622,23.773807723540813,23.602443465963006,22.9104290320538,22.990115018561482,23.496031037997454,23.05819866526872,22.5259330291301,22.261425047647208,22.687155917286873,22.82043721806258,22.663585240021348,22.71366299688816,21.958322796504945,20.999701427761465,20.513101184275,21.334659405983984,21.046525939833373,20.601282893214375,20.00971932662651,19.024131652899086,19.578286953270435,20.57410464482382,21.07634453335777,20.29748104372993,19.639592259656638,20.499566214624792,21.015985421836376,21.510026490315795,21.870870497543365,21.258528207894415,21.07428993890062,20.594473191536963,21.411921409424394,21.766894279047847,22.388092167209834,22.952661155257374,23.261700103990734,22.273506814148277,21.697977719362825,20.712115423753858,20.33196330210194,19.64233682397753,20.358418421819806,19.904072302859277,20.82584672048688,20.440372583456337,21.271346639841795,21.493943070061505,22.335704282391816,21.915404069703072,22.425122217275202,21.71235722163692,21.975427326746285,22.392711873166263,22.18377713765949,21.866492381319404,22.41862181853503,23.29598910966888,23.99149995064363,23.949400239624083,23.504308845847845,23.22987607587129,23.553074598312378,24.3529474590905,24.660582397133112,23.870327927172184,23.463927092496306,23.775399853941053,23.543607368599623,23.470965343061835,22.83220687834546,23.474571192171425,24.30507569666952,24.1972735254094,24.488231957424432,25.33066349569708,24.977391050197184,25.053785945288837,25.295521643012762,24.303029898088425,24.944381782319397,25.741418092045933,25.217506303917617,25.67143572680652,25.8814920024015,25.207426147069782,26.09031136194244,27.070994191803038,26.74114739242941,26.087910854257643,25.584893056191504,26.52888464787975,26.666707773227245,26.499736769590527,26.560855731368065,25.982310600113124,26.429872007109225,26.416819942183793,26.696355763822794,27.66278706630692,27.87385306833312,27.382767595816404,28.0299028926529,28.059975777752697,27.300052204169333,26.339218868874013,26.728064035996795,27.36288440413773,26.47869705921039,26.16250084154308,25.169335084035993,25.151838432997465,24.421274058986455,24.51724214758724,25.126278267242014,26.087645870633423,25.402328711934388,24.983533590566367,25.230452025774866,24.51218359405175,23.79487199615687,23.127755383960903,22.705257755238563,22.689233464188874,22.85811244044453,23.764467330649495,22.97221050830558,21.97758338181302,22.645909438375384,22.867741404101253,22.39441000064835,22.54218837292865,21.96231694985181,21.460404451470822,20.79711211193353,21.742815249599516,21.73619753215462,22.705173215828836,23.10893476707861,22.43238616688177,22.350479231216013,23.238626698497683,23.99155509006232,24.887171146459877,25.596092676743865,26.087575937621295,25.478784687351435,26.143416184931993,25.36763398256153,26.032743502408266,25.666159119457006,26.20971317915246,25.214105154387653,24.331528689712286,24.897341818083078,25.22413013363257,25.78626286564395,25.871057741343975,25.416335824877024,25.52098881918937,25.321661713067442,24.37142379907891,23.732095837127417,23.685176007449627,23.723025797400624,23.232418016064912,23.78047810960561,22.884831508155912,22.47334625897929,22.858879866078496,23.575844026636332,24.310113220475614,24.984944983385503,24.97815078869462,25.09596791351214,24.883453557267785,24.680678889155388,24.345185665413737,24.17723175045103,23.668650657404214,22.964846924412996,22.494581072591245,21.863770667929202,20.93917331425473,21.23407450178638,21.605099122505635,22.063339347951114,22.410261543933302,23.373809851706028,23.653886195272207,23.649050483014435,23.745561531744897,24.41850469680503,23.77909051347524,23.55438992800191,23.62461747135967,23.25558925420046,22.80178541690111,22.631839375942945,22.824979233089834,22.39966447232291,23.031877163331956,23.559005070477724,23.870132999494672,23.81743908673525,24.650895603001118,25.17078447341919,24.68232873408124,24.077021439094096,23.781813218723983,23.72686634771526,23.09190412098542,22.897889038082212,22.40142582124099,23.157168664503843,23.12625866383314,22.394089482724667,22.70790032390505,22.791515392251313,23.146093842107803,22.23342042416334,21.46722968155518,21.817849036771804,22.096816065255553,22.48724195268005,23.126951328478754,22.274200375191867,21.43309184536338,20.58216019719839,21.464054264128208,21.433215658646077,20.802929892670363,19.88300123438239,19.20336789218709,19.15200475230813,18.851602701470256,18.415719624608755,19.395096835214645,19.613122000359,19.744712254032493,19.19684516452253,18.20412811357528,18.25834712246433,17.386292529292405,16.692611726000905,15.953468814492226,15.822849422693253,14.947830162476748,14.543751990888268,14.160456063691527,13.769531496334821,14.272877217270434,15.117561403196305,14.775988058187068,14.0755346538499,14.75125914113596,14.411883227992803,14.740030740387738,14.194231953006238,14.29770869622007,15.08201570995152,15.668261053040624,14.938760712277144,14.360370790585876,15.258967417292297,15.456022295169532,14.972205449361354,14.361668436788023,14.700443323235959,15.47819480765611,15.7373176664114,16.72309502121061,15.945414058864117,16.916118347086012,17.083850274793804,17.520788351539522,17.082260361406952,16.174919744953513,16.44022166542709,16.365040947217494,15.485585851594806,15.917728432454169,15.434894010890275,14.772570877335966,14.625128224957734,14.06221850309521,15.026308878790587,15.916797772981226,15.915438298601657,15.994511189404875,16.41756829759106,15.792023913469166,16.326886205468327,16.392403182107955,16.332383394706994,16.715342342387885,16.897997512482107,17.345057100988925,17.220807386562228,17.231056781951338,17.813456494361162,17.051905461587012,16.610584248788655,16.944975461345166,17.667453690897673,17.317396976985037,16.96155469212681,17.549795668106526,18.38069038046524,17.511771933175623,17.015065628103912,17.414551217108965,16.91804082831368,17.033202217891812,17.27899055602029,17.92673543980345,18.00538710365072,17.634251474402845,16.812882599420846,17.001195010729134,17.355781448539346,16.636983605101705,16.163867101538926,15.443976981099695,15.634735359344631,14.949028555769473,15.430354233831167,15.230305403005332,15.807675053365529,15.113617930095643,14.784893705975264,14.10859172930941,13.958874702453613,13.364657801575959,13.28044675476849,13.961480625905097,13.638650155160576,13.785104928072542,14.127780694048852,14.553851918317378,15.33069528080523,15.512947290670127,15.898772526532412,16.841682323254645,15.995762160047889,16.035178386140615,15.618933574762195,16.039965328294784,16.978601211681962,17.223217403516173,17.135831443127245,17.063041938003153,16.499706502538174,17.46517305029556,18.445649474393576,17.521035538986325,18.191623316612095,17.89360184641555,18.0244851433672,18.754307511262596,19.331403150688857,20.125470073893666,20.821206895634532,21.629111227579415,22.337061122525483,21.689301901496947,22.1559667349793,21.665845958516,22.04255695035681,21.527691905386746,20.723592188674957,21.480437104124576,21.738927493337542,21.189640431199223,22.107663094531745,22.82007404603064,23.14256889000535,22.766188187059015,23.683246847242117,24.00100330915302,23.898014154285192,22.993213701527566,23.281666378490627,22.893405818846077,22.532891516108066,23.239588626194745,23.455732805654407,23.237243472132832,22.922978124115616,23.10188892809674,23.18493662076071,22.48043241770938,22.181842076126486,22.850243059918284,23.710790069773793,23.772586291190237,24.380211054813117,24.764551567379385,24.020674134604633,23.55297223199159,24.18530962569639,23.424908948130906,22.569053960498422,21.87451718421653,22.019048935733736,21.972450516652316,21.517178867012262,20.538571455981582,20.703087758738548,20.972319243010134,21.667954162228853,22.582977884449065,22.016183173749596,21.567412576638162,22.566013071220368,22.974343109875917,22.215774070471525,23.06848225230351,22.110234735533595,21.85252885054797,21.868974939920008,21.49495252687484,21.031257083639503,20.79593318188563,19.94651582231745,19.864886177703738,20.114308290649205,19.75976118678227,19.558368001598865,19.620379647240043,18.87935728766024,19.811898197513074,19.505272505804896,19.38349535036832,20.165132142603397,20.254512479994446,19.294471609871835,18.36454290151596,18.339175262954086,17.940522977150977,18.096462826710194,18.511519660707563,19.038324071094394,19.70756882429123,19.153901012148708,18.171029767487198,17.532660542055964,18.19061699602753,18.983063373714685,18.78038536477834,18.90945037966594,19.8653705525212,20.506578017026186,20.0481368182227,20.165397468954325,21.063641619402915,21.018223198596388,20.779654806945473,20.063643591012806,19.943503443151712,20.621612850110978,19.757915161550045,19.416826037690043,19.076188584789634,18.2291368287988,17.882700202055275,17.173567060846835,16.779656587634236,17.745519045274705,17.32988034794107,16.99404050037265,16.176184228621423,15.592854577116668,15.680349230766296,14.757446525618434,15.303936086595058,15.681616889778525,14.741337310057133,14.17651902884245,13.793600352946669,14.25077845575288,15.026690358761698,15.916295904666185,15.48215717729181,16.20167374238372,16.275351050309837,16.97680633375421,17.764389040414244,17.416324228048325,17.784932238515466,18.596502671018243,19.282372387126088,18.906081798952073,18.821280419826508,19.52421703049913,18.728157974779606,18.36773653374985,18.558564902748913,18.07919650664553,18.62168728094548,18.14088681107387,17.982320617418736,17.397063836455345,16.768050592392683,15.887726912274957,15.220910077448934,16.145070131868124,16.701612771954387,16.57859427249059,17.29138409672305,16.852579050231725,16.434197682887316,16.447547430638224,16.417858098167926,17.090609589591622,16.454070150386542,17.045360424090177,17.131928701885045,16.91185106569901,17.136647327803075,18.015324828680605,17.479596716351807,17.945239443797618,18.25156461633742,17.30261375522241,16.541687473189086,17.36284937383607,17.593576193321496,17.298513680696487,16.39391012955457,15.558465658687055,16.369464720133692,15.76250506658107,15.70328584453091,14.963831798639148,15.328577042091638,14.372713516000658,13.964992678258568,13.413128590211272,14.187800369691104,13.927578043658286,14.80747378943488,15.011115316767246,14.595671521034092,14.807879568077624,15.157652012072504,14.329673948697746,13.605287467129529,13.787354333791882,14.28425461333245,15.008731067180634,14.59970334591344,14.7624981245026,15.32431603083387,15.228281759656966,14.911848872434348,14.15366831375286,13.689398133195937,12.95732690114528,13.060042605735362,12.298275381792337,12.725078964605927,13.59507134463638,13.041269317734987,12.388308656401932,11.757650042884052,11.82419204711914,11.259634187910706,11.795403042808175,11.836533665657043,11.384219721890986,10.546383507549763,10.50427560089156,11.37887002248317,10.616362538188696,10.852234200574458,11.048615508247167,11.031408648006618,11.650522007141262,10.851963018532842,10.020951975136995,10.366609059274197,10.794540758710355,11.119984346907586,12.107724515721202,11.762362285982817,12.154206700623035,11.185387595091015,10.314480463974178,11.100855356547982,11.81522282352671,10.941374829038978,11.865951100364327,12.468080156948417,13.431009077001363,13.66236378531903,13.04587655281648,13.993894928134978,13.6520611285232,14.011741654016078,14.834568932652473,14.192794646136463,13.920241102576256,13.833235987927765,13.138169418089092,13.519811126869172,13.737123318016529,13.880162306595594,14.079763029702008,14.657326339744031,14.012437690980732,13.298821412492543,12.615614348091185,13.335488928016275,13.432851950637996,14.064338622614741,14.191525413189083,14.437674862798303,14.202222602441907,14.151522832922637,14.405840270686895,13.472088464535773,12.70232493802905,12.328947047237307,13.00360218482092,12.668667410966009,12.634802867192775,13.208581174723804,13.721356687135994,13.795084460638463,14.497085181064904,14.326195410918444,13.85282697994262,12.919240112882107,12.574169828090817,11.992360081057996,12.593512592371553,13.32142190542072,13.224632250145078,14.2037691231817,13.214580309111625,14.132821551989764,14.679384707473218,13.931183130480349,14.185031296685338,13.941301064100116,14.516130530741066,15.18436457682401,15.49380829045549,16.365796148311347,15.416719175409526,15.96210869308561,16.00179340876639,16.06015070900321,15.71926664467901,15.987869401462376,16.620469711720943,16.267054236959666,15.983892733696848,15.944131591822952,15.39410661533475,14.64785966463387,13.691605797503144,12.752932451665401,13.443356771487743,13.210579559206963,13.573109128978103,13.372166061308235,12.673148688394576,11.684365005698055,12.563417131546885,12.39035469526425,12.149292163550854,12.191380576696247,12.526236941572279,11.573231493588537,12.32219465309754,12.48971861274913,12.881727256812155,12.288855218328536,11.737666422501206,11.279932010918856,12.193205169867724,12.74055926548317,12.423409123439342,12.118312368635088,12.29054637439549,11.52881330717355,10.54267924465239,10.642880954314023,11.633253842126578,12.298282670322806,12.145166410133243,12.154644236899912,12.664552494417876,12.551426952704787,12.691532637458295,13.051767717115581,13.203724588267505,13.72135828435421,13.504198466893286,13.714425628539175,14.50245820125565,13.557353556156158,12.770427440758795,13.207155858166516,13.715110157616436,13.081228786148131,12.640480786096305,13.301923557650298,13.353961936663836,12.901635518763214,11.927773557137698,11.82728400779888,12.40165106439963,12.792001307941973,11.927207350730896,11.922897036653012,11.869365422520787,12.396619819570333,13.04582581948489,12.493686262052506,11.644637807738036,12.577602605801076,13.029122741892934,13.523938254918903,12.638266006484628,13.588859750889242,13.293143488001078,13.213069288991392,12.415264911483973,11.520603970624506,11.281480269040912,11.367481937166303,10.972061222419143,10.697207918390632,11.250057755503803,10.566771075129509,10.665702631231397,10.909878424368799,10.264214296359569,9.936345507856458,9.6024584104307,10.206490277778357,9.623893436975777,9.531590070575476,9.520602284464985,9.859398866537958,8.90220935177058,9.730689945165068,10.497133221011609,9.944241409189999,10.152248060330749,9.625910113565624,10.57484505418688,9.905939196702093,9.221379205584526,8.336914076004177,7.986020207870752,7.210420187097043,7.163705111481249,6.843262676615268,6.742987892124802,6.692626350093633,6.943039839621633,7.1898717088624835,6.596351362764835,6.789201364852488,7.08096273150295,6.43701218161732,5.8102938323281705,5.523277829866856,4.604037000332028,4.220901935361326,3.7252627052366734,3.0727887954562902,2.380914476700127,2.061888147611171,1.2736730389297009,0.9360614744946361,1.8747173859737813,2.54709940450266,3.2792402831837535,2.8546771057881415,2.824073870666325,2.1056532566435635,1.5759297753684223,1.9558662604540586,2.8071626075543463,2.780352971982211,3.2584311035461724,2.9847026029601693,3.946610204409808,4.494357316754758,4.256028753705323,4.805343292187899,3.8141990853473544,3.534828511066735,3.382290840148926,3.7224092623218894,4.025120961014181,3.5643336419016123,3.9153576768003404,4.709104150068015,4.268092833459377,4.072580244857818,4.948616394307464,5.202953393571079,5.015249599702656,5.980252029839903,5.133226578589529,4.890534965321422,5.631608847528696,5.350606070831418,4.575401524081826,4.694878188427538,4.806355380918831,4.744267507456243,5.355869518592954,5.293716827407479,5.699995462782681,6.215989820659161,6.8966911053285,6.727855945006013,6.071881658863276,6.098944840487093,5.158810460474342,5.033202615566552,4.707269043195993,5.0828756438568234,5.5811732998117805,5.351561207324266,5.361661185510457,5.6947756530717015,4.988025543745607,4.256233513820916,4.1001271083951,3.4579575774259865,3.457148415502161,2.8877058350481093,3.5983576709404588,3.2018361114896834,2.429659341927618,3.0138960191980004,3.9353394019417465,4.574352395255119,5.336376966908574,4.369792846031487,4.958108007442206,5.191380565986037,5.111651691608131,5.161880095023662,4.663029183167964,4.771500737406313,5.620991384610534,6.173892816528678,5.294487840961665,4.298514784313738,4.247990936972201,3.614950747229159,4.4224560502916574,4.4621164090931416,4.367293241433799,4.724453516770154,5.603941692505032,4.8839665073901415,5.499388642143458,6.29723033355549,6.88791294535622,6.386255024466664,5.7620628657750785,5.341593501158059,5.560090284794569,6.263323635794222,6.288338127080351,7.093652232550085,6.834341132082045,6.865768652874976,7.81202688254416,8.61738164210692,8.542544753290713,7.573491545394063,6.719237777870148,7.35564045002684,8.275836936198175,9.273605695925653,8.78908285498619,9.047087732236832,8.319267898797989,9.223503486253321,9.169398854020983,8.71007487270981,8.261574679985642,8.708969553001225,9.671245471574366,8.824689278379083,8.080969324801117,7.148785242810845,7.744227374438196,7.406674517784268,6.523243584204465,7.064640195574611,6.166993387974799,6.70941347675398,6.412960308603942,5.69083335949108,5.651035199873149,5.049142426811159,5.524930750019848,5.963312706910074,5.711660991888493,5.823125903494656,5.462148787453771,5.37095483392477,4.9480444635264575,4.406261146534234,4.04407081566751,4.157054632902145,4.080979842692614,3.5663060918450356,2.883604151196778,3.5915157957933843,3.662091365084052,3.3649147390387952,3.091596880927682,2.891427859198302,2.094409122597426,2.004470775835216,2.188173211645335,1.9572962881065905,2.751607455778867,2.1639510286040604,1.8973367838189006,1.9146886663511395,2.2993572698906064,2.2433242285624146,1.5283660632558167,2.4826479852199554,2.970486205071211,2.0923863179050386,3.0252376408316195,3.1279998682439327,2.6834013210609555,3.2434970159083605,4.099213313777,4.475371036212891,4.586266225669533,4.684918937738985,5.682231220882386,5.105258260853589,4.305355025921017,3.542575215920806,4.3067118199542165,4.339467494748533,3.740147929172963,4.712266120593995,4.447953235823661,4.593888609670103,3.9819883024320006,4.767418991774321,4.030184052418917,4.656568640843034,5.4279162753373384,5.599996108561754,4.732066662050784,4.319211408030242,4.569747612811625,3.9144632411189377,3.0523786353878677,3.1013168012723327,3.435987743549049,3.908999085891992,3.372833913192153,2.5575023689307272,2.4761163257062435,1.575283390469849,0.8414704250171781,0.6825391165912151,1.3362981704995036,1.7808109801262617,2.517166896723211,1.6186284385621548,1.9317147270776331,1.93976536905393,1.8190402393229306,1.98303701588884,1.3066080389544368,1.2091574892401695,0.4264029092155397,0.9613019409589469,0.2880067005753517,0.4700594898313284,0.618450507055968,0.5013856790028512,1.4900674750097096,0.7391959172673523,0.042637031991034746,0.4063589475117624,-0.2856059679761529,0.6055344250053167,0.21539776865392923,0.03998378338292241,0.9207378453575075,0.4062411286868155,1.3860135516151786,2.305809158831835,2.0813133609481156,2.7321726442314684,3.6100662471726537,4.341361530125141,5.008767858147621,4.44227083446458,4.571567191742361,4.958632625639439,5.799943491350859,6.772992841899395,6.293591464869678,5.838461196515709,6.672466107644141,6.269084760919213,5.456878026947379,4.803368860390037,3.9374389708973467,3.5531954993493855,4.464382148347795,4.25310644460842,4.708239678759128,5.096465189009905,4.97815735032782,4.862032739911228,4.491810775361955,5.478033726569265,5.025511988904327,5.98245660495013,6.6325300191529095,6.889366801828146,6.866663352120668,7.2238640752620995,6.734225128777325,7.371594571508467,6.432915156241506,6.937598563265055,6.954795565921813,6.272546144202352,6.912784436717629,7.564459887333214,6.753010094631463,6.152583283372223,6.364975612144917,6.967638830654323,6.514475631061941,6.565408038441092,6.21066914498806,7.058189995121211,6.874138211365789,7.485029217787087,7.421893682796508,6.605661058332771,6.413049223832786,5.429481053724885,4.482534550596029,4.745068930555135,4.858309131581336,5.544939423445612,6.1984292468987405,6.70564173720777,6.025139047764242,5.885402698069811,5.815700463484973,5.184841536451131,5.494803731329739,4.87844177801162,5.141673257108778,4.469840035308152,3.7397005730308592,3.333298245444894,3.7702350271865726,4.556019295938313,5.44792925240472,5.58735271776095,6.473899253178388,6.785740701016039,5.895908736623824,6.194561654701829,5.615635153837502,6.391453347168863,6.781114649493247,7.7668727659620345,7.933309968560934,7.579488236922771,7.671405770815909,7.647509437520057,7.265892505180091,8.159610951784998,7.741100987419486,7.524655820336193,7.479319144971669,7.931525417137891,7.742513305041939,8.114037982653826,7.1969915349036455,7.974220161791891,8.723524246364832,7.769687771331519,6.990700531285256,7.171488561201841,6.809062091168016,7.132305080536753,7.747279951348901,7.6173077137209475,7.066311853937805,6.476857105735689,7.042709343135357,6.114880469627678,6.2564558405429125,6.5285762888379395,6.730867912992835,7.462337780743837,6.609017409384251,6.3144184914417565,5.476106153801084,6.050873945467174,5.484208605252206,5.193590257316828,5.843518862500787,5.971068358514458,6.431009313091636,6.827998036518693,7.6730363219976425,8.656098399311304,8.64353959588334,7.925755483098328,8.398303798399866,8.227575374767184,7.74380678543821,7.774437362328172,6.863581983372569,7.18990832567215,7.654028703458607,8.618921352550387,8.619768876116723,8.160657603293657,7.7492655399255455,8.214487466961145,8.273345986846834,8.713916359003633,9.253986512776464,10.185282421298325,9.85988926840946,10.554366705007851,10.069764632731676,9.119377032388002,9.21043936163187,10.016398253850639,10.027868648525327,10.946577392052859,11.68973233178258,12.514370766934007,12.947907851077616,13.480616042856127,14.175446631386876,13.948057517409325,14.31075968965888,13.62979938229546,13.396530715748668,12.838775930926204,12.381190301850438,11.99522898485884,12.022128347773105,12.52459410438314,12.47965510841459,13.1908935951069,13.18515188805759,12.552332160063088,11.778666013851762,11.663329483941197,12.196671079844236,13.038988453801721,12.704261919017881,12.656178371980786,12.454839956946671,11.492167493328452,11.863199556712061,12.855199824087322,13.070183609612286,12.09912052191794,11.706583788618445,11.43909952742979,11.577468542382121,11.460413069464266,11.276631739456207,12.113865716382861,11.972056318074465,11.801628389861435,12.129705841187388,12.713038376066834,12.61104094563052,12.153778601903468,12.22974563203752,11.647624497767538,11.4764393158257,12.090279917698354,12.15289115998894,12.885792668908834,12.691108361352235,13.233588895294815,12.453312060330063,11.698858802672476,11.057285624090582,10.634676173329353,10.693098752293736,10.046181123238057,9.331452941056341,9.427059578709304,9.614113419316709,10.250905850436538,9.463821597862989,10.051067586056888,9.818535826168954,9.367697487119585,9.307758312206715,9.432585279922932,8.695200357586145,8.118733178358525,7.574484121054411,7.843571912031621,8.178593690972775,7.899797729682177,8.19154250388965,8.915642643813044,9.070138759445399,8.306076274253428,8.286194621119648,7.523783003911376,7.736742892768234,7.315286695025861,7.788260032422841,7.136267970316112,6.166492050513625,6.78916012076661,7.360026600304991,6.412458898033947,7.204318515956402,7.3807956874370575,6.663156901486218,6.9294880563393235,7.695185459684581,7.889519285876304,8.489070356357843,8.62473095022142,7.7525638728402555,8.676241906825453,8.239601890090853,7.966766248922795,8.7244625184685,9.207613551989198,9.46009370079264,9.034205238334835,9.18856068328023,8.628789433743805,8.304536705836654,7.728496251162142,7.588024942204356,8.051158790010959,8.398592682555318,9.18760738754645,9.954738311469555,10.106800860725343,10.45240022521466,11.276286613196135,10.983801436144859,11.691113975364715,12.658886721357703,12.83249553758651,12.137286799494177,11.425394379068166,12.11051419051364,12.8921874538064,12.84859935939312,13.426964126061648,13.611950242426246,14.456624097190797,14.201256476342678,14.946455632802099,14.990315267816186,14.811637533828616,15.241584761068225,14.771410760935396,14.878924660850316,14.95477737300098,14.525956283323467,13.806983806658536,13.61655017407611,14.059544004034251,14.358210013713688,14.199187425896525,13.774809301830828,13.968393070157617,13.46494556358084,12.53406894300133,13.272493928670883,12.870776209514588,12.668696470558643,13.317806768696755,13.982232028152794,14.970376906450838,14.847954268101603,14.12825263151899,14.58067272650078,14.536229904275388,14.60509972507134,14.104364383034408,14.275378842838109,13.922229576855898,13.500347523484379,14.320150732528418,15.087366331834346,14.597475561778992,14.996854258235544,14.976455684285611,15.190806818660349,14.65016666892916,15.045696998480707,15.5080442763865,15.176406104117632,14.646653237752616,14.743701319210231,15.451819596346468,16.365726087242365,16.85685651190579,17.069549930281937,16.656490489840508,15.970357817132026,16.89849422732368,16.160502650775015,16.687413170468062,16.783884111326188,16.354041138198227,16.51763197593391,16.688429286703467,16.015235056634992,16.492298857308924,17.35576733807102,18.344506746623665,18.312576442025602,18.380077368579805,17.435072059743106,16.581200385466218,16.70876168925315,16.403260659892112,15.953388304449618,15.700157758314162,14.76586780976504,14.60018055466935,13.908000696916133,13.413903241977096,13.38321488397196,12.964149759151042,12.103778569959104,12.61504975007847,12.663531099446118,12.04547169432044,12.543504263740033,12.917883997317404,13.673912874888629,14.642583593260497,14.16364170331508,13.79558475408703,14.179621659219265,13.977056776639074,13.765241402201355,14.387872032355517,14.368304397445172,15.32623940706253,15.919581675436348,15.649583827704191,15.498821246437728,15.225296860560775,15.891454821452498,15.65629270253703,15.061297557782382,14.138350764289498,15.00071409298107,14.765556069556624,14.02376375021413,14.974173320923,15.750917916186154,15.976824210956693,16.96046147774905,16.51747478125617,16.208883938379586,15.668852216098458,15.261059248819947,16.202482017688453,16.152411287184805,16.196399653796107,16.281178714707494,15.925813262350857,16.469810590613633,16.48613001126796,16.7674080748111,16.677576520945877,17.597133362665772,18.50627021351829,19.50388842076063,19.61011201282963,18.693785609677434,19.188174181152135,18.394407478626817,18.285675540100783,18.724028956145048,18.600505199749023,18.03987001022324,17.89396152133122,18.036801888607442,18.126695118378848,17.643155162222683,17.391953800804913,17.132382792420685,16.97473811171949,17.633776320610195,16.827553939074278,17.298849364742637,17.773151746485382,17.49943755287677,16.964350514113903,17.96024514688179,17.9627469163388,18.461979406885803,18.940302043687552,19.269186925143003,18.72281656600535,18.26040302636102,18.847095594275743,19.760437990073115,19.556148861534894,18.931852218229324,18.67098104674369,19.352613149676472,18.662112035788596,17.690793631132692,16.93495807936415,17.889378471765667,17.910224745515734,17.740017092321068,18.014112417586148,17.563160714693367,17.74586719740182,18.19294259790331,18.880989272147417,18.083754118997604,18.438540685456246,18.181800462771207,18.986834259238094,18.325741703156382,18.586739029269665,18.69754855055362,18.49621072318405,19.390795084647834,19.968026493676007,20.45508754765615,20.94546177936718,21.617226248141378,21.311118895653635,22.271818090230227,22.077529361005872,22.64564992627129,23.38809848157689,24.094604128040373,24.705183966085315,24.629615301731974,23.83459937851876,24.100577732548118,24.583672360051423,24.415344149339944,23.723625890444964,22.902877293992788,22.801308473106474,23.21159724937752,23.849431570153683,23.895359605550766,24.822379356715828,24.46707284776494,24.998562588822097,25.02538555394858,25.424227349925786,26.31276291050017,25.51002528751269,25.328854649793357,25.757471860852093,25.777341209817678,24.791517685633153,24.277601302135736,24.68325764965266,25.616099786013365,25.6618858971633,26.050317422952503,25.077599468640983,25.65433459635824,25.484700608532876,24.510878086090088,24.15120044350624,24.460752630140632,25.38815116137266,25.466758159454912,26.14914759900421,26.199995431583375,27.099536122288555,27.275241821538657,27.365865252912045,28.14792130328715,27.88088511908427,28.619697835762054,28.1540771801956,27.203644880093634,27.022237392608076,27.56768016749993,27.784001894760877,27.584403863176703,27.633273337502033,27.63591398112476,27.73704638890922,27.908374374266714,27.68537809792906,28.057543755043298,28.864845702424645,28.48731450177729,28.101160769350827,27.22236270084977,26.514491436537355,25.83374806540087,26.70009183837101,26.582997505553067,26.939615824259818,26.642131100874394,27.20484230760485,26.56259698793292,26.19486420042813,26.14125333353877,25.442292276304215,26.032459165435284,25.296646292787045,25.025045786518604,25.277934645302594,24.561906778253615,24.546716514974833,24.23099648905918,23.496993641369045,23.42115056188777,23.179701574146748,23.82384999608621,23.902041610796005,23.058364721480757,23.87836480839178,24.430496763903648,24.43993534334004,24.757695712614805,25.586254195775837,24.61636454006657,25.584839732386172,26.079106078017503,25.72790660848841,25.9389466419816,25.09421601332724,25.72803880041465,26.10902327951044,25.917842199560255,26.0791683383286,25.26970628136769,25.333283117506653,25.994087476748973,25.592774119228125,25.085817073006183,25.80656042927876,26.31826303806156,25.485812509432435,24.80952816316858,24.147882921155542,24.955696085467935,24.284797554835677,23.81021825550124,24.692899867426604,24.067705562803894,24.888622826430947,25.390286220237613,24.436878558713943,24.815918234642595,25.26689520990476,25.361354313325137,24.567009497899562,25.46432128176093,24.917779333423823,24.352357300929725,24.82065129838884,24.048859989270568,23.176731465384364,23.097508376464248,24.05596323357895,24.41573035856709,23.554341598879546,22.835300708189607,22.390507088508457,22.04126208089292,21.74005712987855,21.623401192948222,21.420140892267227,21.999320364091545,21.097907663322985,20.916567526292056,20.447257799562067,19.76127286022529,20.101336403749883,20.099275751505047,20.055814273189753,20.712741057388484,21.389148006681353,22.21436158567667,21.678398775868118,21.028735055588186,21.834441737271845,21.271426814608276,20.80501240165904,21.38787146192044,22.131114108022302,21.733023340348154,22.408226523548365,22.25645645149052,22.508500514551997,21.741374011617154,22.31579744722694,21.59245393658057,21.613293829839677,20.800041999667883,20.420330447610468,19.696439520455897,19.840196093544364,19.423768870998174,20.295989081263542,20.923437994904816,21.49016157211736,21.544013001024723,21.31860587093979,20.76558307465166,20.871833947487175,21.608324031345546,21.786920635495335,21.845899606123567,21.78800459438935,21.28841414116323,20.673796905670315,21.438717283774167,20.55113267386332,19.668901930563152,20.325116576626897,20.055093938019127,19.20383756607771,18.869267120026052,18.659156897570938,18.18323317077011,19.091262549627572,18.82749290438369,18.79346730420366,18.68624313129112,18.0987192960456,18.50174052035436,19.349011862650514,19.792715647723526,20.644962799269706,20.857393622398376,21.36471650749445,20.8094650991261,20.082538737915456,20.0158171961084,19.139236837625504,20.016914480831474,20.801997620612383,21.672493008431047,20.81243461277336,19.89075351320207,20.67440584814176,21.253809514455497,20.514567716047168,20.16121570020914,20.807859419845045,20.71743770968169,20.059014678001404,19.75912480102852,19.402560860384256,18.801984632387757,19.676173540763557,18.75313864974305,19.624296084046364,19.6742474604398,19.355401361361146,20.063537121284753,19.926067241467535,19.347581858281046,18.907987833954394,18.711370268836617,18.557202299591154,18.961871527601033,18.66219455283135,19.101473888847977,20.0062515293248,19.272391026373953,19.975397487636656,20.25678792083636,21.09956581145525,22.067606118042022,23.05586824612692,22.883622899185866,22.58189008012414,22.460953602567315,23.441024677827954,24.24832876957953,24.975926192011684,25.79121759068221,26.03616699948907,26.848720107227564,26.308370715007186,26.329900339245796,25.685138302389532,25.910641707014292,26.25051093660295,27.222801893483847,26.919540975242853,27.390988257713616,26.7226022221148,27.646914401091635,27.054148714989424,26.24180669337511,25.46112776361406,25.158843863289803,25.469093933701515,26.24132591020316,26.332137655466795,26.61924080643803,26.11624594219029,26.873953234869987,25.957673686556518,26.49918135860935,27.06134874233976,26.10194798745215,26.126666903030127,25.732663843315095,26.479972715023905,26.192706895060837,26.940554780885577,27.42023309227079,28.062694414053112,27.379767364822328,27.584403770044446,27.78631674684584,27.634829776827246,27.103853811044246,27.71046014688909,27.025980591308326,26.86869325907901,27.345892529468983,28.202382226474583,29.049600457772613,29.321591037791222,29.85152495559305,29.764279418624938,29.604800566099584,30.212032090406865,31.168184109963477,30.751405605114996,30.27058751368895,29.431338098831475,29.139231158886105,29.052924437914044,28.617715718224645,29.136452914215624,28.312138315290213,27.7742031365633,28.61700835591182,29.61535033863038,29.230962011031806,29.366526477970183,28.38473756844178,29.361672933213413,29.239164179190993,28.56544484710321,27.96466382453218,27.335781066678464,27.057078989688307,26.254786008503288,26.183817084878683,25.403323956299573,25.265897262841463,26.12184294592589,25.752983937505633,24.907671329099685,25.256034666206688,25.614844722207636,26.21732862526551,25.238444696646184,25.149555712472647,25.039658142719418,24.89522940432653,25.34302233532071,25.052099994849414,25.76516751339659,25.555738176219165,24.782637701835483,24.561761901248246,23.667718175332993,24.04808179056272,24.905327421613038,25.37283961288631,25.22412966284901,24.334584389813244,25.21541813854128,25.14877268159762,25.68846225645393,26.173697183374316,26.221857300028205,26.312277141492814,25.8908033631742,26.865292873699218,27.847414586227387,26.869373108725995,26.850599461235106,27.4371122517623,28.24108956893906,28.069685814436525,28.94052830245346,29.650059297215194,30.19661420630291,30.825768139213324,31.431925273966044,30.60367517452687,30.131791536696255,29.160595191642642,29.124343519564718,28.592007465660572,28.189881627447903,27.60200897604227,27.848478237167,28.72530739661306,29.671303756069392,29.51803807588294,28.841196303255856,28.451493477914482,28.94795704027638,28.102054343558848,27.324399814009666,27.842862936202437,28.50864898832515,29.493000517599285,29.17562520224601,29.467961254995316,29.229491667822003,28.336661980021745,27.678126648068428,28.071918176487088,27.63253354653716,27.4489808306098,26.86576411081478,25.927241366822273,26.73565273080021,26.238025292754173,25.37278507836163,26.17010014038533,25.992170945275575,26.748116890434176,27.431938386522233,26.832210921216756,26.281515621580184,26.43420752743259,26.108285304158926,25.793014673516154,25.259158917702734,25.029526675119996,24.65388826141134,24.4768964801915,25.387770257424563,24.675863180309534,25.45722895907238,25.95327780302614,26.59115438722074,26.316270117647946,26.437709658872336,27.133523371070623,26.317176409997046,25.934135623276234,25.40483541926369,24.520394172519445,23.820841655600816,23.98192042624578,23.26852989429608,24.118793917354196,24.82229532673955,24.08003764413297,23.9176923064515,24.853040074929595,24.313113333191723,24.29545814031735,24.702579313423485,24.30188500182703,23.550435562618077,24.057855570688844,23.590063388925046,24.265182960312814,24.631429500877857,24.522113530896604,24.061428206507117,24.3637405061163,23.739002408459783,23.635857080109417,24.04053615173325,23.72733158664778,24.19501546723768,24.811000337358564,24.028798343613744,24.663889351766557,25.46403544768691,25.358302171342075,26.16105521004647,25.93259299872443,25.321127200033516,25.019115023314953,25.556286419276148,26.34388472046703,26.49392910534516,25.672175975050777,25.28984368033707,25.582947995513678,26.35483054863289,26.339388724882156,27.023676719050854,26.63481402164325,27.109692483209074,26.129522604867816,25.3548043332994,26.297259972896427,25.674131955951452,26.199810357298702,25.64876538934186,25.04609285481274,25.547061342280358,24.674176801927388,25.65792394382879,25.330922019667923,24.66012152750045,25.621623526792973,26.19542655069381,26.0261525423266,26.09055476402864,26.22575689619407,27.080897875130177,27.559659357648343,26.720572114922106,26.752801776863635,26.348514251876622,27.20283449953422,27.82208903832361,27.44334063306451,26.497598237358034,26.713148284703493,26.27295060036704,26.155038279946893,25.51330120721832,25.74419886805117,26.507766590919346,27.36242101388052,27.32232041982934,26.83180885622278,27.146961562801152,28.076533537823707,27.1301658032462,27.55067173577845,26.95178736373782,26.583055236376822,27.235838152002543,26.961973942350596,26.461104173213243,26.07649632077664,26.948390415869653,26.581682618241757,27.363545352593064,26.967082301154733,27.43586139753461,27.907465554308146,28.268904391210526,28.741564461495727,28.385376218240708,27.780373012647033,27.912888295948505,28.39073430141434,28.108440280891955,27.558522363658994,27.705996903590858,28.05443846574053,27.66801950521767,27.774662303272635,27.22582801990211,28.12896548351273,28.29178465064615,28.78514855541289,29.6249095662497,30.165586771909148,30.331138845533133,30.068516033235937,30.081102072726935,29.85884899739176,29.467100171372294,28.8084772718139,29.14776687277481,28.2118645994924,29.163983763195574,29.150208642240614,29.14795442018658,28.971231615636498,29.248001368250698,28.29562587896362,28.064967987127602,27.413941327482462,28.24091148469597,28.155609643552452,27.597173287998885,26.74436898622662,27.19490674138069,27.743785364553332,27.23169393837452,27.278091883286834,26.842060127295554,26.881702992133796,27.16803138749674,27.34992091776803,27.947211183141917,28.056132417172194,27.87121085310355,27.623833474237472,27.488485084846616,27.865950542036444,27.797123258467764,28.677318529225886,29.641385361086577,29.05677618086338,29.99504659231752,29.742597543168813,29.555900095496327,29.679009336512536,28.8573803990148,29.695864671841264,30.28649348486215,30.38301085634157,30.33860512310639,29.9763186336495,30.507196810562164,30.375112026929855,30.592592628207058,30.42001659469679,29.64041643636301,29.109454228542745,29.933103751391172,30.851464102510363,31.281741646584123,32.16349212452769,31.200812781695276,31.91342587163672,31.63299291394651,31.5746013186872,31.57545882742852,31.59335407242179,31.32854372775182,30.6253781626001,29.83799024298787,29.348480449058115,28.847982700914145,28.209378115367144,29.10000431537628,28.650744896847755,28.111466994974762,27.616404613479972,28.504499583505094,28.726016788277775,28.39796865498647,29.05791633715853,28.872426131740212,28.47859125304967,29.190980214159936,29.188485145568848,28.721762197092175,29.690286451019347,28.748586716130376,29.23047086596489,28.96576690953225,28.737923690117896,28.615516477730125,28.173950515221804,28.883368413429707,29.271721091121435,28.37388468813151,28.292377915233374,27.609442026354373,27.79552679276094,26.987685249187052,27.963214436545968,27.249681108631194,26.561902080196887,26.972816813737154,26.83769155619666,25.987350997515023,25.558924762066454,25.935661078896374,26.617661932483315,27.549932735972106,26.764289100654423,26.464266194961965,26.423968095332384,26.710093770176172,26.514448653906584,27.224507204722613,27.9045518967323,27.80575648928061,28.5983306071721,28.39987299684435,27.62086626049131,27.57686685025692,27.09244224242866,27.60022341273725,27.07059943303466,26.718074494972825,27.5335959889926,28.367259436286986,27.674726635217667,26.884689315687865,27.311190547421575,27.876211209688336,27.476170547306538,27.804242311045527,26.853887130971998,27.802803719881922,28.286945357453078,28.526834663003683,29.316549384966493,28.462588962633163,28.377934121061116,28.765447094105184,28.092436163686216,28.330481408629566,29.022703723516315,29.80686559341848,30.63561809854582,30.6449041753076,30.163185235112906,31.00091157667339,31.650693007279187,32.55586768593639,33.347133609466255,32.92704674275592,33.85629459377378,33.01956812990829,32.437308399472386,33.29984951624647,32.75993007840589,33.33989559719339,32.84350679861382,33.385300661902875,32.67755602579564,32.482645702082664,32.98148460499942,33.88757281936705,34.79705246537924,35.33808025904,35.554955050349236,35.07143233064562,35.76484487345442,35.91188015462831,35.115440184250474,35.816497130319476,36.64920497639105,35.8109982307069,35.08165737707168,35.46323074446991,35.47874655202031,35.29250450851396,35.802246258128434,36.34621997131035,37.07493291422725,36.41687796032056,37.23972748732194,36.27993582189083,35.282181720249355,35.69416560232639,35.66225053369999,36.33637090958655,36.26970470370725,35.43022362748161,35.19554074900225,35.1212488329038,34.64701585005969,34.66868191678077,35.04991250298917,35.03956002788618,34.103202481754124,33.71221666736528,34.20107413595542,33.213071992155164,33.95730598969385,33.89811183465645,33.16971245640889,32.965498763136566,32.52581388456747,31.677240276243538,31.331919920630753,30.758287121076137,30.165817443747073,30.63903701864183,29.74363577645272,28.763427988626063,28.949968356173486,28.338974823243916,28.176389729138464,28.87479931116104,29.500660559162498,29.203505765181035,28.64435798721388,29.57080609491095,30.34831403149292,30.710754227358848,31.369521886575967,30.595131520181894,30.731419424526393,30.919664189685136,30.624907617922872,31.152291860897094,30.926458781119436,31.39297541975975,31.367233347613364,30.605131333693862,30.58922952413559,29.987337725237012,30.469113550148904,31.1345926374197,31.00834592850879,30.451592641416937,29.8054755134508,28.838433410972357,29.55447739502415,30.488233199343085,31.156224195845425,31.974398270249367,32.53296932624653,31.712957041338086,32.293982008006424,32.30595716647804,33.03443377511576,32.85319806262851,32.982864818070084,33.2713518012315,34.21070822607726,34.70637279795483,34.3863206631504,33.60214438242838,33.74738208390772,33.2907072850503,33.32140438631177,33.741563874762505,32.901188033632934,33.162004112266004,33.926142753101885,33.9540459997952,33.072296887636185,33.46344598988071,33.57816730905324,34.155679205432534,33.38240652997047,34.175780361983925,34.01751407282427,33.22741579916328,34.140994334127754,34.034753809683025,33.62026400351897,32.8625869830139,33.47872030828148,33.579651835840195,33.23904702346772,33.148714386392385,33.395280440337956,32.79460105812177,32.79479230288416,32.47497809724882,33.30924711469561,32.89991618599743,32.79141777520999,33.22633407218382,32.552551076281816,31.626425561495125,31.658499088138342,30.808270653244108,31.427139301318675,30.84456588421017,31.7137085176073,30.862784555647522,31.16164495330304,31.944557250943035,32.8899010270834,32.481615368276834,32.18968416657299,31.498412238433957,31.706625146325678,31.430870419368148,30.74934301013127,30.744473624043167,31.60046087903902,30.755142578389496,29.887721490114927,29.29504818795249,28.442082173656672,28.130805504973978,28.21105712885037,29.065098747145385,28.80522306729108,28.309566806070507,27.509745756629854,28.103503537829965,27.790742200799286,28.66602869471535,28.485748438630253,27.72046820446849,28.425140231847763,29.006777037866414,28.731195935048163,27.7786889472045,27.286019106861204,28.172422533854842,28.54027361376211,27.951727252453566,26.958050914108753,27.07487517502159,26.846897427458316,26.537057910114527,27.45869295625016,26.736998156644404,26.434828142635524,27.321500496473163,26.670176445506513,27.149597108829767,27.998696356080472,28.761347473133355,27.979408629704267,27.919010920915753,27.90906800609082,28.161363173276186,28.704151837155223,29.30830484861508,28.71672992873937,28.475524631794542,29.272778626531363,29.640043704770505,30.553631635848433,30.05043106386438,29.55711160087958,29.997041224036366,30.099388769362122,30.86631595902145,30.605165503919125,30.426661563571543,31.199158982839435,31.729647315107286,30.986748385243118,30.382549948059022,29.81049001123756,30.341989377513528,30.788068573456258,29.798516245558858,29.749589279294014,29.80975317535922,29.810736475512385,30.45159161835909,30.18335964763537,30.34434840315953,29.38851431198418,29.443394876550883,28.91321819741279,28.704418192151934,28.8932028519921,29.28278054855764,28.76946345344186,29.48979507572949,29.138231730554253,29.086798013653606,28.62205124972388,27.6448171781376,27.056482617743313,27.930373448878527,28.32667965022847,27.394534229766577,27.851824923884124,27.29448221437633,26.61759605864063,25.97967632394284,26.84141700807959,26.580923833418638,25.82556693488732,26.346133762039244,26.64382734382525,26.811102266889066,27.460428736172616,27.677887602709234,26.976944719906896,27.020469941664487,26.589682452380657,25.946634423919022,24.96017984393984,24.65643105143681,24.242314871866256,24.7228493350558,24.155435428489,23.44922016467899,22.852504763752222,23.419527679216117,24.253827654290944,24.697415383532643,25.14039889862761,25.96821280149743,25.58608541311696,25.70734418556094,24.85415538866073,23.97225300129503,23.812694725580513,24.771558397449553,24.14692921983078,24.601947525981814,25.1484444886446,25.07362064346671,24.10480443201959,23.91517746867612,24.895995781756938,24.064417583867908,24.454431500285864,24.165582545101643,25.150242055766284,25.38098393054679,25.48717760387808,24.541917882394046,24.894509211182594,25.812502138782293,26.56684551341459,26.178756458684802,25.693785050418228,25.65778230363503,25.909364064224064,25.246025032829493,24.595234587788582,25.445626373402774,24.75729556567967,25.0200327928178,25.953837688080966,25.192219232674688,25.654865972232074,25.995700220111758,25.032088763080537,25.143059128895402,24.8829654334113,25.675146631896496,25.75676188664511,25.339756214991212,26.258384705986828,26.433013692032546,26.237765383441,25.725696212612092,26.521849622018635,25.958463361486793,26.234232921153307,26.268652190919966,25.306366426404566,24.573170299176127,23.8908900632523,23.039733957033604,23.04264268744737,22.798182317055762,22.50089439796284,22.825505047570914,22.291809590533376,22.231665931642056,23.057097897399217,22.506452612113208,23.367268715519458,24.004540626425296,24.481003779917955,25.419983299914747,25.740352470893413,26.25307371886447,25.830513251014054,26.345154059119523,26.146137960255146,25.793424542527646,25.56042082514614,25.769659302663058,25.570427087135613,24.63856479479,23.784231228288263,24.13137625064701,24.52260376093909,24.746270772069693,24.91766332881525,24.14882229687646,23.94105149898678,24.855675286613405,24.20257663168013,24.28660590853542,23.956067824270576,23.62638904293999,22.818782467395067,23.49306518258527,23.15917584998533,22.45637191273272,21.66979861119762,20.958220987580717,21.34972889814526,21.50241151684895,21.339459457434714,22.283754918258637,22.77063468983397,22.439913348760456,22.640313148032874,22.38830246217549,21.394416188355535,21.375192652456462,22.322978693526238,22.580913092941046,22.706065312959254,23.0045088310726,22.674731833394617,22.739498584531248,22.589204424526542,23.561005397234112,24.186408553738147,23.727789951022714,24.273282564245164,23.613928667269647,24.399145832750946,25.074821033049375,24.14542951947078,24.38332100538537,24.41088484134525,24.67951512662694,24.591403123922646,24.924307802226394,25.096224406268448,25.49149309610948,26.195304406806827,26.7553737340495,25.898330464959145,26.264090892858803,25.828046604525298,24.996283014304936,24.719516075216234,25.704062420874834,25.369386630598456,24.686584469862282,25.466833781916648,26.237005743198097,26.597091126721352,26.02815636759624,27.00383451860398,26.4433882702142,25.48206506157294,25.529601535294205,26.020522649399936,26.141009730752558,26.732531596906483,26.527078947983682,26.343238240107894,26.157236458268017,25.193508415017277,24.724202987272292,25.716873991303146,24.799597798846662,25.15596163086593,25.39274349436164,25.771504719741642,25.462476403452456,26.000586970709264,26.20687098382041,25.20804517623037,25.531321660615504,25.386908346321434,24.89064423320815,24.67068499000743,24.591962954495102,23.65701817860827,23.660692063625902,22.770808045286685,23.06554577453062,22.442533899564296,22.021498665679246,22.75830921623856,22.576208429411054,22.18999099219218,23.153078676201403,23.46687802299857,23.741497811395675,23.330335445236415,24.307403904385865,25.28287790948525,24.35650078812614,24.30021978262812,24.442972173914313,24.362201777286828,24.69805802218616,25.625408582855016,26.24435069784522,25.80408462230116,26.57842966914177,27.127343425061554,27.774343960452825,27.069718788843602,26.642046866938472,25.824877447914332,25.374984729103744,25.395229717716575,25.293634412810206,26.0125769758597,25.221786537207663,25.18438922893256,24.73516645282507,24.010414708871394,24.22958568809554,24.50729790236801,24.232302621006966,24.06771194189787,23.099478515796363,23.52074883831665,24.11229081917554,23.505737424828112,23.052451412193477,22.40029925806448,22.481867355760187,22.391410486306995,22.801921680103987,22.48601862601936,22.87248930428177,22.01707995077595,21.437769037671387,21.183112893253565,21.039044389501214,21.992751946672797,21.408643876202404,21.849406665191054,22.49205225519836,22.000823420472443,21.53280666610226,20.936976047232747,20.0213863234967,19.663397633470595,20.527449649758637,21.44061025325209,21.909006061498076,22.891129788011312,23.40567768458277,22.500810644589365,21.65618479810655,21.53443033620715,21.601704336237162,20.8396017504856,21.018554016947746,20.7117982073687,21.59562921198085,21.897307420149446,22.848975458648056,22.8333075880073,23.300424683839083,24.21995121613145,24.702472439035773,23.883561821188778,22.888032856862992,23.804370865225792,24.15128851076588,24.46142390742898,25.246947614476085,24.576522967312485,25.017198477871716,24.853115716483444,25.273946033790708,25.82342777447775,26.651734463404864,26.52024933695793,25.713250774890184,26.14486681157723,26.43466181214899,27.015319385565817,26.098902587313205,26.913021693006158,27.70417001983151,28.342268828768283,29.26149173779413,30.241408366244286,30.394415693823248,29.957362273242325,30.48389425361529,31.235710890963674,30.308852185029536,30.400774808134884,30.95894953608513,31.928131975699216,32.4696201258339,31.81586951483041,31.24607241526246,31.50000791158527,32.025587788783014,31.260775324422866,31.35743041243404,32.078536346554756,31.30339595489204,31.538559592328966,31.41304320981726,31.05101444106549,30.616166236344725,29.909341856837273,29.56469686375931,29.454303091857582,29.939620555378497,30.507462232839316,31.00107148522511,31.2952263597399,32.019103712867945,31.289502561558038,31.50501315621659,30.604842034634203,31.351296635344625,30.525710051879287,29.61891118157655,30.335982388351113,30.423765618354082,31.26483775023371,30.64769352413714,30.71351938834414,31.113413703162223,31.78274894086644,31.008816828019917,30.719726394861937,30.84762502135709,30.321920525748283,29.950775305274874,29.779780057724565,30.746395806781948,31.579608254134655,31.304492990951985,30.961218401789665,30.367443106602877,29.54682360868901,29.325159000232816,30.03403194528073,29.937390772625804,29.43083026772365,29.609824896790087,30.060976943932474,29.37859544623643,30.342039621435106,29.568666039966047,28.860037846956402,29.295727791264653,29.378729343414307,29.352920311968774,29.60697093233466,30.492016146425158,29.935056570917368,29.00552410352975,29.121567163150758,29.798700094223022,29.88814533362165,30.633738641627133,30.66871040361002,31.63753749569878,32.24391449615359,33.09288552124053,33.70549174584448,32.726616034284234,32.026502614375204,32.835067017003894,32.13841236103326,32.68264033365995,31.945817347615957,32.5553882480599,31.78732061665505,31.83273734524846,32.49546443717554,32.50344448629767,31.570207813754678,32.405716880224645,32.13096825638786,31.239234758075327,32.18159047793597,31.876277050934732,31.964933581184596,32.282111631240696,32.61531656328589,31.72674506949261,31.047510540578514,30.510172184556723,31.4884263551794,31.700470567680895,31.487194596789777,30.905469457618892,30.53209637477994,30.54881527647376,30.5417194054462,31.205609223339707,32.17732093902305,32.367994726169854,33.08896376704797,32.2239778121002,31.480455497279763,31.837178544141352,32.1664616484195,32.07637717574835,32.72811892768368,33.15425309166312,32.96500582527369,33.45555783715099,33.57847561687231,32.616772648878396,32.1773788491264,32.366862955037504,32.0425133514218,31.20745819201693,31.292311610653996,30.8386268238537,30.586026430595666,29.628845288883895,30.04547705873847,30.222491579130292,30.667014536913484,30.808560696896166,31.109781248960644,30.570820215158165,31.39578195149079,30.63867668574676,29.91548494203016,30.02586420206353,30.21924130199477,30.38386352546513,29.932699104305357,29.03869465366006,28.840690695215017,28.13345960760489,27.460498826112598,27.673035762738436,28.363903797231615,28.125333077739924,28.05327768623829,28.3585013509728,28.830404672771692,27.870092346332967,27.898687324486673,27.046483061742038,27.199719748459756,27.637595889624208,28.052805979270488,28.287951122503728,27.49665668932721,26.795194450300187,27.69906285824254,27.932833031751215,28.400042321532965,27.848943402525038,27.634649669751525,27.76126579521224,27.7202306156978,28.06903198128566,27.567739073187113,28.483329163864255,28.98309444123879,28.685578940436244,27.737501569557935,27.315741029568017,27.403460470493883,27.018166556954384,27.256881218403578,27.151307551190257,27.408459912985563,27.671203593723476,27.530664433259517,27.327258097939193,27.04566731583327,26.67797853425145,27.278900685254484,26.59140426851809,27.51503671426326,27.916774226352572,28.7704526335001,28.965291859582067,29.511903044302016,29.67969282111153,30.52120947930962,30.952658215072006,31.275511980056763,31.10903691360727,31.9766189083457,31.06360647873953,30.14811056246981,31.004229791928083,30.611205609049648,30.35095259314403,29.852384629193693,30.669662966392934,31.648797494359314,31.194608547259122,31.95722344936803,32.12524196645245,31.91351565020159,30.925574813969433,31.71660519670695,31.244867843575776,30.928014704957604,31.915149225853384,32.34031551517546,32.68478567479178,32.24423739686608,33.00095856701955,33.5651000328362,34.34116871561855,34.913715795148164,34.79520860593766,34.27928010979667,34.43971176818013,34.65574857220054,35.462983545381576,34.495165563654155,33.974863432347775,34.352967601269484,34.904062198940665,35.615509673487395,34.75514314463362,35.25479845004156,35.3550409860909,34.56908254045993,34.085626752115786,33.44570256397128,33.44009584886953,34.40130411321297,34.36624206369743,34.73448770213872,34.331563170067966,34.84974937560037,35.09758678311482,35.33880249597132,36.3008866654709,37.01064569223672,37.31325182132423,36.83671780349687,37.04690762842074,37.340116660576314,37.90786905866116,37.325445366092026,37.887450811453164,37.39981775730848,37.63999740453437,37.51149328937754,36.87870864197612,37.15812756726518,36.180710998829454,35.50330153759569,35.108207881916314,34.9211521493271,34.135804327670485,33.60735153174028,33.40213406737894,33.6329869190231,33.423014238942415,34.144655833020806,33.9903702782467,34.963405242189765,34.3317537731491,34.18485594308004,35.05816842010245,34.786084508523345,34.34204804524779,34.630483645014465,33.762732876464725,33.11615130538121,33.35448083281517,33.91667203139514,33.1344712972641,32.96151121053845,33.780650903936476,34.41874695941806,34.51683478849009,33.89750743797049,34.276875517331064,35.136305116117,35.60259818099439,35.823282337747514,34.84782202122733,34.83472622651607,35.816084678284824,36.19428634876385,35.54395152628422,36.003030696418136,35.796517563052475,36.425893038045615,36.7243742197752,37.06430485332385,37.41301385406405,38.12050820188597,38.09076750371605,38.38668083632365,38.44612133176997,37.49132060725242,36.5802891170606,35.89824248570949,36.46778477868065,35.67370526306331,36.1681916359812,35.188799269963056,34.74824063107371,35.68052082601935,34.7730879788287,35.66212825616822,35.57356179179624,35.16595119005069,34.535853705368936,33.726504005957395,32.99314874783158,33.74407008988783,32.817447253502905,33.165881731547415,34.083658904302865,34.40593221737072,33.84613899420947,32.869460040703416,33.832386631984264,33.4027074300684,33.99574996717274,34.62382854986936,35.15383989922702,35.0234006755054,34.70050283707678,34.93841191707179,34.23504952294752,34.939496965613216,34.4642767328769,34.82797940867022,35.278207971248776,35.75790494075045,35.603499649092555,36.00504646077752,36.55341331008822,37.45985597465187,37.02804859681055,36.934166273567826,37.88953281799331,37.08090808335692,36.86332959495485,37.521705192513764,38.174080594442785,39.141135048121214,38.56011648103595,38.78089540405199,38.01681037945673,37.75620255852118,38.241319325752556,38.524415084626526,37.90865940740332,38.732308864127845,37.90918663935736,38.010182686615735,37.72555660363287,38.120894541963935,37.8611605190672,38.31849730107933,37.77891974058002,37.5975195444189,36.97321543190628,37.91038549365476,38.290401190984994,37.91129215294495,36.964183528441936,36.79526051227003,36.70915750134736,36.7040207143873,36.98410116089508,36.543522600550205,36.861310962587595,36.732578864786774,36.22350296471268,36.58329038647935,35.72039882466197,35.87421329319477,35.256024659611285,35.462591245770454,36.35929235257208,37.34577067010105,37.24357563443482,36.61151242861524,37.48842953518033,37.20418949658051,37.73369906237349,36.918383500073105,37.755311833228916,37.2674085078761,36.81107079004869,37.328823474701494,37.34098148532212,37.68104402720928,37.9088195329532,38.49327987199649,38.99490858009085,39.91712715104222,39.85008261911571,39.25336826220155,39.86932662455365,39.53845396870747,39.53923878353089,40.53212952753529,40.87764943437651,39.980338900815696,39.16816018568352,38.42976292734966,38.69151359517127,38.74008376011625,38.18207800388336,37.298972392920405,37.35909770615399,37.06442043790594,37.72328563639894,36.95985909085721,36.472556340973824,35.82484394637868,36.31749481894076,37.30810032039881,37.97646924573928,38.9576208521612,39.78117260709405,39.75938662048429,39.46878175996244,39.324911024887115,39.40363046806306,39.0733914016746,39.826829369645566,40.709943449590355,41.57668955391273,41.3938366738148,41.73576384084299,42.57024719612673,42.271926859393716,42.529926851857454,41.66845782613382,41.282654848881066,41.28172893822193,41.15727338241413,41.586869256570935,40.90365027496591,40.226602694951,40.07366950949654,39.24193315487355,39.391803562641144,40.226966525428,40.198496559634805,40.161423528101295,40.0096074831672,40.36778643867001,39.73417528858408,40.449927187059075,41.43616345152259,40.83995674178004,40.41645552124828,40.40323783643544,39.74926689825952,39.75890532275662,40.11710717109963,40.39018600387499,40.984382427763194,41.33819356793538,40.648538240231574,41.05233082920313,41.580259332899004,41.94547267071903,42.227199115324765,42.34170560259372,41.597192940767854,40.740501075051725,40.201355669181794,39.962375276722014,40.12589712301269,41.08191082067788,40.87508985819295,41.430624978616834,40.92353885015473,41.62532329559326,41.365819909609854,41.837858710903674,41.64553464530036,42.40896827587858,42.95080175809562,42.74704006547108,42.557282354682684,43.52593830227852,42.89393388759345,43.86941791186109,42.99526114296168,43.36909029725939,43.12395253684372,42.164296318776906,41.93380719143897,40.97584427241236,40.90462166117504,40.52025124290958,41.46609782613814,42.36203493922949,41.39744528429583,40.9633731264621,41.177697035484016,41.89432713994756,41.162962979637086,40.708206336479634,40.36414456367493,40.287626333069056,41.23052975954488,41.32520628347993,41.81779247429222,41.65581572521478,42.63080212427303,41.90295797819272,41.37543914746493,40.44134127208963,40.555744505953044,39.69597452227026,39.899239242542535,40.33187724696472,41.100126166362315,41.53329625353217,41.6476169526577,42.522460146807134,43.51631147880107,44.032357074320316,44.19996767444536,44.39771967520937,45.06168630346656,44.72818987676874,45.48721705796197,45.70847131870687,45.28448164416477,45.679803965613246,45.95886352611706,46.6933363317512,47.458927754312754,48.40510194376111,47.80704795010388,47.32063152175397,48.16784100001678,48.30498735047877,47.451744189020246,47.885345895309,47.87390422215685,48.3331450833939,47.50952404551208,47.36455851653591,46.787577274721116,46.282270341645926,45.92579055717215,45.136673828586936,45.943405718542635,45.18082606326789,45.502660437487066,46.10897133639082,45.158533901907504,45.17871693940833,45.21063018590212,45.41598380310461,45.58664967212826,45.287848990410566,44.6005612234585,44.208206047303975,43.99892210541293,44.8584817238152,45.6457090806216,44.82457043463364,45.08551313402131,44.30059181107208,45.08570512896404,44.40232438594103,44.62209278671071,44.99079238763079,44.653160889633,45.58687830436975,46.0233446280472,46.34563110768795,45.818706094287336,46.45202734041959,45.732858408708125,45.748859704472125,45.22988876467571,44.84028327977285,45.344405143056065,44.67670172872022,45.23036228958517,45.611729284748435,45.880302558187395,45.53198852529749,45.864150281995535,46.858237218577415,46.07272017560899,46.016132751014084,46.84793954575434,47.388775368221104,47.60182809224352,47.20079276524484,47.838147446047515,47.31915752450004,47.73348043207079,47.21297858469188,46.81940931454301,46.77583896974102,46.96436672937125,46.78406630503014,47.01229263842106,47.4576744409278,47.28196973539889,47.05586538603529,47.91948694223538,48.15670667588711,48.962753273081034,48.17681818315759,48.53693942818791,48.635174341499805,49.3755062171258,49.586383669637144,48.75643328158185,48.017344841267914,47.32236011372879,46.8242133106105,47.10768245672807,47.0950404824689,48.03677201969549,47.3443518280983,48.21180291892961,47.87726587476209,48.44158426858485,49.25785346701741,49.615390283521265,49.18159250123426,48.30785005213693,48.989711054135114,48.62290072301403,49.20529024861753,48.95809117285535,48.17816404951736,48.75414407812059,48.984775201417506,49.38560281600803,48.72038142150268,48.32527097593993,47.7030978561379,47.29086540499702,47.849640815518796,48.78448673058301,48.63236819161102,47.980704858433455,47.8712173551321,47.241060846019536,46.317660024389625,46.56111263949424,47.390701819676906,46.74847523216158,46.60958147374913,47.03367685666308,47.00184220727533,47.62020871601999,48.39319421397522,48.75297426758334,48.94488467182964,48.93461616197601,48.21097642509267,48.50066581694409,48.83650656091049,48.61483200872317,47.97369605349377,47.059491792693734,46.41421501385048,46.80433346144855,45.95337853906676,46.68456832040101,47.614229425322264,47.74747834680602,48.18934456957504,48.505875293165445,48.851816774345934,49.556891820859164,48.85238761547953,48.5943926749751,48.13786426372826,48.55038759484887,49.01704415353015,48.57488929433748,48.93344951979816,49.26103831361979,49.72181600565091,48.78297388320789,49.59633198939264,49.7790413829498,50.56799143133685,51.56221307022497,51.94988738745451,52.3749983869493,51.980475602671504,52.278620125725865,51.68069824250415,51.16486401390284,50.7760298284702,50.661221305374056,51.0527288466692,50.32325835945085,50.11320685315877,49.69340842496604,50.084023657720536,49.274807701818645,49.583392679691315,50.450408729724586,51.14479777170345,50.167770855594426,49.85485213436186,49.53808558918536,49.54665906121954,48.68476628744975,49.18772572185844,49.64206764753908,48.73427317896858,49.67253961553797,50.48914988245815,50.92636435106397,50.14406744809821,49.81166067859158,49.28241706779227,49.52293874742463,49.39121865481138,49.844391975551844,50.217472144868225,50.7522336342372,49.86925458256155,49.429552278481424,49.49943050881848,49.517101555131376,50.16080865217373,49.733246179297566,48.830908979289234,48.13185827573761,47.7755966456607,46.8057135255076,46.708202140405774,47.343501224182546,47.277674581389874,46.40351208113134,46.0945665454492,47.08715644199401,46.251562191173434,46.761506089009345,46.4817818836309,47.042541520670056,46.6516003892757,45.883322292007506,46.86724600056186,46.86281932378188,46.40759121347219,45.465488051529974,45.3259188067168,44.32600865047425,45.29457429610193,45.36450507165864,44.77111084572971,44.653018224053085,45.572898864746094,46.50816796114668,46.40093941707164,46.36090421397239,45.70448544388637,45.696394473314285,45.8752924380824,44.94257535459474,45.5249575660564,44.85384614672512,44.6582677802071,45.199947606772184,44.86284423712641,44.365330416709185,44.70703144278377,44.19516359362751,44.48992273164913,44.544064559973776,44.775534245651215,44.21985091594979,43.916745490860194,43.43992476910353,43.395164146553725,43.98067774344236,44.954265950247645,44.99101090757176,44.23391910595819,44.19527061237022,44.515292927622795,44.82154575129971,44.3839908237569,44.812402580399066,44.66753152757883,44.493309433571994,43.75841778051108,44.00871856696904,43.95892563415691,44.39700109977275,43.86257339734584,44.399133279919624,43.978881892282516,43.297206211835146,42.89092044206336,43.86870998190716,43.38574498984963,43.54631400993094,43.218120098579675,43.32653563749045,43.24376040883362,42.35218668822199,42.790577944833785,43.137388785835356,43.16196360765025,42.228375480510294,42.35009297076613,41.54803830338642,40.58354920707643,40.188156308140606,39.20662629278377,39.71474803611636,38.76547441678122,38.602903267834336,38.238995493389666,38.105800984892994,38.11563583696261,37.234321682713926,36.293741195928305,36.473683243151754,35.76988023798913,35.78836283972487,35.59625382954255,35.756942581851035,35.85307654738426,36.7463476639241,37.1214533043094,36.79072144581005,36.3942971075885,36.55538431648165,36.231225022580475,36.16353191016242,36.53998299688101,36.324786914046854,36.426340802107006,36.93431379413232,36.237517204135656,36.086423243861645,36.07526828581467,36.842855017166585,37.26904486026615,36.742956715635955,37.01273030368611,36.06698235217482,35.10190468747169,34.65867910394445,35.56588502647355,36.37319115316495,37.30905207898468,38.2691692430526,37.552625581622124,36.586442538071424,35.99670388875529,35.077605611179024,34.755421191453934,34.95590989757329,35.26770836673677,34.90576630551368,35.42506208084524,35.48685972345993,35.14976778021082,35.370646548923105,34.51413150411099,34.084195300005376,34.44916494563222,34.89758614869788,34.2322446256876,34.576954409014434,33.96390956453979,33.58343348838389,32.91999231884256,32.15811701165512,32.61286874162033,31.91449764976278,32.68932477617636,33.08779709553346,33.40726485662162,34.09240961773321,34.22231260826811,34.40102473879233,34.305776285007596,34.33306271024048,35.1469839499332,34.652936392463744,34.52098566386849,34.802289286162704,33.923831885214895,33.47231457475573,34.22327256202698,35.137524185702205,35.940909954253584,35.32285923091695,35.52248526038602,35.78566836705431,35.92506626015529,35.03371737105772,34.749141490552574,34.34065624512732,33.8601535721682,33.573455594014376,33.56158383889124,33.46934564691037,33.943976333830506,34.23630391387269,33.494937885552645,34.35848672455177,33.85619435273111,33.369511905591935,33.59704729216173,33.92017982713878,33.62708997214213,33.340871000196785,34.18746279599145,34.382383867166936,33.91226355871186,33.362363379914314,33.017523986753076,33.87490854272619,33.44500834308565,34.056702783796936,33.51777216279879,33.29018086846918,32.426037427037954,33.048849592451006,33.33975812466815,34.12007578834891,33.17856132797897,32.42812026152387,32.97440956858918,33.83051650039852,33.67342782067135,34.42261490272358,35.11439347965643,34.40088684577495,34.03374694753438,34.792713368311524,35.208350291941315,36.033990959171206,36.02480153879151,36.53377073490992,36.00324520189315,36.88588872458786,36.21680709160864,35.78138074791059,36.7264630231075,37.10025685513392,37.096600288990885,37.69422311941162,36.87661197222769,36.15130553394556,36.63263409631327,36.205379569903016,35.30047255009413,35.715853738132864,36.647297732997686,36.59892105078325,37.34427257394418,38.20326644461602,37.520295111462474,37.46922834031284,36.55839678645134,37.02237451355904,37.59389349631965,38.558970305137336,38.550117678474635,37.91624611057341,37.983004913665354,37.60150100290775,36.79443309735507,36.17440066067502,35.41226160991937,35.42411332949996,34.45196918444708,35.248327939305454,35.6132077886723,36.50181211903691,37.025386444758624,37.70252643106505,38.69638456683606,39.49999966379255,40.2621372397989,39.89493373595178,40.13660348765552,40.785094124730676,40.5568397580646,40.34710439434275,39.9454705347307,39.64280758984387,40.174217271152884,39.854060573969036,39.3566554710269,38.65071746474132,38.1874177576974,37.93697568261996,37.67020033719018,36.72680163057521,36.868997236248106,36.990809578448534,36.38112245360389,37.03412988362834,36.350505648646504,35.79410235397518,35.64801524532959,35.38389781722799,34.644642502535135,35.45294601097703,35.81243346584961,35.76513442071155,36.61695568077266,36.99757816595957,36.95585466362536,37.90181753737852,38.474734449759126,37.69817936560139,37.319095231126994,37.78496711887419,37.36126078153029,37.376686297822744,37.36475105304271,36.642907411791384,36.19161573424935,35.9131342517212,36.646407798398286,37.09993706876412,37.39409327786416,36.39746206346899,36.86387736862525,37.779627489391714,36.839977317489684,36.903321221936494,37.62445710413158,37.67599735595286,37.960961238481104,37.119725910015404,36.6646652109921,37.01362195191905,36.1729139839299,36.885076257400215,37.643571368418634,37.978375842794776,38.70928400428966,39.2753698034212,39.60871107317507,39.78648112434894,40.11400203825906,39.999703240115196,40.15411859191954,39.73954851645976,39.51537801185623,39.91605387162417,40.26595568889752,41.12210955005139,41.93325393879786,41.64711037883535,41.984975246712565,42.404741351958364,43.003551674541086,42.57116326736286,43.018814048264176,42.550204428844154,42.49191697081551,42.1395111316815,42.07241750461981,42.910072254016995,43.88480602949858,44.18300346983597,44.0770315323025,43.57552880095318,43.15636578062549,43.04979646811262,42.35652364883572,43.119674916379154,43.256195350084454,42.323945278767496,42.148122027982026,41.4350414625369,40.476249414961785,40.13299301220104,41.082178089767694,40.78970488673076,40.56830750312656,41.53725751489401,41.180492504965514,40.54709072923288,40.759279714431614,40.17570651136339,40.03949078777805,39.473531970754266,39.23705268232152,38.33495598519221,38.72558590956032,38.063801121432334,37.15361514221877,37.35682553052902,36.615766152273864,35.952872917987406,35.290426020510495,35.778907164465636,34.80310500552878,35.64427857333794,36.59439280536026,36.86467118235305,37.59446471184492,36.76968925213441,37.005316327326,37.84032403305173,38.13088611513376,38.01188015239313,38.51918109646067,39.31853716028854,38.98935495875776,38.781414897646755,38.874014941975474,39.59273937344551,38.920274012256414,39.260206130333245,38.924200339242816,38.18765150569379,38.54038737947121,39.40630832128227,39.88204768439755,39.49435424990952,39.40845253132284,38.9496592534706,38.36850407347083,38.9832472265698,39.76077366620302,40.70677175791934,40.29041293123737,41.26052497513592,41.846384793985635,41.23201435338706,41.13646355131641,40.99284163489938,40.801995309535414,40.05277574714273,40.00854910677299,40.941435910295695,40.567623866256326,40.872952399309725,41.12553380103782,40.51657158927992,41.325530806556344,40.6783046387136,41.03541588736698,41.296952140983194,42.030848199967295,42.96340316487476,42.55966265965253,41.90950098866597,42.50954089779407,42.785453231073916,42.911090143956244,43.45720005221665,42.95307259215042,43.436792104970664,43.342037378344685,42.3796311635524,41.86136204143986,41.023647758644074,41.76143349055201,41.38885620236397,40.97886725515127,40.602667269762605,40.823913463857025,41.395674012601376,41.37508063344285,40.56411376828328,41.09451236296445,40.51008953154087,40.81062051048502,39.93062483333051,40.07650638418272,40.034213699866086,40.665468307211995,41.537849040701985,42.18079236056656,42.84574268385768,43.25091985426843,43.54310225136578,44.44595188414678,44.598188059870154,45.03776158904657,44.525998960249126,44.674216675106436,44.44191074091941,44.19972700998187,43.971799401566386,44.44006331078708,45.05447907373309,45.82006512116641,45.76349595421925,45.99011180084199,45.221541735343635,45.692443447653204,45.628121230285615,46.400554809719324,45.44843675289303,44.61785800848156,44.90211526257917,44.73347649909556,45.656598277855664,45.05779130291194,44.468155776150525,44.64306962583214,44.79167032055557,44.36501194909215,44.19200480077416,44.976890115998685,44.59101879922673,45.16405566688627,44.24658071855083,44.80661518312991,45.64377970993519,44.69542281748727,44.19077506009489,44.75736656412482,45.44075771048665,45.14708711626008,44.60794224822894,44.48737772740424,43.687247432768345,44.54071959713474,44.27890277467668,44.285793765448034,43.84276382531971,43.184136014897376,43.75265919463709,43.177793115377426,42.417833945248276,43.2579486630857,43.46019108872861,43.92250534566119,44.87316102813929,44.94377094320953,45.009665072429925,45.49033377086744,46.230205074418336,47.0198613894172,47.164927107747644,46.39615369727835,45.84582079015672,44.97775926394388,44.84073674259707,45.55045896442607,45.727550730109215,45.376434376928955,45.04242351325229,44.94061682978645,44.858676597476006,45.034338088706136,44.275043359957635,43.7499115485698,43.1419892013073,43.58672342263162,43.50041199941188,43.804432705044746,43.84513474069536,43.079643085598946,42.88214800879359,42.21628727251664,42.162610604893416,42.45758251706138,42.87084002606571,42.88978039287031,43.42824018280953,43.260625324677676,43.27895617811009,43.272491595707834,43.54168532881886,42.64632622804493,43.19119969801977,42.565134395845234,43.24637030437589,43.00295691238716,43.76392350718379,44.54593470459804,44.62202040338889,44.633275761734694,44.9263006541878,45.695988362655044,45.65460542589426,45.092806125525385,45.72978213708848,46.056092207320035,45.65211156196892,45.59340978693217,45.67124187992886,46.329319508280605,45.66035011457279,46.456781399436295,46.60124800307676,47.0255291312933,46.21561730327085,46.75326425116509,47.04713380523026,46.83734211185947,46.84215942164883,46.702060292009264,45.73418229399249,44.88396929111332,45.60011296812445,46.55370440706611,46.43745345668867,46.283441443927586,47.137598814442754,46.80841472232714,47.01395880058408,47.95771572459489,48.698581100441515,48.065382862929255,48.030285239219666,48.871817075647414,49.5703266649507,48.89183398662135,48.311273023020476,47.366584157105535,48.26561718666926,47.408619918394834,48.35138821741566,48.960091322194785,49.07072856044397,48.938179426360875,48.2845490607433,48.34376370953396,49.28651191527024,49.76925481995568,49.91872591432184,50.91752236057073,51.89541632728651,52.87205883394927,53.224661954678595,54.17489988170564,53.30427458323538,52.809869864955544,53.78338450053707,53.238858428783715,52.93980099866167,53.602607479318976,53.15038374066353,53.42046407936141,53.26016613515094,52.931183556094766,52.8494806708768,52.94765946594998,52.146849046461284,51.38056930201128,51.714250465855,51.435895898379385,50.77227352978662,51.294119423255324,50.96766070602462,51.12716602906585,50.87133162468672,50.09419423947111,51.05835773330182,50.672027446795255,50.98764778021723,50.38458923390135,51.31996832275763,51.9523950451985,52.36171868536621,53.004671249073,52.21084677474573,52.62385545251891,52.26760146068409,52.6476625087671,53.06270170817152,52.632562960963696,53.23176677059382,52.43521951651201,52.36014741426334,51.39421616960317,50.525606545154005,51.07422620989382,51.55079417536035,50.79554359707981,50.54703229246661,50.29818060109392,50.48298604460433,50.63777596317232,50.10839249799028,49.3256683787331,49.92923642415553,50.396512114908546,49.4056954565458,48.710529181174934,48.83757166098803,48.53583301883191,48.141245391685516,48.32726294035092,48.777759436517954,48.65453603491187,48.32670762576163,47.746367529034615,47.580260364338756,47.125341075938195,47.04680129606277,47.93618533620611,48.631626402027905,48.70773181086406,48.66209017019719,49.26315000280738,49.097299803514034,48.90980630693957,48.82331190444529,49.115667461417615,48.36486835265532,47.7163748703897,47.490267424844205,46.90983479376882,46.43186799157411,46.71470181318,47.06547607947141,47.439718577545136,47.79308191826567,48.519588181748986,49.27695749560371,50.2244587559253,50.84808111656457,51.50544079532847,51.302121789660305,51.53596379375085,51.37344476766884,52.16348933801055,52.74768224125728,52.110186556354165,51.35552773810923,51.17601842014119,51.53769756294787,50.95830916101113,50.58413407718763,50.01389176072553,49.886369133368134,50.05501287756488,50.2786082229577,50.769276107195765,51.737766691017896,52.68551635975018,53.06790896411985,53.245554342865944,52.953555651474744,52.796698820311576,52.59427229547873,52.48332978179678,51.69156349962577,50.75008916947991,51.0548628596589,50.4300794810988,51.03876384533942,51.51106687635183,51.711935909464955,51.15530652133748,51.241347280330956,51.57409005286172,51.887261795811355,51.04353459458798,50.779349646531045,51.270235888659954,51.52101214416325,51.33136740978807,51.74224736355245,52.69109951192513,52.09017919795588,52.89162359200418,52.112010658252984,52.457658749073744,53.05854397080839,53.05440806224942,53.45010467944667,53.07636994821951,52.88239018898457,52.313203322235495,53.08189209830016,52.431636477820575,52.70364241488278,52.07363947900012,51.321498000063,51.660581884440035,52.0904127061367,52.20558052044362,52.315001003909856,52.734853150788695,52.59951585624367,52.19130794424564,51.50335538573563,52.46130984229967,52.11268243659288,52.552506521344185,53.495184801053256,54.1597217428498,53.5125039932318,53.518710462376475,52.62228532368317,52.9508718685247,52.41707239858806,53.35666472790763,53.01304535707459,52.2212615669705,52.52330258395523,51.74723687907681,52.542946190107614,52.05062442738563,52.26810058578849,51.64417412970215,50.838686167728156,50.584295789245516,50.209413894917816,49.95142101543024,49.74469820735976,50.434286491945386,50.030916881747544,49.44616245990619,48.525551391299814,48.709991835057735,47.767768524587154,48.59846026962623,48.39713134197518,48.12331241182983,48.78980770939961,49.21557108219713,48.276833162643015,48.45187192643061,48.35999127756804,48.58754251059145,48.18911936599761,47.31781336152926,47.92703682370484,48.398342445492744,49.3077566055581,49.54670070298016,50.40372907789424,49.62352563487366,49.80516146309674,49.461527401115745,49.021496690344065,48.10867054294795,48.82940900372341,49.13863384537399,48.80469124717638,48.972928202711046,48.81764615746215,49.73485616501421,50.3607022841461,50.90877015935257,51.7505400609225,51.87282957183197,50.931022906675935,50.41572034312412,50.870602602139115,50.75270164664835,51.25075091701001,50.42759948037565,49.9685197873041,50.290366038214415,51.14191945269704,51.46089744288474,52.24684181949124,52.149576851632446,51.759742671158165,52.62143704527989,51.902312314137816,52.6319161565043,51.70650638639927,51.861042810603976,52.418591879308224,53.044356264639646,53.415436608716846,53.386452943086624,52.388402034994215,51.81182744167745,52.79980614874512,52.34611950069666,51.519449308514595,51.48332716105506,51.95368770882487,51.12674439372495,50.64709523553029,50.12251436756924,50.56420709239319,50.965249948669225,51.73735522152856,51.97503172280267,52.21944989496842,51.895983709953725,52.34011654229835,51.49105104524642,52.138675265945494,52.051333519630134,51.92030348209664,51.43184048682451,52.41335231997073,52.33490215148777,52.42899685353041,51.617094305343926,51.68582170968875,51.47403463348746,52.00758624216542,52.98656791355461,52.03505124198273,53.02633387641981,53.63617138052359,53.094847416039556,52.477616073098034,52.89385482482612,53.0201401906088,53.21421610331163,52.69530562311411,52.72369528282434,52.79769965959713,52.794215883128345,52.01928675081581,52.05011668847874,52.333375059533864,51.69926046906039,50.71243090601638,50.82566445367411,50.43696819618344,49.463062843773514,49.15243099397048,48.65279393363744,48.83516591321677,48.10637454548851,47.315028212964535,47.57075097318739,47.763696929905564,48.68663572659716,48.50159072643146,47.587938820011914,47.3800641852431,46.67279007798061,46.2908123168163,46.344561505597085,46.88106506736949,46.18941106647253,47.026411530096084,46.754834816325456,46.37195036141202,45.61947354860604,46.42649055318907,45.49675283720717,46.33476008241996,46.7888461695984,46.09513653581962,45.93827820243314,46.68340152921155,46.34029280208051,46.754924033302814,46.14461351931095,45.27663108985871,45.403375656344,45.36801946442574,45.676318464335054,45.218046522233635,44.626968684606254,43.743592251092196,44.11184144532308,43.64714376302436,43.24045332800597,43.736572878435254,44.05809357762337,44.856692605651915,44.428475197870284,43.84457665076479,42.93439147807658,42.49177381070331,43.30745658278465,44.18133714143187,44.17456148983911,43.84900397853926,44.58751291874796,44.82564853923395,44.425041139591485,45.052242825273424,45.07752408506349,44.75269726617262,44.81159878941253,45.639526878949255,45.18416527053341,45.36053263070062,45.996020067017525,45.86414384236559,45.18390487879515,45.35012789582834,44.983460295945406,44.367415411863476,44.11352697201073,44.640066146384925,45.09412251133472,45.95485796360299,46.0944056333974,46.10433167917654,45.29807945154607,45.350865946151316,44.8895079549402,44.62587229255587,43.75891878455877,42.862359484657645,43.060179858934134,43.37303499225527,42.9699101196602,42.78162738541141,42.43169284053147,43.3743677069433,42.9468241664581,42.83210813580081,43.71875624824315,42.89828440733254,42.0867740563117,41.21660389844328,42.07512964308262,41.14541771262884,41.28007621085271,42.108528666663915,42.6381569923833,42.26743704266846,41.86922375904396,41.2525049187243,40.87161783268675,41.233361712191254,41.54594555357471,42.061954957433045,42.3889339203015,42.17932477267459,42.254282775335014,43.0062129474245,43.71384509000927,44.06590074021369,44.21862713992596,43.61450439086184,42.76814837101847,43.20178713044152,43.980000423733145,44.92975709401071,44.15007641678676,43.9492252455093,43.337536559440196,43.762591327074915,44.43643159326166,43.53918732283637,44.2814823561348,45.22676521027461,44.81999641330913,44.55739145819098,44.30654144054279,44.709798806812614,44.163206465542316,44.93501545069739,44.17875537322834,43.65576262678951,43.276476001832634,44.15325874648988,44.64939489541575,44.74651634832844,45.70420909160748,45.32723060436547,45.65421795565635,45.231541440822184,45.14935151487589,45.41387768834829,46.21737263118848,46.79072590637952,47.0490707908757,46.61480109160766,46.00216057850048,46.39384855795652,45.84077307675034,46.073346922174096,46.142524822149426,46.48260461445898,45.58940746821463,45.257527011912316,45.88614220311865,46.68186174985021,47.3683653161861,47.376291546504945,47.779862018767744,48.121759050060064,48.25572176091373,47.61488517187536,47.83725163759664,47.04037833446637,47.53017231402919,47.30547987110913,46.933981178328395,46.40945964027196,46.60373350791633,45.84393792133778,45.64663494192064,46.25240165833384,46.719289609231055,46.803446895908564,46.714494986925274,46.50602048402652,46.26347014633939,45.6653972803615,44.903242842294276,44.51642132177949,44.248695998452604,44.7168739377521,44.929569316562265,45.674410950858146,45.969866323750466,45.88856876408681,46.60605513304472,47.426417734473944,48.15344725828618,48.206809762399644,47.5223925402388,46.834640101064,47.017102654092014,46.33626990998164,46.112557703163475,45.813281275331974,44.96608218783513,45.10767496889457,44.12035527639091,44.892402802594006,45.636821570806205,45.91199124092236,45.452482340391725,44.94280012650415,44.88243213901296,44.24719305476174,44.65036681480706,44.21282439539209,44.022619330789894,44.38437550328672,45.10650606593117,45.65250423597172,46.29174627456814,46.3100909832865,45.56997943576425,46.03049162495881,46.72860492300242,46.84244285104796,46.539626161102206,46.83700302289799,47.002260917797685,47.45007478771731,47.18187371408567,47.04077437892556,46.18024226883426,45.47818903438747,44.910195369273424,45.266018592752516,45.8320233784616,46.5774916773662,47.17663480620831,46.28025613212958,45.3355966610834,45.94239574344829,45.32157215196639,45.71803666977212,45.02990610199049,44.22043719654903,43.235478948801756,43.070879817940295,42.785039907786995,43.36987866368145,44.20966882491484,44.39688813127577,43.87762678042054,43.75221101241186,44.085318208206445,44.23982341354713,43.96865663398057,44.88617037702352,45.13945949403569,44.59164104470983,43.689949445426464,43.86377900233492,43.171152672264725,43.18503251997754,43.39095869055018,44.0704217008315,43.794822555501014,44.072807017248124,44.563623898196965,44.97198249353096,45.09241670649499,45.16077970108017,44.813450071495026,44.0342339258641,43.40474972920492,44.39029751578346,44.23594852210954,45.0476157697849,44.17018192028627,43.89716600859538,43.715286707505584,43.80992598505691,44.7335322923027,44.35150103783235,44.714922526851296,43.874031548853964,43.58947867900133,42.91078635677695,43.090794869698584,43.42716231290251,43.192921021487564,42.469382212497294,43.368348732590675,42.37998216878623,42.36831985833123,43.07820765208453,43.044019997119904,42.89222647389397,42.814594296272844,42.423872930929065,43.23811643663794,43.13466788781807,42.67483875434846,43.12116898596287,42.40421966044232,41.57642289856449,42.095952841918916,42.86078160814941,42.946935976389796,43.84784731827676,44.68344748299569,45.219461063854396,44.304181796032935,44.857967810705304,44.76060986332595,45.5220743091777,44.71040051057935,43.83656733343378,43.892826977651566,42.899352779611945,43.137675086036325,43.514882982708514,42.97992150532082,43.43138815276325,43.382633089553565,43.984993868041784,44.85745448851958,44.70411933911964,44.576258298475295,44.406505186110735,43.95072046574205,43.21237665042281,43.88302577659488,44.364396129734814,45.33448094781488,44.665685933083296,44.94914999837056,45.22179282736033,44.352537729777396,44.661114550661296,44.0403631166555,43.474970038514584,42.89835178107023,42.281314593274146,41.91275435592979,42.203622153028846,41.47422882402316,40.76867420366034,40.03770027728751,40.7780335014686,41.33449450181797,41.37122784368694,40.660620239097625,40.63657826697454,40.81356627121568,41.37127747153863,41.54674505069852,41.393359960988164,41.827518644277006,41.74564734240994,40.895757713355124,41.55815029423684,41.86598239047453,41.89209489757195,41.60772079322487,42.491918987128884,43.222499405033886,43.819956017658114,42.863999986089766,43.56144135585055,43.98882834659889,44.48047120682895,44.82739652786404,45.66154520586133,46.413337343838066,45.866600112523884,44.90183491259813,45.003699550405145,45.64095010375604,44.64474251354113,44.632176014594734,43.7670672358945,43.358190963510424,42.75734905805439,43.59580406313762,43.336038508918136,42.60022850567475,42.50075049744919,41.873319627251476,42.68068418512121,43.664492250885814,42.8109602550976,43.35651396261528,43.30451279086992,43.434522258583456,43.835280476137996,44.466916733421385,43.87328915251419,44.395911124069244,44.784901892300695,44.05361348064616,44.406136254779994,44.1779497587122,44.164998083375394,44.29189548594877,44.96986615238711,45.05397964688018,44.2772240517661,44.795962578151375,45.46432874631137,44.61489825230092,45.49122597463429,46.14814302744344,46.562905591446906,46.86700343200937,47.436321017798036,48.086297971662134,47.32474660594016,46.696971400175244,46.43292219284922,46.04711956717074,45.52495168475434,46.34079272253439,46.969533250667155,46.118745481129736,46.326504895463586,47.1092540230602,47.68940322799608,47.81545737059787,47.65889341617003,46.72064768895507,46.4819718147628,46.866472840774804,46.987426943611354,46.19754031440243,47.17026042798534,46.324198129586875,47.23582790605724,48.113025296479464,47.30347909545526,46.69658917514607,46.3387401336804,46.94584281370044,47.90618273848668,47.07886448688805,46.79058054415509,46.15662652393803,45.794904860667884,45.979480215813965,46.648898667190224,45.832768998108804,46.375723199453205,46.88738558907062,47.23218901641667,48.216512985527515,47.236603281926364,47.788087299559265,47.397805941756815,48.201448855455965,47.902577688451856,48.34852190967649,48.511623898055404,49.4989072047174,49.95075327064842,50.36217288579792,49.95590635156259,50.123846898786724,50.319442321546376,51.02616762649268,51.718847339972854,50.73159494949505,50.889658202417195,51.03676387062296,51.81535543035716,50.944254216738045,51.60369728272781,51.11336667230353,50.31419634493068,50.496105989441276,50.99638975551352,51.85639059031382,52.12954151490703,51.308259723708034,51.3093602610752,51.23699163692072,51.74062435841188,51.2327324510552,50.97750936541706,50.281903634779155,50.05754034221172,50.14402296813205,50.8446787330322,51.435256694443524,51.74574091238901,52.47857379540801,52.95194540545344,53.25964836962521,52.70990620041266,52.839671038556844,52.60287067294121,52.05260006850585,51.26760346116498,51.58311879867688,51.54363240394741,51.642242207657546,51.77656680857763,52.54071676917374,52.809162352234125,52.76489826058969,52.423835285007954,53.24938915576786,54.23714811122045,53.913979801815,53.136575020849705,52.511657712515444,52.4961181730032,52.88334639091045,53.41659177094698,54.13875853223726,53.23440146818757,53.889712969306856,53.75205270573497,52.980690070427954,53.676857666578144,53.77554140659049,54.41090780030936,54.78403018601239,55.41863101813942,55.80155562516302,56.55242101661861,56.876303122378886,57.802862686570734,57.842998940031976,58.62963029416278,57.910017845220864,58.14870522869751,57.460497616790235,57.95462135691196,58.926506019197404,59.00902758631855,58.76582127716392,58.16278296895325,57.50209763459861,57.58374851476401,58.023478877265006,58.261749270837754,58.411250211298466,57.48160719173029,57.24807549966499,57.02551136398688,57.893221580423415,58.21586034493521,58.01617288030684,58.898248576559126,57.91362319467589,58.63378231599927,59.53119976632297,59.59848632756621,60.08019544836134,59.227027610875666,58.63618461461738,59.129978094715625,58.46922791516408,58.8917687041685,57.97124809958041,58.61525334836915,57.9296820149757,58.17085391422734,57.22511733043939,58.17639701068401,58.33279479853809,59.03508855588734,58.846567935775965,58.813303214963526,59.03038783604279,58.72194657986984,59.386080670170486,58.68731230450794,58.539349507540464,58.399761103093624,59.06821493990719,58.665147880557925,58.35915333312005,57.958748284261674,57.203911495395005,56.98732274910435,57.36697016377002,58.353520835284144,57.71632393216714,57.932523855473846,58.02361763548106,57.20141007145867,57.00817026384175,56.852832599543035,57.39353732485324,57.14270322909579,58.02540404582396,57.77636334858835,57.62021718872711,58.22480388823897,57.31437799753621,58.28874470386654,58.842268630862236,58.730814449023455,59.43882551789284,59.83172787446529,59.23456860007718,59.23552022036165,58.62056822795421,58.49088226445019,57.58682525670156,57.323655342217535,57.9250895017758,57.38718300499022,56.89527767710388,57.28870133450255,57.30877929739654,56.36749542225152,57.26294911513105,56.35078712552786,55.611798704601824,54.66054231207818,54.85527489800006,55.81553324824199,55.43701571132988,54.55479259043932,54.77884995331988,54.92706190980971,55.91124069551006,55.989478528965265,55.60846497118473,56.42571742273867,56.69000623328611,56.33384610526264,57.17177243856713,58.06430734973401,57.19673000462353,56.978912010323256,56.99779768846929,57.98057434242219,58.46894242055714,58.38088064501062,59.14177799317986,58.23979870136827,58.60463152313605,58.497472250368446,59.2915855483152,59.736303098965436,60.56811210513115,61.31992665678263,60.53344015730545,60.1979922959581,59.41688755340874,58.42994594713673,57.788403736427426,57.29037703759968,56.50572542566806,55.88382161362097,56.11740325158462,55.85247405990958,54.937374270986766,55.75357021810487,56.530109393876046,56.45390730816871,56.79291629418731,57.307301935739815,57.15372947463766,57.389764399733394,57.009067243896425,57.28576243761927,57.03202002309263,56.73984614899382,56.7068398874253,56.25095789413899,56.51647312566638,56.9804778592661,57.17080550920218,56.659458505921066,57.05053567420691,57.48692066362128,57.52958219498396,57.87637388939038,58.39259913004935,59.083604409359396,59.36034451285377,59.88940362399444,59.24670315301046,59.63878945587203,58.96952623408288,58.87678197491914,59.395566884893924,59.50564870238304,58.65303107025102,59.32156611327082,58.452751031611115,57.99821043992415,58.68728700932115,58.53606055723503,58.02125099301338,57.97989806486294,58.45001393277198,57.756457476876676,57.56891618669033,57.75738373352215,58.54837985755876,59.33853961341083,59.92053103307262,60.081263130065054,59.11514572892338,58.916589595377445,59.15105853928253,59.743686742614955,59.645191244315356,58.787549580447376,59.24471042258665,58.648271639831364,59.60591021133587,59.358051321003586,59.052939989138395,59.81587280007079,60.792606110684574,61.17072345688939,60.18962165014818,60.444652390666306,60.83746313909069,61.225063911639154,61.19538751523942,62.075155589263886,61.23606602847576,61.96258500730619,61.6590287797153,62.43425408517942,62.554888476617634,63.09378748666495,62.54952859552577,61.61461017187685,62.27249881718308,62.56672052619979,62.36968506639823,62.894751337356865,62.3302460256964,62.35868679173291,62.60262056067586,62.93261057604104,63.65482443803921,64.64077385282144,63.72883518226445,62.9418107168749,62.75312091829255,62.2769056991674,61.45503235375509,60.66330086067319,60.01583431009203,60.199721687007695,59.80336488503963,59.3302264213562,58.41985156387091,58.56805523112416,58.4951413506642,58.791814076248556,58.17870064591989,59.09252811828628,58.42848296603188,58.44408919196576,58.9105865447782,58.82155796745792,59.65608507534489,59.57906786678359,59.952449567615986,60.25702512264252,59.43049493478611,59.664430011529475,59.16595300892368,59.80735964048654,60.32605945272371,59.72084609000012,59.49935161229223,58.50494053307921,57.90262842876837,58.121567766647786,58.629735429771245,58.592017183080316,57.90923990448937,58.184581025503576,59.07679186668247,58.25503910612315,58.962714300025254,58.85277648223564,59.04112282814458,58.410833111964166,58.208198418375105,58.742823116481304,57.77580617554486,57.457746882457286,58.09090434247628,58.89609502116218,59.50120353419334,59.41664258297533,59.28529912233353,59.45867216680199,60.30433447100222,61.0145517308265,60.18042765324935,59.37493183743209,59.021820245776325,59.566518414299935,59.242135846521705,59.602866240777075,59.306451737415045,58.313339901622385,57.50990486657247,57.276539518497884,56.480731666553766,56.66956601571292,57.0246899696067,56.74092479329556,57.72128617670387,56.9456883543171,56.918227441143245,57.48351402487606,57.42604801058769,57.221207132562995,56.629127187188715,56.61396305216476,56.421109344344586,56.101934120524675,56.42742864135653,56.16064357198775,56.37004050333053,55.431541616562754,54.73904528375715,54.903477345593274,54.75922079477459,54.2590009518899,54.02622986771166,54.125646971631795,54.644550221040845,55.34359548566863,54.63971531856805,55.56116443919018,55.8482492081821,56.7598890690133,56.39542478276417,56.612369204405695,57.297719556838274,57.38527165632695,57.11117370426655,56.56334929028526,57.231042127124965,57.929102489724755,57.812864523846656,57.94796710740775,57.172355983406305,56.26078719738871,55.65416913572699,56.64288015617058,57.04374515032396,56.848210683092475,56.30760865844786,55.76187039865181,55.07056374941021,55.37800193950534,55.367347076535225,54.68246769485995,53.73384778853506,52.97567261988297,52.04818873479962,51.20376021368429,51.06597027229145,50.32491008238867,50.31494178529829,50.80943885445595,50.65305797243491,50.69576032925397,51.21206269226968,51.75048970384523,52.41965705854818,52.732112269382924,53.51128126727417,53.55615056026727,54.30221492005512,53.58858407475054,53.51549079315737,54.477227142546326,53.60229442594573,53.00656095938757,52.27393655618653,51.685204645618796,51.45448850514367,51.461344288196415,51.16008658101782,51.30547095183283,50.629878780804574,51.28182871080935,52.026683344040066,52.49380559287965,53.23551004752517,53.874042260460556,53.4874685453251,53.214444290846586,52.99236220959574,52.420640628784895,52.966285151429474,53.83148262929171,53.38658515783027,53.177187617402524,52.92504067812115,53.80297251511365,53.03406642982736,52.37160156061873,52.852660208940506,52.50948496256024,53.1317089246586,54.05492268735543,53.34521890711039,53.86513559427112,53.41505306214094,53.06068969378248,52.3912899941206,51.75644740695134,51.90706958482042,51.018884864635766,50.44350568763912,50.298925418872386,50.808956780005246,49.850955840200186,49.458500045351684,50.32244995702058,50.25876444904134,50.34118012106046,50.80108243878931,51.35041861841455,52.142516798339784,52.298286964185536,51.30914696631953,51.58405986055732,50.85241178236902,50.23269543563947,50.05856302753091,50.490476241800934,49.989370899274945,49.49228272866458,49.89506958797574,50.14447598531842,50.50761161185801,49.51685497025028,50.17051914241165,50.419552261941135,50.08995699044317,50.01280582277104,49.501168076414615,50.07663355069235,49.50486137298867,48.578908967319876,47.760542860254645,47.5986834266223,48.55079384893179,49.51998004131019,49.63770504202694,49.38805313361809,49.10177901852876,49.19953860575333,49.98275809455663,49.69451766833663,48.791718661785126,47.955122731626034,47.48235357180238,47.62294982513413,47.726480090525,46.97026836499572,47.08772400766611,46.814628226682544,46.789046911057085,45.88149470090866,46.680490844883025,47.28800740884617,48.128544287290424,49.009328465908766,49.62114198273048,48.68642779858783,49.39508957602084,48.549369969870895,47.90974511578679,48.35883594118059,48.40071985544637,49.365882294252515,48.90123406378552,49.875562108587474,49.44399483315647,49.999279842246324,49.038593092467636,49.86942021967843,50.21366634173319,50.80064647132531,50.09691547229886,49.61479248479009,48.880879612173885,48.6300112134777,48.53021569829434,48.9254431030713,48.92775323195383,48.552245386876166,48.03239663131535,48.063532571773976,48.60776207270101,48.180618554353714,48.683290586806834,48.711803501006216,48.39544434379786,48.0659234104678,48.18067895807326,47.29168419260532,47.74607192352414,47.00015071546659,47.89788510836661,47.82757975393906,48.05627492861822,47.26158599043265,46.58326489897445,46.721120356116444,47.15194818563759,46.72206467948854,46.03595960885286,45.04199818801135,44.35129167325795,44.15995022607967,44.06017847824842,43.08610919909552,44.05615730211139,43.818077894859016,42.930763099342585,43.51530374446884,44.11911836499348,43.68883788678795,44.0203199419193,43.8630425427109,44.42944809002802,44.77159401588142,44.203003057744354,44.149421241134405,44.046258439309895,43.614041856490076,42.71412682486698,42.60880354559049,42.12072626594454,41.63074276642874,42.57447099778801,42.84463862609118,43.08843612391502,42.99201451567933,42.9279312081635,42.55546988919377,41.8649302017875,41.85888711642474,42.0020134774968,42.23461424605921,42.75790118612349,42.09898944897577,41.47165329568088,41.19502198509872,42.16396552696824,42.868946098256856,42.16176769323647,41.69990445533767,41.11462465208024,40.60460900189355,40.2185689592734,40.696222013793886,40.39006640575826,39.892931680660695,39.65853221155703,40.20924718724564,40.892164326272905,41.01426904788241,41.37262884574011,40.45259780995548,40.3935059402138,40.31191942701116,40.77346393512562,41.37329429620877,42.229975222144276,41.885831819847226,41.641482977662235,42.310324935242534,42.40557948034257,41.9662257777527,41.60228393878788,41.482811238616705,40.63940521189943,41.23168956814334,41.20897826645523,41.59469871316105,40.84491375135258,40.82063619699329,40.741347583476454,40.28782987827435,39.581541396677494,39.02040629507974,39.23651168309152,39.6941101658158,40.65490680234507,40.787059769034386,41.05587327387184,41.22144657652825,41.41569167608395,41.42291932180524,41.76188427954912,42.59380869474262,42.95392144983634,42.539692071732134,43.33631780697033,43.035960325505584,43.44954611361027,44.43704746244475,44.750482245348394,44.852580837439746,45.70879184175283,45.83058332465589,45.86931884801015,45.7844259259291,46.122306667268276,45.71883366582915,45.88033442618325,46.83951590768993,46.661977564916015,46.08913639280945,46.264534728135914,47.12738193478435,46.98149071633816,45.99307087576017,45.955587790347636,45.12216120166704,45.243183276150376,44.66226357687265,45.23101120721549,45.825036292895675,46.11278702598065,45.38512995745987,44.67116641951725,44.76786992093548,44.96861895592883,44.064810356125236,45.026425764895976,44.96922600083053,44.670901025645435,45.34118325076997,45.61035327799618,46.07314746361226,46.30776395089924,46.46165953017771,47.07032794645056,47.05320542026311,46.336122994776815,46.802466991357505,47.74158538179472,48.04918847978115,48.74985586386174,47.99828520324081,47.95152343157679,48.40066513326019,49.27430785773322,48.8321616682224,48.17707047564909,48.08296774979681,48.351236009504646,49.12857887381688,48.81499592540786,48.89086443418637,48.671293762046844,49.62186266668141,49.05398432398215,49.444131115917116,49.667943075764924,49.96104743378237,49.215957957319915,49.602909666486084,50.27146070078015,50.65147696621716,51.344974600709975,50.75386036746204,49.84240389056504,50.58977993298322,51.0705974502489,51.10279776668176,51.3080122130923,50.32130646286532,50.88705419516191,51.33803455904126,51.40300884144381,51.05527045717463,50.575498189311475,50.56177872652188,50.447930517140776,51.21319028735161,51.20621039299294,51.91827279003337,51.66219971003011,52.17453819839284,52.667337061371654,52.997514330316335,52.152306652162224,51.61932032601908,51.53285808674991,51.00329953292385,50.361876177601516,49.756426027044654,50.30539680831134,50.064051368739456,49.96136801689863,49.924633343704045,49.420895407442,50.229692722670734,50.9295465410687,49.95083873625845,50.1704881307669,50.178072155453265,50.25579960877076,50.995939650107175,51.888178962282836,51.96041901409626,51.895328217186034,52.43351650564,52.75053446972743,53.54724290315062,54.145610781386495,53.219860134180635,53.23896113410592,53.676872096955776,54.206073035951704,54.70012842910364,54.240476238075644,53.38921701302752,54.372460714075714,53.82863685488701,54.00376927247271,53.03665152518079,52.13756425352767,52.250663148704916,51.550778755452484,51.28849171893671,50.84488007891923,51.4327452192083,51.556543006096035,51.99417833285406,51.864202368073165,52.22825946751982,51.38396386150271,52.09237115783617,51.26657162467018,51.56322774896398,51.51807596394792,52.137381377629936,52.539592621382326,52.82445576833561,53.53796461923048,52.87912887427956,53.860981391277164,54.2835680199787,53.650006817188114,52.961418779566884,53.057674262207,53.33947906922549,54.09430465148762,54.61981011368334,54.80704039847478,55.22122581489384,54.993548108730465,54.50981257436797,54.00593212945387,54.56055356981233,54.951534538995475,54.31813738355413,54.80087237479165,55.61050435574725,55.849933651741594,55.266762698069215,55.773270591162145,55.97344567067921,56.15294813551009,56.510700097773224,56.957362212240696,56.33632011944428,55.52681231778115,54.67652338091284,55.4911011075601,55.48630172619596,55.83534513134509,55.29073560796678,54.78267587861046,54.74672943120822,54.494075475260615,54.545405574608594,54.75096241105348,54.39598843315616,53.55140272434801,52.94684361713007,53.733755885623395,54.56276484159753,54.53325381455943,54.14448020607233,54.01472962088883,54.93432870041579,54.54432955663651,54.050823307130486,53.10384951578453,53.69672627327964,53.4537637187168,54.14606887474656,53.657312320545316,53.88396741077304,54.00597763899714,54.615739083848894,54.20968669606373,54.14664388354868,53.91909314785153,53.9064243636094,53.657108925282955,54.35043095005676,55.172950646840036,54.865460130386055,54.847394432872534,55.495976980775595,56.35475947288796,56.877878580242395,56.50454794196412,56.70251619722694,56.46797846630216,56.88901628088206,56.867431418504566,56.80871599726379,56.19947302341461,56.193251739256084,55.502553709317,54.88122077612206,53.93524308083579,54.93169799819589,55.49677282385528,56.05718000046909,56.29232416395098,56.278044127393514,55.7270736573264,55.25729138124734,55.26862253155559,55.752564947120845,56.00824230303988,56.835029965266585,57.276014763861895,56.37417394295335,55.73123061656952,56.38017452787608,55.76339971693233,55.302415961865336,56.04955538176,56.67441275296733,57.43662691069767,57.789779859595,58.60253767296672,59.33670476637781,58.61036126688123,58.10259776050225,57.82968255132437,57.75219548167661,57.83601749455556,57.59787216922268,58.33187476079911,57.54060219833627,56.84545062715188,56.76299561280757,55.961573543492705,56.17151468899101,55.57886051712558,55.81179648404941,56.41571928327903,55.59425976825878,54.66053587011993,54.267262742854655,54.766636534594,55.69477460719645,55.68430260010064,56.414843652397394,55.64398189028725,56.43727642390877,55.60416527232155,56.4553351579234,56.63956605317071,56.9116767635569,56.378051679581404,56.37143696611747,56.492272089701146,56.35982787935063,55.73362028459087,55.20707856817171,55.58750051539391,54.9876657971181,55.26793788606301,55.81589145259932,56.09192904131487,56.37852985551581,56.2154356832616,55.29363488359377,56.169947288930416,55.54607478249818,56.24302787100896,57.12881821393967,57.26726733101532,56.62532199639827,56.128760892897844,56.35286985710263,57.152924886438996,57.30430159205571,58.19744497910142,57.59974563680589,58.424062360078096,58.7185217468068,57.7627847827971,57.695715576410294,57.18929106043652,58.051933877170086,57.66149597521871,57.098257036414,56.894000835716724,56.356599426828325,56.10755495354533,56.434772653505206,56.784343872219324,56.568801728542894,57.01340880058706,57.90055854944512,58.39016352919862,57.90624524606392,58.52907068980858,58.584872535429895,58.04181582527235,58.489884971641004,58.5602373839356,57.67221708782017,57.18286032695323,57.90664790896699,56.93072061613202,56.08610012289137,55.34132060036063,56.12293153023347,55.63094336120412,56.51437193667516,57.34544900152832,56.35957451630384,55.683592677582055,55.2942239260301,54.74481255374849,53.990839863196015,54.91909579792991,54.435542456805706,54.0463502695784,54.621164137963206,54.613133231177926,53.92953795893118,53.608003875240684,53.075305186677724,52.395943462383,53.327905375976115,53.00817007385194,52.842950756661594,53.21128932433203,52.794791258405894,53.52457308862358,53.53627947671339,53.32202209252864,53.33373510045931,52.642753596417606,53.387617639731616,53.33601884217933,53.847894036676735,53.613329564686865,53.50952440313995,54.282590200193226,55.22634054813534,54.23681132681668,53.71427194401622,54.39651541505009,54.04536820296198,53.07247466314584,53.801965434104204,54.778126533608884,55.35666216164827,56.17662263242528,56.021400697063655,55.14341710554436,54.187540816608816,53.33087270706892,52.43566879304126,52.419821988325566,51.482556079514325,50.50959390308708,50.300087824929506,51.20207075541839,51.25564402202144,51.54845458921045,50.70843756664544,50.118536898400635,49.74822947010398,48.8394887894392,47.935338573064655,48.56885694572702,47.597607432398945,47.74043988157064,47.24978917464614,47.62812274508178,47.38120147585869,47.3103278465569,46.796431615483016,45.956168107222766,46.36756510473788,46.19941395195201,46.877990735694766,47.87713801348582,48.580744246952236,48.90504721459001,49.50813812017441,50.382180269341916,49.42194886831567,48.604893039446324,47.90835095895454,47.794321274384856,48.11784980352968,48.494546114932746,48.51180662307888,49.09603365696967,49.76402758387849,49.167190476786345,49.32777346484363,48.46302273636684,48.43791491864249,48.633965196087956,49.41578993201256,48.84811053145677,49.207732256967574,50.14148273319006,51.007324780803174,51.387676261831075,50.51830799691379,51.36257629143074,51.616265687160194,50.9129407950677,50.03930634446442,50.321960950270295,50.26455939980224,50.52837719488889,51.39367111073807,51.721663306001574,51.81688416656107,52.76974832220003,53.45514396484941,52.521542258094996,53.49366693664342,53.91569106373936,53.955236757639796,53.91078284615651,53.94027239456773,53.736641886644065,53.1579844802618,52.86066956119612,52.77474079048261,52.463267334736884,51.7221201104112,51.20946217374876,51.928107590414584,52.29524301132187,52.0451028002426,51.12455602735281,50.682900982908905,49.8491174262017,48.857163079082966,48.14428166626021,49.02593481680378,49.74162553297356,50.05519455531612,50.92612690804526,50.65145417721942,50.4314675219357,50.14739300031215,49.83779764873907,50.81106287566945,50.95167640224099,51.53123706812039,51.24569375580177,51.561261128634214,50.71794606698677,49.88347353879362,50.41839768132195,50.797867053188384,49.82215904025361,50.25177134340629,49.777151208836585,49.705395283177495,50.08172705024481,49.90279949456453,49.64318490307778,50.14117787545547,49.66014548903331,49.22020741831511,50.07252195524052,49.92997653502971,50.16450762050226,50.603587694931775,49.68126633530483,49.13876197580248,48.934000404085964,49.168085421435535,48.980793016031384,49.640829449519515,48.89478082675487,49.31513815233484,48.60623997496441,48.58974126679823,48.65516868233681,48.00340765248984,48.244899451266974,49.230975503567606,49.68455790029839,49.36992942728102,49.15460607362911,50.014380814507604,49.43954946892336,48.445196027401835,49.11736752372235,49.14213604759425,49.82577639305964,49.35211449256167,49.14717202959582,49.37017870275304,49.32591936876997,49.11951027670875,48.435845780652016,48.74702594894916,49.405115803703666,49.29632280301303,48.30334866512567,47.56836262950674,46.86510917916894,47.85555072641,47.401807084679604,47.20339737273753,46.730827225372195,46.349412995390594,47.108247137162834,47.512963705696166,47.06936124758795,47.85610398603603,46.862095868214965,46.79887642432004,46.829256027936935,47.08208696451038,46.86897090123966,47.17310200538486,48.03936111694202,47.35785696981475,47.71561167994514,47.01662763906643,46.86835967935622,47.40503412904218,46.5224030171521,47.02869391674176,46.425613917410374,45.444649930112064,46.14659917028621,46.26828378858045,45.347864797804505,46.19093515444547,45.49408010067418,46.37929420731962,45.67026861058548,45.63180038332939,45.3227196787484,44.80083347624168,44.038855026010424,43.543395202606916,43.93381692934781,43.95886468794197,44.33448815252632,44.63922112993896,45.53710078354925,45.3447940107435,44.80609281267971,45.46606698259711,46.371710560284555,47.21862286981195,47.57259526802227,48.16383441351354,48.32233454938978,48.94929552823305,48.673968301620334,47.92074596276507,47.17658732552081,46.31104655750096,46.70484868064523,45.968816911336035,46.42130792699754,46.93884443724528,45.94229552289471,45.10958847915754,45.62406202452257,46.140867175068706,46.68555021844804,47.61569604836404,47.048889646306634,46.28691969951615,47.16453252499923,47.63361199898645,48.44315783679485,48.80455338303,48.42889790935442,48.05685019213706,48.80766278412193,48.79586174245924,48.47554756887257,47.837951372377574,48.12418133625761,48.43709270050749,47.6694151586853,48.30290175229311,48.61070433771238,47.72589508909732,48.33130139345303,48.76495945826173,47.86471887724474,47.65509008988738,47.698619620874524,47.710152172483504,48.31013536406681,47.36528788134456,48.359806534834206,48.38138967100531,47.92694650916383,47.16612189868465,46.98791792802513,45.99198749521747,45.869383811950684,46.45143195427954,47.057557872496545,46.946415135171264,46.998545738402754,47.711213662754744,48.383145976345986,47.68709684209898,47.550940643996,47.86466624075547,47.856042014434934,47.39829320786521,47.82559730857611,47.47628494724631,46.64145282190293,46.319416569545865,46.245618593879044,46.40189992589876,46.83101000916213,46.84710354031995,46.87099203048274,46.91123996255919,46.26832075882703,46.36654819082469,47.039871991146356,46.983433899935335,47.612437134608626,47.76240690611303,47.36365588847548,46.822849513962865,47.42875539744273,46.53588068066165,45.7117982134223,45.663247261196375,46.42334572132677,47.261876948177814,48.13303474476561,47.702511875424534,47.03262587124482,46.58483969094232,46.09420766029507,46.994778434280306,46.059996012132615,46.65777733270079,45.69175692135468,44.72233336791396,44.232113202568144,44.96656702598557,45.238636704627424,44.800030124373734,45.31666087638587,46.18353250622749,46.391434295568615,46.06309430068359,45.98504726681858,45.780633315909654,46.15935580153018,46.477543683722615,45.750101779121906,46.2247818140313,45.557131194509566,44.56361301802099,44.047059586271644,43.97399999527261,43.98324425239116,44.91881499439478,45.55474802153185,46.43265345180407,46.82084910850972,47.15609506517649,46.233143073972315,46.85969831980765,47.048781394492835,46.98910126648843,46.23868556926027,45.85470001865178,46.54146998049691,46.51439198665321,47.276622695382684,46.91980350855738,47.82310843421146,47.00985663430765,46.94963287841529,47.76701661758125,46.92307115579024,47.495280471630394,47.61691255494952,48.388164369389415,49.06941667199135,48.41583093767986,48.89827436814085,48.39606436667964,47.86995303072035,47.9112512357533,48.58652968052775,48.53232656233013,49.013012586627156,49.79484184412286,48.98047425085679,48.855050994083285,49.06134774861857,48.78996969293803,48.698485092725605,48.08556693047285,48.925996457226574,49.906111544929445,50.47279649460688,51.04358246922493,51.92329120496288,51.07566592283547,50.15858804807067,49.45652420818806,48.77370971860364,49.24154023686424,48.80867773806676,49.26515754731372,48.770480043720454,49.14396860310808,49.00373093271628,49.932306425180286,50.6974935317412,50.70901413215324,51.58599569136277,51.97155272401869,51.39339463226497,52.392612575087696,51.44083432946354,51.21444176789373,51.48845102870837,51.48745710263029,51.00278499722481,51.978536165785044,50.98808549903333,51.69941258104518,50.84291061758995,51.59051044099033,52.4646677384153,52.42032830463722,51.99877211311832,52.55053745536134,52.75458677532151,53.026519963983446,53.333423209842294,53.75532073574141,54.626937833148986,54.500948124565184,55.44751621596515,55.89902956131846,55.54976658150554,56.284366734325886,55.652383737266064,55.99577439436689,55.47621737932786,54.60310470499098,54.00649905670434,53.75932976976037,54.12657349091023,54.67650018027052,54.97295173024759,55.33358956873417,56.26840484747663,56.64625504612923,56.82239817781374,57.55624347506091,57.85025523696095,57.11420346330851,56.487235819455236,56.84368111891672,57.62014994863421,58.138965455815196,58.019276812672615,57.40305106481537,56.5389691144228,57.29929222073406,56.48734644474462,57.189000269863755,57.914939049165696,57.00448416220024,57.5170688489452,56.76876163482666,57.02951388945803,57.280451904051006,56.30942733073607,56.44661650946364,56.71287962421775,56.07625071564689,55.466058287769556,56.02556535974145,56.29356834338978,56.09583376441151,55.385284138377756,55.79111057240516,56.77780676726252,56.76794006722048,55.941039465367794,56.02820364991203,56.42916853912175,57.0493017132394,56.287074488122016,57.13717015273869,57.57102725375444,56.79524347698316,56.79450400266796,56.48366578575224,57.07554113166407,56.36809426732361,56.345793065615,56.32752072950825,55.57562641846016,55.75474917702377,55.9134436827153,55.65236196340993,56.49016893515363,55.56755922641605,54.59900452615693,53.88914888910949,54.34418483497575,54.37674087192863,54.32452309504151,53.44355294061825,54.23535783588886,54.827730817720294,55.57982912939042,55.660972679033875,54.82305183634162,55.24819307401776,55.10982395801693,54.73460172349587,55.02664946950972,54.63308580033481,55.529387277550995,55.16749457921833,54.61943383840844,54.90859328303486,54.707346096634865,55.06944817863405,55.97980796638876,55.278730909340084,55.45429747086018,56.35699430666864,57.255520361009985,58.19863484194502,59.08572317101061,59.98922203108668,60.304171808063984,59.75598206743598,60.181242163758725,61.17541897529736,61.46239867946133,60.84330757614225,59.925625023432076,59.742076789960265,60.22836179565638,59.636452131439,59.81460857205093,60.46680175047368,60.49498758139089,60.643896218854934,59.80422547040507,59.1330537116155,59.86067624017596,60.21431160252541,60.59193392843008,60.35067398613319,59.92373647959903,60.08817675197497,61.0297708469443,61.56720169726759,61.056658275425434,60.72552923299372,61.68106158170849,60.94091940158978,61.85768483718857,61.71644223527983,60.918752883095294,60.45404309500009,59.466488651931286,59.69265187252313,60.4259651764296,60.42789846519008,59.617623592726886,59.430050377268344,59.79933085665107,58.89143956173211,58.26435866439715,58.202550143003464,59.00933100748807,58.89392335480079,57.96404295740649,57.48473311215639,57.53111075842753,57.96999227395281,58.75863953307271,58.73741170577705,57.9294589930214,57.58653097739443,58.44137573475018,58.88347225030884,59.14427697006613,59.56940379785374,59.43162810103968,60.20701442286372,60.34452574560419,60.05135816661641,59.792693267110735,59.477324412204325,58.91282981261611,58.72230642521754,58.23753023240715,57.964442131109536,58.26181969419122,57.441066957078874,57.974767905659974,57.95084982085973,57.7987038041465,57.73835926083848,57.954245588276535,58.50738014373928,58.316532717552036,58.3530489183031,57.71277806069702,58.29166666883975,57.78865750879049,57.21890696790069,57.612782766576856,58.37564426008612,58.13109887065366,58.102664039470255,58.55836904654279,57.99151497427374,57.81435147393495,57.16657803533599,58.06146322237328,58.02656123833731,58.85050970967859,59.40434869332239,59.99217164516449,60.51209025224671,60.934200996067375,60.08593754284084,60.09987952141091,60.71526568941772,59.84651298774406,60.66313786664978,61.582115792203695,61.79824360087514,61.87896939832717,61.05261332821101,61.22526166215539,61.161181984469295,61.41156850988045,61.47794471262023,61.55272154090926,62.355710859410465,63.29643465904519,62.82416573539376,63.194433368742466,64.00471104634926,63.99635933432728,64.04134936491027,64.24424094054848,65.0077133574523,64.29102755757049,63.50596868712455,63.40040996670723,62.79539408860728,62.5850163330324,62.74074938893318,63.67214955808595,64.30307838041335,64.27778031490743,64.55350375035778,65.07413409696892,65.60749495169148,65.39781174529344,65.91879681684077,65.96662389626727,64.97305723559111,64.56816733535379,64.1318455110304,64.99636859912425,65.24174014432356,64.47055753972381,63.81309205619618,63.45704426756129,64.38323063682765,63.64542070077732,63.71051806677133,63.39393174368888,63.576452603563666,64.37668151920661,64.18330283882096,65.14168583787978,64.66590949892998,65.01728629972786,65.26185896852985,64.95915116276592,64.05435870867223,63.67307561263442,63.79223920730874,64.02277151541784,64.71899472828954,65.52709936024621,66.31056972127408,67.2289233119227,66.55448485398665,67.51608608057722,67.64576148288324,68.53112958883867,67.76260334858671,67.59138448024169,67.45981574896723,67.40752457082272,67.2886623586528,67.73220087774098,68.44191056583077,68.94805483613163,69.02173946145922,68.569878811948,68.25440731784329,67.90357093885541,68.13871681783348,67.67047494603321,67.54065939877182,68.0556087307632,68.87986689573154,68.12779876030982,68.8779763430357,69.4188624965027,69.30929951788858,70.20871577365324,69.7028452414088,68.83670003525913,69.16023851884529,69.66977236326784,70.03762795310467,69.58612399501726,69.47909821616486,69.56285147042945,70.13013223046437,70.96965083573014,70.69856875762343,70.09682525414973,70.17565704556182,70.05932583939284,69.23024629149586,69.9101320290938,70.02930287551135,69.06509258551523,69.96687901206315,70.85090850666165,71.25345804449171,71.08990943664685,71.22678604442626,70.70985313178971,70.8771273875609,70.72041036281735,71.63757934560999,70.98405385157093,71.93191798264161,72.79415531549603,73.54292155010626,74.11204600194469,74.1499341498129,74.46443449892104,73.87896798131987,74.78133786423132,74.08179186889902,74.14828316681087,73.36209649639204,73.35130461864173,72.92781463637948,73.26994257373735,74.11413055798039,73.94711205130443,74.34872325556353,75.17755584325641,74.69869916373864,75.01399168884382,74.82405771873891,75.21854858705774,75.84454028913751,75.99901429656893,76.68217817181721,76.3090355549939,75.91794464364648,74.97709511080757,74.08471375564113,74.77346909185871,75.6742871562019,75.73530887113884,75.57414435828105,75.90820060437545,75.66401766985655,76.00006886897609,76.62552170734853,76.48625111114234,76.97789476206526,77.15633099107072,77.31120573729277,77.43936162814498,78.3496537511237,78.00630266591907,78.69915511552244,78.11210188409314,78.54376868298277,78.24002439947799,78.25187472486869,79.1351136281155,78.92815585946664,78.58816098188981,77.74247778672725,77.52779267821461,78.4704946456477,79.00739464908838,78.24765947740525,79.10654594097286,78.42557679768652,78.89922218071297,79.74620433617383,79.02848210372031,79.87525266362354,80.62437875661999,79.87920707697049,79.21720817079768,80.09884956898168,79.71157236490399,79.01302959257737,79.21797503810376,79.9971894142218,79.18855462875217,79.83445311384276,80.41666098963469,80.6130344751291,81.29917509993538,80.94457867089659,81.78194400249049,82.66970169125125,82.77691904176027,83.7039211075753,82.84222074970603,83.44555885065347,83.03454913618043,82.41271203989163,83.09084957325831,82.70375472446904,83.5100986212492,84.32015996333212,84.72330457204953,85.20435553323478,85.6685761376284,85.87906530918553,86.75625049555674,86.9736050600186,86.65700642485172,87.41742439800873,87.8891366967,88.59543192014098,89.45264743408188,90.10704886214808,89.27385808993131,88.74227630719543,88.20561019377783,88.18434953782707,87.24717876594514,86.81112337531522,85.89583554072306,86.60409306455404,86.07501256838441,85.46434119716287,85.17903634998947,85.34369851509109,85.28732212120667,84.73071596119553,84.89019869314507,83.93444639071822,84.27641850849614,84.65594511525705,84.97916588326916,85.78180163865909,86.61303982976824,86.56692521693185,86.99289589561522,86.94892824534327,86.40895487135276,87.33500972110778,87.30265864357352,87.06132990308106,86.24339516088367,86.86907024309039,86.95108938403428,87.34059383673593,87.47582470672205,87.39575024694204,87.85976189235225,86.97949948348105,86.11660207854584,85.65015530632809,86.32889829808846,86.5348652000539,85.99984516808763,86.07815076736733,85.78365703718737,86.72373367100954,85.82461554789916,85.02518578572199,84.14407491125166,84.9612979432568,84.18022179510444,84.81196709675714,84.61657514143735,84.61622628942132,84.109479309991,84.88286497630179,84.60947280097753,85.30924656428397,86.27767188381404,85.49065514327958,84.65547496592626,83.99813402770087,84.94299915246665,85.93896839907393,85.72196939913556,84.74519342230633,83.78043545084074,83.87956658890471,84.85605344735086,85.05023816041648,84.17097157845274,83.69357819249853,84.20101365586743,83.2195531791076,82.75081465486437,82.45230497093871,83.28827800927684,83.67913726670668,83.84452787786722,82.91134201921523,82.72234412143007,82.34310958907008,83.22038999106735,83.2317306464538,83.48210848215967,83.52952671051025,84.00822317879647,83.14531650999561,83.2231022156775,82.44392481958494,83.31187170092016,82.41935286298394,83.10604970762506,82.67940979497507,82.80147790722549,82.70560867805034,82.88626922527328,82.87985978834331,83.75462083145976,82.80234189797193,83.68662151880562,83.7394532081671,82.7692980626598,83.67277935147285,83.04573614476249,82.98329400969669,82.12512388406321,82.6503755170852,82.78227143082768,81.87266399525106,81.00533301290125,80.47361756116152,79.52082549082115,79.62014751508832,79.23068204708397,79.53418606240302,79.54340564412996,79.09027620125562,79.23232283443213,79.44305695965886,79.2105341698043,78.8768124813214,79.35737414238974,79.26177202444524,79.08319080527872,79.57686889125034,79.73127353005111,80.67544504441321,79.89638464711607,79.66688094846904,79.32320079440251,78.64960564207286,78.25585064059123,79.01702371565625,79.57321106549352,80.22674608230591,79.87023280141875,79.77645488642156,79.05714617157355,79.00240223761648,79.41364397434518,80.10109948506579,79.41061103437096,78.46801326144487,78.75743942800909,78.48776803351939,79.37670490099117,79.60123910568655,78.74297275347635,78.63400122243911,77.9257258605212,77.5386761687696,77.758544084616,76.83749322034419,77.82700780965388,77.20130931818858,76.8266838719137,77.55460159527138,78.4510945379734,79.31308593042195,78.76414097938687,77.84571712138131,77.6600526375696,77.58521358668804,77.43271623319015,78.26375512871891,77.9648400307633,77.4293210580945,76.71273646689951,77.40175683051348,77.32110811118037,77.0445349230431,77.45972935436293,76.52170064719394,76.96553867170587,76.01297995634377,76.58562194276601,76.95154440496117,76.17399737844244,76.30576782114804,75.99055037135258,76.24920172104612,75.97673213295639,75.1686206641607,74.17691066721454,73.96063869679347,73.71687257476151,72.74372201738879,73.66587830288336,73.15502668032423,73.66338372370228,73.67957746889442,74.42639241600409,74.42189228488132,74.19920244533569,75.18483374174684,75.15883244015276,74.59997936664149,75.06975060375407,74.86261048866436,75.79650981677696,75.5400675535202,75.92453780025244,75.34244688088074,74.4916704017669,74.81160852499306,74.20767738297582,74.7770142168738,75.77692102268338,75.05070331087336,74.91935787396505,75.14885237114504,75.06441965792328,74.57874810090289,75.36946475645527,76.0262484648265,75.07488108566031,74.4821069384925,75.37653353391215,74.38071066094562,74.98950457945466,74.59315601596609,74.43395447265357,74.13023516628891,74.49365299893543,73.70153879700229,74.06720895972103,73.79202660173178,73.03517586831003,72.20261810114607,72.15873001515865,72.12827347451821,71.4755778638646,71.27892457600683,71.00463333074003,71.5936142723076,72.15928023774177,71.95413518557325,72.93384213000536,72.80370743898675,72.68637479282916,71.95183225162327,71.40236493153498,71.76811707904562,71.116845483426,71.37666402896866,70.80337182432413,70.18509395746514,69.5844040941447,70.52033561561257,70.4545474825427,69.49101077346131,69.18797506019473,68.96441815933213,69.16029172949493,68.50063865026459,68.25845802389085,69.14564780099317,68.1479079364799,68.12584585603327,68.23279156442732,68.43833013670519,69.27625958900899,68.82631870359182,68.93974966555834,68.88177388068289,69.17270167684183,69.52995217498392,69.9744402198121,70.08023754321039,69.66864266106859,69.04845685046166,69.97748447908089,70.20968336844817,69.95883678738028,69.59618655592203,69.30540614854544,68.56465947534889,68.84680518135428,68.58580425847322,68.70072769373655,69.49179962929338,68.50227106781676,67.77616483531892,67.6692844866775,66.86485333088785,66.9545563235879,66.22531822649762,66.08122524106875,66.04841349413618,66.34602704504505,65.5903122597374,64.99056943319738,65.93475323077291,66.14738620445132,65.87821470247582,65.54521240759641,65.07419295562431,66.01478123199195,65.10915019409731,65.14744388591498,64.61893868492916,64.75306568667293,64.02196395583451,63.36942555941641,62.94432782335207,62.75427623325959,63.57700439961627,63.50327834254131,64.15262152161449,63.96386487595737,64.70087203197181,64.28397365519777,64.57518378691748,64.11420405190438,64.52899977378547,64.1032427852042,64.13056507380679,63.860023479908705,63.58815074246377,64.37655235873535,63.57448314409703,63.33682835660875,63.02133470028639,62.325009220745414,61.86276245722547,61.7982648643665,61.36145261162892,61.607902988791466,62.454823965672404,61.86911385413259,60.921131656039506,61.671820221468806,62.62232772214338,62.129285571631044,61.555162290111184,62.11865626415238,61.84944499330595,61.16357461921871,60.580024550203234,60.39547380711883,60.98230800032616,61.38408014411107,60.69919990748167,61.08485041745007,60.87096043070778,60.69682629080489,60.46459907479584,60.297871033195406,59.9972716299817,60.3612007740885,60.94451531395316,60.806780686136335,61.798945147078484,61.20242837397382,62.03496256656945,61.356772772967815,62.246572497300804,61.84839778440073,61.60160401370376,61.01435136795044,61.59094790322706,61.33262993628159,61.24525385396555,61.35489523271099,61.130815238691866,61.80019553983584,61.36978740245104,62.32093640556559,61.996579160448164,61.955731028690934,61.85385954938829,61.34952413616702,61.38477074634284,61.860904957633466,62.37330872705206,62.4065762674436,61.40876135462895,61.72246189089492,62.18749310495332,62.71267126034945,62.06392989074811,61.729958625975996,61.59412484196946,60.75049214903265,60.16195184690878,59.53444017563015,60.3641261132434,60.82407589070499,61.14494306175038,61.36980442330241,60.379682273138314,60.70820791320875,60.295662879012525,59.840303257573396,60.116549553349614,60.966575901489705,61.12894184375182,61.13280031643808,62.10653389710933,61.92193268612027,61.14265379589051,60.79853167477995,61.149468356743455,60.5579471020028,61.268301234114915,61.97728028707206,62.543169357813895,62.86038845125586,63.01729085762054,62.18542554136366,61.21101150056347,60.89212985197082,61.447061211336404,60.99279374675825,61.1958502153866,61.84127332037315,61.30577197531238,60.724585372023284,59.90989270340651,59.685303163249046,60.18920621229336,60.70787574676797,61.59645348601043,61.80002087727189,61.86604115134105,61.658429990988225,60.68624659627676,60.77409546962008,61.11991092376411,60.95210765535012,61.08136056922376,60.48875324893743,60.55564783094451,60.51890645176172,60.68361828289926,60.75562403909862,60.304552647750825,59.83142684074119,59.284461413975805,58.44825329538435,58.132776621729136,57.288898047525436,56.802431114483625,56.891267062630504,56.767727747093886,57.5093645346351,57.70186624862254,56.88218611711636,57.422312908340245,57.31949110282585,57.841296405531466,57.76641656970605,57.778857573866844,58.0288009615615,58.44531624065712,58.68424729863182,58.06953958468512,57.11440164176747,58.10172520019114,57.96527641871944,58.07832821691409,58.7121819476597,58.77526628598571,59.211546449922025,58.65586260613054,58.196878826245666,58.86072997795418,59.141546932049096,59.99806201597676,59.32007850939408,58.938435923773795,58.36443451279774,58.56772024789825,58.43789259484038,59.35699392994866,60.06728991586715,60.09696878027171,59.55303102917969,60.32683837739751,61.09825492138043,61.68066316051409,62.358294510282576,62.57873939303681,63.085516951512545,62.66653819195926,62.52283601043746,62.09617821453139,62.689169065561146,62.1513183596544,61.54908183449879,61.197595201898366,61.682299501262605,60.83787375455722,59.88725043321028,59.185517558827996,59.44561808835715,59.43741335906088,60.21201673382893,60.30853620311245,60.6770689887926,59.99411089718342,60.909334821626544,60.318273132666945,60.130373447202146,59.29465031158179,58.76462562708184,57.780069614294916,58.148428502026945,57.151712466496974,57.21160403965041,56.4196824231185,56.973655339330435,56.268147117923945,56.57601720886305,57.51670903805643,57.254686882253736,57.227342552971095,57.292788070160896,57.25217351317406,58.16597827011719,58.70340978959575,58.23201262578368,57.2531613255851,56.38435717811808,55.57071239827201,56.56294348509982,56.69847533479333,56.008818035945296,55.626691919751465,55.710236076731235,56.449278303887695,56.576308018993586,56.043023542966694,55.32425581617281,55.554677390959114,55.34798096725717,55.547784140799195,55.014363860245794,54.63374726194888,55.16767229977995,54.71825393801555,54.03378722816706,53.90039766021073,54.891298877075315,54.74831277830526,54.21678217081353,53.55751404957846,53.33917644852772,52.804042231757194,52.47534026065841,51.987627741880715,52.353111712727696,52.42998635163531,52.50959438690916,53.11755688721314,52.764701736625284,51.89048638101667,52.43579363822937,52.88242739252746,53.827641476877034,52.90911199664697,53.81916494946927,53.77646623784676,53.908220582176,53.43161837942898,53.98169073089957,54.01496883435175,54.55406622774899,54.0230563362129,53.48705877037719,52.58996123028919,52.60766826802865,53.49198409123346,53.03063870687038,52.331251345109195,51.49739354243502,51.99138682242483,52.243514352012426,52.989397296682,52.26253585377708,51.87244643922895,52.82447813358158,52.11100848997012,51.226863224525005,52.11255978839472,53.08380082342774,53.04484123829752,53.16985365282744,52.519086576998234,52.597203286364675,53.209664640016854,53.644899155478925,54.33072439208627,54.64987716590986,55.38851799070835,55.345043236389756,55.217151866760105,54.520007986575365,54.2561384094879,54.75978476414457,54.52685249224305,53.57365249609575,54.49478634214029,53.80643467232585,53.98578004492447,54.551509322132915,54.35960797825828,55.19836983643472,55.033668119460344,55.83044727705419,55.962214928120375,56.500934495124966,55.75068159820512,56.34472979558632,57.28984908526763,56.574117202777416,55.58625820511952,55.49414903204888,55.35425495961681,55.050791832618415,55.351059092674404,56.330026128795,57.27171593764797,57.39677096903324,56.812893143855035,56.6382110118866,56.0469455011189,56.63339857570827,56.38435055548325,56.31102639110759,56.42625901987776,55.758780563250184,56.20365120144561,56.762210085988045,57.454506915062666,57.786800699308515,57.10844041546807,56.5112952911295,56.32352551212534,56.71834173286334,56.585592209361494,56.8004997279495,57.306909263599664,56.59955830452964,56.7896399833262,55.84364539803937,56.344770587515086,56.66452739434317,57.556915478780866,57.20686124637723,57.447971251327544,57.078623053617775,56.35705878632143,56.12478871969506,55.60040744859725,54.98165631107986,55.51017197454348,54.844466449227184,53.92695587128401,54.01327454345301,53.92387097654864,53.47536018118262,53.876937847118825,53.241850402671844,54.23119728220627,54.995401753578335,54.097359233535826,53.96567721758038,53.52277225069702,53.64683028869331,53.033922316040844,53.421990456525236,54.31382686924189,54.700948778539896,54.67274068156257,55.186866633594036,54.717811757698655,53.74916147394106,53.38968222076073,53.313221918884665,53.640924997162074,53.64571388158947,53.01993461837992,52.446699634194374,51.68704331526533,51.304347870871425,50.5529867769219,51.52307407883927,52.28736689919606,52.5808147075586,52.941932678222656,53.543026448227465,53.6285456744954,53.679480272345245,53.64581606257707,54.30592334130779,54.95663342438638,54.35774683300406,54.34731909679249,54.7988334284164,55.02665793662891,55.90647160168737,56.76878723502159,57.613395598717034,58.15097327483818,58.20938794920221,57.64603795716539,56.874168646521866,57.205050482880324,57.22487727738917,57.025889991316944,56.799325798172504,56.962888890411705,57.47798233339563,56.552769026719034,56.81777183525264,56.56439726380631,56.74589075520635,56.737189275212586,56.300350761041045,55.366801428142935,56.04123268323019,56.618280328344554,55.794217051472515,56.287211020011455,56.97303651738912,56.43979472806677,56.35995507473126,55.50278712576255,54.75839066039771,55.67196145374328,55.23438618006185,55.641015647910535,54.667035098187625,54.08799738343805,55.039711949881166,55.43398087611422,55.571227758191526,55.446569465100765,56.09113055560738,55.2494043931365,55.38571024639532,55.825852390378714,54.934858860913664,54.22651566658169,53.71471603959799,54.195138566195965,54.556937251705676,53.77721547475085,52.97590284841135,52.91193260392174,52.590430735144764,51.88488058792427,52.61151373432949,53.34552015038207,53.818649826105684,53.35153990332037,53.77123895660043,54.494775988161564,54.446217220276594,54.632880511693656,54.49778736522421,55.439453868195415,55.87920177401975,55.91235630447045,56.51847049081698,56.57510944735259,56.536369763314724,55.81195844570175,55.71200278075412,56.643235807772726,56.76276765298098,56.907502845395356,56.95651617506519,55.98557714000344,55.0014876765199,55.55950670782477,55.4990176926367,54.58468271838501,55.42081412533298,55.15306759113446,54.46622996497899,54.45804584911093,55.131306698545814,54.25794892152771,55.118093443568796,55.682234512176365,55.70588271133602,55.12603485863656,55.55506868241355,54.806526185013354,55.37893248675391,55.804026735480875,56.34323804406449,56.10585868824273,56.21182547463104,55.321474752388895,54.728891347534955,54.422887922264636,54.745698953047395,55.72278659697622,56.088766711298376,55.19297521188855,55.70586317265406,56.52139945747331,56.91376878367737,56.10208802996203,55.16456709243357,54.363753023091704,53.64137472771108,52.86457888316363,53.47012214642018,52.96479853801429,52.683298465330154,51.80467867385596,52.01809590216726,52.12639216519892,51.34921661624685,52.32563237240538,53.12199201621115,54.111027899663895,54.39220546698198,54.190378323663026,54.44803605787456,54.402308721560985,54.73445929819718,55.20852687070146,54.73147811042145,55.311680148821324,55.16515824012458,55.12009103689343,55.95918589551002,56.11020450666547,56.47751890961081,56.09961335826665,57.07864269474521,57.52153215557337,58.30876425327733,57.40943966712803,57.896775083616376,57.749538810458034,57.69520865846425,57.24988946458325,57.60924595454708,58.51079789316282,57.62294601742178,57.75007819291204,58.61806100560352,59.12057052785531,58.63875073939562,58.611410782672465,57.628669740166515,58.30234029516578,57.52613198105246,58.00577272893861,57.26407522615045,58.20429316768423,59.03219435364008,58.16885802289471,57.85782387154177,57.412695242557675,58.21618540165946,58.85000945813954,58.71823380095884,58.792186540551484,57.81312042614445,57.814255957026035,57.065933170262724,56.149080724455416,56.436069688759744,56.52536031836644,56.65301255881786,55.9960948782973,56.251733247190714,56.49957304215059,56.50818224111572,56.264499890618026,55.31716445507482,55.77590493997559,55.065248486585915,54.24560805270448,54.22677812585607,54.726858854759485,55.43858070252463,55.417303699534386,55.84824967943132,55.22691333293915,56.00397477764636,56.63903659582138,56.99564421130344,56.2034066170454,57.201605706475675,58.08448725240305,57.59421633603051,58.39983387151733,58.614742174278945,59.607414653524756,59.543369041290134,59.5986562538892,59.000549286138266,59.021968884859234,58.04518273007125,58.34086904907599,58.45154337724671,57.64984370814636,57.6360282744281,57.81970362504944,58.45233466522768,57.98733343742788,58.662771636620164,59.151553994975984,59.93246984761208,60.14235927257687,60.966297754086554,61.55070789484307,61.63963957969099,61.46877095056698,61.75079697789624,61.269282292574644,60.61108430335298,60.801448428072035,59.946236562915146,59.598957866895944,60.5886451555416,60.81268503796309,61.62279232731089,60.77284977864474,60.9779664282687,60.505053678993136,61.01860946137458,61.79786902619526,61.37171583343297,61.95196412270889,62.642775806598365,62.36055229557678,63.17363980785012,62.84000455122441,62.344904800876975,62.48319244850427,63.29303764598444,62.86391141731292,63.797463436145335,63.282916301861405,64.20196587592363,63.896946638822556,63.66558228991926,64.12874406017363,63.94065956445411,64.05605376511812,64.3857266753912,63.74534764373675,64.47045087628067,63.71792622283101,63.51287945313379,62.63456450775266,62.85666511300951,62.57752816611901,62.14567283494398,62.16158837405965,61.25438326597214,61.90748439449817,61.82535460824147,62.24743680190295,62.69269896997139,62.245198868680745,62.096624542959034,61.90514816856012,62.735111481975764,61.742383940611035,60.809270152356476,59.90490126796067,60.478195449803025,59.553060543723404,59.456038544885814,58.732402914669365,58.03955661691725,57.62806400610134,58.24208515370265,58.527647310402244,59.427242047619075,59.389093584846705,59.895592640154064,60.84961251029745,59.85028666164726,59.081997140776366,59.65802899328992,59.490361026953906,59.38395589403808,58.65172044048086,58.5917255259119,58.28293030243367,58.21008125366643,57.59112989762798,57.032744717318565,57.73435201123357,58.225778963882476,58.12153867445886,57.26520784618333,57.806943506002426,58.65949309570715,58.32442222908139,58.23579831561074,58.80254916427657,58.93179499497637,58.303669158834964,57.72466442268342,58.52473080670461,58.87512854626402,58.75834610546008,58.02438133955002,58.83262089313939,58.712325708474964,58.494031665381044,58.14369388576597,57.82671524444595,57.14644911373034,57.80172995524481,57.43121290067211,58.117235565558076,58.98869675491005,58.9185271714814,58.45767280878499,58.84861424053088,58.15703073097393,59.08830018294975,58.72377120889723,57.86112016486004,57.22063559293747,57.32259899377823,57.28107164055109,58.26194645697251,58.45282187173143,58.05776621494442,58.960862279403955,59.85829610936344,60.41134860413149,60.69766934402287,60.98186840582639,60.774328091647476,61.045307968743145,60.086176533252,60.540098598692566,60.35816490231082,61.25022090645507,61.770763942971826,62.36826758366078,62.96359257074073,62.666712277103215,62.219284389633685,62.43000708706677,62.935349870007485,62.36503051081672,63.01981384633109,63.009671742562205,63.901954672299325,63.635405065491796,63.45304535003379,63.236721040681005,62.667915892321616,62.7432492733933,63.33220070973039,64.13131649373099,64.0186094334349,63.53448338713497,63.953206239268184,63.37263853941113,62.387380143627524,63.30834300722927,64.19616360543296,63.49604160944,63.47311077360064,64.03543285606429,64.23000571411103,63.57882732804865,64.02743485337123,64.58730033691972,63.761826490517706,63.43789217574522,63.67084625642747,64.63104478828609,63.63121581962332,64.29461975721642,64.93318800115958,64.35273079248145,64.36307203443721,64.44207548862323,64.59202358173206,64.17833589483052,64.03631974477321,64.56306555774063,64.9266503052786,64.5802222089842,64.98536645947024,64.43745217332616,64.95595073141158,64.42384418332949,64.15357259241864,64.82968771876767,64.41195721179247,65.15358174964786,64.48326304554939,64.90628488967195,64.9498179377988,65.25546157034114,64.96811157930642,64.3344514942728,65.12005465012044,64.57721623079851,64.17770135961473,65.15320436982438,65.76209472911432,66.68069384526461,66.60308229085058,66.17342470306903,66.83656283235177,66.42148464731872,67.39664124511182,68.008651713375,68.98858858179301,69.25464983750135,69.32303090998903,68.43017401080579,68.10284862853587,68.26483650645241,68.14907430671155,67.29917240748182,66.98964251531288,67.42756650177762,68.14687866810709,68.92070238199085,68.66312745865434,68.05370009457693,68.87027887394652,69.2122727362439,68.99638602510095,68.37512161768973,69.3150223181583,69.52084390306845,69.99410484032705,70.95096164150164,71.4478711457923,71.88025567680597,71.9537154212594,71.35945251816884,70.94225621270016,70.71425909502432,69.9428863930516,70.53918537637219,70.2378897126764,70.67394971800968,69.7902917494066,69.80474694818258,69.29708268959075,69.05982697941363,68.41974356072024,68.15467710606754,68.84909451706335,68.1790250367485,68.65308984089643,69.01155699463561,68.024992544204,67.41993993800133,68.189562686719,69.03716381452978,69.98710124427453,69.75383046315983,69.80698439385742,69.39320567762479,68.79605591855943,69.1401191893965,69.50728984270245,69.65368978027254,68.7675755219534,68.19417758379132,67.71280266856775,66.71547833317891,67.43638655589893,66.44862693920732,66.87520166207105,66.53934014309198,66.4894874454476,65.7957443697378,65.48322264757007,64.74863579729572,64.975765010342,64.71732499683276,63.82428888324648,63.12174389185384,62.65787970228121,62.0328967589885,61.2066160463728,60.78845840645954,60.74987306352705,61.43766377074644,60.577776663936675,60.033483653794974,60.237298496067524,61.059677915181965,61.89788964577019,62.11948381084949,61.684722719714046,61.2212446667254,61.58710594009608,60.98422316275537,60.73547707591206,60.56432545185089,61.086063797585666,60.72460168413818,60.17161579569802,61.14679147442803,60.660343090537935,61.10994819039479,61.17468168865889,61.26313669979572,61.673368006944656,61.50081798573956,62.14018624462187,61.607568935491145,60.912488649599254,61.807909504976124,62.66061803558841,63.381224010605365,62.73042386677116,62.97081637987867,62.321198211051524,61.60609946632758,62.04442201834172,61.48021971480921,62.30908910930157,63.14047720702365,62.333623002283275,61.416105593089014,61.393821091391146,60.54742579953745,61.144641019869596,60.45773123996332,61.294740110170096,60.60514213843271,60.12042315164581,60.381569801364094,61.112231554463506,60.617092872504145,59.97633016202599,59.73693097336218,60.56225130148232,61.12248795200139,61.425254507455975,62.24655515002087,61.33238206477836,60.75538362655789,61.180213442537934,61.95790288876742,62.58699777210131,63.16158138168976,62.80984697584063,62.7185928132385,62.94346737675369,62.34322715783492,63.19051440805197,63.46344832889736,64.30005760677159,63.40542181581259,63.50842349091545,63.42150892317295,62.75016271742061,61.797163440380245,61.253405245020986,60.38557891268283,61.24085043044761,60.47489765752107,61.23231816384941,61.558870785404,61.11707819579169,60.51418435014784,61.335710131563246,61.52385516697541,61.162531666923314,60.48172522196546,60.88910573069006,60.404397887177765,59.974674495868385,60.3203591555357,61.22022749762982,60.44254211569205,60.64857277693227,61.25154264969751,61.28344244789332,60.488710823934525,60.871535586193204,61.39420232595876,60.76277349051088,61.07033655978739,60.716915264725685,60.73149342974648,60.32674117013812,60.159929130226374,61.00318062864244,61.14209043979645,61.82327470369637,61.18999270023778,61.38196101365611,61.51412920560688,61.18878610711545,61.65492294402793,61.13793784985319,61.85786376800388,61.92733283760026,61.32574803568423,62.22917984286323,63.213154098019004,62.67535932501778,62.98561610840261,63.843175075016916,63.080297402106225,62.68066643876955,63.36147939041257,62.817852220498025,63.31054230220616,63.58373576728627,64.43084830138832,65.37177200242877,66.2679851022549,66.14197520632297,65.533489047084,66.20047725504264,67.190310546197,66.56953572342172,66.03093096381053,66.30213536974043,67.13933681510389,67.22555841226131,68.12502775294706,68.80907670687884,68.31366985617206,69.09725607419387,69.81071760039777,69.78747967630625,68.96632654825225,68.18698316719383,68.96332247601822,68.01218616683036,68.22161120735109,67.7414085790515,67.93809010088444,68.87431170837954,69.01680996222422,68.84791015041992,68.03222113288939,68.06548434309661,68.29111505439505,68.2096904721111,68.34252344723791,67.35655317688361,68.17145729390904,68.55910550896078,68.87720467336476,68.4578230897896,68.59542515128851,69.2189794019796,69.4267254350707,69.2155243223533,69.64305729558691,69.99796114815399,70.61389006860554,70.18017667299137,69.42787423823029,70.08933078777045,70.33730400819331,69.61917280219495,68.6729212324135,68.92606238368899,67.93130483618006,68.24375470401719,68.99131197528914,68.15911036077887,68.96264609927312,68.34093240788206,67.99658397212625,68.88875676784664,69.64750102255493,68.68067143158987,68.18365376582369,67.31545524345711,67.21277783671394,67.02638052264228,67.08587543992326,66.1338308956474,66.94956464180723,67.60984607925639,67.80434240307659,67.21612419607118,66.3491880861111,66.99144530622289,67.3002801630646,68.19164418755099,69.13721586111933,68.45782635780051,68.36412375839427,68.22717871004716,68.89577549789101,68.88016140088439,68.13269763626158,68.50621152482927,69.30381589988247,70.11060637654737,70.65769971581176,71.17206587642431,70.89013608545065,70.91320854052901,70.18602746259421,69.86365254595876,69.86003300175071,70.76082617696375,71.59149183565751,70.62070018984377,69.91435445146635,69.71003703773022,70.25230075465515,70.86577592976391,70.34490032447502,71.22469098493457,70.35035188496113,70.91803062474355,70.37573905289173,69.54870618367568,68.7394723049365,68.14132385700941,68.35139777557924,68.44525289675221,69.15501057868823,68.32480180216953,67.74627744639292,68.74587104469538,67.9578459453769,68.67260075826198,67.86403624108061,68.00208718609065,67.5792789766565,66.79651726642624,65.88360840408131,66.33936241362244,66.38400777988136,66.38718036422506,65.55194127140567,65.11017106892541,65.90493338694796,66.25392596563324,66.21306419558823,66.71386541938409,66.03751404955983,65.32410708861426,66.13345698080957,65.9543776884675,65.00861850567162,64.83861871948466,65.62617248203605,65.13956926018,64.57274786476046,63.93626755103469,64.42489806655794,63.90255047660321,63.3271940597333,63.541758011095226,62.70590199623257,63.39280686248094,62.41334307240322,62.0770394699648,61.10607657255605,61.20134575618431,60.845839674118906,61.12707400787622,61.130849765148014,60.3710211077705,60.73794105555862,61.69459081348032,61.18807418597862,60.874601832591,61.20089474553242,61.98795356042683,62.01136473426595,62.557834521867335,62.25556787336245,62.33644682634622,62.35445511015132,61.524292897898704,61.450105405412614,60.53975827200338,59.70590234640986,58.91722804447636,57.9377616122365,58.7588484659791,59.396820568013936,58.629191160202026,58.142346082255244,58.98523041186854,58.28944335086271,58.748383458703756,59.0927408230491,59.87482913536951,59.73624363448471,60.167291975114495,60.04562923545018,59.479978534858674,59.84385964786634,58.921958356164396,58.84013320924714,58.73302132869139,58.61091269366443,59.37383144814521,58.405705015640706,58.46131586236879,58.66835323674604,59.09988073213026,58.904820137657225,58.43532392848283,57.927435202058405,58.80266683502123,58.798663436900824,59.38423910457641,59.227027693763375,60.05933883506805,60.36471759201959,59.73755358112976,59.07494956860319,58.52392038097605,58.395127705298364,57.431322153657675,57.8580475714989,57.65177686698735,56.66113578155637,57.1422701375559,56.67925549810752,57.49757055658847,56.67150077968836,56.39437573263422,56.24443978769705,56.51282012881711,55.77965913340449,56.72119514970109,57.12439132807776,57.71709494385868,57.94842852978036,58.5890810363926,58.8188617862761,59.13755182689056,59.42672838550061,59.84053841093555,59.79450826905668,60.26163779059425,60.97951826127246,61.01931299967691,60.672707366757095,61.449724946171045,60.891301398631185,60.513109024148434,60.220563063398004,60.93168424349278,60.362321089953184,59.7380364080891,59.004556371830404,59.16584587423131,59.06093381950632,58.73540519736707,59.69290203275159,58.93581055523828,58.732251442503184,58.095346635207534,58.73180798534304,58.177964934147894,57.85248649632558,57.33165318798274,58.06299352925271,57.15174891566858,57.100513834971935,56.24511230038479,55.46371786901727,55.77702245954424,55.82621930912137,56.0970732010901,55.31967293610796,55.93817504681647,56.209417504258454,57.19916239846498,58.057397964876145,58.80140938842669,58.78837705310434,58.27852679556236,59.0841301609762,58.650940341409296,59.468871749937534,60.020640559028834,59.89996952842921,60.501280394382775,59.96306635159999,59.74895537644625,60.192709595896304,60.35030551254749,59.91505208052695,59.621507469564676,59.72347312513739,59.92551028681919,59.580739258788526,60.31665432499722,59.46781594352797,60.04533100873232,60.51292534312233,59.540587393101305,58.61922585545108,58.69660613127053,59.64515402587131,59.609754589386284,59.498692818917334,58.87843714375049,58.4537547333166,57.966984265483916,57.410463499836624,56.711117034778,56.87611701665446,57.80897887190804,56.98596508614719,56.480572644621134,56.00214723916724,55.3958031530492,54.755406310316175,55.45124978758395,54.56495219655335,53.99252728186548,54.58651886228472,55.29416444245726,54.880325100850314,55.631706673651934,56.37949909456074,56.69268190348521,57.19415502808988,57.958693441934884,58.28728796355426,58.036713746842,58.81222761096433,58.39995923964307,58.43813474010676,58.30484100431204,58.65456889057532,59.60000940132886,59.311235815286636,58.97094269376248,58.28478505695239,57.33921760553494,56.52383025782183,56.74581643519923,57.19729984831065,56.54610089445487,57.5170567096211,57.28798164613545,58.22930411202833,58.33620887622237,59.088624943979084,58.976068486925215,59.85167353833094,58.86459405813366,58.70479175588116,58.09868480451405,58.50300007686019,57.82148797623813,58.70577605860308,58.21437236620113,58.521985532250255,59.046933747362345,59.23930999496952,59.288976478390396,58.78586190752685,58.29791906941682,57.90803451417014,58.59501425875351,58.634493451565504,58.00718447100371,57.493345329072326,57.61218287283555,57.96029131580144,57.7353110560216,58.241232111584395,57.3968455279246,57.84773592790589,58.55479016341269,58.55784322600812,58.24373957142234,57.694415083155036,58.65773348137736,58.41923464555293,58.78889020206407,58.76962892990559,58.469630364794284,58.91382492054254,59.63586188945919,59.38538811914623,58.38905944209546,58.962793211918324,59.27322169672698,58.639968536794186,57.991283021401614,57.19484496396035,56.92117418395355,56.9614318376407,56.61432453757152,55.87586462777108,55.46668638288975,55.841996039729565,54.926311078481376,54.87447233032435,54.10400549694896,54.74497428396717,53.810994694475085,53.469421066809446,53.16870359191671,52.95453180652112,52.71430496731773,53.27467324864119,52.9055984839797,53.198166268412024,53.482414276804775,54.10973367001861,54.493919290136546,54.215437300968915,54.68356103543192,54.85192838637158,55.59777823043987,54.87704460090026,54.14166808035225,54.676971276756376,54.920639706775546,54.82173173176125,55.282777056563646,54.560858592856675,55.32088877586648,54.77944379393011,54.37397280614823,54.64686733856797,55.215090942103416,55.98590683052316,55.47567894635722,55.82941665221006,56.13554612407461,56.10449245106429,56.82591723278165,56.31009825877845,55.720911506563425,54.76481400663033,55.619617599993944,55.49778698757291,54.964309219270945,55.61853438988328,55.401677924674004,54.50765384733677,55.13467820966616,55.44133459730074,55.6066791950725,55.88466364098713,55.26290463004261,55.21243066992611,55.731054994277656,56.04486803850159,55.12228001235053,54.82657019793987,55.28078869590536,55.50268972944468,55.61470881244168,56.3182368632406,55.95771709131077,56.204598407261074,56.505661581177264,57.165553780738264,58.147084747906774,58.173222463112324,57.67364143906161,58.32916910061613,58.507667063269764,58.793443312868476,58.03539845068008,58.56912200152874,57.636287171859294,57.34715222287923,58.27078814152628,57.67984923487529,56.82715735537931,56.30389357171953,56.72760589886457,56.96499268896878,57.299149396363646,58.252092408016324,58.02542041800916,57.8224193402566,57.40594111382961,58.08307777205482,58.66977628041059,59.08877415023744,59.81908111833036,59.629845675546676,58.65710270078853,58.2325869416818,58.746684870216995,59.27464259322733,59.338964944239706,59.26360023440793,59.07047944609076,58.48692978359759,58.92827220540494,57.94645153172314,58.43256208533421,59.27033043792471,59.72513571102172,59.126969774253666,58.68384805228561,58.17563002789393,58.12732250383124,57.88046101201326,58.84620010666549,58.645567287225276,58.320883167441934,58.89128362154588,59.38936275290325,59.266331802587956,59.957261425908655,60.65757990349084,61.368173675611615,61.069512164220214,61.28154510539025,61.83904082281515,62.07230781344697,62.15261033643037,62.63590456172824,62.302861168049276,62.103877048008144,62.881929602473974,62.29513987293467,62.681919999886304,63.43377350317314,64.23928768187761,64.25809632521123,64.9256705166772,64.78421542840078,65.37593741109595,64.89966963417828,64.75031329784542,64.25174320861697,64.13883187249303,63.96344788838178,63.126253821887076,62.802049711346626,61.93549371790141,62.21323806233704,61.32471617218107,60.83610929129645,60.66528823412955,61.25741671118885,61.51441119797528,61.81755675608292,60.90992618491873,61.2184016816318,61.149202208034694,60.42913377843797,59.7506851144135,59.41591304773465,59.22389827435836,60.05910597462207,59.3266104478389,59.34656541934237,59.048643093556166,59.57342827459797,59.34226163942367,60.03367738518864,59.285905067808926,59.072801598813385,58.76518687186763,59.158652633428574,59.872487327083945,59.2305175550282,58.74960323702544,59.26145881228149,59.178235546685755,58.638332723639905,58.030259827617556,57.33611336303875,56.86831721756607,57.35859165806323,57.21897369483486,57.97703733248636,57.76442625466734,58.76404058886692,58.690720583777875,59.51287946058437,59.50555633660406,60.013236734550446,59.1240982231684,58.48465344449505,57.65488754352555,57.39909593993798,57.73948616720736,57.48820070037618,56.51640520012006,57.0838909894228,57.2288923333399,57.68444116273895,58.53358240798116,57.60965186543763,57.88615185581148,57.68471338786185,57.30784515943378,57.523624430876225,56.82370184920728,57.2152960463427,57.04326134361327,56.36073308577761,57.19563447171822,58.14720607502386,58.08073464455083,58.58018166292459,59.18449243390933,58.83315409673378,57.99526195600629,57.95569773996249,57.646392000839114,57.47940969560295,58.087404023855925,58.5760760512203,58.64460876956582,58.71391416247934,57.71898520644754,57.28096638945863,57.64587893569842,57.80068542994559,58.70821458520368,59.24630853533745,59.333684884011745,58.944811841938645,58.74039842095226,57.82624079240486,57.68078012717888,57.31271800212562,57.7973676295951,57.51916686818004,57.59060910763219,56.74243406113237,57.58482651086524,56.666629461571574,57.62808170448989,58.62776321126148,58.20661138696596,58.14956097211689,58.00547666428611,57.09169492032379,56.600073103327304,57.48550819372758,57.50606784503907,57.138155177701265,57.192242755088955,57.309098387137055,58.1932983440347,57.20977110695094,57.29899434233084,56.923346241470426,57.782403375953436,58.44286301918328,57.70206862222403,57.408457446843386,57.364890220575035,57.92715862300247,57.111864362843335,56.394916985649616,56.23065110947937,55.956991392653435,56.67070066649467,57.37741802632809,56.494301449507475,56.81513462634757,56.47099003242329,57.34399910271168,57.387828902341425,57.128648086450994,57.30610416503623,58.04054321022704,57.27097463933751,56.68089001113549,56.12955810595304,56.8195521873422,56.44413404259831,57.21606560284272,56.338088338728994,56.15755944233388,55.615307049360126,56.272323744837195,56.294386251829565,57.02852102462202,57.274241600651294,57.21406697155908,57.196127065457404,56.36792557640001,55.81854302296415,55.72305686632171,56.47474082605913,55.638088835868984,55.63502815691754,56.086233095731586,56.43412681017071,55.70153232384473,56.67928652372211,56.56339681008831,57.35818001721054,57.679067532066256,57.7257248647511,56.906446813605726,56.90658953692764,57.60031455475837,58.03240916505456,57.05828130338341,57.39016803866252,58.016525727231055,58.32284520706162,57.814195923972875,57.71273872861639,57.12185722589493,56.18670471943915,57.107558546587825,57.12304036039859,56.345064541790634,57.14793895604089,56.92795045580715,56.56779369479045,56.56307906098664,56.38393888575956,56.882547778543085,56.968211211729795,57.434815380722284,57.73098675720394,58.48020772729069,57.96296036662534,57.88815907109529,57.724885574076325,57.78896628366783,57.99805376678705,57.247673351783305,56.34004830336198,55.540864024776965,55.24051289726049,56.22898245276883,55.753919961862266,56.073434902355075,55.07868721336126,55.28791297925636,55.95190284634009,55.87868720339611,56.12017379933968,55.69215723872185,56.5123200644739,56.9853615257889,57.09984823362902,56.933723689988256,57.60391061613336,56.886045791208744,57.34647538373247,57.11320161446929,57.834471442736685,57.27833430049941,56.65940749878064,57.56238377094269,57.50297144940123,56.66545167006552,56.67667070263997,57.10939634172246,56.1152090835385,55.6690285098739,55.71599810337648,55.28346181940287,54.87183036003262,54.045070407912135,54.17884253105149,54.030007326975465,53.436633120290935,54.22919846046716,54.710092089604586,55.373948224354535,55.04460939113051,54.613733287435025,53.98492505401373,54.60516841057688,55.339308420196176,55.353862142656,55.16887261113152,55.548373428639024,55.33729882212356,54.845281953923404,55.6922657135874,54.984742601867765,55.32152007939294,54.50202151061967,54.69188571209088,55.07820913288742,54.6737942523323,54.98545612860471,55.47596647916362,55.26833615126088,55.15423031384125,55.50735659804195,55.21492630336434,55.820550099015236,56.2839388451539,55.716538018547,55.037969562225044,55.20497973682359,54.972394617740065,54.89159485697746,55.421233450528234,55.06822409527376,55.15887423604727,55.850207913666964,55.01887413254008,55.21330360136926,54.59896922344342,53.67179041262716,53.10642776452005,53.85525057697669,53.77527390234172,52.88841024087742,52.28369795763865,51.29317978071049,50.508053379599005,51.45681508630514,51.80622583441436,51.86934884497896,52.639959949534386,52.83959737373516,52.15647999756038,53.030722512397915,52.07807753467932,51.18306794576347,51.11274710018188,51.053715756163,50.156204521190375,50.36082495050505,50.468824565410614,50.780932787340134,51.028775757178664,51.56203647330403,52.07644739467651,52.31394609436393,52.24044525856152,52.34178947331384,51.67322010267526,50.865351451095194,49.988730433862656,49.1738672782667,49.9620092632249,49.97736385650933,50.142444213386625,50.42445570835844,49.88739282032475,49.62201446434483,50.2510675676167,49.837835444137454,50.26136479852721,50.235755847301334,51.20086365751922,51.87262305710465,52.837987405247986,52.77778209699318,52.73524405807257,52.65176527667791,52.441703111398965,51.65329310623929,51.04763739556074,51.880724558606744,51.75929853413254,50.81644744519144,50.58588440017775,50.084390360396355,50.74186940025538,49.99987027654424,50.609828164801,49.76501038763672,49.65954122086987,50.31280107796192,50.50518351839855,50.94444930180907,51.923345568124205,51.660371283534914,52.480739183258265,51.749645999167114,51.02713214466348,51.302269369829446,51.98438973072916,52.60213132482022,53.46490527968854,53.2018105504103,52.62458276282996,52.22207297524437,52.46503552934155,52.82134619029239,53.1730594066903,52.60222448082641,52.398725658189505,51.43879860173911,50.842537267599255,51.6155638480559,51.212489551864564,51.93603159254417,51.5667567118071,51.434936593752354,52.39479387225583,52.624151977710426,52.55096388235688,52.04893194325268,52.072275184094906,52.30647035036236,52.97778761247173,52.86048641987145,51.92939148610458,51.393635645043105,51.44806785881519,51.2731024492532,51.43748137494549,51.58820880157873,50.74510968849063,51.118718126788735,51.78203752404079,52.310545343440026,51.76778221735731,50.93567696819082,51.42727296287194,51.2965621012263,51.44484260678291,51.84599140752107,51.598796349950135,50.705633455421776,50.36047097528353,49.56573855737224,50.549549095798284,50.46945151081309,50.726925149559975,51.61887890798971,51.49194703577086,51.60053326562047,52.56591298384592,53.182194826658815,52.940809913445264,53.428405506536365,53.48565510939807,54.448956770822406,53.97509140288457,54.170400337316096,54.48587462864816,55.25412794062868,55.060440292581916,55.823106272146106,56.34066214924678,56.37812706362456,56.35249581700191,56.06788299512118,55.939763702917844,55.981407061219215,56.29042503144592,56.51430683583021,55.65042756963521,56.54387732595205,57.197013531811535,58.12581655289978,58.064938181545585,58.170819126069546,59.01344065833837,59.54548049392179,60.10617636470124,60.817045089788735,60.58200456621125,60.120493065565825,59.631538265850395,60.58302643196657,60.72366447886452,60.21541921980679,59.25110873579979,60.001238401047885,59.28272900450975,58.82439100323245,59.55884677730501,59.457264395896345,58.67150376504287,59.19219390489161,59.34562511276454,59.33842656109482,59.54624327970669,60.29715901752934,59.85885488754138,59.60069193504751,59.67698432970792,59.554749452043325,59.51767801120877,59.38436852116138,60.24055609572679,60.52820093790069,60.13737398479134,60.74444285174832,60.36984842829406,59.52726073982194,59.1985433800146,60.0211138818413,59.73299455689266,60.09481518995017,60.11831373022869,59.68975159712136,60.17195598362014,60.36992005072534,60.642723405733705,61.55797176854685,60.7843904257752,60.549807416275144,60.49998584063724,61.12634995067492,60.746619132347405,61.38543095998466,62.185729226563126,61.6218708534725,62.28657052619383,62.70928502874449,63.05333963083103,63.101136470679194,63.22254480747506,62.95976875862107,63.88364591030404,63.92834347765893,63.916106215212494,63.954475520178676,64.39312346791849,63.458720156922936,62.786773880477995,63.02971313241869,63.661025954876095,64.5796530987136,64.52518563531339,65.41515619494021,65.4238863941282,65.54461794439703,66.14867719635367,67.1015873667784,66.85337724164128,66.42458620294929,67.04466959508136,68.02701440546662,68.0933166174218,69.02745902677998,68.9415211295709,69.86241887882352,70.84732533805072,71.03579683648422,70.17075699241832,69.81610578019172,70.3051414261572,70.24457431631163,70.73345737485215,71.21421796176583,70.25626958860084,70.10605702549219,71.02756225178018,71.85062050679699,70.9955261242576,70.18408757681027,70.92645696271211,70.96875559818,71.08913158252835,71.09609610121697,71.65178669802845,70.96217643143609,71.11173667246476,70.33890235982835,71.29305898072198,70.58400929067284,70.63645707629621,70.10352894710377,69.20140186743811,69.28630593745038,69.84063981985673,69.63300428679213,70.2427584901452,69.92389748664573,69.003960381262,69.25101870624349,69.03618541639298,68.16546089947224,68.54334480175748,68.77043384499848,68.17139899823815,67.32957810210064,66.67062045168132,66.19657514896244,66.79966093599796,67.70271881343797,67.03654953325167,66.88568084314466,66.55153838917613,66.9814586006105,67.31011871248484,68.22765601985157,67.95610603550449,67.2776494557038,68.20813927752897,68.46488589560613,68.26929983403534,68.97811126848683,69.70490639982745,69.03122140699998,69.50518552260473,69.7095224717632,70.2546409741044,69.42883974080905,69.7161266556941,69.73654788685963,69.4586701830849,68.68331350618973,67.81695994455367,67.28342489199713,66.43949592020363,66.69931400427595,66.72136273235083,66.09956511622295,66.81623524613678,66.78315178770572,66.87902441900223,67.87814555084333,68.73498166631907,69.40274144895375,70.27463497687131,70.43692232249305,70.79887774493545,71.7691902210936,71.56825365079567,72.14279507054016,71.69972528889775,71.22705319151282,71.53477841708809,70.89760226896033,70.82429117197171,69.82764196908101,68.90082736965269,67.91835770523176,68.26812630612403,68.63173172529787,69.50248265173286,69.67758687632158,70.5011029029265,69.86967844329774,69.49958313722163,68.50582084618509,69.28631035238504,70.22299833456054,69.88197356136516,69.13358640903607,68.80016841040924,69.71501560881734,69.23278928594664,69.77877290220931,70.05811643553898,70.02952087763697,70.70818995172158,70.54818625096232,70.70917097711936,69.77660208987072,70.55342580936849,71.36467929231003,71.00064455438405,71.17771841585636,70.95295464573428,70.21165299415588,69.30273482203484,69.50422990880907,70.10578792123124,70.91905633173883,69.93630309263244,70.7814395641908,70.828600209672,71.7212433097884,72.2472689691931,72.00250544771552,71.14639897970483,70.48583908937871,71.1333883954212,70.81470368755981,70.81243673386052,69.91271367063746,69.69239852344617,69.48105957126245,68.55734808556736,67.86428576800972,68.04441395495087,68.72276373766363,68.77886536996812,68.82936271419749,67.83912339108065,67.79540652222931,67.69620046019554,67.78861757088453,67.26603306736797,67.10461417073384,66.96893328707665,67.6362048429437,67.5773701951839,67.28807866759598,67.82611601660028,67.71701672673225,67.29054348869249,66.62532226042822,65.91349306097254,66.31401768187061,66.55448159389198,67.2134178164415,67.91314154397696,67.9954100693576,68.66793640097603,69.02434287127107,68.15833703428507,68.54652024107054,69.18652525357902,68.91415504226461,68.60233026882634,68.68978931941092,67.96588267665356,67.96159796463326,67.73038361780345,66.85117291286588,66.88469851389527,65.91577532328665,65.4069436029531,66.12198643665761,65.44380355300382,65.49933864409104,65.66124405432492,65.27177581284195,66.19178201956674,65.99319633841515,66.35959955630824,66.03279144270346,66.62850705068558,66.38691026391461,66.35591953620315,66.79582451051101,66.13871503993869,66.42454086476937,66.88337830919772,65.93643395463005,66.01326063321903,65.28594696056098,64.34808525070548,63.4826095122844,62.54192061815411,62.06254076352343,61.90183593612164,61.302390097640455,61.146314532961696,60.92974640009925,60.850005506537855,60.61955102393404,60.46320797735825,60.444314810913056,59.71823822474107,60.14546314300969,59.236022003460675,58.580508458428085,58.66719835018739,59.37018129974604,59.15115254279226,59.72159888828173,59.662459646351635,60.0040226271376,59.12378779705614,59.32575425878167,58.72802747273818,57.94275546912104,57.52475434821099,58.303842627909034,57.33863740507513,58.2029936700128,57.853470243513584,57.858167704660445,57.1590894353576,58.14209450222552,57.51254681497812,57.31905160099268,56.79045196343213,57.241329844109714,57.11899674497545,56.69780522258952,57.649587883614004,56.77705619717017,57.03825949411839,57.50423021800816,58.07455597259104,57.469462929759175,57.186051681637764,58.09390385681763,57.14992956304923,56.36228535603732,56.45102479401976,56.743804729077965,55.94368662778288,56.74748634779826,56.753032276406884,56.47271185833961,56.901126637123525,57.02496839873493,57.96972390124574,57.62987634772435,57.58211649488658,57.99679331574589,57.03266506455839,56.825045133940876,56.86086145415902,57.07725599128753,57.613133179955184,57.467718760017306,56.63476004265249,56.30412329081446,55.80038511333987,55.940809512045234,56.28680718317628,56.55479908362031,56.60172022273764,56.33025925187394,56.986247825901955,57.959625837858766,58.80031054932624,58.00366471800953,58.804585348349065,59.590472758281976,60.318595027085394,61.17805438162759,61.98739552265033,62.83170317672193,63.76648823916912,62.77594962855801,62.39526101993397,62.027344547677785,62.8664294318296,62.433545316103846,63.307272950187325,64.21375364623964,64.2465331275016,65.02274900581688,65.1705376575701,65.19348607119173,64.47046680888161,63.71409815689549,64.22906926833093,64.74101466592401,63.77499695075676,62.98465028125793,63.5336710033007,63.29057188145816,62.457791958004236,62.0223501319997,62.20215393276885,61.810255139600486,62.002939614932984,62.141272000968456,63.02806978719309,63.22025548899546,64.06664519151673,63.331627424806356,62.9165193089284,62.4252947838977,61.897194454912096,62.430227846838534,63.257229149807245,62.86315322946757,62.37865807907656,61.515816987957805,62.213833356741816,61.452348314691335,62.23426304385066,61.35729606170207,60.7978176237084,60.89750488102436,60.339749495498836,61.212863421067595,61.53267267206684,60.912271466106176,60.558315380942076,60.627992652822286,61.35718229692429,60.992990931496024,60.88257067138329,61.29786243150011,61.457877391483635,61.028236005455256,60.808509750757366,61.788917697034776,62.706180742010474,61.777180498465896,62.35441890824586,62.43726420775056,63.261176072992384,63.468168668448925,63.535672346595675,63.114442174788564,62.89732993626967,62.500610711984336,63.07109964871779,62.07914445921779,62.84987173974514,62.68575576739386,63.499504518695176,63.077438231091946,63.21288400655612,63.83988377451897,64.37000075681135,63.71967570343986,63.35640438226983,63.3772060982883,62.39990874007344,62.746527660638094,61.966471139807254,62.840493752621114,63.770246531348675,64.12615625886247,64.44812320312485,63.494680027943105,63.682676904369146,63.00414497917518,62.8349651992321,63.09169544279575,62.61698164558038,62.362519344780594,61.458428419195116,61.91139740310609,62.71565127186477,62.74515665508807,62.01312704803422,61.04342958563939,60.16884347470477,59.768052257597446,59.35804700758308,58.45836458681151,57.715243929065764,58.40608010394499,58.8082041577436,59.71622042823583,59.3820185395889,58.99971798621118,58.647606992162764,58.44212460750714,57.96641700249165,58.44296760112047,57.483694394584745,57.17896413151175,57.03271618532017,56.11248168721795,57.03473424119875,57.72364995442331,58.549570775125176,58.93925786949694,58.7056585168466,59.041061559226364,59.587744711432606,59.19940604129806,58.97670076228678,59.041061078663915,59.31653502071276,58.436517796013504,57.68338028434664,58.4723197016865,58.31274300953373,58.94859226047993,59.63930793432519,59.1399932783097,59.82651512790471,60.73558862833306,59.812406758312136,59.77975418511778,59.11077513592318,59.86494092550129,60.626973322127014,60.21312227798626,60.973813156597316,60.28723988775164,59.365120987873524,59.43095187144354,58.76888294517994,58.89001437043771,58.39846454421058,57.82744193030521,56.90418587438762,56.513173579238355,57.23280173074454,58.18792696064338,58.61861783917993,59.435170859564096,59.349117123521864,59.9731033379212,59.21604560315609,60.11774286441505,60.50224787509069,61.178840572945774,61.80041334358975,61.760832141153514,62.07347627636045,63.04756540013477,63.98554396396503,63.29016427369788,64.03265043720603,63.69292318401858,64.29683350771666,63.72620206139982,62.85978180821985,62.72590468125418,63.62084601446986,63.23059760732576,62.37950252182782,62.573814548552036,63.56699554203078,64.02249597152695,64.53443082701415,65.42324243532494,66.40195951936767,65.58024122938514,65.65531307226047,64.75666182441637,64.25996951572597,63.44573946716264,63.278541596606374,63.96720681572333,64.55665305443108,64.12295259488747,64.35553404781967,63.434456878807396,63.36890482855961,64.06355103012174,63.27060738625005,63.13709821971133,63.154544371180236,63.69023846881464,64.49815663974732,64.78114738222212,64.5966022494249,64.13660009205341,64.09228155575693,64.38856647070497,65.2718172678724,64.44487991509959,64.57140264194459,65.07985157798976,64.77398132067174,65.74756246758625,65.82184215262532,66.62604212807491,66.3074902575463,66.7795648588799,67.52751043904573,67.7732076109387,68.5501477541402,69.16919996868819,68.34043559571728,68.48374115582556,68.70367110008374,69.35559936705977,69.00563432462513,68.72913559665903,69.60083985794336,69.24991653580219,68.51752126263455,67.57337780017406,67.96730392519385,68.05370891978964,68.80572201590985,68.65673333127052,69.12024508509785,68.84782490180805,69.3467612718232,68.8614232679829,69.35693471040577,70.03859929926693,69.26790354726836,68.3461799765937,67.72712205536664,66.952926103957,67.79509159829468,68.25072655919939,67.89438785705715,66.96605347795412,67.94539097836241,68.91535580065101,69.20823147008196,68.7266991417855,67.98498053429648,68.0216841972433,68.457165973261,67.87904801080003,67.0958116943948,66.69796544732526,67.52655963459983,67.87892628228292,68.19079363020137,68.49815027276054,68.41643020231277,68.81844817567617,69.25115710869431,69.86777269095182,69.45392455114052,69.49847184866667,70.37915251450613,69.936275257729,70.85771179944277,71.71579665131867,71.53849500557408,71.36555573297665,72.18167551700026,72.66483166022226,72.08700328459963,71.32246065046638,71.062136804685,71.75061168707907,71.75841836957261,71.21340268291533,70.75488589983433,70.54185174498707,69.77081051375717,70.66997073311359,71.30516302166507,71.89531016536057,72.06972270691767,72.4437179681845,72.46381914010271,73.20098666846752,73.74471865035594,74.18470833962783,74.3561558816582,74.62238963320851,74.50224519800395,74.40371408732608,74.1097223344259,75.02282187854871,75.58368053659797,76.00987129844725,75.03484125668183,74.22777670249343,73.68320480315015,74.31185096455738,74.28547695092857,74.99738374073058,74.67074449034408,74.00021338835359,74.84629840636626,75.55417338293046,75.30258177407086,74.82437060074881,74.8216692134738,73.95471601979807,74.89289523148909,73.96948845312,74.0660696378909,74.433661992196,75.37775100162253,75.3636369984597,76.03081747237593,75.90114801144227,76.11332257650793,76.10515444120392,76.32948289532214,77.15152574842796,77.90357420407236,78.4688384165056,78.379290914163,77.79099904606119,78.76288342336193,77.94320086576045,78.50950091984123,78.64265613537282,78.88494444033131,78.31463935319334,78.91913269180804,79.80096337478608,79.79074192233384,79.48117002751678,79.96261379029602,80.8238955992274,81.68068439187482,81.44081914192066,82.17119701392949,81.63361228443682,82.40237963944674,82.82427243189886,83.24738669628277,83.76997072063386,82.94674076978117,83.19212052738294,82.29696380719543,83.18651490937918,83.5592352389358,83.79561950173229,83.00637218402699,82.99848867719993,83.01951159071177,82.30415954254568,81.51455078087747,81.15444041555747,81.54622937645763,81.32948031602427,81.66355691337958,81.00055558839813,81.75178527832031,81.65990676917136,81.78362567583099,81.30856475094333,80.60869202250615,81.55205411324278,81.08070568554103,80.1541608585976,80.48723198333755,80.73147869901732,79.97166090179235,79.54802784370258,79.83299767971039,79.72710726968944,80.41900335857645,81.06179052358493,80.46030056476593,80.79155210778117,81.0074248095043,80.51370919402689,80.38596836291254,80.36685912823305,81.20709313172847,80.8682635310106,81.64108245074749,81.54862069198862,81.66274540033191,81.5421164482832,81.83091374952346,81.91720532253385,82.36191680142656,82.71250619599596,81.75617690384388,81.29308835463598,80.87028440693393,80.26153873791918,79.33573336200789,78.6323252231814,77.99596888944507,77.79492135159671,78.33999944105744,77.57042664056644,77.60500463517383,77.4040725226514,78.01175929931924,77.97351346444339,78.44820605777204,78.94654198084027,79.84003649372607,78.86720108380541,79.10041671292856,78.81341552641243,78.87153911031783,78.7037970512174,79.01421227352694,78.80327571043745,78.11231825733557,79.09976371517405,79.36433461681008,79.91665112553164,79.39773288881406,78.43749498855323,79.02301585720852,78.30082074133679,78.82621077308431,78.86336083943024,79.1109126880765,79.25035932892933,78.63203280838206,77.78234448796138,77.56764725176618,76.89906971296296,77.13769619166851,76.92488175584003,77.27869046293199,77.22506572818384,76.39593623019755,77.378116840031,77.09918691776693,76.77685129875317,76.38786618132144,75.54175205389038,74.81234504189342,75.38650433672592,76.12165782507509,75.14438299415633,74.3198394915089,73.57406834885478,73.4867286789231,73.50793800596148,73.01767515903339,72.92458913940936,73.5436076298356,73.67102685943246,73.17201460618526,73.34470239561051,73.06914074392989,73.92288051173091,72.98911099275574,73.22619009716436,74.19366752170026,74.51671272329986,74.51846785098314,73.68769706506282,73.30915551213548,72.4246759172529,73.09624706348404,73.75916998647153,74.07812811015174,74.02242466667667,73.64804226905107,73.75472860271111,72.7606221488677,71.78116533625871,71.86153756733984,71.4609885062091,71.1381750931032,71.83291358221322,71.04783380590379,70.60447890171781,71.22294647945091,71.83906628051773,71.01763214357197,70.23412332125008,69.44290005462244,68.45950620761141,68.56648449227214,68.44665996776894,68.72104005003348,69.49767219647765,69.2807419039309,68.38423861563206,68.7599821058102,67.81631160993129,67.78301254659891,67.59021073812619,67.29813458258286,66.58548976434395,66.99154349369928,66.92377248965204,67.918451692909,68.67787102470174,68.30265358230099,67.76873132120818,67.04511371161789,67.35803442681208,68.31501463521272,67.86918850569054,68.64693290228024,69.52275723265484,68.8706766939722,68.7026871680282,68.95897725317627,68.92956854915246,69.02204216457903,68.40665704291314,67.49956425558776,66.94939296180382,67.77481021359563,67.69403072819114,68.11324049392715,68.45573887694627,68.61967906355858,69.36027956940234,70.16338361334056,69.2991639431566,70.11765649169683,69.43166647804901,69.3282570564188,68.78582966327667,68.12158980499953,68.45880122948438,67.6978197414428,68.36450822185725,67.82168176257983,68.14794725645334,67.34260234143585,68.2409543194808,68.47716922266409,68.99662836454809,69.87489375611767,69.73413647059351,70.29869517544284,70.7027334147133,70.29941845871508,69.83210137207061,69.66076616803184,69.73030145606026,69.85425719898194,69.78348164912313,69.6448008865118,69.67299119755626,68.74281550198793,68.62966274050996,69.00394225819036,69.84050638461486,68.9251529998146,69.85461278492585,69.1588727356866,68.36192654911429,68.85881092213094,68.47602008283138,68.51103748986498,68.40794134885073,69.16213326854631,69.1332981181331,69.30663136485964,68.43779101455584,68.06496107997373,67.19995230389759,66.60731289815158,66.45623360620812,67.25235885893926,66.9352544741705,67.75151260057464,67.50536493351683,67.89612890640274,67.24792219744995,66.9663523179479,67.41050363238901,66.55912161804736,67.01346951257437,67.45530415978283,67.47410613950342,66.55971306143329,67.28392648650333,67.84014705521986,67.73953027045354,67.94451462151483,68.92792459949851,68.44173369416967,69.0288165663369,69.66051974566653,68.7343831108883,68.5917534022592,68.44207108113915,68.11180514423177,67.28109544375911,68.0991178448312,67.16050831554458,67.12800981895998,66.30746871745214,65.57087353663519,65.25443173665553,65.48479340365157,65.92597223073244,65.45345277898014,65.42488902015612,64.65996660897508,64.68977843085304,64.78805379057303,64.61244122730568,65.16937218932435,64.84068894991651,65.28278047218919,65.92372255027294,66.270767997019,66.84381693881005,66.32133430615067,67.13010413106531,66.44967165356502,66.54616536479443,67.44816722162068,68.21195156825706,68.24632522789761,68.0792475049384,68.84784406982362,69.44610690418631,69.18188244150952,68.63548275455832,68.75844528805465,68.39788662455976,67.50149081693962,67.57881979783997,67.22661778284237,67.59985758597031,66.84804213047028,66.28246792918071,65.68747031921521,65.88008660590276,65.7116253580898,65.81311505008489,65.89401008188725,65.15235231816769,65.6875330414623,65.50643651746213,66.47835219232365,66.17138409009203,67.1170102385804,67.10655171656981,68.09534985618666,68.98495499789715,69.1946857701987,68.19950107159093,67.41587488818914,66.44752721628174,66.02840553876013,66.36284122336656,67.25354298530146,67.94392710272223,67.87457427987829,66.89063742244616,67.51493908744305,66.5894564143382,67.3209004662931,67.69887179229409,68.39480991102755,67.43350801616907,66.56655950006098,67.38461305387318,67.876723988913,67.1975899185054,66.75398295745254,65.80591164343059,65.4707201528363,64.48068941710517,64.83875377289951,64.16025415156037,64.81179737579077,63.99192227516323,64.48472575983033,65.13545781606808,65.29796371376142,65.96618539700285,66.93872090848163,66.3427740749903,67.24023624276742,68.03646234795451,67.2037543207407,67.88535066507757,67.22719839634374,66.84265113342553,66.66156891081482,66.2753154844977,67.18946712184697,66.4755998882465,67.40175200765952,66.49761603213847,65.98782394640148,65.0237295315601,64.10972851654515,64.4723811740987,64.34540280653164,65.31270937575027,64.52314910152927,65.32147932099178,66.17306006373838,66.60160927847028,66.44322931487113,66.10605331556872,65.18902706494555,65.26877724984661,64.44867610558867,64.79948007781059,65.43121513072401,65.82586744986475,65.83305775560439,66.16189100826159,66.28970680385828,66.51904279971495,65.9666618690826,66.04333909787238,66.98152358084917,66.83271413110197,66.32323521748185,66.50881101936102,66.50418208586052,66.18178225448355,65.744511900004,64.93092304142192,65.92929843999445,65.45684327092022,65.3966235392727,65.05503477342427,64.23466381570324,65.07640833640471,65.49388457275927,65.73827417008579,66.65748470975086,65.66995903197676,65.2469358225353,64.78035181807354,64.55978499352932,64.80769234662876,65.6790872993879,64.80728793842718,63.96502024587244,64.47234622715041,64.08879767963663,64.12658636691049,63.6623640791513,62.99794662836939,62.92792161786929,62.04260001145303,61.93025441095233,61.58033362030983,60.84359767334536,61.23242356302217,60.45165791083127,59.781724066473544,59.07370705064386,58.581236680503935,58.60498116258532,58.01261659199372,57.77706410223618,56.93554754415527,56.65624849032611,55.71072739409283,55.50631734030321,55.32350405305624,56.083894833456725,56.23851216258481,55.92100204434246,55.7596846264787,56.14303556038067,56.99518951168284,57.395269258879125,58.264398413244635,57.994163021445274,57.40898462338373,56.68369097961113,57.292077077552676,58.11387459654361,57.57286886032671,57.03659120993689,56.039228117559105,56.60446596844122,56.71984951291233,55.990467122755945,55.057252161204815,55.37436200492084,55.7356940433383,55.64589963294566,56.196046149823815,56.52440402144566,56.71924204798415,56.10264412872493,56.719801967032254,56.438894988037646,56.816295938100666,57.808466226793826,58.25103899091482,58.851579810492694,59.038303691893816,58.97446573153138,59.234259033575654,59.16493390640244,58.35958549566567,59.282017938327044,60.139892782550305,59.88610108383,60.52364286920056,61.341018037870526,61.79278710344806,62.609867982100695,63.23449924122542,62.301603180821985,62.57125956658274,61.755714368540794,61.84810081822798,61.10375793930143,61.92506408272311,61.89617011509836,62.00875655980781,62.212993919849396,63.1436247555539,63.028296201024204,63.498103238176554,64.38421188434586,64.97373688034713,65.94607974588871,65.20830134674907,64.61044423282146,65.49252107413486,65.27490145992488,66.09230609470978,65.75965371960774,66.51265229517594,66.58831944828853,66.39372492255643,65.56351681565866,66.46814131131396,67.22847036551684,67.38283213740215,68.06312491651624,67.29922511614859,66.9624783503823,67.55051182769239,66.59519065031782,67.4704655087553,67.26210743421689,66.65617081196979,66.9873320586048,67.84866041550413,68.59045686060563,69.25779185723513,68.45678630424663,67.59111050982028,68.44536494836211,68.12105435086414,68.91319409152493,68.31189574860036,67.3136260532774,67.1229658164084,66.16044700751081,66.23907821113244,65.97978065162897,65.55387551011518,64.68152885185555,64.37945761252195,64.63763387454674,64.79258292913437,63.943332756869495,63.82541390508413,64.34306629933417,64.95170724950731,65.8188844146207,65.73996277339756,66.461623408366,65.85401231655851,65.71999297104776,65.19962533470243,65.59425934357569,65.47210859507322,65.98099159542471,66.30783532047644,67.30096156708896,67.47530842432752,68.35044905543327,68.24761356180534,68.02394565660506,67.0769356423989,67.90866086259484,67.40543719939888,67.8397415545769,68.69442930072546,69.2296421569772,69.25635925075039,68.93442373396829,68.85324411420152,69.56171413837001,70.15868599666283,69.67739015398547,68.86776963016018,69.69521517725661,68.8594286791049,69.78447724459693,68.87598158326,69.12477209093049,68.75637478148565,69.35585340717807,68.67391283763573,68.71387505391613,67.93058602325618,68.24722775164992,67.57473110640422,67.47244314383715,67.31994945881888,67.82014119112864,66.8604597938247,67.14404579531401,66.45742432633415,65.6074291546829,66.14851425634697,66.7821716973558,65.87204167991877,66.02571912715212,66.55239089252427,65.5825229799375,65.80069750687107,65.6010062401183,65.8410565792583,66.66175462119281,66.46444501262158,66.59334423718974,66.62247375678271,67.5792374345474,68.38844204880297,68.24112495174631,69.0271894489415,69.34556690277532,69.52989867841825,69.17087999265641,69.49488811427727,70.39957462484017,69.82175090769306,69.03969088522717,69.24833193747327,69.50197508838028,69.81555707659572,68.89037140691653,68.56653544865549,68.97615214297548,69.54489317303523,69.40146130509675,69.57693232409656,70.45064247585833,69.45376804284751,70.42338849464431,70.30193730304018,69.83766694040969,69.34748316695914,68.48765054205433,69.1290665124543,68.76174759631976,68.36014914745465,69.12364264484495,69.71927615161985,68.9655589973554,69.74482732452452,69.48222015984356,69.27871326170862,69.20161669747904,70.17504291329533,70.87154288822785,70.17908558668569,69.79525126423687,68.79771029436961,68.43733469070867,68.41847169445828,68.08577358629555,67.86246408941224,67.19045670796186,67.20345173915848,67.93619889160618,67.5501140365377,67.09236702788621,67.05448724096641,67.72117184987292,67.47067587263882,67.52756761433557,67.70972804073244,68.35907258605585,68.91244940133765,68.33480027876794,67.59151666751131,68.06692758901045,68.99260951764882,69.34941298654303,68.9112896528095,67.92595488205552,68.7319065593183,68.92762873880565,68.13358296034858,67.958326398395,68.74316611653194,68.40549654746428,67.87666010903195,67.70529017783701,67.42222627764568,68.06405926356092,67.09714925661683,67.79209918761626,67.09565328201279,67.64105349872261,68.60893082851544,69.13975358475,68.96805424476042,68.06752284429967,67.91494841594249,67.10550940409303,66.91506785107777,66.52480382239446,66.829355686903,67.66357816709206,68.2723731463775,68.03110541962087,68.57184324925765,69.0669923350215,68.42865528026596,68.46979732997715,67.47294187685475,67.35559830628335,66.70310993818566,67.65117596276104,67.59124571830034,68.14724232815206,68.83056293893605,68.26464566262439,68.66114221839234,67.95877900207415,68.62378994841129,68.34554224833846,68.61293314257637,67.65655045956373,67.26544376183301,67.75409792875871,66.96411520987749,67.72220800584182,66.96637491183355,66.22568839089945,66.09006235562265,66.76718664588407,67.58309289533645,68.07608480006456,67.40017651673406,66.65125060174614,65.79631640342996,64.83795039635152,64.05793160526082,63.94657419063151,64.85868500266224,64.72322479216382,64.8718086257577,65.40570190083236,65.08465426275507,64.49561541248113,64.25325016630813,64.47749961307272,64.55746591556817,65.09652431681752,64.44415487535298,64.59282635571435,63.72791933082044,63.737441214267164,63.76677193911746,64.71871440438554,63.859657901804894,63.27672969177365,63.153862569481134,62.812548944726586,62.36984685296193,61.81118746474385,61.913494509179145,61.60803239932284,61.86785005265847,60.96473027439788,61.22209100611508,61.63669383851811,62.29392314562574,62.89257144648582,62.58566159568727,62.378262830898166,62.346723624970764,62.81471209321171,63.568195974454284,63.1187562327832,62.48841689899564,62.29116644337773,61.4544091722928,62.03207680396736,62.62801582273096,63.24349123146385,64.00077509321272,64.61987411556765,65.29933598497882,65.23700099345297,65.07234935369343,64.31873810151592,63.94941572425887,64.66018333984539,64.45447544334456,63.4954830436036,63.625654495786875,63.214280168991536,63.6698526465334,64.275044713635,64.97655844781548,64.83123769145459,63.896899157669395,64.7152088615112,64.74084943253547,65.36428120266646,65.80667410511523,65.03288685111329,65.01119773602113,65.89188678376377,64.99409418227151,64.38428451959044,64.5664242929779,64.14849881315604,63.17700441693887,62.62837068364024,63.50251935608685,63.16152506461367,63.17155941249803,62.60825118981302,61.75958792772144,62.355738958809525,61.84840348735452,61.630377194378525,62.541950792539865,62.13632204011083,61.199375038500875,60.52664830815047,60.11598000815138,59.295099715236574,59.33620997192338,58.967555766459554,58.372999681625515,57.76695148926228,57.986609207466245,57.905036977957934,58.32952802674845,58.82288986677304,58.29184756195173,58.537668264936656,58.96809303853661,58.008022523485124,57.09523851564154,57.656533947214484,56.91916956845671,55.98136901203543,55.71375806303695,55.682117610704154,55.01781926024705,54.373071713838726,55.1565459035337,54.23905958328396,54.13338413555175,54.78046044893563,54.75588000100106,54.44418381806463,54.43243341241032,53.9308482571505,53.30050087347627,53.85394982760772,53.064672336913645,52.97158360294998,52.13409542478621,51.1748696253635,51.76041583670303,52.5805342765525,53.23924067756161,53.65323381219059,54.5785351684317,54.261624816805124,54.03424052661285,53.38850663974881,52.59360395465046,53.497173274401575,53.81397905014455,53.6954229939729,53.8195543885231,53.60141952196136,53.342925692908466,54.102580880280584,53.96440795855597,53.26331771817058,53.392610095907,52.689105281140655,53.18594581168145,52.80615568347275,52.43445145478472,52.50160157121718,52.43591566802934,51.61642240965739,50.92994108656421,50.966539916116744,50.69156453944743,51.068832581397146,51.993721497710794,51.66151703521609,52.17068827385083,51.223672008141875,50.29056890588254,50.39219718798995,51.323624265380204,51.99695355491713,52.62721117818728,52.27779981819913,52.10744174942374,51.24563416931778,50.596922404598445,51.419935050886124,50.744978606235236,51.62342611933127,51.220233789645135,51.77024846943095,52.14410024182871,51.42518698424101,51.76792942220345,52.24081551190466,51.918022136669606,52.570579217746854,53.19514850201085,52.295858493540436,51.77261153096333,52.34889189945534,52.31212365813553,51.65210913680494,52.644847301766276,52.239213971886784,51.835581586230546,51.33007410634309,50.52127019315958,51.51689004804939,51.63371763005853,50.66990484204143,50.01613908307627,50.19867653166875,51.07480479916558,51.10562649928033,50.85428021475673,50.93600025912747,51.44393233396113,51.439125121571124,50.94034972693771,50.42294908175245,51.1660003750585,51.91117473784834,51.539273660164326,50.85987419355661,51.16106846462935,50.79248256934807,51.60343434847891,51.80731828790158,51.8801741222851,52.124079565983266,51.75632867682725,51.32840131735429,51.138147588819265,50.268109899014235,49.493099715560675,50.36221377411857,50.14260613638908,51.02352359564975,50.04813043354079,49.40704130055383,48.93555129924789,48.4881019894965,47.8153424737975,47.86141195939854,47.77381462510675,46.96376675879583,46.571601474657655,46.843428182415664,47.72366299107671,46.93448667926714,47.25597901782021,48.12632912071422,48.462321280967444,48.06163696106523,47.69687718898058,46.70951709942892,45.731512746308,46.44468978047371,46.43235356500372,46.35331828473136,47.06178221292794,47.59309171093628,47.45123369153589,47.79290715651587,47.50544892065227,47.22798056108877,47.27302907779813,47.58549897419289,48.25629099318758,48.50253417622298,48.064744976814836,48.454361512325704,48.10478338832036,48.09190102946013,49.07698890194297,49.05560617754236,50.04191942512989,50.43574071349576,50.94287153612822,51.30946880765259,51.78573493240401,52.02711983118206,52.733025406487286,53.61815415835008,53.21910201385617,53.586702693253756,54.157721454277635,54.6189022064209,54.48010105499998,54.456467379350215,55.21223065583035,55.44645317457616,55.10885547939688,56.10523973219097,55.63109937682748,55.13555007614195,55.66148006403819,55.75439888611436,56.10339067829773,56.385871324688196,56.16213531047106,56.97478570789099,57.03466858714819,57.29802759224549,57.85731538478285,57.42419594107196,58.076381826307625,58.14295536465943,58.7437102436088,58.49591398611665,58.580901036038995,58.427191922906786,58.45087459171191,59.111920919734985,58.68876821361482,57.76040311995894,57.998124379199,58.09727401472628,57.511013217736036,57.46855152538046,56.894748996943235,56.18431062158197,55.25192678999156,54.50408992823213,55.423245016951114,55.444791263435036,54.83345421636477,55.58677546447143,55.746558452025056,55.63177581364289,55.51263713790104,55.3400746951811,55.47586696362123,54.99900056188926,54.09612587466836,54.11921650683507,54.37438548449427,54.28739158529788,54.173331363126636,54.35558388661593,54.37188385054469,54.18992010271177,54.264859376475215,55.16387531440705,55.28039989294484,55.65931537793949,55.41293985489756,55.84597663069144,56.39498753659427,57.04471645131707,57.1386065306142,58.11818995792419,58.55792315583676,59.28050741087645,58.76652021007612,58.705470327753574,58.624817919917405,58.50996292429045,58.73388923238963,58.3891085232608,58.54185677412897,57.67020849324763,56.79302144609392,56.05021300539374,55.10825952515006,55.44126843009144,55.50062262872234,56.49772017868236,56.57827002601698,56.96858695521951,57.461099475156516,57.42648229841143,58.10937306005508,58.478783645201474,58.0050607775338,58.35163797670975,58.59711400233209,58.92482751002535,58.188102753367275,58.85016875481233,59.21582691883668,58.96364149963483,58.415444751270115,59.375328906811774,59.25930127268657,59.02577382652089,58.19936218298972,59.171830371022224,58.49306079559028,57.969017572235316,58.05924382060766,57.8247932260856,58.52817616518587,58.847375829704106,57.98448295425624,58.50822828290984,59.05296345660463,58.54209603462368,57.733793541789055,57.35503405705094,56.59594484884292,56.04100035317242,55.106841107364744,55.56267547700554,55.10313385538757,55.69795421510935,55.70756732998416,56.411724333651364,56.34273517411202,56.66773106344044,56.251963426359,55.82109816465527,55.96030228771269,55.62114053638652,56.24066515779123,55.64937644870952,55.30782415252179,54.5613923012279,55.44653985835612,55.74798735231161,55.08911272883415,55.02569995308295,55.46863194508478,55.86804576031864,55.34994425345212,55.282589374575764,55.293252111878246,55.04323055641726,55.76268458459526,56.61082775797695,56.56152825476602,56.31740534538403,55.78083874192089,56.12586812116206,56.96221461426467,56.348414190579206,56.14574890444055,55.431192621123046,55.90422710031271,55.27030191151425,54.734932569321245,54.41776703950018,54.46006790501997,55.16638526506722,55.767600463703275,55.45399535400793,56.44955408619717,56.48285446083173,57.29357618512586,56.95521055581048,56.92514895135537,56.66792080318555,56.253299470990896,56.85337216919288,57.351217040326446,57.617288555484265,57.08576927147806,57.23457212233916,58.00367133645341,58.119352621492,58.737256896682084,59.09660021495074,58.474074109923095,58.25211359979585,58.4025891860947,57.64135244209319,58.54466280248016,58.628712916746736,58.20942750759423,58.876309937331825,58.07252386352047,58.39867885503918,58.03028639126569,58.547551416791975,59.47856466239318,58.785449324175715,58.413204356562346,57.81805542204529,58.11379169346765,58.6775009483099,58.85235928511247,59.45071591017768,58.83201266312972,58.50589313637465,59.490338375326246,59.2302215336822,59.95471818977967,59.93247564416379,59.74174080276862,60.23227482801303,61.16511139087379,60.90400686627254,60.53333114180714,60.752621959894896,61.58580408105627,62.18038574885577,63.00358855025843,62.35380123415962,63.091789204627275,63.476466798689216,64.29088268103078,64.05367408832535,63.16488630045205,62.968685479369015,63.32947336649522,62.59764435375109,61.85746298590675,62.77853786898777,62.69100466184318,63.59982344089076,62.80479477671906,63.50712730316445,63.567367414943874,64.46238710265607,65.38655147701502,65.98194980900735,66.52767864894122,65.88354917801917,65.77626612829044,66.64776546088979,65.76803530938923,65.83623782265931,65.10883010504767,65.40098434407264,65.92237375536934,64.9643390411511,64.54626391455531,64.086025392171,64.84095065621659,65.22275118902326,64.91221067355946,64.95459054177627,64.97119628963992,65.78107237210497,65.15071964915842,65.36109735863283,64.5478156292811,64.71831552730873,64.20284417830408,63.82973072864115,63.116768090520054,63.54918247135356,63.28517082473263,63.34502768982202,63.018368827644736,63.55165114812553,63.48991199256852,64.05617249337956,64.46118491468951,64.13425413938239,65.01574259717017,65.04090580763295,65.54881326062605,66.35561081022024,66.58560556918383,67.18978463532403,67.5935182645917,68.4844073895365,69.06859731348231,69.280027161818,69.15294307470322,70.00887816306204,70.3415941898711,70.82969405502081,70.23500963719562,69.97388225933537,69.30228485679254,70.20571912033483,69.89456884609535,69.1849207598716,69.96044860361144,70.77987449010834,71.03390396712348,70.09379484457895,70.00459095463157,69.97379896510392,69.21344312513247,69.83750658109784,70.7481240495108,70.5051862867549,71.01076453691348,70.24155073659495,70.94370133895427,71.42810089373961,70.60755633097142,70.4221430523321,70.30257132509723,70.26567992381752,69.57319619925693,70.48874437715858,71.45506483223289,71.15514478785917,70.57478316221386,69.76560356281698,70.33184043550864,69.6141917812638,69.28201118018478,69.76898901816458,68.77367724198848,68.10209088725969,67.86826084041968,67.52186438348144,66.63885867642239,67.10966726206243,66.1475227479823,65.26212817942724,64.71760282153264,63.925898337736726,64.02897522225976,64.50871312152594,64.51752403285354,64.47161145182326,64.8750211740844,64.118153818883,63.29978828318417,63.29613751266152,62.93874385487288,63.44310959754512,64.2119906465523,65.075406038668,64.71729103755206,63.96054931078106,64.03222069842741,64.51919996878132,64.69162572640926,64.05026634642854,64.73363030841574,64.400122506544,63.617711214348674,62.911255112849176,63.849011367186904,64.21340858750045,63.87196327326819,63.18034113338217,63.713757704012096,64.37739892629907,65.29827203182504,66.02901822235435,65.29734115162864,64.39147997787222,63.56789164431393,64.17318182811141,65.11326977517456,65.77357068518177,64.7985878624022,64.90163950668648,65.86580768134445,65.5038841906935,65.35867989668623,64.91555516328663,65.91332970187068,64.94725726498291,64.43923243321478,64.58930495474488,65.23698356561363,65.91033250140026,65.85194377973676,66.49255112838,67.36515637720004,67.57651258725673,66.81229751650244,67.72314099036157,68.71127870632336,68.81990353623405,69.26347092911601,68.65661578578874,67.78118565864861,66.84667149325833,67.19316320959479,67.97384766256437,67.84612761205062,67.8831223770976,67.06595354387537,67.29750636732206,67.53770774463192,66.7766980738379,67.36558158323169,67.68235378991812,67.53473688988015,68.02492514997721,68.69014589628205,68.0616568219848,67.33540405938402,66.99813577067107,66.9677277370356,67.55820200545713,68.40926678152755,68.48231291491538,69.31793458200991,70.07054497813806,69.8484679791145,69.771677010227,70.20106833660975,70.08294429350644,70.59708851575851,70.26639590691775,69.44559511449188,68.85940796881914,69.32349140755832,68.34715369017795,67.99432972073555,68.51638070028275,69.18015703186393,70.17457815399393,70.50575106497854,70.15367771871388,69.15470939688385,69.53270569769666,69.45023416634649,70.0223042438738,69.54334378056228,68.83058436680585,68.07289622258395,68.26453345594928,68.91470638196915,68.49676567083225,68.76969032268971,68.1722436081618,68.01251097070053,68.5296480730176,68.27179321972653,69.20395272132009,68.43673740699887,67.94012072775513,67.33144079521298,66.43813358573243,66.33622795902193,67.15685457130894,66.86532550957054,66.57371867122129,65.82374552637339,65.9518754761666,65.8983248649165,65.34799947030842,65.83945599617437,66.72405659314245,67.19740830827504,67.46706005418673,66.60031524393708,67.38536749687046,68.28339427988976,67.87179909599945,67.09222280886024,66.87762567494065,66.84728821879253,67.68053099000826,67.39801912009716,67.4486189247109,68.28487748699263,67.49153242306784,68.15297918673605,68.8614362757653,69.72104273689911,69.6312732459046,69.15150733757764,69.17872194526717,68.30164039926603,68.36309037636966,68.53709199139848,68.21180250868201,68.63401392986998,69.14324742835015,69.66153158107772,68.85349780134857,68.10828470205888,68.54489450156689,68.27200019499287,68.08130783354864,67.34660686878487,66.99097595456988,67.58043818268925,66.70215184008703,65.94356218352914,66.58277586661279,67.48851187713444,68.09600701881573,68.10527067678049,67.84387967037037,67.52435501059517,67.16259642038494,67.97393403807655,68.51726600434631,68.9462302713655,68.48723463574424,67.605039591901,68.25078062154353,68.9059993349947,69.87366491183639,70.78133097290993,70.7542526749894,70.64256400242448,70.63279535295442,70.78068128088489,70.90525246690959,70.36980310408399,69.61584496824071,69.6042615454644,69.42551186215132,69.66254220530391,69.47692433465272,70.23415161529556,69.70359406387433,69.9455859400332,69.07387872692198,69.6113074705936,69.83047066023573,69.59450619574636,69.5000050351955,70.41032833466306,70.43609899608418,70.5737969353795,71.4703337433748,72.26605347590521,71.44467054493725,71.43087476398796,70.98127644974738,71.32616309868172,71.73623683862388,72.22171637229621,72.3729852004908,72.75204173382372,73.49067643098533,73.24705004226416,74.03969589713961,73.26110062375665,72.67009533848614,73.25870778504759,72.56200519530103,73.18371182167903,73.28791754553095,72.32869920320809,72.10546415066347,71.90305810328573,72.34924431471154,72.938377504237,72.92041859449819,73.46966575132683,73.6283221328631,74.20568577665836,74.17545483913273,74.30837822752073,74.08415393810719,73.2678883667104,72.52365042828023,73.49943942343816,73.69220559066162,72.92012097779661,72.4064421360381,71.79285715380684,72.35937518347055,73.19025150733069,73.43526864470914,73.49833256052807,73.60398452356458,74.40508130611852,73.79488925542682,73.78143457043916,73.10001134965569,72.4775708229281,72.04709250293672,72.05079411761835,72.26548464503139,72.88289104681462,72.08426705049351,72.20713604753837,72.10770941944793,72.35091691091657,72.07091418700293,71.45750038372353,71.14406322827563,71.45529848849401,71.31550838798285,70.35990442195907,69.82983673317358,70.6636968725361,69.80254040658474,70.22792118694633,70.60635964060202,71.36897988198325,71.00773977860808,71.58894155407324,72.53538655722514,73.14344725757837,72.69539009174332,71.89250568998978,71.00812101969495,71.43686364358291,71.99224632838741,71.70694130659103,71.88967444188893,71.51595286699012,71.30094623658806,71.57982613937929,71.95785856386647,72.47719144262373,72.40003082714975,72.87959837773815,73.26695645647123,72.52155260974541,73.38219187455252,72.55691300751641,73.41408398328349,72.52045058086514,72.52610649121925,72.8082686662674,73.62761455215514,73.56771461339667,73.30376317119226,74.16411403566599,73.80961945420131,74.20615513902158,73.27716471906751,72.49263368966058,73.44904578942806,72.62167719192803,73.56141896685585,73.18095805495977,73.07347491988912,72.41697986423969,73.07440233184025,73.26774567971006,72.98913692124188,73.76669962052256,74.5625986205414,73.91020679613575,73.48644061712548,72.73483407730237,72.18779199710116,71.96956815198064,71.12972541991621,71.48833326762542,71.44212721148506,72.13591129891574,71.24537500692531,70.65597685147077,71.48419982101768,72.01806363416836,72.04020798066631,71.20131703559309,72.07227748353034,72.59744133846834,73.35456874640658,73.33443135162815,73.13199686352164,73.38741265097633,73.6409524823539,73.5218883343041,72.6505178809166,73.13434174610302,73.24930080212653,73.67534209089354,73.66197547502816,74.46244448237121,73.65384410088882,73.59172671940178,74.0665991785936,74.47986816521734,74.51364510552958,75.28119868598878,75.87858040863648,76.67703324416652,76.65181462652981,77.54148726770654,77.93530039861798,78.36445061257109,77.836565438658,77.34856538660824,76.7866688449867,77.12830681353807,77.43540899641812,76.67790968343616,77.3309016553685,77.97386683896184,77.16964862355962,76.35246844729409,76.38366121985018,76.20042447047308,75.38207788905129,76.21809903951362,76.61233803257346,76.75080380076542,76.59751960402355,76.31281754001975,76.84424153110012,77.18896505236626,77.96389725338668,77.32139209285378,77.26781683648005,76.30029147537425,76.87073138309643,76.70369110163301,76.45826708897948,75.64804562972859,76.02313461201265,75.51685615349561,76.43444580724463,75.47227095672861,74.90755807654932,75.49330455996096,74.60384499281645,75.1244885250926,74.30511265154928,74.5776075120084,74.34952247422189,74.11122141359374,74.86679563997313,74.2416745503433,73.62552286451682,74.23469466716051,74.49017009325325,74.64488912886009,75.1941586388275,76.01488667773083,75.90550538012758,75.96077705034986,75.31322884839028,76.02947151148692,76.98226023232564,77.89367735758424,78.66837579384446,79.0017374404706,79.87554436502978,79.12362772459164,79.87076880875975,80.32446405338123,79.50088451104239,80.0627136300318,81.02267260896042,81.8567675370723,82.22783102141693,81.8216811446473,81.09906569309533,80.52584930416197,80.68371432647109,81.17345510516316,80.28881463827565,80.23254163889214,79.40308240009472,80.00015557324514,79.08859201241285,79.9999490911141,79.75052352529019,79.2339857541956,78.54553352156654,79.15595375932753,78.98128629149869,78.8605312909931,78.00853911694139,77.67739396123216,77.19525607023388,77.19560329755768,76.5045146793127,75.67976891808212,76.02606654912233,75.10122491233051,74.49379667779431,73.60411713086069,74.22932714084163,73.31219904357567,73.69581910129637,73.8829718385823,73.2112391362898,73.3299200409092,73.79367942549288,73.85050176270306,73.01611857349053,73.32767131924629,73.00554208410904,72.88470059540123,73.68567474093288,74.63624821882695,73.6855924972333,73.94952847156674,73.16540625784546,72.3027639365755,71.55493859760463,72.25586233986542,72.9310022466816,73.28001124272123,72.42757622106001,73.23390952497721,73.16767970193177,72.300326123368,72.14643602725118,72.94787156023085,72.52373908087611,72.97801153548062,72.393115401268,72.67593652289361,73.4393681618385,73.34782053623348,72.69026641640812,71.89638947229832,72.0644595110789,72.88211032608524,73.72736842930317,74.18848723731935,74.90753788687289,74.94907300407067,74.57896260125563,75.28294918453321,75.6380048012361,75.63026806991547,75.2429568041116,74.41367526585236,75.2447394975461,74.31814699294046,74.59214772330597,74.33319656457752,74.57421004911885,75.3077143584378,75.15758570889011,74.85870739119127,74.40225531160831,75.24808439332992,74.75850608106703,75.2987294876948,75.67564529366791,75.17447332805023,74.6819730559364,75.27894529420882,75.66889363853261,74.79289065208286,74.29223339864984,74.26447077794,74.32847916521132,74.41656652651727,74.05390494503081,74.63079940201715,75.44796699285507,74.78435824858025,73.95122712897137,74.1585321421735,73.88412981899455,73.09331130469218,73.26460415031761,74.1157206534408,73.28289144998416,72.91778323892504,73.23255103779957,73.14715529186651,73.53749840473756,74.42637086519971,74.02117342595011,74.88704653689638,75.33101113978773,75.39572022529319,74.39893039502203,75.13928395276889,75.69520961819217,75.05227873846889,75.0270319795236,74.11248091189191,74.38635299168527,75.09838573355228,76.0392879024148,76.9962286693044,77.36718041310087,77.5999141796492,77.61630836175755,77.90052510425448,78.37856348278001,77.95399980666116,78.10857748938724,77.88686195714399,77.14225274091586,76.52078579878435,76.72206927323714,76.95910187112167,76.91687859175727,76.20597112458199,75.46400541625917,74.63309497199953,74.13563404697925,74.66475635068491,74.75248099165037,74.51492927456275,74.91250645881519,75.68318801233545,76.17342795385048,75.60604345891625,75.3424457157962,74.37105123884976,73.66517052520066,74.61190232494846,74.02345802728087,74.85229845158756,75.40378234907985,74.88053546939045,74.968543977011,75.48816852318123,75.91667901491746,75.77457152260467,76.75521208718419,77.09594589285553,77.39872969221324,77.08727914420888,77.13741023791954,77.91079364111647,78.15709639852867,78.4110710574314,77.61454974347726,76.88485020166263,77.71999512985349,77.82382314652205,76.95876222662628,76.99101842241362,77.02992184320465,77.94863562704995,77.62046435847878,78.36254650261253,78.38661588169634,79.0054649268277,78.85188743006438,79.0896355509758,78.98013110784814,78.35049535613507,77.52853100933135,77.84596782922745,78.04441816592589,78.92676526075229,78.74938352545723,78.04312071856111,77.1988508165814,77.66687883296981,77.56787174195051,78.23833783529699,78.36075033387169,78.2280969559215,77.87729410547763,77.60116816638038,78.57140396023169,79.33933040685952,80.2072844421491,79.50869605783373,78.61454173456877,79.33161164168268,79.0573523263447,78.71044035861269,77.93215677514672,77.70464639179409,77.30663021514192,77.36752843065187,77.72900338098407,77.66829263232648,78.2034788299352,78.01707974728197,77.81206266395748,78.52217735163867,77.86879836535081,77.87210466247052,77.04000747250393,76.62154703121632,76.63807225367054,76.10239034052938,76.35071492148563,76.26681772340089,76.84585470100865,76.02752989763394,76.07357864454389,76.04007795546204,76.3001100551337,76.01492287451401,76.42911539413035,77.02072117570788,76.36385612003505,75.95395128522068,75.09729202697054,75.43573171366006,75.55458738282323,75.23318947292864,75.36818994721398,76.33358623320237,75.47565004276112,74.58823264483362,74.70605438016355,74.34283016482368,73.99860368249938,73.6680516935885,74.06408918183297,73.69977130182087,73.23483299091458,72.85949409240857,72.26851769909263,71.55924867745489,72.48459494300187,72.63249553088099,72.02678293455392,72.79735827399418,73.09303716849536,72.19004080211744,72.35887936735526,72.9092044015415,72.70104988384992,72.36959670204669,72.59965854836628,72.39401055313647,72.1222746935673,71.5080838915892,70.95405828766525,70.7492999015376,70.61331834318116,70.48858299525455,69.82826501969248,69.06381808593869,68.763155604247,68.11865541897714,67.5836983146146,66.79932966735214,66.98384205345064,66.66064776200801,66.43430825741962,66.57864403119311,66.78499798523262,67.55375766195357,67.81828141026199,67.90922305779532,68.20016050990671,67.79069215618074,67.06819675117731,67.39972339058295,67.18823140347376,67.10892581194639,66.32371148793027,67.03975298348814,67.92935486743227,66.94661906128749,66.13642957666889,67.08973287651315,67.24331469181925,67.069859797135,67.23784736916423,67.17088189627975,67.14102980587631,66.99289420852438,67.07759781228378,67.58104483457282,67.61700851423666,67.51535100862384,66.99282099539414,66.04982378566638,65.64933449635282,66.18794514331967,67.08098543435335,67.69813680741936,68.6315761692822,69.21187265729532,69.54408456105739,70.26953603560105,69.64073964441195,69.32657164428383,69.60111633781344,68.82217529136688,69.12093076342717,68.73574762651697,69.44376770826057,69.6632533641532,70.29235318489373,70.39789975108579,70.24273734120652,70.64278885629028,70.96607234422117,71.94749439973384,72.37570981541649,73.02953123813495,72.9800289971754,71.98492298088968,72.33099962025881,72.27850672835484,71.67926665907726,70.86510711535811,71.74708949355409,72.39145835861564,71.77408659923822,70.8214489435777,70.02547107962891,70.5305676269345,71.31153837405145,70.81185344839469,71.25034344336018,70.40532092144713,69.98999647656456,70.53436440089718,69.64738917676732,69.59549897490069,70.46390402968973,70.43212152877823,69.73819043813273,69.09583651740104,68.59464203566313,69.23688960587606,68.29926646267995,67.44324496854097,67.6178543092683,67.9712744737044,67.38125405833125,67.49469122802839,68.20543381245807,67.73980739666149,68.64202017011121,67.82697765016928,68.42582293972373,68.45981459040195,67.5995709663257,66.86817048070952,66.38707289425656,67.2889193398878,66.37250422406942,66.44487316720188,67.26601965306327,67.49114595586434,68.345831010025,68.73145889956504,69.71867077611387,69.34888395434245,69.82938130944967,70.36289999634027,70.77675792388618,71.00629263184965,71.63991249818355,71.7519028247334,70.89056561654434,71.74931077286601,71.1804631263949,71.18640779005364,71.18707412388176,70.39944371581078,70.43046666961163,69.7385384500958,69.86397700151429,70.322780683171,69.41872350173071,70.29722167598084,70.3788935681805,70.70901497732848,71.56891077989712,71.59070236887783,72.35370993521065,71.8554375465028,72.56173913367093,72.76725251227617,71.81387424143031,71.0556295318529,70.49533010460436,70.66313154948875,70.59027341613546,71.4820631085895,71.49948034854606,70.82787536457181,70.90656201867387,71.12256412720308,71.79306995961815,71.27018650900573,71.19839187059551,71.40102166635916,70.79540043417364,70.90104585979134,71.17904588859528,71.9956207065843,72.80108633404598,73.03768097888678,72.53249332495034,71.70919221825898,71.15231864852831,70.75377827556804,70.13198671769351,69.75448366673663,69.9233706719242,70.46268181689084,70.23541039833799,70.36185042606667,69.80570926330984,69.85929107340053,69.36564459931105,69.98271129606292,69.65259404527023,70.50271327607334,70.57388806901872,70.83659868035465,70.92826387425885,70.52820651326329,70.98605208983645,71.39006190793589,71.48402971960604,70.6942836213857,70.94621945358813,70.04838574212044,69.52482345327735,69.27614113828167,69.72129577817395,69.68938237661496,70.3411736143753,70.70667880214751,71.1519907489419,71.62012907397002,72.4280338268727,72.15372204827145,71.71880575548857,72.18303979653865,71.74742527399212,70.90865680854768,71.03593092784286,71.88252238556743,72.41141222510487,71.41631835279986,72.1709886053577,71.54173416318372,71.33772285236046,70.77140947571024,71.22413352364674,72.21648198040202,72.17648922232911,71.93173260381445,71.3719553006813,71.67480736691505,70.86809222120792,71.10026826150715,71.23526718420908,71.26812729611993,70.32935734093189,69.38212819956243,69.33978371648118,69.16843943390995,69.44623744301498,70.34570202929899,70.1580301206559,70.55216521164402,71.01459412323311,71.8860118733719,71.0484781539999,71.20025164447725,71.64545559324324,72.58165508275852,73.444776406046,74.20510354824364,74.20402217190713,73.61329951696098,73.39010622818023,72.7845776011236,72.04923186497763,72.53169936826453,72.08600584277883,71.11597065255046,72.08071479434147,71.15509856538847,71.77261964045465,72.13173393020406,72.30848502740264,73.18428692454472,72.23897827463225,71.92818138655275,71.38561869086698,71.1046714647673,71.61008698493242,70.68661191873252,70.4652510411106,71.24627060443163,71.2035857765004,71.50334150949493,70.86636032396927,70.34773667063564,70.52540460741147,69.76099646696821,69.11761489929631,69.2056585517712,69.67910304665565,70.04774985928088,70.84030426992103,71.63874866766855,71.03551819734275,71.370977090206,71.47434932552278,70.7002300391905,70.570622861851,70.11088097281754,70.89633892429993,71.64494529273361,70.84634650545195,69.88890801742673,69.4839908205904,70.21319284429774,69.39388534100726,69.24520457489416,68.25452211638913,67.48285524081439,68.35129056265578,68.98295561270788,67.98616482177749,67.03110440261662,67.49784134374931,66.85733179515228,65.93996919225901,65.3465442545712,66.10715368622914,66.60305180307478,66.66515683475882,65.82660619961098,66.29422149900347,65.69780010404065,66.30831938795745,65.95552582712844,65.73225475661457,66.39955592760816,66.4897142839618,66.22977228136733,65.46683195745572,65.57916789874434,64.79707487672567,65.42948292335495,65.24523225845769,64.6697381879203,64.37154812458903,63.76193613791838,63.24660495528951,63.493350331671536,63.186003346927464,63.05023760162294,62.9091168101877,63.10489253280684,63.86853396566585,63.18080781865865,63.03351846244186,63.20647980645299,63.1173370028846,62.39984939619899,62.209248716942966,61.42165951943025,60.90831034304574,60.645103815943,59.875212324317545,59.8207184439525,59.68142657261342,59.651780150830746,60.166998403612524,60.66958815744147,59.71656068507582,59.62740748282522,59.636830255389214,60.09634581208229,60.7208067891188,61.299839596264064,60.59755355352536,60.58702246611938,60.315166231710464,61.09284559357911,61.692997698672116,61.28742437064648,61.635954030789435,60.79301397828385,60.71551482239738,60.28259482746944,61.180629192851484,60.584668857976794,60.323499449528754,59.67357736034319,59.62111650919542,58.80726066650823,59.20492051541805,58.28766253916547,57.57159636961296,58.3103182609193,59.29133792920038,59.039386733435094,59.06777047738433,58.758458502124995,58.19784709531814,58.59082708321512,59.36099623236805,59.5726872542873,59.70250322017819,59.531408238224685,59.09728092420846,58.67534004477784,57.789066382683814,58.562607921659946,58.07503732247278,58.473166529554874,57.66477411938831,58.17007830366492,58.19219404272735,58.35283196717501,58.03653073171154,57.88272467488423,58.47801673412323,58.46422332338989,59.067653271369636,59.31353675806895,60.14342152373865,60.5595342121087,59.7584329592064,60.266405599191785,59.979480269830674,59.81665596552193,59.06676995754242,59.63421589508653,59.63778048288077,59.51128662517294,59.283303525764495,59.645707671530545,60.48339128494263,60.99132738588378,61.15636701975018,62.03693792782724,61.93618592713028,61.53634240059182,62.07602936774492,61.175439414102584,62.077410572208464,61.28882961347699,61.11811663908884,61.08851501066238,61.10768366744742,61.884805731941015,62.472803010605276,63.35942527325824,62.604141833260655,62.768503583502024,61.778164284769446,62.005722153466195,62.818144496995956,63.42007274320349,63.40915766404942,63.259759802836925,62.539962511043996,61.858844177331775,62.6987384846434,62.79160800948739,62.761827734299004,63.75059822155163,63.957125352695584,64.77547788573429,64.54221044899896,64.79651059163734,64.32300601573661,64.16326708626002,64.3869672100991,64.74370283586904,64.57295290660113,64.74795152246952,65.64881980977952,65.35474204504862,65.2416795855388,65.27834273688495,65.25616955105215,65.83406800124794,66.81501768296584,67.80216387566179,68.50994202820584,69.2515137991868,69.21027496410534,70.14487056713551,70.22697362489998,70.2410841844976,69.92368590179831,69.67814097646624,69.120281977579,68.45878550456837,68.26474429666996,67.86386485816911,67.42636699229479,66.81521995691583,67.49063719902188,67.68604278145358,67.78969853743911,68.47405598452315,67.59542837785557,67.9078615391627,67.02654580259696,66.57072795415297,66.59083574498072,67.53320546075702,67.08107662992552,66.50894819339737,67.22937816986814,66.9094591094181,66.88799873972312,66.05978771159425,66.37140302266926,65.46013038372621,66.05480782408267,65.89175012381747,66.58386671589687,65.64629434980452,64.92708604084328,64.50850961636752,65.260747641325,64.66801348002627,63.83737525064498,64.23228802578524,63.38592669600621,62.54813501890749,62.199948449619114,63.1525368350558,62.623687230050564,61.74489550665021,61.83595173899084,62.23792791040614,62.96941384207457,62.580011600628495,62.34319518506527,62.20295702293515,61.92877272469923,61.96284510847181,62.89071191987023,62.29879000317305,62.82141685858369,62.457076757680625,63.223411495331675,63.32489350112155,63.63704658066854,63.64675840269774,63.588644589763135,63.249868196900934,62.85695938067511,61.91874652309343,61.36950469110161,61.32208914961666,61.03901601815596,60.67642709100619,61.52944947453216,62.09184989333153,62.971705730538815,63.071916334331036,62.812695217784494,62.9544337624684,63.884337925352156,63.345485982485116,63.50438811117783,63.83037240663543,64.57549764029682,63.81324465246871,64.08184514706954,64.98793041706085,65.39989610761404,64.9276783913374,64.28661966882646,63.998375601135194,63.584044992458075,64.32235842430964,63.83895869227126,64.7894386863336,64.6756766247563,63.858920126687735,63.972486266866326,63.261590579524636,63.98957473412156,63.881887891795486,63.983889307361096,64.69849283248186,65.68676401115954,65.23808820266277,65.94663151074201,66.18417958030477,65.7769660456106,65.75945711228997,66.30413537332788,66.65182533860207,66.62770788557827,67.12981636961922,66.42771525820717,65.65482450835407,64.66424287110567,64.00520190643147,63.519506690558046,63.10721771046519,63.5710226977244,63.921995657961816,64.47518276097253,63.508207586128265,63.45023507298902,64.18421525228769,63.383527245838195,63.4153944295831,63.425253028515726,63.378301626071334,62.466276969760656,62.28539168043062,61.77640875475481,61.6046586362645,62.02920182002708,62.34361649584025,62.768201880622655,63.206872136332095,62.992259867955,63.770941820926964,63.24645319348201,63.865236225072294,63.19276082981378,63.1729310718365,62.173409631010145,61.66435465682298,61.89863712526858,61.88033574214205,61.83492314303294,62.44826187053695,62.19003326911479,62.047723644413054,62.11172700719908,62.75880065001547,61.99158721510321,62.87863647798076,63.84329268429428,63.95977631630376,64.55065064225346,64.42860695673153,63.73265228187665,64.6317460522987,63.9899157686159,64.46322696469724,65.04980058409274,64.68267630459741,65.26485287444666,65.45555458730087,66.37613736651838,66.32657541008666,66.12676097685471,66.58308990672231,67.10702247591689,67.66902028955519,68.6406874586828,68.05412201862782,68.9322102512233,68.3520831624046,69.28158241184428,68.95404644031078,68.97605439089239,69.68752685328946,69.49705975269899,70.43821821454912,70.64563457807526,71.6325246533379,71.63740997808054,71.75021517137066,70.99698287295178,70.19116711849347,69.32583091640845,69.7114510354586,68.7330014994368,69.22371042333543,69.47763926628977,69.11944584036246,69.99384737852961,70.048887190409,69.23196839401498,68.98284850036725,68.97718885075301,68.31476180395111,67.80610857252032,68.4235107395798,68.4356973497197,69.2655000728555,69.89235839433968,70.19598613120615,69.93521185498685,70.57462854729965,70.16117394855246,69.64065958047286,68.90713553130627,68.11371429031715,67.43855786882341,68.31899507762864,68.62719736155123,68.27982282126322,67.87425686744973,68.67695200908929,69.14994622347876,68.70785196358338,69.1798367286101,69.25888492818922,68.51992838270962,67.80411369726062,67.06989101460204,67.09623786667362,67.06448196386918,67.37463953904808,66.59295163536444,67.18196301301941,66.31724574184045,65.3905761828646,65.24404756585136,65.66426572622731,66.18684694450349,66.84292606730014,67.68861052952707,67.7515998124145,68.06907025864348,67.30515827797353,67.77069867122918,67.52599253412336,67.00042028259486,67.05878647370264,67.95058078225702,67.06316357338801,66.282417985145,66.61967415176332,66.41124259727076,65.75142712891102,66.73651462653652,65.85843562707305,65.98439453961328,66.33659671992064,67.12831863528118,67.0566670410335,66.45309375459328,66.89445532811806,66.07469950756058,65.08584145177156,64.49889447772875,64.1710212007165,64.73769670864567,64.510023673065,64.36322650220245,64.23298587696627,64.03971734736115,64.80745813064277,64.39572434918955,64.86358458735049,65.44448135234416,65.5367310824804,65.31106532551348,65.29003212507814,65.02467678301036,65.97813733574003,65.50834787776694,65.13423120835796,65.20744759915397,65.39765745867044,65.59728095680475,65.69073074636981,65.60734291700646,66.36426025396213,65.72323655616492,65.12258121185005,65.22068230109289,66.04133163951337,66.86112258862704,66.48469231417403,66.29592326283455,66.06789635727182,67.01359781669453,67.35620694141835,67.85984154371545,67.73306130804121,68.04827158153057,68.08686215104535,68.20504554640502,67.45186437247321,66.69333695666865,66.22176935570315,66.45298138959333,66.58391983713955,66.44452912081033,66.66210994357243,66.00151481106877,66.6218109484762,66.21782461507246,66.63541433680803,66.6941554043442,65.73695791978389,64.93521159840748,64.70352815277874,63.80350790033117,63.87070590443909,63.559267811942846,63.47217303747311,63.2961561139673,63.85567958652973,64.51911075552925,64.20733100827783,64.95972764445469,64.02712838957086,64.2877673972398,64.89324152236804,65.11753334663808,65.73766194703057,64.91518213786185,64.20053036184981,63.35259622661397,63.25994550064206,63.248799964319915,64.18844831129536,63.46556088887155,63.06418840447441,63.02654844196513,63.75184894260019,63.3580384622328,62.927158136852086,62.36403939081356,62.14730079378933,62.2595902485773,62.94139454187825,62.40498503437266,62.9123805668205,63.54491870990023,63.22045098524541,63.216990468557924,63.85571505408734,63.63079165201634,64.49350202642381,63.95349787408486,64.0074480380863,63.791408829391,62.84165239473805,62.25800398690626,62.88644532067701,62.91019805148244,63.79405201971531,63.63010971713811,63.10459688631818,63.16820482863113,62.38733242824674,61.97120816260576,62.33750368794426,61.66770949680358,61.27931085601449,60.836503884289414,60.4447504747659,59.53354448918253,59.636539610568434,60.362735856324434,59.782081411685795,58.84207688458264,58.83124914765358,58.62208879599348,57.74801671644673,58.21992382360622,57.650077008176595,57.666242737323046,56.99649291532114,57.22807400627062,57.87565692700446,58.03431818727404,58.60786930611357,58.125704899430275,58.5912034874782,58.91236612852663,58.48157145129517,58.530027706641704,58.88172915671021,57.89777875458822,58.23524466250092,57.37335233017802,58.05422033695504,58.03054267494008,58.08693664288148,58.4667958044447,58.83234147587791,57.96708955196664,58.566486021038145,58.3191132536158,58.30685087479651,58.20441886316985,58.11722985655069,58.41694651963189,59.043540528509766,58.184139539022,57.52849721349776,57.78902046987787,57.57069738768041,58.31765054631978,57.4152536643669,57.26810498861596,57.707332632504404,58.699183826334774,59.47437022579834,59.1112532611005,58.93179402593523,59.5142386155203,58.81790247140452,59.65735210990533,59.72983279032633,59.26544249569997,58.65112495934591,58.757630628068,58.47902785753831,58.59384908992797,58.38844131119549,58.807842060457915,58.38333068462089,58.919567146804184,59.29092840710655,59.40839360747486,59.419353782664984,59.630742031149566,60.402170680463314,61.24356298195198,62.14806216303259,62.49301077192649,62.18243337189779,61.63755845744163,60.80775255383924,60.37289366219193,60.98483328940347,61.12347635766491,60.88202446838841,60.5553149827756,59.87032919190824,60.023383462801576,60.16919344011694,60.1512973071076,59.437943905591965,59.00821278337389,58.32079293951392,58.12263394752517,58.73281424213201,57.84271982125938,57.39514749124646,56.473616756498814,57.282044482883066,56.642486123368144,56.67177191656083,57.060406832490116,57.56597600830719,56.63197904359549,57.334700194653124,58.08549434877932,58.336820871103555,57.52982590999454,58.25941171636805,59.08557972917333,59.13725263020024,58.15594815136865,58.486558214295655,58.60040041478351,59.5846149912104,59.767653272952884,60.086119605693966,60.49175789579749,59.58678681124002,59.59907846478745,59.017027107067406,59.69760525645688,60.67151577817276,59.870771986898035,59.9591281786561,59.425215317402035,60.30178021499887,60.410317635163665,59.495470449794084,60.48967473534867,61.24613809026778,60.58021372370422,61.30063564050943,61.166289592627436,60.69621904287487,61.14532021526247,61.24978957977146,60.96257208380848,60.29725085105747,61.12540451157838,61.59944467386231,62.293999668676406,61.29743210133165,61.569777129683644,61.79784616548568,60.88939535431564,60.68842090386897,61.02663969853893,62.02568282512948,61.818943889345974,62.165864668786526,61.474152030888945,61.99229902541265,61.292382976040244,61.83911570487544,61.39890105975792,60.819480303209275,61.55168603407219,61.96282858448103,61.66851997282356,62.29160392843187,62.20686862664297,62.745010893791914,63.59022309072316,63.85258638719097,63.58561761351302,64.3728441898711,63.645191077608615,63.50387312145904,63.52121342299506,62.62341997819021,63.56541530415416,63.41680932836607,63.98135420214385,64.10159190185368,65.00849032076076,64.1775489593856,64.67026471719146,65.59062881348655,66.42204290442169,66.38412742968649,65.8689294597134,66.13351318798959,65.55540780257434,64.6032637078315,65.48083146708086,64.86224167095497,64.12713709147647,64.49493715213612,64.5652605840005,63.982701369561255,63.62001825124025,62.93734415015206,63.39467140426859,64.22630052641034,63.48448733845726,62.62013161648065,63.48943200148642,63.18677881825715,63.498131453525275,63.537006170954555,64.09665591781959,64.23140055546537,64.90747536579147,65.40684298146516,65.61987979570404,65.1459192391485,64.4433768633753,63.850282116327435,62.853854381944984,63.83417235687375,64.10388631979004,64.761272712145,64.66144537786022,65.01321871718392,65.20107461465523,65.04703132947907,64.76218636380509,64.49932012660429,65.24295877013355,65.64299147808924,65.90888019977137,65.08185527380556,65.5072983787395,65.23038052394986,64.29923965735361,64.21992325922474,65.07531104283407,65.49023084715009,65.17583475681022,64.34873948944733,63.40723161259666,63.16360626462847,62.174374158494174,61.718488321173936,62.01756253000349,62.060328947380185,62.24134777067229,62.31685749068856,62.60143886972219,63.04232405824587,63.64759120764211,64.3167706746608,64.6462747012265,64.92840891284868,65.63536675041541,65.19211752014235,65.77198674995452,65.07821821980178,65.33411666192114,64.41086677694693,64.06193220429122,63.89542792830616,63.969956380315125,63.5482619041577,63.94781069178134,63.565777597017586,63.50362566579133,62.81667205924168,62.68386427452788,63.12109812628478,62.52241006679833,63.0368365063332,62.23920167190954,62.658949443139136,63.32027156278491,62.723772627767175,63.567310988437384,63.03941684262827,62.15995689248666,62.116578676737845,61.39828225038946,60.46402218565345,59.51413320982829,59.22401979146525,59.05464789131656,59.73537289304659,59.7835783790797,59.93172754580155,60.17490654112771,59.70910721970722,60.470987144857645,61.41416064184159,61.34000224247575,61.789943046402186,62.0042131440714,62.70946560893208,63.28568172780797,63.942073069512844,64.55333890812472,65.52440772112459,65.53094178345054,65.17296853335574,65.72581752948463,66.64360543619841,66.5436781682074,65.58815559186041,64.66526500834152,65.5444938451983,66.20916095934808,65.90372736286372,66.5667351805605,66.76436642557383,66.67822136497125,67.19963861862198,67.55810107802972,68.51600695587695,67.67058715038002,66.99930688831955,66.39937479002401,66.45797127112746,66.03334336495027,65.51126638194546,65.97894795751199,66.04272590810433,66.10058330046013,66.28025764971972,66.0742602897808,65.12388115329668,64.61413368955255,65.39672922901809,65.54609426809475,64.74826039886102,64.24562637601048,63.417479516007006,64.4128168928437,64.68963878555223,64.23711979202926,65.13568113837391,64.39998373482376,63.64825891889632,64.30415970692411,64.95838734135032,64.03581318352371,64.96221352461725,65.29655349161476,66.20761658623815,66.20852375077084,66.31461948528886,65.71687318291515,66.52821116056293,66.09454409684986,66.93592067342252,66.48493877938017,66.64288382139057,66.22521920641884,66.74034922895953,67.17596717365086,67.50037306779996,68.3190657440573,67.61561688687652,67.17993252724409,68.05809355573729,68.77148503484204,68.80476710898802,69.44198538130149,69.10715239588171,68.98092952929437,69.66811294760555,69.74603190692142,69.85082901455462,70.08088269131258,70.11914747068658,69.88412276469171,70.6817871099338,69.77947811270133,69.67327536130324,69.24976863665506,68.48743438720703,69.36773327179253,69.09141599573195,68.95974492374808,69.1492079324089,69.77792059676722,70.62190117780119,69.86916940426454,70.35474783135578,69.66644343454391,70.2080012653023,70.65837220707908,71.4059404199943,71.63660781644285,72.4365344713442,72.92097599245608,72.62906092125922,72.83309331629425,73.41049493849277,73.72963114501908,73.48333102371544,74.45528668398038,74.86557685956359,75.32196843391284,76.0842109369114,75.17094757826999,75.5477395709604,76.23669895622879,76.88878777809441,77.47725561633706,77.76336053339764,77.25428594695404,76.36731408117339,76.97742270911112,77.7521885195747,78.33485687198117,78.88329081982374,79.45235177548602,79.02999971294776,79.1612718142569,78.69622047711164,78.0791767667979,78.05815760279074,78.95918078906834,78.76236089644954,78.29070500051603,78.17259252863005,78.55227102525532,78.58495330065489,78.31546585494652,79.16492721484974,78.92924013128504,78.24738159636036,79.1701203128323,78.86768711172044,79.74207369890064,79.42938910005614,79.23729790607467,78.28824046812952,78.20009726379067,78.6216957140714,78.87665874464437,78.00198220694438,77.29277375945821,78.06693078717217,78.52514969278127,78.59356426727027,78.01898872619495,78.27852246677503,78.95093418611214,79.64095489634201,80.00560024054721,80.78540959628299,80.06168752908707,79.29292767494917,78.56960793863982,78.96722100395709,79.64641813095659,80.1330887330696,79.26323102926835,79.64693886274472,79.932916325517,80.33396552596241,80.62258004629984,79.66623785533011,80.45428534736857,80.09424716280773,79.22797760181129,80.0273133427836,79.92604001518339,78.94085680413991,79.171802141238,79.27541177347302,80.18664680002257,80.75874678278342,81.62354658264667,81.64881667355075,81.24193814955652,81.23822346981615,80.63117651734501,81.11141332797706,81.43988381978124,82.083190550562,82.15419272938743,81.96930764755234,81.50062870187685,81.88017948484048,82.12343468144536,81.67214011168107,81.11101209698245,80.81040882505476,79.89920233935118,80.37791402777657,80.93004378769547,81.57369048567489,82.05784082924947,81.10414743423462,80.16579267010093,79.22509105317295,79.5272749834694,79.91069125477225,79.05646191164851,78.54967660317197,77.87143905553967,77.71480928733945,77.44295934215188,76.4681375711225,76.26064730761573,77.25331271113828,78.20860926853493,77.97010972118005,77.84477595379576,78.55455394368619,78.1270562428981,77.81353245070204,78.04297339171171,78.67685465980321,78.31587330950424,77.62861632648855,77.80351903289557,77.10034350445494,77.26738460548222,77.20406809449196,76.62462808378041,76.897645464167,77.86022201832384,77.56874390505254,77.10892103472725,76.47764610452577,76.65859353262931,76.34852045308799,77.15878720022738,76.31975233973935,76.96487970929593,77.02857584692538,76.35908025829121,76.05585135286674,75.23933326639235,75.52865942660719,75.4084187191911,74.43279500538483,74.01992843486369,74.63492706092075,75.0729929660447,74.31457280693576,73.97765866294503,73.04992075590417,73.25331543013453,73.15130125265568,74.13374230405316,73.18645959394053,72.42075617751107,72.67875791853294,73.30087158642709,73.79935187101364,73.05414483230561,73.2690383400768,73.08362453384325,74.0344881368801,73.84349417034537,74.11235952749848,74.42707474716008,74.7823470281437,74.23641847306862,74.93250714475289,74.93193845264614,74.8845176557079,73.93244503391907,73.4267855011858,73.37203782284632,73.17854270292446,73.0749923507683,73.66192220943049,74.0776974237524,74.78105996921659,75.3680019499734,75.85825599497184,75.2347205709666,74.87143930885941,74.81269001495093,74.17029777448624,74.76941305678338,75.17560891248286,75.86147207580507,75.80986496526748,75.27516655717045,74.42487811017781,74.61099403584376,74.49463960714638,74.60507105663419,73.86371091101319,73.29463776526973,72.5738070816733,73.51229764986783,73.93823976209387,73.01451441459358,72.73449539532885,72.77480531856418,72.77271790802479,72.241211976856,72.59303139802068,72.17699871677905,72.62371134199202,72.81621833331883,72.83135921228677,73.76305634900928,72.87231653975323,73.5926700271666,72.61049133492634,72.80554441455752,72.51092184241861,71.67705195676535,71.6955403899774,71.89267264539376,72.58445667196065,72.24282713932917,72.86272807372734,73.4453740734607,73.48511258978397,72.94851907389238,73.80147756636143,74.34010800020769,75.09111507004127,75.08090277574956,75.85504718776792,75.79021430481225,76.57869280641899,77.17858293419704,78.08991657290608,77.65607924433425,78.24971082853153,77.35633414518088,77.63954189699143,78.38004390383139,77.66037588333711,77.79392327973619,78.3813290214166,78.49598344741389,78.68056256324053,78.49094008328393,78.56864412361756,79.03084631543607,78.79601936601102,77.87124378141016,77.93483964400366,77.63666529487818,77.29059454286471,77.6080936496146,77.43050282914191,77.51982263242826,77.0531101305969,77.56993361841887,78.26806624932215,78.12148073501885,78.22179367346689,77.85468562226743,77.73772082244977,78.26104204170406,78.36599797429517,78.21654484700412,78.05878000427037,77.42892736801878,78.09499138453975,77.92438371386379,77.67987191444263,77.21872874163091,78.19891597563401,77.98821031115949,78.72635187022388,79.20063162967563,78.98657669639215,79.43610917683691,80.30277396459132,80.96962508652359,80.87996743293479,80.81764557538554,81.77439988637343,81.2202339489013,81.77739162789658,81.55793165881187,80.63955202559009,81.44346406776458,82.10199719201773,82.88006501225755,83.81727808201686,83.5813078074716,82.93868442391977,83.61487339250743,83.55351134575903,83.06815303815529,82.47018679836765,82.17402007291093,82.42555884225294,82.54917899146676,82.87356378510594,82.46438609808683,83.15978049812838,82.26541471621022,82.17033725930378,81.99396104505286,82.11445568269119,82.57273165462539,82.76024384982884,83.71666164975613,84.69635151792318,84.07341824937612,84.77703415509313,85.6735819322057,85.59160754550248,85.10468408558518,85.91841449262574,86.20098916767165,86.86185312410817,86.17192347021773,86.51469302177429,86.19082790939137,85.5862760655582,85.06421631388366,85.17063718196005,85.44123059464619,84.9651063918136,84.53070695605129,84.35461501544341,85.22945846291259,85.78357368521392,85.39507445134223,85.10988131491467,85.64165227208287,85.58215375663713,84.84309651236981,83.97638007579371,84.85484940977767,84.33785572927445,84.71522119222209,85.04810978844762,84.2343810973689,83.3743016468361,84.35621850425377,85.22178469179198,85.26915766997263,84.40072363475338,84.16027370747179,84.9593122783117,84.62157450430095,85.2763632829301,85.24944989942014,84.50820714654401,85.02339728130028,85.89506945572793,86.77431699866429,86.79609942669049,86.56469793291762,87.51638764701784,88.14188372530043,88.18342407047749,88.51277033565566,87.65130521310493,87.84829207183793,88.77074873447418,88.66291920561343,89.06034117517993,89.0686356681399,88.77536958036944,88.7396809947677,89.04644815856591,88.7871567956172,88.93665114184842,88.51254004938528,89.00659862300381,89.2459073564969,90.1434756424278,90.18937733629718,90.3540073595941,90.03868912020698,90.42381036980078,90.1165494970046,90.83451150776818,90.87855202984065,91.50653524231166,92.07891333056614,92.10615205392241,91.40729357209057,91.25845802249387,91.65887316130102,92.457385847345,92.02612795401365,92.96362620545551,92.90109359379858,92.29400684032589,92.36976901069283,92.71445965627208,92.34015825437382,92.9043116630055,93.25211674068123,93.92387221287936,93.70437570195645,93.06770708737895,93.94982954580337,93.43818279914558,92.90470989048481,92.9912091223523,93.6674269689247,93.05616704002023,93.45553953247145,93.28624126827344,92.80642185267061,92.82987881358713,92.60581219056621,93.46522452170029,92.69182173348963,92.6364798983559,93.21897177351639,92.7137048188597,92.00798894837499,91.64094986021519,92.35082556819543,92.1375289503485,92.8568174643442,93.58400975400582,93.24009811040014,92.35190261015669,91.95738457236439,91.49393461178988,90.86852350924164,91.7001188620925,90.74314262997359,90.52022052975371,90.2322697895579,89.33433669013903,88.51740215532482,88.17582942824811,87.24488620785996,87.04904537042603,87.9541176953353,87.60580431902781,88.52629542024806,88.52421802934259,88.17437708564103,88.03750166995451,87.45739268139005,87.559200912714,87.7878745389171,87.48028335114941,87.42631344031543,87.33397691138089,86.49407805223018,85.6359946471639,86.35290532698855,85.8114635660313,85.60147538688034,85.62642843136564,85.70037978095934,85.91752002155408,85.60733146360144,86.42963228141889,87.3316187961027,87.21174061112106,87.56616434454918,87.35079427994788,87.13058085879311,87.99300809390843,88.33199080312625,88.22199005773291,87.52427010191604,87.70732570020482,87.4890609299764,88.39872213825583,88.13785390835255,89.01808391558006,88.49612445151433,89.27022056933492,89.66717814095318,88.68000105349347,88.70605871314183,88.8757088528946,89.48335785325617,88.6490695704706,89.4611204257235,89.58239811984822,89.39819215517491,90.09399665473029,90.81515965610743,91.60581088764593,92.01042141905054,91.96638165833429,92.47370726661757,92.95676664728671,92.62989439256489,92.75706753041595,93.27472654543817,93.59190180664882,94.43837729422376,94.64239630056545,94.69285834487528,93.98432023730129,94.07169939484447,93.4221422104165,93.34782228246331,92.82411674549803,92.40305847441778,92.09556806460023,92.46945065399632,92.05660753231496,91.87644512578845,91.01742957858369,91.08479933300987,91.25580182857811,91.29417574033141,91.82352547207847,92.59429374570027,92.1110941329971,91.19399180309847,90.504717675969,91.10986313736066,90.67973151849583,91.46870550699532,90.58706058003008,91.21093590604141,91.72824299382046,91.40109267551452,91.87051362218335,91.43896016664803,90.86655906960368,89.86931347008795,88.90974200330675,88.99191450932994,89.07567666424438,89.20948650874197,88.44501644745469,88.31328796129674,87.68441120162606,86.74734284821898,87.08665746916085,87.45615058625117,87.19556805863976,87.52275776397437,87.39799106027931,86.78716777311638,86.25477574812248,86.19886140804738,85.94561946298927,85.30583804566413,84.8596932911314,84.7438969030045,84.16217257967219,84.20026296935976,83.76544999051839,83.41824906505644,83.17001639818773,82.65505880955607,81.96903848834336,81.74705077940598,82.26445015706122,81.4242930021137,80.90796621702611,80.82188348751515,80.43573403498158,79.92065365519375,80.09790594037622,79.57493567746133,79.4026654753834,78.65172495180741,78.00742274569348,77.41611102595925,77.2831718060188,77.30365786515176,76.99482632055879,77.51391308754683,77.37550851842389,76.8630353435874,76.88008545013145,76.00310084782541,76.02106749499217,76.28799234470353,75.88041602727026,75.61550493119285,74.86736930673942,74.53017931478098,74.77380372071639,73.94476778572425,73.38460302026942,73.14249934395775,73.72784593794495,72.7670291014947,73.50553593272343,73.65390119934455,72.65420080255717,73.1805588635616,73.9993576221168,73.807303131558,74.15684522269294,75.08535026432946,75.77382277138531,76.36160042788833,76.36521674320102,75.5782372476533,75.42934286035597,74.52817228157073,75.5158810983412,75.60701454570517,75.88271597214043,75.57294481666759,75.71606112876907,76.19979219697416,76.65950221382082,76.9660350899212,76.77881585713476,77.3180675865151,76.64203680446371,76.11155207687989,76.48608483094722,76.68080064002424,77.14729902613908,77.8649979159236,78.7428936320357,78.94169701077044,79.45915960567072,80.35706507787108,80.57909161318094,81.37995346123353,81.52054267097265,80.63743830705062,80.40451264334843,79.94408268062398,79.86570200137794,79.0988984303549,78.90180078335106,78.6219163951464,77.91698914393783,77.21609559142962,76.48409341974184,75.83848218340427,76.47081279708073,76.30539954034612,75.88718677032739,75.64875976601616,74.72906326176599,73.79150635190308,73.21601505810395,72.36960111698136,71.60605718474835,70.67090117419139,71.02515800250694,71.4106531930156,70.52494794083759,69.74690379668027,68.74722861032933,68.76718830596656,68.91764821624383,68.46411121310666,68.03050418617204,68.19600281771272,68.70603651879355,69.45365068502724,69.40186603926122,69.89129512850195,70.87695148587227,71.36438375059515,71.76379489619285,72.11473280889913,71.12736284825951,70.6630913419649,71.46677068248391,70.58420809637755,70.98531591054052,70.72571796458215,71.1253539561294,70.57873812923208,71.4590268228203,71.3761921133846,71.65423138905317,71.92927086120471,71.630807782989,71.14202162018046,71.69103223411366,71.44249038025737,70.68409584602341,69.72225146740675,69.21727662766352,69.72578335180879,69.58996459608898,70.12185128731653,70.70900138560683,69.83744046278298,69.49158934736624,69.73070275457576,70.0262972288765,69.91590437665582,70.58397101704031,70.42007916281,70.21734805684537,69.56993006076664,68.9241455476731,69.1355725871399,69.03962718788534,69.56049240101129,70.5540005499497,69.9188461266458,70.49288873327896,69.81103913346305,70.7734779343009,70.01486432226375,70.03277911385521,69.0732967290096,69.60617942083627,69.0980867575854,69.64838715782389,69.75885243387893,69.24876479478553,69.86454775743186,69.71501615596935,70.67348296614364,71.65890162438154,72.07907356740907,72.519341413863,72.60360284196213,72.41692358488217,73.07122255628929,72.28707121964544,72.87451486336067,72.76179524464533,72.84751741029322,73.02686429722235,73.78817523736507,74.16946373227984,73.59549101535231,72.79620257113129,72.55983489425853,73.30904533760622,74.009895529598,74.99119681119919,74.82534970436245,74.14409687183797,75.04659993480891,74.24528696527705,73.7761639719829,74.38453531963751,73.6164434668608,72.67955882940441,72.73722262913361,73.04077167017385,72.93229761859402,72.89886735286564,73.77910117479041,73.28065157635137,72.64743320504203,71.67200800869614,72.14873774722219,71.86294097919017,72.52562581654638,73.33333435002714,72.9116280679591,71.95641817478463,72.10930157080293,71.83409886946902,71.85999524826184,72.70711525343359,72.87420331127942,73.4638518714346,73.60212810430676,72.89166192151606,72.5258169635199,72.72447120957077,71.7962663625367,72.72736477386206,73.26515181967989,72.30741218663752,72.12290289252996,71.82688573608175,72.31911898870021,71.81285926420242,71.26486437721178,71.95301428483799,71.75274958508089,71.60577731113881,70.90189838036895,70.0498412521556,70.0752267325297,69.9881059397012,70.37874459382147,69.93974154489115,70.24129448505118,70.80357510736212,70.8270231350325,71.34288854664192,71.51403439836577,71.40076961182058,70.57194380974397,71.43134933896363,71.10474358359352,70.86428617779166,71.46070358576253,71.36322536505759,71.76973600499332,71.40521975886077,70.53565747756511,70.94079964747652,70.20951017178595,70.67630318831652,70.88547225762159,70.62601851765066,69.8282079603523,68.87964792922139,69.04071404505521,69.17414198862389,69.39226955594495,69.00767923425883,68.5448742499575,67.98889121087268,67.37500611320138,68.16670606285334,67.25805883808061,67.00152837950736,66.51141855213791,66.74948844406754,66.05969803361222,65.79636237677187,65.24422889808193,65.03993864217773,64.33860487863421,64.99978652130812,65.45020088041201,65.93583084037527,65.64278634497896,66.48062946368009,65.83048951206729,66.81679302547127,67.22145767463371,68.01384803419933,68.4006841252558,68.21162076713517,68.58283180836588,67.65731016360223,67.86599400313571,67.84370873169973,67.18675005994737,67.87788876146078,66.99269990995526,66.29773832065985,66.46371224010363,67.2485363301821,68.11919391900301,68.513582309708,67.60063359327614,68.48543504625559,67.73818780342117,67.36393781146035,66.74334557540715,66.84022381249815,67.80357245262712,67.48018726147711,67.1599321370013,66.5867866766639,66.4287407998927,66.4815427036956,65.50252027390525,66.06440202938393,66.21964888926595,65.7950952295214,66.58921535918489,66.34520001104102,66.70593147678301,66.99744965182617,66.88178421836346,66.39483917457983,66.43247871287167,66.32790870731696,66.7133980775252,66.05198140349239,66.9652040116489,67.67631825292483,67.26235136436298,68.10983346262947,67.36279675131664,67.70228840969503,67.45768442284316,67.16808942798525,66.38433316815645,67.00758803915232,67.02388674020767,66.25405864836648,66.2864446816966,66.1135635599494,65.86060906248167,66.33615197101608,66.09084149776027,66.33341178204864,66.49219118151814,67.07399446470663,67.21967205870897,67.56445382442325,66.59732023254037,66.30884863389656,66.31517585320398,67.25656091468409,66.85076394118369,65.87725038826466,65.70816661277786,65.2033123113215,64.42600720655173,64.45865304907784,65.43530623288825,65.49832008499652,66.00744040543213,66.87699060700834,66.1926114228554,65.36545813269913,66.28760956320912,66.6528565082699,66.45188987115398,66.84227186627686,66.95131814293563,66.67198614729568,67.4430252481252,68.19785713916644,67.46599551616237,67.17475354578346,67.83918863534927,68.27354576298967,67.65289679961279,67.45925587369129,67.15534271858633,66.84808607865125,66.83649053517729,66.08443555654958,67.05652596289292,67.91588409198448,68.78982469299808,68.69933349546045,68.07632745290175,67.75513393990695,67.71453224122524,68.36733711417764,69.17282913904637,68.35399164445698,69.19608388049528,69.5001880666241,69.94275038922206,69.19739164877683,68.5062880301848,69.26439040573314,68.4160250928253,67.9823299641721,67.32327836472541,66.9684279775247,66.3449463318102,66.05870051961392,65.62012664880604,66.56192644592375,67.18882274394855,67.06709228921682,66.16676771407947,65.66121464129537,65.37412591837347,65.58160597784445,65.97930565616116,65.124279725831,64.88199030607939,65.5027509778738,65.92187150940299,65.30373450322077,65.58542307699099,64.67692336440086,63.799556836951524,62.84956317907199,62.66875420836732,62.46439848281443,63.40798857109621,62.65198935754597,62.34624393377453,61.579585840925574,61.79016545880586,61.623546961229295,62.14478867314756,63.13786500971764,62.31569134769961,61.60553743550554,62.43734761001542,63.350248214788735,62.78060333663598,63.57584245828912,62.65399871440604,62.31751347659156,62.3882562154904,61.40941546438262,60.7893663267605,60.82467433810234,60.18810367351398,61.06690530246124,60.8289673444815,61.70633148122579,61.18919089902192,61.67267659679055,62.12294212449342,62.00306082656607,62.499052945990115,62.10178910382092,63.06797237927094,63.40747124608606,62.83738418808207,63.51996087143198,63.94753169827163,63.28780799172819,62.5971380234696,62.31696418719366,61.396229934412986,62.07347611896694,62.24032112164423,61.30713569931686,61.802066578064114,61.20565635804087,60.42570644477382,61.04735717782751,61.197560565080494,60.708472767379135,60.28290376299992,60.3849577633664,60.037185807246715,60.89607000583783,60.70109671493992,61.4106633621268,62.16681366181001,61.95554287545383,62.76742230448872,61.994568647351116,61.36927197268233,60.97189047979191,60.891163635998964,61.83428482990712,62.40962246619165,63.31714325631037,62.929830411449075,62.58732606470585,62.350321541540325,62.440593149047345,62.664076236542314,62.395048771984875,61.455135045107454,60.701821816153824,61.51979250367731,61.52222309168428,60.69473053980619,60.00461226562038,60.238130919635296,61.03271432360634,60.74980870075524,60.200243280269206,60.458941381424665,60.903552594128996,61.120401478838176,60.30476839467883,61.24271555710584,60.30467836000025,60.30282640224323,59.811744751408696,60.73295180685818,60.06538375187665,60.948654412291944,60.026086187921464,60.91820369102061,60.22123565617949,60.79382327850908,61.44403770705685,61.461264939047396,60.73669519089162,60.88748757261783,61.48414502572268,60.77919315965846,60.21894269762561,59.55910563422367,59.479753928259015,59.118419957347214,60.09380434360355,59.65904479380697,59.229203411377966,58.251686645206064,57.67248565936461,57.0918367090635,56.89002387970686,56.19388373522088,56.880371352192014,56.81558511219919,57.065320427995175,56.412879072129726,56.50342832133174,57.23859340697527,58.22276765992865,57.38969270326197,56.41870878171176,56.131389220710844,56.80553539423272,57.78434323705733,58.76611274899915,57.86790960049257,58.148015764541924,58.24076307751238,57.685717194806784,57.005452460143715,57.44768794346601,56.91424814611673,57.53227630490437,57.043429212179035,57.68621288612485,56.70979640446603,56.397479532286525,55.93004816910252,55.82779152551666,54.99585741292685,54.940471954643726,54.79580239346251,54.39518678141758,54.09078689804301,55.041700151748955,56.02382584614679,55.6577418372035,56.00067866779864,56.16102672740817,55.310210259631276,54.723047234583646,55.4151740479283,55.308498283382505,55.39096002327278,56.23351879045367,55.921782871708274,55.62213464640081,55.21907527279109,56.19978101179004,55.98114087013528,55.78772920789197,55.91006594104692,55.5583844142966,54.671699402388185,54.4338262937963,55.05342853628099,55.46764797903597,56.128455037251115,56.70382907381281,56.6126793762669,57.31384611129761,57.407829623669386,57.50663913227618,57.940680510830134,57.04668578132987,56.717993145342916,55.799945565871894,55.594983387272805,54.85820369143039,53.95720681687817,53.058952612336725,53.29020900791511,52.792224768549204,53.6032808306627,53.229688334744424,53.12658155709505,53.38918367354199,52.75910432310775,52.331125208642334,52.755063003860414,53.0765614467673,52.61463817860931,51.97203223221004,52.96835618279874,52.873992467299104,52.393340861424804,52.42060467367992,52.7391788600944,52.830380180384964,53.641975031234324,53.00954447174445,52.66529721720144,53.630236980039626,54.510560194496065,54.759506166446954,53.96303033037111,53.040328052826226,53.454830867704004,54.049982050433755,54.17674941336736,53.723896111827344,54.4504826082848,54.12902069604024,53.74387785419822,54.06066991575062,53.80923699447885,53.77054387005046,53.794719498604536,54.16693221544847,54.73734888294712,55.379192024469376,55.950122125446796,56.079782011918724,56.542241810821,55.69746372057125,55.90139245055616,55.26268700975925,54.3937326464802,55.340043887961656,55.658746105618775,55.96323803579435,55.97999930102378,55.00136240804568,55.63302293373272,54.76757082855329,54.872461640741676,54.13388136541471,54.010697670746595,54.71182052558288,54.29596554953605,54.98996938532218,55.280663857702166,55.06147314608097,55.04884972143918,55.64646942541003,55.094895080663264,54.513756779488176,54.0954564535059,53.301942822989076,53.371898838318884,53.03430125443265,53.517221074551344,53.47415888821706,54.419221088755876,53.80354520212859,54.70483616972342,55.41371127823368,56.24807601002976,56.607994066085666,56.720972932875156,57.62336827768013,57.279903991147876,57.04203070607036,56.82845565024763,57.321482830215245,58.20024848775938,57.60153073305264,57.06107778707519,56.59114516712725,57.346597235649824,58.13744336925447,58.318675187882036,58.321954124607146,58.730172605253756,59.366963407956064,60.068097207695246,59.07881060289219,59.71105667296797,60.22725655604154,60.41481634043157,61.237023001071066,60.52538841543719,59.848254000768065,60.7272431505844,60.21274919388816,60.1525165210478,60.99094769824296,61.38685581460595,60.617038308642805,59.790032820776105,59.97064415644854,59.904568552505225,59.86409420194104,60.46340879332274,61.23617993295193,61.090599063783884,61.760425846558064,61.86409397050738,62.60374168027192,63.26137894811109,64.11389837460592,64.76083184732124,65.66712637944147,65.69515029201284,66.44569493224844,66.68329130066559,65.86755940131843,66.42847715364769,67.30181480012834,67.71466057980433,68.61738813761622,68.99662571772933,69.37042242335156,69.33297965954989,69.40471213217825,70.02006330247968,70.41827098093927,70.09321333002299,70.73765425011516,70.38177902577445,69.87220620177686,70.1637525553815,69.85399095108733,69.23904351936653,68.49167269282043,67.63206023955718,67.61139427218586,67.95409013982862,68.23531217454001,67.26770835369825,68.05566368019208,67.15409534052014,67.53709117509425,67.73104828502983,67.34496177500114,67.20584650570527,67.36736223846674,67.75757771125063,68.5306273070164,69.42315108748153,70.14019747683778,70.17051517264917,70.26661610323936,69.59930321527645,69.37563461670652,70.09145521884784,69.41162155428901,68.45715098129585,69.25476193847135,68.74509463785216,68.77515556337312,69.74018470430747,70.18046210380271,70.0293126241304,70.00558392051607,70.03367400588468,70.93018040107563,69.96331147477031,69.3362669730559,69.17684845393524,69.21813096478581,68.78911917982623,68.20908098202199,68.06738915899768,67.42713886592537,67.96596450265497,68.42622474068776,69.15835185907781,68.16799331642687,68.87677796976641,68.80822677956894,69.61473182914779,68.99266370432451,68.71002913126722,67.81062063900754,67.33493848284706,66.82833540719002,67.39501644345,66.42907213047147,66.62083218200132,66.18367875972763,66.64319608965889,66.02187394816428,66.70744667388499,66.99726683786139,66.58294093282893,67.11448655603454,67.3843347709626,66.60652001108974,67.01230688020587,67.2522176578641,67.25124581390992,67.687499220483,67.37907238956541,66.84636912075803,65.87696862546727,66.45505347196013,67.41737541276962,67.47107916371897,67.37687488179654,66.91823958372697,67.51277084741741,67.98866488784552,68.76896211504936,68.09975821338594,69.00263712415472,68.44709182810038,68.73440701002255,69.6867805859074,69.70102626131848,69.43400929821655,69.07572880014777,69.37761644506827,69.04263733047992,69.47025459352881,69.90349334431812,70.8369207251817,71.53143760794774,71.0087719000876,70.53887049807236,71.37475542258471,70.67542138742283,70.56950306147337,70.63552409410477,70.96645973995328,71.95478353463113,72.13710698578507,72.1495702797547,71.38158640544862,71.40505252266303,71.65458633657545,70.75742943910882,70.37769917305559,69.88555152993649,69.6750178555958,69.74588662106544,68.754940378014,68.47918236721307,69.0985460341908,68.79872477892786,69.44717661431059,69.27662984281778,68.94986968999729,69.00328814703971,69.56758751394227,70.1323126917705,69.2954283375293,68.5581441288814,68.96565802861005,69.16516779595986,69.1746282428503,68.74261827208102,68.556370111648,68.00778574123979,67.79596803756431,67.0112563977018,66.72594984713942,66.3135422160849,65.52243275893852,65.08980601793155,65.77462716773152,65.57135020475835,64.78136262530461,65.71305635385215,65.9153771949932,65.7995540886186,65.4080984564498,65.2729244758375,65.38418470323086,64.54788520140573,64.48899991996586,65.23794861743227,66.15764897596091,67.15696055954322,66.5719294291921,66.4173141149804,66.28120046062395,67.00414258893579,67.59576718555763,67.2403609235771,66.43242002278566,67.20385149074718,66.54089478682727,67.18679704796523,67.45907868258655,67.78476535482332,67.52881412999704,66.56968017248437,66.01324931997806,65.4650180246681,65.5921168033965,66.19630628544837,66.67864612909034,67.6027289358899,67.62491890927777,67.8959080753848,67.74657884100452,67.55215166928247,68.1949057476595,68.32573876017705,68.94368678703904,68.98165352549404,69.46933979308233,69.31828124634922,69.58392143528908,69.4092071512714,68.86765794595703,68.85075887106359,69.21984427934512,69.87562553398311,69.3516992777586,69.15200421307236,69.58560419781134,68.83473744895309,68.97046159254387,69.13835379527882,68.385042949114,68.57949464954436,68.00074575608596,67.28197075473145,66.65965984528884,66.89041358884424,67.86767322244123,67.51426688488573,66.926761736162,66.47259105183184,65.5559460776858,65.552802530583,66.53336129151285,65.87523229094222,66.08441791543737,65.37914716964588,65.69474719604477,65.95680647017434,65.7660431326367,66.74938430450857,67.55188173195347,67.51406737510115,66.66573849320412,66.5080465269275,65.93911936832592,65.43756087543443,66.2014805264771,66.94845140120015,66.45755394082516,66.36501622898504,65.46500452747568,64.66832305770367,64.5024371156469,65.2566632903181,65.42693613702431,65.34640270564705,65.63128840597346,66.26879257243127,67.13314227387309,66.88809270039201,67.10155361937359,67.389031464234,67.5005436479114,68.19285907410085,67.84525490971282,67.1164670647122,67.70382113056257,67.92425602627918,68.22492038924247,67.99372066231444,68.2432611901313,68.28701273351908,68.6993366186507,68.75018588127568,67.75301550235599,68.65626839222386,67.7066201060079,68.53007198683918,69.13766639260575,68.85552693996578,69.1523349112831,69.86922626569867,70.4247748372145,70.62963971262798,71.55945708882064,70.63159821834415,70.37098548840731,70.22074862383306,70.4958653175272,70.95345894480124,71.44270179327577,71.28463180549443,70.76298476243392,70.67766720894724,70.98364641005173,69.98445024667308,69.99537578690797,70.53078870661557,71.16199940396473,71.50568255456164,71.06340601108968,70.71281018294394,70.81249749427661,70.30555490078405,69.59653800306842,69.31591791240498,68.91917867632583,69.27915510488674,68.5204814733006,67.57608855329454,67.06510824151337,67.39853687165305,66.47819852689281,66.68069181917235,66.1280595944263,65.80831327335909,65.66334360139444,66.05102838901803,66.58433313807473,66.04963339399546,66.52453505853191,66.47111428016797,66.82710636220872,67.6331807798706,66.78471745876595,66.04054489312693,65.79013501899317,66.53501387638971,65.70083680655807,65.75149592058733,65.86758875614032,66.8463812917471,66.51436741137877,65.76752283237875,66.43110996903852,66.69938939251006,65.85063410410658,65.16226792009547,65.7736183423549,65.66908064996824,65.19507832918316,64.71921187313274,65.58084093173966,65.97324281511828,66.31593047641218,67.00064626941457,66.77333999192342,65.86356221651658,65.21475794864818,65.76484700851142,65.22988906316459,64.64145324984565,64.01742870546877,65.00062288623303,65.59033917449415,65.88619602331892,65.49465345684439,65.69473159080371,65.70491916965693,65.36877488531172,64.76177845709026,64.50031015370041,65.02963692462072,65.84597908938304,66.20117352111265,65.74513919837773,66.62222098885104,66.9238759148866,67.80859115161002,67.7377773495391,67.96221146732569,67.25967019982636,67.22963147703558,68.12247457914054,67.96242905268446,68.05218594614416,67.24462262820452,66.64913594676182,65.91694363439456,66.78543395083398,66.1203038180247,65.25973043451086,65.22440366540104,64.27326250681654,64.32209520041943,63.37158721452579,64.22925780108199,64.69578380463645,65.00900079356506,64.26891436940059,64.44971729349345,63.93106101593003,63.6990246232599,62.87657325481996,63.22239232296124,62.95434148656204,62.84576758323237,63.082553362473845,62.50016561569646,62.01717460621148,61.31388600403443,61.84791751159355,62.59052060544491,63.48926601419225,62.6551502449438,62.748832006473094,61.789599779993296,62.73940989142284,62.55675469618291,62.89050782751292,63.85471233353019,63.729175185319036,63.55129865510389,63.609042580239475,64.01330416835845,64.73832176532596,65.28119628457353,66.26350826444104,66.39750152733177,65.43502135155722,66.35650199418887,65.63773803738877,64.67981690028682,64.42851062957197,63.66774272965267,64.48391510453075,64.98694544564933,65.06263601221144,65.58978002797812,66.23523404449224,66.42460451554507,66.26022429019213,65.2870281059295,64.58403385570273,64.81445791758597,65.01005171332508,64.91896802326664,65.35496201971546,65.62178622558713,65.51123024150729,66.3271634541452,67.1234945547767,67.47217770898715,66.8591072242707,66.27751347934827,66.20867588277906,65.26095141796395,65.41885517071933,65.2251440640539,65.89445079211146,66.54403604567051,65.65407887334004,65.71655500214547,65.00245881360024,64.93298714887351,64.91626562830061,64.1823730408214,64.50505231274292,63.796423172112554,64.06694727530703,64.15861388295889,64.54587397398427,63.869405234232545,63.26213670801371,62.44532611966133,62.33651358773932,62.93768849782646,62.617316770832986,62.35923907533288,62.99379947967827,63.03091157786548,62.970793277490884,63.69290815619752,63.74056879384443,63.86581203341484,64.25712851854041,63.47863426199183,63.64319711038843,64.49915987346321,65.14787573134527,65.06318872561678,64.35202740039676,63.56729487841949,64.25515676895157,65.05296851787716,64.46590602397919,63.92279698001221,64.20663482462987,65.13970893993974,65.90670576319098,66.46470250654966,65.58110048435628,64.86928028427064,64.03668770985678,64.5861337929964,64.71240588231012,64.22851306479424,64.17094409186393,64.56967275822535,64.55393196316436,65.06901171104982,64.94720002589747,64.7331257131882,64.92719015106559,65.16827215394005,64.22164234984666,63.82010894315317,64.19238525722176,63.54128704499453,63.447619314771146,62.65063472604379,62.02729472517967,61.49205221887678,62.030723401810974,61.44797733658925,60.49152366165072,61.10704021900892,60.17520558880642,60.56026758393273,60.19447375833988,60.47548394976184,59.80887940339744,59.11090277926996,59.256042211316526,59.53163832100108,59.2235479131341,58.98484462779015,59.7511708769016,59.3302937601693,58.96552750375122,58.67142653930932,58.52145393518731,59.43387778010219,59.283691393677145,59.64517955807969,58.687370066996664,58.75450054742396,57.7631472251378,58.46353417588398,59.396459829993546,58.752879806328565,58.34315208438784,58.07096898229793,58.190711258444935,58.270370479207486,57.8202387439087,57.3028773330152,57.702538803219795,56.770861802622676,57.01881420472637,57.92297251150012,58.57546028494835,58.670872311107814,57.88929926138371,57.633087541442364,57.081479059532285,57.177484965417534,57.44639139715582,57.96644846070558,57.86958832945675,57.726731583010405,57.60401779320091,57.88369743246585,57.33577117417008,58.107210629154,58.24138901103288,57.929295542649925,58.30044710030779,59.0616374691017,59.92998956143856,60.8965868819505,60.77457752963528,60.73787187226117,60.138927968684584,60.26726238662377,60.09251245576888,59.82706950418651,60.8096400462091,60.17609075503424,60.656348150689155,60.728531282395124,61.604804552625865,62.58395852800459,62.77872494980693,61.89820473501459,61.81979460082948,61.36689095105976,62.15283046895638,61.632844800595194,61.44057044247165,60.92932757223025,60.25955285644159,61.116444720420986,60.70390320615843,60.74526363518089,60.760989459231496,60.89528058003634,61.80129252001643,61.76856316300109,62.302537884097546,61.59037130139768,62.43507317081094,62.79106491012499,61.817087122704834,60.99811009597033,60.56579862115905,60.70713974814862,60.583701270166785,60.46125974692404,60.90623185504228,60.6435984778218,60.61233719391748,60.065373750869185,59.67353896703571,59.169207809492946,59.28588784299791,59.13536508474499,60.06909040780738,59.422979487106204,59.953759368974715,59.1708573224023,59.253790114074945,59.77247131988406,59.78412410756573,60.315865295007825,59.95238616550341,59.202747472561896,58.41083614109084,58.06285884650424,58.371649633161724,58.08477650862187,58.86769178509712,58.395350688137114,57.54439654573798,56.927405873313546,57.56364315468818,57.40059035271406,57.179380546323955,57.43837372492999,56.59103206824511,57.26768485317007,56.95937888743356,57.62033851072192,57.75958417309448,57.93108107987791,58.84989313362166,57.950509566348046,57.90221303422004,57.80287845246494,58.74806982371956,57.876314816530794,58.45546134421602,57.93332714261487,58.52372095035389,58.1970557118766,57.91188098490238,58.51262852922082,58.02652058657259,58.864053786266595,59.35923607228324,58.9989462136291,59.53519422793761,59.992213694378734,60.19118232419714,60.3477887455374,60.42983695305884,59.81158386869356,60.20884742960334,60.49516451917589,60.92806761758402,61.575016918126494,60.66750112455338,61.39331459114328,61.463334795087576,60.69769894797355,59.893999606370926,59.51201477646828,60.33712612045929,59.47248539561406,60.395691400393844,59.400066550821066,59.49319074768573,58.914136953186244,58.838110426906496,58.09807782061398,58.91708129271865,58.17901980364695,59.12513170018792,58.197585905436426,58.82810834236443,57.83306861668825,56.97835718514398,57.496199124492705,56.591321885585785,57.4069191198796,58.36761730723083,59.25652227178216,60.21587637485936,60.37381052877754,60.14066583989188,59.626015642192215,59.57966298190877,58.99076826684177,58.98019362287596,58.63055627932772,59.12609011447057,59.077619230840355,59.82344539556652,59.89568760339171,59.43045747233555,59.40893306490034,59.366769103799015,60.09084392618388,60.348116737790406,60.509342095814645,60.51249616080895,59.7927132146433,59.39959229947999,59.97374720219523,59.21395067451522,59.73922756873071,59.025741369929165,58.245698059909046,57.870622894726694,57.09560868982226,57.17759457556531,57.1630672425963,57.59072070242837,58.569368350319564,58.448776682373136,58.021359542850405,57.56442903727293,56.592473219148815,56.34366940241307,56.79608028754592,57.776319350581616,58.6385303591378,59.30736866313964,59.00941887497902,59.14713584212586,60.053381354082376,60.083042262587696,60.740645702928305,60.475647748447955,61.269472571555525,60.75770343048498,60.617102339398116,60.866933664307,60.776936972048134,60.202930136583745,59.30504925409332,58.56232542870566,57.71885665599257,58.153456260450184,57.668219899293035,56.853340501431376,56.42199937393889,57.41276050545275,57.96752480743453,57.24578837072477,58.06770894816145,57.43337896419689,57.358902803622186,58.32279058685526,59.28583097085357,60.20591799542308,59.92735167685896,60.03424216108397,59.23704437771812,58.84509660396725,59.71990841906518,60.06653205351904,61.01533462759107,60.650882351677865,60.434039623476565,60.2293278966099,59.69986776961014,60.112023463938385,60.13716242136434,59.8176340139471,59.01058200933039,59.631513103842735,58.83870548475534,58.74129720404744,57.84184248698875,58.75473924353719,59.025181932840496,59.12743949750438,59.18181369220838,59.00323455641046,58.75575261423364,57.9735823860392,57.42131922906265,57.96544018900022,58.0758778299205,58.226472047157586,58.01453821454197,58.78561072610319,59.179449970368296,59.207709818612784,59.15729102632031,58.43113886285573,58.6169483656995,58.890208622440696,58.176805157680064,59.14015797479078,58.91670734062791,59.48985385987908,58.98771742451936,59.10018186317757,59.28220505639911,59.18939714040607,59.169974497985095,58.282358148600906,58.89339951472357,58.03452347079292,57.92903151549399,57.83144677197561,57.84034191118553,57.548325944691896,57.305837449617684,56.610637221485376,56.863255460746586,57.05656642280519,56.07606172794476,56.58566718455404,57.055432138964534,57.37691999878734,58.122601772192866,57.95949544897303,57.23350894404575,57.489402988925576,57.58169542904943,57.11037633707747,56.76602113712579,56.20106279477477,55.64042375423014,54.69921272713691,54.63262990582734,55.58917896868661,55.92168573895469,56.61333909118548,56.24972851574421,56.53485527681187,56.6472277995199,56.29989066813141,55.562993446365,56.421099178958684,55.73310493398458,55.508561309892684,55.428365578874946,54.89676438877359,54.83873628079891,54.15445965481922,54.654676145873964,54.36016342788935,53.55548879224807,53.18543675914407,52.4179884144105,51.48296291939914,51.15446462482214,51.8793206429109,51.39916180586442,52.02481260849163,51.180823476519436,51.84026509942487,52.12243791902438,51.870289862155914,51.31663732137531,50.548643328249454,51.38676697574556,52.260694455355406,53.20456697931513,53.86025872733444,54.24299485562369,53.54186116764322,54.2273448347114,55.13179218862206,55.712816989049315,56.49811033764854,56.701081288512796,56.362900292966515,56.37463277531788,56.15006459271535,56.72863508714363,57.3591205435805,57.43255973327905,57.76279972400516,58.58974811760709,58.80184578336775,59.47048213891685,59.28854524670169,59.46796783572063,59.03367276210338,59.438339033629745,59.03501943964511,59.986768058966845,59.7621456454508,60.38056138018146,60.140328327193856,61.013811388053,61.19059310713783,61.465520679950714,62.145671610720456,63.115618800744414,63.91401318088174,64.28318478632718,63.53272540308535,62.99698159331456,62.819162423256785,62.91076247347519,63.75285280030221,63.07916761748493,63.09866459062323,62.505131082609296,62.232295964378864,62.878012724686414,62.866447675041854,62.786841694265604,62.43648294406012,62.490309845190495,63.08493572939187,62.83540755091235,63.57039764896035,62.59139828616753,62.006933700758964,61.975315265357494,61.493777469266206,62.342499047052115,61.589389249216765,62.38922060607001,61.44613739801571,61.38519591651857,61.06471510697156,60.420616016723216,60.10403969651088,59.709475172217935,58.946618660818785,59.76978591736406,60.58486360125244,61.474038769025356,62.26186116738245,61.28451753500849,62.17755331285298,63.0303899445571,63.24369337595999,62.52320528263226,62.966550721321255,63.165363860782236,63.53372529800981,63.16767216939479,63.6696482016705,64.18924288544804,64.27224154863507,64.5977528207004,63.63908212026581,62.98830233886838,63.5532112470828,63.95615085493773,64.89979582978413,65.5154590322636,66.25908702099696,66.99472979316488,66.94275226956233,67.83811490982771,67.70350193791091,66.74991711229086,67.42366083478555,66.57563233189285,65.7819273811765,65.01988767692819,65.47000249102712,65.66870526177809,65.54110217979178,66.24334322381765,65.6513270009309,66.4831283944659,67.3652399466373,66.69078482454643,66.24498740537092,66.89931211667135,67.09906342579052,67.46439081570134,66.79968379391357,66.03650500020012,65.11591633129865,64.25424794759601,64.90180853148922,64.26901610288769,65.18741913931444,65.9959624693729,65.75756764644757,66.11019545048475,66.77505641849712,66.95445225248113,67.81729531334713,66.90599754359573,67.37559437379241,66.60220260359347,66.89481806522235,65.95082408608869,65.34275473840535,64.75223625125363,63.84203549800441,63.17228118143976,62.59459782205522,63.29879566654563,62.676986867561936,63.107902156654745,63.994432819541544,64.90827004332095,65.30115651478991,65.00651839794591,65.53979450417683,64.99971078662202,65.69274948118255,66.14430518634617,66.64419846376404,66.42975848075002,65.66791623923928,65.1486418559216,65.74221822200343,66.25334689067677,66.22355473134667,66.253775854595,67.07602661615238,66.10178305022418,65.39572605723515,66.05195539677516,66.78683000896126,67.26514303544536,66.58294833265245,66.08849584124982,66.6868757144548,66.84006088227034,66.9980069748126,66.84275758266449,67.73596027307212,68.09302243543789,68.59940417017788,69.00927351089194,69.70662777824327,70.19529489288107,70.48070420604199,70.09360578749329,70.18017991678789,69.52749838354066,68.82389320852235,67.86242076568305,67.56144933681935,68.56037448113784,69.05603517824784,69.04478500317782,68.55656156688929,69.4579844516702,69.464667909313,70.13186967233196,69.28619621368125,69.43252344196662,70.22822388261557,69.84334997041151,70.08495530160144,70.29746274091303,71.17323766462505,70.35943638766184,70.48445143830031,70.3387001263909,69.79547599237412,69.79532311391085,70.20248783286661,70.29132092511281,70.2892227973789,69.46498878020793,69.78564313519746,69.36978412372991,68.53185643767938,67.96036683348939,68.00014330586419,67.36775994859636,68.20554972672835,67.58627280732617,68.23425089102238,68.79463612707332,67.94920340972021,66.99757784791291,66.80489485757425,67.00348021369427,67.91360819619149,67.76580607471988,67.20531998574734,67.3180882143788,68.20382773550227,67.30636254046112,67.20831601507962,67.45153669361025,67.77126380475238,67.23782790312544,66.61402469454333,66.6237485865131,65.85844977060333,65.36394477169961,65.37099456507713,65.2652559261769,66.13456381065771,65.16840559011325,64.74117249855772,64.29620438348502,63.747234880924225,63.28504378348589,62.97344276914373,62.9998474069871,63.263596086762846,64.1219316762872,64.17263965494931,63.734939120709896,64.44311243621632,63.820102429483086,64.19808355113491,64.49898525420576,65.01978131663054,64.53985580056906,64.25502247735858,65.21617751847953,65.41294343676418,64.72340035252273,64.39665878843516,64.73541015898809,63.82092793146148,64.23081330303103,63.90758590353653,64.13641750486568,63.679524979088455,64.50531823001802,64.48281828034669,64.94958025822416,65.59440355934203,66.14332079747692,65.88419060176238,66.32936302619055,65.99051041901112,66.60443760920316,66.92089615063742,67.80754235386848,67.46402491768822,68.26995143666863,67.60418774746358,68.07802744721994,68.86390128917992,67.94196337182075,67.91056948481128,67.97588694980368,67.5619015158154,66.88329782290384,66.04979461850598,65.85648591257632,66.46435681777075,67.2397879655473,66.34652142738923,65.66732610436156,65.77787612518296,65.9906810154207,65.67095635505393,65.44105517864227,64.44435344683006,64.09595379559323,63.161406768485904,64.11733167525381,63.16488928813487,63.93459786567837,63.49399602878839,63.93241643579677,63.07592182280496,62.543758016545326,63.252157705836,64.25009052595124,63.32325515523553,63.24853829201311,62.39194827480242,63.3101938823238,63.29847812978551,63.64816918224096,62.67610071320087,62.02844979893416,61.46019977889955,61.86153923114762,60.95412755012512,60.85404532402754,59.9527970161289,59.742982745636255,59.46318627195433,58.75450765714049,58.27444891538471,58.2459166017361,57.80199198797345,56.954407734796405,56.29173965845257,55.93266043672338,56.35181334707886,55.65630626305938,56.31627329904586,56.94666950078681,56.863227860536426,56.68964918144047,55.83087206771597,56.508367486298084,55.88906946731731,55.11906838649884,55.611621672753245,55.35827661678195,54.90658251894638,55.30479797720909,54.67419781163335,55.31930492212996,56.15825819130987,55.302618517540395,54.57814931683242,55.20446397271007,55.32473391061649,55.43231348413974,54.65264809690416,54.8189208265394,55.33263690536842,55.86132190609351,55.030350508634,55.571078163105994,55.23879104759544,56.15866533527151,56.6212772866711,55.88655755342916,56.338047322351485,56.04490020312369,56.335590451490134,55.90154291316867,56.328713117633015,56.74228578526527,56.909797535743564,56.0185224362649,56.33704241365194,55.44941325392574,55.11863111285493,55.2564218332991,54.381643012631685,53.77699867635965,53.13658813852817,52.52456692839041,52.27310673054308,52.86311924876645,51.937015113886446,51.83432434964925,51.108728343155235,50.681605231482536,49.96345558948815,50.85745317675173,50.39491632254794,50.76890000421554,49.88419623160735,49.945505182724446,50.61578970681876,50.46597746293992,50.815099648199975,51.668789783958346,51.44055911060423,51.38450479088351,51.768383800052106,52.12266472587362,52.53680958785117,52.37431302899495,51.5717529556714,51.32700873911381,51.58888770407066,52.037575270514935,53.00015493715182,53.51765858428553,53.016260399948806,52.76636918867007,52.50525494012982,52.287981651723385,53.17658924777061,52.24565665051341,52.90135326888412,52.20158891007304,53.16970447264612,52.42379219690338,53.090994702186435,53.6748677007854,52.73519596783444,51.78164834715426,51.45045370562002,51.16014235187322,51.18044795887545,51.42742276750505,51.967963992618024],"z":[-77.69388091843575,-77.66995845967904,-78.23988792020828,-77.7699518809095,-77.05810703150928,-76.10201934119686,-75.51065064128488,-76.04140975279734,-75.53308428730816,-74.72836724529043,-75.41417382657528,-75.33612633123994,-75.29261734336615,-74.95515834679827,-75.58416471909732,-76.56620851205662,-76.83258698927239,-77.63104893825948,-76.78791667195037,-77.69662890490144,-78.38948122318834,-78.81806301511824,-79.57025320874527,-79.37379429209977,-78.41722347587347,-78.08179497299716,-78.62706003058702,-78.22078521130607,-77.39829817321151,-78.06630424875766,-78.49058373598382,-77.77158619696274,-77.18510862672701,-78.1260594301857,-79.10113996919245,-80.01135106524453,-79.70889384346083,-80.27334187366068,-80.22448716545478,-80.1542426343076,-80.6350361336954,-80.6734295845963,-80.17076521646231,-80.1842935285531,-79.74413173040375,-79.80684331152588,-79.77784469816834,-79.55622079409659,-79.10456464625895,-78.92042270954698,-79.4841678943485,-79.2940962864086,-78.5702781304717,-77.96071649715304,-78.60074702231213,-78.66529289400205,-79.05082752741873,-78.89211492659524,-79.35574455652386,-78.37567578209564,-77.91845945222303,-77.19149346416816,-76.55579373473302,-75.87417436251417,-76.85295336833224,-76.6964253038168,-77.63796695135534,-77.48613983159885,-77.69096557609737,-77.42304196907207,-76.66822778433561,-76.6689826194197,-75.8349036811851,-76.74701398704201,-77.37193071236834,-76.49766724696383,-76.37349566631019,-75.48653475008905,-74.90441975556314,-75.87686248030514,-76.14090879634023,-75.50807393947616,-75.35713880509138,-75.79926135484129,-75.53625402739272,-76.15545802004635,-76.9135316372849,-77.44172688899562,-77.23146071843803,-77.5975068914704,-77.81787944957614,-76.82427336880937,-76.17710682656616,-76.33860144251958,-76.66344959801063,-76.08603689679876,-75.73315330315381,-75.1031132764183,-76.00818055123091,-75.86953804315999,-75.55298355873674,-75.18640497513115,-76.12593956338242,-76.9399804668501,-77.3146931543015,-76.96474390337244,-77.82526578847319,-78.21467981347814,-77.35797465639189,-77.47861824836582,-76.64101559203118,-75.90603337669745,-75.12021221546456,-75.15460102120414,-74.96225203294307,-74.5715957521461,-74.99826496047899,-74.66971423244104,-73.93229109607637,-73.594837221317,-73.43719138903543,-73.20970115577802,-73.18641396146268,-73.40618970943615,-72.73168824706227,-72.89342228323221,-72.83830029983073,-72.27255304856226,-71.42782544251531,-70.54968519601971,-71.03864230820909,-70.52306253835559,-69.9712756560184,-70.41637443797663,-71.28718848479912,-72.20353125687689,-72.49030536971986,-72.36186549905688,-71.97239855397493,-71.65689597604796,-71.73588826833293,-70.91840335540473,-71.45103956619278,-71.38751278212294,-70.42329750070348,-69.42920113820583,-69.27542037703097,-68.8298312225379,-69.51973892189562,-70.37705895584077,-69.47630353923887,-69.1032659476623,-69.07966714864597,-69.01901214336976,-69.30322575289756,-69.09580245614052,-69.81632096366957,-69.78727062838152,-70.53261758945882,-70.24412073520944,-70.81917595956475,-70.1263640918769,-70.48336348310113,-69.56684255274013,-70.40032026404515,-71.05971537716687,-70.97715265024453,-71.86032255459577,-70.96949767228216,-71.95826197741553,-71.39637485798448,-71.29691698867828,-71.89606796810403,-71.77907874016091,-72.06694164080545,-72.89982573501766,-72.29341345280409,-71.29688773630187,-71.18923997553065,-70.44195648189634,-69.69690442085266,-69.3237895667553,-70.09892736328766,-69.91651970148087,-70.40361642464995,-71.31692873686552,-71.33709243498743,-70.39587588235736,-70.11027138493955,-69.54515317175537,-68.71116698067635,-68.39503054646775,-67.68454773863778,-67.99684578506276,-67.21609201747924,-68.11101837223396,-68.43144547753036,-68.81526126991957,-69.16969579271972,-70.03377608442679,-70.37828946253285,-69.89048213744536,-70.07595438184217,-69.8477345672436,-69.2419662331231,-69.07424452574924,-69.9297221051529,-70.24894069042057,-69.83430712576956,-69.64236840279773,-69.89856275124475,-69.65113474335521,-69.32531796908006,-69.63287755008787,-69.59514657501131,-70.18682270962745,-70.1700579142198,-70.97802839567885,-70.08828378794715,-71.08660136116669,-70.391516700387,-70.80572270741686,-71.64721647556871,-71.00165993859991,-70.82480649603531,-70.95394406327978,-70.40130062121898,-69.77400652505457,-70.71701573301107,-70.35416936548427,-70.67703090049326,-71.67284207418561,-72.11150610772893,-72.75294797448441,-73.53951749112457,-73.46983239240944,-73.4635831383057,-74.39554500067607,-73.73947897925973,-73.84262613067403,-73.04757659044117,-72.31453070184216,-71.6535715716891,-71.93148293718696,-72.09928206866607,-71.2698240885511,-71.67389984894544,-70.69353210646659,-71.22135861217976,-71.7458726814948,-71.2191563276574,-70.28169101662934,-70.3018225315027,-71.20830334490165,-71.65745259681717,-71.78113660728559,-72.18032469740137,-72.49987663747743,-71.6896163620986,-72.01705517666414,-72.19031312549487,-72.10457355668768,-71.70381072722375,-72.07574962032959,-72.39133806852624,-72.91555521963164,-73.07761313719675,-72.12330796942115,-71.78506506606936,-72.22530271019787,-72.25076548336074,-72.21092454949394,-71.43502912996337,-70.90697241015732,-71.58827129285783,-71.89834635797888,-71.678300795611,-71.87374917045236,-71.7787628993392,-72.4451980930753,-73.08386461110786,-72.17769288131967,-71.76122137205675,-71.35668822005391,-71.05841768998653,-71.80731147900224,-72.54949474800378,-72.66200204752386,-73.35449802316725,-74.02947524841875,-73.06410233676434,-73.1493980283849,-73.55614483030513,-74.50454348186031,-75.13069439539686,-74.21211839653552,-73.81265868758783,-72.84002114459872,-71.98462695814669,-72.53795342380181,-72.3462468222715,-72.67003612639382,-71.91818680381402,-72.1061747642234,-73.01976975239813,-73.8485115505755,-73.0282819699496,-73.58708724053577,-73.19890383351594,-73.30543885705993,-73.57204158511013,-73.52539485227317,-74.29118507448584,-74.26114592934027,-75.18503219820559,-75.07959316810593,-74.61721825925633,-74.55391372088343,-75.52702669147402,-74.8979957359843,-75.49199133412912,-75.922318354249,-76.23982299910858,-76.26979891443625,-77.04586613317952,-77.50187851442024,-78.11518843006343,-79.07681593485177,-79.15246080607176,-79.07355098659173,-79.63161552790552,-79.68771953135729,-79.64152343012393,-80.4943577083759,-80.12728168489411,-79.32047448353842,-78.83884009625763,-78.247734434437,-78.93482555449009,-78.27592693921179,-78.55493029672652,-79.14672542316839,-78.47130562504753,-78.60598057229072,-78.67794202687219,-79.67783271381631,-78.73730042623356,-78.18668515002355,-77.83751958608627,-77.14547580853105,-77.16342468559742,-76.61102945683524,-75.65650776773691,-75.603727419395,-75.56274357857183,-74.73635931592435,-75.08867651410401,-74.34740754403174,-74.0839662081562,-73.96559044066817,-73.99803581787273,-74.14775127917528,-74.80615717405453,-75.78272312227637,-75.42886578757316,-74.56869311770424,-74.22395710088313,-74.24624528549612,-73.88341903081164,-73.54112154245377,-73.92653878964484,-73.85950562078506,-74.49449010193348,-73.79637016821653,-74.77515579760075,-75.62266836734489,-75.43762111896649,-74.53571993019432,-73.62416629260406,-73.6221841769293,-73.15840719640255,-72.32573066884652,-72.60954122338444,-71.82372263027355,-71.30816797725856,-70.8607444963418,-69.89909338438883,-69.13569780485705,-69.22545907041058,-70.11609916156158,-70.01403321931139,-69.5716700553894,-70.50680322526023,-70.54144138051197,-70.1125678238459,-69.44730223808438,-68.94070538925007,-68.87896945560351,-69.21060849307105,-68.43818384921178,-68.67057142127305,-68.54658319521695,-67.79637741763145,-66.89338246639818,-67.31354183331132,-67.02731571439654,-66.12202770309523,-66.50863962247968,-67.22518079075962,-66.70281430752948,-66.82840115576982,-66.10037068650126,-66.44931540405378,-66.93998182984069,-67.70204741507769,-67.43928676471114,-67.00791671359912,-67.51404673652723,-67.86038977419958,-67.88927896833047,-68.81282725697383,-68.30481790285558,-68.9443153035827,-69.8641455587931,-69.68827634397894,-70.5144827873446,-71.31638804357499,-70.77013897430152,-71.06292661791667,-72.0518834698014,-72.38332031015307,-73.0481448918581,-72.47196909505874,-71.94193317461759,-71.51441210787743,-72.30194254545495,-71.59423481673002,-71.6184365209192,-70.68638944625854,-69.96773480903357,-70.57083361037076,-70.61211485043168,-69.78091505775228,-69.61863950127736,-70.47615096019581,-71.00596622982994,-70.95557242166251,-71.65935486834496,-71.10693991975859,-70.53477652790025,-70.53459500707686,-69.86577618867159,-69.38388193538412,-69.34754953254014,-69.84879316342995,-68.89467692514881,-67.94804057618603,-68.0799263222143,-68.7934691128321,-67.88428761344403,-67.79373285965994,-67.91563764307648,-67.70691310893744,-67.85348454443738,-68.68989473860711,-67.85884867981076,-68.71887214249,-68.22994605265558,-68.99384596943855,-68.93095598462969,-69.12104117777199,-69.49858932383358,-69.49821314122528,-69.36165357520804,-68.96175810834393,-68.90263627143577,-69.56145373359323,-68.68668400589377,-67.91410996438935,-67.35130335902795,-66.61252120742574,-66.77853060234338,-66.654149282258,-67.02461181487888,-66.32693937327713,-65.94299641717225,-65.25522838160396,-65.47125016059726,-65.3911119303666,-64.56726015079767,-63.93722665356472,-63.53500127699226,-63.87689940817654,-63.608920474071056,-64.39188705105335,-64.47490080818534,-63.81002098321915,-63.70360879832879,-63.10837310506031,-63.728844995144755,-63.169945429544896,-63.18988625658676,-63.843191454187036,-64.02634275471792,-63.1660754843615,-62.82133027585223,-62.99964801315218,-62.272307995241135,-62.27701293723658,-62.04243026766926,-62.1910802279599,-61.55713348230347,-60.827808030415326,-60.54724368220195,-59.97166483197361,-60.94816294964403,-60.58391297701746,-61.12501595495269,-61.71010601473972,-61.85481210146099,-61.21959117567167,-62.21388733154163,-61.92792939627543,-62.91459596436471,-62.25984685262665,-62.09527022577822,-62.941839649342,-62.382018918637186,-62.70107850572094,-62.19864124106243,-62.10920799616724,-62.276756001170725,-62.42612171685323,-62.65330943046138,-61.92179165640846,-62.760593184735626,-62.13782237563282,-62.5142154279165,-63.275315061211586,-63.916470317635685,-64.24424395244569,-64.4882953511551,-63.668639505282044,-64.06756544206291,-64.43052198179066,-64.98129187291488,-64.54078048840165,-64.91189140407369,-64.85134897148237,-63.99588580895215,-64.55310498736799,-65.09822681732476,-64.2886123037897,-64.79977077431977,-65.15606803959236,-64.36255719931796,-64.95367691107094,-64.62546794768423,-65.5621488718316,-65.8618140774779,-65.12446779478341,-64.83286350546405,-65.03428437933326,-64.3608420570381,-64.70400884794071,-65.27679675072432,-64.95342121412978,-65.15533019555733,-66.05487768724561,-65.88380271475762,-65.75916765630245,-66.72455666679889,-66.16375998733565,-66.56063171615824,-65.89733879361302,-65.76149388030171,-65.52468370785937,-65.86812265496701,-66.46527502499521,-65.7838848233223,-65.42282918374985,-64.57958864513785,-64.7885222947225,-64.98180684726685,-64.88460784126073,-64.40045412117615,-63.816988992039114,-62.95107664493844,-62.013233424630016,-61.3629986718297,-60.39859769819304,-60.35145700350404,-60.130655837245286,-60.33808737946674,-61.2079279483296,-60.301677940413356,-60.039167397189885,-60.77191065764055,-59.94368348130956,-59.38821752788499,-59.1266624359414,-59.91358787706122,-59.680163705255836,-59.13061137124896,-58.735547355376184,-58.06428259657696,-58.05911868670955,-57.25928057683632,-57.51514634396881,-58.45657639624551,-58.198155044578016,-58.89938784763217,-59.22490321472287,-58.84150261618197,-58.397255511023104,-58.30971130589023,-57.849563125986606,-57.72968121711165,-57.35231025889516,-56.79371861182153,-55.988667780999094,-56.9445442664437,-56.1176888323389,-55.21588423801586,-55.30771097680554,-56.24766061268747,-55.907667852472514,-55.01946746278554,-55.01169699197635,-54.9627365921624,-55.361534701194614,-54.93123996863142,-55.28529073810205,-55.81849763169885,-55.264220618177205,-54.666485774796456,-55.124107719864696,-54.46117201866582,-54.77791290124878,-55.44559010118246,-55.38224202347919,-56.123377894517034,-55.597249761689454,-56.35912816086784,-56.928241479210556,-56.6789048765786,-56.78306550811976,-56.59511522203684,-56.0190947484225,-56.889578578062356,-56.25913895154372,-56.95005077542737,-57.88821205729619,-58.43145345011726,-59.3343745553866,-59.807839593384415,-60.27512254100293,-61.060915749985725,-60.22897970955819,-60.29975697537884,-60.126648048870265,-60.593276645522565,-59.63865628745407,-60.23913234844804,-60.18330641603097,-61.118514605332166,-61.15907867439091,-60.7289248816669,-61.398079882375896,-61.58437504991889,-61.30746346106753,-61.48517069639638,-61.45123047661036,-61.93969200178981,-62.48215600801632,-63.39197228010744,-62.62137292698026,-61.72666763793677,-61.75987938279286,-62.74124164925888,-62.87582826055586,-62.9937682421878,-62.26902932673693,-62.56229046173394,-61.79062841646373,-62.70523696159944,-61.826799945905805,-62.722795830108225,-63.02151730423793,-63.7127691260539,-64.02312503382564,-63.55669815884903,-64.2547412966378,-64.34542169701308,-63.55588712543249,-62.57385580474511,-61.68631657259539,-62.416781935840845,-62.29727726476267,-61.5799655825831,-60.75431755371392,-60.49029368953779,-59.99316263850778,-60.154991902410984,-60.66140098311007,-60.96256161434576,-61.86791493231431,-61.81992419064045,-62.43575597880408,-62.4287926685065,-62.00837167259306,-61.70212738215923,-62.60557689331472,-61.64702810626477,-60.94522110186517,-60.742308440152556,-60.35354710929096,-59.74445890169591,-60.08952884050086,-61.06154500087723,-60.344925604294986,-59.44426757469773,-60.33499851776287,-61.24490940524265,-60.83619382977486,-61.580994291231036,-61.77040150761604,-61.28657103702426,-62.24449057597667,-63.15638722665608,-62.991596032399684,-63.15162632800639,-63.036991057917476,-62.80850735073909,-62.50534298783168,-63.50268018292263,-62.85062653850764,-62.61689872527495,-62.28611474437639,-62.32885903073475,-62.8237468902953,-62.455775492824614,-63.401732039637864,-63.77170316874981,-63.58050354151055,-63.38226959621534,-63.436277128756046,-64.41640839120373,-64.85004705982283,-64.39479923946783,-64.79881915776059,-65.2513198168017,-66.22055920772254,-65.32976010628045,-64.67897224752232,-65.44145758170635,-65.5354319321923,-64.70909382775426,-65.63125609327108,-65.57285288302228,-66.46368569834158,-65.97392122261226,-66.86804620362818,-67.10027721431106,-67.37763575743884,-68.29412655904889,-67.9573237746954,-68.47616208670661,-69.09203507844359,-68.65280714537948,-67.88796797441319,-68.51993490196764,-69.4948084289208,-68.7939142100513,-68.66978838900104,-69.0274244742468,-69.42925282428041,-69.28460875572637,-69.34903439506888,-69.13463051477447,-68.41935727652162,-67.92055916553363,-68.8991585006006,-69.50439848843962,-70.00681575806811,-69.02019325084984,-68.88654069369659,-68.23292214656249,-68.23164818668738,-67.81049681268632,-66.83930978924036,-67.17037056479603,-67.93344143405557,-66.94495079899207,-67.65806498657912,-67.06325550051406,-67.18961066566408,-67.48889982840046,-67.31443688925356,-67.84676539106295,-67.14890140853822,-68.05295307887718,-68.29597988631576,-69.06986532639712,-68.53784917388111,-67.9992048041895,-67.49263765569776,-67.90818408550695,-68.6804988947697,-69.5044139539823,-69.22612733393908,-68.57105663232505,-67.95739823952317,-67.23041019076481,-66.32074733544141,-65.6506861881353,-66.60231458721682,-67.3826792575419,-67.61413137381896,-67.1651888396591,-67.7935407073237,-67.68678207276389,-67.5271213511005,-66.62928102444857,-66.22694077668712,-67.21973612997681,-68.09828384546563,-69.0070802019909,-68.06161296134815,-67.93005765229464,-67.03782838769257,-66.26883364189416,-66.2329364051111,-66.79973506601527,-66.33569762157276,-67.01389379939064,-66.06262191804126,-65.92395003279671,-65.3669305560179,-65.93433858035132,-65.05304480204359,-65.82789915753528,-65.11787374550477,-64.30197454756126,-63.434081703890115,-64.40339255612344,-63.96394523791969,-64.44862084649503,-63.84784193569794,-64.00663106096908,-64.44690613960847,-65.03359067859128,-65.18104069912806,-65.24057884747162,-65.86914233257994,-65.7651027715765,-66.22258449206129,-66.59331702580675,-66.1670261695981,-66.99580545630306,-66.86264433851466,-66.0111983185634,-66.25596729945391,-67.08990689972416,-67.09626091644168,-66.21131779998541,-66.98324781330302,-66.99983924161643,-67.76766858063638,-67.40797084569931,-68.25863695796579,-68.24377881828696,-69.09993151156232,-68.55337296798825,-67.79866336751729,-68.69449296873063,-69.06274075619876,-68.1123593216762,-67.89255699096248,-68.65142456255853,-69.00946306856349,-69.55446399515495,-69.56329058343545,-68.9111009389162,-69.41828919854015,-70.16576682869345,-69.39047649828717,-70.09848748147488,-69.59649002319202,-70.31037298869342,-70.01826926274225,-70.53120116144419,-71.09162426833063,-70.27458302490413,-70.1844521178864,-70.90729653695598,-71.63406736170873,-71.98075984837487,-72.71080548828468,-73.26973142847419,-73.58827642863616,-73.99444092344493,-74.2638265825808,-73.94564400846139,-73.48356697708368,-73.0916529642418,-73.60178632568568,-73.87403660593554,-74.22986148437485,-74.84347255481407,-74.48208650108427,-75.13683267310262,-74.72614864166826,-73.87064498104155,-73.75317609356716,-74.12198512349278,-74.076240895316,-74.03600274818018,-73.20976754138246,-72.91674265125766,-73.78484219731763,-73.34440827416256,-73.87963461177424,-73.43978221295401,-73.52827133610845,-72.60362310055643,-72.03561670985073,-72.45936410594732,-71.5593320960179,-71.46977851865813,-71.83493839064613,-71.5313431317918,-71.94008660223335,-71.84072777442634,-71.11975835962221,-71.98686495376751,-71.13628553785384,-71.33068955782801,-71.71741212764755,-72.1418581600301,-72.15886361105368,-71.63320697192103,-72.18742239614949,-71.28769031725824,-72.1881271279417,-72.65439771302044,-72.55586255388334,-72.76600465318188,-72.74727594526485,-73.4589010477066,-74.25635352311656,-74.09339342918247,-73.83551286393777,-73.96959906071424,-74.16178863868117,-74.83256965363398,-74.17072626948357,-74.02706471318379,-73.23959736106917,-73.51870030350983,-74.08017100160941,-74.8792537576519,-74.58043883135542,-74.2081825202331,-73.5976120037958,-73.41457371832803,-73.53678020695224,-72.79440162749961,-72.32024378189817,-72.28953135572374,-71.89187247073278,-71.37325237132609,-70.89006072748452,-71.1443699770607,-71.91222822247073,-71.68457160657272,-71.56898087821901,-71.53461589990184,-72.1118044112809,-72.14514222042635,-72.5456953337416,-72.0384343280457,-71.7043450800702,-71.30086733214557,-71.98093102267012,-72.1349762454629,-71.1805131030269,-72.11070361640304,-72.04453726159409,-71.96492948383093,-72.52303030109033,-73.50403923820704,-72.9817243819125,-73.49000069592148,-73.11778975930065,-73.56818138342351,-73.43737213686109,-73.83525381237268,-74.32454031240195,-74.0311172241345,-74.00517545919865,-73.38763916585594,-72.51734027126804,-71.80878722993657,-71.03035830520093,-71.4792844131589,-71.5489407852292,-70.82290271576494,-71.20842663664371,-70.98051300877705,-70.89251620834693,-70.10031345812604,-70.65815516747534,-69.84748106868938,-70.46135913068429,-70.83433382678777,-70.05324589228258,-70.12765636388212,-69.23528473824263,-70.16584146721289,-69.34376736730337,-70.26856237556785,-69.8346051312983,-70.2310521719046,-70.36512190755457,-70.48848225967959,-71.34739888133481,-71.62682506768033,-71.09890925697982,-70.86265123914927,-70.4279666855,-70.22308657690883,-69.99346723174676,-70.11445020558313,-70.43878940632567,-70.27506945747882,-70.02896848786622,-70.69987111678347,-71.05493492633104,-70.06774111744016,-69.80291691375896,-69.37491524172947,-70.16861519077793,-70.69197966624051,-70.58746512047946,-69.87525247316808,-69.54110927972943,-69.79223187826574,-70.56375164911151,-69.94990611774847,-69.49764169100672,-68.80551041243598,-68.73880462814122,-68.85593122197315,-69.25079480232671,-69.35004233988002,-69.96213145833462,-70.57269046781585,-70.90539117204025,-71.28976502781734,-71.43422477971762,-70.85643281973898,-70.68892622645944,-69.99392989324406,-70.87616147007793,-70.4030894394964,-69.81968333665282,-68.86351498914883,-68.92154799122363,-69.22946199355647,-69.8324913084507,-70.0958245866932,-71.06457914924249,-71.5276579647325,-70.62857975810766,-69.7288590199314,-69.93099581170827,-70.44293961161748,-71.23160290159285,-71.9480963605456,-72.4405301543884,-72.9444185118191,-72.44058724399656,-71.95476706139743,-71.40753500396386,-71.73131084209308,-71.57816786272451,-71.52380510326475,-71.9526954293251,-71.22787463432178,-70.31446672230959,-69.52301238710061,-70.35691530490294,-69.80454810615629,-69.99285429529846,-70.0412236219272,-69.25734370620921,-70.08024765504524,-69.36795672774315,-69.22508859355003,-69.3833887190558,-70.30805759038776,-69.48938315548003,-68.82616538181901,-69.5658444087021,-68.58014942659065,-69.16345130698755,-69.48413651436567,-69.99156822962686,-70.39088995289057,-70.29297602409497,-70.80618914216757,-70.26867512334138,-70.79841527249664,-71.40903273364529,-70.6450902018696,-71.58129478152841,-71.54546428052709,-72.4585980353877,-71.46584114897996,-71.86852084798738,-71.27489316556603,-70.89773814613,-70.46939703961834,-70.41157100116834,-70.4739329800941,-70.28520165290684,-70.13741045957431,-71.06601978791878,-70.74140387633815,-70.89641008432955,-70.92205495759845,-71.82723577367142,-71.91069842595607,-72.21009118435904,-72.16625094925985,-72.46277427161112,-71.79717418458313,-71.60409458214417,-71.99663614947349,-71.3651291928254,-70.82628929335624,-70.99641876434907,-71.81325751496479,-72.19856485398486,-71.55915447231382,-71.78781563928351,-72.48593302071095,-72.05776481423527,-71.2040374064818,-71.70692967157811,-72.24501181021333,-73.15676212729886,-72.3188827955164,-72.90563872922212,-73.7666669585742,-74.152456774842,-74.94636912178248,-75.57006794307381,-76.5328101599589,-77.24397018831223,-77.64372293604538,-77.23063427396119,-77.74799639778212,-78.70824095327407,-79.02429733378813,-79.2499050651677,-79.00637830328196,-79.9319477668032,-80.30141540709883,-80.6957026119344,-80.61834164755419,-80.66895176656544,-80.26108129974455,-81.16694898344576,-82.11853741062805,-81.87167065916583,-82.09939407929778,-82.657457920257,-82.71438478073105,-82.03944690199569,-81.5199017599225,-81.07250153971836,-81.61074134567752,-81.35160456132144,-80.5917232548818,-80.92729717446491,-81.44362345477566,-80.48001710604876,-80.77455489244312,-80.33196259336546,-81.24995788093656,-81.68580824928358,-80.87561448244378,-80.77309042494744,-81.49062057351694,-81.8369838274084,-81.90872505679727,-81.42094631493092,-82.38282872410491,-82.52314908057451,-83.07957140449435,-83.51302017178386,-83.38271768251434,-82.61597084952518,-83.01857322501019,-82.19626266276464,-82.57096551265568,-83.0304770511575,-82.3698637499474,-82.68763636099175,-81.69227179465815,-81.312583217863,-80.79339494509622,-81.09609821718186,-81.32666163565591,-80.40966636547819,-80.83142546517774,-81.29882294125855,-82.10136108426377,-81.98707407386974,-81.7613854156807,-81.38216357631609,-81.24769581109285,-80.5745610948652,-79.7664375291206,-80.17900808015838,-79.70336130540818,-78.86478360276669,-79.42330075567588,-79.25095664942637,-79.90950774680823,-80.50813321163878,-80.92337299278006,-81.06519207498059,-81.17744676256552,-81.82962879072875,-81.44983343780041,-81.56721613463014,-82.44928992912173,-82.09131402568892,-83.05261104600504,-82.43103343527764,-81.8510930268094,-82.55921249650419,-83.10503652365878,-82.9290162534453,-83.29013597872108,-82.37239607423544,-82.67196760699153,-82.61617414327338,-82.83484933059663,-83.83054434414953,-84.46525183320045,-83.96597202774137,-84.3780565992929,-84.31193312024698,-84.35661000804976,-84.07838174654171,-84.99365818221122,-85.18280662968755,-85.2411212795414,-85.50917565310374,-85.721745159477,-86.45629335194826,-87.25994976889342,-87.83684934070334,-87.03352137934417,-87.49029881833121,-88.0566989867948,-88.41306255152449,-88.2905421028845,-89.10025787679479,-89.84175165370107,-90.59636086318642,-90.8433644301258,-91.7026963592507,-90.75434276321903,-90.0429887524806,-89.50032233679667,-88.63047497812659,-89.02427618764341,-89.68352608196437,-90.59836407704279,-90.67708814516664,-89.84243498835713,-89.04375661257654,-88.17159538157284,-88.87677324935794,-89.5310722719878,-88.84329371200874,-89.35973324021325,-89.96822905912995,-89.93992490367964,-88.94111845036969,-89.50071604689583,-89.37114940909669,-89.25965917576104,-88.6057935450226,-89.48780415765941,-90.43764334218577,-90.34283802332357,-90.36066079791635,-90.78710375679657,-91.27016807114705,-91.68106542387977,-91.39424813212827,-90.73028635559604,-89.7816973910667,-89.12868789117783,-89.79268323164433,-88.93891663709655,-88.49599203234538,-87.9254924156703,-88.91276760259643,-89.56847118632868,-89.30918200546876,-89.71276964945719,-88.8402548325248,-88.28164162207395,-88.87822511745617,-88.18948293011636,-87.80267146136612,-87.50515047926456,-88.0713213281706,-88.74023973243311,-89.35857004579157,-89.12476119119674,-89.68722237413749,-89.65825375914574,-89.04537353198975,-89.32200993737206,-88.74752771528438,-88.86087859841064,-89.18202845891938,-89.02279457263649,-88.40737613523379,-87.56955667072907,-87.82218143483624,-87.45086890738457,-87.20886657387018,-86.23069301899523,-86.89921629149467,-87.76954581867903,-88.13900577323511,-87.97131040552631,-87.00905403448269,-87.23487577447668,-86.36782117886469,-86.81272995844483,-86.55488924542442,-86.45064875716344,-86.72746008634567,-85.91261264262721,-86.2111910302192,-85.55633774166927,-86.36645092768595,-85.9420772944577,-86.65301312413067,-85.71337243495509,-85.79698897944763,-85.51453264430165,-84.96734708268195,-85.18951837392524,-85.25767596624792,-84.80187917780131,-84.53397083329037,-85.03270174190402,-86.00782251637429,-85.68637956492603,-85.07685737824067,-85.65393353300169,-85.41354617988691,-85.2701587206684,-86.02242674585432,-86.5659061037004,-86.71927647152916,-86.78534148866311,-87.50734674185514,-86.95910725090653,-86.74208567058668,-87.6981476470828,-88.17114581214264,-88.94376551732421,-89.62194368196651,-89.24154141684994,-90.11953485943377,-89.14493318740278,-88.2081688111648,-87.95967869460583,-87.3186183734797,-86.96925229532644,-87.33605685597286,-87.5906247291714,-87.47629633033648,-88.30689621390775,-87.487993192859,-86.82069035852328,-86.89641733653843,-86.36604716256261,-86.65072528272867,-86.36024254001677,-85.9324414851144,-85.14431071188301,-85.4575964869,-84.70080748852342,-83.74347367184237,-84.47332463879138,-84.91637888876721,-85.30661963205785,-85.52807204052806,-85.64197199745104,-86.22251917840913,-86.77664365014061,-86.15171145834029,-86.35693418234587,-85.85140637913719,-86.67634849622846,-87.09840409457684,-87.9486550106667,-86.9974192311056,-86.92811760306358,-86.42712893756106,-85.54661532118917,-85.43096863338724,-84.65323341358453,-83.94313295651227,-84.91536026634276,-84.73474983405322,-84.7095711324364,-85.04858705541119,-84.85210438910872,-84.90473098214716,-84.9410525104031,-84.85662005888298,-84.33923618448898,-83.98469209531322,-83.75131843890995,-82.88254879787564,-82.54004602925852,-81.94886830169708,-81.808398402296,-81.39775141514838,-80.74490480357781,-80.43191058840603,-80.23598076589406,-80.62959707528353,-80.82480250950903,-81.0229609166272,-81.38814324699342,-81.80394160933793,-81.57511926069856,-82.21148250438273,-82.34636850375682,-82.86583774723113,-82.308353014756,-83.23955574864522,-82.45950177917257,-81.68863246496767,-81.87107258336619,-82.79909792542458,-82.92719305073842,-82.03769809147343,-82.1838035741821,-83.11936557525769,-83.8563061831519,-83.81999446218833,-84.01012802915648,-84.53334154188633,-83.6593886455521,-82.96090875193477,-82.19185732258484,-81.9311087760143,-81.62099980842322,-81.17294876743108,-81.85311893606558,-82.66704866010696,-82.11024647438899,-81.58326078439131,-81.22599884821102,-81.22028430830687,-81.43904324714094,-82.03706297418103,-82.48825139831752,-82.210750231985,-81.31241948297247,-81.09505172632635,-81.73142196424305,-82.72208560211584,-82.31396534107625,-82.35291717154905,-82.46881095366552,-83.34873683005571,-82.92015622928739,-82.03935567149892,-82.45433412212878,-83.31360644195229,-83.74568476714194,-83.68651078641415,-83.9390606074594,-84.57379122916609,-85.3505180394277,-84.60533528169617,-83.95494878990576,-83.08177638193592,-82.22239577816799,-82.04395993845537,-81.78061825083569,-81.06804029783234,-80.98536544060335,-81.34030942805111,-80.48319570580497,-80.85074911406264,-81.13443090114743,-81.30657697888091,-81.26927227620035,-81.66425920231268,-81.46091202227399,-81.35274362843484,-81.33240473922342,-81.60926360683516,-80.70435234252363,-81.23573419265449,-82.09726886125281,-81.29997418494895,-80.61107289418578,-81.43367394525558,-80.87319281930104,-80.3764733816497,-79.5179408248514,-79.67479154048488,-78.70541260344908,-79.59848329471424,-78.8979659867473,-77.96409798925743,-77.48172261053696,-77.10721770161763,-78.07580508617684,-78.56121035572141,-78.39125631703064,-78.25059054000303,-78.28186742821708,-77.7723138127476,-77.59926015743986,-77.77443355834112,-78.10505871521309,-77.5422567636706,-76.61358835874125,-76.26997860241681,-75.6554186316207,-76.49657690851018,-76.75828971294686,-76.06748820282519,-76.34553544502705,-75.35788635583594,-74.42415870493278,-74.04046813119203,-73.95288609387353,-73.136501848232,-73.86453813035041,-73.32547126710415,-72.5428087580949,-73.27932113176212,-73.89742999663576,-74.23977488232777,-73.40011260472238,-72.99029767746106,-73.71426622197032,-73.32689371239394,-72.70390447089449,-71.79420267790556,-71.05912414332852,-71.43603114364669,-71.49505197443068,-71.38879901124164,-71.43577229324728,-70.78186700679362,-70.496010042727,-70.55723910685629,-71.36120146280155,-71.00775916920975,-71.07310697203502,-71.93041400797665,-71.2883732393384,-71.91156157711521,-71.4992196355015,-71.31344246538356,-71.43149899784476,-71.6459707445465,-70.90079678734764,-71.89332676585764,-72.65194990998134,-72.76830064784735,-72.97769563412294,-72.81290957098827,-72.90818767156452,-73.14751197816804,-72.48214151430875,-72.93999381037429,-72.6171399699524,-72.49123292509466,-73.01159390434623,-72.13300384953618,-71.8296920391731,-72.33682758361101,-71.59020635299385,-70.96248386381194,-71.19878936000168,-70.52750356215984,-70.94970472482964,-70.22334969323128,-69.57048369664699,-69.7846647547558,-69.70226197037846,-70.33827557135373,-70.77896209433675,-70.96698317863047,-70.44430202292278,-69.82978078396991,-69.18374712532386,-68.6908256309107,-67.80440131295472,-68.17713524308056,-68.76998630724847,-67.79052406270057,-67.96102538891137,-68.3854500935413,-68.44878963707015,-68.38536861352623,-67.45078827394173,-67.02943618083373,-66.12033750861883,-65.72727878112346,-65.30507220886648,-64.49778452282771,-64.92372497171164,-65.13665576092899,-65.68585066916421,-66.4648350989446,-65.58358031185344,-65.34511220594868,-64.38813767023385,-63.66781189199537,-64.19244039058685,-64.28095496678725,-64.93374116020277,-64.737347017508,-64.5387370348908,-65.27871880028397,-64.29729392146692,-64.12354375701398,-63.532588865142316,-63.25957324448973,-62.73246710607782,-61.92841011285782,-61.12050508521497,-61.77521002944559,-62.06959933787584,-62.69523754576221,-62.3633793881163,-62.785877850372344,-62.694901797454804,-62.42847154522315,-62.457038905937225,-61.711383576504886,-60.71403152635321,-61.31011057924479,-61.61512013152242,-60.84290582733229,-60.90657203923911,-60.10186288878322,-60.41526236757636,-60.256041971966624,-59.7236637538299,-58.8529098238796,-58.56082176649943,-59.31076580006629,-59.23096376657486,-59.01175637450069,-59.20456804288551,-59.585190512705594,-60.430620059836656,-60.00849429611117,-59.69195221643895,-59.214534954633564,-59.7655437765643,-60.1888420637697,-60.47898542555049,-60.05446729855612,-59.113704334013164,-59.25787317287177,-58.49163938360289,-57.72528356174007,-58.02485302183777,-58.761194506660104,-59.08170316461474,-58.33129997504875,-57.58992303768173,-56.84196266764775,-57.80777726043016,-57.438344130292535,-56.54343738174066,-55.630720995832235,-54.68146318523213,-53.96245400328189,-54.87678156187758,-54.32610398856923,-53.39357622945681,-53.72306659352034,-53.435313475783914,-53.62357721151784,-53.663055093958974,-53.25668208999559,-52.72561871819198,-51.74113004375249,-52.673546916339546,-53.502645066939294,-52.97791490517557,-53.52163096284494,-53.75913100736216,-54.58033870719373,-54.747617709450424,-54.634214313700795,-53.73675889801234,-53.583211411722004,-53.26511273533106,-54.16316455649212,-53.64929153723642,-53.08210423728451,-52.402540921699256,-52.56379017513245,-51.73205955699086,-52.6253824303858,-52.976970916613936,-52.779016342479736,-52.124814925249666,-52.0974682206288,-52.950675745029,-52.11103325011209,-52.00355936633423,-51.55210938118398,-51.827096227090806,-51.07406894210726,-50.14874271303415,-50.23047327250242,-49.9378691832535,-49.096969444304705,-49.76370559446514,-48.81379328016192,-49.762256337329745,-50.250270309858024,-50.317431670147926,-50.184409625828266,-49.3235063967295,-49.053571106866,-49.734832152724266,-49.144234290812165,-48.78308806940913,-49.36126473546028,-50.096859170589596,-49.115077775903046,-49.24670804105699,-48.38519799243659,-49.263129458762705,-49.31309853075072,-49.6172656705603,-49.828183106612414,-50.6993793817237,-51.52400948572904,-51.352038064971566,-51.85621181502938,-52.48036943003535,-52.85934916883707,-52.28103633597493,-52.53836634522304,-51.829567635431886,-52.82164402026683,-51.97329891752452,-52.045505380257964,-52.22404781449586,-52.01287129847333,-51.146967937704176,-51.225464538671076,-52.041419783141464,-51.3112414511852,-50.46972632082179,-50.6383512141183,-50.003009052947164,-50.79547770274803,-51.190552743151784,-50.85044648544863,-51.628205590415746,-50.823083056136966,-49.87432734435424,-50.814468424301594,-50.19359873328358,-49.25587038509548,-48.357412496581674,-47.84653437323868,-48.263969948515296,-49.059506786521524,-49.086716091725975,-50.03172990260646,-49.4034084728919,-49.532135165762156,-49.27831941610202,-49.405739123467356,-50.00697917630896,-49.068684396799654,-49.964082850608975,-50.257148632314056,-50.441565262153745,-51.38402190292254,-52.24317853199318,-51.60569340456277,-51.28337050229311,-51.857619892805815,-51.644810990430415,-52.25792075321078,-51.3150720205158,-50.73684972105548,-50.63484423747286,-49.92496551806107,-50.13802581652999,-50.57639189809561,-50.88595215789974,-50.9566363170743,-50.73127697594464,-50.659748947713524,-50.16889590676874,-50.500784360338,-51.060156904160976,-50.14672689838335,-50.16740778833628,-50.686933973338455,-51.18614909192547,-51.90880734473467,-51.564804105088115,-51.53467894345522,-51.85457682143897,-52.146479193121195,-51.99971604999155,-51.92903376556933,-52.509556299075484,-53.345860769972205,-53.28713032370433,-53.88300097454339,-54.230316910892725,-53.619283507112414,-53.04458415461704,-53.78101480100304,-53.56597739458084,-54.22838030103594,-54.60023223236203,-55.56021949183196,-56.38059422746301,-57.29444541782141,-58.28402431681752,-58.983665220905095,-59.699049367103726,-59.123212232254446,-59.386835554149,-59.78293254133314,-59.57620151061565,-60.47806663997471,-61.25896065682173,-60.27058959240094,-61.238975728396326,-61.351248383987695,-60.52324961125851,-60.025368998758495,-60.98092144774273,-60.71064822142944,-60.731202895753086,-60.0612308322452,-59.32495384057984,-58.334305830299854,-57.92379005253315,-57.96279968228191,-57.628965380135924,-58.18649837234989,-58.009008075110614,-58.72627522610128,-57.882734816055745,-57.93614188255742,-58.173185335472226,-58.90903924079612,-57.980794705450535,-57.97586702788249,-57.18803439568728,-56.72839270392433,-56.760729636996984,-56.440892642363906,-57.34943888708949,-57.50443837745115,-58.36899400409311,-57.8923107967712,-57.95646697608754,-58.59711425099522,-59.14389859652147,-58.295561376493424,-57.8861045143567,-57.88270764006302,-58.66986891254783,-59.280312083195895,-58.815564423799515,-59.687754654325545,-60.561740500852466,-60.04911593301222,-59.37793447077274,-59.349380486644804,-59.20706977695227,-60.090659329202026,-59.45921891275793,-58.52188305137679,-57.89350507501513,-56.91575678437948,-57.79403164656833,-57.355351438280195,-56.99688489269465,-57.40065749967471,-57.45028265891597,-56.87848957115784,-57.46321889711544,-58.19679508684203,-57.83832781435922,-58.44930382119492,-58.301675229799,-58.149321721401066,-59.079080794006586,-58.511030511464924,-58.28448243672028,-58.177992256358266,-58.43333309749141,-57.89075560448691,-57.721679284237325,-57.24827152071521,-57.582409041468054,-56.857065964024514,-57.34579240344465,-56.971357631031424,-56.95134828239679,-57.5654449951835,-56.639809855259955,-55.96930387523025,-56.79583252966404,-57.23747308598831,-57.719668871723115,-58.09938066685572,-57.79594621248543,-58.32570205349475,-58.05347180692479,-58.73861910356209,-58.65534046664834,-59.306030420120806,-59.25349372532219,-58.592154645361006,-58.494533009361476,-57.91542243771255,-58.23452345049009,-57.46498181903735,-56.532785705290735,-56.61823948752135,-56.595058056525886,-56.811041831970215,-56.64497132692486,-56.123330374248326,-55.71798114059493,-56.296271963045,-55.933610456995666,-55.75311515154317,-54.78127573709935,-55.20734918676317,-54.80949051072821,-54.02738995524123,-53.6570657081902,-54.08597351051867,-55.08362165559083,-55.642325673252344,-56.37197422515601,-57.207623470108956,-56.91986206918955,-57.37875035172328,-56.41129344608635,-56.92861770046875,-57.68333603255451,-57.2389637590386,-57.53687530243769,-57.80893030157313,-58.16356934001669,-59.15864875772968,-58.60054852953181,-58.34809957817197,-59.16900160908699,-58.45942118996754,-58.7048095096834,-58.10173847526312,-57.83118557743728,-57.154953280463815,-56.50490149483085,-57.39720400189981,-57.420244759880006,-57.75037654582411,-57.61288713943213,-56.70997912203893,-57.34473141096532,-57.133285163901746,-56.29125306289643,-56.955780981108546,-56.27118855481967,-55.412149547133595,-55.473681525327265,-54.81244128011167,-54.26008299132809,-54.40426021581516,-54.400121924933046,-55.389345618896186,-55.08799036638811,-54.7345853773877,-54.24779443675652,-54.20053337048739,-53.292071553412825,-52.39825939293951,-51.81225962983444,-52.65897974045947,-53.21944832941517,-54.071938298176974,-53.615371907595545,-53.68889216100797,-53.76712201582268,-54.554205438587815,-54.196272800676525,-54.907155671622604,-54.38614487601444,-54.39948835643008,-53.94698301423341,-54.44917751662433,-53.9362671575509,-53.66023219190538,-53.93781789718196,-54.544766852166504,-54.24866689136252,-53.94202228914946,-53.43630907032639,-54.20483603933826,-53.370939009357244,-52.59690736560151,-53.440835173241794,-54.18536994792521,-53.959967147093266,-53.0325650209561,-53.78755771042779,-53.81473001372069,-53.95673111034557,-54.458610088098794,-54.73163693631068,-54.586231279186904,-54.720135730691254,-54.47155166557059,-53.62147315451875,-54.044599171727896,-54.01566864969209,-54.912375087384135,-55.73532918468118,-55.922421601135284,-56.40860483981669,-55.95281823212281,-55.44680668786168,-54.85486654797569,-55.11614402383566,-54.57113708322868,-54.16438167728484,-54.68614108581096,-54.988487439230084,-55.520888574421406,-55.43689288664609,-55.17170652188361,-54.403960157651454,-53.41954985726625,-52.92706933012232,-53.8312395978719,-53.96417084429413,-54.06177166616544,-54.945511740166694,-54.08149094553664,-53.452710303943604,-52.80813831882551,-52.1258642366156,-51.99891180731356,-52.116362725850195,-52.94467245042324,-52.549802302382886,-52.876014271285385,-52.991973935160786,-53.30060511874035,-52.798459463287145,-53.04573585186154,-53.385394108016044,-53.580643638037145,-54.16519591258839,-54.91984661761671,-54.475027625449,-54.125052387826145,-54.84770966367796,-54.18347615515813,-53.209014650434256,-52.43659143242985,-52.31715158978477,-51.59287803294137,-52.248362137936056,-51.27592405537143,-51.00404186360538,-50.49950011773035,-50.76201261021197,-51.317247295286506,-50.868299605324864,-50.98269354272634,-51.58374379342422,-51.52991392463446,-50.80279406439513,-49.9417122118175,-50.07899036211893,-49.911167582497,-50.508356858510524,-50.04753819806501,-49.870277443900704,-50.4305998980999,-51.02898177271709,-51.74589167255908,-50.966681498102844,-50.28415443981066,-50.13019804563373,-49.94257529173046,-49.53967391839251,-50.12029090477154,-50.516888146754354,-50.19500668160617,-50.73842990864068,-51.02718027913943,-51.19780031684786,-51.217963251285255,-50.50993301952258,-49.879056974779814,-50.78231551731005,-50.93050432438031,-51.760239410214126,-51.198730814270675,-51.189217472448945,-50.97937659872696,-50.98433194169775,-51.64718460990116,-51.90578016359359,-52.87168685719371,-52.53437781846151,-52.14492621831596,-52.661557871848345,-51.75863789068535,-52.11966284876689,-52.78603373840451,-53.73874496202916,-53.90260807843879,-53.3082441650331,-52.91367380460724,-53.612885064445436,-54.38433517096564,-55.00523219909519,-54.813521693926305,-55.74027407402173,-56.72212296305224,-56.621734159532934,-56.64432775788009,-56.5422188192606,-55.636069354601204,-54.87397501245141,-54.71868248609826,-55.29594270372763,-54.40578112192452,-55.19064570590854,-54.79386722901836,-55.020039244089276,-55.19759791670367,-55.94623879343271,-56.67212247150019,-56.29670964041725,-55.991349428892136,-56.794315796811134,-56.208224900532514,-56.883445252198726,-56.86519937450066,-56.22145248344168,-55.936140769626945,-55.68243730952963,-55.3226089826785,-54.89686404308304,-54.2942851590924,-54.859631571918726,-54.627518804278225,-54.79017245396972,-55.1424824972637,-55.78223432879895,-56.119288691319525,-55.146186080761254,-55.02823698101565,-54.43813397316262,-54.511175953317434,-54.06647401023656,-54.3754904945381,-54.96049155294895,-54.3677589208819,-54.38551298901439,-55.32449718052521,-56.012460864614695,-55.42630421184003,-54.8486087275669,-55.30837112432346,-55.43254217132926,-56.132709541358054,-56.432962647173554,-56.33262659050524,-56.67255379911512,-57.659114957321435,-58.16317624459043,-57.91663739550859,-57.68224690295756,-57.13609411427751,-56.26420127553865,-57.21928427601233,-58.02071564318612,-58.34802652196959,-59.04520598333329,-59.54413239611313,-59.579739827197045,-59.738769417162985,-58.85817560041323,-59.75915415165946,-59.42151259165257,-60.025570534635335,-60.410863692406565,-60.0246652928181,-59.9551021726802,-59.0797521378845,-59.70196158345789,-59.73026081034914,-59.33747023111209,-59.51632533641532,-59.32736607687548,-60.24737493367866,-59.61403226153925,-60.03808040590957,-60.814159695990384,-60.007412092294544,-59.0320906448178,-59.57359096594155,-58.72418444417417,-59.06755251577124,-59.97474327730015,-59.09392193099484,-58.11597399879247,-58.998362090904266,-59.34230360807851,-59.27996997535229,-59.41741542890668,-59.65260809427127,-59.568664635531604,-58.59984976006672,-58.0852719261311,-58.03833964513615,-58.87389321066439,-58.13120556809008,-58.32163104834035,-58.054302159231156,-58.2708269986324,-57.70217359345406,-57.398254497442394,-56.40835278434679,-55.816050491761416,-55.95037651760504,-56.4112264434807,-56.093440437689424,-55.892281335778534,-56.82003383617848,-56.954739993438125,-56.02201785799116,-55.127135487273335,-54.278816944453865,-53.35937259718776,-52.6458997358568,-52.158077826257795,-52.17265190510079,-52.640986372716725,-53.53203526325524,-53.713959109038115,-54.676180998794734,-55.27098123403266,-54.89138145418838,-53.93353492813185,-54.236244146712124,-54.983108210377395,-54.63985720044002,-54.37732822448015,-55.1309027466923,-56.03432908048853,-55.79471198422834,-55.361784061882645,-55.38095420738682,-54.38423127960414,-54.90481852227822,-53.972263221628964,-53.07456667535007,-54.05047076754272,-54.13678942108527,-54.47113141324371,-55.048650370910764,-54.93399842502549,-55.67925049830228,-56.022087313234806,-56.40138709265739,-56.43592980969697,-55.760416633449495,-55.17970739770681,-55.98676036950201,-56.87872536666691,-57.228342331945896,-58.217072672210634,-59.164575782138854,-59.549272895324975,-60.04633448831737,-60.51545144151896,-59.592858591582626,-60.28716293955222,-61.25783235626295,-62.183142027352005,-61.92845076136291,-62.03308197297156,-61.930042570922524,-62.71997133875266,-63.56779783591628,-62.87125812517479,-62.95455355383456,-63.284876317251474,-63.234859853982925,-62.741324617527425,-63.59039760939777,-62.88752803532407,-62.268847074359655,-61.830073858145624,-61.17163582984358,-61.59538836311549,-61.513548085000366,-62.27662830101326,-63.21861567301676,-62.87582176644355,-62.717801925260574,-63.481527966912836,-64.01991768460721,-63.667454252019525,-63.153513132594526,-63.94659565668553,-64.60132535547018,-64.0584817524068,-64.16166208405048,-63.6830424843356,-63.388151201885194,-63.4887694362551,-64.38605376472697,-64.9896935261786,-64.3546093609184,-64.90185044286773,-64.91078649787232,-64.97470539389178,-64.03509087627754,-63.313299706205726,-63.155808489304036,-63.80786595121026,-64.36995849618688,-64.08739405218512,-64.7476505623199,-64.31307416688651,-63.4959642267786,-62.801933970768005,-61.97409925283864,-61.010048910044134,-60.43222380196676,-60.59908274933696,-59.7022208487615,-58.74000780750066,-59.04894424416125,-58.35357402916998,-58.219651699997485,-58.90540596982464,-57.94114569295198,-58.12080720812082,-58.804433109704405,-59.043672072701156,-59.34519507177174,-59.125605340115726,-58.25634934194386,-58.36608246015385,-57.503929579630494,-57.08289708243683,-56.42470167251304,-55.42721769120544,-55.107509795576334,-55.83766147354618,-55.56740565923974,-55.33549567312002,-55.19594713347033,-54.43227311223745,-54.33364700851962,-54.09277115389705,-53.51148021733388,-52.74884241865948,-52.530560050625354,-52.53827240737155,-51.913499215152115,-51.14521531295031,-50.41939841210842,-50.49235906731337,-51.30339598143473,-51.46890119370073,-51.5702452477999,-52.33466990292072,-53.23794190818444,-53.978172534611076,-54.208047124091536,-54.76090365462005,-54.732612104620785,-55.509779459796846,-55.23878422565758,-56.083800787106156,-55.9346282905899,-55.055924667045474,-54.30052196839824,-54.61515727546066,-54.026065706741065,-54.673796211835,-53.91086815064773,-53.79258310981095,-54.0430636331439,-55.026097119785845,-55.596848231274635,-54.737672415561974,-55.11943056061864,-55.2074929359369,-55.6050163526088,-55.6490607294254,-56.32261288026348,-56.66306827170774,-56.73034706758335,-56.88167274184525,-55.931392612401396,-55.23099530255422,-54.323348347097635,-54.33657945692539,-54.696979713626206,-54.54048231942579,-55.32029183907434,-56.004295222461224,-55.82973731728271,-56.02105899294838,-56.03052743850276,-56.128992442041636,-56.46204125415534,-55.97430048137903,-55.40035639517009,-56.39078578352928,-56.46085586119443,-56.64366831025109,-56.496973246801645,-55.68912560958415,-56.47653511771932,-55.718523303978145,-55.60380738740787,-56.14511984074488,-56.772012897301465,-56.355789561755955,-56.190815151669085,-56.05531865730882,-56.39787714835256,-55.93266935925931,-55.73479175334796,-55.17186187999323,-54.831748116295785,-54.65834968816489,-53.90519763622433,-54.80220557656139,-55.15384820615873,-56.07996157044545,-55.34161115856841,-56.055019854102284,-55.91132583748549,-56.44861875940114,-56.18343816976994,-56.0148221058771,-56.32237439136952,-56.89383483119309,-56.571774010080844,-56.47160160727799,-55.60029916651547,-55.73632656317204,-54.86542537948117,-55.60357488365844,-55.160548803862184,-54.39035978820175,-53.83568018209189,-52.925944650080055,-53.8989752875641,-54.823606081772596,-54.485324756242335,-53.959703085012734,-54.31441980972886,-53.3627374204807,-53.85772364353761,-53.21429334022105,-52.80216473760083,-52.66536669712514,-53.13817406911403,-53.3409886918962,-53.71755406120792,-53.960067559964955,-54.34566349070519,-54.24766910634935,-54.22282783361152,-53.43097105063498,-53.161355094984174,-52.189005566295236,-51.78543496923521,-51.11250472953543,-51.40914733754471,-52.27172067249194,-52.224237942136824,-51.7170401266776,-52.15336607955396,-51.976009933277965,-52.349670237861574,-51.38033581478521,-52.161952822003514,-52.22268517175689,-52.3611908191815,-51.444992689881474,-50.81451529124752,-50.646598600782454,-51.33075796952471,-51.19683595607057,-50.64955088449642,-50.944937888067216,-51.136697206646204,-51.8485439484939,-51.44563373783603,-50.767335654236376,-51.706611956469715,-52.67659424711019,-52.39692222792655,-51.50764628406614,-51.159932010341436,-50.301837562117726,-50.40366703690961,-49.53631015820429,-49.87099859165028,-49.47036496177316,-50.164708947297186,-49.608273735735565,-48.860234123189,-49.32261784793809,-49.41442217119038,-49.1076644374989,-48.255059578921646,-47.4966841917485,-48.35123744793236,-48.151284804567695,-47.541944444179535,-47.985171048436314,-47.80120347440243,-47.45566377323121,-47.681459065526724,-46.8994821254164,-46.19324093963951,-46.56446732953191,-45.61509346636012,-46.58623379468918,-47.568288704846054,-48.509882248938084,-49.293478599283844,-48.68019952299073,-48.4608096270822,-48.235988680273294,-47.7933637611568,-47.937176496721804,-48.20391347259283,-49.1534403716214,-49.00492190849036,-49.146913941949606,-50.06384467147291,-49.44597991555929,-50.03733172826469,-50.92489455267787,-51.902994182892144,-51.36900711618364,-50.630529979709536,-50.1182352071628,-50.36793599044904,-50.13750734133646,-49.19738433370367,-50.024163604248315,-50.95564894378185,-51.3448582040146,-52.14410673407838,-52.54046587785706,-52.16482922853902,-53.1599878501147,-53.51202375208959,-53.962630779948086,-54.46862370939925,-53.647126665338874,-53.69177375873551,-54.3754892218858,-54.308434766251594,-54.189331081695855,-55.09863765724003,-55.894536135718226,-56.51017248351127,-56.019674538169056,-55.51389953773469,-54.66458800062537,-54.11916169337928,-55.08264640485868,-54.405652419198304,-53.40772424917668,-54.12997604161501,-53.69595845928416,-54.49077898543328,-54.473739656154066,-53.65387254720554,-52.99149757018313,-53.52396210376173,-53.89711790997535,-53.070544944144785,-53.35307285375893,-52.47205175831914,-51.739801187533885,-52.67257378343493,-51.904392461292446,-52.36694777524099,-53.26773223374039,-52.45155183272436,-53.43977607274428,-52.73847865778953,-53.28564491728321,-53.33882462326437,-53.369781711138785,-53.278216106817126,-53.025543096940964,-53.49451056914404,-52.690349833108485,-52.22074684686959,-52.22278803307563,-52.3742190906778,-52.904527872335166,-53.53399892617017,-53.34103430528194,-54.01532503310591,-53.85897638089955,-53.580098911654204,-54.1077335732989,-53.90061700576916,-53.486443899571896,-53.80678237089887,-54.33624224597588,-53.941277204081416,-54.34791436837986,-54.162012085318565,-54.7110774628818,-55.57040185946971,-56.46903316816315,-55.857320085167885,-56.11589163169265,-56.73004431929439,-55.937819888815284,-56.63868012605235,-56.58611076325178,-56.87653914745897,-56.64878783002496,-56.04165338119492,-56.690794503781945,-56.5613417038694,-56.58392778597772,-56.18039525905624,-55.28373070061207,-56.11650907853618,-56.179694088641554,-56.18296416476369,-56.12322577368468,-56.43466341448948,-56.89255262026563,-56.88563472451642,-56.539463146589696,-55.96190067008138,-55.129884026013315,-55.39927219087258,-54.679526903200895,-53.84929467365146,-52.933324770536274,-52.309751535300165,-52.14553313795477,-51.2748133726418,-51.84143674233928,-50.89452440850437,-51.102244053035975,-51.05905942758545,-50.575136717408895,-49.940653182100505,-49.62919952115044,-50.081373014487326,-49.86240310035646,-49.42420571250841,-48.809863621369004,-49.08967472007498,-49.90755981951952,-50.230616382323205,-49.466962984297425,-50.33310261461884,-51.31550795491785,-51.78260160330683,-52.09256478631869,-53.02192162675783,-53.38638725038618,-53.80835301615298,-54.764607234392315,-54.44686458539218,-54.47713008336723,-55.08841247484088,-54.68912681750953,-54.85546029685065,-55.50993732875213,-54.834715323057026,-55.5244451710023,-54.77131039602682,-54.7874681330286,-55.540666667278856,-55.95094852661714,-56.839016830548644,-57.51188861578703,-57.48269816674292,-57.264607588760555,-57.16516930330545,-57.140598041471094,-56.63990331860259,-56.112891079857945,-56.63534983899444,-55.787506476044655,-55.878758892882615,-56.22421023668721,-56.041633505839854,-56.74073295528069,-56.94580063968897,-57.62788637401536,-57.12945581693202,-56.4489379003644,-56.95883042784408,-56.59168206946924,-57.42736611049622,-57.047594693955034,-56.737916491460055,-56.19698866689578,-57.0269970363006,-57.22719920380041,-56.61413476476446,-57.5561232236214,-57.426509774290025,-57.36057967925444,-58.19560412643477,-59.12336583994329,-59.15917667374015,-59.988457292318344,-59.445452098269016,-60.02953563025221,-59.092066255398095,-58.158384098205715,-57.47110630013049,-57.63785094348714,-58.12817933410406,-58.943868063390255,-59.44720308901742,-58.834987559355795,-59.42356711206958,-58.45930423028767,-57.4952224381268,-56.892140863928944,-56.502130062785,-56.133025052491575,-56.86983607057482,-56.921401294413954,-56.71563057368621,-57.29544897470623,-58.159924847539514,-58.120644758455455,-58.27441080566496,-57.36004246305674,-56.41881757741794,-56.414922091178596,-56.139139267615974,-56.86605846229941,-57.272256947122514,-57.83070350764319,-57.73243887210265,-58.091678065713495,-58.105894905515015,-57.76496506854892,-57.85678789159283,-57.79975118814036,-57.20264952490106,-57.82294065738097,-58.384794887620956,-59.27657530410215,-58.78902412671596,-59.333451251965016,-59.75373389897868,-60.62530870875344,-59.880146687384695,-59.298645331989974,-59.048862046562135,-59.29848173400387,-58.95528832823038,-59.39278002642095,-59.89929441967979,-59.24645276507363,-59.75620348472148,-60.51802867278457,-59.980117642786354,-58.98879173444584,-58.23052389873192,-57.45450649317354,-56.99601052282378,-57.189271251205355,-57.3624479342252,-57.90421876963228,-58.695977464318275,-58.715257252566516,-58.04584074486047,-58.144366898108274,-58.52185932779685,-58.911365328822285,-59.58157520648092,-59.97254851134494,-60.56656529288739,-60.84936587931588,-61.567363237496465,-61.935262616258115,-61.27770911762491,-62.040936768986285,-62.224473893176764,-62.51857083104551,-62.614258172921836,-63.38485881732777,-62.417784083168954,-62.1160925058648,-61.402112073265016,-62.17784335138276,-62.85681204125285,-63.72857802780345,-64.49291485361755,-63.59844860434532,-63.33169420575723,-63.61740434356034,-64.12115728622302,-64.37257221341133,-65.18363537406549,-65.65770485578105,-65.85817075613886,-64.87604240514338,-65.18818111717701,-65.72497876826674,-65.66063633700833,-66.06878383923322,-65.75360545236617,-65.6181717007421,-64.80514364596456,-64.65640978654847,-64.32515156827867,-64.80812854738906,-64.32623663172126,-63.39794656354934,-64.20976529596373,-64.12871435424313,-64.98942823382095,-64.42306897137314,-63.77740705618635,-63.65013601211831,-63.45467355521396,-63.131808216217905,-62.6632619141601,-63.577587561216205,-64.53764652227983,-63.99235103512183,-64.48984520928934,-63.802469664253294,-64.64001635322347,-65.57097336091101,-64.96250704629347,-64.03632650570944,-64.95734143443406,-64.7238500569947,-65.23163373954594,-64.46056809555739,-64.28106403024867,-63.313493449706584,-63.49630875559524,-63.07752846367657,-62.86603956995532,-62.96981802629307,-62.680266169365495,-62.82422228669748,-62.73998722108081,-62.843322393950075,-62.4421179513447,-62.220429714303464,-62.5577304107137,-61.672450496815145,-60.73127679200843,-61.700922154355794,-61.70846839714795,-61.61738041555509,-60.973593027796596,-60.45577748911455,-60.43992008501664,-59.958580430131406,-60.93576108571142,-60.2121144128032,-59.531063977163285,-60.28566005080938,-60.01502723572776,-60.69071906758472,-60.31704960297793,-60.38191200513393,-59.61261060833931,-59.65202021738514,-60.21301047177985,-59.83738425839692,-60.27347333310172,-59.86728142155334,-60.70248193060979,-60.747445058543235,-59.97875984804705,-59.52352447574958,-58.90326637774706,-58.58258440764621,-57.77000865107402,-57.292063671164215,-57.14904549624771,-56.88591109076515,-57.49131045350805,-58.2222190098837,-59.168336511123925,-59.492035910487175,-59.85981757519767,-60.7443807516247,-61.32918269885704,-62.328052781522274,-61.99324512947351,-62.71984030585736,-62.570219156797975,-63.33012035489082,-63.30600373074412,-63.42697341600433,-64.05933020217344,-64.3914288985543,-64.28783461172134,-63.43726147292182,-63.15159619599581,-63.648956729564816,-64.1914564659819,-64.25211464148015,-64.40220262855291,-64.94497489416972,-65.90892661176622,-66.66192844230682,-67.54145965073258,-67.33056123601273,-67.51236875029281,-67.60973465209827,-68.33277567662299,-69.27368487278,-68.63910353463143,-68.93612825172022,-68.73823519516736,-68.90911612613127,-68.16230236319825,-67.86237101024017,-68.26459131576121,-67.8966780975461,-68.66944952355698,-67.71512222802266,-67.52005315152928,-68.48156376648694,-67.83974939398468,-68.58223591931164,-67.8863928457722,-67.90538484184071,-67.07454452989623,-66.44439347600564,-67.03613065555692,-66.3402136862278,-66.65592550626025,-67.20883040176705,-67.90642861323431,-68.74860023893416,-67.92056358978152,-68.13608867488801,-67.63444586331025,-67.100302381441,-66.18213869864121,-65.33914486225694,-64.62507472513244,-64.05146790435538,-64.63174626929685,-63.710079034324735,-62.90211604675278,-62.769341418519616,-63.68031454645097,-64.31830623745918,-64.05015509482473,-64.75916997157037,-64.04474782338366,-64.66942994296551,-63.68817486381158,-62.82478271378204,-62.503957230597734,-62.09612820763141,-62.996600398328155,-62.95225853193551,-62.859659479931,-62.06428319774568,-61.303620115388185,-61.866211203858256,-61.27466322807595,-61.104769931640476,-61.042681666556746,-60.428797089960426,-60.76740064332262,-59.94200582569465,-59.844803290907294,-58.93593611288816,-58.53453586669639,-59.311297009233385,-60.264418644830585,-61.214063327759504,-60.431740660686046,-59.941166213713586,-59.15900354925543,-59.043833542615175,-58.688523947726935,-58.93308820202947,-59.354878523387015,-59.178688902873546,-59.07882983982563,-59.063657459802926,-58.6721036285162,-58.85486951470375,-59.28156458772719,-58.92383335484192,-58.29850292252377,-59.03565507521853,-59.25640092184767,-58.51151142269373,-58.18471853900701,-58.96741569554433,-58.50503455894068,-58.76635126536712,-58.407690898980945,-57.7909044502303,-58.143820114433765,-57.727346698287874,-57.42065966455266,-57.78551057679579,-58.59260333655402,-58.4950371212326,-57.776986540295184,-58.02691024867818,-57.372718334198,-57.850090470165014,-57.549766649957746,-56.85629253042862,-57.15196744399145,-58.05654162634164,-57.54090494196862,-57.712354585994035,-58.293438154738396,-57.79648551857099,-57.62249630689621,-57.822302963119,-58.56873529450968,-59.1160604916513,-59.04927659640089,-59.04317637113854,-58.83959875442088,-58.034547769930214,-57.263627958949655,-58.116460755001754,-58.839268549345434,-57.93340854020789,-58.6788374716416,-59.54945195885375,-60.53229420399293,-61.11105755995959,-61.126648688688874,-61.77908523892984,-61.375304711051285,-61.2287217695266,-61.380631221458316,-61.698056627530605,-61.281910048332065,-61.65192746929824,-62.44016800587997,-62.12824831623584,-61.220919402781874,-60.41206142492592,-59.4241011403501,-58.78980061272159,-59.6471307836473,-59.53113169269636,-59.8358192788437,-60.607252875342965,-60.335081226192415,-59.876221966929734,-60.726612674538046,-60.86940010683611,-61.71836953936145,-61.877910015173256,-62.82360874954611,-62.82558666262776,-63.57601179135963,-64.53341837506741,-65.33307547029108,-64.61294011026621,-64.13920145202428,-64.75157360825688,-65.57388421753421,-66.06440605316311,-66.6111099999398,-65.94960710499436,-65.31996174203232,-65.99033796275035,-66.31134994374588,-66.6128404145129,-66.74585533794016,-65.93983266409487,-66.39437367767096,-66.23001227993518,-66.77928134053946,-66.00800788914785,-65.01331160170957,-64.03708915412426,-63.07466556830332,-63.128427441231906,-62.56933739921078,-63.06852642307058,-62.54156323289499,-63.427862986922264,-62.63299793936312,-61.72533635888249,-61.58068258408457,-62.56848155800253,-63.01197148812935,-62.07497254293412,-62.67653142195195,-62.659366499166936,-62.98687299480662,-62.57342561893165,-62.706238095182925,-63.5627130176872,-63.60964229796082,-62.92912194831297,-62.01845244131982,-61.03744730493054,-61.41715955780819,-61.37403667066246,-62.17176193743944,-61.306380034890026,-62.16641931934282,-63.04136504745111,-63.34969475353137,-64.21124035818502,-64.2378481621854,-63.675352717749774,-63.721815816126764,-63.53245104663074,-63.07991945557296,-63.34593700245023,-64.11562107782811,-63.80288268998265,-63.584142208099365,-63.86184225324541,-63.77596046589315,-62.79282771842554,-63.61845078645274,-63.48486589314416,-63.22675927495584,-62.38189049158245,-62.47983840061352,-61.932878602296114,-61.022925552446395,-60.491364866960794,-60.52746255323291,-59.70642852270976,-60.52160350093618,-59.921044550836086,-60.34269473981112,-59.55190639849752,-59.265354197472334,-59.23670642916113,-58.4131765156053,-57.494038115255535,-58.12793601397425,-58.170971407555044,-58.57185855600983,-58.596310670953244,-59.19474139297381,-58.44135205820203,-58.09008136577904,-58.40169978141785,-57.91237143194303,-57.628461164887995,-57.01669671898708,-57.568717503454536,-57.459674085490406,-57.97931782994419,-58.70643530506641,-59.17776742298156,-58.68800814496353,-58.51248793210834,-59.21652027312666,-60.121831614524126,-60.76100748591125,-61.38993417611346,-62.09211332304403,-62.08571803942323,-62.27221534913406,-61.462321002501994,-62.3897942379117,-62.05190500058234,-63.04314909968525,-62.87925184099004,-63.49948686687276,-63.15327425766736,-63.08890227181837,-62.66441898373887,-62.103915460873395,-62.99870591284707,-63.46621546614915,-63.02847231877968,-63.13220942998305,-62.95602943375707,-63.39497408410534,-62.803832763805985,-63.18654196476564,-63.7806362779811,-64.0819803988561,-64.31522636208683,-63.97067912155762,-64.82703119469807,-64.23333137854934,-65.14908634778112,-65.25648797815666,-65.0965220713988,-65.03900125762448,-64.17970495391637,-64.07751837698743,-64.77563373045996,-64.68230630084872,-64.04416164988652,-64.54249933222309,-64.99668286694214,-64.01417143875733,-64.93453881703317,-65.84877625247464,-65.54621748300269,-66.07690100604668,-66.31523340661079,-66.32960127713159,-65.8997357133776,-66.76510854251683,-67.07695400109515,-67.79848612425849,-68.37777527188882,-68.41244670469314,-68.46329134330153,-67.47215088596568,-68.46527307480574,-69.24657405214384,-69.36244957242161,-68.52969251852483,-68.65158834820613,-67.73574013076723,-67.26550905965269,-67.82153960224241,-67.48543640831485,-67.81235443614423,-68.53370507899672,-69.08349011605605,-68.99431443447247,-69.88035453436896,-70.68317228369415,-70.50681626191363,-70.02532374253497,-70.64686300419271,-71.18085349816829,-70.43581632431597,-70.48023695498705,-69.98019261891022,-69.13737027114257,-69.38931529363617,-69.68959974776953,-69.78467087214813,-70.28051283117384,-69.63221349660307,-69.41557605704293,-69.2541040070355,-69.14902371354401,-68.9918648400344,-69.28397836815566,-68.40725731337443,-67.89114681258798,-67.7190159629099,-66.9081868454814,-67.48421456851065,-67.28706902870908,-66.77949158707634,-66.27722934866324,-66.57708881702274,-67.25184586830437,-68.16992944572121,-67.79650835925713,-68.56921368977055,-69.20613957149908,-69.95522605907172,-69.20874774549156,-68.4039250696078,-67.83290350669995,-68.66473512398079,-68.97694526519626,-69.87066883267835,-70.80529473675415,-70.93785746535286,-71.23105108598247,-70.84200702235103,-71.78673414047807,-72.64609005302191,-72.29994519194588,-71.30308946082368,-70.93069816101342,-70.96132388012484,-71.5852346457541,-70.73931943252683,-70.91127577517182,-70.95254470547661,-70.88927699020132,-70.47082595061511,-70.98110180487856,-70.27521140361205,-69.9993609492667,-69.22249527601525,-69.66755742486566,-69.87460178555921,-70.85403260821477,-71.64355716994032,-72.11990793561563,-72.7194285406731,-71.91856086533517,-72.27184153813869,-71.37107085902244,-71.57540697790682,-71.47821359755471,-72.2905130055733,-71.42803052347153,-71.95209545781836,-72.81140171224251,-72.89384960802272,-73.76586704375222,-73.99383701337501,-73.24887266056612,-73.18419427005574,-73.49916661158204,-73.27652382850647,-73.53947750106454,-72.75543933780864,-73.74041001452133,-73.80189053388312,-74.01967645529658,-74.44925771141425,-74.60489247599617,-75.59078493714333,-75.22932580998167,-75.45354379853234,-74.8900360558182,-75.8257833942771,-74.82695935992524,-75.76614711433649,-75.11148197948933,-75.52810277603567,-75.22937315981835,-75.6759965592064,-75.0932437623851,-75.97180316550657,-75.51107049081475,-76.07132849097252,-76.36882470129058,-76.06820243177935,-76.74257942661643,-76.85174595750868,-76.4645053613931,-75.49068432534114,-75.6917385798879,-74.95227344473824,-74.21702590864152,-73.51987584680319,-74.44740912178531,-74.64090773602948,-74.50288199912757,-75.49095936538652,-74.67594161909074,-74.52459704503417,-74.46998765971512,-73.62458849651739,-74.12107795989141,-74.09873630106449,-74.21794308302924,-73.27397361630574,-72.45645126141608,-71.97174343885854,-71.45807627122849,-71.05825350945815,-71.5922586871311,-71.08847112068906,-71.44921017158777,-70.70552892098203,-70.64335130620748,-70.11353347357363,-70.3010328905657,-70.91515299258754,-70.79882988333702,-70.08459175704047,-70.2778130332008,-70.2822629888542,-70.78965192846954,-71.1347761489451,-71.43521997705102,-71.65221199393272,-71.58953119860962,-71.06078760372475,-71.40607887879014,-70.67038699192926,-70.70864645158872,-71.68992956075817,-72.2548242257908,-72.55463527562097,-73.41828282456845,-73.59601096669212,-74.10258188610896,-73.12311261892319,-74.11775328498334,-73.99177176645026,-73.80055816704407,-74.24345395341516,-74.55717689497396,-73.72506767045707,-73.90030485903844,-73.1780963530764,-72.8686518613249,-72.50402751658112,-72.45890164608136,-72.32011013058946,-72.58309681806713,-72.98169161332771,-73.08129296125844,-73.82138051372021,-73.05603832984343,-72.71847357135266,-73.45056580053642,-73.50262568891048,-74.17388428421691,-74.42730282386765,-73.86955356318504,-73.47568846307695,-74.27124345535412,-74.13702018233016,-74.4831255772151,-73.97464836575091,-73.84026122326031,-73.70194919547066,-74.55965158296749,-75.29399324161932,-74.66427847277373,-74.3288713102229,-75.22572659607977,-74.61606214940548,-75.18738885549828,-76.08535855589435,-75.23946097772568,-74.47769049322233,-74.45370103837922,-74.2820142400451,-74.46913185343146,-75.35107116913423,-74.53530827024952,-74.26693496014923,-74.6934517333284,-74.90502561395988,-75.6454321150668,-76.21159412479028,-76.78204239858314,-77.06839563464746,-76.07716348022223,-75.82844729302451,-75.58878917666152,-75.60163617599756,-75.78303626133129,-75.27139463461936,-76.05258243717253,-76.00119901029393,-76.44178792275488,-76.2025310373865,-76.12923929328099,-75.21496207918972,-74.66700129210949,-74.21255537634715,-74.14027645764872,-74.41470299148932,-74.27488689683378,-74.76099308906123,-74.57344293128699,-73.60859194584191,-73.53735818946734,-74.13539692712948,-73.6312214685604,-73.10864719050005,-72.64332264568657,-72.99312682868913,-71.99418858531862,-72.80744911078364,-72.12093093805015,-71.80012314300984,-71.95164021337405,-72.68807271262631,-72.81260244268924,-73.04950586566702,-73.58075912529603,-72.81325839739293,-72.40185353579,-71.44466167036444,-71.73850537417457,-71.11247382452711,-71.82915525324643,-71.84301172522828,-72.16820843424648,-71.90487365797162,-72.73164381179959,-72.50925029767677,-72.6246020286344,-72.86496305046603,-71.92503986135125,-71.28620827803388,-72.0559826027602,-71.3608641908504,-72.16625086031854,-71.62916979426518,-71.63506873277947,-71.7317201406695,-71.45411125198007,-72.42221280839294,-72.7223499044776,-72.98342445679009,-73.68073992291465,-74.18143147882074,-74.49089845316485,-75.36080244323239,-75.04241820378229,-74.45628426596522,-73.51855560205877,-74.21560110803694,-75.04959740582854,-74.90879607386887,-74.67936852760613,-73.75323269702494,-74.51979580009356,-73.92970851855353,-73.76654962310567,-74.1706436467357,-74.12991910707206,-73.32185210986063,-73.44827410019934,-72.7505896044895,-73.73676474858075,-74.44195871287957,-74.61562842177227,-75.18713000323623,-75.1932673486881,-75.7703794487752,-75.87987407296896,-76.6869729864411,-75.76208336418495,-75.8707346576266,-75.7004638290964,-76.57325505558401,-76.6819846672006,-76.50434497650713,-77.29660766944289,-76.31094684638083,-77.26318185124546,-77.47579536866397,-77.71359500754625,-76.95163326058537,-77.57957213558257,-77.19894857425243,-76.46706846775487,-75.6910732765682,-76.40270513482392,-77.26817368902266,-77.48243801807985,-78.17334279604256,-77.71089698420838,-77.34698183415458,-76.55747434776276,-76.09165809862316,-76.19345412496477,-75.90347172878683,-76.04993665684015,-76.7706400132738,-77.59850137727335,-78.3105789758265,-77.5349743287079,-78.14569049607962,-77.2890188456513,-77.21038971655071,-77.41287887049839,-77.50479838903993,-77.66083495272323,-77.08494986221194,-76.372563672252,-77.35021388204768,-77.59083653381094,-78.47850281884894,-78.54572171065956,-77.85781524004415,-77.99963950552046,-78.74409646447748,-79.6481112157926,-79.32129855128005,-79.2190234544687,-78.53980622906238,-78.77499418659136,-79.21613481920213,-78.21705221245065,-78.10000677779317,-77.86209553061053,-77.17482131719589,-77.04075055802241,-76.77988527342677,-76.48631103383377,-76.73388994624838,-75.86731394194067,-75.24724141089246,-75.60539540462196,-75.65059923706576,-76.45152515312657,-76.85996470600367,-76.3798318458721,-75.99918501451612,-76.52024605730549,-76.51873378129676,-77.50989384250715,-78.28809141693637,-79.20314595894888,-78.88901523547247,-79.11189125245437,-79.49143104627728,-79.91129439882934,-80.58218027604744,-81.3473566127941,-81.61527142114937,-80.81324837589636,-80.32355698291212,-80.0041911965236,-80.58349446253851,-81.3555683712475,-80.37089755292982,-80.15147689776495,-80.0890123960562,-80.16892771981657,-79.32893560966477,-78.35614913795143,-77.57272449554875,-76.7885736390017,-75.82513791229576,-75.20214461069554,-75.19386883312836,-75.46627065166831,-75.36832402227446,-75.6722010364756,-76.66983976680785,-77.14900202536955,-76.37456335965544,-76.20231972029433,-77.18820021860301,-78.13612502813339,-78.41700824908912,-78.04426495730877,-77.4726472091861,-76.78753864066675,-76.27306949393824,-76.45895976386964,-76.56300911633298,-77.25057007046416,-76.57003102311864,-76.74808885389939,-76.43333378946409,-76.01497438689694,-75.5021164957434,-76.04899030504748,-75.95377000560984,-75.72095409175381,-76.58935526525602,-76.41817598510534,-77.2915509911254,-76.67207637056708,-77.63700311491266,-78.2352129300125,-78.1224403702654,-78.94959807349369,-79.68878806522116,-80.50955885602161,-80.98423767415807,-80.77403026307002,-79.84641611110419,-80.79521905817091,-81.49524900689721,-80.95539379445836,-80.17011161940172,-80.24717262899503,-80.46889125788584,-79.4769524410367,-79.41981782391667,-78.94439668068662,-79.53621147107333,-80.30930646881461,-80.27890891209245,-80.71020855428651,-80.62531398795545,-80.18261903291568,-79.84132610168308,-78.96140499133617,-78.22384844254702,-78.57907349662855,-77.62709336495027,-76.66873189946637,-75.74420104641467,-75.47402294678614,-74.49306018883362,-74.21102288551629,-74.02498605335131,-74.66827945085242,-75.01688596606255,-75.20465987222269,-74.70648678950965,-75.03324814559892,-75.32423474593088,-75.29112917603925,-74.73716349992901,-75.52918298309669,-74.93794212397188,-75.93430569395423,-76.33216595975682,-76.28929934743792,-75.47649708529934,-74.59694888442755,-74.5261120214127,-75.3261644677259,-74.78176251007244,-73.93642494268715,-73.5054114004597,-72.62136729061604,-73.27675874531269,-73.41046753665432,-73.40904408274218,-73.56700727296993,-73.09752102289349,-72.47117182100192,-71.86333285737783,-72.2670857612975,-71.550880972296,-70.85609465977177,-71.1185638695024,-71.69636700954288,-71.82975912280381,-71.06194097874686,-71.13934494461864,-71.09096197318286,-71.5797719261609,-72.5105684781447,-73.20378236379474,-74.04462001100183,-73.11951443832368,-73.31274388311431,-73.18217180483043,-73.88459794782102,-73.41715980973095,-74.2513412842527,-74.39997962210327,-73.99301660247147,-73.57767887087539,-74.28386189648882,-74.08768275566399,-74.32599156629294,-74.95779175497591,-74.3235654043965,-73.82473337184638,-73.5946024232544,-73.8057386581786,-74.7051331885159,-75.14103147247806,-74.95098998304456,-74.93628107290715,-74.19481907226145,-73.76301454612985,-73.56245800293982,-74.44931846670806,-74.07629784056917,-74.79460156708956,-74.02353702532127,-74.25069209560752,-73.74545571254566,-74.27849004324526,-74.80333881638944,-74.57452951651067,-74.18726934120059,-73.26365644996986,-73.684461097233,-74.44521615095437,-74.05377591168508,-73.92322269454598,-74.20757614588365,-74.98177823144943,-75.89502310426906,-76.40179492672905,-76.699096578639,-76.74899183446541,-75.78272512555122,-76.32982326904312,-75.88968949392438,-76.75033215479925,-76.68918748106807,-76.06980975857005,-77.0489626810886,-76.43147220555693,-77.15090060373768,-77.36185818444937,-77.00753891095519,-76.9811241729185,-77.19919457333162,-78.10014440724626,-77.42551462864503,-76.44106118753552,-77.36353841656819,-76.83874313207343,-76.14896015357226,-76.45420597307384,-77.25108079286292,-76.91857428848743,-76.75803718110546,-77.39104241877794,-76.95119953667745,-76.57196988211945,-76.40214626118541,-75.41216129949316,-74.66861566901207,-74.38017476862296,-74.99306474765763,-75.92739377915859,-76.6212475085631,-77.4911030321382,-77.64991665631533,-77.26479386491701,-77.54820824880153,-77.02758982265368,-76.02872564503923,-75.93917005881667,-75.25646278494969,-75.824706078507,-74.86755873495713,-74.4629784990102,-73.78403109591454,-74.44221547618508,-73.6495427112095,-73.50524848792702,-72.62176536861807,-72.75690097408369,-73.31725222058594,-72.69370838766918,-72.18811897421256,-72.64083643862978,-71.94093802943826,-72.6599392592907,-73.46011316543445,-73.13189195469022,-73.0985016557388,-74.02530496707186,-73.82397312903777,-74.3751914598979,-73.4434639615938,-72.90447341930121,-73.15630809683353,-73.75934594217688,-74.73193778377026,-75.18366965744644,-75.38556044874713,-75.52816218044609,-76.233340525534,-76.70160514814779,-77.19236328499392,-76.23536538751796,-76.54076574882492,-76.9249127432704,-76.93314168369398,-75.96149059338495,-75.11919806199148,-75.18532809708267,-74.39813239173964,-75.14790699863806,-74.44328435324132,-74.6733129019849,-75.16812755865976,-75.06251216167584,-74.13581053772941,-74.02770661842078,-73.63092729449272,-73.91204942343757,-74.38190806750208,-74.89096866128966,-74.06366175459698,-74.51438457332551,-73.67415083572268,-74.44144992623478,-74.40447660163045,-75.3296480984427,-74.55280257156119,-74.71794093539938,-74.51216705702245,-75.07689230842516,-74.35716536547989,-73.94673474971205,-74.45280831912532,-74.71820816630498,-75.14498892892152,-76.11649439483881,-76.76100705144927,-76.69521107664332,-77.11907828086987,-77.90180692775175,-78.20748220104724,-78.27285882970318,-79.09646899905056,-78.80321672093123,-78.82772801397368,-78.78179509751499,-78.19614205183461,-78.63677994860336,-78.90738464752212,-78.28886712202802,-77.77935890480876,-78.44704643916339,-79.17178861005232,-79.53721985174343,-78.947773758322,-79.5677068294026,-80.19103011488914,-79.19354018336162,-78.9714759644121,-78.0251991036348,-77.45341524435207,-76.58813122380525,-76.18541251821443,-75.45528589608148,-76.16093996632844,-75.86308706225827,-75.39539105026051,-74.77802452165633,-75.5883299917914,-76.31872410094365,-76.64036839967594,-77.10802895389497,-77.6844301498495,-78.51383750326931,-77.5341748567298,-76.98089070012793,-76.44324484653771,-76.00630128150806,-75.25160127924755,-75.72425564238802,-75.15590080898255,-75.55024217488244,-76.14037950197235,-75.30248673632741,-76.29733963310719,-76.51458815485239,-76.12765353405848,-75.38683501351625,-76.28253904590383,-76.9913759524934,-76.59250658331439,-77.44480313174427,-77.9138511614874,-78.30232685990632,-77.4196569211781,-77.81045552622527,-77.897225770168,-77.15781856747344,-77.28444618685171,-77.25270507158712,-76.39300393499434,-77.27344085276127,-76.58936610072851,-76.27497281925753,-77.00253478484228,-76.94217073917389,-77.55091312061995,-78.1743712243624,-77.55172770470381,-76.89767594821751,-76.95363518223166,-77.73656353494152,-78.64684508135542,-78.36280073272064,-78.67134284134954,-77.72079001087695,-77.36881571123376,-76.84102385072038,-76.41838427400216,-76.14576841471717,-75.64165214356035,-74.82231007516384,-74.39787708641961,-74.13924844982103,-74.61536766588688,-74.5497613796033,-73.69048961484805,-74.00643279962242,-73.58674470614642,-72.89028799394146,-72.26986191049218,-72.21514557534829,-71.90437741717324,-71.53008042089641,-71.11185851087794,-70.24541611550376,-69.32318603806198,-69.03588595520705,-69.99543621065095,-69.63383588800207,-69.28953929524869,-69.08144713519141,-69.81328743929043,-70.50284634670243,-71.38046033401042,-71.16057960689068,-71.00348526984453,-71.02207993902266,-70.17612225888297,-69.73273027082905,-70.09880475932732,-69.86147695221007,-69.13518441421911,-69.14747250126675,-69.49577252566814,-70.33700315607712,-69.5487038968131,-69.59307280369103,-69.73749570176005,-69.94188359891996,-70.70138284983113,-70.32328314427286,-70.26826058607548,-70.91714604757726,-70.12562279589474,-71.07028975570574,-71.54356392845511,-71.71570713724941,-71.81953396787867,-71.31500485679135,-70.60005101934075,-71.57369370339438,-70.7581153055653,-71.31094779679552,-71.42089179158211,-71.05070386640728,-71.23150143492967,-70.47793880850077,-71.17672908678651,-71.94476616987959,-72.19220705190673,-71.22294678259641,-70.89157948829234,-70.4380655232817,-69.6885107443668,-70.35530922561884,-70.65557958232239,-70.59855765476823,-70.121410027612,-69.31956040440127,-68.78068728744984,-69.17843226715922,-70.05017868056893,-69.71771560097113,-69.292054196354,-69.14143402595073,-69.67249335953966,-68.9092723056674,-69.25063932267949,-69.32787056127563,-68.49962559668347,-69.01029184740037,-69.96212888043374,-70.55156647227705,-71.36625199066475,-70.43884299928322,-71.21818602085114,-70.79555368470028,-71.2366256644018,-71.27423345390707,-71.2692952142097,-72.06434397678822,-72.23931032046676,-72.79291154490784,-73.37685608258471,-73.68802050827071,-73.11348546715453,-73.7586054163985,-74.01435928419232,-74.35937119508162,-73.4421770828776,-72.45882526738569,-71.47088145604357,-70.71309713460505,-70.09670697478577,-69.24992442736402,-69.45576673001051,-69.49921585572883,-69.94673683401197,-69.59407241316512,-69.80442259320989,-69.94626862322912,-70.71084687905386,-70.2349299537018,-70.89855069294572,-70.27036980260164,-69.4531467705965,-69.72953026928008,-70.49308201298118,-69.86608010344207,-70.84572142828256,-70.44339265022427,-71.28736648289487,-70.81201655231416,-70.2857254021801,-71.10362749453634,-71.79272894887254,-71.92161701619625,-72.47058450756595,-72.68809646135196,-71.90312274545431,-71.93907238449901,-71.81412770366296,-72.18191848928109,-72.67040001042187,-72.42759187566116,-72.727160602808,-73.60782594280317,-74.57786819990724,-75.49996604258195,-76.461965769995,-77.0011043571867,-76.20570215582848,-76.05920845083892,-76.84473693976179,-77.64910138444975,-78.39849256444722,-79.12240250874311,-78.51344515616074,-78.54483683453873,-77.79785514622927,-77.49038036214188,-77.08050732221454,-77.32803395576775,-77.92673734994605,-78.62905114563182,-77.73156870855018,-77.62713855225593,-77.02303811209276,-77.77093706466258,-77.0444130632095,-77.26415525004268,-78.0942597524263,-77.9215232366696,-77.49154389323667,-78.02087702555582,-78.22751497570425,-79.09336145175621,-79.21006088890135,-79.06693530641496,-78.27950631082058,-77.65251749102026,-78.15704306121916,-78.87955170823261,-78.8050946611911,-79.63409279379994,-79.2479685000144,-79.12320060376078,-79.74926533829421,-80.09036486735567,-80.00384695455432,-79.60820553731173,-78.94899337273091,-78.495738403406,-79.20989326620474,-80.14918932877481,-79.15063476422802,-79.83710888354108,-80.23852898087353,-79.73228384787217,-79.93026908906177,-80.69107391592115,-80.41728731850162,-79.50558796012774,-78.65190177457407,-78.37261906685308,-78.0277140182443,-77.19532493362203,-77.12765371985734,-77.88973894668743,-78.25434137647972,-77.36032967921346,-76.99284200463444,-77.59063360420987,-77.58971876790747,-76.7455543433316,-76.47082333453,-76.84928128449246,-76.56703371880576,-76.39503373391926,-77.23719234764576,-77.91002028714865,-78.16007146332413,-77.55526673980057,-77.44458998320624,-77.55226848134771,-78.43839208548889,-79.3464428964071,-79.02875376632437,-79.8272720426321,-79.70473292237148,-79.32276440644637,-79.39973866427317,-79.26943235425279,-79.83079638332129,-79.23071785829961,-79.21658623218536,-79.89238045038655,-80.22953419573605,-80.99951744824648,-81.72585977753624,-81.20493152970448,-80.6318369237706,-80.80089705856517,-81.7550207041204,-81.13376303669065,-81.86247398937121,-81.70091196056455,-81.62425066903234,-80.8117244867608,-80.77802320569754,-81.23512440593913,-81.42379542253911,-81.61373945558444,-80.81035542627797,-79.8444679188542,-79.12913898285478,-79.31849116785452,-78.75100913178176,-77.77812256198376,-77.8365376596339,-77.59257710166276,-78.38100257143378,-77.60776858404279,-77.8102976330556,-77.12142188847065,-76.62750920373946,-77.26228687213734,-78.19586915755644,-78.93672193353996,-78.33516395045444,-78.28830322949216,-78.8987394827418,-78.11189383175224,-78.19404179602861,-78.39013954019174,-79.17538526607677,-78.22230803454295,-77.9632179075852,-78.64986625034362,-79.07001013867557,-79.12472022604197,-78.85131702618673,-78.19581200601533,-78.3473090250045,-79.33265182701871,-79.59249081742018,-78.73740243678913,-78.22738776588812,-78.59603173146024,-78.29909001663327,-79.15082031255588,-79.96016558818519,-79.49172970745713,-80.27272406360134,-79.62576612830162,-80.23150788899511,-79.63126889709383,-79.2906141653657,-79.69021252170205,-80.66996732540429,-80.07013507047668,-79.94982693297789,-80.34600618714467,-80.2585037285462,-80.25746586266905,-80.54911911999807,-79.95938191236928,-79.61011624149978,-79.10905554890633,-79.84312869422138,-80.28222851688042,-80.30013108300045,-79.57942015724257,-79.25147656956688,-78.38833513995633,-78.87191218789667,-78.15242806077003,-78.64659270411357,-77.66228044265881,-76.81523658987135,-77.28801589272916,-76.75876002432778,-76.75136817386374,-77.14880246762186,-76.51190819498152,-76.5083052944392,-76.42099448759109,-75.60746615799144,-75.53754833433777,-75.58529406553134,-76.29304671706632,-76.90388750424609,-76.5861673830077,-77.36561717512086,-77.85938482917845,-78.72905142698437,-77.98156514298171,-77.74911458045244,-78.26729652611539,-78.56558765145019,-78.5433209426701,-77.82004444021732,-78.12778567755595,-77.53413730394095,-78.27734306501225,-78.64539057621732,-77.68065960379317,-77.26351770805195,-77.10695288795978,-76.58385852351785,-77.31864056689665,-77.50151513610035,-77.18981414055452,-76.61833700258285,-76.34290271345526,-76.29125778283924,-76.39771125419065,-75.44148594792932,-75.9465446700342,-76.0942032430321,-75.7306215474382,-76.13049196032807,-75.43257752200589,-75.81948270695284,-75.68392425822094,-76.64768182532862,-77.16740762162954,-76.33484815014526,-75.83944043004885,-76.31828524498269,-77.23535554856062,-77.54346011206508,-77.54278785455972,-77.52409475576133,-77.73296472197399,-78.49887071084231,-79.37324184598401,-78.61756521649659,-78.79726281855255,-79.65717564057559,-78.9577179546468,-78.64136828901246,-79.21742801414803,-79.68565022712573,-79.78476295573637,-80.64331070147455,-80.55478155519813,-80.14805103093386,-79.7197034675628,-79.87789822230116,-80.0644017145969,-80.09118449455127,-80.54103079577908,-80.25574441533536,-79.34984225360677,-78.51080252276734,-78.56062353542075,-78.52958330418915,-79.49669899651781,-79.61283971741796,-78.9744355622679,-79.15764996642247,-79.9557839287445,-80.62367245880887,-80.2565725389868,-80.58726488146931,-81.54279393143952,-82.29745065886527,-81.4078427311033,-80.67619210388511,-80.74349260423332,-81.24014798738062,-80.29754521185532,-80.32552775740623,-79.92661413643509,-79.41865115379915,-78.9675564863719,-79.31316910078749,-78.49651451548561,-77.6693172082305,-77.32476268289611,-77.0704110050574,-76.98077391041443,-76.74567562807351,-77.53591971891001,-78.08925485098734,-78.44157655071467,-79.02467869687825,-78.40055619599298,-79.27057044953108,-79.4041419448331,-79.02100151591003,-79.92352675134316,-79.02624629950151,-79.59143219003454,-80.41351315239444,-80.37943828804418,-79.68075050925836,-79.4867737563327,-79.05711448471993,-79.67492298875004,-80.2534674173221,-79.86596035119146,-79.16664165258408,-78.92240530019626,-78.93880612356588,-79.60646877530962,-79.54586230497807,-79.94544191798195,-79.90191593952477,-80.28136749053374,-80.67377204401419,-81.43647342734039,-81.32092200033367,-80.89491578936577,-79.95329113909975,-80.64024476055056,-80.2293602465652,-79.34719804115593,-79.82303451700136,-80.31195703940466,-80.19643862592056,-79.7169103557244,-79.81105339387432,-80.4639954441227,-79.59708445053548,-79.75094277085736,-80.67228938173503,-81.34878921927884,-81.3517282018438,-81.50056297238916,-81.42529179668054,-81.48914544377476,-82.12408925080672,-81.45581033313647,-82.15938336355612,-82.52029870823026,-82.39410067768767,-82.7217611768283,-83.49998134095222,-83.73647684650496,-84.33909298665822,-83.56474435981363,-82.66015220340341,-81.87529009627178,-81.95469881035388,-81.31415805406868,-81.6438024463132,-81.63225193833932,-82.24332983419299,-81.65916140424088,-82.40667057828978,-81.5979377347976,-81.97287615109235,-81.32858837069944,-80.38263093307614,-80.17797537427396,-79.22347000008449,-78.44222882390022,-79.01973508903757,-78.15865412913263,-77.38383619720116,-78.30559259047732,-78.63712945813313,-79.07369669992477,-80.07331857690588,-79.27938805799931,-78.79956906847656,-77.93290491960943,-78.6498802723363,-79.14867450203747,-79.59063410852104,-79.22428701492026,-79.99763639969751,-80.09851141180843,-80.78887740382925,-81.19694477692246,-82.062372923363,-81.76437943335623,-81.67000279342756,-81.1605196702294,-80.26615744968876,-79.73132666572928,-80.67195796919987,-80.17252861522138,-80.96538943285123,-80.69262549839914,-80.36015066690743,-80.2897021388635,-80.84254416218027,-80.17096112295985,-81.1392099764198,-81.62689637159929,-81.77714989101514,-81.43370814155787,-81.8854456404224,-81.13052850728855,-81.02386557590216,-81.1199952038005,-80.8842709902674,-81.50451209349558,-81.50630521588027,-82.1838249899447,-82.9804642838426,-83.9330393387936,-83.25006567686796,-83.41462830267847,-83.5524320830591,-82.59872468654066,-82.22245536232367,-82.82840892206877,-82.06968883797526,-81.83953610667959,-80.92092898348346,-80.32221246697009,-80.12273255642503,-79.34941595699638,-78.63675537565723,-79.2676480547525,-80.2240521851927,-79.68055733060464,-79.70066547580063,-79.65528492676094,-79.96043698303401,-80.84406373696402,-80.24672157038003,-79.95576460380107,-79.61059734039009,-80.40440630773082,-79.68784002633765,-78.87084423657507,-78.06340106017888,-78.94643887132406,-78.70349645847455,-79.35296245245263,-79.87492465227842,-79.25653045112267,-80.05844853678718,-80.86352649517357,-80.13442159444094,-79.37349747866392,-78.49579192884266,-78.08224723068997,-78.77429407229647,-78.50711530912668,-78.99078932590783,-78.31929589388892,-77.61818967107683,-77.57737880945206,-77.5845748190768,-78.30949833150953,-77.8474902343005,-78.8347801193595,-79.70549468044192,-79.12364374380559,-78.13520555431023,-78.49024716997519,-78.7269644709304,-77.93034355482087,-78.0407186197117,-77.53919681999832,-76.60767116444185,-75.8433444276452,-75.31169155007228,-75.6989618493244,-75.75705840345472,-75.13459817087278,-74.97590248519555,-74.99121526861563,-75.81126791704446,-76.12878995575011,-76.51065659150481,-76.4814214585349,-75.72648991830647,-76.04218914546072,-75.49198489636183,-75.89297008700669,-75.91649047657847,-75.09157174266875,-75.12031109258533,-75.99568283231929,-76.8697315924801,-76.50176335684955,-77.31196015514433,-76.41888428200036,-76.86531366314739,-75.9520200099796,-74.98822611384094,-75.46464010607451,-75.46863622916862,-74.80848174635321,-74.13116129441187,-73.2431737841107,-72.63429309614003,-72.04607083369046,-71.92272495897487,-71.36509994789958,-72.16341148829088,-71.52392492210492,-71.46536372881383,-71.3326148209162,-70.95018869871274,-70.41705306153744,-69.91094578197226,-69.53227573866025,-70.08771764906123,-70.65758765535429,-70.37790430802852,-70.20556379808113,-69.77872820012271,-69.33085861383006,-69.82623053016141,-70.31705319928005,-70.82666126685217,-71.4966791216284,-72.30239390581846,-73.22388387937099,-73.8183389948681,-73.14447402674705,-73.82007264066488,-74.16937683988363,-73.81251471536234,-73.01624818472192,-73.04901908524334,-72.18713324796408,-71.21193272480741,-70.36705629061908,-69.69578359043226,-70.67527687642723,-71.62140443455428,-71.755587216001,-71.15640452923253,-70.26727316249162,-69.83099869452417,-69.65916319703683,-70.57666258793324,-70.29254578473046,-70.61444538272917,-71.10702515440062,-71.71384593658149,-72.29931974690408,-71.96339077036828,-72.7049975511618,-72.55003562150523,-72.4935655137524,-73.25795758794993,-73.32219554577023,-72.54281066544354,-73.3228272786364,-74.27008898602799,-74.41268914565444,-75.30120874196291,-74.8092816635035,-74.47777392528951,-74.79546383814886,-73.84951108368114,-74.22499776771292,-74.07969851233065,-73.57206123508513,-74.47689593909308,-74.74275839142501,-74.56861469615251,-74.57405858347192,-73.61571014113724,-74.09735317900777,-74.58745678700507,-74.55558417038992,-74.65068988269195,-75.45066000008956,-76.1291952766478,-76.97251947410405,-77.90143001032993,-77.54787689214572,-77.50745456246659,-77.72135416651145,-77.71968133794144,-76.94929464021698,-77.1767973927781,-77.64252908108756,-78.590810040012,-77.75959411729127,-78.15551545610651,-77.45169092249125,-78.23591710766777,-78.55959756020457,-79.46079717529938,-79.79198767244816,-80.06562106870115,-79.329508589115,-78.70357197709382,-79.43471509497613,-78.44521574024111,-77.70291477628052,-77.07154049817473,-77.42864240519702,-78.40147745376453,-77.4994078008458,-77.52538163308054,-76.71572280302644,-76.45679031172767,-76.75595446676016,-76.46517775207758,-76.73549464717507,-77.63447035942227,-77.43988472688943,-77.89649796625599,-77.1305547314696,-77.64614859130234,-78.05350547842681,-78.05232130968943,-78.81724701542407,-77.92433697823435,-77.88175774877891,-77.90965863037854,-77.6433865041472,-77.94670122070238,-77.91099252831191,-78.85051473416388,-77.94168556760997,-78.22112848190591,-78.2936011212878,-78.74989947909489,-78.16915141325444,-78.2143159257248,-79.1950812311843,-78.54177786037326,-79.48688097950071,-80.33690197207034,-79.43318892875686,-79.27268200879917,-78.3284690445289,-78.58681798167527,-78.1414683740586,-77.53649692237377,-78.09238168643788,-78.54155623354018,-78.53338305978104,-77.9357861247845,-77.42074114317074,-77.2289691711776,-76.90156714990735,-77.5029057348147,-76.90680848434567,-76.47049303213134,-75.85849941615015,-75.95540073467419,-76.82579934271052,-76.90236691851169,-75.91362881148234,-75.13765845540911,-75.57804451184347,-75.87426111474633,-76.48890702845529,-77.25908670574427,-77.77679534023628,-78.25423530116677,-77.30475277081132,-77.05356643302366,-76.88422917714342,-77.16915734950453,-77.50889075687155,-77.75126881338656,-77.47696492727846,-78.16134904976934,-78.39829494478181,-79.27567211678252,-78.48422203306109,-78.53464663168415,-78.00989303179085,-77.77370237279683,-78.74596224771813,-79.54120770376176,-79.61028375895694,-79.7204365520738,-78.93620924884453,-78.07318835798651,-77.17336609493941,-77.14341263100505,-77.04864484630525,-76.40675457334146,-76.0159852039069,-75.802034299355,-76.18858401104808,-75.55051739653572,-74.65410568471998,-75.56356033403426,-75.82006732188165,-75.26320356456563,-74.38223251327872,-74.47728946106508,-75.19527587667108,-74.31363535253331,-74.80003721499816,-74.75125539163128,-75.65293755801395,-75.81703976541758,-76.64788348833099,-75.75312777329236,-74.89674864104018,-74.5941450688988,-74.42184853786603,-75.34494795417413,-76.26039579091594,-75.31885408516973,-74.78633288294077,-74.74903614586219,-75.02150143263862,-74.56470005353913,-74.98042399249971,-75.01843724912032,-75.31082412367687,-74.89830242283642,-74.60513466782868,-75.27212523203343,-75.44958954816684,-76.11925912555307,-75.25575620634481,-74.55685598356649,-74.82632209546864,-74.33296307129785,-73.42159869568422,-73.83968108007684,-74.51210767356679,-75.14476761687547,-74.93381976475939,-74.00552584882826,-74.74035762995481,-74.56938682449982,-74.07410269090906,-73.81257846998051,-74.16307837888598,-73.94650786463171,-74.39967852365226,-73.96602219669148,-74.84149902127683,-73.89171362295747,-73.43667821073905,-73.04310840368271,-72.6703688739799,-73.12919500563294,-73.12050527660176,-72.96331230131909,-73.59606902860105,-74.0598212480545,-73.50265316106379,-74.49277335498482,-74.65518202492967,-74.13204085081816,-74.7230513729155,-74.18249215558171,-74.47598475916311,-74.41857418371364,-74.91131373308599,-73.98892686655745,-73.73537263134494,-74.42326463805512,-73.53215915057808,-73.10718182334676,-73.5175478933379,-73.54474740754813,-73.17584600346163,-73.46158731915057,-73.95061520999297,-74.51495978469029,-75.51250423351303,-75.26592215895653,-75.54522719746456,-75.67035456188023,-75.55132246064022,-75.0937837692909,-75.29013072932139,-75.58352370699868,-75.54830554733053,-76.02725850837305,-76.7326383353211,-75.94834225066006,-75.60805961256847,-75.56142468657345,-75.84425858454779,-76.67349210288376,-75.91701352316886,-76.78486002795398,-75.98992460872978,-75.16039271140471,-75.99214972089976,-75.57558639440686,-76.10068862698972,-76.54646528232843,-76.15553802298382,-75.34374709893018,-75.38178567774594,-74.91667121835053,-74.09100969461724,-73.8787903226912,-73.97793910419568,-74.1721107061021,-74.85734753776342,-74.13604684313759,-73.49419147195294,-73.15534123964608,-72.20723443105817,-71.61513206921518,-72.08373844157904,-72.88380648009479,-72.74502246500924,-71.89048217097297,-71.32984210038558,-71.9716807208024,-71.81252894224599,-71.47790547739714,-71.17386540863663,-70.53430309332907,-69.55114152655005,-69.6845356062986,-69.68463216675445,-70.13437390839681,-70.62486813822761,-70.60829236824065,-70.7517499262467,-70.8733708737418,-70.28601619135588,-70.29820947535336,-70.68012460693717,-70.04688037652522,-69.65820451173931,-69.27208500588313,-68.37548233801499,-69.19974966486916,-68.2941266503185,-69.17563233850524,-69.7415696377866,-69.61103637050837,-69.88310697674751,-69.19229051284492,-68.70001893863082,-68.71239603636786,-68.2833015108481,-68.33930030744523,-67.58691344270483,-66.75099434750155,-65.95525667862967,-65.86366416234523,-66.81557558244094,-66.71717523830011,-66.02832601871341,-66.5847899960354,-67.02668949821964,-66.04178458219394,-65.16741606546566,-65.94799037463963,-66.37192807393149,-67.12298480933532,-67.93543497798964,-68.02209043176845,-67.69366464251652,-67.80437413137406,-68.62815969251096,-68.45052818022668,-68.61148152127862,-68.36831678217277,-68.50168551458046,-68.3477633711882,-68.8931412869133,-69.28720269026235,-69.33488420955837,-69.89880618825555,-70.54029953153804,-70.2045401991345,-71.16528720688075,-71.08750452799723,-71.55364589439705,-71.89165579527617,-71.69195299828425,-72.49013302754611,-72.33887074887753,-72.98998505203053,-73.87032872019336,-74.54899583943188,-74.10562646947801,-73.49596740817651,-72.95842385059223,-72.60184518666938,-73.08240081043914,-73.17667538672686,-74.05210310593247,-74.7693396396935,-74.75201186072081,-75.318937423639,-75.54553423961625,-76.37441944517195,-77.26334531698376,-77.5626398762688,-77.09231773111969,-77.2757034827955,-78.08590913563967,-78.3228639792651,-79.02654915861785,-78.98510990152135,-79.23341116588563,-79.83729321043938,-80.42590695712715,-81.20933521259576,-81.52616120921448,-80.81327279191464,-80.8446098039858,-80.19305331073701,-79.84739453252405,-80.58378266496584,-80.33080202713609,-80.09079523105174,-80.78833862254396,-79.98320707399398,-80.80760140297934,-81.37772178463638,-81.31539276335388,-82.0037298379466,-82.5614547492005,-81.76129985274747,-80.98079475574195,-81.057459264528,-80.48750698985532,-79.49290698999539,-79.89548623608425,-80.33778267586604,-79.58980927430093,-79.2869409150444,-79.18940942361951,-79.03365614358336,-78.36154169682413,-78.18154493160546,-78.11770994914696,-78.14735895395279,-77.75239958288148,-77.99698050739244,-78.19213995570317,-79.14743370190263,-79.91217263136059,-79.34734032861888,-78.70015909569338,-78.34429049491882,-77.98667272133753,-77.43529689963907,-76.83444151422009,-77.57854807237163,-77.06685867533088,-78.00101409247145,-78.76211389526725,-78.5222691129893,-77.89352324884385,-77.19768460141495,-76.56275716656819,-76.47181807551533,-75.93226481834427,-76.27888629864901,-76.1233129943721,-76.06327379494905,-76.55298750055954,-76.7244639848359,-77.4008321724832,-77.50547078531235,-76.7613835297525,-76.24423237284645,-75.66788599546999,-75.07041447376832,-75.152557968162,-74.9370818529278,-74.95362513838336,-75.52653156686574,-75.78713438333943,-76.66420976771042,-76.31083615869284,-77.15641803387552,-77.63727328926325,-76.91730666719377,-76.41974375583231,-75.54200197802857,-75.93385191448033,-75.62193780066445,-74.8667676881887,-75.67762546055019,-76.23741679731756,-76.37151812575758,-76.02128848154098,-75.68270585034043,-75.29991223756224,-74.52990249125287,-74.51466224575415,-75.19007315998897,-75.97652587248012,-76.22780906502157,-76.83164298487827,-77.07690187124535,-77.39676743326709,-78.36765453545377,-79.01897439965978,-78.61990935634822,-79.09467693325132,-78.33897091681138,-78.4937515729107,-78.33694529533386,-77.83599701384082,-78.05331267928705,-77.5984598044306,-77.998963534832,-77.23789390455931,-77.04142076289281,-77.14113389421254,-77.69481587037444,-77.50159370806068,-77.482565946877,-77.58694277890027,-77.0505156647414,-77.57607755810022,-77.58280884334818,-76.92403361294419,-77.23833329137415,-76.99060551682487,-76.18625412741676,-76.01436623884365,-76.16643065866083,-76.06117240479216,-76.26880775857717,-75.47130294376984,-74.61195350810885,-75.16106324037537,-76.01791463932022,-75.97618514904752,-76.80988280056044,-75.91349465027452,-76.11683755274862,-76.68308261130005,-77.4388830345124,-76.90144329471514,-76.15627677785233,-75.90582524240017,-76.40809559309855,-75.64366815751418,-75.72387039475143,-75.58948276005685,-76.07118501048535,-76.6565209524706,-77.01129487063736,-76.23213325673714,-75.7189802126959,-75.5015858518891,-74.51818472472951,-74.22040234738961,-74.66911251563579,-74.4913598462008,-74.12810159102082,-73.99903462873772,-73.33892894349992,-74.31051026750356,-74.79795610252768,-74.61394751397893,-74.16708662454039,-74.97768435208127,-74.08585780858994,-73.1136483293958,-72.8135926220566,-73.62994392355904,-73.38666600594297,-73.1844030758366,-72.29731961945072,-71.74150748737156,-71.33012490114197,-71.48655518097803,-72.46924359537661,-73.33591239200905,-73.70217325398698,-73.59338255319744,-74.18217960651964,-74.58085531555116,-74.1340652834624,-74.41175995068625,-74.97945341654122,-75.38386009074748,-75.03339063376188,-75.62807435914874,-76.00741892307997,-75.25663883658126,-76.1261803144589,-75.79503753362224,-75.42047316441312,-74.69855996780097,-74.97228673333302,-74.06823199987411,-73.29390370985493,-74.24307840131223,-73.46580568421632,-73.22515456145629,-72.34397206548601,-71.9897099006921,-71.0325933182612,-70.58998659951612,-69.96307986881584,-69.46127089392394,-69.79116456909105,-69.16541243158281,-68.28122572787106,-68.40383609756827,-67.62163022300228,-66.9893585103564,-67.0757378586568,-66.95228908443823,-66.45840504206717,-66.22119096294045,-66.80876137129962,-66.96032971562818,-67.07968085026368,-67.79578602081165,-67.73454933101311,-67.81469283951446,-67.24778904858977,-67.91909623658285,-68.2263179635629,-67.46910499688238,-68.38146209251136,-67.43783600395545,-68.02603064384311,-67.05174039676785,-67.3885101787746,-67.39721198473126,-68.02820906927809,-68.27694640215486,-67.37880810443312,-67.84669930348173,-68.76236677123234,-68.34163158014417,-67.84151350520551,-67.64960014028475,-67.70393054559827,-67.79765776870772,-67.04999093199149,-66.5746776452288,-67.10463511291891,-67.91071218485013,-68.076531291008,-67.44215157395229,-67.05032136803493,-66.05885786097497,-66.73470544721931,-67.48912727134302,-67.91780694806948,-67.48033373616636,-68.08094728924334,-68.94259234936908,-68.36999367410317,-67.7380419340916,-66.91755137685686,-67.1684789401479,-67.12724173720926,-67.37980411527678,-67.07092038029805,-67.8680445915088,-68.57849883800372,-68.30904540792108,-68.9515096549876,-69.00910933036357,-69.6792008834891,-70.51347931753844,-70.00434482423589,-69.21246068645269,-68.35376486554742,-68.18559235939756,-68.95406210282817,-68.3681213427335,-69.2183767738752,-69.51658589672297,-69.34895442379639,-69.25223401933908,-69.75063355313614,-70.06116870278493,-69.30513461492956,-69.38040604069829,-68.69699453748763,-68.61475196387619,-67.74615219095722,-66.92351813986897,-67.32512718206272,-67.72029617335647,-68.27641410240903,-68.5893874480389,-68.48579229740426,-69.20244332496077,-70.14292106963694,-70.80051286332309,-69.90963910752907,-69.93209691205993,-70.8551752208732,-70.18671787763014,-70.85807012952864,-70.57295783329755,-70.13951173145324,-70.34228620352224,-69.83447486255318,-69.61261086259037,-69.0816344069317,-69.69683797610924,-69.39390625664964,-69.15407816506922,-68.90926781250164,-69.89593403879553,-70.29795991955325,-70.50622436543927,-70.9645914779976,-70.3254027729854,-71.184472349938,-70.83203126257285,-70.9205192741938,-70.83999989274889,-70.04463691450655,-70.64239670801908,-71.04305633017793,-71.44624471105635,-71.15624112635851,-71.04107413208112,-71.21637325035408,-71.59030317887664,-70.88037169864401,-69.8933572662063,-69.01495942892507,-69.43055938975886,-70.2236366881989,-70.9660325278528,-70.04591298149899,-69.92182272160426,-69.65393389109522,-68.9101898195222,-68.51058399351314,-69.15049566980451,-68.88920637825504,-69.34010971337557,-69.51366815855727,-68.87903253966942,-68.037674669642,-67.1417970880866,-67.17327783815563,-67.91361199086532,-67.88930556038395,-68.27606981014833,-69.2462887945585,-68.8855087980628,-68.58166266744956,-67.84635104890913,-68.05370059330016,-67.68023588275537,-67.12723064422607,-67.6290956879966,-67.02893368946388,-66.18419221416116,-66.49923488125205,-66.56827148748562,-67.03638841118664,-66.09733801428229,-66.85032378137112,-67.27340839570388,-66.52331316284835,-66.51168806198984,-65.76217760890722,-64.94499025540426,-64.08013612218201,-63.8918904485181,-63.82729011774063,-64.15568752540275,-64.65336887119338,-64.63428401947021,-64.30402631219476,-65.16187174478546,-65.80504233390093,-66.60356838442385,-67.52369729941711,-67.50675025302917,-67.18859273474663,-67.0055292067118,-67.29290396161377,-66.29863996058702,-65.88011564547196,-65.99607061222196,-66.55181472143158,-66.03647063300014,-66.98309598164633,-66.90144582977518,-67.08723652595654,-67.9298887657933,-67.19915471086279,-67.30342608876526,-67.0121967997402,-67.33080756152049,-67.77943966444582,-67.44796794978902,-68.35052694613114,-69.26068838872015,-70.07081860490143,-70.09002038184553,-70.78689034003764,-70.5986042865552,-70.31752687133849,-70.58903736574575,-70.75025927275419,-69.83169525582343,-69.49768794281408,-69.46110298205167,-69.58394587179646,-69.79318751720712,-68.83172026509419,-69.27493386669084,-69.86047752341256,-70.58695188350976,-71.05766206188127,-70.12005585059524,-71.05838367016986,-70.6170010571368,-71.55474268365651,-70.6992406132631,-69.80254437541589,-69.15757341124117,-68.34231545915827,-68.94645393174142,-68.99820776842535,-68.27858748519793,-68.64437012001872,-69.61517725186422,-70.60053569916636,-70.33235339261591,-69.68845013948157,-69.55018570227548,-70.19637402752414,-71.03673044964671,-71.07103927526623,-71.64117585215718,-71.75984521210194,-71.06359928054735,-70.98875693837181,-71.8677749009803,-71.36265894398093,-71.21121418336406,-71.9661673521623,-71.12957208417356,-70.9255380523391,-71.72724387282506,-71.77442956436425,-72.02088905591518,-71.71977140102535,-72.71080756699666,-72.36449314188212,-73.0790783111006,-72.57442566286772,-71.95240702060983,-72.07151934411377,-71.72955163195729,-71.68654120480642,-72.41770885651931,-71.72766837663949,-71.68764533335343,-72.44996768655255,-72.10210077557713,-71.48681618226692,-70.9782195482403,-70.63977283285931,-71.27605527453125,-70.4626936884597,-70.5378728969954,-69.63088527694345,-69.24368856474757,-68.7645421307534,-69.61666403245181,-69.71654460811988,-69.69214865518734,-70.39614057773724,-71.35368399787694,-71.26289729215205,-70.87853457266465,-70.54702191893011,-70.61955300346017,-70.90600457042456,-71.49991261493415,-70.74258442502469,-70.24561097146943,-70.57334989868104,-69.7864381140098,-70.17301600286737,-70.35342227853835,-70.5660952781327,-69.9688501902856,-69.92343321861699,-70.91959915542975,-70.20016155438498,-70.85862225154415,-71.73360269097611,-71.51660272479057,-71.12717630760744,-71.25052394531667,-71.75188341503963,-72.74676348129287,-73.18263515178114,-72.36956237303093,-71.48489619418979,-71.25871771993116,-71.79498691717163,-71.76109863538295,-71.5914725838229,-71.08842742722481,-70.91666029160842,-71.46519298944622,-70.9897085102275,-71.79592543002218,-71.93441009055823,-72.34844772331417,-73.32174641219899,-72.79915424529463,-72.45851070480421,-72.67542069591582,-73.3164051710628,-73.67683234624565,-74.47493356466293,-74.07777497544885,-73.93723208038136,-73.35672980593517,-74.017341313418,-73.33106650970876,-74.17733446508646,-74.98646814981475,-75.29041099688038,-75.6307004825212,-75.68368820752949,-75.0808996912092,-75.24927349667996,-74.72913330188021,-74.40778917772695,-74.57394898310304,-73.67529589496553,-74.0509800510481,-74.15189557988197,-74.59930736618116,-73.79831981146708,-73.9798248661682,-73.25616630772129,-72.26457285648212,-71.54579225555062,-70.63911335449666,-70.955813114997,-70.23366563813761,-70.56686040386558,-71.46977928467095,-71.09827606892213,-70.44070253893733,-70.25235986895859,-70.2131834346801,-69.27380210859701,-68.8472743392922,-68.83593774819747,-69.103799989447,-68.88041797932237,-69.24455377552658,-68.83551042154431,-68.35068543069065,-68.85293222824112,-69.77087076148018,-70.16267046192661,-70.34529069811106,-71.2173541225493,-71.88931978261098,-72.13802628405392,-72.03240259783342,-72.3876269357279,-72.10171421710402,-71.18901232955977,-72.00346959987655,-72.43819722253829,-72.62794875400141,-73.01914983941242,-72.20563831599429,-71.87822456657887,-71.07911089714617,-71.00896422564983,-70.71126420330256,-71.63217747956514,-72.06591421645135,-72.84292637743056,-72.87569015054032,-72.88487784843892,-73.61031849402934,-73.66623612726107,-74.47322196792811,-74.63680781563744,-74.38897238811478,-75.00811748253182,-75.60635089408606,-75.68598212348297,-75.99559562606737,-76.21781095862389,-75.51210205303505,-74.80224636010826,-74.04553344054148,-73.10396902821958,-73.69344378169626,-74.34653352992609,-73.62903256807476,-74.00487668486312,-73.16885480238125,-73.91001119371504,-73.04163971077651,-73.24874758953229,-72.5702734454535,-72.29519814066589,-71.40639311820269,-70.9727217759937,-70.19587829709053,-70.42231241101399,-70.19024646701291,-70.49639017554,-69.69526115199551,-70.62908305646852,-69.7794384509325,-69.43468891317025,-68.4907845845446,-68.50062023801729,-68.3893101317808,-68.63334847195074,-67.65690751792863,-67.02548489719629,-66.44617865979671,-66.79869264969602,-67.17604569671676,-66.59079694375396,-66.82837704196572,-67.61296426458284,-67.57607027841732,-67.64767244970426,-67.91179276257753,-68.65231529064476,-69.24217019788921,-69.5407879226841,-69.48397027840838,-68.98271975945681,-69.65167689602822,-69.06739743985236,-69.0916366041638,-69.47501868987456,-69.71471116831526,-69.01711440598592,-69.936528342776,-69.28696628240868,-69.67896392568946,-70.54640312679112,-70.76808260614052,-69.95579198980704,-70.11739591276273,-69.96655673719943,-70.47115755919367,-70.14571602037176,-70.97788215335459,-71.03721002675593,-70.19965675473213,-70.34237692365423,-69.39414286334068,-69.92040897579864,-69.29540201835334,-69.60631862003356,-68.61399279069155,-69.02520161680877,-69.13206800073385,-68.44486215058714,-68.2470729118213,-67.74409682536498,-67.779660301283,-67.48806709097698,-68.28027600282803,-67.46059167478234,-66.70248173410073,-66.80209563672543,-66.69517885660753,-66.97709151636809,-66.8476941389963,-65.84998534340411,-65.49579504271969,-65.32575762690976,-65.76575111690909,-66.58223918732256,-67.50089501263574,-66.5461296834983,-65.78744634659961,-65.61531687015668,-66.11775920214131,-66.56813875120133,-66.0592620531097,-66.67602847423404,-66.37933108536527,-65.47535031521693,-65.99998779641464,-66.25741292536259,-65.36662612622604,-66.17396607203409,-66.55651650391519,-67.43172489758581,-67.4156000460498,-67.56725428020582,-68.00943850213662,-68.15518653392792,-68.84482566732913,-68.2280896436423,-68.2844489403069,-67.89909763028845,-68.54893531650305,-68.50393338687718,-68.75182713847607,-68.83525659283623,-68.44897458143532,-68.67546534677967,-68.6753840460442,-69.51739253057167,-69.49533905414864,-70.31774683808908,-70.35109436651692,-69.516918590758,-68.64742456842214,-68.27520510274917,-68.75740901008248,-69.09769314248115,-69.38545460393652,-70.20070020435378,-70.9419128978625,-70.19363054540008,-69.920995851513,-69.42453197250143,-69.38664655154571,-68.49897203361616,-68.78770986991003,-68.49700315156952,-68.65606016619131,-68.69523999700323,-68.85805896529928,-69.69845104403794,-68.98929139832035,-68.16432643309236,-68.25083932699636,-67.43107958650216,-68.08612535102293,-68.54669315135106,-67.70466573396698,-68.6316415653564,-69.02865907922387,-68.44779594615102,-68.3106094817631,-68.66379496501759,-67.99099787464365,-67.27531617786735,-67.57286477414891,-67.80553626362234,-66.95653142081574,-66.9957044874318,-67.07100699935108,-66.34753784909844,-65.89820323884487,-65.33191924449056,-65.93227711040527,-65.4853897052817,-66.02009419491515,-65.97312407568097,-65.30158622469753,-65.48816409194842,-65.97551373252645,-66.03290544403717,-66.04511659685522,-66.67380914883688,-67.66865144111216,-68.32733756164089,-68.59498653374612,-68.42769506946206,-68.45826738374308,-68.27278989739716,-67.68320246739313,-68.59397297957912,-69.00763768237084,-68.68016163213179,-68.96391252987087,-68.7679085507989,-68.51373043702915,-69.3352096164599,-68.90723723825067,-69.49653657153249,-69.6903344434686,-70.50313251279294,-70.07835529465228,-69.69695186987519,-69.01663256296888,-69.91124839801341,-70.78998962044716,-71.18527199048549,-71.64922298723832,-70.85218488844112,-70.29589144140482,-69.71152163064107,-68.76147485384718,-67.86378076998517,-67.72098340466619,-68.28285617101938,-68.36440726695582,-68.71877447376028,-69.30608374718577,-68.65610251482576,-67.72405900759622,-67.47470444021747,-66.8626950411126,-66.42322100605816,-67.35876595554873,-66.42674064263701,-66.45346454856917,-66.79261486325413,-67.2399836932309,-66.39183679549024,-67.03662624349818,-67.43610057607293,-66.68437698017806,-66.87864361796528,-67.3538581924513,-67.48290502047166,-68.33161997469142,-68.15268547879532,-67.63884013751522,-68.2141102408059,-68.91894518444315,-69.31976664066315,-69.37893358245492,-70.01032593706623,-69.90459777414799,-69.56889512622729,-70.31568793253973,-71.09434154490009,-71.42277252627537,-72.29780035978183,-72.01482019107789,-72.05379895726219,-72.67500029597431,-71.73046562075615,-71.19015716202557,-71.65771890804172,-71.33672511391342,-72.27374786976725,-72.91752593871206,-73.85337269911543,-74.68862865492702,-73.98604622017592,-74.01971051981673,-74.58689865842462,-74.47992151649669,-73.62709060311317,-73.81601471593603,-73.54195613320917,-72.97421957133338,-73.51511330530047,-73.20473683439195,-72.55626585101709,-72.36602703575045,-71.37034140294418,-70.50958168134093,-70.2560874861665,-69.31577362725511,-69.07976544741541,-69.41499492246658,-69.13423627708107,-68.27566955890507,-68.72424879716709,-69.10257755639032,-68.34630723576993,-68.66637527756393,-69.23931873263791,-70.23594917589799,-69.46458677016199,-69.37326881149784,-68.80961245903745,-69.12203238159418,-69.12361335428432,-69.90308443270624,-69.42879537446424,-70.12527235783637,-71.03914240375161,-70.58068316616118,-69.68004748458043,-69.5191635354422,-68.70262977899984,-69.47582989186049,-70.40446247905493,-69.88151039229706,-69.18845296977088,-68.22033772990108,-67.31337991170585,-67.37654011137784,-66.65779892122373,-67.06744217220694,-66.59692394547164,-67.33669053623453,-67.12627172563225,-67.79121335409582,-67.6910237269476,-67.88262456934899,-67.68578706122935,-68.20939096063375,-69.0523169641383,-70.0168611635454,-69.90479365410283,-68.94315844448283,-69.8449416924268,-70.50575424078852,-70.40305144432932,-70.80918329255655,-71.61832606652752,-70.8828548467718,-71.79045307449996,-71.38683509174734,-70.65554902330041,-71.43972519086674,-71.43132559303194,-70.8695582007058,-71.67872977396473,-71.04468941502273,-71.65548559324816,-72.65392830222845,-71.94218128081411,-72.0869230972603,-71.16905745211989,-71.69106722809374,-71.95170744834468,-72.93866642052308,-72.97193048615009,-72.45790725620463,-73.03471155138686,-73.39931600913405,-73.07787921000272,-73.9996196241118,-74.91456204233691,-75.01726463530213,-75.93974721385166,-75.36242717923597,-75.38668020116165,-76.32369931833819,-75.3254188685678,-75.46319084148854,-76.24388323863968,-75.8772023175843,-74.99118677293882,-74.89032917656004,-74.49118691310287,-73.79399854550138,-73.59254572307691,-74.1179262176156,-75.03798588644713,-75.8377595464699,-75.13232578523457,-75.28950435575098,-74.35530342860147,-73.7049263655208,-73.09794999286532,-73.70471479324624,-73.45042511820793,-73.98752066260204,-74.82365639414638,-75.43914099643007,-75.83028859179467,-75.61823577433825,-75.73031900962815,-76.27430112008005,-76.51266010059044,-76.93521273788065,-77.28185206651688,-76.4638006510213,-76.22958966298029,-75.3438350581564,-75.64208089141175,-74.90088673075661,-75.5414656479843,-76.44057380314916,-76.9148091902025,-77.8809012924321,-78.85946577461436,-78.63908701576293,-78.59355511469766,-78.57390067819506,-77.91262178402394,-78.11944313067943,-77.15208968007937,-77.83775519067422,-77.92536246031523,-78.51047861389816,-77.95998041145504,-77.50792475556955,-78.17444689851254,-77.58679498266429,-77.94119721790776,-77.66953272605315,-77.61317822383717,-77.45917618088424,-77.49332424812019,-78.33709515351802,-77.60534323798493,-78.4112463365309,-78.43286394840106,-78.68865089304745,-79.27813607733697,-80.05575712351128,-79.59265887970105,-79.79341790918261,-79.24379802960902,-78.40379060572013,-78.48075478710234,-79.114646371454,-79.82138272700831,-79.79880352737382,-79.90230445982888,-80.42797654634342,-79.68023939570412,-79.47303634230047,-78.90530477836728,-78.75978039531037,-78.30494179530069,-79.28379925899208,-79.37037242669612,-79.99443017179146,-79.00605843169615,-78.79923579236493,-79.45762296114117,-78.47332311607897,-77.99178628111258,-78.9409132390283,-78.42118796519935,-79.35494438838214,-78.74917511316016,-78.67428862536326,-79.58474270766601,-79.2167497985065,-78.55579098220915,-78.92655958933756,-78.54414929402992,-78.65779271256179,-77.7927134805359,-76.99724521813914,-76.24173751519993,-75.60882943775505,-76.3920335220173,-77.19859933992848,-76.2443243553862,-75.58763498393819,-75.10555800702423,-74.6877423459664,-74.90479688858613,-75.10838986001909,-76.05453493213281,-76.12936122110114,-76.7108594328165,-75.74906850699335,-74.95462615974247,-75.45397461997345,-76.00056577660143,-76.75830144248903,-76.58417415758595,-76.44954987755045,-75.5265360204503,-74.67843544436619,-75.58326405286789,-76.05626469757408,-76.58002838864923,-76.86539000691846,-75.87747522303835,-75.4713111910969,-74.91068127285689,-74.28927233116701,-74.60121679259464,-73.76761919772252,-74.2808468141593,-74.73757215635851,-74.47125785937533,-74.9740118845366,-74.77654536208138,-73.84962488850579,-72.97918950533494,-72.6729965498671,-71.71542319701985,-71.88321819389239,-71.444472362753,-72.42582069756463,-71.7690565767698,-70.83786054095253,-70.8706135628745,-70.32644905336201,-70.8453243165277,-70.54243911942467,-70.63224419625476,-71.42372163012624,-70.7957830503583,-69.80601510964334,-69.05808493448421,-69.31944356998429,-70.2101268665865,-70.53254325129092,-70.11125740967691,-70.27453663293272,-69.6225615516305,-69.2224199208431,-68.6386858089827,-68.35983947757632,-67.74986590072513,-68.07840248616412,-68.73161138640717,-69.50445079663768,-69.01664204429835,-69.32897428655997,-70.32627967791632,-71.31802556104958,-70.85600759834051,-70.75521381478757,-70.8901408915408,-71.15617885114625,-71.99523412715644,-72.7027029315941,-73.24283645534888,-72.59976277733222,-73.18100371211767,-73.51000385824591,-74.46553080994636,-73.91908095497638,-74.16597853088751,-74.51110385544598,-74.56069434667006,-74.85940772294998,-75.78474577469751,-75.62323052575812,-76.1463830745779,-76.42163278255612,-76.82970021246001,-77.0338069149293,-76.73445551190525,-77.62817476224154,-78.47289462015033,-78.00073241814971,-78.74228313658386,-79.11330786300823,-79.13280199235305,-79.66878398228437,-78.74364096904173,-79.72932821139693,-79.59542173985392,-79.14346081390977,-79.29449538048357,-79.01565565634519,-78.09830278763548,-78.74426509998739,-77.8003882272169,-77.39875249750912,-77.37248960649595,-77.2950206878595,-76.9800720969215,-76.4874582416378,-75.6625937661156,-75.63878843886778,-76.27395085338503,-75.62572222203016,-76.49649376841262,-75.60676221176982,-75.8625473161228,-75.68664251314476,-75.14174557290971,-75.99280643602833,-75.90095012867823,-76.36214232537895,-77.0282176239416,-76.62211038777605,-76.42194216512144,-76.10034204134718,-75.65446556266397,-75.87429204117507,-76.23490631394088,-75.87970948358998,-75.49337685387582,-74.54458673670888,-74.29095880966634,-75.04069294594228,-75.14109155675396,-76.09076587576419,-76.74283336522058,-76.22852163296193,-75.63150019897148,-75.76140963379294,-76.58249950688332,-77.56771851377562,-77.18255768250674,-78.137540361844,-77.83506055129692,-77.35799925681204,-77.11960470397025,-77.57260262174532,-78.2198156057857,-79.1780308270827,-79.2189139998518,-78.41749695688486,-77.92279136460274,-78.259189336095,-77.49840773642063,-76.55630194628611,-75.72872383194044,-75.25212498847395,-74.75190106127411,-74.70148004218936,-75.43256391584873,-75.29903900669888,-75.72562667913735,-75.59419440338388,-76.18535859230906,-76.2442193091847,-76.04986601602286,-76.57299589272588,-77.32144558243454,-77.80925947241485,-77.57610544143245,-77.37240240862593,-76.69923381553963,-76.84110429137945,-77.10635739983991,-77.05624390207231,-76.50217642588541,-76.06963346898556,-75.92634714534506,-76.11349113984033,-76.99132844991982,-76.77434679074213,-77.26056556077674,-77.20396420871839,-77.77450808370486,-76.93181058345363,-77.7331365738064,-77.78385444683954,-77.1742903450504,-76.78151601785794,-75.91008176421747,-76.90515997167677,-76.77725183451548,-76.77989316685125,-77.33480181265622,-76.38621971337125,-76.98442231863737,-76.05779934301972,-75.848854042124,-75.68952176021412,-76.23980841971934,-76.98604464437813,-77.10642931237817,-76.14050376508385,-75.43538941070437,-74.44504759833217,-75.33187301130965,-75.20866264542565,-75.39309530053288,-75.74883033381775,-75.82797747291625,-76.46651616040617,-75.56238331226632,-74.6150579196401,-74.95465733390301,-75.7068397034891,-75.001661893446,-75.24726257706061,-75.8596099182032,-76.85039378423244,-76.39047804148868,-76.9139594072476,-76.05959877604619,-76.37130042910576,-76.87114175083116,-76.72308719018474,-75.76772656524554,-75.42885813536122,-74.81180922780186,-75.23951642261818,-75.77222111495212,-74.94731683982536,-75.58511472446844,-75.07552038505673,-75.15530283236876,-75.42043812433258,-76.14759381255135,-75.93180066207424,-75.99280000850558,-75.52537997113541,-75.9239875706844,-75.72486852807924,-76.38656545756385,-76.19811001606286,-76.62601606361568,-76.83463335642591,-76.60864570410922,-75.86199534498155,-76.49271922931075,-75.73163808789104,-76.1955709150061,-76.05060860607773,-76.71641442552209,-77.249189987313,-76.62238341430202,-76.7524661901407,-76.5014558583498,-76.48152113473043,-77.15746815269813,-77.07346843695268,-77.66832075733691,-78.6598909269087,-77.67838682094589,-78.12780725909397,-78.74925177870318,-78.02069401554763,-78.79167452128604,-78.73197681130841,-78.41880583763123,-78.90344334486872,-78.58007938694209,-78.77896222472191,-78.01467290474102,-77.06957208830863,-77.16536555020139,-76.95926482835785,-77.34233878692612,-77.12916844896972,-76.96074078883976,-77.94101598951966,-78.6863759830594,-79.57166637526825,-79.5357952369377,-79.33169651310891,-79.04370950814337,-78.18553162645549,-78.60278431465849,-77.95509116956964,-78.15517902420834,-77.60897787613794,-77.48331299331039,-77.31487166695297,-77.53459791932255,-78.21539065800607,-78.43129759281874,-78.7504187063314,-78.14162490377203,-78.29852708848193,-78.97248262213543,-79.20693672727793,-79.33932045567781,-78.52178683551028,-77.9191422923468,-77.01686875708401,-76.50665839854628,-76.86140579264611,-77.70075650606304,-76.89507471956313,-76.20162159902975,-76.97871267935261,-76.14981110254303,-77.10751407686621,-76.8029343415983,-77.48071694979444,-77.1384551874362,-77.53635093616322,-76.75455382140353,-77.71772666973993,-76.87167327851057,-77.54854450328276,-78.22115064179525,-78.22710671043023,-78.48490007501096,-79.3907667612657,-80.32328914804384,-80.93977434653789,-81.38776947418228,-81.44515728764236,-80.92342277383432,-81.65210155490786,-80.65242807613686,-79.75951463636011,-80.02276469580829,-79.57884889515117,-79.27757784724236,-78.72033546119928,-79.49521671701223,-79.38886785134673,-79.7879408490844,-79.66799322143197,-80.57350328098983,-81.5300229312852,-82.13436100678518,-82.95043429732323,-82.12332985782996,-81.35262806713581,-81.61503440467641,-82.45205582398921,-83.25043333834037,-83.8610833096318,-83.44679363677278,-84.44232784910128,-83.53375176293775,-82.85684387851506,-82.94145677657798,-82.17444399464875,-81.43156754877418,-81.71265744837001,-81.5160471801646,-80.61026000510901,-79.79750385321677,-80.30639296490699,-80.28537162346765,-80.6844790354371,-80.09679387742653,-79.63159885630012,-80.52295981673524,-81.42124239960685,-80.875115506351,-81.13782813353464,-81.9173488789238,-81.79352912027389,-81.52977467468008,-81.18216298799962,-80.88863233011216,-80.06289095617831,-79.58160891709849,-78.91482216306031,-78.30115785449743,-78.01581348478794,-78.34373645763844,-78.76199653139338,-79.33576521044597,-79.61072272900492,-78.88671213760972,-78.39393326407298,-79.36773350834846,-78.66576964687556,-79.04694649903104,-79.45675493823364,-78.59903074195608,-77.80752023868263,-76.96644166437909,-77.80614094948396,-77.0774231152609,-76.6055674715899,-77.24703478068113,-77.9560294598341,-78.20659317309037,-78.30721054319292,-77.90985155990347,-77.7405556277372,-78.22619073325768,-78.52553611202165,-78.15110490843654,-77.76557284547016,-77.04194089211524,-78.01261051325127,-78.04138037748635,-78.0765486434102,-77.47907697129995,-77.40435635764152,-77.8028317252174,-78.20584008237347,-78.00592853920534,-77.58980716671795,-77.82786012161523,-77.25167699391022,-76.87890241155401,-77.14437417685986,-76.86708019161597,-77.4693252039142,-78.30204265052453,-77.79061427526176,-77.23531750869006,-77.12000777712092,-77.6279511898756,-78.21706842072308,-78.3667275980115,-78.15587274217978,-78.69328660238534,-77.88633359503001,-77.41001454228535,-76.84363625338301,-76.17108707176521,-76.12592260725796,-76.19771786453202,-76.82007706677541,-77.189515653532,-76.50796930491924,-75.57484388072044,-74.8273339108564,-75.73116524377838,-75.09078451246023,-74.43207109253854,-74.16241734707728,-74.84525394812226,-74.49343841103837,-75.46722666686401,-76.01413139421493,-75.53881963528693,-74.87179592810571,-74.9625336471945,-74.79526484571397,-74.70618538418785,-75.65403094189242,-75.04942464875057,-75.45728406636044,-74.98149210819975,-74.51449619047344,-75.05916597461328,-75.5131188579835,-76.36850241618231,-75.90881225513294,-76.69113100552931,-77.50409776018932,-78.32848641648889,-79.10181449307129,-79.47177095431834,-80.12875696877018,-80.49431222537532,-79.719314890448,-80.44638441875577,-80.0794590068981,-79.12160105351359,-80.10720046889037,-79.32897116523236,-79.59069804474711,-79.44541408400983,-80.40803461661562,-80.4406940578483,-80.39809717098251,-80.62607388524339,-80.6776963295415,-81.49493416398764,-81.24870785977691,-81.62552082026377,-82.17697718832642,-82.13236855715513,-82.68781233020127,-83.16361807566136,-83.36938055185601,-82.46872051339597,-82.34193050209433,-81.39523905562237,-80.774577611126,-80.93503805994987,-81.6055504293181,-81.24284795392305,-80.40285010822117,-80.80914149805903,-79.87602367671207,-80.10619679605588,-79.67344255419448,-79.54381963470951,-78.94181002257392,-79.16350595513359,-78.31202002055943,-77.92659437749535,-78.57389159547165,-77.9012556024827,-77.48192045232281,-76.73784091183916,-75.83363012038171,-76.6113148201257,-77.57689152332023,-77.69775629369542,-78.45130144478753,-77.63675760803744,-77.0853197351098,-76.37869451195002,-75.37996629811823,-74.52519787987694,-74.51027998887002,-74.59544650139287,-74.87048246758059,-74.6136791142635,-74.60508192051202,-75.43409360945225,-75.30531275691465,-75.93023089505732,-75.38995200302452,-76.26561256451532,-75.2920919302851,-74.9131836220622,-74.77340020332485,-74.45612942334265,-73.53167909989133,-74.25250482419506,-74.60275526810437,-74.47336202021688,-73.53487910097465,-72.95403950987384,-73.4086371799931,-74.29824813036248,-74.47533454094082,-74.28165099537,-74.39479695633054,-73.87122554378584,-73.24891077075154,-73.49174660537392,-73.26673025265336,-72.26798019185662,-72.18843992194161,-72.67203697562218,-73.28546626027673,-72.49950288282707,-71.96379289170727,-71.56157330935821,-72.54462246736512,-73.46920383628458,-73.1578428633511,-72.31640345184132,-72.87995459837839,-72.64208697481081,-72.66946533834562,-73.16628368850797,-73.83270933059976,-74.4694389034994,-75.35484076337889,-76.12294131796807,-76.24209172884002,-75.39129955135286,-75.28392458241433,-76.11341085191816,-75.60153115680441,-75.37298332992941,-75.74961948441342,-76.5705272872001,-77.27485219202936,-77.77707443246618,-77.35783106880262,-77.23074755445123,-77.00232229800895,-76.28144550975412,-75.60259472066537,-74.77707928046584,-74.59045203682035,-73.65415652142838,-73.59876271523535,-73.17004035925493,-74.10159803088754,-73.54973021801561,-72.96334862150252,-72.83138710772619,-72.18395463936031,-72.01423657592386,-71.07778434222564,-71.59453597571701,-71.95503447344527,-71.60663865879178,-71.56165675399825,-72.34609391633421,-72.03872350137681,-71.97542347293347,-72.37320615677163,-72.88676757644862,-73.66573083773255,-72.93188930349424,-73.78925066674128,-73.63023077370599,-73.25951350713149,-72.48098182491958,-71.48112713592127,-71.39577610511333,-70.8654498681426,-69.91215678490698,-69.84921414684504,-69.2810423434712,-68.42328047007322,-67.58849094063044,-67.31882655154914,-67.98994081933051,-68.95631562825292,-68.43507880531251,-67.76608710829169,-68.17252788227051,-68.87268247408792,-67.98840434616432,-68.4140937384218,-67.72531382925808,-67.35974295111373,-67.6607895703055,-67.00968957226723,-66.80807220283896,-65.951482583303,-66.42436602013186,-67.26159750670195,-67.50517594628036,-67.83602035650983,-67.26982471393421,-67.74341244390234,-67.4486458436586,-66.99156551482156,-66.2074941615574,-67.03201447008178,-67.12816785275936,-66.38552529690787,-65.4285655929707,-65.3899874552153,-65.26268586982042,-64.66959603410214,-65.45275563094765,-64.84469752851874,-64.56854144204408,-65.43754469696432,-64.8775077383034,-64.17586008040234,-64.08914851536974,-63.75105875916779,-63.73989072162658,-63.25472367135808,-64.07692110864446,-64.4057926852256,-63.624698555562645,-62.9419221971184,-62.702049483545125,-62.0907025760971,-61.64438731968403,-60.707023167517036,-59.88392423419282,-59.255188644863665,-59.546674236189574,-58.95917174778879,-58.57724276604131,-58.57739662239328,-59.39590698899701,-59.16608163993806,-59.969332673121244,-60.50533679174259,-61.27775673381984,-62.241298105567694,-62.319246170111,-61.93879320891574,-62.4491985659115,-62.930353516712785,-61.9697995535098,-61.633190660271794,-62.60655191866681,-63.19542972417548,-63.84930283483118,-63.790996020659804,-63.35053490428254,-63.143610888160765,-63.73582113860175,-64.47681058291346,-65.45227673649788,-65.90255659958348,-66.19918611319736,-65.24752420466393,-64.62924372358248,-65.13952621351928,-65.16177511587739,-64.46852525463328,-64.10230752080679,-63.14409687649459,-63.85496008582413,-64.40361092984676,-64.9510441813618,-65.11824639327824,-65.24672289099544,-64.41002028342336,-63.94405794888735,-63.54960877634585,-62.85764602664858,-62.41554117528722,-61.84904774231836,-60.9543341123499,-61.74564166367054,-62.54811382340267,-63.12927678320557,-63.20560178719461,-62.97673753928393,-62.68785418989137,-63.66984482109547,-63.20814584707841,-63.70549636008218,-63.18084489740431,-63.72974268021062,-63.37538328533992,-62.678267169278115,-62.05202566226944,-61.423714057542384,-60.504276897292584,-60.83967912569642,-61.75671491632238,-60.793564554303885,-60.24918887671083,-61.12121957959607,-60.13120464794338,-60.45222651027143,-59.526605010498315,-60.52068551722914,-60.74710550904274,-60.766876705922186,-60.03975206054747,-59.053028302732855,-58.57923421310261,-58.95868078339845,-59.28536804765463,-58.514581518713385,-58.16735492553562,-58.881278143730015,-58.341000945307314,-57.7192761907354,-58.45745838293806,-59.19763026200235,-59.328812673222274,-59.02142740180716,-58.03554457612336,-58.18586376309395,-58.40663261478767,-57.84513960033655,-58.31833538599312,-57.86667200503871,-58.80693054618314,-58.50118062598631,-59.390577336773276,-59.1757152271457,-58.24083780031651,-59.21861885068938,-59.19054843345657,-60.066973550245166,-60.00703144259751,-59.01493440475315,-58.31745705800131,-59.11239101085812,-58.520635871216655,-57.54778828192502,-57.87554034637287,-58.49621622310951,-58.66168494196609,-58.984134232625365,-58.84191383048892,-58.775470833759755,-58.14596718642861,-57.85457677766681,-57.72606021119282,-58.00596225867048,-57.3351531913504,-57.12492795381695,-57.573724020738155,-58.54179175198078,-58.06260434957221,-57.710304172709584,-58.57210465706885,-58.07618330558762,-58.105609487276524,-58.42284197965637,-58.554240060038865,-58.382636765018106,-59.13987890584394,-59.955903730820864,-60.83589248592034,-61.40640036808327,-62.07428654842079,-61.103185744956136,-61.714680556207895,-62.32621870841831,-62.9913515294902,-62.680498180445284,-62.827436190098524,-61.88522732583806,-60.90667185653001,-60.58555388916284,-59.987238094210625,-60.547797217965126,-60.31174651812762,-59.342963714618236,-59.04685552511364,-59.388567144051194,-59.952871093992144,-59.0998847768642,-60.066330205183476,-59.16921581001952,-60.01370144588873,-59.78501561842859,-60.60321366973221,-61.41656262706965,-61.41300525330007,-60.744467987678945,-61.439457579515874,-62.01453549135476,-62.53002816578373,-62.513830876909196,-62.3049452570267,-61.58728128252551,-62.31106892274693,-62.724167050328106,-62.41738322516903,-62.359096040483564,-61.567345732823014,-61.64926886279136,-60.876766599714756,-60.84306234167889,-60.95824121776968,-60.717371742241085,-61.6335858553648,-62.2465040856041,-61.850766873918474,-60.86849285569042,-60.732446029782295,-60.454073537606746,-60.04748592572287,-60.79898746870458,-60.85400251997635,-61.817064587026834,-61.46440658485517,-60.48840919462964,-60.327495492529124,-60.22798778768629,-60.17789201717824,-59.43345922464505,-58.87539990665391,-58.920343334786594,-59.62556428462267,-59.32867926964536,-58.8829094292596,-58.81477040471509,-58.226690561976284,-58.66953924158588,-58.46132452785969,-58.278920537326485,-57.281710811425,-56.64274984644726,-56.910644594114274,-56.44433273887262,-56.4820921854116,-55.662151830270886,-54.69249477004632,-54.659501027781516,-55.22428239090368,-55.025308188050985,-54.62474142573774,-54.57945277914405,-53.920717811211944,-53.664527444168925,-52.85673274099827,-52.919952635187656,-52.73874163487926,-52.54225322045386,-51.880257377866656,-51.54548291070387,-52.251006533857435,-52.98067290056497,-53.433503007050604,-52.505335465073586,-53.08607793506235,-52.526224551256746,-51.759409837424755,-52.21094184787944,-52.87646886520088,-53.32548968587071,-52.71026791585609,-52.96047584572807,-52.12490104418248,-52.18341919686645,-52.85343928588554,-53.6323790512979,-54.05851318594068,-54.28011144744232,-54.9615802061744,-55.91378232697025,-56.10135366162285,-56.18948510894552,-55.55408543627709,-55.99296879954636,-56.838069905526936,-57.40180493472144,-56.84728650934994,-56.14387563476339,-56.999519053380936,-57.92117218207568,-58.1670283745043,-57.64057420147583,-57.33203467307612,-58.025622298009694,-57.13622826244682,-56.32237120484933,-55.3952553384006,-55.94726082123816,-55.54634926561266,-54.608656561002135,-54.884758620522916,-55.379006882663816,-55.97868897905573,-55.31484166998416,-54.68184553505853,-55.3168197167106,-54.880990172270685,-54.39467937825248,-54.53456439496949,-54.94074495881796,-54.78060313267633,-55.11143299471587,-54.16403393307701,-54.697962765581906,-54.529359789565206,-53.542824203148484,-52.785923801828176,-52.57379834726453,-52.1646329080686,-51.84808200644329,-51.46863325452432,-51.506873240694404,-52.40386595251039,-53.27918826416135,-53.5750116542913,-54.226912814192474,-54.70228778664023,-55.45328250946477,-55.514762544073164,-56.31278631882742,-55.441220599226654,-54.862671348731965,-54.016589048784226,-54.74121161317453,-53.89676690520719,-54.3193580750376,-53.82699907757342,-54.02162062097341,-54.35497874720022,-55.2474537701346,-54.80631321109831,-55.66847849264741,-55.79689651913941,-55.7082466292195,-54.91631304239854,-54.17214448656887,-53.274758444633335,-54.15837690839544,-53.55098604038358,-53.95767005113885,-53.66590171447024,-53.10506026027724,-53.89082986023277,-53.87473218841478,-54.01000764593482,-54.8314694003202,-54.756650019437075,-55.31433325400576,-55.614004228729755,-55.909387273713946,-55.00745451822877,-55.03634413378313,-55.203633532393724,-55.91808159928769,-55.478562612086535,-55.73540412914008,-55.445390440989286,-55.15247410349548,-55.906496928073466,-55.6185479266569,-55.06405724026263,-54.1200368385762,-53.3828597557731,-52.744997524190694,-52.07152747455984,-52.01233264245093,-51.18255214346573,-50.38722923677415,-50.993947656825185,-51.5691040456295,-51.34930317942053,-51.55572595773265,-51.828696058131754,-51.673874124418944,-50.74262667540461,-49.86985467839986,-49.822259538806975,-50.00005670264363,-49.83743899734691,-50.34533896809444,-50.697205228731036,-50.12669130414724,-49.69962132675573,-50.447120008058846,-51.0781741803512,-50.26871050335467,-50.88328659161925,-51.19677338376641,-50.42612755205482,-50.2820849516429,-50.74253048328683,-50.31433298299089,-49.41330020176247,-49.089690109249204,-49.55344284046441,-49.43945684377104,-49.0419411463663,-48.215774258133024,-47.22977867629379,-47.5645376900211,-47.688333210069686,-47.54020724771544,-47.78414322575554,-48.70684453425929,-49.681728596799076,-50.59512930130586,-49.72296830639243,-49.73546826234087,-49.06611414765939,-49.71405906137079,-50.62724118260667,-51.40631077392027,-51.88957134122029,-52.46818383038044,-53.40100103802979,-52.93338807485998,-53.51324349734932,-53.42663654824719,-53.48258203966543,-54.17199091427028,-53.7447518366389,-54.69150786008686,-53.826629844959825,-53.68442046362907,-54.03723857784644,-53.517656615469605,-52.687657680828124,-52.15053398581222,-51.563272619154304,-52.511010385118425,-52.740576684474945,-53.136227587237954,-53.74864558363333,-54.25932215852663,-54.165759140625596,-54.96650601224974,-55.80292856646702,-55.07445802493021,-54.44774317834526,-54.45468481630087,-53.79341595666483,-53.70938027650118,-54.15695025911555,-54.787099852226675,-55.05457009281963,-54.11875818576664,-54.73388432851061,-53.96004869788885,-54.83200919767842,-54.93924189964309,-55.679441765882075,-54.98231139173731,-55.818305287044495,-55.91395934484899,-55.90137415193021,-55.38098134519532,-55.566941739059985,-54.74516556132585,-55.410583331249654,-54.649310685228556,-54.20823418861255,-53.246319672092795,-52.73179461201653,-52.077153025660664,-51.77681583771482,-52.68456639023498,-53.00842639198527,-53.43764039920643,-53.07165087107569,-53.884545487351716,-54.54949662974104,-54.73740047169849,-55.39739435724914,-55.35309227509424,-54.840424300637096,-54.960167731158435,-54.17446144577116,-55.06144702062011,-54.56027997797355,-54.00496252300218,-54.88584604207426,-54.140458821784705,-54.49213260225952,-55.00704918988049,-54.202724328264594,-54.141406618990004,-53.232168754097074,-53.71906539192423,-54.260985009372234,-53.69028056412935,-54.19977255258709,-54.50307531096041,-55.48081414680928,-56.320017151068896,-57.23920331802219,-57.804703859146684,-58.23331683315337,-58.74542616959661,-58.58776502078399,-58.58309718500823,-58.40912394924089,-57.45270840264857,-57.02290500467643,-56.13951524812728,-55.92122633103281,-54.96624955302104,-54.21018316177651,-53.66583305737004,-53.067609240766615,-52.85298888012767,-53.82408614968881,-54.79013157263398,-55.21814930578694,-54.33597552962601,-55.18548886291683,-54.609915912617,-53.88431319501251,-53.63109409296885,-54.06240024091676,-54.47099444177002,-54.82363730575889,-54.23032803228125,-53.715005978010595,-54.26769258128479,-53.35171255748719,-52.71075007133186,-52.41826850455254,-52.25261089671403,-51.74794902652502,-52.03668658155948,-51.619381537660956,-52.5099713485688,-52.97905387636274,-53.56943772174418,-52.64789871731773,-51.64952312596142,-51.23560436209664,-51.5902231791988,-52.236839960794896,-51.72442056518048,-51.12433669762686,-50.7961957664229,-51.708092702552676,-52.48354471800849,-53.28173503605649,-53.54288281034678,-52.766990636475384,-51.891457652673125,-51.81555676786229,-52.342387448530644,-52.88348164362833,-53.186620076186955,-52.75698380731046,-53.57030584290624,-54.246012058109045,-53.739052223041654,-53.536900592036545,-53.78801718680188,-54.233477593399584,-53.71015649288893,-54.50189620256424,-54.355009354650974,-53.63142644520849,-53.769342329353094,-52.907573603093624,-53.283120778854936,-53.490349802188575,-54.15688045695424,-53.92997493874282,-54.22974814474583,-54.49439171189442,-54.28195724822581,-53.46113280719146,-53.93553862394765,-54.62409142032266,-53.6854231483303,-53.69762614974752,-53.995863252319396,-53.564917664043605,-54.46101087331772,-55.39184876345098,-56.071529779117554,-56.52555226255208,-55.605951440520585,-55.919983262661844,-56.47178598260507,-56.57363481493667,-56.43184781400487,-56.39513817895204,-56.18156838789582,-56.14731731265783,-56.970257953740656,-57.632474480662495,-58.34643538855016,-58.91761596221477,-58.79493940155953,-58.232599191367626,-58.081084800418466,-57.260273970197886,-56.51772484276444,-57.11383189866319,-58.100657964125276,-57.39088212326169,-57.05806721188128,-56.388653877191246,-55.39570914627984,-55.81141616171226,-56.430739550851285,-56.375028730835766,-57.36587513471022,-58.057641783263534,-57.218217777553946,-57.48312368057668,-57.67375391814858,-57.34298745263368,-56.400496737565845,-55.881686666980386,-56.108230833895504,-56.23797680577263,-57.1159729314968,-57.51899616839364,-57.9192561339587,-57.39183989400044,-57.79276603460312,-58.63716805074364,-59.33101396309212,-58.57898567523807,-58.79354296112433,-59.39874189440161,-59.06480706576258,-59.26305190846324,-60.10449925903231,-60.11136466311291,-60.165279055479914,-59.856120803859085,-60.13509075110778,-60.79942531045526,-61.64126471243799,-62.55951276561245,-63.33340651448816,-63.31386051559821,-63.638068969827145,-63.33051117043942,-64.27717316383496,-65.20509722875431,-65.96051981160417,-65.75452220859006,-66.33926591416821,-65.79655738407746,-66.5717792417854,-67.02563438983634,-67.795997928828,-68.34087019134313,-69.1971453721635,-69.23781712865457,-68.91172922309488,-68.56441965838894,-68.51103681512177,-69.2054718695581,-69.92288816114888,-69.21296574315056,-69.93655160954222,-69.25851894682273,-68.80210212245584,-69.15717530949041,-70.04179675504565,-69.53726061759517,-69.74941861908883,-69.66870262101293,-69.25486602494493,-68.28775648633018,-67.72450025146827,-68.3697935687378,-68.88999080751091,-69.47560455324128,-69.25621209247038,-68.36918906820938,-69.10235628671944,-69.20864460710436,-69.69316525245085,-69.99070312827826,-70.55953690502793,-71.4661067109555,-72.32850190578029,-71.90127278212458,-70.93604098446667,-70.19876158842817,-70.12704942468554,-69.87077027233317,-69.46641717618331,-69.73743163002655,-70.59338260954246,-71.21425179671496,-71.97741978801787,-72.30021580029279,-73.01382747711614,-73.6932325786911,-73.86194629594684,-74.19008365925401,-74.96697084838524,-75.03043615492061,-75.90175274014473,-75.76246634311974,-76.07800999982283,-75.58288390189409,-74.87826916389167,-74.52344588609412,-74.28209238825366,-74.5799722392112,-75.4499215465039,-75.03518522297964,-74.04766451986507,-74.46817367197946,-75.02667839638889,-74.0354308844544,-73.96073639206588,-73.40174344507977,-72.67920156335458,-72.55107517493889,-72.840092016384,-72.00561160268262,-71.80768858129159,-71.47627101140097,-72.20073991082609,-72.6110277660191,-72.75020591774955,-71.90583589766175,-72.64985642954707,-73.59794849110767,-73.66277844505385,-74.20961262146011,-74.0276356623508,-74.0388110075146,-73.8240333753638,-72.89899418968707,-73.15043036174029,-73.65087464824319,-74.4296251325868,-73.74295647582039,-73.7723574405536,-73.23686018865556,-72.45344726368785,-72.63106590602547,-71.85277011804283,-71.9078035177663,-72.54847265267745,-73.018166301772,-73.98253687052056,-74.8865728653036,-75.21925310278311,-75.45518589578569,-75.79878567438573,-76.66316425427794,-76.62524771410972,-76.18094191653654,-76.83263875776902,-76.09683183114976,-76.64288889011368,-76.10939977318048,-76.8141128080897,-76.69215837493539,-77.22009594924748,-78.17799160024151,-78.9546106965281,-78.3628049492836,-78.30236917594448,-79.23137065209448,-79.07014270406216,-79.9001992805861,-80.81146697932854,-80.28785302722827,-79.66668618330732,-79.2990634413436,-78.85789884300902,-79.08746201545,-78.66998629691079,-78.7498223814182,-78.20923499157652,-78.02405168255791,-78.22306580701843,-79.11874457541853,-79.68422655714676,-79.66257502138615,-79.19061793433502,-78.38541250722483,-78.81594613892958,-78.94191952096298,-78.0350346150808,-77.31089286087081,-77.45453220140189,-77.9965954455547,-77.03362140059471,-77.12467443058267,-77.5560352341272,-77.13920140266418,-77.333565604873,-76.87380867730826,-76.18667057342827,-76.48775332048535,-76.40204435028136,-76.43566786730662,-75.5891970358789,-75.34315211279318,-75.53292065439746,-76.23514389107004,-76.02218016702682,-75.90516919177026,-76.58847986441106,-75.72646560892463,-76.41131437197328,-77.29861612292007,-77.15125151304528,-76.1695806174539,-75.40608925465494,-75.58361396193504,-74.76406664447859,-74.69141508219764,-75.10596492234617,-74.38529288209975,-75.00214896909893,-74.88140947651118,-74.28012687666342,-73.75393055658787,-74.20972069678828,-74.47665286716074,-75.236611392349,-76.08318585902452,-76.55905040400103,-76.13076572492719,-76.24243227858096,-76.999932046514,-77.9491530135274,-77.83528118254617,-77.83589593693614,-78.66302544483915,-78.91497747926041,-78.39971954422072,-78.51753252837807,-78.36670256406069,-78.72569424519315,-78.29722027573735,-78.91171395685524,-78.1385082420893,-78.66507144086063,-79.12097152834758,-79.77854506997392,-79.64217550866306,-79.01415198110044,-79.3142299815081,-78.84710882231593,-79.8300350997597,-80.07783924229443,-80.50629111099988,-79.87939180852845,-79.63042308343574,-80.22854516142979,-80.50227086106315,-79.88053480815142,-80.03711217315868,-80.67811608500779,-81.53526545315981,-80.75919698923826,-81.53640626277775,-81.93394038081169,-82.03956501651555,-82.19018528237939,-82.1344885258004,-81.60369704896584,-81.0394558031112,-80.25508826924488,-80.08570128772408,-80.96201673522592,-81.3522548484616,-80.8386113839224,-81.25207119714469,-81.09850191930309,-80.67812995566055,-80.7875622860156,-80.54979816963896,-80.36570125352591,-80.41147678298876,-80.12546811858192,-80.63398289959878,-80.7050601337105,-80.33354977983981,-79.78093847865239,-79.77579987375066,-78.90954188955948,-79.0835780389607,-78.94814597489312,-79.93435487989336,-80.12759249890223,-80.44000178109854,-80.77702658437192,-81.1775294803083,-81.35707870358601,-81.22920331638306,-80.75111612258479,-80.10175801347941,-80.52964337915182,-80.39963677665219,-79.81480253115296,-80.49252326693386,-81.23321417858824,-80.27429279591888,-80.53352153394371,-80.76340121496469,-80.32730233483016,-79.98088705679402,-80.73390883393586,-80.03692276962101,-80.96604441246018,-80.88495185179636,-80.30862193927169,-81.23399357264861,-80.35740511957556,-80.01858420995995,-80.1509707737714,-80.40455778734758,-81.00661095324904,-81.95372838014737,-81.5679763732478,-81.98838201351464,-81.25661348877475,-81.29952419037,-81.92871433449909,-82.05270586721599,-81.73077018372715,-80.92576609924436,-80.77073031710461,-79.82481412310153,-80.73016044590622,-81.54645834490657,-81.27183137042448,-81.66464080289006,-81.34307972854003,-81.44151480542496,-82.16574780782685,-82.00475367996842,-82.5220547337085,-82.17320099938661,-82.6873571947217,-81.7963110008277,-81.96047404408455,-81.13520222669467,-81.7765463734977,-80.99461777089164,-81.32203257642686,-81.78781593125314,-82.41188898961991,-81.67583842435852,-81.8593466617167,-82.10667277406901,-81.17193737160414,-80.59061701968312,-80.62152047315612,-80.51119839772582,-80.10419943695888,-80.7000920176506,-81.12311423709616,-81.13955338438973,-81.7184293968603,-81.51948943641037,-81.26182410866022,-81.50772394053638,-82.48760807141662,-82.87577400915325,-82.35121407639235,-82.2749827769585,-82.85343127371743,-82.61748608620837,-82.23125530872494,-83.02505105175078,-83.22989488020539,-83.6154643339105,-83.83257025107741,-84.6425193734467,-84.32337191002443,-84.51444710697979,-85.0717996917665,-85.7370687960647,-85.1666610869579,-84.22320387326181,-83.70491110766307,-83.96948438510299,-84.23431443050504,-85.17935318220407,-85.4927989076823,-85.97840307746083,-85.83995304536074,-85.11397246550769,-85.56108942162246,-85.01365441503003,-84.71660908591002,-84.9962791656144,-84.819679656066,-85.6909119412303,-84.88879226241261,-84.74554831627756,-83.78672269871458,-84.45681754406542,-84.88948851171881,-85.50129685830325,-85.62406855123118,-85.45007437188178,-86.01682382076979,-86.97289488883689,-86.58844936545938,-86.35371105605736,-85.56394320772961,-84.98287538764998,-84.30637866863981,-84.53071259241551,-85.52170199342072,-85.29387927940115,-85.81477566668764,-85.08883978659287,-85.1211231276393,-85.13523149117827,-85.59806377254426,-86.01110899448395,-85.23427605256438,-85.50616080779582,-85.8571858885698,-86.03768795263022,-86.01373653719202,-85.72222498944029,-85.30290768155828,-86.13871095562354,-86.33620513323694,-87.21705445228145,-87.86625047633424,-87.96593414153904,-88.28816505521536,-88.79356429260224,-88.47110396204516,-88.17839510925114,-87.41190769616514,-87.27953964564949,-88.1574575919658,-88.24788273638114,-87.50683438125998,-87.43734497437254,-88.16787707572803,-88.51323434570804,-87.988931753207,-87.19609498418868,-87.15127387456596,-87.21781553654,-87.45435050642118,-88.32581760874018,-87.96522274333984,-88.68760692887008,-87.86455271113664,-87.00571215245873,-87.9676598124206,-88.85262050712481,-89.44977788161486,-90.42578069027513,-90.5032318001613,-89.97953536966816,-90.69748031813651,-90.85908175026998,-90.97413400467485,-91.70310862036422,-91.76207023486495,-91.1570089822635,-91.38589650252834,-90.65139808738604,-89.81989507190883,-89.89828081568703,-90.61281233327463,-90.85830128611997,-91.21062661428005,-92.14455738151446,-92.26432812958956,-91.8426177254878,-92.26950049865991,-93.23769699782133,-92.28139341576025,-91.77102562179789,-90.82372363563627,-90.05357847129926,-90.3391528762877,-89.98136335378513,-90.37408223189414,-90.17359468340874,-89.18537008482963,-89.24810205865651,-89.5421143095009,-90.1077367789112,-89.62984796939418,-89.28896195115522,-89.14872619090602,-88.31422764156014,-88.68392726499587,-88.41289162216708,-87.84369429992512,-87.61499457806349,-87.50175663037226,-88.04047021595761,-88.9031617953442,-88.91541582671925,-89.06999789737165,-88.50266256276518,-87.57372979167849,-87.8336471109651,-88.55314722191542,-88.13769062794745,-87.53553292201832,-86.60096320090815,-86.05873392242938,-86.84383873129264,-86.85454161977395,-86.99019364733249,-87.1548693026416,-86.9809271171689,-86.0423412322998,-85.10568191343918,-84.83735165791586,-84.77501034224406,-84.21431547729298,-83.36355155706406,-83.49827277613804,-82.62951399479061,-83.49188680807129,-82.90676023205742,-83.86207052879035,-84.03474940732121,-84.54123590281233,-85.29627936519682,-84.40642152400687,-83.87111297855154,-84.80157757550478,-85.61969366762787,-85.49898277595639,-86.01343852095306,-86.41202619159594,-86.63744716951624,-86.06144442595541,-85.61563261272386,-86.19301887322217,-85.35950566455722,-84.81226860312745,-84.73940730793402,-83.97293676016852,-84.45559649774805,-84.16522184107453,-84.26861156709492,-83.64041510783136,-84.07142156921327,-83.33775820257142,-84.19100902462378,-84.39549874933437,-84.11079930141568,-83.94804353266954,-83.73544195154682,-83.9520629728213,-83.21567737031728,-82.60364093445241,-83.54527215613052,-84.13183469884098,-84.24389231624082,-84.4493425283581,-83.54310404742137,-83.62566756270826,-83.9045843584463,-84.16905426885933,-84.36711340723559,-84.73835831834003,-84.7616722737439,-84.98738233884797,-85.78330276440829,-84.9686909657903,-84.10396251175553,-83.97342784423381,-84.6559222000651,-83.99856201699004,-83.29054914833978,-82.6978680244647,-82.07031949609518,-82.43479989515617,-81.70600615348667,-81.96115122083575,-81.43440442672,-81.01511468132958,-81.02996430220082,-81.89004781330004,-82.02293984498829,-82.42793175624683,-82.47550969710574,-83.00379011966288,-82.98799674771726,-83.64393020933494,-84.34428678685799,-85.07430699560791,-85.40306721581146,-86.3964798101224,-86.62937508150935,-85.90081111248583,-86.84874718496576,-86.35746482945979,-86.1645141793415,-86.79944289894775,-87.11642563901842,-86.5364493560046,-86.69180833548307,-87.03476934833452,-86.89024533797055,-87.36687633674592,-86.92505624471232,-86.01090750051662,-86.13754748320207,-86.58640550170094,-85.85071705281734,-85.63109000911936,-85.54151922510937,-84.80460343323648,-84.74245513183996,-83.82859430694953,-84.71575276227668,-83.74660342512652,-83.25624150410295,-83.31427927827463,-83.55183739261702,-82.89919584151357,-83.58697238564491,-84.24695260170847,-84.14573177369311,-83.56176617508754,-83.58307621907443,-82.83303175447509,-83.75514954095706,-82.85130688315257,-82.47280754568055,-82.09808024857193,-81.78269290318713,-82.53425609925762,-83.00253474293277,-83.34719640389085,-83.50149959046394,-83.37378650065511,-82.71955745341256,-82.9486588826403,-82.14008242776617,-81.30995903396979,-81.12493679393083,-81.03010163176805,-80.55281975958496,-80.56268814904615,-81.12720979796723,-80.77365334704518,-81.0470761093311,-81.41658796183765,-82.36529035447165,-83.27746317209676,-83.3314954424277,-83.59031290980056,-83.26973535586149,-82.8942222991027,-83.07926460588351,-83.09372499212623,-83.83101782388985,-83.10112948110327,-84.06243613082916,-83.4836590103805,-83.67317603575066,-84.20726241078228,-84.60805852338672,-84.36794899543747,-84.22939706640318,-85.18051406508312,-84.97064288007095,-84.879093229305,-85.65022065723315,-85.52713364502415,-85.61466284887865,-85.9337421557866,-86.7730550407432,-87.73549723671749,-87.56349995592609,-87.94752856297418,-87.15334185445681,-87.60374151589349,-87.40765829291195,-87.7678958196193,-87.73514703242108,-88.55454520741478,-88.5379893281497,-87.89326635887846,-88.67584749590605,-87.81733890203759,-88.16536565870047,-88.38274055020884,-87.56883291853592,-87.6313421423547,-86.99763024458662,-87.21236840263009,-86.63653809623793,-87.22183855623007,-87.62072210246697,-88.47927254298702,-88.28583189239725,-87.62033710582182,-88.3420365927741,-88.95945809828117,-88.62913664011285,-89.42380223795772,-89.3303887299262,-89.08050686772913,-88.91353956703097,-88.09799751872197,-87.83937029307708,-87.81712724082172,-88.50819514505565,-87.64654636057094,-87.44681053701788,-88.43458457291126,-88.0677012722008,-88.76922998437658,-89.56608744477853,-89.6008346262388,-90.07817142503336,-89.33472738415003,-89.88497540121898,-88.93899935297668,-88.87676839251071,-89.45274413190782,-88.9696467956528,-88.85160130029544,-89.09795054513961,-89.15308394050226,-88.45996137429029,-87.48244379647076,-87.02376461680979,-87.164663777221,-87.24614422116429,-87.93703613104299,-88.323805289343,-87.46783517906442,-87.20999991707504,-86.88549251155928,-87.67209965689108,-86.8932527853176,-86.55093161016703,-87.25208632694557,-86.84214242873713,-86.19691778020933,-87.1335472855717,-86.35527609754354,-85.91777341812849,-86.31770834699273,-85.7037920858711,-85.14240680402145,-85.07937683677301,-85.47223959723487,-86.16982785519212,-85.87548248656094,-85.47098884452134,-86.31300082895905,-86.33746044198051,-86.56467972462997,-85.7069700253196,-86.383343226742,-87.13785930071026,-86.67099125916138,-86.89044403564185,-87.80595578067005,-88.60126567725092,-89.42167919501662,-88.74857749696821,-89.62937617860734,-89.86320314090699,-90.31836911616847,-90.32804542640224,-90.59057834465057,-90.86844205809757,-90.2419668622315,-90.78251680592075,-91.52240427350625,-91.48695054231212,-90.886531395372,-91.82880521006882,-91.63927409891039,-91.2551855747588,-90.77675895625725,-91.10519743710756,-91.55193045735359,-91.87408420583233,-92.60669864481315,-92.23648190079257,-91.84898541262373,-90.94790423195809,-91.78041951265186,-91.01071826601401,-91.11473171645775,-90.55581502104178,-90.92314682435244,-90.80448315432295,-91.75361070828512,-92.50708951754496,-92.98857330577448,-93.68243554374203,-94.03423084737733,-94.03868404589593,-93.79662619531155,-92.9546536677517,-93.182793490123,-92.36120647797361,-92.14967642910779,-92.79319953685626,-92.1415331736207,-92.33264086628333,-92.8620650600642,-92.3773954603821,-92.7500238805078,-92.1211198149249,-91.61556369625032,-92.20653624739498,-92.79005667380989,-92.43001180421561,-92.25874688196927,-92.11640225024894,-91.25428186589852,-91.91968199098483,-91.47119037248194,-91.31800011498854,-90.70466921012849,-90.92037851316854,-91.28815758321434,-91.03539311513305,-91.29146656300873,-91.40363625902683,-90.43260118877515,-90.06468528835103,-90.17671762267128,-90.93548821238801,-91.08227851754054,-92.08211513934657,-91.27979038795456,-91.42673273710534,-91.0988287050277,-90.33415660215542,-91.1210994515568,-91.84238560404629,-91.44430961692706,-92.30659752478823,-91.54960042471066,-91.54206297453493,-90.65993624785915,-90.38207094091922,-91.3804839886725,-91.34391465038061,-91.91970208287239,-91.24703633505851,-91.87067758804187,-92.10960474051535,-91.45781093090773,-92.18214750895277,-91.69546531140804,-92.55629228753969,-92.9790770332329,-93.05372450081632,-92.128377947025,-92.02925677038729,-93.02322566695511,-92.33312162943184,-93.2991703581065,-93.0452976860106,-92.19469643943012,-93.19371071923524,-93.31645342707634,-92.35071449819952,-91.62586520705372,-91.97188169695437,-92.12914875941351,-92.3169930963777,-92.57839960185811,-92.29670619266108,-92.98606752464548,-92.9607049068436,-93.53030372597277,-93.79048901423812,-93.39742472721264,-92.87455817684531,-92.02395623642951,-91.02447917824611,-91.04620043328032,-91.43044125428423,-92.1150871636346,-91.14345759805292,-91.73820141423494,-92.11989395413548,-93.0544288707897,-93.85488429712132,-94.5779364425689,-95.29850791860372,-95.65727621596307,-95.88377398904413,-95.19709073705599,-96.01138945110142,-95.08592341048643,-94.56315811304376,-94.50621835608035,-95.20766351558268,-94.29901841748506,-94.55887261871248,-94.23581993952394,-94.51989511214197,-93.55468309810385,-94.00820077396929,-93.02810995606706,-92.91689987108111,-91.92435298720375,-91.37296743644401,-92.097217512317,-92.88593906443566,-93.15112947346643,-92.47048411378637,-92.01252401713282,-91.41643250687048,-91.72246881015599,-92.02817206038162,-91.57128638820723,-92.38068202137947,-92.9060703846626,-93.13184522325173,-93.30052542081103,-93.57064320286736,-93.30785936769098,-94.12517307139933,-93.87388143269345,-92.87963249767199,-91.96849780995399,-91.4140112302266,-91.82556105870754,-91.65766307665035,-91.27696335082874,-90.59149032365531,-89.99186828685924,-90.83056474057958,-90.69358769897372,-90.04924725415185,-90.02124550193548,-89.0804392225109,-89.36351653328165,-89.5104831168428,-89.62383220298216,-90.42200648458675,-90.97294952906668,-90.28199776820838,-90.94231633190066,-90.62597729125991,-89.90691287722439,-89.40632503619418,-89.56956560350955,-89.84282153099775,-90.12787078134716,-89.9881533049047,-90.96763163711876,-90.4781886623241,-89.51820014463738,-90.08213304076344,-90.32436311524361,-89.76861688261852,-90.67053045006469,-89.79920854466036,-90.22489988151938,-90.81952982442454,-90.81588335055858,-90.26957685314119,-89.54860306531191,-88.95783598627895,-88.99688552133739,-89.31427802238613,-88.31464660027996,-89.12655359925702,-88.87935793912038,-88.30213600117713,-88.89306883281097,-88.16493431245908,-88.84430085448548,-88.75871870946139,-88.05986292706802,-88.64193522091955,-87.71452486049384,-87.02403665101156,-87.61114941071719,-87.26181157119572,-86.49410160304978,-86.55017316062003,-86.22457546973601,-86.56480795051903,-87.17339174076915,-88.14003653498366,-87.56571231037378,-86.80255960579962,-87.69810217153281,-88.21129654254764,-88.79758500214666,-88.28648081142455,-87.66042551863939,-87.88821336114779,-87.39150712639093,-86.4823868656531,-87.07887157658115,-86.4157128687948,-87.37490773713216,-87.07168991211802,-88.05596566293389,-88.0500467652455,-88.70283808419481,-89.33711020136252,-89.96103771449998,-90.58064208179712,-90.61496925679967,-90.45424041990191,-89.95904626837,-90.19807259598747,-91.04749107686803,-90.66197315929458,-90.16297115990892,-89.4402944915928,-90.00209584226832,-90.70048453472555,-90.46534626418725,-91.43820323934779,-90.51137205399573,-90.78446436533704,-90.23620555596426,-89.27945441193879,-88.51621299330145,-88.41930508380756,-87.97994390176609,-88.51032615173608,-88.6867283442989,-87.88401052402332,-88.00459145056084,-88.46187756909057,-88.07708343118429,-89.02922968193889,-89.9431352764368,-89.17919683968648,-89.64551806403324,-89.09483105316758,-89.71522348793224,-89.10521534876898,-89.75793000683188,-88.82735558506101,-88.20340885780752,-88.27164449775591,-88.97829324938357,-88.10126467840746,-87.17319853138179,-88.06783710187301,-88.35231067612767,-87.85442806268111,-87.06858178740367,-87.96121381083503,-88.48288759030402,-89.02599245123565,-88.89706368977204,-88.08873813180253,-88.37894183723256,-89.31451630173251,-90.20682779373601,-90.08550628367811,-90.43689416348934,-89.8741514896974,-90.4338434045203,-91.10682963160798,-92.05723553150892,-92.38442519959062,-92.67585721611977,-91.81032244488597,-91.25321888457984,-92.21867133397609,-92.88338371366262,-93.67232570890337,-92.99174789898098,-93.05047724721953,-92.78481120010838,-93.21533574583009,-92.29180602869019,-91.54653941234574,-92.46486733527854,-91.48654753016308,-91.48997878981754,-92.13335122773424,-92.34081231011078,-92.07638845127076,-91.67803008900955,-91.17349982075393,-91.16296068625525,-91.73805755749345,-91.54170846892521,-92.01889094151556,-92.73093274701387,-93.07090603047982,-93.98826556513086,-94.46928208926693,-94.26705926517025,-93.82890222594142,-94.76596043165773,-93.77203503809869,-93.28737976960838,-93.01123957009986,-92.98852496687323,-92.93346492946148,-92.74794144835323,-92.80697851022705,-92.98366633802652,-92.9270606529899,-92.2116133463569,-92.14946109009907,-91.616231684573,-92.01330994162709,-91.43978113029152,-91.08290726924315,-90.93995314510539,-90.31335050845519,-91.15040111215785,-90.41218775417656,-90.31681375717744,-90.259616994299,-90.03293380513787,-89.87088305642828,-90.5524798212573,-90.4994236510247,-89.69647260243073,-88.87872141646221,-88.6411661086604,-89.53372556110844,-90.20751867350191,-89.7392632481642,-90.45120939705521,-89.91527136554942,-90.51114241080359,-89.74465743126348,-89.62863430473953,-88.86011217813939,-88.85567791294307,-89.46853329706937,-88.76832666993141,-88.93184378976002,-88.252362142317,-87.3032897124067,-87.73047129670158,-88.37912840675563,-88.8154679806903,-89.29294424923137,-88.87967166025192,-88.91097686672583,-89.52853733999655,-90.4610707834363,-90.75680340873078,-91.59942175168544,-92.00768130784854,-92.68483578553423,-92.0291591938585,-92.19429866597056,-92.57717260625213,-91.6851138039492,-91.21848752908409,-91.3521331534721,-90.77753583714366,-90.28484669234604,-89.68159184372053,-90.29424104234204,-90.87442908948287,-90.99299985123798,-91.84433591226116,-92.15282422443852,-91.49517450248823,-91.40696314815432,-91.06046284176409,-90.95375718455762,-91.6984360977076,-92.49151255562901,-92.46058272523805,-93.42491366481408,-94.24130299175158,-93.62418001284823,-93.95364412339404,-93.44389315275475,-93.18387035140768,-92.56349066272378,-92.91160401236266,-92.70670003816485,-92.204789317213,-92.6244373372756,-92.22708610398695,-92.37268177885562,-91.71177220996469,-92.0151333026588,-92.8989481413737,-93.16795437829569,-93.83858412550762,-93.73409259924665,-93.9859163989313,-93.39475161349401,-93.44363144272938,-94.41509271645918,-94.95779295451939,-93.98220877349377,-94.6274007325992,-94.17500670999289,-95.08639121847227,-96.0677564656362,-96.51135706808418,-97.13331126049161,-96.50053316960111,-96.68428171053529,-97.3136643259786,-97.99113950319588,-97.38130879728124,-98.19202655320987,-98.82600223412737,-99.34224041597918,-98.72687144391239,-99.51060557784513,-100.06006908323616,-99.46354597434402,-98.6007061349228,-98.70056748343632,-97.97433883883059,-97.86835205135867,-98.47507878486067,-98.21045327140018,-98.3228830168955,-98.03086500382051,-98.69744678400457,-98.19090103078634,-98.82273870147765,-99.79301720159128,-99.89916699705645,-99.81592275109142,-100.69809553585947,-101.16747729294002,-101.28519574413076,-102.05574120488018,-101.12357169482857,-100.35884268442169,-100.40459554223344,-101.08359554968774,-101.14964835904539,-101.89894392387941,-101.13771129399538,-100.49291014205664,-101.41202954389155,-100.72786577837542,-101.59980423329398,-101.88677755463868,-102.36493370123208,-102.43889945698902,-102.54145974153653,-102.84820232819766,-102.91807402484119,-103.55662405723706,-104.11786501063034,-104.38117332663387,-103.62609111517668,-103.48674619942904,-103.80365720344707,-103.09197173267603,-102.29378083534539,-102.06436798907816,-102.97261229576543,-102.25214750692248,-102.23554131388664,-101.8308449643664,-101.66728620929644,-102.45377764897421,-102.61954775406048,-103.18241103924811,-102.85333575448021,-102.10117857949808,-101.24052734207362,-102.01109640859067,-102.14231654675677,-102.52149482490495,-103.0177522287704,-103.79934534337372,-104.7985743097961,-104.0653878506273,-103.67625889182091,-102.93521308340132,-103.24932865751907,-102.72219662787393,-101.96364141162485,-101.15989911695942,-101.93624662654474,-102.80818477785215,-103.20295383920893,-103.84238592907786,-103.09646711265668,-102.35056226328015,-101.96364928316325,-101.47952228039503,-100.4866938535124,-99.56521158246323,-98.7503952155821,-98.42570903059095,-99.0494668460451,-99.97367895860225,-100.46761002484709,-99.6098496527411,-99.84486610535532,-99.88968511251733,-100.67088645556942,-99.71809960715473,-99.68322624033317,-99.81050340039656,-100.18847998091951,-100.76393230026588,-100.64960225252435,-100.92174910008907,-101.16078560240567,-101.44449819531292,-102.12585282698274,-101.99439822463319,-102.1191670820117,-102.95896345563233,-103.68667511083186,-104.104770578444,-104.78562411852181,-103.87578824302182,-104.45516400551423,-104.63766293786466,-105.12927467981353,-104.79939502477646,-104.74839727813378,-104.78241313435137,-105.37384457001463,-105.24402960622683,-106.05461971880868,-106.77583759324625,-106.80997238587588,-107.65705605503172,-107.80019001103938,-107.57934868242592,-106.92163206171244,-106.06663713185117,-105.93465460138395,-106.84077753080055,-107.02002342510968,-107.6819273433648,-107.39771034382284,-107.45330081274733,-107.1282769809477,-107.71436781762168,-106.97749865241349,-106.90823939163238,-107.02694995701313,-106.47173765907064,-106.82218648586422,-107.26305636996403,-107.38025522790849,-107.4228586065583,-107.54797631734982,-107.03875614935532,-106.46051152562723,-107.43198162596673,-107.21295370254666,-106.79293617699295,-106.91198645485565,-105.93101451499388,-105.78253766847774,-105.70402338448912,-105.95405135350302,-105.37432989943773,-104.78353349957615,-104.57883422542363,-105.17332035442814,-105.8010003278032,-105.2662527388893,-106.12968131480739,-105.72095925919712,-105.79046618752182,-105.10805990593508,-106.03880705684423,-105.3284873822704,-104.74432786460966,-104.36132596898824,-104.62586405826733,-104.38185139698908,-105.17867633933201,-104.72336335666478,-104.74466854380444,-105.61873966129497,-106.23601463250816,-106.53976640990004,-106.54712274111807,-105.87497872626409,-105.31443283520639,-104.93830992421135,-104.37512622354552,-103.96334764687344,-104.85773098655045,-105.66393443802372,-106.57150662690401,-106.98290088353679,-107.62272984907031,-108.11994946375489,-107.79595904424787,-108.63704516598955,-109.26876384019852,-109.49383381661028,-108.86996418889612,-108.27092396654189,-108.28759072022513,-108.48301559640095,-108.49117908393964,-109.04667435213923,-109.78521850146353,-110.09258465282619,-109.1376500944607,-109.01398784620687,-108.87131540942937,-108.2637736252509,-107.8323249607347,-107.96703769778833,-107.57381230592728,-108.2737910784781,-109.07843513367698,-108.75915247155353,-108.30524358246475,-107.65523182833567,-107.7725780243054,-107.54419929534197,-108.5294774803333,-109.3278325800784,-109.77994381124154,-110.08006522338837,-110.44561781454831,-110.52187506994233,-110.09179355436936,-109.2352677276358,-109.95152682252228,-110.05971176177263,-109.80610450357199,-110.67501146066934,-109.83730579027906,-110.28757492918521,-111.12062608497217,-110.40288119250908,-109.7973576602526,-109.13471159059554,-109.52957590762526,-109.12959159025922,-108.705810720101,-108.14932392025366,-108.6481525474228,-107.90039271162823,-107.4459837693721,-106.78379460144788,-106.81422175746411,-107.11802629614249,-106.7940599033609,-106.97057346906513,-107.27638989128172,-107.7895348626189,-108.0226603327319,-108.49917828384787,-107.87486689910293,-107.33669973351061,-107.8658000016585,-107.99125968897715,-108.76589745189995,-109.55516679957509,-109.21210986142978,-108.49337597191334,-108.71714023314416,-107.84650960890576,-107.99601994408295,-107.22047454118729,-106.73308073915541,-107.51636038161814,-107.77579450188205,-108.06722287461162,-107.60177082382143,-108.00143607053906,-108.23659082688391,-108.980736234691,-109.80041765375063,-109.8942131116055,-110.85148973111063,-111.11875012470409,-110.54931417154148,-111.42679892899469,-110.42722650850192,-109.49690813897178,-109.77481506438926,-109.63077610591426,-108.76885342271999,-109.76041190000251,-109.40292076859623,-108.48854999989271,-107.61739472858608,-107.13778339838609,-108.1345102339983,-108.76742993434891,-108.33150641433895,-109.28131934441626,-109.38622792577371,-110.0749056856148,-109.80009380588308,-109.62477850867435,-108.68287306837738,-108.78806848078966,-107.93278843862936,-108.86298939632252,-108.45316074462608,-109.29064613208175,-109.9749230206944,-109.82281354162842,-110.00390456942841,-110.46625527227297,-111.1164989802055,-111.38953553885221,-112.09462683834136,-112.04362222831696,-111.15509440470487,-111.81495610484853,-111.6729921544902,-111.03347353404388,-110.85985311726108,-110.12054221238941,-111.11778079112992,-111.65389794297516,-111.22633360978216,-111.4383959271945,-110.49192760977894,-111.00716979568824,-110.1952760531567,-109.72727777343243,-110.0160729046911,-109.79320778418332,-109.5867325309664,-108.91400105226785,-108.87887493753806,-108.71059857169166,-108.66916084196419,-108.57258172379807,-107.98660860024393,-107.97323408257216,-108.83677296154201,-108.94955544685945,-108.54900396475568,-108.2555402321741,-107.45958698773757,-106.98108384106308,-107.41409893194214,-107.65556177170947,-108.14720297185704,-107.16585274459794,-106.19807253358886,-105.80649046972394,-105.60969227273017,-104.82663397723809,-103.90378430997953,-103.04493231605738,-102.57322306046262,-103.02949986094609,-102.30467945896089,-101.33386465301737,-102.31007775571197,-101.92243331670761,-101.55128410691395,-102.32312770932913,-101.96613918757066,-101.081968577113,-101.0158976353705,-100.16497100004926,-99.26306884177029,-100.23929012566805,-100.61264351708815,-101.61131151067093,-102.2497336869128,-101.70037263305858,-101.50686255283654,-100.61920350091532,-100.39619316300377,-100.19341475469992,-99.57418826920912,-99.76629075733945,-99.34382936730981,-99.74604399781674,-99.08053382392973,-100.01602053176612,-99.41197368083522,-99.8378558983095,-99.8004367207177,-100.3885367908515,-100.44994987081736,-101.30214255861938,-100.88001927360892,-100.37989096017554,-100.07479284470901,-99.95674558868632,-100.36033710185438,-100.7397496914491,-101.35378412110731,-101.2528396146372,-101.93311164574698,-101.21590264840052,-100.950634771958,-100.51670229202136,-100.54607585491613,-99.95404714206234,-100.11359065724537,-100.40040788426995,-101.39320617169142,-101.27787127578631,-101.79267540108413,-101.48744505178183,-100.53052038466558,-101.07853867672384,-101.93305768212304,-102.81408495595679,-102.78868924826384,-102.4632792682387,-101.82329409942031,-101.56234817625955,-102.48419449152425,-102.72750546177849,-103.05861629778519,-102.44034132035449,-102.87525245593861,-102.87716354662552,-103.73849524650723,-104.59757705545053,-104.88235094305128,-104.11684979079291,-104.57840667059645,-104.32251039380208,-104.38607568852603,-104.64571376051754,-104.1294019203633,-104.82814706629142,-105.30022154375911,-105.84439248219132,-106.08070292230695,-106.05591366440058,-106.53572803130373,-106.3332840022631,-105.86297582834959,-106.56750702718273,-106.95437364280224,-106.68474106350914,-107.10340885818005,-106.76434654789045,-106.47426433674991,-106.20548684988171,-106.65633483882993,-107.10687736608088,-107.45867176586762,-107.46049949945882,-107.79382885573432,-108.73660377133638,-108.86396365007386,-108.54753101011738,-108.48330320976675,-107.94395607570186,-108.91638140846044,-108.15948655316606,-108.20716481935233,-108.21330283675343,-107.54509796435013,-107.34169953456149,-106.82827419694513,-107.28038369584829,-107.9172508274205,-108.46386887319386,-108.2296252711676,-107.69105631299317,-108.55780888162553,-107.97865415923297,-108.5705923140049,-108.03477606875822,-108.76626362279058,-108.8143230220303,-109.75041862064973,-109.71469204500318,-109.20195199083537,-108.24347627582029,-109.17363804206252,-109.68305196380243,-109.5253966585733,-109.85893580270931,-109.27397237624973,-109.81965164653957,-110.2182207852602,-109.26014022016898,-109.41022754227743,-108.72242996282876,-107.77637987351045,-107.95702678058296,-108.71990814851597,-108.5348342852667,-108.79676963016391,-108.4740292634815,-109.04388416884467,-108.18957849126309,-107.93676965218037,-107.31398600060493,-106.94770836085081,-106.21822263672948,-105.27087255194783,-106.25906977010891,-106.51601380528882,-105.56408913992345,-106.05190130509436,-105.19460223568603,-105.062943181023,-105.66317434515804,-104.8237307057716,-105.62747546797618,-104.70288154995069,-104.42077252594754,-104.64411280211061,-104.6840828070417,-105.57715758867562,-106.4886543364264,-106.23545659333467,-105.7352713830769,-106.40759354969487,-105.88303161924705,-105.49139246111736,-104.56909978762269,-103.70754124689847,-104.46573268529028,-105.31713288789615,-105.73143622558564,-105.16953180497512,-104.89980473183095,-104.27994350530207,-104.08715530857444,-104.22808195324615,-104.42227412946522,-104.35720456577837,-103.91396274138242,-104.68390545481816,-103.9535221029073,-104.67881245631725,-105.19927089987323,-105.95646272227168,-105.3012049458921,-104.55111656151712,-105.35474488791078,-104.5635027284734,-104.52414703462273,-105.32822694675997,-104.60035276738927,-103.6972504844889,-103.14934577047825,-103.255742108915,-102.66973158717155,-102.89503333624452,-103.35334809636697,-103.74916910659522,-104.43516386812553,-105.31940991291776,-104.42426263540983,-104.31146242376417,-104.29168464336544,-104.37085655611008,-104.72145582037047,-103.8514739931561,-103.83681626338512,-104.4332334860228,-104.50321701588109,-104.6090158210136,-105.53695550514385,-106.20721060829237,-107.06613281043246,-106.56799399992451,-106.93991409987211,-107.5257696416229,-108.2601277907379,-108.79220355954021,-107.9056773330085,-106.90719126490876,-105.91574488068,-105.28924519615248,-104.8421288812533,-104.52265143953264,-104.82486557820812,-104.65579259116203,-103.96778618032113,-103.21107543865219,-103.08121834136546,-103.74327642610297,-103.21080093970522,-102.99388795904815,-103.57686789473519,-102.78880006074905,-102.10452990140766,-102.13437401875854,-102.55810901522636,-102.82194461952895,-101.88094698265195,-101.51030585868284,-100.51138618215919,-100.43681623367593,-99.74334816541523,-99.34703793469816,-98.68533157138154,-99.11014218535274,-98.47109084576368,-99.30385837936774,-100.18782544415444,-100.52833967097104,-99.66285067098215,-99.48466458497569,-100.15866728313267,-99.92160758469254,-99.58790796855465,-98.73831359436736,-98.67638537101448,-99.28568157553673,-100.22031155787408,-99.8103336840868,-99.65439141308889,-98.66324379621074,-98.5803427346982,-99.40380900166929,-99.34653493016958,-98.80584083264694,-99.23589617619291,-99.48973423941061,-98.94106548279524,-98.20232620416209,-98.6910294094123,-97.87290688138455,-97.45530421286821,-97.3461596192792,-97.13258496113122,-96.47256098967046,-96.55129916453734,-96.2762678284198,-96.48670101957396,-96.53428363753483,-96.24016765132546,-95.87456343322992,-95.40476924320683,-95.34174965973943,-96.32093993993476,-95.46213449537754,-94.62432465562597,-95.23890008637682,-94.44840167835355,-94.16878477716818,-93.26734836632386,-92.73401824990287,-91.8555116513744,-92.11113187670708,-92.34756714385003,-92.71773297293112,-92.35786495637149,-93.32870659139007,-93.74450993537903,-93.46898772893474,-93.25784637825564,-93.78752692276612,-94.67371593834832,-94.54471695562825,-94.12738208053634,-95.03297564946115,-94.92635302850977,-95.15817596297711,-94.49728932231665,-93.93612256227061,-94.34609429165721,-94.41823192313313,-94.0367684904486,-93.19750636862591,-92.92160675954074,-93.37861703941599,-93.2157479757443,-93.47417070250958,-93.47420494025573,-92.59091560123488,-92.38086862303317,-92.29402489122003,-91.87602959573269,-91.69044073298573,-92.11599013581872,-92.55980623327196,-93.35733660729602,-92.78880522260442,-93.58667351165786,-93.26239429134876,-92.4930093800649,-93.21451836870983,-92.67216413607821,-91.92108158348128,-91.83295002253726,-91.65532274125144,-91.47550131520256,-90.89614756777883,-91.27071447344497,-91.3196263560094,-92.29906105203554,-92.48907888727263,-93.05201089382172,-92.07073861500248,-91.84901807783172,-92.72230462450534,-92.03064250992611,-92.16841294197366,-92.77593054343015,-92.8891342068091,-93.42329101311043,-94.33436115132645,-93.94669218827039,-93.00850764475763,-93.55954461777583,-92.65387112554163,-93.61648291302845,-94.29813645081595,-94.19565693708137,-95.17642433615401,-94.60345573956147,-95.16591133503243,-96.09413323830813,-95.86938770115376,-95.74848923832178,-96.61411283630878,-96.52218917710707,-96.0110635785386,-96.60128088667989,-96.83342285407707,-96.80098656890914,-97.58584552071989,-97.07553528388962,-97.24020993942395,-96.86032748920843,-96.14257192052901,-96.07856422895566,-95.41173127293587,-95.17203815514222,-95.53959899256006,-95.06794633343816,-96.06264689192176,-96.46002848586068,-97.07061129668728,-96.82807272300124,-97.25455644866452,-96.27864177757874,-96.95352882193401,-96.89395471662283,-97.49846520414576,-96.63198546739295,-95.73604727303609,-94.78740446036682,-94.49894759990275,-94.91921412199736,-95.09164681378752,-95.6155468346551,-94.81248688604683,-95.53144359402359,-95.82113919733092,-94.97916901251301,-95.25928527256474,-94.39442886924371,-94.60316160880029,-94.21984503557906,-95.03738109348342,-95.2680789171718,-95.49537331610918,-95.32303634053096,-95.01976205967367,-94.28202260192484,-94.24721216829494,-93.39608618803322,-92.79798206826672,-93.32752881897613,-93.09099677624181,-93.7057110867463,-93.01542770396918,-93.55588030442595,-93.38896361226216,-93.70924281468615,-93.25496444106102,-93.86815232038498,-94.61187632614747,-95.37609332567081,-95.81066201627254,-96.0823772540316,-96.12581773707643,-97.01137514598668,-96.9758763811551,-97.95293064694852,-98.1752334847115,-97.31498278072104,-96.81162597844377,-95.82743289787322,-96.75670763663948,-97.02709657559171,-96.59129766654223,-96.8143285419792,-97.8001324152574,-98.12036330299452,-97.63866559648886,-98.43874157965183,-98.60927353100851,-98.21757105737925,-99.02336266357452,-99.66544530307874,-100.32916807942092,-99.91815272485837,-100.79445380158722,-99.89375997707248,-100.20016336534172,-100.40196449914947,-100.50783967459574,-101.14556018309668,-100.86202067602426,-100.67760012997314,-101.19687510887161,-102.1613081516698,-101.75069301296026,-101.2340618991293,-101.87737640971318,-101.18897864082828,-101.56001252774149,-101.45243557170033,-102.44016302097589,-101.49878078699112,-101.8459428679198,-102.1863012732938,-101.67289426038042,-101.84722180804238,-101.5249094357714,-102.52194785466418,-102.5999518847093,-102.15959094511345,-102.90669975895435,-102.00887016067281,-101.24714566627517,-102.15575363487005,-101.31388074345887,-100.63314963597804,-100.59496828587726,-100.20585010107607,-101.15071764867753,-102.12527229916304,-101.14246398070827,-100.98445783136413,-100.34196189930663,-101.1251380816102,-100.25006260583177,-99.48915817029774,-99.52278815442696,-98.73480954673141,-97.81513616163284,-97.16365720098838,-97.48193094693124,-97.80514595936984,-96.87475822679698,-95.95892261015251,-95.36328442580998,-94.50585239753127,-94.98134537041187,-94.33340991009027,-93.80059999553487,-93.57020332012326,-94.15049059782177,-93.38636228395626,-93.58523601712659,-93.3734558694996,-94.14305367833003,-93.48813047073781,-93.48193482449278,-92.82015863573179,-92.09643549611792,-92.36059064697474,-92.68212197721004,-91.71569607267156,-92.25230570649728,-92.25781145691872,-92.52520074462518,-91.9995280643925,-91.73776953620836,-90.86929818382487,-89.99444619333372,-89.79915627185255,-90.10367313958704,-90.45196647755802,-90.29339411202818,-89.73400703817606,-89.77335557062179,-90.49999187095091,-91.11785127408803,-90.47074210597202,-90.57512635411695,-90.73563716281205,-91.45063124783337,-92.32020867150277,-91.48989710398018,-90.93990809842944,-90.13973773969337,-89.34871000377461,-88.83552192244679,-88.17451625457034,-87.82011242583394,-88.14279052056372,-88.98596798023209,-89.44717331090942,-90.0127044650726,-90.93162962188944,-91.48065800126642,-90.74782592477277,-90.73601999739185,-90.94352850317955,-91.12435540976003,-91.53853853465989,-91.58518781000748,-92.42541692126542,-92.46018574899063,-92.46693866280839,-91.64566901978105,-92.59286999003962,-92.71305394405499,-92.28004007646814,-91.79537648940459,-91.87427664641291,-91.75104109477252,-91.17805347312242,-90.9259873223491,-91.06368617806584,-91.75765717588365,-92.69015552755445,-93.42527877772227,-93.27085518930107,-92.2795902970247,-92.96232199901715,-92.1841108808294,-92.69350682897493,-93.00502017466351,-93.48097101924941,-92.97511525498703,-91.97792999213561,-92.10223228344694,-92.45849786605686,-92.83088362962008,-92.8659387906082,-92.88089106418192,-93.41292928764597,-93.89472982566804,-94.33642593771219,-94.31409146543592,-93.53653714433312,-94.26662377780303,-94.929535059724,-94.18916804390028,-93.19951486168429,-92.83253820240498,-92.6058624596335,-92.05125610390678,-92.3649441874586,-91.95903014810756,-92.82942493911833,-92.92116633942351,-92.51204005256295,-92.11289972020313,-92.96562234777957,-92.75691812345758,-91.9727328568697,-90.99072084063664,-90.78142074961215,-90.30921814776957,-90.71724870568141,-90.09555792342871,-90.03953986335546,-90.87493717018515,-90.4279249124229,-91.06922689499334,-91.94400069769472,-92.84019320458174,-92.13057229621336,-92.24615302495658,-91.63311083009467,-91.8491651378572,-92.76127075217664,-93.619618027471,-92.81702813552693,-93.06794187193736,-92.36834896868095,-92.9003140530549,-92.69793485337868,-91.94014491280541,-91.31704334029928,-91.38404773548245,-91.4843379012309,-92.47894346527755,-92.24644909380004,-91.62443491863087,-92.47772581549361,-92.06365901464596,-92.28805702878162,-92.80859412392601,-93.66101360227913,-94.59490468911827,-93.71634795377031,-93.11465968564153,-93.1466772519052,-94.04721596976742,-93.78537764726207,-93.32582803675905,-92.98254376184195,-92.69047426432371,-93.64509354066104,-94.52340749278665,-94.01990240206942,-93.88693420495838,-93.05672206869349,-92.75616265134886,-93.15238688373938,-92.76854486064985,-93.76489561144263,-93.05857508303598,-92.20782762253657,-91.39076187321916,-90.70805575000122,-90.62229844462126,-90.68767714453861,-91.33372658770531,-92.22353803133592,-91.77093150280416,-90.89617185434327,-90.59776851395145,-90.72639958700165,-91.08348092623055,-91.78149704821408,-91.84722910029814,-91.17391325347126,-90.82043134234846,-90.78221194539219,-90.3836519564502,-89.51037125010043,-89.08474067877978,-89.18416683841497,-88.24556331522763,-88.62500719865784,-88.35610989946872,-87.62940070778131,-87.348493414931,-87.82513380981982,-86.9138995995745,-87.47462284564972,-86.73083648830652,-86.68324842397124,-86.8793383454904,-87.56791808875278,-88.45260133035481,-89.092389697209,-89.29415715532377,-88.77445673197508,-89.5725800669752,-90.54557163268328,-90.91619408642873,-91.26042089471593,-92.2271261299029,-91.34031845955178,-90.52788827521726,-89.78876917390153,-90.74232965428382,-91.13589621707797,-91.95709509169683,-92.59481158526614,-93.4662625673227,-92.71745945326984,-92.42070575430989,-91.94283580267802,-92.57704017916694,-91.67008716240525,-91.80102209746838,-92.4782249275595,-93.08110333420336,-93.78264409350231,-93.78793943533674,-93.67918175412342,-93.51684560533613,-93.2918584109284,-92.68860732018948,-91.83084062254056,-92.2098780144006,-91.65928942104802,-90.96488410281017,-90.3073643995449,-90.03157998574898,-89.49611338786781,-89.45833788020536,-88.52867233892903,-89.47815039474517,-88.83186282310635,-88.07673085248098,-88.12401916831732,-88.28718757769093,-88.68597627151757,-89.36632075859234,-89.14427931187674,-88.90280547551811,-88.29470479954034,-88.0962514677085,-88.5226370273158,-88.33758919266984,-87.8102742577903,-87.19160683359951,-88.06934937974438,-88.69192066928372,-88.88871107064188,-89.03824054589495,-89.46586658619344,-89.50405600015074,-90.48611818160862,-90.03636448737234,-89.86394557636231,-89.82800513878465,-89.44492720765993,-89.51759020006284,-89.87159593915567,-90.23286218522117,-90.74925329862162,-91.66999253164977,-90.94224760029465,-90.82765770284459,-91.66371037205681,-92.56825842196122,-93.51355927437544,-93.36895891558379,-94.00068767694756,-93.78725351439789,-93.83874467620626,-93.91400330327451,-93.13479199074209,-92.38750553317368,-93.11642985232174,-93.46007980173454,-92.8494157907553,-92.15479121450335,-91.324145804625,-91.56622551847249,-90.83704842720181,-89.86178330844268,-90.4967515990138,-91.16482597822323,-91.7228534813039,-92.5824442715384,-91.76879269769415,-91.96507817599922,-91.11208429280668,-91.58455354720354,-90.69066841108724,-90.2443985985592,-90.58124686218798,-90.55354895628989,-91.0800379649736,-90.55626239301637,-90.98373638140038,-91.86927310656756,-92.83763014152646,-93.60178123228252,-93.05479309381917,-92.27642024029046,-91.7115852641873,-91.17894056998193,-91.7451983364299,-92.18367803934962,-92.16821242542937,-92.33554401854053,-92.57571608806029,-93.14599453425035,-92.46559235081077,-92.94415741413832,-93.67218822753057,-94.63329450087622,-95.41566263930872,-95.91441137949005,-96.79662605188787,-96.90644411277026,-96.94289134722203,-97.19951446447521,-96.97127133514732,-96.34023883100599,-95.53113976493478,-95.08004460530356,-94.40159674501047,-93.88750556856394,-94.20869798818603,-94.68539022514597,-93.71290661767125,-93.88777432916686,-93.52799576660618,-93.719586616382,-92.7319264812395,-92.84177588997409,-92.34750889986753,-91.53523592464626,-91.52174664475024,-90.54005516087636,-89.57942507788539,-89.82649768423289,-90.04402430122718,-90.33686279458925,-90.0630928655155,-89.29149601515383,-88.91481703100726,-89.85623732674867,-90.70220361789688,-90.43560688802972,-89.65252508455887,-90.4915981432423,-89.92558214161545,-90.04794932017103,-90.37133119627833,-91.3429296030663,-91.24187909858301,-91.54695957293734,-91.6811432573013,-92.08455308154225,-92.24818063853309,-91.3571678167209,-92.19025406520814,-91.47658975981176,-91.06072274269536,-90.10794136300683,-90.69455972220749,-89.89611260872334,-89.78316612401977,-89.59558416157961,-89.93410222418606,-90.73353488044813,-90.44480976602063,-89.70935585023835,-89.41499297879636,-88.58708676788956,-89.25187466247007,-90.24026786768809,-90.00875487644225,-90.5517894346267,-89.7517392989248,-88.76680517103523,-89.01353308977559,-88.27270866837353,-89.07765723532066,-88.23752766894177,-87.32433896884322,-87.77050644671544,-88.41034370614216,-88.24264978338033,-87.97108087968081,-87.59664136916399,-86.66744592273608,-86.38276389008388,-86.7604697952047,-87.6486706524156,-88.17810472333804,-87.52355597121641,-87.07781211473048,-87.10432538064197,-86.23028740426525,-85.54141930956393,-84.63610210455954,-84.56993468757719,-84.36652073357254,-83.39280605735257,-82.58513673581183,-82.90894611366093,-82.801097238902,-82.76211668783799,-82.00894423481077,-81.43577318033203,-82.12787963915616,-81.97634765924886,-82.6292437738739,-83.0808356278576,-82.46071442170069,-82.63263653311878,-82.47201774641871,-83.3341468158178,-84.22286357404664,-85.0338747384958,-85.16728345723823,-86.06031500920653,-86.2163661327213,-86.32584879547358,-86.94214999722317,-87.87972235912457,-87.98515045177191,-88.62324358569458,-88.16626286460087,-87.4642127561383,-87.67542821727693,-88.65778595209122,-89.51777817495167,-90.01083454163745,-89.09511165786535,-89.06948363548145,-88.14689044468105,-88.57878730772063,-89.30527791334316,-88.49067321093753,-87.78779772017151,-88.5481939590536,-88.77630646387115,-88.92041883757338,-88.58894801465794,-88.19925582455471,-88.2896655104123,-88.82723863469437,-89.32361525436863,-88.63506816374138,-89.35875111445785,-89.57772941421717,-89.86170890228823,-90.21267126267776,-90.59213629039004,-90.53673885529861,-90.4772599907592,-89.65403511188924,-89.83350569847971,-90.0031000636518,-89.72808974003419,-89.1400474589318,-89.76775470236316,-88.99675289168954,-88.0975970858708,-88.32936906861141,-87.54723527887836,-87.47617925703526,-87.28670980874449,-88.09294900111854,-87.60620835144073,-87.82822813419625,-88.02309426479042,-88.96924979053438,-89.35052551794797,-90.10315638966858,-90.304364672862,-91.05339756049216,-90.27509199548513,-90.28548568719998,-91.11232824670151,-90.32297852262855,-89.84366974467412,-90.04163175495341,-90.06434341426939,-90.97183151077479,-91.10683933086693,-90.27689012186602,-89.91273711575195,-90.56265144608915,-90.50492493389174,-91.22363547934219,-91.67549693351611,-91.0890423511155,-90.25375954946503,-90.20084870001301,-90.46928733633831,-90.92633597226813,-91.73475627880543,-91.37801882624626,-91.02854758128524,-91.20326882274821,-91.88450394337997,-91.57501073367894,-92.5405165636912,-93.30430037435144,-93.6457226825878,-93.8170885159634,-93.50088650546968,-93.83388150576502,-93.94325719960034,-93.4081630106084,-93.98142454307526,-93.55335572268814,-93.2787185581401,-93.47053341800347,-93.13528255326673,-93.9730234616436,-94.19749765796587,-93.70095473015681,-94.13887205626816,-94.02716977056116,-93.9493344440125,-93.11281043943018,-93.62233091611415,-93.67985416064039,-93.39455837290734,-94.20174742303789,-93.7363967881538,-94.26336816651747,-94.3761440673843,-94.91047575278208,-93.95052946126089,-94.86582526797429,-94.48560018837452,-94.86816127365455,-94.18903112178668,-95.13728816853836,-95.49074937729165,-94.80435191327706,-95.79397064587101,-96.6922882758081,-97.37434086157009,-96.50980181898922,-97.48857907392085,-98.45024747261778,-98.25368454586715,-97.60842327866703,-96.72890862962231,-96.28499507158995,-96.39455140894279,-95.6912668752484,-95.49443336576223,-94.62151115341112,-95.31576639786363,-94.35035639256239,-93.8250753460452,-93.27975892368704,-94.05669610016048,-93.86401138454676,-94.32277780864388,-93.46153681678697,-92.51332405861467,-92.48200091999024,-92.74892396433279,-92.32560000615194,-92.8855309067294,-92.35157386166975,-93.10984544502571,-92.26397146238014,-91.77372194128111,-91.61502991896123,-91.27297442313284,-91.26961047016084,-92.22894550487399,-91.37998424936086,-91.68347257375717,-92.63810138683766,-93.42335798358545,-92.74666408542544,-92.97938847495243,-93.58078576484695,-93.19779757317156,-92.8799830856733,-93.61605183500797,-92.66533374832943,-93.29637872846797,-92.97093469882384,-92.7778391232714,-93.68131307372823,-92.7464976767078,-92.63701997464523,-92.58132681855932,-92.8850282295607,-93.05869846232235,-93.07764792395756,-93.20897197211161,-92.94755308376625,-92.5132136340253,-91.77773372782394,-92.52629854949191,-92.25764963543043,-91.61178293451667,-91.21380358422175,-90.94202390639111,-90.10945688094944,-90.47293530963361,-91.32590002007782,-90.59773940127343,-89.6498927809298,-90.1521545345895,-89.41663771029562,-88.67140838271007,-88.20193101651967,-89.15791338542476,-89.14193197758868,-90.02903501829132,-89.2798556634225,-89.62990195071325,-89.43464628653601,-90.24064794089645,-89.35261695366353,-89.96443301346153,-89.77699635131285,-90.43267645174637,-89.83287976169959,-90.00912077631801,-89.7713698190637,-89.32425061007962,-89.28153012646362,-88.65090817864984,-89.53337386343628,-88.57484274404123,-87.98639251710847,-87.90057083312422,-87.40189727721736,-87.78370265336707,-87.74355835467577,-86.75217471783981,-86.61643747380003,-85.76114504225552,-84.77228452078998,-84.39899354521185,-85.28849393036216,-85.12332087568939,-85.09849510388449,-85.69334346568212,-85.53982802806422,-86.42777265841141,-85.77925160201266,-86.12635022075847,-85.6288338736631,-85.8388652568683,-85.82182844774798,-85.284040318802,-85.49351261463016,-85.4147769678384,-85.52508018631488,-85.96043913904577,-85.91244879318401,-85.97604943392798,-86.53648539958522,-86.77014377340674,-87.29089072532952,-87.411284473259,-87.63345716241747,-88.15101198386401,-88.38626916334033,-87.65523324673995,-87.15343845728785,-86.3231048071757,-85.58366411086172,-85.09682527370751,-84.64835633710027,-84.79515696084127,-84.42505647568032,-84.47760851448402,-85.04080135188997,-84.33273027231917,-84.29002671130002,-84.49358601449057,-84.82449411367998,-84.0317198690027,-83.50691236136481,-84.22885870561004,-83.85111438063905,-84.78284940542653,-84.48965959530324,-85.4006579532288,-85.35988487210125,-84.51496365806088,-84.06453271210194,-84.30965263908729,-83.45144237671047,-84.25166761968285,-84.40609117224813,-83.60874372720718,-83.83547517610714,-83.89517362322658,-83.93691752804443,-83.53362052701414,-83.26087611494586,-83.97765943361446,-83.97399436542764,-84.10418771626428,-83.25441964622587,-84.24903606623411,-84.40620379336178,-85.02299173222855,-84.62070800410584,-85.39350891392678,-84.52279525529593,-85.13682130817324,-84.99173079943284,-85.86381386825815,-85.6666210363619,-84.93439006339759,-84.38930239668116,-84.35522993188351,-85.16830198233947,-85.02941255597398,-84.94541983725503,-84.40870655281469,-84.8546959492378,-85.076134277042,-84.38406430603936,-83.46873410232365,-83.30925278970972,-82.64438205445185,-82.28731193952262,-82.57542711962014,-81.64491378050297,-82.17749609099701,-81.39416035450995,-82.33484830986708,-83.0058158095926,-83.94225699082017,-83.9219011166133,-83.78589338762686,-83.46248200302944,-84.43202802026644,-85.39403090486303,-85.78917790623382,-86.06852310709655,-85.64456674223766,-84.89908136567101,-84.27069744933397,-84.56309506017715,-84.4914181549102,-84.3926309319213,-83.87708600284532,-83.66298847924918,-84.3161927354522,-84.36111237620935,-85.2601308207959,-84.64369632303715,-84.37184105766937,-84.24390484765172,-85.16822752729058,-85.13487201509997,-84.94764163950458,-85.2446813127026,-85.38328205002472,-85.08648198097944,-84.8949796129018,-85.28799036890268,-84.38523135706782,-83.63304010219872,-83.61682070512325,-83.87570087006316,-83.7165938410908,-83.26185897458345,-84.12328909058124,-83.42874587420374,-84.19183208886534,-84.21735268598422,-84.16805446194485,-83.9348477460444,-83.07956586778164,-83.71855240128934,-83.30517894914374,-83.31288546696305,-83.32694241264835,-83.2577227926813,-83.62052158173174,-82.84045310784131,-82.18612557696179,-83.019751037471,-82.57625915063545,-81.72778430720791,-81.17354435753077,-81.24034496443346,-82.04128926759586,-81.49050852376968,-82.21643919264898,-81.7796136867255,-81.51202466292307,-82.21816308842972,-81.67848253063858,-82.25181124173105,-83.12112704664469,-83.69594625476748,-83.90840096166357,-84.6318710707128,-84.2204101732932,-83.55637014750391,-83.07861744984984,-82.59335297951475,-82.22004615096375,-82.1028520683758,-81.4158392995596,-81.29225531499833,-81.73404529877007,-82.36368941236287,-82.65945709263906,-83.52731520496309,-84.08406638819724,-84.18037765473127,-83.30697851628065,-83.10006123129278,-83.69471707148477,-83.85225688293576,-83.39322616439313,-82.81689352355897,-81.99751075357199,-81.54111329000443,-82.11602974450216,-82.07347319694236,-81.67797917500138,-81.71790579333901,-81.28056859830394,-80.96445772284642,-81.7353559457697,-80.7792772394605,-79.89451784733683,-79.37716577714309,-78.94995091529563,-78.5907877786085,-79.21136858081445,-79.79277843656018,-79.12794833537191,-79.05206676619127,-78.31327691441402,-78.99725117068738,-78.85582668194547,-79.49289181362838,-79.60649018129334,-79.3972620186396,-78.40478156786412,-77.7629740331322,-77.55388962943107,-77.0251629203558,-76.8055408867076,-77.58286136714742,-77.01940306741744,-76.36280671460554,-77.22078553494066,-76.8687369376421,-77.51721359603107,-77.46251754043624,-77.96950340596959,-77.09067357238382,-77.57808575453237,-77.29687223071232,-77.84700038144365,-77.61858353670686,-77.35950728598982,-76.47874716157094,-75.53109199739993,-75.83968572085723,-76.8153821718879,-77.03120943997055,-76.32552565261722,-76.66486105043441,-77.31720798602328,-76.59954446041957,-76.13357797730714,-75.50245267571881,-74.99963772017509,-74.59874649206176,-74.71730825956911,-73.9205426974222,-74.57881638454273,-75.2371711335145,-74.9428059947677,-75.68620611866936,-74.92402207385749,-74.50756391743198,-74.74161663418636,-75.69880531029776,-75.08689245162532,-75.24409137805924,-74.68580213328823,-75.00614712527022,-75.52219369495288,-75.31820588139817,-75.20908538997173,-74.46043337043375,-74.69763938803226,-74.53695625718683,-73.97880940325558,-73.88836069311947,-74.55530769797042,-75.45300961611792,-75.4604328237474,-76.1808483665809,-76.00366915157065,-75.7674813522026,-75.2340756491758,-75.20459870994091,-74.52370757376775,-75.34574605105445,-75.3710401058197,-74.78485839627683,-73.85333545599133,-74.19701725058258,-75.18210906488821,-74.19213012233377,-74.21044264314696,-73.89302028156817,-74.02242107084021,-73.23474907269701,-72.50700589735061,-71.8631076272577,-72.62296014232561,-72.4811134566553,-72.43801213335246,-72.42040679464117,-71.53185869660228,-70.78021531971171,-70.55772708402947,-70.2033211295493,-70.81055793818086,-70.96156796859577,-70.2395403822884,-69.77128071105108,-69.61218425491825,-69.0561151560396,-69.13957685371861,-68.26527834683657,-67.68543241219595,-68.41528590489179,-68.89234149362892,-69.29413061775267,-69.80110287666321,-69.15449953917414,-68.24070061510429,-69.17323982482776,-69.96770707610995,-69.70015449868515,-69.58064045757055,-69.72497523156926,-70.1597222709097,-70.15036072861403,-69.75942319119349,-68.88523699296638,-68.7671728269197,-69.21309154713526,-69.55130227142945,-68.81232003401965,-69.71110716927797,-69.1118028787896,-69.5807601781562,-68.58564780419692,-67.89171099895611,-67.12743826303631,-67.9646006799303,-67.55905484035611,-67.07305150711909,-66.88325961632654,-67.18500920478255,-67.76310794381425,-67.74510381836444,-66.8223443957977,-66.00894443131983,-65.88144972268492,-65.13074866775423,-65.74855527281761,-64.85412953747436,-63.87674436997622,-63.670426454395056,-63.567112838849425,-64.46102729719132,-63.6855480549857,-62.69748151022941,-63.295414596330374,-62.71727301413193,-62.84020617092028,-62.05263138702139,-61.935858245473355,-62.40796763356775,-62.07312712771818,-62.256919384002686,-61.3148849112913,-61.32643536943942,-62.292041102889925,-63.227873026393354,-62.487069396767765,-63.20058560371399,-62.97749090148136,-62.47018384002149,-63.2952695437707,-63.67069467622787,-63.656973470468074,-63.690496110823005,-62.744332435075194,-63.57676234887913,-63.53984601004049,-64.53381794551387,-64.74474124703556,-64.21564788464457,-63.40983197512105,-62.48890164960176,-61.779298233799636,-62.089688553940505,-61.44198680808768,-61.12095371913165,-61.307009174954146,-61.175562193617225,-60.400542405899614,-60.282077001873404,-59.53724217461422,-59.494513103272766,-59.023636140394956,-58.1018629912287,-57.59985661599785,-56.99081143317744,-56.07714947499335,-55.42839526524767,-55.90049003949389,-55.380819651298225,-55.09109983127564,-54.42469677422196,-53.63044306170195,-54.54316690796986,-55.255809294525534,-55.70661435369402,-55.21242308989167,-55.24812652776018,-54.87902029464021,-54.19946015719324,-54.300180269405246,-54.21086429525167,-54.35589730320498,-55.247640206478536,-54.94993955362588,-53.99212099891156,-54.44239178765565,-54.470525693148375,-54.49633228778839,-54.8493392392993,-54.5031903879717,-54.87042217468843,-55.68063532281667,-55.49565728707239,-54.66586142871529,-54.68721519643441,-54.28652758523822,-53.826080011203885,-53.26085833646357,-53.686169766355306,-54.28680109791458,-55.27349843317643,-56.14407037850469,-55.477002878673375,-54.777061918284744,-55.281403585802764,-55.85668833553791,-55.3731183107011,-55.92704269476235,-55.81410126108676,-55.621422751806676,-55.176191453356296,-54.44304710580036,-54.546965286601335,-54.42633427726105,-55.423634212464094,-55.2912205401808,-55.45433980086818,-56.41843663202599,-56.07415805477649,-56.77235970413312,-56.92248636484146,-57.063905521761626,-57.32669392460957,-58.249343221541494,-59.11583386780694,-60.00801684893668,-59.350139318499714,-59.12965275347233,-59.13400784460828,-60.11679976945743,-59.62503265449777,-59.10063267825171,-60.084386250469834,-60.78160087298602,-60.77469896757975,-60.42120411852375,-59.56162574281916,-59.654099269770086,-60.553685118444264,-61.270694953389466,-60.541442622896284,-60.922431972343475,-60.62581092864275,-59.62598406011239,-60.3138696202077,-60.36878834152594,-60.741811216343194,-61.536279529798776,-61.29189734021202,-60.45106480270624,-59.51678208261728,-59.5332991364412,-60.14464918524027,-60.93166390014812,-60.85684347292408,-60.16199705982581,-59.48288114834577,-58.87732135085389,-59.67267611064017,-60.02473709033802,-60.37283206125721,-61.26375594502315,-60.403370063286275,-60.828249306418,-61.295948886312544,-61.9580085282214,-62.26387855876237,-62.74252119241282,-62.71266774320975,-61.823799741920084,-61.82990087335929,-62.18162379786372,-61.73374411650002,-62.11960377031937,-62.52271230844781,-63.001830611843616,-62.71952049387619,-62.37394978431985,-63.3308376763016,-64.29057159088552,-64.54489605454728,-64.20280992006883,-63.27141858544201,-62.5393664999865,-61.886461769696325,-61.34875010838732,-61.492267354391515,-60.770632709376514,-59.90630268026143,-60.10322212986648,-59.172054396010935,-58.872581873554736,-57.969350332859904,-58.16599826561287,-58.96498157316819,-59.304240158293396,-59.68571940623224,-59.74626422626898,-59.33169922744855,-59.6815983178094,-60.128390522208065,-59.93774567404762,-59.21676393505186,-59.28809330612421,-60.01643025595695,-59.646527154836804,-60.578504441305995,-59.80242328206077,-59.931826274842024,-59.02191072003916,-58.847356650512666,-58.219584135804325,-57.49823434976861,-57.01935415621847,-57.17457007523626,-57.34504181565717,-57.7805395484902,-57.86333338310942,-58.243350780103356,-58.58765255799517,-58.553076920099556,-58.393916578032076,-57.885603591334075,-57.64243323961273,-57.63381858309731,-58.51843200298026,-59.0683160526678,-59.23205613531172,-59.610643786843866,-58.84132044482976,-59.06303864857182,-58.514336810447276,-59.474060863256454,-58.61775267450139,-58.08722350792959,-57.691088437102735,-58.62903651688248,-59.083398149348795,-59.671799721196294,-58.72230007965118,-58.06913898233324,-58.42397655919194,-58.67845627712086,-59.4538752688095,-59.65515942359343,-60.53410455165431,-59.860640816390514,-60.12135564908385,-59.92042749654502,-60.41920295311138,-61.121173871681094,-60.89828063221648,-60.313099226914346,-59.7585558090359,-60.336576484143734,-60.05946350609884,-59.51229119952768,-59.5856425515376,-59.06282709911466,-59.11054211203009,-58.37554465606809,-57.487797036767006,-58.485068642534316,-58.94907709443942,-58.5431853979826,-58.068943328689784,-58.15196097642183,-59.0833763377741,-59.229682912584394,-58.59274072479457,-59.49252439010888,-59.99202104238793,-59.16105545964092,-59.95860928716138,-60.373972630128264,-60.48292381549254,-60.36811096454039,-61.1912426520139,-61.13693007733673,-60.164502155035734,-59.55419370951131,-59.7434108229354,-60.047217154409736,-59.88332144962624,-59.10486910864711,-58.945837886072695,-58.28381378436461,-58.457752948161215,-58.27525946358219,-58.46520775184035,-57.68470438988879,-56.764035732951015,-56.59337999485433,-56.87554386537522,-57.57194942841306,-56.868759708013386,-56.000477341003716,-55.76424841582775,-55.64075352391228,-56.42335802828893,-56.85179020045325,-56.457224905490875,-57.30629253014922,-57.09771334845573,-56.43624834669754,-57.22777148196474,-57.45290856203064,-56.739757566247135,-56.88420628197491,-56.757935023866594,-57.40406836103648,-57.2650330690667,-57.662263536360115,-57.53428456140682,-56.65913952048868,-57.472381732892245,-58.150326358154416,-57.33018480613828,-56.530247311107814,-57.41168344859034,-57.472911870572716,-56.671722983941436,-57.35743317985907,-58.09559715446085,-57.23798850411549,-56.73625729139894,-57.53097661631182,-56.91405556630343,-56.46394152054563,-57.226737938821316,-57.79179508378729,-58.08959523728117,-58.779271190054715,-58.20336009701714,-58.23043212201446,-58.153672653250396,-58.277315489947796,-58.33420644886792,-57.83098705112934,-57.06206681812182,-57.164636191911995,-57.14240195648745,-56.21428040973842,-55.29802667349577,-55.03686313005164,-54.39620674587786,-55.37834665644914,-55.70202328637242,-54.91070763580501,-55.41781228687614,-56.34124748315662,-56.986260493285954,-56.95324454084039,-56.88356522610411,-57.220452453009784,-57.33210666663945,-58.070741650182754,-58.132386344484985,-57.923711417708546,-57.998793431092054,-57.749997205100954,-57.26857344573364,-56.55001133400947,-55.571693152189255,-55.47870088880882,-55.89005779568106,-54.945033682044595,-54.94012764841318,-54.13818059908226,-53.725984933786094,-53.547768123913556,-54.3761331201531,-54.92286908533424,-54.731821440160275,-55.28153386991471,-55.953713660594076,-55.183255325537175,-55.009539109654725,-54.13902710005641,-54.74793398240581,-55.22299638250843,-55.65593281714246,-56.544230156578124,-56.1356211877428,-56.80588406836614,-56.74475920991972,-55.994463994167745,-56.48217501537874,-56.63054649764672,-56.485559592954814,-55.810928483493626,-55.379101757425815,-55.53985163522884,-55.74877542583272,-56.01058087591082,-56.013534997124225,-55.35002158628777,-54.912643717601895,-55.864858367946,-55.11018783738837,-54.72273057186976,-54.297741301357746,-54.6990044657141,-55.49460203433409,-55.394477100111544,-55.535297646187246,-55.51302868779749,-56.32682039728388,-56.3112527737394,-55.37869081273675,-55.94925913307816,-55.98602065164596,-55.257842537947,-55.0662898295559,-54.546622233465314,-55.486091973260045,-56.269328750204295,-56.52035500574857,-55.61699705850333,-55.86655112169683,-56.17304922128096,-55.3608000674285,-54.804124272894114,-53.86588675389066,-54.39548420114443,-55.28487672051415,-55.286979938391596,-55.384732101112604,-55.903471489902586,-56.33314710436389,-55.62715524062514,-55.83470271062106,-55.139787632972,-54.539498523809016,-54.375947025604546,-54.90491791814566,-55.653766804374754,-55.21916109044105,-54.45384334307164,-54.88584040850401,-55.87940139416605,-56.261344749480486,-56.701215516310185,-57.56039950251579,-56.77687713643536,-56.64654435450211,-57.44808825291693,-58.23620293941349,-57.616313074715436,-57.728937960695475,-56.972719153389335,-57.81721012620255,-57.82371002808213,-57.122813160996884,-57.483342656865716,-57.58681776467711,-57.181239201221615,-56.75524430768564,-56.479868044145405,-56.623183796647936,-56.769543192815036,-57.43331441003829,-58.01697369385511,-57.12373952474445,-56.17561262007803,-55.85079395305365,-56.61183745507151,-56.591657453682274,-55.64684815471992,-55.526592154987156,-54.77331939805299,-54.723156665451825,-55.02694722497836,-55.50408869097009,-56.10620528459549,-55.90862991288304,-56.306999747641385,-55.484791167546064,-56.47235301276669,-55.5794412442483,-54.78533921390772,-53.811391946394,-54.48303910950199,-54.721883893013,-54.69701101118699,-54.013193767052144,-53.82159303640947,-53.595992723014206,-53.4110713317059,-54.24474455555901,-54.80445432802662,-55.09248490026221,-55.2863363805227,-54.38324576150626,-53.503478849772364,-53.16990120196715,-52.59537382889539,-52.546294309198856,-52.2172372257337,-51.3122206479311,-51.96527990931645,-51.081838607788086,-51.963066352531314,-51.306855509988964,-51.53739188192412,-52.26402493612841,-52.30484946258366,-51.909121494274586,-52.90047130687162,-52.968087188433856,-53.83494065981358,-54.6599597055465,-54.42428628960624,-55.38322615949437,-55.20481211040169,-55.462915091309696,-56.1946426788345,-56.896070283837616,-56.63549048546702,-57.49635467072949,-58.19111230922863,-57.71359152253717,-58.62674574740231,-59.09704792173579,-59.77215213747695,-60.48290511826053,-59.999645210336894,-59.837787275668234,-60.791525669861585,-61.481074295938015,-61.49815115146339,-62.05148853035644,-62.24723028903827,-62.73400369705632,-62.58960804156959,-62.645073857624084,-61.81283724028617,-62.274881720077246,-61.96771689038724,-62.70689047826454,-61.856795626692474,-61.03233418799937,-60.043972559738904,-59.99241489497945,-59.18874526862055,-58.418198752216995,-57.796221639961004,-57.403140950948,-57.29672332247719,-58.12719834083691,-58.927878446877,-59.12258222978562,-59.92295003961772,-60.237100617494434,-59.94468924077228,-60.0667150891386,-61.05655926140025,-60.08732835203409,-60.4362155245617,-59.454527034424245,-59.84167407127097,-59.56326459534466,-59.28796059591696,-60.13949224026874,-60.6062236269936,-60.447280573192984,-60.39714669715613,-61.34978708950803,-61.43668251950294,-61.57205556193367,-62.12479840544984,-62.40991018898785,-61.711521634832025,-62.49556163698435,-62.35542116127908,-63.084480742923915,-62.649252969771624,-62.8167216386646,-63.22397362347692,-63.79716259986162,-64.60182302398607,-64.96176679711789,-65.77414392167702,-66.66519396333024,-66.6047524898313,-66.24900508997962,-66.04979662876576,-65.23022615723312,-65.89591988408938,-65.90220166835934,-65.19570697005838,-64.90588943101466,-64.96475953469053,-65.83371366141364,-66.64246866246685,-65.7846846524626,-66.52661350835115,-66.19890244631097,-66.7232266436331,-67.40244443621486,-67.4962601182051,-66.71036574803293,-66.12360996287316,-66.49041237914935,-65.64025287982076,-66.60834328271449,-66.61780722998083,-66.83161380700767,-67.8202248220332,-67.67293244227767,-68.41557604260743,-68.61932853749022,-68.49579264642671,-68.6339742387645,-68.5383469639346,-69.25644810637459,-68.51172905415297,-69.07016458176076,-68.16992766596377,-68.36813958827406,-68.42548868106678,-68.6280954843387,-68.67995282076299,-69.14662870205939,-68.71887608477846,-68.669733540155,-67.99304237542674,-68.19733216287568,-68.99096525413916,-69.39679886493832,-69.60520653426647,-70.53924440452829,-70.32181285275146,-70.79866260336712,-70.27355876844376,-70.0635941256769,-69.14308735588565,-69.76773453177884,-70.06230033608153,-70.83765525044873,-71.73497451748699,-70.8125752704218,-70.98646892886609,-71.19971079938114,-70.98151116492227,-71.55704055447131,-71.4105313681066,-71.50051817344502,-70.79076198069379,-71.53446023864672,-70.59242946794257,-70.14761576009914,-70.2896354207769,-69.32706123450771,-68.86097370786592,-68.74706013314426,-67.97175241354853,-68.19140958180651,-68.03888160269707,-68.71062509343028,-69.31434278702363,-69.90276104118675,-70.19291725987568,-69.57380202505738,-69.9398553436622,-70.7859711595811,-71.74521107040346,-72.0919891698286,-71.52020975761116,-71.58806684054434,-72.35852391738445,-72.5368181602098,-73.34520366881043,-73.76954588899389,-73.83962046122178,-73.37870404310524,-73.50895614968613,-72.72980071976781,-73.02451990963891,-73.3281871038489,-73.25316259311512,-73.61518481140956,-74.00959332101047,-74.96440924005583,-74.1923027918674,-73.21844790130854,-72.80097053106874,-72.22956504672766,-72.67377287195995,-73.65262525016442,-73.31768950540572,-73.50522942654788,-72.60921826958656,-72.22916485276073,-72.62360310321674,-72.51226983778179,-71.97418741276488,-71.7299605277367,-71.25411818549037,-72.19333923794329,-72.50971941975877,-71.58252514107153,-71.40741414576769,-72.23829027544707,-72.93393630860373,-72.00471955211833,-72.06990132853389,-71.49881931394339,-71.19553053053096,-71.92316338932142,-72.07684515370056,-71.76948718260974,-70.91133765829727,-70.44009970966727,-69.6986581441015,-69.34686401393265,-69.46010719845071,-70.02648029755801,-69.58717885660008,-68.85099589638412,-67.89942188374698,-68.58907369431108,-68.20541030354798,-68.47887539956719,-67.4897789270617,-66.49977522762492,-67.04174132971093,-66.24420630559325,-65.5269814291969,-66.10649930825457,-67.08597561297938,-67.68145815236494,-67.7116768984124,-67.78098895214498,-67.26853041211143,-67.85241614514962,-66.88107810914516,-66.98633913276717,-66.84514432772994,-67.62678220728412,-67.36703565251082,-66.8888406441547,-66.16398216737434,-65.28906605858356,-65.8757317326963,-66.45791883813217,-67.227884742897,-67.67829601000994,-67.82533965213224,-68.48037195950747,-68.85714219883084,-68.30769888777286,-67.67430275026709,-68.08103644568473,-69.07650926150382,-69.70857123471797,-70.09071983536705,-69.45875061070547,-69.19808041863143,-69.70665567275137,-69.67238634685054,-69.88177665462717,-70.6601806958206,-70.29185720346868,-69.54236925533041,-69.37284800549969,-69.64812918566167,-70.17869235295802,-69.65663463855162,-69.1287698969245,-69.21024573780596,-69.86121754581109,-69.0780834313482,-69.69589507579803,-69.30319370515645,-69.9712219517678,-70.73235722305253,-70.15863347658888,-70.53259255783632,-70.34869557665661,-70.36034605046734,-71.20736961113289,-70.9382918602787,-70.43500540405512,-70.75704250112176,-71.22695384221151,-71.32090577948838,-71.77589283976704,-72.5366893033497,-71.9923783116974,-71.94559325790033,-71.14744513249025,-70.87854557856917,-70.9578674826771,-70.63644357770681,-71.3956327685155,-72.3758425572887,-72.88023497490212,-73.60870753973722,-73.57708431920037,-73.6527793975547,-73.6222909502685,-73.31762961205095,-72.71224078256637,-73.56107583269477,-72.91311149485409,-73.03398852143437,-73.6634823763743,-73.38247221615165,-73.26765310624614,-72.96791181853041,-73.59426497202367,-73.07397062843665,-72.82278737053275,-72.5246250811033,-71.82458299631253,-71.83762624347582,-72.77129036188126,-73.34979296801612,-74.3198254769668,-74.49726326065138,-75.11660865601152,-74.40167247224599,-75.22839192766696,-76.17815196420997,-75.31267232447863,-74.31277153920382,-75.2822396112606,-75.57854252355173,-75.5175183210522,-75.72938924608752,-76.25223251758143,-76.70064024720341,-76.03358012670651,-76.44239093083888,-76.36163925286382,-76.96162117971107,-76.21754594380036,-76.07150802901015,-76.05575376516208,-75.05940269539133,-75.43097315123305,-75.83206752501428,-75.04084175731987,-75.90760670462623,-76.54393617156893,-77.47885245457292,-78.1728466656059,-77.39943257998675,-78.21980926766992,-77.55383332725614,-77.00711825955659,-76.89803037093952,-76.10779796447605,-75.79037974216044,-76.51676241168752,-75.94178487360477,-75.93404312618077,-76.40088199963793,-77.02288245595992,-77.56456169858575,-77.04123067110777,-77.68331039091572,-77.78857594169676,-77.0279503329657,-76.78947466239333,-76.66446618828923,-77.6620256784372,-78.10944308293983,-79.01430043717846,-79.92969589633867,-79.62682648934424,-79.78258652612567,-80.36247057467699,-80.08560480549932,-79.12390033807606,-79.88967795297503,-80.80802328558639,-80.1937894015573,-80.80900440597907,-80.20884725265205,-79.33255870779976,-80.15900250012055,-79.63333932310343,-79.42155538545921,-79.52634063363075,-79.87757693510503,-79.07576691173017,-78.81009533395991,-79.26427908381447,-78.37528184242547,-77.96188937919214,-78.7099286178127,-78.69002366438508,-79.0904063261114,-78.31615638919175,-78.18303121533245,-78.08313920209184,-78.1542596751824,-77.29814949072897,-77.74109720718116,-77.77432522270828,-78.72591276373714,-79.61987332627177,-79.59417554782704,-78.61190396314487,-77.88164452230558,-77.36002694442868,-78.27034019911662,-78.77679825946689,-78.86602298682556,-78.10960443643853,-77.13856596453115,-76.79496763832867,-76.94092348776758,-76.45852786395699,-77.16987098520622,-77.15027963463217,-77.16905707214028,-77.07330367388204,-76.59205116797239,-76.43504457455128,-75.6820122716017,-76.39243711996824,-76.4973822562024,-76.51430594548583,-75.8898615501821,-75.64328515157104,-74.65494759520516,-74.9466811856255,-74.10091595025733,-74.48998085828498,-74.61291175102815,-74.4152253717184,-74.92934137536213,-75.37026686035097,-75.95835258252919,-74.98029962927103,-75.52944187447429,-75.10586575837806,-74.74725985946134,-75.64722390007228,-75.8400485580787,-75.92922781733796,-76.52934090001509,-77.04580910829827,-76.91400906117633,-76.18340120604262,-76.23778567556292,-75.27933969767764,-74.39964205026627,-74.979544876609,-74.91232135193422,-75.52205690322444,-75.1904799323529,-75.58136054128408,-75.89390687597916,-76.21917140902951,-76.95472747040913,-76.24194924347103,-76.0403296132572,-75.15436177887022,-74.34681199584156,-73.52969871414825,-73.8225328894332,-74.10520781669766,-74.51775472378358,-74.1081589194946,-74.59910051571205,-74.99319534236565,-75.4173629633151,-74.74608779139817,-75.58233930915594,-75.23592050652951,-75.68273353436962,-74.80548762436956,-74.38010723516345,-74.09496382111683,-74.32660250645131,-73.80285824323073,-73.58175840554759,-74.15243562683463,-74.12106797052547,-74.31387962494045,-74.207333533559,-73.773428929504,-73.5234904740937,-73.03618516679853,-73.31713228719309,-72.69121258147061,-73.30653460882604,-73.12582404213026,-72.95199517020956,-73.58181774383411,-74.40011270856485,-73.44054243108258,-73.4627198651433,-73.3627570187673,-73.42452046088874,-72.57973440503702,-73.41883815126494,-73.80764142936096,-73.31078019971028,-74.00550764845684,-74.89600564585999,-75.16197332181036,-74.21263813553378,-73.65140473889187,-74.05967240454629,-74.23932411754504,-73.53873245976865,-74.23594507249072,-74.09657847415656,-73.68477974226698,-74.45710023352876,-74.68829232174903,-74.25196275860071,-73.80108532169834,-73.33070492232218,-72.71068186732009,-73.5027416641824,-74.21901203598827,-75.020887167193,-75.38673274451867,-75.37400361010805,-76.1546245268546,-76.945528679993,-76.11411867337301,-75.73623509379104,-75.84328297059983,-76.64682622207329,-77.54943922394887,-76.64099457394332,-75.98179358011112,-76.8583204918541,-77.36242238851264,-77.82623705314472,-77.90759548870847,-78.56092886021361,-78.16794414166361,-78.85247759195045,-77.93335099564865,-78.09647195367143,-77.67127421824262,-78.13880693400279,-79.01755706686527,-78.63808156643063,-77.6850976892747,-77.82298958580941,-77.89187587285414,-77.86180618498474,-78.15779646672308,-77.9490374228917,-77.90604405291378,-77.02018650667742,-77.35646251915023,-76.7115985318087,-77.35847345972434,-77.4756509703584,-78.15216421009973,-77.43544135428965,-77.50527630234137,-77.08078912412748,-76.3959156870842,-76.45215250877663,-75.60849973605946,-75.49658209597692,-74.58689726982266,-74.15378003008664,-75.029906952288,-74.6166518740356,-74.76148806279525,-74.09221059596166,-73.53702337341383,-74.32028067717329,-75.16674052737653,-75.99809877760708,-75.20721987448633,-75.9784892750904,-76.33503211010247,-75.89170817518607,-76.55368566932157,-77.25066618341953,-77.08856497844681,-76.45958259794861,-76.56408316548914,-77.41770758014172,-76.86539629707113,-77.61167445546016,-78.31701908586547,-78.9470253684558,-78.09929139493033,-77.59403547272086,-77.9148262781091,-78.84161536861211,-79.03635341394693,-79.71681294450536,-80.4453968075104,-79.96088372217491,-80.46749490778893,-79.5650308127515,-80.29340884834528,-81.24667640775442,-81.03713436797261,-81.30836740881205,-80.88420386984944,-80.83607820793986,-81.64504159521312,-82.0686096707359,-81.57315375190228,-81.08878367533907,-80.83199805114418,-80.37944019027054,-80.28402250772342,-80.21830351883546,-79.5916670630686,-79.8656783462502,-80.56253476627171,-80.70286882063374,-80.9615214979276,-81.47174678277224,-81.30773675255477,-80.69829538883641,-79.83397086290643,-80.13506141817197,-80.39490179205313,-81.11120674060658,-81.41958985105157,-81.1062251450494,-82.09482431272045,-82.37959374021739,-82.08049639174715,-81.88583398703486,-81.00278163002804,-80.02928788820282,-80.85657292511314,-80.59202420152724,-81.32335277274251,-80.90316888038069,-80.7904440164566,-79.9755968595855,-80.45415319968015,-80.85467996727675,-81.38044655276462,-80.50389117700979,-80.64666361641139,-80.43321416387334,-81.02997589111328,-81.14123402209952,-80.39279189426452,-79.66158191394061,-79.94028150523081,-79.79877816326916,-80.52946171397343,-80.0473094121553,-80.51453110948205,-81.18661244679242,-81.40363665204495,-81.3976023439318,-81.29570905677974,-82.2214704155922,-82.32007358362898,-82.16763129690662,-81.24527453957126,-81.96429776400328,-81.09461906272918,-81.07773742033169,-81.67771174293011,-82.17480760859326,-81.23232835670933,-81.2858626479283,-81.52576465206221,-80.96670532831922,-81.25195822492242,-82.16570682451129,-82.53595720930025,-81.86011720169336,-81.51424096617848,-80.8356079235673,-80.3858600105159,-79.90101748332381,-79.65119642857462,-78.90147550962865,-79.3606308111921,-79.51614267379045,-78.92139040958136,-79.20957372756675,-79.77653121529147,-78.99940389022231,-79.87820100877434,-80.86648148810491,-81.18033816060051,-81.4340515434742,-82.05901563214138,-82.891519788187,-82.39172272989526,-83.31113352207467,-83.3171996884048,-82.52979103475809,-83.43543272372335,-83.71808771928772,-83.57159254373983,-83.35544293280691,-83.6565646477975,-84.19363112235442,-83.25725780054927,-82.86548871407285,-82.43400020664558,-81.94300376111642,-82.8847335409373,-83.73298360593617,-83.24020408745855,-82.83045725431293,-82.02227180683985,-83.00168179674074,-82.1997282053344,-82.80344986123964,-83.19883247278631,-83.66945266304538,-82.84780593961477,-81.9597253203392,-82.07890420872718,-81.24324869457632,-81.42465061368421,-81.46469994401559,-80.86808367911726,-81.37852779356763,-81.59420484863222,-82.04079074645415,-81.27123660361394,-80.50674370024353,-79.50861947052181,-79.8331702244468,-80.31338574271649,-80.76989756245166,-80.470650262665,-79.9824966979213,-79.46846803789958,-80.33656886825338,-80.70430316962302,-80.57603532494977,-81.48211011476815,-81.18045404972509,-80.35854737879708,-79.7572275698185,-80.69868692802265,-80.47648715041578,-81.11853695241734,-81.63383950246498,-81.42510966863483,-82.27174776466563,-82.7863172874786,-82.09246632782742,-82.93452472891659,-82.35920759337023,-83.28949514171109,-83.87956709461287,-83.69821764761582,-82.8827909049578,-83.56026444910094,-83.82095469348133,-84.2444823901169,-84.25485518621281,-84.34620604244992,-85.20676134340465,-84.6917694201693,-84.55755051178858,-84.10901699541137,-84.33277346147224,-84.66349177947268,-84.03240006556734,-83.25387196615338,-82.4601533729583,-83.28561565605924,-83.4158767433837,-83.29822754114866,-82.48675718717277,-83.05146093061194,-83.20063130464405,-82.54758738307282,-82.36163572547957,-82.82029424980283,-82.61891856556758,-82.31207587290555,-81.49414309393615,-81.38990046130493,-80.50853583961725,-80.47696239314973,-79.55330692837015,-79.73529182933271,-80.48595499852672,-79.88482925249264,-80.4083111146465,-81.02390164975077,-80.86520249256864,-79.96715002786368,-79.10538145108148,-78.28643518034369,-77.49837589729577,-78.46820024261251,-77.56626393832266,-77.40955857932568,-78.3790803658776,-78.2058599437587,-79.07885370124131,-79.67072915285826,-80.44964648317546,-81.00483428034931,-81.77469135215506,-81.19191462593153,-81.58564046490937,-81.32036239793524,-81.83051496744156,-80.86958375107497,-80.35856664692983,-79.38658126117662,-78.70559080503881,-77.83066944638267,-78.60128906741738,-78.87658794037998,-78.59109886456281,-79.26483507454395,-79.12990904971957,-79.94885680126026,-79.10871186805889,-79.6287991674617,-79.60508346790448,-78.93327624537051,-78.98505059303716,-78.11430308967829,-78.4957313220948,-78.02961644809693,-77.86868636636063,-77.55423757759854,-77.85044639417902,-78.16887106793001,-77.32962034316733,-77.59457596112043,-77.50753714423627,-78.29393517458811,-77.4267710247077,-76.82742690341547,-77.76212771283463,-78.0781448027119,-79.05937502952293,-79.38166281115264,-78.58618413144723,-78.75201996415854,-78.96027924492955,-78.05259729316458,-77.56760702980682,-77.81891308771446,-77.84060356859118,-78.66372722294182,-78.13196933269501,-78.5674535841681,-79.15892188437283,-79.52184867206961,-80.39213649882004,-79.70940548973158,-79.80470220418647,-80.46478968532756,-81.00037434184924,-81.690372959245,-82.5573831689544,-81.79291537031531,-81.09397192904726,-80.44958999892697,-80.76062303315848,-81.20434454130009,-81.89253325201571,-81.38679747236893,-81.00472224876285,-80.94645150518045,-80.86995433550328,-80.0355844758451,-80.03858802979812,-79.86947108106688,-79.49896964151412,-79.78020567726344,-79.02374998433515,-79.30021387850866,-78.52700351690874,-79.14893939439207,-78.87387314764783,-78.10222826944664,-77.23616642225534,-76.87757570715621,-77.57288491493091,-77.57885422511026,-78.55795633839443,-77.75456054275855,-77.33012091601267,-77.81384310405701,-78.48749553132802,-77.76902118930593,-77.8459811070934,-78.20513577898964,-78.35314281610772,-78.85745013738051,-78.42573746247217,-78.63449007552117,-78.44205741724,-78.2833804199472,-77.32755287736654,-77.30046048015356,-77.49436046276242,-77.06471141893417,-76.13000854989514,-75.66567386453971,-76.58872533217072,-76.66043291892856,-76.56098310183734,-77.27137707406655,-77.47203076025471,-78.47039341321215,-79.1741780298762,-79.39425980905071,-79.09789517661557,-79.21224440215155,-80.11456519411877,-79.81504235556349,-79.05292240250856,-78.16086628939956,-77.64523921487853,-77.27104874746874,-76.65434280131012,-75.71084894426167,-75.29888669354841,-75.56577599840239,-74.80691283894703,-74.6533307149075,-74.68547816947103,-74.01357493223622,-73.90841570589691,-74.22115709865466,-73.84576507937163,-73.43886603647843,-72.78100505517796,-72.58638589689508,-71.76629050355405,-72.34409367339686,-71.35917269531637,-70.89856125367805,-70.2667256752029,-71.03903870843351,-70.3422991023399,-69.37688660155982,-69.08739491319284,-69.08065814711154,-68.11340674292296,-67.17951489053667,-67.67112888162956,-66.75395981268957,-65.796720107086,-66.4730714187026,-67.22746498463675,-67.43673993088305,-67.46443254733458,-67.3871035198681,-68.18066205596551,-68.86409805901349,-68.14843376120552,-67.72073183814064,-67.44254230614752,-67.42881591431797,-67.28938241349533,-66.75202969834208,-66.13418073020875,-66.67211453942582,-65.68164898827672,-65.83154885284603,-65.02252795454115,-65.10542007023469,-64.64798331446946,-65.06673885276541,-65.60646092193201,-64.94118866091594,-65.29601864703,-65.73716957028955,-65.58555186307058,-64.79452640423551,-63.90453129680827,-64.07038337830454,-64.85972030693665,-65.35008993232623,-65.87844160431996,-66.63365381490439,-65.72104677697644,-66.29568412853405,-65.83768975781277,-66.52653378481045,-67.19730930123478,-67.10143601242453,-66.92849368788302,-66.17251922702417,-66.99601684045047,-66.10848991805688,-65.17254836391658,-65.25368399033323,-65.23144528502598,-65.42578355735168,-65.1331723718904,-65.80984231224284,-65.10715750651434,-64.94639266747981,-64.4583124583587,-65.24688258673996,-65.6582304588519,-66.38557272870094,-66.42737177666277,-66.7766129868105,-66.5890259379521,-66.6827113875188,-66.63080641021952,-66.63858594791964,-66.69981504138559,-67.20387368835509,-67.65040857577696,-66.76519808033481,-65.97831703117117,-66.93713934812695,-66.59598420094699,-65.78076452156529,-66.64165137847885,-67.49018916301429,-67.76429099263623,-67.79462994867936,-67.57575314864516,-67.75802251230925,-67.51686744531617,-67.99027834879234,-68.68218435393646,-69.3570096460171,-70.2158421985805,-69.3225697465241,-68.79251443501562,-69.34573838859797,-69.79617051035166,-69.13876305986196,-69.44734073756263,-69.99473619228229,-70.11346646072343,-70.65379176009446,-70.7433714675717,-71.55281333392486,-70.99230902688578,-70.27021916117519,-69.63664210028946,-69.43996970262378,-69.54616324650124,-68.74995881086215,-68.83946277666837,-67.914017919451,-67.78971211286262,-67.44960823887959,-67.51209904812276,-67.71780197322369,-67.46919969003648,-66.6257358728908,-66.24018629733473,-67.18107894109562,-67.88572943396866,-67.60443598683923,-68.08906503533944,-67.73177381325513,-67.0623086891137,-67.00947663979605,-66.02717409748584,-66.2928471066989,-67.16270027216524,-67.91958628129214,-68.06177235906944,-67.86002340214327,-67.31456573167816,-67.51814383408055,-67.32778475247324,-67.82819489529356,-67.69813108444214,-68.0644053593278,-68.69094697618857,-67.84778750361875,-67.7647329797037,-67.50242740707472,-66.83832644438371,-66.49962458154187,-66.452421605587,-66.40431655757129,-67.26146533945575,-66.3899355251342,-67.27133426629007,-67.76196365151554,-67.27872972050682,-66.7524739280343,-67.6651899763383,-67.9810561882332,-67.69915502006188,-68.1461198083125,-67.364551352337,-67.35733177512884,-66.98008666466922,-66.0902047646232,-66.14597411314026,-66.44893302908167,-66.73366228770465,-67.64841614523903,-68.51829550834373,-68.76440694881603,-67.93333277339116,-68.56634662952274,-68.63901722757146,-68.06874514464289,-68.527108813636,-68.00152529450133,-68.33949906704947,-68.25412536319345,-68.55518429540098,-67.78507311362773,-66.9705512789078,-67.32042973767966,-67.94532194593921,-67.60167996026576,-67.56008742842823,-66.71385777648538,-67.58807018725201,-68.1287639066577,-67.90152399241924,-67.42232257360592,-68.23911731457338,-68.85179091757163,-69.4946932378225,-68.65803757542744,-69.60575745254755,-70.20113572152331,-70.65519688464701,-70.82401978084818,-71.07778152031824,-70.34525592252612,-70.9593152073212,-70.75518286973238,-70.2298610182479,-70.45549207786098,-70.8290427508764,-71.03780662827194,-71.67653093161061,-72.39325561607257,-73.09904744056985,-72.63612499693409,-73.28886454878375,-72.80936299543828,-73.57463863864541,-73.83313786098734,-73.10179897816852,-73.3563115154393,-72.94304608786479,-73.72536974446848,-73.97650582809001,-73.98099124478176,-73.84242509258911,-73.11043877108023,-73.85189188178629,-74.55712387664244,-74.04654121445492,-74.67607559496537,-74.31232986738905,-74.9349662414752,-74.3961375770159,-74.41338114999235,-73.67801342299208,-72.84972028899938,-73.19473223853856,-72.76018607337028,-73.6194964312017,-74.0250836177729,-74.37766837701201,-75.11396487383172,-75.7063384372741,-74.71456266427413,-75.6744117802009,-75.7826794013381,-74.99302311148494,-75.84420105628669,-75.68371014297009,-76.555859323591,-76.81297743646428,-76.02332578785717,-76.4746973393485,-76.07570545608178,-76.63357923226431,-77.38639842253178,-78.17303117970005,-79.0044051958248,-78.88905391003937,-78.6558376182802,-79.14934155810624,-78.6156200231053,-78.43000401603058,-78.68678997457027,-77.70586247043684,-77.534002230037,-77.51282244361937,-78.4947431795299,-79.02448756061494,-79.17531533865258,-78.41866866406053,-78.99027600651607,-79.90603444678709,-78.93475619517267,-79.2204793500714,-79.38237078208476,-79.62919279839844,-79.09652826189995,-79.65231126034632,-79.01905213110149,-79.5257979487069,-79.49502963246778,-78.64775338862091,-79.25519669847563,-78.48985282657668,-78.379998981487,-78.05113806482404,-78.22857888881117,-78.36989325052127,-78.88335096929222,-78.79020494828,-78.14128139056265,-77.31566198682413,-77.67016943916678,-77.17343363258988,-77.4154919590801,-78.38356812903658,-78.19514867803082,-79.10206851596013,-79.64337610686198,-79.88432823494077,-80.6968288347125,-81.01181497611105,-81.23707426991314,-82.22775743016973,-83.05250890785828,-83.0233501191251,-83.5159596670419,-84.0156134380959,-83.80454926751554,-84.28061207849532,-83.5222889939323,-83.85503515601158,-84.22225569467992,-83.41919086920097,-83.01548101287335,-83.19060432678089,-83.67105370387435,-83.31129097007215,-83.66218431992456,-83.56438799668103,-82.87050726637244,-82.32576956925914,-83.18273446382955,-82.32577285449952,-81.93812845181674,-81.47556763375178,-80.55366003978997,-81.00526192970574,-81.39170940918848,-82.00418807985261,-82.75285705691203,-82.81256934814155,-82.05118607450277,-82.94884592061862,-83.11306608235464,-83.35013508377597,-84.17464968934655,-84.99232722027227,-84.28938492387533,-83.96177172102034,-84.8338734949939,-84.81548324692994,-84.61241992469877,-84.65792744141072,-84.82961810426787,-84.28555289423093,-83.80419199354947,-84.22761501697823,-84.69188129203394,-84.41607967857271,-85.15771597716957,-84.83859046315774,-84.36547613283619,-83.52457726560533,-84.04955922020599,-84.04909758130088,-83.6039630160667,-83.65933681000024,-82.74666965706274,-82.48281411360949,-81.5780756319873,-81.48251869762316,-81.60940966336057,-82.09309257008135,-82.3489081626758,-82.83172019617632,-82.44325121724978,-82.0701973750256,-81.73444908764213,-80.8045483357273,-81.36891416460276,-80.40670791687444,-80.49838508525863,-80.45796013297513,-80.11765655921772,-80.683459257707,-81.16492924746126,-81.37185369990766,-81.21043585240841,-81.569236041978,-81.20891365176067,-82.15231266710907,-82.54300235258415,-83.40611401107162,-83.4419680768624,-84.11822579056025,-84.02006633440033,-84.54010870261118,-84.98423363221809,-85.3005732386373,-85.32402637926862,-86.24620979977772,-86.28817754937336,-86.13290017237887,-85.78339944547042,-86.58186999941245,-87.16390699567273,-86.87611788837239,-86.36320966109633,-86.17436149017885,-85.98006447451189,-86.58135798852891,-86.57198725827038,-86.50611776625738,-86.60353047447279,-86.20333928382024,-86.44717378215864,-85.74858001014218,-85.62550396285951,-86.27622828120366,-86.06304332101718,-85.38133523799479,-84.87641645595431,-84.0561605845578,-85.04156273044646,-85.17792205000296,-84.47748251445591,-83.84533157525584,-83.52219204325229,-84.19246880710125,-84.69619403919205,-84.27477793954313,-83.99413220165297,-84.17733826488256,-83.55495412321761,-84.49486708641052,-85.1556696118787,-84.7348709339276,-85.65602895896882,-85.95258904993534,-86.31215884722769,-87.21508543239906,-87.20954940281808,-86.83909018151462,-86.02702162833884,-85.15518439980224,-84.40514452708885,-85.18840163340792,-84.70204871194437,-84.49235134525225,-84.07258358458057,-83.38882248848677,-83.28586412407458,-83.61802696296945,-84.22828807448968,-83.97021281765774,-83.72798071615398,-84.06660348782316,-83.90168013283983,-83.31096018571407,-82.5942509076558,-83.55688587715849,-83.96774120163172,-84.86654074629769,-83.8980176365003,-84.71335349511355,-85.14079587720335,-84.79235612461343,-84.62887599458918,-84.36839578254148,-84.35873595857993,-84.54384446004406,-84.99994110362604,-84.72074781823903,-83.99701293511316,-84.62070393655449,-85.3006462729536,-84.45430349558592,-84.23896424565464,-84.64136014459655,-83.68733895057812,-84.08563169045374,-83.87929871026427,-83.28454247349873,-83.64562866464257,-82.66168383648619,-83.03020085953176,-83.50414523482323,-82.96439249254763,-83.5621969755739,-83.16030571237206,-83.81597547698766,-83.80364768858999,-82.86355945421383,-82.92789226258174,-83.22955726506189,-83.77022438310087,-83.05387527029961,-83.70595124037936,-84.27613669494167,-85.18032818101346,-85.59156696824357,-85.41080034757033,-85.83707990730181,-86.67352911597118,-86.67084311600775,-87.24321652576327,-87.99234086135402,-88.79083830676973,-89.59721871092916,-89.50316513236612,-89.16580299381167,-88.39344014367089,-88.75888278940693,-88.24277857411653,-89.0361181050539,-88.34648596635088,-87.52108557196334,-87.33106867643073,-86.79855286469683,-86.3367242757231,-85.70643551507965,-85.19146910170093,-85.96787120960653,-86.61595121305436,-85.63196527538821,-86.53912259358913,-86.14142361516133,-86.1136262617074,-85.88380581466481,-84.9622524464503,-85.57503150869161,-85.01486534997821,-85.90379619318992,-85.40327810309827,-84.6338200555183,-85.41075594769791,-85.07418639445677,-85.08225846895948,-85.78280316572636,-86.09805831220001,-86.97408182313666,-86.72543488163501,-86.23165936814621,-85.2319080894813,-85.48492905590683,-84.76908758888021,-84.5593743394129,-84.16631688689813,-84.98214082280174,-85.04421355761588,-85.94673330103979,-84.98064228147268,-84.11419999459758,-83.4210078753531,-82.5513865207322,-82.28217894770205,-83.00519725540653,-83.52595455897972,-83.23913444811478,-83.31260281056166,-82.39020112296566,-81.88343718834221,-81.34509059600532,-80.89035366149619,-80.83624557033181,-80.36670585395768,-80.64975169440731,-81.51140270242468,-81.91931849485263,-82.49357529263943,-82.45225850166753,-82.00554915657267,-82.26714411051944,-81.50100319553167,-81.95496240863577,-82.31087280111387,-82.57295780209824,-82.7574329986237,-82.24725710088387,-82.6751928892918,-82.42280510440469,-81.51524924207479,-81.65090222936124,-82.39900002023205,-83.18100696615875,-82.19829434389248,-82.70570809813216,-82.81424843054265,-83.25939062377438,-82.68355035362765,-83.42785909958184,-82.98199933161959,-83.91542159067467,-84.36669829115272,-84.3565024365671,-84.01256211614236,-84.3279428081587,-83.5057432251051,-84.28716906346381,-85.15161179099232,-84.94388551358134,-85.6893734629266,-85.01235956465825,-86.00763159850612,-86.44047933490947,-86.9275765819475,-86.10277935303748,-85.9324030582793,-86.19201572658494,-86.05734745180234,-85.37141068838537,-85.8598975725472,-85.30916632572189,-85.99776825960726,-86.84613541327417,-87.41560214851052,-88.1099056606181,-87.53036238858476,-87.1937691657804,-87.12793179461733,-86.70120114181191,-87.36881885072216,-86.88168070372194,-86.01096230419353,-86.49446308426559,-87.24447258468717,-86.91286957310513,-87.36257278220728,-86.94851816352457,-86.08719946397468,-86.71814538398758,-87.60014245798811,-88.05087902024388,-88.72830630186945,-89.48036234918982,-88.83579099923372,-88.84249180974439,-89.73437352618203,-89.0553738726303,-89.0577406026423,-90.01377763831988,-90.82015717122704,-89.82405139086768,-90.2909598890692,-90.65492013283074,-90.63251919904724,-91.31599767319858,-91.18661661911756,-91.61693662637845,-90.90415375772864,-91.44990484043956,-91.87364563485608,-91.65356110781431,-92.17722935695201,-91.4078545179218,-90.8362285066396,-90.02870461298153,-90.23344695940614,-89.33647000649944,-89.22873034793884,-89.9076552358456,-90.5872996635735,-91.30258878646418,-91.80023059248924,-91.95738305151463,-91.36261458834633,-91.43807038618252,-92.36303492309526,-93.24754170002416,-92.86109568877146,-93.33220853935927,-94.22366290492937,-93.28611744241789,-92.8285441971384,-93.03153300937265,-93.64066597353667,-94.58414611313492,-95.3110985904932,-95.90410593897104,-95.62665082653984,-95.9485064134933,-95.7865254599601,-95.02526971371844,-94.36224258784205,-94.33406388713047,-94.57957085547969,-95.1112215318717,-95.84775756625459,-95.17910023732111,-94.46460118656978,-94.54177371831611,-93.76752467220649,-93.42095956904814,-94.01996509823948,-94.08283422887325,-94.55112033570185,-93.66826522676274,-93.55052686529234,-93.08889539260417,-93.64271632116288,-93.61741177318618,-93.79881572723389,-93.10168368602172,-93.98167331237346,-94.3301844894886,-95.07428614562377,-94.13241001358256,-93.61410836689174,-93.45107031520456,-92.88452860713005,-93.37117495527491,-92.86248996900395,-93.54110044194385,-94.2737242677249,-94.09686126932502,-93.93393052043393,-92.97513047838584,-93.89648085506633,-93.18865380762145,-92.41705642361194,-92.59801715007052,-91.94684300292283,-91.39853298990056,-91.65872785076499,-91.06614259351045,-90.35445828782395,-89.44550608471036,-89.8634993378073,-90.31966790324077,-89.98638819623739,-90.13394273305312,-89.78888825047761,-89.70470782136545,-89.02828371245414,-88.58727456396446,-88.80949580855668,-89.01993271289393,-89.38529399549589,-89.07677118200809,-88.3088810229674,-88.1759833865799,-87.9302447498776,-88.26947509218007,-88.12481960980222,-88.53819350618869,-88.4504253747873,-88.61366333859041,-89.43639694480225,-89.3155546025373,-89.89462346024811,-89.36082497099414,-89.27387243695557,-89.19287362741306,-88.54040736798197,-87.60449160309508,-86.81952218525112,-86.4387938817963,-85.86207705223933,-85.29717498645186,-86.04608718305826,-85.45660721929744,-86.23318398511037,-85.61331915622577,-86.40481527382508,-87.38934998167679,-88.02673911303282,-88.52822790201753,-88.73461833037436,-88.94202948082238,-89.34862834075466,-88.80744253890589,-88.5884388005361,-88.38081372529268,-87.58915576292202,-86.66134273307398,-86.5161311198026,-86.55164149729535,-87.35657901642844,-87.97259318642318,-88.48144863871858,-88.22554487083107,-89.15713812178001,-89.06768285343423,-89.27262190496549,-88.79151642043144,-87.97065398888662,-87.80741768563166,-88.31705978605896,-89.24293936695904,-88.50461382651702,-88.05644936533645,-87.9776355959475,-87.52458981378004,-87.563670206815,-87.8177900374867,-88.48718622839078,-89.01147889671847,-89.45401617884636,-89.23941619088873,-89.78645023005083,-89.44130977708846,-88.79255883861333,-88.77217478351668,-89.43110867077485,-88.536076401826,-88.65958776790649,-88.6542314174585,-87.8723763837479,-88.77761593973264,-89.00444741360843,-89.06482553714886,-88.13503066962585,-88.16959733655676,-87.63548645470291,-88.46831277385354,-88.06890885950997,-87.94623171817511,-87.8480640607886,-86.84999123774469,-87.4545709961094,-87.11146967997774,-87.24528226535767,-87.86683898372576,-87.4101352095604,-87.23892737738788,-88.19458296755329,-88.27540933154523,-87.98198547773063,-87.93661629036069,-87.18729264801368,-86.28594247996807,-87.06515732873231,-87.32530686166137,-86.39267349196598,-86.94859039131552,-87.6480066892691,-87.73797765607014,-87.3599437722005,-88.03296597441658,-88.49815263180062,-88.97505197767168,-88.54564615245908,-87.60324310837314,-88.00178207177669,-88.24107535881922,-87.29150713328272,-88.04963465034962,-87.1891410141252,-87.73655048198998,-87.86727261450142,-88.67687026550993,-88.78955048881471,-89.72431157063693,-88.99141135020182,-89.00580421229824,-89.56116042239591,-88.67355451686308,-89.03857909142971,-89.3351681320928,-90.1045687077567,-89.14093813626096,-88.46054302668199,-87.74779779324308,-88.35879270359874,-89.01285215979442,-89.0280402614735,-88.28162400377914,-87.81477911956608,-87.5781757896766,-87.4549742359668,-87.23708401340991,-87.00513196364045,-86.27849748264998,-86.04232714232057,-85.95472400030121,-85.5861628940329,-85.56707887398079,-85.91212629945949,-85.67211690871045,-84.75261462898925,-84.33452606573701,-84.39488839870319,-84.43494333233684,-83.99957311572507,-84.90857766475528,-85.86522992514074,-85.20839187502861,-84.6882317326963,-85.02597224386409,-84.95172232948244,-84.06524527072906,-83.98337974399328,-84.30707561317831,-84.98684087349102,-84.02027492271736,-84.01733832480386,-83.44606921169907,-83.54565684264526,-83.21508438559249,-82.40883363317698,-82.14918104372919,-81.48318025562912,-82.40011394256726,-82.05341709172353,-82.73354520089924,-82.85805236827582,-82.71545566432178,-82.45983111206442,-82.88934974046424,-82.66899243136868,-81.77140905661508,-82.69740582164377,-82.5864069731906,-82.00074389809743,-82.76669037062675,-82.37654357869178,-81.62319922540337,-82.43094265786931,-82.67458891868591,-81.69561025639996,-81.79931692453101,-81.90745999431238,-81.14799152454361,-81.76886334968731,-81.02946013491601,-81.31775867566466,-81.57283549476415,-80.68964194273576,-79.89825871726498,-79.93191140005365,-79.82293778425083,-79.43981519760564,-79.66827565478161,-79.68790489295498,-79.86165001010522,-79.471317011863,-79.65206197788939,-79.92652835696936,-80.87740624975413,-80.28555879881606,-80.58727882476524,-81.24333738628775,-82.05553177790716,-81.47818859061226,-81.53258398314938,-80.66984922392294,-79.93012449890375,-79.38001133035868,-79.75040058931336,-79.19920231075957,-79.4213545313105,-79.014776553493,-78.78875211020932,-79.621179507114,-79.0432656109333,-78.51047510607168,-78.86277695186436,-78.13160882005468,-77.83117170678452,-77.03114548372105,-76.20588148711249,-75.57405403908342,-74.96336841350421,-74.71921553695574,-73.83818348543718,-73.97903759824112,-73.63550266250968,-73.38759981188923,-74.26208484591916,-74.45174994273111,-73.51933701569214,-74.02830267464742,-74.33022855967283,-74.9441017350182,-75.29265645705163,-75.93023358890787,-75.38342268532142,-75.12073000706732,-75.82385692372918,-76.36888984590769,-76.88153411680833,-76.37269349582493,-75.40253075910732,-75.18887831969187,-74.5139735583216,-74.40536622470245,-74.29427890572697,-74.60541606601328,-74.44161639036611,-75.22543910425156,-75.18509039049968,-75.56369450362399,-75.10180438309908,-75.52845714474097,-76.35880485875532,-75.83436657534912,-76.21176607115194,-75.42854070523754,-74.53360705683008,-74.70559533406049,-75.21233076741919,-74.38191551528871,-75.2893248279579,-75.3304132274352,-74.71831634594128,-73.84267024649307,-74.11571658682078,-75.09847421804443,-74.8613454173319,-74.92983986157924,-75.67359771765769,-75.26490000030026,-74.87253532698378,-74.22746934648603,-73.36901296675205,-73.13515362283215,-73.31077224714682,-73.852070691064,-74.28662988264114,-73.68168297130615,-73.6224595787935,-73.40865851938725,-73.50917935324833,-73.6759368549101,-73.24300117371604,-72.83304947242141,-71.8345355130732,-72.77403357019648,-73.72155975084752,-73.81759061617777,-72.86780256498605,-72.58541496098042,-72.41568581014872,-72.2437849175185,-72.62076756265014,-73.15511974785477,-73.57229271857068,-73.64456058247015,-73.31710560666397,-74.25577782606706,-75.01933487551287,-74.69915764499456,-75.2373573933728,-74.33425396354869,-74.44580523623154,-75.15435641212389,-75.75685280095786,-75.06902422429994,-75.86339998431504,-75.49681008746848,-75.93451385805383,-75.56033430295065,-75.09865905018523,-75.90510949026793,-76.76778521202505,-76.55439271731302,-76.46795421652496,-75.71051745023578,-75.70654130354524,-74.80598057201132,-75.05544281890616,-76.01030990155414,-76.46388008492067,-76.64855805970728,-76.3487249147147,-76.60148299112916,-76.97158903395757,-76.27496465854347,-75.55923775304109,-75.61941304244101,-76.43277403246611,-75.56685713864863,-76.03300321428105,-76.03046120237559,-76.24365149531513,-76.24311839556322,-77.11947901546955,-76.36343890614808,-76.73823842825368,-76.67843166086823,-76.86958983074874,-75.94533596141264,-75.16567705245689,-75.92187286866829,-76.44153736764565,-77.4149125139229,-77.4264801023528,-76.78341925702989,-77.56927013210952,-77.93002285575494,-77.16243541240692,-76.48758400324732,-76.8354315222241,-75.95610349299386,-75.82005545217544,-74.84088887600228,-73.93639138992876,-73.19656623248011,-73.92355747707188,-74.84128719195724,-74.25452203350142,-73.9845654675737,-73.7591044260189,-73.53666597325355,-73.9189850660041,-74.29286134149879,-74.72429860988632,-74.33943521976471,-73.93443448282778,-72.98971833009273,-72.406329235062,-71.48329232865945,-71.07317376928404,-70.79612045455724,-70.06317508826032,-70.91763428412378,-70.46267481008545,-70.0939082512632,-69.43896470032632,-69.4115966646932,-69.85374457063153,-69.56281632231548,-70.06670522503555,-69.26673800731078,-68.51480313483626,-68.7972614155151,-68.15816744277254,-68.9562506810762,-68.93526553874835,-68.79884280217811,-69.07726862980053,-68.93732821382582,-68.71746709477156,-67.95456670969725,-68.37431250186637,-68.89050477929413,-68.03947569942102,-67.17926410213113,-67.39927826588973,-67.34299284080043,-68.07805884582922,-67.1398423537612,-66.4565444830805,-65.8539941161871,-65.5002668700181,-64.54226932302117,-64.04827227536589,-64.48334808181971,-64.18132936628535,-64.39820840209723,-65.29845148976892,-65.82522380072623,-65.2739052772522,-65.72279513487592,-66.39028016710654,-65.46925382316113,-64.90753795625642,-64.83001807052642,-65.11280512576923,-64.15147553151473,-64.87098925374448,-65.49033449217677,-65.79398094676435,-65.57493610773236,-65.5888663996011,-66.0653028935194,-66.09104202548042,-66.47798555763438,-66.75696793058887,-66.95524098630995,-66.81651730742306,-67.2269882033579,-67.10109844617546,-66.6795842628926,-67.19691282464191,-67.25520151853561,-66.26856163935736,-65.77193232346326,-65.4091066159308,-65.1789226597175,-65.79689380992204,-64.86996755143628,-65.49307416379452,-66.18063123803586,-65.265841728542,-66.04590698005632,-66.49646768160164,-65.94589185714722,-66.34417993482202,-67.131087011192,-67.2483788090758,-67.57135458569974,-67.58345350483432,-68.1566913514398,-68.04474431136623,-67.41146343573928,-66.61337700067088,-67.06048860028386,-68.03432005643845,-67.86030665133148,-67.25035210791975,-66.6930876635015,-67.60241643246263,-66.95648051891476,-66.77019112417474,-67.07417399249971,-67.32505588559434,-66.35697712609544,-65.4719226253219,-64.64855539239943,-65.42436499567702,-66.28877296578139,-66.89969909843057,-67.46966876182705,-66.55631320225075,-66.31303494330496,-65.48468246078119,-64.7574800811708,-63.90382456453517,-63.48675283975899,-62.78866906743497,-62.823469686321914,-63.37347083212808,-63.40411057835445,-63.126403697766364,-63.72665221430361,-63.77536951145157,-64.69857934257016,-64.32882465654984,-63.41268666740507,-62.62549878982827,-63.58137624152005,-64.05826397472993,-63.335543792229146,-62.52978911809623,-63.19108305172995,-62.505418529268354,-63.33765869634226,-63.97670481028035,-64.33780864113942,-64.83783450955525,-64.9783938494511,-64.56544776353985,-63.920397127978504,-63.45556856878102,-62.73566687433049,-61.92742341756821,-62.903860348742455,-63.66577501827851,-64.1506174984388,-64.63445711508393,-65.41405324358493,-65.95156291173771,-65.58490568678826,-64.98704721219838,-64.25089194392785,-65.20632634032518,-65.43167733075097,-65.17740161716938,-65.57772681955248,-65.43064903793857,-64.58149915514514,-65.23322293628007,-64.27105124434456,-64.86626730952412,-64.84600386116654,-64.85208057053387,-63.98031575139612,-63.71127814333886,-62.78168892906979,-63.467069333884865,-64.03654816467315,-63.876794094219804,-64.8715595016256,-65.16831495286897,-64.99556203885004,-64.86474922997877,-65.7763937767595,-66.1838129144162,-66.14063814515248,-66.67268638079986,-67.37829927541316,-68.09488546708599,-68.33536629704759,-69.29946858622134,-68.58123701112345,-69.41215344006196,-70.03679779637605,-70.38326780032367,-70.29871537256986,-70.85925284493715,-71.15266495896503,-70.9097271244973,-71.72650155145675,-70.9047219180502,-71.75346245337278,-72.63322395831347,-72.06541444035247,-71.96935912081972,-71.40695168217644,-70.98069198383018,-71.513478144072,-71.212414347101,-71.06030297605321,-70.91307851159945,-71.73124233959243,-72.14508562209085,-71.17652465589345,-70.89433185849339,-69.97189784096554,-69.34214234724641,-70.24451375659555,-69.94733267650008,-70.0604963474907,-69.0610394673422,-68.36452950909734,-68.60000786231831,-68.45021571777761,-68.42799651110545,-67.98469838825986,-68.75824942905456,-69.45618080114946,-69.47547690197825,-70.30944500258192,-69.72033285722136,-69.72510719764978,-69.13170957146212,-69.75704559125006,-70.27016316959634,-69.58321414748207,-69.61078215530142,-69.85336535517126,-69.52602102095261,-68.91443418292329,-68.54942422453314,-68.84382827021182,-69.52963982522488,-69.22180088143796,-68.45372111583129,-68.40255121933296,-69.22950632497668,-68.37535401806235,-68.87136574089527,-68.64758291374892,-69.16717029456049,-69.74906404223293,-69.4969644760713,-69.73755339626223,-69.96473820786923,-69.70605626236647,-68.84079878544435,-67.8535003727302,-68.06734665343538,-68.03315775934607,-68.67109015164897,-69.09764323756099,-68.40561234252527,-68.1305738738738,-68.62335845921189,-68.59331824304536,-68.09553070366383,-69.02168693719432,-68.11044562980533,-68.48972074873745,-67.58210969576612,-66.81420248234645,-66.53266376303509,-67.49818926956505,-67.89493904775009,-68.57538199890405,-68.99629453243688,-69.44996300060302,-70.38150525139645,-70.30806194292381,-69.78065635962412,-70.03862478584051,-70.1492258971557,-70.00762857729569,-69.78591965232044,-69.63225372787565,-69.37699598679319,-68.9960722187534,-68.15744962915778,-67.90529614593834,-67.34312831796706,-67.4213793091476,-67.68098696693778,-67.55147482501343,-68.44356633909047,-68.62417805567384,-68.13699100818485,-67.98967399680987,-67.47936741728336,-67.26448427466676,-66.31313470285386,-66.63986119674519,-66.57017552247271,-66.70358387287706,-66.23678406747058,-66.78572916937992,-67.64228385593742,-66.87364914221689,-67.87045109411702,-67.73120430018753,-67.80946682067588,-67.29878111835569,-66.892822900787,-66.15080900117755,-66.83229520963505,-67.05304374732077,-67.46908049471676,-67.0470351963304,-67.92480338783935,-68.50082230987027,-69.1882065134123,-68.43000448541716,-69.29900039825588,-69.13916884828359,-69.5992795242928,-69.97006155503914,-70.30110872257501,-70.19759362423792,-70.91419042134658,-70.0577281974256,-69.28808782389387,-70.17712945863605,-70.7616001679562,-71.28437213087454,-71.79440443729982,-71.81821117829531,-72.04502803646028,-71.42901910701767,-71.44160532020032,-71.63623419310898,-72.56788620492443,-72.16637758072466,-71.91010282747447,-71.62035799538717,-70.6528882891871,-69.8353211870417,-69.3305350295268,-69.33618087507784,-69.44976114341989,-69.36886709136888,-69.7227390720509,-69.28491269657388,-69.72993549797684,-69.9245895887725,-70.65155376121402,-71.20178988203406,-71.49112643953413,-70.98573723202571,-71.21261664060876,-71.2542610024102,-71.48328662337735,-70.98023137263954,-70.76691320398822,-70.08506789430976,-70.19222028460354,-69.53629793273285,-69.7739554378204,-69.39117985358462,-70.09597008256242,-70.41522628255188,-70.63716141600162,-70.76053978968412,-70.80246834782884,-70.05362820718437,-70.6793648651801,-70.20371214486659,-70.91403837362304,-70.43928378587589,-70.807198244147,-71.07289297273383,-70.25601165322587,-69.94419251475483,-70.22354156384245,-69.60861535137519,-69.04316570656374,-69.96659502852708,-69.68611983535811,-68.69028457766399,-68.63464477285743,-68.77253867965192,-68.31131550949067,-68.36748764617369,-68.36460828920826,-68.43369485624135,-68.37005849322304,-68.65779803320765,-69.05921957688406,-69.69441252714023,-68.96342925727367,-69.34841132676229,-69.69454369321465,-70.23056398518384,-70.9250636715442,-70.21396999713033,-70.01056191837415,-69.12676098337397,-69.45677053974941,-69.3374969214201,-69.83029491873458,-69.65186895010993,-69.04653724841774,-69.97543574962765,-70.2565265498124,-71.08869911823422,-71.6768198297359,-72.55964582087472,-72.14637829223648,-71.7682565129362,-72.65311020147055,-71.68076404649764,-72.01083957124501,-71.83120155893266,-72.76033987663686,-73.5632844674401,-72.94138414179906,-72.12785349832848,-72.59616569150239,-72.37158488947898,-72.52921039098874,-72.02268591197208,-72.30172687442973,-73.1431149924174,-73.55968189844862,-74.46618020860478,-75.17508920934051,-74.39085395261645,-74.09601747104898,-73.5977012985386,-74.45003693643957,-75.0157178370282,-75.65942062810063,-75.93684359872714,-76.68134913174435,-76.97831565979868,-76.49338323343545,-76.58117265906185,-76.23414695449173,-75.39324236661196,-75.74648222047836,-75.39334884192795,-74.4728330699727,-74.86282649403438,-75.20350331859663,-75.41143654193729,-75.91860572015867,-75.32587981782854,-75.38549437513575,-75.93388057081029,-75.34369422588497,-76.22963710967451,-75.80874610040337,-74.87175172753632,-75.40355443535373,-74.92360142152756,-75.16462562885135,-75.44263698672876,-76.01226888829842,-76.00626923004165,-75.96390630817041,-75.38435998279601,-74.71587989898399,-75.30639780359343,-75.51441305456683,-75.97180406097323,-76.89434496313334,-77.2867786376737,-76.47016850905493,-75.59354043845087,-75.73479491472244,-76.31494080647826,-76.02400625078008,-75.94683962501585,-76.6864137002267,-77.59464962454513,-77.78155892342329,-77.69520076364279,-77.13556344853714,-77.38478278275579,-76.88698791433126,-76.44214780209586,-76.05819574650377,-75.30914339702576,-75.94773576129228,-75.50196176208556,-75.77415932435542,-75.29385823570192,-74.96429242752492,-74.1570233493112,-74.3645517420955,-75.18280564015731,-75.98241959977895,-76.13883819011971,-76.55259585520253,-77.17531591234729,-77.41046976484358,-78.34056984167546,-78.25350660504773,-77.78422481752932,-77.85106578515843,-77.67616796400398,-78.43703583115712,-79.33874795213342,-79.13612317945808,-79.37543654860929,-79.80904379487038,-79.3498082687147,-79.03886838024482,-79.5997022325173,-80.25077133625746,-81.0636792355217,-81.46578716207296,-81.14009597618133,-80.34967184206471,-80.91078118048608,-80.95224769506603,-80.26194633869454,-80.96416908921674,-81.31597572844476,-80.97710460517555,-80.04008093802258,-80.9862994751893,-80.08803174225613,-79.63209589151666,-79.52504528593272,-78.64955518767238,-79.54106900887564,-78.68630499532446,-78.13475527474657,-77.85874344222248,-78.04319408209994,-77.9141735509038,-76.96886637667194,-77.51450701756403,-76.61049669608474,-77.02131750341505,-76.68711458100006,-76.42906483216211,-76.36931086378172,-75.99353248300031,-76.3225923073478,-75.57868668017909,-76.22142227366567,-75.26782871317118,-75.8110434692353,-75.41755113424733,-75.63454602146521,-74.8496697503142,-75.83706304710358,-76.39154060184956,-77.16247084317729,-77.73139509093016,-77.821780518163,-78.45385234663263,-79.07334429165348,-79.01631687860936,-79.00553061347455,-78.99521159986034,-78.4078599489294,-79.01916058640927,-79.38068111194298,-78.99091360718012,-79.26112540718168,-78.5878582065925,-77.76499314885587,-77.33194925449789,-77.53810244891793,-76.8435039515607,-76.45251805242151,-75.78478611819446,-75.41950227599591,-75.49786655977368,-76.12477468932047,-76.97395297186449,-75.98407761380076,-75.49300651066005,-76.4200519588776,-75.61670084996149,-76.53413149341941,-76.89214477920905,-76.51311140181497,-75.73905100626871,-75.6088585020043,-76.0142321693711,-75.9138223216869,-76.81787970848382,-76.33439504215494,-76.57155301934108,-75.84397662477568,-75.9197032568045,-76.21181205008179,-75.84311208268628,-76.44334094412625,-76.8078129235655,-76.30683410866186,-76.4655343578197,-75.96621146472171,-76.2027723020874,-75.27830083016306,-75.2905382514,-74.78803073242307,-74.67532009864226,-75.44706183578819,-74.66854474367574,-75.18236463563517,-75.14050918770954,-74.19577880762517,-73.92989758402109,-73.24345146678388,-73.29181686835364,-72.80978746060282,-71.87289928784594,-71.43206093879417,-70.71385418530554,-70.23200323013589,-69.44440479995683,-70.19372918456793,-70.36940464237705,-69.59044685959816,-70.04967033909634,-70.73933934560046,-70.59029279043898,-70.87203333200887,-71.424709697254,-71.44932662835345,-70.74468529038131,-71.32410828117281,-70.8901272052899,-70.08247028151527,-70.47784588159993,-70.1536199641414,-69.48385235108435,-70.34457360953093,-70.6744123371318,-69.67989846877754,-70.39810423180461,-71.05596562288702,-70.10421726899222,-70.31166794057935,-70.0801165709272,-70.3267932976596,-69.90387205267325,-69.97799770114943,-69.54113154113293,-69.52530049532652,-69.0792884719558,-69.84559132624418,-69.495684155263,-70.17642648145556,-69.7208784641698,-69.57958876620978,-68.99458794016391,-68.43037177529186,-69.24824626557529,-68.57441917993128,-68.00555230677128,-68.47385195549577,-68.28559054015204,-68.86676384229213,-68.56655095657334,-68.34618484321982,-69.32876885822043,-69.9207436661236,-70.47944670543075,-69.87872679112479,-70.54611353576183,-71.53921111579984,-70.56825099652633,-70.48786113923416,-70.18464062921703,-71.15650717029348,-71.36849860753864,-70.51495274342597,-71.08550798008218,-70.14727368811145,-70.52797763934359,-69.71680999360979,-70.00919388188049,-69.14742770697922,-69.66640129685402,-68.7849592063576,-69.0880387891084,-70.07022004015744,-69.27516275690868,-69.58837321726605,-69.77819766011089,-69.38008323032409,-68.50382953044027,-68.81781105091795,-68.9580501690507,-68.57320544449612,-68.34142453316599,-69.1552404826507,-69.50690302206203,-69.33019436569884,-69.84645754564553,-69.64484819816425,-70.57690198905766,-71.20284021319821,-71.5396508933045,-70.84405423514545,-71.30625142296776,-70.79338360624388,-70.97958213509992,-70.18915790366009,-70.54453680897132,-70.39584781834856,-71.3180794576183,-72.26628603087738,-72.85351365571842,-73.57264588354155,-73.00775281433016,-72.88432021997869,-72.96823541168123,-73.91496746381745,-74.02973323548213,-73.54148960020393,-72.7334607578814,-73.49196821032092,-73.2181020770222,-73.53650258667767,-72.87814226420596,-72.4503054432571,-71.9003041042015,-72.39398364769295,-72.55997234862298,-72.94305828493088,-73.84208154026419,-73.99970100540668,-74.69638736918569,-73.8866633712314,-74.45492190402001,-74.00094668054953,-73.12702991254628,-72.96951533760875,-73.81455988250673,-73.79076347034425,-72.86111809685826,-73.32713212352246,-72.61469429498538,-73.35422497894615,-73.7259391718544,-74.30862115509808,-74.05679320171475,-74.65583860268816,-74.94483686145395,-74.36465513613075,-74.47094462485984,-74.66163597861305,-75.45206903386861,-75.29765876568854,-75.4233222254552,-74.64035205123946,-73.9077661363408,-74.81146672554314,-74.44419900141656,-73.5516412165016,-73.04875536356121,-73.86597021482885,-73.31642923690379,-74.23863121354952,-73.68573347851634,-73.3958009374328,-73.5192524716258,-72.58992097806185,-72.39207523968071,-72.31882286118343,-71.56192464381456,-71.11577269481495,-70.77262550452724,-71.33582647610456,-71.72688678465784,-71.0274870051071,-70.14835879858583,-69.86717411270365,-69.45793290669098,-69.20465618278831,-69.71025682520121,-68.94418352283537,-68.77586351847276,-67.8984418110922,-68.19260028516874,-67.33120669936761,-68.2274342738092,-67.83925002021715,-66.96370456879959,-67.31307028513402,-67.53213834762573,-66.80728480452672,-65.85470507014543,-65.81831554835662,-65.96749454038218,-65.27167963469401,-64.29728016769513,-64.13920056819916,-64.8446595557034,-64.60947954794392,-64.80904923193157,-64.76630093669519,-64.88232915569097,-65.65224623354152,-65.2317989836447,-65.86305322265252,-66.48335937364027,-67.2471425998956,-68.04094381257892,-67.53321388550103,-66.90809331741184,-66.93676283629611,-67.00275232549757,-66.16373365418985,-66.42208960046992,-66.29659743234515,-67.01918000448495,-67.97162128938362,-68.49295783694834,-69.11321366624907,-68.94057180639356,-68.71925444062799,-68.46138197137043,-67.77804888039827,-68.4531825678423,-67.6909766709432,-67.32368916692212,-67.83247626526281,-67.89311666926369,-68.63825951516628,-69.37149011483416,-69.04101415583864,-70.00197465158999,-69.4071757257916,-69.45326342945918,-68.63488010829315,-68.74467133078724,-69.32223493792117,-68.4997815657407,-67.74571682792157,-66.95704168081284,-66.03073539584875,-66.20805001677945,-66.30807890603319,-66.29111622134224,-67.06717696972191,-67.39333383459598,-67.2805313798599,-66.56324738450348,-66.66591224307194,-66.35666605690494,-66.43960577761754,-65.44236187031493,-64.49744333932176,-63.54798756772652,-63.44901579897851,-63.77049076044932,-64.65510879503563,-64.6170320250094,-63.75480210920796,-63.32695980742574,-64.29584605246782,-64.24187941197306,-64.85206657787785,-64.61432442627847,-65.42307103425264,-64.4885579762049,-64.25855813454837,-64.2142450963147,-64.6216454654932,-64.67336936062202,-63.84484269656241,-64.06643568119034,-64.08514568116516,-64.10900697205216,-64.066766963806,-64.249126536306,-63.44987334543839,-62.692750207614154,-63.20980341453105,-63.06900553405285,-63.35973519831896,-63.93103615799919,-63.08929217560217,-64.05011107772589,-63.59386461181566,-62.91972230235115,-63.005383213981986,-63.93280466273427,-63.198016801383346,-63.18888110341504,-63.06744301132858,-63.25273347226903,-63.1137107219547,-63.73715815413743,-64.05055707320571,-64.82992305327207,-65.02649232791737,-65.20910689095035,-64.77083584386855,-64.79890434630215,-64.82194494549185,-65.77723802672699,-66.43728046678007,-66.54043132578954,-65.60112968366593,-66.10527176549658,-65.54945232346654,-64.59570178808644,-63.8422543364577,-64.27649429487064,-63.948901240713894,-63.07023009471595,-63.42155459243804,-62.84704640554264,-62.609339258633554,-61.992734593339264,-61.73451270349324,-60.80642573023215,-61.03461489453912,-61.770237357355654,-61.078465482685715,-62.00268476922065,-61.35809463215992,-61.90829603886232,-62.60764197027311,-63.065836725290865,-62.72934860829264,-61.85434233350679,-60.88385204738006,-60.57205466739833,-60.670515581499785,-60.233378431759775,-60.440258983988315,-59.67499897349626,-58.83049766160548,-59.63567384053022,-59.32826869562268,-60.04542419454083,-59.32428154721856,-59.82620698353276,-60.159473756793886,-60.69497139705345,-59.97763207554817,-60.58662203932181,-61.493214102461934,-61.34372810879722,-60.761035750154406,-59.864696487784386,-59.27608199324459,-60.16107461089268,-60.88612160412595,-60.69858110928908,-60.52281613694504,-60.255445909220725,-60.67567243427038,-61.63404195429757,-61.47453771205619,-60.69226778578013,-60.55795226432383,-59.658872173167765,-59.62363168410957,-58.63346849847585,-59.21925039822236,-58.69437929941341,-59.36622754484415,-59.696904317010194,-60.546748424414545,-60.71789588779211,-61.12835621787235,-60.63517721928656,-61.489458025898784,-60.71285075880587,-60.401887802407146,-59.525789592415094,-59.94457099260762,-60.094681358430535,-60.337508738040924,-60.54087777994573,-61.3166009709239,-60.70871241763234,-60.90411479631439,-59.93771357415244,-60.47953030420467,-59.511033760383725,-59.38345661992207,-59.96987126534805,-59.422691171988845,-59.14971212204546,-59.82920531462878,-60.69307906040922,-59.895514781586826,-60.57600096007809,-61.51923066936433,-62.018424787558615,-61.73743824567646,-62.1062182309106,-61.943499345332384,-61.736271281261,-61.614187283441424,-62.38492623809725,-62.632849510759115,-61.991382509004325,-62.417391845956445,-63.14960700413212,-63.42041986528784,-62.45662645017728,-61.84401472704485,-62.538693092763424,-61.87672468833625,-62.33470233157277,-63.19917153194547,-63.45701217558235,-63.64286398002878,-63.019971631933004,-63.20553411683068,-63.60901435371488,-63.32893173163757,-63.88287670491263,-64.67803263710812,-64.72125456202775,-65.63992014247924,-66.54800674598664,-66.08292247634381,-66.1924696424976,-65.90544361528009,-66.22879475913942,-65.3284088075161,-65.32069311663508,-64.86640475969762,-64.80347430938855,-65.24505727970973,-64.50704869069159,-64.08132215216756,-63.952943013980985,-64.01185019826517,-64.93908896762878,-64.71518346993253,-65.10699162492529,-65.81325577804819,-66.78620368335396,-67.43883345276117,-67.08921357989311,-67.12381330039352,-67.93883517291397,-68.89410950336605,-68.75681282393634,-68.58313281647861,-67.93692656140774,-68.24219594988972,-68.27008274709806,-68.74133698176593,-68.10095489723608,-68.24092596862465,-69.02748262835667,-69.35669732745737,-68.94710309617221,-69.76562092686072,-70.16186721343547,-69.24764484772459,-70.08009757334366,-70.19036654476076,-70.46817950764671,-70.63499130867422,-71.06449919566512,-70.81693908758461,-70.12126102857292,-70.10955864051357,-70.17372900014743,-71.1190587002784,-71.19870338728651,-72.07962314039469,-72.62474417220801,-72.04606511350721,-72.56699041184038,-72.24002267187461,-72.8146220240742,-72.20776893943548,-72.1804637615569,-71.52104250807315,-72.22695683641359,-71.59470193088055,-70.86497891088948,-71.79481637803838,-71.79798447946087,-72.58444353984669,-73.03085285238922,-73.05200683139265,-73.02713834447786,-73.38436984783038,-73.12856913357973,-73.92854793649167,-74.70393231138587,-75.38548935111612,-74.58855832833797,-74.47865827055648,-73.51396140037104,-73.45596124744043,-74.39031836669892,-74.56160512426868,-75.31059788446873,-75.69987024925649,-75.07628430379555,-74.38219529250637,-75.24539574887604,-75.87684990931302,-75.7049864679575,-76.69332533329725,-77.53815147513524,-76.57018181821331,-76.55034033581614,-75.88013319578022,-76.83585465746,-77.59216203028336,-77.36723025282845,-77.35991972312331,-76.5055037024431,-76.61513319797814,-77.20527655398473,-77.57068460900337,-77.86586634628475,-78.39052866818383,-78.13255935441703,-78.96813894575462,-78.0746862096712,-78.29487412096933,-77.43034585705027,-76.87425376754254,-77.05195413064212,-77.50551554281265,-77.56374996667728,-76.91064755944535,-77.1137357102707,-76.94944969937205,-77.57245603902265,-77.34197995485738,-77.20619139447808,-77.97164355451241,-78.6068014879711,-78.57960537960753,-78.36050788871944,-78.12131430814043,-77.7978717694059,-77.54218219127506,-77.05406164750457,-77.4591356064193,-77.96301951445639,-78.66500145709142,-79.50060190446675,-80.1064530024305,-80.64550004014745,-81.13374913251027,-80.66392480256036,-79.85556607041508,-79.04403091594577,-78.07462502922863,-77.78478415356949,-78.59706981154159,-79.23591973911971,-79.69373819604516,-80.11530504887924,-80.08759046066552,-80.79447240242735,-81.29867761721835,-80.38341700937599,-80.66195865161717,-81.11696073459461,-80.18013791320845,-80.0005230200477,-80.24850748945028,-79.84492523455992,-80.76070069754496,-81.69979506265372,-80.92883187392727,-81.14735544333234,-81.42943872371688,-80.7134159100242,-81.33921307045966,-80.92010154994205,-81.4068582225591,-81.63899312540889,-81.33940323349088,-81.65702656749636,-81.1455702460371,-81.21463428391144,-81.23971092142165,-80.26782067772001,-80.00282990559936,-80.15780432103202,-79.55698151653633,-79.44857988832518,-79.43918956257403,-79.08972126850858,-79.80813765851781,-79.10797084448859,-80.04482486937195,-80.17921883612871,-80.26277802465484,-81.05323175014928,-81.93073995178565,-82.13054411951452,-82.26148734195158,-82.67935378337279,-82.42300959397107,-81.86032113013789,-82.69506259262562,-83.17876857565716,-83.2871667239815,-83.67513393517584,-84.20124909980223,-83.60024514282122,-84.23590503027663,-84.04229093203321,-84.56072274921462,-85.51201591780409,-85.9800342679955,-86.96111563872546,-87.56036115158349,-87.51210849266499,-87.23458120971918,-87.81899799034,-88.05400853231549,-87.39406129764393,-86.47104108752683,-86.67295083263889,-86.7436662260443,-87.34339658077806,-87.15911231050268,-87.54223225591704,-87.39668937260285,-87.22118836455047,-86.42623933078721,-85.8634654446505,-86.34832720737904,-86.4444308760576,-86.7877017268911,-86.59763857722282,-86.0751802152954,-86.95263150008395,-86.2847324712202,-86.64010460767895,-87.3616807195358,-88.23230567155406,-88.15931840054691,-87.73224286036566,-88.05738478293642,-87.9317034878768,-87.72452552057803,-88.03214334417135,-87.85046377731487,-87.13519185502082,-87.57464975770563,-87.67808163259178,-87.90269818063825,-88.36619015457109,-87.51105671841651,-87.09418432461098,-87.23670009849593,-86.8596487226896,-86.61204456258565,-87.59201522637159,-87.18973093759269,-86.8086017826572,-86.28115211613476,-85.82904994487762,-86.78686733962968,-87.48729278845713,-87.69838271150365,-87.38545221136883,-87.28407842526212,-87.29464171687141,-86.64743362227455,-86.39360271487385,-86.35442712903023,-86.68456581793725,-86.23939668992534,-86.08431442687288,-86.18795099761337,-86.22779114311561,-85.27513208659366,-84.4551248876378,-84.09626758564264,-84.5708910850808,-85.40734505141154,-85.59104261733592,-85.02933597844094,-85.87137468717992,-85.62923349207267,-85.93332923902199,-85.50169987976551,-85.66048735333607,-85.72222932195291,-85.6804796368815,-85.93093077791855,-85.14917095983401,-84.97148988256231,-85.68043452734128,-85.23736136686057,-84.29373889649287,-83.32728870166466,-84.18088572053239,-83.29856900963932,-83.46159511711448,-83.78347207140177,-84.16373076941818,-83.44829481141642,-83.87489327089861,-84.17548157926649,-85.17532419646159,-85.32375125121325,-84.97945664450526,-85.24532930646092,-85.79589248495176,-85.18354473542422,-84.6406835229136,-84.17975204065442,-84.66674782242626,-84.27987981354818,-85.14973801607266,-84.47476282948628,-83.89684787904844,-83.41452860133722,-83.77213007444516,-82.8381145442836,-82.9022328085266,-83.40850511658937,-84.0135402129963,-83.95216908724979,-83.30191104626283,-83.26127055333927,-82.34735013078898,-83.24699458945543,-84.22373120626435,-85.12229923158884,-84.62042801268399,-83.81466633500531,-83.7622223100625,-83.07077405694872,-83.71474829874933,-83.351814085152,-84.26167375640944,-85.12990518519655,-85.17345722438768,-85.42028095573187,-85.94511851901188,-86.38837425038218,-85.41620455216616,-85.17594102304429,-85.37972734076902,-85.70317025249824,-86.17213853588328,-85.81729991268367,-86.43906540982425,-87.05518986890092,-87.23631412163377,-86.86192444339395,-87.3862388827838,-86.75993331614882,-87.29223966458812,-86.62977175600827,-86.84749167179689,-87.79079856909811,-87.54209510190412,-86.56171329692006,-85.86219607386738,-85.45725644566119,-84.86843684595078,-85.81067795306444,-86.10320319700986,-86.09125242941082,-85.37102011265233,-86.03512108558789,-86.70381567021832,-86.10134645784274,-85.94728882983327,-86.23707357374951,-86.35222113411874,-87.20109373005107,-86.50258281873539,-87.06762699969113,-86.71987219294533,-86.71582432230935,-86.27495321119204,-85.36152027081698,-85.04708962701261,-85.23740695416927,-85.53192678140476,-86.26891706418246,-85.28795870533213,-84.29825802147388,-84.9677092442289,-85.18772461311892,-85.62094264710322,-85.49039715668187,-86.17846816824749,-85.82443030271679,-85.25112783256918,-86.24936515837908,-85.25664317468181,-85.58484199037775,-85.72894561989233,-85.09685595706105,-85.32643353706226,-85.0342530333437,-85.95988240232691,-86.30429224297404,-85.55539305927232,-86.4017329304479,-86.40872510289773,-87.15689172316343,-87.97511010570452,-88.48212879430503,-87.64797500614077,-87.39593988237903,-86.7672890117392,-86.62276226654649,-85.8228208324872,-86.32276009721681,-85.45741036720574,-85.79660111386329,-86.7161369221285,-86.16450129356235,-86.77942164009437,-87.28419283451512,-86.58697156375274,-86.85349191213027,-87.8137405347079,-87.29884094232693,-87.4397360351868,-87.65517752431333,-88.1894924514927,-87.6915499875322,-86.89531053835526,-87.55410616844893,-87.48015676718205,-87.19045400246978,-87.94063754519448,-88.54582601087168,-87.81819091457874,-88.81790932361037,-87.94521907018498,-87.99047667486593,-87.00034123891965,-87.39887741720304,-87.83463849965483,-87.12035823659971,-87.14878186397254,-86.42334765894338,-85.65502688102424,-85.97421852173284,-85.40006379783154,-86.27181769255549,-86.89147555176169,-87.62808831781149,-86.7020136192441,-86.27189309382811,-86.9827265762724,-87.18105810228735,-86.83607753831893,-87.12018794193864,-87.33213272457942,-86.56388241797686,-86.89274965366349,-86.96932445187122,-87.44034300604835,-87.00643097469583,-86.45563575765118,-85.70763865625486,-86.00286308536306,-85.18169685453176,-85.69078225689009,-84.9060003045015,-84.27201365306973,-84.2084796349518,-85.15631030127406,-85.77411634335294,-84.95530784362927,-84.67037505470216,-84.15905785327777,-83.98209228366613,-84.47911863354966,-83.84747479809448,-83.30510366847739,-83.02032645512372,-82.59604700561613,-82.08868459705263,-82.5262192087248,-81.96923572802916,-82.66769633954391,-82.65817592246458,-81.69865053333342,-81.01933655235916,-81.81240327470005,-81.18362549506128,-81.05184868676588,-81.3155605387874,-81.26235506311059,-81.35138398734853,-80.77613420411944,-79.80315226409584,-80.1562450393103,-79.63206283375621,-80.19836193649098,-79.43183764908463,-79.19221714325249,-79.7605910426937,-79.70440874900669,-80.69189409306273,-80.01027079485357,-79.26229876372963,-79.60474738199264,-80.50646770279855,-81.2015552772209,-81.54707956267521,-81.20065537607297,-81.1168328509666,-80.72121042897925,-81.25444170506671,-80.8861392820254,-79.96161235356703,-79.53266028594226,-78.96143155824393,-79.59887969959527,-78.92042824393138,-79.43860097415745,-79.40535522438586,-79.59739297814667,-79.2740883724764,-79.98342387098819,-80.19468838628381,-80.51912216376513,-80.57719008764252,-80.05703487992287,-79.08514744741842,-79.44062671205029,-79.81543311942369,-80.61378802033141,-81.01888877805322,-80.2512299506925,-80.4659396330826,-79.6568498602137,-79.54432794824243,-79.88954871241003,-79.11307149659842,-79.01836509117857,-79.40693635167554,-78.47499307384714,-78.93087901035324,-78.50252116844058,-78.32889292389154,-78.44514024071395,-78.64747713785619,-77.90642877016217,-78.0708038774319,-78.89701510546729,-79.3449746617116,-79.71717179147527,-80.66389057133347,-81.3771568457596,-80.67181293433532,-79.89271732280031,-80.69215529598296,-81.03079361049458,-81.39941105479375,-81.88548142556101,-82.11299168737605,-81.39680665265769,-80.99782075406983,-80.03838808601722,-79.59529592329636,-79.4432712038979,-79.80446292180568,-79.56525104213506,-79.40439923014492,-78.72919508814812,-78.2082067891024,-78.72245904803276,-78.95447339257225,-78.37862088857219,-78.48512796359137,-78.62247521942481,-77.88733436726034,-78.55704336892813,-78.31012634001672,-77.31346207205206,-76.62984067993239,-77.52598157618195,-77.5329328882508,-77.4642777373083,-77.22946432419121,-77.41971780266613,-77.56390537880361,-77.8006239538081,-76.80760152684525,-76.35548421787098,-75.47157504921779,-75.51808068482205,-75.65388144273311,-75.4564014566131,-74.86892032623291,-75.35791876446456,-75.88435058109462,-76.54199306340888,-76.47635706095025,-76.52170717017725,-77.0725398552604,-77.39862970402464,-77.1892632539384,-77.75426924135536,-76.82525189360604,-77.7568697067909,-78.39167634909973,-78.74621855607256,-78.28719665342942,-78.14136478072032,-77.87448121327907,-77.5542450430803,-78.41269989404827,-78.56561805959791,-79.32270446699113,-79.12020513182506,-79.7938299132511,-80.79063104325905,-80.92691753618419,-81.04957149829715,-81.99660357553512,-81.39596390817314,-81.70723442640156,-81.2775060813874,-81.92334755510092,-82.57725653005764,-82.70735069969669,-82.86188644915819,-82.45212097046897,-83.226504876744,-83.49171145539731,-83.21709897974506,-83.78536106925458,-83.33721819287166,-83.52259353687987,-84.2822461752221,-84.17231831792742,-83.39173846133053,-84.34554398199543,-83.95395344588906,-84.4950162009336,-84.82372355367988,-85.11211176402867,-85.71516607236117,-85.05077876104042,-85.90196952503175,-85.6538948235102,-84.97135847434402,-84.48858348978683,-84.95986195933074,-84.00851824413985,-83.94541644491255,-84.12299988372251,-84.04017115058377,-84.29340524645522,-83.37681244127452,-83.95569446543232,-84.62900506751612,-85.51147570833564,-85.35753644630313,-85.97320245672017,-85.09070403547958,-84.80655601248145,-85.16367410449311,-85.15284349443391,-85.52844774490222,-85.65364288073033,-85.35876556765288,-86.21910862950608,-85.38291551778093,-86.12524718977511,-85.69982796441764,-85.50396099826321,-84.71936844009906,-84.66469983290881,-84.62083954177797,-85.41077488753945,-85.6721987137571,-85.22188605321571,-85.67067511379719,-85.18356114113703,-85.18080776650459,-84.86339841457084,-84.38980780076236,-84.81512275058776,-84.00408389559016,-84.13808374293149,-84.22766319476068,-84.83104081032798,-85.04147861665115,-85.07132357172668,-84.76898980559781,-85.60531697561964,-84.89594547590241,-84.15862833242863,-84.02804825780913,-83.92091373121366,-83.26692394027486,-84.05950128333643,-84.863225473091,-85.01814051577821,-85.12861074740067,-85.69907646114007,-85.90386080602184,-85.59159952169284,-84.74544695345685,-84.50686851562932,-85.14510317752138,-85.50464141182601,-84.60981088597327,-85.6020407085307,-85.00373632879928,-84.37312593171373,-83.62848083628342,-84.14547332748771,-83.66241013258696,-83.6339866402559,-83.9414591267705,-83.04994628578424,-83.74945768201724,-84.18476429255679,-83.48768218792975,-84.36058969562873,-83.51360853156075,-83.40660333679989,-83.28735924931243,-83.12684143567458,-83.97564242873341,-83.1516391960904,-82.55932823987678,-83.42878543958068,-82.47065318841487,-82.29652656242251,-83.09741985751316,-83.03721818700433,-83.87841940158978,-84.6586325680837,-85.37526963884011,-84.7399408314377,-84.38766126148403,-83.53690735762939,-83.38128769537434,-82.99097221996635,-83.02910812478513,-82.72715922165662,-83.58585748914629,-84.31881871074438,-84.45147527661175,-85.03420853149146,-85.8640652471222,-85.81920395139605,-86.32159104663879,-86.78706278651953,-87.68371988926083,-87.53387685446069,-87.23772022733465,-86.938644324895,-86.25502501660958,-87.01160356123,-87.95851227873936,-88.44040020741522,-87.6039746562019,-86.70571347186342,-86.80649813823402,-87.34236689610407,-86.99413610901684,-86.27118789497763,-86.92916449066252,-86.0735459215939,-86.09879721840844,-87.01795958261937,-86.82839486608282,-86.73960606520995,-87.36024876544252,-87.89202146977186,-87.76183568779379,-87.74006535438821,-87.23804581165314,-86.57318198401481,-87.50039096176624,-87.44369027903304,-88.13251452287659,-88.60552497534081,-89.03291879966855,-88.17872053524479,-89.12376723624766,-89.0371883478947,-89.82338985847309,-90.47410995792598,-91.05635868106037,-90.89186746766791,-90.30332357669249,-89.65185984456912,-89.54063323512673,-90.01494058640674,-89.86976558063179,-89.87871498800814,-90.6590031478554,-89.93245501955971,-89.25764930807054,-89.08839366491884,-89.08107602177188,-89.0826080320403,-89.13203618582338,-90.04573770565912,-89.13978385087103,-89.73612194973975,-90.46943397354335,-90.36425444995984,-90.32614808063954,-89.85007743211463,-89.27167445328087,-89.5634500416927,-90.56235837331042,-90.2026665341109,-90.18344618100673,-90.58507369365543,-90.59751258650795,-90.5493225120008,-91.12972827628255,-90.47930308803916,-91.33432545512915,-91.86736853606999,-92.09877257514745,-92.31071325205266,-91.90224440349266,-92.06936664506793,-93.01378563512117,-92.63295522285625,-92.05415258416906,-91.16754055023193,-91.89201579289511,-92.42085309140384,-92.41075969813392,-91.45460425363854,-90.86954900901765,-90.03742694994435,-90.13515073247254,-90.15150140179321,-90.35785365430638,-89.91416027257219,-90.45306250825524,-90.58758545992896,-91.02916350401938,-91.14844704139978,-90.56778247281909,-90.5684750135988,-89.6399912755005,-89.74532371992245,-89.39921903330833,-88.9239398445934,-88.58959006424993,-87.78668994270265,-87.47321686288342,-87.62253941595554,-86.70002411771566,-87.30763841001317,-87.05693608429283,-86.79768294654787,-86.77653158921748,-87.66597442096099,-88.08156884275377,-87.19058779487386,-86.19221259141341,-86.66233712807298,-86.86129681486636,-86.9516264628619,-86.66014047339559,-86.68720196327195,-86.23167394287884,-85.54626599792391,-86.4014987158589,-85.68060176540166,-86.4506029128097,-86.73127231746912,-86.40559298265725,-86.50347808888182,-87.25950583117083,-86.28157985862345,-85.48406244581565,-84.6845349734649,-83.73731909226626,-83.4482330144383,-82.88214671984315,-83.77009939262643,-83.45829331176355,-83.86388117726892,-82.90949445636943,-83.25752866640687,-84.08987198816612,-84.70359587715939,-85.00066570425406,-85.86052046949044,-85.73421942535788,-85.18641480011865,-84.58521035453305,-83.72188121080399,-83.03155675018206,-82.43120684614405,-82.59996029129252,-81.60964819788933,-80.69279940193519,-80.4962884974666,-79.50620324583724,-79.42154930718243,-80.39866775274277,-80.5736744669266,-80.53079838072881,-80.61188056413084,-81.26511762710288,-81.67672985419631,-82.46600647829473,-81.76593283377588,-82.62548563024029,-82.90042446227744,-83.65227511944249,-84.41042513912544,-84.21384669700637,-85.02796635078266,-85.12984423991293,-85.13465559342876,-84.15316384099424,-84.73263577092439,-85.12416977295652,-85.65323737449944,-84.93196120066568,-85.0372252096422,-85.41246584663168,-84.45851068012416,-85.16211562231183,-84.95589149976149,-85.50263803545386,-84.94690549233928,-85.78702161181718,-86.55288404598832,-86.24203466065228,-87.14666668744758,-88.04657892975956,-88.44237220240757,-87.87602778477594,-88.41099483845755,-89.00691489502788,-89.79691687319428,-89.24453747924417,-89.33042199583724,-89.02441587857902,-89.51017148047686,-89.11372621543705,-89.91786671988666,-88.93714933702722,-88.9700938127935,-88.5474687339738,-89.07357211690396,-89.46136130578816,-89.46233689738438,-89.29606796661392,-89.06475239060819,-89.51849431917071,-89.2814074200578,-89.0053400946781,-88.10643009888008,-87.14839518861845,-87.72825567424297,-87.66645813081414,-87.80627118237317,-87.59214504202828,-86.60044223815203,-86.28369764005765,-85.88275121431798,-85.3092259671539,-84.66950658708811,-84.9612318794243,-84.1437526945956,-84.22769876290113,-83.92012964608148,-83.06580462353304,-83.5065556303598,-82.82119479030371,-83.08863800251856,-83.2337120748125,-82.90417117020115,-83.40678568044677,-83.13047184096649,-83.0182692464441,-82.05626604147255,-81.63547494169325,-81.05180520704016,-80.68951226398349,-80.43592675216496,-79.73776541883126,-79.1220672740601,-79.61639819853008,-80.54203825863078,-80.07603450864553,-79.90691319061443,-79.2872020942159,-78.8879812816158,-78.45797917200252,-77.9671543049626,-78.56230191001669,-77.92933573154733,-77.5088671981357,-77.30074870120734,-76.60198854096234,-77.40991100482643,-77.45397158851847,-77.23013366665691,-76.62210087478161,-76.72094586584717,-77.07257091393694,-76.39838390378281,-75.53618775540963,-74.63233481766656,-75.57450862182304,-74.81982268439606,-75.02414105087519,-75.75509469443932,-75.91263382369652,-76.78594466438517,-76.7468652734533,-77.26968319294974,-77.32894878461957,-77.92157619912177,-77.25518346019089,-77.11363443685696,-76.26926824497059,-76.90363185666502,-77.4281383366324,-77.84022069070488,-78.21245201257989,-79.11945725977421,-78.28437385940924,-78.11731485975906,-77.92312855180353,-77.49736911989748,-77.47502140654251,-76.80634185532108,-76.76387604093179,-77.73120803991333,-78.44901561597362,-78.71503831446171,-77.92006781091914,-78.72055747313425,-79.05207749968395,-78.51707863528281,-79.11066804733127,-78.5218724780716,-78.2490699547343,-77.47493336768821,-78.07141461223364,-77.26280904561281,-77.66514574922621,-77.50379237858579,-78.38479215838015,-78.94334401749074,-78.76730285864323,-78.03022474702448,-77.86423391615972,-78.17572957323864,-77.18105139257386,-76.79251916054636,-75.86151895485818,-75.20798232965171,-75.67704514646903,-76.15555939404294,-75.49628102686256,-76.08068392751738,-76.03462215373293,-75.14230085536838,-75.21547592291608,-75.6761186835356,-75.6117403502576,-74.65226061362773,-75.39336711494252,-74.80978350667283,-75.2241563135758,-75.4683178649284,-75.32798626739532,-74.74141156673431,-74.09077239502221,-74.29445083579049,-75.16245744423941,-74.18315505655482,-74.96871957322583,-74.01233769347891,-74.2703161034733,-74.08232575235888,-74.35826033214107,-74.75624957680702,-75.54922899184749,-75.61437109392136,-75.432826875709,-74.61343439342454,-75.42408637329936,-74.54226640285924,-75.26654636440799,-75.61080013541505,-76.34739268571138,-75.49764743121341,-74.56527346698567,-75.44518764596432,-74.5867655784823,-74.06739329686388,-74.9475072240457,-74.65948208747432,-75.43055905681103,-74.80811649793759,-74.00494089117274,-74.6618008185178,-74.27972497139126,-74.82889739330858,-74.74051994783804,-74.0483205136843,-73.59868964506313,-74.13458098331466,-73.53297086106613,-74.25074679311365,-73.80017712526023,-73.82397137116641,-73.56001546932384,-73.96340084588155,-74.9379599513486,-75.63038325216621,-75.93199575738981,-74.96462893206626,-75.28769077872857,-76.22889787144959,-76.11506162304431,-75.54556992510334,-75.63288296526298,-75.79393526585773,-74.90410429798067,-74.82719826465473,-74.21770701836795,-74.46981113078073,-74.77030283398926,-74.94974852818996,-74.90102506615222,-74.51581004494801,-73.51815670263022,-73.43882145034149,-74.03430901607499,-74.49662879155949,-75.14295661263168,-75.64945752406493,-76.44309069914743,-76.73093932354823,-76.76832390669733,-76.86171510117128,-77.38708159793168,-78.03491883352399,-77.07374037010595,-76.69214233057573,-75.9528608834371,-75.06934744911268,-74.77763357851654,-75.52449830109254,-75.47541171964258,-74.57655141316354,-74.16940910974517,-74.6351661439985,-74.35743605392054,-74.29589245142415,-74.08498671324924,-74.0694121955894,-74.93934005871415,-75.67758666910231,-75.38628648268059,-74.80787494499236,-75.70287143159658,-74.95736667094752,-75.79739478416741,-75.98344073770568,-76.22852214798331,-76.96196343796328,-76.05887793144211,-75.6706860116683,-76.24542949674651,-75.72457432933152,-76.29466078709811,-75.44264445174485,-76.25158509984612,-75.91310761589557,-75.16657474962994,-74.46958654839545,-74.67302683927119,-75.58427247637883,-75.65092981280759,-76.63545239344239,-77.07002712227404,-76.89148771110922,-76.17350530484691,-76.23706866055727,-76.49282485526055,-76.47220898792148,-76.48911203769967,-77.05483229178935,-76.92537655727938,-76.14637551922351,-75.71356985159218,-76.68927979515865,-77.03102168999612,-76.51162442285568,-75.81646565906703,-75.75145516591147,-75.67376352008432,-75.89518985897303,-75.7700649406761,-76.61112114554271,-76.94179204944521,-76.84100021468475,-75.89139354135841,-75.83458678470924,-76.01274710008875,-76.13093158882111,-75.92367315571755,-76.32879898045212,-75.944071049802,-75.55267547303811,-76.30845613731071,-77.28738652449101,-77.50475982343778,-77.29307901486754,-78.25682712672278,-78.44736471166834,-78.47764215851203,-78.62277120118961,-77.76881295721978,-78.11298776138574,-79.00883040949702,-78.14016281953081,-77.40335976798087,-76.75183945894241,-76.14649401605129,-75.94416013685986,-76.24579516146332,-77.20586185716093,-77.8138383757323,-78.43213509349152,-78.53186599584296,-78.92181013105437,-78.36206380650401,-78.03708983771503,-77.89619643613696,-78.11085845064372,-78.03283770289272,-77.09225613623857,-77.85916696721688,-78.17825266905129,-78.7366756987758,-78.95205132942647,-79.74113873345777,-79.4367015673779,-79.50466756010428,-79.5100448387675,-79.36183797707781,-78.48978173499927,-78.82262387080118,-78.52084725676104,-78.00151350582018,-78.28737582592294,-77.41071997862309,-77.89375898521394,-77.9743888285011,-77.32291236938909,-77.80071788746864,-77.1560092503205,-77.38503876095638,-77.85137290041894,-77.36959214461967,-78.32105351379141,-78.25752685870975,-77.97749598696828,-77.67107362253591,-77.12650778377429,-77.09840716375038,-76.31379707343876,-76.69151827367023,-76.72973941313103,-77.55489638075233,-76.8410816360265,-77.77515803510323,-77.98741688579321,-77.1855544182472,-77.48770780768245,-77.09382155910134,-77.43476338172331,-77.63273166678846,-78.13520494941622,-78.12102290103212,-79.01621470600367,-78.13783651357517,-78.0954091930762,-78.30031026666984,-79.16628347663209,-79.64113231142983,-79.89894185401499,-79.42427136329934,-79.41370595572516,-78.56730513973162,-77.66067793266848,-78.43814005563036,-79.43492396082729,-79.57514999760315,-78.64569830195978,-77.71265183202922,-77.4600238930434,-77.26356110256165,-77.01058457745239,-76.46131748054177,-76.99682019464672,-77.66317108273506,-78.60467979451641,-78.71663402812555,-78.08124647242948,-77.41388339316472,-77.35770664410666,-77.63237697957084,-77.96766416961327,-77.84048069408163,-77.09583069616929,-77.19491052115336,-77.72396775148809,-78.63495089719072,-78.01813739258796,-77.91078730439767,-77.80715092085302,-77.42925694864243,-77.81095935450867,-77.40294897230342,-76.48599687125534,-77.43678084062412,-78.40116831334308,-79.02698128623888,-79.08522491855547,-78.40455767186359,-79.2869747467339,-79.99198343465105,-80.66687728418037,-81.2191560678184,-81.41218216810375,-81.19434565166011,-81.63716426491737,-81.5561305214651,-81.71943967184052,-82.06707351189107,-81.52986137615517,-81.44323488557711,-81.92152269091457,-82.53254463803023,-82.40249851485714,-81.76650556130335,-81.33463194360957,-81.88006372191012,-81.31276995083317,-82.08926260424778,-82.12578746024519,-81.44911760697141,-82.36835200851783,-81.4653307129629,-81.06025986000896,-81.2581284660846,-81.40466320328414,-81.38873364916071,-81.30126266321167,-81.21922057960182,-80.25885162875056,-79.90467076655477,-79.82516033668071,-79.89268020354211,-80.65165906306356,-80.14038755279034,-79.36140438867733,-79.45517120044678,-78.61637436645105,-79.0724565377459,-78.27969218976796,-78.26130453730002,-78.25558723835275,-78.61743751680478,-78.38324916129932,-77.67986090295017,-76.7966323629953,-76.99021240277216,-76.04351454693824,-76.04808354564011,-75.91732567874715,-75.5347646069713,-75.61418432416394,-75.25474678678438,-74.73877792619169,-74.20872084284201,-75.13742193114012,-74.5632151872851,-75.01666943589225,-75.76529912790284,-76.44103284785524,-77.34513449762017,-76.65672625601292,-76.7024527718313,-76.02705948986113,-76.03805741900578,-76.34408003184944,-75.820128493011,-74.95720691699535,-74.76840157713741,-74.09485739516094,-73.63846298865974,-72.66683945478871,-71.93559126276523,-71.32241883547977,-70.80213453713804,-70.17869510408491,-70.18659890536219,-69.51691761286929,-70.18532656366006,-70.02925261296332,-69.14700339362025,-68.29895417718217,-67.68469894258305,-67.7346047051251,-67.51953217526898,-67.78603385901079,-67.09531902568415,-67.66933996463194,-68.0700981169939,-68.63109158491716,-67.9445472820662,-68.34234443306923,-69.31893114000559,-69.66179299820215,-68.98112685233355,-68.66560783516616,-69.19604583736509,-69.51965189818293,-69.89932914404199,-69.14847823511809,-68.65399782871827,-67.91833459818736,-67.67569594318047,-67.78530794242397,-67.6090151858516,-68.51345508825034,-69.14098542369902,-68.60880508739501,-67.9547791047953,-67.40281272726133,-67.73438362358138,-67.67171840788797,-67.78253188123927,-68.53135916916654,-67.76430594781414,-68.12771456455812,-67.51029123272747,-67.37018018541858,-67.85072565590963,-68.44321816787124,-67.68118042033166,-68.02886153711006,-68.05869281338528,-67.4056460056454,-67.57189933676273,-68.44546300917864,-69.18328945990652,-68.64170075021684,-68.60955743305385,-68.34856826858595,-67.98140564700589,-67.09206651290879,-66.54098348505795,-67.52200982440263,-68.01225692639127,-68.06762110255659,-67.14129938092083,-67.87128484295681,-67.17058554990217,-67.25345153128728,-66.94280675193295,-65.99074331019074,-66.50317268772051,-65.72993747936562,-65.57796501973644,-64.59602482430637,-65.42231112159789,-66.4154508872889,-67.18682801909745,-66.31329417368397,-67.13541372539476,-67.02157226530835,-66.12798889167607,-66.44727543601766,-66.08815317647532,-65.81289907358587,-66.51377170253545,-66.22917442349717,-65.27916539739817,-64.91037595365196,-65.21816629450768,-66.18508871877566,-66.23093883460388,-66.42455455753952,-67.32937475293875,-67.88112442335114,-66.90558114880696,-67.26385454181582,-68.01807787222788,-67.68423066474497,-66.9890231299214,-67.89397760527208,-67.8232533717528,-67.89370648609474,-67.49665014119819,-67.16112194303423,-66.16368606453761,-67.05163306975737,-67.83915114309639,-66.94115281989798,-67.12008135486394,-68.08177019376308,-68.93844648497179,-69.10555405728519,-69.99638580949977,-69.57624507835135,-69.33381330780685,-69.72829273017123,-70.44387587392703,-69.65153464814648,-68.79975268244743,-68.87049952335656,-68.5669805710204,-67.97937940200791,-67.55852206842974,-66.73269405588508,-66.83516346057877,-66.89297126000747,-67.79702747100964,-67.85265721427277,-68.40898396773264,-68.1914858543314,-68.59878454636782,-67.92442673770711,-68.26640832750127,-68.1503163301386,-67.64822577498853,-68.37545491335914,-68.59787278529257,-68.79038852546364,-69.24013869278133,-69.15837858524173,-68.57577222306281,-68.75664623081684,-67.80588022107258,-68.08012314327061,-67.27315540565178,-67.01019410975277,-67.09185413084924,-66.8628433663398,-66.00540616363287,-65.15099770808592,-65.9513269183226,-65.19701833231375,-64.85481471614912,-63.875783388037235,-63.91339665045962,-64.78873974038288,-64.1966703045182,-64.0494838678278,-64.91349946893752,-64.2578838490881,-64.90779393864796,-64.19134213076904,-64.8378360546194,-64.07688518706709,-64.76794396201149,-65.17374800425023,-64.2796633169055,-64.55689614219591,-64.6833165762946,-64.8479408021085,-63.854276042897254,-63.7403453681618,-63.628461288288236,-62.917310080025345,-63.6761386860162,-64.36501205107197,-64.10333445155993,-64.61404569307342,-64.95434359600767,-65.71687046810985,-65.04132014885545,-65.49271732568741,-65.4558545621112,-66.4322491842322,-66.17270165588707,-65.98244828591123,-65.94128006696701,-65.6197689017281,-66.348095738329,-65.66431095544249,-65.7553284377791,-66.01100851641968,-65.77232568664476,-66.06333785085008,-65.25653808470815,-66.25646496191621,-66.14802865497768,-66.16645971592516,-66.01847900310531,-65.64086539391428,-66.54034469975159,-66.56952932151034,-67.29742877976969,-66.93267930997536,-66.86243279464543,-67.50601869169623,-67.63060477236286,-66.98142562387511,-66.44845387013629,-66.8899204726331,-66.6616148208268,-66.4372816788964,-65.96192489890382,-65.19551611319184,-65.84788587735966,-66.31184668187052,-66.6284419852309,-66.97966589778662,-67.84273777343333,-68.48976308526471,-69.38231396349147,-69.11203633015975,-68.553436932154,-69.50236744061112,-70.0956271821633,-69.59633718850091,-69.26281747315079,-69.80647234199569,-69.56039613392204,-69.87406927580014,-70.03820643853396,-69.72526618978009,-70.2648374135606,-71.15239097364247,-71.65927196433768,-71.94488558359444,-71.02292387979105,-70.15256593655795,-69.86426153313369,-70.50694910204038,-69.69222950283438,-70.45248687639832,-71.25708029279485,-72.21130215888843,-72.82670264178887,-71.85865562409163,-71.81897676549852,-71.85191117646173,-71.25652029505,-71.74852961394936,-71.6390126296319,-72.19171553105116,-71.438287188299,-70.85302306897938,-70.39699212880805,-71.08962202817202,-71.09387833811343,-70.78988872934133,-69.96006807032973,-69.76627078885213,-70.36155529785901,-69.49551092088223,-69.17161411326379,-69.23275605496019,-68.59043758595362,-69.16117597417906,-69.854949968867,-70.32568926969543,-71.29392733378336,-70.38646568125114,-70.49427483743057,-71.02039335202426,-71.52423140406609,-71.6847125813365,-70.72759858844802,-70.07128951326013,-70.90066361241043,-70.03173353848979,-70.86003318242729,-71.70045332610607,-71.44721814012155,-71.88556066714227,-72.34005005378276,-73.31927322782576,-72.41627904772758,-73.18302717618644,-72.82832592539489,-72.71953102061525,-72.12657523481175,-71.43989385524765,-71.6221087211743,-72.45889403065667,-72.19086465146393,-72.25264784088358,-71.26308483723551,-71.01617088122293,-70.25845678010955,-71.22708865767345,-70.43747656419873,-70.94017815077677,-71.02923662727699,-70.7417459380813,-71.2163698184304,-71.08214719826356,-71.93062961706892,-71.40319619933143,-72.01142315519974,-71.40725472010672,-71.82710376847535,-71.20780903473496,-71.8028082284145,-71.60385662782937,-71.73112401692197,-71.18834908632562,-70.59160256385803,-70.54237898439169,-71.41274478286505,-71.43431158643216,-71.82485643355176,-72.50395768648013,-72.59631404373795,-73.23732677008957,-72.7765381205827,-73.2558506350033,-72.70803415728733,-73.6468961071223,-74.28288109134883,-74.39148256229237,-74.02941335877404,-73.98021746892482,-74.01222348865122,-73.04153314512223,-74.03216828778386,-74.40185208665207,-75.3308798330836,-75.6032674331218,-75.64111848454922,-75.76000471413136,-75.342352272477,-75.99040854768828,-76.3019655579701,-75.71089986804873,-75.9173483569175,-76.81569293234497,-77.03917387221009,-77.48414670303464,-78.33313594898209,-79.24187468132004,-79.6709058075212,-79.2285241233185,-79.50360512034968,-79.35037737013772,-79.95718163531274,-80.22032117564231,-80.32493144925684,-79.76635457202792,-79.21886512357742,-79.26172441197559,-78.98295843461528,-78.63672520965338,-79.18372966255993,-79.76809933735058,-79.37369685294107,-79.30715799704194,-78.65586326736957,-79.10288272704929,-78.58607667824253,-79.37139640143141,-79.91063886741176,-79.03393605630845,-79.91340558417141,-79.04018986644223,-78.72803948447108,-78.35924530448392,-79.05902330530807,-78.91337310615927,-78.67609513550997,-79.3412726088427,-79.71512802690268,-79.55795584479347,-80.28250775393099,-80.71174289099872,-80.72930617816746,-80.66174021363258,-81.26849176408723,-80.79185253940523,-80.57342163519934,-80.6081993454136,-81.31461036670953,-81.2583182877861,-80.47630124539137,-80.12430602079257,-79.9092542338185,-80.72558392118663,-80.2085976707749,-79.78732353262603,-79.22498817602172,-79.27490796661004,-78.5320832892321,-78.08148746425286,-78.93666132539511,-79.05433548847213,-79.99619355751202,-79.08420284837484,-79.94863400887698,-79.40394444251433,-79.80388695932925,-80.01737265801057,-79.58731449162588,-79.41596944024786,-78.46871814597398,-78.52137807291001,-78.7861700039357,-78.65831035701558,-78.682799723465,-79.19954766752198,-78.76825418742374,-79.39642204530537,-79.86706735566258,-79.08620269969106,-78.99298904137686,-79.39395822724327,-78.54600419197232,-77.9633347443305,-78.51418227376416,-78.52368501806632,-78.62581865815446,-79.0425512646325,-79.67250100104138,-79.4107044278644,-79.40442172344774,-79.59884329792112,-79.07322460226715,-78.2119497586973,-78.95414331834763,-78.40350326616317,-78.21091529168189,-78.30052217235789,-77.41642417572439,-77.88754531601444,-76.99681826448068,-76.53857667231932,-76.62543871998787,-75.94823196716607,-75.36691492050886,-76.25335180293769,-76.33800675300881,-75.7764149014838,-75.70067876204848,-76.66522413305938,-76.06521292449906,-75.5527303502895,-76.02817639475688,-76.35205264156684,-76.55593631835654,-77.37849940918386,-78.25164237199351,-78.62873674044386,-78.74169325456023,-77.74429178703576,-76.9782211179845,-75.99011902883649,-76.23684433335438,-76.51334474235773,-75.75451116962358,-75.57111320644617,-75.79187581129372,-76.69249588716775,-76.1208541453816,-75.79711598902941,-75.24787263851613,-75.87699031317607,-76.79551875777543,-76.16869829362258,-76.2503024386242,-77.03871686058119,-76.69001543940976,-77.10652711056173,-76.83294945396483,-76.83574469294399,-76.53547703381628,-76.64497461495921,-76.23480039881542,-76.38504265109077,-76.49608041066676,-75.95008397847414,-75.77163123711944,-75.3593076877296,-75.75598838413134,-75.38985505793244,-75.4889816371724,-76.34300707094371,-75.99319213721901,-75.85573666822165,-76.2504589324817,-75.88329650787637,-76.76664713211358,-76.73928840551525,-76.33774669282138,-75.44227061420679,-75.53090141015127,-75.898029983975,-75.23819010239094,-75.53794873226434,-74.56590199936181,-74.18815804505721,-73.43639108818024,-73.16779360361397,-72.94058702746406,-72.20462804520503,-72.60692540556192,-71.62126737087965,-71.03601676225662,-71.97114682896063,-71.42625857004896,-70.4441456347704,-69.55835042381659,-69.05443722987548,-68.11127061862499,-67.6189802037552,-67.27186749409884,-67.38298557745293,-67.08250125776976,-67.00052053667605,-66.65623285388574,-67.28466068068519,-66.4024059525691,-66.64116137754172,-66.32236526207998,-67.20404043095186,-67.14776906138286,-68.01946051232517,-67.6474810433574,-67.67169392900541,-67.44540816312656,-68.42096068384126,-67.54133343929425,-68.44103802274913,-68.03042125981301,-67.93812400335446,-67.15198415564373,-67.5900201620534,-67.81697221519426,-68.44516656501219,-67.99706527311355,-68.58010335406289,-68.51877851691097,-68.41226961417124,-67.82909550052136,-67.63691823510453,-66.768394196406,-66.79298883955926,-66.4827701849863,-66.09480034420267,-66.72748661739752,-67.27966344822198,-67.05067315185443,-67.91745924623683,-67.2773529291153,-67.96728689456359,-68.2784329210408,-68.02669559186324,-68.66164348088205,-68.1788674807176,-68.74536375934258,-68.63959106383845,-68.32994539709762,-68.51472797617316,-67.93355015292764,-68.62775866314769,-67.6312571587041,-68.12040634220466,-69.0140051827766,-69.11799211474136,-69.37872365862131,-70.23586976248771,-69.9403897030279,-70.3192502623424,-69.58566996827722,-70.22220846498385,-70.55084714572877,-70.61662544403225,-69.9522804338485,-70.11271761357784,-69.97735968697816,-69.17827527690679,-68.66314747091383,-68.50134844426066,-67.55786493886262,-68.32357775885612,-68.38384756306186,-68.91698504937813,-68.16839483100921,-67.21056272182614,-66.73569368617609,-66.8726831516251,-66.79364380287006,-67.51359976129606,-67.94364801282063,-68.29391973093152,-69.05868146754801,-68.68721537757665,-67.76578563684598,-68.55639069480821,-67.72485944395885,-67.37535540992394,-67.74410285847262,-67.7967157997191,-67.29097825475037,-66.98646573117003,-67.80091486033052,-68.03178904158995,-68.53066554479301,-69.38981966348365,-68.90878592757508,-69.1859853877686,-69.81053705886006,-68.85485171992332,-68.57445169286802,-68.6288226195611,-68.45211294107139,-67.54950204491615,-67.93638673983514,-68.19014655426145,-69.12999310763553,-68.76475647371262,-68.55979899177328,-69.2883467124775,-69.67941365810111,-68.74955508671701,-68.41714643547311,-68.87599414167926,-69.44961612485349,-69.94182308996096,-70.92359934514388,-71.35596040496603,-71.53441091813147,-71.85829164972529,-71.8216951796785,-71.4859775332734,-70.70666529750451,-71.07157209003344,-70.40896363835782,-70.70005972962826,-70.59805964957923,-70.03842350980267,-70.53650024766102,-71.19150587916374,-72.09965355042368,-71.95359522569925,-72.56691420730203,-72.10154799418524,-72.46620000246912,-72.80869867745787,-72.73884504195303,-72.58889526687562,-72.28135900385678,-72.4755445253104,-73.14207425434142,-73.41381828254089,-73.41444575088099,-73.00422026542947,-72.09488570643589,-71.61490871291608,-70.8539959024638,-71.37375451205298,-70.60505869612098,-71.2636149302125,-71.20567836472765,-71.20033103972673,-70.2043766612187,-69.27833123970777,-69.5403181440197,-69.48107745824382,-69.54309159750119,-70.0522486991249,-69.95552230253816,-69.10305123543367,-68.41396385757253,-68.82673977781087,-69.68012882815674,-70.19813249167055,-70.54168942477554,-69.97070849873126,-69.30137743568048,-68.7834500274621,-69.06210401793942,-69.49624323751777,-69.89817224349827,-70.16691129514948,-70.68966476432979,-71.55802146811038,-71.42175830574706,-70.52768668765202,-70.2616653572768,-71.0352492579259,-71.23583867726848,-71.44257660582662,-70.51982247736305,-71.41416300740093,-71.54342689458281,-71.18711605807766,-71.42218076810241,-70.83151415269822,-70.57411290938035,-70.83740129508078,-70.4996159938164,-69.61556478915736,-70.00736588006839,-69.02704754145816,-68.53917553974316,-69.21247134357691,-69.79851021803916,-69.34521576017141,-68.83680531056598,-69.1796623012051,-69.09785238048062,-68.66616127034649,-68.87787569127977,-69.11036349646747,-69.47830302501097,-68.98805448925123,-69.46259315218776,-70.23373930715024,-70.86838380433619,-71.70744989812374,-72.62597592640668,-71.77132632303983,-72.45289935264736,-72.15384116675705,-72.9212582334876,-73.63899962045252,-74.6359996451065,-74.2866263226606,-73.63239026302472,-73.55417243251577,-73.90559672703966,-74.88547159265727,-75.42339366627857,-76.26748250843957,-76.34790226304904,-76.34081841586158,-76.50257985200733,-76.47311357781291,-76.11839955160394,-75.30429922183976,-74.36486066877842,-75.12395216617733,-74.62264779768884,-74.43002271465957,-73.96077728178352,-74.6528282831423,-74.11172623187304,-75.0684098508209,-74.73643806390464,-74.60640839766711,-75.48444356257096,-74.6356873512268,-75.32724656537175,-76.29975473927334,-75.92272616829723,-75.00124511960894,-75.94894207967445,-75.51308571966365,-75.84123031329364,-76.42770625697449,-76.62709040660411,-76.60747144278139,-77.06090892245993,-76.5520187355578,-77.16545432107523,-76.32598032290116,-76.17095272941515,-75.78727692877874,-76.48730234755203,-76.324567749165,-75.95320197101682,-75.303756297566,-75.25382572226226,-75.55578281031922,-76.2903232560493,-77.00540796248242,-76.28302156273276,-75.77595566213131,-75.34041425818577,-75.05173311149701,-75.98977169021964,-76.37267356179655,-76.8405159311369,-76.49006863310933,-76.0870897793211,-76.9423149926588,-77.53064601588994,-77.10823075147346,-77.2898235656321,-78.27533731143922,-79.2317526312545,-78.61667927261442,-79.36089492635801,-79.39083126513287,-79.22299676667899,-78.80562900798395,-79.24853881308809,-79.32001110026613,-78.484895800706,-78.78355803899467,-79.54013482527807,-79.79285852517933,-79.75893756747246,-79.24557082820684,-79.47505314555019,-79.54288337565958,-79.88280054554343,-80.03782697254792,-81.02334002871066,-80.8217264758423,-81.68434011982754,-82.58500100718811,-82.21596285747364,-83.05441083526239,-82.33612385904416,-82.24392570462078,-82.86676768725738,-82.83835830446333,-82.84064214676619,-83.37893570493907,-83.32641922496259,-82.49962996132672,-82.4063855651766,-82.12446369277313,-82.29153253743425,-83.26434854138643,-83.75998108973727,-82.94454980781302,-83.67951457109302,-82.81146388407797,-82.68562594940886,-82.11918055685237,-81.1423075105995,-81.68438712647185,-81.8169323769398,-81.4281689543277,-82.20365257933736,-81.50266633927822,-81.78469075681642,-82.28661741269752,-82.54582139337435,-83.39198340615258,-83.74054100643843,-82.98988086450845,-82.1792153515853,-82.46640812512487,-82.4142261678353,-81.91951989708468,-81.99600103218108,-81.21017101919279,-81.26125029008836,-80.40237964689732,-80.00391798792407,-80.84066566685215,-81.2402631896548,-81.6211398052983,-81.98317533545196,-82.49917357042432,-82.40610738424584,-82.18293826049194,-83.07008479302749,-82.84997607627884,-82.17203480238095,-82.01299433689564,-82.27628820436075,-82.95041325269267,-82.7891674512066,-83.11531648598611,-82.95235529309139,-83.51974061969668,-84.03656884888187,-83.56418493902311,-83.95935651659966,-83.3775871573016,-82.70670505519956,-81.83791514020413,-82.53584872093052,-83.2570218979381,-83.56260126968846,-82.58729907637462,-82.60476019373164,-82.64565088506788,-82.29353754688054,-82.49896827386692,-82.84034651331604,-83.59729365259409,-83.63208555942401,-83.78439198527485,-83.167904606089,-83.76213919417933,-84.01954017905518,-83.59039718657732,-83.75275289500132,-82.86037312494591,-82.53943783370778,-82.05871217465028,-81.57531044725329,-81.78017906378955,-80.94095204910263,-81.44204578036442,-81.38569654664025,-80.95798776019365,-80.2101326440461,-80.59695664560422,-81.57169848913327,-81.8922336306423,-81.06115620350465,-81.57394190179184,-80.58434747904539,-81.28105760877952,-80.38163039367646,-80.93039566138759,-80.22542847367004,-79.33412134787068,-78.64723960170522,-77.79357222747058,-77.42572300694883,-77.77029533451423,-77.82770889950916,-78.6033586137928,-79.1535334084183,-79.24180959491059,-78.72684359084815,-78.93101775506511,-78.28446996724233,-79.08752719080076,-79.21659677522257,-79.8770854449831,-80.29765251837671,-79.74191522179171,-80.06058263266459,-80.83400441613048,-79.9868023195304,-80.4450205876492,-80.63072347315028,-81.29275468597189,-80.97014139825478,-81.65910164173692,-82.22410589642823,-83.08269934915006,-83.41595427505672,-83.20792994974181,-83.46143092075363,-84.40467295097187,-84.64580109668896,-84.72106662718579,-84.04343564528972,-84.68911283602938,-84.81367244524881,-84.36368098668754,-83.82514140196145,-84.39574811747298,-83.79463145369664,-83.63940766174346,-83.20318657252938,-82.52925343252718,-82.81335308915004,-82.82534878747538,-83.07507332926616,-82.09055212978274,-81.22121711773798,-80.79789638565853,-79.92769641848281,-78.93056339677423,-77.96157987229526,-78.92908002343029,-79.50912676658481,-79.62703864276409,-79.22854059515521,-79.08544266084209,-78.71595510654151,-77.89159254310653,-78.14812265196815,-78.15519595518708,-77.94589299149811,-78.0788186499849,-77.64546773862094,-78.0506443651393,-78.40099678374827,-77.89072896074504,-78.0089172879234,-77.13773880014196,-77.35645340429619,-77.25766882998869,-76.59757322631776,-76.8357793353498,-77.56973107205704,-77.61646631546319,-77.05902961501852,-77.63552999123931,-77.06392610678449,-77.12823026208207,-76.70238588843495,-76.22436015168205,-75.5418508448638,-75.28602583007887,-74.46883977483958,-75.44377036066726,-76.04068070556968,-75.8628045883961,-74.90323612093925,-74.83135264692828,-74.5828318502754,-74.38985498808324,-75.07372116530314,-75.18764990614727,-75.95517778489739,-76.33856827951968,-76.39837264362723,-75.74243232421577,-75.35719412844628,-76.07436634739861,-75.20999370608479,-75.40433833003044,-76.29788495972753,-75.61349249305204,-75.82474093325436,-75.32520492468029,-75.12523981975392,-74.67396590905264,-74.407422486227,-74.49923000624403,-74.28372103814036,-74.28527865651995,-74.07372482633218,-73.90862874081358,-74.01711569726467,-74.70998620195314,-73.88140018330887,-73.54866764694452,-73.38219667924568,-73.54080866603181,-74.4463454768993,-73.56548455310985,-73.21259106881917,-73.66685899952427,-73.61850751051679,-74.29822173481807,-75.10452134814113,-75.17159075336531,-75.6368120345287,-75.2384634334594,-75.26668451633304,-76.25302800675854,-77.12686779815704,-77.08332963986322,-77.3294560755603,-76.8601101427339,-77.27879230119288,-76.36659312341362,-77.12842268496752,-76.78036621585488,-77.76577421044931,-78.40841240715235,-78.6853758385405,-79.05890571512282,-78.98645369149745,-79.36103270575404,-78.73315821774304,-79.0207838495262,-79.24665436754003,-78.99839228158817,-78.42855740711093,-78.31708291824907,-77.87731667468324,-78.3419771748595,-78.27621478354558,-78.77366539975628,-79.25271164951846,-78.27610794408247,-78.9541512625292,-78.88955423561856,-79.30644706217572,-80.22953606164083,-80.43577664671466,-81.15367487538606,-81.42114377999678,-80.63908173143864,-80.10342875681818,-79.1754344352521,-79.2812329409644,-79.9958791397512,-79.70944640785456,-79.28067377349362,-79.86766131781042,-80.38301932252944,-79.4595943139866,-78.55119893560186,-79.31653386121616,-78.79771476332098,-79.20810821512714,-79.41064531542361,-78.599014735315,-79.40960752544925,-80.12203875882551,-80.4959291270934,-80.50720372796059,-79.80915293702856,-79.6867714850232,-78.95899614784867,-78.73080831347033,-79.71388636250049,-79.02098501846194,-79.27626670897007,-80.0310523500666,-79.78096238896251,-78.8224936244078,-79.01868636114523,-79.51050276029855,-78.9921324942261,-79.4232673398219,-78.630709704943,-78.61091054650024,-78.2644618395716,-79.081179773435,-78.5417525107041,-78.24474661704153,-78.66181517625228,-77.91131049906835,-78.59724665805697,-79.51774068688974,-79.28093615127727,-80.12434549955651,-81.02870913036168,-80.53235132666305,-79.58087494084612,-79.18615899514407,-78.56442275596783,-79.05176876159385,-79.95182718709111,-80.61416028719395,-80.56932986853644,-80.53214720916003,-81.12032145401463,-81.15273783821613,-80.47430705791339,-81.11666295444593,-81.76216198364273,-80.80987201724201,-80.26580206677318,-81.2247975980863,-81.29635356692597,-80.68085408955812,-80.69191331183538,-80.35701625794172,-80.5739913797006,-81.51400374667719,-82.37370666535571,-81.8284212499857,-82.351993157994,-82.37460613017902,-82.3046875144355,-81.45872041443363,-81.2791565451771,-80.76805477077141,-80.62962228804827,-80.29896561428905,-80.32635779958218,-81.30952236847952,-80.48561251023784,-80.24502020142972,-80.16874399827793,-79.93202493991703,-79.73191219661385,-78.91908841533586,-78.44819598598406,-77.55106275482103,-78.43098480859771,-78.09526803111658,-77.81115946592763,-77.9346661567688,-77.27202595211565,-77.31428887555376,-77.06134649552405,-77.74931259732693,-78.50137016968802,-79.4675243482925,-80.03491815458983,-79.15013730479404,-79.57440512115136,-80.09599783224985,-80.6262911176309,-80.1880085002631,-80.4368242546916,-81.13695636251941,-81.51869431650266,-82.3803127007559,-82.24224728345871,-83.11440399382263,-83.05752299679443,-83.08424731716514,-83.96747444802895,-83.73342832084745,-83.56457518599927,-83.56652968376875,-84.56134343100712,-83.70204076496884,-82.9998036250472,-82.175866083242,-82.53933228971437,-83.31986051984131,-84.00432051997632,-83.57558526378125,-83.33015037421137,-84.11258999584243,-83.33191586798057,-82.37369634956121,-81.43591851554811,-81.99052322190255,-82.02171714464203,-81.02217629598454,-80.33884735032916,-81.22129323519766,-80.66561302961782,-80.24992042733356,-80.34129400551319,-80.39264418603852,-80.38063802802935,-80.52265426469967,-80.45637562777847,-80.98508874513209,-80.9810374439694,-80.31454389868304,-80.58811167487875,-79.83305311901495,-80.68087862664834,-81.61494075972587,-82.31458711437881,-81.57060079462826,-82.26541755301878,-82.81435001688078,-82.83702273946255,-82.3921929160133,-82.42006626632065,-81.73147308081388,-82.64519001590088,-81.99468026636168,-81.23194020893425,-81.55161865940318,-81.1589540252462,-81.53348152060062,-82.09855739539489,-81.50534446816891,-81.08065573591739,-81.75861915573478,-82.09345211600885,-82.76520456420258,-83.3775072209537,-82.43564245663583,-81.57619872037321,-82.22535917721689,-81.23881236184388,-81.33738980768248,-82.3044053921476,-82.68830261332914,-82.04761106334627,-82.61997675523162,-81.98163628485054,-82.34962022164837,-82.22423946205527,-83.20531110139564,-83.11325492011383,-83.29831589479,-82.90025066630915,-82.7545432667248,-82.86416390538216,-82.87404424045235,-81.96428102254868,-81.11753655411303,-81.54152245121077,-82.06737115606666,-81.63128935545683,-80.71586065972224,-80.40148821333423,-79.65600109472871,-79.5081199631095,-80.3910280871205,-79.74624245613813,-79.73345960490406,-79.97461342206225,-79.50943149626255,-79.85094278072938,-80.45095748594031,-81.00404041958973,-80.13121235417202,-79.56939405761659,-79.43236669385806,-78.56469414429739,-77.86010221298784,-77.19670795788988,-77.83099974831566,-78.76147310901433,-79.00873865978792,-78.9805807438679,-78.5792388767004,-79.25887393020093,-79.76815638737753,-80.66296146344393,-81.47224935842678,-82.01268328772858,-81.38554023811594,-80.83353934809566,-81.45362728089094,-80.84608437726274,-81.40128730470315,-82.05742107983679,-81.74881754163653,-80.82465602224693,-80.40371799562126,-79.4313384173438,-78.82738864887506,-78.27481139916927,-78.92815873771906,-78.04807946458459,-77.35675493162125,-77.6584627488628,-78.0714507792145,-77.27613787446171,-77.66999896988273,-77.39819322153926,-77.84707370167598,-78.57168701430783,-78.20317054213956,-77.61828700220212,-78.60052064433694,-79.22682741004974,-79.11827198928222,-79.1787338545546,-78.56165278563276,-78.51703014690429,-78.485869939439,-78.65333139104769,-79.54606810351834,-78.59718808112666,-77.97083353204653,-78.87177158659324,-79.82138381665573,-80.67257800139487,-80.19428518554196,-79.78313539503142,-79.94547141576186,-80.53736148076132,-79.93267893558368,-79.28934839786962,-78.9276848663576,-79.62178192380816,-79.2732212971896,-79.30658695613965,-78.88276629522443,-78.3172936742194,-78.23082995042205,-77.25569318933412,-77.85385690163821,-77.93171258131042,-78.11655298667029,-77.53882282041013,-77.0295852967538,-77.18994728196412,-76.77775480831042,-75.93576108617708,-74.93727844953537,-74.16479247948155,-74.13817807659507,-74.85080605046824,-74.40644426783547,-75.36057672230527,-74.8432744317688,-74.66436159610748,-75.34314536536112,-75.17217682208866,-74.98867079941556,-75.74558759806678,-76.5176686802879,-76.68855113349855,-77.62308857776225,-78.52386344969273,-78.29854383831844,-77.43423172691837,-76.44936356879771,-77.12559124268591,-76.14776919642463,-75.74659555591643,-75.76739892642945,-76.50598172517493,-77.01408643554896,-76.06685384595767,-77.0496347961016,-76.60169326420873,-76.5848902631551,-75.78273242153227,-76.05292868427932,-76.90317853912711,-77.37110751820728,-78.3577591390349,-78.33950643846765,-78.08580906875432,-77.23929151147604,-76.61981091788039,-76.12545399507508,-76.66454560868442,-77.41946446662769,-78.0334992306307,-78.90789601905271,-79.15413579484448,-78.8211066252552,-79.10036937193945,-78.20335413469002,-78.9113052431494,-78.18530553765595,-77.38462929194793,-78.38299246923998,-78.17114495439455,-78.95361895905808,-79.89673629030585,-80.35995466867462,-80.38873589318246,-79.96069516800344,-79.02585164736956,-78.31897108955309,-78.51745252450928,-79.01392978616059,-78.34263055305928,-79.20166774978861,-78.78672889107838,-78.79750999249518,-77.90069422591478,-77.90527926525101,-77.06778313172981,-76.45416925707832,-77.4236344108358,-76.4706611330621,-75.70910318335518,-76.54936580685899,-76.0342956976965,-76.12018089788035,-76.51932833902538,-76.05554383061826,-75.9083446757868,-76.00488022295758,-75.70877946680412,-76.31436682119966,-75.38773530069739,-75.44030865421519,-75.73864821298048,-75.15128844277933,-75.39744524937123,-76.28734817914665,-75.61179842008278,-75.85153036285192,-76.66659867903218,-77.18392068240792,-76.56392444344237,-75.5933665917255,-74.91453909268603,-74.39808219391853,-74.39528916589916,-73.39587045274675,-73.58490276895463,-73.98139490606263,-73.30040857428685,-73.81113295722753,-73.82626948039979,-73.85558320721611,-73.97498655039817,-73.20854408666492,-74.15586338890716,-74.55922868102789,-75.43148478958756,-75.02866069925949,-74.60317039908841,-75.29244820959866,-74.31903197616339,-73.73210662603378,-73.42226714966819,-73.67460513394326,-73.10962332505733,-73.64503621216863,-74.12487634271383,-73.27440404053777,-73.9311738316901,-74.15956642618403,-73.56406471971422,-73.28726818272844,-72.92026949906722,-73.60991839785129,-72.9292520917952,-72.72682863567024,-72.18718404555693,-71.68276458559558,-72.17903456743807,-72.83162927767262,-73.65825082268566,-72.73433317104355,-72.38852426735684,-73.25280113471672,-73.77756092138588,-74.45253776060417,-74.89933651639149,-75.42931189248338,-75.28710688045248,-74.75634245667607,-75.47980007855222,-76.46031673252583,-75.90918333549052,-75.58126879809424,-75.4076884179376,-75.62125003617257,-76.21408384479582,-76.33954167272896,-75.5804091822356,-75.3629558691755,-74.37991906749085,-73.91664417367429,-73.37562460079789,-72.6106113283895,-73.27816377580166,-73.30395053839311,-72.76424431614578,-72.30599152250215,-72.2268732120283,-72.66520488355309,-71.69801590638235,-71.59781639231369,-72.2020716900006,-72.15712695010006,-73.10613947920501,-72.28404357749969,-71.4651103853248,-71.58113476866856,-71.93708282476291,-71.05690534319729,-71.91405584057793,-71.7319340230897,-71.02424965659156,-71.40413966402411,-71.31654881034046,-71.93200416909531,-72.55186437629163,-72.44913646997884,-71.68150333408266,-71.23342452058569,-71.25684828218073,-71.4100745394826,-70.8323430903256,-70.47246477613226,-69.84858542960137,-70.74885336076841,-71.18567108130082,-70.72208165517077,-69.76559209357947,-69.38566187024117,-69.79189961450174,-69.37486661365256,-69.56079988880083,-69.15064297569916,-69.52938039088622,-70.13651110231876,-69.17422833619639,-68.5404053684324,-69.19906193483621,-68.95250057568774,-69.05851179687306,-68.24851268855855,-67.74194515589625,-66.92955464636907,-66.58740921597928,-67.2957419436425,-68.12038398394361,-67.80821832828224,-68.67053853766993,-68.29594482015818,-69.24917078809813,-69.94133801851422,-70.69299390586093,-70.47640254162252,-71.41377128660679,-70.56721523823217,-70.93469692161307,-70.98457380849868,-70.856345041655,-71.37945256242529,-71.15356742031872,-70.69379638694227,-71.46546668419614,-71.36118028638884,-70.86528850160539,-70.75265939580277,-70.58818272408098,-70.64533051056787,-70.67594641353935,-70.23739053914323,-70.19402095442638,-70.1688327556476,-70.04840012826025,-69.72866760659963,-69.61326201166958,-70.560093017295,-69.7408948931843,-70.04052983177826,-69.36288509937003,-69.96288284333423,-69.53917250828817,-70.27436135010794,-71.20823208708316,-70.82284530531615,-71.5877683297731,-72.46630268264562,-72.36128079239279,-72.3252746714279,-72.01465742848814,-72.17922323383391,-72.26329499529675,-72.48853542702273,-72.90807519806549,-72.86191629618406,-73.10085265152156,-72.85795615194365,-73.72960679419339,-74.21157223219052,-74.32424359954894,-74.97188225621358,-74.60357224708423,-74.23735213978216,-74.1932086260058,-74.0881558782421,-75.0381207508035,-74.67399266781285,-75.6003132397309,-74.90421100286767,-74.08257513539866,-73.69825733359903,-74.05498131830245,-73.25640887208283,-74.20519800810143,-75.11050264630467,-75.67503802198917,-76.53568647475913,-75.55237963469699,-75.59698581229895,-74.93508826987818,-74.91733090300113,-75.0572241009213,-74.20264674676582,-74.78149944124743,-74.48775199102238,-75.1192469294183,-74.80367740709335,-74.08390792785212,-74.67480638157576,-74.56034377310425,-74.46226894855499,-74.56396698998287,-74.7479754188098,-75.44860856514424,-76.16877649212256,-75.68260156316683,-76.55464550526813,-77.3715140670538,-78.2354813683778,-77.96379061928019,-77.02119536092505,-76.83205698570237,-77.66586787207052,-78.45397432427853,-78.84381083445624,-78.36570393200964,-79.2783157103695,-78.32033911161125,-78.11212208447978,-77.53944651130587,-77.20792924752459,-77.06352335494012,-76.4363547200337,-75.71239267662168,-76.24651841400191,-76.97907652612776,-76.34294313983992,-76.80723861558363,-76.93114300863817,-76.12138361856341,-76.59154592454433,-77.28351715486497,-78.23538528801873,-77.55970783857629,-77.6624172073789,-76.66750908270478,-76.02475763391703,-76.1903277169913,-76.45266431616619,-76.17751429276541,-77.11277452437207,-76.72217610105872,-75.85821221163496,-75.57742835953832,-76.09789254749194,-76.39157721213996,-75.82296333415434,-75.36312970193103,-74.67819542484358,-75.05833420716226,-75.95990496687591,-76.69045848352835,-75.96163772977889,-75.5515134180896,-76.05037846695632,-76.58138615405187,-76.56258932873607,-75.8562291120179,-76.43774341000244,-76.78769111959264,-77.24227608088404,-77.32065503811464,-76.81506019365042,-77.6708264653571,-78.6482111713849,-79.42477884236723,-79.44309512106702,-79.83280335785821,-80.27037783432752,-79.90913646342233,-79.20366235915571,-78.24290603492409,-77.40472882520407,-76.79499123431742,-76.86942307511345,-77.06242797151208,-76.90848255390301,-76.11133703403175,-76.07404722040519,-75.38133193040267,-74.64938828721642,-74.36277137510478,-74.08362620463595,-73.85919198999181,-73.8574656676501,-74.40617380896583,-74.7284877016209,-73.8845643280074,-74.65742945577949,-73.77726888796315,-73.31520158890635,-73.98227860266343,-73.86783648608252,-73.54732917016372,-72.6624485491775,-72.86108884122223,-72.9292924143374,-72.13571391161531,-71.86871350742877,-72.159752513282,-72.15116047114134,-72.10955047188327,-71.25900089507923,-71.74956704629585,-71.64328913902864,-70.66289903130382,-70.70401137787849,-70.07888674503192,-69.41872816206887,-69.13113101292402,-68.50302403094247,-68.6560360873118,-69.48872030293569,-70.45774146169424,-69.70212012156844,-70.4112432836555,-70.35623314464465,-71.3446679324843,-70.51630636537448,-71.38462978089228,-70.49380149831995,-69.94691077340394,-69.69005682971328,-69.97043049288914,-69.5939677497372,-69.19356600521132,-69.71898347930983,-68.99511681078002,-69.98138063075021,-69.84063534997404,-70.64115961175412,-71.5935705373995,-71.12478020042181,-70.3303984273225,-69.76434245193377,-69.49258997989818,-69.09165194630623,-68.87212685495615,-69.82540523493662,-69.66448110342026,-68.92744184844196,-68.01798192830756,-67.44441972346976,-67.97537934733555,-68.85102827800438,-68.20118566509336,-67.57469211425632,-68.52244712226093,-68.2567733200267,-67.45554075716063,-67.27365001291037,-67.74695817939937,-67.51526285056025,-66.99377097003162,-66.97399043850601,-67.2821200247854,-67.06508030602708,-68.05030637839809,-67.8510366990231,-67.49647459946573,-68.06428905529901,-68.65413271822035,-68.60357660986483,-68.48034291435033,-68.49803710216656,-68.2037490317598,-68.23206181591377,-69.0079345437698,-69.55705303000286,-69.79988728137687,-70.56202297052369,-70.98426959989592,-70.46868290239945,-69.7620482230559,-69.54070285754278,-70.18658282747492,-70.04353147605434,-70.44851119956002,-69.77269825711846,-70.55262041883543,-70.50226768339053,-71.08593684062362,-71.66962262848392,-71.50997234880924,-72.40251451404765,-73.24506959086284,-73.81552279554307,-73.79506516829133,-74.06223860196769,-74.5750763467513,-75.18984118569642,-75.59923595748842,-74.73459659935907,-74.3872122312896,-73.99294302193448,-74.15820736670867,-73.57840103283525,-73.86081416159868,-73.89527851575986,-74.69917720416561,-74.38065637135878,-74.85177026735619,-74.32899384526536,-74.64628861052915,-74.84884587908164,-75.48063876433298,-76.30212114565074,-75.31640465836972,-74.55835785437375,-74.1771939964965,-74.68723137164488,-75.45699216611683,-74.51635030610487,-74.55741122737527,-74.03043420473114,-73.59328840347007,-73.70528616756201,-73.10047107329592,-73.10790457716212,-72.55313909472898,-72.45420378446579,-72.32869047345594,-71.75435748090968,-70.93289494840428,-70.24550230847672,-69.32645510230213,-68.45702501619235,-68.70006531197578,-67.78435843065381,-68.29492477467284,-68.51183285471052,-68.11455066781491,-68.5339298476465,-67.69085839018226,-68.502233766485,-69.32109039509669,-69.39001191593707,-68.68769541522488,-68.95917883934453,-68.52713280310854,-68.31639023730531,-68.44592168694362,-67.64601049944758,-67.94740867521614,-67.57772896206006,-68.01866501383483,-68.91612902050838,-67.99669577553868,-67.6887832833454,-68.47362930467352,-68.5598666742444,-67.59994930960238,-67.102862842381,-67.92665331345052,-66.96746195433661,-66.31759489513934,-66.22232507215813,-65.6795274540782,-65.96758557017893,-66.89112706063315,-67.44460396794602,-67.94137960765511,-67.64970949478447,-67.5650955834426,-68.09305000724271,-68.1554110054858,-68.39215976977721,-67.98582786135375,-67.52933120075613,-67.91906683985144,-68.90943744638935,-68.59277238836512,-69.28296995162964,-68.52666436275467,-68.7479401808232,-68.90175371337682,-68.45705046644434,-68.8833854724653,-69.56476284563541,-70.40911294240505,-70.25593857420608,-69.60247941827402,-68.98472728021443,-68.69492871547118,-68.2985827056691,-68.76719707157463,-68.07699254946783,-68.95870170742273,-69.12264377204701,-69.98979728249833,-70.74900847161189,-71.0557575984858,-70.53466537222266,-69.67717689974234,-69.8488893774338,-69.5795794702135,-69.50098665477708,-69.6325768600218,-69.02245283080265,-68.41374019207433,-68.40806771721691,-67.64762422302738,-66.85676581738517,-66.37532784976065,-66.31433576578274,-66.64727985160425,-66.5017726868391,-67.2025086497888,-66.53782284306362,-67.50714059453458,-68.23973078932613,-68.45696605509147,-68.30153794027865,-67.98294976493344,-67.18801641184837,-67.82486136676744,-67.41091899387538,-67.37365669803694,-68.34168363548815,-67.7283966015093,-68.69893884658813,-68.91143362177536,-68.52144944434986,-69.5009156554006,-69.16503741405904,-68.97442622948438,-68.87092527654022,-68.82442128425464,-69.22692840732634,-70.00249146483839,-69.56980243558064,-68.63081735232845,-69.35967467911541,-70.28346394514665,-69.67742102546617,-69.92044702731073,-69.2407749388367,-68.37306215194985,-68.29043766343966,-67.71044627670199,-66.94721997901797,-67.34373557195067,-66.80860421294346,-66.27311616949737,-67.16481340955943,-67.98186463257298,-68.5764631475322,-67.84455640241504,-68.05113832466304,-67.31773065403104,-67.98514051409438,-68.76035107299685,-67.8739248230122,-67.18842299794778,-66.80093702720478,-65.89028627239168,-66.47395179327577,-65.50885953288525,-65.49340069713071,-65.60321853775531,-66.47322536539286,-66.97237635916099,-66.5521271051839,-67.46146787237376,-68.2452663294971,-67.25451232213527,-67.41065172711387,-67.18579173041508,-66.6221644487232,-66.64873298909515,-66.29823110951111,-66.52516490733251,-66.52795424778014,-66.35775524983183,-67.34756868286058,-67.28277473570779,-68.12307103769854,-68.64790048124269,-69.09030691022053,-69.41710142092779,-69.9862824329175,-70.93531701806933,-71.03034344827756,-71.78369714925066,-71.37672450672835,-71.76414835872129,-71.50923507567495,-71.04980539809912,-71.14034677762538,-71.66286555165425,-71.5597456372343,-72.15566426282749,-71.92499327193946,-71.25497643603012,-71.73686816589907,-72.20646982640028,-72.36733231879771,-71.58429547632113,-72.4607356688939,-72.65832198224962,-73.60310401162133,-73.28206392098218,-73.68444459885359,-74.30039260862395,-75.28981294296682,-75.40703874547035,-75.21333507914096,-76.2066585123539,-76.3417187188752,-75.91243778774515,-75.6647950746119,-75.88396711228415,-76.27640677057207,-76.75067083444446,-76.86185518465936,-76.75714912125841,-77.22579931654036,-77.67074181651697,-76.9785406300798,-76.26307238359004,-75.42357566254213,-75.32004559598863,-74.6030853674747,-74.38979538250715,-73.62097470508888,-74.52940307697281,-73.9954704917036,-73.71207683859393,-74.68256107112393,-73.9674237286672,-74.64674212085083,-74.80766165489331,-75.4802883551456,-76.01145481131971,-75.21614397596568,-75.70411587087438,-76.09503794275224,-76.03185634221882,-75.64159718248993,-76.27358161751181,-75.58898944593966,-76.25131449103355,-77.06145693734288,-76.75457101780921,-77.40140060381964,-76.93387063825503,-76.46044582454488,-76.18706459971145,-75.31142432522029,-74.99584239069372,-74.5849564713426,-74.93856460787356,-75.01014955947176,-74.62989626685157,-74.44307521590963,-75.41174532892182,-75.41951258387417,-76.21176212793216,-75.50263115903363,-74.78542874380946,-74.90249249245971,-74.25248550111428,-74.98932911362499,-74.67232021922246,-74.49137975787744,-75.3875319538638,-75.08761453302577,-75.9846212817356,-75.11653203470632,-75.02514533419162,-75.58075742889196,-74.96454733330756,-74.36903656180948,-74.0222502052784,-74.01753634726629,-73.28345699096099,-73.77758708177134,-74.1807832699269,-74.26852932665497,-73.71129223471507,-74.62029113573954,-75.03005500463769,-74.5305149871856,-75.23450974235311,-74.92992830276489,-75.04837997071445,-74.09221442881972,-74.74755135551095,-75.01006064377725,-75.53927676053718,-75.8084117542021,-76.18388689868152,-75.37948153354228,-75.03750403039157,-75.9761616429314,-75.34421051712707,-75.83811715897173,-76.44624538952485,-77.21896222420037,-77.67653224151582,-77.19617020292208,-76.66624784795567,-77.04140421096236,-77.86804138170555,-77.45076639717445,-76.53781174868345,-76.67683801054955,-76.87919004028663,-77.33841183921322,-77.34463928639889,-76.8937914497219,-75.97839193884283,-75.64212044235319,-75.45423958869651,-75.03464784659445,-74.42562169535086,-74.44143910845742,-74.5427638120018,-74.27950206631795,-73.6818811041303,-73.13773792330176,-73.29400675091892,-73.80169994011521,-74.51674718922004,-74.16056748526171,-74.35705829411745,-74.28678153827786,-75.28284371411428,-76.06085539981723,-76.32862849207595,-76.52938317740336,-76.74169301055372,-76.50278493203223,-76.1328154746443,-75.46994519140571,-74.85341545846313,-75.72625407250598,-76.3234978443943,-76.1624670792371,-76.88730292441323,-76.28115827729926,-76.13021830562502,-76.70717304060236,-77.62867899425328,-76.76812584372237,-77.10525190178305,-77.90361235337332,-78.43303537881002,-77.73052132921293,-77.16486962325871,-77.76886503538117,-78.44565673870966,-78.2034131353721,-78.99580054776743,-79.45516500528902,-78.68844075873494,-77.94714570138603,-78.44613857008517,-79.00116929924116,-78.89998557278886,-78.75347935780883,-78.08230637386441,-77.45669349981472,-76.75398191949353,-76.33053865004331,-76.58513478608802,-77.04190139193088,-77.06663066660985,-76.72418435942382,-76.53356815688312,-76.03678277833387,-75.74812415894121,-76.56677122786641,-76.89158943947405,-76.3983228188008,-76.89375176886097,-76.54521159781143,-76.07004277268425,-75.6156362760812,-76.08194168517366,-76.88827782543376,-77.8052781498991,-77.22287531802431,-77.985527893994,-77.94380858214572,-78.89160221768543,-77.9160418654792,-77.89658028632402,-78.57563079707325,-77.99649100517854,-77.53515407815576,-78.23133576940745,-78.89331314852461,-78.8201803942211,-79.4713766076602,-79.93273941148072,-80.41420235252008,-79.51663559954613,-79.82261423906311,-80.31953057600185,-80.74850403144956,-80.94653660617769,-81.27275366988033,-81.41088617313653,-80.98324496345595,-81.47264581313357,-81.4697404326871,-82.26107941567898,-81.50359439244494,-82.46129472972825,-81.80833862535655,-82.2782970117405,-82.05589487962425,-82.178714458365,-81.57388218911365,-80.93436929397285,-81.07793163554743,-81.44221534393728,-81.48879772052169,-81.72203294280916,-81.28568333666772,-81.15915751550347,-81.49239899078384,-82.31003748672083,-83.28852165583521,-82.58985488722101,-82.04730578605086,-81.6591112348251,-80.98183827335015,-81.7817857847549,-82.06373364990577,-82.46160901105031,-83.33339270483702,-83.9981756946072,-84.95843139942735,-85.93964301422238,-85.14798144763336,-85.43570069922134,-85.1966836056672,-85.73394236247987,-86.30882933130488,-85.69178073201329,-86.52087866934016,-86.30917383125052,-85.60323196463287,-86.25730076199397,-85.48044808208942,-85.83148256130517,-86.78230190370232,-87.17461568117142,-87.42451982479542,-86.5511110513471,-87.02052105497569,-87.62240838073194,-87.33488894952461,-87.63591626519337,-87.50758573645726,-87.23802274931222,-86.98275399859995,-86.90170610230416,-87.5214639371261,-88.35107855359092,-87.93010425334796,-87.67694378877059,-86.93316429946572,-87.55821122368798,-87.7188309696503,-86.95813927426934,-86.71714377170429,-85.93142400123179,-86.35781494248658,-85.75743286684155,-85.92961213737726,-85.94789835624397,-85.03291869396344,-84.86334444023669,-85.47365531977266,-86.45664347754791,-85.59975870791823,-84.6574735394679,-85.25622564693913,-85.54014856554568,-85.64193165116012,-85.03813415206969,-84.72955210879445,-84.91439264127985,-84.6594130503945,-85.42533974722028,-84.4685412608087,-85.27654811693355,-84.50306982267648,-84.89594490034506,-83.96158038638532,-83.19456997932866,-83.42625740822405,-83.28739043790847,-84.09900103416294,-84.16976341884583,-83.46454867953435,-83.16469557629898,-82.93097112281248,-82.12429998768494,-81.60154952015728,-81.37482433160767,-81.33575014583766,-80.94924064073712,-81.78524758666754,-82.45890719396994,-82.21097070770338,-83.1781010152772,-83.02798078814521,-83.13948909426108,-82.40385113982484,-82.11944395164028,-82.78282690327615,-81.82978558540344,-82.1888665095903,-83.0604527448304,-83.38457429455593,-83.99530002847314,-84.83349788747728,-84.0725636142306,-84.74108323734254,-84.78178830305114,-84.21300093084574,-83.35728560155258,-82.56965665146708,-82.3937200694345,-82.06395537871867,-82.09999438980594,-82.6930533782579,-82.53319895267487,-82.77412871597335,-83.46879858523607,-84.30316084157676,-84.2335770833306,-85.05171360401437,-85.90921249985695,-85.22589093307033,-84.52443615440279,-85.28147461032495,-84.89738451177254,-83.99439201271161,-83.28026639483869,-83.73832410946488,-82.98323010234162,-82.23197656171396,-82.12831609323621,-82.70372660132125,-81.94501408562064,-80.9916647109203,-81.16139301704243,-81.8005567365326,-82.34026455832645,-82.29408670961857,-83.20949882501736,-82.239758328069,-82.44039317080751,-82.47000724682584,-83.01862303214148,-83.96219911286607,-83.18083757162094,-82.50489436276257,-81.89753623958677,-81.28057616343722,-80.86613601259887,-80.17986801965162,-80.5773471663706,-80.74856608500704,-81.66397092537954,-82.23447681544349,-82.50721985753626,-81.5509644113481,-81.54406639095396,-81.68452013423666,-82.15236645005643,-81.7515554735437,-81.87866111984476,-81.573411276564,-81.47551630996168,-81.51205737935379,-80.87196739856154,-80.32429863931611,-81.11025059968233,-80.4769421252422,-80.37701742677018,-80.64155456889421,-79.81572986394167,-79.95013989042491,-80.529362404719,-81.34647057531402,-82.11605030205101,-81.68538880068809,-81.52161934506148,-81.8043967615813,-82.41465248446912,-82.6168396603316,-82.97225215099752,-82.50230190251023,-82.1733339233324,-81.68799154274166,-82.52655302360654,-82.02837827336043,-81.90843935217708,-82.58622906915843,-83.30376683687791,-83.0341343167238,-82.75848365668207,-83.5306607359089,-83.04299511993304,-83.73258540220559,-84.2844180832617,-84.53037410695106,-83.88894709292799,-83.42381157586351,-82.46521518193185,-81.50936825806275,-81.99275795277208,-81.22446129471064,-80.64323979942128,-80.13224025908858,-79.74456927319989,-79.90849101310596,-79.53670026734471,-78.57818428846076,-78.55795121472329,-78.13861820567399,-78.06142617575824,-78.03675893926993,-78.16518467757851,-77.57224584370852,-78.14155313652009,-77.95966993831098,-78.28268177667633,-77.64491407526657,-78.02403733925894,-78.3641141615808,-78.65345318615437,-77.94103896897286,-78.36000307416543,-78.09231676720083,-78.06848804932088,-77.94931618496776,-78.31973803415895,-78.49106733314693,-79.0381810683757,-79.96496090758592,-80.8661546013318,-81.75699920812622,-81.44937670789659,-82.21697313385084,-82.2526857140474,-82.12644670158625,-81.16566635435447,-81.47105335630476,-82.41566509008408,-81.62294476665556,-81.71340412693098,-81.95659476611763,-81.00452129589394,-80.28158957604319,-79.3017601328902,-79.20485770516098,-78.92352731153369,-78.68378480849788,-78.61666777916253,-77.92209424776956,-78.45679692039266,-78.56645503174514,-78.39834900479764,-78.05521757574752,-77.5678319921717,-78.51880107447505,-78.69039232190698,-79.59613247215748,-80.46274237660691,-79.6529200701043,-79.94643232878298,-79.28777740569785,-80.02479142555967,-79.30098344013095,-79.12807809235528,-78.82998735876754,-79.1111502838321,-78.4051778507419,-78.35626904340461,-77.46855842834339,-77.08269946230575,-77.14154570130631,-76.62431957619265,-77.31843110918999,-77.64336571190506,-78.26511700637639,-77.4383118962869,-77.92236472293735,-77.74754573125392,-76.81287599168718,-77.73099960526451,-77.68834492471069,-77.3448881288059,-77.13039009599015,-77.44203324988484,-78.42908608401194,-78.94851777376607,-79.70651363860816,-79.89859448000789,-79.91215211618692,-79.97848126944155,-80.06170507101342,-79.6818659901619,-79.6036436134018,-80.10382136935368,-80.30715463589877,-79.32282121060416,-78.59751830250025,-79.22710528969765,-79.92918926011771,-79.97625087434426,-80.65240854676813,-81.34061317984015,-80.84500445518643,-80.82033724710345,-81.69607284292579,-82.20153490966186,-81.8169356007129,-81.70034406287596,-82.49605328170583,-82.88306301180273,-83.42308889515698,-83.45233901310712,-84.23298406135291,-84.66753550991416,-84.58367754844949,-84.70579025382176,-83.74242496211082,-82.80194873921573,-82.41846709651873,-83.09722033841535,-83.7399054155685,-84.20876724319533,-84.31636346923187,-84.10777499713004,-83.37969929352403,-83.35698164254427,-82.77808200148866,-82.52273582480848,-82.26623031683266,-82.67594207962975,-82.26245256047696,-81.66304341098294,-81.09665790526196,-81.33902167202905,-81.27569472324103,-82.08445219276473,-82.6792138684541,-82.8479902613908,-82.41041582543403,-82.10897017735988,-82.43307057814673,-81.72639624541625,-81.6870957929641,-81.90379411540926,-82.17936459835619,-81.44431715365499,-81.98939316766337,-82.31666295602918,-82.35812334343791,-81.81243331125006,-82.37371674180031,-81.44684329209849,-80.91509168688208,-80.03695726301521,-79.15665319468826,-79.62170665245503,-79.94985798746347,-80.71519322041422,-81.44041630905122,-81.91066541336477,-82.4967708918266,-83.23058287240565,-83.12840307457373,-82.94398591993377,-83.2381034437567,-82.38713316246867,-81.48470540577546,-80.88085478637367,-80.50740300305188,-81.40009542135522,-80.69346164818853,-79.92076127650216,-80.10182328848168,-79.97757908888161,-79.37136716023088,-79.28165359189734,-79.76124571077526,-80.44749776693061,-80.14533631177619,-80.88818751042709,-81.649831908755,-81.85980150150135,-82.15953167108819,-81.19369871541858,-81.15663223527372,-81.92589207878336,-81.52107467968017,-82.18887652549893,-83.03520360542461,-82.19501824025065,-82.44498237036169,-81.76365819899365,-81.10320547781885,-80.11292022746056,-80.81170832272619,-81.5658596670255,-81.73367349244654,-82.38410191051662,-81.50488015124574,-81.84765123855323,-82.16767461039126,-82.7279177615419,-83.59583429247141,-82.97988960938528,-83.93333257175982,-84.2857264331542,-84.31127871898934,-83.49881640262902,-83.96837102947757,-83.8496734960936,-83.5312206512317,-83.37879424588755,-82.65286057721823,-82.28021880611777,-82.72181279212236,-81.85732478788123,-82.25284962216392,-82.27505038678646,-83.25645147683099,-83.53943354589865,-83.16851924126968,-83.25648224912584,-83.24519400671124,-83.3681161752902,-84.11552553484216,-84.23442329699174,-85.21256446000189,-85.47327242977917,-86.01419720752165,-85.81515918578953,-86.24802357144654,-86.9654202638194,-86.55930625507608,-86.06610088609159,-86.15946287242696,-86.86825982900336,-87.05257121706381,-86.64280049270019,-86.0621766638942,-85.55768402246758,-84.58523305738345,-85.13041503541172,-85.51683522667736,-84.93550188234076,-84.57118386682123,-84.64104786515236,-85.56919360067695,-85.02434704219922,-85.00891392305493,-85.60939345182851,-85.44985624589026,-85.59915546234697,-85.05522946547717,-84.96984229888767,-85.81930273352191,-85.41837467486039,-84.90469134831801,-85.24845463130623,-84.29271482583135,-84.10846190992743,-84.96469114301726,-85.24311445653439,-84.80643062386662,-85.63012651074678,-84.74091089051217,-85.58690392784774,-85.04316304670647,-86.03935770597309,-86.3630559137091,-85.98680202150717,-85.98105584830046,-85.45711326412857,-85.88903496786952,-86.79158718977123,-86.8147446475923,-86.89828284364194,-86.37396299652755,-86.84930727630854,-87.15509836934507,-87.6997412503697,-87.46312788780779,-87.83705972973257,-87.45173072721809,-88.29755688179284,-89.00781962228939,-89.25684886332601,-89.17834727372974,-88.86994527094066,-88.28380221640691,-87.41531335609034,-87.05421245796606,-86.62133489176631,-86.28992588724941,-85.91435697674751,-86.8239870890975,-87.08944739867002,-87.75055366614833,-86.9126980365254,-87.35295586986467,-87.64268627390265,-88.37190463673323,-87.4610039666295,-87.39573282469064,-86.62761775031686,-87.1975668342784,-86.53724032780156,-87.11128016933799,-87.94460859149694,-87.27693205932155,-87.31474941410124,-86.39239175477996,-85.77452902682126,-85.64003598736599,-85.84181326534599,-84.99546681251377,-85.82469731150195,-86.78496894938871,-85.82333287689835,-85.71638465719298,-86.40144015057012,-87.32590211788192,-87.8149173501879,-87.61862505879253,-86.62098407791927,-86.3821847178042,-85.75020350934938,-85.03414123458788,-84.48791962489486,-84.26028970908374,-83.86952348938212,-84.19525442738086,-84.84122990071774,-84.86350770527497,-83.9793654140085,-83.57853320427239,-83.38189860014245,-83.24043499259278,-83.94716981286183,-84.04913773946464,-84.08403723081574,-84.55105335637927,-83.70190985593945,-83.65277805132791,-84.16487108916044,-83.70959938969463,-83.25912787672132,-83.97658054763451,-83.2451561302878,-83.94773416034877,-83.51236193627119,-82.8461134871468,-82.86445964640006,-83.05034963227808,-83.37475236691535,-82.98177906963974,-83.80468367319554,-84.51740026520565,-85.01765801291913,-85.19114349316806,-85.81413362408057,-85.30940387677401,-85.8421263275668,-85.11994819296524,-84.22021846938878,-83.87813453562558,-83.18220969382674,-83.12693161098287,-82.46357249328867,-83.39354023057967,-83.33385522244498,-83.78301503462717,-82.83061043452471,-83.42130849556997,-84.36388125503436,-85.19063783343881,-86.18817367590964,-87.12717300374061,-87.07514261035249,-86.99672814831138,-87.781578252092,-88.33511252095923,-87.34152576653287,-87.77519960468635,-87.38154260115698,-87.46900674793869,-87.6912676775828,-87.18655003840104,-86.57370194746181,-86.54243410099298,-85.61736484989524,-84.92316332785413,-84.38832352682948,-84.27764158835635,-83.5675238952972,-83.38958711968735,-83.56814461294562,-83.7008092245087,-84.54350986424834,-84.90793173573911,-84.10615105368197,-84.76207742188126,-84.1869773385115,-84.9472606787458,-84.39256183477119,-83.82682015700266,-83.38570218067616,-82.68073842208833,-82.15411309199408,-82.02778631122783,-81.97736123390496,-82.31336392043158,-81.31868017744273,-80.58301422605291,-80.91143970470876,-80.41700790403411,-80.57555131847039,-81.31272187968716,-82.30774171929806,-82.51447602268308,-83.36999034462497,-82.40003391634673,-82.09239829983562,-81.40375203965232,-81.25461335666478,-81.60957310255617,-81.01666818512604,-81.7350824684836,-80.83110181195661,-80.61131851980463,-80.67451408458874,-80.81417593173683,-81.14856335101649,-80.58175472123548,-80.46886054007336,-81.23769800178707,-81.49903326667845,-81.52591249579564,-82.23990521719679,-83.03792855329812,-82.08093485189602,-81.22758409101516,-80.3223288343288,-79.70007190294564,-78.86617899825796,-78.10269413329661,-78.15058160759509,-78.22135739773512,-77.74300396814942,-77.1947469767183,-77.98453656490892,-77.84388134954497,-77.47952613793314,-76.88485303428024,-75.91852075746283,-76.32908370066434,-76.47116660140455,-75.56557491887361,-74.80026995716617,-74.58009934425354,-74.50206308858469,-73.75343303522095,-73.80519055621698,-73.60364093724638,-72.6646959525533,-72.28601910779253,-72.53959376597777,-71.8318977560848,-70.90599552635103,-71.05075421510264,-70.33111282903701,-69.79602456325665,-69.86898534791544,-70.19312250753865,-70.15439753979445,-70.40737814642489,-70.34316231170669,-71.28018865082413,-71.70050870859995,-71.18130363803357,-70.53060013009235,-69.9801488602534,-70.59885028377175,-69.72670332388952,-69.14922634186223,-69.00798092642799,-69.87420521769673,-69.59391552535817,-69.6508155381307,-70.53142972057685,-70.68830325268209,-69.7772950339131,-70.50413962081075,-69.7499109711498,-70.64999477146193,-70.73008801415563,-69.73626515222713,-69.27916318876669,-70.16423552623019,-69.52105934172869,-70.28230457752943,-70.44499898143113,-69.58172331377864,-70.53620380815119,-70.20290352031589,-70.66662560543045,-71.42646408034489,-70.90506674395874,-70.43909898214042,-71.24336367892101,-71.13122634403408,-70.32513849483803,-70.16969572287053,-69.50391851877794,-69.75646676216274,-69.17107358714566,-68.99093159893528,-69.4375398280099,-70.31499096844345,-70.88771107466891,-70.59223629999906,-70.49985462334007,-70.35847028018907,-70.52273384481668,-70.81879730941728,-70.29607812035829,-69.96363968914375,-69.08381727151573,-68.69681501248851,-69.5128349205479,-69.69443677039817,-70.23616671096534,-69.60960443224758,-70.10836960189044,-70.65516120800748,-70.03213391639292,-70.0534117934294,-69.07068574428558,-69.3818679722026,-70.27054346119985,-69.72872132342309,-69.26717076310888,-69.8981378111057,-69.1434872741811,-68.53350730985403,-69.1125363856554,-68.44202011916786,-69.36611663829535,-69.45313621126115,-70.17723373835906,-70.73152895551175,-70.59092859877273,-71.17172920051962,-71.20548981847242,-71.14292628038675,-71.23309304472059,-71.68685732735321,-71.8008465715684,-72.07173380767927,-72.5955947865732,-72.55367067363113,-72.18403692357242,-71.73439509794116,-72.07040216494352,-71.36050012288615,-70.40827887598425,-70.17238311748952,-70.43746329890564,-70.32205025525764,-70.66435978421941,-70.89135271683335,-71.41290833614767,-70.47814846457914,-70.79842754732817,-70.47844658466056,-70.30948340240866,-69.95305252540857,-69.48250975878909,-70.07605332229286,-70.7507936079055,-71.74762640707195,-72.49719557724893,-73.22269382467493,-72.71640126919374,-72.00538837444037,-72.56674060272053,-71.73185592051595,-72.43628068547696,-71.61723930109292,-70.71572699956596,-71.28052133508027,-71.07903681928292,-70.44627202581614,-71.29052644548938,-70.41908578108996,-70.85589980799705,-70.36058851750568,-70.44008414633572,-70.36288206791505,-70.97919030766934,-71.1144471722655,-70.4260613406077,-70.12670721346512,-69.31106461770833,-68.48276163544506,-68.04842161294073,-67.47111516678706,-68.36452836170793,-67.97499468643218,-68.41643143910915,-67.75103639392182,-68.25693742139265,-68.68897807458416,-68.70329467765987,-68.58156652515754,-68.92449832661077,-69.42713190987706,-70.41537202289328,-69.80531635507941,-70.62586475210264,-71.31928115710616,-70.48558297054842,-69.70177958067507,-70.19085144391283,-70.93385539622977,-71.01174294017255,-71.45968705834821,-71.2790128653869,-72.17183821601793,-72.80590748926625,-73.38004310242832,-73.74720425112173,-73.44794210977852,-73.95317751634866,-74.36938199261203,-75.22838469222188,-75.82201755559072,-76.05997217865661,-75.58032092778012,-75.7705640741624,-75.13818371063098,-74.21016722451895,-74.9559760238044,-74.08851187536493,-74.54752841219306,-74.10210411483422,-73.23228406254202,-74.06974215898663,-73.66788898967206,-74.32428394351155,-74.06448617158458,-73.156886018347,-73.53338955156505,-73.77679351205006,-73.75503202807158,-73.61580825643614,-72.72273714374751,-71.75770057085901,-70.80455444380641,-71.35044802259654,-70.61077692359686,-69.90463088219985,-70.31395269464701,-69.8123160712421,-69.61837181262672,-70.10797892138362,-69.41651865979657,-68.93799471203238,-68.35028489399701,-68.79255135543644,-68.82833572337404,-69.1980990790762,-68.71444728411734,-69.03940225904807,-69.45173221779987,-69.73979503428563,-69.70514907408506,-68.86072876304388,-68.22454874776304,-68.93295543035492,-69.53862596396357,-68.66490108473226,-68.45600590202957,-67.75292574055493,-68.25836940249428,-67.5048785819672,-68.23066941741854,-67.70445681968704,-68.48028767388314,-69.24885164154693,-68.48424369189888,-68.58050066092983,-68.3977745580487,-68.04030895791948,-68.59934348566458,-69.2886444372125,-68.6260064500384,-68.9580208864063,-68.44498900091276,-68.21673268359154,-67.85024339612573,-68.58882130449638,-67.73358327755705,-67.74500898830593,-68.25140744447708,-68.03358875820413,-67.09741832502186,-68.07039910182357,-67.08831186871976,-66.78682985482737,-66.6769209979102,-67.51631238311529,-68.21192000852898,-68.05063223233446,-67.58573057036847,-68.20198455266654,-69.0550701818429,-68.13857468636706,-68.33477823855355,-69.11209839722142,-69.4446859373711,-69.2797900242731,-69.15123637812212,-70.12958895042539,-70.55506997788325,-70.6513787326403,-71.20096796564758,-70.44697015173733,-70.00906705111265,-69.97023887885734,-69.1259301030077,-69.23358593974262,-69.62835208466277,-69.13329360960051,-68.14094994869083,-68.34838457684964,-69.03815548727289,-69.70459263026714,-70.46256497176364,-71.21235135756433,-70.86815352365375,-70.22562690963969,-69.69321621023118,-69.36382148461416,-68.6549630574882,-67.86132471403107,-67.02088730083779,-66.27870865631849,-65.32253397256136,-65.9374537607655,-66.7401643069461,-66.30503839207813,-66.99062144896016,-67.98283434752375,-67.87893171841279,-67.51686680782586,-67.08005010895431,-67.39838545070961,-68.19729350879788,-69.00664399191737,-69.72469711210579,-69.15586435468867,-68.96049319347367,-68.8013225053437,-69.51156222494319,-69.34715263592079,-70.00064263259992,-71.00023814942688,-71.9513034299016,-72.393881670665,-71.69195656804368,-71.40491234371439,-71.90395084768534,-72.17044861894101,-72.92668744269758,-73.42711633071303,-72.84701607329771,-72.6172389248386,-73.04756898246706,-73.04722493188456,-73.0369799672626,-72.36368992272764,-71.36668405123055,-71.3497616359964,-70.41231531975791,-70.26418425422162,-70.02624098677188,-69.73915957286954,-68.98035564180464,-69.47433705441654,-68.70527401613072,-68.8365194927901,-68.00178046803921,-67.26330478675663,-66.55085816187784,-65.59463176503778,-65.68142878077924,-65.01814987370744,-64.69443747354671,-65.5748617965728,-66.01753460103646,-66.78515847167,-66.57134881755337,-67.30033141607419,-66.58555526798591,-66.93088619224727,-67.29285433655605,-68.08790710382164,-68.64334535971284,-67.70233990158886,-68.60664124647155,-68.22847251221538,-68.22861567884684,-67.81175676174462,-67.07786023756489,-67.51935690455139,-66.76840225420892,-67.59031165391207,-66.94133238308132,-67.35290932375938,-67.76889148587361,-67.74304954195395,-68.24090691376477,-67.48498305631801,-68.09638536022976,-68.12523396965116,-67.18527744850144,-67.45107572805136,-68.44349687872455,-68.8607980790548,-68.74555287417024,-67.98518449114636,-68.16307220980525,-67.72560623567551,-67.55133987450972,-68.5246990788728,-68.7890192377381,-68.61843696748838,-68.21918391715735,-67.45879549486563,-66.65629961714149,-66.5455518886447,-66.51569966878742,-66.99962316220626,-67.18255366524681,-67.08682352025062,-66.95692536700517,-66.24028927786276,-66.38462793175131,-65.997498084791,-65.04992261668667,-65.06976291211322,-64.1498841480352,-64.73698251275346,-64.38055536383763,-63.39507750002667,-63.233593872748315,-63.10270919697359,-63.75687977159396,-63.645179549232125,-63.65054869186133,-63.52884899498895,-63.901175218168646,-63.82893649721518,-64.79182978486642,-64.57241707108915,-64.16978997085243,-64.05335287936032,-64.54934698203579,-65.18182345246896,-65.40047414088622,-65.19497703341767,-64.81371345091611,-65.08459009882063,-64.26398728229105,-65.02147486945614,-64.41715280758217,-63.70545416045934,-63.383419478777796,-64.03349895495921,-64.65005907882005,-64.19630729593337,-63.9572554579936,-63.18536578770727,-63.27076558675617,-63.79511370928958,-64.63059612270445,-64.36841583345085,-64.50349866040051,-64.0494204107672,-64.19837602274492,-64.68031613668427,-63.98971724230796,-64.96555886045098,-65.0380439274013,-65.6410853001289,-65.03296920796856,-64.30936418101192,-63.6899283034727,-63.463879032060504,-63.55717565212399,-63.969030152540654,-63.6376007408835,-63.994962327647954,-64.78811988141388,-64.55240963445976,-64.88667246885598,-65.53388276416808,-64.98654255550355,-65.97778272489086,-65.6728456648998,-65.9914370784536,-65.50769572518766,-65.5462370403111,-65.03103112289682,-64.80192298348993,-65.56161617627367,-65.48015095572919,-65.97132795490324,-65.4319058097899,-65.0908581954427,-65.50452277762815,-65.1063933800906,-64.2850239300169,-65.17437516339123,-65.68125488655642,-66.23835751228034,-66.79795433860272,-65.96938867727295,-65.91343235503882,-65.11238477192819,-66.00352797890082,-66.79645026102662,-67.04527482297271,-66.2751886616461,-67.11945577152073,-67.68825426744297,-66.86794797889888,-66.24559168796986,-65.40375630557537,-64.52917953161523,-64.12586061656475,-64.92078371578828,-65.01479253452271,-64.41287112608552,-63.82690362678841,-64.141324267257,-64.46459146402776,-64.56432500109076,-64.43358009122312,-64.0573310656473,-63.43191240681335,-63.67056612344459,-64.65705489367247,-65.29083493864164,-65.90360973868519,-65.19606486056,-64.41149641340598,-63.591776417102665,-64.20009593619034,-63.662971928715706,-63.202149278949946,-62.617167041637,-63.16512652114034,-62.275303221307695,-62.304324630182236,-62.4548877379857,-61.929273654706776,-61.72827706579119,-61.64090805919841,-61.58895318116993,-62.45261112507433,-61.51185701414943,-61.62519171414897,-61.85182489035651,-61.5846230420284,-61.14274358423427,-60.39674359979108,-60.39460057485849,-60.50128105003387,-60.79296860471368,-61.4355801474303,-61.766801168210804,-60.96788282087073,-60.10801989817992,-59.50416320748627,-58.88025121856481,-58.65311789652333,-58.994544812943786,-59.14704803144559,-58.47087706066668,-59.18040332151577,-58.71149348607287,-59.14166350616142,-58.993462873622775,-59.33073450811207,-59.49335922393948,-58.5939641231671,-58.07245454052463,-57.674913892522454,-57.82643972011283,-58.563960197381675,-57.8312143641524,-56.94165535457432,-57.1709718327038,-57.02546592382714,-57.52094474667683,-57.16839880729094,-57.14180641435087,-56.8053464400582,-57.32013578619808,-57.92588868178427,-57.47779762558639,-57.50646976241842,-58.45745011139661,-59.0876658083871,-59.15673352917656,-59.45845786249265,-59.164859666489065,-59.75502185197547,-59.594539621379226,-60.34686787193641,-61.26640450861305,-61.449204108677804,-61.97463309625164,-62.319147201720625,-61.954182473011315,-62.78618431277573,-62.863121653907,-62.72128083975986,-63.261389683932066,-64.25857160007581,-65.17778351530433,-65.05240082228556,-64.50856234738603,-65.47244136454538,-66.34279214357957,-66.54935547709465,-66.64708740683272,-66.9627603921108,-67.80217143101618,-67.05527240643278,-67.14575339341536,-66.79261081665754,-66.99112323950976,-67.42058648122475,-66.58803916536272,-66.92199474666268,-67.32534395437688,-67.75922400970012,-67.31707738898695,-66.41441065259278,-66.85187514917925,-67.57498049316928,-68.2030531023629,-68.66139561636373,-68.4804846229963,-68.9454670404084,-69.38793930783868,-70.02472118474543,-69.90328714391217,-69.9020302593708,-69.84454185189679,-70.29064878635108,-70.45525811938569,-70.12417978933081,-71.01025560358539,-71.29715484054759,-71.84149059979245,-72.83311285544187,-73.64515056274831,-72.86862145923078,-73.24571892851964,-73.84072791785002,-73.60572562878951,-72.70053755166009,-73.5184296532534,-74.36409188481048,-75.12193140760064,-75.82891985354945,-75.283032276202,-75.01090802345425,-75.80253974441439,-75.05802264763042,-74.67868675058708,-74.37387380050495,-73.6654033609666,-73.35572655592114,-72.93941953778267,-72.83500392967835,-73.67566232988611,-73.02768517052755,-73.34910625172779,-73.5845547397621,-73.16333282878622,-72.83922225981951,-72.44664494041353,-72.82513417489827,-73.06723347632214,-72.22563126217574,-72.03158776974306,-72.17357895104215,-72.80229822080582,-72.62842120416462,-71.67611415311694,-71.6161084077321,-72.3551692487672,-72.71405986277387,-73.39216059166938,-74.2057817671448,-74.33753196848556,-74.43454444035888,-74.10421622078866,-73.83106296043843,-73.85781028866768,-72.88478889735416,-71.94324667332694,-72.20473321247846,-71.50864299247041,-71.36258423142135,-71.51375908590853,-72.5040232441388,-72.02887243730947,-72.3607005989179,-72.94106980832294,-72.38240446755663,-71.70876579917967,-71.16708692442626,-70.40421625599265,-69.94175975117832,-70.11211536405608,-70.09373975591734,-69.97028701379895,-69.44734947569668,-69.31501791579649,-68.45332664204761,-67.57272938499227,-68.36684669367969,-67.65021227253601,-68.26654503401369,-68.32392209861428,-67.87641544872895,-68.6606655633077,-68.18062337534502,-67.52881599590182,-67.01578187895939,-67.88171392073855,-67.2896837242879,-66.42415157007053,-65.4905107319355,-65.05967461969703,-65.7255068323575,-65.40356900542974,-65.16279765544459,-65.75646721338853,-66.24148410046473,-66.40597079927102,-66.41514323139563,-66.99895459227264,-67.16303244838491,-66.99092451157048,-66.93751930538565,-66.5071883071214,-65.7928083697334,-65.64083119295537,-64.75669174641371,-65.31842905562371,-65.56494950829074,-66.06523306341842,-66.62832210026681,-65.84966789698228,-66.81078867800534,-66.84511153167114,-67.11797225382179,-67.73156333668157,-67.39763325778767,-67.01212271954864,-67.7653746381402,-67.4831074574031,-68.34909236012027,-68.47886313404888,-68.67125950939953,-69.13487998023629,-68.43048964766786,-68.72081819595769,-69.04671885212883,-70.02694618748501,-70.35807820316404,-69.85557097569108,-69.79609594494104,-70.2068373807706,-69.58556720335037,-70.55178598780185,-69.60028439760208,-70.53914408758283,-71.41079127043486,-70.56681092362851,-71.56114333542064,-71.32276018243283,-70.32839535176754,-71.2735076919198,-71.47840897832066,-70.94859204720706,-71.56042759586126,-72.42010522866622,-72.45828936714679,-72.53726473310962,-71.73022819124162,-71.60924071446061,-72.10310539696366,-71.23375007417053,-71.49293651571497,-70.82551863370463,-71.67781627178192,-71.36674336856231,-71.67825872823596,-72.47714351443574,-73.18305837083608,-73.67779282759875,-72.9967788127251,-73.42411971371621,-74.29282485693693,-74.11440170696005,-73.69166831066832,-73.12920912122354,-73.09811113169417,-73.1891215625219,-72.75800420017913,-72.66913016932085,-73.09198995865881,-73.26363918557763,-73.57995957508683,-74.38819501688704,-73.64134225435555,-74.46697117388248,-75.05988010531291,-74.98124980088323,-75.88433482125401,-76.66236129961908,-76.67096796212718,-76.30542169464752,-76.06570898089558,-76.30284374486655,-75.38511048164219,-75.81607786379755,-75.54508170252666,-76.41010840563104,-76.85688894893974,-75.904488528613,-75.16632507974282,-74.42519440408796,-74.58215290354565,-73.60035948874429,-74.09563591890037,-74.74099586671218,-75.17494519473985,-75.03337969677523,-75.8077003378421,-75.92627414455637,-76.8101204331033,-75.82805259618908,-75.7241902621463,-76.4842618117109,-76.05504888342693,-76.1561412694864,-76.10160744003952,-76.14576543495059,-77.03481325227767,-76.62254005810246,-76.14530994324014,-75.58554806374013,-74.61655827052891,-75.02919500973076,-74.69354395056143,-73.7404837841168,-73.1231891498901,-72.82936290418729,-72.60958882654086,-71.97610679501668,-71.10338104516268,-71.322387882974,-72.0138554610312,-72.81626428011805,-72.59898996725678,-72.87461425596848,-72.92764226114377,-72.99176850775257,-73.88321087509394,-73.8910149531439,-73.08915075380355,-73.51783935725689,-74.07045225519687,-74.02621111739427,-73.88211405696347,-73.38710606144741,-74.01996885566041,-74.20841419324279,-74.08033031132072,-73.27539871260524,-73.61621567653492,-72.86893952125683,-72.47702526580542,-72.96407139580697,-73.6038577943109,-72.7320078406483,-73.10093140788376,-73.74882007576525,-73.66114940168336,-73.68856593314558,-74.47307280264795,-74.67831713007763,-75.67200593370944,-75.79036815511063,-76.34108636388555,-75.39930420136079,-75.83691745437682,-74.9470811355859,-75.74127505905926,-75.34059778787196,-76.14797195326537,-76.94729233020917,-76.70231054769829,-75.83326623868197,-75.93648939114064,-76.48402700945735,-76.81172264367342,-75.94923387141898,-76.29453375004232,-75.5628571799025,-76.28751800395548,-76.43405353697017,-77.07386162271723,-77.20051186159253,-77.65690515516326,-78.03732004016638,-77.80097012221813,-77.7823238899,-77.29707370884717,-76.48384520038962,-76.47870536148548,-76.13751789089292,-75.64913866017014,-76.50763056846336,-76.63929727068171,-76.58829078497365,-77.1576426117681,-76.74000293388963,-77.66915475297719,-77.57727173622698,-77.60635966388509,-78.55090370215476,-78.65150687238201,-79.26579972682521,-79.95632905326784,-80.01021304633468,-79.04203704046085,-79.29028181592003,-79.2047800142318,-78.55243529332802,-79.30488019669428,-79.91581079736352,-79.50457973917946,-79.28420180780813,-80.17342726048082,-80.76876661460847,-81.50751928053796,-80.8987153461203,-80.36301949433982,-80.49981596274301,-81.04180554812774,-81.08087167795748,-81.22640640055761,-81.72711191652343,-82.22000312106684,-83.0277716931887,-82.17029989371076,-81.18754889070988,-80.82304844725877,-79.96397079899907,-80.90164510998875,-80.50755803100765,-79.62293748697266,-79.4073971984908,-79.30599683895707,-78.38818708714098,-79.24812888959423,-78.56533013097942,-78.22531616687775,-78.70348937343806,-79.10516813676804,-79.96560129942372,-78.98768159933388,-79.89732253318653,-79.0949064064771,-78.75070837978274,-78.87111753225327,-78.61694868048653,-78.42245986778289,-78.30340394377708,-77.35576839139685,-76.56692761043087,-75.80119536723942,-76.13608100451529,-77.12770956708118,-77.34905093768612,-78.22143427515402,-78.82067230716348,-77.83952218387276,-78.71928938804194,-78.69483246235177,-78.52943583810702,-79.488499046769,-79.05051629198715,-78.23737103771418,-79.07702073594555,-78.81870166771114,-78.97109482530504,-79.36271223518997,-79.22321439022198,-79.35058676311746,-79.40839586453512,-79.28818617016077,-79.31096603861079,-79.16268332395703,-79.97524963319302,-79.20275704190135,-78.45626145135611,-78.8825218109414,-78.07372594904155,-78.34602912096307,-79.0532504604198,-79.65829212032259,-79.86357410764322,-80.3329121703282,-79.53107951860875,-80.14841477526352,-81.14621003111824,-80.4865254308097,-81.06855571921915,-80.18087598774582,-79.89180982019752,-79.52350632334128,-80.11724655563012,-79.54609046084806,-79.78790403343737,-79.24900090461597,-79.74485157290474,-79.69298325944692,-80.25920984428376,-80.4623774481006,-80.17661826917902,-79.47569402307272,-79.27146546775475,-78.38812888134271,-79.08052018424496,-79.45575042674318,-79.87004672782496,-79.85037096077576,-80.58036698726937,-81.24803187791258,-80.91067023575306,-80.61211173050106,-80.97079530218616,-81.38443636661395,-80.85386108467355,-80.1012984761037,-80.1525398613885,-80.85980260837823,-80.59472799720243,-79.68815710116178,-80.38821215834469,-80.35264761699364,-79.39375952351838,-80.14283822011203,-81.09488223632798,-81.27289276896045,-80.757471147459,-80.6511774319224,-80.36539338855073,-79.3729953779839,-79.67766957264394,-79.8998643932864,-80.50316079519689,-80.62592252995819,-80.95158105157316,-81.17673339229077,-81.66123069589958,-80.91192309232429,-81.352957457304,-80.69633630895987,-81.34030551835895,-80.61598996818066,-80.72705577639863,-80.98114909324795,-81.43027202645317,-81.4899535831064,-81.64072386361659,-81.74374840501696,-80.90988717135042,-81.25241091987118,-82.07568845106289,-82.58225504076108,-82.13103483477607,-82.25983716454357,-82.19245999446139,-82.25240079592913,-83.03382736444473,-82.60339700756595,-81.66280179191381,-80.68707559024915,-81.61574738519266,-80.62868710653856,-80.64849989442155,-79.90017420053482,-80.32928899861872,-80.04618075815961,-80.3182894825004,-79.97035828139633,-79.08618707442656,-78.49321160186082,-78.35815544845536,-78.65220461506397,-78.14458001032472,-77.30309401312843,-77.34955497365445,-76.41631152899936,-75.79760028189048,-75.9643458086066,-76.57401871774346,-76.2920206724666,-76.46578662423417,-77.33362154616043,-77.91422015614808,-78.30242290114984,-78.35062286583707,-79.19264029804617,-78.78421727009118,-79.58849733695388,-79.87350954208523,-80.07151183579117,-79.46560185588896,-79.75534875690937,-80.3064164496027,-80.41895204503089,-80.55773708829656,-81.11216623382643,-80.7250538887456,-79.73764730384573,-80.48795410525054,-81.12191074760631,-80.23106482671574,-79.26889441115782,-79.65584872011095,-79.01471376838163,-78.93475700635463,-78.57257720455527,-79.49638954922557,-78.9504556376487,-79.34357516886666,-80.21309295855463,-80.7719382578507,-80.05825768550858,-80.99059937382117,-80.24746743123978,-79.56986710289493,-79.41462128516287,-80.40651449933648,-80.7197899473831,-81.27005241112784,-81.99794069305062,-81.70971792144701,-82.44604300800711,-81.58109174622223,-82.4552901708521,-82.73720187833533,-83.4333661692217,-84.04497140226886,-84.60699590761214,-84.29857078241184,-85.05100665288046,-84.13585041090846,-85.0779871805571,-85.54937910055742,-86.1262683304958,-85.9534557708539,-85.61015630792826,-85.04888532776386,-85.6275138547644,-85.8116750526242,-86.26395516842604,-86.82051464309916,-87.5472630430013,-88.47145475493744,-88.86138362344354,-88.01573319267482,-87.72252911701798,-87.0072568943724,-87.41471216408536,-87.0648566391319,-87.94545621983707,-87.5671816826798,-87.47589149652049,-87.6038488750346,-86.81789824971929,-85.92713398486376,-85.35351616283879,-86.14732572995126,-85.37282680673525,-84.86908907536417,-84.48401772975922,-83.8216234142892,-83.64194080000743,-82.83307602396235,-81.97912111273035,-82.94680413324386,-82.73992055747658,-82.2259901217185,-83.02257892536,-83.06165788182989,-83.74808832583949,-83.45037477789447,-82.64013280207291,-83.11464811116457,-83.60201091179624,-82.72157684480771,-82.44241868844256,-83.14675475517288,-82.1750134122558,-82.58869829354808,-81.69969829916954,-81.2417109166272,-81.43351741088554,-82.01312742568552,-81.40393034229055,-81.45097186602652,-80.51525786798447,-79.90017149737105,-80.2030461486429,-81.18827288597822,-80.47343208827078,-80.1620730375871,-80.06236113747582,-80.73821821156889,-80.9085412491113,-81.03908514417708,-80.54632177716121,-80.53212668048218,-80.84363991767168,-81.0625730715692,-80.22539094090462,-80.89135817810893,-81.59294915478677,-81.48045596666634,-82.14959007361904,-82.22998432675377,-82.07363198976964,-82.30993995955214,-83.13123781140894,-82.58930866792798,-83.44636661931872,-83.63100689090788,-84.26697373762727,-84.3374801534228,-85.31928818905726,-85.96834942698479,-85.2222634376958,-85.76630040118471,-85.11068043438718,-84.70008519059047,-85.11126036429778,-85.96157169155777,-86.36474099149927,-86.17400076938793,-86.41899961419404,-86.03927804902196,-85.67607715912163,-86.0319754066877,-86.49189919047058,-86.38608657475561,-85.39773047715425,-84.5750913163647,-83.73454439360648,-84.51246419362724,-84.57782046683133,-83.90899520972744,-84.77099391352385,-84.75285703223199,-83.84375384217128,-83.41285895276815,-82.57085333019495,-82.74706494342536,-82.03645688900724,-81.83436772460118,-81.32002797909081,-81.04250366007909,-80.94564736448228,-81.82755630416796,-81.27699766121805,-80.70950694475323,-80.51734824245796,-79.99127621389925,-80.13748371740803,-79.28777806088328,-79.30061538983136,-79.55821023834869,-79.19697092566639,-78.2622658610344,-77.97510007582605,-78.76986402878538,-78.15633146977052,-78.04097831714898,-78.49005399690941,-79.46169327246025,-79.90179055603221,-80.81897804047912,-80.69202623330057,-80.96529100695625,-81.07744860323146,-80.6627112342976,-80.68146147252992,-81.1178034460172,-81.87496973620728,-82.0364974332042,-82.13006407674402,-82.05396828940138,-81.8647968932055,-81.02973794471473,-81.29837645916268,-80.423627209384,-80.01770980423316,-80.50921548204497,-80.98593453411013,-80.88768417714164,-81.44010776281357,-80.57386946771294,-80.99820960173383,-81.89501264411956,-82.802036492154,-83.63795026438311,-84.5234702732414,-83.70796133065596,-83.94855519477278,-84.12659795209765,-83.24894614610821,-83.40402144286782,-82.92179561639205,-82.85839937254786,-82.07148166699335,-81.43892553821206,-80.87514751357958,-81.14907745271921,-81.88570618163794,-82.26408898411319,-81.75728351203725,-82.18061676574871,-82.13920290349051,-82.65706551540643,-83.41446355404332,-84.33847032906488,-85.024361893069,-84.44485233072191,-84.12283969204873,-85.1066325576976,-84.75181896844879,-83.96503554517403,-84.12233884306625,-84.87610094295815,-84.29205233324319,-84.97376719722524,-85.80456455564126,-85.1810691235587,-85.09637592593208,-84.87393537908792,-85.76926622446626,-86.55841715307906,-86.73581244703382,-87.04324376303703,-87.07789536146447,-86.14523117989302,-85.864810555242,-85.15200721658766,-84.2083028005436,-84.62449389649555,-83.680318410974,-84.31188564421609,-84.50249845162034,-84.81540219252929,-84.2333067720756,-83.29357543727383,-82.35958529263735,-82.9047974026762,-82.40391750447452,-82.88552420120686,-83.0913400282152,-82.36950674140826,-82.73890272434801,-82.83785430062562,-83.4959591650404,-84.2251568925567,-83.36150272144005,-83.21777715301141,-83.34839088376611,-82.36392465932295,-82.33215406350791,-83.33030910836533,-83.46578634670004,-83.66910925321281,-83.12755649723113,-83.33265504008159,-84.30441919807345,-83.73846809379756,-82.91049128305167,-82.50405326113105,-81.70481115439907,-81.3558886423707,-81.98245599400252,-81.11258825473487,-81.84699978725985,-81.5316557683982,-81.16593037499115,-80.2409780388698,-80.46272123605013,-80.37125866441056,-79.5624029780738,-79.60208542039618,-79.20069322781637,-79.0491871451959,-79.73744625924155,-80.04775234498084,-80.99912072252482,-81.38128754356876,-82.30560569325462,-81.90267029730603,-82.00106312148273,-82.139941428788,-82.17256437521428,-83.07675176346675,-83.42964469315484,-82.88948430353776,-83.1990007054992,-83.00825372617692,-82.466787670739,-82.63546561263502,-82.85169468494132,-82.79091777466238,-82.66816767770797,-83.06139604421332,-82.629940233659,-81.63806322822347,-81.02887301146984,-81.6484759026207,-81.32586094085127,-80.92208960419521,-80.94738935306668,-81.09934632247314,-81.44465269055218,-81.44139548530802,-81.85380015242845,-81.07027600891888,-80.41520696459338,-80.90297916764393,-80.27426666999236,-79.56270402483642,-80.17860963335261,-80.95474777556956,-80.44126775255427,-81.33946501184255,-81.5397400422953,-81.5586993061006,-80.88127137348056,-80.192881510593,-79.9680170272477,-79.55501760961488,-80.19155004899949,-79.4758758279495,-79.11981689650565,-78.12421504035592,-79.10016766702756,-78.73815931333229,-78.1234638998285,-78.91005751956254,-79.30934683652595,-79.4533964828588,-78.51844288734719,-77.54780919244513,-77.67398843867704,-78.01643675519153,-77.1291379807517,-76.61708172829822,-76.72830243874341,-76.43288325611502,-76.00237361295149,-76.37014685152099,-75.48577440856025,-76.47346789808944,-75.99690724629909,-75.09755736961961,-75.52371960738674,-75.10830680746585,-74.97929578647017,-75.83099687891081,-76.05682001681998,-75.39143853262067,-75.28378116106614,-74.76949754916131,-75.55076378770173,-74.78858353896067,-75.33014388987795,-74.98899482982233,-75.49450352834538,-75.68785247392952,-76.57127381628379,-75.85602323757485,-76.22861520573497,-75.31774253956974,-75.37234989413992,-75.59782757004723,-75.06913339579478,-74.17924977093935,-73.61230679927394,-73.62562448671088,-74.0062837311998,-74.45146718900651,-75.114447562024,-74.5074631748721,-75.30697378749028,-74.76504968805239,-74.22916931891814,-73.46204855386168,-72.79289473453537,-73.16714524524286,-73.93552586296573,-74.91258061304688,-75.23946959618479,-75.77980375103652,-76.51541404379532,-77.07153701828793,-77.65341067733243,-77.2419949863106,-76.75910961814225,-76.2410223800689,-75.9300692868419,-76.5892477016896,-76.90134043293074,-77.8747877618298,-78.42946083005518,-77.68178994348273,-78.1256219339557,-77.29293320467696,-77.05199166527018,-77.10273974435404,-77.32246996182948,-76.89227095711976,-77.51410584989935,-78.34483361756429,-77.7699227319099,-78.21983438264579,-78.26122122490779,-78.0342679922469,-78.63482488039881,-79.58722512377426,-79.71675369562581,-80.5904193483293,-81.4924287116155,-82.00651087518781,-82.24436385417357,-81.91286857845262,-82.56240360531956,-83.28172697685659,-83.89705387596041,-83.01177092036232,-82.9316174313426,-82.36578881181777,-82.460988227278,-81.88849185034633,-82.78033534716815,-83.44481898797676,-84.3789375089109,-84.87406246596947,-85.82377823116258,-84.95682993903756,-84.7993723670952,-85.00156493065879,-84.6089036045596,-83.95019028615206,-84.48238125676289,-84.78045440651476,-84.67780908104032,-84.676264452748,-84.5764633459039,-83.6248160963878,-84.57553548878059,-84.08311758376658,-84.07750403508544,-84.0887163723819,-83.96111068734899,-84.51539561757818,-85.45744660496712,-86.18762706313282,-85.28841695003211,-85.83556736074388,-85.22352323681116,-84.33250401634723,-84.66458147997037,-85.07118308125064,-85.33769926661626,-84.91416648216546,-84.42136682430282,-83.97486718324944,-84.16360532166436,-84.34596930537373,-84.81890954077244,-84.92329281847924,-85.56006746506318,-84.75921376608312,-84.17084934236482,-84.6286769383587,-84.24586527748033,-83.70058320416138,-84.568480507005,-83.64048072090372,-83.22380283428356,-82.25447396794334,-82.09273142321035,-81.18918809574097,-80.41924581630155,-79.57621631631628,-79.65747964801267,-79.74689981667325,-79.92500657960773,-80.36344324750826,-80.41908303741366,-80.10768835386261,-79.83946448145434,-80.3890714654699,-79.59768436430022,-79.4925005370751,-80.05016751401126,-80.54345044540241,-81.20545584475622,-81.9156355978921,-82.46556600136682,-81.52142387768254,-80.63640484958887,-81.00965118361637,-81.86874833889306,-82.1326381280087,-82.2877983613871,-81.82555953040719,-81.83772191684693,-81.5985656469129,-82.0581743423827,-82.20046727498993,-82.58888028655201,-81.78141876263544,-82.64112349692732,-82.61355076730251,-83.60090496391058,-84.41658759023994,-84.25611522933468,-83.66724723903462,-84.02360170055181,-84.29860559431836,-84.59244290087372,-85.430636621546,-84.46148459613323,-84.8141362927854,-83.92658684588969,-84.8979730848223,-85.39893186511472,-85.95975270401686,-86.94244538899511,-87.29914532369003,-87.04765544319525,-87.24029650073498,-86.6604642928578,-86.14248131774366,-86.18925071461126,-86.95202571619302,-86.69697213638574,-87.55918563064188,-87.93827187921852,-88.17961642239243,-88.24824876897037,-88.88074630778283,-88.66695067472756,-88.21856641536579,-88.24425250291824,-88.23082765610889,-88.41098960349336,-88.2358208661899,-87.68369619594887,-88.5017456067726,-88.49236089689657,-88.81221533985808,-88.34415914630517,-88.82226697122678,-88.51736442558467,-89.39135809708387,-89.9757644245401,-90.93463731417432,-91.72610287740827,-91.64992621401325,-91.06907023256645,-91.70132831763476,-91.1258841091767,-90.50928124180064,-90.91520266095176,-90.0906279119663,-89.39068022090942,-88.42933447193354,-88.19980150973424,-88.33348068548366,-89.22677810909227,-90.22030903631821,-89.6608264343813,-89.50918034091592,-89.1373323649168,-89.06490221293643,-88.4347308552824,-89.41589346341789,-88.81283243559301,-87.89761974150315,-87.11710858717561,-88.03866382548586,-87.8797790389508,-88.34825363196433,-88.43806492071599,-89.21554840775207,-89.10699320584536,-88.6425395924598,-88.65488376561552,-87.81584397517145,-86.91855059703812,-86.24419135507196,-85.74391403468326,-84.97054731659591,-84.95530586270615,-84.25254104286432,-84.8849162934348,-84.99465503031388,-84.43057982763276,-85.05062706256285,-84.21449333243072,-84.61981001030654,-84.5057528023608,-84.09552158974111,-85.03609979664907,-85.06940166419372,-85.9569550473243,-85.47113381884992,-85.45274255611002,-85.89597516041249,-86.34059284487739,-85.54268642002717,-85.2321106493473,-85.83908619405702,-86.80592966126278,-86.86906522978097,-86.62056529475376,-87.41875264327973,-87.55266604432836,-86.70666943583637,-87.38223491376266,-87.46069111255929,-87.72496800124645,-87.63579282583669,-86.84114091936499,-87.13200064888224,-86.4457300347276,-86.65723043680191,-86.64369998173788,-86.57287921383977,-86.22200025990605,-87.18052389193326,-87.58456637198105,-88.11019665049389,-89.04009802360088,-88.14576856326312,-87.34014834603295,-86.72449971409515,-86.19648804329336,-87.00972001440823,-87.88588807266206,-88.75348942540586,-88.88134473469108,-87.8931569387205,-87.70787024172023,-87.19605433894321,-87.96150048822165,-88.79040378471836,-88.7925377949141,-88.39272525440902,-87.95725218346342,-88.64320683246478,-87.96731489244848,-87.47500989073887,-86.80316885514185,-87.42232822999358,-88.20437897089869,-88.52987741166726,-88.91237970860675,-89.70245529571548,-89.69538995344192,-89.32857154263183,-89.12895529996604,-89.29300703946501,-89.36380720697343,-88.5237726434134,-87.81067809602246,-87.83420970197767,-88.44495060713962,-87.99587801331654,-87.48298839759082,-88.22360169887543,-88.92755905119702,-88.91056234575808,-88.86670825909823,-89.52351160440594,-90.19251996045932,-91.1260559251532,-90.14214252401143,-89.41262663854286,-89.51797817088664,-89.39631542982534,-90.3432843759656,-91.10236810706556,-91.6122262198478,-91.3806075383909,-91.98403064440936,-92.33173073176295,-92.87624562578276,-92.415144267492,-93.00160186504945,-93.47735199099407,-93.76493337703869,-94.01618821453303,-93.57065281784162,-93.38659590668976,-93.39043534081429,-93.29971728241071,-93.2102987896651,-94.00299785053357,-94.18086754763499,-94.79093302134424,-94.17538226302713,-94.33881653985009,-94.27491238992661,-93.42673578113317,-93.12131893169135,-93.39399448828772,-92.54846388660371,-93.0721355075948,-93.48689683061093,-93.07170011801645,-92.85643814178184,-92.72396163269877,-92.62503931066021,-92.93099838821217,-92.58259374741465,-93.49918406782672,-93.3822497962974,-94.29742230381817,-94.08626026660204,-94.95010219421238,-95.6396364942193,-96.5927673461847,-97.0861596968025,-97.1175231449306,-97.83627154072747,-98.16658849548548,-98.35335839027539,-98.78796505834907,-99.45644319616258,-99.1263450793922,-98.28756822878495,-98.08664927817881,-98.07026815181598,-98.13869796413928,-97.70375401061028,-96.94182444177568,-96.25550585472956,-96.11439718632028,-95.15784425428137,-94.63012951193377,-93.93082950031385,-94.12220452539623,-94.29779284633696,-94.61236546002328,-94.54764825897291,-95.27957745920867,-94.61236172914505,-95.57238022703677,-94.99377364432439,-95.22284151427448,-95.84275259077549,-96.23246735380962,-96.73288039956242,-97.20821985555813,-97.76016835262999,-98.13499486772344,-98.57810166478157,-98.78246924933046,-98.34305852511898,-97.59295787615702,-96.64323886018246,-95.99425015645102,-95.9408500334248,-96.14564735628664,-95.29689423879609,-95.1094817109406,-95.27226572623476,-96.12985573615879,-95.69471585936844,-95.20883521530777,-95.10847727907822,-95.49721103394404,-96.2918830839917,-96.91854683775455,-96.94829298742115,-96.44448339939117,-96.05963955074549,-96.83636608859524,-97.66020521940663,-97.48711266927421,-96.75870256358758,-95.80721230292693,-95.05922010634094,-95.92974990652874,-96.62332898750901,-97.35888923658058,-98.08666040515527,-98.51290528196841,-97.52717370120808,-98.19019772857428,-99.13873048964888,-99.96765390364453,-99.75322615308687,-99.47317858086899,-99.93068144889548,-100.74911721609533,-100.03734934609383,-99.60961571801454,-100.42986508319154,-99.47624090174213,-98.90663129556924,-97.91461862856522,-98.59526334749535,-99.01005345024168,-99.70786707103252,-98.91983767831698,-97.95753146195784,-97.03587239002809,-97.12664257874712,-97.50876834755763,-97.81795847276226,-98.44818364083767,-98.4582466352731,-99.25217048777267,-98.63168382458389,-99.1439897143282,-99.25204929383472,-99.07458394346759,-98.94988314295188,-99.17875575600192,-98.2898377883248,-98.77823142521083,-99.68918452551588,-100.54918664041907,-100.5679393117316,-100.21115544065833,-99.3817722001113,-98.73287637112662,-99.00704978499562,-99.15893783187494,-99.5986400814727,-100.3866304596886,-99.8718934697099,-99.25644431915134,-99.98495190450922,-99.83366354880854,-100.41205451264977,-100.81389761576429,-101.61456757271662,-101.31895046681166,-101.58822819357738,-101.77043551811948,-101.13647619169205,-102.00501505378634,-102.80747812287882,-103.10238129505888,-103.63193503953516,-103.92836057022214,-103.05177425872535,-102.79390079155564,-102.86796059459448,-103.41230186261237,-103.68875526683405,-103.15308867534623,-103.16764915408567,-103.16083150310442,-104.04887381754816,-104.67132252128795,-105.32736846990883,-105.11956647364423,-105.47447321470827,-106.27085854765028,-106.09307557344437,-106.26521113608032,-106.28631712356582,-106.09252371825278,-106.06765074515715,-106.84604073362425,-107.69518201518804,-108.25648391107097,-108.7573481798172,-109.721889029257,-108.89564670016989,-109.12577657494694,-108.39732192642987,-107.39859313797206,-107.31712175905704,-108.20427031815052,-107.5761005054228,-107.6595272384584,-107.54027962265536,-107.23540325602517,-106.56598925031722,-106.78948250599205,-106.21624773228541,-105.61723506683484,-105.42760252207518,-105.38325274689123,-105.3481954340823,-106.3275738065131,-106.96646873652935,-106.69315785262734,-106.94546280987561,-107.56247424986213,-107.05636206967756,-107.86038813041523,-108.53746878774837,-107.90227336669341,-107.37088342709467,-106.44002841971815,-105.82430829666555,-105.20446071075276,-105.5635378905572,-105.69569509057328,-105.19227356696501,-104.4163473462686,-105.35556161310524,-105.57142175035551,-105.4831215152517,-106.44572808826342,-106.41879513999447,-106.18127383105457,-105.70340081863105,-104.81933014653623,-103.8560848813504,-103.36812776047736,-102.98781093209982,-103.48889034474269,-103.19964432762936,-102.60661113914102,-103.21734792273492,-102.55526292836294,-101.61519877333194,-100.84194832434878,-100.67574744531885,-101.42992340866476,-102.3847644221969,-102.43435981264338,-103.12780796037987,-102.96325893513858,-103.02686267904937,-103.5868040653877,-104.41566990595311,-104.01755199069157,-104.55564839299768,-104.69716785103083,-105.69031033292413,-106.2892562202178,-106.09231696510687,-105.52041713753715,-105.2713176398538,-106.26649579172954,-105.83837683778256,-106.33962766965851,-106.95836351672187,-107.23281142814085,-106.43048001732677,-106.11731420597062,-106.45254802983254,-106.0256039951928,-106.58626968739554,-107.2322121905163,-107.86163056641817,-108.17850060528144,-108.70469274604693,-108.27962546190247,-107.83680725097656,-108.13247969606891,-108.56660422170535,-108.60663316119462,-107.83163425885141,-107.30879738694057,-106.83225331641734,-106.5183179131709,-107.51487289229408,-108.01820539822802,-108.32731934729964,-108.39223355054855,-108.20589644089341,-108.34785572113469,-107.88592806039378,-108.68035557912663,-109.42647074442357,-109.30285270698369,-108.67092416668311,-109.44219967490062,-109.14489500690252,-108.92245996044949,-108.00924793910235,-107.46334982244298,-107.0805219556205,-107.35764218354598,-108.29771784646437,-107.63152727624401,-108.61423149798065,-108.43938127532601,-107.97959188651294,-108.8024432528764,-109.42201410699636,-110.211135011632,-111.00917393155396,-110.12090515252203,-109.72961041145027,-110.04607309959829,-109.60099738743156,-109.61924752825871,-110.21784426085651,-109.3262404310517,-109.63740936433896,-110.29300370858982,-109.91710938606411,-109.49000923568383,-109.64700002642348,-108.96285095904022,-108.03800599323586,-107.78402516944334,-107.7854550764896,-107.58701446978375,-107.40032118465751,-106.53715344471857,-106.1527621797286,-106.64558127941564,-106.69587830966339,-106.44324378157035,-107.28284134622663,-107.37177437264472,-107.09051375137642,-107.93307178560644,-107.03133004205301,-106.58157066442072,-107.26844864850864,-107.47899532970041,-107.05114465858787,-107.38409953191876,-107.08263460872695,-106.20563425403088,-107.0816881461069,-106.73349847178906,-107.55822913907468,-106.85756750358269,-106.47379112290218,-107.06972205545753,-106.5461887945421,-107.2166265686974,-107.37684839684516,-108.09414972737432,-107.21714356634766,-107.60608068481088,-107.25232664868236,-106.90839487407357,-106.27821428934112,-105.52964119659737,-105.5993531672284,-106.35171912843361,-106.02181306201965,-105.32561897626147,-105.06158117670566,-104.92308683507144,-105.31695634452626,-106.06194940721616,-106.65450767241418,-107.312081460841,-108.17818841477856,-108.07017327239737,-107.1531837368384,-106.97286126902327,-106.22239643335342,-105.68710516393185,-106.49032633984461,-107.01035549258813,-106.59572364250198,-106.16281845187768,-105.33029126608744,-104.59971298603341,-104.72363403206691,-105.07448077108711,-105.62236176710576,-104.79426028067246,-103.90021706931293,-103.82226296979934,-103.62610825896263,-102.74812517641112,-101.96759802475572,-101.09827584633604,-100.83229104243219,-101.81938880076632,-100.88717570155859,-100.31573581555858,-101.01179557153955,-100.95640442986041,-101.67226143321022,-101.54558171285316,-101.20685626659542,-101.57458616327494,-100.64694989006966,-101.23953930707648,-101.25641713105142,-100.90961937746033,-101.31245762249455,-100.69944647001103,-101.24718075338751,-101.00142638152465,-100.8303998648189,-99.98430598573759,-99.33085260307416,-99.64802833180875,-99.90062644844875,-99.43359615886584,-98.78129376005381,-99.1233552978374,-98.9551339331083,-99.46427794452757,-100.10978028457612,-100.64657317567617,-100.71271850215271,-100.16317609511316,-101.13946532970294,-100.5231306408532,-99.82098680268973,-100.68150844750926,-100.03602899517864,-100.20114730112255,-100.40151877840981,-100.54189425660297,-100.39557954110205,-100.8000700911507,-100.117506749928,-99.79803183022887,-99.63186161033809,-98.95696871727705,-99.62187062529847,-100.00668324157596,-100.36769199883565,-99.6158913904801,-99.79004181921482,-99.36373850982636,-99.68538454314694,-99.12723815953359,-98.3837097613141,-99.04973930167034,-100.00523242913187,-99.10365679301322,-100.02530000172555,-99.33888520812616,-98.97203681617975,-99.57358065899462,-98.74440095759928,-99.40327935712412,-99.72301467694342,-98.96781913097948,-99.16489840531722,-98.87973202299327,-99.51813153829426,-99.155212063808,-98.66343123745173,-98.7871073903516,-99.21573379496112,-98.40639935107902,-98.16114474553615,-98.858631123323,-99.21425739256665,-100.03894189326093,-100.36513654701412,-100.10218072496355,-99.49654108472168,-98.95627080090344,-99.50527606904507,-100.13362657884136,-100.06752996193245,-100.82238823687658,-100.94840779993683,-101.60877844132483,-101.01951262261719,-101.80121631687507,-101.6016592439264,-101.22005165508017,-100.56188376946375,-100.23464304441586,-101.12972760433331,-100.30173110449687,-100.91055824887007,-101.50083151133731,-102.34149628598243,-103.19552991632372,-103.04630671581253,-103.28865312598646,-102.48111838661134,-102.836306062527,-103.77409366657957,-103.71847612038255,-102.85623933468014,-103.16808648686856,-103.34996256325394,-102.63145219394937,-102.48112124251202,-102.59965613856912,-103.49649532139301,-103.09975308040157,-103.17598871700466,-102.39432292664424,-102.49176272097975,-102.64479490788653,-103.59460425609723,-103.59871266363189,-104.39285366656259,-103.5783104756847,-104.37190674198791,-105.20351627096534,-105.47184485150501,-104.84915680531412,-105.4336324497126,-104.56327566597611,-105.323917043861,-104.64640706870705,-105.5532136587426,-104.95380478538573,-104.35509224794805,-103.64944833517075,-103.79193308809772,-103.30365728074685,-103.41439100168645,-103.96900842804462,-103.27943071955815,-103.39868086902425,-102.73150696232915,-102.58096200041473,-102.4376241164282,-101.74136593798175,-101.42631436185911,-101.70226376783103,-101.06338645098731,-100.94707175623626,-101.62633052282035,-101.41815346525982,-101.89593194425106,-102.0610674591735,-102.7289557158947,-103.47469416586682,-103.86032310174778,-104.71338853845373,-104.44194709416479,-104.78590216627344,-104.87123396759853,-104.55818514712155,-105.44732316024601,-105.36271951207891,-105.37752782041207,-105.89248288050294,-106.53917668154463,-106.85527935437858,-106.67401783866808,-107.0156246908009,-107.94501446606591,-108.58270341763273,-109.21492813946679,-109.77515798108652,-109.27418733993545,-108.39535934152082,-108.29561857366934,-109.2162394374609,-108.5348275876604,-108.38127707829699,-107.86554222879931,-108.33198586525396,-108.9795713974163,-109.93051747092977,-109.04216719791293,-109.6636679568328,-109.13656086241826,-108.95759722264484,-107.97001130832359,-107.38680673018098,-108.3774944958277,-108.57549941726029,-109.22433033585548,-108.69598078355193,-109.24190112296492,-108.64564106892794,-108.57946816971526,-109.1217173198238,-108.58862849138677,-108.19908930081874,-107.96391909383237,-107.56481682043523,-108.25238673761487,-108.18327206280082,-107.27991489879787,-106.8866611472331,-107.60525603964925,-107.41671332065016,-108.15917429048568,-107.3688512337394,-108.0478293360211,-107.96255065640435,-107.6745573640801,-107.73517552716658,-107.690756006632,-108.28152162209153,-107.75424265116453,-108.59714343957603,-109.11289469571784,-110.00413345871493,-110.65715955616906,-111.21993697108701,-111.2586904228665,-111.38583169924095,-112.02704636566341,-111.91587037639692,-111.9164657862857,-111.17426925385371,-110.63273641141132,-110.36739623593166,-111.33331316430122,-110.39383520185947,-109.4077623556368,-109.33635150268674,-109.26757854921743,-110.07910001603886,-110.29740951070562,-109.53729647025466,-108.54078380344436,-107.61684517003596,-107.77800513291731,-107.13758231978863,-106.22188548417762,-105.45032581686974,-105.99535218439996,-106.00311626447365,-105.33608005847782,-106.07831135578454,-106.55031390069053,-105.6839635442011,-106.46308348607272,-107.1317050610669,-108.09749834658578,-107.28791964240372,-106.82952032564208,-105.9158435612917,-105.70523073431104,-106.36862797755748,-105.8840354080312,-106.51439632289112,-106.50166256399825,-106.43280433304608,-107.35329240746796,-108.29559266846627,-108.35949594760314,-108.76189443841577,-109.05997529765591,-109.4360274458304,-108.7913540233858,-108.40625055041164,-108.28016743529588,-108.03107101935893,-107.86617807019502,-108.4764804826118,-108.43859469331801,-108.77962253475562,-108.94715637527406,-109.73796852258965,-109.52642593719065,-109.29064107174054,-109.42121522501111,-110.06455555604771,-110.44829534227028,-110.40872508799657,-110.03768403455615,-109.43352927127853,-109.19467112468556,-108.27812153147534,-109.07853901851922,-109.80790804652497,-109.81287982035428,-110.34995884308591,-109.66085351398215,-108.78403005003929,-108.10052805487067,-108.23394470475614,-108.03090326022357,-107.60075046308339,-106.91306161461398,-107.5930744940415,-107.40605991799384,-108.01831752154976,-107.65594753948972,-108.39867818076164,-109.16666177753359,-109.80577036552131,-109.12775165587664,-108.59894948033616,-107.79150552395731,-108.19890779815614,-108.51785728847608,-108.42084031691775,-108.16361617576331,-109.00044805370271,-108.73467524116859,-108.34932491695508,-107.89937744196504,-108.37594531057402,-107.92287938762456,-107.09650349942967,-107.15708614233881,-107.65877433866262,-108.20041575841606,-107.25033322069794,-106.59218696691096,-106.70284671708941,-107.40166571969166,-108.0479999370873,-107.93682352174073,-107.72777068475261,-107.4935333696194,-106.7166843265295,-107.45534755662084,-107.62191011477262,-108.22297407593578,-108.72287173802033,-109.67641699826345,-110.63983683101833,-111.41002567159012,-111.46606689086184,-111.35143649159,-112.15433326456696,-112.54708416061476,-112.93254642793909,-113.70163385337219,-112.89416109444574,-113.65161942550912,-114.13958794111386,-114.33089032862335,-114.69065426848829,-115.23562597343698,-115.48939224053174,-115.4208690165542,-115.80793675547466,-114.92561672860757,-114.53769780369475,-113.99913088791072,-113.96914883842692,-114.14986158208922,-113.5016183834523,-114.26145200477913,-115.16361549915746,-114.67205313360319,-114.03684926824644,-114.08872530981898,-115.04152516182512,-114.50312642753124,-113.51181398890913,-114.37261020438746,-115.16655433457345,-115.54707446927205,-116.33316310914233,-116.02667203359306,-115.83650645939633,-116.08117616735399,-115.6577122816816,-116.40625676000491,-115.71117327129468,-115.12062978139147,-115.65206487150863,-116.5138525175862,-117.17416886938736,-117.44985591899604,-117.28358961595222,-117.49666073126718,-116.54317591711879,-116.00916978809983,-116.92255927575752,-117.3759259856306,-116.45785733358935,-117.04549485491589,-116.37688155425712,-116.68373602442443,-117.5353097813204,-116.75713475281373,-117.59661347139627,-118.48446681909263,-117.96667131828144,-118.94791331281886,-118.51474251179025,-118.75584753695875,-118.2348032547161,-119.20806961227208,-119.22578287590295,-118.97060522763059,-119.24962439527735,-119.49804118881002,-118.59501538984478,-118.716761671938,-118.98176425648853,-118.44868589844555,-119.31703705480322,-119.39590216055512,-120.35781077714637,-120.21858018822968,-121.12364442786202,-121.0136346872896,-121.5197537955828,-121.17510539432988,-120.84878149768338,-120.93105979077518,-120.03981847222894,-120.6863738046959,-120.01988116838038,-120.35445027193055,-121.02502111857757,-120.03480911068618,-120.19666520133615,-119.95804710313678,-119.74808581965044,-119.48225557385013,-119.22245618607849,-119.47100285533816,-120.26772174565122,-120.99138913815841,-121.82309735473245,-121.8943443982862,-121.10348903341219,-122.07314963079989,-121.77911528758705,-120.92297832109034,-120.41833389922976,-120.99915723362938,-121.77420416241512,-122.52695296378806,-122.16567789344117,-121.89539899909869,-122.4209824455902,-122.28617202537134,-121.89546506898478,-122.37908463878557,-122.93856974085793,-123.71088000899181,-123.61737151676789,-122.7932262737304,-123.3790549361147,-122.7085428936407,-121.73885622806847,-122.56668752012774,-122.64722596853971,-122.64576553134248,-122.83806405868381,-123.0731500084512,-123.74198717670515,-124.17538993386552,-124.06381521979347,-123.27553544705734,-123.99001828208566,-123.8977860850282,-124.35644758399576,-124.16853176662698,-124.83303776336834,-124.79529390623793,-124.45070854015648,-124.16819643136114,-123.67293579503894,-124.45223029330373,-123.55595067190006,-124.49459100980312,-124.00666669104248,-124.70952731650323,-124.84432862931862,-125.37040467234328,-125.5399582637474,-126.1275841598399,-125.4520537960343,-125.00584621215239,-125.97998807905242,-125.86858356045559,-125.99483759375289,-126.50845141569152,-125.9567378219217,-125.63429100159556,-124.92791575100273,-125.45783552760258,-125.42458601668477,-125.10834529623389,-124.37106216046959,-125.3495524902828,-124.52548500569537,-124.25703863846138,-123.37068492919207,-124.01722038723528,-124.5449714413844,-124.7483813050203,-125.47000863403082,-124.50775311980397,-123.53231108933687,-123.9939915719442,-123.67178199999034,-123.55152527615428,-124.32570127025247,-125.06239158194512,-124.10600945679471,-123.58386390656233,-122.91795029584318,-123.6554436837323,-122.78828201256692,-122.79123259847984,-123.18015118781477,-124.02848267136142,-124.39844154100865,-124.67130824737251,-123.84203102067113,-124.7279839310795,-124.03116067638621,-124.19456918304786,-125.07131160190329,-125.22880990058184,-124.43128758808598,-125.3172204210423,-126.18645040085539,-125.97826628573239,-125.97321088286117,-126.34360338933766,-127.11383750708774,-127.95072986977175,-128.83924346230924,-128.46170847397298,-127.97133058588952,-127.5856212680228,-128.49057899275795,-128.1001054868102,-128.25792651530355,-127.97061602212489,-127.88749208720401,-127.92127849720418,-127.48181533021852,-126.80155153479427,-126.887577468995,-126.5593947339803,-126.53289465745911,-126.2935869898647,-125.923316326458,-125.47937059029937,-125.42823856463656,-125.04341386910528,-124.71482927165926,-125.4742836500518,-125.99152352893725,-125.50892827380449,-125.90382453333586,-126.63443865440786,-126.95254159532487,-127.66668215906247,-128.60299012809992,-129.40669418219477,-128.46107401000336,-128.62698211381212,-128.07530707167462,-129.05253961775452,-128.35967007093132,-128.28030274016783,-128.49764172313735,-128.00223112292588,-127.65045082988217,-128.3920576213859,-128.31845386698842,-127.41894598165527,-126.95791216474026,-127.67017310112715,-126.72739209141582,-126.6094343806617,-125.71313822036609,-126.06878218147904,-126.19327751733363,-126.88801535358652,-127.8523498121649,-127.34101277031004,-128.1507910094224,-129.1441678730771,-129.87481542024761,-128.99223382025957,-129.69924285262823,-129.31163619738072,-129.10899189393967,-128.19721455406398,-127.5326842777431,-128.317409244366,-128.24111955985427,-129.12597004836425,-128.41178471548483,-127.87916371878237,-128.81043728580698,-129.12566591007635,-128.15058700414374,-127.26833602460101,-126.46778790326789,-126.3797987527214,-126.62735943356529,-127.08757682098076,-126.59619721258059,-127.12658312916756,-126.68767110258341,-126.35220434935763,-126.90962812537327,-126.90492298454046,-125.93974349275231,-125.66719850059599,-126.43686167150736,-126.27285006036982,-127.15604324406013,-126.3292324366048,-126.36484154546633,-126.4365070858039,-127.26343475840986,-127.9973009005189,-128.77765962155536,-128.2711417870596,-128.22164469445124,-127.68929133284837,-127.351084231399,-127.39384167548269,-127.37917377986014,-126.87165128067136,-126.18924232805148,-127.08732868544757,-127.40652279416099,-126.46350049274042,-126.77843984449282,-126.87411462096497,-127.60041019553319,-127.88926549861208,-128.1247322675772,-127.58978205127642,-127.75574002694339,-127.03293087007478,-127.53292901953682,-127.81329387566075,-128.3626783080399,-128.21504950383678,-127.3486358015798,-126.35334670729935,-126.5954429358244,-127.16011216398329,-127.369275579229,-126.37100573955104,-125.82826565671712,-125.44237756263465,-124.96950593264773,-125.08819769928232,-124.29636248201132,-123.87130144936964,-124.17886685300618,-123.23627971112728,-123.24481826974079,-123.09093512874097,-124.06875466555357,-125.05050514824688,-125.58858840307221,-124.80713808350265,-125.39321205206215,-125.25156455440447,-126.1617110860534,-125.82850962365046,-125.79140176437795,-126.1703748172149,-126.08738289074972,-125.99412509566173,-125.808004419785,-125.30274808919057,-125.78676914377138,-125.65868105692789,-125.97348453802988,-125.79837397532538,-125.12082184059545,-125.63574367156252,-125.20417340379208,-124.91025525610894,-125.79229903453961,-124.95980672491714,-123.9635632536374,-123.62302799196914,-123.28643821692094,-122.78993482654914,-122.52287082606927,-122.29122363682836,-122.6698942007497,-121.70964420167729,-121.62077582860366,-120.72871654853225,-120.6771040535532,-120.07344965217635,-119.16184175340459,-120.06125875934958,-120.51258211629465,-120.26950380718336,-119.29868436185643,-119.53742303838953,-119.38978591561317,-119.78179688332602,-119.33453266462311,-119.19370906613767,-119.15384281985462,-119.90205218922347,-120.80477654607967,-120.25456093717366,-119.48294589435682,-118.86923366878182,-118.66375871514902,-117.93405072158203,-118.62687339447439,-117.72996839415282,-117.74413830088452,-118.09050268912688,-118.92620966816321,-119.21132274717093,-118.4496166552417,-118.89519083919004,-118.61832337407395,-118.55436222348362,-118.0754724778235,-117.34086238453165,-116.63067763112485,-115.70316111762077,-115.40540210343897,-115.06173889851198,-115.37094448460266,-114.60341189522296,-114.83352726511657,-114.67914484534413,-115.46642361348495,-115.32729971129447,-114.84687353949994,-114.59762034425512,-114.59065465815365,-114.22358305426314,-113.83441757550463,-114.25280216475949,-115.20450606197119,-115.09918941417709,-114.30278949299827,-113.33160589355975,-113.16945886705071,-114.02928041899577,-113.50442148232833,-113.48028199607506,-112.49329241085798,-113.44168526632711,-112.8695787359029,-112.48113763611764,-112.55913558602333,-113.50986380968243,-114.07228462398052,-114.60345196723938,-114.45520014455542,-113.76156385755166,-114.33662616321817,-115.15964258788154,-115.40358571242541,-114.48225347697735,-115.44929790729657,-115.09468202712014,-114.54854562273249,-114.50118047604337,-114.1983574712649,-114.05195824429393,-113.6092738029547,-113.42573079140857,-112.89314408274367,-112.30263066245243,-111.33666912326589,-112.11050549242646,-112.08719328138977,-112.01926194503903,-112.62118319189176,-113.2366711939685,-113.3897115024738,-112.43279453413561,-112.80240169912577,-112.11769082210958,-112.83662047237158,-112.5132100675255,-112.18825568631291,-112.74671062501147,-113.6271062400192,-113.95368254603818,-114.6494695036672,-114.27945934189484,-115.21494918363169,-116.1081739673391,-116.03351265471429,-115.17338521080092,-115.10835281806067,-114.96104725729674,-115.9491071361117,-115.70324483746663,-116.43997793737799,-117.34049375727773,-116.73402398452163,-116.08845911268145,-116.82339568948373,-116.91195041220635,-117.60476570995525,-118.44556007627398,-118.87442907132208,-117.93015302997082,-118.31374255055562,-118.36730460356921,-119.32110199239105,-119.40833479166031,-119.83111699903384,-120.37754644267261,-120.80830529984087,-120.1100248368457,-119.34528997959569,-120.01918688975275,-120.43634951626882,-119.8423768132925,-120.6509382110089,-121.57642817730084,-121.71603557560593,-121.76290999073535,-122.46166979940608,-122.02445530425757,-122.32397078117356,-122.04285056330264,-121.45170728163794,-120.71157398819923,-120.36122561665252,-120.17105412203819,-119.256891079247,-119.5757239763625,-119.29437963524833,-120.19907767185941,-119.29509585723281,-120.26163556985557,-120.06773594859987,-119.4074070234783,-120.19459375459701,-119.80068509373814,-118.80073026102036,-118.78669819515198,-117.9020794047974,-117.6832053498365,-118.50276636565104,-118.50561907002702,-117.62679872149602,-118.24382586730644,-118.07649022853002,-118.12201482849196,-118.13676275964826,-118.04548487113789,-118.13473449787125,-117.72050536982715,-118.1960085881874,-117.58959115855396,-116.91010429989547,-116.6641230834648,-116.39379988098517,-117.35664627980441,-116.74089268175885,-116.84662680281326,-116.001666510012,-116.56697799498215,-116.95693001896143,-117.18190613249317,-116.90248751826584,-116.50656506093219,-117.23819978861138,-117.71343786409125,-117.68539379863068,-117.56991504086182,-118.32219747360796,-117.51357054244727,-118.35975990956649,-117.75342878000811,-118.39190704468638,-118.0736054321751,-117.10758580034599,-117.37033609114587,-116.90340066421777,-116.77502184547484,-117.7652865680866,-117.19334157509729,-116.56804871931672,-117.1394103015773,-118.10722195636481,-117.30133316246793,-116.89281012443826,-117.15047710342333,-117.86997890006751,-118.12103087641299,-117.56014319136739,-116.65913923690096,-117.64816111326218,-117.55656203627586,-117.07949641859159,-116.23443147726357,-116.08006627485156,-116.48591674445197,-116.3062294065021,-116.09374907007441,-116.68995191156864,-116.93865965306759,-117.3210796136409,-117.05289846332744,-116.57937412662432,-116.90255585778505,-117.48663586284965,-116.95574502274394,-116.30373610369861,-116.98140710871667,-116.21991335367784,-116.33499188255519,-116.43212354229763,-115.87440462782979,-114.90190302440897,-115.41066983994097,-115.4520915420726,-115.41053351247683,-115.61666605202481,-115.007169701159,-115.5229701558128,-114.55716479336843,-113.70181079674512,-113.31607007049024,-114.21677114721388,-114.85013372451067,-114.65847189025953,-114.90506727993488,-115.62164677027613,-114.93380120862275,-114.09663807041943,-113.30214771209285,-113.06300835963339,-113.0574176684022,-113.67077190196142,-112.73289249418303,-112.17723937984556,-112.59547778218985,-112.73795732669532,-112.85054152598605,-112.98949187342077,-112.68492119200528,-113.41749276453629,-112.90430834703147,-112.54071973310784,-112.14479837194085,-112.42996534192935,-112.45194144174457,-111.64558061212301,-110.77301672799513,-110.7555515980348,-110.52531903516501,-109.80982073349878,-109.71025198092684,-110.22056449949741,-110.27703567128628,-110.99194221710786,-110.74055062187836,-110.9578829202801,-110.25623902725056,-109.61499208910391,-109.60540670948103,-109.2247548517771,-108.3659390527755,-108.76292466698214,-107.92077848687768,-108.6104843057692,-108.65642050560564,-109.26756293745711,-110.10252524865791,-109.90682328073308,-109.65551270125434,-108.80039666919038,-109.60775579698384,-110.44799500331283,-111.02097247727215,-111.19461707770824,-110.97558538103476,-111.90064067021012,-111.00629174895585,-110.7674105972983,-111.27375096362084,-110.31982951844111,-110.138932404574,-110.74686245433986,-110.41353015881032,-110.62007132871076,-111.3985284762457,-110.85597908031195,-110.0785518148914,-111.00396347464994,-111.93626668397337,-111.7389285354875,-110.97364066680893,-111.92799910809845,-111.7586604305543,-111.94236844498664,-111.29887019470334,-111.80359217012301,-112.49281202070415,-112.10284609626979,-112.48924042470753,-112.994548343122,-112.33563360199332,-112.76939486525953,-113.30855576368049,-113.84012810280547,-112.93920087162405,-113.46382278995588,-113.84693732252344,-114.17956599360332,-113.95449464116246,-113.53708410542458,-114.2477187179029,-114.88201540801674,-114.96006422257051,-114.25956434756517,-113.70802857587114,-113.96873141266406,-114.79963768692687,-115.11313967453316,-115.41221275692806,-115.33398390747607,-115.943045578897,-116.56548218382522,-116.27894539013505,-116.91466627223417,-116.7780415774323,-117.29052043845877,-117.83048896864057,-117.40062959771603,-118.1780561725609,-117.91256196564063,-117.13331379042938,-116.37017151387408,-116.78128708573058,-116.92361724190414,-117.55018475558609,-117.34441800322384,-117.26074955519289,-116.83255986496806,-116.55551840085536,-116.70218287780881,-116.06935567781329,-115.67627935344353,-115.5458188187331,-115.81896336656064,-116.39539528824389,-117.34583897935227,-117.96568442927673,-118.54459123825654,-119.00995655171573,-118.60585067979991,-119.45398041140288,-118.78002901887521,-118.39943068986759,-118.18378432560712,-119.1135815368034,-118.43746435502544,-117.70592783996835,-118.32574269874021,-117.55708295479417,-117.51835612906143,-117.92506526829675,-118.54802453750744,-117.68772779684514,-118.42294951342046,-118.30917627131566,-118.00939332647249,-118.83272116445005,-118.94386108685285,-119.79687052499503,-119.00927961291745,-118.57686891127378,-119.45990774733946,-118.98389168316498,-118.46465921122581,-119.00353155005723,-119.24001950118691,-119.88970340974629,-119.23049286007881,-119.02278870716691,-118.5341090974398,-117.73446164978668,-118.40375383151695,-117.53312968602404,-118.45821571163833,-117.80072610313073,-116.8850251310505,-117.83221009606495,-118.54065598687157,-117.55282175820321,-118.46351605048403,-119.31760883098468,-118.40874511143193,-119.07551488419995,-119.39228932466358,-119.76711103925481,-120.44043790223077,-121.27254249760881,-121.74020049348474,-121.17283119028434,-121.95238403743133,-121.92750205285847,-122.67587846890092,-122.15285546891391,-122.25634807441384,-122.37931638443843,-123.31490037310869,-122.7224476672709,-121.77456254325807,-120.92210583435372,-120.66851144237444,-120.2054241374135,-120.86301332479343,-121.32253281818703,-120.64298115670681,-120.82000179542229,-121.43762162141502,-121.05647572176531,-121.25250541558489,-122.03367322683334,-122.9080230393447,-122.25113460514694,-122.60563134728,-121.7984524318017,-122.33522299677134,-121.48574824770913,-121.83832301618531,-120.8733159522526,-120.00987306889147,-120.93911276524886,-120.95564250601456,-120.29162893258035,-121.24226137530059,-121.43994411407039,-122.13255968224257,-122.58699095668271,-123.1182841239497,-122.49317155173048,-122.95208222931251,-122.63542452408001,-122.72252229321748,-123.26150827808306,-122.46983879990876,-121.63762024557218,-121.68072965973988,-121.58030120655894,-121.58044410217553,-120.64241356635466,-120.93596335407346,-121.2109891991131,-120.84678056789562,-121.31098941294476,-120.67184798279777,-120.67560998629779,-120.45357878692448,-121.0005612517707,-120.83295123651624,-119.88790369872004,-120.27386693283916,-119.29210667777807,-118.45693084737286,-118.60798511002213,-117.83311422774568,-118.08837948553264,-118.25265216641128,-117.91167827229947,-117.15029939217493,-117.74321550689638,-116.96155766863376,-116.03664556285366,-116.94759527686983,-116.48148436145857,-115.79449060419574,-116.25480377255008],"type":"scatter3d"},{"customdata":[["2024-07-24T17:35:06.010000"],["2024-07-24T17:35:07.010000"],["2024-07-24T17:35:08.010000"],["2024-07-24T17:35:09.010000"],["2024-07-24T17:35:10.010000"],["2024-07-24T17:35:11.010000"],["2024-07-24T17:35:12.010000"],["2024-07-24T17:35:13.010000"],["2024-07-24T17:35:14.010000"],["2024-07-24T17:35:15.010000"],["2024-07-24T17:35:16.010000"],["2024-07-24T17:35:17.010000"],["2024-07-24T17:35:18.010000"],["2024-07-24T17:35:19.010000"],["2024-07-24T17:35:20.010000"],["2024-07-24T17:35:21.010000"],["2024-07-24T17:35:22.010000"],["2024-07-24T17:35:23.010000"],["2024-07-24T17:35:24.010000"],["2024-07-24T17:35:25.010000"],["2024-07-24T17:35:26.010000"],["2024-07-24T17:35:27.010000"],["2024-07-24T17:35:28.010000"],["2024-07-24T17:35:29.010000"],["2024-07-24T17:35:30.010000"],["2024-07-24T17:35:31.010000"],["2024-07-24T17:35:32.010000"],["2024-07-24T17:35:33.010000"],["2024-07-24T17:35:34.010000"],["2024-07-24T17:35:35.010000"],["2024-07-24T17:35:36.010000"],["2024-07-24T17:35:37.010000"],["2024-07-24T17:35:38.010000"],["2024-07-24T17:35:39.010000"],["2024-07-24T17:35:40.010000"],["2024-07-24T17:35:41.010000"],["2024-07-24T17:35:42.010000"],["2024-07-24T17:35:43.010000"],["2024-07-24T17:35:44.010000"],["2024-07-24T17:35:45.010000"],["2024-07-24T17:35:46.010000"],["2024-07-24T17:35:47.010000"],["2024-07-24T17:35:48.010000"],["2024-07-24T17:35:49.010000"],["2024-07-24T17:35:50.010000"],["2024-07-24T17:35:51.010000"],["2024-07-24T17:35:52.010000"],["2024-07-24T17:35:53.010000"],["2024-07-24T17:35:54.010000"],["2024-07-24T17:35:55.010000"],["2024-07-24T17:35:56.010000"],["2024-07-24T17:35:57.010000"],["2024-07-24T17:35:58.010000"],["2024-07-24T17:35:59.010000"],["2024-07-24T17:36:00.010000"],["2024-07-24T17:36:01.010000"],["2024-07-24T17:36:02.010000"],["2024-07-24T17:36:03.010000"],["2024-07-24T17:36:04.010000"],["2024-07-24T17:36:05.010000"],["2024-07-24T17:36:06.010000"],["2024-07-24T17:36:07.010000"],["2024-07-24T17:36:08.010000"],["2024-07-24T17:36:09.010000"],["2024-07-24T17:36:10.010000"],["2024-07-24T17:36:11.010000"],["2024-07-24T17:36:12.010000"],["2024-07-24T17:36:13.010000"],["2024-07-24T17:36:14.010000"],["2024-07-24T17:36:15.010000"],["2024-07-24T17:36:16.010000"],["2024-07-24T17:36:17.010000"],["2024-07-24T17:36:18.010000"],["2024-07-24T17:36:19.010000"],["2024-07-24T17:36:20.010000"],["2024-07-24T17:36:21.010000"],["2024-07-24T17:36:22.010000"],["2024-07-24T17:36:23.010000"],["2024-07-24T17:36:24.010000"],["2024-07-24T17:36:25.010000"],["2024-07-24T17:36:26.010000"],["2024-07-24T17:36:27.010000"],["2024-07-24T17:36:28.010000"],["2024-07-24T17:36:29.010000"],["2024-07-24T17:36:30.010000"],["2024-07-24T17:36:31.010000"],["2024-07-24T17:36:32.010000"],["2024-07-24T17:36:33.010000"],["2024-07-24T17:36:34.010000"],["2024-07-24T17:36:35.010000"],["2024-07-24T17:36:36.010000"],["2024-07-24T17:36:37.010000"],["2024-07-24T17:36:38.010000"],["2024-07-24T17:36:39.010000"],["2024-07-24T17:36:40.010000"],["2024-07-24T17:36:41.010000"],["2024-07-24T17:36:42.010000"],["2024-07-24T17:36:43.010000"],["2024-07-24T17:36:44.010000"],["2024-07-24T17:36:45.010000"],["2024-07-24T17:36:46.010000"],["2024-07-24T17:36:47.010000"],["2024-07-24T17:36:48.010000"],["2024-07-24T17:36:49.010000"],["2024-07-24T17:36:50.010000"],["2024-07-24T17:36:51.010000"],["2024-07-24T17:36:52.010000"],["2024-07-24T17:36:53.010000"],["2024-07-24T17:36:54.010000"],["2024-07-24T17:36:55.010000"],["2024-07-24T17:36:56.010000"],["2024-07-24T17:36:57.010000"],["2024-07-24T17:36:58.010000"],["2024-07-24T17:36:59.010000"],["2024-07-24T17:37:00.010000"],["2024-07-24T17:37:01.010000"],["2024-07-24T17:37:02.010000"],["2024-07-24T17:37:03.010000"],["2024-07-24T17:37:04.010000"],["2024-07-24T17:37:05.010000"],["2024-07-24T17:37:06.010000"],["2024-07-24T17:37:07.010000"],["2024-07-24T17:37:08.010000"],["2024-07-24T17:37:09.010000"],["2024-07-24T17:37:10.010000"],["2024-07-24T17:37:11.010000"],["2024-07-24T17:37:12.010000"],["2024-07-24T17:37:13.010000"],["2024-07-24T17:37:14.010000"],["2024-07-24T17:37:15.010000"],["2024-07-24T17:37:16.010000"],["2024-07-24T17:37:17.010000"],["2024-07-24T17:37:18.010000"],["2024-07-24T17:37:19.010000"],["2024-07-24T17:37:20.010000"],["2024-07-24T17:37:21.010000"],["2024-07-24T17:37:22.010000"],["2024-07-24T17:37:23.010000"],["2024-07-24T17:37:24.010000"],["2024-07-24T17:37:25.010000"],["2024-07-24T17:37:26.010000"],["2024-07-24T17:37:27.010000"],["2024-07-24T17:37:28.010000"],["2024-07-24T17:37:29.010000"],["2024-07-24T17:37:30.010000"],["2024-07-24T17:37:31.010000"],["2024-07-24T17:37:32.010000"],["2024-07-24T17:37:33.010000"],["2024-07-24T17:37:34.010000"],["2024-07-24T17:37:35.010000"],["2024-07-24T17:37:36.010000"],["2024-07-24T17:37:37.010000"],["2024-07-24T17:37:38.010000"],["2024-07-24T17:37:39.010000"],["2024-07-24T17:37:40.010000"],["2024-07-24T17:37:41.010000"],["2024-07-24T17:37:42.010000"],["2024-07-24T17:37:43.010000"],["2024-07-24T17:37:44.010000"],["2024-07-24T17:37:45.010000"],["2024-07-24T17:37:46.010000"],["2024-07-24T17:37:47.010000"],["2024-07-24T17:37:48.010000"],["2024-07-24T17:37:49.010000"],["2024-07-24T17:37:50.010000"],["2024-07-24T17:37:51.010000"],["2024-07-24T17:37:52.010000"],["2024-07-24T17:37:53.010000"],["2024-07-24T17:37:54.010000"],["2024-07-24T17:37:55.010000"],["2024-07-24T17:37:56.010000"],["2024-07-24T17:37:57.010000"],["2024-07-24T17:37:58.010000"],["2024-07-24T17:37:59.010000"],["2024-07-24T17:38:00.010000"],["2024-07-24T17:38:01.010000"],["2024-07-24T17:38:02.010000"],["2024-07-24T17:38:03.010000"],["2024-07-24T17:38:04.010000"],["2024-07-24T17:38:05.010000"],["2024-07-24T17:38:06.010000"],["2024-07-24T17:38:07.010000"],["2024-07-24T17:38:08.010000"],["2024-07-24T17:38:09.010000"],["2024-07-24T17:38:10.010000"],["2024-07-24T17:38:11.010000"],["2024-07-24T17:38:12.010000"],["2024-07-24T17:38:13.010000"],["2024-07-24T17:38:14.010000"],["2024-07-24T17:38:15.010000"],["2024-07-24T17:38:16.010000"],["2024-07-24T17:38:17.010000"],["2024-07-24T17:38:18.010000"],["2024-07-24T17:38:19.010000"],["2024-07-24T17:38:20.010000"],["2024-07-24T17:38:21.010000"],["2024-07-24T17:38:22.010000"],["2024-07-24T17:38:23.010000"],["2024-07-24T17:38:24.010000"],["2024-07-24T17:38:25.010000"],["2024-07-24T17:38:26.010000"],["2024-07-24T17:38:27.010000"],["2024-07-24T17:38:28.010000"],["2024-07-24T17:38:29.010000"],["2024-07-24T17:38:30.010000"],["2024-07-24T17:38:31.010000"],["2024-07-24T17:38:32.010000"],["2024-07-24T17:38:33.010000"],["2024-07-24T17:38:34.010000"],["2024-07-24T17:38:35.010000"],["2024-07-24T17:38:36.010000"],["2024-07-24T17:38:37.010000"],["2024-07-24T17:38:38.010000"],["2024-07-24T17:38:39.010000"],["2024-07-24T17:38:40.010000"],["2024-07-24T17:38:41.010000"],["2024-07-24T17:38:42.010000"],["2024-07-24T17:38:43.010000"],["2024-07-24T17:38:44.010000"],["2024-07-24T17:38:45.010000"],["2024-07-24T17:38:46.010000"],["2024-07-24T17:38:47.010000"],["2024-07-24T17:38:48.010000"],["2024-07-24T17:38:49.010000"],["2024-07-24T17:38:50.010000"],["2024-07-24T17:38:51.010000"],["2024-07-24T17:38:52.010000"],["2024-07-24T17:38:53.010000"],["2024-07-24T17:38:54.010000"],["2024-07-24T17:38:55.010000"],["2024-07-24T17:38:56.010000"],["2024-07-24T17:38:57.010000"],["2024-07-24T17:38:58.010000"],["2024-07-24T17:38:59.010000"],["2024-07-24T17:39:00.010000"],["2024-07-24T17:39:01.010000"],["2024-07-24T17:39:02.010000"],["2024-07-24T17:39:03.010000"],["2024-07-24T17:39:04.010000"],["2024-07-24T17:39:05.010000"],["2024-07-24T17:39:06.010000"],["2024-07-24T17:39:07.010000"],["2024-07-24T17:39:08.010000"],["2024-07-24T17:39:09.010000"],["2024-07-24T17:39:10.010000"],["2024-07-24T17:39:11.010000"],["2024-07-24T17:39:12.010000"],["2024-07-24T17:39:13.010000"],["2024-07-24T17:39:14.010000"],["2024-07-24T17:39:15.010000"],["2024-07-24T17:39:16.010000"],["2024-07-24T17:39:17.010000"],["2024-07-24T17:39:18.010000"],["2024-07-24T17:39:19.010000"],["2024-07-24T17:39:20.010000"],["2024-07-24T17:39:21.010000"],["2024-07-24T17:39:22.010000"],["2024-07-24T17:39:23.010000"],["2024-07-24T17:39:24.010000"],["2024-07-24T17:39:25.010000"],["2024-07-24T17:39:26.010000"],["2024-07-24T17:39:27.010000"],["2024-07-24T17:39:28.010000"],["2024-07-24T17:39:29.010000"],["2024-07-24T17:39:30.010000"],["2024-07-24T17:39:31.010000"],["2024-07-24T17:39:32.010000"],["2024-07-24T17:39:33.010000"],["2024-07-24T17:39:34.010000"],["2024-07-24T17:39:35.010000"],["2024-07-24T17:39:36.010000"],["2024-07-24T17:39:37.010000"],["2024-07-24T17:39:38.010000"],["2024-07-24T17:39:39.010000"],["2024-07-24T17:39:40.010000"],["2024-07-24T17:39:41.010000"],["2024-07-24T17:39:42.010000"],["2024-07-24T17:39:43.010000"],["2024-07-24T17:39:44.010000"],["2024-07-24T17:39:45.010000"],["2024-07-24T17:39:46.010000"],["2024-07-24T17:39:47.010000"],["2024-07-24T17:39:48.010000"],["2024-07-24T17:39:49.010000"],["2024-07-24T17:39:50.010000"],["2024-07-24T17:39:51.010000"],["2024-07-24T17:39:52.010000"],["2024-07-24T17:39:53.010000"],["2024-07-24T17:39:54.010000"],["2024-07-24T17:39:55.010000"],["2024-07-24T17:39:56.010000"],["2024-07-24T17:39:57.010000"],["2024-07-24T17:39:58.010000"],["2024-07-24T17:39:59.010000"],["2024-07-24T17:40:00.010000"],["2024-07-24T17:40:01.010000"],["2024-07-24T17:40:02.010000"],["2024-07-24T17:40:03.010000"],["2024-07-24T17:40:04.010000"],["2024-07-24T17:40:05.010000"],["2024-07-24T17:40:06.010000"],["2024-07-24T17:40:07.010000"],["2024-07-24T17:40:08.010000"],["2024-07-24T17:40:09.010000"],["2024-07-24T17:40:10.010000"],["2024-07-24T17:40:11.010000"],["2024-07-24T17:40:12.010000"],["2024-07-24T17:40:13.010000"],["2024-07-24T17:40:14.010000"],["2024-07-24T17:40:15.010000"],["2024-07-24T17:40:16.010000"],["2024-07-24T17:40:17.010000"],["2024-07-24T17:40:18.010000"],["2024-07-24T17:40:19.010000"],["2024-07-24T17:40:20.010000"],["2024-07-24T17:40:21.010000"],["2024-07-24T17:40:22.010000"],["2024-07-24T17:40:23.010000"],["2024-07-24T17:40:24.010000"],["2024-07-24T17:40:25.010000"],["2024-07-24T17:40:26.010000"],["2024-07-24T17:40:27.010000"],["2024-07-24T17:40:28.010000"],["2024-07-24T17:40:29.010000"],["2024-07-24T17:40:30.010000"],["2024-07-24T17:40:31.010000"],["2024-07-24T17:40:32.010000"],["2024-07-24T17:40:33.010000"],["2024-07-24T17:40:34.010000"],["2024-07-24T17:40:35.010000"],["2024-07-24T17:40:36.010000"],["2024-07-24T17:40:37.010000"],["2024-07-24T17:40:38.010000"],["2024-07-24T17:40:39.010000"],["2024-07-24T17:40:40.010000"],["2024-07-24T17:40:41.010000"],["2024-07-24T17:40:42.010000"],["2024-07-24T17:40:43.010000"],["2024-07-24T17:40:44.010000"],["2024-07-24T17:40:45.010000"],["2024-07-24T17:40:46.010000"],["2024-07-24T17:40:47.010000"],["2024-07-24T17:40:48.010000"],["2024-07-24T17:40:49.010000"],["2024-07-24T17:40:50.010000"],["2024-07-24T17:40:51.010000"],["2024-07-24T17:40:52.010000"],["2024-07-24T17:40:53.010000"],["2024-07-24T17:40:54.010000"],["2024-07-24T17:40:55.010000"],["2024-07-24T17:40:56.010000"],["2024-07-24T17:40:57.010000"],["2024-07-24T17:40:58.010000"],["2024-07-24T17:40:59.010000"],["2024-07-24T17:41:00.010000"],["2024-07-24T17:41:01.010000"],["2024-07-24T17:41:02.010000"],["2024-07-24T17:41:03.010000"],["2024-07-24T17:41:04.010000"],["2024-07-24T17:41:05.010000"],["2024-07-24T17:41:06.010000"],["2024-07-24T17:41:07.010000"],["2024-07-24T17:41:08.010000"],["2024-07-24T17:41:09.010000"],["2024-07-24T17:41:10.010000"],["2024-07-24T17:41:11.010000"],["2024-07-24T17:41:12.010000"],["2024-07-24T17:41:13.010000"],["2024-07-24T17:41:14.010000"],["2024-07-24T17:41:15.010000"],["2024-07-24T17:41:16.010000"],["2024-07-24T17:41:17.010000"],["2024-07-24T17:41:18.010000"],["2024-07-24T17:41:19.010000"],["2024-07-24T17:41:20.010000"],["2024-07-24T17:41:21.010000"],["2024-07-24T17:41:22.010000"],["2024-07-24T17:41:23.010000"],["2024-07-24T17:41:24.010000"],["2024-07-24T17:41:25.010000"],["2024-07-24T17:41:26.010000"],["2024-07-24T17:41:27.010000"],["2024-07-24T17:41:28.010000"],["2024-07-24T17:41:29.010000"],["2024-07-24T17:41:30.010000"],["2024-07-24T17:41:31.010000"],["2024-07-24T17:41:32.010000"],["2024-07-24T17:41:33.010000"],["2024-07-24T17:41:34.010000"],["2024-07-24T17:41:35.010000"],["2024-07-24T17:41:36.010000"],["2024-07-24T17:41:37.010000"],["2024-07-24T17:41:38.010000"],["2024-07-24T17:41:39.010000"],["2024-07-24T17:41:40.010000"],["2024-07-24T17:41:41.010000"],["2024-07-24T17:41:42.010000"],["2024-07-24T17:41:43.010000"],["2024-07-24T17:41:44.010000"],["2024-07-24T17:41:45.010000"],["2024-07-24T17:41:46.010000"],["2024-07-24T17:41:47.010000"],["2024-07-24T17:41:48.010000"],["2024-07-24T17:41:49.010000"],["2024-07-24T17:41:50.010000"],["2024-07-24T17:41:51.010000"],["2024-07-24T17:41:52.010000"],["2024-07-24T17:41:53.010000"],["2024-07-24T17:41:54.010000"],["2024-07-24T17:41:55.010000"],["2024-07-24T17:41:56.010000"],["2024-07-24T17:41:57.010000"],["2024-07-24T17:41:58.010000"],["2024-07-24T17:41:59.010000"],["2024-07-24T17:42:00.010000"],["2024-07-24T17:42:01.010000"],["2024-07-24T17:42:02.010000"],["2024-07-24T17:42:03.010000"],["2024-07-24T17:42:04.010000"],["2024-07-24T17:42:05.010000"],["2024-07-24T17:42:06.010000"],["2024-07-24T17:42:07.010000"],["2024-07-24T17:42:08.010000"],["2024-07-24T17:42:09.010000"],["2024-07-24T17:42:10.010000"],["2024-07-24T17:42:11.010000"],["2024-07-24T17:42:12.010000"],["2024-07-24T17:42:13.010000"],["2024-07-24T17:42:14.010000"],["2024-07-24T17:42:15.010000"],["2024-07-24T17:42:16.010000"],["2024-07-24T17:42:17.010000"],["2024-07-24T17:42:18.010000"],["2024-07-24T17:42:19.010000"],["2024-07-24T17:42:20.010000"],["2024-07-24T17:42:21.010000"],["2024-07-24T17:42:22.010000"],["2024-07-24T17:42:23.010000"],["2024-07-24T17:42:24.010000"],["2024-07-24T17:42:25.010000"],["2024-07-24T17:42:26.010000"],["2024-07-24T17:42:27.010000"],["2024-07-24T17:42:28.010000"],["2024-07-24T17:42:29.010000"],["2024-07-24T17:42:30.010000"],["2024-07-24T17:42:31.010000"],["2024-07-24T17:42:32.010000"],["2024-07-24T17:42:33.010000"],["2024-07-24T17:42:34.010000"],["2024-07-24T17:42:35.010000"],["2024-07-24T17:42:36.010000"],["2024-07-24T17:42:37.010000"],["2024-07-24T17:42:38.010000"],["2024-07-24T17:42:39.010000"],["2024-07-24T17:42:40.010000"],["2024-07-24T17:42:41.010000"],["2024-07-24T17:42:42.010000"],["2024-07-24T17:42:43.010000"],["2024-07-24T17:42:44.010000"],["2024-07-24T17:42:45.010000"],["2024-07-24T17:42:46.010000"],["2024-07-24T17:42:47.010000"],["2024-07-24T17:42:48.010000"],["2024-07-24T17:42:49.010000"],["2024-07-24T17:42:50.010000"],["2024-07-24T17:42:51.010000"],["2024-07-24T17:42:52.010000"],["2024-07-24T17:42:53.010000"],["2024-07-24T17:42:54.010000"],["2024-07-24T17:42:55.010000"],["2024-07-24T17:42:56.010000"],["2024-07-24T17:42:57.010000"],["2024-07-24T17:42:58.010000"],["2024-07-24T17:42:59.010000"],["2024-07-24T17:43:00.010000"],["2024-07-24T17:43:01.010000"],["2024-07-24T17:43:02.010000"],["2024-07-24T17:43:03.010000"],["2024-07-24T17:43:04.010000"],["2024-07-24T17:43:05.010000"],["2024-07-24T17:43:06.010000"],["2024-07-24T17:43:07.010000"],["2024-07-24T17:43:08.010000"],["2024-07-24T17:43:09.010000"],["2024-07-24T17:43:10.010000"],["2024-07-24T17:43:11.010000"],["2024-07-24T17:43:12.010000"],["2024-07-24T17:43:13.010000"],["2024-07-24T17:43:14.010000"],["2024-07-24T17:43:15.010000"],["2024-07-24T17:43:16.010000"],["2024-07-24T17:43:17.010000"],["2024-07-24T17:43:18.010000"],["2024-07-24T17:43:19.010000"],["2024-07-24T17:43:20.010000"],["2024-07-24T17:43:21.010000"],["2024-07-24T17:43:22.010000"],["2024-07-24T17:43:23.010000"],["2024-07-24T17:43:24.010000"],["2024-07-24T17:43:25.010000"],["2024-07-24T17:43:26.010000"],["2024-07-24T17:43:27.010000"],["2024-07-24T17:43:28.010000"],["2024-07-24T17:43:29.010000"],["2024-07-24T17:43:30.010000"],["2024-07-24T17:43:31.010000"],["2024-07-24T17:43:32.010000"],["2024-07-24T17:43:33.010000"],["2024-07-24T17:43:34.010000"],["2024-07-24T17:43:35.010000"],["2024-07-24T17:43:36.010000"],["2024-07-24T17:43:37.010000"],["2024-07-24T17:43:38.010000"],["2024-07-24T17:43:39.010000"],["2024-07-24T17:43:40.010000"],["2024-07-24T17:43:41.010000"],["2024-07-24T17:43:42.010000"],["2024-07-24T17:43:43.010000"],["2024-07-24T17:43:44.010000"],["2024-07-24T17:43:45.010000"],["2024-07-24T17:43:46.010000"],["2024-07-24T17:43:47.010000"],["2024-07-24T17:43:48.010000"],["2024-07-24T17:43:49.010000"],["2024-07-24T17:43:50.010000"],["2024-07-24T17:43:51.010000"],["2024-07-24T17:43:52.010000"],["2024-07-24T17:43:53.010000"],["2024-07-24T17:43:54.010000"],["2024-07-24T17:43:55.010000"],["2024-07-24T17:43:56.010000"],["2024-07-24T17:43:57.010000"],["2024-07-24T17:43:58.010000"],["2024-07-24T17:43:59.010000"],["2024-07-24T17:44:00.010000"],["2024-07-24T17:44:01.010000"],["2024-07-24T17:44:02.010000"],["2024-07-24T17:44:03.010000"],["2024-07-24T17:44:04.010000"],["2024-07-24T17:44:05.010000"],["2024-07-24T17:44:06.010000"],["2024-07-24T17:44:07.010000"],["2024-07-24T17:44:08.010000"],["2024-07-24T17:44:09.010000"],["2024-07-24T17:44:10.010000"],["2024-07-24T17:44:11.010000"],["2024-07-24T17:44:12.010000"],["2024-07-24T17:44:13.010000"],["2024-07-24T17:44:14.010000"],["2024-07-24T17:44:15.010000"],["2024-07-24T17:44:16.010000"],["2024-07-24T17:44:17.010000"],["2024-07-24T17:44:18.010000"],["2024-07-24T17:44:19.010000"],["2024-07-24T17:44:20.010000"],["2024-07-24T17:44:21.010000"],["2024-07-24T17:44:22.010000"],["2024-07-24T17:44:23.010000"],["2024-07-24T17:44:24.010000"],["2024-07-24T17:44:25.010000"],["2024-07-24T17:44:26.010000"],["2024-07-24T17:44:27.010000"],["2024-07-24T17:44:28.010000"],["2024-07-24T17:44:29.010000"],["2024-07-24T17:44:30.010000"],["2024-07-24T17:44:31.010000"],["2024-07-24T17:44:32.010000"],["2024-07-24T17:44:33.010000"],["2024-07-24T17:44:34.010000"],["2024-07-24T17:44:35.010000"],["2024-07-24T17:44:36.010000"],["2024-07-24T17:44:37.010000"],["2024-07-24T17:44:38.010000"],["2024-07-24T17:44:39.010000"],["2024-07-24T17:44:40.010000"],["2024-07-24T17:44:41.010000"],["2024-07-24T17:44:42.010000"],["2024-07-24T17:44:43.010000"],["2024-07-24T17:44:44.010000"],["2024-07-24T17:44:45.010000"],["2024-07-24T17:44:46.010000"],["2024-07-24T17:44:47.010000"],["2024-07-24T17:44:48.010000"],["2024-07-24T17:44:49.010000"],["2024-07-24T17:44:50.010000"],["2024-07-24T17:44:51.010000"],["2024-07-24T17:44:52.010000"],["2024-07-24T17:44:53.010000"],["2024-07-24T17:44:54.010000"],["2024-07-24T17:44:55.010000"],["2024-07-24T17:44:56.010000"],["2024-07-24T17:44:57.010000"],["2024-07-24T17:44:58.010000"],["2024-07-24T17:44:59.010000"],["2024-07-24T17:45:00.010000"],["2024-07-24T17:45:01.010000"],["2024-07-24T17:45:02.010000"],["2024-07-24T17:45:03.010000"],["2024-07-24T17:45:04.010000"],["2024-07-24T17:45:05.010000"],["2024-07-24T17:45:06.010000"],["2024-07-24T17:45:07.010000"],["2024-07-24T17:45:08.010000"],["2024-07-24T17:45:09.010000"],["2024-07-24T17:45:10.010000"],["2024-07-24T17:45:11.010000"],["2024-07-24T17:45:12.010000"],["2024-07-24T17:45:13.010000"],["2024-07-24T17:45:14.010000"],["2024-07-24T17:45:15.010000"],["2024-07-24T17:45:16.010000"],["2024-07-24T17:45:17.010000"],["2024-07-24T17:45:18.010000"],["2024-07-24T17:45:19.010000"],["2024-07-24T17:45:20.010000"],["2024-07-24T17:45:21.010000"],["2024-07-24T17:45:22.010000"],["2024-07-24T17:45:23.010000"],["2024-07-24T17:45:24.010000"],["2024-07-24T17:45:25.010000"],["2024-07-24T17:45:26.010000"],["2024-07-24T17:45:27.010000"],["2024-07-24T17:45:28.010000"],["2024-07-24T17:45:29.010000"],["2024-07-24T17:45:30.010000"],["2024-07-24T17:45:31.010000"],["2024-07-24T17:45:32.010000"],["2024-07-24T17:45:33.010000"],["2024-07-24T17:45:34.010000"],["2024-07-24T17:45:35.010000"],["2024-07-24T17:45:36.010000"],["2024-07-24T17:45:37.010000"],["2024-07-24T17:45:38.010000"],["2024-07-24T17:45:39.010000"],["2024-07-24T17:45:40.010000"],["2024-07-24T17:45:41.010000"],["2024-07-24T17:45:42.010000"],["2024-07-24T17:45:43.010000"],["2024-07-24T17:45:44.010000"],["2024-07-24T17:45:45.010000"],["2024-07-24T17:45:46.010000"],["2024-07-24T17:45:47.010000"],["2024-07-24T17:45:48.010000"],["2024-07-24T17:45:49.010000"],["2024-07-24T17:45:50.010000"],["2024-07-24T17:45:51.010000"],["2024-07-24T17:45:52.010000"],["2024-07-24T17:45:53.010000"],["2024-07-24T17:45:54.010000"],["2024-07-24T17:45:55.010000"],["2024-07-24T17:45:56.010000"],["2024-07-24T17:45:57.010000"],["2024-07-24T17:45:58.010000"],["2024-07-24T17:45:59.010000"],["2024-07-24T17:46:00.010000"],["2024-07-24T17:46:01.010000"],["2024-07-24T17:46:02.010000"],["2024-07-24T17:46:03.010000"],["2024-07-24T17:46:04.010000"],["2024-07-24T17:46:05.010000"],["2024-07-24T17:46:06.010000"],["2024-07-24T17:46:07.010000"],["2024-07-24T17:46:08.010000"],["2024-07-24T17:46:09.010000"],["2024-07-24T17:46:10.010000"],["2024-07-24T17:46:11.010000"],["2024-07-24T17:46:12.010000"],["2024-07-24T17:46:13.010000"],["2024-07-24T17:46:14.010000"],["2024-07-24T17:46:15.010000"],["2024-07-24T17:46:16.010000"],["2024-07-24T17:46:17.010000"],["2024-07-24T17:46:18.010000"],["2024-07-24T17:46:19.010000"],["2024-07-24T17:46:20.010000"],["2024-07-24T17:46:21.010000"],["2024-07-24T17:46:22.010000"],["2024-07-24T17:46:23.010000"],["2024-07-24T17:46:24.010000"],["2024-07-24T17:46:25.010000"],["2024-07-24T17:46:26.010000"],["2024-07-24T17:46:27.010000"],["2024-07-24T17:46:28.010000"],["2024-07-24T17:46:29.010000"],["2024-07-24T17:46:30.010000"],["2024-07-24T17:46:31.010000"],["2024-07-24T17:46:32.010000"],["2024-07-24T17:46:33.010000"],["2024-07-24T17:46:34.010000"],["2024-07-24T17:46:35.010000"],["2024-07-24T17:46:36.010000"],["2024-07-24T17:46:37.010000"],["2024-07-24T17:46:38.010000"],["2024-07-24T17:46:39.010000"],["2024-07-24T17:46:40.010000"],["2024-07-24T17:46:41.010000"],["2024-07-24T17:46:42.010000"],["2024-07-24T17:46:43.010000"],["2024-07-24T17:46:44.010000"],["2024-07-24T17:46:45.010000"],["2024-07-24T17:46:46.010000"],["2024-07-24T17:46:47.010000"],["2024-07-24T17:46:48.010000"],["2024-07-24T17:46:49.010000"],["2024-07-24T17:46:50.010000"],["2024-07-24T17:46:51.010000"],["2024-07-24T17:46:52.010000"],["2024-07-24T17:46:53.010000"],["2024-07-24T17:46:54.010000"],["2024-07-24T17:46:55.010000"],["2024-07-24T17:46:56.010000"],["2024-07-24T17:46:57.010000"],["2024-07-24T17:46:58.010000"],["2024-07-24T17:46:59.010000"],["2024-07-24T17:47:00.010000"],["2024-07-24T17:47:01.010000"],["2024-07-24T17:47:02.010000"],["2024-07-24T17:47:03.010000"],["2024-07-24T17:47:04.010000"],["2024-07-24T17:47:05.010000"],["2024-07-24T17:47:06.010000"],["2024-07-24T17:47:07.010000"],["2024-07-24T17:47:08.010000"],["2024-07-24T17:47:09.010000"],["2024-07-24T17:47:10.010000"],["2024-07-24T17:47:11.010000"],["2024-07-24T17:47:12.010000"],["2024-07-24T17:47:13.010000"],["2024-07-24T17:47:14.010000"],["2024-07-24T17:47:15.010000"],["2024-07-24T17:47:16.010000"],["2024-07-24T17:47:17.010000"],["2024-07-24T17:47:18.010000"],["2024-07-24T17:47:19.010000"],["2024-07-24T17:47:20.010000"],["2024-07-24T17:47:21.010000"],["2024-07-24T17:47:22.010000"],["2024-07-24T17:47:23.010000"],["2024-07-24T17:47:24.010000"],["2024-07-24T17:47:25.010000"],["2024-07-24T17:47:26.010000"],["2024-07-24T17:47:27.010000"],["2024-07-24T17:47:28.010000"],["2024-07-24T17:47:29.010000"],["2024-07-24T17:47:30.010000"],["2024-07-24T17:47:31.010000"],["2024-07-24T17:47:32.010000"],["2024-07-24T17:47:33.010000"],["2024-07-24T17:47:34.010000"],["2024-07-24T17:47:35.010000"],["2024-07-24T17:47:36.010000"],["2024-07-24T17:47:37.010000"],["2024-07-24T17:47:38.010000"],["2024-07-24T17:47:39.010000"],["2024-07-24T17:47:40.010000"],["2024-07-24T17:47:41.010000"],["2024-07-24T17:47:42.010000"],["2024-07-24T17:47:43.010000"],["2024-07-24T17:47:44.010000"],["2024-07-24T17:47:45.010000"],["2024-07-24T17:47:46.010000"],["2024-07-24T17:47:47.010000"],["2024-07-24T17:47:48.010000"],["2024-07-24T17:47:49.010000"],["2024-07-24T17:47:50.010000"],["2024-07-24T17:47:51.010000"],["2024-07-24T17:47:52.010000"],["2024-07-24T17:47:53.010000"],["2024-07-24T17:47:54.010000"],["2024-07-24T17:47:55.010000"],["2024-07-24T17:47:56.010000"],["2024-07-24T17:47:57.010000"],["2024-07-24T17:47:58.010000"],["2024-07-24T17:47:59.010000"],["2024-07-24T17:48:00.010000"],["2024-07-24T17:48:01.010000"],["2024-07-24T17:48:02.010000"],["2024-07-24T17:48:03.010000"],["2024-07-24T17:48:04.010000"],["2024-07-24T17:48:05.010000"],["2024-07-24T17:48:06.010000"],["2024-07-24T17:48:07.010000"],["2024-07-24T17:48:08.010000"],["2024-07-24T17:48:09.010000"],["2024-07-24T17:48:10.010000"],["2024-07-24T17:48:11.010000"],["2024-07-24T17:48:12.010000"],["2024-07-24T17:48:13.010000"],["2024-07-24T17:48:14.010000"],["2024-07-24T17:48:15.010000"],["2024-07-24T17:48:16.010000"],["2024-07-24T17:48:17.010000"],["2024-07-24T17:48:18.010000"],["2024-07-24T17:48:19.010000"],["2024-07-24T17:48:20.010000"],["2024-07-24T17:48:21.010000"],["2024-07-24T17:48:22.010000"],["2024-07-24T17:48:23.010000"],["2024-07-24T17:48:24.010000"],["2024-07-24T17:48:25.010000"],["2024-07-24T17:48:26.010000"],["2024-07-24T17:48:27.010000"],["2024-07-24T17:48:28.010000"],["2024-07-24T17:48:29.010000"],["2024-07-24T17:48:30.010000"],["2024-07-24T17:48:31.010000"],["2024-07-24T17:48:32.010000"],["2024-07-24T17:48:33.010000"],["2024-07-24T17:48:34.010000"],["2024-07-24T17:48:35.010000"],["2024-07-24T17:48:36.010000"],["2024-07-24T17:48:37.010000"],["2024-07-24T17:48:38.010000"],["2024-07-24T17:48:39.010000"],["2024-07-24T17:48:40.010000"],["2024-07-24T17:48:41.010000"],["2024-07-24T17:48:42.010000"],["2024-07-24T17:48:43.010000"],["2024-07-24T17:48:44.010000"],["2024-07-24T17:48:45.010000"],["2024-07-24T17:48:46.010000"],["2024-07-24T17:48:47.010000"],["2024-07-24T17:48:48.010000"],["2024-07-24T17:48:49.010000"],["2024-07-24T17:48:50.010000"],["2024-07-24T17:48:51.010000"],["2024-07-24T17:48:52.010000"],["2024-07-24T17:48:53.010000"],["2024-07-24T17:48:54.010000"],["2024-07-24T17:48:55.010000"],["2024-07-24T17:48:56.010000"],["2024-07-24T17:48:57.010000"],["2024-07-24T17:48:58.010000"],["2024-07-24T17:48:59.010000"],["2024-07-24T17:49:00.010000"],["2024-07-24T17:49:01.010000"],["2024-07-24T17:49:02.010000"],["2024-07-24T17:49:03.010000"],["2024-07-24T17:49:04.010000"],["2024-07-24T17:49:05.010000"],["2024-07-24T17:49:06.010000"],["2024-07-24T17:49:07.010000"],["2024-07-24T17:49:08.010000"],["2024-07-24T17:49:09.010000"],["2024-07-24T17:49:10.010000"],["2024-07-24T17:49:11.010000"],["2024-07-24T17:49:12.010000"],["2024-07-24T17:49:13.010000"],["2024-07-24T17:49:14.010000"],["2024-07-24T17:49:15.010000"],["2024-07-24T17:49:16.010000"],["2024-07-24T17:49:17.010000"],["2024-07-24T17:49:18.010000"],["2024-07-24T17:49:19.010000"],["2024-07-24T17:49:20.010000"],["2024-07-24T17:49:21.010000"],["2024-07-24T17:49:22.010000"],["2024-07-24T17:49:23.010000"],["2024-07-24T17:49:24.010000"],["2024-07-24T17:49:25.010000"],["2024-07-24T17:49:26.010000"],["2024-07-24T17:49:27.010000"],["2024-07-24T17:49:28.010000"],["2024-07-24T17:49:29.010000"],["2024-07-24T17:49:30.010000"],["2024-07-24T17:49:31.010000"],["2024-07-24T17:49:32.010000"],["2024-07-24T17:49:33.010000"],["2024-07-24T17:49:34.010000"],["2024-07-24T17:49:35.010000"],["2024-07-24T17:49:36.010000"],["2024-07-24T17:49:37.010000"],["2024-07-24T17:49:38.010000"],["2024-07-24T17:49:39.010000"],["2024-07-24T17:49:40.010000"],["2024-07-24T17:49:41.010000"],["2024-07-24T17:49:42.010000"],["2024-07-24T17:49:43.010000"],["2024-07-24T17:49:44.010000"],["2024-07-24T17:49:45.010000"],["2024-07-24T17:49:46.010000"],["2024-07-24T17:49:47.010000"],["2024-07-24T17:49:48.010000"],["2024-07-24T17:49:49.010000"],["2024-07-24T17:49:50.010000"],["2024-07-24T17:49:51.010000"],["2024-07-24T17:49:52.010000"],["2024-07-24T17:49:53.010000"],["2024-07-24T17:49:54.010000"],["2024-07-24T17:49:55.010000"],["2024-07-24T17:49:56.010000"],["2024-07-24T17:49:57.010000"],["2024-07-24T17:49:58.010000"],["2024-07-24T17:49:59.010000"],["2024-07-24T17:50:00.010000"],["2024-07-24T17:50:01.010000"],["2024-07-24T17:50:02.010000"],["2024-07-24T17:50:03.010000"],["2024-07-24T17:50:04.010000"],["2024-07-24T17:50:05.010000"],["2024-07-24T17:50:06.010000"],["2024-07-24T17:50:07.010000"],["2024-07-24T17:50:08.010000"],["2024-07-24T17:50:09.010000"],["2024-07-24T17:50:10.010000"],["2024-07-24T17:50:11.010000"],["2024-07-24T17:50:12.010000"],["2024-07-24T17:50:13.010000"],["2024-07-24T17:50:14.010000"],["2024-07-24T17:50:15.010000"],["2024-07-24T17:50:16.010000"],["2024-07-24T17:50:17.010000"],["2024-07-24T17:50:18.010000"],["2024-07-24T17:50:19.010000"],["2024-07-24T17:50:20.010000"],["2024-07-24T17:50:21.010000"],["2024-07-24T17:50:22.010000"],["2024-07-24T17:50:23.010000"],["2024-07-24T17:50:24.010000"],["2024-07-24T17:50:25.010000"],["2024-07-24T17:50:26.010000"],["2024-07-24T17:50:27.010000"],["2024-07-24T17:50:28.010000"],["2024-07-24T17:50:29.010000"],["2024-07-24T17:50:30.010000"],["2024-07-24T17:50:31.010000"],["2024-07-24T17:50:32.010000"],["2024-07-24T17:50:33.010000"],["2024-07-24T17:50:34.010000"],["2024-07-24T17:50:35.010000"],["2024-07-24T17:50:36.010000"],["2024-07-24T17:50:37.010000"],["2024-07-24T17:50:38.010000"],["2024-07-24T17:50:39.010000"],["2024-07-24T17:50:40.010000"],["2024-07-24T17:50:41.010000"],["2024-07-24T17:50:42.010000"],["2024-07-24T17:50:43.010000"],["2024-07-24T17:50:44.010000"],["2024-07-24T17:50:45.010000"],["2024-07-24T17:50:46.010000"],["2024-07-24T17:50:47.010000"],["2024-07-24T17:50:48.010000"],["2024-07-24T17:50:49.010000"],["2024-07-24T17:50:50.010000"],["2024-07-24T17:50:51.010000"],["2024-07-24T17:50:52.010000"],["2024-07-24T17:50:53.010000"],["2024-07-24T17:50:54.010000"],["2024-07-24T17:50:55.010000"],["2024-07-24T17:50:56.010000"],["2024-07-24T17:50:57.010000"],["2024-07-24T17:50:58.010000"],["2024-07-24T17:50:59.010000"],["2024-07-24T17:51:00.010000"],["2024-07-24T17:51:01.010000"],["2024-07-24T17:51:02.010000"],["2024-07-24T17:51:03.010000"],["2024-07-24T17:51:04.010000"],["2024-07-24T17:51:05.010000"],["2024-07-24T17:51:06.010000"],["2024-07-24T17:51:07.010000"],["2024-07-24T17:51:08.010000"],["2024-07-24T17:51:09.010000"],["2024-07-24T17:51:10.010000"],["2024-07-24T17:51:11.010000"],["2024-07-24T17:51:12.010000"],["2024-07-24T17:51:13.010000"],["2024-07-24T17:51:14.010000"],["2024-07-24T17:51:15.010000"],["2024-07-24T17:51:16.010000"],["2024-07-24T17:51:17.010000"],["2024-07-24T17:51:18.010000"],["2024-07-24T17:51:19.010000"],["2024-07-24T17:51:20.010000"],["2024-07-24T17:51:21.010000"],["2024-07-24T17:51:22.010000"],["2024-07-24T17:51:23.010000"],["2024-07-24T17:51:24.010000"],["2024-07-24T17:51:25.010000"],["2024-07-24T17:51:26.010000"],["2024-07-24T17:51:27.010000"],["2024-07-24T17:51:28.010000"],["2024-07-24T17:51:29.010000"],["2024-07-24T17:51:30.010000"],["2024-07-24T17:51:31.010000"],["2024-07-24T17:51:32.010000"],["2024-07-24T17:51:33.010000"],["2024-07-24T17:51:34.010000"],["2024-07-24T17:51:35.010000"],["2024-07-24T17:51:36.010000"],["2024-07-24T17:51:37.010000"],["2024-07-24T17:51:38.010000"],["2024-07-24T17:51:39.010000"],["2024-07-24T17:51:40.010000"],["2024-07-24T17:51:41.010000"],["2024-07-24T17:51:42.010000"],["2024-07-24T17:51:43.010000"],["2024-07-24T17:51:44.010000"],["2024-07-24T17:51:45.010000"],["2024-07-24T17:51:46.010000"],["2024-07-24T17:51:47.010000"],["2024-07-24T17:51:48.010000"],["2024-07-24T17:51:49.010000"],["2024-07-24T17:51:50.010000"],["2024-07-24T17:51:51.010000"],["2024-07-24T17:51:52.010000"],["2024-07-24T17:51:53.010000"],["2024-07-24T17:51:54.010000"],["2024-07-24T17:51:55.010000"],["2024-07-24T17:51:56.010000"],["2024-07-24T17:51:57.010000"],["2024-07-24T17:51:58.010000"],["2024-07-24T17:51:59.010000"],["2024-07-24T17:52:00.010000"],["2024-07-24T17:52:01.010000"],["2024-07-24T17:52:02.010000"],["2024-07-24T17:52:03.010000"],["2024-07-24T17:52:04.010000"],["2024-07-24T17:52:05.010000"],["2024-07-24T17:52:06.010000"],["2024-07-24T17:52:07.010000"],["2024-07-24T17:52:08.010000"],["2024-07-24T17:52:09.010000"],["2024-07-24T17:52:10.010000"],["2024-07-24T17:52:11.010000"],["2024-07-24T17:52:12.010000"],["2024-07-24T17:52:13.010000"],["2024-07-24T17:52:14.010000"],["2024-07-24T17:52:15.010000"],["2024-07-24T17:52:16.010000"],["2024-07-24T17:52:17.010000"],["2024-07-24T17:52:18.010000"],["2024-07-24T17:52:19.010000"],["2024-07-24T17:52:20.010000"],["2024-07-24T17:52:21.010000"],["2024-07-24T17:52:22.010000"],["2024-07-24T17:52:23.010000"],["2024-07-24T17:52:24.010000"],["2024-07-24T17:52:25.010000"],["2024-07-24T17:52:26.010000"],["2024-07-24T17:52:27.010000"],["2024-07-24T17:52:28.010000"],["2024-07-24T17:52:29.010000"],["2024-07-24T17:52:30.010000"],["2024-07-24T17:52:31.010000"],["2024-07-24T17:52:32.010000"],["2024-07-24T17:52:33.010000"],["2024-07-24T17:52:34.010000"],["2024-07-24T17:52:35.010000"],["2024-07-24T17:52:36.010000"],["2024-07-24T17:52:37.010000"],["2024-07-24T17:52:38.010000"],["2024-07-24T17:52:39.010000"],["2024-07-24T17:52:40.010000"],["2024-07-24T17:52:41.010000"],["2024-07-24T17:52:42.010000"],["2024-07-24T17:52:43.010000"],["2024-07-24T17:52:44.010000"],["2024-07-24T17:52:45.010000"],["2024-07-24T17:52:46.010000"],["2024-07-24T17:52:47.010000"],["2024-07-24T17:52:48.010000"],["2024-07-24T17:52:49.010000"],["2024-07-24T17:52:50.010000"],["2024-07-24T17:52:51.010000"],["2024-07-24T17:52:52.010000"],["2024-07-24T17:52:53.010000"],["2024-07-24T17:52:54.010000"],["2024-07-24T17:52:55.010000"],["2024-07-24T17:52:56.010000"],["2024-07-24T17:52:57.010000"],["2024-07-24T17:52:58.010000"],["2024-07-24T17:52:59.010000"],["2024-07-24T17:53:00.010000"],["2024-07-24T17:53:01.010000"],["2024-07-24T17:53:02.010000"],["2024-07-24T17:53:03.010000"],["2024-07-24T17:53:04.010000"],["2024-07-24T17:53:05.010000"],["2024-07-24T17:53:06.010000"],["2024-07-24T17:53:07.010000"],["2024-07-24T17:53:08.010000"],["2024-07-24T17:53:09.010000"],["2024-07-24T17:53:10.010000"],["2024-07-24T17:53:11.010000"],["2024-07-24T17:53:12.010000"],["2024-07-24T17:53:13.010000"],["2024-07-24T17:53:14.010000"],["2024-07-24T17:53:15.010000"],["2024-07-24T17:53:16.010000"],["2024-07-24T17:53:17.010000"],["2024-07-24T17:53:18.010000"],["2024-07-24T17:53:19.010000"],["2024-07-24T17:53:20.010000"],["2024-07-24T17:53:21.010000"],["2024-07-24T17:53:22.010000"],["2024-07-24T17:53:23.010000"],["2024-07-24T17:53:24.010000"],["2024-07-24T17:53:25.010000"],["2024-07-24T17:53:26.010000"],["2024-07-24T17:53:27.010000"],["2024-07-24T17:53:28.010000"],["2024-07-24T17:53:29.010000"],["2024-07-24T17:53:30.010000"],["2024-07-24T17:53:31.010000"],["2024-07-24T17:53:32.010000"],["2024-07-24T17:53:33.010000"],["2024-07-24T17:53:34.010000"],["2024-07-24T17:53:35.010000"],["2024-07-24T17:53:36.010000"],["2024-07-24T17:53:37.010000"],["2024-07-24T17:53:38.010000"],["2024-07-24T17:53:39.010000"],["2024-07-24T17:53:40.010000"],["2024-07-24T17:53:41.010000"],["2024-07-24T17:53:42.010000"],["2024-07-24T17:53:43.010000"],["2024-07-24T17:53:44.010000"],["2024-07-24T17:53:45.010000"],["2024-07-24T17:53:46.010000"],["2024-07-24T17:53:47.010000"],["2024-07-24T17:53:48.010000"],["2024-07-24T17:53:49.010000"],["2024-07-24T17:53:50.010000"],["2024-07-24T17:53:51.010000"],["2024-07-24T17:53:52.010000"],["2024-07-24T17:53:53.010000"],["2024-07-24T17:53:54.010000"],["2024-07-24T17:53:55.010000"],["2024-07-24T17:53:56.010000"],["2024-07-24T17:53:57.010000"],["2024-07-24T17:53:58.010000"],["2024-07-24T17:53:59.010000"],["2024-07-24T17:54:00.010000"],["2024-07-24T17:54:01.010000"],["2024-07-24T17:54:02.010000"],["2024-07-24T17:54:03.010000"],["2024-07-24T17:54:04.010000"],["2024-07-24T17:54:05.010000"],["2024-07-24T17:54:06.010000"],["2024-07-24T17:54:07.010000"],["2024-07-24T17:54:08.010000"],["2024-07-24T17:54:09.010000"],["2024-07-24T17:54:10.010000"],["2024-07-24T17:54:11.010000"],["2024-07-24T17:54:12.010000"],["2024-07-24T17:54:13.010000"],["2024-07-24T17:54:14.010000"],["2024-07-24T17:54:15.010000"],["2024-07-24T17:54:16.010000"],["2024-07-24T17:54:17.010000"],["2024-07-24T17:54:18.010000"],["2024-07-24T17:54:19.010000"],["2024-07-24T17:54:20.010000"],["2024-07-24T17:54:21.010000"],["2024-07-24T17:54:22.010000"],["2024-07-24T17:54:23.010000"],["2024-07-24T17:54:24.010000"],["2024-07-24T17:54:25.010000"],["2024-07-24T17:54:26.010000"],["2024-07-24T17:54:27.010000"],["2024-07-24T17:54:28.010000"],["2024-07-24T17:54:29.010000"],["2024-07-24T17:54:30.010000"],["2024-07-24T17:54:31.010000"],["2024-07-24T17:54:32.010000"],["2024-07-24T17:54:33.010000"],["2024-07-24T17:54:34.010000"],["2024-07-24T17:54:35.010000"],["2024-07-24T17:54:36.010000"],["2024-07-24T17:54:37.010000"],["2024-07-24T17:54:38.010000"],["2024-07-24T17:54:39.010000"],["2024-07-24T17:54:40.010000"],["2024-07-24T17:54:41.010000"],["2024-07-24T17:54:42.010000"],["2024-07-24T17:54:43.010000"],["2024-07-24T17:54:44.010000"],["2024-07-24T17:54:45.010000"],["2024-07-24T17:54:46.010000"],["2024-07-24T17:54:47.010000"],["2024-07-24T17:54:48.010000"],["2024-07-24T17:54:49.010000"],["2024-07-24T17:54:50.010000"],["2024-07-24T17:54:51.010000"],["2024-07-24T17:54:52.010000"],["2024-07-24T17:54:53.010000"],["2024-07-24T17:54:54.010000"],["2024-07-24T17:54:55.010000"],["2024-07-24T17:54:56.010000"],["2024-07-24T17:54:57.010000"],["2024-07-24T17:54:58.010000"],["2024-07-24T17:54:59.010000"],["2024-07-24T17:55:00.010000"],["2024-07-24T17:55:01.010000"],["2024-07-24T17:55:02.010000"],["2024-07-24T17:55:03.010000"],["2024-07-24T17:55:04.010000"],["2024-07-24T17:55:05.010000"],["2024-07-24T17:55:06.010000"],["2024-07-24T17:55:07.010000"],["2024-07-24T17:55:08.010000"],["2024-07-24T17:55:09.010000"],["2024-07-24T17:55:10.010000"],["2024-07-24T17:55:11.010000"],["2024-07-24T17:55:12.010000"],["2024-07-24T17:55:13.010000"],["2024-07-24T17:55:14.010000"],["2024-07-24T17:55:15.010000"],["2024-07-24T17:55:16.010000"],["2024-07-24T17:55:17.010000"],["2024-07-24T17:55:18.010000"],["2024-07-24T17:55:19.010000"],["2024-07-24T17:55:20.010000"],["2024-07-24T17:55:21.010000"],["2024-07-24T17:55:22.010000"],["2024-07-24T17:55:23.010000"],["2024-07-24T17:55:24.010000"],["2024-07-24T17:55:25.010000"],["2024-07-24T17:55:26.010000"],["2024-07-24T17:55:27.010000"],["2024-07-24T17:55:28.010000"],["2024-07-24T17:55:29.010000"],["2024-07-24T17:55:30.010000"],["2024-07-24T17:55:31.010000"],["2024-07-24T17:55:32.010000"],["2024-07-24T17:55:33.010000"],["2024-07-24T17:55:34.010000"],["2024-07-24T17:55:35.010000"],["2024-07-24T17:55:36.010000"],["2024-07-24T17:55:37.010000"],["2024-07-24T17:55:38.010000"],["2024-07-24T17:55:39.010000"],["2024-07-24T17:55:40.010000"],["2024-07-24T17:55:41.010000"],["2024-07-24T17:55:42.010000"],["2024-07-24T17:55:43.010000"],["2024-07-24T17:55:44.010000"],["2024-07-24T17:55:45.010000"],["2024-07-24T17:55:46.010000"],["2024-07-24T17:55:47.010000"],["2024-07-24T17:55:48.010000"],["2024-07-24T17:55:49.010000"],["2024-07-24T17:55:50.010000"],["2024-07-24T17:55:51.010000"],["2024-07-24T17:55:52.010000"],["2024-07-24T17:55:53.010000"],["2024-07-24T17:55:54.010000"],["2024-07-24T17:55:55.010000"],["2024-07-24T17:55:56.010000"],["2024-07-24T17:55:57.010000"],["2024-07-24T17:55:58.010000"],["2024-07-24T17:55:59.010000"],["2024-07-24T17:56:00.010000"],["2024-07-24T17:56:01.010000"],["2024-07-24T17:56:02.010000"],["2024-07-24T17:56:03.010000"],["2024-07-24T17:56:04.010000"],["2024-07-24T17:56:05.010000"],["2024-07-24T17:56:06.010000"],["2024-07-24T17:56:07.010000"],["2024-07-24T17:56:08.010000"],["2024-07-24T17:56:09.010000"],["2024-07-24T17:56:10.010000"],["2024-07-24T17:56:11.010000"],["2024-07-24T17:56:12.010000"],["2024-07-24T17:56:13.010000"],["2024-07-24T17:56:14.010000"],["2024-07-24T17:56:15.010000"],["2024-07-24T17:56:16.010000"],["2024-07-24T17:56:17.010000"],["2024-07-24T17:56:18.010000"],["2024-07-24T17:56:19.010000"],["2024-07-24T17:56:20.010000"],["2024-07-24T17:56:21.010000"],["2024-07-24T17:56:22.010000"],["2024-07-24T17:56:23.010000"],["2024-07-24T17:56:24.010000"],["2024-07-24T17:56:25.010000"],["2024-07-24T17:56:26.010000"],["2024-07-24T17:56:27.010000"],["2024-07-24T17:56:28.010000"],["2024-07-24T17:56:29.010000"],["2024-07-24T17:56:30.010000"],["2024-07-24T17:56:31.010000"],["2024-07-24T17:56:32.010000"],["2024-07-24T17:56:33.010000"],["2024-07-24T17:56:34.010000"],["2024-07-24T17:56:35.010000"],["2024-07-24T17:56:36.010000"],["2024-07-24T17:56:37.010000"],["2024-07-24T17:56:38.010000"],["2024-07-24T17:56:39.010000"],["2024-07-24T17:56:40.010000"],["2024-07-24T17:56:41.010000"],["2024-07-24T17:56:42.010000"],["2024-07-24T17:56:43.010000"],["2024-07-24T17:56:44.010000"],["2024-07-24T17:56:45.010000"],["2024-07-24T17:56:46.010000"],["2024-07-24T17:56:47.010000"],["2024-07-24T17:56:48.010000"],["2024-07-24T17:56:49.010000"],["2024-07-24T17:56:50.010000"],["2024-07-24T17:56:51.010000"],["2024-07-24T17:56:52.010000"],["2024-07-24T17:56:53.010000"],["2024-07-24T17:56:54.010000"],["2024-07-24T17:56:55.010000"],["2024-07-24T17:56:56.010000"],["2024-07-24T17:56:57.010000"],["2024-07-24T17:56:58.010000"],["2024-07-24T17:56:59.010000"],["2024-07-24T17:57:00.010000"],["2024-07-24T17:57:01.010000"],["2024-07-24T17:57:02.010000"],["2024-07-24T17:57:03.010000"],["2024-07-24T17:57:04.010000"],["2024-07-24T17:57:05.010000"],["2024-07-24T17:57:06.010000"],["2024-07-24T17:57:07.010000"],["2024-07-24T17:57:08.010000"],["2024-07-24T17:57:09.010000"],["2024-07-24T17:57:10.010000"],["2024-07-24T17:57:11.010000"],["2024-07-24T17:57:12.010000"],["2024-07-24T17:57:13.010000"],["2024-07-24T17:57:14.010000"],["2024-07-24T17:57:15.010000"],["2024-07-24T17:57:16.010000"],["2024-07-24T17:57:17.010000"],["2024-07-24T17:57:18.010000"],["2024-07-24T17:57:19.010000"],["2024-07-24T17:57:20.010000"],["2024-07-24T17:57:21.010000"],["2024-07-24T17:57:22.010000"],["2024-07-24T17:57:23.010000"],["2024-07-24T17:57:24.010000"],["2024-07-24T17:57:25.010000"],["2024-07-24T17:57:26.010000"],["2024-07-24T17:57:27.010000"],["2024-07-24T17:57:28.010000"],["2024-07-24T17:57:29.010000"],["2024-07-24T17:57:30.010000"],["2024-07-24T17:57:31.010000"],["2024-07-24T17:57:32.010000"],["2024-07-24T17:57:33.010000"],["2024-07-24T17:57:34.010000"],["2024-07-24T17:57:35.010000"],["2024-07-24T17:57:36.010000"],["2024-07-24T17:57:37.010000"],["2024-07-24T17:57:38.010000"],["2024-07-24T17:57:39.010000"],["2024-07-24T17:57:40.010000"],["2024-07-24T17:57:41.010000"],["2024-07-24T17:57:42.010000"],["2024-07-24T17:57:43.010000"],["2024-07-24T17:57:44.010000"],["2024-07-24T17:57:45.010000"],["2024-07-24T17:57:46.010000"],["2024-07-24T17:57:47.010000"],["2024-07-24T17:57:48.010000"],["2024-07-24T17:57:49.010000"],["2024-07-24T17:57:50.010000"],["2024-07-24T17:57:51.010000"],["2024-07-24T17:57:52.010000"],["2024-07-24T17:57:53.010000"],["2024-07-24T17:57:54.010000"],["2024-07-24T17:57:55.010000"],["2024-07-24T17:57:56.010000"],["2024-07-24T17:57:57.010000"],["2024-07-24T17:57:58.010000"],["2024-07-24T17:57:59.010000"],["2024-07-24T17:58:00.010000"],["2024-07-24T17:58:01.010000"],["2024-07-24T17:58:02.010000"],["2024-07-24T17:58:03.010000"],["2024-07-24T17:58:04.010000"],["2024-07-24T17:58:05.010000"],["2024-07-24T17:58:06.010000"],["2024-07-24T17:58:07.010000"],["2024-07-24T17:58:08.010000"],["2024-07-24T17:58:09.010000"],["2024-07-24T17:58:10.010000"],["2024-07-24T17:58:11.010000"],["2024-07-24T17:58:12.010000"],["2024-07-24T17:58:13.010000"],["2024-07-24T17:58:14.010000"],["2024-07-24T17:58:15.010000"],["2024-07-24T17:58:16.010000"],["2024-07-24T17:58:17.010000"],["2024-07-24T17:58:18.010000"],["2024-07-24T17:58:19.010000"],["2024-07-24T17:58:20.010000"],["2024-07-24T17:58:21.010000"],["2024-07-24T17:58:22.010000"],["2024-07-24T17:58:23.010000"],["2024-07-24T17:58:24.010000"],["2024-07-24T17:58:25.010000"],["2024-07-24T17:58:26.010000"],["2024-07-24T17:58:27.010000"],["2024-07-24T17:58:28.010000"],["2024-07-24T17:58:29.010000"],["2024-07-24T17:58:30.010000"],["2024-07-24T17:58:31.010000"],["2024-07-24T17:58:32.010000"],["2024-07-24T17:58:33.010000"],["2024-07-24T17:58:34.010000"],["2024-07-24T17:58:35.010000"],["2024-07-24T17:58:36.010000"],["2024-07-24T17:58:37.010000"],["2024-07-24T17:58:38.010000"],["2024-07-24T17:58:39.010000"],["2024-07-24T17:58:40.010000"],["2024-07-24T17:58:41.010000"],["2024-07-24T17:58:42.010000"],["2024-07-24T17:58:43.010000"],["2024-07-24T17:58:44.010000"],["2024-07-24T17:58:45.010000"],["2024-07-24T17:58:46.010000"],["2024-07-24T17:58:47.010000"],["2024-07-24T17:58:48.010000"],["2024-07-24T17:58:49.010000"],["2024-07-24T17:58:50.010000"],["2024-07-24T17:58:51.010000"],["2024-07-24T17:58:52.010000"],["2024-07-24T17:58:53.010000"],["2024-07-24T17:58:54.010000"],["2024-07-24T17:58:55.010000"],["2024-07-24T17:58:56.010000"],["2024-07-24T17:58:57.010000"],["2024-07-24T17:58:58.010000"],["2024-07-24T17:58:59.010000"],["2024-07-24T17:59:00.010000"],["2024-07-24T17:59:01.010000"],["2024-07-24T17:59:02.010000"],["2024-07-24T17:59:03.010000"],["2024-07-24T17:59:04.010000"],["2024-07-24T17:59:05.010000"],["2024-07-24T17:59:06.010000"],["2024-07-24T17:59:07.010000"],["2024-07-24T17:59:08.010000"],["2024-07-24T17:59:09.010000"],["2024-07-24T17:59:10.010000"],["2024-07-24T17:59:11.010000"],["2024-07-24T17:59:12.010000"],["2024-07-24T17:59:13.010000"],["2024-07-24T17:59:14.010000"],["2024-07-24T17:59:15.010000"],["2024-07-24T17:59:16.010000"],["2024-07-24T17:59:17.010000"],["2024-07-24T17:59:18.010000"],["2024-07-24T17:59:19.010000"],["2024-07-24T17:59:20.010000"],["2024-07-24T17:59:21.010000"],["2024-07-24T17:59:22.010000"],["2024-07-24T17:59:23.010000"],["2024-07-24T17:59:24.010000"],["2024-07-24T17:59:25.010000"],["2024-07-24T17:59:26.010000"],["2024-07-24T17:59:27.010000"],["2024-07-24T17:59:28.010000"],["2024-07-24T17:59:29.010000"],["2024-07-24T17:59:30.010000"],["2024-07-24T17:59:31.010000"],["2024-07-24T17:59:32.010000"],["2024-07-24T17:59:33.010000"],["2024-07-24T17:59:34.010000"],["2024-07-24T17:59:35.010000"],["2024-07-24T17:59:36.010000"],["2024-07-24T17:59:37.010000"],["2024-07-24T17:59:38.010000"],["2024-07-24T17:59:39.010000"],["2024-07-24T17:59:40.010000"],["2024-07-24T17:59:41.010000"],["2024-07-24T17:59:42.010000"],["2024-07-24T17:59:43.010000"],["2024-07-24T17:59:44.010000"],["2024-07-24T17:59:45.010000"],["2024-07-24T17:59:46.010000"],["2024-07-24T17:59:47.010000"],["2024-07-24T17:59:48.010000"],["2024-07-24T17:59:49.010000"],["2024-07-24T17:59:50.010000"],["2024-07-24T17:59:51.010000"],["2024-07-24T17:59:52.010000"],["2024-07-24T17:59:53.010000"],["2024-07-24T17:59:54.010000"],["2024-07-24T17:59:55.010000"],["2024-07-24T17:59:56.010000"],["2024-07-24T17:59:57.010000"],["2024-07-24T17:59:58.010000"],["2024-07-24T17:59:59.010000"],["2024-07-24T18:00:00.010000"],["2024-07-24T18:00:01.010000"],["2024-07-24T18:00:02.010000"],["2024-07-24T18:00:03.010000"],["2024-07-24T18:00:04.010000"],["2024-07-24T18:00:05.010000"],["2024-07-24T18:00:06.010000"],["2024-07-24T18:00:07.010000"],["2024-07-24T18:00:08.010000"],["2024-07-24T18:00:09.010000"],["2024-07-24T18:00:10.010000"],["2024-07-24T18:00:11.010000"],["2024-07-24T18:00:12.010000"],["2024-07-24T18:00:13.010000"],["2024-07-24T18:00:14.010000"],["2024-07-24T18:00:15.010000"],["2024-07-24T18:00:16.010000"],["2024-07-24T18:00:17.010000"],["2024-07-24T18:00:18.010000"],["2024-07-24T18:00:19.010000"],["2024-07-24T18:00:20.010000"],["2024-07-24T18:00:21.010000"],["2024-07-24T18:00:22.010000"],["2024-07-24T18:00:23.010000"],["2024-07-24T18:00:24.010000"],["2024-07-24T18:00:25.010000"],["2024-07-24T18:00:26.010000"],["2024-07-24T18:00:27.010000"],["2024-07-24T18:00:28.010000"],["2024-07-24T18:00:29.010000"],["2024-07-24T18:00:30.010000"],["2024-07-24T18:00:31.010000"],["2024-07-24T18:00:32.010000"],["2024-07-24T18:00:33.010000"],["2024-07-24T18:00:34.010000"],["2024-07-24T18:00:35.010000"],["2024-07-24T18:00:36.010000"],["2024-07-24T18:00:37.010000"],["2024-07-24T18:00:38.010000"],["2024-07-24T18:00:39.010000"],["2024-07-24T18:00:40.010000"],["2024-07-24T18:00:41.010000"],["2024-07-24T18:00:42.010000"],["2024-07-24T18:00:43.010000"],["2024-07-24T18:00:44.010000"],["2024-07-24T18:00:45.010000"],["2024-07-24T18:00:46.010000"],["2024-07-24T18:00:47.010000"],["2024-07-24T18:00:48.010000"],["2024-07-24T18:00:49.010000"],["2024-07-24T18:00:50.010000"],["2024-07-24T18:00:51.010000"],["2024-07-24T18:00:52.010000"],["2024-07-24T18:00:53.010000"],["2024-07-24T18:00:54.010000"],["2024-07-24T18:00:55.010000"],["2024-07-24T18:00:56.010000"],["2024-07-24T18:00:57.010000"],["2024-07-24T18:00:58.010000"],["2024-07-24T18:00:59.010000"],["2024-07-24T18:01:00.010000"],["2024-07-24T18:01:01.010000"],["2024-07-24T18:01:02.010000"],["2024-07-24T18:01:03.010000"],["2024-07-24T18:01:04.010000"],["2024-07-24T18:01:05.010000"],["2024-07-24T18:01:06.010000"],["2024-07-24T18:01:07.010000"],["2024-07-24T18:01:08.010000"],["2024-07-24T18:01:09.010000"],["2024-07-24T18:01:10.010000"],["2024-07-24T18:01:11.010000"],["2024-07-24T18:01:12.010000"],["2024-07-24T18:01:13.010000"],["2024-07-24T18:01:14.010000"],["2024-07-24T18:01:15.010000"],["2024-07-24T18:01:16.010000"],["2024-07-24T18:01:17.010000"],["2024-07-24T18:01:18.010000"],["2024-07-24T18:01:19.010000"],["2024-07-24T18:01:20.010000"],["2024-07-24T18:01:21.010000"],["2024-07-24T18:01:22.010000"],["2024-07-24T18:01:23.010000"],["2024-07-24T18:01:24.010000"],["2024-07-24T18:01:25.010000"],["2024-07-24T18:01:26.010000"],["2024-07-24T18:01:27.010000"],["2024-07-24T18:01:28.010000"],["2024-07-24T18:01:29.010000"],["2024-07-24T18:01:30.010000"],["2024-07-24T18:01:31.010000"],["2024-07-24T18:01:32.010000"],["2024-07-24T18:01:33.010000"],["2024-07-24T18:01:34.010000"],["2024-07-24T18:01:35.010000"],["2024-07-24T18:01:36.010000"],["2024-07-24T18:01:37.010000"],["2024-07-24T18:01:38.010000"],["2024-07-24T18:01:39.010000"],["2024-07-24T18:01:40.010000"],["2024-07-24T18:01:41.010000"],["2024-07-24T18:01:42.010000"],["2024-07-24T18:01:43.010000"],["2024-07-24T18:01:44.010000"],["2024-07-24T18:01:45.010000"],["2024-07-24T18:01:46.010000"],["2024-07-24T18:01:47.010000"],["2024-07-24T18:01:48.010000"],["2024-07-24T18:01:49.010000"],["2024-07-24T18:01:50.010000"],["2024-07-24T18:01:51.010000"],["2024-07-24T18:01:52.010000"],["2024-07-24T18:01:53.010000"],["2024-07-24T18:01:54.010000"],["2024-07-24T18:01:55.010000"],["2024-07-24T18:01:56.010000"],["2024-07-24T18:01:57.010000"],["2024-07-24T18:01:58.010000"],["2024-07-24T18:01:59.010000"],["2024-07-24T18:02:00.010000"],["2024-07-24T18:02:01.010000"],["2024-07-24T18:02:02.010000"],["2024-07-24T18:02:03.010000"],["2024-07-24T18:02:04.010000"],["2024-07-24T18:02:05.010000"],["2024-07-24T18:02:06.010000"],["2024-07-24T18:02:07.010000"],["2024-07-24T18:02:08.010000"],["2024-07-24T18:02:09.010000"],["2024-07-24T18:02:10.010000"],["2024-07-24T18:02:11.010000"],["2024-07-24T18:02:12.010000"],["2024-07-24T18:02:13.010000"],["2024-07-24T18:02:14.010000"],["2024-07-24T18:02:15.010000"],["2024-07-24T18:02:16.010000"],["2024-07-24T18:02:17.010000"],["2024-07-24T18:02:18.010000"],["2024-07-24T18:02:19.010000"],["2024-07-24T18:02:20.010000"],["2024-07-24T18:02:21.010000"],["2024-07-24T18:02:22.010000"],["2024-07-24T18:02:23.010000"],["2024-07-24T18:02:24.010000"],["2024-07-24T18:02:25.010000"],["2024-07-24T18:02:26.010000"],["2024-07-24T18:02:27.010000"],["2024-07-24T18:02:28.010000"],["2024-07-24T18:02:29.010000"],["2024-07-24T18:02:30.010000"],["2024-07-24T18:02:31.010000"],["2024-07-24T18:02:32.010000"],["2024-07-24T18:02:33.010000"],["2024-07-24T18:02:34.010000"],["2024-07-24T18:02:35.010000"],["2024-07-24T18:02:36.010000"],["2024-07-24T18:02:37.010000"],["2024-07-24T18:02:38.010000"],["2024-07-24T18:02:39.010000"],["2024-07-24T18:02:40.010000"],["2024-07-24T18:02:41.010000"],["2024-07-24T18:02:42.010000"],["2024-07-24T18:02:43.010000"],["2024-07-24T18:02:44.010000"],["2024-07-24T18:02:45.010000"],["2024-07-24T18:02:46.010000"],["2024-07-24T18:02:47.010000"],["2024-07-24T18:02:48.010000"],["2024-07-24T18:02:49.010000"],["2024-07-24T18:02:50.010000"],["2024-07-24T18:02:51.010000"],["2024-07-24T18:02:52.010000"],["2024-07-24T18:02:53.010000"],["2024-07-24T18:02:54.010000"],["2024-07-24T18:02:55.010000"],["2024-07-24T18:02:56.010000"],["2024-07-24T18:02:57.010000"],["2024-07-24T18:02:58.010000"],["2024-07-24T18:02:59.010000"],["2024-07-24T18:03:00.010000"],["2024-07-24T18:03:01.010000"],["2024-07-24T18:03:02.010000"],["2024-07-24T18:03:03.010000"],["2024-07-24T18:03:04.010000"],["2024-07-24T18:03:05.010000"],["2024-07-24T18:03:06.010000"],["2024-07-24T18:03:07.010000"],["2024-07-24T18:03:08.010000"],["2024-07-24T18:03:09.010000"],["2024-07-24T18:03:10.010000"],["2024-07-24T18:03:11.010000"],["2024-07-24T18:03:12.010000"],["2024-07-24T18:03:13.010000"],["2024-07-24T18:03:14.010000"],["2024-07-24T18:03:15.010000"],["2024-07-24T18:03:16.010000"],["2024-07-24T18:03:17.010000"],["2024-07-24T18:03:18.010000"],["2024-07-24T18:03:19.010000"],["2024-07-24T18:03:20.010000"],["2024-07-24T18:03:21.010000"],["2024-07-24T18:03:22.010000"],["2024-07-24T18:03:23.010000"],["2024-07-24T18:03:24.010000"],["2024-07-24T18:03:25.010000"],["2024-07-24T18:03:26.010000"],["2024-07-24T18:03:27.010000"],["2024-07-24T18:03:28.010000"],["2024-07-24T18:03:29.010000"],["2024-07-24T18:03:30.010000"],["2024-07-24T18:03:31.010000"],["2024-07-24T18:03:32.010000"],["2024-07-24T18:03:33.010000"],["2024-07-24T18:03:34.010000"],["2024-07-24T18:03:35.010000"],["2024-07-24T18:03:36.010000"],["2024-07-24T18:03:37.010000"],["2024-07-24T18:03:38.010000"],["2024-07-24T18:03:39.010000"],["2024-07-24T18:03:40.010000"],["2024-07-24T18:03:41.010000"],["2024-07-24T18:03:42.010000"],["2024-07-24T18:03:43.010000"],["2024-07-24T18:03:44.010000"],["2024-07-24T18:03:45.010000"],["2024-07-24T18:03:46.010000"],["2024-07-24T18:03:47.010000"],["2024-07-24T18:03:48.010000"],["2024-07-24T18:03:49.010000"],["2024-07-24T18:03:50.010000"],["2024-07-24T18:03:51.010000"],["2024-07-24T18:03:52.010000"],["2024-07-24T18:03:53.010000"],["2024-07-24T18:03:54.010000"],["2024-07-24T18:03:55.010000"],["2024-07-24T18:03:56.010000"],["2024-07-24T18:03:57.010000"],["2024-07-24T18:03:58.010000"],["2024-07-24T18:03:59.010000"],["2024-07-24T18:04:00.010000"],["2024-07-24T18:04:01.010000"],["2024-07-24T18:04:02.010000"],["2024-07-24T18:04:03.010000"],["2024-07-24T18:04:04.010000"],["2024-07-24T18:04:05.010000"],["2024-07-24T18:04:06.010000"],["2024-07-24T18:04:07.010000"],["2024-07-24T18:04:08.010000"],["2024-07-24T18:04:09.010000"],["2024-07-24T18:04:10.010000"],["2024-07-24T18:04:11.010000"],["2024-07-24T18:04:12.010000"],["2024-07-24T18:04:13.010000"],["2024-07-24T18:04:14.010000"],["2024-07-24T18:04:15.010000"],["2024-07-24T18:04:16.010000"],["2024-07-24T18:04:17.010000"],["2024-07-24T18:04:18.010000"],["2024-07-24T18:04:19.010000"],["2024-07-24T18:04:20.010000"],["2024-07-24T18:04:21.010000"],["2024-07-24T18:04:22.010000"],["2024-07-24T18:04:23.010000"],["2024-07-24T18:04:24.010000"],["2024-07-24T18:04:25.010000"],["2024-07-24T18:04:26.010000"],["2024-07-24T18:04:27.010000"],["2024-07-24T18:04:28.010000"],["2024-07-24T18:04:29.010000"],["2024-07-24T18:04:30.010000"],["2024-07-24T18:04:31.010000"],["2024-07-24T18:04:32.010000"],["2024-07-24T18:04:33.010000"],["2024-07-24T18:04:34.010000"],["2024-07-24T18:04:35.010000"],["2024-07-24T18:04:36.010000"],["2024-07-24T18:04:37.010000"],["2024-07-24T18:04:38.010000"],["2024-07-24T18:04:39.010000"],["2024-07-24T18:04:40.010000"],["2024-07-24T18:04:41.010000"],["2024-07-24T18:04:42.010000"],["2024-07-24T18:04:43.010000"],["2024-07-24T18:04:44.010000"],["2024-07-24T18:04:45.010000"],["2024-07-24T18:04:46.010000"],["2024-07-24T18:04:47.010000"],["2024-07-24T18:04:48.010000"],["2024-07-24T18:04:49.010000"],["2024-07-24T18:04:50.010000"],["2024-07-24T18:04:51.010000"],["2024-07-24T18:04:52.010000"],["2024-07-24T18:04:53.010000"],["2024-07-24T18:04:54.010000"],["2024-07-24T18:04:55.010000"],["2024-07-24T18:04:56.010000"],["2024-07-24T18:04:57.010000"],["2024-07-24T18:04:58.010000"],["2024-07-24T18:04:59.010000"],["2024-07-24T18:05:00.010000"],["2024-07-24T18:05:01.010000"],["2024-07-24T18:05:02.010000"],["2024-07-24T18:05:03.010000"],["2024-07-24T18:05:04.010000"],["2024-07-24T18:05:05.010000"],["2024-07-24T18:05:06.010000"],["2024-07-24T18:05:07.010000"],["2024-07-24T18:05:08.010000"],["2024-07-24T18:05:09.010000"],["2024-07-24T18:05:10.010000"],["2024-07-24T18:05:11.010000"],["2024-07-24T18:05:12.010000"],["2024-07-24T18:05:13.010000"],["2024-07-24T18:05:14.010000"],["2024-07-24T18:05:15.010000"],["2024-07-24T18:05:16.010000"],["2024-07-24T18:05:17.010000"],["2024-07-24T18:05:18.010000"],["2024-07-24T18:05:19.010000"],["2024-07-24T18:05:20.010000"],["2024-07-24T18:05:21.010000"],["2024-07-24T18:05:22.010000"],["2024-07-24T18:05:23.010000"],["2024-07-24T18:05:24.010000"],["2024-07-24T18:05:25.010000"],["2024-07-24T18:05:26.010000"],["2024-07-24T18:05:27.010000"],["2024-07-24T18:05:28.010000"],["2024-07-24T18:05:29.010000"],["2024-07-24T18:05:30.010000"],["2024-07-24T18:05:31.010000"],["2024-07-24T18:05:32.010000"],["2024-07-24T18:05:33.010000"],["2024-07-24T18:05:34.010000"],["2024-07-24T18:05:35.010000"],["2024-07-24T18:05:36.010000"],["2024-07-24T18:05:37.010000"],["2024-07-24T18:05:38.010000"],["2024-07-24T18:05:39.010000"],["2024-07-24T18:05:40.010000"],["2024-07-24T18:05:41.010000"],["2024-07-24T18:05:42.010000"],["2024-07-24T18:05:43.010000"],["2024-07-24T18:05:44.010000"],["2024-07-24T18:05:45.010000"],["2024-07-24T18:05:46.010000"],["2024-07-24T18:05:47.010000"],["2024-07-24T18:05:48.010000"],["2024-07-24T18:05:49.010000"],["2024-07-24T18:05:50.010000"],["2024-07-24T18:05:51.010000"],["2024-07-24T18:05:52.010000"],["2024-07-24T18:05:53.010000"],["2024-07-24T18:05:54.010000"],["2024-07-24T18:05:55.010000"],["2024-07-24T18:05:56.010000"],["2024-07-24T18:05:57.010000"],["2024-07-24T18:05:58.010000"],["2024-07-24T18:05:59.010000"],["2024-07-24T18:06:00.010000"],["2024-07-24T18:06:01.010000"],["2024-07-24T18:06:02.010000"],["2024-07-24T18:06:03.010000"],["2024-07-24T18:06:04.010000"],["2024-07-24T18:06:05.010000"],["2024-07-24T18:06:06.010000"],["2024-07-24T18:06:07.010000"],["2024-07-24T18:06:08.010000"],["2024-07-24T18:06:09.010000"],["2024-07-24T18:06:10.010000"],["2024-07-24T18:06:11.010000"],["2024-07-24T18:06:12.010000"],["2024-07-24T18:06:13.010000"],["2024-07-24T18:06:14.010000"],["2024-07-24T18:06:15.010000"],["2024-07-24T18:06:16.010000"],["2024-07-24T18:06:17.010000"],["2024-07-24T18:06:18.010000"],["2024-07-24T18:06:19.010000"],["2024-07-24T18:06:20.010000"],["2024-07-24T18:06:21.010000"],["2024-07-24T18:06:22.010000"],["2024-07-24T18:06:23.010000"],["2024-07-24T18:06:24.010000"],["2024-07-24T18:06:25.010000"],["2024-07-24T18:06:26.010000"],["2024-07-24T18:06:27.010000"],["2024-07-24T18:06:28.010000"],["2024-07-24T18:06:29.010000"],["2024-07-24T18:06:30.010000"],["2024-07-24T18:06:31.010000"],["2024-07-24T18:06:32.010000"],["2024-07-24T18:06:33.010000"],["2024-07-24T18:06:34.010000"],["2024-07-24T18:06:35.010000"],["2024-07-24T18:06:36.010000"],["2024-07-24T18:06:37.010000"],["2024-07-24T18:06:38.010000"],["2024-07-24T18:06:39.010000"],["2024-07-24T18:06:40.010000"],["2024-07-24T18:06:41.010000"],["2024-07-24T18:06:42.010000"],["2024-07-24T18:06:43.010000"],["2024-07-24T18:06:44.010000"],["2024-07-24T18:06:45.010000"],["2024-07-24T18:06:46.010000"],["2024-07-24T18:06:47.010000"],["2024-07-24T18:06:48.010000"],["2024-07-24T18:06:49.010000"],["2024-07-24T18:06:50.010000"],["2024-07-24T18:06:51.010000"],["2024-07-24T18:06:52.010000"],["2024-07-24T18:06:53.010000"],["2024-07-24T18:06:54.010000"],["2024-07-24T18:06:55.010000"],["2024-07-24T18:06:56.010000"],["2024-07-24T18:06:57.010000"],["2024-07-24T18:06:58.010000"],["2024-07-24T18:06:59.010000"],["2024-07-24T18:07:00.010000"],["2024-07-24T18:07:01.010000"],["2024-07-24T18:07:02.010000"],["2024-07-24T18:07:03.010000"],["2024-07-24T18:07:04.010000"],["2024-07-24T18:07:05.010000"],["2024-07-24T18:07:06.010000"],["2024-07-24T18:07:07.010000"],["2024-07-24T18:07:08.010000"],["2024-07-24T18:07:09.010000"],["2024-07-24T18:07:10.010000"],["2024-07-24T18:07:11.010000"],["2024-07-24T18:07:12.010000"],["2024-07-24T18:07:13.010000"],["2024-07-24T18:07:14.010000"],["2024-07-24T18:07:15.010000"],["2024-07-24T18:07:16.010000"],["2024-07-24T18:07:17.010000"],["2024-07-24T18:07:18.010000"],["2024-07-24T18:07:19.010000"],["2024-07-24T18:07:20.010000"],["2024-07-24T18:07:21.010000"],["2024-07-24T18:07:22.010000"],["2024-07-24T18:07:23.010000"],["2024-07-24T18:07:24.010000"],["2024-07-24T18:07:25.010000"],["2024-07-24T18:07:26.010000"],["2024-07-24T18:07:27.010000"],["2024-07-24T18:07:28.010000"],["2024-07-24T18:07:29.010000"],["2024-07-24T18:07:30.010000"],["2024-07-24T18:07:31.010000"],["2024-07-24T18:07:32.010000"],["2024-07-24T18:07:33.010000"],["2024-07-24T18:07:34.010000"],["2024-07-24T18:07:35.010000"],["2024-07-24T18:07:36.010000"],["2024-07-24T18:07:37.010000"],["2024-07-24T18:07:38.010000"],["2024-07-24T18:07:39.010000"],["2024-07-24T18:07:40.010000"],["2024-07-24T18:07:41.010000"],["2024-07-24T18:07:42.010000"],["2024-07-24T18:07:43.010000"],["2024-07-24T18:07:44.010000"],["2024-07-24T18:07:45.010000"],["2024-07-24T18:07:46.010000"],["2024-07-24T18:07:47.010000"],["2024-07-24T18:07:48.010000"],["2024-07-24T18:07:49.010000"],["2024-07-24T18:07:50.010000"],["2024-07-24T18:07:51.010000"],["2024-07-24T18:07:52.010000"],["2024-07-24T18:07:53.010000"],["2024-07-24T18:07:54.010000"],["2024-07-24T18:07:55.010000"],["2024-07-24T18:07:56.010000"],["2024-07-24T18:07:57.010000"],["2024-07-24T18:07:58.010000"],["2024-07-24T18:07:59.010000"],["2024-07-24T18:08:00.010000"],["2024-07-24T18:08:01.010000"],["2024-07-24T18:08:02.010000"],["2024-07-24T18:08:03.010000"],["2024-07-24T18:08:04.010000"],["2024-07-24T18:08:05.010000"],["2024-07-24T18:08:06.010000"],["2024-07-24T18:08:07.010000"],["2024-07-24T18:08:08.010000"],["2024-07-24T18:08:09.010000"],["2024-07-24T18:08:10.010000"],["2024-07-24T18:08:11.010000"],["2024-07-24T18:08:12.010000"],["2024-07-24T18:08:13.010000"],["2024-07-24T18:08:14.010000"],["2024-07-24T18:08:15.010000"],["2024-07-24T18:08:16.010000"],["2024-07-24T18:08:17.010000"],["2024-07-24T18:08:18.010000"],["2024-07-24T18:08:19.010000"],["2024-07-24T18:08:20.010000"],["2024-07-24T18:08:21.010000"],["2024-07-24T18:08:22.010000"],["2024-07-24T18:08:23.010000"],["2024-07-24T18:08:24.010000"],["2024-07-24T18:08:25.010000"],["2024-07-24T18:08:26.010000"],["2024-07-24T18:08:27.010000"],["2024-07-24T18:08:28.010000"],["2024-07-24T18:08:29.010000"],["2024-07-24T18:08:30.010000"],["2024-07-24T18:08:31.010000"],["2024-07-24T18:08:32.010000"],["2024-07-24T18:08:33.010000"],["2024-07-24T18:08:34.010000"],["2024-07-24T18:08:35.010000"],["2024-07-24T18:08:36.010000"],["2024-07-24T18:08:37.010000"],["2024-07-24T18:08:38.010000"],["2024-07-24T18:08:39.010000"],["2024-07-24T18:08:40.010000"],["2024-07-24T18:08:41.010000"],["2024-07-24T18:08:42.010000"],["2024-07-24T18:08:43.010000"],["2024-07-24T18:08:44.010000"],["2024-07-24T18:08:45.010000"],["2024-07-24T18:08:46.010000"],["2024-07-24T18:08:47.010000"],["2024-07-24T18:08:48.010000"],["2024-07-24T18:08:49.010000"],["2024-07-24T18:08:50.010000"],["2024-07-24T18:08:51.010000"],["2024-07-24T18:08:52.010000"],["2024-07-24T18:08:53.010000"],["2024-07-24T18:08:54.010000"],["2024-07-24T18:08:55.010000"],["2024-07-24T18:08:56.010000"],["2024-07-24T18:08:57.010000"],["2024-07-24T18:08:58.010000"],["2024-07-24T18:08:59.010000"],["2024-07-24T18:09:00.010000"],["2024-07-24T18:09:01.010000"],["2024-07-24T18:09:02.010000"],["2024-07-24T18:09:03.010000"],["2024-07-24T18:09:04.010000"],["2024-07-24T18:09:05.010000"],["2024-07-24T18:09:06.010000"],["2024-07-24T18:09:07.010000"],["2024-07-24T18:09:08.010000"],["2024-07-24T18:09:09.010000"],["2024-07-24T18:09:10.010000"],["2024-07-24T18:09:11.010000"],["2024-07-24T18:09:12.010000"],["2024-07-24T18:09:13.010000"],["2024-07-24T18:09:14.010000"],["2024-07-24T18:09:15.010000"],["2024-07-24T18:09:16.010000"],["2024-07-24T18:09:17.010000"],["2024-07-24T18:09:18.010000"],["2024-07-24T18:09:19.010000"],["2024-07-24T18:09:20.010000"],["2024-07-24T18:09:21.010000"],["2024-07-24T18:09:22.010000"],["2024-07-24T18:09:23.010000"],["2024-07-24T18:09:24.010000"],["2024-07-24T18:09:25.010000"],["2024-07-24T18:09:26.010000"],["2024-07-24T18:09:27.010000"],["2024-07-24T18:09:28.010000"],["2024-07-24T18:09:29.010000"],["2024-07-24T18:09:30.010000"],["2024-07-24T18:09:31.010000"],["2024-07-24T18:09:32.010000"],["2024-07-24T18:09:33.010000"],["2024-07-24T18:09:34.010000"],["2024-07-24T18:09:35.010000"],["2024-07-24T18:09:36.010000"],["2024-07-24T18:09:37.010000"],["2024-07-24T18:09:38.010000"],["2024-07-24T18:09:39.010000"],["2024-07-24T18:09:40.010000"],["2024-07-24T18:09:41.010000"],["2024-07-24T18:09:42.010000"],["2024-07-24T18:09:43.010000"],["2024-07-24T18:09:44.010000"],["2024-07-24T18:09:45.010000"],["2024-07-24T18:09:46.010000"],["2024-07-24T18:09:47.010000"],["2024-07-24T18:09:48.010000"],["2024-07-24T18:09:49.010000"],["2024-07-24T18:09:50.010000"],["2024-07-24T18:09:51.010000"],["2024-07-24T18:09:52.010000"],["2024-07-24T18:09:53.010000"],["2024-07-24T18:09:54.010000"],["2024-07-24T18:09:55.010000"],["2024-07-24T18:09:56.010000"],["2024-07-24T18:09:57.010000"],["2024-07-24T18:09:58.010000"],["2024-07-24T18:09:59.010000"],["2024-07-24T18:10:00.010000"],["2024-07-24T18:10:01.010000"],["2024-07-24T18:10:02.010000"],["2024-07-24T18:10:03.010000"],["2024-07-24T18:10:04.010000"],["2024-07-24T18:10:05.010000"],["2024-07-24T18:10:06.010000"],["2024-07-24T18:10:07.010000"],["2024-07-24T18:10:08.010000"],["2024-07-24T18:10:09.010000"],["2024-07-24T18:10:10.010000"],["2024-07-24T18:10:11.010000"],["2024-07-24T18:10:12.010000"],["2024-07-24T18:10:13.010000"],["2024-07-24T18:10:14.010000"],["2024-07-24T18:10:15.010000"],["2024-07-24T18:10:16.010000"],["2024-07-24T18:10:17.010000"],["2024-07-24T18:10:18.010000"],["2024-07-24T18:10:19.010000"],["2024-07-24T18:10:20.010000"],["2024-07-24T18:10:21.010000"],["2024-07-24T18:10:22.010000"],["2024-07-24T18:10:23.010000"],["2024-07-24T18:10:24.010000"],["2024-07-24T18:10:25.010000"],["2024-07-24T18:10:26.010000"],["2024-07-24T18:10:27.010000"],["2024-07-24T18:10:28.010000"],["2024-07-24T18:10:29.010000"],["2024-07-24T18:10:30.010000"],["2024-07-24T18:10:31.010000"],["2024-07-24T18:10:32.010000"],["2024-07-24T18:10:33.010000"],["2024-07-24T18:10:34.010000"],["2024-07-24T18:10:35.010000"],["2024-07-24T18:10:36.010000"],["2024-07-24T18:10:37.010000"],["2024-07-24T18:10:38.010000"],["2024-07-24T18:10:39.010000"],["2024-07-24T18:10:40.010000"],["2024-07-24T18:10:41.010000"],["2024-07-24T18:10:42.010000"],["2024-07-24T18:10:43.010000"],["2024-07-24T18:10:44.010000"],["2024-07-24T18:10:45.010000"],["2024-07-24T18:10:46.010000"],["2024-07-24T18:10:47.010000"],["2024-07-24T18:10:48.010000"],["2024-07-24T18:10:49.010000"],["2024-07-24T18:10:50.010000"],["2024-07-24T18:10:51.010000"],["2024-07-24T18:10:52.010000"],["2024-07-24T18:10:53.010000"],["2024-07-24T18:10:54.010000"],["2024-07-24T18:10:55.010000"],["2024-07-24T18:10:56.010000"],["2024-07-24T18:10:57.010000"],["2024-07-24T18:10:58.010000"],["2024-07-24T18:10:59.010000"],["2024-07-24T18:11:00.010000"],["2024-07-24T18:11:01.010000"],["2024-07-24T18:11:02.010000"],["2024-07-24T18:11:03.010000"],["2024-07-24T18:11:04.010000"],["2024-07-24T18:11:05.010000"],["2024-07-24T18:11:06.010000"],["2024-07-24T18:11:07.010000"],["2024-07-24T18:11:08.010000"],["2024-07-24T18:11:09.010000"],["2024-07-24T18:11:10.010000"],["2024-07-24T18:11:11.010000"],["2024-07-24T18:11:12.010000"],["2024-07-24T18:11:13.010000"],["2024-07-24T18:11:14.010000"],["2024-07-24T18:11:15.010000"],["2024-07-24T18:11:16.010000"],["2024-07-24T18:11:17.010000"],["2024-07-24T18:11:18.010000"],["2024-07-24T18:11:19.010000"],["2024-07-24T18:11:20.010000"],["2024-07-24T18:11:21.010000"],["2024-07-24T18:11:22.010000"],["2024-07-24T18:11:23.010000"],["2024-07-24T18:11:24.010000"],["2024-07-24T18:11:25.010000"],["2024-07-24T18:11:26.010000"],["2024-07-24T18:11:27.010000"],["2024-07-24T18:11:28.010000"],["2024-07-24T18:11:29.010000"],["2024-07-24T18:11:30.010000"],["2024-07-24T18:11:31.010000"],["2024-07-24T18:11:32.010000"],["2024-07-24T18:11:33.010000"],["2024-07-24T18:11:34.010000"],["2024-07-24T18:11:35.010000"],["2024-07-24T18:11:36.010000"],["2024-07-24T18:11:37.010000"],["2024-07-24T18:11:38.010000"],["2024-07-24T18:11:39.010000"],["2024-07-24T18:11:40.010000"],["2024-07-24T18:11:41.010000"],["2024-07-24T18:11:42.010000"],["2024-07-24T18:11:43.010000"],["2024-07-24T18:11:44.010000"],["2024-07-24T18:11:45.010000"],["2024-07-24T18:11:46.010000"],["2024-07-24T18:11:47.010000"],["2024-07-24T18:11:48.010000"],["2024-07-24T18:11:49.010000"],["2024-07-24T18:11:50.010000"],["2024-07-24T18:11:51.010000"],["2024-07-24T18:11:52.010000"],["2024-07-24T18:11:53.010000"],["2024-07-24T18:11:54.010000"],["2024-07-24T18:11:55.010000"],["2024-07-24T18:11:56.010000"],["2024-07-24T18:11:57.010000"],["2024-07-24T18:11:58.010000"],["2024-07-24T18:11:59.010000"],["2024-07-24T18:12:00.010000"],["2024-07-24T18:12:01.010000"],["2024-07-24T18:12:02.010000"],["2024-07-24T18:12:03.010000"],["2024-07-24T18:12:04.010000"],["2024-07-24T18:12:05.010000"],["2024-07-24T18:12:06.010000"],["2024-07-24T18:12:07.010000"],["2024-07-24T18:12:08.010000"],["2024-07-24T18:12:09.010000"],["2024-07-24T18:12:10.010000"],["2024-07-24T18:12:11.010000"],["2024-07-24T18:12:12.010000"],["2024-07-24T18:12:13.010000"],["2024-07-24T18:12:14.010000"],["2024-07-24T18:12:15.010000"],["2024-07-24T18:12:16.010000"],["2024-07-24T18:12:17.010000"],["2024-07-24T18:12:18.010000"],["2024-07-24T18:12:19.010000"],["2024-07-24T18:12:20.010000"],["2024-07-24T18:12:21.010000"],["2024-07-24T18:12:22.010000"],["2024-07-24T18:12:23.010000"],["2024-07-24T18:12:24.010000"],["2024-07-24T18:12:25.010000"],["2024-07-24T18:12:26.010000"],["2024-07-24T18:12:27.010000"],["2024-07-24T18:12:28.010000"],["2024-07-24T18:12:29.010000"],["2024-07-24T18:12:30.010000"],["2024-07-24T18:12:31.010000"],["2024-07-24T18:12:32.010000"],["2024-07-24T18:12:33.010000"],["2024-07-24T18:12:34.010000"],["2024-07-24T18:12:35.010000"],["2024-07-24T18:12:36.010000"],["2024-07-24T18:12:37.010000"],["2024-07-24T18:12:38.010000"],["2024-07-24T18:12:39.010000"],["2024-07-24T18:12:40.010000"],["2024-07-24T18:12:41.010000"],["2024-07-24T18:12:42.010000"],["2024-07-24T18:12:43.010000"],["2024-07-24T18:12:44.010000"],["2024-07-24T18:12:45.010000"],["2024-07-24T18:12:46.010000"],["2024-07-24T18:12:47.010000"],["2024-07-24T18:12:48.010000"],["2024-07-24T18:12:49.010000"],["2024-07-24T18:12:50.010000"],["2024-07-24T18:12:51.010000"],["2024-07-24T18:12:52.010000"],["2024-07-24T18:12:53.010000"],["2024-07-24T18:12:54.010000"],["2024-07-24T18:12:55.010000"],["2024-07-24T18:12:56.010000"],["2024-07-24T18:12:57.010000"],["2024-07-24T18:12:58.010000"],["2024-07-24T18:12:59.010000"],["2024-07-24T18:13:00.010000"],["2024-07-24T18:13:01.010000"],["2024-07-24T18:13:02.010000"],["2024-07-24T18:13:03.010000"],["2024-07-24T18:13:04.010000"],["2024-07-24T18:13:05.010000"],["2024-07-24T18:13:06.010000"],["2024-07-24T18:13:07.010000"],["2024-07-24T18:13:08.010000"],["2024-07-24T18:13:09.010000"],["2024-07-24T18:13:10.010000"],["2024-07-24T18:13:11.010000"],["2024-07-24T18:13:12.010000"],["2024-07-24T18:13:13.010000"],["2024-07-24T18:13:14.010000"],["2024-07-24T18:13:15.010000"],["2024-07-24T18:13:16.010000"],["2024-07-24T18:13:17.010000"],["2024-07-24T18:13:18.010000"],["2024-07-24T18:13:19.010000"],["2024-07-24T18:13:20.010000"],["2024-07-24T18:13:21.010000"],["2024-07-24T18:13:22.010000"],["2024-07-24T18:13:23.010000"],["2024-07-24T18:13:24.010000"],["2024-07-24T18:13:25.010000"],["2024-07-24T18:13:26.010000"],["2024-07-24T18:13:27.010000"],["2024-07-24T18:13:28.010000"],["2024-07-24T18:13:29.010000"],["2024-07-24T18:13:30.010000"],["2024-07-24T18:13:31.010000"],["2024-07-24T18:13:32.010000"],["2024-07-24T18:13:33.010000"],["2024-07-24T18:13:34.010000"],["2024-07-24T18:13:35.010000"],["2024-07-24T18:13:36.010000"],["2024-07-24T18:13:37.010000"],["2024-07-24T18:13:38.010000"],["2024-07-24T18:13:39.010000"],["2024-07-24T18:13:40.010000"],["2024-07-24T18:13:41.010000"],["2024-07-24T18:13:42.010000"],["2024-07-24T18:13:43.010000"],["2024-07-24T18:13:44.010000"],["2024-07-24T18:13:45.010000"],["2024-07-24T18:13:46.010000"],["2024-07-24T18:13:47.010000"],["2024-07-24T18:13:48.010000"],["2024-07-24T18:13:49.010000"],["2024-07-24T18:13:50.010000"],["2024-07-24T18:13:51.010000"],["2024-07-24T18:13:52.010000"],["2024-07-24T18:13:53.010000"],["2024-07-24T18:13:54.010000"],["2024-07-24T18:13:55.010000"],["2024-07-24T18:13:56.010000"],["2024-07-24T18:13:57.010000"],["2024-07-24T18:13:58.010000"],["2024-07-24T18:13:59.010000"],["2024-07-24T18:14:00.010000"],["2024-07-24T18:14:01.010000"],["2024-07-24T18:14:02.010000"],["2024-07-24T18:14:03.010000"],["2024-07-24T18:14:04.010000"],["2024-07-24T18:14:05.010000"],["2024-07-24T18:14:06.010000"],["2024-07-24T18:14:07.010000"],["2024-07-24T18:14:08.010000"],["2024-07-24T18:14:09.010000"],["2024-07-24T18:14:10.010000"],["2024-07-24T18:14:11.010000"],["2024-07-24T18:14:12.010000"],["2024-07-24T18:14:13.010000"],["2024-07-24T18:14:14.010000"],["2024-07-24T18:14:15.010000"],["2024-07-24T18:14:16.010000"],["2024-07-24T18:14:17.010000"],["2024-07-24T18:14:18.010000"],["2024-07-24T18:14:19.010000"],["2024-07-24T18:14:20.010000"],["2024-07-24T18:14:21.010000"],["2024-07-24T18:14:22.010000"],["2024-07-24T18:14:23.010000"],["2024-07-24T18:14:24.010000"],["2024-07-24T18:14:25.010000"],["2024-07-24T18:14:26.010000"],["2024-07-24T18:14:27.010000"],["2024-07-24T18:14:28.010000"],["2024-07-24T18:14:29.010000"],["2024-07-24T18:14:30.010000"],["2024-07-24T18:14:31.010000"],["2024-07-24T18:14:32.010000"],["2024-07-24T18:14:33.010000"],["2024-07-24T18:14:34.010000"],["2024-07-24T18:14:35.010000"],["2024-07-24T18:14:36.010000"],["2024-07-24T18:14:37.010000"],["2024-07-24T18:14:38.010000"],["2024-07-24T18:14:39.010000"],["2024-07-24T18:14:40.010000"],["2024-07-24T18:14:41.010000"],["2024-07-24T18:14:42.010000"],["2024-07-24T18:14:43.010000"],["2024-07-24T18:14:44.010000"],["2024-07-24T18:14:45.010000"],["2024-07-24T18:14:46.010000"],["2024-07-24T18:14:47.010000"],["2024-07-24T18:14:48.010000"],["2024-07-24T18:14:49.010000"],["2024-07-24T18:14:50.010000"],["2024-07-24T18:14:51.010000"],["2024-07-24T18:14:52.010000"],["2024-07-24T18:14:53.010000"],["2024-07-24T18:14:54.010000"],["2024-07-24T18:14:55.010000"],["2024-07-24T18:14:56.010000"],["2024-07-24T18:14:57.010000"],["2024-07-24T18:14:58.010000"],["2024-07-24T18:14:59.010000"],["2024-07-24T18:15:00.010000"],["2024-07-24T18:15:01.010000"],["2024-07-24T18:15:02.010000"],["2024-07-24T18:15:03.010000"],["2024-07-24T18:15:04.010000"],["2024-07-24T18:15:05.010000"],["2024-07-24T18:15:06.010000"],["2024-07-24T18:15:07.010000"],["2024-07-24T18:15:08.010000"],["2024-07-24T18:15:09.010000"],["2024-07-24T18:15:10.010000"],["2024-07-24T18:15:11.010000"],["2024-07-24T18:15:12.010000"],["2024-07-24T18:15:13.010000"],["2024-07-24T18:15:14.010000"],["2024-07-24T18:15:15.010000"],["2024-07-24T18:15:16.010000"],["2024-07-24T18:15:17.010000"],["2024-07-24T18:15:18.010000"],["2024-07-24T18:15:19.010000"],["2024-07-24T18:15:20.010000"],["2024-07-24T18:15:21.010000"],["2024-07-24T18:15:22.010000"],["2024-07-24T18:15:23.010000"],["2024-07-24T18:15:24.010000"],["2024-07-24T18:15:25.010000"],["2024-07-24T18:15:26.010000"],["2024-07-24T18:15:27.010000"],["2024-07-24T18:15:28.010000"],["2024-07-24T18:15:29.010000"],["2024-07-24T18:15:30.010000"],["2024-07-24T18:15:31.010000"],["2024-07-24T18:15:32.010000"],["2024-07-24T18:15:33.010000"],["2024-07-24T18:15:34.010000"],["2024-07-24T18:15:35.010000"],["2024-07-24T18:15:36.010000"],["2024-07-24T18:15:37.010000"],["2024-07-24T18:15:38.010000"],["2024-07-24T18:15:39.010000"],["2024-07-24T18:15:40.010000"],["2024-07-24T18:15:41.010000"],["2024-07-24T18:15:42.010000"],["2024-07-24T18:15:43.010000"],["2024-07-24T18:15:44.010000"],["2024-07-24T18:15:45.010000"],["2024-07-24T18:15:46.010000"],["2024-07-24T18:15:47.010000"],["2024-07-24T18:15:48.010000"],["2024-07-24T18:15:49.010000"],["2024-07-24T18:15:50.010000"],["2024-07-24T18:15:51.010000"],["2024-07-24T18:15:52.010000"],["2024-07-24T18:15:53.010000"],["2024-07-24T18:15:54.010000"],["2024-07-24T18:15:55.010000"],["2024-07-24T18:15:56.010000"],["2024-07-24T18:15:57.010000"],["2024-07-24T18:15:58.010000"],["2024-07-24T18:15:59.010000"],["2024-07-24T18:16:00.010000"],["2024-07-24T18:16:01.010000"],["2024-07-24T18:16:02.010000"],["2024-07-24T18:16:03.010000"],["2024-07-24T18:16:04.010000"],["2024-07-24T18:16:05.010000"],["2024-07-24T18:16:06.010000"],["2024-07-24T18:16:07.010000"],["2024-07-24T18:16:08.010000"],["2024-07-24T18:16:09.010000"],["2024-07-24T18:16:10.010000"],["2024-07-24T18:16:11.010000"],["2024-07-24T18:16:12.010000"],["2024-07-24T18:16:13.010000"],["2024-07-24T18:16:14.010000"],["2024-07-24T18:16:15.010000"],["2024-07-24T18:16:16.010000"],["2024-07-24T18:16:17.010000"],["2024-07-24T18:16:18.010000"],["2024-07-24T18:16:19.010000"],["2024-07-24T18:16:20.010000"],["2024-07-24T18:16:21.010000"],["2024-07-24T18:16:22.010000"],["2024-07-24T18:16:23.010000"],["2024-07-24T18:16:24.010000"],["2024-07-24T18:16:25.010000"],["2024-07-24T18:16:26.010000"],["2024-07-24T18:16:27.010000"],["2024-07-24T18:16:28.010000"],["2024-07-24T18:16:29.010000"],["2024-07-24T18:16:30.010000"],["2024-07-24T18:16:31.010000"],["2024-07-24T18:16:32.010000"],["2024-07-24T18:16:33.010000"],["2024-07-24T18:16:34.010000"],["2024-07-24T18:16:35.010000"],["2024-07-24T18:16:36.010000"],["2024-07-24T18:16:37.010000"],["2024-07-24T18:16:38.010000"],["2024-07-24T18:16:39.010000"],["2024-07-24T18:16:40.010000"],["2024-07-24T18:16:41.010000"],["2024-07-24T18:16:42.010000"],["2024-07-24T18:16:43.010000"],["2024-07-24T18:16:44.010000"],["2024-07-24T18:16:45.010000"],["2024-07-24T18:16:46.010000"],["2024-07-24T18:16:47.010000"],["2024-07-24T18:16:48.010000"],["2024-07-24T18:16:49.010000"],["2024-07-24T18:16:50.010000"],["2024-07-24T18:16:51.010000"],["2024-07-24T18:16:52.010000"],["2024-07-24T18:16:53.010000"],["2024-07-24T18:16:54.010000"],["2024-07-24T18:16:55.010000"],["2024-07-24T18:16:56.010000"],["2024-07-24T18:16:57.010000"],["2024-07-24T18:16:58.010000"],["2024-07-24T18:16:59.010000"],["2024-07-24T18:17:00.010000"],["2024-07-24T18:17:01.010000"],["2024-07-24T18:17:02.010000"],["2024-07-24T18:17:03.010000"],["2024-07-24T18:17:04.010000"],["2024-07-24T18:17:05.010000"],["2024-07-24T18:17:06.010000"],["2024-07-24T18:17:07.010000"],["2024-07-24T18:17:08.010000"],["2024-07-24T18:17:09.010000"],["2024-07-24T18:17:10.010000"],["2024-07-24T18:17:11.010000"],["2024-07-24T18:17:12.010000"],["2024-07-24T18:17:13.010000"],["2024-07-24T18:17:14.010000"],["2024-07-24T18:17:15.010000"],["2024-07-24T18:17:16.010000"],["2024-07-24T18:17:17.010000"],["2024-07-24T18:17:18.010000"],["2024-07-24T18:17:19.010000"],["2024-07-24T18:17:20.010000"],["2024-07-24T18:17:21.010000"],["2024-07-24T18:17:22.010000"],["2024-07-24T18:17:23.010000"],["2024-07-24T18:17:24.010000"],["2024-07-24T18:17:25.010000"],["2024-07-24T18:17:26.010000"],["2024-07-24T18:17:27.010000"],["2024-07-24T18:17:28.010000"],["2024-07-24T18:17:29.010000"],["2024-07-24T18:17:30.010000"],["2024-07-24T18:17:31.010000"],["2024-07-24T18:17:32.010000"],["2024-07-24T18:17:33.010000"],["2024-07-24T18:17:34.010000"],["2024-07-24T18:17:35.010000"],["2024-07-24T18:17:36.010000"],["2024-07-24T18:17:37.010000"],["2024-07-24T18:17:38.010000"],["2024-07-24T18:17:39.010000"],["2024-07-24T18:17:40.010000"],["2024-07-24T18:17:41.010000"],["2024-07-24T18:17:42.010000"],["2024-07-24T18:17:43.010000"],["2024-07-24T18:17:44.010000"],["2024-07-24T18:17:45.010000"],["2024-07-24T18:17:46.010000"],["2024-07-24T18:17:47.010000"],["2024-07-24T18:17:48.010000"],["2024-07-24T18:17:49.010000"],["2024-07-24T18:17:50.010000"],["2024-07-24T18:17:51.010000"],["2024-07-24T18:17:52.010000"],["2024-07-24T18:17:53.010000"],["2024-07-24T18:17:54.010000"],["2024-07-24T18:17:55.010000"],["2024-07-24T18:17:56.010000"],["2024-07-24T18:17:57.010000"],["2024-07-24T18:17:58.010000"],["2024-07-24T18:17:59.010000"],["2024-07-24T18:18:00.010000"],["2024-07-24T18:18:01.010000"],["2024-07-24T18:18:02.010000"],["2024-07-24T18:18:03.010000"],["2024-07-24T18:18:04.010000"],["2024-07-24T18:18:05.010000"],["2024-07-24T18:18:06.010000"],["2024-07-24T18:18:07.010000"],["2024-07-24T18:18:08.010000"],["2024-07-24T18:18:09.010000"],["2024-07-24T18:18:10.010000"],["2024-07-24T18:18:11.010000"],["2024-07-24T18:18:12.010000"],["2024-07-24T18:18:13.010000"],["2024-07-24T18:18:14.010000"],["2024-07-24T18:18:15.010000"],["2024-07-24T18:18:16.010000"],["2024-07-24T18:18:17.010000"],["2024-07-24T18:18:18.010000"],["2024-07-24T18:18:19.010000"],["2024-07-24T18:18:20.010000"],["2024-07-24T18:18:21.010000"],["2024-07-24T18:18:22.010000"],["2024-07-24T18:18:23.010000"],["2024-07-24T18:18:24.010000"],["2024-07-24T18:18:25.010000"],["2024-07-24T18:18:26.010000"],["2024-07-24T18:18:27.010000"],["2024-07-24T18:18:28.010000"],["2024-07-24T18:18:29.010000"],["2024-07-24T18:18:30.010000"],["2024-07-24T18:18:31.010000"],["2024-07-24T18:18:32.010000"],["2024-07-24T18:18:33.010000"],["2024-07-24T18:18:34.010000"],["2024-07-24T18:18:35.010000"],["2024-07-24T18:18:36.010000"],["2024-07-24T18:18:37.010000"],["2024-07-24T18:18:38.010000"],["2024-07-24T18:18:39.010000"],["2024-07-24T18:18:40.010000"],["2024-07-24T18:18:41.010000"],["2024-07-24T18:18:42.010000"],["2024-07-24T18:18:43.010000"],["2024-07-24T18:18:44.010000"],["2024-07-24T18:18:45.010000"],["2024-07-24T18:18:46.010000"],["2024-07-24T18:18:47.010000"],["2024-07-24T18:18:48.010000"],["2024-07-24T18:18:49.010000"],["2024-07-24T18:18:50.010000"],["2024-07-24T18:18:51.010000"],["2024-07-24T18:18:52.010000"],["2024-07-24T18:18:53.010000"],["2024-07-24T18:18:54.010000"],["2024-07-24T18:18:55.010000"],["2024-07-24T18:18:56.010000"],["2024-07-24T18:18:57.010000"],["2024-07-24T18:18:58.010000"],["2024-07-24T18:18:59.010000"],["2024-07-24T18:19:00.010000"],["2024-07-24T18:19:01.010000"],["2024-07-24T18:19:02.010000"],["2024-07-24T18:19:03.010000"],["2024-07-24T18:19:04.010000"],["2024-07-24T18:19:05.010000"],["2024-07-24T18:19:06.010000"],["2024-07-24T18:19:07.010000"],["2024-07-24T18:19:08.010000"],["2024-07-24T18:19:09.010000"],["2024-07-24T18:19:10.010000"],["2024-07-24T18:19:11.010000"],["2024-07-24T18:19:12.010000"],["2024-07-24T18:19:13.010000"],["2024-07-24T18:19:14.010000"],["2024-07-24T18:19:15.010000"],["2024-07-24T18:19:16.010000"],["2024-07-24T18:19:17.010000"],["2024-07-24T18:19:18.010000"],["2024-07-24T18:19:19.010000"],["2024-07-24T18:19:20.010000"],["2024-07-24T18:19:21.010000"],["2024-07-24T18:19:22.010000"],["2024-07-24T18:19:23.010000"],["2024-07-24T18:19:24.010000"],["2024-07-24T18:19:25.010000"],["2024-07-24T18:19:26.010000"],["2024-07-24T18:19:27.010000"],["2024-07-24T18:19:28.010000"],["2024-07-24T18:19:29.010000"],["2024-07-24T18:19:30.010000"],["2024-07-24T18:19:31.010000"],["2024-07-24T18:19:32.010000"],["2024-07-24T18:19:33.010000"],["2024-07-24T18:19:34.010000"],["2024-07-24T18:19:35.010000"],["2024-07-24T18:19:36.010000"],["2024-07-24T18:19:37.010000"],["2024-07-24T18:19:38.010000"],["2024-07-24T18:19:39.010000"],["2024-07-24T18:19:40.010000"],["2024-07-24T18:19:41.010000"],["2024-07-24T18:19:42.010000"],["2024-07-24T18:19:43.010000"],["2024-07-24T18:19:44.010000"],["2024-07-24T18:19:45.010000"],["2024-07-24T18:19:46.010000"],["2024-07-24T18:19:47.010000"],["2024-07-24T18:19:48.010000"],["2024-07-24T18:19:49.010000"],["2024-07-24T18:19:50.010000"],["2024-07-24T18:19:51.010000"],["2024-07-24T18:19:52.010000"],["2024-07-24T18:19:53.010000"],["2024-07-24T18:19:54.010000"],["2024-07-24T18:19:55.010000"],["2024-07-24T18:19:56.010000"],["2024-07-24T18:19:57.010000"],["2024-07-24T18:19:58.010000"],["2024-07-24T18:19:59.010000"],["2024-07-24T18:20:00.010000"],["2024-07-24T18:20:01.010000"],["2024-07-24T18:20:02.010000"],["2024-07-24T18:20:03.010000"],["2024-07-24T18:20:04.010000"],["2024-07-24T18:20:05.010000"],["2024-07-24T18:20:06.010000"],["2024-07-24T18:20:07.010000"],["2024-07-24T18:20:08.010000"],["2024-07-24T18:20:09.010000"],["2024-07-24T18:20:10.010000"],["2024-07-24T18:20:11.010000"],["2024-07-24T18:20:12.010000"],["2024-07-24T18:20:13.010000"],["2024-07-24T18:20:14.010000"],["2024-07-24T18:20:15.010000"],["2024-07-24T18:20:16.010000"],["2024-07-24T18:20:17.010000"],["2024-07-24T18:20:18.010000"],["2024-07-24T18:20:19.010000"],["2024-07-24T18:20:20.010000"],["2024-07-24T18:20:21.010000"],["2024-07-24T18:20:22.010000"],["2024-07-24T18:20:23.010000"],["2024-07-24T18:20:24.010000"],["2024-07-24T18:20:25.010000"],["2024-07-24T18:20:26.010000"],["2024-07-24T18:20:27.010000"],["2024-07-24T18:20:28.010000"],["2024-07-24T18:20:29.010000"],["2024-07-24T18:20:30.010000"],["2024-07-24T18:20:31.010000"],["2024-07-24T18:20:32.010000"],["2024-07-24T18:20:33.010000"],["2024-07-24T18:20:34.010000"],["2024-07-24T18:20:35.010000"],["2024-07-24T18:20:36.010000"],["2024-07-24T18:20:37.010000"],["2024-07-24T18:20:38.010000"],["2024-07-24T18:20:39.010000"],["2024-07-24T18:20:40.010000"],["2024-07-24T18:20:41.010000"],["2024-07-24T18:20:42.010000"],["2024-07-24T18:20:43.010000"],["2024-07-24T18:20:44.010000"],["2024-07-24T18:20:45.010000"],["2024-07-24T18:20:46.010000"],["2024-07-24T18:20:47.010000"],["2024-07-24T18:20:48.010000"],["2024-07-24T18:20:49.010000"],["2024-07-24T18:20:50.010000"],["2024-07-24T18:20:51.010000"],["2024-07-24T18:20:52.010000"],["2024-07-24T18:20:53.010000"],["2024-07-24T18:20:54.010000"],["2024-07-24T18:20:55.010000"],["2024-07-24T18:20:56.010000"],["2024-07-24T18:20:57.010000"],["2024-07-24T18:20:58.010000"],["2024-07-24T18:20:59.010000"],["2024-07-24T18:21:00.010000"],["2024-07-24T18:21:01.010000"],["2024-07-24T18:21:02.010000"],["2024-07-24T18:21:03.010000"],["2024-07-24T18:21:04.010000"],["2024-07-24T18:21:05.010000"],["2024-07-24T18:21:06.010000"],["2024-07-24T18:21:07.010000"],["2024-07-24T18:21:08.010000"],["2024-07-24T18:21:09.010000"],["2024-07-24T18:21:10.010000"],["2024-07-24T18:21:11.010000"],["2024-07-24T18:21:12.010000"],["2024-07-24T18:21:13.010000"],["2024-07-24T18:21:14.010000"],["2024-07-24T18:21:15.010000"],["2024-07-24T18:21:16.010000"],["2024-07-24T18:21:17.010000"],["2024-07-24T18:21:18.010000"],["2024-07-24T18:21:19.010000"],["2024-07-24T18:21:20.010000"],["2024-07-24T18:21:21.010000"],["2024-07-24T18:21:22.010000"],["2024-07-24T18:21:23.010000"],["2024-07-24T18:21:24.010000"],["2024-07-24T18:21:25.010000"],["2024-07-24T18:21:26.010000"],["2024-07-24T18:21:27.010000"],["2024-07-24T18:21:28.010000"],["2024-07-24T18:21:29.010000"],["2024-07-24T18:21:30.010000"],["2024-07-24T18:21:31.010000"],["2024-07-24T18:21:32.010000"],["2024-07-24T18:21:33.010000"],["2024-07-24T18:21:34.010000"],["2024-07-24T18:21:35.010000"],["2024-07-24T18:21:36.010000"],["2024-07-24T18:21:37.010000"],["2024-07-24T18:21:38.010000"],["2024-07-24T18:21:39.010000"],["2024-07-24T18:21:40.010000"],["2024-07-24T18:21:41.010000"],["2024-07-24T18:21:42.010000"],["2024-07-24T18:21:43.010000"],["2024-07-24T18:21:44.010000"],["2024-07-24T18:21:45.010000"],["2024-07-24T18:21:46.010000"],["2024-07-24T18:21:47.010000"],["2024-07-24T18:21:48.010000"],["2024-07-24T18:21:49.010000"],["2024-07-24T18:21:50.010000"],["2024-07-24T18:21:51.010000"],["2024-07-24T18:21:52.010000"],["2024-07-24T18:21:53.010000"],["2024-07-24T18:21:54.010000"],["2024-07-24T18:21:55.010000"],["2024-07-24T18:21:56.010000"],["2024-07-24T18:21:57.010000"],["2024-07-24T18:21:58.010000"],["2024-07-24T18:21:59.010000"],["2024-07-24T18:22:00.010000"],["2024-07-24T18:22:01.010000"],["2024-07-24T18:22:02.010000"],["2024-07-24T18:22:03.010000"],["2024-07-24T18:22:04.010000"],["2024-07-24T18:22:05.010000"],["2024-07-24T18:22:06.010000"],["2024-07-24T18:22:07.010000"],["2024-07-24T18:22:08.010000"],["2024-07-24T18:22:09.010000"],["2024-07-24T18:22:10.010000"],["2024-07-24T18:22:11.010000"],["2024-07-24T18:22:12.010000"],["2024-07-24T18:22:13.010000"],["2024-07-24T18:22:14.010000"],["2024-07-24T18:22:15.010000"],["2024-07-24T18:22:16.010000"],["2024-07-24T18:22:17.010000"],["2024-07-24T18:22:18.010000"],["2024-07-24T18:22:19.010000"],["2024-07-24T18:22:20.010000"],["2024-07-24T18:22:21.010000"],["2024-07-24T18:22:22.010000"],["2024-07-24T18:22:23.010000"],["2024-07-24T18:22:24.010000"],["2024-07-24T18:22:25.010000"],["2024-07-24T18:22:26.010000"],["2024-07-24T18:22:27.010000"],["2024-07-24T18:22:28.010000"],["2024-07-24T18:22:29.010000"],["2024-07-24T18:22:30.010000"],["2024-07-24T18:22:31.010000"],["2024-07-24T18:22:32.010000"],["2024-07-24T18:22:33.010000"],["2024-07-24T18:22:34.010000"],["2024-07-24T18:22:35.010000"],["2024-07-24T18:22:36.010000"],["2024-07-24T18:22:37.010000"],["2024-07-24T18:22:38.010000"],["2024-07-24T18:22:39.010000"],["2024-07-24T18:22:40.010000"],["2024-07-24T18:22:41.010000"],["2024-07-24T18:22:42.010000"],["2024-07-24T18:22:43.010000"],["2024-07-24T18:22:44.010000"],["2024-07-24T18:22:45.010000"],["2024-07-24T18:22:46.010000"],["2024-07-24T18:22:47.010000"],["2024-07-24T18:22:48.010000"],["2024-07-24T18:22:49.010000"],["2024-07-24T18:22:50.010000"],["2024-07-24T18:22:51.010000"],["2024-07-24T18:22:52.010000"],["2024-07-24T18:22:53.010000"],["2024-07-24T18:22:54.010000"],["2024-07-24T18:22:55.010000"],["2024-07-24T18:22:56.010000"],["2024-07-24T18:22:57.010000"],["2024-07-24T18:22:58.010000"],["2024-07-24T18:22:59.010000"],["2024-07-24T18:23:00.010000"],["2024-07-24T18:23:01.010000"],["2024-07-24T18:23:02.010000"],["2024-07-24T18:23:03.010000"],["2024-07-24T18:23:04.010000"],["2024-07-24T18:23:05.010000"],["2024-07-24T18:23:06.010000"],["2024-07-24T18:23:07.010000"],["2024-07-24T18:23:08.010000"],["2024-07-24T18:23:09.010000"],["2024-07-24T18:23:10.010000"],["2024-07-24T18:23:11.010000"],["2024-07-24T18:23:12.010000"],["2024-07-24T18:23:13.010000"],["2024-07-24T18:23:14.010000"],["2024-07-24T18:23:15.010000"],["2024-07-24T18:23:16.010000"],["2024-07-24T18:23:17.010000"],["2024-07-24T18:23:18.010000"],["2024-07-24T18:23:19.010000"],["2024-07-24T18:23:20.010000"],["2024-07-24T18:23:21.010000"],["2024-07-24T18:23:22.010000"],["2024-07-24T18:23:23.010000"],["2024-07-24T18:23:24.010000"],["2024-07-24T18:23:25.010000"],["2024-07-24T18:23:26.010000"],["2024-07-24T18:23:27.010000"],["2024-07-24T18:23:28.010000"],["2024-07-24T18:23:29.010000"],["2024-07-24T18:23:30.010000"],["2024-07-24T18:23:31.010000"],["2024-07-24T18:23:32.010000"],["2024-07-24T18:23:33.010000"],["2024-07-24T18:23:34.010000"],["2024-07-24T18:23:35.010000"],["2024-07-24T18:23:36.010000"],["2024-07-24T18:23:37.010000"],["2024-07-24T18:23:38.010000"],["2024-07-24T18:23:39.010000"],["2024-07-24T18:23:40.010000"],["2024-07-24T18:23:41.010000"],["2024-07-24T18:23:42.010000"],["2024-07-24T18:23:43.010000"],["2024-07-24T18:23:44.010000"],["2024-07-24T18:23:45.010000"],["2024-07-24T18:23:46.010000"],["2024-07-24T18:23:47.010000"],["2024-07-24T18:23:48.010000"],["2024-07-24T18:23:49.010000"],["2024-07-24T18:23:50.010000"],["2024-07-24T18:23:51.010000"],["2024-07-24T18:23:52.010000"],["2024-07-24T18:23:53.010000"],["2024-07-24T18:23:54.010000"],["2024-07-24T18:23:55.010000"],["2024-07-24T18:23:56.010000"],["2024-07-24T18:23:57.010000"],["2024-07-24T18:23:58.010000"],["2024-07-24T18:23:59.010000"],["2024-07-24T18:24:00.010000"],["2024-07-24T18:24:01.010000"],["2024-07-24T18:24:02.010000"],["2024-07-24T18:24:03.010000"],["2024-07-24T18:24:04.010000"],["2024-07-24T18:24:05.010000"],["2024-07-24T18:24:06.010000"],["2024-07-24T18:24:07.010000"],["2024-07-24T18:24:08.010000"],["2024-07-24T18:24:09.010000"],["2024-07-24T18:24:10.010000"],["2024-07-24T18:24:11.010000"],["2024-07-24T18:24:12.010000"],["2024-07-24T18:24:13.010000"],["2024-07-24T18:24:14.010000"],["2024-07-24T18:24:15.010000"],["2024-07-24T18:24:16.010000"],["2024-07-24T18:24:17.010000"],["2024-07-24T18:24:18.010000"],["2024-07-24T18:24:19.010000"],["2024-07-24T18:24:20.010000"],["2024-07-24T18:24:21.010000"],["2024-07-24T18:24:22.010000"],["2024-07-24T18:24:23.010000"],["2024-07-24T18:24:24.010000"],["2024-07-24T18:24:25.010000"],["2024-07-24T18:24:26.010000"],["2024-07-24T18:24:27.010000"],["2024-07-24T18:24:28.010000"],["2024-07-24T18:24:29.010000"],["2024-07-24T18:24:30.010000"],["2024-07-24T18:24:31.010000"],["2024-07-24T18:24:32.010000"],["2024-07-24T18:24:33.010000"],["2024-07-24T18:24:34.010000"],["2024-07-24T18:24:35.010000"],["2024-07-24T18:24:36.010000"],["2024-07-24T18:24:37.010000"],["2024-07-24T18:24:38.010000"],["2024-07-24T18:24:39.010000"],["2024-07-24T18:24:40.010000"],["2024-07-24T18:24:41.010000"],["2024-07-24T18:24:42.010000"],["2024-07-24T18:24:43.010000"],["2024-07-24T18:24:44.010000"],["2024-07-24T18:24:45.010000"],["2024-07-24T18:24:46.010000"],["2024-07-24T18:24:47.010000"],["2024-07-24T18:24:48.010000"],["2024-07-24T18:24:49.010000"],["2024-07-24T18:24:50.010000"],["2024-07-24T18:24:51.010000"],["2024-07-24T18:24:52.010000"],["2024-07-24T18:24:53.010000"],["2024-07-24T18:24:54.010000"],["2024-07-24T18:24:55.010000"],["2024-07-24T18:24:56.010000"],["2024-07-24T18:24:57.010000"],["2024-07-24T18:24:58.010000"],["2024-07-24T18:24:59.010000"],["2024-07-24T18:25:00.010000"],["2024-07-24T18:25:01.010000"],["2024-07-24T18:25:02.010000"],["2024-07-24T18:25:03.010000"],["2024-07-24T18:25:04.010000"],["2024-07-24T18:25:05.010000"],["2024-07-24T18:25:06.010000"],["2024-07-24T18:25:07.010000"],["2024-07-24T18:25:08.010000"],["2024-07-24T18:25:09.010000"],["2024-07-24T18:25:10.010000"],["2024-07-24T18:25:11.010000"],["2024-07-24T18:25:12.010000"],["2024-07-24T18:25:13.010000"],["2024-07-24T18:25:14.010000"],["2024-07-24T18:25:15.010000"],["2024-07-24T18:25:16.010000"],["2024-07-24T18:25:17.010000"],["2024-07-24T18:25:18.010000"],["2024-07-24T18:25:19.010000"],["2024-07-24T18:25:20.010000"],["2024-07-24T18:25:21.010000"],["2024-07-24T18:25:22.010000"],["2024-07-24T18:25:23.010000"],["2024-07-24T18:25:24.010000"],["2024-07-24T18:25:25.010000"],["2024-07-24T18:25:26.010000"],["2024-07-24T18:25:27.010000"],["2024-07-24T18:25:28.010000"],["2024-07-24T18:25:29.010000"],["2024-07-24T18:25:30.010000"],["2024-07-24T18:25:31.010000"],["2024-07-24T18:25:32.010000"],["2024-07-24T18:25:33.010000"],["2024-07-24T18:25:34.010000"],["2024-07-24T18:25:35.010000"],["2024-07-24T18:25:36.010000"],["2024-07-24T18:25:37.010000"],["2024-07-24T18:25:38.010000"],["2024-07-24T18:25:39.010000"],["2024-07-24T18:25:40.010000"],["2024-07-24T18:25:41.010000"],["2024-07-24T18:25:42.010000"],["2024-07-24T18:25:43.010000"],["2024-07-24T18:25:44.010000"],["2024-07-24T18:25:45.010000"],["2024-07-24T18:25:46.010000"],["2024-07-24T18:25:47.010000"],["2024-07-24T18:25:48.010000"],["2024-07-24T18:25:49.010000"],["2024-07-24T18:25:50.010000"],["2024-07-24T18:25:51.010000"],["2024-07-24T18:25:52.010000"],["2024-07-24T18:25:53.010000"],["2024-07-24T18:25:54.010000"],["2024-07-24T18:25:55.010000"],["2024-07-24T18:25:56.010000"],["2024-07-24T18:25:57.010000"],["2024-07-24T18:25:58.010000"],["2024-07-24T18:25:59.010000"],["2024-07-24T18:26:00.010000"],["2024-07-24T18:26:01.010000"],["2024-07-24T18:26:02.010000"],["2024-07-24T18:26:03.010000"],["2024-07-24T18:26:04.010000"],["2024-07-24T18:26:05.010000"],["2024-07-24T18:26:06.010000"],["2024-07-24T18:26:07.010000"],["2024-07-24T18:26:08.010000"],["2024-07-24T18:26:09.010000"],["2024-07-24T18:26:10.010000"],["2024-07-24T18:26:11.010000"],["2024-07-24T18:26:12.010000"],["2024-07-24T18:26:13.010000"],["2024-07-24T18:26:14.010000"],["2024-07-24T18:26:15.010000"],["2024-07-24T18:26:16.010000"],["2024-07-24T18:26:17.010000"],["2024-07-24T18:26:18.010000"],["2024-07-24T18:26:19.010000"],["2024-07-24T18:26:20.010000"],["2024-07-24T18:26:21.010000"],["2024-07-24T18:26:22.010000"],["2024-07-24T18:26:23.010000"],["2024-07-24T18:26:24.010000"],["2024-07-24T18:26:25.010000"],["2024-07-24T18:26:26.010000"],["2024-07-24T18:26:27.010000"],["2024-07-24T18:26:28.010000"],["2024-07-24T18:26:29.010000"],["2024-07-24T18:26:30.010000"],["2024-07-24T18:26:31.010000"],["2024-07-24T18:26:32.010000"],["2024-07-24T18:26:33.010000"],["2024-07-24T18:26:34.010000"],["2024-07-24T18:26:35.010000"],["2024-07-24T18:26:36.010000"],["2024-07-24T18:26:37.010000"],["2024-07-24T18:26:38.010000"],["2024-07-24T18:26:39.010000"],["2024-07-24T18:26:40.010000"],["2024-07-24T18:26:41.010000"],["2024-07-24T18:26:42.010000"],["2024-07-24T18:26:43.010000"],["2024-07-24T18:26:44.010000"],["2024-07-24T18:26:45.010000"],["2024-07-24T18:26:46.010000"],["2024-07-24T18:26:47.010000"],["2024-07-24T18:26:48.010000"],["2024-07-24T18:26:49.010000"],["2024-07-24T18:26:50.010000"],["2024-07-24T18:26:51.010000"],["2024-07-24T18:26:52.010000"],["2024-07-24T18:26:53.010000"],["2024-07-24T18:26:54.010000"],["2024-07-24T18:26:55.010000"],["2024-07-24T18:26:56.010000"],["2024-07-24T18:26:57.010000"],["2024-07-24T18:26:58.010000"],["2024-07-24T18:26:59.010000"],["2024-07-24T18:27:00.010000"],["2024-07-24T18:27:01.010000"],["2024-07-24T18:27:02.010000"],["2024-07-24T18:27:03.010000"],["2024-07-24T18:27:04.010000"],["2024-07-24T18:27:05.010000"],["2024-07-24T18:27:06.010000"],["2024-07-24T18:27:07.010000"],["2024-07-24T18:27:08.010000"],["2024-07-24T18:27:09.010000"],["2024-07-24T18:27:10.010000"],["2024-07-24T18:27:11.010000"],["2024-07-24T18:27:12.010000"],["2024-07-24T18:27:13.010000"],["2024-07-24T18:27:14.010000"],["2024-07-24T18:27:15.010000"],["2024-07-24T18:27:16.010000"],["2024-07-24T18:27:17.010000"],["2024-07-24T18:27:18.010000"],["2024-07-24T18:27:19.010000"],["2024-07-24T18:27:20.010000"],["2024-07-24T18:27:21.010000"],["2024-07-24T18:27:22.010000"],["2024-07-24T18:27:23.010000"],["2024-07-24T18:27:24.010000"],["2024-07-24T18:27:25.010000"],["2024-07-24T18:27:26.010000"],["2024-07-24T18:27:27.010000"],["2024-07-24T18:27:28.010000"],["2024-07-24T18:27:29.010000"],["2024-07-24T18:27:30.010000"],["2024-07-24T18:27:31.010000"],["2024-07-24T18:27:32.010000"],["2024-07-24T18:27:33.010000"],["2024-07-24T18:27:34.010000"],["2024-07-24T18:27:35.010000"],["2024-07-24T18:27:36.010000"],["2024-07-24T18:27:37.010000"],["2024-07-24T18:27:38.010000"],["2024-07-24T18:27:39.010000"],["2024-07-24T18:27:40.010000"],["2024-07-24T18:27:41.010000"],["2024-07-24T18:27:42.010000"],["2024-07-24T18:27:43.010000"],["2024-07-24T18:27:44.010000"],["2024-07-24T18:27:45.010000"],["2024-07-24T18:27:46.010000"],["2024-07-24T18:27:47.010000"],["2024-07-24T18:27:48.010000"],["2024-07-24T18:27:49.010000"],["2024-07-24T18:27:50.010000"],["2024-07-24T18:27:51.010000"],["2024-07-24T18:27:52.010000"],["2024-07-24T18:27:53.010000"],["2024-07-24T18:27:54.010000"],["2024-07-24T18:27:55.010000"],["2024-07-24T18:27:56.010000"],["2024-07-24T18:27:57.010000"],["2024-07-24T18:27:58.010000"],["2024-07-24T18:27:59.010000"],["2024-07-24T18:28:00.010000"],["2024-07-24T18:28:01.010000"],["2024-07-24T18:28:02.010000"],["2024-07-24T18:28:03.010000"],["2024-07-24T18:28:04.010000"],["2024-07-24T18:28:05.010000"],["2024-07-24T18:28:06.010000"],["2024-07-24T18:28:07.010000"],["2024-07-24T18:28:08.010000"],["2024-07-24T18:28:09.010000"],["2024-07-24T18:28:10.010000"],["2024-07-24T18:28:11.010000"],["2024-07-24T18:28:12.010000"],["2024-07-24T18:28:13.010000"],["2024-07-24T18:28:14.010000"],["2024-07-24T18:28:15.010000"],["2024-07-24T18:28:16.010000"],["2024-07-24T18:28:17.010000"],["2024-07-24T18:28:18.010000"],["2024-07-24T18:28:19.010000"],["2024-07-24T18:28:20.010000"],["2024-07-24T18:28:21.010000"],["2024-07-24T18:28:22.010000"],["2024-07-24T18:28:23.010000"],["2024-07-24T18:28:24.010000"],["2024-07-24T18:28:25.010000"],["2024-07-24T18:28:26.010000"],["2024-07-24T18:28:27.010000"],["2024-07-24T18:28:28.010000"],["2024-07-24T18:28:29.010000"],["2024-07-24T18:28:30.010000"],["2024-07-24T18:28:31.010000"],["2024-07-24T18:28:32.010000"],["2024-07-24T18:28:33.010000"],["2024-07-24T18:28:34.010000"],["2024-07-24T18:28:35.010000"],["2024-07-24T18:28:36.010000"],["2024-07-24T18:28:37.010000"],["2024-07-24T18:28:38.010000"],["2024-07-24T18:28:39.010000"],["2024-07-24T18:28:40.010000"],["2024-07-24T18:28:41.010000"],["2024-07-24T18:28:42.010000"],["2024-07-24T18:28:43.010000"],["2024-07-24T18:28:44.010000"],["2024-07-24T18:28:45.010000"],["2024-07-24T18:28:46.010000"],["2024-07-24T18:28:47.010000"],["2024-07-24T18:28:48.010000"],["2024-07-24T18:28:49.010000"],["2024-07-24T18:28:50.010000"],["2024-07-24T18:28:51.010000"],["2024-07-24T18:28:52.010000"],["2024-07-24T18:28:53.010000"],["2024-07-24T18:28:54.010000"],["2024-07-24T18:28:55.010000"],["2024-07-24T18:28:56.010000"],["2024-07-24T18:28:57.010000"],["2024-07-24T18:28:58.010000"],["2024-07-24T18:28:59.010000"],["2024-07-24T18:29:00.010000"],["2024-07-24T18:29:01.010000"],["2024-07-24T18:29:02.010000"],["2024-07-24T18:29:03.010000"],["2024-07-24T18:29:04.010000"],["2024-07-24T18:29:05.010000"],["2024-07-24T18:29:06.010000"],["2024-07-24T18:29:07.010000"],["2024-07-24T18:29:08.010000"],["2024-07-24T18:29:09.010000"],["2024-07-24T18:29:10.010000"],["2024-07-24T18:29:11.010000"],["2024-07-24T18:29:12.010000"],["2024-07-24T18:29:13.010000"],["2024-07-24T18:29:14.010000"],["2024-07-24T18:29:15.010000"],["2024-07-24T18:29:16.010000"],["2024-07-24T18:29:17.010000"],["2024-07-24T18:29:18.010000"],["2024-07-24T18:29:19.010000"],["2024-07-24T18:29:20.010000"],["2024-07-24T18:29:21.010000"],["2024-07-24T18:29:22.010000"],["2024-07-24T18:29:23.010000"],["2024-07-24T18:29:24.010000"],["2024-07-24T18:29:25.010000"],["2024-07-24T18:29:26.010000"],["2024-07-24T18:29:27.010000"],["2024-07-24T18:29:28.010000"],["2024-07-24T18:29:29.010000"],["2024-07-24T18:29:30.010000"],["2024-07-24T18:29:31.010000"],["2024-07-24T18:29:32.010000"],["2024-07-24T18:29:33.010000"],["2024-07-24T18:29:34.010000"],["2024-07-24T18:29:35.010000"],["2024-07-24T18:29:36.010000"],["2024-07-24T18:29:37.010000"],["2024-07-24T18:29:38.010000"],["2024-07-24T18:29:39.010000"],["2024-07-24T18:29:40.010000"],["2024-07-24T18:29:41.010000"],["2024-07-24T18:29:42.010000"],["2024-07-24T18:29:43.010000"],["2024-07-24T18:29:44.010000"],["2024-07-24T18:29:45.010000"],["2024-07-24T18:29:46.010000"],["2024-07-24T18:29:47.010000"],["2024-07-24T18:29:48.010000"],["2024-07-24T18:29:49.010000"],["2024-07-24T18:29:50.010000"],["2024-07-24T18:29:51.010000"],["2024-07-24T18:29:52.010000"],["2024-07-24T18:29:53.010000"],["2024-07-24T18:29:54.010000"],["2024-07-24T18:29:55.010000"],["2024-07-24T18:29:56.010000"],["2024-07-24T18:29:57.010000"],["2024-07-24T18:29:58.010000"],["2024-07-24T18:29:59.010000"],["2024-07-24T18:30:00.010000"],["2024-07-24T18:30:01.010000"],["2024-07-24T18:30:02.010000"],["2024-07-24T18:30:03.010000"],["2024-07-24T18:30:04.010000"],["2024-07-24T18:30:05.010000"],["2024-07-24T18:30:06.010000"],["2024-07-24T18:30:07.010000"],["2024-07-24T18:30:08.010000"],["2024-07-24T18:30:09.010000"],["2024-07-24T18:30:10.010000"],["2024-07-24T18:30:11.010000"],["2024-07-24T18:30:12.010000"],["2024-07-24T18:30:13.010000"],["2024-07-24T18:30:14.010000"],["2024-07-24T18:30:15.010000"],["2024-07-24T18:30:16.010000"],["2024-07-24T18:30:17.010000"],["2024-07-24T18:30:18.010000"],["2024-07-24T18:30:19.010000"],["2024-07-24T18:30:20.010000"],["2024-07-24T18:30:21.010000"],["2024-07-24T18:30:22.010000"],["2024-07-24T18:30:23.010000"],["2024-07-24T18:30:24.010000"],["2024-07-24T18:30:25.010000"],["2024-07-24T18:30:26.010000"],["2024-07-24T18:30:27.010000"],["2024-07-24T18:30:28.010000"],["2024-07-24T18:30:29.010000"],["2024-07-24T18:30:30.010000"],["2024-07-24T18:30:31.010000"],["2024-07-24T18:30:32.010000"],["2024-07-24T18:30:33.010000"],["2024-07-24T18:30:34.010000"],["2024-07-24T18:30:35.010000"],["2024-07-24T18:30:36.010000"],["2024-07-24T18:30:37.010000"],["2024-07-24T18:30:38.010000"],["2024-07-24T18:30:39.010000"],["2024-07-24T18:30:40.010000"],["2024-07-24T18:30:41.010000"],["2024-07-24T18:30:42.010000"],["2024-07-24T18:30:43.010000"],["2024-07-24T18:30:44.010000"],["2024-07-24T18:30:45.010000"],["2024-07-24T18:30:46.010000"],["2024-07-24T18:30:47.010000"],["2024-07-24T18:30:48.010000"],["2024-07-24T18:30:49.010000"],["2024-07-24T18:30:50.010000"],["2024-07-24T18:30:51.010000"],["2024-07-24T18:30:52.010000"],["2024-07-24T18:30:53.010000"],["2024-07-24T18:30:54.010000"],["2024-07-24T18:30:55.010000"],["2024-07-24T18:30:56.010000"],["2024-07-24T18:30:57.010000"],["2024-07-24T18:30:58.010000"],["2024-07-24T18:30:59.010000"],["2024-07-24T18:31:00.010000"],["2024-07-24T18:31:01.010000"],["2024-07-24T18:31:02.010000"],["2024-07-24T18:31:03.010000"],["2024-07-24T18:31:04.010000"],["2024-07-24T18:31:05.010000"],["2024-07-24T18:31:06.010000"],["2024-07-24T18:31:07.010000"],["2024-07-24T18:31:08.010000"],["2024-07-24T18:31:09.010000"],["2024-07-24T18:31:10.010000"],["2024-07-24T18:31:11.010000"],["2024-07-24T18:31:12.010000"],["2024-07-24T18:31:13.010000"],["2024-07-24T18:31:14.010000"],["2024-07-24T18:31:15.010000"],["2024-07-24T18:31:16.010000"],["2024-07-24T18:31:17.010000"],["2024-07-24T18:31:18.010000"],["2024-07-24T18:31:19.010000"],["2024-07-24T18:31:20.010000"],["2024-07-24T18:31:21.010000"],["2024-07-24T18:31:22.010000"],["2024-07-24T18:31:23.010000"],["2024-07-24T18:31:24.010000"],["2024-07-24T18:31:25.010000"],["2024-07-24T18:31:26.010000"],["2024-07-24T18:31:27.010000"],["2024-07-24T18:31:28.010000"],["2024-07-24T18:31:29.010000"],["2024-07-24T18:31:30.010000"],["2024-07-24T18:31:31.010000"],["2024-07-24T18:31:32.010000"],["2024-07-24T18:31:33.010000"],["2024-07-24T18:31:34.010000"],["2024-07-24T18:31:35.010000"],["2024-07-24T18:31:36.010000"],["2024-07-24T18:31:37.010000"],["2024-07-24T18:31:38.010000"],["2024-07-24T18:31:39.010000"],["2024-07-24T18:31:40.010000"],["2024-07-24T18:31:41.010000"],["2024-07-24T18:31:42.010000"],["2024-07-24T18:31:43.010000"],["2024-07-24T18:31:44.010000"],["2024-07-24T18:31:45.010000"],["2024-07-24T18:31:46.010000"],["2024-07-24T18:31:47.010000"],["2024-07-24T18:31:48.010000"],["2024-07-24T18:31:49.010000"],["2024-07-24T18:31:50.010000"],["2024-07-24T18:31:51.010000"],["2024-07-24T18:31:52.010000"],["2024-07-24T18:31:53.010000"],["2024-07-24T18:31:54.010000"],["2024-07-24T18:31:55.010000"],["2024-07-24T18:31:56.010000"],["2024-07-24T18:31:57.010000"],["2024-07-24T18:31:58.010000"],["2024-07-24T18:31:59.010000"],["2024-07-24T18:32:00.010000"],["2024-07-24T18:32:01.010000"],["2024-07-24T18:32:02.010000"],["2024-07-24T18:32:03.010000"],["2024-07-24T18:32:04.010000"],["2024-07-24T18:32:05.010000"],["2024-07-24T18:32:06.010000"],["2024-07-24T18:32:07.010000"],["2024-07-24T18:32:08.010000"],["2024-07-24T18:32:09.010000"],["2024-07-24T18:32:10.010000"],["2024-07-24T18:32:11.010000"],["2024-07-24T18:32:12.010000"],["2024-07-24T18:32:13.010000"],["2024-07-24T18:32:14.010000"],["2024-07-24T18:32:15.010000"],["2024-07-24T18:32:16.010000"],["2024-07-24T18:32:17.010000"],["2024-07-24T18:32:18.010000"],["2024-07-24T18:32:19.010000"],["2024-07-24T18:32:20.010000"],["2024-07-24T18:32:21.010000"],["2024-07-24T18:32:22.010000"],["2024-07-24T18:32:23.010000"],["2024-07-24T18:32:24.010000"],["2024-07-24T18:32:25.010000"],["2024-07-24T18:32:26.010000"],["2024-07-24T18:32:27.010000"],["2024-07-24T18:32:28.010000"],["2024-07-24T18:32:29.010000"],["2024-07-24T18:32:30.010000"],["2024-07-24T18:32:31.010000"],["2024-07-24T18:32:32.010000"],["2024-07-24T18:32:33.010000"],["2024-07-24T18:32:34.010000"],["2024-07-24T18:32:35.010000"],["2024-07-24T18:32:36.010000"],["2024-07-24T18:32:37.010000"],["2024-07-24T18:32:38.010000"],["2024-07-24T18:32:39.010000"],["2024-07-24T18:32:40.010000"],["2024-07-24T18:32:41.010000"],["2024-07-24T18:32:42.010000"],["2024-07-24T18:32:43.010000"],["2024-07-24T18:32:44.010000"],["2024-07-24T18:32:45.010000"],["2024-07-24T18:32:46.010000"],["2024-07-24T18:32:47.010000"],["2024-07-24T18:32:48.010000"],["2024-07-24T18:32:49.010000"],["2024-07-24T18:32:50.010000"],["2024-07-24T18:32:51.010000"],["2024-07-24T18:32:52.010000"],["2024-07-24T18:32:53.010000"],["2024-07-24T18:32:54.010000"],["2024-07-24T18:32:55.010000"],["2024-07-24T18:32:56.010000"],["2024-07-24T18:32:57.010000"],["2024-07-24T18:32:58.010000"],["2024-07-24T18:32:59.010000"],["2024-07-24T18:33:00.010000"],["2024-07-24T18:33:01.010000"],["2024-07-24T18:33:02.010000"],["2024-07-24T18:33:03.010000"],["2024-07-24T18:33:04.010000"],["2024-07-24T18:33:05.010000"],["2024-07-24T18:33:06.010000"],["2024-07-24T18:33:07.010000"],["2024-07-24T18:33:08.010000"],["2024-07-24T18:33:09.010000"],["2024-07-24T18:33:10.010000"],["2024-07-24T18:33:11.010000"],["2024-07-24T18:33:12.010000"],["2024-07-24T18:33:13.010000"],["2024-07-24T18:33:14.010000"],["2024-07-24T18:33:15.010000"],["2024-07-24T18:33:16.010000"],["2024-07-24T18:33:17.010000"],["2024-07-24T18:33:18.010000"],["2024-07-24T18:33:19.010000"],["2024-07-24T18:33:20.010000"],["2024-07-24T18:33:21.010000"],["2024-07-24T18:33:22.010000"],["2024-07-24T18:33:23.010000"],["2024-07-24T18:33:24.010000"],["2024-07-24T18:33:25.010000"],["2024-07-24T18:33:26.010000"],["2024-07-24T18:33:27.010000"],["2024-07-24T18:33:28.010000"],["2024-07-24T18:33:29.010000"],["2024-07-24T18:33:30.010000"],["2024-07-24T18:33:31.010000"],["2024-07-24T18:33:32.010000"],["2024-07-24T18:33:33.010000"],["2024-07-24T18:33:34.010000"],["2024-07-24T18:33:35.010000"],["2024-07-24T18:33:36.010000"],["2024-07-24T18:33:37.010000"],["2024-07-24T18:33:38.010000"],["2024-07-24T18:33:39.010000"],["2024-07-24T18:33:40.010000"],["2024-07-24T18:33:41.010000"],["2024-07-24T18:33:42.010000"],["2024-07-24T18:33:43.010000"],["2024-07-24T18:33:44.010000"],["2024-07-24T18:33:45.010000"],["2024-07-24T18:33:46.010000"],["2024-07-24T18:33:47.010000"],["2024-07-24T18:33:48.010000"],["2024-07-24T18:33:49.010000"],["2024-07-24T18:33:50.010000"],["2024-07-24T18:33:51.010000"],["2024-07-24T18:33:52.010000"],["2024-07-24T18:33:53.010000"],["2024-07-24T18:33:54.010000"],["2024-07-24T18:33:55.010000"],["2024-07-24T18:33:56.010000"],["2024-07-24T18:33:57.010000"],["2024-07-24T18:33:58.010000"],["2024-07-24T18:33:59.010000"],["2024-07-24T18:34:00.010000"],["2024-07-24T18:34:01.010000"],["2024-07-24T18:34:02.010000"],["2024-07-24T18:34:03.010000"],["2024-07-24T18:34:04.010000"],["2024-07-24T18:34:05.010000"],["2024-07-24T18:34:06.010000"],["2024-07-24T18:34:07.010000"],["2024-07-24T18:34:08.010000"],["2024-07-24T18:34:09.010000"],["2024-07-24T18:34:10.010000"],["2024-07-24T18:34:11.010000"],["2024-07-24T18:34:12.010000"],["2024-07-24T18:34:13.010000"],["2024-07-24T18:34:14.010000"],["2024-07-24T18:34:15.010000"],["2024-07-24T18:34:16.010000"],["2024-07-24T18:34:17.010000"],["2024-07-24T18:34:18.010000"],["2024-07-24T18:34:19.010000"],["2024-07-24T18:34:20.010000"],["2024-07-24T18:34:21.010000"],["2024-07-24T18:34:22.010000"],["2024-07-24T18:34:23.010000"],["2024-07-24T18:34:24.010000"],["2024-07-24T18:34:25.010000"],["2024-07-24T18:34:26.010000"],["2024-07-24T18:34:27.010000"],["2024-07-24T18:34:28.010000"],["2024-07-24T18:34:29.010000"],["2024-07-24T18:34:30.010000"],["2024-07-24T18:34:31.010000"],["2024-07-24T18:34:32.010000"],["2024-07-24T18:34:33.010000"],["2024-07-24T18:34:34.010000"],["2024-07-24T18:34:35.010000"],["2024-07-24T18:34:36.010000"],["2024-07-24T18:34:37.010000"],["2024-07-24T18:34:38.010000"],["2024-07-24T18:34:39.010000"],["2024-07-24T18:34:40.010000"],["2024-07-24T18:34:41.010000"],["2024-07-24T18:34:42.010000"],["2024-07-24T18:34:43.010000"],["2024-07-24T18:34:44.010000"],["2024-07-24T18:34:45.010000"],["2024-07-24T18:34:46.010000"],["2024-07-24T18:34:47.010000"],["2024-07-24T18:34:48.010000"],["2024-07-24T18:34:49.010000"],["2024-07-24T18:34:50.010000"],["2024-07-24T18:34:51.010000"],["2024-07-24T18:34:52.010000"],["2024-07-24T18:34:53.010000"],["2024-07-24T18:34:54.010000"],["2024-07-24T18:34:55.010000"],["2024-07-24T18:34:56.010000"],["2024-07-24T18:34:57.010000"],["2024-07-24T18:34:58.010000"],["2024-07-24T18:34:59.010000"],["2024-07-24T18:35:00.010000"],["2024-07-24T18:35:01.010000"],["2024-07-24T18:35:02.010000"],["2024-07-24T18:35:03.010000"],["2024-07-24T18:35:04.010000"],["2024-07-24T18:35:05.010000"],["2024-07-24T18:35:06.010000"],["2024-07-24T18:35:07.010000"],["2024-07-24T18:35:08.010000"],["2024-07-24T18:35:09.010000"],["2024-07-24T18:35:10.010000"],["2024-07-24T18:35:11.010000"],["2024-07-24T18:35:12.010000"],["2024-07-24T18:35:13.010000"],["2024-07-24T18:35:14.010000"],["2024-07-24T18:35:15.010000"],["2024-07-24T18:35:16.010000"],["2024-07-24T18:35:17.010000"],["2024-07-24T18:35:18.010000"],["2024-07-24T18:35:19.010000"],["2024-07-24T18:35:20.010000"],["2024-07-24T18:35:21.010000"],["2024-07-24T18:35:22.010000"],["2024-07-24T18:35:23.010000"],["2024-07-24T18:35:24.010000"],["2024-07-24T18:35:25.010000"],["2024-07-24T18:35:26.010000"],["2024-07-24T18:35:27.010000"],["2024-07-24T18:35:28.010000"],["2024-07-24T18:35:29.010000"],["2024-07-24T18:35:30.010000"],["2024-07-24T18:35:31.010000"],["2024-07-24T18:35:32.010000"],["2024-07-24T18:35:33.010000"],["2024-07-24T18:35:34.010000"],["2024-07-24T18:35:35.010000"],["2024-07-24T18:35:36.010000"],["2024-07-24T18:35:37.010000"],["2024-07-24T18:35:38.010000"],["2024-07-24T18:35:39.010000"],["2024-07-24T18:35:40.010000"],["2024-07-24T18:35:41.010000"],["2024-07-24T18:35:42.010000"],["2024-07-24T18:35:43.010000"],["2024-07-24T18:35:44.010000"],["2024-07-24T18:35:45.010000"],["2024-07-24T18:35:46.010000"],["2024-07-24T18:35:47.010000"],["2024-07-24T18:35:48.010000"],["2024-07-24T18:35:49.010000"],["2024-07-24T18:35:50.010000"],["2024-07-24T18:35:51.010000"],["2024-07-24T18:35:52.010000"],["2024-07-24T18:35:53.010000"],["2024-07-24T18:35:54.010000"],["2024-07-24T18:35:55.010000"],["2024-07-24T18:35:56.010000"],["2024-07-24T18:35:57.010000"],["2024-07-24T18:35:58.010000"],["2024-07-24T18:35:59.010000"],["2024-07-24T18:36:00.010000"],["2024-07-24T18:36:01.010000"],["2024-07-24T18:36:02.010000"],["2024-07-24T18:36:03.010000"],["2024-07-24T18:36:04.010000"],["2024-07-24T18:36:05.010000"],["2024-07-24T18:36:06.010000"],["2024-07-24T18:36:07.010000"],["2024-07-24T18:36:08.010000"],["2024-07-24T18:36:09.010000"],["2024-07-24T18:36:10.010000"],["2024-07-24T18:36:11.010000"],["2024-07-24T18:36:12.010000"],["2024-07-24T18:36:13.010000"],["2024-07-24T18:36:14.010000"],["2024-07-24T18:36:15.010000"],["2024-07-24T18:36:16.010000"],["2024-07-24T18:36:17.010000"],["2024-07-24T18:36:18.010000"],["2024-07-24T18:36:19.010000"],["2024-07-24T18:36:20.010000"],["2024-07-24T18:36:21.010000"],["2024-07-24T18:36:22.010000"],["2024-07-24T18:36:23.010000"],["2024-07-24T18:36:24.010000"],["2024-07-24T18:36:25.010000"],["2024-07-24T18:36:26.010000"],["2024-07-24T18:36:27.010000"],["2024-07-24T18:36:28.010000"],["2024-07-24T18:36:29.010000"],["2024-07-24T18:36:30.010000"],["2024-07-24T18:36:31.010000"],["2024-07-24T18:36:32.010000"],["2024-07-24T18:36:33.010000"],["2024-07-24T18:36:34.010000"],["2024-07-24T18:36:35.010000"],["2024-07-24T18:36:36.010000"],["2024-07-24T18:36:37.010000"],["2024-07-24T18:36:38.010000"],["2024-07-24T18:36:39.010000"],["2024-07-24T18:36:40.010000"],["2024-07-24T18:36:41.010000"],["2024-07-24T18:36:42.010000"],["2024-07-24T18:36:43.010000"],["2024-07-24T18:36:44.010000"],["2024-07-24T18:36:45.010000"],["2024-07-24T18:36:46.010000"],["2024-07-24T18:36:47.010000"],["2024-07-24T18:36:48.010000"],["2024-07-24T18:36:49.010000"],["2024-07-24T18:36:50.010000"],["2024-07-24T18:36:51.010000"],["2024-07-24T18:36:52.010000"],["2024-07-24T18:36:53.010000"],["2024-07-24T18:36:54.010000"],["2024-07-24T18:36:55.010000"],["2024-07-24T18:36:56.010000"],["2024-07-24T18:36:57.010000"],["2024-07-24T18:36:58.010000"],["2024-07-24T18:36:59.010000"],["2024-07-24T18:37:00.010000"],["2024-07-24T18:37:01.010000"],["2024-07-24T18:37:02.010000"],["2024-07-24T18:37:03.010000"],["2024-07-24T18:37:04.010000"],["2024-07-24T18:37:05.010000"],["2024-07-24T18:37:06.010000"],["2024-07-24T18:37:07.010000"],["2024-07-24T18:37:08.010000"],["2024-07-24T18:37:09.010000"],["2024-07-24T18:37:10.010000"],["2024-07-24T18:37:11.010000"],["2024-07-24T18:37:12.010000"],["2024-07-24T18:37:13.010000"],["2024-07-24T18:37:14.010000"],["2024-07-24T18:37:15.010000"],["2024-07-24T18:37:16.010000"],["2024-07-24T18:37:17.010000"],["2024-07-24T18:37:18.010000"],["2024-07-24T18:37:19.010000"],["2024-07-24T18:37:20.010000"],["2024-07-24T18:37:21.010000"],["2024-07-24T18:37:22.010000"],["2024-07-24T18:37:23.010000"],["2024-07-24T18:37:24.010000"],["2024-07-24T18:37:25.010000"],["2024-07-24T18:37:26.010000"],["2024-07-24T18:37:27.010000"],["2024-07-24T18:37:28.010000"],["2024-07-24T18:37:29.010000"],["2024-07-24T18:37:30.010000"],["2024-07-24T18:37:31.010000"],["2024-07-24T18:37:32.010000"],["2024-07-24T18:37:33.010000"],["2024-07-24T18:37:34.010000"],["2024-07-24T18:37:35.010000"],["2024-07-24T18:37:36.010000"],["2024-07-24T18:37:37.010000"],["2024-07-24T18:37:38.010000"],["2024-07-24T18:37:39.010000"],["2024-07-24T18:37:40.010000"],["2024-07-24T18:37:41.010000"],["2024-07-24T18:37:42.010000"],["2024-07-24T18:37:43.010000"],["2024-07-24T18:37:44.010000"],["2024-07-24T18:37:45.010000"],["2024-07-24T18:37:46.010000"],["2024-07-24T18:37:47.010000"],["2024-07-24T18:37:48.010000"],["2024-07-24T18:37:49.010000"],["2024-07-24T18:37:50.010000"],["2024-07-24T18:37:51.010000"],["2024-07-24T18:37:52.010000"],["2024-07-24T18:37:53.010000"],["2024-07-24T18:37:54.010000"],["2024-07-24T18:37:55.010000"],["2024-07-24T18:37:56.010000"],["2024-07-24T18:37:57.010000"],["2024-07-24T18:37:58.010000"],["2024-07-24T18:37:59.010000"],["2024-07-24T18:38:00.010000"],["2024-07-24T18:38:01.010000"],["2024-07-24T18:38:02.010000"],["2024-07-24T18:38:03.010000"],["2024-07-24T18:38:04.010000"],["2024-07-24T18:38:05.010000"],["2024-07-24T18:38:06.010000"],["2024-07-24T18:38:07.010000"],["2024-07-24T18:38:08.010000"],["2024-07-24T18:38:09.010000"],["2024-07-24T18:38:10.010000"],["2024-07-24T18:38:11.010000"],["2024-07-24T18:38:12.010000"],["2024-07-24T18:38:13.010000"],["2024-07-24T18:38:14.010000"],["2024-07-24T18:38:15.010000"],["2024-07-24T18:38:16.010000"],["2024-07-24T18:38:17.010000"],["2024-07-24T18:38:18.010000"],["2024-07-24T18:38:19.010000"],["2024-07-24T18:38:20.010000"],["2024-07-24T18:38:21.010000"],["2024-07-24T18:38:22.010000"],["2024-07-24T18:38:23.010000"],["2024-07-24T18:38:24.010000"],["2024-07-24T18:38:25.010000"],["2024-07-24T18:38:26.010000"],["2024-07-24T18:38:27.010000"],["2024-07-24T18:38:28.010000"],["2024-07-24T18:38:29.010000"],["2024-07-24T18:38:30.010000"],["2024-07-24T18:38:31.010000"],["2024-07-24T18:38:32.010000"],["2024-07-24T18:38:33.010000"],["2024-07-24T18:38:34.010000"],["2024-07-24T18:38:35.010000"],["2024-07-24T18:38:36.010000"],["2024-07-24T18:38:37.010000"],["2024-07-24T18:38:38.010000"],["2024-07-24T18:38:39.010000"],["2024-07-24T18:38:40.010000"],["2024-07-24T18:38:41.010000"],["2024-07-24T18:38:42.010000"],["2024-07-24T18:38:43.010000"],["2024-07-24T18:38:44.010000"],["2024-07-24T18:38:45.010000"],["2024-07-24T18:38:46.010000"],["2024-07-24T18:38:47.010000"],["2024-07-24T18:38:48.010000"],["2024-07-24T18:38:49.010000"],["2024-07-24T18:38:50.010000"],["2024-07-24T18:38:51.010000"],["2024-07-24T18:38:52.010000"],["2024-07-24T18:38:53.010000"],["2024-07-24T18:38:54.010000"],["2024-07-24T18:38:55.010000"],["2024-07-24T18:38:56.010000"],["2024-07-24T18:38:57.010000"],["2024-07-24T18:38:58.010000"],["2024-07-24T18:38:59.010000"],["2024-07-24T18:39:00.010000"],["2024-07-24T18:39:01.010000"],["2024-07-24T18:39:02.010000"],["2024-07-24T18:39:03.010000"],["2024-07-24T18:39:04.010000"],["2024-07-24T18:39:05.010000"],["2024-07-24T18:39:06.010000"],["2024-07-24T18:39:07.010000"],["2024-07-24T18:39:08.010000"],["2024-07-24T18:39:09.010000"],["2024-07-24T18:39:10.010000"],["2024-07-24T18:39:11.010000"],["2024-07-24T18:39:12.010000"],["2024-07-24T18:39:13.010000"],["2024-07-24T18:39:14.010000"],["2024-07-24T18:39:15.010000"],["2024-07-24T18:39:16.010000"],["2024-07-24T18:39:17.010000"],["2024-07-24T18:39:18.010000"],["2024-07-24T18:39:19.010000"],["2024-07-24T18:39:20.010000"],["2024-07-24T18:39:21.010000"],["2024-07-24T18:39:22.010000"],["2024-07-24T18:39:23.010000"],["2024-07-24T18:39:24.010000"],["2024-07-24T18:39:25.010000"],["2024-07-24T18:39:26.010000"],["2024-07-24T18:39:27.010000"],["2024-07-24T18:39:28.010000"],["2024-07-24T18:39:29.010000"],["2024-07-24T18:39:30.010000"],["2024-07-24T18:39:31.010000"],["2024-07-24T18:39:32.010000"],["2024-07-24T18:39:33.010000"],["2024-07-24T18:39:34.010000"],["2024-07-24T18:39:35.010000"],["2024-07-24T18:39:36.010000"],["2024-07-24T18:39:37.010000"],["2024-07-24T18:39:38.010000"],["2024-07-24T18:39:39.010000"],["2024-07-24T18:39:40.010000"],["2024-07-24T18:39:41.010000"],["2024-07-24T18:39:42.010000"],["2024-07-24T18:39:43.010000"],["2024-07-24T18:39:44.010000"],["2024-07-24T18:39:45.010000"],["2024-07-24T18:39:46.010000"],["2024-07-24T18:39:47.010000"],["2024-07-24T18:39:48.010000"],["2024-07-24T18:39:49.010000"],["2024-07-24T18:39:50.010000"],["2024-07-24T18:39:51.010000"],["2024-07-24T18:39:52.010000"],["2024-07-24T18:39:53.010000"],["2024-07-24T18:39:54.010000"],["2024-07-24T18:39:55.010000"],["2024-07-24T18:39:56.010000"],["2024-07-24T18:39:57.010000"],["2024-07-24T18:39:58.010000"],["2024-07-24T18:39:59.010000"],["2024-07-24T18:40:00.010000"],["2024-07-24T18:40:01.010000"],["2024-07-24T18:40:02.010000"],["2024-07-24T18:40:03.010000"],["2024-07-24T18:40:04.010000"],["2024-07-24T18:40:05.010000"],["2024-07-24T18:40:06.010000"],["2024-07-24T18:40:07.010000"],["2024-07-24T18:40:08.010000"],["2024-07-24T18:40:09.010000"],["2024-07-24T18:40:10.010000"],["2024-07-24T18:40:11.010000"],["2024-07-24T18:40:12.010000"],["2024-07-24T18:40:13.010000"],["2024-07-24T18:40:14.010000"],["2024-07-24T18:40:15.010000"],["2024-07-24T18:40:16.010000"],["2024-07-24T18:40:17.010000"],["2024-07-24T18:40:18.010000"],["2024-07-24T18:40:19.010000"],["2024-07-24T18:40:20.010000"],["2024-07-24T18:40:21.010000"],["2024-07-24T18:40:22.010000"],["2024-07-24T18:40:23.010000"],["2024-07-24T18:40:24.010000"],["2024-07-24T18:40:25.010000"],["2024-07-24T18:40:26.010000"],["2024-07-24T18:40:27.010000"],["2024-07-24T18:40:28.010000"],["2024-07-24T18:40:29.010000"],["2024-07-24T18:40:30.010000"],["2024-07-24T18:40:31.010000"],["2024-07-24T18:40:32.010000"],["2024-07-24T18:40:33.010000"],["2024-07-24T18:40:34.010000"],["2024-07-24T18:40:35.010000"],["2024-07-24T18:40:36.010000"],["2024-07-24T18:40:37.010000"],["2024-07-24T18:40:38.010000"],["2024-07-24T18:40:39.010000"],["2024-07-24T18:40:40.010000"],["2024-07-24T18:40:41.010000"],["2024-07-24T18:40:42.010000"],["2024-07-24T18:40:43.010000"],["2024-07-24T18:40:44.010000"],["2024-07-24T18:40:45.010000"],["2024-07-24T18:40:46.010000"],["2024-07-24T18:40:47.010000"],["2024-07-24T18:40:48.010000"],["2024-07-24T18:40:49.010000"],["2024-07-24T18:40:50.010000"],["2024-07-24T18:40:51.010000"],["2024-07-24T18:40:52.010000"],["2024-07-24T18:40:53.010000"],["2024-07-24T18:40:54.010000"],["2024-07-24T18:40:55.010000"],["2024-07-24T18:40:56.010000"],["2024-07-24T18:40:57.010000"],["2024-07-24T18:40:58.010000"],["2024-07-24T18:40:59.010000"],["2024-07-24T18:41:00.010000"],["2024-07-24T18:41:01.010000"],["2024-07-24T18:41:02.010000"],["2024-07-24T18:41:03.010000"],["2024-07-24T18:41:04.010000"],["2024-07-24T18:41:05.010000"],["2024-07-24T18:41:06.010000"],["2024-07-24T18:41:07.010000"],["2024-07-24T18:41:08.010000"],["2024-07-24T18:41:09.010000"],["2024-07-24T18:41:10.010000"],["2024-07-24T18:41:11.010000"],["2024-07-24T18:41:12.010000"],["2024-07-24T18:41:13.010000"],["2024-07-24T18:41:14.010000"],["2024-07-24T18:41:15.010000"],["2024-07-24T18:41:16.010000"],["2024-07-24T18:41:17.010000"],["2024-07-24T18:41:18.010000"],["2024-07-24T18:41:19.010000"],["2024-07-24T18:41:20.010000"],["2024-07-24T18:41:21.010000"],["2024-07-24T18:41:22.010000"],["2024-07-24T18:41:23.010000"],["2024-07-24T18:41:24.010000"],["2024-07-24T18:41:25.010000"],["2024-07-24T18:41:26.010000"],["2024-07-24T18:41:27.010000"],["2024-07-24T18:41:28.010000"],["2024-07-24T18:41:29.010000"],["2024-07-24T18:41:30.010000"],["2024-07-24T18:41:31.010000"],["2024-07-24T18:41:32.010000"],["2024-07-24T18:41:33.010000"],["2024-07-24T18:41:34.010000"],["2024-07-24T18:41:35.010000"],["2024-07-24T18:41:36.010000"],["2024-07-24T18:41:37.010000"],["2024-07-24T18:41:38.010000"],["2024-07-24T18:41:39.010000"],["2024-07-24T18:41:40.010000"],["2024-07-24T18:41:41.010000"],["2024-07-24T18:41:42.010000"],["2024-07-24T18:41:43.010000"],["2024-07-24T18:41:44.010000"],["2024-07-24T18:41:45.010000"],["2024-07-24T18:41:46.010000"],["2024-07-24T18:41:47.010000"],["2024-07-24T18:41:48.010000"],["2024-07-24T18:41:49.010000"],["2024-07-24T18:41:50.010000"],["2024-07-24T18:41:51.010000"],["2024-07-24T18:41:52.010000"],["2024-07-24T18:41:53.010000"],["2024-07-24T18:41:54.010000"],["2024-07-24T18:41:55.010000"],["2024-07-24T18:41:56.010000"],["2024-07-24T18:41:57.010000"],["2024-07-24T18:41:58.010000"],["2024-07-24T18:41:59.010000"],["2024-07-24T18:42:00.010000"],["2024-07-24T18:42:01.010000"],["2024-07-24T18:42:02.010000"],["2024-07-24T18:42:03.010000"],["2024-07-24T18:42:04.010000"],["2024-07-24T18:42:05.010000"],["2024-07-24T18:42:06.010000"],["2024-07-24T18:42:07.010000"],["2024-07-24T18:42:08.010000"],["2024-07-24T18:42:09.010000"],["2024-07-24T18:42:10.010000"],["2024-07-24T18:42:11.010000"],["2024-07-24T18:42:12.010000"],["2024-07-24T18:42:13.010000"],["2024-07-24T18:42:14.010000"],["2024-07-24T18:42:15.010000"],["2024-07-24T18:42:16.010000"],["2024-07-24T18:42:17.010000"],["2024-07-24T18:42:18.010000"],["2024-07-24T18:42:19.010000"],["2024-07-24T18:42:20.010000"],["2024-07-24T18:42:21.010000"],["2024-07-24T18:42:22.010000"],["2024-07-24T18:42:23.010000"],["2024-07-24T18:42:24.010000"],["2024-07-24T18:42:25.010000"],["2024-07-24T18:42:26.010000"],["2024-07-24T18:42:27.010000"],["2024-07-24T18:42:28.010000"],["2024-07-24T18:42:29.010000"],["2024-07-24T18:42:30.010000"],["2024-07-24T18:42:31.010000"],["2024-07-24T18:42:32.010000"],["2024-07-24T18:42:33.010000"],["2024-07-24T18:42:34.010000"],["2024-07-24T18:42:35.010000"],["2024-07-24T18:42:36.010000"],["2024-07-24T18:42:37.010000"],["2024-07-24T18:42:38.010000"],["2024-07-24T18:42:39.010000"],["2024-07-24T18:42:40.010000"],["2024-07-24T18:42:41.010000"],["2024-07-24T18:42:42.010000"],["2024-07-24T18:42:43.010000"],["2024-07-24T18:42:44.010000"],["2024-07-24T18:42:45.010000"],["2024-07-24T18:42:46.010000"],["2024-07-24T18:42:47.010000"],["2024-07-24T18:42:48.010000"],["2024-07-24T18:42:49.010000"],["2024-07-24T18:42:50.010000"],["2024-07-24T18:42:51.010000"],["2024-07-24T18:42:52.010000"],["2024-07-24T18:42:53.010000"],["2024-07-24T18:42:54.010000"],["2024-07-24T18:42:55.010000"],["2024-07-24T18:42:56.010000"],["2024-07-24T18:42:57.010000"],["2024-07-24T18:42:58.010000"],["2024-07-24T18:42:59.010000"],["2024-07-24T18:43:00.010000"],["2024-07-24T18:43:01.010000"],["2024-07-24T18:43:02.010000"],["2024-07-24T18:43:03.010000"],["2024-07-24T18:43:04.010000"],["2024-07-24T18:43:05.010000"],["2024-07-24T18:43:06.010000"],["2024-07-24T18:43:07.010000"],["2024-07-24T18:43:08.010000"],["2024-07-24T18:43:09.010000"],["2024-07-24T18:43:10.010000"],["2024-07-24T18:43:11.010000"],["2024-07-24T18:43:12.010000"],["2024-07-24T18:43:13.010000"],["2024-07-24T18:43:14.010000"],["2024-07-24T18:43:15.010000"],["2024-07-24T18:43:16.010000"],["2024-07-24T18:43:17.010000"],["2024-07-24T18:43:18.010000"],["2024-07-24T18:43:19.010000"],["2024-07-24T18:43:20.010000"],["2024-07-24T18:43:21.010000"],["2024-07-24T18:43:22.010000"],["2024-07-24T18:43:23.010000"],["2024-07-24T18:43:24.010000"],["2024-07-24T18:43:25.010000"],["2024-07-24T18:43:26.010000"],["2024-07-24T18:43:27.010000"],["2024-07-24T18:43:28.010000"],["2024-07-24T18:43:29.010000"],["2024-07-24T18:43:30.010000"],["2024-07-24T18:43:31.010000"],["2024-07-24T18:43:32.010000"],["2024-07-24T18:43:33.010000"],["2024-07-24T18:43:34.010000"],["2024-07-24T18:43:35.010000"],["2024-07-24T18:43:36.010000"],["2024-07-24T18:43:37.010000"],["2024-07-24T18:43:38.010000"],["2024-07-24T18:43:39.010000"],["2024-07-24T18:43:40.010000"],["2024-07-24T18:43:41.010000"],["2024-07-24T18:43:42.010000"],["2024-07-24T18:43:43.010000"],["2024-07-24T18:43:44.010000"],["2024-07-24T18:43:45.010000"],["2024-07-24T18:43:46.010000"],["2024-07-24T18:43:47.010000"],["2024-07-24T18:43:48.010000"],["2024-07-24T18:43:49.010000"],["2024-07-24T18:43:50.010000"],["2024-07-24T18:43:51.010000"],["2024-07-24T18:43:52.010000"],["2024-07-24T18:43:53.010000"],["2024-07-24T18:43:54.010000"],["2024-07-24T18:43:55.010000"],["2024-07-24T18:43:56.010000"],["2024-07-24T18:43:57.010000"],["2024-07-24T18:43:58.010000"],["2024-07-24T18:43:59.010000"],["2024-07-24T18:44:00.010000"],["2024-07-24T18:44:01.010000"],["2024-07-24T18:44:02.010000"],["2024-07-24T18:44:03.010000"],["2024-07-24T18:44:04.010000"],["2024-07-24T18:44:05.010000"],["2024-07-24T18:44:06.010000"],["2024-07-24T18:44:07.010000"],["2024-07-24T18:44:08.010000"],["2024-07-24T18:44:09.010000"],["2024-07-24T18:44:10.010000"],["2024-07-24T18:44:11.010000"],["2024-07-24T18:44:12.010000"],["2024-07-24T18:44:13.010000"],["2024-07-24T18:44:14.010000"],["2024-07-24T18:44:15.010000"],["2024-07-24T18:44:16.010000"],["2024-07-24T18:44:17.010000"],["2024-07-24T18:44:18.010000"],["2024-07-24T18:44:19.010000"],["2024-07-24T18:44:20.010000"],["2024-07-24T18:44:21.010000"],["2024-07-24T18:44:22.010000"],["2024-07-24T18:44:23.010000"],["2024-07-24T18:44:24.010000"],["2024-07-24T18:44:25.010000"],["2024-07-24T18:44:26.010000"],["2024-07-24T18:44:27.010000"],["2024-07-24T18:44:28.010000"],["2024-07-24T18:44:29.010000"],["2024-07-24T18:44:30.010000"],["2024-07-24T18:44:31.010000"],["2024-07-24T18:44:32.010000"],["2024-07-24T18:44:33.010000"],["2024-07-24T18:44:34.010000"],["2024-07-24T18:44:35.010000"],["2024-07-24T18:44:36.010000"],["2024-07-24T18:44:37.010000"],["2024-07-24T18:44:38.010000"],["2024-07-24T18:44:39.010000"],["2024-07-24T18:44:40.010000"],["2024-07-24T18:44:41.010000"],["2024-07-24T18:44:42.010000"],["2024-07-24T18:44:43.010000"],["2024-07-24T18:44:44.010000"],["2024-07-24T18:44:45.010000"],["2024-07-24T18:44:46.010000"],["2024-07-24T18:44:47.010000"],["2024-07-24T18:44:48.010000"],["2024-07-24T18:44:49.010000"],["2024-07-24T18:44:50.010000"],["2024-07-24T18:44:51.010000"],["2024-07-24T18:44:52.010000"],["2024-07-24T18:44:53.010000"],["2024-07-24T18:44:54.010000"],["2024-07-24T18:44:55.010000"],["2024-07-24T18:44:56.010000"],["2024-07-24T18:44:57.010000"],["2024-07-24T18:44:58.010000"],["2024-07-24T18:44:59.010000"],["2024-07-24T18:45:00.010000"],["2024-07-24T18:45:01.010000"],["2024-07-24T18:45:02.010000"],["2024-07-24T18:45:03.010000"],["2024-07-24T18:45:04.010000"],["2024-07-24T18:45:05.010000"],["2024-07-24T18:45:06.010000"],["2024-07-24T18:45:07.010000"],["2024-07-24T18:45:08.010000"],["2024-07-24T18:45:09.010000"],["2024-07-24T18:45:10.010000"],["2024-07-24T18:45:11.010000"],["2024-07-24T18:45:12.010000"],["2024-07-24T18:45:13.010000"],["2024-07-24T18:45:14.010000"],["2024-07-24T18:45:15.010000"],["2024-07-24T18:45:16.010000"],["2024-07-24T18:45:17.010000"],["2024-07-24T18:45:18.010000"],["2024-07-24T18:45:19.010000"],["2024-07-24T18:45:20.010000"],["2024-07-24T18:45:21.010000"],["2024-07-24T18:45:22.010000"],["2024-07-24T18:45:23.010000"],["2024-07-24T18:45:24.010000"],["2024-07-24T18:45:25.010000"],["2024-07-24T18:45:26.010000"],["2024-07-24T18:45:27.010000"],["2024-07-24T18:45:28.010000"],["2024-07-24T18:45:29.010000"],["2024-07-24T18:45:30.010000"],["2024-07-24T18:45:31.010000"],["2024-07-24T18:45:32.010000"],["2024-07-24T18:45:33.010000"],["2024-07-24T18:45:34.010000"],["2024-07-24T18:45:35.010000"],["2024-07-24T18:45:36.010000"],["2024-07-24T18:45:37.010000"],["2024-07-24T18:45:38.010000"],["2024-07-24T18:45:39.010000"],["2024-07-24T18:45:40.010000"],["2024-07-24T18:45:41.010000"],["2024-07-24T18:45:42.010000"],["2024-07-24T18:45:43.010000"],["2024-07-24T18:45:44.010000"],["2024-07-24T18:45:45.010000"],["2024-07-24T18:45:46.010000"],["2024-07-24T18:45:47.010000"],["2024-07-24T18:45:48.010000"],["2024-07-24T18:45:49.010000"],["2024-07-24T18:45:50.010000"],["2024-07-24T18:45:51.010000"],["2024-07-24T18:45:52.010000"],["2024-07-24T18:45:53.010000"],["2024-07-24T18:45:54.010000"],["2024-07-24T18:45:55.010000"],["2024-07-24T18:45:56.010000"],["2024-07-24T18:45:57.010000"],["2024-07-24T18:45:58.010000"],["2024-07-24T18:45:59.010000"],["2024-07-24T18:46:00.010000"],["2024-07-24T18:46:01.010000"],["2024-07-24T18:46:02.010000"],["2024-07-24T18:46:03.010000"],["2024-07-24T18:46:04.010000"],["2024-07-24T18:46:05.010000"],["2024-07-24T18:46:06.010000"],["2024-07-24T18:46:07.010000"],["2024-07-24T18:46:08.010000"],["2024-07-24T18:46:09.010000"],["2024-07-24T18:46:10.010000"],["2024-07-24T18:46:11.010000"],["2024-07-24T18:46:12.010000"],["2024-07-24T18:46:13.010000"],["2024-07-24T18:46:14.010000"],["2024-07-24T18:46:15.010000"],["2024-07-24T18:46:16.010000"],["2024-07-24T18:46:17.010000"],["2024-07-24T18:46:18.010000"],["2024-07-24T18:46:19.010000"],["2024-07-24T18:46:20.010000"],["2024-07-24T18:46:21.010000"],["2024-07-24T18:46:22.010000"],["2024-07-24T18:46:23.010000"],["2024-07-24T18:46:24.010000"],["2024-07-24T18:46:25.010000"],["2024-07-24T18:46:26.010000"],["2024-07-24T18:46:27.010000"],["2024-07-24T18:46:28.010000"],["2024-07-24T18:46:29.010000"],["2024-07-24T18:46:30.010000"],["2024-07-24T18:46:31.010000"],["2024-07-24T18:46:32.010000"],["2024-07-24T18:46:33.010000"],["2024-07-24T18:46:34.010000"],["2024-07-24T18:46:35.010000"],["2024-07-24T18:46:36.010000"],["2024-07-24T18:46:37.010000"],["2024-07-24T18:46:38.010000"],["2024-07-24T18:46:39.010000"],["2024-07-24T18:46:40.010000"],["2024-07-24T18:46:41.010000"],["2024-07-24T18:46:42.010000"],["2024-07-24T18:46:43.010000"],["2024-07-24T18:46:44.010000"],["2024-07-24T18:46:45.010000"],["2024-07-24T18:46:46.010000"],["2024-07-24T18:46:47.010000"],["2024-07-24T18:46:48.010000"],["2024-07-24T18:46:49.010000"],["2024-07-24T18:46:50.010000"],["2024-07-24T18:46:51.010000"],["2024-07-24T18:46:52.010000"],["2024-07-24T18:46:53.010000"],["2024-07-24T18:46:54.010000"],["2024-07-24T18:46:55.010000"],["2024-07-24T18:46:56.010000"],["2024-07-24T18:46:57.010000"],["2024-07-24T18:46:58.010000"],["2024-07-24T18:46:59.010000"],["2024-07-24T18:47:00.010000"],["2024-07-24T18:47:01.010000"],["2024-07-24T18:47:02.010000"],["2024-07-24T18:47:03.010000"],["2024-07-24T18:47:04.010000"],["2024-07-24T18:47:05.010000"],["2024-07-24T18:47:06.010000"],["2024-07-24T18:47:07.010000"],["2024-07-24T18:47:08.010000"],["2024-07-24T18:47:09.010000"],["2024-07-24T18:47:10.010000"],["2024-07-24T18:47:11.010000"],["2024-07-24T18:47:12.010000"],["2024-07-24T18:47:13.010000"],["2024-07-24T18:47:14.010000"],["2024-07-24T18:47:15.010000"],["2024-07-24T18:47:16.010000"],["2024-07-24T18:47:17.010000"],["2024-07-24T18:47:18.010000"],["2024-07-24T18:47:19.010000"],["2024-07-24T18:47:20.010000"],["2024-07-24T18:47:21.010000"],["2024-07-24T18:47:22.010000"],["2024-07-24T18:47:23.010000"],["2024-07-24T18:47:24.010000"],["2024-07-24T18:47:25.010000"],["2024-07-24T18:47:26.010000"],["2024-07-24T18:47:27.010000"],["2024-07-24T18:47:28.010000"],["2024-07-24T18:47:29.010000"],["2024-07-24T18:47:30.010000"],["2024-07-24T18:47:31.010000"],["2024-07-24T18:47:32.010000"],["2024-07-24T18:47:33.010000"],["2024-07-24T18:47:34.010000"],["2024-07-24T18:47:35.010000"],["2024-07-24T18:47:36.010000"],["2024-07-24T18:47:37.010000"],["2024-07-24T18:47:38.010000"],["2024-07-24T18:47:39.010000"],["2024-07-24T18:47:40.010000"],["2024-07-24T18:47:41.010000"],["2024-07-24T18:47:42.010000"],["2024-07-24T18:47:43.010000"],["2024-07-24T18:47:44.010000"],["2024-07-24T18:47:45.010000"],["2024-07-24T18:47:46.010000"],["2024-07-24T18:47:47.010000"],["2024-07-24T18:47:48.010000"],["2024-07-24T18:47:49.010000"],["2024-07-24T18:47:50.010000"],["2024-07-24T18:47:51.010000"],["2024-07-24T18:47:52.010000"],["2024-07-24T18:47:53.010000"],["2024-07-24T18:47:54.010000"],["2024-07-24T18:47:55.010000"],["2024-07-24T18:47:56.010000"],["2024-07-24T18:47:57.010000"],["2024-07-24T18:47:58.010000"],["2024-07-24T18:47:59.010000"],["2024-07-24T18:48:00.010000"],["2024-07-24T18:48:01.010000"],["2024-07-24T18:48:02.010000"],["2024-07-24T18:48:03.010000"],["2024-07-24T18:48:04.010000"],["2024-07-24T18:48:05.010000"],["2024-07-24T18:48:06.010000"],["2024-07-24T18:48:07.010000"],["2024-07-24T18:48:08.010000"],["2024-07-24T18:48:09.010000"],["2024-07-24T18:48:10.010000"],["2024-07-24T18:48:11.010000"],["2024-07-24T18:48:12.010000"],["2024-07-24T18:48:13.010000"],["2024-07-24T18:48:14.010000"],["2024-07-24T18:48:15.010000"],["2024-07-24T18:48:16.010000"],["2024-07-24T18:48:17.010000"],["2024-07-24T18:48:18.010000"],["2024-07-24T18:48:19.010000"],["2024-07-24T18:48:20.010000"],["2024-07-24T18:48:21.010000"],["2024-07-24T18:48:22.010000"],["2024-07-24T18:48:23.010000"],["2024-07-24T18:48:24.010000"],["2024-07-24T18:48:25.010000"],["2024-07-24T18:48:26.010000"],["2024-07-24T18:48:27.010000"],["2024-07-24T18:48:28.010000"],["2024-07-24T18:48:29.010000"],["2024-07-24T18:48:30.010000"],["2024-07-24T18:48:31.010000"],["2024-07-24T18:48:32.010000"],["2024-07-24T18:48:33.010000"],["2024-07-24T18:48:34.010000"],["2024-07-24T18:48:35.010000"],["2024-07-24T18:48:36.010000"],["2024-07-24T18:48:37.010000"],["2024-07-24T18:48:38.010000"],["2024-07-24T18:48:39.010000"],["2024-07-24T18:48:40.010000"],["2024-07-24T18:48:41.010000"],["2024-07-24T18:48:42.010000"],["2024-07-24T18:48:43.010000"],["2024-07-24T18:48:44.010000"],["2024-07-24T18:48:45.010000"],["2024-07-24T18:48:46.010000"],["2024-07-24T18:48:47.010000"],["2024-07-24T18:48:48.010000"],["2024-07-24T18:48:49.010000"],["2024-07-24T18:48:50.010000"],["2024-07-24T18:48:51.010000"],["2024-07-24T18:48:52.010000"],["2024-07-24T18:48:53.010000"],["2024-07-24T18:48:54.010000"],["2024-07-24T18:48:55.010000"],["2024-07-24T18:48:56.010000"],["2024-07-24T18:48:57.010000"],["2024-07-24T18:48:58.010000"],["2024-07-24T18:48:59.010000"],["2024-07-24T18:49:00.010000"],["2024-07-24T18:49:01.010000"],["2024-07-24T18:49:02.010000"],["2024-07-24T18:49:03.010000"],["2024-07-24T18:49:04.010000"],["2024-07-24T18:49:05.010000"],["2024-07-24T18:49:06.010000"],["2024-07-24T18:49:07.010000"],["2024-07-24T18:49:08.010000"],["2024-07-24T18:49:09.010000"],["2024-07-24T18:49:10.010000"],["2024-07-24T18:49:11.010000"],["2024-07-24T18:49:12.010000"],["2024-07-24T18:49:13.010000"],["2024-07-24T18:49:14.010000"],["2024-07-24T18:49:15.010000"],["2024-07-24T18:49:16.010000"],["2024-07-24T18:49:17.010000"],["2024-07-24T18:49:18.010000"],["2024-07-24T18:49:19.010000"],["2024-07-24T18:49:20.010000"],["2024-07-24T18:49:21.010000"],["2024-07-24T18:49:22.010000"],["2024-07-24T18:49:23.010000"],["2024-07-24T18:49:24.010000"],["2024-07-24T18:49:25.010000"],["2024-07-24T18:49:26.010000"],["2024-07-24T18:49:27.010000"],["2024-07-24T18:49:28.010000"],["2024-07-24T18:49:29.010000"],["2024-07-24T18:49:30.010000"],["2024-07-24T18:49:31.010000"],["2024-07-24T18:49:32.010000"],["2024-07-24T18:49:33.010000"],["2024-07-24T18:49:34.010000"],["2024-07-24T18:49:35.010000"],["2024-07-24T18:49:36.010000"],["2024-07-24T18:49:37.010000"],["2024-07-24T18:49:38.010000"],["2024-07-24T18:49:39.010000"],["2024-07-24T18:49:40.010000"],["2024-07-24T18:49:41.010000"],["2024-07-24T18:49:42.010000"],["2024-07-24T18:49:43.010000"],["2024-07-24T18:49:44.010000"],["2024-07-24T18:49:45.010000"],["2024-07-24T18:49:46.010000"],["2024-07-24T18:49:47.010000"],["2024-07-24T18:49:48.010000"],["2024-07-24T18:49:49.010000"],["2024-07-24T18:49:50.010000"],["2024-07-24T18:49:51.010000"],["2024-07-24T18:49:52.010000"],["2024-07-24T18:49:53.010000"],["2024-07-24T18:49:54.010000"],["2024-07-24T18:49:55.010000"],["2024-07-24T18:49:56.010000"],["2024-07-24T18:49:57.010000"],["2024-07-24T18:49:58.010000"],["2024-07-24T18:49:59.010000"],["2024-07-24T18:50:00.010000"],["2024-07-24T18:50:01.010000"],["2024-07-24T18:50:02.010000"],["2024-07-24T18:50:03.010000"],["2024-07-24T18:50:04.010000"],["2024-07-24T18:50:05.010000"],["2024-07-24T18:50:06.010000"],["2024-07-24T18:50:07.010000"],["2024-07-24T18:50:08.010000"],["2024-07-24T18:50:09.010000"],["2024-07-24T18:50:10.010000"],["2024-07-24T18:50:11.010000"],["2024-07-24T18:50:12.010000"],["2024-07-24T18:50:13.010000"],["2024-07-24T18:50:14.010000"],["2024-07-24T18:50:15.010000"],["2024-07-24T18:50:16.010000"],["2024-07-24T18:50:17.010000"],["2024-07-24T18:50:18.010000"],["2024-07-24T18:50:19.010000"],["2024-07-24T18:50:20.010000"],["2024-07-24T18:50:21.010000"],["2024-07-24T18:50:22.010000"],["2024-07-24T18:50:23.010000"],["2024-07-24T18:50:24.010000"],["2024-07-24T18:50:25.010000"],["2024-07-24T18:50:26.010000"],["2024-07-24T18:50:27.010000"],["2024-07-24T18:50:28.010000"],["2024-07-24T18:50:29.010000"],["2024-07-24T18:50:30.010000"],["2024-07-24T18:50:31.010000"],["2024-07-24T18:50:32.010000"],["2024-07-24T18:50:33.010000"],["2024-07-24T18:50:34.010000"],["2024-07-24T18:50:35.010000"],["2024-07-24T18:50:36.010000"],["2024-07-24T18:50:37.010000"],["2024-07-24T18:50:38.010000"],["2024-07-24T18:50:39.010000"],["2024-07-24T18:50:40.010000"],["2024-07-24T18:50:41.010000"],["2024-07-24T18:50:42.010000"],["2024-07-24T18:50:43.010000"],["2024-07-24T18:50:44.010000"],["2024-07-24T18:50:45.010000"],["2024-07-24T18:50:46.010000"],["2024-07-24T18:50:47.010000"],["2024-07-24T18:50:48.010000"],["2024-07-24T18:50:49.010000"],["2024-07-24T18:50:50.010000"],["2024-07-24T18:50:51.010000"],["2024-07-24T18:50:52.010000"],["2024-07-24T18:50:53.010000"],["2024-07-24T18:50:54.010000"],["2024-07-24T18:50:55.010000"],["2024-07-24T18:50:56.010000"],["2024-07-24T18:50:57.010000"],["2024-07-24T18:50:58.010000"],["2024-07-24T18:50:59.010000"],["2024-07-24T18:51:00.010000"],["2024-07-24T18:51:01.010000"],["2024-07-24T18:51:02.010000"],["2024-07-24T18:51:03.010000"],["2024-07-24T18:51:04.010000"],["2024-07-24T18:51:05.010000"],["2024-07-24T18:51:06.010000"],["2024-07-24T18:51:07.010000"],["2024-07-24T18:51:08.010000"],["2024-07-24T18:51:09.010000"],["2024-07-24T18:51:10.010000"],["2024-07-24T18:51:11.010000"],["2024-07-24T18:51:12.010000"],["2024-07-24T18:51:13.010000"],["2024-07-24T18:51:14.010000"],["2024-07-24T18:51:15.010000"],["2024-07-24T18:51:16.010000"],["2024-07-24T18:51:17.010000"],["2024-07-24T18:51:18.010000"],["2024-07-24T18:51:19.010000"],["2024-07-24T18:51:20.010000"],["2024-07-24T18:51:21.010000"],["2024-07-24T18:51:22.010000"],["2024-07-24T18:51:23.010000"],["2024-07-24T18:51:24.010000"],["2024-07-24T18:51:25.010000"],["2024-07-24T18:51:26.010000"],["2024-07-24T18:51:27.010000"],["2024-07-24T18:51:28.010000"],["2024-07-24T18:51:29.010000"],["2024-07-24T18:51:30.010000"],["2024-07-24T18:51:31.010000"],["2024-07-24T18:51:32.010000"],["2024-07-24T18:51:33.010000"],["2024-07-24T18:51:34.010000"],["2024-07-24T18:51:35.010000"],["2024-07-24T18:51:36.010000"],["2024-07-24T18:51:37.010000"],["2024-07-24T18:51:38.010000"],["2024-07-24T18:51:39.010000"],["2024-07-24T18:51:40.010000"],["2024-07-24T18:51:41.010000"],["2024-07-24T18:51:42.010000"],["2024-07-24T18:51:43.010000"],["2024-07-24T18:51:44.010000"],["2024-07-24T18:51:45.010000"],["2024-07-24T18:51:46.010000"],["2024-07-24T18:51:47.010000"],["2024-07-24T18:51:48.010000"],["2024-07-24T18:51:49.010000"],["2024-07-24T18:51:50.010000"],["2024-07-24T18:51:51.010000"],["2024-07-24T18:51:52.010000"],["2024-07-24T18:51:53.010000"],["2024-07-24T18:51:54.010000"],["2024-07-24T18:51:55.010000"],["2024-07-24T18:51:56.010000"],["2024-07-24T18:51:57.010000"],["2024-07-24T18:51:58.010000"],["2024-07-24T18:51:59.010000"],["2024-07-24T18:52:00.010000"],["2024-07-24T18:52:01.010000"],["2024-07-24T18:52:02.010000"],["2024-07-24T18:52:03.010000"],["2024-07-24T18:52:04.010000"],["2024-07-24T18:52:05.010000"],["2024-07-24T18:52:06.010000"],["2024-07-24T18:52:07.010000"],["2024-07-24T18:52:08.010000"],["2024-07-24T18:52:09.010000"],["2024-07-24T18:52:10.010000"],["2024-07-24T18:52:11.010000"],["2024-07-24T18:52:12.010000"],["2024-07-24T18:52:13.010000"],["2024-07-24T18:52:14.010000"],["2024-07-24T18:52:15.010000"],["2024-07-24T18:52:16.010000"],["2024-07-24T18:52:17.010000"],["2024-07-24T18:52:18.010000"],["2024-07-24T18:52:19.010000"],["2024-07-24T18:52:20.010000"],["2024-07-24T18:52:21.010000"],["2024-07-24T18:52:22.010000"],["2024-07-24T18:52:23.010000"],["2024-07-24T18:52:24.010000"],["2024-07-24T18:52:25.010000"],["2024-07-24T18:52:26.010000"],["2024-07-24T18:52:27.010000"],["2024-07-24T18:52:28.010000"],["2024-07-24T18:52:29.010000"],["2024-07-24T18:52:30.010000"],["2024-07-24T18:52:31.010000"],["2024-07-24T18:52:32.010000"],["2024-07-24T18:52:33.010000"],["2024-07-24T18:52:34.010000"],["2024-07-24T18:52:35.010000"],["2024-07-24T18:52:36.010000"],["2024-07-24T18:52:37.010000"],["2024-07-24T18:52:38.010000"],["2024-07-24T18:52:39.010000"],["2024-07-24T18:52:40.010000"],["2024-07-24T18:52:41.010000"],["2024-07-24T18:52:42.010000"],["2024-07-24T18:52:43.010000"],["2024-07-24T18:52:44.010000"],["2024-07-24T18:52:45.010000"],["2024-07-24T18:52:46.010000"],["2024-07-24T18:52:47.010000"],["2024-07-24T18:52:48.010000"],["2024-07-24T18:52:49.010000"],["2024-07-24T18:52:50.010000"],["2024-07-24T18:52:51.010000"],["2024-07-24T18:52:52.010000"],["2024-07-24T18:52:53.010000"],["2024-07-24T18:52:54.010000"],["2024-07-24T18:52:55.010000"],["2024-07-24T18:52:56.010000"],["2024-07-24T18:52:57.010000"],["2024-07-24T18:52:58.010000"],["2024-07-24T18:52:59.010000"],["2024-07-24T18:53:00.010000"],["2024-07-24T18:53:01.010000"],["2024-07-24T18:53:02.010000"],["2024-07-24T18:53:03.010000"],["2024-07-24T18:53:04.010000"],["2024-07-24T18:53:05.010000"],["2024-07-24T18:53:06.010000"],["2024-07-24T18:53:07.010000"],["2024-07-24T18:53:08.010000"],["2024-07-24T18:53:09.010000"],["2024-07-24T18:53:10.010000"],["2024-07-24T18:53:11.010000"],["2024-07-24T18:53:12.010000"],["2024-07-24T18:53:13.010000"],["2024-07-24T18:53:14.010000"],["2024-07-24T18:53:15.010000"],["2024-07-24T18:53:16.010000"],["2024-07-24T18:53:17.010000"],["2024-07-24T18:53:18.010000"],["2024-07-24T18:53:19.010000"],["2024-07-24T18:53:20.010000"],["2024-07-24T18:53:21.010000"],["2024-07-24T18:53:22.010000"],["2024-07-24T18:53:23.010000"],["2024-07-24T18:53:24.010000"],["2024-07-24T18:53:25.010000"],["2024-07-24T18:53:26.010000"],["2024-07-24T18:53:27.010000"],["2024-07-24T18:53:28.010000"],["2024-07-24T18:53:29.010000"],["2024-07-24T18:53:30.010000"],["2024-07-24T18:53:31.010000"],["2024-07-24T18:53:32.010000"],["2024-07-24T18:53:33.010000"],["2024-07-24T18:53:34.010000"],["2024-07-24T18:53:35.010000"],["2024-07-24T18:53:36.010000"],["2024-07-24T18:53:37.010000"],["2024-07-24T18:53:38.010000"],["2024-07-24T18:53:39.010000"],["2024-07-24T18:53:40.010000"],["2024-07-24T18:53:41.010000"],["2024-07-24T18:53:42.010000"],["2024-07-24T18:53:43.010000"],["2024-07-24T18:53:44.010000"],["2024-07-24T18:53:45.010000"],["2024-07-24T18:53:46.010000"],["2024-07-24T18:53:47.010000"],["2024-07-24T18:53:48.010000"],["2024-07-24T18:53:49.010000"],["2024-07-24T18:53:50.010000"],["2024-07-24T18:53:51.010000"],["2024-07-24T18:53:52.010000"],["2024-07-24T18:53:53.010000"],["2024-07-24T18:53:54.010000"],["2024-07-24T18:53:55.010000"],["2024-07-24T18:53:56.010000"],["2024-07-24T18:53:57.010000"],["2024-07-24T18:53:58.010000"],["2024-07-24T18:53:59.010000"],["2024-07-24T18:54:00.010000"],["2024-07-24T18:54:01.010000"],["2024-07-24T18:54:02.010000"],["2024-07-24T18:54:03.010000"],["2024-07-24T18:54:04.010000"],["2024-07-24T18:54:05.010000"],["2024-07-24T18:54:06.010000"],["2024-07-24T18:54:07.010000"],["2024-07-24T18:54:08.010000"],["2024-07-24T18:54:09.010000"],["2024-07-24T18:54:10.010000"],["2024-07-24T18:54:11.010000"],["2024-07-24T18:54:12.010000"],["2024-07-24T18:54:13.010000"],["2024-07-24T18:54:14.010000"],["2024-07-24T18:54:15.010000"],["2024-07-24T18:54:16.010000"],["2024-07-24T18:54:17.010000"],["2024-07-24T18:54:18.010000"],["2024-07-24T18:54:19.010000"],["2024-07-24T18:54:20.010000"],["2024-07-24T18:54:21.010000"],["2024-07-24T18:54:22.010000"],["2024-07-24T18:54:23.010000"],["2024-07-24T18:54:24.010000"],["2024-07-24T18:54:25.010000"],["2024-07-24T18:54:26.010000"],["2024-07-24T18:54:27.010000"],["2024-07-24T18:54:28.010000"],["2024-07-24T18:54:29.010000"],["2024-07-24T18:54:30.010000"],["2024-07-24T18:54:31.010000"],["2024-07-24T18:54:32.010000"],["2024-07-24T18:54:33.010000"],["2024-07-24T18:54:34.010000"],["2024-07-24T18:54:35.010000"],["2024-07-24T18:54:36.010000"],["2024-07-24T18:54:37.010000"],["2024-07-24T18:54:38.010000"],["2024-07-24T18:54:39.010000"],["2024-07-24T18:54:40.010000"],["2024-07-24T18:54:41.010000"],["2024-07-24T18:54:42.010000"],["2024-07-24T18:54:43.010000"],["2024-07-24T18:54:44.010000"],["2024-07-24T18:54:45.010000"],["2024-07-24T18:54:46.010000"],["2024-07-24T18:54:47.010000"],["2024-07-24T18:54:48.010000"],["2024-07-24T18:54:49.010000"],["2024-07-24T18:54:50.010000"],["2024-07-24T18:54:51.010000"],["2024-07-24T18:54:52.010000"],["2024-07-24T18:54:53.010000"],["2024-07-24T18:54:54.010000"],["2024-07-24T18:54:55.010000"],["2024-07-24T18:54:56.010000"],["2024-07-24T18:54:57.010000"],["2024-07-24T18:54:58.010000"],["2024-07-24T18:54:59.010000"],["2024-07-24T18:55:00.010000"],["2024-07-24T18:55:01.010000"],["2024-07-24T18:55:02.010000"],["2024-07-24T18:55:03.010000"],["2024-07-24T18:55:04.010000"],["2024-07-24T18:55:05.010000"],["2024-07-24T18:55:06.010000"],["2024-07-24T18:55:07.010000"],["2024-07-24T18:55:08.010000"],["2024-07-24T18:55:09.010000"],["2024-07-24T18:55:10.010000"],["2024-07-24T18:55:11.010000"],["2024-07-24T18:55:12.010000"],["2024-07-24T18:55:13.010000"],["2024-07-24T18:55:14.010000"],["2024-07-24T18:55:15.010000"],["2024-07-24T18:55:16.010000"],["2024-07-24T18:55:17.010000"],["2024-07-24T18:55:18.010000"],["2024-07-24T18:55:19.010000"],["2024-07-24T18:55:20.010000"],["2024-07-24T18:55:21.010000"],["2024-07-24T18:55:22.010000"],["2024-07-24T18:55:23.010000"],["2024-07-24T18:55:24.010000"],["2024-07-24T18:55:25.010000"],["2024-07-24T18:55:26.010000"],["2024-07-24T18:55:27.010000"],["2024-07-24T18:55:28.010000"],["2024-07-24T18:55:29.010000"],["2024-07-24T18:55:30.010000"],["2024-07-24T18:55:31.010000"],["2024-07-24T18:55:32.010000"],["2024-07-24T18:55:33.010000"],["2024-07-24T18:55:34.010000"],["2024-07-24T18:55:35.010000"],["2024-07-24T18:55:36.010000"],["2024-07-24T18:55:37.010000"],["2024-07-24T18:55:38.010000"],["2024-07-24T18:55:39.010000"],["2024-07-24T18:55:40.010000"],["2024-07-24T18:55:41.010000"],["2024-07-24T18:55:42.010000"],["2024-07-24T18:55:43.010000"],["2024-07-24T18:55:44.010000"],["2024-07-24T18:55:45.010000"],["2024-07-24T18:55:46.010000"],["2024-07-24T18:55:47.010000"],["2024-07-24T18:55:48.010000"],["2024-07-24T18:55:49.010000"],["2024-07-24T18:55:50.010000"],["2024-07-24T18:55:51.010000"],["2024-07-24T18:55:52.010000"],["2024-07-24T18:55:53.010000"],["2024-07-24T18:55:54.010000"],["2024-07-24T18:55:55.010000"],["2024-07-24T18:55:56.010000"],["2024-07-24T18:55:57.010000"],["2024-07-24T18:55:58.010000"],["2024-07-24T18:55:59.010000"],["2024-07-24T18:56:00.010000"],["2024-07-24T18:56:01.010000"],["2024-07-24T18:56:02.010000"],["2024-07-24T18:56:03.010000"],["2024-07-24T18:56:04.010000"],["2024-07-24T18:56:05.010000"],["2024-07-24T18:56:06.010000"],["2024-07-24T18:56:07.010000"],["2024-07-24T18:56:08.010000"],["2024-07-24T18:56:09.010000"],["2024-07-24T18:56:10.010000"],["2024-07-24T18:56:11.010000"],["2024-07-24T18:56:12.010000"],["2024-07-24T18:56:13.010000"],["2024-07-24T18:56:14.010000"],["2024-07-24T18:56:15.010000"],["2024-07-24T18:56:16.010000"],["2024-07-24T18:56:17.010000"],["2024-07-24T18:56:18.010000"],["2024-07-24T18:56:19.010000"],["2024-07-24T18:56:20.010000"],["2024-07-24T18:56:21.010000"],["2024-07-24T18:56:22.010000"],["2024-07-24T18:56:23.010000"],["2024-07-24T18:56:24.010000"],["2024-07-24T18:56:25.010000"],["2024-07-24T18:56:26.010000"],["2024-07-24T18:56:27.010000"],["2024-07-24T18:56:28.010000"],["2024-07-24T18:56:29.010000"],["2024-07-24T18:56:30.010000"],["2024-07-24T18:56:31.010000"],["2024-07-24T18:56:32.010000"],["2024-07-24T18:56:33.010000"],["2024-07-24T18:56:34.010000"],["2024-07-24T18:56:35.010000"],["2024-07-24T18:56:36.010000"],["2024-07-24T18:56:37.010000"],["2024-07-24T18:56:38.010000"],["2024-07-24T18:56:39.010000"],["2024-07-24T18:56:40.010000"],["2024-07-24T18:56:41.010000"],["2024-07-24T18:56:42.010000"],["2024-07-24T18:56:43.010000"],["2024-07-24T18:56:44.010000"],["2024-07-24T18:56:45.010000"],["2024-07-24T18:56:46.010000"],["2024-07-24T18:56:47.010000"],["2024-07-24T18:56:48.010000"],["2024-07-24T18:56:49.010000"],["2024-07-24T18:56:50.010000"],["2024-07-24T18:56:51.010000"],["2024-07-24T18:56:52.010000"],["2024-07-24T18:56:53.010000"],["2024-07-24T18:56:54.010000"],["2024-07-24T18:56:55.010000"],["2024-07-24T18:56:56.010000"],["2024-07-24T18:56:57.010000"],["2024-07-24T18:56:58.010000"],["2024-07-24T18:56:59.010000"],["2024-07-24T18:57:00.010000"],["2024-07-24T18:57:01.010000"],["2024-07-24T18:57:02.010000"],["2024-07-24T18:57:03.010000"],["2024-07-24T18:57:04.010000"],["2024-07-24T18:57:05.010000"],["2024-07-24T18:57:06.010000"],["2024-07-24T18:57:07.010000"],["2024-07-24T18:57:08.010000"],["2024-07-24T18:57:09.010000"],["2024-07-24T18:57:10.010000"],["2024-07-24T18:57:11.010000"],["2024-07-24T18:57:12.010000"],["2024-07-24T18:57:13.010000"],["2024-07-24T18:57:14.010000"],["2024-07-24T18:57:15.010000"],["2024-07-24T18:57:16.010000"],["2024-07-24T18:57:17.010000"],["2024-07-24T18:57:18.010000"],["2024-07-24T18:57:19.010000"],["2024-07-24T18:57:20.010000"],["2024-07-24T18:57:21.010000"],["2024-07-24T18:57:22.010000"],["2024-07-24T18:57:23.010000"],["2024-07-24T18:57:24.010000"],["2024-07-24T18:57:25.010000"],["2024-07-24T18:57:26.010000"],["2024-07-24T18:57:27.010000"],["2024-07-24T18:57:28.010000"],["2024-07-24T18:57:29.010000"],["2024-07-24T18:57:30.010000"],["2024-07-24T18:57:31.010000"],["2024-07-24T18:57:32.010000"],["2024-07-24T18:57:33.010000"],["2024-07-24T18:57:34.010000"],["2024-07-24T18:57:35.010000"],["2024-07-24T18:57:36.010000"],["2024-07-24T18:57:37.010000"],["2024-07-24T18:57:38.010000"],["2024-07-24T18:57:39.010000"],["2024-07-24T18:57:40.010000"],["2024-07-24T18:57:41.010000"],["2024-07-24T18:57:42.010000"],["2024-07-24T18:57:43.010000"],["2024-07-24T18:57:44.010000"],["2024-07-24T18:57:45.010000"],["2024-07-24T18:57:46.010000"],["2024-07-24T18:57:47.010000"],["2024-07-24T18:57:48.010000"],["2024-07-24T18:57:49.010000"],["2024-07-24T18:57:50.010000"],["2024-07-24T18:57:51.010000"],["2024-07-24T18:57:52.010000"],["2024-07-24T18:57:53.010000"],["2024-07-24T18:57:54.010000"],["2024-07-24T18:57:55.010000"],["2024-07-24T18:57:56.010000"],["2024-07-24T18:57:57.010000"],["2024-07-24T18:57:58.010000"],["2024-07-24T18:57:59.010000"],["2024-07-24T18:58:00.010000"],["2024-07-24T18:58:01.010000"],["2024-07-24T18:58:02.010000"],["2024-07-24T18:58:03.010000"],["2024-07-24T18:58:04.010000"],["2024-07-24T18:58:05.010000"],["2024-07-24T18:58:06.010000"],["2024-07-24T18:58:07.010000"],["2024-07-24T18:58:08.010000"],["2024-07-24T18:58:09.010000"],["2024-07-24T18:58:10.010000"],["2024-07-24T18:58:11.010000"],["2024-07-24T18:58:12.010000"],["2024-07-24T18:58:13.010000"],["2024-07-24T18:58:14.010000"],["2024-07-24T18:58:15.010000"],["2024-07-24T18:58:16.010000"],["2024-07-24T18:58:17.010000"],["2024-07-24T18:58:18.010000"],["2024-07-24T18:58:19.010000"],["2024-07-24T18:58:20.010000"],["2024-07-24T18:58:21.010000"],["2024-07-24T18:58:22.010000"],["2024-07-24T18:58:23.010000"],["2024-07-24T18:58:24.010000"],["2024-07-24T18:58:25.010000"],["2024-07-24T18:58:26.010000"],["2024-07-24T18:58:27.010000"],["2024-07-24T18:58:28.010000"],["2024-07-24T18:58:29.010000"],["2024-07-24T18:58:30.010000"],["2024-07-24T18:58:31.010000"],["2024-07-24T18:58:32.010000"],["2024-07-24T18:58:33.010000"],["2024-07-24T18:58:34.010000"],["2024-07-24T18:58:35.010000"],["2024-07-24T18:58:36.010000"],["2024-07-24T18:58:37.010000"],["2024-07-24T18:58:38.010000"],["2024-07-24T18:58:39.010000"],["2024-07-24T18:58:40.010000"],["2024-07-24T18:58:41.010000"],["2024-07-24T18:58:42.010000"],["2024-07-24T18:58:43.010000"],["2024-07-24T18:58:44.010000"],["2024-07-24T18:58:45.010000"],["2024-07-24T18:58:46.010000"],["2024-07-24T18:58:47.010000"],["2024-07-24T18:58:48.010000"],["2024-07-24T18:58:49.010000"],["2024-07-24T18:58:50.010000"],["2024-07-24T18:58:51.010000"],["2024-07-24T18:58:52.010000"],["2024-07-24T18:58:53.010000"],["2024-07-24T18:58:54.010000"],["2024-07-24T18:58:55.010000"],["2024-07-24T18:58:56.010000"],["2024-07-24T18:58:57.010000"],["2024-07-24T18:58:58.010000"],["2024-07-24T18:58:59.010000"],["2024-07-24T18:59:00.010000"],["2024-07-24T18:59:01.010000"],["2024-07-24T18:59:02.010000"],["2024-07-24T18:59:03.010000"],["2024-07-24T18:59:04.010000"],["2024-07-24T18:59:05.010000"],["2024-07-24T18:59:06.010000"],["2024-07-24T18:59:07.010000"],["2024-07-24T18:59:08.010000"],["2024-07-24T18:59:09.010000"],["2024-07-24T18:59:10.010000"],["2024-07-24T18:59:11.010000"],["2024-07-24T18:59:12.010000"],["2024-07-24T18:59:13.010000"],["2024-07-24T18:59:14.010000"],["2024-07-24T18:59:15.010000"],["2024-07-24T18:59:16.010000"],["2024-07-24T18:59:17.010000"],["2024-07-24T18:59:18.010000"],["2024-07-24T18:59:19.010000"],["2024-07-24T18:59:20.010000"],["2024-07-24T18:59:21.010000"],["2024-07-24T18:59:22.010000"],["2024-07-24T18:59:23.010000"],["2024-07-24T18:59:24.010000"],["2024-07-24T18:59:25.010000"],["2024-07-24T18:59:26.010000"],["2024-07-24T18:59:27.010000"],["2024-07-24T18:59:28.010000"],["2024-07-24T18:59:29.010000"],["2024-07-24T18:59:30.010000"],["2024-07-24T18:59:31.010000"],["2024-07-24T18:59:32.010000"],["2024-07-24T18:59:33.010000"],["2024-07-24T18:59:34.010000"],["2024-07-24T18:59:35.010000"],["2024-07-24T18:59:36.010000"],["2024-07-24T18:59:37.010000"],["2024-07-24T18:59:38.010000"],["2024-07-24T18:59:39.010000"],["2024-07-24T18:59:40.010000"],["2024-07-24T18:59:41.010000"],["2024-07-24T18:59:42.010000"],["2024-07-24T18:59:43.010000"],["2024-07-24T18:59:44.010000"],["2024-07-24T18:59:45.010000"],["2024-07-24T18:59:46.010000"],["2024-07-24T18:59:47.010000"],["2024-07-24T18:59:48.010000"],["2024-07-24T18:59:49.010000"],["2024-07-24T18:59:50.010000"],["2024-07-24T18:59:51.010000"],["2024-07-24T18:59:52.010000"],["2024-07-24T18:59:53.010000"],["2024-07-24T18:59:54.010000"],["2024-07-24T18:59:55.010000"],["2024-07-24T18:59:56.010000"],["2024-07-24T18:59:57.010000"],["2024-07-24T18:59:58.010000"],["2024-07-24T18:59:59.010000"],["2024-07-24T19:00:00.010000"],["2024-07-24T19:00:01.010000"],["2024-07-24T19:00:02.010000"],["2024-07-24T19:00:03.010000"],["2024-07-24T19:00:04.010000"],["2024-07-24T19:00:05.010000"],["2024-07-24T19:00:06.010000"],["2024-07-24T19:00:07.010000"],["2024-07-24T19:00:08.010000"],["2024-07-24T19:00:09.010000"],["2024-07-24T19:00:10.010000"],["2024-07-24T19:00:11.010000"],["2024-07-24T19:00:12.010000"],["2024-07-24T19:00:13.010000"],["2024-07-24T19:00:14.010000"],["2024-07-24T19:00:15.010000"],["2024-07-24T19:00:16.010000"],["2024-07-24T19:00:17.010000"],["2024-07-24T19:00:18.010000"],["2024-07-24T19:00:19.010000"],["2024-07-24T19:00:20.010000"],["2024-07-24T19:00:21.010000"],["2024-07-24T19:00:22.010000"],["2024-07-24T19:00:23.010000"],["2024-07-24T19:00:24.010000"],["2024-07-24T19:00:25.010000"],["2024-07-24T19:00:26.010000"],["2024-07-24T19:00:27.010000"],["2024-07-24T19:00:28.010000"],["2024-07-24T19:00:29.010000"],["2024-07-24T19:00:30.010000"],["2024-07-24T19:00:31.010000"],["2024-07-24T19:00:32.010000"],["2024-07-24T19:00:33.010000"],["2024-07-24T19:00:34.010000"],["2024-07-24T19:00:35.010000"],["2024-07-24T19:00:36.010000"],["2024-07-24T19:00:37.010000"],["2024-07-24T19:00:38.010000"],["2024-07-24T19:00:39.010000"],["2024-07-24T19:00:40.010000"],["2024-07-24T19:00:41.010000"],["2024-07-24T19:00:42.010000"],["2024-07-24T19:00:43.010000"],["2024-07-24T19:00:44.010000"],["2024-07-24T19:00:45.010000"],["2024-07-24T19:00:46.010000"],["2024-07-24T19:00:47.010000"],["2024-07-24T19:00:48.010000"],["2024-07-24T19:00:49.010000"],["2024-07-24T19:00:50.010000"],["2024-07-24T19:00:51.010000"],["2024-07-24T19:00:52.010000"],["2024-07-24T19:00:53.010000"],["2024-07-24T19:00:54.010000"],["2024-07-24T19:00:55.010000"],["2024-07-24T19:00:56.010000"],["2024-07-24T19:00:57.010000"],["2024-07-24T19:00:58.010000"],["2024-07-24T19:00:59.010000"],["2024-07-24T19:01:00.010000"],["2024-07-24T19:01:01.010000"],["2024-07-24T19:01:02.010000"],["2024-07-24T19:01:03.010000"],["2024-07-24T19:01:04.010000"],["2024-07-24T19:01:05.010000"],["2024-07-24T19:01:06.010000"],["2024-07-24T19:01:07.010000"],["2024-07-24T19:01:08.010000"],["2024-07-24T19:01:09.010000"],["2024-07-24T19:01:10.010000"],["2024-07-24T19:01:11.010000"],["2024-07-24T19:01:12.010000"],["2024-07-24T19:01:13.010000"],["2024-07-24T19:01:14.010000"],["2024-07-24T19:01:15.010000"],["2024-07-24T19:01:16.010000"],["2024-07-24T19:01:17.010000"],["2024-07-24T19:01:18.010000"],["2024-07-24T19:01:19.010000"],["2024-07-24T19:01:20.010000"],["2024-07-24T19:01:21.010000"],["2024-07-24T19:01:22.010000"],["2024-07-24T19:01:23.010000"],["2024-07-24T19:01:24.010000"],["2024-07-24T19:01:25.010000"],["2024-07-24T19:01:26.010000"],["2024-07-24T19:01:27.010000"],["2024-07-24T19:01:28.010000"],["2024-07-24T19:01:29.010000"],["2024-07-24T19:01:30.010000"],["2024-07-24T19:01:31.010000"],["2024-07-24T19:01:32.010000"],["2024-07-24T19:01:33.010000"],["2024-07-24T19:01:34.010000"],["2024-07-24T19:01:35.010000"],["2024-07-24T19:01:36.010000"],["2024-07-24T19:01:37.010000"],["2024-07-24T19:01:38.010000"],["2024-07-24T19:01:39.010000"],["2024-07-24T19:01:40.010000"],["2024-07-24T19:01:41.010000"],["2024-07-24T19:01:42.010000"],["2024-07-24T19:01:43.010000"],["2024-07-24T19:01:44.010000"],["2024-07-24T19:01:45.010000"],["2024-07-24T19:01:46.010000"],["2024-07-24T19:01:47.010000"],["2024-07-24T19:01:48.010000"],["2024-07-24T19:01:49.010000"],["2024-07-24T19:01:50.010000"],["2024-07-24T19:01:51.010000"],["2024-07-24T19:01:52.010000"],["2024-07-24T19:01:53.010000"],["2024-07-24T19:01:54.010000"],["2024-07-24T19:01:55.010000"],["2024-07-24T19:01:56.010000"],["2024-07-24T19:01:57.010000"],["2024-07-24T19:01:58.010000"],["2024-07-24T19:01:59.010000"],["2024-07-24T19:02:00.010000"],["2024-07-24T19:02:01.010000"],["2024-07-24T19:02:02.010000"],["2024-07-24T19:02:03.010000"],["2024-07-24T19:02:04.010000"],["2024-07-24T19:02:05.010000"],["2024-07-24T19:02:06.010000"],["2024-07-24T19:02:07.010000"],["2024-07-24T19:02:08.010000"],["2024-07-24T19:02:09.010000"],["2024-07-24T19:02:10.010000"],["2024-07-24T19:02:11.010000"],["2024-07-24T19:02:12.010000"],["2024-07-24T19:02:13.010000"],["2024-07-24T19:02:14.010000"],["2024-07-24T19:02:15.010000"],["2024-07-24T19:02:16.010000"],["2024-07-24T19:02:17.010000"],["2024-07-24T19:02:18.010000"],["2024-07-24T19:02:19.010000"],["2024-07-24T19:02:20.010000"],["2024-07-24T19:02:21.010000"],["2024-07-24T19:02:22.010000"],["2024-07-24T19:02:23.010000"],["2024-07-24T19:02:24.010000"],["2024-07-24T19:02:25.010000"],["2024-07-24T19:02:26.010000"],["2024-07-24T19:02:27.010000"],["2024-07-24T19:02:28.010000"],["2024-07-24T19:02:29.010000"],["2024-07-24T19:02:30.010000"],["2024-07-24T19:02:31.010000"],["2024-07-24T19:02:32.010000"],["2024-07-24T19:02:33.010000"],["2024-07-24T19:02:34.010000"],["2024-07-24T19:02:35.010000"],["2024-07-24T19:02:36.010000"],["2024-07-24T19:02:37.010000"],["2024-07-24T19:02:38.010000"],["2024-07-24T19:02:39.010000"],["2024-07-24T19:02:40.010000"],["2024-07-24T19:02:41.010000"],["2024-07-24T19:02:42.010000"],["2024-07-24T19:02:43.010000"],["2024-07-24T19:02:44.010000"],["2024-07-24T19:02:45.010000"],["2024-07-24T19:02:46.010000"],["2024-07-24T19:02:47.010000"],["2024-07-24T19:02:48.010000"],["2024-07-24T19:02:49.010000"],["2024-07-24T19:02:50.010000"],["2024-07-24T19:02:51.010000"],["2024-07-24T19:02:52.010000"],["2024-07-24T19:02:53.010000"],["2024-07-24T19:02:54.010000"],["2024-07-24T19:02:55.010000"],["2024-07-24T19:02:56.010000"],["2024-07-24T19:02:57.010000"],["2024-07-24T19:02:58.010000"],["2024-07-24T19:02:59.010000"],["2024-07-24T19:03:00.010000"],["2024-07-24T19:03:01.010000"],["2024-07-24T19:03:02.010000"],["2024-07-24T19:03:03.010000"],["2024-07-24T19:03:04.010000"],["2024-07-24T19:03:05.010000"],["2024-07-24T19:03:06.010000"],["2024-07-24T19:03:07.010000"],["2024-07-24T19:03:08.010000"],["2024-07-24T19:03:09.010000"],["2024-07-24T19:03:10.010000"],["2024-07-24T19:03:11.010000"],["2024-07-24T19:03:12.010000"],["2024-07-24T19:03:13.010000"],["2024-07-24T19:03:14.010000"],["2024-07-24T19:03:15.010000"],["2024-07-24T19:03:16.010000"],["2024-07-24T19:03:17.010000"],["2024-07-24T19:03:18.010000"],["2024-07-24T19:03:19.010000"],["2024-07-24T19:03:20.010000"],["2024-07-24T19:03:21.010000"],["2024-07-24T19:03:22.010000"],["2024-07-24T19:03:23.010000"],["2024-07-24T19:03:24.010000"],["2024-07-24T19:03:25.010000"],["2024-07-24T19:03:26.010000"],["2024-07-24T19:03:27.010000"],["2024-07-24T19:03:28.010000"],["2024-07-24T19:03:29.010000"],["2024-07-24T19:03:30.010000"],["2024-07-24T19:03:31.010000"],["2024-07-24T19:03:32.010000"],["2024-07-24T19:03:33.010000"],["2024-07-24T19:03:34.010000"],["2024-07-24T19:03:35.010000"],["2024-07-24T19:03:36.010000"],["2024-07-24T19:03:37.010000"],["2024-07-24T19:03:38.010000"],["2024-07-24T19:03:39.010000"],["2024-07-24T19:03:40.010000"],["2024-07-24T19:03:41.010000"],["2024-07-24T19:03:42.010000"],["2024-07-24T19:03:43.010000"],["2024-07-24T19:03:44.010000"],["2024-07-24T19:03:45.010000"],["2024-07-24T19:03:46.010000"],["2024-07-24T19:03:47.010000"],["2024-07-24T19:03:48.010000"],["2024-07-24T19:03:49.010000"],["2024-07-24T19:03:50.010000"],["2024-07-24T19:03:51.010000"],["2024-07-24T19:03:52.010000"],["2024-07-24T19:03:53.010000"],["2024-07-24T19:03:54.010000"],["2024-07-24T19:03:55.010000"],["2024-07-24T19:03:56.010000"],["2024-07-24T19:03:57.010000"],["2024-07-24T19:03:58.010000"],["2024-07-24T19:03:59.010000"],["2024-07-24T19:04:00.010000"],["2024-07-24T19:04:01.010000"],["2024-07-24T19:04:02.010000"],["2024-07-24T19:04:03.010000"],["2024-07-24T19:04:04.010000"],["2024-07-24T19:04:05.010000"],["2024-07-24T19:04:06.010000"],["2024-07-24T19:04:07.010000"],["2024-07-24T19:04:08.010000"],["2024-07-24T19:04:09.010000"],["2024-07-24T19:04:10.010000"],["2024-07-24T19:04:11.010000"],["2024-07-24T19:04:12.010000"],["2024-07-24T19:04:13.010000"],["2024-07-24T19:04:14.010000"],["2024-07-24T19:04:15.010000"],["2024-07-24T19:04:16.010000"],["2024-07-24T19:04:17.010000"],["2024-07-24T19:04:18.010000"],["2024-07-24T19:04:19.010000"],["2024-07-24T19:04:20.010000"],["2024-07-24T19:04:21.010000"],["2024-07-24T19:04:22.010000"],["2024-07-24T19:04:23.010000"],["2024-07-24T19:04:24.010000"],["2024-07-24T19:04:25.010000"],["2024-07-24T19:04:26.010000"],["2024-07-24T19:04:27.010000"],["2024-07-24T19:04:28.010000"],["2024-07-24T19:04:29.010000"],["2024-07-24T19:04:30.010000"],["2024-07-24T19:04:31.010000"],["2024-07-24T19:04:32.010000"],["2024-07-24T19:04:33.010000"],["2024-07-24T19:04:34.010000"],["2024-07-24T19:04:35.010000"],["2024-07-24T19:04:36.010000"],["2024-07-24T19:04:37.010000"],["2024-07-24T19:04:38.010000"],["2024-07-24T19:04:39.010000"],["2024-07-24T19:04:40.010000"],["2024-07-24T19:04:41.010000"],["2024-07-24T19:04:42.010000"],["2024-07-24T19:04:43.010000"],["2024-07-24T19:04:44.010000"],["2024-07-24T19:04:45.010000"],["2024-07-24T19:04:46.010000"],["2024-07-24T19:04:47.010000"],["2024-07-24T19:04:48.010000"],["2024-07-24T19:04:49.010000"],["2024-07-24T19:04:50.010000"],["2024-07-24T19:04:51.010000"],["2024-07-24T19:04:52.010000"],["2024-07-24T19:04:53.010000"],["2024-07-24T19:04:54.010000"],["2024-07-24T19:04:55.010000"],["2024-07-24T19:04:56.010000"],["2024-07-24T19:04:57.010000"],["2024-07-24T19:04:58.010000"],["2024-07-24T19:04:59.010000"],["2024-07-24T19:05:00.010000"],["2024-07-24T19:05:01.010000"],["2024-07-24T19:05:02.010000"],["2024-07-24T19:05:03.010000"],["2024-07-24T19:05:04.010000"],["2024-07-24T19:05:05.010000"],["2024-07-24T19:05:06.010000"],["2024-07-24T19:05:07.010000"],["2024-07-24T19:05:08.010000"],["2024-07-24T19:05:09.010000"],["2024-07-24T19:05:10.010000"],["2024-07-24T19:05:11.010000"],["2024-07-24T19:05:12.010000"],["2024-07-24T19:05:13.010000"],["2024-07-24T19:05:14.010000"],["2024-07-24T19:05:15.010000"],["2024-07-24T19:05:16.010000"],["2024-07-24T19:05:17.010000"],["2024-07-24T19:05:18.010000"],["2024-07-24T19:05:19.010000"],["2024-07-24T19:05:20.010000"],["2024-07-24T19:05:21.010000"],["2024-07-24T19:05:22.010000"],["2024-07-24T19:05:23.010000"],["2024-07-24T19:05:24.010000"],["2024-07-24T19:05:25.010000"],["2024-07-24T19:05:26.010000"],["2024-07-24T19:05:27.010000"],["2024-07-24T19:05:28.010000"],["2024-07-24T19:05:29.010000"],["2024-07-24T19:05:30.010000"],["2024-07-24T19:05:31.010000"],["2024-07-24T19:05:32.010000"],["2024-07-24T19:05:33.010000"],["2024-07-24T19:05:34.010000"],["2024-07-24T19:05:35.010000"],["2024-07-24T19:05:36.010000"],["2024-07-24T19:05:37.010000"],["2024-07-24T19:05:38.010000"],["2024-07-24T19:05:39.010000"],["2024-07-24T19:05:40.010000"],["2024-07-24T19:05:41.010000"],["2024-07-24T19:05:42.010000"],["2024-07-24T19:05:43.010000"],["2024-07-24T19:05:44.010000"],["2024-07-24T19:05:45.010000"],["2024-07-24T19:05:46.010000"],["2024-07-24T19:05:47.010000"],["2024-07-24T19:05:48.010000"],["2024-07-24T19:05:49.010000"],["2024-07-24T19:05:50.010000"],["2024-07-24T19:05:51.010000"],["2024-07-24T19:05:52.010000"],["2024-07-24T19:05:53.010000"],["2024-07-24T19:05:54.010000"],["2024-07-24T19:05:55.010000"],["2024-07-24T19:05:56.010000"],["2024-07-24T19:05:57.010000"],["2024-07-24T19:05:58.010000"],["2024-07-24T19:05:59.010000"],["2024-07-24T19:06:00.010000"],["2024-07-24T19:06:01.010000"],["2024-07-24T19:06:02.010000"],["2024-07-24T19:06:03.010000"],["2024-07-24T19:06:04.010000"],["2024-07-24T19:06:05.010000"],["2024-07-24T19:06:06.010000"],["2024-07-24T19:06:07.010000"],["2024-07-24T19:06:08.010000"],["2024-07-24T19:06:09.010000"],["2024-07-24T19:06:10.010000"],["2024-07-24T19:06:11.010000"],["2024-07-24T19:06:12.010000"],["2024-07-24T19:06:13.010000"],["2024-07-24T19:06:14.010000"],["2024-07-24T19:06:15.010000"],["2024-07-24T19:06:16.010000"],["2024-07-24T19:06:17.010000"],["2024-07-24T19:06:18.010000"],["2024-07-24T19:06:19.010000"],["2024-07-24T19:06:20.010000"],["2024-07-24T19:06:21.010000"],["2024-07-24T19:06:22.010000"],["2024-07-24T19:06:23.010000"],["2024-07-24T19:06:24.010000"],["2024-07-24T19:06:25.010000"],["2024-07-24T19:06:26.010000"],["2024-07-24T19:06:27.010000"],["2024-07-24T19:06:28.010000"],["2024-07-24T19:06:29.010000"],["2024-07-24T19:06:30.010000"],["2024-07-24T19:06:31.010000"],["2024-07-24T19:06:32.010000"],["2024-07-24T19:06:33.010000"],["2024-07-24T19:06:34.010000"],["2024-07-24T19:06:35.010000"],["2024-07-24T19:06:36.010000"],["2024-07-24T19:06:37.010000"],["2024-07-24T19:06:38.010000"],["2024-07-24T19:06:39.010000"],["2024-07-24T19:06:40.010000"],["2024-07-24T19:06:41.010000"],["2024-07-24T19:06:42.010000"],["2024-07-24T19:06:43.010000"],["2024-07-24T19:06:44.010000"],["2024-07-24T19:06:45.010000"],["2024-07-24T19:06:46.010000"],["2024-07-24T19:06:47.010000"],["2024-07-24T19:06:48.010000"],["2024-07-24T19:06:49.010000"],["2024-07-24T19:06:50.010000"],["2024-07-24T19:06:51.010000"],["2024-07-24T19:06:52.010000"],["2024-07-24T19:06:53.010000"],["2024-07-24T19:06:54.010000"],["2024-07-24T19:06:55.010000"],["2024-07-24T19:06:56.010000"],["2024-07-24T19:06:57.010000"],["2024-07-24T19:06:58.010000"],["2024-07-24T19:06:59.010000"],["2024-07-24T19:07:00.010000"],["2024-07-24T19:07:01.010000"],["2024-07-24T19:07:02.010000"],["2024-07-24T19:07:03.010000"],["2024-07-24T19:07:04.010000"],["2024-07-24T19:07:05.010000"],["2024-07-24T19:07:06.010000"],["2024-07-24T19:07:07.010000"],["2024-07-24T19:07:08.010000"],["2024-07-24T19:07:09.010000"],["2024-07-24T19:07:10.010000"],["2024-07-24T19:07:11.010000"],["2024-07-24T19:07:12.010000"],["2024-07-24T19:07:13.010000"],["2024-07-24T19:07:14.010000"],["2024-07-24T19:07:15.010000"],["2024-07-24T19:07:16.010000"],["2024-07-24T19:07:17.010000"],["2024-07-24T19:07:18.010000"],["2024-07-24T19:07:19.010000"],["2024-07-24T19:07:20.010000"],["2024-07-24T19:07:21.010000"],["2024-07-24T19:07:22.010000"],["2024-07-24T19:07:23.010000"],["2024-07-24T19:07:24.010000"],["2024-07-24T19:07:25.010000"],["2024-07-24T19:07:26.010000"],["2024-07-24T19:07:27.010000"],["2024-07-24T19:07:28.010000"],["2024-07-24T19:07:29.010000"],["2024-07-24T19:07:30.010000"],["2024-07-24T19:07:31.010000"],["2024-07-24T19:07:32.010000"],["2024-07-24T19:07:33.010000"],["2024-07-24T19:07:34.010000"],["2024-07-24T19:07:35.010000"],["2024-07-24T19:07:36.010000"],["2024-07-24T19:07:37.010000"],["2024-07-24T19:07:38.010000"],["2024-07-24T19:07:39.010000"],["2024-07-24T19:07:40.010000"],["2024-07-24T19:07:41.010000"],["2024-07-24T19:07:42.010000"],["2024-07-24T19:07:43.010000"],["2024-07-24T19:07:44.010000"],["2024-07-24T19:07:45.010000"],["2024-07-24T19:07:46.010000"],["2024-07-24T19:07:47.010000"],["2024-07-24T19:07:48.010000"],["2024-07-24T19:07:49.010000"],["2024-07-24T19:07:50.010000"],["2024-07-24T19:07:51.010000"],["2024-07-24T19:07:52.010000"],["2024-07-24T19:07:53.010000"],["2024-07-24T19:07:54.010000"],["2024-07-24T19:07:55.010000"],["2024-07-24T19:07:56.010000"],["2024-07-24T19:07:57.010000"],["2024-07-24T19:07:58.010000"],["2024-07-24T19:07:59.010000"],["2024-07-24T19:08:00.010000"],["2024-07-24T19:08:01.010000"],["2024-07-24T19:08:02.010000"],["2024-07-24T19:08:03.010000"],["2024-07-24T19:08:04.010000"],["2024-07-24T19:08:05.010000"],["2024-07-24T19:08:06.010000"],["2024-07-24T19:08:07.010000"],["2024-07-24T19:08:08.010000"],["2024-07-24T19:08:09.010000"],["2024-07-24T19:08:10.010000"],["2024-07-24T19:08:11.010000"],["2024-07-24T19:08:12.010000"],["2024-07-24T19:08:13.010000"],["2024-07-24T19:08:14.010000"],["2024-07-24T19:08:15.010000"],["2024-07-24T19:08:16.010000"],["2024-07-24T19:08:17.010000"],["2024-07-24T19:08:18.010000"],["2024-07-24T19:08:19.010000"],["2024-07-24T19:08:20.010000"],["2024-07-24T19:08:21.010000"],["2024-07-24T19:08:22.010000"],["2024-07-24T19:08:23.010000"],["2024-07-24T19:08:24.010000"],["2024-07-24T19:08:25.010000"],["2024-07-24T19:08:26.010000"],["2024-07-24T19:08:27.010000"],["2024-07-24T19:08:28.010000"],["2024-07-24T19:08:29.010000"],["2024-07-24T19:08:30.010000"],["2024-07-24T19:08:31.010000"],["2024-07-24T19:08:32.010000"],["2024-07-24T19:08:33.010000"],["2024-07-24T19:08:34.010000"],["2024-07-24T19:08:35.010000"],["2024-07-24T19:08:36.010000"],["2024-07-24T19:08:37.010000"],["2024-07-24T19:08:38.010000"],["2024-07-24T19:08:39.010000"],["2024-07-24T19:08:40.010000"],["2024-07-24T19:08:41.010000"],["2024-07-24T19:08:42.010000"],["2024-07-24T19:08:43.010000"],["2024-07-24T19:08:44.010000"],["2024-07-24T19:08:45.010000"],["2024-07-24T19:08:46.010000"],["2024-07-24T19:08:47.010000"],["2024-07-24T19:08:48.010000"],["2024-07-24T19:08:49.010000"],["2024-07-24T19:08:50.010000"],["2024-07-24T19:08:51.010000"],["2024-07-24T19:08:52.010000"],["2024-07-24T19:08:53.010000"],["2024-07-24T19:08:54.010000"],["2024-07-24T19:08:55.010000"],["2024-07-24T19:08:56.010000"],["2024-07-24T19:08:57.010000"],["2024-07-24T19:08:58.010000"],["2024-07-24T19:08:59.010000"],["2024-07-24T19:09:00.010000"],["2024-07-24T19:09:01.010000"],["2024-07-24T19:09:02.010000"],["2024-07-24T19:09:03.010000"],["2024-07-24T19:09:04.010000"],["2024-07-24T19:09:05.010000"],["2024-07-24T19:09:06.010000"],["2024-07-24T19:09:07.010000"],["2024-07-24T19:09:08.010000"],["2024-07-24T19:09:09.010000"],["2024-07-24T19:09:10.010000"],["2024-07-24T19:09:11.010000"],["2024-07-24T19:09:12.010000"],["2024-07-24T19:09:13.010000"],["2024-07-24T19:09:14.010000"],["2024-07-24T19:09:15.010000"],["2024-07-24T19:09:16.010000"],["2024-07-24T19:09:17.010000"],["2024-07-24T19:09:18.010000"],["2024-07-24T19:09:19.010000"],["2024-07-24T19:09:20.010000"],["2024-07-24T19:09:21.010000"],["2024-07-24T19:09:22.010000"],["2024-07-24T19:09:23.010000"],["2024-07-24T19:09:24.010000"],["2024-07-24T19:09:25.010000"],["2024-07-24T19:09:26.010000"],["2024-07-24T19:09:27.010000"],["2024-07-24T19:09:28.010000"],["2024-07-24T19:09:29.010000"],["2024-07-24T19:09:30.010000"],["2024-07-24T19:09:31.010000"],["2024-07-24T19:09:32.010000"],["2024-07-24T19:09:33.010000"],["2024-07-24T19:09:34.010000"],["2024-07-24T19:09:35.010000"],["2024-07-24T19:09:36.010000"],["2024-07-24T19:09:37.010000"],["2024-07-24T19:09:38.010000"],["2024-07-24T19:09:39.010000"],["2024-07-24T19:09:40.010000"],["2024-07-24T19:09:41.010000"],["2024-07-24T19:09:42.010000"],["2024-07-24T19:09:43.010000"],["2024-07-24T19:09:44.010000"],["2024-07-24T19:09:45.010000"],["2024-07-24T19:09:46.010000"],["2024-07-24T19:09:47.010000"],["2024-07-24T19:09:48.010000"],["2024-07-24T19:09:49.010000"],["2024-07-24T19:09:50.010000"],["2024-07-24T19:09:51.010000"],["2024-07-24T19:09:52.010000"],["2024-07-24T19:09:53.010000"],["2024-07-24T19:09:54.010000"],["2024-07-24T19:09:55.010000"],["2024-07-24T19:09:56.010000"],["2024-07-24T19:09:57.010000"],["2024-07-24T19:09:58.010000"],["2024-07-24T19:09:59.010000"],["2024-07-24T19:10:00.010000"],["2024-07-24T19:10:01.010000"],["2024-07-24T19:10:02.010000"],["2024-07-24T19:10:03.010000"],["2024-07-24T19:10:04.010000"],["2024-07-24T19:10:05.010000"],["2024-07-24T19:10:06.010000"],["2024-07-24T19:10:07.010000"],["2024-07-24T19:10:08.010000"],["2024-07-24T19:10:09.010000"],["2024-07-24T19:10:10.010000"],["2024-07-24T19:10:11.010000"],["2024-07-24T19:10:12.010000"],["2024-07-24T19:10:13.010000"],["2024-07-24T19:10:14.010000"],["2024-07-24T19:10:15.010000"],["2024-07-24T19:10:16.010000"],["2024-07-24T19:10:17.010000"],["2024-07-24T19:10:18.010000"],["2024-07-24T19:10:19.010000"],["2024-07-24T19:10:20.010000"],["2024-07-24T19:10:21.010000"],["2024-07-24T19:10:22.010000"],["2024-07-24T19:10:23.010000"],["2024-07-24T19:10:24.010000"],["2024-07-24T19:10:25.010000"],["2024-07-24T19:10:26.010000"],["2024-07-24T19:10:27.010000"],["2024-07-24T19:10:28.010000"],["2024-07-24T19:10:29.010000"],["2024-07-24T19:10:30.010000"],["2024-07-24T19:10:31.010000"],["2024-07-24T19:10:32.010000"],["2024-07-24T19:10:33.010000"],["2024-07-24T19:10:34.010000"],["2024-07-24T19:10:35.010000"],["2024-07-24T19:10:36.010000"],["2024-07-24T19:10:37.010000"],["2024-07-24T19:10:38.010000"],["2024-07-24T19:10:39.010000"],["2024-07-24T19:10:40.010000"],["2024-07-24T19:10:41.010000"],["2024-07-24T19:10:42.010000"],["2024-07-24T19:10:43.010000"],["2024-07-24T19:10:44.010000"],["2024-07-24T19:10:45.010000"],["2024-07-24T19:10:46.010000"],["2024-07-24T19:10:47.010000"],["2024-07-24T19:10:48.010000"],["2024-07-24T19:10:49.010000"],["2024-07-24T19:10:50.010000"],["2024-07-24T19:10:51.010000"],["2024-07-24T19:10:52.010000"],["2024-07-24T19:10:53.010000"],["2024-07-24T19:10:54.010000"],["2024-07-24T19:10:55.010000"],["2024-07-24T19:10:56.010000"],["2024-07-24T19:10:57.010000"],["2024-07-24T19:10:58.010000"],["2024-07-24T19:10:59.010000"],["2024-07-24T19:11:00.010000"],["2024-07-24T19:11:01.010000"],["2024-07-24T19:11:02.010000"],["2024-07-24T19:11:03.010000"],["2024-07-24T19:11:04.010000"],["2024-07-24T19:11:05.010000"],["2024-07-24T19:11:06.010000"],["2024-07-24T19:11:07.010000"],["2024-07-24T19:11:08.010000"],["2024-07-24T19:11:09.010000"],["2024-07-24T19:11:10.010000"],["2024-07-24T19:11:11.010000"],["2024-07-24T19:11:12.010000"],["2024-07-24T19:11:13.010000"],["2024-07-24T19:11:14.010000"],["2024-07-24T19:11:15.010000"],["2024-07-24T19:11:16.010000"],["2024-07-24T19:11:17.010000"],["2024-07-24T19:11:18.010000"],["2024-07-24T19:11:19.010000"],["2024-07-24T19:11:20.010000"],["2024-07-24T19:11:21.010000"],["2024-07-24T19:11:22.010000"],["2024-07-24T19:11:23.010000"],["2024-07-24T19:11:24.010000"],["2024-07-24T19:11:25.010000"],["2024-07-24T19:11:26.010000"],["2024-07-24T19:11:27.010000"],["2024-07-24T19:11:28.010000"],["2024-07-24T19:11:29.010000"],["2024-07-24T19:11:30.010000"],["2024-07-24T19:11:31.010000"],["2024-07-24T19:11:32.010000"],["2024-07-24T19:11:33.010000"],["2024-07-24T19:11:34.010000"],["2024-07-24T19:11:35.010000"],["2024-07-24T19:11:36.010000"],["2024-07-24T19:11:37.010000"],["2024-07-24T19:11:38.010000"],["2024-07-24T19:11:39.010000"],["2024-07-24T19:11:40.010000"],["2024-07-24T19:11:41.010000"],["2024-07-24T19:11:42.010000"],["2024-07-24T19:11:43.010000"],["2024-07-24T19:11:44.010000"],["2024-07-24T19:11:45.010000"],["2024-07-24T19:11:46.010000"],["2024-07-24T19:11:47.010000"],["2024-07-24T19:11:48.010000"],["2024-07-24T19:11:49.010000"],["2024-07-24T19:11:50.010000"],["2024-07-24T19:11:51.010000"],["2024-07-24T19:11:52.010000"],["2024-07-24T19:11:53.010000"],["2024-07-24T19:11:54.010000"],["2024-07-24T19:11:55.010000"],["2024-07-24T19:11:56.010000"],["2024-07-24T19:11:57.010000"],["2024-07-24T19:11:58.010000"],["2024-07-24T19:11:59.010000"],["2024-07-24T19:12:00.010000"],["2024-07-24T19:12:01.010000"],["2024-07-24T19:12:02.010000"],["2024-07-24T19:12:03.010000"],["2024-07-24T19:12:04.010000"],["2024-07-24T19:12:05.010000"],["2024-07-24T19:12:06.010000"],["2024-07-24T19:12:07.010000"],["2024-07-24T19:12:08.010000"],["2024-07-24T19:12:09.010000"],["2024-07-24T19:12:10.010000"],["2024-07-24T19:12:11.010000"],["2024-07-24T19:12:12.010000"],["2024-07-24T19:12:13.010000"],["2024-07-24T19:12:14.010000"],["2024-07-24T19:12:15.010000"],["2024-07-24T19:12:16.010000"],["2024-07-24T19:12:17.010000"],["2024-07-24T19:12:18.010000"],["2024-07-24T19:12:19.010000"],["2024-07-24T19:12:20.010000"],["2024-07-24T19:12:21.010000"],["2024-07-24T19:12:22.010000"],["2024-07-24T19:12:23.010000"],["2024-07-24T19:12:24.010000"],["2024-07-24T19:12:25.010000"],["2024-07-24T19:12:26.010000"],["2024-07-24T19:12:27.010000"],["2024-07-24T19:12:28.010000"],["2024-07-24T19:12:29.010000"],["2024-07-24T19:12:30.010000"],["2024-07-24T19:12:31.010000"],["2024-07-24T19:12:32.010000"],["2024-07-24T19:12:33.010000"],["2024-07-24T19:12:34.010000"],["2024-07-24T19:12:35.010000"],["2024-07-24T19:12:36.010000"],["2024-07-24T19:12:37.010000"],["2024-07-24T19:12:38.010000"],["2024-07-24T19:12:39.010000"],["2024-07-24T19:12:40.010000"],["2024-07-24T19:12:41.010000"],["2024-07-24T19:12:42.010000"],["2024-07-24T19:12:43.010000"],["2024-07-24T19:12:44.010000"],["2024-07-24T19:12:45.010000"],["2024-07-24T19:12:46.010000"],["2024-07-24T19:12:47.010000"],["2024-07-24T19:12:48.010000"],["2024-07-24T19:12:49.010000"],["2024-07-24T19:12:50.010000"],["2024-07-24T19:12:51.010000"],["2024-07-24T19:12:52.010000"],["2024-07-24T19:12:53.010000"],["2024-07-24T19:12:54.010000"],["2024-07-24T19:12:55.010000"],["2024-07-24T19:12:56.010000"],["2024-07-24T19:12:57.010000"],["2024-07-24T19:12:58.010000"],["2024-07-24T19:12:59.010000"],["2024-07-24T19:13:00.010000"],["2024-07-24T19:13:01.010000"],["2024-07-24T19:13:02.010000"],["2024-07-24T19:13:03.010000"],["2024-07-24T19:13:04.010000"],["2024-07-24T19:13:05.010000"],["2024-07-24T19:13:06.010000"],["2024-07-24T19:13:07.010000"],["2024-07-24T19:13:08.010000"],["2024-07-24T19:13:09.010000"],["2024-07-24T19:13:10.010000"],["2024-07-24T19:13:11.010000"],["2024-07-24T19:13:12.010000"],["2024-07-24T19:13:13.010000"],["2024-07-24T19:13:14.010000"],["2024-07-24T19:13:15.010000"],["2024-07-24T19:13:16.010000"],["2024-07-24T19:13:17.010000"],["2024-07-24T19:13:18.010000"],["2024-07-24T19:13:19.010000"],["2024-07-24T19:13:20.010000"],["2024-07-24T19:13:21.010000"],["2024-07-24T19:13:22.010000"],["2024-07-24T19:13:23.010000"],["2024-07-24T19:13:24.010000"],["2024-07-24T19:13:25.010000"],["2024-07-24T19:13:26.010000"],["2024-07-24T19:13:27.010000"],["2024-07-24T19:13:28.010000"],["2024-07-24T19:13:29.010000"],["2024-07-24T19:13:30.010000"],["2024-07-24T19:13:31.010000"],["2024-07-24T19:13:32.010000"],["2024-07-24T19:13:33.010000"],["2024-07-24T19:13:34.010000"],["2024-07-24T19:13:35.010000"],["2024-07-24T19:13:36.010000"],["2024-07-24T19:13:37.010000"],["2024-07-24T19:13:38.010000"],["2024-07-24T19:13:39.010000"],["2024-07-24T19:13:40.010000"],["2024-07-24T19:13:41.010000"],["2024-07-24T19:13:42.010000"],["2024-07-24T19:13:43.010000"],["2024-07-24T19:13:44.010000"],["2024-07-24T19:13:45.010000"],["2024-07-24T19:13:46.010000"],["2024-07-24T19:13:47.010000"],["2024-07-24T19:13:48.010000"],["2024-07-24T19:13:49.010000"],["2024-07-24T19:13:50.010000"],["2024-07-24T19:13:51.010000"],["2024-07-24T19:13:52.010000"],["2024-07-24T19:13:53.010000"],["2024-07-24T19:13:54.010000"],["2024-07-24T19:13:55.010000"],["2024-07-24T19:13:56.010000"],["2024-07-24T19:13:57.010000"],["2024-07-24T19:13:58.010000"],["2024-07-24T19:13:59.010000"],["2024-07-24T19:14:00.010000"],["2024-07-24T19:14:01.010000"],["2024-07-24T19:14:02.010000"],["2024-07-24T19:14:03.010000"],["2024-07-24T19:14:04.010000"],["2024-07-24T19:14:05.010000"],["2024-07-24T19:14:06.010000"],["2024-07-24T19:14:07.010000"],["2024-07-24T19:14:08.010000"],["2024-07-24T19:14:09.010000"],["2024-07-24T19:14:10.010000"],["2024-07-24T19:14:11.010000"],["2024-07-24T19:14:12.010000"],["2024-07-24T19:14:13.010000"],["2024-07-24T19:14:14.010000"],["2024-07-24T19:14:15.010000"],["2024-07-24T19:14:16.010000"],["2024-07-24T19:14:17.010000"],["2024-07-24T19:14:18.010000"],["2024-07-24T19:14:19.010000"],["2024-07-24T19:14:20.010000"],["2024-07-24T19:14:21.010000"],["2024-07-24T19:14:22.010000"],["2024-07-24T19:14:23.010000"],["2024-07-24T19:14:24.010000"],["2024-07-24T19:14:25.010000"],["2024-07-24T19:14:26.010000"],["2024-07-24T19:14:27.010000"],["2024-07-24T19:14:28.010000"],["2024-07-24T19:14:29.010000"],["2024-07-24T19:14:30.010000"],["2024-07-24T19:14:31.010000"],["2024-07-24T19:14:32.010000"],["2024-07-24T19:14:33.010000"],["2024-07-24T19:14:34.010000"],["2024-07-24T19:14:35.010000"],["2024-07-24T19:14:36.010000"],["2024-07-24T19:14:37.010000"],["2024-07-24T19:14:38.010000"],["2024-07-24T19:14:39.010000"],["2024-07-24T19:14:40.010000"],["2024-07-24T19:14:41.010000"],["2024-07-24T19:14:42.010000"],["2024-07-24T19:14:43.010000"],["2024-07-24T19:14:44.010000"],["2024-07-24T19:14:45.010000"],["2024-07-24T19:14:46.010000"],["2024-07-24T19:14:47.010000"],["2024-07-24T19:14:48.010000"],["2024-07-24T19:14:49.010000"],["2024-07-24T19:14:50.010000"],["2024-07-24T19:14:51.010000"],["2024-07-24T19:14:52.010000"],["2024-07-24T19:14:53.010000"],["2024-07-24T19:14:54.010000"],["2024-07-24T19:14:55.010000"],["2024-07-24T19:14:56.010000"],["2024-07-24T19:14:57.010000"],["2024-07-24T19:14:58.010000"],["2024-07-24T19:14:59.010000"],["2024-07-24T19:15:00.010000"],["2024-07-24T19:15:01.010000"],["2024-07-24T19:15:02.010000"],["2024-07-24T19:15:03.010000"],["2024-07-24T19:15:04.010000"],["2024-07-24T19:15:05.010000"],["2024-07-24T19:15:06.010000"],["2024-07-24T19:15:07.010000"],["2024-07-24T19:15:08.010000"],["2024-07-24T19:15:09.010000"],["2024-07-24T19:15:10.010000"],["2024-07-24T19:15:11.010000"],["2024-07-24T19:15:12.010000"],["2024-07-24T19:15:13.010000"],["2024-07-24T19:15:14.010000"],["2024-07-24T19:15:15.010000"],["2024-07-24T19:15:16.010000"],["2024-07-24T19:15:17.010000"],["2024-07-24T19:15:18.010000"],["2024-07-24T19:15:19.010000"],["2024-07-24T19:15:20.010000"],["2024-07-24T19:15:21.010000"],["2024-07-24T19:15:22.010000"],["2024-07-24T19:15:23.010000"],["2024-07-24T19:15:24.010000"],["2024-07-24T19:15:25.010000"],["2024-07-24T19:15:26.010000"],["2024-07-24T19:15:27.010000"],["2024-07-24T19:15:28.010000"],["2024-07-24T19:15:29.010000"],["2024-07-24T19:15:30.010000"],["2024-07-24T19:15:31.010000"],["2024-07-24T19:15:32.010000"],["2024-07-24T19:15:33.010000"],["2024-07-24T19:15:34.010000"],["2024-07-24T19:15:35.010000"],["2024-07-24T19:15:36.010000"],["2024-07-24T19:15:37.010000"],["2024-07-24T19:15:38.010000"],["2024-07-24T19:15:39.010000"],["2024-07-24T19:15:40.010000"],["2024-07-24T19:15:41.010000"],["2024-07-24T19:15:42.010000"],["2024-07-24T19:15:43.010000"],["2024-07-24T19:15:44.010000"],["2024-07-24T19:15:45.010000"],["2024-07-24T19:15:46.010000"],["2024-07-24T19:15:47.010000"],["2024-07-24T19:15:48.010000"],["2024-07-24T19:15:49.010000"],["2024-07-24T19:15:50.010000"],["2024-07-24T19:15:51.010000"],["2024-07-24T19:15:52.010000"],["2024-07-24T19:15:53.010000"],["2024-07-24T19:15:54.010000"],["2024-07-24T19:15:55.010000"],["2024-07-24T19:15:56.010000"],["2024-07-24T19:15:57.010000"],["2024-07-24T19:15:58.010000"],["2024-07-24T19:15:59.010000"],["2024-07-24T19:16:00.010000"],["2024-07-24T19:16:01.010000"],["2024-07-24T19:16:02.010000"],["2024-07-24T19:16:03.010000"],["2024-07-24T19:16:04.010000"],["2024-07-24T19:16:05.010000"],["2024-07-24T19:16:06.010000"],["2024-07-24T19:16:07.010000"],["2024-07-24T19:16:08.010000"],["2024-07-24T19:16:09.010000"],["2024-07-24T19:16:10.010000"],["2024-07-24T19:16:11.010000"],["2024-07-24T19:16:12.010000"],["2024-07-24T19:16:13.010000"],["2024-07-24T19:16:14.010000"],["2024-07-24T19:16:15.010000"],["2024-07-24T19:16:16.010000"],["2024-07-24T19:16:17.010000"],["2024-07-24T19:16:18.010000"],["2024-07-24T19:16:19.010000"],["2024-07-24T19:16:20.010000"],["2024-07-24T19:16:21.010000"],["2024-07-24T19:16:22.010000"],["2024-07-24T19:16:23.010000"],["2024-07-24T19:16:24.010000"],["2024-07-24T19:16:25.010000"],["2024-07-24T19:16:26.010000"],["2024-07-24T19:16:27.010000"],["2024-07-24T19:16:28.010000"],["2024-07-24T19:16:29.010000"],["2024-07-24T19:16:30.010000"],["2024-07-24T19:16:31.010000"],["2024-07-24T19:16:32.010000"],["2024-07-24T19:16:33.010000"],["2024-07-24T19:16:34.010000"],["2024-07-24T19:16:35.010000"],["2024-07-24T19:16:36.010000"],["2024-07-24T19:16:37.010000"],["2024-07-24T19:16:38.010000"],["2024-07-24T19:16:39.010000"],["2024-07-24T19:16:40.010000"],["2024-07-24T19:16:41.010000"],["2024-07-24T19:16:42.010000"],["2024-07-24T19:16:43.010000"],["2024-07-24T19:16:44.010000"],["2024-07-24T19:16:45.010000"],["2024-07-24T19:16:46.010000"],["2024-07-24T19:16:47.010000"],["2024-07-24T19:16:48.010000"],["2024-07-24T19:16:49.010000"],["2024-07-24T19:16:50.010000"],["2024-07-24T19:16:51.010000"],["2024-07-24T19:16:52.010000"],["2024-07-24T19:16:53.010000"],["2024-07-24T19:16:54.010000"],["2024-07-24T19:16:55.010000"],["2024-07-24T19:16:56.010000"],["2024-07-24T19:16:57.010000"],["2024-07-24T19:16:58.010000"],["2024-07-24T19:16:59.010000"],["2024-07-24T19:17:00.010000"],["2024-07-24T19:17:01.010000"],["2024-07-24T19:17:02.010000"],["2024-07-24T19:17:03.010000"],["2024-07-24T19:17:04.010000"],["2024-07-24T19:17:05.010000"],["2024-07-24T19:17:06.010000"],["2024-07-24T19:17:07.010000"],["2024-07-24T19:17:08.010000"],["2024-07-24T19:17:09.010000"],["2024-07-24T19:17:10.010000"],["2024-07-24T19:17:11.010000"],["2024-07-24T19:17:12.010000"],["2024-07-24T19:17:13.010000"],["2024-07-24T19:17:14.010000"],["2024-07-24T19:17:15.010000"],["2024-07-24T19:17:16.010000"],["2024-07-24T19:17:17.010000"],["2024-07-24T19:17:18.010000"],["2024-07-24T19:17:19.010000"],["2024-07-24T19:17:20.010000"],["2024-07-24T19:17:21.010000"],["2024-07-24T19:17:22.010000"],["2024-07-24T19:17:23.010000"],["2024-07-24T19:17:24.010000"],["2024-07-24T19:17:25.010000"],["2024-07-24T19:17:26.010000"],["2024-07-24T19:17:27.010000"],["2024-07-24T19:17:28.010000"],["2024-07-24T19:17:29.010000"],["2024-07-24T19:17:30.010000"],["2024-07-24T19:17:31.010000"],["2024-07-24T19:17:32.010000"],["2024-07-24T19:17:33.010000"],["2024-07-24T19:17:34.010000"],["2024-07-24T19:17:35.010000"],["2024-07-24T19:17:36.010000"],["2024-07-24T19:17:37.010000"],["2024-07-24T19:17:38.010000"],["2024-07-24T19:17:39.010000"],["2024-07-24T19:17:40.010000"],["2024-07-24T19:17:41.010000"],["2024-07-24T19:17:42.010000"],["2024-07-24T19:17:43.010000"],["2024-07-24T19:17:44.010000"],["2024-07-24T19:17:45.010000"],["2024-07-24T19:17:46.010000"],["2024-07-24T19:17:47.010000"],["2024-07-24T19:17:48.010000"],["2024-07-24T19:17:49.010000"],["2024-07-24T19:17:50.010000"],["2024-07-24T19:17:51.010000"],["2024-07-24T19:17:52.010000"],["2024-07-24T19:17:53.010000"],["2024-07-24T19:17:54.010000"],["2024-07-24T19:17:55.010000"],["2024-07-24T19:17:56.010000"],["2024-07-24T19:17:57.010000"],["2024-07-24T19:17:58.010000"],["2024-07-24T19:17:59.010000"],["2024-07-24T19:18:00.010000"],["2024-07-24T19:18:01.010000"],["2024-07-24T19:18:02.010000"],["2024-07-24T19:18:03.010000"],["2024-07-24T19:18:04.010000"],["2024-07-24T19:18:05.010000"],["2024-07-24T19:18:06.010000"],["2024-07-24T19:18:07.010000"],["2024-07-24T19:18:08.010000"],["2024-07-24T19:18:09.010000"],["2024-07-24T19:18:10.010000"],["2024-07-24T19:18:11.010000"],["2024-07-24T19:18:12.010000"],["2024-07-24T19:18:13.010000"],["2024-07-24T19:18:14.010000"],["2024-07-24T19:18:15.010000"],["2024-07-24T19:18:16.010000"],["2024-07-24T19:18:17.010000"],["2024-07-24T19:18:18.010000"],["2024-07-24T19:18:19.010000"],["2024-07-24T19:18:20.010000"],["2024-07-24T19:18:21.010000"],["2024-07-24T19:18:22.010000"],["2024-07-24T19:18:23.010000"],["2024-07-24T19:18:24.010000"],["2024-07-24T19:18:25.010000"],["2024-07-24T19:18:26.010000"],["2024-07-24T19:18:27.010000"],["2024-07-24T19:18:28.010000"],["2024-07-24T19:18:29.010000"],["2024-07-24T19:18:30.010000"],["2024-07-24T19:18:31.010000"],["2024-07-24T19:18:32.010000"],["2024-07-24T19:18:33.010000"],["2024-07-24T19:18:34.010000"],["2024-07-24T19:18:35.010000"],["2024-07-24T19:18:36.010000"],["2024-07-24T19:18:37.010000"],["2024-07-24T19:18:38.010000"],["2024-07-24T19:18:39.010000"],["2024-07-24T19:18:40.010000"],["2024-07-24T19:18:41.010000"],["2024-07-24T19:18:42.010000"],["2024-07-24T19:18:43.010000"],["2024-07-24T19:18:44.010000"],["2024-07-24T19:18:45.010000"],["2024-07-24T19:18:46.010000"],["2024-07-24T19:18:47.010000"],["2024-07-24T19:18:48.010000"],["2024-07-24T19:18:49.010000"],["2024-07-24T19:18:50.010000"],["2024-07-24T19:18:51.010000"],["2024-07-24T19:18:52.010000"],["2024-07-24T19:18:53.010000"],["2024-07-24T19:18:54.010000"],["2024-07-24T19:18:55.010000"],["2024-07-24T19:18:56.010000"],["2024-07-24T19:18:57.010000"],["2024-07-24T19:18:58.010000"],["2024-07-24T19:18:59.010000"],["2024-07-24T19:19:00.010000"],["2024-07-24T19:19:01.010000"],["2024-07-24T19:19:02.010000"],["2024-07-24T19:19:03.010000"],["2024-07-24T19:19:04.010000"],["2024-07-24T19:19:05.010000"],["2024-07-24T19:19:06.010000"],["2024-07-24T19:19:07.010000"],["2024-07-24T19:19:08.010000"],["2024-07-24T19:19:09.010000"],["2024-07-24T19:19:10.010000"],["2024-07-24T19:19:11.010000"],["2024-07-24T19:19:12.010000"],["2024-07-24T19:19:13.010000"],["2024-07-24T19:19:14.010000"],["2024-07-24T19:19:15.010000"],["2024-07-24T19:19:16.010000"],["2024-07-24T19:19:17.010000"],["2024-07-24T19:19:18.010000"],["2024-07-24T19:19:19.010000"],["2024-07-24T19:19:20.010000"],["2024-07-24T19:19:21.010000"],["2024-07-24T19:19:22.010000"],["2024-07-24T19:19:23.010000"],["2024-07-24T19:19:24.010000"],["2024-07-24T19:19:25.010000"],["2024-07-24T19:19:26.010000"],["2024-07-24T19:19:27.010000"],["2024-07-24T19:19:28.010000"],["2024-07-24T19:19:29.010000"],["2024-07-24T19:19:30.010000"],["2024-07-24T19:19:31.010000"],["2024-07-24T19:19:32.010000"],["2024-07-24T19:19:33.010000"],["2024-07-24T19:19:34.010000"],["2024-07-24T19:19:35.010000"],["2024-07-24T19:19:36.010000"],["2024-07-24T19:19:37.010000"],["2024-07-24T19:19:38.010000"],["2024-07-24T19:19:39.010000"],["2024-07-24T19:19:40.010000"],["2024-07-24T19:19:41.010000"],["2024-07-24T19:19:42.010000"],["2024-07-24T19:19:43.010000"],["2024-07-24T19:19:44.010000"],["2024-07-24T19:19:45.010000"],["2024-07-24T19:19:46.010000"],["2024-07-24T19:19:47.010000"],["2024-07-24T19:19:48.010000"],["2024-07-24T19:19:49.010000"],["2024-07-24T19:19:50.010000"],["2024-07-24T19:19:51.010000"],["2024-07-24T19:19:52.010000"],["2024-07-24T19:19:53.010000"],["2024-07-24T19:19:54.010000"],["2024-07-24T19:19:55.010000"],["2024-07-24T19:19:56.010000"],["2024-07-24T19:19:57.010000"],["2024-07-24T19:19:58.010000"],["2024-07-24T19:19:59.010000"],["2024-07-24T19:20:00.010000"],["2024-07-24T19:20:01.010000"],["2024-07-24T19:20:02.010000"],["2024-07-24T19:20:03.010000"],["2024-07-24T19:20:04.010000"],["2024-07-24T19:20:05.010000"],["2024-07-24T19:20:06.010000"],["2024-07-24T19:20:07.010000"],["2024-07-24T19:20:08.010000"],["2024-07-24T19:20:09.010000"],["2024-07-24T19:20:10.010000"],["2024-07-24T19:20:11.010000"],["2024-07-24T19:20:12.010000"],["2024-07-24T19:20:13.010000"],["2024-07-24T19:20:14.010000"],["2024-07-24T19:20:15.010000"],["2024-07-24T19:20:16.010000"],["2024-07-24T19:20:17.010000"],["2024-07-24T19:20:18.010000"],["2024-07-24T19:20:19.010000"],["2024-07-24T19:20:20.010000"],["2024-07-24T19:20:21.010000"],["2024-07-24T19:20:22.010000"],["2024-07-24T19:20:23.010000"],["2024-07-24T19:20:24.010000"],["2024-07-24T19:20:25.010000"],["2024-07-24T19:20:26.010000"],["2024-07-24T19:20:27.010000"],["2024-07-24T19:20:28.010000"],["2024-07-24T19:20:29.010000"],["2024-07-24T19:20:30.010000"],["2024-07-24T19:20:31.010000"],["2024-07-24T19:20:32.010000"],["2024-07-24T19:20:33.010000"],["2024-07-24T19:20:34.010000"],["2024-07-24T19:20:35.010000"],["2024-07-24T19:20:36.010000"],["2024-07-24T19:20:37.010000"],["2024-07-24T19:20:38.010000"],["2024-07-24T19:20:39.010000"],["2024-07-24T19:20:40.010000"],["2024-07-24T19:20:41.010000"],["2024-07-24T19:20:42.010000"],["2024-07-24T19:20:43.010000"],["2024-07-24T19:20:44.010000"],["2024-07-24T19:20:45.010000"],["2024-07-24T19:20:46.010000"],["2024-07-24T19:20:47.010000"],["2024-07-24T19:20:48.010000"],["2024-07-24T19:20:49.010000"],["2024-07-24T19:20:50.010000"],["2024-07-24T19:20:51.010000"],["2024-07-24T19:20:52.010000"],["2024-07-24T19:20:53.010000"],["2024-07-24T19:20:54.010000"],["2024-07-24T19:20:55.010000"],["2024-07-24T19:20:56.010000"],["2024-07-24T19:20:57.010000"],["2024-07-24T19:20:58.010000"],["2024-07-24T19:20:59.010000"],["2024-07-24T19:21:00.010000"],["2024-07-24T19:21:01.010000"],["2024-07-24T19:21:02.010000"],["2024-07-24T19:21:03.010000"],["2024-07-24T19:21:04.010000"],["2024-07-24T19:21:05.010000"],["2024-07-24T19:21:06.010000"],["2024-07-24T19:21:07.010000"],["2024-07-24T19:21:08.010000"],["2024-07-24T19:21:09.010000"],["2024-07-24T19:21:10.010000"],["2024-07-24T19:21:11.010000"],["2024-07-24T19:21:12.010000"],["2024-07-24T19:21:13.010000"],["2024-07-24T19:21:14.010000"],["2024-07-24T19:21:15.010000"],["2024-07-24T19:21:16.010000"],["2024-07-24T19:21:17.010000"],["2024-07-24T19:21:18.010000"],["2024-07-24T19:21:19.010000"],["2024-07-24T19:21:20.010000"],["2024-07-24T19:21:21.010000"],["2024-07-24T19:21:22.010000"],["2024-07-24T19:21:23.010000"],["2024-07-24T19:21:24.010000"],["2024-07-24T19:21:25.010000"],["2024-07-24T19:21:26.010000"],["2024-07-24T19:21:27.010000"],["2024-07-24T19:21:28.010000"],["2024-07-24T19:21:29.010000"],["2024-07-24T19:21:30.010000"],["2024-07-24T19:21:31.010000"],["2024-07-24T19:21:32.010000"],["2024-07-24T19:21:33.010000"],["2024-07-24T19:21:34.010000"],["2024-07-24T19:21:35.010000"],["2024-07-24T19:21:36.010000"],["2024-07-24T19:21:37.010000"],["2024-07-24T19:21:38.010000"],["2024-07-24T19:21:39.010000"],["2024-07-24T19:21:40.010000"],["2024-07-24T19:21:41.010000"],["2024-07-24T19:21:42.010000"],["2024-07-24T19:21:43.010000"],["2024-07-24T19:21:44.010000"],["2024-07-24T19:21:45.010000"],["2024-07-24T19:21:46.010000"],["2024-07-24T19:21:47.010000"],["2024-07-24T19:21:48.010000"],["2024-07-24T19:21:49.010000"],["2024-07-24T19:21:50.010000"],["2024-07-24T19:21:51.010000"],["2024-07-24T19:21:52.010000"],["2024-07-24T19:21:53.010000"],["2024-07-24T19:21:54.010000"],["2024-07-24T19:21:55.010000"],["2024-07-24T19:21:56.010000"],["2024-07-24T19:21:57.010000"],["2024-07-24T19:21:58.010000"],["2024-07-24T19:21:59.010000"],["2024-07-24T19:22:00.010000"],["2024-07-24T19:22:01.010000"],["2024-07-24T19:22:02.010000"],["2024-07-24T19:22:03.010000"],["2024-07-24T19:22:04.010000"],["2024-07-24T19:22:05.010000"],["2024-07-24T19:22:06.010000"],["2024-07-24T19:22:07.010000"],["2024-07-24T19:22:08.010000"],["2024-07-24T19:22:09.010000"],["2024-07-24T19:22:10.010000"],["2024-07-24T19:22:11.010000"],["2024-07-24T19:22:12.010000"],["2024-07-24T19:22:13.010000"],["2024-07-24T19:22:14.010000"],["2024-07-24T19:22:15.010000"],["2024-07-24T19:22:16.010000"],["2024-07-24T19:22:17.010000"],["2024-07-24T19:22:18.010000"],["2024-07-24T19:22:19.010000"],["2024-07-24T19:22:20.010000"],["2024-07-24T19:22:21.010000"],["2024-07-24T19:22:22.010000"],["2024-07-24T19:22:23.010000"],["2024-07-24T19:22:24.010000"],["2024-07-24T19:22:25.010000"],["2024-07-24T19:22:26.010000"],["2024-07-24T19:22:27.010000"],["2024-07-24T19:22:28.010000"],["2024-07-24T19:22:29.010000"],["2024-07-24T19:22:30.010000"],["2024-07-24T19:22:31.010000"],["2024-07-24T19:22:32.010000"],["2024-07-24T19:22:33.010000"],["2024-07-24T19:22:34.010000"],["2024-07-24T19:22:35.010000"],["2024-07-24T19:22:36.010000"],["2024-07-24T19:22:37.010000"],["2024-07-24T19:22:38.010000"],["2024-07-24T19:22:39.010000"],["2024-07-24T19:22:40.010000"],["2024-07-24T19:22:41.010000"],["2024-07-24T19:22:42.010000"],["2024-07-24T19:22:43.010000"],["2024-07-24T19:22:44.010000"],["2024-07-24T19:22:45.010000"],["2024-07-24T19:22:46.010000"],["2024-07-24T19:22:47.010000"],["2024-07-24T19:22:48.010000"],["2024-07-24T19:22:49.010000"],["2024-07-24T19:22:50.010000"],["2024-07-24T19:22:51.010000"],["2024-07-24T19:22:52.010000"],["2024-07-24T19:22:53.010000"],["2024-07-24T19:22:54.010000"],["2024-07-24T19:22:55.010000"],["2024-07-24T19:22:56.010000"],["2024-07-24T19:22:57.010000"],["2024-07-24T19:22:58.010000"],["2024-07-24T19:22:59.010000"],["2024-07-24T19:23:00.010000"],["2024-07-24T19:23:01.010000"],["2024-07-24T19:23:02.010000"],["2024-07-24T19:23:03.010000"],["2024-07-24T19:23:04.010000"],["2024-07-24T19:23:05.010000"],["2024-07-24T19:23:06.010000"],["2024-07-24T19:23:07.010000"],["2024-07-24T19:23:08.010000"],["2024-07-24T19:23:09.010000"],["2024-07-24T19:23:10.010000"],["2024-07-24T19:23:11.010000"],["2024-07-24T19:23:12.010000"],["2024-07-24T19:23:13.010000"],["2024-07-24T19:23:14.010000"],["2024-07-24T19:23:15.010000"],["2024-07-24T19:23:16.010000"],["2024-07-24T19:23:17.010000"],["2024-07-24T19:23:18.010000"],["2024-07-24T19:23:19.010000"],["2024-07-24T19:23:20.010000"],["2024-07-24T19:23:21.010000"],["2024-07-24T19:23:22.010000"],["2024-07-24T19:23:23.010000"],["2024-07-24T19:23:24.010000"],["2024-07-24T19:23:25.010000"],["2024-07-24T19:23:26.010000"],["2024-07-24T19:23:27.010000"],["2024-07-24T19:23:28.010000"],["2024-07-24T19:23:29.010000"],["2024-07-24T19:23:30.010000"],["2024-07-24T19:23:31.010000"],["2024-07-24T19:23:32.010000"],["2024-07-24T19:23:33.010000"],["2024-07-24T19:23:34.010000"],["2024-07-24T19:23:35.010000"],["2024-07-24T19:23:36.010000"],["2024-07-24T19:23:37.010000"],["2024-07-24T19:23:38.010000"],["2024-07-24T19:23:39.010000"],["2024-07-24T19:23:40.010000"],["2024-07-24T19:23:41.010000"],["2024-07-24T19:23:42.010000"],["2024-07-24T19:23:43.010000"],["2024-07-24T19:23:44.010000"],["2024-07-24T19:23:45.010000"],["2024-07-24T19:23:46.010000"],["2024-07-24T19:23:47.010000"],["2024-07-24T19:23:48.010000"],["2024-07-24T19:23:49.010000"],["2024-07-24T19:23:50.010000"],["2024-07-24T19:23:51.010000"],["2024-07-24T19:23:52.010000"],["2024-07-24T19:23:53.010000"],["2024-07-24T19:23:54.010000"],["2024-07-24T19:23:55.010000"],["2024-07-24T19:23:56.010000"],["2024-07-24T19:23:57.010000"],["2024-07-24T19:23:58.010000"],["2024-07-24T19:23:59.010000"],["2024-07-24T19:24:00.010000"],["2024-07-24T19:24:01.010000"],["2024-07-24T19:24:02.010000"],["2024-07-24T19:24:03.010000"],["2024-07-24T19:24:04.010000"],["2024-07-24T19:24:05.010000"],["2024-07-24T19:24:06.010000"],["2024-07-24T19:24:07.010000"],["2024-07-24T19:24:08.010000"],["2024-07-24T19:24:09.010000"],["2024-07-24T19:24:10.010000"],["2024-07-24T19:24:11.010000"],["2024-07-24T19:24:12.010000"],["2024-07-24T19:24:13.010000"],["2024-07-24T19:24:14.010000"],["2024-07-24T19:24:15.010000"],["2024-07-24T19:24:16.010000"],["2024-07-24T19:24:17.010000"],["2024-07-24T19:24:18.010000"],["2024-07-24T19:24:19.010000"],["2024-07-24T19:24:20.010000"],["2024-07-24T19:24:21.010000"],["2024-07-24T19:24:22.010000"],["2024-07-24T19:24:23.010000"],["2024-07-24T19:24:24.010000"],["2024-07-24T19:24:25.010000"],["2024-07-24T19:24:26.010000"],["2024-07-24T19:24:27.010000"],["2024-07-24T19:24:28.010000"],["2024-07-24T19:24:29.010000"],["2024-07-24T19:24:30.010000"],["2024-07-24T19:24:31.010000"],["2024-07-24T19:24:32.010000"],["2024-07-24T19:24:33.010000"],["2024-07-24T19:24:34.010000"],["2024-07-24T19:24:35.010000"],["2024-07-24T19:24:36.010000"],["2024-07-24T19:24:37.010000"],["2024-07-24T19:24:38.010000"],["2024-07-24T19:24:39.010000"],["2024-07-24T19:24:40.010000"],["2024-07-24T19:24:41.010000"],["2024-07-24T19:24:42.010000"],["2024-07-24T19:24:43.010000"],["2024-07-24T19:24:44.010000"],["2024-07-24T19:24:45.010000"],["2024-07-24T19:24:46.010000"],["2024-07-24T19:24:47.010000"],["2024-07-24T19:24:48.010000"],["2024-07-24T19:24:49.010000"],["2024-07-24T19:24:50.010000"],["2024-07-24T19:24:51.010000"],["2024-07-24T19:24:52.010000"],["2024-07-24T19:24:53.010000"],["2024-07-24T19:24:54.010000"],["2024-07-24T19:24:55.010000"],["2024-07-24T19:24:56.010000"],["2024-07-24T19:24:57.010000"],["2024-07-24T19:24:58.010000"],["2024-07-24T19:24:59.010000"],["2024-07-24T19:25:00.010000"],["2024-07-24T19:25:01.010000"],["2024-07-24T19:25:02.010000"],["2024-07-24T19:25:03.010000"],["2024-07-24T19:25:04.010000"],["2024-07-24T19:25:05.010000"],["2024-07-24T19:25:06.010000"],["2024-07-24T19:25:07.010000"],["2024-07-24T19:25:08.010000"],["2024-07-24T19:25:09.010000"],["2024-07-24T19:25:10.010000"],["2024-07-24T19:25:11.010000"],["2024-07-24T19:25:12.010000"],["2024-07-24T19:25:13.010000"],["2024-07-24T19:25:14.010000"],["2024-07-24T19:25:15.010000"],["2024-07-24T19:25:16.010000"],["2024-07-24T19:25:17.010000"],["2024-07-24T19:25:18.010000"],["2024-07-24T19:25:19.010000"],["2024-07-24T19:25:20.010000"],["2024-07-24T19:25:21.010000"],["2024-07-24T19:25:22.010000"],["2024-07-24T19:25:23.010000"],["2024-07-24T19:25:24.010000"],["2024-07-24T19:25:25.010000"],["2024-07-24T19:25:26.010000"],["2024-07-24T19:25:27.010000"],["2024-07-24T19:25:28.010000"],["2024-07-24T19:25:29.010000"],["2024-07-24T19:25:30.010000"],["2024-07-24T19:25:31.010000"],["2024-07-24T19:25:32.010000"],["2024-07-24T19:25:33.010000"],["2024-07-24T19:25:34.010000"],["2024-07-24T19:25:35.010000"],["2024-07-24T19:25:36.010000"],["2024-07-24T19:25:37.010000"],["2024-07-24T19:25:38.010000"],["2024-07-24T19:25:39.010000"],["2024-07-24T19:25:40.010000"],["2024-07-24T19:25:41.010000"],["2024-07-24T19:25:42.010000"],["2024-07-24T19:25:43.010000"],["2024-07-24T19:25:44.010000"],["2024-07-24T19:25:45.010000"],["2024-07-24T19:25:46.010000"],["2024-07-24T19:25:47.010000"],["2024-07-24T19:25:48.010000"],["2024-07-24T19:25:49.010000"],["2024-07-24T19:25:50.010000"],["2024-07-24T19:25:51.010000"],["2024-07-24T19:25:52.010000"],["2024-07-24T19:25:53.010000"],["2024-07-24T19:25:54.010000"],["2024-07-24T19:25:55.010000"],["2024-07-24T19:25:56.010000"],["2024-07-24T19:25:57.010000"],["2024-07-24T19:25:58.010000"],["2024-07-24T19:25:59.010000"],["2024-07-24T19:26:00.010000"],["2024-07-24T19:26:01.010000"],["2024-07-24T19:26:02.010000"],["2024-07-24T19:26:03.010000"],["2024-07-24T19:26:04.010000"],["2024-07-24T19:26:05.010000"],["2024-07-24T19:26:06.010000"],["2024-07-24T19:26:07.010000"],["2024-07-24T19:26:08.010000"],["2024-07-24T19:26:09.010000"],["2024-07-24T19:26:10.010000"],["2024-07-24T19:26:11.010000"],["2024-07-24T19:26:12.010000"],["2024-07-24T19:26:13.010000"],["2024-07-24T19:26:14.010000"],["2024-07-24T19:26:15.010000"],["2024-07-24T19:26:16.010000"],["2024-07-24T19:26:17.010000"],["2024-07-24T19:26:18.010000"],["2024-07-24T19:26:19.010000"],["2024-07-24T19:26:20.010000"],["2024-07-24T19:26:21.010000"],["2024-07-24T19:26:22.010000"],["2024-07-24T19:26:23.010000"],["2024-07-24T19:26:24.010000"],["2024-07-24T19:26:25.010000"],["2024-07-24T19:26:26.010000"],["2024-07-24T19:26:27.010000"],["2024-07-24T19:26:28.010000"],["2024-07-24T19:26:29.010000"],["2024-07-24T19:26:30.010000"],["2024-07-24T19:26:31.010000"],["2024-07-24T19:26:32.010000"],["2024-07-24T19:26:33.010000"],["2024-07-24T19:26:34.010000"],["2024-07-24T19:26:35.010000"],["2024-07-24T19:26:36.010000"],["2024-07-24T19:26:37.010000"],["2024-07-24T19:26:38.010000"],["2024-07-24T19:26:39.010000"],["2024-07-24T19:26:40.010000"],["2024-07-24T19:26:41.010000"],["2024-07-24T19:26:42.010000"],["2024-07-24T19:26:43.010000"],["2024-07-24T19:26:44.010000"],["2024-07-24T19:26:45.010000"],["2024-07-24T19:26:46.010000"],["2024-07-24T19:26:47.010000"],["2024-07-24T19:26:48.010000"],["2024-07-24T19:26:49.010000"],["2024-07-24T19:26:50.010000"],["2024-07-24T19:26:51.010000"],["2024-07-24T19:26:52.010000"],["2024-07-24T19:26:53.010000"],["2024-07-24T19:26:54.010000"],["2024-07-24T19:26:55.010000"],["2024-07-24T19:26:56.010000"],["2024-07-24T19:26:57.010000"],["2024-07-24T19:26:58.010000"],["2024-07-24T19:26:59.010000"],["2024-07-24T19:27:00.010000"],["2024-07-24T19:27:01.010000"],["2024-07-24T19:27:02.010000"],["2024-07-24T19:27:03.010000"],["2024-07-24T19:27:04.010000"],["2024-07-24T19:27:05.010000"],["2024-07-24T19:27:06.010000"],["2024-07-24T19:27:07.010000"],["2024-07-24T19:27:08.010000"],["2024-07-24T19:27:09.010000"],["2024-07-24T19:27:10.010000"],["2024-07-24T19:27:11.010000"],["2024-07-24T19:27:12.010000"],["2024-07-24T19:27:13.010000"],["2024-07-24T19:27:14.010000"],["2024-07-24T19:27:15.010000"],["2024-07-24T19:27:16.010000"],["2024-07-24T19:27:17.010000"],["2024-07-24T19:27:18.010000"],["2024-07-24T19:27:19.010000"],["2024-07-24T19:27:20.010000"],["2024-07-24T19:27:21.010000"],["2024-07-24T19:27:22.010000"],["2024-07-24T19:27:23.010000"],["2024-07-24T19:27:24.010000"],["2024-07-24T19:27:25.010000"],["2024-07-24T19:27:26.010000"],["2024-07-24T19:27:27.010000"],["2024-07-24T19:27:28.010000"],["2024-07-24T19:27:29.010000"],["2024-07-24T19:27:30.010000"],["2024-07-24T19:27:31.010000"],["2024-07-24T19:27:32.010000"],["2024-07-24T19:27:33.010000"],["2024-07-24T19:27:34.010000"],["2024-07-24T19:27:35.010000"],["2024-07-24T19:27:36.010000"],["2024-07-24T19:27:37.010000"],["2024-07-24T19:27:38.010000"],["2024-07-24T19:27:39.010000"],["2024-07-24T19:27:40.010000"],["2024-07-24T19:27:41.010000"],["2024-07-24T19:27:42.010000"],["2024-07-24T19:27:43.010000"],["2024-07-24T19:27:44.010000"],["2024-07-24T19:27:45.010000"],["2024-07-24T19:27:46.010000"],["2024-07-24T19:27:47.010000"],["2024-07-24T19:27:48.010000"],["2024-07-24T19:27:49.010000"],["2024-07-24T19:27:50.010000"],["2024-07-24T19:27:51.010000"],["2024-07-24T19:27:52.010000"],["2024-07-24T19:27:53.010000"],["2024-07-24T19:27:54.010000"],["2024-07-24T19:27:55.010000"],["2024-07-24T19:27:56.010000"],["2024-07-24T19:27:57.010000"],["2024-07-24T19:27:58.010000"],["2024-07-24T19:27:59.010000"],["2024-07-24T19:28:00.010000"],["2024-07-24T19:28:01.010000"],["2024-07-24T19:28:02.010000"],["2024-07-24T19:28:03.010000"],["2024-07-24T19:28:04.010000"],["2024-07-24T19:28:05.010000"],["2024-07-24T19:28:06.010000"],["2024-07-24T19:28:07.010000"],["2024-07-24T19:28:08.010000"],["2024-07-24T19:28:09.010000"],["2024-07-24T19:28:10.010000"],["2024-07-24T19:28:11.010000"],["2024-07-24T19:28:12.010000"],["2024-07-24T19:28:13.010000"],["2024-07-24T19:28:14.010000"],["2024-07-24T19:28:15.010000"],["2024-07-24T19:28:16.010000"],["2024-07-24T19:28:17.010000"],["2024-07-24T19:28:18.010000"],["2024-07-24T19:28:19.010000"],["2024-07-24T19:28:20.010000"],["2024-07-24T19:28:21.010000"],["2024-07-24T19:28:22.010000"],["2024-07-24T19:28:23.010000"],["2024-07-24T19:28:24.010000"],["2024-07-24T19:28:25.010000"],["2024-07-24T19:28:26.010000"],["2024-07-24T19:28:27.010000"],["2024-07-24T19:28:28.010000"],["2024-07-24T19:28:29.010000"],["2024-07-24T19:28:30.010000"],["2024-07-24T19:28:31.010000"],["2024-07-24T19:28:32.010000"],["2024-07-24T19:28:33.010000"],["2024-07-24T19:28:34.010000"],["2024-07-24T19:28:35.010000"],["2024-07-24T19:28:36.010000"],["2024-07-24T19:28:37.010000"],["2024-07-24T19:28:38.010000"],["2024-07-24T19:28:39.010000"],["2024-07-24T19:28:40.010000"],["2024-07-24T19:28:41.010000"],["2024-07-24T19:28:42.010000"],["2024-07-24T19:28:43.010000"],["2024-07-24T19:28:44.010000"],["2024-07-24T19:28:45.010000"],["2024-07-24T19:28:46.010000"],["2024-07-24T19:28:47.010000"],["2024-07-24T19:28:48.010000"],["2024-07-24T19:28:49.010000"],["2024-07-24T19:28:50.010000"],["2024-07-24T19:28:51.010000"],["2024-07-24T19:28:52.010000"],["2024-07-24T19:28:53.010000"],["2024-07-24T19:28:54.010000"],["2024-07-24T19:28:55.010000"],["2024-07-24T19:28:56.010000"],["2024-07-24T19:28:57.010000"],["2024-07-24T19:28:58.010000"],["2024-07-24T19:28:59.010000"],["2024-07-24T19:29:00.010000"],["2024-07-24T19:29:01.010000"],["2024-07-24T19:29:02.010000"],["2024-07-24T19:29:03.010000"],["2024-07-24T19:29:04.010000"],["2024-07-24T19:29:05.010000"],["2024-07-24T19:29:06.010000"],["2024-07-24T19:29:07.010000"],["2024-07-24T19:29:08.010000"],["2024-07-24T19:29:09.010000"],["2024-07-24T19:29:10.010000"],["2024-07-24T19:29:11.010000"],["2024-07-24T19:29:12.010000"],["2024-07-24T19:29:13.010000"],["2024-07-24T19:29:14.010000"],["2024-07-24T19:29:15.010000"],["2024-07-24T19:29:16.010000"],["2024-07-24T19:29:17.010000"],["2024-07-24T19:29:18.010000"],["2024-07-24T19:29:19.010000"],["2024-07-24T19:29:20.010000"],["2024-07-24T19:29:21.010000"],["2024-07-24T19:29:22.010000"],["2024-07-24T19:29:23.010000"],["2024-07-24T19:29:24.010000"],["2024-07-24T19:29:25.010000"],["2024-07-24T19:29:26.010000"],["2024-07-24T19:29:27.010000"],["2024-07-24T19:29:28.010000"],["2024-07-24T19:29:29.010000"],["2024-07-24T19:29:30.010000"],["2024-07-24T19:29:31.010000"],["2024-07-24T19:29:32.010000"],["2024-07-24T19:29:33.010000"],["2024-07-24T19:29:34.010000"],["2024-07-24T19:29:35.010000"],["2024-07-24T19:29:36.010000"],["2024-07-24T19:29:37.010000"],["2024-07-24T19:29:38.010000"],["2024-07-24T19:29:39.010000"],["2024-07-24T19:29:40.010000"],["2024-07-24T19:29:41.010000"],["2024-07-24T19:29:42.010000"],["2024-07-24T19:29:43.010000"],["2024-07-24T19:29:44.010000"],["2024-07-24T19:29:45.010000"],["2024-07-24T19:29:46.010000"],["2024-07-24T19:29:47.010000"],["2024-07-24T19:29:48.010000"],["2024-07-24T19:29:49.010000"],["2024-07-24T19:29:50.010000"],["2024-07-24T19:29:51.010000"],["2024-07-24T19:29:52.010000"],["2024-07-24T19:29:53.010000"],["2024-07-24T19:29:54.010000"],["2024-07-24T19:29:55.010000"],["2024-07-24T19:29:56.010000"],["2024-07-24T19:29:57.010000"],["2024-07-24T19:29:58.010000"],["2024-07-24T19:29:59.010000"],["2024-07-24T19:30:00.010000"],["2024-07-24T19:30:01.010000"],["2024-07-24T19:30:02.010000"],["2024-07-24T19:30:03.010000"],["2024-07-24T19:30:04.010000"],["2024-07-24T19:30:05.010000"],["2024-07-24T19:30:06.010000"],["2024-07-24T19:30:07.010000"],["2024-07-24T19:30:08.010000"],["2024-07-24T19:30:09.010000"],["2024-07-24T19:30:10.010000"],["2024-07-24T19:30:11.010000"],["2024-07-24T19:30:12.010000"],["2024-07-24T19:30:13.010000"],["2024-07-24T19:30:14.010000"],["2024-07-24T19:30:15.010000"],["2024-07-24T19:30:16.010000"],["2024-07-24T19:30:17.010000"],["2024-07-24T19:30:18.010000"],["2024-07-24T19:30:19.010000"],["2024-07-24T19:30:20.010000"],["2024-07-24T19:30:21.010000"],["2024-07-24T19:30:22.010000"],["2024-07-24T19:30:23.010000"],["2024-07-24T19:30:24.010000"],["2024-07-24T19:30:25.010000"],["2024-07-24T19:30:26.010000"],["2024-07-24T19:30:27.010000"],["2024-07-24T19:30:28.010000"],["2024-07-24T19:30:29.010000"],["2024-07-24T19:30:30.010000"],["2024-07-24T19:30:31.010000"],["2024-07-24T19:30:32.010000"],["2024-07-24T19:30:33.010000"],["2024-07-24T19:30:34.010000"],["2024-07-24T19:30:35.010000"],["2024-07-24T19:30:36.010000"],["2024-07-24T19:30:37.010000"],["2024-07-24T19:30:38.010000"],["2024-07-24T19:30:39.010000"],["2024-07-24T19:30:40.010000"],["2024-07-24T19:30:41.010000"],["2024-07-24T19:30:42.010000"],["2024-07-24T19:30:43.010000"],["2024-07-24T19:30:44.010000"],["2024-07-24T19:30:45.010000"],["2024-07-24T19:30:46.010000"],["2024-07-24T19:30:47.010000"],["2024-07-24T19:30:48.010000"],["2024-07-24T19:30:49.010000"],["2024-07-24T19:30:50.010000"],["2024-07-24T19:30:51.010000"],["2024-07-24T19:30:52.010000"],["2024-07-24T19:30:53.010000"],["2024-07-24T19:30:54.010000"],["2024-07-24T19:30:55.010000"],["2024-07-24T19:30:56.010000"],["2024-07-24T19:30:57.010000"],["2024-07-24T19:30:58.010000"],["2024-07-24T19:30:59.010000"],["2024-07-24T19:31:00.010000"],["2024-07-24T19:31:01.010000"],["2024-07-24T19:31:02.010000"],["2024-07-24T19:31:03.010000"],["2024-07-24T19:31:04.010000"],["2024-07-24T19:31:05.010000"],["2024-07-24T19:31:06.010000"],["2024-07-24T19:31:07.010000"],["2024-07-24T19:31:08.010000"],["2024-07-24T19:31:09.010000"],["2024-07-24T19:31:10.010000"],["2024-07-24T19:31:11.010000"],["2024-07-24T19:31:12.010000"],["2024-07-24T19:31:13.010000"],["2024-07-24T19:31:14.010000"],["2024-07-24T19:31:15.010000"],["2024-07-24T19:31:16.010000"],["2024-07-24T19:31:17.010000"],["2024-07-24T19:31:18.010000"],["2024-07-24T19:31:19.010000"],["2024-07-24T19:31:20.010000"],["2024-07-24T19:31:21.010000"],["2024-07-24T19:31:22.010000"],["2024-07-24T19:31:23.010000"],["2024-07-24T19:31:24.010000"],["2024-07-24T19:31:25.010000"],["2024-07-24T19:31:26.010000"],["2024-07-24T19:31:27.010000"],["2024-07-24T19:31:28.010000"],["2024-07-24T19:31:29.010000"],["2024-07-24T19:31:30.010000"],["2024-07-24T19:31:31.010000"],["2024-07-24T19:31:32.010000"],["2024-07-24T19:31:33.010000"],["2024-07-24T19:31:34.010000"],["2024-07-24T19:31:35.010000"],["2024-07-24T19:31:36.010000"],["2024-07-24T19:31:37.010000"],["2024-07-24T19:31:38.010000"],["2024-07-24T19:31:39.010000"],["2024-07-24T19:31:40.010000"],["2024-07-24T19:31:41.010000"],["2024-07-24T19:31:42.010000"],["2024-07-24T19:31:43.010000"],["2024-07-24T19:31:44.010000"],["2024-07-24T19:31:45.010000"],["2024-07-24T19:31:46.010000"],["2024-07-24T19:31:47.010000"],["2024-07-24T19:31:48.010000"],["2024-07-24T19:31:49.010000"],["2024-07-24T19:31:50.010000"],["2024-07-24T19:31:51.010000"],["2024-07-24T19:31:52.010000"],["2024-07-24T19:31:53.010000"],["2024-07-24T19:31:54.010000"],["2024-07-24T19:31:55.010000"],["2024-07-24T19:31:56.010000"],["2024-07-24T19:31:57.010000"],["2024-07-24T19:31:58.010000"],["2024-07-24T19:31:59.010000"],["2024-07-24T19:32:00.010000"],["2024-07-24T19:32:01.010000"],["2024-07-24T19:32:02.010000"],["2024-07-24T19:32:03.010000"],["2024-07-24T19:32:04.010000"],["2024-07-24T19:32:05.010000"],["2024-07-24T19:32:06.010000"],["2024-07-24T19:32:07.010000"],["2024-07-24T19:32:08.010000"],["2024-07-24T19:32:09.010000"],["2024-07-24T19:32:10.010000"],["2024-07-24T19:32:11.010000"],["2024-07-24T19:32:12.010000"],["2024-07-24T19:32:13.010000"],["2024-07-24T19:32:14.010000"],["2024-07-24T19:32:15.010000"],["2024-07-24T19:32:16.010000"],["2024-07-24T19:32:17.010000"],["2024-07-24T19:32:18.010000"],["2024-07-24T19:32:19.010000"],["2024-07-24T19:32:20.010000"],["2024-07-24T19:32:21.010000"],["2024-07-24T19:32:22.010000"],["2024-07-24T19:32:23.010000"],["2024-07-24T19:32:24.010000"],["2024-07-24T19:32:25.010000"],["2024-07-24T19:32:26.010000"],["2024-07-24T19:32:27.010000"],["2024-07-24T19:32:28.010000"],["2024-07-24T19:32:29.010000"],["2024-07-24T19:32:30.010000"],["2024-07-24T19:32:31.010000"],["2024-07-24T19:32:32.010000"],["2024-07-24T19:32:33.010000"],["2024-07-24T19:32:34.010000"],["2024-07-24T19:32:35.010000"],["2024-07-24T19:32:36.010000"],["2024-07-24T19:32:37.010000"],["2024-07-24T19:32:38.010000"],["2024-07-24T19:32:39.010000"],["2024-07-24T19:32:40.010000"],["2024-07-24T19:32:41.010000"],["2024-07-24T19:32:42.010000"],["2024-07-24T19:32:43.010000"],["2024-07-24T19:32:44.010000"],["2024-07-24T19:32:45.010000"],["2024-07-24T19:32:46.010000"],["2024-07-24T19:32:47.010000"],["2024-07-24T19:32:48.010000"],["2024-07-24T19:32:49.010000"],["2024-07-24T19:32:50.010000"],["2024-07-24T19:32:51.010000"],["2024-07-24T19:32:52.010000"],["2024-07-24T19:32:53.010000"],["2024-07-24T19:32:54.010000"],["2024-07-24T19:32:55.010000"],["2024-07-24T19:32:56.010000"],["2024-07-24T19:32:57.010000"],["2024-07-24T19:32:58.010000"],["2024-07-24T19:32:59.010000"],["2024-07-24T19:33:00.010000"],["2024-07-24T19:33:01.010000"],["2024-07-24T19:33:02.010000"],["2024-07-24T19:33:03.010000"],["2024-07-24T19:33:04.010000"],["2024-07-24T19:33:05.010000"],["2024-07-24T19:33:06.010000"],["2024-07-24T19:33:07.010000"],["2024-07-24T19:33:08.010000"],["2024-07-24T19:33:09.010000"],["2024-07-24T19:33:10.010000"],["2024-07-24T19:33:11.010000"],["2024-07-24T19:33:12.010000"],["2024-07-24T19:33:13.010000"],["2024-07-24T19:33:14.010000"],["2024-07-24T19:33:15.010000"],["2024-07-24T19:33:16.010000"],["2024-07-24T19:33:17.010000"],["2024-07-24T19:33:18.010000"],["2024-07-24T19:33:19.010000"],["2024-07-24T19:33:20.010000"],["2024-07-24T19:33:21.010000"],["2024-07-24T19:33:22.010000"],["2024-07-24T19:33:23.010000"],["2024-07-24T19:33:24.010000"],["2024-07-24T19:33:25.010000"],["2024-07-24T19:33:26.010000"],["2024-07-24T19:33:27.010000"],["2024-07-24T19:33:28.010000"],["2024-07-24T19:33:29.010000"],["2024-07-24T19:33:30.010000"],["2024-07-24T19:33:31.010000"],["2024-07-24T19:33:32.010000"],["2024-07-24T19:33:33.010000"],["2024-07-24T19:33:34.010000"],["2024-07-24T19:33:35.010000"],["2024-07-24T19:33:36.010000"],["2024-07-24T19:33:37.010000"],["2024-07-24T19:33:38.010000"],["2024-07-24T19:33:39.010000"],["2024-07-24T19:33:40.010000"],["2024-07-24T19:33:41.010000"],["2024-07-24T19:33:42.010000"],["2024-07-24T19:33:43.010000"],["2024-07-24T19:33:44.010000"],["2024-07-24T19:33:45.010000"],["2024-07-24T19:33:46.010000"],["2024-07-24T19:33:47.010000"],["2024-07-24T19:33:48.010000"],["2024-07-24T19:33:49.010000"],["2024-07-24T19:33:50.010000"],["2024-07-24T19:33:51.010000"],["2024-07-24T19:33:52.010000"],["2024-07-24T19:33:53.010000"],["2024-07-24T19:33:54.010000"],["2024-07-24T19:33:55.010000"],["2024-07-24T19:33:56.010000"],["2024-07-24T19:33:57.010000"],["2024-07-24T19:33:58.010000"],["2024-07-24T19:33:59.010000"],["2024-07-24T19:34:00.010000"],["2024-07-24T19:34:01.010000"],["2024-07-24T19:34:02.010000"],["2024-07-24T19:34:03.010000"],["2024-07-24T19:34:04.010000"],["2024-07-24T19:34:05.010000"],["2024-07-24T19:34:06.010000"],["2024-07-24T19:34:07.010000"],["2024-07-24T19:34:08.010000"],["2024-07-24T19:34:09.010000"],["2024-07-24T19:34:10.010000"],["2024-07-24T19:34:11.010000"],["2024-07-24T19:34:12.010000"],["2024-07-24T19:34:13.010000"],["2024-07-24T19:34:14.010000"],["2024-07-24T19:34:15.010000"],["2024-07-24T19:34:16.010000"],["2024-07-24T19:34:17.010000"],["2024-07-24T19:34:18.010000"],["2024-07-24T19:34:19.010000"],["2024-07-24T19:34:20.010000"],["2024-07-24T19:34:21.010000"],["2024-07-24T19:34:22.010000"],["2024-07-24T19:34:23.010000"],["2024-07-24T19:34:24.010000"],["2024-07-24T19:34:25.010000"],["2024-07-24T19:34:26.010000"],["2024-07-24T19:34:27.010000"],["2024-07-24T19:34:28.010000"],["2024-07-24T19:34:29.010000"],["2024-07-24T19:34:30.010000"],["2024-07-24T19:34:31.010000"],["2024-07-24T19:34:32.010000"],["2024-07-24T19:34:33.010000"],["2024-07-24T19:34:34.010000"],["2024-07-24T19:34:35.010000"],["2024-07-24T19:34:36.010000"],["2024-07-24T19:34:37.010000"],["2024-07-24T19:34:38.010000"],["2024-07-24T19:34:39.010000"],["2024-07-24T19:34:40.010000"],["2024-07-24T19:34:41.010000"],["2024-07-24T19:34:42.010000"],["2024-07-24T19:34:43.010000"],["2024-07-24T19:34:44.010000"],["2024-07-24T19:34:45.010000"],["2024-07-24T19:34:46.010000"],["2024-07-24T19:34:47.010000"],["2024-07-24T19:34:48.010000"],["2024-07-24T19:34:49.010000"],["2024-07-24T19:34:50.010000"],["2024-07-24T19:34:51.010000"],["2024-07-24T19:34:52.010000"],["2024-07-24T19:34:53.010000"],["2024-07-24T19:34:54.010000"],["2024-07-24T19:34:55.010000"],["2024-07-24T19:34:56.010000"],["2024-07-24T19:34:57.010000"],["2024-07-24T19:34:58.010000"],["2024-07-24T19:34:59.010000"],["2024-07-24T19:35:00.010000"],["2024-07-24T19:35:01.010000"],["2024-07-24T19:35:02.010000"],["2024-07-24T19:35:03.010000"],["2024-07-24T19:35:04.010000"],["2024-07-24T19:35:05.010000"],["2024-07-24T19:35:06.010000"],["2024-07-24T19:35:07.010000"],["2024-07-24T19:35:08.010000"],["2024-07-24T19:35:09.010000"],["2024-07-24T19:35:10.010000"],["2024-07-24T19:35:11.010000"],["2024-07-24T19:35:12.010000"],["2024-07-24T19:35:13.010000"],["2024-07-24T19:35:14.010000"],["2024-07-24T19:35:15.010000"],["2024-07-24T19:35:16.010000"],["2024-07-24T19:35:17.010000"],["2024-07-24T19:35:18.010000"],["2024-07-24T19:35:19.010000"],["2024-07-24T19:35:20.010000"],["2024-07-24T19:35:21.010000"],["2024-07-24T19:35:22.010000"],["2024-07-24T19:35:23.010000"],["2024-07-24T19:35:24.010000"],["2024-07-24T19:35:25.010000"],["2024-07-24T19:35:26.010000"],["2024-07-24T19:35:27.010000"],["2024-07-24T19:35:28.010000"],["2024-07-24T19:35:29.010000"],["2024-07-24T19:35:30.010000"],["2024-07-24T19:35:31.010000"],["2024-07-24T19:35:32.010000"],["2024-07-24T19:35:33.010000"],["2024-07-24T19:35:34.010000"],["2024-07-24T19:35:35.010000"],["2024-07-24T19:35:36.010000"],["2024-07-24T19:35:37.010000"],["2024-07-24T19:35:38.010000"],["2024-07-24T19:35:39.010000"],["2024-07-24T19:35:40.010000"],["2024-07-24T19:35:41.010000"],["2024-07-24T19:35:42.010000"],["2024-07-24T19:35:43.010000"],["2024-07-24T19:35:44.010000"],["2024-07-24T19:35:45.010000"],["2024-07-24T19:35:46.010000"],["2024-07-24T19:35:47.010000"],["2024-07-24T19:35:48.010000"],["2024-07-24T19:35:49.010000"],["2024-07-24T19:35:50.010000"],["2024-07-24T19:35:51.010000"],["2024-07-24T19:35:52.010000"],["2024-07-24T19:35:53.010000"],["2024-07-24T19:35:54.010000"],["2024-07-24T19:35:55.010000"],["2024-07-24T19:35:56.010000"],["2024-07-24T19:35:57.010000"],["2024-07-24T19:35:58.010000"],["2024-07-24T19:35:59.010000"],["2024-07-24T19:36:00.010000"],["2024-07-24T19:36:01.010000"],["2024-07-24T19:36:02.010000"],["2024-07-24T19:36:03.010000"],["2024-07-24T19:36:04.010000"],["2024-07-24T19:36:05.010000"],["2024-07-24T19:36:06.010000"],["2024-07-24T19:36:07.010000"],["2024-07-24T19:36:08.010000"],["2024-07-24T19:36:09.010000"],["2024-07-24T19:36:10.010000"],["2024-07-24T19:36:11.010000"],["2024-07-24T19:36:12.010000"],["2024-07-24T19:36:13.010000"],["2024-07-24T19:36:14.010000"],["2024-07-24T19:36:15.010000"],["2024-07-24T19:36:16.010000"],["2024-07-24T19:36:17.010000"],["2024-07-24T19:36:18.010000"],["2024-07-24T19:36:19.010000"],["2024-07-24T19:36:20.010000"],["2024-07-24T19:36:21.010000"],["2024-07-24T19:36:22.010000"],["2024-07-24T19:36:23.010000"],["2024-07-24T19:36:24.010000"],["2024-07-24T19:36:25.010000"],["2024-07-24T19:36:26.010000"],["2024-07-24T19:36:27.010000"],["2024-07-24T19:36:28.010000"],["2024-07-24T19:36:29.010000"],["2024-07-24T19:36:30.010000"],["2024-07-24T19:36:31.010000"],["2024-07-24T19:36:32.010000"],["2024-07-24T19:36:33.010000"],["2024-07-24T19:36:34.010000"],["2024-07-24T19:36:35.010000"],["2024-07-24T19:36:36.010000"],["2024-07-24T19:36:37.010000"],["2024-07-24T19:36:38.010000"],["2024-07-24T19:36:39.010000"],["2024-07-24T19:36:40.010000"],["2024-07-24T19:36:41.010000"],["2024-07-24T19:36:42.010000"],["2024-07-24T19:36:43.010000"],["2024-07-24T19:36:44.010000"],["2024-07-24T19:36:45.010000"],["2024-07-24T19:36:46.010000"],["2024-07-24T19:36:47.010000"],["2024-07-24T19:36:48.010000"],["2024-07-24T19:36:49.010000"],["2024-07-24T19:36:50.010000"],["2024-07-24T19:36:51.010000"],["2024-07-24T19:36:52.010000"],["2024-07-24T19:36:53.010000"],["2024-07-24T19:36:54.010000"],["2024-07-24T19:36:55.010000"],["2024-07-24T19:36:56.010000"],["2024-07-24T19:36:57.010000"],["2024-07-24T19:36:58.010000"],["2024-07-24T19:36:59.010000"],["2024-07-24T19:37:00.010000"],["2024-07-24T19:37:01.010000"],["2024-07-24T19:37:02.010000"],["2024-07-24T19:37:03.010000"],["2024-07-24T19:37:04.010000"],["2024-07-24T19:37:05.010000"],["2024-07-24T19:37:06.010000"],["2024-07-24T19:37:07.010000"],["2024-07-24T19:37:08.010000"],["2024-07-24T19:37:09.010000"],["2024-07-24T19:37:10.010000"],["2024-07-24T19:37:11.010000"],["2024-07-24T19:37:12.010000"],["2024-07-24T19:37:13.010000"],["2024-07-24T19:37:14.010000"],["2024-07-24T19:37:15.010000"],["2024-07-24T19:37:16.010000"],["2024-07-24T19:37:17.010000"],["2024-07-24T19:37:18.010000"],["2024-07-24T19:37:19.010000"],["2024-07-24T19:37:20.010000"],["2024-07-24T19:37:21.010000"],["2024-07-24T19:37:22.010000"],["2024-07-24T19:37:23.010000"],["2024-07-24T19:37:24.010000"],["2024-07-24T19:37:25.010000"],["2024-07-24T19:37:26.010000"],["2024-07-24T19:37:27.010000"],["2024-07-24T19:37:28.010000"],["2024-07-24T19:37:29.010000"],["2024-07-24T19:37:30.010000"],["2024-07-24T19:37:31.010000"],["2024-07-24T19:37:32.010000"],["2024-07-24T19:37:33.010000"],["2024-07-24T19:37:34.010000"],["2024-07-24T19:37:35.010000"],["2024-07-24T19:37:36.010000"],["2024-07-24T19:37:37.010000"],["2024-07-24T19:37:38.010000"],["2024-07-24T19:37:39.010000"],["2024-07-24T19:37:40.010000"],["2024-07-24T19:37:41.010000"],["2024-07-24T19:37:42.010000"],["2024-07-24T19:37:43.010000"],["2024-07-24T19:37:44.010000"],["2024-07-24T19:37:45.010000"],["2024-07-24T19:37:46.010000"],["2024-07-24T19:37:47.010000"],["2024-07-24T19:37:48.010000"],["2024-07-24T19:37:49.010000"],["2024-07-24T19:37:50.010000"],["2024-07-24T19:37:51.010000"],["2024-07-24T19:37:52.010000"],["2024-07-24T19:37:53.010000"],["2024-07-24T19:37:54.010000"],["2024-07-24T19:37:55.010000"],["2024-07-24T19:37:56.010000"],["2024-07-24T19:37:57.010000"],["2024-07-24T19:37:58.010000"],["2024-07-24T19:37:59.010000"],["2024-07-24T19:38:00.010000"],["2024-07-24T19:38:01.010000"],["2024-07-24T19:38:02.010000"],["2024-07-24T19:38:03.010000"],["2024-07-24T19:38:04.010000"],["2024-07-24T19:38:05.010000"],["2024-07-24T19:38:06.010000"],["2024-07-24T19:38:07.010000"],["2024-07-24T19:38:08.010000"],["2024-07-24T19:38:09.010000"],["2024-07-24T19:38:10.010000"],["2024-07-24T19:38:11.010000"],["2024-07-24T19:38:12.010000"],["2024-07-24T19:38:13.010000"],["2024-07-24T19:38:14.010000"],["2024-07-24T19:38:15.010000"],["2024-07-24T19:38:16.010000"],["2024-07-24T19:38:17.010000"],["2024-07-24T19:38:18.010000"],["2024-07-24T19:38:19.010000"],["2024-07-24T19:38:20.010000"],["2024-07-24T19:38:21.010000"],["2024-07-24T19:38:22.010000"],["2024-07-24T19:38:23.010000"],["2024-07-24T19:38:24.010000"],["2024-07-24T19:38:25.010000"],["2024-07-24T19:38:26.010000"],["2024-07-24T19:38:27.010000"],["2024-07-24T19:38:28.010000"],["2024-07-24T19:38:29.010000"],["2024-07-24T19:38:30.010000"],["2024-07-24T19:38:31.010000"],["2024-07-24T19:38:32.010000"],["2024-07-24T19:38:33.010000"],["2024-07-24T19:38:34.010000"],["2024-07-24T19:38:35.010000"],["2024-07-24T19:38:36.010000"],["2024-07-24T19:38:37.010000"],["2024-07-24T19:38:38.010000"],["2024-07-24T19:38:39.010000"],["2024-07-24T19:38:40.010000"],["2024-07-24T19:38:41.010000"],["2024-07-24T19:38:42.010000"],["2024-07-24T19:38:43.010000"],["2024-07-24T19:38:44.010000"],["2024-07-24T19:38:45.010000"],["2024-07-24T19:38:46.010000"],["2024-07-24T19:38:47.010000"],["2024-07-24T19:38:48.010000"],["2024-07-24T19:38:49.010000"],["2024-07-24T19:38:50.010000"],["2024-07-24T19:38:51.010000"],["2024-07-24T19:38:52.010000"],["2024-07-24T19:38:53.010000"],["2024-07-24T19:38:54.010000"],["2024-07-24T19:38:55.010000"],["2024-07-24T19:38:56.010000"],["2024-07-24T19:38:57.010000"],["2024-07-24T19:38:58.010000"],["2024-07-24T19:38:59.010000"],["2024-07-24T19:39:00.010000"],["2024-07-24T19:39:01.010000"],["2024-07-24T19:39:02.010000"],["2024-07-24T19:39:03.010000"],["2024-07-24T19:39:04.010000"],["2024-07-24T19:39:05.010000"],["2024-07-24T19:39:06.010000"],["2024-07-24T19:39:07.010000"],["2024-07-24T19:39:08.010000"],["2024-07-24T19:39:09.010000"],["2024-07-24T19:39:10.010000"],["2024-07-24T19:39:11.010000"],["2024-07-24T19:39:12.010000"],["2024-07-24T19:39:13.010000"],["2024-07-24T19:39:14.010000"],["2024-07-24T19:39:15.010000"],["2024-07-24T19:39:16.010000"],["2024-07-24T19:39:17.010000"],["2024-07-24T19:39:18.010000"],["2024-07-24T19:39:19.010000"],["2024-07-24T19:39:20.010000"],["2024-07-24T19:39:21.010000"],["2024-07-24T19:39:22.010000"],["2024-07-24T19:39:23.010000"],["2024-07-24T19:39:24.010000"],["2024-07-24T19:39:25.010000"],["2024-07-24T19:39:26.010000"],["2024-07-24T19:39:27.010000"],["2024-07-24T19:39:28.010000"],["2024-07-24T19:39:29.010000"],["2024-07-24T19:39:30.010000"],["2024-07-24T19:39:31.010000"],["2024-07-24T19:39:32.010000"],["2024-07-24T19:39:33.010000"],["2024-07-24T19:39:34.010000"],["2024-07-24T19:39:35.010000"],["2024-07-24T19:39:36.010000"],["2024-07-24T19:39:37.010000"],["2024-07-24T19:39:38.010000"],["2024-07-24T19:39:39.010000"],["2024-07-24T19:39:40.010000"],["2024-07-24T19:39:41.010000"],["2024-07-24T19:39:42.010000"],["2024-07-24T19:39:43.010000"],["2024-07-24T19:39:44.010000"],["2024-07-24T19:39:45.010000"],["2024-07-24T19:39:46.010000"],["2024-07-24T19:39:47.010000"],["2024-07-24T19:39:48.010000"],["2024-07-24T19:39:49.010000"],["2024-07-24T19:39:50.010000"],["2024-07-24T19:39:51.010000"],["2024-07-24T19:39:52.010000"],["2024-07-24T19:39:53.010000"],["2024-07-24T19:39:54.010000"],["2024-07-24T19:39:55.010000"],["2024-07-24T19:39:56.010000"],["2024-07-24T19:39:57.010000"],["2024-07-24T19:39:58.010000"],["2024-07-24T19:39:59.010000"],["2024-07-24T19:40:00.010000"],["2024-07-24T19:40:01.010000"],["2024-07-24T19:40:02.010000"],["2024-07-24T19:40:03.010000"],["2024-07-24T19:40:04.010000"],["2024-07-24T19:40:05.010000"],["2024-07-24T19:40:06.010000"],["2024-07-24T19:40:07.010000"],["2024-07-24T19:40:08.010000"],["2024-07-24T19:40:09.010000"],["2024-07-24T19:40:10.010000"],["2024-07-24T19:40:11.010000"],["2024-07-24T19:40:12.010000"],["2024-07-24T19:40:13.010000"],["2024-07-24T19:40:14.010000"],["2024-07-24T19:40:15.010000"],["2024-07-24T19:40:16.010000"],["2024-07-24T19:40:17.010000"],["2024-07-24T19:40:18.010000"],["2024-07-24T19:40:19.010000"],["2024-07-24T19:40:20.010000"],["2024-07-24T19:40:21.010000"],["2024-07-24T19:40:22.010000"],["2024-07-24T19:40:23.010000"],["2024-07-24T19:40:24.010000"],["2024-07-24T19:40:25.010000"],["2024-07-24T19:40:26.010000"],["2024-07-24T19:40:27.010000"],["2024-07-24T19:40:28.010000"],["2024-07-24T19:40:29.010000"],["2024-07-24T19:40:30.010000"],["2024-07-24T19:40:31.010000"],["2024-07-24T19:40:32.010000"],["2024-07-24T19:40:33.010000"],["2024-07-24T19:40:34.010000"],["2024-07-24T19:40:35.010000"],["2024-07-24T19:40:36.010000"],["2024-07-24T19:40:37.010000"],["2024-07-24T19:40:38.010000"],["2024-07-24T19:40:39.010000"],["2024-07-24T19:40:40.010000"],["2024-07-24T19:40:41.010000"],["2024-07-24T19:40:42.010000"],["2024-07-24T19:40:43.010000"],["2024-07-24T19:40:44.010000"],["2024-07-24T19:40:45.010000"],["2024-07-24T19:40:46.010000"],["2024-07-24T19:40:47.010000"],["2024-07-24T19:40:48.010000"],["2024-07-24T19:40:49.010000"],["2024-07-24T19:40:50.010000"],["2024-07-24T19:40:51.010000"],["2024-07-24T19:40:52.010000"],["2024-07-24T19:40:53.010000"],["2024-07-24T19:40:54.010000"],["2024-07-24T19:40:55.010000"],["2024-07-24T19:40:56.010000"],["2024-07-24T19:40:57.010000"],["2024-07-24T19:40:58.010000"],["2024-07-24T19:40:59.010000"],["2024-07-24T19:41:00.010000"],["2024-07-24T19:41:01.010000"],["2024-07-24T19:41:02.010000"],["2024-07-24T19:41:03.010000"],["2024-07-24T19:41:04.010000"],["2024-07-24T19:41:05.010000"],["2024-07-24T19:41:06.010000"],["2024-07-24T19:41:07.010000"],["2024-07-24T19:41:08.010000"],["2024-07-24T19:41:09.010000"],["2024-07-24T19:41:10.010000"],["2024-07-24T19:41:11.010000"],["2024-07-24T19:41:12.010000"],["2024-07-24T19:41:13.010000"],["2024-07-24T19:41:14.010000"],["2024-07-24T19:41:15.010000"],["2024-07-24T19:41:16.010000"],["2024-07-24T19:41:17.010000"],["2024-07-24T19:41:18.010000"],["2024-07-24T19:41:19.010000"],["2024-07-24T19:41:20.010000"],["2024-07-24T19:41:21.010000"],["2024-07-24T19:41:22.010000"],["2024-07-24T19:41:23.010000"],["2024-07-24T19:41:24.010000"],["2024-07-24T19:41:25.010000"],["2024-07-24T19:41:26.010000"],["2024-07-24T19:41:27.010000"],["2024-07-24T19:41:28.010000"],["2024-07-24T19:41:29.010000"],["2024-07-24T19:41:30.010000"],["2024-07-24T19:41:31.010000"],["2024-07-24T19:41:32.010000"],["2024-07-24T19:41:33.010000"],["2024-07-24T19:41:34.010000"],["2024-07-24T19:41:35.010000"],["2024-07-24T19:41:36.010000"],["2024-07-24T19:41:37.010000"],["2024-07-24T19:41:38.010000"],["2024-07-24T19:41:39.010000"],["2024-07-24T19:41:40.010000"],["2024-07-24T19:41:41.010000"],["2024-07-24T19:41:42.010000"],["2024-07-24T19:41:43.010000"],["2024-07-24T19:41:44.010000"],["2024-07-24T19:41:45.010000"],["2024-07-24T19:41:46.010000"],["2024-07-24T19:41:47.010000"],["2024-07-24T19:41:48.010000"],["2024-07-24T19:41:49.010000"],["2024-07-24T19:41:50.010000"],["2024-07-24T19:41:51.010000"],["2024-07-24T19:41:52.010000"],["2024-07-24T19:41:53.010000"],["2024-07-24T19:41:54.010000"],["2024-07-24T19:41:55.010000"],["2024-07-24T19:41:56.010000"],["2024-07-24T19:41:57.010000"],["2024-07-24T19:41:58.010000"],["2024-07-24T19:41:59.010000"],["2024-07-24T19:42:00.010000"],["2024-07-24T19:42:01.010000"],["2024-07-24T19:42:02.010000"],["2024-07-24T19:42:03.010000"],["2024-07-24T19:42:04.010000"],["2024-07-24T19:42:05.010000"],["2024-07-24T19:42:06.010000"],["2024-07-24T19:42:07.010000"],["2024-07-24T19:42:08.010000"],["2024-07-24T19:42:09.010000"],["2024-07-24T19:42:10.010000"],["2024-07-24T19:42:11.010000"],["2024-07-24T19:42:12.010000"],["2024-07-24T19:42:13.010000"],["2024-07-24T19:42:14.010000"],["2024-07-24T19:42:15.010000"],["2024-07-24T19:42:16.010000"],["2024-07-24T19:42:17.010000"],["2024-07-24T19:42:18.010000"],["2024-07-24T19:42:19.010000"],["2024-07-24T19:42:20.010000"],["2024-07-24T19:42:21.010000"],["2024-07-24T19:42:22.010000"],["2024-07-24T19:42:23.010000"],["2024-07-24T19:42:24.010000"],["2024-07-24T19:42:25.010000"],["2024-07-24T19:42:26.010000"],["2024-07-24T19:42:27.010000"],["2024-07-24T19:42:28.010000"],["2024-07-24T19:42:29.010000"],["2024-07-24T19:42:30.010000"],["2024-07-24T19:42:31.010000"],["2024-07-24T19:42:32.010000"],["2024-07-24T19:42:33.010000"],["2024-07-24T19:42:34.010000"],["2024-07-24T19:42:35.010000"],["2024-07-24T19:42:36.010000"],["2024-07-24T19:42:37.010000"],["2024-07-24T19:42:38.010000"],["2024-07-24T19:42:39.010000"],["2024-07-24T19:42:40.010000"],["2024-07-24T19:42:41.010000"],["2024-07-24T19:42:42.010000"],["2024-07-24T19:42:43.010000"],["2024-07-24T19:42:44.010000"],["2024-07-24T19:42:45.010000"],["2024-07-24T19:42:46.010000"],["2024-07-24T19:42:47.010000"],["2024-07-24T19:42:48.010000"],["2024-07-24T19:42:49.010000"],["2024-07-24T19:42:50.010000"],["2024-07-24T19:42:51.010000"],["2024-07-24T19:42:52.010000"],["2024-07-24T19:42:53.010000"],["2024-07-24T19:42:54.010000"],["2024-07-24T19:42:55.010000"],["2024-07-24T19:42:56.010000"],["2024-07-24T19:42:57.010000"],["2024-07-24T19:42:58.010000"],["2024-07-24T19:42:59.010000"],["2024-07-24T19:43:00.010000"],["2024-07-24T19:43:01.010000"],["2024-07-24T19:43:02.010000"],["2024-07-24T19:43:03.010000"],["2024-07-24T19:43:04.010000"],["2024-07-24T19:43:05.010000"],["2024-07-24T19:43:06.010000"],["2024-07-24T19:43:07.010000"],["2024-07-24T19:43:08.010000"],["2024-07-24T19:43:09.010000"],["2024-07-24T19:43:10.010000"],["2024-07-24T19:43:11.010000"],["2024-07-24T19:43:12.010000"],["2024-07-24T19:43:13.010000"],["2024-07-24T19:43:14.010000"],["2024-07-24T19:43:15.010000"],["2024-07-24T19:43:16.010000"],["2024-07-24T19:43:17.010000"],["2024-07-24T19:43:18.010000"],["2024-07-24T19:43:19.010000"],["2024-07-24T19:43:20.010000"],["2024-07-24T19:43:21.010000"],["2024-07-24T19:43:22.010000"],["2024-07-24T19:43:23.010000"],["2024-07-24T19:43:24.010000"],["2024-07-24T19:43:25.010000"],["2024-07-24T19:43:26.010000"],["2024-07-24T19:43:27.010000"],["2024-07-24T19:43:28.010000"],["2024-07-24T19:43:29.010000"],["2024-07-24T19:43:30.010000"],["2024-07-24T19:43:31.010000"],["2024-07-24T19:43:32.010000"],["2024-07-24T19:43:33.010000"],["2024-07-24T19:43:34.010000"],["2024-07-24T19:43:35.010000"],["2024-07-24T19:43:36.010000"],["2024-07-24T19:43:37.010000"],["2024-07-24T19:43:38.010000"],["2024-07-24T19:43:39.010000"],["2024-07-24T19:43:40.010000"],["2024-07-24T19:43:41.010000"],["2024-07-24T19:43:42.010000"],["2024-07-24T19:43:43.010000"],["2024-07-24T19:43:44.010000"],["2024-07-24T19:43:45.010000"],["2024-07-24T19:43:46.010000"],["2024-07-24T19:43:47.010000"],["2024-07-24T19:43:48.010000"],["2024-07-24T19:43:49.010000"],["2024-07-24T19:43:50.010000"],["2024-07-24T19:43:51.010000"],["2024-07-24T19:43:52.010000"],["2024-07-24T19:43:53.010000"],["2024-07-24T19:43:54.010000"],["2024-07-24T19:43:55.010000"],["2024-07-24T19:43:56.010000"],["2024-07-24T19:43:57.010000"],["2024-07-24T19:43:58.010000"],["2024-07-24T19:43:59.010000"],["2024-07-24T19:44:00.010000"],["2024-07-24T19:44:01.010000"],["2024-07-24T19:44:02.010000"],["2024-07-24T19:44:03.010000"],["2024-07-24T19:44:04.010000"],["2024-07-24T19:44:05.010000"],["2024-07-24T19:44:06.010000"],["2024-07-24T19:44:07.010000"],["2024-07-24T19:44:08.010000"],["2024-07-24T19:44:09.010000"],["2024-07-24T19:44:10.010000"],["2024-07-24T19:44:11.010000"],["2024-07-24T19:44:12.010000"],["2024-07-24T19:44:13.010000"],["2024-07-24T19:44:14.010000"],["2024-07-24T19:44:15.010000"],["2024-07-24T19:44:16.010000"],["2024-07-24T19:44:17.010000"],["2024-07-24T19:44:18.010000"],["2024-07-24T19:44:19.010000"],["2024-07-24T19:44:20.010000"],["2024-07-24T19:44:21.010000"],["2024-07-24T19:44:22.010000"],["2024-07-24T19:44:23.010000"],["2024-07-24T19:44:24.010000"],["2024-07-24T19:44:25.010000"],["2024-07-24T19:44:26.010000"],["2024-07-24T19:44:27.010000"],["2024-07-24T19:44:28.010000"],["2024-07-24T19:44:29.010000"],["2024-07-24T19:44:30.010000"],["2024-07-24T19:44:31.010000"],["2024-07-24T19:44:32.010000"],["2024-07-24T19:44:33.010000"],["2024-07-24T19:44:34.010000"],["2024-07-24T19:44:35.010000"],["2024-07-24T19:44:36.010000"],["2024-07-24T19:44:37.010000"],["2024-07-24T19:44:38.010000"],["2024-07-24T19:44:39.010000"],["2024-07-24T19:44:40.010000"],["2024-07-24T19:44:41.010000"],["2024-07-24T19:44:42.010000"],["2024-07-24T19:44:43.010000"],["2024-07-24T19:44:44.010000"],["2024-07-24T19:44:45.010000"],["2024-07-24T19:44:46.010000"],["2024-07-24T19:44:47.010000"],["2024-07-24T19:44:48.010000"],["2024-07-24T19:44:49.010000"],["2024-07-24T19:44:50.010000"],["2024-07-24T19:44:51.010000"],["2024-07-24T19:44:52.010000"],["2024-07-24T19:44:53.010000"],["2024-07-24T19:44:54.010000"],["2024-07-24T19:44:55.010000"],["2024-07-24T19:44:56.010000"],["2024-07-24T19:44:57.010000"],["2024-07-24T19:44:58.010000"],["2024-07-24T19:44:59.010000"],["2024-07-24T19:45:00.010000"],["2024-07-24T19:45:01.010000"],["2024-07-24T19:45:02.010000"],["2024-07-24T19:45:03.010000"],["2024-07-24T19:45:04.010000"],["2024-07-24T19:45:05.010000"],["2024-07-24T19:45:06.010000"],["2024-07-24T19:45:07.010000"],["2024-07-24T19:45:08.010000"],["2024-07-24T19:45:09.010000"],["2024-07-24T19:45:10.010000"],["2024-07-24T19:45:11.010000"],["2024-07-24T19:45:12.010000"],["2024-07-24T19:45:13.010000"],["2024-07-24T19:45:14.010000"],["2024-07-24T19:45:15.010000"],["2024-07-24T19:45:16.010000"],["2024-07-24T19:45:17.010000"],["2024-07-24T19:45:18.010000"],["2024-07-24T19:45:19.010000"],["2024-07-24T19:45:20.010000"],["2024-07-24T19:45:21.010000"],["2024-07-24T19:45:22.010000"],["2024-07-24T19:45:23.010000"],["2024-07-24T19:45:24.010000"],["2024-07-24T19:45:25.010000"],["2024-07-24T19:45:26.010000"],["2024-07-24T19:45:27.010000"],["2024-07-24T19:45:28.010000"],["2024-07-24T19:45:29.010000"],["2024-07-24T19:45:30.010000"],["2024-07-24T19:45:31.010000"],["2024-07-24T19:45:32.010000"],["2024-07-24T19:45:33.010000"],["2024-07-24T19:45:34.010000"],["2024-07-24T19:45:35.010000"],["2024-07-24T19:45:36.010000"],["2024-07-24T19:45:37.010000"],["2024-07-24T19:45:38.010000"],["2024-07-24T19:45:39.010000"],["2024-07-24T19:45:40.010000"],["2024-07-24T19:45:41.010000"],["2024-07-24T19:45:42.010000"],["2024-07-24T19:45:43.010000"],["2024-07-24T19:45:44.010000"],["2024-07-24T19:45:45.010000"],["2024-07-24T19:45:46.010000"],["2024-07-24T19:45:47.010000"],["2024-07-24T19:45:48.010000"],["2024-07-24T19:45:49.010000"],["2024-07-24T19:45:50.010000"],["2024-07-24T19:45:51.010000"],["2024-07-24T19:45:52.010000"],["2024-07-24T19:45:53.010000"],["2024-07-24T19:45:54.010000"],["2024-07-24T19:45:55.010000"],["2024-07-24T19:45:56.010000"],["2024-07-24T19:45:57.010000"],["2024-07-24T19:45:58.010000"],["2024-07-24T19:45:59.010000"],["2024-07-24T19:46:00.010000"],["2024-07-24T19:46:01.010000"],["2024-07-24T19:46:02.010000"],["2024-07-24T19:46:03.010000"],["2024-07-24T19:46:04.010000"],["2024-07-24T19:46:05.010000"],["2024-07-24T19:46:06.010000"],["2024-07-24T19:46:07.010000"],["2024-07-24T19:46:08.010000"],["2024-07-24T19:46:09.010000"],["2024-07-24T19:46:10.010000"],["2024-07-24T19:46:11.010000"],["2024-07-24T19:46:12.010000"],["2024-07-24T19:46:13.010000"],["2024-07-24T19:46:14.010000"],["2024-07-24T19:46:15.010000"],["2024-07-24T19:46:16.010000"],["2024-07-24T19:46:17.010000"],["2024-07-24T19:46:18.010000"],["2024-07-24T19:46:19.010000"],["2024-07-24T19:46:20.010000"],["2024-07-24T19:46:21.010000"],["2024-07-24T19:46:22.010000"],["2024-07-24T19:46:23.010000"],["2024-07-24T19:46:24.010000"],["2024-07-24T19:46:25.010000"],["2024-07-24T19:46:26.010000"],["2024-07-24T19:46:27.010000"],["2024-07-24T19:46:28.010000"],["2024-07-24T19:46:29.010000"],["2024-07-24T19:46:30.010000"],["2024-07-24T19:46:31.010000"],["2024-07-24T19:46:32.010000"],["2024-07-24T19:46:33.010000"],["2024-07-24T19:46:34.010000"],["2024-07-24T19:46:35.010000"],["2024-07-24T19:46:36.010000"],["2024-07-24T19:46:37.010000"],["2024-07-24T19:46:38.010000"],["2024-07-24T19:46:39.010000"],["2024-07-24T19:46:40.010000"],["2024-07-24T19:46:41.010000"],["2024-07-24T19:46:42.010000"],["2024-07-24T19:46:43.010000"],["2024-07-24T19:46:44.010000"],["2024-07-24T19:46:45.010000"],["2024-07-24T19:46:46.010000"],["2024-07-24T19:46:47.010000"],["2024-07-24T19:46:48.010000"],["2024-07-24T19:46:49.010000"],["2024-07-24T19:46:50.010000"],["2024-07-24T19:46:51.010000"],["2024-07-24T19:46:52.010000"],["2024-07-24T19:46:53.010000"],["2024-07-24T19:46:54.010000"],["2024-07-24T19:46:55.010000"],["2024-07-24T19:46:56.010000"],["2024-07-24T19:46:57.010000"],["2024-07-24T19:46:58.010000"],["2024-07-24T19:46:59.010000"],["2024-07-24T19:47:00.010000"],["2024-07-24T19:47:01.010000"],["2024-07-24T19:47:02.010000"],["2024-07-24T19:47:03.010000"],["2024-07-24T19:47:04.010000"],["2024-07-24T19:47:05.010000"],["2024-07-24T19:47:06.010000"],["2024-07-24T19:47:07.010000"],["2024-07-24T19:47:08.010000"],["2024-07-24T19:47:09.010000"],["2024-07-24T19:47:10.010000"],["2024-07-24T19:47:11.010000"],["2024-07-24T19:47:12.010000"],["2024-07-24T19:47:13.010000"],["2024-07-24T19:47:14.010000"],["2024-07-24T19:47:15.010000"],["2024-07-24T19:47:16.010000"],["2024-07-24T19:47:17.010000"],["2024-07-24T19:47:18.010000"],["2024-07-24T19:47:19.010000"],["2024-07-24T19:47:20.010000"],["2024-07-24T19:47:21.010000"],["2024-07-24T19:47:22.010000"],["2024-07-24T19:47:23.010000"],["2024-07-24T19:47:24.010000"],["2024-07-24T19:47:25.010000"],["2024-07-24T19:47:26.010000"],["2024-07-24T19:47:27.010000"],["2024-07-24T19:47:28.010000"],["2024-07-24T19:47:29.010000"],["2024-07-24T19:47:30.010000"],["2024-07-24T19:47:31.010000"],["2024-07-24T19:47:32.010000"],["2024-07-24T19:47:33.010000"],["2024-07-24T19:47:34.010000"],["2024-07-24T19:47:35.010000"],["2024-07-24T19:47:36.010000"],["2024-07-24T19:47:37.010000"],["2024-07-24T19:47:38.010000"],["2024-07-24T19:47:39.010000"],["2024-07-24T19:47:40.010000"],["2024-07-24T19:47:41.010000"],["2024-07-24T19:47:42.010000"],["2024-07-24T19:47:43.010000"],["2024-07-24T19:47:44.010000"],["2024-07-24T19:47:45.010000"],["2024-07-24T19:47:46.010000"],["2024-07-24T19:47:47.010000"],["2024-07-24T19:47:48.010000"],["2024-07-24T19:47:49.010000"],["2024-07-24T19:47:50.010000"],["2024-07-24T19:47:51.010000"],["2024-07-24T19:47:52.010000"],["2024-07-24T19:47:53.010000"],["2024-07-24T19:47:54.010000"],["2024-07-24T19:47:55.010000"],["2024-07-24T19:47:56.010000"],["2024-07-24T19:47:57.010000"],["2024-07-24T19:47:58.010000"],["2024-07-24T19:47:59.010000"],["2024-07-24T19:48:00.010000"],["2024-07-24T19:48:01.010000"],["2024-07-24T19:48:02.010000"],["2024-07-24T19:48:03.010000"],["2024-07-24T19:48:04.010000"],["2024-07-24T19:48:05.010000"],["2024-07-24T19:48:06.010000"],["2024-07-24T19:48:07.010000"],["2024-07-24T19:48:08.010000"],["2024-07-24T19:48:09.010000"],["2024-07-24T19:48:10.010000"],["2024-07-24T19:48:11.010000"],["2024-07-24T19:48:12.010000"],["2024-07-24T19:48:13.010000"],["2024-07-24T19:48:14.010000"],["2024-07-24T19:48:15.010000"],["2024-07-24T19:48:16.010000"],["2024-07-24T19:48:17.010000"],["2024-07-24T19:48:18.010000"],["2024-07-24T19:48:19.010000"],["2024-07-24T19:48:20.010000"],["2024-07-24T19:48:21.010000"],["2024-07-24T19:48:22.010000"],["2024-07-24T19:48:23.010000"],["2024-07-24T19:48:24.010000"],["2024-07-24T19:48:25.010000"],["2024-07-24T19:48:26.010000"],["2024-07-24T19:48:27.010000"],["2024-07-24T19:48:28.010000"],["2024-07-24T19:48:29.010000"],["2024-07-24T19:48:30.010000"],["2024-07-24T19:48:31.010000"],["2024-07-24T19:48:32.010000"],["2024-07-24T19:48:33.010000"],["2024-07-24T19:48:34.010000"],["2024-07-24T19:48:35.010000"],["2024-07-24T19:48:36.010000"],["2024-07-24T19:48:37.010000"],["2024-07-24T19:48:38.010000"],["2024-07-24T19:48:39.010000"],["2024-07-24T19:48:40.010000"],["2024-07-24T19:48:41.010000"],["2024-07-24T19:48:42.010000"],["2024-07-24T19:48:43.010000"],["2024-07-24T19:48:44.010000"],["2024-07-24T19:48:45.010000"],["2024-07-24T19:48:46.010000"],["2024-07-24T19:48:47.010000"],["2024-07-24T19:48:48.010000"],["2024-07-24T19:48:49.010000"],["2024-07-24T19:48:50.010000"],["2024-07-24T19:48:51.010000"],["2024-07-24T19:48:52.010000"],["2024-07-24T19:48:53.010000"],["2024-07-24T19:48:54.010000"],["2024-07-24T19:48:55.010000"],["2024-07-24T19:48:56.010000"],["2024-07-24T19:48:57.010000"],["2024-07-24T19:48:58.010000"],["2024-07-24T19:48:59.010000"],["2024-07-24T19:49:00.010000"],["2024-07-24T19:49:01.010000"],["2024-07-24T19:49:02.010000"],["2024-07-24T19:49:03.010000"],["2024-07-24T19:49:04.010000"],["2024-07-24T19:49:05.010000"],["2024-07-24T19:49:06.010000"],["2024-07-24T19:49:07.010000"],["2024-07-24T19:49:08.010000"],["2024-07-24T19:49:09.010000"],["2024-07-24T19:49:10.010000"],["2024-07-24T19:49:11.010000"],["2024-07-24T19:49:12.010000"],["2024-07-24T19:49:13.010000"],["2024-07-24T19:49:14.010000"],["2024-07-24T19:49:15.010000"],["2024-07-24T19:49:16.010000"],["2024-07-24T19:49:17.010000"],["2024-07-24T19:49:18.010000"],["2024-07-24T19:49:19.010000"],["2024-07-24T19:49:20.010000"],["2024-07-24T19:49:21.010000"],["2024-07-24T19:49:22.010000"],["2024-07-24T19:49:23.010000"],["2024-07-24T19:49:24.010000"],["2024-07-24T19:49:25.010000"],["2024-07-24T19:49:26.010000"],["2024-07-24T19:49:27.010000"],["2024-07-24T19:49:28.010000"],["2024-07-24T19:49:29.010000"],["2024-07-24T19:49:30.010000"],["2024-07-24T19:49:31.010000"],["2024-07-24T19:49:32.010000"],["2024-07-24T19:49:33.010000"],["2024-07-24T19:49:34.010000"],["2024-07-24T19:49:35.010000"],["2024-07-24T19:49:36.010000"],["2024-07-24T19:49:37.010000"],["2024-07-24T19:49:38.010000"],["2024-07-24T19:49:39.010000"],["2024-07-24T19:49:40.010000"],["2024-07-24T19:49:41.010000"],["2024-07-24T19:49:42.010000"],["2024-07-24T19:49:43.010000"],["2024-07-24T19:49:44.010000"],["2024-07-24T19:49:45.010000"],["2024-07-24T19:49:46.010000"],["2024-07-24T19:49:47.010000"],["2024-07-24T19:49:48.010000"],["2024-07-24T19:49:49.010000"],["2024-07-24T19:49:50.010000"],["2024-07-24T19:49:51.010000"],["2024-07-24T19:49:52.010000"],["2024-07-24T19:49:53.010000"],["2024-07-24T19:49:54.010000"],["2024-07-24T19:49:55.010000"],["2024-07-24T19:49:56.010000"],["2024-07-24T19:49:57.010000"],["2024-07-24T19:49:58.010000"],["2024-07-24T19:49:59.010000"],["2024-07-24T19:50:00.010000"],["2024-07-24T19:50:01.010000"],["2024-07-24T19:50:02.010000"],["2024-07-24T19:50:03.010000"],["2024-07-24T19:50:04.010000"],["2024-07-24T19:50:05.010000"],["2024-07-24T19:50:06.010000"],["2024-07-24T19:50:07.010000"],["2024-07-24T19:50:08.010000"],["2024-07-24T19:50:09.010000"],["2024-07-24T19:50:10.010000"],["2024-07-24T19:50:11.010000"],["2024-07-24T19:50:12.010000"],["2024-07-24T19:50:13.010000"],["2024-07-24T19:50:14.010000"],["2024-07-24T19:50:15.010000"],["2024-07-24T19:50:16.010000"],["2024-07-24T19:50:17.010000"],["2024-07-24T19:50:18.010000"],["2024-07-24T19:50:19.010000"],["2024-07-24T19:50:20.010000"],["2024-07-24T19:50:21.010000"],["2024-07-24T19:50:22.010000"],["2024-07-24T19:50:23.010000"],["2024-07-24T19:50:24.010000"],["2024-07-24T19:50:25.010000"],["2024-07-24T19:50:26.010000"],["2024-07-24T19:50:27.010000"],["2024-07-24T19:50:28.010000"],["2024-07-24T19:50:29.010000"],["2024-07-24T19:50:30.010000"],["2024-07-24T19:50:31.010000"],["2024-07-24T19:50:32.010000"],["2024-07-24T19:50:33.010000"],["2024-07-24T19:50:34.010000"],["2024-07-24T19:50:35.010000"],["2024-07-24T19:50:36.010000"],["2024-07-24T19:50:37.010000"],["2024-07-24T19:50:38.010000"],["2024-07-24T19:50:39.010000"],["2024-07-24T19:50:40.010000"],["2024-07-24T19:50:41.010000"],["2024-07-24T19:50:42.010000"],["2024-07-24T19:50:43.010000"],["2024-07-24T19:50:44.010000"],["2024-07-24T19:50:45.010000"],["2024-07-24T19:50:46.010000"],["2024-07-24T19:50:47.010000"],["2024-07-24T19:50:48.010000"],["2024-07-24T19:50:49.010000"],["2024-07-24T19:50:50.010000"],["2024-07-24T19:50:51.010000"],["2024-07-24T19:50:52.010000"],["2024-07-24T19:50:53.010000"],["2024-07-24T19:50:54.010000"],["2024-07-24T19:50:55.010000"],["2024-07-24T19:50:56.010000"],["2024-07-24T19:50:57.010000"],["2024-07-24T19:50:58.010000"],["2024-07-24T19:50:59.010000"],["2024-07-24T19:51:00.010000"],["2024-07-24T19:51:01.010000"],["2024-07-24T19:51:02.010000"],["2024-07-24T19:51:03.010000"],["2024-07-24T19:51:04.010000"],["2024-07-24T19:51:05.010000"],["2024-07-24T19:51:06.010000"],["2024-07-24T19:51:07.010000"],["2024-07-24T19:51:08.010000"],["2024-07-24T19:51:09.010000"],["2024-07-24T19:51:10.010000"],["2024-07-24T19:51:11.010000"],["2024-07-24T19:51:12.010000"],["2024-07-24T19:51:13.010000"],["2024-07-24T19:51:14.010000"],["2024-07-24T19:51:15.010000"],["2024-07-24T19:51:16.010000"],["2024-07-24T19:51:17.010000"],["2024-07-24T19:51:18.010000"],["2024-07-24T19:51:19.010000"],["2024-07-24T19:51:20.010000"],["2024-07-24T19:51:21.010000"],["2024-07-24T19:51:22.010000"],["2024-07-24T19:51:23.010000"],["2024-07-24T19:51:24.010000"],["2024-07-24T19:51:25.010000"],["2024-07-24T19:51:26.010000"],["2024-07-24T19:51:27.010000"],["2024-07-24T19:51:28.010000"],["2024-07-24T19:51:29.010000"],["2024-07-24T19:51:30.010000"],["2024-07-24T19:51:31.010000"],["2024-07-24T19:51:32.010000"],["2024-07-24T19:51:33.010000"],["2024-07-24T19:51:34.010000"],["2024-07-24T19:51:35.010000"],["2024-07-24T19:51:36.010000"],["2024-07-24T19:51:37.010000"],["2024-07-24T19:51:38.010000"],["2024-07-24T19:51:39.010000"],["2024-07-24T19:51:40.010000"],["2024-07-24T19:51:41.010000"],["2024-07-24T19:51:42.010000"],["2024-07-24T19:51:43.010000"],["2024-07-24T19:51:44.010000"],["2024-07-24T19:51:45.010000"],["2024-07-24T19:51:46.010000"],["2024-07-24T19:51:47.010000"],["2024-07-24T19:51:48.010000"],["2024-07-24T19:51:49.010000"],["2024-07-24T19:51:50.010000"],["2024-07-24T19:51:51.010000"],["2024-07-24T19:51:52.010000"],["2024-07-24T19:51:53.010000"],["2024-07-24T19:51:54.010000"],["2024-07-24T19:51:55.010000"],["2024-07-24T19:51:56.010000"],["2024-07-24T19:51:57.010000"],["2024-07-24T19:51:58.010000"],["2024-07-24T19:51:59.010000"],["2024-07-24T19:52:00.010000"],["2024-07-24T19:52:01.010000"],["2024-07-24T19:52:02.010000"],["2024-07-24T19:52:03.010000"],["2024-07-24T19:52:04.010000"],["2024-07-24T19:52:05.010000"],["2024-07-24T19:52:06.010000"],["2024-07-24T19:52:07.010000"],["2024-07-24T19:52:08.010000"],["2024-07-24T19:52:09.010000"],["2024-07-24T19:52:10.010000"],["2024-07-24T19:52:11.010000"],["2024-07-24T19:52:12.010000"],["2024-07-24T19:52:13.010000"],["2024-07-24T19:52:14.010000"],["2024-07-24T19:52:15.010000"],["2024-07-24T19:52:16.010000"],["2024-07-24T19:52:17.010000"],["2024-07-24T19:52:18.010000"],["2024-07-24T19:52:19.010000"],["2024-07-24T19:52:20.010000"],["2024-07-24T19:52:21.010000"],["2024-07-24T19:52:22.010000"],["2024-07-24T19:52:23.010000"],["2024-07-24T19:52:24.010000"],["2024-07-24T19:52:25.010000"],["2024-07-24T19:52:26.010000"],["2024-07-24T19:52:27.010000"],["2024-07-24T19:52:28.010000"],["2024-07-24T19:52:29.010000"],["2024-07-24T19:52:30.010000"],["2024-07-24T19:52:31.010000"],["2024-07-24T19:52:32.010000"],["2024-07-24T19:52:33.010000"],["2024-07-24T19:52:34.010000"],["2024-07-24T19:52:35.010000"],["2024-07-24T19:52:36.010000"],["2024-07-24T19:52:37.010000"],["2024-07-24T19:52:38.010000"],["2024-07-24T19:52:39.010000"],["2024-07-24T19:52:40.010000"],["2024-07-24T19:52:41.010000"],["2024-07-24T19:52:42.010000"],["2024-07-24T19:52:43.010000"],["2024-07-24T19:52:44.010000"],["2024-07-24T19:52:45.010000"],["2024-07-24T19:52:46.010000"],["2024-07-24T19:52:47.010000"],["2024-07-24T19:52:48.010000"],["2024-07-24T19:52:49.010000"],["2024-07-24T19:52:50.010000"],["2024-07-24T19:52:51.010000"],["2024-07-24T19:52:52.010000"],["2024-07-24T19:52:53.010000"],["2024-07-24T19:52:54.010000"],["2024-07-24T19:52:55.010000"],["2024-07-24T19:52:56.010000"],["2024-07-24T19:52:57.010000"],["2024-07-24T19:52:58.010000"],["2024-07-24T19:52:59.010000"],["2024-07-24T19:53:00.010000"],["2024-07-24T19:53:01.010000"],["2024-07-24T19:53:02.010000"],["2024-07-24T19:53:03.010000"],["2024-07-24T19:53:04.010000"],["2024-07-24T19:53:05.010000"],["2024-07-24T19:53:06.010000"],["2024-07-24T19:53:07.010000"],["2024-07-24T19:53:08.010000"],["2024-07-24T19:53:09.010000"],["2024-07-24T19:53:10.010000"],["2024-07-24T19:53:11.010000"],["2024-07-24T19:53:12.010000"],["2024-07-24T19:53:13.010000"],["2024-07-24T19:53:14.010000"],["2024-07-24T19:53:15.010000"],["2024-07-24T19:53:16.010000"],["2024-07-24T19:53:17.010000"],["2024-07-24T19:53:18.010000"],["2024-07-24T19:53:19.010000"],["2024-07-24T19:53:20.010000"],["2024-07-24T19:53:21.010000"],["2024-07-24T19:53:22.010000"],["2024-07-24T19:53:23.010000"],["2024-07-24T19:53:24.010000"],["2024-07-24T19:53:25.010000"],["2024-07-24T19:53:26.010000"],["2024-07-24T19:53:27.010000"],["2024-07-24T19:53:28.010000"],["2024-07-24T19:53:29.010000"],["2024-07-24T19:53:30.010000"],["2024-07-24T19:53:31.010000"],["2024-07-24T19:53:32.010000"],["2024-07-24T19:53:33.010000"],["2024-07-24T19:53:34.010000"],["2024-07-24T19:53:35.010000"],["2024-07-24T19:53:36.010000"],["2024-07-24T19:53:37.010000"],["2024-07-24T19:53:38.010000"],["2024-07-24T19:53:39.010000"],["2024-07-24T19:53:40.010000"],["2024-07-24T19:53:41.010000"],["2024-07-24T19:53:42.010000"],["2024-07-24T19:53:43.010000"],["2024-07-24T19:53:44.010000"],["2024-07-24T19:53:45.010000"],["2024-07-24T19:53:46.010000"],["2024-07-24T19:53:47.010000"],["2024-07-24T19:53:48.010000"],["2024-07-24T19:53:49.010000"],["2024-07-24T19:53:50.010000"],["2024-07-24T19:53:51.010000"],["2024-07-24T19:53:52.010000"],["2024-07-24T19:53:53.010000"],["2024-07-24T19:53:54.010000"],["2024-07-24T19:53:55.010000"],["2024-07-24T19:53:56.010000"],["2024-07-24T19:53:57.010000"],["2024-07-24T19:53:58.010000"],["2024-07-24T19:53:59.010000"],["2024-07-24T19:54:00.010000"],["2024-07-24T19:54:01.010000"],["2024-07-24T19:54:02.010000"],["2024-07-24T19:54:03.010000"],["2024-07-24T19:54:04.010000"],["2024-07-24T19:54:05.010000"],["2024-07-24T19:54:06.010000"],["2024-07-24T19:54:07.010000"],["2024-07-24T19:54:08.010000"],["2024-07-24T19:54:09.010000"],["2024-07-24T19:54:10.010000"],["2024-07-24T19:54:11.010000"],["2024-07-24T19:54:12.010000"],["2024-07-24T19:54:13.010000"],["2024-07-24T19:54:14.010000"],["2024-07-24T19:54:15.010000"],["2024-07-24T19:54:16.010000"],["2024-07-24T19:54:17.010000"],["2024-07-24T19:54:18.010000"],["2024-07-24T19:54:19.010000"],["2024-07-24T19:54:20.010000"],["2024-07-24T19:54:21.010000"],["2024-07-24T19:54:22.010000"],["2024-07-24T19:54:23.010000"],["2024-07-24T19:54:24.010000"],["2024-07-24T19:54:25.010000"],["2024-07-24T19:54:26.010000"],["2024-07-24T19:54:27.010000"],["2024-07-24T19:54:28.010000"],["2024-07-24T19:54:29.010000"],["2024-07-24T19:54:30.010000"],["2024-07-24T19:54:31.010000"],["2024-07-24T19:54:32.010000"],["2024-07-24T19:54:33.010000"],["2024-07-24T19:54:34.010000"],["2024-07-24T19:54:35.010000"],["2024-07-24T19:54:36.010000"],["2024-07-24T19:54:37.010000"],["2024-07-24T19:54:38.010000"],["2024-07-24T19:54:39.010000"],["2024-07-24T19:54:40.010000"],["2024-07-24T19:54:41.010000"],["2024-07-24T19:54:42.010000"],["2024-07-24T19:54:43.010000"],["2024-07-24T19:54:44.010000"],["2024-07-24T19:54:45.010000"],["2024-07-24T19:54:46.010000"],["2024-07-24T19:54:47.010000"],["2024-07-24T19:54:48.010000"],["2024-07-24T19:54:49.010000"],["2024-07-24T19:54:50.010000"],["2024-07-24T19:54:51.010000"],["2024-07-24T19:54:52.010000"],["2024-07-24T19:54:53.010000"],["2024-07-24T19:54:54.010000"],["2024-07-24T19:54:55.010000"],["2024-07-24T19:54:56.010000"],["2024-07-24T19:54:57.010000"],["2024-07-24T19:54:58.010000"],["2024-07-24T19:54:59.010000"],["2024-07-24T19:55:00.010000"],["2024-07-24T19:55:01.010000"],["2024-07-24T19:55:02.010000"],["2024-07-24T19:55:03.010000"],["2024-07-24T19:55:04.010000"],["2024-07-24T19:55:05.010000"],["2024-07-24T19:55:06.010000"],["2024-07-24T19:55:07.010000"],["2024-07-24T19:55:08.010000"],["2024-07-24T19:55:09.010000"],["2024-07-24T19:55:10.010000"],["2024-07-24T19:55:11.010000"],["2024-07-24T19:55:12.010000"],["2024-07-24T19:55:13.010000"],["2024-07-24T19:55:14.010000"],["2024-07-24T19:55:15.010000"],["2024-07-24T19:55:16.010000"],["2024-07-24T19:55:17.010000"],["2024-07-24T19:55:18.010000"],["2024-07-24T19:55:19.010000"],["2024-07-24T19:55:20.010000"],["2024-07-24T19:55:21.010000"],["2024-07-24T19:55:22.010000"],["2024-07-24T19:55:23.010000"],["2024-07-24T19:55:24.010000"],["2024-07-24T19:55:25.010000"],["2024-07-24T19:55:26.010000"],["2024-07-24T19:55:27.010000"],["2024-07-24T19:55:28.010000"],["2024-07-24T19:55:29.010000"],["2024-07-24T19:55:30.010000"],["2024-07-24T19:55:31.010000"],["2024-07-24T19:55:32.010000"],["2024-07-24T19:55:33.010000"],["2024-07-24T19:55:34.010000"],["2024-07-24T19:55:35.010000"],["2024-07-24T19:55:36.010000"],["2024-07-24T19:55:37.010000"],["2024-07-24T19:55:38.010000"],["2024-07-24T19:55:39.010000"],["2024-07-24T19:55:40.010000"],["2024-07-24T19:55:41.010000"],["2024-07-24T19:55:42.010000"],["2024-07-24T19:55:43.010000"],["2024-07-24T19:55:44.010000"],["2024-07-24T19:55:45.010000"],["2024-07-24T19:55:46.010000"],["2024-07-24T19:55:47.010000"],["2024-07-24T19:55:48.010000"],["2024-07-24T19:55:49.010000"],["2024-07-24T19:55:50.010000"],["2024-07-24T19:55:51.010000"],["2024-07-24T19:55:52.010000"],["2024-07-24T19:55:53.010000"],["2024-07-24T19:55:54.010000"],["2024-07-24T19:55:55.010000"],["2024-07-24T19:55:56.010000"],["2024-07-24T19:55:57.010000"],["2024-07-24T19:55:58.010000"],["2024-07-24T19:55:59.010000"],["2024-07-24T19:56:00.010000"],["2024-07-24T19:56:01.010000"],["2024-07-24T19:56:02.010000"],["2024-07-24T19:56:03.010000"],["2024-07-24T19:56:04.010000"],["2024-07-24T19:56:05.010000"],["2024-07-24T19:56:06.010000"],["2024-07-24T19:56:07.010000"],["2024-07-24T19:56:08.010000"],["2024-07-24T19:56:09.010000"],["2024-07-24T19:56:10.010000"],["2024-07-24T19:56:11.010000"],["2024-07-24T19:56:12.010000"],["2024-07-24T19:56:13.010000"],["2024-07-24T19:56:14.010000"],["2024-07-24T19:56:15.010000"],["2024-07-24T19:56:16.010000"],["2024-07-24T19:56:17.010000"],["2024-07-24T19:56:18.010000"],["2024-07-24T19:56:19.010000"],["2024-07-24T19:56:20.010000"],["2024-07-24T19:56:21.010000"],["2024-07-24T19:56:22.010000"],["2024-07-24T19:56:23.010000"],["2024-07-24T19:56:24.010000"],["2024-07-24T19:56:25.010000"],["2024-07-24T19:56:26.010000"],["2024-07-24T19:56:27.010000"],["2024-07-24T19:56:28.010000"],["2024-07-24T19:56:29.010000"],["2024-07-24T19:56:30.010000"],["2024-07-24T19:56:31.010000"],["2024-07-24T19:56:32.010000"],["2024-07-24T19:56:33.010000"],["2024-07-24T19:56:34.010000"],["2024-07-24T19:56:35.010000"],["2024-07-24T19:56:36.010000"],["2024-07-24T19:56:37.010000"],["2024-07-24T19:56:38.010000"],["2024-07-24T19:56:39.010000"],["2024-07-24T19:56:40.010000"],["2024-07-24T19:56:41.010000"],["2024-07-24T19:56:42.010000"],["2024-07-24T19:56:43.010000"],["2024-07-24T19:56:44.010000"],["2024-07-24T19:56:45.010000"],["2024-07-24T19:56:46.010000"],["2024-07-24T19:56:47.010000"],["2024-07-24T19:56:48.010000"],["2024-07-24T19:56:49.010000"],["2024-07-24T19:56:50.010000"],["2024-07-24T19:56:51.010000"],["2024-07-24T19:56:52.010000"],["2024-07-24T19:56:53.010000"],["2024-07-24T19:56:54.010000"],["2024-07-24T19:56:55.010000"],["2024-07-24T19:56:56.010000"],["2024-07-24T19:56:57.010000"],["2024-07-24T19:56:58.010000"],["2024-07-24T19:56:59.010000"],["2024-07-24T19:57:00.010000"],["2024-07-24T19:57:01.010000"],["2024-07-24T19:57:02.010000"],["2024-07-24T19:57:03.010000"],["2024-07-24T19:57:04.010000"],["2024-07-24T19:57:05.010000"],["2024-07-24T19:57:06.010000"],["2024-07-24T19:57:07.010000"],["2024-07-24T19:57:08.010000"],["2024-07-24T19:57:09.010000"],["2024-07-24T19:57:10.010000"],["2024-07-24T19:57:11.010000"],["2024-07-24T19:57:12.010000"],["2024-07-24T19:57:13.010000"],["2024-07-24T19:57:14.010000"],["2024-07-24T19:57:15.010000"],["2024-07-24T19:57:16.010000"],["2024-07-24T19:57:17.010000"],["2024-07-24T19:57:18.010000"],["2024-07-24T19:57:19.010000"],["2024-07-24T19:57:20.010000"],["2024-07-24T19:57:21.010000"],["2024-07-24T19:57:22.010000"],["2024-07-24T19:57:23.010000"],["2024-07-24T19:57:24.010000"],["2024-07-24T19:57:25.010000"],["2024-07-24T19:57:26.010000"],["2024-07-24T19:57:27.010000"],["2024-07-24T19:57:28.010000"],["2024-07-24T19:57:29.010000"],["2024-07-24T19:57:30.010000"],["2024-07-24T19:57:31.010000"],["2024-07-24T19:57:32.010000"],["2024-07-24T19:57:33.010000"],["2024-07-24T19:57:34.010000"],["2024-07-24T19:57:35.010000"],["2024-07-24T19:57:36.010000"],["2024-07-24T19:57:37.010000"],["2024-07-24T19:57:38.010000"],["2024-07-24T19:57:39.010000"],["2024-07-24T19:57:40.010000"],["2024-07-24T19:57:41.010000"],["2024-07-24T19:57:42.010000"],["2024-07-24T19:57:43.010000"],["2024-07-24T19:57:44.010000"],["2024-07-24T19:57:45.010000"],["2024-07-24T19:57:46.010000"],["2024-07-24T19:57:47.010000"],["2024-07-24T19:57:48.010000"],["2024-07-24T19:57:49.010000"],["2024-07-24T19:57:50.010000"],["2024-07-24T19:57:51.010000"],["2024-07-24T19:57:52.010000"],["2024-07-24T19:57:53.010000"],["2024-07-24T19:57:54.010000"],["2024-07-24T19:57:55.010000"],["2024-07-24T19:57:56.010000"],["2024-07-24T19:57:57.010000"],["2024-07-24T19:57:58.010000"],["2024-07-24T19:57:59.010000"],["2024-07-24T19:58:00.010000"],["2024-07-24T19:58:01.010000"],["2024-07-24T19:58:02.010000"],["2024-07-24T19:58:03.010000"],["2024-07-24T19:58:04.010000"],["2024-07-24T19:58:05.010000"],["2024-07-24T19:58:06.010000"],["2024-07-24T19:58:07.010000"],["2024-07-24T19:58:08.010000"],["2024-07-24T19:58:09.010000"],["2024-07-24T19:58:10.010000"],["2024-07-24T19:58:11.010000"],["2024-07-24T19:58:12.010000"],["2024-07-24T19:58:13.010000"],["2024-07-24T19:58:14.010000"],["2024-07-24T19:58:15.010000"],["2024-07-24T19:58:16.010000"],["2024-07-24T19:58:17.010000"],["2024-07-24T19:58:18.010000"],["2024-07-24T19:58:19.010000"],["2024-07-24T19:58:20.010000"],["2024-07-24T19:58:21.010000"],["2024-07-24T19:58:22.010000"],["2024-07-24T19:58:23.010000"],["2024-07-24T19:58:24.010000"],["2024-07-24T19:58:25.010000"],["2024-07-24T19:58:26.010000"],["2024-07-24T19:58:27.010000"],["2024-07-24T19:58:28.010000"],["2024-07-24T19:58:29.010000"],["2024-07-24T19:58:30.010000"],["2024-07-24T19:58:31.010000"],["2024-07-24T19:58:32.010000"],["2024-07-24T19:58:33.010000"],["2024-07-24T19:58:34.010000"],["2024-07-24T19:58:35.010000"],["2024-07-24T19:58:36.010000"],["2024-07-24T19:58:37.010000"],["2024-07-24T19:58:38.010000"],["2024-07-24T19:58:39.010000"],["2024-07-24T19:58:40.010000"],["2024-07-24T19:58:41.010000"],["2024-07-24T19:58:42.010000"],["2024-07-24T19:58:43.010000"],["2024-07-24T19:58:44.010000"],["2024-07-24T19:58:45.010000"],["2024-07-24T19:58:46.010000"],["2024-07-24T19:58:47.010000"],["2024-07-24T19:58:48.010000"],["2024-07-24T19:58:49.010000"],["2024-07-24T19:58:50.010000"],["2024-07-24T19:58:51.010000"],["2024-07-24T19:58:52.010000"],["2024-07-24T19:58:53.010000"],["2024-07-24T19:58:54.010000"],["2024-07-24T19:58:55.010000"],["2024-07-24T19:58:56.010000"],["2024-07-24T19:58:57.010000"],["2024-07-24T19:58:58.010000"],["2024-07-24T19:58:59.010000"],["2024-07-24T19:59:00.010000"],["2024-07-24T19:59:01.010000"],["2024-07-24T19:59:02.010000"],["2024-07-24T19:59:03.010000"],["2024-07-24T19:59:04.010000"],["2024-07-24T19:59:05.010000"],["2024-07-24T19:59:06.010000"],["2024-07-24T19:59:07.010000"],["2024-07-24T19:59:08.010000"],["2024-07-24T19:59:09.010000"],["2024-07-24T19:59:10.010000"],["2024-07-24T19:59:11.010000"],["2024-07-24T19:59:12.010000"],["2024-07-24T19:59:13.010000"],["2024-07-24T19:59:14.010000"],["2024-07-24T19:59:15.010000"],["2024-07-24T19:59:16.010000"],["2024-07-24T19:59:17.010000"],["2024-07-24T19:59:18.010000"],["2024-07-24T19:59:19.010000"],["2024-07-24T19:59:20.010000"],["2024-07-24T19:59:21.010000"],["2024-07-24T19:59:22.010000"],["2024-07-24T19:59:23.010000"],["2024-07-24T19:59:24.010000"],["2024-07-24T19:59:25.010000"],["2024-07-24T19:59:26.010000"],["2024-07-24T19:59:27.010000"],["2024-07-24T19:59:28.010000"],["2024-07-24T19:59:29.010000"],["2024-07-24T19:59:30.010000"],["2024-07-24T19:59:31.010000"],["2024-07-24T19:59:32.010000"],["2024-07-24T19:59:33.010000"],["2024-07-24T19:59:34.010000"],["2024-07-24T19:59:35.010000"],["2024-07-24T19:59:36.010000"],["2024-07-24T19:59:37.010000"],["2024-07-24T19:59:38.010000"],["2024-07-24T19:59:39.010000"],["2024-07-24T19:59:40.010000"],["2024-07-24T19:59:41.010000"],["2024-07-24T19:59:42.010000"],["2024-07-24T19:59:43.010000"],["2024-07-24T19:59:44.010000"],["2024-07-24T19:59:45.010000"],["2024-07-24T19:59:46.010000"],["2024-07-24T19:59:47.010000"],["2024-07-24T19:59:48.010000"],["2024-07-24T19:59:49.010000"],["2024-07-24T19:59:50.010000"],["2024-07-24T19:59:51.010000"],["2024-07-24T19:59:52.010000"],["2024-07-24T19:59:53.010000"],["2024-07-24T19:59:54.010000"],["2024-07-24T19:59:55.010000"],["2024-07-24T19:59:56.010000"],["2024-07-24T19:59:57.010000"],["2024-07-24T19:59:58.010000"],["2024-07-24T19:59:59.010000"],["2024-07-24T20:00:00.010000"],["2024-07-24T20:00:01.010000"],["2024-07-24T20:00:02.010000"],["2024-07-24T20:00:03.010000"],["2024-07-24T20:00:04.010000"],["2024-07-24T20:00:05.010000"],["2024-07-24T20:00:06.010000"],["2024-07-24T20:00:07.010000"],["2024-07-24T20:00:08.010000"],["2024-07-24T20:00:09.010000"],["2024-07-24T20:00:10.010000"],["2024-07-24T20:00:11.010000"],["2024-07-24T20:00:12.010000"],["2024-07-24T20:00:13.010000"],["2024-07-24T20:00:14.010000"],["2024-07-24T20:00:15.010000"],["2024-07-24T20:00:16.010000"],["2024-07-24T20:00:17.010000"],["2024-07-24T20:00:18.010000"],["2024-07-24T20:00:19.010000"],["2024-07-24T20:00:20.010000"],["2024-07-24T20:00:21.010000"],["2024-07-24T20:00:22.010000"],["2024-07-24T20:00:23.010000"],["2024-07-24T20:00:24.010000"],["2024-07-24T20:00:25.010000"],["2024-07-24T20:00:26.010000"],["2024-07-24T20:00:27.010000"],["2024-07-24T20:00:28.010000"],["2024-07-24T20:00:29.010000"],["2024-07-24T20:00:30.010000"],["2024-07-24T20:00:31.010000"],["2024-07-24T20:00:32.010000"],["2024-07-24T20:00:33.010000"],["2024-07-24T20:00:34.010000"],["2024-07-24T20:00:35.010000"],["2024-07-24T20:00:36.010000"],["2024-07-24T20:00:37.010000"],["2024-07-24T20:00:38.010000"],["2024-07-24T20:00:39.010000"],["2024-07-24T20:00:40.010000"],["2024-07-24T20:00:41.010000"],["2024-07-24T20:00:42.010000"],["2024-07-24T20:00:43.010000"],["2024-07-24T20:00:44.010000"],["2024-07-24T20:00:45.010000"],["2024-07-24T20:00:46.010000"],["2024-07-24T20:00:47.010000"],["2024-07-24T20:00:48.010000"],["2024-07-24T20:00:49.010000"],["2024-07-24T20:00:50.010000"],["2024-07-24T20:00:51.010000"],["2024-07-24T20:00:52.010000"],["2024-07-24T20:00:53.010000"],["2024-07-24T20:00:54.010000"],["2024-07-24T20:00:55.010000"],["2024-07-24T20:00:56.010000"],["2024-07-24T20:00:57.010000"],["2024-07-24T20:00:58.010000"],["2024-07-24T20:00:59.010000"],["2024-07-24T20:01:00.010000"],["2024-07-24T20:01:01.010000"],["2024-07-24T20:01:02.010000"],["2024-07-24T20:01:03.010000"],["2024-07-24T20:01:04.010000"],["2024-07-24T20:01:05.010000"],["2024-07-24T20:01:06.010000"],["2024-07-24T20:01:07.010000"],["2024-07-24T20:01:08.010000"],["2024-07-24T20:01:09.010000"],["2024-07-24T20:01:10.010000"],["2024-07-24T20:01:11.010000"],["2024-07-24T20:01:12.010000"],["2024-07-24T20:01:13.010000"],["2024-07-24T20:01:14.010000"],["2024-07-24T20:01:15.010000"],["2024-07-24T20:01:16.010000"],["2024-07-24T20:01:17.010000"],["2024-07-24T20:01:18.010000"],["2024-07-24T20:01:19.010000"],["2024-07-24T20:01:20.010000"],["2024-07-24T20:01:21.010000"],["2024-07-24T20:01:22.010000"],["2024-07-24T20:01:23.010000"],["2024-07-24T20:01:24.010000"],["2024-07-24T20:01:25.010000"],["2024-07-24T20:01:26.010000"],["2024-07-24T20:01:27.010000"],["2024-07-24T20:01:28.010000"],["2024-07-24T20:01:29.010000"],["2024-07-24T20:01:30.010000"],["2024-07-24T20:01:31.010000"],["2024-07-24T20:01:32.010000"],["2024-07-24T20:01:33.010000"],["2024-07-24T20:01:34.010000"],["2024-07-24T20:01:35.010000"],["2024-07-24T20:01:36.010000"],["2024-07-24T20:01:37.010000"],["2024-07-24T20:01:38.010000"],["2024-07-24T20:01:39.010000"],["2024-07-24T20:01:40.010000"],["2024-07-24T20:01:41.010000"],["2024-07-24T20:01:42.010000"],["2024-07-24T20:01:43.010000"],["2024-07-24T20:01:44.010000"],["2024-07-24T20:01:45.010000"],["2024-07-24T20:01:46.010000"],["2024-07-24T20:01:47.010000"],["2024-07-24T20:01:48.010000"],["2024-07-24T20:01:49.010000"],["2024-07-24T20:01:50.010000"],["2024-07-24T20:01:51.010000"],["2024-07-24T20:01:52.010000"],["2024-07-24T20:01:53.010000"],["2024-07-24T20:01:54.010000"],["2024-07-24T20:01:55.010000"],["2024-07-24T20:01:56.010000"],["2024-07-24T20:01:57.010000"],["2024-07-24T20:01:58.010000"],["2024-07-24T20:01:59.010000"],["2024-07-24T20:02:00.010000"],["2024-07-24T20:02:01.010000"],["2024-07-24T20:02:02.010000"],["2024-07-24T20:02:03.010000"],["2024-07-24T20:02:04.010000"],["2024-07-24T20:02:05.010000"],["2024-07-24T20:02:06.010000"],["2024-07-24T20:02:07.010000"],["2024-07-24T20:02:08.010000"],["2024-07-24T20:02:09.010000"],["2024-07-24T20:02:10.010000"],["2024-07-24T20:02:11.010000"],["2024-07-24T20:02:12.010000"],["2024-07-24T20:02:13.010000"],["2024-07-24T20:02:14.010000"],["2024-07-24T20:02:15.010000"],["2024-07-24T20:02:16.010000"],["2024-07-24T20:02:17.010000"],["2024-07-24T20:02:18.010000"],["2024-07-24T20:02:19.010000"],["2024-07-24T20:02:20.010000"],["2024-07-24T20:02:21.010000"],["2024-07-24T20:02:22.010000"],["2024-07-24T20:02:23.010000"],["2024-07-24T20:02:24.010000"],["2024-07-24T20:02:25.010000"],["2024-07-24T20:02:26.010000"],["2024-07-24T20:02:27.010000"],["2024-07-24T20:02:28.010000"],["2024-07-24T20:02:29.010000"],["2024-07-24T20:02:30.010000"],["2024-07-24T20:02:31.010000"],["2024-07-24T20:02:32.010000"],["2024-07-24T20:02:33.010000"],["2024-07-24T20:02:34.010000"],["2024-07-24T20:02:35.010000"],["2024-07-24T20:02:36.010000"],["2024-07-24T20:02:37.010000"],["2024-07-24T20:02:38.010000"],["2024-07-24T20:02:39.010000"],["2024-07-24T20:02:40.010000"],["2024-07-24T20:02:41.010000"],["2024-07-24T20:02:42.010000"],["2024-07-24T20:02:43.010000"],["2024-07-24T20:02:44.010000"],["2024-07-24T20:02:45.010000"],["2024-07-24T20:02:46.010000"],["2024-07-24T20:02:47.010000"],["2024-07-24T20:02:48.010000"],["2024-07-24T20:02:49.010000"],["2024-07-24T20:02:50.010000"],["2024-07-24T20:02:51.010000"],["2024-07-24T20:02:52.010000"],["2024-07-24T20:02:53.010000"],["2024-07-24T20:02:54.010000"],["2024-07-24T20:02:55.010000"],["2024-07-24T20:02:56.010000"],["2024-07-24T20:02:57.010000"],["2024-07-24T20:02:58.010000"],["2024-07-24T20:02:59.010000"],["2024-07-24T20:03:00.010000"],["2024-07-24T20:03:01.010000"],["2024-07-24T20:03:02.010000"],["2024-07-24T20:03:03.010000"],["2024-07-24T20:03:04.010000"],["2024-07-24T20:03:05.010000"],["2024-07-24T20:03:06.010000"],["2024-07-24T20:03:07.010000"],["2024-07-24T20:03:08.010000"],["2024-07-24T20:03:09.010000"],["2024-07-24T20:03:10.010000"],["2024-07-24T20:03:11.010000"],["2024-07-24T20:03:12.010000"],["2024-07-24T20:03:13.010000"],["2024-07-24T20:03:14.010000"],["2024-07-24T20:03:15.010000"],["2024-07-24T20:03:16.010000"],["2024-07-24T20:03:17.010000"],["2024-07-24T20:03:18.010000"],["2024-07-24T20:03:19.010000"],["2024-07-24T20:03:20.010000"],["2024-07-24T20:03:21.010000"],["2024-07-24T20:03:22.010000"],["2024-07-24T20:03:23.010000"],["2024-07-24T20:03:24.010000"],["2024-07-24T20:03:25.010000"],["2024-07-24T20:03:26.010000"],["2024-07-24T20:03:27.010000"],["2024-07-24T20:03:28.010000"],["2024-07-24T20:03:29.010000"],["2024-07-24T20:03:30.010000"],["2024-07-24T20:03:31.010000"],["2024-07-24T20:03:32.010000"],["2024-07-24T20:03:33.010000"],["2024-07-24T20:03:34.010000"],["2024-07-24T20:03:35.010000"],["2024-07-24T20:03:36.010000"],["2024-07-24T20:03:37.010000"],["2024-07-24T20:03:38.010000"],["2024-07-24T20:03:39.010000"],["2024-07-24T20:03:40.010000"],["2024-07-24T20:03:41.010000"],["2024-07-24T20:03:42.010000"],["2024-07-24T20:03:43.010000"],["2024-07-24T20:03:44.010000"],["2024-07-24T20:03:45.010000"],["2024-07-24T20:03:46.010000"],["2024-07-24T20:03:47.010000"],["2024-07-24T20:03:48.010000"],["2024-07-24T20:03:49.010000"],["2024-07-24T20:03:50.010000"],["2024-07-24T20:03:51.010000"],["2024-07-24T20:03:52.010000"],["2024-07-24T20:03:53.010000"],["2024-07-24T20:03:54.010000"],["2024-07-24T20:03:55.010000"],["2024-07-24T20:03:56.010000"],["2024-07-24T20:03:57.010000"],["2024-07-24T20:03:58.010000"],["2024-07-24T20:03:59.010000"],["2024-07-24T20:04:00.010000"],["2024-07-24T20:04:01.010000"],["2024-07-24T20:04:02.010000"],["2024-07-24T20:04:03.010000"],["2024-07-24T20:04:04.010000"],["2024-07-24T20:04:05.010000"],["2024-07-24T20:04:06.010000"],["2024-07-24T20:04:07.010000"],["2024-07-24T20:04:08.010000"],["2024-07-24T20:04:09.010000"],["2024-07-24T20:04:10.010000"],["2024-07-24T20:04:11.010000"],["2024-07-24T20:04:12.010000"],["2024-07-24T20:04:13.010000"],["2024-07-24T20:04:14.010000"],["2024-07-24T20:04:15.010000"],["2024-07-24T20:04:16.010000"],["2024-07-24T20:04:17.010000"],["2024-07-24T20:04:18.010000"],["2024-07-24T20:04:19.010000"],["2024-07-24T20:04:20.010000"],["2024-07-24T20:04:21.010000"],["2024-07-24T20:04:22.010000"],["2024-07-24T20:04:23.010000"],["2024-07-24T20:04:24.010000"],["2024-07-24T20:04:25.010000"],["2024-07-24T20:04:26.010000"],["2024-07-24T20:04:27.010000"],["2024-07-24T20:04:28.010000"],["2024-07-24T20:04:29.010000"],["2024-07-24T20:04:30.010000"],["2024-07-24T20:04:31.010000"],["2024-07-24T20:04:32.010000"],["2024-07-24T20:04:33.010000"],["2024-07-24T20:04:34.010000"],["2024-07-24T20:04:35.010000"],["2024-07-24T20:04:36.010000"],["2024-07-24T20:04:37.010000"],["2024-07-24T20:04:38.010000"],["2024-07-24T20:04:39.010000"],["2024-07-24T20:04:40.010000"],["2024-07-24T20:04:41.010000"],["2024-07-24T20:04:42.010000"],["2024-07-24T20:04:43.010000"],["2024-07-24T20:04:44.010000"],["2024-07-24T20:04:45.010000"],["2024-07-24T20:04:46.010000"],["2024-07-24T20:04:47.010000"],["2024-07-24T20:04:48.010000"],["2024-07-24T20:04:49.010000"],["2024-07-24T20:04:50.010000"],["2024-07-24T20:04:51.010000"],["2024-07-24T20:04:52.010000"],["2024-07-24T20:04:53.010000"],["2024-07-24T20:04:54.010000"],["2024-07-24T20:04:55.010000"],["2024-07-24T20:04:56.010000"],["2024-07-24T20:04:57.010000"],["2024-07-24T20:04:58.010000"],["2024-07-24T20:04:59.010000"],["2024-07-24T20:05:00.010000"],["2024-07-24T20:05:01.010000"],["2024-07-24T20:05:02.010000"],["2024-07-24T20:05:03.010000"],["2024-07-24T20:05:04.010000"],["2024-07-24T20:05:05.010000"],["2024-07-24T20:05:06.010000"],["2024-07-24T20:05:07.010000"],["2024-07-24T20:05:08.010000"],["2024-07-24T20:05:09.010000"],["2024-07-24T20:05:10.010000"],["2024-07-24T20:05:11.010000"],["2024-07-24T20:05:12.010000"],["2024-07-24T20:05:13.010000"],["2024-07-24T20:05:14.010000"],["2024-07-24T20:05:15.010000"],["2024-07-24T20:05:16.010000"],["2024-07-24T20:05:17.010000"],["2024-07-24T20:05:18.010000"],["2024-07-24T20:05:19.010000"],["2024-07-24T20:05:20.010000"],["2024-07-24T20:05:21.010000"],["2024-07-24T20:05:22.010000"],["2024-07-24T20:05:23.010000"],["2024-07-24T20:05:24.010000"],["2024-07-24T20:05:25.010000"],["2024-07-24T20:05:26.010000"],["2024-07-24T20:05:27.010000"],["2024-07-24T20:05:28.010000"],["2024-07-24T20:05:29.010000"],["2024-07-24T20:05:30.010000"],["2024-07-24T20:05:31.010000"],["2024-07-24T20:05:32.010000"],["2024-07-24T20:05:33.010000"],["2024-07-24T20:05:34.010000"],["2024-07-24T20:05:35.010000"],["2024-07-24T20:05:36.010000"],["2024-07-24T20:05:37.010000"],["2024-07-24T20:05:38.010000"],["2024-07-24T20:05:39.010000"],["2024-07-24T20:05:40.010000"],["2024-07-24T20:05:41.010000"],["2024-07-24T20:05:42.010000"],["2024-07-24T20:05:43.010000"],["2024-07-24T20:05:44.010000"],["2024-07-24T20:05:45.010000"],["2024-07-24T20:05:46.010000"],["2024-07-24T20:05:47.010000"],["2024-07-24T20:05:48.010000"],["2024-07-24T20:05:49.010000"],["2024-07-24T20:05:50.010000"],["2024-07-24T20:05:51.010000"],["2024-07-24T20:05:52.010000"],["2024-07-24T20:05:53.010000"],["2024-07-24T20:05:54.010000"],["2024-07-24T20:05:55.010000"],["2024-07-24T20:05:56.010000"],["2024-07-24T20:05:57.010000"],["2024-07-24T20:05:58.010000"],["2024-07-24T20:05:59.010000"],["2024-07-24T20:06:00.010000"],["2024-07-24T20:06:01.010000"],["2024-07-24T20:06:02.010000"],["2024-07-24T20:06:03.010000"],["2024-07-24T20:06:04.010000"],["2024-07-24T20:06:05.010000"],["2024-07-24T20:06:06.010000"],["2024-07-24T20:06:07.010000"],["2024-07-24T20:06:08.010000"],["2024-07-24T20:06:09.010000"],["2024-07-24T20:06:10.010000"],["2024-07-24T20:06:11.010000"],["2024-07-24T20:06:12.010000"],["2024-07-24T20:06:13.010000"],["2024-07-24T20:06:14.010000"],["2024-07-24T20:06:15.010000"],["2024-07-24T20:06:16.010000"],["2024-07-24T20:06:17.010000"],["2024-07-24T20:06:18.010000"],["2024-07-24T20:06:19.010000"],["2024-07-24T20:06:20.010000"],["2024-07-24T20:06:21.010000"],["2024-07-24T20:06:22.010000"],["2024-07-24T20:06:23.010000"],["2024-07-24T20:06:24.010000"],["2024-07-24T20:06:25.010000"],["2024-07-24T20:06:26.010000"],["2024-07-24T20:06:27.010000"],["2024-07-24T20:06:28.010000"],["2024-07-24T20:06:29.010000"],["2024-07-24T20:06:30.010000"],["2024-07-24T20:06:31.010000"],["2024-07-24T20:06:32.010000"],["2024-07-24T20:06:33.010000"],["2024-07-24T20:06:34.010000"],["2024-07-24T20:06:35.010000"],["2024-07-24T20:06:36.010000"],["2024-07-24T20:06:37.010000"],["2024-07-24T20:06:38.010000"],["2024-07-24T20:06:39.010000"],["2024-07-24T20:06:40.010000"],["2024-07-24T20:06:41.010000"],["2024-07-24T20:06:42.010000"],["2024-07-24T20:06:43.010000"],["2024-07-24T20:06:44.010000"],["2024-07-24T20:06:45.010000"],["2024-07-24T20:06:46.010000"],["2024-07-24T20:06:47.010000"],["2024-07-24T20:06:48.010000"],["2024-07-24T20:06:49.010000"],["2024-07-24T20:06:50.010000"],["2024-07-24T20:06:51.010000"],["2024-07-24T20:06:52.010000"],["2024-07-24T20:06:53.010000"],["2024-07-24T20:06:54.010000"],["2024-07-24T20:06:55.010000"],["2024-07-24T20:06:56.010000"],["2024-07-24T20:06:57.010000"],["2024-07-24T20:06:58.010000"],["2024-07-24T20:06:59.010000"],["2024-07-24T20:07:00.010000"],["2024-07-24T20:07:01.010000"],["2024-07-24T20:07:02.010000"],["2024-07-24T20:07:03.010000"],["2024-07-24T20:07:04.010000"],["2024-07-24T20:07:05.010000"],["2024-07-24T20:07:06.010000"],["2024-07-24T20:07:07.010000"],["2024-07-24T20:07:08.010000"],["2024-07-24T20:07:09.010000"],["2024-07-24T20:07:10.010000"],["2024-07-24T20:07:11.010000"],["2024-07-24T20:07:12.010000"],["2024-07-24T20:07:13.010000"],["2024-07-24T20:07:14.010000"],["2024-07-24T20:07:15.010000"],["2024-07-24T20:07:16.010000"],["2024-07-24T20:07:17.010000"],["2024-07-24T20:07:18.010000"],["2024-07-24T20:07:19.010000"],["2024-07-24T20:07:20.010000"],["2024-07-24T20:07:21.010000"],["2024-07-24T20:07:22.010000"],["2024-07-24T20:07:23.010000"],["2024-07-24T20:07:24.010000"],["2024-07-24T20:07:25.010000"],["2024-07-24T20:07:26.010000"],["2024-07-24T20:07:27.010000"],["2024-07-24T20:07:28.010000"],["2024-07-24T20:07:29.010000"],["2024-07-24T20:07:30.010000"],["2024-07-24T20:07:31.010000"],["2024-07-24T20:07:32.010000"],["2024-07-24T20:07:33.010000"],["2024-07-24T20:07:34.010000"],["2024-07-24T20:07:35.010000"],["2024-07-24T20:07:36.010000"],["2024-07-24T20:07:37.010000"],["2024-07-24T20:07:38.010000"],["2024-07-24T20:07:39.010000"],["2024-07-24T20:07:40.010000"],["2024-07-24T20:07:41.010000"],["2024-07-24T20:07:42.010000"],["2024-07-24T20:07:43.010000"],["2024-07-24T20:07:44.010000"],["2024-07-24T20:07:45.010000"],["2024-07-24T20:07:46.010000"],["2024-07-24T20:07:47.010000"],["2024-07-24T20:07:48.010000"],["2024-07-24T20:07:49.010000"],["2024-07-24T20:07:50.010000"],["2024-07-24T20:07:51.010000"],["2024-07-24T20:07:52.010000"],["2024-07-24T20:07:53.010000"],["2024-07-24T20:07:54.010000"],["2024-07-24T20:07:55.010000"],["2024-07-24T20:07:56.010000"],["2024-07-24T20:07:57.010000"],["2024-07-24T20:07:58.010000"],["2024-07-24T20:07:59.010000"],["2024-07-24T20:08:00.010000"],["2024-07-24T20:08:01.010000"],["2024-07-24T20:08:02.010000"],["2024-07-24T20:08:03.010000"],["2024-07-24T20:08:04.010000"],["2024-07-24T20:08:05.010000"],["2024-07-24T20:08:06.010000"],["2024-07-24T20:08:07.010000"],["2024-07-24T20:08:08.010000"],["2024-07-24T20:08:09.010000"],["2024-07-24T20:08:10.010000"],["2024-07-24T20:08:11.010000"],["2024-07-24T20:08:12.010000"],["2024-07-24T20:08:13.010000"],["2024-07-24T20:08:14.010000"],["2024-07-24T20:08:15.010000"],["2024-07-24T20:08:16.010000"],["2024-07-24T20:08:17.010000"],["2024-07-24T20:08:18.010000"],["2024-07-24T20:08:19.010000"],["2024-07-24T20:08:20.010000"],["2024-07-24T20:08:21.010000"],["2024-07-24T20:08:22.010000"],["2024-07-24T20:08:23.010000"],["2024-07-24T20:08:24.010000"],["2024-07-24T20:08:25.010000"],["2024-07-24T20:08:26.010000"],["2024-07-24T20:08:27.010000"],["2024-07-24T20:08:28.010000"],["2024-07-24T20:08:29.010000"],["2024-07-24T20:08:30.010000"],["2024-07-24T20:08:31.010000"],["2024-07-24T20:08:32.010000"],["2024-07-24T20:08:33.010000"],["2024-07-24T20:08:34.010000"],["2024-07-24T20:08:35.010000"],["2024-07-24T20:08:36.010000"],["2024-07-24T20:08:37.010000"],["2024-07-24T20:08:38.010000"],["2024-07-24T20:08:39.010000"],["2024-07-24T20:08:40.010000"],["2024-07-24T20:08:41.010000"],["2024-07-24T20:08:42.010000"],["2024-07-24T20:08:43.010000"],["2024-07-24T20:08:44.010000"],["2024-07-24T20:08:45.010000"],["2024-07-24T20:08:46.010000"],["2024-07-24T20:08:47.010000"],["2024-07-24T20:08:48.010000"],["2024-07-24T20:08:49.010000"],["2024-07-24T20:08:50.010000"],["2024-07-24T20:08:51.010000"],["2024-07-24T20:08:52.010000"],["2024-07-24T20:08:53.010000"],["2024-07-24T20:08:54.010000"],["2024-07-24T20:08:55.010000"],["2024-07-24T20:08:56.010000"],["2024-07-24T20:08:57.010000"],["2024-07-24T20:08:58.010000"],["2024-07-24T20:08:59.010000"],["2024-07-24T20:09:00.010000"],["2024-07-24T20:09:01.010000"],["2024-07-24T20:09:02.010000"],["2024-07-24T20:09:03.010000"],["2024-07-24T20:09:04.010000"],["2024-07-24T20:09:05.010000"],["2024-07-24T20:09:06.010000"],["2024-07-24T20:09:07.010000"],["2024-07-24T20:09:08.010000"],["2024-07-24T20:09:09.010000"],["2024-07-24T20:09:10.010000"],["2024-07-24T20:09:11.010000"],["2024-07-24T20:09:12.010000"],["2024-07-24T20:09:13.010000"],["2024-07-24T20:09:14.010000"],["2024-07-24T20:09:15.010000"],["2024-07-24T20:09:16.010000"],["2024-07-24T20:09:17.010000"],["2024-07-24T20:09:18.010000"],["2024-07-24T20:09:19.010000"],["2024-07-24T20:09:20.010000"],["2024-07-24T20:09:21.010000"],["2024-07-24T20:09:22.010000"],["2024-07-24T20:09:23.010000"],["2024-07-24T20:09:24.010000"],["2024-07-24T20:09:25.010000"],["2024-07-24T20:09:26.010000"],["2024-07-24T20:09:27.010000"],["2024-07-24T20:09:28.010000"],["2024-07-24T20:09:29.010000"],["2024-07-24T20:09:30.010000"],["2024-07-24T20:09:31.010000"],["2024-07-24T20:09:32.010000"],["2024-07-24T20:09:33.010000"],["2024-07-24T20:09:34.010000"],["2024-07-24T20:09:35.010000"],["2024-07-24T20:09:36.010000"],["2024-07-24T20:09:37.010000"],["2024-07-24T20:09:38.010000"],["2024-07-24T20:09:39.010000"],["2024-07-24T20:09:40.010000"],["2024-07-24T20:09:41.010000"],["2024-07-24T20:09:42.010000"],["2024-07-24T20:09:43.010000"],["2024-07-24T20:09:44.010000"],["2024-07-24T20:09:45.010000"],["2024-07-24T20:09:46.010000"],["2024-07-24T20:09:47.010000"],["2024-07-24T20:09:48.010000"],["2024-07-24T20:09:49.010000"],["2024-07-24T20:09:50.010000"],["2024-07-24T20:09:51.010000"],["2024-07-24T20:09:52.010000"],["2024-07-24T20:09:53.010000"],["2024-07-24T20:09:54.010000"],["2024-07-24T20:09:55.010000"],["2024-07-24T20:09:56.010000"],["2024-07-24T20:09:57.010000"],["2024-07-24T20:09:58.010000"],["2024-07-24T20:09:59.010000"],["2024-07-24T20:10:00.010000"],["2024-07-24T20:10:01.010000"],["2024-07-24T20:10:02.010000"],["2024-07-24T20:10:03.010000"],["2024-07-24T20:10:04.010000"],["2024-07-24T20:10:05.010000"],["2024-07-24T20:10:06.010000"],["2024-07-24T20:10:07.010000"],["2024-07-24T20:10:08.010000"],["2024-07-24T20:10:09.010000"],["2024-07-24T20:10:10.010000"],["2024-07-24T20:10:11.010000"],["2024-07-24T20:10:12.010000"],["2024-07-24T20:10:13.010000"],["2024-07-24T20:10:14.010000"],["2024-07-24T20:10:15.010000"],["2024-07-24T20:10:16.010000"],["2024-07-24T20:10:17.010000"],["2024-07-24T20:10:18.010000"],["2024-07-24T20:10:19.010000"],["2024-07-24T20:10:20.010000"],["2024-07-24T20:10:21.010000"],["2024-07-24T20:10:22.010000"],["2024-07-24T20:10:23.010000"],["2024-07-24T20:10:24.010000"],["2024-07-24T20:10:25.010000"],["2024-07-24T20:10:26.010000"],["2024-07-24T20:10:27.010000"],["2024-07-24T20:10:28.010000"],["2024-07-24T20:10:29.010000"],["2024-07-24T20:10:30.010000"],["2024-07-24T20:10:31.010000"],["2024-07-24T20:10:32.010000"],["2024-07-24T20:10:33.010000"],["2024-07-24T20:10:34.010000"],["2024-07-24T20:10:35.010000"],["2024-07-24T20:10:36.010000"],["2024-07-24T20:10:37.010000"],["2024-07-24T20:10:38.010000"],["2024-07-24T20:10:39.010000"],["2024-07-24T20:10:40.010000"],["2024-07-24T20:10:41.010000"],["2024-07-24T20:10:42.010000"],["2024-07-24T20:10:43.010000"],["2024-07-24T20:10:44.010000"],["2024-07-24T20:10:45.010000"],["2024-07-24T20:10:46.010000"],["2024-07-24T20:10:47.010000"],["2024-07-24T20:10:48.010000"],["2024-07-24T20:10:49.010000"],["2024-07-24T20:10:50.010000"],["2024-07-24T20:10:51.010000"],["2024-07-24T20:10:52.010000"],["2024-07-24T20:10:53.010000"],["2024-07-24T20:10:54.010000"],["2024-07-24T20:10:55.010000"],["2024-07-24T20:10:56.010000"],["2024-07-24T20:10:57.010000"],["2024-07-24T20:10:58.010000"],["2024-07-24T20:10:59.010000"],["2024-07-24T20:11:00.010000"],["2024-07-24T20:11:01.010000"],["2024-07-24T20:11:02.010000"],["2024-07-24T20:11:03.010000"],["2024-07-24T20:11:04.010000"],["2024-07-24T20:11:05.010000"],["2024-07-24T20:11:06.010000"],["2024-07-24T20:11:07.010000"],["2024-07-24T20:11:08.010000"],["2024-07-24T20:11:09.010000"],["2024-07-24T20:11:10.010000"],["2024-07-24T20:11:11.010000"],["2024-07-24T20:11:12.010000"],["2024-07-24T20:11:13.010000"],["2024-07-24T20:11:14.010000"],["2024-07-24T20:11:15.010000"],["2024-07-24T20:11:16.010000"],["2024-07-24T20:11:17.010000"],["2024-07-24T20:11:18.010000"],["2024-07-24T20:11:19.010000"],["2024-07-24T20:11:20.010000"],["2024-07-24T20:11:21.010000"],["2024-07-24T20:11:22.010000"],["2024-07-24T20:11:23.010000"],["2024-07-24T20:11:24.010000"],["2024-07-24T20:11:25.010000"],["2024-07-24T20:11:26.010000"],["2024-07-24T20:11:27.010000"],["2024-07-24T20:11:28.010000"],["2024-07-24T20:11:29.010000"],["2024-07-24T20:11:30.010000"],["2024-07-24T20:11:31.010000"],["2024-07-24T20:11:32.010000"],["2024-07-24T20:11:33.010000"],["2024-07-24T20:11:34.010000"],["2024-07-24T20:11:35.010000"],["2024-07-24T20:11:36.010000"],["2024-07-24T20:11:37.010000"],["2024-07-24T20:11:38.010000"],["2024-07-24T20:11:39.010000"],["2024-07-24T20:11:40.010000"],["2024-07-24T20:11:41.010000"],["2024-07-24T20:11:42.010000"],["2024-07-24T20:11:43.010000"],["2024-07-24T20:11:44.010000"],["2024-07-24T20:11:45.010000"],["2024-07-24T20:11:46.010000"],["2024-07-24T20:11:47.010000"],["2024-07-24T20:11:48.010000"],["2024-07-24T20:11:49.010000"],["2024-07-24T20:11:50.010000"],["2024-07-24T20:11:51.010000"],["2024-07-24T20:11:52.010000"],["2024-07-24T20:11:53.010000"],["2024-07-24T20:11:54.010000"],["2024-07-24T20:11:55.010000"],["2024-07-24T20:11:56.010000"],["2024-07-24T20:11:57.010000"],["2024-07-24T20:11:58.010000"],["2024-07-24T20:11:59.010000"],["2024-07-24T20:12:00.010000"],["2024-07-24T20:12:01.010000"],["2024-07-24T20:12:02.010000"],["2024-07-24T20:12:03.010000"],["2024-07-24T20:12:04.010000"],["2024-07-24T20:12:05.010000"],["2024-07-24T20:12:06.010000"],["2024-07-24T20:12:07.010000"],["2024-07-24T20:12:08.010000"],["2024-07-24T20:12:09.010000"],["2024-07-24T20:12:10.010000"],["2024-07-24T20:12:11.010000"],["2024-07-24T20:12:12.010000"],["2024-07-24T20:12:13.010000"],["2024-07-24T20:12:14.010000"],["2024-07-24T20:12:15.010000"],["2024-07-24T20:12:16.010000"],["2024-07-24T20:12:17.010000"],["2024-07-24T20:12:18.010000"],["2024-07-24T20:12:19.010000"],["2024-07-24T20:12:20.010000"],["2024-07-24T20:12:21.010000"],["2024-07-24T20:12:22.010000"],["2024-07-24T20:12:23.010000"],["2024-07-24T20:12:24.010000"],["2024-07-24T20:12:25.010000"],["2024-07-24T20:12:26.010000"],["2024-07-24T20:12:27.010000"],["2024-07-24T20:12:28.010000"],["2024-07-24T20:12:29.010000"],["2024-07-24T20:12:30.010000"],["2024-07-24T20:12:31.010000"],["2024-07-24T20:12:32.010000"],["2024-07-24T20:12:33.010000"],["2024-07-24T20:12:34.010000"],["2024-07-24T20:12:35.010000"],["2024-07-24T20:12:36.010000"],["2024-07-24T20:12:37.010000"],["2024-07-24T20:12:38.010000"],["2024-07-24T20:12:39.010000"],["2024-07-24T20:12:40.010000"],["2024-07-24T20:12:41.010000"],["2024-07-24T20:12:42.010000"],["2024-07-24T20:12:43.010000"],["2024-07-24T20:12:44.010000"],["2024-07-24T20:12:45.010000"],["2024-07-24T20:12:46.010000"],["2024-07-24T20:12:47.010000"],["2024-07-24T20:12:48.010000"],["2024-07-24T20:12:49.010000"],["2024-07-24T20:12:50.010000"],["2024-07-24T20:12:51.010000"],["2024-07-24T20:12:52.010000"],["2024-07-24T20:12:53.010000"],["2024-07-24T20:12:54.010000"],["2024-07-24T20:12:55.010000"],["2024-07-24T20:12:56.010000"],["2024-07-24T20:12:57.010000"],["2024-07-24T20:12:58.010000"],["2024-07-24T20:12:59.010000"],["2024-07-24T20:13:00.010000"],["2024-07-24T20:13:01.010000"],["2024-07-24T20:13:02.010000"],["2024-07-24T20:13:03.010000"],["2024-07-24T20:13:04.010000"],["2024-07-24T20:13:05.010000"],["2024-07-24T20:13:06.010000"],["2024-07-24T20:13:07.010000"],["2024-07-24T20:13:08.010000"],["2024-07-24T20:13:09.010000"],["2024-07-24T20:13:10.010000"],["2024-07-24T20:13:11.010000"],["2024-07-24T20:13:12.010000"],["2024-07-24T20:13:13.010000"],["2024-07-24T20:13:14.010000"],["2024-07-24T20:13:15.010000"],["2024-07-24T20:13:16.010000"],["2024-07-24T20:13:17.010000"],["2024-07-24T20:13:18.010000"],["2024-07-24T20:13:19.010000"],["2024-07-24T20:13:20.010000"],["2024-07-24T20:13:21.010000"],["2024-07-24T20:13:22.010000"],["2024-07-24T20:13:23.010000"],["2024-07-24T20:13:24.010000"],["2024-07-24T20:13:25.010000"],["2024-07-24T20:13:26.010000"],["2024-07-24T20:13:27.010000"],["2024-07-24T20:13:28.010000"],["2024-07-24T20:13:29.010000"],["2024-07-24T20:13:30.010000"],["2024-07-24T20:13:31.010000"],["2024-07-24T20:13:32.010000"],["2024-07-24T20:13:33.010000"],["2024-07-24T20:13:34.010000"],["2024-07-24T20:13:35.010000"],["2024-07-24T20:13:36.010000"],["2024-07-24T20:13:37.010000"],["2024-07-24T20:13:38.010000"],["2024-07-24T20:13:39.010000"],["2024-07-24T20:13:40.010000"],["2024-07-24T20:13:41.010000"],["2024-07-24T20:13:42.010000"],["2024-07-24T20:13:43.010000"],["2024-07-24T20:13:44.010000"],["2024-07-24T20:13:45.010000"],["2024-07-24T20:13:46.010000"],["2024-07-24T20:13:47.010000"],["2024-07-24T20:13:48.010000"],["2024-07-24T20:13:49.010000"],["2024-07-24T20:13:50.010000"],["2024-07-24T20:13:51.010000"],["2024-07-24T20:13:52.010000"],["2024-07-24T20:13:53.010000"],["2024-07-24T20:13:54.010000"],["2024-07-24T20:13:55.010000"],["2024-07-24T20:13:56.010000"],["2024-07-24T20:13:57.010000"],["2024-07-24T20:13:58.010000"],["2024-07-24T20:13:59.010000"],["2024-07-24T20:14:00.010000"],["2024-07-24T20:14:01.010000"],["2024-07-24T20:14:02.010000"],["2024-07-24T20:14:03.010000"],["2024-07-24T20:14:04.010000"],["2024-07-24T20:14:05.010000"],["2024-07-24T20:14:06.010000"],["2024-07-24T20:14:07.010000"],["2024-07-24T20:14:08.010000"],["2024-07-24T20:14:09.010000"],["2024-07-24T20:14:10.010000"],["2024-07-24T20:14:11.010000"],["2024-07-24T20:14:12.010000"],["2024-07-24T20:14:13.010000"],["2024-07-24T20:14:14.010000"],["2024-07-24T20:14:15.010000"],["2024-07-24T20:14:16.010000"],["2024-07-24T20:14:17.010000"],["2024-07-24T20:14:18.010000"],["2024-07-24T20:14:19.010000"],["2024-07-24T20:14:20.010000"],["2024-07-24T20:14:21.010000"],["2024-07-24T20:14:22.010000"],["2024-07-24T20:14:23.010000"],["2024-07-24T20:14:24.010000"],["2024-07-24T20:14:25.010000"],["2024-07-24T20:14:26.010000"],["2024-07-24T20:14:27.010000"],["2024-07-24T20:14:28.010000"],["2024-07-24T20:14:29.010000"],["2024-07-24T20:14:30.010000"],["2024-07-24T20:14:31.010000"],["2024-07-24T20:14:32.010000"],["2024-07-24T20:14:33.010000"],["2024-07-24T20:14:34.010000"],["2024-07-24T20:14:35.010000"],["2024-07-24T20:14:36.010000"],["2024-07-24T20:14:37.010000"],["2024-07-24T20:14:38.010000"],["2024-07-24T20:14:39.010000"],["2024-07-24T20:14:40.010000"],["2024-07-24T20:14:41.010000"],["2024-07-24T20:14:42.010000"],["2024-07-24T20:14:43.010000"],["2024-07-24T20:14:44.010000"],["2024-07-24T20:14:45.010000"],["2024-07-24T20:14:46.010000"],["2024-07-24T20:14:47.010000"],["2024-07-24T20:14:48.010000"],["2024-07-24T20:14:49.010000"],["2024-07-24T20:14:50.010000"],["2024-07-24T20:14:51.010000"],["2024-07-24T20:14:52.010000"],["2024-07-24T20:14:53.010000"],["2024-07-24T20:14:54.010000"],["2024-07-24T20:14:55.010000"],["2024-07-24T20:14:56.010000"],["2024-07-24T20:14:57.010000"],["2024-07-24T20:14:58.010000"],["2024-07-24T20:14:59.010000"],["2024-07-24T20:15:00.010000"],["2024-07-24T20:15:01.010000"],["2024-07-24T20:15:02.010000"],["2024-07-24T20:15:03.010000"],["2024-07-24T20:15:04.010000"],["2024-07-24T20:15:05.010000"],["2024-07-24T20:15:06.010000"],["2024-07-24T20:15:07.010000"],["2024-07-24T20:15:08.010000"],["2024-07-24T20:15:09.010000"],["2024-07-24T20:15:10.010000"],["2024-07-24T20:15:11.010000"],["2024-07-24T20:15:12.010000"],["2024-07-24T20:15:13.010000"],["2024-07-24T20:15:14.010000"],["2024-07-24T20:15:15.010000"],["2024-07-24T20:15:16.010000"],["2024-07-24T20:15:17.010000"],["2024-07-24T20:15:18.010000"],["2024-07-24T20:15:19.010000"],["2024-07-24T20:15:20.010000"],["2024-07-24T20:15:21.010000"],["2024-07-24T20:15:22.010000"],["2024-07-24T20:15:23.010000"],["2024-07-24T20:15:24.010000"],["2024-07-24T20:15:25.010000"],["2024-07-24T20:15:26.010000"],["2024-07-24T20:15:27.010000"],["2024-07-24T20:15:28.010000"],["2024-07-24T20:15:29.010000"],["2024-07-24T20:15:30.010000"],["2024-07-24T20:15:31.010000"],["2024-07-24T20:15:32.010000"],["2024-07-24T20:15:33.010000"],["2024-07-24T20:15:34.010000"],["2024-07-24T20:15:35.010000"],["2024-07-24T20:15:36.010000"],["2024-07-24T20:15:37.010000"],["2024-07-24T20:15:38.010000"],["2024-07-24T20:15:39.010000"],["2024-07-24T20:15:40.010000"],["2024-07-24T20:15:41.010000"],["2024-07-24T20:15:42.010000"],["2024-07-24T20:15:43.010000"],["2024-07-24T20:15:44.010000"],["2024-07-24T20:15:45.010000"],["2024-07-24T20:15:46.010000"],["2024-07-24T20:15:47.010000"],["2024-07-24T20:15:48.010000"],["2024-07-24T20:15:49.010000"],["2024-07-24T20:15:50.010000"],["2024-07-24T20:15:51.010000"],["2024-07-24T20:15:52.010000"],["2024-07-24T20:15:53.010000"],["2024-07-24T20:15:54.010000"],["2024-07-24T20:15:55.010000"],["2024-07-24T20:15:56.010000"],["2024-07-24T20:15:57.010000"],["2024-07-24T20:15:58.010000"],["2024-07-24T20:15:59.010000"],["2024-07-24T20:16:00.010000"],["2024-07-24T20:16:01.010000"],["2024-07-24T20:16:02.010000"],["2024-07-24T20:16:03.010000"],["2024-07-24T20:16:04.010000"],["2024-07-24T20:16:05.010000"],["2024-07-24T20:16:06.010000"],["2024-07-24T20:16:07.010000"],["2024-07-24T20:16:08.010000"],["2024-07-24T20:16:09.010000"],["2024-07-24T20:16:10.010000"],["2024-07-24T20:16:11.010000"],["2024-07-24T20:16:12.010000"],["2024-07-24T20:16:13.010000"],["2024-07-24T20:16:14.010000"],["2024-07-24T20:16:15.010000"],["2024-07-24T20:16:16.010000"],["2024-07-24T20:16:17.010000"],["2024-07-24T20:16:18.010000"],["2024-07-24T20:16:19.010000"],["2024-07-24T20:16:20.010000"],["2024-07-24T20:16:21.010000"],["2024-07-24T20:16:22.010000"],["2024-07-24T20:16:23.010000"],["2024-07-24T20:16:24.010000"],["2024-07-24T20:16:25.010000"],["2024-07-24T20:16:26.010000"],["2024-07-24T20:16:27.010000"],["2024-07-24T20:16:28.010000"],["2024-07-24T20:16:29.010000"],["2024-07-24T20:16:30.010000"],["2024-07-24T20:16:31.010000"],["2024-07-24T20:16:32.010000"],["2024-07-24T20:16:33.010000"],["2024-07-24T20:16:34.010000"],["2024-07-24T20:16:35.010000"],["2024-07-24T20:16:36.010000"],["2024-07-24T20:16:37.010000"],["2024-07-24T20:16:38.010000"],["2024-07-24T20:16:39.010000"],["2024-07-24T20:16:40.010000"],["2024-07-24T20:16:41.010000"],["2024-07-24T20:16:42.010000"],["2024-07-24T20:16:43.010000"],["2024-07-24T20:16:44.010000"],["2024-07-24T20:16:45.010000"],["2024-07-24T20:16:46.010000"],["2024-07-24T20:16:47.010000"],["2024-07-24T20:16:48.010000"],["2024-07-24T20:16:49.010000"],["2024-07-24T20:16:50.010000"],["2024-07-24T20:16:51.010000"],["2024-07-24T20:16:52.010000"],["2024-07-24T20:16:53.010000"],["2024-07-24T20:16:54.010000"],["2024-07-24T20:16:55.010000"],["2024-07-24T20:16:56.010000"],["2024-07-24T20:16:57.010000"],["2024-07-24T20:16:58.010000"],["2024-07-24T20:16:59.010000"],["2024-07-24T20:17:00.010000"],["2024-07-24T20:17:01.010000"],["2024-07-24T20:17:02.010000"],["2024-07-24T20:17:03.010000"],["2024-07-24T20:17:04.010000"],["2024-07-24T20:17:05.010000"],["2024-07-24T20:17:06.010000"],["2024-07-24T20:17:07.010000"],["2024-07-24T20:17:08.010000"],["2024-07-24T20:17:09.010000"],["2024-07-24T20:17:10.010000"],["2024-07-24T20:17:11.010000"],["2024-07-24T20:17:12.010000"],["2024-07-24T20:17:13.010000"],["2024-07-24T20:17:14.010000"],["2024-07-24T20:17:15.010000"],["2024-07-24T20:17:16.010000"],["2024-07-24T20:17:17.010000"],["2024-07-24T20:17:18.010000"],["2024-07-24T20:17:19.010000"],["2024-07-24T20:17:20.010000"],["2024-07-24T20:17:21.010000"],["2024-07-24T20:17:22.010000"],["2024-07-24T20:17:23.010000"],["2024-07-24T20:17:24.010000"],["2024-07-24T20:17:25.010000"],["2024-07-24T20:17:26.010000"],["2024-07-24T20:17:27.010000"],["2024-07-24T20:17:28.010000"],["2024-07-24T20:17:29.010000"],["2024-07-24T20:17:30.010000"],["2024-07-24T20:17:31.010000"],["2024-07-24T20:17:32.010000"],["2024-07-24T20:17:33.010000"],["2024-07-24T20:17:34.010000"],["2024-07-24T20:17:35.010000"],["2024-07-24T20:17:36.010000"],["2024-07-24T20:17:37.010000"],["2024-07-24T20:17:38.010000"],["2024-07-24T20:17:39.010000"],["2024-07-24T20:17:40.010000"],["2024-07-24T20:17:41.010000"],["2024-07-24T20:17:42.010000"],["2024-07-24T20:17:43.010000"],["2024-07-24T20:17:44.010000"],["2024-07-24T20:17:45.010000"],["2024-07-24T20:17:46.010000"],["2024-07-24T20:17:47.010000"],["2024-07-24T20:17:48.010000"],["2024-07-24T20:17:49.010000"],["2024-07-24T20:17:50.010000"],["2024-07-24T20:17:51.010000"],["2024-07-24T20:17:52.010000"],["2024-07-24T20:17:53.010000"],["2024-07-24T20:17:54.010000"],["2024-07-24T20:17:55.010000"],["2024-07-24T20:17:56.010000"],["2024-07-24T20:17:57.010000"],["2024-07-24T20:17:58.010000"],["2024-07-24T20:17:59.010000"],["2024-07-24T20:18:00.010000"],["2024-07-24T20:18:01.010000"],["2024-07-24T20:18:02.010000"],["2024-07-24T20:18:03.010000"],["2024-07-24T20:18:04.010000"],["2024-07-24T20:18:05.010000"],["2024-07-24T20:18:06.010000"],["2024-07-24T20:18:07.010000"],["2024-07-24T20:18:08.010000"],["2024-07-24T20:18:09.010000"],["2024-07-24T20:18:10.010000"],["2024-07-24T20:18:11.010000"],["2024-07-24T20:18:12.010000"],["2024-07-24T20:18:13.010000"],["2024-07-24T20:18:14.010000"],["2024-07-24T20:18:15.010000"],["2024-07-24T20:18:16.010000"],["2024-07-24T20:18:17.010000"],["2024-07-24T20:18:18.010000"],["2024-07-24T20:18:19.010000"],["2024-07-24T20:18:20.010000"],["2024-07-24T20:18:21.010000"],["2024-07-24T20:18:22.010000"],["2024-07-24T20:18:23.010000"],["2024-07-24T20:18:24.010000"],["2024-07-24T20:18:25.010000"],["2024-07-24T20:18:26.010000"],["2024-07-24T20:18:27.010000"],["2024-07-24T20:18:28.010000"],["2024-07-24T20:18:29.010000"],["2024-07-24T20:18:30.010000"],["2024-07-24T20:18:31.010000"],["2024-07-24T20:18:32.010000"],["2024-07-24T20:18:33.010000"],["2024-07-24T20:18:34.010000"],["2024-07-24T20:18:35.010000"],["2024-07-24T20:18:36.010000"],["2024-07-24T20:18:37.010000"],["2024-07-24T20:18:38.010000"],["2024-07-24T20:18:39.010000"],["2024-07-24T20:18:40.010000"],["2024-07-24T20:18:41.010000"],["2024-07-24T20:18:42.010000"],["2024-07-24T20:18:43.010000"],["2024-07-24T20:18:44.010000"],["2024-07-24T20:18:45.010000"],["2024-07-24T20:18:46.010000"],["2024-07-24T20:18:47.010000"],["2024-07-24T20:18:48.010000"],["2024-07-24T20:18:49.010000"],["2024-07-24T20:18:50.010000"],["2024-07-24T20:18:51.010000"],["2024-07-24T20:18:52.010000"],["2024-07-24T20:18:53.010000"],["2024-07-24T20:18:54.010000"],["2024-07-24T20:18:55.010000"],["2024-07-24T20:18:56.010000"],["2024-07-24T20:18:57.010000"],["2024-07-24T20:18:58.010000"],["2024-07-24T20:18:59.010000"],["2024-07-24T20:19:00.010000"],["2024-07-24T20:19:01.010000"],["2024-07-24T20:19:02.010000"],["2024-07-24T20:19:03.010000"],["2024-07-24T20:19:04.010000"],["2024-07-24T20:19:05.010000"],["2024-07-24T20:19:06.010000"],["2024-07-24T20:19:07.010000"],["2024-07-24T20:19:08.010000"],["2024-07-24T20:19:09.010000"],["2024-07-24T20:19:10.010000"],["2024-07-24T20:19:11.010000"],["2024-07-24T20:19:12.010000"],["2024-07-24T20:19:13.010000"],["2024-07-24T20:19:14.010000"],["2024-07-24T20:19:15.010000"],["2024-07-24T20:19:16.010000"],["2024-07-24T20:19:17.010000"],["2024-07-24T20:19:18.010000"],["2024-07-24T20:19:19.010000"],["2024-07-24T20:19:20.010000"],["2024-07-24T20:19:21.010000"],["2024-07-24T20:19:22.010000"],["2024-07-24T20:19:23.010000"],["2024-07-24T20:19:24.010000"],["2024-07-24T20:19:25.010000"],["2024-07-24T20:19:26.010000"],["2024-07-24T20:19:27.010000"],["2024-07-24T20:19:28.010000"],["2024-07-24T20:19:29.010000"],["2024-07-24T20:19:30.010000"],["2024-07-24T20:19:31.010000"],["2024-07-24T20:19:32.010000"],["2024-07-24T20:19:33.010000"],["2024-07-24T20:19:34.010000"],["2024-07-24T20:19:35.010000"],["2024-07-24T20:19:36.010000"],["2024-07-24T20:19:37.010000"],["2024-07-24T20:19:38.010000"],["2024-07-24T20:19:39.010000"],["2024-07-24T20:19:40.010000"],["2024-07-24T20:19:41.010000"],["2024-07-24T20:19:42.010000"],["2024-07-24T20:19:43.010000"],["2024-07-24T20:19:44.010000"],["2024-07-24T20:19:45.010000"],["2024-07-24T20:19:46.010000"],["2024-07-24T20:19:47.010000"],["2024-07-24T20:19:48.010000"],["2024-07-24T20:19:49.010000"],["2024-07-24T20:19:50.010000"],["2024-07-24T20:19:51.010000"],["2024-07-24T20:19:52.010000"],["2024-07-24T20:19:53.010000"],["2024-07-24T20:19:54.010000"],["2024-07-24T20:19:55.010000"],["2024-07-24T20:19:56.010000"],["2024-07-24T20:19:57.010000"],["2024-07-24T20:19:58.010000"],["2024-07-24T20:19:59.010000"],["2024-07-24T20:20:00.010000"],["2024-07-24T20:20:01.010000"],["2024-07-24T20:20:02.010000"],["2024-07-24T20:20:03.010000"],["2024-07-24T20:20:04.010000"],["2024-07-24T20:20:05.010000"],["2024-07-24T20:20:06.010000"],["2024-07-24T20:20:07.010000"],["2024-07-24T20:20:08.010000"],["2024-07-24T20:20:09.010000"],["2024-07-24T20:20:10.010000"],["2024-07-24T20:20:11.010000"],["2024-07-24T20:20:12.010000"],["2024-07-24T20:20:13.010000"],["2024-07-24T20:20:14.010000"],["2024-07-24T20:20:15.010000"],["2024-07-24T20:20:16.010000"],["2024-07-24T20:20:17.010000"],["2024-07-24T20:20:18.010000"],["2024-07-24T20:20:19.010000"],["2024-07-24T20:20:20.010000"],["2024-07-24T20:20:21.010000"],["2024-07-24T20:20:22.010000"],["2024-07-24T20:20:23.010000"],["2024-07-24T20:20:24.010000"],["2024-07-24T20:20:25.010000"],["2024-07-24T20:20:26.010000"],["2024-07-24T20:20:27.010000"],["2024-07-24T20:20:28.010000"],["2024-07-24T20:20:29.010000"],["2024-07-24T20:20:30.010000"],["2024-07-24T20:20:31.010000"],["2024-07-24T20:20:32.010000"],["2024-07-24T20:20:33.010000"],["2024-07-24T20:20:34.010000"],["2024-07-24T20:20:35.010000"],["2024-07-24T20:20:36.010000"],["2024-07-24T20:20:37.010000"],["2024-07-24T20:20:38.010000"],["2024-07-24T20:20:39.010000"],["2024-07-24T20:20:40.010000"],["2024-07-24T20:20:41.010000"],["2024-07-24T20:20:42.010000"],["2024-07-24T20:20:43.010000"],["2024-07-24T20:20:44.010000"],["2024-07-24T20:20:45.010000"],["2024-07-24T20:20:46.010000"],["2024-07-24T20:20:47.010000"],["2024-07-24T20:20:48.010000"],["2024-07-24T20:20:49.010000"],["2024-07-24T20:20:50.010000"],["2024-07-24T20:20:51.010000"],["2024-07-24T20:20:52.010000"],["2024-07-24T20:20:53.010000"],["2024-07-24T20:20:54.010000"],["2024-07-24T20:20:55.010000"],["2024-07-24T20:20:56.010000"],["2024-07-24T20:20:57.010000"],["2024-07-24T20:20:58.010000"],["2024-07-24T20:20:59.010000"],["2024-07-24T20:21:00.010000"],["2024-07-24T20:21:01.010000"],["2024-07-24T20:21:02.010000"],["2024-07-24T20:21:03.010000"],["2024-07-24T20:21:04.010000"],["2024-07-24T20:21:05.010000"],["2024-07-24T20:21:06.010000"],["2024-07-24T20:21:07.010000"],["2024-07-24T20:21:08.010000"],["2024-07-24T20:21:09.010000"],["2024-07-24T20:21:10.010000"],["2024-07-24T20:21:11.010000"],["2024-07-24T20:21:12.010000"],["2024-07-24T20:21:13.010000"],["2024-07-24T20:21:14.010000"],["2024-07-24T20:21:15.010000"],["2024-07-24T20:21:16.010000"],["2024-07-24T20:21:17.010000"],["2024-07-24T20:21:18.010000"],["2024-07-24T20:21:19.010000"],["2024-07-24T20:21:20.010000"],["2024-07-24T20:21:21.010000"],["2024-07-24T20:21:22.010000"],["2024-07-24T20:21:23.010000"],["2024-07-24T20:21:24.010000"],["2024-07-24T20:21:25.010000"],["2024-07-24T20:21:26.010000"],["2024-07-24T20:21:27.010000"],["2024-07-24T20:21:28.010000"],["2024-07-24T20:21:29.010000"],["2024-07-24T20:21:30.010000"],["2024-07-24T20:21:31.010000"],["2024-07-24T20:21:32.010000"],["2024-07-24T20:21:33.010000"],["2024-07-24T20:21:34.010000"],["2024-07-24T20:21:35.010000"],["2024-07-24T20:21:36.010000"],["2024-07-24T20:21:37.010000"],["2024-07-24T20:21:38.010000"],["2024-07-24T20:21:39.010000"],["2024-07-24T20:21:40.010000"],["2024-07-24T20:21:41.010000"],["2024-07-24T20:21:42.010000"],["2024-07-24T20:21:43.010000"],["2024-07-24T20:21:44.010000"],["2024-07-24T20:21:45.010000"],["2024-07-24T20:21:46.010000"],["2024-07-24T20:21:47.010000"],["2024-07-24T20:21:48.010000"],["2024-07-24T20:21:49.010000"],["2024-07-24T20:21:50.010000"],["2024-07-24T20:21:51.010000"],["2024-07-24T20:21:52.010000"],["2024-07-24T20:21:53.010000"],["2024-07-24T20:21:54.010000"],["2024-07-24T20:21:55.010000"],["2024-07-24T20:21:56.010000"],["2024-07-24T20:21:57.010000"],["2024-07-24T20:21:58.010000"],["2024-07-24T20:21:59.010000"],["2024-07-24T20:22:00.010000"],["2024-07-24T20:22:01.010000"],["2024-07-24T20:22:02.010000"],["2024-07-24T20:22:03.010000"],["2024-07-24T20:22:04.010000"],["2024-07-24T20:22:05.010000"],["2024-07-24T20:22:06.010000"],["2024-07-24T20:22:07.010000"],["2024-07-24T20:22:08.010000"],["2024-07-24T20:22:09.010000"],["2024-07-24T20:22:10.010000"],["2024-07-24T20:22:11.010000"],["2024-07-24T20:22:12.010000"],["2024-07-24T20:22:13.010000"],["2024-07-24T20:22:14.010000"],["2024-07-24T20:22:15.010000"],["2024-07-24T20:22:16.010000"],["2024-07-24T20:22:17.010000"],["2024-07-24T20:22:18.010000"],["2024-07-24T20:22:19.010000"],["2024-07-24T20:22:20.010000"],["2024-07-24T20:22:21.010000"],["2024-07-24T20:22:22.010000"],["2024-07-24T20:22:23.010000"],["2024-07-24T20:22:24.010000"],["2024-07-24T20:22:25.010000"],["2024-07-24T20:22:26.010000"],["2024-07-24T20:22:27.010000"],["2024-07-24T20:22:28.010000"],["2024-07-24T20:22:29.010000"],["2024-07-24T20:22:30.010000"],["2024-07-24T20:22:31.010000"],["2024-07-24T20:22:32.010000"],["2024-07-24T20:22:33.010000"],["2024-07-24T20:22:34.010000"],["2024-07-24T20:22:35.010000"],["2024-07-24T20:22:36.010000"],["2024-07-24T20:22:37.010000"],["2024-07-24T20:22:38.010000"],["2024-07-24T20:22:39.010000"],["2024-07-24T20:22:40.010000"],["2024-07-24T20:22:41.010000"],["2024-07-24T20:22:42.010000"],["2024-07-24T20:22:43.010000"],["2024-07-24T20:22:44.010000"],["2024-07-24T20:22:45.010000"],["2024-07-24T20:22:46.010000"],["2024-07-24T20:22:47.010000"],["2024-07-24T20:22:48.010000"],["2024-07-24T20:22:49.010000"],["2024-07-24T20:22:50.010000"],["2024-07-24T20:22:51.010000"],["2024-07-24T20:22:52.010000"],["2024-07-24T20:22:53.010000"],["2024-07-24T20:22:54.010000"],["2024-07-24T20:22:55.010000"],["2024-07-24T20:22:56.010000"],["2024-07-24T20:22:57.010000"],["2024-07-24T20:22:58.010000"],["2024-07-24T20:22:59.010000"],["2024-07-24T20:23:00.010000"],["2024-07-24T20:23:01.010000"],["2024-07-24T20:23:02.010000"],["2024-07-24T20:23:03.010000"],["2024-07-24T20:23:04.010000"],["2024-07-24T20:23:05.010000"],["2024-07-24T20:23:06.010000"],["2024-07-24T20:23:07.010000"],["2024-07-24T20:23:08.010000"],["2024-07-24T20:23:09.010000"],["2024-07-24T20:23:10.010000"],["2024-07-24T20:23:11.010000"],["2024-07-24T20:23:12.010000"],["2024-07-24T20:23:13.010000"],["2024-07-24T20:23:14.010000"],["2024-07-24T20:23:15.010000"],["2024-07-24T20:23:16.010000"],["2024-07-24T20:23:17.010000"],["2024-07-24T20:23:18.010000"],["2024-07-24T20:23:19.010000"],["2024-07-24T20:23:20.010000"],["2024-07-24T20:23:21.010000"],["2024-07-24T20:23:22.010000"],["2024-07-24T20:23:23.010000"],["2024-07-24T20:23:24.010000"],["2024-07-24T20:23:25.010000"],["2024-07-24T20:23:26.010000"],["2024-07-24T20:23:27.010000"],["2024-07-24T20:23:28.010000"],["2024-07-24T20:23:29.010000"],["2024-07-24T20:23:30.010000"],["2024-07-24T20:23:31.010000"],["2024-07-24T20:23:32.010000"],["2024-07-24T20:23:33.010000"],["2024-07-24T20:23:34.010000"],["2024-07-24T20:23:35.010000"],["2024-07-24T20:23:36.010000"],["2024-07-24T20:23:37.010000"],["2024-07-24T20:23:38.010000"],["2024-07-24T20:23:39.010000"],["2024-07-24T20:23:40.010000"],["2024-07-24T20:23:41.010000"],["2024-07-24T20:23:42.010000"],["2024-07-24T20:23:43.010000"],["2024-07-24T20:23:44.010000"],["2024-07-24T20:23:45.010000"],["2024-07-24T20:23:46.010000"],["2024-07-24T20:23:47.010000"],["2024-07-24T20:23:48.010000"],["2024-07-24T20:23:49.010000"],["2024-07-24T20:23:50.010000"],["2024-07-24T20:23:51.010000"],["2024-07-24T20:23:52.010000"],["2024-07-24T20:23:53.010000"],["2024-07-24T20:23:54.010000"],["2024-07-24T20:23:55.010000"],["2024-07-24T20:23:56.010000"],["2024-07-24T20:23:57.010000"],["2024-07-24T20:23:58.010000"],["2024-07-24T20:23:59.010000"],["2024-07-24T20:24:00.010000"],["2024-07-24T20:24:01.010000"],["2024-07-24T20:24:02.010000"],["2024-07-24T20:24:03.010000"],["2024-07-24T20:24:04.010000"],["2024-07-24T20:24:05.010000"],["2024-07-24T20:24:06.010000"],["2024-07-24T20:24:07.010000"],["2024-07-24T20:24:08.010000"],["2024-07-24T20:24:09.010000"],["2024-07-24T20:24:10.010000"],["2024-07-24T20:24:11.010000"],["2024-07-24T20:24:12.010000"],["2024-07-24T20:24:13.010000"],["2024-07-24T20:24:14.010000"],["2024-07-24T20:24:15.010000"],["2024-07-24T20:24:16.010000"],["2024-07-24T20:24:17.010000"],["2024-07-24T20:24:18.010000"],["2024-07-24T20:24:19.010000"],["2024-07-24T20:24:20.010000"],["2024-07-24T20:24:21.010000"],["2024-07-24T20:24:22.010000"],["2024-07-24T20:24:23.010000"],["2024-07-24T20:24:24.010000"],["2024-07-24T20:24:25.010000"],["2024-07-24T20:24:26.010000"],["2024-07-24T20:24:27.010000"],["2024-07-24T20:24:28.010000"],["2024-07-24T20:24:29.010000"],["2024-07-24T20:24:30.010000"],["2024-07-24T20:24:31.010000"],["2024-07-24T20:24:32.010000"],["2024-07-24T20:24:33.010000"],["2024-07-24T20:24:34.010000"],["2024-07-24T20:24:35.010000"],["2024-07-24T20:24:36.010000"],["2024-07-24T20:24:37.010000"],["2024-07-24T20:24:38.010000"],["2024-07-24T20:24:39.010000"],["2024-07-24T20:24:40.010000"],["2024-07-24T20:24:41.010000"],["2024-07-24T20:24:42.010000"],["2024-07-24T20:24:43.010000"],["2024-07-24T20:24:44.010000"],["2024-07-24T20:24:45.010000"],["2024-07-24T20:24:46.010000"],["2024-07-24T20:24:47.010000"],["2024-07-24T20:24:48.010000"],["2024-07-24T20:24:49.010000"],["2024-07-24T20:24:50.010000"],["2024-07-24T20:24:51.010000"],["2024-07-24T20:24:52.010000"],["2024-07-24T20:24:53.010000"],["2024-07-24T20:24:54.010000"],["2024-07-24T20:24:55.010000"],["2024-07-24T20:24:56.010000"],["2024-07-24T20:24:57.010000"],["2024-07-24T20:24:58.010000"],["2024-07-24T20:24:59.010000"],["2024-07-24T20:25:00.010000"],["2024-07-24T20:25:01.010000"],["2024-07-24T20:25:02.010000"],["2024-07-24T20:25:03.010000"],["2024-07-24T20:25:04.010000"],["2024-07-24T20:25:05.010000"],["2024-07-24T20:25:06.010000"],["2024-07-24T20:25:07.010000"],["2024-07-24T20:25:08.010000"],["2024-07-24T20:25:09.010000"],["2024-07-24T20:25:10.010000"],["2024-07-24T20:25:11.010000"],["2024-07-24T20:25:12.010000"],["2024-07-24T20:25:13.010000"],["2024-07-24T20:25:14.010000"],["2024-07-24T20:25:15.010000"],["2024-07-24T20:25:16.010000"],["2024-07-24T20:25:17.010000"],["2024-07-24T20:25:18.010000"],["2024-07-24T20:25:19.010000"],["2024-07-24T20:25:20.010000"],["2024-07-24T20:25:21.010000"],["2024-07-24T20:25:22.010000"],["2024-07-24T20:25:23.010000"],["2024-07-24T20:25:24.010000"],["2024-07-24T20:25:25.010000"],["2024-07-24T20:25:26.010000"],["2024-07-24T20:25:27.010000"],["2024-07-24T20:25:28.010000"],["2024-07-24T20:25:29.010000"],["2024-07-24T20:25:30.010000"],["2024-07-24T20:25:31.010000"],["2024-07-24T20:25:32.010000"],["2024-07-24T20:25:33.010000"],["2024-07-24T20:25:34.010000"],["2024-07-24T20:25:35.010000"],["2024-07-24T20:25:36.010000"],["2024-07-24T20:25:37.010000"],["2024-07-24T20:25:38.010000"],["2024-07-24T20:25:39.010000"],["2024-07-24T20:25:40.010000"],["2024-07-24T20:25:41.010000"],["2024-07-24T20:25:42.010000"],["2024-07-24T20:25:43.010000"],["2024-07-24T20:25:44.010000"],["2024-07-24T20:25:45.010000"],["2024-07-24T20:25:46.010000"],["2024-07-24T20:25:47.010000"],["2024-07-24T20:25:48.010000"],["2024-07-24T20:25:49.010000"],["2024-07-24T20:25:50.010000"],["2024-07-24T20:25:51.010000"],["2024-07-24T20:25:52.010000"],["2024-07-24T20:25:53.010000"],["2024-07-24T20:25:54.010000"],["2024-07-24T20:25:55.010000"],["2024-07-24T20:25:56.010000"],["2024-07-24T20:25:57.010000"],["2024-07-24T20:25:58.010000"],["2024-07-24T20:25:59.010000"],["2024-07-24T20:26:00.010000"],["2024-07-24T20:26:01.010000"],["2024-07-24T20:26:02.010000"],["2024-07-24T20:26:03.010000"],["2024-07-24T20:26:04.010000"],["2024-07-24T20:26:05.010000"],["2024-07-24T20:26:06.010000"],["2024-07-24T20:26:07.010000"],["2024-07-24T20:26:08.010000"],["2024-07-24T20:26:09.010000"],["2024-07-24T20:26:10.010000"],["2024-07-24T20:26:11.010000"],["2024-07-24T20:26:12.010000"],["2024-07-24T20:26:13.010000"],["2024-07-24T20:26:14.010000"],["2024-07-24T20:26:15.010000"],["2024-07-24T20:26:16.010000"],["2024-07-24T20:26:17.010000"],["2024-07-24T20:26:18.010000"],["2024-07-24T20:26:19.010000"],["2024-07-24T20:26:20.010000"],["2024-07-24T20:26:21.010000"],["2024-07-24T20:26:22.010000"],["2024-07-24T20:26:23.010000"],["2024-07-24T20:26:24.010000"],["2024-07-24T20:26:25.010000"],["2024-07-24T20:26:26.010000"],["2024-07-24T20:26:27.010000"],["2024-07-24T20:26:28.010000"],["2024-07-24T20:26:29.010000"],["2024-07-24T20:26:30.010000"],["2024-07-24T20:26:31.010000"],["2024-07-24T20:26:32.010000"],["2024-07-24T20:26:33.010000"],["2024-07-24T20:26:34.010000"],["2024-07-24T20:26:35.010000"],["2024-07-24T20:26:36.010000"],["2024-07-24T20:26:37.010000"],["2024-07-24T20:26:38.010000"],["2024-07-24T20:26:39.010000"],["2024-07-24T20:26:40.010000"],["2024-07-24T20:26:41.010000"],["2024-07-24T20:26:42.010000"],["2024-07-24T20:26:43.010000"],["2024-07-24T20:26:44.010000"],["2024-07-24T20:26:45.010000"],["2024-07-24T20:26:46.010000"],["2024-07-24T20:26:47.010000"],["2024-07-24T20:26:48.010000"],["2024-07-24T20:26:49.010000"],["2024-07-24T20:26:50.010000"],["2024-07-24T20:26:51.010000"],["2024-07-24T20:26:52.010000"],["2024-07-24T20:26:53.010000"],["2024-07-24T20:26:54.010000"],["2024-07-24T20:26:55.010000"],["2024-07-24T20:26:56.010000"],["2024-07-24T20:26:57.010000"],["2024-07-24T20:26:58.010000"],["2024-07-24T20:26:59.010000"],["2024-07-24T20:27:00.010000"],["2024-07-24T20:27:01.010000"],["2024-07-24T20:27:02.010000"],["2024-07-24T20:27:03.010000"],["2024-07-24T20:27:04.010000"],["2024-07-24T20:27:05.010000"],["2024-07-24T20:27:06.010000"],["2024-07-24T20:27:07.010000"],["2024-07-24T20:27:08.010000"],["2024-07-24T20:27:09.010000"],["2024-07-24T20:27:10.010000"],["2024-07-24T20:27:11.010000"],["2024-07-24T20:27:12.010000"],["2024-07-24T20:27:13.010000"],["2024-07-24T20:27:14.010000"],["2024-07-24T20:27:15.010000"],["2024-07-24T20:27:16.010000"],["2024-07-24T20:27:17.010000"],["2024-07-24T20:27:18.010000"],["2024-07-24T20:27:19.010000"],["2024-07-24T20:27:20.010000"],["2024-07-24T20:27:21.010000"],["2024-07-24T20:27:22.010000"],["2024-07-24T20:27:23.010000"],["2024-07-24T20:27:24.010000"],["2024-07-24T20:27:25.010000"],["2024-07-24T20:27:26.010000"],["2024-07-24T20:27:27.010000"],["2024-07-24T20:27:28.010000"],["2024-07-24T20:27:29.010000"],["2024-07-24T20:27:30.010000"],["2024-07-24T20:27:31.010000"],["2024-07-24T20:27:32.010000"],["2024-07-24T20:27:33.010000"],["2024-07-24T20:27:34.010000"],["2024-07-24T20:27:35.010000"],["2024-07-24T20:27:36.010000"],["2024-07-24T20:27:37.010000"],["2024-07-24T20:27:38.010000"],["2024-07-24T20:27:39.010000"],["2024-07-24T20:27:40.010000"],["2024-07-24T20:27:41.010000"],["2024-07-24T20:27:42.010000"],["2024-07-24T20:27:43.010000"],["2024-07-24T20:27:44.010000"],["2024-07-24T20:27:45.010000"],["2024-07-24T20:27:46.010000"],["2024-07-24T20:27:47.010000"],["2024-07-24T20:27:48.010000"],["2024-07-24T20:27:49.010000"],["2024-07-24T20:27:50.010000"],["2024-07-24T20:27:51.010000"],["2024-07-24T20:27:52.010000"],["2024-07-24T20:27:53.010000"],["2024-07-24T20:27:54.010000"],["2024-07-24T20:27:55.010000"],["2024-07-24T20:27:56.010000"],["2024-07-24T20:27:57.010000"],["2024-07-24T20:27:58.010000"],["2024-07-24T20:27:59.010000"],["2024-07-24T20:28:00.010000"],["2024-07-24T20:28:01.010000"],["2024-07-24T20:28:02.010000"],["2024-07-24T20:28:03.010000"],["2024-07-24T20:28:04.010000"],["2024-07-24T20:28:05.010000"],["2024-07-24T20:28:06.010000"],["2024-07-24T20:28:07.010000"],["2024-07-24T20:28:08.010000"],["2024-07-24T20:28:09.010000"],["2024-07-24T20:28:10.010000"],["2024-07-24T20:28:11.010000"],["2024-07-24T20:28:12.010000"],["2024-07-24T20:28:13.010000"],["2024-07-24T20:28:14.010000"],["2024-07-24T20:28:15.010000"],["2024-07-24T20:28:16.010000"],["2024-07-24T20:28:17.010000"],["2024-07-24T20:28:18.010000"],["2024-07-24T20:28:19.010000"],["2024-07-24T20:28:20.010000"],["2024-07-24T20:28:21.010000"],["2024-07-24T20:28:22.010000"],["2024-07-24T20:28:23.010000"],["2024-07-24T20:28:24.010000"],["2024-07-24T20:28:25.010000"],["2024-07-24T20:28:26.010000"],["2024-07-24T20:28:27.010000"],["2024-07-24T20:28:28.010000"],["2024-07-24T20:28:29.010000"],["2024-07-24T20:28:30.010000"],["2024-07-24T20:28:31.010000"],["2024-07-24T20:28:32.010000"],["2024-07-24T20:28:33.010000"],["2024-07-24T20:28:34.010000"],["2024-07-24T20:28:35.010000"],["2024-07-24T20:28:36.010000"],["2024-07-24T20:28:37.010000"],["2024-07-24T20:28:38.010000"],["2024-07-24T20:28:39.010000"],["2024-07-24T20:28:40.010000"],["2024-07-24T20:28:41.010000"],["2024-07-24T20:28:42.010000"],["2024-07-24T20:28:43.010000"],["2024-07-24T20:28:44.010000"],["2024-07-24T20:28:45.010000"],["2024-07-24T20:28:46.010000"],["2024-07-24T20:28:47.010000"],["2024-07-24T20:28:48.010000"],["2024-07-24T20:28:49.010000"],["2024-07-24T20:28:50.010000"],["2024-07-24T20:28:51.010000"],["2024-07-24T20:28:52.010000"],["2024-07-24T20:28:53.010000"],["2024-07-24T20:28:54.010000"],["2024-07-24T20:28:55.010000"],["2024-07-24T20:28:56.010000"],["2024-07-24T20:28:57.010000"],["2024-07-24T20:28:58.010000"],["2024-07-24T20:28:59.010000"],["2024-07-24T20:29:00.010000"],["2024-07-24T20:29:01.010000"],["2024-07-24T20:29:02.010000"],["2024-07-24T20:29:03.010000"],["2024-07-24T20:29:04.010000"],["2024-07-24T20:29:05.010000"],["2024-07-24T20:29:06.010000"],["2024-07-24T20:29:07.010000"],["2024-07-24T20:29:08.010000"],["2024-07-24T20:29:09.010000"],["2024-07-24T20:29:10.010000"],["2024-07-24T20:29:11.010000"],["2024-07-24T20:29:12.010000"],["2024-07-24T20:29:13.010000"],["2024-07-24T20:29:14.010000"],["2024-07-24T20:29:15.010000"],["2024-07-24T20:29:16.010000"],["2024-07-24T20:29:17.010000"],["2024-07-24T20:29:18.010000"],["2024-07-24T20:29:19.010000"],["2024-07-24T20:29:20.010000"],["2024-07-24T20:29:21.010000"],["2024-07-24T20:29:22.010000"],["2024-07-24T20:29:23.010000"],["2024-07-24T20:29:24.010000"],["2024-07-24T20:29:25.010000"],["2024-07-24T20:29:26.010000"],["2024-07-24T20:29:27.010000"],["2024-07-24T20:29:28.010000"],["2024-07-24T20:29:29.010000"],["2024-07-24T20:29:30.010000"],["2024-07-24T20:29:31.010000"],["2024-07-24T20:29:32.010000"],["2024-07-24T20:29:33.010000"],["2024-07-24T20:29:34.010000"],["2024-07-24T20:29:35.010000"],["2024-07-24T20:29:36.010000"],["2024-07-24T20:29:37.010000"],["2024-07-24T20:29:38.010000"],["2024-07-24T20:29:39.010000"],["2024-07-24T20:29:40.010000"],["2024-07-24T20:29:41.010000"],["2024-07-24T20:29:42.010000"],["2024-07-24T20:29:43.010000"],["2024-07-24T20:29:44.010000"],["2024-07-24T20:29:45.010000"],["2024-07-24T20:29:46.010000"],["2024-07-24T20:29:47.010000"],["2024-07-24T20:29:48.010000"],["2024-07-24T20:29:49.010000"],["2024-07-24T20:29:50.010000"],["2024-07-24T20:29:51.010000"],["2024-07-24T20:29:52.010000"],["2024-07-24T20:29:53.010000"],["2024-07-24T20:29:54.010000"],["2024-07-24T20:29:55.010000"],["2024-07-24T20:29:56.010000"],["2024-07-24T20:29:57.010000"],["2024-07-24T20:29:58.010000"],["2024-07-24T20:29:59.010000"],["2024-07-24T20:30:00.010000"],["2024-07-24T20:30:01.010000"],["2024-07-24T20:30:02.010000"],["2024-07-24T20:30:03.010000"],["2024-07-24T20:30:04.010000"],["2024-07-24T20:30:05.010000"],["2024-07-24T20:30:06.010000"],["2024-07-24T20:30:07.010000"],["2024-07-24T20:30:08.010000"],["2024-07-24T20:30:09.010000"],["2024-07-24T20:30:10.010000"],["2024-07-24T20:30:11.010000"],["2024-07-24T20:30:12.010000"],["2024-07-24T20:30:13.010000"],["2024-07-24T20:30:14.010000"],["2024-07-24T20:30:15.010000"],["2024-07-24T20:30:16.010000"],["2024-07-24T20:30:17.010000"],["2024-07-24T20:30:18.010000"],["2024-07-24T20:30:19.010000"],["2024-07-24T20:30:20.010000"],["2024-07-24T20:30:21.010000"],["2024-07-24T20:30:22.010000"],["2024-07-24T20:30:23.010000"],["2024-07-24T20:30:24.010000"],["2024-07-24T20:30:25.010000"],["2024-07-24T20:30:26.010000"],["2024-07-24T20:30:27.010000"],["2024-07-24T20:30:28.010000"],["2024-07-24T20:30:29.010000"],["2024-07-24T20:30:30.010000"],["2024-07-24T20:30:31.010000"],["2024-07-24T20:30:32.010000"],["2024-07-24T20:30:33.010000"],["2024-07-24T20:30:34.010000"],["2024-07-24T20:30:35.010000"],["2024-07-24T20:30:36.010000"],["2024-07-24T20:30:37.010000"],["2024-07-24T20:30:38.010000"],["2024-07-24T20:30:39.010000"],["2024-07-24T20:30:40.010000"],["2024-07-24T20:30:41.010000"],["2024-07-24T20:30:42.010000"],["2024-07-24T20:30:43.010000"],["2024-07-24T20:30:44.010000"],["2024-07-24T20:30:45.010000"],["2024-07-24T20:30:46.010000"],["2024-07-24T20:30:47.010000"],["2024-07-24T20:30:48.010000"],["2024-07-24T20:30:49.010000"],["2024-07-24T20:30:50.010000"],["2024-07-24T20:30:51.010000"],["2024-07-24T20:30:52.010000"],["2024-07-24T20:30:53.010000"],["2024-07-24T20:30:54.010000"],["2024-07-24T20:30:55.010000"],["2024-07-24T20:30:56.010000"],["2024-07-24T20:30:57.010000"],["2024-07-24T20:30:58.010000"],["2024-07-24T20:30:59.010000"],["2024-07-24T20:31:00.010000"],["2024-07-24T20:31:01.010000"],["2024-07-24T20:31:02.010000"],["2024-07-24T20:31:03.010000"],["2024-07-24T20:31:04.010000"],["2024-07-24T20:31:05.010000"],["2024-07-24T20:31:06.010000"],["2024-07-24T20:31:07.010000"],["2024-07-24T20:31:08.010000"],["2024-07-24T20:31:09.010000"],["2024-07-24T20:31:10.010000"],["2024-07-24T20:31:11.010000"],["2024-07-24T20:31:12.010000"],["2024-07-24T20:31:13.010000"],["2024-07-24T20:31:14.010000"],["2024-07-24T20:31:15.010000"],["2024-07-24T20:31:16.010000"],["2024-07-24T20:31:17.010000"],["2024-07-24T20:31:18.010000"],["2024-07-24T20:31:19.010000"],["2024-07-24T20:31:20.010000"],["2024-07-24T20:31:21.010000"],["2024-07-24T20:31:22.010000"],["2024-07-24T20:31:23.010000"],["2024-07-24T20:31:24.010000"],["2024-07-24T20:31:25.010000"],["2024-07-24T20:31:26.010000"],["2024-07-24T20:31:27.010000"],["2024-07-24T20:31:28.010000"],["2024-07-24T20:31:29.010000"],["2024-07-24T20:31:30.010000"],["2024-07-24T20:31:31.010000"],["2024-07-24T20:31:32.010000"],["2024-07-24T20:31:33.010000"],["2024-07-24T20:31:34.010000"],["2024-07-24T20:31:35.010000"],["2024-07-24T20:31:36.010000"],["2024-07-24T20:31:37.010000"],["2024-07-24T20:31:38.010000"],["2024-07-24T20:31:39.010000"],["2024-07-24T20:31:40.010000"],["2024-07-24T20:31:41.010000"],["2024-07-24T20:31:42.010000"],["2024-07-24T20:31:43.010000"],["2024-07-24T20:31:44.010000"],["2024-07-24T20:31:45.010000"],["2024-07-24T20:31:46.010000"],["2024-07-24T20:31:47.010000"],["2024-07-24T20:31:48.010000"],["2024-07-24T20:31:49.010000"],["2024-07-24T20:31:50.010000"],["2024-07-24T20:31:51.010000"],["2024-07-24T20:31:52.010000"],["2024-07-24T20:31:53.010000"],["2024-07-24T20:31:54.010000"],["2024-07-24T20:31:55.010000"],["2024-07-24T20:31:56.010000"],["2024-07-24T20:31:57.010000"],["2024-07-24T20:31:58.010000"],["2024-07-24T20:31:59.010000"],["2024-07-24T20:32:00.010000"],["2024-07-24T20:32:01.010000"],["2024-07-24T20:32:02.010000"],["2024-07-24T20:32:03.010000"],["2024-07-24T20:32:04.010000"],["2024-07-24T20:32:05.010000"],["2024-07-24T20:32:06.010000"],["2024-07-24T20:32:07.010000"],["2024-07-24T20:32:08.010000"],["2024-07-24T20:32:09.010000"],["2024-07-24T20:32:10.010000"],["2024-07-24T20:32:11.010000"],["2024-07-24T20:32:12.010000"],["2024-07-24T20:32:13.010000"],["2024-07-24T20:32:14.010000"],["2024-07-24T20:32:15.010000"],["2024-07-24T20:32:16.010000"],["2024-07-24T20:32:17.010000"],["2024-07-24T20:32:18.010000"],["2024-07-24T20:32:19.010000"],["2024-07-24T20:32:20.010000"],["2024-07-24T20:32:21.010000"],["2024-07-24T20:32:22.010000"],["2024-07-24T20:32:23.010000"],["2024-07-24T20:32:24.010000"],["2024-07-24T20:32:25.010000"],["2024-07-24T20:32:26.010000"],["2024-07-24T20:32:27.010000"],["2024-07-24T20:32:28.010000"],["2024-07-24T20:32:29.010000"],["2024-07-24T20:32:30.010000"],["2024-07-24T20:32:31.010000"],["2024-07-24T20:32:32.010000"],["2024-07-24T20:32:33.010000"],["2024-07-24T20:32:34.010000"],["2024-07-24T20:32:35.010000"],["2024-07-24T20:32:36.010000"],["2024-07-24T20:32:37.010000"],["2024-07-24T20:32:38.010000"],["2024-07-24T20:32:39.010000"],["2024-07-24T20:32:40.010000"],["2024-07-24T20:32:41.010000"],["2024-07-24T20:32:42.010000"],["2024-07-24T20:32:43.010000"],["2024-07-24T20:32:44.010000"],["2024-07-24T20:32:45.010000"],["2024-07-24T20:32:46.010000"],["2024-07-24T20:32:47.010000"],["2024-07-24T20:32:48.010000"],["2024-07-24T20:32:49.010000"],["2024-07-24T20:32:50.010000"],["2024-07-24T20:32:51.010000"],["2024-07-24T20:32:52.010000"],["2024-07-24T20:32:53.010000"],["2024-07-24T20:32:54.010000"],["2024-07-24T20:32:55.010000"],["2024-07-24T20:32:56.010000"],["2024-07-24T20:32:57.010000"],["2024-07-24T20:32:58.010000"],["2024-07-24T20:32:59.010000"],["2024-07-24T20:33:00.010000"],["2024-07-24T20:33:01.010000"],["2024-07-24T20:33:02.010000"],["2024-07-24T20:33:03.010000"],["2024-07-24T20:33:04.010000"],["2024-07-24T20:33:05.010000"],["2024-07-24T20:33:06.010000"],["2024-07-24T20:33:07.010000"],["2024-07-24T20:33:08.010000"],["2024-07-24T20:33:09.010000"],["2024-07-24T20:33:10.010000"],["2024-07-24T20:33:11.010000"],["2024-07-24T20:33:12.010000"],["2024-07-24T20:33:13.010000"],["2024-07-24T20:33:14.010000"],["2024-07-24T20:33:15.010000"],["2024-07-24T20:33:16.010000"],["2024-07-24T20:33:17.010000"],["2024-07-24T20:33:18.010000"],["2024-07-24T20:33:19.010000"],["2024-07-24T20:33:20.010000"],["2024-07-24T20:33:21.010000"],["2024-07-24T20:33:22.010000"],["2024-07-24T20:33:23.010000"],["2024-07-24T20:33:24.010000"],["2024-07-24T20:33:25.010000"],["2024-07-24T20:33:26.010000"],["2024-07-24T20:33:27.010000"],["2024-07-24T20:33:28.010000"],["2024-07-24T20:33:29.010000"],["2024-07-24T20:33:30.010000"],["2024-07-24T20:33:31.010000"],["2024-07-24T20:33:32.010000"],["2024-07-24T20:33:33.010000"],["2024-07-24T20:33:34.010000"],["2024-07-24T20:33:35.010000"],["2024-07-24T20:33:36.010000"],["2024-07-24T20:33:37.010000"],["2024-07-24T20:33:38.010000"],["2024-07-24T20:33:39.010000"],["2024-07-24T20:33:40.010000"],["2024-07-24T20:33:41.010000"],["2024-07-24T20:33:42.010000"],["2024-07-24T20:33:43.010000"],["2024-07-24T20:33:44.010000"],["2024-07-24T20:33:45.010000"],["2024-07-24T20:33:46.010000"],["2024-07-24T20:33:47.010000"],["2024-07-24T20:33:48.010000"],["2024-07-24T20:33:49.010000"],["2024-07-24T20:33:50.010000"],["2024-07-24T20:33:51.010000"],["2024-07-24T20:33:52.010000"],["2024-07-24T20:33:53.010000"],["2024-07-24T20:33:54.010000"],["2024-07-24T20:33:55.010000"],["2024-07-24T20:33:56.010000"],["2024-07-24T20:33:57.010000"],["2024-07-24T20:33:58.010000"],["2024-07-24T20:33:59.010000"],["2024-07-24T20:34:00.010000"],["2024-07-24T20:34:01.010000"],["2024-07-24T20:34:02.010000"],["2024-07-24T20:34:03.010000"],["2024-07-24T20:34:04.010000"],["2024-07-24T20:34:05.010000"],["2024-07-24T20:34:06.010000"],["2024-07-24T20:34:07.010000"],["2024-07-24T20:34:08.010000"],["2024-07-24T20:34:09.010000"],["2024-07-24T20:34:10.010000"],["2024-07-24T20:34:11.010000"],["2024-07-24T20:34:12.010000"],["2024-07-24T20:34:13.010000"],["2024-07-24T20:34:14.010000"],["2024-07-24T20:34:15.010000"],["2024-07-24T20:34:16.010000"],["2024-07-24T20:34:17.010000"],["2024-07-24T20:34:18.010000"],["2024-07-24T20:34:19.010000"],["2024-07-24T20:34:20.010000"],["2024-07-24T20:34:21.010000"],["2024-07-24T20:34:22.010000"],["2024-07-24T20:34:23.010000"],["2024-07-24T20:34:24.010000"],["2024-07-24T20:34:25.010000"],["2024-07-24T20:34:26.010000"],["2024-07-24T20:34:27.010000"],["2024-07-24T20:34:28.010000"],["2024-07-24T20:34:29.010000"],["2024-07-24T20:34:30.010000"],["2024-07-24T20:34:31.010000"],["2024-07-24T20:34:32.010000"],["2024-07-24T20:34:33.010000"],["2024-07-24T20:34:34.010000"],["2024-07-24T20:34:35.010000"],["2024-07-24T20:34:36.010000"],["2024-07-24T20:34:37.010000"],["2024-07-24T20:34:38.010000"],["2024-07-24T20:34:39.010000"],["2024-07-24T20:34:40.010000"],["2024-07-24T20:34:41.010000"],["2024-07-24T20:34:42.010000"],["2024-07-24T20:34:43.010000"],["2024-07-24T20:34:44.010000"],["2024-07-24T20:34:45.010000"],["2024-07-24T20:34:46.010000"],["2024-07-24T20:34:47.010000"],["2024-07-24T20:34:48.010000"],["2024-07-24T20:34:49.010000"],["2024-07-24T20:34:50.010000"],["2024-07-24T20:34:51.010000"],["2024-07-24T20:34:52.010000"],["2024-07-24T20:34:53.010000"],["2024-07-24T20:34:54.010000"],["2024-07-24T20:34:55.010000"],["2024-07-24T20:34:56.010000"],["2024-07-24T20:34:57.010000"],["2024-07-24T20:34:58.010000"],["2024-07-24T20:34:59.010000"],["2024-07-24T20:35:00.010000"],["2024-07-24T20:35:01.010000"],["2024-07-24T20:35:02.010000"],["2024-07-24T20:35:03.010000"],["2024-07-24T20:35:04.010000"],["2024-07-24T20:35:05.010000"],["2024-07-24T20:35:06.010000"],["2024-07-24T20:35:07.010000"],["2024-07-24T20:35:08.010000"],["2024-07-24T20:35:09.010000"],["2024-07-24T20:35:10.010000"],["2024-07-24T20:35:11.010000"],["2024-07-24T20:35:12.010000"],["2024-07-24T20:35:13.010000"],["2024-07-24T20:35:14.010000"],["2024-07-24T20:35:15.010000"],["2024-07-24T20:35:16.010000"],["2024-07-24T20:35:17.010000"],["2024-07-24T20:35:18.010000"],["2024-07-24T20:35:19.010000"],["2024-07-24T20:35:20.010000"],["2024-07-24T20:35:21.010000"],["2024-07-24T20:35:22.010000"],["2024-07-24T20:35:23.010000"],["2024-07-24T20:35:24.010000"],["2024-07-24T20:35:25.010000"],["2024-07-24T20:35:26.010000"],["2024-07-24T20:35:27.010000"],["2024-07-24T20:35:28.010000"],["2024-07-24T20:35:29.010000"],["2024-07-24T20:35:30.010000"],["2024-07-24T20:35:31.010000"],["2024-07-24T20:35:32.010000"],["2024-07-24T20:35:33.010000"],["2024-07-24T20:35:34.010000"],["2024-07-24T20:35:35.010000"],["2024-07-24T20:35:36.010000"],["2024-07-24T20:35:37.010000"],["2024-07-24T20:35:38.010000"],["2024-07-24T20:35:39.010000"],["2024-07-24T20:35:40.010000"],["2024-07-24T20:35:41.010000"],["2024-07-24T20:35:42.010000"],["2024-07-24T20:35:43.010000"],["2024-07-24T20:35:44.010000"],["2024-07-24T20:35:45.010000"],["2024-07-24T20:35:46.010000"],["2024-07-24T20:35:47.010000"],["2024-07-24T20:35:48.010000"],["2024-07-24T20:35:49.010000"],["2024-07-24T20:35:50.010000"],["2024-07-24T20:35:51.010000"],["2024-07-24T20:35:52.010000"],["2024-07-24T20:35:53.010000"],["2024-07-24T20:35:54.010000"],["2024-07-24T20:35:55.010000"],["2024-07-24T20:35:56.010000"],["2024-07-24T20:35:57.010000"],["2024-07-24T20:35:58.010000"],["2024-07-24T20:35:59.010000"],["2024-07-24T20:36:00.010000"],["2024-07-24T20:36:01.010000"],["2024-07-24T20:36:02.010000"],["2024-07-24T20:36:03.010000"],["2024-07-24T20:36:04.010000"],["2024-07-24T20:36:05.010000"],["2024-07-24T20:36:06.010000"],["2024-07-24T20:36:07.010000"],["2024-07-24T20:36:08.010000"],["2024-07-24T20:36:09.010000"],["2024-07-24T20:36:10.010000"],["2024-07-24T20:36:11.010000"],["2024-07-24T20:36:12.010000"],["2024-07-24T20:36:13.010000"],["2024-07-24T20:36:14.010000"],["2024-07-24T20:36:15.010000"],["2024-07-24T20:36:16.010000"],["2024-07-24T20:36:17.010000"],["2024-07-24T20:36:18.010000"],["2024-07-24T20:36:19.010000"],["2024-07-24T20:36:20.010000"],["2024-07-24T20:36:21.010000"],["2024-07-24T20:36:22.010000"],["2024-07-24T20:36:23.010000"],["2024-07-24T20:36:24.010000"],["2024-07-24T20:36:25.010000"],["2024-07-24T20:36:26.010000"],["2024-07-24T20:36:27.010000"],["2024-07-24T20:36:28.010000"],["2024-07-24T20:36:29.010000"],["2024-07-24T20:36:30.010000"],["2024-07-24T20:36:31.010000"],["2024-07-24T20:36:32.010000"],["2024-07-24T20:36:33.010000"],["2024-07-24T20:36:34.010000"],["2024-07-24T20:36:35.010000"],["2024-07-24T20:36:36.010000"],["2024-07-24T20:36:37.010000"],["2024-07-24T20:36:38.010000"],["2024-07-24T20:36:39.010000"],["2024-07-24T20:36:40.010000"],["2024-07-24T20:36:41.010000"],["2024-07-24T20:36:42.010000"],["2024-07-24T20:36:43.010000"],["2024-07-24T20:36:44.010000"],["2024-07-24T20:36:45.010000"],["2024-07-24T20:36:46.010000"],["2024-07-24T20:36:47.010000"],["2024-07-24T20:36:48.010000"],["2024-07-24T20:36:49.010000"],["2024-07-24T20:36:50.010000"],["2024-07-24T20:36:51.010000"],["2024-07-24T20:36:52.010000"],["2024-07-24T20:36:53.010000"],["2024-07-24T20:36:54.010000"],["2024-07-24T20:36:55.010000"],["2024-07-24T20:36:56.010000"],["2024-07-24T20:36:57.010000"],["2024-07-24T20:36:58.010000"],["2024-07-24T20:36:59.010000"],["2024-07-24T20:37:00.010000"],["2024-07-24T20:37:01.010000"],["2024-07-24T20:37:02.010000"],["2024-07-24T20:37:03.010000"],["2024-07-24T20:37:04.010000"],["2024-07-24T20:37:05.010000"],["2024-07-24T20:37:06.010000"],["2024-07-24T20:37:07.010000"],["2024-07-24T20:37:08.010000"],["2024-07-24T20:37:09.010000"],["2024-07-24T20:37:10.010000"],["2024-07-24T20:37:11.010000"],["2024-07-24T20:37:12.010000"],["2024-07-24T20:37:13.010000"],["2024-07-24T20:37:14.010000"],["2024-07-24T20:37:15.010000"],["2024-07-24T20:37:16.010000"],["2024-07-24T20:37:17.010000"],["2024-07-24T20:37:18.010000"],["2024-07-24T20:37:19.010000"],["2024-07-24T20:37:20.010000"],["2024-07-24T20:37:21.010000"],["2024-07-24T20:37:22.010000"],["2024-07-24T20:37:23.010000"],["2024-07-24T20:37:24.010000"],["2024-07-24T20:37:25.010000"],["2024-07-24T20:37:26.010000"],["2024-07-24T20:37:27.010000"],["2024-07-24T20:37:28.010000"],["2024-07-24T20:37:29.010000"],["2024-07-24T20:37:30.010000"],["2024-07-24T20:37:31.010000"],["2024-07-24T20:37:32.010000"],["2024-07-24T20:37:33.010000"],["2024-07-24T20:37:34.010000"],["2024-07-24T20:37:35.010000"],["2024-07-24T20:37:36.010000"],["2024-07-24T20:37:37.010000"],["2024-07-24T20:37:38.010000"],["2024-07-24T20:37:39.010000"],["2024-07-24T20:37:40.010000"],["2024-07-24T20:37:41.010000"],["2024-07-24T20:37:42.010000"],["2024-07-24T20:37:43.010000"],["2024-07-24T20:37:44.010000"],["2024-07-24T20:37:45.010000"],["2024-07-24T20:37:46.010000"],["2024-07-24T20:37:47.010000"],["2024-07-24T20:37:48.010000"],["2024-07-24T20:37:49.010000"],["2024-07-24T20:37:50.010000"],["2024-07-24T20:37:51.010000"],["2024-07-24T20:37:52.010000"],["2024-07-24T20:37:53.010000"],["2024-07-24T20:37:54.010000"],["2024-07-24T20:37:55.010000"],["2024-07-24T20:37:56.010000"],["2024-07-24T20:37:57.010000"],["2024-07-24T20:37:58.010000"],["2024-07-24T20:37:59.010000"],["2024-07-24T20:38:00.010000"],["2024-07-24T20:38:01.010000"],["2024-07-24T20:38:02.010000"],["2024-07-24T20:38:03.010000"],["2024-07-24T20:38:04.010000"],["2024-07-24T20:38:05.010000"],["2024-07-24T20:38:06.010000"],["2024-07-24T20:38:07.010000"],["2024-07-24T20:38:08.010000"],["2024-07-24T20:38:09.010000"],["2024-07-24T20:38:10.010000"],["2024-07-24T20:38:11.010000"],["2024-07-24T20:38:12.010000"],["2024-07-24T20:38:13.010000"],["2024-07-24T20:38:14.010000"],["2024-07-24T20:38:15.010000"],["2024-07-24T20:38:16.010000"],["2024-07-24T20:38:17.010000"],["2024-07-24T20:38:18.010000"],["2024-07-24T20:38:19.010000"],["2024-07-24T20:38:20.010000"],["2024-07-24T20:38:21.010000"],["2024-07-24T20:38:22.010000"],["2024-07-24T20:38:23.010000"],["2024-07-24T20:38:24.010000"],["2024-07-24T20:38:25.010000"],["2024-07-24T20:38:26.010000"],["2024-07-24T20:38:27.010000"],["2024-07-24T20:38:28.010000"],["2024-07-24T20:38:29.010000"],["2024-07-24T20:38:30.010000"],["2024-07-24T20:38:31.010000"],["2024-07-24T20:38:32.010000"],["2024-07-24T20:38:33.010000"],["2024-07-24T20:38:34.010000"],["2024-07-24T20:38:35.010000"],["2024-07-24T20:38:36.010000"],["2024-07-24T20:38:37.010000"],["2024-07-24T20:38:38.010000"],["2024-07-24T20:38:39.010000"],["2024-07-24T20:38:40.010000"],["2024-07-24T20:38:41.010000"],["2024-07-24T20:38:42.010000"],["2024-07-24T20:38:43.010000"],["2024-07-24T20:38:44.010000"],["2024-07-24T20:38:45.010000"],["2024-07-24T20:38:46.010000"],["2024-07-24T20:38:47.010000"],["2024-07-24T20:38:48.010000"],["2024-07-24T20:38:49.010000"],["2024-07-24T20:38:50.010000"],["2024-07-24T20:38:51.010000"],["2024-07-24T20:38:52.010000"],["2024-07-24T20:38:53.010000"],["2024-07-24T20:38:54.010000"],["2024-07-24T20:38:55.010000"],["2024-07-24T20:38:56.010000"],["2024-07-24T20:38:57.010000"],["2024-07-24T20:38:58.010000"],["2024-07-24T20:38:59.010000"],["2024-07-24T20:39:00.010000"],["2024-07-24T20:39:01.010000"],["2024-07-24T20:39:02.010000"],["2024-07-24T20:39:03.010000"],["2024-07-24T20:39:04.010000"],["2024-07-24T20:39:05.010000"],["2024-07-24T20:39:06.010000"],["2024-07-24T20:39:07.010000"],["2024-07-24T20:39:08.010000"],["2024-07-24T20:39:09.010000"],["2024-07-24T20:39:10.010000"],["2024-07-24T20:39:11.010000"],["2024-07-24T20:39:12.010000"],["2024-07-24T20:39:13.010000"],["2024-07-24T20:39:14.010000"],["2024-07-24T20:39:15.010000"],["2024-07-24T20:39:16.010000"],["2024-07-24T20:39:17.010000"],["2024-07-24T20:39:18.010000"],["2024-07-24T20:39:19.010000"],["2024-07-24T20:39:20.010000"],["2024-07-24T20:39:21.010000"],["2024-07-24T20:39:22.010000"],["2024-07-24T20:39:23.010000"],["2024-07-24T20:39:24.010000"],["2024-07-24T20:39:25.010000"],["2024-07-24T20:39:26.010000"],["2024-07-24T20:39:27.010000"],["2024-07-24T20:39:28.010000"],["2024-07-24T20:39:29.010000"],["2024-07-24T20:39:30.010000"],["2024-07-24T20:39:31.010000"],["2024-07-24T20:39:32.010000"],["2024-07-24T20:39:33.010000"],["2024-07-24T20:39:34.010000"],["2024-07-24T20:39:35.010000"],["2024-07-24T20:39:36.010000"],["2024-07-24T20:39:37.010000"],["2024-07-24T20:39:38.010000"],["2024-07-24T20:39:39.010000"],["2024-07-24T20:39:40.010000"],["2024-07-24T20:39:41.010000"],["2024-07-24T20:39:42.010000"],["2024-07-24T20:39:43.010000"],["2024-07-24T20:39:44.010000"],["2024-07-24T20:39:45.010000"],["2024-07-24T20:39:46.010000"],["2024-07-24T20:39:47.010000"],["2024-07-24T20:39:48.010000"],["2024-07-24T20:39:49.010000"],["2024-07-24T20:39:50.010000"],["2024-07-24T20:39:51.010000"],["2024-07-24T20:39:52.010000"],["2024-07-24T20:39:53.010000"],["2024-07-24T20:39:54.010000"],["2024-07-24T20:39:55.010000"],["2024-07-24T20:39:56.010000"],["2024-07-24T20:39:57.010000"],["2024-07-24T20:39:58.010000"],["2024-07-24T20:39:59.010000"],["2024-07-24T20:40:00.010000"],["2024-07-24T20:40:01.010000"],["2024-07-24T20:40:02.010000"],["2024-07-24T20:40:03.010000"],["2024-07-24T20:40:04.010000"],["2024-07-24T20:40:05.010000"],["2024-07-24T20:40:06.010000"],["2024-07-24T20:40:07.010000"],["2024-07-24T20:40:08.010000"],["2024-07-24T20:40:09.010000"],["2024-07-24T20:40:10.010000"],["2024-07-24T20:40:11.010000"],["2024-07-24T20:40:12.010000"],["2024-07-24T20:40:13.010000"],["2024-07-24T20:40:14.010000"],["2024-07-24T20:40:15.010000"],["2024-07-24T20:40:16.010000"],["2024-07-24T20:40:17.010000"],["2024-07-24T20:40:18.010000"],["2024-07-24T20:40:19.010000"],["2024-07-24T20:40:20.010000"],["2024-07-24T20:40:21.010000"],["2024-07-24T20:40:22.010000"],["2024-07-24T20:40:23.010000"],["2024-07-24T20:40:24.010000"],["2024-07-24T20:40:25.010000"],["2024-07-24T20:40:26.010000"],["2024-07-24T20:40:27.010000"],["2024-07-24T20:40:28.010000"],["2024-07-24T20:40:29.010000"],["2024-07-24T20:40:30.010000"],["2024-07-24T20:40:31.010000"],["2024-07-24T20:40:32.010000"],["2024-07-24T20:40:33.010000"],["2024-07-24T20:40:34.010000"],["2024-07-24T20:40:35.010000"],["2024-07-24T20:40:36.010000"],["2024-07-24T20:40:37.010000"],["2024-07-24T20:40:38.010000"],["2024-07-24T20:40:39.010000"],["2024-07-24T20:40:40.010000"],["2024-07-24T20:40:41.010000"],["2024-07-24T20:40:42.010000"],["2024-07-24T20:40:43.010000"],["2024-07-24T20:40:44.010000"],["2024-07-24T20:40:45.010000"],["2024-07-24T20:40:46.010000"],["2024-07-24T20:40:47.010000"],["2024-07-24T20:40:48.010000"],["2024-07-24T20:40:49.010000"],["2024-07-24T20:40:50.010000"],["2024-07-24T20:40:51.010000"],["2024-07-24T20:40:52.010000"],["2024-07-24T20:40:53.010000"],["2024-07-24T20:40:54.010000"],["2024-07-24T20:40:55.010000"],["2024-07-24T20:40:56.010000"],["2024-07-24T20:40:57.010000"],["2024-07-24T20:40:58.010000"],["2024-07-24T20:40:59.010000"],["2024-07-24T20:41:00.010000"],["2024-07-24T20:41:01.010000"],["2024-07-24T20:41:02.010000"],["2024-07-24T20:41:03.010000"],["2024-07-24T20:41:04.010000"],["2024-07-24T20:41:05.010000"],["2024-07-24T20:41:06.010000"],["2024-07-24T20:41:07.010000"],["2024-07-24T20:41:08.010000"],["2024-07-24T20:41:09.010000"],["2024-07-24T20:41:10.010000"],["2024-07-24T20:41:11.010000"],["2024-07-24T20:41:12.010000"],["2024-07-24T20:41:13.010000"],["2024-07-24T20:41:14.010000"],["2024-07-24T20:41:15.010000"],["2024-07-24T20:41:16.010000"],["2024-07-24T20:41:17.010000"],["2024-07-24T20:41:18.010000"],["2024-07-24T20:41:19.010000"],["2024-07-24T20:41:20.010000"],["2024-07-24T20:41:21.010000"],["2024-07-24T20:41:22.010000"],["2024-07-24T20:41:23.010000"],["2024-07-24T20:41:24.010000"],["2024-07-24T20:41:25.010000"],["2024-07-24T20:41:26.010000"],["2024-07-24T20:41:27.010000"],["2024-07-24T20:41:28.010000"],["2024-07-24T20:41:29.010000"],["2024-07-24T20:41:30.010000"],["2024-07-24T20:41:31.010000"],["2024-07-24T20:41:32.010000"],["2024-07-24T20:41:33.010000"],["2024-07-24T20:41:34.010000"],["2024-07-24T20:41:35.010000"],["2024-07-24T20:41:36.010000"],["2024-07-24T20:41:37.010000"],["2024-07-24T20:41:38.010000"],["2024-07-24T20:41:39.010000"],["2024-07-24T20:41:40.010000"],["2024-07-24T20:41:41.010000"],["2024-07-24T20:41:42.010000"],["2024-07-24T20:41:43.010000"],["2024-07-24T20:41:44.010000"],["2024-07-24T20:41:45.010000"],["2024-07-24T20:41:46.010000"],["2024-07-24T20:41:47.010000"],["2024-07-24T20:41:48.010000"],["2024-07-24T20:41:49.010000"],["2024-07-24T20:41:50.010000"],["2024-07-24T20:41:51.010000"],["2024-07-24T20:41:52.010000"],["2024-07-24T20:41:53.010000"],["2024-07-24T20:41:54.010000"],["2024-07-24T20:41:55.010000"],["2024-07-24T20:41:56.010000"],["2024-07-24T20:41:57.010000"],["2024-07-24T20:41:58.010000"],["2024-07-24T20:41:59.010000"],["2024-07-24T20:42:00.010000"],["2024-07-24T20:42:01.010000"],["2024-07-24T20:42:02.010000"],["2024-07-24T20:42:03.010000"],["2024-07-24T20:42:04.010000"],["2024-07-24T20:42:05.010000"],["2024-07-24T20:42:06.010000"],["2024-07-24T20:42:07.010000"],["2024-07-24T20:42:08.010000"],["2024-07-24T20:42:09.010000"],["2024-07-24T20:42:10.010000"],["2024-07-24T20:42:11.010000"],["2024-07-24T20:42:12.010000"],["2024-07-24T20:42:13.010000"],["2024-07-24T20:42:14.010000"],["2024-07-24T20:42:15.010000"],["2024-07-24T20:42:16.010000"],["2024-07-24T20:42:17.010000"],["2024-07-24T20:42:18.010000"],["2024-07-24T20:42:19.010000"],["2024-07-24T20:42:20.010000"],["2024-07-24T20:42:21.010000"],["2024-07-24T20:42:22.010000"],["2024-07-24T20:42:23.010000"],["2024-07-24T20:42:24.010000"],["2024-07-24T20:42:25.010000"],["2024-07-24T20:42:26.010000"],["2024-07-24T20:42:27.010000"],["2024-07-24T20:42:28.010000"],["2024-07-24T20:42:29.010000"],["2024-07-24T20:42:30.010000"],["2024-07-24T20:42:31.010000"],["2024-07-24T20:42:32.010000"],["2024-07-24T20:42:33.010000"],["2024-07-24T20:42:34.010000"],["2024-07-24T20:42:35.010000"],["2024-07-24T20:42:36.010000"],["2024-07-24T20:42:37.010000"],["2024-07-24T20:42:38.010000"],["2024-07-24T20:42:39.010000"],["2024-07-24T20:42:40.010000"],["2024-07-24T20:42:41.010000"],["2024-07-24T20:42:42.010000"],["2024-07-24T20:42:43.010000"],["2024-07-24T20:42:44.010000"],["2024-07-24T20:42:45.010000"],["2024-07-24T20:42:46.010000"],["2024-07-24T20:42:47.010000"],["2024-07-24T20:42:48.010000"],["2024-07-24T20:42:49.010000"],["2024-07-24T20:42:50.010000"],["2024-07-24T20:42:51.010000"],["2024-07-24T20:42:52.010000"],["2024-07-24T20:42:53.010000"],["2024-07-24T20:42:54.010000"],["2024-07-24T20:42:55.010000"],["2024-07-24T20:42:56.010000"],["2024-07-24T20:42:57.010000"],["2024-07-24T20:42:58.010000"],["2024-07-24T20:42:59.010000"],["2024-07-24T20:43:00.010000"],["2024-07-24T20:43:01.010000"],["2024-07-24T20:43:02.010000"],["2024-07-24T20:43:03.010000"],["2024-07-24T20:43:04.010000"],["2024-07-24T20:43:05.010000"],["2024-07-24T20:43:06.010000"],["2024-07-24T20:43:07.010000"],["2024-07-24T20:43:08.010000"],["2024-07-24T20:43:09.010000"],["2024-07-24T20:43:10.010000"],["2024-07-24T20:43:11.010000"],["2024-07-24T20:43:12.010000"],["2024-07-24T20:43:13.010000"],["2024-07-24T20:43:14.010000"],["2024-07-24T20:43:15.010000"],["2024-07-24T20:43:16.010000"],["2024-07-24T20:43:17.010000"],["2024-07-24T20:43:18.010000"],["2024-07-24T20:43:19.010000"],["2024-07-24T20:43:20.010000"],["2024-07-24T20:43:21.010000"],["2024-07-24T20:43:22.010000"],["2024-07-24T20:43:23.010000"],["2024-07-24T20:43:24.010000"],["2024-07-24T20:43:25.010000"],["2024-07-24T20:43:26.010000"],["2024-07-24T20:43:27.010000"],["2024-07-24T20:43:28.010000"],["2024-07-24T20:43:29.010000"],["2024-07-24T20:43:30.010000"],["2024-07-24T20:43:31.010000"],["2024-07-24T20:43:32.010000"],["2024-07-24T20:43:33.010000"],["2024-07-24T20:43:34.010000"],["2024-07-24T20:43:35.010000"],["2024-07-24T20:43:36.010000"],["2024-07-24T20:43:37.010000"],["2024-07-24T20:43:38.010000"],["2024-07-24T20:43:39.010000"],["2024-07-24T20:43:40.010000"],["2024-07-24T20:43:41.010000"],["2024-07-24T20:43:42.010000"],["2024-07-24T20:43:43.010000"],["2024-07-24T20:43:44.010000"],["2024-07-24T20:43:45.010000"],["2024-07-24T20:43:46.010000"],["2024-07-24T20:43:47.010000"],["2024-07-24T20:43:48.010000"],["2024-07-24T20:43:49.010000"],["2024-07-24T20:43:50.010000"],["2024-07-24T20:43:51.010000"],["2024-07-24T20:43:52.010000"],["2024-07-24T20:43:53.010000"],["2024-07-24T20:43:54.010000"],["2024-07-24T20:43:55.010000"],["2024-07-24T20:43:56.010000"],["2024-07-24T20:43:57.010000"],["2024-07-24T20:43:58.010000"],["2024-07-24T20:43:59.010000"],["2024-07-24T20:44:00.010000"],["2024-07-24T20:44:01.010000"],["2024-07-24T20:44:02.010000"],["2024-07-24T20:44:03.010000"],["2024-07-24T20:44:04.010000"],["2024-07-24T20:44:05.010000"],["2024-07-24T20:44:06.010000"],["2024-07-24T20:44:07.010000"],["2024-07-24T20:44:08.010000"],["2024-07-24T20:44:09.010000"],["2024-07-24T20:44:10.010000"],["2024-07-24T20:44:11.010000"],["2024-07-24T20:44:12.010000"],["2024-07-24T20:44:13.010000"],["2024-07-24T20:44:14.010000"],["2024-07-24T20:44:15.010000"],["2024-07-24T20:44:16.010000"],["2024-07-24T20:44:17.010000"],["2024-07-24T20:44:18.010000"],["2024-07-24T20:44:19.010000"],["2024-07-24T20:44:20.010000"],["2024-07-24T20:44:21.010000"],["2024-07-24T20:44:22.010000"],["2024-07-24T20:44:23.010000"],["2024-07-24T20:44:24.010000"],["2024-07-24T20:44:25.010000"],["2024-07-24T20:44:26.010000"],["2024-07-24T20:44:27.010000"],["2024-07-24T20:44:28.010000"],["2024-07-24T20:44:29.010000"],["2024-07-24T20:44:30.010000"],["2024-07-24T20:44:31.010000"],["2024-07-24T20:44:32.010000"],["2024-07-24T20:44:33.010000"],["2024-07-24T20:44:34.010000"],["2024-07-24T20:44:35.010000"],["2024-07-24T20:44:36.010000"],["2024-07-24T20:44:37.010000"],["2024-07-24T20:44:38.010000"],["2024-07-24T20:44:39.010000"],["2024-07-24T20:44:40.010000"],["2024-07-24T20:44:41.010000"],["2024-07-24T20:44:42.010000"],["2024-07-24T20:44:43.010000"],["2024-07-24T20:44:44.010000"],["2024-07-24T20:44:45.010000"],["2024-07-24T20:44:46.010000"],["2024-07-24T20:44:47.010000"],["2024-07-24T20:44:48.010000"],["2024-07-24T20:44:49.010000"],["2024-07-24T20:44:50.010000"],["2024-07-24T20:44:51.010000"],["2024-07-24T20:44:52.010000"],["2024-07-24T20:44:53.010000"],["2024-07-24T20:44:54.010000"],["2024-07-24T20:44:55.010000"],["2024-07-24T20:44:56.010000"],["2024-07-24T20:44:57.010000"],["2024-07-24T20:44:58.010000"],["2024-07-24T20:44:59.010000"],["2024-07-24T20:45:00.010000"],["2024-07-24T20:45:01.010000"],["2024-07-24T20:45:02.010000"],["2024-07-24T20:45:03.010000"],["2024-07-24T20:45:04.010000"],["2024-07-24T20:45:05.010000"],["2024-07-24T20:45:06.010000"],["2024-07-24T20:45:07.010000"],["2024-07-24T20:45:08.010000"],["2024-07-24T20:45:09.010000"],["2024-07-24T20:45:10.010000"],["2024-07-24T20:45:11.010000"],["2024-07-24T20:45:12.010000"],["2024-07-24T20:45:13.010000"],["2024-07-24T20:45:14.010000"],["2024-07-24T20:45:15.010000"],["2024-07-24T20:45:16.010000"],["2024-07-24T20:45:17.010000"],["2024-07-24T20:45:18.010000"],["2024-07-24T20:45:19.010000"],["2024-07-24T20:45:20.010000"],["2024-07-24T20:45:21.010000"],["2024-07-24T20:45:22.010000"],["2024-07-24T20:45:23.010000"],["2024-07-24T20:45:24.010000"],["2024-07-24T20:45:25.010000"],["2024-07-24T20:45:26.010000"],["2024-07-24T20:45:27.010000"],["2024-07-24T20:45:28.010000"],["2024-07-24T20:45:29.010000"],["2024-07-24T20:45:30.010000"],["2024-07-24T20:45:31.010000"],["2024-07-24T20:45:32.010000"],["2024-07-24T20:45:33.010000"],["2024-07-24T20:45:34.010000"],["2024-07-24T20:45:35.010000"],["2024-07-24T20:45:36.010000"],["2024-07-24T20:45:37.010000"],["2024-07-24T20:45:38.010000"],["2024-07-24T20:45:39.010000"],["2024-07-24T20:45:40.010000"],["2024-07-24T20:45:41.010000"],["2024-07-24T20:45:42.010000"],["2024-07-24T20:45:43.010000"],["2024-07-24T20:45:44.010000"],["2024-07-24T20:45:45.010000"],["2024-07-24T20:45:46.010000"],["2024-07-24T20:45:47.010000"],["2024-07-24T20:45:48.010000"],["2024-07-24T20:45:49.010000"],["2024-07-24T20:45:50.010000"],["2024-07-24T20:45:51.010000"],["2024-07-24T20:45:52.010000"],["2024-07-24T20:45:53.010000"],["2024-07-24T20:45:54.010000"],["2024-07-24T20:45:55.010000"],["2024-07-24T20:45:56.010000"],["2024-07-24T20:45:57.010000"],["2024-07-24T20:45:58.010000"],["2024-07-24T20:45:59.010000"],["2024-07-24T20:46:00.010000"],["2024-07-24T20:46:01.010000"],["2024-07-24T20:46:02.010000"],["2024-07-24T20:46:03.010000"],["2024-07-24T20:46:04.010000"],["2024-07-24T20:46:05.010000"],["2024-07-24T20:46:06.010000"],["2024-07-24T20:46:07.010000"],["2024-07-24T20:46:08.010000"],["2024-07-24T20:46:09.010000"],["2024-07-24T20:46:10.010000"],["2024-07-24T20:46:11.010000"],["2024-07-24T20:46:12.010000"],["2024-07-24T20:46:13.010000"],["2024-07-24T20:46:14.010000"],["2024-07-24T20:46:15.010000"],["2024-07-24T20:46:16.010000"],["2024-07-24T20:46:17.010000"],["2024-07-24T20:46:18.010000"],["2024-07-24T20:46:19.010000"],["2024-07-24T20:46:20.010000"],["2024-07-24T20:46:21.010000"],["2024-07-24T20:46:22.010000"],["2024-07-24T20:46:23.010000"],["2024-07-24T20:46:24.010000"],["2024-07-24T20:46:25.010000"],["2024-07-24T20:46:26.010000"],["2024-07-24T20:46:27.010000"],["2024-07-24T20:46:28.010000"],["2024-07-24T20:46:29.010000"],["2024-07-24T20:46:30.010000"],["2024-07-24T20:46:31.010000"],["2024-07-24T20:46:32.010000"],["2024-07-24T20:46:33.010000"],["2024-07-24T20:46:34.010000"],["2024-07-24T20:46:35.010000"],["2024-07-24T20:46:36.010000"],["2024-07-24T20:46:37.010000"],["2024-07-24T20:46:38.010000"],["2024-07-24T20:46:39.010000"],["2024-07-24T20:46:40.010000"],["2024-07-24T20:46:41.010000"],["2024-07-24T20:46:42.010000"],["2024-07-24T20:46:43.010000"],["2024-07-24T20:46:44.010000"],["2024-07-24T20:46:45.010000"],["2024-07-24T20:46:46.010000"],["2024-07-24T20:46:47.010000"],["2024-07-24T20:46:48.010000"],["2024-07-24T20:46:49.010000"],["2024-07-24T20:46:50.010000"],["2024-07-24T20:46:51.010000"],["2024-07-24T20:46:52.010000"],["2024-07-24T20:46:53.010000"],["2024-07-24T20:46:54.010000"],["2024-07-24T20:46:55.010000"],["2024-07-24T20:46:56.010000"],["2024-07-24T20:46:57.010000"],["2024-07-24T20:46:58.010000"],["2024-07-24T20:46:59.010000"],["2024-07-24T20:47:00.010000"],["2024-07-24T20:47:01.010000"],["2024-07-24T20:47:02.010000"],["2024-07-24T20:47:03.010000"],["2024-07-24T20:47:04.010000"],["2024-07-24T20:47:05.010000"],["2024-07-24T20:47:06.010000"],["2024-07-24T20:47:07.010000"],["2024-07-24T20:47:08.010000"],["2024-07-24T20:47:09.010000"],["2024-07-24T20:47:10.010000"],["2024-07-24T20:47:11.010000"],["2024-07-24T20:47:12.010000"],["2024-07-24T20:47:13.010000"],["2024-07-24T20:47:14.010000"],["2024-07-24T20:47:15.010000"],["2024-07-24T20:47:16.010000"],["2024-07-24T20:47:17.010000"],["2024-07-24T20:47:18.010000"],["2024-07-24T20:47:19.010000"],["2024-07-24T20:47:20.010000"],["2024-07-24T20:47:21.010000"],["2024-07-24T20:47:22.010000"],["2024-07-24T20:47:23.010000"],["2024-07-24T20:47:24.010000"],["2024-07-24T20:47:25.010000"],["2024-07-24T20:47:26.010000"],["2024-07-24T20:47:27.010000"],["2024-07-24T20:47:28.010000"],["2024-07-24T20:47:29.010000"],["2024-07-24T20:47:30.010000"],["2024-07-24T20:47:31.010000"],["2024-07-24T20:47:32.010000"],["2024-07-24T20:47:33.010000"],["2024-07-24T20:47:34.010000"],["2024-07-24T20:47:35.010000"],["2024-07-24T20:47:36.010000"],["2024-07-24T20:47:37.010000"],["2024-07-24T20:47:38.010000"],["2024-07-24T20:47:39.010000"],["2024-07-24T20:47:40.010000"],["2024-07-24T20:47:41.010000"],["2024-07-24T20:47:42.010000"],["2024-07-24T20:47:43.010000"],["2024-07-24T20:47:44.010000"],["2024-07-24T20:47:45.010000"],["2024-07-24T20:47:46.010000"],["2024-07-24T20:47:47.010000"],["2024-07-24T20:47:48.010000"],["2024-07-24T20:47:49.010000"],["2024-07-24T20:47:50.010000"],["2024-07-24T20:47:51.010000"],["2024-07-24T20:47:52.010000"],["2024-07-24T20:47:53.010000"],["2024-07-24T20:47:54.010000"],["2024-07-24T20:47:55.010000"],["2024-07-24T20:47:56.010000"],["2024-07-24T20:47:57.010000"],["2024-07-24T20:47:58.010000"],["2024-07-24T20:47:59.010000"],["2024-07-24T20:48:00.010000"],["2024-07-24T20:48:01.010000"],["2024-07-24T20:48:02.010000"],["2024-07-24T20:48:03.010000"],["2024-07-24T20:48:04.010000"],["2024-07-24T20:48:05.010000"],["2024-07-24T20:48:06.010000"],["2024-07-24T20:48:07.010000"],["2024-07-24T20:48:08.010000"],["2024-07-24T20:48:09.010000"],["2024-07-24T20:48:10.010000"],["2024-07-24T20:48:11.010000"],["2024-07-24T20:48:12.010000"],["2024-07-24T20:48:13.010000"],["2024-07-24T20:48:14.010000"],["2024-07-24T20:48:15.010000"],["2024-07-24T20:48:16.010000"],["2024-07-24T20:48:17.010000"],["2024-07-24T20:48:18.010000"],["2024-07-24T20:48:19.010000"],["2024-07-24T20:48:20.010000"],["2024-07-24T20:48:21.010000"],["2024-07-24T20:48:22.010000"],["2024-07-24T20:48:23.010000"],["2024-07-24T20:48:24.010000"],["2024-07-24T20:48:25.010000"],["2024-07-24T20:48:26.010000"],["2024-07-24T20:48:27.010000"],["2024-07-24T20:48:28.010000"],["2024-07-24T20:48:29.010000"],["2024-07-24T20:48:30.010000"],["2024-07-24T20:48:31.010000"],["2024-07-24T20:48:32.010000"],["2024-07-24T20:48:33.010000"],["2024-07-24T20:48:34.010000"],["2024-07-24T20:48:35.010000"],["2024-07-24T20:48:36.010000"],["2024-07-24T20:48:37.010000"],["2024-07-24T20:48:38.010000"],["2024-07-24T20:48:39.010000"],["2024-07-24T20:48:40.010000"],["2024-07-24T20:48:41.010000"],["2024-07-24T20:48:42.010000"],["2024-07-24T20:48:43.010000"],["2024-07-24T20:48:44.010000"],["2024-07-24T20:48:45.010000"],["2024-07-24T20:48:46.010000"],["2024-07-24T20:48:47.010000"],["2024-07-24T20:48:48.010000"],["2024-07-24T20:48:49.010000"],["2024-07-24T20:48:50.010000"],["2024-07-24T20:48:51.010000"],["2024-07-24T20:48:52.010000"],["2024-07-24T20:48:53.010000"],["2024-07-24T20:48:54.010000"],["2024-07-24T20:48:55.010000"],["2024-07-24T20:48:56.010000"],["2024-07-24T20:48:57.010000"],["2024-07-24T20:48:58.010000"],["2024-07-24T20:48:59.010000"],["2024-07-24T20:49:00.010000"],["2024-07-24T20:49:01.010000"],["2024-07-24T20:49:02.010000"],["2024-07-24T20:49:03.010000"],["2024-07-24T20:49:04.010000"],["2024-07-24T20:49:05.010000"],["2024-07-24T20:49:06.010000"],["2024-07-24T20:49:07.010000"],["2024-07-24T20:49:08.010000"],["2024-07-24T20:49:09.010000"],["2024-07-24T20:49:10.010000"],["2024-07-24T20:49:11.010000"],["2024-07-24T20:49:12.010000"],["2024-07-24T20:49:13.010000"],["2024-07-24T20:49:14.010000"],["2024-07-24T20:49:15.010000"],["2024-07-24T20:49:16.010000"],["2024-07-24T20:49:17.010000"],["2024-07-24T20:49:18.010000"],["2024-07-24T20:49:19.010000"],["2024-07-24T20:49:20.010000"],["2024-07-24T20:49:21.010000"],["2024-07-24T20:49:22.010000"],["2024-07-24T20:49:23.010000"],["2024-07-24T20:49:24.010000"],["2024-07-24T20:49:25.010000"],["2024-07-24T20:49:26.010000"],["2024-07-24T20:49:27.010000"],["2024-07-24T20:49:28.010000"],["2024-07-24T20:49:29.010000"],["2024-07-24T20:49:30.010000"],["2024-07-24T20:49:31.010000"],["2024-07-24T20:49:32.010000"],["2024-07-24T20:49:33.010000"],["2024-07-24T20:49:34.010000"],["2024-07-24T20:49:35.010000"],["2024-07-24T20:49:36.010000"],["2024-07-24T20:49:37.010000"],["2024-07-24T20:49:38.010000"],["2024-07-24T20:49:39.010000"],["2024-07-24T20:49:40.010000"],["2024-07-24T20:49:41.010000"],["2024-07-24T20:49:42.010000"],["2024-07-24T20:49:43.010000"],["2024-07-24T20:49:44.010000"],["2024-07-24T20:49:45.010000"],["2024-07-24T20:49:46.010000"],["2024-07-24T20:49:47.010000"],["2024-07-24T20:49:48.010000"],["2024-07-24T20:49:49.010000"],["2024-07-24T20:49:50.010000"],["2024-07-24T20:49:51.010000"],["2024-07-24T20:49:52.010000"],["2024-07-24T20:49:53.010000"],["2024-07-24T20:49:54.010000"],["2024-07-24T20:49:55.010000"],["2024-07-24T20:49:56.010000"],["2024-07-24T20:49:57.010000"],["2024-07-24T20:49:58.010000"],["2024-07-24T20:49:59.010000"],["2024-07-24T20:50:00.010000"],["2024-07-24T20:50:01.010000"],["2024-07-24T20:50:02.010000"],["2024-07-24T20:50:03.010000"],["2024-07-24T20:50:04.010000"],["2024-07-24T20:50:05.010000"],["2024-07-24T20:50:06.010000"],["2024-07-24T20:50:07.010000"],["2024-07-24T20:50:08.010000"],["2024-07-24T20:50:09.010000"],["2024-07-24T20:50:10.010000"],["2024-07-24T20:50:11.010000"],["2024-07-24T20:50:12.010000"],["2024-07-24T20:50:13.010000"],["2024-07-24T20:50:14.010000"],["2024-07-24T20:50:15.010000"],["2024-07-24T20:50:16.010000"],["2024-07-24T20:50:17.010000"],["2024-07-24T20:50:18.010000"],["2024-07-24T20:50:19.010000"],["2024-07-24T20:50:20.010000"],["2024-07-24T20:50:21.010000"],["2024-07-24T20:50:22.010000"],["2024-07-24T20:50:23.010000"],["2024-07-24T20:50:24.010000"],["2024-07-24T20:50:25.010000"],["2024-07-24T20:50:26.010000"],["2024-07-24T20:50:27.010000"],["2024-07-24T20:50:28.010000"],["2024-07-24T20:50:29.010000"],["2024-07-24T20:50:30.010000"],["2024-07-24T20:50:31.010000"],["2024-07-24T20:50:32.010000"],["2024-07-24T20:50:33.010000"],["2024-07-24T20:50:34.010000"],["2024-07-24T20:50:35.010000"],["2024-07-24T20:50:36.010000"],["2024-07-24T20:50:37.010000"],["2024-07-24T20:50:38.010000"],["2024-07-24T20:50:39.010000"],["2024-07-24T20:50:40.010000"],["2024-07-24T20:50:41.010000"],["2024-07-24T20:50:42.010000"],["2024-07-24T20:50:43.010000"],["2024-07-24T20:50:44.010000"],["2024-07-24T20:50:45.010000"],["2024-07-24T20:50:46.010000"],["2024-07-24T20:50:47.010000"],["2024-07-24T20:50:48.010000"],["2024-07-24T20:50:49.010000"],["2024-07-24T20:50:50.010000"],["2024-07-24T20:50:51.010000"],["2024-07-24T20:50:52.010000"],["2024-07-24T20:50:53.010000"],["2024-07-24T20:50:54.010000"],["2024-07-24T20:50:55.010000"],["2024-07-24T20:50:56.010000"],["2024-07-24T20:50:57.010000"],["2024-07-24T20:50:58.010000"],["2024-07-24T20:50:59.010000"],["2024-07-24T20:51:00.010000"],["2024-07-24T20:51:01.010000"],["2024-07-24T20:51:02.010000"],["2024-07-24T20:51:03.010000"],["2024-07-24T20:51:04.010000"],["2024-07-24T20:51:05.010000"],["2024-07-24T20:51:06.010000"],["2024-07-24T20:51:07.010000"],["2024-07-24T20:51:08.010000"],["2024-07-24T20:51:09.010000"],["2024-07-24T20:51:10.010000"],["2024-07-24T20:51:11.010000"],["2024-07-24T20:51:12.010000"],["2024-07-24T20:51:13.010000"],["2024-07-24T20:51:14.010000"],["2024-07-24T20:51:15.010000"],["2024-07-24T20:51:16.010000"],["2024-07-24T20:51:17.010000"],["2024-07-24T20:51:18.010000"],["2024-07-24T20:51:19.010000"],["2024-07-24T20:51:20.010000"],["2024-07-24T20:51:21.010000"],["2024-07-24T20:51:22.010000"],["2024-07-24T20:51:23.010000"],["2024-07-24T20:51:24.010000"],["2024-07-24T20:51:25.010000"],["2024-07-24T20:51:26.010000"],["2024-07-24T20:51:27.010000"],["2024-07-24T20:51:28.010000"],["2024-07-24T20:51:29.010000"],["2024-07-24T20:51:30.010000"],["2024-07-24T20:51:31.010000"],["2024-07-24T20:51:32.010000"],["2024-07-24T20:51:33.010000"],["2024-07-24T20:51:34.010000"],["2024-07-24T20:51:35.010000"],["2024-07-24T20:51:36.010000"],["2024-07-24T20:51:37.010000"],["2024-07-24T20:51:38.010000"],["2024-07-24T20:51:39.010000"],["2024-07-24T20:51:40.010000"],["2024-07-24T20:51:41.010000"],["2024-07-24T20:51:42.010000"],["2024-07-24T20:51:43.010000"],["2024-07-24T20:51:44.010000"],["2024-07-24T20:51:45.010000"],["2024-07-24T20:51:46.010000"],["2024-07-24T20:51:47.010000"],["2024-07-24T20:51:48.010000"],["2024-07-24T20:51:49.010000"],["2024-07-24T20:51:50.010000"],["2024-07-24T20:51:51.010000"],["2024-07-24T20:51:52.010000"],["2024-07-24T20:51:53.010000"],["2024-07-24T20:51:54.010000"],["2024-07-24T20:51:55.010000"],["2024-07-24T20:51:56.010000"],["2024-07-24T20:51:57.010000"],["2024-07-24T20:51:58.010000"],["2024-07-24T20:51:59.010000"],["2024-07-24T20:52:00.010000"],["2024-07-24T20:52:01.010000"],["2024-07-24T20:52:02.010000"],["2024-07-24T20:52:03.010000"],["2024-07-24T20:52:04.010000"],["2024-07-24T20:52:05.010000"],["2024-07-24T20:52:06.010000"],["2024-07-24T20:52:07.010000"],["2024-07-24T20:52:08.010000"],["2024-07-24T20:52:09.010000"],["2024-07-24T20:52:10.010000"],["2024-07-24T20:52:11.010000"],["2024-07-24T20:52:12.010000"],["2024-07-24T20:52:13.010000"],["2024-07-24T20:52:14.010000"],["2024-07-24T20:52:15.010000"],["2024-07-24T20:52:16.010000"],["2024-07-24T20:52:17.010000"],["2024-07-24T20:52:18.010000"],["2024-07-24T20:52:19.010000"],["2024-07-24T20:52:20.010000"],["2024-07-24T20:52:21.010000"],["2024-07-24T20:52:22.010000"],["2024-07-24T20:52:23.010000"],["2024-07-24T20:52:24.010000"],["2024-07-24T20:52:25.010000"],["2024-07-24T20:52:26.010000"],["2024-07-24T20:52:27.010000"],["2024-07-24T20:52:28.010000"],["2024-07-24T20:52:29.010000"],["2024-07-24T20:52:30.010000"],["2024-07-24T20:52:31.010000"],["2024-07-24T20:52:32.010000"],["2024-07-24T20:52:33.010000"],["2024-07-24T20:52:34.010000"],["2024-07-24T20:52:35.010000"],["2024-07-24T20:52:36.010000"],["2024-07-24T20:52:37.010000"],["2024-07-24T20:52:38.010000"],["2024-07-24T20:52:39.010000"],["2024-07-24T20:52:40.010000"],["2024-07-24T20:52:41.010000"],["2024-07-24T20:52:42.010000"],["2024-07-24T20:52:43.010000"],["2024-07-24T20:52:44.010000"],["2024-07-24T20:52:45.010000"],["2024-07-24T20:52:46.010000"],["2024-07-24T20:52:47.010000"],["2024-07-24T20:52:48.010000"],["2024-07-24T20:52:49.010000"],["2024-07-24T20:52:50.010000"],["2024-07-24T20:52:51.010000"],["2024-07-24T20:52:52.010000"],["2024-07-24T20:52:53.010000"],["2024-07-24T20:52:54.010000"],["2024-07-24T20:52:55.010000"],["2024-07-24T20:52:56.010000"],["2024-07-24T20:52:57.010000"],["2024-07-24T20:52:58.010000"],["2024-07-24T20:52:59.010000"],["2024-07-24T20:53:00.010000"],["2024-07-24T20:53:01.010000"],["2024-07-24T20:53:02.010000"],["2024-07-24T20:53:03.010000"],["2024-07-24T20:53:04.010000"],["2024-07-24T20:53:05.010000"],["2024-07-24T20:53:06.010000"],["2024-07-24T20:53:07.010000"],["2024-07-24T20:53:08.010000"],["2024-07-24T20:53:09.010000"],["2024-07-24T20:53:10.010000"],["2024-07-24T20:53:11.010000"],["2024-07-24T20:53:12.010000"],["2024-07-24T20:53:13.010000"],["2024-07-24T20:53:14.010000"],["2024-07-24T20:53:15.010000"],["2024-07-24T20:53:16.010000"],["2024-07-24T20:53:17.010000"],["2024-07-24T20:53:18.010000"],["2024-07-24T20:53:19.010000"],["2024-07-24T20:53:20.010000"],["2024-07-24T20:53:21.010000"],["2024-07-24T20:53:22.010000"],["2024-07-24T20:53:23.010000"],["2024-07-24T20:53:24.010000"],["2024-07-24T20:53:25.010000"],["2024-07-24T20:53:26.010000"],["2024-07-24T20:53:27.010000"],["2024-07-24T20:53:28.010000"],["2024-07-24T20:53:29.010000"],["2024-07-24T20:53:30.010000"],["2024-07-24T20:53:31.010000"],["2024-07-24T20:53:32.010000"],["2024-07-24T20:53:33.010000"],["2024-07-24T20:53:34.010000"],["2024-07-24T20:53:35.010000"],["2024-07-24T20:53:36.010000"],["2024-07-24T20:53:37.010000"],["2024-07-24T20:53:38.010000"],["2024-07-24T20:53:39.010000"],["2024-07-24T20:53:40.010000"],["2024-07-24T20:53:41.010000"],["2024-07-24T20:53:42.010000"],["2024-07-24T20:53:43.010000"],["2024-07-24T20:53:44.010000"],["2024-07-24T20:53:45.010000"],["2024-07-24T20:53:46.010000"],["2024-07-24T20:53:47.010000"],["2024-07-24T20:53:48.010000"],["2024-07-24T20:53:49.010000"],["2024-07-24T20:53:50.010000"],["2024-07-24T20:53:51.010000"],["2024-07-24T20:53:52.010000"],["2024-07-24T20:53:53.010000"],["2024-07-24T20:53:54.010000"],["2024-07-24T20:53:55.010000"],["2024-07-24T20:53:56.010000"],["2024-07-24T20:53:57.010000"],["2024-07-24T20:53:58.010000"],["2024-07-24T20:53:59.010000"],["2024-07-24T20:54:00.010000"],["2024-07-24T20:54:01.010000"],["2024-07-24T20:54:02.010000"],["2024-07-24T20:54:03.010000"],["2024-07-24T20:54:04.010000"],["2024-07-24T20:54:05.010000"],["2024-07-24T20:54:06.010000"],["2024-07-24T20:54:07.010000"],["2024-07-24T20:54:08.010000"],["2024-07-24T20:54:09.010000"],["2024-07-24T20:54:10.010000"],["2024-07-24T20:54:11.010000"],["2024-07-24T20:54:12.010000"],["2024-07-24T20:54:13.010000"],["2024-07-24T20:54:14.010000"],["2024-07-24T20:54:15.010000"],["2024-07-24T20:54:16.010000"],["2024-07-24T20:54:17.010000"],["2024-07-24T20:54:18.010000"],["2024-07-24T20:54:19.010000"],["2024-07-24T20:54:20.010000"],["2024-07-24T20:54:21.010000"],["2024-07-24T20:54:22.010000"],["2024-07-24T20:54:23.010000"],["2024-07-24T20:54:24.010000"],["2024-07-24T20:54:25.010000"],["2024-07-24T20:54:26.010000"],["2024-07-24T20:54:27.010000"],["2024-07-24T20:54:28.010000"],["2024-07-24T20:54:29.010000"],["2024-07-24T20:54:30.010000"],["2024-07-24T20:54:31.010000"],["2024-07-24T20:54:32.010000"],["2024-07-24T20:54:33.010000"],["2024-07-24T20:54:34.010000"],["2024-07-24T20:54:35.010000"],["2024-07-24T20:54:36.010000"],["2024-07-24T20:54:37.010000"],["2024-07-24T20:54:38.010000"],["2024-07-24T20:54:39.010000"],["2024-07-24T20:54:40.010000"],["2024-07-24T20:54:41.010000"],["2024-07-24T20:54:42.010000"],["2024-07-24T20:54:43.010000"],["2024-07-24T20:54:44.010000"],["2024-07-24T20:54:45.010000"],["2024-07-24T20:54:46.010000"],["2024-07-24T20:54:47.010000"],["2024-07-24T20:54:48.010000"],["2024-07-24T20:54:49.010000"],["2024-07-24T20:54:50.010000"],["2024-07-24T20:54:51.010000"],["2024-07-24T20:54:52.010000"],["2024-07-24T20:54:53.010000"],["2024-07-24T20:54:54.010000"],["2024-07-24T20:54:55.010000"],["2024-07-24T20:54:56.010000"],["2024-07-24T20:54:57.010000"],["2024-07-24T20:54:58.010000"],["2024-07-24T20:54:59.010000"],["2024-07-24T20:55:00.010000"],["2024-07-24T20:55:01.010000"],["2024-07-24T20:55:02.010000"],["2024-07-24T20:55:03.010000"],["2024-07-24T20:55:04.010000"],["2024-07-24T20:55:05.010000"],["2024-07-24T20:55:06.010000"],["2024-07-24T20:55:07.010000"],["2024-07-24T20:55:08.010000"],["2024-07-24T20:55:09.010000"],["2024-07-24T20:55:10.010000"],["2024-07-24T20:55:11.010000"],["2024-07-24T20:55:12.010000"],["2024-07-24T20:55:13.010000"],["2024-07-24T20:55:14.010000"],["2024-07-24T20:55:15.010000"],["2024-07-24T20:55:16.010000"],["2024-07-24T20:55:17.010000"],["2024-07-24T20:55:18.010000"],["2024-07-24T20:55:19.010000"],["2024-07-24T20:55:20.010000"],["2024-07-24T20:55:21.010000"],["2024-07-24T20:55:22.010000"],["2024-07-24T20:55:23.010000"],["2024-07-24T20:55:24.010000"],["2024-07-24T20:55:25.010000"],["2024-07-24T20:55:26.010000"],["2024-07-24T20:55:27.010000"],["2024-07-24T20:55:28.010000"],["2024-07-24T20:55:29.010000"],["2024-07-24T20:55:30.010000"],["2024-07-24T20:55:31.010000"],["2024-07-24T20:55:32.010000"],["2024-07-24T20:55:33.010000"],["2024-07-24T20:55:34.010000"],["2024-07-24T20:55:35.010000"],["2024-07-24T20:55:36.010000"],["2024-07-24T20:55:37.010000"],["2024-07-24T20:55:38.010000"],["2024-07-24T20:55:39.010000"],["2024-07-24T20:55:40.010000"],["2024-07-24T20:55:41.010000"],["2024-07-24T20:55:42.010000"],["2024-07-24T20:55:43.010000"],["2024-07-24T20:55:44.010000"],["2024-07-24T20:55:45.010000"],["2024-07-24T20:55:46.010000"],["2024-07-24T20:55:47.010000"],["2024-07-24T20:55:48.010000"],["2024-07-24T20:55:49.010000"],["2024-07-24T20:55:50.010000"],["2024-07-24T20:55:51.010000"],["2024-07-24T20:55:52.010000"],["2024-07-24T20:55:53.010000"],["2024-07-24T20:55:54.010000"],["2024-07-24T20:55:55.010000"],["2024-07-24T20:55:56.010000"],["2024-07-24T20:55:57.010000"],["2024-07-24T20:55:58.010000"],["2024-07-24T20:55:59.010000"],["2024-07-24T20:56:00.010000"],["2024-07-24T20:56:01.010000"],["2024-07-24T20:56:02.010000"],["2024-07-24T20:56:03.010000"],["2024-07-24T20:56:04.010000"],["2024-07-24T20:56:05.010000"],["2024-07-24T20:56:06.010000"],["2024-07-24T20:56:07.010000"],["2024-07-24T20:56:08.010000"],["2024-07-24T20:56:09.010000"],["2024-07-24T20:56:10.010000"],["2024-07-24T20:56:11.010000"],["2024-07-24T20:56:12.010000"],["2024-07-24T20:56:13.010000"],["2024-07-24T20:56:14.010000"],["2024-07-24T20:56:15.010000"],["2024-07-24T20:56:16.010000"],["2024-07-24T20:56:17.010000"],["2024-07-24T20:56:18.010000"],["2024-07-24T20:56:19.010000"],["2024-07-24T20:56:20.010000"],["2024-07-24T20:56:21.010000"],["2024-07-24T20:56:22.010000"],["2024-07-24T20:56:23.010000"],["2024-07-24T20:56:24.010000"],["2024-07-24T20:56:25.010000"],["2024-07-24T20:56:26.010000"],["2024-07-24T20:56:27.010000"],["2024-07-24T20:56:28.010000"],["2024-07-24T20:56:29.010000"],["2024-07-24T20:56:30.010000"],["2024-07-24T20:56:31.010000"],["2024-07-24T20:56:32.010000"],["2024-07-24T20:56:33.010000"],["2024-07-24T20:56:34.010000"],["2024-07-24T20:56:35.010000"],["2024-07-24T20:56:36.010000"],["2024-07-24T20:56:37.010000"],["2024-07-24T20:56:38.010000"],["2024-07-24T20:56:39.010000"],["2024-07-24T20:56:40.010000"],["2024-07-24T20:56:41.010000"],["2024-07-24T20:56:42.010000"],["2024-07-24T20:56:43.010000"],["2024-07-24T20:56:44.010000"],["2024-07-24T20:56:45.010000"],["2024-07-24T20:56:46.010000"],["2024-07-24T20:56:47.010000"],["2024-07-24T20:56:48.010000"],["2024-07-24T20:56:49.010000"],["2024-07-24T20:56:50.010000"],["2024-07-24T20:56:51.010000"],["2024-07-24T20:56:52.010000"],["2024-07-24T20:56:53.010000"],["2024-07-24T20:56:54.010000"],["2024-07-24T20:56:55.010000"],["2024-07-24T20:56:56.010000"],["2024-07-24T20:56:57.010000"],["2024-07-24T20:56:58.010000"],["2024-07-24T20:56:59.010000"],["2024-07-24T20:57:00.010000"],["2024-07-24T20:57:01.010000"],["2024-07-24T20:57:02.010000"],["2024-07-24T20:57:03.010000"],["2024-07-24T20:57:04.010000"],["2024-07-24T20:57:05.010000"],["2024-07-24T20:57:06.010000"],["2024-07-24T20:57:07.010000"],["2024-07-24T20:57:08.010000"],["2024-07-24T20:57:09.010000"],["2024-07-24T20:57:10.010000"],["2024-07-24T20:57:11.010000"],["2024-07-24T20:57:12.010000"],["2024-07-24T20:57:13.010000"],["2024-07-24T20:57:14.010000"],["2024-07-24T20:57:15.010000"],["2024-07-24T20:57:16.010000"],["2024-07-24T20:57:17.010000"],["2024-07-24T20:57:18.010000"],["2024-07-24T20:57:19.010000"],["2024-07-24T20:57:20.010000"],["2024-07-24T20:57:21.010000"],["2024-07-24T20:57:22.010000"],["2024-07-24T20:57:23.010000"],["2024-07-24T20:57:24.010000"],["2024-07-24T20:57:25.010000"],["2024-07-24T20:57:26.010000"],["2024-07-24T20:57:27.010000"],["2024-07-24T20:57:28.010000"],["2024-07-24T20:57:29.010000"],["2024-07-24T20:57:30.010000"],["2024-07-24T20:57:31.010000"],["2024-07-24T20:57:32.010000"],["2024-07-24T20:57:33.010000"],["2024-07-24T20:57:34.010000"],["2024-07-24T20:57:35.010000"],["2024-07-24T20:57:36.010000"],["2024-07-24T20:57:37.010000"],["2024-07-24T20:57:38.010000"],["2024-07-24T20:57:39.010000"],["2024-07-24T20:57:40.010000"],["2024-07-24T20:57:41.010000"],["2024-07-24T20:57:42.010000"],["2024-07-24T20:57:43.010000"],["2024-07-24T20:57:44.010000"],["2024-07-24T20:57:45.010000"],["2024-07-24T20:57:46.010000"],["2024-07-24T20:57:47.010000"],["2024-07-24T20:57:48.010000"],["2024-07-24T20:57:49.010000"],["2024-07-24T20:57:50.010000"],["2024-07-24T20:57:51.010000"],["2024-07-24T20:57:52.010000"],["2024-07-24T20:57:53.010000"],["2024-07-24T20:57:54.010000"],["2024-07-24T20:57:55.010000"],["2024-07-24T20:57:56.010000"],["2024-07-24T20:57:57.010000"],["2024-07-24T20:57:58.010000"],["2024-07-24T20:57:59.010000"],["2024-07-24T20:58:00.010000"],["2024-07-24T20:58:01.010000"],["2024-07-24T20:58:02.010000"],["2024-07-24T20:58:03.010000"],["2024-07-24T20:58:04.010000"],["2024-07-24T20:58:05.010000"],["2024-07-24T20:58:06.010000"],["2024-07-24T20:58:07.010000"],["2024-07-24T20:58:08.010000"],["2024-07-24T20:58:09.010000"],["2024-07-24T20:58:10.010000"],["2024-07-24T20:58:11.010000"],["2024-07-24T20:58:12.010000"],["2024-07-24T20:58:13.010000"],["2024-07-24T20:58:14.010000"],["2024-07-24T20:58:15.010000"],["2024-07-24T20:58:16.010000"],["2024-07-24T20:58:17.010000"],["2024-07-24T20:58:18.010000"],["2024-07-24T20:58:19.010000"],["2024-07-24T20:58:20.010000"],["2024-07-24T20:58:21.010000"],["2024-07-24T20:58:22.010000"],["2024-07-24T20:58:23.010000"],["2024-07-24T20:58:24.010000"],["2024-07-24T20:58:25.010000"],["2024-07-24T20:58:26.010000"],["2024-07-24T20:58:27.010000"],["2024-07-24T20:58:28.010000"],["2024-07-24T20:58:29.010000"],["2024-07-24T20:58:30.010000"],["2024-07-24T20:58:31.010000"],["2024-07-24T20:58:32.010000"],["2024-07-24T20:58:33.010000"],["2024-07-24T20:58:34.010000"],["2024-07-24T20:58:35.010000"],["2024-07-24T20:58:36.010000"],["2024-07-24T20:58:37.010000"],["2024-07-24T20:58:38.010000"],["2024-07-24T20:58:39.010000"],["2024-07-24T20:58:40.010000"],["2024-07-24T20:58:41.010000"],["2024-07-24T20:58:42.010000"],["2024-07-24T20:58:43.010000"],["2024-07-24T20:58:44.010000"],["2024-07-24T20:58:45.010000"],["2024-07-24T20:58:46.010000"],["2024-07-24T20:58:47.010000"],["2024-07-24T20:58:48.010000"],["2024-07-24T20:58:49.010000"],["2024-07-24T20:58:50.010000"],["2024-07-24T20:58:51.010000"],["2024-07-24T20:58:52.010000"],["2024-07-24T20:58:53.010000"],["2024-07-24T20:58:54.010000"],["2024-07-24T20:58:55.010000"],["2024-07-24T20:58:56.010000"],["2024-07-24T20:58:57.010000"],["2024-07-24T20:58:58.010000"],["2024-07-24T20:58:59.010000"],["2024-07-24T20:59:00.010000"],["2024-07-24T20:59:01.010000"],["2024-07-24T20:59:02.010000"],["2024-07-24T20:59:03.010000"],["2024-07-24T20:59:04.010000"],["2024-07-24T20:59:05.010000"],["2024-07-24T20:59:06.010000"],["2024-07-24T20:59:07.010000"],["2024-07-24T20:59:08.010000"],["2024-07-24T20:59:09.010000"],["2024-07-24T20:59:10.010000"],["2024-07-24T20:59:11.010000"],["2024-07-24T20:59:12.010000"],["2024-07-24T20:59:13.010000"],["2024-07-24T20:59:14.010000"],["2024-07-24T20:59:15.010000"],["2024-07-24T20:59:16.010000"],["2024-07-24T20:59:17.010000"],["2024-07-24T20:59:18.010000"],["2024-07-24T20:59:19.010000"],["2024-07-24T20:59:20.010000"],["2024-07-24T20:59:21.010000"],["2024-07-24T20:59:22.010000"],["2024-07-24T20:59:23.010000"],["2024-07-24T20:59:24.010000"],["2024-07-24T20:59:25.010000"],["2024-07-24T20:59:26.010000"],["2024-07-24T20:59:27.010000"],["2024-07-24T20:59:28.010000"],["2024-07-24T20:59:29.010000"],["2024-07-24T20:59:30.010000"],["2024-07-24T20:59:31.010000"],["2024-07-24T20:59:32.010000"],["2024-07-24T20:59:33.010000"],["2024-07-24T20:59:34.010000"],["2024-07-24T20:59:35.010000"],["2024-07-24T20:59:36.010000"],["2024-07-24T20:59:37.010000"],["2024-07-24T20:59:38.010000"],["2024-07-24T20:59:39.010000"],["2024-07-24T20:59:40.010000"],["2024-07-24T20:59:41.010000"],["2024-07-24T20:59:42.010000"],["2024-07-24T20:59:43.010000"],["2024-07-24T20:59:44.010000"],["2024-07-24T20:59:45.010000"],["2024-07-24T20:59:46.010000"],["2024-07-24T20:59:47.010000"],["2024-07-24T20:59:48.010000"],["2024-07-24T20:59:49.010000"],["2024-07-24T20:59:50.010000"],["2024-07-24T20:59:51.010000"],["2024-07-24T20:59:52.010000"],["2024-07-24T20:59:53.010000"],["2024-07-24T20:59:54.010000"],["2024-07-24T20:59:55.010000"],["2024-07-24T20:59:56.010000"],["2024-07-24T20:59:57.010000"],["2024-07-24T20:59:58.010000"],["2024-07-24T20:59:59.010000"],["2024-07-24T21:00:00.010000"],["2024-07-24T21:00:01.010000"],["2024-07-24T21:00:02.010000"],["2024-07-24T21:00:03.010000"],["2024-07-24T21:00:04.010000"],["2024-07-24T21:00:05.010000"],["2024-07-24T21:00:06.010000"],["2024-07-24T21:00:07.010000"],["2024-07-24T21:00:08.010000"],["2024-07-24T21:00:09.010000"],["2024-07-24T21:00:10.010000"],["2024-07-24T21:00:11.010000"],["2024-07-24T21:00:12.010000"],["2024-07-24T21:00:13.010000"],["2024-07-24T21:00:14.010000"],["2024-07-24T21:00:15.010000"],["2024-07-24T21:00:16.010000"],["2024-07-24T21:00:17.010000"],["2024-07-24T21:00:18.010000"],["2024-07-24T21:00:19.010000"],["2024-07-24T21:00:20.010000"],["2024-07-24T21:00:21.010000"],["2024-07-24T21:00:22.010000"],["2024-07-24T21:00:23.010000"],["2024-07-24T21:00:24.010000"],["2024-07-24T21:00:25.010000"],["2024-07-24T21:00:26.010000"],["2024-07-24T21:00:27.010000"],["2024-07-24T21:00:28.010000"],["2024-07-24T21:00:29.010000"],["2024-07-24T21:00:30.010000"],["2024-07-24T21:00:31.010000"],["2024-07-24T21:00:32.010000"],["2024-07-24T21:00:33.010000"],["2024-07-24T21:00:34.010000"],["2024-07-24T21:00:35.010000"],["2024-07-24T21:00:36.010000"],["2024-07-24T21:00:37.010000"],["2024-07-24T21:00:38.010000"],["2024-07-24T21:00:39.010000"],["2024-07-24T21:00:40.010000"],["2024-07-24T21:00:41.010000"],["2024-07-24T21:00:42.010000"],["2024-07-24T21:00:43.010000"],["2024-07-24T21:00:44.010000"],["2024-07-24T21:00:45.010000"],["2024-07-24T21:00:46.010000"],["2024-07-24T21:00:47.010000"],["2024-07-24T21:00:48.010000"],["2024-07-24T21:00:49.010000"],["2024-07-24T21:00:50.010000"],["2024-07-24T21:00:51.010000"],["2024-07-24T21:00:52.010000"],["2024-07-24T21:00:53.010000"],["2024-07-24T21:00:54.010000"],["2024-07-24T21:00:55.010000"],["2024-07-24T21:00:56.010000"],["2024-07-24T21:00:57.010000"],["2024-07-24T21:00:58.010000"],["2024-07-24T21:00:59.010000"],["2024-07-24T21:01:00.010000"],["2024-07-24T21:01:01.010000"],["2024-07-24T21:01:02.010000"],["2024-07-24T21:01:03.010000"],["2024-07-24T21:01:04.010000"],["2024-07-24T21:01:05.010000"],["2024-07-24T21:01:06.010000"],["2024-07-24T21:01:07.010000"],["2024-07-24T21:01:08.010000"],["2024-07-24T21:01:09.010000"],["2024-07-24T21:01:10.010000"],["2024-07-24T21:01:11.010000"],["2024-07-24T21:01:12.010000"],["2024-07-24T21:01:13.010000"],["2024-07-24T21:01:14.010000"],["2024-07-24T21:01:15.010000"],["2024-07-24T21:01:16.010000"],["2024-07-24T21:01:17.010000"],["2024-07-24T21:01:18.010000"],["2024-07-24T21:01:19.010000"],["2024-07-24T21:01:20.010000"],["2024-07-24T21:01:21.010000"],["2024-07-24T21:01:22.010000"],["2024-07-24T21:01:23.010000"],["2024-07-24T21:01:24.010000"],["2024-07-24T21:01:25.010000"],["2024-07-24T21:01:26.010000"],["2024-07-24T21:01:27.010000"],["2024-07-24T21:01:28.010000"],["2024-07-24T21:01:29.010000"],["2024-07-24T21:01:30.010000"],["2024-07-24T21:01:31.010000"],["2024-07-24T21:01:32.010000"],["2024-07-24T21:01:33.010000"],["2024-07-24T21:01:34.010000"],["2024-07-24T21:01:35.010000"],["2024-07-24T21:01:36.010000"],["2024-07-24T21:01:37.010000"],["2024-07-24T21:01:38.010000"],["2024-07-24T21:01:39.010000"],["2024-07-24T21:01:40.010000"],["2024-07-24T21:01:41.010000"],["2024-07-24T21:01:42.010000"],["2024-07-24T21:01:43.010000"],["2024-07-24T21:01:44.010000"],["2024-07-24T21:01:45.010000"],["2024-07-24T21:01:46.010000"],["2024-07-24T21:01:47.010000"],["2024-07-24T21:01:48.010000"],["2024-07-24T21:01:49.010000"],["2024-07-24T21:01:50.010000"],["2024-07-24T21:01:51.010000"],["2024-07-24T21:01:52.010000"],["2024-07-24T21:01:53.010000"],["2024-07-24T21:01:54.010000"],["2024-07-24T21:01:55.010000"],["2024-07-24T21:01:56.010000"],["2024-07-24T21:01:57.010000"],["2024-07-24T21:01:58.010000"],["2024-07-24T21:01:59.010000"],["2024-07-24T21:02:00.010000"],["2024-07-24T21:02:01.010000"],["2024-07-24T21:02:02.010000"],["2024-07-24T21:02:03.010000"],["2024-07-24T21:02:04.010000"],["2024-07-24T21:02:05.010000"],["2024-07-24T21:02:06.010000"],["2024-07-24T21:02:07.010000"],["2024-07-24T21:02:08.010000"],["2024-07-24T21:02:09.010000"],["2024-07-24T21:02:10.010000"],["2024-07-24T21:02:11.010000"],["2024-07-24T21:02:12.010000"],["2024-07-24T21:02:13.010000"],["2024-07-24T21:02:14.010000"],["2024-07-24T21:02:15.010000"],["2024-07-24T21:02:16.010000"],["2024-07-24T21:02:17.010000"],["2024-07-24T21:02:18.010000"],["2024-07-24T21:02:19.010000"],["2024-07-24T21:02:20.010000"],["2024-07-24T21:02:21.010000"],["2024-07-24T21:02:22.010000"],["2024-07-24T21:02:23.010000"],["2024-07-24T21:02:24.010000"],["2024-07-24T21:02:25.010000"],["2024-07-24T21:02:26.010000"],["2024-07-24T21:02:27.010000"],["2024-07-24T21:02:28.010000"],["2024-07-24T21:02:29.010000"],["2024-07-24T21:02:30.010000"],["2024-07-24T21:02:31.010000"],["2024-07-24T21:02:32.010000"],["2024-07-24T21:02:33.010000"],["2024-07-24T21:02:34.010000"],["2024-07-24T21:02:35.010000"],["2024-07-24T21:02:36.010000"],["2024-07-24T21:02:37.010000"],["2024-07-24T21:02:38.010000"],["2024-07-24T21:02:39.010000"],["2024-07-24T21:02:40.010000"],["2024-07-24T21:02:41.010000"],["2024-07-24T21:02:42.010000"],["2024-07-24T21:02:43.010000"],["2024-07-24T21:02:44.010000"],["2024-07-24T21:02:45.010000"],["2024-07-24T21:02:46.010000"],["2024-07-24T21:02:47.010000"],["2024-07-24T21:02:48.010000"],["2024-07-24T21:02:49.010000"],["2024-07-24T21:02:50.010000"],["2024-07-24T21:02:51.010000"],["2024-07-24T21:02:52.010000"],["2024-07-24T21:02:53.010000"],["2024-07-24T21:02:54.010000"],["2024-07-24T21:02:55.010000"],["2024-07-24T21:02:56.010000"],["2024-07-24T21:02:57.010000"],["2024-07-24T21:02:58.010000"],["2024-07-24T21:02:59.010000"],["2024-07-24T21:03:00.010000"],["2024-07-24T21:03:01.010000"],["2024-07-24T21:03:02.010000"],["2024-07-24T21:03:03.010000"],["2024-07-24T21:03:04.010000"],["2024-07-24T21:03:05.010000"],["2024-07-24T21:03:06.010000"],["2024-07-24T21:03:07.010000"],["2024-07-24T21:03:08.010000"],["2024-07-24T21:03:09.010000"],["2024-07-24T21:03:10.010000"],["2024-07-24T21:03:11.010000"],["2024-07-24T21:03:12.010000"],["2024-07-24T21:03:13.010000"],["2024-07-24T21:03:14.010000"],["2024-07-24T21:03:15.010000"],["2024-07-24T21:03:16.010000"],["2024-07-24T21:03:17.010000"],["2024-07-24T21:03:18.010000"],["2024-07-24T21:03:19.010000"],["2024-07-24T21:03:20.010000"],["2024-07-24T21:03:21.010000"],["2024-07-24T21:03:22.010000"],["2024-07-24T21:03:23.010000"],["2024-07-24T21:03:24.010000"],["2024-07-24T21:03:25.010000"],["2024-07-24T21:03:26.010000"],["2024-07-24T21:03:27.010000"],["2024-07-24T21:03:28.010000"],["2024-07-24T21:03:29.010000"],["2024-07-24T21:03:30.010000"],["2024-07-24T21:03:31.010000"],["2024-07-24T21:03:32.010000"],["2024-07-24T21:03:33.010000"],["2024-07-24T21:03:34.010000"],["2024-07-24T21:03:35.010000"],["2024-07-24T21:03:36.010000"],["2024-07-24T21:03:37.010000"],["2024-07-24T21:03:38.010000"],["2024-07-24T21:03:39.010000"],["2024-07-24T21:03:40.010000"],["2024-07-24T21:03:41.010000"],["2024-07-24T21:03:42.010000"],["2024-07-24T21:03:43.010000"],["2024-07-24T21:03:44.010000"],["2024-07-24T21:03:45.010000"],["2024-07-24T21:03:46.010000"],["2024-07-24T21:03:47.010000"],["2024-07-24T21:03:48.010000"],["2024-07-24T21:03:49.010000"],["2024-07-24T21:03:50.010000"],["2024-07-24T21:03:51.010000"],["2024-07-24T21:03:52.010000"],["2024-07-24T21:03:53.010000"],["2024-07-24T21:03:54.010000"],["2024-07-24T21:03:55.010000"],["2024-07-24T21:03:56.010000"],["2024-07-24T21:03:57.010000"],["2024-07-24T21:03:58.010000"],["2024-07-24T21:03:59.010000"],["2024-07-24T21:04:00.010000"],["2024-07-24T21:04:01.010000"],["2024-07-24T21:04:02.010000"],["2024-07-24T21:04:03.010000"],["2024-07-24T21:04:04.010000"],["2024-07-24T21:04:05.010000"],["2024-07-24T21:04:06.010000"],["2024-07-24T21:04:07.010000"],["2024-07-24T21:04:08.010000"],["2024-07-24T21:04:09.010000"],["2024-07-24T21:04:10.010000"],["2024-07-24T21:04:11.010000"],["2024-07-24T21:04:12.010000"],["2024-07-24T21:04:13.010000"],["2024-07-24T21:04:14.010000"],["2024-07-24T21:04:15.010000"],["2024-07-24T21:04:16.010000"],["2024-07-24T21:04:17.010000"],["2024-07-24T21:04:18.010000"],["2024-07-24T21:04:19.010000"],["2024-07-24T21:04:20.010000"],["2024-07-24T21:04:21.010000"],["2024-07-24T21:04:22.010000"],["2024-07-24T21:04:23.010000"],["2024-07-24T21:04:24.010000"],["2024-07-24T21:04:25.010000"],["2024-07-24T21:04:26.010000"],["2024-07-24T21:04:27.010000"],["2024-07-24T21:04:28.010000"],["2024-07-24T21:04:29.010000"],["2024-07-24T21:04:30.010000"],["2024-07-24T21:04:31.010000"],["2024-07-24T21:04:32.010000"],["2024-07-24T21:04:33.010000"],["2024-07-24T21:04:34.010000"],["2024-07-24T21:04:35.010000"],["2024-07-24T21:04:36.010000"],["2024-07-24T21:04:37.010000"],["2024-07-24T21:04:38.010000"],["2024-07-24T21:04:39.010000"],["2024-07-24T21:04:40.010000"],["2024-07-24T21:04:41.010000"],["2024-07-24T21:04:42.010000"],["2024-07-24T21:04:43.010000"],["2024-07-24T21:04:44.010000"],["2024-07-24T21:04:45.010000"],["2024-07-24T21:04:46.010000"],["2024-07-24T21:04:47.010000"],["2024-07-24T21:04:48.010000"],["2024-07-24T21:04:49.010000"],["2024-07-24T21:04:50.010000"],["2024-07-24T21:04:51.010000"],["2024-07-24T21:04:52.010000"],["2024-07-24T21:04:53.010000"],["2024-07-24T21:04:54.010000"],["2024-07-24T21:04:55.010000"],["2024-07-24T21:04:56.010000"],["2024-07-24T21:04:57.010000"],["2024-07-24T21:04:58.010000"],["2024-07-24T21:04:59.010000"],["2024-07-24T21:05:00.010000"],["2024-07-24T21:05:01.010000"],["2024-07-24T21:05:02.010000"],["2024-07-24T21:05:03.010000"],["2024-07-24T21:05:04.010000"],["2024-07-24T21:05:05.010000"],["2024-07-24T21:05:06.010000"],["2024-07-24T21:05:07.010000"],["2024-07-24T21:05:08.010000"],["2024-07-24T21:05:09.010000"],["2024-07-24T21:05:10.010000"],["2024-07-24T21:05:11.010000"],["2024-07-24T21:05:12.010000"],["2024-07-24T21:05:13.010000"],["2024-07-24T21:05:14.010000"],["2024-07-24T21:05:15.010000"],["2024-07-24T21:05:16.010000"],["2024-07-24T21:05:17.010000"],["2024-07-24T21:05:18.010000"],["2024-07-24T21:05:19.010000"],["2024-07-24T21:05:20.010000"],["2024-07-24T21:05:21.010000"],["2024-07-24T21:05:22.010000"],["2024-07-24T21:05:23.010000"],["2024-07-24T21:05:24.010000"],["2024-07-24T21:05:25.010000"],["2024-07-24T21:05:26.010000"],["2024-07-24T21:05:27.010000"],["2024-07-24T21:05:28.010000"],["2024-07-24T21:05:29.010000"],["2024-07-24T21:05:30.010000"],["2024-07-24T21:05:31.010000"],["2024-07-24T21:05:32.010000"],["2024-07-24T21:05:33.010000"],["2024-07-24T21:05:34.010000"],["2024-07-24T21:05:35.010000"],["2024-07-24T21:05:36.010000"],["2024-07-24T21:05:37.010000"],["2024-07-24T21:05:38.010000"],["2024-07-24T21:05:39.010000"],["2024-07-24T21:05:40.010000"],["2024-07-24T21:05:41.010000"],["2024-07-24T21:05:42.010000"],["2024-07-24T21:05:43.010000"],["2024-07-24T21:05:44.010000"],["2024-07-24T21:05:45.010000"],["2024-07-24T21:05:46.010000"],["2024-07-24T21:05:47.010000"],["2024-07-24T21:05:48.010000"],["2024-07-24T21:05:49.010000"],["2024-07-24T21:05:50.010000"],["2024-07-24T21:05:51.010000"],["2024-07-24T21:05:52.010000"],["2024-07-24T21:05:53.010000"],["2024-07-24T21:05:54.010000"],["2024-07-24T21:05:55.010000"],["2024-07-24T21:05:56.010000"],["2024-07-24T21:05:57.010000"],["2024-07-24T21:05:58.010000"],["2024-07-24T21:05:59.010000"],["2024-07-24T21:06:00.010000"],["2024-07-24T21:06:01.010000"],["2024-07-24T21:06:02.010000"],["2024-07-24T21:06:03.010000"],["2024-07-24T21:06:04.010000"],["2024-07-24T21:06:05.010000"],["2024-07-24T21:06:06.010000"],["2024-07-24T21:06:07.010000"],["2024-07-24T21:06:08.010000"],["2024-07-24T21:06:09.010000"],["2024-07-24T21:06:10.010000"],["2024-07-24T21:06:11.010000"],["2024-07-24T21:06:12.010000"],["2024-07-24T21:06:13.010000"],["2024-07-24T21:06:14.010000"],["2024-07-24T21:06:15.010000"],["2024-07-24T21:06:16.010000"],["2024-07-24T21:06:17.010000"],["2024-07-24T21:06:18.010000"],["2024-07-24T21:06:19.010000"],["2024-07-24T21:06:20.010000"],["2024-07-24T21:06:21.010000"],["2024-07-24T21:06:22.010000"],["2024-07-24T21:06:23.010000"],["2024-07-24T21:06:24.010000"],["2024-07-24T21:06:25.010000"],["2024-07-24T21:06:26.010000"],["2024-07-24T21:06:27.010000"],["2024-07-24T21:06:28.010000"],["2024-07-24T21:06:29.010000"],["2024-07-24T21:06:30.010000"],["2024-07-24T21:06:31.010000"],["2024-07-24T21:06:32.010000"],["2024-07-24T21:06:33.010000"],["2024-07-24T21:06:34.010000"],["2024-07-24T21:06:35.010000"],["2024-07-24T21:06:36.010000"],["2024-07-24T21:06:37.010000"],["2024-07-24T21:06:38.010000"],["2024-07-24T21:06:39.010000"],["2024-07-24T21:06:40.010000"],["2024-07-24T21:06:41.010000"],["2024-07-24T21:06:42.010000"],["2024-07-24T21:06:43.010000"],["2024-07-24T21:06:44.010000"],["2024-07-24T21:06:45.010000"],["2024-07-24T21:06:46.010000"],["2024-07-24T21:06:47.010000"],["2024-07-24T21:06:48.010000"],["2024-07-24T21:06:49.010000"],["2024-07-24T21:06:50.010000"],["2024-07-24T21:06:51.010000"],["2024-07-24T21:06:52.010000"],["2024-07-24T21:06:53.010000"],["2024-07-24T21:06:54.010000"],["2024-07-24T21:06:55.010000"],["2024-07-24T21:06:56.010000"],["2024-07-24T21:06:57.010000"],["2024-07-24T21:06:58.010000"],["2024-07-24T21:06:59.010000"],["2024-07-24T21:07:00.010000"],["2024-07-24T21:07:01.010000"],["2024-07-24T21:07:02.010000"],["2024-07-24T21:07:03.010000"],["2024-07-24T21:07:04.010000"],["2024-07-24T21:07:05.010000"],["2024-07-24T21:07:06.010000"],["2024-07-24T21:07:07.010000"],["2024-07-24T21:07:08.010000"],["2024-07-24T21:07:09.010000"],["2024-07-24T21:07:10.010000"],["2024-07-24T21:07:11.010000"],["2024-07-24T21:07:12.010000"],["2024-07-24T21:07:13.010000"],["2024-07-24T21:07:14.010000"],["2024-07-24T21:07:15.010000"],["2024-07-24T21:07:16.010000"],["2024-07-24T21:07:17.010000"],["2024-07-24T21:07:18.010000"],["2024-07-24T21:07:19.010000"],["2024-07-24T21:07:20.010000"],["2024-07-24T21:07:21.010000"],["2024-07-24T21:07:22.010000"],["2024-07-24T21:07:23.010000"],["2024-07-24T21:07:24.010000"],["2024-07-24T21:07:25.010000"],["2024-07-24T21:07:26.010000"],["2024-07-24T21:07:27.010000"],["2024-07-24T21:07:28.010000"],["2024-07-24T21:07:29.010000"],["2024-07-24T21:07:30.010000"],["2024-07-24T21:07:31.010000"],["2024-07-24T21:07:32.010000"],["2024-07-24T21:07:33.010000"],["2024-07-24T21:07:34.010000"],["2024-07-24T21:07:35.010000"],["2024-07-24T21:07:36.010000"],["2024-07-24T21:07:37.010000"],["2024-07-24T21:07:38.010000"],["2024-07-24T21:07:39.010000"],["2024-07-24T21:07:40.010000"],["2024-07-24T21:07:41.010000"],["2024-07-24T21:07:42.010000"],["2024-07-24T21:07:43.010000"],["2024-07-24T21:07:44.010000"],["2024-07-24T21:07:45.010000"],["2024-07-24T21:07:46.010000"],["2024-07-24T21:07:47.010000"],["2024-07-24T21:07:48.010000"],["2024-07-24T21:07:49.010000"],["2024-07-24T21:07:50.010000"],["2024-07-24T21:07:51.010000"],["2024-07-24T21:07:52.010000"],["2024-07-24T21:07:53.010000"],["2024-07-24T21:07:54.010000"],["2024-07-24T21:07:55.010000"],["2024-07-24T21:07:56.010000"],["2024-07-24T21:07:57.010000"],["2024-07-24T21:07:58.010000"],["2024-07-24T21:07:59.010000"],["2024-07-24T21:08:00.010000"],["2024-07-24T21:08:01.010000"],["2024-07-24T21:08:02.010000"],["2024-07-24T21:08:03.010000"],["2024-07-24T21:08:04.010000"],["2024-07-24T21:08:05.010000"],["2024-07-24T21:08:06.010000"],["2024-07-24T21:08:07.010000"],["2024-07-24T21:08:08.010000"],["2024-07-24T21:08:09.010000"],["2024-07-24T21:08:10.010000"],["2024-07-24T21:08:11.010000"],["2024-07-24T21:08:12.010000"],["2024-07-24T21:08:13.010000"],["2024-07-24T21:08:14.010000"],["2024-07-24T21:08:15.010000"],["2024-07-24T21:08:16.010000"],["2024-07-24T21:08:17.010000"],["2024-07-24T21:08:18.010000"],["2024-07-24T21:08:19.010000"],["2024-07-24T21:08:20.010000"],["2024-07-24T21:08:21.010000"],["2024-07-24T21:08:22.010000"],["2024-07-24T21:08:23.010000"],["2024-07-24T21:08:24.010000"],["2024-07-24T21:08:25.010000"],["2024-07-24T21:08:26.010000"],["2024-07-24T21:08:27.010000"],["2024-07-24T21:08:28.010000"],["2024-07-24T21:08:29.010000"],["2024-07-24T21:08:30.010000"],["2024-07-24T21:08:31.010000"],["2024-07-24T21:08:32.010000"],["2024-07-24T21:08:33.010000"],["2024-07-24T21:08:34.010000"],["2024-07-24T21:08:35.010000"],["2024-07-24T21:08:36.010000"],["2024-07-24T21:08:37.010000"],["2024-07-24T21:08:38.010000"],["2024-07-24T21:08:39.010000"],["2024-07-24T21:08:40.010000"],["2024-07-24T21:08:41.010000"],["2024-07-24T21:08:42.010000"],["2024-07-24T21:08:43.010000"],["2024-07-24T21:08:44.010000"],["2024-07-24T21:08:45.010000"],["2024-07-24T21:08:46.010000"],["2024-07-24T21:08:47.010000"],["2024-07-24T21:08:48.010000"],["2024-07-24T21:08:49.010000"],["2024-07-24T21:08:50.010000"],["2024-07-24T21:08:51.010000"],["2024-07-24T21:08:52.010000"],["2024-07-24T21:08:53.010000"],["2024-07-24T21:08:54.010000"],["2024-07-24T21:08:55.010000"],["2024-07-24T21:08:56.010000"],["2024-07-24T21:08:57.010000"],["2024-07-24T21:08:58.010000"],["2024-07-24T21:08:59.010000"],["2024-07-24T21:09:00.010000"],["2024-07-24T21:09:01.010000"],["2024-07-24T21:09:02.010000"],["2024-07-24T21:09:03.010000"],["2024-07-24T21:09:04.010000"],["2024-07-24T21:09:05.010000"],["2024-07-24T21:09:06.010000"],["2024-07-24T21:09:07.010000"],["2024-07-24T21:09:08.010000"],["2024-07-24T21:09:09.010000"],["2024-07-24T21:09:10.010000"],["2024-07-24T21:09:11.010000"],["2024-07-24T21:09:12.010000"],["2024-07-24T21:09:13.010000"],["2024-07-24T21:09:14.010000"],["2024-07-24T21:09:15.010000"],["2024-07-24T21:09:16.010000"],["2024-07-24T21:09:17.010000"],["2024-07-24T21:09:18.010000"],["2024-07-24T21:09:19.010000"],["2024-07-24T21:09:20.010000"],["2024-07-24T21:09:21.010000"],["2024-07-24T21:09:22.010000"],["2024-07-24T21:09:23.010000"],["2024-07-24T21:09:24.010000"],["2024-07-24T21:09:25.010000"],["2024-07-24T21:09:26.010000"],["2024-07-24T21:09:27.010000"],["2024-07-24T21:09:28.010000"],["2024-07-24T21:09:29.010000"],["2024-07-24T21:09:30.010000"],["2024-07-24T21:09:31.010000"],["2024-07-24T21:09:32.010000"],["2024-07-24T21:09:33.010000"],["2024-07-24T21:09:34.010000"],["2024-07-24T21:09:35.010000"],["2024-07-24T21:09:36.010000"],["2024-07-24T21:09:37.010000"],["2024-07-24T21:09:38.010000"],["2024-07-24T21:09:39.010000"],["2024-07-24T21:09:40.010000"],["2024-07-24T21:09:41.010000"],["2024-07-24T21:09:42.010000"],["2024-07-24T21:09:43.010000"],["2024-07-24T21:09:44.010000"],["2024-07-24T21:09:45.010000"],["2024-07-24T21:09:46.010000"],["2024-07-24T21:09:47.010000"],["2024-07-24T21:09:48.010000"],["2024-07-24T21:09:49.010000"],["2024-07-24T21:09:50.010000"],["2024-07-24T21:09:51.010000"],["2024-07-24T21:09:52.010000"],["2024-07-24T21:09:53.010000"],["2024-07-24T21:09:54.010000"],["2024-07-24T21:09:55.010000"],["2024-07-24T21:09:56.010000"],["2024-07-24T21:09:57.010000"],["2024-07-24T21:09:58.010000"],["2024-07-24T21:09:59.010000"],["2024-07-24T21:10:00.010000"],["2024-07-24T21:10:01.010000"],["2024-07-24T21:10:02.010000"],["2024-07-24T21:10:03.010000"],["2024-07-24T21:10:04.010000"],["2024-07-24T21:10:05.010000"],["2024-07-24T21:10:06.010000"],["2024-07-24T21:10:07.010000"],["2024-07-24T21:10:08.010000"],["2024-07-24T21:10:09.010000"],["2024-07-24T21:10:10.010000"],["2024-07-24T21:10:11.010000"],["2024-07-24T21:10:12.010000"],["2024-07-24T21:10:13.010000"],["2024-07-24T21:10:14.010000"],["2024-07-24T21:10:15.010000"],["2024-07-24T21:10:16.010000"],["2024-07-24T21:10:17.010000"],["2024-07-24T21:10:18.010000"],["2024-07-24T21:10:19.010000"],["2024-07-24T21:10:20.010000"],["2024-07-24T21:10:21.010000"],["2024-07-24T21:10:22.010000"],["2024-07-24T21:10:23.010000"],["2024-07-24T21:10:24.010000"],["2024-07-24T21:10:25.010000"],["2024-07-24T21:10:26.010000"],["2024-07-24T21:10:27.010000"],["2024-07-24T21:10:28.010000"],["2024-07-24T21:10:29.010000"],["2024-07-24T21:10:30.010000"],["2024-07-24T21:10:31.010000"],["2024-07-24T21:10:32.010000"],["2024-07-24T21:10:33.010000"],["2024-07-24T21:10:34.010000"],["2024-07-24T21:10:35.010000"],["2024-07-24T21:10:36.010000"],["2024-07-24T21:10:37.010000"],["2024-07-24T21:10:38.010000"],["2024-07-24T21:10:39.010000"],["2024-07-24T21:10:40.010000"],["2024-07-24T21:10:41.010000"],["2024-07-24T21:10:42.010000"],["2024-07-24T21:10:43.010000"],["2024-07-24T21:10:44.010000"],["2024-07-24T21:10:45.010000"],["2024-07-24T21:10:46.010000"],["2024-07-24T21:10:47.010000"],["2024-07-24T21:10:48.010000"],["2024-07-24T21:10:49.010000"],["2024-07-24T21:10:50.010000"],["2024-07-24T21:10:51.010000"],["2024-07-24T21:10:52.010000"],["2024-07-24T21:10:53.010000"],["2024-07-24T21:10:54.010000"],["2024-07-24T21:10:55.010000"],["2024-07-24T21:10:56.010000"],["2024-07-24T21:10:57.010000"],["2024-07-24T21:10:58.010000"],["2024-07-24T21:10:59.010000"],["2024-07-24T21:11:00.010000"],["2024-07-24T21:11:01.010000"],["2024-07-24T21:11:02.010000"],["2024-07-24T21:11:03.010000"],["2024-07-24T21:11:04.010000"],["2024-07-24T21:11:05.010000"],["2024-07-24T21:11:06.010000"],["2024-07-24T21:11:07.010000"],["2024-07-24T21:11:08.010000"],["2024-07-24T21:11:09.010000"],["2024-07-24T21:11:10.010000"],["2024-07-24T21:11:11.010000"],["2024-07-24T21:11:12.010000"],["2024-07-24T21:11:13.010000"],["2024-07-24T21:11:14.010000"],["2024-07-24T21:11:15.010000"],["2024-07-24T21:11:16.010000"],["2024-07-24T21:11:17.010000"],["2024-07-24T21:11:18.010000"],["2024-07-24T21:11:19.010000"],["2024-07-24T21:11:20.010000"],["2024-07-24T21:11:21.010000"],["2024-07-24T21:11:22.010000"],["2024-07-24T21:11:23.010000"],["2024-07-24T21:11:24.010000"],["2024-07-24T21:11:25.010000"],["2024-07-24T21:11:26.010000"],["2024-07-24T21:11:27.010000"],["2024-07-24T21:11:28.010000"],["2024-07-24T21:11:29.010000"],["2024-07-24T21:11:30.010000"],["2024-07-24T21:11:31.010000"],["2024-07-24T21:11:32.010000"],["2024-07-24T21:11:33.010000"],["2024-07-24T21:11:34.010000"],["2024-07-24T21:11:35.010000"],["2024-07-24T21:11:36.010000"],["2024-07-24T21:11:37.010000"],["2024-07-24T21:11:38.010000"],["2024-07-24T21:11:39.010000"],["2024-07-24T21:11:40.010000"],["2024-07-24T21:11:41.010000"],["2024-07-24T21:11:42.010000"],["2024-07-24T21:11:43.010000"],["2024-07-24T21:11:44.010000"],["2024-07-24T21:11:45.010000"],["2024-07-24T21:11:46.010000"],["2024-07-24T21:11:47.010000"],["2024-07-24T21:11:48.010000"],["2024-07-24T21:11:49.010000"],["2024-07-24T21:11:50.010000"],["2024-07-24T21:11:51.010000"],["2024-07-24T21:11:52.010000"],["2024-07-24T21:11:53.010000"],["2024-07-24T21:11:54.010000"],["2024-07-24T21:11:55.010000"],["2024-07-24T21:11:56.010000"],["2024-07-24T21:11:57.010000"],["2024-07-24T21:11:58.010000"],["2024-07-24T21:11:59.010000"],["2024-07-24T21:12:00.010000"],["2024-07-24T21:12:01.010000"],["2024-07-24T21:12:02.010000"],["2024-07-24T21:12:03.010000"],["2024-07-24T21:12:04.010000"],["2024-07-24T21:12:05.010000"],["2024-07-24T21:12:06.010000"],["2024-07-24T21:12:07.010000"],["2024-07-24T21:12:08.010000"],["2024-07-24T21:12:09.010000"],["2024-07-24T21:12:10.010000"],["2024-07-24T21:12:11.010000"],["2024-07-24T21:12:12.010000"],["2024-07-24T21:12:13.010000"],["2024-07-24T21:12:14.010000"],["2024-07-24T21:12:15.010000"],["2024-07-24T21:12:16.010000"],["2024-07-24T21:12:17.010000"],["2024-07-24T21:12:18.010000"],["2024-07-24T21:12:19.010000"],["2024-07-24T21:12:20.010000"],["2024-07-24T21:12:21.010000"],["2024-07-24T21:12:22.010000"],["2024-07-24T21:12:23.010000"],["2024-07-24T21:12:24.010000"],["2024-07-24T21:12:25.010000"],["2024-07-24T21:12:26.010000"],["2024-07-24T21:12:27.010000"],["2024-07-24T21:12:28.010000"],["2024-07-24T21:12:29.010000"],["2024-07-24T21:12:30.010000"],["2024-07-24T21:12:31.010000"],["2024-07-24T21:12:32.010000"],["2024-07-24T21:12:33.010000"],["2024-07-24T21:12:34.010000"],["2024-07-24T21:12:35.010000"],["2024-07-24T21:12:36.010000"],["2024-07-24T21:12:37.010000"],["2024-07-24T21:12:38.010000"],["2024-07-24T21:12:39.010000"],["2024-07-24T21:12:40.010000"],["2024-07-24T21:12:41.010000"],["2024-07-24T21:12:42.010000"],["2024-07-24T21:12:43.010000"],["2024-07-24T21:12:44.010000"],["2024-07-24T21:12:45.010000"],["2024-07-24T21:12:46.010000"],["2024-07-24T21:12:47.010000"],["2024-07-24T21:12:48.010000"],["2024-07-24T21:12:49.010000"],["2024-07-24T21:12:50.010000"],["2024-07-24T21:12:51.010000"],["2024-07-24T21:12:52.010000"],["2024-07-24T21:12:53.010000"],["2024-07-24T21:12:54.010000"],["2024-07-24T21:12:55.010000"],["2024-07-24T21:12:56.010000"],["2024-07-24T21:12:57.010000"],["2024-07-24T21:12:58.010000"],["2024-07-24T21:12:59.010000"],["2024-07-24T21:13:00.010000"],["2024-07-24T21:13:01.010000"],["2024-07-24T21:13:02.010000"],["2024-07-24T21:13:03.010000"],["2024-07-24T21:13:04.010000"],["2024-07-24T21:13:05.010000"],["2024-07-24T21:13:06.010000"],["2024-07-24T21:13:07.010000"],["2024-07-24T21:13:08.010000"],["2024-07-24T21:13:09.010000"],["2024-07-24T21:13:10.010000"],["2024-07-24T21:13:11.010000"],["2024-07-24T21:13:12.010000"],["2024-07-24T21:13:13.010000"],["2024-07-24T21:13:14.010000"],["2024-07-24T21:13:15.010000"],["2024-07-24T21:13:16.010000"],["2024-07-24T21:13:17.010000"],["2024-07-24T21:13:18.010000"],["2024-07-24T21:13:19.010000"],["2024-07-24T21:13:20.010000"],["2024-07-24T21:13:21.010000"],["2024-07-24T21:13:22.010000"],["2024-07-24T21:13:23.010000"],["2024-07-24T21:13:24.010000"],["2024-07-24T21:13:25.010000"],["2024-07-24T21:13:26.010000"],["2024-07-24T21:13:27.010000"],["2024-07-24T21:13:28.010000"],["2024-07-24T21:13:29.010000"],["2024-07-24T21:13:30.010000"],["2024-07-24T21:13:31.010000"],["2024-07-24T21:13:32.010000"],["2024-07-24T21:13:33.010000"],["2024-07-24T21:13:34.010000"],["2024-07-24T21:13:35.010000"],["2024-07-24T21:13:36.010000"],["2024-07-24T21:13:37.010000"],["2024-07-24T21:13:38.010000"],["2024-07-24T21:13:39.010000"],["2024-07-24T21:13:40.010000"],["2024-07-24T21:13:41.010000"],["2024-07-24T21:13:42.010000"],["2024-07-24T21:13:43.010000"],["2024-07-24T21:13:44.010000"],["2024-07-24T21:13:45.010000"],["2024-07-24T21:13:46.010000"],["2024-07-24T21:13:47.010000"],["2024-07-24T21:13:48.010000"],["2024-07-24T21:13:49.010000"],["2024-07-24T21:13:50.010000"],["2024-07-24T21:13:51.010000"],["2024-07-24T21:13:52.010000"],["2024-07-24T21:13:53.010000"],["2024-07-24T21:13:54.010000"],["2024-07-24T21:13:55.010000"],["2024-07-24T21:13:56.010000"],["2024-07-24T21:13:57.010000"],["2024-07-24T21:13:58.010000"],["2024-07-24T21:13:59.010000"],["2024-07-24T21:14:00.010000"],["2024-07-24T21:14:01.010000"],["2024-07-24T21:14:02.010000"],["2024-07-24T21:14:03.010000"],["2024-07-24T21:14:04.010000"],["2024-07-24T21:14:05.010000"],["2024-07-24T21:14:06.010000"],["2024-07-24T21:14:07.010000"],["2024-07-24T21:14:08.010000"],["2024-07-24T21:14:09.010000"],["2024-07-24T21:14:10.010000"],["2024-07-24T21:14:11.010000"],["2024-07-24T21:14:12.010000"],["2024-07-24T21:14:13.010000"],["2024-07-24T21:14:14.010000"],["2024-07-24T21:14:15.010000"],["2024-07-24T21:14:16.010000"],["2024-07-24T21:14:17.010000"],["2024-07-24T21:14:18.010000"],["2024-07-24T21:14:19.010000"],["2024-07-24T21:14:20.010000"],["2024-07-24T21:14:21.010000"],["2024-07-24T21:14:22.010000"],["2024-07-24T21:14:23.010000"],["2024-07-24T21:14:24.010000"],["2024-07-24T21:14:25.010000"],["2024-07-24T21:14:26.010000"],["2024-07-24T21:14:27.010000"],["2024-07-24T21:14:28.010000"],["2024-07-24T21:14:29.010000"],["2024-07-24T21:14:30.010000"],["2024-07-24T21:14:31.010000"],["2024-07-24T21:14:32.010000"],["2024-07-24T21:14:33.010000"],["2024-07-24T21:14:34.010000"],["2024-07-24T21:14:35.010000"],["2024-07-24T21:14:36.010000"],["2024-07-24T21:14:37.010000"],["2024-07-24T21:14:38.010000"],["2024-07-24T21:14:39.010000"],["2024-07-24T21:14:40.010000"],["2024-07-24T21:14:41.010000"],["2024-07-24T21:14:42.010000"],["2024-07-24T21:14:43.010000"],["2024-07-24T21:14:44.010000"],["2024-07-24T21:14:45.010000"],["2024-07-24T21:14:46.010000"],["2024-07-24T21:14:47.010000"],["2024-07-24T21:14:48.010000"],["2024-07-24T21:14:49.010000"],["2024-07-24T21:14:50.010000"],["2024-07-24T21:14:51.010000"],["2024-07-24T21:14:52.010000"],["2024-07-24T21:14:53.010000"],["2024-07-24T21:14:54.010000"],["2024-07-24T21:14:55.010000"],["2024-07-24T21:14:56.010000"],["2024-07-24T21:14:57.010000"],["2024-07-24T21:14:58.010000"],["2024-07-24T21:14:59.010000"],["2024-07-24T21:15:00.010000"],["2024-07-24T21:15:01.010000"],["2024-07-24T21:15:02.010000"],["2024-07-24T21:15:03.010000"],["2024-07-24T21:15:04.010000"],["2024-07-24T21:15:05.010000"],["2024-07-24T21:15:06.010000"],["2024-07-24T21:15:07.010000"],["2024-07-24T21:15:08.010000"],["2024-07-24T21:15:09.010000"],["2024-07-24T21:15:10.010000"],["2024-07-24T21:15:11.010000"],["2024-07-24T21:15:12.010000"],["2024-07-24T21:15:13.010000"],["2024-07-24T21:15:14.010000"],["2024-07-24T21:15:15.010000"],["2024-07-24T21:15:16.010000"],["2024-07-24T21:15:17.010000"],["2024-07-24T21:15:18.010000"],["2024-07-24T21:15:19.010000"],["2024-07-24T21:15:20.010000"],["2024-07-24T21:15:21.010000"],["2024-07-24T21:15:22.010000"],["2024-07-24T21:15:23.010000"],["2024-07-24T21:15:24.010000"],["2024-07-24T21:15:25.010000"],["2024-07-24T21:15:26.010000"],["2024-07-24T21:15:27.010000"],["2024-07-24T21:15:28.010000"],["2024-07-24T21:15:29.010000"],["2024-07-24T21:15:30.010000"],["2024-07-24T21:15:31.010000"],["2024-07-24T21:15:32.010000"],["2024-07-24T21:15:33.010000"],["2024-07-24T21:15:34.010000"],["2024-07-24T21:15:35.010000"],["2024-07-24T21:15:36.010000"],["2024-07-24T21:15:37.010000"],["2024-07-24T21:15:38.010000"],["2024-07-24T21:15:39.010000"],["2024-07-24T21:15:40.010000"],["2024-07-24T21:15:41.010000"],["2024-07-24T21:15:42.010000"],["2024-07-24T21:15:43.010000"],["2024-07-24T21:15:44.010000"],["2024-07-24T21:15:45.010000"],["2024-07-24T21:15:46.010000"],["2024-07-24T21:15:47.010000"],["2024-07-24T21:15:48.010000"],["2024-07-24T21:15:49.010000"],["2024-07-24T21:15:50.010000"],["2024-07-24T21:15:51.010000"],["2024-07-24T21:15:52.010000"],["2024-07-24T21:15:53.010000"],["2024-07-24T21:15:54.010000"],["2024-07-24T21:15:55.010000"],["2024-07-24T21:15:56.010000"],["2024-07-24T21:15:57.010000"],["2024-07-24T21:15:58.010000"],["2024-07-24T21:15:59.010000"],["2024-07-24T21:16:00.010000"],["2024-07-24T21:16:01.010000"],["2024-07-24T21:16:02.010000"],["2024-07-24T21:16:03.010000"],["2024-07-24T21:16:04.010000"],["2024-07-24T21:16:05.010000"],["2024-07-24T21:16:06.010000"],["2024-07-24T21:16:07.010000"],["2024-07-24T21:16:08.010000"],["2024-07-24T21:16:09.010000"],["2024-07-24T21:16:10.010000"],["2024-07-24T21:16:11.010000"],["2024-07-24T21:16:12.010000"],["2024-07-24T21:16:13.010000"],["2024-07-24T21:16:14.010000"],["2024-07-24T21:16:15.010000"],["2024-07-24T21:16:16.010000"],["2024-07-24T21:16:17.010000"],["2024-07-24T21:16:18.010000"],["2024-07-24T21:16:19.010000"],["2024-07-24T21:16:20.010000"],["2024-07-24T21:16:21.010000"],["2024-07-24T21:16:22.010000"],["2024-07-24T21:16:23.010000"],["2024-07-24T21:16:24.010000"],["2024-07-24T21:16:25.010000"],["2024-07-24T21:16:26.010000"],["2024-07-24T21:16:27.010000"],["2024-07-24T21:16:28.010000"],["2024-07-24T21:16:29.010000"],["2024-07-24T21:16:30.010000"],["2024-07-24T21:16:31.010000"],["2024-07-24T21:16:32.010000"],["2024-07-24T21:16:33.010000"],["2024-07-24T21:16:34.010000"],["2024-07-24T21:16:35.010000"],["2024-07-24T21:16:36.010000"],["2024-07-24T21:16:37.010000"],["2024-07-24T21:16:38.010000"],["2024-07-24T21:16:39.010000"],["2024-07-24T21:16:40.010000"],["2024-07-24T21:16:41.010000"],["2024-07-24T21:16:42.010000"],["2024-07-24T21:16:43.010000"],["2024-07-24T21:16:44.010000"],["2024-07-24T21:16:45.010000"],["2024-07-24T21:16:46.010000"],["2024-07-24T21:16:47.010000"],["2024-07-24T21:16:48.010000"],["2024-07-24T21:16:49.010000"],["2024-07-24T21:16:50.010000"],["2024-07-24T21:16:51.010000"],["2024-07-24T21:16:52.010000"],["2024-07-24T21:16:53.010000"],["2024-07-24T21:16:54.010000"],["2024-07-24T21:16:55.010000"],["2024-07-24T21:16:56.010000"],["2024-07-24T21:16:57.010000"],["2024-07-24T21:16:58.010000"],["2024-07-24T21:16:59.010000"],["2024-07-24T21:17:00.010000"],["2024-07-24T21:17:01.010000"],["2024-07-24T21:17:02.010000"],["2024-07-24T21:17:03.010000"],["2024-07-24T21:17:04.010000"],["2024-07-24T21:17:05.010000"],["2024-07-24T21:17:06.010000"],["2024-07-24T21:17:07.010000"],["2024-07-24T21:17:08.010000"],["2024-07-24T21:17:09.010000"],["2024-07-24T21:17:10.010000"],["2024-07-24T21:17:11.010000"],["2024-07-24T21:17:12.010000"],["2024-07-24T21:17:13.010000"],["2024-07-24T21:17:14.010000"],["2024-07-24T21:17:15.010000"],["2024-07-24T21:17:16.010000"],["2024-07-24T21:17:17.010000"],["2024-07-24T21:17:18.010000"],["2024-07-24T21:17:19.010000"],["2024-07-24T21:17:20.010000"],["2024-07-24T21:17:21.010000"],["2024-07-24T21:17:22.010000"],["2024-07-24T21:17:23.010000"],["2024-07-24T21:17:24.010000"],["2024-07-24T21:17:25.010000"],["2024-07-24T21:17:26.010000"],["2024-07-24T21:17:27.010000"],["2024-07-24T21:17:28.010000"],["2024-07-24T21:17:29.010000"],["2024-07-24T21:17:30.010000"],["2024-07-24T21:17:31.010000"],["2024-07-24T21:17:32.010000"],["2024-07-24T21:17:33.010000"],["2024-07-24T21:17:34.010000"],["2024-07-24T21:17:35.010000"],["2024-07-24T21:17:36.010000"],["2024-07-24T21:17:37.010000"],["2024-07-24T21:17:38.010000"],["2024-07-24T21:17:39.010000"],["2024-07-24T21:17:40.010000"],["2024-07-24T21:17:41.010000"],["2024-07-24T21:17:42.010000"],["2024-07-24T21:17:43.010000"],["2024-07-24T21:17:44.010000"],["2024-07-24T21:17:45.010000"],["2024-07-24T21:17:46.010000"],["2024-07-24T21:17:47.010000"],["2024-07-24T21:17:48.010000"],["2024-07-24T21:17:49.010000"],["2024-07-24T21:17:50.010000"],["2024-07-24T21:17:51.010000"],["2024-07-24T21:17:52.010000"],["2024-07-24T21:17:53.010000"],["2024-07-24T21:17:54.010000"],["2024-07-24T21:17:55.010000"],["2024-07-24T21:17:56.010000"],["2024-07-24T21:17:57.010000"],["2024-07-24T21:17:58.010000"],["2024-07-24T21:17:59.010000"],["2024-07-24T21:18:00.010000"],["2024-07-24T21:18:01.010000"],["2024-07-24T21:18:02.010000"],["2024-07-24T21:18:03.010000"],["2024-07-24T21:18:04.010000"],["2024-07-24T21:18:05.010000"],["2024-07-24T21:18:06.010000"],["2024-07-24T21:18:07.010000"],["2024-07-24T21:18:08.010000"],["2024-07-24T21:18:09.010000"],["2024-07-24T21:18:10.010000"],["2024-07-24T21:18:11.010000"],["2024-07-24T21:18:12.010000"],["2024-07-24T21:18:13.010000"],["2024-07-24T21:18:14.010000"],["2024-07-24T21:18:15.010000"],["2024-07-24T21:18:16.010000"],["2024-07-24T21:18:17.010000"],["2024-07-24T21:18:18.010000"],["2024-07-24T21:18:19.010000"],["2024-07-24T21:18:20.010000"],["2024-07-24T21:18:21.010000"],["2024-07-24T21:18:22.010000"],["2024-07-24T21:18:23.010000"],["2024-07-24T21:18:24.010000"],["2024-07-24T21:18:25.010000"],["2024-07-24T21:18:26.010000"],["2024-07-24T21:18:27.010000"],["2024-07-24T21:18:28.010000"],["2024-07-24T21:18:29.010000"],["2024-07-24T21:18:30.010000"],["2024-07-24T21:18:31.010000"],["2024-07-24T21:18:32.010000"],["2024-07-24T21:18:33.010000"],["2024-07-24T21:18:34.010000"],["2024-07-24T21:18:35.010000"],["2024-07-24T21:18:36.010000"],["2024-07-24T21:18:37.010000"],["2024-07-24T21:18:38.010000"],["2024-07-24T21:18:39.010000"],["2024-07-24T21:18:40.010000"],["2024-07-24T21:18:41.010000"],["2024-07-24T21:18:42.010000"],["2024-07-24T21:18:43.010000"],["2024-07-24T21:18:44.010000"],["2024-07-24T21:18:45.010000"],["2024-07-24T21:18:46.010000"],["2024-07-24T21:18:47.010000"],["2024-07-24T21:18:48.010000"],["2024-07-24T21:18:49.010000"],["2024-07-24T21:18:50.010000"],["2024-07-24T21:18:51.010000"],["2024-07-24T21:18:52.010000"],["2024-07-24T21:18:53.010000"],["2024-07-24T21:18:54.010000"],["2024-07-24T21:18:55.010000"],["2024-07-24T21:18:56.010000"],["2024-07-24T21:18:57.010000"],["2024-07-24T21:18:58.010000"],["2024-07-24T21:18:59.010000"],["2024-07-24T21:19:00.010000"],["2024-07-24T21:19:01.010000"],["2024-07-24T21:19:02.010000"],["2024-07-24T21:19:03.010000"],["2024-07-24T21:19:04.010000"],["2024-07-24T21:19:05.010000"],["2024-07-24T21:19:06.010000"],["2024-07-24T21:19:07.010000"],["2024-07-24T21:19:08.010000"],["2024-07-24T21:19:09.010000"],["2024-07-24T21:19:10.010000"],["2024-07-24T21:19:11.010000"],["2024-07-24T21:19:12.010000"],["2024-07-24T21:19:13.010000"],["2024-07-24T21:19:14.010000"],["2024-07-24T21:19:15.010000"],["2024-07-24T21:19:16.010000"],["2024-07-24T21:19:17.010000"],["2024-07-24T21:19:18.010000"],["2024-07-24T21:19:19.010000"],["2024-07-24T21:19:20.010000"],["2024-07-24T21:19:21.010000"],["2024-07-24T21:19:22.010000"],["2024-07-24T21:19:23.010000"],["2024-07-24T21:19:24.010000"],["2024-07-24T21:19:25.010000"],["2024-07-24T21:19:26.010000"],["2024-07-24T21:19:27.010000"],["2024-07-24T21:19:28.010000"],["2024-07-24T21:19:29.010000"],["2024-07-24T21:19:30.010000"],["2024-07-24T21:19:31.010000"],["2024-07-24T21:19:32.010000"],["2024-07-24T21:19:33.010000"],["2024-07-24T21:19:34.010000"],["2024-07-24T21:19:35.010000"],["2024-07-24T21:19:36.010000"],["2024-07-24T21:19:37.010000"],["2024-07-24T21:19:38.010000"],["2024-07-24T21:19:39.010000"],["2024-07-24T21:19:40.010000"],["2024-07-24T21:19:41.010000"],["2024-07-24T21:19:42.010000"],["2024-07-24T21:19:43.010000"],["2024-07-24T21:19:44.010000"],["2024-07-24T21:19:45.010000"],["2024-07-24T21:19:46.010000"],["2024-07-24T21:19:47.010000"],["2024-07-24T21:19:48.010000"],["2024-07-24T21:19:49.010000"],["2024-07-24T21:19:50.010000"],["2024-07-24T21:19:51.010000"],["2024-07-24T21:19:52.010000"],["2024-07-24T21:19:53.010000"],["2024-07-24T21:19:54.010000"],["2024-07-24T21:19:55.010000"],["2024-07-24T21:19:56.010000"],["2024-07-24T21:19:57.010000"],["2024-07-24T21:19:58.010000"],["2024-07-24T21:19:59.010000"],["2024-07-24T21:20:00.010000"],["2024-07-24T21:20:01.010000"],["2024-07-24T21:20:02.010000"],["2024-07-24T21:20:03.010000"],["2024-07-24T21:20:04.010000"],["2024-07-24T21:20:05.010000"],["2024-07-24T21:20:06.010000"],["2024-07-24T21:20:07.010000"],["2024-07-24T21:20:08.010000"],["2024-07-24T21:20:09.010000"],["2024-07-24T21:20:10.010000"],["2024-07-24T21:20:11.010000"],["2024-07-24T21:20:12.010000"],["2024-07-24T21:20:13.010000"],["2024-07-24T21:20:14.010000"],["2024-07-24T21:20:15.010000"],["2024-07-24T21:20:16.010000"],["2024-07-24T21:20:17.010000"],["2024-07-24T21:20:18.010000"],["2024-07-24T21:20:19.010000"],["2024-07-24T21:20:20.010000"],["2024-07-24T21:20:21.010000"],["2024-07-24T21:20:22.010000"],["2024-07-24T21:20:23.010000"],["2024-07-24T21:20:24.010000"],["2024-07-24T21:20:25.010000"],["2024-07-24T21:20:26.010000"],["2024-07-24T21:20:27.010000"],["2024-07-24T21:20:28.010000"],["2024-07-24T21:20:29.010000"],["2024-07-24T21:20:30.010000"],["2024-07-24T21:20:31.010000"],["2024-07-24T21:20:32.010000"],["2024-07-24T21:20:33.010000"],["2024-07-24T21:20:34.010000"],["2024-07-24T21:20:35.010000"],["2024-07-24T21:20:36.010000"],["2024-07-24T21:20:37.010000"],["2024-07-24T21:20:38.010000"],["2024-07-24T21:20:39.010000"],["2024-07-24T21:20:40.010000"],["2024-07-24T21:20:41.010000"],["2024-07-24T21:20:42.010000"],["2024-07-24T21:20:43.010000"],["2024-07-24T21:20:44.010000"],["2024-07-24T21:20:45.010000"],["2024-07-24T21:20:46.010000"],["2024-07-24T21:20:47.010000"],["2024-07-24T21:20:48.010000"],["2024-07-24T21:20:49.010000"],["2024-07-24T21:20:50.010000"],["2024-07-24T21:20:51.010000"],["2024-07-24T21:20:52.010000"],["2024-07-24T21:20:53.010000"],["2024-07-24T21:20:54.010000"],["2024-07-24T21:20:55.010000"],["2024-07-24T21:20:56.010000"],["2024-07-24T21:20:57.010000"],["2024-07-24T21:20:58.010000"],["2024-07-24T21:20:59.010000"],["2024-07-24T21:21:00.010000"],["2024-07-24T21:21:01.010000"],["2024-07-24T21:21:02.010000"],["2024-07-24T21:21:03.010000"],["2024-07-24T21:21:04.010000"],["2024-07-24T21:21:05.010000"],["2024-07-24T21:21:06.010000"],["2024-07-24T21:21:07.010000"],["2024-07-24T21:21:08.010000"],["2024-07-24T21:21:09.010000"],["2024-07-24T21:21:10.010000"],["2024-07-24T21:21:11.010000"],["2024-07-24T21:21:12.010000"],["2024-07-24T21:21:13.010000"],["2024-07-24T21:21:14.010000"],["2024-07-24T21:21:15.010000"],["2024-07-24T21:21:16.010000"],["2024-07-24T21:21:17.010000"],["2024-07-24T21:21:18.010000"],["2024-07-24T21:21:19.010000"],["2024-07-24T21:21:20.010000"],["2024-07-24T21:21:21.010000"],["2024-07-24T21:21:22.010000"],["2024-07-24T21:21:23.010000"],["2024-07-24T21:21:24.010000"],["2024-07-24T21:21:25.010000"],["2024-07-24T21:21:26.010000"],["2024-07-24T21:21:27.010000"],["2024-07-24T21:21:28.010000"],["2024-07-24T21:21:29.010000"],["2024-07-24T21:21:30.010000"],["2024-07-24T21:21:31.010000"],["2024-07-24T21:21:32.010000"],["2024-07-24T21:21:33.010000"],["2024-07-24T21:21:34.010000"],["2024-07-24T21:21:35.010000"],["2024-07-24T21:21:36.010000"],["2024-07-24T21:21:37.010000"],["2024-07-24T21:21:38.010000"],["2024-07-24T21:21:39.010000"],["2024-07-24T21:21:40.010000"],["2024-07-24T21:21:41.010000"],["2024-07-24T21:21:42.010000"],["2024-07-24T21:21:43.010000"],["2024-07-24T21:21:44.010000"],["2024-07-24T21:21:45.010000"],["2024-07-24T21:21:46.010000"],["2024-07-24T21:21:47.010000"],["2024-07-24T21:21:48.010000"],["2024-07-24T21:21:49.010000"],["2024-07-24T21:21:50.010000"],["2024-07-24T21:21:51.010000"],["2024-07-24T21:21:52.010000"],["2024-07-24T21:21:53.010000"],["2024-07-24T21:21:54.010000"],["2024-07-24T21:21:55.010000"],["2024-07-24T21:21:56.010000"],["2024-07-24T21:21:57.010000"],["2024-07-24T21:21:58.010000"],["2024-07-24T21:21:59.010000"],["2024-07-24T21:22:00.010000"],["2024-07-24T21:22:01.010000"],["2024-07-24T21:22:02.010000"],["2024-07-24T21:22:03.010000"],["2024-07-24T21:22:04.010000"],["2024-07-24T21:22:05.010000"],["2024-07-24T21:22:06.010000"],["2024-07-24T21:22:07.010000"],["2024-07-24T21:22:08.010000"],["2024-07-24T21:22:09.010000"],["2024-07-24T21:22:10.010000"],["2024-07-24T21:22:11.010000"],["2024-07-24T21:22:12.010000"],["2024-07-24T21:22:13.010000"],["2024-07-24T21:22:14.010000"],["2024-07-24T21:22:15.010000"],["2024-07-24T21:22:16.010000"],["2024-07-24T21:22:17.010000"],["2024-07-24T21:22:18.010000"],["2024-07-24T21:22:19.010000"],["2024-07-24T21:22:20.010000"],["2024-07-24T21:22:21.010000"],["2024-07-24T21:22:22.010000"],["2024-07-24T21:22:23.010000"],["2024-07-24T21:22:24.010000"],["2024-07-24T21:22:25.010000"],["2024-07-24T21:22:26.010000"],["2024-07-24T21:22:27.010000"],["2024-07-24T21:22:28.010000"],["2024-07-24T21:22:29.010000"],["2024-07-24T21:22:30.010000"],["2024-07-24T21:22:31.010000"],["2024-07-24T21:22:32.010000"],["2024-07-24T21:22:33.010000"],["2024-07-24T21:22:34.010000"],["2024-07-24T21:22:35.010000"],["2024-07-24T21:22:36.010000"],["2024-07-24T21:22:37.010000"],["2024-07-24T21:22:38.010000"],["2024-07-24T21:22:39.010000"],["2024-07-24T21:22:40.010000"],["2024-07-24T21:22:41.010000"],["2024-07-24T21:22:42.010000"],["2024-07-24T21:22:43.010000"],["2024-07-24T21:22:44.010000"],["2024-07-24T21:22:45.010000"],["2024-07-24T21:22:46.010000"],["2024-07-24T21:22:47.010000"],["2024-07-24T21:22:48.010000"],["2024-07-24T21:22:49.010000"],["2024-07-24T21:22:50.010000"],["2024-07-24T21:22:51.010000"],["2024-07-24T21:22:52.010000"],["2024-07-24T21:22:53.010000"],["2024-07-24T21:22:54.010000"],["2024-07-24T21:22:55.010000"],["2024-07-24T21:22:56.010000"],["2024-07-24T21:22:57.010000"],["2024-07-24T21:22:58.010000"],["2024-07-24T21:22:59.010000"],["2024-07-24T21:23:00.010000"],["2024-07-24T21:23:01.010000"],["2024-07-24T21:23:02.010000"],["2024-07-24T21:23:03.010000"],["2024-07-24T21:23:04.010000"],["2024-07-24T21:23:05.010000"],["2024-07-24T21:23:06.010000"],["2024-07-24T21:23:07.010000"],["2024-07-24T21:23:08.010000"],["2024-07-24T21:23:09.010000"],["2024-07-24T21:23:10.010000"],["2024-07-24T21:23:11.010000"],["2024-07-24T21:23:12.010000"],["2024-07-24T21:23:13.010000"],["2024-07-24T21:23:14.010000"],["2024-07-24T21:23:15.010000"],["2024-07-24T21:23:16.010000"],["2024-07-24T21:23:17.010000"],["2024-07-24T21:23:18.010000"],["2024-07-24T21:23:19.010000"],["2024-07-24T21:23:20.010000"],["2024-07-24T21:23:21.010000"],["2024-07-24T21:23:22.010000"],["2024-07-24T21:23:23.010000"],["2024-07-24T21:23:24.010000"],["2024-07-24T21:23:25.010000"],["2024-07-24T21:23:26.010000"],["2024-07-24T21:23:27.010000"],["2024-07-24T21:23:28.010000"],["2024-07-24T21:23:29.010000"],["2024-07-24T21:23:30.010000"],["2024-07-24T21:23:31.010000"],["2024-07-24T21:23:32.010000"],["2024-07-24T21:23:33.010000"],["2024-07-24T21:23:34.010000"],["2024-07-24T21:23:35.010000"],["2024-07-24T21:23:36.010000"],["2024-07-24T21:23:37.010000"],["2024-07-24T21:23:38.010000"],["2024-07-24T21:23:39.010000"],["2024-07-24T21:23:40.010000"],["2024-07-24T21:23:41.010000"],["2024-07-24T21:23:42.010000"],["2024-07-24T21:23:43.010000"],["2024-07-24T21:23:44.010000"],["2024-07-24T21:23:45.010000"],["2024-07-24T21:23:46.010000"],["2024-07-24T21:23:47.010000"],["2024-07-24T21:23:48.010000"],["2024-07-24T21:23:49.010000"],["2024-07-24T21:23:50.010000"],["2024-07-24T21:23:51.010000"],["2024-07-24T21:23:52.010000"],["2024-07-24T21:23:53.010000"],["2024-07-24T21:23:54.010000"],["2024-07-24T21:23:55.010000"],["2024-07-24T21:23:56.010000"],["2024-07-24T21:23:57.010000"],["2024-07-24T21:23:58.010000"],["2024-07-24T21:23:59.010000"],["2024-07-24T21:24:00.010000"],["2024-07-24T21:24:01.010000"],["2024-07-24T21:24:02.010000"],["2024-07-24T21:24:03.010000"],["2024-07-24T21:24:04.010000"],["2024-07-24T21:24:05.010000"],["2024-07-24T21:24:06.010000"],["2024-07-24T21:24:07.010000"],["2024-07-24T21:24:08.010000"],["2024-07-24T21:24:09.010000"],["2024-07-24T21:24:10.010000"],["2024-07-24T21:24:11.010000"],["2024-07-24T21:24:12.010000"],["2024-07-24T21:24:13.010000"],["2024-07-24T21:24:14.010000"],["2024-07-24T21:24:15.010000"],["2024-07-24T21:24:16.010000"],["2024-07-24T21:24:17.010000"],["2024-07-24T21:24:18.010000"],["2024-07-24T21:24:19.010000"],["2024-07-24T21:24:20.010000"],["2024-07-24T21:24:21.010000"],["2024-07-24T21:24:22.010000"],["2024-07-24T21:24:23.010000"],["2024-07-24T21:24:24.010000"],["2024-07-24T21:24:25.010000"],["2024-07-24T21:24:26.010000"],["2024-07-24T21:24:27.010000"],["2024-07-24T21:24:28.010000"],["2024-07-24T21:24:29.010000"],["2024-07-24T21:24:30.010000"],["2024-07-24T21:24:31.010000"],["2024-07-24T21:24:32.010000"],["2024-07-24T21:24:33.010000"],["2024-07-24T21:24:34.010000"],["2024-07-24T21:24:35.010000"],["2024-07-24T21:24:36.010000"],["2024-07-24T21:24:37.010000"],["2024-07-24T21:24:38.010000"],["2024-07-24T21:24:39.010000"],["2024-07-24T21:24:40.010000"],["2024-07-24T21:24:41.010000"],["2024-07-24T21:24:42.010000"],["2024-07-24T21:24:43.010000"],["2024-07-24T21:24:44.010000"],["2024-07-24T21:24:45.010000"],["2024-07-24T21:24:46.010000"],["2024-07-24T21:24:47.010000"],["2024-07-24T21:24:48.010000"],["2024-07-24T21:24:49.010000"],["2024-07-24T21:24:50.010000"],["2024-07-24T21:24:51.010000"],["2024-07-24T21:24:52.010000"],["2024-07-24T21:24:53.010000"],["2024-07-24T21:24:54.010000"],["2024-07-24T21:24:55.010000"],["2024-07-24T21:24:56.010000"],["2024-07-24T21:24:57.010000"],["2024-07-24T21:24:58.010000"],["2024-07-24T21:24:59.010000"],["2024-07-24T21:25:00.010000"],["2024-07-24T21:25:01.010000"],["2024-07-24T21:25:02.010000"],["2024-07-24T21:25:03.010000"],["2024-07-24T21:25:04.010000"],["2024-07-24T21:25:05.010000"],["2024-07-24T21:25:06.010000"],["2024-07-24T21:25:07.010000"],["2024-07-24T21:25:08.010000"],["2024-07-24T21:25:09.010000"],["2024-07-24T21:25:10.010000"],["2024-07-24T21:25:11.010000"],["2024-07-24T21:25:12.010000"],["2024-07-24T21:25:13.010000"],["2024-07-24T21:25:14.010000"],["2024-07-24T21:25:15.010000"],["2024-07-24T21:25:16.010000"],["2024-07-24T21:25:17.010000"],["2024-07-24T21:25:18.010000"],["2024-07-24T21:25:19.010000"],["2024-07-24T21:25:20.010000"],["2024-07-24T21:25:21.010000"],["2024-07-24T21:25:22.010000"],["2024-07-24T21:25:23.010000"],["2024-07-24T21:25:24.010000"],["2024-07-24T21:25:25.010000"],["2024-07-24T21:25:26.010000"],["2024-07-24T21:25:27.010000"],["2024-07-24T21:25:28.010000"],["2024-07-24T21:25:29.010000"],["2024-07-24T21:25:30.010000"],["2024-07-24T21:25:31.010000"],["2024-07-24T21:25:32.010000"],["2024-07-24T21:25:33.010000"],["2024-07-24T21:25:34.010000"],["2024-07-24T21:25:35.010000"],["2024-07-24T21:25:36.010000"],["2024-07-24T21:25:37.010000"],["2024-07-24T21:25:38.010000"],["2024-07-24T21:25:39.010000"],["2024-07-24T21:25:40.010000"],["2024-07-24T21:25:41.010000"],["2024-07-24T21:25:42.010000"],["2024-07-24T21:25:43.010000"],["2024-07-24T21:25:44.010000"],["2024-07-24T21:25:45.010000"],["2024-07-24T21:25:46.010000"],["2024-07-24T21:25:47.010000"],["2024-07-24T21:25:48.010000"],["2024-07-24T21:25:49.010000"],["2024-07-24T21:25:50.010000"],["2024-07-24T21:25:51.010000"],["2024-07-24T21:25:52.010000"],["2024-07-24T21:25:53.010000"],["2024-07-24T21:25:54.010000"],["2024-07-24T21:25:55.010000"],["2024-07-24T21:25:56.010000"],["2024-07-24T21:25:57.010000"],["2024-07-24T21:25:58.010000"],["2024-07-24T21:25:59.010000"],["2024-07-24T21:26:00.010000"],["2024-07-24T21:26:01.010000"],["2024-07-24T21:26:02.010000"],["2024-07-24T21:26:03.010000"],["2024-07-24T21:26:04.010000"],["2024-07-24T21:26:05.010000"],["2024-07-24T21:26:06.010000"],["2024-07-24T21:26:07.010000"],["2024-07-24T21:26:08.010000"],["2024-07-24T21:26:09.010000"],["2024-07-24T21:26:10.010000"],["2024-07-24T21:26:11.010000"],["2024-07-24T21:26:12.010000"],["2024-07-24T21:26:13.010000"],["2024-07-24T21:26:14.010000"],["2024-07-24T21:26:15.010000"],["2024-07-24T21:26:16.010000"],["2024-07-24T21:26:17.010000"],["2024-07-24T21:26:18.010000"],["2024-07-24T21:26:19.010000"],["2024-07-24T21:26:20.010000"],["2024-07-24T21:26:21.010000"],["2024-07-24T21:26:22.010000"],["2024-07-24T21:26:23.010000"],["2024-07-24T21:26:24.010000"],["2024-07-24T21:26:25.010000"],["2024-07-24T21:26:26.010000"],["2024-07-24T21:26:27.010000"],["2024-07-24T21:26:28.010000"],["2024-07-24T21:26:29.010000"],["2024-07-24T21:26:30.010000"],["2024-07-24T21:26:31.010000"],["2024-07-24T21:26:32.010000"],["2024-07-24T21:26:33.010000"],["2024-07-24T21:26:34.010000"],["2024-07-24T21:26:35.010000"],["2024-07-24T21:26:36.010000"],["2024-07-24T21:26:37.010000"],["2024-07-24T21:26:38.010000"],["2024-07-24T21:26:39.010000"],["2024-07-24T21:26:40.010000"],["2024-07-24T21:26:41.010000"],["2024-07-24T21:26:42.010000"],["2024-07-24T21:26:43.010000"],["2024-07-24T21:26:44.010000"],["2024-07-24T21:26:45.010000"],["2024-07-24T21:26:46.010000"],["2024-07-24T21:26:47.010000"],["2024-07-24T21:26:48.010000"],["2024-07-24T21:26:49.010000"],["2024-07-24T21:26:50.010000"],["2024-07-24T21:26:51.010000"],["2024-07-24T21:26:52.010000"],["2024-07-24T21:26:53.010000"],["2024-07-24T21:26:54.010000"],["2024-07-24T21:26:55.010000"],["2024-07-24T21:26:56.010000"],["2024-07-24T21:26:57.010000"],["2024-07-24T21:26:58.010000"],["2024-07-24T21:26:59.010000"],["2024-07-24T21:27:00.010000"],["2024-07-24T21:27:01.010000"],["2024-07-24T21:27:02.010000"],["2024-07-24T21:27:03.010000"],["2024-07-24T21:27:04.010000"],["2024-07-24T21:27:05.010000"],["2024-07-24T21:27:06.010000"],["2024-07-24T21:27:07.010000"],["2024-07-24T21:27:08.010000"],["2024-07-24T21:27:09.010000"],["2024-07-24T21:27:10.010000"],["2024-07-24T21:27:11.010000"],["2024-07-24T21:27:12.010000"],["2024-07-24T21:27:13.010000"],["2024-07-24T21:27:14.010000"],["2024-07-24T21:27:15.010000"],["2024-07-24T21:27:16.010000"],["2024-07-24T21:27:17.010000"],["2024-07-24T21:27:18.010000"],["2024-07-24T21:27:19.010000"],["2024-07-24T21:27:20.010000"],["2024-07-24T21:27:21.010000"],["2024-07-24T21:27:22.010000"],["2024-07-24T21:27:23.010000"],["2024-07-24T21:27:24.010000"],["2024-07-24T21:27:25.010000"],["2024-07-24T21:27:26.010000"],["2024-07-24T21:27:27.010000"],["2024-07-24T21:27:28.010000"],["2024-07-24T21:27:29.010000"],["2024-07-24T21:27:30.010000"],["2024-07-24T21:27:31.010000"],["2024-07-24T21:27:32.010000"],["2024-07-24T21:27:33.010000"],["2024-07-24T21:27:34.010000"],["2024-07-24T21:27:35.010000"],["2024-07-24T21:27:36.010000"],["2024-07-24T21:27:37.010000"],["2024-07-24T21:27:38.010000"],["2024-07-24T21:27:39.010000"],["2024-07-24T21:27:40.010000"],["2024-07-24T21:27:41.010000"],["2024-07-24T21:27:42.010000"],["2024-07-24T21:27:43.010000"],["2024-07-24T21:27:44.010000"],["2024-07-24T21:27:45.010000"],["2024-07-24T21:27:46.010000"],["2024-07-24T21:27:47.010000"],["2024-07-24T21:27:48.010000"],["2024-07-24T21:27:49.010000"],["2024-07-24T21:27:50.010000"],["2024-07-24T21:27:51.010000"],["2024-07-24T21:27:52.010000"],["2024-07-24T21:27:53.010000"],["2024-07-24T21:27:54.010000"],["2024-07-24T21:27:55.010000"],["2024-07-24T21:27:56.010000"],["2024-07-24T21:27:57.010000"],["2024-07-24T21:27:58.010000"],["2024-07-24T21:27:59.010000"],["2024-07-24T21:28:00.010000"],["2024-07-24T21:28:01.010000"],["2024-07-24T21:28:02.010000"],["2024-07-24T21:28:03.010000"],["2024-07-24T21:28:04.010000"],["2024-07-24T21:28:05.010000"],["2024-07-24T21:28:06.010000"],["2024-07-24T21:28:07.010000"],["2024-07-24T21:28:08.010000"],["2024-07-24T21:28:09.010000"],["2024-07-24T21:28:10.010000"],["2024-07-24T21:28:11.010000"],["2024-07-24T21:28:12.010000"],["2024-07-24T21:28:13.010000"],["2024-07-24T21:28:14.010000"],["2024-07-24T21:28:15.010000"],["2024-07-24T21:28:16.010000"],["2024-07-24T21:28:17.010000"],["2024-07-24T21:28:18.010000"],["2024-07-24T21:28:19.010000"],["2024-07-24T21:28:20.010000"],["2024-07-24T21:28:21.010000"],["2024-07-24T21:28:22.010000"],["2024-07-24T21:28:23.010000"],["2024-07-24T21:28:24.010000"],["2024-07-24T21:28:25.010000"],["2024-07-24T21:28:26.010000"],["2024-07-24T21:28:27.010000"],["2024-07-24T21:28:28.010000"],["2024-07-24T21:28:29.010000"],["2024-07-24T21:28:30.010000"],["2024-07-24T21:28:31.010000"],["2024-07-24T21:28:32.010000"],["2024-07-24T21:28:33.010000"],["2024-07-24T21:28:34.010000"],["2024-07-24T21:28:35.010000"],["2024-07-24T21:28:36.010000"],["2024-07-24T21:28:37.010000"],["2024-07-24T21:28:38.010000"],["2024-07-24T21:28:39.010000"],["2024-07-24T21:28:40.010000"],["2024-07-24T21:28:41.010000"],["2024-07-24T21:28:42.010000"],["2024-07-24T21:28:43.010000"],["2024-07-24T21:28:44.010000"],["2024-07-24T21:28:45.010000"],["2024-07-24T21:28:46.010000"],["2024-07-24T21:28:47.010000"],["2024-07-24T21:28:48.010000"],["2024-07-24T21:28:49.010000"],["2024-07-24T21:28:50.010000"],["2024-07-24T21:28:51.010000"],["2024-07-24T21:28:52.010000"],["2024-07-24T21:28:53.010000"],["2024-07-24T21:28:54.010000"],["2024-07-24T21:28:55.010000"],["2024-07-24T21:28:56.010000"],["2024-07-24T21:28:57.010000"],["2024-07-24T21:28:58.010000"],["2024-07-24T21:28:59.010000"],["2024-07-24T21:29:00.010000"],["2024-07-24T21:29:01.010000"],["2024-07-24T21:29:02.010000"],["2024-07-24T21:29:03.010000"],["2024-07-24T21:29:04.010000"],["2024-07-24T21:29:05.010000"],["2024-07-24T21:29:06.010000"],["2024-07-24T21:29:07.010000"],["2024-07-24T21:29:08.010000"],["2024-07-24T21:29:09.010000"],["2024-07-24T21:29:10.010000"],["2024-07-24T21:29:11.010000"],["2024-07-24T21:29:12.010000"],["2024-07-24T21:29:13.010000"],["2024-07-24T21:29:14.010000"],["2024-07-24T21:29:15.010000"],["2024-07-24T21:29:16.010000"],["2024-07-24T21:29:17.010000"],["2024-07-24T21:29:18.010000"],["2024-07-24T21:29:19.010000"],["2024-07-24T21:29:20.010000"],["2024-07-24T21:29:21.010000"],["2024-07-24T21:29:22.010000"],["2024-07-24T21:29:23.010000"],["2024-07-24T21:29:24.010000"],["2024-07-24T21:29:25.010000"],["2024-07-24T21:29:26.010000"],["2024-07-24T21:29:27.010000"],["2024-07-24T21:29:28.010000"],["2024-07-24T21:29:29.010000"],["2024-07-24T21:29:30.010000"],["2024-07-24T21:29:31.010000"],["2024-07-24T21:29:32.010000"],["2024-07-24T21:29:33.010000"],["2024-07-24T21:29:34.010000"],["2024-07-24T21:29:35.010000"],["2024-07-24T21:29:36.010000"],["2024-07-24T21:29:37.010000"],["2024-07-24T21:29:38.010000"],["2024-07-24T21:29:39.010000"],["2024-07-24T21:29:40.010000"],["2024-07-24T21:29:41.010000"],["2024-07-24T21:29:42.010000"],["2024-07-24T21:29:43.010000"],["2024-07-24T21:29:44.010000"],["2024-07-24T21:29:45.010000"],["2024-07-24T21:29:46.010000"],["2024-07-24T21:29:47.010000"],["2024-07-24T21:29:48.010000"],["2024-07-24T21:29:49.010000"],["2024-07-24T21:29:50.010000"],["2024-07-24T21:29:51.010000"],["2024-07-24T21:29:52.010000"],["2024-07-24T21:29:53.010000"],["2024-07-24T21:29:54.010000"],["2024-07-24T21:29:55.010000"],["2024-07-24T21:29:56.010000"],["2024-07-24T21:29:57.010000"],["2024-07-24T21:29:58.010000"],["2024-07-24T21:29:59.010000"],["2024-07-24T21:30:00.010000"],["2024-07-24T21:30:01.010000"],["2024-07-24T21:30:02.010000"],["2024-07-24T21:30:03.010000"],["2024-07-24T21:30:04.010000"],["2024-07-24T21:30:05.010000"],["2024-07-24T21:30:06.010000"],["2024-07-24T21:30:07.010000"],["2024-07-24T21:30:08.010000"],["2024-07-24T21:30:09.010000"],["2024-07-24T21:30:10.010000"],["2024-07-24T21:30:11.010000"],["2024-07-24T21:30:12.010000"],["2024-07-24T21:30:13.010000"],["2024-07-24T21:30:14.010000"],["2024-07-24T21:30:15.010000"],["2024-07-24T21:30:16.010000"],["2024-07-24T21:30:17.010000"],["2024-07-24T21:30:18.010000"],["2024-07-24T21:30:19.010000"],["2024-07-24T21:30:20.010000"],["2024-07-24T21:30:21.010000"],["2024-07-24T21:30:22.010000"],["2024-07-24T21:30:23.010000"],["2024-07-24T21:30:24.010000"],["2024-07-24T21:30:25.010000"],["2024-07-24T21:30:26.010000"],["2024-07-24T21:30:27.010000"],["2024-07-24T21:30:28.010000"],["2024-07-24T21:30:29.010000"],["2024-07-24T21:30:30.010000"],["2024-07-24T21:30:31.010000"],["2024-07-24T21:30:32.010000"],["2024-07-24T21:30:33.010000"],["2024-07-24T21:30:34.010000"],["2024-07-24T21:30:35.010000"],["2024-07-24T21:30:36.010000"],["2024-07-24T21:30:37.010000"],["2024-07-24T21:30:38.010000"],["2024-07-24T21:30:39.010000"],["2024-07-24T21:30:40.010000"],["2024-07-24T21:30:41.010000"],["2024-07-24T21:30:42.010000"],["2024-07-24T21:30:43.010000"],["2024-07-24T21:30:44.010000"],["2024-07-24T21:30:45.010000"],["2024-07-24T21:30:46.010000"],["2024-07-24T21:30:47.010000"],["2024-07-24T21:30:48.010000"],["2024-07-24T21:30:49.010000"],["2024-07-24T21:30:50.010000"],["2024-07-24T21:30:51.010000"],["2024-07-24T21:30:52.010000"],["2024-07-24T21:30:53.010000"],["2024-07-24T21:30:54.010000"],["2024-07-24T21:30:55.010000"],["2024-07-24T21:30:56.010000"],["2024-07-24T21:30:57.010000"],["2024-07-24T21:30:58.010000"],["2024-07-24T21:30:59.010000"],["2024-07-24T21:31:00.010000"],["2024-07-24T21:31:01.010000"],["2024-07-24T21:31:02.010000"],["2024-07-24T21:31:03.010000"],["2024-07-24T21:31:04.010000"],["2024-07-24T21:31:05.010000"],["2024-07-24T21:31:06.010000"],["2024-07-24T21:31:07.010000"],["2024-07-24T21:31:08.010000"],["2024-07-24T21:31:09.010000"],["2024-07-24T21:31:10.010000"],["2024-07-24T21:31:11.010000"],["2024-07-24T21:31:12.010000"],["2024-07-24T21:31:13.010000"],["2024-07-24T21:31:14.010000"],["2024-07-24T21:31:15.010000"],["2024-07-24T21:31:16.010000"],["2024-07-24T21:31:17.010000"],["2024-07-24T21:31:18.010000"],["2024-07-24T21:31:19.010000"],["2024-07-24T21:31:20.010000"],["2024-07-24T21:31:21.010000"],["2024-07-24T21:31:22.010000"],["2024-07-24T21:31:23.010000"],["2024-07-24T21:31:24.010000"],["2024-07-24T21:31:25.010000"],["2024-07-24T21:31:26.010000"],["2024-07-24T21:31:27.010000"],["2024-07-24T21:31:28.010000"],["2024-07-24T21:31:29.010000"],["2024-07-24T21:31:30.010000"],["2024-07-24T21:31:31.010000"],["2024-07-24T21:31:32.010000"],["2024-07-24T21:31:33.010000"],["2024-07-24T21:31:34.010000"],["2024-07-24T21:31:35.010000"],["2024-07-24T21:31:36.010000"],["2024-07-24T21:31:37.010000"],["2024-07-24T21:31:38.010000"],["2024-07-24T21:31:39.010000"],["2024-07-24T21:31:40.010000"],["2024-07-24T21:31:41.010000"],["2024-07-24T21:31:42.010000"],["2024-07-24T21:31:43.010000"],["2024-07-24T21:31:44.010000"],["2024-07-24T21:31:45.010000"],["2024-07-24T21:31:46.010000"],["2024-07-24T21:31:47.010000"],["2024-07-24T21:31:48.010000"],["2024-07-24T21:31:49.010000"],["2024-07-24T21:31:50.010000"],["2024-07-24T21:31:51.010000"],["2024-07-24T21:31:52.010000"],["2024-07-24T21:31:53.010000"],["2024-07-24T21:31:54.010000"],["2024-07-24T21:31:55.010000"],["2024-07-24T21:31:56.010000"],["2024-07-24T21:31:57.010000"],["2024-07-24T21:31:58.010000"],["2024-07-24T21:31:59.010000"],["2024-07-24T21:32:00.010000"],["2024-07-24T21:32:01.010000"],["2024-07-24T21:32:02.010000"],["2024-07-24T21:32:03.010000"],["2024-07-24T21:32:04.010000"],["2024-07-24T21:32:05.010000"],["2024-07-24T21:32:06.010000"],["2024-07-24T21:32:07.010000"],["2024-07-24T21:32:08.010000"],["2024-07-24T21:32:09.010000"],["2024-07-24T21:32:10.010000"],["2024-07-24T21:32:11.010000"],["2024-07-24T21:32:12.010000"],["2024-07-24T21:32:13.010000"],["2024-07-24T21:32:14.010000"],["2024-07-24T21:32:15.010000"],["2024-07-24T21:32:16.010000"],["2024-07-24T21:32:17.010000"],["2024-07-24T21:32:18.010000"],["2024-07-24T21:32:19.010000"],["2024-07-24T21:32:20.010000"],["2024-07-24T21:32:21.010000"],["2024-07-24T21:32:22.010000"],["2024-07-24T21:32:23.010000"],["2024-07-24T21:32:24.010000"],["2024-07-24T21:32:25.010000"],["2024-07-24T21:32:26.010000"],["2024-07-24T21:32:27.010000"],["2024-07-24T21:32:28.010000"],["2024-07-24T21:32:29.010000"],["2024-07-24T21:32:30.010000"],["2024-07-24T21:32:31.010000"],["2024-07-24T21:32:32.010000"],["2024-07-24T21:32:33.010000"],["2024-07-24T21:32:34.010000"],["2024-07-24T21:32:35.010000"],["2024-07-24T21:32:36.010000"],["2024-07-24T21:32:37.010000"],["2024-07-24T21:32:38.010000"],["2024-07-24T21:32:39.010000"],["2024-07-24T21:32:40.010000"],["2024-07-24T21:32:41.010000"],["2024-07-24T21:32:42.010000"],["2024-07-24T21:32:43.010000"],["2024-07-24T21:32:44.010000"],["2024-07-24T21:32:45.010000"],["2024-07-24T21:32:46.010000"],["2024-07-24T21:32:47.010000"],["2024-07-24T21:32:48.010000"],["2024-07-24T21:32:49.010000"],["2024-07-24T21:32:50.010000"],["2024-07-24T21:32:51.010000"],["2024-07-24T21:32:52.010000"],["2024-07-24T21:32:53.010000"],["2024-07-24T21:32:54.010000"],["2024-07-24T21:32:55.010000"],["2024-07-24T21:32:56.010000"],["2024-07-24T21:32:57.010000"],["2024-07-24T21:32:58.010000"],["2024-07-24T21:32:59.010000"],["2024-07-24T21:33:00.010000"],["2024-07-24T21:33:01.010000"],["2024-07-24T21:33:02.010000"],["2024-07-24T21:33:03.010000"],["2024-07-24T21:33:04.010000"],["2024-07-24T21:33:05.010000"],["2024-07-24T21:33:06.010000"],["2024-07-24T21:33:07.010000"],["2024-07-24T21:33:08.010000"],["2024-07-24T21:33:09.010000"],["2024-07-24T21:33:10.010000"],["2024-07-24T21:33:11.010000"],["2024-07-24T21:33:12.010000"],["2024-07-24T21:33:13.010000"],["2024-07-24T21:33:14.010000"],["2024-07-24T21:33:15.010000"],["2024-07-24T21:33:16.010000"],["2024-07-24T21:33:17.010000"],["2024-07-24T21:33:18.010000"],["2024-07-24T21:33:19.010000"],["2024-07-24T21:33:20.010000"],["2024-07-24T21:33:21.010000"],["2024-07-24T21:33:22.010000"],["2024-07-24T21:33:23.010000"],["2024-07-24T21:33:24.010000"],["2024-07-24T21:33:25.010000"],["2024-07-24T21:33:26.010000"],["2024-07-24T21:33:27.010000"],["2024-07-24T21:33:28.010000"],["2024-07-24T21:33:29.010000"],["2024-07-24T21:33:30.010000"],["2024-07-24T21:33:31.010000"],["2024-07-24T21:33:32.010000"],["2024-07-24T21:33:33.010000"],["2024-07-24T21:33:34.010000"],["2024-07-24T21:33:35.010000"],["2024-07-24T21:33:36.010000"],["2024-07-24T21:33:37.010000"],["2024-07-24T21:33:38.010000"],["2024-07-24T21:33:39.010000"],["2024-07-24T21:33:40.010000"],["2024-07-24T21:33:41.010000"],["2024-07-24T21:33:42.010000"],["2024-07-24T21:33:43.010000"],["2024-07-24T21:33:44.010000"],["2024-07-24T21:33:45.010000"],["2024-07-24T21:33:46.010000"],["2024-07-24T21:33:47.010000"],["2024-07-24T21:33:48.010000"],["2024-07-24T21:33:49.010000"],["2024-07-24T21:33:50.010000"],["2024-07-24T21:33:51.010000"],["2024-07-24T21:33:52.010000"],["2024-07-24T21:33:53.010000"],["2024-07-24T21:33:54.010000"],["2024-07-24T21:33:55.010000"],["2024-07-24T21:33:56.010000"],["2024-07-24T21:33:57.010000"],["2024-07-24T21:33:58.010000"],["2024-07-24T21:33:59.010000"],["2024-07-24T21:34:00.010000"],["2024-07-24T21:34:01.010000"],["2024-07-24T21:34:02.010000"],["2024-07-24T21:34:03.010000"],["2024-07-24T21:34:04.010000"],["2024-07-24T21:34:05.010000"],["2024-07-24T21:34:06.010000"],["2024-07-24T21:34:07.010000"],["2024-07-24T21:34:08.010000"],["2024-07-24T21:34:09.010000"],["2024-07-24T21:34:10.010000"],["2024-07-24T21:34:11.010000"],["2024-07-24T21:34:12.010000"],["2024-07-24T21:34:13.010000"],["2024-07-24T21:34:14.010000"],["2024-07-24T21:34:15.010000"],["2024-07-24T21:34:16.010000"],["2024-07-24T21:34:17.010000"],["2024-07-24T21:34:18.010000"],["2024-07-24T21:34:19.010000"],["2024-07-24T21:34:20.010000"],["2024-07-24T21:34:21.010000"],["2024-07-24T21:34:22.010000"],["2024-07-24T21:34:23.010000"],["2024-07-24T21:34:24.010000"],["2024-07-24T21:34:25.010000"],["2024-07-24T21:34:26.010000"],["2024-07-24T21:34:27.010000"],["2024-07-24T21:34:28.010000"],["2024-07-24T21:34:29.010000"],["2024-07-24T21:34:30.010000"],["2024-07-24T21:34:31.010000"],["2024-07-24T21:34:32.010000"],["2024-07-24T21:34:33.010000"],["2024-07-24T21:34:34.010000"],["2024-07-24T21:34:35.010000"],["2024-07-24T21:34:36.010000"],["2024-07-24T21:34:37.010000"],["2024-07-24T21:34:38.010000"],["2024-07-24T21:34:39.010000"],["2024-07-24T21:34:40.010000"],["2024-07-24T21:34:41.010000"],["2024-07-24T21:34:42.010000"],["2024-07-24T21:34:43.010000"],["2024-07-24T21:34:44.010000"],["2024-07-24T21:34:45.010000"],["2024-07-24T21:34:46.010000"],["2024-07-24T21:34:47.010000"],["2024-07-24T21:34:48.010000"],["2024-07-24T21:34:49.010000"],["2024-07-24T21:34:50.010000"],["2024-07-24T21:34:51.010000"],["2024-07-24T21:34:52.010000"],["2024-07-24T21:34:53.010000"],["2024-07-24T21:34:54.010000"],["2024-07-24T21:34:55.010000"],["2024-07-24T21:34:56.010000"],["2024-07-24T21:34:57.010000"],["2024-07-24T21:34:58.010000"],["2024-07-24T21:34:59.010000"],["2024-07-24T21:35:00.010000"],["2024-07-24T21:35:01.010000"],["2024-07-24T21:35:02.010000"],["2024-07-24T21:35:03.010000"],["2024-07-24T21:35:04.010000"],["2024-07-24T21:35:05.010000"],["2024-07-24T21:35:06.010000"],["2024-07-24T21:35:07.010000"],["2024-07-24T21:35:08.010000"],["2024-07-24T21:35:09.010000"],["2024-07-24T21:35:10.010000"],["2024-07-24T21:35:11.010000"],["2024-07-24T21:35:12.010000"],["2024-07-24T21:35:13.010000"],["2024-07-24T21:35:14.010000"],["2024-07-24T21:35:15.010000"],["2024-07-24T21:35:16.010000"],["2024-07-24T21:35:17.010000"],["2024-07-24T21:35:18.010000"],["2024-07-24T21:35:19.010000"],["2024-07-24T21:35:20.010000"],["2024-07-24T21:35:21.010000"],["2024-07-24T21:35:22.010000"],["2024-07-24T21:35:23.010000"],["2024-07-24T21:35:24.010000"],["2024-07-24T21:35:25.010000"],["2024-07-24T21:35:26.010000"],["2024-07-24T21:35:27.010000"],["2024-07-24T21:35:28.010000"],["2024-07-24T21:35:29.010000"],["2024-07-24T21:35:30.010000"],["2024-07-24T21:35:31.010000"],["2024-07-24T21:35:32.010000"],["2024-07-24T21:35:33.010000"],["2024-07-24T21:35:34.010000"],["2024-07-24T21:35:35.010000"],["2024-07-24T21:35:36.010000"],["2024-07-24T21:35:37.010000"],["2024-07-24T21:35:38.010000"],["2024-07-24T21:35:39.010000"],["2024-07-24T21:35:40.010000"],["2024-07-24T21:35:41.010000"],["2024-07-24T21:35:42.010000"],["2024-07-24T21:35:43.010000"],["2024-07-24T21:35:44.010000"],["2024-07-24T21:35:45.010000"],["2024-07-24T21:35:46.010000"],["2024-07-24T21:35:47.010000"],["2024-07-24T21:35:48.010000"],["2024-07-24T21:35:49.010000"],["2024-07-24T21:35:50.010000"],["2024-07-24T21:35:51.010000"],["2024-07-24T21:35:52.010000"],["2024-07-24T21:35:53.010000"],["2024-07-24T21:35:54.010000"],["2024-07-24T21:35:55.010000"],["2024-07-24T21:35:56.010000"],["2024-07-24T21:35:57.010000"],["2024-07-24T21:35:58.010000"],["2024-07-24T21:35:59.010000"],["2024-07-24T21:36:00.010000"],["2024-07-24T21:36:01.010000"],["2024-07-24T21:36:02.010000"],["2024-07-24T21:36:03.010000"],["2024-07-24T21:36:04.010000"],["2024-07-24T21:36:05.010000"],["2024-07-24T21:36:06.010000"],["2024-07-24T21:36:07.010000"],["2024-07-24T21:36:08.010000"],["2024-07-24T21:36:09.010000"],["2024-07-24T21:36:10.010000"],["2024-07-24T21:36:11.010000"],["2024-07-24T21:36:12.010000"],["2024-07-24T21:36:13.010000"],["2024-07-24T21:36:14.010000"],["2024-07-24T21:36:15.010000"],["2024-07-24T21:36:16.010000"],["2024-07-24T21:36:17.010000"],["2024-07-24T21:36:18.010000"],["2024-07-24T21:36:19.010000"],["2024-07-24T21:36:20.010000"],["2024-07-24T21:36:21.010000"],["2024-07-24T21:36:22.010000"],["2024-07-24T21:36:23.010000"],["2024-07-24T21:36:24.010000"],["2024-07-24T21:36:25.010000"],["2024-07-24T21:36:26.010000"],["2024-07-24T21:36:27.010000"],["2024-07-24T21:36:28.010000"],["2024-07-24T21:36:29.010000"],["2024-07-24T21:36:30.010000"],["2024-07-24T21:36:31.010000"],["2024-07-24T21:36:32.010000"],["2024-07-24T21:36:33.010000"],["2024-07-24T21:36:34.010000"],["2024-07-24T21:36:35.010000"],["2024-07-24T21:36:36.010000"],["2024-07-24T21:36:37.010000"],["2024-07-24T21:36:38.010000"],["2024-07-24T21:36:39.010000"],["2024-07-24T21:36:40.010000"],["2024-07-24T21:36:41.010000"],["2024-07-24T21:36:42.010000"],["2024-07-24T21:36:43.010000"],["2024-07-24T21:36:44.010000"],["2024-07-24T21:36:45.010000"],["2024-07-24T21:36:46.010000"],["2024-07-24T21:36:47.010000"],["2024-07-24T21:36:48.010000"],["2024-07-24T21:36:49.010000"],["2024-07-24T21:36:50.010000"],["2024-07-24T21:36:51.010000"],["2024-07-24T21:36:52.010000"],["2024-07-24T21:36:53.010000"],["2024-07-24T21:36:54.010000"],["2024-07-24T21:36:55.010000"],["2024-07-24T21:36:56.010000"],["2024-07-24T21:36:57.010000"],["2024-07-24T21:36:58.010000"],["2024-07-24T21:36:59.010000"],["2024-07-24T21:37:00.010000"],["2024-07-24T21:37:01.010000"],["2024-07-24T21:37:02.010000"],["2024-07-24T21:37:03.010000"],["2024-07-24T21:37:04.010000"],["2024-07-24T21:37:05.010000"],["2024-07-24T21:37:06.010000"],["2024-07-24T21:37:07.010000"],["2024-07-24T21:37:08.010000"],["2024-07-24T21:37:09.010000"],["2024-07-24T21:37:10.010000"],["2024-07-24T21:37:11.010000"],["2024-07-24T21:37:12.010000"],["2024-07-24T21:37:13.010000"],["2024-07-24T21:37:14.010000"],["2024-07-24T21:37:15.010000"],["2024-07-24T21:37:16.010000"],["2024-07-24T21:37:17.010000"],["2024-07-24T21:37:18.010000"],["2024-07-24T21:37:19.010000"],["2024-07-24T21:37:20.010000"],["2024-07-24T21:37:21.010000"],["2024-07-24T21:37:22.010000"],["2024-07-24T21:37:23.010000"],["2024-07-24T21:37:24.010000"],["2024-07-24T21:37:25.010000"],["2024-07-24T21:37:26.010000"],["2024-07-24T21:37:27.010000"],["2024-07-24T21:37:28.010000"],["2024-07-24T21:37:29.010000"],["2024-07-24T21:37:30.010000"],["2024-07-24T21:37:31.010000"],["2024-07-24T21:37:32.010000"],["2024-07-24T21:37:33.010000"],["2024-07-24T21:37:34.010000"],["2024-07-24T21:37:35.010000"],["2024-07-24T21:37:36.010000"],["2024-07-24T21:37:37.010000"],["2024-07-24T21:37:38.010000"],["2024-07-24T21:37:39.010000"],["2024-07-24T21:37:40.010000"],["2024-07-24T21:37:41.010000"],["2024-07-24T21:37:42.010000"],["2024-07-24T21:37:43.010000"],["2024-07-24T21:37:44.010000"],["2024-07-24T21:37:45.010000"],["2024-07-24T21:37:46.010000"],["2024-07-24T21:37:47.010000"],["2024-07-24T21:37:48.010000"],["2024-07-24T21:37:49.010000"],["2024-07-24T21:37:50.010000"],["2024-07-24T21:37:51.010000"],["2024-07-24T21:37:52.010000"],["2024-07-24T21:37:53.010000"],["2024-07-24T21:37:54.010000"],["2024-07-24T21:37:55.010000"],["2024-07-24T21:37:56.010000"],["2024-07-24T21:37:57.010000"],["2024-07-24T21:37:58.010000"],["2024-07-24T21:37:59.010000"],["2024-07-24T21:38:00.010000"],["2024-07-24T21:38:01.010000"],["2024-07-24T21:38:02.010000"],["2024-07-24T21:38:03.010000"],["2024-07-24T21:38:04.010000"],["2024-07-24T21:38:05.010000"],["2024-07-24T21:38:06.010000"],["2024-07-24T21:38:07.010000"],["2024-07-24T21:38:08.010000"],["2024-07-24T21:38:09.010000"],["2024-07-24T21:38:10.010000"],["2024-07-24T21:38:11.010000"],["2024-07-24T21:38:12.010000"],["2024-07-24T21:38:13.010000"],["2024-07-24T21:38:14.010000"],["2024-07-24T21:38:15.010000"],["2024-07-24T21:38:16.010000"],["2024-07-24T21:38:17.010000"],["2024-07-24T21:38:18.010000"],["2024-07-24T21:38:19.010000"],["2024-07-24T21:38:20.010000"],["2024-07-24T21:38:21.010000"],["2024-07-24T21:38:22.010000"],["2024-07-24T21:38:23.010000"],["2024-07-24T21:38:24.010000"],["2024-07-24T21:38:25.010000"],["2024-07-24T21:38:26.010000"],["2024-07-24T21:38:27.010000"],["2024-07-24T21:38:28.010000"],["2024-07-24T21:38:29.010000"],["2024-07-24T21:38:30.010000"],["2024-07-24T21:38:31.010000"],["2024-07-24T21:38:32.010000"],["2024-07-24T21:38:33.010000"],["2024-07-24T21:38:34.010000"],["2024-07-24T21:38:35.010000"],["2024-07-24T21:38:36.010000"],["2024-07-24T21:38:37.010000"],["2024-07-24T21:38:38.010000"],["2024-07-24T21:38:39.010000"],["2024-07-24T21:38:40.010000"],["2024-07-24T21:38:41.010000"],["2024-07-24T21:38:42.010000"],["2024-07-24T21:38:43.010000"],["2024-07-24T21:38:44.010000"],["2024-07-24T21:38:45.010000"],["2024-07-24T21:38:46.010000"],["2024-07-24T21:38:47.010000"],["2024-07-24T21:38:48.010000"],["2024-07-24T21:38:49.010000"],["2024-07-24T21:38:50.010000"],["2024-07-24T21:38:51.010000"],["2024-07-24T21:38:52.010000"],["2024-07-24T21:38:53.010000"],["2024-07-24T21:38:54.010000"],["2024-07-24T21:38:55.010000"],["2024-07-24T21:38:56.010000"],["2024-07-24T21:38:57.010000"],["2024-07-24T21:38:58.010000"],["2024-07-24T21:38:59.010000"],["2024-07-24T21:39:00.010000"],["2024-07-24T21:39:01.010000"],["2024-07-24T21:39:02.010000"],["2024-07-24T21:39:03.010000"],["2024-07-24T21:39:04.010000"],["2024-07-24T21:39:05.010000"],["2024-07-24T21:39:06.010000"],["2024-07-24T21:39:07.010000"],["2024-07-24T21:39:08.010000"],["2024-07-24T21:39:09.010000"],["2024-07-24T21:39:10.010000"],["2024-07-24T21:39:11.010000"],["2024-07-24T21:39:12.010000"],["2024-07-24T21:39:13.010000"],["2024-07-24T21:39:14.010000"],["2024-07-24T21:39:15.010000"],["2024-07-24T21:39:16.010000"],["2024-07-24T21:39:17.010000"],["2024-07-24T21:39:18.010000"],["2024-07-24T21:39:19.010000"],["2024-07-24T21:39:20.010000"],["2024-07-24T21:39:21.010000"],["2024-07-24T21:39:22.010000"],["2024-07-24T21:39:23.010000"],["2024-07-24T21:39:24.010000"],["2024-07-24T21:39:25.010000"],["2024-07-24T21:39:26.010000"],["2024-07-24T21:39:27.010000"],["2024-07-24T21:39:28.010000"],["2024-07-24T21:39:29.010000"],["2024-07-24T21:39:30.010000"],["2024-07-24T21:39:31.010000"],["2024-07-24T21:39:32.010000"],["2024-07-24T21:39:33.010000"],["2024-07-24T21:39:34.010000"],["2024-07-24T21:39:35.010000"],["2024-07-24T21:39:36.010000"],["2024-07-24T21:39:37.010000"],["2024-07-24T21:39:38.010000"],["2024-07-24T21:39:39.010000"],["2024-07-24T21:39:40.010000"],["2024-07-24T21:39:41.010000"],["2024-07-24T21:39:42.010000"],["2024-07-24T21:39:43.010000"],["2024-07-24T21:39:44.010000"],["2024-07-24T21:39:45.010000"],["2024-07-24T21:39:46.010000"],["2024-07-24T21:39:47.010000"],["2024-07-24T21:39:48.010000"],["2024-07-24T21:39:49.010000"],["2024-07-24T21:39:50.010000"],["2024-07-24T21:39:51.010000"],["2024-07-24T21:39:52.010000"],["2024-07-24T21:39:53.010000"],["2024-07-24T21:39:54.010000"],["2024-07-24T21:39:55.010000"],["2024-07-24T21:39:56.010000"],["2024-07-24T21:39:57.010000"],["2024-07-24T21:39:58.010000"],["2024-07-24T21:39:59.010000"],["2024-07-24T21:40:00.010000"],["2024-07-24T21:40:01.010000"],["2024-07-24T21:40:02.010000"],["2024-07-24T21:40:03.010000"],["2024-07-24T21:40:04.010000"],["2024-07-24T21:40:05.010000"],["2024-07-24T21:40:06.010000"],["2024-07-24T21:40:07.010000"],["2024-07-24T21:40:08.010000"],["2024-07-24T21:40:09.010000"],["2024-07-24T21:40:10.010000"],["2024-07-24T21:40:11.010000"],["2024-07-24T21:40:12.010000"],["2024-07-24T21:40:13.010000"],["2024-07-24T21:40:14.010000"],["2024-07-24T21:40:15.010000"],["2024-07-24T21:40:16.010000"],["2024-07-24T21:40:17.010000"],["2024-07-24T21:40:18.010000"],["2024-07-24T21:40:19.010000"],["2024-07-24T21:40:20.010000"],["2024-07-24T21:40:21.010000"],["2024-07-24T21:40:22.010000"],["2024-07-24T21:40:23.010000"],["2024-07-24T21:40:24.010000"],["2024-07-24T21:40:25.010000"],["2024-07-24T21:40:26.010000"],["2024-07-24T21:40:27.010000"],["2024-07-24T21:40:28.010000"],["2024-07-24T21:40:29.010000"],["2024-07-24T21:40:30.010000"],["2024-07-24T21:40:31.010000"],["2024-07-24T21:40:32.010000"],["2024-07-24T21:40:33.010000"],["2024-07-24T21:40:34.010000"],["2024-07-24T21:40:35.010000"],["2024-07-24T21:40:36.010000"],["2024-07-24T21:40:37.010000"],["2024-07-24T21:40:38.010000"],["2024-07-24T21:40:39.010000"],["2024-07-24T21:40:40.010000"],["2024-07-24T21:40:41.010000"],["2024-07-24T21:40:42.010000"],["2024-07-24T21:40:43.010000"],["2024-07-24T21:40:44.010000"],["2024-07-24T21:40:45.010000"],["2024-07-24T21:40:46.010000"],["2024-07-24T21:40:47.010000"],["2024-07-24T21:40:48.010000"],["2024-07-24T21:40:49.010000"],["2024-07-24T21:40:50.010000"],["2024-07-24T21:40:51.010000"],["2024-07-24T21:40:52.010000"],["2024-07-24T21:40:53.010000"],["2024-07-24T21:40:54.010000"],["2024-07-24T21:40:55.010000"],["2024-07-24T21:40:56.010000"],["2024-07-24T21:40:57.010000"],["2024-07-24T21:40:58.010000"],["2024-07-24T21:40:59.010000"],["2024-07-24T21:41:00.010000"],["2024-07-24T21:41:01.010000"],["2024-07-24T21:41:02.010000"],["2024-07-24T21:41:03.010000"],["2024-07-24T21:41:04.010000"],["2024-07-24T21:41:05.010000"],["2024-07-24T21:41:06.010000"],["2024-07-24T21:41:07.010000"],["2024-07-24T21:41:08.010000"],["2024-07-24T21:41:09.010000"],["2024-07-24T21:41:10.010000"],["2024-07-24T21:41:11.010000"],["2024-07-24T21:41:12.010000"],["2024-07-24T21:41:13.010000"],["2024-07-24T21:41:14.010000"],["2024-07-24T21:41:15.010000"],["2024-07-24T21:41:16.010000"],["2024-07-24T21:41:17.010000"],["2024-07-24T21:41:18.010000"],["2024-07-24T21:41:19.010000"],["2024-07-24T21:41:20.010000"],["2024-07-24T21:41:21.010000"],["2024-07-24T21:41:22.010000"],["2024-07-24T21:41:23.010000"],["2024-07-24T21:41:24.010000"],["2024-07-24T21:41:25.010000"],["2024-07-24T21:41:26.010000"],["2024-07-24T21:41:27.010000"],["2024-07-24T21:41:28.010000"],["2024-07-24T21:41:29.010000"],["2024-07-24T21:41:30.010000"],["2024-07-24T21:41:31.010000"],["2024-07-24T21:41:32.010000"],["2024-07-24T21:41:33.010000"],["2024-07-24T21:41:34.010000"],["2024-07-24T21:41:35.010000"],["2024-07-24T21:41:36.010000"],["2024-07-24T21:41:37.010000"],["2024-07-24T21:41:38.010000"],["2024-07-24T21:41:39.010000"],["2024-07-24T21:41:40.010000"],["2024-07-24T21:41:41.010000"],["2024-07-24T21:41:42.010000"],["2024-07-24T21:41:43.010000"],["2024-07-24T21:41:44.010000"],["2024-07-24T21:41:45.010000"],["2024-07-24T21:41:46.010000"],["2024-07-24T21:41:47.010000"],["2024-07-24T21:41:48.010000"],["2024-07-24T21:41:49.010000"],["2024-07-24T21:41:50.010000"],["2024-07-24T21:41:51.010000"],["2024-07-24T21:41:52.010000"],["2024-07-24T21:41:53.010000"],["2024-07-24T21:41:54.010000"],["2024-07-24T21:41:55.010000"],["2024-07-24T21:41:56.010000"],["2024-07-24T21:41:57.010000"],["2024-07-24T21:41:58.010000"],["2024-07-24T21:41:59.010000"],["2024-07-24T21:42:00.010000"],["2024-07-24T21:42:01.010000"],["2024-07-24T21:42:02.010000"],["2024-07-24T21:42:03.010000"],["2024-07-24T21:42:04.010000"],["2024-07-24T21:42:05.010000"],["2024-07-24T21:42:06.010000"],["2024-07-24T21:42:07.010000"],["2024-07-24T21:42:08.010000"],["2024-07-24T21:42:09.010000"],["2024-07-24T21:42:10.010000"],["2024-07-24T21:42:11.010000"],["2024-07-24T21:42:12.010000"],["2024-07-24T21:42:13.010000"],["2024-07-24T21:42:14.010000"],["2024-07-24T21:42:15.010000"],["2024-07-24T21:42:16.010000"],["2024-07-24T21:42:17.010000"],["2024-07-24T21:42:18.010000"],["2024-07-24T21:42:19.010000"],["2024-07-24T21:42:20.010000"],["2024-07-24T21:42:21.010000"],["2024-07-24T21:42:22.010000"],["2024-07-24T21:42:23.010000"],["2024-07-24T21:42:24.010000"],["2024-07-24T21:42:25.010000"],["2024-07-24T21:42:26.010000"],["2024-07-24T21:42:27.010000"],["2024-07-24T21:42:28.010000"],["2024-07-24T21:42:29.010000"],["2024-07-24T21:42:30.010000"],["2024-07-24T21:42:31.010000"],["2024-07-24T21:42:32.010000"],["2024-07-24T21:42:33.010000"],["2024-07-24T21:42:34.010000"],["2024-07-24T21:42:35.010000"],["2024-07-24T21:42:36.010000"],["2024-07-24T21:42:37.010000"],["2024-07-24T21:42:38.010000"],["2024-07-24T21:42:39.010000"],["2024-07-24T21:42:40.010000"],["2024-07-24T21:42:41.010000"],["2024-07-24T21:42:42.010000"],["2024-07-24T21:42:43.010000"],["2024-07-24T21:42:44.010000"],["2024-07-24T21:42:45.010000"],["2024-07-24T21:42:46.010000"],["2024-07-24T21:42:47.010000"],["2024-07-24T21:42:48.010000"],["2024-07-24T21:42:49.010000"],["2024-07-24T21:42:50.010000"],["2024-07-24T21:42:51.010000"],["2024-07-24T21:42:52.010000"],["2024-07-24T21:42:53.010000"],["2024-07-24T21:42:54.010000"],["2024-07-24T21:42:55.010000"],["2024-07-24T21:42:56.010000"],["2024-07-24T21:42:57.010000"],["2024-07-24T21:42:58.010000"],["2024-07-24T21:42:59.010000"],["2024-07-24T21:43:00.010000"],["2024-07-24T21:43:01.010000"],["2024-07-24T21:43:02.010000"],["2024-07-24T21:43:03.010000"],["2024-07-24T21:43:04.010000"],["2024-07-24T21:43:05.010000"],["2024-07-24T21:43:06.010000"],["2024-07-24T21:43:07.010000"],["2024-07-24T21:43:08.010000"],["2024-07-24T21:43:09.010000"],["2024-07-24T21:43:10.010000"],["2024-07-24T21:43:11.010000"],["2024-07-24T21:43:12.010000"],["2024-07-24T21:43:13.010000"],["2024-07-24T21:43:14.010000"],["2024-07-24T21:43:15.010000"],["2024-07-24T21:43:16.010000"],["2024-07-24T21:43:17.010000"],["2024-07-24T21:43:18.010000"],["2024-07-24T21:43:19.010000"],["2024-07-24T21:43:20.010000"],["2024-07-24T21:43:21.010000"],["2024-07-24T21:43:22.010000"],["2024-07-24T21:43:23.010000"],["2024-07-24T21:43:24.010000"],["2024-07-24T21:43:25.010000"],["2024-07-24T21:43:26.010000"],["2024-07-24T21:43:27.010000"],["2024-07-24T21:43:28.010000"],["2024-07-24T21:43:29.010000"],["2024-07-24T21:43:30.010000"],["2024-07-24T21:43:31.010000"],["2024-07-24T21:43:32.010000"],["2024-07-24T21:43:33.010000"],["2024-07-24T21:43:34.010000"],["2024-07-24T21:43:35.010000"],["2024-07-24T21:43:36.010000"],["2024-07-24T21:43:37.010000"],["2024-07-24T21:43:38.010000"],["2024-07-24T21:43:39.010000"],["2024-07-24T21:43:40.010000"],["2024-07-24T21:43:41.010000"],["2024-07-24T21:43:42.010000"],["2024-07-24T21:43:43.010000"],["2024-07-24T21:43:44.010000"],["2024-07-24T21:43:45.010000"],["2024-07-24T21:43:46.010000"],["2024-07-24T21:43:47.010000"],["2024-07-24T21:43:48.010000"],["2024-07-24T21:43:49.010000"],["2024-07-24T21:43:50.010000"],["2024-07-24T21:43:51.010000"],["2024-07-24T21:43:52.010000"],["2024-07-24T21:43:53.010000"],["2024-07-24T21:43:54.010000"],["2024-07-24T21:43:55.010000"],["2024-07-24T21:43:56.010000"],["2024-07-24T21:43:57.010000"],["2024-07-24T21:43:58.010000"],["2024-07-24T21:43:59.010000"],["2024-07-24T21:44:00.010000"],["2024-07-24T21:44:01.010000"],["2024-07-24T21:44:02.010000"],["2024-07-24T21:44:03.010000"],["2024-07-24T21:44:04.010000"],["2024-07-24T21:44:05.010000"],["2024-07-24T21:44:06.010000"],["2024-07-24T21:44:07.010000"],["2024-07-24T21:44:08.010000"],["2024-07-24T21:44:09.010000"],["2024-07-24T21:44:10.010000"],["2024-07-24T21:44:11.010000"],["2024-07-24T21:44:12.010000"],["2024-07-24T21:44:13.010000"],["2024-07-24T21:44:14.010000"],["2024-07-24T21:44:15.010000"],["2024-07-24T21:44:16.010000"],["2024-07-24T21:44:17.010000"],["2024-07-24T21:44:18.010000"],["2024-07-24T21:44:19.010000"],["2024-07-24T21:44:20.010000"],["2024-07-24T21:44:21.010000"],["2024-07-24T21:44:22.010000"],["2024-07-24T21:44:23.010000"],["2024-07-24T21:44:24.010000"],["2024-07-24T21:44:25.010000"],["2024-07-24T21:44:26.010000"],["2024-07-24T21:44:27.010000"],["2024-07-24T21:44:28.010000"],["2024-07-24T21:44:29.010000"],["2024-07-24T21:44:30.010000"],["2024-07-24T21:44:31.010000"],["2024-07-24T21:44:32.010000"],["2024-07-24T21:44:33.010000"],["2024-07-24T21:44:34.010000"],["2024-07-24T21:44:35.010000"],["2024-07-24T21:44:36.010000"],["2024-07-24T21:44:37.010000"],["2024-07-24T21:44:38.010000"],["2024-07-24T21:44:39.010000"],["2024-07-24T21:44:40.010000"],["2024-07-24T21:44:41.010000"],["2024-07-24T21:44:42.010000"],["2024-07-24T21:44:43.010000"],["2024-07-24T21:44:44.010000"],["2024-07-24T21:44:45.010000"],["2024-07-24T21:44:46.010000"],["2024-07-24T21:44:47.010000"],["2024-07-24T21:44:48.010000"],["2024-07-24T21:44:49.010000"],["2024-07-24T21:44:50.010000"],["2024-07-24T21:44:51.010000"],["2024-07-24T21:44:52.010000"],["2024-07-24T21:44:53.010000"],["2024-07-24T21:44:54.010000"],["2024-07-24T21:44:55.010000"],["2024-07-24T21:44:56.010000"],["2024-07-24T21:44:57.010000"],["2024-07-24T21:44:58.010000"],["2024-07-24T21:44:59.010000"],["2024-07-24T21:45:00.010000"],["2024-07-24T21:45:01.010000"],["2024-07-24T21:45:02.010000"],["2024-07-24T21:45:03.010000"],["2024-07-24T21:45:04.010000"],["2024-07-24T21:45:05.010000"],["2024-07-24T21:45:06.010000"],["2024-07-24T21:45:07.010000"],["2024-07-24T21:45:08.010000"],["2024-07-24T21:45:09.010000"],["2024-07-24T21:45:10.010000"],["2024-07-24T21:45:11.010000"],["2024-07-24T21:45:12.010000"],["2024-07-24T21:45:13.010000"],["2024-07-24T21:45:14.010000"],["2024-07-24T21:45:15.010000"],["2024-07-24T21:45:16.010000"],["2024-07-24T21:45:17.010000"],["2024-07-24T21:45:18.010000"],["2024-07-24T21:45:19.010000"],["2024-07-24T21:45:20.010000"],["2024-07-24T21:45:21.010000"],["2024-07-24T21:45:22.010000"],["2024-07-24T21:45:23.010000"],["2024-07-24T21:45:24.010000"],["2024-07-24T21:45:25.010000"],["2024-07-24T21:45:26.010000"],["2024-07-24T21:45:27.010000"],["2024-07-24T21:45:28.010000"],["2024-07-24T21:45:29.010000"],["2024-07-24T21:45:30.010000"],["2024-07-24T21:45:31.010000"],["2024-07-24T21:45:32.010000"],["2024-07-24T21:45:33.010000"],["2024-07-24T21:45:34.010000"],["2024-07-24T21:45:35.010000"],["2024-07-24T21:45:36.010000"],["2024-07-24T21:45:37.010000"],["2024-07-24T21:45:38.010000"],["2024-07-24T21:45:39.010000"],["2024-07-24T21:45:40.010000"],["2024-07-24T21:45:41.010000"],["2024-07-24T21:45:42.010000"],["2024-07-24T21:45:43.010000"],["2024-07-24T21:45:44.010000"],["2024-07-24T21:45:45.010000"],["2024-07-24T21:45:46.010000"],["2024-07-24T21:45:47.010000"],["2024-07-24T21:45:48.010000"],["2024-07-24T21:45:49.010000"],["2024-07-24T21:45:50.010000"],["2024-07-24T21:45:51.010000"],["2024-07-24T21:45:52.010000"],["2024-07-24T21:45:53.010000"],["2024-07-24T21:45:54.010000"],["2024-07-24T21:45:55.010000"],["2024-07-24T21:45:56.010000"],["2024-07-24T21:45:57.010000"],["2024-07-24T21:45:58.010000"],["2024-07-24T21:45:59.010000"],["2024-07-24T21:46:00.010000"],["2024-07-24T21:46:01.010000"],["2024-07-24T21:46:02.010000"],["2024-07-24T21:46:03.010000"],["2024-07-24T21:46:04.010000"],["2024-07-24T21:46:05.010000"],["2024-07-24T21:46:06.010000"],["2024-07-24T21:46:07.010000"],["2024-07-24T21:46:08.010000"],["2024-07-24T21:46:09.010000"],["2024-07-24T21:46:10.010000"],["2024-07-24T21:46:11.010000"],["2024-07-24T21:46:12.010000"],["2024-07-24T21:46:13.010000"],["2024-07-24T21:46:14.010000"],["2024-07-24T21:46:15.010000"],["2024-07-24T21:46:16.010000"],["2024-07-24T21:46:17.010000"],["2024-07-24T21:46:18.010000"],["2024-07-24T21:46:19.010000"],["2024-07-24T21:46:20.010000"],["2024-07-24T21:46:21.010000"],["2024-07-24T21:46:22.010000"],["2024-07-24T21:46:23.010000"],["2024-07-24T21:46:24.010000"],["2024-07-24T21:46:25.010000"],["2024-07-24T21:46:26.010000"],["2024-07-24T21:46:27.010000"],["2024-07-24T21:46:28.010000"],["2024-07-24T21:46:29.010000"],["2024-07-24T21:46:30.010000"],["2024-07-24T21:46:31.010000"],["2024-07-24T21:46:32.010000"],["2024-07-24T21:46:33.010000"],["2024-07-24T21:46:34.010000"],["2024-07-24T21:46:35.010000"],["2024-07-24T21:46:36.010000"],["2024-07-24T21:46:37.010000"],["2024-07-24T21:46:38.010000"],["2024-07-24T21:46:39.010000"],["2024-07-24T21:46:40.010000"],["2024-07-24T21:46:41.010000"],["2024-07-24T21:46:42.010000"],["2024-07-24T21:46:43.010000"],["2024-07-24T21:46:44.010000"],["2024-07-24T21:46:45.010000"],["2024-07-24T21:46:46.010000"],["2024-07-24T21:46:47.010000"],["2024-07-24T21:46:48.010000"],["2024-07-24T21:46:49.010000"],["2024-07-24T21:46:50.010000"],["2024-07-24T21:46:51.010000"],["2024-07-24T21:46:52.010000"],["2024-07-24T21:46:53.010000"],["2024-07-24T21:46:54.010000"],["2024-07-24T21:46:55.010000"],["2024-07-24T21:46:56.010000"],["2024-07-24T21:46:57.010000"],["2024-07-24T21:46:58.010000"],["2024-07-24T21:46:59.010000"],["2024-07-24T21:47:00.010000"],["2024-07-24T21:47:01.010000"],["2024-07-24T21:47:02.010000"],["2024-07-24T21:47:03.010000"],["2024-07-24T21:47:04.010000"],["2024-07-24T21:47:05.010000"],["2024-07-24T21:47:06.010000"],["2024-07-24T21:47:07.010000"],["2024-07-24T21:47:08.010000"],["2024-07-24T21:47:09.010000"],["2024-07-24T21:47:10.010000"],["2024-07-24T21:47:11.010000"],["2024-07-24T21:47:12.010000"],["2024-07-24T21:47:13.010000"],["2024-07-24T21:47:14.010000"],["2024-07-24T21:47:15.010000"],["2024-07-24T21:47:16.010000"],["2024-07-24T21:47:17.010000"],["2024-07-24T21:47:18.010000"],["2024-07-24T21:47:19.010000"],["2024-07-24T21:47:20.010000"],["2024-07-24T21:47:21.010000"],["2024-07-24T21:47:22.010000"],["2024-07-24T21:47:23.010000"],["2024-07-24T21:47:24.010000"],["2024-07-24T21:47:25.010000"],["2024-07-24T21:47:26.010000"],["2024-07-24T21:47:27.010000"],["2024-07-24T21:47:28.010000"],["2024-07-24T21:47:29.010000"],["2024-07-24T21:47:30.010000"],["2024-07-24T21:47:31.010000"],["2024-07-24T21:47:32.010000"],["2024-07-24T21:47:33.010000"],["2024-07-24T21:47:34.010000"],["2024-07-24T21:47:35.010000"],["2024-07-24T21:47:36.010000"],["2024-07-24T21:47:37.010000"],["2024-07-24T21:47:38.010000"],["2024-07-24T21:47:39.010000"],["2024-07-24T21:47:40.010000"],["2024-07-24T21:47:41.010000"],["2024-07-24T21:47:42.010000"],["2024-07-24T21:47:43.010000"],["2024-07-24T21:47:44.010000"],["2024-07-24T21:47:45.010000"],["2024-07-24T21:47:46.010000"],["2024-07-24T21:47:47.010000"],["2024-07-24T21:47:48.010000"],["2024-07-24T21:47:49.010000"],["2024-07-24T21:47:50.010000"],["2024-07-24T21:47:51.010000"],["2024-07-24T21:47:52.010000"],["2024-07-24T21:47:53.010000"],["2024-07-24T21:47:54.010000"],["2024-07-24T21:47:55.010000"],["2024-07-24T21:47:56.010000"],["2024-07-24T21:47:57.010000"],["2024-07-24T21:47:58.010000"],["2024-07-24T21:47:59.010000"],["2024-07-24T21:48:00.010000"],["2024-07-24T21:48:01.010000"],["2024-07-24T21:48:02.010000"],["2024-07-24T21:48:03.010000"],["2024-07-24T21:48:04.010000"],["2024-07-24T21:48:05.010000"],["2024-07-24T21:48:06.010000"],["2024-07-24T21:48:07.010000"],["2024-07-24T21:48:08.010000"],["2024-07-24T21:48:09.010000"],["2024-07-24T21:48:10.010000"],["2024-07-24T21:48:11.010000"],["2024-07-24T21:48:12.010000"],["2024-07-24T21:48:13.010000"],["2024-07-24T21:48:14.010000"],["2024-07-24T21:48:15.010000"],["2024-07-24T21:48:16.010000"],["2024-07-24T21:48:17.010000"],["2024-07-24T21:48:18.010000"],["2024-07-24T21:48:19.010000"],["2024-07-24T21:48:20.010000"],["2024-07-24T21:48:21.010000"],["2024-07-24T21:48:22.010000"],["2024-07-24T21:48:23.010000"],["2024-07-24T21:48:24.010000"],["2024-07-24T21:48:25.010000"],["2024-07-24T21:48:26.010000"],["2024-07-24T21:48:27.010000"],["2024-07-24T21:48:28.010000"],["2024-07-24T21:48:29.010000"],["2024-07-24T21:48:30.010000"],["2024-07-24T21:48:31.010000"],["2024-07-24T21:48:32.010000"],["2024-07-24T21:48:33.010000"],["2024-07-24T21:48:34.010000"],["2024-07-24T21:48:35.010000"],["2024-07-24T21:48:36.010000"],["2024-07-24T21:48:37.010000"],["2024-07-24T21:48:38.010000"],["2024-07-24T21:48:39.010000"],["2024-07-24T21:48:40.010000"],["2024-07-24T21:48:41.010000"],["2024-07-24T21:48:42.010000"],["2024-07-24T21:48:43.010000"],["2024-07-24T21:48:44.010000"],["2024-07-24T21:48:45.010000"],["2024-07-24T21:48:46.010000"],["2024-07-24T21:48:47.010000"],["2024-07-24T21:48:48.010000"],["2024-07-24T21:48:49.010000"],["2024-07-24T21:48:50.010000"],["2024-07-24T21:48:51.010000"],["2024-07-24T21:48:52.010000"],["2024-07-24T21:48:53.010000"],["2024-07-24T21:48:54.010000"],["2024-07-24T21:48:55.010000"],["2024-07-24T21:48:56.010000"],["2024-07-24T21:48:57.010000"],["2024-07-24T21:48:58.010000"],["2024-07-24T21:48:59.010000"],["2024-07-24T21:49:00.010000"],["2024-07-24T21:49:01.010000"],["2024-07-24T21:49:02.010000"],["2024-07-24T21:49:03.010000"],["2024-07-24T21:49:04.010000"],["2024-07-24T21:49:05.010000"],["2024-07-24T21:49:06.010000"],["2024-07-24T21:49:07.010000"],["2024-07-24T21:49:08.010000"],["2024-07-24T21:49:09.010000"],["2024-07-24T21:49:10.010000"],["2024-07-24T21:49:11.010000"],["2024-07-24T21:49:12.010000"],["2024-07-24T21:49:13.010000"],["2024-07-24T21:49:14.010000"],["2024-07-24T21:49:15.010000"],["2024-07-24T21:49:16.010000"],["2024-07-24T21:49:17.010000"],["2024-07-24T21:49:18.010000"],["2024-07-24T21:49:19.010000"],["2024-07-24T21:49:20.010000"],["2024-07-24T21:49:21.010000"],["2024-07-24T21:49:22.010000"],["2024-07-24T21:49:23.010000"],["2024-07-24T21:49:24.010000"],["2024-07-24T21:49:25.010000"],["2024-07-24T21:49:26.010000"],["2024-07-24T21:49:27.010000"],["2024-07-24T21:49:28.010000"],["2024-07-24T21:49:29.010000"],["2024-07-24T21:49:30.010000"],["2024-07-24T21:49:31.010000"],["2024-07-24T21:49:32.010000"],["2024-07-24T21:49:33.010000"],["2024-07-24T21:49:34.010000"],["2024-07-24T21:49:35.010000"],["2024-07-24T21:49:36.010000"],["2024-07-24T21:49:37.010000"],["2024-07-24T21:49:38.010000"],["2024-07-24T21:49:39.010000"],["2024-07-24T21:49:40.010000"],["2024-07-24T21:49:41.010000"],["2024-07-24T21:49:42.010000"],["2024-07-24T21:49:43.010000"],["2024-07-24T21:49:44.010000"],["2024-07-24T21:49:45.010000"],["2024-07-24T21:49:46.010000"],["2024-07-24T21:49:47.010000"],["2024-07-24T21:49:48.010000"],["2024-07-24T21:49:49.010000"],["2024-07-24T21:49:50.010000"],["2024-07-24T21:49:51.010000"],["2024-07-24T21:49:52.010000"],["2024-07-24T21:49:53.010000"],["2024-07-24T21:49:54.010000"],["2024-07-24T21:49:55.010000"],["2024-07-24T21:49:56.010000"],["2024-07-24T21:49:57.010000"],["2024-07-24T21:49:58.010000"],["2024-07-24T21:49:59.010000"],["2024-07-24T21:50:00.010000"],["2024-07-24T21:50:01.010000"],["2024-07-24T21:50:02.010000"],["2024-07-24T21:50:03.010000"],["2024-07-24T21:50:04.010000"],["2024-07-24T21:50:05.010000"],["2024-07-24T21:50:06.010000"],["2024-07-24T21:50:07.010000"],["2024-07-24T21:50:08.010000"],["2024-07-24T21:50:09.010000"],["2024-07-24T21:50:10.010000"],["2024-07-24T21:50:11.010000"],["2024-07-24T21:50:12.010000"],["2024-07-24T21:50:13.010000"],["2024-07-24T21:50:14.010000"],["2024-07-24T21:50:15.010000"],["2024-07-24T21:50:16.010000"],["2024-07-24T21:50:17.010000"],["2024-07-24T21:50:18.010000"],["2024-07-24T21:50:19.010000"],["2024-07-24T21:50:20.010000"],["2024-07-24T21:50:21.010000"],["2024-07-24T21:50:22.010000"],["2024-07-24T21:50:23.010000"],["2024-07-24T21:50:24.010000"],["2024-07-24T21:50:25.010000"],["2024-07-24T21:50:26.010000"],["2024-07-24T21:50:27.010000"],["2024-07-24T21:50:28.010000"],["2024-07-24T21:50:29.010000"],["2024-07-24T21:50:30.010000"],["2024-07-24T21:50:31.010000"],["2024-07-24T21:50:32.010000"],["2024-07-24T21:50:33.010000"],["2024-07-24T21:50:34.010000"],["2024-07-24T21:50:35.010000"],["2024-07-24T21:50:36.010000"],["2024-07-24T21:50:37.010000"],["2024-07-24T21:50:38.010000"],["2024-07-24T21:50:39.010000"],["2024-07-24T21:50:40.010000"],["2024-07-24T21:50:41.010000"],["2024-07-24T21:50:42.010000"],["2024-07-24T21:50:43.010000"],["2024-07-24T21:50:44.010000"],["2024-07-24T21:50:45.010000"],["2024-07-24T21:50:46.010000"],["2024-07-24T21:50:47.010000"],["2024-07-24T21:50:48.010000"],["2024-07-24T21:50:49.010000"],["2024-07-24T21:50:50.010000"],["2024-07-24T21:50:51.010000"],["2024-07-24T21:50:52.010000"],["2024-07-24T21:50:53.010000"],["2024-07-24T21:50:54.010000"],["2024-07-24T21:50:55.010000"],["2024-07-24T21:50:56.010000"],["2024-07-24T21:50:57.010000"],["2024-07-24T21:50:58.010000"],["2024-07-24T21:50:59.010000"],["2024-07-24T21:51:00.010000"],["2024-07-24T21:51:01.010000"],["2024-07-24T21:51:02.010000"],["2024-07-24T21:51:03.010000"],["2024-07-24T21:51:04.010000"],["2024-07-24T21:51:05.010000"],["2024-07-24T21:51:06.010000"],["2024-07-24T21:51:07.010000"],["2024-07-24T21:51:08.010000"],["2024-07-24T21:51:09.010000"],["2024-07-24T21:51:10.010000"],["2024-07-24T21:51:11.010000"],["2024-07-24T21:51:12.010000"],["2024-07-24T21:51:13.010000"],["2024-07-24T21:51:14.010000"],["2024-07-24T21:51:15.010000"],["2024-07-24T21:51:16.010000"],["2024-07-24T21:51:17.010000"],["2024-07-24T21:51:18.010000"],["2024-07-24T21:51:19.010000"],["2024-07-24T21:51:20.010000"],["2024-07-24T21:51:21.010000"],["2024-07-24T21:51:22.010000"],["2024-07-24T21:51:23.010000"],["2024-07-24T21:51:24.010000"],["2024-07-24T21:51:25.010000"],["2024-07-24T21:51:26.010000"],["2024-07-24T21:51:27.010000"],["2024-07-24T21:51:28.010000"],["2024-07-24T21:51:29.010000"],["2024-07-24T21:51:30.010000"],["2024-07-24T21:51:31.010000"],["2024-07-24T21:51:32.010000"],["2024-07-24T21:51:33.010000"],["2024-07-24T21:51:34.010000"],["2024-07-24T21:51:35.010000"],["2024-07-24T21:51:36.010000"],["2024-07-24T21:51:37.010000"],["2024-07-24T21:51:38.010000"],["2024-07-24T21:51:39.010000"],["2024-07-24T21:51:40.010000"],["2024-07-24T21:51:41.010000"],["2024-07-24T21:51:42.010000"],["2024-07-24T21:51:43.010000"],["2024-07-24T21:51:44.010000"],["2024-07-24T21:51:45.010000"],["2024-07-24T21:51:46.010000"],["2024-07-24T21:51:47.010000"],["2024-07-24T21:51:48.010000"],["2024-07-24T21:51:49.010000"],["2024-07-24T21:51:50.010000"],["2024-07-24T21:51:51.010000"],["2024-07-24T21:51:52.010000"],["2024-07-24T21:51:53.010000"],["2024-07-24T21:51:54.010000"],["2024-07-24T21:51:55.010000"],["2024-07-24T21:51:56.010000"],["2024-07-24T21:51:57.010000"],["2024-07-24T21:51:58.010000"],["2024-07-24T21:51:59.010000"],["2024-07-24T21:52:00.010000"],["2024-07-24T21:52:01.010000"],["2024-07-24T21:52:02.010000"],["2024-07-24T21:52:03.010000"],["2024-07-24T21:52:04.010000"],["2024-07-24T21:52:05.010000"],["2024-07-24T21:52:06.010000"],["2024-07-24T21:52:07.010000"],["2024-07-24T21:52:08.010000"],["2024-07-24T21:52:09.010000"],["2024-07-24T21:52:10.010000"],["2024-07-24T21:52:11.010000"],["2024-07-24T21:52:12.010000"],["2024-07-24T21:52:13.010000"],["2024-07-24T21:52:14.010000"],["2024-07-24T21:52:15.010000"],["2024-07-24T21:52:16.010000"],["2024-07-24T21:52:17.010000"],["2024-07-24T21:52:18.010000"],["2024-07-24T21:52:19.010000"],["2024-07-24T21:52:20.010000"],["2024-07-24T21:52:21.010000"],["2024-07-24T21:52:22.010000"],["2024-07-24T21:52:23.010000"],["2024-07-24T21:52:24.010000"],["2024-07-24T21:52:25.010000"],["2024-07-24T21:52:26.010000"],["2024-07-24T21:52:27.010000"],["2024-07-24T21:52:28.010000"],["2024-07-24T21:52:29.010000"],["2024-07-24T21:52:30.010000"],["2024-07-24T21:52:31.010000"],["2024-07-24T21:52:32.010000"],["2024-07-24T21:52:33.010000"],["2024-07-24T21:52:34.010000"],["2024-07-24T21:52:35.010000"],["2024-07-24T21:52:36.010000"],["2024-07-24T21:52:37.010000"],["2024-07-24T21:52:38.010000"],["2024-07-24T21:52:39.010000"],["2024-07-24T21:52:40.010000"],["2024-07-24T21:52:41.010000"],["2024-07-24T21:52:42.010000"],["2024-07-24T21:52:43.010000"],["2024-07-24T21:52:44.010000"],["2024-07-24T21:52:45.010000"],["2024-07-24T21:52:46.010000"],["2024-07-24T21:52:47.010000"],["2024-07-24T21:52:48.010000"],["2024-07-24T21:52:49.010000"],["2024-07-24T21:52:50.010000"],["2024-07-24T21:52:51.010000"],["2024-07-24T21:52:52.010000"],["2024-07-24T21:52:53.010000"],["2024-07-24T21:52:54.010000"],["2024-07-24T21:52:55.010000"],["2024-07-24T21:52:56.010000"],["2024-07-24T21:52:57.010000"],["2024-07-24T21:52:58.010000"],["2024-07-24T21:52:59.010000"],["2024-07-24T21:53:00.010000"],["2024-07-24T21:53:01.010000"],["2024-07-24T21:53:02.010000"],["2024-07-24T21:53:03.010000"],["2024-07-24T21:53:04.010000"],["2024-07-24T21:53:05.010000"],["2024-07-24T21:53:06.010000"],["2024-07-24T21:53:07.010000"],["2024-07-24T21:53:08.010000"],["2024-07-24T21:53:09.010000"],["2024-07-24T21:53:10.010000"],["2024-07-24T21:53:11.010000"],["2024-07-24T21:53:12.010000"],["2024-07-24T21:53:13.010000"],["2024-07-24T21:53:14.010000"],["2024-07-24T21:53:15.010000"],["2024-07-24T21:53:16.010000"],["2024-07-24T21:53:17.010000"],["2024-07-24T21:53:18.010000"],["2024-07-24T21:53:19.010000"],["2024-07-24T21:53:20.010000"],["2024-07-24T21:53:21.010000"],["2024-07-24T21:53:22.010000"],["2024-07-24T21:53:23.010000"],["2024-07-24T21:53:24.010000"],["2024-07-24T21:53:25.010000"],["2024-07-24T21:53:26.010000"],["2024-07-24T21:53:27.010000"],["2024-07-24T21:53:28.010000"],["2024-07-24T21:53:29.010000"],["2024-07-24T21:53:30.010000"],["2024-07-24T21:53:31.010000"],["2024-07-24T21:53:32.010000"],["2024-07-24T21:53:33.010000"],["2024-07-24T21:53:34.010000"],["2024-07-24T21:53:35.010000"],["2024-07-24T21:53:36.010000"],["2024-07-24T21:53:37.010000"],["2024-07-24T21:53:38.010000"],["2024-07-24T21:53:39.010000"],["2024-07-24T21:53:40.010000"],["2024-07-24T21:53:41.010000"],["2024-07-24T21:53:42.010000"],["2024-07-24T21:53:43.010000"],["2024-07-24T21:53:44.010000"],["2024-07-24T21:53:45.010000"],["2024-07-24T21:53:46.010000"],["2024-07-24T21:53:47.010000"],["2024-07-24T21:53:48.010000"],["2024-07-24T21:53:49.010000"],["2024-07-24T21:53:50.010000"],["2024-07-24T21:53:51.010000"],["2024-07-24T21:53:52.010000"],["2024-07-24T21:53:53.010000"],["2024-07-24T21:53:54.010000"],["2024-07-24T21:53:55.010000"],["2024-07-24T21:53:56.010000"],["2024-07-24T21:53:57.010000"],["2024-07-24T21:53:58.010000"],["2024-07-24T21:53:59.010000"],["2024-07-24T21:54:00.010000"],["2024-07-24T21:54:01.010000"],["2024-07-24T21:54:02.010000"],["2024-07-24T21:54:03.010000"],["2024-07-24T21:54:04.010000"],["2024-07-24T21:54:05.010000"],["2024-07-24T21:54:06.010000"],["2024-07-24T21:54:07.010000"],["2024-07-24T21:54:08.010000"],["2024-07-24T21:54:09.010000"],["2024-07-24T21:54:10.010000"],["2024-07-24T21:54:11.010000"],["2024-07-24T21:54:12.010000"],["2024-07-24T21:54:13.010000"],["2024-07-24T21:54:14.010000"],["2024-07-24T21:54:15.010000"],["2024-07-24T21:54:16.010000"],["2024-07-24T21:54:17.010000"],["2024-07-24T21:54:18.010000"],["2024-07-24T21:54:19.010000"],["2024-07-24T21:54:20.010000"],["2024-07-24T21:54:21.010000"],["2024-07-24T21:54:22.010000"],["2024-07-24T21:54:23.010000"],["2024-07-24T21:54:24.010000"],["2024-07-24T21:54:25.010000"],["2024-07-24T21:54:26.010000"],["2024-07-24T21:54:27.010000"],["2024-07-24T21:54:28.010000"],["2024-07-24T21:54:29.010000"],["2024-07-24T21:54:30.010000"],["2024-07-24T21:54:31.010000"],["2024-07-24T21:54:32.010000"],["2024-07-24T21:54:33.010000"],["2024-07-24T21:54:34.010000"],["2024-07-24T21:54:35.010000"],["2024-07-24T21:54:36.010000"],["2024-07-24T21:54:37.010000"],["2024-07-24T21:54:38.010000"],["2024-07-24T21:54:39.010000"],["2024-07-24T21:54:40.010000"],["2024-07-24T21:54:41.010000"],["2024-07-24T21:54:42.010000"],["2024-07-24T21:54:43.010000"],["2024-07-24T21:54:44.010000"],["2024-07-24T21:54:45.010000"],["2024-07-24T21:54:46.010000"],["2024-07-24T21:54:47.010000"],["2024-07-24T21:54:48.010000"],["2024-07-24T21:54:49.010000"],["2024-07-24T21:54:50.010000"],["2024-07-24T21:54:51.010000"],["2024-07-24T21:54:52.010000"],["2024-07-24T21:54:53.010000"],["2024-07-24T21:54:54.010000"],["2024-07-24T21:54:55.010000"],["2024-07-24T21:54:56.010000"],["2024-07-24T21:54:57.010000"],["2024-07-24T21:54:58.010000"],["2024-07-24T21:54:59.010000"],["2024-07-24T21:55:00.010000"],["2024-07-24T21:55:01.010000"],["2024-07-24T21:55:02.010000"],["2024-07-24T21:55:03.010000"],["2024-07-24T21:55:04.010000"],["2024-07-24T21:55:05.010000"],["2024-07-24T21:55:06.010000"],["2024-07-24T21:55:07.010000"],["2024-07-24T21:55:08.010000"],["2024-07-24T21:55:09.010000"],["2024-07-24T21:55:10.010000"],["2024-07-24T21:55:11.010000"],["2024-07-24T21:55:12.010000"],["2024-07-24T21:55:13.010000"],["2024-07-24T21:55:14.010000"],["2024-07-24T21:55:15.010000"],["2024-07-24T21:55:16.010000"],["2024-07-24T21:55:17.010000"],["2024-07-24T21:55:18.010000"],["2024-07-24T21:55:19.010000"],["2024-07-24T21:55:20.010000"],["2024-07-24T21:55:21.010000"],["2024-07-24T21:55:22.010000"],["2024-07-24T21:55:23.010000"],["2024-07-24T21:55:24.010000"],["2024-07-24T21:55:25.010000"],["2024-07-24T21:55:26.010000"],["2024-07-24T21:55:27.010000"],["2024-07-24T21:55:28.010000"],["2024-07-24T21:55:29.010000"],["2024-07-24T21:55:30.010000"],["2024-07-24T21:55:31.010000"],["2024-07-24T21:55:32.010000"],["2024-07-24T21:55:33.010000"],["2024-07-24T21:55:34.010000"],["2024-07-24T21:55:35.010000"],["2024-07-24T21:55:36.010000"],["2024-07-24T21:55:37.010000"],["2024-07-24T21:55:38.010000"],["2024-07-24T21:55:39.010000"],["2024-07-24T21:55:40.010000"],["2024-07-24T21:55:41.010000"],["2024-07-24T21:55:42.010000"],["2024-07-24T21:55:43.010000"],["2024-07-24T21:55:44.010000"],["2024-07-24T21:55:45.010000"],["2024-07-24T21:55:46.010000"],["2024-07-24T21:55:47.010000"],["2024-07-24T21:55:48.010000"],["2024-07-24T21:55:49.010000"],["2024-07-24T21:55:50.010000"],["2024-07-24T21:55:51.010000"],["2024-07-24T21:55:52.010000"],["2024-07-24T21:55:53.010000"],["2024-07-24T21:55:54.010000"],["2024-07-24T21:55:55.010000"],["2024-07-24T21:55:56.010000"],["2024-07-24T21:55:57.010000"],["2024-07-24T21:55:58.010000"],["2024-07-24T21:55:59.010000"],["2024-07-24T21:56:00.010000"],["2024-07-24T21:56:01.010000"],["2024-07-24T21:56:02.010000"],["2024-07-24T21:56:03.010000"],["2024-07-24T21:56:04.010000"],["2024-07-24T21:56:05.010000"],["2024-07-24T21:56:06.010000"],["2024-07-24T21:56:07.010000"],["2024-07-24T21:56:08.010000"],["2024-07-24T21:56:09.010000"],["2024-07-24T21:56:10.010000"],["2024-07-24T21:56:11.010000"],["2024-07-24T21:56:12.010000"],["2024-07-24T21:56:13.010000"],["2024-07-24T21:56:14.010000"],["2024-07-24T21:56:15.010000"],["2024-07-24T21:56:16.010000"],["2024-07-24T21:56:17.010000"],["2024-07-24T21:56:18.010000"],["2024-07-24T21:56:19.010000"],["2024-07-24T21:56:20.010000"],["2024-07-24T21:56:21.010000"],["2024-07-24T21:56:22.010000"],["2024-07-24T21:56:23.010000"],["2024-07-24T21:56:24.010000"],["2024-07-24T21:56:25.010000"],["2024-07-24T21:56:26.010000"],["2024-07-24T21:56:27.010000"],["2024-07-24T21:56:28.010000"],["2024-07-24T21:56:29.010000"],["2024-07-24T21:56:30.010000"],["2024-07-24T21:56:31.010000"],["2024-07-24T21:56:32.010000"],["2024-07-24T21:56:33.010000"],["2024-07-24T21:56:34.010000"],["2024-07-24T21:56:35.010000"],["2024-07-24T21:56:36.010000"],["2024-07-24T21:56:37.010000"],["2024-07-24T21:56:38.010000"],["2024-07-24T21:56:39.010000"],["2024-07-24T21:56:40.010000"],["2024-07-24T21:56:41.010000"],["2024-07-24T21:56:42.010000"],["2024-07-24T21:56:43.010000"],["2024-07-24T21:56:44.010000"],["2024-07-24T21:56:45.010000"],["2024-07-24T21:56:46.010000"],["2024-07-24T21:56:47.010000"],["2024-07-24T21:56:48.010000"],["2024-07-24T21:56:49.010000"],["2024-07-24T21:56:50.010000"],["2024-07-24T21:56:51.010000"],["2024-07-24T21:56:52.010000"],["2024-07-24T21:56:53.010000"],["2024-07-24T21:56:54.010000"],["2024-07-24T21:56:55.010000"],["2024-07-24T21:56:56.010000"],["2024-07-24T21:56:57.010000"],["2024-07-24T21:56:58.010000"],["2024-07-24T21:56:59.010000"],["2024-07-24T21:57:00.010000"],["2024-07-24T21:57:01.010000"],["2024-07-24T21:57:02.010000"],["2024-07-24T21:57:03.010000"],["2024-07-24T21:57:04.010000"],["2024-07-24T21:57:05.010000"],["2024-07-24T21:57:06.010000"],["2024-07-24T21:57:07.010000"],["2024-07-24T21:57:08.010000"],["2024-07-24T21:57:09.010000"],["2024-07-24T21:57:10.010000"],["2024-07-24T21:57:11.010000"],["2024-07-24T21:57:12.010000"],["2024-07-24T21:57:13.010000"],["2024-07-24T21:57:14.010000"],["2024-07-24T21:57:15.010000"],["2024-07-24T21:57:16.010000"],["2024-07-24T21:57:17.010000"],["2024-07-24T21:57:18.010000"],["2024-07-24T21:57:19.010000"],["2024-07-24T21:57:20.010000"],["2024-07-24T21:57:21.010000"],["2024-07-24T21:57:22.010000"],["2024-07-24T21:57:23.010000"],["2024-07-24T21:57:24.010000"],["2024-07-24T21:57:25.010000"],["2024-07-24T21:57:26.010000"],["2024-07-24T21:57:27.010000"],["2024-07-24T21:57:28.010000"],["2024-07-24T21:57:29.010000"],["2024-07-24T21:57:30.010000"],["2024-07-24T21:57:31.010000"],["2024-07-24T21:57:32.010000"],["2024-07-24T21:57:33.010000"],["2024-07-24T21:57:34.010000"],["2024-07-24T21:57:35.010000"],["2024-07-24T21:57:36.010000"],["2024-07-24T21:57:37.010000"],["2024-07-24T21:57:38.010000"],["2024-07-24T21:57:39.010000"],["2024-07-24T21:57:40.010000"],["2024-07-24T21:57:41.010000"],["2024-07-24T21:57:42.010000"],["2024-07-24T21:57:43.010000"],["2024-07-24T21:57:44.010000"],["2024-07-24T21:57:45.010000"],["2024-07-24T21:57:46.010000"],["2024-07-24T21:57:47.010000"],["2024-07-24T21:57:48.010000"],["2024-07-24T21:57:49.010000"],["2024-07-24T21:57:50.010000"],["2024-07-24T21:57:51.010000"],["2024-07-24T21:57:52.010000"],["2024-07-24T21:57:53.010000"],["2024-07-24T21:57:54.010000"],["2024-07-24T21:57:55.010000"],["2024-07-24T21:57:56.010000"],["2024-07-24T21:57:57.010000"],["2024-07-24T21:57:58.010000"],["2024-07-24T21:57:59.010000"],["2024-07-24T21:58:00.010000"],["2024-07-24T21:58:01.010000"],["2024-07-24T21:58:02.010000"],["2024-07-24T21:58:03.010000"],["2024-07-24T21:58:04.010000"],["2024-07-24T21:58:05.010000"],["2024-07-24T21:58:06.010000"],["2024-07-24T21:58:07.010000"],["2024-07-24T21:58:08.010000"],["2024-07-24T21:58:09.010000"],["2024-07-24T21:58:10.010000"],["2024-07-24T21:58:11.010000"],["2024-07-24T21:58:12.010000"],["2024-07-24T21:58:13.010000"],["2024-07-24T21:58:14.010000"],["2024-07-24T21:58:15.010000"],["2024-07-24T21:58:16.010000"],["2024-07-24T21:58:17.010000"],["2024-07-24T21:58:18.010000"],["2024-07-24T21:58:19.010000"],["2024-07-24T21:58:20.010000"],["2024-07-24T21:58:21.010000"],["2024-07-24T21:58:22.010000"],["2024-07-24T21:58:23.010000"],["2024-07-24T21:58:24.010000"],["2024-07-24T21:58:25.010000"],["2024-07-24T21:58:26.010000"],["2024-07-24T21:58:27.010000"],["2024-07-24T21:58:28.010000"],["2024-07-24T21:58:29.010000"],["2024-07-24T21:58:30.010000"],["2024-07-24T21:58:31.010000"],["2024-07-24T21:58:32.010000"],["2024-07-24T21:58:33.010000"],["2024-07-24T21:58:34.010000"],["2024-07-24T21:58:35.010000"],["2024-07-24T21:58:36.010000"],["2024-07-24T21:58:37.010000"],["2024-07-24T21:58:38.010000"],["2024-07-24T21:58:39.010000"],["2024-07-24T21:58:40.010000"],["2024-07-24T21:58:41.010000"],["2024-07-24T21:58:42.010000"],["2024-07-24T21:58:43.010000"],["2024-07-24T21:58:44.010000"],["2024-07-24T21:58:45.010000"],["2024-07-24T21:58:46.010000"],["2024-07-24T21:58:47.010000"],["2024-07-24T21:58:48.010000"],["2024-07-24T21:58:49.010000"],["2024-07-24T21:58:50.010000"],["2024-07-24T21:58:51.010000"],["2024-07-24T21:58:52.010000"],["2024-07-24T21:58:53.010000"],["2024-07-24T21:58:54.010000"],["2024-07-24T21:58:55.010000"],["2024-07-24T21:58:56.010000"],["2024-07-24T21:58:57.010000"],["2024-07-24T21:58:58.010000"],["2024-07-24T21:58:59.010000"],["2024-07-24T21:59:00.010000"],["2024-07-24T21:59:01.010000"],["2024-07-24T21:59:02.010000"],["2024-07-24T21:59:03.010000"],["2024-07-24T21:59:04.010000"],["2024-07-24T21:59:05.010000"],["2024-07-24T21:59:06.010000"],["2024-07-24T21:59:07.010000"],["2024-07-24T21:59:08.010000"],["2024-07-24T21:59:09.010000"],["2024-07-24T21:59:10.010000"],["2024-07-24T21:59:11.010000"],["2024-07-24T21:59:12.010000"],["2024-07-24T21:59:13.010000"],["2024-07-24T21:59:14.010000"],["2024-07-24T21:59:15.010000"],["2024-07-24T21:59:16.010000"],["2024-07-24T21:59:17.010000"],["2024-07-24T21:59:18.010000"],["2024-07-24T21:59:19.010000"],["2024-07-24T21:59:20.010000"],["2024-07-24T21:59:21.010000"],["2024-07-24T21:59:22.010000"],["2024-07-24T21:59:23.010000"],["2024-07-24T21:59:24.010000"],["2024-07-24T21:59:25.010000"],["2024-07-24T21:59:26.010000"],["2024-07-24T21:59:27.010000"],["2024-07-24T21:59:28.010000"],["2024-07-24T21:59:29.010000"],["2024-07-24T21:59:30.010000"],["2024-07-24T21:59:31.010000"],["2024-07-24T21:59:32.010000"],["2024-07-24T21:59:33.010000"],["2024-07-24T21:59:34.010000"],["2024-07-24T21:59:35.010000"],["2024-07-24T21:59:36.010000"],["2024-07-24T21:59:37.010000"],["2024-07-24T21:59:38.010000"],["2024-07-24T21:59:39.010000"],["2024-07-24T21:59:40.010000"],["2024-07-24T21:59:41.010000"],["2024-07-24T21:59:42.010000"],["2024-07-24T21:59:43.010000"],["2024-07-24T21:59:44.010000"],["2024-07-24T21:59:45.010000"],["2024-07-24T21:59:46.010000"],["2024-07-24T21:59:47.010000"],["2024-07-24T21:59:48.010000"],["2024-07-24T21:59:49.010000"],["2024-07-24T21:59:50.010000"],["2024-07-24T21:59:51.010000"],["2024-07-24T21:59:52.010000"],["2024-07-24T21:59:53.010000"],["2024-07-24T21:59:54.010000"],["2024-07-24T21:59:55.010000"],["2024-07-24T21:59:56.010000"],["2024-07-24T21:59:57.010000"],["2024-07-24T21:59:58.010000"],["2024-07-24T21:59:59.010000"],["2024-07-24T22:00:00.010000"],["2024-07-24T22:00:01.010000"],["2024-07-24T22:00:02.010000"],["2024-07-24T22:00:03.010000"],["2024-07-24T22:00:04.010000"],["2024-07-24T22:00:05.010000"],["2024-07-24T22:00:06.010000"],["2024-07-24T22:00:07.010000"],["2024-07-24T22:00:08.010000"],["2024-07-24T22:00:09.010000"],["2024-07-24T22:00:10.010000"],["2024-07-24T22:00:11.010000"],["2024-07-24T22:00:12.010000"],["2024-07-24T22:00:13.010000"],["2024-07-24T22:00:14.010000"],["2024-07-24T22:00:15.010000"],["2024-07-24T22:00:16.010000"],["2024-07-24T22:00:17.010000"],["2024-07-24T22:00:18.010000"],["2024-07-24T22:00:19.010000"],["2024-07-24T22:00:20.010000"],["2024-07-24T22:00:21.010000"],["2024-07-24T22:00:22.010000"],["2024-07-24T22:00:23.010000"],["2024-07-24T22:00:24.010000"],["2024-07-24T22:00:25.010000"],["2024-07-24T22:00:26.010000"],["2024-07-24T22:00:27.010000"],["2024-07-24T22:00:28.010000"],["2024-07-24T22:00:29.010000"],["2024-07-24T22:00:30.010000"],["2024-07-24T22:00:31.010000"],["2024-07-24T22:00:32.010000"],["2024-07-24T22:00:33.010000"],["2024-07-24T22:00:34.010000"],["2024-07-24T22:00:35.010000"],["2024-07-24T22:00:36.010000"],["2024-07-24T22:00:37.010000"],["2024-07-24T22:00:38.010000"],["2024-07-24T22:00:39.010000"],["2024-07-24T22:00:40.010000"],["2024-07-24T22:00:41.010000"],["2024-07-24T22:00:42.010000"],["2024-07-24T22:00:43.010000"],["2024-07-24T22:00:44.010000"],["2024-07-24T22:00:45.010000"],["2024-07-24T22:00:46.010000"],["2024-07-24T22:00:47.010000"],["2024-07-24T22:00:48.010000"],["2024-07-24T22:00:49.010000"],["2024-07-24T22:00:50.010000"],["2024-07-24T22:00:51.010000"],["2024-07-24T22:00:52.010000"],["2024-07-24T22:00:53.010000"],["2024-07-24T22:00:54.010000"],["2024-07-24T22:00:55.010000"],["2024-07-24T22:00:56.010000"],["2024-07-24T22:00:57.010000"],["2024-07-24T22:00:58.010000"],["2024-07-24T22:00:59.010000"],["2024-07-24T22:01:00.010000"],["2024-07-24T22:01:01.010000"],["2024-07-24T22:01:02.010000"],["2024-07-24T22:01:03.010000"],["2024-07-24T22:01:04.010000"],["2024-07-24T22:01:05.010000"],["2024-07-24T22:01:06.010000"],["2024-07-24T22:01:07.010000"],["2024-07-24T22:01:08.010000"],["2024-07-24T22:01:09.010000"],["2024-07-24T22:01:10.010000"],["2024-07-24T22:01:11.010000"],["2024-07-24T22:01:12.010000"],["2024-07-24T22:01:13.010000"],["2024-07-24T22:01:14.010000"],["2024-07-24T22:01:15.010000"],["2024-07-24T22:01:16.010000"],["2024-07-24T22:01:17.010000"],["2024-07-24T22:01:18.010000"],["2024-07-24T22:01:19.010000"],["2024-07-24T22:01:20.010000"],["2024-07-24T22:01:21.010000"],["2024-07-24T22:01:22.010000"],["2024-07-24T22:01:23.010000"],["2024-07-24T22:01:24.010000"],["2024-07-24T22:01:25.010000"],["2024-07-24T22:01:26.010000"],["2024-07-24T22:01:27.010000"],["2024-07-24T22:01:28.010000"],["2024-07-24T22:01:29.010000"],["2024-07-24T22:01:30.010000"],["2024-07-24T22:01:31.010000"],["2024-07-24T22:01:32.010000"],["2024-07-24T22:01:33.010000"],["2024-07-24T22:01:34.010000"],["2024-07-24T22:01:35.010000"],["2024-07-24T22:01:36.010000"],["2024-07-24T22:01:37.010000"],["2024-07-24T22:01:38.010000"],["2024-07-24T22:01:39.010000"],["2024-07-24T22:01:40.010000"],["2024-07-24T22:01:41.010000"],["2024-07-24T22:01:42.010000"],["2024-07-24T22:01:43.010000"],["2024-07-24T22:01:44.010000"],["2024-07-24T22:01:45.010000"],["2024-07-24T22:01:46.010000"],["2024-07-24T22:01:47.010000"],["2024-07-24T22:01:48.010000"],["2024-07-24T22:01:49.010000"],["2024-07-24T22:01:50.010000"],["2024-07-24T22:01:51.010000"],["2024-07-24T22:01:52.010000"],["2024-07-24T22:01:53.010000"],["2024-07-24T22:01:54.010000"],["2024-07-24T22:01:55.010000"],["2024-07-24T22:01:56.010000"],["2024-07-24T22:01:57.010000"],["2024-07-24T22:01:58.010000"],["2024-07-24T22:01:59.010000"],["2024-07-24T22:02:00.010000"],["2024-07-24T22:02:01.010000"],["2024-07-24T22:02:02.010000"],["2024-07-24T22:02:03.010000"],["2024-07-24T22:02:04.010000"],["2024-07-24T22:02:05.010000"],["2024-07-24T22:02:06.010000"],["2024-07-24T22:02:07.010000"],["2024-07-24T22:02:08.010000"],["2024-07-24T22:02:09.010000"],["2024-07-24T22:02:10.010000"],["2024-07-24T22:02:11.010000"],["2024-07-24T22:02:12.010000"],["2024-07-24T22:02:13.010000"],["2024-07-24T22:02:14.010000"],["2024-07-24T22:02:15.010000"],["2024-07-24T22:02:16.010000"],["2024-07-24T22:02:17.010000"],["2024-07-24T22:02:18.010000"],["2024-07-24T22:02:19.010000"],["2024-07-24T22:02:20.010000"],["2024-07-24T22:02:21.010000"],["2024-07-24T22:02:22.010000"],["2024-07-24T22:02:23.010000"],["2024-07-24T22:02:24.010000"],["2024-07-24T22:02:25.010000"],["2024-07-24T22:02:26.010000"],["2024-07-24T22:02:27.010000"],["2024-07-24T22:02:28.010000"],["2024-07-24T22:02:29.010000"],["2024-07-24T22:02:30.010000"],["2024-07-24T22:02:31.010000"],["2024-07-24T22:02:32.010000"],["2024-07-24T22:02:33.010000"],["2024-07-24T22:02:34.010000"],["2024-07-24T22:02:35.010000"],["2024-07-24T22:02:36.010000"],["2024-07-24T22:02:37.010000"],["2024-07-24T22:02:38.010000"],["2024-07-24T22:02:39.010000"],["2024-07-24T22:02:40.010000"],["2024-07-24T22:02:41.010000"],["2024-07-24T22:02:42.010000"],["2024-07-24T22:02:43.010000"],["2024-07-24T22:02:44.010000"],["2024-07-24T22:02:45.010000"],["2024-07-24T22:02:46.010000"],["2024-07-24T22:02:47.010000"],["2024-07-24T22:02:48.010000"],["2024-07-24T22:02:49.010000"],["2024-07-24T22:02:50.010000"],["2024-07-24T22:02:51.010000"],["2024-07-24T22:02:52.010000"],["2024-07-24T22:02:53.010000"],["2024-07-24T22:02:54.010000"],["2024-07-24T22:02:55.010000"],["2024-07-24T22:02:56.010000"],["2024-07-24T22:02:57.010000"],["2024-07-24T22:02:58.010000"],["2024-07-24T22:02:59.010000"],["2024-07-24T22:03:00.010000"],["2024-07-24T22:03:01.010000"],["2024-07-24T22:03:02.010000"],["2024-07-24T22:03:03.010000"],["2024-07-24T22:03:04.010000"],["2024-07-24T22:03:05.010000"],["2024-07-24T22:03:06.010000"],["2024-07-24T22:03:07.010000"],["2024-07-24T22:03:08.010000"],["2024-07-24T22:03:09.010000"],["2024-07-24T22:03:10.010000"],["2024-07-24T22:03:11.010000"],["2024-07-24T22:03:12.010000"],["2024-07-24T22:03:13.010000"],["2024-07-24T22:03:14.010000"],["2024-07-24T22:03:15.010000"],["2024-07-24T22:03:16.010000"],["2024-07-24T22:03:17.010000"],["2024-07-24T22:03:18.010000"],["2024-07-24T22:03:19.010000"],["2024-07-24T22:03:20.010000"],["2024-07-24T22:03:21.010000"],["2024-07-24T22:03:22.010000"],["2024-07-24T22:03:23.010000"],["2024-07-24T22:03:24.010000"],["2024-07-24T22:03:25.010000"],["2024-07-24T22:03:26.010000"],["2024-07-24T22:03:27.010000"],["2024-07-24T22:03:28.010000"],["2024-07-24T22:03:29.010000"],["2024-07-24T22:03:30.010000"],["2024-07-24T22:03:31.010000"],["2024-07-24T22:03:32.010000"],["2024-07-24T22:03:33.010000"],["2024-07-24T22:03:34.010000"],["2024-07-24T22:03:35.010000"],["2024-07-24T22:03:36.010000"],["2024-07-24T22:03:37.010000"],["2024-07-24T22:03:38.010000"],["2024-07-24T22:03:39.010000"],["2024-07-24T22:03:40.010000"],["2024-07-24T22:03:41.010000"],["2024-07-24T22:03:42.010000"],["2024-07-24T22:03:43.010000"],["2024-07-24T22:03:44.010000"],["2024-07-24T22:03:45.010000"],["2024-07-24T22:03:46.010000"],["2024-07-24T22:03:47.010000"],["2024-07-24T22:03:48.010000"],["2024-07-24T22:03:49.010000"],["2024-07-24T22:03:50.010000"],["2024-07-24T22:03:51.010000"],["2024-07-24T22:03:52.010000"],["2024-07-24T22:03:53.010000"],["2024-07-24T22:03:54.010000"],["2024-07-24T22:03:55.010000"],["2024-07-24T22:03:56.010000"],["2024-07-24T22:03:57.010000"],["2024-07-24T22:03:58.010000"],["2024-07-24T22:03:59.010000"],["2024-07-24T22:04:00.010000"],["2024-07-24T22:04:01.010000"],["2024-07-24T22:04:02.010000"],["2024-07-24T22:04:03.010000"],["2024-07-24T22:04:04.010000"],["2024-07-24T22:04:05.010000"],["2024-07-24T22:04:06.010000"],["2024-07-24T22:04:07.010000"],["2024-07-24T22:04:08.010000"],["2024-07-24T22:04:09.010000"],["2024-07-24T22:04:10.010000"],["2024-07-24T22:04:11.010000"],["2024-07-24T22:04:12.010000"],["2024-07-24T22:04:13.010000"],["2024-07-24T22:04:14.010000"],["2024-07-24T22:04:15.010000"],["2024-07-24T22:04:16.010000"],["2024-07-24T22:04:17.010000"],["2024-07-24T22:04:18.010000"],["2024-07-24T22:04:19.010000"],["2024-07-24T22:04:20.010000"],["2024-07-24T22:04:21.010000"],["2024-07-24T22:04:22.010000"],["2024-07-24T22:04:23.010000"],["2024-07-24T22:04:24.010000"],["2024-07-24T22:04:25.010000"],["2024-07-24T22:04:26.010000"],["2024-07-24T22:04:27.010000"],["2024-07-24T22:04:28.010000"],["2024-07-24T22:04:29.010000"],["2024-07-24T22:04:30.010000"],["2024-07-24T22:04:31.010000"],["2024-07-24T22:04:32.010000"],["2024-07-24T22:04:33.010000"],["2024-07-24T22:04:34.010000"],["2024-07-24T22:04:35.010000"],["2024-07-24T22:04:36.010000"],["2024-07-24T22:04:37.010000"],["2024-07-24T22:04:38.010000"],["2024-07-24T22:04:39.010000"],["2024-07-24T22:04:40.010000"],["2024-07-24T22:04:41.010000"],["2024-07-24T22:04:42.010000"],["2024-07-24T22:04:43.010000"],["2024-07-24T22:04:44.010000"],["2024-07-24T22:04:45.010000"],["2024-07-24T22:04:46.010000"],["2024-07-24T22:04:47.010000"],["2024-07-24T22:04:48.010000"],["2024-07-24T22:04:49.010000"],["2024-07-24T22:04:50.010000"],["2024-07-24T22:04:51.010000"],["2024-07-24T22:04:52.010000"],["2024-07-24T22:04:53.010000"],["2024-07-24T22:04:54.010000"],["2024-07-24T22:04:55.010000"],["2024-07-24T22:04:56.010000"],["2024-07-24T22:04:57.010000"],["2024-07-24T22:04:58.010000"],["2024-07-24T22:04:59.010000"],["2024-07-24T22:05:00.010000"],["2024-07-24T22:05:01.010000"],["2024-07-24T22:05:02.010000"],["2024-07-24T22:05:03.010000"],["2024-07-24T22:05:04.010000"],["2024-07-24T22:05:05.010000"],["2024-07-24T22:05:06.010000"],["2024-07-24T22:05:07.010000"],["2024-07-24T22:05:08.010000"],["2024-07-24T22:05:09.010000"],["2024-07-24T22:05:10.010000"],["2024-07-24T22:05:11.010000"],["2024-07-24T22:05:12.010000"],["2024-07-24T22:05:13.010000"],["2024-07-24T22:05:14.010000"],["2024-07-24T22:05:15.010000"],["2024-07-24T22:05:16.010000"],["2024-07-24T22:05:17.010000"],["2024-07-24T22:05:18.010000"],["2024-07-24T22:05:19.010000"],["2024-07-24T22:05:20.010000"],["2024-07-24T22:05:21.010000"],["2024-07-24T22:05:22.010000"],["2024-07-24T22:05:23.010000"],["2024-07-24T22:05:24.010000"],["2024-07-24T22:05:25.010000"],["2024-07-24T22:05:26.010000"],["2024-07-24T22:05:27.010000"],["2024-07-24T22:05:28.010000"],["2024-07-24T22:05:29.010000"],["2024-07-24T22:05:30.010000"],["2024-07-24T22:05:31.010000"],["2024-07-24T22:05:32.010000"],["2024-07-24T22:05:33.010000"],["2024-07-24T22:05:34.010000"],["2024-07-24T22:05:35.010000"],["2024-07-24T22:05:36.010000"],["2024-07-24T22:05:37.010000"],["2024-07-24T22:05:38.010000"],["2024-07-24T22:05:39.010000"],["2024-07-24T22:05:40.010000"],["2024-07-24T22:05:41.010000"],["2024-07-24T22:05:42.010000"],["2024-07-24T22:05:43.010000"],["2024-07-24T22:05:44.010000"],["2024-07-24T22:05:45.010000"],["2024-07-24T22:05:46.010000"],["2024-07-24T22:05:47.010000"],["2024-07-24T22:05:48.010000"],["2024-07-24T22:05:49.010000"],["2024-07-24T22:05:50.010000"],["2024-07-24T22:05:51.010000"],["2024-07-24T22:05:52.010000"],["2024-07-24T22:05:53.010000"],["2024-07-24T22:05:54.010000"],["2024-07-24T22:05:55.010000"],["2024-07-24T22:05:56.010000"],["2024-07-24T22:05:57.010000"],["2024-07-24T22:05:58.010000"],["2024-07-24T22:05:59.010000"],["2024-07-24T22:06:00.010000"],["2024-07-24T22:06:01.010000"],["2024-07-24T22:06:02.010000"],["2024-07-24T22:06:03.010000"],["2024-07-24T22:06:04.010000"],["2024-07-24T22:06:05.010000"],["2024-07-24T22:06:06.010000"],["2024-07-24T22:06:07.010000"],["2024-07-24T22:06:08.010000"],["2024-07-24T22:06:09.010000"],["2024-07-24T22:06:10.010000"],["2024-07-24T22:06:11.010000"],["2024-07-24T22:06:12.010000"],["2024-07-24T22:06:13.010000"],["2024-07-24T22:06:14.010000"],["2024-07-24T22:06:15.010000"],["2024-07-24T22:06:16.010000"],["2024-07-24T22:06:17.010000"],["2024-07-24T22:06:18.010000"],["2024-07-24T22:06:19.010000"],["2024-07-24T22:06:20.010000"],["2024-07-24T22:06:21.010000"],["2024-07-24T22:06:22.010000"],["2024-07-24T22:06:23.010000"],["2024-07-24T22:06:24.010000"],["2024-07-24T22:06:25.010000"],["2024-07-24T22:06:26.010000"],["2024-07-24T22:06:27.010000"],["2024-07-24T22:06:28.010000"],["2024-07-24T22:06:29.010000"],["2024-07-24T22:06:30.010000"],["2024-07-24T22:06:31.010000"],["2024-07-24T22:06:32.010000"],["2024-07-24T22:06:33.010000"],["2024-07-24T22:06:34.010000"],["2024-07-24T22:06:35.010000"],["2024-07-24T22:06:36.010000"],["2024-07-24T22:06:37.010000"],["2024-07-24T22:06:38.010000"],["2024-07-24T22:06:39.010000"],["2024-07-24T22:06:40.010000"],["2024-07-24T22:06:41.010000"],["2024-07-24T22:06:42.010000"],["2024-07-24T22:06:43.010000"],["2024-07-24T22:06:44.010000"],["2024-07-24T22:06:45.010000"],["2024-07-24T22:06:46.010000"],["2024-07-24T22:06:47.010000"],["2024-07-24T22:06:48.010000"],["2024-07-24T22:06:49.010000"],["2024-07-24T22:06:50.010000"],["2024-07-24T22:06:51.010000"],["2024-07-24T22:06:52.010000"],["2024-07-24T22:06:53.010000"],["2024-07-24T22:06:54.010000"],["2024-07-24T22:06:55.010000"],["2024-07-24T22:06:56.010000"],["2024-07-24T22:06:57.010000"],["2024-07-24T22:06:58.010000"],["2024-07-24T22:06:59.010000"],["2024-07-24T22:07:00.010000"],["2024-07-24T22:07:01.010000"],["2024-07-24T22:07:02.010000"],["2024-07-24T22:07:03.010000"],["2024-07-24T22:07:04.010000"],["2024-07-24T22:07:05.010000"],["2024-07-24T22:07:06.010000"],["2024-07-24T22:07:07.010000"],["2024-07-24T22:07:08.010000"],["2024-07-24T22:07:09.010000"],["2024-07-24T22:07:10.010000"],["2024-07-24T22:07:11.010000"],["2024-07-24T22:07:12.010000"],["2024-07-24T22:07:13.010000"],["2024-07-24T22:07:14.010000"],["2024-07-24T22:07:15.010000"],["2024-07-24T22:07:16.010000"],["2024-07-24T22:07:17.010000"],["2024-07-24T22:07:18.010000"],["2024-07-24T22:07:19.010000"],["2024-07-24T22:07:20.010000"],["2024-07-24T22:07:21.010000"],["2024-07-24T22:07:22.010000"],["2024-07-24T22:07:23.010000"],["2024-07-24T22:07:24.010000"],["2024-07-24T22:07:25.010000"],["2024-07-24T22:07:26.010000"],["2024-07-24T22:07:27.010000"],["2024-07-24T22:07:28.010000"],["2024-07-24T22:07:29.010000"],["2024-07-24T22:07:30.010000"],["2024-07-24T22:07:31.010000"],["2024-07-24T22:07:32.010000"],["2024-07-24T22:07:33.010000"],["2024-07-24T22:07:34.010000"],["2024-07-24T22:07:35.010000"],["2024-07-24T22:07:36.010000"],["2024-07-24T22:07:37.010000"],["2024-07-24T22:07:38.010000"],["2024-07-24T22:07:39.010000"],["2024-07-24T22:07:40.010000"],["2024-07-24T22:07:41.010000"],["2024-07-24T22:07:42.010000"],["2024-07-24T22:07:43.010000"],["2024-07-24T22:07:44.010000"],["2024-07-24T22:07:45.010000"],["2024-07-24T22:07:46.010000"],["2024-07-24T22:07:47.010000"],["2024-07-24T22:07:48.010000"],["2024-07-24T22:07:49.010000"],["2024-07-24T22:07:50.010000"],["2024-07-24T22:07:51.010000"],["2024-07-24T22:07:52.010000"],["2024-07-24T22:07:53.010000"],["2024-07-24T22:07:54.010000"],["2024-07-24T22:07:55.010000"],["2024-07-24T22:07:56.010000"],["2024-07-24T22:07:57.010000"],["2024-07-24T22:07:58.010000"],["2024-07-24T22:07:59.010000"],["2024-07-24T22:08:00.010000"],["2024-07-24T22:08:01.010000"],["2024-07-24T22:08:02.010000"],["2024-07-24T22:08:03.010000"],["2024-07-24T22:08:04.010000"],["2024-07-24T22:08:05.010000"],["2024-07-24T22:08:06.010000"],["2024-07-24T22:08:07.010000"],["2024-07-24T22:08:08.010000"],["2024-07-24T22:08:09.010000"],["2024-07-24T22:08:10.010000"],["2024-07-24T22:08:11.010000"],["2024-07-24T22:08:12.010000"],["2024-07-24T22:08:13.010000"],["2024-07-24T22:08:14.010000"],["2024-07-24T22:08:15.010000"],["2024-07-24T22:08:16.010000"],["2024-07-24T22:08:17.010000"],["2024-07-24T22:08:18.010000"],["2024-07-24T22:08:19.010000"],["2024-07-24T22:08:20.010000"],["2024-07-24T22:08:21.010000"],["2024-07-24T22:08:22.010000"],["2024-07-24T22:08:23.010000"],["2024-07-24T22:08:24.010000"],["2024-07-24T22:08:25.010000"],["2024-07-24T22:08:26.010000"],["2024-07-24T22:08:27.010000"],["2024-07-24T22:08:28.010000"],["2024-07-24T22:08:29.010000"],["2024-07-24T22:08:30.010000"],["2024-07-24T22:08:31.010000"],["2024-07-24T22:08:32.010000"],["2024-07-24T22:08:33.010000"],["2024-07-24T22:08:34.010000"],["2024-07-24T22:08:35.010000"],["2024-07-24T22:08:36.010000"],["2024-07-24T22:08:37.010000"],["2024-07-24T22:08:38.010000"],["2024-07-24T22:08:39.010000"],["2024-07-24T22:08:40.010000"],["2024-07-24T22:08:41.010000"],["2024-07-24T22:08:42.010000"],["2024-07-24T22:08:43.010000"],["2024-07-24T22:08:44.010000"],["2024-07-24T22:08:45.010000"],["2024-07-24T22:08:46.010000"],["2024-07-24T22:08:47.010000"],["2024-07-24T22:08:48.010000"],["2024-07-24T22:08:49.010000"],["2024-07-24T22:08:50.010000"],["2024-07-24T22:08:51.010000"],["2024-07-24T22:08:52.010000"],["2024-07-24T22:08:53.010000"],["2024-07-24T22:08:54.010000"],["2024-07-24T22:08:55.010000"],["2024-07-24T22:08:56.010000"],["2024-07-24T22:08:57.010000"],["2024-07-24T22:08:58.010000"],["2024-07-24T22:08:59.010000"],["2024-07-24T22:09:00.010000"],["2024-07-24T22:09:01.010000"],["2024-07-24T22:09:02.010000"],["2024-07-24T22:09:03.010000"],["2024-07-24T22:09:04.010000"],["2024-07-24T22:09:05.010000"],["2024-07-24T22:09:06.010000"],["2024-07-24T22:09:07.010000"],["2024-07-24T22:09:08.010000"],["2024-07-24T22:09:09.010000"],["2024-07-24T22:09:10.010000"],["2024-07-24T22:09:11.010000"],["2024-07-24T22:09:12.010000"],["2024-07-24T22:09:13.010000"],["2024-07-24T22:09:14.010000"],["2024-07-24T22:09:15.010000"],["2024-07-24T22:09:16.010000"],["2024-07-24T22:09:17.010000"],["2024-07-24T22:09:18.010000"],["2024-07-24T22:09:19.010000"],["2024-07-24T22:09:20.010000"],["2024-07-24T22:09:21.010000"],["2024-07-24T22:09:22.010000"],["2024-07-24T22:09:23.010000"],["2024-07-24T22:09:24.010000"],["2024-07-24T22:09:25.010000"],["2024-07-24T22:09:26.010000"],["2024-07-24T22:09:27.010000"],["2024-07-24T22:09:28.010000"],["2024-07-24T22:09:29.010000"],["2024-07-24T22:09:30.010000"],["2024-07-24T22:09:31.010000"],["2024-07-24T22:09:32.010000"],["2024-07-24T22:09:33.010000"],["2024-07-24T22:09:34.010000"],["2024-07-24T22:09:35.010000"],["2024-07-24T22:09:36.010000"],["2024-07-24T22:09:37.010000"],["2024-07-24T22:09:38.010000"],["2024-07-24T22:09:39.010000"],["2024-07-24T22:09:40.010000"],["2024-07-24T22:09:41.010000"],["2024-07-24T22:09:42.010000"],["2024-07-24T22:09:43.010000"],["2024-07-24T22:09:44.010000"],["2024-07-24T22:09:45.010000"],["2024-07-24T22:09:46.010000"],["2024-07-24T22:09:47.010000"],["2024-07-24T22:09:48.010000"],["2024-07-24T22:09:49.010000"],["2024-07-24T22:09:50.010000"],["2024-07-24T22:09:51.010000"],["2024-07-24T22:09:52.010000"],["2024-07-24T22:09:53.010000"],["2024-07-24T22:09:54.010000"],["2024-07-24T22:09:55.010000"],["2024-07-24T22:09:56.010000"],["2024-07-24T22:09:57.010000"],["2024-07-24T22:09:58.010000"],["2024-07-24T22:09:59.010000"],["2024-07-24T22:10:00.010000"],["2024-07-24T22:10:01.010000"],["2024-07-24T22:10:02.010000"],["2024-07-24T22:10:03.010000"],["2024-07-24T22:10:04.010000"],["2024-07-24T22:10:05.010000"],["2024-07-24T22:10:06.010000"],["2024-07-24T22:10:07.010000"],["2024-07-24T22:10:08.010000"],["2024-07-24T22:10:09.010000"],["2024-07-24T22:10:10.010000"],["2024-07-24T22:10:11.010000"],["2024-07-24T22:10:12.010000"],["2024-07-24T22:10:13.010000"],["2024-07-24T22:10:14.010000"],["2024-07-24T22:10:15.010000"],["2024-07-24T22:10:16.010000"],["2024-07-24T22:10:17.010000"],["2024-07-24T22:10:18.010000"],["2024-07-24T22:10:19.010000"],["2024-07-24T22:10:20.010000"],["2024-07-24T22:10:21.010000"],["2024-07-24T22:10:22.010000"],["2024-07-24T22:10:23.010000"],["2024-07-24T22:10:24.010000"],["2024-07-24T22:10:25.010000"],["2024-07-24T22:10:26.010000"],["2024-07-24T22:10:27.010000"],["2024-07-24T22:10:28.010000"],["2024-07-24T22:10:29.010000"],["2024-07-24T22:10:30.010000"],["2024-07-24T22:10:31.010000"],["2024-07-24T22:10:32.010000"],["2024-07-24T22:10:33.010000"],["2024-07-24T22:10:34.010000"],["2024-07-24T22:10:35.010000"],["2024-07-24T22:10:36.010000"],["2024-07-24T22:10:37.010000"],["2024-07-24T22:10:38.010000"],["2024-07-24T22:10:39.010000"],["2024-07-24T22:10:40.010000"],["2024-07-24T22:10:41.010000"],["2024-07-24T22:10:42.010000"],["2024-07-24T22:10:43.010000"],["2024-07-24T22:10:44.010000"],["2024-07-24T22:10:45.010000"],["2024-07-24T22:10:46.010000"],["2024-07-24T22:10:47.010000"],["2024-07-24T22:10:48.010000"],["2024-07-24T22:10:49.010000"],["2024-07-24T22:10:50.010000"],["2024-07-24T22:10:51.010000"],["2024-07-24T22:10:52.010000"],["2024-07-24T22:10:53.010000"],["2024-07-24T22:10:54.010000"],["2024-07-24T22:10:55.010000"],["2024-07-24T22:10:56.010000"],["2024-07-24T22:10:57.010000"],["2024-07-24T22:10:58.010000"],["2024-07-24T22:10:59.010000"],["2024-07-24T22:11:00.010000"],["2024-07-24T22:11:01.010000"],["2024-07-24T22:11:02.010000"],["2024-07-24T22:11:03.010000"],["2024-07-24T22:11:04.010000"],["2024-07-24T22:11:05.010000"],["2024-07-24T22:11:06.010000"],["2024-07-24T22:11:07.010000"],["2024-07-24T22:11:08.010000"],["2024-07-24T22:11:09.010000"],["2024-07-24T22:11:10.010000"],["2024-07-24T22:11:11.010000"],["2024-07-24T22:11:12.010000"],["2024-07-24T22:11:13.010000"],["2024-07-24T22:11:14.010000"],["2024-07-24T22:11:15.010000"],["2024-07-24T22:11:16.010000"],["2024-07-24T22:11:17.010000"],["2024-07-24T22:11:18.010000"],["2024-07-24T22:11:19.010000"],["2024-07-24T22:11:20.010000"],["2024-07-24T22:11:21.010000"],["2024-07-24T22:11:22.010000"],["2024-07-24T22:11:23.010000"],["2024-07-24T22:11:24.010000"],["2024-07-24T22:11:25.010000"],["2024-07-24T22:11:26.010000"],["2024-07-24T22:11:27.010000"],["2024-07-24T22:11:28.010000"],["2024-07-24T22:11:29.010000"],["2024-07-24T22:11:30.010000"],["2024-07-24T22:11:31.010000"],["2024-07-24T22:11:32.010000"],["2024-07-24T22:11:33.010000"],["2024-07-24T22:11:34.010000"],["2024-07-24T22:11:35.010000"],["2024-07-24T22:11:36.010000"],["2024-07-24T22:11:37.010000"],["2024-07-24T22:11:38.010000"],["2024-07-24T22:11:39.010000"],["2024-07-24T22:11:40.010000"],["2024-07-24T22:11:41.010000"],["2024-07-24T22:11:42.010000"],["2024-07-24T22:11:43.010000"],["2024-07-24T22:11:44.010000"],["2024-07-24T22:11:45.010000"],["2024-07-24T22:11:46.010000"],["2024-07-24T22:11:47.010000"],["2024-07-24T22:11:48.010000"],["2024-07-24T22:11:49.010000"],["2024-07-24T22:11:50.010000"],["2024-07-24T22:11:51.010000"],["2024-07-24T22:11:52.010000"],["2024-07-24T22:11:53.010000"],["2024-07-24T22:11:54.010000"],["2024-07-24T22:11:55.010000"],["2024-07-24T22:11:56.010000"],["2024-07-24T22:11:57.010000"],["2024-07-24T22:11:58.010000"],["2024-07-24T22:11:59.010000"],["2024-07-24T22:12:00.010000"],["2024-07-24T22:12:01.010000"],["2024-07-24T22:12:02.010000"],["2024-07-24T22:12:03.010000"],["2024-07-24T22:12:04.010000"],["2024-07-24T22:12:05.010000"],["2024-07-24T22:12:06.010000"],["2024-07-24T22:12:07.010000"],["2024-07-24T22:12:08.010000"],["2024-07-24T22:12:09.010000"],["2024-07-24T22:12:10.010000"],["2024-07-24T22:12:11.010000"],["2024-07-24T22:12:12.010000"],["2024-07-24T22:12:13.010000"],["2024-07-24T22:12:14.010000"],["2024-07-24T22:12:15.010000"],["2024-07-24T22:12:16.010000"],["2024-07-24T22:12:17.010000"],["2024-07-24T22:12:18.010000"],["2024-07-24T22:12:19.010000"],["2024-07-24T22:12:20.010000"],["2024-07-24T22:12:21.010000"],["2024-07-24T22:12:22.010000"],["2024-07-24T22:12:23.010000"],["2024-07-24T22:12:24.010000"],["2024-07-24T22:12:25.010000"],["2024-07-24T22:12:26.010000"],["2024-07-24T22:12:27.010000"],["2024-07-24T22:12:28.010000"],["2024-07-24T22:12:29.010000"],["2024-07-24T22:12:30.010000"],["2024-07-24T22:12:31.010000"],["2024-07-24T22:12:32.010000"],["2024-07-24T22:12:33.010000"],["2024-07-24T22:12:34.010000"],["2024-07-24T22:12:35.010000"],["2024-07-24T22:12:36.010000"],["2024-07-24T22:12:37.010000"],["2024-07-24T22:12:38.010000"],["2024-07-24T22:12:39.010000"],["2024-07-24T22:12:40.010000"],["2024-07-24T22:12:41.010000"],["2024-07-24T22:12:42.010000"],["2024-07-24T22:12:43.010000"],["2024-07-24T22:12:44.010000"],["2024-07-24T22:12:45.010000"],["2024-07-24T22:12:46.010000"],["2024-07-24T22:12:47.010000"],["2024-07-24T22:12:48.010000"],["2024-07-24T22:12:49.010000"],["2024-07-24T22:12:50.010000"],["2024-07-24T22:12:51.010000"],["2024-07-24T22:12:52.010000"],["2024-07-24T22:12:53.010000"],["2024-07-24T22:12:54.010000"],["2024-07-24T22:12:55.010000"],["2024-07-24T22:12:56.010000"],["2024-07-24T22:12:57.010000"],["2024-07-24T22:12:58.010000"],["2024-07-24T22:12:59.010000"],["2024-07-24T22:13:00.010000"],["2024-07-24T22:13:01.010000"],["2024-07-24T22:13:02.010000"],["2024-07-24T22:13:03.010000"],["2024-07-24T22:13:04.010000"],["2024-07-24T22:13:05.010000"],["2024-07-24T22:13:06.010000"],["2024-07-24T22:13:07.010000"],["2024-07-24T22:13:08.010000"],["2024-07-24T22:13:09.010000"],["2024-07-24T22:13:10.010000"],["2024-07-24T22:13:11.010000"],["2024-07-24T22:13:12.010000"],["2024-07-24T22:13:13.010000"],["2024-07-24T22:13:14.010000"],["2024-07-24T22:13:15.010000"],["2024-07-24T22:13:16.010000"],["2024-07-24T22:13:17.010000"],["2024-07-24T22:13:18.010000"],["2024-07-24T22:13:19.010000"],["2024-07-24T22:13:20.010000"],["2024-07-24T22:13:21.010000"],["2024-07-24T22:13:22.010000"],["2024-07-24T22:13:23.010000"],["2024-07-24T22:13:24.010000"],["2024-07-24T22:13:25.010000"],["2024-07-24T22:13:26.010000"],["2024-07-24T22:13:27.010000"],["2024-07-24T22:13:28.010000"],["2024-07-24T22:13:29.010000"],["2024-07-24T22:13:30.010000"],["2024-07-24T22:13:31.010000"],["2024-07-24T22:13:32.010000"],["2024-07-24T22:13:33.010000"],["2024-07-24T22:13:34.010000"],["2024-07-24T22:13:35.010000"],["2024-07-24T22:13:36.010000"],["2024-07-24T22:13:37.010000"],["2024-07-24T22:13:38.010000"],["2024-07-24T22:13:39.010000"],["2024-07-24T22:13:40.010000"],["2024-07-24T22:13:41.010000"],["2024-07-24T22:13:42.010000"],["2024-07-24T22:13:43.010000"],["2024-07-24T22:13:44.010000"],["2024-07-24T22:13:45.010000"],["2024-07-24T22:13:46.010000"],["2024-07-24T22:13:47.010000"],["2024-07-24T22:13:48.010000"],["2024-07-24T22:13:49.010000"],["2024-07-24T22:13:50.010000"],["2024-07-24T22:13:51.010000"],["2024-07-24T22:13:52.010000"],["2024-07-24T22:13:53.010000"],["2024-07-24T22:13:54.010000"],["2024-07-24T22:13:55.010000"],["2024-07-24T22:13:56.010000"],["2024-07-24T22:13:57.010000"],["2024-07-24T22:13:58.010000"],["2024-07-24T22:13:59.010000"],["2024-07-24T22:14:00.010000"],["2024-07-24T22:14:01.010000"],["2024-07-24T22:14:02.010000"],["2024-07-24T22:14:03.010000"],["2024-07-24T22:14:04.010000"],["2024-07-24T22:14:05.010000"],["2024-07-24T22:14:06.010000"],["2024-07-24T22:14:07.010000"],["2024-07-24T22:14:08.010000"],["2024-07-24T22:14:09.010000"],["2024-07-24T22:14:10.010000"],["2024-07-24T22:14:11.010000"],["2024-07-24T22:14:12.010000"],["2024-07-24T22:14:13.010000"],["2024-07-24T22:14:14.010000"],["2024-07-24T22:14:15.010000"],["2024-07-24T22:14:16.010000"],["2024-07-24T22:14:17.010000"],["2024-07-24T22:14:18.010000"],["2024-07-24T22:14:19.010000"],["2024-07-24T22:14:20.010000"],["2024-07-24T22:14:21.010000"],["2024-07-24T22:14:22.010000"],["2024-07-24T22:14:23.010000"],["2024-07-24T22:14:24.010000"],["2024-07-24T22:14:25.010000"],["2024-07-24T22:14:26.010000"],["2024-07-24T22:14:27.010000"],["2024-07-24T22:14:28.010000"],["2024-07-24T22:14:29.010000"],["2024-07-24T22:14:30.010000"],["2024-07-24T22:14:31.010000"],["2024-07-24T22:14:32.010000"],["2024-07-24T22:14:33.010000"],["2024-07-24T22:14:34.010000"],["2024-07-24T22:14:35.010000"],["2024-07-24T22:14:36.010000"],["2024-07-24T22:14:37.010000"],["2024-07-24T22:14:38.010000"],["2024-07-24T22:14:39.010000"],["2024-07-24T22:14:40.010000"],["2024-07-24T22:14:41.010000"],["2024-07-24T22:14:42.010000"],["2024-07-24T22:14:43.010000"],["2024-07-24T22:14:44.010000"],["2024-07-24T22:14:45.010000"],["2024-07-24T22:14:46.010000"],["2024-07-24T22:14:47.010000"],["2024-07-24T22:14:48.010000"],["2024-07-24T22:14:49.010000"],["2024-07-24T22:14:50.010000"],["2024-07-24T22:14:51.010000"],["2024-07-24T22:14:52.010000"],["2024-07-24T22:14:53.010000"],["2024-07-24T22:14:54.010000"],["2024-07-24T22:14:55.010000"],["2024-07-24T22:14:56.010000"],["2024-07-24T22:14:57.010000"],["2024-07-24T22:14:58.010000"],["2024-07-24T22:14:59.010000"],["2024-07-24T22:15:00.010000"],["2024-07-24T22:15:01.010000"],["2024-07-24T22:15:02.010000"],["2024-07-24T22:15:03.010000"],["2024-07-24T22:15:04.010000"],["2024-07-24T22:15:05.010000"],["2024-07-24T22:15:06.010000"],["2024-07-24T22:15:07.010000"],["2024-07-24T22:15:08.010000"],["2024-07-24T22:15:09.010000"],["2024-07-24T22:15:10.010000"],["2024-07-24T22:15:11.010000"],["2024-07-24T22:15:12.010000"],["2024-07-24T22:15:13.010000"],["2024-07-24T22:15:14.010000"],["2024-07-24T22:15:15.010000"],["2024-07-24T22:15:16.010000"],["2024-07-24T22:15:17.010000"],["2024-07-24T22:15:18.010000"],["2024-07-24T22:15:19.010000"],["2024-07-24T22:15:20.010000"],["2024-07-24T22:15:21.010000"],["2024-07-24T22:15:22.010000"],["2024-07-24T22:15:23.010000"],["2024-07-24T22:15:24.010000"],["2024-07-24T22:15:25.010000"],["2024-07-24T22:15:26.010000"],["2024-07-24T22:15:27.010000"],["2024-07-24T22:15:28.010000"],["2024-07-24T22:15:29.010000"],["2024-07-24T22:15:30.010000"],["2024-07-24T22:15:31.010000"],["2024-07-24T22:15:32.010000"],["2024-07-24T22:15:33.010000"],["2024-07-24T22:15:34.010000"],["2024-07-24T22:15:35.010000"],["2024-07-24T22:15:36.010000"],["2024-07-24T22:15:37.010000"],["2024-07-24T22:15:38.010000"],["2024-07-24T22:15:39.010000"],["2024-07-24T22:15:40.010000"],["2024-07-24T22:15:41.010000"],["2024-07-24T22:15:42.010000"],["2024-07-24T22:15:43.010000"],["2024-07-24T22:15:44.010000"],["2024-07-24T22:15:45.010000"],["2024-07-24T22:15:46.010000"],["2024-07-24T22:15:47.010000"],["2024-07-24T22:15:48.010000"],["2024-07-24T22:15:49.010000"],["2024-07-24T22:15:50.010000"],["2024-07-24T22:15:51.010000"],["2024-07-24T22:15:52.010000"],["2024-07-24T22:15:53.010000"],["2024-07-24T22:15:54.010000"],["2024-07-24T22:15:55.010000"],["2024-07-24T22:15:56.010000"],["2024-07-24T22:15:57.010000"],["2024-07-24T22:15:58.010000"],["2024-07-24T22:15:59.010000"],["2024-07-24T22:16:00.010000"],["2024-07-24T22:16:01.010000"],["2024-07-24T22:16:02.010000"],["2024-07-24T22:16:03.010000"],["2024-07-24T22:16:04.010000"],["2024-07-24T22:16:05.010000"],["2024-07-24T22:16:06.010000"],["2024-07-24T22:16:07.010000"],["2024-07-24T22:16:08.010000"],["2024-07-24T22:16:09.010000"],["2024-07-24T22:16:10.010000"],["2024-07-24T22:16:11.010000"],["2024-07-24T22:16:12.010000"],["2024-07-24T22:16:13.010000"],["2024-07-24T22:16:14.010000"],["2024-07-24T22:16:15.010000"],["2024-07-24T22:16:16.010000"],["2024-07-24T22:16:17.010000"],["2024-07-24T22:16:18.010000"],["2024-07-24T22:16:19.010000"],["2024-07-24T22:16:20.010000"],["2024-07-24T22:16:21.010000"],["2024-07-24T22:16:22.010000"],["2024-07-24T22:16:23.010000"],["2024-07-24T22:16:24.010000"],["2024-07-24T22:16:25.010000"],["2024-07-24T22:16:26.010000"],["2024-07-24T22:16:27.010000"],["2024-07-24T22:16:28.010000"],["2024-07-24T22:16:29.010000"],["2024-07-24T22:16:30.010000"],["2024-07-24T22:16:31.010000"],["2024-07-24T22:16:32.010000"],["2024-07-24T22:16:33.010000"],["2024-07-24T22:16:34.010000"],["2024-07-24T22:16:35.010000"],["2024-07-24T22:16:36.010000"],["2024-07-24T22:16:37.010000"],["2024-07-24T22:16:38.010000"],["2024-07-24T22:16:39.010000"],["2024-07-24T22:16:40.010000"],["2024-07-24T22:16:41.010000"],["2024-07-24T22:16:42.010000"],["2024-07-24T22:16:43.010000"],["2024-07-24T22:16:44.010000"],["2024-07-24T22:16:45.010000"],["2024-07-24T22:16:46.010000"],["2024-07-24T22:16:47.010000"],["2024-07-24T22:16:48.010000"],["2024-07-24T22:16:49.010000"],["2024-07-24T22:16:50.010000"],["2024-07-24T22:16:51.010000"],["2024-07-24T22:16:52.010000"],["2024-07-24T22:16:53.010000"],["2024-07-24T22:16:54.010000"],["2024-07-24T22:16:55.010000"],["2024-07-24T22:16:56.010000"],["2024-07-24T22:16:57.010000"],["2024-07-24T22:16:58.010000"],["2024-07-24T22:16:59.010000"],["2024-07-24T22:17:00.010000"],["2024-07-24T22:17:01.010000"],["2024-07-24T22:17:02.010000"],["2024-07-24T22:17:03.010000"],["2024-07-24T22:17:04.010000"],["2024-07-24T22:17:05.010000"],["2024-07-24T22:17:06.010000"],["2024-07-24T22:17:07.010000"],["2024-07-24T22:17:08.010000"],["2024-07-24T22:17:09.010000"],["2024-07-24T22:17:10.010000"],["2024-07-24T22:17:11.010000"],["2024-07-24T22:17:12.010000"],["2024-07-24T22:17:13.010000"],["2024-07-24T22:17:14.010000"],["2024-07-24T22:17:15.010000"],["2024-07-24T22:17:16.010000"],["2024-07-24T22:17:17.010000"],["2024-07-24T22:17:18.010000"],["2024-07-24T22:17:19.010000"],["2024-07-24T22:17:20.010000"],["2024-07-24T22:17:21.010000"],["2024-07-24T22:17:22.010000"],["2024-07-24T22:17:23.010000"],["2024-07-24T22:17:24.010000"],["2024-07-24T22:17:25.010000"],["2024-07-24T22:17:26.010000"],["2024-07-24T22:17:27.010000"],["2024-07-24T22:17:28.010000"],["2024-07-24T22:17:29.010000"],["2024-07-24T22:17:30.010000"],["2024-07-24T22:17:31.010000"],["2024-07-24T22:17:32.010000"],["2024-07-24T22:17:33.010000"],["2024-07-24T22:17:34.010000"],["2024-07-24T22:17:35.010000"],["2024-07-24T22:17:36.010000"],["2024-07-24T22:17:37.010000"],["2024-07-24T22:17:38.010000"],["2024-07-24T22:17:39.010000"],["2024-07-24T22:17:40.010000"],["2024-07-24T22:17:41.010000"],["2024-07-24T22:17:42.010000"],["2024-07-24T22:17:43.010000"],["2024-07-24T22:17:44.010000"],["2024-07-24T22:17:45.010000"],["2024-07-24T22:17:46.010000"],["2024-07-24T22:17:47.010000"],["2024-07-24T22:17:48.010000"],["2024-07-24T22:17:49.010000"],["2024-07-24T22:17:50.010000"],["2024-07-24T22:17:51.010000"],["2024-07-24T22:17:52.010000"],["2024-07-24T22:17:53.010000"],["2024-07-24T22:17:54.010000"],["2024-07-24T22:17:55.010000"],["2024-07-24T22:17:56.010000"],["2024-07-24T22:17:57.010000"],["2024-07-24T22:17:58.010000"],["2024-07-24T22:17:59.010000"],["2024-07-24T22:18:00.010000"],["2024-07-24T22:18:01.010000"],["2024-07-24T22:18:02.010000"],["2024-07-24T22:18:03.010000"],["2024-07-24T22:18:04.010000"],["2024-07-24T22:18:05.010000"],["2024-07-24T22:18:06.010000"],["2024-07-24T22:18:07.010000"],["2024-07-24T22:18:08.010000"],["2024-07-24T22:18:09.010000"],["2024-07-24T22:18:10.010000"],["2024-07-24T22:18:11.010000"],["2024-07-24T22:18:12.010000"],["2024-07-24T22:18:13.010000"],["2024-07-24T22:18:14.010000"],["2024-07-24T22:18:15.010000"],["2024-07-24T22:18:16.010000"],["2024-07-24T22:18:17.010000"],["2024-07-24T22:18:18.010000"],["2024-07-24T22:18:19.010000"],["2024-07-24T22:18:20.010000"],["2024-07-24T22:18:21.010000"],["2024-07-24T22:18:22.010000"],["2024-07-24T22:18:23.010000"],["2024-07-24T22:18:24.010000"],["2024-07-24T22:18:25.010000"],["2024-07-24T22:18:26.010000"],["2024-07-24T22:18:27.010000"],["2024-07-24T22:18:28.010000"],["2024-07-24T22:18:29.010000"],["2024-07-24T22:18:30.010000"],["2024-07-24T22:18:31.010000"],["2024-07-24T22:18:32.010000"],["2024-07-24T22:18:33.010000"],["2024-07-24T22:18:34.010000"],["2024-07-24T22:18:35.010000"],["2024-07-24T22:18:36.010000"],["2024-07-24T22:18:37.010000"],["2024-07-24T22:18:38.010000"],["2024-07-24T22:18:39.010000"],["2024-07-24T22:18:40.010000"],["2024-07-24T22:18:41.010000"],["2024-07-24T22:18:42.010000"],["2024-07-24T22:18:43.010000"],["2024-07-24T22:18:44.010000"],["2024-07-24T22:18:45.010000"],["2024-07-24T22:18:46.010000"],["2024-07-24T22:18:47.010000"],["2024-07-24T22:18:48.010000"],["2024-07-24T22:18:49.010000"],["2024-07-24T22:18:50.010000"],["2024-07-24T22:18:51.010000"],["2024-07-24T22:18:52.010000"],["2024-07-24T22:18:53.010000"],["2024-07-24T22:18:54.010000"],["2024-07-24T22:18:55.010000"],["2024-07-24T22:18:56.010000"],["2024-07-24T22:18:57.010000"],["2024-07-24T22:18:58.010000"],["2024-07-24T22:18:59.010000"],["2024-07-24T22:19:00.010000"],["2024-07-24T22:19:01.010000"],["2024-07-24T22:19:02.010000"],["2024-07-24T22:19:03.010000"],["2024-07-24T22:19:04.010000"],["2024-07-24T22:19:05.010000"],["2024-07-24T22:19:06.010000"],["2024-07-24T22:19:07.010000"],["2024-07-24T22:19:08.010000"],["2024-07-24T22:19:09.010000"],["2024-07-24T22:19:10.010000"],["2024-07-24T22:19:11.010000"],["2024-07-24T22:19:12.010000"],["2024-07-24T22:19:13.010000"],["2024-07-24T22:19:14.010000"],["2024-07-24T22:19:15.010000"],["2024-07-24T22:19:16.010000"],["2024-07-24T22:19:17.010000"],["2024-07-24T22:19:18.010000"],["2024-07-24T22:19:19.010000"],["2024-07-24T22:19:20.010000"],["2024-07-24T22:19:21.010000"],["2024-07-24T22:19:22.010000"],["2024-07-24T22:19:23.010000"],["2024-07-24T22:19:24.010000"],["2024-07-24T22:19:25.010000"],["2024-07-24T22:19:26.010000"],["2024-07-24T22:19:27.010000"],["2024-07-24T22:19:28.010000"],["2024-07-24T22:19:29.010000"],["2024-07-24T22:19:30.010000"],["2024-07-24T22:19:31.010000"],["2024-07-24T22:19:32.010000"],["2024-07-24T22:19:33.010000"],["2024-07-24T22:19:34.010000"],["2024-07-24T22:19:35.010000"],["2024-07-24T22:19:36.010000"],["2024-07-24T22:19:37.010000"],["2024-07-24T22:19:38.010000"],["2024-07-24T22:19:39.010000"],["2024-07-24T22:19:40.010000"],["2024-07-24T22:19:41.010000"],["2024-07-24T22:19:42.010000"],["2024-07-24T22:19:43.010000"],["2024-07-24T22:19:44.010000"],["2024-07-24T22:19:45.010000"],["2024-07-24T22:19:46.010000"],["2024-07-24T22:19:47.010000"],["2024-07-24T22:19:48.010000"],["2024-07-24T22:19:49.010000"],["2024-07-24T22:19:50.010000"],["2024-07-24T22:19:51.010000"],["2024-07-24T22:19:52.010000"],["2024-07-24T22:19:53.010000"],["2024-07-24T22:19:54.010000"],["2024-07-24T22:19:55.010000"],["2024-07-24T22:19:56.010000"],["2024-07-24T22:19:57.010000"],["2024-07-24T22:19:58.010000"],["2024-07-24T22:19:59.010000"],["2024-07-24T22:20:00.010000"],["2024-07-24T22:20:01.010000"],["2024-07-24T22:20:02.010000"],["2024-07-24T22:20:03.010000"],["2024-07-24T22:20:04.010000"],["2024-07-24T22:20:05.010000"],["2024-07-24T22:20:06.010000"],["2024-07-24T22:20:07.010000"],["2024-07-24T22:20:08.010000"],["2024-07-24T22:20:09.010000"],["2024-07-24T22:20:10.010000"],["2024-07-24T22:20:11.010000"],["2024-07-24T22:20:12.010000"],["2024-07-24T22:20:13.010000"],["2024-07-24T22:20:14.010000"],["2024-07-24T22:20:15.010000"],["2024-07-24T22:20:16.010000"],["2024-07-24T22:20:17.010000"],["2024-07-24T22:20:18.010000"],["2024-07-24T22:20:19.010000"],["2024-07-24T22:20:20.010000"],["2024-07-24T22:20:21.010000"],["2024-07-24T22:20:22.010000"],["2024-07-24T22:20:23.010000"],["2024-07-24T22:20:24.010000"],["2024-07-24T22:20:25.010000"],["2024-07-24T22:20:26.010000"],["2024-07-24T22:20:27.010000"],["2024-07-24T22:20:28.010000"],["2024-07-24T22:20:29.010000"],["2024-07-24T22:20:30.010000"],["2024-07-24T22:20:31.010000"],["2024-07-24T22:20:32.010000"],["2024-07-24T22:20:33.010000"],["2024-07-24T22:20:34.010000"],["2024-07-24T22:20:35.010000"],["2024-07-24T22:20:36.010000"],["2024-07-24T22:20:37.010000"],["2024-07-24T22:20:38.010000"],["2024-07-24T22:20:39.010000"],["2024-07-24T22:20:40.010000"],["2024-07-24T22:20:41.010000"],["2024-07-24T22:20:42.010000"],["2024-07-24T22:20:43.010000"],["2024-07-24T22:20:44.010000"],["2024-07-24T22:20:45.010000"],["2024-07-24T22:20:46.010000"],["2024-07-24T22:20:47.010000"],["2024-07-24T22:20:48.010000"],["2024-07-24T22:20:49.010000"],["2024-07-24T22:20:50.010000"],["2024-07-24T22:20:51.010000"],["2024-07-24T22:20:52.010000"],["2024-07-24T22:20:53.010000"],["2024-07-24T22:20:54.010000"],["2024-07-24T22:20:55.010000"],["2024-07-24T22:20:56.010000"],["2024-07-24T22:20:57.010000"],["2024-07-24T22:20:58.010000"],["2024-07-24T22:20:59.010000"],["2024-07-24T22:21:00.010000"],["2024-07-24T22:21:01.010000"],["2024-07-24T22:21:02.010000"],["2024-07-24T22:21:03.010000"],["2024-07-24T22:21:04.010000"],["2024-07-24T22:21:05.010000"],["2024-07-24T22:21:06.010000"],["2024-07-24T22:21:07.010000"],["2024-07-24T22:21:08.010000"],["2024-07-24T22:21:09.010000"],["2024-07-24T22:21:10.010000"],["2024-07-24T22:21:11.010000"],["2024-07-24T22:21:12.010000"],["2024-07-24T22:21:13.010000"],["2024-07-24T22:21:14.010000"],["2024-07-24T22:21:15.010000"],["2024-07-24T22:21:16.010000"],["2024-07-24T22:21:17.010000"],["2024-07-24T22:21:18.010000"],["2024-07-24T22:21:19.010000"],["2024-07-24T22:21:20.010000"],["2024-07-24T22:21:21.010000"],["2024-07-24T22:21:22.010000"],["2024-07-24T22:21:23.010000"],["2024-07-24T22:21:24.010000"],["2024-07-24T22:21:25.010000"],["2024-07-24T22:21:26.010000"],["2024-07-24T22:21:27.010000"],["2024-07-24T22:21:28.010000"],["2024-07-24T22:21:29.010000"],["2024-07-24T22:21:30.010000"],["2024-07-24T22:21:31.010000"],["2024-07-24T22:21:32.010000"],["2024-07-24T22:21:33.010000"],["2024-07-24T22:21:34.010000"],["2024-07-24T22:21:35.010000"],["2024-07-24T22:21:36.010000"],["2024-07-24T22:21:37.010000"],["2024-07-24T22:21:38.010000"],["2024-07-24T22:21:39.010000"],["2024-07-24T22:21:40.010000"],["2024-07-24T22:21:41.010000"],["2024-07-24T22:21:42.010000"],["2024-07-24T22:21:43.010000"],["2024-07-24T22:21:44.010000"],["2024-07-24T22:21:45.010000"],["2024-07-24T22:21:46.010000"],["2024-07-24T22:21:47.010000"],["2024-07-24T22:21:48.010000"],["2024-07-24T22:21:49.010000"],["2024-07-24T22:21:50.010000"],["2024-07-24T22:21:51.010000"],["2024-07-24T22:21:52.010000"],["2024-07-24T22:21:53.010000"],["2024-07-24T22:21:54.010000"],["2024-07-24T22:21:55.010000"],["2024-07-24T22:21:56.010000"],["2024-07-24T22:21:57.010000"],["2024-07-24T22:21:58.010000"],["2024-07-24T22:21:59.010000"],["2024-07-24T22:22:00.010000"],["2024-07-24T22:22:01.010000"],["2024-07-24T22:22:02.010000"],["2024-07-24T22:22:03.010000"],["2024-07-24T22:22:04.010000"],["2024-07-24T22:22:05.010000"],["2024-07-24T22:22:06.010000"],["2024-07-24T22:22:07.010000"],["2024-07-24T22:22:08.010000"],["2024-07-24T22:22:09.010000"],["2024-07-24T22:22:10.010000"],["2024-07-24T22:22:11.010000"],["2024-07-24T22:22:12.010000"],["2024-07-24T22:22:13.010000"],["2024-07-24T22:22:14.010000"],["2024-07-24T22:22:15.010000"],["2024-07-24T22:22:16.010000"],["2024-07-24T22:22:17.010000"],["2024-07-24T22:22:18.010000"],["2024-07-24T22:22:19.010000"],["2024-07-24T22:22:20.010000"],["2024-07-24T22:22:21.010000"],["2024-07-24T22:22:22.010000"],["2024-07-24T22:22:23.010000"],["2024-07-24T22:22:24.010000"],["2024-07-24T22:22:25.010000"],["2024-07-24T22:22:26.010000"],["2024-07-24T22:22:27.010000"],["2024-07-24T22:22:28.010000"],["2024-07-24T22:22:29.010000"],["2024-07-24T22:22:30.010000"],["2024-07-24T22:22:31.010000"],["2024-07-24T22:22:32.010000"],["2024-07-24T22:22:33.010000"],["2024-07-24T22:22:34.010000"],["2024-07-24T22:22:35.010000"],["2024-07-24T22:22:36.010000"],["2024-07-24T22:22:37.010000"],["2024-07-24T22:22:38.010000"],["2024-07-24T22:22:39.010000"],["2024-07-24T22:22:40.010000"],["2024-07-24T22:22:41.010000"],["2024-07-24T22:22:42.010000"],["2024-07-24T22:22:43.010000"],["2024-07-24T22:22:44.010000"],["2024-07-24T22:22:45.010000"],["2024-07-24T22:22:46.010000"],["2024-07-24T22:22:47.010000"],["2024-07-24T22:22:48.010000"],["2024-07-24T22:22:49.010000"],["2024-07-24T22:22:50.010000"],["2024-07-24T22:22:51.010000"],["2024-07-24T22:22:52.010000"],["2024-07-24T22:22:53.010000"],["2024-07-24T22:22:54.010000"],["2024-07-24T22:22:55.010000"],["2024-07-24T22:22:56.010000"],["2024-07-24T22:22:57.010000"],["2024-07-24T22:22:58.010000"],["2024-07-24T22:22:59.010000"],["2024-07-24T22:23:00.010000"],["2024-07-24T22:23:01.010000"],["2024-07-24T22:23:02.010000"],["2024-07-24T22:23:03.010000"],["2024-07-24T22:23:04.010000"],["2024-07-24T22:23:05.010000"],["2024-07-24T22:23:06.010000"],["2024-07-24T22:23:07.010000"],["2024-07-24T22:23:08.010000"],["2024-07-24T22:23:09.010000"],["2024-07-24T22:23:10.010000"],["2024-07-24T22:23:11.010000"],["2024-07-24T22:23:12.010000"],["2024-07-24T22:23:13.010000"],["2024-07-24T22:23:14.010000"],["2024-07-24T22:23:15.010000"],["2024-07-24T22:23:16.010000"],["2024-07-24T22:23:17.010000"],["2024-07-24T22:23:18.010000"],["2024-07-24T22:23:19.010000"],["2024-07-24T22:23:20.010000"],["2024-07-24T22:23:21.010000"],["2024-07-24T22:23:22.010000"],["2024-07-24T22:23:23.010000"],["2024-07-24T22:23:24.010000"],["2024-07-24T22:23:25.010000"],["2024-07-24T22:23:26.010000"],["2024-07-24T22:23:27.010000"],["2024-07-24T22:23:28.010000"],["2024-07-24T22:23:29.010000"],["2024-07-24T22:23:30.010000"],["2024-07-24T22:23:31.010000"],["2024-07-24T22:23:32.010000"],["2024-07-24T22:23:33.010000"],["2024-07-24T22:23:34.010000"],["2024-07-24T22:23:35.010000"],["2024-07-24T22:23:36.010000"],["2024-07-24T22:23:37.010000"],["2024-07-24T22:23:38.010000"],["2024-07-24T22:23:39.010000"],["2024-07-24T22:23:40.010000"],["2024-07-24T22:23:41.010000"],["2024-07-24T22:23:42.010000"],["2024-07-24T22:23:43.010000"],["2024-07-24T22:23:44.010000"],["2024-07-24T22:23:45.010000"],["2024-07-24T22:23:46.010000"],["2024-07-24T22:23:47.010000"],["2024-07-24T22:23:48.010000"],["2024-07-24T22:23:49.010000"],["2024-07-24T22:23:50.010000"],["2024-07-24T22:23:51.010000"],["2024-07-24T22:23:52.010000"],["2024-07-24T22:23:53.010000"],["2024-07-24T22:23:54.010000"],["2024-07-24T22:23:55.010000"],["2024-07-24T22:23:56.010000"],["2024-07-24T22:23:57.010000"],["2024-07-24T22:23:58.010000"],["2024-07-24T22:23:59.010000"],["2024-07-24T22:24:00.010000"],["2024-07-24T22:24:01.010000"],["2024-07-24T22:24:02.010000"],["2024-07-24T22:24:03.010000"],["2024-07-24T22:24:04.010000"],["2024-07-24T22:24:05.010000"],["2024-07-24T22:24:06.010000"],["2024-07-24T22:24:07.010000"],["2024-07-24T22:24:08.010000"],["2024-07-24T22:24:09.010000"],["2024-07-24T22:24:10.010000"],["2024-07-24T22:24:11.010000"],["2024-07-24T22:24:12.010000"],["2024-07-24T22:24:13.010000"],["2024-07-24T22:24:14.010000"],["2024-07-24T22:24:15.010000"],["2024-07-24T22:24:16.010000"],["2024-07-24T22:24:17.010000"],["2024-07-24T22:24:18.010000"],["2024-07-24T22:24:19.010000"],["2024-07-24T22:24:20.010000"],["2024-07-24T22:24:21.010000"],["2024-07-24T22:24:22.010000"],["2024-07-24T22:24:23.010000"],["2024-07-24T22:24:24.010000"],["2024-07-24T22:24:25.010000"],["2024-07-24T22:24:26.010000"],["2024-07-24T22:24:27.010000"],["2024-07-24T22:24:28.010000"],["2024-07-24T22:24:29.010000"],["2024-07-24T22:24:30.010000"],["2024-07-24T22:24:31.010000"],["2024-07-24T22:24:32.010000"],["2024-07-24T22:24:33.010000"],["2024-07-24T22:24:34.010000"],["2024-07-24T22:24:35.010000"],["2024-07-24T22:24:36.010000"],["2024-07-24T22:24:37.010000"],["2024-07-24T22:24:38.010000"],["2024-07-24T22:24:39.010000"],["2024-07-24T22:24:40.010000"],["2024-07-24T22:24:41.010000"],["2024-07-24T22:24:42.010000"],["2024-07-24T22:24:43.010000"],["2024-07-24T22:24:44.010000"],["2024-07-24T22:24:45.010000"],["2024-07-24T22:24:46.010000"],["2024-07-24T22:24:47.010000"],["2024-07-24T22:24:48.010000"],["2024-07-24T22:24:49.010000"],["2024-07-24T22:24:50.010000"],["2024-07-24T22:24:51.010000"],["2024-07-24T22:24:52.010000"],["2024-07-24T22:24:53.010000"],["2024-07-24T22:24:54.010000"],["2024-07-24T22:24:55.010000"],["2024-07-24T22:24:56.010000"],["2024-07-24T22:24:57.010000"],["2024-07-24T22:24:58.010000"],["2024-07-24T22:24:59.010000"],["2024-07-24T22:25:00.010000"],["2024-07-24T22:25:01.010000"],["2024-07-24T22:25:02.010000"],["2024-07-24T22:25:03.010000"],["2024-07-24T22:25:04.010000"],["2024-07-24T22:25:05.010000"],["2024-07-24T22:25:06.010000"],["2024-07-24T22:25:07.010000"],["2024-07-24T22:25:08.010000"],["2024-07-24T22:25:09.010000"],["2024-07-24T22:25:10.010000"],["2024-07-24T22:25:11.010000"],["2024-07-24T22:25:12.010000"],["2024-07-24T22:25:13.010000"],["2024-07-24T22:25:14.010000"],["2024-07-24T22:25:15.010000"],["2024-07-24T22:25:16.010000"],["2024-07-24T22:25:17.010000"],["2024-07-24T22:25:18.010000"],["2024-07-24T22:25:19.010000"],["2024-07-24T22:25:20.010000"],["2024-07-24T22:25:21.010000"],["2024-07-24T22:25:22.010000"],["2024-07-24T22:25:23.010000"],["2024-07-24T22:25:24.010000"],["2024-07-24T22:25:25.010000"],["2024-07-24T22:25:26.010000"],["2024-07-24T22:25:27.010000"],["2024-07-24T22:25:28.010000"],["2024-07-24T22:25:29.010000"],["2024-07-24T22:25:30.010000"],["2024-07-24T22:25:31.010000"],["2024-07-24T22:25:32.010000"],["2024-07-24T22:25:33.010000"],["2024-07-24T22:25:34.010000"],["2024-07-24T22:25:35.010000"],["2024-07-24T22:25:36.010000"],["2024-07-24T22:25:37.010000"],["2024-07-24T22:25:38.010000"],["2024-07-24T22:25:39.010000"],["2024-07-24T22:25:40.010000"],["2024-07-24T22:25:41.010000"],["2024-07-24T22:25:42.010000"],["2024-07-24T22:25:43.010000"],["2024-07-24T22:25:44.010000"],["2024-07-24T22:25:45.010000"],["2024-07-24T22:25:46.010000"],["2024-07-24T22:25:47.010000"],["2024-07-24T22:25:48.010000"],["2024-07-24T22:25:49.010000"],["2024-07-24T22:25:50.010000"],["2024-07-24T22:25:51.010000"],["2024-07-24T22:25:52.010000"],["2024-07-24T22:25:53.010000"],["2024-07-24T22:25:54.010000"],["2024-07-24T22:25:55.010000"],["2024-07-24T22:25:56.010000"],["2024-07-24T22:25:57.010000"],["2024-07-24T22:25:58.010000"],["2024-07-24T22:25:59.010000"],["2024-07-24T22:26:00.010000"],["2024-07-24T22:26:01.010000"],["2024-07-24T22:26:02.010000"],["2024-07-24T22:26:03.010000"],["2024-07-24T22:26:04.010000"],["2024-07-24T22:26:05.010000"],["2024-07-24T22:26:06.010000"],["2024-07-24T22:26:07.010000"],["2024-07-24T22:26:08.010000"],["2024-07-24T22:26:09.010000"],["2024-07-24T22:26:10.010000"],["2024-07-24T22:26:11.010000"],["2024-07-24T22:26:12.010000"],["2024-07-24T22:26:13.010000"],["2024-07-24T22:26:14.010000"],["2024-07-24T22:26:15.010000"],["2024-07-24T22:26:16.010000"],["2024-07-24T22:26:17.010000"],["2024-07-24T22:26:18.010000"],["2024-07-24T22:26:19.010000"],["2024-07-24T22:26:20.010000"],["2024-07-24T22:26:21.010000"],["2024-07-24T22:26:22.010000"],["2024-07-24T22:26:23.010000"],["2024-07-24T22:26:24.010000"],["2024-07-24T22:26:25.010000"],["2024-07-24T22:26:26.010000"],["2024-07-24T22:26:27.010000"],["2024-07-24T22:26:28.010000"],["2024-07-24T22:26:29.010000"],["2024-07-24T22:26:30.010000"],["2024-07-24T22:26:31.010000"],["2024-07-24T22:26:32.010000"],["2024-07-24T22:26:33.010000"],["2024-07-24T22:26:34.010000"],["2024-07-24T22:26:35.010000"],["2024-07-24T22:26:36.010000"],["2024-07-24T22:26:37.010000"],["2024-07-24T22:26:38.010000"],["2024-07-24T22:26:39.010000"],["2024-07-24T22:26:40.010000"],["2024-07-24T22:26:41.010000"],["2024-07-24T22:26:42.010000"],["2024-07-24T22:26:43.010000"],["2024-07-24T22:26:44.010000"],["2024-07-24T22:26:45.010000"],["2024-07-24T22:26:46.010000"],["2024-07-24T22:26:47.010000"],["2024-07-24T22:26:48.010000"],["2024-07-24T22:26:49.010000"],["2024-07-24T22:26:50.010000"],["2024-07-24T22:26:51.010000"],["2024-07-24T22:26:52.010000"],["2024-07-24T22:26:53.010000"],["2024-07-24T22:26:54.010000"],["2024-07-24T22:26:55.010000"],["2024-07-24T22:26:56.010000"],["2024-07-24T22:26:57.010000"],["2024-07-24T22:26:58.010000"],["2024-07-24T22:26:59.010000"],["2024-07-24T22:27:00.010000"],["2024-07-24T22:27:01.010000"],["2024-07-24T22:27:02.010000"],["2024-07-24T22:27:03.010000"],["2024-07-24T22:27:04.010000"],["2024-07-24T22:27:05.010000"],["2024-07-24T22:27:06.010000"],["2024-07-24T22:27:07.010000"],["2024-07-24T22:27:08.010000"],["2024-07-24T22:27:09.010000"],["2024-07-24T22:27:10.010000"],["2024-07-24T22:27:11.010000"],["2024-07-24T22:27:12.010000"],["2024-07-24T22:27:13.010000"],["2024-07-24T22:27:14.010000"],["2024-07-24T22:27:15.010000"],["2024-07-24T22:27:16.010000"],["2024-07-24T22:27:17.010000"],["2024-07-24T22:27:18.010000"],["2024-07-24T22:27:19.010000"],["2024-07-24T22:27:20.010000"],["2024-07-24T22:27:21.010000"],["2024-07-24T22:27:22.010000"],["2024-07-24T22:27:23.010000"],["2024-07-24T22:27:24.010000"],["2024-07-24T22:27:25.010000"],["2024-07-24T22:27:26.010000"],["2024-07-24T22:27:27.010000"],["2024-07-24T22:27:28.010000"],["2024-07-24T22:27:29.010000"],["2024-07-24T22:27:30.010000"],["2024-07-24T22:27:31.010000"],["2024-07-24T22:27:32.010000"],["2024-07-24T22:27:33.010000"],["2024-07-24T22:27:34.010000"],["2024-07-24T22:27:35.010000"],["2024-07-24T22:27:36.010000"],["2024-07-24T22:27:37.010000"],["2024-07-24T22:27:38.010000"],["2024-07-24T22:27:39.010000"],["2024-07-24T22:27:40.010000"],["2024-07-24T22:27:41.010000"],["2024-07-24T22:27:42.010000"],["2024-07-24T22:27:43.010000"],["2024-07-24T22:27:44.010000"],["2024-07-24T22:27:45.010000"],["2024-07-24T22:27:46.010000"],["2024-07-24T22:27:47.010000"],["2024-07-24T22:27:48.010000"],["2024-07-24T22:27:49.010000"],["2024-07-24T22:27:50.010000"],["2024-07-24T22:27:51.010000"],["2024-07-24T22:27:52.010000"],["2024-07-24T22:27:53.010000"],["2024-07-24T22:27:54.010000"],["2024-07-24T22:27:55.010000"],["2024-07-24T22:27:56.010000"],["2024-07-24T22:27:57.010000"],["2024-07-24T22:27:58.010000"],["2024-07-24T22:27:59.010000"],["2024-07-24T22:28:00.010000"],["2024-07-24T22:28:01.010000"],["2024-07-24T22:28:02.010000"],["2024-07-24T22:28:03.010000"],["2024-07-24T22:28:04.010000"],["2024-07-24T22:28:05.010000"],["2024-07-24T22:28:06.010000"],["2024-07-24T22:28:07.010000"],["2024-07-24T22:28:08.010000"],["2024-07-24T22:28:09.010000"],["2024-07-24T22:28:10.010000"],["2024-07-24T22:28:11.010000"],["2024-07-24T22:28:12.010000"],["2024-07-24T22:28:13.010000"],["2024-07-24T22:28:14.010000"],["2024-07-24T22:28:15.010000"],["2024-07-24T22:28:16.010000"],["2024-07-24T22:28:17.010000"],["2024-07-24T22:28:18.010000"],["2024-07-24T22:28:19.010000"],["2024-07-24T22:28:20.010000"],["2024-07-24T22:28:21.010000"],["2024-07-24T22:28:22.010000"],["2024-07-24T22:28:23.010000"],["2024-07-24T22:28:24.010000"],["2024-07-24T22:28:25.010000"],["2024-07-24T22:28:26.010000"],["2024-07-24T22:28:27.010000"],["2024-07-24T22:28:28.010000"],["2024-07-24T22:28:29.010000"],["2024-07-24T22:28:30.010000"],["2024-07-24T22:28:31.010000"],["2024-07-24T22:28:32.010000"],["2024-07-24T22:28:33.010000"],["2024-07-24T22:28:34.010000"],["2024-07-24T22:28:35.010000"],["2024-07-24T22:28:36.010000"],["2024-07-24T22:28:37.010000"],["2024-07-24T22:28:38.010000"],["2024-07-24T22:28:39.010000"],["2024-07-24T22:28:40.010000"],["2024-07-24T22:28:41.010000"],["2024-07-24T22:28:42.010000"],["2024-07-24T22:28:43.010000"],["2024-07-24T22:28:44.010000"],["2024-07-24T22:28:45.010000"],["2024-07-24T22:28:46.010000"],["2024-07-24T22:28:47.010000"],["2024-07-24T22:28:48.010000"],["2024-07-24T22:28:49.010000"],["2024-07-24T22:28:50.010000"],["2024-07-24T22:28:51.010000"],["2024-07-24T22:28:52.010000"],["2024-07-24T22:28:53.010000"],["2024-07-24T22:28:54.010000"],["2024-07-24T22:28:55.010000"],["2024-07-24T22:28:56.010000"],["2024-07-24T22:28:57.010000"],["2024-07-24T22:28:58.010000"],["2024-07-24T22:28:59.010000"],["2024-07-24T22:29:00.010000"],["2024-07-24T22:29:01.010000"],["2024-07-24T22:29:02.010000"],["2024-07-24T22:29:03.010000"],["2024-07-24T22:29:04.010000"],["2024-07-24T22:29:05.010000"],["2024-07-24T22:29:06.010000"],["2024-07-24T22:29:07.010000"],["2024-07-24T22:29:08.010000"],["2024-07-24T22:29:09.010000"],["2024-07-24T22:29:10.010000"],["2024-07-24T22:29:11.010000"],["2024-07-24T22:29:12.010000"],["2024-07-24T22:29:13.010000"],["2024-07-24T22:29:14.010000"],["2024-07-24T22:29:15.010000"],["2024-07-24T22:29:16.010000"],["2024-07-24T22:29:17.010000"],["2024-07-24T22:29:18.010000"],["2024-07-24T22:29:19.010000"],["2024-07-24T22:29:20.010000"],["2024-07-24T22:29:21.010000"],["2024-07-24T22:29:22.010000"],["2024-07-24T22:29:23.010000"],["2024-07-24T22:29:24.010000"],["2024-07-24T22:29:25.010000"],["2024-07-24T22:29:26.010000"],["2024-07-24T22:29:27.010000"],["2024-07-24T22:29:28.010000"],["2024-07-24T22:29:29.010000"],["2024-07-24T22:29:30.010000"],["2024-07-24T22:29:31.010000"],["2024-07-24T22:29:32.010000"],["2024-07-24T22:29:33.010000"],["2024-07-24T22:29:34.010000"],["2024-07-24T22:29:35.010000"],["2024-07-24T22:29:36.010000"],["2024-07-24T22:29:37.010000"],["2024-07-24T22:29:38.010000"],["2024-07-24T22:29:39.010000"],["2024-07-24T22:29:40.010000"],["2024-07-24T22:29:41.010000"],["2024-07-24T22:29:42.010000"],["2024-07-24T22:29:43.010000"],["2024-07-24T22:29:44.010000"],["2024-07-24T22:29:45.010000"],["2024-07-24T22:29:46.010000"],["2024-07-24T22:29:47.010000"],["2024-07-24T22:29:48.010000"],["2024-07-24T22:29:49.010000"],["2024-07-24T22:29:50.010000"],["2024-07-24T22:29:51.010000"],["2024-07-24T22:29:52.010000"],["2024-07-24T22:29:53.010000"],["2024-07-24T22:29:54.010000"],["2024-07-24T22:29:55.010000"],["2024-07-24T22:29:56.010000"],["2024-07-24T22:29:57.010000"],["2024-07-24T22:29:58.010000"],["2024-07-24T22:29:59.010000"],["2024-07-24T22:30:00.010000"],["2024-07-24T22:30:01.010000"],["2024-07-24T22:30:02.010000"],["2024-07-24T22:30:03.010000"],["2024-07-24T22:30:04.010000"],["2024-07-24T22:30:05.010000"],["2024-07-24T22:30:06.010000"],["2024-07-24T22:30:07.010000"],["2024-07-24T22:30:08.010000"],["2024-07-24T22:30:09.010000"],["2024-07-24T22:30:10.010000"],["2024-07-24T22:30:11.010000"],["2024-07-24T22:30:12.010000"],["2024-07-24T22:30:13.010000"],["2024-07-24T22:30:14.010000"],["2024-07-24T22:30:15.010000"],["2024-07-24T22:30:16.010000"],["2024-07-24T22:30:17.010000"],["2024-07-24T22:30:18.010000"],["2024-07-24T22:30:19.010000"],["2024-07-24T22:30:20.010000"],["2024-07-24T22:30:21.010000"],["2024-07-24T22:30:22.010000"],["2024-07-24T22:30:23.010000"],["2024-07-24T22:30:24.010000"],["2024-07-24T22:30:25.010000"],["2024-07-24T22:30:26.010000"],["2024-07-24T22:30:27.010000"],["2024-07-24T22:30:28.010000"],["2024-07-24T22:30:29.010000"],["2024-07-24T22:30:30.010000"],["2024-07-24T22:30:31.010000"],["2024-07-24T22:30:32.010000"],["2024-07-24T22:30:33.010000"],["2024-07-24T22:30:34.010000"],["2024-07-24T22:30:35.010000"],["2024-07-24T22:30:36.010000"],["2024-07-24T22:30:37.010000"],["2024-07-24T22:30:38.010000"],["2024-07-24T22:30:39.010000"],["2024-07-24T22:30:40.010000"],["2024-07-24T22:30:41.010000"],["2024-07-24T22:30:42.010000"],["2024-07-24T22:30:43.010000"],["2024-07-24T22:30:44.010000"],["2024-07-24T22:30:45.010000"],["2024-07-24T22:30:46.010000"],["2024-07-24T22:30:47.010000"],["2024-07-24T22:30:48.010000"],["2024-07-24T22:30:49.010000"],["2024-07-24T22:30:50.010000"],["2024-07-24T22:30:51.010000"],["2024-07-24T22:30:52.010000"],["2024-07-24T22:30:53.010000"],["2024-07-24T22:30:54.010000"],["2024-07-24T22:30:55.010000"],["2024-07-24T22:30:56.010000"],["2024-07-24T22:30:57.010000"],["2024-07-24T22:30:58.010000"],["2024-07-24T22:30:59.010000"],["2024-07-24T22:31:00.010000"],["2024-07-24T22:31:01.010000"],["2024-07-24T22:31:02.010000"],["2024-07-24T22:31:03.010000"],["2024-07-24T22:31:04.010000"],["2024-07-24T22:31:05.010000"],["2024-07-24T22:31:06.010000"],["2024-07-24T22:31:07.010000"],["2024-07-24T22:31:08.010000"],["2024-07-24T22:31:09.010000"],["2024-07-24T22:31:10.010000"],["2024-07-24T22:31:11.010000"],["2024-07-24T22:31:12.010000"],["2024-07-24T22:31:13.010000"],["2024-07-24T22:31:14.010000"],["2024-07-24T22:31:15.010000"],["2024-07-24T22:31:16.010000"],["2024-07-24T22:31:17.010000"],["2024-07-24T22:31:18.010000"],["2024-07-24T22:31:19.010000"],["2024-07-24T22:31:20.010000"],["2024-07-24T22:31:21.010000"],["2024-07-24T22:31:22.010000"],["2024-07-24T22:31:23.010000"],["2024-07-24T22:31:24.010000"],["2024-07-24T22:31:25.010000"],["2024-07-24T22:31:26.010000"],["2024-07-24T22:31:27.010000"],["2024-07-24T22:31:28.010000"],["2024-07-24T22:31:29.010000"],["2024-07-24T22:31:30.010000"],["2024-07-24T22:31:31.010000"],["2024-07-24T22:31:32.010000"],["2024-07-24T22:31:33.010000"],["2024-07-24T22:31:34.010000"],["2024-07-24T22:31:35.010000"],["2024-07-24T22:31:36.010000"],["2024-07-24T22:31:37.010000"],["2024-07-24T22:31:38.010000"],["2024-07-24T22:31:39.010000"],["2024-07-24T22:31:40.010000"],["2024-07-24T22:31:41.010000"],["2024-07-24T22:31:42.010000"],["2024-07-24T22:31:43.010000"],["2024-07-24T22:31:44.010000"],["2024-07-24T22:31:45.010000"],["2024-07-24T22:31:46.010000"],["2024-07-24T22:31:47.010000"],["2024-07-24T22:31:48.010000"],["2024-07-24T22:31:49.010000"],["2024-07-24T22:31:50.010000"],["2024-07-24T22:31:51.010000"],["2024-07-24T22:31:52.010000"],["2024-07-24T22:31:53.010000"],["2024-07-24T22:31:54.010000"],["2024-07-24T22:31:55.010000"],["2024-07-24T22:31:56.010000"],["2024-07-24T22:31:57.010000"],["2024-07-24T22:31:58.010000"],["2024-07-24T22:31:59.010000"],["2024-07-24T22:32:00.010000"],["2024-07-24T22:32:01.010000"],["2024-07-24T22:32:02.010000"],["2024-07-24T22:32:03.010000"],["2024-07-24T22:32:04.010000"],["2024-07-24T22:32:05.010000"],["2024-07-24T22:32:06.010000"],["2024-07-24T22:32:07.010000"],["2024-07-24T22:32:08.010000"],["2024-07-24T22:32:09.010000"],["2024-07-24T22:32:10.010000"],["2024-07-24T22:32:11.010000"],["2024-07-24T22:32:12.010000"],["2024-07-24T22:32:13.010000"],["2024-07-24T22:32:14.010000"],["2024-07-24T22:32:15.010000"],["2024-07-24T22:32:16.010000"],["2024-07-24T22:32:17.010000"],["2024-07-24T22:32:18.010000"],["2024-07-24T22:32:19.010000"],["2024-07-24T22:32:20.010000"],["2024-07-24T22:32:21.010000"],["2024-07-24T22:32:22.010000"],["2024-07-24T22:32:23.010000"],["2024-07-24T22:32:24.010000"],["2024-07-24T22:32:25.010000"],["2024-07-24T22:32:26.010000"],["2024-07-24T22:32:27.010000"],["2024-07-24T22:32:28.010000"],["2024-07-24T22:32:29.010000"],["2024-07-24T22:32:30.010000"],["2024-07-24T22:32:31.010000"],["2024-07-24T22:32:32.010000"],["2024-07-24T22:32:33.010000"],["2024-07-24T22:32:34.010000"],["2024-07-24T22:32:35.010000"],["2024-07-24T22:32:36.010000"],["2024-07-24T22:32:37.010000"],["2024-07-24T22:32:38.010000"],["2024-07-24T22:32:39.010000"],["2024-07-24T22:32:40.010000"],["2024-07-24T22:32:41.010000"],["2024-07-24T22:32:42.010000"],["2024-07-24T22:32:43.010000"],["2024-07-24T22:32:44.010000"],["2024-07-24T22:32:45.010000"],["2024-07-24T22:32:46.010000"],["2024-07-24T22:32:47.010000"],["2024-07-24T22:32:48.010000"],["2024-07-24T22:32:49.010000"],["2024-07-24T22:32:50.010000"],["2024-07-24T22:32:51.010000"],["2024-07-24T22:32:52.010000"],["2024-07-24T22:32:53.010000"],["2024-07-24T22:32:54.010000"],["2024-07-24T22:32:55.010000"],["2024-07-24T22:32:56.010000"],["2024-07-24T22:32:57.010000"],["2024-07-24T22:32:58.010000"],["2024-07-24T22:32:59.010000"],["2024-07-24T22:33:00.010000"],["2024-07-24T22:33:01.010000"],["2024-07-24T22:33:02.010000"],["2024-07-24T22:33:03.010000"],["2024-07-24T22:33:04.010000"],["2024-07-24T22:33:05.010000"],["2024-07-24T22:33:06.010000"],["2024-07-24T22:33:07.010000"],["2024-07-24T22:33:08.010000"],["2024-07-24T22:33:09.010000"],["2024-07-24T22:33:10.010000"],["2024-07-24T22:33:11.010000"],["2024-07-24T22:33:12.010000"],["2024-07-24T22:33:13.010000"],["2024-07-24T22:33:14.010000"],["2024-07-24T22:33:15.010000"],["2024-07-24T22:33:16.010000"],["2024-07-24T22:33:17.010000"],["2024-07-24T22:33:18.010000"],["2024-07-24T22:33:19.010000"],["2024-07-24T22:33:20.010000"],["2024-07-24T22:33:21.010000"],["2024-07-24T22:33:22.010000"],["2024-07-24T22:33:23.010000"],["2024-07-24T22:33:24.010000"],["2024-07-24T22:33:25.010000"],["2024-07-24T22:33:26.010000"],["2024-07-24T22:33:27.010000"],["2024-07-24T22:33:28.010000"],["2024-07-24T22:33:29.010000"],["2024-07-24T22:33:30.010000"],["2024-07-24T22:33:31.010000"],["2024-07-24T22:33:32.010000"],["2024-07-24T22:33:33.010000"],["2024-07-24T22:33:34.010000"],["2024-07-24T22:33:35.010000"],["2024-07-24T22:33:36.010000"],["2024-07-24T22:33:37.010000"],["2024-07-24T22:33:38.010000"],["2024-07-24T22:33:39.010000"],["2024-07-24T22:33:40.010000"],["2024-07-24T22:33:41.010000"],["2024-07-24T22:33:42.010000"],["2024-07-24T22:33:43.010000"],["2024-07-24T22:33:44.010000"],["2024-07-24T22:33:45.010000"],["2024-07-24T22:33:46.010000"],["2024-07-24T22:33:47.010000"],["2024-07-24T22:33:48.010000"],["2024-07-24T22:33:49.010000"],["2024-07-24T22:33:50.010000"],["2024-07-24T22:33:51.010000"],["2024-07-24T22:33:52.010000"],["2024-07-24T22:33:53.010000"],["2024-07-24T22:33:54.010000"],["2024-07-24T22:33:55.010000"],["2024-07-24T22:33:56.010000"],["2024-07-24T22:33:57.010000"],["2024-07-24T22:33:58.010000"],["2024-07-24T22:33:59.010000"],["2024-07-24T22:34:00.010000"],["2024-07-24T22:34:01.010000"],["2024-07-24T22:34:02.010000"],["2024-07-24T22:34:03.010000"],["2024-07-24T22:34:04.010000"],["2024-07-24T22:34:05.010000"],["2024-07-24T22:34:06.010000"],["2024-07-24T22:34:07.010000"],["2024-07-24T22:34:08.010000"],["2024-07-24T22:34:09.010000"],["2024-07-24T22:34:10.010000"],["2024-07-24T22:34:11.010000"],["2024-07-24T22:34:12.010000"],["2024-07-24T22:34:13.010000"],["2024-07-24T22:34:14.010000"],["2024-07-24T22:34:15.010000"],["2024-07-24T22:34:16.010000"],["2024-07-24T22:34:17.010000"],["2024-07-24T22:34:18.010000"],["2024-07-24T22:34:19.010000"],["2024-07-24T22:34:20.010000"],["2024-07-24T22:34:21.010000"],["2024-07-24T22:34:22.010000"],["2024-07-24T22:34:23.010000"],["2024-07-24T22:34:24.010000"],["2024-07-24T22:34:25.010000"],["2024-07-24T22:34:26.010000"],["2024-07-24T22:34:27.010000"],["2024-07-24T22:34:28.010000"],["2024-07-24T22:34:29.010000"],["2024-07-24T22:34:30.010000"],["2024-07-24T22:34:31.010000"],["2024-07-24T22:34:32.010000"],["2024-07-24T22:34:33.010000"],["2024-07-24T22:34:34.010000"],["2024-07-24T22:34:35.010000"],["2024-07-24T22:34:36.010000"],["2024-07-24T22:34:37.010000"],["2024-07-24T22:34:38.010000"],["2024-07-24T22:34:39.010000"],["2024-07-24T22:34:40.010000"],["2024-07-24T22:34:41.010000"],["2024-07-24T22:34:42.010000"],["2024-07-24T22:34:43.010000"],["2024-07-24T22:34:44.010000"],["2024-07-24T22:34:45.010000"],["2024-07-24T22:34:46.010000"],["2024-07-24T22:34:47.010000"],["2024-07-24T22:34:48.010000"],["2024-07-24T22:34:49.010000"],["2024-07-24T22:34:50.010000"],["2024-07-24T22:34:51.010000"],["2024-07-24T22:34:52.010000"],["2024-07-24T22:34:53.010000"],["2024-07-24T22:34:54.010000"],["2024-07-24T22:34:55.010000"],["2024-07-24T22:34:56.010000"],["2024-07-24T22:34:57.010000"],["2024-07-24T22:34:58.010000"],["2024-07-24T22:34:59.010000"],["2024-07-24T22:35:00.010000"],["2024-07-24T22:35:01.010000"],["2024-07-24T22:35:02.010000"],["2024-07-24T22:35:03.010000"],["2024-07-24T22:35:04.010000"],["2024-07-24T22:35:05.010000"],["2024-07-24T22:35:06.010000"],["2024-07-24T22:35:07.010000"],["2024-07-24T22:35:08.010000"],["2024-07-24T22:35:09.010000"],["2024-07-24T22:35:10.010000"],["2024-07-24T22:35:11.010000"],["2024-07-24T22:35:12.010000"],["2024-07-24T22:35:13.010000"],["2024-07-24T22:35:14.010000"],["2024-07-24T22:35:15.010000"],["2024-07-24T22:35:16.010000"],["2024-07-24T22:35:17.010000"],["2024-07-24T22:35:18.010000"],["2024-07-24T22:35:19.010000"],["2024-07-24T22:35:20.010000"],["2024-07-24T22:35:21.010000"],["2024-07-24T22:35:22.010000"],["2024-07-24T22:35:23.010000"],["2024-07-24T22:35:24.010000"],["2024-07-24T22:35:25.010000"],["2024-07-24T22:35:26.010000"],["2024-07-24T22:35:27.010000"],["2024-07-24T22:35:28.010000"],["2024-07-24T22:35:29.010000"],["2024-07-24T22:35:30.010000"],["2024-07-24T22:35:31.010000"],["2024-07-24T22:35:32.010000"],["2024-07-24T22:35:33.010000"],["2024-07-24T22:35:34.010000"],["2024-07-24T22:35:35.010000"],["2024-07-24T22:35:36.010000"],["2024-07-24T22:35:37.010000"],["2024-07-24T22:35:38.010000"],["2024-07-24T22:35:39.010000"],["2024-07-24T22:35:40.010000"],["2024-07-24T22:35:41.010000"],["2024-07-24T22:35:42.010000"],["2024-07-24T22:35:43.010000"],["2024-07-24T22:35:44.010000"],["2024-07-24T22:35:45.010000"],["2024-07-24T22:35:46.010000"],["2024-07-24T22:35:47.010000"],["2024-07-24T22:35:48.010000"],["2024-07-24T22:35:49.010000"],["2024-07-24T22:35:50.010000"],["2024-07-24T22:35:51.010000"],["2024-07-24T22:35:52.010000"],["2024-07-24T22:35:53.010000"],["2024-07-24T22:35:54.010000"],["2024-07-24T22:35:55.010000"],["2024-07-24T22:35:56.010000"],["2024-07-24T22:35:57.010000"],["2024-07-24T22:35:58.010000"],["2024-07-24T22:35:59.010000"],["2024-07-24T22:36:00.010000"],["2024-07-24T22:36:01.010000"],["2024-07-24T22:36:02.010000"],["2024-07-24T22:36:03.010000"],["2024-07-24T22:36:04.010000"],["2024-07-24T22:36:05.010000"],["2024-07-24T22:36:06.010000"],["2024-07-24T22:36:07.010000"],["2024-07-24T22:36:08.010000"],["2024-07-24T22:36:09.010000"],["2024-07-24T22:36:10.010000"],["2024-07-24T22:36:11.010000"],["2024-07-24T22:36:12.010000"],["2024-07-24T22:36:13.010000"],["2024-07-24T22:36:14.010000"],["2024-07-24T22:36:15.010000"],["2024-07-24T22:36:16.010000"],["2024-07-24T22:36:17.010000"],["2024-07-24T22:36:18.010000"],["2024-07-24T22:36:19.010000"],["2024-07-24T22:36:20.010000"],["2024-07-24T22:36:21.010000"],["2024-07-24T22:36:22.010000"],["2024-07-24T22:36:23.010000"],["2024-07-24T22:36:24.010000"],["2024-07-24T22:36:25.010000"],["2024-07-24T22:36:26.010000"],["2024-07-24T22:36:27.010000"],["2024-07-24T22:36:28.010000"],["2024-07-24T22:36:29.010000"],["2024-07-24T22:36:30.010000"],["2024-07-24T22:36:31.010000"],["2024-07-24T22:36:32.010000"],["2024-07-24T22:36:33.010000"],["2024-07-24T22:36:34.010000"],["2024-07-24T22:36:35.010000"],["2024-07-24T22:36:36.010000"],["2024-07-24T22:36:37.010000"],["2024-07-24T22:36:38.010000"],["2024-07-24T22:36:39.010000"],["2024-07-24T22:36:40.010000"],["2024-07-24T22:36:41.010000"],["2024-07-24T22:36:42.010000"],["2024-07-24T22:36:43.010000"],["2024-07-24T22:36:44.010000"],["2024-07-24T22:36:45.010000"],["2024-07-24T22:36:46.010000"],["2024-07-24T22:36:47.010000"],["2024-07-24T22:36:48.010000"],["2024-07-24T22:36:49.010000"],["2024-07-24T22:36:50.010000"],["2024-07-24T22:36:51.010000"],["2024-07-24T22:36:52.010000"],["2024-07-24T22:36:53.010000"],["2024-07-24T22:36:54.010000"],["2024-07-24T22:36:55.010000"],["2024-07-24T22:36:56.010000"],["2024-07-24T22:36:57.010000"],["2024-07-24T22:36:58.010000"],["2024-07-24T22:36:59.010000"],["2024-07-24T22:37:00.010000"],["2024-07-24T22:37:01.010000"],["2024-07-24T22:37:02.010000"],["2024-07-24T22:37:03.010000"],["2024-07-24T22:37:04.010000"],["2024-07-24T22:37:05.010000"],["2024-07-24T22:37:06.010000"],["2024-07-24T22:37:07.010000"],["2024-07-24T22:37:08.010000"],["2024-07-24T22:37:09.010000"],["2024-07-24T22:37:10.010000"],["2024-07-24T22:37:11.010000"],["2024-07-24T22:37:12.010000"],["2024-07-24T22:37:13.010000"],["2024-07-24T22:37:14.010000"],["2024-07-24T22:37:15.010000"],["2024-07-24T22:37:16.010000"],["2024-07-24T22:37:17.010000"],["2024-07-24T22:37:18.010000"],["2024-07-24T22:37:19.010000"],["2024-07-24T22:37:20.010000"],["2024-07-24T22:37:21.010000"],["2024-07-24T22:37:22.010000"],["2024-07-24T22:37:23.010000"],["2024-07-24T22:37:24.010000"],["2024-07-24T22:37:25.010000"],["2024-07-24T22:37:26.010000"],["2024-07-24T22:37:27.010000"],["2024-07-24T22:37:28.010000"],["2024-07-24T22:37:29.010000"],["2024-07-24T22:37:30.010000"],["2024-07-24T22:37:31.010000"],["2024-07-24T22:37:32.010000"],["2024-07-24T22:37:33.010000"],["2024-07-24T22:37:34.010000"],["2024-07-24T22:37:35.010000"],["2024-07-24T22:37:36.010000"],["2024-07-24T22:37:37.010000"],["2024-07-24T22:37:38.010000"],["2024-07-24T22:37:39.010000"],["2024-07-24T22:37:40.010000"],["2024-07-24T22:37:41.010000"],["2024-07-24T22:37:42.010000"],["2024-07-24T22:37:43.010000"],["2024-07-24T22:37:44.010000"],["2024-07-24T22:37:45.010000"],["2024-07-24T22:37:46.010000"],["2024-07-24T22:37:47.010000"],["2024-07-24T22:37:48.010000"],["2024-07-24T22:37:49.010000"],["2024-07-24T22:37:50.010000"],["2024-07-24T22:37:51.010000"],["2024-07-24T22:37:52.010000"],["2024-07-24T22:37:53.010000"],["2024-07-24T22:37:54.010000"],["2024-07-24T22:37:55.010000"],["2024-07-24T22:37:56.010000"],["2024-07-24T22:37:57.010000"],["2024-07-24T22:37:58.010000"],["2024-07-24T22:37:59.010000"],["2024-07-24T22:38:00.010000"],["2024-07-24T22:38:01.010000"],["2024-07-24T22:38:02.010000"],["2024-07-24T22:38:03.010000"],["2024-07-24T22:38:04.010000"],["2024-07-24T22:38:05.010000"],["2024-07-24T22:38:06.010000"],["2024-07-24T22:38:07.010000"],["2024-07-24T22:38:08.010000"],["2024-07-24T22:38:09.010000"],["2024-07-24T22:38:10.010000"],["2024-07-24T22:38:11.010000"],["2024-07-24T22:38:12.010000"],["2024-07-24T22:38:13.010000"],["2024-07-24T22:38:14.010000"],["2024-07-24T22:38:15.010000"],["2024-07-24T22:38:16.010000"],["2024-07-24T22:38:17.010000"],["2024-07-24T22:38:18.010000"],["2024-07-24T22:38:19.010000"],["2024-07-24T22:38:20.010000"],["2024-07-24T22:38:21.010000"],["2024-07-24T22:38:22.010000"],["2024-07-24T22:38:23.010000"],["2024-07-24T22:38:24.010000"],["2024-07-24T22:38:25.010000"],["2024-07-24T22:38:26.010000"],["2024-07-24T22:38:27.010000"],["2024-07-24T22:38:28.010000"],["2024-07-24T22:38:29.010000"],["2024-07-24T22:38:30.010000"],["2024-07-24T22:38:31.010000"],["2024-07-24T22:38:32.010000"],["2024-07-24T22:38:33.010000"],["2024-07-24T22:38:34.010000"],["2024-07-24T22:38:35.010000"],["2024-07-24T22:38:36.010000"],["2024-07-24T22:38:37.010000"],["2024-07-24T22:38:38.010000"],["2024-07-24T22:38:39.010000"],["2024-07-24T22:38:40.010000"],["2024-07-24T22:38:41.010000"],["2024-07-24T22:38:42.010000"],["2024-07-24T22:38:43.010000"],["2024-07-24T22:38:44.010000"],["2024-07-24T22:38:45.010000"],["2024-07-24T22:38:46.010000"],["2024-07-24T22:38:47.010000"],["2024-07-24T22:38:48.010000"],["2024-07-24T22:38:49.010000"],["2024-07-24T22:38:50.010000"],["2024-07-24T22:38:51.010000"],["2024-07-24T22:38:52.010000"],["2024-07-24T22:38:53.010000"],["2024-07-24T22:38:54.010000"],["2024-07-24T22:38:55.010000"],["2024-07-24T22:38:56.010000"],["2024-07-24T22:38:57.010000"],["2024-07-24T22:38:58.010000"],["2024-07-24T22:38:59.010000"],["2024-07-24T22:39:00.010000"],["2024-07-24T22:39:01.010000"],["2024-07-24T22:39:02.010000"],["2024-07-24T22:39:03.010000"],["2024-07-24T22:39:04.010000"],["2024-07-24T22:39:05.010000"],["2024-07-24T22:39:06.010000"],["2024-07-24T22:39:07.010000"],["2024-07-24T22:39:08.010000"],["2024-07-24T22:39:09.010000"],["2024-07-24T22:39:10.010000"],["2024-07-24T22:39:11.010000"],["2024-07-24T22:39:12.010000"],["2024-07-24T22:39:13.010000"],["2024-07-24T22:39:14.010000"],["2024-07-24T22:39:15.010000"],["2024-07-24T22:39:16.010000"],["2024-07-24T22:39:17.010000"],["2024-07-24T22:39:18.010000"],["2024-07-24T22:39:19.010000"],["2024-07-24T22:39:20.010000"],["2024-07-24T22:39:21.010000"],["2024-07-24T22:39:22.010000"],["2024-07-24T22:39:23.010000"],["2024-07-24T22:39:24.010000"],["2024-07-24T22:39:25.010000"],["2024-07-24T22:39:26.010000"],["2024-07-24T22:39:27.010000"],["2024-07-24T22:39:28.010000"],["2024-07-24T22:39:29.010000"],["2024-07-24T22:39:30.010000"],["2024-07-24T22:39:31.010000"],["2024-07-24T22:39:32.010000"],["2024-07-24T22:39:33.010000"],["2024-07-24T22:39:34.010000"],["2024-07-24T22:39:35.010000"],["2024-07-24T22:39:36.010000"],["2024-07-24T22:39:37.010000"],["2024-07-24T22:39:38.010000"],["2024-07-24T22:39:39.010000"],["2024-07-24T22:39:40.010000"],["2024-07-24T22:39:41.010000"],["2024-07-24T22:39:42.010000"],["2024-07-24T22:39:43.010000"],["2024-07-24T22:39:44.010000"],["2024-07-24T22:39:45.010000"],["2024-07-24T22:39:46.010000"],["2024-07-24T22:39:47.010000"],["2024-07-24T22:39:48.010000"],["2024-07-24T22:39:49.010000"],["2024-07-24T22:39:50.010000"],["2024-07-24T22:39:51.010000"],["2024-07-24T22:39:52.010000"],["2024-07-24T22:39:53.010000"],["2024-07-24T22:39:54.010000"],["2024-07-24T22:39:55.010000"],["2024-07-24T22:39:56.010000"],["2024-07-24T22:39:57.010000"],["2024-07-24T22:39:58.010000"],["2024-07-24T22:39:59.010000"],["2024-07-24T22:40:00.010000"],["2024-07-24T22:40:01.010000"],["2024-07-24T22:40:02.010000"],["2024-07-24T22:40:03.010000"],["2024-07-24T22:40:04.010000"],["2024-07-24T22:40:05.010000"],["2024-07-24T22:40:06.010000"],["2024-07-24T22:40:07.010000"],["2024-07-24T22:40:08.010000"],["2024-07-24T22:40:09.010000"],["2024-07-24T22:40:10.010000"],["2024-07-24T22:40:11.010000"],["2024-07-24T22:40:12.010000"],["2024-07-24T22:40:13.010000"],["2024-07-24T22:40:14.010000"],["2024-07-24T22:40:15.010000"],["2024-07-24T22:40:16.010000"],["2024-07-24T22:40:17.010000"],["2024-07-24T22:40:18.010000"],["2024-07-24T22:40:19.010000"],["2024-07-24T22:40:20.010000"],["2024-07-24T22:40:21.010000"],["2024-07-24T22:40:22.010000"],["2024-07-24T22:40:23.010000"],["2024-07-24T22:40:24.010000"],["2024-07-24T22:40:25.010000"],["2024-07-24T22:40:26.010000"],["2024-07-24T22:40:27.010000"],["2024-07-24T22:40:28.010000"],["2024-07-24T22:40:29.010000"],["2024-07-24T22:40:30.010000"],["2024-07-24T22:40:31.010000"],["2024-07-24T22:40:32.010000"],["2024-07-24T22:40:33.010000"],["2024-07-24T22:40:34.010000"],["2024-07-24T22:40:35.010000"],["2024-07-24T22:40:36.010000"],["2024-07-24T22:40:37.010000"],["2024-07-24T22:40:38.010000"],["2024-07-24T22:40:39.010000"],["2024-07-24T22:40:40.010000"],["2024-07-24T22:40:41.010000"],["2024-07-24T22:40:42.010000"],["2024-07-24T22:40:43.010000"],["2024-07-24T22:40:44.010000"],["2024-07-24T22:40:45.010000"],["2024-07-24T22:40:46.010000"],["2024-07-24T22:40:47.010000"],["2024-07-24T22:40:48.010000"],["2024-07-24T22:40:49.010000"],["2024-07-24T22:40:50.010000"],["2024-07-24T22:40:51.010000"],["2024-07-24T22:40:52.010000"],["2024-07-24T22:40:53.010000"],["2024-07-24T22:40:54.010000"],["2024-07-24T22:40:55.010000"],["2024-07-24T22:40:56.010000"],["2024-07-24T22:40:57.010000"],["2024-07-24T22:40:58.010000"],["2024-07-24T22:40:59.010000"],["2024-07-24T22:41:00.010000"],["2024-07-24T22:41:01.010000"],["2024-07-24T22:41:02.010000"],["2024-07-24T22:41:03.010000"],["2024-07-24T22:41:04.010000"],["2024-07-24T22:41:05.010000"],["2024-07-24T22:41:06.010000"],["2024-07-24T22:41:07.010000"],["2024-07-24T22:41:08.010000"],["2024-07-24T22:41:09.010000"],["2024-07-24T22:41:10.010000"],["2024-07-24T22:41:11.010000"],["2024-07-24T22:41:12.010000"],["2024-07-24T22:41:13.010000"],["2024-07-24T22:41:14.010000"],["2024-07-24T22:41:15.010000"],["2024-07-24T22:41:16.010000"],["2024-07-24T22:41:17.010000"],["2024-07-24T22:41:18.010000"],["2024-07-24T22:41:19.010000"],["2024-07-24T22:41:20.010000"],["2024-07-24T22:41:21.010000"],["2024-07-24T22:41:22.010000"],["2024-07-24T22:41:23.010000"],["2024-07-24T22:41:24.010000"],["2024-07-24T22:41:25.010000"],["2024-07-24T22:41:26.010000"],["2024-07-24T22:41:27.010000"],["2024-07-24T22:41:28.010000"],["2024-07-24T22:41:29.010000"],["2024-07-24T22:41:30.010000"],["2024-07-24T22:41:31.010000"],["2024-07-24T22:41:32.010000"],["2024-07-24T22:41:33.010000"],["2024-07-24T22:41:34.010000"],["2024-07-24T22:41:35.010000"],["2024-07-24T22:41:36.010000"],["2024-07-24T22:41:37.010000"],["2024-07-24T22:41:38.010000"],["2024-07-24T22:41:39.010000"],["2024-07-24T22:41:40.010000"],["2024-07-24T22:41:41.010000"],["2024-07-24T22:41:42.010000"],["2024-07-24T22:41:43.010000"],["2024-07-24T22:41:44.010000"],["2024-07-24T22:41:45.010000"],["2024-07-24T22:41:46.010000"],["2024-07-24T22:41:47.010000"],["2024-07-24T22:41:48.010000"],["2024-07-24T22:41:49.010000"],["2024-07-24T22:41:50.010000"],["2024-07-24T22:41:51.010000"],["2024-07-24T22:41:52.010000"],["2024-07-24T22:41:53.010000"],["2024-07-24T22:41:54.010000"],["2024-07-24T22:41:55.010000"],["2024-07-24T22:41:56.010000"],["2024-07-24T22:41:57.010000"],["2024-07-24T22:41:58.010000"],["2024-07-24T22:41:59.010000"],["2024-07-24T22:42:00.010000"],["2024-07-24T22:42:01.010000"],["2024-07-24T22:42:02.010000"],["2024-07-24T22:42:03.010000"],["2024-07-24T22:42:04.010000"],["2024-07-24T22:42:05.010000"],["2024-07-24T22:42:06.010000"],["2024-07-24T22:42:07.010000"],["2024-07-24T22:42:08.010000"],["2024-07-24T22:42:09.010000"],["2024-07-24T22:42:10.010000"],["2024-07-24T22:42:11.010000"],["2024-07-24T22:42:12.010000"],["2024-07-24T22:42:13.010000"],["2024-07-24T22:42:14.010000"],["2024-07-24T22:42:15.010000"],["2024-07-24T22:42:16.010000"],["2024-07-24T22:42:17.010000"],["2024-07-24T22:42:18.010000"],["2024-07-24T22:42:19.010000"],["2024-07-24T22:42:20.010000"],["2024-07-24T22:42:21.010000"],["2024-07-24T22:42:22.010000"],["2024-07-24T22:42:23.010000"],["2024-07-24T22:42:24.010000"],["2024-07-24T22:42:25.010000"],["2024-07-24T22:42:26.010000"],["2024-07-24T22:42:27.010000"],["2024-07-24T22:42:28.010000"],["2024-07-24T22:42:29.010000"],["2024-07-24T22:42:30.010000"],["2024-07-24T22:42:31.010000"],["2024-07-24T22:42:32.010000"],["2024-07-24T22:42:33.010000"],["2024-07-24T22:42:34.010000"],["2024-07-24T22:42:35.010000"],["2024-07-24T22:42:36.010000"],["2024-07-24T22:42:37.010000"],["2024-07-24T22:42:38.010000"],["2024-07-24T22:42:39.010000"],["2024-07-24T22:42:40.010000"],["2024-07-24T22:42:41.010000"],["2024-07-24T22:42:42.010000"],["2024-07-24T22:42:43.010000"],["2024-07-24T22:42:44.010000"],["2024-07-24T22:42:45.010000"],["2024-07-24T22:42:46.010000"],["2024-07-24T22:42:47.010000"],["2024-07-24T22:42:48.010000"],["2024-07-24T22:42:49.010000"],["2024-07-24T22:42:50.010000"],["2024-07-24T22:42:51.010000"],["2024-07-24T22:42:52.010000"],["2024-07-24T22:42:53.010000"],["2024-07-24T22:42:54.010000"],["2024-07-24T22:42:55.010000"],["2024-07-24T22:42:56.010000"],["2024-07-24T22:42:57.010000"],["2024-07-24T22:42:58.010000"],["2024-07-24T22:42:59.010000"],["2024-07-24T22:43:00.010000"],["2024-07-24T22:43:01.010000"],["2024-07-24T22:43:02.010000"],["2024-07-24T22:43:03.010000"],["2024-07-24T22:43:04.010000"],["2024-07-24T22:43:05.010000"],["2024-07-24T22:43:06.010000"],["2024-07-24T22:43:07.010000"],["2024-07-24T22:43:08.010000"],["2024-07-24T22:43:09.010000"],["2024-07-24T22:43:10.010000"],["2024-07-24T22:43:11.010000"],["2024-07-24T22:43:12.010000"],["2024-07-24T22:43:13.010000"],["2024-07-24T22:43:14.010000"],["2024-07-24T22:43:15.010000"],["2024-07-24T22:43:16.010000"],["2024-07-24T22:43:17.010000"],["2024-07-24T22:43:18.010000"],["2024-07-24T22:43:19.010000"],["2024-07-24T22:43:20.010000"],["2024-07-24T22:43:21.010000"],["2024-07-24T22:43:22.010000"],["2024-07-24T22:43:23.010000"],["2024-07-24T22:43:24.010000"],["2024-07-24T22:43:25.010000"],["2024-07-24T22:43:26.010000"],["2024-07-24T22:43:27.010000"],["2024-07-24T22:43:28.010000"],["2024-07-24T22:43:29.010000"],["2024-07-24T22:43:30.010000"],["2024-07-24T22:43:31.010000"],["2024-07-24T22:43:32.010000"],["2024-07-24T22:43:33.010000"],["2024-07-24T22:43:34.010000"],["2024-07-24T22:43:35.010000"],["2024-07-24T22:43:36.010000"],["2024-07-24T22:43:37.010000"],["2024-07-24T22:43:38.010000"],["2024-07-24T22:43:39.010000"],["2024-07-24T22:43:40.010000"],["2024-07-24T22:43:41.010000"],["2024-07-24T22:43:42.010000"],["2024-07-24T22:43:43.010000"],["2024-07-24T22:43:44.010000"],["2024-07-24T22:43:45.010000"],["2024-07-24T22:43:46.010000"],["2024-07-24T22:43:47.010000"],["2024-07-24T22:43:48.010000"],["2024-07-24T22:43:49.010000"],["2024-07-24T22:43:50.010000"],["2024-07-24T22:43:51.010000"],["2024-07-24T22:43:52.010000"],["2024-07-24T22:43:53.010000"],["2024-07-24T22:43:54.010000"],["2024-07-24T22:43:55.010000"],["2024-07-24T22:43:56.010000"],["2024-07-24T22:43:57.010000"],["2024-07-24T22:43:58.010000"],["2024-07-24T22:43:59.010000"],["2024-07-24T22:44:00.010000"],["2024-07-24T22:44:01.010000"],["2024-07-24T22:44:02.010000"],["2024-07-24T22:44:03.010000"],["2024-07-24T22:44:04.010000"],["2024-07-24T22:44:05.010000"],["2024-07-24T22:44:06.010000"],["2024-07-24T22:44:07.010000"],["2024-07-24T22:44:08.010000"],["2024-07-24T22:44:09.010000"],["2024-07-24T22:44:10.010000"],["2024-07-24T22:44:11.010000"],["2024-07-24T22:44:12.010000"],["2024-07-24T22:44:13.010000"],["2024-07-24T22:44:14.010000"],["2024-07-24T22:44:15.010000"],["2024-07-24T22:44:16.010000"],["2024-07-24T22:44:17.010000"],["2024-07-24T22:44:18.010000"],["2024-07-24T22:44:19.010000"],["2024-07-24T22:44:20.010000"],["2024-07-24T22:44:21.010000"],["2024-07-24T22:44:22.010000"],["2024-07-24T22:44:23.010000"],["2024-07-24T22:44:24.010000"],["2024-07-24T22:44:25.010000"],["2024-07-24T22:44:26.010000"],["2024-07-24T22:44:27.010000"],["2024-07-24T22:44:28.010000"],["2024-07-24T22:44:29.010000"],["2024-07-24T22:44:30.010000"],["2024-07-24T22:44:31.010000"],["2024-07-24T22:44:32.010000"],["2024-07-24T22:44:33.010000"],["2024-07-24T22:44:34.010000"],["2024-07-24T22:44:35.010000"],["2024-07-24T22:44:36.010000"],["2024-07-24T22:44:37.010000"],["2024-07-24T22:44:38.010000"],["2024-07-24T22:44:39.010000"],["2024-07-24T22:44:40.010000"],["2024-07-24T22:44:41.010000"],["2024-07-24T22:44:42.010000"],["2024-07-24T22:44:43.010000"],["2024-07-24T22:44:44.010000"],["2024-07-24T22:44:45.010000"],["2024-07-24T22:44:46.010000"],["2024-07-24T22:44:47.010000"],["2024-07-24T22:44:48.010000"],["2024-07-24T22:44:49.010000"],["2024-07-24T22:44:50.010000"],["2024-07-24T22:44:51.010000"],["2024-07-24T22:44:52.010000"],["2024-07-24T22:44:53.010000"],["2024-07-24T22:44:54.010000"],["2024-07-24T22:44:55.010000"],["2024-07-24T22:44:56.010000"],["2024-07-24T22:44:57.010000"],["2024-07-24T22:44:58.010000"],["2024-07-24T22:44:59.010000"],["2024-07-24T22:45:00.010000"],["2024-07-24T22:45:01.010000"],["2024-07-24T22:45:02.010000"],["2024-07-24T22:45:03.010000"],["2024-07-24T22:45:04.010000"],["2024-07-24T22:45:05.010000"],["2024-07-24T22:45:06.010000"],["2024-07-24T22:45:07.010000"],["2024-07-24T22:45:08.010000"],["2024-07-24T22:45:09.010000"],["2024-07-24T22:45:10.010000"],["2024-07-24T22:45:11.010000"],["2024-07-24T22:45:12.010000"],["2024-07-24T22:45:13.010000"],["2024-07-24T22:45:14.010000"],["2024-07-24T22:45:15.010000"],["2024-07-24T22:45:16.010000"],["2024-07-24T22:45:17.010000"],["2024-07-24T22:45:18.010000"],["2024-07-24T22:45:19.010000"],["2024-07-24T22:45:20.010000"],["2024-07-24T22:45:21.010000"],["2024-07-24T22:45:22.010000"],["2024-07-24T22:45:23.010000"],["2024-07-24T22:45:24.010000"],["2024-07-24T22:45:25.010000"],["2024-07-24T22:45:26.010000"],["2024-07-24T22:45:27.010000"],["2024-07-24T22:45:28.010000"],["2024-07-24T22:45:29.010000"],["2024-07-24T22:45:30.010000"],["2024-07-24T22:45:31.010000"],["2024-07-24T22:45:32.010000"],["2024-07-24T22:45:33.010000"],["2024-07-24T22:45:34.010000"],["2024-07-24T22:45:35.010000"],["2024-07-24T22:45:36.010000"],["2024-07-24T22:45:37.010000"],["2024-07-24T22:45:38.010000"],["2024-07-24T22:45:39.010000"],["2024-07-24T22:45:40.010000"],["2024-07-24T22:45:41.010000"],["2024-07-24T22:45:42.010000"],["2024-07-24T22:45:43.010000"],["2024-07-24T22:45:44.010000"],["2024-07-24T22:45:45.010000"],["2024-07-24T22:45:46.010000"],["2024-07-24T22:45:47.010000"],["2024-07-24T22:45:48.010000"],["2024-07-24T22:45:49.010000"],["2024-07-24T22:45:50.010000"],["2024-07-24T22:45:51.010000"],["2024-07-24T22:45:52.010000"],["2024-07-24T22:45:53.010000"],["2024-07-24T22:45:54.010000"],["2024-07-24T22:45:55.010000"],["2024-07-24T22:45:56.010000"],["2024-07-24T22:45:57.010000"],["2024-07-24T22:45:58.010000"],["2024-07-24T22:45:59.010000"],["2024-07-24T22:46:00.010000"],["2024-07-24T22:46:01.010000"],["2024-07-24T22:46:02.010000"],["2024-07-24T22:46:03.010000"],["2024-07-24T22:46:04.010000"],["2024-07-24T22:46:05.010000"],["2024-07-24T22:46:06.010000"],["2024-07-24T22:46:07.010000"],["2024-07-24T22:46:08.010000"],["2024-07-24T22:46:09.010000"],["2024-07-24T22:46:10.010000"],["2024-07-24T22:46:11.010000"],["2024-07-24T22:46:12.010000"],["2024-07-24T22:46:13.010000"],["2024-07-24T22:46:14.010000"],["2024-07-24T22:46:15.010000"],["2024-07-24T22:46:16.010000"],["2024-07-24T22:46:17.010000"],["2024-07-24T22:46:18.010000"],["2024-07-24T22:46:19.010000"],["2024-07-24T22:46:20.010000"],["2024-07-24T22:46:21.010000"],["2024-07-24T22:46:22.010000"],["2024-07-24T22:46:23.010000"],["2024-07-24T22:46:24.010000"],["2024-07-24T22:46:25.010000"],["2024-07-24T22:46:26.010000"],["2024-07-24T22:46:27.010000"],["2024-07-24T22:46:28.010000"],["2024-07-24T22:46:29.010000"],["2024-07-24T22:46:30.010000"],["2024-07-24T22:46:31.010000"],["2024-07-24T22:46:32.010000"],["2024-07-24T22:46:33.010000"],["2024-07-24T22:46:34.010000"],["2024-07-24T22:46:35.010000"],["2024-07-24T22:46:36.010000"],["2024-07-24T22:46:37.010000"],["2024-07-24T22:46:38.010000"],["2024-07-24T22:46:39.010000"],["2024-07-24T22:46:40.010000"],["2024-07-24T22:46:41.010000"],["2024-07-24T22:46:42.010000"],["2024-07-24T22:46:43.010000"],["2024-07-24T22:46:44.010000"],["2024-07-24T22:46:45.010000"],["2024-07-24T22:46:46.010000"],["2024-07-24T22:46:47.010000"],["2024-07-24T22:46:48.010000"],["2024-07-24T22:46:49.010000"],["2024-07-24T22:46:50.010000"],["2024-07-24T22:46:51.010000"],["2024-07-24T22:46:52.010000"],["2024-07-24T22:46:53.010000"],["2024-07-24T22:46:54.010000"],["2024-07-24T22:46:55.010000"],["2024-07-24T22:46:56.010000"],["2024-07-24T22:46:57.010000"],["2024-07-24T22:46:58.010000"],["2024-07-24T22:46:59.010000"],["2024-07-24T22:47:00.010000"],["2024-07-24T22:47:01.010000"],["2024-07-24T22:47:02.010000"],["2024-07-24T22:47:03.010000"],["2024-07-24T22:47:04.010000"],["2024-07-24T22:47:05.010000"],["2024-07-24T22:47:06.010000"],["2024-07-24T22:47:07.010000"],["2024-07-24T22:47:08.010000"],["2024-07-24T22:47:09.010000"],["2024-07-24T22:47:10.010000"],["2024-07-24T22:47:11.010000"],["2024-07-24T22:47:12.010000"],["2024-07-24T22:47:13.010000"],["2024-07-24T22:47:14.010000"],["2024-07-24T22:47:15.010000"],["2024-07-24T22:47:16.010000"],["2024-07-24T22:47:17.010000"],["2024-07-24T22:47:18.010000"],["2024-07-24T22:47:19.010000"],["2024-07-24T22:47:20.010000"],["2024-07-24T22:47:21.010000"],["2024-07-24T22:47:22.010000"],["2024-07-24T22:47:23.010000"],["2024-07-24T22:47:24.010000"],["2024-07-24T22:47:25.010000"],["2024-07-24T22:47:26.010000"],["2024-07-24T22:47:27.010000"],["2024-07-24T22:47:28.010000"],["2024-07-24T22:47:29.010000"],["2024-07-24T22:47:30.010000"],["2024-07-24T22:47:31.010000"],["2024-07-24T22:47:32.010000"],["2024-07-24T22:47:33.010000"],["2024-07-24T22:47:34.010000"],["2024-07-24T22:47:35.010000"],["2024-07-24T22:47:36.010000"],["2024-07-24T22:47:37.010000"],["2024-07-24T22:47:38.010000"],["2024-07-24T22:47:39.010000"],["2024-07-24T22:47:40.010000"],["2024-07-24T22:47:41.010000"],["2024-07-24T22:47:42.010000"],["2024-07-24T22:47:43.010000"],["2024-07-24T22:47:44.010000"],["2024-07-24T22:47:45.010000"],["2024-07-24T22:47:46.010000"],["2024-07-24T22:47:47.010000"],["2024-07-24T22:47:48.010000"],["2024-07-24T22:47:49.010000"],["2024-07-24T22:47:50.010000"],["2024-07-24T22:47:51.010000"],["2024-07-24T22:47:52.010000"],["2024-07-24T22:47:53.010000"],["2024-07-24T22:47:54.010000"],["2024-07-24T22:47:55.010000"],["2024-07-24T22:47:56.010000"],["2024-07-24T22:47:57.010000"],["2024-07-24T22:47:58.010000"],["2024-07-24T22:47:59.010000"],["2024-07-24T22:48:00.010000"],["2024-07-24T22:48:01.010000"],["2024-07-24T22:48:02.010000"],["2024-07-24T22:48:03.010000"],["2024-07-24T22:48:04.010000"],["2024-07-24T22:48:05.010000"],["2024-07-24T22:48:06.010000"],["2024-07-24T22:48:07.010000"],["2024-07-24T22:48:08.010000"],["2024-07-24T22:48:09.010000"],["2024-07-24T22:48:10.010000"],["2024-07-24T22:48:11.010000"],["2024-07-24T22:48:12.010000"],["2024-07-24T22:48:13.010000"],["2024-07-24T22:48:14.010000"],["2024-07-24T22:48:15.010000"],["2024-07-24T22:48:16.010000"],["2024-07-24T22:48:17.010000"],["2024-07-24T22:48:18.010000"],["2024-07-24T22:48:19.010000"],["2024-07-24T22:48:20.010000"],["2024-07-24T22:48:21.010000"],["2024-07-24T22:48:22.010000"],["2024-07-24T22:48:23.010000"],["2024-07-24T22:48:24.010000"],["2024-07-24T22:48:25.010000"],["2024-07-24T22:48:26.010000"],["2024-07-24T22:48:27.010000"],["2024-07-24T22:48:28.010000"],["2024-07-24T22:48:29.010000"],["2024-07-24T22:48:30.010000"],["2024-07-24T22:48:31.010000"],["2024-07-24T22:48:32.010000"],["2024-07-24T22:48:33.010000"],["2024-07-24T22:48:34.010000"],["2024-07-24T22:48:35.010000"],["2024-07-24T22:48:36.010000"],["2024-07-24T22:48:37.010000"],["2024-07-24T22:48:38.010000"],["2024-07-24T22:48:39.010000"],["2024-07-24T22:48:40.010000"],["2024-07-24T22:48:41.010000"],["2024-07-24T22:48:42.010000"],["2024-07-24T22:48:43.010000"],["2024-07-24T22:48:44.010000"],["2024-07-24T22:48:45.010000"],["2024-07-24T22:48:46.010000"],["2024-07-24T22:48:47.010000"],["2024-07-24T22:48:48.010000"],["2024-07-24T22:48:49.010000"],["2024-07-24T22:48:50.010000"],["2024-07-24T22:48:51.010000"],["2024-07-24T22:48:52.010000"],["2024-07-24T22:48:53.010000"],["2024-07-24T22:48:54.010000"],["2024-07-24T22:48:55.010000"],["2024-07-24T22:48:56.010000"],["2024-07-24T22:48:57.010000"],["2024-07-24T22:48:58.010000"],["2024-07-24T22:48:59.010000"],["2024-07-24T22:49:00.010000"],["2024-07-24T22:49:01.010000"],["2024-07-24T22:49:02.010000"],["2024-07-24T22:49:03.010000"],["2024-07-24T22:49:04.010000"],["2024-07-24T22:49:05.010000"],["2024-07-24T22:49:06.010000"],["2024-07-24T22:49:07.010000"],["2024-07-24T22:49:08.010000"],["2024-07-24T22:49:09.010000"],["2024-07-24T22:49:10.010000"],["2024-07-24T22:49:11.010000"],["2024-07-24T22:49:12.010000"],["2024-07-24T22:49:13.010000"],["2024-07-24T22:49:14.010000"],["2024-07-24T22:49:15.010000"],["2024-07-24T22:49:16.010000"],["2024-07-24T22:49:17.010000"],["2024-07-24T22:49:18.010000"],["2024-07-24T22:49:19.010000"],["2024-07-24T22:49:20.010000"],["2024-07-24T22:49:21.010000"],["2024-07-24T22:49:22.010000"],["2024-07-24T22:49:23.010000"],["2024-07-24T22:49:24.010000"],["2024-07-24T22:49:25.010000"],["2024-07-24T22:49:26.010000"],["2024-07-24T22:49:27.010000"],["2024-07-24T22:49:28.010000"],["2024-07-24T22:49:29.010000"],["2024-07-24T22:49:30.010000"],["2024-07-24T22:49:31.010000"],["2024-07-24T22:49:32.010000"],["2024-07-24T22:49:33.010000"],["2024-07-24T22:49:34.010000"],["2024-07-24T22:49:35.010000"],["2024-07-24T22:49:36.010000"],["2024-07-24T22:49:37.010000"],["2024-07-24T22:49:38.010000"],["2024-07-24T22:49:39.010000"],["2024-07-24T22:49:40.010000"],["2024-07-24T22:49:41.010000"],["2024-07-24T22:49:42.010000"],["2024-07-24T22:49:43.010000"],["2024-07-24T22:49:44.010000"],["2024-07-24T22:49:45.010000"],["2024-07-24T22:49:46.010000"],["2024-07-24T22:49:47.010000"],["2024-07-24T22:49:48.010000"],["2024-07-24T22:49:49.010000"],["2024-07-24T22:49:50.010000"],["2024-07-24T22:49:51.010000"],["2024-07-24T22:49:52.010000"],["2024-07-24T22:49:53.010000"],["2024-07-24T22:49:54.010000"],["2024-07-24T22:49:55.010000"],["2024-07-24T22:49:56.010000"],["2024-07-24T22:49:57.010000"],["2024-07-24T22:49:58.010000"],["2024-07-24T22:49:59.010000"],["2024-07-24T22:50:00.010000"],["2024-07-24T22:50:01.010000"],["2024-07-24T22:50:02.010000"],["2024-07-24T22:50:03.010000"],["2024-07-24T22:50:04.010000"],["2024-07-24T22:50:05.010000"],["2024-07-24T22:50:06.010000"],["2024-07-24T22:50:07.010000"],["2024-07-24T22:50:08.010000"],["2024-07-24T22:50:09.010000"],["2024-07-24T22:50:10.010000"],["2024-07-24T22:50:11.010000"],["2024-07-24T22:50:12.010000"],["2024-07-24T22:50:13.010000"],["2024-07-24T22:50:14.010000"],["2024-07-24T22:50:15.010000"],["2024-07-24T22:50:16.010000"],["2024-07-24T22:50:17.010000"],["2024-07-24T22:50:18.010000"],["2024-07-24T22:50:19.010000"],["2024-07-24T22:50:20.010000"],["2024-07-24T22:50:21.010000"],["2024-07-24T22:50:22.010000"],["2024-07-24T22:50:23.010000"],["2024-07-24T22:50:24.010000"],["2024-07-24T22:50:25.010000"],["2024-07-24T22:50:26.010000"],["2024-07-24T22:50:27.010000"],["2024-07-24T22:50:28.010000"],["2024-07-24T22:50:29.010000"],["2024-07-24T22:50:30.010000"],["2024-07-24T22:50:31.010000"],["2024-07-24T22:50:32.010000"],["2024-07-24T22:50:33.010000"],["2024-07-24T22:50:34.010000"],["2024-07-24T22:50:35.010000"],["2024-07-24T22:50:36.010000"],["2024-07-24T22:50:37.010000"],["2024-07-24T22:50:38.010000"],["2024-07-24T22:50:39.010000"],["2024-07-24T22:50:40.010000"],["2024-07-24T22:50:41.010000"],["2024-07-24T22:50:42.010000"],["2024-07-24T22:50:43.010000"],["2024-07-24T22:50:44.010000"],["2024-07-24T22:50:45.010000"],["2024-07-24T22:50:46.010000"],["2024-07-24T22:50:47.010000"],["2024-07-24T22:50:48.010000"],["2024-07-24T22:50:49.010000"],["2024-07-24T22:50:50.010000"],["2024-07-24T22:50:51.010000"],["2024-07-24T22:50:52.010000"],["2024-07-24T22:50:53.010000"],["2024-07-24T22:50:54.010000"],["2024-07-24T22:50:55.010000"],["2024-07-24T22:50:56.010000"],["2024-07-24T22:50:57.010000"],["2024-07-24T22:50:58.010000"],["2024-07-24T22:50:59.010000"],["2024-07-24T22:51:00.010000"],["2024-07-24T22:51:01.010000"],["2024-07-24T22:51:02.010000"],["2024-07-24T22:51:03.010000"],["2024-07-24T22:51:04.010000"],["2024-07-24T22:51:05.010000"],["2024-07-24T22:51:06.010000"],["2024-07-24T22:51:07.010000"],["2024-07-24T22:51:08.010000"],["2024-07-24T22:51:09.010000"],["2024-07-24T22:51:10.010000"],["2024-07-24T22:51:11.010000"],["2024-07-24T22:51:12.010000"],["2024-07-24T22:51:13.010000"],["2024-07-24T22:51:14.010000"],["2024-07-24T22:51:15.010000"],["2024-07-24T22:51:16.010000"],["2024-07-24T22:51:17.010000"],["2024-07-24T22:51:18.010000"],["2024-07-24T22:51:19.010000"],["2024-07-24T22:51:20.010000"],["2024-07-24T22:51:21.010000"],["2024-07-24T22:51:22.010000"],["2024-07-24T22:51:23.010000"],["2024-07-24T22:51:24.010000"],["2024-07-24T22:51:25.010000"],["2024-07-24T22:51:26.010000"],["2024-07-24T22:51:27.010000"],["2024-07-24T22:51:28.010000"],["2024-07-24T22:51:29.010000"],["2024-07-24T22:51:30.010000"],["2024-07-24T22:51:31.010000"],["2024-07-24T22:51:32.010000"],["2024-07-24T22:51:33.010000"],["2024-07-24T22:51:34.010000"],["2024-07-24T22:51:35.010000"],["2024-07-24T22:51:36.010000"],["2024-07-24T22:51:37.010000"],["2024-07-24T22:51:38.010000"],["2024-07-24T22:51:39.010000"],["2024-07-24T22:51:40.010000"],["2024-07-24T22:51:41.010000"],["2024-07-24T22:51:42.010000"],["2024-07-24T22:51:43.010000"],["2024-07-24T22:51:44.010000"],["2024-07-24T22:51:45.010000"],["2024-07-24T22:51:46.010000"],["2024-07-24T22:51:47.010000"],["2024-07-24T22:51:48.010000"],["2024-07-24T22:51:49.010000"],["2024-07-24T22:51:50.010000"],["2024-07-24T22:51:51.010000"],["2024-07-24T22:51:52.010000"],["2024-07-24T22:51:53.010000"],["2024-07-24T22:51:54.010000"],["2024-07-24T22:51:55.010000"],["2024-07-24T22:51:56.010000"],["2024-07-24T22:51:57.010000"],["2024-07-24T22:51:58.010000"],["2024-07-24T22:51:59.010000"],["2024-07-24T22:52:00.010000"],["2024-07-24T22:52:01.010000"],["2024-07-24T22:52:02.010000"],["2024-07-24T22:52:03.010000"],["2024-07-24T22:52:04.010000"],["2024-07-24T22:52:05.010000"],["2024-07-24T22:52:06.010000"],["2024-07-24T22:52:07.010000"],["2024-07-24T22:52:08.010000"],["2024-07-24T22:52:09.010000"],["2024-07-24T22:52:10.010000"],["2024-07-24T22:52:11.010000"],["2024-07-24T22:52:12.010000"],["2024-07-24T22:52:13.010000"],["2024-07-24T22:52:14.010000"],["2024-07-24T22:52:15.010000"],["2024-07-24T22:52:16.010000"],["2024-07-24T22:52:17.010000"],["2024-07-24T22:52:18.010000"],["2024-07-24T22:52:19.010000"],["2024-07-24T22:52:20.010000"],["2024-07-24T22:52:21.010000"],["2024-07-24T22:52:22.010000"],["2024-07-24T22:52:23.010000"],["2024-07-24T22:52:24.010000"],["2024-07-24T22:52:25.010000"],["2024-07-24T22:52:26.010000"],["2024-07-24T22:52:27.010000"],["2024-07-24T22:52:28.010000"],["2024-07-24T22:52:29.010000"],["2024-07-24T22:52:30.010000"],["2024-07-24T22:52:31.010000"],["2024-07-24T22:52:32.010000"],["2024-07-24T22:52:33.010000"],["2024-07-24T22:52:34.010000"],["2024-07-24T22:52:35.010000"],["2024-07-24T22:52:36.010000"],["2024-07-24T22:52:37.010000"],["2024-07-24T22:52:38.010000"],["2024-07-24T22:52:39.010000"],["2024-07-24T22:52:40.010000"],["2024-07-24T22:52:41.010000"],["2024-07-24T22:52:42.010000"],["2024-07-24T22:52:43.010000"],["2024-07-24T22:52:44.010000"],["2024-07-24T22:52:45.010000"],["2024-07-24T22:52:46.010000"],["2024-07-24T22:52:47.010000"],["2024-07-24T22:52:48.010000"],["2024-07-24T22:52:49.010000"],["2024-07-24T22:52:50.010000"],["2024-07-24T22:52:51.010000"],["2024-07-24T22:52:52.010000"],["2024-07-24T22:52:53.010000"],["2024-07-24T22:52:54.010000"],["2024-07-24T22:52:55.010000"],["2024-07-24T22:52:56.010000"],["2024-07-24T22:52:57.010000"],["2024-07-24T22:52:58.010000"],["2024-07-24T22:52:59.010000"],["2024-07-24T22:53:00.010000"],["2024-07-24T22:53:01.010000"],["2024-07-24T22:53:02.010000"],["2024-07-24T22:53:03.010000"],["2024-07-24T22:53:04.010000"],["2024-07-24T22:53:05.010000"],["2024-07-24T22:53:06.010000"],["2024-07-24T22:53:07.010000"],["2024-07-24T22:53:08.010000"],["2024-07-24T22:53:09.010000"],["2024-07-24T22:53:10.010000"],["2024-07-24T22:53:11.010000"],["2024-07-24T22:53:12.010000"],["2024-07-24T22:53:13.010000"],["2024-07-24T22:53:14.010000"],["2024-07-24T22:53:15.010000"],["2024-07-24T22:53:16.010000"],["2024-07-24T22:53:17.010000"],["2024-07-24T22:53:18.010000"],["2024-07-24T22:53:19.010000"],["2024-07-24T22:53:20.010000"],["2024-07-24T22:53:21.010000"],["2024-07-24T22:53:22.010000"],["2024-07-24T22:53:23.010000"],["2024-07-24T22:53:24.010000"],["2024-07-24T22:53:25.010000"],["2024-07-24T22:53:26.010000"],["2024-07-24T22:53:27.010000"],["2024-07-24T22:53:28.010000"],["2024-07-24T22:53:29.010000"],["2024-07-24T22:53:30.010000"],["2024-07-24T22:53:31.010000"],["2024-07-24T22:53:32.010000"],["2024-07-24T22:53:33.010000"],["2024-07-24T22:53:34.010000"],["2024-07-24T22:53:35.010000"],["2024-07-24T22:53:36.010000"],["2024-07-24T22:53:37.010000"],["2024-07-24T22:53:38.010000"],["2024-07-24T22:53:39.010000"],["2024-07-24T22:53:40.010000"],["2024-07-24T22:53:41.010000"],["2024-07-24T22:53:42.010000"],["2024-07-24T22:53:43.010000"],["2024-07-24T22:53:44.010000"],["2024-07-24T22:53:45.010000"],["2024-07-24T22:53:46.010000"],["2024-07-24T22:53:47.010000"],["2024-07-24T22:53:48.010000"],["2024-07-24T22:53:49.010000"],["2024-07-24T22:53:50.010000"],["2024-07-24T22:53:51.010000"],["2024-07-24T22:53:52.010000"],["2024-07-24T22:53:53.010000"],["2024-07-24T22:53:54.010000"],["2024-07-24T22:53:55.010000"],["2024-07-24T22:53:56.010000"],["2024-07-24T22:53:57.010000"],["2024-07-24T22:53:58.010000"],["2024-07-24T22:53:59.010000"],["2024-07-24T22:54:00.010000"],["2024-07-24T22:54:01.010000"],["2024-07-24T22:54:02.010000"],["2024-07-24T22:54:03.010000"],["2024-07-24T22:54:04.010000"],["2024-07-24T22:54:05.010000"],["2024-07-24T22:54:06.010000"],["2024-07-24T22:54:07.010000"],["2024-07-24T22:54:08.010000"],["2024-07-24T22:54:09.010000"],["2024-07-24T22:54:10.010000"],["2024-07-24T22:54:11.010000"],["2024-07-24T22:54:12.010000"],["2024-07-24T22:54:13.010000"],["2024-07-24T22:54:14.010000"],["2024-07-24T22:54:15.010000"],["2024-07-24T22:54:16.010000"],["2024-07-24T22:54:17.010000"],["2024-07-24T22:54:18.010000"],["2024-07-24T22:54:19.010000"],["2024-07-24T22:54:20.010000"],["2024-07-24T22:54:21.010000"],["2024-07-24T22:54:22.010000"],["2024-07-24T22:54:23.010000"],["2024-07-24T22:54:24.010000"],["2024-07-24T22:54:25.010000"],["2024-07-24T22:54:26.010000"],["2024-07-24T22:54:27.010000"],["2024-07-24T22:54:28.010000"],["2024-07-24T22:54:29.010000"],["2024-07-24T22:54:30.010000"],["2024-07-24T22:54:31.010000"],["2024-07-24T22:54:32.010000"],["2024-07-24T22:54:33.010000"],["2024-07-24T22:54:34.010000"],["2024-07-24T22:54:35.010000"],["2024-07-24T22:54:36.010000"],["2024-07-24T22:54:37.010000"],["2024-07-24T22:54:38.010000"],["2024-07-24T22:54:39.010000"],["2024-07-24T22:54:40.010000"],["2024-07-24T22:54:41.010000"],["2024-07-24T22:54:42.010000"],["2024-07-24T22:54:43.010000"],["2024-07-24T22:54:44.010000"],["2024-07-24T22:54:45.010000"],["2024-07-24T22:54:46.010000"],["2024-07-24T22:54:47.010000"],["2024-07-24T22:54:48.010000"],["2024-07-24T22:54:49.010000"],["2024-07-24T22:54:50.010000"],["2024-07-24T22:54:51.010000"],["2024-07-24T22:54:52.010000"],["2024-07-24T22:54:53.010000"],["2024-07-24T22:54:54.010000"],["2024-07-24T22:54:55.010000"],["2024-07-24T22:54:56.010000"],["2024-07-24T22:54:57.010000"],["2024-07-24T22:54:58.010000"],["2024-07-24T22:54:59.010000"],["2024-07-24T22:55:00.010000"],["2024-07-24T22:55:01.010000"],["2024-07-24T22:55:02.010000"],["2024-07-24T22:55:03.010000"],["2024-07-24T22:55:04.010000"],["2024-07-24T22:55:05.010000"],["2024-07-24T22:55:06.010000"],["2024-07-24T22:55:07.010000"],["2024-07-24T22:55:08.010000"],["2024-07-24T22:55:09.010000"],["2024-07-24T22:55:10.010000"],["2024-07-24T22:55:11.010000"],["2024-07-24T22:55:12.010000"],["2024-07-24T22:55:13.010000"],["2024-07-24T22:55:14.010000"],["2024-07-24T22:55:15.010000"],["2024-07-24T22:55:16.010000"],["2024-07-24T22:55:17.010000"],["2024-07-24T22:55:18.010000"],["2024-07-24T22:55:19.010000"],["2024-07-24T22:55:20.010000"],["2024-07-24T22:55:21.010000"],["2024-07-24T22:55:22.010000"],["2024-07-24T22:55:23.010000"],["2024-07-24T22:55:24.010000"],["2024-07-24T22:55:25.010000"],["2024-07-24T22:55:26.010000"],["2024-07-24T22:55:27.010000"],["2024-07-24T22:55:28.010000"],["2024-07-24T22:55:29.010000"],["2024-07-24T22:55:30.010000"],["2024-07-24T22:55:31.010000"],["2024-07-24T22:55:32.010000"],["2024-07-24T22:55:33.010000"],["2024-07-24T22:55:34.010000"],["2024-07-24T22:55:35.010000"],["2024-07-24T22:55:36.010000"],["2024-07-24T22:55:37.010000"],["2024-07-24T22:55:38.010000"],["2024-07-24T22:55:39.010000"],["2024-07-24T22:55:40.010000"],["2024-07-24T22:55:41.010000"],["2024-07-24T22:55:42.010000"],["2024-07-24T22:55:43.010000"],["2024-07-24T22:55:44.010000"],["2024-07-24T22:55:45.010000"],["2024-07-24T22:55:46.010000"],["2024-07-24T22:55:47.010000"],["2024-07-24T22:55:48.010000"],["2024-07-24T22:55:49.010000"],["2024-07-24T22:55:50.010000"],["2024-07-24T22:55:51.010000"],["2024-07-24T22:55:52.010000"],["2024-07-24T22:55:53.010000"],["2024-07-24T22:55:54.010000"],["2024-07-24T22:55:55.010000"],["2024-07-24T22:55:56.010000"],["2024-07-24T22:55:57.010000"],["2024-07-24T22:55:58.010000"],["2024-07-24T22:55:59.010000"],["2024-07-24T22:56:00.010000"],["2024-07-24T22:56:01.010000"],["2024-07-24T22:56:02.010000"],["2024-07-24T22:56:03.010000"],["2024-07-24T22:56:04.010000"],["2024-07-24T22:56:05.010000"],["2024-07-24T22:56:06.010000"],["2024-07-24T22:56:07.010000"],["2024-07-24T22:56:08.010000"],["2024-07-24T22:56:09.010000"],["2024-07-24T22:56:10.010000"],["2024-07-24T22:56:11.010000"],["2024-07-24T22:56:12.010000"],["2024-07-24T22:56:13.010000"],["2024-07-24T22:56:14.010000"],["2024-07-24T22:56:15.010000"],["2024-07-24T22:56:16.010000"],["2024-07-24T22:56:17.010000"],["2024-07-24T22:56:18.010000"],["2024-07-24T22:56:19.010000"],["2024-07-24T22:56:20.010000"],["2024-07-24T22:56:21.010000"],["2024-07-24T22:56:22.010000"],["2024-07-24T22:56:23.010000"],["2024-07-24T22:56:24.010000"],["2024-07-24T22:56:25.010000"],["2024-07-24T22:56:26.010000"],["2024-07-24T22:56:27.010000"],["2024-07-24T22:56:28.010000"],["2024-07-24T22:56:29.010000"],["2024-07-24T22:56:30.010000"],["2024-07-24T22:56:31.010000"],["2024-07-24T22:56:32.010000"],["2024-07-24T22:56:33.010000"],["2024-07-24T22:56:34.010000"],["2024-07-24T22:56:35.010000"],["2024-07-24T22:56:36.010000"],["2024-07-24T22:56:37.010000"],["2024-07-24T22:56:38.010000"],["2024-07-24T22:56:39.010000"],["2024-07-24T22:56:40.010000"],["2024-07-24T22:56:41.010000"],["2024-07-24T22:56:42.010000"],["2024-07-24T22:56:43.010000"],["2024-07-24T22:56:44.010000"],["2024-07-24T22:56:45.010000"],["2024-07-24T22:56:46.010000"],["2024-07-24T22:56:47.010000"],["2024-07-24T22:56:48.010000"],["2024-07-24T22:56:49.010000"],["2024-07-24T22:56:50.010000"],["2024-07-24T22:56:51.010000"],["2024-07-24T22:56:52.010000"],["2024-07-24T22:56:53.010000"],["2024-07-24T22:56:54.010000"],["2024-07-24T22:56:55.010000"],["2024-07-24T22:56:56.010000"],["2024-07-24T22:56:57.010000"],["2024-07-24T22:56:58.010000"],["2024-07-24T22:56:59.010000"],["2024-07-24T22:57:00.010000"],["2024-07-24T22:57:01.010000"],["2024-07-24T22:57:02.010000"],["2024-07-24T22:57:03.010000"],["2024-07-24T22:57:04.010000"],["2024-07-24T22:57:05.010000"],["2024-07-24T22:57:06.010000"],["2024-07-24T22:57:07.010000"],["2024-07-24T22:57:08.010000"],["2024-07-24T22:57:09.010000"],["2024-07-24T22:57:10.010000"],["2024-07-24T22:57:11.010000"],["2024-07-24T22:57:12.010000"],["2024-07-24T22:57:13.010000"],["2024-07-24T22:57:14.010000"],["2024-07-24T22:57:15.010000"],["2024-07-24T22:57:16.010000"],["2024-07-24T22:57:17.010000"],["2024-07-24T22:57:18.010000"],["2024-07-24T22:57:19.010000"],["2024-07-24T22:57:20.010000"],["2024-07-24T22:57:21.010000"],["2024-07-24T22:57:22.010000"],["2024-07-24T22:57:23.010000"],["2024-07-24T22:57:24.010000"],["2024-07-24T22:57:25.010000"],["2024-07-24T22:57:26.010000"],["2024-07-24T22:57:27.010000"],["2024-07-24T22:57:28.010000"],["2024-07-24T22:57:29.010000"],["2024-07-24T22:57:30.010000"],["2024-07-24T22:57:31.010000"],["2024-07-24T22:57:32.010000"],["2024-07-24T22:57:33.010000"],["2024-07-24T22:57:34.010000"],["2024-07-24T22:57:35.010000"],["2024-07-24T22:57:36.010000"],["2024-07-24T22:57:37.010000"],["2024-07-24T22:57:38.010000"],["2024-07-24T22:57:39.010000"],["2024-07-24T22:57:40.010000"],["2024-07-24T22:57:41.010000"],["2024-07-24T22:57:42.010000"],["2024-07-24T22:57:43.010000"],["2024-07-24T22:57:44.010000"],["2024-07-24T22:57:45.010000"],["2024-07-24T22:57:46.010000"],["2024-07-24T22:57:47.010000"],["2024-07-24T22:57:48.010000"],["2024-07-24T22:57:49.010000"],["2024-07-24T22:57:50.010000"],["2024-07-24T22:57:51.010000"],["2024-07-24T22:57:52.010000"],["2024-07-24T22:57:53.010000"],["2024-07-24T22:57:54.010000"],["2024-07-24T22:57:55.010000"],["2024-07-24T22:57:56.010000"],["2024-07-24T22:57:57.010000"],["2024-07-24T22:57:58.010000"],["2024-07-24T22:57:59.010000"],["2024-07-24T22:58:00.010000"],["2024-07-24T22:58:01.010000"],["2024-07-24T22:58:02.010000"],["2024-07-24T22:58:03.010000"],["2024-07-24T22:58:04.010000"],["2024-07-24T22:58:05.010000"],["2024-07-24T22:58:06.010000"],["2024-07-24T22:58:07.010000"],["2024-07-24T22:58:08.010000"],["2024-07-24T22:58:09.010000"],["2024-07-24T22:58:10.010000"],["2024-07-24T22:58:11.010000"],["2024-07-24T22:58:12.010000"],["2024-07-24T22:58:13.010000"],["2024-07-24T22:58:14.010000"],["2024-07-24T22:58:15.010000"],["2024-07-24T22:58:16.010000"],["2024-07-24T22:58:17.010000"],["2024-07-24T22:58:18.010000"],["2024-07-24T22:58:19.010000"],["2024-07-24T22:58:20.010000"],["2024-07-24T22:58:21.010000"],["2024-07-24T22:58:22.010000"],["2024-07-24T22:58:23.010000"],["2024-07-24T22:58:24.010000"],["2024-07-24T22:58:25.010000"],["2024-07-24T22:58:26.010000"],["2024-07-24T22:58:27.010000"],["2024-07-24T22:58:28.010000"],["2024-07-24T22:58:29.010000"],["2024-07-24T22:58:30.010000"],["2024-07-24T22:58:31.010000"],["2024-07-24T22:58:32.010000"],["2024-07-24T22:58:33.010000"],["2024-07-24T22:58:34.010000"],["2024-07-24T22:58:35.010000"],["2024-07-24T22:58:36.010000"],["2024-07-24T22:58:37.010000"],["2024-07-24T22:58:38.010000"],["2024-07-24T22:58:39.010000"],["2024-07-24T22:58:40.010000"],["2024-07-24T22:58:41.010000"],["2024-07-24T22:58:42.010000"],["2024-07-24T22:58:43.010000"],["2024-07-24T22:58:44.010000"],["2024-07-24T22:58:45.010000"],["2024-07-24T22:58:46.010000"],["2024-07-24T22:58:47.010000"],["2024-07-24T22:58:48.010000"],["2024-07-24T22:58:49.010000"],["2024-07-24T22:58:50.010000"],["2024-07-24T22:58:51.010000"],["2024-07-24T22:58:52.010000"],["2024-07-24T22:58:53.010000"],["2024-07-24T22:58:54.010000"],["2024-07-24T22:58:55.010000"],["2024-07-24T22:58:56.010000"],["2024-07-24T22:58:57.010000"],["2024-07-24T22:58:58.010000"],["2024-07-24T22:58:59.010000"],["2024-07-24T22:59:00.010000"],["2024-07-24T22:59:01.010000"],["2024-07-24T22:59:02.010000"],["2024-07-24T22:59:03.010000"],["2024-07-24T22:59:04.010000"],["2024-07-24T22:59:05.010000"],["2024-07-24T22:59:06.010000"],["2024-07-24T22:59:07.010000"],["2024-07-24T22:59:08.010000"],["2024-07-24T22:59:09.010000"],["2024-07-24T22:59:10.010000"],["2024-07-24T22:59:11.010000"],["2024-07-24T22:59:12.010000"],["2024-07-24T22:59:13.010000"],["2024-07-24T22:59:14.010000"],["2024-07-24T22:59:15.010000"],["2024-07-24T22:59:16.010000"],["2024-07-24T22:59:17.010000"],["2024-07-24T22:59:18.010000"],["2024-07-24T22:59:19.010000"],["2024-07-24T22:59:20.010000"],["2024-07-24T22:59:21.010000"],["2024-07-24T22:59:22.010000"],["2024-07-24T22:59:23.010000"],["2024-07-24T22:59:24.010000"],["2024-07-24T22:59:25.010000"],["2024-07-24T22:59:26.010000"],["2024-07-24T22:59:27.010000"],["2024-07-24T22:59:28.010000"],["2024-07-24T22:59:29.010000"],["2024-07-24T22:59:30.010000"],["2024-07-24T22:59:31.010000"],["2024-07-24T22:59:32.010000"],["2024-07-24T22:59:33.010000"],["2024-07-24T22:59:34.010000"],["2024-07-24T22:59:35.010000"],["2024-07-24T22:59:36.010000"],["2024-07-24T22:59:37.010000"],["2024-07-24T22:59:38.010000"],["2024-07-24T22:59:39.010000"],["2024-07-24T22:59:40.010000"],["2024-07-24T22:59:41.010000"],["2024-07-24T22:59:42.010000"],["2024-07-24T22:59:43.010000"],["2024-07-24T22:59:44.010000"],["2024-07-24T22:59:45.010000"],["2024-07-24T22:59:46.010000"],["2024-07-24T22:59:47.010000"],["2024-07-24T22:59:48.010000"],["2024-07-24T22:59:49.010000"],["2024-07-24T22:59:50.010000"],["2024-07-24T22:59:51.010000"],["2024-07-24T22:59:52.010000"],["2024-07-24T22:59:53.010000"],["2024-07-24T22:59:54.010000"],["2024-07-24T22:59:55.010000"],["2024-07-24T22:59:56.010000"],["2024-07-24T22:59:57.010000"],["2024-07-24T22:59:58.010000"],["2024-07-24T22:59:59.010000"],["2024-07-24T23:00:00.010000"],["2024-07-24T23:00:01.010000"],["2024-07-24T23:00:02.010000"],["2024-07-24T23:00:03.010000"],["2024-07-24T23:00:04.010000"],["2024-07-24T23:00:05.010000"],["2024-07-24T23:00:06.010000"],["2024-07-24T23:00:07.010000"],["2024-07-24T23:00:08.010000"],["2024-07-24T23:00:09.010000"],["2024-07-24T23:00:10.010000"],["2024-07-24T23:00:11.010000"],["2024-07-24T23:00:12.010000"],["2024-07-24T23:00:13.010000"],["2024-07-24T23:00:14.010000"],["2024-07-24T23:00:15.010000"],["2024-07-24T23:00:16.010000"],["2024-07-24T23:00:17.010000"],["2024-07-24T23:00:18.010000"],["2024-07-24T23:00:19.010000"],["2024-07-24T23:00:20.010000"],["2024-07-24T23:00:21.010000"],["2024-07-24T23:00:22.010000"],["2024-07-24T23:00:23.010000"],["2024-07-24T23:00:24.010000"],["2024-07-24T23:00:25.010000"],["2024-07-24T23:00:26.010000"],["2024-07-24T23:00:27.010000"],["2024-07-24T23:00:28.010000"],["2024-07-24T23:00:29.010000"],["2024-07-24T23:00:30.010000"],["2024-07-24T23:00:31.010000"],["2024-07-24T23:00:32.010000"],["2024-07-24T23:00:33.010000"],["2024-07-24T23:00:34.010000"],["2024-07-24T23:00:35.010000"],["2024-07-24T23:00:36.010000"],["2024-07-24T23:00:37.010000"],["2024-07-24T23:00:38.010000"],["2024-07-24T23:00:39.010000"],["2024-07-24T23:00:40.010000"],["2024-07-24T23:00:41.010000"],["2024-07-24T23:00:42.010000"],["2024-07-24T23:00:43.010000"],["2024-07-24T23:00:44.010000"],["2024-07-24T23:00:45.010000"],["2024-07-24T23:00:46.010000"],["2024-07-24T23:00:47.010000"],["2024-07-24T23:00:48.010000"],["2024-07-24T23:00:49.010000"],["2024-07-24T23:00:50.010000"],["2024-07-24T23:00:51.010000"],["2024-07-24T23:00:52.010000"],["2024-07-24T23:00:53.010000"],["2024-07-24T23:00:54.010000"],["2024-07-24T23:00:55.010000"],["2024-07-24T23:00:56.010000"],["2024-07-24T23:00:57.010000"],["2024-07-24T23:00:58.010000"],["2024-07-24T23:00:59.010000"],["2024-07-24T23:01:00.010000"],["2024-07-24T23:01:01.010000"],["2024-07-24T23:01:02.010000"],["2024-07-24T23:01:03.010000"],["2024-07-24T23:01:04.010000"],["2024-07-24T23:01:05.010000"],["2024-07-24T23:01:06.010000"],["2024-07-24T23:01:07.010000"],["2024-07-24T23:01:08.010000"],["2024-07-24T23:01:09.010000"],["2024-07-24T23:01:10.010000"],["2024-07-24T23:01:11.010000"],["2024-07-24T23:01:12.010000"],["2024-07-24T23:01:13.010000"],["2024-07-24T23:01:14.010000"],["2024-07-24T23:01:15.010000"],["2024-07-24T23:01:16.010000"],["2024-07-24T23:01:17.010000"],["2024-07-24T23:01:18.010000"],["2024-07-24T23:01:19.010000"],["2024-07-24T23:01:20.010000"],["2024-07-24T23:01:21.010000"],["2024-07-24T23:01:22.010000"],["2024-07-24T23:01:23.010000"],["2024-07-24T23:01:24.010000"],["2024-07-24T23:01:25.010000"],["2024-07-24T23:01:26.010000"],["2024-07-24T23:01:27.010000"],["2024-07-24T23:01:28.010000"],["2024-07-24T23:01:29.010000"],["2024-07-24T23:01:30.010000"],["2024-07-24T23:01:31.010000"],["2024-07-24T23:01:32.010000"],["2024-07-24T23:01:33.010000"],["2024-07-24T23:01:34.010000"],["2024-07-24T23:01:35.010000"],["2024-07-24T23:01:36.010000"],["2024-07-24T23:01:37.010000"],["2024-07-24T23:01:38.010000"],["2024-07-24T23:01:39.010000"],["2024-07-24T23:01:40.010000"],["2024-07-24T23:01:41.010000"],["2024-07-24T23:01:42.010000"],["2024-07-24T23:01:43.010000"],["2024-07-24T23:01:44.010000"],["2024-07-24T23:01:45.010000"],["2024-07-24T23:01:46.010000"],["2024-07-24T23:01:47.010000"],["2024-07-24T23:01:48.010000"],["2024-07-24T23:01:49.010000"],["2024-07-24T23:01:50.010000"],["2024-07-24T23:01:51.010000"],["2024-07-24T23:01:52.010000"],["2024-07-24T23:01:53.010000"],["2024-07-24T23:01:54.010000"],["2024-07-24T23:01:55.010000"],["2024-07-24T23:01:56.010000"],["2024-07-24T23:01:57.010000"],["2024-07-24T23:01:58.010000"],["2024-07-24T23:01:59.010000"],["2024-07-24T23:02:00.010000"],["2024-07-24T23:02:01.010000"],["2024-07-24T23:02:02.010000"],["2024-07-24T23:02:03.010000"],["2024-07-24T23:02:04.010000"],["2024-07-24T23:02:05.010000"],["2024-07-24T23:02:06.010000"],["2024-07-24T23:02:07.010000"],["2024-07-24T23:02:08.010000"],["2024-07-24T23:02:09.010000"],["2024-07-24T23:02:10.010000"],["2024-07-24T23:02:11.010000"],["2024-07-24T23:02:12.010000"],["2024-07-24T23:02:13.010000"],["2024-07-24T23:02:14.010000"],["2024-07-24T23:02:15.010000"],["2024-07-24T23:02:16.010000"],["2024-07-24T23:02:17.010000"],["2024-07-24T23:02:18.010000"],["2024-07-24T23:02:19.010000"],["2024-07-24T23:02:20.010000"],["2024-07-24T23:02:21.010000"],["2024-07-24T23:02:22.010000"],["2024-07-24T23:02:23.010000"],["2024-07-24T23:02:24.010000"],["2024-07-24T23:02:25.010000"],["2024-07-24T23:02:26.010000"],["2024-07-24T23:02:27.010000"],["2024-07-24T23:02:28.010000"],["2024-07-24T23:02:29.010000"],["2024-07-24T23:02:30.010000"],["2024-07-24T23:02:31.010000"],["2024-07-24T23:02:32.010000"],["2024-07-24T23:02:33.010000"],["2024-07-24T23:02:34.010000"],["2024-07-24T23:02:35.010000"],["2024-07-24T23:02:36.010000"],["2024-07-24T23:02:37.010000"],["2024-07-24T23:02:38.010000"],["2024-07-24T23:02:39.010000"],["2024-07-24T23:02:40.010000"],["2024-07-24T23:02:41.010000"],["2024-07-24T23:02:42.010000"],["2024-07-24T23:02:43.010000"],["2024-07-24T23:02:44.010000"],["2024-07-24T23:02:45.010000"],["2024-07-24T23:02:46.010000"],["2024-07-24T23:02:47.010000"],["2024-07-24T23:02:48.010000"],["2024-07-24T23:02:49.010000"],["2024-07-24T23:02:50.010000"],["2024-07-24T23:02:51.010000"],["2024-07-24T23:02:52.010000"],["2024-07-24T23:02:53.010000"],["2024-07-24T23:02:54.010000"],["2024-07-24T23:02:55.010000"],["2024-07-24T23:02:56.010000"],["2024-07-24T23:02:57.010000"],["2024-07-24T23:02:58.010000"],["2024-07-24T23:02:59.010000"],["2024-07-24T23:03:00.010000"],["2024-07-24T23:03:01.010000"],["2024-07-24T23:03:02.010000"],["2024-07-24T23:03:03.010000"],["2024-07-24T23:03:04.010000"],["2024-07-24T23:03:05.010000"],["2024-07-24T23:03:06.010000"],["2024-07-24T23:03:07.010000"],["2024-07-24T23:03:08.010000"],["2024-07-24T23:03:09.010000"],["2024-07-24T23:03:10.010000"],["2024-07-24T23:03:11.010000"],["2024-07-24T23:03:12.010000"],["2024-07-24T23:03:13.010000"],["2024-07-24T23:03:14.010000"],["2024-07-24T23:03:15.010000"],["2024-07-24T23:03:16.010000"],["2024-07-24T23:03:17.010000"],["2024-07-24T23:03:18.010000"],["2024-07-24T23:03:19.010000"],["2024-07-24T23:03:20.010000"],["2024-07-24T23:03:21.010000"],["2024-07-24T23:03:22.010000"],["2024-07-24T23:03:23.010000"],["2024-07-24T23:03:24.010000"],["2024-07-24T23:03:25.010000"],["2024-07-24T23:03:26.010000"],["2024-07-24T23:03:27.010000"],["2024-07-24T23:03:28.010000"],["2024-07-24T23:03:29.010000"],["2024-07-24T23:03:30.010000"],["2024-07-24T23:03:31.010000"],["2024-07-24T23:03:32.010000"],["2024-07-24T23:03:33.010000"],["2024-07-24T23:03:34.010000"],["2024-07-24T23:03:35.010000"],["2024-07-24T23:03:36.010000"],["2024-07-24T23:03:37.010000"],["2024-07-24T23:03:38.010000"],["2024-07-24T23:03:39.010000"],["2024-07-24T23:03:40.010000"],["2024-07-24T23:03:41.010000"],["2024-07-24T23:03:42.010000"],["2024-07-24T23:03:43.010000"],["2024-07-24T23:03:44.010000"],["2024-07-24T23:03:45.010000"],["2024-07-24T23:03:46.010000"],["2024-07-24T23:03:47.010000"],["2024-07-24T23:03:48.010000"],["2024-07-24T23:03:49.010000"],["2024-07-24T23:03:50.010000"],["2024-07-24T23:03:51.010000"],["2024-07-24T23:03:52.010000"],["2024-07-24T23:03:53.010000"],["2024-07-24T23:03:54.010000"],["2024-07-24T23:03:55.010000"],["2024-07-24T23:03:56.010000"],["2024-07-24T23:03:57.010000"],["2024-07-24T23:03:58.010000"],["2024-07-24T23:03:59.010000"],["2024-07-24T23:04:00.010000"],["2024-07-24T23:04:01.010000"],["2024-07-24T23:04:02.010000"],["2024-07-24T23:04:03.010000"],["2024-07-24T23:04:04.010000"],["2024-07-24T23:04:05.010000"],["2024-07-24T23:04:06.010000"],["2024-07-24T23:04:07.010000"],["2024-07-24T23:04:08.010000"],["2024-07-24T23:04:09.010000"],["2024-07-24T23:04:10.010000"],["2024-07-24T23:04:11.010000"],["2024-07-24T23:04:12.010000"],["2024-07-24T23:04:13.010000"],["2024-07-24T23:04:14.010000"],["2024-07-24T23:04:15.010000"],["2024-07-24T23:04:16.010000"],["2024-07-24T23:04:17.010000"],["2024-07-24T23:04:18.010000"],["2024-07-24T23:04:19.010000"],["2024-07-24T23:04:20.010000"],["2024-07-24T23:04:21.010000"],["2024-07-24T23:04:22.010000"],["2024-07-24T23:04:23.010000"],["2024-07-24T23:04:24.010000"],["2024-07-24T23:04:25.010000"],["2024-07-24T23:04:26.010000"],["2024-07-24T23:04:27.010000"],["2024-07-24T23:04:28.010000"],["2024-07-24T23:04:29.010000"],["2024-07-24T23:04:30.010000"],["2024-07-24T23:04:31.010000"],["2024-07-24T23:04:32.010000"],["2024-07-24T23:04:33.010000"],["2024-07-24T23:04:34.010000"],["2024-07-24T23:04:35.010000"],["2024-07-24T23:04:36.010000"],["2024-07-24T23:04:37.010000"],["2024-07-24T23:04:38.010000"],["2024-07-24T23:04:39.010000"],["2024-07-24T23:04:40.010000"],["2024-07-24T23:04:41.010000"],["2024-07-24T23:04:42.010000"],["2024-07-24T23:04:43.010000"],["2024-07-24T23:04:44.010000"],["2024-07-24T23:04:45.010000"],["2024-07-24T23:04:46.010000"],["2024-07-24T23:04:47.010000"],["2024-07-24T23:04:48.010000"],["2024-07-24T23:04:49.010000"],["2024-07-24T23:04:50.010000"],["2024-07-24T23:04:51.010000"],["2024-07-24T23:04:52.010000"],["2024-07-24T23:04:53.010000"],["2024-07-24T23:04:54.010000"],["2024-07-24T23:04:55.010000"],["2024-07-24T23:04:56.010000"],["2024-07-24T23:04:57.010000"],["2024-07-24T23:04:58.010000"],["2024-07-24T23:04:59.010000"],["2024-07-24T23:05:00.010000"],["2024-07-24T23:05:01.010000"],["2024-07-24T23:05:02.010000"],["2024-07-24T23:05:03.010000"],["2024-07-24T23:05:04.010000"],["2024-07-24T23:05:05.010000"],["2024-07-24T23:05:06.010000"],["2024-07-24T23:05:07.010000"],["2024-07-24T23:05:08.010000"],["2024-07-24T23:05:09.010000"],["2024-07-24T23:05:10.010000"],["2024-07-24T23:05:11.010000"],["2024-07-24T23:05:12.010000"],["2024-07-24T23:05:13.010000"],["2024-07-24T23:05:14.010000"],["2024-07-24T23:05:15.010000"],["2024-07-24T23:05:16.010000"],["2024-07-24T23:05:17.010000"],["2024-07-24T23:05:18.010000"],["2024-07-24T23:05:19.010000"],["2024-07-24T23:05:20.010000"],["2024-07-24T23:05:21.010000"],["2024-07-24T23:05:22.010000"],["2024-07-24T23:05:23.010000"],["2024-07-24T23:05:24.010000"],["2024-07-24T23:05:25.010000"],["2024-07-24T23:05:26.010000"],["2024-07-24T23:05:27.010000"],["2024-07-24T23:05:28.010000"],["2024-07-24T23:05:29.010000"],["2024-07-24T23:05:30.010000"],["2024-07-24T23:05:31.010000"],["2024-07-24T23:05:32.010000"],["2024-07-24T23:05:33.010000"],["2024-07-24T23:05:34.010000"],["2024-07-24T23:05:35.010000"],["2024-07-24T23:05:36.010000"],["2024-07-24T23:05:37.010000"],["2024-07-24T23:05:38.010000"],["2024-07-24T23:05:39.010000"],["2024-07-24T23:05:40.010000"],["2024-07-24T23:05:41.010000"],["2024-07-24T23:05:42.010000"],["2024-07-24T23:05:43.010000"],["2024-07-24T23:05:44.010000"],["2024-07-24T23:05:45.010000"],["2024-07-24T23:05:46.010000"],["2024-07-24T23:05:47.010000"],["2024-07-24T23:05:48.010000"],["2024-07-24T23:05:49.010000"],["2024-07-24T23:05:50.010000"],["2024-07-24T23:05:51.010000"],["2024-07-24T23:05:52.010000"],["2024-07-24T23:05:53.010000"],["2024-07-24T23:05:54.010000"],["2024-07-24T23:05:55.010000"],["2024-07-24T23:05:56.010000"],["2024-07-24T23:05:57.010000"],["2024-07-24T23:05:58.010000"],["2024-07-24T23:05:59.010000"],["2024-07-24T23:06:00.010000"],["2024-07-24T23:06:01.010000"],["2024-07-24T23:06:02.010000"],["2024-07-24T23:06:03.010000"],["2024-07-24T23:06:04.010000"],["2024-07-24T23:06:05.010000"],["2024-07-24T23:06:06.010000"],["2024-07-24T23:06:07.010000"],["2024-07-24T23:06:08.010000"],["2024-07-24T23:06:09.010000"],["2024-07-24T23:06:10.010000"],["2024-07-24T23:06:11.010000"],["2024-07-24T23:06:12.010000"],["2024-07-24T23:06:13.010000"],["2024-07-24T23:06:14.010000"],["2024-07-24T23:06:15.010000"],["2024-07-24T23:06:16.010000"],["2024-07-24T23:06:17.010000"],["2024-07-24T23:06:18.010000"],["2024-07-24T23:06:19.010000"],["2024-07-24T23:06:20.010000"],["2024-07-24T23:06:21.010000"],["2024-07-24T23:06:22.010000"],["2024-07-24T23:06:23.010000"],["2024-07-24T23:06:24.010000"],["2024-07-24T23:06:25.010000"],["2024-07-24T23:06:26.010000"],["2024-07-24T23:06:27.010000"],["2024-07-24T23:06:28.010000"],["2024-07-24T23:06:29.010000"],["2024-07-24T23:06:30.010000"],["2024-07-24T23:06:31.010000"],["2024-07-24T23:06:32.010000"],["2024-07-24T23:06:33.010000"],["2024-07-24T23:06:34.010000"],["2024-07-24T23:06:35.010000"],["2024-07-24T23:06:36.010000"],["2024-07-24T23:06:37.010000"],["2024-07-24T23:06:38.010000"],["2024-07-24T23:06:39.010000"],["2024-07-24T23:06:40.010000"],["2024-07-24T23:06:41.010000"],["2024-07-24T23:06:42.010000"],["2024-07-24T23:06:43.010000"],["2024-07-24T23:06:44.010000"],["2024-07-24T23:06:45.010000"],["2024-07-24T23:06:46.010000"],["2024-07-24T23:06:47.010000"],["2024-07-24T23:06:48.010000"],["2024-07-24T23:06:49.010000"],["2024-07-24T23:06:50.010000"],["2024-07-24T23:06:51.010000"],["2024-07-24T23:06:52.010000"],["2024-07-24T23:06:53.010000"],["2024-07-24T23:06:54.010000"],["2024-07-24T23:06:55.010000"],["2024-07-24T23:06:56.010000"],["2024-07-24T23:06:57.010000"],["2024-07-24T23:06:58.010000"],["2024-07-24T23:06:59.010000"],["2024-07-24T23:07:00.010000"],["2024-07-24T23:07:01.010000"],["2024-07-24T23:07:02.010000"],["2024-07-24T23:07:03.010000"],["2024-07-24T23:07:04.010000"],["2024-07-24T23:07:05.010000"],["2024-07-24T23:07:06.010000"],["2024-07-24T23:07:07.010000"],["2024-07-24T23:07:08.010000"],["2024-07-24T23:07:09.010000"],["2024-07-24T23:07:10.010000"],["2024-07-24T23:07:11.010000"],["2024-07-24T23:07:12.010000"],["2024-07-24T23:07:13.010000"],["2024-07-24T23:07:14.010000"],["2024-07-24T23:07:15.010000"],["2024-07-24T23:07:16.010000"],["2024-07-24T23:07:17.010000"],["2024-07-24T23:07:18.010000"],["2024-07-24T23:07:19.010000"],["2024-07-24T23:07:20.010000"],["2024-07-24T23:07:21.010000"],["2024-07-24T23:07:22.010000"],["2024-07-24T23:07:23.010000"],["2024-07-24T23:07:24.010000"],["2024-07-24T23:07:25.010000"],["2024-07-24T23:07:26.010000"],["2024-07-24T23:07:27.010000"],["2024-07-24T23:07:28.010000"],["2024-07-24T23:07:29.010000"],["2024-07-24T23:07:30.010000"],["2024-07-24T23:07:31.010000"],["2024-07-24T23:07:32.010000"],["2024-07-24T23:07:33.010000"],["2024-07-24T23:07:34.010000"],["2024-07-24T23:07:35.010000"],["2024-07-24T23:07:36.010000"],["2024-07-24T23:07:37.010000"],["2024-07-24T23:07:38.010000"],["2024-07-24T23:07:39.010000"],["2024-07-24T23:07:40.010000"],["2024-07-24T23:07:41.010000"],["2024-07-24T23:07:42.010000"],["2024-07-24T23:07:43.010000"],["2024-07-24T23:07:44.010000"],["2024-07-24T23:07:45.010000"],["2024-07-24T23:07:46.010000"],["2024-07-24T23:07:47.010000"],["2024-07-24T23:07:48.010000"],["2024-07-24T23:07:49.010000"],["2024-07-24T23:07:50.010000"],["2024-07-24T23:07:51.010000"],["2024-07-24T23:07:52.010000"],["2024-07-24T23:07:53.010000"],["2024-07-24T23:07:54.010000"],["2024-07-24T23:07:55.010000"],["2024-07-24T23:07:56.010000"],["2024-07-24T23:07:57.010000"],["2024-07-24T23:07:58.010000"],["2024-07-24T23:07:59.010000"],["2024-07-24T23:08:00.010000"],["2024-07-24T23:08:01.010000"],["2024-07-24T23:08:02.010000"],["2024-07-24T23:08:03.010000"],["2024-07-24T23:08:04.010000"],["2024-07-24T23:08:05.010000"],["2024-07-24T23:08:06.010000"],["2024-07-24T23:08:07.010000"],["2024-07-24T23:08:08.010000"],["2024-07-24T23:08:09.010000"],["2024-07-24T23:08:10.010000"],["2024-07-24T23:08:11.010000"],["2024-07-24T23:08:12.010000"],["2024-07-24T23:08:13.010000"],["2024-07-24T23:08:14.010000"],["2024-07-24T23:08:15.010000"],["2024-07-24T23:08:16.010000"],["2024-07-24T23:08:17.010000"],["2024-07-24T23:08:18.010000"],["2024-07-24T23:08:19.010000"],["2024-07-24T23:08:20.010000"],["2024-07-24T23:08:21.010000"],["2024-07-24T23:08:22.010000"],["2024-07-24T23:08:23.010000"],["2024-07-24T23:08:24.010000"],["2024-07-24T23:08:25.010000"],["2024-07-24T23:08:26.010000"],["2024-07-24T23:08:27.010000"],["2024-07-24T23:08:28.010000"],["2024-07-24T23:08:29.010000"],["2024-07-24T23:08:30.010000"],["2024-07-24T23:08:31.010000"],["2024-07-24T23:08:32.010000"],["2024-07-24T23:08:33.010000"],["2024-07-24T23:08:34.010000"],["2024-07-24T23:08:35.010000"],["2024-07-24T23:08:36.010000"],["2024-07-24T23:08:37.010000"],["2024-07-24T23:08:38.010000"],["2024-07-24T23:08:39.010000"],["2024-07-24T23:08:40.010000"],["2024-07-24T23:08:41.010000"],["2024-07-24T23:08:42.010000"],["2024-07-24T23:08:43.010000"],["2024-07-24T23:08:44.010000"],["2024-07-24T23:08:45.010000"],["2024-07-24T23:08:46.010000"],["2024-07-24T23:08:47.010000"],["2024-07-24T23:08:48.010000"],["2024-07-24T23:08:49.010000"],["2024-07-24T23:08:50.010000"],["2024-07-24T23:08:51.010000"],["2024-07-24T23:08:52.010000"],["2024-07-24T23:08:53.010000"],["2024-07-24T23:08:54.010000"],["2024-07-24T23:08:55.010000"],["2024-07-24T23:08:56.010000"],["2024-07-24T23:08:57.010000"],["2024-07-24T23:08:58.010000"],["2024-07-24T23:08:59.010000"],["2024-07-24T23:09:00.010000"],["2024-07-24T23:09:01.010000"],["2024-07-24T23:09:02.010000"],["2024-07-24T23:09:03.010000"],["2024-07-24T23:09:04.010000"],["2024-07-24T23:09:05.010000"],["2024-07-24T23:09:06.010000"],["2024-07-24T23:09:07.010000"],["2024-07-24T23:09:08.010000"],["2024-07-24T23:09:09.010000"],["2024-07-24T23:09:10.010000"],["2024-07-24T23:09:11.010000"],["2024-07-24T23:09:12.010000"],["2024-07-24T23:09:13.010000"],["2024-07-24T23:09:14.010000"],["2024-07-24T23:09:15.010000"],["2024-07-24T23:09:16.010000"],["2024-07-24T23:09:17.010000"],["2024-07-24T23:09:18.010000"],["2024-07-24T23:09:19.010000"],["2024-07-24T23:09:20.010000"],["2024-07-24T23:09:21.010000"],["2024-07-24T23:09:22.010000"],["2024-07-24T23:09:23.010000"],["2024-07-24T23:09:24.010000"],["2024-07-24T23:09:25.010000"],["2024-07-24T23:09:26.010000"],["2024-07-24T23:09:27.010000"],["2024-07-24T23:09:28.010000"],["2024-07-24T23:09:29.010000"],["2024-07-24T23:09:30.010000"],["2024-07-24T23:09:31.010000"],["2024-07-24T23:09:32.010000"],["2024-07-24T23:09:33.010000"],["2024-07-24T23:09:34.010000"],["2024-07-24T23:09:35.010000"],["2024-07-24T23:09:36.010000"],["2024-07-24T23:09:37.010000"],["2024-07-24T23:09:38.010000"],["2024-07-24T23:09:39.010000"],["2024-07-24T23:09:40.010000"],["2024-07-24T23:09:41.010000"],["2024-07-24T23:09:42.010000"],["2024-07-24T23:09:43.010000"],["2024-07-24T23:09:44.010000"],["2024-07-24T23:09:45.010000"],["2024-07-24T23:09:46.010000"],["2024-07-24T23:09:47.010000"],["2024-07-24T23:09:48.010000"],["2024-07-24T23:09:49.010000"],["2024-07-24T23:09:50.010000"],["2024-07-24T23:09:51.010000"],["2024-07-24T23:09:52.010000"],["2024-07-24T23:09:53.010000"],["2024-07-24T23:09:54.010000"],["2024-07-24T23:09:55.010000"],["2024-07-24T23:09:56.010000"],["2024-07-24T23:09:57.010000"],["2024-07-24T23:09:58.010000"],["2024-07-24T23:09:59.010000"],["2024-07-24T23:10:00.010000"],["2024-07-24T23:10:01.010000"],["2024-07-24T23:10:02.010000"],["2024-07-24T23:10:03.010000"],["2024-07-24T23:10:04.010000"],["2024-07-24T23:10:05.010000"],["2024-07-24T23:10:06.010000"],["2024-07-24T23:10:07.010000"],["2024-07-24T23:10:08.010000"],["2024-07-24T23:10:09.010000"],["2024-07-24T23:10:10.010000"],["2024-07-24T23:10:11.010000"],["2024-07-24T23:10:12.010000"],["2024-07-24T23:10:13.010000"],["2024-07-24T23:10:14.010000"],["2024-07-24T23:10:15.010000"],["2024-07-24T23:10:16.010000"],["2024-07-24T23:10:17.010000"],["2024-07-24T23:10:18.010000"],["2024-07-24T23:10:19.010000"],["2024-07-24T23:10:20.010000"],["2024-07-24T23:10:21.010000"],["2024-07-24T23:10:22.010000"],["2024-07-24T23:10:23.010000"],["2024-07-24T23:10:24.010000"],["2024-07-24T23:10:25.010000"],["2024-07-24T23:10:26.010000"],["2024-07-24T23:10:27.010000"],["2024-07-24T23:10:28.010000"],["2024-07-24T23:10:29.010000"],["2024-07-24T23:10:30.010000"],["2024-07-24T23:10:31.010000"],["2024-07-24T23:10:32.010000"],["2024-07-24T23:10:33.010000"],["2024-07-24T23:10:34.010000"],["2024-07-24T23:10:35.010000"],["2024-07-24T23:10:36.010000"],["2024-07-24T23:10:37.010000"],["2024-07-24T23:10:38.010000"],["2024-07-24T23:10:39.010000"],["2024-07-24T23:10:40.010000"],["2024-07-24T23:10:41.010000"],["2024-07-24T23:10:42.010000"],["2024-07-24T23:10:43.010000"],["2024-07-24T23:10:44.010000"],["2024-07-24T23:10:45.010000"],["2024-07-24T23:10:46.010000"],["2024-07-24T23:10:47.010000"],["2024-07-24T23:10:48.010000"],["2024-07-24T23:10:49.010000"],["2024-07-24T23:10:50.010000"],["2024-07-24T23:10:51.010000"],["2024-07-24T23:10:52.010000"],["2024-07-24T23:10:53.010000"],["2024-07-24T23:10:54.010000"],["2024-07-24T23:10:55.010000"],["2024-07-24T23:10:56.010000"],["2024-07-24T23:10:57.010000"],["2024-07-24T23:10:58.010000"],["2024-07-24T23:10:59.010000"],["2024-07-24T23:11:00.010000"],["2024-07-24T23:11:01.010000"],["2024-07-24T23:11:02.010000"],["2024-07-24T23:11:03.010000"],["2024-07-24T23:11:04.010000"],["2024-07-24T23:11:05.010000"],["2024-07-24T23:11:06.010000"],["2024-07-24T23:11:07.010000"],["2024-07-24T23:11:08.010000"],["2024-07-24T23:11:09.010000"],["2024-07-24T23:11:10.010000"],["2024-07-24T23:11:11.010000"],["2024-07-24T23:11:12.010000"],["2024-07-24T23:11:13.010000"],["2024-07-24T23:11:14.010000"],["2024-07-24T23:11:15.010000"],["2024-07-24T23:11:16.010000"],["2024-07-24T23:11:17.010000"],["2024-07-24T23:11:18.010000"],["2024-07-24T23:11:19.010000"],["2024-07-24T23:11:20.010000"],["2024-07-24T23:11:21.010000"],["2024-07-24T23:11:22.010000"],["2024-07-24T23:11:23.010000"],["2024-07-24T23:11:24.010000"],["2024-07-24T23:11:25.010000"],["2024-07-24T23:11:26.010000"],["2024-07-24T23:11:27.010000"],["2024-07-24T23:11:28.010000"],["2024-07-24T23:11:29.010000"],["2024-07-24T23:11:30.010000"],["2024-07-24T23:11:31.010000"],["2024-07-24T23:11:32.010000"],["2024-07-24T23:11:33.010000"],["2024-07-24T23:11:34.010000"],["2024-07-24T23:11:35.010000"],["2024-07-24T23:11:36.010000"],["2024-07-24T23:11:37.010000"],["2024-07-24T23:11:38.010000"],["2024-07-24T23:11:39.010000"],["2024-07-24T23:11:40.010000"],["2024-07-24T23:11:41.010000"],["2024-07-24T23:11:42.010000"],["2024-07-24T23:11:43.010000"],["2024-07-24T23:11:44.010000"],["2024-07-24T23:11:45.010000"],["2024-07-24T23:11:46.010000"],["2024-07-24T23:11:47.010000"],["2024-07-24T23:11:48.010000"],["2024-07-24T23:11:49.010000"],["2024-07-24T23:11:50.010000"],["2024-07-24T23:11:51.010000"],["2024-07-24T23:11:52.010000"],["2024-07-24T23:11:53.010000"],["2024-07-24T23:11:54.010000"],["2024-07-24T23:11:55.010000"],["2024-07-24T23:11:56.010000"],["2024-07-24T23:11:57.010000"],["2024-07-24T23:11:58.010000"],["2024-07-24T23:11:59.010000"],["2024-07-24T23:12:00.010000"],["2024-07-24T23:12:01.010000"],["2024-07-24T23:12:02.010000"],["2024-07-24T23:12:03.010000"],["2024-07-24T23:12:04.010000"],["2024-07-24T23:12:05.010000"],["2024-07-24T23:12:06.010000"],["2024-07-24T23:12:07.010000"],["2024-07-24T23:12:08.010000"],["2024-07-24T23:12:09.010000"],["2024-07-24T23:12:10.010000"],["2024-07-24T23:12:11.010000"],["2024-07-24T23:12:12.010000"],["2024-07-24T23:12:13.010000"],["2024-07-24T23:12:14.010000"],["2024-07-24T23:12:15.010000"],["2024-07-24T23:12:16.010000"],["2024-07-24T23:12:17.010000"],["2024-07-24T23:12:18.010000"],["2024-07-24T23:12:19.010000"],["2024-07-24T23:12:20.010000"],["2024-07-24T23:12:21.010000"],["2024-07-24T23:12:22.010000"],["2024-07-24T23:12:23.010000"],["2024-07-24T23:12:24.010000"],["2024-07-24T23:12:25.010000"],["2024-07-24T23:12:26.010000"],["2024-07-24T23:12:27.010000"],["2024-07-24T23:12:28.010000"],["2024-07-24T23:12:29.010000"],["2024-07-24T23:12:30.010000"],["2024-07-24T23:12:31.010000"],["2024-07-24T23:12:32.010000"],["2024-07-24T23:12:33.010000"],["2024-07-24T23:12:34.010000"],["2024-07-24T23:12:35.010000"],["2024-07-24T23:12:36.010000"],["2024-07-24T23:12:37.010000"],["2024-07-24T23:12:38.010000"],["2024-07-24T23:12:39.010000"],["2024-07-24T23:12:40.010000"],["2024-07-24T23:12:41.010000"],["2024-07-24T23:12:42.010000"],["2024-07-24T23:12:43.010000"],["2024-07-24T23:12:44.010000"],["2024-07-24T23:12:45.010000"],["2024-07-24T23:12:46.010000"],["2024-07-24T23:12:47.010000"],["2024-07-24T23:12:48.010000"],["2024-07-24T23:12:49.010000"],["2024-07-24T23:12:50.010000"],["2024-07-24T23:12:51.010000"],["2024-07-24T23:12:52.010000"],["2024-07-24T23:12:53.010000"],["2024-07-24T23:12:54.010000"],["2024-07-24T23:12:55.010000"],["2024-07-24T23:12:56.010000"],["2024-07-24T23:12:57.010000"],["2024-07-24T23:12:58.010000"],["2024-07-24T23:12:59.010000"],["2024-07-24T23:13:00.010000"],["2024-07-24T23:13:01.010000"],["2024-07-24T23:13:02.010000"],["2024-07-24T23:13:03.010000"],["2024-07-24T23:13:04.010000"],["2024-07-24T23:13:05.010000"],["2024-07-24T23:13:06.010000"],["2024-07-24T23:13:07.010000"],["2024-07-24T23:13:08.010000"],["2024-07-24T23:13:09.010000"],["2024-07-24T23:13:10.010000"],["2024-07-24T23:13:11.010000"],["2024-07-24T23:13:12.010000"],["2024-07-24T23:13:13.010000"],["2024-07-24T23:13:14.010000"],["2024-07-24T23:13:15.010000"],["2024-07-24T23:13:16.010000"],["2024-07-24T23:13:17.010000"],["2024-07-24T23:13:18.010000"],["2024-07-24T23:13:19.010000"],["2024-07-24T23:13:20.010000"],["2024-07-24T23:13:21.010000"],["2024-07-24T23:13:22.010000"],["2024-07-24T23:13:23.010000"],["2024-07-24T23:13:24.010000"],["2024-07-24T23:13:25.010000"],["2024-07-24T23:13:26.010000"],["2024-07-24T23:13:27.010000"],["2024-07-24T23:13:28.010000"],["2024-07-24T23:13:29.010000"],["2024-07-24T23:13:30.010000"],["2024-07-24T23:13:31.010000"],["2024-07-24T23:13:32.010000"],["2024-07-24T23:13:33.010000"],["2024-07-24T23:13:34.010000"],["2024-07-24T23:13:35.010000"],["2024-07-24T23:13:36.010000"],["2024-07-24T23:13:37.010000"],["2024-07-24T23:13:38.010000"],["2024-07-24T23:13:39.010000"],["2024-07-24T23:13:40.010000"],["2024-07-24T23:13:41.010000"],["2024-07-24T23:13:42.010000"],["2024-07-24T23:13:43.010000"],["2024-07-24T23:13:44.010000"],["2024-07-24T23:13:45.010000"],["2024-07-24T23:13:46.010000"],["2024-07-24T23:13:47.010000"],["2024-07-24T23:13:48.010000"],["2024-07-24T23:13:49.010000"],["2024-07-24T23:13:50.010000"],["2024-07-24T23:13:51.010000"],["2024-07-24T23:13:52.010000"],["2024-07-24T23:13:53.010000"],["2024-07-24T23:13:54.010000"],["2024-07-24T23:13:55.010000"],["2024-07-24T23:13:56.010000"],["2024-07-24T23:13:57.010000"],["2024-07-24T23:13:58.010000"],["2024-07-24T23:13:59.010000"],["2024-07-24T23:14:00.010000"],["2024-07-24T23:14:01.010000"],["2024-07-24T23:14:02.010000"],["2024-07-24T23:14:03.010000"],["2024-07-24T23:14:04.010000"],["2024-07-24T23:14:05.010000"],["2024-07-24T23:14:06.010000"],["2024-07-24T23:14:07.010000"],["2024-07-24T23:14:08.010000"],["2024-07-24T23:14:09.010000"],["2024-07-24T23:14:10.010000"],["2024-07-24T23:14:11.010000"],["2024-07-24T23:14:12.010000"],["2024-07-24T23:14:13.010000"],["2024-07-24T23:14:14.010000"],["2024-07-24T23:14:15.010000"],["2024-07-24T23:14:16.010000"],["2024-07-24T23:14:17.010000"],["2024-07-24T23:14:18.010000"],["2024-07-24T23:14:19.010000"],["2024-07-24T23:14:20.010000"],["2024-07-24T23:14:21.010000"],["2024-07-24T23:14:22.010000"],["2024-07-24T23:14:23.010000"],["2024-07-24T23:14:24.010000"],["2024-07-24T23:14:25.010000"],["2024-07-24T23:14:26.010000"],["2024-07-24T23:14:27.010000"],["2024-07-24T23:14:28.010000"],["2024-07-24T23:14:29.010000"],["2024-07-24T23:14:30.010000"],["2024-07-24T23:14:31.010000"],["2024-07-24T23:14:32.010000"],["2024-07-24T23:14:33.010000"],["2024-07-24T23:14:34.010000"],["2024-07-24T23:14:35.010000"],["2024-07-24T23:14:36.010000"],["2024-07-24T23:14:37.010000"],["2024-07-24T23:14:38.010000"],["2024-07-24T23:14:39.010000"],["2024-07-24T23:14:40.010000"],["2024-07-24T23:14:41.010000"],["2024-07-24T23:14:42.010000"],["2024-07-24T23:14:43.010000"],["2024-07-24T23:14:44.010000"],["2024-07-24T23:14:45.010000"],["2024-07-24T23:14:46.010000"],["2024-07-24T23:14:47.010000"],["2024-07-24T23:14:48.010000"],["2024-07-24T23:14:49.010000"],["2024-07-24T23:14:50.010000"],["2024-07-24T23:14:51.010000"],["2024-07-24T23:14:52.010000"],["2024-07-24T23:14:53.010000"],["2024-07-24T23:14:54.010000"],["2024-07-24T23:14:55.010000"],["2024-07-24T23:14:56.010000"],["2024-07-24T23:14:57.010000"],["2024-07-24T23:14:58.010000"],["2024-07-24T23:14:59.010000"],["2024-07-24T23:15:00.010000"],["2024-07-24T23:15:01.010000"],["2024-07-24T23:15:02.010000"],["2024-07-24T23:15:03.010000"],["2024-07-24T23:15:04.010000"],["2024-07-24T23:15:05.010000"],["2024-07-24T23:15:06.010000"],["2024-07-24T23:15:07.010000"],["2024-07-24T23:15:08.010000"],["2024-07-24T23:15:09.010000"],["2024-07-24T23:15:10.010000"],["2024-07-24T23:15:11.010000"],["2024-07-24T23:15:12.010000"],["2024-07-24T23:15:13.010000"],["2024-07-24T23:15:14.010000"],["2024-07-24T23:15:15.010000"],["2024-07-24T23:15:16.010000"],["2024-07-24T23:15:17.010000"],["2024-07-24T23:15:18.010000"],["2024-07-24T23:15:19.010000"],["2024-07-24T23:15:20.010000"],["2024-07-24T23:15:21.010000"],["2024-07-24T23:15:22.010000"],["2024-07-24T23:15:23.010000"],["2024-07-24T23:15:24.010000"],["2024-07-24T23:15:25.010000"],["2024-07-24T23:15:26.010000"],["2024-07-24T23:15:27.010000"],["2024-07-24T23:15:28.010000"],["2024-07-24T23:15:29.010000"],["2024-07-24T23:15:30.010000"],["2024-07-24T23:15:31.010000"],["2024-07-24T23:15:32.010000"],["2024-07-24T23:15:33.010000"],["2024-07-24T23:15:34.010000"],["2024-07-24T23:15:35.010000"],["2024-07-24T23:15:36.010000"],["2024-07-24T23:15:37.010000"],["2024-07-24T23:15:38.010000"],["2024-07-24T23:15:39.010000"],["2024-07-24T23:15:40.010000"],["2024-07-24T23:15:41.010000"],["2024-07-24T23:15:42.010000"],["2024-07-24T23:15:43.010000"],["2024-07-24T23:15:44.010000"],["2024-07-24T23:15:45.010000"],["2024-07-24T23:15:46.010000"],["2024-07-24T23:15:47.010000"],["2024-07-24T23:15:48.010000"],["2024-07-24T23:15:49.010000"],["2024-07-24T23:15:50.010000"],["2024-07-24T23:15:51.010000"],["2024-07-24T23:15:52.010000"],["2024-07-24T23:15:53.010000"],["2024-07-24T23:15:54.010000"],["2024-07-24T23:15:55.010000"],["2024-07-24T23:15:56.010000"],["2024-07-24T23:15:57.010000"],["2024-07-24T23:15:58.010000"],["2024-07-24T23:15:59.010000"],["2024-07-24T23:16:00.010000"],["2024-07-24T23:16:01.010000"],["2024-07-24T23:16:02.010000"],["2024-07-24T23:16:03.010000"],["2024-07-24T23:16:04.010000"],["2024-07-24T23:16:05.010000"],["2024-07-24T23:16:06.010000"],["2024-07-24T23:16:07.010000"],["2024-07-24T23:16:08.010000"],["2024-07-24T23:16:09.010000"],["2024-07-24T23:16:10.010000"],["2024-07-24T23:16:11.010000"],["2024-07-24T23:16:12.010000"],["2024-07-24T23:16:13.010000"],["2024-07-24T23:16:14.010000"],["2024-07-24T23:16:15.010000"],["2024-07-24T23:16:16.010000"],["2024-07-24T23:16:17.010000"],["2024-07-24T23:16:18.010000"],["2024-07-24T23:16:19.010000"],["2024-07-24T23:16:20.010000"],["2024-07-24T23:16:21.010000"],["2024-07-24T23:16:22.010000"],["2024-07-24T23:16:23.010000"],["2024-07-24T23:16:24.010000"],["2024-07-24T23:16:25.010000"],["2024-07-24T23:16:26.010000"],["2024-07-24T23:16:27.010000"],["2024-07-24T23:16:28.010000"],["2024-07-24T23:16:29.010000"],["2024-07-24T23:16:30.010000"],["2024-07-24T23:16:31.010000"],["2024-07-24T23:16:32.010000"],["2024-07-24T23:16:33.010000"],["2024-07-24T23:16:34.010000"],["2024-07-24T23:16:35.010000"],["2024-07-24T23:16:36.010000"],["2024-07-24T23:16:37.010000"],["2024-07-24T23:16:38.010000"],["2024-07-24T23:16:39.010000"],["2024-07-24T23:16:40.010000"],["2024-07-24T23:16:41.010000"],["2024-07-24T23:16:42.010000"],["2024-07-24T23:16:43.010000"],["2024-07-24T23:16:44.010000"],["2024-07-24T23:16:45.010000"],["2024-07-24T23:16:46.010000"],["2024-07-24T23:16:47.010000"],["2024-07-24T23:16:48.010000"],["2024-07-24T23:16:49.010000"],["2024-07-24T23:16:50.010000"],["2024-07-24T23:16:51.010000"],["2024-07-24T23:16:52.010000"],["2024-07-24T23:16:53.010000"],["2024-07-24T23:16:54.010000"],["2024-07-24T23:16:55.010000"],["2024-07-24T23:16:56.010000"],["2024-07-24T23:16:57.010000"],["2024-07-24T23:16:58.010000"],["2024-07-24T23:16:59.010000"],["2024-07-24T23:17:00.010000"],["2024-07-24T23:17:01.010000"],["2024-07-24T23:17:02.010000"],["2024-07-24T23:17:03.010000"],["2024-07-24T23:17:04.010000"],["2024-07-24T23:17:05.010000"],["2024-07-24T23:17:06.010000"],["2024-07-24T23:17:07.010000"],["2024-07-24T23:17:08.010000"],["2024-07-24T23:17:09.010000"],["2024-07-24T23:17:10.010000"],["2024-07-24T23:17:11.010000"],["2024-07-24T23:17:12.010000"],["2024-07-24T23:17:13.010000"],["2024-07-24T23:17:14.010000"],["2024-07-24T23:17:15.010000"],["2024-07-24T23:17:16.010000"],["2024-07-24T23:17:17.010000"],["2024-07-24T23:17:18.010000"],["2024-07-24T23:17:19.010000"],["2024-07-24T23:17:20.010000"],["2024-07-24T23:17:21.010000"],["2024-07-24T23:17:22.010000"],["2024-07-24T23:17:23.010000"],["2024-07-24T23:17:24.010000"],["2024-07-24T23:17:25.010000"],["2024-07-24T23:17:26.010000"],["2024-07-24T23:17:27.010000"],["2024-07-24T23:17:28.010000"],["2024-07-24T23:17:29.010000"],["2024-07-24T23:17:30.010000"],["2024-07-24T23:17:31.010000"],["2024-07-24T23:17:32.010000"],["2024-07-24T23:17:33.010000"],["2024-07-24T23:17:34.010000"],["2024-07-24T23:17:35.010000"],["2024-07-24T23:17:36.010000"],["2024-07-24T23:17:37.010000"],["2024-07-24T23:17:38.010000"],["2024-07-24T23:17:39.010000"],["2024-07-24T23:17:40.010000"],["2024-07-24T23:17:41.010000"],["2024-07-24T23:17:42.010000"],["2024-07-24T23:17:43.010000"],["2024-07-24T23:17:44.010000"],["2024-07-24T23:17:45.010000"],["2024-07-24T23:17:46.010000"],["2024-07-24T23:17:47.010000"],["2024-07-24T23:17:48.010000"],["2024-07-24T23:17:49.010000"],["2024-07-24T23:17:50.010000"],["2024-07-24T23:17:51.010000"],["2024-07-24T23:17:52.010000"],["2024-07-24T23:17:53.010000"],["2024-07-24T23:17:54.010000"],["2024-07-24T23:17:55.010000"],["2024-07-24T23:17:56.010000"],["2024-07-24T23:17:57.010000"],["2024-07-24T23:17:58.010000"],["2024-07-24T23:17:59.010000"],["2024-07-24T23:18:00.010000"],["2024-07-24T23:18:01.010000"],["2024-07-24T23:18:02.010000"],["2024-07-24T23:18:03.010000"],["2024-07-24T23:18:04.010000"],["2024-07-24T23:18:05.010000"],["2024-07-24T23:18:06.010000"],["2024-07-24T23:18:07.010000"],["2024-07-24T23:18:08.010000"],["2024-07-24T23:18:09.010000"],["2024-07-24T23:18:10.010000"],["2024-07-24T23:18:11.010000"],["2024-07-24T23:18:12.010000"],["2024-07-24T23:18:13.010000"],["2024-07-24T23:18:14.010000"],["2024-07-24T23:18:15.010000"],["2024-07-24T23:18:16.010000"],["2024-07-24T23:18:17.010000"],["2024-07-24T23:18:18.010000"],["2024-07-24T23:18:19.010000"],["2024-07-24T23:18:20.010000"],["2024-07-24T23:18:21.010000"],["2024-07-24T23:18:22.010000"],["2024-07-24T23:18:23.010000"],["2024-07-24T23:18:24.010000"],["2024-07-24T23:18:25.010000"],["2024-07-24T23:18:26.010000"],["2024-07-24T23:18:27.010000"],["2024-07-24T23:18:28.010000"],["2024-07-24T23:18:29.010000"],["2024-07-24T23:18:30.010000"],["2024-07-24T23:18:31.010000"],["2024-07-24T23:18:32.010000"],["2024-07-24T23:18:33.010000"],["2024-07-24T23:18:34.010000"],["2024-07-24T23:18:35.010000"],["2024-07-24T23:18:36.010000"],["2024-07-24T23:18:37.010000"],["2024-07-24T23:18:38.010000"],["2024-07-24T23:18:39.010000"],["2024-07-24T23:18:40.010000"],["2024-07-24T23:18:41.010000"],["2024-07-24T23:18:42.010000"],["2024-07-24T23:18:43.010000"],["2024-07-24T23:18:44.010000"],["2024-07-24T23:18:45.010000"],["2024-07-24T23:18:46.010000"],["2024-07-24T23:18:47.010000"],["2024-07-24T23:18:48.010000"],["2024-07-24T23:18:49.010000"],["2024-07-24T23:18:50.010000"],["2024-07-24T23:18:51.010000"],["2024-07-24T23:18:52.010000"],["2024-07-24T23:18:53.010000"],["2024-07-24T23:18:54.010000"],["2024-07-24T23:18:55.010000"],["2024-07-24T23:18:56.010000"],["2024-07-24T23:18:57.010000"],["2024-07-24T23:18:58.010000"],["2024-07-24T23:18:59.010000"],["2024-07-24T23:19:00.010000"],["2024-07-24T23:19:01.010000"],["2024-07-24T23:19:02.010000"],["2024-07-24T23:19:03.010000"],["2024-07-24T23:19:04.010000"],["2024-07-24T23:19:05.010000"],["2024-07-24T23:19:06.010000"],["2024-07-24T23:19:07.010000"],["2024-07-24T23:19:08.010000"],["2024-07-24T23:19:09.010000"],["2024-07-24T23:19:10.010000"],["2024-07-24T23:19:11.010000"],["2024-07-24T23:19:12.010000"],["2024-07-24T23:19:13.010000"],["2024-07-24T23:19:14.010000"],["2024-07-24T23:19:15.010000"],["2024-07-24T23:19:16.010000"],["2024-07-24T23:19:17.010000"],["2024-07-24T23:19:18.010000"],["2024-07-24T23:19:19.010000"],["2024-07-24T23:19:20.010000"],["2024-07-24T23:19:21.010000"],["2024-07-24T23:19:22.010000"],["2024-07-24T23:19:23.010000"],["2024-07-24T23:19:24.010000"],["2024-07-24T23:19:25.010000"],["2024-07-24T23:19:26.010000"],["2024-07-24T23:19:27.010000"],["2024-07-24T23:19:28.010000"],["2024-07-24T23:19:29.010000"],["2024-07-24T23:19:30.010000"],["2024-07-24T23:19:31.010000"],["2024-07-24T23:19:32.010000"],["2024-07-24T23:19:33.010000"],["2024-07-24T23:19:34.010000"],["2024-07-24T23:19:35.010000"],["2024-07-24T23:19:36.010000"],["2024-07-24T23:19:37.010000"],["2024-07-24T23:19:38.010000"],["2024-07-24T23:19:39.010000"],["2024-07-24T23:19:40.010000"],["2024-07-24T23:19:41.010000"],["2024-07-24T23:19:42.010000"],["2024-07-24T23:19:43.010000"],["2024-07-24T23:19:44.010000"],["2024-07-24T23:19:45.010000"],["2024-07-24T23:19:46.010000"],["2024-07-24T23:19:47.010000"],["2024-07-24T23:19:48.010000"],["2024-07-24T23:19:49.010000"],["2024-07-24T23:19:50.010000"],["2024-07-24T23:19:51.010000"],["2024-07-24T23:19:52.010000"],["2024-07-24T23:19:53.010000"],["2024-07-24T23:19:54.010000"],["2024-07-24T23:19:55.010000"],["2024-07-24T23:19:56.010000"],["2024-07-24T23:19:57.010000"],["2024-07-24T23:19:58.010000"],["2024-07-24T23:19:59.010000"],["2024-07-24T23:20:00.010000"],["2024-07-24T23:20:01.010000"],["2024-07-24T23:20:02.010000"],["2024-07-24T23:20:03.010000"],["2024-07-24T23:20:04.010000"],["2024-07-24T23:20:05.010000"],["2024-07-24T23:20:06.010000"],["2024-07-24T23:20:07.010000"],["2024-07-24T23:20:08.010000"],["2024-07-24T23:20:09.010000"],["2024-07-24T23:20:10.010000"],["2024-07-24T23:20:11.010000"],["2024-07-24T23:20:12.010000"],["2024-07-24T23:20:13.010000"],["2024-07-24T23:20:14.010000"],["2024-07-24T23:20:15.010000"],["2024-07-24T23:20:16.010000"],["2024-07-24T23:20:17.010000"],["2024-07-24T23:20:18.010000"],["2024-07-24T23:20:19.010000"],["2024-07-24T23:20:20.010000"],["2024-07-24T23:20:21.010000"],["2024-07-24T23:20:22.010000"],["2024-07-24T23:20:23.010000"],["2024-07-24T23:20:24.010000"],["2024-07-24T23:20:25.010000"],["2024-07-24T23:20:26.010000"],["2024-07-24T23:20:27.010000"],["2024-07-24T23:20:28.010000"],["2024-07-24T23:20:29.010000"],["2024-07-24T23:20:30.010000"],["2024-07-24T23:20:31.010000"],["2024-07-24T23:20:32.010000"],["2024-07-24T23:20:33.010000"],["2024-07-24T23:20:34.010000"],["2024-07-24T23:20:35.010000"],["2024-07-24T23:20:36.010000"],["2024-07-24T23:20:37.010000"],["2024-07-24T23:20:38.010000"],["2024-07-24T23:20:39.010000"],["2024-07-24T23:20:40.010000"],["2024-07-24T23:20:41.010000"],["2024-07-24T23:20:42.010000"],["2024-07-24T23:20:43.010000"],["2024-07-24T23:20:44.010000"],["2024-07-24T23:20:45.010000"],["2024-07-24T23:20:46.010000"],["2024-07-24T23:20:47.010000"],["2024-07-24T23:20:48.010000"],["2024-07-24T23:20:49.010000"],["2024-07-24T23:20:50.010000"],["2024-07-24T23:20:51.010000"],["2024-07-24T23:20:52.010000"],["2024-07-24T23:20:53.010000"],["2024-07-24T23:20:54.010000"],["2024-07-24T23:20:55.010000"],["2024-07-24T23:20:56.010000"],["2024-07-24T23:20:57.010000"],["2024-07-24T23:20:58.010000"],["2024-07-24T23:20:59.010000"],["2024-07-24T23:21:00.010000"],["2024-07-24T23:21:01.010000"],["2024-07-24T23:21:02.010000"],["2024-07-24T23:21:03.010000"],["2024-07-24T23:21:04.010000"],["2024-07-24T23:21:05.010000"],["2024-07-24T23:21:06.010000"],["2024-07-24T23:21:07.010000"],["2024-07-24T23:21:08.010000"],["2024-07-24T23:21:09.010000"],["2024-07-24T23:21:10.010000"],["2024-07-24T23:21:11.010000"],["2024-07-24T23:21:12.010000"],["2024-07-24T23:21:13.010000"],["2024-07-24T23:21:14.010000"],["2024-07-24T23:21:15.010000"],["2024-07-24T23:21:16.010000"],["2024-07-24T23:21:17.010000"],["2024-07-24T23:21:18.010000"],["2024-07-24T23:21:19.010000"],["2024-07-24T23:21:20.010000"],["2024-07-24T23:21:21.010000"],["2024-07-24T23:21:22.010000"],["2024-07-24T23:21:23.010000"],["2024-07-24T23:21:24.010000"],["2024-07-24T23:21:25.010000"],["2024-07-24T23:21:26.010000"],["2024-07-24T23:21:27.010000"],["2024-07-24T23:21:28.010000"],["2024-07-24T23:21:29.010000"],["2024-07-24T23:21:30.010000"],["2024-07-24T23:21:31.010000"],["2024-07-24T23:21:32.010000"],["2024-07-24T23:21:33.010000"],["2024-07-24T23:21:34.010000"],["2024-07-24T23:21:35.010000"],["2024-07-24T23:21:36.010000"],["2024-07-24T23:21:37.010000"],["2024-07-24T23:21:38.010000"],["2024-07-24T23:21:39.010000"],["2024-07-24T23:21:40.010000"],["2024-07-24T23:21:41.010000"],["2024-07-24T23:21:42.010000"],["2024-07-24T23:21:43.010000"],["2024-07-24T23:21:44.010000"],["2024-07-24T23:21:45.010000"],["2024-07-24T23:21:46.010000"],["2024-07-24T23:21:47.010000"],["2024-07-24T23:21:48.010000"],["2024-07-24T23:21:49.010000"],["2024-07-24T23:21:50.010000"],["2024-07-24T23:21:51.010000"],["2024-07-24T23:21:52.010000"],["2024-07-24T23:21:53.010000"],["2024-07-24T23:21:54.010000"],["2024-07-24T23:21:55.010000"],["2024-07-24T23:21:56.010000"],["2024-07-24T23:21:57.010000"],["2024-07-24T23:21:58.010000"],["2024-07-24T23:21:59.010000"],["2024-07-24T23:22:00.010000"],["2024-07-24T23:22:01.010000"],["2024-07-24T23:22:02.010000"],["2024-07-24T23:22:03.010000"],["2024-07-24T23:22:04.010000"],["2024-07-24T23:22:05.010000"],["2024-07-24T23:22:06.010000"],["2024-07-24T23:22:07.010000"],["2024-07-24T23:22:08.010000"],["2024-07-24T23:22:09.010000"],["2024-07-24T23:22:10.010000"],["2024-07-24T23:22:11.010000"],["2024-07-24T23:22:12.010000"],["2024-07-24T23:22:13.010000"],["2024-07-24T23:22:14.010000"],["2024-07-24T23:22:15.010000"],["2024-07-24T23:22:16.010000"],["2024-07-24T23:22:17.010000"],["2024-07-24T23:22:18.010000"],["2024-07-24T23:22:19.010000"],["2024-07-24T23:22:20.010000"],["2024-07-24T23:22:21.010000"],["2024-07-24T23:22:22.010000"],["2024-07-24T23:22:23.010000"],["2024-07-24T23:22:24.010000"],["2024-07-24T23:22:25.010000"],["2024-07-24T23:22:26.010000"],["2024-07-24T23:22:27.010000"],["2024-07-24T23:22:28.010000"],["2024-07-24T23:22:29.010000"],["2024-07-24T23:22:30.010000"],["2024-07-24T23:22:31.010000"],["2024-07-24T23:22:32.010000"],["2024-07-24T23:22:33.010000"],["2024-07-24T23:22:34.010000"],["2024-07-24T23:22:35.010000"],["2024-07-24T23:22:36.010000"],["2024-07-24T23:22:37.010000"],["2024-07-24T23:22:38.010000"],["2024-07-24T23:22:39.010000"],["2024-07-24T23:22:40.010000"],["2024-07-24T23:22:41.010000"],["2024-07-24T23:22:42.010000"],["2024-07-24T23:22:43.010000"],["2024-07-24T23:22:44.010000"],["2024-07-24T23:22:45.010000"],["2024-07-24T23:22:46.010000"],["2024-07-24T23:22:47.010000"],["2024-07-24T23:22:48.010000"],["2024-07-24T23:22:49.010000"],["2024-07-24T23:22:50.010000"],["2024-07-24T23:22:51.010000"],["2024-07-24T23:22:52.010000"],["2024-07-24T23:22:53.010000"],["2024-07-24T23:22:54.010000"],["2024-07-24T23:22:55.010000"],["2024-07-24T23:22:56.010000"],["2024-07-24T23:22:57.010000"],["2024-07-24T23:22:58.010000"],["2024-07-24T23:22:59.010000"],["2024-07-24T23:23:00.010000"],["2024-07-24T23:23:01.010000"],["2024-07-24T23:23:02.010000"],["2024-07-24T23:23:03.010000"],["2024-07-24T23:23:04.010000"],["2024-07-24T23:23:05.010000"],["2024-07-24T23:23:06.010000"],["2024-07-24T23:23:07.010000"],["2024-07-24T23:23:08.010000"],["2024-07-24T23:23:09.010000"],["2024-07-24T23:23:10.010000"],["2024-07-24T23:23:11.010000"],["2024-07-24T23:23:12.010000"],["2024-07-24T23:23:13.010000"],["2024-07-24T23:23:14.010000"],["2024-07-24T23:23:15.010000"],["2024-07-24T23:23:16.010000"],["2024-07-24T23:23:17.010000"],["2024-07-24T23:23:18.010000"],["2024-07-24T23:23:19.010000"],["2024-07-24T23:23:20.010000"],["2024-07-24T23:23:21.010000"],["2024-07-24T23:23:22.010000"],["2024-07-24T23:23:23.010000"],["2024-07-24T23:23:24.010000"],["2024-07-24T23:23:25.010000"],["2024-07-24T23:23:26.010000"],["2024-07-24T23:23:27.010000"],["2024-07-24T23:23:28.010000"],["2024-07-24T23:23:29.010000"],["2024-07-24T23:23:30.010000"],["2024-07-24T23:23:31.010000"],["2024-07-24T23:23:32.010000"],["2024-07-24T23:23:33.010000"],["2024-07-24T23:23:34.010000"],["2024-07-24T23:23:35.010000"],["2024-07-24T23:23:36.010000"],["2024-07-24T23:23:37.010000"],["2024-07-24T23:23:38.010000"],["2024-07-24T23:23:39.010000"],["2024-07-24T23:23:40.010000"],["2024-07-24T23:23:41.010000"],["2024-07-24T23:23:42.010000"],["2024-07-24T23:23:43.010000"],["2024-07-24T23:23:44.010000"],["2024-07-24T23:23:45.010000"],["2024-07-24T23:23:46.010000"],["2024-07-24T23:23:47.010000"],["2024-07-24T23:23:48.010000"],["2024-07-24T23:23:49.010000"],["2024-07-24T23:23:50.010000"],["2024-07-24T23:23:51.010000"],["2024-07-24T23:23:52.010000"],["2024-07-24T23:23:53.010000"],["2024-07-24T23:23:54.010000"],["2024-07-24T23:23:55.010000"],["2024-07-24T23:23:56.010000"],["2024-07-24T23:23:57.010000"],["2024-07-24T23:23:58.010000"],["2024-07-24T23:23:59.010000"],["2024-07-24T23:24:00.010000"],["2024-07-24T23:24:01.010000"],["2024-07-24T23:24:02.010000"],["2024-07-24T23:24:03.010000"],["2024-07-24T23:24:04.010000"],["2024-07-24T23:24:05.010000"],["2024-07-24T23:24:06.010000"],["2024-07-24T23:24:07.010000"],["2024-07-24T23:24:08.010000"],["2024-07-24T23:24:09.010000"],["2024-07-24T23:24:10.010000"],["2024-07-24T23:24:11.010000"],["2024-07-24T23:24:12.010000"],["2024-07-24T23:24:13.010000"],["2024-07-24T23:24:14.010000"],["2024-07-24T23:24:15.010000"],["2024-07-24T23:24:16.010000"],["2024-07-24T23:24:17.010000"],["2024-07-24T23:24:18.010000"],["2024-07-24T23:24:19.010000"],["2024-07-24T23:24:20.010000"],["2024-07-24T23:24:21.010000"],["2024-07-24T23:24:22.010000"],["2024-07-24T23:24:23.010000"],["2024-07-24T23:24:24.010000"],["2024-07-24T23:24:25.010000"],["2024-07-24T23:24:26.010000"],["2024-07-24T23:24:27.010000"],["2024-07-24T23:24:28.010000"],["2024-07-24T23:24:29.010000"],["2024-07-24T23:24:30.010000"],["2024-07-24T23:24:31.010000"],["2024-07-24T23:24:32.010000"],["2024-07-24T23:24:33.010000"],["2024-07-24T23:24:34.010000"],["2024-07-24T23:24:35.010000"],["2024-07-24T23:24:36.010000"],["2024-07-24T23:24:37.010000"],["2024-07-24T23:24:38.010000"],["2024-07-24T23:24:39.010000"],["2024-07-24T23:24:40.010000"],["2024-07-24T23:24:41.010000"],["2024-07-24T23:24:42.010000"],["2024-07-24T23:24:43.010000"],["2024-07-24T23:24:44.010000"],["2024-07-24T23:24:45.010000"],["2024-07-24T23:24:46.010000"],["2024-07-24T23:24:47.010000"],["2024-07-24T23:24:48.010000"],["2024-07-24T23:24:49.010000"],["2024-07-24T23:24:50.010000"],["2024-07-24T23:24:51.010000"],["2024-07-24T23:24:52.010000"],["2024-07-24T23:24:53.010000"],["2024-07-24T23:24:54.010000"],["2024-07-24T23:24:55.010000"],["2024-07-24T23:24:56.010000"],["2024-07-24T23:24:57.010000"],["2024-07-24T23:24:58.010000"],["2024-07-24T23:24:59.010000"],["2024-07-24T23:25:00.010000"],["2024-07-24T23:25:01.010000"],["2024-07-24T23:25:02.010000"],["2024-07-24T23:25:03.010000"],["2024-07-24T23:25:04.010000"],["2024-07-24T23:25:05.010000"],["2024-07-24T23:25:06.010000"],["2024-07-24T23:25:07.010000"],["2024-07-24T23:25:08.010000"],["2024-07-24T23:25:09.010000"],["2024-07-24T23:25:10.010000"],["2024-07-24T23:25:11.010000"],["2024-07-24T23:25:12.010000"],["2024-07-24T23:25:13.010000"],["2024-07-24T23:25:14.010000"],["2024-07-24T23:25:15.010000"],["2024-07-24T23:25:16.010000"],["2024-07-24T23:25:17.010000"],["2024-07-24T23:25:18.010000"],["2024-07-24T23:25:19.010000"],["2024-07-24T23:25:20.010000"],["2024-07-24T23:25:21.010000"],["2024-07-24T23:25:22.010000"],["2024-07-24T23:25:23.010000"],["2024-07-24T23:25:24.010000"],["2024-07-24T23:25:25.010000"],["2024-07-24T23:25:26.010000"],["2024-07-24T23:25:27.010000"],["2024-07-24T23:25:28.010000"],["2024-07-24T23:25:29.010000"],["2024-07-24T23:25:30.010000"],["2024-07-24T23:25:31.010000"],["2024-07-24T23:25:32.010000"],["2024-07-24T23:25:33.010000"],["2024-07-24T23:25:34.010000"],["2024-07-24T23:25:35.010000"],["2024-07-24T23:25:36.010000"],["2024-07-24T23:25:37.010000"],["2024-07-24T23:25:38.010000"],["2024-07-24T23:25:39.010000"],["2024-07-24T23:25:40.010000"],["2024-07-24T23:25:41.010000"],["2024-07-24T23:25:42.010000"],["2024-07-24T23:25:43.010000"],["2024-07-24T23:25:44.010000"],["2024-07-24T23:25:45.010000"],["2024-07-24T23:25:46.010000"],["2024-07-24T23:25:47.010000"],["2024-07-24T23:25:48.010000"],["2024-07-24T23:25:49.010000"],["2024-07-24T23:25:50.010000"],["2024-07-24T23:25:51.010000"],["2024-07-24T23:25:52.010000"],["2024-07-24T23:25:53.010000"],["2024-07-24T23:25:54.010000"],["2024-07-24T23:25:55.010000"],["2024-07-24T23:25:56.010000"],["2024-07-24T23:25:57.010000"],["2024-07-24T23:25:58.010000"],["2024-07-24T23:25:59.010000"],["2024-07-24T23:26:00.010000"],["2024-07-24T23:26:01.010000"],["2024-07-24T23:26:02.010000"],["2024-07-24T23:26:03.010000"],["2024-07-24T23:26:04.010000"],["2024-07-24T23:26:05.010000"],["2024-07-24T23:26:06.010000"],["2024-07-24T23:26:07.010000"],["2024-07-24T23:26:08.010000"],["2024-07-24T23:26:09.010000"],["2024-07-24T23:26:10.010000"],["2024-07-24T23:26:11.010000"],["2024-07-24T23:26:12.010000"],["2024-07-24T23:26:13.010000"],["2024-07-24T23:26:14.010000"],["2024-07-24T23:26:15.010000"],["2024-07-24T23:26:16.010000"],["2024-07-24T23:26:17.010000"],["2024-07-24T23:26:18.010000"],["2024-07-24T23:26:19.010000"],["2024-07-24T23:26:20.010000"],["2024-07-24T23:26:21.010000"],["2024-07-24T23:26:22.010000"],["2024-07-24T23:26:23.010000"],["2024-07-24T23:26:24.010000"],["2024-07-24T23:26:25.010000"],["2024-07-24T23:26:26.010000"],["2024-07-24T23:26:27.010000"],["2024-07-24T23:26:28.010000"],["2024-07-24T23:26:29.010000"],["2024-07-24T23:26:30.010000"],["2024-07-24T23:26:31.010000"],["2024-07-24T23:26:32.010000"],["2024-07-24T23:26:33.010000"],["2024-07-24T23:26:34.010000"],["2024-07-24T23:26:35.010000"],["2024-07-24T23:26:36.010000"],["2024-07-24T23:26:37.010000"],["2024-07-24T23:26:38.010000"],["2024-07-24T23:26:39.010000"],["2024-07-24T23:26:40.010000"],["2024-07-24T23:26:41.010000"],["2024-07-24T23:26:42.010000"],["2024-07-24T23:26:43.010000"],["2024-07-24T23:26:44.010000"],["2024-07-24T23:26:45.010000"],["2024-07-24T23:26:46.010000"],["2024-07-24T23:26:47.010000"],["2024-07-24T23:26:48.010000"],["2024-07-24T23:26:49.010000"],["2024-07-24T23:26:50.010000"],["2024-07-24T23:26:51.010000"],["2024-07-24T23:26:52.010000"],["2024-07-24T23:26:53.010000"],["2024-07-24T23:26:54.010000"],["2024-07-24T23:26:55.010000"],["2024-07-24T23:26:56.010000"],["2024-07-24T23:26:57.010000"],["2024-07-24T23:26:58.010000"],["2024-07-24T23:26:59.010000"],["2024-07-24T23:27:00.010000"],["2024-07-24T23:27:01.010000"],["2024-07-24T23:27:02.010000"],["2024-07-24T23:27:03.010000"],["2024-07-24T23:27:04.010000"],["2024-07-24T23:27:05.010000"],["2024-07-24T23:27:06.010000"],["2024-07-24T23:27:07.010000"],["2024-07-24T23:27:08.010000"],["2024-07-24T23:27:09.010000"],["2024-07-24T23:27:10.010000"],["2024-07-24T23:27:11.010000"],["2024-07-24T23:27:12.010000"],["2024-07-24T23:27:13.010000"],["2024-07-24T23:27:14.010000"],["2024-07-24T23:27:15.010000"],["2024-07-24T23:27:16.010000"],["2024-07-24T23:27:17.010000"],["2024-07-24T23:27:18.010000"],["2024-07-24T23:27:19.010000"],["2024-07-24T23:27:20.010000"],["2024-07-24T23:27:21.010000"],["2024-07-24T23:27:22.010000"],["2024-07-24T23:27:23.010000"],["2024-07-24T23:27:24.010000"],["2024-07-24T23:27:25.010000"],["2024-07-24T23:27:26.010000"],["2024-07-24T23:27:27.010000"],["2024-07-24T23:27:28.010000"],["2024-07-24T23:27:29.010000"],["2024-07-24T23:27:30.010000"],["2024-07-24T23:27:31.010000"],["2024-07-24T23:27:32.010000"],["2024-07-24T23:27:33.010000"],["2024-07-24T23:27:34.010000"],["2024-07-24T23:27:35.010000"],["2024-07-24T23:27:36.010000"],["2024-07-24T23:27:37.010000"],["2024-07-24T23:27:38.010000"],["2024-07-24T23:27:39.010000"],["2024-07-24T23:27:40.010000"],["2024-07-24T23:27:41.010000"],["2024-07-24T23:27:42.010000"],["2024-07-24T23:27:43.010000"],["2024-07-24T23:27:44.010000"],["2024-07-24T23:27:45.010000"],["2024-07-24T23:27:46.010000"],["2024-07-24T23:27:47.010000"],["2024-07-24T23:27:48.010000"],["2024-07-24T23:27:49.010000"],["2024-07-24T23:27:50.010000"],["2024-07-24T23:27:51.010000"],["2024-07-24T23:27:52.010000"],["2024-07-24T23:27:53.010000"],["2024-07-24T23:27:54.010000"],["2024-07-24T23:27:55.010000"],["2024-07-24T23:27:56.010000"],["2024-07-24T23:27:57.010000"],["2024-07-24T23:27:58.010000"],["2024-07-24T23:27:59.010000"],["2024-07-24T23:28:00.010000"],["2024-07-24T23:28:01.010000"],["2024-07-24T23:28:02.010000"],["2024-07-24T23:28:03.010000"],["2024-07-24T23:28:04.010000"],["2024-07-24T23:28:05.010000"],["2024-07-24T23:28:06.010000"],["2024-07-24T23:28:07.010000"],["2024-07-24T23:28:08.010000"],["2024-07-24T23:28:09.010000"],["2024-07-24T23:28:10.010000"],["2024-07-24T23:28:11.010000"],["2024-07-24T23:28:12.010000"],["2024-07-24T23:28:13.010000"],["2024-07-24T23:28:14.010000"],["2024-07-24T23:28:15.010000"],["2024-07-24T23:28:16.010000"],["2024-07-24T23:28:17.010000"],["2024-07-24T23:28:18.010000"],["2024-07-24T23:28:19.010000"],["2024-07-24T23:28:20.010000"],["2024-07-24T23:28:21.010000"],["2024-07-24T23:28:22.010000"],["2024-07-24T23:28:23.010000"],["2024-07-24T23:28:24.010000"],["2024-07-24T23:28:25.010000"],["2024-07-24T23:28:26.010000"],["2024-07-24T23:28:27.010000"],["2024-07-24T23:28:28.010000"],["2024-07-24T23:28:29.010000"],["2024-07-24T23:28:30.010000"],["2024-07-24T23:28:31.010000"],["2024-07-24T23:28:32.010000"],["2024-07-24T23:28:33.010000"],["2024-07-24T23:28:34.010000"],["2024-07-24T23:28:35.010000"],["2024-07-24T23:28:36.010000"],["2024-07-24T23:28:37.010000"],["2024-07-24T23:28:38.010000"],["2024-07-24T23:28:39.010000"],["2024-07-24T23:28:40.010000"],["2024-07-24T23:28:41.010000"],["2024-07-24T23:28:42.010000"],["2024-07-24T23:28:43.010000"],["2024-07-24T23:28:44.010000"],["2024-07-24T23:28:45.010000"],["2024-07-24T23:28:46.010000"],["2024-07-24T23:28:47.010000"],["2024-07-24T23:28:48.010000"],["2024-07-24T23:28:49.010000"],["2024-07-24T23:28:50.010000"],["2024-07-24T23:28:51.010000"],["2024-07-24T23:28:52.010000"],["2024-07-24T23:28:53.010000"],["2024-07-24T23:28:54.010000"],["2024-07-24T23:28:55.010000"],["2024-07-24T23:28:56.010000"],["2024-07-24T23:28:57.010000"],["2024-07-24T23:28:58.010000"],["2024-07-24T23:28:59.010000"],["2024-07-24T23:29:00.010000"],["2024-07-24T23:29:01.010000"],["2024-07-24T23:29:02.010000"],["2024-07-24T23:29:03.010000"],["2024-07-24T23:29:04.010000"],["2024-07-24T23:29:05.010000"],["2024-07-24T23:29:06.010000"],["2024-07-24T23:29:07.010000"],["2024-07-24T23:29:08.010000"],["2024-07-24T23:29:09.010000"],["2024-07-24T23:29:10.010000"],["2024-07-24T23:29:11.010000"],["2024-07-24T23:29:12.010000"],["2024-07-24T23:29:13.010000"],["2024-07-24T23:29:14.010000"],["2024-07-24T23:29:15.010000"],["2024-07-24T23:29:16.010000"],["2024-07-24T23:29:17.010000"],["2024-07-24T23:29:18.010000"],["2024-07-24T23:29:19.010000"],["2024-07-24T23:29:20.010000"],["2024-07-24T23:29:21.010000"],["2024-07-24T23:29:22.010000"],["2024-07-24T23:29:23.010000"],["2024-07-24T23:29:24.010000"],["2024-07-24T23:29:25.010000"],["2024-07-24T23:29:26.010000"],["2024-07-24T23:29:27.010000"],["2024-07-24T23:29:28.010000"],["2024-07-24T23:29:29.010000"],["2024-07-24T23:29:30.010000"],["2024-07-24T23:29:31.010000"],["2024-07-24T23:29:32.010000"],["2024-07-24T23:29:33.010000"],["2024-07-24T23:29:34.010000"],["2024-07-24T23:29:35.010000"],["2024-07-24T23:29:36.010000"],["2024-07-24T23:29:37.010000"],["2024-07-24T23:29:38.010000"],["2024-07-24T23:29:39.010000"],["2024-07-24T23:29:40.010000"],["2024-07-24T23:29:41.010000"],["2024-07-24T23:29:42.010000"],["2024-07-24T23:29:43.010000"],["2024-07-24T23:29:44.010000"],["2024-07-24T23:29:45.010000"],["2024-07-24T23:29:46.010000"],["2024-07-24T23:29:47.010000"],["2024-07-24T23:29:48.010000"],["2024-07-24T23:29:49.010000"],["2024-07-24T23:29:50.010000"],["2024-07-24T23:29:51.010000"],["2024-07-24T23:29:52.010000"],["2024-07-24T23:29:53.010000"],["2024-07-24T23:29:54.010000"],["2024-07-24T23:29:55.010000"],["2024-07-24T23:29:56.010000"],["2024-07-24T23:29:57.010000"],["2024-07-24T23:29:58.010000"],["2024-07-24T23:29:59.010000"],["2024-07-24T23:30:00.010000"],["2024-07-24T23:30:01.010000"],["2024-07-24T23:30:02.010000"],["2024-07-24T23:30:03.010000"],["2024-07-24T23:30:04.010000"],["2024-07-24T23:30:05.010000"],["2024-07-24T23:30:06.010000"],["2024-07-24T23:30:07.010000"],["2024-07-24T23:30:08.010000"],["2024-07-24T23:30:09.010000"],["2024-07-24T23:30:10.010000"],["2024-07-24T23:30:11.010000"],["2024-07-24T23:30:12.010000"],["2024-07-24T23:30:13.010000"],["2024-07-24T23:30:14.010000"],["2024-07-24T23:30:15.010000"],["2024-07-24T23:30:16.010000"],["2024-07-24T23:30:17.010000"],["2024-07-24T23:30:18.010000"],["2024-07-24T23:30:19.010000"],["2024-07-24T23:30:20.010000"],["2024-07-24T23:30:21.010000"],["2024-07-24T23:30:22.010000"],["2024-07-24T23:30:23.010000"],["2024-07-24T23:30:24.010000"],["2024-07-24T23:30:25.010000"],["2024-07-24T23:30:26.010000"],["2024-07-24T23:30:27.010000"],["2024-07-24T23:30:28.010000"],["2024-07-24T23:30:29.010000"],["2024-07-24T23:30:30.010000"],["2024-07-24T23:30:31.010000"],["2024-07-24T23:30:32.010000"],["2024-07-24T23:30:33.010000"],["2024-07-24T23:30:34.010000"],["2024-07-24T23:30:35.010000"],["2024-07-24T23:30:36.010000"],["2024-07-24T23:30:37.010000"],["2024-07-24T23:30:38.010000"],["2024-07-24T23:30:39.010000"],["2024-07-24T23:30:40.010000"],["2024-07-24T23:30:41.010000"],["2024-07-24T23:30:42.010000"],["2024-07-24T23:30:43.010000"],["2024-07-24T23:30:44.010000"],["2024-07-24T23:30:45.010000"],["2024-07-24T23:30:46.010000"],["2024-07-24T23:30:47.010000"],["2024-07-24T23:30:48.010000"],["2024-07-24T23:30:49.010000"],["2024-07-24T23:30:50.010000"],["2024-07-24T23:30:51.010000"],["2024-07-24T23:30:52.010000"],["2024-07-24T23:30:53.010000"],["2024-07-24T23:30:54.010000"],["2024-07-24T23:30:55.010000"],["2024-07-24T23:30:56.010000"],["2024-07-24T23:30:57.010000"],["2024-07-24T23:30:58.010000"],["2024-07-24T23:30:59.010000"],["2024-07-24T23:31:00.010000"],["2024-07-24T23:31:01.010000"],["2024-07-24T23:31:02.010000"],["2024-07-24T23:31:03.010000"],["2024-07-24T23:31:04.010000"],["2024-07-24T23:31:05.010000"],["2024-07-24T23:31:06.010000"],["2024-07-24T23:31:07.010000"],["2024-07-24T23:31:08.010000"],["2024-07-24T23:31:09.010000"],["2024-07-24T23:31:10.010000"],["2024-07-24T23:31:11.010000"],["2024-07-24T23:31:12.010000"],["2024-07-24T23:31:13.010000"],["2024-07-24T23:31:14.010000"],["2024-07-24T23:31:15.010000"],["2024-07-24T23:31:16.010000"],["2024-07-24T23:31:17.010000"],["2024-07-24T23:31:18.010000"],["2024-07-24T23:31:19.010000"],["2024-07-24T23:31:20.010000"],["2024-07-24T23:31:21.010000"],["2024-07-24T23:31:22.010000"],["2024-07-24T23:31:23.010000"],["2024-07-24T23:31:24.010000"],["2024-07-24T23:31:25.010000"],["2024-07-24T23:31:26.010000"],["2024-07-24T23:31:27.010000"],["2024-07-24T23:31:28.010000"],["2024-07-24T23:31:29.010000"],["2024-07-24T23:31:30.010000"],["2024-07-24T23:31:31.010000"],["2024-07-24T23:31:32.010000"],["2024-07-24T23:31:33.010000"],["2024-07-24T23:31:34.010000"],["2024-07-24T23:31:35.010000"],["2024-07-24T23:31:36.010000"],["2024-07-24T23:31:37.010000"],["2024-07-24T23:31:38.010000"],["2024-07-24T23:31:39.010000"],["2024-07-24T23:31:40.010000"],["2024-07-24T23:31:41.010000"],["2024-07-24T23:31:42.010000"],["2024-07-24T23:31:43.010000"],["2024-07-24T23:31:44.010000"],["2024-07-24T23:31:45.010000"],["2024-07-24T23:31:46.010000"],["2024-07-24T23:31:47.010000"],["2024-07-24T23:31:48.010000"],["2024-07-24T23:31:49.010000"],["2024-07-24T23:31:50.010000"],["2024-07-24T23:31:51.010000"],["2024-07-24T23:31:52.010000"],["2024-07-24T23:31:53.010000"],["2024-07-24T23:31:54.010000"],["2024-07-24T23:31:55.010000"],["2024-07-24T23:31:56.010000"],["2024-07-24T23:31:57.010000"],["2024-07-24T23:31:58.010000"],["2024-07-24T23:31:59.010000"],["2024-07-24T23:32:00.010000"],["2024-07-24T23:32:01.010000"],["2024-07-24T23:32:02.010000"],["2024-07-24T23:32:03.010000"],["2024-07-24T23:32:04.010000"],["2024-07-24T23:32:05.010000"],["2024-07-24T23:32:06.010000"],["2024-07-24T23:32:07.010000"],["2024-07-24T23:32:08.010000"],["2024-07-24T23:32:09.010000"],["2024-07-24T23:32:10.010000"],["2024-07-24T23:32:11.010000"],["2024-07-24T23:32:12.010000"],["2024-07-24T23:32:13.010000"],["2024-07-24T23:32:14.010000"],["2024-07-24T23:32:15.010000"],["2024-07-24T23:32:16.010000"],["2024-07-24T23:32:17.010000"],["2024-07-24T23:32:18.010000"],["2024-07-24T23:32:19.010000"],["2024-07-24T23:32:20.010000"],["2024-07-24T23:32:21.010000"],["2024-07-24T23:32:22.010000"],["2024-07-24T23:32:23.010000"],["2024-07-24T23:32:24.010000"],["2024-07-24T23:32:25.010000"],["2024-07-24T23:32:26.010000"],["2024-07-24T23:32:27.010000"],["2024-07-24T23:32:28.010000"],["2024-07-24T23:32:29.010000"],["2024-07-24T23:32:30.010000"],["2024-07-24T23:32:31.010000"],["2024-07-24T23:32:32.010000"],["2024-07-24T23:32:33.010000"],["2024-07-24T23:32:34.010000"],["2024-07-24T23:32:35.010000"],["2024-07-24T23:32:36.010000"],["2024-07-24T23:32:37.010000"],["2024-07-24T23:32:38.010000"],["2024-07-24T23:32:39.010000"],["2024-07-24T23:32:40.010000"],["2024-07-24T23:32:41.010000"],["2024-07-24T23:32:42.010000"],["2024-07-24T23:32:43.010000"],["2024-07-24T23:32:44.010000"],["2024-07-24T23:32:45.010000"],["2024-07-24T23:32:46.010000"],["2024-07-24T23:32:47.010000"],["2024-07-24T23:32:48.010000"],["2024-07-24T23:32:49.010000"],["2024-07-24T23:32:50.010000"],["2024-07-24T23:32:51.010000"],["2024-07-24T23:32:52.010000"],["2024-07-24T23:32:53.010000"],["2024-07-24T23:32:54.010000"],["2024-07-24T23:32:55.010000"],["2024-07-24T23:32:56.010000"],["2024-07-24T23:32:57.010000"],["2024-07-24T23:32:58.010000"],["2024-07-24T23:32:59.010000"],["2024-07-24T23:33:00.010000"],["2024-07-24T23:33:01.010000"],["2024-07-24T23:33:02.010000"],["2024-07-24T23:33:03.010000"],["2024-07-24T23:33:04.010000"],["2024-07-24T23:33:05.010000"],["2024-07-24T23:33:06.010000"],["2024-07-24T23:33:07.010000"],["2024-07-24T23:33:08.010000"],["2024-07-24T23:33:09.010000"],["2024-07-24T23:33:10.010000"],["2024-07-24T23:33:11.010000"],["2024-07-24T23:33:12.010000"],["2024-07-24T23:33:13.010000"],["2024-07-24T23:33:14.010000"],["2024-07-24T23:33:15.010000"],["2024-07-24T23:33:16.010000"],["2024-07-24T23:33:17.010000"],["2024-07-24T23:33:18.010000"],["2024-07-24T23:33:19.010000"],["2024-07-24T23:33:20.010000"],["2024-07-24T23:33:21.010000"],["2024-07-24T23:33:22.010000"],["2024-07-24T23:33:23.010000"],["2024-07-24T23:33:24.010000"],["2024-07-24T23:33:25.010000"],["2024-07-24T23:33:26.010000"],["2024-07-24T23:33:27.010000"],["2024-07-24T23:33:28.010000"],["2024-07-24T23:33:29.010000"],["2024-07-24T23:33:30.010000"],["2024-07-24T23:33:31.010000"],["2024-07-24T23:33:32.010000"],["2024-07-24T23:33:33.010000"],["2024-07-24T23:33:34.010000"],["2024-07-24T23:33:35.010000"],["2024-07-24T23:33:36.010000"],["2024-07-24T23:33:37.010000"],["2024-07-24T23:33:38.010000"],["2024-07-24T23:33:39.010000"],["2024-07-24T23:33:40.010000"],["2024-07-24T23:33:41.010000"],["2024-07-24T23:33:42.010000"],["2024-07-24T23:33:43.010000"],["2024-07-24T23:33:44.010000"],["2024-07-24T23:33:45.010000"],["2024-07-24T23:33:46.010000"],["2024-07-24T23:33:47.010000"],["2024-07-24T23:33:48.010000"],["2024-07-24T23:33:49.010000"],["2024-07-24T23:33:50.010000"],["2024-07-24T23:33:51.010000"],["2024-07-24T23:33:52.010000"],["2024-07-24T23:33:53.010000"],["2024-07-24T23:33:54.010000"],["2024-07-24T23:33:55.010000"],["2024-07-24T23:33:56.010000"],["2024-07-24T23:33:57.010000"],["2024-07-24T23:33:58.010000"],["2024-07-24T23:33:59.010000"],["2024-07-24T23:34:00.010000"],["2024-07-24T23:34:01.010000"],["2024-07-24T23:34:02.010000"],["2024-07-24T23:34:03.010000"],["2024-07-24T23:34:04.010000"],["2024-07-24T23:34:05.010000"],["2024-07-24T23:34:06.010000"],["2024-07-24T23:34:07.010000"],["2024-07-24T23:34:08.010000"],["2024-07-24T23:34:09.010000"],["2024-07-24T23:34:10.010000"],["2024-07-24T23:34:11.010000"],["2024-07-24T23:34:12.010000"],["2024-07-24T23:34:13.010000"],["2024-07-24T23:34:14.010000"],["2024-07-24T23:34:15.010000"],["2024-07-24T23:34:16.010000"],["2024-07-24T23:34:17.010000"],["2024-07-24T23:34:18.010000"],["2024-07-24T23:34:19.010000"],["2024-07-24T23:34:20.010000"],["2024-07-24T23:34:21.010000"],["2024-07-24T23:34:22.010000"],["2024-07-24T23:34:23.010000"],["2024-07-24T23:34:24.010000"],["2024-07-24T23:34:25.010000"],["2024-07-24T23:34:26.010000"],["2024-07-24T23:34:27.010000"],["2024-07-24T23:34:28.010000"],["2024-07-24T23:34:29.010000"],["2024-07-24T23:34:30.010000"],["2024-07-24T23:34:31.010000"],["2024-07-24T23:34:32.010000"],["2024-07-24T23:34:33.010000"],["2024-07-24T23:34:34.010000"],["2024-07-24T23:34:35.010000"],["2024-07-24T23:34:36.010000"],["2024-07-24T23:34:37.010000"],["2024-07-24T23:34:38.010000"],["2024-07-24T23:34:39.010000"],["2024-07-24T23:34:40.010000"],["2024-07-24T23:34:41.010000"],["2024-07-24T23:34:42.010000"],["2024-07-24T23:34:43.010000"],["2024-07-24T23:34:44.010000"],["2024-07-24T23:34:45.010000"],["2024-07-24T23:34:46.010000"],["2024-07-24T23:34:47.010000"],["2024-07-24T23:34:48.010000"],["2024-07-24T23:34:49.010000"],["2024-07-24T23:34:50.010000"],["2024-07-24T23:34:51.010000"],["2024-07-24T23:34:52.010000"],["2024-07-24T23:34:53.010000"],["2024-07-24T23:34:54.010000"],["2024-07-24T23:34:55.010000"],["2024-07-24T23:34:56.010000"],["2024-07-24T23:34:57.010000"],["2024-07-24T23:34:58.010000"],["2024-07-24T23:34:59.010000"],["2024-07-24T23:35:00.010000"],["2024-07-24T23:35:01.010000"],["2024-07-24T23:35:02.010000"],["2024-07-24T23:35:03.010000"],["2024-07-24T23:35:04.010000"],["2024-07-24T23:35:05.010000"]],"hovertemplate":"color=3\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"3","line":{"color":"#ab63fa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"3","scene":"scene","showlegend":true,"x":[169.94805098231882,169.1289497273974,169.12213757820427,169.06768680084497,168.31694981455803,168.5065865702927,167.63783560600132,167.81367343617603,168.57392865838483,168.53024273831397,169.35525188269094,169.06664045946673,168.8414405528456,168.0159974945709,168.6459788181819,169.2769090179354,168.78345885220915,168.09408674854785,169.0566784874536,169.01490514632314,169.68971174722537,168.71204972499982,168.95696701994166,169.63463837420568,169.68324902793393,169.0949559537694,169.69286719243973,170.49363022949547,171.4025033582002,172.06371206976473,171.29968305910006,172.298318953719,171.8156620906666,172.3241697405465,172.69451270066202,171.8227148745209,172.5641342406161,172.15021997410804,172.51933211879805,173.38935043802485,173.72403905633837,173.10283982986584,172.39912133151665,172.08530879905447,172.65392570663244,172.94407866336405,173.72087469510734,173.96283717267215,173.31251984322444,172.80322319734842,173.52422806667164,173.80174745805562,173.09513347502798,172.25395029922947,172.53291271161288,173.04206764884293,172.35546280350536,171.36902779061347,170.53227613400668,170.42437517130747,170.43615726102144,170.08032816182822,169.93760993238539,169.2570761302486,170.0848350492306,169.26102771563455,168.92978138942271,169.4882998270914,168.80794949270785,168.31820376077667,167.9897258975543,168.1882949541323,168.57149342121556,167.585133778397,167.26947647193447,167.63522064266726,167.67221549665555,166.90165710868314,167.2427223259583,166.4261311525479,166.96994927478954,167.04307897854596,167.45145430974662,166.60873737884685,166.27098768996075,165.78852476272732,165.2879431815818,165.72536626271904,166.37067016027868,166.52687023300678,165.77424745075405,166.75487880175933,167.47375847119838,167.55067248549312,166.6970731364563,167.54559305449948,167.857938665431,167.62069358397275,167.13005614373833,167.36651536775753,167.1482248189859,166.37380194989964,166.2625483139418,167.02051397040486,167.81765422271565,167.37154839513823,168.29779832111672,167.78858267702162,168.00006673345342,167.11052678292617,167.8907838780433,168.51963741146028,168.8258076342754,168.5652602352202,169.5353392418474,169.70150162279606,169.19491051556543,169.63069573929533,170.57511351490393,170.103752494324,169.22708525136113,168.62291423184797,169.07978322682902,169.24457795359194,169.5915175769478,169.7290326100774,169.3849233435467,169.91351231839508,169.88748167688027,169.7571595357731,170.4875319241546,170.90311608603224,171.72201900137588,172.7117044283077,172.35425951471552,171.9127294877544,171.8247408606112,170.96103667095304,170.05244367709383,169.71667707245797,169.41539536369964,169.82398244645447,170.16505062719807,169.20075938198715,169.0374248176813,168.57249020878226,168.18667562678456,167.78835398657247,167.3279832471162,166.63804343063384,166.1722825472243,165.92259567184374,165.0675177508965,165.25409240322188,164.97090434422716,165.78324946388602,164.8435471090488,164.1817844202742,163.2225162908435,163.8923934274353,164.45511197531596,163.469836788252,164.1120802401565,164.61331845168024,165.59072939958423,165.76392937079072,166.03253657277673,166.61524134222418,166.83391926670447,166.7632757462561,166.51175701012835,166.19996574847028,165.94715736294165,165.3477665972896,164.71077535813674,164.94735855329782,165.36640246538445,165.09075441537425,166.0654195714742,165.85568552603945,165.63856917247176,165.73954312177375,166.5379344765097,167.31982891215011,167.17836675979197,167.39382179128006,167.7331719598733,167.75175666436553,166.75475213304162,165.9953780514188,165.86728945933282,166.8662136029452,166.0541101754643,165.18109008250758,165.76977336080745,166.55945011461154,165.89271939964965,166.2255683694966,165.2974024140276,165.9357022275217,165.87106916401535,165.30752654466778,165.99288540240377,165.60555467568338,164.79753454541788,165.02116253226995,164.098937316332,163.95687297917902,164.72590715112165,165.5063585275784,166.07248923368752,165.1157723623328,164.19042534613982,165.04370661871508,165.6213652556762,166.50565437041223,166.53076858865097,165.7336543048732,165.76906197331846,166.5940640750341,167.38975285552442,168.1037895907648,167.66902340436354,167.6327415802516,168.10602714819834,167.29844918847084,166.88116665696725,166.73649918101728,166.6261923024431,167.38510112278163,167.24208505032584,168.21259140130132,167.33437754912302,166.92762424517423,166.38139504613355,167.05806847242638,166.33503670664504,166.11510103242472,165.3279445869848,165.12310315668583,165.54454431915656,165.36215514549986,164.8031437736936,165.5438445652835,164.89576474996284,164.6858059237711,164.23507811268792,163.30285599222407,162.95981745561585,163.3748234580271,163.04110596468672,162.21303690876812,161.55680747749284,162.23143642069772,162.22129471600056,161.37797911278903,161.87220147578046,161.5415740092285,162.33550972910598,162.44152987282723,162.43377210386097,163.29759544832632,163.66051990399137,164.41682098200545,165.0860770465806,165.2076158267446,165.44556304905564,164.9505987665616,164.78160954080522,165.29539775988087,165.91602161666378,165.5223188479431,165.47134835273027,166.1195680676028,167.02286332286894,167.92016914021224,168.0746760754846,168.86472881678492,169.37719865050167,168.95250762067735,169.886978039518,169.08453516988084,168.99168051639572,168.7749704667367,168.48996624536812,168.4124575285241,167.6193942106329,167.88586358260363,168.54608333623037,168.2740849298425,167.7907196939923,168.6625095126219,168.32639745203778,168.40128425136209,168.179208365269,168.10165725974366,167.6635104911402,166.9112709243782,167.00732090417296,166.355945807416,167.0105925560929,166.4037089436315,166.28689321223646,166.74818656081334,166.05342569435015,165.6704542604275,165.31239329325035,165.48510165791959,165.2385316011496,164.65693875961006,164.10251378733665,164.54111920436844,164.73074017697945,164.6463210368529,165.20805866038427,164.5459891408682,164.86604871880263,165.21357129141688,165.70891675306484,165.43558025872335,166.05782471923158,165.54382479051128,166.37326641613618,166.57445538556203,166.44335876451805,165.6486101783812,165.89380178041756,165.49218102311715,165.97320905514061,165.09400253137574,165.44323871377856,166.21565610123798,166.496007704176,167.11349566094577,166.60371166933328,166.56248811306432,167.49830793589354,167.78293207054958,168.64050338044763,168.42917287396267,168.36478116502985,168.652231533546,168.0490406760946,167.7603266411461,167.43351446837187,166.892210890539,166.52472111396492,167.424237171188,167.64052513428032,167.87814054219052,167.71096481429413,167.69714351696894,167.23417218448594,166.23915024008602,166.45784574514255,166.72111954540014,166.5139594078064,166.3326935954392,166.6347681460902,167.02195779653266,166.92224832763895,166.12867871811613,166.05082396324724,166.38065880862996,166.9099349481985,166.58699225168675,165.93405408365652,165.28370096860453,164.86446347786114,164.2722362964414,164.8907349575311,164.28265886195004,164.24990084255114,165.18160932790488,164.4171969522722,163.50710992515087,163.67707476299256,163.2223775102757,162.67340585030615,162.94176023779437,162.36256842501462,162.86921754758805,163.11838632216677,163.72904049186036,164.4224659819156,164.4120528260246,164.8284427835606,165.08504817914218,164.79512345558032,165.76518832100555,165.00462376559153,165.59403254883364,164.8108365838416,164.3167969826609,164.97133943298832,164.71643172530457,165.58209962863475,166.36672584433109,166.79848741460592,167.45126588782296,166.67462642956525,166.72703067073599,167.48108961759135,168.27446225192398,167.45955596817657,168.31094651483,168.149288081564,168.02303355466574,167.90084222331643,167.59253077860922,168.0545189799741,167.41307146055624,168.19083085749298,167.50435526669025,168.34875425789505,167.98401687899604,167.7078464180231,168.4164843619801,167.98266643937677,167.3180543393828,166.5310939019546,165.64106499543414,166.38659072248265,165.92911738017574,166.880913074594,167.46489044791088,167.54643812635913,167.91807368397713,168.84137542871758,168.00284333433956,168.71122261090204,168.2786835473962,168.79843591200188,168.50948131410405,168.10583451250568,168.12460385309532,168.44959266018122,169.29513106727973,168.66073178080842,167.9349257950671,168.61669783620164,167.94370207749307,168.3559097489342,168.00358308339491,168.02681444538757,167.76817360054702,168.10182947851717,167.1800395557657,166.49880778836086,165.86355680739507,166.06915386812761,165.79743832489476,166.39996164571494,165.76559074455872,166.731121848803,165.9178601540625,165.84972658893093,165.84094394696876,166.52188760368153,167.13808152265847,166.6251733219251,166.9577393908985,167.60510984342545,166.71967204567045,165.86067953705788,166.7968782694079,166.41560613783076,167.0465671340935,166.0528335007839,166.21972031146288,167.1146420808509,167.17643820587546,167.1021617143415,166.75959085579962,166.72265026299283,166.90691074170172,166.61950111249462,167.35567991482094,166.60476838052273,167.57879250589758,167.19959261408076,167.13871866371483,167.17864057421684,167.56564957415685,167.55302366334945,166.8289946098812,166.1898499345407,166.48523272573948,166.95717924041674,166.11838438967243,166.73825665423647,165.75013451324776,165.84949050704017,165.1065544579178,164.44665392907336,165.21088302414864,165.35254484741017,164.7013073982671,164.67512476351112,165.17169329710305,166.16343914344907,165.61174885788932,164.82141218567267,164.06786907697096,164.22594235744327,163.9439605595544,164.40617224480957,164.0869536763057,163.2369284350425,163.5920260665007,163.1821747208014,163.90591682307422,164.9000680926256,165.8525670110248,166.2292356416583,166.51007982110605,166.65929478872567,166.72558364644647,166.84981533931568,166.79050555313006,166.7577472529374,165.8455080431886,165.54373615980148,164.8550075753592,165.66527310712263,166.38973336433992,166.6107245129533,167.35530692106113,168.14570730738342,167.40642016520724,166.76674563391134,165.84020494110882,165.3390551963821,165.3592316089198,165.43243122240528,165.4554817932658,166.22779648657888,165.60398531751707,166.4069903185591,166.9178308681585,166.0370905464515,166.91334054572508,166.62315313890576,166.87783610681072,167.52116728015244,167.93339255452156,167.41055743955076,168.24716154998168,168.99877247819677,168.81660477770492,168.08281409414485,167.60346464300528,167.15060875518247,166.22996486583725,166.78414798434824,167.11743299290538,166.5207312433049,166.90637596324086,167.29759552842006,168.1963940402493,167.48992793634534,166.57783947745338,167.08275042893365,167.3184145502746,166.52947722747922,167.27600443689153,166.37620563153177,166.85905926628038,167.21811600588262,167.02091217413545,167.8493063566275,168.12979007605463,168.0280488068238,167.59319234406576,167.02234927890822,168.01557712676004,168.47653644671664,168.20294485613704,168.65079658292234,169.48050097795203,169.54076227219775,169.82234370149672,169.61759103368968,170.24847551761195,170.93252273555845,171.81502037495375,171.16262533003464,171.65342633705586,170.74255379196256,169.74740123469383,170.07199152000248,170.734695664607,170.38734249630943,171.0305777452886,170.19619581848383,169.3512767846696,168.48018218157813,168.0946318260394,168.30619947286323,167.36100941663608,166.73473427724093,167.20955187594518,167.6374534163624,167.61271969461814,168.4803804415278,167.81607238389552,168.13056144677103,167.586354221683,167.17743896506727,166.34868392068893,166.95580928679556,167.42937877494842,167.70102986879647,167.5464571584016,166.9747839672491,166.43690610537305,166.02373373741284,165.84245073562488,165.52553828945383,165.3153757415712,165.20355657301843,165.261938017793,165.76935351733118,165.59400895889848,166.39362841052935,167.0962854330428,166.83948108321056,166.38078730972484,166.4473266042769,166.7466449327767,166.1124113444239,166.37789801554754,165.89155820012093,166.8673973698169,166.62640030821785,167.4803862357512,167.2457327246666,166.604696248658,167.48824358033016,168.4386634142138,169.398964330554,170.02056413283572,169.564046359621,170.52524222806096,170.08553379913792,169.7331203422509,170.01469597266987,170.18355976976454,170.47154965484515,170.85870927013457,171.618412561249,171.42019605077803,170.76809873711318,171.38891390245408,170.51155540440232,170.86978786578402,170.43617739295587,169.48262710869312,168.88975464971736,168.71449100179598,169.0395099921152,168.8169371727854,169.70019959751517,169.26855052262545,169.96502912044525,169.88076424691826,169.74158272100613,168.99772729026154,168.1399834784679,167.18314205808565,167.48254630621523,167.65309527982026,166.81474209856242,165.84578179288656,165.03957601031289,164.45195300737396,163.83394410880283,163.51007933262736,164.4864701097831,164.45786678930745,164.23608752619475,164.03769650077447,164.33092089137062,165.164721342735,164.19450759561732,164.40869532199576,164.69574076589197,165.4026320767589,165.9567542616278,165.00527424784377,164.5220919805579,164.1735912952572,163.3880637330003,162.99163308460265,163.143907032907,163.7194510390982,162.94106462784111,162.10979316430166,162.14607624756172,162.788827391807,162.70665682526305,161.76861773105338,162.3019159603864,161.36715785507113,160.7669313242659,160.87363414186984,161.31908141821623,161.6293577020988,161.33743285480887,160.44551704637706,160.24708408489823,159.98854771861807,159.8785503716208,160.0037352386862,160.25030529638752,159.70585646806285,159.024810584262,159.5324104987085,159.34378721239045,159.15279395971447,159.0189053430222,158.80977334827185,159.5898727942258,159.08873001812026,159.77993374317884,158.83887790190056,158.68514070753008,158.05618019402027,157.56305029569194,156.98202198324725,157.23044030182064,156.78440726036206,157.40119958063588,158.0912427296862,158.48933304846287,158.4114000000991,159.20483133709058,159.85202413704246,159.42673261789605,159.4551561018452,159.5822222372517,160.01240995246917,160.79029696434736,160.61316381115466,160.14055535197258,159.55089505016804,158.76649847021326,157.94231829000637,158.69183730427176,159.6406407286413,160.4110287828371,161.16506017558277,160.33475190773606,160.79091652855277,161.5718856016174,162.18673510337248,162.04212075285614,162.27484824089333,163.16352404560894,163.5101920212619,163.58105509262532,163.08563619665802,163.06413226854056,162.28720471914858,162.21869139978662,162.5451547568664,162.15747649874538,161.59381105890498,161.1237552827224,160.13050761586055,159.4197353986092,158.54701861273497,158.39483463391662,158.7682211152278,158.4024486602284,158.48968067253008,157.9401034079492,157.65126835135743,156.7192381680943,156.5065747606568,156.80032129818574,157.4540259502828,157.22681626211852,157.0632841233164,156.3006494906731,156.3194261705503,156.7227889513597,157.3034598119557,156.70555558567867,156.95558880036697,156.3141524726525,155.78724670456722,156.12394403479993,155.69273014646024,155.55146919330582,156.04134806385264,156.67106205644086,156.3133034282364,155.89503959100693,155.35683402884752,155.4763322789222,154.66275097662583,154.05906533030793,154.70655692461878,154.35583686176687,154.15985751943663,153.78107706084847,153.9014996504411,153.38266859808937,152.67804092355072,152.79387451289222,152.63872109958902,152.6699489960447,153.60820623487234,154.07830637786537,153.79152853274718,154.52112590475008,153.8384483694099,154.40487243514508,154.9301807261072,155.88407391356304,155.56230307137594,155.9736355142668,156.54053128045052,157.47481884527951,157.31437764829025,157.99688178114593,157.74485456803814,158.74218561965972,158.82307727774605,159.62751196091995,159.56607290823013,159.4571871580556,158.51987790642306,157.53768433677033,156.72996422136202,155.94387531932443,155.91202966030687,155.24763493798673,154.35370648279786,153.79198859166354,154.451786684338,153.78427781071514,153.40590272191912,153.7715749051422,153.770454576239,153.4077928159386,154.11829482158646,153.44201397057623,152.70874049840495,153.3908925880678,153.06979788886383,153.93567793769762,153.96682208124548,153.28106717951596,154.0264619551599,154.911639099475,154.43824025150388,154.73031270503998,154.52891593240201,154.57792201079428,154.87831067480147,155.03187392326072,154.1729159001261,153.79374855244532,154.50309611205012,153.9632552182302,154.86309705255553,154.10732144257054,154.26155530754477,153.3506517536007,153.9072372787632,154.3280442371033,155.1864011976868,155.179578602314,156.12069277791306,155.90083191683516,155.94410701980814,156.6768890353851,156.5641406434588,157.28727120766416,157.55254016118124,158.29025876056403,158.63180964486673,159.55316567467526,158.97343523753807,158.88057327782735,158.3910766215995,158.79741633683443,159.04278029780835,159.57507843663916,159.02845020312816,159.78762905532494,160.1406674515456,159.44828312424943,159.18239765055478,158.8405932658352,159.22806061524898,158.65806888369843,159.13857828872278,159.2621582755819,159.53987875999883,159.44658864149824,159.73263389011845,160.08756372286007,160.35286122234538,160.21714373398572,161.18164217611775,161.58213651366532,162.21247054543346,162.067727482412,162.39888849901035,163.39667471917346,163.1739613325335,162.362895778846,162.49629522953182,162.02179969893768,162.31024389900267,162.58830138901249,162.6957734641619,163.55842697015032,163.9287644494325,164.73234090348706,164.28385994350538,164.45858305040747,163.56231570104137,163.88680294808,163.29552320949733,163.03091228287667,164.01271140994504,164.18470240803435,163.2003951119259,163.7470439746976,163.19059684174135,163.9938105046749,164.18301974982023,164.14465837087482,164.61670565092936,165.30103328917176,165.52414294146,166.18390943482518,166.6560397958383,167.11729494156316,167.38056783145294,167.77383220940828,167.41215416183695,167.5871885479428,167.63967378204688,168.367338469252,168.75570884393528,169.15649863053113,169.0998134603724,168.993622623384,168.07342612510547,167.5203603315167,167.7691564853303,168.5825862060301,168.0749128437601,168.00252035958692,168.8959731888026,167.9242540881969,168.0425137905404,167.3713701684028,166.91007422935218,167.47575618885458,168.44472688855603,168.56931174872443,167.92386693134904,168.17503781896085,168.94986660173163,169.34523901017383,168.46107435040176,167.85542914876714,168.74724341416731,169.33959782822058,170.27318420400843,170.07357225380838,170.34893464064226,169.74061656789854,170.37312928587198,170.6001855037175,170.5956544666551,170.2752825366333,169.42174937017262,169.27301303343847,169.8477606526576,169.63392242230475,170.15023689437658,169.63717562006786,168.76098497211933,167.7737164022401,167.13008052576333,168.1083967112936,168.90788561012596,169.339649037458,169.66993355052546,170.27981106191874,169.7706853398122,169.7362650637515,169.98873211676255,170.55570329586044,170.26434989180416,169.37345643620938,168.64217236218974,169.6110677565448,168.6298501174897,168.84324128227308,169.0845377855003,169.3105830727145,169.94580784719437,170.74691580794752,170.9583657332696,171.81354699423537,172.37162884650752,173.00195458810776,173.25347760273144,173.72462575882673,173.71496032038704,173.17565647279844,172.90038208151236,172.58146418072283,171.8777733729221,171.80251065036282,172.7396948840469,172.63565591396764,173.34935925947502,174.14957082923502,174.83395461551845,174.5203373930417,174.38956617796794,173.60215952945873,173.63197831902653,172.75235959980637,172.14818406151608,172.02981385076419,171.90605279477313,172.69998242519796,171.72634615097195,171.3901332183741,172.28521518828347,172.16146896686405,172.72752967756242,173.45823084563017,173.53458285937086,173.13022313034162,173.51709154061973,173.98879162687808,173.46158768702298,173.52573200967163,173.47903630090877,173.9837102270685,173.07049674913287,173.7188232941553,174.53504626639187,174.571075651329,175.5462716659531,175.31011906499043,174.3289283993654,174.87525052344427,175.55547348363325,175.7401438942179,175.74687089025974,175.34734101267532,175.0582794235088,174.33275113021955,173.8068398302421,172.9472610577941,173.4323197971098,173.3140795296058,172.6497353296727,172.46135738212615,172.9359192783013,172.33169927960262,173.31320708151907,173.0162489786744,173.44564607413486,173.15411888062954,173.4836973422207,173.17990038590506,173.0050979796797,173.56782137742266,172.76040805038065,172.4925110694021,172.12495211837813,172.3653130400926,173.27392138820142,173.41298502497375,172.72185758687556,172.4200631501153,172.26582940714434,171.73390581132844,172.53775770915672,172.88435216480866,173.29760662652552,172.58975757146254,173.12522331718355,174.0703299837187,174.10755669604987,174.4801128283143,174.86331719020382,174.74109502369538,175.31127907894552,175.47411924274638,176.3133397474885,175.33651203103364,174.53097517881542,174.79092059237882,174.94226363580674,175.67103088460863,176.4158498737961,177.1709349709563,176.9353834479116,176.1541175399907,175.8585417382419,175.59636137774214,176.08113858662546,175.82249914715067,176.29284420982003,176.75127951288596,176.67849301965907,177.6105505283922,176.9758037775755,176.27886926662177,176.14077987801284,175.60370835941285,175.4560830295086,176.37643313966691,176.7615034962073,176.10449094837531,175.74958695052192,175.35826011095196,175.83385268878192,175.64083949523047,175.20755025092512,175.95970848714933,175.07489332230762,175.58692492404953,174.61299732141197,174.68012878391892,174.17305074213073,174.1733520468697,173.54360834369436,172.6726644486189,172.39486888237298,172.4274668674916,172.95785768236965,173.2851360095665,173.1927381977439,173.00211058044806,172.34997097356245,173.2474136715755,172.544994993601,172.94071831274778,173.1877072271891,173.84600533964112,173.01727369287983,172.32224073028192,171.89013365004212,171.28025458520278,170.55590386595577,170.80176133522764,170.56090213172138,171.21034219488502,171.508130856324,171.6199075714685,170.9923226707615,170.98507960652933,171.1480955928564,170.5419011474587,170.6606682408601,170.34184921067208,171.1787065411918,170.57300027506426,170.07750544976443,170.00857375236228,169.54500121576712,169.56380404066294,169.90291489707306,169.39596090419218,170.14621792268008,169.34708563936874,170.26725370204076,170.49706929642707,171.14511911571026,172.0106730023399,171.83943782467395,172.09652905492112,171.32165828999132,171.02861172286794,171.539803059306,171.45752813713625,171.7290468798019,170.91170954704285,170.18569432012737,169.59000749513507,169.99646524060518,169.19084652513266,169.3640432129614,169.0975552201271,169.66725495643914,170.36701394198462,171.29402097314596,170.63421939499676,169.6363126351498,170.30075275432318,170.9294635313563,171.48148792842403,171.39576928224415,170.96109194029123,170.7982097817585,171.31356666702777,171.70620217826217,172.70438638795167,172.75171669991687,173.57938819890842,172.60338471876457,172.22492432873696,171.59668656345457,171.04259779164568,170.05572548415512,170.34773351298645,169.57032695692033,170.4332143990323,170.14762781048194,170.7192380190827,170.17307618120685,169.57370430557057,169.4422773839906,168.4937124834396,169.18624528031796,169.36646908707917,169.54352788440883,170.395599571988,170.17227803636342,169.7717714062892,169.36343181692064,169.76661241985857,169.80651048757136,170.10558504145592,170.22741152113304,169.59363727550954,168.69781950954348,169.64971425477415,170.61256240634248,170.00907303998247,169.59410171490163,169.9652970917523,169.6171786817722,169.11438250727952,168.11857337551191,167.8130705053918,167.1708016693592,166.76189790200442,167.35081602307037,168.26714759739116,167.36220212327316,166.42073137499392,165.82581255584955,165.71528624882922,165.8578133606352,164.93690692959353,164.63276023278013,164.44936576113105,165.16988018155098,164.87368183303624,164.70387021638453,164.8041408606805,163.93351039849222,164.3872457970865,164.47607143688947,163.60321592027321,163.28807573625818,163.46955201681703,163.16908944491297,163.38901264360175,163.79848339874297,163.52457941090688,162.9256451204419,163.76050154678524,164.23859375948086,163.94247726676986,163.98104034690186,164.0666095102206,163.18484107311815,163.09703430254012,163.092717112042,162.65063237631693,161.98133882926777,161.2321576704271,161.10598931880668,161.63291057897732,161.97156386682764,162.32711907848716,161.5481432811357,161.57552964473143,161.8609449644573,161.2796580363065,162.19215617934242,163.1642728713341,162.39951395709068,161.94280211022124,161.53537872200832,161.94365872396156,161.1206867895089,160.3702160171233,159.76072166394442,159.86253208946437,159.5244622863829,158.6899597644806,157.89008351415396,158.33890696242452,157.67108978470787,156.68653783481568,156.36879614694044,156.10272574005648,156.6678362218663,157.52210010122508,157.74136369396,157.6373053630814,157.41051836451516,158.13211539760232,157.69654182111844,157.72031266940758,157.86212769336998,157.05547850532457,156.92799133388326,157.81349902879447,158.13727358402684,158.24618792301044,158.0256440071389,158.00092485593632,157.71724317083135,158.49782392429188,158.11150021618232,159.0015992987901,158.81498979544267,157.92609366308898,157.5859832474962,156.8313629538752,156.7292862352915,155.78386463597417,156.63723339280114,157.29397572111338,156.42720631835982,157.11385066062212,156.99401382450014,157.82731155119836,157.90957046672702,158.67539149383083,158.3635191079229,157.89914785511792,158.37968137534335,159.12851521046832,158.7523895399645,159.19400782696903,159.28099653404206,160.00502263801172,159.29306421149522,160.2565264790319,160.36733281658962,161.33042597025633,161.93546933215111,162.79755537910387,162.76560295233503,163.2033815709874,162.33636443596333,162.81371740531176,163.5545989414677,163.19443811755627,163.63560295896605,164.62033133255318,163.9086879021488,164.1883184397593,165.18123587453738,164.77142894500867,164.2307297643274,163.93520812503994,162.94080699421465,163.64182703616098,164.16716115921736,163.9455987312831,164.90483192680404,165.17605266999453,165.32020125817508,164.9312280411832,164.83245650492609,164.87048439774662,164.86452484503388,163.9455367703922,164.48001415934414,164.92286461498588,164.34236725978553,164.23686440335587,163.6449639252387,164.39615994226187,165.09087711153552,165.93738289363682,165.025489971973,164.19931499566883,164.81568585895002,164.63278805278242,164.2631149115041,163.43696872331202,164.26705079199746,165.16387740988284,164.99099573818967,164.41213953820989,164.0180650986731,163.86936574615538,163.87830948783085,163.41180673707277,162.75765239540488,162.7682372876443,162.52611701050773,162.85541666066274,163.6918413899839,163.13251574104652,162.29916030028835,162.55789025919512,162.10873238230124,161.15381013974547,161.81856124754995,161.29786264616996,160.6074941093102,160.59312505088747,159.6397914257832,158.64979861024767,159.49234317569062,158.52672530571,158.68512807320803,157.73719807108864,158.28306995378807,158.81318454444408,157.8908147374168,158.76441267924383,159.35664284555241,158.39297761628404,157.80333400750533,156.80561651475728,157.05921348463744,157.1069237398915,156.52560347225517,157.18767013028264,158.00125463865697,158.96741889463738,158.89440886303782,159.63627233775333,158.70492113148794,157.91167644644156,157.78153606085107,156.96487125381827,157.8033818723634,158.14476682292297,158.36797022027895,159.0376898283139,158.96671275002882,158.64369266014546,158.52393799787387,158.80084189539775,158.26112410984933,158.4794197003357,157.53103978047147,157.19636949384585,158.1526122018695,157.82978686783463,158.00147820496932,158.4859448429197,158.58260236354545,159.24924806132913,158.38421034254134,159.27597075002268,158.59882634459063,159.3150077164173,159.71890268614516,160.57169486349449,161.3862845688127,162.3749858061783,161.81932002864778,162.10941214999184,162.175405271817,162.20935505768284,162.04714190028608,161.37255223607644,162.14017569553107,161.91002656752244,162.0238015842624,162.13269163062796,161.3747711419128,162.25955523131415,161.69722059369087,161.90503417048603,161.51628231722862,162.0447280611843,161.5776493344456,161.36315091419965,160.93452069954947,160.46177057176828,160.7205684822984,161.62734433589503,160.83618316287175,159.86998458579183,160.77589366864413,160.96293489122763,160.71324544399977,160.36731579434127,159.44204296171665,159.0487010665238,159.5847868961282,159.47717799525708,159.07088149990886,159.98609440820292,159.1106500029564,159.13469415344298,159.13763204729185,159.92039343016222,159.65664225956425,159.05629428150132,158.52405202109367,159.40331183653325,159.22410137951374,159.10627991519868,159.80291597172618,160.19615842262283,159.98367360187694,160.26465264242142,161.09748454019427,161.77891319664195,161.0367560009472,160.64817955624312,160.50773563375697,159.8746244390495,159.94744152808562,159.15226769866422,159.08222515136003,159.11464002309367,158.91506715258583,159.18339057918638,159.32847532304004,160.16382243158296,160.78347607841715,159.82979608140886,159.11611570883542,158.7654122179374,159.4082588236779,159.23697059322149,159.12605322152376,158.6489572492428,159.35883241752163,160.30683261249214,159.82798733189702,160.14518466033041,161.06683796457946,160.92250768607482,161.3239294537343,161.91097703389823,161.5030904286541,160.98977846698835,160.12064543692395,159.3526210919954,159.47700927127153,159.62822245946154,160.44056791020557,160.1912529557012,159.34193713217974,158.70502905081958,159.28938352270052,158.7687994488515,158.54425490787253,158.75429852120578,159.37374042579904,159.42421366926283,158.95233267452568,158.49144547153264,158.70699735730886,159.35943086259067,159.62012540036812,159.90778112225235,160.46374676469713,159.75614924542606,159.85924650495872,160.55493152327836,160.39174950262532,160.63674304587767,159.98053074162453,160.62733033811674,161.4275907385163,162.08410344086587,162.91769619472325,162.46282112365589,161.72017649374902,161.0995630947873,161.9840304274112,161.52860413957387,160.59379926742986,160.814042550046,161.27624764479697,161.31705815112218,160.9787853639573,160.7322042901069,161.53861726587638,162.15237506106496,161.55383260687813,162.1794910482131,161.7930877264589,162.0972780189477,161.91614410746843,162.77086006151512,162.3605887722224,162.9054976729676,162.16304122889414,163.08813637774438,163.77489887271076,163.4088520836085,163.3256425196305,162.83144496334717,163.52905874839053,163.7314362260513,163.49307313840836,163.00068769603968,163.90623752679676,164.53082694252953,164.08702891459689,164.19581102672964,164.03288534190506,164.1848633545451,163.84190879156813,163.1869822642766,163.1169102648273,162.15186766302213,161.6413236418739,161.8025979534723,162.79597479850054,162.24269061349332,162.78186561074108,162.46551822405308,162.31455276766792,163.08039465360343,163.27617661328986,163.30483169620857,164.1630453299731,164.20834045205265,164.95752360112965,164.85104077728465,164.8747882489115,164.80180483451113,165.59863395243883,166.31415624916553,166.64311607321724,165.75482821743935,166.0158128598705,166.6500701601617,165.7475835219957,165.66667742235586,166.06307209143415,165.16617995826527,165.94258833583444,165.79185749730095,166.42684726091102,165.69376421254128,165.81916842982173,165.06949565419927,164.68331050267443,165.41520186979324,165.66666217939928,165.783698388841,164.84039220958948,163.94632864929736,164.31138489441946,163.82584993029013,163.13227717159316,163.8595743519254,164.214914704673,164.77279939409345,163.78846909385175,163.9058717363514,164.08879962703213,163.24732230743393,163.70491167716682,163.92192842811346,164.40280375350267,164.88211187068373,165.04353372799233,165.31898668641225,165.54178542969748,165.38807856757194,164.65081958286464,164.6267309295945,164.0435971347615,164.216077696532,164.49285327922553,164.96722215414047,164.45417954400182,164.10848309053108,164.34709546808153,163.63952246587723,162.77377761434764,162.75616431888193,162.18511291546747,162.0912184305489,161.82943984633312,162.11652851104736,162.7044298951514,163.24989527277648,164.04064797936007,164.39716748008505,163.46150333667174,164.1443867799826,163.8705287114717,163.72152930824086,163.84660645434633,163.13003826187924,163.0032406784594,162.16972567839548,162.9728792780079,162.698654754553,163.65117731224746,163.47708549676463,162.525793986395,161.54941709665582,161.9900330104865,161.37819874705747,161.2312422725372,160.82460659649223,161.30029984610155,161.85655898880213,162.35717887617648,162.50052525056526,161.88813268812373,160.94940944528207,161.81207903567702,161.03148810938,160.09400496352464,159.99428811855614,160.49055211385712,160.95833518449217,160.7786234188825,161.68365240562707,161.0793840913102,161.68941736081615,162.62224030448124,162.4609448458068,161.55853976868093,160.651712349616,161.54858028702438,161.4874846781604,161.62120472965762,160.8300892706029,161.44220075849444,161.32473683403805,161.6166428187862,161.02140288054943,160.52982913004234,160.9149467162788,161.79663483425975,161.27294331416488,162.0050710355863,162.54656308609992,163.176034134347,163.00041434913874,162.22257515089586,162.20476799970493,163.06335156410933,163.56896092975512,162.8118600337766,162.8477141931653,162.40242282906547,162.71188769768924,161.81728655379266,161.15695131011307,161.43434828473255,162.0929537434131,162.0603095255792,161.18003724189475,161.2778052375652,161.6626264336519,160.82808470074087,161.2284324867651,160.4745523207821,160.06151037104428,159.39191356208175,159.49203210650012,158.60979423997924,158.5976251810789,159.23452362930402,158.43567254487425,158.18546074396,158.79605673113838,159.60673719644547,159.67215159116313,160.36846362007782,159.48639692924917,160.00440668780357,159.02766463533044,159.60341312969103,160.36533053638414,160.75660050706938,160.20828172704205,160.2182752196677,159.3157850136049,159.5016167019494,159.5370412808843,159.108893297147,159.72600930463523,160.14968283334747,159.7104874253273,160.23926240764558,159.2608453836292,159.06141109997407,159.07420001272112,159.35827236017212,159.25110077951103,158.37602730235085,158.75139248743653,158.8592438455671,159.34074131492525,159.10523765627295,158.71907495707273,158.51921932818368,158.72984405932948,159.3531474233605,158.680838807486,158.92962621478364,159.2550974767655,159.15861032763496,158.5314809200354,158.97476810636,158.17275258526206,157.66263592708856,157.14890033658594,157.70291941054165,157.38845180068165,156.97014928702265,156.30346602154896,156.37080613384023,155.84212485840544,156.54393993038684,157.3947172681801,158.08261976391077,158.65953497309238,158.0624123630114,157.59927238663658,157.30657255789265,157.04247918445617,156.60438129352406,155.98976518539712,155.2821725406684,155.01962389657274,155.82425373792648,156.59515869617462,156.7533824155107,157.4933356367983,158.00187032390386,158.2710683438927,159.20927465893328,159.4332227013074,158.740574428346,159.120564638637,159.0540854758583,159.32103803008795,158.85678146174178,158.33663974283263,159.1378301763907,158.7564125880599,158.5996530111879,159.12225625058636,159.359943929594,158.44250459223986,157.7297773277387,158.19437353825197,158.93609400186688,159.6777627239935,159.70196471735835,160.49247022951022,160.1772015094757,161.08638318814337,160.99036932503805,160.5432355068624,161.15147500205785,161.56627018842846,161.11909004533663,161.5217491821386,161.89071411220357,162.8317016554065,163.54131195228547,164.33894505584612,164.01892949827015,164.9856012314558,165.7851275424473,165.25526909250766,164.8973514009267,164.17750246357173,164.01485123019665,163.73324742447585,163.91360433911905,163.96791442250833,164.82936661643907,165.03662786772475,164.86949191754684,165.82058278191835,164.95184404868633,165.19173902831972,165.23586397990584,165.41209341213107,164.4296915908344,165.39127909764647,166.12444824166596,165.58382651628926,165.90900086564943,166.17700139479712,166.73431309498847,166.51674757804722,165.84974925452843,165.7086143833585,166.65131573472172,165.91264949692413,165.70478930464014,166.41257179295644,166.88274276303127,167.01538714393973,166.5923741417937,167.28587926505134,166.33312968350947,166.03635509638116,165.81593857565895,165.98699922673404,165.6895637116395,164.97491250140592,164.8481265627779,165.44726931117475,165.4746422879398,165.96267813025042,166.75948687409982,165.81281944271177,166.31717739719898,166.8607050194405,167.39723293157294,166.78926643682644,166.67286195186898,166.93724410282448,167.15652015944943,167.71157019212842,166.71350444154814,165.7439413871616,166.08359915018082,166.53226094786078,166.03076958237216,166.17671594349667,166.65314560523257,166.9634272600524,166.67907859710976,166.3206238807179,166.8851446956396,166.77809131052345,166.76596886571497,167.49986822437495,167.33118275972083,166.96441014111042,167.94699395168573,168.2733130720444,168.30801995797083,168.51450830884278,167.87582742096856,167.72449993435293,167.6203778819181,167.88387238560244,168.11628581490368,168.31107686366886,168.15694940276444,167.24374079005793,167.43723591370508,168.1301609869115,169.02223984524608,169.15606646984816,168.4386579929851,168.72821530839428,168.69856313522905,169.6597717688419,170.35474977549165,169.53618164919317,169.1876129140146,168.18946413276717,167.34587690187618,167.62316674133763,168.15054367529228,167.46648501278833,168.46294646011665,167.82107199029997,166.8923027329147,166.60546184657142,166.3759624348022,165.8281943523325,165.45580399874598,164.51825286913663,164.2955691064708,164.52449861820787,165.28225709637627,165.74841579981148,165.8612097124569,165.21369616268203,165.4326472976245,165.8387484140694,166.43311113724485,165.85920169297606,166.20784578612074,166.982183621265,166.05154915247113,166.6241808552295,166.11129467375576,165.95672027766705,165.67510311398655,166.4564890624024,167.43747335439548,168.19313727179542,168.94277397589758,168.10881789727136,167.3001555367373,168.05374954780564,168.65239254757762,168.79484832659364,168.108839743305,168.34717624541372,168.88960479339585,169.3592279315926,168.64357769303024,167.69068785570562,168.37049241783097,167.39397488953546,168.22842593491077,168.18536168336868,169.0214924365282,169.99411989329383,170.3635618085973,170.3711027330719,170.52618090156466,170.0663784975186,169.7798430235125,169.51556043932214,169.54019397543743,169.22243643086404,168.60107538849115,169.4712432147935,170.03659391961992,170.3563544936478,169.42042241850868,169.33051544427872,168.39488477399573,167.81859086174518,167.919341344852,167.1941110691987,167.0839090012014,167.8390519139357,167.44256670214236,168.40430445037782,168.26860049692914,168.03798543429002,168.12827744707465,167.1454871906899,166.94328603241593,167.69991882424802,168.5704491478391,169.17643532902002,168.68224975885823,168.92371730692685,169.19996682042256,169.5388463898562,169.6987435715273,170.23063506977633,169.54196549160406,168.71414149040356,168.02992332633585,168.6246271468699,169.3268804899417,170.11596967512742,170.55182568868622,170.0614574314095,170.6374045321718,170.4897450725548,171.2904741577804,171.98320066556334,171.01414133794606,170.6054538358003,169.82989368354902,169.9832732961513,169.92847979441285,169.7248679692857,169.68250396149233,169.6856279084459,168.8138088695705,169.21021074429154,169.42356163496152,168.8263402627781,168.65685307839885,168.6275983932428,168.94867030298337,168.2379789412953,167.407795838546,167.27727907756343,167.7788370680064,167.30852761957794,167.1382495625876,166.7769507234916,165.86276913341135,166.19601564994082,165.76698431605473,166.68713376112282,166.85106677236035,167.2552865468897,166.7429664558731,166.01633136440068,166.19144703261554,165.62160198949277,165.0367909166962,164.99998136097565,164.6177884512581,164.44998787576333,164.8626859993674,164.21917578252032,163.44486113032326,163.49589724326506,163.948634670116,163.9039765149355,164.31344291800633,164.731155495625,165.00947853829712,165.89386969199404,165.68961267219856,165.20960576506332,165.54465677356347,166.0457904455252,166.46149478014559,165.78081058058888,165.88633821811527,165.41310766665265,165.8203748818487,166.17693819617853,166.04001258779317,165.38818454742432,165.2649507750757,165.87935547251254,166.82399895461276,167.31552028143778,167.63344596140087,167.17198369838297,166.77578947134316,165.88092423416674,166.52864574082196,166.87329397769645,167.4655069974251,166.60616066586226,166.75389540288597,167.31222878908738,167.54790990054607,168.4461404401809,168.70820511644706,169.53541364194825,169.92746490845457,170.55565925035626,169.7499176566489,169.26731094205752,169.90275819133967,170.7914825975895,170.0499843582511,169.7340104635805,169.7123527461663,169.56616983003914,168.72770132031292,169.22382131265476,168.39600644353777,167.82989879883826,167.74615902919322,167.13454230409116,168.04617501981556,167.81091896863654,166.95187673764303,166.69431693246588,166.5908441822976,167.0494376476854,167.0650253253989,166.2178844208829,166.6501614972949,167.24057753011584,166.4757227129303,166.65968833118677,166.7892510262318,166.87210616795346,166.30521524930373,165.43110488075763,166.14421362057328,165.50793936103582,166.3443101067096,165.9080000850372,166.5226526693441,167.39465541904792,167.03369377367198,166.22894985368475,166.57611540472135,165.7564291297458,165.5301263318397,166.09310530126095,166.14397743530571,167.053408944048,167.74659736594185,168.02077568275854,168.427663737908,168.36440090509132,169.25600576167926,168.29212302574888,169.15353521844372,169.8429621150717,169.6710135131143,169.0273346742615,168.2136438395828,167.62166775437072,167.47112513985485,166.9160550897941,166.38395309215412,165.80875224946067,166.64933685027063,165.90892957011238,165.990015625488,165.0936910812743,165.80327501520514,165.93119701184332,166.11686516320333,165.1668017054908,164.7749569560401,163.85590768558905,163.06615406135097,162.39162593102083,162.41106485854834,161.4597960934043,161.21484908973798,160.92730486718938,160.17748680291697,159.2231388152577,158.28262972226366,157.28360899491236,156.3797344584018,157.1533076078631,156.30330325756222,156.92574916919693,156.91780806751922,157.06041757389903,157.832618704997,157.43432355020195,157.04563342919573,156.68420258071274,157.24008995713666,156.48255036771297,156.8732032342814,156.4553824122995,156.43184616044164,155.88417498860508,156.02904040785506,156.84770805714652,157.01829542499036,156.33505414472893,155.89600130543113,155.986827774439,156.1678492142819,156.35713841067627,156.39355088910088,157.36777830356732,157.60335886618122,158.27101148618385,158.59121450129896,157.79983736062422,157.08163192356005,157.42750219861045,158.32936106109992,158.13844606047496,158.49380305595696,157.52430871222168,157.49582290742546,157.36088619474322,157.01788088306785,157.06492794910446,157.64080651989207,157.9776109061204,158.96663263393566,159.0025499239564,158.50158828869462,158.11608940875158,157.27497356943786,157.9051124243997,157.81556089874357,157.3434061310254,157.12088211392984,156.88230598391965,156.8631820655428,156.25207832129672,155.3634191956371,156.12854760093614,156.59101625764742,157.1286138240248,157.34180548461154,156.45839615445584,156.76384407421574,157.69675016542897,157.05843371339142,157.553703780286,158.08686556806788,158.8147418089211,159.79856153391302,159.99152851616964,159.73866900149733,160.60892447642982,159.98145728418604,160.57749395025894,159.76274047745392,160.70241499878466,159.91313754254952,159.62648589909077,160.26797946542501,159.98422370152548,160.10067456075922,160.71777080139145,159.8818031400442,159.2991262273863,160.15866927802563,159.47735502151772,159.85968278395012,159.8861763132736,159.56287766899914,159.7997217234224,158.8839802290313,159.2979890452698,159.42472711438313,159.68638742202893,158.87587345205247,159.26521117286757,159.49645412154496,160.21595766348764,160.0827760011889,160.02327386755496,159.68992698611692,160.1472435267642,160.33724165102467,161.01507832529023,161.637119140476,161.545724586118,161.40507399570197,161.53964403551072,161.83144570188597,162.8129498916678,162.45538421254605,162.90582539699972,163.66317051509395,163.4965747119859,163.6225632079877,162.77674135938287,162.2361407848075,161.9912111889571,161.567482794635,160.93861287552863,160.4988103667274,159.78819357650355,160.49476949777454,160.12555638421327,161.09779943851754,161.97338823741302,162.36466745566577,162.11991148302332,161.87754353508353,161.0211044079624,160.36361680971459,159.8349968115799,159.76877808384597,160.19274831796065,160.9703197190538,161.10630434844643,160.7303550671786,160.0636143493466,159.40361396502703,158.42449458362535,158.6772030298598,159.39542135829106,159.87690496537834,159.60851577110589,159.06453018356115,159.05872470512986,158.38622223958373,157.87222050968558,158.47387798782438,158.4015956763178,159.13674046844244,158.15509761450812,157.44479807466269,157.30517614027485,157.12527430523187,157.91318770404905,157.53396311448887,158.2859845929779,158.00363866845146,158.67787388944998,159.1801610160619,159.21479443879798,159.66691059758887,158.7929817037657,157.97855682577938,158.4991992157884,158.15316003048792,158.60234462143853,159.28694822685793,159.716556688305,159.4316060594283,159.69001214765012,159.415224713739,159.81926217442378,159.31468430440873,159.616914215032,159.5514206495136,158.69789447449148,159.41958188265562,159.4555060658604,159.79647112591192,160.61745026241988,161.59919665614143,161.18458006670699,160.94563158974051,160.23585949186236,159.88856585277244,160.67067934945226,160.77129579614848,160.00685441773385,159.6694024684839,160.3979474049993,160.85953535838053,161.76967534981668,160.9935236684978,160.15078007103875,160.79079533880576,159.79148844396695,160.71216972079128,161.1978668854572,161.09350453782827,161.57854799972847,161.9528625565581,162.68159945774823,162.91149379126728,163.09839988173917,163.634285048116,163.96824534004554,163.86260696174577,163.14035400515422,163.18504669563845,162.84737160382792,162.6769123217091,162.55833038501441,162.0321862846613,162.4662877973169,162.85752217518166,163.50620089750737,164.1068837433122,163.844393663574,163.80549739534035,164.52033101720735,165.22622959548607,164.7123610302806,165.19737247889861,165.30623205238953,165.60155475419015,165.72318288777024,166.53982802666724,167.13588992878795,166.19085245998576,165.5772804147564,165.09784760791808,166.01322072884068,166.74159344052896,166.05800541955978,166.41605637734756,165.56895064050332,166.39025571011007,166.11646593222395,166.32754926057532,167.11290131602436,167.27352152904496,167.9860889087431,168.18794516241178,167.88056763773784,167.6168749895878,168.26496372325346,168.06651110760868,167.9182718177326,168.29419855447486,168.59770937031135,168.54653737600893,168.98740429943427,169.00039895949885,169.58291396778077,169.59635863546282,169.4136511120014,170.35595596395433,169.99742701044306,169.82596993027255,169.2848888253793,169.76958481175825,169.86711186217144,170.43058374896646,170.29430569289252,169.42309974646196,169.34140452509746,168.53367235464975,167.5967770051211,168.42745947884396,168.45608868682757,168.06258984841406,169.03954137582332,169.81324140075594,170.4686990152113,169.8071243162267,170.34059331193566,169.38018931960687,170.21522814035416,171.09221818950027,170.57368433335796,171.0393549692817,171.52571183815598,171.99342092918232,172.6833605817519,172.6896508024074,172.56302940379828,173.28314096992835,172.74743305053562,172.10850829770789,172.9477665964514,172.3407855955884,172.2081226427108,171.7530269753188,170.75717392470688,170.90749192005023,170.778053291142,170.89873861847445,170.62352850148454,169.651974725537,169.1050945785828,168.86826459411532,169.72989276377484,169.7695288793184,170.63267499860376,171.09714367892593,171.4236495490186,172.1824907087721,171.3128103762865,171.32036106986925,170.8253492838703,170.87094222614542,170.18927856488153,170.528678227216,171.48638359364122,171.8426990113221,172.01303712278605,171.26990996440873,171.94080909667537,171.89603343699127,171.71972664957866,172.43031467404217,173.11061364412308,173.59937902260572,172.96986623620614,172.68446571519598,172.90782757289708,172.53547960333526,171.8926569581963,171.1552967489697,171.84327797871083,172.161843823269,172.55488331988454,171.7041075984016,170.82477667788044,171.3833836093545,171.86250283941627,171.417511891108,171.1394426226616,171.76579902600497,171.3270859764889,171.5092193596065,171.57590207690373,171.2556318747811,171.89753796719015,171.23868482140824,170.86439341539517,170.6361147747375,169.88399767596275,170.28033487591892,170.579251434654,169.86764212092385,169.35236639203504,169.0436425032094,168.15731510613114,168.6085228449665,168.51441170135513,167.70452066650614,167.37453096359968,166.3763241507113,165.42791740084067,165.9795673233457,166.27204618044198,167.10645146435127,166.16300291614607,166.6773544671014,167.02493438404053,166.4952297816053,167.13983592111617,166.8879877012223,167.18256308184937,167.6078382176347,167.0130194784142,167.23478560429066,167.59707263531163,166.6535060829483,167.1105935992673,167.70445511257276,168.29635251918808,167.8404015377164,168.26002812571824,168.2519673127681,168.460612999741,167.78442119108513,168.28895716695115,167.3794608558528,167.64893296454102,167.55594349931926,167.431036259979,167.63119368907064,167.03633890254423,166.29217627085745,166.20405110018328,165.62371522560716,164.77801763173193,165.12260819831863,165.70793751906604,165.93402159912512,165.0988386515528,164.8021739604883,165.58705598814413,165.16786646842957,165.24287006212398,164.69464066857472,164.2904907069169,164.3621307061985,163.50991938868538,163.17884108191356,163.88589769089594,163.9494399665855,163.2779280222021,162.5032948544249,161.68885634606704,162.2166366027668,162.75281974533573,162.9489995879121,162.0771482978016,162.18690117169172,162.7329875137657,161.93879309343174,160.98039821349084,161.13187681417912,161.0020095440559,161.6937328679487,162.30176674760878,162.19715314824134,161.68539125891402,161.38857005583122,161.63454638747498,160.98339599976316,161.17901944415644,160.21010530740023,160.2915568370372,160.74354008911178,161.11819766415283,162.07131424592808,161.5742964693345,161.8787688300945,162.27258104179054,162.31513722008094,162.49075001338497,162.86336969118565,163.06740307388827,162.8223157064058,162.74962261645123,162.85261001996696,162.21645364770666,162.45302025135607,161.4532756479457,162.3601060169749,161.65398497786373,161.46318241441622,161.544571345672,161.5813130401075,161.75222793174908,160.86357077397406,160.68850634619594,161.20480521768332,161.67066461918876,160.68460794212297,161.54438297497109,161.78453571209684,161.6457182536833,161.08949841558933,161.57607311708853,162.39929305482656,162.29166213050485,161.97122928500175,161.447371434886,161.70765765896067,161.2989245732315,161.6770060355775,162.44013380957767,163.1109100226313,162.21708762831986,162.98414834588766,163.2247217213735,163.3347257860005,162.94288614206016,162.25024132523686,162.74227270111442,162.6860338668339,162.85779436677694,162.87771348748356,163.03244807943702,162.37890409165993,163.05940226651728,162.3744096350856,163.26206700596958,163.4443382313475,163.0520985829644,162.3582365079783,161.63366000214592,160.89353181002662,160.09365115268156,161.00153105845675,161.66033392585814,160.73908293060958,160.3219358068891,159.71151638310403,158.95113587612286,158.9280362301506,159.17939231032506,159.02570866746828,159.49410977680236,159.410013649147,160.36960846744478,160.0624765236862,159.6485640895553,160.08906539110467,160.63499765377492,160.28352128574625,159.96776102576405,159.51143617043272,158.55876419181004,159.26175117492676,159.6901787915267,158.69106344133615,158.03191952547058,158.71908714994788,159.03571734391153,159.74853240605444,159.04192141769454,159.36946906149387,160.2570286639966,160.43676519207656,159.8593714358285,159.4190925047733,159.73579555517063,160.50515169790015,159.74396578315645,159.23311749845743,160.0839705397375,159.73088897252455,160.08515689894557,160.88774693198502,161.10220678942278,161.20806028181687,161.8975874260068,162.48324023745954,162.3193796412088,162.0549797913991,162.41885029990226,161.8681435212493,162.55297209974378,163.54650475969538,163.30523784644902,164.1103795641102,164.24935089517385,165.07290906785056,166.060168848373,165.22160931676626,165.6626215414144,165.44423779612407,165.8544969363138,166.5967775322497,166.8849416836165,166.89457868086174,166.5532663357444,165.78600791934878,165.36597022414207,165.32851487770677,165.53879021527246,164.61529607884586,164.88237805804238,165.61630198499188,165.9278050721623,166.00419440539554,166.03783849952742,166.0862653371878,166.46885953098536,166.1682599191554,166.8826794703491,166.3195839957334,166.45166402496397,165.51880032243207,164.9557780153118,165.44118765043095,164.73841599468142,164.84005061443895,164.49049239512533,164.07223246619105,164.43503013066947,164.10918758017942,164.03904457902536,163.46966322744265,163.45092761842534,164.37555518792942,164.6523003000766,164.90827041026205,164.44719042489305,164.24349390389398,163.91179342195392,164.54342652810737,165.35405936231837,165.55906571727246,166.5257352073677,165.6515867910348,165.09506111266091,164.88295679166913,164.59229527181014,164.33050459856167,164.9044715128839,164.73117727972567,163.76379487011582,162.83006381476298,161.92450126819313,161.27277232520282,160.86861860891804,159.8918302305974,159.8829588056542,159.45496117090806,159.75967236515135,159.78355783829466,159.90651897294447,159.95884994557127,160.31767298839986,160.2896618647501,161.0721931513399,160.50637060962617,159.66060343477875,159.5357110570185,158.8698654626496,159.68824058398604,160.31237239250913,159.81429724115878,160.63479094346985,160.8134756339714,161.3807610347867,162.2236898331903,161.46330413455144,161.91762518929318,161.0798924388364,160.42913441220298,161.0373443737626,161.20393958175555,160.46027411986142,160.36466882843524,159.96504367422312,159.76475500548258,159.57147348718718,158.91491844365373,159.84119111625478,160.76686194958165,160.13990030623972,160.8114505475387,161.3231935040094,161.87683621421456,162.35394351370633,162.75592011213303,161.93542001210153,162.58406483987346,161.88876876980066,162.84396217390895,163.51797772338614,162.67694757971913,162.31389989657328,162.30011486634612,163.08361243316904,163.65742498543113,163.53043633606285,163.74309303238988,164.16071786964312,164.45723606832325,164.69375195214525,164.2083271248266,164.06110701616853,163.8291622637771,163.97057554172352,163.8324596611783,164.82504980778322,164.02167558809742,164.0544710350223,163.50929256342351,163.80012068757787,163.36083686025813,164.02415461372584,164.79935446288437,164.83414196409285,163.9498799261637,163.61287272861227,162.90628462005407,162.89606751408428,163.10851786099374,163.68536973604932,163.28206330910325,163.38536564214155,164.03367259912193,164.27132679102942,163.68291877163574,163.01682651927695,163.66619152808562,162.69651808030903,163.2196720954962,162.8458993891254,163.27770380070433,162.77890506992117,162.42549025081098,162.03965890267864,162.50704243825749,161.59843263635412,161.30201814277098,160.46306431572884,161.2703158594668,161.7549783741124,161.06378573505208,160.89603152871132,160.53193151764572,161.2501798560843,160.49552059080452,159.79533118521795,160.39229874266312,160.38284689793363,160.1158450068906,159.4182212660089,158.87007871456444,159.1694460217841,158.2691884911619,158.96918716374785,158.00773893110454,159.00657431269065,159.82820312865078,158.9710221849382,158.27656761649996,157.72346310829744,157.7586460756138,157.38011690648273,158.3395312097855,158.50823855074123,157.5851722676307,156.81263551069424,155.99618053995073,155.11166235944256,155.5892322221771,156.54990514181554,156.98000860819593,157.01379663078114,157.5998276420869,158.12791063729674,158.26002746308222,158.6068833968602,158.49575529573485,159.03231305768713,159.32933018915355,158.71082455804572,158.48257141001523,158.53749477211386,157.94959313422441,157.5755732106045,156.90274348389357,156.32477894518524,156.98512198589742,157.52891265274957,157.15279771760106,157.93420331040397,157.65375922247767,157.705987080466,158.6358681730926,159.1985649112612,159.53522958699614,158.76732519688085,157.85975394165143,158.3313470967114,157.40885916957632,157.91567835537717,157.95637846831232,158.37125434726477,157.73987394571304,158.26950751105323,157.9654624313116,157.85842995066196,158.40154082188383,157.602770853322,158.053853220772,158.45966733945534,157.9484330243431,157.98961169319227,157.38912708032876,158.2692046794109,158.51408400479704,157.8524898136966,158.24878053599969,158.95356084033847,158.10422984231263,158.51140022696927,159.34503061883152,160.3233241555281,160.70144773414358,160.7748624458909,160.38293538987637,160.57631730753928,161.5730250501074,161.98346820566803,162.41998856142163,162.3032272704877,161.89264776324853,162.08071776246652,162.4435922484845,161.65237031597644,161.66444299789146,161.21950249467045,160.73034633230418,160.6784815909341,160.23379404703155,159.46805995563045,159.1065480769612,159.09748230082914,158.8079729406163,158.92116863839328,158.18436290277168,159.0381956966594,158.52615152532235,158.27719338750467,158.85157923446968,158.22668127715588,158.0378137594089,158.32279107999057,158.86738478951156,159.8589370585978,159.11324668722227,158.57249302929267,159.18122153775766,159.66371630877256,159.26233588298783,159.28895749989897,159.34488249849528,159.4538005096838,159.91770554240793,159.17540490394458,158.57021815190092,158.76016470277682,159.07283854391426,158.40091581037268,159.10751712322235,159.7896258076653,158.89366756286472,158.56011386960745,159.1711631435901,159.70639973925427,159.0117271495983,158.52133252704516,159.04960147943348,158.14995614392683,157.94697721628472,157.45100915338844,157.16959427995607,157.72150946129113,157.3000659761019,157.06727160187438,157.34796690754592,156.54935547942296,157.52458940353245,156.7270148782991,155.73074457328767,156.40616820845753,155.41849081078544,155.27794220205396,156.0818500602618,155.5184144191444,155.98322389414534,155.133957660757,155.36262094788253,155.36141403065994,155.86802723957226,155.82109645521268,155.38121294649318,154.39855555305257,153.87993270391598,153.0624759728089,154.02786815492436,155.00714859133586,154.5612389924936,155.30094607546926,155.44004702474922,154.54438191838562,154.96485645975918,155.84199281176552,156.1911456962116,156.28631237056106,156.32633904740214,157.08812666265294,157.9633306916803,158.74406712548807,158.64171863673255,158.7926733829081,158.26409616600722,158.6218280615285,159.2207954991609,158.22200434748083,158.34600874502212,158.618503279984,159.31085703196004,158.87217802973464,159.19826591806486,159.51336196949705,159.70134875923395,159.87810167018324,160.5947104538791,160.3346254969947,159.45425822539255,159.39775738539174,158.91219799779356,159.174795857165,158.38335043890402,157.72202172037214,158.18141264934093,157.49334452161565,157.8578948364593,157.16966666467488,157.0063235447742,157.17554001836106,156.21634651115164,157.18892850494012,157.810424098745,158.10754206683487,158.23961810581386,158.99316577613354,159.35940351290628,160.3163009849377,160.31637580879033,160.17840599128976,161.0115241096355,161.82949597295374,161.46945458464324,161.45073809335008,161.5484204730019,161.65378701826558,162.2963532935828,161.6777788172476,162.11862056795508,162.1587654412724,162.6490453220904,163.5905771558173,163.3776466846466,164.0453055310063,164.4911660659127,164.33372531784698,164.20309284655377,163.6267727036029,163.0446408521384,163.72792779654264,163.78912840876728,163.2216782658361,163.1252810708247,163.89274568948895,162.98562656668946,163.42733901180327,163.01453666575253,162.71282657328993,163.6395537876524,164.54655572818592,163.63611725950614,163.34081235993654,163.1245932970196,162.73772114841267,161.7920154570602,162.79009578377008,162.84851477108896,162.10231082933024,161.5865799705498,162.38821610203013,162.76696362625808,162.36240021605045,162.511882646475,163.50770756602287,163.35709096910432,162.64301822707057,162.80177902663127,162.94097944814712,161.96984676504508,162.8192504090257,162.4159667850472,161.8559500039555,161.49513069586828,162.26337138516828,162.2640077266842,162.60465996526182,162.42807734617963,162.79416705621406,161.8308403370902,161.2925923364237,161.61733299028128,162.5288007990457,161.78455829806626,162.69041541265324,163.07378656137735,162.25224601337686,162.9119641049765,162.847918568179,163.67567346431315,164.04411140596494,164.56575190695003,165.52113980520517,165.5182044026442,165.84492853051051,166.68596645491198,166.11172102252021,166.6388124646619,165.66044028336182,165.01667506899685,164.58699029358104,164.4079724578187,163.49226553877816,162.57881180895492,162.8768953899853,162.06851138081402,162.0967847108841,161.15695527615026,160.6805207626894,161.3202380738221,160.63387408526614,160.74123065313324,160.356700591743,160.7233815016225,160.5517131923698,159.98591097723693,159.68490015296265,159.88057354139164,160.8155840076506,160.84611944807693,160.73778594098985,160.24484321149066,160.482582422439,159.8598002353683,159.31460518203676,160.0893573933281,160.21326922113076,160.54752134950832,160.44818632351235,161.23793402407318,162.1324575645849,162.70095591526479,162.07237565610558,162.0024315477349,161.69167310278863,162.17124060215428,162.83101929631084,163.7512790239416,163.1027906574309,163.72490897821262,164.6462583974935,165.61507277563214,165.29259364446625,166.13157071871683,165.66104823024943,165.49814306478947,165.29903600737453,166.0968126305379,165.19067771174014,164.65156192798167,165.02716689929366,164.4128971514292,164.19209830835462,163.9346176669933,164.67794123943895,165.32199852028862,164.54269900918007,164.88948310539126,165.439940164797,165.81594004668295,166.67290178732947,166.3957795635797,167.04339722916484,166.41250493796542,166.1378953680396,167.0756374783814,167.1980494679883,167.3753561647609,168.19439405109733,168.64567178627476,168.51321813836694,167.5770493056625,168.34589780587703,168.63936277572066,168.1626430004835,169.01025060843676,168.31051869690418,168.16047928808257,167.52330883499235,168.0706464597024,168.83506115712225,168.77571864938363,168.64014629274607,168.7560786800459,169.2207094458863,168.42401079274714,169.30939799454063,169.79466294357553,168.92092930991203,168.91611424973235,169.5614049807191,168.91544407280162,169.53018914349377,169.2029388556257,169.86759438505396,170.72618461353704,170.98067042371258,171.2248660698533,170.2479090448469,170.94955412857234,170.21069801039994,170.52331958152354,170.1736534629017,170.48640395281836,170.83436413062736,171.22276879055426,172.08564316295087,171.8112719245255,171.53855373105034,171.27595103811473,172.24928767606616,172.06340427789837,171.44406963465735,171.53585795639083,170.69339180504903,170.0957176447846,170.60436413809657,170.5392990061082,170.54491797229275,170.0030052792281,170.34110103128478,169.7278695809655,169.98016380425543,169.2603315813467,170.2237407634966,170.54298731079325,171.27694347826764,170.29057319788262,169.51723294891417,169.02456241613254,169.20772345224395,169.58580723498017,169.49749512877315,169.41897525032982,168.77463059825823,168.59624529303983,168.24440235458314,168.79231797344983,169.0988864041865,170.06771695287898,170.08717393735424,169.63536325003952,169.19860679842532,168.91937529249117,169.56264922674745,169.34346685465425,169.18552712956443,169.5599191058427,170.43859968194738,169.90040550101548,169.99754872824997,170.24893307778984,169.85203009005636,170.6257333951071,171.4686223929748,171.244389526546,172.0273798503913,172.85696808528155,173.78992489166558,174.63432756857947,173.7130020200275,174.15367289213464,174.5090928794816,174.15439518075436,173.43308282084763,172.4647470191121,172.58609485579655,171.664651656989,171.902898600325,172.62675911793485,173.14173333952203,173.00513495039195,173.19482542481273,172.95565726002678,173.7590832458809,172.88002178585157,172.8348280787468,173.31867446843535,173.4249913659878,173.4285660306923,173.12963049998507,172.14263629401103,173.03037772979587,172.2927784738131,172.631484543439,173.25040657445788,173.5137358326465,172.55711885914207,172.92715401295573,172.0557162091136,171.8423194787465,171.50177358230576,171.75298336148262,171.53352573886514,171.4767200020142,171.25543305743486,170.58753184601665,171.2748874342069,171.22242287220433,171.58674999698997,172.038530302234,172.6859633969143,173.3759518880397,173.7622316912748,173.90660298336297,173.11804370675236,172.59976846678182,172.7995419143699,172.65644546505064,171.77132655121386,171.03203785279766,170.91666920203716,170.86609822837636,169.87259841430932,170.23684880090877,170.9252859838307,171.63170354859903,171.08312270510942,171.66475903242826,171.11014457419515,170.23854118259624,170.74152138084173,171.66739632375538,171.74076820211485,171.83075201697648,172.37554725958034,171.37585314549506,172.21385344024748,171.6100166188553,170.8406316372566,171.07422472536564,170.31113432068378,170.91970598744228,170.3177547142841,170.44612542819232,170.5823313575238,169.85848577553406,170.48912542080507,169.9940306614153,170.06883763475344,170.28631858807057,170.2622768273577,170.66155108483508,170.18374842591584,170.6518421433866,169.68718111841008,169.7921130717732,169.49591455655172,169.5959939705208,170.46767533943057,169.49796951701865,169.5137536553666,168.5503154513426,168.31229532090947,169.20791921764612,169.5979351750575,168.80507671367377,168.68077920703217,168.25660236971453,167.58707987330854,166.7082501044497,166.14161278447136,165.54958620900288,166.34395453426987,166.96626693895087,166.90606483537704,167.69036527071148,168.60919869644567,168.859692777507,169.25198546238244,169.78762314468622,169.8132545123808,169.06018202472478,169.37838607653975,169.219437985681,168.41669824207202,168.52055347617716,168.25970032811165,168.62517238082364,168.6744683883153,169.06108169537038,168.10227529751137,168.00988067733124,167.57155760424212,167.68226499855518,166.86109230155125,167.50378953292966,168.4600042910315,168.77309256093577,169.61026635440066,170.47455719206482,170.376375740394,171.0526342377998,170.1915265219286,169.9672408439219,170.13865309488028,169.57622001273558,168.72695345478132,168.31338824238628,168.5022545182146,168.87292181234807,169.48948839493096,170.48609194951132,171.34298119228333,171.54501444660127,171.50563676003367,170.68666660320014,169.7194587229751,169.22873474797234,168.7933853212744,168.88769417675212,167.9575105146505,167.67338079819456,168.21313440520316,169.05352218216285,168.99201511545107,169.52002472942695,170.01804109290242,170.71091832127422,170.02506016008556,170.10004119155928,169.5777579820715,169.08890171861276,169.1257841894403,169.01507533434778,169.63465070351958,169.4295843532309,169.54537959909067,169.1335203135386,168.56603566044942,168.52921823738143,168.04674551961944,168.83705822005868,168.61038044746965,168.3734904639423,167.49257802730426,167.73888227483258,167.0839783209376,167.52602344099432,168.13078325986862,168.6769633279182,167.85552749875933,167.89993597660214,167.87828448880464,168.4781349520199,169.02020787075162,168.46902236156166,168.78580420045182,168.49988736584783,168.76808621082455,168.5139207104221,167.5207095751539,167.88533756975085,168.05267740227282,168.51099346624687,168.35775274597108,167.6629288350232,167.65048319660127,167.8237776583992,168.8036454138346,168.227087108884,167.62052257591859,167.35821113083512,168.30238353041932,167.38969996199012,166.62768882978708,165.9696701564826,165.9951615552418,165.27493911981583,166.13228887179866,166.55517510836944,166.346304602921,166.73544348124415,166.90685304393992,166.3018700396642,165.84360421262681,165.1015798477456,164.8655892298557,164.7860825289972,165.2353835948743,165.91471027815714,166.33779507130384,167.16377664962783,167.16240568831563,167.59483036398888,167.38765474641696,166.9633154333569,166.46832913067192,166.76635960955173,167.30962370242923,167.73459362704307,167.27640896709636,166.291218502447,166.74643137026578,166.15850518038496,166.97771060280502,167.21832076413557,167.66004255786538,166.84807606739923,166.83658899134025,166.9211156615056,167.36867341818288,168.1334746759385,168.3775744359009,168.95007739728317,169.1011395212263,169.61368112405762,169.05159732652828,169.70619997242466,169.4316283822991,169.95781255932525,169.66547041153535,169.53746114391834,170.0156657914631,170.0267917639576,170.65457749832422,170.67203339468688,170.5394850661978,170.18082089116797,169.28693753201514,168.5382233900018,169.31039626477286,169.45637645293027,169.76573865115643,169.97274006763473,169.75997396884486,170.05019641993567,169.0607721642591,169.11390721565112,169.76472028438002,169.00380578823388,168.64920127298683,168.5264938562177,168.16931065404788,169.08300343388692,168.40003008255735,168.52368757640943,167.99483262142166,167.25259791733697,166.86516857286915,166.53174892719835,167.1576380780898,166.49176785862073,166.95725499326363,166.96540974406525,166.14359811367467,165.97265872452408,166.9525421289727,166.85415583616123,167.23691387008876,168.07462511071935,167.85679564345628,167.39374702656642,167.2228524577804,168.20741819869727,167.29506343370304,167.30180536722764,166.84508221317083,167.0412075263448,166.18873173044994,165.75965176103637,165.6098438007757,166.0566820395179,166.16532587027177,165.39386373851448,165.96239861520007,165.74293601932004,166.2410839367658,166.10276440996677,165.74900173489004,166.00221262685955,166.5304028703831,165.8509867042303,165.462171707768,165.13564522424713,165.92993560247123,165.42312520369887,165.41581327049062,164.5080187069252,165.05042106145993,164.18057809071615,164.56173628754914,164.9510322259739,165.55588172841817,164.64674168266356,164.30220407247543,165.17310323473066,165.17656811652705,165.06094572227448,164.31129644066095,164.30071547208354,165.09649762231857,165.70316369831562,165.99623922165483,166.2714250041172,166.23920041136444,166.7270027315244,165.88890150003135,166.01676406851038,165.32608100399375,166.05786837358028,166.59978459076956,165.80655220383778,165.99104856792837,165.35409030830488,166.05409590294585,165.77091012708843,165.06384446565062,164.60606049513444,163.79218729073182,162.80051195947453,162.01600254280493,162.47552536288276,162.3740706918761,163.0096364011988,162.9140648120083,162.32273843698204,162.62348614213988,162.69627204863355,162.57791579002514,161.58822891209275,160.9946352057159,160.9128009895794,161.28382586035877,161.2116219890304,161.9129428314045,161.25525138806552,160.80703722452745,160.7246491839178,160.23422507662326,160.91611060872674,160.0413471418433,159.36846469761804,159.42124135559425,158.75485775945708,159.00140170613304,158.92378791142255,159.15554613200948,159.1515467981808,159.16274099005386,159.43576827598736,159.7846552208066,158.83223076257855,159.45947943115607,158.69101723469794,159.06505035515875,158.86417585192248,158.98695034347475,159.60375794395804,160.39477322343737,159.71611439809203,158.8342718775384,158.84848006349057,157.921078289859,157.93156304722652,158.40825948910788,157.50268420763314,158.43542153853923,157.80497819231823,158.1722804880701,158.94626542227343,159.43439493142068,160.2549450546503,159.77225240319967,160.35107584483922,161.32995872665197,161.21065246127546,161.9684427366592,162.2175879618153,162.83191669732332,162.0628664442338,162.2382906996645,161.57671248773113,160.64615427423269,160.44872663123533,161.3438821961172,161.41142644686624,162.21228355029598,162.77878808230162,162.4849612279795,161.54464901983738,161.940693073906,162.58207751857117,161.9625996989198,161.3356309258379,162.1857510469854,161.3716781497933,161.05879249982536,161.67760379100218,161.40573439467698,160.442758589983,161.43541084928438,160.759378190618,161.6090092533268,161.36899425741285,161.2046105931513,162.18915183888748,161.93997302185744,161.18348289234564,160.23957342701033,160.25871633924544,159.3541244813241,159.93196176597849,160.7771933088079,161.32832015445456,162.18038420798257,162.99595267418772,163.09317239932716,162.82754228683189,163.16792905237526,163.5355798075907,162.66965101938695,162.38231581589207,162.67303802305833,162.67002480011433,163.10727017046884,163.63794616563246,163.02135904040188,163.45865815272555,163.66283295769244,164.05077251326293,164.6496761138551,164.93745254771784,165.86839260719717,165.18351654103026,165.0760959945619,164.52579925442114,165.2985204262659,165.2773503116332,164.98930236976594,164.49951681494713,165.27972666267306,165.64522603200749,165.54347641207278,166.1422989917919,166.72124659223482,167.14788113953546,166.29219477204606,167.03773152269423,167.44666818575934,168.08479688409716,167.55049506062642,167.32872131606564,168.0346866841428,168.26724889688194,167.70071789901704,166.83672272227705,167.30785545473918,166.80842021293938,167.00063603417948,166.13612532196566,166.824051277712,167.76778696058318,167.47023071534932,167.35843280144036,167.77972189243883,166.8303377488628,166.0950160799548,166.18987611494958,166.6490826313384,165.6887097810395,166.11468893382698,166.84159731306136,167.01230708602816,166.76314735226333,166.70681750262156,167.31357387732714,168.19678125763312,167.89298139931634,167.00860222475603,166.37471364345402,165.63807605439797,165.06670679105446,165.28795572277158,165.81144145177677,166.29291655728593,165.74868892179802,164.7877029213123,165.023082065396,165.9150935150683,165.71456981124356,165.33775853039697,165.61518071126193,164.85052808979526,165.00123745156452,164.9287726203911,165.41840097866952,166.01084335613996,165.03622852778062,165.75413995049894,165.93221081234515,165.65853567561135,165.99500261154026,165.1261979904957,164.56730087054893,164.24072352191433,163.85083181550726,164.1329546570778,163.48114449484274,163.09657326107845,163.68382226489484,164.21423995308578,164.45808387873694,164.97532967338338,164.87333204457536,164.14539849525318,164.57110328460112,163.65665864711627,163.56241274438798,163.8219434339553,163.5161068108864,164.34975504362956,164.10409337934107,164.53636265546083,163.66742528835312,162.87058672774583,163.2581148641184,162.68401281582192,163.18381206318736,163.16347711440176,163.11895130993798,163.61834643315524,162.8579648961313,162.0532693178393,162.27414215775207,161.31439002975821,161.42323124967515,162.21276007778943,163.13335815863684,164.1243155892007,164.06155476160347,164.00768976286054,164.23328820522875,164.23443803563714,164.2445300091058,164.73175037279725,164.30933543667197,164.70428416132927,163.91347113624215,163.97747395467013,163.36372526036575,162.8125694426708,161.81821673410013,161.13931887643412,161.54035490797833,161.53598942095414,162.07040216587484,162.7071264097467,162.6915028807707,161.84322858322412,162.05376260355115,162.17968618217856,161.30267019523308,161.06181812798604,161.77269688807428,161.30180506920442,162.03831930318847,161.18446596805006,160.8068711240776,160.6120858071372,160.1884090830572,159.71971470490098,159.80518580321223,159.45449811127037,159.9579942706041,160.18593598203734,160.87252345960587,160.08641810994595,159.51513909222558,160.38888236880302,159.904826937709,159.02557266363874,159.53300882922485,158.6981019480154,159.29589444119483,159.98514213273302,159.5299211544916,158.99671874335036,159.55791914416477,159.7495248853229,158.87277237372473,159.57212669262663,160.30131504451856,160.94800945278257,161.55207293713465,161.73718651663512,162.38254821207374,162.4979570331052,161.98372613172978,162.82423401251435,163.3788427640684,164.16202425351366,165.10414172615856,165.48286913661286,164.5635250597261,164.6457174634561,165.4276686590165,165.2834176630713,164.92524317838252,163.99166761757806,164.93254498019814,164.48195137176663,164.30870969267562,165.11164829693735,164.84873612271622,164.85332744568586,164.18208058783785,163.90647452929989,163.16458207182586,164.14221971994266,165.13919422449544,165.28340812539682,166.04710197169334,166.8308001901023,167.80062030488625,168.7292660586536,169.09750423347577,168.22247922979295,168.44557108310983,167.73208821099252,167.69538081018254,167.48456260748208,167.51626437110826,167.99295512679964,167.99950605025515,167.8219766630791,168.30877838563174,167.31775475014,167.0254717762582,166.34115901915357,166.1321571120061,167.06104218494147,166.39756390172988,167.28061281330884,167.6269811228849,166.86938275583088,166.46245193621144,166.6441047070548,166.73138259723783,166.86098548211157,167.2261760160327,167.32986628171057,166.9796437593177,167.01548129227012,166.39756739139557,166.19623107649386,166.10079179238528,166.70381429046392,167.59951412305236,167.68315462814644,167.4394117044285,168.36901340354234,169.14161496888846,169.11010682722554,170.06636765319854,169.07373697822914,169.93643779307604,169.94846669910476,170.4532682527788,169.822409898974,169.19283016072586,170.02470248518512,169.62158238096163,169.30397689621896,169.62330151256174,169.54769221367314,170.21449651941657,169.90178898721933,169.5467393961735,169.79794870177284,169.49083422124386,170.35417767707258,169.8990611806512,169.5186663446948,168.62122322199866,168.79681433411315,169.34398485859856,170.20002166973427,170.74517254065722,170.31110966857523,169.52071147272363,168.97156511200592,169.1906546028331,169.942473877687,170.5896646422334,170.26497899740934,171.25559184746817,170.58604563772678,170.65154912881553,170.31273613031954,171.17365971766412,172.1095227249898,172.24764598999172,172.6665967819281,172.58986285701394,172.78685105778277,172.80939788511023,173.0807008901611,172.96100550796837,173.4908996410668,173.67136136069894,174.42498476756737,173.9724287763238,174.62234654277563,175.27427353383973,175.63384471507743,175.50002412917092,175.7180674355477,176.62584598641843,176.63673097500578,176.92271988885477,176.45733137894422,177.16117367520928,177.72534262994304,177.49039397295564,178.15035995049402,178.5242468235083,178.08005913859233,177.26992527302355,177.78052606293932,177.60215652082115,178.33772300370038,177.75328553887084,177.07895260490477,176.70713812764734,176.70342182321474,175.92868814943358,174.99175607133657,175.63185868551955,176.5812142500654,177.57296145195141,177.54661725182086,176.6900519579649,176.0607144003734,175.4207365089096,176.00800677994266,175.94518681336194,175.29735308419913,175.3196887942031,175.05287631507963,174.2716121217236,175.24399648280814,175.80193978874013,176.47501587728038,177.0909969350323,176.8927905652672,175.9231651239097,175.57041758904234,176.171999219805,176.77844467991963,175.840901943855,175.9357527475804,174.9369672993198,175.55229132482782,176.5374744287692,176.45626243250445,177.2126304670237,176.61161295557395,177.26079822238535,177.18524488341063,178.08677654666826,179.01688004890457,179.39195342594758,178.80284713720903,178.28195809107274,177.42728758975863,178.21495101368055,179.11383174080402,179.16461536334828,180.09465445764363,180.45829413458705,180.3006014949642,180.5909734289162,180.58753271959722,181.08959653461352,180.29008238902315,180.25784289464355,180.85603733407333,181.80473295180127,181.78541693091393,181.791044392623,181.07506940094754,180.08077448932454,179.6510772141628,179.45106489025056,179.8185396157205,180.624806673266,179.83665219089016,179.10488295555115,178.19234832422808,177.88673511566594,177.52940642880276,177.6697554285638,177.56128998752683,176.61171790212393,177.2088894196786,176.44230627082288,177.2185726640746,177.24216186907142,177.67118336400017,178.3600989477709,178.65313004981726,179.46802014810964,179.69582307059318,179.8531272355467,178.92414126498625,179.18463837495074,178.68305806815624,178.69520303793252,179.08047435292974,178.42258165078238,177.46582295559347,176.82678927574307,176.1748871090822,176.7838295865804,176.59224711963907,176.2524348348379,176.89867214066908,177.89355940977111,178.8328553494066,179.52387239970267,180.0611013895832,180.61318670073524,181.04528208775446,180.9308259692043,181.54543045535684,181.27274973038584,180.58108959905803,180.91609799070284,180.55676553817466,181.39910889836028,182.29865279467776,181.5409072395414,180.86164936143905,179.90985206887126,180.54600265063345,181.19931671069935,181.1855274750851,180.65963819762692,180.54850037908182,180.80701493564993,181.79517081892118,180.95218377094716,181.60256219888106,182.1300095077604,181.13899748353288,181.81183261564001,181.59159040963277,181.23711064923555,181.77464980492368,181.49815385928378,181.11920360196382,180.13100531185046,180.27345124585554,180.60092957969755,181.12356355180964,181.42327377432957,181.7546290382743,181.26153456838802,182.11182794114575,181.31671973736957,181.86843047942966,182.36866477318108,182.807062423788,181.95115288859233,182.38985802419484,182.99247592920437,183.74744364991784,184.35148102417588,183.4725099611096,182.85437855077907,183.245175790973,184.1719765639864,183.25318615697324,182.42149339942262,181.8803179031238,182.01546336291358,181.32198968948796,182.12839426612481,182.11838708631694,182.3559042722918,181.68243609881029,182.0641141999513,182.14911607978866,182.78431044658646,183.49035940458998,183.7501287292689,183.21777104353532,183.98222169280052,184.23303719516844,185.02451361157,185.98657851293683,185.49000469828025,186.25106360157952,186.15355372149497,185.50467767892405,185.4493258362636,185.32402493897825,186.11667817970738,185.68337407708168,185.0277486932464,185.30671175103635,185.38417156320065,184.91276206355542,184.26381638692692,184.94705489091575,185.32746170042083,184.770164498128,185.01424183649942,185.8159990417771,186.16418719803914,186.53410562407225,185.68580116517842,185.09127255901694,185.96294622542337,186.80340312980115,186.9610176566057,187.64862407231703,187.3511899667792,188.34558622259647,189.05362835992128,189.94261420099065,189.42384795984253,189.19509914517403,188.44367233477533,187.70123100932688,188.41384940361604,188.90311200544238,187.9612463065423,187.61112195951864,187.17179049924016,186.82113580452278,185.85796795552596,185.5774819245562,185.6109500033781,184.9945692885667,184.7418423658237,184.59755470696837,184.37290070857853,183.43188821244985,183.7506571356207,184.42541126254946,185.18243193160743,184.51274518063292,184.91473995475098,185.8898727488704,185.62621998041868,185.37310456391424,185.87674050964415,185.8917462299578,186.8370180646889,186.9979001735337,187.26949130464345,187.58427777932957,188.45560488523915,188.5938201667741,187.69538787845522,187.0997199602425,186.46485480247065,185.93413100019097,185.93278023740277,186.71522753080353,186.0582458730787,185.94232547655702,185.05425143241882,185.1296012015082,184.2796782022342,183.75756316864863,183.5034417300485,182.77492790250108,181.93359691137448,182.823883600533,182.41711088223383,181.79879674734548,181.41983109572902,182.2444101846777,181.67798845935613,181.4519011960365,182.35230442415923,183.09997815592214,183.955403144937,184.39251224556938,184.70312587637454,184.20872457837686,184.92162909638137,184.89348666230217,185.2080250242725,184.66211503604427,185.49920966336504,184.65947635332122,184.7874812404625,183.91072477120906,183.43803892238066,182.47851238539442,183.37873501284048,182.64436215767637,182.116070097778,183.06116218073294,183.0268604713492,182.61747087398544,182.39909826871008,183.3594187074341,183.7366205570288,183.61899032164365,184.27724344097078,183.36690487712622,182.72941403416917,183.71149805141613,182.9538337350823,182.76576843718067,183.3170407419093,183.5384115553461,183.73765623755753,184.26352338446304,184.90601960988715,184.75638143299147,185.30961435334757,185.5743315992877,185.81577105727047,185.13249293062836,185.92048764042556,185.6073722401634,185.13156889611855,184.22463245596737,183.54284531250596,183.8893079920672,183.3925279318355,183.82086248276755,183.23380930675194,182.61703369114548,183.42771223606542,184.06529168505222,184.90976722771302,185.73838371783495,185.79204776976258,185.92379989661276,185.47845905926079,184.8818119284697,185.24681498901919,186.1530795553699,185.87973040528595,185.36959411855787,185.06126389233395,184.2829749523662,184.57618735730648,185.06333710625768,185.9776630597189,185.93044552067295,185.5626287655905,185.78776046959683,185.54709009779617,185.30944382306188,184.48887779423967,185.35263004759327,185.97289682086557,186.82722171675414,186.27050378685817,186.58894331147894,185.6001132237725,185.7873285659589,185.41163283679634,186.19293122412637,186.82249078620225,186.2342140818946,185.60708146495745,186.46871076570824,186.6244082292542,187.2990139713511,187.17903337534517,187.0922391875647,186.68116782139987,186.88394373841584,187.48109222063795,187.37069609435275,188.01633271528408,188.97453788015991,188.53006298234686,188.24517328012735,188.98716898960993,188.75235955463722,188.11427054787055,187.66015688003972,186.80695628048852,186.02607683790848,185.04557918012142,184.26648177579045,185.1132972999476,184.22170280804858,184.1439755889587,183.70786629477516,182.75113414553925,182.0266525191255,182.07235927367583,181.96530076581985,182.13758088555187,182.9449122599326,182.64314138004556,182.39277006825432,181.4199015428312,180.60518662072718,180.6613608119078,181.5245549264364,180.75508728204295,179.85653960891068,179.39770387904719,179.99991912860423,180.7785847056657,180.96463484317064,181.256689989008,181.44283990981057,181.2985438676551,181.08837063005194,180.40422758739442,180.3897382542491,180.25508285779506,180.76635996391997,179.8672920926474,180.62652935599908,180.77623673714697,180.79145574616268,181.6600590609014,181.01356571679935,181.10272831097245,180.3316144850105,180.54058809252456,181.52548812143505,182.08595143957064,183.06831415044144,182.3797685811296,182.2276985757053,182.9738239911385,183.22875435464084,184.11726872669533,183.5729084359482,182.7115551806055,182.20533258561045,181.46974940458313,180.929509120062,180.016174252145,179.2069263579324,179.64517225511372,179.7134952004999,179.36079430719838,179.54057443793863,178.91931400541216,179.7941438825801,179.8991135340184,180.16214681370184,180.90444556158036,180.63594148634002,180.03688599634916,180.89956873236224,180.61221894947812,180.80266924249008,180.6576068457216,181.50865698466077,181.97741393186152,181.1522726835683,181.9614658774808,182.46141528803855,182.71258947858587,182.4610708989203,182.90996812237427,183.69376286538318,184.01833155751228,184.45403455663472,184.03015996376052,184.13932325085625,184.13846227666363,184.63337301230058,184.03182715922594,183.3601631387137,182.4636043868959,181.58942065527663,180.72339311474934,180.3018466345966,181.12944661686197,180.81137340934947,181.65604405663908,180.88155400333926,181.74518842017278,181.46219538291916,180.50965635245666,181.4221253329888,180.7197806853801,180.1218155673705,179.75579867092893,180.2761774812825,180.51964609883726,180.55465083569288,181.02870814176276,181.26694857282564,181.08915862441063,181.31978000886738,181.67272396804765,181.39711720403284,181.46248934883624,182.26291695283726,182.326003074646,182.37262219842523,182.00775100570172,182.12784279463813,182.32771726930514,181.96454533934593,181.74725075857714,181.9942653235048,181.994092005305,181.97751498548314,182.86713531892747,183.62288124812767,182.6367006157525,183.30780075583607,182.36905788537115,181.9783317442052,181.81211613724008,182.59759085485712,181.92890825215727,182.14906723843887,181.19978474266827,180.2800652482547,179.73631350696087,179.73455973993987,180.27709423657507,180.40790615556762,179.52203440107405,178.91101427888498,179.1360546639189,178.62199180806056,178.7219469747506,178.79014294827357,178.32543404586613,178.34875725768507,177.55690231267363,177.7296926258132,177.12169332290068,176.2300118766725,175.49772276403382,175.00651835044846,175.23959638923407,175.96869083493948,176.72398808505386,175.9609162430279,175.6446643336676,175.2593681695871,174.6097845272161,173.71796740265563,173.0465125478804,173.8520256052725,173.90603323746473,173.40350623475388,173.29541672719643,172.43317234609276,171.77327415905893,172.11195919848979,172.91840561339632,173.59185854671523,172.81634260015562,172.8810883858241,173.84359427867457,173.3710424550809,172.69202497741207,173.54094221210107,174.00568522373214,173.77291107177734,174.17282412480563,173.46808532672003,174.25134337320924,173.3676443756558,173.1423998726532,172.69829210359603,173.36165239848197,173.53539555333555,173.79204416973516,173.85521030426025,173.1001589517109,172.43492019409314,171.89351524040103,171.43318445468321,170.61464847624302,170.34648358728737,169.89570095110685,170.8228487954475,170.94120964035392,170.23979929089546,170.58424956677482,171.15130531787872,170.47469246247783,169.63825614517555,168.7188170067966,168.16247558454052,169.0337194572203,169.11688221013173,169.3972488916479,168.95164211653173,168.48826055275276,168.60463462769985,167.92909280071035,167.74148128321394,166.9626743979752,166.6219588285312,166.8274679025635,167.10363722685724,167.27312249457464,167.4840406095609,167.35454312106594,167.78532602870837,168.02387640671805,167.90495056286454,167.48355192085728,167.32837637420744,167.3676503840834,167.2366475444287,167.9754951405339,167.10134105430916,167.11968266731128,167.2996961013414,166.95546654844657,166.78687996743247,166.64101130096242,166.42054080450907,165.59477810701355,165.06944815954193,164.7233141087927,165.1176482718438,165.81203438853845,164.9081527525559,164.95998420286924,165.1765247215517,165.7687718695961,166.48451000312343,166.94300903659314,166.72971258498728,167.34294050047174,167.40322306426242,166.84794943220913,166.05146105214953,166.35574701009318,167.2249272800982,168.10517392633483,168.19140301970765,167.75544796092436,167.7748632314615,166.83171480568126,166.32121543493122,166.0588965085335,166.9229664420709,166.91373037267476,167.16170683363453,167.40041549038142,167.08340634405613,167.66499045491219,167.74234444042668,167.60209928406402,167.60356711270288,167.97753085754812,167.5736862840131,168.14129611011595,167.43453207006678,167.95805750833824,168.11648798687384,168.29519314086065,168.79926887713373,169.4900082522072,168.94190797908232,169.8817739044316,169.070081631653,168.61310781678185,168.44713684683666,168.36789170000702,167.4480781252496,168.32848790474236,168.90837848652154,169.78794154617935,170.2023979597725,170.09392537549138,170.10986415017396,170.11713807610795,169.48133284738287,169.75476432824507,169.88288439111784,169.34767072321847,169.88407393731177,170.71147907990962,171.6128871613182,170.82519146893173,169.95011867489666,169.51934033446014,168.75461603421718,167.96808562986553,168.34353158203885,168.13473258260638,168.61955652525648,169.25648033758625,169.3436754248105,169.8656834946014,170.39558190852404,170.74270967533812,170.71579268807545,170.53610804025084,170.5789784034714,171.15771262394264,170.86346741393209,170.296647394076,170.01756662782282,169.21225648047403,169.0578089179471,169.05603731051087,169.23022828949615,168.97667680680752,169.3950617047958,168.64187542861328,168.17222259007394,168.15608668327332,167.85830949246883,168.70810941793025,168.64083643676713,169.0857574394904,169.83964350726455,170.06062991777435,170.495537775103,169.9220515503548,169.85393294598907,170.01140490733087,169.3127158996649,169.59286629920825,169.13684469321743,169.3559203799814,169.79878694890067,170.27226132526994,171.19160153670236,171.0503767216578,170.97731128893793,170.02832079026848,169.20642326353118,170.0975903221406,170.4863760303706,169.83381007239223,169.79970372561365,169.93455747654662,169.48522559087723,168.7292398144491,168.35162029555067,168.46980499569327,169.01915498031303,169.04239452444017,169.01747742388397,168.48950406024233,169.1114283176139,168.8772068331018,169.6792987221852,170.5403460394591,171.14442985504866,171.56115603726357,172.0481899282895,171.58681929437444,172.35361434565857,171.67481003841385,170.70980290370062,171.0931930714287,171.9763164818287,171.17014983994886,170.87650187592953,171.0050208750181,170.01587143260986,170.50325105991215,170.61951820040122,171.06476675672457,170.61759534850717,171.09252779651433,170.26191280549392,170.8686781139113,170.4930857992731,170.5214197281748,171.4362527448684,172.04209073772654,171.66167216748,171.1923886486329,170.59626621520147,170.66270898841321,170.3122006044723,170.72459581773728,170.92201206693426,170.34127636440098,169.51197996549308,168.97651644516736,169.9212823570706,170.4511657212861,170.9202913157642,170.4528228933923,170.54829625599086,170.0756246508099,170.00010964926332,169.76919391890988,169.57794701354578,169.79339643381536,169.94242345821112,170.6282548964955,170.43410234572366,170.29688704106957,169.82991549931467,170.10808283882216,170.31055976822972,170.5332697397098,171.50128768663853,171.10405989876017,171.29597603576258,171.67285310197622,171.74606326641515,171.0158203886822,170.5448439833708,170.88484333781525,170.30149512691423,170.1222421573475,169.65007685124874,170.37263047881424,169.89448138466105,169.87592642428353,169.154360038694,170.0416869749315,169.22751040104777,169.4320971411653,168.64568741060793,168.81147984508425,168.6550307762809,168.52097588870674,167.85716699901968,168.34241730952635,167.63024579780176,166.73382785730064,167.7249776055105,168.61392990639433,168.2293043974787,168.71953826909885,167.79979310603812,167.6290020677261,167.2974190423265,168.05838220380247,167.16250681737438,166.72074749087915,167.39751024916768,167.5443631168455,167.54650664096698,166.8139026821591,166.14059275202453,166.49615645455196,166.54210746986791,166.98565639788285,166.99684589216486,166.04602128826082,166.2566136997193,166.24560570158064,165.46701716864482,166.17806856473908,166.99078369978815,166.4654027116485,165.94482330279425,165.79153894539922,166.18761727539822,166.14786640973762,165.38775933301076,164.8057378232479,164.7022074474953,165.66068671410903,166.48828185675666,166.4095332971774,166.97398221073672,167.335445092991,167.36939925095066,166.98022098606452,166.68708025384694,166.7614457323216,166.4490764462389,167.203683426138,166.36669408529997,166.1608780180104,166.12706931354478,167.10594597877935,166.84118775418028,167.05171973397955,166.122216894757,166.33217593375593,167.02652016235515,167.9395324443467,167.141314254608,166.60905074793845,165.92322631552815,166.62030298169702,167.01773832924664,167.33158587571234,167.70770254684612,167.9692031755112,167.07242046343163,167.06081267772242,166.8411790537648,166.20817536860704,165.29991463432088,164.3610546621494,163.95673251664266,164.43553619692102,163.98113700002432,164.64599450444803,164.59656336717308,164.52751756086946,165.27046067267656,165.65563197573647,165.5936491554603,166.31422023614869,166.86250385874882,167.11990963295102,167.17395538650453,167.42230831785128,168.2335552959703,168.42803942551836,167.69254778977484,168.32757979352027,168.83431235374883,169.8288393835537,170.2372163143009,171.00380068086088,170.41754185361788,170.6711219730787,170.58534326031804,170.62232830794528,169.64521514158696,169.7788933259435,170.76577153382823,171.1696149916388,170.92467330023646,170.8655681051314,170.4737030211836,170.07181289466098,169.55519812786952,170.28389092208818,171.00234584370628,170.13228804199025,170.5479662930593,169.93526522722095,170.20522649399936,170.046722445637,169.91066229669377,170.3908939748071,171.1634467151016,170.43225357774645,169.9809678629972,170.72210007766262,170.3995794961229,169.66707546263933,168.98021042020991,169.7849528468214,169.34493180317804,169.74936404731125,169.72386702615768,169.67775085614994,169.41736857779324,168.9990908461623,168.48011741647497,168.9007278275676,169.31372835859656,168.57047676527873,167.97430445160717,168.55964841041714,168.13925109384581,168.32890168204904,169.18248996790498,169.51788751361892,170.16665888391435,170.88218821166083,171.301013242919,170.8875598073937,171.25827880203724,170.52563517726958,170.79208354791626,171.4464439013973,170.80765482783318,170.74140492500737,169.9601391539909,169.13902012864128,169.81494765309617,170.35804260661826,170.642706818413,170.1195587995462,170.9065618221648,170.66170086199418,170.64456517994404,170.097811921034,170.2906990670599,170.07736124377698,170.43463206198066,169.7370147309266,170.4971324140206,170.18714686483145,170.1349537470378,170.56369399977848,170.01778057171032,169.40157965943217,169.41975740762427,169.57969877729192,169.76964841643348,169.6552300332114,169.9050477137789,169.9883345994167,169.53677234845236,169.98717082524672,170.85728362062946,170.70879643782973,171.35358635755256,172.01856513274834,171.50305020809174,171.594351795502,172.5880094715394,172.217149221804,171.53067977447063,171.154163219966,171.63068788824603,171.75344223342836,172.57322626980022,173.35584471933544,172.37640663422644,172.8293067868799,172.48269668361172,172.59033563453704,172.91053070686758,172.52948140911758,171.70735687436536,172.27444177446887,171.82285585114732,170.84970680298284,170.97326594032347,171.11917874403298,171.94187314109877,171.25670980568975,172.02428851090372,171.7590397153981,171.99676912557334,172.74805314652622,172.31574250059202,172.53177613997832,173.48346837377176,174.0884784096852,173.63007366424426,174.4792398023419,174.85745037626475,175.47893974324688,175.9130965108052,176.16120325867087,175.74452307401225,175.09058188507333,175.41250125924125,176.32076266780496,176.20568115636706,176.80998739600182,177.63708914071321,177.27855762839317,177.0135397836566,177.80511230090633,177.23075505020097,176.65264938538894,176.11461072275415,176.2019456527196,175.82888687588274,176.17438455531374,176.68146997876465,175.89575131703168,175.00061678187922,174.5505115184933,175.43186961859465,175.38518192712218,175.6649281210266,175.3137275641784,175.14441165374592,175.1976573606953,174.24509761761874,175.10104630934075,174.40929840505123,174.03914299514145,174.41141454922035,174.71131020551547,175.3863714337349,176.29201039951295,176.20894837658852,176.3156127971597,175.713256476447,175.69052975112572,176.614578650333,176.23418331332505,176.62602589046583,177.58592381933704,178.17000102251768,179.10509373852983,178.38609174452722,178.3855860484764,177.62121559074149,178.5538262259215,178.40440530329943,178.18986265081912,178.67175304843113,177.94301780406386,178.19819979928434,177.48122675251216,177.57212124578655,177.03028842248023,177.88212849246338,178.1569071924314,178.30524207139388,178.1938970638439,177.85301123186946,177.66534535773098,177.3716236371547,177.75669575622305,177.84505952103063,178.0566780245863,177.2486785207875,177.27865986758843,176.9268051609397,176.01307316310704,176.75561991427094,177.56893109483644,178.05803127540275,178.58168164407834,179.5030923555605,178.8633398511447,179.2265749545768,178.43059790646657,178.3822065303102,178.50383048458025,178.8617645301856,179.1913357693702,178.71310006594285,179.48166841827333,179.09920207830146,178.37149558914825,177.96735882759094,177.00836316030473,176.28606157936156,175.77701147459447,176.2933133612387,177.19240072369576,176.62481396039948,176.9587792903185,176.74623160483316,177.51661921478808,178.01129295444116,178.37985042575747,179.08952039992437,179.97196076530963,179.0794016602449,179.84592284914106,180.77286193193868,180.57300446135923,179.76297674141824,179.1842573368922,178.9754091585055,178.16780677484348,178.28352994052693,177.6502343332395,177.68908761115745,177.17329416098073,177.42438224470243,178.16090096812695,177.40751203801483,177.8304094695486,178.32279562344775,177.84310694830492,177.63590590190142,178.58871167665347,179.04150976520032,178.10816694423556,177.88614832796156,177.01236967509612,176.59975100075826,175.6498293853365,176.00792654091492,176.7422531787306,176.97156095411628,176.51192876230925,177.4534179000184,176.72660239739344,176.88737893942744,177.68139725085348,177.0358702777885,177.28352117957547,177.6866305344738,177.6393375955522,177.27928539784625,176.79699225304648,177.04200642136857,176.1199359688908,175.54502720944583,174.5485865152441,175.23686610208824,174.7359798932448,175.1440216084011,174.55299905361608,174.84600796736777,175.607939040754,174.78074102289975,175.48335683578625,174.61382999364287,174.82606479758397,175.1733114188537,174.94273119792342,174.69514161301777,174.68881917605177,174.09322917135432,174.8097173809074,175.3278181636706,175.55601718463004,175.36744055338204,174.95998423965648,174.14432303747162,173.7168743647635,172.8140467731282,173.64306273823604,173.62615659600124,173.72407360607758,173.76585221057758,174.40860257763416,173.79381983960047,173.1406810800545,173.20151757914573,173.71990134427324,173.71734318323433,174.01871973928064,173.03993067378178,173.5126819475554,172.92934751603752,173.2710956535302,172.91576588805765,173.49102280847728,173.27607898926362,173.25120921852067,172.3566041328013,172.60051893536001,173.29438337823376,172.94804882165045,172.6299357493408,172.03830510098487,172.9395883595571,173.486419047229,172.97125419648364,173.33661388373002,173.09342324454337,172.6814645291306,172.59153819736093,171.60256181051955,170.8665824602358,170.9355252548121,170.68763763038442,170.93196248449385,170.39828703645617,170.02727082371712,169.56748855533078,169.79764802753925,169.2407177174464,170.20343464426696,170.8318323874846,171.77838207641616,171.64801825210452,172.38292859960347,172.14815653068945,172.825073314365,171.94452957389876,172.48438809718937,172.15951432986185,171.22906057024375,170.65185931511223,170.20341191114858,170.55360067030415,169.75354121951386,169.78739573294297,170.2817706046626,170.17350883828476,169.45065181190148,169.6078453073278,170.55820833146572,171.5027896030806,172.455676227808,172.1395975225605,171.75829306663945,172.19509154045954,172.68483433267102,173.59624833613634,173.19903333345428,173.16846324363723,173.66640226822346,174.135768648237,174.165192771703,174.7969719148241,175.7775352834724,175.16485960548744,175.752937881276,176.25326907960698,176.80059115681797,176.836859382689,177.4039153526537,178.13511560251936,178.91325535764918,178.77320244163275,178.11013867007568,178.29028750257567,178.00169056793675,177.5358964218758,177.127378329169,177.73743147496134,178.25233063241467,177.31646422948688,177.75914551597089,176.8714224686846,176.36383434431627,177.31226628040895,176.8957049753517,177.15018167719245,177.91752664139494,177.37657665181905,177.60808207280934,178.4126025447622,177.939395559486,178.6765067121014,178.27153769973665,178.26659695757553,178.6003173389472,178.81954922061414,179.1387831051834,180.0481121991761,180.7145988959819,179.8094905023463,179.84945883927867,179.45248949993402,180.36627343622968,179.82963270368055,180.07928596064448,180.7827280862257,181.66464675264433,180.72740283748135,180.7341458974406,181.62090692017227,181.07184271747246,180.90757308341563,180.2569298860617,179.83402417367324,179.45504353567958,178.96957284305245,178.0602110028267,177.56263325316831,178.5466240295209,179.02075336966664,179.33775259088725,178.8629143112339,178.23799514956772,177.48841770133004,177.7083529671654,177.0949792796746,176.6851884718053,176.44567915378138,177.39321523020044,176.52873362135142,177.48684095358476,178.1639908659272,178.9358309097588,178.25313480151817,178.02388916769996,178.91050684591755,179.83019758947194,179.96569471945986,179.7697744546458,179.37379816826433,180.05835993541405,179.61939074238762,179.68605207838118,179.68792149052024,179.77389898709953,180.20939847175032,179.48369393544272,178.5338876368478,179.14200671110302,178.21264911908656,178.6899062404409,177.79862061142921,178.03447533911094,177.7500423649326,177.55170250916854,177.54980226047337,178.390693415422,179.06312792748213,178.84271451737732,179.28146480582654,178.90310282353312,178.1477520740591,178.81182221649215,178.99730355665088,179.3377675972879,178.7429713862948,178.01587319001555,178.1030332352966,177.83723401185125,177.483018707484,177.83909790962934,178.1093480582349,177.93576862104237,177.6062288763933,176.74155694711953,175.86591273872182,175.42057814635336,174.42945840163156,174.38355991756544,173.61342335585505,174.01370702683926,174.0785037013702,173.56970004364848,172.68385693151504,171.94769229041412,172.31629624636844,173.00618381099775,173.4531375844963,173.3850604314357,174.33746409555897,173.97721913969144,173.0088723776862,173.98914258601144,173.50048981467262,173.68794431444257,173.7158935200423,173.40172324189916,173.26588799618185,173.967095666565,174.65703081013635,174.3983726138249,175.27183603681624,175.47405729210004,175.0466426713392,175.6015081750229,175.8965675123036,176.0006204158999,176.54767929622903,175.56264594662935,174.75151922367513,175.73012666404247,174.96215170249343,175.89523620717227,175.69689600355923,176.36417150311172,176.62210594676435,176.80268586194143,177.14345832029358,177.72070922749117,177.48425613390282,177.02700419258326,176.1347880642861,176.23950949124992,175.8723690654151,174.93893181858584,175.49891400150955,174.6459872587584,174.2317864173092,175.05138061428443,174.9344423194416,175.5197124541737,176.13324652146548,175.96689826669171,175.1430338351056,175.42109137028456,175.6459285421297,175.49126105196774,175.60188904125243,175.17099215695634,175.3902035281062,175.29894773708656,175.15085220523179,174.54374130489305,174.41435489663854,173.7484664991498,173.24743876047432,172.52793181221932,173.1043809792027,173.55927073350176,174.36022567143664,175.3402884635143,176.0234937039204,176.63925243215635,176.71990857692435,176.4520896691829,177.42508388962597,178.1411531129852,178.67769040446728,177.7159211533144,176.95902520231903,177.59097323194146,177.69864397775382,176.75971903512254,175.9736534114927,176.82942419685423,177.59255023114383,177.1907021808438,178.171490509063,177.25152147887275,177.39167026570067,177.86747575784102,177.88999056071043,176.99292516196147,177.7077226601541,176.89066153019667,177.41949722124264,177.72736691590399,176.9944941890426,176.13091045524925,176.8722890424542,177.05604095524177,177.58700865413994,178.4584053521976,177.62170521635562,177.46302906936035,178.41778420098126,179.36203032825142,178.5176088125445,178.14967106468976,178.7557483254932,177.9384137801826,177.71709204278886,178.15117242746055,177.77280709240586,177.70019836584106,177.78979045292363,178.1057554418221,177.2408840227872,177.20618876907974,177.92025759769604,177.1655759238638,177.06956324726343,176.19306811550632,175.24205271480605,174.972305924166,174.25582193676382,174.985609148629,174.31975649436936,173.7676654350944,174.02487102337182,173.43187647452578,172.88097398076206,173.53677363926545,174.0015227687545,174.0459536560811,174.31234761187807,174.2702087862417,175.0454808580689,174.0524349687621,174.2493836339563,173.4614859484136,172.62823454709724,172.5075563006103,172.74078698083758,171.88215480791405,172.0651856418699,172.00125856371596,172.45977869210765,173.3801221009344,174.11910018883646,174.775152631104,173.97912074811757,174.19319420447573,173.60439639165998,173.49762087967247,173.63234713720158,173.62942037684843,173.38264444703236,174.17975076846778,173.93554919678718,173.07910926034674,172.4631123286672,172.197565310169,172.87910399213433,172.76967658149078,173.351083365269,174.12414721725509,173.37037134962156,173.477366568055,174.26402422739193,174.26304175239056,174.70589205017313,174.39010611362755,175.23931217426434,175.48057435965165,176.0123898414895,176.3796843602322,176.11178923398256,175.48775793612003,175.59091087337583,176.4360506022349,176.83467148290947,176.67212602170184,176.3377291187644,176.2620702246204,175.67364685144275,175.10547028155997,174.70261504594237,173.98828358668834,174.68317317962646,174.74676968250424,175.62577494001016,175.84539893316105,175.81868748134002,175.26629077736288,174.93564641010016,175.52239834610373,175.17084388062358,175.88547526625916,175.6774991536513,176.3391786091961,176.96990899089724,177.87616342958063,178.2898703115061,177.47800388978794,177.44215604104102,177.65847126906738,178.09404898947105,177.99861173145473,177.46777672227472,176.74285128852352,176.7024625185877,175.98792731482536,175.2992485659197,175.02962802769616,174.9878181735985,175.79873529681936,174.91075267549604,174.30802782205865,174.52971563721076,174.88055026950315,175.50612811883911,174.8526139948517,173.9330633142963,173.30884129926562,172.84198588924482,171.86439457256347,171.14485116209835,170.28364900546148,170.22297452483326,169.60016251541674,170.23495171964169,170.18191171251237,169.70221191085875,169.30027181562036,169.9164163712412,169.5175220966339,169.19274473842233,168.19283499987796,168.2217554980889,168.49580114893615,167.49906440498307,167.5238991039805,167.0955438427627,166.78385531669483,166.19966320926324,166.18824527272955,165.2384246457368,164.94230428989977,165.61545158177614,164.99982426362112,165.09871693933383,164.87685519829392,164.38551719347015,164.04050281038508,163.35058726835996,163.69398727174848,162.98662572726607,162.06870415294543,162.15818941779435,162.81550715863705,162.62972986139357,163.063307935372,162.71096647484228,163.0126795670949,162.9328986625187,163.05016502877697,163.06656201090664,162.30197344068438,161.7286895159632,160.7949563912116,160.86258135642856,160.6822483050637,159.79381929989904,159.13287530792877,160.01679226616398,160.98065189877525,161.61795004457235,161.99136348534375,161.1147902677767,160.60700957803056,160.8243860634975,160.39694022526965,161.14565954869613,161.77475889818743,161.05999886710197,161.67758441483602,162.31130386563018,162.32483285246417,161.86245417734608,161.58119635097682,160.84380258619785,160.5365900765173,161.0473482874222,160.71866387221962,160.71003039833158,160.6933137467131,160.0732493866235,160.7925565270707,161.2967111831531,161.48273393511772,161.67454262590036,162.60254542157054,162.29396286653355,162.2936255261302,162.7351288064383,162.4842418837361,162.578691823408,162.22504887077957,161.71478330390528,162.3330066720955,162.0263449260965,161.2485687774606,162.21522876014933,162.42648436501622,163.37846175953746,162.4094722387381,161.72679397277534,161.93546849815175,162.26923273224384,161.9260385404341,162.0063014002517,162.74246689956635,162.7686534980312,163.49646699195728,164.05824869452044,164.18310410762206,164.57510442705825,164.937638762407,164.923036002554,165.45724079059437,165.97798096574843,165.16544796852395,164.4614615230821,164.63218058086932,164.3185734464787,164.49424096709117,164.6833513849415,163.92607595166191,163.6585020488128,163.63917172513902,163.57382166897878,164.20497593143955,164.770899228286,165.73046283004805,165.33065608050674,165.6886483412236,166.44643378723413,165.55005668196827,165.6861116825603,165.4904639609158,165.76028398051858,166.41832832898945,167.27263212762773,167.01485137129202,166.0237505985424,165.1253287042491,165.2513647582382,166.17076589725912,165.73521369043738,166.72264067362994,167.30653273081407,168.26935134734958,168.4922700645402,167.87698928965256,168.42680811928585,169.29008388286456,169.20372923696414,170.02934418944642,170.7342555723153,170.05517895659432,169.65283518936485,170.378557568416,170.16205995390192,169.37725484278053,168.62969916686416,168.11760974442586,167.24544571805745,166.6049986812286,167.45384851377457,168.02000017324463,168.5241788183339,167.63268208922818,168.62776085035875,169.1567197437398,169.9246363551356,169.24642539955676,169.99961549276486,169.9668897651136,170.44896964915097,170.44157428992912,169.90850227652118,170.76529211737216,170.5589492348954,171.3007690925151,170.79816017858684,171.7707508886233,171.91556080291048,172.64922574581578,172.19502134714276,172.77896557655185,173.01787485275418,173.2823536018841,174.24403831269592,174.32301605446264,174.36161707434803,175.17756244447082,174.34821879304945,173.8516844306141,173.96703500160947,174.46459664730355,173.82585821207613,172.89300002949312,172.43757470091805,172.5641750851646,172.15006963768974,171.28263779589906,172.10828681569546,172.19906067755073,172.6013642656617,173.49657611222938,174.16555648762733,174.06308881007135,174.18498163949698,174.25613037357107,174.7009494509548,174.81580546451733,174.67166988924146,175.01574414223433,174.4112773509696,173.8920853906311,173.21807819791138,172.87657162174582,172.32247955538332,171.87673877365887,171.15339822228998,171.4976236228831,170.87133692204952,171.14113335870206,170.42342728981748,171.10019619064406,170.7485185880214,171.49893036531284,171.82846301561221,172.1770696900785,172.02050985768437,171.72062075138092,172.08715340541676,171.8725856714882,172.34462005319074,171.74703414412215,170.7757009943016,170.3303954191506,170.38024217868224,170.81745225051418,171.72715630568564,171.51866677496582,171.84119033440948,171.3153392295353,170.68726736772805,171.1453279722482,171.0068529280834,171.84960296470672,172.39008012413979,173.06763593154028,172.72412038454786,171.96707353414968,171.67849520174786,171.2116879299283,171.1806649141945,170.53598644398153,171.12664399202913,172.09643793618307,171.64336830889806,170.950653239619,171.1683218134567,170.76720622368157,170.8772559943609,170.29971897043288,169.9232577830553,170.62741819769144,169.94389206776395,169.94778280938044,169.13869032310322,169.98106264462695,170.02144928928465,169.07649840507656,168.89012832613662,168.2580766491592,169.06713347369805,168.42874660156667,168.71856107143685,168.4277519285679,169.3339126915671,170.0354630756192,169.39182796468958,169.6601043320261,169.0196832739748,168.6837524366565,169.21416978072375,168.9863824415952,168.64351012278348,168.7501572696492,168.34511489327997,167.46042999299243,168.40097117889673,168.2443806733936,167.34870090382174,168.01749446615577,167.18617812963203,167.99625797197223,168.78117032255977,169.10467710299417,169.52548134559765,170.50690572988242,169.8399016810581,170.80351956328377,170.7662550928071,170.6884113131091,170.2245150175877,169.41035873861983,169.66975962743163,169.27726706955582,169.81186604918912,168.9793677739799,168.77124301204458,168.81689568562433,168.40112193720415,167.820816276595,168.72359208064154,168.19813385093585,168.70019507501274,168.4961735564284,167.81263477168977,168.4996027899906,167.82100280560553,168.31231694389135,168.95056519284844,168.7811481305398,168.87544323597103,169.03122126543894,168.231410860084,168.52280640089884,167.79689546767622,167.21610087528825,166.49357515899464,166.0858536507003,165.21310951840132,165.52042912971228,165.39246358675882,165.77780396072194,166.6733968006447,166.8018238209188,167.49312870996073,167.969556405209,167.5363790243864,167.43568774545565,167.89722576225176,168.1496292236261,167.40617201058194,167.44961329502985,167.01070562237874,166.18272802280262,165.66065450990573,165.1440976364538,164.30075522558764,163.8340192832984,163.15458928002045,163.2627391894348,163.78651137882844,163.70484529435635,163.41294338507578,162.5509970150888,161.99830332025886,161.60840431647375,161.3137740585953,162.2604596093297,161.48994346894324,162.21171365957707,161.7146826563403,161.50700288359076,160.95615326752886,161.28057768009603,160.56990606244653,159.95631646784022,160.2761285197921,159.91298720333725,159.35595283750445,160.32834773976356,159.5150848273188,158.57250615069643,157.6547507098876,157.94331799726933,157.79555894667283,157.73885097447783,157.93532393267378,158.72340415185317,158.1657267222181,158.8159479657188,158.61241564853117,158.5888141184114,158.4637698745355,158.69817382469773,159.38466183887795,159.49970624316484,159.20311433076859,159.722578314133,160.0200188467279,159.08194237248972,159.25492522772402,159.02436879416928,158.79053344391286,158.910346517805,159.35293931607157,159.8459754921496,160.55118712969124,161.094296857249,161.19977979408577,161.4324650564231,162.36411026865244,161.44310641428456,161.99200201034546,161.31680797971785,161.835901892744,161.17542063537985,160.9723694222048,161.34739342611283,160.3492388697341,161.196824319195,161.52371946536005,162.09580495161936,161.22235161764547,162.09809823241085,162.74556534690782,162.27822870900854,163.0742362686433,163.17094480386004,162.72737999726087,162.0649567823857,162.46511533018202,163.01624287851155,162.35991081781685,161.89036101661623,162.71093251369894,162.65564759261906,163.29663405008614,164.2580252555199,164.58462277101353,164.4333427902311,164.0384311787784,164.7063156622462,164.34948623133823,163.67942046700045,163.04615930607542,163.09513941779733,162.15372218331322,163.11939248256385,164.07922426750883,164.47065243357792,163.86253645084798,164.5381521047093,163.7529453248717,162.87303080735728,161.97443659463897,162.3181192241609,161.65130719123408,162.19765067659318,162.2764945672825,162.82476376276463,163.4941321145743,163.16456971969455,162.40372650325298,161.44635057542473,161.0626918990165,160.8311686287634,160.16969961533323,161.0130957243964,161.51565419742838,161.9168556598015,161.91303803073242,162.44887983053923,162.34352836664766,162.5821611629799,162.73097564000636,162.1671600677073,162.6256440030411,163.56547010177746,163.25650887936354,162.295943680685,162.1821667905897,161.22357543138787,161.12615493824705,160.71375481644645,161.25533110974357,162.20875880494714,161.50111181335524,161.73589266836643,162.19365994958207,161.5624533398077,161.97675603162497,161.68092873180285,161.28873930452392,160.98653381876647,160.0422290326096,159.8439103430137,160.22200783435255,159.46645710989833,158.5867687803693,157.6794243385084,157.61506596161053,158.43943658052012,157.9231388908811,158.62845308938995,159.4809938473627,159.34794260701165,159.1623377916403,158.56598332617432,158.21496065193787,157.926020427607,157.11704585282132,156.2477662297897,156.99882822064683,157.01324168452993,156.63981549395248,157.29733831621706,156.87236459041014,157.8698335639201,158.253393787425,157.6603493206203,158.32986238365993,159.20944082085043,158.39411457628012,157.86742882523686,157.81546226609498,157.4810106367804,157.95236654626206,158.10087923984975,157.72732794936746,158.67581833107397,158.40897128125653,158.43476730166003,158.27382787596434,158.16066706506535,157.3926001084037,157.9239502507262,158.68799510458484,158.26829462777823,158.6721508456394,158.05675738863647,158.30587167711928,157.42908078059554,157.26016265014187,156.93079246440902,157.74610747769475,158.2634961353615,158.11634432477877,158.92181765660644,159.56101341592148,158.8630802235566,158.16424314444885,157.9114874158986,158.0513925952837,158.75210774689913,158.7086183554493,158.44678812427446,158.23428130848333,158.95323459571227,159.64357822341844,158.8161913845688,158.92724093748257,158.4327871161513,157.74484695959836,157.1642648158595,157.12990632047877,156.86094650626183,156.69621897069737,155.85956517560408,155.56741203926504,154.8706362103112,154.5518599706702,154.70717763947323,154.2869809200056,154.574624015484,154.3301069950685,154.3714779354632,154.5111673544161,154.52498824615031,154.97336748195812,155.78690160345286,156.21072754031047,155.7003480908461,156.193799729459,156.7167443484068,156.538008088246,156.86076974263415,155.90164008038118,155.60541509231552,155.21873439382762,154.93693363573402,154.9198070303537,154.9234803072177,154.67407400812954,154.04705061018467,153.48839929746464,153.11501511372626,153.73961198003963,154.49068007571623,153.7320460821502,154.419245489873,155.37556442106143,156.0705154244788,155.11297814641148,154.31380560109392,153.68983584083617,153.94138941075653,153.43607201986015,153.8398130829446,152.90492339385673,153.50114601990208,153.57726423209533,153.1101211635396,152.14528689906,151.81499418942258,152.32338016387075,152.7051999461837,152.85208033630624,153.74718782724813,153.83810521289706,154.38037841161713,154.89049962023273,155.5938918837346,155.45224214764312,155.86916535161436,154.8927218997851,154.20046847732738,153.31995222577825,153.22330203512684,154.10366112086922,154.83596904901788,154.29181485204026,153.5274274344556,152.7565083988011,153.36197571270168,154.03381227562204,154.4838902191259,153.8554178676568,153.83557294867933,154.80477674212307,154.9035860793665,154.97446509962901,154.21053120261058,153.23988476162776,152.85910438094288,152.502117915079,152.56098040519282,153.266543882899,153.05366796534508,152.26025774050504,151.44850940117612,151.74478712072596,152.71715496713296,152.7246521799825,152.02751722047105,152.7552865901962,153.1523578944616,152.94397250423208,152.3137201643549,151.3957212548703,151.5382874631323,151.5563163505867,151.9948029257357,152.27874462399632,151.72676667943597,151.101719757542,150.63484383188188,150.68895069416612,150.03751393500715,151.00925991265103,151.0996168386191,152.08848105650395,152.56770170899108,152.49042043788359,151.6332033057697,151.87401365721598,152.11027934215963,152.67545595997944,152.12712648883462,152.27139170933515,151.59658970078453,150.65209108917043,150.15611097961664,151.14968201704323,151.0081523261033,151.92140531819314,152.70042217243463,151.90864696912467,151.37793928477913,151.42572407284752,151.19248416274786,150.4214384513907,149.74298921134323,148.96572887478396,149.77573059732094,149.24033806147054,149.13327095704153,149.818748944439,149.16143833706155,148.228209908586,148.56027825549245,148.79339589131996,149.3330525206402,149.76777751836926,150.38874183641747,150.32404758548364,149.4711162513122,150.31398812681437,150.27101496374235,149.76315468829125,148.85700429417193,148.66339718783274,148.68041455885395,148.8315846081823,149.52020848263055,149.36285898881033,149.51896552555263,149.85301160020754,149.17664274200797,148.525707855355,148.70831686025485,148.8113949908875,148.44202100066468,148.90846134442836,148.62779557984322,148.07654253952205,148.03641051985323,147.4578973222524,147.24198975227773,146.74391431594267,147.71872395602986,147.73375092307106,147.67427303502336,146.9619220700115,146.18101674178615,146.21667104400694,146.89724021265283,146.2628047633916,146.61330000776798,146.19108076859266,146.45924446964636,147.39783570822328,148.09619615692645,147.55336073646322,148.227613161318,147.263628592249,147.38454848341644,147.50547038484365,147.8349936613813,148.70554189337417,148.79750668117777,148.3474161052145,147.80367015535012,147.02266724221408,147.6498901490122,147.36969787627459,146.75122063234448,147.45520821306854,146.76548427389935,145.81229763198644,146.41936376551166,145.50376163888723,146.10737086087465,145.22404782567173,144.43433622736484,144.31987406732515,143.61798633122817,143.7434950233437,144.27207398414612,144.4344556685537,144.9451994826086,144.3282836880535,144.98783400654793,145.83618002245203,145.75958380568773,146.09033354232088,147.06510414741933,146.1985551342368,146.0618912158534,145.48859040159732,144.80454659461975,144.59412227896973,144.55554909212515,144.1423746543005,144.6915194685571,145.60561561817303,144.75098382635042,144.54770981753245,144.20205408893526,143.57468643505126,143.2207098826766,144.09336436213925,143.8595927655697,144.6846912652254,145.55402284534648,145.3836862212047,145.17276442237198,146.02297380752861,146.2231590677984,145.36301846662536,145.38124548550695,146.20611571893096,146.71422023000196,146.54430241929367,147.4311379576102,146.51020199712366,146.23569297138602,147.02196569321677,146.85629647551104,146.29913883237168,145.5596072729677,146.00476690009236,146.77444190578535,147.50612924108282,146.85362928453833,147.2766075558029,146.71135903615505,146.37286135740578,147.09012795379385,147.08409905666485,146.70840186113492,146.05215897830203,146.2391810566187,146.3014966873452,146.97228976991028,146.38743055146188,146.7905093790032,147.46799065871164,147.72443640464917,147.6389953601174,147.50214975560084,146.5517830499448,145.8434551092796,145.63389395270497,145.0772012239322,144.82996076298878,144.5902265459299,145.40358250029385,146.13820033101365,146.1899337451905,147.1827888842672,146.96422849502414,147.11773260962218,148.06693947687745,148.51504587568343,148.43031193874776,148.52976228296757,149.12224474921823,148.639291445259,149.60119906673208,150.365584181156,149.38717553811148,150.02105724951252,149.9900811635889,150.044708349742,151.0024154400453,151.17605652660131,151.88377605332062,151.58665051776916,152.0332955531776,151.0880477949977,151.0880086524412,150.92312527215108,150.95032627973706,151.70090382173657,152.21554904291406,152.52332637971267,152.25069855479524,152.50440134853125,151.95575253432617,151.00314567936584,150.16628887457773,150.8997677192092,151.19909852510318,152.1344690239057,152.45520408870652,152.1200764225796,152.1352361422032,152.11336299823597,152.8395103518851,152.78548738965765,153.6563993152231,152.8720088726841,153.18953302968293,152.90012429002672,152.9814019021578,153.2844597445801,153.0389008950442,153.327813743148,152.54366618208587,151.76789121702313,150.7872088481672,149.79592124884948,148.96979328477755,149.460263278801,148.58648669533432,147.70340667385608,148.1058999611996,147.35936302971095,146.48119948618114,145.49987156968564,145.14688775176182,144.59738554107025,145.33382157003507,144.35640143416822,145.31905755680054,145.76562589546666,145.08377993991598,144.2215136643499,144.39470398798585,144.12445291224867,144.18484635651112,143.58695118920878,144.24568792199716,144.36242675594985,144.40812390344217,143.7002212377265,143.76330856699497,144.12178888265043,143.4090943261981,142.50852976320311,142.59107430558652,142.37278248369694,142.50999156851321,143.06795945111662,142.66474338667467,143.6524167144671,142.80139054730535,142.31482386076823,141.97426118981093,142.04107868066058,142.1471818066202,142.27256892016158,142.9223695350811,143.86608659569174,144.226447859779,144.07770742150024,144.5525906952098,145.05117139592767,144.46788765816018,143.75674208672717,143.61708168080077,144.100178795401,144.11439451668411,143.53216322185472,143.687453024555,144.18237139470875,144.8222983777523,143.9920206349343,144.7001792048104,144.72241968289018,144.99223288754,145.1228208723478,144.48634222336113,145.21346930554137,144.6610612939112,145.1330376677215,145.33594096871093,144.5480780028738,143.94322347687557,144.41028067003936,144.96292212652043,145.89067237172276,145.95269721606746,145.4371413551271,145.97729594260454,145.80028897803277,145.8423334439285,145.65919283777475,146.50059916591272,146.46750604268163,147.04458500957116,147.98026674985886,147.68937132926658,147.16003106767312,147.86652328725904,148.2924841134809,148.43358214199543,149.07286287425086,148.2030932069756,148.7500908500515,148.72682092851028,147.9515706403181,148.57890804111958,149.33050356106833,150.21515361359343,150.87730481708422,151.07456628605723,150.59363652952015,150.56652172887698,150.3315484561026,150.7867225422524,150.4573271498084,149.591084131971,150.02513057505712,149.51931489398703,149.28584601264447,148.84595136810094,148.06207938631997,147.69977443944663,147.92658508149907,147.58657123800367,148.26574015803635,147.92571982135996,147.275272983592,147.76884072180837,146.97158549912274,147.0163799226284,147.74167330237105,148.07688299193978,149.04933754215017,148.40001673158258,149.26966006262228,150.11736511159688,150.01692346809432,149.46427029557526,149.82233509700745,150.50638065487146,150.41045732563362,150.64847518038005,151.49065117817372,150.68599796527997,151.34170429268852,152.14948408026248,151.92406650958583,151.61460580071434,151.55431792791933,150.68676193989813,151.1562273092568,151.21450526081026,151.9395055891946,151.08038415992633,150.99512386135757,150.49479509331286,149.6991220060736,149.29729062179103,148.89981183875352,148.9718840131536,148.4670503595844,148.2164074331522,147.49310377892107,148.0928088845685,147.7982266191393,147.97062169527635,148.28320447728038,149.1702707260847,148.71900291647762,149.00054308678955,149.48571108933538,149.22935263300315,148.81339177349582,149.6145837008953,149.44685676228255,148.54806981701404,147.8710873494856,147.08636569883674,146.21228998573497,145.6226817406714,146.09894547006115,146.66570978891104,147.46714201010764,147.2152944309637,147.96033900929615,147.44655141467229,146.60443583782762,146.2165154502727,146.43913412466645,145.51834159391,146.49524089228362,145.61486811935902,145.99559569265693,145.69586439663544,146.57135457219556,145.88234897470102,146.7998547325842,146.18135038763285,146.0768463620916,146.8130540465936,146.62162115285173,145.8366561215371,145.85249991808087,146.3236133987084,147.03971328726038,147.95317425904796,147.93968778848648,147.84876325028017,148.63598322495818,149.24853117903695,149.23761846125126,149.01150195673108,149.55050419503823,148.88451635837555,149.41482840990648,150.07896386552602,149.58781544025987,150.02374404808506,149.916016606614,150.80062517803162,150.12997216591612,150.98257229616866,151.01477292412892,151.35768596362323,152.11921662511304,152.45940331043676,151.72445055563003,152.68138264119625,153.47329479036853,153.19602519832551,152.40415134327486,152.29323884937912,152.9410327798687,152.38228694628924,151.84791288198903,151.14536994276568,151.81359183695167,152.00940814847127,152.63828798756003,152.50728082982823,151.9268980929628,152.24993938673288,153.11878006067127,152.8797328285873,152.46050978451967,152.68954090215266,153.53209915803745,153.01047729700804,152.55473410431296,152.30364111298695,151.79548577964306,152.6520113502629,153.14906375482678,152.2796803037636,151.40917292423546,150.92878444539383,150.98393298638985,151.75744974426925,150.90979832876474,149.93393553374335,149.85238789627329,150.36618904396892,149.45530552323908,150.38806031318381,149.87818715162575,150.83644916350022,150.12080273171887,149.23715123953298,149.25477895094082,149.7044604360126,150.22369739040732,149.9946960415691,150.29770788084716,149.56054898444563,150.35353916790336,151.13870923267677,151.87643788941205,151.08048163400963,151.48689094511792,151.72690268186852,150.85216017253697,150.5582067319192,150.10387359187007,150.14634958375245,150.5899716084823,151.57509074267,150.79458965314552,151.79184408159927,152.2137594553642,152.6959528727457,153.04443080117926,153.86909699905664,154.34751006308943,154.1484700869769,154.59628767101094,155.39409491978586,154.9500355659984,155.19222521223128,155.73445905279368,155.84981137514114,155.1849520825781,154.95435379398987,155.4691200023517,156.23172185663134,155.79126521851867,154.88639577152207,153.88775330595672,153.6687373360619,152.98477167682722,153.15854624891654,153.0339458025992,153.95056942943484,153.21170622110367,153.3720990740694,154.3144605634734,153.48322242544964,153.77650881092995,153.5366968321614,152.90119159640744,152.5966801252216,153.35840926505625,152.77870937809348,153.0163505054079,153.45228398637846,154.12258003791794,154.11456908425316,154.8229418429546,154.89577316353098,155.8246356099844,154.88012351235375,154.47058303980157,154.66166089568287,154.22459240769967,153.98750650230795,153.34201289294288,153.528810671065,152.62161488924176,153.45591045729816,153.72558623412624,153.77235449571162,153.77444420661777,153.48963050637394,154.23847418045625,154.31823940947652,155.1746446690522,155.13996175769717,154.5494220694527,153.89501942880452,154.26975009590387,154.47811407223344,154.29927130090073,154.4055413417518,154.20017647137865,155.08353260532022,155.03160208184272,154.65318809030578,155.6468448159285,155.30564611125737,155.02624853234738,155.65080471383408,156.02948421612382,155.92805427499115,155.6629005470313,155.99291130062193,155.23426787694916,155.94550972105935,156.52301863348112,156.71758669055998,156.65956467110664,156.4216968123801,156.02054562047124,155.99526310432702,156.76241311524063,157.40320870932192,157.40247756661847,158.25957458559424,159.1548890103586,159.96005237475038,160.38031736807898,159.69547256501392,159.9627849739045,159.81723671080545,159.78912962414324,159.68111635185778,160.61484736343846,159.94887700211257,160.58314754720777,160.89333199430257,161.41312070190907,161.98891325853765,161.82766732666641,161.89374256366864,161.9277052730322,162.2292749932967,162.0443615769036,162.66324766445905,161.7407341557555,161.5921180555597,161.49266619002447,161.2143177348189,160.71439318405464,161.6150659052655,160.6597861945629,160.64408985432237,161.0672851493582,161.05986125953496,161.04925330681726,161.02429002756253,161.92082811845466,161.16220235358924,162.01853132806718,162.91334758978337,163.59077061899006,163.81517581827939,164.12104570120573,164.60814277920872,164.34178321808577,164.3660777574405,163.52027772320434,164.24006558628753,163.3544639032334,162.70871049072593,162.91405268199742,163.3515452281572,162.4406607071869,162.6409845445305,162.38324903324246,163.17244867049158,162.9643081696704,163.78964257100597,164.39911849237978,163.6494191386737,163.7766725155525,163.00010906765237,162.3642523610033,161.84340482810512,161.27862963359803,160.73821684438735,161.01894140755758,161.13203092850745,161.29598749475554,160.57321031251922,161.26278900029138,160.97902658069506,160.7001811065711,161.16095680044964,160.90794742573053,160.06489070691168,160.36763447942212,160.55726947728544,160.22532311314717,159.99027575878426,160.59640310099348,161.38485081586987,161.47510155662894,161.35932801896706,161.90162816178054,161.67386783938855,162.25499963620678,161.81345125753433,161.85298955859616,161.660236984957,161.34622866893187,160.91405337071046,160.81035533407703,160.20093079609796,161.1305602416396,161.0009363554418,161.69954306678846,161.16220432752743,160.55421237275004,160.51103552989662,161.46860800869763,161.23011012515053,161.09120586002246,160.77457740763202,161.65455652959645,161.15269797900692,161.78288208460435,161.13688820088282,161.24387264298275,160.991897914093,160.97640891559422,160.8444827850908,161.48739947052673,160.50006642425433,160.91117087891325,160.58505715616047,160.84237363794819,160.6292160153389,160.2561563262716,159.67575639020652,159.51385344099253,159.2612983006984,159.93580543482676,160.62787264306098,161.03382797492668,160.12038258230314,159.7315513845533,160.28101747855544,159.93965975241736,160.46392431855202,160.68090157723054,161.22726662643254,161.73443567333743,161.60041739279404,161.79219983657822,161.08885416015983,160.65159606700763,159.81433072127402,160.7582463817671,160.69094681134447,159.89549963828176,159.9155140388757,160.36895493185148,161.00945838633925,161.54180492227897,161.50341275753453,161.46664420887828,161.49657180160284,161.98715013405308,161.00441312370822,160.2352561140433,160.0232258834876,160.92406388791278,160.04401715658605,160.9388018641621,161.87441268377006,162.4930923623033,162.8927240469493,162.74813900282606,162.84635017672554,162.25771470041946,161.40419783303514,162.36855871137232,163.20396988093853,162.80223204381764,163.57028138358146,164.22901256149635,164.50894175935537,163.97591833071783,163.65947711560875,164.230282376986,164.60571070061997,164.62403186270967,165.59204311436042,166.40572894457728,166.62063413159922,165.6340793594718,165.7483827387914,165.8958855457604,166.28849199833348,165.31447419757023,165.42300662677735,165.60726228915155,165.63397323573008,165.60797904012725,166.23213034961373,166.00299308542162,165.34063407219946,166.08240763144568,166.34914753306657,166.66048517916352,167.24605657020584,168.18643921334296,169.05273756664246,168.73574482416734,169.1710313935764,168.67329054744914,168.63421309972182,168.61620195256546,168.23628414515406,167.949533758685,168.5171409668401,168.08076220424846,167.91788020264357,167.126488851849,166.47657545283437,165.96287917206064,166.3184353429824,165.93796373391524,166.08922425564378,166.7889035558328,167.16581644117832,166.44276594975963,166.02495406847447,165.13053352897987,165.67096379306167,164.99034427572042,164.7233862276189,165.48813854437321,166.48470289167017,166.7685039434582,166.91177134821191,166.7266732621938,166.14154265122488,165.66766363335773,166.5090250899084,166.26466998830438,166.4717366863042,166.96060641808435,166.17067319527268,165.43643574928865,165.27168828248978,165.3634305349551,165.80242469301447,166.34252321068197,165.58422318520024,165.79970571259037,165.6748935515061,164.91188236419111,165.90923151234165,166.32970457803458,166.89900622377172,167.78509436687455,168.3474205294624,167.74409921327606,167.72410429641604,168.20331350481138,167.69158179173246,167.09219347313046,166.23775250418112,166.1318557462655,166.92521424544975,166.46284132124856,166.33095644181594,167.31062142550945,167.1933735376224,167.1536617698148,166.15875436225906,166.6961094290018,166.0573735423386,166.04011986171827,166.66030751168728,166.82408923190087,166.38512003561482,166.0162346502766,165.16541221085936,166.14992969110608,167.1491951723583,167.64771501114592,167.34888150403276,166.8576101474464,166.12104787956923,165.85890166135505,165.02596310293302,165.92032313114032,166.2492249365896,165.40770522039384,165.19378547975793,164.55682274885476,163.56066533271223,163.47889919392765,164.1528708585538,163.48531731357798,164.43331579631194,164.56060724286363,164.65534776402637,164.805035257712,163.91910927044228,163.70725783053786,163.15318526653573,163.3046029796824,163.7667839853093,162.99928718432784,163.02628894988447,163.24654009658843,163.16507919225842,163.39952994603664,162.58310730196536,161.91753634577617,162.33120727539062,162.5203269147314,162.6454216656275,162.78912613447756,163.3789895377122,163.8776711677201,163.9546448243782,163.0815704073757,163.0437508537434,163.62206538254395,163.07733418652788,163.87024438846856,164.45000123837963,164.68182271439582,165.37575647840276,165.30181644810364,166.25377265550196,166.68217289587483,166.66692744893953,167.60925217811018,167.04238683078438,167.0727792782709,166.57050662487745,166.06039049802348,165.8027004878968,166.6016614944674,166.82540527451783,165.9873048271984,165.65609091892838,166.25933216698468,166.91206952789798,167.44695969531313,166.8016449259594,167.22255560103804,167.59568474907428,167.42887544212863,166.50074493186548,167.02828378928825,167.22634188039228,167.01260408386588,167.4847569046542,168.33824655460194,167.7630514819175,167.41482729744166,167.6636575134471,168.26995715452358,167.55440782988444,167.19580801203847,166.99405653728172,167.67574918689206,167.8539055599831,167.69499626522884,168.26522605493665,168.00983005017042,167.4284943267703,168.0338002704084,167.5769795998931,167.34961148817092,167.59645664133132,166.70366334123537,167.13767240475863,168.07217774167657,167.98206126317382,168.224736941047,168.64642742229626,168.219636073336,167.67476883810014,166.7588983513415,167.54140970576555,168.03073628759012,168.1986286523752,168.57980140764266,168.29551255190745,168.532246990595,168.6011091740802,168.81719899410382,169.52796062733978,169.57703737961128,170.09462861763313,169.23613436240703,170.10565769439563,169.63008702825755,169.78205146361142,169.03814462339506,169.93770088860765,170.5319983852096,171.4094940153882,171.51472525577992,170.7471852893941,170.31366369035095,170.62666975567117,171.5123202269897,171.90721481200308,171.79428283916786,172.56120876502246,173.37515814695507,173.55755227338523,174.17490377184004,173.24949644925073,173.4268275354989,173.82728731492534,173.13182353693992,172.63640455622226,172.86463897163048,173.2577705923468,173.1429302468896,172.25337574025616,172.14606889477,171.1808850527741,170.9797968226485,170.667207098566,171.22277511376888,171.85578619269654,172.06604255829006,171.91382237616926,171.3870849153027,171.00489094899967,170.7936495593749,171.30359375476837,171.89088338892907,172.45785747282207,172.4238619338721,172.42227706173435,171.69399302452803,171.0200709560886,170.5203321087174,170.63608680246398,170.85805919812992,170.8075150367804,170.81201829807833,170.81047028535977,170.97928324481472,170.39058826258406,170.99826838029549,171.57957143941894,172.3201758209616,173.22688249778003,174.1610592980869,174.84327705204487,174.26083630137146,175.2511016833596,174.87867440562695,174.24659453472123,174.77840422000736,175.5503759891726,175.11569452332333,174.78558769077063,175.40668022213504,174.75441738776863,174.27968756109476,174.92095991130918,175.74606113741174,176.05815603444353,175.12721736496314,175.6307397042401,176.33836314734071,177.3345225150697,178.0063363648951,178.65210392093286,178.79255899926648,178.3828775039874,178.96386700402945,179.81266196630895,180.79666625801474,180.84696545591578,181.57146840263158,180.60028773127124,181.28743792930618,181.4038098268211,181.64833829877898,180.93292038934305,180.79946693731472,181.32251875009388,182.13407163787633,182.45059112785384,182.87084609176964,183.77494728425518,183.77120569441468,183.80424371780828,183.5621774722822,183.64333947235718,183.82900440180674,183.39108071988449,183.8508832808584,183.2524610538967,183.4387776358053,184.0172280757688,184.23483923263848,184.1067760414444,185.0440735355951,184.30562759144232,183.70739616872743,183.935139907524,184.19926639646292,183.6632173382677,183.670515966136,184.47995778080076,183.70300516858697,184.20250509493053,183.98973960848525,183.18940559076145,182.43095253920183,183.04022322734818,183.7445645579137,183.80120577383786,183.6408759825863,184.33586672646925,184.78615612210706,185.51252559991553,184.79844517586753,184.59356383047998,185.19932935852557,185.16933987895027,184.29218040173873,183.8671285188757,183.24559336341918,183.1885888967663,184.0553843388334,183.8600215362385,182.9240998076275,182.84905305039138,182.5426290356554,182.71937315538526,183.30875370046124,183.79838670557365,183.84323998959735,184.3525229441002,184.96347932098433,184.7312326207757,185.32262582238764,185.53122488828376,185.40973609592766,185.91836461052299,186.59475139249116,185.9394158651121,186.31566847395152,186.43509932188317,185.68322232877836,185.2219051499851,184.57461442006752,183.69725213898346,184.12607207661495,184.78014999628067,183.81664617126808,183.9158555273898,183.0604333439842,183.821503107436,184.1515761106275,183.6395185799338,183.43020834727213,184.23476811125875,183.57840866036713,183.98192692827433,184.04728701151907,184.0873345984146,183.29179036663845,182.82361474400386,183.55852273479104,183.62337124161422,183.2319404212758,182.7078921259381,183.03771374048665,183.96102048130706,184.94241719553247,183.96422681817785,184.16721903672442,183.5827525081113,184.4557707007043,184.5732589964755,184.27790264878422,185.0860999263823,185.41545985545963,185.0747268977575,185.33548097359017,186.10773717891425,185.11397073743865,185.9773371568881,185.90956050669774,186.07014298671857,185.8059548116289,185.07831297721714,184.82014698535204,183.93638718035072,184.80738862091675,184.24396347347647,184.44873679894954,183.52365528186783,182.6376846502535,183.07578814635053,182.4104744195938,181.82397571811453,182.53932258859277,182.83041116269305,183.53466795571148,184.35092205088586,184.92926474381238,185.4960476043634,186.2363900630735,186.8445207378827,185.95919994730502,185.65592084312811,184.76649581082165,184.8968294756487,185.38728617830202,184.84576283954084,185.51329364161938,186.36774767981842,187.26959676435217,187.67808707756922,187.39323607692495,187.25878695957363,186.44879344990477,186.5157855427824,186.42936990503222,186.05049039190635,186.28275055577978,185.44878777954727,185.49794668052346,185.01181822642684,185.90082542831078,184.90640568267554,185.12186692329124,184.92590063530952,184.99655177490786,185.96674702176824,186.31690260581672,187.2467305692844,187.4792504250072,186.6398670533672,187.29161310987547,187.08513438235968,187.0579092684202,187.38169822562486,186.74589677434415,186.3317656959407,185.8216040832922,186.67541064601392,185.7989644575864,185.11872417246923,185.5312272561714,184.55517165223137,184.17666550772265,184.47476471960545,184.1954992916435,184.88275954825804,184.0462062000297,184.95626756735146,184.18633422255516,184.55290468037128,183.89045147038996,183.33486914634705,183.11349680367857,182.93457741243765,182.95120338303968,182.98731944989413,182.13955421978608,182.68890471477062,181.79007721878588,181.7815202716738,182.48704499471933,182.99570006271824,183.6513471417129,182.68833704805002,181.99883475899696,182.99737917957827,183.535777551122,182.54710050625727,182.2449612999335,181.87934251781553,182.01134618977085,182.84843977214769,183.2034652628936,182.58693234622478,181.6902401195839,180.70204739831388,180.87038377067074,181.4637368619442,181.48231246415526,180.76028290344402,181.12204792210832,181.3392717805691,181.95131437992677,181.080765302293,180.66054353816435,180.07670709863305,180.3009580532089,179.56840118393302,178.9992122403346,179.83415676280856,180.3980795033276,180.85633253399283,181.55631935968995,180.90978931589052,180.30741067323834,180.39884963724762,180.57217756239697,180.0767577313818,179.38053942425177,179.093979856465,178.31894278805703,177.3860938884318,176.9108768464066,176.95064942445606,176.6007491252385,175.73048569029197,176.2069569961168,175.5850296174176,176.41208951128647,176.3965506334789,175.4783705077134,176.14889989933,176.7470059557818,177.27605110406876,178.07347940513864,177.18244823161513,177.09603992151096,177.5674225683324,177.27799634682015,176.5805114870891,177.2986139114946,178.271371754352,177.51815082039684,177.79060867242515,177.57459798455238,178.54827620647848,177.98647672496736,178.47632926190272,178.86762612406164,179.61553308693692,180.02534696785733,179.76858311565593,179.40490507753566,179.68083261651918,178.72692868346348,179.37190587678924,179.41054329788312,179.7374247033149,180.05424625147134,180.44343165727332,180.42003385908902,180.22656087670475,179.74731970904395,179.99919614195824,180.85351602872834,180.22345593292266,179.73897518403828,179.25103011913598,178.7146469913423,178.68011324480176,179.13630793755874,178.64704943215474,179.32528449548408,179.01164353871718,179.2262803032063,178.9080835119821,177.9197335531935,178.3869081386365,178.78484696848318,179.22876056702808,179.9783712690696,180.46559187211096,181.03702044300735,180.4764220835641,181.3106396626681,181.00754750799388,180.74889281531796,180.04730005841702,180.38276756880805,179.78736965032294,179.0204007513821,178.71348731871694,179.00979077955708,178.36114246258512,178.12677192734554,177.30103483004496,177.9041601740755,178.4821546706371,177.520799967926,176.89036535052583,177.1677179201506,178.03244640305638,178.0271327109076,178.78752260562032,177.9537181155756,178.37246910203248,178.43550162855536,178.11122870678082,178.18264860427007,178.57829707395285,178.44510556804016,179.22181367501616,180.1744492710568,180.25308561883867,179.83324793819338,180.4316751868464,181.38357604434714,180.43263225164264,181.26060646073893,181.53179038502276,181.82791806571186,181.1333110295236,181.65578056685627,181.78836416080594,180.85829765163362,180.8533272407949,180.33780360408127,180.71041444316506,180.70145815610886,181.20041396887973,181.14491208316758,180.26865755952895,180.72503277193755,180.1091014696285,179.994261816144,179.0174944968894,178.64717205706984,179.52649203920737,179.90407180273905,179.24139109998941,180.11578907631338,179.18270443798974,179.18756237626076,179.1416638768278,179.83867409080267,180.32025447115302,180.17835414316505,180.78864313242957,181.1498557063751,181.93476333236322,181.48837207444012,180.74624091153964,181.6864396352321,181.86988946329802,182.83971885219216,182.67750313831493,183.0494676004164,182.21186958719045,182.45888677425683,182.18762831017375,181.78182764956728,180.91898223478347,181.64720175322145,180.69715434173122,181.02390435850248,180.35013839043677,180.23987432429567,179.66242866124958,180.36955986591056,180.0681911110878,180.0842696679756,179.45334451412782,179.25549737596884,180.07665551500395,180.70708498498425,180.98732138238847,180.3455176046118,180.75499201891944,180.32484425976872,181.02674041735008,181.01361179025844,180.97931296844035,181.81660498026758,181.1802046224475,181.6896249023266,182.14429097855464,181.54281052714214,181.33784972829744,182.24063073890284,181.89132332382724,182.1746085868217,182.30179444374517,181.32317822705954,180.8289960543625,180.8172796354629,180.46833206806332,180.8364587025717,181.11376712843776,180.45760547975078,180.56571743171662,180.02201420115307,179.841501343064,180.23683741223067,180.98174273502082,181.8156872219406,182.51179439900443,182.6035825992003,182.10435399319977,181.4235766287893,181.14872128423303,181.13069272134453,181.59648710023612,181.34721816377714,181.43056286033243,180.61382664367557,180.9466519714333,180.090001008939,179.42565994523466,179.87362001091242,178.97024654783309,178.18210659641773,177.3575473264791,177.6398295359686,178.07720563933253,177.26648135995492,176.88518170639873,176.45860110595822,176.60177757730708,177.0983996996656,177.41468248609453,178.37342354794964,179.0145635670051,178.9697894230485,178.42485673399642,179.08008461399004,179.12363622244447,178.753793975804,178.64653208851814,177.9992120359093,177.14974332926795,177.7284205709584,177.81207917816937,176.9141021259129,176.23540191864595,176.30132372211665,175.59499533008784,175.2446455466561,176.01071538496763,175.69227795070037,176.3082500556484,176.49217221606523,176.6034742547199,177.2128410572186,176.49315826548263,176.07376367039979,175.7682047523558,175.22097838995978,174.4944388656877,173.65383368963376,172.95436506439,173.01615145849064,172.4443658408709,172.24860310228541,171.85578731028363,171.33401613589376,171.43031469127163,171.44903503730893,170.96521246852353,170.41849573422223,169.48533189715818,170.45192500576377,171.27150529576465,170.3372649899684,170.05399747006595,169.14459773292765,169.9321000832133,170.34824699210003,169.7685421970673,170.22572081489488,169.58918304368854,169.6445988942869,169.20420808298513,169.9016272178851,170.65897325286642,170.12886603875086,169.31809837231413,169.5109849940054,170.28893215209246,169.39040216663852,170.25389405153692,169.342073361855,168.90556959807873,168.203609644901,167.43772535584867,167.19352256599814,167.07657332532108,166.7246698155068,165.77428073016927,165.20275736460462,165.98991561494768,166.15262364270166,166.82600118312985,165.98880675667897,165.60364238824695,165.34235646482557,165.4282303652726,164.89623855194077,164.5949712912552,164.1575056221336,163.31967840669677,164.0845758379437,164.86448680469766,165.2516591772437,165.6055166600272,166.38638423150405,167.207805223763,167.55430103233084,167.06184945534915,167.67969007603824,167.2194441081956,167.07961064903066,166.7011976945214,167.59239634592086,167.82481409050524,168.4295014240779,168.8259372720495,168.3754168623127,169.3088907855563,168.9835390402004,169.3695496977307,170.28317358437926,170.85917921969667,171.50599435158074,172.43865006091073,171.47829473298043,172.4444492426701,172.59490598458797,172.5145844137296,172.9550899718888,172.2829420072958,172.690629708115,171.70577742625028,171.9230798408389,172.02572229178622,171.65902705769986,171.70029816078022,171.58653283305466,171.05382680520415,171.23363988660276,170.94817549083382,171.22095136065036,171.30866598617285,170.5107428994961,169.7854643072933,170.50320681976154,169.50560153089464,169.22230648435652,168.68557243980467,168.0815556338057,168.0252045262605,167.82789730513468,168.10381774278358,167.66138511290774,166.93269414268434,166.41615184675902,167.26575996540487,167.1335796811618,166.48249905044213,166.54980067536235,166.12230116128922,166.00657791644335,166.17619626922533,165.67090547969565,164.77605187613517,164.92642656341195,164.54873830312863,164.21961684897542,164.2803697977215,163.70693921344355,163.04242074489594,162.90562096983194,162.0880082845688,161.96052258647978,161.00446649920195,160.66057031508535,159.9454942252487,159.95151701383293,159.29588690120727,158.81459712656215,159.01018966268748,159.11225371295586,159.93399819359183,159.4157853941433,159.06870295805857,158.8314512660727,159.37580856028944,159.44082398619503,160.08719702018425,159.91676640650257,158.92150060134009,158.46765553206205,157.59366112714633,157.74996393173933,157.64263720810413,157.25560694932938,157.79963142145425,158.28041167045012,158.06344357971102,158.9059022758156,159.39885367825627,160.10013489238918,159.9738071798347,159.87570113129914,159.17958016693592,160.11356563167647,159.3070285259746,158.6252152118832,157.72086007148027,157.79844078887254,158.32479046145454,159.16885942593217,159.9486646540463,160.12940540118143,159.1657884172164,159.48934634169564,159.96490648807958,159.56269273441285,160.00908151455224,159.5964409681037,160.29357695393264,160.61680858768523,160.9688969948329,160.3454215703532,159.86945217195898,158.95238194754347,158.4026041557081,157.486206876114,158.13838625187054,158.03669065563008,157.3955598603934,157.47368045989424,157.75148402759805,158.67941400967538,159.31757014384493,159.00342709338292,159.20997575111687,158.8475490505807,158.95056342240423,159.43386134598404,158.5227262726985,158.40792098781094,157.6885545370169,157.91720198374242,157.5982802179642,158.1464116484858,157.15687064127997,156.93093029689044,157.87315568747,158.44281156128272,158.04470068961382,158.4802766260691,159.13471494894475,159.18611913500354,158.34771408420056,159.0957684381865,159.5517512485385,159.4681903203018,158.84348100237548,159.81153303431347,159.22253136662766,159.17992381518707,160.01078399363905,159.83711737487465,159.27141760336235,159.40496269520372,159.54542926466092,160.2721188524738,161.00053567625582,161.74591769929975,160.90124267619103,161.3989707045257,161.69857769133523,161.950599249918,161.63452321197838,161.38898368552327,161.5066236970015,162.09190123109147,162.68143448140472,163.09948063874617,163.32670954521745,163.63669059844688,163.08496075309813,162.538854775019,161.84788497909904,161.05849608033895,160.80917993420735,160.06688334001228,160.15608804440126,159.52784045226872,158.93414853746071,159.0142245371826,158.27494303137064,159.05859753629193,159.13998679677024,159.25657138042152,159.74822005769238,159.1102718510665,159.42154882475734,159.77937824185938,160.37475025700405,159.69118342315778,160.38337484933436,160.21972691034898,161.13200283190235,160.57871529227123,161.43919339124113,161.81788247823715,161.87140000239015,162.63489671703428,162.24737015366554,161.3199646375142,160.644034889061,160.62290295166895,159.6323388000019,160.10368785029277,159.4475285015069,159.2511995160021,159.057048516348,159.9447451182641,160.4419881212525,159.607557493262,159.38339227996767,158.6775122815743,158.67973433062434,157.855691306293,157.6540873371996,157.23063507396728,157.52997841034085,158.08140667015687,157.81667929515243,157.8840171196498,157.89537209877744,158.83643793081865,158.6496877479367,158.48293807450682,157.63688045646995,158.3106159302406,158.95060984930024,158.44935065181926,158.03757403278723,157.3851760867983,157.34143584081903,158.0995273371227,157.8425163347274,158.19893439114094,157.230993013829,156.79029514687136,157.01187170436606,157.06760116666555,157.21578761702403,156.50659661460668,157.37829105649143,156.5958911073394,155.71019273158163,155.69806330185384,155.73628162313253,156.46332847466692,156.1654752008617,156.50479448074475,155.99376385333017,155.17357344646007,154.76715193223208,154.2166357920505,153.5108191287145,153.37205473007634,153.13462276989594,153.62165407463908,154.5079519408755,154.8330610152334,155.7551948032342,154.85129206860438,154.2279297239147,153.87317416071892,153.09617995563895,154.04692716291174,153.71364330453798,152.79825854534283,152.16738306265324,151.90267794206738,152.86091326037422,152.99981016665697,152.36804765323177,152.97193194366992,153.77628325903788,153.26661132182926,152.42813992174342,151.9854420479387,152.25529592530802,152.83765906933695,153.30859451880679,153.5022529992275,152.6778783663176,153.44139600777999,154.28731884853914,155.1017497018911,155.25477635487914,154.29975913558155,154.54989037197083,153.73329838737845,154.28771796170622,153.8688761284575,154.32680676924065,155.2876302660443,155.05964878806844,155.9751822776161,156.857758091297,157.8276519146748,158.49893096089363,158.89170230180025,159.23375490214676,158.41567249316722,158.84639773704112,159.07242731750011,159.0482901739888,160.02947147702798,159.87878895690665,158.9690634966828,159.05601046606898,159.43367378832772,160.06292846240103,159.97542005311698,160.6814799979329,160.8499920060858,161.77087682904676,161.26114498684183,161.5760541073978,161.99617090215907,162.9188691782765,162.2972836373374,162.22073771758005,161.4589103134349,161.70420390786603,162.35166077921167,162.0286627104506,161.75928155099973,161.80491529591382,161.50675860233605,161.19082264928147,160.50746183935553,160.23422961309552,160.49260384961963,160.24861893290654,159.74260362191126,160.24351279484108,159.8447556211613,159.86775001045316,159.69039752986282,159.59075184632093,158.87452213605866,159.54685080470517,158.58064326271415,157.62280634464696,157.65743896830827,158.37922817328945,158.69553858228028,159.23531247349456,158.56801466923207,159.45560247590765,159.22465863032266,159.1255581760779,159.50156430946663,160.44254314294085,161.06750175030902,160.90471165580675,160.78802053676918,161.07500423723832,160.6741414112039,160.95391205931082,161.4610216859728,162.09606273612007,162.21992088109255,161.92176397750154,162.69323945371434,162.36050429195166,162.68862142367288,161.92771873855963,161.68695179652423,161.38259659986943,162.14248682372272,161.57003735983744,161.79015906527638,161.10031435405836,161.9825856075622,161.47461447911337,162.08577615441754,161.81256628455594,162.27086081495509,162.25509496452287,162.36692581465468,161.4747466254048,161.4176783976145,160.4201960475184,160.99141501355916,161.17127903969958,161.33961506700143,160.59430640516803,159.68623848538846,160.08082585781813,160.4198573641479,161.10264421394095,161.4830661341548,162.3128929915838,161.42341559380293,161.72797632496804,160.73345743631944,161.5735474685207,162.32979476219043,161.83545764768496,162.3138493313454,162.11758924787864,162.72572658304125,163.13416344113648,162.86731746420264,161.9341952917166,161.37260298104957,160.45765074761584,160.3523192810826,160.7766248243861,160.21515532582998,160.544532855507,160.3329973751679,159.5115971309133,159.0739360237494,158.61062876833603,157.89121206803247,157.43737548403442,158.42173733795062,159.29212851636112,159.30294474959373,159.16988223884255,158.5039913901128,158.2048818957992,157.8180218511261,157.3028214625083,157.87999164825305,157.85395965352654,157.2956173880957,158.06327770417556,157.72720281034708,158.32331315940246,157.7298547104001,156.80369112221524,156.07134012272581,156.37274274928495,156.41369751561433,156.97246209951118,157.07114569470286,156.73151670210063,156.1005529081449,156.62704010494053,155.8671479630284,155.70975090842694,155.9561601858586,156.53838247805834,156.24560493277386,156.16078978125006,155.80968729779124,156.74363550310954,156.74506548512727,156.62548048095778,157.22383019840345,157.14317523036152,157.0509912208654,156.36976205557585,156.21308541996405,155.5820076148957,155.87660152092576,156.131148153916,156.42915293294936,155.96916787698865,155.8244654755108,155.3250814722851,155.2360225059092,155.04334605345502,155.14689335552976,155.33422676334158,155.05444703483954,155.2272895486094,154.27304044971243,154.6837654770352,154.24984875973314,154.0012477422133,154.92255349317566,155.35137803154066,155.41517332429066,156.2246930715628,156.29121903702617,156.74192514177412,157.10415343102068,157.48232196923345,158.34939965372905,159.30655233794823,158.90054777171463,159.87905592983589,159.13995571946725,158.7335001770407,159.05490345088765,159.75847240304574,159.3895930238068,159.46509642340243,158.52540243789554,158.22202800400555,157.86235665390268,158.74086391134188,158.76758316811174,158.16265266248956,157.71449671452865,157.68905034381896,158.48064617998898,158.836392339319,158.35501463944092,158.66166006680578,158.1784083629027,158.26121765514836,157.74294168222696,158.6592287006788,158.02749360864982,158.3572057131678,158.6561641586013,157.8147514630109,157.04051420046017,157.75503043830395,158.28021821798757,159.08897614106536,158.66588095249608,159.28217792557552,160.15972659736872,160.55509357433766,160.90919397817925,161.0786157711409,160.71153280418366,161.3460286743939,162.0706776357256,161.38795222202316,162.1010559424758,162.72141840448603,163.6363091780804,164.40390407899395,164.03313868073747,164.5095049580559,164.6433023470454,164.0463417591527,164.8209882141091,165.26431917445734,166.07276822440326,166.7569371755235,165.91325118159875,166.1880584503524,166.94178996654227,167.66921730944887,168.34868882922456,168.52358170831576,167.6738949008286,167.91374408314005,168.03900826862082,168.76979696005583,168.9363691424951,169.05132405739278,168.09250975213945,169.04482324048877,169.9261904512532,169.67351198289543,169.25557808205485,169.08696771087125,168.4766008905135,169.3759668204002,170.0276269079186,170.862496427726,171.2035987577401,171.5220137005672,172.2473288383335,171.7377470387146,170.99967973586172,170.58882181160152,170.78709518257529,170.53943829797208,169.72879996104166,169.13633623952046,169.8174369391054,170.6618037656881,170.04518503742293,170.1379788494669,169.2738395263441,168.63472628220916,168.56834481935948,167.66965283779427,167.114114318043,167.43402211135253,167.22340547991917,167.39404911268502,166.52929121721536,165.76290273247287,165.40355706773698,165.20942234108225,166.12394014373422,165.25319022731856,164.70044861081988,165.08321319520473,165.56833047838882,164.9767573471181,165.58643648959696,166.0929676545784,166.2005783128552,166.67077211057767,167.0770911090076,167.10453244950622,167.15242316247895,167.3240885650739,166.50293781841174,166.26664476422593,166.37408002465963,165.50297172786668,165.11976951360703,165.6166111100465,166.61543122446164,166.07451090496033,165.78190628951415,165.63099147100002,165.4187250211835,165.40944738592952,166.36430881358683,165.78902985481545,166.75312790134922,167.1742069851607,167.27341272961348,166.56935393298045,167.40984797896817,167.8576847347431,168.30411900999025,168.3230086970143,168.28375488938764,167.75339976372197,168.47954739583656,168.6909009050578,168.9104155888781,168.47136846836656,167.68304592883214,168.02184393629432,168.35325325420126,168.95398644171655,168.7254471592605,168.69572104979306,169.34208328276873,169.10036741336808,169.65155629161745,169.55553134111688,170.38681940035895,170.64988982491195,169.6840352411382,169.43902639159933,169.8727212534286,169.90597548009828,169.46719821961597,168.96275997627527,169.23952327528968,168.3876280928962,168.55887875752524,169.00284023070708,169.79212238360196,169.393545425497,170.12038614600897,170.94790061144158,170.86632343148813,171.7390811839141,170.97686599660665,171.17911107931286,170.43322531273589,170.54817844135687,171.52589413244277,172.28548408858478,172.75794245442376,172.60810410650447,172.52536657080054,171.87497125659138,171.31418305030093,170.7309330748394,171.12196452030912,170.47755020437762,170.4425093876198,170.31974137295038,169.71186615899205,168.83171278610826,168.53953132033348,168.9455008856021,168.25131453201175,167.51643777964637,168.50018161768094,169.11965883010998,169.4325197134167,168.56668127747253,168.50628433236852,167.58494334248826,167.4791101962328,168.31832297705114,167.66916700499132,167.48049387801439,168.0425763647072,168.22463830793276,168.8176078274846,168.11431233212352,167.3321604146622,168.28766154684126,169.10278830304742,169.6279587126337,169.41165837459266,168.44509511254728,167.85920804785565,167.8674903330393,167.00695201847702,167.1166956149973,167.84985479153693,168.0204008151777,167.65275891311467,168.47299145674333,168.95590083906427,169.39322713762522,169.5027485853061,169.44346519745886,168.63305696519092,169.20569652784616,169.7956452779472,170.22191751003265,169.60248766327277,168.69456135621294,168.4747139266692,168.70344597892836,168.65716332942247,168.0836342643015,167.36874627927318,167.30206520250067,167.37775142956525,167.50642367405817,167.84016756201163,167.84923789510503,167.60131261311471,166.846995215863,165.88723775791004,166.57783079100773,166.85718759335577,166.36107167135924,165.57787224464118,165.6606397824362,165.44116714177653,166.42541220691055,167.10098231676966,166.6572234784253,167.08467978565022,166.4854190205224,166.36952673085034,166.31259042024612,166.3578060544096,165.9501704936847,166.39526839088649,165.91882024845108,166.63607470411807,166.80856116116047,166.69217979162931,167.04583886032924,167.31160125276074,167.34028420364484,167.5729182511568,168.24652570858598,168.84768910892308,168.90623302850872,168.70890026679263,168.03821110213175,168.11250686785206,168.627381474711,168.80099763907492,169.33694941317663,169.94836559472606,169.90764270815998,169.52791409986094,168.87166025396436,169.84778237715364,169.32348145870492,169.34071849193424,168.5830645058304,167.58417220320553,167.14043882209808,166.91262808348984,166.92428610427305,167.38442338258028,167.97827848000452,168.35873614996672,168.2538610403426,167.40652990993112,168.1079964088276,167.89461254701018,167.176229077857,166.6602262747474,165.6757214651443,165.50418045883998,166.06961367372423,166.03051086794585,166.42702376795933,166.65719970595092,166.89906741399318,166.4736273167655,167.45830186409876,168.09601840516552,167.27422749390826,166.57539465278387,166.6869198572822,166.1169889913872,166.69248053943738,165.85064912308007,166.07861799141392,165.67310223635286,165.7518669697456,165.8547410806641,165.7052571233362,165.10080711403862,165.0177025143057,165.14890975272283,165.08820036798716,165.18081859545782,165.71707516210154,165.03647307446226,164.46399980550632,164.4847949896939,164.62230893271044,165.52551956707612,166.04459968116134,166.0012929351069,165.38421045336872,165.56020512105897,165.05224134027958,164.97155198827386,164.3653484834358,163.88953655632213,163.82396019995213,163.20000056084245,163.98573020054027,163.74914895137772,163.03132221708074,163.74721322068945,163.02723689191043,163.3061417923309,162.95154941175133,163.20677581755444,163.7585824066773,163.84488230384886,163.17329202918336,162.3352602669038,163.15885718353093,163.23004335863516,163.94804625445977,164.4544269265607,165.28254636283964,165.43147044163197,164.6106978286989,164.90246042376384,164.67479949537665,164.68705228436738,163.70185683853924,162.76448442973197,162.74839583132416,162.88679016707465,163.7215074854903,164.4017116688192,163.50169935636222,162.6159347067587,163.39876494696364,164.08497857069597,164.15329622058198,165.09122421126813,164.94370131846517,165.6760512208566,166.12770372629166,166.80055961711332,166.3244887138717,165.60889610787854,166.33314903313294,165.78029985912144,166.1752874967642,165.89167620707303,165.83042594604194,165.85105460882187,166.00578433647752,166.61239743744954,167.56123791635036,168.4679766963236,168.9813609747216,169.24116130592301,169.5780245657079,170.40802451455966,169.68923402763903,168.98934313841164,168.56312631070614,169.1364950821735,168.9478720454499,169.46231854520738,170.2795668533072,171.08233592566103,171.28321631532162,171.11737860320136,171.25561000732705,171.3466282770969,171.12962193368003,171.1227482073009,171.63151009613648,172.19519101129845,171.51839893870056,171.15828341292217,172.0242490787059,172.81960183335468,172.20078347204253,171.95768709573895,171.16895928466693,170.8652204023674,171.0512140248902,171.81661536591128,172.36776141403243,171.97877474175766,172.32165159331635,171.38786502927542,170.79167494690046,171.2095615165308,170.37212504912168,169.5255250944756,168.62932177307084,168.61417827336118,168.56100972509012,168.88661563163623,168.8168237390928,169.41523182298988,169.39606766868383,169.91080476576462,169.82625268865377,170.66269617900252,170.08785001700744,170.42608639784157,170.21757270023227,169.38655685214326,170.2636078922078,169.35169426118955,169.62739572487772,169.34403130831197,169.5936994291842,170.397342344746,170.8823387483135,171.30700153345242,170.69572482956573,169.7621944816783,169.0008587790653,168.57474212069064,168.77963285986334,168.7082706335932,168.69474364677444,167.82578824320808,167.87367071211338,168.8637004797347,169.2987556378357,169.77674709120765,169.392844772432,169.1234166980721,169.10481820767745,169.4787775306031,170.4779053828679,171.05747141176835,171.1694840588607,171.12387909553945,170.24067490082234,171.04130155825987,170.86888065515086,171.85862298076972,171.83598646428436,171.91318793222308,171.08590574143454,170.44393724342808,169.65734788123518,170.3914925660938,170.31708154454827,171.23637920385227,170.44798327470198,170.5660354224965,170.28635621257126,170.99615905527025,171.43272237712517,170.7884313366376,170.51034966250882,171.34440413396806,172.10737557755783,172.3508850513026,172.77535822289065,173.30562072386965,174.15331041952595,174.42204402619973,175.37588579533622,175.12584523344412,176.10848991386592,176.5968343638815,176.30812046583742,176.43720299145207,176.5004893867299,176.84597981255502,176.9845710908994,176.95562141528353,176.54982062475756,176.33461996214464,176.15593680692837,175.54302050732076,176.30588916270062,176.79666664078832,177.60749574145302,178.37310967035592,177.83192187547684,177.80557307228446,178.26344275986776,177.30476998817176,176.91410482255742,176.0004783081822,175.63403061963618,175.1982955634594,175.55884726112708,175.43813284486532,175.30327353300527,175.65108669176698,176.38100209226832,177.05969480797648,177.12929059984162,177.95077270967886,177.03501304145902,177.8966872957535,178.0934915356338,177.34941359935328,178.25686821201816,179.24202904989943,179.07286752806976,179.76865317299962,179.5250351508148,179.58442217158154,178.8083075787872,179.7532624923624,179.8961593969725,180.1362539161928,179.79378259088844,179.52945869369432,180.1940001794137,180.2807590556331,179.69042349234223,180.66306623397395,181.02726676734164,181.60137503920123,182.2775314161554,182.92163492925465,183.32491039903834,184.3008131114766,185.2696081069298,185.20498844981194,184.24937187461182,183.63482061121613,183.5823321514763,183.0093972333707,182.91774930944666,183.14687553001568,182.2601056424901,182.14790309593081,181.89701001299545,181.51885859947652,181.08904534205794,181.6846621609293,181.60909836087376,181.81242667278275,181.49278482794762,181.91924422653392,181.1348065463826,182.08544902084395,181.12222009291872,180.38218355178833,181.0113863069564,181.3278490784578,181.89096197020262,181.4728392935358,181.9608659078367,181.06769931456074,180.22105520917103,180.65368810715154,181.54506215220317,181.5202306159772,182.00934293866158,181.8230535541661,181.13990474585444,180.93086333479732,180.77525743329898,181.29178343340755,181.77737999893725,182.12237082468346,182.63932245736942,181.74324231641367,181.33832199452445,181.19909298745915,181.7406322127208,182.00840316712856,181.3659173506312,180.70786389429122,179.82700694398955,180.4799058116041,180.83044523373246,181.77561686141416,182.00754142086953,182.563711093273,182.45555731328204,181.73688918538392,182.52448279736564,182.89719116408378,182.8499569366686,181.8914218437858,182.13771757343784,182.1071151662618,181.98582595167682,182.0126497996971,181.69991437764838,182.63466723728925,182.21247673407197,182.84672039328143,183.12965636933222,182.76529127638787,183.76164995599538,183.7402129136026,184.7062831283547,183.9574008132331,183.10312124947086,183.36679829936475,183.71237078076228,184.02709436509758,183.27319932822138,182.89079774776474,182.75662739248946,181.79214749205858,182.40511604119092,181.61583599168807,182.5449326215312,181.99961543176323,182.46377257397398,181.84197225701064,182.47864459548146,181.70509298378602,181.3282393286936,180.4529802701436,179.6747619137168,180.31759622506797,179.56574752833694,180.33992492966354,179.79409436834976,180.52162464754656,180.90030085109174,180.7420209031552,179.76099300663918,180.64956154534593,180.31960430182517,180.92582637770101,180.23280700994655,180.5926431887783,181.48492861026898,181.3350247987546,180.95512846810743,181.5009548268281,181.61333930306137,181.81203039642423,182.73267465038225,182.78029460599646,182.42491553444415,183.08269581664354,183.86420637834817,183.4212786159478,184.38563023973256,183.45650250604376,182.92547764396295,183.57171012833714,183.02137680817395,182.61754273995757,182.285144593101,181.77569513581693,181.8042336963117,182.13159613963217,181.44450748572126,181.13018549978733,181.427030751016,181.05294895498082,181.71311319014058,182.59259400889277,182.2822530339472,181.87218168145046,182.22102583944798,181.92452307092026,181.9860503464006,182.16103111952543,181.46311719156802,181.26881617866457,181.65528702223673,180.9769725925289,180.74332563905045,180.02448015473783,179.85424154484645,179.39344277139753,178.98089497629553,178.28090814873576,178.8933782610111,179.49510009912774,179.48835080349818,180.23056520568207,180.8263328676112,180.98157640453428,181.7671619616449,181.2395529379137,181.77364206360653,182.08388667041436,183.05217488016933,183.15046780882403,183.25427503185347,182.66116769937798,183.10325688309968,182.6338985916227,182.7540139821358,181.9229552471079,182.09979175310582,181.23132820706815,182.01902380306274,182.6578033650294,181.76086917473003,180.9921980360523,181.06479957746342,180.22140532312915,180.8454754347913,179.87313755275682,179.6583431130275,179.12940637674183,179.65914556290954,178.8809472573921,179.2385482355021,179.81037588370964,179.95228042732924,178.97436835151166,179.3409929764457,178.4744206778705,179.2222604737617,178.70351547468454,179.30166014190763,180.00836483296007,179.15310440724716,179.0223309728317,178.79480406688526,179.2433572472073,179.52249903138727,179.58348329225555,180.18256806209683,180.7517369990237,180.5872300453484,180.13284218171611,179.17873287806287,179.65541589586064,179.48356219567358,179.5344627397135,179.59199945768341,179.83079321915284,180.01219986518845,179.0980930980295,179.95487508596852,179.04248774284497,178.42367206374183,177.88176731579006,177.60574510181323,176.98059243429452,177.87305134395137,176.9983596811071,176.9067406230606,177.393679167144,177.89733483968303,178.05145200015977,177.27559517975897,177.62009250791743,177.1149420789443,176.7671534200199,176.11532046599314,176.27345355926082,176.25514634884894,175.7607259619981,175.96066872030497,175.31728154420853,176.2122786086984,176.7210419178009,176.98813913343474,176.57759303040802,176.60642751306295,176.0800877492875,176.94737145584077,176.32560615474358,175.5269067073241,175.3875414780341,174.43476084712893,173.47145542874932,173.08549840934575,173.10824108775705,172.48601759131998,171.8465755181387,170.88905316451564,171.24979614280164,171.26123911887407,171.15716365771368,171.75447345757857,171.21896082209423,170.72245947038755,170.70476854545996,170.0282293939963,169.50721275992692,170.0440543917939,170.52795012574643,170.22806426184252,169.62491949135438,168.68222721479833,167.69795663375407,167.83676803018898,168.03699362790212,167.58757469384,167.92492626653984,167.36623339075595,167.72615708922967,168.21790440520272,169.11546214250848,169.1483032735996,168.9483496202156,168.50093559455127,169.44861123571172,168.9975089454092,168.37880863109604,167.60123841976747,167.78086704947054,168.01221012417227,168.68241937318817,169.17314151953906,169.17163906805217,169.17935943836346,170.00220465753227,170.60280529689044,171.2827914794907,171.14784628991038,170.380161607638,170.53877350594848,170.0592034845613,169.5587303424254,169.8903358215466,169.56274194130674,169.29511684691533,168.46386183146387,167.74163453280926,168.4655406284146,169.3394712130539,168.46739901648834,169.37974264053628,168.8749144016765,168.58223229041323,169.12626486411318,169.6025728713721,170.205285418313,169.46468292502686,168.81691059283912,168.5059921965003,169.4652665508911,169.15734557248652,169.5802380638197,169.2235917202197,170.02321001561359,169.7496658526361,170.19472890952602,169.8816738552414,170.17304913327098,170.18030553124845,169.83072326425463,169.8396584619768,169.02630198094994,168.2188954022713,168.08723962167278,168.45703434292227,168.9276508348994,168.99677235959098,169.29738452564925,170.22485540574417,170.70954100927338,170.0043285782449,169.46759520377964,170.33061753679067,170.49424502486363,171.38837292650715,171.73590049659833,172.68764276243746,171.88570095039904,172.54940232308581,172.82570092659444,173.7005667812191,174.42017479846254,175.1386535121128,175.08506736159325,174.74125388637185,174.62444104254246,174.0255390428938,173.16518266964704,172.93646236415952,172.1430007345043,171.50811403710395,171.2975240908563,170.9902814333327,170.9515066696331,171.36353416740894,171.30171002121642,171.5520646609366,171.66306798998266,171.14345304341987,171.94439983926713,171.47599564865232,170.7326767859049,170.68627065001056,170.23574830126017,170.0741255939938,169.38704410661012,168.970315373037,169.72327651455998,169.92598974471912,169.29592738393694,168.3375187809579,168.34485285915434,169.1167741669342,169.49419906176627,169.1781052723527,168.74637660151348,169.10188801167533,169.34330776147544,170.2086643660441,170.390944798477,169.59906084369868,169.38060139724985,168.72375393286347,167.9110730951652,167.37973115220666,168.30333480797708,167.70849924208596,167.91328986966982,168.0150721045211,167.53122069174424,167.8535799589008,167.16275231027976,167.79478294868022,167.06588239967823,167.56469633011147,168.0783902113326,168.33186545362696,168.76263829646632,169.21191869163886,169.18933700257912,169.43161253398284,169.67139540147036,169.76802494889125,169.55260825064033,169.54240979952738,168.80808921391144,167.86326711112633,167.40282122185454,166.85658039106056,166.79505453491583,166.81170602841303,166.91117734694853,166.92251688661054,165.93980832910165,165.2275943905115,166.1799621526152,166.7535023270175,166.6218751296401,167.55138031300157,168.08343683369458,167.26831714762375,167.639498478733,167.2668508645147,167.31044211331755,166.85025503998622,167.38790253316984,167.65032692672685,168.19217985169962,168.83824369637296,168.23918963270262,167.52306470647454,168.3967175576836,168.2023221394047,168.81399396713823,168.3393396786414,168.11131130019203,169.0489706248045,169.15467879362404,169.11494363937527,169.3982122046873,169.23634393606335,169.617542529013,169.5226472876966,169.59318222943693,169.81823089160025,170.59369871485978,169.6846565217711,170.63997675757855,171.07028194423765,171.43396724015474,171.8844171105884,171.81316216755658,171.40291233034804,171.15663770586252,171.50831139506772,170.67830458376557,170.00277269352227,170.9995354390703,171.29455012036487,170.62331052031368,169.6407954627648,169.2516917185858,169.355738658458,168.93171798577532,169.51297712232918,168.67361715529114,168.88697908632457,167.9666309808381,167.9035969749093,167.9787640958093,168.40239853132516,168.6283890507184,167.69611487165093,166.70591702824458,167.15880017215386,167.737355586607,168.05616929009557,167.7721116328612,168.73565052868798,168.1078049535863,168.3004998676479,167.603377929423,168.05358774168417,167.1540149571374,166.57128122728318,167.0075540682301,167.3714186665602,168.0651245531626,168.53276513004676,167.87177858594805,168.3178351907991,167.59429033938795,168.36535185575485,167.44130476610735,166.44261538842693,167.2134365765378,167.36854870710522,166.96347531676292,166.6142946849577,166.38412204943597,167.1156541975215,167.29309010645375,167.89407032588497,167.52697362797335,167.22011973103508,166.95428677927703,166.11473626131192,165.34774219244719,166.2666948735714,166.65311816940084,165.7909087082371,166.38135781604797,165.55011177062988,165.5303052533418,166.31583355972543,166.58455263078213,166.73796414677054,166.7350814291276,166.24925508257002,165.5190930236131,164.5887559731491,164.84314163401723,164.91895622201264,164.05439068144187,164.397324568592,163.93087299214676,164.71778679266572,164.70352417975664,163.82505061710253,164.25934410188347,163.683073871769,163.40276390640065,162.96026370627806,162.5914416643791,161.616917217616,161.4152454356663,161.52877098042518,160.81871098466218,161.36065526586026,161.8601873330772,161.57487427676097,161.9401556281373,162.42221688851714,162.365617335774,161.81606524204835,160.9116741050966,160.14413282135502,159.50773163186386,158.9644068032503,158.0803985069506,158.67671840731055,158.69325732858852,157.8078622156754,158.65643046610057,158.18735044961795,158.89926731726155,158.08746652072296,158.9733561933972,158.20190028799698,157.68324887519702,158.21963446820155,157.890999476891,157.28869709465653,156.7637298242189,157.2067684745416,157.5627219271846,158.5156376855448,157.7079339409247,156.87422968586907,157.21055484376848,157.0447761346586,156.30558299692348,156.87479989789426,157.31757542677224,156.46494299545884,155.49299266468734,156.23328508855775,155.69511056365445,155.68430061358958,155.83601270709187,155.44892621273175,154.92773728305474,154.3101427606307,153.56913119228557,153.28837485425174,153.77190350648016,152.9831470013596,152.17606953391805,151.21952635003254,152.08707132237032,152.55662599857897,152.01739711267874,151.6488854046911,151.7648684475571,151.3052329029888,150.63375395024195,150.39293941576034,151.0166231044568,150.42168356850743,151.34901508130133,152.03008647123352,152.97467570286244,152.58580589387566,153.13225089525804,153.2462968081236,153.45517564332113,152.94313391391188,152.41358278878033,152.43118735169992,151.73758858721703,152.15568237006664,152.36674339976162,152.7964028264396,153.42738898424432,153.1895251958631,153.8481124858372,154.74587054736912,154.90742204198614,155.76967316586524,155.97761551011354,155.87016515573487,155.40000784909353,156.20660633873194,157.09550816006958,156.52512042876333,156.0957105527632,156.04303952027112,156.22334182728082,155.78567528771237,156.5317632816732,157.38566492218524,157.79932495299727,158.72322514140978,159.2173748575151,158.7052925308235,157.80561320856214,157.96937325084582,158.34323323192075,158.4381315759383,159.40729353949428,159.57674288237467,158.67894416395575,157.71883737668395,158.58599727321416,158.54457628307864,158.24532938562334,157.4512670072727,158.20294294785708,157.95770318480209,158.82849511923268,159.5949396607466,159.32518364256248,159.6914723245427,160.14498549234122,160.30791160836816,159.84483822248876,159.69294306542724,159.34543665219098,160.0781146469526,159.58572530094534,158.86294812196866,158.44031390128657,157.46075478196144,156.90115348622203,156.12956710951403,156.04695118730888,156.8878893572837,156.26013889349997,155.51511207735166,155.2782232123427,155.98082007607445,156.24054693058133,157.16946208430454,156.57896679406986,156.8535838634707,156.5384599226527,157.37638752209023,158.27614298649132,158.74180379789323,158.44655365869403,158.71333780838177,159.35384578071535,158.6699637901038,157.7699385578744,156.97531852917746,157.2689623227343,157.2000938653946,157.8170647532679,158.46800589142367,158.1335099292919,158.55688844108954,158.5865337443538,157.76230557402596,158.72745021479204,158.27569386456162,158.9087851298973,159.18322938727215,159.2134361951612,159.907343310304,158.99089623847976,158.00350323086604,158.50105518195778,157.56715452345088,156.56843181466684,157.4396233027801,157.6053883060813,158.33081392478198,158.4556030551903,159.4164863359183,160.05157674709335,159.41567818634212,158.7946903053671,158.0870793554932,157.9540663175285,157.75431088358164,157.1963752740994,157.3764774594456,156.95947299618274,157.34182186238468,157.42109569115564,158.26454336149618,157.37152914563194,157.56652932567522,157.4281910918653,157.67588550783694,157.80474627297372,158.6678617335856,157.69299391005188,157.63872749404982,157.05646517779678,157.02427028585225,156.8849909650162,156.5664150295779,157.33096321951598,156.46384467324242,156.74497760180384,156.56052422570065,156.12058974057436,155.9851599498652,154.9927504430525,154.37780884234235,153.96174752991647,154.38792259898037,154.15254283091053,154.78276242967695,155.26104761473835,155.14834681153297,154.57000458892435,155.4520665248856,154.65063551673666,154.98662345390767,154.5518582095392,155.08770187199116,154.72617636667565,153.8126407400705,154.53963058348745,153.59523720433936,154.3292920878157,155.11820165906101,154.22268026694655,154.82889039441943,155.3367307265289,155.4065758716315,155.25353759434074,155.875054102391,155.88224565517157,156.48343625618145,156.1827578167431,156.93773865001276,156.40576978074387,155.74916686024517,155.0738998777233,154.52152685448527,154.77220358885825,154.51831971295178,154.06719378894195,153.53369132848457,153.0139912883751,153.64597450057045,153.30611622985452,152.83399251941592,153.69160556187853,154.41266852570698,154.7625421853736,154.71144027775154,154.60898400191218,154.6852110424079,154.8212478440255,155.3090961938724,154.59511924907565,155.0074687669985,154.81972422543913,155.65619396837428,155.36635345127434,156.08668450452387,155.47333443304524,155.54508321592584,154.8740026759915,154.08339009759948,153.58316271193326,154.3508883039467,153.57619358412921,153.02506400551647,152.43173765949905,152.53291332814842,152.7689572237432,153.04215825535357,153.3956961929798,152.5382656622678,152.54516729246825,153.0013658455573,152.79971947567537,152.07105771359056,151.81743212230504,150.94296259153634,150.70221342751756,149.93680318957195,149.47233276627958,149.16491840872914,149.49419499002397,149.26579309394583,149.35959909763187,150.1711023072712,150.9455337044783,150.85622384259477,151.51826499262825,151.64151592645794,152.01490966649726,152.290278817527,153.24608646240085,152.81702235946432,152.18663358455524,152.66315573081374,153.19752849591896,152.85334957949817,153.50781202549115,153.8762097498402,153.7889459123835,153.69060681387782,153.2220656289719,154.05087968986481,153.44687848957255,153.8164486135356,153.41666912753135,152.96530778659508,152.1024401965551,151.9197274404578,152.44951366633177,152.79125400073826,152.19767607469112,152.487862479873,153.13135612243786,152.61269658245146,153.04368932172656,152.61894026119262,152.98850199580193,153.92262333491817,154.2660347884521,155.12778084352612,155.62551309634,156.04822450177744,155.6269613909535,154.64761991379783,155.5973280002363,156.3758602743037,157.15671834768727,156.89968963898718,156.17377261212096,157.1725384350866,156.25633126776665,155.88317917007953,156.78475863533095,156.01521076494828,155.28528513759375,154.46481128782034,155.29754137201235,155.79802855476737,155.6073247063905,156.23312697466463,155.55317142792046,155.3376183710061,156.0567267788574,155.40131847001612,155.1222537276335,155.21448711678386,155.30342440772802,155.50116049451753,155.1747814649716,155.69414740800858,156.1622848007828,155.38164761802182,155.41135744657367,155.72756721358746,156.56227568769827,156.83018542220816,157.13297193218023,157.14515789831057,156.84340130491182,156.19125659950078,155.4931372422725,154.69667718745768,154.24126747110859,153.53692993102595,154.2375012054108,155.2046335367486,155.86718364665285,156.39133018860593,156.06302907085046,155.71464499644935,155.45227504428476,154.89588606217876,154.21109829191118,154.5622378140688,155.029407099355,155.179630685132,154.9984081108123,155.27553238719702,154.86652378365397,154.3138584648259,154.28845531865954,153.427577751223,152.66338640544564,152.61602437822148,151.9212413984351,151.63651331095025,151.56797800259665,151.800015211571,152.6103604095988,151.9259295668453,151.87024846719578,152.56172872101888,152.59914676193148,151.89318000152707,152.27498116903007,152.10153998807073,151.79985085129738,151.1800917251967,150.95125936111435,150.1401765565388,149.92490354832262,149.14769280003384,149.25238321442157,150.17862171772867,149.90326977614313,150.63261612690985,151.4100180012174,151.11507742200047,152.10380765190348,152.05289636086673,151.68510333262384,152.0177262024954,152.8851316520013,153.34329792996868,152.4837324693799,153.08909553615376,152.99633375229314,152.80881049716845,152.08534406591207,151.65464035747573,151.31481567025185,151.97363695316017,152.77017878228799,153.51375513197854,153.28495292086154,152.882603734266,152.26081690844148,151.9862059126608,151.21575519163162,151.81270386371762,151.55826227366924,151.9490999225527,151.90202102949843,151.7717374623753,152.68272946448997,153.50452096387744,153.90830883197486,154.46654733549803,153.7421252359636,154.29811148252338,154.1110989493318,153.3846146366559,153.09723489545286,152.7232233262621,152.52814018866047,153.39717347640544,152.489005476702,152.93422257341444,153.06402885960415,153.00741517310962,153.95876925857738,154.31806676927954,155.06009247386828,155.7305573313497,154.96908738091588,155.5317435641773,154.55387083860114,154.79442019574344,154.0752778747119,153.97332635568455,153.23466080985963,154.2132633300498,153.7426717481576,154.3949635885656,154.01241164654493,154.98070112848654,154.79877437790856,154.5741567881778,153.65866763191298,152.7593395342119,152.35100659634918,151.91822277242318,151.32159626996145,150.65985331404954,150.29231067141518,150.72067096084356,150.3726817672141,150.49255707208067,149.97042210260406,150.51397105818614,151.27292760135606,151.58918279688805,151.94218862615526,151.64134485414252,152.11569020571187,151.53205623012036,151.62942670937628,151.26374429557472,150.90724578406662,150.5607279697433,151.3762462809682,151.06780773727223,151.00272792205215,151.36036424152553,151.9089676248841,151.45680639659986,152.15952083095908,153.02346175676212,153.92906527686864,153.02520386921242,153.46260390803218,153.69979005958885,154.0149227832444,153.95789737068117,154.54020889708772,155.48570795403793,156.3439468210563,156.42613409040496,156.21302680345252,156.23955875774845,156.246369054541,156.84278854867443,157.31201306916773,156.96561555797234,156.93948218226433,157.52789484290406,158.0266815694049,158.4389863642864,157.70428280206397,156.92864987021312,157.47335743391886,158.39773433376104,157.91727346926928,158.32917975261807,157.99799999408424,158.87014702009037,158.5630098162219,157.77560846041888,158.75765269156545,159.51899790437892,159.62718557566404,159.1959803714417,159.16767285764217,159.919938842766,160.43673732876778,161.22536086756736,161.19931158609688,161.67308834660798,162.66508283093572,163.42128575313836,164.03721004538238,164.56966006895527,165.40161902084947,165.47346848342568,165.9136860477738,165.76619054144248,166.7514055953361,166.20107029331848,166.21276933746412,165.8578665428795,165.65604707645252,165.71843989240006,165.45437336247414,165.16419621556997,164.4477847935632,164.5861043133773,164.96686622081324,164.092353541404,163.93662965577096,163.60388677101582,163.48988111596555,163.9960008719936,163.39659302448854,162.6736132535152,161.82064429856837,162.79219350591302,162.4731588740833,162.90140208089724,162.08130572922528,161.40764532471076,160.6636667670682,160.30444420175627,160.27863771934062,159.71770279388875,159.67256157007068,160.12898594513535,160.7701203348115,161.01318933581933,160.3002490652725,160.26459417538717,159.9469284825027,159.84378451434895,159.77702053356916,159.2967910701409,158.57416083384305,159.0076863844879,158.32064768997952,157.84398577269167,157.21809194376692,157.0301693053916,156.4136864412576,156.23618097882718,156.67469396768138,156.15352851012722,155.3712469022721,156.29271135199815,155.80453768605366,154.9584065224044,155.56295867450535,154.5765336630866,154.77054451731965,155.12638473557308,155.39916148222983,155.77761938329786,155.60553920362145,155.3283061706461,154.93477503582835,155.639193310868,154.64589307410643,155.21573440078646,155.853635719046,155.1491087418981,154.3417414193973,154.76482951361686,155.69918833766133,156.15691817365587,156.0254096337594,155.4573580706492,156.08595954207703,155.31114739831537,156.18292910046875,155.37120919208974,156.26315660588443,156.9480537297204,157.36056021181867,157.21142264083028,157.87059820257127,158.3135003563948,158.9699394465424,159.12519911956042,159.38870601775125,160.06595352850854,159.47982935933396,158.59107391163707,159.4703064118512,159.71126116486266,160.59046942181885,160.99525464558974,161.03250175574794,160.3466598750092,160.6130568794906,159.87694168835878,160.52180695347488,159.5528442892246,159.12515992624685,160.10595066519454,160.76987884473056,160.34172427095473,160.5560530377552,161.42534939199686,161.2160776425153,161.41073959553614,161.57746805390343,162.43344715610147,163.16233883146197,163.06018823292106,162.0856412812136,161.3266829070635,162.07371015986428,161.8187020048499,162.37562839174643,161.80287916911766,161.0786145599559,160.50549211679026,160.6418882040307,160.52833384554833,160.5715193124488,160.37164596049115,160.29964200081304,159.69173732493073,159.33089564414695,159.22803339920938,158.40307030407712,158.8366504292935,158.9239298827015,158.63186529185623,159.58880520006642,159.12473804922774,158.45891996193677,157.67580021871254,157.83659354085103,158.14619386848062,157.38952015247196,156.77306796144694,155.95451010623947,155.7614869638346,156.41518458677456,156.47550552897155,157.1362100429833,158.04588933149353,157.58572967443615,156.96143911313266,157.15721028856933,157.02818822441623,157.7376990383491,156.8181833680719,155.99558672541752,155.87110123457387,155.70964380865917,156.22668100660667,157.1839187568985,156.23764091404155,155.7525609205477,154.99381158547476,154.6271369997412,153.9490208127536,154.53245259542018,154.41858195280656,153.59044759720564,153.95364952692762,153.27234163926914,154.2194685479626,155.02816851250827,155.91326248412952,156.0485356450081,156.68009856902063,156.20316491974518,157.1179564022459,156.70816768193617,156.52293569035828,156.90800648508593,157.4031671024859,157.4929954148829,157.17303024651483,156.1978618451394,155.59743427857757,156.03062516776845,156.37495268695056,156.9579096697271,156.33066039858386,156.30795301264152,155.45240120077506,156.13440940296277,155.469304070808,156.3785354392603,157.06879691267386,157.799482061062,158.61941500660032,158.76801193784922,158.71438361378387,158.4769107894972,158.6442841249518,157.7583010601811,157.15172642236575,157.72745455568656,157.65462634898722,158.43686485802755,158.64010046282783,159.04510181490332,158.58532388601452,159.0390313565731,159.58827621256933,159.99129255162552,160.03801259212196,159.1828145715408,159.11299174046144,158.83564008120447,158.62686327146366,159.33337608538568,159.92840890586376,160.6074682911858,160.24907016335055,159.61061184247956,159.7746864161454,158.86434751562774,158.48891255492344,158.9786778865382,158.83327985648066,159.07650374574587,158.36779709579423,158.88151130545884,157.99862897302955,158.0813270015642,157.49658500682563,157.20951216388494,156.5024543949403,156.89826110331342,156.30764167616144,156.11387509666383,156.5007997932844,155.94192823627964,155.05918039148673,154.692112240009,154.94040508475155,154.50667425384745,153.82369552459568,154.2026049606502,153.3460388854146,154.0447111031972,153.33979367325082,153.76934848865494,153.05237213568762,152.17351082572713,152.2544376901351,152.96052237041295,152.63724350649863,153.33058307273313,153.178212096449,152.28761100629345,152.15282261231914,152.11070749768987,151.52884573116899,151.9556226222776,151.3085130881518,150.61973856203258,149.88231095438823,150.01804653229192,150.01502096047625,149.20064979419112,149.22294104425237,149.69636833807454,150.042667419184,150.1484015113674,150.77991074882448,151.36647592205554,150.70668221870437,150.29617711156607,149.69428649405017,150.374855292961,150.43137750029564,149.97061822470278,149.9368777256459,150.4204850019887,150.98071239329875,150.53211814258248,150.04957424709573,149.89046858856454,150.38304978096858,149.7063730675727,149.51053060078993,150.50238689687103,150.21365849021822,150.63849725946784,149.85767161194235,150.4061373951845,150.92992162005976,151.5395635110326,151.94242895627394,152.56974383443594,152.85351732419804,153.70724552683532,152.80890845879912,153.52339270990342,153.39594360627234,153.62549992697313,153.45806282013655,153.67035508714616,153.05022235959768,152.60060320142657,152.1650059861131,151.87552982242778,151.23185308044776,150.6428088922985,151.3754307013005,151.72689005499706,152.33060100814328,153.03940356243402,153.33413989376277,153.57481688726693,153.08060199022293,153.65829074615613,153.11082228226587,152.32670888863504,151.83137046406046,151.18388841254637,150.83077747700736,151.12635271204636,150.77423025481403,150.69804003741592,151.5651682736352,151.06897262251005,151.0408582529053,151.80059123504907,151.4764237063937,151.58679954474792,152.49666133336723,152.35982595896348,151.58176434366032,150.7313866475597,151.38103151647374,151.17697205673903,152.00910316687077,152.51467047119513,153.5025549097918,153.95434233779088,153.92035432485864,153.96138160768896,153.62673089420423,152.8622141215019,151.98045578692108,151.59954296192154,152.58570510800928,153.5424100398086,152.86686251405627,152.02541244588792,151.8409454380162,152.0697382716462,152.4242461179383,152.95257169613615,152.90958095807582,153.32664541574195,153.94203434837982,153.95318398158997,154.19571213657036,154.93087850278243,154.66228982247412,155.50982182472944,154.75963448686525,155.43024674570188,154.99343463173136,154.10534164309502,153.14361856412143,153.67206926923245,153.1190577717498,153.91928197909147,154.82189916586503,155.6754595390521,156.54519593669102,156.80667840596288,157.53905546944588,157.5410337257199,157.09935483243316,157.45124521898106,157.7876894264482,157.14019716344774,156.90668018674478,157.40613805269822,156.9090747339651,157.01826450554654,156.5399543917738,157.3147369241342,157.21568770846352,157.9504657862708,158.14930232428014,158.34480533376336,159.3363054455258,158.43632732424885,157.84815457696095,158.1222546021454,157.6830754210241,156.73334444174543,157.60428392188624,157.87313456414267,158.5841923924163,158.04238670365885,157.39524390501902,157.71905456483364,157.67053534137085,157.249753695447,156.39841682557017,156.10185329103842,156.11221740068868,155.9378468040377,155.27297502802685,154.67941006459296,153.95103083457798,153.76641795923933,153.5129947848618,154.03715254785493,153.68853178992867,153.40940625406802,153.6808706438169,153.73919118382037,153.4160922258161,153.1274081049487,153.13641942711547,153.45136264432222,154.43364431802183,153.83493589702994,153.96590089146048,154.1772640044801,154.70902482932433,155.42549545876682,155.46275794040412,154.963474733755,155.1065799156204,155.46275848150253,154.62920211208984,155.17912198230624,154.4282777966,153.64218100858852,154.23062235070392,153.40058855200186,152.9852826311253,152.5667725764215,153.0352252847515,153.463553333655,153.36984022008255,153.21670784428716,153.53613136336207,152.90494384337217,153.51577715296298,154.33290355466306,154.7595602790825,155.69841088028625,156.31148115498945,156.2166000395082,156.4495572145097,155.89350216602907,155.48780091200024,155.66070676082745,154.89828652748838,154.51934475125745,154.77241183491424,154.3045386010781,154.6977578611113,155.36657437775284,156.0527686518617,155.64445467246696,154.79315675003454,154.34148982027546,153.66749904537573,154.19465558510274,153.9960726085119,154.17101824562997,153.22142218938097,152.39808816462755,152.4686283087358,152.82728001335636,151.9965573628433,151.6320753665641,151.90470254514366,150.97501623770222,150.66222687857226,150.00442868703976,150.20203233417124,150.10642392653972,149.62558585079387,149.5487917815335,148.86170157790184,149.0387403285131,149.63088393723592,149.5080441297032,150.4204453052953,151.37290667044,151.39219756564125,151.23263134527951,151.38050637580454,151.64281103527173,152.2996945292689,153.10911127040163,152.72154142521322,151.82061671931297,152.45447906525806,152.69682041276246,152.89069291902706,153.4898188477382,152.50272884452716,151.51374483807012,150.52749888738617,150.01413999451324,150.0805477160029,150.2767955637537,149.59750309912488,149.84973723767325,149.95831206347793,150.3395482506603,150.5592859890312,150.88248986145481,150.03904346050695,150.41872039204463,150.0379779501818,151.02175281150267,150.8948320634663,150.90136494440958,150.2731464644894,150.8106488790363,150.17196132428944,150.58167265774682,150.33005878934637,150.70477363141254,150.7264660736546,151.7067667869851,152.2383553655818,152.76502218842506,153.10236589517444,153.04973878711462,152.6634796364233,152.7762132040225,152.41952227754518,151.63125195307657,151.3910190211609,150.6036522979848,150.70909467618912,150.63622267078608,150.92239386681467,150.11407831776887,149.53402569284663,149.41832182230428,149.49709075735882,149.39288786659017,149.4077622210607,148.9042323892936,148.11817659111694,148.1028413665481,147.8092251000926,148.0919536887668,147.7388579933904,148.61733069829643,149.23065695818514,150.21521202288568,150.93033044366166,150.7766557149589,151.48756726598367,152.26944528985769,151.85668824287131,150.91142292041332,150.77315384801477,151.08754633553326,150.99717676686123,150.6404329072684,150.60166871035472,150.25779256084934,149.70563707128167,148.94331314740703,148.60054383194074,149.38253913307562,149.82191574620083,148.866716098506,149.76812005229294,149.91188131086528,149.4771370687522,148.86183703038841,149.00081964861602,149.15768860839307,148.9182717455551,149.32534430501983,148.78275130316615,148.21650363551453,147.94523080112413,147.40857157995924,147.66386292688549,147.59952542651445,146.92641050042585,147.73006191663444,147.6182070216164,147.0136223216541,147.20029720989987,147.23780338745564,146.99766586860642,146.12461349368095,145.9046378196217,145.70266928104684,145.62121297046542,145.68423889297992,145.57742763496935,145.11223590699956,144.1358958305791,143.6446623406373,142.95700745657086,143.38018405390903,144.26122655905783,145.19403668679297,144.8693170528859,145.56632201652974,145.2726343437098,146.04691518610343,146.64476344408467,146.62544216867536,146.68795242486522,146.52805836545303,145.73329463833943,145.9411337324418,145.60361752007157,145.91629130858928,146.38250407157466,147.29103627428412,146.6158396815881,146.18696513259783,146.3910140185617,147.36513013392687,147.69024162460119,148.3234689491801,149.12417742982507,149.26196772651747,148.56226357538253,147.57642782339826,147.412671438884,147.78773647220805,147.6037459289655,147.95319773675874,148.7774659190327,148.81284950813279,147.88577702222392,147.5359011348337,146.98846879182383,147.1797959310934,146.90637600515038,146.0817210818641,146.5620660749264,145.57524724956602,146.286370690912,146.86574699357152,146.44167079543695,146.40137569746003,146.62667681090534,146.75717272562906,146.42645839974284,146.28202561987564,145.92114855488762,144.9476148011163,144.28289872547612,143.60704154102132,144.2342598135583,144.920073420275,144.44497754098848,143.7047241255641,144.17845953302458,144.17726523149759,143.6293443259783,144.10078142490238,144.04674328071997,143.24257847014815,142.61346669495106,143.09241544641554,142.93075646087527,143.26511815516278,142.58065110631287,141.97921743895859,141.158208925277,141.54909526603296,140.99530640989542,141.5721636172384,142.26571393711492,141.596800704021,140.71804117690772,141.2054765149951,140.68241641204804,141.30696289706975,140.72108295047656,140.20368800731376,140.67374692857265,140.69368976680562,141.44409731030464,141.2507995190099,140.80868060467765,141.79311213223264,142.72628803830594,142.07749381382018,141.92252009082586,140.93186493730173,141.6281039454043,140.95306000113487,141.33962839841843,141.14510941551998,141.12411846173927,141.19631795119494,140.84613818814978,140.29922953806818,140.14069214556366,140.84084169846028,140.62939190119505,141.0443293498829,141.9890340124257,142.98081530816853,142.54642915120348,141.6471011680551,141.97361992578954,142.037028957624,141.48507672920823,142.1560569186695,141.85369657212868,142.42388457525522,141.8916258891113,141.05068937595934,141.85595007473603,141.95432713534683,141.87233539950103,141.11002891277894,140.1863441518508,139.95136915519834,138.9562542308122,138.90930012986064,139.45075159985572,139.88503838982433,139.7646191851236,139.34177717985585,139.72687962278724,139.4701001709327,139.05477867648005,138.86187441274524,138.80043058563024,138.26340926392004,139.07396587962285,139.90597210265696,139.42686959775165,140.2112017441541,139.38600370893255,139.60405903775245,139.52950687147677,139.24185972940177,139.93526630057022,140.0416205180809,140.4059704625979,140.5095404922031,139.9885080321692,139.9017104478553,138.94288881495595,138.8529646252282,139.2868982339278,139.6327906944789,140.49021643446758,141.20738574536517,140.40868670633063,140.6961142141372,139.98893059650436,139.0430432348512,139.68905804259703,139.1058385008946,138.20406449167058,138.71661392226815,138.9049440752715,137.96924598002806,137.7544558136724,137.3494973485358,138.00862343329936,137.4311136258766,137.2422165875323,137.89638251671568,137.56046870024875,137.54536681994796,138.30141560733318,137.45655773067847,137.50785091193393,137.4269796097651,137.54825094807893,138.490383294411,138.54896183358505,138.4854286746122,139.19371884549037,138.78002497553825,139.50460872193798,140.31053435616195,141.08956839097664,140.87150489911437,141.33310064161196,142.11972824903205,142.12025622604415,141.9215734335594,142.68900997703895,142.29776683682576,142.23698685783893,142.10005478328094,141.85923686949536,142.03958502970636,141.1600241768174,141.10732062347233,141.07518448214978,141.96498815668747,141.16441593086347,140.3526081033051,140.98169182334095,140.83190860878676,140.4817001046613,141.21862319717184,141.67757671000436,141.1277923239395,141.15035045333207,141.24243717687204,141.03801098372787,141.80393777787685,142.56893468135968,141.81926742801443,142.0144967790693,141.3788698995486,141.89022916834801,141.56600586464629,142.04597532143816,141.32296106265858,140.9802788668312,141.41816631145775,141.9429410584271,141.14601526223123,140.91609361115843,140.49140785168856,140.07434051437303,140.98956170491874,140.06296814791858,140.41435511643067,141.15613888157532,141.0273110200651,140.78289985563606,140.21869466407225,139.7320031458512,139.68403509119526,139.7766767195426,138.86314397118986,139.68082608748227,140.14385996432975,140.7662620418705,141.21000289311633,141.30888592405245,142.1483348798938,141.24135531159118,141.24434039974585,140.82591771474108,141.7267425605096,141.2036767406389,140.4161660107784,140.34824646031484,139.86434941738844,140.02845862554386,139.68840756081045,138.71713528223336,139.34158015809953,139.90850112773478,139.10882844915614,139.1097427783534,139.6113269496709,140.37676913663745,139.74118463369086,138.95038160635158,138.5381292346865,138.8693053103052,139.48010320635512,140.28896788228303,139.98688923707232,140.64923103759065,139.72907058056444,139.51332451263443,140.024911145214,140.4684219462797,140.86328751314431,140.29730100929737,140.88062472920865,141.6170751331374,141.5595688186586,140.95837746653706,140.5735760810785,140.4777442328632,141.22220291942358,141.98062706552446,142.7114255479537,141.8482069913298,142.51069006044418,141.99081799341366,142.41902895318344,143.25864013517275,142.8098194906488,142.68283584341407,142.336678983178,141.96323520084843,141.61389792105183,141.9026375245303,141.54834318952635,140.9431822905317,141.08950694836676,141.35505776340142,141.87972752051428,142.60815739631653,141.6161413891241,142.39888125751168,142.24676308222115,143.14465901674703,143.76612085243687,142.8394370637834,143.38995754159987,144.07248377706856,144.88330262433738,144.4091822290793,144.49851931352168,143.79630674002692,144.32386109232903,143.39347075065598,142.3950441298075,141.82701757969335,142.33714345097542,143.2217836896889,142.23784628137946,141.89330259198323,142.84039483685046,143.63759220624343,144.24306585313752,144.5994076319039,143.63662593066692,143.9790967144072,143.47644014423713,143.894184357021,143.65775624429807,143.3021805244498,143.47429382568225,144.0665463586338,143.15262595750391,143.64955179067329,142.65286643011495,143.21562330517918,142.60838485974818,143.3800481436774,144.02927320962772,144.37063328083605,144.87544637406245,145.663160844706,146.15385365486145,147.1385400556028,146.9199105044827,145.93486449541524,145.28797821467742,145.8642655215226,145.5802055587992,146.27318243449554,147.04064229037613,146.68916887789965,147.31661259802058,147.44369806721807,147.53617300093174,147.50630235066637,148.3287873393856,147.54705944564193,148.49924871418625,148.37703138915822,147.61532209720463,147.55513291805983,147.1160824126564,146.15208225836977,146.40621320856735,146.9042651676573,147.40912179416046,147.68512497562915,148.51768748974428,148.69860754162073,148.1406376035884,147.2660342026502,147.438640890643,148.09035588614643,147.12253995938227,147.33154441881925,148.1826314390637,147.38661978021264,148.10712659079581,148.51161853550002,148.26729286788031,148.54779803473502,149.26319003943354,148.7186881545931,148.62823805818334,148.5502346851863,149.3458508742042,148.80640122806653,147.85545666934922,147.94433752959594,147.99891511537135,147.60862194746733,147.03314297553152,147.3393111829646,147.11255060182884,146.82368881395087,146.77632717369124,147.26352206943557,146.73049600282684,145.8188656750135,146.5459167426452,146.9372758390382,147.76192115293816,148.61061310349032,148.81487616105005,149.53784076264128,149.21564641874284,149.10971114132553,149.8294087992981,150.53022943250835,150.85598783846945,150.24120663525537,150.64642711915076,150.8717949888669,150.6793612795882,151.5091287684627,152.04741589166224,151.23412806447595,151.5264143999666,151.66533771017566,151.42889018170536,151.06864881003276,151.22820228617638,152.1641381229274,151.19281552312896,151.1654938068241,151.37320890277624,151.4599669505842,151.1927902875468,150.61818581540138,150.02108493074775,150.95302454475313,151.74841146171093,152.1167757473886,151.79854789422825,151.1747264638543,152.01028906879947,152.78136922651902,152.51630557095632,153.39305217936635,152.64423569617793,152.758929268457,152.57640998018906,153.2250032518059,153.83773340657353,153.14788005081937,152.80671391636133,153.186662402004,153.61371448356658,154.4996849647723,154.27704732446,154.48739110538736,155.08489572117105,154.5987330423668,154.8163126432337,154.69892050605267,155.00567144621164,155.4710768405348,156.33834464242682,156.51618868578225,156.16343019763008,155.2427937905304,154.75485959416255,155.00542580522597,155.0837605097331,155.9664780041203,155.12957431469113,154.96179592050612,154.85958720883355,155.40098868031055,155.95236654160544,156.0734988125041,155.63488434441388,155.3573391875252,155.44013827759773,156.39006952475756,156.2865965985693,155.607326684054,155.03390165697783,154.80965646496043,155.28446234669536,154.9983049579896,155.33340870821849,155.58914845529944,156.35300475917757,155.4328637914732,156.2103668116033,156.09710328932852,156.09233592357486,155.32934556156397,155.8011843743734,156.07078845892102,156.47782941861078,156.4583071502857,156.02270511211827,155.12614308297634,155.46698639634997,156.43959395308048,155.91354226181284,155.16434196569026,154.47990100272,154.4099952899851,154.3106789398007,154.08901622332633,153.24065650021657,153.3081691833213,152.62858913559467,153.0358202829957,152.98510365840048,153.82138977805153,153.63835571799427,152.701604871545,151.88925395533442,152.44304239284247,153.13017831696197,153.64935523550957,153.25239830696955,153.11582497600466,152.8091001585126,152.0716386558488,152.37037720624357,153.2964827399701,154.1337715666741,154.08110549626872,154.6559694716707,154.48557143798098,154.6796265509911,154.386469328776,154.03915163083002,153.49000586057082,154.41035936772823,153.51514700707048,153.88873787783086,154.20838472945616,153.8913077604957,154.73156097857282,153.83851912990212,154.09056848473847,154.30494217434898,154.4662752924487,155.44895623112097,156.23834813386202,155.87726957537234,155.7727756551467,156.71357557037845,156.52096070349216,156.85438269050792,157.3547360561788,158.34091724082828,157.77382833044976,157.82781575480476,156.91329462872818,155.97556442627683,156.6675218101591,157.10229824855924,157.48892101319507,157.4995694179088,157.40991308167577,157.68632726557553,158.20369159337133,158.5686066504568,158.44242806406692,158.870412515942,158.40122816618532,159.3856891761534,158.81518689962104,158.8957498432137,159.6885515875183,159.27686961414292,158.3694390906021,157.96845175419003,158.20908770849928,158.59955912083387,159.32125437492505,160.0440938496031,160.91148716025054,161.64190050493926,161.48486383538693,161.30021778075024,160.99030352989212,161.04414995061234,160.06843394227326,159.6072333860211,160.57905241567641,159.6054945923388,159.82721802964807,158.8399176071398,159.2618955844082,160.00201729359105,160.22918424010277,160.99516417598352,161.53898210357875,161.32021176628768,160.51938687777147,160.548546155449,161.16912063816562,161.1877896413207,161.86937656113878,161.28777580847964,161.2073915535584,161.25446025747806,161.2056598784402,160.85589996585622,161.08921849634498,161.798149951268,162.5455702333711,162.29727859422565,162.5309475674294,163.2106582680717,163.7538223452866,163.55332290148363,163.7722657979466,163.435864913743,164.40873058140278,164.11558749200776,164.95925881527364,164.96216297568753,165.17445783503354,164.6279977876693,164.08817896433175,163.9499970297329,163.94691151566803,164.45157161122188,163.59980304399505,164.28495266940445,163.71820712415501,163.28659826051444,163.58182414295152,163.12766171060503,163.3769984417595,164.1879147812724,163.99517004331574,163.05760680278763,162.21029356587678,162.3291135756299,162.27468026056886,162.61715113325045,162.99888476449996,163.22437957953662,162.68011784553528,162.52741818502545,162.9378148415126,163.06690591434017,162.43429575907066,161.51782036479563,161.09061999525875,161.3225817908533,160.61572773288935,161.37103444244713,160.94872942799702,161.19570798659697,160.2191014471464,160.00967057142407,159.08666634000838,158.48471128568053,157.6163958273828,158.20182926440611,158.80094521678984,159.64414602098987,159.4841548600234,159.1398246283643,158.53157183527946,158.87523245578632,158.18637231225148,158.42180037591606,158.9205484651029,159.75155218830332,159.3473415975459,159.19946963246912,158.3182129021734,158.4757075761445,158.24075093958527,157.67895235680044,157.91204336378723,157.16079477965832,156.37610364239663,157.32212964817882,157.47278301417828,156.70193839957938,157.32947642169893,157.5187694001943,158.21517852321267,157.71635533776134,157.92725000157952,157.1323732607998,157.92564348131418,158.00662587815896,158.62625081278384,157.85859768697992,158.32504110783339,157.52489023748785,157.58556078234687,158.37669245665893,158.48196875769645,158.32627264689654,158.80436385655776,159.55938910972327,159.66858935821801,159.4641767735593,160.19018628681079,160.82309286808595,160.91160878771916,160.50168856838718,160.76571643399075,161.46580281993374,162.13459310866892,162.05068876454607,162.77346896287054,162.97067488497123,163.25874631665647,163.84132663160563,164.82316766120493,164.23128624400124,163.47564900107682,163.16172528173774,162.46742343017831,163.4241312853992,163.32814177684486,162.91829150449485,163.1194923100993,163.21092488616705,163.4337568008341,162.5398327712901,161.5942210657522,160.81391226453707,160.39379327977076,161.3706432050094,162.19346104143187,161.63988021062687,161.9245564560406,161.93445710325614,161.78623527335003,162.00992460455745,161.0894346977584,161.45440023299307,162.32193508418277,162.04570012399927,162.76896811276674,162.37172208027914,162.60555036412552,162.87671639723703,162.7609101422131,163.2262658532709,162.67556517198682,162.1170331677422,162.61822705669329,161.99325497122481,161.71693699620664,161.1831124476157,161.10488145705312,161.09729695972055,160.7108887010254,160.327667593956,160.1769243576564,160.85865485901013,160.495038672816,160.3006450026296,160.05981866503134,159.08065277384594,158.85132237058133,158.76150628225878,157.85996765224263,157.28541449643672,156.90945665352046,157.78685858752578,157.83157596644014,157.5903539187275,156.63859280757606,157.52004795894027,158.51896455697715,158.13107674522325,158.74224984366447,158.10285283159465,157.90507618617266,158.5537420604378,157.79078407911584,158.37451427197084,159.0747557026334,159.33088343404233,159.17495004227385,159.83817496756092,160.73250549379736,159.83606421481818,160.6773759298958,160.200046017766,161.16556833824143,160.80975708458573,160.34011897584423,159.71432190109044,159.122435642872,160.0183908008039,160.64996971189976,159.70541803259403,159.3888184237294,159.02279160171747,159.39831581246108,160.13090453436598,159.16300907405093,158.58029142580926,157.60354255652055,158.49395867576823,158.82758316257969,159.03918294794858,159.81751855276525,159.837215826381,159.4914554967545,159.55596588505432,159.76653072377667,159.4399182810448,158.89820973854512,158.26061567896977,157.57635889900848,158.4452294916846,157.89600806403905,158.4822645825334,158.60302912071347,158.3927339548245,157.69766679452732,158.13572393357754,158.89573161117733,159.87826796155423,160.58806166006252,159.98159843543544,160.2588462876156,160.12918778602034,160.5114380121231,161.40462948568165,162.19150285422802,161.43401322280988,161.22651842841879,162.0044568385929,161.79796006530523,161.1052882699296,160.15239418810233,160.86790681863204,160.87441337155178,161.61299764644355,161.62549650436267,161.79176199343055,161.77481869747862,162.67147207260132,163.19865928171203,163.33296670252457,163.3856941233389,162.75540371332318,163.5792227042839,164.35606101201847,164.17650079960003,163.4974473058246,163.8502120920457,163.82523165922612,164.23049130337313,163.89605734776706,163.7744423765689,162.97255511255935,163.42247724812478,163.6518591111526,163.37469823099673,164.13820979557931,164.99506042292342,164.9544278839603,164.91481534810737,164.798857239075,165.15683566080406,164.88233877066523,165.03505344316363,164.25785525189713,164.09276131680235,163.96237318217754,163.23759630182758,164.1991825643927,164.0774142802693,163.82658854080364,163.05490768514574,163.10034868400544,162.8687037169002,163.09342262893915,162.96584090730175,162.7826250535436,162.98085146350786,163.81415288662538,163.3158160140738,162.38870826829225,162.3852311852388,163.16371414624155,162.96745929820463,163.11510134581476,164.04547738144174,163.67372501222417,163.3691695393063,163.3167182984762,162.97283105319366,162.0791786806658,161.85931518580765,162.01307651866227,161.21921681100503,161.6993229323998,162.45257935859263,162.18612115830183,161.29496557917446,160.45353822829202,161.10128907114267,162.0858317380771,162.38184931734577,161.7101723025553,162.41945437761024,162.77248413860798,162.02773822983727,162.23457531398162,161.4418094935827,161.70525336824358,161.941729655955,161.25626957882196,160.45990882301703,160.15325674554333,160.40903420140967,161.17457828531042,160.2826355015859,159.73336299089715,159.15410417411476,158.74469389021397,158.41615561582148,158.481759541668,159.2708463179879,159.1646114573814,159.0105776595883,159.44199497019872,158.7431434993632,158.01191251026466,158.79919876065105,158.41171976318583,157.4417723249644,157.58887822786346,157.19511294737458,156.6486852853559,155.7696372140199,155.3456148924306,155.35604110639542,155.89685868937522,155.72798551432788,154.98524326179177,154.9131783931516,155.0811101309955,154.99515098892152,155.63680711993948,155.01361229876056,155.42786525888368,155.05962515203282,154.43379519646987,153.87888713739812,153.8328045932576,154.64333863044158,154.8261539307423,154.7279273569584,155.07699128007516,155.5668803229928,155.57326215412468,155.19510638481006,156.1428062710911,155.78837806824595,156.1477296105586,155.7022844525054,156.24703683517873,157.10243045678362,157.8038344285451,158.60999752674252,158.11857213266194,158.3427625540644,157.39121694350615,156.50805528787896,155.98492715414613,156.93217003997415,156.02369040017948,155.30823241639882,154.6562392152846,155.64732568571344,154.82572729559615,154.211113975849,154.75010441849008,154.598936162889,155.05694045079872,154.6590378060937,153.82710984302685,154.49774847272784,154.5995895708911,154.2476502386853,154.87977445870638,154.37043198011816,155.267240724992,155.25204698555171,154.3954385635443,154.61598370131105,154.4762310688384,154.76733667310327,155.34509635018185,155.47672042809427,155.43711742851883,155.86883480055258,156.84663800057024,156.70977732958272,156.40232686977834,156.06797153130174,156.00104846945032,156.7342073568143,156.96555641666055,157.22208852972835,158.00987007841468,157.54840322537348,157.89783760439605,158.43034614017233,158.41419480601326,158.59392259921879,158.23833116330206,157.50743659585714,158.026036713738,157.23805764550343,156.78791243536398,157.30018674442545,157.22943860897794,157.9651436842978,158.35217265039682,157.5709537183866,156.65287259593606,156.21043631108478,156.47015267191455,157.40788589790463,157.1640115249902,157.09602663014084,156.66419197199866,156.4456338318996,156.4224295867607,156.59781779255718,157.37272243620828,157.7524906275794,157.81632396997884,156.92361842561513,156.40366371814162,155.9885470434092,156.06090606516227,156.5113917789422,155.70265423180535,155.6937732528895,154.73597272438928,155.4926718780771,155.66963781276718,156.34009232418612,156.15066081425175,157.0317007061094,157.25344288907945,158.16222865879536,159.10700889024884,158.5514794108458,159.43493674183264,158.52104577608407,157.86209193477407,158.5277934949845,159.10424247942865,158.97560900077224,158.33274266775697,157.57277711620554,156.94213719759136,156.52214028406888,155.62741221487522,155.57815937045962,154.58115255925804,155.55193189857528,155.9061365928501,156.66398376133293,156.31341311940923,156.1919412696734,156.76065407460555,157.32594470400363,157.29518458759412,156.68785357661545,157.44583409791812,158.35942635452375,158.1744236117229,159.01398837333545,158.34860752196983,158.1274171145633,157.38591536181048,157.63245902908966,158.40775952441618,158.5228963252157,158.6174211744219,158.63134022755548,158.78140403423458,158.0717222657986,158.68548085726798,159.07376867951825,158.5118039068766,157.99728045752272,157.4629759946838,156.607541938778,157.0889432844706,157.85151782631874,158.19442384969443,158.02212037937716,157.3061067406088,156.79102713381872,156.1554729733616,156.76411019265652,157.36261231312528,156.76547591621056,155.84414773341268,156.09598595136777,155.3384791132994,154.90259263571352,153.9780801171437,154.30285275680944,155.2731492598541,154.80425512604415,154.08003335958347,154.9491852815263,155.32292358204722,155.9122737175785,155.95601290138438,155.2414667219855,155.3943192306906,155.82072583772242,156.69483180437237,156.01809559576213,156.87339943181723,156.44338601548225,156.17492273636162,156.31722680386156,156.3928205179982,156.88669256074354,155.95529759163037,156.243380675558,155.76183279184625,155.17278512753546,154.36137519497424,155.29965135641396,155.59130595391616,155.44541003135964,155.67348643857986,154.93398574972525,155.88311523618177,155.12897992879152,154.13389254407957,153.81148516666144,153.17369091603905,152.80155713576823,153.13112128339708,152.882282233797,153.6527573452331,154.50997672928497,155.0872656777501,154.6207831390202,153.93905346095562,154.6486099846661,154.03674568375573,154.60515066515654,153.9983816104941,153.2994991657324,153.18992518354207,153.01335172727704,153.07908696169034,153.85529953148216,153.80541362660006,153.4519059062004,153.4848073166795,154.28516244422644,154.52153158932924,153.76037013018504,154.03586015896872,153.5878411512822,154.4712177827023,154.99964020214975,154.95169915957376,154.6824087225832,155.0794604998082,155.02742876671255,155.69536864431575,155.90842816466466,155.56709910416976,155.51545890141279,155.83623905619606,156.729929164052,156.12201501615345,157.0470841997303,157.37605240242556,156.9070370006375,157.1380173061043,156.2967163301073,156.32046682108194,155.61513227084652,155.37557195918635,155.70784761477262,156.6743673416786,157.46606141282246,156.73104658070952,156.80859772395343,157.70615137880668,158.49433933291584,159.09092825558037,158.68334136763588,158.89880299614742,158.42766441497952,158.68301439657807,158.28852738672867,158.25937333330512,158.58590245479718,157.58738168515265,156.71344571234658,157.26692940946668,157.76617383537814,157.1957245399244,158.05617998959497,158.42284393357113,157.99142124177888,158.83794436324388,158.9260813659057,158.22809326695278,158.15408585593104,157.60473081003875,157.04328883532435,157.3065346791409,157.39639824954793,157.92538877297193,158.3623407203704,158.18528531258926,158.29532668553293,158.39713242882863,158.29698705580086,157.9972825734876,158.10013237548992,157.49475514609367,156.95078708743677,157.69752250192687,157.88084573950619,158.80168867763132,159.72463449137285,160.13467754377052,160.41686576465145,160.55621931003407,161.40686503890902,162.08379630511627,162.98609914351255,163.41505422396585,162.6417723451741,163.04962922632694,163.11882160790265,163.02014822280034,162.22318918351084,162.40059825545177,161.81001786934212,161.7703559086658,162.05375513294712,161.94628069037572,161.92436395864934,161.94039630843326,162.63199856691062,163.55315706692636,164.2176770386286,164.38307021185756,165.16169629385695,165.17225337494165,166.14071787381545,166.94772382313386,166.82587731070817,166.70154154999182,166.36526520177722,166.6944503323175,166.19577573845163,167.1411833949387,167.25200447626412,167.6588935451582,168.27199375908822,169.0603705169633,168.63450037129223,167.74945116229355,167.74372053705156,168.47714912565425,167.87146211508662,167.45876857079566,167.0239375634119,166.63979920838028,166.2467623129487,165.8866819869727,165.93288061162457,166.38694109069183,166.70937744015828,166.47082877578214,165.53407460823655,165.02392789395526,164.86442977562547,163.88479130156338,163.67046258831397,164.18086367100477,164.28531970921904,164.5691342339851,164.00849864678457,164.63718306971714,165.01399358035997,164.8274803669192,164.57846534997225,165.45244918111712,165.01929265866056,164.84178961161524,164.6155014866963,164.5170130431652,163.77342800423503,164.30854108417407,163.8197581069544,164.01238429779187,164.6357944542542,165.23991326615214,166.19509494584054,165.38315897574648,165.32376967184246,165.23474042117596,165.16294222697616,164.328541431576,164.88143101567402,165.5190631262958,164.89310679677874,164.2356062824838,164.23079910734668,163.75207774853334,162.7631534524262,162.56022337917238,162.57648358633742,161.79989163996652,161.204285455402,161.70615925919265,162.48963829083368,163.46653365530074,162.95089841075242,162.25952916266397,163.1112246150151,163.4942128425464,163.1984830768779,163.87069365847856,163.8593511134386,164.14107429934666,164.80160741973668,164.30029968963936,164.30852433247492,163.48151192767546,163.92382626701146,163.75640370650217,163.65422391798347,163.6671225684695,162.6881686784327,162.27023237664253,162.91482269437984,162.83291208930314,162.53706242376938,162.75322066107765,162.8573003434576,163.20106371492147,163.2791919405572,162.98316654842347,162.88776517892256,162.42797608766705,162.88841756945476,162.25070095807314,162.17347753746435,162.0271793701686,162.0143994265236,161.37407806608826,160.70851909043267,161.10713795991614,161.98364091757685,161.41126934206113,161.89710097853094,161.25043090246618,161.0282454150729,160.26825002906844,159.55911830021068,158.89981982531026,158.07549968687817,157.24493909813464,156.57523553073406,156.5246558045037,156.51538893021643,156.2328725545667,156.4133378630504,156.25289251329377,157.22958007222041,156.37841518688947,155.52043915493414,154.76541579933837,154.30465065361932,153.54352122591808,154.15343527542427,154.06141954520717,154.76142421597615,155.48102182988077,155.55376552138478,155.72125048283488,156.58669576980174,155.66129238530993,155.51246564555913,154.77637999132276,155.34554703254253,155.84712020680308,155.53136514639482,154.6798962247558,155.56382762733847,155.04315984947607,155.60253497958183,155.23210939904675,154.3779352759011,153.99854519451037,154.83977885590866,154.75483468500897,154.8912389925681,155.58903968008235,154.91702337563038,155.55171114532277,156.39469341840595,157.35092291608453,157.41817145235837,157.29678042512387,156.56042005075142,156.39128896128386,156.69492508238181,156.2766854376532,155.72456479864195,155.74587424471974,156.52880882751197,155.63367196545005,155.23970090039074,156.00401817588136,156.49403726682067,157.0413981215097,157.45129897259176,157.8581798011437,157.33052941644564,156.5103432731703,156.38693867623806,157.15579590434209,157.6116961124353,157.210362855345,156.67868252145126,156.7670219168067,157.0321334558539,156.5991069888696,157.13993738312274,156.84999985806644,156.8454917552881,157.44828070048243,156.48355730157346,157.33249705377966,157.2005287897773,156.99009688058868,156.41502457764,155.88665329292417,156.70975068537518,156.71868253406137,156.34358967700973,156.81640750635415,156.08876562584192,156.5663412916474,156.4550611344166,156.07177606178448,155.133046541363,155.96278763515875,156.50147398049012,156.94527011504397,156.87572423694655,156.12221613479778,155.83574358932674,156.52814631070942,155.6639328780584,155.07554607233033,154.31473939074203,154.9788395301439,154.2131549110636,155.0390626708977,156.00584525661543,156.68579791812226,157.39263237500563,158.17632553866133,157.5813319515437,157.63796795671806,156.8420039890334,157.73436686769128,156.89377715298906,155.918778935913,156.2080711913295,156.19401777768508,156.8862711424008,157.52732773451135,157.46155470749363,158.00954543286934,158.37667091749609,157.39752079546452,157.39602820808068,156.85071194032207,157.1373641807586,156.72314020898193,157.45615643495694,157.1705794245936,156.6633206680417,155.7863606433384,156.0980203608051,156.40360350487754,155.59415435185656,155.78403245424852,155.7584438836202,155.4868259811774,155.04043724713847,155.3715680576861,155.04981659073383,154.8463570177555,155.40589540218934,155.57070203777403,154.9605988636613,155.66951181180775,155.80564489541575,155.131561989896,156.1024606754072,156.02531811082736,156.18068940239027,155.5972828506492,155.7684193435125,156.20488417288288,156.72595877712592,156.78810879820958,157.10252174036577,156.37496591405943,155.42590781254694,155.58589927200228,156.16565848747268,156.9725447590463,157.75761298602447,157.4988972907886,157.31053074076772,156.651643098332,157.31403525546193,157.65251490520313,157.1511007733643,156.76267876569182,156.50690501276404,156.06545522855595,155.1862014355138,155.83665634226054,156.12824258115143,155.13056468963623,154.96910121291876,154.13578248443082,153.68053188407794,154.5553016536869,154.24728041468188,155.02567238966003,154.09132674429566,153.29057587403804,153.11056788545102,153.2318345499225,153.77154900552705,153.82580392854288,153.7982323556207,153.3066377346404,152.32443779427558,153.03988892724738,152.27056282339618,151.61289939051494,152.2796146622859,152.18196885334328,152.1389088332653,152.75565004069358,153.3030521972105,153.48032397124916,153.12678945576772,152.69472857331857,152.87103816866875,153.11741492943838,152.6051916750148,153.08858892135322,153.43623979762197,154.1022260868922,153.47389964014292,153.0511117298156,152.32183185592294,151.67154307151213,151.06108385231346,150.33582021063194,151.32504124147817,151.7778925895691,152.6526496275328,153.54971086746082,153.38697203621268,153.94075928721577,154.16668574884534,153.46471172058955,154.00950277782977,154.92810797085986,154.02518923860043,153.80521724978462,154.5807473617606,154.1737126042135,153.49974898342043,153.68800353538245,152.71491068555042,153.46831026952714,153.31761763058603,152.4267499949783,152.1525926347822,151.39833052270114,151.60919813765213,151.18666923744604,150.63677332550287,151.63528438704088,151.58601537672803,152.29502947162837,152.91733349813148,153.14261176856235,153.74847182864323,153.47582559799775,153.5050592198968,153.39683876605704,153.3256714567542,152.86004175199196,151.87591915903613,151.49723760364577,152.38742291694507,152.34296740125865,152.97301644366235,153.18458711868152,152.5510605731979,152.66674229037017,153.4557371493429,152.95903592091054,153.54455276438966,153.2595771602355,152.35989748546854,152.7952574370429,152.825755557511,152.04166477546096,151.4754131413065,150.87586257094517,150.2790263975039,150.68721154658124,150.2315775300376,149.4884500610642,149.97910917084664,150.38915141066536,149.63063780916855,149.9401697795838,149.49822603352368,150.2578699705191,151.25413285428658,151.3290677848272,152.2617141129449,152.71769781969488,152.70490669459105,153.51815343927592,153.33514444017783,153.70033574244007,153.25091546960175,154.10562676517293,154.37934164889157,154.95244903303683,154.03628394939005,154.55244178976864,155.48564429022372,155.36495497869328,154.6106864833273,154.65527978911996,154.2642990569584,155.04960923921317,156.04529938381165,156.14761309931055,156.71774042770267,156.6919975001365,157.3555635297671,156.8431123686023,157.04564329981804,157.7899573650211,158.6301937182434,159.0451114345342,158.94518087245524,159.5948484414257,158.5948888361454,158.34791543893516,157.6997312628664,157.73122382862493,157.7666753558442,157.06120742624626,157.86957794148475,156.96208368288353,156.52995757153258,157.11737397499382,157.82843939960003,157.47690710099414,157.40720280399546,156.75497064227238,157.02667512046173,156.21360824769363,156.50699460599571,155.99515204597265,155.33956906292588,155.0940838973038,155.3310642633587,154.9480513674207,154.33630928164348,154.64250121219084,155.0568431764841,154.61100583709776,154.85305960662663,154.59453330701217,154.74949993146583,155.09827432967722,155.55710166087374,156.26825923891738,157.06965027516708,157.4932288150303,156.93223172752187,156.37949764402583,156.86224046256393,157.77693678671494,156.8073954116553,155.83985610539094,155.07396269310266,155.48113653529435,155.13880462525412,154.74882721481845,154.25254456605762,154.91777164302766,154.1849589534104,153.658725744579,153.37154188845307,152.48292794730514,151.94872134784237,152.00856190593913,151.49344918876886,152.15018671611324,152.92879449622706,152.45790865272284,151.85842638462782,151.30872960109264,150.36008384963498,150.65853768307716,149.78501014225185,149.0026205163449,149.565743080806,148.62882899865508,148.06860185042024,148.25860554538667,147.55607598135248,147.8680902114138,148.17956197075546,148.9954824964516,149.13140177866444,149.41106741316617,149.34652616782114,149.0355398398824,148.5976672130637,147.78380535403267,147.1203923043795,146.91664123069495,147.5252048643306,147.18941214401275,147.9621961582452,148.25891477102414,149.02480090642348,149.62951546628028,150.20485777873546,150.06441766954958,149.38261692924425,149.70139115583152,149.37999402638525,148.9224848500453,149.35696642380208,149.69925235165283,149.82001079432666,150.37091802991927,150.7624896443449,150.81080485880375,151.64055576967075,151.2466016546823,151.70803266437724,152.62633012700826,152.9079713379033,151.98562711384147,152.31679447367787,152.24153409758583,151.76182600436732,152.2478878153488,152.01069402694702,151.22604086622596,151.07591690681875,151.0805432512425,151.70099751790985,152.13623355561867,152.67569055454805,152.71232737787068,151.77014514105394,152.12138989986852,152.0528895687312,151.83921633893624,151.10935524711385,150.60539819160476,150.2077097981237,149.77269134530798,149.7160226306878,149.74088853783906,149.71787447156385,150.50125568453223,151.1318777152337,150.41989625478163,151.23884936235845,151.10225496953353,151.01244924869388,151.08734646532685,151.28949557384476,151.4788595889695,150.90143269207329,151.213880921714,151.59640437550843,152.15928276861086,152.05589536065236,152.02097874414176,151.93328376859426,151.60777417384088,151.42313702544197,151.1622398388572,152.00637208856642,151.21028018184006,151.0561479832977,151.13461875962093,150.1432368438691,150.2776680472307,149.59310293523595,150.5537722306326,150.9485431597568,151.04701084736735,151.08242099359632,150.50671385973692,150.49584257602692,150.6493828217499,150.50738077051938,149.87425290141255,148.92952242773026,149.76914428640157,149.13473375421017,148.74643237004057,148.5925507582724,148.07968442328274,148.51314404932782,147.68978604953736,147.71236083470285,147.4841993530281,147.89692697348073,148.08611896494403,147.20174896670505,146.77815555641428,146.31895731389523,146.86834634607658,147.39347373554483,146.50493271509185,146.76298657478765,146.34033346595243,146.61707238061354,146.50155776785687,146.60259429411963,147.25739666447043,146.38852825853974,145.46960096759722,146.4660930740647,146.18035341612995,145.6040396555327,146.13154644099995,147.01605328032747,147.39874236145988,148.03776051523164,149.00442133005708,149.74522585095838,149.98089850321412,150.46174708660692,150.461010646075,149.88631980819628,149.06330655515194,148.47722392622381,149.47283583739772,149.426982474979,150.36831707600504,150.7620075615123,150.94841895950958,150.41893944423646,149.80115694273263,150.37117186794057,150.41479289950803,149.49950521625578,150.38488992443308,149.7079313439317,150.61206276062876,150.61585470149294,149.7979747937061,149.05187819246203,148.8024692647159,147.81332139484584,147.09127451758832,147.09873252129182,147.66117332037538,147.42659509275109,148.36316450405866,148.57372143585235,149.25038407137617,149.66176788741723,149.2888172068633,149.50494477991015,149.26693849870935,148.74451250908896,148.87383465468884,148.85004998231307,149.57446338701993,149.71391359623522,149.10942147485912,149.07640330912545,148.52364919055253,149.07413563225418,148.4028361882083,147.8107208814472,147.66602265043184,147.29532217653468,147.14178116898984,147.3319712956436,148.17561509972438,148.37383525213227,148.25450373906642,147.89926022663713,147.4037022604607,146.94159297598526,146.48811793373898,147.27037568297237,147.67318196082488,148.36804437683895,147.99767623795196,147.6711744768545,147.21181292738765,148.104331437964,147.59608490252867,147.70945925684646,147.85126025602221,147.4816315532662,148.17326539522037,149.10923799173906,149.73730465583503,150.44324431428686,150.59930280782282,151.3226639511995,150.91337532456964,151.34344965126365,150.87397904042155,151.483807568904,152.28423075424507,153.03431573696434,153.22694545937702,152.7720635039732,152.43938369117677,152.90698990644887,152.56683796131983,153.33187484368682,153.5757642928511,152.75103553943336,153.53132663993165,152.9666730784811,153.20765815488994,152.67458810145035,153.1912304223515,152.78389146365225,152.7462740233168,153.22500588465482,152.64645092142746,153.11700210999697,153.10852765664458,152.8708455087617,152.14065260952339,151.62131415167823,152.43027401994914,151.7704064771533,152.0217909384519,152.0052218195051,151.33271578373387,151.82579283276573,150.8905072081834,151.15385962370783,151.4772745957598,151.51971507025883,151.40676184510812,150.67578901955858,150.14686830947176,150.79449371015653,151.6001744242385,152.0311663155444,151.30471360171214,151.88965140329674,152.69293248094618,153.5985736255534,152.85736285569146,153.76728978054598,154.72923845611513,155.5376510117203,154.72478064708412,154.91594858840108,154.8964039585553,155.8515497338958,156.47056312765926,155.83119417587295,156.39095436176285,156.52935393247753,156.82237418927252,157.8177231713198,157.62647880148143,158.03459375118837,158.82131918240339,158.33057368779555,159.09896152606234,159.61837195418775,158.75988247431815,159.61667252425104,159.13956173090264,160.02974453521892,160.41255241027102,160.6018391503021,159.9622384281829,158.97382507892326,159.56889099255204,158.68880792194977,159.37023938866332,158.46685386821628,159.2968940893188,159.37791228154674,159.27980092726648,160.19072236306965,160.63392065186054,160.96479501621798,161.00855541741475,161.23077673790976,160.59787793643773,159.62494135368615,159.0748675824143,158.08871339866892,158.66654470702633,158.34499942418188,158.7960315500386,158.44448499986902,158.2718434529379,158.5416816137731,158.955378850922,159.2106646457687,160.08167900703847,159.47344267787412,159.39720720006153,159.78353055287153,160.52535803522915,160.51514651393518,160.7458982844837,160.69817533856258,161.0442464952357,161.87482446013018,162.45514375111088,161.49927767785266,161.39755519339815,161.55477146431804,161.7271192315966,161.91907782293856,162.8905435744673,162.3200947260484,162.84115333901718,163.77051905635744,164.12345603387803,164.30830388283357,163.876857124269,163.6586768720299,164.33622516365722,164.76169795030728,164.850699712988,165.39766853069887,165.971347251907,165.79023378388956,164.90383701119572,165.633610161487,165.12324873311445,165.5651076119393,164.79716308275238,164.525094919838,164.3552188440226,164.55794594064355,163.75619914149866,164.16515896422789,164.60123435780406,164.65955550037324,165.1902977307327,164.59676051698625,164.31354106916115,164.11075809411705,164.66376837762073,165.47026849910617,164.8098994428292,164.68920174939558,165.58944343868643,166.35098842484877,165.45402182778344,165.5223616613075,164.74689258495346,164.07504079537466,163.7023487649858,163.151789449621,162.62848641583696,162.1942156497389,161.9564547808841,162.56831268314272,163.32347922120243,163.48046613438055,164.44328885851428,164.36478190682828,163.75648376252502,162.96044203918427,162.3535653008148,162.88396319095045,163.5432099220343,163.462020651903,163.72674754075706,164.6318931770511,164.2754035112448,164.04301573429257,164.98805930046365,164.05636276956648,164.46692429482937,164.74384805979207,164.98854113416746,164.91010894393548,165.6118464828469,165.70644474728033,165.96115531167015,165.72476025531068,166.28660294692963,166.53806008817628,166.9014557939954,167.0542560564354,168.01814989186823,168.41593431308866,168.75877262745053,168.1704096486792,167.29186982708052,166.51315936725587,166.21741789625958,166.82371420692652,166.46595682250336,167.0745483431965,167.90928205754608,168.87513742875308,169.6038047336042,168.69468586565927,167.83862584270537,167.12295157136396,166.41724538011476,165.78587976051494,166.68351614894345,165.9430494904518,166.59617009432986,167.54027853393927,167.0462038568221,166.3979871547781,167.208769723773,166.45008575962856,165.51653520716354,165.07550264475867,164.6647841730155,163.8535867105238,163.88332605781034,164.45516054006293,165.20409428793937,165.95615185191855,166.77875099424273,167.53350525861606,166.56501958845183,167.27903181454167,166.8959026504308,166.9595373524353,167.12576495762914,166.903251118958,167.24116211384535,168.111079799477,168.17290366766974,168.92059189314023,167.9917374444194,167.60700236214325,168.53412880096585,168.09315186645836,168.4405634230934,168.46765093086287,167.6238207775168,168.1864249543287,168.41919781500474,168.20330264326185,168.87196093564853,169.62005343707278,170.35689253360033,170.18157860497013,169.6434096158482,170.12178479647264,169.70682438416407,170.02261909423396,170.1482256394811,169.6101150829345,168.81425647204742,169.3171664555557,170.2034269128926,170.57383563229814,171.15630292147398,170.82614239305258,170.77305250428617,170.15316193411127,170.37878591706976,170.70273786317557,170.72075658850372,171.27020463021472,171.56271512806416,171.44951522909105,170.78932192688808,171.29810419445857,170.98882763506845,171.6074916641228,171.7549746162258,171.1894069928676,171.51086504478008,170.54372262395918,170.3309561740607,170.56052772607654,171.13746424997225,170.50148989912122,169.52626061392948,169.0357311856933,169.30563866999,169.0770738068968,169.9618605133146,169.52652903459966,168.55469706561416,168.95321715902537,169.19395010638982,170.00057708704844,169.80064767505974,170.4260660596192,171.41926275240257,170.61321219196543,170.3174738427624,169.93031271919608,169.7630753084086,170.22635911824182,169.74029222875834,170.72807274525985,171.48454209091142,170.94025502121076,171.42304725479335,170.51777287386358,169.6867196368985,170.5556131536141,170.88649536902085,170.18303838279098,170.94791160756722,170.75867533544078,171.1517785899341,171.40876846713945,170.8676397530362,171.8362799556926,172.81250628689304,173.4657580689527,173.6797774597071,174.21910029556602,173.8200249201618,173.0308280121535,172.69007146405056,172.77683932660148,172.15686080558226,171.46134044835344,171.8087759828195,172.45525126019493,171.98992556519806,171.3069974957034,171.07971537439153,170.48843194264919,169.61482849158347,169.5311986329034,169.56811308907345,170.3177551580593,169.87901476584375,170.11187034007162,169.6690270267427,169.72253708867356,170.63165653683245,171.29987718211487,171.15715494006872,170.66066476516426,171.15947943227366,170.64462798973545,170.3436689111404,170.32276942580938,170.59650129359215,171.33346523344517,172.00463996687904,171.7180256145075,171.30122395139188,171.02629426540807,170.5167706203647,170.41497458750382,170.43138077296317,170.27777327178046,170.83071108115837,171.7302952585742,171.80307066068053,171.1554592838511,170.46479800948873,171.28365221293643,170.9715610705316,170.1083374870941,170.43500110926107,171.13868615916,171.1654033525847,171.7701676003635,171.6554469941184,171.79633114859462,171.3009399091825,171.2313160826452,171.35302010877058,171.31097854254767,170.3810326741077,171.04070920450613,171.90146722411737,172.13830216927454,171.62059410195798,171.69610175164416,172.13044494343922,171.5701848422177,171.9527890686877,171.2480706879869,170.6048404853791,170.36404427094385,170.98475909326226,171.662097487133,172.5489179044962,172.18196699768305,171.5071370312944,171.0075610638596,170.95053423987702,170.53143305983394,169.81900904141366,169.8334103245288,168.90563175547868,169.7229585237801,169.2709078504704,169.79234237549827,170.22923613199964,170.56139534385875,170.47357692802325,170.59738296782598,171.01195098878816,170.8836410776712,171.31638767011464,170.6819934491068,170.104917855002,169.9325791010633,169.55535587249324,168.61631053499877,168.2432438065298,168.49467092799023,168.23585042124614,168.39265023358166,167.8390388325788,168.26995847560465,167.4949445691891,168.31793784024194,168.84323017066345,168.06344193778932,168.74894953425974,167.8268136405386,168.65233474131674,169.5461339727044,168.80104840220883,169.0095532638952,168.15721602924168,167.60355280339718,168.57882627472281,168.92102630482987,169.72817422216758,169.0352014140226,168.03860466973856,168.02701089298353,167.254958526697,166.67089163558558,167.19570493744686,167.56609171070158,167.18787193112075,166.6652089911513,166.94572441419587,167.73478438751772,167.00180529477075,166.4749784884043,166.66747020091861,166.93279172899202,166.01799148879945,166.17884385911748,166.65448404243216,167.0061195208691,167.03599131433293,167.82880929950625,166.97048675408587,167.6147290384397,168.41761426487938,167.95198642322794,167.62792417034507,167.1603380558081,166.53036251477897,167.27975287707523,167.90245517948642,167.08973301108927,166.404116300866,167.09831668948755,166.77675838582218,166.6342409942299,166.49060862325132,167.10882044536993,167.6016244883649,166.79604895506054,165.9430217212066,166.23245736630633,166.84631482558325,167.21066186809912,166.8556817774661,166.950639877934,167.07908443920314,167.0115209640935,166.0161735038273,166.19363351678476,167.00134149799123,166.28618283336982,166.89337645564228,167.64004801912233,167.22635747818276,166.38453808706254,165.8998928964138,164.94764108676463,164.72210649773479,164.12088026385754,164.13981645414606,163.44919844064862,162.5326930419542,161.9097926565446,162.1985937380232,161.50627037556842,162.04397747386247,161.4797417144291,160.79626658046618,160.64155630255118,159.8589759171009,159.62890177126974,158.97743979096413,159.66980977263302,159.70490787550807,159.4661725354381,159.3910040971823,158.91635032603517,158.69302966957912,158.78204955812544,157.89905329281464,158.541293093469,159.32254139101133,159.11013702536002,159.33894600346684,158.92894510924816,159.3667283267714,159.00476117711514,158.9594385586679,159.40705808531493,160.19113645376638,160.34101687604561,160.69566367194057,160.96685776906088,161.86947532743216,162.24828170984983,161.72034634277225,161.5514740338549,161.73344195447862,161.53008034685627,162.08520041638985,161.48758605122566,161.02593887457624,161.44103008601815,161.66895422060043,162.62317245081067,162.40800700709224,161.85025417385623,162.54659832455218,162.47053709672764,161.82605156768113,162.3213217491284,162.44809025153518,162.38797243870795,163.32798026129603,164.11497707944363,164.52621361566707,164.74661137210205,163.86376058496535,163.11955072078854,162.87461336515844,163.57921159360558,164.5662587499246,164.69156152149662,164.4165394701995,164.74107296857983,164.79586855182424,165.40572564397007,166.40123655227944,166.03816470969468,166.08071318874136,165.3467987580225,165.02526355767623,165.93256118614227,166.5325822941959,166.45071755442768,166.95295407203957,167.3191737839952,167.04203268745914,167.7811028342694,167.04501316603273,167.73693096032366,166.73989170696586,166.64091434283182,167.29954471765086,166.98736835969612,167.23976599238813,166.81466355128214,167.4178784941323,167.65180550003424,167.43034555902705,166.53487718151882,167.17750989180058,166.76017872802913,167.1055681235157,167.9002868970856,167.3880894528702,167.46869854815304,168.46702528186142,169.39191013155505,170.07264223648235,170.38045552093536,169.7514504995197,169.5927295438014,169.9323444282636,170.5811244067736,170.72559551568702,170.23022309457883,170.2433425160125,169.497883701697,170.13636240409687,169.77904187096283,168.99347094120458,168.67560093384236,168.90511668473482,168.424243433401,168.2923248889856,167.44322690507397,166.8811544207856,166.13897017762065,165.91250859061256,166.81354867154732,166.17797379661351,165.62352551938966,165.16940055787563,165.58452386269346,164.59859312092885,165.04886804614216,165.8441310650669,164.95735447714105,164.3021203945391,164.0023562577553,164.49510979186743,164.99887373903766,165.3131035710685,164.49045043764636,164.20409678155556,164.55801610229537,164.20980045059696,163.5489054224454,163.00095580378547,162.16121449973434,161.2322078915313,160.60138404322788,160.22359929140657,160.77146835578606,160.7759326803498,161.56765607418492,161.44643981009722,160.46640553791076,160.75058041419834,161.188674449455,160.84178499458358,161.69838989665732,161.29438109137118,160.63808962516487,161.20892083551735,162.1898660552688,162.94442942226306,162.63122842088342,162.7645692853257,162.14815052878112,161.74861725000665,162.36367163900286,162.25877998722717,161.62656090036035,162.45854460028931,163.1095394915901,162.77941798232496,162.22245633602142,162.8588052666746,161.98783256066963,162.30549251567572,161.62264616554603,161.64758511073887,161.1400761604309,161.8801334053278,161.59758029226214,161.14688876550645,161.16366529744118,161.46783106215298,161.95191536610946,162.32868590205908,163.24728223262355,162.25205001048744,162.04159230412915,162.8913989388384,162.08736221119761,161.93134920718148,162.731100179255,162.01874197414145,161.59232535073534,162.2565190391615,161.5570623590611,160.79855430917814,160.17922034440562,159.2427691896446,159.45189131144434,159.29800448659807,159.60618878807873,159.33770900778472,158.7980975471437,159.6182365952991,160.2488282653503,159.94421425415203,160.78240364650264,159.79686890682206,159.3442061636597,160.20079498412088,159.2780631389469,159.99095377558842,159.34288285532966,159.88218614133075,160.4464139896445,159.60497898468748,160.27281958423555,160.8628567890264,160.3175367959775,159.61501845996827,158.872142967768,159.50216767331585,159.15105573879555,158.29878089996055,158.74918041704223,159.54559061909094,158.80609566206113,159.4970000530593,158.77609685668722,159.50394817162305,160.28219190239906,159.3492124392651,158.65840865997598,158.20532152801752,157.24105130927637,156.76254818495363,157.7340105441399,157.15885001281276,156.66222089761868,156.2103402693756,155.83227439923212,156.62201500078663,156.75373633671552,157.1791193895042,156.27706925245002,156.4832536536269,156.51867191959172,155.79635334666818,156.45340258534998,156.8856380111538,156.17386222584173,155.4669238748029,156.4042820353061,156.98294181283563,157.63125063944608,156.8110339497216,155.90234581707045,155.5490472423844,154.8546419297345,154.09300354635343,154.875552455429,155.7910695723258,155.84062779927626,155.01932663610205,155.04249988216907,155.66114440513775,156.00661594420671,155.6544638168998,156.53854756010696,155.80217869626358,155.38914597500116,155.99472610652447,155.53826788021252,155.49022052949294,155.46113302279264,156.19076500739902,156.51668956549838,157.17092601163313,156.8548484616913,156.93808408174664,156.83357230341062,157.645976817701,157.12662710202858,157.81724081141874,157.98437740281224,157.8038751394488,157.5013075438328,157.4932392188348,157.61198577238247,158.57086354168132,158.6809315532446,158.23508129501715,158.73470843723044,159.2870539710857,158.89234018232673,159.05025799386203,158.82833592733368,158.689222979825,158.0959135866724,158.66851021628827,158.11770603666082,157.7128990292549,158.30730924289674,157.68732933979481,157.37021021870896,158.06251461803913,157.88805991224945,156.93871531635523,156.03757272148505,155.46737019950524,154.66019056504592,155.17228580405936,154.84991023642942,154.3775584390387,154.3888664538972,153.6869655456394,154.05530353728682,153.85069471923634,154.39372339611873,153.99100251635537,154.99084657011554,154.3848569705151,153.4055028744042,152.40946796070784,152.26349233137444,152.44290912291035,153.26509263040498,152.26813854603097,151.87932429090142,152.6926320218481,152.08525859331712,153.07154653407633,152.73000140674412,153.19755283975974,153.3656318844296,154.11663304269314,154.29904923168942,153.5958516257815,153.98012468358502,153.51531072799116,152.55780138494447,153.12835384067148,154.01623090961948,154.76565607031807,155.34381632879376,155.09622836858034,154.7070994535461,154.81359341554344,154.29312583431602,154.95882460754365,154.66364465653896,154.18357242411003,153.34902281407267,152.4400293682702,153.1950543494895,152.58937034290284,151.77136152563617,152.06680430471897,151.4813093612902,150.66560616297647,151.16696685552597,151.7706158370711,150.90357519779354,150.75835663592443,150.1346980626695,150.85538178076968,151.16179585875943,150.54417580086738,150.77584760030732,151.61450367048383,152.18296160409227,152.92803753959015,153.80351783055812,154.1077897758223,154.506475627888,155.174542974215,154.31640962231904,153.633682819549,153.16709254402667,153.7571446513757,154.44597515370697,153.62991614360362,153.00780954770744,153.91501182876527,153.85331265628338,154.42912201024592,154.97843862138689,155.34659107076004,155.53498764894903,155.75737522821873,156.69879074487835,157.52969702333212,157.00464852061123,157.8580224555917,157.46909513045102,158.064566034358,158.78884073765948,159.41669631190598,160.10208873916417,159.78075608611107,159.6570315794088,160.16534154303372,160.17653993237764,160.67757431790233,160.6193547458388,160.3078512251377,159.95517831947654,159.35527760442346,160.25974768633023,159.38782927952707,158.77472972590476,158.50586165161803,158.51283998135477,157.6933187507093,158.03011248633265,158.1236559357494,157.92329632490873,158.60881208395585,159.45861532073468,159.73669886402786,160.1929056425579,160.68406665883958,160.4544080547057,160.2330475305207,160.32567644119263,160.01437450572848,159.59639132767916,160.10737366275862,159.46817215485498,158.62119865836576,157.7781274812296,157.65460930857807,158.27785196481273,157.55788419395685,156.92594470316544,157.42551276134327,158.3257008739747,157.79425997566432,157.5511591527611,158.5493283625692,158.19503119587898,157.6959304632619,158.25228124344721,157.87079775054008,157.30285786418244,156.4293122086674,156.15113895200193,157.1039696894586,158.07895973091945,157.63260048162192,157.94551803311333,156.9482427672483,157.81354183377698,157.48555179638788,157.7620264091529,158.4709595805034,157.47780478792265,158.13741555204615,158.83209886727855,159.79713329672813,160.34667513845488,160.72449143091217,160.61920831352472,160.4788471716456,161.2965318635106,160.71407075505704,160.8980410369113,160.50587510503829,160.5111907091923,160.16518855746835,160.5417704116553,160.18949121097103,160.89663345739245,161.66502574179322,160.69512569578364,160.99460704391822,160.76462256535888,161.68159625772387,161.24827941553667,161.87329558469355,161.14198561245576,161.11347440304235,161.2741891425103,162.26027786312625,162.84372873371467,163.3960947636515,163.46570239122957,164.15913232509047,164.71762288641185,164.45563268382102,164.89160090498626,165.57451937999576,164.93498821929097,165.60259689576924,164.84132769424468,163.86722177639604,163.9479498900473,163.15036164643243,163.81919437786564,164.1402855105698,163.49556839698926,164.0855155144818,164.33727899752557,164.53014335921034,163.72302901558578,163.56228168169037,163.28891054028645,164.23101382143795,164.77337944181636,165.43915667338297,165.10151315294206,165.476699934341,165.33783354470506,166.22225823672488,166.3443677094765,166.72046017460525,167.04193763108924,167.22624482028186,167.53752312762663,166.84887016844004,166.24341486301273,166.02089710440487,165.33815828245133,165.88607303006575,165.97063225274906,165.31387904845178,164.77778199594468,163.80316897574812,164.3504082802683,163.8938745064661,164.5275044203736,164.57964436197653,164.93800151534379,164.89785514539108,165.35269209137186,165.44791030557826,164.6450550747104,164.16184742748737,163.88196284603328,164.47624639095739,164.959819576703,165.45214102277532,165.88554404396564,166.4230211181566,167.1404541824013,166.89000133192167,167.37752473494038,167.0537364948541,167.22854718612507,167.58314059581608,167.0528564285487,167.57980494573712,168.39821219770238,168.5676730708219,168.33326473133639,168.81262042699382,168.83913758164272,169.0582501073368,169.82930667325854,169.07424319256097,169.56803691014647,169.6044732518494,170.59346914011985,170.02945993002504,169.93562892032787,169.82674555899575,169.67097573634237,170.45371437910944,170.5394640583545,170.24538615252823,169.94514209637418,169.08385927183554,170.02186381770298,170.04000421008095,170.52010817080736,170.65546799916774,171.63351552840322,171.97437613643706,171.43912824522704,172.41449176473543,172.83692493336275,172.39737800136209,172.83492008922622,172.88744569849223,172.98418384883553,172.04523005569354,171.06764462403953,171.79858866753057,171.72954085841775,171.76632713107392,171.85557524580508,172.01587565988302,173.00406053382903,173.3742047776468,172.5951603972353,172.71525150025263,172.5409565055743,172.35653430735692,171.39680744102225,171.74968797108158,172.19662324618548,172.95787477772683,173.51508571207523,174.47874917462468,175.4617562778294,175.1540991757065,175.68197301076725,175.5664776437916,175.3531480273232,176.22981670685112,176.87531417328864,176.19277687557042,176.47190439561382,175.52864211285487,176.30976705765352,176.83315187925473,177.74850947922096,178.64523715060204,177.94890958955511,177.3356391293928,176.83300421666354,176.66497687250376,177.03451740462333,177.33219792181626,177.84963526390493,178.05537991365418,177.67256880970672,177.62215917557478,177.95115383155644,177.43776218499988,178.2499513453804,177.2731023975648,176.3142243246548,175.85683555947617,175.55296425055712,175.68164489325136,176.0289451018907,175.841837357264,176.26229441957548,176.7010124460794,177.05339232226834,176.7403189819306,176.42619293695316,175.69397710682824,175.48089064098895,175.69958910765126,174.78523594513535,175.7005097786896,175.75945807388052,176.32397879380733,177.30392313515767,178.03087049676105,178.48768216511235,178.6978155914694,179.5942207565531,179.88418568717316,179.73909858008847,180.34383968496695,180.13393205590546,180.34657992143184,180.09512752806768,180.23106234055012,180.36841071629897,179.58611168479547,178.70089051080868,178.42981366999447,178.22441601287574,177.9408466303721,177.34644429339096,176.58793330658227,177.0148530220613,176.65757593745366,175.78417805116624,176.16434322064742,176.33064199378714,176.82843660656363,176.3259022324346,176.19383345311508,177.18074230197817,177.49128733901307,177.92284058919176,178.89593044295907,179.63345557590947,180.3659269940108,180.80260723363608,180.91680722124875,180.95941456081346,180.73477828362957,181.42964760027826,182.03358419705182,182.02525403583422,183.0168705363758,183.8756611077115,183.13475264096633,182.91104333242401,183.84942566556856,182.91997198108584,183.55002471711487,184.54458891414106,183.66661981493235,184.21396977221593,183.81241579260677,183.92431863537058,183.44479689048603,183.0256325630471,182.4687318294309,182.9349986417219,183.13884380599484,183.36433915700763,182.5857944698073,183.01104750623927,183.8449042676948,183.16599493054673,182.21750605432317,183.11382304877043,182.83146165823564,182.88895101984963,182.93875106051564,182.36899835197255,181.47537456359714,180.6874606157653,180.79834874998778,181.33054139791057,181.4396014465019,181.41865622764453,182.2126548080705,182.62732663657516,182.6991229117848,183.46874111657962,183.1689583226107,183.9862390193157,183.60313875973225,183.70402170857415,184.3220171048306,184.56112118437886,184.45336482441053,184.7875816761516,185.6118936627172,185.02726382948458,184.70989043079317,184.0037429095246,183.37176484894007,183.9608194977045,183.38919231761247,183.70475471159443,184.6445976109244,184.61907035578042,184.0429560202174,183.04507026821375,183.24972719652578,183.62957899319008,183.0549553083256,183.82608889928088,184.06281374720857,183.42597623215988,183.05289106955752,182.42133532697335,181.8319660932757,182.1141063394025,181.99861645000055,181.23701606411487,181.02061477908865,180.27086411695927,181.0430881474167,181.8809488513507,181.2787394640036,180.2824671403505,179.9552376079373,180.55768413981423,181.10046179965138,180.77159442473203,181.06590614048764,181.05150669021532,181.6368085704744,182.5479300711304,181.64054208621383,182.30709488131106,182.88516286062077,182.28930512536317,181.77721127681434,182.46455098316073,182.07604818232358,182.64907088316977,182.20804740535095,182.092148500029,181.69314834382385,180.96759595628828,181.59782820008695,181.3570247576572,182.351104660891,182.2697036913596,181.67178250383586,181.49016964109614,181.87465392239392,182.13345868512988,182.87666222266853,182.22243669023737,182.35767082078382,181.54545470001176,181.31163634220138,180.36623779125512,179.49528400460258,179.575778757222,179.74397759325802,179.9253241783008,180.4176072794944,180.32385521940887,179.76743389526382,180.34652080573142,180.27377999434248,179.838946711272,178.9795931656845,179.91907871281728,179.22851378377527,178.48438201332465,177.74226820049807,176.7973664822057,177.19775662990287,176.84751895954832,176.8884996837005,176.96743572922423,177.9250796623528,178.8995907008648,178.22660768218338,177.98843878274783,178.04593774536625,178.95968886557966,179.07154657458887,179.09460670128465,179.80434829369187,179.11304494552314,178.31366803962737,177.66570211621,178.5067104799673,178.30405212100595,177.46968919038773,176.82543705310673,177.5136812971905,176.77751583885401,176.6452486878261,177.0489074815996,177.46857240330428,176.635720720049,176.30706788832322,176.99842047458515,177.0886122751981,177.44723288109526,176.96079273987561,176.78812852827832,176.99829798936844,176.5660935882479,177.01591567415744,177.17566425912082,177.00687089003623,177.47881603986025,177.15834417706355,177.75770472036675,177.13600858068094,177.70928521221504,178.60531124379486,178.52041367720813,177.66965548787266,177.62684911070392,176.79877722309902,177.6061130608432,176.86131438054144,176.36894197016954,176.072873942554,176.85237041348591,177.75350056495517,177.9850672041066,178.56323801074177,177.72994914790615,177.90938250068575,178.86119824368507,178.89526063436642,178.86958104046062,178.07766311382875,178.09519630298018,178.85912101296708,178.10089900810272,177.1359162288718,177.65547325927764,178.37455287855119,177.62936231214553,177.27082111593336,177.83960009086877,178.62375324917957,179.50938491616398,179.81571150524542,179.30866999458522,178.8375565018505,179.33535946486518,179.70052024396136,178.72434009285644,178.14390400936827,178.04329585237429,178.97786682564765,179.23510502185673,178.6143731577322,178.8949906132184,179.3240210027434,178.97119388217106,179.57055771397427,179.06805302063003,179.0208392292261,179.94732826575637,180.8056658739224,180.3113226275891,180.58617014344782,180.1887408788316,180.3189731007442,180.03450952842832,180.34875369723886,180.9137847586535,181.21672162692994,182.19432084960863,182.35769919445738,181.636215176899,180.76834834273905,179.9767352901399,180.3490007808432,180.68948540184647,180.24247951619327,179.5201839567162,179.95285207545385,180.93651512172073,181.82285642437637,182.74320090236142,182.32019320502877,181.55091746430844,182.09600349655375,181.69739188672975,180.94057924533263,181.01852529030293,181.58545099757612,182.49128596996889,183.37730966228992,183.64859428117052,183.6468319380656,183.61037314450368,184.09877591067925,183.31947058951482,183.31570392102003,183.92054754123092,184.57083190558478,183.80311262840405,184.4562616860494,184.13914460875094,183.7523697768338,183.73868047911674,184.52873851312324,185.13416531914845,185.6536816866137,185.66737128281966,185.9363284301944,186.62634586263448,186.82824900001287,186.34815225657076,186.35358489630744,185.925359074492,186.00427635153756,186.02374035026878,185.52708012098446,185.38253698777407,184.5001468793489,185.37065819092095,186.31599790463224,186.60304957441986,186.66821858892217,185.7193985460326,185.23298981320113,186.03425856260583,186.40709823416546,186.2354070902802,185.99925892287865,186.41996767930686,185.68868062272668,185.57976821251214,186.1892888750881,186.9348141499795,186.34284727694467,186.44354097219184,187.22526308475062,186.773082009051,186.45985365612432,186.67281733220443,186.41416193265468,186.5196216343902,185.6019168063067,186.02705927938223,186.50681939721107,187.38731278525665,186.63852169271559,187.4942694841884,186.6248570177704,186.82760087400675,187.05513670435175,187.69561901967973,187.73789636883885,187.30850824154913,186.76575640589,187.69247970404103,187.36903616739437,187.71821648953483,188.54678302723914,189.48915611580014,189.5129422135651,189.66745882388204,190.62152850208804,189.98484011460096,189.06442726962268,189.24546841997653,189.10637079318985,188.34993274044245,187.76071318425238,187.00972802564502,187.73878412041813,187.73169653583318,188.56124547915533,187.80858359253034,188.5287363459356,188.56343065667897,189.4211048898287,188.4568667584099,187.54760010913014,186.73283034656197,187.04332885798067,187.1307352166623,186.29379695747048,187.22548278374597,186.54661070462316,186.24373053992167,186.09031464299187,186.7045353190042,187.68147932225838,188.10929662408307,187.1565767712891,187.20801357692108,186.27120938710868,185.63298064051196,186.5954519910738,186.6372897918336,186.04200551426038,186.0722096231766,185.14453385863453,184.81154708378017,185.3597995545715,186.25769097264856,185.44895789166912,185.62597775785252,185.899463434238,185.65321726398543,186.09750398993492,185.42375957081094,186.10812772624195,185.73436138452962,185.76279259845614,185.54430630197749,186.12688909005374,186.82537494041026,187.4404813889414,187.33052260708064,187.3330151583068,187.7054263316095,187.1718512591906,186.99409483000636,187.71702687442303,188.65031764889136,188.83121391758323,189.14466066053137,189.98470396595076,190.18885368900374,190.17018462205306,190.51387563627213,190.2300144615583,190.7193263634108,189.96433478966355,189.6844826033339,189.91808205842972,190.01512396195903,190.6349825928919,190.47888046083972,189.5414674184285,190.26568267634138,189.4967378396541,190.26527743879706,190.54954919591546,190.6708416850306,189.9425492575392,190.04839447932318,190.83328811172396,190.66613614931703,191.19119799975306,192.11222406569868,192.41418686509132,192.46784060448408,191.82058533094823,192.4064491367899,192.7900906666182,193.3971575400792,192.87751144496724,192.98196887597442,192.86030851118267,192.34010177850723,191.53757892362773,190.78294276213273,190.66193305514753,191.37169251637533,191.05862195650116,190.83471907721832,191.75122442422435,192.28087926562876,192.89221473177895,192.98721821419895,192.27730423165485,192.33267673430964,191.45522420248017,190.56175993010402,189.6850105850026,189.52322546765208,190.01110301027074,189.59782015858218,188.81403259932995,189.5598368542269,189.47122984705493,188.7229996053502,188.45640830416232,189.3441874915734,188.76397997653112,189.56972919404507,188.9060281678103,189.1325340848416,189.23856821702793,188.8512610923499,189.70925244037062,190.69781149318442,190.75813817977905,191.322024514433,192.10076312022284,191.51912009250373,192.29977640137076,193.18203919799998,193.68732679681852,193.72774156928062,194.11704040737823,193.61638771137223,193.9530802415684,193.97031580796465,193.12733534583822,193.99079308472574,194.29816052364185,194.8218197650276,195.0754764545709,195.4029102306813,194.70309826964512,195.53090656595305,195.1639910629019,195.28914567548782,195.3392102601938,195.5018537901342,196.0329718873836,196.68072688905522,197.29457677714527,197.25099723786116,196.86962275160477,195.97277197800577,196.42743136826903,196.65033771749586,197.39105380652472,196.41224601725116,196.59150638151914,196.28728199424222,196.35532929748297,196.29831131268293,195.73045309633017,195.734269217588,195.30893875611946,194.71061848429963,193.9225316462107,193.98639053851366,194.55367762036622,193.9969928478822,194.1099257725291,193.59846360050142,192.96523150615394,193.95399077795446,194.19515492441133,194.27610905934125,194.69227923359722,194.0128342639655,193.28676603082567,193.54577177017927,194.13208750123158,193.78753490420058,193.21119510103017,192.40226716781035,193.0889395098202,193.93026984203607,194.8137092529796,194.77230007387698,194.41812770999968,195.20959818316624,194.80217248899862,194.27066391985863,194.97408627392724,195.17685302812606,195.33365051588044,194.39784029638395,195.1056866091676,195.44604195049033,195.86172806704417,195.63068431522697,195.5480790012516,196.3396870791912,196.2708305483684,196.70314274262637,197.14118053531274,196.995048571378,196.16712018614635,196.9307079645805,196.47258757194504,197.1413467908278,197.27372985938564,197.04024239303544,196.9532507546246,197.24312805989757,196.89897430920973,196.40268825367093,196.0099465046078,196.95252661965787,197.94343747198582,198.39852952118963,198.962670144625,198.84068442275748,198.4872241606936,197.66630111867562,197.29414999345317,196.93834127439186,197.19640205567703,197.6817622720264,197.7996336328797,196.83809111313894,195.84800507035106,194.90450747916475,195.4727240325883,195.16187266632915,195.63142915442586,196.0475731608458,195.99425450572744,196.54194808891043,196.52407495956868,195.5571378963068,195.61596698313951,194.97212633118033,194.5015652133152,194.16650936519727,195.0883867223747,194.74144593114033,194.23728347662836,193.5258884895593,193.11340332729742,192.4075604476966,191.51596272177994,191.26110520912334,190.74620375875384,190.20593371614814,190.36470614280552,190.1932172900997,189.81136329798028,189.61649005068466,190.51390364579856,191.36915853898972,191.0229741311632,190.52596510155126,190.06503782700747,189.59822424361482,190.5822413447313,190.858563574031,190.19591036066413,189.71079959860072,189.75177008844912,190.5459028580226,191.22626563347876,191.2354393992573,190.59913859842345,190.19683343777433,189.4471612740308,189.5207395083271,189.46149747958407,189.5793704339303,189.01695225480944,188.53972276626155,188.5392930926755,188.9481338718906,188.63696789368987,188.61664594244212,188.89709549956024,188.97942295763642,188.56090774433687,187.8389747668989,188.48492337251082,188.1241594995372,187.72424437152222,187.40990465180948,188.37592536909506,189.08472866704687,188.39400788443163,188.42079187883064,189.21074272785336,189.86530887661502,190.59465530654415,190.7572750588879,190.0688809719868,189.53829671768472,190.2670522578992,190.49531584139913,190.66956005292013,191.006021510344,191.65133788902313,191.02091779047623,190.89291600277647,191.5005456977524,192.28847372252494,192.77919136034325,191.9247598135844,191.59080547327176,191.13600837020203,190.53065665857866,189.93560393340886,190.85883744480088,191.71641760272905,192.3643540358171,191.48646166780964,192.34052705857903,193.008693380747,193.5793148917146,193.0705629796721,193.95755458250642,193.3630549609661,193.77748136222363,194.44592325016856,193.87550440849736,192.98172235675156,192.65626514796168,191.8772798893042,192.28153715422377,191.44062242191285,191.69689791463315,191.05681208893657,191.29176049912348,191.2157312836498,191.77107553184032,191.28164912993088,190.59498854447156,191.54005666915327,191.83661961182952,191.89367907168344,192.21662597497925,192.2428812701255,192.23361300909892,192.88665314391255,191.99559530615807,191.189366790466,190.4240965428762,191.0783097781241,192.03028946509585,192.67854364961386,193.39997012540698,193.49665505671874,193.00002066791058,192.55709965433925,191.65769811347127,191.44937009504065,191.5642971615307,191.0750273419544,191.2545853308402,191.84948876826093,192.40211763279513,192.30769258644432,191.59035341488197,192.32441553100944,191.91774656856433,192.73250544350594,192.1988116875291,191.96744080539793,191.3211600012146,190.54150102613494,190.4036494512111,189.8560013254173,189.03797585656866,188.3913479996845,187.59029092034325,186.85474738292396,187.45076649216935,187.8349894308485,187.59637585049495,187.6963802166283,186.97505457187071,187.65197964245453,188.13118263985962,188.0061979680322,187.15394743718207,187.11966017074883,187.48919598571956,187.75704126479104,186.95613523898646,187.76584580121562,187.12276752805337,187.07049072766677,187.50478064641356,187.27124324906617,187.14396978355944,186.31815571524203,186.1768701937981,186.76549571705982,186.10134436935186,186.6660272013396,187.24967730231583,186.55106271011755,186.5914452392608,187.37939209863544,188.09694463387132,188.01410634303465,187.46627577394247,187.4208196559921,187.3236183738336,186.9065363164991,187.73782021785155,187.32030483242124,187.0282348250039,186.3398955585435,186.49775354750454,186.99112030491233,187.32058371184394,186.4709368944168,185.6428630175069,186.08049778919667,186.2120804702863,185.6909018466249,185.0825237040408,185.53007336426526,185.07059787213802,185.65199443791062,185.68469724338502,184.71572094457224,184.22565980488434,185.13084038021043,185.562227178365,186.53445435175672,186.77614483144134,187.34847156703472,187.32891579996794,186.68453922355548,186.39708848297596,186.11456592427567,186.11656033527106,185.44673854811117,184.79752623150125,184.9560206560418,184.64098682347685,185.12838253378868,184.3747368780896,184.14610488153994,183.97541711013764,183.81097759213299,183.6190214441158,183.76304737199098,183.07861055759713,183.0165241365321,182.97482018964365,183.7646940164268,183.79720470914617,184.59788012504578,184.20909453369677,184.33661073632538,184.72473322693259,185.2978301178664,185.72492402791977,185.3320855149068,185.80698280315846,185.6958202640526,185.45803125342354,186.4475139817223,187.09781961655244,187.7324021565728,187.0944461012259,186.61230474431068,186.95678120898083,187.51454625604674,188.4002612256445,187.58807965461165,187.4694010950625,188.42165758414194,188.68927453644574,188.2477485165,188.2297638677992,188.40913974680007,188.7390501378104,188.33917246060446,187.90347623173147,188.37067663948983,188.2076926426962,188.43767407769337,188.52149262279272,188.7402320401743,189.38691393937916,188.949619716499,188.06000339239836,187.88536861445755,187.3421296547167,187.8502685269341,187.28806613013148,186.66110610496253,186.10982069326565,185.91968193883076,186.84942343598232,186.97978440951556,186.78778209304437,186.6422895891592,187.61590924439952,187.14587273541838,187.68598500732332,187.36095746280625,187.42359546478838,187.04943825816736,186.37493589008227,185.4572402308695,184.68940042797476,184.15749124484137,184.45171422790736,184.60753738321364,185.25200111605227,184.43408363126218,183.97549324296415,184.29745617462322,184.77061389293522,185.75218138331547,184.7804508502595,185.60985154472291,185.00838819891214,184.21718839090317,184.5764336423017,183.81494281673804,183.99898993317038,184.97560749854892,184.6354316594079,184.82141456892714,184.02931598667055,183.86059480020776,183.2830201704055,183.96624165587127,184.123351668939,183.66523509286344,184.2026829882525,185.02176681160927,185.32078572409227,185.40968507202342,185.08022163296118,184.14433710323647,184.53822325076908,184.9631919460371,185.2410140754655,186.1028333432041,186.00856647919863,185.8089785259217,185.41696145711467,184.79012526897714,184.38958622748032,184.99285031715408,185.65814774530008,186.49851234816015,186.58028749842197,186.13269980391487,185.6552523584105,185.70154884876683,185.54172885697335,185.0497269355692,185.7672304669395,184.96153252990916,185.95858590956777,186.10255323722959,185.96018352918327,185.87296418938786,185.5237539340742,185.04867537645623,185.32257091114298,185.21842344338074,185.66725309286267,185.12591400463134,185.07572134630755,185.65256886044517,186.38461634330451,185.6618202230893,185.2256106901914,184.69408925250173,185.17863667197526,185.3186071878299,184.60788116138428,185.03007295401767,185.26517516048625,184.72516030818224,184.17159695737064,183.6662415242754,184.58488751016557,184.45738750277087,185.33042693231255,184.64378004102036,184.1161255640909,185.08440266223624,185.09813549462706,186.0300914379768,186.09166114917025,185.8790868311189,186.0940741384402,187.0716143939644,187.2730372492224,187.71291300933808,187.97666109260172,187.8657618155703,187.78401207597926,186.94353679707274,186.93333908868954,186.0016734167002,186.99140741722658,187.7112744296901,187.44564139470458,188.40326232649386,188.98735580965877,188.94485676521435,189.92712859949097,189.2185426405631,189.77636924292892,189.86112774629146,189.08968442538753,188.33452739100903,188.1898545064032,188.65156749309972,188.99969188543037,188.03026107978076,188.2322053918615,188.45119726937264,188.31882508238778,187.8624878223054,187.2782882298343,187.95753014925867,188.26084837922826,187.87888698698953,188.65399711485952,188.08889184426516,188.78280739765614,188.2245349562727,188.93442868860438,189.50087571842596,189.82912236079574,190.52086986834183,190.02116302819923,190.26287901075557,191.2549412706867,191.33425829652697,190.90137631865218,190.0175763471052,189.74902348173782,189.20195635827258,189.25391073944047,189.60978609649464,190.2425345024094,190.76920983940363,191.18545091850683,190.1921688588336,189.27619261993095,189.73950793687254,189.6499264743179,189.35046198917553,189.5074857743457,190.08490462461486,189.48396834125742,189.64219456538558,190.04507166193798,190.49542281311005,190.46924121771008,191.32308094296604,190.53578141145408,190.8558249170892,190.3826346746646,190.86196143645793,191.1683580102399,190.27933694701642,190.92086349846795,191.66558578796685,191.87787728896365,191.47564062383026,192.20642088213935,192.94336091028526,193.50444884877652,194.47784885577857,194.23539495654404,194.20299963233992,193.26302760234103,193.44501343695447,192.67331672040746,193.33767859870568,194.28351069893688,195.07291028508916,195.13588442094624,194.59907326940447,194.1193395932205,194.42775059025735,194.58427074318752,194.00514512881637,193.0846758033149,193.21812423644587,192.99110825220123,193.17502469057217,192.88171522598714,193.061358358711,192.47884309943765,192.71301934868097,193.52608772087842,192.74484087945893,192.2473197253421,193.060570767615,193.34011780750006,192.94577533053234,193.0067965690978,193.0086676767096,193.3484074594453,193.8899261886254,194.59138814080507,195.06046868488193,195.6416979841888,195.11918673291802,196.02155065583065,196.90159631101415,197.49647006299347,197.10849438095465,196.87352873012424,196.59510643500835,196.6536342338659,197.5232714759186,196.75901058968157,196.5305970297195,196.19064839556813,196.86044913064688,196.35020904615521,196.31998121226206,195.6234063822776,195.6478205206804,196.03554357402027,195.48638678528368,195.3100775014609,195.1628289888613,194.4451894843951,193.92682274337858,194.73111557308584,193.95387712074444,193.4212353923358,193.71680364524946,193.04804334742948,192.2908784900792,192.5580314830877,192.05070067942142,192.51606111088768,191.6629228349775,190.7064788294956,189.73997603030875,189.04717597411945,189.00453910697252,189.73339928640053,189.50980862323195,188.682175565511,189.3772715847008,189.3212279966101,189.49081824254245,189.36509353900328,189.3815783993341,190.2713443543762,190.33822799799964,190.34391173860058,189.55651844432577,189.5548276519403,188.95601673796773,189.37651784252375,188.87755222711712,189.5293986541219,190.05997440591455,190.31843818258494,190.49503299640492,190.41297081811354,190.44586006272584,190.96688223723322,190.7138028764166,190.3911856105551,190.34127120813355,189.52644269587472,190.31800041953102,191.04064930509776,190.40979448892176,191.2466792189516,191.0238126195036,190.90325803123415,190.69431882724166,190.78009817749262,191.50865280348808,192.3765266817063,191.43493600469083,192.00025945808738,192.4292413033545,191.60477727046236,192.1574308858253,192.21653708070517,192.74926948687062,192.81036208895966,193.36980460584164,193.2205626219511,192.7165271132253,192.6335873422213,193.55886788386852,194.0833095884882,193.7759546628222,194.29166060686111,193.70029867859557,194.6591943539679,195.62545192288235,194.71566577255726,194.27660445170477,193.7960144826211,192.93597714230418,192.01557412324473,191.64763301517814,191.84061083430424,191.94519223598763,192.36209003673866,191.951247820165,192.33972397539765,192.05870052613318,191.68152260454372,192.33126259688288,193.11546080745757,194.01241999585181,193.61032396554947,193.81488271662965,194.34204906318337,194.52066363580525,193.8468428873457,193.3760753730312,194.37547291489318,194.27188571589068,193.58975846506655,193.0235809730366,192.829305076506,193.12170068034902,192.97312163561583,192.12324475636706,192.8308964855969,191.90276099042967,191.2799525479786,191.4702522722073,191.88644916564226,192.12363704154268,191.9147908440791,191.63010834064335,190.67361553991213,191.27787699364126,192.12267438927665,191.6766312182881,192.06362652638927,192.74852094752714,192.21889819623902,192.34444334497675,192.13613309012726,192.4311738293618,193.09717434598133,193.0540613080375,192.2324375626631,192.64975268673152,192.96783770387992,193.68186261458322,193.82665658183396,192.9892159528099,193.9279126129113,194.68574737291783,194.963677149266,195.7156537384726,196.2502454482019,195.9055992839858,196.18111633276567,196.9885918740183,197.1763864820823,197.80701710656285,198.47205666685477,199.2353620706126,198.61963714845479,198.13275322970003,198.8859140793793,198.10559219727293,198.736936096102,197.87439620448276,198.40378679009154,199.2885385104455,199.19117881311104,199.80669684149325,199.90689887991175,200.7038702298887,200.41367506282404,201.01183644123375,201.3274760125205,200.3452582526952,200.41919104382396,200.51941595273092,199.8676635385491,199.020315380767,198.6216828119941,197.99715526169166,198.88167930906639,197.93146200245246,197.27158688753843,198.26145640341565,197.75504294969141,198.41294883424416,199.05550661031157,199.03671430191025,198.6474571172148,198.85695157852024,198.89355205651373,199.75469864485785,200.08526018820703,199.3603883064352,200.190176341217,200.80701477406546,200.79153258167207,199.96736777201295,199.79920346755534,199.8785315048881,199.41531779570505,200.1939801615663,200.00489328848198,200.60356012638658,200.72077886993065,200.55025245295838,200.06092137051746,200.15588761679828,199.55212415847927,200.06587456772104,200.52842138707638,199.74564175494015,199.055789955426,199.03224413795397,199.96927867550403,200.30110104801133,199.73383821640164,199.39451580448076,199.6125674592331,200.29095146246254,200.53428367711604,200.45407114643604,200.39540691906586,201.1789760007523,201.6305021182634,201.84945523086935,200.89837044663727,201.7062861584127,202.30479871295393,201.64055982371792,201.64454522775486,202.47221555747092,203.00249113421887,202.06964325299487,201.72494100779295,200.80262465355918,201.61842340789735,200.84151480253786,199.9748971578665,200.4782440988347,200.48527396656573,199.67782901367173,199.92844030680135,199.65152609627694,199.9537453125231,200.67115730419755,199.89400330698118,200.69623300572857,200.85449466481805,200.26367261027917,200.87752925558016,201.84642277425155,202.40375889558345,202.04361889557913,203.00229346519336,202.24147180560976,201.3247299892828,200.64452431397513,200.47718702442944,200.2387336245738,200.40800958359614,200.90477003343403,200.79491245327517,201.35600601229817,201.60374801745638,201.6073988834396,201.04126468440518,201.959695616737,201.4850663645193,200.57659460511059,200.39640466310084,200.09776115091518,200.79156743409112,200.16927625006065,199.83766514901072,199.72038257773966,199.4096674118191,198.80509011773393,199.19631031528115,199.2392131066881,198.91592785855755,198.90481430245563,199.81045798165724,199.29410977335647,200.20182719035074,201.0327158854343,200.37274826923385,200.34485409082845,200.30847747065127,201.09374092705548,201.62351333769038,201.79974035266787,201.61762943770736,202.13376794522628,202.58712574234232,202.4976680302061,202.1242630733177,202.73706650873646,202.06831797072664,201.55356118734926,201.59996209852397,202.3179711806588,201.49999444466084,201.23426855821162,202.00291498424485,202.99833329441026,202.53167713806033,202.56041925773025,203.34522994747385,203.3141476768069,203.21660657506436,204.1997624929063,204.56213390501216,203.98205063026398,204.6439271667041,203.7316253813915,203.15927625307813,203.30286805098876,203.33839592617005,203.00961675075814,203.98189562512562,203.57378616463393,202.58205781737342,202.14888102607802,202.35709620267153,201.69518298842013,201.40101895481348,200.55522534670308,200.1191196073778,199.52535002073273,199.56517250230536,199.67049840465188,198.74765691999346,199.42839677771553,200.32391183264554,200.84915972221643,201.69587214197963,202.3160437978804,202.585151494015,202.35399866150692,202.735000428278,202.86327948700637,203.5067150592804,203.50029530515894,203.24963098717853,203.3753124526702,203.04228850407526,202.10532141989097,203.0183378541842,203.32554746093228,203.53913944913074,203.96491639781743,204.01704511465505,204.27641203580424,203.28228925121948,202.6582939545624,203.25314675318077,203.45743464725092,202.81127089448273,202.91798707982525,203.74677993543446,204.21827377425507,204.88834644015878,205.7003376269713,205.2443143329583,204.70435581775382,204.92946308664978,204.3603327316232,204.86815746547654,205.43617398757488,204.71513602975756,204.2779099661857,204.79551868326962,205.2833109102212,206.21420114068314,205.56087635317817,205.7122267507948,206.28962645912543,206.04781717061996,206.4513999875635,206.1625033770688,206.17257369309664,206.5413425732404,206.7721392326057,205.89970944076777,206.39188366010785,207.0119673591107,207.80722940759733,207.6709133721888,208.56306160474196,207.90225073788315,208.9001403148286,208.61954809445888,207.87521377531812,207.34576738625765,207.33460801141337,207.91240954352543,208.10419782390818,208.54353569960222,209.52698147529736,208.75053647300228,208.72368158213794,208.9966672915034,208.69003360439092,209.4538064179942,209.43932722695172,210.34913380770013,210.12472700467333,209.92753035901114,209.3248539925553,209.68812723644078,210.36923718778417,211.26848830282688,211.55648088408634,212.30872329697013,212.8307311073877,212.02692330395803,212.36046319454908,213.13629600219429,213.5471179606393,212.78596813837066,211.93120323121548,211.50318089779466,210.62300751311705,210.29872022103518,210.2124611530453,209.67516269301996,208.98701033834368,208.49162568338215,208.94682169659063,209.13523899391294,208.52215585904196,209.2102471832186,209.2242935798131,208.22983917640522,208.00655565643683,208.46509807324037,207.6531260786578,208.01471429830417,207.09941687760875,207.28089695004746,206.38827034970745,205.95998425222933,206.95821277005598,207.22318006772548,207.17920766351745,208.11956938309595,208.64984054584056,209.34953350527212,208.6033202111721,209.3598816706799,209.57968783192337,208.68804418295622,207.85196178872138,207.6856198515743,207.97030821442604,208.10509498836473,208.2850877046585,208.68168717902154,208.62786392727867,209.6098801428452,210.18458962254226,211.10172464232892,210.199691564776,210.17949401959777,209.53245968278497,209.93208901165053,208.99169869814068,209.10813945857808,209.24146543396637,208.56888666423038,207.91314580943435,208.76372875040397,208.43629926117137,209.05906594917178,209.85883011994883,208.99206493562087,209.69358619395643,208.83324229670689,208.45912369387224,208.22553919348866,207.70073045184836,208.60452714422718,207.62542628170922,206.8706231326796,207.6031068507582,207.17707039043307,207.20364226819947,206.90475413855165,206.28849250869825,205.95577250607312,206.48958639940247,205.5865686563775,204.65739337727427,205.12144888797775,205.00265059480444,205.70293619856238,204.81379459612072,205.68624429777265,206.20447776885703,205.30091993464157,204.68575238343328,204.76595594128594,205.21154816122726,204.31127886427566,203.78660782705992,203.01696010725573,203.19665590906516,202.33632113970816,202.72021937416866,203.08958034636453,202.38511680765077,201.74407066218555,202.53640929004177,202.2575810723938,203.09631200693548,203.45907412003726,203.90419049561024,203.34612464765087,203.47359873075038,204.40511486073956,204.56596936937422,204.9894427806139,205.7219413095154,205.75079377461225,205.60030522709712,206.00015231780708,205.89002038072795,206.74921629438177,207.59248344413936,207.79070290224627,207.02760846726596,206.21147866547108,206.73538048611954,206.66473555658013,206.4961077128537,205.8981757541187,206.8111373479478,206.80905452696607,206.1414575614035,206.3062767391093,206.16752066509798,206.6511581609957,207.11160295037553,207.82001110492274,208.79944907315075,209.30485543981194,209.44062599772587,209.87124053854495,209.46801402885467,210.33998756762594,210.19207847956568,210.2610264965333,210.66745550511405,210.79756118543446,211.02781284647062,210.0688963662833,210.20849351305515,210.4874531235546,211.30183010129258,211.82319909334183,210.89314673049375,210.9586160085164,211.1126798815094,211.66753496276215,211.2886943295598,210.98521290533245,211.02201306680217,210.35431723343208,209.4924179869704,210.36304093152285,210.8193568973802,211.42485263757408,211.6456830049865,211.15457956911996,211.8430464672856,212.34968734160066,212.1234325566329,212.9724915069528,213.54561668727547,213.4744849265553,212.70247945841402,211.71986607043073,211.77633278025314,210.8761681257747,211.23901982372627,211.37331674341112,211.83099777577445,212.19990907981992,211.38850301876664,211.7884002677165,212.61659062746912,213.32697070902213,214.22021024255082,214.9208770976402,215.11642653914168,215.34590102592483,215.19730493659154,215.8251270391047,215.94205766823143,216.8951375670731,216.30318025685847,217.20074389968067,217.7199313575402,217.24938690522686,217.6885538767092,217.75971535034478,218.0662237238139,219.03327608807012,218.7841082783416,219.39447587076575,219.19798590196297,218.2184843076393,219.08398093143478,218.7211931287311,219.16277808323503,218.87849656725302,219.061029529199,219.45760160079226,218.79209418874234,218.45727449841797,218.81519021792337,218.85314304148778,219.80719726113603,219.9756566574797,219.32056178105995,219.2696462403983,219.09282290795818,218.87554964236915,218.07568466477096,218.36649216385558,218.01953423861414,217.82893018843606,217.19982330920175,217.83014723844826,217.07208685670048,217.89372270321473,217.86755537241697,218.23595582321286,218.50492478255183,218.89684992004186,219.29563347809017,218.8574779764749,218.79496181104332,219.01675219880417,219.8708025799133,220.67639067675918,221.33856035675853,221.1484523373656,222.05467429338023,222.91445214673877,222.4245740682818,222.86952464003116,222.42858741106465,221.99589639669284,221.83648965368047,222.3198247877881,222.06248053815216,221.7990946015343,221.0270659867674,220.12416336219758,219.9475948479958,220.65218836208805,220.07752937451005,219.74767850153148,218.77038029162213,218.70746438205242,219.30584476189688,220.0277961702086,220.4151555816643,220.11789116449654,219.69275605585426,220.0648894137703,220.4613914177753,219.70002368278801,218.75964946486056,218.28948929021135,218.26783632161096,218.6139837987721,217.99556181859225,217.8820254309103,217.1807740367949,216.83845214312896,216.79143996024504,216.2705318336375,215.5435007251799,214.67663004714996,214.19396728836,213.54112387495115,214.4638734254986,213.58618041826412,212.9141718680039,212.47342327656224,213.29067809833214,213.52958881575614,213.73713458701968,214.17632404342294,213.31769707798958,212.67210615240037,213.6308544948697,214.4441494946368,215.04797162674367,214.69990381551906,215.5310519253835,214.73186268890277,215.18571370793507,214.6526396763511,215.35701638599858,215.32175927748904,216.10999420750886,215.37501693051308,214.38171256240457,213.94445957057178,214.7953202975914,214.19325372204185,214.6529091410339,214.27314129425213,213.85313609754667,214.811771530658,215.43297576485202,215.38831936800852,216.22101343702525,216.8863498098217,217.88590390095487,217.45801744936034,216.63189619919285,217.27941265841946,217.30247546359897,216.66317776869982,216.12722309073433,215.9194353306666,216.14243502076715,215.61724345991388,215.97960473783314,215.86420656275004,214.8958228896372,214.61684045474976,213.93158326484263,214.5132238981314,215.13347828714177,215.17368536582217,214.83209029305726,214.41248796880245,214.7781232278794,215.73677287995815,214.95131013728678,214.51110980426893,214.8071247828193,213.9935336499475,214.3215575502254,213.61218343302608,213.7836707951501,214.71247501811013,214.6302215005271,214.1913516111672,214.59211837220937,214.16377933509648,213.1859737932682,212.3086016406305,211.4776402642019,212.0554929887876,211.55474853888154,211.64459396200255,212.48193414974958,211.72577154729515,211.4964479613118,212.25976618239656,212.0889749871567,211.59598409710452,211.45946511160582,210.9164113085717,210.68696877686307,209.9062786293216,209.54246754013002,209.37043760344386,210.16124797565863,210.32743097888306,211.3169857612811,211.79375532874838,212.0218608342111,212.4182257456705,212.72452124627307,213.45908640744165,214.06301904283464,213.18301818100736,213.3080533258617,212.38002644712105,211.43892901623622,211.46881515253335,211.52602983731776,211.43300954671577,211.17618254525587,210.97815463505685,210.6681649731472,211.3655680133961,210.4668254610151,210.88882708875462,211.35224113520235,210.49364400748163,210.85156626580283,210.81527994805947,210.45659493049607,210.76438572397456,210.52259097900242,210.8641065401025,210.82703918311745,210.1084385998547,209.2924161911942,209.20775310508907,210.17275429982692,209.67460853699595,209.81418600445613,209.92371477885172,209.83160204766318,209.53864478785545,209.67625136952847,209.60059542395175,209.24800678808242,209.36010332824662,209.4334168806672,209.67299097729847,209.95113110309467,209.95892664184794,209.36557043949142,208.65862618293613,208.46136809699237,207.76860268460587,207.5397196863778,207.53366628522053,208.50719607342035,209.24760476779193,208.60145413363352,209.53040699195117,209.7204291676171,209.20126593112946,209.64581538224593,209.8222494586371,210.5522420485504,209.96118989912793,209.1580193345435,209.64887117873877,209.73828255105764,210.0257714665495,209.7498015514575,209.7962348391302,210.41517644608393,210.29743714397773,209.58705057529733,208.76021147798747,208.26600328832865,207.606323660817,207.64142717095092,206.9454617574811,207.60429666144773,208.5234656073153,207.5633244602941,208.1023695366457,207.87908755848184,208.3489230661653,208.714329816401,207.99474525637925,208.28938060067594,209.0015400457196,209.91046075709164,209.0803139624186,208.2264518677257,208.3213246371597,208.5792850391008,209.16535057034343,209.31548478081822,210.0990929682739,209.10985578922555,209.9952872437425,209.61599568696693,209.75545866508037,209.43639725493267,208.98114548344165,208.38644620403647,208.97673394251615,209.5959348483011,210.1278294995427,209.78434995142743,210.75088956486434,211.30679470812902,211.4058390171267,211.12683920981362,211.9430555193685,211.00559079414234,210.93314947281033,211.8712597945705,212.77116989903152,211.91536715300754,211.33346714265645,212.02962049283087,211.8754533464089,212.81377215404063,213.57339819241315,212.79912592750043,213.2517126123421,212.9069194868207,213.50117165455595,212.79712719051167,212.78439891245216,212.27795051038265,211.78671708796173,211.65190569590777,210.95776660740376,211.69980269670486,212.00771286524832,211.05400173878297,210.82826800784096,211.46770953619853,212.1082523674704,212.2641783086583,212.6292369943112,212.02951010130346,212.39763575419784,212.80174605129287,212.64624034427106,213.50195050705224,213.7776535428129,212.9177372441627,212.74324321048334,211.98328891023993,211.2552221766673,210.54431238444522,209.57515961350873,209.3166497698985,209.13015962857753,208.14433382963762,208.63688324252144,208.5460289977491,209.4982417789288,210.31099520018324,211.0580330765806,210.4068748834543,211.26285879407078,210.9450021358207,211.55494284909219,210.76077057048678,211.28534337272868,212.17837383644655,212.47645543981344,211.6861268253997,210.94889191864058,210.76669847266749,211.07078556949273,211.4941420359537,210.9708060636185,211.07143764337525,210.18748156912625,210.90837792865932,211.42802909109741,211.68765231315047,211.3991926512681,212.00165555533022,211.53426049416885,212.51514298887923,212.01361416187137,211.638061018195,212.43952882941812,212.69052205746993,213.12311786273494,214.05055269086733,213.08885131636634,212.1181733775884,211.6185076246038,210.7734512561001,211.4046692447737,212.2550987205468,212.0075668678619,211.4350327309221,212.20184875978157,212.602226305753,212.74557357421145,212.5543367206119,211.8413795689121,212.27095299074426,212.42062142957002,211.875435420312,211.12964239204302,210.96608805144206,211.95419723493978,212.59203317435458,211.85139988781884,212.4919030945748,212.66996876848862,213.23593445355073,213.09895933046937,212.96534104831517,212.96722899982706,212.36678006127477,212.79726242553443,211.8834103476256,211.74680304294452,211.61208992404863,211.95480340346694,212.09068364324048,211.60194914182648,212.542085705325,212.7336283084005,212.12877453118563,211.26218724949285,211.3407090040855,211.64596321014687,211.8315226957202,211.313542004209,212.00364498095587,211.70565826585516,211.17781851440668,211.58546251198277,210.99755221186206,211.06341082928702,210.12967551406473,210.8288977202028,210.95190814463422,211.36524111777544,210.36928992299363,211.0212845117785,210.11327326716855,210.58595348522067,211.1326240170747,210.63783574244007,209.9846622897312,209.15088896919042,210.11937104631215,210.4798695947975,211.14342826977372,210.15624627890065,209.5255537526682,210.21619051275775,209.96014700690284,209.60273626632988,208.67249193321913,209.53204498812556,209.47554658772424,210.046803381294,210.04719905741513,210.04850064311177,210.55646980879828,209.96562436083332,210.34224818460643,210.86936268396676,210.3526124660857,210.9401456452906,210.16477602301165,210.62074091099203,210.6400474915281,211.22056203102693,211.3640361172147,210.9370826589875,211.10564657812938,211.5813100594096,211.9501544474624,212.63266105391085,213.5247941762209,213.20585081307217,214.14731830963865,214.15642774803564,214.12828444456682,213.5086979814805,214.30545401247218,213.65378720825538,214.16428510891274,214.21170937549323,214.39353986736387,214.50840976741165,214.13628549780697,213.27381207607687,213.14454384241253,213.59880072250962,214.47219130396843,215.0323531292379,214.2251000343822,214.3827652540058,214.30852816672996,214.97842145897448,214.1651479494758,214.8926696628332,215.06365917809308,214.18901328044012,215.04223383776844,214.24875204078853,213.9195169415325,214.37076500523835,214.16581841977313,213.17105714790523,213.11375322425738,213.84998736530542,214.02165552275255,214.49467609683052,215.46297654137015,215.44221367500722,215.5008001565002,214.77143786801025,214.7802573395893,214.69502305146307,215.33969714818522,215.4802341805771,215.21388760907575,216.0423782756552,215.97199530620128,215.24422655440867,214.54711802024394,214.22174386354163,215.21825050981715,215.49059270741418,215.68456258019432,216.0688325879164,215.40040897810832,215.5827640229836,215.96492594154552,216.52267499733716,217.11838797852397,217.35598214669153,217.62625689059496,218.2302219592966,217.62018490489572,218.5013821600005,219.21204599598423,219.24156380956993,219.64233766682446,219.16039009671658,220.01157299941406,219.43108365125954,220.0621395194903,220.5404656706378,221.2939611384645,221.70915965596214,222.26416819216684,221.3541939565912,220.3730945182033,220.81187642086297,220.54767361609265,219.61402865173295,220.2305556293577,220.60316043999046,220.59440753469244,220.9441538080573,221.83176972996444,221.8231902658008,221.01124796783552,220.0273288139142,220.2125425846316,220.07456114143133,220.47598827024922,221.12232649838552,220.93315364047885,220.34864533971995,221.17146386625245,220.36346428608522,221.27801276370883,222.1992358728312,221.48523143306375,220.9065917385742,219.9997836011462,219.19543196773157,218.68302211817354,218.08456049393862,217.81652145972475,218.65946665313095,217.70860162563622,216.71168462233618,216.1517059621401,215.84800703031942,216.40923075238243,215.58945112582296,215.47341007133946,214.73324568476528,215.57366581540555,215.81140424590558,216.36372457118705,217.21324254292995,218.07388953119516,218.4032891704701,218.86751402448863,219.54544413881376,219.3938415166922,219.3896309742704,219.88881082925946,220.40304551227018,220.27641184069216,220.4941361430101,219.67880378011614,220.48768510948867,220.52633088408038,221.1561404694803,220.54470985848457,221.26296810759231,220.7562262690626,220.91517158504575,220.2192749865353,219.280940648634,218.78450020309538,217.90527928899974,217.7534926715307,216.87703286623582,217.3660259922035,216.64294883422554,217.12531496910378,217.13738856976852,216.69098401675,216.22925408370793,215.88186621526256,215.36643629428,214.6082551269792,215.19494083337486,215.99726051883772,216.1846709405072,215.9197671660222,216.82602130109444,217.36478639394045,217.45016732392833,218.01571261743084,218.36623341590166,218.35389331076294,218.0184844234027,217.13529755640775,216.1902929279022,216.79591789841652,217.048688207753,217.96227917121723,217.12565349694341,218.12049712473527,218.92102272622287,218.68107141554356,219.44700862886384,219.9665472493507,220.95151350088418,221.85490215709433,222.304946155753,222.74843152984977,222.22934645833448,221.44680916983634,221.53697080956772,221.34342893445864,221.4927785890177,221.36163579765707,221.7458725515753,221.44604140613228,221.6713785910979,220.91735790111125,220.57471498847008,221.24656487395987,221.82441010605544,221.5461328746751,221.53376717772335,221.26247031474486,220.78053503390402,221.65624381694943,221.90870585339144,221.4334447463043,220.69484793627635,221.34200606960803,220.72291077766567,219.74235831061378,219.97521851025522,220.03800363326445,220.7192104626447,219.7863028156571,220.70164593867958,220.36883097421378,220.2908245571889,221.09930767910555,221.19977728510275,222.05658123409376,221.46075842995197,221.1523143085651,220.51351267658174,221.31023497367278,220.6857072482817,219.75724757649004,219.75888803089038,220.4822824955918,219.518391976133,219.15501043992117,219.08129598479718,218.9546304657124,219.53256518905982,220.38080818159506,221.15898591233417,221.439675278496,220.59239432774484,220.28397206403315,221.12032788898796,220.92805068241432,220.06793861975893,220.23963426006958,220.35094810649753,221.14151173876598,220.48724065581337,221.29581810347736,220.87791130272672,219.9930449873209,220.64392555411905,220.69349494716153,221.13160745846108,221.53684726171196,222.53448743373156,223.27571374131367,223.70896672969684,223.84780646674335,223.833978026174,224.21488205576316,223.37554618064314,222.38420774508268,223.08687974512577,223.8955512321554,222.93950452376157,222.79971537459642,223.10141289280728,222.85806695464998,222.17573320819065,221.3944200584665,221.27166729420424,220.5687798988074,220.82781577063724,221.13015434890985,221.88189690792933,222.62434948934242,222.01431618910283,222.24894547462463,223.06301860278472,222.41778561100364,222.19936172571033,222.96694973204285,222.8329146904871,222.27876971522346,221.52576198149472,222.1464591245167,223.1347128879279,223.41604532767087,222.52207433059812,222.05985327716917,221.8450409527868,221.59490109002218,221.85819923272356,221.34463071869686,222.20828274078667,222.11722173029557,222.6741306046024,222.12723170686513,221.92764010233805,221.95628884853795,222.00977135868743,221.97602525167167,222.24282592488453,222.72780705895275,222.92232214147225,222.47876714495942,223.0482953391038,223.9861565879546,224.58282617246732,223.7568788221106,223.7429837109521,224.16066893329844,224.52626502141356,225.24054045183584,224.4597183726728,224.83940800558776,224.9390842351131,224.87351794494316,225.48340413626283,225.92579387268052,226.2122241500765,226.8057256489992,227.2285546711646,228.09158358024433,227.21085496572778,227.17071067821234,226.81692800018936,226.1810608804226,226.99370844941586,227.92208474921063,228.3366363402456,228.02444980060682,228.03936766134575,227.24471876677126,228.07537787640467,227.34588401950896,228.11804146738723,227.53369914647192,228.11432259948924,228.77703913720325,228.65382542461157,229.08820076938719,228.82857638504356,227.89465213986114,227.6369054587558,227.34855140931904,226.5550040616654,226.68865758366883,226.9432670888491,226.56625714711845,226.95402490673587,227.72161744255573,227.7185140918009,227.70687777688727,227.2629016111605,227.3148317602463,228.2339148586616,228.58579953573644,228.7914008004591,229.06597805023193,229.70323546836153,229.75898794224486,228.89981073187664,229.8314519082196,229.5735556744039,229.8412759755738,229.49278521584347,230.25189199158922,230.20875156344846,229.97250813478604,229.75831575272605,230.6249018474482,231.07002691505477,230.67644950095564,230.9948686659336,230.42147534620017,231.0198731618002,230.35363057861105,230.33711188146845,229.9859213824384,230.65328921796754,230.2903757528402,230.09588770149276,231.0092999432236,230.0516291684471,230.26132289040834,229.27212875708938,229.9496974707581,230.07951120939106,230.14811447588727,230.6209114282392,230.84439131757244,231.05445048492402,230.08097631065175,230.0754607990384,230.37465770589188,229.81097891787067,229.8933442425914,230.28192718466744,229.46887841029093,229.62594180135056,230.2552227638662,229.8358228947036,230.03790393425152,229.24727501859888,230.08025953220204,230.34511116985232,230.88200890133157,230.58877054136246,231.0741247255355,231.6084323343821,231.31508354470134,230.7669341028668,231.21172899380326,231.42259706137702,230.63651450769976,231.4645330645144,230.4738212376833,230.530862364918,231.13511615246534,230.282917865552,231.0346511877142,232.01031244080514,232.47838143631816,231.82221160968766,231.10976952547207,230.67828668141738,229.7906842888333,230.633340082597,230.69655639166012,230.08839617017657,229.4441602723673,230.28109469870105,230.70995764713734,230.82483427692205,230.7628022111021,231.22466879943386,230.6180713251233,230.6523766424507,230.15557436691597,231.0670871278271,231.20540784439072,231.60646546725184,232.3660973305814,233.21551246521994,232.90329553047195,233.3120079189539,233.52011198643595,234.19499863311648,233.3290334152989,232.94119135523215,233.03669705754146,233.89193790080026,234.34345487132668,233.82865596935153,232.90367099829018,233.29065996594727,233.6372150038369,234.03595887683332,233.08981088222936,232.50558791635558,232.03098717005923,232.07283877860755,232.21154147339985,231.70432819332927,231.02779092546552,231.49875835096464,231.7671135943383,232.67671255394816,232.07147565018386,231.23495522979647,231.35377159435302,231.05973612237722,230.1548470435664,230.79463711101562,230.7814868069254,230.38219812558964,230.36833418440074,229.5989205557853,228.78049893165007,229.51563008362427,229.0511186257936,228.21035657217726,227.22305305488408,227.5487165399827,227.7133487770334,228.15505524957553,228.6924164891243,229.51749793579802,228.94993814313784,228.5719421231188,229.13808082975447,228.41283765155822,228.67218655860052,229.1192864794284,228.80641450546682,229.53634717175737,230.0881911041215,230.99609307805076,231.2027773708105,230.8745264778845,230.85050951270387,230.59499890869483,231.06758235022426,231.34936044597998,230.4737109146081,229.86458866437897,229.25956956855953,229.2975620594807,229.41048890864477,230.05804678983986,230.73514003911987,231.54060857603326,232.27300519915298,233.13904374605045,233.51219214638695,234.31753007601947,233.86601107381284,233.37911047553644,233.85183956939727,234.220372534357,233.6216979622841,232.75494997948408,233.34001869615167,232.73063107626513,232.66658578952774,233.44711718475446,234.37866547936574,235.19639382697642,235.19607607927173,235.82121258461848,235.8229341711849,235.0699392198585,234.11315935477614,234.0393406227231,233.1496798666194,232.9997713281773,233.89546903781593,234.59317741869017,234.8054652325809,235.0203401981853,235.7766177789308,235.8107443493791,235.25617556646466,235.71003126120195,235.88203324005008,235.73726146435365,234.91083652945235,234.62232104502618,234.76087324740365,234.9912176951766,234.91867182217538,234.88208295358345,234.70371828600764,235.3756701434031,236.21080368105322,236.13138707820326,235.19724920811132,235.7149237105623,236.60398847749457,236.7785098995082,237.50771153252572,236.72782316291705,237.38828145246953,238.36457338230684,237.85204345500097,237.4479291057214,237.45636810781434,237.77775419689715,237.46767693990842,236.5105513264425,237.21652210503817,236.55927564855665,235.87494385940954,236.46086868550628,236.58828960498795,235.60189368622378,234.89188924105838,235.36883337050676,236.22961629880592,236.27927950862795,236.65678114490584,237.287894197274,238.2724884264171,238.1926084496081,237.79102070908993,238.14487937046215,238.31084362603724,237.8980890554376,237.1173151601106,237.5333638312295,236.58984826598316,236.93140020640567,236.26258883904666,236.35186180425808,237.21428474970162,236.6802003546618,236.01152891479433,236.48894117912278,237.3317622137256,237.5928989769891,236.9017650312744,237.51377171976492,236.60507111856714,235.7633485617116,235.84835521131754,234.8489570748061,235.6538024204783,236.39133216114715,235.64607957424596,236.4329731441103,236.39396475208923,236.86409017117694,236.7328615509905,235.84031279338524,236.64073274144903,235.69147506542504,235.39109850488603,235.64518048241735,235.85164783429354,235.99604968819767,235.6003867913969,235.77731956215575,235.69274222664535,235.45981712732464,234.91016429429874,234.5315256533213,234.90969021432102,234.8631699332036,235.33672760985792,235.13116838037968,234.9166252571158,235.6010565534234,235.04047663649544,235.30635589873418,235.39009188348427,235.50563977239653,235.87120334059,236.75950124161318,237.70296778902411,238.1533954073675,238.2406216696836,237.56146757677197,237.7183690671809,236.99297368340194,236.42880963534117,236.91967336274683,236.4934117901139,237.0144062046893,237.80514870397747,238.61280145542696,238.61413825815544,239.29098499938846,239.97770952573046,239.7996428241022,240.16062136739492,241.0243748286739,240.41568369604647,240.72711162129417,240.17146038915962,240.0480655725114,240.64631169149652,239.9144323160872,239.5245853839442,239.80612090788782,238.88284285506234,238.41595862293616,238.64489759597927,237.82027764618397,237.4861092506908,237.52138296095654,238.04675055667758,237.06084057455882,236.54067714419216,235.65393939521164,234.87272697640583,234.73431710433215,234.44137915037572,234.15756082022563,234.59498488670215,233.67178494203836,232.81900882534683,232.76543970312923,232.7437632009387,232.44303139904514,232.39772695768625,233.3058184524998,233.36722648562863,233.24222055310383,233.05469560856,233.34057658584788,233.99292854312807,234.4656601557508,234.70411765994504,235.30737240239978,235.8022218379192,235.01359973242506,235.69502538768575,235.83532059798017,235.53223890950903,236.3992484663613,236.8499984140508,236.13219566084445,235.1437784829177,235.95324509823695,236.44710016530007,236.91927417740226,236.714494636748,237.57689398620278,236.64128381060436,236.41845384659246,236.4889644808136,235.7732861316763,236.05336260888726,235.14545773295686,234.80997012322769,234.8132239538245,234.60736928042024,235.5997550180182,236.3751746728085,235.78720105765387,235.73853561468422,236.0688297636807,235.8915462209843,235.75795341748744,235.99518823251128,236.68954285047948,235.92306620627642,235.21313992328942,236.0949457269162,236.39399465173483,235.52695257170126,235.9822847507894,235.02581861242652,235.6575803165324,236.55868437001482,235.85720159485936,236.73411801317707,236.17204635590315,236.089830245357,236.6636865697801,237.1767930528149,236.45748470863327,235.9540032618679,235.689615115989,235.94560352806002,235.37035424774513,235.3245920035988,235.8330176868476,236.28139151632786,235.96815901901573,235.44308284996077,234.7155771148391,235.70375268394127,235.62138823792338,235.34140890836716,235.28812946612015,234.50958030624315,234.0443288604729,234.5651849778369,233.6213211324066,233.3357236245647,233.70903559960425,233.49426379334182,233.34176625544205,232.8101821471937,231.99351930990815,231.58253413066268,231.3208323069848,230.6744827972725,230.91399145917967,230.32250897819176,229.9968672809191,230.60027569904923,231.37464854307473,230.7871506297961,231.63354298844934,231.80094565311447,232.22826110571623,232.59194868057966,232.23461640812457,231.33808416035026,232.1214025649242,232.94506145874038,233.54084292473271,234.43934163963422,234.57650041161105,235.17491282662377,234.25052433786914,235.2158147888258,235.55978384101763,236.38780123600736,235.99245084263384,236.94488533912227,236.00934749189764,235.5831757686101,234.741924025584,234.20419009914622,233.31676241196692,233.21098500629887,233.0231362809427,232.42471850756556,231.81933954451233,232.41162240924314,233.18757155258209,233.34266366343945,234.0170579138212,234.6499862507917,235.55473942123353,236.49000969156623,236.88133806176484,235.96444597793743,235.72853008797392,236.52132543781772,235.90996732050553,236.50387197127566,237.4288024129346,236.75706479372457,236.8744994602166,236.0340819871053,235.7068813960068,235.90559754287824,234.94912450108677,233.9552045725286,234.1018097344786,234.35713092796504,235.25133333355188,235.23315265076235,235.92542872624472,236.5768632576801,237.43824126105756,236.69499096646905,236.77001353353262,237.3826077110134,236.9665139093995,237.19516849331558,237.6531311585568,237.77714232588187,236.85887234006077,236.91200933465734,237.25013029528782,238.03622484626248,237.7334895869717,237.1448892885819,237.75419042538851,237.24283403810114,236.641364837531,237.23503045458347,238.04731891769916,238.93705194164068,238.98850888572633,239.6044238996692,239.90717458492145,239.6551262945868,238.7546512275003,238.30780643364415,238.6326417629607,237.89630293799564,237.08368647657335,237.26571336947381,236.3506706431508,236.69294272409752,236.61472269054502,236.5969220297411,236.9617475187406,236.68845554534346,236.24846205674112,235.39251542417333,234.60221513966098,234.28316615056247,235.1657564463094,236.09203697787598,236.65823280625045,235.72045468119904,236.3969925637357,235.72993251448497,234.97108212858438,234.3606562037021,233.8548339875415,234.33853559661657,233.6604703143239,234.31802403414622,233.9967971285805,233.6865495298989,233.5545404017903,232.99009992741048,231.99706231430173,231.4125764267519,230.78057451033965,231.34694105153903,230.35025554476306,231.10997787304223,231.26584886852652,231.36504691513255,232.2632876969874,233.21909004170448,232.4212047457695,232.21437830058858,231.35566377546638,232.34902415936813,231.8394861407578,232.42255002772436,231.82698112772778,232.16603312222287,232.12120962282643,232.5580679909326,231.71827240707353,231.21333143301308,231.96151343127713,232.24092201935127,231.6846313062124,231.05789681943133,230.60375470481813,231.2558998633176,232.09034307440743,231.33487331820652,231.7595920828171,231.81798795051873,231.2103947084397,230.89288360718638,230.2411327646114,230.24076834367588,230.13377478159964,230.16189223807305,229.6057576793246,230.4240675852634,230.6948933280073,231.21913955220953,232.04495094669983,231.85569563973695,231.41444699186832,231.3628228274174,231.78195840120316,230.99725034460425,231.52542339125648,231.97679870203137,232.0798561675474,231.13189436215907,230.4062545360066,230.74099473422393,231.59607284516096,231.11235123779625,231.3707591658458,231.28710627835244,231.14433986879885,232.13510152278468,231.82552978023887,231.05937814805657,231.8426303626038,232.379523253534,232.74201171984896,232.85162978805602,232.15043151937425,232.9849911974743,233.9646290228702,233.00143020413816,233.4861389468424,234.43569838628173,234.15374645078555,234.98358927853405,235.8439859226346,236.34333063475788,235.71919276285917,236.20645359437913,235.29298431240022,234.3205620222725,234.3829787345603,233.54617463657632,234.18877837853506,233.2463321276009,234.13970188144594,234.8762090834789,234.1820234619081,233.24178615724668,233.37944904668257,232.49884203402326,232.95093381637707,232.94187926361337,232.8685558210127,233.73492863588035,232.77016035094857,231.83609822485596,230.9515743860975,231.54748319461942,232.00232069008052,231.06126001896337,231.0317479511723,231.25229264702648,231.7429651170969,232.63725133938715,232.29558961093426,231.3154075173661,231.76254212949425,231.53803745657206,231.593159601558,231.97461413545534,232.94569768430665,233.14638902340084,232.56132292747498,233.45981955621392,233.57134544290602,233.13877232652158,233.12204743968323,233.32852425985038,233.9304660349153,233.78075621649623,233.31147910375148,234.02592330938205,233.10806882102042,232.3943898747675,231.58361271303147,232.24174897791818,232.50812249118462,232.55912963068113,232.70960087142885,233.07157399784774,233.30426127510145,232.31169514684007,232.59484033472836,232.7500203475356,233.724039404653,233.6988715576008,234.56705282069743,234.61041856277734,233.85017106728628,234.30051118927076,233.82190065830946,234.17269183229655,233.8449627137743,234.7462650137022,235.0197463557124,234.82440715376288,234.3512086486444,234.6257783086039,235.04667624272406,235.48811698891222,235.04507674835622,234.22828901419416,234.91104868566617,235.60723881842569,236.16435868293047,236.80714554013684,236.89432314923033,236.1038942039013,237.07634814782068,236.5960495225154,235.903222611174,236.1504186866805,236.80487194284797,237.41668333252892,237.29584540100768,236.51520608412102,235.85979594523087,236.6571389120072,237.04552062274888,236.6117812632583,235.7306778463535,236.05667676310986,236.97544590570033,237.67960135778412,237.48585885111243,238.28577197203413,237.56995614245534,236.7461372562684,236.78624041285366,236.45313942525536,235.69265880575404,235.95284297782928,235.37464003358036,235.75211575301364,235.83967748191208,236.0413835463114,236.15032976167277,235.91497870301828,235.00365512212738,234.36001735832542,235.3544925386086,235.20644029648975,235.8792696367018,235.16030043084174,235.2503868485801,234.58852983964607,233.59588102577254,234.05881341407076,233.53191150864586,234.21450743684545,234.9394562211819,234.42578416503966,234.95787355676293,235.5551300952211,236.04976885253564,235.49934868281707,236.0011494383216,235.27578234346583,234.32954872213304,234.0121650560759,233.59182790014893,233.1068255561404,233.18386340187863,232.29392590606585,231.84274337021634,231.36318319058046,232.30423495685682,231.9354807185009,231.07548162760213,231.8540044282563,230.86426061950624,230.9570733429864,231.0739021510817,230.37462103832513,229.4017140697688,230.06153563177213,229.58274195017293,230.58037122525275,230.02699331426993,229.57184463180602,229.18733527883887,228.74188115261495,227.75372483907267,227.00091940537095,227.354042484425,226.9936256785877,227.00780513649806,228.00466254213825,227.7663692687638,227.25211335765198,227.9892616593279,228.0496858661063,227.86176725989208,226.9407105622813,225.97843144880608,226.21990852896124,226.9896211847663,226.9844452533871,227.62682371633127,227.84106163075194,228.4292338467203,228.69356767926365,228.16878684656695,228.92150699952617,228.21022323518991,227.72223134338856,228.2683041500859,228.2267856192775,228.89765500929207,227.9150847857818,228.50230907136574,227.56880236184224,227.29801032692194,226.4486287208274,225.8778106388636,225.91268566204235,226.52044255426154,226.55255895573646,226.34966264944524,226.69942217925563,226.45620626863092,225.8879452315159,224.95893160114065,224.8648542156443,224.87359094247222,225.3131463113241,225.93630807101727,225.76012295577675,225.7541447659023,225.7648813975975,226.7202179147862,226.39310156926513,226.0678028673865,226.41868161782622,226.3645741441287,225.98224563570693,226.00888154376298,225.11587313795462,224.92105009034276,224.67812417447567,224.23832870740443,223.26520007988438,222.87312349677086,222.18487329035997,223.1503181043081,223.51320283301175,223.3112966842018,224.00279602920637,224.36803063284606,224.77579402411357,225.67271703109145,226.11755781481043,225.5067502190359,225.94021637691185,226.8544615264982,226.3423176985234,226.70177924027666,227.34302576677874,228.2529197987169,228.34978016233072,229.30745057202876,229.58330302638933,229.42930813832209,229.77442003739998,230.00593516835943,229.86755611095577,229.88985400088131,229.78462923457846,229.7101857913658,228.72257002163678,228.47249661944807,228.4556308942847,227.70340080792084,228.59055973170325,228.86232108529657,229.76135918591172,229.75936605362222,228.95987937273458,229.34667465975508,229.2754016239196,229.59910277975723,229.0607498753816,228.15450230101123,227.42699087038636,227.12388062337413,227.54305636882782,227.60278596822172,227.32366656092927,227.13947686832398,227.7982724471949,228.72938360227272,228.06201715255156,229.03104886971414,228.82516075205058,228.37434191675857,229.19910187274218,229.5345206274651,228.69079858018085,229.19231743598357,229.81246998393908,230.8115010787733,230.3303731768392,230.03208749881014,229.70354500273243,229.29232347244397,229.33941089408472,230.19385597668588,230.18374188058078,231.06648505060002,230.33593206340447,230.77622630866244,230.98641236219555,231.63599106157199,232.08557737153023,232.6936852564104,232.2119131917134,231.97689245827496,231.32794262142852,230.5790041713044,230.00858413707465,229.15600671153516,228.7075651451014,229.13298202957958,230.04494210099801,229.26163617055863,229.58846774557605,230.07450593914837,229.6334964525886,229.58274183562025,229.51109160622582,229.50923288566992,228.77210109494627,228.5990309957415,228.53497999161482,227.702272137627,227.68325816234574,227.94292805017903,227.77644246350974,228.49127576919273,228.44065667921677,229.20405952166766,229.72480777138844,229.29846606496722,230.29683041758835,231.11854135757312,231.04253514995798,230.4371494804509,230.4752822467126,229.9499794836156,230.5144591028802,231.20737885963172,231.4881551656872,230.86186606343836,230.15509951580316,230.7965783663094,230.4153089900501,230.81874018209055,231.7819114048034,230.7980359364301,230.29459634795785,229.80941261304542,230.73629271797836,231.13976086769253,232.12581542832777,231.73329042596743,231.47084759781137,231.00428209034726,230.82848728913814,230.67426550853997,231.64247045246884,231.84710416244343,232.60588048538193,231.8052649917081,231.8335282439366,231.48893875209615,231.6496974704787,232.08806497510523,232.54457698343322,233.42336670402437,232.63125804066658,233.58416559826583,233.26095112971961,234.1898449198343,234.79070021724328,234.93606125656515,235.6215837164782,236.45519579062238,237.0235962648876,236.41169775743037,237.2568593584001,237.29500723723322,237.57882164604962,238.00732748024166,237.71310350857675,237.56568375695497,236.73187704756856,236.8140379167162,236.35192786995322,235.3573448737152,235.88489714404568,235.94828245369717,235.38606021460146,234.77280950406566,235.02405267348513,235.93039997294545,235.25991460122168,234.87492125527933,235.4534283312969,235.77546494454145,236.31691362755373,235.60370084410533,235.34771403344348,235.21451268950477,235.64288293989375,236.45688318600878,236.39133890904486,236.18843124667183,235.6578173758462,235.07950590876862,234.56432207021862,233.962101994548,233.67726586200297,233.23680662550032,234.02965743700042,233.30048639327288,232.48370992578566,232.33917524153367,233.06729155918583,232.85679638246074,232.3857355080545,231.48764784773812,230.57574714813381,231.17633922724053,230.25048250472173,229.98744811397046,229.55159855168313,229.94940589973703,230.78880310012028,230.3560305107385,229.58064440032467,230.46625244384632,230.12257553823292,230.7402496645227,231.0335259018466,231.2318043364212,230.6800229488872,230.80685034627095,230.38083631312475,230.0006267130375,229.80460633337498,230.40706800110638,230.83356267493218,231.73238379415125,231.92901817988604,231.28654230292886,231.12979515083134,231.36290699755773,232.17500120168552,232.5905515262857,233.29451649542898,234.16683486197144,233.67144737998024,234.30005598301068,233.63957602577284,232.675580246374,231.7302232021466,232.2325879004784,231.96601809328422,232.70991709455848,233.16574851982296,232.99118030257523,232.77957027731463,232.47652534767985,233.04454731428996,232.4119293456897,231.97798574203625,231.15994030423462,231.15077248681337,231.58680243277922,231.74578179465607,232.27143342141062,233.15539874276146,232.89584134425968,233.4701471007429,234.4642063602805,234.86708421073854,234.53669411875308,234.214097969234,233.49977283086628,233.45483169564977,233.74034155067056,233.67414910905063,232.90757927671075,231.98145790584385,231.3610546309501,231.87572946678847,231.48423741851002,230.91788009926677,230.26994058862329,230.15255687665194,230.17810432147235,230.28270295914263,230.81360062444583,231.79635915532708,231.74856637511402,231.58555241907015,231.08484614547342,230.5434300461784,230.44858435634524,231.39527149265632,232.19029531953856,231.38417031196877,230.74171324633062,229.90234302775934,229.17995302099735,229.59252526517957,229.7726671565324,230.29405846865848,229.51811377098784,228.8666384285316,229.55050026997924,230.0164689552039,229.32332524983212,229.59943844377995,228.72838787734509,229.29144850047305,230.21486017294228,229.25205542426556,229.13058398431167,229.4445445742458,229.96792535111308,229.045282734558,228.17216587765142,228.7703950619325,229.55354566592723,229.56458765268326,230.19492021482438,230.50557997915894,230.92080771829933,231.7415517019108,232.0344483088702,232.7258233530447,232.39279671991244,232.94694539578632,232.22831558808684,231.9856018931605,232.09348187083378,232.55306383268908,233.17528176028281,232.47797803441063,231.88889678567648,232.26915498590097,233.16688001761213,233.24885332258418,233.19792946055532,233.19727654755116,233.87452832609415,233.79253745730966,234.709850596264,234.22082832967862,235.16572729265317,234.66015233052894,234.03530816035345,234.50873445672914,233.83615383831784,234.01530565181747,234.15081061515957,235.1179876816459,234.26475010812283,234.80386717244983,233.88505476620048,233.39594831410795,233.64094490883872,234.29057081462815,234.53909004619345,234.96152823837474,234.93605085043237,235.4217714513652,234.84745688270777,235.01832948997617,234.94531110441312,234.06855452014133,234.36001595761627,233.90388720389456,234.18648036848754,234.44903970323503,233.67613711208105,233.98058411478996,234.06802136730403,233.92340417578816,233.63668212015182,232.68995912745595,231.70040389848873,232.27877070894465,232.91673262463883,232.17854261305183,231.59558111103252,230.87111643329263,230.34385180287063,230.52530387742445,230.1696179122664,230.24014907656237,230.68243574537337,231.6099786804989,230.79670461593196,229.92737617436796,230.6153470138088,231.41596023691818,230.75868524750695,230.13918230962008,230.4426240772009,230.06968455202878,229.30115787591785,229.1329854633659,229.0524067999795,229.08044266235083,228.57132379431278,229.11903114104643,228.85916574997827,229.49703655252233,229.84269549138844,230.79485830664635,231.573996338062,231.75548665970564,232.32911566039547,232.22628689091653,233.16731866262853,232.9101288318634,232.50048248749226,231.90229806303978,230.9656251813285,230.28460043063387,230.4712500181049,229.69377349689603,230.08440276933834,230.07439074711874,230.3384128920734,229.62764325225726,230.3642056863755,230.871605086606,229.94128815829754,229.7557490770705,230.46731348056346,229.70559270586818,230.09043572563678,230.03481826232746,230.7935366462916,231.53720072843134,230.62028536293656,231.34134254185483,230.87702989112586,230.91278752405196,230.70703789545223,230.7355376840569,230.155507594347,229.21848471835256,229.73917720559984,228.965697101783,229.34155756095424,228.92988892784342,229.78773249685764,229.0515156709589,229.93256217055023,230.00320186605677,229.89917160803452,230.80969536537305,231.4284692662768,230.85745168756694,231.73983450746164,231.8947503408417,232.40115084452555,233.3647129125893,233.03083896590397,232.4351996583864,231.54992327978835,231.0022843736224,230.33747807424515,230.3620725008659,229.4964481499046,230.37683908082545,230.01122512156144,230.7447485998273,231.18612569430843,230.51184185035527,231.07569417124614,230.40047047752887,229.87713808985427,229.67111650295556,228.8729948089458,228.81459155119956,229.5995085290633,229.81026035686955,228.82881749374792,229.5752418707125,228.90699152229354,229.70378871448338,229.84830287843943,230.0562347723171,230.70990188978612,230.53252405114472,230.2531282035634,229.58803739212453,229.12662527989596,228.55757683282718,229.54288057191297,230.20371203217655,229.66475395392627,230.50813175505027,230.2303874916397,230.67554230382666,230.01995819527656,229.71020671864972,228.93811622541398,229.3761107190512,229.56088508898392,230.42509785853326,230.78841118933633,230.32727640355006,230.38710215082392,230.96693222550675,231.5525430087,230.9629066362977,231.46905776951462,230.90042633423582,231.24849896179512,232.16734461765736,232.5700507061556,232.71063683228567,233.18011605041102,232.42161925230175,231.8905500965193,231.88065551919863,231.9540257337503,231.09183962503448,230.6355004515499,231.0994811593555,230.42886806698516,230.3912997446023,231.2111511803232,230.77427202416584,231.12775449408218,231.84960934473202,232.62077688751742,233.2178276241757,232.5885088313371,232.26898684957996,233.20575136644766,233.01372946659103,232.85534216603264,232.86271758005023,233.04041232867166,232.2235238486901,231.43208141764626,230.47490248084068,231.19345790985972,231.97713563824072,231.55909977015108,232.29894375940785,231.93350403942168,232.82872810866684,233.21636573644355,233.3274656943977,232.4349190290086,232.3228019317612,232.59639167878777,232.79015760915354,232.14376991521567,231.95247701415792,232.7478564688936,233.23177851876244,232.45873780269176,232.20932802231982,232.28179944865406,233.20865277107805,232.6250343332067,232.14800974354148,231.45165353873745,231.0053393128328,230.32831956399605,231.02712141070515,230.89850629586726,230.3881347947754,230.1934821275063,230.17299101455137,230.0327928075567,229.55850538192317,228.59206116991118,229.2160998270847,228.80416941316798,228.33622520137578,228.56176610896364,228.97261479869485,229.30239390581846,229.48697201907635,230.12067728769034,230.2440530564636,229.30865822546184,229.52213211823255,229.9598495196551,229.8932618368417,230.88049124972895,231.5039830384776,232.21319171600044,231.41209436859936,231.3673343155533,232.0307945087552,232.05047031585127,231.70889972802252,230.8204253143631,231.0662528402172,230.3708513714373,229.57506278948858,230.04740956285968,229.18506912747398,228.7872924436815,227.95935553312302,228.53110445383936,227.53111037844792,226.6143056359142,226.17233833903447,225.63923874078318,225.63471949612722,225.01968754967675,224.67048641806468,224.03638662723824,224.36390917468816,223.37810466671363,222.59455515397713,222.98735488718376,223.90957377059385,222.9138454911299,223.40933181159198,222.63158327993006,222.56563573237509,223.12632724409923,223.1883650426753,223.07309937570244,222.30434276070446,222.16700193891302,222.10978345526382,221.61113933147863,220.63933967333287,221.0138608533889,221.2536371354945,220.6100686104037,220.0691878325306,219.12524501699954,219.24458205746487,218.83158724056557,218.10476846434176,217.34167835023254,216.57836803374812,216.3296787282452,215.9905506959185,215.22482866887003,214.8249770347029,214.6791170197539,214.79288527881727,213.80414902418852,213.31219962984324,213.18118345504627,212.96392523078248,212.43410691432655,211.5087668565102,211.26977260410786,210.5598442563787,210.6080019013025,210.08183599775657,210.5265575889498,210.44804162206128,211.01491331635043,211.74383404199034,211.26210155524313,211.7567596239969,211.06858040997759,210.65824563009664,210.39284305181354,209.91139948181808,209.50896950997412,209.77305404702201,209.85684378258884,208.8635225542821,209.47056031227112,209.91262425621971,210.3673323355615,210.01653302367777,209.13189680827782,209.45027577970177,208.55733556579798,208.73675094079226,208.18979627918452,207.94598557334393,207.6023531765677,207.21710883360356,207.25374762527645,207.87444021832198,207.9746657893993,207.03385901171714,206.8633874617517,206.13344857329503,205.21956056635827,204.45336713129655,203.95419185282663,204.55125808157027,205.21566991554573,204.44768992066383,205.1642564823851,205.71664723241702,206.4329039384611,206.80768007412553,206.6307324101217,207.2814838932827,207.63885792391375,207.67395374784246,207.82603310607374,207.73799246922135,206.8972586793825,207.823515528813,208.59679172933102,208.57549200113863,208.28496764274314,209.18641838105395,208.32447121012956,209.2516042664647,208.53777773305774,208.0231813127175,208.18383253971115,208.505745339673,209.3307473915629,208.4564756611362,208.83887228602543,209.5948786502704,209.51943331444636,209.96081232419237,209.93561635632068,209.8633765783161,210.5429654987529,210.30845612380654,209.80162574211136,210.2649929728359,209.28024071455002,209.36987893935293,208.75308121088892,209.52918250206858,208.78757554944605,208.79065951611847,209.75597544014454,209.2701462074183,209.74714146275073,210.3387014484033,210.411287561059,209.48664463497698,209.0227421456948,208.33377114217728,207.94799979915842,208.07757274061441,207.6179833645001,207.95036811521277,208.07617848785594,207.81063779396936,208.4995769066736,209.27332727843896,209.91340500256047,209.82966425362974,210.5459769819863,210.48231116123497,210.48789401631802,209.83546191081405,210.14175650151446,210.6709566595964,211.27643905719742,211.53901463234797,211.40150391170755,210.97730177035555,210.31062370585278,209.88575896900147,210.37288908893242,209.76688949763775,208.91492545092478,209.86244237143546,208.9757983298041,208.3990166960284,208.36960574425757,207.78827471286058,207.46327389404178,207.7767296358943,206.9502413594164,207.70049348659813,207.47797558782622,206.67586782202125,206.57279952941462,206.85494140116498,206.5716811446473,206.05914218444377,206.3209697753191,206.7691567945294,207.62317342497408,207.6925573097542,206.95531157171354,206.052625216078,206.88797099189833,207.73543079663068,207.79561658203602,208.56806966848671,209.55720761604607,210.0681164204143,210.70925800828263,209.70971032837406,209.41834089159966,209.07776269922033,209.99040974630043,209.14842606615275,209.53628012770787,209.74356210278347,208.96332614822313,209.73625890538096,210.38983463030308,211.2003881041892,211.65061553800479,211.23301245970652,211.97193152736872,212.0809052027762,212.23470693081617,212.85945005109534,212.11659457162023,212.6140896254219,212.2766289729625,212.93945420067757,212.73407704243436,212.5451899287291,212.06682145688683,211.9467041445896,212.89414579235017,212.89592751907185,213.67988393828273,214.61445477977395,215.4341058274731,215.45388374105096,215.96449017710984,215.88160697510466,216.11992063419893,216.32553409179673,215.36307541886345,214.66510248975828,214.22391309356317,214.33400639425963,214.54420791380107,215.0913558662869,216.02068935427815,215.04018172062933,215.1781879174523,215.38943229801953,215.36922405660152,214.52508745715022,214.76710841199383,214.14319173106924,213.47660710942,212.6932619465515,211.88120405748487,212.8746842541732,212.53244049707428,212.28558462066576,213.19688416272402,213.80766998883337,213.65335914492607,213.42356188129634,214.23159488569945,214.24511043494567,213.8614658685401,213.68159449566156,212.9817395140417,213.4288903917186,212.65867795981467,211.73620509635657,212.18210775917396,213.0436264919117,212.55384872248396,212.22479989053681,212.83770779613405,212.55653973808512,211.80459442315623,212.37031463347375,213.05954281240702,212.82661222899333,213.0272764796391,212.1946759945713,212.76554451324046,213.10522112622857,212.53278111480176,212.66842911578715,213.3876277212985,212.95568291144446,213.94710568990558,214.6119581880048,214.7875926741399,214.89618439599872,215.74059915309772,215.68891134485602,214.6976976916194,215.47742363344878,216.15880415635183,215.98595245555043,216.37531826039776,216.78634914476424,217.74968865094706,218.41623798105866,219.1325406706892,219.7829016004689,220.0332614602521,220.10717041324824,220.70285261701792,220.82667143410072,220.23862823611125,220.4383452637121,220.90868677012622,220.99706859886646,220.41148018464446,221.17369840387255,221.8439635145478,221.16944902110845,221.19806467508897,222.17635973682627,221.23383673792705,220.61002492066473,220.57930402597412,219.89302921667695,219.79339066846296,220.52523545641452,219.65869753574952,219.78361913980916,219.67807657131925,219.64313099719584,220.56015670252964,220.83106025122106,220.46740864636377,219.73819548776373,219.54640198498964,219.38751570833847,219.77773290127516,220.62012576730922,220.86826617550105,220.3260847227648,220.2167762639001,221.00375988474116,220.85881540505216,220.83458315301687,220.40994600392878,220.9053866476752,221.88189924461767,221.12750533781946,220.31951225269586,221.1556492834352,220.6513128275983,220.6763119022362,220.0084745241329,219.01696198852733,218.37449985696003,218.71887820074335,219.31177959032357,218.86859690397978,218.8481987072155,218.3831661348231,217.93189010070637,218.73565509775653,218.50621002586558,219.0343393352814,219.1058743223548,219.245111648459,220.23843452567235,219.26186720374972,218.8311333525926,219.70058349194005,220.09772207867354,219.930699583143,219.35771483834833,218.51726744696498,219.4579860526137,219.44387647137046,220.07531227497384,220.70189441461116,220.86984879150987,220.63343601906672,219.7491516917944,219.3718589944765,219.49025415396318,219.55501005845144,219.6568662878126,219.72257426939905,219.54872706299648,218.62698888033628,219.5494389636442,218.76922898413613,218.22646583011374,217.65758539689705,218.37369153276086,219.20271135494113,219.39669512212276,219.20272022858262,219.79257867811248,220.55316697247326,221.44575389800593,221.49536249786615,221.58143583172932,221.83334991848096,222.45559054194018,221.60426168888807,221.3449098970741,220.40872663538903,220.18760121287778,220.69091012421995,220.0781059046276,219.94419245794415,218.99559719720855,219.0642925426364,218.77218713751063,219.0629256768152,218.70641984883696,218.62166100926697,219.3495325599797,219.75009270990267,220.63795961113647,220.06081091146916,219.8733974560164,219.07032857229933,219.90157559746876,219.7832701653242,219.42274708487093,220.38454668968916,220.33274895092472,221.0061838682741,221.59589245310053,221.4425163930282,220.9015361177735,219.90777284745127,220.6046812981367,220.24125313712284,220.51784172886983,220.28505805740133,219.39467034721747,218.80984548386186,218.29311459790915,217.7594813508913,217.5949738365598,218.2326591340825,217.54339798726141,217.62658621976152,218.33496425813064,219.2162894741632,218.81255941232666,219.68278278969228,220.17483473243192,220.23276433581486,220.67973190080374,220.49087387835607,221.2781000272371,220.3677012375556,221.13538308627903,221.10503419069573,220.62952848151326,219.8165948772803,218.98344805045053,218.1564811374992,217.3963892366737,216.44182940479368,215.8303831643425,216.75186655391008,216.08271938562393,216.55931312730536,216.52942570112646,215.98000425240025,215.52625381899998,215.73766061710194,214.84022353962064,215.60537547944114,215.63086738158017,214.9428419941105,215.1849747276865,215.91261782310903,215.61876167589799,216.09066391875967,215.2093452140689,214.91066313767806,215.00343777332455,214.5141873913817,215.0771406213753,216.01349975448102,215.4898371733725,214.61767903529108,215.37772481609136,215.52863943343982,216.45349224098027,216.96982286684215,216.26339196739718,215.79980361554772,215.8652596725151,215.91034888848662,215.49096212117,216.33261803351343,217.04821350611746,217.43741693440825,217.62161784712225,218.14671553531662,218.48650395590812,217.7842342830263,217.1751631051302,217.88060309179127,218.30446483194828,217.9128059828654,218.14578954922035,218.33159170579165,219.31161671457812,218.49968985049054,218.19165926799178,218.5524079450406,217.5913269435987,216.97312254924327,216.66233240859583,216.38909858418629,215.61172496154904,215.72711877012625,216.62678353115916,216.37582356994972,217.15473482757807,216.36865416541696,216.83843957539648,215.9658627063036,216.42372937779874,216.37519283546135,217.16997236944735,217.27142083086073,217.14462545374408,216.84648449206725,217.34485209779814,216.89956938941032,216.6177173485048,215.7803968694061,216.14598057977855,216.31581270275638,215.8904429632239,215.20498500345275,215.8230750048533,215.32974782027304,215.9203989394009,215.23509480338544,214.59171184245497,214.4875926785171,214.5918161678128,213.61795487161726,214.17971661221236,213.4865793371573,213.0962521363981,213.1192102576606,212.4608857096173,213.06478335848078,212.2269157175906,212.96387802856043,213.93181672273204,214.09365486865863,214.9406695482321,214.9442269001156,214.65007504913956,214.81428597401828,215.5212473263964,215.12038786383346,215.15274921478704,216.0063694654964,216.0489913681522,215.1711232000962,215.12026724405587,215.42378669511527,215.11988498596475,214.86610983265564,214.68643862428144,215.10697626462206,214.33412470575422,213.54222735995427,213.20878279255703,213.7825957494788,213.41802225867286,212.54421632690355,213.1638298225589,212.51507546845824,211.93131343321875,211.7898079175502,211.55768024129793,211.04307103296742,210.93522656569257,209.97799766482785,209.48863135185093,209.514081816189,210.3100937018171,209.81520279636607,208.9820555304177,208.2114943829365,207.3711676984094,208.3432778082788,207.7038720259443,208.1259540366009,207.7437696713023,208.10839641047642,208.01782025769353,207.57932798657566,206.92776324925944,207.79642415465787,207.18827747972682,206.85939755151048,207.7182670943439,208.54653771035373,209.375091182068,209.4942586249672,208.88011844363064,208.70296352170408,209.0178726799786,209.92187036853284,209.50933630764484,210.02749832812697,210.43936179298908,211.39619922218844,211.52544268034399,212.01067161234096,212.30666274670511,211.80900368327275,212.53657370386645,212.00040592066944,211.55961678922176,212.52217414602637,212.54154141806066,211.6958822691813,211.6938935793005,212.1284010335803,213.0975295836106,212.43713602470234,212.4205336915329,211.6332107791677,211.87668072385713,211.94933164445683,212.09719893243164,211.95638214610517,211.6985085355118,210.81278487481177,209.87311650719494,209.55057646753266,210.09429245861247,210.73260543029755,210.43913591466844,211.00956356385723,210.84993873350322,210.65014186874032,210.5853179320693,211.25720903929323,210.3885268564336,209.76495878305286,210.2546681961976,210.04553140280768,209.26292471401393,208.59372812742367,208.83696381840855,209.07197119947523,208.14197257952765,208.61702938796952,209.06874390365556,209.0476777679287,209.0377683825791,209.58580382168293,210.02576762763783,210.7650181101635,209.96020431397483,209.59037618059665,209.721319291275,208.84295107470825,208.8189311134629,209.45604498218745,208.94717794237658,207.98209319077432,207.52620271639898,207.48585836123675,208.29084747144952,208.82756784325466,208.16466772044078,207.63298519700766,207.46330588962883,206.93439009366557,207.52060184348375,207.36532208835706,207.53364552324638,207.33102015592158,206.87288148142397,206.86316456086934,207.44577307160944,208.24997849436477,208.82323260139674,208.53207351500168,208.5824887198396,208.2636232972145,208.96558904834092,208.6028618933633,209.49689703714103,210.03645232785493,210.50140543980524,210.82723536994308,211.60181967681274,212.432376076933,213.10279299272224,213.7261405303143,213.64028348354623,213.5817116452381,213.21770790591836,212.68602209957317,212.0944677987136,212.39071399485692,211.44381267065182,210.9121904708445,210.17801981791854,210.14677522238344,210.07470336696133,209.99858296988532,210.35346451727673,211.27955696964636,212.1713090944104,212.09424198791385,212.25846816878766,211.74121283972636,211.25011011585593,212.03789881849661,211.71035936567932,210.91023629484698,211.49285738682374,211.1400582268834,212.05809490429237,212.2161820391193,211.3651626841165,211.82957233535126,212.11320054205135,211.15132857486606,210.86641007987782,210.5794091024436,211.39147915923968,212.11914388556033,212.9774404792115,212.62393478350714,211.77082941820845,211.44673634134233,211.28800122905523,212.03016805229709,213.02650143951178,213.24347287369892,212.35496347490698,212.78706747759134,213.30350384581834,213.25237660342827,214.19337263237685,215.1119827213697,215.12968319421634,214.3105268315412,215.06150228250772,215.20915349340066,214.6084196534939,214.5674747787416,214.32533207023516,214.065728249494,213.3531378461048,213.8247201158665,213.8057345408015,213.66230776906013,214.2850237437524,214.00728370947763,214.94058889430016,214.92257792921737,214.61328491894528,214.40045340685174,214.64640028728172,213.82523300591856,214.4871192863211,214.38387772394344,213.85451143141836,214.71076861396432,214.70505618769675,215.51814490836114,214.98040607292205,215.83245490817353,215.82777700386941,215.2879410511814,215.3918901430443,216.07414078339934,216.41881848312914,216.02200068952516,216.19949424732476,215.729341883678,214.79065543040633,213.95540596544743,214.74598112795502,215.34044714132324,215.60818168101832,215.80504644522443,216.5517269121483,217.0658221198246,216.50346978846937,217.31611083308235,217.01122373901308,216.32440735260025,216.87073586834595,217.32425138540566,217.4222935019061,216.89044009661302,216.22976896120235,216.90929157054052,216.90323114953935,217.3811755622737,217.27855865191668,217.5381998042576,217.51942847808823,217.93633066210896,217.26920671062544,217.742112419568,218.3548409701325,218.4649954349734,218.14222164731473,218.73366830078885,217.78198469709605,218.13362268870696,217.37146968208253,218.14545998862013,217.9814007957466,218.2730076718144,218.21096201054752,218.65451027592644,218.33884705323726,219.01262687379494,218.80577932484448,218.7816006038338,218.7523109773174,219.52873720647767,220.07186450716108,219.41088186437264,218.78254443081096,219.24364671995863,219.11034732870758,218.91275893477723,218.15765232406557,218.97297643544152,218.87605353584513,218.81759821763262,218.57009733701125,218.0598105150275,217.99589128559455,217.38039970444515,218.08094900101423,217.2507719420828,216.61335695208982,215.7510791104287,216.52189865149558,217.01832538936287,217.03623423166573,216.06131293158978,215.94612913951278,214.96183844748884,215.76383859058842,215.38111435202882,216.18477170867845,216.32130154734477,215.7924926141277,215.85217804275453,216.85172314429656,215.86188984662294,215.6060463897884,214.70737523864955,214.75682217860594,214.99972612550482,214.4050490790978,214.02937278198078,213.40359083935618,214.30527582019567,214.21683096932247,214.18021203391254,213.47578082140535,214.17752994410694,213.1883525676094,213.92472978774458,213.6688209665008,214.58095143316314,214.52184705762193,213.71835498837754,213.9099507057108,213.36427659681067,212.72112984536216,213.6378973587416,213.97736912500113,214.32010090118274,214.28644891595468,215.16192699735984,214.40863853693008,214.3043354502879,213.97559094475582,213.80243902280927,214.48816309403628,214.87918156199157,215.55500819394365,216.29217942245305,216.64266834640875,216.45418460154906,216.40040779812261,216.2952075060457,216.029323826544,216.43381282733753,216.17609437508509,216.51635596016422,216.62777070887387,215.66412263037637,216.07162300869823,215.81606114003807,215.35814251285046,215.11817079409957,215.41239070193842,215.66230704681948,216.30403978237882,215.3385942131281,215.80140711320564,216.12020677234977,215.83305325591937,216.20705695217475,215.24707830091938,214.51577146118507,213.8728718869388,214.5188058889471,215.31253311270848,215.83840925060213,216.14956668857485,216.40030759526417,216.60799449682236,217.34538351837546,217.9296193853952,217.33812388358638,216.71381425624713,216.2122110114433,215.7769947173074,215.3018320943229,216.25182523485273,216.66751697240397,217.03980832593516,216.35432952363044,216.9629535684362,217.2538999663666,217.34602736635134,217.87574811140075,218.14056973159313,217.28583163348958,216.92252491461113,217.6779422662221,216.7994479429908,216.42972423927858,216.94920949684456,217.19075437868014,217.30465109832585,217.4557446585968,217.44623899832368,217.87924146000296,217.22643512533978,218.09451270941645,218.6224427013658,218.21937379753217,217.33454265305772,217.16190567379817,217.8870177292265,218.63952274573967,218.1356057417579,218.46571260225028,219.22515058564022,219.33721864735708,218.6066284906119,218.62526858597994,218.7218564436771,218.2409719140269,218.30622207885608,218.5217428826727,219.05010074423626,218.66493683680892,217.71998557867482,217.67165650147945,218.0556524898857,218.72022451786324,218.70996879413724,217.77544741658494,218.3632243811153,217.83995340950787,218.7234863480553,219.08155908994377,219.83941315393895,220.1735895308666,220.1533342669718,220.04374840389937,220.52052223170176,221.20065180864185,222.14740191726014,222.1263656602241,222.9495614953339,223.1738222609274,222.34580583916977,222.0466534337029,221.44979979237542,222.43643346615136,223.07955472450703,222.365086609032,223.02698432421312,223.32422900665551,223.05397051060572,223.37511121481657,222.91253722226247,222.73681304883212,223.64251457573846,224.04415033617988,224.46264599263668,224.90514213684946,223.982680184301,223.29437549738213,223.2485316223465,222.49239141866565,221.93875105446205,222.88917315099388,223.41318528633565,224.24682805174962,224.48820777283981,225.16547304950655,224.72365979896858,224.9469171022065,224.09278584923595,223.47317144740373,223.78513119276613,224.2069053426385,223.58621857920662,224.05439742701128,223.5718338843435,222.6932404395193,222.49295659316704,222.00328622944653,221.48936290014535,221.6995896678418,222.6937572476454,223.269618795719,223.61120897857472,223.51515578804538,223.41672203456983,222.93314064480364,223.5839175991714,223.91988755948842,224.30496267741546,223.8159924116917,222.97352590411901,223.8452596431598,223.1651875381358,223.72671696497127,223.53950099321082,224.4634087565355,224.66745710978284,224.51642564404756,223.66602957155555,223.47281261207536,223.85325746238232,224.3827664698474,223.85332412831485,223.46726858383045,222.56373957451433,222.78478107834235,221.9548348914832,220.99382694344968,221.287664454896,222.10054718097672,221.22416175715625,221.2422238206491,222.0258155753836,222.54432749096304,222.83465663529932,223.63375629577786,224.573318740353,224.43629203736782,223.84060399932787,223.81699817394838,223.27080434607342,222.83521711593494,223.0417736871168,223.59960732003674,223.00177814206108,222.18524330155924,221.86337927961722,221.5819317684509,221.6888376576826,221.57901794463396,220.93233209336177,220.9869239977561,221.96052522445098,222.46951262792572,222.5433840053156,221.78478691587225,221.82829687651247,220.95406805351377,219.97554812254384,219.32383441040292,220.15484280558303,219.31007532728836,218.63738941960037,217.92323207017034,217.1721812840551,217.61709683761,218.3339254516177,219.05348805105314,218.45413774391636,219.34882453689352,220.22882076818496,221.18243983807042,221.56968736322597,220.87410278897732,221.8124459516257,221.96243272395805,222.82902009505779,223.4435210074298,223.68171540368348,223.62985978042707,223.12131572747603,223.9301381218247,224.8724089767784,223.92865960812196,223.25615337630734,222.3560218042694,223.21320783579722,223.661310154479,224.35098090814427,224.4082081555389,223.84188728779554,223.44496339093894,223.66359718004242,224.06567249074578,224.93365991534665,225.16770405182615,224.60817621229216,225.5880764289759,225.29068394331262,225.01646335143596,224.21617612289265,224.47108577238396,225.0446093645878,225.6311900014989,225.85948743019253,226.27971515851095,226.0928631867282,225.3067229152657,226.1263484042138,226.3346528946422,225.7997856233269,225.09473803266883,224.3056364650838,224.2053554248996,224.8802747852169,225.64261785475537,225.20196938887239,225.04915218055248,225.0467839720659,225.34515797160566,225.4647910860367,224.6680228789337,224.017290412914,223.87453870428726,223.46469586435705,222.73246692772955,223.36214934056625,223.2960410299711,223.32543064141646,222.92252847226337,223.69864056399092,223.06616880977526,223.36765350634232,223.3621095647104,223.71404823008925,224.4437215817161,223.8787659178488,224.86037099175155,225.5474247909151,225.48499798355624,226.27483042050153,226.27259255293757,226.60721687739715,225.6589067070745,226.3448603125289,225.9520441130735,225.7500898949802,224.77064185217023,224.0228908653371,224.01002582721412,223.4246066706255,223.24758917512372,223.207515692804,223.81668987171724,224.63879892090335,224.4308066596277,223.65373970242217,223.60806251689792,223.92290093610063,224.6496062297374,225.33570935809985,224.40825600968674,224.93373059807345,224.08182214945555,223.62239557597786,223.5858402689919,222.6876785736531,221.97109505394474,221.8761898027733,221.28092367947102,220.80362794175744,220.64206779142842,220.3907843856141,219.73340201145038,220.00036950875074,219.4551312397234,219.26562480488792,218.38954783137888,218.08278998313472,217.44105329504237,218.0302607100457,218.40804036986083,217.86954773496836,217.15898427553475,217.3224058705382,217.32403655862436,217.78911239327863,217.2686561550945,217.55733713926747,217.20639280648902,217.859805601649,218.0713777965866,218.519935302902,218.9616981833242,218.53171652415767,218.6497238697484,218.53575132088736,218.3195701171644,218.50028316350654,218.42614764440805,219.37103996193036,218.85351065685973,218.21190423099324,218.68968454841524,218.20918462518603,217.41565344901755,217.63467698451132,216.92420169245452,216.2690964494832,215.89955880492926,216.44651370635256,216.7742383433506,217.43775724153966,217.7075208374299,216.71544380206615,216.48657937534153,216.24624646035954,216.18540824158117,215.37435425072908,215.44148790789768,216.24295288557187,215.91103469813243,216.06176131544635,216.90050467150286,217.0284407446161,217.13484151102602,217.95648347353563,217.36132288910449,217.97451212164015,218.3842829396017,218.63524021906778,218.45697566866875,218.89377699652687,218.47195581998676,218.38753139600158,217.9481269782409,218.48344296822324,217.89400920271873,218.84996783686802,218.52133118640631,217.73838927783072,218.28085564542562,217.5833122949116,217.84501008270308,218.01935677416623,218.64225823711604,219.60094152623788,219.46170783927664,218.70700838742778,218.94373316736892,218.5257308166474,218.78288789698854,218.6189728844911,218.87500077160075,218.7681015022099,218.8080445351079,218.9893685351126,219.03081902489066,219.829949662555,219.28699847264215,219.37583071924746,220.20156191522256,220.48211176134646,220.59568643383682,220.42118498962373,220.6447349297814,221.62517382809892,220.92159059410915,221.73219819692895,221.7348304213956,222.11761169601232,222.73199638118967,222.4357738206163,223.09660197701305,222.6179504650645,223.30353748472407,224.1017154417932,223.64958947524428,224.08286540675908,224.48609158908948,223.96832066681236,224.10455436678603,223.74899414600804,224.57808432588354,225.3310186988674,224.62634712317958,224.52247982332483,225.49813497252762,224.98414867930114,224.79281859332696,225.6375155574642,225.52874766802415,226.22247554827482,225.3292373754084,224.72468512831256,224.8666139850393,224.66944421222433,225.0063927685842,225.17469947738573,226.02790789026767,225.99684889009222,225.02303088549525,225.54952276917174,225.9834110676311,226.48479429632425,227.43041872652248,226.60802712943405,227.56092150183395,227.25011699460447,227.82709899451584,228.57428070204332,228.32206157548353,228.65444873506203,227.87186884926632,227.49625156680122,227.56093402346596,227.19697681860998,227.87302985787392,227.96809346508235,228.86711884383112,229.59964014263824,228.6550513296388,228.7196444082074,228.6404749751091,227.88162280293182,228.32074863975868,227.85582675412297,226.99460435658693,227.84824955277145,226.9083584365435,226.88025847962126,226.92971772747114,227.14611873822287,226.24532486032695,225.58079114742577,225.82385184802115,226.4492332735099,226.2979763681069,226.07055256562307,226.6977421361953,227.48333341861144,226.5947749572806,227.58555610012263,227.11689196294174,227.21389957563952,227.47076483257115,227.48862193292007,226.7199354171753,227.6308891447261,227.487493253313,227.05455932579935,226.26779055967927,225.95670752832666,226.61348177166656,227.0983797176741,227.59879057342187,228.36788314813748,227.71816421393305,228.43201131001115,227.84718281310052,226.97519517550245,227.64009031653404,226.8331795320846,227.67983052507043,227.94399475771934,228.00253216689453,228.73341454239562,229.02549510728568,229.37108066445217,229.07424556324258,228.42167490394786,228.5631515509449,227.59089062176645,227.7473235297948,228.65261937398463,228.11555435927585,228.10540535952896,228.35884967911988,227.66705029131845,227.56044024741277,227.68971570534632,227.70138224679977,227.6708892066963,227.24477683193982,227.3661404279992,227.32321740919724,227.86901600053534,228.8036485449411,228.46380425523967,228.93998438306153,229.7882869374007,230.25833297893405,231.07560015376657,232.031810042914,231.6081915027462,231.28453742153943,231.42341291578487,230.79927967023104,230.8221506839618,230.11405441118404,229.96095406170934,229.59417436644435,230.552280229982,230.08544939896092,230.34903747448698,229.95655845943838,229.91665035439655,229.46397034497932,230.02615004591644,230.77292422112077,231.18861988326535,231.2159602334723,230.620207242202,230.6775552504696,230.78209551190957,230.79933470254764,230.4687457922846,229.94773582741618,229.9030454796739,230.75955423573032,230.37991455523297,231.3032350456342,230.32008034083992,230.73737781541422,230.99125016573817,231.63024454005063,231.52330666733906,231.56420946028084,231.1693438310176,230.31494862725958,229.99095645081252,230.31381762586534,230.29164821188897,230.51926845591515,230.8190365168266,231.0409701000899,230.99532515276223,230.82202618615702,231.21801348216832,231.38576445914805,231.71330669661984,230.82853930164129,230.41847654571757,231.1527075334452,231.8238987303339,231.33613058459014,231.6345908921212,232.5658430843614,232.79371784254909,232.34668294107541,232.13537263404578,232.1141822785139,233.1090150512755,233.32346760109067,234.2611722033471,233.6405383744277,233.60839376505464,233.89560722187161,234.02244802517816,234.6684971721843,235.28516167216003,235.99283875944093,235.63842272898182,235.42447840981185,234.85195305617526,234.0796783901751,234.9468445056118,234.7169900080189,234.34343515569344,235.11438540462404,236.00469018891454,235.1718560922891,234.86468439782038,234.56346535356715,233.80370805691928,234.31705465679988,234.54738016659394,235.02666129777208,234.6720052473247,234.93770044716075,234.09578656265512,234.18354438524693,233.1900198678486,233.49018882168457,234.04417774593458,234.3190375538543,233.43304862640798,234.00174325704575,234.78050906583667,235.70459106890485,235.61601897422224,234.78699952643365,234.37810710072517,233.80389971565455,233.11826916085556,232.78235888993368,232.53440704615787,232.47879439918324,233.14317024918273,234.08465090068057,233.76489679748192,232.76995671354234,233.0920156049542,232.78070704825222,232.28855334641412,232.54005861468613,232.48040853533894,232.1104170740582,232.25109308911487,231.68507210863754,232.62198090180755,233.3776089786552,232.9305682228878,233.08324710512534,233.02396494150162,232.23502596560866,232.96290714247152,233.07603776128963,233.6727515035309,234.33455351227894,234.40170972514898,235.1951662977226,235.72777480026707,235.73579555749893,235.14999703271315,234.2503849430941,233.70212996006012,233.94906153250486,233.23821117077023,232.82792004663497,233.14859685394913,233.37674113409594,234.21223929990083,233.82516308873892,234.02271770499647,233.883359182626,233.9369225949049,233.1522361706011,233.54280400788411,233.91317665670067,234.0947719081305,234.01313106436282,233.6452998877503,233.88133323006332,233.32518992666155,232.5414900132455,231.66412145411596,230.7626581452787,229.8744313735515,230.3437499217689,229.47239690832794,230.06963085429743,230.4808286051266,230.41387307504192,231.32823822647333,230.64582025725394,231.51605116249993,231.77274506958202,231.3012725575827,230.86053816555068,231.4004117557779,231.40724036470056,230.80821614991874,231.11211015842855,231.94158024620265,231.74337129155174,231.5185047253035,231.22778576845303,230.25073152640834,231.0632453574799,230.58858533157036,231.48419254785404,230.9223359907046,230.03710766369477,229.66269191727042,228.8383608981967,228.95611033588648,228.24892758904025,227.60964532243088,226.61613706173375,227.52082214364782,228.17413589917123,229.09681887552142,228.78843697346747,228.1196556710638,227.2227093842812,228.2090247455053,228.3016977896914,229.0865290435031,228.71538937510923,229.39419085299596,228.4286861740984,229.00947723072022,229.58396509708837,229.0273980065249,229.91964522004128,228.94976604683325,228.8124039946124,228.93057418614626,229.51562841050327,229.01126921735704,228.70760998828337,229.68595223035663,228.9859895100817,229.50580450613052,228.70292984647676,229.36645341292024,228.89795874804258,229.0432558087632,229.32866842998192,228.347028080374,228.43179613957182,228.99350563902408,229.3568514259532,229.41134506557137,229.92746469238773,229.29270075028762,229.4726743977517,230.37409711349756,230.97966884169728,230.59843042632565,229.9677434838377,229.7757344050333,230.09900226816535,230.90871531050652,230.16265685716644,229.3149591400288,228.5373575342819,228.97898003505543,229.20441025821492,230.10608479520306,229.85767104383558,228.97213257383555,228.95554206427187,229.24214647430927,229.54325938643888,229.21275863051414,229.8502203496173,228.8916248041205,228.5650106105022,227.85524624492973,227.80793094960973,227.24801756022498,227.2163995942101,226.61965422332287,226.83981955004856,226.52339038951322,226.59328166907653,226.93647515773773,227.56570223532617,226.7603165404871,226.514129338786,226.65024706395343,225.683513101656,225.84389296825975,225.2263821978122,225.95546000404283,225.83919427078217,226.53401833819225,227.49344365578145,227.62263769377023,227.54261677758768,226.77172812400386,226.95002598827705,227.46412155590951,226.78501173714176,227.31914982805029,227.0337355392985,226.81748946383595,227.01503507979214,226.44139590207487,226.75359901692718,226.77698420872912,226.47595934709534,227.06679018121213,227.67155204480514,227.12674751877785,226.7341255811043,226.42502099554986,226.4529065657407,226.99710679473355,226.5717664384283,225.92706956807524,226.724582251627,227.34549622889608,227.6196177881211,227.17781682824716,226.32518361601979,226.61124482611194,226.1247876677662,227.0491383606568,227.71883921930566,227.0288163763471,226.38613497512415,226.8455650890246,227.05141956638545,226.10969907511026,225.55668282369152,224.67797434749082,225.10908212140203,226.02095796726644,226.4089917410165,226.91866255225614,226.6871278816834,227.59260780364275,226.82219151873142,227.3500371882692,228.0615646741353,227.43195676710457,227.37872961396351,226.91167580755427,227.82760036177933,227.76964820176363,227.49516404652968,227.8508242131211,228.21008823113516,227.84905776148662,228.54988098237664,227.95740097295493,228.51488665910438,228.80027590924874,229.50739784166217,229.09770454093814,229.22632264951244,228.90135485725477,229.70430618012324,228.83862758846954,229.67530940985307,230.33040057402104,231.26009628502652,231.31368960859254,231.29025968909264,231.58576468145475,231.9284995160997,232.0546026341617,232.9134256672114,233.85051413765177,233.3486391059123,233.32523007597774,234.2520067980513,233.41407627705485,233.67352630617097,233.25889794016257,233.2378164473921,232.83255319390446,233.0735598015599,232.42226475849748,231.99515903973952,231.1175331384875,230.633134260308,231.4700734373182,232.25511813908815,231.30473060905933,230.77831476042047,229.89379346836358,229.99012922495604,228.99271672265604,228.51015207078308,228.46705013606697,227.79257608018816,227.70281482907012,227.77149089891464,228.2522055306472,229.1407339675352,229.25264947442338,230.23002982139587,229.54609098518267,230.37230954039842,229.55477596772835,228.7677945746109,228.15782906254753,228.4200829314068,227.73792769527063,226.92479720152915,227.16424369812012,226.2102203690447,226.40777610475197,226.719818408601,226.61637020064518,225.77619221108034,226.38814182486385,226.32879218272865,226.3559825886041,225.94552257377654,226.09585496922955,226.32095697615296,227.13897940237075,228.0455829501152,228.946646111086,228.74743898306042,228.75005688006058,228.47931979876012,229.17760814912617,229.02241429081187,229.27924917591736,229.07460852293298,228.74865651503205,228.13367375126109,227.43733197730035,227.98292592400685,227.33824631711468,227.8698174864985,228.1318073272705,228.01584047498181,227.7851064284332,228.670890704263,228.20535923121497,228.1976208151318,227.48185369977728,227.4856821312569,226.86217019474134,225.94768569851294,226.89120976813138,225.9235298098065,225.71184773975983,224.80774003546685,225.31223772792146,224.4152578935027,225.04970352863893,225.09237555181608,225.77970312023535,226.03009368898347,226.2015438787639,225.4187291013077,225.6631597550586,225.61057985574007,225.46162298042327,225.39874038193375,224.88089875504375,225.14302511373535,225.74170017801225,226.46814218582585,226.19189090654254,226.91933492664248,226.48172269342467,227.19722560653463,227.76107547990978,228.08781251404434,229.08446302311495,228.62576112663373,229.25777808343992,228.9063411434181,228.11493719974533,227.8180392519571,227.26139051653445,226.59758024476469,226.82365116104484,226.5780281382613,226.91437220014632,227.87159203132614,227.4527629315853,226.95506371650845,226.40337205538526,225.73841087380424,226.6056955154054,226.6667843479663,226.97218655608594,227.68581688171253,228.15889095840976,227.77027715928853,227.05539986491203,227.53060344420373,228.37573043769225,228.21229768637568,228.0559715544805,227.7221056818962,228.01458868710324,228.89221395319328,228.77465324662626,229.16237386548892,228.35243835486472,228.18846203759313,227.20651908870786,227.93711320124567,227.20431728614494,226.38706105481833,226.2142994683236,227.16888124635443,226.62106113834307,226.6712056323886,226.8783186529763,226.47286668187007,226.7201906745322,226.0179378511384,225.3130697561428,225.1702209310606,225.91710223723203,226.15309302182868,226.17758419224992,227.1313584316522,226.17711676144972,226.97055431595072,227.4113317783922,227.13904773211107,226.53152037924156,226.50025895098224,227.1775134606287,227.15770943230018,228.00122538395226,227.91789569985121,227.53161738207564,227.99251684453338,228.10585453826934,227.3183134701103,227.21790455048904,226.91148485708982,227.58437124313787,228.04461941681802,227.64054270787165,228.12854082416743,228.00213783420622,228.30169553589076,227.33250797493383,228.2176202777773,228.83755561476573,229.73988264845684,229.51431426545605,230.17781315511093,229.38655124465004,229.9970168042928,230.45765559142455,230.33841824065894,230.0192890581675,229.8592605064623,229.87343632988632,230.1166192931123,230.6493885004893,231.05975263705477,231.4013687619008,232.19526918465272,233.0304787256755,233.1508504319936,232.50472137006,232.90437996946275,233.6979084922932,233.28828293830156,232.8936230596155,232.47848752187565,231.79832932632416,231.3266459251754,230.99270923854783,230.42808524193242,230.35266682878137,230.6838115286082,229.77096648793668,230.37015844974667,231.24407662637532,232.1619722978212,232.3780893762596,232.80119479680434,232.1913962904364,231.32910906150937,232.06969237700105,232.0342714418657,231.1791742402129,231.78942357283086,230.85429799137637,231.54913880955428,230.565467688255,230.8337099617347,230.10205401480198,230.435665727593,229.448293665424,230.27236477145925,229.32093139225617,228.75738609209657,228.33450399059802,228.17896392848343,228.71125886496156,229.61767378496006,230.58884047996253,230.1314102881588,230.17508755996823,230.73295141477138,231.5933369481936,232.1856503863819,231.9153612931259,231.18714530020952,230.4817068488337,230.18838705634698,230.33002827782184,229.68898041918874,230.35730208456516,230.44411256490275,230.35328340064734,230.5929082245566,230.72067924542353,230.3287744098343,230.15103850141168,230.71952141495422,231.06382943689823,230.33751212107018,230.8161411108449,230.03982961224392,230.85234113037586,231.83769745007157,231.23378382995725,231.2057532891631,230.73913076566532,230.70728613063693,230.8088418310508,230.08733168849722,229.10696776304394,229.28470108658075,228.82777088461444,229.05033492250368,228.9110219636932,228.09646737761796,228.59846297930926,227.64083706401289,227.4502304624766,227.93786335829645,227.34775676159188,228.2587597197853,227.94397387932986,227.74835374346003,228.45356534793973,228.9080351968296,229.55398051906377,228.85810461826622,229.1939667435363,229.2937129852362,228.49779473245144,229.49239635746926,229.8434421774,229.50922511750832,228.8157465197146,228.9939184403047,229.9888380668126,229.09420439088717,228.43867462174967,227.92074499838054,227.2443376579322,226.63529279408976,227.47967509552836,227.31834244448692,226.40989762870595,225.86369907855988,226.58497465774417,227.17068687221035,226.94885937543586,227.13570084422827,227.83773789089173,228.00625038146973,227.363772762008,227.95841138483956,228.64957474404946,228.10495333187282,228.7692668857053,229.50033969199285,229.51525359088555,228.53991210227832,228.06745675671846,228.2320701885037,228.00600797031075,227.78332769824192,227.51944438321516,227.48000233853236,226.9536147597246,226.18684916151688,225.89102877583355,225.62726616300642,224.8026053798385,224.02598469518125,224.91191062470898,224.6035540807061,224.27023899182677,223.6827721358277,223.95571893220767,224.31720313057303,224.9775418075733,225.79103954182938,224.80057122325525,224.48238926799968,225.1598878549412,225.87238692352548,225.2650689072907,224.28517780685797,223.9993310663849,223.24337575258687,222.53961721481755,222.0755060473457,221.80037634121254,222.2896551862359,221.38299435470253,221.52230509696528,220.54658824484795,220.51254588272423,220.2211524588056,220.12398966448382,220.151330224704,220.072868084535,219.65727224992588,219.5619486295618,219.72599485283718,220.58638156717643,221.29708870779723,220.9317031065002,221.65337218623608,221.53431694535539,221.62569445371628,220.7530201729387,220.94218028662726,220.19302927330136,219.44819830544293,220.35698802256957,220.71914035407826,220.09632530109957,219.8488852418959,219.89943027263507,220.58951280685142,220.88009478291497,220.02542827511206,219.51789061771706,218.69662824692205,218.62222762592137,218.8317883843556,219.27632662421092,219.5703985807486,220.52360174432397,219.8326095645316,219.64173039374873,219.28983725002035,219.72616294771433,220.59147737920284,220.18010305147618,220.11066124401987,219.2566215232946,219.82266945857555,220.4415254155174,220.89436427224427,220.36679219594225,219.39639289816841,219.40849229693413,219.3366526355967,218.37060839496553,218.28014717949554,217.72785490006208,217.53572280472144,217.44953911332414,217.38895977754146,216.74820933584124,215.8212717063725,214.83683340996504,214.02690079109743,213.49815019080415,213.71212346525863,214.53988464735448,214.72674903925508,214.74948510015383,213.89628195529804,213.9759833579883,214.47366363648325,214.1525783003308,214.10028410889208,214.8659664178267,215.7535398826003,215.33946369262412,214.94610040215775,214.80744114145637,214.85892192460597,214.36189336096868,215.34161821519956,215.67449766444042,216.206310775131,216.6328612472862,217.33099878858775,217.79169563250616,217.20344707323238,217.40543868858367,217.8184013045393,217.8904661005363,217.78021478652954,218.152586678043,217.19604400498793,217.81932924687862,218.75808730302379,217.77522571291775,217.29254344757646,217.27414775267243,216.85618601040915,217.1336856149137,217.48569309525192,216.63448089873418,216.34941891301423,217.23870184505358,217.78358486667275,218.58783531887457,218.83959798002616,218.3159797359258,218.2988046510145,217.82792521314695,218.07587050227448,218.68458303296939,218.65497673582286,217.99977196380496,217.09630064712837,217.86353171849623,216.94822893477976,216.44017964415252,217.09518816042691,216.22666911687702,217.03068956453353,216.5624514175579,216.9619280481711,216.380905513186,216.043085006997,216.36409648461267,217.3572057862766,217.29237188305706,218.1459528277628,217.4609888563864,217.36399637302384,217.4284650431946,217.81184561084956,217.95276789180934,217.17270614067093,217.81775112031028,217.02258155215532,216.32114075310528,217.26990013057366,217.685455001425,217.68908803537488,217.40736128995195,216.68883599713445,216.0026772581041,216.29774914169684,215.67119624838233,215.68716212594882,215.00086150877178,214.84401503717527,214.4258140185848,213.43571927258745,212.90465397806838,212.52494252705947,212.915195339825,212.19342470681295,212.91391633963212,212.28404216794297,212.17346059996635,211.70226809056476,210.92471874784678,210.46051275078207,209.81763474084437,209.1874004052952,209.6644532205537,209.0808678716421,209.66460345871747,209.44492178689688,209.56412363424897,210.55712512275204,211.1415910627693,210.63313835160807,210.3820404629223,210.54156380938366,211.40232361108065,212.07033697655424,211.6980474353768,211.46057895431295,210.5158207854256,210.15582609549165,211.12932621361688,210.60280225146562,210.15817004442215,211.03485886845738,212.00668432749808,212.18787327874452,212.54479628568515,212.2006069147028,211.6673466837965,211.86402414925396,212.39454864850268,212.95869922684506,212.96866696467623,213.7597360247746,212.84919807733968,213.48030542721972,213.0249635539949,212.29262469755486,211.3812492270954,212.37018012767658,212.56259944988415,213.13208100944757,212.77086779661477,212.91764097334817,212.46905263094231,211.8525271937251,212.75502206757665,212.6456895074807,211.9967279448174,211.8649330250919,211.12583968183026,211.1196681628935,210.3965938296169,210.06331332214177,209.771323219873,209.45783626427874,210.4205249445513,211.025681800209,210.89676594128832,211.77090737223625,210.78907615412027,210.51815344952047,211.23646267689764,212.10909850988537,211.84669110551476,211.0965202888474,210.9684897842817,210.62281418172643,210.98252546228468,210.92420816188678,211.09012266946957,211.06129103060812,210.66269161179662,209.8168283724226,209.10078210243955,209.6472504180856,210.5842150915414,211.55569666950032,212.00914874207228,212.44088579993695,212.07918661134318,211.73441814165562,212.59546431247145,212.76781079359353,212.7225627200678,213.30524730216712,213.0230064233765,212.1790882772766,211.2978817387484,211.9563203714788,211.6334915952757,211.86326030269265,212.12077730847523,211.28710147971287,212.23483117390424,212.37369483243674,212.81359719252214,213.10531910927966,212.11000510537997,211.69064686307684,210.73697509616613,210.37978632561862,209.52436952805147,209.20954738929868,208.57296491786838,208.06467019952834,207.65078129107133,206.77076370967552,207.43522331863642,206.59586961567402,206.77773565752432,207.3437964967452,206.77881852630526,206.18517708219588,206.73503251047805,206.35432258155197,206.3551872628741,205.96641163155437,205.91715947864577,205.3874333347194,204.96501619229093,204.23572659119964,203.39397088158876,203.84649446280673,204.17588604986668,204.2041707537137,204.74361671321094,204.32354116020724,203.76827511936426,203.35311522101983,203.87942102737725,204.77876468375325,204.54291338752955,204.6297836517915,204.87641783989966,204.32452226942405,203.5082004214637,204.11164461774752,203.74392076721415,204.09931275481358,204.12264277646318,203.6550783663988,203.39510184293613,202.64631075505167,201.84997386625037,202.770323085133,203.54599520470947,202.8003501421772,202.84837982291356,203.20432272460312,203.14729428710416,202.3068887796253,202.41247563064098,202.50215756800026,201.7395542715676,202.13610820285976,202.44213818525895,202.5531605212018,202.20827491395175,201.64108157996088,201.64307965850458,200.89981952123344,201.53761191666126,201.18698733393103,200.22190157696605,199.4648183444515,198.87540233088657,198.3998998720199,197.82537596859038,198.37293854448944,197.81941846664995,197.06383598782122,197.4809977374971,197.82201203657314,198.770457142964,198.84189292043447,199.51660792855546,199.9069203804247,200.76445566257462,201.67808496532962,202.0468473159708,203.01891472097486,202.94746323814616,203.26786764711142,202.52773097064346,203.1777863278985,203.82688418217003,204.60401341412216,204.948545133695,205.1788035449572,204.82916783774272,205.6545666162856,204.804191196803,205.17127126920968,204.68085664184764,204.1657039267011,204.80536177149042,205.6402259976603,206.2752888710238,205.62849843828008,204.7436933303252,204.9450129061006,205.2072974452749,205.1603954709135,204.1653302051127,204.90908878156915,205.46746623096988,206.10800762707368,205.9162832600996,205.81573238456622,205.56604437483475,204.93602597760037,205.54702619696036,206.097038123291,205.82875976758078,206.76733104186133,207.2276230333373,206.50909173395485,206.24324158625677,205.25561374193057,206.0526932622306,206.67448694631457,206.12487051449716,205.92723687551916,206.4653840237297,207.0533669339493,207.44702348904684,207.21514724567533,207.3794446690008,207.9663163642399,207.35768797248602,207.5258638849482,207.48018209263682,207.3329378729686,206.61658227769658,207.09775412501767,206.19127552956343,205.28079854277894,206.14497343311086,205.54989046044648,206.39067784510553,206.8870056886226,206.73831976484507,207.00441143289208,207.53711674641818,207.01406584726647,207.14919596491382,207.34694173559546,207.84297016914934,208.14435088215396,207.60066799260676,208.20290943793952,207.21705020498484,208.1758611900732,208.9381877379492,208.73684026580304,207.9546999442391,208.4080055146478,208.33872270630673,208.66355269448832,208.97833505505696,208.33395031513646,207.68730763019994,207.9944283128716,208.30966274440289,207.3720927145332,207.1075065722689,207.70494684483856,206.83967225719243,207.09497203445062,207.18690167134628,207.79708892200142,208.68399601709098,208.7695893868804,209.45631492789835,209.9282793905586,209.60781092150137,209.36292852461338,209.54916566703469,210.19429077254608,209.4383928347379,209.86995947128162,210.290949461516,210.01576781040058,209.3997807702981,209.75009479140863,209.28421636065468,210.13147988449782,210.8372659739107,211.18884199811146,212.10937063302845,211.1266659926623,211.48972671944648,211.92696435656399,211.03788453433663,210.87908441899344,210.87074839835986,210.26412581512704,210.19014784134924,210.8519455580972,210.09470093762502,210.26544370455667,209.60773057537153,209.02547603752464,208.82994667440653,208.7392711895518,209.44227907806635,209.64821383543313,210.3601540965028,211.02971557341516,210.74914745381102,211.53062644414604,211.80906260199845,211.96258823666722,211.19824026431888,212.02393244486302,211.4166591009125,210.55536259012297,209.89827161002904,210.54371529771015,210.21429428225383,209.22204058989882,209.49364646617323,210.14777823491022,209.67705742642283,209.4896752173081,209.86261766124517,208.88822067854926,207.9964507445693,208.21377878962085,207.47044392721727,207.2535821273923,208.04899132065475,207.58383007952943,208.12647074647248,207.4736349787563,208.10463092289865,209.00224197190255,209.8846613811329,210.4356673550792,210.29174183448777,210.11032901518047,209.17616811115295,208.28565608616918,208.81080676615238,209.01560802059248,209.608967570588,209.67148179700598,210.00749366078526,210.61979412194341,210.94803796568885,210.6628289874643,210.7065402935259,211.54847053298727,210.9830910935998,211.17379844281822,212.08071975875646,211.12700607720762,211.17727037426084,211.0417672493495,210.2998345186934,210.35609092423692,211.15535747352988,211.90066259447485,211.50936126010492,211.79324466641992,212.15722431102768,211.2711485652253,210.31754496647045,210.66713640652597,209.7865709103644,210.36808046558872,209.6468500783667,210.24177055200562,209.38875473523512,210.30690258182585,209.79972906364128,210.06359968939796,210.29184416029602,210.00495733506978,209.789903328754,210.14118402311578,209.52456985926256,210.16266390727833,209.3657563519664,209.7146843886003,209.9098025439307,210.14917865255848,210.1519271461293,210.06528965942562,209.2996847559698,209.79573110258207,209.62401008978486,209.45728355506435,209.7681176024489,209.43780103931203,209.02617646893486,208.22578963963315,208.31009776191786,208.22707007499412,207.4064725204371,206.90824788296595,206.69495683116838,206.08635028125718,205.21965993614867,204.98786629224196,205.71259009093046,204.94885982340202,204.2590378643945,204.43864548858255,204.53725174674764,204.73158328188583,204.12990188086405,203.71193806407973,203.25023480691016,202.32395335985348,202.60890169627964,203.5514365467243,203.2090027439408,202.2090780590661,201.916029070504,202.2392221884802,202.24437255272642,201.93382593151182,201.64154422003776,201.45847885636613,202.16505919862539,202.57383935479447,202.14652552222833,201.964600069914,201.50972865289077,200.742275881581,200.94868599716574,201.76489988155663,202.1776899145916,202.0160490255803,201.99287292268127,202.8905295706354,201.98154079029337,202.02557728020474,202.59560177009553,203.01821508537978,203.8136247517541,204.0512337340042,203.79141491418704,202.9512580386363,203.47852264763787,202.94387423433363,202.3279844620265,202.90909310476854,202.96099196607247,202.92811307730153,203.34757844079286,203.387547575403,204.33176291687414,205.2117723398842,204.3835110082291,204.3938660430722,203.85374660417438,203.01879191957414,202.4163289628923,202.58681801054627,202.74337059864774,202.64521725289524,203.58289637370035,203.76915938965976,204.4457447808236,204.4166432642378,205.31216443516314,206.18055428145453,207.11105175316334,206.73224089853466,205.78271069796756,206.06628507375717,206.25496626319364,206.89468479389325,206.0226426264271,206.0085987728089,206.36635644361377,206.51440686080605,207.0645161694847,206.8886310821399,206.8839236884378,206.94946917705238,207.86083135008812,207.36442143516615,207.68396221101284,207.0030784686096,207.83514419896528,208.6371536324732,208.0749615440145,208.56187746860087,208.8936020624824,208.5041760117747,208.85719472542405,209.52522155363113,209.3462542197667,210.23407866666093,210.28503205161542,209.80682069109753,208.91920336941257,209.5695615396835,209.66124758822843,210.1729847881943,211.17171254521236,211.48367969226092,210.95753625268117,211.47843710100278,211.5413222471252,212.029591481667,212.32764952396974,212.2573435823433,211.3146224981174,211.7129742973484,212.27818056568503,212.89264578232542,213.12309772940353,212.42123535834253,212.8017659583129,213.57985447347164,213.6342880334705,213.4276178679429,213.81018732395023,214.26248157722875,213.74975800560787,214.60037331003696,213.9449789156206,214.26210765633732,215.17105086753145,214.98971494846046,215.21612419513986,214.53638844797388,214.1939838565886,214.0506971613504,213.43773501180112,213.7197598745115,213.5970225422643,213.4199596340768,214.16458904417232,214.40092429379,213.5934688807465,213.56094356114045,213.1409071329981,213.88112153671682,214.324086508248,214.42037434177473,214.8019335763529,214.21265757642686,213.63304321002215,213.42176767764613,213.79484895337373,214.33642032649368,214.17264471249655,214.00300239771605,214.6404780158773,215.39208674244583,215.8983455603011,216.099240321666,216.22641344275326,215.49402568442747,214.9695350951515,215.3444885998033,214.59785102447495,215.58071171864867,216.2167111816816,215.9260640097782,215.26709974883124,215.10452595213428,215.2428006492555,215.9109441973269,215.28982041450217,214.8743269778788,215.6297058132477,216.14385753450915,216.6754667297937,217.04663719329983,217.2450552592054,217.17857995582744,217.44275159249082,218.36539842002094,217.64512058487162,217.00175167480484,217.11359206866473,216.93918667687103,217.00913896923885,216.65301472041756,216.8803326766938,217.838536365889,217.4056432666257,218.35574701381847,219.16407906403765,218.22274939296767,217.7347548971884,218.61729909386486,218.87782857753336,217.90916833886877,218.66783607192338,219.04468177910894,220.03107606014237,220.16708666831255,219.50227653142065,218.76700425660238,218.89745346503332,218.51122185355052,219.04038713872433,219.4194691455923,219.32671317877248,219.63929897127673,218.72178220935166,218.33648631908,217.6789857633412,216.9590239142999,217.05017088074237,217.25153591809794,217.4619270726107,216.53673597145826,216.77130254497752,217.61721218563616,216.9810582702048,216.12228537956253,216.606585372705,216.0571291805245,215.88289587153122,215.30034857755527,215.77918759081513,215.18908030120656,214.234663086012,213.34664377896115,214.05033534299582,213.99082884099334,213.90161138447002,214.71617870870978,214.9461589762941,215.69638601737097,214.7215570351109,214.93483499484137,214.27509193122387,213.61343324929476,214.03883026819676,213.66649215342477,213.26437012245879,212.96812017681077,212.82865439215675,213.6580697321333,214.28918199660257,214.876414262224,214.4971773205325,213.6922659012489,213.82097443658859,213.86082600755617,214.1164683336392,214.77382279979065,215.61273461021483,216.04787918459624,215.1158827454783,215.5248145936057,216.24971830425784,216.15841506375,215.6463979887776,214.83248129626736,214.60502091469243,215.02399836108088,214.2970535364002,213.57330153463408,214.50777564570308,214.25218000961468,213.8099067141302,214.23903441196308,213.62890855083242,212.64718314399943,213.24721998395398,212.7970210951753,211.97551879100502,211.7969389334321,211.6393517558463,211.07203320320696,211.38844876829535,211.0915130926296,211.9301505428739,211.54246685514227,211.98303009849042,212.84190287813544,213.30625639483333,212.39576282165945,212.40285862702876,211.872404536698,212.10402037762105,211.35737746814266,211.15844366699457,210.98350596474484,210.56099523743615,211.19248226005584,211.64420486567542,210.72521053627133,211.67316318675876,211.3427512892522,210.50287271197885,210.30699649080634,210.63577376352623,209.7266688416712,209.7496847123839,209.93106886232272,210.0140213253908,209.23939506383613,208.49090526858345,207.60060533042997,206.80076275067404,207.41629546694458,208.3377360315062,208.08219151804224,207.8017528867349,207.46488054282963,208.2312902621925,207.7175463330932,207.20389258954674,207.53467834182084,207.00160982413217,207.00085399206728,207.99539735913277,207.95751187764108,208.1268512122333,208.13689647102728,207.88222961174324,207.1679412079975,207.65600563399494,207.25040075043216,208.20541855413467,209.1719538755715,208.55369150498882,207.77912918897346,208.06404649559408,209.00366844050586,209.1104837139137,209.78476246073842,208.80512198014185,209.74113978492096,208.88636350724846,208.89719957578927,209.7993573457934,209.18841459508985,209.14742359891534,209.8782516354695,210.73129581753165,210.04574988922104,210.93637308105826,210.33897060714662,210.7796996459365,210.1401434005238,210.80810684291646,210.40598263405263,210.94647544017062,210.1780714332126,210.20728825218976,210.3288387330249,211.0880017359741,210.72368888929486,209.99329769890755,209.95130938803777,209.9212677255273,209.9233764759265,210.52520817052573,211.2989883692935,211.16142234951258,211.48587422957644,211.04077482502908,211.7387742223218,211.59916115552187,212.32877009082586,213.2420843951404,213.72851300192997,213.53027333365753,214.31333913002163,213.45520282071084,213.65153857925907,213.79726355476305,213.06942106457427,212.93888531252742,212.94238611869514,212.53774992842227,212.57228886755183,213.36352687934414,212.97979444265366,213.59278015373275,212.76290548080578,213.41086526727304,212.50192605890334,211.96430887188762,211.77217073366046,211.7847589100711,210.93655954534188,211.03972549783066,211.00913642765954,210.44964491203427,209.9750488079153,209.17850574757904,209.19385649170727,208.38893174286932,208.37180378334597,207.51401383336633,208.1492804903537,208.94285983545706,209.04907837556675,209.5612560841255,209.36947160307318,210.0677502346225,209.0953876581043,208.45578079717234,207.54305132105947,207.51813266985118,208.42543830769137,208.41008447716013,209.1841510385275,208.99830269021913,208.79154537105933,208.2705785916187,207.47916336357594,208.08874354464933,208.66504701180384,208.94985663052648,208.0866690785624,208.1587448711507,208.9127263072878,209.21933154948056,209.2036836957559,208.40502140810713,207.76735816244036,207.37046682229266,208.1990424604155,208.34456321969628,207.8003533356823,207.3859032955952,208.29949079826474,209.0669281105511,209.4341528848745,210.2414495642297,209.55118457693607,208.90613648481667,208.86651745950803,209.23120207665488,209.06848536105826,208.2894351957366,209.10109063005075,209.4304698598571,208.43587820697576,208.91935806674883,209.77108027599752,209.27289634151384,208.73659489210695,208.29570363648236,207.4052574839443,207.4353929865174,206.75978485541418,207.11026133829728,206.59183430019766,207.19281041808426,206.59350437344983,207.1442129155621,206.72474949760363,206.38536397041753,206.20191005291417,207.19423081958666,206.9609975651838,206.7664427892305,206.05736221326515,206.07816288992763,206.74740634439513,206.53847062541172,206.5614898148924,207.29930381244048,207.38710166653618,208.37638575863093,208.5234632580541,208.74424649449065,209.64009966515005,208.85622798232362,209.19183395802975,208.43018750334159,209.104443625547,209.86712983297184,210.10852503450587,209.30420180642977,209.99614869849756,209.83637057757005,209.12386266235262,208.93712220713496,209.29784963885322,208.80440397933125,207.89313557138667,208.24096799595281,208.40142005030066,208.71536927390844,208.70659191673622,208.29928700998425,208.94389976514503,209.1852048560977,208.46258744923398,208.52088885335252,209.05449626315385,209.9069195422344,209.3066024868749,208.56062345439568,208.68982980120927,208.53167074127123,208.87403280800208,207.88822093140334,207.5394836505875,208.4232742479071,209.16435972042382,208.86271544685587,208.0908489804715,207.93732376676053,208.7138172793202,209.01197905326262,209.90637786360458,209.03631610330194,208.6446676487103,208.19832499418408,208.99875345872715,209.72305346280336,210.07464006356895,209.95706452801824,209.73752905987203,210.24892386887223,210.9991160533391,211.5336747681722,211.4083744417876,211.8002604865469,212.06010237522423,211.317085722927,212.20991442073137,211.92403979646042,212.8765770047903,213.42235351912677,212.62486198311672,211.66536197066307,210.89290821086615,210.26318631926551,209.67159208469093,209.4509560270235,209.1867104046978,209.4548287759535,209.17119518574327,208.27927364362404,208.21731930226088,208.45657817320898,208.5624647778459,208.6909712329507,208.6687540258281,208.96898620342836,208.89320014137775,209.45027030957863,208.78683573938906,207.92248150566593,208.06527344183996,207.66863411990926,208.50742680346593,208.30618517659605,207.85853056423366,208.1642083339393,208.85018330067396,209.44487958494574,208.59620456025004,209.2496675942093,208.51111512305215,208.05197828030214,208.74647684488446,208.68092312896624,208.6652723341249,208.44270080514252,207.87896104017273,207.59751121001318,208.23583987075835,207.5742586958222,207.07721533020958,207.46520785614848,207.1082541407086,207.1576692275703,207.51030178833753,208.26174977887422,208.79834156343713,209.5402075406164,209.78297536773607,208.81355369649827,208.61081958934665,207.6706756609492,207.27719034533948,208.22244114615023,208.46504775760695,209.44649168802425,209.578256173525,208.85362244583666,207.99867757875472,208.59498954424635,209.40707081742585,210.10173087241128,211.00294275442138,211.84048137627542,211.93122805515304,212.77268303278834,212.20310888066888,211.4747508810833,211.70583581971005,212.0869487291202,211.87251894176006,210.96333223208785,210.3163422634825,210.1472702594474,210.8426224840805,210.3194925794378,211.20234298100695,212.00480121467263,212.64229477010667,212.0033468925394,211.65223524626344,211.07091198535636,210.16207008529454,209.79502795729786,208.96856323583052,208.19943203078583,207.43524306220934,206.81343893613666,206.85502093285322,206.99663764378056,207.9035686100833,208.09315382130444,207.29341546678916,207.39576872484758,208.1902110176161,208.77637635963038,208.70069104619324,208.88420409243554,208.91239015106112,208.98611443396658,208.07526322314516,208.34883575886488,208.21900863060728,208.79949743812904,208.22316709859297,208.12691528629512,207.94330173591152,208.80021655280143,209.13427571579814,209.13355198828503,209.97469712328166,210.28098432719707,211.25735686346889,210.55222751153633,209.84875661646947,209.09711830876768,209.84836205933243,210.2457134053111,210.1405562022701,209.38866870570928,209.04075007513165,208.09009816264734,207.2021941775456,208.1861582873389,207.41499074548483,207.07831074250862,207.80337284086272,208.2694430714473,209.08273164462298,208.54219599999487,209.37752726161852,208.38933251611888,207.50927708949894,207.01031904062256,207.01607709750533,206.3936315649189,207.27429564855993,208.27250670176,207.45881613576785,207.55459673702717,208.31964196171612,208.55024426663294,208.65788937313482,208.59676211792976,209.47528076870367,210.34447318408638,210.80011203419417,210.62418578239158,210.91617892915383,210.57183906855062,211.3099115001969,211.56565751880407,212.32500523515046,211.5391411217861,211.98670182796195,211.5936086452566,210.80560699803755,211.60658062435687,212.48205865733325,212.78172397473827,212.78093882277608,212.75744428578764,212.18911973806098,212.9013636293821,213.5572719955817,213.65759591711685,214.38832326233387,213.75604152819142,213.1319296672009,212.48677176889032,212.41657627280802,213.24403888592497,213.90887041017413,214.64536249358207,215.0470982142724,214.88544923765585,214.9013822763227,215.45286084292457,215.20004974259064,214.35393457999453,213.3800233998336,214.16462320834398,215.0131588387303,214.8625335865654,213.95178367802873,213.88198621571064,214.41115665156394,213.8532997108996,214.71070886356756,215.41249868134037,214.79632100788876,214.94000282790512,215.78848901204765,215.3636468509212,214.58883498748764,213.99428913835436,213.11198296118528,213.98837907332927,213.20898982975632,213.8749005254358,213.40898621547967,212.85594434756786,212.58191301254556,213.5473992708139,214.17049037851393,214.85822965949774,214.53357835207134,215.17032510461286,214.99994259607047,214.64516272209585,213.70388787286356,214.66802398487926,214.8122723447159,214.14437178941444,214.1037162556313,214.45442033745348,214.1175833120942,214.6897785635665,214.17848916118965,215.14888775488362,214.62432437064126,214.92528467206284,214.20229458995163,214.90724954288453,215.48402310581878,215.32720784144476,215.95660416129977,216.05879668332636,216.33038542605937,216.47357722790912,215.65986816678196,216.532562201377,217.4180178642273,218.33368546981364,217.86178230075166,218.01894532237202,217.37307111313567,218.00344311771914,218.50679619703442,217.62886362010613,218.2244569598697,217.4768691570498,216.52402833802626,215.74255140544847,215.47070582862943,215.92199025629088,215.2891664011404,214.53064450109378,214.27325193351135,214.65532913198695,213.70284726377577,212.8641987023875,213.4349306607619,213.7790209786035,214.50093702366576,214.08858776465058,213.40250142198056,214.1039666798897,214.36877998616546,215.24487521499395,214.9024839932099,215.0433938833885,214.3540555187501,215.32805189909413,215.4200463402085,215.03642876632512,214.5839005773887,213.70425055921078,212.9783427999355,212.43255608901381,212.46941338246688,212.11719156382605,211.31451014522463,211.30712533276528,210.8618341255933,210.5178659670055,211.4713310082443,210.78852866683155,210.2872322993353,210.33547081286088,210.26800983771682,210.35887997876853,210.7448675162159,211.4888381990604,211.72625245759264,210.8575970432721,211.5036310828291,212.35300920903683,212.08830058388412,212.33012316888198,212.0380859375,211.78372974600643,211.12088988674805,211.35066711902618,210.96625925879925,211.61836516670883,212.1995408073999,211.33395091583952,210.76652028923854,211.75017045019194,212.516888580285,212.05215928936377,212.53040447738022,212.5139250913635,211.67187600955367,211.62510826345533,212.57154237898067,212.1320908293128,212.4122240249999,212.84111699275672,212.83497443702072,213.67634202400222,213.6395249888301,212.7268508253619,213.25465305289254,214.02935162372887,213.19434353336692,213.5023190784268,213.22841002000496,213.278522151988,212.3937495625578,212.69897494884208,212.15242117270827,211.80296050338075,211.6910741077736,210.70544070657343,211.23527760384604,210.80632425146177,210.39888827083632,210.65386935835704,210.3022098587826,209.4060904509388,208.5258933492005,207.62645566370338,207.59445886220783,207.00828641327098,206.62212223978713,207.42973439302295,208.36257441574708,207.67127116583288,208.34743806626648,208.65766015881673,207.9263353231363,207.7739767213352,208.52504191268235,208.8931020940654,209.11610470805317,209.32758104149252,209.49545582802966,208.62811756972224,207.68207960529253,207.99458916997537,207.83454269357026,208.02727700443938,208.18545502470806,207.4358015228063,207.74758924217895,207.31917591625825,206.6331373238936,207.50713192485273,207.73947339737788,208.55924935638905,209.12203641515225,210.07630805764347,210.45040681026876,211.220124729909,212.20302224624902,213.0466224644333,213.30101455375552,213.3734609312378,213.90796645078808,213.63859379151836,213.99871519673616,214.1495548915118,214.1548356320709,214.3337683826685,214.48476120410487,214.4148920942098,214.37692855345085,213.87457760656253,213.32996232202277,214.0492440550588,213.79868303146213,213.68124631000683,214.50268947612494,214.85549168428406,214.05430543702096,214.398627018556,215.0301353111863,215.64071671990678,216.60759547585621,217.14768862864003,217.45374056138098,217.30141778383404,217.00807415461168,217.51817866927013,218.0604618997313,218.83491913694888,219.03421257110313,218.4090777831152,219.36145451618358,218.4991056052968,219.20703918486834,219.06115411873907,218.71295947534963,218.70932925865054,218.67376501858234,219.36439800495282,218.49094488006085,218.08578283013776,218.7962969127111,218.55418913112953,218.07280440675095,218.08712987275794,217.2485394361429,216.27719688694924,216.31443711183965,216.0375877111219,215.99008163250983,215.73938739066944,214.9911256521009,215.48041375447065,216.01033400185406,215.0112147750333,215.7594573884271,216.18635715777054,216.66848063422367,216.28613307513297,216.67882857797667,215.68747810507193,215.81500340718776,216.10611126711592,216.4420597902499,216.4634604458697,216.51809332612902,215.7492258148268,215.9151981268078,216.31604151707143,216.09712957777083,216.54765013977885,216.092595518101,216.299575204961,215.5122485877946,214.7661662483588,214.04622879531235,214.58012281777337,213.80717716692016,214.3596122241579,214.48268992081285,215.46467126300558,214.92384832026437,213.97974653635174,213.96624063141644,213.83439097786322,214.61495352676138,214.75298056798056,213.75832742638886,214.4374765031971,213.90391085483134,213.96697778254747,214.76430540066212,214.8941798042506,214.52619282808155,214.98085191333666,214.48429460031912,213.66825194610283,213.2954822019674,212.68517194967717,212.15179122425616,213.03333241399378,213.39997534174472,213.82287545967847,213.63905723532662,214.1195562868379,213.33015455352142,214.05691534420475,213.50809651054442,214.45492884796113,214.50525847636163,214.3841168107465,213.47295820852742,212.66476453840733,213.6168470494449,213.50565812317654,213.45358179090545,212.46205860655755,212.43588514532894,213.39717591227964,212.89742772094905,213.55126153724268,212.8374571450986,213.52860332466662,214.46747079817578,214.6003336077556,214.95556046674028,215.09810714935884,214.62394355237484,214.9237689548172,215.4727710383013,215.65479269763455,215.04506178712472,215.5640141526237,215.969417326618,216.81328214891255,216.17797903437167,215.7985542495735,215.3768870914355,214.47814128594473,214.22351553943008,215.08297382202,215.02698746370152,215.05160265276209,215.9739630711265,215.25695499079302,216.17766180075705,217.1112903682515,218.0644321832806,218.7873411634937,219.06520957360044,219.2591696404852,220.18018102366477,219.55679260659963,219.49904650915414,218.54642192367464,218.36136183189228,219.0525516779162,219.98047519102693,220.18001548945904,220.48451316403225,219.5508298613131,219.2050080606714,219.60635299840942,220.39305813098326,221.1411853795871,221.1599084814079,222.13651463761926,221.19105709716678,221.241595946718,221.8672627946362,221.08110558707267,220.85951183456928,220.27362237218767,220.8045075731352,219.80475534126163,220.0519496151246,219.4554837308824,219.0334533471614,218.58542855177075,218.42077964358032,218.90036018146202,219.83194880653173,219.31900850031525,219.99327911389992,220.10892581101507,220.74807792482898,219.80389566347003,219.71601939946413,220.5904521867633,220.9421247560531,221.1919084773399,221.90473767044023,221.10200565680861,220.704686450772,221.50921000773087,221.40817139763385,220.45071912789717,220.48622371954843,221.03356866491958,220.44457628531381,220.71975521789864,221.51578509621322,222.0099588977173,221.95474568521604,221.06111330119893,220.06993568735197,219.296681442298,219.1049370332621,218.68007690133527,218.5138701517135,217.97155342344195,217.67462322907522,216.88707514246926,216.88284876011312,216.31630321824923,215.8310279585421,216.0271546971053,216.03770315041766,215.66755082225427,214.81621296005324,215.37077366141602,214.8751511760056,215.8742375774309,216.65430439263582,216.37714402051643,215.61131796753034,215.84805703582242,216.247749122791,216.73430687980726,216.01482845842838,216.2899681138806,215.76419559540227,216.08856339892372,216.3965414967388,217.20604982133955,217.46451476123184,216.8081002002582,217.5952207269147,217.41594992391765,216.99145902413875,216.27927217725664,217.26070708408952,216.5983124799095,216.09157825494185,215.1940352646634,215.97857961710542,216.45502207055688,217.19114878680557,217.7592485579662,217.2935351198539,217.21439082641155,217.86391558218747,218.41406200034544,218.10547803761438,217.4698196281679,217.6835031369701,216.88583024824038,217.09155238745734,217.50287961401045,217.0799769675359,217.27418214315549,217.62091986462474,216.95129749877378,217.74185209302232,217.8785818987526,217.96892481390387,218.3750102808699,219.106642880477,218.4277013335377,218.9938930044882,218.37375952955335,218.2656126623042,219.10481639578938,218.9628038718365,218.85301287751645,219.58191103488207,218.83572360686958,219.28869323804975,219.63282518275082,220.6034559798427,221.07532224897295,220.32175600714982,220.72507160017267,220.41329366061836,221.27434609550983,220.9639088693075,220.71062589855865,219.80902507482097,219.4739325074479,218.97479804372415,218.65491708973423,219.24269141396508,220.09780803369358,220.20721600204706,220.68656819825992,219.76353861019015,219.0821467358619,219.14151811925694,218.91731676692143,219.62720275623724,220.04282733984292,220.9324165582657,219.96752052009106,219.17599460994825,219.27040640451014,219.77592766936868,220.69091707048938,220.39132599532604,219.7355482634157,219.7359181107022,218.7913519088179,217.85896712495014,216.93393298378214,217.69217052543536,216.74909365177155,216.0427070534788,216.21059097303078,215.89306234149262,216.744743084535,217.20655183354393,217.59706153115258,218.25675261532888,218.50503615336493,217.54804576886818,218.29284362820908,219.2145484839566,219.56479386705905,218.81459327135235,218.049081788864,217.87888183724135,217.08861104166135,217.11099224863574,216.6310318512842,217.2846264964901,218.15639345301315,218.1794178383425,219.13201535539702,219.08878555288538,218.8139983084984,218.11767541896552,217.39771706145257],"y":[52.838807922787964,53.50825291592628,54.030422306619585,53.04147177282721,52.16738332435489,52.72726364200935,52.66227977536619,52.04164374200627,52.455129988025874,51.74385325005278,51.01955497870222,51.07188911503181,51.51968514639884,51.25959542673081,50.522984703071415,50.08343080850318,50.49178524268791,50.72603196185082,51.55858295597136,52.397784169297665,53.265340607613325,53.9113615793176,53.363097997847944,53.448293443303555,54.12035149242729,54.009090315550566,53.59376108599827,53.617700579576194,54.114130231086165,53.90012535871938,54.422249142080545,53.4303689757362,52.79305546730757,53.71696911426261,53.49381323764101,53.35203327797353,54.254590736702085,55.07554341852665,55.423247426282614,54.80835047038272,54.059677777346224,54.80504246568307,54.35577860986814,53.93411581590772,54.5934523367323,55.5301936022006,55.585230662021786,54.90071501582861,55.393340051639825,55.47772212699056,55.39451266126707,55.62144439574331,56.28778959438205,55.510511725675315,56.22577089816332,55.75678478134796,55.36271967412904,55.36397689534351,54.82446056138724,54.18601372465491,53.792631103657186,54.51233344292268,54.8836722234264,54.54862949764356,53.90582645917311,54.03049705643207,54.64833769341931,54.02777054347098,54.44564003450796,55.30347765143961,56.143885746598244,55.33338405098766,54.98673741519451,54.58627200080082,55.20892734825611,55.43952578958124,54.49367154575884,54.18014673516154,53.432574725244194,53.987195392139256,54.374158965889364,55.32155700121075,54.36886863503605,54.07155973976478,53.37973613711074,54.16400913661346,53.53998126881197,53.58819766063243,53.5761637063697,53.88533407635987,52.97770264511928,52.433408515527844,52.72108566202223,53.14624534873292,52.58909690473229,52.25543531822041,52.52667111949995,51.81262808991596,51.69431516015902,50.97128372639418,51.02907197596505,50.78360958117992,50.26416906481609,50.17697480181232,50.928086136933416,50.0196578502655,49.16023000702262,48.98714033141732,48.557361987419426,48.2654801690951,48.94748275494203,47.98934521432966,48.88871556054801,47.958697439637035,48.9199298848398,49.892063634470105,50.605043513700366,49.942440152633935,50.51279206573963,50.89632562967017,50.693620381876826,51.0145005537197,50.60687428154051,49.75319793866947,49.59735630499199,49.34082935843617,49.06275778962299,48.81694769207388,49.133312669582665,48.60652935737744,49.493600881658494,48.85949968546629,47.98337839357555,47.58525458863005,48.33077000081539,47.68280386691913,46.69464420340955,46.5794228091836,47.25749676581472,46.571352815721184,47.31161791551858,48.21849006600678,48.2883635959588,48.54364008689299,48.33065231703222,48.96645091380924,48.51108313957229,49.45260897791013,49.962358511053026,50.11658937158063,50.29913211474195,51.01266852021217,51.56452897656709,52.11490511801094,51.39172592526302,51.26449198508635,51.17422776669264,51.57595971832052,51.80062299547717,51.99003999307752,52.95397574547678,53.44405732257292,52.969486023299396,53.670454426668584,53.89685029024258,54.76395674608648,54.638434974942356,54.79659377876669,55.67735844384879,55.87476893980056,56.50158701045439,56.98107371199876,55.99547763587907,55.09427580796182,55.44287645537406,55.79404054488987,55.3114915266633,56.17078795004636,56.16371505195275,56.94069902319461,55.99441670626402,55.826145491562784,56.592650642152876,56.59739028709009,55.806600227952,55.93606607336551,55.16375315794721,54.174147200770676,55.045812567230314,55.91458999039605,55.006452574860305,55.1352626029402,54.67658331990242,54.451861042529345,54.98920865403488,54.495178564451635,54.84327362803742,54.275072124321014,53.7643473232165,52.9661233657971,53.183743657078594,53.86049672262743,54.254470265004784,54.79207218019292,54.97144804010168,54.27967561548576,55.02402038639411,54.10998784424737,53.64580379612744,52.863969723228365,52.933760019019246,52.35347850713879,51.42505963565782,51.28503446420655,51.87734935665503,51.68677598936483,51.06250852579251,50.534653027076274,51.52507585519925,50.57163308095187,49.60655519505963,49.218064478598535,49.261744047515094,48.51967473560944,49.36794257722795,50.201726539526135,50.22284192498773,50.67589942505583,51.19360191421583,51.67224711738527,52.340362920891494,51.97077909484506,51.84999523265287,51.336215048097074,51.1064978945069,51.582704063970596,52.02393956994638,51.6165223242715,50.90050854580477,51.21048810193315,50.53923848783597,50.90739101031795,49.95387886092067,50.868971122894436,50.59734197426587,51.028060691431165,50.66601700428873,51.04613337200135,51.32245888700709,51.936820675153285,52.52001223806292,51.623419494368136,50.66148257581517,51.07322595641017,51.40000510914251,51.68047391390428,52.49077319120988,52.182459697593,52.13982272753492,52.896910393144935,52.15257677435875,52.35845890128985,51.674087880179286,51.09148325957358,50.21814802940935,49.52974004717544,48.59453017450869,47.6469403533265,46.72362703550607,46.38935349136591,47.245410569477826,47.4124675123021,48.144920396152884,47.20934230135754,46.621619978453964,47.42799604963511,48.28016513120383,47.45804351801053,46.94702531211078,46.89284603390843,46.17569396458566,46.17043227236718,45.55884577939287,45.19555550487712,45.59901968482882,46.33050088630989,45.335061118006706,46.10877613350749,45.34091298794374,45.28687821934,45.667619686573744,46.54965357715264,47.26754686143249,48.1535580358468,48.4739206568338,48.45707349060103,48.30530696641654,47.49306360632181,47.643124419264495,47.441175513900816,47.73314974317327,47.47093341592699,48.34795194817707,47.825768110342324,47.55829389905557,47.34214658336714,46.5969091062434,46.49269409663975,46.0068327174522,46.76944088609889,47.48285507410765,48.3296008920297,47.740587113425136,47.29572421312332,46.575535111129284,46.25879829749465,45.92235499294475,46.487739528529346,46.6190271214582,45.85351296747103,46.52813396602869,46.488286754116416,46.67067429982126,46.74469212954864,45.94993368489668,46.7747903089039,47.23039267351851,46.58991950144991,47.56802301807329,46.710421276744455,46.57168073905632,47.24632098758593,47.13481743633747,46.907624520827085,47.07752399146557,47.011038296390325,47.09422199288383,46.30853977613151,46.70596828404814,47.08641903102398,47.149505970068276,46.94337037252262,46.84481581300497,47.030094576533884,46.101899802684784,47.01450770301744,46.899325971025974,46.973072891589254,47.44355330010876,48.02567742438987,47.07290737424046,46.46889659902081,46.274526957888156,46.625204341486096,45.84905624715611,45.415371800772846,44.973552343435585,44.252339088823646,43.684489462990314,44.67183559993282,44.973477254621685,45.595199099276215,44.71981034008786,44.38203822076321,45.06678772997111,44.689129336737096,45.31129121873528,45.365634330082685,45.52113673184067,46.362208750564605,46.305163314566016,46.54413663642481,46.97595854336396,46.55317640397698,45.864700292702764,45.00173085229471,44.75952955940738,45.27866427740082,45.28552315151319,44.86992428731173,44.94927449384704,44.1954961665906,45.165965212509036,44.67179204290733,44.480796535499394,45.25109941139817,44.263582011684775,44.8516922686249,45.117345694918185,44.87344730645418,45.61357171135023,45.380270603112876,45.97534166183323,45.219298522919416,45.815732995048165,45.6128650684841,46.39723864290863,47.13111698906869,47.57187342830002,46.6096305870451,47.430689222645015,47.49218722758815,48.19003642210737,47.41160393785685,46.804913899395615,47.049515418708324,46.81989491917193,47.338835016358644,47.27655583433807,46.562903658952564,47.44333777623251,46.9217728106305,46.35120238084346,46.151666251942515,46.18379529006779,47.03681424725801,46.611921440344304,46.22216228581965,47.119328097905964,47.25293470872566,46.75603687018156,46.23264076607302,46.81298539740965,46.27137891808525,47.22341417102143,46.70191776752472,47.44221471482888,48.22365986229852,47.38880323339254,48.18781121075153,48.99219777621329,49.12633243948221,49.983939970843494,49.63217327184975,48.73510513547808,48.95509179588407,48.39699597004801,47.95759091572836,47.52970616519451,47.891115362755954,46.90591955278069,46.11692086560652,45.67206885619089,45.62395214429125,45.27569446526468,45.98074680194259,46.00771914469078,45.02774788159877,45.59606715478003,45.336416233796626,46.12037304462865,45.835509398486465,44.95832748897374,44.52123912703246,44.09540773881599,43.208371497225016,43.2562149730511,43.56035505840555,44.0967680294998,43.382636327296495,42.847802232950926,43.03368290094659,43.06805882835761,43.36373271141201,43.774878181982785,43.462482378818095,43.937474397942424,44.27285430720076,44.21473456127569,44.40973861888051,43.475605415180326,42.5501853376627,43.44905681395903,42.787526588886976,43.17710951529443,43.40107362298295,43.15955094015226,43.95255204476416,44.67847376037389,44.56002262653783,43.98410538164899,44.607918036635965,44.86809263098985,45.055131922941655,44.43052822351456,43.90959313698113,44.28961491538212,44.427854609675705,43.73179512144998,42.8518676715903,43.39985246025026,42.62032218184322,43.174695612862706,42.925378871615976,43.22784622013569,43.931486203335226,44.15437091886997,43.615684375632554,43.157134767156094,42.64432646334171,41.77240028651431,41.29991055978462,40.990740036126226,41.90693957498297,41.3078376846388,40.46859935764223,41.34259791346267,40.89613828295842,41.800826692953706,42.31885824538767,41.3201582278125,40.91234068898484,41.00451467279345,41.20426957542077,40.43109404342249,39.6507095717825,39.706359083764255,38.98947710217908,38.59790453128517,39.04155923938379,39.78376244660467,39.426800299901515,38.68987248511985,39.108273439109325,38.97519572451711,38.08222716394812,37.34863041481003,36.688244035467505,35.846072216983885,35.35166975110769,34.518921475857496,34.812695370521396,34.30732881743461,33.80877848993987,32.81481708167121,33.407362969592214,33.465462672989815,33.3730166493915,34.25141788972542,33.25444608507678,33.32113520754501,33.21144912112504,33.49396472144872,33.71758676879108,33.368718444835395,33.89130569156259,34.24065394187346,33.90176834259182,34.002097255084664,34.09296185430139,34.33986538508907,35.32103914534673,35.2147885072045,34.55885558342561,35.05613093217835,35.05263511650264,34.91410648683086,34.84329098602757,35.02917378209531,34.463110350072384,35.44948151381686,34.83429111307487,34.7979299146682,35.23974374262616,35.21256731264293,34.45433701341972,33.515305964276195,33.67123119160533,33.28018183261156,32.606222533620894,31.715183838736266,31.90032451460138,32.287907388061285,32.5417166640982,32.921964863315225,32.67231614049524,32.549049528781325,32.28934543719515,32.14361083135009,31.917300079017878,31.68170802667737,32.06646381923929,32.310707055963576,32.86810192698613,33.23473298037425,32.95674661686644,33.243719602003694,32.248753395397216,31.374434655997902,31.797815887257457,31.881001685746014,31.841497207060456,31.02375869266689,30.140382652170956,29.76429813215509,29.125813708640635,29.593628669623286,29.92468628892675,29.397626583464444,29.206970700528473,28.49045624025166,28.55833107791841,29.091918258927763,29.244737301021814,29.944018620997667,30.572896673344076,31.17457772186026,30.762494983617216,30.413181555457413,30.122515867929906,30.774902402888983,31.24949066527188,30.85688477847725,30.922806137241423,31.105268895626068,31.12412024475634,31.26287818234414,30.311690151691437,31.022174739744514,31.099422725848854,31.087637855205685,31.21481611765921,32.17960532801226,31.363921931013465,31.91473753238097,31.865258562378585,31.825118644628674,31.48657463118434,32.35265759052709,31.803860395681113,30.929141557309777,31.508233773056418,32.12836204469204,31.299398036673665,31.123751310631633,30.12460085749626,30.929896872024983,30.54193833656609,31.45336450263858,31.409662204794586,31.28735466580838,31.667751119937748,31.967237545643002,31.60496268607676,30.865497016813606,30.80106797022745,31.012710786424577,30.705065574962646,31.447847033385187,30.775441136211157,31.70479165110737,30.985196804627776,30.6267826477997,29.723791704978794,28.885967164766043,28.430334642529488,28.660629547201097,29.325485441368073,30.317946115974337,30.528321529272944,31.04841228807345,31.54092392977327,31.32038496527821,31.83923115162179,31.4928910410963,31.985370691865683,31.010119477286935,30.092248594388366,29.290651887189597,30.230702709872276,30.62547219870612,31.37519208388403,31.94032542221248,31.774204476270825,31.05465250555426,30.063695839140564,30.911332793533802,30.34409960405901,31.203146697487682,31.329421418253332,31.45079485187307,32.392912599723786,32.7013225578703,32.38466088427231,31.654241163749248,31.95397433033213,31.568609586916864,30.760164812672883,31.370036935899407,30.518647647928447,31.304877342656255,31.882186624221504,31.898862294852734,32.25044969981536,32.29555785795674,32.66610235022381,33.11758118029684,33.19509837916121,33.11768153309822,32.84800355415791,32.88682835828513,33.64351308578625,34.37969710165635,34.07293068803847,35.05743861012161,34.46246551349759,33.586881008930504,32.97895678645,33.6889431476593,33.56374180642888,33.974001340568066,33.7100228513591,33.323179551865906,32.58604721771553,32.91899509122595,33.67373073892668,34.60544614261016,35.10271076951176,34.12493607448414,34.68220141204074,35.601969497743994,35.676810146309435,36.468310037162155,36.32309808721766,36.55744878947735,36.0102907391265,35.28019537590444,34.714608025271446,34.73485353635624,33.98947407817468,33.47267853934318,33.129557501059026,33.31623551622033,32.80799465160817,32.50929613551125,31.880873581860214,31.52414537128061,32.4152449243702,32.35135923605412,33.261524041648954,33.489093928132206,33.15035256603733,32.951583637390286,32.68972738459706,33.453461803495884,32.990686528384686,33.40357700409368,32.6273768232204,32.189056385774165,31.50210013007745,30.740116976201534,30.507493450306356,29.80517043545842,29.282503663096577,29.831258029676974,30.736182276625186,30.465801391284913,30.638869827147573,30.374638237059116,30.176227462477982,29.38980227895081,30.05471577355638,29.79012979194522,29.56675222190097,30.28674770332873,29.513871050439775,29.219831234309822,29.659722609911114,28.815944268368185,28.545496189966798,28.384974995162338,27.938780543860048,28.64225819380954,29.553799978923053,29.01107498211786,28.57106794649735,28.11124778818339,28.69082322716713,29.480818041600287,29.340444029774517,29.27512804698199,29.46657795459032,29.155773964710534,29.297389956656843,28.61599623411894,28.796031072735786,29.5204807696864,29.42736975941807,29.03690569009632,29.091299494728446,29.198609640821815,29.73057279456407,30.429925970267504,30.277279454283416,30.635052166879177,30.486270734108984,31.211304667871445,32.040612482465804,32.776281313970685,31.869032096583396,32.03399629984051,32.509384077508,33.13953755283728,33.89187576621771,33.93954862002283,33.89851268287748,33.562514529097825,33.72324761655182,34.389449870213866,34.88247544784099,34.342028472572565,33.81281207501888,33.441707451827824,32.69425603887066,33.13388330070302,33.179878493305296,33.6810103575699,34.338384746108204,33.784482444636524,34.527425333391875,34.023819969035685,34.726258121896535,35.348659961950034,35.08340022340417,34.39228213671595,33.917637339327484,34.4392046877183,33.44747758517042,33.02324617980048,33.315554895438254,33.43356046034023,33.52735584694892,34.07816485641524,34.03325221920386,33.66560114407912,32.98417164199054,32.20343582239002,31.381707567255944,31.18128250911832,31.87292629526928,32.76534754782915,32.918379252776504,32.7235897872597,32.768569567240775,33.28299870528281,32.7088748794049,32.51785517949611,32.40222893282771,31.446922424715012,31.006928109563887,30.81107592396438,30.22206096118316,29.596879090648144,29.802686675451696,29.808094416279346,29.028167027048767,28.12078290199861,28.480682439170778,29.050805302802473,29.924361949320883,30.34094050573185,29.844389682170004,29.63323110807687,29.975851857103407,29.48949028691277,29.205815761350095,28.603725196328014,28.48037435207516,29.124569897074252,29.705751731991768,30.02567326137796,30.70924738049507,29.944863102864474,29.549970052670687,29.245080306194723,30.04514923132956,30.204767900519073,30.389250358566642,31.152602062560618,31.98999703070149,31.360433973837644,32.13461175747216,32.830240102950484,32.53368222247809,31.60844296310097,31.10649651521817,31.288563975133002,30.939692340325564,30.378934583161026,29.654067848809063,30.48280943185091,30.590740471147,30.484036533161998,30.387234135065228,29.76906929910183,30.711605460382998,30.489637410268188,30.039759954903275,30.951462497003376,30.19606589851901,30.61803419329226,31.186598839238286,31.071931961923838,30.979750997852534,30.332534614484757,29.884897358249873,29.284950044937432,29.14049415802583,28.95358077948913,29.337024838663638,28.73008515732363,28.196922798641026,28.437310461420566,28.324145007878542,28.037112161982805,27.756404660642147,27.9007082558237,28.202357625123113,29.11161344544962,28.590058406814933,29.30140230525285,28.392065414227545,27.592930506449193,28.090404201298952,27.43379555037245,27.35266874684021,27.584730831440538,27.075462449807674,27.16607790766284,26.28463851241395,27.006033289711922,26.925078014843166,27.693059995770454,27.910035564098507,27.554833356756717,28.081449929624796,28.084042659495026,28.67628489807248,28.10826302645728,27.660776933655143,28.553898728918284,27.74664929602295,27.912772290874273,27.451225920114666,28.102042907848954,27.383159420453012,28.333601540885866,28.273885631002486,28.514990863390267,29.419301663525403,30.33260198077187,29.575916475150734,29.58292685262859,29.300715785473585,30.155478991102427,29.317113250494003,28.605333949439228,29.526999216526747,29.709653912112117,28.755173028912395,29.64519875589758,30.356387222651392,31.24079711921513,31.926468495745212,31.119563441257924,31.950465072877705,32.08911327784881,31.589878938160837,31.75268891407177,30.903734358027577,30.580583549570292,30.705104067455977,30.4943615780212,30.40424305666238,31.192326232325286,32.12163744587451,31.1788676395081,31.39580891095102,32.32982394564897,33.16164261242375,32.475487143266946,32.55574819538742,32.76227010320872,32.27261271746829,32.42664044955745,32.75032903300598,33.72399358265102,34.01526370411739,34.76923859771341,34.35867272876203,34.352029448375106,35.05770414834842,35.507244006264955,36.34107256308198,35.52739540627226,34.891698866616935,34.556588833685964,34.03655304433778,33.50160653190687,33.60431334283203,33.25552011048421,33.73261705087498,33.10200764145702,32.6911312318407,33.32008638046682,32.90459576621652,33.555307131726295,33.435125411022455,34.41196264093742,35.121305130422115,35.57452552160248,35.46921052644029,34.472915957681835,33.991824488621205,34.955855486448854,35.68189229629934,34.80882424348965,34.76849556341767,35.53426062082872,36.518834550864995,36.54325325321406,35.707860292401165,35.776933948509395,36.38052524905652,35.585799062624574,34.78285066597164,34.77704240148887,34.551267781760544,35.43990909541026,35.2842726171948,36.26964362198487,35.50694880774245,35.75470335036516,36.257208064198494,36.01575512532145,35.35967535804957,35.83594216033816,35.37185656093061,36.170051684137434,35.58928332524374,34.79272967809811,35.18435391318053,34.92114910669625,34.45040959818289,34.9741998584941,34.14814154570922,33.26035273913294,33.8628176744096,34.41680341120809,35.161982857622206,35.50187088968232,34.69582731137052,34.969987764488906,35.66356802498922,36.246545475907624,35.80045867152512,36.2261289129965,35.997574981767684,35.16371018439531,34.9095653006807,33.953838045708835,34.498131898697466,33.99718922097236,33.14517810288817,33.548871784470975,34.248101267032325,33.25029758922756,33.30900230258703,33.87757276138291,33.62533857813105,34.33356430148706,35.19299544626847,35.59481772175059,34.7160132965073,35.66784768551588,36.44139250740409,35.686141467653215,34.732554332818836,35.57232516864315,35.074594765435904,34.4226007447578,33.78674643160775,33.31822026381269,32.58540578605607,33.487256383989006,33.71064892876893,33.44551510317251,33.65180243412033,34.444955511018634,34.36057360237464,35.346795451361686,35.79505442082882,35.263713236898184,34.84323923662305,34.03255216218531,33.492446940392256,32.62146525690332,32.56678041256964,32.50254024984315,33.2261828170158,33.115364744793624,32.18456530338153,31.281928871758282,32.00877313502133,32.414328179787844,33.34303687745705,33.80048785498366,33.20042338548228,34.1561834118329,34.83139544446021,35.45461475569755,36.068026589695364,36.52799324365333,36.61432111961767,37.42457615118474,38.109377175569534,37.79214813839644,37.34447138616815,37.66986554628238,37.14329453045502,37.23055518139154,37.307547328062356,38.046224027406424,38.933053340762854,38.347143792081624,37.62499617738649,37.29790322761983,36.34906482603401,36.66924850223586,37.159503856208175,36.51830083690584,37.02600118890405,38.024986227974296,38.467236042488366,38.80616679601371,39.341098059900105,39.83056094124913,40.22915789484978,40.75918447738513,41.46471394831315,42.125777477864176,42.11770051717758,42.9807970453985,42.86018375214189,43.74736393149942,44.0043259174563,44.263115021865815,43.7636495642364,43.44061542954296,42.78773454250768,42.009351167827845,42.59325779415667,42.60633278032765,42.12761491164565,41.131453316658735,41.20290334429592,40.24873966258019,39.64058728469536,40.10010123765096,39.83063326589763,40.54643796430901,40.53923962311819,40.624710427597165,40.22684163227677,41.08473500562832,40.16012219199911,39.41898010810837,39.81566738849506,39.233557891100645,38.42207900714129,37.57375653274357,37.13492108043283,36.835338877514005,37.38555055717006,38.13023067545146,39.008409223519266,38.74993605585769,38.770690421108156,39.67215870227665,39.17125777155161,40.04699990618974,40.67456801934168,39.870242833159864,40.75353660713881,41.720528996083885,42.4593894733116,42.1738019939512,42.024382314644754,41.96056838519871,41.42453047353774,42.3296675006859,42.06114982301369,42.02042509475723,42.46146693220362,42.510721064172685,43.23137184698135,43.589410465210676,43.33912260364741,42.48417003918439,42.591121919918805,42.4529391056858,43.15811290638521,42.83024511858821,43.79640400549397,44.62933605071157,44.31917120469734,44.64444144023582,45.498143918812275,44.57163181062788,44.61149370064959,45.29899430973455,45.136721200775355,45.786077606491745,46.51883996324614,45.697342820931226,45.415077227167785,44.54551786603406,44.053940419107676,43.06606707442552,42.59581316076219,42.351685002446175,41.57521152449772,41.67910701595247,42.14160931343213,41.994698219466954,42.71691429056227,42.799278537742794,41.80503528704867,41.710791590157896,40.76383034698665,40.24200199218467,40.581261523999274,39.794541189447045,40.5552297453396,40.264926340430975,40.911419726442546,41.45193695509806,41.88569102063775,41.33053483534604,41.60546119790524,42.137080552987754,41.26123299729079,40.322605235967785,41.30561020318419,42.23477608989924,42.0102460924536,41.114739764947444,41.54189622821286,41.45330164814368,41.235283273272216,42.0229895147495,42.89795640995726,43.076299445237964,43.86963156564161,44.459482265170664,43.622710020747036,43.348885379731655,42.99212620360777,43.39730967953801,44.00351190613583,43.53895922983065,42.88123905332759,43.18387522781268,42.679461831692606,42.39620249858126,42.44069692958146,41.69024214800447,41.725372600369155,41.42310390248895,41.34297870565206,42.20323800854385,42.63092586956918,41.781048310920596,41.44395345263183,41.72150966664776,40.866721271537244,40.451305225957185,41.321354559157044,42.01563618518412,42.93033122178167,43.04715110454708,43.51587640307844,44.22093504341319,44.323898774106055,43.71908020833507,43.928856630809605,43.667271179612726,44.03445290820673,43.757115533109754,43.444077405612916,43.19256051070988,43.28123421641067,44.04496829584241,43.706095478497446,44.41188262263313,44.58717360114679,43.73064983310178,42.939726368524134,42.42095979489386,41.94333332031965,41.11191816441715,40.36266274051741,40.685311117675155,40.03039729781449,40.7760330690071,40.70724342111498,40.44336466444656,40.032357099466026,40.871674423571676,41.653743953909725,41.95390739897266,42.61703455867246,42.29484554613009,41.79502902785316,41.42425640951842,42.025135094765574,41.51842033164576,42.1907417611219,41.726007893215865,40.867411899380386,40.38879854977131,39.54565830249339,38.93706082645804,39.17288001952693,39.855377638246864,40.45978326210752,41.16832718625665,41.02772842859849,41.356812121812254,42.123895382508636,41.51545810326934,41.62197847524658,41.42471855785698,41.763881338294595,42.54044009000063,43.5364355314523,43.247296184301376,42.73143929289654,43.232903197873384,43.73651522397995,43.56554750353098,43.59567189682275,43.62194303330034,43.482465921435505,42.49867778737098,41.514110937248915,41.3445933079347,41.14681192487478,40.41774832410738,40.775579679291695,40.668329210951924,39.95101864077151,39.11621875409037,38.858904119580984,38.89134287042543,37.97436498012394,38.11181450029835,37.25707812095061,36.53181414445862,36.108412857633084,37.01062133675441,36.80607028398663,37.07445619441569,36.71290081040934,35.83605885412544,36.70727747771889,36.39202803745866,36.53907192917541,36.77900436706841,36.83177858963609,36.45692473789677,35.66570978984237,36.62928337464109,37.24547226121649,38.00262114731595,37.62774333404377,38.23020453704521,37.267991527915,38.11154784960672,38.62419194821268,38.971078395843506,39.790711568668485,39.16608473006636,39.41162494150922,39.61214099498466,39.25065481616184,39.831945850048214,39.56683010375127,38.81937412451953,38.62581115355715,38.556909564416856,38.47492359438911,38.73697376437485,39.704396141227335,40.250501482281834,39.42285887431353,40.179709473159164,39.916418755892664,40.25047353329137,41.231859722174704,41.41766893025488,41.050781595055014,41.46607629023492,41.421571142971516,41.05692880228162,41.7875892422162,42.66031842119992,42.79026000620797,42.79116464033723,42.192954145837575,41.218834024854004,40.53164966776967,41.071193324867636,40.3380448394455,40.697271088603884,40.240095381159335,39.910878950729966,39.922314858064055,40.54592942027375,40.06664255214855,40.19011209765449,39.38052973896265,40.0328362416476,40.47705532750115,40.796616066247225,39.81198978377506,40.24400481255725,39.74990335153416,39.90832348167896,39.07205579429865,39.243280824273825,39.21418328769505,39.39385739294812,39.778933892957866,39.556214632000774,40.17535334452987,39.524253519717604,39.41188634093851,40.07999487174675,39.13303658599034,39.8797223768197,39.67202983563766,39.95594473835081,39.95902457507327,40.78085096599534,40.333823756314814,41.266344885807484,41.31301362905651,41.54583084303886,41.035337451379746,41.67579099023715,41.63475258089602,41.32527174195275,40.80977260693908,41.25513648567721,41.84947481844574,41.60827225120738,40.98852112237364,41.02465730160475,41.39139484567568,40.84261291101575,41.132366065867245,42.043090748135,41.99195303209126,42.1629773513414,42.77702608285472,42.731966223567724,43.682212478946894,44.49572006240487,44.60282683605328,44.21986188367009,44.902028436772525,45.17063149437308,45.32688769930974,45.59537888644263,45.30348960822448,44.7916006189771,45.37974012317136,46.27456258004531,46.38446384714916,47.280463869683444,47.645689693745226,46.94447586545721,47.36521614296362,48.263612726237625,48.25707503175363,47.94656904600561,48.7636434067972,49.59972642175853,50.11693021748215,49.75712701166049,48.85037267068401,49.57905206736177,48.679926643148065,48.64531924761832,48.62629394046962,48.09636815357953,48.76104101864621,48.26752431085333,48.42415951099247,48.49349293112755,49.40098116733134,48.51336120022461,47.64768953202292,47.76917218789458,48.148691120091826,47.29149925149977,47.430148164276034,47.42064072424546,47.24753276119009,46.84932113112882,45.88950208760798,46.11470919288695,46.75560477701947,47.09148556506261,46.930513746570796,46.62116800202057,46.17502568475902,45.799569906201214,45.862479080446064,44.9186252001673,44.871036641765386,44.24653912847862,44.909540781751275,44.67781467316672,44.379397683776915,44.68845459120348,43.97976597584784,44.37033076444641,43.69840578921139,43.00154424505308,42.5234550870955,42.99076931504533,43.476590069942176,42.97398285288364,42.72551624290645,41.85251416359097,41.34905052976683,41.727163177449256,41.674831348937005,42.02136313263327,41.5034073763527,41.949670776724815,41.61257231840864,40.91367271589115,41.39504177169874,41.92637633206323,42.569243307225406,41.96012028073892,42.49033031007275,42.731494123116136,43.09195382101461,42.93432629248127,43.60184476012364,43.02181107411161,43.437957904301584,43.92247676476836,43.60718551417813,43.97048317687586,43.465999527368695,43.55134620750323,44.46122784074396,45.15408490691334,44.52531049773097,44.83838149905205,44.727114900480956,45.21658373856917,44.84472359716892,45.66373809380457,45.85038387449458,45.80093688238412,45.570713500957936,46.38951376127079,47.10917551862076,47.91656231647357,48.82610643468797,48.51874535996467,49.2219828995876,48.673319436609745,48.83228796441108,49.180105307139456,48.38679608516395,47.5135307922028,46.87137149088085,46.2158364248462,46.495778610464185,47.323894567321986,47.9690575893037,47.283877942711115,48.06716946559027,48.36423479905352,48.65590750705451,48.968857494182885,48.32184415822849,48.03343271650374,48.07202322455123,47.75934229372069,46.89555136486888,46.38831635657698,46.43946541287005,45.51135677518323,44.782693206798285,45.1384983942844,45.229165903292596,45.28126814775169,45.49762803083286,45.233387721236795,45.6796100162901,45.31814215146005,45.65910826250911,45.67436691839248,46.59693788271397,46.90419749356806,47.47496843896806,47.65884121321142,47.99447660334408,48.606831015087664,49.5612335386686,49.27064860565588,48.45570238074288,48.635984397958964,49.585067556705326,49.25272625917569,48.3319897162728,49.00822875602171,49.54440506082028,49.38147946074605,49.908765404485166,49.35938583454117,48.775729324668646,48.37066174624488,49.08607984287664,49.621195062063634,49.44736924767494,48.49119750922546,49.37458580033854,49.8786684749648,50.81051655160263,50.32465196866542,49.82071811379865,50.49662482133135,50.54951283056289,50.41979083279148,50.08831339189783,50.94430166995153,50.09651947580278,49.781781231518835,50.78058165265247,51.44899775413796,52.07522783335298,51.17623894289136,50.994115781039,50.720394015312195,49.885883623268455,49.532726515084505,48.731616374570876,49.58845699718222,50.3382853907533,49.75424946658313,49.61476927623153,48.670118387788534,49.354663194622844,50.316549147479236,49.392259067390114,48.842725437134504,48.19319681916386,48.40536544052884,48.20280193351209,48.82882821280509,47.83591323811561,47.6438740673475,47.876353883650154,47.81191807426512,47.77907256735489,47.84940928872675,47.0153420958668,46.430850526317954,46.26950409356505,45.802722378633916,46.596325878519565,46.31341728568077,46.97564642736688,46.698182495776564,45.84213275834918,45.469632405787706,45.09843619354069,44.858240557368845,45.753317195922136,45.939535905607045,45.75892875622958,45.924107026774436,45.37732009170577,44.933166249189526,44.20668343361467,43.924607425928116,42.95822874037549,42.19268885161728,41.92451597750187,42.87177465111017,43.132509586866945,42.99554296117276,42.56946972105652,41.75135835073888,40.990342751611024,41.59856574749574,41.31874610949308,42.118484972044826,41.7676709163934,42.23082547960803,42.945398644544184,43.287610738072544,44.20736593520269,44.416911703534424,45.2007856532,45.037002958357334,44.600721593014896,45.54071357706562,45.671032981947064,46.479134229943156,47.279846127610654,48.182141355238855,47.44969544513151,47.625356040429324,48.06064935866743,48.299378307536244,47.42904168041423,46.81715073669329,46.00357747823,46.03024926967919,45.30682996334508,45.01075051398948,44.47107351291925,43.84480705903843,43.704873599577695,43.67724463855848,43.418671841267496,42.51279337471351,43.43466308293864,42.7806899654679,43.663877124432474,43.56467982940376,43.67930045351386,43.44745516544208,42.949706175830215,43.77234225347638,43.80760397622362,44.53759424574673,44.155795079655945,43.68892223574221,44.448451013769954,45.2337227971293,44.307686736341566,44.116245412733406,44.5422049141489,44.79846423724666,44.48167392006144,44.572677246294916,44.30752557236701,44.85114281019196,45.113863843493164,45.01141812419519,45.63242704095319,44.94494204875082,44.594568808563054,45.39190310193226,44.91754319611937,44.00603953143582,44.83296370366588,44.560570378787816,45.337193134240806,46.0787968961522,46.04334656149149,46.463065293151885,46.778962599579245,46.301574571523815,46.66417934373021,46.98338405974209,47.50950885750353,48.10537295229733,48.19993004063144,47.652650072705,48.30281500983983,48.992345333099365,48.86942097404972,48.67975054169074,48.03787547536194,47.889073454309255,47.60630680155009,46.74986250139773,46.073901555500925,46.22246142150834,45.65890592103824,45.85318330209702,46.54405285604298,45.62804373400286,46.033348297234625,46.512365233618766,47.14683828968555,47.54593028174713,46.58005180442706,45.88637623889372,46.12464482476935,46.3635486708954,47.25621966738254,46.77056387718767,46.487287593539804,46.8722434528172,46.62987998640165,46.592403390444815,46.85219950368628,46.94787300005555,46.525459547992796,46.38598938798532,45.909884702414274,46.07473265985027,46.23997347941622,46.03228054288775,45.13046378083527,45.17036333074793,45.574576050043106,45.52348874695599,44.97436330281198,45.316447734832764,45.56040857313201,45.34623576467857,45.117979298345745,45.184256862849,45.04303024569526,44.272807320114225,43.710596239659935,43.88369178585708,43.200988326221704,43.62369158072397,42.64647468738258,42.513522291556,42.26364357629791,43.08651963248849,43.455335253383964,43.39682988310233,43.467387828975916,43.649151590652764,43.81202276237309,44.77683772984892,44.940316579304636,44.805761432275176,45.28920700773597,45.73158743791282,46.11669867672026,46.39416941534728,46.833785178139806,45.89093559095636,45.112310849130154,45.598097384441644,46.03693090751767,45.28064297651872,45.07321004057303,44.25884922686964,43.37587921554223,43.69764216942713,43.94383817631751,43.38901554234326,43.98329100944102,44.9367519877851,45.480491139926016,44.56553870532662,43.96075098076835,44.760865109506994,45.56998990662396,46.43955312343314,45.7445018813014,45.77568423375487,45.12944791838527,45.72967188851908,45.154519809409976,45.0219344496727,45.457458755001426,45.248767361510545,44.537935042753816,44.18775134207681,43.843141292221844,43.19044264731929,42.3436777102761,43.280408846214414,44.120001843199134,44.725180057343096,45.69284122670069,45.0177954826504,44.96233421564102,45.80721498653293,44.83965529454872,44.316874247509986,44.31260290276259,43.60274730529636,44.58522974886,45.26252910774201,45.76497103087604,46.3120785607025,47.01739361835644,46.905383105855435,46.42553259432316,45.44217578880489,45.59230723651126,45.1030713301152,45.88030240871012,45.05032138386741,45.228353899437934,44.50114062335342,45.16903985431418,45.4876601616852,44.97931909793988,45.58046364970505,46.19413440627977,46.17490771273151,46.581862923223525,45.6444447664544,46.55261720530689,46.18076620763168,46.639973872341216,46.52391070034355,46.82462158566341,46.82252120645717,47.535488308407366,48.378049426246434,48.174617463257164,48.406578361522406,47.82386694662273,47.99354451475665,48.28697227220982,48.99327758559957,49.322386618703604,48.58093214221299,48.299086939543486,48.17599605862051,47.25070878537372,48.08231837907806,47.812989306636155,48.35607213480398,47.44810437457636,47.28511777566746,46.799527999944985,47.129351949784905,47.28462608717382,47.74325070576742,48.01017852732912,48.723310673143715,48.750803051516414,48.508980247192085,49.37920754542574,48.43748874403536,48.50486488454044,49.080895595252514,48.50845099193975,49.39336610818282,49.155672582332045,49.37827634019777,50.14530987851322,50.86105115618557,51.186126676388085,51.20943248970434,51.91881366586313,52.063756234478205,51.976479979697615,51.70148568414152,52.567084963899106,52.10962964780629,52.951264523435384,52.91211919533089,52.672153752762824,53.54353160178289,53.95576836261898,54.61797524988651,54.070722876582295,55.02850242704153,54.63248544326052,55.14149232953787,55.79899110458791,55.61904683383182,54.942551862914115,54.07195344660431,54.577399463392794,55.19459578720853,55.4308349872008,54.538629088550806,55.52348331222311,56.08281047223136,55.80485532479361,55.33203496132046,54.99790287995711,54.236494284588844,53.77804765291512,54.04682494327426,54.19247556338087,53.81688637752086,53.90437878575176,53.15408669319004,52.171332641039044,51.281601595226675,51.652538161259145,51.23425471037626,51.667427248321474,51.59399737929925,51.85324850026518,51.98572246916592,52.53839867329225,52.652842194307595,53.421244400087744,54.07608883222565,53.49107030592859,52.79974113591015,52.934656290803105,53.358039748854935,52.84149202750996,53.75324354926124,53.97306823171675,53.05917144892737,54.04975432809442,53.799528662581,53.22745800111443,52.8448264230974,51.937424117233604,52.819637985900044,53.08465440478176,53.249096219893545,54.21317187184468,54.07965684821829,53.84859736869112,53.17794533632696,53.766491655725986,53.78719448717311,54.3680598847568,53.790061426814646,54.308424504473805,53.64147380925715,52.67946859402582,53.475009384099394,52.79390736622736,52.68034208752215,53.17569634318352,53.43989803502336,52.6379805165343,52.60086954059079,52.33821628522128,52.5595351238735,52.114663688931614,52.28595343558118,53.12070843670517,52.984700221102685,52.74795781029388,52.66568170720711,52.757427346426994,53.40207444364205,52.9231210523285,53.443494885694236,54.10665811644867,53.60548575501889,54.5033145127818,54.35806709667668,54.66859065648168,54.45803633192554,54.02645605476573,53.70288622099906,54.51656460389495,54.59904837375507,53.958942404482514,53.400060031563044,54.09758291998878,53.18498746585101,53.796356848441064,53.78956178901717,53.30959756486118,52.45202966174111,52.924440721515566,51.948297020513564,51.329170589800924,51.73324927035719,52.13469571247697,51.28461700445041,51.357831441797316,50.64814393920824,50.60285700112581,50.12214915687218,50.27282068086788,51.21738339262083,51.1315823844634,50.2828972726129,50.81249682791531,51.27776396414265,52.179685772862285,51.288551796693355,52.15712728584185,51.68047266965732,52.111299402080476,52.01996036386117,52.49675408238545,53.248530586250126,53.25723111676052,54.15514178201556,54.6576208146289,55.65582221420482,54.89113394031301,54.65947386901826,54.460809828247875,54.767015860415995,54.54208893887699,54.38304794114083,55.06751896906644,54.333418894559145,55.29526144498959,55.21745766233653,55.681253474671394,56.002825788687915,56.32899981737137,55.935589452274144,55.25322287110612,55.816446017008275,55.68901164084673,56.22712575132027,55.74269190290943,56.68296151608229,56.38128311187029,57.200912666041404,57.52403361396864,57.833849696908146,57.53617054829374,57.91745636193082,57.76125844847411,58.04858409054577,58.18327603628859,57.82964308233932,58.2799467346631,58.56978766480461,58.17125303391367,59.037398354616016,59.68418666254729,60.40794276539236,60.4715808974579,60.93685216875747,60.06193746253848,59.491549600381404,58.580172456335276,57.6865535415709,58.315677277743816,57.566194356419146,58.02199567016214,58.851795179303735,58.569378392305225,58.98764423560351,58.40299685951322,59.2105584111996,59.92383248358965,60.89906423911452,61.40791200939566,62.0712688989006,61.37037726584822,60.78126697009429,61.44652135157958,62.00984857510775,61.805718171875924,61.57957173604518,62.09815914183855,62.36612488050014,62.38427136326209,63.36969422688708,63.63276659604162,62.69356324058026,62.05570430401713,62.22784406505525,61.416490972507745,62.1719711907208,62.79379165172577,62.652359197847545,62.00118107441813,62.622814499307424,62.45292854402214,62.20332722226158,62.85764286108315,62.7051719375886,62.50570608722046,61.877699760720134,61.28256474528462,60.76296957815066,61.677476628217846,61.44069909397513,60.55641237413511,60.858690564054996,61.4659140012227,60.89488795446232,61.315366385970265,62.08283001836389,62.62040127068758,62.587720677256584,62.4877021308057,63.11440614843741,62.13030870538205,62.15529777947813,61.15819235658273,62.04446192923933,61.655895770993084,60.93960038712248,60.70178738003597,61.131191740743816,61.28150185663253,60.632081530056894,59.900001576170325,59.218646133784205,58.52731124125421,57.66890177875757,56.88631998794153,56.637345413677394,56.3919557062909,56.646039289887995,57.16772070946172,56.168271142523736,55.26290583005175,56.24873536406085,55.422058081720024,55.48588483175263,55.96625354047865,56.907377048861235,57.632821997627616,58.250611275434494,57.99513900792226,57.08093982655555,57.19856351893395,57.121626837179065,58.10278860479593,58.23955616494641,59.001842860132456,59.367216813378036,59.81469252659008,60.49921242007986,60.1591389356181,60.058082073461264,59.32827198738232,58.539404545444995,58.496166264638305,57.71550585376099,57.34474002569914,56.5383621994406,57.39507126947865,56.626698140986264,56.65825638035312,55.79994274349883,56.72526741679758,56.646083873696625,57.14580033393577,57.302614071872085,57.7384824808687,58.07610215432942,58.38195575401187,59.34293938893825,60.10708691831678,60.60104794986546,60.34005381120369,60.37207665061578,60.140042742248625,59.993006222415715,60.52817305130884,61.209824139717966,61.89970025792718,62.67881165398285,62.07338008843362,61.56940379459411,62.16387361148372,62.09737976081669,62.4378963727504,63.09026317298412,62.33473584521562,61.66140781855211,62.071931614074856,63.04792769346386,63.57508767489344,63.392056432552636,62.95112457731739,63.85539821302518,64.43888948345557,64.00544403679669,63.35228469641879,62.63918549800292,62.02157593751326,62.627175020985305,62.57556661590934,62.96779893711209,62.62648409465328,62.60664982581511,62.78059544088319,63.73892978718504,62.94906261889264,62.29190706182271,61.786335833370686,61.16669262340292,61.89366256352514,61.3142575728707,60.430288441013545,59.43781864549965,60.33994906069711,60.26623028330505,60.32240925030783,60.56177684571594,60.54098361544311,59.913458458613604,59.21605191845447,59.55767654301599,59.83651099354029,59.62277631089091,58.9181494130753,58.670696284621954,58.48900720104575,57.72129456140101,57.04063061159104,56.06902184989303,55.47639826359227,55.40598576143384,55.221182726789266,54.62759527238086,54.5987117998302,54.47413499560207,53.60462891776115,54.50938620651141,53.5808858750388,54.393533687572926,53.48515378078446,53.488087113015354,53.29916344070807,52.862147932872176,52.82247754279524,51.93353777425364,52.78732521738857,52.989872104953974,52.42817771947011,51.6393940737471,52.27180949272588,52.64129609055817,52.573760362342,52.77258964953944,53.69698321027681,54.67483944632113,55.415052792523056,55.14220880297944,55.10812261607498,54.70556972641498,53.749714251141995,52.96369712986052,53.5649664029479,53.68694336898625,52.73022799938917,53.43873486109078,53.32533664535731,52.74898095848039,52.776565064210445,53.39770491467789,53.615331986919045,53.19922831701115,53.17556957574561,53.432982130441815,52.812360395211726,52.44004699587822,52.43606853391975,51.624040990136564,52.33520752051845,51.95998508064076,51.21898062713444,52.03453078167513,52.52027143817395,51.938017706386745,52.6909563858062,52.47549850214273,52.205931059550494,52.22472855495289,52.17698846524581,51.53398699685931,51.01174632832408,51.73711474146694,50.98781397892162,51.48337689880282,51.805836722720414,51.028383859898895,50.22728155460209,50.65073771076277,51.62519631907344,51.598448356147856,51.527991907671094,50.98278975253925,51.15378537820652,50.82416263828054,50.607776913326234,50.510265541728586,50.634101109113544,51.46251717535779,51.7186329504475,51.43072384921834,52.421710149850696,52.72603106498718,52.39426288753748,52.365314605180174,52.16559342760593,52.674808288924396,53.43396194651723,53.65146846603602,54.32992217037827,54.96351969288662,54.637293458450586,55.544906713068485,55.46619597496465,56.19467860786244,55.48065655911341,56.2009777193889,55.79546320065856,55.683370038867,55.34381562937051,55.4596271966584,55.065832149703056,55.051831368822604,54.22758611198515,54.99314338946715,55.67811026843265,54.8231438617222,54.88735074037686,54.0467846323736,53.355634511914104,53.062143977731466,52.62660968257114,52.33389562508091,53.294947104528546,53.025551214814186,52.21859655762091,52.4492072626017,52.303296307101846,53.30235179513693,53.60567448101938,52.95033189468086,53.178914215415716,53.645474632736295,53.091617522295564,53.912355915643275,54.01209466718137,53.23287767963484,53.34482995746657,52.72356076864526,52.34866885282099,52.53336688503623,52.87061037356034,52.47636935347691,52.336871596984565,52.729173285886645,52.2874731332995,53.05494191404432,53.89775719912723,53.912125242408365,53.95277348998934,53.87381411809474,53.824183464981616,52.94959927722812,53.035385800059885,53.34154972434044,53.58481138525531,52.61340357782319,53.25407150061801,53.2932258201763,53.69181023398414,54.14737178105861,53.85729100974277,53.465955117717385,54.32769678719342,54.59915244206786,54.974194994196296,54.28718320885673,54.00058843102306,54.30587897030637,54.21848118538037,53.50848895823583,52.67931502684951,52.157184288371354,52.9421491776593,53.28284815046936,53.83847282640636,53.20992555562407,53.46046645240858,53.33637117780745,53.51031247433275,53.31540520209819,54.29727575695142,54.03469336126,54.47497462853789,55.07151507306844,55.438785990700126,55.65027887793258,55.2889449656941,55.23658237233758,55.76202830672264,56.452537599019706,56.40259913774207,56.59236526163295,55.73966095596552,55.01388763124123,55.0723745780997,54.79239877779037,54.408360632136464,53.431108376476914,53.63407011516392,52.851735525764525,52.90746641345322,52.27031990326941,53.02115120366216,52.59439750434831,52.975732043385506,53.758363756816834,54.51180594274774,53.59166559809819,52.860178316012025,52.12051962176338,51.53034982737154,50.58981269644573,50.99904650636017,51.76397096645087,52.55088844103739,53.4849118120037,53.53955636639148,52.7666133469902,52.45459496462718,52.66086666658521,52.777002034243196,52.0819871625863,51.54677484789863,51.136254471726716,51.592256613541394,51.02835688088089,51.42414531484246,51.96903333347291,51.050255234818906,50.24972735159099,49.57018702477217,49.69037656672299,49.118024102412164,48.220314980018884,48.726200447417796,48.536836383864284,48.540449814870954,49.5124885533005,49.645749549847096,49.79733696067706,49.016449925955385,50.009328136220574,50.26798620307818,51.1023497977294,50.21574820531532,50.487794052343816,51.12065571639687,52.04085151664913,51.59912953292951,51.37627444695681,51.93939235294238,51.60821357509121,51.01239861641079,51.95792120648548,52.935134038329124,52.74360428098589,52.15587315522134,52.55456017609686,51.81228566914797,50.867697943001986,51.358306588605046,51.57859414443374,51.572016056627035,51.21806199103594,51.46315742842853,50.64604691229761,51.27351082023233,50.87121097650379,51.606911237351596,50.69394272752106,49.877918467856944,49.70531167043373,48.705566795077175,49.31228108983487,49.890409301035106,49.94173670280725,50.208077813498676,50.906764024402946,51.15304736467078,50.335673277266324,50.61039341939613,49.71271337149665,49.57608448714018,50.19136626040563,50.877643219195306,51.15910370228812,50.69612042233348,49.880473039578646,50.047239389270544,49.1074941647239,49.856407035607845,50.13300771731883,50.32844104478136,49.70858501968905,50.33978356001899,51.30611804127693,51.973355285823345,52.78054696228355,51.83492314489558,51.92172540957108,51.79948455281556,51.60923494724557,52.1414834507741,52.321071398444474,51.93895264342427,50.993621410336345,50.326188176404685,51.32077683880925,51.51296508219093,50.97325339401141,50.66952654905617,51.225203892216086,51.543949578888714,52.10396244795993,51.311945972032845,51.645598819013685,51.277492232155055,51.203320384025574,50.905861782841384,50.05008694855496,49.52135415468365,48.95112397847697,49.94436850491911,50.07761654024944,49.229981171898544,50.20843529468402,49.2127104755491,48.27237555431202,48.209133056458086,48.926455604378134,48.33121919305995,48.193135673645884,48.07610710803419,48.49661974236369,49.2077891821973,49.169972563162446,49.13600576529279,48.492847001645714,48.47472679428756,48.62350393133238,49.35330786276609,48.929141426458955,49.40331316366792,49.283773860894144,48.5840111207217,48.297550953458995,47.98166436096653,48.14096486568451,48.24074634863064,48.05123056052253,48.51333640003577,49.40036700805649,49.86071948893368,50.11601950973272,50.80594044318423,51.2675977954641,51.26645515067503,50.589334305375814,50.752275383565575,51.57457547588274,52.520944317337126,51.62203220464289,50.87950650090352,49.99002316780388,50.35466185538098,51.180071087088436,50.88692044978961,50.34155901707709,49.50365524971858,49.976019103545696,49.15196470730007,48.430916011333466,48.005000066012144,47.53412132430822,47.23770346399397,47.11110575357452,46.93991939723492,46.548245199956,46.40877822926268,47.06999336183071,46.1853676433675,46.7445325772278,46.700693593360484,46.77365612098947,46.652834399137646,47.27182164415717,46.80760231427848,46.21065289666876,47.17539532855153,47.180852888152,46.98389357468113,46.37974252551794,45.5071964985691,45.08622373081744,44.72239722358063,43.88544534565881,44.058667559642345,43.247482385486364,43.47041393816471,42.635954704135656,42.6271159555763,42.43773144343868,43.23429299518466,42.6496826633811,43.49698624107987,44.136101393494755,43.401820035185665,44.235075924079865,44.351845767814666,45.08262768294662,44.09049781411886,44.74533075792715,44.96028740052134,44.53689992753789,45.30866387439892,45.61735710129142,45.335742549505085,45.71361790597439,45.78654857072979,46.068540886975825,45.12125995801762,45.06530571728945,44.61406067479402,43.61696647899225,44.60311779240146,44.49470982095227,44.03619343135506,43.70591452950612,43.836808236315846,43.38762260368094,42.68116068234667,42.69966322509572,43.54232722055167,43.28081964654848,44.235044630244374,44.821823162958026,45.434742481447756,45.59311271365732,45.85884626535699,45.481683490332216,46.063618754502386,45.63525957753882,45.56607012450695,45.90711167594418,45.8257812531665,46.01005604630336,47.00322533771396,47.169618036132306,46.59673452703282,46.88686969410628,46.693681814707816,47.07953525148332,46.250112887937576,46.218834288883954,46.92829746333882,47.756646398920566,47.826239665970206,47.858963552396744,48.386916467454284,49.100554254837334,49.45998152345419,48.89530038041994,48.239941315259784,48.181893969420344,49.121814808342606,49.38208118826151,50.10401718178764,51.012202518526465,51.82279853057116,52.080775446258485,52.54151715710759,51.64284927258268,52.27517421077937,53.1380329253152,53.455473456997424,53.3182231397368,53.45641651796177,53.76331695495173,54.658522344660014,53.76510860165581,54.0465499907732,54.27990087447688,55.01613574801013,54.2370635503903,54.322992886416614,54.8480815095827,55.065910930745304,54.97306327940896,55.04879993619397,55.42153017083183,55.42682805098593,55.64302449906245,54.742694173473865,54.46598321851343,54.353588690049946,54.04817871423438,54.30520513560623,54.690061072818935,54.4339992091991,53.75177411036566,54.465782661456615,54.58107375819236,55.01647489098832,54.0523170651868,54.246615077834576,55.02596990345046,54.5521638058126,54.88253736263141,54.93029324384406,55.69662860967219,55.98403111519292,56.1401249198243,55.7731785220094,55.42882298305631,54.92403880599886,54.59718197910115,55.31771771423519,55.66552260844037,54.97020301083103,55.828651514835656,55.51342585822567,54.75754681136459,55.48878032248467,55.832924435380846,55.26549213565886,54.40810609003529,54.280877218116075,53.85320189362392,54.27841197187081,55.098788319621235,54.127610388211906,53.153990966267884,52.4186804802157,52.34935351181775,53.23621269967407,53.66717837145552,52.81524639669806,53.48434710642323,53.33641895838082,53.88646230427548,54.1978177819401,54.0103591773659,54.81829765578732,54.57858159625903,54.3951556799002,53.73245714278892,54.14710052451119,53.482727688737214,53.1545400461182,53.8204072737135,53.18421678477898,54.15655519999564,54.3547666403465,53.379832356702536,52.87855615839362,52.94972100574523,52.02340135117993,52.27218778850511,51.57786278473213,50.669623743742704,49.94175161467865,49.60009814472869,49.0171914845705,49.16541331494227,49.1442647902295,49.84010259248316,50.53314784169197,50.51785272639245,49.81791883800179,50.02596417628229,49.23749320488423,48.31767905270681,48.98246971098706,48.24196307687089,48.52142332261428,48.55938427057117,48.15843579545617,47.9300084086135,48.18831957690418,48.77129132905975,49.0697817360051,48.78931354917586,49.38389299670234,48.92725331056863,49.0388462850824,48.17594053829089,47.260752278380096,46.27249188302085,45.86292596580461,46.18828367535025,45.52910512313247,45.866011027712375,46.853983271401376,47.29393052170053,47.85504510067403,48.34480076050386,47.626943027134985,47.36016924120486,46.791027238592505,46.24590565543622,46.55848455009982,47.32644959166646,47.583006197120994,46.62612766120583,47.07233904534951,47.409724639263004,47.027801763731986,47.60801136540249,47.8663289854303,48.77678789710626,48.63390971161425,49.12663140753284,49.96510978974402,49.183480967301875,49.764800764620304,49.67926536872983,48.90695389546454,49.323502994608134,48.87890407303348,49.623537700623274,48.86438733525574,48.062954124528915,47.15804213518277,47.49947699857876,47.282959749456495,48.00090862251818,48.16067273635417,49.10162209812552,48.72825669590384,48.884410994593054,48.50802815146744,48.08093972411007,48.27131330547854,48.46827824693173,47.8741317037493,46.877083021681756,47.09842854272574,46.65748975845054,46.060513882897794,45.300214705988765,46.22556219715625,47.13255764823407,46.75738560920581,47.54000469762832,48.2520240182057,47.73494352726266,48.52044106833637,48.83768646419048,48.95362730650231,48.70530247269198,48.18014998733997,47.60733889695257,47.60903295408934,47.375870573334396,47.67542639002204,47.03637255681679,47.15972575126216,46.91433580033481,46.94831513753161,45.99457485694438,46.642670939676464,47.11267980514094,47.43888317840174,47.7111746664159,48.646927752997726,48.27138077002019,48.75588603504002,48.88414463447407,49.275844084564596,48.45722592296079,48.50479735992849,47.72761595994234,46.799044114071876,46.70983284711838,46.62327941553667,47.48825391987339,47.89559995662421,48.07892298325896,48.447748297825456,48.85083373403177,48.88479616353288,48.894842096138746,48.04658478638157,47.782754143700004,48.43544010911137,49.41899668984115,49.90424217749387,49.32703357329592,48.793719379231334,48.55479820771143,47.69225824251771,47.24751928029582,46.393875057343394,47.03962097456679,46.84945539943874,46.28038881998509,47.24427401507273,46.796468266285956,46.02558464277536,46.50387715920806,47.09920995449647,46.887833272106946,46.06025261292234,46.472026333678514,46.37132775457576,45.796171695459634,46.27273022243753,46.89665568852797,47.17560813622549,48.15085954358801,47.73952668532729,48.57191080600023,49.105521937832236,48.968669501598924,49.508314894046634,49.71570274606347,50.1389052211307,49.93250498222187,50.8938540937379,51.32386186346412,51.015482200775295,50.11255739722401,50.41313969856128,49.80994563549757,49.29066981514916,49.63543731672689,50.19982034154236,50.14808126958087,50.404426167253405,51.35757064027712,50.5590599430725,50.969574148301035,50.45332034351304,51.440868235658854,50.63994150608778,51.47112686838955,51.45507357129827,50.77894577430561,51.430365313310176,50.70102143287659,51.065270859282464,50.48254360584542,50.663939495105296,50.72781769465655,49.76240734197199,50.16361532872543,49.78300156630576,48.964308846741915,49.17057495843619,48.70163692953065,48.31510055903345,48.78799444716424,48.47561375191435,47.61862602131441,46.91970204655081,47.01133571146056,46.300540312658995,46.10000990098342,46.217944325413555,46.47529756836593,46.06100311642513,45.97570901038125,46.95478883897886,46.57358284899965,46.47227072715759,46.45512210205197,46.8021126948297,46.52784901438281,47.361953996587545,47.5575287877582,47.01444772304967,47.48903243942186,47.38183845579624,47.606496814638376,48.36621832754463,49.00003427313641,49.70865065976977,49.85521935252473,49.430035950616,48.902781317941844,48.76639668084681,48.11598956119269,48.79927572188899,49.71820185845718,50.161733026616275,49.29900047928095,48.42970737628639,48.562483369372785,48.15335604874417,49.138171524740756,48.325684290379286,49.0012193294242,48.517437731381506,47.63188746571541,47.35862313210964,46.942297572270036,47.522117304150015,48.287543549668044,48.0906129446812,48.79448339017108,49.18476467905566,49.867301158607006,49.45005557918921,48.751635916065425,48.70599348470569,49.40655630035326,50.35466183256358,51.13310411386192,52.08441323461011,52.87484140880406,52.19548197602853,52.75969374086708,53.637791354209185,54.25264847325161,53.27111575426534,53.54545698920265,53.651890004985034,53.05738477408886,52.712415657006204,51.81134720519185,51.64363083196804,51.358351269271225,51.76688265288249,52.244258493650705,52.20377025520429,52.667188834398985,53.292428851593286,52.53099589701742,52.237280402332544,52.753341123927385,53.288022675551474,52.83865731628612,53.82485406054184,54.08401070488617,53.2155687646009,53.45938366372138,52.47551356907934,53.12326556444168,52.647446481045336,51.656149610411376,51.861192621290684,51.52952169114724,52.01652415608987,51.757950516883284,52.15432630153373,52.59464443521574,51.70843371935189,52.149312829598784,51.35907700518146,52.34118914650753,51.35079473210499,51.2166620278731,51.90304534137249,51.48798382235691,52.14610433531925,53.121368426363915,53.68674440123141,52.9434124995023,52.838905077427626,53.586979606654495,53.48071939032525,53.65202676970512,54.18952301656827,53.51101253880188,53.99234450934455,54.871101207099855,54.217000341042876,53.64594834577292,53.36734059359878,53.10093275597319,53.055240239948034,53.65690398635343,53.09618464531377,52.14233746007085,52.03773612668738,52.84514195751399,53.267815868835896,53.2834465643391,54.28081087069586,53.714038075413555,54.49798945663497,55.35251282993704,54.932737757917494,54.14870438212529,54.889394361991435,54.04527827259153,53.25466381479055,53.72302516037598,53.0360968625173,53.40926049137488,52.97811802616343,52.63505558250472,53.13398489402607,53.37597374105826,54.25462337909266,55.022490192670375,55.95275531290099,55.42825223132968,55.763710216619074,56.32246629707515,55.80726871127263,55.30293384473771,54.864717337302864,54.97245730133727,55.6885403576307,55.101034592371434,54.34847604017705,53.54110485268757,54.005678224842995,53.39042055699974,54.11640498135239,54.253897935152054,55.07205769699067,55.23955062124878,56.08724154531956,56.867792514152825,57.67083590105176,57.96290980000049,57.887025302276015,58.243165743071586,57.99377394327894,57.91264034481719,58.33266477100551,58.188931008800864,57.71239297138527,57.69548516906798,58.20773655222729,58.73588814307004,59.57861086865887,59.35141034750268,59.08726743841544,58.621711974497885,58.07581441523507,57.422711244784296,56.56421715579927,57.22508012317121,57.314032232854515,57.82181993313134,58.25428806617856,58.50798517698422,59.50459836004302,59.23662673262879,58.423360865563154,58.74732821760699,58.16050919517875,57.53528892993927,57.34346596291289,57.75796302547678,57.949474573135376,57.95890429895371,58.04283175105229,57.84887338243425,57.606246165931225,57.489109735004604,56.613711731508374,55.81360893556848,56.27319600852206,55.313343226443976,54.461288834922016,54.118124783970416,54.646807838696986,54.496321271173656,54.72219317127019,54.875204268842936,55.64997532358393,55.96816974738613,56.44631072552875,56.64975780621171,56.53917009336874,56.364966835360974,56.9973054677248,56.03647208260372,55.656869432888925,56.422499812208116,56.478632003068924,57.20007271738723,57.49950184347108,56.686043553519994,56.638446908444166,55.86139493947849,55.18973147775978,55.6845042235218,55.60063596395776,56.11009935848415,55.36836919700727,54.69424762390554,53.93648190656677,53.57199919503182,53.33912390144542,53.97274208441377,54.437309549190104,53.441157503053546,53.0817512460053,52.77917543658987,53.6326104067266,54.41783297341317,54.38948265276849,55.086974126286805,55.20341500407085,55.102920446079224,54.24295724788681,54.14321181597188,54.75685608480126,55.08093644073233,54.537345139309764,53.73304612515494,54.13162501715124,53.43685623630881,53.582812500651926,54.07060687523335,54.87313413247466,54.86507628392428,55.52734916796908,55.29130830010399,55.5066577559337,56.39742704341188,56.28576853405684,55.813485925551504,55.67134005110711,55.99256091052666,56.2597920242697,56.60338677279651,56.46777977608144,55.87028247304261,55.70123396581039,55.95365380682051,56.6004141587764,57.110929293558,56.579590026754886,56.28479103324935,55.484363122843206,55.0462747188285,55.979398258030415,56.167062582448125,55.62488773930818,55.329163681250066,56.31671694852412,56.251957062631845,57.23603222426027,56.46252911677584,55.65489951753989,55.3057121951133,55.91217753523961,56.24118255311623,56.31646905653179,56.59933278383687,56.77578758401796,56.43285130057484,55.86005473602563,56.59530804445967,56.24898423533887,56.57505822274834,56.99058226728812,57.034981821198016,56.926070121116936,56.44671113137156,57.40843861270696,58.04140982590616,58.82474653143436,59.709899755660444,60.673497940413654,61.46963626192883,62.39520004251972,62.796612940263,62.69839076464996,63.345510366838425,63.910768748726696,64.43482842668891,65.00817798497155,64.52806931501254,65.32909893849865,65.01845162827522,65.82680137036368,66.70982325449586,67.52551053324714,67.76637177309021,66.79158690338954,66.6443842430599,67.51684990618378,68.1360864629969,67.95740609243512,67.4797807582654,67.81013701343909,68.24400989152491,68.02483660168946,68.66195514285937,69.42060577264056,69.51064643170685,68.80136610940099,68.52273526834324,68.87807248579338,68.30416694516316,68.81680523324758,68.06187261547893,67.79180049616843,68.52613886492327,68.50989562505856,67.68385076476261,67.32857360970229,67.02594845416024,67.68397095939144,66.7590322769247,67.5517749497667,66.96098736394197,66.87600148562342,66.73017750075087,66.16813708702102,65.69811661494896,65.0286068902351,65.44067527120933,65.94779999414459,65.19640077464283,64.91430183686316,65.51133290911093,65.15935580711812,64.68790967948735,64.97916154377162,65.60646663885564,64.92245287960395,65.19242716347799,65.5936765759252,65.45854331273586,65.6419565831311,65.04720994736999,64.5004642852582,63.98711369745433,63.21785441786051,63.00658597610891,63.14863340975717,63.90236129146069,63.91201364155859,62.99272496206686,62.02756051020697,62.01064294297248,62.08056878717616,61.394341808743775,60.93304133461788,61.86940604727715,61.068958196789026,60.774976862594485,61.69200739171356,61.013733447063714,61.81219118274748,61.86110454844311,61.08452461473644,61.16237922525033,60.91853223135695,60.85340486513451,60.06417084811255,59.45688062906265,60.38715561944991,60.1377833141014,61.04846888734028,60.90558939194307,59.99592895619571,59.78135598823428,59.506752769928426,60.01108987163752,60.2561205746606,59.26122723892331,59.300491818692535,59.224467295687646,58.97507322579622,59.597950396128,59.025419347919524,58.6379230809398,58.89291367214173,59.604235033504665,58.763984746765345,59.647575866431,59.425253884866834,60.301440075505525,59.899522735737264,60.49692468624562,60.1012038779445,59.65006533451378,58.772607177030295,57.8449881975539,58.039450539741665,58.438538366463035,59.006825763732195,59.16231811279431,59.73530953610316,58.87007966730744,58.628024944104254,59.62100581265986,60.136343555059284,59.7924968409352,59.18432101840153,59.21856058482081,59.190442158374935,58.31487967958674,58.59599389648065,58.014310374855995,58.39043049886823,58.827493911609054,58.1406562528573,58.47169337281957,57.62969925068319,57.05685885343701,56.835064412560314,56.889722033403814,56.79009788809344,57.65971394069493,57.03836358664557,56.4453173535876,56.29241813765839,56.27289123367518,57.02578850090504,56.18233184935525,55.27675714017823,54.704462508205324,54.76718855602667,55.343278635293245,55.44188419310376,55.051341409794986,54.54611604101956,55.28979861037806,55.96201622206718,55.10898176766932,55.51674066763371,55.933214196469635,56.706670882645994,56.92430781945586,56.86686228495091,56.77527636708692,56.510988481808454,56.74424604792148,57.195272511802614,56.76908815512434,57.386180869769305,57.15717204520479,57.95183766447008,56.99969913717359,56.45165359741077,55.57795637100935,55.48066194076091,54.74576278682798,54.91331313410774,54.43203373113647,55.18816606840119,54.79279274959117,54.456203314010054,54.215370952151716,54.43285792414099,53.989742999430746,54.33898555394262,55.31643676571548,55.647836985997856,56.50286524603143,56.51028155069798,56.66282178182155,56.15291788615286,55.86577840708196,55.06677458435297,55.318001601845026,56.091948627494276,56.54298193426803,57.44601634936407,56.4755318085663,57.157018210273236,56.655734248925,57.09606507187709,56.100677005946636,55.56838973611593,55.085785261821,54.28452539630234,54.67379022249952,54.98333654180169,54.04769226629287,53.292085795197636,52.32552787801251,52.97500035725534,52.611535974778235,52.0589057309553,51.75496337004006,51.97541090194136,51.47980491351336,50.81941377837211,51.7534608268179,51.874319597613066,51.1967921894975,50.70494359033182,50.87995293503627,50.702568002510816,51.08236203342676,51.949663288891315,52.56045274389908,53.40964715043083,53.01569787226617,52.70058868872002,52.020509731490165,52.043228533584625,51.525081601925194,51.29864503489807,51.38232659967616,50.49599895067513,50.608260105364025,50.4104679771699,51.211699495557696,51.96608163230121,50.9920594971627,51.00511166034266,51.57331290142611,52.18556987354532,52.8304895227775,52.75173611519858,51.91933916974813,52.664540918543935,52.21752514084801,52.00954761356115,52.45197501173243,51.89936784142628,51.24121274566278,51.5548786027357,50.85468838643283,50.190206308383495,49.92822973476723,49.86659664893523,50.763126365374774,50.215109650511295,50.47923877835274,50.98355160141364,50.7605514600873,49.81539691379294,50.775803359691054,50.34258265141398,50.32092977082357,51.179861798882484,50.197333661839366,49.24200143571943,49.11647225031629,49.25936370389536,49.18986889021471,49.993637756910175,50.06996219465509,50.467577991541475,51.13944768346846,50.40104593383148,49.954665230587125,49.37643038574606,48.458729055244476,48.94863536441699,49.36526074120775,49.64754630345851,49.44902990106493,48.862528496421874,47.95543055282906,48.78316118614748,49.429587851744145,48.53186930762604,47.774040911346674,48.371654542163014,48.0383066944778,47.17448184546083,47.57439289055765,47.999524557963014,48.44107429403812,48.076739055104554,48.730710078030825,47.756897534709424,47.14375795936212,47.93014347925782,48.58906339481473,47.8678344883956,48.19276473391801,48.57435495732352,47.85945951892063,47.735236344859004,47.56566077191383,48.16988275106996,48.40761674800888,47.515756458975375,48.41217364417389,47.9574538837187,47.77524865511805,48.026607072446495,47.745568150654435,47.175331998150796,47.52141378028318,47.9646484493278,48.34585618088022,48.79320763843134,49.534931311849505,49.2859070925042,49.1191000174731,49.279262469150126,48.946660990826786,48.13111276039854,47.948632176499814,48.55188997974619,48.96539572160691,48.80865627666935,49.050915349740535,48.285138863138855,48.856009766459465,48.04845189070329,48.019714653957635,47.49438975518569,47.41733090020716,48.4002216164954,49.10332720959559,49.56579609867185,49.35565504198894,50.350405243225396,49.5519264456816,50.20548019744456,50.83229449857026,50.6531964186579,51.59322068793699,52.31007792428136,52.14826756948605,51.228321047499776,50.72409778367728,50.84041992854327,51.63221293222159,50.76827478641644,51.25534820696339,52.16651369584724,51.70094066346064,51.02151166414842,50.75889333942905,50.0675327591598,50.05385949136689,50.00564885418862,49.05115098366514,49.50229382002726,50.499993986450136,50.67681919177994,50.59271920984611,49.918845240492374,50.696128357667476,50.467589899431914,50.42449887190014,50.65382992196828,49.97807310707867,50.064575247466564,49.562447756528854,48.67618120228872,48.54767080210149,47.81629612063989,47.28525579767302,48.12448536045849,47.21728032408282,47.96519153518602,48.729192356579006,48.273510890547186,48.58928412524983,49.05326018529013,48.321799382567406,48.038111325819045,47.49234802182764,47.5053470893763,47.32652465533465,47.26533077657223,46.70704383542761,47.03744433866814,47.38497470971197,47.41583268996328,47.817707700654864,48.33829713007435,48.76907611498609,48.277039747685194,47.54025995219126,47.55085974559188,46.97211800701916,47.47847552690655,47.26895619928837,47.19063290860504,47.59903027815744,48.10631998907775,49.09387832786888,50.05228977603838,50.548486603889614,50.783039833884686,51.404698892030865,51.02482885867357,50.31250965362415,49.810798270162195,50.31534022977576,49.43356614746153,48.559657705016434,49.23852264229208,50.08734043221921,49.42055321438238,50.15711009595543,49.87267959769815,50.61316372547299,51.20127182081342,52.05444987118244,51.47170869493857,51.107694225851446,51.35054725082591,52.25139111978933,52.76822534855455,52.443075376562774,52.49365045828745,53.044940050225705,52.09645172674209,52.27738099824637,52.683155819773674,51.70635886816308,51.85043140407652,52.131738203112036,53.095969553571194,52.208112332969904,51.25854231743142,50.592620545998216,49.911141333635896,50.40141654619947,51.005867508240044,50.6976967966184,50.36878092540428,49.49486660119146,49.56273701041937,49.93568293424323,49.28771139821038,49.90457567572594,50.030523946043104,50.85564720258117,50.61663793446496,50.99268666142598,51.870021275710315,51.47258564271033,52.226416148710996,52.14342672890052,53.11123212147504,53.40556286275387,53.123156966175884,53.57367084547877,53.51784413680434,52.680602062959224,52.66971720708534,53.20368242682889,52.55806047189981,51.957657328341156,51.947486080694944,51.270077134948224,50.98853896604851,50.998449221253395,51.48880530614406,50.77134617557749,51.3424374028109,52.03518700785935,51.65226979320869,52.34359704842791,53.09363928530365,53.34346605557948,53.099026126321405,53.972405831329525,54.865622154437006,55.58561928756535,56.19416959071532,57.11428061174229,56.35662048496306,56.98515319591388,57.197441479656845,57.84523703856394,57.04661911074072,57.93287026742473,58.79352057632059,58.98937404435128,58.55887178191915,58.16576519375667,58.32053332775831,58.07411867333576,57.20952627342194,58.173620611894876,57.21679163444787,56.41675761388615,56.17855384713039,56.928964836057276,57.89717712905258,58.52511259447783,57.648756673093885,58.23425104795024,57.559503447730094,57.18063829932362,57.24596344027668,56.50440551014617,55.64352198923007,55.23966316925362,55.043045732192695,55.02766250586137,55.68724259361625,54.880249900277704,54.54466810589656,53.793432510923594,53.05588346393779,53.42570997122675,54.24465408921242,54.28090968495235,54.856911131646484,54.031456253957,53.38679710915312,52.40408761333674,53.288645260967314,53.68825013190508,54.375938429962844,54.370655964594334,55.10893677454442,54.97480162745342,54.95052404794842,55.312811870127916,54.781828337349,55.24169921455905,55.959005132783204,56.816181145142764,56.546141939703375,57.10207405919209,58.05474648019299,58.26431578537449,58.63244756311178,59.45593646122143,59.371942720375955,60.15849679382518,60.183610987849534,59.322425729595125,59.03122251434252,58.39826868334785,59.27561698900536,59.1029564794153,59.77562531689182,59.2859284398146,60.187196439597756,59.977837801445276,60.45986239099875,60.71782449958846,60.77684184350073,61.682798403315246,61.89798699086532,61.02743691019714,61.23039499251172,60.70634777843952,61.57683938322589,61.52684852248058,61.73643606668338,61.18702031765133,60.57621393445879,61.38354742759839,61.42289228597656,60.877319815102965,60.827031267341226,60.00984756462276,59.17557564144954,58.76359718060121,58.7805918622762,58.823305561672896,58.03065024362877,57.73029193188995,56.90123806428164,56.80803648382425,57.52121674455702,57.05144228739664,56.30024886503816,56.338484762236476,55.75285025127232,54.955774013418704,55.842541799880564,56.62256007036194,57.422097065486014,56.82316630706191,56.99114644341171,56.664320326875895,57.48521217657253,58.47048741020262,59.29773085936904,59.59981794003397,59.295158695895225,59.51079830294475,59.503294598311186,60.0000975439325,59.558331914711744,60.45566625567153,60.72545462939888,60.97781465901062,61.90550542017445,61.82977864611894,62.22693096054718,63.19082302041352,62.84387712972239,63.83740713726729,64.26301096193492,63.61594528425485,63.29146922798827,63.00198344467208,63.756272384896874,63.76960244216025,63.279795398470014,62.6630401997827,62.926041059195995,63.610080803278834,62.630476287566125,62.17046739207581,62.25649346830323,62.41922637401149,61.836172298993915,62.07328577386215,62.97060256032273,62.40383261954412,63.16189853847027,62.89693793328479,63.30073624290526,63.577437471132725,63.82313655782491,63.004708846099675,63.787972141988575,62.79631511121988,62.17799160582945,62.77109111659229,62.45783102372661,63.041497690137476,63.8605570839718,63.50837472639978,63.58074990520254,63.685342533513904,63.80032552406192,63.56428810534999,63.89947577659041,64.15894048009068,63.7409591274336,64.5917302146554,64.53128027264029,65.46273091901094,65.6498921951279,65.56317623099312,65.98358545219526,65.28417269233614,65.61014963686466,66.2490206034854,66.59072650317103,66.40957468515262,66.58166863722727,65.94836220750585,66.28376459982246,67.15287355473265,67.42873734422028,67.63390775676817,67.1199199766852,68.09931532526389,69.07453783787787,68.27616576477885,67.34354882407933,66.5719866072759,66.83826673636213,67.22785145882517,66.70855599734932,66.74890826037154,67.58515291288495,67.86090903868899,67.03388770204037,67.08948718616739,66.66637809248641,66.18963415268809,65.32010978879407,64.49933440238237,65.15534432139248,65.77804543357342,65.2280930490233,64.75142262130976,64.30194533849135,64.82873559603468,64.88897263491526,64.48524988954887,64.95436284597963,65.8704032022506,66.41507707629353,66.4125942401588,66.91012341715395,67.67116544069722,66.7952057174407,66.53112898906693,67.13227292709053,67.95194306550547,68.79486756306142,68.18302521994337,68.6007700143382,67.67221567314118,66.88162222784013,66.77849882654846,66.02423521131277,66.96866313833743,66.77843568567187,65.94006282882765,66.76280805328861,66.91482263291255,66.97552733542398,67.60273477761075,66.77120490092784,67.28905145591125,66.30098950397223,65.90418066130951,65.76272437721491,66.21925034793094,65.85678411507979,65.67192346043885,65.18535508122295,65.92914463300258,65.26404928835109,65.12421421287581,65.12892390601337,65.13582670176402,65.80195225356147,65.94900837587193,66.54563568765298,66.25338491704315,65.33967381203547,65.96328661544248,66.7508208239451,67.51295200455934,67.63449447369203,67.67140637990087,68.37812835909426,68.78280251286924,69.0796633255668,68.78404283383861,67.90705380495638,67.84339408623055,67.45492468168959,67.91033833706751,67.08493832591921,66.97672706935555,67.81921897595748,67.79020383628085,67.77425680682063,67.81250888621435,68.02497032796964,69.00248446268961,68.81044856924564,68.77834176225588,68.93645007535815,68.31520331278443,69.12552846083418,69.8175202566199,70.67616842640564,69.71453108498827,69.34615216916427,68.625313651748,68.74451354984194,69.28337367158383,69.61312151979655,69.87616849783808,69.12656889855862,68.13302815752104,67.72346200514585,68.04657183168456,67.8327335701324,67.68687897128984,67.03871584124863,67.75858919043094,66.79164747381583,67.2738331365399,66.62728958576918,65.71763983787969,66.31031821202487,67.09118717955425,66.43761064996943,66.25704696308821,65.30283578112721,65.49616327648982,66.24541158694774,65.89370134938508,66.42395132407546,66.59113670652732,66.9087690897286,66.71037881402299,66.44020875683054,65.84224930778146,64.88219569483772,64.82014097739011,65.59466048516333,64.71046184841543,65.0881328387186,65.35597894433886,65.96828378690407,66.3055993351154,67.10089368978515,66.60250852210447,66.49546274775639,65.61723620956764,65.0768249956891,64.74799286015332,64.04682893399149,63.79860865836963,64.24707221565768,64.72944555385038,64.78113641776145,64.51934183435515,63.69065935816616,64.07509082509205,64.7339448472485,63.835340711753815,63.71880746213719,63.6379986689426,64.29440509993583,64.71250118361786,63.78187540732324,63.18274207646027,64.12541365297511,64.67152526602149,63.730304322205484,64.39217666024342,64.30831222282723,64.01113455789164,63.8878484275192,63.40436917357147,62.83256436511874,63.28711593197659,62.46216009510681,62.298064903821796,62.993666876573116,63.578953022137284,63.27989355381578,63.450128600466996,63.760888191871345,63.92709870217368,64.15254202811047,64.71121476963162,64.01399066438898,64.60743901506066,64.4369936445728,64.61746801342815,64.86426410032436,64.21604423830286,64.53657826362178,64.24852881301194,63.99419227428734,64.74912885855883,64.42966155335307,63.69502720981836,62.953482042998075,61.96265314333141,61.004238807596266,61.15163004305214,60.942727942951024,61.583640998229384,62.43430017493665,63.388724819757044,63.36771324602887,62.42062116088346,62.56669253949076,63.19938825536519,62.27696370985359,61.60345196304843,60.80670067248866,60.592900971416384,60.72806600900367,60.39083536108956,60.50604807352647,59.67876247968525,60.1074610715732,59.71836640173569,59.855781585909426,60.670458781998605,60.10758790653199,61.00355556095019,61.601491627749056,62.55236563598737,62.676275284960866,63.45839194022119,63.48640242498368,62.74763807049021,62.13977843429893,61.37817311799154,61.15620880248025,61.66835483536124,61.875791523605585,61.467287108302116,60.63339902693406,60.45490777073428,60.60622864821926,61.35956451063976,61.17522050207481,61.604665654711425,60.812594290822744,61.13570409268141,60.79949558246881,61.47290580999106,61.1482657706365,61.961197247263044,62.50703264446929,61.71863803407177,61.688912600278854,62.48629556875676,62.90608442435041,63.35599677730352,63.70049920491874,63.93351441854611,63.92715202271938,64.3848169259727,63.938450443558395,63.89747920585796,63.36915948847309,62.78335136547685,62.339525076095015,62.15071264421567,61.40698037715629,62.05151855200529,61.71827245596796,62.10583121376112,63.00622624112293,62.81271433504298,63.13281052792445,63.79386650910601,64.47397765470669,63.60079508507624,63.08670499222353,62.74843159178272,63.25914668524638,63.51377416867763,63.18658420909196,62.612674886360765,62.21594552183524,61.6718519651331,61.36100524943322,61.454533318057656,61.29648339981213,60.94688375107944,60.14556961366907,60.20508281188086,59.705168195068836,58.75581609690562,58.757863806560636,58.3707860102877,57.60850687744096,57.796787968836725,58.71265581250191,59.65937258070335,60.201738270930946,60.553367716725916,60.2384262336418,60.473255292512476,60.138143276330084,61.08972917497158,61.174471667502075,61.06255979696289,60.77002467401326,61.26828979002312,61.6140707610175,60.83744320040569,60.82598474808037,60.02999504562467,60.76143083907664,60.85531347244978,60.59625449357554,61.28498665941879,60.37806802615523,60.863591622561216,61.43694829707965,60.96247162716463,61.44116838276386,61.072286705020815,60.94007556466386,61.761822550557554,61.338443133514374,61.41428741486743,61.9439870165661,61.355098699685186,61.02672289637849,61.57396078016609,62.25764786219224,61.7874222942628,61.58673653239384,61.94128125393763,61.11396660283208,61.37506326800212,60.49220192339271,61.484581822529435,61.80161665612832,61.027096909005195,60.823532964102924,61.75907992385328,61.3960248362273,61.54880910832435,60.59694076701999,61.11757865967229,60.21577780460939,59.52944587683305,58.93648058222607,58.99455116363242,58.392162814270705,58.74125338578597,59.652328106574714,59.18517653271556,59.886316967662424,59.96967158280313,60.83589215762913,60.90966145368293,61.89305417705327,62.19718496827409,61.661715952213854,61.38816249696538,60.548489386215806,61.19113627076149,61.85278478357941,62.022384631913155,61.02481695730239,61.50330451363698,60.628460553940386,60.25355315255001,59.47203038819134,59.763146597426385,59.17684535635635,59.65071200719103,59.689533868804574,59.690099676605314,59.86324827559292,60.41525270463899,61.24469884065911,60.687613784801215,60.62653069989756,61.35007205000147,61.76539256796241,61.74934501154348,62.31822869554162,62.87234309269115,63.24605710990727,63.99373508710414,64.98450184613466,64.7646987196058,65.54623962566257,65.75882741063833,65.19557941192761,64.29555060435086,63.519799881614745,64.30980718275532,64.0515462346375,64.28455636790022,65.21888416586444,65.74604359967634,65.55899979965761,64.96344087366015,64.69159714318812,64.54951013671234,64.90657205600291,65.57780300173908,65.6484659081325,66.5482014818117,66.57266351766884,66.36022110516205,66.89305275585502,67.64331979583949,68.62290403898805,69.49398713558912,70.00996655179188,69.49058799119666,69.89840520685539,69.25732009578496,69.98484176257625,69.01163537194952,69.5572295691818,69.43693223083392,68.64439061656594,68.51292127463967,69.3444173336029,68.84676630375907,68.14043581020087,69.10464431345463,68.35709257936105,69.30645474093035,69.89957098150626,70.13228934817016,70.29774644225836,71.25315471831709,70.75621978845447,69.86775250127539,69.02243581134826,69.85506898676977,69.88537730136886,69.02580982912332,69.26240263087675,69.25133186532184,69.80150746973231,69.81498090270907,69.3249978045933,69.91861805133522,70.47451447695494,71.10603702813387,70.45070146489888,69.98506484879181,69.6223623175174,69.94555602688342,70.86393248476088,70.09792647929862,69.31651909928769,69.72123161423951,70.43327834876254,71.10614855354652,71.84609747491777,71.41122891101986,70.96389419119805,70.9648587568663,70.38534940266982,69.5087659470737,69.51009909110144,69.38094939477742,69.75034737586975,70.34830116573721,70.40240150690079,70.40055000362918,69.98828145116568,70.31319005740806,70.88475063769147,70.63541554333642,69.75159535510466,69.23799106571823,68.5892950319685,67.7430120985955,68.56266844784841,68.82407353585586,69.71151655446738,70.47061009472236,70.37289745826274,69.47356300102547,68.92411818541586,68.81637204159051,68.96354572474957,68.89587040711194,68.14991285838187,68.28294878453016,68.93622098304331,68.85930860601366,68.8393187536858,69.52403826126829,70.33685905346647,69.63502737972885,68.90673185093328,68.53502413537353,68.19139705458656,68.62895739497617,67.88568320684135,67.80470756627619,67.3736422918737,67.62691114889458,67.54993317695335,67.15192208718508,66.42237877100706,65.48468600120395,65.48454169975594,66.22000912111253,66.56324193067849,66.85693095158786,66.97989364387468,67.95683036185801,68.87213988788426,69.48462436767295,68.67778364522383,69.39115360658616,70.0362479640171,69.63366445712745,70.21730845654383,70.10297755990177,70.6734411646612,70.67824341915548,70.59929965389892,71.43326432164758,71.53925350261852,70.96517608035356,71.31617553438991,72.26889812527224,73.1479414794594,72.78545774985105,71.91370582534,71.35519632510841,71.26491261320189,70.643649475649,71.12144953105599,71.02847231458873,71.84894415969029,72.5875030811876,73.27930769696832,72.46103666117415,72.50882980460301,73.18787279957905,73.18287539994344,74.00062956567854,73.81276520108804,74.5217328122817,74.79578066896647,74.74621017696336,74.59938956098631,74.18677407642826,73.70777901215479,74.1826818594709,74.89695808524266,75.57828271016479,75.35022842697799,74.53753178194165,73.58770184917375,73.97609918098897,73.86254642624408,72.86696325056255,72.48852611565962,72.76816302258521,72.51514114346355,71.94979584915563,71.04005598369986,70.68559325998649,70.14040155569091,69.56818263512105,69.28615723410621,69.83626591274515,70.82706300821155,70.77698220685124,70.49218834983185,71.4262198782526,72.35342929372564,71.78356531076133,71.60021073231474,72.3691173736006,72.3365862830542,73.03813714440912,72.76823199586943,73.45686337165534,73.48600678006187,74.31711805053055,74.38701740000397,75.14281328441575,75.33586102817208,75.01227462058887,75.46235392941162,75.97793629113585,75.37421460170299,74.86956577608362,74.29760622046888,74.50198407052085,74.51760624255985,75.01671593589708,75.08982276590541,75.36121432576329,74.8676674044691,74.4750811709091,74.26990886498243,73.58494010102004,73.99410687759519,74.63231088640168,74.03447464620695,74.07992343138903,73.1530086202547,72.53136959578842,72.22826593276113,71.98732624994591,72.95338726649061,72.37894250592217,73.12683680374175,72.42020609974861,73.2576901530847,72.42706230003387,71.44887308822945,71.78587288642302,71.61314344825223,71.47932029189542,72.4655852750875,72.80686659924686,72.17708589043468,71.31391209410504,71.49830746790394,70.69174871081486,69.8546247817576,68.95252983178943,69.30876445770264,68.48094408866018,68.13517215428874,68.45530868554488,67.50017960555851,67.20959192933515,66.32031292747706,67.2939441059716,67.37522006267682,67.91802350012586,67.24170089652762,66.96642875252292,67.23267250927165,67.81847572652623,68.30194424837828,68.67120727850124,67.78804134018719,68.71075815195218,69.42009493615478,69.39368588523939,69.85015453165397,69.19690544670448,68.65098205860704,67.82426730915904,67.67419721186161,67.47426424920559,66.86982459342107,66.80885723372921,66.5987900653854,67.36195701640099,67.1311220168136,67.95382366096601,68.12651245389134,68.85014454368502,68.83318110834807,69.17835473129526,68.87636654544622,68.86614208528772,68.53401888022199,68.69262059824541,69.36285984329879,69.6071907132864,69.96315777720883,70.59983989410102,69.65420253854245,70.30177295906469,70.4904359956272,69.97785936994478,70.31165176071227,70.7857062141411,71.69216618454084,72.28585259011015,73.23995422758162,73.475715957582,73.7161228125915,73.00167284533381,72.04126802273095,71.62270723283291,71.02338308142498,71.5480216559954,71.57718340074643,71.67597010405734,72.27289931243286,72.02904917858541,71.3764514294453,70.60951424250379,70.45646719448268,71.19957078853622,71.06769758183509,71.96188216144219,71.1587440748699,70.91757618030533,70.97286033723503,71.48588969605044,72.17273319512606,72.69817416416481,71.97599577531219,72.20597074646503,72.81658462435007,73.18342281645164,73.76376299839467,74.71269385935739,74.35219231434166,75.3492122311145,75.44802097510546,76.32273080991581,75.63739869790152,75.8566536535509,76.83115034736693,75.83402910362929,75.27559119230136,75.01936783315614,75.92672359058633,74.95436456985772,74.38551518367603,74.89572421694174,74.08176536438987,73.21263624867424,72.90528368484229,72.55889283493161,73.2771053770557,72.54521244904026,73.11067058192566,72.93012387072667,72.1464930428192,71.16048921225592,71.90655020158738,71.16444329312071,71.7868071347475,71.57131372997537,71.76460185600445,71.26147246034816,71.14947589952499,71.81408374756575,71.06772375805303,71.50486096832901,72.01784006878734,72.739032513462,71.79111748654395,71.14759535994381,71.22374565340579,71.67542594717816,70.92177145602182,71.36181354988366,71.25768574466929,71.2959354063496,71.67730055004358,71.67665026616305,72.04251210484654,71.46268218196929,70.64561930531636,71.25823612231761,71.4514068569988,71.44999544136226,71.74444136908278,72.27236997615546,72.41108043352142,72.76845961762592,72.28883713996038,72.82037628861144,72.51521044364199,73.23733741370961,73.25151493167505,72.83083673985675,73.39808840025216,72.80588765302673,72.03000810416415,72.35771367046982,72.71446746308357,73.60313164349645,73.37391128903255,73.92230163468048,73.44312738440931,72.98155581625178,72.9742768034339,73.39820345351472,73.40179035020992,73.60357573954388,72.64579267241061,73.34008602518588,73.95832256600261,73.288893872872,72.93480576574802,73.8355412511155,74.73605390498415,74.08157688984647,74.38426140882075,73.92114173993468,74.63610111735761,73.88822124665603,74.31490648258477,74.7562858434394,75.67575734620914,74.90923051163554,74.3878186843358,73.78779755532742,73.70815300382674,74.58195271948352,75.21552637964487,74.99219378316775,75.3484171689488,74.71682750433683,74.39581685140729,74.02735296124592,74.76014392077923,75.02716378774494,74.97099412186071,74.99226332316175,75.07568544475362,74.75897597381845,74.23899027053267,73.42512083565816,73.7303903112188,73.3591672219336,73.40201398637146,74.21687953034416,73.83658972894773,73.10647044098005,72.56236118776724,73.4894402991049,74.18422484677285,73.76380926789716,73.13313434738666,72.57659801375121,72.81661520525813,72.67783053405583,73.64983108406886,74.28606958314776,74.6688998513855,74.14013548986986,73.5015510818921,73.3287764643319,73.46264474885538,73.39401507331058,72.89229974197224,71.8942805537954,71.20128841605037,70.97218019561842,71.66540830256417,71.02939468482509,70.73835814651102,71.52932820143178,71.83386133005843,72.26584220770746,72.89760727062821,72.15974691184238,71.52010578336194,70.88227426540107,70.22285226034,70.28775527980179,71.14460202259943,70.44327656319365,71.15986782405525,70.30366751877591,70.89825253514573,70.36456263856962,70.42675889935344,70.53349190577865,70.60974474530667,70.1038209060207,70.52646873844787,70.99289566744119,70.66070907050744,71.2743068896234,70.76555062970147,70.47826147126034,71.18066392326728,71.61556036351249,71.02309290971607,70.28955139685422,71.1697928425856,71.65864936681464,71.93071587802842,71.64094366366044,71.3113868208602,72.22269115922973,71.2498651263304,70.82219167472795,70.04605086846277,70.87356087891385,70.41073082620278,71.29820198193192,71.95169559121132,72.77165619237348,73.75549359293655,73.68200656212866,74.61762304138392,73.84462865255773,73.4582095160149,72.58620831463486,72.03110066149384,71.89462897833437,72.86239528795704,72.78197950171307,73.36289257183671,73.27442570449784,73.30774630839005,74.02169426577166,74.8156986515969,73.86392148723826,73.09482984850183,72.27223824290559,71.96832501329482,71.05016701715067,71.42951017292216,71.8461580388248,71.9897756059654,71.40554402768612,71.4078930625692,71.73362966487184,71.47952812025324,72.24822498019785,72.60492329206318,71.8058454701677,71.81580730201676,72.14776058681309,72.84564289962873,73.31056715641171,73.49077935097739,74.21189454197884,74.16517819231376,73.4310590159148,72.45390176028013,71.70073168352246,72.10887349629775,72.80687513202429,72.63768701674417,72.65507494518533,72.76129908626899,71.98914834298193,71.5281753060408,72.26054470706731,71.40287791797891,71.37235721200705,71.16469926340505,71.15968834422529,70.42669716803357,69.49749855324626,69.46907454635948,70.02873312449083,69.92533564101905,70.47362571023405,70.63043340062723,70.74141559144482,70.7053237799555,71.38863007677719,70.80143886664882,70.35971060208976,69.85026838537306,70.35927104577422,70.36746978480369,70.1478648618795,69.46202407218516,69.30784227419645,68.8729941174388,67.95110895764083,68.72918217116967,67.85286236554384,66.91281876340508,67.12888855114579,67.07824613479897,66.97835797583684,66.74791012657806,66.63337888196111,66.5099981110543,66.95792697137222,66.44859022786841,67.16850779252127,66.64655505074188,66.95319289481267,67.06960949162021,66.1015704581514,65.21377429179847,64.51985130412504,64.82791863009334,64.79478835035115,64.66808712715283,64.19861236773431,64.39682049071416,64.7084695356898,64.41805664636195,64.24589143088087,63.83870067819953,64.64601546805352,63.773817704524845,64.05037604179233,64.108344537206,63.190864387433976,63.21749579720199,63.20150569360703,63.522280470468104,64.21268870169297,63.54139938391745,63.41882487246767,63.49324046308175,63.926023540552706,63.40084811626002,64.14364903885871,64.02006371552125,63.716568634845316,64.0547123933211,63.651408072095364,63.422566598281264,62.74905552715063,63.06905366061255,63.58778021624312,64.17659478122368,64.1988790249452,64.4669535253197,64.70650572609156,65.64017301006243,65.29936016583815,65.74219819903374,65.1878481945023,65.72816522791982,66.11445835465565,66.69253391446546,67.12552333856001,67.89114096621051,67.38315171934664,68.01502403244376,67.73972407262772,67.5850336663425,67.9379486842081,68.64319119183347,68.90241677919403,69.78366802213714,70.49384253937751,71.38201872911304,70.69322990160435,70.19424269953743,70.04019591398537,70.32536177756265,70.57444557687268,70.53138230973855,69.90893157431856,69.58388604596257,70.02788276597857,70.41452130908147,70.84421653253958,70.9980460810475,71.49508502334356,71.05245192488655,71.31749778054655,71.67505494086072,71.42403131257743,72.33154107118025,72.71714363712817,73.00934902112931,73.17535474244505,73.97584311850369,73.82146048359573,74.1629616478458,73.65733043989167,73.57820651261136,73.79019297938794,73.9226800724864,74.53656156780198,74.95630499534309,75.39342274749652,74.42189126461744,74.99319593328983,74.932177065406,75.44986614445224,75.33039209851995,75.02183705428615,75.34820863744244,75.81326019670814,76.54216894181445,75.7259554984048,74.97877003904432,74.73420768231153,73.90899858670309,73.88598872348666,73.23039023391902,73.60480526508763,72.63306922698393,71.89588261442259,71.54012220399454,71.52115919068456,72.38215241860598,71.73363658413291,72.60489401314408,72.12703301943839,71.44114545267075,71.10476343613118,71.66803401429206,70.99580743536353,70.80417651869357,69.88823562534526,70.87352792546153,70.17562947887927,70.59586137253791,69.94608183996752,70.18916481081396,69.61533755110577,68.88966321107,68.10057528316975,68.44781110109761,67.72221526317298,67.82036235043779,67.21931463899091,66.60151283163577,66.26200723368675,67.07748747384176,67.57034235494211,68.41317480849102,69.39992079185322,69.8045111335814,68.89556650351733,69.60193037847057,69.43290066858754,70.03431885689497,70.27151087112725,70.54079963313416,70.26883369823918,69.62486677290872,70.42241886816919,69.88653643336147,70.83636045036837,71.32584862411022,71.6644774558954,71.64959668274969,72.15168198896572,73.02776718698442,73.06802094168961,73.17123279161751,73.65898727113381,73.48897559428588,72.70296426443383,72.49321187892929,72.59515360882506,73.20100312447175,72.30062631564215,73.22811022028327,73.03613332333043,74.00207370519638,74.96444626245648,74.14324467396364,74.77699606167153,75.7180554792285,75.89074081555009,76.85626052320004,76.40615285979584,77.06166685838252,77.64839554112405,77.86491739656776,78.73820755351335,78.73335996735841,78.13120434433222,77.65365371480584,78.23651241930202,77.8298923401162,77.11099444376305,77.8124563805759,77.34557908400893,76.78022531885654,76.24923159973696,75.38053539255634,74.68230438325554,73.78133454965428,73.88242386374623,74.31876185769215,74.52401691582054,75.3083682260476,74.71814181655645,74.80675074737519,74.74756337935105,75.60513350041583,74.81813027663156,73.83550316141918,74.17394011327997,73.52000423660502,74.12112077744678,73.32102942653,72.61453054845333,71.65421709697694,70.79020034056157,70.58410360012203,69.82127873320132,69.20221771812066,68.89493351615965,69.26756700174883,69.49207963328809,69.77196327829733,68.86689701257274,68.36378902709112,67.37711856560782,67.84641174506396,67.40716372383758,66.52410796331242,66.41571563808247,65.83385112928227,66.6416927385144,65.70646729972214,65.82657778589055,65.92418806394562,66.50552212214097,65.83701949892566,65.46635077986866,65.14844707446173,65.14672972541302,64.45351273659617,64.24136591842398,63.76818169374019,62.95322487130761,63.62298669992015,63.015614388976246,62.49331401474774,61.91442197794095,61.2221719622612,60.83132872544229,60.44374255137518,60.26085560210049,61.04372403211892,62.03351573180407,61.03863924508914,60.042893580626696,60.68683555256575,60.83674456784502,60.54935160605237,60.18778351927176,61.16954984003678,61.395847484469414,60.474567625671625,59.60536071890965,58.891898036468774,59.47581375623122,59.12696589436382,59.51773775042966,59.84209790639579,59.216811360325664,59.08001214032993,59.130813661497086,58.44612898537889,59.37783256173134,59.44657791592181,58.76096994895488,58.595364051871,58.37434024410322,58.542671299073845,57.58272212930024,57.396330930292606,57.85030653048307,57.21909206965938,56.996337071061134,57.75728546036407,58.723199476487935,58.604212530422956,57.90837361011654,57.40171118546277,57.340692279394716,57.51359814964235,58.15493935113773,57.54645235883072,57.98872123751789,58.20577752310783,58.99881476908922,59.62157683353871,58.642659364268184,59.53075082646683,60.15842104703188,59.586362388916314,59.36636627605185,58.47021896811202,57.53264733264223,57.59559319121763,57.02961326716468,57.032901489175856,57.91360517824069,57.69447597395629,58.209559427108616,58.08160963281989,57.212594118434936,56.288617270067334,57.01034021889791,56.053701682947576,56.19422862259671,56.922303803265095,56.006000687833875,56.1263996004127,56.50524894148111,57.01870592776686,57.05828184634447,56.16879015881568,55.403553584590554,54.804192181210965,55.3127176319249,55.102629446424544,55.66632279753685,56.088224817067385,55.825865196064115,56.26644340157509,56.03978461353108,56.471741494722664,57.14444364840165,56.19909326452762,55.20680987974629,54.99275544239208,55.30052230274305,56.051251344848424,55.455076657701284,55.25261502759531,55.35600529797375,54.85121562099084,54.68482302268967,55.06920797424391,55.62644490785897,55.67504267860204,55.16879327502102,54.57756155403331,54.34265320189297,53.39220065204427,53.7196823079139,54.200711005833,54.42374322190881,54.0471163908951,53.21614724583924,53.43307194579393,54.40105186216533,53.502805901225656,52.65528997173533,51.96103496290743,51.32901912834495,52.13838026765734,51.78538640215993,50.99201056268066,51.72765467176214,51.26541649131104,51.80343182198703,51.36949503934011,50.9354089316912,51.60309920925647,51.20645548775792,51.239863796159625,51.583166141528636,51.62721199262887,52.019692200701684,51.16810253309086,52.15981162246317,52.153877317905426,51.93751235399395,51.704215650912374,51.029183726757765,51.54443826107308,51.671092971693724,50.99734771484509,51.33367272885516,51.546832852996886,50.895478130318224,50.91756402514875,51.072748134844005,51.29829128505662,51.00332031445578,50.225977887399495,49.675611743703485,49.86321870889515,49.21239929506555,50.1243921960704,49.51491043623537,49.567277644295245,50.36349837388843,51.092188492417336,50.918857384007424,51.31096586026251,50.767135742120445,50.539931824896485,49.93641705485061,49.81503601465374,50.288264642003924,49.47593809431419,50.41406739549711,49.47246749093756,48.767267156392336,49.41336506837979,50.032812737859786,49.503291551955044,49.804842866491526,49.018768393434584,48.19592392537743,49.09533192263916,49.7478760513477,50.12272096937522,49.57290760334581,48.87194156367332,49.116065359674394,49.88529858738184,49.14475344726816,49.2791494904086,48.992353222332895,48.06746754795313,48.09814394917339,48.93963739275932,48.66926947515458,49.37574172904715,49.68731065187603,50.437518044840544,50.416721537243575,50.29185789078474,50.78252182295546,50.35276327980682,50.339328069705516,50.733971810899675,50.47822074498981,50.95043363561854,50.39655192010105,51.32327154185623,50.50927589694038,50.50540638528764,50.822421786375344,50.6570897558704,49.72479841532186,49.082531365100294,49.89929546462372,49.53904933761805,49.41110523138195,48.92000771826133,49.653307523578405,49.47823140444234,49.820316415280104,49.99553692480549,50.281703469809145,50.67929035099223,51.584278270136565,52.181090073660016,52.19543308438733,51.64436843339354,52.132421656977385,52.51247990457341,52.66260599484667,53.27949557453394,53.78956826496869,53.44570477679372,53.602836122736335,52.712850351352245,53.44051677873358,52.68928801687434,53.50144781079143,52.52361634373665,53.007304806262255,53.78753901831806,53.6963797705248,53.82661014935002,53.852116336114705,53.64680687151849,52.969096425455064,52.37470075674355,51.504703445360065,51.44519546907395,51.38593891682103,51.01429066294804,50.877548307180405,51.707831915002316,52.654212299734354,53.00409931270406,53.71957720303908,53.67939742188901,52.871818161569536,51.9104981739074,52.34906807821244,51.55622169934213,51.92818463081494,51.70033742021769,52.27624430274591,52.660776203498244,52.60806749900803,52.92607547156513,52.370291519444436,53.0094739375636,52.489092148374766,53.429417421575636,54.18929705442861,54.31715558748692,54.74042495712638,55.350613199640065,55.242760935332626,54.29428792139515,53.91540246317163,54.7491507823579,55.3390749306418,54.51412189146504,55.028761085588485,55.20713455602527,55.10138471238315,55.03758786153048,55.32407382503152,54.83492207340896,55.321958248037845,55.64185803383589,55.46684503694996,56.352098600473255,57.138052568305284,56.17631712043658,57.001648580655456,56.18340526893735,56.34028752427548,56.46143975574523,55.87248178943992,55.160749659873545,54.69642225001007,55.69393490580842,55.404672695789486,55.50832405779511,55.4998619784601,55.714276207610965,55.928160754963756,56.60364013677463,56.332171886693686,56.717824613209814,55.88508438738063,56.0485229161568,55.69391764048487,56.06430640583858,55.539893394336104,55.80390110146254,56.25527993030846,55.61133442353457,56.28949299035594,57.0294451629743,56.755440805573016,56.60902921995148,56.243187026586384,55.562255220487714,55.28455196740106,55.45320213865489,54.58991730818525,54.5600512502715,54.61739706713706,54.12056657485664,53.71953242039308,53.93794277589768,53.96638218453154,54.24436841951683,55.018626268487424,54.92067498899996,54.45810910733417,55.17188959568739,54.98481171252206,55.08900739252567,55.717715012375265,55.513396920636296,56.34253725083545,55.6506136842072,54.92254764493555,55.53401251928881,55.57888177735731,55.718143112491816,55.94122908078134,55.97606355790049,54.99035722250119,55.23226817790419,54.766292778309435,55.504549727309495,55.259016210678965,55.49851579265669,56.453038605861366,57.44372504809871,58.38006190909073,57.70381077891216,57.12204213067889,56.44643208198249,56.81094488315284,57.01177108567208,57.41428778320551,57.97316604433581,58.58081286447123,59.0721988347359,58.478801750577986,59.1847209027037,60.115969319827855,60.104845739435405,60.80714685190469,61.472111098468304,62.39382125856355,62.243620249442756,63.08572098147124,62.2588054551743,61.590197685174644,60.80703502334654,61.43741224799305,61.3752875062637,60.77949455101043,61.728053321596235,61.02576840529218,60.928860201500356,59.95196182280779,60.04778581112623,60.91169301792979,60.889936476014555,60.97190615860745,60.563030435703695,60.139026276767254,59.73127165483311,60.40400168579072,60.52072912408039,60.65205792803317,60.244075854774565,60.1916036028415,59.5489707631059,59.333461583592,58.396665325853974,57.89116916805506,57.38144230097532,57.54476510779932,57.13629701221362,57.81281322007999,57.87736586853862,57.44540451327339,57.80414457526058,58.24604661343619,57.679806493688375,56.886577957775444,55.93876787414774,55.759108091238886,55.183708634227514,55.566516587045044,54.636925753206015,54.98594658263028,54.93811273248866,54.769113028422,54.79096180154011,55.48905404191464,55.08257800294086,55.0565227153711,54.4064691439271,53.959543283097446,53.5679592853412,52.99491336988285,53.710846696514636,54.00775133818388,53.17626832751557,54.109311524778605,54.5468666725792,54.438279828988016,54.15017363615334,54.863857911899686,55.43778862245381,55.35441329469904,55.45426153112203,54.724499916657805,55.53342429269105,56.159651002381,55.661138533614576,55.807869428768754,54.87248138571158,54.95435398351401,54.703695634845644,54.56047810288146,54.66666760388762,54.17661318462342,53.527311586309224,54.212342232465744,53.87439924478531,53.086404530797154,53.56172287510708,53.61084025539458,53.11437814962119,52.75272951507941,52.85237233527005,53.75144538888708,53.78034264082089,53.61695246770978,53.9216690948233,54.023675623349845,53.526133918669075,53.39070819178596,53.17410418903455,53.34604469826445,53.83764317538589,54.63054696144536,54.603472171351314,54.724264027085155,54.05162035441026,54.33767840126529,53.99983269069344,54.48876131372526,55.42488952446729,55.169819730333984,55.123597593512386,54.338771811686456,53.579237058293074,53.88247780036181,54.31259594624862,54.1650002785027,53.81576555175707,54.49287402955815,53.64436421869323,54.57554841367528,53.78150435956195,53.25595282251015,52.63327905442566,51.71363893477246,51.442501730751246,50.64647925412282,50.957498263102025,51.060667283367366,50.19581517344341,49.75666899047792,49.60075420886278,50.38662656908855,49.41455023083836,50.0104018971324,49.496148435398936,49.15756728686392,48.458667470142245,47.81198769621551,47.732976333238184,48.716964843682945,48.226387644186616,49.14225363731384,49.4881672328338,50.14717976935208,50.17353229317814,50.46632432984188,50.835083381738514,51.65420585963875,52.274296219460666,52.70482142502442,53.27480629971251,54.169348429422826,54.92027919366956,55.458099510055035,55.39793953998014,55.809353061486036,55.54623130336404,55.45759528782219,55.504434732720256,56.31974558904767,56.9615348787047,57.52724072569981,56.930504699237645,57.11288028396666,57.531497173476964,56.8352509108372,57.15200496092439,58.0682009733282,58.28670440847054,58.998585815541446,58.43392416276038,57.77845147717744,58.60778889525682,58.65874542668462,59.51771461637691,59.81917855003849,60.32111114822328,60.70383671671152,61.357428940944374,60.959995422977954,61.003745574038476,61.22930320026353,61.5694051287137,62.529477558564395,62.44720192998648,63.44587202789262,63.72539049014449,62.94584009051323,62.92323997337371,61.97359396284446,61.53094494622201,62.15341112576425,62.9004792268388,63.86763406684622,63.696682111825794,63.651385435368866,63.724531712476164,62.84342988906428,61.881681519560516,62.44471617648378,62.676977024413645,63.599924384150654,62.87173772742972,63.109560386277735,63.70854028360918,63.01465646736324,62.25666904076934,62.10304087912664,62.959108588751405,63.12838009512052,62.65059609571472,62.24536575656384,63.11713047279045,62.43934526108205,61.915200639050454,62.02185244765133,62.67220756364986,61.68384531792253,60.872817694209516,60.14299306133762,60.75259857485071,60.00462078722194,60.47336377715692,61.19313229061663,60.399042213801295,61.27814096957445,61.41140888631344,62.05042052315548,62.921080499887466,63.83598261605948,63.05660825315863,63.66130491346121,63.53130164090544,63.4147099647671,64.28097790433094,63.76080508856103,63.17183997062966,63.83682556869462,63.48719423916191,64.29795348411426,64.76615513814613,65.63689209334552,66.37369530275464,66.34859939618036,66.87110351398587,67.60627796500921,68.10022188955918,67.49931057170033,66.91092983586714,67.32910387590528,67.75645523844287,66.88003109581769,67.2542878286913,67.9653639481403,67.16197355045006,66.9109974866733,66.61730794096366,66.36535736499354,66.54667861154303,66.3019701181911,66.10302751464769,65.38532256195322,65.91063427412882,66.69145188760012,66.87763820774853,66.32062158361077,65.80724557582289,64.91145912650973,64.2236095010303,63.77314289705828,64.02720362599939,64.26247993949801,63.68144807731733,63.612315551843494,63.81987110944465,64.60872510494664,64.6703009470366,64.5054353652522,64.03301994595677,63.450836054980755,63.29508160846308,62.78381361160427,62.046818017959595,62.465028976555914,63.0752891022712,62.23956934781745,61.411964165978134,61.35670189280063,61.41693431511521,60.417786283418536,60.0040686535649,60.486679875757545,59.946443119086325,59.689663155935705,59.59153317892924,60.17792325327173,60.47282217629254,61.15128876687959,60.71428247727454,60.67352826939896,60.09094347199425,59.46994904289022,59.63898959197104,60.21407866012305,60.65318164974451,60.37187527678907,60.417369230650365,61.31302497209981,61.12207251647487,61.31323881493881,61.78022607322782,61.84469552244991,61.95982178300619,62.40524198813364,61.595612889155746,62.19710781611502,63.04819479165599,62.64538335241377,61.95313803805038,62.70325031224638,63.01691105775535,62.48499170597643,62.01141879102215,62.23594524571672,62.53216220997274,63.443391618318856,62.59187300875783,62.453340012580156,61.50372886052355,61.03497496712953,60.27049742639065,60.79468402033672,60.323774152901024,59.35434644995257,59.666208723094314,59.785456526093185,60.14087430527434,59.629227441735566,59.06529489858076,59.674614873714745,59.311378261540085,58.67954603256658,58.743203327059746,57.842883804347366,57.154401407111436,57.66349852643907,56.729432380292565,56.69022647989914,56.80608631391078,57.48393179476261,57.279628303833306,56.8167938250117,56.577266657259315,57.252162013202906,57.728406825102866,58.037457891274244,57.66660754941404,57.785994791425765,58.39651295077056,57.94629195146263,57.70285981101915,56.95244076056406,57.80638933414593,58.53950868733227,58.008635013364255,57.03029392007738,57.294499347452074,57.60998911457136,57.05790667561814,57.925961094442755,58.08043239545077,57.66938129113987,57.31683432171121,56.98044479917735,56.17971573397517,55.45833091856912,55.55609231162816,54.77656527236104,55.13010064186528,54.72254737326875,54.36299171438441,54.74100837530568,55.21107165934518,56.14228140283376,57.06318085454404,57.200183109380305,56.57164942426607,57.04960783012211,56.957925932947546,57.56755781034008,56.94056360563263,57.68146707722917,57.917208364233375,57.24317890312523,56.96068022726104,56.575517708901316,57.030941165052354,56.430906270164996,56.505318311508745,56.67242917884141,57.14092238759622,57.302396652288735,58.24815336428583,59.071127109695226,59.66163291921839,60.07558482559398,59.70070840371773,60.4134063590318,60.35038652410731,59.363019379321486,58.88445638725534,59.012923419009894,59.892159906215966,59.74525226932019,60.07056709099561,60.792807672638446,60.950011745560914,60.984523253981024,61.94776656199247,61.90615405142307,62.60548000968993,63.20668841665611,63.731381689198315,63.71379455504939,63.49128121137619,63.61383571103215,63.309748923406005,62.81446989160031,62.22640293370932,62.44346494181082,62.69295592047274,63.46264025615528,63.77382992208004,64.72642432944849,64.32085987832397,63.78500933619216,64.2378393993713,64.7997451950796,65.66778179164976,64.79304500669241,64.12724895449355,64.64567949576303,64.62111709173769,64.67413546983153,65.34195975167677,65.43734484259039,65.58681434160098,64.85364528978243,64.16550245974213,64.29829526226968,65.06517256237566,64.57772761164233,65.12625271035358,64.4734119689092,63.67214507283643,62.80127603793517,63.70854540821165,63.02974001085386,62.113240628968924,63.111758194863796,62.351793258450925,61.867843316402286,61.20147519139573,61.884540784172714,61.33853869419545,60.834189374465495,61.16263934923336,61.47898363042623,61.724650520365685,61.771409378852695,60.99134935066104,61.31698392704129,62.26373685710132,61.50500356638804,60.62101741414517,60.381033073645085,59.71870998200029,60.157448201905936,59.86296322522685,59.179194123484194,58.951176188886166,58.87343761045486,58.54418186470866,58.58142404491082,58.87576697114855,58.8368926057592,59.691969682928175,60.46035825321451,60.3346926397644,59.55266923736781,59.02928058244288,58.70149910962209,59.49856646312401,58.56502796942368,58.44668608251959,57.703347912523896,57.48185845511034,56.879247134085745,57.08706088131294,56.55269585736096,57.48431341024116,57.90403606696054,57.35745476279408,56.72647537430748,56.94931792654097,56.9210303532891,55.98907912848517,55.87357118166983,55.02459351439029,54.16908638877794,54.622885883785784,54.98868567403406,54.41839142749086,55.33683322509751,56.09980773087591,55.616607984527946,56.27169415075332,56.96073927683756,57.84684236254543,56.902063878718764,55.91233318299055,56.331206458155066,56.18619477702305,55.9594798553735,56.44893605588004,55.7006918550469,55.936188615858555,55.18604660965502,55.59237764775753,54.90947791887447,54.22295080451295,53.32490608515218,54.25800469983369,55.18829287076369,54.20083289174363,53.556826495565474,53.93987356266007,54.071774564217776,53.18808116437867,53.14944369532168,54.13760354043916,54.26426757266745,54.97149529401213,54.00975342839956,54.64074887614697,54.908454780466855,55.665730020496994,56.11557567771524,56.31880541704595,55.73147832741961,55.235002459958196,55.89059026539326,55.31248081801459,54.52074783388525,53.8906430285424,52.962684764526784,52.16663645673543,51.30965712899342,51.5965284104459,51.03144152229652,51.88378551322967,52.50202394044027,52.07272879360244,52.28070293273777,52.20827180799097,52.124893963802606,52.915520526934415,52.639094692189246,52.029356964398175,52.05787954898551,52.638909340370446,51.841389750596136,51.18153401184827,50.39912295434624,51.27129938919097,51.72400883305818,52.018452084157616,52.93529281904921,52.061884873081,52.13097742758691,53.130925971549004,54.103839648421854,53.9666101783514,54.54276387905702,54.293995823245496,54.84745865408331,54.40586444782093,53.98787903646007,53.74646491045132,54.73595924442634,55.07134078349918,54.309332814998925,55.13487328821793,54.583830944262445,54.13921263581142,54.46759351203218,54.726034172810614,54.040888897608966,54.66598129412159,54.40702491765842,53.56812992785126,54.51635302975774,54.23130870424211,53.69573999615386,54.680938033387065,54.33713431842625,54.43508245283738,54.388731576967984,53.588030125014484,53.30402521695942,54.16131270956248,54.324057114776224,53.46401125006378,53.94367129355669,53.6712709707208,53.82784722233191,53.047496918123215,52.31556866830215,52.93187240837142,52.33814300876111,52.18971363874152,52.67737793084234,52.119758108630776,51.273058341350406,50.46391981560737,49.5836627446115,49.198132222052664,48.20622912235558,47.409027909860015,46.455516597256064,45.49630115646869,44.58846894977614,45.219627586659044,45.0303571629338,45.40369501337409,46.190574674867094,46.6953517254442,47.57452978892252,47.81455235229805,48.68735611392185,47.94355933088809,47.51304825907573,47.07967461226508,47.63332639168948,47.959268677514046,47.30727617209777,47.04327159142122,46.236006499733776,46.217005115468055,45.346282372716814,45.59318384435028,45.51625338150188,44.5226148404181,44.108107049018145,43.15362858725712,43.224874671548605,43.10899689281359,42.49765774374828,41.97175781009719,42.67797105433419,43.116828496567905,42.361706137191504,41.66666573565453,40.697714490350336,40.940004378091544,40.56230284133926,41.432100056670606,40.5052497680299,41.05351880379021,41.791048309300095,41.94716089870781,41.06583282817155,41.9320754930377,41.55776154389605,41.8722138130106,42.49225380970165,41.68533473042771,42.29964219452813,41.33557384414598,41.795093763154,41.02171572856605,40.413909033406526,41.11995851341635,40.42174254078418,40.32906438969076,40.667030333541334,39.67715534940362,39.54664804553613,40.35904182866216,40.521040654275566,40.81089978618547,40.221870181150734,39.92256394447759,40.55716436030343,40.363934552296996,40.3845772058703,41.231694849208,41.123952908907086,40.83293639635667,41.62276222370565,42.1591005474329,41.32076977053657,40.87961476901546,40.724386806599796,40.493425155524164,40.770067228004336,40.36420346098021,40.799418803770095,41.63125252863392,40.87181063462049,40.014066831208766,39.47815503412858,39.58945329580456,39.34787008399144,40.08371333358809,39.81216787593439,39.97015287773684,39.9603959126398,39.85548343276605,40.52055453136563,40.238074601627886,40.76320709846914,40.85431120591238,40.89034259645268,40.05095739616081,40.22532465308905,39.59795338008553,39.20141989085823,39.87923940178007,39.17726950487122,39.239217650610954,39.86241531325504,40.009095535613596,39.72050498845056,40.27019490906969,39.284139511175454,39.49606837052852,38.77269868552685,37.786474651657045,37.88522847229615,37.14340515108779,37.007524700369686,36.28371516754851,36.04301134031266,35.613509251736104,36.57963379798457,36.298808311112225,35.69447596184909,35.739140591584146,36.0724525093101,36.97450991021469,37.25144852837548,36.731905600987375,36.4851197632961,35.94648997206241,34.964290083386004,34.973854314070195,34.77854348812252,34.12312666140497,34.86150969285518,35.07635480072349,35.55027686804533,36.12432562606409,35.48411347204819,36.36168496450409,37.154906804673374,37.55319569725543,37.838389416225255,37.673222875688225,37.77234845003113,37.11990546295419,36.170921232551336,36.3525680154562,35.6439256016165,34.985463850200176,34.96695278119296,35.653608560562134,36.26244335854426,35.62482029013336,35.34687647782266,34.82947983406484,35.40607319865376,35.204369221348315,34.45537721551955,35.10384346777573,35.57955325348303,35.15166625287384,35.60834122123197,36.11903797648847,35.33802554477006,34.43629479641095,34.57013294985518,34.990961821749806,34.345625863876194,35.22672130865976,34.95648518297821,35.92249962221831,35.347134937066585,35.72133643273264,35.682815491221845,34.719095207285136,34.46385826030746,34.76988068409264,35.10309690237045,34.28148754918948,34.313470190390944,35.12101727165282,34.13387101283297,33.73694334970787,32.83337972732261,32.792095214594156,31.846705051138997,31.783460282720625,32.728628921322525,32.16390475491062,32.15886386251077,32.441796001046896,33.12330272886902,32.32165040867403,33.0147794294171,33.16557384189218,33.87164918286726,33.791614189278334,33.17924730153754,34.04873504349962,33.10723235877231,33.93050817865878,34.56791516812518,33.58323289966211,33.28457555640489,33.89527033129707,33.65142444567755,34.26044433983043,35.141987761016935,35.67768950620666,35.291119892150164,35.535577862057835,34.98641399946064,35.284967883024365,35.48248497210443,36.48146879533306,35.54045578278601,36.297311960719526,36.702950364444405,36.54197330120951,37.4974959269166,37.9619319550693,36.96315716765821,36.70821827510372,37.56194598414004,36.94944357406348,36.81823238078505,36.1264006732963,35.547088963445276,35.29482014011592,34.79573365300894,34.17368989251554,34.556680612266064,34.72594096092507,34.65179110318422,34.0122457286343,33.03729384858161,32.69277190975845,32.098006694577634,31.290789598599076,31.123168270569295,31.031867342069745,31.383268904406577,31.26182688260451,30.593338389880955,30.077185584697872,29.558350440114737,28.648334216792136,29.616529318038374,29.242790129501373,29.64835059409961,28.992748425807804,28.895414212718606,29.33997528348118,29.13210019469261,28.35910150175914,28.666630890220404,29.241439622361213,28.67801178433001,29.36959233460948,30.050841012969613,29.15097500476986,30.068429911043495,29.456482759211212,30.069240269251168,29.724692478310317,29.02275404613465,28.596584874670953,29.310826756525785,28.68062422517687,28.18590978020802,28.06643137615174,28.217000948265195,28.89051188947633,29.154279665555805,28.939511567354202,29.90111053083092,30.455721516162157,31.14712256519124,31.70257056504488,31.26017206395045,31.0676300204359,30.946074442006648,30.94456444401294,30.44878691388294,30.435571148060262,31.419768461957574,32.141631598584354,32.86021323222667,32.36917384900153,31.581412496510893,31.14121990976855,30.929843973834068,30.739391670096666,30.924485547002405,31.588278730399907,30.920895231887698,30.488639787305146,30.143972924444824,29.59254871867597,28.62000285508111,29.418117441702634,30.07961766142398,29.642978098709136,29.496541862376034,29.176349472720176,29.509098213166,29.527953607495874,29.561882665380836,29.16205643583089,29.143640891183168,28.397668710909784,29.364328875672072,30.200152724515647,29.407079903874546,28.678870220202953,28.98785614548251,29.814019182231277,29.892012879718095,29.586020905990154,28.94049805542454,29.44661484286189,28.918467975687236,28.146749175619334,27.9463712843135,27.005968814250082,26.4199859672226,25.929986997973174,26.314612527843565,25.37845280300826,25.87267166748643,26.08696683170274,25.471578150987625,25.618272183462977,24.75054408609867,24.719977533444762,25.631650913506746,26.446061556227505,25.771150787826627,25.0176297952421,24.999137537088245,25.535186347085983,25.03649803204462,24.55860118707642,25.37511869845912,25.001948952674866,24.48747414443642,24.068990682717413,23.118924197740853,23.409045876935124,24.21654093405232,25.135876909829676,24.80692963115871,25.344824851490557,24.396014032885432,25.3774304385297,24.670813986565918,25.542812676168978,26.443186444230378,26.52299162140116,26.417106740176678,26.27798886364326,27.053162719123065,27.308032993692905,27.245241751894355,28.00570866605267,28.894139889162034,29.885393105447292,29.542024893220514,30.415174852125347,30.571526588406414,30.2981451516971,29.602904548402876,30.223923585843295,30.26119951857254,31.146391150541604,30.465593215078115,30.527169697452337,31.42762439418584,31.107416533399373,30.263288154266775,30.53144724154845,30.515859772916883,31.11870622076094,31.326545498799533,31.636619563680142,31.705067636910826,32.04523192578927,31.970080495812,32.07526747090742,33.01228430867195,32.81137647293508,33.053608102723956,33.60573972109705,33.686742316465825,32.945278950966895,33.49987580720335,33.5199587685056,33.34262107638642,33.748727857135236,33.33343960251659,33.98619567370042,34.891475550830364,34.05277554830536,34.866345702670515,34.25738383131102,34.37991008954123,34.73729866184294,34.96028957189992,35.42237269738689,36.38570977607742,35.71653297031298,35.546877625864,34.81427194131538,34.091091103851795,34.960104770958424,34.01468770764768,33.80774225760251,34.611428250558674,34.44186784652993,33.85200145049021,32.919864777475595,32.089192986954004,32.42874837806448,32.40750716114417,33.12169628357515,33.330252630170435,33.48573663411662,34.30349728791043,34.337300366256386,33.78583215130493,33.68841000972316,33.67075608391315,34.33984554512426,33.47014370467514,32.72205259697512,32.81063100416213,33.20911172032356,33.56630031997338,32.80856556119397,33.72170962207019,34.617511907126755,35.250624186359346,35.03439767612144,35.5709455255419,35.185914296191186,35.093981828540564,34.50202202377841,34.83665387798101,34.26136622671038,34.92778757959604,34.30047879368067,33.644231816753745,33.847611960954964,34.79005043581128,35.1220952575095,34.68680337117985,34.294673532713205,33.66642152843997,34.46216547628865,34.75918678147718,33.98905024584383,33.814847140572965,33.58801656309515,33.881621290463954,33.29691356793046,32.370081175118685,32.332039611879736,31.336672320961952,31.133373159449548,31.90985902911052,31.712474084459245,30.93674705736339,30.101794390007854,29.296626600902528,30.03054791362956,30.22342787962407,31.181473626755178,31.895147668663412,31.805361279752105,32.537105954717845,32.805468073580414,32.47758347121999,33.3694918602705,33.15675120707601,32.92066836124286,32.54116007918492,32.820196045096964,33.07942039007321,33.803043958730996,34.672636228613555,33.88481168495491,34.5001180479303,35.35148200765252,35.14298539189622,35.993078720290214,35.627390204463154,34.81513755675405,33.96466091182083,33.674384717363864,33.071512033231556,32.97187566990033,32.459751915652305,33.3943196372129,33.099549828097224,33.48130204807967,32.656842035241425,33.31127070588991,33.31350491568446,33.54908908344805,33.34588827798143,33.05856156954542,32.619249367155135,32.05207125470042,33.04363993089646,33.60145694389939,34.5802831701003,34.10549665149301,34.15201103966683,33.92055224860087,33.96287956740707,34.1231847894378,33.636708714067936,33.51801855349913,33.228996583260596,33.77292574988678,33.27669500000775,32.5990646337159,33.44978760695085,33.89752121642232,34.55690285237506,34.95718033006415,34.085593523457646,35.04048984590918,34.16095731873065,34.561728285159916,35.33501164056361,36.07337225554511,35.71397745143622,36.497798912692815,37.4882252542302,36.99428792949766,36.66408372158185,35.76367966923863,36.0185377234593,35.345286808907986,35.44854079838842,35.33329870318994,35.184853048529476,36.1398841352202,36.93824746320024,36.55377934128046,36.29616377456114,35.94735939940438,36.089634793810546,36.63652506330982,36.38659264752641,36.900424398016185,37.501080710906535,36.951817689463496,37.32456259801984,36.413856936618686,36.94694732921198,36.482841501012444,37.027543793898076,36.14846879383549,36.99672544747591,36.55408227723092,37.40937494626269,38.271522887051105,37.81080134399235,38.407243005000055,38.117564600426704,38.96040937723592,39.817337496206164,40.5745605006814,39.82091544009745,39.61257234448567,38.835929452907294,39.497427131049335,39.880430683493614,39.022154396399856,38.37687369482592,38.83778900047764,38.43527802778408,37.604047634638846,36.80367095395923,36.72308957343921,37.26600393699482,36.91752461204305,36.23914528358728,36.68740120669827,36.66176857519895,36.03653138643131,36.65298192482442,36.5577433751896,36.68911900417879,36.19878194388002,35.37311056861654,35.68748663365841,35.318018005695194,34.41471812920645,33.77110282657668,33.71404028311372,33.531748107634485,32.825181825552136,33.258596242871135,32.808393489103764,32.93700275942683,33.349093480501324,33.55743700731546,32.59692047908902,31.796108196489513,30.969196933321655,31.44970950903371,32.39431017218158,32.63017410086468,32.17563574016094,31.73958092695102,32.2029047254473,32.179092935752124,32.574180922005326,31.66751072043553,32.52681665448472,31.893710079137236,32.70202584937215,31.79341950919479,31.13934714253992,31.0008459626697,31.486234605312347,32.14922273810953,32.16660218825564,31.97687467560172,32.34441908495501,33.17461907956749,33.55407740781084,34.095019083470106,34.083794474136084,34.209199198521674,33.472261511255056,33.364606253802776,34.31872571306303,33.36552054621279,33.208061289507896,33.74568696273491,33.5899662245065,33.849574372172356,33.66911566024646,33.128128605894744,32.24998926371336,32.04937745630741,32.629477709997445,33.10203321278095,34.020369595848024,34.168131701182574,33.51303854351863,33.754414869472384,33.498502841219306,33.9831667561084,33.73522703209892,33.93207260128111,33.97680359892547,33.34037939226255,32.992656600661576,33.04342283727601,33.325407300144434,33.2673628879711,33.32458182517439,33.58752690907568,33.03873307351023,33.23385119624436,33.67808657186106,34.53446285845712,35.23751142900437,35.0030698007904,35.262900065630674,34.26401863992214,34.71647723391652,34.83284778287634,35.17198680480942,35.195708906278014,35.776222691405565,35.6619338481687,35.66987448418513,36.15226653870195,35.64522715797648,35.27002585912123,35.06984025379643,35.18626654986292,34.36992422584444,34.20520383352414,34.00897825695574,34.75534396804869,34.74620614713058,33.79712323285639,33.78727936884388,32.8697447469458,33.47738656774163,34.349072862416506,33.997361578047276,33.663522116374224,34.57015476981178,34.27893548319116,34.396653099451214,35.31339175859466,35.0417026639916,34.58217275515199,34.11095732683316,34.90663876477629,35.11894845357165,35.26931654382497,35.500927885994315,36.10337729519233,36.529338048771024,36.268699931912124,36.18561800569296,36.84562821080908,37.20559380436316,36.608621910680085,36.5527136544697,36.98244354641065,37.645415517967194,38.25086018303409,37.49836762389168,37.59350565681234,38.052949032746255,38.130150228738785,37.24670717213303,36.7765024243854,37.46043450105935,36.619574564509094,37.04619794106111,36.606832729652524,37.110631401184946,36.21909247059375,35.24413131084293,35.71522957645357,35.76905993372202,35.07936827093363,35.30341384932399,34.364829033147544,34.802968876902014,35.41064423089847,35.756119784433395,35.14467424713075,34.55802708910778,34.5272266366519,34.667854784056544,34.77351827220991,34.07298622839153,34.212251311168075,33.36528991442174,33.83907467778772,33.32199242757633,32.95593329658732,32.44446138571948,31.588296073954552,31.537713547237217,30.806508167181164,30.406993619631976,30.704402826726437,31.130010168533772,30.724599736277014,30.650723110884428,30.277218817267567,30.811791258398443,29.964532444719225,29.36457160487771,29.898635929450393,29.32820154959336,29.260699044913054,28.736950516235083,29.26852225139737,30.01763829868287,30.526811089832336,30.033929063938558,30.743429319001734,30.531255529727787,30.616674365475774,30.164874240756035,30.530667175073177,31.144221781287342,31.80504576396197,30.846273520495743,31.650612357538193,31.723224147222936,31.789912255480886,32.44165834086016,31.86853680294007,31.894349272362888,32.862573188729584,32.225485384464264,32.37727693794295,31.382391846273094,30.991040552034974,31.663227384909987,32.34024852188304,33.015993230976164,33.81912087043747,33.94888908835128,33.00782891223207,32.527489721309394,32.82111366279423,32.448757032398134,32.53204433619976,31.542902952060103,30.97018703073263,31.84344417974353,30.845746139530092,30.940864297095686,30.27884179726243,30.595075401011854,30.947486487217247,31.824583424720913,32.62982218340039,32.646470490377396,31.907348906155676,32.496628895867616,33.4155578170903,33.66981143364683,33.027056018821895,33.607407884672284,33.09365391312167,32.261814835015684,31.985701659228653,32.620044115930796,32.292653584852815,32.54533269768581,31.62898519448936,32.33513946831226,32.29634031094611,33.28014817414805,33.433937336318195,34.3238918306306,33.53623823216185,33.63023680867627,33.283241445664316,33.41543729463592,33.045042164158076,33.544653232675046,34.196383595932275,34.657342510763556,35.02663932275027,34.123475265689194,34.218822825700045,34.39456373406574,34.113994212355465,34.32899771304801,34.51464377809316,34.69619160797447,34.95243886997923,34.34853583108634,33.58888701349497,33.072160670068115,34.01354415062815,34.105610681232065,34.869755062740296,35.77344785258174,35.25547032430768,35.5183036075905,35.385996150784194,34.95440873876214,35.0481998459436,35.41623281594366,35.54320722213015,35.22144249547273,35.14474763162434,35.44397390494123,35.01989292865619,34.30378062650561,33.57830357272178,32.87170965177938,32.75826091878116,32.422516346909106,32.889597283210605,32.076923144981265,31.656614114064723,31.85985061293468,31.123398239258677,32.052636362146586,32.15414788527414,31.966945309191942,32.046918927226216,32.41986137581989,32.59894916508347,31.82519402867183,31.209272184874862,30.607646645512432,29.8722333596088,30.61364466417581,29.62662851670757,29.65093014249578,30.602929988875985,29.730537810362875,29.86426733387634,29.558086172211915,30.12187301972881,30.376680738292634,29.778005620464683,30.25874068075791,30.920013840310276,31.801969333086163,32.08094819728285,31.68526426423341,31.99438033392653,32.957969796378165,33.94328638119623,33.63531803665683,33.6985504925251,34.557566706091166,35.50455291289836,34.60513915773481,33.92966149933636,34.85921045579016,34.26989780506119,33.427512370515615,33.80850862711668,33.010987462475896,32.79404767835513,32.217064091935754,31.849972336087376,32.452985593583435,32.62710620649159,32.74099328974262,31.867185892537236,32.5771704306826,31.9175512092188,30.967141266912222,31.0317272990942,31.45156929222867,30.621204298455268,30.629203213378787,31.138400278054178,30.4935872964561,29.895248912274837,29.743588333018124,28.85379399638623,29.48711908562109,28.956525058485568,28.505834909621626,29.396874490659684,30.13576093968004,30.335056023206562,29.835446894634515,30.6849570912309,30.38293714914471,29.702709523495287,28.87444910313934,28.73901578132063,27.798739487305284,27.357834020629525,26.646239043213427,27.609797783661634,27.920153331477195,27.340524449013174,28.103081929963082,28.68135404167697,29.32703926973045,29.553312852978706,29.65246296627447,30.13624385697767,31.03346688626334,31.173733766190708,30.661369568668306,30.620501259341836,30.282228636089712,29.33455220796168,30.28086054837331,30.464927373453975,29.72395323123783,30.69000896718353,31.36420925706625,30.876543182879686,31.21768216462806,31.46506088413298,32.112466318532825,31.96744657913223,31.572218772023916,30.649821694474667,30.295723729766905,29.72070861980319,29.877739765681326,30.32189902337268,31.16339264018461,30.715292064938694,29.902472977060825,30.414697783533484,29.442386734765023,29.803986249957234,29.28483464429155,29.07678382238373,28.78676050249487,28.739508296828717,28.326147829182446,28.358966360334307,27.434219393879175,28.314589727204293,28.319239067845047,29.130836230237037,28.50239788647741,28.670652823522687,29.329142328351736,29.37608470954001,28.458632277790457,28.947161937132478,28.05754271708429,29.056678858585656,29.811363206710666,28.84915477083996,27.86214238172397,27.126757500693202,26.943179674912244,27.234103980474174,26.279734016396105,25.866575149353594,25.054125692229718,24.832642078399658,25.14900974277407,24.81778029492125,25.290354289580137,25.536953021306545,24.99013938009739,25.564359095413238,25.43113157711923,25.082229169551283,25.03135352442041,24.31070180144161,24.017029963899404,24.661184177733958,25.145988111384213,24.8961272938177,24.94004945969209,24.445865253917873,24.36559020122513,23.533870208077133,22.556105663999915,23.28947740420699,23.369101700372994,24.141879089642316,23.679972807411104,22.945466948207468,23.040238551795483,22.409801587928087,22.40302666183561,22.670702054630965,22.21691453969106,21.431210436392576,21.67437437037006,20.890789898578078,20.36375205637887,21.19383763568476,21.714231515303254,22.278558682184666,21.89784213202074,22.818894660566002,22.08000519918278,21.556747854687274,21.921031578909606,21.97735418751836,22.10328662674874,22.83623278560117,23.759064002893865,23.12330247182399,22.15175836859271,21.85042267292738,22.096600161865354,21.616757520940155,21.522951811086386,21.68440520623699,21.483654854353517,21.645782258361578,21.28358645364642,21.773320998996496,22.28830051794648,22.687570180743933,23.67637928435579,23.18541637249291,23.332675742916763,22.79217108990997,22.57423363160342,23.31185260368511,24.208222201559693,23.26870475616306,24.248479837551713,24.8375733634457,24.26536382595077,24.764246474485844,25.23035037657246,25.910059614107013,26.59155101981014,26.185977837070823,25.775189377833158,25.67539356695488,25.887469047680497,25.116702643688768,24.554866135120392,25.30702868802473,26.068623191211373,26.776826082728803,25.92692092154175,26.330377935431898,26.63010701444,27.132029433269054,28.060793531127274,27.58012759871781,27.610221637412906,28.421238295268267,29.397135683801025,29.98971421085298,29.755329594947398,28.880136992782354,29.685515416320413,29.13814341230318,28.791606621351093,28.980330910068005,29.70123088406399,30.557058366481215,30.486446128692478,31.369995748158544,31.30695702554658,32.10479279048741,31.804006337653846,30.884383996017277,31.730585306417197,31.40773590328172,32.27894543064758,32.294486017897725,32.85967314243317,32.14643861306831,32.85875583952293,32.69180034659803,32.97563459537923,32.313078762963414,33.17406283784658,33.6138028986752,33.23480536509305,33.80922847986221,34.44935791613534,34.90206396020949,34.42426740843803,34.11645124061033,33.94360504578799,34.265343851875514,35.20534758362919,36.03394782310352,35.856876568403095,35.222922721877694,34.33897817553952,34.07776849158108,34.31127638556063,34.93551794672385,35.24026217404753,34.314556722994894,35.139280821662396,35.21762269316241,35.082911611534655,34.24097316060215,34.24475627485663,34.739964397158474,34.41001274390146,34.329552257433534,33.76771050365642,34.39574536634609,35.07579669402912,34.425531721673906,34.08792035467923,33.29765063896775,32.6414569565095,32.19906938029453,32.15538838878274,31.163498343434185,31.51219290588051,32.47991724777967,32.96677422663197,32.30366138741374,31.66919436864555,31.38201620755717,30.446410312782973,30.69797545252368,30.87186011020094,31.676971619483083,31.6608300274238,31.54516468849033,31.853481688071042,32.26457256777212,33.10704898275435,32.618507059291005,33.16310573462397,32.78500101575628,32.864462811965495,32.63960256660357,32.73261109413579,32.01553685683757,31.95724243670702,31.966275161132216,31.24263432342559,31.961162379942834,32.848768406081945,32.23862644704059,31.590512783266604,31.852773196529597,32.742663342971355,33.32220674632117,34.08941601263359,34.03882595524192,34.96912483032793,34.61020929925144,35.09892036067322,35.286946325562894,36.050672305282205,36.78146945871413,37.30161318136379,37.25211398862302,36.71446014661342,37.469839537516236,38.4039865070954,38.0893724700436,38.40752810612321,39.00017714314163,38.930648834910244,38.78428473463282,37.87962883338332,36.91363070998341,36.42011143732816,37.134813118726015,38.074887577444315,37.16680823918432,37.85782855702564,38.01422817166895,37.424151396378875,36.61354466108605,35.908357033506036,36.245130518916994,36.20949481893331,36.807085142470896,37.054600212257355,37.44994651572779,37.078365905210376,36.56808638665825,37.0738108609803,37.363070683088154,37.9205470783636,37.2056855908595,37.71096284221858,37.99353031348437,37.69972196687013,37.462186568416655,36.91436570137739,36.466799857560545,37.060725973919034,37.25251874886453,36.68178451247513,36.782292902935296,36.70143558783457,37.11732334038243,36.66429739072919,35.866915938444436,35.81459978828207,36.38180270884186,36.687303740531206,35.957516280934215,36.67753301979974,37.23134194267914,37.24564567068592,37.6867112996988,38.252776116132736,37.398012374993414,38.36909476853907,38.79785130918026,39.410065572243184,39.72486234270036,40.60339590162039,39.754736844450235,39.65894008195028,40.627827818505466,40.19360224995762,39.95501803886145,40.330766392406076,40.87909155525267,41.70912785688415,41.44565932638943,40.73602406308055,40.39786973595619,40.777980372309685,40.91814957652241,41.82382450159639,41.03197704255581,41.7657792926766,41.57465053163469,42.27998109534383,41.81787974666804,41.880732057616115,41.272661639843136,41.509474446065724,41.677541949320585,41.204450553283095,40.34831277560443,41.21472554653883,42.19074752321467,41.57255073962733,42.09265359910205,41.47393809724599,42.065215051639825,41.362411378882825,41.38601212762296,41.38426268380135,41.523189234081656,41.87854921957478,41.279701645020396,41.320860855747014,41.931807700544596,42.92487106425688,42.545895248651505,43.1566835870035,43.33504079468548,42.41145460214466,42.21084308018908,41.22685199882835,41.23488158825785,41.45256757317111,41.5434189196676,40.941109044477344,41.79976459313184,42.713994504883885,43.19092796649784,42.21468754345551,42.5344224255532,42.2157641435042,41.6668463521637,42.29842644929886,42.23466139566153,41.49476135149598,41.20454933820292,42.20000920537859,41.71345963794738,40.99900119099766,40.01993109192699,40.377783150877804,41.28632696066052,40.5510198045522,40.249769577756524,39.73398288618773,40.0768989501521,40.3519452130422,41.20916332490742,40.96930753160268,41.33039659401402,41.50055532064289,42.42507300293073,42.23532727919519,41.51983695756644,42.472758271265775,42.25846229726449,42.45006211847067,42.37724495306611,42.12958308495581,41.80929156392813,40.832170786801726,40.34625563817099,39.751004942692816,39.575449558440596,39.65800109645352,39.634489967953414,39.11824696045369,38.453888637479395,38.10344951832667,37.483254755847156,38.05597270745784,37.31076071737334,36.39504203060642,36.75318461237475,36.62878080504015,37.17769506573677,37.14387980848551,37.00003529014066,37.46644678339362,37.97539647389203,37.533221466932446,37.17246937472373,37.75744850561023,38.49209536565468,39.19380207685754,38.461940315086395,38.29904474923387,38.68299012677744,38.651982518378645,38.77872533490881,37.90085286926478,38.35323049034923,37.974194549489766,37.49487882480025,38.0696257641539,37.36486359592527,37.539180835243315,36.54542016191408,37.51553170615807,36.61796403909102,37.44121604366228,36.71970417769626,37.16061823023483,36.20862682489678,36.42867710068822,36.60474428907037,36.63179264264181,35.98939901450649,35.09779981477186,34.47792634367943,34.41578572290018,33.576200834009796,32.61693991255015,32.932318437378854,32.33483851980418,32.521490149665624,32.798815266694874,33.26636223262176,33.36902229581028,32.4037580601871,32.087624861858785,32.43350795004517,32.91411264706403,32.61356424354017,32.736088369973004,33.36717321397737,33.90299090463668,34.221987411379814,35.09885118808597,35.05270004319027,35.498763353098184,35.455105824861676,35.68975611357018,35.470667318906635,35.26365274330601,34.42990773357451,34.586980033665895,34.10869058128446,34.685008173808455,34.87794459192082,34.03767909761518,34.98844930296764,35.96453233668581,36.31083210138604,35.83239953126758,35.6476529026404,35.102632025722414,35.72421655198559,35.516663582995534,34.98378585278988,35.70052327075973,34.883306574542075,34.01046622451395,34.5942114116624,34.236955920699984,35.11434722086415,35.02071016142145,35.36038213223219,35.24364735512063,34.69078352395445,33.94477735739201,34.060023406054825,33.52260898286477,33.85053581278771,34.42712352750823,34.15749168116599,33.58327820431441,32.84719465021044,33.54244077252224,33.10526960575953,33.50553322583437,33.79382495209575,33.197061710990965,33.304661623667926,33.73860901920125,33.53533168230206,34.38216469157487,34.23264760244638,33.30108793079853,32.556692951824516,31.910978590138257,31.00972114270553,30.895332647953182,31.446272859349847,31.04507360002026,31.85884448280558,32.0482967752032,32.27179684815928,33.25261003430933,32.81055496819317,32.115404662210494,32.813106996472925,31.849866169970483,31.99881358491257,32.57184725115076,33.18003261741251,32.970500621479005,32.95982052478939,33.802509961649776,34.55875421408564,34.5298811737448,33.812328298576176,33.77873315149918,32.89909496996552,32.07589688524604,32.53754734573886,32.84151443326846,33.074112315662205,32.42109657032415,32.86659064749256,33.47173161478713,32.75551664317027,31.828379165381193,32.00337325874716,32.36651583528146,32.42335837800056,32.40373868634924,31.428208088502288,32.360811109188944,32.754849379416555,32.22637636447325,31.912067289464176,32.5025790897198,32.30066509637982,32.731845072004944,32.27420766139403,31.28072886262089,30.814994541928172,31.327865751460195,32.07757558906451,32.85716102924198,32.4581392435357,32.35519831394777,31.417357654776424,31.339277201332152,31.744081465993077,31.24778852239251,30.633135033305734,30.32096251891926,30.7097575715743,31.509160356596112,30.72677327739075,30.166836222168058,29.669604592956603,30.373752985149622,30.367514118086547,29.668181742541492,28.693515576422215,28.24712340021506,27.703952480573207,27.474670915864408,28.011349958367646,28.668136057443917,27.766708962619305,27.44012233428657,26.874240971636027,27.858500115573406,27.758501238189638,28.421650080010295,29.256446294486523,28.669388737063855,28.24528227886185,27.379652209579945,27.746934973169118,27.255678086075932,26.99571336293593,27.588013930246234,27.099164253566414,28.03488902375102,27.67572037037462,28.43561530346051,29.22949087060988,28.890383888967335,29.573234592564404,30.52604715153575,31.5004526367411,32.09605949558318,31.371780925430357,30.4172087572515,29.766921889968216,29.746661328244954,30.149136159103364,29.391002930235118,29.70812423666939,29.646286248695105,29.572159374598414,30.190652891993523,30.560739874839783,30.529024864546955,30.727504247333854,30.64930552057922,30.7956911791116,29.935460765380412,29.134343270678073,29.75197585579008,30.00756502803415,29.961676460225135,30.922179309651256,31.0441341297701,31.474389064125717,32.24294905131683,32.28484261734411,33.233842716086656,32.687863525003195,31.94084123848006,32.700268290471286,33.42836787505075,33.005926521494985,33.233384245075285,32.99360425770283,33.578692679293454,33.61002579238266,33.508252615109086,34.457392213866115,35.16812937660143,34.51579524995759,35.40529929706827,34.83484873082489,35.242963046301156,34.81296022236347,34.96365282451734,34.11955454200506,34.61557581787929,35.24495029076934,35.92910713888705,36.010835534427315,36.702509983442724,37.45785664767027,37.6246529975906,38.33551776316017,39.29803469451144,38.35401003109291,38.19119294779375,37.8912263950333,38.52798275928944,39.39740851987153,40.15209484286606,40.54793721716851,40.934350062627345,41.268697816412896,41.341071479488164,41.18868445698172,40.64492389326915,40.37541105411947,41.10040995059535,41.24176802765578,41.47034539608285,41.580245136749,40.81088067917153,41.46381278010085,40.841793573927134,40.71797575894743,40.34683397458866,39.9744831440039,39.33576087793335,38.72849566908553,38.78661314956844,39.28245803248137,40.13825128227472,40.46470855968073,40.716761075891554,41.36721495492384,40.80094826873392,41.11115794535726,40.3984769214876,41.12487215967849,41.29112932225689,40.818266122136265,41.79351732460782,41.06855049403384,40.23752488568425,40.34973770659417,41.13042779127136,41.81831857236102,42.292546414770186,42.74576981412247,43.438710080459714,42.67760607553646,42.13302941760048,42.96325330575928,43.22913346020505,43.45244430704042,42.512856270652264,41.80059698270634,42.665525131393224,42.37791517470032,42.649147022515535,42.966493213549256,42.87765530357137,43.64067972265184,44.404804178047925,43.483257004991174,43.87752246716991,44.22993517667055,45.171333078760654,45.18221664149314,44.61039577098563,43.771598847582936,43.42549282265827,42.97255117353052,43.87955174501985,44.7944171060808,44.3113910718821,43.65255781868473,44.550083205569535,44.156716451980174,44.08769467566162,43.642500722780824,42.91331633273512,43.84736837120727,44.7112628556788,43.98568432871252,44.4513606922701,45.06177469342947,45.30632049636915,44.946535527706146,44.564675683155656,44.37844531284645,44.93563408404589,44.08589548198506,43.96719296928495,43.19829787639901,42.38712649932131,42.79937430983409,43.69925993680954,43.033219245262444,42.7805393752642,41.78889478975907,40.94286515051499,40.10422230651602,39.36483970377594,39.552532395813614,40.01768684294075,39.34356918092817,39.55662937555462,38.57182382931933,37.7655650889501,38.504958066158,37.905015288852155,38.54348801448941,38.499768391251564,38.641240424476564,37.95943852234632,37.93237554980442,38.91165379015729,38.19832139275968,37.89730289159343,37.125352571718395,37.663368622772396,37.852514846250415,37.890255936887115,37.1353048318997,38.04635213827714,38.96784653002396,39.941171639133245,39.568855399265885,39.209803248755634,38.541243974119425,38.513088217936456,38.51215810608119,38.62498375866562,38.870941505301744,39.46279361564666,39.35988332377747,38.38964953832328,38.9237603363581,38.187511711381376,38.23440934531391,39.217170452233404,39.413726492319256,38.67214002413675,39.4431641404517,40.007912955246866,39.216161215212196,39.972966680303216,39.18567730393261,39.71620283462107,39.63381698448211,39.81521560810506,39.59374520229176,39.67655409080908,39.7744035855867,38.9525359463878,39.73734419839457,39.95437744120136,40.86390087194741,41.14608209487051,41.80261082528159,41.5836237417534,41.45501834107563,41.639011504128575,42.211467595305294,42.78042043792084,42.80069652153179,42.52562172524631,41.76944529265165,41.47961817774922,40.73444023961201,39.926041507162154,39.128899722825736,38.149936196394265,37.266385595314205,37.76610097195953,37.809462695382535,38.43551843799651,39.31022070907056,38.82465811865404,39.5874529867433,39.27929069567472,40.22766813915223,40.60419038357213,41.56575617333874,40.9062832496129,41.7783497418277,41.69613320333883,42.192986379377544,41.35521909175441,41.99865241255611,42.38039343385026,42.485731354914606,43.2498993864283,43.69445413118228,43.09006396913901,42.91516997618601,43.51269038580358,43.01868817862123,43.694033154286444,44.574540339410305,45.56079804524779,45.50549970706925,46.207210931926966,45.44457238027826,45.72896874928847,44.73196736956015,45.22347172116861,45.801568660885096,45.53428529575467,44.763011920731515,44.37666942644864,44.616260901559144,43.88077807193622,44.47569833090529,44.78113755630329,44.66525226086378,44.50613467488438,45.24567073490471,45.064367175102234,45.28177774371579,44.8580179810524,45.051004459150136,44.2538381149061,43.369494679849595,42.429664014372975,41.56539170537144,40.6038510161452,41.41885406570509,41.4020360885188,40.83234562724829,41.537611964158714,41.23604555102065,41.70521367015317,41.35565582243726,41.17599321343005,41.557326721958816,41.88111613318324,41.19785189861432,41.682766794227064,41.40589334676042,41.52758700447157,41.134382414165884,42.018541403114796,42.854855976998806,43.825381179805845,44.108907603193074,43.9779886957258,42.98087059520185,43.69078154489398,43.964838842861354,44.33773111552,44.953187429811805,44.641304187942296,43.87673681369051,44.183179770596325,44.47472831746563,44.2422149265185,44.9693934796378,44.600653145927936,45.15080249775201,45.67872847896069,45.911953665316105,46.44644714239985,47.433034154586494,48.0728447730653,48.19913838477805,48.78756502131,48.612720808479935,47.72891548508778,48.66932165808976,48.8400883981958,48.45141083886847,47.50278501166031,48.28726975154132,48.20939562050626,48.2447403059341,47.60620054602623,47.677054257597774,47.157527091447264,46.380327390972525,46.89572808844969,47.64250647695735,47.62856437172741,48.33041069563478,48.57699774298817,48.539476743899286,49.042597939725965,49.49060444813222,49.80728873750195,50.55875445436686,49.775792851578444,49.83582234149799,49.19980976963416,48.77265629824251,48.188937401399016,48.59747014474124,48.70013634953648,48.17577239405364,48.97573870187625,48.7732374551706,49.640475034713745,49.08521587960422,49.340148949064314,50.20714903110638,50.03104340331629,50.67159143136814,51.3720014593564,50.80417335405946,49.96137733478099,49.71398662123829,50.56760740838945,51.28161618486047,52.08927981508896,51.2076575672254,50.2484486377798,49.37721946882084,48.650666321162134,49.215484004467726,49.81846883241087,50.137398599181324,50.42490189569071,51.360465893521905,50.700893400702626,51.68942527472973,50.92737985635176,50.44055479997769,49.60132575780153,48.71556800790131,49.33632337953895,49.74849727610126,49.340289047919214,48.4948103656061,47.88939898647368,47.66460323985666,48.25005818577483,47.3476468003355,47.89349683234468,47.97135659866035,48.47502606688067,48.25275337090716,47.40293949004263,47.05225709686056,46.35724126501009,46.255545042455196,45.38658918067813,45.34688933333382,45.236322943121195,44.506379931699485,44.65707631362602,43.6598761822097,43.07001641020179,43.74979357700795,43.899316794704646,43.20649420656264,42.54433987708762,42.820142560172826,43.28337590349838,43.53039393061772,42.5947503708303,42.36030540941283,41.63012557430193,41.83125808136538,41.60549924010411,42.50097565166652,42.46844218112528,41.88017523242161,42.76094776624814,42.82482536509633,43.24954720493406,43.08046929491684,43.504136682953686,43.800032573752105,44.75488765491173,44.705851977691054,45.6364942365326,46.532519257161766,46.285350401420146,45.76430973690003,46.562859896570444,46.51770121464506,45.90046112705022,45.66576534928754,45.65018304577097,45.80921537335962,44.98855655640364,44.073752851225436,44.20709845749661,44.05988354701549,44.97476157313213,44.25864771241322,44.022782323881984,43.17915186099708,42.65944120520726,42.39691634988412,42.59662746777758,42.36882821330801,42.55162257887423,42.27390796225518,42.79133269796148,43.13763612136245,43.31559356674552,43.90206453856081,42.916862254031,42.638877287041396,42.93375442177057,42.342818977776915,42.21797400480136,41.887691081967205,41.67943519121036,41.32124386401847,41.417143524158746,41.524231668096036,40.552689434960485,41.000047294422984,40.17469689017162,40.236252354923636,39.66701119672507,40.03348137298599,40.122299392707646,41.01392304711044,40.94178694533184,41.30849265586585,41.674815244972706,41.43577943369746,41.32609718525782,40.57772972481325,40.94161618128419,41.59720762586221,42.407842848449945,42.09401633916423,41.99152706004679,41.86011828063056,42.46620989963412,43.09206400485709,43.702984580304474,43.50942365359515,43.52587368991226,43.49389230646193,44.07055318914354,43.550098321866244,44.457504419609904,44.19944929657504,44.273242296651006,44.275457084178925,43.354878837708384,43.770953935105354,43.44722753483802,43.43435816094279,42.448774974793196,42.174571440555155,43.038437196053565,43.6982920342125,42.8296855520457,43.62466256553307,44.32596092997119,44.30909071676433,44.1695671393536,45.02296325052157,45.62114963447675,45.013204040471464,44.49756218120456,44.78273039357737,44.96636067889631,44.27391848200932,44.283719869330525,43.880267376080155,44.526575051248074,44.60366695839912,44.86381211364642,44.49514153553173,44.082369120791554,43.455888929311186,43.309861946851015,42.33294906606898,43.10758221056312,42.1880967351608,42.564258800353855,43.4306358830072,42.76724216574803,42.834336806088686,42.45944592822343,41.94620189629495,41.65836289478466,42.37252319371328,43.08117958251387,43.314734258223325,43.694548127707094,43.302345857489854,42.461404358036816,42.713686807546765,42.37058871053159,42.97842595120892,43.74841285077855,43.66863339673728,42.91726998798549,42.642178350593895,42.66833869274706,43.27113164123148,42.712576023768634,41.86173660075292,41.19773347815499,41.33045818749815,41.554301138967276,41.70330929802731,42.33021279191598,41.46837272820994,42.17518793884665,41.88949311664328,41.52226054063067,41.327908620703965,40.703716557938606,41.41648480249569,40.91631557745859,40.255797535181046,39.985916077159345,39.56208929931745,38.72834731871262,38.1677711782977,37.41581194382161,36.973554796073586,36.44969260971993,35.57306805253029,35.46214455878362,34.66002748673782,34.78643584251404,34.461352720391005,34.0451046503149,34.9344043568708,34.46290107490495,33.593655173201114,34.27313077263534,34.09117834083736,33.53044054238126,33.61186630744487,33.129474399611354,33.507953074760735,32.95404418138787,33.19856882747263,33.419319544453174,33.075859259814024,33.976884664967656,34.51471869973466,34.274027245119214,35.11724522942677,34.27589557785541,34.65648806653917,35.53289310121909,34.731680429540575,35.51325072813779,34.85375380795449,35.81481272028759,36.01304040849209,35.92392812203616,35.488164650741965,35.661838822066784,35.9474537987262,36.05200665118173,35.71800699457526,35.182460353244096,34.46834549354389,34.35803908435628,33.82442255038768,32.848144276067615,33.4161415505223,32.717570257838815,31.845247879624367,31.340720945503563,30.76966847013682,30.23420245293528,30.65119715919718,30.922363627236336,30.390016061719507,29.568551800679415,30.187568509951234,29.725968380924314,29.510594385676086,28.95413791993633,28.089447025675327,27.77646696055308,28.427395704668015,28.572794891893864,28.708610866684467,28.885559818707407,29.49722084356472,29.81813287641853,29.168697176035494,29.53284957166761,28.986017648130655,29.392992745619267,30.350815021432936,30.002666431013495,29.65383504424244,30.10217929398641,29.117123461794108,29.747010252438486,28.748596528545022,28.783923958893865,28.47694072779268,28.77988029178232,29.77633915981278,29.681633435655385,29.24587381631136,29.94498957740143,30.436495379079133,29.808078641071916,28.828135513234884,29.528305005747825,29.748924122191966,29.569619248621166,29.03673428762704,29.186659117694944,29.261405310593545,30.165972501505166,30.121731240767986,29.303256370592862,29.70596927870065,29.16509302891791,29.85231117438525,29.621179157402366,29.26013727951795,29.346369555220008,30.332341335713863,29.6201912346296,29.48893738212064,29.964348743204027,29.37700983695686,30.05892757093534,30.016168551985174,29.996605187654495,30.318013758864254,29.321889141574502,28.619208676274866,27.81304622674361,27.89029817050323,27.11192616680637,27.75549699086696,27.74612480122596,27.170050849672407,26.74370870133862,27.54304052563384,26.55016502784565,27.203690249007195,26.798381881788373,25.92114020185545,25.132204852066934,24.50205476488918,24.14500132575631,24.946670425124466,24.933435791172087,24.235494561959058,23.573816328309476,22.87146437773481,23.089859092608094,23.411850253585726,23.723467065487057,23.929302204865962,22.961735369171947,22.849081870168447,23.834427973255515,23.21900243451819,23.031042329967022,23.986976731102914,24.646919826045632,23.66811247728765,23.859099449124187,23.467519665136933,23.35611278191209,24.253999624866992,23.81964239757508,23.809145843144506,24.14046471565962,23.8538956833072,22.985945460852236,23.15337449265644,22.792898111976683,22.38691196218133,21.976862196344882,22.18166687246412,21.95491577964276,21.951149155385792,21.780330260749906,22.64842041162774,22.415103303734213,23.37216289853677,23.863883258309215,24.312195361591876,23.777549740858376,23.521214116364717,23.318710677325726,23.39925467176363,24.000311988405883,23.34212377946824,22.824667948298156,22.498641167301685,22.160192190203816,21.332400118000805,21.051327606197447,20.592923528514802,20.990151207894087,21.926581203006208,22.77428790833801,23.69417601590976,23.277071252465248,23.33071694523096,23.996827780269086,23.032082214951515,23.969071878120303,23.172068885993212,22.65108695020899,22.68167243245989,23.035425564739853,23.889535647351295,22.917008233256638,22.901236498728395,23.852202586364,24.713219933677465,24.930745001882315,25.75769640598446,26.26101856213063,25.532888422254473,25.093060932587832,24.174244781024754,24.521713837515563,23.89701228449121,24.20569941913709,24.22501824842766,24.916968585457653,24.722667376045138,24.343813984189183,23.5009837532416,22.970889757853,23.13483637664467,22.513974510133266,23.10086166765541,22.79577632341534,23.095897698774934,22.60789100220427,23.023963483981788,23.00110645405948,23.23011435335502,23.808493997436017,24.447844134178013,23.805284931790084,24.089732175692916,23.53585069766268,24.357555529568344,24.251850934233516,24.08152525452897,24.126878632232547,24.08609841344878,23.56114404881373,22.90925433114171,23.457788771018386,22.831623930018395,22.38455597497523,21.847185499500483,21.337852002121508,21.31579488608986,20.857413820456713,20.333783934358507,19.869690297637135,19.657454441767186,20.51301171630621,21.070568336639553,20.889763051643968,20.5889714313671,19.733964062295854,19.251385055016726,19.97859098855406,20.675450274255127,20.558957312256098,20.926887899637222,21.780746796168387,22.090814316179603,21.992231198586524,21.515525079332292,21.63211714895442,21.609706870280206,22.00427029374987,22.558098973706365,21.935422830749303,22.1614579600282,21.718386254273355,20.938410013448447,21.53967494983226,21.717427337542176,21.243692591320723,22.085747533943504,22.960341149009764,22.490265175700188,22.808355412911624,23.183253751602024,22.21371528878808,22.157082982361317,22.100439021829516,22.296995466575027,22.7784387585707,23.662357184570283,23.21693422179669,23.73509978270158,23.202378526795655,23.41947324667126,22.950353976339102,23.82487980974838,23.671299415640533,23.35718116024509,23.71456565707922,22.916474632918835,23.13920023990795,23.26801702193916,23.238645394332707,23.336097761057317,23.825321129523218,23.81682588160038,23.609017648734152,22.99691332736984,23.239714249502867,23.603879530914128,23.543743120040745,23.19289171602577,22.466021051630378,21.68460639892146,22.279654691461474,21.589661810081452,21.813449741341174,22.47725087683648,21.54429294448346,21.23175142100081,21.830695655662566,21.34477655775845,20.708572454750538,21.483993710484356,22.391173816286027,21.964943793602288,21.44928856473416,21.308715018443763,20.36343060992658,19.424875712953508,18.71051722858101,19.63450424000621,19.84855543402955,19.433604897931218,20.352259712759405,21.04446313343942,22.021014363970608,22.285709123127162,21.961058509536088,22.42692193388939,22.73250187560916,23.044240680988878,22.61192389205098,22.858448782004416,23.532961959950626,22.774183033499867,22.77933429600671,22.528114420361817,23.414063162636012,24.25859290594235,25.009412949439138,24.084254378452897,23.285774289164692,23.743760297540575,24.303109801374376,24.769186928868294,24.214876988437027,23.895630579441786,23.573448196984828,23.59079719427973,24.5690943216905,23.91542498394847,24.1954286377877,23.87386874295771,24.156510741449893,24.381210590247065,24.452287973370403,23.89808729570359,24.116654655430466,24.019205380696803,23.605711753014475,24.459103440865874,23.520335800014436,23.61796977184713,23.841149911750108,23.303514456842095,24.048397358506918,24.85779447806999,25.01878459798172,25.958547212183475,26.175404569134116,25.27556511759758,24.298279997892678,24.91432346543297,24.52132150810212,23.628000198863447,22.630140913650393,23.27785860421136,23.786228633951396,22.812309278175235,23.615058193914592,24.232452890835702,24.795847384724766,25.104462385643274,25.77445574151352,26.286672176327556,27.02137734135613,27.323719661682844,27.588146139401942,26.59134079096839,26.556401398964226,26.398224518168718,26.88444961933419,26.112882301211357,26.602919516619295,26.943880343344063,27.64714503986761,28.38266167975962,28.40352923795581,28.092119893990457,28.224133676383644,28.816566387657076,28.696726850233972,28.93462041579187,28.847104677464813,28.46092305565253,29.25336571224034,29.497358805965632,29.62810913613066,29.985186763107777,29.448883324861526,29.229299563914537,29.826760429888964,29.235709901433438,29.90829307306558,30.782778596505523,30.433309528045356,30.815396228339523,30.826785386074334,31.469673063140363,31.318798571825027,32.14561325637624,32.80838705133647,32.81617510318756,31.948650719132274,31.784464995376766,32.5777398343198,31.991722099483013,32.36310943355784,32.406070590019226,31.448688159696758,31.00619116332382,31.54588599083945,30.994774982798845,30.93850665120408,30.21764172706753,29.89628284284845,29.677645646501333,29.705582225695252,29.205337207764387,28.812109348829836,29.184053252451122,28.2060404131189,27.499300891533494,26.701986550353467,27.0496998433955,26.059239177964628,26.91649136133492,27.891166215762496,27.93987817596644,26.973692602012306,27.207087106537074,27.743742893449962,27.614546712953597,26.73981902282685,26.080897734034806,25.480760582257062,25.534728065598756,25.763401987031102,25.183349405881017,25.89642929006368,26.00060881767422,26.1723274262622,26.198947412893176,27.15607058024034,28.052341897971928,28.79082597233355,27.89167758030817,28.666506198234856,28.934418342541903,28.677887211553752,29.64600375853479,29.934539607260376,28.991401728708297,28.383978074416518,27.460348147898912,26.533297943882644,26.866397828795016,27.508913718163967,28.122764508705586,28.41407717205584,28.888842371758074,29.52592799672857,30.16631139162928,30.629102163482457,30.53659652173519,29.84038231242448,30.039666834753007,30.797201589681208,29.996537752915174,29.24732073675841,29.32502605766058,28.46938982233405,28.315717662218958,29.042010999750346,29.320517863612622,28.72332434076816,27.83778770454228,28.205878501292318,28.44407227775082,29.023582845926285,29.799723712261766,29.98426692187786,29.245660698972642,29.362487002275884,29.359448183327913,30.15258585102856,30.045260946266353,29.815866670571268,29.76931717991829,29.484439702238888,30.072475525550544,30.015610775444657,30.397922257427126,30.38987486343831,31.379960980266333,32.0916803968139,32.71459851739928,31.940511051099747,32.199694184120744,32.66085269348696,32.10900506656617,33.065794029738754,32.45230025285855,31.673199027311057,30.801686354447156,30.587903442792594,30.196189899463207,30.386960706673563,30.68331632576883,31.08869084948674,31.510456500109285,32.45377088431269,32.69219525670633,31.968324995134026,32.00228702509776,31.058334142435342,31.780228259041905,31.592996352352202,30.744740430265665,29.849267427343875,30.835808440111578,31.76811769232154,30.969706897623837,30.237536199390888,30.083997237496078,30.135427374392748,30.258478152099997,30.14905039034784,30.297302103601396,30.005184288602322,30.231438205577433,29.674182107672095,29.689596897922456,28.747681132983416,29.693861267063767,30.392238086089492,31.06708481768146,31.348055608104914,32.24708267347887,32.16011613793671,33.13673149701208,33.85107991844416,34.733852395322174,35.233355016447604,34.73320137290284,34.93885010480881,35.76832261076197,36.76594633748755,36.96116341417655,37.78992858948186,37.63305738475174,38.427713841199875,38.60094657354057,39.50978952087462,39.89135729242116,40.771762433461845,40.06144507182762,41.053006891626865,41.28515876084566,40.87547112163156,40.7779917800799,40.745541693177074,40.81702886102721,40.54784393450245,41.439883755054325,41.35507693095133,40.38645062409341,40.03284237161279,40.65595312975347,40.88476631464437,40.67452729353681,40.78171423682943,40.704152195714414,39.80077190697193,39.353113690856844,39.88837325479835,40.111282675061375,39.228869549930096,38.34785452391952,39.30762214073911,39.231810591649264,39.791298071388155,39.054067093878984,39.743614476174116,40.24527139076963,41.10281127272174,41.98963513690978,42.37551333755255,43.214298595208675,43.024615361820906,42.98038463387638,43.88295325310901,43.02390215406194,42.28492029104382,41.7559525850229,42.03157825488597,41.57458974421024,41.870498614851385,41.12800870835781,41.79615895263851,41.17027578409761,40.86844061128795,41.547764190938324,41.6064981771633,40.73134603491053,41.007335868198425,41.87620302150026,42.39536361955106,42.125336177647114,41.614023020491004,42.22229287913069,42.04823989421129,41.44959954265505,41.18487778538838,41.364308468066156,41.74868284771219,41.81521327421069,40.864115422125906,40.35279834084213,40.754022194538265,40.57456374773756,41.30513812461868,40.93347781803459,40.310743937734514,40.288326173089445,39.56356181297451,40.08986811945215,40.16516494983807,41.076639991253614,41.65353781171143,41.37843318935484,41.62518562050536,41.63704159948975,41.28421259392053,40.64677921496332,40.81024142354727,40.251286605838686,41.14381899405271,42.09037150768563,41.65827336953953,41.99858933733776,42.744391676504165,42.878631718922406,42.766029472928494,42.98075170395896,42.2339423969388,41.47861448768526,40.98409696528688,40.00601903628558,39.930133601184934,40.20180493872613,41.04586779139936,41.88210784876719,41.46654530381784,41.07651781104505,41.552245839033276,41.53485867893323,42.0396899827756,42.78847525874153,42.04956504981965,41.65488765295595,41.150674221571535,40.790207855869085,39.8245669468306,40.39502966403961,39.39824949624017,40.232298836577684,39.999237509444356,39.736129542812705,40.6934098941274,39.885874724946916,39.852705280762166,40.60838297754526,41.260622704867274,40.84450614778325,40.73590910015628,41.14537162985653,41.29172853101045,41.57888266257942,42.20029608858749,42.54084895784035,43.07677876437083,42.15146663412452,41.50925615057349,40.61883372999728,39.86298444401473,40.66822596266866,40.03613014193252,39.327057561371475,39.461041720584035,39.93203687481582,39.904609573073685,39.95924149081111,39.842772476840764,40.13312536571175,39.731293770018965,39.08275813842192,39.993720394559205,40.433819176629186,40.64780852897093,40.96181742986664,40.19798163045198,40.127895683050156,40.11900697275996,39.695945606566966,39.43725889828056,40.37937108473852,40.0422750110738,39.45196611713618,38.64234809530899,37.737156389281154,37.57522694719955,38.24358335137367,38.747661395929754,39.49745281320065,39.654122507665306,40.64728499716148,41.45394189376384,41.638516042847186,40.70943939872086,41.12127671716735,42.079721784219146,43.07092259358615,42.6742656994611,41.94337946316227,41.38172945659608,41.05274644261226,40.87022002832964,40.29521360620856,39.52342425053939,38.80485273944214,37.84492884064093,37.44626570912078,37.04971977090463,36.17953789699823,35.4344703159295,34.81689563440159,34.53235993953422,34.9383383220993,35.268900664523244,34.622502397280186,35.548393917735666,36.04547392996028,35.599742305930704,36.335629031062126,37.06463092006743,37.69823882961646,36.98382267495617,36.2472884291783,35.55473355343565,35.536104298662394,35.01671480992809,35.670235025230795,35.83285487536341,36.46409168560058,35.8408337244764,36.356981579679996,35.40664624655619,35.86607605358586,34.87708645686507,34.863122939597815,35.133308111689985,35.1718140472658,34.99650806747377,34.80897499853745,35.33762462204322,34.983502256218344,35.47805505152792,34.971201883628964,34.882280765101314,34.28259569266811,34.82767494954169,35.019498160574585,34.18924903124571,33.39421609370038,33.801306299399585,33.67047338793054,33.70121625205502,34.54570615245029,35.45327242743224,36.38131438847631,35.471671619452536,34.68201629212126,35.42097663972527,34.7055121823214,35.54272483615205,36.18074108520523,36.15578020270914,36.24530974868685,36.04125792486593,36.290443307720125,36.136122865602374,35.78300289530307,34.8048937022686,33.878710264805704,33.93664390500635,34.50041769258678,35.43973404029384,35.60891331732273,35.35521136922762,34.483418092597276,34.86801430163905,34.16942434757948,33.205011224839836,33.21552349580452,33.87275509303436,34.594441793393344,35.49321011546999,35.46356059983373,36.014531936496496,36.67905938858166,37.0826358855702,37.493834025692195,37.46972946776077,37.46957857301459,37.23830722365528,37.49174593295902,38.128911283798516,37.91780173918232,37.318206273019314,38.024117887951434,37.813229193445295,37.151393878273666,36.31453940551728,35.466334853786975,36.28240043763071,36.93671771744266,37.102181986905634,37.61837563291192,37.71004785038531,36.8298174389638,35.92080570757389,35.74953147210181,35.890743595547974,35.80453806556761,35.662637698464096,36.30266610812396,37.01315412949771,37.21175891486928,36.441459672059864,36.802344247698784,36.64943265309557,37.103980500716716,36.97281078482047,36.64300877507776,36.258671501651406,35.649113482795656,35.81791461026296,35.803330135997385,36.48535903543234,36.21424308558926,35.89176464127377,35.18503920966759,34.66646673902869,35.37242097500712,35.271322786808014,35.44184250663966,36.26994549622759,35.797267840243876,36.01238411478698,36.575024359393865,37.37765069724992,38.06158133177087,38.56881615379825,38.22255233954638,37.65579770458862,37.02775646932423,36.61695341160521,37.26737164519727,37.60335076833144,37.46905295550823,37.73014114657417,38.58549539744854,38.333975673653185,37.95015145558864,38.18707907386124,39.1541314041242,40.00789786595851,39.00873076915741,39.54258271306753,39.29420524975285,39.334050082135946,38.67837188066915,38.35171622224152,39.026818461250514,39.27584439702332,38.4651320502162,38.07697668066248,38.75029083061963,38.85533564677462,38.86181491520256,38.11622453527525,37.4368677563034,37.58761148992926,37.01749876793474,37.03030895953998,36.57976415986195,37.51402920531109,37.375178227666765,36.47253731684759,37.294768263120204,37.073905610479414,37.69719180697575,38.24027949711308,37.45223937416449,36.54879691591486,37.11856509326026,37.376574652735144,37.10894644912332,37.746098453179,38.33977456809953,38.966327098198235,39.65662111574784,39.87384176021442,39.72846363997087,39.16879343986511,39.485798807349056,38.86904476303607,39.77838511997834,39.16070945141837,40.067132831551135,39.634480375330895,40.03767421236262,39.52199495350942,39.834422423969954,38.87130954815075,39.21799153462052,39.69300337322056,40.00589579110965,40.870504265185446,40.23612046521157,40.471758214756846,39.54800571361557,39.08551878063008,39.98557104263455,39.401442260015756,39.49397999700159,39.4587199119851,39.996754959691316,40.45134017523378,39.92182280123234,40.63316945079714,39.758140328805894,40.502014227211475,39.99208892323077,39.5187017256394,38.76378474710509,38.76529111107811,38.34798259008676,38.61315548373386,38.16565019218251,38.463927099946886,39.03059283038601,39.23022449016571,39.717826020903885,40.04637248581275,39.370040585286915,39.71254966966808,38.937629009597,39.16285255365074,38.19473386416212,38.89425826119259,38.86758862202987,38.74659562436864,38.11296729557216,38.723913609050214,38.30575059354305,37.63096994906664,37.41047524474561,38.053241428453475,38.58868989907205,39.39110137382522,38.870127928908914,39.462825845927,39.006227747071534,38.641892035957426,38.58179498743266,38.51534216012806,39.12821114109829,39.89389124000445,39.15141937416047,39.60504373256117,38.95957751898095,38.35835507232696,38.8693630467169,38.28887485526502,38.151818175800145,38.72028544684872,39.13890182599425,38.8384836143814,38.6793889189139,39.29450528183952,39.317957017570734,39.29657027265057,39.85878896526992,39.23989638220519,39.70231071161106,40.34960438590497,39.89324775664136,40.6002293843776,41.079372864216566,40.545326170977205,39.68861651001498,40.537108439952135,39.80425140634179,39.875502509530634,40.054057659581304,39.27964081661776,38.80213121231645,39.134424451738596,38.8708107941784,38.32993936352432,37.89378214813769,38.05675042793155,37.41427165735513,37.94288575602695,38.20545449666679,37.23033213149756,37.77950017852709,37.70303595997393,37.35677274595946,36.97813354805112,36.285973514430225,36.31052544107661,37.026037535164505,36.12020149966702,36.228082387242466,36.083369898144156,35.19082650216296,34.79020116198808,35.28315825667232,35.28922978322953,35.45486648846418,35.37115978077054,35.007236192468554,35.02629302162677,35.93563164770603,36.75408528931439,36.763395689893514,36.727914933580905,37.36877957964316,38.27777937427163,37.60791324870661,37.62211493682116,36.737778331618756,36.067151168361306,36.324209241662174,36.01833820110187,35.604133535176516,35.63271549344063,34.90153356269002,34.701671921648085,34.895902729127556,35.29759672516957,34.70229022949934,35.697037583217025,36.229908608831465,35.7474790494889,35.50889462651685,35.42108967155218,34.80317863402888,35.06975244125351,35.768523460719734,35.75798754254356,36.650247551035136,37.186399342957884,38.148169642314315,37.19009328680113,38.0024904361926,38.52199070248753,39.30220052739605,38.66926489537582,39.57871990511194,38.968004340305924,39.217010530177504,39.72596147144213,38.88268571021035,38.0184733197093,38.29094279976562,38.94248507684097,38.79382182005793,38.79648034693673,39.41898078005761,38.55499025946483,37.737233724445105,38.69155457103625,39.392668393906206,39.788786843419075,38.8924638107419,38.75542109366506,38.552763019222766,39.2981237154454,38.676805638708174,37.711610837839544,37.32801921851933,37.313505962025374,36.50037321448326,36.11829245882109,37.04778263531625,37.90675621619448,38.83124739071354,37.8645308543928,37.44557819329202,37.17406387254596,37.185568591114134,36.281303096562624,35.82020459929481,36.678514207713306,36.45306080579758,35.690158660989255,36.60858527338132,36.733369648922235,36.70640386734158,35.782617004588246,36.093931552022696,36.165825771633536,36.12915816344321,36.769611046649516,37.693514440674335,37.93505190499127,38.56583122443408,38.58988642692566,38.455338194034994,38.845367432106286,39.44350400334224,40.14093314856291,41.134080352727324,40.48530619358644,41.15625614486635,40.2306235935539,39.835807864554226,39.89576773205772,39.91299434937537,39.94561056373641,39.53183318627998,39.81571122771129,39.66323426226154,40.017144875600934,40.366793723311275,41.09155015647411,41.25005383277312,41.396519260481,41.25942272460088,40.27200165530667,39.42188261495903,39.95685063395649,40.83269939525053,41.10493186954409,41.9945114152506,42.18513230746612,41.74286632426083,40.987322840839624,40.51935661304742,40.39381927950308,39.967885895166546,40.78041828237474,39.855807347688824,39.322298714891076,38.737812319770455,39.04713733866811,38.09009621152654,38.833896251861006,39.82358928536996,39.508613421116024,38.65867325058207,38.66192365298048,38.22854880662635,38.212782953865826,38.02750898618251,38.749557768926024,38.854915576055646,38.746462023817,38.766141679137945,38.709229960571975,39.4216239284724,39.04825212666765,38.944614697247744,38.887391148135066,38.77572141541168,38.05538493022323,37.0559853464365,37.01972076110542,36.906582122668624,37.051859211176634,37.29830977413803,36.44618048099801,36.15878397971392,36.683468635194004,36.009073520544916,36.878479193430394,36.62163802143186,37.504026997834444,37.74992205994204,38.28219887241721,38.165595908649266,38.04339333623648,38.79052195278928,38.6210389342159,39.08958451030776,38.4468171489425,38.30031944159418,37.63425704045221,37.119003686122596,37.810446149203926,38.538874158170074,39.29018483730033,38.908630076795816,39.0345006454736,39.10292937140912,39.66134345717728,40.33197527145967,40.53523899009451,40.20140564953908,39.802459430880845,40.17041566967964,39.539577702526,39.27763730986044,40.21072068577632,40.35951831098646,41.18727481784299,41.62122268695384,41.532450107391924,40.62322741886601,41.32713456545025,41.84587635891512,41.58951602689922,41.91424037422985,41.20303399069235,40.696974178310484,39.830678252037615,38.93940700683743,38.09287967579439,37.15470401896164,37.01732319779694,36.994190494995564,37.68593914434314,37.77418897068128,36.86738638393581,36.273129982408136,37.01110778283328,37.64711988391355,37.82419577194378,37.47687080129981,37.172649847343564,37.732620362658054,38.6074881022796,37.68159369099885,36.95299866050482,36.619367701001465,37.348919408395886,37.29961378220469,37.07498970068991,36.81556593300775,37.024149304721504,37.515119744464755,36.9106581476517,37.57201187964529,36.69706323090941,36.68420019885525,35.81247795931995,35.74330536928028,36.69577694032341,37.118013861589134,37.31728888163343,36.743669582530856,35.976668069604784,35.27192371478304,36.10543253365904,36.70258953142911,36.80729452613741,37.38099926663563,36.94817283144221,37.56903624953702,37.092395449988544,37.42547706188634,36.613107859157026,37.51303030643612,36.74559790454805,37.086197711061686,36.58158495044336,37.32482122769579,37.2920812247321,36.35573702072725,36.628987142816186,36.84232978243381,36.36867074621841,37.18127348041162,37.48623354593292,37.683717413805425,37.09288325998932,37.17640269687399,36.57743877544999,36.35591917205602,37.344531894661486,37.46930928574875,37.02740933559835,36.336133716627955,35.93795777345076,35.928690175991505,36.60411536088213,35.89001150988042,34.93834434915334,35.462596805766225,36.13625118974596,36.273183669894934,35.413433579262346,35.25420985464007,34.49086345080286,34.39036832889542,35.0803373362869,35.125787526834756,34.264034394174814,33.29176163813099,32.369817055761814,32.287211052142084,31.57655908819288,32.05944750690833,32.537533837370574,32.08542658761144,32.98624518280849,32.42624928476289,31.59410588769242,31.479778355453163,31.907077819108963,32.33665493922308,31.44019085681066,31.714194148778915,31.13861695257947,31.27876856783405,30.428682919126004,29.48529769387096,29.230879018083215,29.89682853780687,29.233010466676205,30.01880020275712,29.861039641313255,30.097430023830384,30.907654588110745,30.465664650779217,29.604307127185166,30.602961474563926,30.520000863820314,30.106574441306293,30.271423680707812,30.400020235218108,31.278114948421717,32.155512476339936,32.27321439422667,31.344878272153437,31.24298854311928,30.485697714611888,29.94045732775703,29.97667145775631,30.37545676343143,29.86748211318627,30.2393342750147,31.19051799364388,30.434568812604994,30.901157507672906,30.71657054591924,31.25121604464948,30.61867131246254,31.35401766235009,32.03896530158818,33.03469521924853,32.6903211469762,32.77975479932502,32.83364610187709,33.52541865874082,32.592808461748064,32.451122898608446,32.70614964514971,32.389408212620765,32.38719717320055,32.1397247062996,32.82717607822269,32.97451187716797,33.15826788172126,33.528087766841054,32.67797928676009,33.18522567022592,32.33791241841391,31.855813605245203,31.494085144251585,32.25518419081345,33.079066845122725,33.83644037740305,34.494648904539645,35.19952494977042,35.709332360420376,35.56951624294743,34.80005667498335,35.44984372332692,36.18083062488586,35.34455802105367,35.37685667956248,35.72700522840023,36.1772283683531,36.47784307040274,36.749426232650876,37.042552220635116,36.205024326220155,35.76788414642215,35.55436631338671,35.51652143429965,35.727642527315766,35.03393024858087,35.23058381071314,34.38132706750184,34.67444818420336,34.95700461836532,35.65166530618444,35.101044352632016,34.64215395739302,35.35815287427977,35.57872526394203,34.96946852747351,34.67033042293042,34.68992776144296,35.296399829443544,34.692798723932356,35.04828050825745,35.90659341448918,36.60827344562858,36.92887438926846,37.60562271438539,37.6625106735155,37.74208736931905,37.17416761862114,36.42444915045053,36.26556807896122,35.76172636495903,35.88596415380016,35.818458434194326,36.74676454626024,37.258688614703715,37.320165992714465,37.1808530096896,36.670820894185454,36.34882540954277,35.686824198346585,36.125605897046626,35.62530564935878,36.38085407810286,35.86060609482229,36.38334005139768,35.81059958226979,35.289292444940656,35.54989867610857,36.30144789349288,36.72095628688112,36.823589860927314,36.343072628602386,36.62479845294729,36.433614204637706,35.88090428337455,35.5685676257126,34.681494142860174,33.952776338905096,33.85041118087247,34.524929848499596,34.76524900691584,35.178637891076505,36.10126468492672,36.882079501170665,36.78615904273465,37.482354749925435,37.36710018012673,38.31558440858498,37.9798938492313,38.88700427766889,38.70916962251067,39.320845105685294,40.119141480419785,40.50167981348932,40.530211857520044,41.084180276840925,40.22788526723161,41.03811129089445,41.44806952262297,42.03856354113668,41.84440023871139,42.79328829655424,43.3267738209106,43.281182893086225,43.95308668771759,43.04426193423569,42.05641539907083,42.567091854754835,43.03105904953554,43.31961869681254,43.31646340759471,43.841774141415954,43.69594637909904,42.86526144808158,43.232474990189075,44.12181321764365,43.39152466831729,43.76272200001404,44.128938691690564,45.044071360025555,45.275463244877756,44.76290812296793,44.73967055557296,44.639809919986874,45.3757842881605,45.87998137995601,45.79631146136671,45.00806147791445,44.08103048475459,45.05665215337649,44.77642742404714,44.01093753008172,45.004392032977194,45.72195717319846,46.05344555713236,45.43312378739938,45.53955839574337,45.57707660179585,46.163624129258096,47.06039671553299,46.55324323428795,47.41036696173251,46.49533832445741,46.688719160854816,46.68405059957877,46.92605004552752,47.266652167309076,47.382932398002595,47.28171180188656,47.01202831277624,46.21780437557027,46.46747295791283,46.17573760682717,45.54110656538978,45.27490072418004,45.977743230294436,46.68559089396149,47.17650309205055,47.370884962845594,47.099456346128136,46.91430594585836,46.78778117708862,47.49328544083983,47.642079102341086,47.74115904793143,47.209286227822304,47.939745272975415,47.00154926255345,47.21881910180673,46.68485390627757,46.011186527088284,45.904503321275115,46.67025271616876,47.555212846025825,46.74355403194204,46.97819566819817,47.0845066155307,47.257272076793015,47.895620288327336,48.657512695062906,48.49362419825047,48.180298114195466,48.0750637575984,48.36895096162334,48.95546504063532,49.144506780896336,49.376557940617204,48.96184637816623,49.49474619748071,48.62730808230117,47.72306504426524,47.123548292554915,47.99253789149225,48.972384543623775,48.184688532259315,48.83090317621827,48.17587534058839,49.064957661088556,49.84462582599372,49.07688295142725,48.953811577521265,48.56632064841688,49.208679048810154,49.19288566056639,48.804061719216406,48.98699739482254,48.42806001473218,49.210998479276896,49.044359671883285,49.250400541350245,49.74443781701848,50.05573045602068,50.105222914833575,51.067282715812325,51.196644651237875,52.11604858050123,52.98633698094636,52.91248258156702,52.65991920605302,52.65251939324662,51.82612313423306,51.400463812053204,50.71235003415495,50.21267834538594,49.547798975836486,49.091731196735054,48.87310183933005,48.21190713951364,48.918937515001744,48.501505884341896,48.24729581410065,47.67915214598179,48.2224413366057,47.696151978801936,48.55530491564423,47.909702943172306,48.65413407701999,48.57241850113496,48.47729942854494,49.24083353206515,49.5466181980446,49.72379920911044,48.9912129258737,49.77119869319722,50.74790103500709,50.45848243823275,49.93140713125467,50.69953090464696,50.08467698469758,50.13183096377179,50.91032126452774,51.46758460858837,51.80299789039418,52.5022995355539,52.970119243022054,52.17936555342749,53.10627557244152,53.47691575111821,54.20528298150748,53.93164949351922,53.47450665105134,53.59423604281619,54.33661997364834,54.1394465835765,54.0876460201107,54.45226087141782,54.96294167032465,54.478027381468564,55.328748441301286,54.69981501996517,55.54285584250465,55.324465891346335,55.17281898856163,56.0912798224017,55.292612181045115,55.55817938037217,54.63705171085894,54.34412709111348,54.10355475125834,54.24211875582114,54.28070946643129,53.81583530968055,53.41555278049782,53.021343167405576,52.5383859956637,52.469803215470165,53.28377966489643,53.7965913717635,53.05608019558713,54.01500303065404,54.20489983819425,54.59986422304064,54.21337797679007,53.885888419579715,53.02427336759865,52.53807553788647,53.142742287833244,52.709137494675815,53.25154742691666,54.10937389917672,54.501127804629505,55.06679489137605,54.526807139161974,55.440617464948446,55.97760380851105,56.27321910718456,56.99045435199514,57.16909934580326,58.08593217050657,58.89928665012121,59.13260757364333,59.215289406012744,60.01431983336806,59.68802145682275,60.02955605974421,59.96217429405078,60.42512739729136,60.129147382453084,60.05344882886857,60.37731180060655,60.54608688969165,60.00228094961494,60.91013470804319,61.85200686659664,60.85440155491233,61.84277068916708,62.47376955812797,61.94727402692661,62.3322333865799,62.54404242662713,63.11287446739152,62.4040410281159,63.35602704109624,64.14718347648159,63.882231540977955,63.32091263541952,62.90979321859777,63.68074001651257,62.91120707709342,62.620321098249406,63.33252057246864,62.975264890585095,62.74630127288401,62.315108648035675,61.80808543227613,61.71378767490387,62.17035783594474,61.96612925454974,61.30077882669866,60.88244821224362,59.91699830908328,60.517471426166594,61.49999935366213,61.95931205758825,61.985889565199614,61.10371343744919,61.96265156613663,62.35236337641254,62.369182743597776,61.673301707953215,62.515735019464046,63.479732749052346,63.78862786665559,62.87715281639248,62.95674059540033,62.02249965723604,62.6060130414553,62.53105047298595,62.57010394195095,62.3478834843263,61.979642825201154,61.07111890707165,60.67771680653095,61.631075124721974,62.384468419943005,61.76288871606812,61.68730522599071,60.82158189686015,60.11006804788485,59.92744180560112,60.513215235900134,60.87927949009463,60.719729407690465,60.38537883758545,59.569010108243674,58.9267293298617,58.70432887459174,57.84063960285857,58.196035786531866,57.761960396077484,57.25561944767833,58.23997943336144,57.875621017534286,58.063788808416575,58.79107373021543,59.39462435245514,60.281643443740904,60.24797469051555,59.579937131144106,59.90680414903909,58.96295600524172,59.66375308530405,59.96681414730847,60.45233416836709,59.56488978257403,60.30831283470616,60.77608013572171,60.86501597287133,61.487192917149514,61.34464121982455,61.022737733088434,61.77351373108104,62.36480027763173,62.704287303145975,62.94998769182712,62.45426800241694,62.38687844527885,62.31185299064964,62.408438835758716,61.80105341412127,62.3988979277201,61.48261646879837,60.800557534210384,60.43187157390639,60.28796168603003,60.6071607042104,60.890684720594436,61.68132226495072,60.90441863518208,61.10758690861985,60.22933704638854,59.88367815921083,60.67267387313768,61.26481137005612,61.055506146047264,60.58815817069262,60.36512839468196,61.17497244849801,60.61860421206802,60.298737715464085,60.002789828460664,59.16434291517362,59.91362588014454,60.80099757248536,60.76569742942229,60.704573625233024,59.89609468448907,59.355608474928886,59.876676209270954,60.3503756322898,60.54063809523359,61.46623798226938,61.83482044097036,61.86346594290808,61.344442549627274,61.46667282981798,60.775239447597414,61.08216384332627,60.58014576463029,61.09207470109686,61.436953550670296,62.18007826432586,62.46047949092463,63.320058023091406,63.83068186044693,64.45029755216092,65.39439702779055,65.34446355327964,64.80401206668466,65.6146419243887,65.26127173611894,65.68753631971776,65.04585555847734,65.73428571317345,66.70945999445394,67.04991225665435,66.9056833689101,67.32496435241774,67.10965381935239,66.902440817561,67.43573123496026,66.54080399405211,67.08227981626987,66.10722793405876,65.21462910762057,64.86027308134362,64.38656506640837,64.0029622958973,63.43573843501508,62.616793589200824,63.29695142200217,62.5772831691429,63.20532924262807,62.63140422292054,62.10435439553112,62.19006892340258,62.801230831071734,62.23358981125057,61.731744746211916,62.300880688708276,63.143404107540846,62.324768433813006,63.10908219497651,63.52632217016071,62.56421429803595,61.62974190944806,62.2653571520932,61.72384845931083,61.65212770970538,62.42384922597557,62.28962126467377,61.92289911955595,62.26084931893274,61.63769629877061,61.61018224991858,60.66269480064511,61.18781387805939,60.52792297163978,60.21581505937502,60.37977931229398,59.57035238016397,59.765256718266755,60.052275438793004,59.40859803697094,60.33351042214781,60.4124423712492,59.679624794982374,60.20568419108167,60.13672550814226,59.202265662606806,59.21114864014089,59.21383853722364,58.31990327592939,58.63702828809619,58.06640614569187,57.10099643049762,57.798655718099326,57.851459462661296,57.30461726151407,58.19928635424003,57.39082973776385,58.09231673879549,59.05712363822386,58.695711333304644,59.065583399962634,59.67355274222791,59.40459706261754,59.65405431762338,59.25881454348564,58.76427782792598,58.29281178023666,57.57538431184366,56.94828279595822,57.77750685624778,58.24681665422395,58.25331844156608,58.494220881257206,58.55831167055294,57.90896218456328,57.00340573024005,56.03263164265081,56.36786850448698,56.8603363703005,56.80879037408158,57.552943628281355,57.364223894197494,56.98199929529801,56.74703899072483,56.50750758079812,57.25741685926914,57.65184987150133,57.09119817009196,56.95683926763013,56.65822266926989,57.44831432728097,57.82689924258739,57.12711500795558,56.80413185805082,56.948544098995626,56.333801954984665,56.895164196845144,57.18188197351992,57.02897878084332,57.05097636859864,56.27748889056966,55.42757894936949,54.701946267392486,55.63992771366611,54.90740164881572,55.43906913558021,55.45973406359553,56.25615083705634,56.74820978753269,57.270914965774864,56.53735859738663,57.2795519833453,57.10227017477155,57.20194190135226,57.10881182830781,57.57605149736628,57.16457204381004,56.37070907885209,56.04249817226082,56.42648560507223,57.37859738012776,57.66068626334891,58.37480045622215,57.858512649312615,57.71050701383501,58.31047501275316,57.637348387856036,56.81861915346235,56.19889162667096,55.48326258128509,56.20412445208058,56.277124198153615,57.16324059385806,57.28565260022879,56.373348840978,55.776829837821424,55.97637369064614,55.22368462290615,55.184907814953476,55.18663385603577,55.765000774059445,55.03082943893969,55.4666495481506,55.01928219757974,55.50525399623439,54.92149552516639,55.552261154167354,54.65212401980534,55.40457729669288,55.18928419146687,55.317091348581016,54.4353265510872,53.81376083055511,53.36690241890028,53.03346840851009,52.76703601004556,53.511660462711006,53.09917954728007,53.75757668027654,53.829719805158675,54.35237572528422,55.159837000072,54.551881382707506,53.93922295467928,54.59329350152984,55.159237200859934,55.09149423614144,54.28770121280104,53.83646323112771,54.27739776391536,54.421486975159496,54.84886133717373,54.490306878928095,55.025513037107885,54.31979179289192,55.305514314677566,54.612154982984066,54.650223372038454,53.71965377079323,54.1571494131349,54.63977829925716,53.88527382351458,54.77716599730775,54.579954396001995,54.62370949378237,54.41243514418602,55.304557267576456,55.616217859555036,55.56983686937019,55.52502872887999,56.22820849949494,56.61868018610403,56.52425014367327,56.603620370384306,56.307402735576034,56.43436928326264,55.66960179945454,55.410088430624455,56.14829660067335,55.77460677269846,55.57797246053815,55.530281458981335,55.58369238022715,56.30459750909358,56.937867547385395,57.855824942234904,57.794475857168436,58.3890436636284,58.79064510529861,57.961051555816084,58.54409308778122,58.38183616194874,57.66799886478111,57.85486920410767,58.03188051190227,58.988764598965645,59.59042422519997,58.692128490656614,59.638367876876146,59.07355667324737,59.24603978730738,59.02826194651425,59.49903351301327,59.52569751534611,59.74266061047092,60.24318607337773,60.692535180132836,60.28521167952567,59.40608535753563,59.529632886871696,59.94802002282813,60.100778246764094,59.24707173416391,59.04724078113213,59.43475425709039,59.40299102058634,59.74514624802396,58.93084580358118,59.074654563330114,59.2319075637497,60.19377165893093,59.64944509975612,60.302115253638476,61.215544716920704,61.563677032478154,62.53911183588207,61.998358936049044,61.661552438512444,62.47510760463774,62.21293100947514,61.57637841301039,62.134579963982105,61.769751347601414,62.45721045136452,63.080253838095814,62.53484794450924,62.663234358653426,63.15937414392829,63.43995639169589,63.491633609868586,63.26387773780152,63.863035931717604,63.291983395349234,63.771544832736254,64.6259190198034,64.03714212402701,63.294243048876524,63.07035583863035,63.82438674289733,64.75557683967054,65.65302619151771,65.33230803441256,64.42246324429289,63.48406470241025,64.25729559548199,63.79622873291373,64.11967071704566,63.943270893767476,64.48565791686997,65.2850440503098,64.79307396151125,64.56528168451041,64.29089253488928,65.1368173295632,64.48433279478922,63.527634609956294,64.15373725118116,63.55172977223992,63.94434558134526,63.85347479302436,64.27627120865509,63.41293827211484,63.549450614489615,64.29856926621869,64.90604574419558,63.97701725643128,63.41065835999325,64.22980631887913,64.01722719147801,64.89698504889384,64.85081266099587,65.14025245653465,65.24003518512473,64.67666385741904,65.6710014832206,65.89632016513497,65.13104704255238,65.35953766200691,64.99191538523883,65.2971609919332,65.64689728757367,66.08665254805237,66.97008406976238,66.48158617084846,65.78571801492944,65.90221091546118,66.59666961431503,65.93980923900381,66.55303140962496,65.80232352204621,66.54289598250762,65.97741481196135,65.3260578615591,66.04174197651446,66.29274628218263,66.78992900718004,67.27894824603572,66.81259632157162,67.67651734128594,66.80389527836815,67.33602479472756,66.75418612640351,65.90974172996357,66.01145214261487,66.99535356834531,66.46085242461413,66.40718766534701,66.68312651058659,67.44394544092938,68.03471298702061,68.85227612173185,69.0333894197829,69.26961081381887,70.24973007058725,70.25390835804865,70.17952002584934,69.76042439322919,69.51741834636778,69.7666107066907,69.66101045021787,68.78584742872044,69.42978831939399,70.3551990701817,70.48097132286057,69.93323546415195,69.7764825518243,70.33774298103526,69.7235338636674,70.38866470381618,71.34299815259874,70.61461901338771,71.27457179641351,70.28061578329653,69.79840946756303,68.86902918340638,68.8872931948863,69.61742133554071,69.26657254761085,68.7380415960215,67.86519927624613,67.52594311581925,67.38313458673656,68.293890286237,68.08421472739428,68.0147487227805,67.22054836992174,67.55703237792477,67.11261665821075,66.28636127244681,66.03464357368648,66.07227595103905,65.25281013920903,64.54053090885282,63.700424648821354,64.06846487289295,63.937795479781926,63.37082224339247,63.504696141928434,63.315478971228,63.06946381321177,62.529094244819134,62.83803150430322,63.11864192318171,63.852925510145724,63.986185835674405,64.74099816242233,64.39363274676725,64.91264474298805,64.04898194922134,63.69450003514066,62.83994726650417,63.57747393939644,64.48538229661062,64.02372129959986,63.778708825819194,64.58411810966209,63.62075382936746,63.474485433194786,63.71964384848252,64.3227843050845,63.75342947570607,64.35410769795999,64.1325326859951,63.33755089668557,63.450583981350064,63.81785190617666,63.425355727318674,63.25120134232566,64.15600560512394,63.602477529551834,62.71724289143458,63.563170842360705,63.50606428692117,63.21426390390843,63.14713400835171,63.5423382925801,63.61238143965602,64.50005010189489,64.39624326489866,64.71966790454462,64.293481875211,64.92095429403707,64.78071103151888,65.58570433780551,64.85286346497014,64.68754472956061,65.4978785701096,64.79823956498876,65.40973226772621,64.8414921858348,64.01328078377992,63.528227005153894,64.46038171742111,65.19891896983609,65.64678000099957,66.35411579441279,65.73441607737914,66.33779509132728,65.44202967826277,65.59557220852003,65.0360415186733,64.63692415086553,65.52637363644317,66.48207385418937,66.81438595149666,67.67077259765938,67.72954610362649,67.08156416052952,66.19734303466976,66.74846094474196,66.92079499550164,67.00472899666056,67.43843385390937,67.8454520078376,67.48754605930299,67.74530861107633,68.62213425105438,68.9963870733045,69.30463682394475,69.99767010845244,70.01917259767652,69.64614085992798,70.31579417688772,71.25312630273402,70.6204205644317,70.27433722559363,70.70468463702127,70.71091355104,70.19805523240939,69.83289770875126,70.1235357443802,70.93821077002212,70.148357052356,69.7856883960776,70.58032659441233,70.7789045907557,71.12777980882674,70.45756176766008,70.71290989080444,70.50944378320128,69.5099395220168,69.47036844398826,70.00340168038383,70.60924019711092,70.5490506477654,70.58622503327206,70.6368198916316,70.49777412740514,71.25085669895634,70.78199529321864,70.71391795063391,71.443386613857,71.33379798289388,71.79679908882827,71.7814739625901,71.526439035777,72.17005704250187,72.6764712985605,72.9050541492179,72.79860849678516,73.33414458204061,72.64532851660624,73.27923925733194,73.2616354515776,73.6620207359083,73.93535173684359,73.69596063578501,73.31895333807915,73.43554765824229,74.29808887513354,75.19275210611522,76.08604796696454,76.3516702875495,75.39097268367186,75.86363136116415,76.74261270975694,77.56964472960681,77.92289057048038,78.34021429764107,79.27988980384544,80.16844456735998,79.55623259954154,79.52652517100796,79.95120568946004,79.60549841960892,79.60362798906863,80.22093901736662,80.95494919782504,81.6611765655689,81.68339415639639,82.0288080140017,81.13852970022708,81.1347935628146,81.67550000594929,80.96699703671038,81.76032912125811,81.4461189378053,82.38963502878323,82.56979347206652,83.02390738762915,82.95700529031456,82.87746325600892,83.26227146806195,82.87641379563138,83.84077822696418,83.69683654466644,82.74096294678748,82.95091838529333,83.60275501850992,83.0402035987936,83.4751756908372,83.45284573640674,83.0463014440611,82.18303145747632,82.47909264499322,83.37110651191324,82.67893112078309,82.94217596203089,83.78705543885008,84.63914126856253,84.27564192051068,83.51921989070252,83.63440181640908,82.64185982150957,82.44811404449865,83.05581631930545,83.65648850239813,83.97477390570566,84.50312006659806,85.03334935102612,84.91085566394031,85.12763088289648,84.70580063248053,84.55568515649065,83.67865669494495,83.70999038591981,83.39119602413848,82.6699894471094,81.74616794334725,81.20505181420594,80.84260135982186,81.82682983903214,81.78827449819073,82.13711619796231,82.44997774716467,83.24471827968955,82.85803694557399,82.63586427690461,82.09147285344079,81.59487388422713,81.61057399678975,82.58987332647666,83.56681515090168,83.17692496348172,82.56503682024777,83.20941191678867,82.81643122527748,82.73033060692251,82.81261256942526,82.18146502086893,82.8994508087635,83.5250132791698,82.57005348848179,83.48957336135209,82.96401152666658,83.07159626297653,82.49000616371632,82.51363357622176,81.84969185153022,82.3285185447894,81.84621514100581,82.08543800655752,82.8795020938851,82.9818172538653,82.37531860359013,82.80987654998899,82.03548764297739,81.06922865752131,80.67008609743789,80.02206438826397,80.6219903966412,81.60281326621771,81.56950009102002,82.09412335138768,81.99511139746755,82.72904365509748,82.53365643601865,82.47227210504934,82.41995869902894,81.90422967122868,82.24176829587668,82.22126915771514,81.71809490956366,82.27460375195369,81.44770121853799,81.30435402877629,82.1566311516799,81.30958263203502,81.48607434611768,81.19859005557373,80.35364856850356,79.56857953825966,78.93873760011047,79.33551295055076,79.94248449569568,80.39153927564621,80.9554135510698,80.7036688500084,80.76765062985942,81.3100076415576,80.34340870799497,80.35557304741815,79.67710345704108,80.02068681363016,79.04020332871005,79.72673025215045,80.21915731346235,80.4967642808333,80.97454894473776,81.14103585295379,80.44062452577055,81.04353948077187,80.2910526683554,79.8314475719817,80.23714868491516,80.6375481961295,79.90834256773815,80.11243608267978,79.71743753785267,80.67365222563967,80.88423531269655,81.04992372309789,81.5276088877581,81.15842602914199,81.82605630951002,82.23694244911894,81.8623910844326,81.66718340292573,81.96715537970886,82.14162258710712,81.77612254023552,82.70631299819797,82.12368160346523,81.56084677111357,81.81436114246026,80.93690692074597,80.87330532865599,81.0700128772296,80.86499215522781,80.2051130887121,79.38043813453987,78.73734221281484,78.09077396430075,78.24205982265994,78.13160891924053,78.01580909639597,77.0636194893159,76.1576649765484,75.20973914768547,74.3338318169117,74.38927216548473,74.93871153984219,75.07843846594915,74.3882567374967,73.87195282243192,73.57532078493387,73.68516548443586,72.96098542679101,72.80588567396626,73.65023232996464,73.40745475329459,73.2639094335027,74.06195840286091,74.12107791006565,73.40852980175987,74.178546003066,74.51913952967152,74.25345592293888,75.02618921082467,75.63182330364361,76.0403730943799,76.7035487703979,77.6282299743034,77.10877263871953,77.85845895856619,78.44638998201117,79.20421284018084,79.84411960514262,79.61020747805014,80.06359457783401,80.600765039213,79.89010080974549,79.84979888610542,79.9718237449415,79.97293461393565,80.38884042901918,81.2860354972072,80.65805860515684,80.35643019061536,80.69141510594636,81.44428157247603,81.40469960635528,80.49679542751983,80.97057789517567,80.50629025883973,79.93625142704695,79.9289481267333,80.92119352379814,81.71981945354491,81.75209771795198,82.26727525191382,82.89879242237657,83.57727525522932,83.04237135220319,82.35253397421911,81.60055008763447,81.5901379706338,82.14867164939642,81.51342967292294,81.58005802053958,81.33353091450408,81.15935308579355,80.503196450416,80.11313897930086,80.9074591002427,80.92021151073277,81.55177039373666,81.85891216481104,81.23538517206907,80.43063452281058,80.31014065211639,79.93578999117017,79.25850055087358,79.84490560507402,79.82307011028752,80.80660069966689,80.39730483433232,80.57922057947144,80.40780043788254,81.26288174511865,80.60408597625792,80.05449473578483,79.42161170719191,79.20021286979318,79.32598258601502,78.82421479932964,79.5237691453658,79.9464049092494,79.92838323302567,79.96519933501258,79.43216320872307,79.56046552304178,78.58266295306385,77.83472958486527,78.53597642434761,77.88720842264593,77.36576354363933,76.70500687649474,75.92154448665679,76.45609181839973,75.77025849465281,75.711244804319,75.65410041622818,76.15909242862836,75.51596715999767,75.5649759103544,75.9860569103621,75.20363235473633,75.69248926732689,75.90455672657117,75.40326928906143,75.33404086530209,75.41880441084504,75.86538813170046,75.00746071850881,75.57356116967276,76.34645597683266,75.74486376205459,74.99083761265501,75.1415626895614,74.9026401406154,74.72694990830496,74.50785121647641,73.71218164125457,73.62990219518542,74.12929720338434,74.89221185538918,74.51958979479969,75.16801846958697,75.78225130820647,75.51080441009253,74.8183180661872,74.62600086489692,75.02395866857842,74.53781448537484,74.42655381886289,74.63129271287471,75.5394661477767,76.09941990673542,75.93133438564837,75.47430562833324,75.61306080920622,75.99247765680775,75.47618248080835,75.72292984975502,75.82489327667281,76.72290628869087,77.36239142715931,78.2914189142175,77.31154377572238,77.9596084500663,77.89983638562262,77.6709347916767,77.21761053800583,78.15307165961713,78.13775947643444,78.80551344854757,78.4673278206028,79.03296021232381,79.93477692827582,80.30974926706403,79.52279978524894,79.35233572730795,79.03361598122865,79.53277367446572,80.20006724307314,80.19750352809206,79.68046406377107,79.22752914158627,80.0753169786185,79.69122387329116,79.00125854834914,78.37138122646138,78.11444234941155,78.53238612040877,78.04001835733652,77.48939362820238,77.22460977407172,77.87619244260713,78.20925744902343,77.51900442922488,78.37721680430695,77.43106929399073,77.19898181175813,76.9706177324988,77.63892481522635,78.35641729598865,78.3339983173646,78.31075817113742,77.88688198989257,78.75036100996658,78.07177592394873,78.35785299260169,77.75176123157144,78.60061792563647,79.073404063005,79.16355635272339,78.25798445101827,79.00181688880548,79.47823574533686,79.79058548389003,78.85544320894405,78.45346942171454,78.86613381933421,77.94952824525535,77.50116454670206,76.65148222539574,76.31608068104833,77.08810320682824,76.58052309742197,75.97679390246049,75.7072154423222,75.5826878156513,76.04958274029195,76.84408106934279,76.1574538149871,75.76672229869291,74.87970133451745,74.70387391326949,75.30339155066758,75.9723962568678,76.89824105007574,77.72838811110705,78.33197094639763,79.03018081746995,79.9160937210545,80.42240023845807,80.80297567741945,81.63036059122533,81.88456745445728,82.20671481685713,82.27818922698498,83.16615831106901,82.27270770259202,83.08087523886934,82.55818605190143,82.63828058633953,83.27058142330498,83.25186670431867,83.48442558804527,84.05633986182511,84.3174856659025,83.70321995718405,84.68357835430652,83.82792938593775,84.0613341932185,83.62142951460555,83.4488396057859,83.53475676523522,84.36922175250947,83.72378929052502,84.58096046280116,83.67033353680745,84.03388556884602,83.57858022628352,83.17502074642107,82.45260202558711,83.13657755125314,83.40835958532989,84.29596027545631,84.31883167475462,84.86516307806596,84.06086122849956,84.43615354038775,84.10983182257041,84.49634275818244,84.88996226899326,84.59561747685075,83.73392523312941,84.11257881810889,84.15752138243988,84.89828826999292,84.68428141390905,84.89629921829328,84.81538800848648,85.59444516338408,84.62764395261183,85.38485986972228,85.2012364724651,85.78358636563644,86.29144787415862,85.8995261178352,86.07814000733197,86.71198393031955,87.6491656950675,87.62447124393657,87.68055402627215,87.44977241428569,87.40919715026394,87.82389522530138,87.06577232806012,87.92495655314997,87.80578784178942,87.62917061569169,88.03772217361256,88.29781210282817,87.49446016643196,88.46837634593248,89.17970744380727,89.64232260920107,89.2548791570589,89.46079955948517,88.80442699650303,88.83259549923241,89.60767123615369,88.61238953843713,89.35709034604952,89.94016424566507,89.98606947716326,89.1025234204717,88.13006005529314,88.54952361574396,88.4626994850114,88.21463738381863,87.32467870926484,86.71264749346301,86.08298590406775,85.24269948527217,85.01032408326864,85.63307367591187,85.62739367317408,84.6533765848726,83.72910518711433,83.10650267684832,83.66681138938293,82.88423004979268,83.80289576621726,84.66674964455888,84.10057832999155,83.99638622347265,84.98389133810997,85.40530716674402,86.09302441030741,86.95324249519035,86.80162738496438,87.78690108517185,88.24150977050886,89.19037996139377,89.44493884174153,89.22354789637029,88.79801259748638,89.54068880109116,89.07162373838946,89.95165383955464,90.07157461019233,90.14248152077198,89.46099393069744,90.32697626762092,90.8565992792137,91.58452404756099,91.3561664740555,91.64259967999533,90.64708924619481,91.35719965584576,90.58307851385325,89.9238184527494,90.55641406914219,90.47793527273461,89.82361699221656,90.76393742347136,90.93648961605504,90.15196940023452,89.47881174832582,90.4501201370731,89.66977692814544,90.12801737710834,90.34675272647291,89.70497684087604,88.95503404270858,89.13278432749212,89.4211245845072,90.28054770128801,90.35225711297244,90.37494149664417,89.7236722172238,90.20528528792784,90.04733259463683,90.16118119563907,89.96454916708171,90.59426647424698,90.5671022227034,90.13638997683302,89.28598402161151,88.9345467002131,88.35038588894531,88.82884999085218,87.89829681627452,86.94476860854775,87.35844701854512,87.90741547336802,88.35710921883583,88.58418359654024,89.41262929746881,89.59272013418376,88.6951638427563,88.27225475991145,87.54741530120373,86.57793758809566,86.09140304848552,85.86254360247403,86.26318689947948,85.30655909702182,86.24130800459534,85.88559062965214,85.37676464626566,86.30866588326171,85.6115253707394,85.0041666883044,85.52494490845129,85.0015539508313,85.7562789004296,84.90294211357832,85.8394062332809,85.2150105945766,85.9867285406217,86.57824032334611,87.50181136839092,87.03500383952633,86.9175983374007,86.85974966967478,87.16120739653707,87.20263600209728,86.73630131268874,85.91820095619187,85.42709716875106,84.67342087766156,84.1649295357056,84.36521026818082,83.94292486365885,84.90215112129226,84.2748587410897,85.14876979542896,85.37210737960413,85.54701343271881,86.16164553258568,86.80257743922994,87.35808689007536,87.8384805736132,87.75289473030716,88.54058753373101,88.27554505271837,88.16238833870739,87.99347187159583,88.80706562800333,88.35227059246972,87.77654484380037,88.17590158712119,88.15262297634035,87.36940348288044,86.86012617591769,87.01861248351634,86.10431623877957,86.32321114977822,86.26325710304081,86.94406994618475,86.7644080100581,86.61258366703987,86.59186543617398,85.76166659547016,86.65692953625694,86.11813716543838,86.19781279703602,86.1025631763041,85.65590387396514,84.85892082983628,85.08648060820997,84.3133838144131,84.88144616270438,85.52595442160964,85.2402781592682,84.78692146390676,85.27164169913158,84.67665621172637,84.03856847668067,84.58711700793356,85.42001309804618,86.04879420250654,86.32669564476237,85.64000449655578,86.07726714480668,85.65230159042403,86.63704804610461,86.21135244658217,85.38850283809006,86.33177192416042,85.49793099984527,84.74309858866036,85.08954001357779,85.69195827981457,86.52423164108768,85.61668195482343,86.45457456074655,87.03433805285022,87.90210314141586,88.7729556360282,88.21090026339516,87.45309031615034,87.27109114499763,87.89886419894174,88.3829537066631,87.65122757060453,87.9506029295735,87.03691221028566,86.82915231538936,86.88248578691855,87.7182468958199,88.1228756075725,88.28142416058108,87.89364160224795,88.5731163173914,87.58421685686335,86.68975683068857,86.9998348900117,87.02239001682028,86.83670906536281,86.72681327164173,86.217304199934,87.01297533744946,86.33279758831486,85.57814290840179,86.12602202640846,85.19123262213543,85.90043114218861,86.47114528156817,87.20122238900512,88.10321352258325,88.98383612185717,88.39060487318784,87.49256171332672,87.72202775906771,88.00762312626466,87.21015859255567,87.06980211893097,87.4461899837479,86.80697648460045,87.31377096427605,87.42613161588088,88.2887941529043,87.62690488854423,88.06689815595746,88.10343859391287,87.20603962568566,87.01280272798613,86.95819840114564,86.26113280840218,85.47304487135261,85.86680820025504,86.10197384376079,85.9892549822107,85.25709407124668,84.77031923737377,84.96164031326771,85.65040217200294,85.95948264142498,86.54635846754536,86.00414327671751,86.99826821638271,86.45718886749819,85.66160639980808,84.96078078681603,83.98291397467256,83.26039343234152,83.63341334601864,84.08869852265343,84.04100245190784,83.85786173120141,84.29114999203011,83.89025171566755,83.24665350886062,83.66012557270005,84.40791342686862,85.29581436375156,84.50969595834613,83.81978340866044,83.29401372652501,83.71204910892993,84.18324404256418,83.68896602001041,84.15948572242633,83.68860005959868,83.66856182785705,83.04331467114389,83.36533195804805,83.8191049117595,83.87587200570852,83.7458548094146,83.06620663637295,83.33141733380035,82.94959319243208,82.53012716723606,82.5132955275476,82.94989510439336,83.38772342400625,83.03503220668063,83.80813854793087,83.57748637069017,84.17572035780177,83.33872001245618,84.09282533731312,84.98815389815718,84.79616661928594,84.36008698493242,84.69723293278366,85.63356586033478,84.69749371288344,84.55105441436172,85.2078720824793,84.98480950854719,84.33279021875933,84.82546386960894,84.3613200681284,84.26324595045298,84.13416595896706,83.68325702706352,83.41247270302847,84.12607630342245,83.84746101778,83.03209492610767,83.90747095178813,83.51144182635471,83.41992310574278,83.8705703089945,84.27386779198423,83.49179343413562,84.14756601955742,83.57973858015612,82.93596361158416,81.97605647798628,81.21362438797951,81.08666045451537,81.41224086331204,80.53283187374473,80.93622352229431,80.61244372697547,79.94136193022132,79.54702232778072,79.84464258747175,79.42028434481472,80.30493826512247,79.57727934513241,79.58018595678732,79.96281672362238,79.99536100961268,79.09272816265002,79.13643483817577,79.82542148744687,80.11534150503576,79.48574909195304,79.91623085970059,80.10830055689439,81.01327754603699,80.33382888277993,80.07113669533283,79.78475749539211,79.43319559562951,79.95390450954437,79.00120789697394,78.55246525676921,79.04279355239123,78.08833481371403,77.365386728663,76.43929599924013,76.00269864080474,75.53554402478039,74.87620018003508,74.5598833700642,74.1322375764139,74.26285697193816,73.75672694807872,74.04253148660064,74.84518996020779,74.67463939962909,74.56797114247456,74.19040781911463,74.47427662229165,74.05740610230714,73.4995364844799,73.90130348177627,73.36256858054549,74.34469673130661,74.71621620282531,74.27059833705425,73.84528738074005,73.2991133457981,73.43629824835807,73.8903909525834,74.76098191924393,75.31245827348903,75.84919690992683,75.90001780027524,75.66181332757697,75.06414814246818,74.29471970675513,74.16312679601833,73.60968918353319,72.65449154889211,73.50161862792447,73.08383024856448,72.280441978015,72.43184362631291,71.85356206120923,71.53061353461817,72.4575974070467,72.50726153189316,73.42627622745931,73.67590889707208,72.75498076947406,71.87890149885789,71.19616011157632,70.34659899724647,70.91853705793619,71.72017293423414,72.23220346681774,72.11497491458431,72.98296465072781,72.73567588347942,73.23336616856977,72.42877701250836,72.63201592583209,72.51620255270973,72.90619267895818,72.7669674558565,72.82242580223829,73.151969964616,73.30185504863039,72.93142204079777,73.47012390708551,73.75503547489643,73.06315683340654,73.7655501421541,74.2944443821907,73.40736027574167,73.97519210074097,73.05702161649242,73.5646364656277,73.84974724939093,73.11546147475019,73.48578098323196,73.84611255303025,74.48973227431998,74.92069072369486,74.47940149018541,74.22902514366433,74.30811940366402,73.4540428193286,73.93488026829436,73.31802793918177,72.6291853133589,71.65915410406888,70.8554677204229,71.64322181325406,72.29912868421525,72.41254198225215,72.52017567399889,72.71046788198873,72.7540923259221,72.30931186629459,72.37780882650986,71.47400405118242,71.00507639022544,71.24889552686363,70.77682110015303,70.3259925050661,69.85405159322545,69.9555170298554,69.104966445826,69.35995404003188,68.97778287902474,69.65177505789325,70.55547708645463,70.29126507788897,69.30035715503618,68.83828684780747,68.28898933716118,68.6322155254893,69.43138857278973,68.85732631618157,68.20302732707933,68.79065171116963,68.22643017442897,67.36101133562624,66.86978281894699,67.19476039428264,66.67335308669135,67.62749785045162,67.23623445583507,66.93084124429151,66.12678002053872,65.1878163232468,65.45156320603564,64.94381576776505,65.23172746272758,65.22265148954466,65.78544405661523,65.1661182725802,65.05339292343706,65.92119802208617,66.32785413367674,66.29365113703534,66.25324204331264,66.81522033223882,66.1291722189635,66.19492512848228,66.07379517098889,65.37716091796756,66.0717581086792,66.76293238438666,66.11505220318213,66.88378308760002,66.11007572896779,65.77303753560409,65.20594701822847,65.65277684573084,66.01930447900668,66.10648583061993,66.64383505098522,67.6347430087626,66.72793197492138,67.28546760929748,67.3445509574376,68.2488324563019,67.48168107960373,68.07684940518811,68.82160692848265,68.78935302328318,68.4065797063522,67.52712816698477,66.55194239038974,67.1338766105473,66.79109180020168,67.7713637938723,67.67984674824402,67.79947880934924,68.1139775980264,67.84840747853741,66.97759453114122,67.6261851596646,67.03727010125294,66.57924336008728,66.5363895278424,66.76782255247235,66.53608906455338,65.59310446772724,65.62652013357729,64.93223088979721,65.57464907271788,64.86445188568905,64.37388633890077,63.59968187240884,64.55291820364073,64.42575582163408,63.626141416840255,64.31493531912565,63.671619289554656,64.18239251105115,64.29782950272784,64.20215120958164,64.99027437111363,65.38792384508997,65.7161700814031,65.64120831154287,66.13876280467957,65.84815166378394,65.90799668757245,66.39982458157465,65.74811809137464,66.36493523837999,65.38607026264071,64.81607086211443,64.3266958175227,63.639005293138325,62.77142100920901,61.93601222522557,61.588110390584916,62.259407265111804,62.98357224557549,63.41028185375035,63.743927594739944,62.76573085458949,62.38057951722294,62.05895160511136,61.573611572850496,61.82638752134517,61.210657053627074,61.41133154416457,61.40770296566188,61.39826602395624,61.458927280735224,61.786600994411856,61.095801959279925,60.47411777777597,60.42794157657772,60.032753912266344,59.904732149560004,59.503187296912074,58.76334603084251,57.905255666933954,58.20468798466027,58.71657748706639,58.538211898412555,59.27657398302108,58.453573358710855,58.30011397181079,58.45180285722017,58.3966884133406,57.81886158278212,57.27664900617674,56.42930793995038,57.159981423057616,56.3212066385895,56.6390777239576,55.782145029399544,55.366033571306616,55.30299170734361,55.02294149668887,55.41508970502764,56.07395825209096,56.55469049606472,56.73570097051561,57.07762761414051,56.14859309140593,56.68189163925126,57.25121001992375,56.56456117145717,57.422453437466174,57.16475597117096,56.60461908578873,56.12641098862514,56.06319250492379,55.827732062898576,55.38193032890558,55.26466262573376,54.81832584133372,54.65485347574577,54.340558094438165,53.47504123300314,53.346848520450294,52.67873832536861,51.959264586213976,52.89232366485521,52.56580157019198,51.6703415941447,51.12013697018847,51.17403041757643,51.76646428881213,52.534099073149264,52.85581084480509,53.074679309967905,53.055831991136074,53.787755658850074,54.77954574301839,53.80709690740332,54.36605737078935,53.90323635842651,53.9177418849431,54.57352963089943,54.19714126829058,54.603787125553936,55.32439031172544,55.07104834076017,55.98113860934973,55.78860873449594,56.17003802023828,56.35910315066576,56.419084197841585,57.12877774005756,57.96746350917965,58.926145010627806,58.70138750318438,58.18024899344891,57.75010725064203,56.78480839310214,57.049579857848585,56.640782402362674,57.09760721260682,57.93882106104866,57.13777268445119,56.46200738614425,56.29263068083674,55.87673510424793,55.41188408853486,54.999644733499736,55.71955524524674,55.05583736486733,54.41012422647327,54.88366062194109,54.764270291198045,54.86031142342836,54.79588104598224,54.520728333387524,53.867409211117774,54.05307419737801,53.399426573421806,52.50196134997532,53.084930246230215,52.51982729649171,52.08807896450162,51.6504232827574,52.35694885952398,51.55762724997476,51.13528887089342,51.31392898410559,50.614131266251206,49.92168650077656,49.532902848906815,49.39406907977536,49.99315166706219,50.10341686801985,50.896174541674554,51.019467120058835,51.73125651292503,51.42868504393846,51.54900162341073,52.18049634620547,51.97219598433003,52.74388544820249,53.29925088630989,52.99261772911996,52.00548782106489,52.865631902590394,53.533835580106825,53.58329466776922,53.7799671953544,54.4312177230604,54.510978172533214,54.21644820505753,53.35708108218387,52.36095681320876,52.80592429358512,52.47328687738627,51.523518858943135,51.63645455474034,52.29987345542759,52.50245386501774,51.60062369517982,50.89724682504311,51.57872122572735,52.55961150769144,53.42914437223226,53.319975265767425,53.571091272868216,53.463819946628064,53.696842558681965,54.57266534958035,53.80556749505922,52.920210235752165,52.49959798809141,53.021765671204776,52.8999888994731,53.29832307668403,53.46175470529124,54.08110444620252,54.04501227103174,53.44517055200413,53.06159031810239,52.84756503580138,53.51205129176378,53.79803302884102,53.38513087714091,53.55113934818655,53.61337107978761,53.242112601175904,53.89137619547546,54.46840191958472,53.51503764046356,54.070660499855876,53.28681696206331,53.028169349301606,52.86585891991854,52.636834759730846,52.47342004440725,53.38626980688423,53.61437163082883,54.60520213097334,54.66909228730947,54.283170216716826,53.86628649290651,53.2499108556658,52.55977624095976,53.53153819637373,53.262063406873494,53.03417549515143,53.928087294567376,54.860572477802634,54.85700656333938,55.110248622484505,54.210845075547695,54.75955160567537,55.709936374332756,56.692182942759246,57.30062069511041,58.27810327941552,58.103621328249574,58.911998148076236,57.968342759180814,58.8992291376926,59.191850127186626,58.35820939159021,58.366654847282916,58.076861270237714,58.05051845405251,57.603679690975696,56.9799219397828,57.20732732396573,57.06299969693646,56.88979296339676,57.29022503551096,56.35370044969022,56.48815719457343,55.604874406475574,54.8953585261479,55.48493934236467,55.14486233796924,55.21381408954039,55.01611183909699,55.04195755999535,54.25453621195629,54.4710850273259,54.500119510572404,53.60047086607665,52.697702343575656,53.67790045682341,53.21058818232268,53.85390724847093,53.235176851507276,53.27067900309339,53.29992445046082,52.743261948693544,51.96785204438493,52.72081106901169,52.62102698115632,52.885763737838715,52.63172610057518,52.393394908867776,51.58186339773238,51.70147740421817,51.98166544781998,52.80709667177871,53.628231605980545,53.49336219439283,53.264210843946785,53.785725029651076,54.539904452860355,54.244987529702485,54.64537386968732,54.15730699384585,54.31229720823467,54.341339801903814,55.22198870498687,55.7372851469554,55.10968137998134,55.559813282918185,55.702824003528804,54.81332316342741,55.698921064380556,55.084899011068046,54.74319614470005,54.06386864697561,53.97475199075416,53.034596065059304,53.62105891061947,53.82308404846117,54.75477504171431,54.00202771089971,54.48962614918128,54.66099298745394,54.93410756904632,55.14002246502787,54.74329790659249,53.923931871540844,54.28676960617304,53.368968083523214,53.250083851628006,52.63693255651742,53.025143892038614,53.9713228661567,54.21015418833122,54.560465855989605,55.00312820030376,55.334221315104514,55.0585049148649,55.87143279798329,55.541108396835625,54.67026109760627,53.96814643172547,53.57812952948734,53.17028846312314,52.43718979647383,52.5115778404288,52.123855378478765,51.14579016249627,51.54073090851307,52.50836946768686,52.455729100853205,52.57081703701988,52.11808118177578,53.11400246201083,53.203680008649826,53.19601476471871,53.348062824923545,54.334935252554715,55.069009269122034,55.3015069430694,55.46889690309763,54.7291322927922,55.01009850529954,54.34675951069221,54.648831566330045,55.389276965521276,54.962236151099205,54.06893394049257,53.51284124003723,54.12823413591832,54.3773171948269,54.37565357377753,53.70169542822987,53.95703672012314,53.793253301177174,54.70923294313252,54.016471831128,53.31637083739042,53.49493265710771,54.44672191282734,54.64653655141592,54.76533033885062,55.76132042706013,56.24561055470258,55.63872407050803,55.714414508547634,56.1045857090503,56.710703284014016,57.423800483345985,57.29022393608466,56.969361973460764,57.31417269119993,57.74116710713133,58.12976377969608,57.84385261172429,57.364828765857965,58.08954343106598,58.05109968688339,58.77973171835765,58.93306829454377,59.31383267743513,58.85378067428246,58.264747655484825,58.06206513568759,58.63064666604623,58.24665157496929,58.25775839621201,58.378971700556576,59.135594309307635,58.700097444001585,59.0737978592515,58.4714078605175,58.678318809717894,58.12631123000756,57.92369265248999,57.30367885204032,56.70358323538676,56.38734949147329,57.19471236830577,56.83456485439092,56.76197614707053,56.911072310525924,57.20613795518875,57.721402030903846,57.364369741175324,56.73329395893961,57.02071421639994,57.42694290075451,58.3453850238584,58.2294277776964,57.88565799733624,57.91843201452866,58.588814745657146,58.37685452308506,58.68055768683553,58.15882821800187,57.89758904464543,57.41852617403492,58.27126381965354,58.629558336455375,58.33171956939623,58.83422056771815,57.98084678500891,57.22184548713267,57.983776815701276,57.61838295497,56.687479686457664,55.89933613548055,55.090667804237455,55.730317175854,56.55755298724398,56.99382830737159,56.89683618908748,56.31099309725687,57.17646636907011,57.251099213026464,57.068824185524136,56.47163733188063,56.71903221542016,56.54071351792663,57.212697211652994,57.9009852418676,58.1225870558992,57.90479415189475,58.341245118994266,58.196992670651525,57.85645995894447,57.29844780173153,57.00696593802422,57.04151495965198,56.26495602633804,55.53757601836696,56.29699815157801,56.04637109255418,55.378599614836276,55.86632694443688,56.4194719158113,55.494057117495686,54.57326232502237,54.40936118038371,54.597773844376206,54.828067522495985,54.402188734617084,54.504650155548006,54.604860560037196,55.057605462148786,55.26834949711338,54.39919896516949,55.168371953070164,55.77021241839975,55.78720573382452,56.07118637021631,56.05900126695633,56.78806092496961,56.485281052067876,56.791210785508156,56.01421454036608,56.110350844915956,57.05757472431287,57.03381271800026,57.02776772202924,57.11757388478145,57.48532120231539,57.89920847816393,57.507199148181826,57.26110566826537,56.27784346602857,57.12916173180565,57.030862994492054,56.929474068805575,56.79528952669352,56.10259562265128,56.27053431654349,55.80522890109569,55.31333411624655,56.02447038469836,56.25332670286298,55.378503925167024,55.87491375952959,55.96042535919696,56.32744379108772,56.33524695178494,57.29174341913313,58.022334404755384,57.75411864090711,57.90206747921184,58.521818520501256,58.10696672741324,57.678852749057114,57.344963137526065,56.837469436228275,57.38663794007152,57.874070568941534,57.86126041226089,56.94984316918999,56.767455329187214,56.84733179863542,55.86751837609336,56.675089763943106,57.29036542819813,57.05504722241312,56.2432226408273,55.99729706393555,55.697276620194316,55.24759545782581,54.933669086080045,55.89595717517659,56.64772395323962,56.05485047539696,56.939651110209525,56.83052587835118,56.72268563788384,56.7241777619347,57.20741628529504,56.37314871326089,56.4749812502414,57.17222317168489,57.78865896258503,58.04260735400021,58.17399651464075,57.44877659250051,56.84747732942924,57.44985460722819,56.93772720079869,56.47843170212582,56.896826673299074,56.40650837868452,56.07384404120967,55.93658760236576,56.215589257422835,55.75843297922984,56.23071104194969,57.21314970497042,57.028999138157815,56.07930913195014,56.28046730859205,57.06482635671273,56.147014521062374,55.70902872644365,55.05956121487543,55.77488496853039,56.113256718963385,55.85811736434698,55.76650294708088,56.476226940285414,56.082787428516895,56.248775808140635,56.69109583366662,57.36865855194628,58.13321958389133,59.00180041324347,58.83000044384971,58.90252541517839,59.28338467748836,58.57398808049038,57.820359039120376,57.032534004189074,56.8015200519003,57.07527185184881,56.632663558702916,55.86590954102576,54.919394648168236,54.19639867777005,54.021643459796906,54.09303472889587,54.62488996889442,54.40328657673672,54.019727484788746,53.220525106880814,52.58019191818312,52.2457184381783,52.031503822188824,52.35686191916466,52.71370322164148,51.729173328727484,52.07494955509901,52.05927591212094,52.776792417280376,52.4664828684181,51.73858450120315,52.627927221823484,53.40248995786533,52.997640947345644,53.02997351065278,53.39002565853298,53.0283400635235,53.1061062538065,52.19498807890341,52.16230727639049,52.57055468251929,52.1312411907129,52.99998444644734,53.749975661281496,53.3057662458159,52.40653112158179,52.51479653734714,52.9818412726745,52.941419498529285,53.76409377949312,52.858189122285694,52.261932083871216,51.334432060830295,52.28171438956633,51.33046360779554,51.348431856837124,51.38538146065548,52.14462955389172,52.280050159431994,51.72514047799632,50.74470575712621,51.23235769383609,51.63770187320188,52.022760482504964,52.24528149422258,51.821094788145274,51.57800176832825,51.17703712545335,52.09986343421042,51.27680014260113,51.05687463004142,50.97436214471236,50.539390491787344,49.73126199748367,50.08417869126424,50.14280400518328,50.227233472745866,51.00629627890885,50.80073528876528,51.66599672520533,51.60585173359141,50.62926560547203,51.38158505689353,52.11959039699286,53.003608259838074,52.466046657878906,53.32670826325193,52.767015567049384,52.544799926225096,52.09612617176026,51.60991297289729,52.29855954181403,51.41391180176288,50.62580648623407,49.850610073655844,49.95222780620679,50.11212558625266,50.19430629722774,49.50300849368796,50.158415763638914,49.89053908968344,50.56083459313959,51.34197646472603,51.26198703702539,50.78916312241927,50.59086926141754,49.94055226398632,50.65783084183931,51.397973095066845,51.90407441928983,52.328215901274234,51.945623298641294,51.64091015001759,50.68506915681064,51.352400176692754,50.835563629865646,50.55265734158456,50.04294550837949,49.8883310589008,50.54214118141681,49.99330080393702,49.880894681438804,50.16856881324202,49.33043465157971,50.039351287297904,50.263223545160145,50.25777560425922,50.91987906722352,51.45128720672801,51.75725476723164,51.55680646048859,50.89233468892053,51.78928764164448,50.872651915531605,50.02282665297389,50.86770739406347,51.173089631833136,51.184307081624866,51.121002497617155,50.52654178021476,50.04341659275815,49.67118943389505,50.53394266171381,51.308393597602844,51.29582755686715,51.42993464926258,50.847345798276365,51.64902736572549,51.30335791828111,50.85486586485058,50.99125410290435,50.80600230768323,50.12376037845388,50.792493771295995,50.534012065734714,50.217586430255324,49.56904400140047,48.89587469538674,47.926457435358316,47.67757581034675,47.3638829626143,47.90789405629039,48.63957900553942,49.61113254074007,49.99825074709952,50.64910567039624,50.11315803974867,50.11737001873553,49.78463499620557,49.183767264243215,48.3860226678662,47.62915411032736,46.973618471529335,47.08476910600439,47.300135693047196,46.89108763867989,47.63687093416229,48.455757500603795,49.179449391551316,48.24074319144711,48.526034713257104,48.655279324389994,48.82443741662428,48.92425432661548,48.54624290391803,47.565524550154805,46.84691723342985,46.57483830722049,47.54685996240005,47.21658274391666,47.23335373820737,47.843486967496574,48.10979217570275,47.14759445376694,46.614702810533345,45.94889001175761,45.74711476173252,45.607326940167695,46.48047858150676,46.14348194934428,46.62723452365026,47.080060134176165,46.60458508785814,46.85235701082274,45.98463489487767,46.44019206287339,46.07520632259548,45.91932623274624,46.68279592413455,46.98948624916375,46.69467444065958,47.03003951488063,46.55256363097578,47.15223796758801,47.74311108561233,46.768612714484334,45.79339702660218,45.06706698285416,45.45771015388891,46.339872209355235,45.63962221844122,45.39648661762476,45.65464917104691,44.88388575706631,44.062358133494854,43.20527409622446,42.92809907067567,42.869762437883765,43.12465376872569,42.44621149683371,42.178501662332565,41.85205893823877,40.9771687630564,41.20840876176953,41.29825792182237,40.524506791029125,40.79080609418452,40.182821919675916,39.9694050187245,40.49532117834315,41.059095616452396,40.55270037148148,40.20256410073489,39.72395740495995,39.35503123840317,38.794631239026785,38.58599630743265,37.79346053721383,38.26574941771105,38.097613798454404,38.39075898146257,38.7981421565637,39.283089568372816,39.027341375593096,38.27095920406282,37.740629946347326,38.28956504166126,38.02008275780827,38.69444352807477,37.84823774872348,38.36120042903349,38.994330402929336,39.105758173856884,38.47904479596764,39.04848318081349,38.7714394335635,38.914300134871155,39.27155788708478,39.166978161316365,39.632304227445275,39.52316944953054,38.890322369057685,39.43733229627833,39.80540561955422,39.146535044535995,38.43957511521876,37.642052670009434,36.71396284503862,37.11831514490768,37.009561620652676,36.18144332477823,35.514601301867515,34.67762816976756,34.4145702351816,35.23522205231711,34.41918663168326,35.078276224434376,34.20446647563949,33.31068474333733,33.8792103943415,33.60507602477446,34.10094737773761,34.36794706946239,35.34212644957006,35.07864239672199,35.27185990521684,35.90795855829492,35.60366580495611,35.1018385742791,35.601865630596876,35.937609024811536,36.88066677143797,36.084915407933295,35.294884180184454,36.208194645587355,35.236865842714906,35.97902662400156,36.74537785258144,37.09507423080504,37.82794393133372,38.8133172984235,39.122051909565926,39.16260839346796,38.46133477939293,39.31556068826467,38.39835580205545,37.987341415602714,37.46984897879884,37.54267595941201,36.6747882864438,36.39573452388868,36.83346693124622,37.25349086942151,37.749627384822816,37.81460847146809,38.20920013776049,38.87407720461488,38.80436362978071,39.308509620372206,39.484978863503784,39.40919637773186,38.44446845818311,39.312524013221264,39.768991492688656,39.175511305686086,39.50465874001384,39.70089883124456,40.43564944760874,40.70917939208448,41.6742721456103,41.40798296779394,42.303520674817264,41.386571288108826,41.27237928658724,40.853483783546835,41.12821182329208,40.275964316911995,39.87007893109694,40.006141127087176,39.26895379135385,39.333513328339905,39.41737736854702,40.029734269715846,40.16682028071955,39.64937528921291,38.86888960096985,38.23058971343562,37.41856017988175,37.005910359788686,37.71298190858215,37.37029383843765,36.685429129283875,36.168091353960335,35.59511540737003,35.88609660184011,36.55570844002068,37.312006953172386,36.38358752289787,36.860753662884235,37.300922587513924,37.8969188448973,38.749302898999304,38.14496450824663,38.19419109541923,37.91094045061618,38.75233526760712,39.220267488155514,38.90846533654258,39.82616151776165,39.731905681081116,39.19382233452052,39.96537139406428,39.5885209380649,39.77384100435302,39.462589487899095,39.55989109957591,40.274621991440654,40.44614357082173,40.058816394768655,39.251674332655966,39.15544500108808,38.62855897657573,39.351753908675164,38.98732577404007,39.71416864031926,39.15654273843393,38.881848183926195,38.67539883777499,38.84603493148461,38.867689760867506,38.289045764133334,38.772439832333475,39.10049030696973,39.37156164692715,38.61384715465829,38.690887147560716,37.963153588119894,37.29667181195691,36.87940779188648,36.870097417384386,36.80925713432953,37.75926979025826,36.82054519839585,37.07303275028244,37.40959343034774,38.27079019928351,38.92295641032979,38.932913032360375,38.40845528477803,37.423058287706226,36.78933916054666,37.58936319779605,37.23652879381552,37.19121704995632,37.89842215413228,38.88801360037178,38.53416479099542,37.82002718374133,37.27477501844987,37.297534223180264,37.098459565546364,37.87097668182105,37.08219466917217,36.587350794579834,35.96457823133096,35.21429593581706,34.9177834847942,35.44607061566785,34.90226378291845,34.628576662857085,34.39949778094888,34.21061546634883,35.13377930270508,34.1563163632527,34.47641144739464,35.32798096770421,36.07278531137854,36.38335609063506,36.88182673975825,36.82165419589728,35.94545479817316,35.616527792532,36.16502985032275,36.89860955113545,36.19563723821193,36.53624419821426,35.91052357153967,36.41090834047645,36.08793869242072,36.307807395234704,36.65706214727834,36.81212840043008,36.768544484395534,37.069864923134446,36.857646169606596,37.7054352844134,38.543254849500954,37.96966513758525,37.53133570821956,37.307956029661,37.02005011122674,36.99440761003643,37.96015808638185,37.298871299251914,36.917636316269636,37.35216784849763,37.145557490643114,37.383751816581935,38.18736277706921,38.052407199982554,38.59094149619341,38.29021928971633,37.43645163346082,36.601388233713806,36.591402312740684,37.419308978132904,37.35242230305448,36.760333343409,36.5281796627678,35.54974622000009,35.26336542144418,35.88830073457211,35.44541815947741,35.52918604016304,35.1440780996345,35.935620887670666,35.37527188519016,35.6748824454844,35.26464115269482,35.74245152529329,34.875016247387975,34.105697627644986,34.835482036694884,34.29038302693516,33.374262555968016,33.184164707548916,33.12122712889686,32.728840925265104,33.61059091612697,33.280779431108385,33.89066802710295,33.46644470654428,34.458975098095834,33.593724897131324,34.371939804404974,35.20149614010006,35.071321367286146,35.77208235207945,34.791404641699046,34.1404092842713,35.1063058944419,34.27921707974747,35.18395430687815,35.455720582511276,35.43195274006575,36.43115942412987,36.9697239510715,37.758421323262155,38.25680419569835,38.7290349858813,38.20333189563826,38.62727120099589,37.82887280592695,37.350291980430484,36.80958218872547,35.89991762768477,35.567081888671964,34.939271355979145,35.31257506366819,35.130780486855656,35.930591810029,35.21647733915597,35.53616816736758,36.164555749390274,36.35060213925317,36.63474549166858,36.622325234580785,36.8630232559517,37.4325041398406,38.13437507348135,38.59390289429575,38.980620740912855,39.28214023588225,39.44743997324258,38.615252789109945,39.33594647841528,38.958052134141326,39.396868475247175,38.53726392472163,38.793365879915655,38.30781770683825,38.038407935295254,37.29707810934633,36.664542220532894,37.39519722992554,36.500676890835166,37.40093636652455,37.4940632218495,36.58756278408691,36.221706352196634,36.38435140857473,36.3183673908934,37.12281319173053,36.386162475217134,36.743385618086904,37.710213494021446,37.45684085227549,37.35138229839504,36.35542032169178,36.09456635871902,35.57280627917498,35.38769951229915,35.76632677298039,35.32153360825032,35.9400661252439,36.701171077322215,35.830510545521975,36.659897807985544,35.90270427009091,36.44152100011706,36.64123938744888,37.63944088574499,38.62939079711214,38.819052908569574,39.519317402970046,38.93632650608197,39.80374091677368,40.31492766877636,40.222085245419294,40.551434652879834,40.50136868469417,41.408663767855614,41.91407544258982,42.0764484629035,41.32003323268145,40.63159054052085,39.81271287240088,40.28517188783735,39.759951362386346,39.51827920926735,38.86272852635011,39.12704854691401,39.81338255293667,38.81648760056123,38.2511658850126,37.44678689725697,37.77567026857287,38.75939530041069,39.7527247229591,40.67259222455323,41.083200429566205,41.39386894041672,42.27366905566305,42.458660026080906,42.987592520192266,42.66662500984967,41.79748292686418,41.37792884465307,40.93374150805175,41.75895084766671,42.16599115263671,41.55779239954427,40.88439938938245,40.59234912227839,41.276435777079314,41.87271713418886,41.44055264815688,41.469629644881934,40.98262475291267,41.442353416699916,41.29631866700947,40.58261641534045,40.303000341169536,39.77593536162749,40.305686788633466,40.7378798937425,39.794278589542955,39.02609176002443,39.848064170219004,39.905456157401204,40.851370794232935,41.60805065743625,40.81601488171145,40.73643769323826,40.67759491270408,40.99585576634854,41.36786020966247,40.38223542133346,41.11296172766015,41.854703292716295,41.54765771701932,40.69748451560736,40.944243408273906,40.385716025251895,39.70950496708974,39.14933686191216,38.796757019124925,38.174920316785574,37.982361043803394,38.03419204149395,38.58026793599129,38.18826045887545,37.42262218846008,37.672115926630795,36.83552324259654,36.3034576731734,35.649322245735675,35.42318886471912,36.324339443817735,35.71223440300673,35.42871311260387,35.94022568361834,34.94847710849717,34.00709650525823,34.5703863305971,33.64971102075651,33.79783594654873,34.22391676157713,33.38943214667961,33.44146770844236,34.21211524633691,34.50339124491438,35.27820980781689,35.36067049251869,35.20407861657441,34.730126469861716,35.30605146801099,34.90851489407942,35.85886962292716,35.91738306032494,35.506909392308444,36.26049982337281,35.75982508994639,34.84359528962523,35.29325704835355,34.783997722901404,34.69874107791111,34.81436805333942,34.89981912635267,35.477346289437264,36.35828800173476,35.951660668477416,36.24762489879504,35.72434299904853,35.48489854531363,36.329571049660444,36.12208285415545,35.52240716712549,35.05243765050545,34.093687962275,34.794059129431844,35.37989571504295,36.07557481620461,36.74307648465037,37.278294092509896,37.11937860865146,36.19415575591847,36.19399827159941,36.74537967564538,36.36153488000855,35.62554121436551,34.8612553672865,34.58095622481778,34.57156451744959,34.995746712200344,34.576195566449314,34.93980299774557,34.58081295853481,33.862157058902085,33.9508585780859,34.81377579830587,35.7380097117275,35.7684316127561,36.329867396038026,36.48412823770195,37.34912418015301,37.472328369971365,36.61724662873894,37.06935307383537,36.96547308890149,37.050464659463614,36.329656823538244,36.144909566733986,36.64650292182341,37.181366661097854,37.79753924580291,37.58303725067526,38.5071249906905,37.79550829157233,38.171741247177124,37.4106563529931,37.34899060847238,36.68985346052796,37.62135492451489,38.34548286907375,38.28525481186807,38.31018151529133,37.37989333132282,36.78247678512707,36.82532750722021,37.56287196651101,37.80241577839479,37.88276580022648,38.02891191514209,37.493207566440105,36.56290463311598,37.11919551761821,38.01863132137805,38.10057007847354,38.24949549464509,38.438379833009094,37.99167660390958,38.518998723477125,39.37863831501454,39.03804355626926,40.02837867056951,40.31348892580718,41.07743830420077,40.36432823399082,40.18447498464957,40.882717709522694,40.97918712859973,41.624357433989644,42.562899256590754,41.79541050689295,42.63045915076509,43.57922728220001,44.39133203821257,45.24771231692284,46.01963910181075,45.5545362601988,44.71754517778754,44.36905360268429,44.35527736321092,44.59177982294932,45.532153215259314,45.50973562616855,44.79688301542774,45.12668475462124,44.34251123806462,44.03927744645625,43.57104544620961,44.502955307252705,45.024353636428714,45.09695074753836,45.31747132027522,45.526776945218444,45.34530735202134,45.507546657230705,45.7354320846498,45.33692912245169,44.68525156378746,45.25002847146243,44.27951803803444,44.836854664143175,44.66436390625313,43.75720807816833,44.57073714165017,43.928720148745924,44.46442633168772,43.880093343090266,44.55752943223342,44.06687723007053,43.42925307620317,43.128638898953795,42.72384315310046,43.50105586787686,44.310335816815495,45.310004875063896,44.856008630711585,45.79090413590893,45.63007169403136,45.081219819840044,45.75693085137755,46.425687280483544,46.34899476217106,46.95899457996711,47.24268027022481,46.708242651075125,47.658253100235015,47.748029961716384,48.37827273271978,48.42765292758122,47.7142027169466,47.764726609922945,47.00218501640484,46.82369169732556,47.757553298957646,47.356247739400715,46.36618457362056,46.852904302533716,46.815889339428395,47.427618278656155,46.478252274449915,46.70368944853544,47.55313145276159,47.98021841328591,48.34132495103404,47.594350680243224,46.899056324735284,47.48879746394232,48.07845496479422,47.16918382328004,47.67663883883506,46.83951048878953,46.29955926723778,45.437823336571455,46.064197551924735,45.54900289373472,44.695360822137445,44.60486557288095,45.42650033021346,45.74878392741084,46.46904682787135,45.8592924317345,44.891227901447564,44.65734430635348,45.34523456124589,45.492179514374584,45.39500251505524,45.652763857506216,45.04629963915795,44.812207764945924,45.14849014673382,44.34541752981022,43.972751828841865,43.24122228752822,42.68878087634221,42.003865990787745,42.850471672602,43.23571252729744,44.08647761074826,43.24885727558285,43.51437703007832,42.68878565588966,42.95031362539157,43.39731959765777,42.7401579474099,42.447188639082015,42.68824095930904,41.85111800022423,41.35867244983092,41.89492588257417,41.03123711841181,41.610854636412114,41.28945177048445,41.62672071205452,42.34217791585252,41.47235464770347,41.56501806201413,41.326790775638074,41.465946769341826,40.74916216079146,41.0464209895581,41.04925037827343,40.24915787437931,39.72897175792605,38.98553445888683,38.343810096383095,37.34839818160981,37.656422359868884,38.56368399364874,39.210799634922296,38.308746786788106,37.57359753455967,37.89771906565875,38.00946150068194,37.3965125749819,37.742645357269794,37.379489219747484,37.271724567282945,38.1093561979942,38.621319115161896,38.494881929364055,37.789606732316315,37.87777392799035,38.578274209517986,38.5813861656934,39.412770157214254,39.34057398978621,39.44578938977793,38.7067140173167,37.9414471029304,38.4424146884121,38.682860100176185,39.56943525793031,40.52289561368525,41.24410494789481,41.65358395315707,40.85662771202624,41.62268780916929,40.64779051486403,41.15714439190924,42.03658615006134,42.44578170310706,42.756377660669386,43.06962496088818,42.3139829672873,42.76844923850149,42.252875526901335,43.0139255062677,42.63881073985249,41.80693476414308,41.84840798564255,41.85501631908119,41.7025277656503,41.404444279614836,40.65876067895442,41.41272500902414,40.41364556364715,39.539278329815716,39.63072849577293,39.80595363210887,40.121684721671045,40.32343075796962,40.06324656074867,39.29725676961243,39.36519569158554,39.03121187305078,39.24570073932409,40.18514576135203,39.650287818629295,38.700303446967155,39.45638910215348,39.04043520754203,40.00349873909727,40.102169792633504,40.749790273141116,40.464103400241584,40.155238911975175,39.29476272780448,39.23858884908259,39.725573499687016,40.11562018515542,41.09840298257768,41.472251581493765,41.4208630155772,40.5723791369237,40.882534314878285,41.24450930580497,41.95273869205266,42.630094098392874,42.62505097268149,43.4550737766549,43.440743940882385,43.26361621171236,43.661368699744344,43.56435595732182,43.45614520274103,43.88584429817274,44.83116255002096,45.724995635449886,46.23506372002885,46.21679803961888,46.827379098627716,46.13560193916783,46.350599138997495,45.70456720748916,45.05951560847461,44.81069954484701,45.313964371569455,45.198956390842795,45.30454905517399,44.898777310270816,45.575290877372026,45.0532372337766,44.70730842789635,44.973320194520056,45.878968180157244,45.96028267219663,45.15768441837281,45.05303233768791,44.22285489970818,45.144352556206286,44.29853924456984,44.50490305898711,44.68057261919603,44.539186294190586,45.01407872326672,44.25549542438239,43.9816641039215,44.30220633838326,43.9534099875018,43.80554722156376,42.82217216305435,43.01403445843607,42.85754507733509,42.67585737537593,43.65334592247382,44.04697819426656,43.0985641060397,42.53857080126181,42.47244636900723,43.0207184208557,42.48772637732327,42.54280151054263,42.72292864462361,42.423303570598364,42.82870116829872,43.05598265770823,43.30009528901428,42.83474601525813,41.93488029111177,41.284921031910926,40.68580929748714,40.8210798134096,41.676116567570716,41.58990861289203,41.833770632743835,41.26120924577117,40.45155259547755,39.630319939460605,40.54176354780793,41.18246859498322,40.661004761233926,41.17074375087395,40.98165025701746,40.12122868653387,39.894811956677586,39.10299425665289,38.78835853934288,39.621462719514966,38.87442671041936,38.54343587718904,38.003490751143545,38.796343930996954,39.326465476769954,38.98593997908756,39.66248602792621,40.62673200620338,41.329988493584096,41.906005521304905,40.923098761122674,41.6353470729664,40.928456293419,41.16302889585495,40.74675232777372,40.358553293161094,40.478282359894365,39.48665344947949,40.309935599565506,39.63571648765355,39.50256516318768,39.96228421200067,39.80950142350048,38.83668818231672,39.283284256700426,40.17778649600223,41.00439166510478,41.27361837076023,40.7283859141171,41.30987068545073,40.81784314615652,39.92414527665824,39.42318128468469,39.68751968909055,38.80594615126029,38.064987369347364,38.679629306774586,39.25127251399681,39.029421544168144,39.42849098611623,39.461940488778055,39.36567002348602,39.66894547175616,38.723663294222206,38.14423454226926,37.41527499817312,37.970682981889695,38.64680749271065,37.93348628189415,37.08268715441227,36.348784531001,37.02584636770189,36.522218962199986,35.55416776705533,35.18078763084486,36.041942838579416,35.23428905662149,34.45979119697586,34.614965985529125,34.8500941847451,33.856800492387265,34.04274904169142,33.40256555657834,33.62316494714469,34.548394253943115,35.44736825954169,35.29169783229008,36.22631722735241,36.02786681242287,36.050658030901104,36.721697754692286,37.52652542479336,37.11089807422832,37.55795806273818,36.929645327385515,37.72203269554302,38.00909731956199,37.55668356735259,37.636195150204,37.68662458145991,37.669045594055206,36.88669677171856,35.98954528104514,36.92885159980506,37.15770635288209,37.42522321175784,37.57627619616687,37.49279686668888,36.747564415447414,37.33741074055433,37.29056993126869,38.0981493643485,38.89853666815907,39.34935771999881,39.73007631627843,40.58348940266296,40.362453557085246,40.74698940012604,40.36826833197847,41.011008725035936,41.00544133922085,41.754469574429095,41.00736253429204,41.502453656401485,41.83502428326756,40.93081166036427,41.29122675023973,41.05919672548771,40.18919793283567,40.77990930713713,40.77969958772883,41.437340980861336,41.66516215307638,41.84041956812143,42.35021335398778,41.821842287667096,40.86104899505153,41.410055653657764,41.97048219665885,41.647666381672025,41.721700510475785,41.540274147409946,41.948614133521914,41.12712326832116,40.839763335417956,40.53670485178009,41.21495525771752,40.79743894003332,41.76267263805494,42.624776624608785,42.32470781356096,41.59102434292436,42.26751872478053,42.80761623661965,43.70247342158109,44.63206681236625,44.17777706915513,44.204643200617284,43.64876368129626,43.36218971153721,43.943618579767644,44.024744467344135,43.082989503163844,42.487664009444416,41.925042499322444,41.87648608349264,42.1167308059521,42.196946513839066,43.00739220390096,42.803129099775106,43.05684221396223,43.35171891702339,42.634504600893706,42.08995853411034,42.27816123329103,42.26589954318479,42.18431979557499,42.385778380557895,42.711259041912854,42.25311943562701,43.231353525072336,44.215354931075126,44.38347189640626,45.061556089669466,45.51134067727253,45.61867351317778,45.13153086369857,46.122836622875184,45.681545686908066,45.5617694943212,46.2373365284875,46.75099420314655,47.14888690272346,46.169263179413974,45.397133064921945,45.58060582540929,45.62728907400742,45.22495036153123,45.35635741148144,46.094607645180076,46.662027494981885,46.83840612415224,46.35818099603057,46.17463881056756,45.51308421231806,46.05726700089872,46.65157507220283,46.807254024315625,46.30539044039324,46.753591084852815,47.55623751319945,48.106820586603135,48.5258445199579,49.241379658225924,49.59756751032546,49.56720061413944,49.27885326510295,50.164097072090954,49.5031053815037,50.13398501416668,50.84362916415557,50.146135470829904,50.54109186632559,50.612253217957914,50.61913680424914,50.7538812183775,50.61266486579552,50.605654295533895,51.266797532793134,52.16117163281888,51.19133275933564,51.5862250784412,52.06164992460981,51.889164980035275,51.81390158459544,52.740200167521834,53.184776328038424,52.81197210494429,52.367543837521225,53.10477120988071,52.173694227356464,52.78196710674092,51.87732937885448,50.95545123703778,51.868772664573044,51.27612503571436,52.250557427760214,52.29779854323715,52.57282147556543,53.38725459901616,54.23447292111814,53.86337915947661,52.87746572261676,53.41463710274547,52.51377013185993,52.9493566560559,52.121237634681165,52.762655599508435,52.41592910140753,52.491629590280354,51.82168325595558,51.44224719097838,51.23639609478414,51.73255255445838,52.599590175785124,53.101968416478485,53.15243017254397,52.559588031843305,52.38434162456542,52.33871783781797,51.35155857540667,51.959929743781686,51.70236528059468,52.31285437988117,52.659058874472976,52.373616308905184,51.84373302292079,51.80111709283665,51.628968780860305,51.82976552890614,52.46507372846827,52.66581192519516,53.154445501975715,52.89065294433385,52.35248228581622,52.49871387798339,52.233352130744606,52.828870055265725,53.05628851056099,53.982457808218896,54.039561002515256,54.65724262269214,55.5705035883002,54.72371362661943,54.42587646422908,53.705232355277985,54.58567169541493,55.57301584817469,56.034653667826205,56.876245259307325,56.93020916962996,56.58807285409421,56.17171839531511,57.04920930694789,56.5901064039208,55.776555518154055,54.97098414134234,54.57659772178158,54.66512788506225,54.4419084363617,53.798307983670384,53.06648523872718,52.89489690773189,53.27511797519401,52.881372603122145,52.40067891217768,53.304225367028266,53.17304114671424,52.747116724494845,52.00280637387186,51.38102417252958,52.03416671603918,51.858914045616984,51.49563509924337,51.460398947354406,51.61850382713601,51.549063271377236,51.189435080159456,51.30142350215465,52.022413100581616,51.449424150865525,51.63656639819965,51.50452913250774,52.19098626077175,51.305349913891405,50.91705866949633,50.99903211835772,50.945722366217524,51.185314048081636,51.432216787245125,50.44696505367756,50.37463028775528,50.57329639792442,50.01418480183929,50.33031503856182,51.22173838643357,51.44648058526218,50.482957751490176,50.663698685821146,50.169663201551884,51.148672443348914,51.16395836044103,50.9996490534395,51.58551105950028,52.13052525697276,51.46809643320739,51.442380358465016,52.41385783907026,53.05901025142521,52.12959936354309,52.386491138953716,53.11739610135555,52.139708733186126,51.45630789641291,52.222178272437304,51.44270667852834,51.87975265271962,51.528135583736,50.784640395548195,51.22181521402672,51.538143378682435,52.495577939320356,52.30033730342984,52.062673893757164,52.282785332761705,52.31893658731133,51.618498938623816,52.111116538755596,51.19218169199303,50.70974433142692,51.50295661110431,51.99929481651634,52.469052674248815,51.992835643235594,52.02710581989959,51.58518347563222,52.22540600737557,52.767805685289204,53.65389099763706,53.55185830779374,53.2573062973097,54.08978564152494,54.47123071597889,53.828757068607956,53.563501531258225,53.88255302654579,53.69803242944181,52.8861001515761,53.677495680749416,54.512321377173066,53.654742632526904,53.09450899576768,53.75602181069553,53.45451102824882,53.89973676810041,53.01226821914315,53.398070412222296,52.78749687317759,52.841353757772595,52.357286856975406,52.95903678564355,53.36946133663878,52.73083539213985,51.98936227615923,52.917168331798166,51.943226226139814,52.49447309598327,52.298322533257306,51.71351556945592,51.460727121215314,52.45667051896453,52.64566469984129,51.67163795977831,52.54083112766966,52.64246541028842,53.20102968998253,53.92328742938116,52.99050384014845,53.60291954362765,54.069410568568856,55.06671278178692,55.67730877129361,56.49720875173807,56.442045368719846,56.35979181434959,56.87493475480005,57.849907863885164,57.72166581451893,57.75774718588218,57.6613394273445,57.310283379629254,57.574902470223606,56.99327293690294,56.247637695167214,56.79396056290716,57.68498385883868,57.48662635637447,56.75457609817386,56.09549636114389,55.50385960517451,56.16130165103823,55.543503663968295,55.75912576774135,56.12094005336985,56.65393397724256,57.512902739457786,57.44297553738579,56.71394534781575,56.878236648626626,56.53568055294454,55.687599243596196,54.76602381374687,54.10421304591,54.94515969371423,55.25436812732369,54.41734054591507,55.2401058813557,54.8848713519983,55.38561070617288,55.374643824994564,55.44185999408364,56.04177871719003,55.63738385075703,56.0079214819707,55.96667362935841,56.28589097224176,55.88174934173003,54.93836829531938,54.11351625621319,53.54710602154955,54.13253798382357,55.05329512199387,55.16192841203883,54.511624366045,54.93549714656547,54.561129461508244,54.8394909594208,55.54430177388713,56.19175785034895,57.14166454644874,57.77719387970865,57.41487946314737,57.18584248702973,57.90191873256117,58.55224414309487,59.43088426440954,59.27088854089379,58.38862816011533,58.59156476892531,57.81398048624396,57.42508135829121,57.20648230193183,57.98148012114689,57.020955295301974,57.90867890045047,57.656714173965156,56.995774099603295,56.25558404251933,55.305441215634346,56.12402872368693,55.611814183183014,54.63445647107437,55.27179835177958,55.87994403485209,55.35199949238449,55.45896349195391,54.53692805022001,54.53487800946459,55.13002722989768,55.6967571885325,54.93204561341554,55.363543558865786,55.53032322181389,56.12085524061695,56.605835426133126,56.18733743019402,56.59508144063875,56.723814653698355,56.36193442810327,56.817632044199854,55.89926876174286,56.35274566244334,55.71137429121882,56.46176689537242,56.37951065041125,56.992396156303585,57.248247634619474,57.03164345351979,56.281543551944196,56.720650046132505,57.476362789515406,56.713362119626254,57.263503978960216,56.77884996496141,56.382606748025864,56.46768552111462,56.34298833226785,56.64828056888655,56.58693328453228,55.76255037821829,56.11868970794603,56.70758327329531,57.58675562078133,56.72399352211505,56.03085733996704,55.699134127702564,55.025854128878564,55.15606975322589,55.12884662114084,54.62539271498099,54.84954846277833,55.17302065109834,54.99613117147237,55.155058081261814,55.92744851158932,56.76998242735863,57.69592213211581,57.91845340328291,56.9274449525401,56.63594642840326,56.642000551335514,56.87530146446079,56.275430710520595,55.61532405298203,55.721573773771524,55.71809908654541,55.882262404076755,55.414303780999035,55.744085126090795,54.86089477641508,55.179640820249915,54.55208036256954,54.291996967978776,54.57611210597679,54.7957415683195,54.65166350128129,54.542410283349454,54.47849996201694,53.73576185340062,54.18751602526754,55.082479601260275,54.1059962650761,54.98968885978684,55.780605564359576,54.86591775994748,54.91777373664081,55.60840363893658,55.587028924841434,56.28713986556977,56.934471178334206,55.98279917612672,56.05574763379991,56.94289923738688,56.705071781761944,55.74073207145557,55.928724377416074,55.99945176998153,56.02853519935161,56.73561012558639,55.988483843859285,56.27588110556826,55.895286828279495,55.50268744304776,54.731174329761416,55.450644860975444,54.50636268546805,54.605088903103024,54.541907782666385,53.972974558826536,54.776122386567295,54.52861043578014,55.47944518271834,54.58673453517258,54.73556650104001,55.30174729647115,55.49470956902951,54.715664946008474,55.3626186363399,56.058325439691544,55.156548952218145,55.44260023906827,55.944928471464664,56.34394770860672,56.30926814582199,56.9343505515717,57.10445592273027,56.625995219219476,56.57643689122051,56.43486480694264,56.487374409567565,55.721325423102826,55.57196305412799,55.967012158129364,55.162437156774104,55.142601086292416,55.35963294748217,54.64608975313604,55.08253526221961,54.38927865633741,55.2336214883253,54.73669498693198,55.44057002151385,56.07988843880594,55.412485785316676,55.63705234602094,54.647135083097965,53.8858032617718,53.00290211569518,52.393093509133905,52.03891615290195,51.170649683102965,50.887220311909914,51.269999070093036,50.84703935775906,51.65189472632483,51.013221989851445,51.108698551077396,50.74419768061489,51.54329204186797,51.35163059923798,51.33518724422902,51.83196326158941,51.966800838243216,51.20441873976961,50.802925997413695,50.17125325137749,51.07655057217926,51.659555723425,52.65224143629894,52.57648666435853,52.5282811447978,52.44312204606831,52.20033331308514,52.774798332713544,53.1294136964716,53.4564969278872,53.98028831696138,53.84468551026657,54.56417959742248,54.002095312811434,53.45877727260813,53.95155964931473,53.654185640625656,53.00347466301173,52.94777177507058,53.001795722637326,53.49547113943845,53.69592431932688,54.411422616336495,54.842277543619275,55.203057719860226,55.07952354522422,55.436067638453096,55.21507956366986,55.808915589004755,56.42728734575212,55.77670024894178,56.202550421468914,55.4914678549394,55.35108898859471,55.440120353829116,56.3374316226691,56.16282759932801,55.51037245802581,55.54875851701945,56.427026780322194,55.67238200083375,55.849094891920686,56.47776820277795,56.98256817040965,57.826380386482924,57.89761834265664,57.11869601532817,57.538924305699766,56.84154910873622,57.02886649174616,56.362476950977,56.737819569185376,56.350259704981,56.50901765935123,55.74091252498329,56.534534864127636,57.25562809873372,57.925335376057774,58.83103532344103,58.40374460583553,57.641996916383505,58.55513851111755,59.38323757098988,59.12293479917571,58.812008298933506,57.977890990208834,57.08233264507726,57.32300775824115,57.84550776844844,57.865070411004126,57.78556736186147,58.7524044578895,58.040076481644064,58.6058343378827,58.69606806850061,58.56183082656935,59.510893823578954,59.37394991982728,58.43664912972599,58.77131463820115,58.37878293776885,58.74938130239025,59.1483902502805,58.49110785406083,59.186813450884074,59.64170031202957,59.50702501414344,58.53277242742479,58.32290132949129,58.12440235633403,58.212064458057284,57.43929254868999,57.599824629724026,57.635206155944616,57.18523913109675,57.43639617739245,57.44877681788057,56.46299752732739,55.97104361979291,55.718229016754776,55.341996853705496,54.41819687653333,53.74606197467074,53.384323839098215,53.582870764657855,52.6047011106275,51.91674258233979,52.14057848136872,52.364913071040064,52.05222916789353,52.262532498687506,52.509625292383134,52.76579970214516,52.47134215477854,53.15480842767283,53.947068739216775,54.75839177519083,54.09332646988332,53.10272937314585,53.7296797093004,54.64943840401247,54.21509917359799,53.871307196095586,52.88098930474371,52.037542323581874,51.58620021212846,50.78956532943994,50.049003867898136,50.8128873296082,49.99931881483644,49.72574234753847,50.20479297079146,51.06806005630642,50.16483749356121,50.94908904610202,50.90078009944409,50.676085928920656,50.283309769351035,49.6809236574918,49.371868674177676,50.28912061918527,50.76410858659074,49.83616477949545,49.480491750407964,49.57779431575909,49.107536321971565,49.63349418435246,50.30425211787224,49.44708635099232,48.636817320715636,48.16729346802458,48.09953531390056,48.73977894987911,48.99033097969368,49.71817217161879,49.32545536244288,49.61063369549811,49.438378394115716,49.59876310499385,49.295614052098244,50.14265150250867,49.87634591991082,50.25664979824796,49.47383206663653,49.700146176852286,50.443103009369224,50.112473524175584,50.35167085379362,50.0610462767072,49.323892200831324,49.3658790984191,48.39363491209224,48.2751944581978,49.086024914868176,49.4210980059579,50.18938237242401,50.91228682780638,50.09179957956076,49.35487501975149,49.369307674467564,48.493172033224255,47.92595780454576,48.15034069260582,48.65730465762317,48.08334539132193,47.28081559948623,48.16655173478648,48.3647681530565,49.224558571819216,49.37140433304012,49.5482868431136,50.03389366576448,50.475273612421006,50.62050428474322,51.114091326948255,50.68583735404536,51.20516760554165,51.83397067524493,51.74472722969949,52.56969537353143,52.536969563458115,53.01074571534991,52.889300571754575,52.4139387360774,52.4004607652314,51.41009452100843,52.19266934879124,52.19261984387413,51.26905274018645,51.48161054356024,52.37340705189854,52.09225238952786,52.992699151393026,52.28806392010301,52.07978665782139,51.41014258842915,51.7567854677327,52.70681244460866,51.76956566143781,50.88695591688156,51.21266366029158,51.39144533127546,50.54036011779681,50.9978817505762,50.33587721455842,50.53617815487087,49.97353625064716,50.5491325315088,50.29420547140762,50.2836881945841,50.4617972811684,50.79036702308804,51.18865194451064,52.165238244924694,51.89366395864636,51.05020291963592,50.2955037727952,50.2426934200339,49.99542068736628,50.85911450814456,51.301062275189906,51.25932843470946,51.446475768927485,51.29713815776631,50.51775451749563,50.827312018256634,51.570780952461064,51.688542269635946,52.317170965485275,52.64664667705074,53.196148371789604,53.852084395475686,54.78037556167692,54.401555514428765,55.1208180654794,54.972785176709294,54.6445521642454,54.42972943652421,53.556821861770004,53.577588045503944,52.77780244871974,52.65405940823257,53.22726924857125,52.32353915926069,51.75344595266506,51.64474795944989,51.45606733253226,50.50104392366484,50.16472683195025,49.30821655271575,48.945265432819724,49.8798969918862,49.295068280771375,49.49346247268841,50.072115793824196,50.58449261216447,50.225870062131435,49.326675893273205,49.943977194838226,49.17813448328525,49.168805309105664,49.048012589104474,48.115112415049225,48.014180256053805,47.48037585942075,48.09545987006277,47.871621317230165,48.12927950080484,47.39743839437142,47.48032729467377,47.894180639181286,47.339083530474454,47.73265162156895,48.2748674377799,48.488157666288316,48.56862087873742,48.95135072525591,49.37255468219519,49.44461382040754,49.13344639353454,50.05399206280708,49.51351973647252,48.59343021828681,47.675681337248534,48.05240178434178,48.743105207104236,48.08789203874767,48.48202875582501,48.99537821626291,49.89524741144851,48.9896264821291,48.29997487133369,48.71101886127144,49.20853801770136,49.127672580536455,48.24101322283968,48.87728061340749,48.25792659819126,48.61200668802485,48.66097579197958,49.03408023994416,48.07841110276058,48.039954650681466,48.274296078365296,48.96687859436497,49.04058452649042,48.78758142516017,49.05310503579676,48.50410362705588,47.97351897973567,47.86377261066809,47.748881047125906,47.585523459129035,47.44216855848208,48.19203027756885,47.84949505049735,47.76779573597014,48.57837354531512,47.593863832298666,48.50686770584434,48.49216302810237,48.67778177233413,47.90703184856102,48.270571677945554,47.63856871891767,47.62626489112154,47.242506047245115,46.880314484238625,47.71754247462377,47.050178778357804,46.72319087712094,45.968341203872114,46.015726055949926,46.74318138509989,47.38163595087826,46.906968493480235,46.4331372785382,45.77287143282592,45.06915290327743,45.28806751174852,44.55733651900664,44.54106051241979,45.22451988281682,45.78627871768549,46.07721018930897,45.4550616517663,44.911336046643555,44.03259284514934,43.80444680387154,44.31581650907174,43.94785077217966,44.821561788674444,45.46041507879272,45.1820395803079,44.820046961307526,44.37866607680917,44.60844024643302,44.24469933984801,44.41572398226708,43.55897398479283,43.85896458150819,43.58318651467562,43.77187191089615,42.93639972805977,42.86730984924361,42.57114547397941,42.01229358185083,41.84314120514318,42.05506506608799,41.632241054903716,41.26924026198685,40.36097412277013,40.216003318782896,39.7800774499774,38.847701205872,38.981732245069,38.618888252880424,38.2020878395997,37.305975168943405,36.62331418553367,37.00468648551032,36.20123508851975,36.678042254410684,36.42785553727299,35.543923860415816,35.15946903266013,35.011997340247035,35.72058321535587,35.761765234172344,35.160870055202395,34.42578792478889,33.90694234101102,34.716862064786255,34.74837610311806,33.7650690684095,34.09482166962698,34.35967853013426,34.05407756846398,34.18679528217763,34.758705978281796,33.863177684135735,33.43006783630699,32.4625521725975,32.54330221377313,32.80164697160944,32.25547447381541,31.914325681515038,32.32906330097467,33.14390058349818,32.96669899811968,32.623537585139275,33.22789483051747,32.68724407348782,32.768551288638264,33.76041145902127,33.860446352977306,32.994463136419654,33.01516054244712,32.54352481756359,32.5734263448976,32.70117120910436,32.16682461230084,32.977216286119074,33.58803528314456,32.99797337735072,32.71545860962942,33.53166148858145,32.84569074166939,33.208021404221654,33.565991514362395,32.65641111321747,32.39476388739422,31.534853920340538,30.723507836461067,31.540300524327904,32.46621594345197,31.801287260837853,31.204956375528127,30.987890251446515,30.568838310893625,29.589841132517904,29.31032010819763,30.012938793282956,30.030008886940777,29.057496887166053,28.844327475875616,28.60092554986477,28.733026951085776,28.66866719769314,28.51548319356516,28.38129274128005,28.236916493158787,27.802600732073188,28.741079066414386,29.42422599112615,28.735288592986763,29.236997857689857,29.415252471808344,29.347257708664984,29.740408822894096,28.811102028936148,28.58807520614937,28.899119931738824,29.14742974145338,29.763680331408978,30.260814589448273,30.031131935771555,29.253040857147425,29.472012950107455,29.061199097894132,29.241589037235826,29.873343389946967,29.292935616802424,29.859460541047156,30.19394497340545,29.613262945320457,30.164503536187112,29.24501709919423,28.538277638610452,28.395801770035177,27.959324426949024,27.189832236152142,27.765107448212802,28.06634254520759,28.782776680309325,28.555088865570724,29.464489140547812,30.096307006664574,29.22925682924688,29.745387946721166,29.881682205945253,30.71289186179638,30.361820922698826,29.704088245052844,29.287256631068885,28.649316663388163,28.35873763076961,28.145040926989168,27.822639655787498,28.10972027759999,28.99799706134945,29.22729177167639,29.19832703936845,28.897036747075617,28.865459804423153,28.051224045921117,27.29546752385795,27.50098028127104,27.30877423612401,28.15719919418916,28.7593830130063,29.12800870789215,28.84636888280511,28.48709223791957,28.249517702497542,27.806049355771393,28.804493790958077,28.63074032543227,28.16909811226651,28.01349770417437,28.537830180022866,27.78096392005682,27.64527781214565,28.443455808330327,29.387586913071573,28.97961659077555,28.244991697836667,28.09323796676472,28.485273528378457,28.500557025894523,29.429104713723063,29.216578924562782,29.674492122605443,30.565935214981437,31.214013409335166,31.61425456078723,30.750944788567722,31.551291483920068,31.049778384156525,30.885710183531046,30.962606073822826,31.644859351217747,31.921651533339173,31.889995056204498,32.08302950439975,31.22136198170483,31.693905282765627,30.81429719598964,31.584362748079002,31.153849322348833,30.906671558506787,31.38152411254123,31.00000850437209,30.830685744527727,29.865558133926243,29.69966883538291,29.74053447600454,29.44877707120031,29.02792144846171,29.668971989303827,28.93958907900378,29.726427420042455,28.87269589677453,28.594715498387814,28.041941025760025,27.52939568599686,27.82784771034494,28.534516853280365,28.23519371729344,28.63819873565808,29.24919551424682,29.098247383721173,28.123735157307237,27.69256518781185,28.429202798288316,27.671296427957714,27.511353633832186,27.444958358071744,28.006535480264574,28.574295627418905,29.433222100138664,29.570368708111346,30.305272473953664,29.464392724912614,28.91266510076821,29.862044694367796,29.7699540797621,29.515099236741662,29.321344036143273,28.517194777261466,28.38364428654313,27.556212024297565,27.129463085439056,27.305965662002563,27.27689153701067,26.29329667473212,26.04964106855914,26.757884916383773,27.376421780791134,26.831780683249235,25.977060093078762,25.44157648878172,25.322671951260418,25.846656983252615,26.50843529170379,25.830648181494325,25.871283429209143,26.310743810608983,26.600708196870983,25.870209619402885,25.37943161930889,25.126596979331225,25.80981058999896,26.159080072306097,25.953705716412514,25.490371643565595,26.053078037686646,25.45905583910644,24.672519825864583,25.085186664015055,25.913509129546583,25.876269903965294,26.717025530990213,25.986300292424858,26.177440478932112,26.00658549135551,25.326135622803122,25.60285616107285,24.939414063002914,24.925001008436084,25.840341673698276,25.10944241285324,25.373373886104673,25.78197376523167,25.498930680565536,24.985999865457416,25.506367997266352,25.186407224740833,24.401314733549953,24.290278053376824,24.66863801004365,24.516832280904055,24.035453631542623,23.517582068685442,24.17408071598038,23.32705677766353,22.48562354268506,22.06142739346251,22.958400030154735,22.265729807317257,22.396388398949057,22.71482356870547,21.750224207527936,21.482331028673798,20.866977155208588,21.710865216329694,21.547235901933163,22.366614447440952,22.25054493267089,22.66442773770541,22.53071208205074,22.09665330313146,22.28726447140798,23.202761822380126,23.745029592420906,23.405737937428057,23.3436831808649,23.017940033692867,22.246238867286593,21.99779052939266,22.480690131895244,22.016214585397393,22.462937953416258,22.510585942771286,21.850392463617027,22.422114833258092,22.40646999469027,22.85740214586258,23.042216998990625,22.743427742738277,23.076804470736533,23.131188371684402,24.067706731148064,23.673173322807997,23.940984634682536,24.37351020751521,23.63538460433483,23.309824283700436,23.01677009789273,22.44186315126717,23.0145982070826,23.534525509458035,22.617710005491972,22.699435902759433,22.39662856189534,23.020701958797872,22.67250743182376,21.853135687764734,21.87699022423476,21.208285085391253,21.55421959189698,21.165203246753663,21.214825504925102,21.226004797033966,20.71897708112374,21.46546390093863,21.528447788674384,21.02588501619175,20.969741098582745,20.516505116596818,19.810229565482587,20.594068338163197,20.193007642868906,20.766130251344293,21.19363159639761,21.970296943560243,21.17155118472874,21.005940924864262,21.90968054626137,21.437850478105247,22.112415727693588,22.881046209018677,22.212162807118148,22.979538511950523,23.396705305669457,24.131532619707286,24.15997452661395,24.434939187485725,23.443884644191712,24.412767332512885,24.06793988449499,23.21100202575326,22.416484122164547,22.7903903843835,23.728473820257932,24.129756272304803,24.960171923041344,24.274147933349013,23.708453382365406,23.67434787331149,23.596172207966447,23.427647265139967,22.711484384257346,22.9291983502917,23.843281376175582,23.117356299888343,22.195867681875825,21.620439101476222,22.51474900217727,22.658777336589992,23.196569830179214,22.274966650176793,21.33487341320142,20.487212345935404,20.320337960030884,19.504250845406204,19.674889440648258,19.045597897376865,18.23550281440839,18.528094596229494,18.94366486929357,19.655345279257745,19.078540893737227,18.550167322158813,19.50592001900077,18.739656894933432,17.995378623716533,17.846186288632452,17.528791449498385,17.079734072089195,16.34979518922046,16.247542162425816,16.03290657280013,15.895195163786411,15.652077042497694,15.372405995614827,14.810662490781397,14.212822071742266,14.7609918047674,15.450443571899086,16.07245391095057,15.785898458212614,16.171413218602538,17.080353084485978,16.44167290860787,17.069843432866037,16.52982015395537,16.944877131376415,17.080406537279487,16.19239570433274,16.381238307338208,16.13365642959252,16.386940533760935,16.396877707913518,16.52447734354064,15.881576200015843,16.478023282717913,17.175735629629344,18.158135627862066,17.44130496820435,18.228578782640398,19.12153971614316,19.12045402172953,20.092422702815384,19.661705960985273,18.701659178826958,17.931324888020754,17.504620883148164,17.13737258128822,17.56238231761381,18.275684469845146,18.041958199813962,18.92139348341152,19.673707625828683,20.33292353292927,20.7685923371464,21.3109410549514,22.136183426715434,21.22697384469211,21.791379346512258,20.985600479878485,21.473146207630634,21.465719854459167,21.868948984425515,22.41244546789676,21.856781294569373,22.497371893841773,21.75735684717074,21.931532867252827,21.662534510716796,21.105003912001848,20.485076976008713,20.26799737289548,19.729041607584804,20.273088951129466,19.826077029109,19.09379263408482,19.283660186920315,18.660820204764605,19.06575475912541,18.151451878715307,18.93057764461264,18.9012410081923,19.517094885464758,18.814176579006016,18.086233808659017,17.207419380545616,17.80614101467654,18.28317734831944,17.379086464177817,18.338228734210134,18.246076622977853,18.00766940554604,17.38283077441156,18.270469091366976,18.458455780521035,18.834678331390023,18.56407083198428,19.46096809161827,19.82312750071287,20.2478179265745,20.507314622867852,20.793280160054564,21.04069648263976,20.229619740042835,20.010435049887747,19.066357207484543,19.331473008263856,19.895772057119757,18.9009713511914,19.702819385565817,19.534087522421032,19.515773118007928,18.76513956906274,18.3192720557563,18.602837029844522,19.078341637272388,18.512808778788894,19.091041955631226,19.679699811618775,20.149224006105214,20.700013765133917,21.31314847804606,21.963705195579678,22.319967136718333,22.04411057010293,22.538074317388237,22.994575322140008,23.230924295261502,24.083082332275808,23.565880333073437,24.45815925905481,24.695503086782992,24.016459790524095,24.029510817024857,23.203027696348727,22.78746217628941,23.21658243238926,24.020250257570297,23.776204168330878,24.589223201852292,25.18683380447328,25.211312969215214,25.910420786123723,25.456484084483236,24.51058282610029,24.157099418342113,24.20611075963825,24.931605412159115,25.480165065731853,24.593898036517203,25.07539045345038,24.18761497689411,24.750116893090308,23.931043529417366,24.730506371706724,25.05320988409221,24.764747301116586,25.474062607157975,26.086879612412304,26.07063590409234,26.409454393200576,26.55041551357135,26.62179300468415,27.248645472805947,27.73600227944553,26.950358036439866,26.149564679712057,25.928548428229988,25.767190700396895,25.835886921267956,25.948932077735662,25.34992336202413,24.728554642759264,24.949439632240683,24.333402364049107,23.382044410333037,22.5538418777287,23.108882474713027,23.769584955181926,23.232683673501015,23.496945146936923,23.675742491148412,23.77083828486502,23.55196689069271,23.588099119253457,23.79806254990399,23.092772379517555,22.478477654978633,21.56724407756701,21.405650855973363,20.725035332608968,20.969532860442996,21.033521263394505,20.428194246720523,21.397829927504063,20.920393083244562,20.464334848802537,20.713657630607486,21.39552584802732,21.16066383337602,20.938566245138645,21.39578311610967,20.75926868803799,20.339562038425356,20.81728481175378,21.318401398602873,21.40790898911655,20.876657786779106,20.706298307981342,20.70722206030041,20.323628827929497,20.780661440920085,21.092647730838507,21.644358878489584,21.513425092212856,20.9952220893465,20.359995901584625,20.597794379573315,21.22375211538747,21.6967439847067,20.753921545576304,21.592185496352613,21.02106056502089,21.080413007643074,21.26622598292306,20.765909403096884,21.089153257664293,21.822732862085104,21.3793204263784,21.16361401695758,21.735472158994526,20.942901018075645,21.472383103799075,21.423786487895995,21.000227129086852,21.14612200250849,20.54752841964364,20.692571501713246,21.625459098722786,22.06129410210997,21.33369448641315,21.49039039760828,20.53800259483978,19.983054512180388,19.150753194466233,19.111911050975323,18.836930675897747,18.610496568027884,18.75526903150603,18.99245551833883,18.900971135590225,19.621838205959648,19.284431146923453,18.827897880692035,18.49343926180154,19.048654223326594,19.90716663794592,20.121867851819843,19.80878404621035,19.23582577658817,19.563740863464773,19.755704688839614,18.999475927557796,18.315701483748853,17.9847130686976,17.71155792521313,17.904981075320393,18.80518469819799,19.673619077540934,20.393707846757025,20.29174431692809,19.403150671627373,18.646264925599098,19.16855377657339,18.508360439445823,18.618884488008916,19.107228345237672,19.26629512477666,19.325186628848314,18.529201292432845,18.178612608928233,17.29674920765683,17.172100806143135,16.90554808266461,17.90223691938445,17.83039724221453,17.37100089294836,17.427251097280532,16.605742233339697,17.502051001880318,16.911789250560105,17.667934881988913,17.69799667224288,17.001984442584217,16.871864249464124,17.31431533768773,16.50976734654978,17.222011710051447,17.649292313028127,18.021412696689367,17.395754972938448,18.34916861867532,18.107386492192745,17.511284669861197,18.44425864610821,19.097541396971792,19.483847031835467,18.513648237567395,18.82431000750512,19.35250164428726,18.666663580574095,18.347196655813605,17.652957184240222,17.586307387799025,17.36119511211291,17.98612173786387,18.109117007814348,17.502939531579614,17.900035617873073,17.032751030288637,17.46948037063703,18.247880786191672,18.82462933473289,19.306962748989463,20.111077358946204,19.681794920936227,20.54532677307725,21.377327161841094,21.183696914464235,21.19294835673645,20.373601573053747,19.660878580994904,20.316376932431012,21.074057036079466,21.97933689504862,21.047833130694926,20.75576042290777,21.02271484863013,20.937860675621778,21.216910157818347,20.847147822845727,20.49202094692737,20.723195598926395,21.096429910045117,21.403745380230248,21.32663194835186,22.03911636257544,21.164555240422487,21.83933421270922,21.001067276578397,21.136353188194335,21.333209032658488,21.572043414227664,21.37045064382255,21.889685201924294,22.785174855031073,23.229858531616628,22.963492321781814,23.92377538746223,24.15266563463956,24.37890686839819,23.6881781113334,23.462981660384685,23.03821681579575,22.73777980171144,23.329159496817738,23.81153717264533,23.375715451315045,23.594994052313268,23.017179306130856,23.045041325036436,24.012593537569046,23.993384123779833,24.770303333178163,25.681362194009125,26.17739207763225,25.895323786418885,26.28487129928544,25.969959578942508,26.703299701679498,27.023338518105447,27.56324593303725,26.864424916449934,26.258043277543038,26.179238906595856,26.996695544105023,26.933554897084832,26.391926418058574,26.51188344368711,26.538699167780578,26.454311915207654,25.964151500258595,26.598018765915185,26.758169727399945,25.819467833731323,26.80094528151676,27.549489745870233,27.717471232637763,27.61318773170933,28.41813942976296,27.87690741289407,28.310608444735408,28.95939671434462,28.65800874400884,28.849746487569064,28.547628752421588,28.678801706060767,28.09821667941287,28.85023477161303,29.092277801129967,29.360437349881977,29.72954616462812,29.96613823529333,30.251828129403293,31.196061624679714,30.980000738520175,31.506048464216292,32.154858373105526,31.87176264449954,31.015556079801172,30.43599819112569,31.18910575285554,30.286209865938872,29.93183343159035,30.22624674718827,30.918856429867446,30.224914230871946,30.114310189150274,29.796326832845807,30.60779896331951,31.36411021789536,32.31980894040316,31.456881707999855,31.978942174464464,31.05107555538416,30.41908469144255,29.535415895748883,30.039331879932433,29.71415567304939,29.747311418876052,28.981051788199693,29.018431454431266,29.15294371638447,28.90854291105643,29.007558978162706,28.769395576324314,29.20744230831042,29.02608468523249,29.799766027834266,29.520975013729185,29.308725188020617,30.204542697407305,31.020243119448423,31.753004272002727,32.04251880804077,31.881729845888913,32.68145769601688,33.55339334625751,34.087789970915765,33.66476808860898,34.003262704238296,34.11020681262016,34.334966614842415,33.61419799318537,34.48328752303496,35.142249843105674,35.532677713781595,34.76764203188941,34.5474398387596,35.46061471616849,35.138053509406745,35.6430371645838,36.03044813359156,36.864489243831486,36.47717351419851,36.737149842083454,36.698756373953074,37.63912801630795,38.29901162767783,38.78628201736137,39.57003714190796,38.84809359442443,38.85210263123736,38.593820861540735,37.995995269622654,37.925740788225085,37.15805650874972,36.82596648577601,37.82497377227992,38.660248022992164,37.78446025867015,38.09139633830637,38.85451793530956,39.5004451344721,40.051733877975494,39.33274597954005,39.923762667458504,40.25296680117026,39.851351810153574,39.451604661066085,38.59223367506638,38.68723505269736,38.65065331291407,38.74288561474532,38.233886869158596,39.11539840232581,39.95250060688704,40.832588446792215,40.97009133081883,40.60860875993967,39.957730843219906,39.55986963585019,39.335955473128706,40.26716513605788,40.72452556109056,41.07768272655085,40.56358290091157,40.054143550340086,39.596746939234436,38.773924050852656,39.66821388853714,38.80886003328487,38.64301219815388,38.88808507472277,39.772462737280875,40.47354778414592,41.30070842895657,42.07808668538928,41.453245628625154,41.50748617993668,40.58319821301848,40.311710719019175,39.794196624774486,40.323891792446375,40.57713155262172,39.64058109000325,38.69361033849418,39.55441101687029,39.02171206008643,39.761465101502836,38.811591177247465,38.49232678255066,38.20803109975532,37.6034100651741,36.63269907748327,37.540985777042806,37.13202475197613,36.3754488741979,35.72060072282329,36.02699168585241,35.252387223765254,35.42254139436409,34.9183121076785,33.98132805060595,34.980570522136986,34.01182797644287,34.982511651702225,35.33160313544795,36.2478591222316,35.77519822260365,35.22083845967427,35.01025838777423,34.15419845934957,34.46837732475251,34.22621960565448,34.021909430623055,34.32513281237334,33.53369537414983,32.95113701606169,33.46209395490587,33.954752535093576,33.19656383385882,32.824775183573365,33.27222667681053,32.590240152552724,32.32033100025728,32.757276222109795,33.40679390216246,32.54130871780217,31.887894209008664,31.9426919776015,32.19946324871853,31.648745970334858,31.602281081024557,32.1206317958422,32.743770468980074,32.42022362211719,32.09989170078188,32.64023921452463,33.230144726578146,34.03763525187969,34.20729856658727,34.58703713025898,35.5334361102432,36.16222903970629,36.73475164081901,36.075519951526076,36.11723137134686,35.70638339454308,36.033374880906194,35.714064728002995,36.367419755551964,36.7686717947945,37.499644693452865,36.5539200687781,35.84033157443628,36.05868408130482,35.39318267814815,35.44477888336405,34.86689770966768,35.04720030492172,35.92187699396163,36.51656063646078,35.87496526353061,36.499473293311894,35.75034061120823,35.37725434405729,35.65609694644809,36.20443178480491,35.29307909216732,34.49685334786773,34.424702405463904,33.97855694312602,33.04357192199677,33.01588694052771,33.93284923117608,33.70269489008933,34.003940367139876,34.30928549543023,34.56842942163348,34.11387662682682,34.239734407979995,35.21712781628594,35.787770302034914,35.513480267021805,34.548572595696896,35.01676387665793,34.356352305505425,34.751749995630234,34.637566150631756,34.65649478510022,34.46697391057387,35.44733828352764,36.008368883281946,35.69954271521419,35.28656471846625,35.248584361281246,35.107106886804104,35.345233800821006,34.73170040966943,35.19202439393848,34.74011865630746,34.12280414998531,33.648485084064305,34.097904891707,33.98104254575446,33.61912549426779,33.048965935595334,33.359854109585285,32.94086202327162,33.817886671982706,34.252720824908465,34.80855135014281,34.26243494870141,35.0665603838861,34.124064384028316,34.941080591175705,34.986325623467565,34.32967013772577,34.48876418592408,35.392063443083316,34.899148509372026,34.60962797468528,33.92085347417742,34.6547814947553,35.40957368398085,36.40703230770305,36.84845003206283,36.65443271258846,37.527107467874885,37.03131475439295,38.002110621426255,37.15198053792119,36.33175335312262,35.99356454797089,36.118371817748994,36.90775688132271,36.60957773588598,37.31303820339963,37.49564521340653,36.98796616541222,37.22614761535078,36.5724705317989,37.40986899472773,38.20863959565759,37.66664698906243,37.31357665779069,37.33513296721503,36.8350538671948,35.857788485940546,35.50402406649664,35.26955047342926,34.6401052265428,35.08769815787673,35.138028227258474,35.09399628313258,34.78566863434389,34.380466361995786,33.51467712735757,34.22721310099587,34.80424716882408,34.54276781110093,34.89944295026362,34.53686872217804,35.48626216687262,34.65032856725156,33.78582558874041,33.776503551751375,33.72132196603343,33.41282180463895,32.43649148521945,33.24336891062558,33.143962842877954,33.10878704208881,33.08927209256217,32.42427822435275,31.528533776756376,30.76031766831875,31.062403111252934,32.01254608668387,31.586255435366184,32.22500073071569,32.548942343797535,32.167664389126,32.91931029269472,33.148332740180194,33.04420897178352,33.40080901887268,33.78491860860959,33.145216754172,32.145456510130316,32.10567219881341,32.07918510772288,32.96013939194381,32.52798027358949,33.30501322261989,34.26242123171687,34.01582252094522,33.960900886915624,33.38852583989501,33.419578983448446,33.343343143351376,33.80948786996305,34.028816148173064,33.60305915167555,32.79927278868854,33.11081966618076,32.435246757697314,33.398362098727375,34.1260825493373,33.96067393478006,33.029906071256846,32.440208515618,32.11821964615956,31.734360504429787,31.740369332488626,31.71058163093403,31.38622841378674,32.342155404854566,33.26459321239963,32.76020876597613,32.31051128683612,32.74995466088876,33.584434227552265,34.145516423974186,33.14587645418942,33.506455689668655,33.6881570070982,33.81895405147225,33.84657308785245,34.30125858820975,33.76808307832107,33.85542419785634,34.11846892349422,34.56248564878479,33.76681148959324,32.947028927505016,32.477214366197586,33.22678484302014,33.316163073759526,33.76991744013503,33.72878272086382,34.155446484684944,34.17573067126796,34.837674617767334,35.52199582476169,35.83252504142001,34.867154899053276,35.76014334755018,36.24803380994126,37.18465523561463,36.853132334537804,37.18905423860997,36.23427702812478,37.11876182537526,36.55092665972188,37.51442577736452,38.10158230178058,37.76761397952214,37.58972645131871,38.431288013700396,39.10964931361377,40.0706457933411,40.42600653786212,39.87779087200761,39.38422756548971,39.51752931950614,40.0975105301477,39.42379193985835,40.40737923420966,41.2015489730984,40.654911728110164,40.4427255988121,39.96923640649766,40.60747057618573,40.59242003876716,41.26020926423371,41.84087996324524,41.142616528552026,40.470704479608685,40.88617517473176,41.101617354433984,41.8259778781794,41.4384050257504,40.88777428306639,39.90201848326251,39.129225636832416,38.366271724924445,38.41186481015757,37.57276153424755,37.19132167426869,36.30352081451565,36.292223748750985,35.86390968458727,34.937273691874,35.722191653680056,34.75645790528506,35.00363022182137,34.21529718441889,33.25316821085289,32.256452097091824,31.294631436932832,30.406213209964335,31.042477031238377,30.74817181332037,29.927006287965924,30.733421723823994,31.177955000195652,32.13139581726864,31.755806567147374,32.365137815941125,32.62158801686019,31.682244363240898,31.828506170772016,32.01908889878541,31.347459448501468,31.65948307653889,31.456633233465254,31.192096646875143,30.587336051743478,29.78094118507579,28.9367499332875,29.72089031059295,28.839609073009342,29.209672259632498,29.13344708038494,28.52862376952544,28.921059167012572,28.466719286050647,28.021450363565236,28.90260402811691,28.558509135618806,28.59958240017295,29.110525322612375,28.510022337082773,29.351136240176857,28.91627283859998,29.00610019546002,28.728435693774372,28.437648264691234,29.41338906576857,30.090418511535972,30.20067695574835,30.631536869797856,31.451178846880794,31.18249252391979,32.046000075526536,31.42982384003699,32.27288188133389,31.318006329238415,31.845019184052944,31.385171126574278,32.04632370080799,33.04075778182596,33.617976841982454,33.63235386367887,32.95870139217004,32.991746206302196,32.23862233804539,32.31109909014776,32.709243167657405,32.2979816547595,33.066165410447866,33.01152619998902,33.407294309698045,33.14321822905913,32.91261117858812,32.51736124698073,31.876338098198175,31.663805440533906,31.59054607246071,30.96890132687986,31.967068263329566,31.25141971744597,31.657742865383625,32.16988551430404,32.60390659747645,32.840794927440584,33.03569916076958,33.40778630087152,32.93079185532406,33.59216232597828,34.51363981049508,34.101277716923505,33.82826770097017,33.868775327689946,34.23909452371299,34.29760898044333,34.07748764101416,33.769203286617994,33.723458709195256,33.265917154960334,33.40590344602242,33.36173798283562,32.98160352371633,32.64393309643492,32.34179423749447,32.27206392772496,31.866418455261737,32.37900324584916,32.208608666900545,33.09088988089934,32.87853204132989,31.91728291613981,32.40061172563583,33.15555245708674,33.493040909059346,33.80329149309546,32.854550349060446,32.14015546441078,31.588057786226273,31.254316297359765,31.794131071772426,31.621518628671765,31.443972876295447,31.166119093075395,30.259282915387303,29.777618954889476,29.650167969055474,29.26999893365428,28.912045157980174,28.330978233832866,27.38101566163823,27.18164712470025,27.44677495956421,27.02092395396903,26.31360896350816,27.21891544526443,28.13981332629919,28.051251818891615,27.66698303865269,27.278725842013955,27.498868241440505,28.06471360195428,27.10279238084331,27.310424939263612,28.03254240890965,28.2612222940661,29.046641937457025,28.94902092218399,29.075313474982977,28.917384570464492,28.233392164111137,28.07683100225404,27.227592883631587,27.1187584255822,27.843452950473875,27.681832626927644,26.745891311205924,27.06277832854539,26.858685022220016,27.675428800284863,27.128205666784197,28.09355542762205,27.411608396098018,27.91731824632734,27.079661384690553,27.066519390325993,26.799400999676436,26.7290335027501,25.749163397587836,26.289315632078797,26.741314290557057,25.803435364738107,26.49762342358008,26.261232615448534,27.00137130357325,27.819013752043247,28.138862766791135,28.409137312788516,28.8155453116633,29.660342756658792,30.63460438931361,30.147594162728637,29.326636991929263,30.01917604636401,29.677741681225598,30.195512560661882,29.967876232694834,30.804575969465077,30.383021332789212,31.17615970177576,32.12440001918003,31.916613537818193,31.058263496961445,31.74756065569818,31.589909973088652,31.04209199734032,31.24858335359022,31.817630789708346,32.20379820559174,31.406103609595448,30.866899212356657,31.419052589684725,31.88810385763645,32.263877243734896,31.576179982163012,32.028970641084015,31.25935967825353,31.16101170051843,31.695131501182914,30.97425876138732,31.567914890125394,31.3466700296849,31.251741434447467,30.636828139889985,31.44208363024518,30.96671860292554,30.781922433525324,31.68324332917109,31.05322261666879,31.858441800810397,32.12883047014475,31.89562705345452,31.794411913491786,32.43978904513642,32.440676503349096,33.277304084040225,32.66676705842838,32.91089593898505,33.80451198248193,33.17618337459862,32.98359913099557,33.08283879328519,33.80736528383568,33.81311996933073,33.6786543475464,33.08296973025426,32.932542252819985,33.094888775609434,33.89650951139629,33.64042261475697,33.8006557202898,33.614014918450266,33.335654214490205,33.31103370944038,34.27295652637258,33.321703425142914,32.62808380741626,32.05051849409938,32.04268813505769,32.6458391090855,32.28343957196921,32.49216281250119,32.095450705848634,32.765554203651845,32.40146803436801,32.31252734363079,31.710098776966333,31.925623818300664,31.713899249210954,30.928476166445762,30.88274195464328,30.027996017597616,30.223628324922174,30.528670434840024,31.4474949776195,31.321881807409227,31.56259993230924,31.546093912329525,31.361140797380358,30.46231890982017,30.1335529666394,30.25220092572272,30.53563382709399,30.142115294467658,30.269155057612807,30.972581004258245,30.224438715726137,31.169010382611305,31.422252704389393,31.964617138262838,32.65468699578196,31.904382105451077,32.68121837545186,33.289372872561216,34.24856918444857,34.21362263523042,34.13212989876047,33.35107043152675,32.47257427033037,31.70514397136867,31.778195510152727,32.11709589883685,31.45939022069797,32.38321729982272,33.35721036884934,32.59578143944964,33.04413448320702,32.43335552280769,33.31487884791568,32.493089572526515,32.4545060521923,31.666434242390096,31.48703347099945,31.727455595508218,31.398725367616862,30.993927923962474,30.68242617463693,30.765279003418982,30.45752292079851,31.314806357957423,30.919145584106445,31.377238165587187,32.20838631782681,32.39215050684288,32.081334594171494,31.66055240528658,30.74986591981724,30.355414729565382,30.305168409831822,29.903109470847994,29.834089659620076,30.441665515769273,29.54157507745549,29.72281614691019,29.59424022072926,29.098309221677482,29.49579702783376,29.939264484215528,29.82661114819348,29.093442128039896,28.54717930033803,27.557275963947177,26.924809761345387,27.777115213684738,27.457092692609876,27.486942073330283,27.702002200763673,27.886731429491192,27.697717293631285,27.00631431210786,26.94570979150012,26.206941072363406,25.613396087195724,25.650482918135822,25.988582653924823,26.73254583310336,26.526915308088064,27.434684047475457,26.555899312719703,27.4987607547082,27.114786515012383,27.64922443823889,27.91722704283893,27.29497647797689,27.504719257354736,26.524078250862658,27.17605973035097,27.25342807173729,28.039481631014496,28.26151201594621,29.083609795663506,28.16016043536365,27.18310766480863,26.676619851961732,26.576507003977895,25.864706727210432,26.743634013924748,26.27150909602642,26.74172790022567,26.489417743403465,26.350604579318315,26.092299102339894,27.033584478776902,26.891061298549175,26.032398705836385,25.87532116053626,25.459718720056117,24.593625573441386,24.92215682193637,25.687963431235403,25.826337695587426,25.09062355943024,24.222029496449977,23.992886672727764,23.800162380561233,23.154370553791523,23.211800878867507,24.015833124518394,24.53188763745129,24.728602067567408,25.295150575693697,25.497440117876977,25.58509715134278,26.07220741081983,27.013918013777584,26.60085166245699,27.316292833071202,27.678976888768375,28.442768678534776,27.875214190222323,27.952765602152795,27.122342181392014,27.472088874783367,28.464292135555297,29.197813792619854,28.60546233318746,28.16814696509391,28.418451527133584,29.148463250137866,30.133893074467778,29.834783730097115,29.020899242255837,29.05018876772374,28.151879217941314,28.755037642084062,28.18491001613438,27.718981719575822,28.180625825189054,29.171400626655668,29.821915990673006,30.752322827465832,31.258720677811652,32.035489473026246,31.407531924545765,31.914731309749186,31.600715724285692,32.39840423827991,31.86847051139921,32.283933197148144,32.56224276218563,31.569784650579095,31.733771578408778,31.0661617545411,30.645378045737743,30.59984311554581,29.88495232630521,29.998984146863222,29.999789975117892,30.03101161774248,30.454461835790426,31.285824314691126,30.969753213226795,30.502505382988602,31.07219298230484,30.96407091477886,31.414268537890166,31.93399542942643,31.0167895979248,31.112800812814385,32.09465425927192,32.60401955852285,32.13620821526274,32.92161434004083,33.318559566978365,33.82933055842295,32.834954095073044,32.2663758979179,33.12482776027173,33.385214200243354,34.34252290520817,34.017099949065596,34.571063075214624,34.03981852764264,34.68071815837175,34.43936111405492,34.59069231944159,33.69827277958393,32.86268816143274,32.59311502519995,32.21594138909131,32.54992450680584,32.356266607064754,32.85764041170478,32.388874472584575,31.900059290695935,31.85954210953787,31.47854597494006,30.75336815137416,31.3477197852917,32.11821752181277,32.56174527062103,31.870333396364003,31.45131717249751,31.454767062328756,32.22890539793298,32.204221651889384,32.81198926316574,33.32779288291931,33.4263234147802,33.42607609834522,32.50875067245215,33.185354590881616,32.60371800465509,32.315387626644224,31.439468785654753,31.574714192189276,31.365227269474417,31.51864608703181,30.977953155059367,31.721905735321343,31.021477167960256,31.582791252993047,32.50107474345714,32.57159138889983,32.544520685914904,32.66974486364052,32.57164658466354,32.94742960110307,33.57475338084623,33.19593246653676,34.032814513891935,34.20574160385877,34.90617151604965,34.06686004064977,34.200699619948864,34.639901196118444,34.17724372446537,33.646772489883006,33.45931493444368,32.51320309238508,31.659353007096797,31.493081368505955,31.24602096574381,30.664427456911653,31.061416843440384,31.794386981520802,31.885699989274144,32.296811944339424,32.435083388350904,33.08956915559247,32.49844771437347,32.2276962203905,31.249974495265633,30.893854760564864,30.81533108977601,30.401954841334373,29.52781648794189,30.26481494726613,29.400919935200363,29.818069378379732,30.65949972020462,31.407928250264376,31.459698495920748,30.973025784362108,31.750009414739907,32.5067774662748,32.05754426168278,31.462990330532193,30.698710502590984,31.322925567626953,31.416415055748075,31.173604366835207,31.00310786254704,30.67109689535573,30.254017770290375,30.588498141616583,30.01591652724892,30.299989921040833,30.403929898049682,31.05181740410626,30.065421843435615,31.039570288732648,31.780307294800878,32.38603174779564,32.221799871884286,33.07939504040405,32.21117675723508,33.12262972025201,32.237665420398116,32.28642218373716,33.22326918505132,34.06203228235245,34.91312418272719,35.17922906158492,34.53470000065863,33.55380165530369,32.7146121757105,32.27458891319111,31.989387735258788,32.05430094199255,32.63605147693306,32.85697803879157,32.631981767714024,33.444535551127046,33.91594557883218,33.08410118287429,33.25250946590677,33.95906529761851,34.142951384652406,34.40536076715216,34.11216347105801,34.92846849095076,34.216079263947904,33.469509159680456,33.82769552851096,34.800819281022996,35.04926770320162,34.68589771585539,34.37041469058022,33.842132315505296,32.999616659246385,32.67815402010456,32.820182758849114,33.657667406369,34.127139498014,33.48555842414498,32.95511330990121,33.105357865802944,33.50018951529637,32.568068178370595,33.30516152083874,33.927152222488075,33.45706670405343,33.10990145429969,33.47509205900133,33.21234727976844,32.81494849734008,32.36025995388627,32.44540994241834,31.92952457582578,32.025516270659864,32.88930555479601,33.76447403198108,33.27979140821844,32.31625633034855,31.86965555837378,31.074827219359577,31.938216106966138,31.913465117570013,32.035753964446485,32.98289417149499,32.98585749277845,33.23558350652456,33.88374033989385,34.715572722256184,35.61466279113665,34.696582884993404,33.91829490987584,33.99808726878837,33.627586476970464,34.07601262815297,33.22133763320744,32.330444873310626,32.886290445458144,32.94868271751329,33.685330119449645,32.730260606855154,31.927228587679565,31.733841008972377,31.25260284403339,31.18893827870488,31.447802694980055,32.1727108983323,31.265297384001315,32.18815095350146,31.479134886991233,32.22068465827033,32.99402363272384,32.76859083445743,31.998222031630576,31.41374594066292,30.725186408497393,31.289891071151942,31.852400821633637,31.899177480954677,31.655701730400324,31.057090987917036,31.74755924474448,32.065981758758426,31.85125678917393,31.380288392771035,31.485948491375893,31.991178093012422,31.02878016186878,30.658507170621306,30.399646415840834,29.953308010008186,29.856602744664997,30.09938249317929,30.566054395399988,31.554200898390263,31.320481785573065,31.175663659814745,31.06588233448565,30.07684596721083,29.996490695513785,29.71531403809786,28.760181452147663,28.27557694213465,27.934602863155305,27.941749167628586,27.006185344420373,26.663999176584184,26.284826499409974,27.117772815283388,26.573337100911885,27.355612196959555,27.431979153305292,28.199160031042993,27.26373431039974,28.172968417871743,27.65983566036448,27.878261507023126,27.84831750160083,28.422614376526326,28.533623546827585,28.45486862026155,27.486326622776687,26.54058012831956,26.694063128903508,27.306695545557886,27.824529020115733,28.356974226422608,27.868504839017987,27.921908237505704,28.675913142040372,28.507357685361058,29.482076838612556,28.62269176216796,28.11970543023199,27.291682324837893,26.574387374334037,26.862028881907463,27.13555176835507,27.515048439148813,27.389110959600657,26.403420421294868,27.379395516589284,28.24220861494541,27.748947977088392,27.84342664293945,27.310998879373074,26.673532279673964,26.747856283094734,26.063429695088416,25.398033259436488,26.009741872083396,25.652077799662948,25.840991077013314,25.428848773241043,24.818719461094588,25.11904011433944,25.980261343996972,24.989022540394217,25.7122666365467,24.863757956773043,25.09356929315254,24.51342545868829,23.981483152601868,23.83234459068626,23.081766212824732,23.485956186894327,22.546300986781716,21.630540870595723,22.331903787329793,21.859382616821676,21.854214874561876,21.08574361819774,20.418528622481972,21.373254268430173,21.527681068517268,22.19444214645773,22.296670497395098,22.165045115631074,21.428424261510372,20.898571649566293,21.050451101269573,20.805197725072503,20.165119849145412,20.97563953883946,21.411584574263543,21.60366857610643,21.4621599605307,20.93033974757418,20.03054692130536,19.34798057936132,18.59279682394117,19.132346196565777,18.528463801834732,17.59656211733818,18.339615353848785,19.28796227555722,18.568213399965316,19.102965170983225,19.682957681827247,19.64753021672368,19.89187259087339,20.46980855287984,20.871723975986242,20.046145930420607,20.92017410742119,21.85744997439906,22.176614872645587,23.170683154370636,23.110378400422633,22.722349614836276,21.811834999825805,22.043984910473228,22.142777517437935,21.60872177965939,21.18177079129964,20.292911000549793,20.991262616124004,21.83608032250777,22.595738326199353,23.43081449205056,23.109444023109972,23.490498419385403,24.292325312737375,24.535413652658463,25.20408078841865,25.277367028873414,24.37685718666762,25.137331686448306,24.70236252853647,23.933452969882637,24.536783084739,23.88814070355147,23.79843013174832,24.338660449255258,24.587263128254563,25.419421745464206,24.885050700977445,24.262340486515313,23.998075554613024,23.920879212208092,23.415736545342952,23.02382441237569,22.92328920122236,23.10446910187602,22.502224227413535,23.32885125093162,24.193474524188787,23.902695822995156,23.389609863050282,23.75297940755263,23.633019263856113,23.084156992845237,22.797695563174784,22.899517900776118,22.816749894991517,22.84798823436722,23.81249468913302,23.792776418384165,23.08419283851981,22.21366416150704,23.12969530140981,22.247654530685395,23.07758103311062,23.405359137337655,22.4721066262573,21.98793611396104,21.708807304967195,20.714300513267517,20.400063859298825,20.66193371359259,20.86791825760156,20.247213643044233,19.716372037306428,20.38169031077996,20.70856846868992,20.582307576201856,20.45344322314486,19.692378364037722,19.26341797877103,19.51664481824264,20.346349316183478,19.685823555104434,18.991015640553087,18.56185233220458,18.249446293804795,17.47272090287879,17.45590181881562,16.709824237506837,16.162899774033576,16.214210430625826,16.046219777781516,15.18978990148753,16.107116614934057,16.286431580316275,16.15657586650923,16.546333184000105,17.445640086662024,17.719599131960422,17.06701848609373,17.32051613368094,18.110157881397754,17.95482745487243,18.015259605832398,17.437024157494307,17.52657502098009,18.38544554496184,17.579091825988144,17.07262731390074,16.4056351701729,16.393628949299455,16.693955912720412,16.334772993344814,15.38448545243591,16.099470066372305,16.55121153127402,16.369480254594237,15.48647985002026,15.896206848789006,16.22018569940701,16.787866668310016,16.394987961743027,15.478991250973195,15.888556736055762,14.921902893576771,14.495704445522279,13.728542270604521,14.111916780937463,13.751957102678716,13.04702382022515,12.087579770945013,12.443853414617479,11.95586025249213,11.60029738675803,10.641741058789194,11.193706235382706,10.284416899550706,9.687152252998203,9.937786377035081,10.85074561368674,11.661358737852424,11.785770994145423,12.50143073266372,13.283547661267221,13.51301807584241,14.232224446255714,14.446668247226626,14.786832937970757,15.68652260582894,15.870473482180387,15.485903157386929,15.833555087447166,16.412382522132248,15.870956491678953,15.985695565585047,15.843482463154942,15.255099811125547,14.289648831821978,13.351852941326797,12.59791550366208,12.480402095243335,12.868308052420616,13.492643660865724,13.219987857155502,13.899245565291494,13.934534561820328,13.839423102792352,13.366970244329423,13.353023288305849,13.008845329284668,12.194539160002023,12.667194216046482,11.769109789282084,11.73806394264102,11.694925354793668,12.064595932140946,11.697295421734452,11.832215131260455,12.701411813497543,12.99673930555582,12.430752550251782,11.855654230341315,11.7871132963337,11.938904873095453,12.583349351771176,12.190332289785147,12.108973240479827,11.192405902314931,12.06145256292075,12.350132913794369,12.612861338071525,12.640923554077744,12.36758607486263,12.371720542665571,11.58864018600434,11.43128003925085,10.63191935326904,11.079937162809074,10.272852750495076,9.878343616612256,9.61249805893749,9.947810403537005,9.596311578061432,8.605160451028496,8.526515603531152,9.402482761535794,10.252059265971184,11.161309550050646,12.0388054093346,12.010057446546853,12.56693983823061,12.124968720600009,12.305428808089346,11.357581452932209,11.876626214012504,11.01924531115219,11.540222194511443,12.092297072988003,11.32620388455689,10.73814010526985,10.841904323548079,10.281475136987865,9.49497562367469,9.6959483390674,10.22186703979969,9.747816528659314,10.40893245767802,10.911958489567041,10.714163672178984,10.812577044125646,10.09924637293443,10.919995692092925,10.201863047666848,10.729540180414915,9.796273949556053,9.559635827783495,10.481379154603928,10.604359598364681,10.105524973012507,9.149524515494704,10.137410454917699,9.632095311768353,9.09633733984083,9.265151482541114,10.022958387155086,9.541337448637933,10.227466729935259,9.446350494865328,10.417434063740075,10.817758368793875,10.001814473420382,9.320660557597876,9.286926104687154,9.52846848173067,9.276304532308131,8.726010888349265,8.979632874950767,9.0570077910088,10.047693125437945,9.696865854784846,10.064607660286129,10.573590911459178,10.293299257289618,9.539845888502896,10.509844224900007,9.945434887427837,10.792528690304607,11.102343552280217,10.65991692058742,11.347287507262081,12.032913724891841,11.319843208882958,11.727245944086462,11.556421688292176,10.809387459419668,10.964173280633986,10.255424175877124,10.667688943911344,9.984926086850464,10.69480864237994,10.667243423871696,11.450156132224947,12.053885415196419,12.618139051832259,12.596087215468287,12.319819087628275,13.282294220291078,13.672049300279468,14.541842613369226,14.414826912339777,14.97773308167234,14.1828313623555,13.621671567671001,14.600055841729045,13.648278070613742,14.58877296326682,14.816719328984618,14.414938314817846,13.762377824168652,14.39560934342444,13.93701218534261,14.651309401262552,14.25899674417451,13.77173008909449,14.397863877471536,14.438296183012426,14.40586906624958,13.94874675059691,14.535745170433074,15.502498409245163,14.947846982628107,14.811368165072054,15.036088699940592,14.16892469767481,13.715811197180301,12.915126750711352,12.504126727581024,11.690774810034782,10.742862444370985,9.914264091290534,10.374331014696509,11.285963824484497,11.460781574249268,11.7745277043432,10.913850932382047,10.109418398700655,9.55666724126786,9.222398874815553,9.525955304969102,9.38220337824896,8.38807494705543,8.960230698809028,9.634298020042479,8.895273555535823,9.505876721348614,9.764187465421855,10.371251902543008,10.001366735436022,9.893077967688441,9.215720214881003,9.561053237877786,8.984068253077567,9.160606021527201,9.727158279158175,9.495832471176982,9.85439396603033,9.811494299210608,9.113075959961861,10.043489509727806,9.51076640933752,8.883213963825256,9.242455264553428,10.095633206423372,9.69584681186825,9.004340034443885,8.79316748585552,8.88616312528029,9.846672977786511,9.1529455287382,8.967789811547846,8.390366027131677,9.063702607061714,9.595905306749046,9.58518716879189,10.193445415236056,10.83326726499945,10.480543938931078,9.694239182863384,8.914769052527845,9.079890802968293,9.597369599621743,9.70346492389217,9.54006183380261,10.462598213925958,9.994601991027594,10.294593160506338,10.404643607325852,9.743386768735945,8.770724579691887,8.549589743372053,8.080254644621164,7.2370642041787505,7.401419254485518,8.110535534098744,8.151328298263252,9.143831013701856,9.579351285938174,9.061870050150901,9.380293614696711,10.013321754988283,10.022254633251578,10.02446054900065,9.883906700648367,10.31156123848632,9.871334665454924,9.729814873542637,8.989377293270081,9.711753776296973,9.616656911093742,9.193543155677617,9.808256202377379,10.236053340137005,11.044943736866117,12.037740136031061,12.978295685723424,12.355272174812853,12.243094274308532,11.774391918443143,11.06714806240052,10.164058743044734,9.350937366951257,10.268794167321175,10.454305410850793,9.693272180855274,8.883686932735145,8.897466314025223,7.920115685090423,8.365291427820921,8.68306932412088,8.36665558675304,8.665344967506826,9.34395920438692,8.825735996942967,9.789069283287972,9.677256597205997,9.814144162461162,10.424490709789097,10.697438621427864,10.544802188873291,10.44279581354931,10.731429715175182,10.010310385376215,10.865587515756488,10.218101919163018,10.461058309767395,10.479894131422043,11.422251105308533,11.394269864540547,12.300051276572049,12.1529988264665,12.890951726585627,12.153474224265665,12.761639293283224,13.020051752682775,13.97063506161794,13.152265422046185,12.46043094061315,11.604339929763228,11.195350499358028,11.606567633803934,11.100318905431777,10.456282971892506,11.362874006852508,11.641650522593409,10.808368614409119,11.469428361859173,10.781096706632525,10.498995278496295,10.58046866254881,10.273161667399108,10.97662424808368,11.194448185153306,12.177201610058546,11.501958676613867,12.305141979362816,11.362422074656934,11.962923556100577,11.855066415388137,10.962971099186689,10.187568448018283,10.20601953798905,11.07939434889704,10.8330537234433,11.181576734874398,11.510024656541646,11.979468301869929,11.042626793961972,10.952421023976058,11.198545026127249,11.801263018045574,12.777003337163478,13.76212039962411,14.062058642040938,14.559393340256065,15.035976633895189,15.178519106470048,15.349831744097173,14.549811083823442,15.197223427239805,14.246413475368172,13.374669783748686,12.979784592054784,12.621772846207023,11.965184507425874,11.159471017308533,11.510989401955158,10.954391914885491,10.001723209861666,9.567929897923023,9.512031754478812,9.841913701035082,10.426813871134073,10.796215406619012,11.263432662002742,10.299443474505097,10.443867941852659,9.665869235992432,10.247510835994035,10.52571781584993,10.184204057324678,9.309576849918813,8.761139211710542,8.644779647234827,8.443374657072127,7.547481067944318,7.0042926194146276,6.742300440557301,5.994398976676166,6.169777718372643,6.5048614433035254,5.813882490620017,6.282031166832894,6.965881564188749,6.49232247332111,7.2898415247909725,7.828556879423559,7.249594095628709,8.22591270506382,8.047849709633738,8.971365116070956,8.395983257796615,8.310253698378801,7.589050428941846,7.918363581877202,8.678103686776012,9.129789183847606,9.563882844056934,9.710291921626776,8.978263932745904,7.987252190243453,8.314285224303603,8.896411148831248,8.822525864001364,8.44591874955222,7.952523046173155,7.171654536854476,7.8988467450253665,8.361270867288113,7.651060543954372,8.587869856972247,8.61878816364333,8.0725650601089,8.687247155234218,9.662816093303263,10.207307420205325,9.266752524767071,8.71656030556187,8.836059155873954,9.219335332512856,9.301080940291286,9.34264048980549,10.262214812450111,10.602713408879936,9.698161324486136,8.887226603925228,9.589678171090782,8.994255867786705,8.254998959600925,7.989699583500624,7.553378057666123,8.21092937560752,7.56200160458684,7.142503124661744,6.77476176712662,7.422846189700067,7.368799807038158,7.603856851346791,6.839939073193818,6.101184059865773,6.552450050599873,6.495436251629144,6.851044778712094,6.060450327582657,5.680999928619713,5.497385335154831,6.027611719910055,5.113722682464868,4.591906998306513,4.2469576979056,3.617100410629064,3.9814697760157287,4.50285859266296,4.316441947128624,4.611073198262602,3.9894478018395603,3.2054619868285954,3.121636114548892,2.7533688037656248,3.3237376771867275,3.4222368956543505,2.680332560557872,3.0895314351655543,3.4435147903859615,3.273478881455958,2.6681378977373242,2.936753452755511,3.253723595291376,2.505305300001055,3.072414366994053,3.3596922042779624,2.9391537536866963,2.8064725836738944,3.1476803333498538,2.7350660171359777,2.0040253251791,1.1713960352353752,1.9956328049302101,1.3545073601417243,1.490958129055798,1.4500540848821402,1.8427355997264385,0.9246273459866643,1.4013645006343722,0.5666592735797167,1.1295809145085514,2.03943680645898,1.823275071568787,1.1671092375181615,0.7160341450944543,1.6914702849462628,1.5623107319697738,0.9539787597022951,1.198325213510543,1.7294083843007684,2.3997755576856434,2.2142511755228043,2.728021305054426,2.3954305867664516,2.014978638384491,1.986408157274127,1.2104451162740588,0.4075585273094475,-0.17678679060190916,-0.3022337993606925,0.22198697086423635,-0.03013045247644186,-0.39702703477814794,-0.011055858340114355,0.10073112370446324,0.6339598917402327,0.9392074546776712,0.5999596384353936,0.22277277149260044,0.181607979349792,0.8464309615083039,1.1251090611331165,1.8901521982625127,0.9984609829261899,0.20287594106048346,0.674442844465375,-0.2896556234918535,-0.6995408860966563,0.21890135575085878,-0.24904785258695483,-0.9385584932751954,-1.9307881980203092,-1.1774217379279435,-2.056630448438227,-2.30774700967595,-1.5975523041561246,-1.5242093475535512,-0.7501021716743708,-1.4585097273811698,-1.8279394363053143,-0.8464537071995437,-0.28202547831460834,-0.8614424215629697,-1.446441245265305,-2.2036715638823807,-1.4857350932434201,-2.122023032512516,-2.159069994930178,-1.3044922524131835,-1.4445182015188038,-1.7873667739331722,-2.7500534164719284,-2.2032185634598136,-2.8781226784922183,-2.188728173263371,-2.8753683120012283,-1.9411669834516943,-2.4525909880176187,-1.4526468254625797,-0.5761572052724659,-0.9115137071348727,-0.991746018640697,-0.5577085944823921,-1.4360952731221914,-1.120199208613485,-0.7485786974430084,-0.7352600954473019,-0.29595095897093415,0.6167468354105949,0.32418708875775337,0.4053223798982799,0.6291636265814304,0.201616985257715,-0.4707569219172001,-0.36933814734220505,-1.0873806290328503,-0.8998392750509083,0.06990969413891435,-0.7337276171892881,-0.8496866934001446,-0.9770938586443663,-1.6657626666128635,-1.9120687264949083,-2.228596888948232,-2.885881269816309,-3.3569180103950202,-4.248043641913682,-3.4068332561291754,-3.7905118614435196,-2.874982782173902,-2.2855185861699283,-2.409966019913554,-1.6690824860706925,-2.0884884260594845,-1.8972638379782438,-2.724358373787254,-2.8652458302676678,-2.0960676479153335,-1.2883328520692885,-2.1748866019770503,-1.507862274069339,-2.255970623344183,-3.1031674067489803,-2.408520237542689,-1.490211711730808,-0.5805689692497253,-0.5807255860418081,-1.0593591430224478,-1.608156486414373,-0.65984907746315,-1.449239453766495,-2.0006145969964564,-1.10004748031497,-0.11295172898098826,-1.1072262157686055,-0.1645947159267962,-0.03838589834049344,-0.8640222391113639,-0.344575606752187,-0.5567949372343719,-0.23484905762597919,-0.47342158993706107,-0.4074572529643774,-0.7931832922622561,-1.4622746221721172,-1.2654676116071641,-2.1315762628801167,-1.685008759610355,-2.1092943674884737,-1.9597575790248811,-2.235372040886432,-1.6038389229215682,-2.317742995452136,-2.611815119162202,-2.5911107482388616,-2.266714572440833,-3.223052059300244,-3.086946716532111,-2.4964851536788046,-2.100151033140719,-2.6432894277386367,-1.7640362298116088,-2.6286953762173653,-2.6403191438876092,-3.5847807028330863,-3.4666288918815553,-2.717309645842761,-3.149229845032096,-3.19822009652853,-3.47937048971653,-4.33588471962139,-5.044927128590643,-4.31218792591244,-4.901148797944188,-4.19624622259289,-3.4636326488107443,-3.008502807468176,-3.4079432343132794,-2.6556539838202298,-1.7322286893613636,-2.3517423756420612,-2.59107829304412,-2.8320301845669746,-2.9683813569135964,-2.404262541793287,-1.731833765283227,-0.803960788063705,-1.6403968562372029,-0.994223911780864,-1.830090765375644,-1.78400187054649,-1.2861931091174483,-0.680292206350714,0.31026469683274627,1.0163380382582545,1.393213710281998,0.8763293051160872,0.4712863867171109,-0.0028231795877218246,0.07920191250741482,0.7357773389667273,-0.25175959104672074,-0.44327383302152157,-0.445586116053164,-0.39774669241160154,-1.0524836052209139,-1.686790828127414,-1.7570036831311882,-1.3997109290212393,-0.5718229063786566,-0.6700134836137295,-1.381786163430661,-1.1465968047268689,-1.8332023853436112,-2.3935320344753563,-2.3949092994444072,-2.50535221491009,-2.711938706692308,-1.7632039301097393,-2.259754647500813,-2.435352048370987,-2.277877514716238,-2.787941280286759,-2.0100182848982513,-1.0936071695759892,-0.4150977386161685,0.36066911835223436,-0.5838347403332591,-0.24147235276177526,-0.8909426382742822,-1.206488617695868,-1.0803139954805374,-0.8065984584391117,-1.5432074032723904,-1.502972586080432,-1.908529439009726,-2.8662030436098576,-3.733298111706972,-3.236834863666445,-2.773268476128578,-3.7545762062072754,-3.4853654918260872,-2.673635267652571,-1.8142800526693463,-1.1512246700003743,-0.8590054376982152,-1.4013231392018497,-0.45657280925661325,-0.6657268740236759,-1.2891658516600728,-1.348997127264738,-0.8281233748421073,-1.0398145839571953,-1.7996969991363585,-1.690724749583751,-1.6813665027730167,-2.1317870863713324,-1.9540384109131992,-2.318620726466179,-2.5198533618822694,-2.3011705563403666,-3.105247253552079,-2.810656452085823,-2.2576299249194562,-1.861310396809131,-1.0471862279810011,-1.8465338894166052,-0.995844641700387,-0.8415259895846248,-0.21142258075997233,-0.26352598518133163,-0.8541988022625446,0.05413841502740979,-0.47552541736513376,-1.2087073465809226,-0.5060002598911524,0.08360159955918789,0.6614268412813544,1.5248591657727957,2.3086006697267294,2.7704818584024906,3.0195671459659934,3.7135928329080343,3.3544116034172475,3.300525650382042,2.3369352016597986,2.814518477767706,3.5634931540116668,3.6877492340281606,2.7146220467984676,3.386143008712679,2.9860012284480035,3.8810836183838546,3.1589574427343905,3.8747935933060944,3.549420067574829,3.871008245740086,3.8646600279025733,3.5003963354974985,4.199746101628989,4.633854599203914,5.13805164815858,4.648915554396808,4.412572595756501,4.517049324233085,4.150101157370955,3.8239954812452197,4.583417897578329,3.7515898747369647,3.0906202234327793,3.359748677816242,4.250009674113244,4.406511589419097,4.394729908555746,3.5326560349203646,3.0301900701597333,3.356278819963336,4.051951598376036,3.9423936661332846,3.292008644901216,4.249847791157663,3.66578157665208,3.1575702521950006,3.8609532229602337,3.9769836124032736,4.626394629944116,3.6539639616385102,2.941838287282735,2.997637548483908,3.5997843644581735,3.459120240062475,3.841175625100732,3.5245718406513333,3.7675985121168196,3.4103850931860507,3.7254700921475887,3.7676799311302602,3.8059705113992095,3.1329631698317826,3.6923603690229356,3.754217570181936,4.2666404424235225,4.8448114660568535,5.666015007533133,6.511924157384783,6.532410652842373,6.443689366336912,5.954809376038611,6.833943124860525,6.7780202543362975,7.381272939033806,6.651416082400829,7.560491575393826,8.31539576034993,8.101407274603844,7.4222422246821225,8.119222086388618,7.865560364443809,7.742704109288752,8.476811190601438,9.428858181461692,9.917770207393914,9.576011432800442,9.796384919900447,10.531927060801536,10.952632043510675,10.611954057123512,10.03743421845138,9.402630981523544,9.411088309250772,8.53936630813405,7.9618430975824594,8.123916062526405,9.087398763280362,8.532538386527449,8.971800881437957,9.298953200690448,9.05913985753432,8.56802992708981,7.813933176919818,7.840808431617916,7.7755803586915135,7.123038375284523,6.733331254217774,7.67234582034871,8.340767418500036,8.788537127431482,9.138166687916964,9.62893728306517,8.691424329765141,8.479757495690137,9.046890868805349,8.580774935893714,9.367531871423125,10.290548878721893,11.270095693413168,11.93908298201859,11.195565548725426,11.125405452679843,10.49384421762079,11.321174962446094,12.313672499265522,12.959718920756131,12.476163098588586,12.200932149309665,11.947368440683931,12.555516246706247,13.139169507659972,13.42668611323461,13.963112017605454,13.823384284973145,13.826747905928642,13.519375693053007,13.924600586295128,13.652056725230068,14.6303326850757,14.31901236064732,15.072257563471794,15.459644091781229,15.964543939568102,16.532941495999694,16.101051098667085,16.021566561888903,16.68223113240674,16.839657626114786,17.221925464458764,17.971773807890713,18.208470278419554,17.738280528690666,17.270650897640735,18.105496373958886,17.56479048030451,18.411987659987062,18.289458786603063,19.104144762270153,18.161025644280016,18.492032350040972,18.083820699714124,17.286648390814662,16.59309547767043,16.748685120604932,17.48188140662387,16.684189928229898,16.186635127756745,15.34673060849309,14.987410217523575,15.888904102146626,15.700295439455658,14.765463839285076,14.148687564767897,13.986531735397875,14.816479311324656,15.602641437668353,14.869334596209228,15.274013440590352,14.32244050083682,15.119896123651415,14.834191644564271,15.496289135422558,15.744393195025623,14.985410219058394,15.726085932925344,16.091807425953448,16.891651095822453,16.55756164295599,16.294383266940713,16.709436941426247,16.803136857692152,17.38161933142692,18.18511367868632,18.8156704781577,18.47520088357851,18.106585984583944,17.821570675820112,16.960885607171804,17.753091409336776,16.882603562436998,17.13376124855131,17.016516057774425,16.186322759836912,15.2895945222117,15.285648902412504,15.297558380290866,15.821770510170609,15.405363698489964,16.03536966815591,16.682985106483102,17.20020576613024,17.68378773331642,17.357091495301574,18.147082201205194,18.635200378485024,17.706998557783663,17.189217946957797,16.57595155807212,16.330489586107433,16.761079469695687,16.05742731736973,15.598793230485171,15.913768473546952,16.638399484567344,16.570701656397432,15.93880250910297,15.723894944880158,15.016339031979442,15.037561414763331,14.318167999386787,13.683499201200902,13.762218826916069,13.33374907495454,14.189197841100395,14.338611862622201,14.164150778204203,13.628583656158298,13.393712163437158,12.815437185578048,12.707665915600955,12.606430101208389,12.431464013643563,12.509560940321535,12.868661687709391,13.734957654960454,14.300541219767183,15.070366005878896,15.556214078795165,16.34859668230638,16.38187885703519,17.2244292749092,16.506704771891236,16.48349165543914,16.16983355395496,15.380884026177227,14.439382721669972,14.359297355636954,14.889005912933499,15.681516853161156,15.360626473091543,15.157091776840389,15.500394786708057,16.006666043307632,16.616251667030156,16.65707622701302,16.01024389034137,15.868578370660543,15.200304392259568,15.471809684298933,14.908072359394282,14.261954829096794,15.013314182404429,14.370194250252098,14.708746057469398,14.816190750338137,15.210714592132717,15.502927884459496,14.864444030914456,14.689735801890492,14.136369531508535,13.565220998600125,13.96773514477536,13.342268477659672,12.962547187227756,13.951174389570951,14.321086772251874,13.70662362780422,14.163288321811706,13.64875721046701,14.486863705795258,13.717539260163903,12.860463430173695,12.473085431847721,12.583360743708909,12.486597213894129,12.977474853396416,12.499761912040412,11.580453264992684,11.893404523376375,11.629053680691868,12.359217407181859,12.56271625496447,13.545287730172276,13.33472659625113,12.429105754941702,13.265717475209385,12.75659385509789,12.284713041502982,11.817020894493908,11.217694710940123,11.168295169714838,10.663338140118867,11.057769917882979,10.327244605869055,11.287835371214896,12.06012757960707,12.44996625976637,12.686541503295302,13.329401153605431,13.782993553671986,14.00038812821731,13.928205033298582,14.35214105900377,13.412570387125015,13.019403538201004,13.593894102144986,13.850114996079355,13.251695297658443,13.48192197829485,13.25649540266022,13.844548760447651,14.388625993859023,14.63423174014315,13.843944981694221,14.582286547869444,14.415768328588456,13.626670370344073,14.621616648510098,13.800932885613292,13.79397264169529,13.850395475979894,14.135958374012262,15.023438862990588,15.673636680468917,16.07859259331599,16.024193842429668,15.616996654774994,16.553582672961056,16.348727201577276,16.13818431692198,15.206126606091857,15.565277493558824,15.716813625302166,15.226887336932123,16.1766514708288,15.837687186896801,16.78274058410898,16.72841101977974,16.47857192484662,15.985517032910138,15.41614645998925,15.619975175242871,16.083862584084272,15.259206573013216,15.075973444152623,15.236624183598906,14.488766049034894,14.070297286380082,13.119711896404624,13.660492277238518,13.034455059561878,13.684729446657002,14.310398614499718,14.349309456069022,15.043412007391453,14.584146300330758,15.293093968182802,15.54886692063883,14.935720646288246,14.73310322035104,14.7098693465814,14.891153506934643,14.64327481109649,14.648768546525389,14.170463773887604,14.751926105935127,15.169264225754887,14.685067383106798,13.794288757257164,13.515331008471549,12.836160227190703,12.836929691024125,13.310115850064903,14.3052650927566,13.933292333967984,13.471082706470042,13.310318691190332,13.561039712280035,12.844528212677687,12.388339641038328,11.553164279088378,10.755239618010819,10.516798156313598,10.266595156863332,10.445534934289753,11.254525790456682,10.65828766534105,11.537050626706332,12.259508553892374,11.617124429903924,12.173731000162661,12.379050150047988,11.747374137397856,12.120336542837322,12.531673816498369,12.351377735845745,12.83111858740449,12.471920799929649,13.29627489624545,12.497117743361741,11.507081388961524,11.147102628834546,11.38133736141026,12.221265168860555,11.365731060039252,10.61521276133135,10.129434088245034,10.007450373843312,10.925514825619757,10.6444147140719,10.266059207264334,10.479015963152051,11.027916287072003,10.417019404936582,11.046320362947881,11.167780045419931,11.290903546847403,10.53361909231171,11.352430573664606,12.173947982955724,12.936638374812901,13.848729118239135,13.308181524742395,12.796714892610908,11.817098894156516,11.040137817617506,11.298213567119092,11.154811518266797,10.86804320383817,10.22355784336105,10.902053112629801,9.908186468761414,9.179849854670465,8.746388630475849,8.143350335769355,8.790498374029994,8.200051250867546,7.736856871750206,7.25919975573197,7.140577649697661,7.670943940058351,6.7032367759384215,6.9323063883930445,6.857530259527266,6.315388792194426,5.94722879352048,6.171835193410516,6.848812525160611,6.532862836960703,7.154778730124235,6.340941209346056,6.538210246711969,6.554875866044313,5.879349200986326,5.946530639193952,5.178243954200298,5.88600148120895,5.981137558352202,5.762439759913832,4.851261651143432,5.634196779690683,5.416386405471712,5.480417240411043,5.8224978116340935,5.757222346961498,5.512466932181269,4.65449194656685,5.158505585975945,4.501939797773957,4.803989770822227,5.5863151852972806,4.661051049362868,4.530493965372443,3.910338507965207,4.133010652381927,5.002881454303861,4.982368829194456,5.937191444914788,4.958892086520791,4.435552150476724,5.024204301182181,5.849183898884803,6.356721619144082,6.118568945676088,5.96203492814675,5.166821928694844,5.235223859082907,5.064058642834425,4.917867892887443,4.794532002881169,3.9716045167297125,3.856627421453595,4.670764880720526,5.27537590963766,4.403777537401766,4.338249207939953,4.115446005947888,3.3739964747801423,3.662132082041353,4.46248626196757,4.2725891335867345,5.2119671306572855,5.0015224711969495,5.857842949684709,5.905317496974021,6.831550653092563,6.98883340600878,6.614417569246143,7.553749574813992,7.249209311790764,8.238574627321213,7.302641341462731,7.320194713305682,7.336143447551876,7.277187327854335,6.377614452503622,6.073165801819414,6.777805615216494,7.733810123521835,7.24244887009263,6.377293810248375,6.944391367956996,6.9348907778039575,6.882815156597644,6.139529586303979,6.749818211887032,6.567368421237916,6.679812804795802,7.235695681069046,8.073722114786506,7.248448955826461,7.748162135947496,7.133965610526502,6.916071415413171,6.543560373131186,6.673661602661014,7.220589837059379,6.981328701134771,6.47714528022334,6.184331116266549,6.903038962744176,7.812085770536214,6.98395610274747,6.184298143722117,7.091664527077228,6.351655846927315,6.61970127094537,5.672119150869548,6.511360484641045,6.708230877760798,6.919654123485088,7.177774953190237,7.6704984051175416,8.256231494247913,7.930006087757647,7.9854398760944605,8.321473306976259,9.041871131863445,9.274618228431791,9.147405392024666,9.816446436103433,9.857322540599853,9.714294785168022,10.522430676501244,10.639224521815777,10.761261748149991,11.272265387233347,11.668077148497105,11.213225326035172,11.59064120054245,11.683682704810053,12.255605190992355,11.505868365522474,10.890269448049366,11.051070547662675,10.553979025222361,9.878670881967992,9.333092255983502,8.517459753900766,8.91397742414847,9.41295506246388,9.001870068721473,9.396636594086885,9.792495117988437,9.314921340439469,9.780147733632475,9.122570895589888,9.230742913205177,9.471482168417424,9.569129973649979,9.925617336295545,9.547631274908781,9.283764916006476,8.854208819102496,9.057670399546623,8.518001433461905,7.816938506439328,7.584364343434572,6.979559374973178,7.830470895860344,8.761840065475553,9.197004601359367,8.812126620206982,9.675140069797635,10.45627867616713,10.754825114272535,11.441999614238739,11.061615251470357,11.723377799615264,11.418314844369888,10.759211819153279,11.056122593116015,10.855059309862554,11.568323249928653,12.076373524963856,11.218512893654406,11.446999971289188,11.82770652603358,11.932744871359318,11.373246082570404,11.166925619821995,10.941874748561531,11.410337133333087,11.66584630124271,12.27917587198317,12.930899516679347,12.815442262683064,12.783315834589303,13.070178357418627,13.870847917161882,13.234491953626275,12.782306354027241,12.591503193136305,12.333396054338664,13.044514212757349,13.348887834697962,13.00393258035183,12.56647832877934,11.56672424543649,10.97579179983586,11.362681401893497,11.590475497301668,12.440577906556427,13.18282896000892,13.374259020201862,12.399779099971056,11.861406276002526,11.497148946393281,12.452806947287172,11.487304109614342,11.993938195053488,11.404250659048557,10.881838083732873,11.343032134696841,11.429393661674112,12.257254085503519,11.851394680794328,10.953063098713756,11.465966310817748,10.701802806928754,11.40850206092,12.30986779090017,12.27066063368693,13.260438772384077,13.661946416832507,13.674380816984922,14.083504535723478,14.75360453967005,15.693299354054034,16.463613033294678,17.423248283099383,17.44226893875748,16.57973578060046,16.402257305569947,16.96788515802473,16.269004290457815,16.730633664876223,16.644735438749194,16.264973600395024,15.846055359113961,15.229421006981283,14.328556399326771,13.339720870833844,13.59310814877972,13.122720545623451,13.88300673943013,14.006698354147375,13.157713627908379,13.980975893326104,14.523766531608999,15.432912367396057,14.680196753237396,15.589154185261577,16.543683239724487,15.71271425113082,14.89268612721935,15.0858065453358,14.32583793392405,14.910150901880115,15.463327286299318,15.619956630282104,15.495696487370878,16.192164829932153,16.51944859419018,15.676232617814094,16.253543892875314,16.502356089651585,16.532694417517632,15.628313714172691,14.669731946196407,15.35669182939455,15.504476736765355,16.311382258776575,16.169543642085046,16.226649483665824,15.687571900896728,14.867935712914914,14.6869265595451,14.375903352629393,14.670078264549375,14.467072516214103,14.118643236346543,14.605347086675465,14.531908959150314,13.91480327770114,14.068733684252948,14.463848534505814,14.188924327492714,14.086361919529736,14.169327858369797,14.81869670143351,15.007611862383783,15.427193700801581,15.192694544792175,16.17776461178437,16.917549848090857,16.95253555988893,16.450767958071083,15.775386366527528,15.949330201372504,16.27417356846854,16.91734122345224,16.979592305142432,17.787234839983284,17.588332197163254,16.73992646439001,15.889238562900573,16.46041397936642,17.284687830135226,17.951368858106434,17.246533610392362,16.85661719320342,17.233370281290263,17.353306217119098,17.58008295018226,17.465103301219642,17.868146360386163,18.08569916104898,18.439729413483292,18.147724407259375,17.16432687547058,17.15477540437132,18.133738858625293,18.573379979468882,17.975815509445965,17.598199017345905,17.8077386287041,18.023363664746284,18.954272077884525,18.13664664234966,18.70676717767492,18.584128472022712,17.98990844655782,17.653445621021092,18.146366593893617,17.387819147203118,16.854112851433456,17.022127812262625,17.46903860801831,17.658244204707444,18.174608748871833,18.376631141174585,18.695609243120998,19.13327477592975,19.174915412440896,19.98444403707981,19.95915038138628,20.11889641871676,21.053667878266424,20.22596103604883,21.04322261735797,21.931456252466887,22.813462565653026,22.411195357330143,21.870433612260967,21.24876652751118,21.621013208292425,20.77161473641172,20.70600588945672,21.34705681167543,22.156777671538293,22.352071220055223,22.030525354202837,22.155256336089224,22.580138243734837,23.19342407817021,22.656177189201117,21.916806449647993,22.425003425683826,22.44898673100397,22.53405094379559,23.386828635353595,24.344570165034384,24.966087832581252,25.67121493862942,26.604760619346052,26.192319681402296,25.955450160894543,26.593550335615873,26.927072029095143,27.171263301745057,27.25481653911993,27.594121646136045,27.188770269043744,27.101558498106897,27.659351122099906,27.362688918597996,26.65791003825143,26.055953587871045,25.584345014300197,25.65834063105285,26.467501923441887,26.48612986318767,27.471337276510894,26.956740709021688,27.5440065828152,28.127928818576038,28.955749129410833,28.906388270203024,29.905704945791513,30.484382008202374,29.510339486878365,29.43922428973019,30.3667240482755,31.286164781078696,31.213862334378064,30.718800883274525,29.75460048718378,30.572159323375672,31.398775790818036,31.698263144120574,32.129469307139516,32.35922885639593,32.99457552097738,32.07223837217316,32.02118338551372,31.25973498309031,32.17838836926967,31.558554034214467,32.457047724630684,31.92084481474012,32.01100419741124,32.45703849941492,32.02733855508268,31.604280633851886,31.875705336220562,31.4040705752559,32.009087045677006,31.205799399409443,31.604458936024457,32.37916000233963,32.54922345187515,31.796780461911112,32.4058992723003,32.021025634370744,31.50044060824439,32.19253162946552,32.0597969237715,32.691171609796584,32.093419638462365,31.288962015416473,31.92314749630168,31.411825869698077,32.34497049963102,32.375095535069704,31.877854822203517,31.652780077420175,31.668375864624977,31.52160292165354,32.05490137543529,32.153493631631136,32.20833787275478,32.03343589743599,32.97846231935546,32.00505551090464,31.15844279062003,31.31208932818845,32.0962770502083,31.778169322758913,32.03681193245575,31.821197380311787,32.31250679679215,31.596657058689743,31.263131753075868,31.29830701695755,31.70825771195814,31.535579045768827,32.412672388367355,32.664247419685125,32.104132500477135,32.374633414205164,33.01593869086355,32.0450464268215,32.38686778675765,31.412942781113088,31.807689918205142,32.084245725534856,32.96668836614117,33.37324219522998,32.72604090673849,31.88298155274242,32.00268967775628,32.17523244768381,32.916514998767525,33.45833581965417,32.485638982616365,32.18847734015435,32.284629152622074,31.35235722642392,31.91545952996239,31.624028135091066,31.181028116494417,31.266085649374872,30.860139961820096,30.43451278284192,29.993038366083056,29.938928519841284,30.805512947030365,31.36315117869526,31.129682993516326,30.577633765526116,30.053252197802067,30.231593470089138,29.846380662638694,30.825671169441193,30.82030610088259,31.44134525116533,31.97645250428468,32.03045824216679,32.357838057912886,32.9444003906101,33.44045672239736,33.192629917990416,32.4605842162855,31.748828780371696,31.582469390239567,32.49148886697367,32.15300062857568,33.01178472209722,33.11831250414252,32.29579408792779,32.16969901975244,31.177089818753302,31.77189511200413,30.79349898872897,30.20369104621932,29.97849821066484,29.22766228253022,30.080272620078176,29.737476041540504,30.51301017589867,30.124145962297916,29.69736686721444,29.276976502034813,29.03011639788747,28.039998840074986,28.076659979764372,28.680703143123537,27.985010851640254,28.752688557375222,28.6306919651106,28.312076607253402,28.012643115129322,27.374179260339588,28.35290998686105,28.303686360362917,27.965097477659583,28.7284412891604,27.74517756095156,27.84896962856874,27.51028069620952,27.90348154073581,27.163126988802105,27.80262390570715,28.661370126530528,29.467427250929177,29.79432629235089,29.29433722421527,30.005979474633932,30.651675436645746,30.416636816691607,31.28696420742199,30.6402929299511,30.40111318649724,31.367300826124847,31.41808119881898,30.957282369956374,31.8006369327195,32.16668605571613,31.796538770198822,31.79787755338475,32.610949283931404,32.58623825805262,33.57826254563406,34.07173639954999,33.8799498626031,33.881197716109455,33.06850197492167,32.07904645707458,31.353470476344228,32.32065447000787,31.999035774264485,31.25240578269586,30.27568692713976,29.430077797267586,29.61364015331492,30.38004443515092,30.450559467077255,30.970138443633914,31.856376090552658,32.748919835314155,33.05911470297724,32.562643790617585,32.63158088829368,31.78534197853878,30.905857915058732,29.910169222392142,30.72219972172752,31.50839746557176,31.503609512466937,30.819560592528433,30.504805419128388,30.15384265780449,30.331186369992793,30.316589687019587,30.60664884094149,30.4819221124053,31.026385955978185,30.283489048480988,30.848724205046892,31.079129308927804,30.156649622134864,30.121557718142867,30.886133588850498,30.001861807890236,30.866038982756436,31.591818617191166,31.410294491332024,30.987827769014984,30.61558536393568,29.625882741529495,28.987626610323787,28.970172960776836,29.015553296077996,28.492557688616216,28.970756637398154,28.94566563470289,28.008509398903698,27.341996839735657,26.70451376773417,26.20696034282446,27.024529637768865,27.90131097752601,28.376000322867185,28.922008780762553,28.45736085390672,28.708983914460987,28.315406455192715,28.094570816494524,28.66354553028941,29.01371069950983,29.135033771395683,29.45711737079546,28.49298170255497,28.56047307420522,27.94193240441382,28.154513124842197,28.06081996904686,28.07195320678875,28.195934614166617,28.797172269783914,28.625506083481014,28.5660756775178,28.559576051775366,28.5031975870952,28.18460967997089,27.82644515996799,28.371098349336535,28.16868001036346,27.762199921067804,28.60626728227362,29.471051591914147,28.61094286851585,29.40954048372805,29.501980918459594,29.914815896190703,29.580527482088655,29.790741117671132,29.431742584332824,28.521337076555938,27.854241938795894,27.715759046841413,27.092266702558845,26.95294825034216,26.235969670582563,26.472658196929842,25.971008215565234,26.57223445083946,26.73423554422334,26.833800764754415,27.56612088298425,26.74701522383839,27.109470107592642,26.235306930728257,25.488836624193937,24.938708786852658,24.604793372098356,23.729627441614866,23.90845309989527,24.421209977939725,24.010392154101282,23.69545531226322,23.64376283902675,23.623320458922535,23.73732587089762,24.151384199038148,24.99108682665974,25.72642973344773,26.17129544261843,26.94555908255279,26.44153599953279,26.38750294968486,25.924207522533834,25.738431596197188,24.824735852889717,25.567225908394903,26.336613449733704,25.357722180895507,24.45760950166732,23.887003416195512,24.675414755940437,24.725493600592017,24.2045008786954,24.803945156745613,24.58879706263542,23.952117923181504,23.555062571540475,24.470114537514746,24.302207767032087,25.0236394694075,25.945139272138476,25.43593268096447,25.25217416509986,25.229747698642313,25.951742173172534,26.513101381249726,26.808572427835315,27.22598403180018,28.197983956430107,27.80974944261834,28.409880773629993,28.44706503301859,29.434768703300506,30.37693223822862,29.570360094308853,29.373232731129974,28.795718850102276,28.52621525665745,29.36377758020535,28.800888509023935,28.41904928861186,27.58395007206127,27.966930117923766,28.264315866865218,27.326101082842797,27.693420293740928,28.333076459821314,28.469900474417955,27.615250053349882,28.537798753473908,28.775102275889367,27.868893552571535,27.16718585509807,27.013247821945697,27.48644800623879,28.346049102023244,29.17996115796268,28.656747460830957,28.81413080310449,28.11021995730698,27.214683882892132,28.05422635190189,28.76379656791687,28.426043586805463,28.1051501724869,27.49828494526446,27.132376306224614,27.032529977615923,27.150368652306497,27.919367023278028,27.817357648164034,27.978102720342577,28.87464202521369,28.868009041063488,28.742287266533822,28.060925427358598,27.367056355345994,27.071558848954737,26.227141702082008,26.185804513748735,25.787930716294795,25.044206568039954,24.990770534146577,24.390884545166045,24.997572977095842,24.443418522831053,23.808927938807756,24.78430652152747,24.226967682130635,24.08116370299831,24.513876035343856,25.17849174933508,25.447372858878225,24.712303093168885,24.295723782852292,24.807449146173894,25.06298691080883,24.837149089667946,24.845465540420264,25.15867843804881,24.6644023982808,25.251767615787685,24.26387185510248,23.508592968340963,24.030362438876182,23.64461567159742,22.701145954895765,23.056941683404148,23.344934908207506,23.91024236008525,23.40226669423282,24.09454789198935,24.388866405468434,23.695162393152714,24.486738642677665,23.5861293701455,23.99006774649024,24.35019593918696,25.07131497003138,25.729013713542372,26.311087680980563,25.44842883432284,25.51198677998036,24.850321154110134,25.73291243519634,25.682247929275036,26.237946734763682,26.381454662885517,27.058188611641526,27.915338759776205,28.097688517533243,28.085307481698692,27.37461496843025,27.777962730266154,27.324983128812164,26.74782552337274,27.03943049442023,27.799069163855165,27.030342749785632,26.36125479871407,26.4914359934628,26.705569809302688,26.887581820134073,26.011299103032798,25.94921575859189,26.179507449734956,26.879081749357283,26.680475327186286,26.025043800473213,25.027213976252824,25.298733577132225,25.272457384038717,25.499401262495667,25.89326522918418,25.286258838139474,24.691986167337745,25.502352900337428,25.648120743688196,25.69482688419521,25.02909643528983,24.7640999997966,25.523710252251476,25.135791828855872,24.665067479014397,24.63413202064112,24.38593422109261,23.59477199194953,22.819095762446523,22.988049779087305,22.324276926461607,21.787380149122328,21.339997614733875,21.89946575462818,21.001258327625692,21.0252191494219,20.120514968410134,19.533066446892917,19.495175055228174,18.680233744438738,19.0790551379323,19.271161905489862,18.54233129695058,19.49637406691909,19.091422863304615,19.86684282682836,20.364851384423673,20.014841539319605,19.901736355852336,18.98698346549645,18.756221286486834,19.335836374666542,19.989654928445816,20.130692965351045,20.704920770600438,20.617294907569885,19.93567552557215,19.467643569223583,18.553010835777968,18.97130170185119,19.11196604371071,19.33770900638774,18.502597073093057,19.431576244998723,19.199679268989712,20.133180999197066,20.432984826155007,20.48272271780297,21.21677598822862,20.222435609437525,19.388613680377603,18.866081493441015,18.242556748446077,18.26478895219043,17.993779115844518,18.036883008666337,17.924379558302462,18.028062940575182,18.44836362125352,18.74722685944289,18.922201198060066,19.20216797525063,19.75278891250491,19.21453767316416,20.055859889369458,19.8663974897936,20.20608337316662,20.205378188285977,19.78051744727418,19.67657205928117,20.02183624636382,20.450381188187748,20.10742272157222,20.76665934966877,21.528681150171906,20.86680032685399,20.81995906960219,20.01432832237333,19.683712271042168,19.501516010146588,19.77499616611749,20.415451851207763,20.228269666898996,20.744723248761147,20.826864279340953,21.073703156318516,20.68306380091235,20.1539970417507,21.05890662688762,20.69407093245536,19.988867301028222,19.092911683488637,19.194718937389553,19.066004561260343,18.39369236351922,18.911864222958684,19.14870372833684,19.383999346289784,18.754494046792388,19.44575948594138,20.320438622962683,19.516985164023936,19.0646722340025,19.443436560221016,20.363407630939037,20.874412319622934,20.037801030557603,19.624560568016022,18.652677732054144,18.27009107824415,17.64059981284663,18.580238157417625,19.299090834334493,19.929904092568904,19.71098078461364,20.070740694645792,20.728857402224094,21.306060852017254,20.926406676881015,20.956087267957628,20.753899889066815,21.02540983632207,20.31779930461198,20.830556681845337,21.41009177826345,21.08034876221791,21.938258004840463,22.409809804987162,23.374423697590828,22.60640420159325,21.63560317736119,22.42768477089703,23.340820651035756,23.298493157606572,23.91888580424711,23.212033838965,23.993662907276303,24.70876621780917,23.997848648112267,24.456659809220582,24.599744356237352,25.268546922132373,24.929080756381154,24.6156152067706,24.905808354262263,25.60692290402949,26.27881428785622,25.574015042278916,26.32344085490331,26.884299103636295,27.327952316962183,27.873697507195175,27.52833860879764,27.275944046210498,28.110209605190903,28.511060597840697,29.13415380846709,30.114399457816035,29.680302727036178,28.97051109932363,29.833875665906817,30.646263145375997,29.963322535157204,29.927416793070734,30.047533377073705,30.932005163747817,31.716475202701986,32.01225208863616,32.9269996243529,33.598638446070254,33.14025820791721,32.49174237251282,33.12292603123933,32.413685623556376,32.31179616646841,31.94113186467439,31.763461025897413,31.14389857556671,30.969967217650265,30.734599818941206,31.455405618064106,31.12654488859698,31.383793173823506,31.7889847420156,30.951387780252844,31.768298051320016,31.288640512153506,31.072358382865787,31.315854113083333,30.53653275826946,29.934340039268136,29.46718601649627,30.2241725535132,29.678872868884355,28.7624898487702,29.536776510067284,28.648456254508346,28.67005729675293,28.531702066771686,27.99151305248961,28.62609222345054,28.996948982123286,28.869367043487728,28.678304936736822,29.523783354554325,29.559184696990997,29.02477689832449,29.080352244898677,28.27655626134947,28.292261925060302,27.342471038457006,26.424723560456187,27.221904691774398,26.684658228885382,27.680488440208137,27.972106240224093,27.061595492996275,27.34505069628358,26.986605659592897,26.266937569715083,25.279264924582094,24.755482125561684,24.197063708677888,24.94157396769151,24.5651252316311,24.18505741097033,23.280469339806587,22.824992089532316,23.05430843262002,23.971652030479163,22.997109971940517,22.256727087777108,22.252038301434368,21.38875312684104,21.655138213653117,22.653943808283657,22.802247709129006,22.786832664627582,23.62440021149814,22.642992264125496,22.959127514157444,23.35617277538404,23.26279291836545,24.101553957443684,24.18695349385962,25.177045816089958,25.508653754834086,25.254936603363603,25.836894787847996,24.941384587902576,25.195340759586543,24.507083436939865,25.166900569107383,24.547103048302233,25.228104887530208,24.526118434034288,24.31138645298779,23.33210214972496,23.794241379015148,23.31073897378519,23.17126766545698,22.908189945854247,23.64217142155394,24.54790192237124,23.61005558213219,23.046980099752545,23.282292414456606,23.302340479567647,23.69315002905205,23.951743494719267,23.956286900211126,23.54041176335886,22.598768456373364,22.231824960093945,22.175536764319986,22.269810523837805,21.765756517648697,21.135722414124757,21.81816695490852,21.206497825682163,20.339767994359136,19.877946572378278,18.99443474272266,19.179583314806223,19.1877734628506,18.418648906983435,17.481706933584064,18.24964363873005,18.490904134698212,19.22122020740062,19.404882228467613,19.328167850151658,18.896373195108026,18.63798832334578,17.666173262987286,18.25851136352867,17.42267399094999,17.80502477288246,18.41807436570525,18.437274873256683,18.32156832376495,19.018568794243038,18.362534828018397,17.570633352268487,18.564158499706537,18.466453750617802,18.110203896649182,18.93424470955506,18.106999873183668,17.803484394215047,17.479521452914923,17.65328488778323,16.943586436565965,17.671929548028857,18.580726253334433,19.555769035592675,20.04402121063322,20.578543010167778,20.747672639787197,21.291686435695738,20.589054639451206,20.40882292110473,20.17104104720056,20.031452390830964,20.115284032654017,21.03161767218262,20.17426041001454,19.276602761354297,19.512535457033664,18.953203243669122,18.749499902594835,18.02876142039895,17.031872353050858,16.489826343487948,16.474765168037266,15.96449623350054,16.8145296969451,15.970163198653609,16.6335366810672,16.840123757719994,17.00149289565161,17.599821619223803,17.868328504264355,18.321642420254648,19.136791864875704,18.68375020707026,19.307375855278224,18.376130421180278,18.5848991679959,18.157894727773964,17.83813961967826,17.87859661737457,16.98508683918044,16.359556845389307,16.30852440930903,16.488817701116204,16.79108503414318,16.230274924077094,16.19241121597588,16.65875763911754,16.44979576114565,15.744658469688147,16.404358248226345,17.363187689799815,16.621578139718622,15.630143395159394,15.405729409772903,15.356753878295422,15.024181058164686,15.461410335730761,14.721913470420986,14.009528685361147,14.527540325187147,14.821400739252567,14.606710652355105,14.68384461896494,14.031920119654387,14.47315959399566,13.62343168957159,13.696540865581483,14.023958900012076,13.812878084834665,14.641789007931948,15.131352175027132,15.535937740001827,16.135057172738016,15.93629911961034,14.942526855971664,15.818790814373642,16.14595225546509,15.570204104296863,16.36470313789323,15.450464375317097,14.45894829602912,15.429544556420296,14.524778100196272,14.966337453108281,15.804220168385655,15.80014502396807,16.335285206791013,16.093349399976432,16.969872848130763,16.04624529927969,16.880792431533337,17.625146456994116,18.268566430080682,18.131911001633853,19.033577744383365,18.788561363704503,18.90930432267487,19.3045912431553,18.54106397833675,18.230367647483945,17.465011950582266,16.836821742355824,16.468376683071256,15.55173339927569,15.46141324006021,16.030329572036862,15.421218656469136,15.419046987313777,15.65939130494371,15.929951254278421,16.198758233804256,16.47592719970271,17.244499251712114,17.325752719771117,17.74158231820911,17.500029193703085,16.80101489974186,16.012844783253968,15.737032735254616,14.893815020099282,14.655179080087692,14.725708216894418,15.64953621244058,15.271217916626483,15.35243517626077,14.977038100361824,14.347939235623926,14.133337415289134,13.519954496063292,12.557851913385093,12.259194775018841,11.282522158697248,11.181056581903249,11.293674238491803,11.981935695745051,12.52197726489976,13.176378352567554,13.968061580322683,13.517191698309034,13.634204469621181,13.40703672496602,12.781850769650191,13.533919369336218,14.180680001620203,14.24279720755294,13.5203494024463,12.844143465626985,12.095028781332076,12.317694207653403,11.343806294724345,12.148290059063584,12.264141604769975,11.449258375912905,10.759908178355545,11.023410480935127,10.939236587844789,9.975896292831749,9.471380627248436,10.226281668059528,10.352311027701944,10.62454832578078,10.662049570120871,9.940660332329571,10.474488358478993,10.00401921896264,9.42686617700383,8.606640388723463,8.029125731438398,7.7519538826309144,8.088066558819264,7.93700636504218,7.25165384169668,7.576017462648451,7.696551623754203,7.540792006533593,6.84742384031415,6.153214951977134,5.526950012892485,6.302553629968315,6.535867995582521,5.589033406227827,4.871474895160645,4.2304720361717045,4.416175290942192,3.715306807309389,4.034259389154613,4.6359802996739745,3.850396073423326,4.1615672572515905,5.0521009038202465,5.962308552116156,6.493462472688407,6.64196215569973,6.544023786205798,7.455191259738058,7.196505581960082,7.794449011795223,8.619830090552568,8.412060611881316,8.50048799207434,9.217671059072018,9.880484918598086,9.947045823093504,8.973549447953701,9.732891685329378,9.53722320124507,8.815768324304372,8.299776771105826,8.597752006258816,7.897290827240795,8.34757823171094,7.505781955085695,7.541569424793124,7.200309781357646,7.731457322370261,7.399792883079499,6.829564577434212,7.780239459127188,8.289246659725904,7.669505608268082,7.159251530189067,7.416607070248574,7.386424425989389,7.303226344753057,7.27188588026911,6.952896874863654,7.101729322224855,7.960677455179393,7.236619078088552,7.897955877240747,7.966053737793118,8.78709319839254,9.056854449212551,8.075763499364257,7.909255825448781,8.624936871696264,8.199572820216417,8.536071295849979,9.427524767816067,9.024079013150185,9.221318177413195,9.76451661856845,8.994869955349714,8.585450354032218,9.023973831441253,9.452962077222764,9.457823981065303,8.622915738727897,8.803325649350882,9.58507228270173,9.194755375850946,9.834081459790468,10.02334408974275,9.51005497854203,9.226132922805846,8.968380874488503,9.591862419620156,9.045644336380064,9.006652814801782,9.706412653438747,9.61317490087822,9.097072550561279,9.361975233536214,9.142536080442369,9.9342418378219,9.840894423425198,10.170625851489604,10.765382005367428,10.230770708993077,10.463369281496853,10.561772453598678,10.26151883136481,10.46654506539926,9.894238089211285,10.08211505645886,10.960773174650967,10.290677885524929,11.194427457172424,11.638717455789447,12.069575123023242,12.122178980149329,12.556143632624298,11.68393712863326,11.823316073510796,11.547141312155873,12.010465119499713,12.379897344391793,11.541447022929788,12.191949371248484,12.364617178682238,12.420960809104145,11.443562391679734,11.181461656931788,11.977294933982193,11.230960293672979,10.465781662147492,9.949765094555914,9.742985914461315,10.69985495461151,10.019883411936462,9.588331067934632,10.405206949915737,10.128285249695182,10.245699232909828,10.118839765898883,9.750461411196738,9.582832308951765,9.304541934281588,9.493534300010651,9.850978398695588,9.761788305826485,9.762861995957792,10.0718216993846,10.4117934522219,10.813211996573955,11.623247686773539,11.653055446688086,11.781094708945602,12.565887186210603,11.9008620781824,11.813788693398237,11.598725803662091,10.61439347686246,10.366239570081234,9.916453060228378,9.432665615342557,9.282793559134007,8.308450701180845,8.46907724859193,8.153080532327294,7.683236715383828,8.425900982692838,8.73889859719202,9.045821739826351,9.259139504749328,9.58744296990335,9.570697393268347,10.124335827771574,9.911459661088884,9.396718055475503,10.12931456649676,10.527107175439596,10.43463195906952,11.38730224315077,10.408290873747319,10.295561806298792,10.25129133136943,10.898066078778356,10.918741989415139,11.916387108154595,12.856755246408284,13.650247526820749,14.452047770377249,14.449615767225623,14.473918925505131,13.49080301169306,13.98350632051006,13.44404660910368,13.247339147608727,13.004176651127636,12.43495751451701,12.532338913995773,12.527911802288145,11.953332648612559,12.470676948316395,11.548400647006929,10.962008096743375,11.540881706401706,11.64300662977621,11.287439011968672,11.025231398642063,10.949825780466199,11.3699254328385,10.83383687864989,11.790796071756631,11.635747836437076,12.172796413768083,12.27819366240874,12.494553433731198,13.151890513021499,13.365783793851733,12.44124816544354,12.361373394262046,12.026827176101506,12.357949868775904,11.48088366817683,12.170752213336527,12.303363958373666,12.79878458334133,13.42381318891421,14.03880839701742,13.753278801683336,14.595402148086578,14.932390592992306,15.729484701529145,16.71697248145938,15.941600741352886,15.642007273156196,15.065097231417894,15.092454648111016,14.239705316722393,14.538666459266096,14.35596361849457,15.149780351202935,14.960858965758234,15.15039974777028,15.250218194909394,15.837538121733814,15.272650253959,14.902206648141146,15.655264967586845,15.253498543985188,15.582114412914962,15.88105199066922,16.168459188658744,15.445081988349557,14.790868835523725,15.616361029446125,16.613747681025416,15.691031890455633,15.581602266989648,15.255092258565128,15.283676474820822,14.354758813977242,13.995723789557815,14.591886949725449,14.744791878387332,15.519504976924509,15.698472088668495,15.62425739923492,15.400686980225146,15.037799790967256,14.552381875459105,14.839884078595787,15.670234492514282,16.255724997725338,16.688933388330042,16.814992987550795,16.98161948379129,17.832563790958375,18.585011790972203,17.691413613501936,17.066560642793775,17.831580953206867,16.860928096342832,17.411845035851,16.620134480763227,16.5971789797768,17.119587734807283,17.321446044370532,16.6195832840167,16.62941442290321,15.807867420371622,15.401924713514745,14.505139181856066,15.338017658796161,14.847244208212942,14.731781427748501,15.62053659139201,16.136514864861965,16.428589812014252,15.53056287765503,16.10563836619258,15.747685386799276,16.28408822277561,17.251454247161746,16.52380358381197,16.159970828797668,15.384439262095839,14.863856973592192,14.922207492403686,15.13848384656012,14.98575957911089,15.580441398080438,15.080734764225781,15.426220810972154,15.624464938882738,15.0908432463184,14.334330279380083,14.061407842673361,13.198896737769246,12.69763194443658,12.898806801065803,13.303817459382117,13.381820235401392,13.610543275717646,13.959252858068794,14.028228649869561,13.567480888683349,12.586720735300332,12.998074328061193,13.095785946119577,13.60692856926471,13.575143214315176,14.557990886271,13.609714997932315,14.513000396545976,15.231831000186503,15.393941101618111,16.20024765562266,16.11531197000295,15.850538667291403,15.289483102038503,14.773381710518152,14.194857286289334,15.053106260951608,14.199824871961027,15.045243632979691,14.333737690933049,14.521852006670088,14.489896673243493,13.831346170976758,13.041593255940825,13.373198940884322,12.675992566160858,13.140856536570936,13.071208289358765,12.248902277555317,11.483838467858732,11.007815353572369,11.026083914097399,11.94824236864224,11.084748353809118,10.760296350345016,10.441064963582903,10.401659535244107,11.39226843137294,11.642856243532151,11.941515922546387,11.794761043507606,11.54647637763992,12.445189415011555,12.999871545936912,12.013064798433334,12.175025098957121,11.416660045739263,12.316048665903509,12.468738129828125,12.995127812493593,13.300115234218538,13.758033020887524,14.102406927384436,14.209977115504444,15.162503279745579,15.60613678721711,15.392240003682673,15.794903920032084,15.975534575991333,15.051475785672665,15.277966845780611,15.819237163290381,16.167150337714702,16.419004302471876,16.843870331533253,17.24505555210635,16.451062912121415,16.991169047541916,16.274683427531272,15.690470128320158,16.410174932796508,15.946095786057413,16.87850220873952,17.496404335368425,18.139827316626906,18.648924638982862,18.5422744192183,19.192044256720692,18.687384369783103,19.070809651631862,18.34120132541284,19.10474283946678,19.50978005444631,18.557468510698527,18.779757810756564,18.349544044584036,17.402927603572607,18.01980670588091,18.013392022345215,18.466745452955365,19.18204180523753,18.848340114112943,18.613521692343056,19.489030495285988,19.66753348847851,19.49871190963313,18.580712791532278,19.522508844267577,18.766362132970244,18.63951006345451,19.472161377314478,20.137641143985093,19.53055268106982,20.40935093117878,19.585048608947545,20.449261256493628,19.59775990853086,19.573403554502875,18.94306074967608,17.973409788217396,17.20497476775199,18.056693200953305,18.188274694606662,17.238260936923325,17.309641065075994,16.537760326638818,15.791855431161821,15.745892263017595,16.192432511597872,16.771190303377807,16.033958298154175,15.107295264489949,14.898433138150722,14.145813387352973,13.637054247315973,13.841158307623118,14.737210269551724,15.031453934498131,15.782706801779568,16.3208314711228,16.846763629931957,17.77033368870616,17.396211721003056,17.29686388000846,16.59996642358601,15.697275667451322,16.13240558747202,15.296332519501448,15.285975691862404,16.196798079647124,15.535090080928057,15.824195173569024,16.34129052143544,16.251866165548563,16.471782988402992,15.798740565311164,15.516133470926434,15.438180189579725,15.327022394165397,14.72287460975349,14.711098006460816,15.084720643702894,14.80684570223093,14.682494142558426,15.598028150387108,15.289276120252907,14.538656061515212,13.699621798470616,13.609542306978256,13.627217485569417,14.55943154450506,15.288430334068835,14.784025522880256,14.335849372670054,13.670401624869555,13.375349031761289,14.03682133788243,14.875541514717042,13.93392837420106,12.988729416392744,12.312348996754736,11.466924785636365,10.842130177188665,11.038416876457632,11.305162162985653,11.18321796040982,11.30480999359861,12.258402398321778,12.694015618879348,11.949646237771958,12.11815675906837,11.11921043600887,10.769729260820895,11.460188120603561,12.34820325486362,13.167112349532545,13.961981985718012,14.014799840282649,13.810260055586696,13.590288752224296,13.989993401337415,13.233468505553901,12.729470846243203,12.77500068815425,11.846186521463096,12.208619083277881,12.313821615185589,11.517987459432334,10.755569045431912,9.853525242768228,10.040221912786365,9.427057567518204,9.961047642864287,9.38352299341932,8.867577696219087,9.053712687920779,8.436847663018852,7.449737199116498,7.746617971453816,8.638153514359146,9.465152428485453,9.102170249447227,9.335866638924927,8.924674865789711,9.061302504036576,8.800723543856293,8.039535970892757,7.606470800470561,7.512272314634174,7.260293050203472,6.494304082356393,7.132009495981038,6.356167366728187,5.895994947291911,4.922666769940406,5.383255995344371,4.8232847936451435,3.9775569895282388,4.064062818419188,4.294659301638603,3.4424084802158177,2.6646441370248795,3.167467539664358,2.5752160348929465,1.8014470734633505,0.9037931151688099,0.05721413064748049,-0.8082355046644807,-0.12681148573756218,-0.7627021963708103,0.19253862835466862,-0.2517812638543546,-0.8559225173667073,-1.646251897327602,-1.3070559962652624,-1.7048246837221086,-2.5343546783551574,-3.338174741715193,-2.551084481179714,-3.1250575887970626,-2.863822295796126,-2.4231981807388365,-2.209255503490567,-3.0148212700150907,-2.9427092582918704,-2.988190801348537,-2.3751198137179017,-1.5307582928799093,-1.0760824610479176,-1.1802651225589216,-0.6463827984407544,-0.5574787445366383,0.23877654736861587,0.3050156841054559,1.1641828222200274,1.69220181228593,0.8640875481069088,1.2821160815656185,0.7205167138017714,0.599854361731559,1.4222435434348881,1.1200990546494722,1.6157523817382753,1.5611641402356327,1.4772075656801462,1.817963995039463,1.6357854064553976,2.0230250004678965,1.7628062893636525,2.12464666320011,1.8334102472290397,2.625825773924589,1.8940784987062216,1.1843779529444873,1.7817928651347756,1.043249670881778,1.6744821155443788,0.9181488901376724,0.049994639586657286,0.6814228966832161,1.232902237214148,0.4063257519155741,0.8647158807143569,1.3419184745289385,1.4629309163428843,1.8465812527574599,2.645806866697967,2.414670211263001,2.436903760302812,1.6769723007455468,2.4888147399760783,2.8396781333722174,1.8492329260334373,1.9914462906308472,1.0391731564886868,0.7738915244117379,1.6166841201484203,1.0852284505963326,1.8834288707002997,2.817817865870893,3.207074972335249,2.2587615977972746,1.5165733201429248,1.6689352109096944,0.8338764416985214,0.4632714563049376,0.3521269573830068,1.010408716276288,0.46611672174185514,0.6458999458700418,0.6988512128591537,1.547775421757251,2.212518261745572,2.618500775657594,1.971221317537129,1.092485448345542,1.464921633247286,1.2525661033578217,1.672450182493776,1.0057882461696863,0.7398233031854033,1.7105769808404148,1.9203405971638858,1.8701457167044282,2.1552254394628108,2.6157073555514216,3.5921297827735543,2.849999515339732,2.561959659215063,3.2172758197411895,2.5225014849565923,1.6929048541933298,1.133838460315019,1.4372678799554706,1.780895072966814,1.1799318003468215,1.375865891110152,2.2238777996972203,1.511776916217059,1.372871795669198,0.6221083449199796,0.024246215354651213,0.9723010757006705,0.9538006153889,0.42039741948246956,1.216912089381367,2.0411750311031938,2.542308977805078,2.772172251250595,2.6957975807599723,2.323796145617962,2.4739111312665045,2.890570741612464,2.116922290995717,3.113653549924493,2.399186223279685,1.573697186075151,2.2979693501256406,2.634560731239617,3.0221687825396657,2.836697748862207,2.6598280565813184,1.8184530180878937,1.3056862698867917,1.561730619519949,0.9255623347125947,1.38273002859205,0.9931878838688135,0.22847500164061785,-0.02070068009197712,0.6140582961961627,1.5547837978228927,2.4483812381513417,3.3197386828251183,2.6010721046477556,3.5506914304569364,2.6760064465925097,2.4097819584421813,1.8552813967689872,1.7279002126306295,2.7131982618011534,2.2861733566969633,2.297905749641359,1.729559342842549,1.8183863856829703,1.5875012748874724,1.0509230396710336,1.0244245915673673,1.5024083415046334,0.9583502584137022,0.38564188312739134,0.8028698405250907,0.4560621031560004,1.4448320381343365,0.8562042326666415,1.4358301982283592,1.926486270967871,1.8404470668174326,2.086816692724824,1.6301226327195764,2.45115252584219,2.0208246372640133,2.2806363804265857,2.018306845333427,2.4990437235683203,3.0969408000819385,3.110600555781275,3.050704049412161,3.5072519844397902,2.982960113324225,2.870861465577036,3.5976066715084016,3.282554571516812,3.569335049018264,3.176627832464874,3.6884699310176075,4.406199261546135,4.432318253908306,4.729041161946952,4.5189700946211815,4.683023306541145,4.840960612054914,4.905743502546102,4.189496989827603,4.425373296253383,3.672415866982192,3.8073266628198326,2.850193761754781,2.8581881863065064,3.7859098501503468,2.9745819964446127,3.8362006819806993,3.5114698484539986,4.326139657292515,4.669096674770117,4.749468823429197,3.7748411665670574,3.148134884890169,3.4972367440350354,4.294619620312005,5.025208625476807,5.510995739605278,5.2645725649781525,4.459479787386954,4.130209699273109,4.74262220505625,4.08214921457693,3.433577407617122,2.6741397650912404,3.277108497451991,3.4518700004555285,2.9192626606673002,3.6281392234377563,3.680943206883967,4.490048109553754,5.159722851123661,4.70524475350976,5.338126657065004,5.457050896715373,6.100054634734988,6.342692552134395,6.585115241352469,6.6965060024522245,6.253834950737655,5.888556804507971,6.120561839547008,5.408628629986197,5.726453357376158,5.845983502920717,6.2792823715135455,6.118189348839223,5.1860533761791885,4.278244385030121,4.5695285042747855,4.211697133257985,3.837783653754741,2.955166779924184,2.7666737088002264,3.6239495500922203,4.561067933682352,4.336514055728912,3.8457238827832043,3.8754288270138204,4.63432210823521,5.309463511221111,4.914983994793147,5.1050770548172295,5.313612305093557,4.64144057687372,4.337437265086919,4.959686596412212,5.446217714808881,5.140523906331509,5.049833377823234,5.4501694100908935,5.120228779502213,4.694960572756827,4.402070723008364,4.002370112109929,3.8632441079244018,3.572668429929763,4.471782719250768,4.002356656361371,4.357473939657211,3.7585754548199475,2.9118943056091666,3.2774049695581198,3.646348907612264,3.630899398587644,3.6712226942181587,4.376448753289878,3.8858905816450715,3.1616284367628396,3.079585566651076,3.3254630733281374,3.36140802083537,2.704714357852936,2.5197486160323024,3.078718215227127,3.7150560594163835,4.31343013420701,4.9103247206658125,5.257844597566873,5.075860474724323,5.70105578424409,4.842837998177856,5.397178682498634,6.085169751662761,6.795827521011233,7.1800382025539875,6.263366230297834,5.362580959685147,4.901286935899407,4.333374758716673,4.510185804218054,4.673879879992455,3.9696713048033416,4.939274502452463,4.559868838172406,5.042334354482591,5.4741910067386925,5.0742503041401505,4.907963598612696,5.563478583469987,5.858096094336361,5.0171663872897625,4.4784695277921855,4.791273394599557,4.412716131191701,3.671060254331678,3.729618596378714,4.114880037494004,4.226372307166457,4.037386651150882,3.1974998475052416,2.5754665941931307,1.9025191385298967,2.6283810483291745,3.5942424624226987,3.616640689317137,2.854339931625873,2.8915971466340125,2.0018150778487325,1.6131771802902222,0.7371435631066561,1.67871259059757,2.551056208088994,2.444128596689552,2.9132683724164963,1.9491365281865,1.215615025255829,1.0021307952702045,0.6445445856079459,0.07293729251250625,0.3772959946654737,0.7412948762066662,1.2706040344201028,1.584575392305851,1.7840955746360123,2.3701371802017093,2.5674568451941013,2.446046929806471,2.88897873647511,1.9166417755186558,1.0746740489266813,1.198990278877318,2.0899414056912065,1.618788872845471,1.7836052337661386,1.90145218744874,2.415523912757635,2.3086078320629895,2.8410497275181115,3.077435771934688,3.8946732142940164,3.5523235080763698,3.496097792405635,3.284481083508581,3.2029350609518588,2.471806248649955,2.689265448600054,3.4546134867705405,3.872133580967784,3.3014382640831172,3.393098727799952,4.072076647076756,4.7447715466842055,4.741030462086201,3.9208963639102876,4.0279509434476495,4.34956509526819,5.333172315731645,6.158062195871025,5.709969760850072,5.499565691221505,4.885181954596192,5.349526904523373,6.309710232075304,5.399308331310749,4.622968883253634,3.6563738537952304,4.241197993513197,3.9276479152031243,4.851546007674187,4.7782350913621485,4.507024739403278,4.429080964066088,3.476716917939484,4.331497470848262,4.176682984922081,4.678476755972952,4.806618450209498,4.01134283002466,4.358252566307783,3.584571609273553,3.7798848897218704,3.685809382237494,3.458840441890061,4.173063131980598,5.171623221598566,4.840093783568591,3.9926875378005207,3.8268551360815763,4.735932164359838,4.428891742601991,3.620928753167391,3.8375113192014396,3.070735872723162,3.055639252997935,2.4128770167008042,1.8553209835663438,2.5008939639665186,3.2943226685747504,3.674241282045841,2.6926896958611906,1.9411281780339777,2.3550901291891932,1.6189287113957107,1.0671249344013631,0.5741281658411026,0.3398191104643047,1.0420421450398862,0.38604537630453706,-0.34942121570929885,-0.6563792689703405,-1.2779396842233837,-0.3484907657839358,-1.2916180794127285,-2.041893623303622,-2.6421981621533632,-2.7784840152598917,-2.0859814332798123,-2.803643591236323,-3.0667767045088112,-3.9904119935818017,-4.695522224996239,-4.1834344933740795,-4.528749167919159,-4.9287235285155475,-4.100752073805779,-5.032151306513697,-4.579141111113131,-5.031954705249518,-5.68100502435118,-5.743723949883133,-6.285894799046218,-5.9186977674253285,-5.9854293167591095,-6.244346274994314,-5.348166911397129,-4.847805784083903,-5.247525398619473,-4.486336208879948,-4.830685070715845,-5.529812508262694,-4.533869464416057,-5.089213932398707,-6.02002077549696,-5.204350756015629,-4.755973077844828,-4.890609302092344,-4.393421431072056,-4.474457409698516,-4.117615286260843,-4.122627179138362,-3.2546901986934245,-2.9569989489391446,-2.117709921207279,-2.3513402780517936,-2.1727658179588616,-3.054493105504662,-4.028737066779286,-3.5123240742832422,-4.064524048939347,-3.6436369228176773,-2.977005892433226,-2.3828253061510623,-2.3613522024825215,-2.25572836631909,-1.4185627587139606,-2.143322725314647,-2.160592408385128,-1.4025604389607906,-1.528220537584275,-1.9677396682091057,-1.1981164128519595,-0.7104795603081584,-1.4928413070738316,-0.7700735726393759,0.141374618280679,0.2640175223350525,0.8230316182598472,0.10978371696546674,1.0050464221276343,1.666891806293279,2.6215132917277515,2.79700688412413,3.4184612347744405,4.1632021688856184,4.992394547443837,5.364554735366255,6.333442486822605,6.2371728722937405,6.413939434103668,5.479429206810892,6.129501943010837,5.89662725944072,6.298230062238872,5.827116976492107,6.67307197721675,6.812269928865135,6.7596624293364584,6.701861400157213,5.891890934668481,6.388506753370166,5.439343842212111,6.172200700268149,5.996864611282945,6.520951168611646,6.170963537413627,5.56828866712749,4.608723495621234,4.965942298993468,4.555521259084344,5.405256513971835,4.921975569799542,4.94987921603024,4.7310236264020205,4.556548593565822,4.882737436331809,4.3875668053515255,3.9814204960130155,4.776451590936631,5.353340644389391,5.029220695141703,4.96195566887036,4.13649065233767,3.9037798773497343,3.8709195936098695,3.160820947960019,2.861532799433917,2.97831555781886,3.6531681595370173,2.6980333384126425,1.72102628974244,2.25147735606879,2.106874915305525,2.5886307670734823,3.461569651030004,4.152396290097386,3.6804047008045018,3.8082746299915016,4.503183011431247,4.592303321231157,3.8866494526155293,4.233457337599248,4.017766487319022,3.736413878388703,4.0714384824968874,3.769774636719376,3.20459216600284,3.1931640836410224,4.059349895454943,3.3973693144507706,2.5689505389891565,2.762274991720915,2.390114912763238,1.6796913691796362,0.9186016004532576,1.4292648709379137,2.2554930546320975,1.8663271614350379,2.672441788483411,1.6993921548128128,2.3775373697280884,1.463361024390906,1.3600799376145005,0.8397132847458124,0.3831057106144726,1.3191481344401836,2.1097274306230247,1.1890399097464979,1.7256341855973005,2.564475259743631,2.656377447769046,2.863032088149339,3.707568193320185,3.2710195262916386,4.171371879521757,4.522126073483378,3.962009791750461,3.711492788977921,3.02773523889482,3.532155262771994,3.3884086720645428,3.3818528675474226,3.1795940343290567,3.0120230969041586,3.744581017177552,3.065237622708082,2.3639544090256095,2.790322534739971,2.459588452707976,3.255114189349115,4.126340014860034,4.462865570094436,4.69526899093762,4.058197110891342,3.1951197967864573,4.053774925880134,4.546405502595007,5.075770947616547,4.6601910730823874,4.923098464496434,5.789728333242238,6.146126520354301,5.950331903062761,5.8963432582095265,6.445541550870985,5.944839510135353,6.5097414017654955,7.471179805696011,6.569768642541021,7.542150360997766,7.7689275168813765,7.920517462305725,7.703463837038726,7.401438548695296,6.615365962032229,7.112474694848061,6.898445452563465,7.521334955468774,6.647695729974657,7.3052318333648145,7.338721263222396,6.9422711646184325,7.81448896182701,7.876588359940797,7.896213277243078,7.009841454681009,7.841012458782643,6.951710273977369,7.908186363056302,8.405595979187638,7.492639198433608,8.215597690548748,9.137163128238171,8.862158159259707,8.539205345790833,8.307649625465274,8.192654337733984,7.700345189776272,7.571478084195405,8.360770354047418,7.924565251450986,8.358545522205532,7.938272160477936,8.858799159526825,9.245578916277736,9.973992127459496,9.725616148207337,10.524425089824945,11.378725738730282,11.175226311199367,11.951430974528193,12.557579463347793,12.528925341553986,11.937263275496662,12.51603008294478,13.016287503298372,13.438144550658762,14.07050978159532,14.192291978746653,14.615184711758047,14.855498551391065,14.74236117862165,14.496494150254875,13.50177291315049,13.001376388128847,12.527263911440969,13.326791456434876,12.818895011674613,12.966820407193154,13.723199092317373,13.031048871111125,13.088131382130086,13.526498408522457,13.407749515492469,12.842658892739564,12.34316956344992,12.966189882252365,11.977367620449513,11.604271368123591,11.39611333142966,11.883004937786609,12.158505693078041,12.636768667027354,11.881724133621901,12.2328713061288,11.279853568878025,12.232983322348446,13.127958152908832,13.19513361202553,14.13833770621568,14.79888934129849,15.761356364935637,14.967424291651696,15.952732377219945,15.111920186318457,15.048104632645845,14.061885326635092,14.619075200054795,15.323655737563968,15.871470850426704,15.544485208112746,16.381344358902425,17.33638309687376,17.9461914813146,17.654219954740256,18.519028310663998,18.980806169100106,18.14175072684884,17.846038037445396,18.613742982037365,17.946619036607444,18.566906726919115,18.98386297049001,18.96215288946405,18.784714354667813,19.522478256374598,20.231715860310942,20.26682470785454,20.126357623841614,19.833834839053452,19.592757876962423,20.12991696363315,19.60449896659702,20.530001265462488,20.41534425225109,19.617750743869692,20.220666066743433,20.333675054833293,20.789055386092514,20.530082151293755,20.148175589740276,19.602155150845647,19.106189248152077,18.84834466362372,18.08417944703251,18.31354410480708,18.594148732256144,19.126878979150206,18.479985056910664,17.964485628996044,18.367192240897566,18.774106194265187,19.376419954001904,18.655398961622268,18.02297026477754,17.16763326060027,16.98039121925831,17.26836686814204,17.628190233372152,16.734246305190027,17.58287190645933,18.326779044698924,18.42349166655913,18.20379915740341,18.678664608392864,19.517644685693085,18.94382109446451,18.26283846469596,18.538587670773268,19.16745388135314,19.378757204394788,19.741218933835626,20.623722655232996,19.96231304947287,20.55142114125192,19.577996868640184,19.551615544594824,19.36135962884873,19.110972167458385,19.05563035560772,19.964405826758593,19.881233881693333,20.705003161448985,21.383829633239657,21.533593124244362,20.770094602834433,20.43583136284724,19.586637478787452,20.060586859472096,20.67375591257587,20.0420682458207,19.392408160027117,19.994091211352497,20.74218813702464,21.67421232163906,20.919631012249738,20.13198841083795,20.876696127466857,21.37423726124689,21.259220140054822,21.13649090565741,20.560646548401564,19.99260928761214,19.727366236038506,20.652579297311604,20.982383624650538,20.96811701124534,21.234411561861634,21.217101318296045,21.63903431361541,21.001872891094536,20.461530725006014,20.98738500662148,20.62179915746674,21.234519793651998,21.17913572443649,21.300089986994863,20.308623732533306,19.835784386843443,19.45770236942917,19.429136742372066,18.78626374946907,18.05703921476379,18.585349875036627,17.972252685576677,18.942716200836003,19.846665573772043,20.501859108917415,20.314794812351465,21.158431579358876,20.954132936429232,21.56359645212069,20.915995466988534,20.15418950235471,20.967124516144395,20.022710805758834,19.93567387619987,20.249199960846454,21.05787675222382,20.23342746961862,20.979229455813766,21.470477460417897,22.101311191450804,22.741240446921438,22.080638147890568,22.240112125407904,22.192980974912643,22.291536853648722,22.669852894730866,22.836045207921416,23.310250318609178,23.89923621993512,23.001466162037104,23.46051487000659,23.5909215323627,22.714665512554348,23.529368506278843,23.883054219186306,23.765582936350256,23.92379838647321,24.20541515527293,24.599729540757835,25.05660001002252,26.024065933655947,25.754228870384395,25.2232739883475,24.6874061669223,24.489244274795055,25.079590886365622,25.777506914921105,26.66676701977849,27.505817372817546,27.382292535621673,27.742191224358976,27.660995239391923,26.90012419084087,27.596952334046364,27.022813658695668,27.208401480223984,26.3391828793101,26.316109096165746,26.37542540114373,26.14485973631963,26.018509868066758,26.49767539370805,27.095899876672775,27.74675973225385,28.275889858603477,28.237310932017863,27.741247647441924,28.21923531824723,28.38506140653044,27.542989522218704,28.392919359728694,28.10200120927766,27.621785160154104,27.040805316530168,26.7758607622236,27.674235507380217,26.69375139242038,25.83737892145291,26.758683713153005,26.396201343275607,25.868529292289168,26.30097145214677,26.043240564409643,25.136577324476093,24.165526372846216,23.402251943014562,23.292414160445333,23.44388360902667,22.66098968591541,22.97167344065383,22.80726815480739,22.37121846852824,23.151980180758983,22.398098207078874,22.298851897008717,23.02975062467158,23.158285233192146,22.356022807303816,22.43140058638528,21.852504716720432,21.98682419816032,22.488371937070042,22.360508582554758,22.427261711563915,22.948138814419508,23.02452928479761,22.431547571439296,21.433712368365377,22.240002807229757,22.87006888957694,23.242495192214847,23.15999811887741,22.249538658186793,21.743320230394602,22.267480578739196,21.812342076096684,22.75588589347899,22.202826370485127,22.455851373262703,21.692100152838975,21.916011825669557,21.369462033733726,22.32101950282231,22.133756180293858,21.935283838771284,21.470419756136835,21.581489577889442,20.87936542974785,21.531577330082655,22.335839192848653,22.944675740320235,23.2244749837555,23.559572342783213,23.402898504398763,23.22828704910353,23.930703764315695,24.281138743273914,23.592486388981342,24.167177179828286,24.991023836191744,25.108144317753613,25.96079642791301,26.56188464257866,26.206206189934164,25.787735839374363,26.567770909983665,25.619610304944217,25.974720719270408,26.774875935167074,26.173841517884284,26.579948934726417,27.271042378153652,26.703510170802474,27.099345218390226,26.57207491900772,26.330279677174985,25.64434566674754,24.89381211483851,25.36210768483579,26.236643290612847,26.24409747775644,26.932614787016064,27.812938193324953,27.322068765293807,26.91940007917583,26.083222669549286,25.348636246751994,24.839383816812187,25.35695259971544,25.164043223951012,24.21303904382512,25.139125843066722,24.93128006067127,24.278456368483603,23.849765246268362,23.07039616908878,23.26714418362826,23.566443042829633,22.58331346185878,22.488514092285186,22.558927080594003,21.97377957124263,22.537904181983322,22.202588193118572,22.40724481921643,21.557047752197832,22.487347492016852,22.34598747640848,23.320922321639955,22.776121666189283,21.915260178036988,22.039757773745805,21.1603784840554,22.0586651628837,21.494288710411638,21.96294763404876,22.777487189043313,23.742636048235,23.35672831442207,23.390767836477607,23.89825086016208,23.843229849357158,22.98005866445601,23.34787860326469,23.823928042314947,24.370686440728605,24.454305675346404,25.394184106960893,25.066008513327688,25.890153663698584,26.4499180233106,27.368017389904708,26.614025704097003,27.35853245621547,27.60284603666514,26.995645634364337,26.63773504877463,26.82478088280186,27.026034195441753,27.134402692317963,26.52118747960776,27.31563777476549,27.07691777823493,26.707014522049576,25.89512619562447,25.023152109701186,25.546372298616916,24.607663205824792,24.14320425549522,24.89305356051773,24.590433347504586,24.43356074905023,24.029165072832257,23.04766527749598,23.091124776750803,22.794901828747243,22.452994952443987,23.32606741320342,24.270867897663265,23.42734338948503,24.10032313875854,23.297132812906057,22.46867101546377,22.901605885010213,21.980814651120454,22.020288669038564,22.752900978084654,23.13172881724313,23.339662339538336,23.496831359807402,23.403236997313797,22.951426712796092,23.19269166653976,23.831215218640864,24.018032459076494,24.649337818380445,24.127740249503404,24.270480120088905,24.874330109916627,23.88154701748863,22.88339194469154,22.225974895525724,21.731651747599244,21.742162205278873,22.6611305763945,23.627684568520635,23.03588641108945,22.50438515935093,21.552417086903006,22.306072492152452,21.714073422830552,20.790395071730018,21.16975812567398,22.12782685831189,21.28697476349771,21.05141025967896,21.74077528528869,20.87809699214995,20.956695414613932,21.289132312871516,21.01833150163293,20.08805070258677,20.077520952560008,20.158843393903226,20.393839227966964,20.059883723966777,20.484690833836794,19.992507898714393,19.863295005634427,20.737541769165546,21.602315997239202,20.882684295997024,21.50096524413675,20.760316769592464,20.401048787869513,20.47394948080182,19.76344564044848,19.193152217194438,20.101913288701326,20.00695150438696,20.710917969234288,21.256647816393524,22.151829747948796,22.963122087996453,23.829977659508586,22.861056874040514,22.405498957261443,22.568285854067653,22.276564203202724,22.982135641854256,22.558976653032005,22.425328286830336,22.469317784067243,23.171267168130726,23.68431883212179,23.261817371938378,22.58956529945135,22.431972211692482,22.303914659656584,23.303517876192927,22.962552356999367,22.92981446860358,23.76977887796238,24.59227709006518,25.547694833483547,25.388643472921103,24.908517464529723,24.99294075043872,25.81998083507642,25.066814854275435,24.193279358092695,23.26937005110085,23.200696350075305,23.705437587108463,24.39099961379543,23.529318490065634,22.648928170092404,23.062230168376118,22.465972331352532,21.972615049686283,21.091868851799518,20.408045277465135,19.55822265613824,19.20330689428374,20.01919842744246,20.25002450682223,21.09812546381727,20.520350283011794,21.41293765651062,21.758154769893736,21.92051511676982,21.62879181234166,22.013259998057038,22.515567623078823,21.602238711435348,22.027822403702885,22.935893332585692,22.500302062835544,23.11094726389274,22.23072815919295,22.071034168358892,22.544468234293163,21.548088552895933,21.373676844872534,21.493874237407,22.03271217830479,22.260325975250453,21.723543128930032,21.226969223003834,20.660069229081273,20.815586419776082,20.76021429616958,20.82439440768212,20.51292437221855,19.592628214508295,20.11831493815407,20.269678554031998,19.90154120605439,20.017569091636688,20.186109732370824,21.157623461913317,21.511057849042118,22.46649828599766,23.23342299228534,22.254802382085472,22.245590769685805,22.539494294207543,21.722079968545586,20.916896651033312,20.330824365839362,21.28773010056466,20.956425320357084,20.341993054840714,20.044423528946936,19.424095881637186,18.93408963130787,18.118765738792717,17.486848026048392,17.72746548242867,17.380218519829214,16.83408313151449,17.155325528234243,17.567694689612836,17.929921930655837,17.696060610935092,17.518308451399207,17.19582634884864,16.98711865581572,17.46130949538201,17.438837085384876,17.436297783628106,18.277594009879977,19.11079698149115,19.625902845989913,18.94074056716636,18.226960404310375,17.271962493658066,17.31898055691272,17.322799989953637,17.180564927402884,17.582022425718606,18.196777299046516,17.796704250387847,17.39632968697697,18.290680869482458,17.411652482580394,17.43901190534234,16.771022655069828,16.43869139254093,15.538273910526186,16.121663162950426,16.454365640413016,16.633944536559284,16.721380354370922,17.68883823789656,18.615160097833723,19.355546281673014,18.83639601105824,18.295953639782965,19.289878107607365,18.69280421314761,18.70201878575608,17.70668353140354,18.212272252887487,18.052927854005247,17.074057686608285,17.406172590795904,17.766242044512182,18.71002561924979,18.756743209436536,18.58499093912542,18.684066123794764,18.189567430876195,18.720827934332192,18.377624858170748,18.389992943499237,18.362789429724216,18.973558187950402,19.91391070233658,19.753025950398296,20.63457140699029,19.945618559140712,20.362505804747343,19.584120049141347,20.31633700290695,21.050568824633956,20.76145575987175,20.110662069171667,20.425945995375514,19.469502386637032,19.172104574739933,19.713493639137596,19.49089602706954,19.501234482973814,19.97635673545301,20.004482738673687,20.50279208039865,20.4751340681687,19.52874098205939,18.845245727803558,17.926626231521368,17.46099042473361,16.549230554141104,17.26800729613751,16.797966830898076,16.283483620733023,16.196086175739765,16.264762505423278,16.504109419416636,17.016630105208606,16.7384311161004,15.845519428141415,15.067399018909782,14.669815291650593,15.233827393501997,15.692796265240759,15.231554967816919,16.15774415107444,15.165136565919966,15.441486558876932,16.11985903652385,16.254995476920158,16.888481358997524,16.01494308654219,16.865100307390094,15.930093811359257,15.402310078963637,16.163231848273426,15.484996216837317,14.793018830940127,14.342387392185628,14.62962361657992,14.088028398808092,13.579197697341442,14.447615813463926,13.944377387873828,13.722419714089483,13.754885507747531,12.831771860364825,13.813500904478133,13.037502938881516,12.0890036332421,12.03924391278997,12.123480677139014,11.371864111162722,10.669840511865914,11.6440822891891,12.520373470149934,12.8426871788688,11.951100019272417,11.604865083936602,12.343493635300547,11.840920575428754,12.318042155820876,12.51252240454778,12.444730347488075,13.328810614999384,14.017006613314152,13.121053830720484,13.643399170599878,12.671433761715889,13.21042613685131,12.645721819251776,11.696734639350325,12.235848687589169,11.94560159323737,11.177944058552384,10.889380146283656,10.021901748143137,9.767720170784742,10.122319233603776,10.09754847874865,9.747491245623678,10.706140832975507,9.79676426621154,9.879377097357064,10.485903265420347,11.228330094832927,12.219632908236235,11.429021203424782,10.994162584189326,10.131542635150254,10.402386234141886,9.90878196572885,9.793372184038162,9.538677944801748,9.112781607080251,9.879430034663528,9.751032445114106,10.195608938112855,9.279955381061882,10.06680220644921,10.62734139431268,10.07790450192988,9.866853022016585,8.880654536187649,9.294070319272578,8.495217104442418,8.531622499693185,7.5930858557112515,6.743986668530852,5.94526803586632,5.195744044147432,5.387256553862244,5.8104951973073184,6.150165969040245,6.246970080770552,6.658503517974168,6.4921237337403,6.15733326273039,5.973874529358,5.994786696508527,6.843571943696588,6.623290449380875,7.601093512959778,7.895344315562397,7.856038598809391,7.166076626628637,6.46682812506333,6.125774122774601,6.332515707239509,6.288163112942129,5.334698576014489,4.482973514124751,4.507150946184993,4.489391882903874,4.0731382495723665,3.2848699358291924,2.903429626952857,2.794244817458093,3.0494572166353464,3.1875723083503544,3.435606342740357,3.35672287363559,3.46397515386343,3.618415603879839,4.325860435608774,3.7637909832410514,4.7252307729795575,5.558081443421543,6.301232004072517,5.656470577698201,5.769230104517192,5.622332975734025,5.297781201079488,5.374042533803731,5.612512049730867,5.608110097702593,4.617365833371878,5.510165074840188,5.267697806935757,5.8560711946338415,6.74574719555676,7.527908148709685,6.631700175814331,7.457119044847786,7.529917254578322,8.35938592767343,9.275889893062413,9.125563645269722,9.979138909839094,10.9279885427095,10.58707486325875,10.397025644313544,10.761622316669673,11.373117988929152,12.260308132041246,12.027736950200051,12.185648238286376,11.575152956880629,12.23302093660459,11.839409420266747,11.928991899359971,10.969131087884307,11.862441017758101,11.542085516732186,10.916414206381887,10.368883361574262,9.922375129535794,10.366479949094355,9.384252423420548,9.548077371437103,10.219589130952954,10.040982708334923,11.0306236743927,11.280458932742476,11.307504445780069,10.436976633965969,9.567534361965954,9.813989892601967,9.769521697890013,9.613195041194558,9.539613788947463,10.532819745130837,11.21595736965537,10.778385859914124,11.221206741873175,12.202240374870598,11.399416466243565,11.408705642446876,11.255303530953825,11.622902701608837,11.04074333794415,11.978240861091763,11.430933897849172,11.144198180641979,10.290659905876964,11.02290089102462,11.683049532119185,12.364807373844087,12.086894184350967,12.259592164307833,13.128458234481514,13.661785140633583,13.679588998667896,14.2615776672028,14.257016183808446,13.573173424694687,12.688648417592049,13.121227307710797,13.555722694844007,13.794485217891634,14.011206552386284,13.458809626754373,14.145963847637177,14.824784660246223,15.049331713002175,15.945369815453887,16.619572735391557,16.204676534049213,16.417898283340037,16.401196002494544,15.915206364355981,15.343583395238966,14.845096567645669,14.621607578359544,13.776969117578119,13.743013476021588,12.999317869078368,13.892296005040407,13.485878383275121,13.84626118093729,14.513488794211298,14.556730005890131,14.54960701521486,15.02226048335433,15.425698746461421,14.632732986472547,15.245784977916628,14.339562010020018,14.24805203359574,14.585791698656976,13.729656009934843,13.151710148435086,12.24127066321671,13.133275636006147,13.364134458359331,14.19592664623633,13.553378097247332,13.162474733777344,13.378143780399114,14.250724289566278,13.852723457384855,13.058826740365475,13.069296819157898,12.275224183686078,11.793909910600632,12.108672767411917,12.132391061168164,12.439114280510694,12.792331544682384,12.866280104964972,12.698349873535335,13.023220362141728,12.627991147339344,13.165584467817098,12.281426700763404,11.822522439528257,12.201064120978117,12.902379374019802,12.397745258174837,13.376513772178441,13.559688080567867,13.300641999114305,12.92326431022957,12.223343532066792,12.302131539210677,12.845247074496001,12.106909723952413,11.651330084074289,12.641497715376318,12.085127094760537,12.443406817037612,12.81388312485069,12.677323881071061,12.52004713891074,12.906075562350452,12.314238638151437,12.070077914278954,11.428461213596165,11.980880936142057,11.480497980955988,10.54667362710461,10.968063431791961,11.335430700797588,11.811202747747302,11.071621224749833,11.624406598042697,11.071496083866805,11.067336041945964,11.213239424861968,11.044945910573006,10.696603188756853,11.509561996906996,10.897163630463183,10.102252419572324,10.671870925929397,10.866768231149763,11.035996295977384,11.139032378792763,11.454333828762174,11.13592714862898,10.181515453848988,9.647104314062744,9.210064390674233,9.913528228644282,9.435955703258514,9.460779840592295,8.535177804995328,9.03255307674408,8.580593084450811,9.467574456240982,9.808749984949827,10.61651426460594,9.959631018806249,10.221557669341564,10.96473185904324,11.736882725264877,11.260114233009517,11.813016761094332,11.993750075809658,11.774424873758107,12.666166676208377,12.360591522417963,12.670755419880152,12.439434554893523,12.957873680628836,12.02085137879476,12.050230815075338,11.777878943830729,12.46800122782588,12.521158188115805,12.192812442779541,11.663209111895412,12.659899655729532,12.760982608422637,13.00750078773126,12.135967975016683,12.167686058674008,11.605290832463652,12.394865285605192,12.021865719929338,12.519020156469196,12.556513426825404,12.537674841936678,12.404218756593764,11.50950898649171,11.423489562235773,11.613956718705595,11.279570864047855,11.792531253769994,11.518279866315424,10.934003949631006,11.055025752168149,11.340084055904299,12.066347560379654,11.892534676473588,10.951920668128878,10.501972756814212,10.549778013955802,10.601788340136409,10.442399909719825,11.439341880381107,10.564911734778434,9.569217354990542,10.112113612703979,11.100342858582735,10.397902098484337,9.87832799507305,10.628339957911521,11.368641714099795,12.2609734935686,11.657089760992676,10.714810556266457,11.688287253957242,10.7729954412207,10.994027754757553,10.748977590352297,10.005446780938655,10.421235589776188,11.411515756510198,12.003566909115762,11.249312259722501,11.413162056356668,12.016153182834387,12.405831349082291,11.531728584785014,11.047061154153198,10.654128250665963,11.295319363474846,10.959223953075707,11.148698436561972,11.07513398770243,11.365692402701825,10.625982273370028,9.946902412455529,9.368058967869729,9.551931691356003,9.290752130560577,10.147951100487262,9.67294162278995,8.828193481080234,9.58669514209032,10.209138754755259,10.448065206874162,9.460490898694843,9.289425015449524,9.205773592926562,8.268687676172704,7.320632643532008,7.046599032822996,6.6340722274035215,7.2307418417185545,7.441385510843247,7.147657558321953,7.2869725483469665,7.8279718505218625,8.592893405817449,8.165561883244663,9.07559678517282,8.505923541728407,9.236700956709683,10.188310478813946,10.318454898893833,9.985571621917188,10.453799075912684,11.375095951836556,10.79110210062936,11.41554447170347,11.986847572494298,12.827734810300171,13.693921013269573,13.642788792029023,13.420826132874936,14.198863739147782,13.797643628902733,14.057405709289014,14.529150431510061,14.041563165839761,13.509722122456878,12.841009079478681,13.193385487888008,14.174902383703738,14.312525699846447,14.764355204068124,14.396609394345433,14.30536524578929,14.376970974262804,14.537532722111791,15.220959746744484],"z":[-116.15359817398712,-116.83907321467996,-117.28236135933548,-116.29345874814317,-117.0316583882086,-116.10293511394411,-116.49398715700954,-117.02723570540547,-117.16353783477098,-118.10733392741531,-117.29075790615752,-116.4336761678569,-116.59976908331737,-116.5532065234147,-117.37364709144458,-118.14394009904936,-118.8720231265761,-117.93374084169045,-118.8236602912657,-118.44793585361913,-118.82584696868435,-118.53653790056705,-118.6092978445813,-118.12526919972152,-118.42359307454899,-118.09041234478354,-117.77588414493948,-118.16897400934249,-117.64663238218054,-117.27129832468927,-116.71048087859526,-116.0423177164048,-115.2186224409379,-115.98564061895013,-116.37695159344003,-116.69243148947135,-116.93477099156007,-116.23236562684178,-115.3229355593212,-115.3069535982795,-114.57976337149739,-115.0634357673116,-115.35321642551571,-115.26470236247405,-114.56981782615185,-115.27375547308475,-116.1927079744637,-115.8790847780183,-115.87775254435837,-115.61800758121535,-116.59301670221612,-116.837162906304,-117.29653138807043,-116.65402668062598,-116.7318176208064,-117.19262205809355,-118.18053371179849,-118.82430172571912,-119.6821955498308,-118.77004896383733,-117.77526772767305,-118.56488780118525,-118.94309016456828,-119.27391651133075,-118.66512000467628,-119.27051958767697,-118.4273213846609,-117.69032616447657,-117.93559596315026,-117.03654951788485,-116.79708672175184,-117.07977370219305,-116.61678253207356,-117.21299267187715,-117.11542640160769,-117.48561085108668,-118.23505168966949,-117.68671214394271,-117.45284222159535,-117.49789616279304,-117.92646156204864,-117.19404480746016,-116.29240056918934,-115.30606652982533,-115.85573356412351,-115.54460246954113,-115.14583708811551,-114.31885545235127,-114.82037947606295,-114.26959753362462,-114.72893294738606,-114.10217659547925,-113.21435275254771,-113.45286136167124,-113.90287425275892,-113.82841288857162,-113.1174730649218,-112.61490082601085,-112.69126302516088,-112.14192270534113,-111.9960797992535,-111.7292237658985,-111.92157667782158,-111.08505718084052,-110.62116806488484,-110.56800859607756,-110.18981004646048,-110.56796624977142,-110.33764696819708,-110.35014219488949,-109.5327153513208,-110.42863026959822,-110.04671028535813,-109.33812314085662,-109.22390856454149,-109.78641117317602,-109.48610896850005,-109.19771385099739,-109.48992463713512,-109.18269590521231,-109.13656360795721,-109.33131189737469,-109.34574199235067,-109.46039428841323,-108.9366555288434,-108.38825062615797,-108.06193975219503,-107.98972553620115,-108.61261996347457,-108.10696776909754,-108.4309821552597,-107.77261309698224,-108.16431064764038,-107.7498764838092,-108.16996674146503,-108.67071182327345,-108.85377749288455,-108.60775599395856,-108.2409731685184,-107.33395122736692,-107.70005366066471,-106.74826077977195,-106.88128973543644,-107.05908217653632,-107.59500035597011,-107.03521149745211,-106.44798535713926,-106.26886089565232,-106.77006496442482,-106.96363690122962,-106.49644695362076,-107.48428597021848,-107.48018538858742,-107.586000808049,-107.80924562225118,-107.7428166018799,-108.02619398431852,-108.47260998841375,-109.37800604477525,-109.33988758409396,-108.46901638898998,-108.71131428470835,-108.69135979795828,-109.4191606035456,-108.73070661909878,-108.20866257185116,-108.6176725528203,-108.78683424461633,-109.5774231958203,-109.47233876027167,-109.99736939696595,-110.38287686929107,-111.10844007506967,-110.20524905622005,-109.45957341929898,-110.2988264975138,-110.13185939844698,-110.25510562956333,-109.85130368405953,-108.85398319084197,-109.00846532732248,-109.1510766344145,-109.25612293044105,-109.20075468160212,-108.58396983565763,-109.26501704985276,-109.83408842235804,-109.46323191607371,-110.19144960353151,-109.33577254740521,-109.79521825769916,-110.15918864123523,-110.15382890962064,-110.76383703481406,-110.17383104609326,-110.22872646944597,-110.20097903395072,-110.38068322371691,-110.0756308408454,-110.6634602593258,-110.25615275464952,-110.72907094145194,-110.5100691425614,-111.14577902201563,-111.40772802988067,-112.05441892845556,-111.32762297103181,-112.22919130139053,-112.37328600138426,-111.43182468693703,-110.9296958912164,-110.89605833264068,-110.37782291928306,-110.81003934098408,-109.98035734845325,-110.57357009220868,-110.62711711227894,-111.52914111642167,-110.59695978229865,-110.85047483444214,-110.14829446235672,-109.48717817477882,-109.6757292104885,-109.0089529841207,-108.80550229176879,-109.70524536306038,-109.19302760483697,-108.86944484943524,-108.60952580207959,-108.87282562674955,-108.63042542943731,-108.6384860444814,-108.13279962586239,-108.05611506197602,-108.15771636134014,-107.71612042654306,-107.80803699418902,-108.41182858450338,-107.78234268398955,-107.43505674088374,-106.76776844635606,-107.01452498883009,-106.0929208304733,-106.96666333451867,-106.82366104796529,-106.15570268779993,-105.92304205428809,-105.8331348951906,-106.82748548267409,-107.62089460203424,-107.32620995584875,-108.26884029246867,-107.4762967270799,-106.56857206579298,-105.8194900136441,-105.58104266785085,-104.70749037899077,-104.78009600797668,-105.77539451699704,-104.90042515331879,-104.86457345401868,-104.02760894689709,-103.80545373959467,-104.28862621961161,-105.15579259674996,-105.66527636162937,-105.30634156800807,-105.6727986689657,-106.3110044002533,-107.17001761309803,-107.47117273230106,-108.43415032653138,-108.40078691625968,-108.05630851816386,-108.88854968966916,-109.52997653465718,-109.5491386433132,-109.59169188095257,-109.11810649791732,-109.04364037839696,-109.665992973838,-109.88556497404352,-110.35664510168135,-110.5898259114474,-111.20908266957849,-111.74325179401785,-111.0957872425206,-111.66956072719768,-112.0011327075772,-112.26848536450416,-112.81010611588135,-112.59612502995878,-112.34473994933069,-112.72738405643031,-111.97307667136192,-112.43999805953354,-111.91798350354657,-112.91147434897721,-112.19603201420978,-111.40315879276022,-111.08997014351189,-110.84264144161716,-110.39484739257023,-111.17640755092725,-111.72096524061635,-111.07191157294437,-110.68735472951084,-110.36272588791326,-111.31125971674919,-111.87486038776115,-111.5198017321527,-110.55199837079272,-110.63580685202032,-110.56138041615486,-110.11561426660046,-110.51736149564385,-110.58664692286402,-111.14600388938561,-111.91159822419286,-111.35388125060126,-111.82144696358591,-112.0129731236957,-112.46193362120539,-111.4758107769303,-112.19680324662477,-113.17568904627115,-112.28753886325285,-112.36907134903595,-112.64749389141798,-111.71206526784226,-111.7803916442208,-112.59444591682404,-112.11434887256473,-112.97754929494113,-113.54062223853543,-113.82222857233137,-114.6952170250006,-114.04327427176759,-113.76885469211265,-113.53604695433751,-112.75710596190766,-112.10835910355672,-111.20479614567012,-112.07343636918813,-111.70074332598597,-110.84559555351734,-111.1834340649657,-112.04065647954121,-112.49912592815235,-111.99310902878642,-111.14715827535838,-110.58260829700157,-111.09367183595896,-111.29094282863662,-112.14860541978851,-111.81960799312219,-111.45280528673902,-111.1039669229649,-110.9795770291239,-111.07966871466488,-110.11099805915728,-110.0526768178679,-110.03866563271731,-109.5618432876654,-108.89635028131306,-108.81588359316811,-109.71599520603195,-109.35092556476593,-110.07352025667205,-109.514420052059,-108.86971969436854,-108.48213896108791,-109.16860733600333,-108.84574479795992,-109.14890049397945,-108.4204320795834,-108.97225430142134,-108.62498071650043,-109.07961626118049,-109.44234705809504,-108.63931191666052,-109.61410249071196,-110.36391152907163,-110.1030711424537,-110.28224186366424,-110.47215287853032,-110.18265937222168,-110.83893762622029,-111.39021402597427,-111.06313211657107,-111.52570004295558,-111.60034219175577,-110.75772515963763,-110.88311703782529,-110.79557684296742,-109.82214784668759,-110.262356932275,-110.02118166116998,-110.80789479846135,-110.53116630762815,-109.98255366832018,-110.06064916495234,-110.77062384178862,-111.17774483561516,-111.22361583495513,-111.58513243123889,-111.88454288383946,-111.93259787466377,-111.9396918010898,-111.32809917721897,-111.30338659184054,-110.34087801491842,-109.52198503864929,-109.56440331041813,-108.99695687927306,-109.33918826188892,-108.36241291603073,-107.60952873062342,-107.64587063388899,-106.71783125353977,-107.12186741922051,-106.91121116280556,-106.84324265643954,-107.30157724721357,-106.33333022566512,-105.9803445613943,-106.10048598516732,-105.83624715078622,-105.3460843199864,-104.56357220746577,-104.30591655662283,-104.06602927995846,-103.29885256988928,-103.27401671512052,-104.14404168445617,-104.44526876602322,-105.19692125311121,-104.97233876911923,-104.96353811724111,-105.949599200394,-105.21323373261839,-106.12260265275836,-106.71540472377092,-107.54992563929409,-108.24017897853628,-107.45295168226585,-106.721943564713,-105.7861209763214,-106.11315178358927,-107.03554706508294,-106.9157743640244,-107.40620389720425,-108.24134864471853,-108.96145876450464,-108.6478390279226,-108.58146535838023,-107.63835426559672,-107.79560682550073,-107.21657392336056,-106.69298024615273,-106.87148054176942,-106.74785532895476,-106.81097405590117,-107.4096782640554,-107.82115562679246,-106.8656490133144,-106.20621396647766,-107.03417596314102,-106.77352716075256,-106.91692536510527,-107.77290686545894,-107.86814961209893,-107.67086435947567,-107.83943165652454,-108.2118835253641,-108.36571529461071,-108.27942889230326,-108.67459905333817,-108.99146321276203,-109.04853468993679,-108.93701125355437,-109.39321640972048,-110.07408815389499,-110.22009644052014,-109.52612048946321,-108.64608150394633,-109.34352780180052,-109.85347542073578,-110.24600115558133,-109.5043635298498,-110.46257878281176,-109.83310336852446,-110.10360224591568,-110.42466486012563,-111.05833881162107,-110.78757786378264,-109.82834971509874,-110.37683948967606,-109.82129916874692,-109.5391199295409,-108.75034807622433,-109.11492337659001,-109.07299747876823,-109.5915768914856,-110.03900353098288,-109.3421864095144,-109.14334651781246,-108.51807841425762,-107.54904648521915,-107.60746848303825,-106.62925126543269,-107.5049938512966,-106.90249318722636,-106.03811774495989,-105.55624114023522,-105.95054835127667,-105.35052050184458,-104.83996283914894,-105.6933658993803,-106.25803952198476,-107.11782981362194,-107.07505254819989,-107.8695928491652,-107.74234492238611,-108.13302640104666,-107.49356725998223,-108.48521832330152,-107.59056315990165,-108.12667114986107,-107.46884250128642,-106.82368886703625,-107.50808673957363,-107.82574840215966,-107.5576060693711,-107.30963513301685,-106.98743991181254,-107.06831588130444,-107.86545312497765,-108.2170600220561,-108.49855721928179,-109.02318841172382,-109.4371534655802,-109.78792117303237,-109.93221885152161,-110.00897474912927,-110.61922820005566,-109.8412392991595,-109.93028907477856,-110.55238954117522,-110.25874991482124,-109.27593080420047,-110.15675549581647,-109.42662096815184,-109.75935831433162,-109.53896516375244,-109.82474159169942,-110.26757489237934,-110.14923989400268,-110.94476082129404,-111.69380443030968,-112.21354212984443,-112.24432067852467,-111.47009887220338,-112.29875192651525,-112.85452267248183,-113.03555047744885,-112.21414865693077,-111.90010011475533,-111.83339650928974,-112.46504330914468,-112.59706622501835,-113.39407010562718,-114.37608363851905,-113.81501119257882,-113.37679839227349,-114.19675568211824,-114.93438917025924,-114.96897915797308,-115.42650248995051,-115.83466929430142,-115.11097492277622,-116.01140987453982,-116.37901360215619,-116.1836893367581,-116.1660636565648,-116.83479060279205,-117.79215609049425,-117.93472455069423,-116.97676733927801,-117.83939164225012,-116.84135155752301,-117.28566649230197,-118.20377729134634,-118.79287445684895,-117.94712198339403,-117.24052464962006,-117.74673873372376,-118.29537577787414,-117.58838128298521,-117.86128108249977,-117.41913946066052,-117.96877046348527,-118.34377557598054,-119.02385756745934,-119.08324503526092,-120.0430003311485,-119.41727834986523,-118.53137846058235,-119.18974175397307,-118.36823377851397,-118.58025828655809,-118.68751547439024,-118.48927123798057,-118.50795200886205,-118.37047987570986,-118.14136133156717,-118.00761238439009,-118.03273140452802,-117.75054338341579,-118.00743192061782,-117.58962896931916,-117.42328847944736,-116.76282026991248,-116.50468660984188,-115.70357355009764,-116.49640692630783,-116.96061542164534,-115.98717464925721,-115.38119807327166,-115.41331966593862,-116.04917848389596,-116.59446768648922,-116.59376669861376,-116.33992539625615,-117.1638184003532,-117.36608627438545,-116.7593891536817,-117.08915052376688,-118.04218254890293,-118.77198517601937,-117.86750011658296,-118.8124402500689,-118.17347481148317,-118.94880331773311,-118.3973995456472,-118.5314551750198,-117.86807799199596,-117.03211114415899,-117.43182970071211,-117.35856771003455,-116.4975852011703,-117.22927141515538,-117.88911824952811,-118.6387167791836,-118.40623140381649,-117.69969933759421,-118.40943445591256,-118.70112919947132,-117.86408112384379,-118.2453901716508,-118.44715943839401,-117.91259430767968,-117.93847731128335,-118.64591109054163,-118.1412437534891,-117.55230164574459,-116.78335251752287,-115.95585336629301,-115.16737693967298,-116.15937601123005,-116.64769578492269,-116.01182113867253,-116.54228765843436,-117.2418558569625,-118.15914534358308,-118.79700982384384,-118.51570487488061,-117.57109775673598,-117.126123664435,-116.27209702739492,-116.62134824879467,-116.04822066472843,-116.84915832942352,-117.2491121776402,-117.413389923051,-116.49160376563668,-117.26139984373003,-116.88629934424534,-116.34989996487275,-116.1617530239746,-116.45198078174144,-117.12167622428387,-117.07022564066574,-117.14562027808279,-117.08805411681533,-116.54882858647034,-116.9166267667897,-117.2445706431754,-116.86001615738496,-116.38855288689956,-117.2681265710853,-118.01747733121738,-118.81404246995226,-118.3880927618593,-118.13539428496733,-117.86218244582415,-117.42500930465758,-118.40908842068166,-118.89145714463666,-118.8675096379593,-119.01347314240411,-118.56548717897385,-118.63008875958622,-118.4973561624065,-119.42606511386111,-120.12558887526393,-120.83816906390712,-120.29003981966525,-119.96179129136726,-120.22632156871259,-119.4070147909224,-118.77994049480185,-119.47964359028265,-119.38271816633642,-119.67236703913659,-119.2278818776831,-119.42050741100684,-120.3277637292631,-121.10042870976031,-122.03265169169754,-122.13660353561863,-121.36778285959736,-121.96597210271284,-121.40805522864684,-121.32419226272032,-120.67840660456568,-119.90141475433484,-120.24410064565018,-121.03382388781756,-120.86060616886243,-120.24752260744572,-120.09875745140016,-119.53365837549791,-118.99383090669289,-118.49850493576378,-118.00807202188298,-118.84771041851491,-119.43853587564081,-119.94597574183717,-120.74411483481526,-121.6862361789681,-121.87408722611144,-121.42313012154773,-122.25909615773708,-121.46953713241965,-120.61703130695969,-121.24464160576463,-121.93680221866816,-122.79351504705846,-121.88498698081821,-122.5222884695977,-121.99737754045054,-121.72946198098361,-122.51965689705685,-121.66151686850935,-121.68391641741619,-122.58638891531155,-122.12177491048351,-123.07543409988284,-123.34687479026616,-123.94348040502518,-123.43667765101418,-123.76161916134879,-123.86584386089817,-124.25428053271025,-124.78671816876158,-124.38409206457436,-123.67862042644992,-123.59437208482996,-123.65152741782367,-122.99857795843855,-122.07120627397671,-121.6626887251623,-121.75994087569416,-122.11640289938077,-121.29856219515204,-121.03010904602706,-121.99446120858192,-122.89735440351069,-123.70205831574276,-124.66364974156022,-125.23759280331433,-125.66518083075061,-126.06181565439329,-125.31197347957641,-126.2349967258051,-126.08704220643267,-125.98472277959809,-125.6685784701258,-125.60575560247526,-126.39271997893229,-127.2200624984689,-127.20127928163856,-127.77165069943294,-127.35479298746213,-128.21495401207358,-128.7657096791081,-128.9655268508941,-129.26097026094794,-130.02834168821573,-130.26555838948116,-130.39665301283821,-130.2267388855107,-129.49790710723028,-128.9161403547041,-128.95942888781428,-128.05499238707125,-127.60622612992302,-127.72623410215601,-127.30322931567207,-127.2124610953033,-126.63827022677287,-126.9150490919128,-126.01851313235238,-126.14728095941246,-126.56264181388542,-125.75416690157726,-125.81908632488921,-125.64308213349432,-125.0339518962428,-124.23435834795237,-124.54494381742552,-123.98243273654953,-123.44008318847045,-123.76245894795284,-124.03132868511602,-123.54517735214904,-123.6206582984887,-124.44603647477925,-124.3285480439663,-124.521780425217,-124.89380235597491,-124.19411037955433,-125.06593374488875,-124.84241922665387,-125.35284389415756,-124.60127800051123,-123.82896702317521,-123.16087717982009,-124.15006291959435,-124.0406165458262,-124.4434549366124,-125.22587329894304,-124.2352388589643,-124.97998107271269,-124.84853962948546,-124.3473927625455,-124.55901061184704,-123.77269983896986,-124.63017468806356,-123.77785128122196,-123.3160436116159,-123.25385560607538,-123.31139936903492,-122.81410907767713,-122.24777910578996,-121.35841479152441,-121.88562608603388,-122.4216296072118,-121.45167988864705,-120.700695077423,-120.93321053404361,-120.89512626733631,-120.63422069512308,-120.64688649680465,-120.09073177771643,-119.12348282057792,-119.43373339204118,-118.73951910901815,-119.44251917069778,-118.52278346940875,-118.05456564202905,-117.16641129786149,-116.32694383012131,-115.79591556312516,-114.84101940877736,-114.25355581799522,-113.85254124319181,-113.92337127448991,-114.17729191947728,-113.23654469521716,-112.62116110371426,-111.75108147831634,-111.62729511130601,-112.02312526898459,-112.41409123921767,-113.27552615106106,-112.64563925471157,-111.75281247030944,-112.40534458681941,-112.8565225447528,-111.97028022352606,-111.7355772452429,-112.41299804346636,-113.07588078454137,-113.59661401016638,-113.84945050487295,-114.02012998983264,-114.27285953098908,-114.09000860759988,-113.62740685977042,-114.01119134807959,-113.3187227579765,-113.34553971746936,-114.25014077825472,-113.90079608839005,-114.25518969306722,-113.53759218240157,-113.18247614661232,-112.95304824691266,-113.05135959060863,-113.17336560226977,-112.22258191043511,-113.01669278834015,-113.9696240639314,-114.76547952461988,-114.06761312531307,-113.21181734418496,-112.54118486121297,-111.90879742568359,-111.82471486879513,-111.50677982950583,-110.56042632181197,-109.82598356576636,-109.0789680457674,-109.79139281716198,-109.561388714239,-108.88411489827558,-108.20396947022527,-107.20426869252697,-106.96184466639534,-106.16134977573529,-107.06423785770312,-107.62445334531367,-106.74897052487358,-106.15981946652755,-105.25110385939479,-104.48857243265957,-104.92906008148566,-105.16414451505989,-104.85798852751032,-104.30100689828396,-103.87528306478634,-104.09391870955005,-104.87190657574683,-105.11708278069273,-105.95641477312893,-105.46317440550774,-104.76015216857195,-104.03617849200964,-104.32066865544766,-104.65974117908627,-104.88774755503982,-104.83613024139777,-104.20667132083327,-104.51582961669192,-105.13118267524987,-104.18642481090501,-104.50646652467549,-104.55366883892566,-104.68302176846191,-104.80997182568535,-104.54083243943751,-104.28248637961224,-104.56287888158113,-104.69478294858709,-104.24920862354338,-104.66815126920119,-105.16331354063004,-104.99323013843969,-105.7860842263326,-106.28574649523944,-106.38208546675742,-106.63095891615376,-107.55171891348436,-108.41902295313776,-108.09044539509341,-107.11481251800433,-107.92353173112497,-106.93182511348277,-107.78878638334572,-107.54097273992375,-108.3793236897327,-107.72760272445157,-107.13401371566579,-107.74326752545312,-107.963597596623,-108.48705249745399,-107.68846529256552,-107.41263796761632,-106.93290169956163,-106.85197137994692,-107.55596768204123,-107.46386075112969,-106.87506633717567,-106.69481447292492,-107.2686944254674,-107.15993048483506,-107.91080032521859,-107.26781108928844,-108.02263635629788,-108.23504606308416,-107.55823826184496,-108.49849973758683,-108.02617117622867,-108.83380389539525,-107.86111923586577,-108.00966609595343,-107.13588858162984,-106.19070410123095,-105.30436068726704,-105.56497974134982,-106.5358643727377,-106.32504547154531,-105.91265162685886,-106.31204575113952,-106.89291777135804,-107.06608794769272,-106.24861873034388,-107.18597558978945,-107.5951064908877,-108.50623560184613,-108.05120684253052,-107.24733077129349,-107.55486935097724,-107.78210338391364,-107.94433426856995,-107.58501668414101,-108.27716060029343,-107.75720366556197,-107.54527405183762,-108.19984859135002,-107.25026373378932,-106.7851049117744,-107.25738888746127,-108.0924105742015,-107.94595185248181,-108.69668988324702,-109.40974223520607,-109.43280432699248,-108.62331761419773,-108.7844377332367,-109.28921830328181,-109.25493173673749,-108.44576273392886,-108.51732085552067,-108.98516560764983,-109.08876335853711,-109.67641061590984,-110.54137517977506,-109.99430073006079,-110.10991669958457,-109.71509612118825,-109.53456592094153,-109.52821280108765,-109.54240619251505,-109.58284670533612,-108.65413869684562,-109.2028317633085,-108.56856963504106,-109.36822147294879,-108.50855476222932,-109.13691562786698,-108.13719753734767,-107.92635855032131,-108.54144460102543,-108.37697306182235,-107.484541809652,-107.70166568877175,-107.7881077574566,-107.13554241601378,-106.34360655769706,-106.52226425940171,-105.90058440854773,-106.57993702404201,-107.23371878638864,-107.03377853194252,-106.71953968983144,-106.01802805997431,-105.56583563797176,-105.03259008657187,-105.27125396998599,-104.90067855967209,-105.61538016796112,-105.6713126571849,-106.09167686803266,-106.87292847083881,-107.69333675922826,-108.3945986572653,-108.03624008176848,-107.05321287782863,-107.90304771112278,-108.52782995719463,-107.92606581840664,-107.38610972510651,-106.39178994018584,-105.69317683251575,-104.86290461104363,-105.85514078196138,-104.90770009858534,-104.46716980123892,-104.35742852790281,-103.86620479589328,-104.77308376552537,-105.53168558236212,-105.8327313628979,-106.03780509438366,-105.78781777853146,-106.6554369898513,-105.84836708428338,-104.89143317192793,-105.40147965494543,-106.13262455072254,-106.44857349339873,-105.68075106991455,-106.62989780073985,-106.25231140619144,-106.96540581993759,-107.56022875243798,-108.19504607236013,-108.09073085105047,-108.98769143456593,-108.22099524317309,-108.93725031148642,-108.0540560935624,-108.8441381729208,-108.43127789534628,-107.64510067133233,-108.14403646951541,-108.44803849142045,-108.25534429308027,-108.36004354758188,-108.63719261065125,-108.3710762807168,-107.65570495231077,-107.54217047384009,-107.68695665197447,-106.76090256683528,-107.45796684455127,-107.03340178867802,-106.24321645731106,-106.68451111763716,-106.3994148587808,-107.05230272887275,-107.03807907737792,-107.523074853234,-107.81601925520226,-107.58368324115872,-106.98055958421901,-106.06328375823796,-106.75205271318555,-106.71099147666246,-106.55335247609764,-106.9593815151602,-107.56193342385814,-107.64859292889014,-108.04864457575604,-108.94571637082845,-109.64259766740724,-110.27884220890701,-110.0366521012038,-109.15062239486724,-109.97123129386455,-109.54311020160094,-109.8199979965575,-109.57461945759133,-109.99891516845673,-110.94143681321293,-110.06230159802362,-110.22874288773164,-110.67129949992523,-110.64780317479745,-111.34860369190574,-111.88484971318394,-110.95795068377629,-111.4490599767305,-110.57410502620041,-109.87655712477863,-109.37147409329191,-109.95477571338415,-109.72642039507627,-108.8412973890081,-109.39522252371535,-108.63668735092506,-107.84757755510509,-107.64772055158392,-108.1841154335998,-107.51168478745967,-108.08330792700872,-108.32429519435391,-108.58025410817936,-108.41306428890675,-109.16915933880955,-109.0177653497085,-108.70105400076136,-108.461369081866,-109.31636171229184,-109.75503112701699,-110.47004310414195,-110.41661040997133,-111.00327587826177,-111.20091810915619,-111.73124596942216,-111.4001627122052,-111.37208349676803,-111.29880755254999,-111.66717117186636,-111.23645934741944,-110.68263705680147,-111.0855074590072,-111.15205025998875,-110.25585289625451,-109.50531476549804,-109.97827606042847,-109.97192275384441,-109.86374571826309,-109.4358000792563,-109.54939714632928,-110.18453093850985,-109.30737617239356,-108.66443796874955,-108.90050391713157,-109.81343815848231,-109.51587811205536,-108.98306224867702,-108.21142771374434,-108.75344802811742,-108.6889423248358,-108.13725602673367,-107.61927825491875,-108.15281092608348,-107.5694144112058,-107.51582200219855,-106.85294302925467,-106.5200077444315,-107.24679661216214,-107.71169713558629,-108.3053128393367,-108.67705872561783,-109.1228822642006,-108.53086183825508,-107.57537189684808,-107.57187934918329,-108.25540114194155,-109.05466547328979,-108.67595244012773,-108.90266743022949,-108.06705753551796,-108.7272811201401,-108.06070402730256,-108.49264168413356,-109.03113820031285,-108.17427283525467,-107.5803352012299,-106.6096949451603,-105.80132888490334,-106.71262036077678,-107.2130585173145,-107.34918711846694,-107.71480733389035,-107.46938404953107,-106.56689368095249,-105.85595666011795,-105.43097756942734,-105.83338612504303,-106.82134951883927,-105.85128574026749,-105.22646105661988,-104.27425521379337,-105.09910984197631,-105.68936574552208,-105.49040088476613,-105.38430881500244,-104.90684381732717,-105.73611026676372,-106.43431622255594,-107.14421003544703,-107.54304929962382,-107.66926017776132,-108.33559209574014,-107.71706916531548,-107.12070708582178,-106.74004604900256,-106.52266749739647,-107.009788420517,-106.15259020822123,-106.89881611801684,-107.71351225627586,-108.65756243374199,-108.15452496148646,-107.30526306154206,-106.87520793871954,-107.04078034637496,-106.97662825649604,-106.6377792400308,-106.17719799699262,-106.11957045039162,-106.6599610936828,-107.39197803242132,-108.311892288737,-108.80162216257304,-109.20681675849482,-110.01643732236698,-110.90611509466544,-111.558276837226,-110.71292262617499,-109.92711523221806,-110.27136180736125,-110.09294406883419,-110.83065964793786,-111.26537536270916,-111.72629501763731,-111.10759597737342,-111.28845256753266,-111.84729069564492,-112.00477383239195,-111.22692665457726,-110.61854874994606,-110.50146715715528,-110.56312306877226,-111.55544802499935,-111.61332315346226,-112.21820163540542,-111.53574602724984,-112.26691848272458,-112.03216782398522,-111.287641919218,-111.50194760225713,-111.8937853705138,-111.72510994877666,-111.60339933354408,-110.70332760317251,-109.73097554780543,-109.56841020984575,-110.42900520190597,-110.32963344454765,-111.14874532539397,-111.7887512659654,-112.07101742457598,-111.64984654309228,-110.65743294544518,-111.42493089986965,-112.38364339945838,-112.10552987130359,-111.18445354979485,-111.5947514907457,-111.3362821652554,-111.44038224127144,-110.9709628908895,-110.2240665149875,-110.81699430104345,-110.62732338812202,-110.8956551309675,-111.4107632143423,-110.83149204449728,-109.99011983862147,-109.0732712005265,-108.68074988108128,-108.77468739356846,-108.37630879553035,-109.25950998207554,-108.59370253887028,-109.36234825104475,-108.81418417347595,-109.09984533628449,-108.21279874956235,-107.84694520337507,-108.77352531487122,-107.83139559347183,-108.45744994981214,-108.4664479419589,-108.12922784173861,-109.00722686294466,-109.34778110263869,-109.2575677423738,-110.2165652057156,-110.90180726675317,-111.31906966352835,-111.50112978648394,-110.54501904034987,-111.16383049730211,-111.80367335351184,-111.04916815645993,-111.9531798842363,-112.9273816193454,-113.49359210161492,-113.70048350421712,-113.0895646312274,-113.24900590023026,-113.48414779221639,-114.1454396629706,-114.8232798455283,-115.59791683359072,-116.323117101565,-116.97707726573572,-116.65162315964699,-116.96731650317088,-117.85200481163338,-116.88475345214829,-116.24170804908499,-116.41853673802689,-117.09637497272342,-117.9655670337379,-117.26432712189853,-117.85111933620647,-116.88621882814914,-117.79860841389745,-118.1064781411551,-118.59898259444162,-119.59014123352244,-119.2376762679778,-118.46080703940243,-119.25772958481684,-119.55751907126978,-119.98503860644996,-120.90786602674052,-121.49471247708425,-121.09684795839712,-121.35795718990266,-121.33671165723354,-121.48091341508552,-122.35779164312407,-122.8143629077822,-122.92456674249843,-122.76690842909738,-123.23461242439225,-123.62330465344712,-123.0370982605964,-122.50650202203542,-123.10366721823812,-123.40525054838508,-123.57154656667262,-123.50960262492299,-123.98379683867097,-124.88111552176997,-124.45485220616683,-124.82054829318076,-124.30339606711641,-124.0244199228473,-124.5117926360108,-124.57288359850645,-123.80340020358562,-123.57152527663857,-124.42811046075076,-124.41660653892905,-125.18658088566735,-125.1600581924431,-125.06944309175014,-125.69297363841906,-124.81066427798942,-124.75874716090038,-125.45770013192669,-125.83336003590375,-126.46420750301331,-125.79055413231254,-126.42425752757117,-126.23186577204615,-126.54935793671757,-126.80653494270518,-127.23125803424045,-126.74851573817432,-126.47207738412544,-127.16149414470419,-127.75345751736313,-128.7004393027164,-129.36453157430515,-128.5864527146332,-128.5843703900464,-128.7709597637877,-129.74569839704782,-129.19256433285773,-129.60739293089136,-130.24934941530228,-130.15738418558612,-130.57456166809425,-131.5616058385931,-132.48596917046234,-131.56911001633853,-132.41558047942817,-132.65462819859385,-133.6211918340996,-134.04156822292134,-133.95110990852118,-133.76896435953677,-133.01128255482763,-132.68875005468726,-132.7729644072242,-133.20506656402722,-133.85958535410464,-133.48588823759928,-132.84867323376238,-133.60737109417096,-133.60520517406985,-133.24021555297077,-132.50492344936356,-132.8622617595829,-132.19125726632774,-131.644684901461,-130.81735087931156,-129.88525079237297,-130.03245694562793,-130.26885959133506,-129.60190112004057,-130.45232314104214,-129.49043777864426,-129.63345723226666,-130.23191340267658,-129.70370999723673,-129.39646919211373,-129.77722413325682,-129.12423564726487,-128.45062928833067,-128.77172251511365,-129.18423828249797,-128.22461641579866,-128.9634923362173,-129.78048737160861,-130.6712990142405,-130.83911605598405,-131.60553944762796,-132.1940058809705,-131.21975254733115,-130.26596254622564,-131.1777067799121,-130.56596398493275,-130.1639260072261,-129.29573078872636,-129.4419190105982,-129.51515517616645,-130.02932405704632,-129.6228827671148,-130.58273231750354,-129.99921361543238,-129.77373507386073,-130.53892886219546,-129.8936625230126,-130.75186541862786,-131.74709037318826,-130.8679197053425,-131.02297590486705,-131.72469364013523,-132.62805907288566,-132.40655122091994,-132.34174709720537,-132.84819671604782,-133.69575379276648,-133.76759424852207,-134.18020637519658,-134.5132945086807,-135.23247863072902,-134.88337461603805,-135.08949098689482,-135.71566091338173,-135.23257041024044,-135.66350655490533,-134.90729890344664,-135.65007317159325,-135.39348104549572,-135.9842187925242,-136.97968616290018,-137.92383534880355,-138.87702775374055,-139.05073020560667,-138.05099157290533,-138.36790160415694,-138.9872579611838,-138.1614412101917,-137.7948232907802,-138.6106421663426,-138.3872006176971,-138.0408516000025,-137.85765663767233,-138.61474431632087,-139.27058670017868,-138.55500297714025,-138.51439956761897,-138.81434350041673,-138.03498471528292,-137.69758154125884,-138.6451587365009,-139.4282552599907,-138.58669684221968,-139.3543740590103,-138.55056641018018,-138.52948798518628,-137.936733905226,-138.81562355346978,-139.2984742736444,-138.66578608332202,-139.55920743383467,-138.94527690391988,-139.69211967661977,-139.0068929065019,-139.2923819157295,-139.21793744014576,-139.23857649089769,-139.65824807947502,-138.89854803867638,-138.9606341542676,-138.37074725981802,-138.4592939778231,-137.61588909244165,-137.68706694152206,-138.23681983351707,-137.5734252501279,-137.99876848654822,-138.33418989600614,-138.66629909910262,-139.6012933733873,-138.8354662680067,-138.59305611485615,-139.48678826121613,-138.6283708885312,-138.6875482876785,-138.17961656162515,-138.70570446830243,-138.7171741584316,-137.7190276319161,-138.45723489578813,-139.04254831839353,-138.88214553100988,-139.62706655776128,-139.44818997569382,-139.15677921613678,-139.22642965381965,-140.08097468037158,-140.84983062325045,-140.6296513886191,-141.0995060838759,-141.0319357821718,-141.50310892332345,-142.21728520886973,-141.56032759230584,-142.0507288230583,-141.1093869996257,-140.34656474459916,-141.20580937946215,-141.35978040564805,-141.37408711528406,-141.10492197843269,-140.6393313515,-140.2410582699813,-141.18760809116066,-141.1420532395132,-140.32826997572556,-139.48293719114736,-140.41705245431513,-141.04246247792616,-141.83972013229504,-141.63873908901587,-141.84926880337298,-141.08019423810765,-141.118621585425,-140.38896682905033,-139.79319641413167,-139.25176292425022,-140.00374304549769,-139.51055173622444,-139.90131366811693,-139.5606490401551,-140.51264847023413,-140.6543388403952,-139.6883475659415,-139.9126633950509,-139.42731643514708,-138.97137352172285,-139.31512858252972,-140.05612026248127,-139.88958038110286,-140.1097019808367,-140.21575951157138,-139.62026162538677,-140.28180379141122,-139.3462322447449,-139.38431395962834,-139.61909799370915,-139.20103194750845,-138.6064313966781,-138.84916334599257,-137.93174547888339,-138.45159216038883,-138.69656611979008,-138.27892386354506,-137.7859262097627,-137.36316923378035,-137.6604273924604,-137.78584721591324,-138.16159224137664,-137.18988251918927,-136.76429409114644,-135.93994946265593,-136.743189021945,-136.1985324495472,-136.32055136514828,-137.2135867830366,-136.44239056063816,-137.3053390220739,-137.04939410462976,-136.74055912299082,-137.2650818764232,-136.31307813618332,-135.84497518278658,-135.1930555566214,-136.12335589248687,-135.38299821829423,-136.2152506536804,-136.17376305535436,-136.0465514641255,-136.6046148748137,-136.78985060658306,-137.20378769468516,-136.40009793126956,-135.99854412628338,-135.32320280140266,-136.0837428253144,-135.17977086314932,-135.66981809400022,-135.97533637518063,-136.2837770790793,-136.48287489125505,-136.00106531986967,-135.59802261879668,-135.36469213757664,-134.97416653251275,-135.62108616903424,-135.52027090406045,-135.70190957468003,-134.75833002384752,-134.41993486415595,-135.00567753054202,-135.1114167291671,-134.49046457884833,-133.74331766925752,-134.3317473377101,-135.13005376141518,-135.80311604076996,-136.15185064962134,-136.13427881943062,-135.61493769241497,-135.95267297979444,-136.62026063213125,-135.99784162733704,-135.49972008680925,-135.05779503751546,-135.13310134410858,-135.2136350190267,-135.27842357195914,-134.92721648374572,-135.57589891646057,-134.77943546324968,-134.4318557716906,-134.7749794544652,-135.09274191316217,-135.33968117972836,-134.48887655092403,-134.83459531748667,-134.6389433951117,-134.27593062072992,-134.51637702155858,-134.74374552536756,-134.91841815505177,-135.28224347997457,-134.41272986959666,-134.02604365861043,-133.35936004156247,-132.98813583655283,-133.10370542760938,-133.77036369824782,-133.88446885859594,-133.7829736955464,-134.72980237100273,-135.5147072384134,-134.62925843289122,-135.06251868745312,-136.0443260045722,-136.42145044030622,-137.26579355960712,-137.0620704437606,-136.9608464851044,-137.36423935834318,-138.3460593991913,-138.69157044915482,-138.08335576485842,-138.90176038304344,-139.09482710110024,-138.59667570888996,-137.70995490439236,-138.13978670584038,-138.3202093099244,-138.17098523816094,-138.23457038635388,-138.48918309714645,-138.4838759782724,-137.96060510678217,-137.4148104712367,-137.80824112985283,-137.99782872851938,-137.6349073043093,-138.56859305966645,-139.54969896376133,-140.24730907054618,-140.66962733026594,-141.06001610169187,-141.0622778334655,-141.3111807750538,-141.14119051536545,-141.71603678585961,-140.82301401998848,-141.60456935316324,-141.35742080817,-141.24949337448925,-142.00724082253873,-141.12897384446114,-141.66019749082625,-142.37930514337495,-141.48049765825272,-141.59554695058614,-140.6678528250195,-141.4112917711027,-140.8918624194339,-140.34232074161991,-140.8879039986059,-140.0125762470998,-139.460935624782,-139.58599481917918,-139.0813650083728,-139.4390717255883,-139.76831273641437,-139.62187570054084,-139.15691009862348,-139.72637319145724,-140.54287196369842,-140.3317273030989,-140.7017081254162,-140.81565130874515,-141.21029699780047,-140.5462276013568,-139.8551458674483,-138.90888465708122,-138.0139954383485,-138.35612302972004,-138.6642282945104,-138.92068561306223,-138.85650395741686,-138.71329978015274,-137.77366450754926,-138.3284431034699,-138.57673489907756,-137.61107861856,-137.04796240478754,-137.7256470299326,-137.13005695072934,-136.1414176323451,-136.6249687904492,-137.3983546961099,-136.69524594349787,-135.8014706154354,-136.30997936660424,-137.19275728380308,-137.49352673674002,-137.36390062468126,-136.41101350355893,-136.59990600170568,-136.00332913454622,-135.3280107807368,-135.72492314549163,-136.4470072472468,-136.6938435412012,-136.3014304419048,-136.3619237113744,-137.1942785787396,-137.9025268740952,-137.87726230034605,-138.06652487628162,-137.8009463129565,-138.05149331782013,-138.86247127503157,-139.05472423369065,-139.35774446930736,-139.9416687763296,-139.8104554032907,-140.10273060156032,-139.94206987973303,-140.21092406567186,-140.50456680729985,-141.15563677391037,-141.44889105530456,-141.7377809244208,-141.7642678199336,-142.511179742869,-143.36834482476115,-144.18253666814417,-144.9104461329989,-144.99871466169134,-144.2039997712709,-143.27322156215087,-143.0655467705801,-143.9511542301625,-144.4469194635749,-143.5252655223012,-144.37404494872317,-145.30043028015643,-144.48513208748773,-144.50339170359075,-144.83964483626187,-144.11796230869368,-144.10135416314006,-143.85062227072194,-143.50850082188845,-143.84339265711606,-144.65836720075458,-145.03128817630932,-144.90904882689938,-145.60754510900006,-146.2053313772194,-147.16921898536384,-147.35663775680587,-148.06454001832753,-148.46553449705243,-149.14043054031208,-148.22233592206612,-149.1763859470375,-149.90312562976032,-149.46960076782852,-149.66795519180596,-149.60649474337697,-149.85017325636,-150.771969972644,-151.42510252213106,-152.29588950891048,-151.81335327448323,-151.04457082459703,-151.87180197238922,-150.99705735314637,-150.15301377233118,-150.99979601288214,-150.56369570177048,-150.11485951161012,-150.92848349967971,-151.14444704540074,-150.72703604679555,-150.03013226855546,-149.56199162406847,-150.0870061465539,-149.76525360206142,-150.20558651024476,-149.4059490854852,-149.30382562614977,-149.26805195212364,-150.21232151193544,-149.3056973759085,-148.82666716258973,-149.07073647668585,-149.06230218149722,-149.81089302059263,-150.13203963125125,-150.01912335073575,-150.88591443607584,-151.39538105856627,-151.6535704974085,-152.55129882600158,-153.45733068371192,-154.258282199502,-155.0672760978341,-154.30886706057936,-154.66541121387854,-153.9495765962638,-154.49386782059446,-154.42703135637566,-154.76524427346885,-154.81411036197096,-153.84573384514078,-153.87570514623076,-153.89352083439007,-153.6318652406335,-153.22711020475253,-152.67059729574248,-151.99942029360682,-151.27910806657746,-151.51889294711873,-151.2520249360241,-152.04004388302565,-152.87766861217096,-153.42338296351954,-154.39025722630322,-154.761248503346,-154.31092895567417,-154.01988154044375,-153.0386494770646,-152.87815946154296,-153.57605524361134,-153.88907449878752,-153.15622287523001,-152.31996512785554,-152.91798512637615,-153.27157368324697,-152.45127447741106,-151.6912051057443,-152.2236061412841,-152.8729390236549,-153.33082770835608,-153.06050988286734,-153.81282677548006,-154.29044513357803,-155.1738635674119,-154.3592207338661,-154.19596633920446,-153.24504259880632,-153.4197438270785,-153.4792316495441,-153.7009996729903,-152.88454022072256,-152.79288535239175,-152.70117162400857,-152.89320764504373,-153.2088447995484,-153.49926552269608,-152.79548638593405,-152.97666256316006,-153.46124279964715,-153.20184685569257,-153.71663764305413,-153.9591426323168,-153.73315565660596,-153.21617307094857,-153.10443092463538,-152.64247671049088,-151.9957425687462,-151.14502095011994,-150.8599127549678,-151.38319293269888,-151.8304543872364,-152.5493516009301,-152.54157097963616,-152.92320006154478,-153.3346871654503,-153.24095222819597,-152.57691433280706,-151.9148169127293,-151.25202099001035,-150.6730538206175,-151.52972907945514,-151.5853821686469,-152.21252471068874,-152.4678535182029,-152.58519813697785,-151.92254294035956,-152.88738607382402,-152.21381366066635,-151.72378580272198,-151.3553393734619,-150.9894339442253,-151.39091638941318,-150.77863169414923,-150.96197492163628,-151.11761239729822,-150.3135462505743,-149.37601231457666,-150.08211898244917,-150.84529609931633,-150.5979785346426,-150.91100044362247,-151.6150733702816,-151.6111595313996,-151.3221406941302,-150.94017013022676,-151.15257306490093,-151.6663157781586,-151.03428497258574,-151.64408481959254,-151.33955043787137,-150.64634385611862,-149.87349446164444,-150.85722990566865,-150.10285582533106,-149.29790685512125,-148.36329378793016,-148.4689385634847,-148.3520089169033,-147.39685150096193,-146.76471201656386,-146.53651356650516,-147.13379671657458,-146.85678318422288,-146.41482144361362,-147.077234539669,-148.05373410135508,-147.3289482719265,-147.9680185066536,-146.96966059040278,-147.8789495928213,-147.6178182112053,-148.55881517240778,-148.18318888824433,-147.22013277281076,-148.21148693747818,-149.1190442419611,-148.43518793629482,-147.50816179206595,-147.42883484158665,-147.41467569069937,-148.34876783844084,-148.7823643288575,-148.39964587334543,-149.26493870280683,-148.62319703679532,-148.61089256312698,-149.34399558091536,-149.30586111359298,-149.71093278517947,-150.28911491576582,-150.83810159144923,-150.47123853769153,-150.79446862312034,-151.26531281555071,-150.9392333459109,-150.57271265378222,-151.0989071209915,-150.69591394532472,-150.96709836414084,-150.44349305145442,-150.03611177392304,-150.054197054822,-150.62724375305697,-150.82398635102436,-151.103881216608,-150.37819987582043,-149.68735418422148,-149.65375163313,-150.6398414731957,-151.6339988890104,-150.93449343554676,-151.9246997362934,-152.90829981584102,-152.62199907470495,-152.55061377957463,-152.88972917897627,-153.69412189954892,-153.15062566800043,-154.00370277417824,-154.78030331572518,-154.67955221096054,-154.70292409230024,-155.67895860178396,-155.37092658458278,-156.16428683884442,-156.85035565774888,-156.49103251099586,-157.02304083295166,-157.44279306614771,-157.4611864774488,-157.10500563681126,-157.34350724564865,-158.03919142112136,-158.58380455709994,-158.34476766176522,-159.18855263944715,-158.20063490560278,-158.65328034153208,-158.66655404353514,-159.2322240686044,-160.1175842070952,-160.6523481765762,-160.42564233904704,-160.03413530625403,-160.8614029563032,-160.21084032487124,-161.08401698619127,-160.67978744022548,-160.47636061673984,-159.8359134476632,-159.88273949548602,-160.46251675439999,-159.7498404206708,-159.6515147103928,-159.74138897145167,-160.31092432094738,-161.288863228634,-160.86560336267576,-160.0718036852777,-159.71503621712327,-160.27225264301524,-159.76900846371427,-160.5271007725969,-160.9899143083021,-160.5816692057997,-160.4358673915267,-161.05466831335798,-161.9077919954434,-161.98103537224233,-162.14816632680595,-162.33290342753753,-162.1592062790878,-162.88582676509395,-162.68602013401687,-163.6435606451705,-163.32428694469854,-163.15335328923538,-163.31884274771437,-163.2746478910558,-162.57430984592065,-162.61371998023242,-161.9334133719094,-162.19361796509475,-162.89043263252825,-162.78037520777434,-162.4991077533923,-161.8294928953983,-161.41241241851822,-161.184660657309,-161.5819440940395,-162.011395432055,-162.71627936838195,-163.68275265954435,-163.69540766905993,-163.8272915915586,-164.63193156616762,-163.9347666730173,-163.92972360085696,-163.08622061414644,-162.8505974477157,-162.1134740221314,-161.51222214009613,-162.39557479694486,-161.85469544911757,-162.61971127660945,-162.4454132388346,-161.706188775599,-160.98605183511972,-161.30133422091603,-162.3005429529585,-161.58218797203153,-162.56535734049976,-161.86466706031933,-161.1905887904577,-161.71514879958704,-161.42054040310904,-161.21732783364132,-160.6362698120065,-159.99835214903578,-160.0755657828413,-159.60523668350652,-159.88869989756495,-160.44227097043768,-160.17748506786302,-160.54792330693454,-159.5888703512028,-159.19799687247723,-159.01400263048708,-158.7806564597413,-158.13634733576328,-157.6890914356336,-157.2862478834577,-157.7383281495422,-158.60025902558118,-158.03262845193967,-157.60937814041972,-158.10792894195765,-157.498681277968,-156.8020126791671,-156.40398157434538,-157.28236806346104,-156.77941665938124,-157.46174416830763,-156.79430468799546,-156.68091198801994,-156.721394774504,-156.87118187127635,-156.4465212044306,-155.57834573555738,-156.15683410316706,-157.08756641158834,-156.72034435812384,-155.7867432506755,-155.5267576193437,-156.11404422391206,-155.8668565680273,-156.77665701927617,-156.53348955744877,-156.5100661632605,-156.6472262009047,-156.66504050511867,-156.09930600458756,-155.83537893136963,-156.08752304781228,-155.71783032966778,-155.3308377447538,-156.20664642332122,-155.5306052947417,-156.2584282704629,-156.3035451597534,-156.4817405999638,-156.04254261264578,-156.6100275083445,-156.24947678670287,-157.07839969499037,-157.43642177945003,-157.97600206173956,-158.4823279264383,-158.64208971429616,-158.40854957979172,-157.92280851816759,-158.80181050859392,-157.9232798437588,-157.69244764000177,-158.56090897554532,-158.41982198413461,-157.65083663910627,-157.30617261771113,-157.58039337582886,-157.20086055155843,-157.3029804150574,-156.30578944040462,-157.24800927890465,-156.87267698347569,-157.35359349288046,-156.64697490166873,-156.40600089496002,-155.78257548017427,-155.18972828239202,-154.62984464736655,-155.02595185860991,-155.8985613589175,-156.23140302300453,-156.24804887501523,-156.85051209991798,-157.60351843200624,-157.4687039242126,-158.22239994537085,-157.48555625416338,-157.4186422866769,-156.53075929405168,-155.61540629854426,-154.8997553512454,-154.04692018590868,-153.07628475688398,-153.16093153506517,-153.4831601679325,-152.87172940932214,-153.5384707674384,-154.46151768788695,-153.85147344926372,-153.74131243349984,-153.46344339102507,-152.68274265294895,-153.04634127067402,-152.4752659923397,-152.37429091287777,-152.05421354761347,-151.07690535997972,-150.63431300781667,-151.35632641613483,-152.0152330598794,-152.42993434658274,-152.38324589608237,-152.63945884769782,-151.85846620239317,-152.23198569659144,-151.84990635840222,-151.95094221225008,-152.45303670410067,-153.00316936476156,-153.30185505840927,-154.03660068335012,-153.16053634416312,-153.9585463530384,-154.95179309882224,-154.39023371925578,-153.88886793935671,-154.20426778495312,-154.4397875284776,-155.42256249766797,-154.94089657161385,-155.18590506212786,-154.25369026046246,-153.33328438410535,-153.87002759380266,-154.42114797979593,-154.83581516658887,-155.3678939398378,-154.73964038817212,-155.35196190001443,-155.88733867928386,-155.3835509219207,-156.26075311983004,-156.4996964703314,-157.32309690769762,-157.6897092363797,-158.4986077081412,-158.87098256777972,-158.28007358312607,-158.71961117349565,-158.3335047615692,-158.68564870674163,-158.0648597208783,-157.29463703744113,-157.79888589680195,-157.75348322931677,-157.97123403893784,-157.07856116443872,-156.95822008512914,-157.5675844438374,-156.76470076385885,-156.39707825426012,-155.91234977543354,-155.53078330447897,-155.57667035190389,-154.6607300415635,-155.61460648849607,-156.271571141202,-156.7734871362336,-157.3376503009349,-157.34462485089898,-156.77200783556327,-156.78122112853453,-157.657082317397,-158.52180270384997,-158.3878087857738,-157.7527125510387,-157.43290974153206,-157.96877501998097,-158.62433488992974,-159.30280916532502,-158.81284210691229,-158.27522615995258,-159.0456258105114,-159.98318492807448,-159.1627705055289,-159.49452623073012,-158.6045348290354,-158.20770290028304,-158.49301927350461,-157.5296889594756,-156.9890487222001,-156.7144530522637,-156.52183212293312,-155.75746377836913,-155.7677047639154,-155.78301980812103,-155.7759970757179,-156.38681353535503,-155.8840444185771,-155.150212994311,-155.81503372220322,-155.58858894277364,-155.97796789184213,-156.70339102251455,-156.44450038159266,-155.88675477309152,-156.263239081949,-156.92347340844572,-157.07363348873332,-157.2741849888116,-157.65899267140776,-157.78883508546278,-158.0848948676139,-157.7559869461693,-158.56740538729355,-157.67237749882042,-158.51940780878067,-159.3037528451532,-159.71521300124004,-159.38272310607135,-158.58581724762917,-159.4260346177034,-158.99367731949314,-159.89134541805834,-160.10357822896913,-159.41158238984644,-159.65691543417051,-158.8313881456852,-159.06350339157507,-159.10753235965967,-159.34685184853151,-160.07881135260686,-160.5624488289468,-160.64334040600806,-159.86035766033456,-160.63300215639174,-160.26233235374093,-159.70572850480676,-160.04878683621064,-160.3167973724194,-159.45011419942603,-160.08608728274703,-159.56567809311673,-158.7681364840828,-159.0913400775753,-159.8253053217195,-159.21638499293476,-159.13670776737854,-159.0598123022355,-159.49816199205816,-159.44159690616652,-159.41375742247328,-159.62019053753465,-160.42226539412513,-159.76821966143325,-158.9988976046443,-159.6879599634558,-160.66942605329677,-160.76895261229947,-159.8002401618287,-160.59174887556583,-159.99789100559428,-160.6542184879072,-160.11523869773373,-160.32524981815368,-159.58484819158912,-160.21034484962001,-160.91851633181795,-160.921846405603,-160.65430520661175,-159.78907928522676,-158.970690199174,-159.96160254487768,-159.56245188973844,-160.56031616125256,-160.27919187908992,-160.04631836107,-160.19237542245537,-159.75066520506516,-159.3240423644893,-159.008416228462,-159.6216795737855,-159.45685157040134,-159.4963748184964,-159.91165783023462,-160.30260166339576,-159.7114053433761,-159.00285778660327,-159.534998646006,-159.64990558242425,-160.07449442474172,-160.7289566071704,-161.62970122741535,-161.1761531359516,-161.95593678765,-162.0919731366448,-161.0994148789905,-160.98794149933383,-161.4443032857962,-161.08480365620926,-161.74297673860565,-161.62319251755252,-161.90242484398186,-161.6670325966552,-162.36646709172055,-162.22842599917203,-161.7508452590555,-162.30386735731736,-162.74893208313733,-162.67575179692358,-162.68231097003445,-162.27634871331975,-161.81173684820533,-161.90063682710752,-161.5336176804267,-162.08784311218187,-162.46195448096842,-162.24352414067835,-161.31773229967803,-160.43901469232515,-159.73172047920525,-160.54499694053084,-161.4177337018773,-160.9941386738792,-161.52999256690964,-162.1767270397395,-162.69509701430798,-162.05812746519223,-162.6132030482404,-162.62240057298914,-163.54007092956454,-163.79494041856378,-163.26162533368915,-163.69504450215027,-163.00676238210872,-163.45329297007993,-162.6067191674374,-162.46742219664156,-162.97366938134655,-162.6027877079323,-163.59535495052114,-163.3285649511963,-162.39769821288064,-161.6145555023104,-161.2438605176285,-160.4912456171587,-160.2264392003417,-160.13709368975833,-159.5573188625276,-160.33086049277335,-160.99936154996976,-161.63856641435996,-161.309801352676,-160.70435649808496,-159.95077464776114,-160.66838794201612,-160.3346442952752,-160.63469855906442,-161.5157912960276,-162.49924119468778,-163.0088627440855,-163.9717211392708,-163.58076225407422,-162.97237407648936,-162.9676228784956,-162.12757778400555,-162.9141060244292,-162.0875004902482,-162.55615969374776,-163.04486093809828,-162.4100492466241,-162.15604444686323,-162.09453935781494,-161.71392250992358,-162.2347064963542,-162.71340386010706,-162.36195882689208,-162.89008875424042,-162.49300299631432,-162.2244743653573,-163.21930807176977,-163.59269909746945,-164.5006074681878,-165.381962754298,-166.2809387119487,-167.15629456192255,-166.61667813034728,-167.59590423526242,-167.8055034657009,-166.8271555090323,-166.71840212820098,-167.0773493172601,-167.77291299123317,-168.55204834369943,-169.2420239066705,-168.6696177199483,-168.5685433340259,-167.79211040772498,-167.0438376031816,-166.13478179462254,-166.91377737605944,-166.71911727217957,-165.86672864342108,-166.50963556906208,-167.31994567252696,-167.3221983560361,-167.72896115435287,-168.51741835381836,-167.5896178302355,-166.84544531581923,-166.54372328938916,-166.85032615391538,-166.9773867977783,-167.08952801907435,-167.3616255368106,-167.91140366299078,-168.8349412321113,-169.46164178010076,-169.72706566890702,-170.4053229545243,-169.69013644522056,-170.64764734962955,-170.19554956257343,-170.14693321986124,-171.13367661321536,-170.92282280279323,-170.54321211669594,-170.2327430844307,-170.28725418448448,-170.97395869530737,-170.92589980876073,-171.26262072334066,-170.8115787403658,-170.4533514212817,-169.66205321997404,-170.6595042143017,-171.64313542237505,-170.92479907395318,-171.30383363179862,-171.652691422496,-171.86048210179433,-170.92308705765754,-171.85211883764714,-172.2121094944887,-172.39969757013023,-172.40939833968878,-173.38706665253267,-172.43076106579974,-171.75949832005426,-171.41648888448253,-170.9184539457783,-170.46618713764474,-170.29913689941168,-169.73137868894264,-170.0662575592287,-169.85357631975785,-170.37449276214465,-170.57728353794664,-171.39337632246315,-171.60705178743228,-171.0720983678475,-171.78375633899122,-171.55894289398566,-172.03190292418003,-172.28782139718533,-172.3535534660332,-172.50972901005298,-173.25974085368216,-173.42093791626394,-173.48646384617314,-173.65130862826481,-173.43302900670096,-173.50523940566927,-173.9854265442118,-173.52212461596355,-174.12038787268102,-174.00952061265707,-174.15351526532322,-173.89215602073818,-173.0461647133343,-173.79894966306165,-173.2577673504129,-174.13233066443354,-173.28851639200002,-173.99466925533488,-174.00267106713727,-173.80108232749626,-174.38343320554122,-174.2275409908034,-173.77011847821996,-174.05311971297488,-174.95136127667502,-174.1947892671451,-174.1829812177457,-174.33688930934295,-174.70447009522468,-175.629108262714,-176.2934974906966,-176.28254761639982,-176.03941560164094,-175.28513200767338,-176.24203073326498,-177.12483632704243,-177.52617866871879,-178.0652306866832,-178.9254486556165,-179.5486230906099,-179.9060446023941,-179.2903141551651,-179.4737335005775,-179.5160712939687,-179.9323470252566,-180.69356031762436,-181.13449533702806,-180.1853181887418,-180.1656294730492,-180.26957906084135,-180.35264005558565,-180.38481793552637,-180.49753238353878,-180.5947701651603,-179.64099631737918,-179.16944456426427,-178.92348399525508,-178.7863942864351,-178.20378255052492,-178.59658480342478,-178.270742978435,-178.432124231942,-179.20804407261312,-179.72380355605856,-178.75166579149663,-178.50676320446655,-178.9937627967447,-179.31780407670885,-179.20596378296614,-178.41704823402688,-178.4445399362594,-178.40384991001338,-179.37097989581525,-178.88112844945863,-177.97423309227452,-177.45757475169376,-177.74729012930766,-178.15555500471964,-177.62550712982193,-178.16126471944153,-178.9844769537449,-179.25712969806045,-179.5662054256536,-180.07611745689064,-180.57897593965754,-179.68487706827,-180.14053313806653,-180.9419054891914,-180.32061151601374,-180.76865261932835,-181.15008591813967,-180.82089765788987,-180.4675919734873,-180.09933084947988,-180.96225562412292,-180.4313887092285,-179.56445503700525,-180.16363162128255,-179.49518778035417,-178.5665213437751,-177.7119235144928,-176.86173838796094,-176.20754399476573,-177.09316735900939,-176.98312832042575,-177.28338526468724,-177.5410712538287,-176.90115202730522,-176.1635152469389,-176.5942239756696,-176.14204703457654,-176.40002539940178,-176.7388433511369,-176.44985670875758,-175.54081692593172,-174.97208160348237,-175.73527742736042,-176.65198103617877,-176.59838371677324,-176.76817600475624,-176.86286395555362,-177.59983108239248,-178.55850825970992,-178.22152180876583,-179.13536097900942,-179.33826786885038,-178.63013901608065,-177.8592475131154,-178.81999483332038,-178.43269711360335,-177.8316864571534,-178.37125061033294,-178.4788513155654,-178.97649808973074,-177.9943720488809,-177.33455516956747,-176.77636273764074,-177.31940116686746,-176.358403861057,-176.67585280211642,-175.9863558486104,-176.09050933737308,-176.12657614983618,-175.40127309877425,-175.80522966897115,-176.30826329952106,-176.49261716706678,-175.58439292851835,-174.8343519018963,-175.36883548786864,-175.22952835308388,-174.9322111317888,-175.11004911037162,-176.0093139987439,-176.89491501497105,-177.1355561525561,-177.60812160559,-177.03901848290116,-176.673847428523,-176.57991478266194,-177.2544201980345,-176.59256839146838,-177.37482634885237,-177.41880200663581,-178.14644850511104,-179.09067329857498,-178.5309503446333,-179.1433993401006,-179.91952513949946,-179.93870072253048,-179.40007800702006,-179.6070643402636,-180.4102774639614,-179.52870787726715,-180.43011920107529,-180.63902775431052,-179.7576798624359,-180.03043094836175,-179.89916250808164,-178.93643944431096,-178.67995876725763,-178.1012255414389,-178.10838361270726,-177.81740108225495,-177.83316213218495,-176.87095584673807,-177.5487767723389,-176.9232008275576,-177.74434935254976,-178.50131124537438,-178.62142640491948,-178.04594841739163,-177.76027345238253,-178.65415906021371,-179.46994088357314,-179.69254999421537,-179.4578129290603,-178.9636293775402,-178.6228148350492,-178.851551707834,-179.72086259769276,-179.24852146580815,-178.5098922625184,-177.95069913147017,-178.3127461974509,-178.90705922292545,-179.14450714178383,-179.56458495277911,-179.11900911992416,-178.17799776559696,-177.82695415616035,-178.4997630044818,-179.2850653361529,-178.42785101337358,-178.92457975493744,-178.24129305407405,-177.24476024508476,-176.77755560912192,-177.6712986412458,-177.1618083701469,-177.71240024687722,-178.1324255950749,-177.87537236185744,-177.00525222020224,-177.67379432404414,-177.08131477236748,-177.325888317544,-176.89548740256578,-176.3429600233212,-175.63469201512635,-176.34709432860836,-176.01737478934228,-176.17092374851927,-175.99672140413895,-175.60095696523786,-176.52054116642103,-176.3862633453682,-175.86281908024102,-175.5872631710954,-175.72033647680655,-176.47843645885587,-176.31343485880643,-176.99980568233877,-177.69193685706705,-177.53153409203514,-177.16603499557823,-177.50324295600876,-178.3440629178658,-179.13583026779816,-178.99488966586068,-178.85700936755165,-178.93578608334064,-179.51930976472795,-180.39807386137545,-180.84831381216645,-181.28046020073816,-181.20690806908533,-180.29618284851313,-181.10407475894317,-181.63160251406953,-181.69929231936112,-181.42988273268566,-182.36111737554893,-181.59201189409941,-182.1628062571399,-182.35409323778003,-183.07292942982167,-182.4096411606297,-182.16897207079455,-182.46841056458652,-182.43728655111045,-183.4124970738776,-184.1946417945437,-183.38950951350853,-182.90425225440413,-183.13294950826094,-184.01826284918934,-183.09867067681625,-182.36809116927907,-182.50758806383237,-183.04974871547893,-183.70224259980023,-182.86264612386003,-183.1452538431622,-183.77031893888488,-183.8119396874681,-184.80740895541385,-184.45164446532726,-185.21764734387398,-185.32198211783543,-184.60687262751162,-184.88433733629063,-185.25472999131307,-185.2341300533153,-186.129103617277,-186.40296317031607,-186.17686809180304,-186.18331600399688,-186.37950485385954,-187.11393854860216,-186.52076254598796,-186.43692956026644,-187.30518839182332,-186.76371679874137,-187.2419299199246,-186.50764776207507,-186.22492470918223,-185.91709452634677,-186.65355924610049,-187.42835251893848,-187.82884356426075,-187.7099942569621,-187.10687812743708,-187.4080821289681,-187.35210982104763,-186.6574503146112,-186.1429616161622,-185.61542687844485,-186.3025605850853,-185.74650072259828,-185.54830859135836,-186.27777052484453,-186.29978725733235,-186.0644185161218,-186.70950644277036,-186.81295068282634,-186.25940517662093,-186.72366828797385,-186.93474132055417,-187.18659586273134,-187.0874880622141,-186.83691497240216,-186.22321571735665,-185.30676238285378,-185.712949834764,-185.7051621749997,-186.0421507707797,-185.67643242841586,-185.85548625746742,-186.017193431966,-186.80013184342533,-185.94254385540262,-186.71604829188436,-186.67197888717055,-186.35383622534573,-187.21215489832684,-187.26772230537608,-187.24845768278465,-188.17623161012307,-188.66927480511367,-188.6554310512729,-189.4189997720532,-189.7541570328176,-188.87772870622575,-188.28662966005504,-188.60902142710984,-188.3747698124498,-187.38671804917976,-186.59608516516164,-186.6613740059547,-185.8969573713839,-185.61499866796657,-185.69828028371558,-185.63588881026953,-185.18406287347898,-185.2839406626299,-184.31427862355486,-183.52905132761225,-182.61290260963142,-182.86489029508084,-182.1102665020153,-183.0053299162537,-182.43710422888398,-181.83508352050558,-181.42003319924697,-182.16460507689044,-182.5307985036634,-182.25222137384117,-183.112641336862,-182.68333465745673,-182.8610033285804,-182.4098659278825,-182.2650890648365,-181.50592914642766,-181.2055883174762,-180.32386962603778,-179.54424762865528,-179.48026301478967,-179.54008126072586,-178.9188845800236,-178.56441763648763,-179.19711754564196,-179.73031979287043,-179.60358975781128,-180.4393840902485,-180.9059057678096,-180.84144781110808,-180.39483005506918,-180.56952435709536,-180.7784557621926,-181.68958046007901,-180.75876408116892,-181.18109790049493,-180.58283255202696,-180.70897844200954,-181.63299065222964,-181.0335808726959,-181.79045891342685,-181.1885191895999,-180.65764641808346,-180.74851212557405,-181.07079797051847,-180.83006733795628,-180.12290409160778,-179.15549645246938,-180.12704587215558,-180.25139994407073,-179.39809909788892,-179.98238189751282,-179.40694045228884,-179.8367711356841,-180.4118935484439,-180.95681843999773,-181.5139818484895,-180.58625553781167,-180.24232470616698,-181.13244849070907,-180.61870074132457,-180.25781519524753,-179.87873381050304,-180.83469075383618,-181.55844143033028,-181.1897090547718,-180.65182436676696,-179.6930494317785,-179.7118160314858,-179.03274938231334,-179.25394478952512,-178.79201967362314,-177.9124313783832,-177.95545701961964,-178.39332337724045,-178.98143752058968,-178.3556961119175,-178.695473395288,-178.73889675922692,-178.24507564725354,-178.6794256232679,-179.51909256866202,-180.46513086138293,-180.5085206301883,-180.58283878304064,-179.65719867078587,-178.68710709409788,-179.42997449077666,-178.830472829286,-179.15786668937653,-178.83327897824347,-178.69887768058106,-178.74249841552228,-179.324984613806,-180.0733317057602,-180.45245895255357,-180.87746189860627,-181.1811138377525,-180.64437690051273,-181.30579476617277,-182.20931456657127,-181.65313693275675,-182.42497726390138,-182.44771658116952,-182.2024501473643,-181.9734831522219,-181.32813093066216,-181.01377463759854,-180.3426899453625,-180.49155338248238,-180.53523429762572,-181.33077170187607,-181.29424971714616,-180.74437583517283,-181.7419770997949,-182.74086364451796,-182.35473342984915,-181.64505394548178,-181.1492871553637,-180.49739704094827,-180.21540032839403,-180.78028042521328,-180.84587349090725,-180.71471473155543,-180.02062814310193,-179.42996540572494,-179.2984059941955,-179.9257132508792,-179.2586688217707,-178.48807553434744,-177.67085905419663,-177.1608310570009,-177.22939387336373,-178.04274433897808,-177.07599415630102,-177.1056442069821,-177.07987594325095,-176.6421139407903,-176.29097825009376,-176.5856051594019,-176.9378297352232,-176.4005866595544,-175.8191273198463,-175.03125235671178,-174.23807631293312,-173.79640079895034,-173.07773016672581,-172.99746865779161,-172.53685837751254,-172.44364528683946,-171.4513308708556,-171.53133110282943,-170.56084194220603,-171.54084439575672,-172.01665622135624,-171.1255080262199,-170.28614255366847,-170.21535834809765,-169.6592546957545,-169.86212211893871,-169.05441770283505,-168.28131281817332,-169.21577305160463,-170.15775952674448,-169.75472936453298,-169.8863556580618,-170.35595004772767,-171.00195152778178,-170.88385584857315,-170.93694012751803,-170.3518902193755,-170.37563794245943,-169.9363038870506,-169.26230293139815,-168.91586723551154,-168.5388527791947,-168.75326804304495,-169.46088640205562,-169.01678569242358,-169.6790249682963,-169.1717718061991,-168.73998140264302,-169.01437656534836,-168.52234945306554,-168.32158578420058,-167.74371952330694,-167.1466861469671,-167.52091704355553,-168.51084941998124,-168.73242233647034,-169.55340106785297,-170.1153834182769,-169.3926553730853,-169.68530501518399,-168.9268057201989,-169.50060714175925,-169.26608995720744,-169.68862525280565,-169.72956132655963,-169.1115034953691,-169.09061942156404,-168.56270269537345,-167.68337698979303,-167.09274612972513,-167.87506669340655,-166.9680750030093,-167.7250194232911,-167.26966427313164,-166.78494465211406,-166.74405225692317,-166.99423037935048,-166.88021090673283,-167.10407374612987,-167.82973477523774,-168.09384586382657,-167.52068046107888,-168.49252413911745,-167.84474972402677,-167.73378549842164,-167.65643176063895,-166.7548061395064,-167.49885087413713,-167.49053459987044,-166.54141547624022,-167.22158000804484,-166.56640930566937,-166.10757719213143,-166.4608312183991,-165.9424669709988,-165.5425545820035,-165.55843178462237,-165.38839056855068,-165.4552875184454,-165.30803199717775,-165.0530477692373,-164.59874677378684,-163.77103582955897,-162.80824893387035,-162.86338512180373,-163.13066380191594,-163.70907721295953,-164.68010412016883,-163.68791515380144,-163.08941255928949,-163.64858914073557,-164.15187853900716,-163.60281583853066,-162.9820569693111,-163.2941710636951,-163.24370398093015,-164.04673902736977,-164.47335992800072,-163.71189215779305,-163.81690285447985,-164.22334131971002,-163.4087293096818,-163.44645526865497,-162.9902729713358,-162.44813456386328,-162.6982738012448,-162.71419151034206,-162.3894678526558,-163.24750359356403,-163.78244966175407,-163.58468417311087,-163.9351073508151,-163.56188215548173,-164.0702146277763,-163.66641158610582,-164.57380193145946,-164.60227896086872,-163.9412596281618,-163.848375224974,-164.8363829352893,-165.30935504846275,-165.27828258322552,-165.74415135476738,-166.3273734166287,-165.47529216017574,-165.49845037376508,-166.02008639881387,-166.45865478552878,-167.42339890217409,-167.01534818811342,-167.44713215436786,-167.6884620813653,-167.89779230486602,-167.28052718564868,-167.08690881403163,-167.88486945489421,-168.15006388910115,-168.66615224583074,-168.42040442628786,-168.3827289417386,-168.66558743594214,-168.75292912498116,-169.53726510284469,-169.93044427409768,-170.04124109214172,-169.2509251111187,-169.39366638334468,-168.42572657577693,-168.465627736412,-167.490121494513,-168.22014078171924,-167.24382308637723,-168.1876479946077,-168.18197375535965,-167.4520648336038,-166.9144332613796,-166.410755045712,-165.66712519107386,-165.30703029455617,-164.40082482481375,-164.8796945461072,-164.8152835201472,-164.9665182554163,-165.62306850915775,-165.07901995256543,-164.3259939448908,-164.44810197455809,-163.46382678998634,-164.33249146025628,-165.2786019453779,-165.6767510380596,-166.63210888952017,-166.33928805962205,-166.12666636239737,-165.15659411018714,-165.23384040687233,-164.72096165455878,-163.81413774425164,-163.24347126949579,-164.09831887902692,-163.39511643024161,-162.96822105441242,-162.2737136729993,-161.9583094753325,-162.68995344545692,-163.6440800637938,-164.20254341186956,-164.43542534206063,-163.44313568109646,-163.65358551917598,-164.48903379170224,-163.82771587977186,-164.54912382224575,-164.8002860341221,-164.71206047106534,-164.43106954637915,-164.18597491411492,-164.99483972694725,-165.33823009114712,-165.7313933200203,-164.77235340792686,-165.63154346169904,-165.58370569348335,-164.98389825923368,-164.90057377284393,-165.780174233485,-166.06449970649555,-165.90297824516892,-165.74707833863795,-166.6709920228459,-167.0156176108867,-167.06689304998145,-166.75738061172888,-166.26374487765133,-165.4935034099035,-165.59615661529824,-165.32922635320574,-164.91799461934716,-164.28141456237063,-165.00170973828062,-165.83564946753904,-166.49232002347708,-166.96672368934378,-167.38311009388417,-167.3685639067553,-166.97762590274215,-167.0437941304408,-167.59391299868003,-168.40566347399727,-168.34543575765565,-169.18083535600454,-168.25508445501328,-168.80726868426427,-169.15344256768003,-168.4932477143593,-169.20254128891975,-169.30929316440597,-170.26952110882849,-169.5402340972796,-168.6033339095302,-168.10648513399065,-168.5794091098942,-169.5292015611194,-170.3929730085656,-171.03329759743065,-170.12282909313217,-170.26396277360618,-171.1339004021138,-171.16983555955812,-170.87087270384654,-170.1357511850074,-170.8468296881765,-170.01968779601157,-169.77756889117882,-170.0846954123117,-169.35097217513248,-169.7752969507128,-169.24684993643314,-168.85918382601812,-168.73764475574717,-168.42930911993608,-169.16017005266622,-169.6001304173842,-169.44964585313573,-169.24426701152697,-169.94012811547145,-170.47939415834844,-170.86227042973042,-170.75759990839288,-170.0624699667096,-170.02330183330923,-169.1209380137734,-168.93129783682525,-169.19556970475242,-168.34136865008622,-168.9886885015294,-168.32683505536988,-168.46924805780873,-168.22479378571734,-167.60259457305074,-167.96962418826297,-167.98152069514617,-168.0103305550292,-167.88155590882525,-167.55286694830284,-167.64264446729794,-168.01207209564745,-168.75835771113634,-168.68621425610036,-168.5122019359842,-168.5043612685986,-168.56272741546854,-168.1097759907134,-167.38970876531675,-167.06804047944024,-167.12314820988104,-166.34992143511772,-165.37442244868726,-164.39087964687496,-164.67343854671344,-165.6491732634604,-164.6599232694134,-163.86616863915697,-162.9575547776185,-162.93046204699203,-163.58959704870358,-164.29502755450085,-164.4821631112136,-164.93343285564333,-164.39121661987156,-165.26487925555557,-165.36191593576223,-165.46706405468285,-165.40742358611897,-165.80164992576465,-166.40579501492903,-167.21635593893006,-167.89733727369457,-168.52216756809503,-167.87424942012876,-167.2782526863739,-166.41904990235344,-166.4887206205167,-167.2858285191469,-167.08647960843518,-167.5982127590105,-167.99492593063042,-168.54606625298038,-169.39900350151584,-170.33322434313595,-170.14088388253003,-169.52023032447323,-170.18781919917092,-169.4737296877429,-169.16794556565583,-168.2622472597286,-168.62886341894045,-168.55582802789286,-167.7344633024186,-168.0648371167481,-168.46762134507298,-167.77806905470788,-167.17464693728834,-168.159340669401,-168.6725932774134,-168.33124201605096,-167.38839647406712,-168.17723683500662,-167.26702790660784,-167.63006573775783,-167.67562513705343,-168.5607544919476,-169.51671768259257,-168.66745421895757,-167.92298071319237,-167.32608625944704,-167.64207373838872,-168.35700150206685,-168.85992840956897,-168.74198053963482,-168.67254885099828,-168.5221199640073,-168.50101467920467,-168.25448466371745,-168.83433407591656,-168.37351368786767,-168.18305554101244,-167.77094462467358,-167.6904671061784,-167.10981795890257,-167.78017060318962,-167.17911608237773,-166.2122402852401,-165.9215760687366,-166.62405891390517,-167.1380806467496,-167.26739815436304,-167.49601666303352,-167.3544085738249,-167.12194690853357,-166.6905923401937,-166.09783956687897,-165.48255751421675,-165.5040344116278,-165.00973116839305,-164.5660425024107,-165.31101072207093,-165.94264780217782,-164.95244610216469,-165.28317638672888,-164.9068739679642,-165.48419959750026,-165.9402841962874,-166.8822798775509,-166.6471871798858,-165.70828408561647,-165.3040327699855,-166.28041665628552,-166.98872992023826,-167.07461948739365,-166.60476323822513,-166.04233559407294,-165.69464222388342,-165.80615657009184,-166.3167785834521,-166.2990388860926,-166.55135478731245,-166.54706039698794,-166.69438454927877,-165.9190011327155,-164.9382593552582,-164.44822510471568,-163.50084847118706,-163.58964638784528,-163.75229029916227,-164.36996961431578,-165.03700726293027,-164.21512285340577,-165.18269292544574,-164.34357602568343,-165.1506088115275,-165.84069761354476,-166.69132179114968,-166.9592690607533,-167.58375587454066,-167.54088468663394,-167.36505063064396,-167.4114079256542,-167.60507097654045,-166.98545448016375,-167.77354264864698,-167.12477315589786,-166.37716391542926,-166.3878576401621,-165.94641495868564,-166.56101079564542,-165.7592880371958,-166.1378366383724,-166.16770636988804,-166.86079066665843,-166.4583161175251,-166.68548296485096,-165.8616882385686,-165.806900434196,-165.2789889248088,-166.2097580707632,-165.78033060627058,-164.9086446762085,-164.50843861186877,-164.7543490161188,-164.06040328135714,-163.46970841335133,-163.293216005899,-162.34269295213744,-163.1130636180751,-163.76231359085068,-164.54276875592768,-164.85598462400958,-164.29969005845487,-164.14079068508,-164.8338230648078,-164.41554083768278,-163.5320317596197,-163.2159213135019,-162.64475456485525,-161.7957276548259,-161.76211033621803,-160.78690765751526,-160.14542830875143,-160.57610439229757,-159.59929761337116,-158.96631382172927,-158.17986760428175,-159.10779822524637,-159.2792111346498,-159.25845862133428,-159.86108935205266,-160.8066570307128,-161.3652169299312,-162.22205040883273,-161.81361895846203,-160.9497849359177,-159.97319078212604,-159.35150414751843,-158.67040601978078,-159.6438119034283,-158.9205267727375,-159.04141503525898,-159.1169120860286,-158.77936352370307,-157.80522380862385,-157.5833765817806,-156.7622730252333,-155.98731418140233,-156.10599741945043,-155.85633302200586,-156.11522853467613,-156.10961125325412,-156.58601480023935,-156.57665906008333,-157.0006070700474,-156.76480430876836,-157.25060798041523,-156.64849047688767,-155.7208569184877,-155.5555692417547,-154.66972385300323,-155.2634211955592,-155.54009185452014,-154.80324692092836,-153.90573736513034,-154.1255152481608,-154.43892416823655,-154.38187410589308,-154.38103287806734,-154.42304453253746,-153.83359904121608,-152.97024529101327,-152.60821570362896,-152.3480115844868,-152.97482644906268,-152.99122280767187,-153.53934195591137,-153.22694210428745,-153.76834879536182,-153.64377350499853,-152.65290924813598,-153.09639241313562,-152.50088845286518,-153.38967143604532,-153.7121819150634,-152.71447969740257,-151.75068985205144,-152.52909839339554,-151.59742158837616,-151.56321491347626,-151.65600183280185,-151.08238147990778,-150.92836364591494,-151.09458686877042,-151.35281999455765,-151.50649384362623,-150.90795673104003,-151.49565145326778,-151.02182595990598,-150.06334136193618,-149.80221108160913,-148.91889174235985,-148.2472742316313,-147.74615921033546,-147.94303364306688,-148.27633795375004,-148.1573163382709,-149.110014999751,-149.24715728359297,-148.38519818382338,-148.7310422542505,-147.95570946019143,-147.5697276610881,-147.06609855825081,-147.3093234114349,-147.7441274849698,-148.44380249176174,-149.04692738270387,-148.47759185684845,-148.5799266397953,-149.49819365656003,-150.2791295372881,-150.92693360708654,-151.73592051444575,-151.58081337623298,-150.9379177475348,-150.36790902772918,-150.92642171960324,-150.1837356663309,-150.84477578755468,-150.32278830744326,-149.5701397289522,-149.93260147143155,-149.58612990984693,-150.11509362747893,-149.4598736409098,-149.8452084157616,-149.41019571339712,-148.62861169222742,-149.28770835278556,-148.3897248902358,-149.35979231493548,-149.04237894155085,-149.2511316020973,-148.8382882028818,-147.88588835578412,-147.63449454773217,-148.41406692238525,-147.8414004878141,-147.0014915210195,-146.91436765529215,-147.17406453751028,-146.32740757334977,-145.9071782180108,-146.24854520335793,-146.48888798058033,-146.58730312483385,-147.47577916225418,-147.4220452462323,-146.84982812404633,-147.3748176903464,-147.40506339538842,-147.8009888464585,-148.04484461806715,-147.72409530123696,-148.31302062049508,-148.46727839391679,-148.52177108172327,-149.31165339658037,-148.88299007248133,-148.74680680362508,-147.9603776074946,-147.6113770697266,-146.89662675466388,-146.98005484510213,-146.9658829011023,-146.48837547702715,-145.51402635173872,-145.1459297835827,-144.34276223462075,-144.06160666048527,-144.74712935835123,-144.0036255363375,-143.03168782871217,-143.82719284994528,-144.07769788382575,-143.46934817032889,-144.4062212589197,-143.93976096250117,-144.01874103024602,-143.66409013373777,-144.4966106102802,-143.72450261283666,-142.865344600752,-143.46868626587093,-143.96835529012606,-143.95308921067044,-143.7982554063201,-143.85296960594133,-143.26065367786214,-143.71808349480852,-143.3486422454007,-143.09752071276307,-142.65775636350736,-142.03887162962928,-141.07802297640592,-140.41172621771693,-140.45244148233905,-139.90564272087067,-139.344326000195,-138.50148554332554,-138.14038815768436,-138.45583256799728,-138.18007715325803,-137.99518500454724,-137.1332356017083,-137.88524622889236,-137.678256763611,-136.82487043645233,-136.4881514403969,-136.57019600691274,-136.22713152272627,-136.07889059139416,-136.4971391102299,-137.0513820531778,-136.93966947076842,-137.21195375965908,-137.89694127300754,-138.57310767937452,-138.6199747249484,-138.3439371320419,-138.19391919812188,-137.99280914431438,-138.00504588522017,-138.23968841601163,-137.73562457831576,-137.18870990443975,-137.87250533280894,-138.72834596363828,-137.83609742159024,-138.77284417068586,-138.59521036362275,-138.01327951718122,-138.06034284783527,-138.20237472793087,-138.8431049566716,-137.97720687650144,-137.0941211641766,-137.9183032005094,-138.35459406441078,-138.9620219389908,-138.73911199811846,-138.7356110168621,-139.63627810636535,-139.8033964065835,-138.9933126331307,-139.38576102722436,-140.14644693164155,-141.05015832418576,-140.62937882961705,-141.5439876811579,-141.75322747975588,-142.70029608672485,-143.459597337991,-142.83260487625375,-142.43569527519867,-143.24039436783642,-144.0968484263867,-144.93461169023067,-144.56580410106108,-145.36442004377022,-145.54118870245293,-145.66281261434779,-146.2269918094389,-146.31338457018137,-146.9619942116551,-145.97551447944716,-145.36076950095594,-144.3742090105079,-143.8902187719941,-143.5088266832754,-143.3187330351211,-143.3166665043682,-142.96160702826455,-142.39086193591356,-142.33936658734456,-142.87711759563535,-143.3770776828751,-142.92697939742357,-141.95222664391622,-141.83385068550706,-141.18074852973223,-141.8663498479873,-141.78398250043392,-142.73054152168334,-142.021893881727,-142.08047733688727,-141.62639382388443,-142.09733352530748,-141.1245635561645,-141.4082442065701,-141.34730551065877,-140.6018836852163,-141.29828914487734,-140.63089837227017,-141.60981251625344,-142.36526527768,-142.30742293782532,-143.0065943757072,-143.69804522488266,-143.91764372307807,-143.63431531051174,-143.16657786257565,-142.68359636887908,-141.7915385644883,-141.24873166158795,-140.71120642265305,-141.33667859667912,-141.06649572914466,-140.5349750048481,-140.13360469974577,-140.39310946362093,-141.37324738688767,-140.59419543948025,-141.2571475491859,-141.27907552802935,-141.9743324345909,-141.0110165514052,-141.428322723601,-142.25253171753138,-143.23110472830012,-143.05751809151843,-142.21838255692273,-141.89229314774275,-141.30011834856123,-140.73227601498365,-141.1571563621983,-141.9707736526616,-141.90113886352628,-142.64061497105286,-142.98139425786212,-142.12329016905278,-142.8442136370577,-142.61149596609175,-143.43123383354396,-142.45532015431672,-142.1260804333724,-142.52188069885597,-143.21682430896908,-143.83122578216717,-143.25160746043548,-143.83856588136405,-143.2317976471968,-144.12360678613186,-143.25502300728112,-142.89223717758432,-141.90355997672305,-141.84600292285904,-142.22231963230297,-141.7533617215231,-142.5635535530746,-142.20668839896098,-141.62299982830882,-142.19710631109774,-142.91653704456985,-142.2532856524922,-142.96140591520816,-143.68697626050562,-143.01992378849536,-143.0742185851559,-143.55840242514387,-144.38491630274802,-144.4737830152735,-143.58597471378744,-142.79516132967547,-141.97850151499733,-141.2186998706311,-141.0626403009519,-140.1498458944261,-139.68867616122589,-140.43047809880227,-141.24276895588264,-141.23041730374098,-141.4793055136688,-140.9649674720131,-141.26601403206587,-141.98811111273244,-142.5419546291232,-143.47442630957812,-143.4873964311555,-142.64808081975207,-143.08637195359915,-142.53694973001257,-141.93804183788598,-142.75662738084793,-143.4185677547939,-144.04421247495338,-144.51796519197524,-144.26548951957375,-143.6797758853063,-143.08195609832183,-142.9642783724703,-143.36539675015956,-142.45732575608417,-142.41930209798738,-142.01257755653933,-142.02619919832796,-142.32076015882194,-141.88112314185128,-142.29089883668348,-141.98165054619312,-142.22883761720732,-141.2588954414241,-140.27421078272164,-139.41237125732005,-139.62698076246306,-139.56096669659019,-140.4730993984267,-141.11142765544355,-141.0977056948468,-141.66251991922036,-141.18610579054803,-141.13682097848505,-141.82528782635927,-141.04234949313104,-140.14825845696032,-139.76978808501735,-139.66155365249142,-140.1432205643505,-140.5711111286655,-140.5593979069963,-139.59444462694228,-139.41333121759817,-138.586319307331,-138.01269492972642,-137.3453257260844,-137.71779973385856,-136.831125093624,-137.82203875714913,-137.29348337184638,-137.20321998326108,-136.52979927044362,-136.81371502997354,-136.5417634951882,-135.60274305567145,-135.09030469227582,-135.83787159994245,-135.46484167221934,-135.4075311436318,-135.4702413151972,-136.34186080144718,-135.46115401759744,-135.19442251650617,-135.24110545683652,-135.18464563181624,-134.43986603990197,-134.0091423089616,-133.4242017059587,-133.21151009388268,-132.97603112785146,-133.68722241092473,-134.27671826118603,-134.60152983758599,-133.96678110957146,-133.61192630324513,-134.06247573625296,-133.72508716909215,-133.8922150186263,-132.97073652176186,-133.66131403297186,-132.97695424081758,-132.4333693915978,-132.13534709531814,-132.18419990455732,-132.95368007058278,-132.21343277022243,-131.48359924880788,-130.93182644760236,-131.166489448864,-130.46412293612957,-129.8278212933801,-129.5242447773926,-128.87339892657474,-128.5792503617704,-129.26469895849004,-129.68779886234552,-130.43668954772875,-130.14566656388342,-130.44759734114632,-130.20241247490048,-129.7218334688805,-130.05521456431597,-129.39421987207606,-130.23879304807633,-129.4054106832482,-128.4075808566995,-129.0699621872045,-128.21348455315456,-128.1530974060297,-127.79896114440635,-127.32577821426094,-127.34901348967105,-126.41779295215383,-126.16640693601221,-125.91563883423805,-125.43499474041164,-125.77480719285086,-125.35184059711173,-125.11306151002645,-125.69493175158277,-126.68930805940181,-127.55689701298252,-128.08767479797825,-129.0696251243353,-129.67143775057048,-128.8018481596373,-128.30187919922173,-128.2067006714642,-127.91608163760975,-128.04391828598455,-127.54055644851178,-127.85017463704571,-127.64822481339797,-128.18957863934338,-127.817188042216,-127.70761546399444,-127.7405317123048,-127.57993838470429,-128.4620115957223,-128.2913363543339,-129.1536293234676,-129.01774796890095,-129.43680949276313,-130.29090350819752,-131.20444474183023,-131.04680608445778,-131.1790946968831,-131.14956293068826,-131.64912370964885,-130.9063534955494,-131.8611350338906,-131.86173369782045,-131.08526975056157,-131.58235859358683,-131.39236031938344,-131.16681991238147,-131.04915408277884,-130.60320372506976,-131.16434420319274,-131.03351750783622,-131.60924530774355,-132.12280736863613,-131.99738204618916,-131.7466933913529,-131.17679264210165,-131.65091595426202,-132.41019519697875,-131.67532143276185,-132.64607560494915,-133.38087313435972,-133.72345275897533,-134.25928024714813,-135.19193165143952,-135.36064771702513,-136.34390344843268,-136.55984752113,-137.36133847618476,-138.0001887497492,-138.87231856258586,-138.01951203588396,-138.60520420968533,-138.738602692727,-139.52946012606844,-139.2094431030564,-139.40338115533814,-139.01463393960148,-139.64375559287146,-139.8384503647685,-139.72227948717773,-139.4609618592076,-138.75913954339921,-138.1251754895784,-139.1217581834644,-138.33927719527856,-137.42590509867296,-136.73343392461538,-136.40981790889055,-136.80382915539667,-137.7233980926685,-137.72871551895514,-137.33080246439204,-137.13459726655856,-136.98524055304006,-137.3532920340076,-138.14668505685404,-138.98448416683823,-139.95094104344025,-139.2442244370468,-139.93280489370227,-140.50487271230668,-139.66856900649145,-139.89465193776414,-140.73999599274248,-140.81128222122788,-140.3435195274651,-139.51459754584357,-139.63205059012398,-140.070427053608,-139.70532064931467,-139.81853594025597,-140.41125118779019,-140.27433041948825,-141.0048747677356,-140.962210257072,-140.19658288406208,-140.2958646034822,-139.9164224988781,-140.84289259137586,-140.63299045478925,-139.70442819735035,-140.14388248696923,-140.4324754117988,-140.50754878344014,-139.98181593837216,-140.46056713256985,-141.28455070126802,-142.16129090171307,-142.90860684774816,-142.42663291981444,-142.23377917753533,-142.46561657777056,-142.582786063198,-142.87733517680317,-142.22886144276708,-142.5002952790819,-143.33934085676447,-143.0042360224761,-143.91911900090054,-144.09089250629768,-144.48983414983377,-143.49381210422143,-143.77931881742552,-143.41223898157477,-142.91594112385064,-143.57038620347157,-143.43407304305583,-142.6594366435893,-141.69307060725987,-142.4226475446485,-142.53886772319674,-141.96419680444524,-142.02989414148033,-142.3330460828729,-142.48679744219407,-142.4904061811976,-141.73476241761819,-141.380452811718,-141.72758571291342,-140.88752033375204,-140.18448437005281,-140.54475674498826,-140.0435468312353,-139.15625340491533,-139.8537015770562,-140.3043276076205,-140.69422044185922,-140.03881908860058,-140.14030275167897,-139.69241275498644,-138.88784434832633,-138.33328945701942,-138.13189248833805,-137.58351164637133,-136.79770568804815,-136.41876381030306,-137.01287335995585,-136.71533964714035,-137.23105801269412,-138.12701238226146,-138.75227542733774,-138.56496660364792,-137.77280477294698,-138.33775937231258,-137.68013290315866,-138.25696092052385,-139.06671279622242,-138.9274113108404,-139.87396366521716,-140.0991845051758,-140.20527821360156,-139.22633065422997,-139.43903327872977,-140.39430378563702,-140.44342664489523,-139.54682437889278,-138.77764175040647,-139.30645204521716,-140.1437660693191,-140.1011037901044,-140.51909024594352,-141.45438994280994,-142.24663241906092,-141.8561473423615,-141.67693758942187,-141.72451881645247,-141.50399399036542,-142.3584656510502,-141.9279688098468,-141.44237679988146,-141.3205412272364,-141.07803473994136,-140.59239072958007,-141.54045696090907,-141.23773572500795,-141.5805818270892,-141.50077330647036,-141.07972094137222,-141.50527721177787,-142.46261904062703,-141.967944863718,-142.57591299386695,-143.4380014645867,-143.09765529818833,-143.36511957179755,-143.17165614198893,-142.32518577110022,-141.8861609911546,-142.49373750016093,-141.92863052990288,-141.69238472310826,-141.69734008656815,-141.5395196666941,-142.2232615868561,-142.22056075837463,-142.53934031445533,-142.64256174024194,-142.47876713518053,-142.37907384661958,-143.10126960556954,-142.85127746127546,-142.5494025903754,-142.43189185578376,-142.9799580941908,-142.77522570360452,-142.4064197121188,-143.38994049513713,-144.1286507062614,-143.66000236803666,-144.17839686572552,-145.01617485051975,-144.71653689537197,-145.17723886994645,-145.1249965885654,-145.72615367453545,-144.74337221402675,-143.76782382838428,-143.17269615689293,-143.77727188263088,-144.22755008609965,-143.73358473088592,-143.35523048695177,-143.8395517640747,-143.45820796815678,-143.8608600469306,-144.25471189944074,-144.3946872940287,-145.00236014695838,-145.6501162177883,-145.5301958816126,-146.43540454655886,-145.4485618872568,-144.88355294289067,-144.59673854662105,-144.39100638777018,-143.76709269592538,-143.5548559180461,-142.5966388443485,-142.3291855538264,-143.13371980655938,-142.86498584132642,-143.34518167562783,-144.1655454216525,-144.84168140543625,-144.0964894038625,-144.6293928399682,-145.52537898300216,-144.57192589854822,-144.4962218431756,-144.27402022248134,-144.0823096735403,-144.84596307994798,-144.61721296655014,-143.90501511702314,-144.45986109878868,-144.9040394392796,-145.81127689406276,-146.0257048276253,-146.41432655090466,-146.78037141403183,-147.14980187034234,-147.9313472211361,-147.7112624179572,-147.9577140584588,-147.40012967726216,-146.75023076543584,-146.61960290465504,-147.3709208178334,-147.24079484818503,-148.1876496290788,-148.60078241722658,-148.98009678255767,-149.58637911453843,-149.90958968456835,-149.33792802365497,-149.57757727708668,-149.73574460251257,-150.37112245941535,-150.56833061669022,-150.4406648161821,-150.65217642486095,-150.1542020784691,-149.75984978722408,-149.86964183906093,-149.05959675228223,-149.12472358811647,-148.83167734835297,-148.09100151853636,-149.08468709420413,-148.58038684586063,-148.54644060181454,-148.52949808351696,-147.55044775269926,-147.9196158372797,-147.68333909334615,-148.17762037506327,-148.79883724916726,-147.97569864196703,-146.98709728987888,-147.66790477372706,-146.76993802655488,-147.45339860999957,-148.1196341542527,-148.58754544099793,-147.77415843168274,-147.83987240446731,-147.25441700639203,-147.63750647567213,-148.05627157725394,-147.9166352408938,-146.99655116302893,-146.79712040862069,-147.67616259679198,-148.30393638880923,-147.79061438702047,-148.38742387620732,-147.6797201531008,-147.97109700087458,-148.7401470784098,-147.89956095954403,-148.0038114679046,-148.63946001743898,-148.42951078293845,-147.90607548924163,-148.5602375669405,-149.15108409849927,-148.19593722559512,-148.49976225942373,-148.91227513644844,-148.68156796740368,-148.26015477767214,-147.34747640555725,-146.9538798793219,-146.79365092376247,-146.79292786121368,-145.89444133918732,-146.36871447367594,-146.73572474671528,-147.22101996513084,-148.07709134323522,-148.70589162036777,-149.51089373836294,-148.72632906632498,-148.8149050665088,-149.20442344713956,-148.5959409493953,-149.20721449470147,-148.769979251083,-148.31961646676064,-149.3033078191802,-149.0752197764814,-148.4722165823914,-148.1939283865504,-148.112956575118,-147.48539932304993,-146.59440189879388,-146.03964139986783,-146.09113558381796,-145.6065119332634,-146.30819185683504,-146.8795863906853,-147.27606089552864,-147.36778713110834,-148.11046734405681,-147.79749279934913,-147.07404455495998,-148.06599796609953,-147.79485500510782,-147.3950935988687,-146.49738133186474,-145.77270897803828,-146.1814127797261,-146.29911876795813,-145.5718086869456,-146.40516418684274,-147.1207333873026,-146.24215645203367,-146.55506845889613,-146.34110083431005,-145.39293652120978,-145.31253254320472,-144.71120983548462,-144.45408727321774,-145.03114836709574,-145.10820894641802,-145.42628183914348,-144.62306809052825,-145.48612870508805,-144.8986941538751,-145.29033859958872,-144.52252027066424,-144.36615391960368,-143.7723849490285,-143.06105177244172,-142.72848165454343,-143.1318254736252,-142.97490130690858,-142.43072827067226,-143.2335054120049,-142.61426738509908,-141.87712387740612,-142.7654120014049,-143.3982825940475,-143.03167075384408,-143.65725770266727,-143.3163459021598,-143.91419344674796,-142.9674344076775,-143.5654957704246,-144.13588798744604,-143.69860823219642,-143.61153339175507,-142.7219427372329,-143.64091628836468,-143.80780918337405,-143.56826096680015,-144.31640055123717,-143.82223299052566,-143.49121607095003,-144.1783012538217,-143.87749158544466,-144.09175797225907,-143.16578281018883,-143.3307055751793,-143.17841725144535,-142.33541164873168,-142.32716525206342,-142.66995918098837,-142.53713013790548,-143.36104039801285,-143.7160615492612,-143.85835559433326,-143.54396024579182,-143.97312655951828,-143.7721967101097,-143.73613422363997,-143.47447184100747,-143.73311874642968,-144.22428176086396,-143.9461682816036,-143.62759470241144,-142.86826389748603,-143.26969342585653,-142.86694746976718,-143.67939219623804,-144.024716317188,-144.43972500879318,-145.04819973837584,-144.77782753901556,-144.3746287948452,-143.59845547750592,-143.95219703624025,-143.86222435347736,-143.12684398517013,-142.92677122028545,-143.35064427927136,-143.0444536875002,-142.08143151830882,-141.4515843130648,-142.34923412743956,-143.18037117505446,-144.05335015431046,-144.77176076965407,-144.30797532340512,-145.26705151842907,-144.67687415936962,-145.35561630269513,-145.53337257588282,-146.2305544721894,-147.22646491741762,-146.3288236600347,-145.92674203170463,-145.04082483472303,-144.68376924842596,-144.56377174612135,-143.6186119876802,-142.65546553116292,-142.98277211934328,-143.29645128687844,-142.7207202538848,-142.11747944075614,-142.11867820704356,-141.80916730174795,-141.58643750008196,-141.41821292648092,-141.29720604838803,-140.54144365387037,-139.95475595025346,-140.52169022057205,-141.46450166590512,-141.96442944183946,-142.476453717798,-143.06530848983675,-143.71280388673767,-144.17874320223927,-144.78412740956992,-144.6781980865635,-144.02678673295304,-143.9565729596652,-144.7366733662784,-143.96522778412327,-143.28496098099276,-142.85593770910054,-142.6271451585926,-142.86906208237633,-142.03690824378282,-141.96084237936884,-142.75529038114473,-142.90245340112597,-142.74745598761365,-142.23235466470942,-141.98132401518524,-141.2407647818327,-141.11319556226954,-140.7074124631472,-140.21299198642373,-140.30021258350462,-140.67503432463855,-141.36015382921323,-141.33024024264887,-142.18188318097964,-142.44900211738423,-142.61020911484957,-143.17892506811768,-143.66226541111246,-143.60746751818806,-142.9560971162282,-143.8539426974021,-144.5996672171168,-143.90250781271607,-144.19944312563166,-144.48761910572648,-144.81065199663863,-145.16089268866926,-145.16630343347788,-144.80427891993895,-144.14406139031053,-144.3418973046355,-143.81244813650846,-144.37661936040968,-143.76137453923002,-143.18311784416437,-142.3965340005234,-143.05612696614116,-143.11441849078983,-142.14141442906111,-141.80471340799704,-140.83174084639177,-141.52382999798283,-142.4399226740934,-142.6041258489713,-142.4143129256554,-141.74773059319705,-141.9050580128096,-142.68090855889022,-141.8792044497095,-140.89559880271554,-140.59363315068185,-140.62802537065,-141.50873906863853,-140.61994697107002,-139.91728883283213,-140.6070519941859,-139.80022702831775,-140.56933002825826,-141.34695009468123,-141.83773223077878,-142.10083630960435,-141.71475222706795,-140.86986708361655,-141.16929647279903,-140.41256222035736,-141.35533372266218,-140.49841106124222,-140.6526283561252,-141.56686566816643,-141.93672339851037,-141.12974416650832,-140.33517436822876,-139.98346792394295,-140.27228272799402,-139.5334342964925,-139.19111327594146,-138.23061716929078,-137.23891129344702,-137.18304251413792,-136.70448089810088,-136.05361066013575,-137.05089400988072,-137.979610404931,-137.5434319190681,-137.36718740314245,-136.96338903997093,-137.82700247550383,-138.22967348480597,-138.99540340527892,-138.68204441480339,-139.32249259017408,-139.66174374939874,-139.46130431164056,-139.35706915520132,-139.94139446737245,-140.6013260683976,-140.79212694894522,-141.18483042065054,-140.51306758448482,-139.73878374602646,-140.23186211427674,-140.4513677917421,-140.4302443889901,-140.50280898436904,-139.87911849841475,-138.96765573788434,-138.92626675358042,-139.43179617635906,-139.48029218474403,-139.10200025048107,-138.85272551560774,-137.9619738040492,-138.91432061232626,-138.17181296134368,-138.42176941223443,-138.80044126370922,-138.1570806815289,-138.49160455400124,-139.10349383577704,-139.26661059679464,-139.2979079959914,-138.7250361358747,-138.6455686823465,-139.13347020512447,-138.85883170645684,-139.36639662040398,-139.41927435202524,-139.46171615924686,-138.57790714595467,-137.66361252218485,-137.08393211616203,-137.7109384671785,-137.96855367766693,-137.76235826453194,-137.09001019084826,-136.9769811220467,-137.01412584539503,-136.6119031398557,-135.6613451675512,-136.12174889538437,-136.9793372177519,-137.63351165270433,-137.98088552663103,-138.20383292390034,-137.78048058971763,-138.6957393521443,-137.9099315730855,-138.59007064579055,-138.1195825212635,-137.4861165881157,-137.4950962550938,-137.9628638071008,-138.7358757071197,-138.7293129079044,-139.52528222324327,-139.28339744079858,-138.61012756451964,-139.17474713968113,-138.63699135603383,-138.99600764084607,-139.2940286952071,-139.67349936114624,-138.86601734161377,-139.39766158396378,-139.3369628409855,-138.76222450612113,-139.3503939867951,-138.79347079945728,-138.7267947862856,-138.20329084107652,-137.7934368578717,-137.49858115194365,-137.3810705859214,-137.98066020430997,-137.32996911369264,-137.19666562136263,-137.36441599950194,-137.70884385425597,-138.56625112937763,-137.71992750978097,-137.193262567278,-137.04135026363656,-136.50397259928286,-136.99298331700265,-136.7954129865393,-136.56557554472238,-137.28185330005363,-136.82825414650142,-136.40515308780596,-136.44264504872262,-137.198308641091,-136.86928674625233,-137.40266948658973,-137.01990699535236,-137.3726820135489,-136.93540114583448,-137.09305029315874,-137.60995432315394,-138.33932207291946,-137.51751074474305,-136.84297983068973,-137.67935385601595,-138.02461653761566,-137.33301048818976,-137.95037128217518,-138.45073772175238,-138.93254789197817,-138.5173362386413,-137.75696935039014,-138.57708539627492,-138.2617856017314,-137.53436123393476,-137.38919763360173,-137.2451057266444,-136.8957172324881,-136.64676284603775,-135.91293476289138,-135.976853067521,-136.06093428330496,-136.92631043167785,-136.93759170779958,-136.19448398333043,-136.58583635417745,-136.707896634005,-137.42720328783616,-137.10129579808563,-136.97412229375914,-136.38835612963885,-136.08496831730008,-135.90927366586402,-136.13673128886148,-136.61588857788593,-136.24513602582738,-136.84414010914043,-136.56450310489163,-135.9777771080844,-136.30424716183916,-137.27929557766765,-137.79238723730668,-138.3732480769977,-138.66309624537826,-138.27800210099667,-137.39913683524355,-138.22335944371298,-137.8863206235692,-137.05037918454036,-136.55434845667332,-137.47980991797522,-138.15782428113744,-137.5594669058919,-137.1604236937128,-137.22114281216636,-137.95633669570088,-138.1018923916854,-137.4615270923823,-137.78836216870695,-137.30459927860647,-136.92163754533976,-137.42031900491565,-137.45992972608656,-138.02112847100943,-138.15535983024165,-138.05138853378594,-138.58106769248843,-137.66004543518648,-137.35163137875497,-137.63793019391596,-138.40871439455077,-138.19257327681407,-137.75475401058793,-138.6711161392741,-139.14341144217178,-138.75036655832082,-138.53389615379274,-139.3892128141597,-140.0272143757902,-139.84970041038468,-139.41985870990902,-139.72775663388893,-139.41792274825275,-138.64991679927334,-138.77775344671682,-139.64819807885215,-140.62610093085095,-139.83950442401692,-140.48580048279837,-140.5760705685243,-139.8122619036585,-139.71531319385394,-139.48623875062913,-139.06884315796196,-139.1232910072431,-139.46544267935678,-138.82819691766053,-139.63089451519772,-139.69990793289617,-139.43609469244257,-140.37091136770323,-141.0440569394268,-141.54361154697835,-141.05940183717757,-141.653656788636,-141.18484230246395,-140.9536512438208,-141.11162779852748,-141.5769043583423,-141.10320348618552,-141.33594667399302,-140.768816862721,-140.67104476178065,-140.92585526686162,-141.1613225596957,-141.2039722763002,-141.8300734180957,-142.54544741520658,-141.85666330950335,-142.3043500399217,-141.64918191265315,-142.14989759400487,-142.2874704883434,-141.9605290698819,-141.19857415230945,-140.65126419393346,-141.55538736842573,-140.8079928169027,-141.44689156021923,-141.6494567883201,-141.09147098707035,-141.96839103801176,-141.3037583953701,-140.84743012208492,-140.3250635471195,-140.60430173948407,-140.50369425443932,-139.71611416246742,-140.47125499416143,-140.14839422237128,-140.87720608292148,-140.89234547736123,-139.96046156529337,-140.39792571216822,-139.74411473516375,-140.7304940703325,-140.89398009423167,-141.71156930411234,-140.74221714958549,-141.38827522611246,-142.12648262595758,-141.21137191262096,-141.14182084379718,-141.91077966382727,-141.67423028079793,-141.16447718907148,-140.8789196787402,-140.11298593645915,-140.7304821559228,-139.87851820373908,-140.26351159019396,-140.71914633596316,-140.56900883559138,-139.79563517542556,-139.65045044617727,-138.9434291268699,-138.47105130553246,-138.2978766853921,-138.14576644357294,-137.6063112784177,-137.05839359713718,-136.64345616521314,-137.3696019332856,-136.47275814739987,-137.180677567143,-136.48145133443177,-136.35984494397417,-136.52056403364986,-137.30290477722883,-136.4472358855419,-135.49942647153512,-134.9980255300179,-135.63659900054336,-134.95390670606866,-134.36207459447905,-133.63687096210197,-133.625863365829,-134.49647248955444,-134.33140647923574,-133.93346927175298,-134.7760855043307,-133.81654847553,-134.32618900481611,-133.5242173196748,-134.46512865601107,-133.55900844139978,-132.8698249333538,-132.63505229493603,-132.36337632732466,-131.36829769378528,-130.9816093025729,-130.41486746398732,-130.74951179884374,-131.62330758711323,-130.65317835565656,-131.3743822639808,-130.56463114032522,-130.3597670965828,-130.51673483010381,-130.6846808171831,-130.10399299487472,-129.56539421807975,-128.6224387763068,-128.596572462935,-129.30122204963118,-128.77404518984258,-129.56797082861885,-129.62582580093294,-130.31965684797615,-129.59170680772513,-128.8272000825964,-127.96760654076934,-128.84103053389117,-128.91538920998573,-128.27463871613145,-128.03172071184963,-127.41314453119412,-126.72175442799926,-125.75742515083402,-126.67655418161303,-126.33581741107628,-126.58280958421528,-125.70322079956532,-125.40303658694029,-125.93101812014356,-125.10354384826496,-125.10667979717255,-124.24264994030818,-123.55916914250702,-123.03049723198637,-122.53901973227039,-121.57292301720008,-121.06117416266352,-120.09238910954446,-120.84723498439416,-121.24962405813858,-121.74252621177584,-122.21511762356386,-122.81904339417815,-122.90875297691673,-122.95943812141195,-122.48014518851414,-123.39281328115612,-123.15791240194812,-124.01277942489833,-123.05516445543617,-123.28410414094105,-123.56516984989867,-123.14458649791777,-123.72688278649002,-123.89081150107086,-124.2243736339733,-123.54512820253149,-123.72632217500359,-124.07315824087709,-124.54753859108314,-123.63518421119079,-123.14752504602075,-124.12548574712127,-123.2090977258049,-123.60503837233409,-122.73815000010654,-122.47303205076605,-122.93954855529591,-122.62902519432828,-122.32604283140972,-122.32202215492725,-123.21172112226486,-122.35884126508608,-122.78570705326274,-123.33488596510142,-123.9702626708895,-124.489926955197,-124.06966210668907,-123.17670966451988,-122.99984879093245,-123.08628754178062,-123.72200672654435,-124.69882822735235,-123.70620291493833,-123.77220842661336,-122.83031846489757,-123.17256888234988,-122.38244279986247,-122.1600320036523,-122.95485499873757,-123.33197611384094,-122.96073473477736,-122.79168532416224,-122.1805540281348,-122.74137566285208,-123.61562677612528,-123.74688755022362,-124.70783847430721,-123.91881715180352,-124.14986202213913,-123.32040142547339,-123.87130229966715,-124.81811071792617,-125.04891851916909,-125.61345906741917,-126.60583127569407,-127.26914484240115,-127.11808268725872,-128.0828892989084,-128.38010629732162,-128.6357239005156,-128.74490905180573,-129.6317620621994,-129.17777581512928,-128.66364304255694,-128.3660584706813,-128.03269888274372,-128.92749116988853,-129.7484274529852,-129.19232898019254,-129.8547847098671,-130.70813047606498,-131.50780990812927,-130.51352985575795,-131.1210507825017,-131.39056605426595,-130.3964601145126,-130.6605833438225,-131.1731050843373,-130.38524996535853,-130.31180314254016,-130.23690063506365,-131.15097127342597,-132.1450258018449,-132.53176944889128,-132.45828902255744,-133.4393376223743,-133.85424512485042,-133.55048266239464,-134.54460268234834,-135.4909079815261,-135.04747687047347,-134.2524354015477,-133.48919969284907,-133.35212522139773,-132.49595313798636,-133.07287396397442,-133.48391499882564,-132.5627308837138,-131.73925260966644,-131.56721682753414,-130.9685879610479,-131.84838279383257,-131.47001921245828,-130.98271143855527,-130.09697362594306,-130.31601425865665,-129.75555664021522,-130.33904554555193,-129.78016836335883,-129.28071379801258,-129.5804224545136,-129.2712448942475,-130.10922161396593,-131.04064199980348,-131.43960236618295,-131.55559792462736,-131.65213384991512,-132.57771818339825,-132.28989141061902,-131.51903558056802,-131.1228685635142,-130.17609890270978,-129.8507920098491,-129.5134218838066,-130.06900054216385,-130.93743753433228,-130.62642134912312,-131.0858088200912,-131.9246632247232,-131.56441106041893,-132.17188725294545,-131.53436434967443,-131.5037461631,-131.18643365520984,-131.52718222187832,-130.60472916951403,-131.53864039620385,-132.02972351387143,-132.69869925267994,-133.23141975607723,-133.67401682771742,-134.04621601849794,-133.71769841201603,-132.94639838999137,-133.8194533153437,-133.66681071463972,-134.659666209016,-134.29487658524886,-134.92577128252015,-134.6189803313464,-133.80466157197952,-134.01407125219703,-134.68408488156274,-133.91410756111145,-133.4874937538989,-133.57053819857538,-133.39916743151844,-133.57653726963326,-133.3073953166604,-133.7074660495855,-133.08770702593029,-133.04350518714637,-132.65586040727794,-133.12906888732687,-133.63190862024203,-134.61037695407867,-134.84247359074652,-134.57372444309294,-134.54667286202312,-133.6669854191132,-134.58036827435717,-134.74580851988867,-133.82064747111872,-133.14780506072566,-133.48742894968018,-133.9326159991324,-134.55691825132817,-133.9000649168156,-132.92153629288077,-133.47546000033617,-133.4978808676824,-133.03419277258217,-133.78365053096786,-132.95122747123241,-132.93712110072374,-133.4766224063933,-133.74079922260717,-133.57197017176077,-133.70345360878855,-134.27528638299555,-134.30189601611346,-134.27834376040846,-135.12058791564777,-135.14969789795578,-134.4742020741105,-133.61041987594217,-133.49127016356215,-134.19940767530352,-134.06420992454514,-133.39598916424438,-132.6455600587651,-131.94327035406604,-132.08876119926572,-132.67312408052385,-132.81776085915044,-133.5984444161877,-134.14615979744121,-133.97933097509667,-134.17786349914968,-134.16829731781036,-134.69713069265708,-135.0444657895714,-135.24975642282516,-134.40148379513994,-133.6096575902775,-133.6863953084685,-133.20390960713848,-133.59027474932373,-134.3230474703014,-134.02991523500532,-134.55515706911683,-134.7613956388086,-134.7366854106076,-135.51347771612927,-134.9569829297252,-134.7778817154467,-134.15284962719306,-133.56668421812356,-133.38770738709718,-134.29599157441407,-134.65465716598555,-135.44709610193968,-135.2784927757457,-135.31434441544116,-135.5727347037755,-136.42891041887924,-136.06929706782103,-135.4806815967895,-135.5816381946206,-136.54570149909705,-137.07081433106214,-137.8255741004832,-137.63976689474657,-137.87736448459327,-137.29393686028197,-136.94223191216588,-136.42749722953886,-135.7958631454967,-136.5116364476271,-137.23725017299876,-136.90719875134528,-136.31667814450338,-136.13536175573245,-135.47351504163817,-134.78725835261866,-134.99219243368134,-135.56567992363125,-136.12342530861497,-135.30315168574452,-134.89883426204324,-134.06437150016427,-133.816918972414,-134.4873469118029,-135.3469497715123,-136.11599694984034,-136.44030687585473,-136.20344904251397,-136.4718566625379,-136.57408309262246,-135.99321676278487,-136.51529062911868,-136.92035396257415,-136.5884740022011,-136.81939932564273,-136.4412669306621,-137.0687071555294,-136.85615311888978,-136.8260808303021,-136.1776423905976,-136.780832817778,-137.6441623447463,-136.972698206082,-136.49474995955825,-136.14484657114372,-136.19855106435716,-135.6655640732497,-135.90878545073792,-135.17901856498793,-134.1842906535603,-134.68332070065662,-135.3082101624459,-135.62002075836062,-135.8860598844476,-134.98053880687803,-135.36189090227708,-135.47317934595048,-135.90935782901943,-136.17822332214564,-136.2084292396903,-136.50463629234582,-136.2981201680377,-135.32819724921137,-134.9276198972948,-134.16388273937628,-134.3503724904731,-135.09565026219934,-135.64711368223652,-134.96059473557398,-133.98907589400187,-133.40867008874193,-132.95776532776654,-133.71724530449137,-133.2876413287595,-133.8163931518793,-133.15676459437236,-132.3107188809663,-132.5427155122161,-133.48283097473904,-134.32490636967123,-134.0598291149363,-134.2614773591049,-135.11030400451273,-135.62885334016755,-135.1076682060957,-135.99179229186848,-135.9822174711153,-136.14766769390553,-136.7298678434454,-136.64722919510677,-136.8458507959731,-137.61835439596325,-138.10133610060439,-138.43457562709227,-139.09161081304774,-138.98484569275752,-138.8243607855402,-137.83304862631485,-136.9457634743303,-136.93943636864424,-137.15852705948055,-136.72212360287085,-137.47019676165655,-138.2992073977366,-137.44338661897928,-136.6323281014338,-137.5514230458066,-137.95929748937488,-137.66437297454104,-136.8026795941405,-136.74454487627372,-137.35201704362407,-138.07088650856167,-138.82663489319384,-139.39364742441103,-139.18508385587484,-138.95915743615478,-138.58734094444662,-138.97170618129894,-138.12124459119514,-137.23158159060404,-136.9105515051633,-137.64116717362776,-137.09751090640202,-136.97112872451544,-137.30044678226113,-137.7698553162627,-138.31575976731256,-138.4175973981619,-137.8856496885419,-138.51448887586594,-139.22639190778136,-139.1600107671693,-138.8771376204677,-137.96773765329272,-138.83774886885658,-139.55433406168595,-139.54992331424728,-139.92394463066012,-140.77915055910125,-140.42039905954152,-139.96969959279522,-140.50933526968583,-140.12060531787574,-139.44718292541802,-139.6764069837518,-139.40632477030158,-139.5519453547895,-139.33810019306839,-139.28320060158148,-139.65128553658724,-139.49897331930697,-139.85992099065334,-139.4068382102996,-139.72671662690118,-139.8993723075837,-139.77609175723046,-140.23573851771653,-140.61012401245534,-141.22767803724855,-141.87925783311948,-142.84178439434618,-143.68520514387637,-143.3532003988512,-142.58387102605775,-142.08732719207183,-141.28975222213194,-140.50832696910948,-140.43448704760522,-141.3585902391933,-141.43292695842683,-140.8909541699104,-140.9519065222703,-140.3944126702845,-140.20990242343396,-139.9732120311819,-139.3645898294635,-139.21636015689,-139.17355163674802,-138.7387249157764,-139.0881004454568,-138.25900832936168,-139.00485283741727,-139.04932629177347,-138.71423265570775,-137.740744701121,-136.8112407918088,-137.40536102093756,-136.78410780988634,-136.65837936801836,-136.15871259849519,-137.11434817267582,-137.104849757161,-136.49147627037019,-137.28349456051365,-137.42523712432012,-137.3444326869212,-136.60669195232913,-137.24931922089309,-136.5729053313844,-136.71562072541565,-136.79439968522638,-136.31183411879465,-136.5401011807844,-136.32588337222114,-136.3789869477041,-137.0958043858409,-136.57709200074896,-136.51150644943118,-135.6063645617105,-135.7666220245883,-136.55857763811946,-135.90740106534213,-135.85721138631925,-135.9392477828078,-135.5178212635219,-135.20549449604005,-134.8622570564039,-134.2066097613424,-134.6381282452494,-134.4595222324133,-133.47524310695007,-133.53189553134143,-134.0759188090451,-133.65042671840638,-134.12329897051677,-134.04204480862245,-134.06296614790335,-133.32243620045483,-132.90002088295296,-133.11927164858207,-132.42158189602196,-133.26272897794843,-132.9115444230847,-133.49203407857567,-132.70921529317275,-132.92134436918423,-131.97104161512107,-132.48127540480345,-131.7345661087893,-132.61734636873007,-133.08123663254082,-133.5722065763548,-133.51729700621217,-133.3732152013108,-132.90884346934035,-132.6126161729917,-132.3783616037108,-131.93583275889978,-132.27866441523656,-132.947364915628,-132.55110958451405,-131.99883328797296,-131.9476999109611,-131.380601529032,-130.85866220481694,-131.13586380844936,-130.46874491404742,-130.74561120942235,-130.5426221783273,-131.148378867656,-132.01812431635335,-132.32625876460224,-131.89263464184478,-131.40079938434064,-131.05005862563848,-131.5836309203878,-130.62126812711358,-131.33461945224553,-131.80327210808173,-132.55171028943732,-133.2470834455453,-134.13115823455155,-133.75926656462252,-133.30694379331544,-132.57189497165382,-132.8890012567863,-132.1550681963563,-132.3960791071877,-133.16031586704776,-133.63329568924382,-133.58469082182273,-133.47229405632243,-133.19451677333564,-133.60434226226062,-134.45547044789419,-134.60260791005567,-134.9184722257778,-135.3116210657172,-134.44205371662974,-134.81741102132946,-135.58683511521667,-135.0346615538001,-134.3327888706699,-134.00192570034415,-133.77213000087067,-134.67135523445904,-134.3681649058126,-133.41756674600765,-132.71131065720692,-132.73631958989426,-131.77777201728895,-132.53117284085602,-132.00629455270246,-132.14951827470213,-132.4029009831138,-131.70048993173987,-130.71787311788648,-130.92002006946132,-131.75369616784155,-132.3095042272471,-132.47129786992446,-132.16717952489853,-132.7583229620941,-133.53732728166506,-134.48390454240143,-133.8592304890044,-134.36960044968873,-134.9537731842138,-135.4014456984587,-136.3093244000338,-135.34899055073038,-136.03769025253132,-136.79392368439585,-136.23523440770805,-135.84984079701826,-135.04973684670404,-135.4791089873761,-135.41839431412518,-135.93688884517178,-134.95821657171473,-134.80934098176658,-134.66013337951154,-134.0635055922903,-134.77459705481306,-135.35456563765183,-135.04948469251394,-134.69492300087586,-134.64600473921746,-134.65538877248764,-134.30546287540346,-134.83495822781697,-134.90617196122184,-134.0579033298418,-133.11381514370441,-132.71045831684023,-132.44474155362695,-132.09756559273228,-132.31719646975398,-131.67185674095526,-132.03612243710086,-131.66076072026044,-131.82772770151496,-132.42895875312388,-132.39381899591535,-131.89191285846755,-131.6636616163887,-131.27534838858992,-131.58904877398163,-130.70803012745455,-129.80181762343273,-129.4096743813716,-129.21509809419513,-129.4471627813764,-128.636948260013,-127.66536222398281,-126.77480925898999,-127.0455139791593,-126.9289406160824,-126.85055827582255,-126.89423490315676,-127.30587797798216,-126.71415411308408,-125.83892871113494,-126.27244892949238,-125.53021723218262,-125.79834067355841,-125.0363366836682,-124.07736671017483,-123.23147557070479,-124.18980337353423,-124.65579083468765,-123.91910700593144,-123.14632020378485,-122.59836302744225,-123.11808970523998,-123.36581034585834,-123.31935725733638,-123.87913353648037,-122.95876888604835,-122.5969031569548,-123.30815561767668,-122.9763409262523,-121.9782162993215,-121.39210538193583,-120.73069074796513,-120.52370276162401,-119.85999055346474,-119.1975022861734,-119.46560677839443,-119.94375775521621,-120.05652850819752,-119.21235472941771,-118.90052904793993,-119.81497842818499,-119.24270826950669,-118.86807612609118,-119.2731556869112,-119.51455514505506,-119.54042241629213,-118.69167790422216,-119.47272979049012,-119.6525651756674,-120.52985193487257,-120.47482659202069,-120.63912348775193,-120.12133106216788,-119.22805878752843,-119.05008927267045,-118.81170592224225,-118.8507511690259,-119.83908066339791,-119.99535522516817,-120.8944750148803,-121.8173485500738,-121.08569317823276,-121.87514924630523,-121.01569460798055,-120.33178254496306,-119.55749525176361,-118.93478028755635,-118.88999670604244,-119.39422962395474,-119.55601835250854,-118.85009850980714,-118.26041355310008,-118.21751913102344,-118.99148073606193,-118.50463376566768,-117.98545311391354,-117.56601323373616,-118.5415322384797,-117.56071852333844,-117.76423047482967,-118.54257095977664,-117.87120954273269,-118.84561818139628,-119.69391577877104,-119.91166011197492,-119.08619009237736,-118.77394213015214,-119.05314241116866,-118.73016092646867,-119.5975907118991,-119.00118979532272,-119.047685705591,-119.35710757505149,-120.27270073676482,-119.9584798226133,-119.34013248700649,-119.48872611485422,-118.87516484083608,-117.9045231435448,-118.59275397891179,-119.32845096150413,-119.13818621449172,-118.54585423041135,-119.27772914525121,-119.0166159295477,-118.48108267923817,-118.82839632127434,-119.38311192858964,-119.74662042409182,-119.66205599112436,-119.8515086621046,-119.59424620633945,-119.09481514338404,-118.10242459224537,-118.65302362618968,-117.7726203291677,-118.61768661206588,-119.07977239741012,-119.78189434017986,-118.87725558364764,-119.29232882149518,-118.6407401850447,-118.72153897536919,-118.12659391574562,-118.10004358133301,-118.04610489169136,-118.70179367717355,-118.98898239573464,-119.85404094634578,-120.13152702106163,-120.79650607472286,-120.80001647816971,-120.63958824798465,-121.58571403753012,-120.77870204206556,-121.2680008802563,-120.6729258550331,-120.61740585463122,-120.96167025854811,-120.22979821264744,-120.5849995566532,-120.05221782019362,-119.20408726856112,-118.28485048888251,-118.15376882907003,-118.73603720869869,-119.0729164602235,-119.99440715368837,-120.16808521188796,-121.13969843043014,-120.26851570326835,-119.78488222695887,-120.32399160880595,-120.40971819544211,-119.69112657057121,-119.51812936924398,-118.82976826885715,-119.63283250806853,-119.66898696450517,-120.38883834565058,-120.06132955150679,-119.45310350880027,-118.5765711478889,-119.45949913235381,-120.2978714001365,-120.76044223178178,-121.27102420153096,-121.89756961958483,-122.84737124620005,-122.95888518402353,-122.04651604266837,-121.21095490269363,-120.66560116875917,-119.88791602896526,-120.62237860634923,-120.97081525344402,-120.15435902075842,-120.50344770727679,-121.31645698379725,-122.2767435577698,-122.93127226037905,-122.40551832690835,-122.73691737744957,-123.10155048314482,-123.2180968564935,-123.9439809746109,-124.89526998251677,-125.51111292187124,-125.60933370376006,-125.23416064074263,-125.56372601212934,-125.71804210310802,-126.10134933656082,-125.73378490610048,-125.06075732316822,-125.96174308750778,-126.50723351258785,-127.07375568943098,-126.40581020573154,-126.6253308178857,-126.35112400446087,-125.58095672354102,-126.16878663608804,-126.99384440435097,-126.4717730358243,-126.72823381144553,-126.87286665290594,-125.896190979518,-126.58727192832157,-127.06773148244247,-127.35575041593984,-127.29523606225848,-126.40192442713305,-126.20893293851987,-125.22912508016452,-124.73499267501757,-125.1586424340494,-125.81490392889827,-126.15442065848038,-126.13976831035689,-125.45106594637036,-124.46660955715925,-123.56882015289739,-123.23312295600772,-124.13102334178984,-123.9469728092663,-123.67351995734498,-123.49044952308759,-123.65421543922275,-123.71330513525754,-124.52167205652222,-125.25973427528515,-126.21736382320523,-126.89462880045176,-127.82581323152408,-128.70830877497792,-127.82161510689184,-128.42716999957338,-129.08176471525803,-128.91972605045885,-128.5311433081515,-128.7239910266362,-128.43670280696824,-129.4162185387686,-128.42281462345272,-129.18523662211373,-129.51717232679948,-129.0958848334849,-128.51359990844503,-128.74563403660432,-128.98540709074587,-128.05058662965894,-128.31928079295903,-128.16876368923113,-129.00147702451795,-128.3870028667152,-129.15963227767497,-129.53704924928024,-129.10021336143836,-128.20015196548775,-127.89660846162587,-127.28338115196675,-126.52490544551983,-126.63196903979406,-127.19451033975929,-127.18927412806079,-126.471951933112,-126.49895041203126,-126.54120215820149,-126.69987747166306,-127.2145025045611,-127.2592978477478,-127.23344753030688,-126.66625593276694,-126.49906112765893,-126.48541588149965,-125.93755942722782,-126.27885435568169,-126.56194042088464,-126.01605746336281,-126.45960901444778,-125.86667052609846,-125.3886319915764,-125.23734656348825,-125.43509136280045,-125.40154769131914,-126.12124002631754,-127.05483417585492,-127.10196031956002,-127.4514421033673,-127.13352705584839,-126.71962865581736,-126.0464679771103,-126.71108986996114,-126.46990780020133,-126.84103104379028,-126.2173273107037,-126.53520959056914,-125.84041779208928,-125.60377589054406,-125.57445239042863,-124.65353608317673,-124.78467113152146,-124.13709128042683,-123.67378661921248,-122.8250304250978,-122.82322320714593,-123.48390382854268,-123.07689774502069,-123.91398042673245,-124.33430337766185,-124.44372261455283,-123.72832410922274,-123.407779449597,-123.93523099599406,-123.1650833976455,-123.42345481691882,-122.71457066433504,-121.79825856350362,-121.456351748202,-121.08618863020092,-122.08355812262744,-121.3669130676426,-122.07603807980195,-121.86789097590372,-122.2595975510776,-122.67544736666605,-122.34316803188995,-122.40552731836215,-122.87038133386523,-122.06227921601385,-122.98915439518169,-123.09378984477371,-123.42102839937434,-122.66174636874348,-122.09187248395756,-122.28261753357947,-122.65105116041377,-121.96543860202655,-121.54713757289574,-121.69021141529083,-122.49610136123374,-123.15564735746011,-123.37652143882588,-123.56574848061427,-124.29310288047418,-124.59361414378509,-123.6205529673025,-124.25850049592555,-123.2818841044791,-122.43864374794066,-122.26177174504846,-122.4920281288214,-122.40630445349962,-122.15431076055393,-121.19962970539927,-120.55952860694379,-120.50287194969133,-119.63294922048226,-120.44762125890702,-119.56286507239565,-118.81645260564983,-118.06101629976183,-117.41499000741169,-116.83040456986055,-117.32429451867938,-117.61918451962993,-117.79329643491656,-118.20037510991096,-119.15948160272092,-119.06579278130084,-119.84733459865674,-120.12941991724074,-119.47411000682041,-120.31822923850268,-119.81298679439351,-119.07737840525806,-119.6636877078563,-119.16630572034046,-118.90615409519523,-118.04941769409925,-117.2476987009868,-116.41299906000495,-116.04899498913437,-116.53384004998952,-116.97104208590463,-117.20580606581643,-118.16319556720555,-117.72222254332155,-118.15900551062077,-118.39800406293944,-119.36751951510087,-119.73520467756316,-120.59692613733932,-120.21787166362628,-119.80425393162295,-119.33985406300053,-119.77625484298915,-120.74543423997238,-121.00799505319446,-120.29969510994852,-119.38837053859606,-120.07852934999391,-120.33414035383612,-120.89695656765252,-120.46608299948275,-119.67396257445216,-119.13204654632136,-119.95150850899518,-119.76556307263672,-120.44017043989152,-119.51989920437336,-119.7665516748093,-119.05176965938881,-120.05145769100636,-119.10171527741477,-120.00241934787482,-120.14630847331136,-120.5834274427034,-119.80151953501627,-119.04262025235221,-118.79285721899942,-118.56631556898355,-119.53860691608861,-119.4558905987069,-119.8556208354421,-119.14604786643758,-118.60444499272853,-118.96779376035556,-118.25973641453311,-119.04460256220773,-118.14791156770661,-119.10839587869123,-118.24737249035388,-118.8841918790713,-118.39812790928409,-119.01824063295498,-119.53247183049098,-119.5479831774719,-119.04765564994887,-118.97467424115166,-119.3567943898961,-119.20791231561452,-118.79991605645046,-119.27341054938734,-119.8977404506877,-119.74175318190828,-118.88923433609307,-118.17844579555094,-117.45588322123513,-117.29099392006174,-116.99697706615552,-116.35778531711549,-116.30539559526369,-115.85145718790591,-115.55558753246441,-114.59415635932237,-114.16994708776474,-114.1847790046595,-114.00885692052543,-113.57594659831375,-113.78842392470688,-114.10574704874307,-114.54789448762313,-114.73967625945807,-114.08391573559493,-113.9432721240446,-114.46447701519355,-115.05639278003946,-114.36032970668748,-114.72309101186693,-114.34030798636377,-114.81092598335817,-113.91184920817614,-113.76856879424304,-114.04604991525412,-114.65360753145069,-114.58545881183818,-115.35884482273832,-116.35289414785802,-116.97661455534399,-117.37308734469116,-116.50689804274589,-116.45171085232869,-116.1865044417791,-115.54708777042106,-115.88023610087112,-115.89373140223324,-116.74005234800279,-116.3968920968473,-116.78407570999116,-115.93565536709502,-116.64233228284866,-115.80173006560653,-115.92564876470715,-116.61346367420629,-117.46159135363996,-117.55436117574573,-116.7320574852638,-116.46694633038715,-116.05160771170631,-115.35065958276391,-114.66455178475007,-115.4612554255873,-115.57360315788537,-116.37449925858527,-116.66456252709031,-116.25954065285623,-116.13125769607723,-116.55042203702033,-117.1808100529015,-116.23494194122031,-115.4095937400125,-115.90170436538756,-115.61169519228861,-115.54765675030649,-116.24177357181907,-116.07640336360782,-116.13914373936132,-116.9694787170738,-117.14681155513972,-116.38360679382458,-115.96744788391516,-115.36830172874033,-114.9939478081651,-115.51122148754075,-115.31342483405024,-114.58052658522502,-114.34519013622776,-113.54660343006253,-114.41562046902254,-113.96600354509428,-113.55770741589367,-114.32433993043378,-115.25138440076262,-115.87167454930022,-114.93080322816968,-114.79191694501787,-115.52278268476948,-114.87742508947849,-115.59371719369665,-115.819700027816,-115.53450922528282,-116.08555930573493,-116.4652438480407,-116.42433671886101,-117.11708781542256,-117.2630854989402,-117.10737731354311,-117.10170814255252,-116.35602126130834,-117.09514951519668,-116.57624762738124,-116.15052594430745,-117.08276641508564,-116.68263269867748,-115.69388754013926,-115.02236465690657,-115.6414566594176,-114.80777712259442,-114.13230804819614,-113.25788114359602,-114.04098876891658,-114.19916811678559,-113.26903964485973,-113.90651251049712,-114.19094213750213,-115.07648304011673,-115.7241312735714,-114.95971289044246,-115.82985343784094,-114.89525826461613,-115.75775353377685,-116.10964925773442,-115.80483344150707,-115.23935287538916,-114.28324590297416,-114.10446483129635,-114.39539652736858,-115.28252809680998,-115.9965359182097,-115.24373636208475,-114.50236787740141,-113.54924555681646,-113.3510787980631,-113.54597107926384,-113.80360474996269,-113.97908831760287,-114.85073976963758,-115.69433010276407,-116.13385905418545,-115.17387593211606,-114.66422555828467,-115.38279516156763,-114.9022496691905,-114.52817553235218,-115.28104849811643,-115.01867752941325,-115.81428468367085,-115.59704965073615,-115.84284755773842,-115.21160743851215,-115.58759573986754,-116.4686288870871,-117.38346043834463,-118.20075191697106,-118.56593848019838,-117.66367850312963,-117.90563057549298,-117.65407784981653,-116.93560207821429,-116.3388420632109,-117.20398012874648,-116.6193071026355,-117.57929800497368,-117.7104618512094,-117.24058790272102,-118.06633423734456,-117.7024015923962,-116.77335024392232,-116.10957674123347,-116.84518271312118,-117.12909545609728,-116.58137067221105,-115.77429203270003,-116.43886095052585,-115.47176586370915,-116.43961119838059,-115.76992374192923,-114.81756599899381,-114.52798533579335,-114.48742800531909,-114.32298856321722,-113.5770751084201,-113.68041683314368,-113.77814444713295,-114.54681806033477,-114.86282965820283,-115.57092134747654,-116.07534912973642,-116.2548855706118,-116.72305807424709,-115.83735714340582,-115.53433668473735,-114.81574266962707,-114.71462389873341,-115.62082499684766,-115.65335248177871,-115.87068242160603,-115.04973332770169,-115.17037128517404,-115.07824881793931,-115.64528976427391,-115.90160408150405,-116.64513733936474,-117.57176091661677,-118.30714507261291,-118.7880922225304,-118.23468373250216,-118.45385095942765,-118.70242599537596,-117.75471592647955,-116.86603145115077,-117.25639468431473,-117.39221368497238,-117.86405396368355,-118.75695543829352,-119.17847090866417,-119.49189294828102,-118.70502671785653,-118.38263859041035,-118.66398515645415,-119.26596914790571,-119.52292285580188,-118.56718279328197,-118.64294616226107,-119.16118528926745,-119.12413711519912,-119.53508862107992,-118.62152238981798,-119.11722995853052,-119.01147565990686,-118.57989573152736,-118.96707995515317,-119.33876311779022,-119.64807837130502,-118.74391662701964,-119.24825399555266,-120.19160221191123,-120.83124809758738,-121.80083088018,-122.24357401300222,-122.9700550828129,-122.1870476398617,-121.2110270881094,-122.1980920014903,-122.92821232136339,-123.2486234116368,-124.0203891559504,-124.25739058852196,-124.13559609791264,-124.52227314002812,-123.90554137481377,-123.4322151383385,-122.66601146804169,-123.40409297915176,-123.06362662650645,-122.84545522136614,-123.13900786591694,-124.05826415168121,-123.20248209498823,-123.26839843159541,-122.67469673976302,-122.49403116805479,-122.49637039238587,-122.49637447437271,-122.66428104555234,-122.39857656229287,-122.56276639131829,-122.21616214048117,-121.56141866836697,-121.8337442073971,-121.15498226508498,-120.24805755261332,-120.6965676471591,-121.25690188398585,-120.58732016431168,-119.77250016015023,-120.74475428787991,-119.92907128389925,-120.79320346470922,-121.42495057126507,-121.56183381006122,-121.79740112274885,-122.69190541421995,-123.17002897243947,-123.73183981282637,-123.87530767684802,-123.24776673922315,-122.40053692413494,-122.57208791282028,-122.46057918528095,-122.4094322216697,-122.3596186437644,-122.30300565017387,-121.40674046240747,-121.60514338174835,-122.1889998218976,-123.17958729434758,-122.4795965035446,-122.38176303356886,-122.32231162628159,-121.75617636367679,-121.43215113552287,-121.11877420777455,-120.19541623350233,-120.55324184708297,-119.75614199833944,-120.14151623100042,-119.42047390760854,-118.82158803474158,-118.54409696394578,-119.54119870159775,-119.66714885877445,-120.44094651425257,-121.2932882416062,-121.76253938348964,-121.76762311300263,-120.78747103502974,-119.93606506893411,-119.70706857554615,-118.95588349970058,-119.89374586986378,-120.59032944310457,-121.31992027210072,-121.49960782239214,-121.79087037639692,-122.4165335195139,-121.50720852380618,-121.88428384717554,-122.12248579738662,-122.45649650180712,-121.73401819495484,-121.44613974308595,-122.11927676061168,-121.61311063636094,-121.5996275190264,-121.22010454116389,-120.6033880468458,-120.70351690612733,-120.92561542009935,-121.71687212213874,-120.75399973569438,-121.60384086798877,-121.39824754651636,-121.60123439691961,-122.40721423504874,-123.24470050167292,-122.2530555552803,-122.52883474389091,-123.29609875986353,-123.31339931953698,-122.93111410364509,-123.44147287495434,-124.4099357323721,-125.10775893833488,-125.10226476192474,-124.10545298736542,-123.5830473350361,-122.72564455587417,-121.8218439584598,-121.48514111479744,-121.98758224118501,-121.69244645768777,-121.23149868892506,-121.53535403544083,-121.23337342683226,-122.02228289237246,-122.83331276336685,-123.41783326957375,-123.44900794420391,-123.43220735387877,-123.0653063734062,-123.91587744187564,-123.32996715186164,-124.05275035416707,-123.73570688208565,-124.3332768464461,-123.7913716272451,-122.88817166024819,-122.13340922771022,-122.74070634040982,-123.15201113885269,-123.35637296363711,-122.6816606237553,-122.88923783740029,-123.34687281260267,-123.65246722940356,-123.28524226695299,-123.84924318641424,-123.41143523296341,-123.97320709750056,-123.86402677930892,-123.623085684143,-123.76758581679314,-123.814996865578,-124.46456655533984,-125.43433960527182,-124.77155489381403,-124.26839899783954,-124.03740221820772,-123.17287418944761,-123.99058521492407,-124.31784316850826,-124.6065740310587,-123.79301969986409,-122.90830136230215,-123.60637397738174,-123.36129704816267,-123.73187908809632,-124.61133698467165,-123.86411912832409,-124.30751671781763,-123.3354376051575,-122.40909189358354,-122.91018820228055,-122.7132021007128,-123.50675919372588,-124.23804544564337,-123.76791971037164,-123.19462635787204,-123.26669811690226,-124.13639654172584,-124.80423734523356,-124.39331167796627,-124.02891092095524,-123.55187465110794,-124.39717410784215,-125.13510165736079,-125.12700176378712,-124.85227788239717,-124.9007467571646,-125.05025903088972,-124.39431208884344,-124.8276878548786,-123.95752036664635,-124.69539802474901,-123.94582154834643,-123.96592683950439,-124.89488944364712,-125.04546044021845,-124.48195407027379,-123.97933313949034,-123.71705831447616,-123.6445106016472,-124.41640471294522,-124.88069840101525,-125.57119864970446,-125.40552817424759,-124.99103009095415,-124.16876027779654,-123.76865324610844,-124.60997729282826,-123.90923293819651,-124.29116621380672,-125.25444639567286,-125.02788711618632,-125.38633175333962,-124.98153891274706,-124.92092199064791,-124.84032359812409,-125.61781140137464,-126.07317628664896,-126.21351245930418,-126.95802878588438,-127.48407671740279,-128.17326603690162,-127.65857769176364,-127.11223158007488,-127.30303022451699,-127.36030095862225,-127.16022578720003,-127.43688379088417,-126.63721696520224,-126.63065154058859,-127.42148559633642,-126.72594238165766,-127.27024092432112,-127.45689328061417,-127.81343095423654,-128.06259505590424,-128.52791070193052,-128.18357454054058,-128.05395371466875,-127.80415808595717,-128.0290984818712,-128.4784450479783,-128.71700926870108,-128.1907286774367,-127.39100697403774,-126.40051931794733,-127.11709672305733,-127.52646321849898,-127.34858576254919,-127.78869570698589,-128.66095822118223,-128.15912882983685,-127.8127106432803,-127.95796551648527,-128.22242859797552,-128.38626877730712,-127.77486142842099,-127.80225938791409,-128.59640275500715,-127.91213017189875,-127.8613262376748,-128.1816009171307,-128.79495425149798,-128.88241997733712,-127.89209723984823,-127.26254210341722,-126.60186878032982,-126.18610453791916,-126.54061294067651,-126.74054797878489,-127.68609287310392,-128.50632707122713,-128.25368196843192,-128.75704228831455,-127.8249605349265,-126.9735267967917,-127.89293221291155,-127.91510871425271,-127.90523023111746,-128.30086242919788,-127.32192446151748,-127.3039965275675,-128.19507281016558,-127.66521806595847,-126.830199834425,-126.2700160490349,-125.80040372209623,-125.79063741583377,-126.70307788485661,-126.16276110475883,-125.48196792602539,-126.35734836803749,-126.73189218901098,-126.13148543285206,-126.05439418973401,-125.87171994056553,-126.04589421162382,-126.89829969685525,-127.43812665017322,-127.07709151133895,-127.30768944043666,-126.67564941337332,-127.09093431616202,-126.42749587260187,-125.68978382274508,-124.910070492886,-124.09864057367668,-124.85311127640307,-125.05521586956456,-125.66156030446291,-124.9877248024568,-124.714247609023,-124.29787009535357,-123.63329878915101,-123.61215588869527,-123.25357326492667,-122.82646851334721,-122.69614701578394,-123.06602746760473,-123.46026068134233,-122.59415959147736,-123.50002824747935,-122.73715315805748,-122.00702138710767,-122.21408413443714,-121.33949273684993,-121.79112513642758,-121.28887184569612,-121.8432720862329,-120.84533953573555,-121.01872966485098,-121.26105342619121,-121.8894403395243,-121.38957208301872,-121.04984218906611,-120.64832716435194,-121.2505943858996,-122.09341490780935,-122.23366808053106,-121.75659785792232,-122.5581773868762,-121.70609095133841,-122.55023327702656,-123.18462874600664,-123.99044602736831,-124.36608590371907,-124.05052141239867,-124.48548689158633,-124.35264109447598,-123.53917651204392,-123.85805631941184,-123.535156047903,-123.77692059520632,-123.53304089745507,-124.53111786954105,-125.3248351952061,-124.34611423546448,-124.64227379346266,-124.96225248556584,-124.81923283822834,-124.81729858275503,-124.18099847156554,-124.2960108355619,-123.5210829982534,-124.12768591521308,-124.49046490667388,-123.9304749071598,-123.41057270672172,-124.11770925857127,-123.55069871526212,-123.64384076092392,-123.54135334305465,-123.92118709953502,-123.87171608675271,-123.07587260613218,-123.29624612117186,-123.41031314153224,-123.392244216986,-123.64130023447797,-123.65383275272325,-123.39674752485007,-124.27683512261137,-124.53790704160929,-125.06648656819016,-124.85221137711778,-124.86784237762913,-125.7250985042192,-126.49017041176558,-127.31216667825356,-127.33092245459557,-127.79640877153724,-127.08326708711684,-126.82462338590994,-127.40148687502369,-127.30105212889612,-127.11248432518914,-127.56528055947274,-128.52688121562824,-128.04449115414172,-127.14640038507059,-127.79945469135419,-128.64781269524246,-128.18881567381322,-128.93646791065112,-129.18950572283939,-128.68806736217812,-129.01783503592014,-129.32219737861305,-130.1078286957927,-130.2247011391446,-130.65270727407187,-130.4956579473801,-130.1774765625596,-129.86588525073603,-129.8804057543166,-129.01547020161524,-129.84135268675163,-129.5616553639993,-130.34203350916505,-131.1420766110532,-131.87500915210694,-131.59825158538297,-131.80878855055198,-131.79713242966682,-131.09274546056986,-131.29320475505665,-131.01102311629802,-131.522405133117,-130.93886764673516,-131.6157838073559,-132.47519171517342,-132.85081819212064,-133.62193600600585,-133.27814327040687,-132.92865137336776,-133.75267868908122,-132.88105541141704,-132.52701305272058,-132.18056241422892,-132.3311804155819,-133.1202083802782,-133.5952261472121,-133.4387793149799,-133.9033385682851,-133.25106650590897,-132.5735765309073,-133.41553715290502,-132.8531647734344,-132.25540116988122,-132.5542160863988,-131.80131360329688,-131.09648275142536,-131.22404465079308,-131.1106134140864,-131.22819193266332,-131.85555755812675,-131.01927435444668,-130.64995741611347,-131.29769260669127,-130.9859425877221,-131.1037345523946,-131.67778736911714,-131.55574005609378,-131.14701280370355,-130.9592550280504,-130.06140205264091,-129.26654603797942,-129.29949743766338,-129.54349739057943,-128.99775393726304,-128.05351867619902,-128.89972408907488,-129.27852528821677,-128.9951896755956,-128.59006154397503,-129.4070167625323,-129.00229487754405,-128.57039991486818,-127.85713095404208,-128.19459624681622,-127.42025632318109,-128.05006851162761,-127.30160357942805,-126.45864342199638,-125.57799640065059,-125.13484191847965,-125.91251493245363,-124.95956739084795,-125.61690633511171,-124.63829256407917,-124.93332308484241,-124.91526528727263,-125.40885171294212,-126.32860696548596,-125.68652932439,-125.89220260921866,-124.90050647128373,-124.81633606925607,-125.38472833903506,-124.89205290703103,-125.78122445102781,-126.33516859821975,-127.16750334389508,-127.10178496455774,-126.14196824561805,-126.91707406193018,-127.62682050373405,-127.51325791049749,-126.88121737772599,-127.62069311831146,-127.38837026618421,-126.78200485790148,-127.61540007963777,-128.59697974426672,-128.6681955885142,-128.03863105084747,-127.52449347544461,-128.43121204758063,-128.42026853142306,-129.09432172076777,-129.75022486411035,-128.8926345910877,-129.6886580460705,-130.18665553070605,-129.3065075208433,-129.26679919846356,-128.55211174674332,-128.94982720073313,-129.39751637820154,-129.52672093734145,-130.1253941776231,-130.63533474085853,-130.85680080810562,-130.02307106088847,-130.1953053358011,-130.00165226357058,-130.01045768382028,-130.42699449509382,-130.9680748237297,-131.22085008583963,-130.96308931196108,-131.1932061035186,-131.4421969363466,-131.58492366131395,-132.10713569959626,-132.53141755238175,-132.27476894436404,-132.15588567778468,-132.43448678217828,-132.03751239413396,-132.60789650352672,-133.405650224071,-133.39195889001712,-132.80770801985636,-133.09946976043284,-132.23768958402798,-133.06725508952513,-133.11564558232203,-133.04213162558153,-133.6527794394642,-133.1291770315729,-132.38802245771512,-131.67519376706332,-131.3214022545144,-132.0314893485047,-131.70719457278028,-131.62944337911904,-132.5552305309102,-132.1791019286029,-131.18303982540965,-130.57992261229083,-130.18859773222357,-129.77667868835852,-128.79098023287952,-127.95963585050777,-128.6208278411068,-127.68344815727323,-128.37316409870982,-128.76614956883714,-129.73025343799964,-129.21810927800834,-129.3208726113662,-128.86878362996504,-128.75305146863684,-129.2603520154953,-129.23790777334943,-128.98292533587664,-128.49909999594092,-129.05092723388225,-128.34986405586824,-128.01172023499385,-127.23132594488561,-127.71347573073581,-127.30689243879169,-126.66705131530762,-126.58424018276855,-127.44258002610877,-127.67790176533163,-127.38656464684755,-127.2330573303625,-128.0783203165047,-127.78285448346287,-128.72034590831026,-128.04959698859602,-128.9742656229064,-129.6931970231235,-130.03925621369854,-129.2070741970092,-130.16160661447793,-130.49546910263598,-129.84097471507266,-129.4299692073837,-128.74065920058638,-127.93463937751949,-127.25180211337283,-127.03526851022616,-127.82087545609102,-128.1703733857721,-128.60309431981295,-128.98412235081196,-128.00052569061518,-128.32998995296657,-129.21723681036383,-129.7608215995133,-128.9014873849228,-128.16655796999112,-127.93267267057672,-128.43526308098808,-128.60301290499046,-127.75857189809904,-128.01597641734406,-127.70034623565152,-127.9083311399445,-128.33670261316,-129.20442779781297,-129.19070502743125,-128.381889434997,-127.63443474378437,-127.25069387815893,-128.10331347119063,-127.55639164987952,-128.20049686264247,-127.3666397552006,-127.07053332636133,-127.40390987694263,-127.10672716610134,-126.37598319351673,-126.17413595551625,-126.8410283504054,-126.74124983791262,-126.33036601683125,-126.69111155159771,-127.41630313638598,-128.2428179406561,-128.06663756771013,-127.87442636489868,-127.66956211766228,-127.93648200808093,-127.12897223047912,-127.66906610131264,-127.13595010014251,-128.0135680967942,-127.85289051150903,-127.03316921601072,-126.48464319529012,-126.86394390277565,-126.61841642204672,-125.70484869461507,-124.94519754033536,-124.23993545910344,-123.78997079469264,-123.88211758015677,-124.25056648207828,-123.81546964030713,-123.60440631443635,-124.0818592607975,-124.11775437323377,-124.99226947175339,-125.47086172923446,-124.76114181010053,-125.52724398579448,-125.38822916243225,-126.06188711989671,-126.68655489431694,-126.62012733938172,-127.28066730033606,-127.56613255431876,-128.0844295360148,-128.94966316316277,-128.65421900805086,-129.42844991758466,-129.32904223445803,-128.6037154677324,-128.0114736640826,-128.4455431336537,-127.98429297702387,-127.4136426388286,-128.06446802895516,-127.23296528914943,-127.18839724361897,-126.67510888492689,-126.72758668707684,-126.59474159032106,-127.13452554261312,-126.89084135880694,-126.08316899836063,-126.25710861338302,-127.10396040510386,-127.37163301883265,-126.49053462222219,-126.47435875656083,-126.68139430694282,-126.18430645670742,-126.55224987445399,-127.53072142321616,-127.98044595587999,-128.7888135598041,-129.37998720491305,-129.54273362318054,-129.60542788449675,-130.06857921741903,-130.27110883966088,-130.67109314445406,-129.9367260923609,-129.33484145626426,-129.08590107876807,-128.55325300712138,-128.4685142156668,-128.1230827034451,-127.14532767469063,-126.19683582568541,-125.45265656104311,-124.71100143296644,-124.43590872222558,-124.61955521441996,-124.07064222544432,-123.28787024412304,-124.23029594123363,-125.14537410624325,-125.85265339445323,-125.1043685246259,-124.50733053125441,-123.80274111498147,-123.50145153189078,-122.55126814544201,-122.73504865216091,-123.41509951697662,-123.92059968691319,-124.42194261122495,-124.007957495749,-124.51694016484544,-125.42819695686921,-124.584705082234,-125.35587349999696,-124.98081084294245,-125.0184345585294,-125.08749954169616,-125.27439906913787,-125.18748800223693,-125.56255213543773,-124.93351989472285,-124.1491626240313,-124.71699537942186,-124.20780666405335,-124.88525878405198,-124.06569398986176,-123.79867010796443,-124.50120795704424,-124.49860741384327,-125.14472872437909,-124.51701203873381,-123.76817780872807,-124.44015408074483,-123.71495892526582,-124.6284423628822,-125.3339788839221,-125.79821292916313,-125.1492606732063,-124.17518495675176,-124.775326712057,-124.05112532479689,-124.32948310533538,-124.77422588085756,-124.72282804967836,-124.00956000806764,-123.53844943549484,-123.17283645970747,-124.12261617695913,-124.16426322935149,-124.92745549231768,-124.89689440792426,-125.52759952750057,-126.21492095012218,-125.46958971163258,-126.41808889107779,-125.7909712633118,-124.92750049568713,-125.30562440073118,-125.36784485820681,-124.76007312582806,-124.02092924714088,-123.3894241261296,-123.53169065527618,-123.76609192462638,-123.34616662468761,-122.34902135282755,-121.87028686609119,-122.30657819891348,-121.9902594583109,-122.0454566590488,-121.6127866259776,-121.79121109144762,-121.76776429312304,-121.10189004894346,-122.01824760017917,-121.62965895188972,-121.37079070182517,-120.41910385899246,-121.07815510220826,-122.05907385563478,-122.25221130484715,-122.87952438602224,-123.75070886127651,-124.12472075968981,-123.54786225175485,-124.29305063560605,-123.68252484779805,-123.3070511277765,-123.68325892090797,-123.24235035199672,-123.49752706196159,-123.71386118233204,-124.31467983406037,-125.12118888506666,-126.05838836170733,-126.74740386148915,-127.1763528441079,-126.9618963720277,-126.44386476324871,-125.70784038444981,-125.59265127126127,-125.63736699009314,-126.63447348261252,-127.040558939334,-126.63567419862375,-127.123393710237,-127.67084693908691,-127.67206712579355,-128.14260608516634,-128.9007715904154,-128.61623939871788,-127.64673240389675,-127.6157980337739,-127.07860862463713,-127.61832046275958,-128.22631174698472,-128.89967194385827,-128.2961469576694,-128.05068750679493,-128.00805503921583,-127.7718984480016,-128.03732787258923,-127.80484234681353,-128.2612329600379,-127.49439009930938,-128.11417862959206,-127.23019217792898,-126.63701774226502,-127.26214258372784,-126.80142167117447,-127.47286036377773,-127.44148980593309,-127.84313826495782,-126.99021356273443,-127.02055214671418,-127.95803743274882,-127.23202671250328,-127.63435302022845,-126.68284580809996,-127.27511977450922,-126.67936568101868,-127.46303970599547,-126.66100367764011,-127.6505357529968,-127.14537922712043,-126.21317380433902,-126.53123244922608,-126.07666743313894,-125.35938525153324,-125.88371803378686,-126.18268832098693,-126.78151452494785,-127.04779437789693,-126.36573328496888,-126.89533912250772,-127.30786380171776,-127.92755450494587,-128.42687289370224,-128.88829763326794,-128.19853464933112,-127.95097666606307,-127.80767767783254,-128.5082009169273,-128.20560311432928,-129.0863777110353,-128.84153887582943,-128.64856672938913,-128.75311707006767,-127.89991158107296,-128.30816034786403,-128.97354984888807,-129.00338942697272,-128.2186521012336,-128.06652155146003,-127.81382946344092,-126.98946128459647,-127.05559292295948,-127.1169228265062,-126.98470445396379,-126.88512224331498,-127.41184945823625,-126.6625630077906,-126.1065261522308,-126.06685120379552,-126.19036366557702,-125.83406913233921,-125.7064453898929,-126.7035899553448,-126.44538249541074,-125.63487589312717,-124.78737625060603,-125.49690785910934,-126.48742960672826,-126.52047528233379,-126.41176121821627,-127.33438220154494,-126.46257540863007,-125.70166861778125,-125.58899084711447,-124.65005221636966,-123.95480371126905,-123.7598778558895,-124.14137475471944,-125.1056541041471,-126.08237641630694,-125.42828390235081,-124.48464514361694,-123.5184061084874,-124.4218021929264,-123.88187363464385,-123.35214428603649,-123.74073069728911,-123.51838771533221,-123.63936612568796,-123.65746510075405,-124.36137144407257,-124.26751499483362,-123.3902316428721,-123.67087878845632,-122.69679152267054,-123.0117967906408,-122.48745050700381,-123.18261355068535,-122.24956638785079,-122.25072611588985,-122.97145656030625,-123.0999912256375,-123.90897970180959,-123.60990935796872,-123.03160952357575,-123.08373851235956,-123.74216303089634,-123.06879006931558,-122.64328190917149,-121.66459385678172,-120.85291747190058,-121.32582166139036,-120.78172586672008,-121.23986599734053,-120.7403699089773,-120.28426687931642,-119.96717266738415,-120.49157179007307,-121.33524945285171,-122.26766975782812,-122.0567113882862,-122.77606998896226,-122.31300962436944,-122.72624549735337,-123.44307588180527,-123.7178993076086,-122.80418475810438,-121.86024240963161,-121.10517383087426,-120.4901067293249,-121.16012713313103,-120.60090890852734,-120.3863881258294,-119.67160691320896,-119.58794363681227,-119.21545807644725,-119.00351725053042,-119.45269530965015,-119.72734302841127,-120.63400893192738,-121.33392889471725,-121.05029509495944,-120.57554529933259,-120.7463847878389,-120.16493764938787,-119.31257512047887,-119.23607634566724,-118.24560761731118,-118.46386810997501,-118.74037358444184,-119.04629233572632,-119.93960030563176,-119.555138327647,-120.04452650807798,-120.42382942233235,-120.20126744965091,-120.10445115948096,-120.34825926786289,-119.62170647270977,-119.00665126694366,-119.801194941625,-119.49931540479884,-119.70100178662688,-119.04015522031114,-118.4524196498096,-118.87681166408584,-119.54406397091225,-119.99989540036768,-119.76037785504013,-119.64862036891282,-119.94518314814195,-119.60729481372982,-118.98309870483354,-119.80072150193155,-119.05449656071141,-119.52397003024817,-119.04020482394844,-119.01701339799911,-118.39650608319789,-118.2585659166798,-117.65226565953344,-117.80039434880018,-116.86767007689923,-116.26969332434237,-115.66068935161456,-115.07022556150332,-115.57725781714544,-115.14105846593156,-115.99962202878669,-116.50612984783947,-117.26778373867273,-117.98472437495366,-117.16402916423976,-116.9891056814231,-117.0337127042003,-117.86757987597957,-118.42252589901909,-117.72888843063265,-118.0549958110787,-117.1462398795411,-116.7978918296285,-115.82403258839622,-115.15059277974069,-114.41662974795327,-115.08913204912096,-114.73546519642696,-113.97579479776323,-114.38863570056856,-115.09068659180775,-115.1062183030881,-115.07908658636734,-115.98800267931074,-116.40841913735494,-117.1003458169289,-117.34146253624931,-116.64814512478188,-116.39212893415242,-115.59272879408672,-115.16875361325219,-114.83956992533058,-114.94615477649495,-115.16873101098463,-115.1535164564848,-114.35362585866824,-114.77335917158052,-114.31423063343391,-113.84022967889905,-113.3495706920512,-113.17399549297988,-112.67169507872313,-111.96069594519213,-112.05780680757016,-112.9384842547588,-112.36462899623439,-112.88704111147672,-113.79268429009244,-113.16731408471242,-113.46573796216398,-114.07384068472311,-114.8525388748385,-115.17920472892001,-114.9421085701324,-115.57738217478618,-114.76950889406726,-115.54994213674217,-115.44582324381918,-116.43546520685777,-116.47315849456936,-116.63299398450181,-115.81761075835675,-115.85877474816516,-115.7174875875935,-114.81642411649227,-114.32194121740758,-114.09483298193663,-114.2790120691061,-114.82644026633352,-114.82605267409235,-115.64763807924464,-115.49627341749147,-115.29033354017884,-115.02567843254656,-114.89052657876164,-115.66945328935981,-116.46800508443266,-116.83327981363982,-115.97448523761705,-116.04709003074095,-115.2937951865606,-115.64558002911508,-114.9532673060894,-114.79460969613865,-114.1189531441778,-114.80129673331976,-114.57494692644104,-113.8855286212638,-114.20169118978083,-114.49663908267394,-115.03370796795934,-115.34228058625013,-116.14014967577532,-116.3172627799213,-115.73581268638372,-115.69774315040559,-115.3308659652248,-114.98789937607944,-115.94216706603765,-116.69625981291756,-116.00517743825912,-116.57128127664328,-117.5162435141392,-117.67252835258842,-118.6376924016513,-118.18763471907005,-118.49458672013134,-117.92840736359358,-118.01244652224705,-117.29162682127208,-117.14609593292698,-116.79419548762962,-117.22551119420677,-117.29720424767584,-116.37477082805708,-117.36014944454655,-116.60786909749731,-116.3334601833485,-115.60809985687956,-115.16628161305562,-114.23764433478937,-114.31063553504646,-115.09613762097433,-114.71493373578414,-114.50209141895175,-114.64972796617076,-113.7780765723437,-114.56881913822144,-115.10216994443908,-114.48773562442511,-114.12925878213719,-114.7839190880768,-115.43925088830292,-115.85984093882143,-116.08779905224219,-116.80063139880076,-115.87382297962904,-114.92829764029011,-114.22855977807194,-113.43545734416693,-113.19755954667926,-113.29445366701111,-113.54415299324319,-113.95119078503922,-113.23445708630607,-113.40625420026481,-112.58617227431387,-113.5752197932452,-113.70034800469875,-112.96708009112626,-113.91076198592782,-113.36846844060346,-112.61838364135474,-112.66054553398862,-112.65347227267921,-113.28920931229368,-114.07195790670812,-113.51104781404138,-113.65838019177318,-113.67248154291883,-114.66211248422042,-113.84333582222462,-113.11958231637254,-112.5117055606097,-113.35029943054542,-113.79861204652116,-114.08926758589223,-114.7921122671105,-113.92454435955733,-113.07066007098183,-113.43723072530702,-113.34680257784203,-113.2559350761585,-113.50893849739805,-114.27726652426645,-114.284871770069,-114.53004057146609,-115.00465540448204,-115.17805415671319,-115.70400679903105,-114.87520463485271,-114.34280510339886,-115.3014277224429,-115.7748193689622,-115.82968351989985,-116.7898525390774,-116.75742166442797,-116.52288867626339,-116.40986384404823,-115.96821875590831,-116.147173514124,-115.85366637073457,-116.13283107988536,-116.23925691656768,-116.27247916953638,-117.12049139570445,-116.68500827625394,-116.68505367217585,-117.50340158119798,-117.5079037817195,-117.77586600976065,-117.09445736370981,-117.54778381297365,-117.77094629546627,-118.48529039463028,-119.21725888969377,-118.38466962333769,-118.91142274904996,-117.97462875256315,-117.9043459831737,-117.16603874089196,-116.44922614702955,-116.50970200495794,-116.2226836248301,-116.90567328641191,-117.34904883988202,-117.2281599524431,-117.88349472917616,-116.88564949808642,-117.27795932488516,-117.62933892151341,-118.22791821183637,-118.0681386590004,-118.44644267344847,-117.93229337828234,-117.58702848060057,-118.38505841372535,-119.1365100783296,-118.48366774618626,-119.07748900260776,-118.76854446763173,-119.53586857859045,-120.22332896571606,-120.51592091983184,-119.80691236956045,-119.0316180284135,-119.75449370592833,-120.2820844934322,-119.65112466551363,-119.23698937892914,-119.08374128956348,-119.65548891900107,-119.10125941922888,-119.63845520978794,-120.5214391099289,-119.64214010024443,-119.60399717092514,-119.63394001685083,-119.10434972774237,-118.95554396836087,-118.95797321759164,-118.43831385718659,-118.99758445471525,-119.51232121977955,-119.5919390451163,-119.2681457712315,-119.15979582816362,-118.46394325513393,-118.16612795973197,-118.99927571136504,-118.9947360069491,-119.69949921313673,-119.51651633763686,-119.43980470206589,-119.7353310789913,-120.49803620344028,-120.61887580389157,-119.72632570145652,-119.30940339015797,-118.44254425400868,-118.66803339589387,-118.90967210521922,-119.23566663172096,-119.46614553965628,-118.87236683024094,-119.48731989972293,-120.00743782846257,-119.5114301010035,-119.7965316195041,-119.63063449272886,-119.17098887357861,-119.51311470381916,-120.34911150624976,-120.18485955102369,-120.13941008597612,-120.27486172318459,-120.94839975982904,-120.92891605151817,-120.16658890107647,-120.25065942015499,-119.59028498409316,-118.62783534172922,-118.2651705541648,-117.96856290241703,-117.31243670312688,-116.57110731117427,-116.59398993011564,-117.05866283457726,-117.24666924588382,-117.58508440339938,-117.96896074991673,-118.57011430244893,-117.59563279896975,-118.37615033844486,-117.47676508780569,-118.00226102117449,-118.24793238658458,-117.82927808444947,-117.26688308361918,-117.12196267070249,-116.70526174642146,-116.58358195237815,-117.51926268078387,-117.70936405053362,-118.42775404686108,-118.66817416856065,-119.28572535328567,-119.67294631712139,-119.1283890614286,-118.22484932886437,-117.26854513259605,-116.41503741638735,-116.52216348890215,-115.80123607255518,-115.125913543161,-115.28628305438906,-114.36844495637342,-115.14207734772936,-114.81346025085077,-114.45283980621025,-114.77272811578587,-115.03735730005428,-115.407467990648,-115.60876436019316,-115.28837230987847,-115.4818153353408,-114.73178671114147,-115.50098608294502,-116.18822723813355,-116.28890999266878,-115.64640318322927,-115.43358879024163,-115.7117918250151,-114.92507495451719,-114.76501161977649,-115.23010179959238,-115.02801430318505,-115.06798907136545,-114.41529458435252,-113.84436433622614,-114.19753453833982,-114.23432137910277,-114.88985113613307,-115.15859971847385,-114.17771937139332,-114.7678245222196,-114.98373183608055,-115.68823145143688,-116.0593741890043,-115.7841339414008,-115.94274713844061,-115.53577918000519,-115.27385475160554,-115.21448816591874,-115.66425270028412,-115.77786362776533,-115.37814875366166,-115.0869422685355,-114.236408659257,-114.45439634379,-113.7400208460167,-113.79975614184514,-113.99684464652091,-114.80312456609681,-114.68184610595927,-114.68479900155216,-113.91635256400332,-114.37029072130099,-114.3320456999354,-113.72004417330027,-112.72967547969893,-112.1176662738435,-111.89229386672378,-111.56348255742341,-111.40011908300221,-110.92090068478137,-111.13192194513977,-110.86442175880075,-110.42706517782062,-109.47044186573476,-110.01646910514683,-109.84492705296725,-110.13680268637836,-110.15767398942262,-109.29869469814003,-109.44982836395502,-108.84105636179447,-107.91618982702494,-108.53843242535368,-107.58469005022198,-106.79941723169759,-106.58070140797645,-105.99660071032122,-106.86804810445756,-106.85128953121603,-107.19839345058426,-107.77951611764729,-108.07789491675794,-108.36361468629912,-108.65394777664915,-109.04191123135388,-109.99868443375453,-110.9774111751467,-111.7053507338278,-111.30228457227349,-111.44053349643946,-110.54623402142897,-110.53619556780905,-109.78604434337467,-110.62644404172897,-110.37083356874064,-109.69055978069082,-110.02232863893732,-110.40005998779088,-109.87790342373773,-109.14605075400323,-108.6779803596437,-109.13519314536825,-108.95199572201818,-108.7479959228076,-108.66972194518894,-109.23030664864928,-109.49744979431853,-108.68287774827331,-107.81547992676497,-107.83552692783996,-108.57898364821449,-107.67059484263882,-107.00594607321545,-106.16233093850315,-105.97406280972064,-105.4942377586849,-105.53729852335528,-105.5332402670756,-104.90131901018322,-104.58108676224947,-105.21895290212706,-104.4466392477043,-105.36762109585106,-106.3321972633712,-107.21503271441907,-107.86988466233015,-108.34435772802681,-109.04883148521185,-109.8663042508997,-109.12336836615577,-108.20403017662466,-108.33100727153942,-107.78780903900042,-108.78066751314327,-108.42800684971735,-108.58859293349087,-109.18193372851238,-108.80968942074105,-108.55698535824195,-107.57561722956598,-107.50673994468525,-107.54167537670583,-107.28888311935589,-106.81733377883211,-106.33925285097212,-107.01163999224082,-107.82583188638091,-107.44020520802587,-107.02097035944462,-107.49491540668532,-108.09745475323871,-108.16598187480122,-108.9713427554816,-109.04490422271192,-109.38379981042817,-108.578725151252,-108.08363885292783,-108.5153204118833,-109.23154912749305,-109.97365712700412,-109.66830059560016,-109.29160420503467,-109.17300697881728,-108.37325429311022,-109.20999275241047,-108.6190073187463,-108.52732588117942,-109.43132701935247,-109.35264853015542,-110.07308735884726,-109.61360969487578,-109.96459142304957,-109.91468351427466,-109.00916507048532,-108.58253555884585,-109.02901019947603,-108.89751471066847,-108.92933704936877,-109.30195071082562,-108.38771997345611,-108.49871255364269,-109.31431584665552,-110.22809978527948,-109.43195731937885,-109.67315433733165,-109.46161222923547,-110.24966404307634,-110.30439220555127,-110.11520474497229,-110.25422889785841,-109.96887952554971,-109.32845329446718,-108.3938172403723,-109.32157982932404,-109.23746812995523,-108.69464302575216,-109.28337502898648,-108.89291882654652,-108.36089791404083,-108.41238692682236,-108.2228456074372,-107.41714926995337,-107.24613096984103,-107.15267377719283,-106.36373855778947,-106.85776401264593,-106.5063933013007,-105.85379275726154,-104.90954317338765,-103.95351825514808,-103.30605064611882,-103.72367127193138,-104.21206435048953,-103.90849444363266,-103.11286751693115,-102.78694972675294,-101.88479671953246,-102.3476401255466,-102.09256667038426,-101.66315649077296,-102.56160919228569,-102.3243021951057,-102.04554244456813,-101.99612998962402,-101.05361009202898,-100.28700509900227,-101.03234649728984,-101.45722913183272,-100.5861541973427,-101.03945578681305,-101.54784535756335,-101.82083292631432,-101.19338300451636,-100.5519788544625,-101.32864365167916,-101.02263430133462,-100.34722954966128,-100.39009820111096,-99.50404337793589,-99.21058909129351,-99.69802545756102,-98.89835030818358,-98.11525849020109,-98.93960723420605,-99.77125361794606,-99.9892215305008,-99.96737378742546,-100.65970363141969,-101.5161630762741,-102.48568992875516,-103.18558987183496,-103.92318139411509,-104.02872068248689,-104.27396598178893,-104.34457215107977,-104.76335253193974,-104.62014770554379,-104.26441552396864,-104.68651085998863,-104.80720970919356,-105.38799634436145,-105.23255087481812,-104.89701481955126,-104.56329182069749,-103.9846151759848,-104.32315929792821,-105.21299327816814,-105.59212123975158,-104.80079473601654,-104.5858622957021,-103.6530909682624,-103.52295865956694,-103.21904889168218,-103.11530114803463,-102.37245148513466,-102.7819178760983,-103.165293071419,-103.42546246526763,-103.90699822735041,-103.61019275384024,-103.79273965302855,-103.51583087351173,-104.20635366253555,-104.38745068153366,-103.92405419470742,-103.79066604888067,-103.21136700594798,-103.01703432528302,-103.04563783761114,-103.95017407368869,-104.53532558074221,-104.22644470119849,-103.33250130759552,-104.3208613623865,-104.21437275176868,-103.87287386134267,-104.66812719637528,-104.47551655536518,-105.23803692637011,-105.59946190798655,-105.47584612108767,-105.60060801822692,-105.50033190008253,-104.9219197477214,-104.06316808750853,-104.93258545175195,-105.05625328794122,-105.88705573044717,-104.91237485455349,-105.55591643368825,-105.85639661224559,-106.00178967043757,-106.62114193988964,-106.3576639490202,-106.8656418598257,-106.91646844567731,-106.18328237812966,-107.17903774278238,-107.96077989181504,-107.43536553764716,-107.2371782604605,-107.2060948992148,-108.01489156391472,-108.10952948825434,-108.34604263864458,-109.32401386927813,-109.53851175028831,-110.19718098361045,-110.06777108227834,-110.21701876726002,-110.19805453810841,-109.28711772663519,-108.41640375647694,-107.87126862583682,-108.35113437054679,-108.00499007245526,-108.73159859795123,-107.88213152997196,-108.06358350720257,-107.15199291426688,-106.45947810122743,-105.65728508355096,-105.16402052296326,-104.78166010044515,-104.81494904216379,-105.33451319299638,-106.02984944172204,-106.60549530759454,-106.95147110940889,-107.62584994360805,-108.26205064496025,-107.68183112004772,-107.6893375525251,-107.27758374717087,-107.39147305535153,-106.74213763326406,-106.2827815967612,-106.28631249116734,-105.39317212253809,-104.45169896120206,-104.99381292006001,-105.50044243922457,-105.57811541622505,-105.45448839478195,-104.92234510136768,-105.43456257879734,-105.90020300773904,-105.26548161590472,-105.15085710585117,-105.20242144959047,-104.79914102749899,-105.5512390062213,-105.1786214467138,-105.27584484033287,-105.5761558720842,-106.31473449245095,-106.61900434968993,-107.40363739011809,-108.28360465867445,-109.21262707095593,-109.62426661839709,-109.96787406597286,-110.06338465306908,-109.20158468745649,-110.04737566784024,-110.7873968752101,-111.42808654345572,-111.67811717186123,-111.12609695224091,-110.97400022158399,-110.7310416311957,-110.55683648958802,-110.02295561414212,-109.56715507339686,-109.8493116167374,-109.21781065268442,-109.80120549444109,-110.7055068090558,-110.38854632573202,-110.38803901104257,-110.87143580755219,-109.92546991771087,-109.01405465602875,-109.70513221202418,-109.19836273882538,-109.29618340637535,-109.79581022728235,-110.12224730476737,-109.4652162855491,-109.15609506936744,-109.09673474216834,-108.5652578137815,-108.02915974054486,-108.9629869274795,-109.41255819192156,-109.04562562145293,-109.77663075784221,-109.47557968040928,-110.30811164993793,-110.16815628530458,-110.93453495716676,-110.59401466697454,-110.08586770994589,-109.14084491878748,-108.52584128826857,-108.46972135454416,-109.40060323243961,-108.86498346785083,-109.84534221095964,-109.29988845810294,-109.91926557943225,-110.1824746299535,-110.98516244487837,-110.37252055061981,-109.6511624082923,-108.97730790777132,-109.32413480849937,-109.74377250578254,-109.23609191784635,-109.32258585235104,-108.43076785095036,-107.8034977382049,-106.95499224495143,-107.62402232782915,-107.19260865682736,-108.01390079688281,-107.02832224033773,-107.66319985641167,-108.32919325074181,-108.6723651397042,-107.69978230074048,-108.54772185813636,-108.28255454730242,-107.74103035684675,-107.03179693501443,-106.19964591180906,-105.92734173731878,-106.4312964095734,-105.8458578819409,-106.02314699208364,-106.49339271290228,-106.98985896399245,-106.75200018379837,-106.01748305512592,-106.34129030164331,-106.55595281487331,-105.79731273977086,-105.32778537971899,-105.76260661752895,-105.68893033452332,-106.51257283380255,-106.14146765228361,-105.25954697374254,-105.54913060832769,-106.23381647327915,-106.57707276009023,-105.95049721747637,-106.3874102360569,-106.40043567167595,-106.40121729299426,-106.46914005465806,-106.5401923796162,-107.23882471956313,-107.7418548092246,-107.55204973416403,-108.397494899109,-109.11775524867699,-109.38690184475854,-110.00455832621083,-109.95931790489703,-110.36590948188677,-109.64500295650214,-109.75999738974497,-108.9961938909255,-108.16496574366465,-107.28169980691746,-107.82676238846034,-108.16318010445684,-107.7940353313461,-108.52469089347869,-107.8561016949825,-108.21971521386877,-109.02813301607966,-108.94169961102307,-109.72053671022877,-109.8548873104155,-110.3467011875473,-109.73978242697194,-110.20598727511242,-110.04726025182754,-109.77562681119889,-108.9146305769682,-108.12708916515112,-107.43088225834072,-108.34776007011533,-108.41092725470662,-108.28987801354378,-107.4811847130768,-107.35943428333849,-107.64776354655623,-107.41009118128568,-107.16601565899327,-106.29280957765877,-105.40849909605458,-105.8176366132684,-105.38741951342672,-105.4450501925312,-105.87688905699179,-105.6534622060135,-105.80065828608349,-105.66371761774644,-106.35749909095466,-106.30005043977872,-105.83723801514134,-106.44119436433539,-107.38763183029369,-107.40776284364983,-106.69907968537882,-106.98277476616204,-107.79378092288971,-108.46606031199917,-107.69154398748651,-106.9453378696926,-107.57056824490428,-108.04040078492835,-107.53967327345163,-107.76688243634999,-108.64655622513965,-109.2970497594215,-109.10229988535866,-108.52403121441603,-108.62309106765315,-109.07275862526149,-109.49982259562239,-109.57738738553599,-109.34237109636888,-108.37303932057694,-107.5894865798764,-107.02094761095941,-107.9618708123453,-107.93750596418977,-107.74355994490907,-108.63090064935386,-108.66341713955626,-109.06663270108402,-109.47756732953712,-109.23301018634811,-108.98812900623307,-108.59619568567723,-108.76055724080652,-109.13550555473194,-109.12397864088416,-108.1688108635135,-107.56238851789385,-107.99729152955115,-107.0091113820672,-106.32173800980672,-105.82492290483788,-105.52367767086253,-104.84723044466227,-105.02799671608955,-105.16259232582524,-105.32003987114877,-104.35204889811575,-105.1770005216822,-105.89136116206646,-106.08255433058366,-105.63900687685236,-105.7522194320336,-106.22958333836868,-106.86991076124832,-106.33853279892355,-106.977962506935,-106.70146376919001,-106.56596161052585,-107.47594648739323,-107.17114056786522,-107.4129856894724,-108.22748880181462,-107.77575655281544,-107.81535875564441,-107.31623776024207,-106.48921380145475,-107.38926951726899,-107.42592913331464,-106.63210145570338,-107.09662216482684,-107.35724444920197,-106.77581100724638,-106.98132622195408,-107.42522125411779,-107.55585004156455,-106.61902001313865,-105.88440216192976,-106.17177650844678,-105.32160895178095,-105.20050676213577,-105.4655794557184,-106.34493658738211,-106.86862436961383,-106.20398385124281,-105.28561197640374,-106.20365342404693,-105.46697027236223,-105.20490891160443,-104.95962578291073,-103.9953309353441,-104.11691841064021,-103.47917531663552,-103.35223424760625,-102.65868759946898,-101.71041682548821,-101.87974501121789,-102.30659779859707,-102.28918932378292,-102.94463746761903,-103.37187048234046,-103.40575134195387,-102.72127738129348,-102.20428038248792,-102.28389770630747,-102.24244302371517,-101.33256566291675,-100.37412603804842,-99.78267834940925,-99.84390995418653,-100.48537135776132,-100.18619321193546,-99.91609927359968,-98.96654133591801,-98.7713579153642,-97.79965683631599,-98.0555267543532,-98.62032835325226,-98.37962578888983,-99.17579969484359,-99.19679796183482,-98.87504045385867,-99.08832010626793,-98.93433052673936,-98.08270339248702,-98.38858537795022,-98.82954803202301,-98.82212804770097,-98.70780022395775,-99.36141106113791,-99.37975375214592,-98.72412934200838,-98.75944678205997,-98.97432123683393,-98.2981894495897,-98.79661278286949,-98.36176392063498,-98.86050793761387,-99.70575815159827,-99.87870185170323,-100.61162274051458,-101.30488710990176,-101.3642603252083,-102.23973936168477,-101.35913284728304,-101.68571405066177,-101.28153370833024,-101.79544748645276,-102.78256314899772,-103.38706193119287,-103.24397238669917,-102.652939631138,-102.96849046368152,-103.66800798522308,-104.27233379427344,-103.38431808631867,-104.13014845643193,-104.93223124183714,-104.56496134772897,-105.16737790359184,-104.77445892151445,-104.42184722330421,-105.24290753668174,-104.63416639901698,-104.49978433083743,-103.98929143091664,-103.77282492723316,-104.13602863578126,-103.39879659703001,-103.5861166222021,-104.05878557218239,-103.34259777748957,-102.84650256857276,-103.44018559297547,-103.18237057514489,-103.48526488058269,-104.13289218209684,-104.61352308047935,-103.80840576021001,-104.20579674700275,-103.87025542650372,-103.75984995486215,-102.91193272033706,-102.05575701827183,-101.93979481421411,-101.85083142481744,-102.43792932806537,-102.3695990270935,-101.73692148178816,-101.71535180229694,-102.38210517447442,-102.36880612745881,-102.84664819482714,-102.6657767998986,-103.11083540460095,-103.64019696973264,-103.78374573681504,-103.29239129740745,-103.54304324323311,-104.21564531698823,-103.33275898080319,-102.39668535161763,-103.32099302997813,-103.27727954089642,-102.99179448699579,-103.50209990376607,-103.21089447755367,-102.73049804801121,-102.44782096985728,-102.61014439351857,-102.21703795390204,-102.59856757195666,-103.48072749795392,-103.79694092739373,-103.38421225454658,-102.48334539495409,-101.68547135870904,-102.08890082128346,-101.82093438785523,-101.45004441170022,-101.43258069874719,-101.42929317289963,-100.85258271358907,-101.27405869076028,-102.01360749034211,-102.90725922537968,-103.22335306787863,-103.82956846058369,-104.33118568360806,-105.24553549429402,-105.22465737489983,-105.72320148535073,-106.31050635501742,-106.71495216572657,-107.23032433027402,-107.00259890966117,-107.3916649017483,-108.09708235831931,-107.64211866538972,-107.89862515265122,-108.77650847891346,-109.34385997615755,-108.37847976572812,-109.005283605773,-109.7113151489757,-110.2860279371962,-110.07651707995683,-109.81453842110932,-110.73998024361208,-111.50170786632225,-112.43366297660396,-113.28056671284139,-113.7373908739537,-113.57225659210235,-112.5776183004491,-111.68897845875472,-110.80818820232525,-110.5800396935083,-111.05538113880903,-110.33983825473115,-109.5865504979156,-109.70486428681761,-109.01967908348888,-108.59025672078133,-107.62748260144144,-108.45804470824078,-108.63602277310565,-109.29930131183937,-108.77885016752407,-108.63287643715739,-109.29844991816208,-109.88730019144714,-110.88340414687991,-111.06577841797844,-111.35514348233119,-112.11575019266456,-111.28193659707904,-110.76351146679372,-111.0733329965733,-111.97786357672885,-112.07040450535715,-111.56652790401131,-110.95325725479051,-110.51998586533591,-110.10879332432523,-109.70903629343957,-108.9401854542084,-108.20411056512967,-108.00730390055105,-107.12914322363213,-107.8528288891539,-108.4415622940287,-107.86354422010481,-108.07675986317918,-107.93327681533992,-108.25659205531701,-108.04014844540507,-108.65400450397283,-107.93508881423622,-108.67798140784726,-109.2046972066164,-109.40512476395816,-109.59036517050117,-109.87829848425463,-110.73587434319779,-109.9590601855889,-109.15549637377262,-108.8068852913566,-108.52990647871047,-108.56733439210802,-107.71991128707305,-108.19076583627611,-109.19059167383239,-109.29426893917844,-108.43787518981844,-108.36457586381584,-108.20321046793833,-108.57191794505343,-108.1014404213056,-107.3383920029737,-107.0600342839025,-107.83978306641802,-108.80716255912557,-109.78888246882707,-109.3847188143991,-108.43973720259964,-108.08372067799792,-107.58068794291466,-108.34581544809043,-107.91868901159614,-106.95942897023633,-106.94485493376851,-107.58129526954144,-107.04514054348692,-106.94568254426122,-106.99028153391555,-107.36939855013043,-108.0543102370575,-108.52024741983041,-107.76933899940923,-107.61558529222384,-107.35798905882984,-107.85879755299538,-106.98804243002087,-107.98408804787323,-108.84055195376277,-108.9712296538055,-109.10189629765227,-108.60854512779042,-109.4027820895426,-110.21644961321726,-109.33624518103898,-110.14193263603374,-110.71310052648187,-110.15956675028428,-109.94892452517524,-110.04661514656618,-109.16617872938514,-109.7537543354556,-110.35409472091123,-110.02458463143557,-110.04660348081961,-110.71727712079883,-110.2612995672971,-109.90762081835419,-110.28282515518367,-111.13297330169007,-111.40470849582925,-112.14172156760469,-112.81711653573439,-113.0359989060089,-112.75147421378642,-111.78868609759957,-112.46862675761804,-112.07389137847349,-113.00184289319441,-112.11412131786346,-111.75707337120548,-111.54765455937013,-112.18563625449315,-112.49742361390963,-113.23736915551126,-112.54509036475793,-112.22401653649285,-112.04351394064724,-111.3986991122365,-111.99837489891797,-111.5313318008557,-111.41504022479057,-111.17639847286046,-111.12197465496138,-112.05367463175207,-111.67009851755574,-110.71864101244137,-111.67537815775722,-110.97430744301528,-111.35605188412592,-111.65126165701076,-110.72702532960102,-111.17072419961914,-110.34332587150857,-111.15392718976364,-111.74420156795532,-112.01378004346043,-111.4215037911199,-111.93069714773446,-111.78751583676785,-111.22900425689295,-111.49970360519364,-110.87148656090721,-111.45895158220083,-111.72250327467918,-112.68304817285389,-113.11221538623795,-113.74558615358546,-114.61328449798748,-114.79472278570756,-114.92397196032107,-114.50054331403226,-114.41771261487156,-113.478755841963,-113.04087409609929,-113.9726054542698,-114.51137657044455,-114.23455174360424,-113.64507846161723,-114.17489143181592,-114.7785964757204,-113.95098055107519,-114.49021325306967,-113.77687252033502,-114.61406631628051,-115.2187564028427,-114.87782920198515,-115.04553460283205,-114.33816905179992,-113.42792642861605,-114.14640642236918,-114.55512337433174,-114.55250340187922,-115.04625397594646,-115.79268992366269,-115.52597151743248,-114.78791143232957,-114.06341168563813,-113.11340809892863,-113.38476304337382,-112.6099188872613,-112.68202138552442,-112.49136079009622,-113.40171805163845,-113.36460447078571,-113.6167591935955,-113.92222850956023,-113.14123434247449,-112.68247782299295,-111.95626038778573,-112.26056342525408,-112.86799721280113,-112.54546744469553,-111.93889805767685,-112.19738161750138,-112.78369713900611,-112.1512365010567,-112.52710670232773,-112.99240764975548,-113.20141458744183,-112.77501912089065,-113.09491265192628,-113.0910734119825,-113.32149364473298,-113.32864346401766,-114.09172640927136,-114.52227297984064,-114.62139121070504,-115.28449146496132,-115.5198946702294,-115.58611857471988,-115.66357721295208,-115.79381187073886,-116.18137285485864,-116.16183037031442,-116.15712672146037,-116.80323263304308,-116.98787786997855,-116.84961288888007,-116.64865890471265,-116.29222110519186,-116.07408063020557,-115.59917953703552,-115.8942098156549,-116.52346816333011,-117.23752114130184,-116.9159321077168,-116.94770935829729,-116.91257412871346,-116.24569553695619,-116.90291838441044,-115.98746562609449,-116.49329843884334,-116.04582646442577,-115.96904335264117,-115.90808742493391,-116.06068560574204,-115.35570783400908,-114.65098712546751,-114.15744681051001,-114.34874470112845,-113.56575743667781,-114.35566160129383,-114.49196844315156,-115.15456538274884,-114.44878575159237,-114.99518775613979,-114.32128695584834,-113.53308423329145,-113.07182878535241,-112.59262734605,-112.65241339756176,-112.95282287616283,-112.98224868206307,-113.85264569986612,-113.58456625137478,-114.4391224347055,-115.0078647728078,-114.64685269957408,-114.3136985860765,-114.9369174754247,-114.6499041239731,-114.806659899652,-113.94225785508752,-114.04744144994766,-114.8407190986909,-114.59905467927456,-115.45164349582046,-115.37337772594765,-114.91375308530405,-115.26638612011448,-115.40654578292742,-116.21264140633866,-117.09954450884834,-117.49946049880236,-116.77939771534875,-117.61378461541608,-118.01745192101225,-118.23660482279956,-118.83664465136826,-118.55955450236797,-119.17400692170486,-119.08012274326757,-118.50235828850418,-118.13213384337723,-117.16804402088746,-116.75761114200577,-116.89175423141569,-115.9582399521023,-116.75258159916848,-116.29008767474443,-115.66092097200453,-115.15109129901975,-115.44732355652377,-116.27162685943767,-116.50020537013188,-116.6228792835027,-116.08592427661642,-116.96585684502497,-117.46469352813438,-118.28158787358552,-117.9667683346197,-117.7599988700822,-118.39029539655894,-118.54442752199247,-117.68324878951535,-118.51237032702193,-119.05912670399994,-119.10230037942529,-119.752915346995,-120.29430651990697,-120.10385630186647,-120.9072038331069,-120.22868888126686,-120.26284952834249,-119.57365757599473,-119.23772160243243,-119.62797943223268,-119.64452491234988,-119.27078167209402,-118.98445814708248,-118.80458971159533,-118.78330621495843,-118.15616216510534,-119.03152782469988,-118.71663293708116,-119.30451100738719,-119.36441928613931,-118.66372466925532,-118.50001780036837,-117.71534604066983,-118.53034141892567,-117.92131056962535,-116.98427599715069,-117.17305578524247,-116.72642135806382,-116.92395541490987,-117.45468365820125,-116.99488175148144,-116.08594161085784,-117.04487001430243,-116.86278021661565,-116.43808390200138,-117.24886717321351,-118.18069923203439,-117.86834137141705,-118.38586527854204,-117.3912589927204,-116.43425770755857,-115.98183814017102,-116.57814255775884,-116.277436576318,-115.89336173795164,-116.10123268282041,-115.97378652589396,-116.63462950987741,-117.08735122950748,-117.17090842640027,-116.86067709000781,-117.828503257595,-117.85852145636454,-117.58564572222531,-118.11105482839048,-118.35318646021187,-118.13090676581487,-117.44970816886052,-116.87245131842792,-117.11391005339101,-118.07788072666153,-117.56447509024292,-117.44697120040655,-116.63414393598214,-116.63576964801177,-116.09884312655777,-115.82891082158312,-115.219370003324,-115.0030799601227,-115.38380473805591,-115.35245626978576,-116.09485709154978,-115.22155783651397,-114.78157626837492,-114.70931711513549,-114.26217307150364,-114.01671715732664,-113.64307233365253,-113.04574962239712,-113.37587197683752,-113.41361346747726,-113.457452184055,-112.81952617364004,-112.43261467153206,-112.10467488085851,-111.53682201262563,-111.27371485391632,-110.39418387319893,-109.88371401233599,-109.69087779754773,-109.49730314221233,-108.8278977656737,-108.67086983798072,-108.97312851343304,-108.74298358242959,-107.87429218227044,-108.16884211963043,-108.89025907684118,-108.83275636658072,-109.1467710561119,-109.52654992369935,-109.90040161134675,-110.67204481875524,-109.74940759502351,-109.69965313374996,-110.15511508053169,-110.5144481533207,-111.32392875337973,-111.86339270230383,-111.95141620514914,-111.55650662072003,-110.86293580243364,-110.8651966881007,-110.28756028553471,-109.3018007921055,-110.20473344065249,-110.67204941017553,-111.02883740980178,-111.03397875279188,-110.63007594039664,-110.7475630841218,-109.78192659188062,-109.02719129202887,-109.49809676548466,-110.21564806159586,-110.231531530153,-110.99187352275476,-111.24310423946008,-110.57355921622366,-109.70235870452598,-108.88889379706234,-109.58359394734725,-109.78547986038029,-110.34596174629405,-111.25926065724343,-111.17743859812617,-111.69959102896973,-111.94621238159016,-112.70512837264687,-113.14572044741362,-112.24302465515211,-111.72292343573645,-112.2858254564926,-113.16652631387115,-113.96817158395424,-114.11876563727856,-113.95471943123266,-114.11782911606133,-113.16886249557137,-113.33973336080089,-114.21663138829172,-113.93256292911246,-114.12354536447674,-113.95574041455984,-113.61876126378775,-113.64976483024657,-113.58383645815775,-114.11181080946699,-114.59489989979193,-114.81052076211199,-115.43286386830732,-115.94738243380561,-116.57522397907451,-116.64516396122053,-115.85099581442773,-116.65670631593093,-117.20599466888234,-117.81732045440003,-117.97912309132516,-118.05555634992197,-117.10054026404396,-116.74189041834325,-115.94001204986125,-115.12660001032054,-115.07469993224367,-115.10306301061064,-115.95197084452957,-116.3425853215158,-116.31262381840497,-116.9616388687864,-116.5489795464091,-117.10609225649387,-118.02904925169423,-118.91233585868031,-118.14591574156657,-117.58711236109957,-116.91223883070052,-117.35744537739083,-117.70698128314689,-118.05822588084266,-117.70305421994999,-117.2362831342034,-116.56159769371152,-117.31457112543285,-117.26882344856858,-116.66415950888768,-117.00115881348029,-117.4664983251132,-118.00405082758516,-117.5542614273727,-117.67466673441231,-117.34898052783683,-116.98968208022416,-116.07246284140274,-116.75371378194541,-116.80932640237734,-117.37510813493282,-116.46456010593101,-116.28550322819501,-115.78962458996102,-116.70617424324155,-117.52586383745074,-118.0173054956831,-118.46750986203551,-119.0505440174602,-120.01117725390941,-120.35077124694362,-120.61465391656384,-120.9306404502131,-120.3875916255638,-120.3649167525582,-121.13762091426179,-120.64150753198192,-119.83039661776274,-119.4068515850231,-118.81742019113153,-118.42863528896123,-118.51281572785228,-118.16436922363937,-118.62146418634802,-118.63428950170055,-118.22746243327856,-118.27852510893717,-118.22492651781067,-117.40186447743326,-117.3605094361119,-117.32392406510189,-116.84363754792139,-116.0362221612595,-116.49400368519127,-115.5733145000413,-114.9005027571693,-114.39623135467991,-115.07256299862638,-115.82751206681132,-115.58104708325118,-115.52549948450178,-116.10081170033664,-115.35535355703905,-114.72872308176011,-115.50184023054317,-115.998657154385,-116.62679228466004,-117.10308556491509,-117.39355775108561,-116.56367629393935,-116.68254689825699,-116.7743034218438,-115.7965285810642,-115.34719240712002,-114.78078718110919,-114.49616771610454,-114.08579249447212,-114.43211187934503,-114.16443340713158,-114.09120610915124,-113.38965146709234,-113.86508108722046,-113.87835231423378,-113.85749372234568,-114.14288333011791,-114.71414110437036,-114.59291222551838,-114.63248417386785,-114.1129762083292,-114.23648835299537,-113.72517986409366,-114.0433958163485,-114.50861011166126,-114.22302410844713,-113.40287482226267,-114.06962003745139,-113.90331865986809,-113.1919789146632,-113.84044394921511,-113.01561304135248,-113.19683079561219,-113.79822572087869,-114.48711257381365,-114.32221394358203,-113.3716080985032,-113.0384905738756,-112.11323539819568,-113.02025319170207,-113.87741321371868,-114.63442739611492,-115.52013963041827,-114.75526451552287,-115.27441655471921,-114.30256996396929,-114.7440539659001,-114.07860175333917,-114.31689930893481,-113.3429764653556,-112.60974832857028,-112.12552241235971,-111.61187987029552,-111.73004002869129,-111.25965345837176,-110.55707007739693,-111.47827377310023,-110.8021523845382,-110.06317624170333,-109.66099766362458,-108.7789696068503,-107.96835439139977,-108.6259102919139,-109.08765524579212,-108.08954887324944,-108.437187674921,-109.02426721155643,-108.19546870421618,-107.48640461731702,-108.2732537467964,-108.23407248966396,-107.56284174788743,-107.75709930155426,-108.43506768206134,-108.44865365000442,-108.10693559469655,-109.04220546456054,-108.78558215685189,-109.04847076302394,-109.31788513390347,-110.12610678281635,-109.29268869012594,-109.6257997774519,-108.98687908239663,-109.06428527180105,-108.26354378741235,-108.60180561384186,-109.5397126711905,-110.04815783025697,-111.03303064964712,-111.41396869672462,-111.0708026974462,-111.37677945569158,-111.1341468282044,-111.03831515368074,-110.09029632573947,-110.02478710701689,-110.97439420735464,-111.0713273123838,-110.99387528328225,-110.8109113140963,-110.35520457662642,-110.34555536927655,-111.18678985862061,-111.2152222939767,-111.62531898077577,-111.53651830460876,-111.15522581804544,-111.09946887660772,-110.7600562623702,-110.23036771966144,-110.69194953935221,-109.76162523496896,-109.7615864854306,-109.53941727383062,-109.51516451686621,-109.61278617335483,-110.59778065327555,-111.4931308478117,-111.23426318727434,-111.57172173867002,-110.82765069324523,-111.2749734306708,-111.99877414433286,-111.37123901071027,-110.83297098334879,-111.4915164867416,-111.69885424943641,-111.58580720750615,-110.64956081379205,-111.22582702571526,-111.7969176247716,-110.95528090931475,-109.98126047058031,-110.12148976325989,-110.58360168337822,-110.04514484480023,-110.07858476927504,-110.69563637813553,-109.73029380943626,-109.26441680127755,-108.56539149209857,-108.29131490224972,-107.78598371846601,-108.61667918879539,-108.31645477749407,-109.244235788472,-108.625657889992,-107.8607221301645,-108.15111297462136,-107.50990611501038,-107.3010041913949,-108.0252369469963,-107.26539141079411,-108.1133489399217,-108.10354155022651,-107.8881212817505,-108.19771003164351,-109.11491936258972,-109.03622066229582,-109.5779659776017,-109.19004284963012,-108.39461902575567,-108.1984692378901,-107.99094401765615,-107.24789118161425,-107.54019033396617,-107.95047205965966,-108.7314220611006,-109.57106026867405,-109.60961618693545,-109.27521973149851,-108.43488821852952,-107.62376692472026,-108.33380498131737,-109.2388512454927,-109.54216844821349,-109.03649436170235,-108.36592328036204,-109.320123241283,-108.71412134636194,-109.10892306547612,-109.73803558433428,-110.31741196382791,-111.14230654155836,-111.10279037803411,-110.1949659618549,-109.77060364373028,-109.9620733638294,-110.37095406604931,-109.42407835414633,-110.04789451975375,-111.02236178936437,-111.5239278334193,-110.95203852513805,-111.26014785142615,-110.34897327655926,-110.16666190559044,-109.18663457874209,-109.5329227312468,-109.80313508445397,-109.58974057622254,-110.19283408811316,-109.6721181999892,-108.90019259927794,-109.30843519186601,-109.25348882190883,-108.71306020999327,-107.97426627157256,-107.30729319853708,-107.77205697353929,-107.29911092482507,-107.14016295457259,-107.49067396856844,-106.62560061225668,-106.64063149411231,-107.5554230059497,-107.14712832216173,-107.08842567261308,-107.41898557264358,-108.01840169308707,-108.49406761769205,-108.73605129541829,-108.50682730926201,-108.31222880957648,-108.64198140380904,-108.82101447833702,-108.14456729730591,-109.07482932601124,-108.39668978238478,-108.03531068889424,-108.61239476222545,-109.4626249531284,-108.6653514886275,-108.26693537319079,-109.07264570891857,-109.29744867933914,-108.5533185210079,-109.15074458019808,-108.43002415588126,-108.61686500301585,-109.09046603366733,-108.92597484495491,-108.46342745795846,-108.24091699812561,-107.51778941741213,-107.3089321423322,-106.48946284642443,-107.16539012268186,-106.39175173733383,-106.75489026354626,-106.13405808061361,-106.59308966016397,-105.69414905551821,-105.07579140225425,-104.13017913745716,-103.59570800280198,-104.03126996103674,-103.90125758387148,-104.03686050977558,-103.72651386493817,-103.86819810792804,-104.28834177926183,-103.96138761658221,-104.80379439564422,-105.11848213896155,-104.50616857921705,-105.42262930702418,-104.99258761061355,-104.6304668453522,-104.24200427392498,-104.12118223356083,-104.05735313519835,-104.25521373283118,-104.73849265091121,-105.1694347281009,-106.08747123228386,-105.21453107101843,-105.99762149713933,-105.1100564817898,-105.50510662887245,-106.1753375576809,-105.98172496538609,-105.23249562410638,-105.92377060232684,-106.38058871403337,-106.88858496583998,-107.05034035537392,-106.86600959813222,-106.46384009113535,-107.03735256427899,-107.50632366724312,-106.59523848909885,-106.8012061463669,-107.33747473778203,-106.91357329813763,-106.75722277816385,-106.51900176890194,-106.82723867101595,-107.29362567001954,-106.35112023726106,-106.9111441783607,-107.57350136898458,-108.37096518604085,-108.87628922611475,-107.95266939606518,-107.07321437774226,-107.22785878321156,-106.61523786885664,-106.77394957374781,-106.06955572264269,-106.93493112269789,-107.0359374708496,-106.46814611041918,-106.78280763700604,-105.89124007616192,-106.17237625736743,-106.3442647093907,-105.39001248497516,-104.82362464489415,-104.6157087571919,-103.85325077455491,-103.11853407649323,-102.65696192253381,-102.85742727387697,-103.02938706753775,-103.79877537023276,-104.73455397691578,-104.38382363785058,-104.88077988522127,-105.65313169592991,-105.27449451945722,-104.7676095943898,-104.15342684928328,-104.22675096523017,-103.99654871923849,-103.97681474732235,-103.85265936190262,-104.1489074616693,-104.0891505163163,-104.29514067061245,-103.50934020476416,-103.81994711700827,-103.80159355793148,-103.23309302004054,-102.98462781868875,-103.70206951024011,-103.38603325933218,-103.77152216248214,-103.84699403261766,-103.21920008584857,-102.58286582306027,-101.66284474590793,-102.1950182011351,-103.12117477552965,-103.97267700312659,-104.44495596317574,-104.88030536891893,-105.01262998441234,-105.57020793575794,-105.34250232949853,-105.39215367101133,-105.76296648057178,-104.99228294380009,-104.50591778103262,-104.77043627062812,-104.87210531393066,-105.80621803272516,-105.82352084713057,-105.86869303137064,-104.94402155000716,-104.5873914132826,-104.16190775018185,-104.96273279795423,-105.56074491655454,-104.75128139648587,-104.28043683199212,-103.45484185172245,-102.96323589701205,-102.49269706336781,-103.23700451245531,-102.28031311370432,-101.79262372246012,-101.04762870585546,-100.12962647806853,-100.96151984203607,-101.16005776403472,-100.77354228310287,-100.5508304964751,-100.06731295865029,-99.9508170322515,-100.57872884860262,-100.28918374562636,-101.24037426058203,-101.8750587622635,-102.02809284534305,-102.15744505915791,-102.06324777845293,-101.52314118249342,-100.60403043124825,-100.68454504013062,-101.28072979766876,-100.81215881789103,-101.79356622789055,-102.45454003708437,-103.29011304490268,-103.13621295010671,-103.04552469169721,-103.44142983201891,-102.7849981165491,-103.02871171897277,-103.18515694281086,-102.3863558974117,-101.71055862726644,-101.30996338231489,-101.54666847689077,-101.02826559916139,-100.08685616776347,-99.09248185390607,-98.44836259400472,-99.2843950856477,-99.3912240206264,-99.42054627044126,-100.30307246977463,-100.93070491729304,-101.57308299746364,-101.93731442186981,-101.99747249204665,-101.09702071128413,-101.96641385741532,-102.6256718672812,-103.4909191513434,-104.41760440170765,-104.58888221811503,-105.15314003871754,-106.0032937405631,-105.63795340247452,-104.64533647056669,-103.91933109937236,-104.13373713195324,-103.25392023194581,-103.84133563330397,-103.21802640613168,-102.92043712874874,-103.09042412647977,-104.0002773613669,-103.69073215452954,-103.13531317794695,-103.50367569411173,-103.47462605452165,-103.42167769279331,-102.64280561637133,-102.77895380044356,-103.00673345848918,-103.16118765249848,-103.204508387018,-102.89985118061304,-102.97097572311759,-102.41659322800115,-102.84176600910723,-102.96419440023601,-102.82831668527797,-103.40912170661613,-102.93642103113234,-103.54382997145876,-103.12990769837052,-103.73459838796407,-103.25405659340322,-103.5165106668137,-104.0615784805268,-103.74830548092723,-103.422449038364,-104.35954983113334,-104.61075776722282,-104.66381803667173,-104.0155792683363,-103.11309217195958,-102.43587617389858,-101.98148542409763,-101.75171699468046,-102.71608019154519,-102.35798986256123,-102.06929971231148,-102.72155022248626,-102.15509035345167,-102.98834874574095,-102.52460397547111,-103.24343480123207,-102.44100999832153,-102.4709711195901,-102.34634326118976,-102.64759282115847,-103.49353371281177,-103.97770335664973,-103.3564536399208,-103.39539055433124,-104.15029454464093,-104.89395027421415,-104.77116575278342,-104.29107497725636,-104.67934668483213,-104.20859296200797,-104.32131522288546,-103.33229986391962,-103.23936729133129,-104.07817786559463,-103.62568225245923,-103.63138294545934,-103.26638827519491,-103.24247745610774,-102.31121404794976,-101.9305669455789,-101.60422483179718,-101.18775924574584,-100.74287872342393,-100.27460469352081,-99.4102216437459,-98.70394202927127,-98.70907455682755,-97.89815818006173,-98.30632883543149,-98.91888222005218,-97.9774885987863,-97.29803016595542,-97.51483310433105,-98.16343233082443,-99.06966101797298,-98.92868636501953,-99.34501188620925,-98.39383471896872,-98.36172142159194,-99.162286543753,-98.61592451576144,-98.5944644920528,-98.97446442581713,-99.22234448697418,-100.0054425522685,-100.0308807217516,-100.7526118173264,-101.22140560951084,-102.09565819939598,-102.30170038342476,-102.04809354571626,-102.54456959059462,-102.39987980714068,-103.02552078850567,-102.57038132892922,-102.27135407971218,-102.24818337196484,-101.3021722692065,-101.15763329900801,-100.78458791365847,-100.85376115702093,-99.93152771983296,-99.89689120324329,-98.92952393507585,-98.28588040918112,-97.46283583296463,-97.66611846350133,-98.62899093143642,-98.28411451587453,-98.0776996081695,-97.47232392150909,-96.88657591259107,-97.3123489767313,-97.89995532110333,-97.05356392357498,-97.79181155469269,-98.24285334162414,-98.47202411713079,-99.10602082964033,-99.69164917478338,-99.38951963279396,-100.20292738638818,-100.49581850785762,-100.15543987927958,-100.00696574756876,-100.72106654429808,-99.7317157634534,-98.74759715236723,-98.5215450138785,-99.37836556183174,-100.36617385689169,-99.51573342178017,-99.25604135170579,-98.80823469627649,-99.10063894744962,-99.01892939629033,-98.11028961185366,-98.41073497477919,-98.65424112603068,-98.63782470300794,-97.97020623460412,-98.01048956252635,-97.83896204829216,-97.99548868834972,-97.9089932423085,-97.7668258282356,-97.69667692109942,-98.15177891589701,-97.58813612023368,-98.46459504775703,-98.97615890484303,-98.46823083935305,-99.0134403607808,-98.69105537422001,-99.04012882336974,-98.20926080830395,-98.20134267071262,-97.55083193676546,-98.34094665339217,-99.2898919293657,-99.65372873377055,-100.10309961717576,-99.44271080614999,-98.83641660865396,-99.16706385696307,-99.87228309595957,-100.27219995157793,-100.62183863995597,-100.78426852310076,-101.00772560015321,-101.87605726206675,-101.7114052111283,-101.53628206579015,-102.41002316679806,-102.23160586506128,-102.47529204748571,-101.57309600990266,-101.74515907326713,-101.21681654313579,-100.57080973312259,-101.02403322327882,-100.8698867354542,-100.70910563180223,-100.19412143807858,-100.37219155346975,-101.31427586264908,-101.3529554437846,-102.08567481674254,-101.15937742311507,-101.82788533810526,-101.31910354085267,-101.99082030495629,-101.38184135826305,-100.9269103561528,-100.24093416845426,-101.1141036269255,-100.64557065721601,-101.40535155963153,-102.09689288632944,-101.94780974648893,-101.84304369660094,-101.66794223338366,-101.79342094855383,-102.78967019496486,-102.97201308608055,-102.33454853715375,-102.47438350506127,-102.36832143366337,-103.1356325536035,-102.17845375137404,-102.21335996733978,-103.13313436834142,-102.78812359273434,-102.18136174650863,-101.35892540216446,-100.37648517172784,-99.68768337881193,-98.9413943560794,-99.0881676254794,-99.04556131083518,-98.8527742754668,-98.01200602483004,-97.27004396915436,-97.22142311185598,-97.59752190951258,-96.83507649414241,-97.34556131996214,-98.07820880413055,-97.54629686102271,-96.74567217379808,-97.17003389028832,-97.48010391602293,-96.68220521742478,-97.10538819944486,-97.71244487771764,-97.54631286859512,-97.47005157312378,-96.78029564488679,-96.45687980251387,-95.46406739763916,-95.6044285739772,-96.19549951935187,-96.1657443093136,-96.67149449931458,-97.5092732636258,-96.71891642548144,-97.43062345590442,-97.96391263464466,-96.991839107126,-96.50934780901298,-96.47181503474712,-96.10569467162713,-95.55558653641492,-95.92294094432145,-96.63190499786288,-97.04107665456831,-96.34112996747717,-96.5081146415323,-96.77881382592022,-97.04046849394217,-96.84060240071267,-96.73838512925431,-96.37322433758527,-96.8469485072419,-97.20685794018209,-97.79189775558189,-96.79265742423013,-96.97098419768736,-97.73575295740739,-97.37754118116572,-98.31743924738839,-98.5714082242921,-97.8296342859976,-97.78317852597684,-98.66903304308653,-99.0526914796792,-99.69101304933429,-99.23290802212432,-99.58582722069696,-99.08924433263019,-99.83548670448363,-99.88290768582374,-98.89007092826068,-98.28789048083127,-97.6593358842656,-98.44475259725004,-99.06088473787531,-99.27526131691411,-100.15061407303438,-99.4845574120991,-99.95986970840022,-99.27334772003815,-99.41663695173338,-99.89965933002532,-99.82696231594309,-99.58054304448888,-100.26650586165488,-100.30728852981701,-100.30036081001163,-101.13106045452878,-101.50163060752675,-101.49633511481807,-100.87952616950497,-101.1382531253621,-102.10704408306628,-101.91073875315487,-102.70730898203328,-101.72316840616986,-102.03345790784806,-103.01401367690414,-102.18129550898448,-102.79627993842587,-102.44454133417457,-102.59917759895325,-102.93129964591935,-103.83927398920059,-103.12219221377745,-103.31174749741331,-102.5160823664628,-101.84907773975283,-102.76881449716166,-102.26784466346726,-101.60590887116268,-102.0006202752702,-101.06167148426175,-101.02922822767869,-101.5220993515104,-102.39929890818894,-101.55249794386327,-101.84301287867129,-101.43221445940435,-102.4303032103926,-101.56367380497977,-101.88507612468675,-102.69191199773923,-103.52856160886586,-103.99097511451691,-103.40506700240076,-103.90313866082579,-103.9517909665592,-104.95137494569644,-104.11198567645624,-103.12994684744626,-102.23999614827335,-102.27161844773218,-101.36189358495176,-101.80317675275728,-100.82948783040047,-100.90871394891292,-100.16240197932348,-99.85320060048252,-98.99849323509261,-98.87934903707355,-98.8673424469307,-99.63969835080206,-99.70877969032153,-100.48366102576256,-99.6482641203329,-100.34637882281095,-99.98826000839472,-100.78499363502488,-101.38282502768561,-100.99319979455322,-100.96757741179317,-100.7841030084528,-100.46179653098807,-100.42698655603454,-101.10401628073305,-100.4185756095685,-99.74100107513368,-100.21896107215434,-99.73325552605093,-99.00060586351901,-99.81733044004068,-100.06335297506303,-99.97235428728163,-100.75002893339843,-99.85034966794774,-99.5776078812778,-100.49701478844509,-100.03405988402665,-99.20085657201707,-99.98186274105683,-99.19252545712516,-99.73990017781034,-98.74149464676157,-97.81198976095766,-97.85348976310343,-97.85436047473922,-98.60307288635522,-99.19833731744438,-100.1718035065569,-99.233309420757,-98.29110803827643,-97.94099743338302,-97.47304650209844,-98.42798566352576,-98.67217664280906,-97.72462116228417,-97.94654985703528,-97.79348628083244,-96.9733950542286,-96.0039327875711,-96.10204716352746,-97.05937059829012,-96.56777107389644,-96.93048067577183,-96.10241884784773,-95.22892634663731,-95.49235011357814,-94.84907411783934,-94.1844561547041,-93.57506314339116,-94.39805873529986,-93.85488140909001,-93.21703727496788,-94.0317847840488,-94.7247396488674,-93.77194579737261,-94.42082005599514,-94.58391577051952,-94.18855504970998,-95.01517054717988,-95.95555365178734,-96.56500268168747,-95.73490112926811,-95.26215834589675,-95.27510441141203,-94.36436910834163,-93.5830661454238,-92.81809221534058,-93.63097762316465,-94.18068249290809,-93.49048760998994,-93.42920224927366,-93.01612575585023,-93.74923827219754,-93.09901390084997,-93.93978889007121,-94.24232749268413,-93.59911382943392,-94.29009438911453,-93.463337009307,-93.28117232304066,-93.41240766784176,-92.75368459196761,-91.91317644529045,-92.09367305831984,-92.49243151815608,-93.31447227066383,-92.56527753546834,-92.0500984089449,-92.07439797418192,-92.35833202209324,-92.37690167035908,-92.63580766227096,-93.57430026028305,-93.88368337973952,-92.91613050922751,-92.94889369327575,-93.39683348638937,-94.2033580802381,-93.93012166535482,-94.29531775787473,-93.34224551776424,-93.21506753005087,-92.77301325136796,-93.6503362073563,-92.79733135318384,-92.80863848188892,-92.27434717677534,-92.39523998228833,-92.25476673757657,-92.94824498100206,-91.97041692305356,-91.17494758591056,-92.07361572701484,-92.31115851784125,-92.30266949208453,-91.66270818235353,-90.9531236323528,-91.69994696415961,-92.26441046921536,-92.14176720194519,-93.12926879525185,-93.15316431364045,-92.18847584258765,-91.53451389633119,-91.78914242610335,-92.47608674596995,-92.80544601287693,-92.58476065192372,-93.21078184200451,-93.99971591122448,-94.02934529725462,-94.79328125528991,-94.52488232171163,-93.94620690308511,-92.99926958838478,-92.5037939408794,-93.38210565317422,-92.57694199960679,-92.98372193425894,-92.22236854350194,-91.58322706492618,-91.31508439546451,-90.52931344369426,-90.22754529397935,-90.0099680093117,-90.20983886020258,-89.83698602905497,-90.50065873842686,-90.16037169424817,-90.19943896122277,-90.30374238919467,-90.19962906045839,-90.89128046436235,-89.93660928402096,-89.95269896974787,-89.78411912498996,-89.72895304951817,-89.9108907287009,-89.42536199977621,-89.7717115744017,-89.88999246945605,-89.5555251124315,-89.72980441106483,-88.76993004232645,-89.18549927230924,-89.3709137015976,-89.35486338334158,-90.10447446256876,-90.52029796037823,-91.07635048264638,-91.64283465733752,-91.93455450236797,-91.33907509455457,-91.99479900673032,-92.54567740811035,-92.1701250821352,-92.91366680525243,-93.00078433426097,-92.38634740095586,-91.57481298642233,-91.16261355765164,-90.79723918437958,-91.53437277209014,-91.81556848622859,-90.92719463258982,-90.31519315205514,-90.65123082557693,-91.24208121141419,-90.49049442680553,-91.43612774368376,-91.65489106392488,-90.89158193673939,-90.56464829714969,-91.45901982393116,-91.62410494545475,-90.85307944240049,-91.49117400171235,-91.70132072130218,-90.77648221328855,-89.92711339099333,-90.69169611670077,-91.42536802822724,-90.97835492016748,-91.6387616158463,-92.52527267020196,-93.11079226946458,-92.30890469579026,-92.83159854914993,-93.64292669808492,-93.76053824089468,-93.39070989005268,-93.85987417260185,-93.7023996161297,-93.12140597682446,-92.43228084594011,-92.20352577418089,-92.6963842283003,-92.83142887847498,-93.50587768806145,-93.59352038102224,-94.09185899421573,-94.58107226574793,-94.78034100262448,-94.71895685559139,-94.24404310015962,-94.70507128955796,-95.6309609208256,-96.29043079679832,-96.77707544993609,-96.60986374365166,-96.21005910541862,-95.58837048523128,-96.50838629249483,-96.9769083308056,-96.52828008821234,-96.64034286234528,-96.13902662787586,-95.97008412471041,-96.38285113824531,-97.14739618264139,-97.41452218871564,-96.58427700027823,-96.39415347576141,-95.66170668788254,-94.76563840918243,-95.50258335191756,-96.32491724332795,-96.79902905551717,-97.64216664293781,-98.52055893279612,-98.62450709706172,-97.82542412914336,-97.35858018649742,-97.0090518379584,-97.39913273230195,-97.8675267486833,-97.88385139545426,-98.75413956679404,-98.71486857300624,-98.72717858105898,-99.0362261836417,-98.5377925876528,-99.15534728206694,-99.2562688686885,-99.1200096020475,-98.67435770574957,-98.44830160401762,-98.56835156539455,-98.49760418524966,-99.06680701533332,-98.9321431494318,-98.25320347957313,-98.0395495025441,-98.50956592010334,-99.05487691098824,-99.01807536091655,-99.6034286711365,-98.96274841763079,-99.8077047704719,-99.74847161583602,-98.9636373501271,-99.1760030305013,-99.500697074458,-98.744010720402,-99.55769913131371,-99.81256264261901,-100.0863977749832,-100.86267113033682,-100.50260146101937,-100.92194996867329,-100.80492601636797,-101.80143477814272,-102.4894420192577,-102.37225184543058,-103.13936114078388,-103.79657449480146,-103.0842595519498,-103.47444787994027,-102.49209455680102,-102.26044507231563,-103.25818762369454,-103.30922917509452,-103.58318094257265,-104.56896691583097,-103.6723317685537,-103.04008676903322,-102.7542547150515,-103.05456105805933,-103.89669516030699,-104.89197416603565,-105.36950096674263,-105.7127477102913,-106.21950237173587,-107.09046224458143,-107.35387746151537,-106.46223952947184,-105.9763805619441,-106.81794486474246,-107.17053650785238,-106.47442607069388,-105.68384850630537,-106.67262445949018,-107.04159914981574,-106.99612053856254,-106.82531260931864,-106.6588743608445,-106.857749175746,-106.88944224081933,-107.7310815420933,-107.78413908882067,-108.00980797968805,-108.63853037822992,-107.67383478116244,-107.14004256064072,-106.8716672793962,-106.0796790602617,-106.40105574857444,-105.54132747044787,-105.23893200792372,-104.27569777565077,-104.53686702856794,-103.76845142850652,-104.17492344928905,-104.85996024403721,-104.0470826937817,-104.38379149883986,-103.48466678941622,-102.84197996603325,-103.14970293594524,-102.56082123471424,-102.7666756673716,-102.22072443412617,-102.43070662720129,-102.32958596525714,-102.1482506999746,-101.7096812389791,-101.31750033423305,-101.79700361378491,-101.67370564909652,-101.34973944397643,-100.72799077816308,-101.58952969685197,-102.58522832021117,-103.49810925591737,-102.73542588483542,-103.31596716726199,-102.62809832254425,-102.03461416484788,-101.87883745320141,-101.5002145273611,-101.97742518410087,-102.23351220227778,-101.27518571540713,-100.472202305682,-100.3239603121765,-100.09748990694061,-99.81634924327955,-100.61644878657535,-99.90715318685398,-98.9884510980919,-98.49765753140673,-99.01238042628393,-98.35337116848677,-98.25070523982868,-97.95775026036426,-97.78179644746706,-98.77311423001811,-99.11973377550021,-98.66864366875961,-99.08349372958764,-99.91074287658557,-100.42566357040778,-100.26113118324429,-99.36198266968131,-99.29363491153345,-99.91670767962933,-99.86033742129803,-99.69820487778634,-100.13809449458495,-99.9603723702021,-100.64560108771548,-99.82630148669705,-100.51803889032453,-100.78061838122085,-101.59971992345527,-102.52965598087758,-103.00464956881478,-103.64054800989106,-104.1944123939611,-104.42984215170145,-104.94727175915614,-105.0913633373566,-105.69074817607179,-105.7622474799864,-105.67738021118566,-106.25102763436735,-107.11342166364193,-106.70635671215132,-106.65895650722086,-105.95293695386499,-105.90390601987019,-106.34883457096294,-105.44462934043258,-105.83143417723477,-105.21791111398488,-105.58082754351199,-105.19533215090632,-106.1171371624805,-106.42748366296291,-106.92792213428766,-106.78485864959657,-106.1147123426199,-106.90919105894864,-106.73334137210622,-106.83373309951276,-106.40108404448256,-105.77234429959208,-106.04917610948905,-107.02808005316183,-106.62555599492043,-106.61676853941754,-107.11143638938665,-106.16918628802523,-106.84071218641475,-107.50785523606464,-106.59419653844088,-107.47032032394782,-108.44212459493428,-108.3772905911319,-109.0056017767638,-109.29733159253374,-109.88588050240651,-110.43702584085986,-110.69299605023116,-109.91199340671301,-110.60106727806851,-110.60044500697404,-109.64402890438214,-110.06928179785609,-111.02268648194149,-110.64154063444585,-110.76193219795823,-111.39580260775983,-111.51745902467519,-111.06174464803189,-111.43879471253604,-110.82808798644692,-109.89571993425488,-110.57805851614103,-109.83437116909772,-109.72709808824584,-109.1159104318358,-109.78295087767765,-108.81118606915697,-109.77609715424478,-109.77673916565254,-109.89083969779313,-109.64350327616557,-109.68511319765821,-110.2529057818465,-111.04566563619301,-110.25319932447746,-110.93703960068524,-110.58909253077582,-111.25040332973003,-111.91604914562777,-111.01738276705146,-110.62311097886413,-111.51424677250907,-111.78658930072561,-111.52188581740484,-111.64696063566953,-110.72890812717378,-110.22359250904992,-109.58366171969101,-110.49919877387583,-111.33274718606845,-110.4135131565854,-109.5654909890145,-110.04493632400408,-109.26342406170443,-108.33282522158697,-107.34849980520085,-106.6109852581285,-105.67432295437902,-104.87800510972738,-104.39820580976084,-104.36593401664868,-104.97995111020282,-104.4160016356036,-104.42486563976854,-103.62823562929407,-102.99557245243341,-103.42675085971132,-102.6016204780899,-103.52000703616068,-104.30364497331902,-104.37437042733654,-104.25763187231496,-104.52524976292625,-103.95634165219963,-104.93256862135604,-104.33246192941442,-105.16958916094154,-105.28888021688908,-104.40020088572055,-104.56073857611045,-104.59646815806627,-104.76362636452541,-105.00524449814111,-105.95803486229852,-106.03323427587748,-106.5756586859934,-106.80808475520462,-107.04504668340087,-106.25815586652607,-106.8957730657421,-107.35294386046007,-106.78843506565318,-107.48575156368315,-106.5581169789657,-105.66731121949852,-106.08127362700179,-105.83941397815943,-104.92399121215567,-104.25159489177167,-103.71075111813843,-104.52666959865019,-103.88726181536913,-103.29904589336365,-103.72769245924428,-103.23271167697385,-102.25398492906243,-102.29529133858159,-102.51099547138438,-103.36991353658959,-103.35088242869824,-102.75558703951538,-103.54676177352667,-103.84209932107478,-103.78030608408153,-103.32592885615304,-102.53526604035869,-102.71826905338094,-102.96098504494876,-102.12466153409332,-102.04677721718326,-101.16083711804822,-101.10782303428277,-100.82769916485995,-100.48136090859771,-100.2391716404818,-99.6393347941339,-98.94495971407741,-99.52396817272529,-99.27010034024715,-99.20822016010061,-100.16725927917287,-100.983156143222,-101.1883486667648,-100.34864630643278,-100.21832036273554,-100.20718161482364,-100.96401408407837,-100.39806356467307,-100.39373652962968,-100.15332088107243,-99.65372049901634,-99.5730882701464,-100.29738931218162,-101.21915032109246,-100.4480337947607,-100.65343283582479,-99.79841532511637,-100.41115036420524,-99.93140957970172,-100.0189154194668,-99.69522226043046,-99.96227010106668,-100.40037966426462,-100.94249043660238,-100.53519215853885,-100.65734185511246,-99.93185243522748,-99.63448047824204,-99.72753929207101,-99.4977908139117,-99.25032931519672,-98.86929922085255,-98.12411320861429,-99.07501070015132,-98.7524644578807,-99.02358517143875,-99.85283399606124,-99.88164970744401,-100.49362021824345,-99.90604507457465,-99.57119733514264,-100.08991179103032,-99.61815087869763,-99.04538751672953,-99.69768177624792,-99.77553694276139,-100.26647151913494,-101.16042621061206,-100.57024727202952,-99.90644173510373,-100.70568315358832,-99.77104346081614,-99.01101824082434,-99.14067116845399,-99.16562702087685,-99.09507664991543,-99.90780525607988,-99.79067243402824,-98.93184245424345,-99.17855857172981,-99.19028912950307,-100.02911663521081,-100.66646415973082,-101.33914712956175,-100.93693552352488,-100.90725514199585,-101.51042039366439,-100.98915257118642,-100.09983427450061,-99.77009906386957,-100.50112749962136,-100.52238533133641,-100.2084138430655,-99.53715081047267,-100.15193482488394,-101.11692155664787,-100.94655211782083,-101.24914382165298,-102.17283922759816,-103.12958117807284,-102.55425915447995,-102.40070995595306,-102.28847104264423,-103.02820357773453,-102.51823128759861,-101.61645373236388,-100.84900234313682,-100.5451939436607,-100.66353861382231,-100.62543566152453,-100.466926173307,-101.1819731532596,-100.77436132868752,-100.62954760482535,-101.36711386498064,-100.58429291239008,-100.355413435027,-101.02166154747829,-100.47283344902098,-100.83171185757965,-100.65512333018705,-101.48895486723632,-102.3902993905358,-103.18716435320675,-103.76871185330674,-104.44601956242695,-103.80290397303179,-103.0853728223592,-103.92727678595111,-103.32284305803478,-104.09331707237288,-103.20252231974155,-103.90104406280443,-102.9200155409053,-103.67698128847405,-104.61363814864308,-104.91888832114637,-105.1415581787005,-106.0266789784655,-106.07645693141967,-106.52757106209174,-106.1513192364946,-106.49947260133922,-107.42275348771363,-108.32963459473103,-108.5948727754876,-108.66650439193472,-107.81921073561534,-108.73889281507581,-109.63654200127348,-109.89257365744561,-110.6223993813619,-110.6563433832489,-110.74666995415464,-110.0742166088894,-109.39897780446336,-109.49372715642676,-109.02669412083924,-108.42436907580122,-107.87465239781886,-107.24958259705454,-107.89250402897596,-108.3372365636751,-108.55700504546985,-107.93304503895342,-108.39752330211923,-107.87555337604135,-108.63498971471563,-108.55352021940053,-109.25931788189337,-110.00057639740407,-110.27040366642177,-109.90272979205474,-110.85012181801721,-111.28075922606513,-110.74169960664585,-110.93297609966248,-111.7711966582574,-111.97911172546446,-112.09269653074443,-112.0112720974721,-111.25254880171269,-110.3849956067279,-110.4554549716413,-111.17715950775892,-111.69311985559762,-111.85161115368828,-112.05413650814444,-112.17452063178644,-111.40001796465367,-112.21671906625852,-112.82660928415135,-113.80860477406532,-113.51295403344557,-113.17860872950405,-113.22238030238077,-112.70484616281465,-112.92688399879262,-113.18315495178103,-113.8979414049536,-113.09425998944789,-113.59075622679666,-112.64388919994235,-112.2845608247444,-112.02184490906075,-111.72247553104535,-111.68600268382579,-111.78778003063053,-112.73934689164162,-112.82573739485815,-113.12267660116777,-112.2867595050484,-112.29795445362106,-111.88251864211634,-112.5381700238213,-112.12013203045353,-112.13934256369248,-112.59791822033003,-112.99519057804719,-112.81893613329157,-112.0706355352886,-111.26880227169022,-110.8398849745281,-110.05739649059251,-109.95582302752882,-110.05991859734058,-109.32101440476254,-108.44818013673648,-107.54737554956228,-106.71039747493342,-107.33648238005117,-107.6254259715788,-107.7026725737378,-108.49965027393773,-108.47404682729393,-109.03170417388901,-108.91882739076391,-109.03221545368433,-109.21183068677783,-108.92220301320776,-108.57990508992225,-109.28521100617945,-108.56205075699836,-108.14875436713919,-107.62814045930281,-106.64653363963589,-106.08167865499854,-106.58043707208708,-107.13509269757196,-107.41685935249552,-106.76327710179612,-107.13401766028255,-107.35148748615757,-106.53768014488742,-106.26387713989243,-106.53770153457299,-106.56371732847765,-105.63496237946674,-106.32584456680343,-105.32742910925299,-105.52629190078005,-106.29697307152674,-105.36051725456491,-105.49397346749902,-105.91116839507595,-105.6048340043053,-105.27406264981255,-105.10807583946735,-104.30740559380502,-104.00646849023178,-104.29568595904857,-103.88984139543027,-104.1803365983069,-105.05313608748838,-105.6663696966134,-105.01014713849872,-104.23373626777902,-103.74759140703827,-103.49738397076726,-103.97441242216155,-103.52497994434088,-103.57764019398019,-104.12779849022627,-104.42615499114618,-104.70161246648058,-104.41161449998617,-105.34777942020446,-105.35821689572185,-105.24364656768739,-105.21792474016547,-105.94589808769524,-106.12620259448886,-106.13511120062321,-106.95395198278129,-106.10137186804786,-106.14171499665827,-106.53019319334999,-106.62403915962204,-106.4299942352809,-106.88091225596145,-107.13993052905425,-108.0020838570781,-108.0530122271739,-107.88620581943542,-108.09675955213606,-108.79174347175285,-109.5025642500259,-109.88793749595061,-109.75832605082542,-110.13954417733476,-109.81808900088072,-109.6063656792976,-109.60220678383484,-110.20680483663455,-109.86170985549688,-108.97795180277899,-108.3109517423436,-108.57750914804637,-108.64238026365638,-108.67852763365954,-108.13898361381143,-107.58239879645407,-107.78541960474104,-107.03862991696224,-107.81035838695243,-108.45394177455455,-107.51895610196516,-106.73451594961807,-106.73728488525376,-106.25488158361986,-106.50368066225201,-106.99102701619267,-107.92828514426947,-107.78750380547717,-108.0836061486043,-108.67174931429327,-108.16917263856158,-107.37801215378568,-107.65933994809166,-106.80980744352564,-106.13282965449616,-105.45050595095381,-105.43863384285942,-105.75542357005179,-106.01530630560592,-105.8248995617032,-106.43442830536515,-106.64781987387687,-107.12798986025155,-107.27879551844671,-106.99697663355619,-107.91645971126854,-108.32822802430019,-109.13625216810033,-109.50266079371795,-108.61901023937389,-108.98073350451887,-108.21440536901355,-108.43734075780958,-107.61828813795,-107.74981397483498,-108.42091297917068,-109.39130541263148,-109.17874194867909,-109.72411788953468,-109.94717466039583,-109.44684153748676,-110.13265525270253,-111.06594562716782,-111.68526703026146,-110.70338515471667,-109.9492299486883,-109.36313709523529,-109.30931974994019,-109.66362080676481,-108.80765711236745,-108.48985356511548,-107.57468747999519,-108.27194057544693,-107.65079186111689,-107.96277985256165,-108.09494675463066,-109.03083855751902,-109.32817620644346,-108.58696408616379,-109.27396627422422,-109.09379055257887,-108.19722128659487,-108.31825793115422,-107.54094346985221,-107.93527299631387,-108.07584379939362,-107.09410310955718,-107.93044570507482,-106.99215399194509,-106.73680635821074,-106.13964658044279,-105.36298106936738,-105.32693427288905,-104.75086254440248,-104.0054423417896,-103.66768551664427,-103.29723714804277,-104.1457864237018,-103.44021164625883,-102.76468082563952,-102.82475120481104,-103.53563915984705,-102.55199475586414,-102.37973447563127,-103.15091025782749,-103.44229122577235,-104.40824633371085,-104.01027053128928,-104.585648288019,-103.99879235681146,-103.8886679392308,-103.39655514154583,-102.41987304994836,-101.56976526044309,-101.49011312238872,-100.83664125576615,-100.75575122004375,-100.21395354252309,-100.52640592679381,-100.93695557303727,-101.55832807440311,-100.69057952100411,-100.91000716015697,-100.44684641715139,-100.96163651160896,-100.35133031615987,-99.87288871360943,-99.7477504578419,-99.06875800155103,-99.0897764917463,-99.95109097240493,-99.42425673594698,-98.66030863299966,-98.77057110192254,-97.90151516161859,-97.04075406352058,-96.88075195951387,-96.78421096503735,-95.94527170993388,-95.99753883201629,-95.81922522420064,-95.48439257964492,-95.97325566224754,-95.89070433890447,-95.97928050719202,-96.52411437407136,-95.90195619035512,-96.87209291057661,-97.49923182372004,-97.60246880399063,-96.9895151257515,-97.86111045489088,-98.52251561405137,-97.95962814381346,-97.31442397693172,-96.50729869119823,-96.24694366334006,-96.68941954011098,-97.14355898182839,-97.27051737066358,-96.34028307534754,-97.0995671628043,-97.67120559420437,-98.6645844890736,-97.6708921273239,-97.10945618478581,-96.21596016781405,-96.87064812192693,-96.01824601367116,-95.01964696543291,-94.13703588210046,-93.43296499969438,-92.73031494719908,-93.1873246463947,-92.94538863142952,-92.74292340967804,-93.36108066793531,-92.81303531397134,-91.88994009839371,-91.53703673137352,-92.3513688785024,-92.34917322359979,-91.99796541640535,-92.80783970095217,-92.40131591958925,-93.32549765054137,-92.67222700407729,-91.77663376927376,-91.3960688803345,-92.16539991553873,-91.90831645950675,-92.06074600294232,-92.31373786646873,-91.75703594600782,-90.76627014996484,-90.16242547426373,-90.71889571845531,-89.72735617915168,-89.60529079008847,-88.68140027392656,-88.49194369465113,-88.84029165888205,-88.90415475098416,-87.97135421028361,-88.56298535689712,-88.89949694368988,-88.24281677417457,-89.11371062230319,-89.69858097052202,-89.11186109948903,-88.25663826102391,-88.40782088646665,-87.79977651685476,-86.84697617869824,-85.85097697935998,-85.62661427026615,-85.63938868837431,-86.35225232411176,-85.88109565293416,-85.69910322362557,-86.2575381314382,-86.37179604638368,-85.99011283367872,-85.15759199438617,-85.67531052045524,-85.73888924717903,-86.08527392009273,-86.33703765599057,-85.58565646316856,-85.45078833820298,-86.28606396866962,-86.83648772584274,-86.04288038285449,-86.54080371372402,-87.51758867967874,-87.61853886581957,-87.0319269024767,-87.7778950734064,-88.61688935616985,-89.21421451866627,-89.65287622902542,-89.43415579199791,-89.59295689547434,-90.12313854461536,-89.58482634788379,-89.21609654696658,-89.7748201196082,-90.10770746180788,-90.32117701461539,-90.70090249599889,-90.41974323475733,-91.39557881606743,-91.67013442143798,-91.55419586133212,-91.34412692068145,-90.56097365776077,-90.30729548027739,-90.87818364426494,-91.41359103517607,-90.56046558870003,-90.69459769735113,-90.72177382744849,-91.68739823298529,-92.64513162663206,-93.57592910481617,-94.3545406088233,-94.96898870076984,-95.65090499771759,-96.54185271309689,-97.45648535713553,-96.95404924452305,-97.13019755622372,-97.84960442595184,-98.10633636079729,-98.60484558623284,-97.64461338380352,-96.76304323552176,-96.79480786528438,-95.98432910721749,-95.36437294306234,-95.26088760839775,-95.70199185609818,-95.90961403166875,-96.04706459585577,-95.38195555470884,-95.89806485688314,-96.6327021792531,-96.52722703339532,-95.9595612892881,-96.26205036323518,-96.01011683838442,-96.13365843845531,-96.3285597669892,-97.01318415766582,-96.75576560152695,-97.50968068791553,-98.27612109901384,-98.24979858566076,-98.30661487905309,-99.21307872934267,-99.77127393754199,-99.0710240281187,-98.50039567193016,-98.05790073703974,-98.54901191359386,-99.45685539860278,-100.36593011580408,-100.38798621483147,-101.33654281776398,-101.773059762083,-100.91537068877369,-101.4497061688453,-100.64873334858567,-100.69561399240047,-101.06807708600536,-101.6810340131633,-100.75396488793194,-100.62654685322195,-99.90158241987228,-98.99868171196431,-98.70890496531501,-98.46745139267296,-99.40753312781453,-98.67425466654822,-98.52748728729784,-98.26097414037213,-98.48735147388652,-97.66974432719871,-98.43288302933797,-99.10661407280713,-99.75077296700329,-100.45657056989148,-101.24267086666077,-100.77475207904354,-101.75588042801246,-101.14518389943987,-100.45334952836856,-101.40397955244407,-100.85703609092161,-100.79839372634888,-101.35369471274316,-100.7714452301152,-101.43523175735027,-102.43139142775908,-102.15546416677535,-102.56123556382954,-103.23878745967522,-104.12028362974524,-103.26900705927983,-102.89287235587835,-103.01844885852188,-103.86952019715682,-102.89876233460382,-103.23767061391845,-102.23804119881243,-101.99771323893219,-102.51343456376344,-102.70311296498403,-102.6735046133399,-101.67548448592424,-101.94241969566792,-101.82118866313249,-102.04682872537524,-102.69957290636376,-103.3078862465918,-103.61015921691433,-103.90480191260576,-103.10771691380069,-103.95864323526621,-103.671114415396,-104.19111368712038,-104.49412385281175,-104.05123802507296,-103.44764363998547,-103.52283308515325,-103.94097624067217,-103.52551238704473,-102.61054577631876,-101.8407654617913,-102.403967179358,-101.884838339407,-102.72437582490966,-103.3869984941557,-103.05750629398972,-103.70608978718519,-104.23308837041259,-105.01212640153244,-106.00224765995517,-105.17103690840304,-104.63634721748531,-105.04986974364147,-104.66938879946247,-105.65031203627586,-106.2736541107297,-105.38948632683605,-105.48495209729299,-105.5539515777491,-105.50850823055953,-105.41687561338767,-105.17986879870296,-105.64494355488569,-105.91577173909172,-106.62301234388724,-107.24802321521565,-106.25356655102223,-106.83315033698454,-107.67863794928417,-108.40021071769297,-108.71323633706197,-109.38821563823149,-109.55174882989377,-109.92015649890527,-109.21009910758585,-109.70634568249807,-109.00901075452566,-108.73865283560008,-109.61162172118202,-110.17136823805049,-109.31058465782553,-108.82366824802011,-108.13969437265769,-107.99957295227796,-107.45172336837277,-107.47223007539287,-107.73124571191147,-107.59179570293054,-107.24187708320096,-107.84106821846217,-107.93912323610857,-107.29579135309905,-107.27192784147337,-106.70724248234183,-106.74056625086814,-106.07383929146454,-105.89557607518509,-105.23538059834391,-105.79502706462517,-105.022368024569,-105.29539279080927,-105.69231138098985,-105.11555600073189,-105.10660178400576,-105.92518359841779,-105.49794401554391,-106.32068053074181,-106.63532434077933,-106.23454295424744,-106.95304778823629,-106.29959012335166,-106.18653590371832,-106.81157019501552,-106.4719431460835,-105.90271859942004,-105.33212054381147,-105.82443046197295,-105.83264957740903,-105.09055375261232,-105.73155284347013,-105.2434528786689,-105.99418365675956,-106.7696780860424,-106.31854071980342,-106.15017451392487,-106.02297585317865,-106.99151975894347,-106.45217476738617,-106.39759835088626,-106.17439706111327,-106.36185506358743,-106.77886633342132,-105.95874273357913,-106.44881188962609,-106.37399095203727,-106.59162760013714,-106.81372177554294,-107.56565841659904,-108.09017543913797,-107.10237145610154,-106.19588925829157,-105.42977947788313,-105.70815752912313,-105.18203439889476,-105.88469967665151,-105.74919382715598,-106.23545566853136,-106.27491725049913,-106.70064030168578,-107.62124908203259,-107.33784929523245,-106.58296488132328,-106.83974265027791,-106.74849841091782,-107.59323184285313,-106.87408251827583,-107.63693778589368,-107.5423102802597,-107.62059229006991,-107.80735709704459,-108.57096623722464,-107.6116014146246,-107.29921498289332,-106.87019755784422,-107.82753378106281,-107.84563589235768,-108.45908284187317,-109.31229732232168,-109.4599383296445,-109.68061166116968,-110.47843888169155,-110.62777162669227,-111.35941736958921,-112.10781145934016,-111.65391570329666,-112.08531203726307,-112.16740590054542,-112.88415197888389,-112.48685773601755,-112.13974233111367,-111.55954969814047,-112.50361439073458,-112.80633410206065,-112.10635429760441,-112.11880720872432,-111.49891438009217,-111.96465332293883,-112.40605314588174,-113.3987139458768,-112.98559816041961,-113.8647903543897,-114.54544306872413,-113.64424972841516,-112.98761745588854,-113.07515030121431,-112.27404286339879,-111.93516254704446,-111.56326457625255,-112.26990026934072,-111.46403851173818,-111.22100874735042,-112.05594719387591,-111.19381228042766,-111.94441101700068,-111.75890405476093,-112.66458825720474,-111.98292001383379,-112.6267872583121,-113.3996592387557,-113.47294140141457,-114.46845312230289,-113.7228698185645,-113.51440027775243,-112.93037050915882,-113.18227570550516,-113.21280474308878,-113.82562564499676,-114.28107873536646,-113.83223167108372,-113.90808484703302,-114.76584115903825,-115.60559322265908,-115.37132180342451,-116.10324007226154,-115.24287673039362,-116.06609018007293,-115.30043263174593,-116.10122529696673,-116.90489152958617,-116.0661296597682,-116.26835812767968,-116.36231974698603,-115.45908953575417,-116.14022181648761,-116.04555969545618,-116.50886701233685,-115.6481032804586,-116.13992714183405,-116.11715226434171,-117.00784744881094,-116.64228805340827,-115.84225854557008,-116.08032063441351,-115.57159966090694,-115.15493339812383,-115.99562003649771,-116.48393904138356,-117.04771701619029,-116.6504579205066,-116.14726053411141,-115.47366298502311,-115.91217647958547,-116.79202297283337,-116.20113920466974,-115.48634401569143,-116.0372203993611,-116.58787866309285,-116.93792948359624,-117.91183762717992,-117.75188636733219,-117.05604856694117,-117.0633707032539,-116.78940902138129,-115.80090134870261,-115.47095196554437,-115.3732424620539,-114.64344491576776,-114.11581475706771,-113.36749251605943,-113.72465248312801,-113.06612314330414,-112.24127818318084,-112.70985499210656,-111.76697098184377,-112.33248667838052,-112.57992112683132,-112.60088143311441,-113.46913609886542,-113.04818581743166,-112.69389495020732,-111.91183932358399,-112.77968110330403,-112.61429759860039,-113.1047401977703,-112.96264933468774,-113.06367170950398,-112.15161835867912,-113.1159746660851,-113.5610740147531,-113.25320984050632,-113.3005149657838,-112.80494940467179,-111.95559457223862,-111.59487754665315,-111.75597071973607,-111.4587838575244,-111.58913652645424,-111.17250101082027,-111.37348688300699,-111.35476801730692,-111.09260906185955,-110.38449850911275,-110.50459296163172,-110.70834109559655,-111.6662096385844,-110.87276591500267,-110.03144015930593,-109.315927375108,-109.57415804825723,-108.94850999489427,-108.23612943524495,-107.65328370500356,-107.63860103813931,-106.74435839476064,-107.00514503754675,-107.64699055533856,-107.79526465991512,-107.26847358839586,-107.09054003469646,-107.81900976179168,-108.48603869276121,-109.21543949842453,-109.11592564918101,-109.00937044760212,-108.60837859427556,-108.68917673360556,-108.40506007708609,-107.46226030262187,-107.37938840081915,-106.95754423830658,-106.75998363178223,-107.6812762026675,-108.44015855528414,-108.57775636995211,-109.57207040768117,-109.1886694044806,-109.82961643207818,-109.39228927344084,-109.98020815942436,-110.27179732639343,-109.50978886708617,-110.39845667406917,-109.84295040555298,-109.44154885550961,-109.3549236068502,-108.7448855531402,-108.59833622165024,-108.02010683016852,-108.23857648065314,-108.79945735028014,-108.89809931535274,-108.64217497687787,-109.3701954819262,-109.83660928625613,-109.43585875909775,-110.3294807500206,-110.65566936507821,-111.24863530136645,-111.16758745349944,-110.82521122088656,-110.69522275822237,-110.06868617236614,-110.94826607126743,-110.00049266498536,-109.64635955030099,-110.47416975675151,-109.65167861664668,-110.28587858146057,-110.4126739804633,-109.88065873691812,-110.3879113229923,-110.61103686643764,-111.24498501839116,-110.34403966227546,-109.7408099505119,-109.14479809440672,-108.70528780063614,-109.67051494214684,-109.26142130652443,-108.45463275257498,-108.64287455054,-108.11718813423067,-108.41150866588578,-108.64272808237001,-107.81907387869433,-107.87910271435976,-108.7923473091796,-107.95299200573936,-108.54704188508913,-108.9784354059957,-108.43857205985114,-108.67577594053,-108.30122096790001,-107.99371313862503,-108.60777103714645,-108.59451964963228,-108.62947730487213,-108.94240273023024,-109.51542569836602,-110.2552842758596,-110.07248299475759,-110.72939417697489,-109.7762546595186,-108.89152599824592,-109.68744705151767,-109.7673345268704,-110.09990706667304,-111.05402348563075,-111.14720931230113,-111.28480411926284,-111.59588217129931,-110.69347788253799,-111.62111223582178,-111.16277054697275,-111.08634547004476,-110.5414141821675,-110.70252190623432,-110.32802006555721,-110.18328144587576,-109.8686308269389,-108.9407649077475,-108.32618895312771,-108.86793955275789,-109.5676179737784,-110.35446551442146,-109.70984761277214,-108.96369967330247,-109.55013237567618,-109.62928495928645,-109.23224724875763,-109.50435103848577,-110.15569635760039,-110.71692196745425,-110.81985167600214,-110.84838923625648,-111.21758310310543,-110.4821870722808,-110.59230688912794,-110.94562709890306,-110.45358221651986,-109.7358737247996,-109.00269691785797,-108.13984828442335,-107.8386056907475,-107.48294399725273,-107.13305233977735,-107.95314668631181,-107.37595471739769,-107.1649544578977,-106.70418619504198,-106.3674253616482,-105.56487072678283,-105.74852622579783,-105.85911525133997,-104.99032439151779,-104.35028058057651,-104.69487105403095,-104.75213999859989,-104.81490996060893,-104.08944508107379,-104.23090898664668,-104.69855007110164,-104.4125304389745,-105.00313640153036,-105.34465919807553,-105.51104801381007,-105.50615618471056,-104.84601514041424,-105.30912243761122,-105.24147129943594,-106.10132620669901,-105.67444613203406,-106.58072962192819,-106.2626394261606,-107.26126869395375,-106.29191562766209,-106.96375124296173,-107.03694729413837,-107.92371688177809,-108.53128439653665,-108.57091849809512,-109.44593181973323,-109.5208247457631,-108.98810432851315,-109.66866332106292,-109.32584590697661,-109.57706761453301,-110.15926669398323,-109.25162893999368,-109.66390840290114,-109.38117963867262,-110.26211793767288,-110.33020864706486,-110.43338692141697,-110.43710479233414,-109.8839062298648,-110.65711368340999,-110.91909192223102,-111.05286782840267,-110.32398960087448,-110.45950826490298,-111.07908646063879,-110.60140456724912,-110.94478389061987,-110.21475296327844,-110.42816602392122,-109.47243277728558,-109.68283954728395,-109.595056113787,-109.49804564705119,-110.38890528865159,-111.0650062118657,-110.32209517201409,-111.07438467117026,-111.55113199912012,-111.14941449416801,-111.42341986903921,-111.88424114370719,-112.51517141843215,-113.09866115869954,-113.75439353426918,-113.59693503472954,-113.51444629859179,-112.99322712095454,-113.2810095557943,-113.47329149069265,-112.9262503888458,-112.03450825344771,-111.27367147989571,-111.39902559667826,-111.90307243261486,-111.00605354877189,-110.75452333269641,-111.01746825594455,-110.29650301439688,-109.50302870571613,-110.43115881131962,-109.99593481095508,-110.38134785462171,-111.05463391821831,-110.39677931554615,-110.56506130611524,-110.20113924192265,-109.62969964789227,-109.7858532750979,-110.44507857738063,-111.40553343109787,-110.63307994324714,-110.08029493829235,-109.34592490643263,-108.78282993892208,-109.06632314249873,-108.30955000035465,-109.22962173819542,-109.0203339154832,-109.8182402686216,-109.33247469877824,-109.95908302208409,-109.90922123007476,-110.41759839002043,-110.5815996453166,-110.74028090154752,-110.81248698802665,-110.14823372522369,-109.53387141413987,-110.0871103242971,-110.62368465028703,-111.359005744569,-110.93402775935829,-110.13057189481333,-109.58053593849763,-108.94971991004422,-108.66580661619082,-107.88663997966796,-107.35970276314765,-107.94830405386165,-108.30527609866112,-108.88738289754838,-108.39716995693743,-107.78966510109603,-106.90404827427119,-106.17783110914752,-106.04688293719664,-106.05882578762248,-106.41822002874687,-106.50292464764789,-107.33715827576816,-107.50175441754982,-107.79783529322594,-107.37908748723567,-107.20120999310166,-106.39264202537015,-106.8568001142703,-105.86090234527364,-106.1197495968081,-106.09632552647963,-105.79800729267299,-106.33722283458337,-106.17065501213074,-105.53240018384531,-104.8962933528237,-105.85242129769176,-106.73618291784078,-106.2926041665487,-106.74201982701197,-106.41467053862289,-106.41057185688987,-106.58873826544732,-107.47170457057655,-106.81562472041696,-105.95440295618027,-105.18678076891229,-104.88271733000875,-105.24798454577103,-105.5326886982657,-104.70384205831215,-103.96377864060923,-103.55809370568022,-104.26910884678364,-105.23778907209635,-105.92640289058909,-105.46178773231804,-106.07672840263695,-106.46442793542519,-106.2676438423805,-106.69872925477102,-106.76490438962355,-107.03148343134671,-107.10893301805481,-106.89510732423514,-107.01103769615293,-107.6348136938177,-106.81484577711672,-106.53614581702277,-107.16435547871515,-107.5698645208031,-107.59776818845421,-107.56112632574514,-106.96082018548623,-106.77225155523047,-107.15327466558665,-107.58747885422781,-106.91057231556624,-106.20503871422261,-105.7769131148234,-105.70866657281294,-105.05709393788129,-104.22781399916857,-104.98935337085277,-105.42910799011588,-106.34233205579221,-105.92370482208207,-106.56007919600233,-106.46441634045914,-107.24876700667664,-107.90306076873094,-108.02070961333811,-108.33811349887401,-108.26024206588045,-108.06445679953322,-107.3971639671363,-106.60340402508155,-107.45266327541322,-106.64436552021652,-106.56957963760942,-107.52958435332403,-106.83775326842442,-106.2689395993948,-106.13825025921687,-106.7329589095898,-107.33501431392506,-107.01306941453367,-106.201749808155,-106.4689912297763,-105.79436825821176,-106.00809758715332,-106.30853028642014,-105.8992523169145,-105.56165563734248,-105.60332873091102,-104.95832422375679,-105.24134149774909,-105.7889539077878,-105.2144787334837,-105.46446662722155,-105.86807495448738,-105.99302163673565,-105.391653269995,-106.31621653446928,-106.27760367421433,-106.1939903665334,-106.15267559327185,-105.60211114166304,-104.74887032527477,-103.86602285597473,-103.22804035851732,-103.89900546660647,-102.93693775590509,-103.39209272759035,-103.35737943323329,-103.13843702711165,-102.29907523375005,-101.87499477760866,-102.29250296857208,-101.8381853303872,-102.08464443217963,-102.66408252576366,-103.08943554619327,-102.48415132286027,-103.37043597875163,-102.64192589651793,-103.07421380234882,-102.7215865822509,-103.49933215137571,-102.84749441966414,-103.39255253598094,-102.63833302771673,-103.27447959175333,-103.00319200893864,-103.50440631061792,-104.24738252954558,-103.29667198518291,-102.7574057020247,-103.39036910654977,-104.05872572539374,-104.36549044866115,-103.51141382241622,-102.74810636602342,-102.3508243248798,-102.63730280380696,-102.26213124440983,-102.59291971148923,-102.84118641074747,-103.8016650187783,-103.74678504094481,-103.79413320310414,-103.1160658178851,-102.58033500937745,-103.37763170152903,-104.02582247182727,-104.5142571600154,-105.39232959644869,-106.22357803490013,-106.51554559636861,-107.17989554908127,-107.27848346484825,-107.39135737298056,-107.64410085743293,-107.11978279380128,-106.36000551888719,-106.86371737765148,-106.37668419489637,-107.16668159561232,-107.92692897515371,-108.32346712704748,-108.22808497399092,-108.70048213656992,-108.58965537464246,-108.06148918066174,-107.338066034019,-106.92682629730552,-106.57386129163206,-106.53302546218038,-106.58526671957225,-105.66459119226784,-105.44045749912038,-105.48651535855606,-104.6639981274493,-104.52697629947215,-104.34604520676658,-103.77991008758545,-103.68917669029906,-103.68223135964945,-104.15600105142221,-104.55518497945741,-104.68718326278031,-104.145099719055,-105.06077828025445,-104.88179682707414,-104.26055665221065,-104.85040108952671,-105.1101412633434,-105.72469285642728,-106.69991111569107,-107.10501528251916,-106.78636712068692,-107.60180887579918,-106.78049864806235,-107.08169182948768,-106.89228727063164,-106.81172714848071,-106.73383896052837,-106.86132466606796,-106.96286259312183,-107.52389865601435,-108.11025880090892,-108.44490325730294,-109.36333262594417,-109.44982935395092,-108.6625219262205,-107.79901212826371,-107.82440309878439,-108.2595043904148,-108.85440823994577,-108.29287821659818,-108.05673920642585,-109.047901539132,-108.61917329672724,-109.05327904038131,-109.8680670009926,-109.73342303978279,-109.04678924242035,-109.56116668507457,-109.64364334242418,-109.74035607138649,-109.39436925435439,-109.38429573411122,-108.8606022070162,-108.89934203960001,-108.82765589142218,-109.14202238991857,-108.73990346537903,-107.99097994202748,-107.42825951892883,-108.00259247561917,-107.08507193345577,-106.99735552398488,-107.85847411723807,-107.8938130158931,-108.67428177502006,-109.66044869273901,-110.12278936663643,-109.77349291741848,-109.44773978693411,-109.70129611017182,-110.62112678587437,-111.39356553507969,-111.49120923876762,-112.20404485799372,-111.9734767517075,-111.6413497319445,-110.64174146670848,-111.44532672362402,-110.89442555233836,-110.84930767025799,-110.8452358841896,-110.34006794029847,-109.48117346828803,-110.34818895254284,-110.11560327326879,-109.28680893639103,-109.04955381620675,-108.48940718313679,-107.70734969805926,-108.09155629202724,-107.39346579927951,-108.37215983634815,-108.5684259259142,-107.68551641330123,-107.11999244336039,-107.29551822133362,-108.23792111920193,-108.18629708047956,-108.4755989741534,-107.56404059426859,-107.0638706269674,-106.28281576186419,-105.3991404385306,-105.39549152040854,-105.71271516708657,-105.92821810906753,-105.89863380696625,-105.9717670828104,-105.58855076925829,-105.7851160634309,-105.67806001799181,-105.35138389933854,-105.30972653953359,-106.17147028399631,-105.66042197868228,-105.6814610552974,-106.37152606993914,-105.52946914220229,-105.34577268455178,-104.69549340428784,-103.89790234994143,-104.46719234483317,-104.77344933478162,-105.04684535693377,-104.05110150901601,-104.40921427356079,-105.24609167128801,-105.56805028440431,-104.9732145764865,-104.99801071360707,-105.81034530000761,-106.50759910838678,-106.06606200989336,-106.60744228726253,-107.12855890532956,-107.3188840909861,-107.45323350001127,-106.94207161711529,-106.61974399536848,-106.9413049723953,-106.71479226835072,-106.83740084944293,-107.35194200277328,-107.03039295785129,-107.63331093639135,-108.42132175387815,-108.87429305631667,-109.45374022377655,-108.93749038083479,-109.1593875894323,-110.08876835834235,-110.21295780874789,-109.66366471163929,-110.19932484952733,-110.12644124822691,-110.033715528436,-109.22090294817463,-109.53525804076344,-109.78014937322587,-110.3210406047292,-110.57608660124242,-109.66705995984375,-109.66226116241887,-109.0559455039911,-109.94755834667012,-110.94753287592903,-111.30492730485275,-110.47385211242363,-109.75390423135832,-109.21301954472438,-109.88744621817023,-109.31387526867911,-108.46488998970017,-108.36042692977935,-109.11374812759459,-109.43187722703442,-108.78026535920799,-108.29296458000317,-107.93788485461846,-107.88033101940528,-106.94943031668663,-106.75675901398063,-106.90016186237335,-106.11131144454703,-105.96871785633266,-105.38525148760527,-104.67698258906603,-105.21130963368341,-104.33586546173319,-103.45244707493111,-102.94968361780047,-103.31901349732652,-102.32528125774115,-102.91689920285717,-102.135452773422,-101.90802112175152,-101.33655689563602,-102.13253603642806,-102.34773640846834,-102.21770653547719,-101.8461874499917,-101.34651381336153,-100.70300495624542,-100.41893760999665,-100.8786015282385,-101.27789059281349,-101.16782525461167,-100.31132298195735,-100.92629256797954,-100.88397463457659,-100.59354330506176,-99.63171297870576,-100.35396867804229,-99.48513450333849,-98.84115057671443,-98.98744651302695,-98.16136836819351,-97.43516000639647,-96.58070295723155,-97.01432532258332,-97.04916619183496,-97.89401560276747,-98.53868200955912,-99.0599165763706,-99.87419607909396,-99.60450475011021,-100.39465239830315,-100.30308943754062,-100.78344004740939,-100.90993853332475,-101.25465570716187,-100.64808661770076,-100.01518562063575,-100.51932422071695,-100.20514846919104,-100.6303018797189,-101.10005223192275,-100.69185007084161,-100.26820731023327,-100.61676655896008,-100.18903888156638,-99.76884104311466,-99.590775962919,-99.06362268514931,-99.64557190192863,-98.75276556285098,-99.28119356930256,-100.20067195268348,-100.43344861315563,-101.33259519236162,-100.74857971025631,-100.04827424371615,-99.11268796632066,-99.84358211699873,-99.3739931625314,-98.6409834753722,-98.99362115981057,-98.66570133250207,-97.93962276214734,-97.68358474643901,-96.97617046674713,-97.00902978144586,-96.57229488762096,-97.31961212446913,-97.36202350119129,-96.88435082370415,-97.88194744009525,-97.88497614720836,-98.86993562243879,-99.02519110497087,-98.14982088562101,-98.50051755458117,-98.54531816858798,-99.37316370522603,-98.69851295184344,-98.57711236784235,-98.17168933153152,-98.78837428893894,-99.26329846167937,-98.6651218244806,-98.90521024726331,-99.16512314369902,-98.59671616414562,-97.8454152145423,-97.77032879227772,-97.5234592105262,-98.32034857943654,-98.5491321766749,-98.88093861797825,-98.07837199699134,-98.0198919554241,-98.19692718749866,-99.01708557922393,-98.37732656672597,-98.25650636292994,-98.47401216533035,-97.94652100559324,-98.2965539265424,-99.05787133006379,-99.33449393697083,-99.00617867242545,-98.79767881100997,-98.82344521395862,-99.00737972743809,-99.22724632918835,-99.23964182008058,-98.80574774276465,-98.01278044562787,-98.50803996156901,-97.70909449039027,-98.11810795497149,-98.70442500011995,-98.29406018229201,-97.92709888983518,-98.57722812425345,-98.20060646953061,-98.79744746768847,-99.30133565003052,-99.82952739857137,-100.63580233510584,-99.96244597015902,-100.39932516496629,-99.9006588710472,-99.67462397972122,-99.77155988756567,-99.86837540660053,-100.67500935029238,-101.6578226312995,-102.59826363390312,-102.37741887336597,-102.67441060114652,-103.26351042231545,-103.29865130782127,-103.8561167367734,-104.84330026898533,-104.93566285306588,-105.36817310703918,-105.24678661627695,-105.06622754689306,-105.19667803449556,-104.24417315935716,-104.26020439062268,-104.08941725175828,-103.7833124329336,-104.28309629578143,-104.01598390843719,-103.53269960777834,-103.30881330370903,-104.15128945792094,-104.44812025874853,-104.80191157152876,-104.04281351715326,-104.14073776407167,-105.05872836755589,-105.79606667300686,-106.50780734419823,-106.23490923643112,-106.97594618890435,-107.37716657621786,-107.59590942645445,-108.46410960005596,-108.58195497654378,-107.92081957124174,-108.5838703927584,-109.39431832358241,-108.47923880023882,-108.31414773873985,-108.43194211367518,-109.38750530546531,-108.58589315693825,-109.53007906954736,-109.32363136205822,-110.22853095829487,-110.56402978952974,-110.3927472573705,-111.11079666297883,-110.40850955899805,-110.80061539821327,-109.93128039641306,-109.05328055564314,-108.1003381954506,-108.34160673106089,-107.38101858086884,-106.57163033960387,-106.7360083241947,-106.03621392790228,-106.47433875268325,-106.34468253934756,-105.58451909990981,-106.26605335669592,-106.64144132798538,-106.7929442753084,-106.12945281155407,-106.54681379534304,-107.52893611323088,-106.89363567484543,-106.64565137401223,-107.48844584496692,-107.87861901894212,-107.88839059462771,-108.6071782419458,-107.86778185237199,-107.00753751769662,-106.75816356530413,-106.04152562329546,-106.82722558360547,-107.31382759287953,-107.93142855260521,-107.8460605177097,-108.09726358903572,-108.99814581125975,-109.11345934960991,-108.6186686954461,-108.50340624852106,-108.89106887253001,-109.00943547300994,-108.44175440026447,-109.05707144364715,-109.1679082242772,-108.66024837037548,-108.36559361126274,-108.00276387669146,-108.37857779022306,-108.49019396910444,-108.28753518965095,-108.11070569232106,-107.44666845910251,-106.91466052969918,-106.40338670322672,-106.27905527222902,-105.86604829644784,-105.83962087053806,-105.25216297386214,-105.59753107326105,-105.04434517910704,-104.39318920997903,-103.71177863748744,-102.74337554676458,-101.97661322075874,-101.18851943407208,-102.17703404184431,-101.26900126691908,-100.3949901452288,-100.77959153568372,-101.38297488447279,-101.21129727642983,-101.05767977191135,-100.59790920931846,-99.91217271564528,-100.15001027937979,-99.31438180617988,-99.94131008395925,-100.34347839467227,-101.11038143979385,-100.9052896196954,-99.95009875344113,-99.5603746548295,-99.01268181251362,-98.60476718610153,-99.22890365729108,-98.28306649299338,-98.81522037042305,-99.33909197989851,-99.16335042053834,-99.89173392672092,-99.98275733133778,-99.8344586524181,-99.2121412041597,-99.4596271137707,-99.30991838313639,-99.32303348276764,-99.04344301950186,-99.78720188094303,-100.53705379692838,-100.79190404433757,-101.21784972213209,-101.25618296442553,-100.99737918516621,-100.25305367959663,-100.81313319085166,-101.52630580496043,-102.35002976609394,-102.52413063496351,-101.63802897045389,-101.50949072511867,-100.56433564145118,-100.55124026723206,-101.11770651815459,-100.77765972632915,-101.10739635396749,-101.79071364132687,-102.78877664869651,-102.3900848343037,-101.44350715400651,-102.3123887963593,-102.2937742988579,-102.38554362952709,-103.38232639245689,-103.61876785522327,-103.48179480014369,-103.07348511787131,-103.69819621229544,-103.6819776725024,-104.41618605377153,-104.83043481828645,-105.10530214058235,-105.40139522450045,-104.50729893846437,-104.57453098101541,-103.72463183104992,-104.32417159946635,-103.40886907931417,-102.60619335575029,-101.92268713610247,-101.56690740818158,-102.47393654333428,-103.26872479263693,-104.04193529114127,-103.50120400963351,-103.0299148093909,-103.03680974803865,-102.38358542183414,-102.5174107174389,-101.63499779440463,-102.58592336438596,-102.09565558517352,-102.48756897309795,-102.56624235631898,-102.35677905520424,-102.04902030294761,-102.05984090873972,-101.83064705645666,-101.37632463453338,-101.7812262205407,-102.10423614829779,-102.7492788839154,-102.30904459906742,-101.33502985816449,-101.67247950984165,-100.67424179520458,-101.5092577394098,-100.91985913552344,-101.78714852174744,-102.31598116084933,-103.21863140864298,-102.28052423661575,-101.42675069952384,-100.51325786393136,-99.66140011884272,-99.22603329177946,-99.81020917231217,-99.6905315942131,-99.40956576075405,-99.16601624339819,-98.57430380908772,-99.01401613652706,-99.0960795301944,-99.7446828018874,-99.6459891134873,-98.9349895264022,-98.95032617915422,-98.9878947022371,-99.3348517823033,-99.34983948618174,-98.58390520652756,-99.36677728733048,-99.84895909298211,-99.25352849252522,-99.39822056517005,-99.98350238520652,-99.06440683547407,-98.70106012513861,-97.71826932625845,-97.91399041935802,-98.62080733338371,-99.01903086807579,-99.44713282259181,-100.06526700919494,-99.10101775778458,-99.15924894763157,-98.78548972215503,-98.07830128027126,-97.95329144084826,-97.96004151972011,-98.81984524568543,-98.32658115681261,-98.0713104242459,-97.27697820216417,-97.79143196763471,-97.36779185803607,-96.69671264337376,-96.28254765691236,-96.28600076166913,-95.43666222319007,-95.95822408329695,-96.79160389490426,-96.83214191580191,-97.46362131508067,-96.73265731148422,-96.02974217943847,-96.24672608962283,-96.09605035511777,-95.30159685062245,-95.57152944197878,-95.32896264223382,-95.12804156029597,-95.43148381542414,-95.07493829075247,-95.09760552598163,-94.30324015533552,-93.66421962669119,-94.11282233335078,-94.23594757216051,-93.62731828913093,-93.94889128254727,-94.43740182323381,-95.02378408424556,-95.25995069928467,-95.057811611332,-94.20592444296926,-94.04954306269065,-93.25188025599346,-92.44303408358246,-92.41367013379931,-92.90266325324774,-92.04387087281793,-92.80005124909803,-92.55844639334828,-92.01491077942774,-92.11876350315288,-92.76397049566731,-92.34986951481551,-92.58958500158042,-93.33682178519666,-93.73430795455351,-94.66573244333267,-94.72590536577627,-94.41595518682152,-94.40724182827398,-94.55542597081512,-95.42783868685365,-94.43573873443529,-95.40804624883458,-94.96656926395372,-94.88638653233647,-95.14464573655277,-94.51608685404062,-93.8453340800479,-93.34616932971403,-94.14229601854458,-94.20279477210715,-93.79340318357572,-94.35286826547235,-95.08959830971435,-94.25793386157602,-94.82646158430725,-94.61651430046186,-95.54146692575887,-96.45372295938432,-96.55558349611238,-95.71904070395976,-94.93327493965626,-94.22642630664632,-94.44077009661123,-93.99785054754466,-93.65690018376336,-94.49411057215184,-94.28828832833096,-94.67689157789573,-94.36911519104615,-94.52731834957376,-93.70623286673799,-93.63772459793836,-94.12682024668902,-94.69188994914293,-94.18666716385633,-94.63770382711664,-94.86769991973415,-95.25536529021338,-95.00589739624411,-94.56698000244796,-94.25945833092555,-94.89107579085976,-93.94809357402846,-93.37370601529256,-94.13888788409531,-94.79461122583598,-94.68827323010191,-94.43136965995654,-93.6399592985399,-93.46871196804568,-93.66086243232712,-94.59243163559586,-94.97908743657172,-95.72432478098199,-95.39856997830793,-95.7034464306198,-96.68283899966627,-95.99242150830105,-95.82364710466936,-96.30397923151031,-97.18245586100966,-97.70431653270498,-97.33473621867597,-97.55913805356249,-98.44262710027397,-97.70676741935313,-97.4107641694136,-97.81988667370752,-96.85849155765027,-97.25091975135729,-96.85942466976121,-97.8161415560171,-97.29880753858015,-96.97261866554618,-96.11837464384735,-96.98731954721734,-97.9300109623,-97.63520473847166,-96.74840663559735,-95.8319180929102,-95.46770074032247,-96.20825430331752,-95.35962358443066,-96.22250631917268,-96.14265258191153,-96.1530113867484,-96.80039323028177,-96.22868108330294,-97.20542084611952,-97.68342137290165,-98.10857736878097,-97.66201749723405,-97.07087585097179,-97.1061428510584,-97.79946719203144,-98.25843152729794,-99.23533578962088,-99.66402320424095,-98.90187003090978,-99.4770189509727,-100.39257243322209,-99.56902196723968,-100.4878213009797,-100.90948187187314,-101.18162759346887,-101.653100986965,-102.17971052415669,-102.86647983919829,-102.71755860559642,-103.07573447842151,-102.23968887934461,-101.30445985076949,-102.08732584351674,-103.06230727210641,-102.83584833098575,-103.40526343369856,-102.76420667022467,-103.55402839789167,-102.70178027683869,-103.63085961667821,-103.05480822222307,-103.56306326249614,-103.7214829986915,-104.12840320263058,-103.61792367743328,-104.20383004751056,-103.43555603828281,-104.05427192617208,-104.32543592061847,-104.4090464161709,-104.3699880107306,-103.44916776614264,-102.53171767666936,-103.30739574786276,-103.59823646303266,-103.0993697559461,-103.25997175741941,-102.99386306293309,-102.22737769503146,-102.45971860643476,-102.39361502742395,-102.16285645356402,-101.71619072090834,-102.612916582264,-101.96349636372179,-102.94599205674604,-103.24351361906156,-103.1537050451152,-102.3640392338857,-101.42092192638665,-100.52477085078135,-101.17518439143896,-100.80137736350298,-101.57745980005711,-102.10542694712058,-102.34757348662242,-101.55475552007556,-102.54798311647028,-103.00400040997192,-102.96280635986477,-102.10231745522469,-102.52304821368307,-102.30060791689903,-102.08663119748235,-101.0885017379187,-100.63155440846458,-100.69895259803161,-101.0643515046686,-101.63200910389423,-100.72163239261135,-99.83321424014866,-100.41086599556729,-99.80435239616781,-99.20971625298262,-99.13200331060216,-98.40573772788048,-99.11181659484282,-99.2948164427653,-99.14966506604105,-99.47071193391457,-99.333768599201,-98.34065424418077,-99.09500517463312,-99.23320044903085,-99.09942904254422,-98.228245832026,-98.59807706438005,-98.90624018153176,-98.99750961270183,-98.99725964711979,-98.09739428246394,-97.77910406095907,-97.6983108879067,-97.28610992385074,-97.45863019861281,-97.95533240633085,-97.70907118916512,-98.37904140120372,-98.37793077668175,-99.12864862103015,-98.77790206670761,-98.89184324396774,-98.46258187107742,-98.5056435749866,-98.29151049954817,-97.63351554144174,-98.15156723977998,-97.38200784707442,-97.2600552723743,-97.8296926910989,-97.57808012049645,-97.5233563715592,-96.9363904139027,-96.26549705024809,-96.69515096955001,-96.5595139702782,-96.80440962687135,-96.5574911753647,-95.593031514436,-94.9172850525938,-95.04977799905464,-94.09151577670127,-93.60770822642371,-93.69547592336312,-94.01148000871763,-94.1639594999142,-93.23607529979199,-92.29328604741022,-92.90075062960386,-93.08521865541115,-93.94879863411188,-93.84346809238195,-94.04130208818242,-94.1519512203522,-94.23102646041662,-93.59979010652751,-92.97980941133574,-93.85003915755078,-93.93176061380655,-93.85302681382746,-94.26836106088012,-93.98374274652451,-94.45534967677668,-94.63347777025774,-95.43758806632832,-96.43653788650408,-95.5031364262104,-94.67573399655521,-94.59278683923185,-95.56561732059345,-96.1017319331877,-96.82311009801924,-97.19859917229041,-97.80812926031649,-98.31560471700504,-98.45824557216838,-98.37029233248904,-99.21093999547884,-100.09172840416431,-99.66513819573447,-99.2891786498949,-99.2386206779629,-98.51942440634593,-97.88510739756748,-98.09524690266699,-99.0537367882207,-99.62977563589811,-100.31584383454174,-100.76849424093962,-100.8987593818456,-100.58466809988022,-99.84385658521205,-99.39856813382357,-99.15875633712858,-98.63864030595869,-97.68860845593736,-96.83504762779921,-95.8944913605228,-95.35813367366791,-94.4481161730364,-93.85365063371137,-93.0026090638712,-92.89370715525001,-93.07032598508522,-93.03821753989905,-93.02891490608454,-92.46641527442262,-93.10596169345081,-93.70062668249011,-93.86964175198227,-94.67897780612111,-93.70287579949945,-94.53747406648472,-95.16785306157544,-94.40471909707412,-94.24872311670333,-95.17793999472633,-94.27270199684426,-95.09013490658253,-94.30261971754953,-93.73695533210412,-93.8374215173535,-93.81601359089836,-94.28635483887047,-93.56093313684687,-92.69503779383376,-92.29904287029058,-92.53004627814516,-92.9549071509391,-92.78296654392034,-92.31295824563131,-91.98222369654104,-92.85716290120035,-92.60827334690839,-92.93829103279859,-92.9859837833792,-92.89973909594119,-92.8236203044653,-92.54252309771255,-92.56516464240849,-93.02337879594415,-92.2425732659176,-92.96857490250841,-92.60543552972376,-92.23399936500937,-92.01340347947553,-91.71952656051144,-91.06964263971895,-90.6406961157918,-91.23245213320479,-91.2710448326543,-91.46784216538072,-91.03941921889782,-90.37162305787206,-90.02980632148683,-89.18502942332998,-88.8581237597391,-88.11339544085786,-88.18312620464712,-87.38116774242371,-87.55031332932413,-87.23147608153522,-86.60797334741801,-86.9164792993106,-85.93693964695558,-86.63587705977261,-86.76982002193108,-87.75087130209431,-86.79156257677823,-86.92769840080291,-87.32715752301738,-87.55004511959851,-86.75416174530983,-85.88040852593258,-85.50423591025174,-85.19022487476468,-86.09603128908202,-85.21563921216875,-85.12813344085589,-85.4387048818171,-85.51057279948145,-84.88841950939968,-84.49895046977326,-84.79937952011824,-85.49842301942408,-86.49765789322555,-87.2046635276638,-87.82723650243133,-88.15352214034647,-88.86093567498028,-89.0270253866911,-88.06763711199164,-88.06006665248424,-87.39216942200437,-88.0962490751408,-89.03580835647881,-88.44967441726476,-89.0650405944325,-88.26786722615361,-87.74090980133042,-87.54012598050758,-88.07991447346285,-87.61741330428049,-87.83671992365271,-88.68095811456442,-89.1580711118877,-90.08633480686694,-89.34037846280262,-89.77846872387454,-89.70788132911548,-89.5625593084842,-88.97228656336665,-89.1890566656366,-88.6299985810183,-87.78320812340826,-88.77044947771356,-88.09851235663518,-88.36405495600775,-88.3917207387276,-88.41120730200782,-88.42226304579526,-88.570006581489,-88.83289393410087,-89.75321836816147,-89.51425176719204,-90.49602024909109,-90.9945903471671,-90.05323623307049,-89.37709542177618,-90.08040963858366,-91.05477809207514,-91.36212499765679,-91.41180583788082,-91.37279115896672,-91.13350342866033,-90.83819929277524,-90.83852921891958,-91.45420983387157,-90.47631649998948,-90.06691646110266,-89.8670055042021,-89.93953037215397,-90.25344278477132,-89.73227301891893,-90.02399403834715,-89.66005656216294,-88.9668761244975,-88.84035800490528,-89.37709235632792,-90.02623947896063,-89.03243855014443,-89.68338835937902,-89.77856002282351,-88.90106400707737,-87.92586940899491,-87.66144330706447,-88.54732669983059,-87.71357950847596,-87.65281113563105,-87.34635759936646,-87.63157762819901,-88.37425655964762,-87.97928375983611,-88.69318012474105,-88.42657560901716,-88.96871372265741,-89.23314334033057,-88.41786773642525,-87.70532652782276,-86.88574630673975,-87.08120282134041,-87.45387263270095,-87.02342687919736,-86.1888998132199,-86.53231905819848,-87.10413636965677,-86.43066955730319,-85.80186383984983,-85.27643542690203,-84.58241822384298,-83.73503204155713,-84.04272520495579,-83.9845731141977,-83.06058370647952,-82.2209471729584,-82.51581138838083,-82.28894365951419,-82.81957916775718,-83.15857386216521,-82.69582376349717,-83.04613367514685,-83.11804110789672,-82.95875114900991,-83.02985587110743,-83.4910403136164,-83.53834145423025,-82.55597325786948,-82.36288720835,-81.66176109435037,-80.96984455361962,-80.87592202192172,-80.4126442708075,-80.82327514514327,-81.02834286121652,-80.06728893145919,-79.16081227269024,-78.66199684515595,-77.71434222953394,-78.51724458439276,-78.3983742846176,-77.50270195538178,-77.191100908909,-77.1716555710882,-78.1510340552777,-77.24176365416497,-77.23139761621132,-76.78187941014767,-76.14984486903995,-75.83194375270978,-76.25292130745947,-76.3069142983295,-75.88949004001915,-75.589965430554,-74.95908724702895,-74.67493479326367,-75.53971725748852,-75.33831610810012,-74.64759652176872,-74.43215870391577,-73.62182871531695,-74.37596082407981,-74.47785382391885,-75.20586850494146,-76.14741152105853,-75.70885640429333,-74.75278287054971,-75.66055047744885,-74.80474933190271,-74.91170842666179,-74.6119432002306,-74.90444171242416,-74.61805584141985,-74.15063373697922,-75.09601589571685,-75.09005062608048,-75.9966208213009,-76.35077181458473,-75.8034613118507,-76.59869743697345,-76.39376308955252,-76.48721131216735,-76.38216677308083,-76.99894884973764,-76.24443660862744,-75.32153357658535,-75.79583961470053,-76.26400968106464,-76.94191247224808,-77.645730514545,-77.25666412292048,-77.6287437430583,-76.73215074650943,-76.8433371251449,-76.71067592315376,-77.61566879041493,-77.34308184916154,-77.90986822033301,-78.00968557363376,-77.62584971217439,-76.8423648555763,-76.33962691901252,-75.82817386137322,-76.25639490690082,-76.64696787623689,-75.9640605035238,-75.17912652902305,-75.78058960055932,-75.76515989005566,-76.75868124468252,-75.7737715607509,-74.81029468076304,-74.07427974045277,-74.2680009403266,-74.0211763358675,-74.60277894511819,-75.49092807248235,-74.68260143278167,-74.13677651481703,-75.07222342304885,-76.01612313790247,-75.58042456908152,-74.95600118627772,-75.52351933298633,-75.14913150994107,-75.59272671351209,-76.12802765099332,-76.99759145919234,-76.02675636298954,-76.29679821943864,-77.01698317518458,-76.66714213136584,-77.03102344367653,-77.40675503667444,-76.67196080926806,-76.31174798682332,-75.59309187019244,-75.61586791835725,-74.74754938157275,-75.71215550834313,-76.04846504889429,-75.84178880043328,-76.0005259537138,-76.77222407562658,-76.96886669937521,-76.12582442117855,-75.29813681170344,-75.64760506246239,-75.26341995643452,-75.12962276581675,-75.89840513048694,-75.84256138512865,-76.27539255330339,-75.71621102141216,-75.70539448224008,-76.2081060311757,-76.32892983034253,-75.96991492249072,-76.58467329386622,-75.65513904253021,-74.73143065907061,-73.95308933081105,-74.39158609323204,-73.81147399777547,-74.6045499863103,-74.78149361163378,-74.89487790316343,-74.58901534229517,-74.7740655275993,-74.07679973775521,-74.89967439323664,-75.78146447334439,-75.03411561902612,-75.71313716331497,-76.33728965278715,-75.71812739921734,-75.9183065048419,-75.77418627263978,-76.14714210527018,-75.41939237061888,-74.66436585457996,-74.25639982149005,-74.11970276106149,-74.70735052973032,-74.62456190260127,-75.12657451303676,-75.5518363728188,-75.99374679429457,-76.89667099248618,-76.3246577992104,-76.37718678358942,-75.67066224990413,-75.12673294031993,-74.46176777407527,-74.62773413583636,-74.60122237028554,-73.9431238071993,-74.46597160818055,-74.33262692764401,-73.58576992806047,-73.2312533473596,-73.07413640199229,-73.79073501005769,-73.565082592424,-72.64157736906782,-71.98257128242403,-71.3451273534447,-72.3171192780137,-72.82708711083978,-72.66117701632902,-72.07639108598232,-71.49359565321356,-71.92953623691574,-72.03777809394524,-71.66011688532308,-71.77929557906464,-72.00013705017045,-71.36716221598908,-70.5840482856147,-70.66074012918398,-71.21161136729643,-71.620766478125,-72.01515404973179,-72.50059190858155,-72.65638605272397,-72.24900482688099,-72.81145295733586,-72.60778775438666,-71.74777557281777,-71.19765860820189,-71.41896980907768,-72.38955273572356,-73.32350226771086,-73.71574991382658,-74.38560289004818,-74.42083432339132,-74.11580812791362,-74.3866673503071,-74.7759796245955,-74.85668177995831,-74.98193076159805,-75.23807089077309,-75.96187128964812,-75.17415777314454,-74.6935240146704,-74.2005560984835,-74.43027172610164,-75.22861019289121,-75.32935965619981,-74.61282295593992,-75.40484925732017,-76.1279781665653,-76.19461120571941,-77.12920041242614,-76.35831364896148,-76.83366258628666,-77.63132209749892,-77.50770239159465,-76.84733882686123,-77.56559520680457,-77.17294665798545,-76.96023654285818,-77.31444887071848,-77.74844018789008,-78.05524313217029,-77.931723438669,-78.56673948280513,-78.80206664884463,-79.52455029822886,-79.58983252989128,-79.07916314993054,-78.37165714474395,-78.56714998977259,-78.41820142464712,-77.61346216639504,-77.96219798037782,-78.47536239866167,-78.9334655245766,-79.00604791520163,-79.77912202803418,-80.2802999583073,-79.42842952068895,-78.50814478611574,-78.82405930245295,-78.85099737998098,-79.64341782778502,-79.72995508043095,-80.34992110449821,-79.98111890256405,-79.27923596184701,-80.11159662669525,-80.62674784380943,-80.27285693166777,-80.28200964862481,-80.61542003089562,-80.40947260102257,-81.24881802173331,-81.58246746426448,-81.81174673279747,-82.69012715900317,-82.7080952306278,-83.63229198101908,-83.84055875986814,-83.65024426905438,-84.62686445284635,-83.7462466172874,-83.00538702914491,-83.13448031479493,-83.69361550686881,-83.33347154548392,-84.1497925017029,-83.4274719459936,-82.94674190785736,-82.92490577092394,-82.84053388703614,-82.55310078850016,-81.66244501248002,-80.96091193845496,-80.20944095496088,-79.36853947630152,-79.6950157219544,-80.48568813689053,-80.75448973244056,-81.71939551690593,-82.69326011743397,-83.3353027626872,-82.70567529834807,-81.93639258807525,-81.8593504880555,-81.86739738285542,-80.87519193533808,-80.2329788506031,-80.30595131637529,-80.11008405592293,-79.49849357455969,-80.39886597078294,-79.729793085251,-80.04157126275823,-80.29587438190356,-80.79066760558635,-80.87058368790895,-80.5499444459565,-81.43765053059906,-81.87630218360573,-82.59219906525686,-82.68571151560172,-83.51268903026357,-83.06950371898711,-82.171750780195,-82.3472047476098,-82.33191353781149,-81.80184780713171,-82.25417228601873,-83.20281135570258,-83.33437504898757,-83.92288118461147,-84.37794911442325,-83.92435790365562,-84.414220249746,-83.94982422282919,-84.11397494142875,-84.07435683580115,-84.52420650003478,-84.88854801328853,-85.27549449540675,-85.73004722595215,-84.76063629146665,-85.02787121990696,-84.73664381029084,-84.5807747580111,-84.6235878043808,-85.44412686489522,-84.98380182869732,-85.89768427982926,-86.8059905199334,-86.94360750494525,-86.19055408146232,-85.32267672242597,-85.22352849459276,-84.27764144120738,-83.47577254381031,-84.00545731233433,-84.97017778689042,-84.90381204802543,-85.25122584402561,-84.53936208225787,-85.20653214026242,-85.32805782184005,-84.72687882417813,-84.588278288953,-83.91602520644665,-83.36894009262323,-84.3066855375655,-85.1860389127396,-85.35419416660443,-85.23718950850889,-84.95210822671652,-84.12177166156471,-85.10334011120722,-85.93290949659422,-85.3591512828134,-84.97912868577987,-84.96612034831196,-85.14264996536076,-85.70045433798805,-84.99251660658047,-85.2332250350155,-86.15309875598177,-85.37757117394358,-86.19640532648191,-86.15939929010347,-86.73586359759793,-86.26633078651503,-86.39608724182472,-87.27930433116853,-88.00083655444905,-88.30860573472455,-89.30008769920096,-89.04315221821889,-88.8292167186737,-88.89139791857451,-89.55103112012148,-88.82501540938392,-89.58130178367719,-89.88671680772677,-89.01691410224885,-88.47384438710287,-88.41904809884727,-87.50812943233177,-87.32307740533724,-87.39199551101774,-86.77517894236371,-87.53415326215327,-87.49772096518427,-87.71731608361006,-88.36958729568869,-88.79902014136314,-89.63703470118344,-90.31837573833764,-91.27096998272464,-92.16228941222653,-91.77361672185361,-92.09703384386376,-92.678156001959,-93.64877049764618,-93.63994287792593,-93.22005787398666,-94.01677309395745,-94.92519948491827,-94.87582827918231,-94.85993012040854,-93.99249109905213,-93.83408263046294,-92.9998623803258,-93.5289435419254,-93.46409272355959,-93.90813089953735,-93.37679529190063,-94.06881160847843,-93.95910626882687,-93.37085978966206,-93.34753237385303,-93.51623873785138,-93.44342245673761,-93.2220905921422,-93.51029022037983,-94.15756272664294,-93.37282476061955,-93.6257147998549,-92.70348622556776,-92.80514369579032,-93.71496492950246,-92.94381383433938,-92.48543511610478,-92.91642823303118,-92.95071947807446,-93.0971607719548,-92.37780305976048,-92.25229337112978,-91.9292614813894,-92.88730185246095,-92.72328053507954,-93.12039309041575,-92.98918934958056,-93.48865088587627,-93.56119745178148,-92.78749827388674,-93.07563025318086,-93.44439586345106,-92.45294848037884,-93.22957082418725,-93.64244654076174,-94.56187059963122,-95.18055890640244,-96.16553204553202,-96.13201586529613,-96.7241107756272,-96.54442007746547,-97.1785320234485,-97.19725504051894,-96.36687057325616,-95.89793298766017,-96.51030930969864,-96.57404735358432,-97.21723764715716,-96.90953237283975,-97.08729001879692,-97.09998334897682,-96.58966898592189,-96.42287291307002,-95.55123663367704,-96.17885314067826,-96.91202398296446,-96.93758436618373,-97.87417746102437,-97.2925133490935,-97.15010649664328,-96.23290780978277,-95.58741224277765,-96.09563620621338,-96.42212555743754,-97.0283599938266,-97.71746667707339,-98.37688570516184,-99.13506884826347,-98.35966337937862,-98.58744300669059,-97.64620590629056,-96.74197100056335,-96.95633382862434,-96.05203168094158,-96.93815589975566,-97.85467588249594,-97.44684736710042,-96.78778536897153,-97.23791715502739,-97.23733355849981,-97.99332603858784,-98.67267943220213,-97.70255983807147,-97.98733335034922,-98.28721214318648,-97.45910087320954,-97.13570761913434,-96.41711107455194,-96.4839566834271,-96.13413579016924,-95.35841651074588,-94.6630677273497,-95.6017844886519,-94.72267694398761,-94.24735129950568,-94.18805943336338,-93.22705224948004,-92.45851724036038,-91.9327225331217,-91.52675502281636,-90.92209906503558,-91.26270091487095,-91.40688031259924,-91.95770082110539,-91.37633056892082,-91.37466172873974,-90.38209883309901,-90.64963165204972,-91.55586842400953,-92.46145784528926,-92.7401177068241,-92.3395787035115,-92.28630347549915,-92.6258381283842,-91.93438756652176,-92.49729601573199,-93.26210303884,-92.9524309723638,-93.17997207073495,-93.83283958816901,-94.25269874976948,-93.57941120117903,-93.0155749223195,-93.41208194149658,-93.78112171869725,-93.15910729859024,-92.84324387460947,-93.76089329412207,-93.67224630946293,-92.69366600411013,-92.75993046397343,-93.24804555810988,-92.65587656805292,-92.28849046304822,-92.55512372776866,-91.90358264185488,-92.284717714414,-91.91059562237933,-91.20346459420398,-91.90459266025573,-90.91227335110307,-89.94149924628437,-89.66126957023516,-90.22951133130118,-90.984662307892,-90.8367714821361,-90.05169196426868,-90.02728195535019,-90.36967971129343,-90.94344051927328,-90.64564344799146,-89.76992702763528,-90.31434293370694,-90.42633559275419,-90.0643012188375,-90.31014159834012,-90.29541791649535,-90.32047015801072,-89.341563642025,-89.02259762492031,-89.4403621032834,-89.72952226083726,-89.8898545508273,-89.17819253262132,-88.8722962886095,-88.57814170466736,-89.1684993840754,-89.4294154997915,-89.59131843876094,-88.94116420159116,-89.02506751054898,-89.36869201436639,-88.63812321145087,-89.32287914864719,-89.19630588544533,-88.4956581722945,-88.93418559152633,-88.6377134360373,-87.73870116705075,-86.9890495496802,-86.51827280409634,-86.82926132669672,-87.03941658185795,-86.59675943572074,-85.68998952955008,-85.60165758570656,-86.26693994132802,-87.01199650857598,-87.02264422783628,-87.29157304018736,-87.06790809612721,-87.15330865653232,-86.77376667130738,-86.60712856985629,-86.44799476675689,-86.12455163476989,-86.95206409320235,-86.96768864430487,-86.2017603139393,-85.59820019640028,-86.16198057308793,-86.94128688843921,-86.36933800205588,-86.79873020062223,-87.38399094808847,-87.72668945137411,-86.87866780115291,-87.76501281699166,-87.34124442050233,-86.81031576916575,-85.90161523874849,-85.75721769221127,-85.37350866338238,-86.15298208454624,-86.04026780696586,-86.21752694435418,-86.09100366057828,-86.17379060667008,-86.21988827269524,-85.9028682471253,-85.8803057433106,-86.24360640067607,-85.44817328359932,-86.29385616350919,-85.45051024155691,-85.16207015141845,-84.47677408810705,-83.54774554260075,-83.85952220438048,-83.03219421068206,-83.51504341419786,-83.6802801899612,-83.66411891346797,-83.69614755315706,-83.79949383763596,-83.39658274734393,-83.4143740395084,-84.22236679913476,-84.44094445928931,-83.48742362949997,-82.70819418597966,-81.84348915610462,-82.44776692101732,-82.39310304122046,-83.14898055512458,-83.55100879166275,-82.73132986063138,-81.91299858596176,-81.99011384835467,-81.89435296645388,-82.2902117264457,-82.38489902205765,-81.67499933205545,-82.00133457174525,-81.71962015004829,-81.54614705452695,-81.4645282709971,-81.57936315052211,-81.55849733669311,-81.21453229477629,-81.10568489180878,-81.92223956761882,-82.0819053533487,-81.44191408669576,-82.23196403076872,-82.73091807542369,-83.58525609085336,-84.30087544722483,-85.01566912047565,-85.12566428771242,-85.66325822612271,-85.42117295740172,-84.6634217677638,-84.58430594904348,-84.30296049639583,-83.63461909722537,-82.86932050343603,-82.78544351737946,-83.2382061155513,-83.91279370896518,-84.34999151295051,-84.88686035806313,-84.75930355628952,-85.1529278694652,-85.85267496109009,-86.7211064491421,-86.12386989733204,-86.23060191888362,-85.3401747578755,-85.11982153169811,-84.14093784010038,-83.2704094927758,-83.4095060378313,-82.53717590356246,-82.29044701298699,-82.28142938669771,-81.78525652177632,-81.02670675842091,-80.16080639930442,-79.55681048380211,-79.77959944726899,-80.36178117292002,-81.00487921806052,-80.6653252565302,-80.89491787180305,-81.07572808442637,-81.66292813327163,-82.66090636420995,-81.99443097319454,-81.75912427296862,-81.8166971532628,-80.87800754373893,-81.44194255396724,-81.2675765613094,-81.52422079211101,-81.84541362756863,-81.62728776456788,-80.79449483612552,-80.03259916510433,-80.01681669941172,-79.11983103211969,-78.2327461997047,-78.8782866243273,-79.32949564931914,-78.50789888203144,-78.12138374848291,-77.38080922653899,-78.0473669115454,-78.10537361120805,-79.0537932482548,-79.02422385662794,-78.09718752698973,-78.22996911685914,-77.42791301757097,-78.05889646010473,-77.9055158002302,-78.20163285871968,-79.04086012160406,-78.0895527517423,-79.05023759836331,-79.57418035995215,-78.99398481845856,-79.52907367190346,-79.49207399925217,-79.59211069252342,-79.60982604930177,-80.3573576179333,-80.22422605706379,-79.5657839118503,-79.12265953561291,-78.83056042483076,-79.74778285156935,-80.6354079558514,-80.99662028858438,-80.08375372132286,-79.17341945087537,-79.83489233255386,-79.0689562400803,-78.74283859832212,-79.55381090100855,-80.475541963242,-80.97243566904217,-80.65317113511264,-80.88966476125643,-81.34923095814884,-81.527245585341,-80.61157408496365,-80.46618490619585,-81.26319506019354,-81.201447899919,-82.00742041505873,-82.27229576418176,-82.7248710738495,-82.5624094423838,-82.58057593554258,-83.407674475573,-83.31512066721916,-82.60812123212963,-81.71773786377162,-80.85096665797755,-81.49055519001558,-80.92947099450976,-80.37233147770166,-79.44013046659529,-78.44703451171517,-79.16174097498879,-78.70311773056164,-78.7843042332679,-78.93652924383059,-78.68107474595308,-79.106225727126,-78.15264824265614,-79.05629318160936,-79.23137438762933,-78.41967282118276,-78.51893661543727,-79.3399623404257,-79.64486592588946,-79.83693513320759,-78.8682711739093,-79.42182444874197,-78.52180708106607,-79.1339518642053,-78.98011418292299,-79.02148141292855,-79.36257058940828,-80.17372476728633,-79.36142513668165,-79.41205031936988,-79.70682104025036,-80.15173380542547,-80.66112081054598,-80.86225123889744,-81.72483710711822,-82.44812241895124,-81.97538137994707,-81.41944456798956,-80.73171762609854,-81.47254484053701,-81.05544960079715,-81.23080957960337,-81.4089816310443,-81.36940068285912,-81.15641919709742,-80.38420397974551,-79.54515044623986,-80.39649835787714,-80.59832450002432,-81.47477013012394,-81.05457866378129,-81.20238104555756,-80.84929487667978,-80.76046876609325,-81.51538869505748,-80.78213015617803,-79.78917686035857,-80.13820512453094,-80.57015392463654,-80.82315978314728,-81.7879481324926,-82.6030694055371,-82.37545387353748,-82.58278434537351,-83.48275203537196,-84.09349937085062,-83.57152778143063,-83.41500714141876,-84.2329203649424,-83.71870769793168,-84.54498678445816,-84.24256919743493,-83.62189475027844,-82.98989722831175,-82.85259663546458,-82.89992848504335,-83.19273162866011,-83.77738126320764,-83.61738149123266,-83.6637139976956,-82.71238582208753,-82.27437247522175,-82.26600787369534,-81.95382313756272,-81.52153862873092,-82.46325760381296,-81.60147352842614,-80.75846715411171,-81.6968051996082,-80.99516815459356,-80.1276784655638,-79.78277930943295,-79.70116312196478,-79.73218433884904,-79.77464791247621,-80.2516836100258,-80.68658505845815,-81.00820177141577,-80.23751609632745,-79.27570295054466,-80.18679504003376,-79.35365141928196,-80.21480223257095,-81.19055243767798,-80.23590333480388,-79.72330569662154,-79.57841342873871,-80.44616315886378,-80.01178163615987,-79.56225379323587,-78.9787258808501,-79.42996657313779,-78.49775697896257,-78.03094062488526,-78.3453302369453,-79.13752070115879,-78.28096602438018,-78.74884466221556,-79.70410380559042,-80.22687916317955,-79.64773454656824,-79.39970393618569,-78.9182558702305,-79.85903476690874,-79.54483284940943,-79.22406532336026,-78.22917880676687,-77.34640181064606,-76.49516385234892,-76.56597232772037,-77.09722475055605,-76.80426560621709,-77.30771409347653,-77.11322822701186,-76.82025850145146,-77.22519918717444,-77.96802626969293,-78.35641952278093,-77.79514068551362,-77.22224266361445,-77.45745679596439,-77.00896276487038,-77.76888387231156,-77.40991287957877,-77.2905535963364,-77.07146919332445,-77.75459894863889,-77.6419493551366,-77.15448994468898,-77.20236378256232,-76.65944632142782,-77.12250109994784,-77.2044851812534,-77.95186822814867,-78.10738793108612,-77.12174758827314,-76.54606160335243,-76.71634569205344,-77.38750700326636,-76.76694969227538,-76.78665826609358,-76.14058750402182,-75.76874099019915,-76.42245494294912,-76.9445532001555,-76.02491458691657,-76.8217417774722,-76.85171015933156,-76.14022282836959,-75.24250891664997,-74.86821014946327,-74.60124402213842,-75.44443339528516,-76.05877804616466,-75.0935233370401,-75.58630936779082,-75.45317103760317,-75.27616361575201,-74.57120242156088,-75.18798915250227,-76.18054362433031,-76.6836035726592,-77.43345640040934,-77.33210564032197,-76.5835091448389,-76.31062774406746,-75.87317509017885,-76.8588610989973,-76.68393501965329,-77.03696973063052,-76.8932821857743,-77.50489344494417,-77.42974349716678,-78.31420115893707,-78.13710267283022,-77.86381425336003,-76.95977528160438,-77.17802273388952,-76.9478890215978,-76.45641714287922,-77.09296804713085,-76.24386127619073,-76.00136761926115,-75.37258996255696,-74.38322078296915,-74.91095993481576,-75.1111969910562,-74.71893178904429,-74.69792891852558,-74.42525758035481,-74.555681144353,-74.01149984076619,-74.81502656266093,-75.22676201444119,-74.62522036535665,-73.6911279708147,-73.72657436225563,-73.70428023673594,-74.0776851172559,-73.29231366887689,-73.92844061087817,-74.17784031108022,-73.29185656644404,-73.94217692036182,-74.69212516117841,-74.7174884332344,-74.53478685906157,-74.9920375533402,-74.95396995451301,-74.99117918079719,-75.16078475862741,-75.19380809739232,-75.59122096328065,-75.41168642276898,-75.07292665541172,-75.93778914120048,-76.62136614741758,-75.90188907692209,-75.59347188379616,-75.62754580378532,-75.08309077145532,-75.77892667334527,-76.68092625634745,-77.36250525712967,-77.36927110655233,-77.23030597018078,-76.95268583251163,-76.4259552047588,-75.86059499485418,-76.00291976332664,-75.35651541361585,-75.86450794665143,-76.3838112456724,-75.91451732814312,-76.852270106785,-76.88243008777499,-77.59213643800467,-76.93519289558753,-76.56594664277509,-77.02585682831705,-77.22794286394492,-77.13963514287025,-77.17159755434841,-76.68015952222049,-75.6849214611575,-74.82167260488495,-73.87999596446753,-73.34171102149412,-73.69228099985048,-74.36032350175083,-73.59347712667659,-74.4786545354873,-75.0830816552043,-74.52636886807159,-75.15549561101943,-74.41880899015814,-74.62435214500874,-74.44270535279065,-75.4081774582155,-75.5805343403481,-76.15174024319276,-75.60610959213227,-76.13539349520579,-76.04684967873618,-75.52646922925487,-74.98973432462662,-75.01215842878446,-74.89963537361473,-74.52245027665049,-73.71562182949856,-73.27961266692728,-74.0807227534242,-73.76689176354557,-72.88192917313427,-72.23205325938761,-72.1040002615191,-72.98853139393032,-72.40734900347888,-72.86675379192457,-73.38222230132669,-73.51423786627129,-74.28321492252871,-75.27162745548412,-76.03406815230846,-75.89599848305807,-76.23788647633046,-75.81207006284967,-75.80773267988116,-74.82798568392172,-75.1769309756346,-76.14133506501094,-76.68426603171974,-77.10812690434977,-76.48040593601763,-76.8080740077421,-75.84738503256813,-75.82472110539675,-75.46249021450058,-74.78616488352418,-75.69729283731431,-74.6999081550166,-74.09556855494156,-73.93495220597833,-74.0584811186418,-73.87096125399694,-73.42775245150551,-72.71245071431622,-72.47090174769983,-73.33077271003276,-73.20090587902814,-72.38131171558052,-71.78212605044246,-71.09661804651842,-71.38579318067059,-70.86962286150083,-70.8122660620138,-70.46328864060342,-70.30387852201238,-71.0829882551916,-70.58561313524842,-71.33462912635878,-70.60132651543245,-70.48550013266504,-71.4050546977669,-70.53133765235543,-71.17440300434828,-71.34862163709477,-70.34958224883303,-70.35611826041713,-69.52098154136911,-69.17550110537559,-69.70660213055089,-70.31030140025541,-69.34627931239083,-69.85918986005709,-70.39414189755917,-70.76473244372755,-71.60902159800753,-71.01306629600003,-71.52739781653509,-70.71402029367164,-70.04983704304323,-69.73696873849258,-69.08293923176825,-68.67528519127518,-68.19009553967044,-68.81199014745653,-68.7220864072442,-69.65215448383242,-70.31525141978636,-70.46753686387092,-70.36851636460051,-70.86086524883285,-70.6631912230514,-71.29655331000686,-71.41848639212549,-71.28143121534958,-70.44669864978641,-69.9975946387276,-70.89947199402377,-70.20551279745996,-70.7045184886083,-70.96054621646181,-70.58216749830171,-71.14153518900275,-71.59936258709058,-71.76239521568641,-71.81446393951774,-72.06962542235851,-73.0486631556414,-73.70283516822383,-73.83996199583635,-73.56606292631477,-73.10562545014545,-73.6578438594006,-74.23285909043625,-73.98096176655963,-74.83429476665333,-73.94880004320294,-73.72913580248132,-74.5791952018626,-75.53922710707411,-75.81594114704058,-75.83170287683606,-76.10697351535782,-75.18712615547702,-74.61306855734438,-75.39423678349704,-74.85747393360361,-74.96111714746803,-75.63966687163338,-75.79800226911902,-76.31136322859675,-75.5635928013362,-76.19069396378472,-76.05323624936864,-75.76107317581773,-74.85645098891109,-74.30809391848743,-74.06590380426496,-74.98799432534724,-74.93133387155831,-75.48173821810633,-75.1784301456064,-75.85165098682046,-76.1803415841423,-76.46870045829564,-76.28451989777386,-75.9023257587105,-76.08072956372052,-75.17929540807381,-76.13283161399886,-77.13108864240348,-77.026862480212,-76.23338029906154,-76.27645606687292,-75.98837067792192,-76.1546971751377,-75.79359546024352,-75.47365362988785,-75.04863304691389,-74.84036240167916,-74.31104136677459,-73.68851005192846,-74.674349849578,-74.21216908935457,-75.05156818078831,-75.32370716053993,-75.72356831189245,-75.43199408892542,-75.44652762077749,-75.67286331485957,-75.0933840945363,-74.78014017781243,-75.23009642818943,-74.60531644383445,-74.59601255180314,-74.07145082298666,-73.2784537752159,-72.75510267727077,-73.4442676473409,-72.79468784620985,-73.32983499020338,-72.55241893185303,-72.92875912087038,-73.29949345858768,-73.54206767491996,-72.8094519819133,-73.27461531432346,-72.91793096158653,-72.6777678206563,-72.37717768689618,-72.17349148355424,-73.03942428668961,-72.47979565290734,-73.05566385295242,-72.10131386155263,-72.90434737456962,-73.07087682606652,-73.80843792436644,-73.22241338016465,-72.90845327591524,-73.82215060153976,-72.91796846035868,-73.33244536444545,-72.7986423545517,-71.93660093145445,-72.0275899139233,-72.90974858636037,-73.82485622819513,-74.74550277134404,-73.93347861943766,-74.75123376352713,-74.9096261789091,-75.04920462658629,-74.19961893046275,-73.20125853223726,-73.9259726377204,-74.3874154551886,-74.07262832345441,-74.30276648281142,-74.41102189850062,-73.64822467463091,-73.44244495872408,-73.22847130708396,-73.95883330889046,-74.9021799643524,-75.23088520485908,-76.21520563727245,-76.74417122500017,-77.27634183643386,-76.56092483457178,-76.78629707172513,-76.81789694027975,-77.74423467274755,-78.38905205950141,-77.45247158128768,-78.17016264563426,-77.8263405803591,-77.94486525701359,-77.34207719145343,-77.04100357601419,-77.05804055556655,-76.15530826197937,-76.78918288601562,-76.4019105588086,-77.03268708195537,-76.38329183449969,-75.58187982765958,-74.61115793278441,-74.48695514816791,-74.55724645359442,-73.57286665029824,-73.09231417020783,-72.61182296928018,-71.62491104705259,-70.6421817690134,-70.03607591614127,-69.04631232796237,-69.2643574476242,-68.88877729978412,-68.34872154146433,-67.50858885981143,-68.04774727066979,-67.37792593752965,-67.28662232356146,-66.28972323564813,-66.54580868361518,-66.18040671944618,-66.78013771912083,-66.5726931616664,-67.05270989518613,-67.71375144040212,-67.0579767730087,-67.86177703505382,-68.79209277918562,-68.37175108492374,-69.11691258056089,-68.61582569079474,-69.25078647444025,-68.4584770295769,-68.99031745130196,-69.63298013852909,-70.12506905850023,-69.58992323232815,-70.28814605157822,-69.88649255828932,-69.4828231362626,-69.54751680791378,-68.83558382699266,-68.15368744591251,-67.17790276836604,-67.41951881116256,-66.66247689072043,-66.79558689845726,-67.00355709530413,-66.32039821287617,-66.43742060195655,-66.9837878216058,-66.22510818298906,-65.52200733171776,-65.57734206877649,-64.77891949051991,-65.26819002488628,-64.6450166949071,-64.97130019264296,-64.66287348233163,-65.57633285829797,-65.82287762872875,-66.50925603369251,-67.23211666801944,-66.94349383935332,-67.2102777659893,-67.18979028332978,-67.57761104544625,-66.701975943055,-65.81770307291299,-64.82942631468177,-63.8741142693907,-63.421113717369735,-63.91449446184561,-63.584662137087435,-62.94050196465105,-62.25601265672594,-61.872711503412575,-61.05541255744174,-61.161686811596155,-61.20125153241679,-61.54552803747356,-60.81457285443321,-61.80633010389283,-62.58745156181976,-62.95986554026604,-62.539058580528945,-61.77810914674774,-62.41531311906874,-61.67443428654224,-61.74246616801247,-61.42311452701688,-60.451538395602256,-61.37062481511384,-61.636784738861024,-62.55461691273376,-63.029456702061,-62.171686318702996,-62.59474601270631,-63.40635475050658,-62.53217321727425,-63.27383204456419,-63.64141495060176,-63.630940568167716,-64.16328654484823,-64.91085421014577,-64.54078960372135,-65.4902902720496,-65.19967495836318,-65.32512316480279,-66.02132375584915,-66.89354455517605,-66.54575993260369,-66.28338902350515,-67.04083650326356,-66.79044561227784,-66.35501338494942,-65.74711102480069,-66.57164009800181,-66.08453095704317,-66.67361956601962,-66.283522346057,-65.79652265459299,-66.22992886556312,-66.61418700404465,-66.10134220309556,-66.6174666006118,-65.84304540976882,-66.486588654574,-65.65438167378306,-66.30586585216224,-66.84597120899707,-66.21776312682778,-66.56306327460334,-66.27359507000074,-66.77176645910367,-67.22676172945648,-66.6180434729904,-66.613226252608,-66.68275491381064,-67.52285703457892,-68.01763724489138,-67.09569308720529,-66.77130222786218,-67.34182666800916,-66.50642019184306,-67.22877555293962,-67.46246514609084,-67.42579575721174,-68.17270985245705,-68.71685117390007,-69.55863703554496,-69.79466778645292,-70.61497937701643,-71.02041595056653,-70.75300907809287,-70.4147621835582,-70.25047909421846,-70.80416338704526,-69.8171088481322,-70.53071513213217,-70.03814919386059,-70.2956216102466,-70.86773490905762,-69.88196366187185,-69.8002712065354,-69.25532345566899,-70.15512689948082,-70.36446683900431,-69.52710720896721,-68.64905776968226,-68.8919541076757,-68.91786479810253,-68.03508397843689,-67.83043404482305,-68.07992988824844,-68.33282320247963,-68.6731722112745,-69.52518053818494,-69.5886734444648,-70.36451432388276,-70.62305841036141,-69.76420873077586,-69.5876864050515,-69.22357339970767,-68.94117606664076,-69.64137703133747,-70.07776327244937,-71.00493305549026,-70.92722788453102,-71.83952633384615,-72.75316773913801,-73.03461316833273,-73.78217992046848,-72.88952658092603,-73.00525117199868,-73.11003179149702,-73.83636369928718,-73.43394494894892,-73.75519854901358,-73.79897877154872,-72.8915573055856,-73.35122604342178,-73.70852973265573,-73.22795571712777,-73.5055551235564,-72.55095815565437,-72.2451066961512,-72.70454013021663,-73.63938434468582,-73.77220020256937,-73.08384106541052,-72.34392056101933,-71.40658813342452,-72.10989991761744,-72.89556076470762,-72.79686501575634,-72.32607817742974,-71.56225405400619,-71.81974113825709,-72.5475246431306,-72.89197408454493,-72.0050706663169,-71.53760258341208,-71.84954349603504,-72.34048382611945,-73.08910935278982,-73.81716888863593,-74.36317093856633,-74.34553994331509,-74.92951964540407,-74.19383801193908,-74.3589047449641,-73.54648382263258,-73.22802854469046,-73.03933559544384,-73.87085361452773,-74.80264703789726,-73.93589456798509,-73.05084876855835,-73.831019166857,-74.0390594122,-74.99282397842035,-75.18314876174554,-75.67124945111573,-75.8409416093491,-76.5892268223688,-77.4430613857694,-77.83790512476116,-77.83952859183773,-78.51975726755336,-79.37058731308207,-79.17458171304315,-79.06840917142108,-78.91195696173236,-78.27656679600477,-77.56001154100522,-78.42153920326382,-78.82814185786992,-78.26901774201542,-78.21915026428178,-78.7543184896931,-79.49161686375737,-79.3323570904322,-78.74388693738729,-78.13329300004989,-78.15305267600343,-77.5175233175978,-78.19505356578156,-77.41407826775685,-77.94678503274918,-78.67757234023884,-78.35207654209808,-78.25620496366173,-78.48836522176862,-78.05913588684052,-77.37696660216898,-77.73041767859831,-77.94714968651533,-78.88467107899487,-79.28865416860208,-80.0514038852416,-80.16734364675358,-79.94631347432733,-80.67645150376484,-81.41086743492633,-81.38818769808859,-81.53326910827309,-80.83774666115642,-80.45150840980932,-80.98437810782343,-80.69422313105315,-80.018955740612,-80.06135030137375,-79.2497434723191,-78.49427252728492,-79.38855422101915,-79.75756632490084,-80.65088150370866,-81.59598673740402,-81.41253184666857,-80.52887488761917,-81.0153782889247,-81.86768626095727,-81.88077065953985,-81.8828356503509,-80.89166769385338,-80.43209968600422,-80.7404821566306,-81.47967770509422,-81.97101920843124,-82.0042825890705,-81.10942323645577,-81.68622357817367,-81.63130242563784,-81.80202572932467,-82.32888930896297,-82.57012177724391,-82.79670661082491,-82.08288457151502,-81.55781731987372,-82.34302331786603,-82.6299241152592,-81.93598486715928,-81.33779669832438,-80.83502925559878,-81.74098642263561,-81.58721347618848,-80.87340189190581,-80.4658901472576,-80.69173861667514,-79.98855494288728,-80.9270148887299,-81.46751106949523,-81.72438416909426,-81.03874453902245,-81.87710033264011,-81.44520691782236,-82.26344455871731,-82.61819840967655,-82.87436399422586,-82.57674069609493,-82.67830696795136,-83.09669953491539,-83.26128218369558,-82.76873788656667,-82.1949273403734,-82.18459088169038,-81.23740274645388,-80.72157460544258,-79.82962573319674,-79.34029505681247,-80.2118669161573,-80.01761271292344,-79.73975273873657,-79.68377056112513,-80.63287206087261,-79.83038723049685,-79.05640642996877,-79.60801561037078,-79.7679977179505,-80.73459471249953,-81.07448679488152,-80.14971872977912,-80.0309027065523,-80.12795015564188,-80.25778213329613,-80.90120425494388,-81.65091947140172,-82.24099426250905,-83.01070387661457,-83.17025451082736,-82.812853269279,-82.50703493552282,-81.85061762481928,-81.44415506487712,-81.86237626569346,-81.93678294308484,-82.00054462114349,-82.15507994918153,-82.9674306800589,-83.6456670849584,-83.44360057730228,-84.23870963510126,-84.91961342422292,-85.21515366062522,-85.94946193508804,-85.73105974169448,-85.24018614413217,-84.68021098384634,-85.63666978990659,-85.84256681939587,-86.72650857549161,-87.44737685890868,-86.53788357786834,-86.49564548023045,-86.37599565600976,-87.32319577690214,-87.74305408028886,-87.42471179598942,-88.2600406552665,-87.27518527349457,-87.03926265612245,-87.29362357920036,-86.64657639293,-87.51638049259782,-86.71346700191498,-87.13964356062934,-86.74338824441656,-86.65365209244192,-87.22707161447033,-87.08099258551374,-86.56438873708248,-85.74330885428935,-85.86751323658973,-84.96685799723491,-84.7116807885468,-84.393322925549,-84.29902987228706,-84.6267792689614,-83.88544589979574,-83.8280423451215,-84.41157099138945,-84.8578733811155,-85.15623396635056,-85.21593192964792,-85.33662344980985,-85.2198820207268,-86.0360629670322,-86.27560365898535,-87.09104896429926,-87.24338288325816,-87.52741102967411,-87.1098513151519,-86.47180265374482,-85.73418867960572,-86.05918297776952,-85.8920613094233,-86.18774550547823,-86.72911946848035,-87.57001004414633,-88.29636022774503,-88.55554225901142,-88.389951383695,-87.6435682233423,-88.14711105637252,-87.20733318151906,-86.52943897526711,-86.99322871118784,-87.17607283964753,-87.259769693017,-87.88755453145131,-88.1109621366486,-87.73472732165828,-88.32488005235791,-87.89532605651766,-88.86577376769856,-89.36341961519793,-88.54350627493113,-88.61294199666008,-87.89328657649457,-88.12660770770162,-87.88282236969098,-88.86689313547686,-88.09994807373732,-88.16282148193568,-88.68329960573465,-88.17209291411564,-88.06137250876054,-88.59060020372272,-87.93697334267199,-88.04027824336663,-88.15581778204069,-89.1024705846794,-89.31673405319452,-90.09380842372775,-91.06386736454442,-90.97588597703725,-90.95379518531263,-91.41258144984022,-90.59640343207866,-90.76901091029868,-91.10362070892006,-90.9232596126385,-91.6223116191104,-91.96773966774344,-92.781000867486,-93.40902974968776,-93.43377102678642,-93.38257792731747,-93.3792873560451,-94.29771857708693,-93.48259035032243,-94.10551325976849,-94.43236636603251,-95.26901065791026,-95.90758773079142,-96.67326093837619,-97.55751539533958,-97.39912034384906,-97.14285942725837,-97.82305950624868,-97.01067378604785,-97.39476135885343,-96.48433902300894,-95.98030534293503,-95.18975801486522,-94.99861476151273,-94.84396438440308,-94.99121303064749,-94.16264318116009,-94.82295873668045,-94.24965318571776,-95.10528109036386,-94.29469399387017,-93.70649730088189,-93.51734816189855,-93.1695786821656,-94.05703270900995,-93.16943869879469,-93.49008230725303,-92.7100658272393,-92.65210472652689,-92.53637900436297,-91.67894368898124,-90.8588486504741,-90.09340164111927,-90.99602207867429,-91.61065539205447,-90.75248428294435,-90.87157141324133,-91.02919647842646,-91.98505436209962,-92.0729665895924,-91.42073671286926,-90.6276311664842,-90.78578378632665,-90.8319178763777,-90.43748234817758,-90.41947878012434,-89.46599052101374,-89.11549602122977,-89.47192934295163,-89.98003440210596,-90.69245461421087,-90.6672783778049,-90.69022915605456,-90.41506002098322,-90.19059876445681,-90.68484134553,-91.24557917332277,-91.93320194492117,-92.20853378996253,-91.92891234206036,-91.95785426162183,-92.90479335328564,-92.34150312654674,-91.71248395368457,-91.790391898714,-92.03561318991706,-91.16881050541997,-91.017190979328,-91.08381811855361,-91.97799116745591,-92.54236797988415,-92.8740149200894,-93.02228665817529,-93.51710475189611,-93.70696577709168,-94.48949401499704,-94.88076723366976,-94.74523196881637,-94.26658754516393,-95.13255972927436,-96.07372435973957,-96.41748473327607,-96.53426466882229,-97.22222069418058,-98.0096075097099,-98.64754839008674,-99.01857257820666,-98.93979142839089,-98.47250504186377,-99.46562725910917,-99.27908500703052,-99.99328120425344,-100.91506829159334,-101.29485198389739,-101.96659439895302,-101.41369627043605,-100.60638112807646,-101.35833391174674,-101.98786390339956,-101.9427773244679,-101.08073769044131,-100.80631932336837,-99.94291174598038,-100.45650012092665,-100.38619339233264,-101.05870353942737,-101.5717428252101,-101.21902777813375,-101.28015336859971,-102.07495599379763,-102.09847069904208,-101.45605851057917,-102.06067123962566,-101.52204181347042,-101.2450848184526,-101.30831568269059,-101.69768794486299,-101.50322688324377,-100.92214582907036,-100.53685526689515,-100.55273929797113,-100.97347682109103,-101.24247839488089,-102.23047703970224,-102.46703663468361,-103.04092560242862,-102.0535116600804,-102.04436209984124,-102.86152855725959,-103.75046533858404,-103.29458779934794,-103.86412181612104,-104.85822816565633,-104.12913802172989,-104.03551479615271,-104.16935933474451,-103.6449171914719,-103.06730183819309,-102.58476074552163,-102.62659573089331,-101.84695220412686,-101.7275813408196,-101.57442743657157,-102.12799110356718,-102.83146169222891,-102.85955246537924,-101.93738508597016,-102.59361133212224,-101.87779578845948,-100.94102298654616,-100.8734461623244,-101.81203237175941,-102.30531586054713,-101.97615361819044,-102.91472625685856,-102.39022554177791,-102.5773162022233,-103.46799283195287,-103.72059257514775,-103.82631341926754,-103.72507653199136,-103.27214818168432,-102.89556873310357,-103.10305257188156,-102.19465100765228,-101.88102943310514,-101.98195830220357,-101.06548063922673,-100.79496301617473,-100.89312063110992,-101.67607884202152,-102.24486691132188,-101.53758261865005,-101.26527944533154,-102.14879963966087,-102.11797280143946,-102.68167304480448,-102.29929226916283,-101.53751228982583,-102.3316602082923,-101.512412967626,-101.2808105647564,-100.41786613920704,-99.43802807992324,-98.9304257761687,-99.61503925547004,-99.58872093446553,-100.56950149685144,-101.04726134799421,-100.34206648729742,-100.30532108480111,-99.50681138411164,-98.80915395682678,-99.71521894913167,-100.45697221532464,-101.41828732425347,-101.20729915285483,-100.6089258780703,-100.33316836506128,-99.7087896517478,-99.3570351190865,-100.23586734337732,-99.43366462364793,-98.55525190848857,-97.80414175288752,-97.46153301745653,-97.79654564149678,-98.02125055762008,-97.96839140029624,-98.08336582267657,-98.00286125997081,-97.31021283334121,-96.7198024909012,-97.11724107898772,-96.94446468027309,-97.81877146428451,-98.31455001793802,-97.3576873135753,-96.8094043051824,-97.30503055592999,-96.50446510966867,-97.42586943274364,-98.25185625022277,-97.58802970219404,-97.62041443679482,-96.94128318829462,-97.27255505835637,-98.15429357253015,-97.2468650531955,-98.14580566808581,-98.37500581052154,-97.66791700804606,-98.26121988194063,-98.62298434507102,-98.16430047852919,-97.73590726079419,-97.62961014965549,-98.15763506200165,-97.44996459782124,-97.39062048867345,-97.05018939357251,-97.22280343575403,-97.31086167087778,-96.94444768782705,-96.77452561073005,-97.28982751816511,-97.9048760314472,-98.29083468066528,-98.28801344707608,-99.00926367705688,-99.69354122690856,-99.40396337118,-98.56882363185287,-98.66188785526901,-98.78319926839322,-98.38624851824716,-97.42033830471337,-97.31559508992359,-97.96593080973253,-97.96647259918973,-97.13924538390711,-97.85098755499348,-98.52203695010394,-99.02504978980869,-99.42247094074264,-98.71621222421527,-97.96915142564103,-97.98435958568007,-97.09296307014301,-96.38731002015993,-95.6420558327809,-95.64768001437187,-96.09416127065197,-96.41985303908587,-96.50350983906537,-96.77921681758016,-96.58245884813368,-95.85581530351192,-96.29232224961743,-95.38029737910256,-95.06465970119461,-95.7571374680847,-95.15632152324542,-94.85763075063005,-94.45119697507471,-94.51065208669752,-94.40608404390514,-95.05340788746253,-94.41282943449914,-94.78712004749104,-94.68144087307155,-94.75086836377159,-94.77176137221977,-94.37031496549025,-94.3239150159061,-94.28187356097624,-93.48586309840903,-94.39575667725876,-95.00901177013293,-94.64138338947669,-94.41354324948043,-94.5582226216793,-93.9971151552163,-94.08678185846657,-94.11031011072919,-94.34679561899975,-94.59066016739234,-94.78045184211805,-95.47217612015083,-94.50654554832727,-93.73240637825802,-93.88977627130225,-94.10659239301458,-94.46408379357308,-94.24647430470213,-94.63466442842036,-94.64215218601748,-93.94574305182323,-94.04646033002064,-93.40427964972332,-93.99126965226606,-94.93455136567354,-95.50797524722293,-95.71826046099886,-96.56064653303474,-97.03266440238804,-97.8288451177068,-98.32979572797194,-98.72930427733809,-98.31532578123733,-98.11228921357542,-98.0789913549088,-98.31740495469421,-98.28208473231643,-99.1897598542273,-99.60220648441464,-100.15395365003496,-99.58719494799152,-100.53181895660236,-99.91178115317598,-98.97437504678965,-98.10333891911432,-98.49558150861412,-98.51241307752207,-98.85619198856875,-98.3161711608991,-99.23145516728982,-99.92974100075662,-99.51603068271652,-98.54288299707696,-98.98438340006396,-99.18025843054056,-99.41714502125978,-99.46356761828065,-99.93947082245722,-99.76289296336472,-100.59489253954962,-100.7228541970253,-100.0498137138784,-100.4150726548396,-99.70037647988647,-100.48295259103179,-99.7554703517817,-100.42538820812479,-100.05065483553335,-100.05200076801702,-99.55862480029464,-99.7403263412416,-99.47353916568682,-100.35963552910835,-100.14111225539818,-100.45441423729062,-100.2128154663369,-99.50584225961939,-98.76988764945418,-98.3962241075933,-97.48563151527196,-97.50941657135263,-97.5805369685404,-98.56916705705225,-98.89536180440336,-98.22065158421174,-98.1149545260705,-98.29352020239457,-99.05232108337805,-99.75720198219642,-100.71810998907313,-101.10187606140971,-101.72711628396064,-100.99783963570371,-101.20174333639443,-100.63090625638142,-99.99192700209096,-100.66638021543622,-101.00645826105028,-100.85216215020046,-100.51967528648674,-100.32353232335299,-100.80268255388364,-101.32211661012843,-102.10500279674307,-102.34990569809452,-101.98258213186637,-101.90102700283751,-102.56328010559082,-102.68414023052901,-102.88158024987206,-103.28745643235743,-103.13861529063433,-102.2285765898414,-102.60597280459478,-102.13320530438796,-101.61862295074388,-102.39890743931755,-102.20266937930137,-102.13091793237254,-101.64657151093706,-101.38145483657718,-100.46357610402629,-99.9035333818756,-99.40176109364256,-100.24770883610472,-99.60807998478413,-100.57112630130723,-101.17150368401781,-101.58951834822074,-102.27934915944934,-102.31514699943364,-102.49046327266842,-103.21853411244228,-103.3671411271207,-102.7868037391454,-102.13196965912357,-103.09903716249391,-103.70366112980992,-104.64507534820586,-104.33547387365252,-103.64781705569476,-104.11311697075143,-104.63613076508045,-104.59170877886936,-104.80768862878904,-104.13472340162843,-103.58368333708495,-103.51984993508086,-102.94497639872134,-103.0973297203891,-102.65011750394478,-103.44396009901538,-104.16948723373935,-105.12240768410265,-104.38849207153544,-104.64810625836253,-105.47325528459623,-104.64872603863478,-103.76324169058353,-104.16825028555468,-104.92199693853036,-104.75770261418074,-104.6576250270009,-105.4654615484178,-105.57971494225785,-106.5385225280188,-106.23259488027543,-105.92228849418461,-106.81721598329023,-106.32455221237615,-107.26939202332869,-106.2982312948443,-105.9457451379858,-106.52031195024028,-107.4231673697941,-107.36190767772496,-107.16176483826712,-106.50329979788512,-106.36783462250605,-106.3189931907691,-107.16061258129776,-107.60587834240869,-106.85470512649044,-105.93215408595279,-105.50331435818225,-106.1668889648281,-106.36328629683703,-106.9033040353097,-106.69179655751213,-107.37756491545588,-108.15809181891382,-108.37724138237536,-108.38080155709758,-108.7070550317876,-108.32995989080518,-108.187672263477,-108.09072604496032,-108.90549551229924,-108.0579021316953,-108.47486224398017,-108.64774340717122,-108.32572567928582,-107.93979107076302,-107.56624739104882,-107.79098675912246,-107.34017701493576,-107.47103020455688,-106.8822778146714,-107.62965966574848,-107.21047076303512,-106.64777123136446,-107.31246210960671,-107.31245911493897,-106.77107875747606,-107.27538520423695,-107.72738143661991,-108.48883022740483,-109.02466716663912,-108.37385399919003,-108.03078320017084,-107.75912133743986,-106.78862920729443,-107.23983602086082,-106.37493829336017,-105.9492570287548,-105.13869958464056,-105.35891617275774,-104.51511914283037,-104.98832944920287,-105.90583252627403,-105.2132811723277,-105.35578127671033,-105.10982253635302,-105.76780113996938,-106.19560439372435,-105.93175490852445,-105.70087755052373,-104.99396500689909,-104.69839895749465,-103.8664337019436,-104.13270895415917,-104.21473768772557,-103.51104562031105,-104.32502728421241,-103.73399403644726,-103.53647969989106,-103.64730385458097,-103.31282046018168,-103.99862886080518,-103.32921044621617,-104.05416486086324,-105.05269569624215,-105.72763440012932,-106.64253334095702,-107.34428898617625,-107.4223304647021,-107.91260872967541,-107.84586424008012,-108.50905365590006,-107.7293512923643,-107.27864540740848,-107.46325231250376,-106.86133395601064,-107.5215877997689,-107.24492199160159,-107.45175795815885,-106.87060464778915,-107.79160195030272,-107.79583570314571,-107.88529218826443,-108.7732199691236,-108.97207681136206,-109.06478707538918,-108.91880352515727,-109.21707375952974,-108.96231784997508,-109.39044733066112,-109.06974859442562,-108.22119562933221,-108.87067385949194,-109.03002751944587,-108.31106218975037,-108.4850507332012,-107.63689225306734,-106.765562904533,-105.86297459993511,-106.60402948921546,-106.27701916405931,-105.87168667046353,-105.16304635303095,-105.21623910730705,-104.54522820236161,-105.20873039215803,-105.99661852000281,-105.41305036423728,-105.4670154824853,-106.31790368212387,-106.55195445241407,-107.32927776733413,-106.41058707190678,-106.92348180525005,-107.85695584025234,-108.16717201052234,-107.45970243029296,-108.4143752628006,-108.65563579555601,-108.61556847160682,-109.39334970805794,-108.90708245942369,-109.19867993844673,-108.67833964992315,-108.12416865304112,-108.76513148238882,-108.6993908174336,-109.45584380440414,-109.50250006606802,-109.73594056908041,-109.7065675589256,-108.88483783602715,-108.18853906914592,-108.38937833160162,-109.22480220487341,-109.126903927885,-109.80668183788657,-110.2333019436337,-111.20224946783856,-110.55363948782906,-111.32560220267624,-111.45465749548748,-111.43232701160014,-112.10883295815438,-111.34784824959934,-111.72354432893917,-110.81848131865263,-109.8267956036143,-109.61322156339884,-110.18098808731884,-110.88642369536683,-110.40834766440094,-110.77189687592909,-110.42516533005983,-110.06890432024375,-110.98646186850965,-110.84008263610303,-111.16872695554048,-110.35874446714297,-111.35765404766425,-111.33879610942677,-111.06938459863886,-111.35615517711267,-111.86046698503196,-112.53718783054501,-112.68484487617388,-111.81399080064148,-112.04338843468577,-112.66119899973273,-112.64622367778793,-113.44945146888494,-114.29908459912986,-114.89168345043436,-114.26838666480035,-115.21324755670503,-116.0130150904879,-116.06230193283409,-116.2818627487868,-115.62112496141344,-116.09063162887469,-115.30907832365483,-115.18437260808423,-114.63495770934969,-115.34695884305984,-115.07576332474127,-114.8547128830105,-115.16709940508008,-114.6957424506545,-115.05726395733654,-114.31473143724725,-115.29622118035331,-114.87375091155991,-114.93620527815074,-115.91599600436166,-116.86619366100058,-116.90423499653116,-116.82555575342849,-116.35492158541456,-115.43414395907894,-115.80979141127318,-115.12852608645335,-114.65085754077882,-115.21129435813054,-116.02489405777305,-116.06773009337485,-116.55217181053013,-117.31596571905538,-117.90875335177407,-117.15132834203541,-117.33862657193094,-117.95927167776972,-117.34932197351009,-118.19785065529868,-117.21473652822897,-116.23232067329809,-115.37487244047225,-114.72195878019556,-115.60327661316842,-115.4374117651023,-115.82348539074883,-116.15545562515035,-115.42058817809448,-115.99516328657046,-115.73633199045435,-116.36391727160662,-116.10400646179914,-116.00046261679381,-116.94407001044601,-117.19489319482818,-116.4431712036021,-117.1880058599636,-117.73815575009212,-117.66763173462823,-117.54328288929537,-116.98203172162175,-117.16115310322493,-116.34491706918925,-116.76740401331335,-116.48767849663273,-117.39485567994416,-118.21784889185801,-117.81778558436781,-117.23173863021657,-117.17992101516575,-117.12509413063526,-116.21512810746208,-116.86932986974716,-116.69751520920545,-117.10000653099269,-116.49788506748155,-117.1310421731323,-116.68577533680946,-115.89339950634167,-116.09666603570804,-115.2670840327628,-115.77655857848004,-116.56904185889289,-116.84513824153692,-117.31692612264305,-118.31525793718174,-118.55811178078875,-118.15813393704593,-117.32574934372678,-116.89968171389773,-117.04359043063596,-117.98951790807769,-118.23853904241696,-117.31632230989635,-117.61615867866203,-116.88931704126298,-116.25865988619626,-115.66202469542623,-116.20019352901727,-116.96105964155868,-116.07614904036745,-117.02675250545144,-116.7683856873773,-117.08103970019147,-116.17123596183956,-115.17982079414651,-115.6262070434168,-116.50596268940717,-116.71202765358612,-115.80820016143844,-115.01804548874497,-114.25068069016561,-113.4544226154685,-112.95875387312844,-113.73297690227628,-112.79691998613998,-112.84381367918104,-112.18644891539589,-111.86955087771639,-111.61024553701282,-111.02004354028031,-110.04954052111134,-110.29593066172674,-110.1674455422908,-109.52477288572118,-110.2682269406505,-109.85993278818205,-110.36494367197156,-109.84546323353425,-109.65566301066428,-109.2303782464005,-109.67142017371953,-109.87291722511873,-109.64647407829762,-109.3883601333946,-109.50295707397163,-109.84244805853814,-110.40743195824325,-109.82474880060181,-110.54443841753528,-110.99347671866417,-111.50663140229881,-110.7311262274161,-111.20290801022202,-111.67650543386117,-111.03778876597062,-111.33936387300491,-112.31040100799873,-113.27270627440885,-113.45758518530056,-114.14022392267361,-115.00844633905217,-114.0235380185768,-113.49211176624522,-113.73413909506053,-114.46133858943358,-115.06248988118023,-114.8022644543089,-115.36685410700738,-116.35022814571857,-115.53511448064819,-116.21105770114809,-117.07244637329131,-117.5101038957946,-117.86577651044354,-117.36703032953665,-116.52756241941825,-116.63935104524717,-117.13236738741398,-116.85148038389161,-116.97742724325508,-116.79338811710477,-117.33281768439338,-117.2457082667388,-116.92433590721339,-116.30895222397521,-116.8121754466556,-116.82314713392407,-117.63441327260807,-117.15291059901938,-116.53652834380046,-116.26761304261163,-117.18153025675565,-117.44929230865091,-118.36617401987314,-118.75877721142024,-119.0242220601067,-119.48145091813058,-118.78620671899989,-119.43594205146655,-119.7594672893174,-119.22719511436298,-118.39464961085469,-118.10550880711526,-117.15217050770298,-117.58465852309018,-117.95735579961911,-117.87948750751093,-117.56894367281348,-117.3908395441249,-116.45174943516031,-116.22114363545552,-115.45514978049323,-115.61769526964054,-115.80640002340078,-116.10443453351036,-116.5798675045371,-116.11634957464412,-116.93380813347176,-116.59846986224875,-116.74151393165812,-116.22762338118628,-116.13594552781433,-115.9208184746094,-115.10300221154466,-115.70675574429333,-116.45431939093396,-116.66944950120524,-116.24215399194509,-116.77235251478851,-116.73723846441135,-116.74136915616691,-117.62980520678684,-118.59896617894992,-118.46032452676445,-118.67830318957567,-118.96508569456637,-119.51249684719369,-118.96999977948144,-119.56174828764051,-118.7020416627638,-119.01466368697584,-119.76009328616783,-120.14182298630476,-121.10391664179042,-120.12829698622227,-119.71217064140365,-119.39276230940595,-119.89577269088477,-119.98922168835998,-119.77246679970995,-118.9330593678169,-118.4201635895297,-119.40805976325646,-120.21362796612084,-121.20832473644987,-120.21444486035034,-119.68458547955379,-119.67189709004015,-119.74717155005783,-118.94119272334501,-118.619522721041,-118.37863174732774,-117.47299882536754,-118.46078539267182,-118.57275817729533,-119.54346627369523,-119.8793757497333,-119.9191932012327,-118.99531232146546,-119.27663597417995,-118.54681537114084,-118.99645849596709,-119.91809926973656,-120.8289234736003,-120.61852192692459,-119.86047640582547,-119.64780983189121,-118.72025140328333,-118.38065668568015,-118.83102067466825,-119.26487566297874,-118.7039658096619,-118.04571563377976,-117.57071008952335,-116.79870172031224,-117.51945888856426,-117.40101660601795,-116.91482475958765,-117.6265029348433,-116.87940282514319,-116.97707371599972,-116.46206434629858,-116.0554815530777,-115.98447065288201,-116.9294565054588,-116.46795720234513,-116.31666765594855,-116.80146235274151,-116.34985608886927,-116.40369789348915,-116.37225198745728,-115.53389266878366,-114.7943049785681,-114.13021449744701,-113.40922439238057,-113.85315604740754,-114.20425278740004,-114.27674509538338,-113.50188102200627,-113.21802830602974,-112.597329035867,-112.63971924223006,-113.3009353899397,-114.07744919275865,-114.55875117145479,-114.86588152032346,-115.82496289350092,-115.24090646253899,-115.85460243141279,-116.58940654760227,-117.51775816222653,-117.30516345333308,-117.10939430771396,-116.80517525039613,-117.75683081662282,-117.40025486564264,-117.0426321066916,-117.79322766046971,-118.2961887116544,-117.84237359184772,-118.31955365557224,-119.16585177090019,-118.53124727355316,-119.25283783022314,-119.05904293060303,-119.91943163145334,-120.0126160304062,-120.16360076330602,-119.71105008898303,-119.2121401373297,-119.40441918326542,-119.38228871300817,-119.49634329462424,-120.21960242046043,-120.00141043774784,-120.56163384858519,-120.43341240892187,-119.65326118050143,-119.62786310026422,-119.3253074567765,-120.26835957728326,-120.0982909295708,-120.47920291079208,-120.20088229328394,-121.06035594176501,-121.36336297169328,-122.30086910072714,-123.17769669136032,-123.50813423516229,-123.79759243875742,-123.47645637299865,-123.14131870120764,-123.18980086129159,-122.74035060266033,-123.04294125782326,-123.86622628569603,-123.24293349962682,-123.64998257951811,-123.6490786653012,-122.78768237074837,-122.7136619053781,-123.64509285520762,-122.82181847654283,-123.0114270541817,-123.89033507462591,-123.88875118969008,-123.03252565534785,-123.01174534903839,-123.42670955974609,-123.11381567269564,-123.76457660086453,-124.3895208244212,-124.73926266562194,-124.46924827666953,-124.0413603875786,-123.1608177954331,-123.74762239307165,-122.79377605346963,-122.10597227746621,-122.85223407298326,-122.07511293655261,-122.10734882531688,-122.54963960312307,-121.78901411220431,-121.16969038220122,-120.75288948602974,-121.06904676742852,-121.29314992576838,-122.27369327284396,-121.53958615241572,-121.67639611708,-121.16295705083758,-121.17739012092352,-120.32922469452024,-119.70868854736909,-120.22972164582461,-119.5245103649795,-120.00012306915596,-120.91028718464077,-121.34132112236694,-121.48696157615632,-121.65960069512948,-122.34383275965229,-121.86967733176425,-121.56121694110334,-120.97347319871187,-120.99891310790554,-121.45029897615314,-121.18921003863215,-120.64317556703463,-120.96930538956076,-121.22123018279672,-120.33073052437976,-119.95474929595366,-120.80380856059492,-120.60985203459859,-120.21959021082148,-120.7570894472301,-121.69838353712112,-121.25640131533146,-120.29985307902098,-121.04519192129374,-120.90507272351533,-121.08390451408923,-120.42581561719999,-120.02185089467093,-120.09686694247648,-119.9539182651788,-120.0696648224257,-119.54763048142195,-119.49674711935222,-120.01083452487364,-119.12505568470806,-119.39798515709117,-119.71246195957065,-119.05427656229585,-118.81941288197413,-119.50645445939153,-119.44569925917313,-119.7511998093687,-119.00989609677345,-119.55319267418236,-119.02446226915345,-119.84955161483958,-120.35061534075066,-119.899897756055,-118.96529205376282,-119.57066802913323,-119.993727886118,-120.04816938797012,-119.93897567270324,-119.92947239102796,-119.57900308538228,-118.80968621419743,-118.63546084519476,-118.64014010876417,-118.19008645275608,-117.53774016862735,-117.4842023612,-116.73991561913863,-117.5705135227181,-117.24492756742984,-116.49426258774474,-116.22639023466036,-116.45562061248347,-116.79384453035891,-116.14168160548434,-115.63404649728909,-114.78875086689368,-114.18542761728168,-115.07237184373662,-115.05740014184266,-114.52429200848565,-114.75447562802583,-113.82284194091335,-113.98193992255256,-113.1104917130433,-113.29393798019737,-113.97404375579208,-114.95867235772312,-114.78646540874615,-114.89507236843929,-114.39431786863133,-114.5237342924811,-113.90226856712252,-113.89180418523028,-114.27475621085614,-114.71150153828785,-115.48217652877793,-114.87827403470874,-113.95095311570913,-113.09742788225412,-113.95861953217536,-113.9843214340508,-114.11904850788414,-113.37803005799651,-114.11824483796954,-114.56932886177674,-114.40387910371646,-114.52759833447635,-113.98136788280681,-114.3179132877849,-113.74236966576427,-113.09602614818141,-113.15461274562404,-113.57735941745341,-112.87402335740626,-113.02383323060349,-113.28519970737398,-113.58131231693551,-113.66121991397813,-113.09214823599905,-112.67906393902376,-113.61206580325961,-113.67775011621416,-113.587424879428,-113.64905928494409,-114.31634004460648,-114.47946274187416,-113.62069559423253,-112.88473167829216,-112.78881319751963,-112.2469066339545,-112.01928583532572,-111.1813089651987,-110.91990486718714,-110.62546373764053,-110.36244993424043,-110.56935531366616,-109.61654379637912,-109.39989055786282,-109.88444506051019,-109.68428383115679,-109.39029125263914,-109.34283126052469,-108.95895301131532,-108.8672547112219,-109.61609450913966,-109.27833602624014,-108.52075199317187,-108.08645759662613,-108.68100701924413,-108.88314699660987,-108.00319615192711,-107.39138045581058,-107.90018064947799,-106.92327984375879,-106.46408818522468,-105.83177306363359,-105.07285410352051,-105.4206152241677,-105.77043883875012,-106.1724507343024,-105.23276596516371,-106.0398205970414,-106.75828538369387,-107.04665812989697,-107.13873730227351,-107.86639301013201,-107.01429884601384,-107.9844561824575,-107.28502720408142,-108.10066396696493,-108.71024896530434,-109.1137380246073,-109.39591470593587,-108.79966226639226,-108.32077702879906,-109.14612695761025,-110.01663419883698,-109.42293225647882,-110.12773527437821,-110.35940978629515,-110.42593733360991,-109.94503467343748,-110.34411718510091,-111.02566944435239,-110.07598015805706,-109.81255308305845,-109.06113425036892,-109.45425990363583,-109.1925610685721,-108.67010003840551,-108.87616101140156,-108.53904494270682,-108.56624670419842,-108.25548874540254,-109.23164844047278,-108.62267336156219,-107.78060726961121,-108.21487053250894,-107.37112203752622,-108.24800331285223,-108.63911108439788,-107.818033026997,-107.20496543962508,-106.88371860003099,-105.96389535209164,-105.67595594236627,-106.4688634602353,-107.11406649649143,-106.33328682836145,-106.0139437825419,-106.78155073197559,-106.09231663122773,-106.86552290944383,-105.88791174720973,-105.6006547762081,-105.35519094020128,-105.10889930371195,-104.42327232379466,-103.53073940100148,-102.6639479487203,-102.97603502031416,-102.69318525353447,-102.13455148460343,-101.72621280513704,-100.83938928181306,-100.84440666576847,-99.99484502291307,-99.1454511298798,-99.62400549650192,-99.30022035865113,-99.76350081292912,-100.34139638766646,-99.79095304850489,-99.3190033226274,-98.87226551305503,-98.2082116282545,-97.37817398225889,-98.03168652066961,-98.88409227924421,-98.0867427578196,-98.44206927763298,-98.52014472847804,-98.95278699696064,-99.42082573194057,-99.38525366596878,-99.82952905539423,-100.68434097850695,-101.26563882874325,-100.37381409434602,-100.46856362977996,-99.98443880537525,-99.15143603878096,-98.7277637659572,-98.63649380719289,-98.97963170520961,-98.03499080613256,-97.40660219779238,-96.84077358571813,-96.67489753337577,-95.95184106053784,-95.65594035713002,-95.31465226877481,-95.26525237876922,-95.39298352971673,-95.50132849765942,-96.01435631513596,-96.56876946426928,-97.37821808597073,-98.37176220817491,-98.7444829926826,-98.58856051927432,-99.20011225435883,-99.15255490364507,-98.60428325738758,-99.20104164304212,-98.71037710644305,-98.15929964836687,-98.51673899358138,-97.6715101832524,-97.88070843648165,-97.75169431231916,-96.79666272597387,-96.45927355624735,-96.67863225704059,-96.33604841539636,-96.9390172790736,-97.47564452048391,-97.2083298577927,-96.21283246856183,-95.61741114826873,-96.24726193537936,-96.44140154868364,-96.91534489579499,-96.70787974121049,-96.33834441425279,-95.6259303484112,-95.82240119157359,-95.20859805634245,-94.96323520643637,-94.79684464586899,-93.8005142128095,-94.45091477641836,-93.88891891250387,-93.23544505098835,-93.80941502191126,-92.924117741175,-93.5805948949419,-93.14808517787606,-92.17434571543708,-92.80404370976612,-93.61568921990693,-93.11980109615251,-94.08992958068848,-94.85671438090503,-94.33039751369506,-94.12662120629102,-93.22686325432733,-92.62542818579823,-92.0675157061778,-91.216371959541,-91.66664922144264,-92.46853836532682,-93.42462778044865,-92.86767098587006,-92.43454787088558,-91.53720021946356,-91.94665081147105,-91.31414564326406,-91.21612026682124,-92.20802626153454,-91.77720200596377,-92.4862304138951,-91.5535711850971,-91.31856082752347,-91.90430148411542,-92.64053754461929,-92.97836109716445,-92.00010872911662,-92.320324503351,-92.29776928806677,-93.24422976700589,-92.48101977817714,-93.32823787117377,-93.4608804336749,-92.6703030699864,-91.81725343409926,-91.55404299125075,-90.6481531499885,-90.23236599285156,-89.93010591482744,-89.44938444299623,-88.71016355371103,-88.54366910923272,-88.37787288613617,-87.39860161207616,-87.21620892733335,-88.0468583162874,-87.99120880011469,-87.01345151849091,-87.02057103998959,-87.68944904906675,-87.96098501607776,-87.37268234696239,-87.71787159331143,-86.80940224695951,-85.97158772032708,-86.78113993536681,-87.31193645577878,-88.23765477677807,-89.03057301044464,-88.09095069952309,-87.91821661964059,-87.81507626920938,-87.99830693239346,-87.3109707874246,-86.6603613877669,-86.2404413013719,-85.52728510182351,-84.84388342313468,-85.07968059228733,-84.44942088471726,-84.14470326341689,-84.68843906745315,-83.96053794864565,-83.77845954010263,-84.02902205009013,-83.77490466320887,-84.55732915876433,-84.7775412867777,-84.51404117979109,-83.70852099917829,-83.43725353106856,-84.38545671105385,-84.00563722709194,-84.34688635496423,-83.78320130938664,-83.59189200820401,-83.20745490398258,-82.51328006666154,-82.82533733500168,-82.99907192727551,-83.75392722757533,-83.48097119713202,-83.85324284434319,-84.54517399612814,-84.39299738174304,-84.56625205278397,-84.14119836082682,-84.79380324715748,-84.04529657121748,-83.3073594942689,-83.91438437020406,-82.92212983034551,-82.78239947417751,-82.45498680789024,-81.6830897280015,-81.15857724891976,-82.08991703996435,-82.46199523145333,-81.57683851988986,-81.07445482350886,-80.68402094999328,-81.58874081727117,-81.70099117280915,-80.91257942095399,-80.5425571128726,-80.9088736786507,-80.7001539026387,-81.50728419609368,-81.36101701203734,-81.79308561841026,-82.05503626726568,-81.422312611714,-81.07594861509278,-80.46494335215539,-81.04059039708227,-80.0706243403256,-79.62903819978237,-79.60404521087185,-79.99509136471897,-80.95752676716074,-80.38722481019795,-81.32033117348328,-82.15577997686341,-82.79685935378075,-82.62845025165007,-82.15563757205382,-82.79533104551956,-83.64474323019385,-84.02972793392837,-83.68031643424183,-84.43852325575426,-85.36855872534215,-84.47896293969825,-85.00072806607932,-84.89444120088592,-83.96707204636186,-83.88325269287452,-84.1014048778452,-84.81136289285496,-85.31042015505955,-85.87107049440965,-84.88414896419272,-84.6494681481272,-85.3063441873528,-85.81863817991689,-86.46094584045932,-87.25546945910901,-87.63795729354024,-88.47137516457587,-88.84397144522518,-89.41807578597218,-89.25178227759898,-89.38210261240602,-89.46591899590567,-88.76385236531496,-89.17471386352554,-89.86370805511251,-89.78327253088355,-90.16120658768341,-90.1361896796152,-90.37616971693933,-89.41348663764074,-89.4821506831795,-89.59703899919987,-89.24107874650508,-89.04592143371701,-88.73993475642055,-89.32410709140822,-88.76427353313193,-88.12654841365293,-88.85343856411055,-88.41014056326821,-88.72381464764476,-87.77188424346969,-87.34686859929934,-87.46576961223036,-88.23287062440068,-87.86201855912805,-88.62846022984013,-88.80601405259222,-89.01590060023591,-88.06515798298642,-87.16596314450726,-87.69059596536681,-87.18490200536326,-86.19792928732932,-85.30579985119402,-84.72045784536749,-83.96536425640807,-83.48430610075593,-82.87398193543777,-81.99253483628854,-81.6672512665391,-82.58135457104072,-82.52448387164623,-81.56421500863507,-80.8004033472389,-79.86435283301398,-80.327530677896,-80.70558327110484,-80.5839028051123,-79.87954250583425,-80.4724372299388,-80.22851537214592,-80.99191980017349,-81.54540251428261,-81.48855418944731,-82.08500092336908,-81.68477686820552,-81.49625588813797,-81.95761308539659,-82.67994442488998,-82.3923740121536,-82.8468518666923,-82.46301344688982,-82.9995230208151,-83.45626114821061,-83.18062990205362,-82.95339286746457,-83.15092696808279,-82.15824305312708,-82.39736972982064,-81.96731852088124,-81.62553080683574,-81.23677384946495,-80.75015738559887,-80.40021720156074,-80.49066975293681,-80.33046590536833,-80.76707622548565,-79.86972196120769,-79.90566792618483,-80.34188787871972,-79.67122559761629,-78.91709598246962,-78.71403278643265,-79.63172093359753,-79.06768642226234,-79.97214843705297,-80.73393702227622,-79.74315217789263,-80.3996902233921,-80.57800108520314,-79.63225573627278,-79.73449116759002,-80.24976764759049,-80.0751547566615,-80.4932335014455,-80.62970337085426,-80.42206187034026,-81.18638115143403,-81.20976487547159,-80.27251852722839,-80.15942964749411,-81.04641818674281,-81.08617507759482,-81.9457719414495,-82.83805129257962,-82.86812904151157,-82.49549113726243,-81.84256155695766,-82.28690665215254,-82.16305690538138,-81.5961957690306,-82.39265868766233,-82.86362917348742,-83.3207408580929,-83.20772015955299,-82.53139215987176,-81.79455937352031,-82.2283592633903,-81.33412504242733,-80.53207704657689,-79.78912813635543,-79.25470254011452,-78.95774357859045,-79.38138262927532,-79.644426766783,-80.55276520876214,-80.23283239779994,-80.0967493634671,-79.39058279339224,-78.62307136785239,-79.4555896022357,-78.5587852220051,-77.81544481823221,-78.47206279356033,-78.20847969828174,-78.93431649496779,-79.07225070847198,-79.08638027636334,-78.13817044440657,-78.53598494268954,-79.06536188954487,-79.52368807699531,-79.95912946481258,-79.65888351248577,-80.15323314256966,-80.73860603990033,-79.74967111460865,-80.56531587382779,-81.2606036029756,-82.10459009418264,-82.3353605712764,-81.81285848235711,-81.84510987158865,-81.7582715661265,-82.03816519724205,-82.30511120893061,-82.80889407219365,-82.37674161186442,-82.76528870454058,-82.29208870884031,-82.21780715882778,-82.44324797112495,-82.38301597861573,-83.19744840776548,-83.77309492556378,-83.18024345114827,-82.20778520544991,-81.96729992004111,-82.55167426168919,-82.28021460352466,-82.31127648847178,-82.1574236061424,-83.01901911245659,-83.4160385131836,-83.05528114177287,-83.4403194389306,-84.11611492559314,-83.36109299305826,-83.39066876191646,-82.65438851946965,-81.66790045564994,-82.53149867942557,-82.87154978048056,-83.37689335783944,-84.1930912383832,-84.05069873435423,-83.19141683820635,-83.95130322920159,-83.1881529763341,-84.16263431916013,-83.62184115033597,-83.95438802754506,-83.21086240932345,-83.2452799254097,-83.7112429914996,-83.14096446940675,-83.39775308407843,-84.28364271344617,-84.14458545809612,-83.15978310350329,-83.5849332138896,-83.40344476234168,-83.69611141597852,-83.70445448718965,-82.8480040836148,-82.88013736438006,-82.41120016062632,-82.37106675840914,-81.88396119652316,-82.33797318022698,-83.29466575197875,-83.12071118690073,-83.29703780403361,-83.18705096933991,-83.62367870192975,-84.36848579207435,-84.69342935876921,-84.70079112844542,-84.54402311053127,-84.79987633042037,-85.7333339676261,-85.97996743768454,-86.15709385508671,-85.49569562263787,-85.64860697509721,-85.49511329038069,-85.60549743101001,-85.70837234938517,-85.83853117795661,-85.7025296879001,-86.11817710427567,-85.22170924721286,-86.0646962504834,-85.38978454144672,-85.63107932917774,-84.85353140998632,-84.39082657080144,-84.4398653563112,-83.61031929124147,-84.14604080282152,-84.09383648680523,-83.7252747900784,-83.55027214437723,-82.94301056442782,-83.29010460386053,-82.50487581314519,-81.81784468656406,-81.0566990133375,-80.99104051617905,-81.10498611582443,-81.34988078847528,-80.82612058287486,-80.50922183739021,-79.53916506143287,-78.61955545563251,-77.81177111109719,-77.96277653798461,-77.76503604650497,-77.64770792005584,-77.17342722369358,-76.67592509556562,-75.8379781297408,-75.0885776760988,-74.78234951011837,-75.50018130522221,-74.85601782845333,-75.57621373934671,-75.74183353502303,-75.30809957254678,-74.35884959809482,-74.18064515478909,-73.8033944517374,-72.8429392343387,-73.71319897426292,-73.77114844508469,-74.48459843732417,-73.88539310125634,-73.19957108004019,-72.85477615147829,-72.50972822029144,-73.34867443609983,-73.1540922196582,-72.83315087715164,-73.32150025339797,-73.05610236572102,-72.12897656764835,-72.84244132740423,-71.85800843546167,-71.48129766434431,-71.38881150214002,-70.95032067643479,-70.6358852237463,-71.32129076495767,-70.45774242701009,-70.31082772091031,-69.97564411954954,-69.6711461939849,-69.49350108299404,-69.67371113877743,-70.46942332619801,-70.59987543569878,-71.48504411475733,-71.64444378344342,-71.03859620634466,-70.60773674584925,-69.76603470137343,-70.4446940231137,-70.40543058002368,-70.9024107279256,-70.94058313407004,-71.43470056075603,-70.6167287165299,-71.3624792327173,-71.50004413397983,-72.213970372919,-72.19964132178575,-72.0524365263991,-72.04561807680875,-71.90186659898609,-71.89195726439357,-72.34238451672718,-72.08402979047969,-72.41421946650371,-72.1826440775767,-71.99219166580588,-71.79740541288629,-71.54132003197446,-72.1132086943835,-71.13891080161557,-72.08436604728922,-71.4801858169958,-71.66653500450775,-71.67208627378568,-70.6830480452627,-70.33343810262159,-69.58731938106939,-69.76180433714762,-70.38392876135185,-70.11409360775724,-69.43877027835697,-69.84151844773442,-70.4321817564778,-70.48256432870403,-71.22193313064054,-71.15071554016322,-70.27015284495428,-71.23746640700847,-72.03560880338773,-71.10113538382575,-70.84882168658078,-71.73730876436457,-71.02014980930835,-70.11637283861637,-69.3709227242507,-69.6593965687789,-70.01688062725589,-69.41056752949953,-69.44627689709887,-69.37447155546397,-69.13620706088841,-69.97548823198304,-69.14475444704294,-69.3674525115639,-68.88720508664846,-68.27178833354264,-68.65651179943234,-67.86800688318908,-68.15249205986038,-67.85164530249313,-67.43227363796905,-66.95466186385602,-67.73364444915205,-68.66222326597199,-68.04656726820394,-68.01739205699414,-68.04313916573301,-68.81704309163615,-68.88578229909763,-69.46706702979282,-69.58670376986265,-70.25100715830922,-70.22843800950795,-71.18045220663771,-71.86213593417779,-71.31006179237738,-70.41813447093591,-69.87284345272928,-69.15287911286578,-68.93104389216751,-68.03740265173838,-67.25405311211944,-68.13318646652624,-67.1375453188084,-66.6160016511567,-67.52043088991195,-68.47949690092355,-68.70456405170262,-67.97903372254223,-68.83869080990553,-68.31536158872768,-69.11441519111395,-69.15019696531817,-69.72342832991853,-69.27718680398539,-68.89066038932651,-68.23206395283341,-67.29186674859375,-66.76811544038355,-66.6528976787813,-67.41457482520491,-67.33931963099167,-66.63805386656895,-67.50973491370678,-68.13368406938389,-69.08648997871205,-69.54316745791584,-69.16083273245022,-68.70071618631482,-68.24446282302961,-67.95931127108634,-67.36122981831431,-67.75258777476847,-68.47518610209227,-69.08605372067541,-68.21790738403797,-68.45105831278488,-67.92413042904809,-68.70854758145288,-69.01935640815645,-68.26416171807796,-67.50085509801283,-67.59303079731762,-68.17089361464605,-68.52337118890136,-68.70927594415843,-68.1651194053702,-68.00013252394274,-67.28477541357279,-67.24696200992912,-68.19753094715998,-67.63811017246917,-67.81475385418162,-67.25635984539986,-66.58152147661895,-66.78631727956235,-66.0740151735954,-65.86020902963355,-65.36936054797843,-65.09391798637807,-64.65340595971793,-65.52203760715201,-65.23410860495642,-64.75458190357313,-65.61735647683963,-65.43258877005428,-66.08972379239276,-65.50065081287175,-65.98050930537283,-66.26522405771539,-65.87543115392327,-65.75409707287326,-66.18762731458992,-66.03776723332703,-65.80059586046264,-66.26331009995192,-66.50309639936313,-67.3451243005693,-67.7010385976173,-67.44735121307895,-67.0506412582472,-67.32488792622462,-67.55555375944823,-67.34379314444959,-67.99826481658965,-67.38464892935008,-67.61790759116411,-67.38573784474283,-68.23391153430566,-68.7621437557973,-68.67982270754874,-67.87363348994404,-67.52061700075865,-67.155790601857,-66.74717985559255,-66.62545522255823,-65.75745692523196,-65.86812087753788,-65.21313522709534,-65.24638241017237,-64.27470930665731,-65.06391722895205,-65.26235383376479,-66.13325422024354,-66.75060160877183,-67.27470562234521,-67.85487265698612,-67.64316284051165,-67.3640760583803,-67.40892389370129,-67.71167323365808,-66.78619297919795,-67.35190298175439,-66.73118581902236,-67.36928066471592,-66.78079186659306,-66.21491651237011,-65.22540943184868,-65.27651279838756,-65.02080168901011,-64.30762891238555,-63.56712403986603,-62.984326649457216,-62.676988027989864,-62.46399554843083,-63.178642850369215,-64.07427786570042,-63.77296570362523,-63.01723622716963,-62.307599710300565,-61.40961978258565,-61.28877052105963,-61.55876144161448,-62.47368630114943,-62.14935296261683,-61.622451189439744,-61.87013230472803,-62.51683528488502,-63.172355466522276,-62.75162293296307,-62.46530417120084,-62.97850778186694,-62.84885900095105,-62.563745761755854,-63.021712875925004,-62.836554208770394,-62.901989029254764,-62.14331790339202,-62.38819433609024,-62.45618715370074,-62.2539673098363,-62.693085140082985,-61.93326290184632,-62.62727858917788,-62.78028308041394,-62.75863577006385,-62.923824483994395,-63.44884109310806,-63.082992476411164,-62.318432019557804,-61.516966896597296,-60.72351899789646,-60.08492654468864,-59.16122107487172,-59.410784487612545,-60.12649981956929,-60.43677671439946,-59.52276883274317,-59.098488660529256,-59.10780836874619,-59.494432591833174,-59.62145485589281,-60.0175294498913,-59.218184428755194,-60.16801441786811,-60.217934389133006,-59.77159838657826,-60.2785235545598,-61.18648558948189,-60.35919003561139,-60.864215205889195,-61.024676863104105,-61.5416148644872,-60.91083909245208,-61.28275612927973,-61.9839057167992,-62.65346115548164,-61.88153511798009,-60.95832669129595,-61.40179166942835,-61.98129662591964,-61.35268671112135,-61.932856222148985,-62.038843034766614,-62.208879285492,-61.7560508758761,-61.1482496438548,-61.75789753999561,-62.598221234511584,-62.87859597010538,-63.5693838163279,-62.84752824250609,-63.82536652684212,-63.69709273055196,-63.167155251372606,-62.63215986918658,-62.28914358234033,-61.341949447989464,-60.49222690425813,-60.16664312919602,-59.39498391980305,-59.53978576231748,-58.63244934612885,-58.37159650446847,-57.839768814854324,-58.605878985952586,-58.219393730163574,-58.20169911812991,-58.15055693406612,-57.36375995259732,-58.30168163822964,-57.3742895135656,-56.84035435738042,-56.88167542871088,-56.63718428928405,-55.785881225951016,-55.91030657570809,-55.625109874643385,-54.949416597373784,-55.241600557696074,-55.06303426157683,-55.28470294456929,-55.427674501203,-56.11569882184267,-55.412358097266406,-56.072024086955935,-55.509993369691074,-54.821102963760495,-53.9324852717109,-52.98358336649835,-53.69596262648702,-53.93135465448722,-53.33576588053256,-52.81251783622429,-53.23932554293424,-53.85946812201291,-54.28173330146819,-55.00593656068668,-54.81395250745118,-55.11438944609836,-54.83986511779949,-54.4611794129014,-54.98685552831739,-55.64767757803202,-54.982191557995975,-55.07383530260995,-54.99241295270622,-54.45134869590402,-53.75804339302704,-54.39077979279682,-54.379522166680545,-54.051024687476456,-55.008962543681264,-54.87646165629849,-55.43827505456284,-56.15067415777594,-56.8335352470167,-56.864517176523805,-57.510045025032014,-58.204031637404114,-58.80526290507987,-57.928970377426594,-57.18958567874506,-57.23534760810435,-56.566686037462205,-56.76568003743887,-57.7363080480136,-58.255895745474845,-58.29414649493992,-59.26037595421076,-59.82243836391717,-59.8027200717479,-59.26264022896066,-58.955126129090786,-58.431905498262495,-58.850585530512035,-59.79515122529119,-60.12811167631298,-59.88262465456501,-59.5577484103851,-59.01723260059953,-59.313092371448874,-59.511119805742055,-60.20890071382746,-61.16610269015655,-61.35316432872787,-62.022940948139876,-62.41568983765319,-61.44218050595373,-61.691637732088566,-60.975837589241564,-61.964630119502544,-62.0514016430825,-62.76509942067787,-62.85589794954285,-62.06032313546166,-62.27786132320762,-62.12430627271533,-61.26416010130197,-61.18753355555236,-60.205734486691654,-59.43563890689984,-60.428228687960654,-60.51074396679178,-60.69812876544893,-61.28511773655191,-60.51302415551618,-59.62208457151428,-59.08565911510959,-59.78336509456858,-58.943611797876656,-58.103020602837205,-57.189006155356765,-57.29111506650224,-57.86224103020504,-58.528348344843835,-57.58806913951412,-57.985368594527245,-57.39937441563234,-57.903911768458784,-58.396712231915444,-57.39683413412422,-56.49460717709735,-56.86947487434372,-55.8741990737617,-56.23697134340182,-57.05647084815428,-56.7073283852078,-56.03451202483848,-56.5801319796592,-57.326193859335035,-56.477074603084475,-55.74394326237962,-55.025802987627685,-55.392751106992364,-55.92700932594016,-55.72767147934064,-55.77992152236402,-56.449940343387425,-56.472237187903374,-55.75846417667344,-55.26176113355905,-56.008047780022025,-56.13240660447627,-56.33274758094922,-56.403583915904164,-55.507561539299786,-54.57797288289294,-54.80363079160452,-54.08392246905714,-53.97108004707843,-54.572961466386914,-54.445938548538834,-54.24579128436744,-55.036229012999684,-54.43926852103323,-53.57307832175866,-54.08092896267772,-53.56956296926364,-54.44874132843688,-54.615072092507035,-54.947900514584035,-54.25706152012572,-53.29587672650814,-53.2829398480244,-52.949124115053564,-53.24454152630642,-53.28356390539557,-53.48668904788792,-53.241698750294745,-52.96772853890434,-52.57663344684988,-53.55405858438462,-53.573710600845516,-53.507087163161486,-53.141357286367565,-53.48360033892095,-54.26511316746473,-55.053012353833765,-55.515258194413036,-56.37280568340793,-55.86451800307259,-56.58877137629315,-55.60882153129205,-55.16814364725724,-55.68034133594483,-56.49749623704702,-57.1350613986142,-56.182324877008796,-56.83992041600868,-57.518864477053285,-57.41731521161273,-58.27212067274377,-59.2411568579264,-59.06240571802482,-58.79998669633642,-58.26046992652118,-58.65399783011526,-57.77790101105347,-57.08586209034547,-56.62657653354108,-56.71213695919141,-57.56249273987487,-57.883040617220104,-57.18785028345883,-57.10708242142573,-57.23537824628875,-57.88200799981132,-56.9921626644209,-57.55298128724098,-56.952780230902135,-56.062201409135014,-55.11805755458772,-55.248527181800455,-56.09624738059938,-56.418136064428836,-55.773418615572155,-55.67983513465151,-56.325295608025044,-56.96471034549177,-57.847168792039156,-57.30297167412937,-57.95047891745344,-58.028084931429476,-57.15428978390992,-56.37462066998705,-56.37505037570372,-55.71881577325985,-55.59185130801052,-55.517432602122426,-54.94993604533374,-55.18385921930894,-54.73290994716808,-53.92944833962247,-54.35025219852105,-54.29146084934473,-54.502831156831235,-55.11913055740297,-54.98685850342736,-55.804273625835776,-55.184498224873096,-55.000626880675554,-55.21086386917159,-55.31942402618006,-56.30973902437836,-56.805498477537185,-56.88821205729619,-55.91040608473122,-55.30472289118916,-55.266505610663444,-54.95793611416593,-54.77707934519276,-54.05509897926822,-53.60595333669335,-53.77264054073021,-53.91949581215158,-54.29190774029121,-54.409995056223124,-54.6294723986648,-53.96464880742133,-53.61934419814497,-53.9737735055387,-53.69139215676114,-53.72032851818949,-54.444314423017204,-53.62934009451419,-52.89953111996874,-53.5556437401101,-53.099602290429175,-52.170627198182046,-51.83653647173196,-52.26687667472288,-53.16075493535027,-53.95429035555571,-54.34930774522945,-54.994367462117225,-54.65489590167999,-53.765581835992634,-52.83766793971881,-53.692705899011344,-53.367597120348364,-54.270844934973866,-53.380522596649826,-53.69540868746117,-53.63995316857472,-54.63917846418917,-54.80857409769669,-55.57086148345843,-55.42087345011532,-55.436571419239044,-55.96468073967844,-56.087083362042904,-55.66874934500083,-54.67751192394644,-54.46135850204155,-55.20862145116553,-56.01997125754133,-55.550785570871085,-55.55717624025419,-54.820769620127976,-54.397185715381056,-54.01780418353155,-54.46503738872707,-53.7686866838485,-53.007088779937476,-53.78264394681901,-53.999647521879524,-53.92374920891598,-54.18558521242812,-53.38624858111143,-52.450099071953446,-52.57199660921469,-52.97405472351238,-53.17057844251394,-52.97435659682378,-52.1616358878091,-51.56758961454034,-51.50337715493515,-51.41499697929248,-50.53535030595958,-50.10037115495652,-49.92057876009494,-50.59096603374928,-50.578810416627675,-50.864389011170715,-51.85204138001427,-51.87014296930283,-51.76863282546401,-52.102028952911496,-51.12119268300012,-51.2321833409369,-51.13387445732951,-51.46770099084824,-51.54189080186188,-50.57610810454935,-49.58947040326893,-49.803797769825906,-49.240031100809574,-49.22191738476977,-49.6232881443575,-50.14797846833244,-49.74677026504651,-49.2133814683184,-49.33224734896794,-49.50975163001567,-49.52651001745835,-49.545764258131385,-49.844036305788904,-50.131683989427984,-49.86118154646829,-49.746044299565256,-50.19802718423307,-50.13814296806231,-50.31100463727489,-50.09748303378001,-50.39402397815138,-51.36125530535355,-51.69782193657011,-52.04646410094574,-52.378822988364846,-52.11827825335786,-52.847338455263525,-53.726032466161996,-54.43760635191575,-54.426912367809564,-53.90990495309234,-53.425526299048215,-53.65517719974741,-54.646870048251,-54.000163302291185,-53.59732762770727,-53.606241821311414,-54.35087051615119,-54.35631999699399,-54.17246796283871,-53.64452881505713,-52.914791801478714,-52.63756861910224,-52.23767123604193,-52.068659217096865,-52.769889710471034,-52.75162004586309,-52.47638294938952,-52.57798820268363,-52.343476278241724,-51.48231798270717,-51.262833344284445,-51.27233892772347,-51.18459896510467,-51.8788377228193,-52.82180578587577,-53.53607290610671,-53.70878933323547,-54.264086849521846,-53.32364186318591,-53.452185209374875,-52.828740919940174,-52.526874334551394,-53.06788285123184,-52.80451150564477,-51.9213476148434,-52.4398165429011,-53.381902205292135,-53.31250102352351,-52.4041123832576,-53.1337268948555,-53.63010446121916,-54.55089327087626,-54.18359671207145,-54.065650035627186,-53.389420583844185,-52.81430726032704,-52.79090450750664,-53.72605557972565,-54.49758105352521,-53.70381077565253,-54.558615882415324,-53.76727908756584,-53.80469863303006,-53.7669618781656,-54.691816648002714,-54.48196258535609,-55.06146217742935,-54.61977573111653,-54.20108881127089,-54.467792907729745,-54.58229775540531,-55.39022764377296,-55.65572296734899,-55.41217062110081,-55.50153636094183,-54.64536733087152,-55.15159042412415,-54.60803141910583,-53.736986231058836,-52.88268581405282,-53.785171057097614,-53.853351523634046,-54.808164729736745,-53.85493766795844,-54.1565026207827,-54.31392902415246,-55.1178539916873,-55.04466658877209,-55.02871378045529,-54.243858453817666,-53.814454664476216,-53.149175197817385,-52.26545062707737,-52.81932879565284,-53.3081982685253,-54.04270848073065,-54.88346513360739,-54.72744717076421,-54.309831690974534,-54.18244175752625,-53.19130431022495,-54.09888011217117,-53.67179805180058,-54.136940787080675,-53.235780792776495,-53.304396241437644,-53.9600205142051,-53.4480897593312,-54.37392218131572,-54.5426033558324,-55.39036971563473,-54.46732883527875,-53.49697581073269,-53.69097685487941,-54.63279761793092,-53.77608720166609,-53.12698219856247,-52.996251951903105,-52.20291063096374,-52.981633349787444,-52.30959609569982,-51.47959634428844,-50.881222733762115,-51.12045439565554,-50.62661543721333,-50.7180879060179,-50.42035673186183,-50.57543282164261,-50.43757671676576,-51.36550149926916,-52.25779682677239,-52.47451780317351,-52.02151848934591,-52.31871875561774,-52.25088276062161,-52.85373817104846,-53.21550313569605,-54.002988162916154,-53.40720205800608,-53.29835882084444,-52.907916319556534,-53.6259617395699,-53.248054892756045,-52.62335340119898,-51.85573408333585,-50.96528288954869,-50.466733388602734,-50.01596499281004,-49.8111971099861,-50.141120322514325,-50.10199860483408,-50.8364949375391,-50.97469335095957,-50.85190143669024,-51.54973729234189,-51.17341871839017,-50.300427712500095,-50.42949281493202,-51.09029197273776,-51.88716798229143,-52.25012698210776,-53.081069281790406,-53.209810769651085,-52.550444485154,-53.068316623568535,-53.044339809101075,-52.99083252297714,-52.79431028384715,-52.0206967163831,-51.34729997487739,-51.495812537614256,-50.951473436784,-51.14080407191068,-51.15191011503339,-50.608424834907055,-50.67041398026049,-51.22147086029872,-50.258838191628456,-50.692013988271356,-49.84630616148934,-50.451204761862755,-50.53394292294979,-50.43926507839933,-50.4784433580935,-50.66726625524461,-49.746933456510305,-49.3708695275709,-49.53068497637287,-50.384429048746824,-51.28256142837927,-51.88918746635318,-52.88265174347907,-52.99972463725135,-53.89288204256445,-53.08517146902159,-53.40389492595568,-53.123007502406836,-53.47920291731134,-53.33463711757213,-52.57741780532524,-52.40883687976748,-51.91269809054211,-52.721813982352614,-52.587932671420276,-52.658267514780164,-52.33025129092857,-52.32544649206102,-51.90992571832612,-50.978937696665525,-51.81251760665327,-52.46929006045684,-52.46553270565346,-51.56261934665963,-50.63965417444706,-51.28447683667764,-51.869678527116776,-51.96298145642504,-51.30510272458196,-51.366110775154084,-51.41753621120006,-50.75007395027205,-51.027817462105304,-51.29105048533529,-51.272232150193304,-51.58903661277145,-50.85785986762494,-51.72816168796271,-52.037743671331555,-51.465628690086305,-52.004983962513506,-51.09301216341555,-50.34262748248875,-51.2085898835212,-51.73462264705449,-51.15313701890409,-51.17504719039425,-51.84449074277654,-51.98461208632216,-51.41738771786913,-52.33270183065906,-53.256248090881854,-53.65086327213794,-54.166641344316304,-55.02154041873291,-55.5176037857309,-55.851901376619935,-56.131158804520965,-56.704273036215454,-57.56595567334443,-57.319978304207325,-56.44015070050955,-56.41604039585218,-56.01004345295951,-56.823123877868056,-56.489660483784974,-55.82898611808196,-56.55689539713785,-56.681778200902045,-57.10962801007554,-56.88750544562936,-56.02759855752811,-55.18945348961279,-55.461064661853015,-55.546515052206814,-54.69879110669717,-55.662677051033825,-56.165565961040556,-56.29954931791872,-55.93906970182434,-56.51095671672374,-57.339827766641974,-57.03695295704529,-57.6400351440534,-57.77941076178104,-58.025713006500155,-57.06400697026402,-56.191533777397126,-55.961727124173194,-55.89067107718438,-55.805956684052944,-55.8176380796358,-56.077670126222074,-55.223844593856484,-54.92820041999221,-55.48789911577478,-55.94376821955666,-56.17721833428368,-56.30813922965899,-55.3320918190293,-56.19940405804664,-55.68963546026498,-56.53878925554454,-57.13653670204803,-56.705453837290406,-55.94108399376273,-55.696203843224794,-56.26939002564177,-56.48858578177169,-57.355517849326134,-57.42651701672003,-57.74902504310012,-57.652054770383984,-57.384419112000614,-58.26385490875691,-58.94563597626984,-58.596531248651445,-57.940893607679754,-56.94259614031762,-57.288057589903474,-57.08535704994574,-56.13723564427346,-56.47103753965348,-55.91446366114542,-56.63832180900499,-56.19675765512511,-56.37506167823449,-57.256127879954875,-57.559609645511955,-58.242799897678196,-57.66483251797035,-57.368888231460005,-57.087075249291956,-56.73663863167167,-57.423225492239,-57.50741347158328,-57.19311267044395,-57.06961415428668,-56.16380744194612,-56.14341559354216,-57.09192485874519,-57.788254647515714,-56.81091894302517,-56.64175700675696,-57.45230606198311,-58.43478714860976,-57.60133912228048,-57.07423579553142,-57.58269020635635,-57.08353181229904,-57.0387547663413,-56.77780669508502,-57.162505188491195,-57.70237608626485,-57.54787931125611,-57.02276670234278,-56.20380286639556,-56.27957442123443,-56.6130219954066,-57.00513848848641,-56.8799435896799,-57.68568135984242,-58.53499799966812,-59.18793456722051,-59.40661443537101,-59.829233875032514,-59.85271850274876,-60.238047691527754,-60.915421140845865,-60.26390565512702,-60.98653716221452,-60.48026364669204,-60.52773348195478,-60.95651681954041,-60.504088876303285,-61.268198491074145,-60.70923873502761,-60.1397668896243,-60.050326455850154,-60.49635433917865,-59.914909925777465,-59.25400854926556,-59.51021837303415,-58.93679759232327,-59.73565661953762,-59.722266318276525,-60.71550983097404,-60.69976642820984,-61.502039005979896,-62.021546049043536,-62.1072439677082,-62.92957325745374,-62.7657351042144,-62.29019914288074,-61.59272673493251,-61.6247715651989,-60.81244296580553,-60.27480169571936,-59.955777020193636,-59.61842053709552,-59.87766427360475,-59.331817666534334,-60.09525528969243,-59.375385185237974,-58.74533526878804,-58.545510252937675,-57.570814651902765,-57.066314328461885,-57.0070171575062,-56.64909378392622,-57.03911865595728,-56.40604163054377,-56.38712958898395,-56.53985422197729,-56.49552268953994,-55.83995328564197,-56.12308929627761,-56.38813991704956,-56.23458938393742,-56.514744334854186,-56.37453786889091,-56.58250998612493,-57.43441513553262,-56.987488843500614,-57.43674497446045,-56.52137364819646,-57.13881933409721,-56.34911408415064,-57.057695417664945,-57.392072949092835,-56.7416762127541,-57.36584570258856,-56.8113186522387,-55.970129892695695,-56.37938499916345,-56.13736335514113,-56.93833037512377,-56.648894026409835,-55.904395821969956,-56.308540595229715,-57.18039868911728,-56.770371723454446,-57.37037953175604,-57.923143273219466,-57.134831331670284,-56.85624210489914,-56.42982885381207,-56.33060440514237,-56.01761515950784,-55.49479945935309,-55.38389217061922,-56.33042793907225,-56.9635330918245,-57.10568756842986,-57.26256943074986,-56.87562537007034,-57.16733792051673,-56.761775319930166,-55.83967792056501,-55.30598195409402,-55.70477474387735,-55.699430759530514,-55.860447817482054,-55.303243160713464,-54.748826544266194,-54.670213625300676,-53.683112785220146,-54.18026842549443,-53.25361042609438,-52.93235848704353,-53.29927815403789,-53.741488691885024,-53.045253321528435,-52.14980809018016,-51.83093375246972,-52.20435432065278,-53.019403469283134,-52.068827650975436,-51.87077360646799,-51.082242782227695,-52.04554759711027,-51.0894617671147,-51.85865271510556,-52.25992500362918,-51.83711101813242,-52.42005188111216,-51.628918775357306,-51.89106107270345,-51.54483234230429,-51.34166814060882,-51.8187033967115,-51.338437002152205,-51.87505318503827,-51.98731765104458,-51.83537155110389,-52.6663460531272,-52.3896729205735,-52.71137777529657,-52.70541725540534,-52.603163690306246,-52.03592560440302,-52.36444860417396,-51.80778791429475,-52.75109297549352,-53.25290997326374,-52.59290955075994,-52.50765591626987,-52.23878902383149,-52.24346818169579,-51.85734030138701,-50.89926418568939,-50.463354784529656,-49.777881569229066,-49.89707998698577,-50.812810809817165,-50.53537655994296,-49.84357639355585,-49.16143033700064,-49.31023504957557,-50.096282709855586,-50.98452727869153,-50.49454383691773,-50.83355737384409,-51.493656704667956,-51.272294274531305,-51.389368418138474,-51.08583686966449,-51.607003489509225,-50.77342192456126,-50.14889275236055,-49.86016131006181,-49.15137266507372,-49.93120697373524,-49.71035029599443,-50.104960054624826,-50.14250568067655,-51.07859283173457,-51.743005759548396,-50.78080127155408,-50.23944697715342,-50.583431450184435,-51.07550135394558,-51.754260743036866,-52.74122975859791,-52.76222386676818,-53.698268700856715,-54.63930374849588,-54.68401516601443,-54.964402915909886,-55.7979245162569,-56.23566971346736,-55.97135377302766,-56.25162600260228,-55.97912409203127,-56.55454686656594,-55.70068628108129,-56.00139105319977,-56.68333473009989,-57.57781502278522,-57.74521737638861,-56.76006980612874,-57.20980846043676,-56.269583652727306,-56.98989567067474,-57.1868461468257,-56.53193770116195,-55.68977273628116,-56.68410363793373,-57.56799733871594,-57.63134037749842,-57.32477692561224,-56.68708944739774,-57.34241649042815,-56.42303515318781,-56.40159581275657,-57.079561692196876,-57.961800679098815,-58.36282004835084,-59.21058793505654,-58.393949820660055,-57.9244449744001,-57.87145274691284,-57.932599696330726,-58.85531409457326,-58.46375560434535,-59.34042192110792,-59.95457230322063,-60.807355358731,-60.021675006486475,-60.69370668195188,-60.16808793414384,-59.30723215267062,-60.04391895281151,-60.1957628862001,-60.56185429729521,-61.40859783627093,-60.54954033810645,-60.40149125503376,-60.92618961632252,-61.918094352353364,-61.864207822829485,-61.29377975920215,-61.90392374107614,-62.857054428663105,-61.88486592331901,-62.66656286781654,-62.50018022209406,-62.577569460496306,-63.54481866303831,-63.60303399898112,-63.547090493608266,-62.881188075989485,-63.46945526404306,-64.34971521422267,-63.81007340038195,-62.906776832882315,-63.383640518411994,-63.86835930822417,-63.1896230536513,-63.238792604766786,-62.45542250480503,-62.80157665349543,-62.620249268598855,-62.88065309356898,-62.34848066885024,-62.26222636224702,-61.9645212427713,-61.41447813343257,-62.00373963499442,-61.31205734424293,-60.412909728940576,-60.61626434698701,-61.367546810768545,-61.24669193569571,-61.18038642080501,-61.92434881487861,-61.70741332927719,-62.10874206200242,-61.596059828065336,-61.96323832543567,-61.87433861196041,-62.74722130363807,-62.9292432917282,-61.99792909389362,-62.24777483008802,-61.70934897148982,-62.634364169090986,-63.30785576719791,-63.779107249807566,-63.84898908622563,-64.81128369364887,-65.3455858216621,-66.24725839402527,-65.51381169259548,-66.04155476065353,-66.32578741014004,-65.68161436961964,-65.29054106771946,-64.94905888848007,-65.46911789570004,-64.90042791189626,-64.33129089837894,-63.596573831513524,-63.34388775611296,-64.33434489835054,-64.45825963141397,-64.32075312780216,-64.1689204229042,-63.17346911644563,-62.696453728713095,-62.5819077170454,-62.445863818749785,-61.73509435355663,-61.459769636858255,-61.45071908272803,-60.58629956096411,-60.33318632096052,-59.98105700779706,-60.740856661926955,-60.03452856140211,-60.42017404688522,-60.9512440757826,-60.83335098158568,-60.336297353263944,-59.9550012354739,-59.451744459569454,-59.63009029906243,-58.872978527098894,-59.68688916135579,-59.559267250820994,-58.851057791151106,-58.77042201021686,-58.41643638489768,-58.531707904767245,-58.037819400429726,-58.43429074715823,-57.908755738288164,-58.314060129690915,-57.363892424851656,-57.25146952085197,-56.89401613920927,-57.32814998365939,-57.11809809226543,-57.72683302173391,-58.20204732660204,-58.87459467817098,-59.57393092894927,-59.14188725594431,-58.35330076375976,-59.09578223340213,-58.84063971741125,-58.901933055371046,-58.796793228480965,-58.18528588954359,-57.60633644554764,-58.029159461613744,-57.14737983606756,-56.43614822719246,-56.769038915634155,-57.58034110767767,-57.82280249753967,-58.797085577156395,-59.49745966028422,-60.25726686185226,-60.89597927220166,-61.725048983003944,-62.41194866551086,-62.32989530591294,-63.28611603844911,-62.52073112362996,-63.45834233285859,-62.98625558195636,-63.79885109746829,-63.194474164396524,-62.35465638525784,-62.34171762270853,-61.40780572127551,-61.23810687568039,-61.24800935247913,-61.23125723609701,-61.37328668311238,-62.10463629569858,-61.52899334207177,-61.06953985290602,-61.79784332495183,-61.94162532873452,-61.86189984949306,-62.39079269813374,-62.84147729445249,-62.04945882735774,-63.00832729367539,-63.44296209793538,-63.74320531124249,-64.16135436389595,-63.959182385355234,-64.86391275096685,-64.8329904479906,-64.81237347004935,-64.76712312083691,-64.24412802467123,-64.62228334089741,-65.16209145262837,-64.2538687242195,-63.73769985837862,-63.97727594152093,-63.07720139436424,-62.58042420865968,-62.91324645187706,-62.469584728591144,-63.0281949499622,-63.00362389953807,-63.431872739922255,-63.910657023545355,-64.05216762702912,-64.34255108889192,-64.51333213178441,-64.28901491966099,-65.14103575097397,-64.7799409055151,-65.01083938637748,-65.56377594452351,-65.60057669971138,-65.31623381841928,-64.39876270387322,-64.97987476969138,-65.2856490695849,-64.95571306021884,-64.29747525323182,-65.26941956346855,-65.3940878789872,-66.13932610489428,-66.82879032799974,-66.41522891772911,-66.16074759978801,-66.63159490516409,-66.74246293399483,-66.29789747623727,-66.71255712443963,-67.379078715574,-68.03585883136839,-68.65924759628251,-68.07078018551692,-67.53360075876117,-68.26016189996153,-68.80765289440751,-67.94303604960442,-67.7750979536213,-68.31964850239456,-68.8235011738725,-69.73490186594427,-69.46868849918246,-69.85843254439533,-69.26524420129135,-69.42246772581711,-70.29954229993746,-70.02236039191484,-69.1834303191863,-69.6761038955301,-69.93978447746485,-69.6591484840028,-69.29167000437155,-69.80611686035991,-70.07127523003146,-69.58681045100093,-69.3697173059918,-68.93416502745822,-69.6298852856271,-69.4343938571401,-69.35607368405908,-69.61669516051188,-70.38215953297913,-70.81681269686669,-71.80416618380696,-70.92988144420087,-70.6868191761896,-71.32286569522694,-70.51709899958223,-69.80762387719005,-70.47235734714195,-69.70051010325551,-69.50238759582862,-70.4093645378016,-71.32960050879046,-71.27515065483749,-71.37139713158831,-70.72975705517456,-70.19138509454206,-70.08439891133457,-70.7922687982209,-70.82113274466246,-71.81859468808398,-71.25927855167538,-71.102890889626,-71.30948572279885,-70.64245817158371,-71.2381636640057,-71.52664753980935,-71.71326230559498,-71.11525069130585,-71.85860792221501,-71.17684885160998,-71.07455076882616,-70.29717259481549,-70.936736760661,-70.08546105027199,-69.10483787534758,-69.54727437067777,-69.97862268704921,-69.59906838228926,-69.62854636041448,-70.28822142304853,-69.6887251585722,-69.52915688278154,-69.20512204663828,-68.75965825235471,-67.81066701281816,-66.83404106413946,-66.2731234873645,-66.88551225000992,-66.7103007081896,-66.68163598934188,-66.25165133411065,-66.6844213004224,-67.28069705376402,-66.6813008915633,-66.12058400548995,-65.57390166819096,-64.86105458717793,-65.11853197962046,-65.61390968598425,-65.93108713813126,-66.38532766420394,-66.33772795833647,-65.43921724660322,-65.9122165357694,-65.38481411570683,-65.52932051895186,-65.99616798758507,-66.89028244791552,-67.16834280686453,-66.98562028771266,-66.182238439098,-66.74691130686551,-66.6426715622656,-67.41567272134125,-67.57038745610043,-68.35801341244951,-67.42388320341706,-66.99982398375869,-66.89717081701383,-66.93051506904885,-66.58726825984195,-67.42008630931377,-67.37460310477763,-68.35664780810475,-68.38061529351398,-68.80217879498377,-67.94774172501639,-67.88175605935976,-67.33805889077485,-66.95602815970778,-67.28870867285877,-67.29640021640807,-67.61379857733846,-67.25768951280043,-67.56141027528793,-67.23816031310707,-66.55082592880353,-65.72113488940522,-66.15323227690533,-66.39639504207298,-67.00592573639005,-67.61607687594369,-66.99521251954138,-67.51800964493304,-67.88002944784239,-68.09979383973405,-68.59500642865896,-69.11234111338854,-69.23294435022399,-70.19579478586093,-70.92434994643554,-70.58138393005356,-69.66498539596796,-69.73161311540753,-68.74269252177328,-68.73083867691457,-67.97074880730361,-67.25826521310955,-66.91982462909073,-65.97882259497419,-66.11880562175065,-66.85880027106032,-66.26269563939422,-66.12573303189129,-65.51372411148623,-64.79270752612501,-64.23136742971838,-64.3351843925193,-64.47145732492208,-63.771971330046654,-64.6826066779904,-64.26479022623971,-63.366530330851674,-62.382516934070736,-62.20806774869561,-62.840403099078685,-63.70352427382022,-64.10280184168369,-63.126453613862395,-62.69166311249137,-63.44120902614668,-64.09227775409818,-63.652993033174425,-62.76629090635106,-63.47233611764386,-62.919369861949235,-62.96011093258858,-63.72678063204512,-63.70642748521641,-63.86935777077451,-64.17604686599225,-63.867992179933935,-63.933984387200326,-63.94338714610785,-63.808512785471976,-64.4279992422089,-64.4107870622538,-64.97303654486313,-64.31008039135486,-63.33424850832671,-63.00195975089446,-62.37434290442616,-62.436445192433894,-62.1576221678406,-61.24295930331573,-60.89621939463541,-60.70825928961858,-60.78295715525746,-61.68246875843033,-61.4725470142439,-60.54607188189402,-60.61184320319444,-59.67816989449784,-60.51344771683216,-60.68188059190288,-60.92187760490924,-59.927673497237265,-59.26980192353949,-59.96281010378152,-59.80856709647924,-59.09675956889987,-59.56861295970157,-58.91031396295875,-58.6061541242525,-57.63178361300379,-57.36056031100452,-58.043073154985905,-57.595073285046965,-56.865233967546374,-57.62484808266163,-57.06932703638449,-58.04237966099754,-57.68742914823815,-58.34630863042548,-57.68383308919147,-57.010318976361305,-57.799557853955775,-58.52009652508423,-59.18983377609402,-59.36961835063994,-58.8928987425752,-59.763592772651464,-59.4739391990006,-59.71764586213976,-60.266787549015135,-59.8169906004332,-60.095432305242866,-60.96512327995151,-60.53965746052563,-60.926514581311494,-60.98009262373671,-60.97070713387802,-61.40544944861904,-61.175774885341525,-60.537905232049525,-60.31437375070527,-61.05074178241193,-61.65015449980274,-60.938532549422234,-61.49178546667099,-62.10191254550591,-61.13890558714047,-61.67763753607869,-61.762604859191924,-62.00842850469053,-61.37262422405183,-62.04281670227647,-62.60726100485772,-62.836057991255075,-62.66605061106384,-62.353272784966975,-63.03937294986099,-63.413004961330444,-62.417676341719925,-61.52953978115693,-60.99197350861505,-60.31184488674626,-59.40313221421093,-60.08654930628836,-59.90888671576977,-60.74871500954032,-60.403880566358566,-59.88192138308659,-60.23607969051227,-60.38885833276436,-60.53549023484811,-61.20305155450478,-60.26259190775454,-59.728429125156254,-59.24898666795343,-58.63376357406378,-59.204082186799496,-58.8905747202225,-59.39173182519153,-59.515332710929215,-59.39649891294539,-59.921368887182325,-60.17473157355562,-59.831543791573495,-60.08183004334569,-59.371273497119546,-59.51977132447064,-59.366202981676906,-58.627967674750835,-58.90548123512417,-58.06955299852416,-58.983345760032535,-58.85585395479575,-59.34648092929274,-58.487994093447924,-58.562896688468754,-58.0908375591971,-58.1916665234603,-57.714503910858184,-58.60452908696607,-59.352811286691576,-60.050352366641164,-60.451040821149945,-60.779699036851525,-60.911800843663514,-59.96122904960066,-60.3442312842235,-59.969173102639616,-60.56828525336459,-59.88757544243708,-59.68922903575003,-60.125770351849496,-60.409899317193776,-60.53276170650497,-59.87937876023352,-59.433864869643,-60.19649847410619,-60.52224522223696,-61.397770112380385,-61.72672712896019,-62.26296670921147,-62.80281210690737,-62.72907479899004,-61.80586813297123,-62.20930320722982,-62.986003070604056,-62.50654312595725,-62.8476006728597,-62.9108857777901,-62.32624919945374,-61.68121463013813,-62.21657746843994,-62.10076990770176,-61.42153197200969,-61.55089298821986,-61.44167450862005,-61.26549731800333,-60.95604112651199,-61.85328617691994,-61.8413542220369,-62.638834710698575,-63.11413655243814,-63.242261921055615,-62.93665160704404,-62.84243666892871,-62.65816600807011,-62.4763873568736,-63.38340470986441,-62.743159036152065,-63.60802317922935,-62.98969114013016,-62.24259289074689,-61.67730165692046,-61.2803075062111,-60.91085824975744,-61.21553349494934,-61.01105273980647,-61.42739393748343,-61.39471983117983,-60.632997709326446,-60.08957408228889,-59.71487612556666,-59.34805963607505,-59.83437364222482,-60.25994557188824,-60.92968639358878,-60.4291983069852,-60.354995167814195,-61.02233778545633,-60.61508523160592,-61.01497093215585,-60.79831677582115,-61.61956048477441,-62.360283692833036,-62.016840181313455,-62.64506199583411,-63.22441708855331,-63.7510410444811,-63.0430391584523,-63.53620613506064,-64.49443283258006,-63.97259709285572,-63.98945382935926,-63.22065268596634,-62.51403880631551,-62.54592737322673,-62.950222871266305,-63.139550261665136,-62.57152178324759,-63.19924165541306,-63.43314530653879,-64.43298975005746,-65.03225221438333,-64.31851106416434,-64.4481403324753,-63.55614301050082,-62.62560985609889,-63.14311909582466,-62.96003220323473,-62.629591420292854,-61.896133564878255,-60.97757216403261,-60.32204579934478,-60.65557764098048,-60.107511243317276,-59.94734558928758,-58.98804943775758,-59.31239836104214,-58.98546195263043,-58.53078556153923,-58.337023709435016,-57.687841036356986,-57.85643265256658,-58.377085144631565,-59.04470307426527,-59.386177693493664,-60.150157406460494,-60.368267168756574,-61.05671830009669,-60.895134657621384,-61.85203329613432,-62.104988439474255,-62.80489494325593,-63.59101940598339,-62.90730013418943,-62.791055439040065,-63.594557302072644,-64.58265683194622,-63.72021050332114,-63.498965396080166,-62.580078496132046,-61.97307071276009,-62.08024557726458,-62.06068651890382,-61.22039462253451,-60.48159226728603,-59.7611751803197,-59.618507500272244,-59.68686206219718,-60.569089768920094,-59.96150892460719,-59.575105304829776,-59.48430168116465,-58.807434930466115,-59.54470530105755,-59.29440018674359,-58.861483877990395,-58.4102327064611,-58.10502480342984,-57.18412601109594,-57.82016325555742,-58.383990954607725,-57.963915680069476,-58.895263792946935,-59.247329253237695,-58.508589951787144,-58.672883975785226,-58.806488561909646,-58.82601257460192,-58.523808354046196,-59.26198112824932,-58.976575788576156,-58.93289295351133,-58.820940264035016,-59.04682419914752,-59.929773229174316,-60.838453078176826,-61.34361044084653,-61.69817371759564,-61.21970947179943,-60.23907881742343,-60.89917072374374,-61.39849382126704,-61.92483543884009,-62.81126143923029,-63.45805066684261,-62.627405014354736,-63.04521510004997,-62.89963565720245,-62.270973169244826,-62.71741205686703,-62.357168092392385,-62.137990093789995,-62.275778353679925,-62.70124384155497,-62.514324316289276,-62.60669663362205,-61.991822755895555,-62.53312012273818,-63.093057696241885,-64.01667706342414,-64.68065227055922,-65.07257178705186,-64.76066735945642,-65.09799772733822,-64.58508836571127,-65.26508392672986,-64.3942883447744,-64.8895295378752,-65.0927589898929,-64.72023653052747,-65.34109254041687,-64.86948303179815,-64.68166899494827,-64.50504775438458,-63.50542805157602,-63.87728857481852,-64.45770665863529,-64.82637049769983,-64.85210134042427,-65.25187687342986,-65.94215198094025,-66.63847527001053,-67.14728497620672,-67.15750677837059,-67.79252572311088,-66.84686715109274,-66.44996735313907,-67.3334765038453,-67.05562704568729,-67.72187885968015,-68.00036901514977,-68.70074682403356,-68.76769817667082,-68.40162156149745,-68.31108079152182,-67.86572219571099,-67.90854640863836,-68.61642595240846,-67.85868197493255,-67.94097507977858,-68.58458747295663,-68.44276942498982,-67.92871283600107,-68.13165453122929,-68.60918627120554,-67.82981007127091,-67.78124303510413,-68.2404809659347,-67.42865059711039,-67.34153873613104,-66.68299170210958,-65.70564546482638,-64.99870271934196,-65.78740207152441,-66.30957421427593,-67.05250629875809,-67.18858830165118,-67.03699424350634,-66.33423139154911,-65.8860290874727,-64.91082624904811,-64.69841001927853,-63.71784766251221,-63.99772114818916,-63.73875663848594,-63.90415617125109,-64.54249367583543,-65.07297503668815,-64.7900130553171,-64.41168545233086,-64.7155297929421,-65.61362869059667,-65.52507572621107,-65.14316106587648,-64.20785356359556,-64.27279288647696,-63.59381073853001,-62.96632857946679,-63.749294171109796,-64.73398170666769,-64.95249871816486,-64.80261123552918,-64.0408986210823,-63.81798466714099,-63.432753236964345,-62.71855634637177,-63.487492703367025,-62.978261470329016,-62.489728446584195,-62.76632282463834,-62.85600754665211,-62.203937586862594,-62.09300073655322,-61.41081148991361,-61.87514435313642,-61.634778482373804,-61.10352101735771,-60.82233318546787,-59.86500854836777,-59.69944719551131,-59.35056165745482,-58.51254566246644,-58.65478554647416,-58.468250402249396,-58.32850011065602,-59.19862381136045,-59.51094744633883,-60.414433472789824,-61.01355852000415,-61.14754867507145,-60.542334580328315,-61.223450432531536,-60.61222189059481,-60.30135157285258,-60.68275569891557,-61.6614219029434,-62.331104872282594,-63.06130712572485,-62.637992310803384,-63.59651643643156,-63.97235446423292,-64.51290051173419,-65.29061936726794,-64.75609185406938,-64.99595343321562,-65.84439392760396,-65.78773531038314,-65.15124713582918,-65.942014019005,-65.61006104480475,-65.5254943263717,-65.47528036590666,-64.59360138559714,-64.33016806375235,-63.38985135825351,-64.17675819899887,-63.53674243343994,-64.35659940121695,-63.7200860674493,-64.57001325301826,-65.46229746658355,-65.97410922450945,-66.64601393043995,-67.18476697755978,-67.53921596845612,-68.24933790229261,-67.78419860079885,-68.68342740600929,-69.66039201058447,-70.59974398231134,-71.07595762843266,-71.16323379101232,-71.95691641746089,-71.28493774682283,-70.5839008865878,-70.52781687118113,-70.5491356132552,-70.32009177654982,-69.47077669203281,-69.29993535391986,-69.79914483940229,-68.90929849585518,-69.73467613616958,-70.47580906795338,-71.17009138129652,-70.28168022772297,-69.3721434995532,-68.95873090717942,-69.8548156186007,-69.4126178896986,-70.04378525866196,-69.9005823051557,-70.05885183392093,-69.48662123084068,-69.74448524275795,-70.52400441095233,-70.47752565145493,-71.44363646302372,-71.71052598021924,-72.51362045668066,-73.05041331099346,-72.49580733617768,-72.60203325096518,-71.7265124632977,-72.20543353212997,-71.66639946168289,-72.28554223058745,-72.08805260667577,-71.16048366297036,-71.96562742302194,-72.55996115412563,-72.20724911894649,-71.67560992529616,-71.03433761745691,-71.69392530061305,-72.38780789542943,-72.71844467241317,-72.15750570967793,-73.04650709265843,-72.16119726514444,-73.08142524817958,-73.68170218495652,-74.18648223439232,-74.54724741447717,-73.58538816450164,-74.45442190067843,-75.03956476645544,-75.44449036894366,-75.6475385078229,-75.21906677866355,-74.60548760741949,-74.12599336542189,-74.63334717368707,-75.00646334607154,-74.22511064773425,-74.2505625761114,-73.69516900507733,-73.23445939319208,-74.18109079543501,-73.41007000068203,-74.28319699456915,-73.99758912296966,-74.28512859717011,-74.0142234833911,-74.58462548162788,-75.34656463516876,-75.12638920219615,-75.95952557446435,-75.89419008558616,-76.10875705024227,-76.10859648231417,-76.1477688299492,-77.05341363884509,-76.64897409500554,-77.0257366928272,-76.1865566931665,-76.54588017472997,-76.23634446738288,-75.60208710003644,-75.98943980922922,-75.87989736674353,-76.14442225638777,-76.38338415231556,-76.5806311252527,-75.82833969267085,-74.86466458812356,-75.62923256633803,-75.71343252854422,-76.0627888282761,-76.27322693588212,-75.6539594558999,-76.59039044985548,-75.80707838293165,-75.75152356782928,-75.55643044505268,-76.55255352985114,-76.72512003825977,-76.36329181492329,-75.9630755498074,-75.5701173315756,-76.31498197233304,-76.905243168585,-76.08740291139111,-75.52013255888596,-76.5117670292966,-76.17332621430978,-75.5852142390795,-76.55122591881081,-76.05498574255034,-76.33793425979093,-76.72296476876363,-76.49076938815415,-76.08882005186751,-75.18406353751197,-74.85467463964596,-75.31067882664502,-76.12105188379064,-76.8460636571981,-77.8238940355368,-77.37029063142836,-77.46087168902159,-77.28156173368916,-78.00077434675768,-77.01609773235396,-76.73706956626847,-76.345688293688,-77.00622512493283,-76.38894841633737,-76.49709740560502,-75.62340249167755,-74.76300062052906,-74.07537530269474,-74.49612310156226,-73.80700020631775,-72.81866009766236,-72.69906255416572,-73.36679513892159,-73.84053480951115,-74.7949747866951,-74.20437875809148,-75.05942432256415,-75.70302940625697,-75.05474963458255,-74.60857537807897,-74.98835952254012,-74.9096529292874,-73.96839556936175,-74.32637058617547,-75.05628074798733,-75.3921847557649,-74.89685678202659,-74.38657507905737,-74.74703710852191,-74.10120353661478,-74.13533635856584,-73.5253671547398,-73.31012269388884,-72.45530192600563,-72.97179165342823,-73.62740790704265,-73.15132683701813,-73.56547360261902,-73.5772630632855,-73.86451780376956,-74.30885276710615,-73.56912845885381,-74.55981228034943,-75.05653129704297,-75.78168060258031,-75.93017665529624,-75.78325710166246,-75.1577305519022,-75.14052585093305,-75.58540329895914,-76.36704192310572,-77.15176769113168,-76.17988957092166,-76.94316378142685,-76.86664012959227,-76.58021121053025,-76.86135268211365,-76.61858671717346,-77.32510533975437,-78.09038240648806,-78.44727948401123,-77.47019615536556,-78.11642902018502,-77.59102187212557,-77.05007085530087,-77.19628452463076,-77.65062083257362,-77.55324054835364,-77.90497096069157,-78.08336950559169,-78.58137451438233,-79.37594868987799,-79.19673841213807,-79.40023820800707,-79.25483972299844,-78.31341017503291,-79.22273265244439,-80.0576569661498,-80.429261631798,-81.06257997080684,-80.30485567217693,-80.92088549258187,-80.86537563987076,-81.55667832866311,-81.4764720830135,-80.913118341472,-81.64654257148504,-81.92450621724129,-81.216211786028,-81.84735945658758,-82.59252107003704,-81.6389114591293,-81.95656024897471,-82.40051364060491,-83.351687383838,-83.37840434676036,-83.31218441389501,-83.78952109348029,-84.75811766739935,-85.72896907525137,-85.91534089064226,-86.19480746844783,-86.28227352909744,-86.95024017523974,-86.37848333874717,-85.80172231886536,-86.18878062441945,-86.82760801492259,-87.32979073608294,-86.91215192247182,-87.67485636798665,-87.72691587824374,-88.0591818713583,-87.62951743090525,-86.74659832008183,-86.30398841155693,-85.60438587190583,-85.98048428911716,-85.38234984502196,-85.48223283467814,-85.2008003233932,-85.62448832951486,-84.93022066401318,-84.3478714027442,-84.56745363213122,-85.12752535147592,-85.14124806784093,-86.0458628735505,-85.14835502114147,-85.66887600068003,-86.39838062413037,-86.56192502845079,-86.91225798474625,-87.06517276354134,-87.38382280198857,-88.1988431494683,-88.60156518733129,-87.6113768122159,-88.04986681696028,-87.14507535565645,-86.39301052130759,-87.21813093917444,-86.63057572580874,-87.33201274694875,-86.97348848404363,-86.50093130860478,-86.76041694357991,-86.48301552096382,-86.11101505998522,-87.05130932759494,-87.67416414385661,-87.02690764470026,-87.362795450259,-88.28139999881387,-87.35650481982157,-87.7168386336416,-88.63976763561368,-88.54461135389283,-88.1680380422622,-87.79603225830942,-88.01032725535333,-87.29397411178797,-86.92824554024264,-87.55880353180692,-87.53448888519779,-87.81714282045141,-87.73971950169653,-87.07057416019961,-87.99014877481386,-87.84715759241953,-88.83272970980033,-88.096271334216,-88.58930846722797,-89.40237343730405,-90.13869208609685,-90.13280849624425,-89.3051416114904,-89.42420636257157,-89.83915554266423,-89.20138771180063,-88.39742566738278,-88.09401843743399,-88.14920045714825,-88.48102435469627,-88.40102955000475,-88.44944132491946,-88.78824870754033,-88.36600693035871,-87.38609696924686,-86.41533367801458,-87.02618068130687,-86.83066899795085,-87.20062746061012,-87.05151076149195,-86.23792491760105,-87.11487721186131,-87.97286773659289,-87.75277820881456,-88.10402986546978,-87.58508878434077,-87.94881628034636,-88.02561374986544,-88.10946461604908,-88.7731603467837,-88.56020404212177,-88.54634573310614,-87.60121962800622,-86.69888032833114,-87.21511752996594,-86.60189846390858,-86.04196005361155,-85.05195644777268,-85.97471659537405,-86.02644728496671,-85.31496629491448,-85.19224357092753,-85.96007762523368,-85.52473725797608,-84.6849701483734,-84.55425486899912,-83.59565436374396,-84.22563055949286,-84.7848961497657,-85.09601894766092,-84.43974481709301,-85.06354531971738,-84.22929673362523,-83.89573632879183,-84.61965116206557,-84.99092874024063,-84.10937460279092,-84.04813823057339,-84.59446503035724,-84.55762606207281,-84.97693188907579,-85.86669757217169,-86.65981154330075,-87.60846160678193,-87.9212775961496,-87.55769318016246,-86.59805478714406,-86.9222353217192,-87.32116839010268,-86.59214738477021,-86.93220297945663,-86.19105620961636,-86.82549581537023,-87.65719893015921,-87.65175088495016,-87.65200921334326,-88.08866337593645,-87.59624858992174,-88.23750877380371,-87.49620514875278,-87.280392838642,-86.73091826867312,-86.8975855880417,-86.99578470597044,-86.70218127407134,-86.66283953608945,-86.78058402286842,-87.13643380394205,-86.59738380927593,-87.54140445496887,-87.82971691945568,-87.6313729644753,-87.1658580750227,-87.4117846689187,-87.63203703984618,-87.72001142241061,-87.22502493811771,-86.66374907875434,-85.78568054828793,-84.97562311869115,-84.06925981678069,-83.88985304813832,-83.0253120441921,-83.76922222459689,-83.417876558844,-82.79369794158265,-82.61862291535363,-82.06133500346914,-81.44243320869282,-81.80291018774733,-82.60266220010817,-81.7419739542529,-82.67645612824708,-83.03110555559397,-82.48169230716303,-83.08953673299402,-83.86725712195039,-83.04820274282247,-83.92393515817821,-83.38167876144871,-82.85189069062471,-82.2913677841425,-81.69758789567277,-81.51432348275557,-80.70122622512281,-80.6530841756612,-80.92450563888997,-80.84971065167338,-80.12419362738729,-81.00112121086568,-80.72431528894231,-79.83614296838641,-79.74537335243076,-80.1700799758546,-80.65739702479914,-80.74236429063603,-81.15804386185482,-80.32230726769194,-79.76342322304845,-80.06621954683214,-79.77418579626828,-80.53037736564875,-79.79912761226296,-78.83769211452454,-78.76156983105466,-78.06395894102752,-78.41541958227754,-78.94600678002462,-79.08831258490682,-79.22941034240648,-78.75071331206709,-78.36465796455741,-78.25042623840272,-78.58244192833081,-79.13963044714183,-79.14690443687141,-78.80867320206016,-79.21226157061756,-79.0077329245396,-78.14750509569421,-78.25868299882859,-78.79730855114758,-78.20722866617143,-78.7520674271509,-78.97937579639256,-79.2297713747248,-78.90642550773919,-79.39566781651229,-79.4089834340848,-78.55453820200637,-78.84842856647447,-78.08233280619606,-77.76066489005461,-77.17105502448976,-77.7315427325666,-78.23665753379464,-78.97316356468946,-79.50476988498122,-79.5128098060377,-80.50833484064788,-80.44611759111285,-80.17793015949428,-79.70373216085136,-80.35625527659431,-79.5161631014198,-80.26815737364814,-79.54594218730927,-78.61539241392165,-77.99647895339876,-77.63836768642068,-77.63466717442498,-77.17063915356994,-77.92077938001603,-78.7142147035338,-78.62752512935549,-77.6613337462768,-77.71220799256116,-78.53594990586862,-78.70436950167641,-79.12629738356918,-78.50226400559768,-78.08320442633703,-78.54492754209787,-78.31178159499541,-78.31715358840302,-78.31653398275375,-78.23955408949405,-77.42510248441249,-77.91196378460154,-78.47664075577632,-79.38776937685907,-79.41000737203285,-79.16977472603321,-79.24346418166533,-79.93329449556768,-78.99979157233611,-78.0166354519315,-78.70010141376406,-78.80735651310533,-79.17437646631151,-79.09510338492692,-78.96415301272646,-78.67680413695052,-78.72773615317419,-78.44004226149991,-79.3629791541025,-80.02043228596449,-79.05171177536249,-79.65306068211794,-80.17493664566427,-79.40830726735294,-79.45178592577577,-78.69192967284471,-79.40103161334991,-78.77751047536731,-79.76630315603688,-80.05831044400111,-79.14349235966802,-78.7505876198411,-79.70566551480442,-80.42865196522325,-80.36606558784842,-79.752222080715,-79.40750631690025,-80.25938993692398,-80.17799049988389,-80.79467978980392,-81.50345909129828,-81.04633021634072,-80.36288494803011,-80.16690341895446,-80.11985293915495,-79.74414312839508,-80.27723634289578,-80.90478057740256,-80.03132812026888,-80.12755590397865,-79.93492183554918,-79.54759664880112,-80.4885816173628,-81.28845702903345,-82.08033798169345,-81.46163149923086,-82.31057974882424,-82.29029100202024,-81.29557549767196,-81.03575725900009,-80.29248214047402,-80.12396611552685,-80.75884976238012,-80.35730976145715,-80.90534381335601,-80.71616682549939,-80.98617054708302,-80.51480022165924,-79.81890816381201,-79.65659866249189,-80.33187797386199,-79.41716532129794,-79.35677549382672,-79.32303667580709,-79.20079774269834,-79.21902449754998,-79.78274092124775,-80.65365286916494,-80.36608312698081,-80.4735140115954,-79.7763617024757,-79.01422228617594,-78.1795500558801,-77.41792352171615,-78.06713764136657,-77.54835804412141,-77.96740555251017,-78.20233111036941,-77.56327682780102,-78.08647144399583,-77.39457962708548,-77.80126369418576,-77.29423925140873,-77.58468616567552,-77.66121225710958,-76.6617072345689,-76.51319393375888,-76.7301435880363,-75.85863167978823,-76.63885365100577,-76.92735552275553,-76.2541815652512,-75.49631173582748,-75.74243234051391,-75.5213731052354,-74.6244630147703,-75.44996566791087,-75.86509593809023,-75.84080909052864,-75.01857328927144,-74.5651339692995,-75.24091197410598,-76.11121354345232,-75.1605304069817,-74.18556975852698,-74.73112045694143,-75.53747459407896,-76.16808386333287,-76.59008952090517,-76.56825239676982,-77.14004126051441,-77.44038540916517,-76.77643841225654,-76.95342875597998,-76.5948970601894,-76.38617948675528,-76.3005212158896,-76.30915907584131,-75.73331375652924,-75.25610878318548,-74.32935530785471,-73.89302855264395,-74.14763867948204,-74.44103802600875,-74.64045228017494,-74.5382263395004,-73.71280136657879,-72.9127813023515,-73.07699441397563,-73.94812407670543,-73.51793336728588,-73.35048615885898,-72.53998238733038,-73.37960176542401,-72.94057953124866,-72.9094569333829,-73.34751651156694,-73.0182648608461,-72.51917965617031,-72.37122013699263,-73.30278646666557,-72.35743381129578,-72.17377378046513,-71.37341636093333,-70.94751697778702,-71.63654690328985,-70.92007817840204,-71.62653210805729,-72.32412091968581,-72.26182223903015,-71.44360324088484,-71.43877663323656,-71.86005189502612,-72.4728956897743,-71.69679090473801,-71.82180834840983,-72.3716642842628,-73.15821057138965,-74.1354546607472,-73.9562032953836,-72.96774716582149,-72.7473380761221,-72.80389880947769,-71.94290450681001,-72.00403999304399,-72.12637738278136,-72.20095510780811,-72.41928076790646,-72.62213917030022,-71.71502098161727,-70.98692788602784,-71.40930502908304,-71.87829431053251,-72.6297920299694,-72.79551165131852,-72.66705286502838,-72.03936977824196,-72.41869733529165,-72.679252283182,-72.24125731969252,-72.56004113983363,-72.68746948288754,-72.85795916710049,-72.25393490958959,-71.8132672905922,-72.20397776085883,-72.47511239768937,-72.49336032988504,-71.9707886762917,-72.93607367714867,-73.12196959462017,-73.62188720609993,-74.46543488791212,-74.25486693484709,-73.48315332317725,-72.75234902231023,-72.67480378365144,-73.27646701270714,-73.09438283042982,-73.26354337669909,-73.37855021236464,-73.87153343157843,-73.61310363002121,-72.64398836623877,-72.07690498279408,-73.07049440778792,-72.53270180383697,-73.17191086802632,-73.34310592571273,-74.21235436433926,-74.88278089929372,-75.36704434920102,-75.9237640039064,-75.39655251381919,-74.50100512476638,-73.73872169060633,-72.91290605207905,-72.15952042350546,-72.2835611444898,-72.40763996867463,-72.85345356026664,-73.01597517402843,-72.87995681818575,-73.4126997650601,-74.33564466331154,-75.24944801814854,-75.96787556726485,-76.48729325411841,-77.34023442305624,-77.32484388398007,-77.61554012540728,-77.4465867956169,-76.95115035865456,-76.90145732555538,-76.9482659753412,-77.60833678906783,-77.4824151112698,-76.80828397674486,-77.74667311180383,-78.63465794175863,-78.5048822471872,-78.46017107972875,-77.6872421070002,-78.58601943030953,-77.89091041358188,-77.19554251478985,-76.4718960383907,-76.7087457687594,-76.17028568964452,-76.53626254899427,-77.12325723748654,-77.68939532293007,-78.1250697504729,-77.44869022723287,-76.99335696874186,-76.44889106461778,-77.37351138843223,-76.85404545580968,-76.00386694911867,-76.8580412552692,-76.20580306043848,-76.33371778158471,-77.14190113125369,-77.57958494406193,-77.42680033762008,-77.58684396976605,-76.90077705821022,-76.00507228821516,-75.85977109987289,-76.85714124701917,-76.74513291567564,-77.0624940819107,-77.2533160992898,-77.34708805661649,-78.2136056884192,-77.40545810433105,-77.21238442976028,-77.36438867496327,-78.33210978936404,-77.78993829339743,-77.82346946466714,-77.7687305775471,-76.88432118855417,-76.73374778730795,-75.81168816192076,-76.23299390496686,-75.65870172111318,-76.48062786692753,-76.64320684410632,-76.3915702146478,-77.0399849852547,-77.09955375734717,-77.09594699414447,-77.46274905093014,-76.52220618817955,-77.19647163385525,-77.09297606628388,-76.3079322935082,-75.89821210643277,-74.90423387056217,-75.48037676420063,-76.00659903045744,-76.1517652659677,-76.65261019486934,-76.93192446557805,-76.19661580212414,-75.50137096783146,-74.75522540789098,-75.2297789901495,-75.42758914967999,-75.7828520652838,-76.43337976234034,-76.99355422100052,-77.15835523419082,-77.86996098514646,-77.21987898321822,-78.11174845090136,-77.36533426819369,-76.63801818527281,-77.14294812921435,-78.13288288004696,-77.47002293914557,-78.22975206095725,-77.81934558786452,-78.08876583958045,-77.19885422009975,-77.25835480354726,-76.98617806565017,-77.19958111597225,-77.4328449293971,-78.09690708247945,-77.79894589167088,-78.09460470639169,-78.24414892401546,-77.42664640536532,-78.42275176290423,-77.60609471565112,-77.95804740907624,-77.58269627485424,-76.69963272381574,-76.9108194457367,-76.6455977759324,-75.72749329172075,-76.71564782969654,-76.11121321283281,-76.97510981326923,-77.90992442704737,-78.16806550137699,-77.56911240098998,-77.75460580736399,-76.82935247709975,-75.83669141959399,-76.20828858576715,-76.4231101628393,-75.52808200055733,-75.5330150090158,-75.73525172704831,-75.2159116989933,-75.61878585163504,-75.92260204255581,-76.22189220320433,-75.46080307103693,-75.47095190221444,-75.78915702179074,-75.34750235639513,-75.15131860692054,-75.19972181366757,-74.39200572995469,-75.38841407420114,-75.99332957761362,-76.71398290805519,-76.7062052055262,-76.42253293190151,-76.90975712053478,-76.25637511722744,-77.17799147637561,-77.3933867122978,-76.88869123253971,-76.41202732827514,-76.59109775768593,-76.45166644873098,-75.72267379006371,-75.37815806688741,-75.03019838454202,-75.0308224610053,-75.72255830513313,-74.80289905937389,-75.5530811753124,-76.3311623702757,-75.99297465011477,-76.39251814503223,-75.43149671144783,-75.57027057092637,-75.74501994485036,-75.78737066872418,-74.97928421245888,-74.50470621977001,-75.42804456828162,-75.36297469586134,-74.47200763039291,-74.03765661315992,-73.6648694803007,-73.08686406631023,-73.82572083314881,-74.75425331201404,-75.57646436151117,-75.74629346095026,-76.28386045899242,-76.24446527659893,-75.47755593294278,-75.83211307693273,-74.89558801800013,-75.8422369826585,-75.5657324786298,-74.79298016382381,-74.77545889979228,-75.57417225744575,-76.44483152776957,-76.61297971988097,-77.40178783237934,-76.75984493736178,-76.81367578078061,-77.49979539681226,-76.69517837231979,-76.2734473370947,-76.85495495656505,-75.99635910615325,-76.27383489487693,-75.40220351377502,-75.02634024154395,-75.6680004731752,-75.74892730405554,-75.32135238638148,-74.86973077757284,-74.3081868798472,-73.64454853953794,-73.30167279811576,-72.69510874757543,-73.08226852444932,-73.8312467248179,-73.96647393517196,-73.83471055421978,-73.05426638852805,-72.52832479635254,-72.6629187213257,-72.00972034828737,-71.02769208420068,-70.34213367803022,-70.96567217912525,-71.12569835688919,-71.87185016972944,-71.93357523158193,-71.86456512892619,-72.03054676158354,-72.31084434175864,-72.4980636164546,-73.26085413526744,-72.40145558537915,-72.31718608224764,-71.98238463699818,-71.45978110656142,-72.18742954032496,-72.07735128654167,-71.30334700830281,-70.73810042906553,-71.41541715478525,-72.01829884015024,-72.11186374304816,-71.23470789380372,-71.35589815070853,-71.82936923066154,-72.63138129934669,-72.04354541329667,-71.75160484900698,-71.40812880685553,-71.22736733872443,-70.39556170767173,-71.29296457208693,-70.60951621225104,-71.2677652114071,-71.78853494208306,-72.49099213443696,-71.82636369671673,-71.66606216132641,-72.5975468782708,-72.28578125406057,-72.30702310847118,-71.9522729604505,-72.00723801692948,-71.76013516960666,-72.25475411070511,-71.84776198957115,-71.14228798635304,-70.79369202582166,-70.82718746038154,-71.76111321849748,-71.06566792540252,-71.92871348001063,-72.78200781717896,-73.28182278340682,-72.66000442719087,-71.82526906346902,-71.97034861333668,-71.42881584400311,-71.23915890883654,-71.39196919510141,-70.58062465395778,-71.09073884412646,-72.07710644323379,-72.95246150204912,-73.85833648592234,-74.26860851747915,-74.89349707961082,-74.61200695298612,-74.9389610812068,-75.76468613930047,-75.20718114031479,-74.92281951569021,-75.09698035242036,-74.32885577110574,-73.46416669012979,-73.73040178837255,-74.0301135443151,-74.69239480467513,-74.25131706008688,-74.93133254954591,-74.05467211222276,-73.9754095710814,-73.57670926488936,-72.79423691378906,-73.28736073104665,-73.11709257820621,-73.38739107130095,-73.50036112871021,-73.18712599528953,-72.86713908985257,-72.31293322332203,-73.05408976553008,-72.35774883348495,-72.44913273397833,-72.29012703802437,-72.54271802678704,-73.22575131477788,-73.56820129044354,-73.02226863568649,-73.2246620124206,-73.02411736547947,-72.54391551623121,-72.55719729699194,-73.18243442894891,-72.64183207042515,-72.58487421507016,-72.627835534513,-73.52996288472787,-74.25120131578296,-74.75329680228606,-74.32329753320664,-74.45231774030253,-73.53417886188254,-72.88849202543497,-73.06949004204944,-73.05241840006784,-73.4948569405824,-73.83457684749737,-74.69168079271913,-74.38529591774568,-73.8970100688748,-73.07713225018233,-72.4804143900983,-73.00601282948628,-72.78285477263853,-72.48182465881109,-71.95359982457012,-72.54468377213925,-71.58079071016982,-71.40935899643227,-71.39715643366799,-71.55632043583319,-72.43590446328744,-71.46899843961,-70.50344278709963,-69.93504060525447,-69.76827456103638,-69.4378148256801,-70.38043502578512,-69.58476949576288,-69.35459933802485,-69.36423189938068,-69.47037785779685,-70.04874603869393,-70.2330547333695,-69.39203735906631,-69.97009266354144,-70.11788365524262,-69.53993390034884,-70.07830700092018,-70.70165328728035,-70.1727072102949,-69.84006908349693,-69.02022120915353,-69.10511347232386,-69.56321020191535,-69.17733315238729,-68.99612593231723,-69.52144304849207,-68.76293090498075,-69.43539786245674,-69.82699169730768,-70.16851522214711,-69.5171985081397,-69.02760604536161,-68.16610673768446,-68.01784393331036,-68.8428967972286,-69.83398574357852,-70.27662511821836,-69.61847464600578,-69.01855459343642,-68.44294233759865,-68.20296371215954,-67.72751858271658,-68.4789709332399,-68.82845388539135,-69.24726328952238,-68.46711970958859,-69.11287966184318,-69.31031981995329,-68.86762806586921,-68.55950194504112,-68.28729120874777,-68.41897096624598,-69.0756534608081,-70.02784085087478,-69.75970313930884,-68.8519759811461,-68.18937611719593,-67.61084280023351,-67.38774667400867,-66.9847881034948,-66.58649373147637,-67.44604343455285,-68.42186832381412,-68.69766663759947,-68.8983434420079,-68.10956857167184,-69.00730043509975,-68.62956869229674,-67.82286887057126,-68.28155804378912,-68.13485508272424,-67.30910746986046,-68.20272176153958,-67.46136460825801,-66.51974202645943,-66.3594780578278,-66.66704276809469,-66.27726452983916,-66.67147514456883,-66.14079981436953,-66.56705462001264,-67.23276422452182,-68.10532483039424,-67.22407313948497,-68.15334744099528,-68.73937412910163,-69.47114982502535,-68.56825001817197,-67.97269539767876,-67.54597863694653,-68.20867456914857,-68.95708097843453,-69.16693650837988,-69.80137574952096,-69.19319222262129,-69.489068582654,-69.79471556516364,-68.8726227125153,-68.70154959522188,-68.23849937878549,-69.04114711889997,-68.10564040020108,-67.63343100715429,-66.7167530991137,-65.83376991329715,-66.23695342894644,-66.33657751604915,-66.59225102793425,-67.05787135660648,-67.83726375596598,-67.70025945222005,-68.42114329943433,-68.99869209574535,-69.47096430603415,-68.5004489487037,-67.5281144194305,-68.49451415846124,-68.68342171562836,-69.50292026437819,-69.86721244966611,-70.4789182501845,-70.17355750175193,-70.58912993082777,-70.85520462365821,-71.02741646626964,-71.61702095577493,-71.68661722308025,-71.07823702599853,-71.02664862154052,-71.5553961689584,-72.00165885640308,-71.92848335532472,-72.51219302788377,-72.22979109594598,-72.79374122014269,-73.64607161702588,-73.5630092266947,-73.24088428867981,-73.44399890815839,-73.78659805748612,-73.89986494742334,-74.41365619236603,-74.70830283733085,-73.99276620289311,-73.91488622082397,-74.40801226254553,-73.9274243908003,-73.96142751770094,-74.19403370562941,-73.42066507739946,-73.59141732985154,-73.65644274000078,-73.10133451363072,-72.92657633405179,-72.08925731759518,-72.46339162765071,-73.23880332987756,-72.67700443137437,-72.51435991609469,-71.701955081895,-71.42774852691218,-71.70438322611153,-72.17682364955544,-72.11590124154463,-71.23943533375859,-71.31427137879655,-71.50282956054434,-71.06193090416491,-71.15781867317855,-71.93992756074294,-72.52033868292347,-71.71267726225778,-71.78520551556721,-71.55958353215829,-71.66487532155588,-72.25844985526055,-71.9224360329099,-71.22302282322198,-72.12112028291449,-72.77398717869073,-72.46608301252127,-73.34677941445261,-74.19510941347107,-74.1184968505986,-74.32870355574414,-73.9984129392542,-73.85809033084661,-74.71587205119431,-74.00895924121141,-73.13853607326746,-73.15569744398817,-73.73170006740838,-74.45548147056252,-74.71263763029128,-74.18933247262612,-73.69070828007534,-74.48281323118135,-75.36741476505995,-76.24769136076793,-76.91241100756451,-76.81129649281502,-77.63952742423862,-77.78222923260182,-78.76564283156767,-78.3596816463396,-77.567621470429,-77.5666579566896,-77.1862480584532,-76.74792094808072,-76.36286566592753,-77.21506654378027,-77.83484018081799,-78.40287681762129,-78.87841214798391,-79.28123923297971,-79.41533874021843,-80.21049967268482,-80.06733514089137,-79.76616559363902,-80.39286350645125,-79.88931137183681,-80.49049899401143,-80.58960092253983,-81.04927877988666,-81.31626559142023,-82.25076381023973,-81.91115319728851,-82.67276116553694,-83.1474363678135,-82.73410138580948,-83.35822064941749,-83.25548191228881,-83.09707652032375,-83.20942629734054,-83.79982062755153,-82.96462173014879,-83.68390505807474,-84.28890599915758,-85.16461293026805,-84.91105396160856,-85.6201576734893,-85.61879929620773,-85.11338686197996,-84.90883111907169,-84.92144256690517,-84.58233812917024,-84.16143425926566,-84.7438075109385,-85.12303006835282,-85.47729460010305,-85.23701378051192,-84.79831664869562,-83.98919640807435,-83.18915514508262,-82.45666663441807,-82.36231479048729,-82.89688603114337,-81.90004504146054,-82.37531059840694,-81.78343234350905,-81.50840083742514,-80.91278467793018,-80.5536246271804,-80.73052580049261,-80.14316886058077,-80.02982051344588,-79.95523904869333,-79.56003094045445,-79.62659696722403,-79.51400638837367,-78.78485545050353,-79.7037731888704,-78.9096039859578,-79.26553448475897,-79.22921344684437,-79.44655809924006,-80.08437432628125,-79.87995646242052,-80.22086714254692,-80.35265656374395,-80.61637252569199,-80.71143333334476,-80.52462460519746,-81.45893695671111,-81.66162487398833,-80.69191557122394,-79.944053477142,-80.06220529507846,-80.15114674484357,-80.72888255445287,-81.31984271062538,-82.1826776470989,-82.41509142098948,-82.71111565316096,-82.7157699437812,-82.57979025319219,-81.76556239044294,-82.62592033762485,-82.67947128647938,-82.58124067867175,-83.36746044363827,-83.77426968328655,-84.21123540727422,-84.849686734844,-84.7854270702228,-84.00328110670671,-84.19979905104265,-84.81224021082744,-84.72420460963622,-85.44210740737617,-85.90548803890124,-84.98348658485338,-84.74152445048094,-85.25805797055364,-85.40334306284785,-85.99779861187562,-85.2754420065321,-84.83770610904321,-84.35757706593722,-84.37671813275665,-84.73984218854457,-85.44049790408462,-84.94846961461008,-85.25331004709005,-84.94971394957975,-84.5437363628298,-83.90527262585238,-84.39096800098196,-84.33373664692044,-85.06906441878527,-85.75015198579058,-86.57969431998208,-85.71347485342994,-84.75812882557511,-84.55796587467194,-85.4796889075078,-85.78073380840942,-86.33088040258735,-85.56720075337216,-86.21747064124793,-87.05386121198535,-87.12655090354383,-87.31575050577521,-87.68037353595719,-87.73461049143225,-87.38420363888144,-87.7623273008503,-87.50960972812027,-87.94345859857276,-87.8776524681598,-87.19976691436023,-86.41268138913438,-86.94455996481702,-87.73476302530617,-88.6979125472717,-88.58454110752791,-89.13335411716253,-89.4935580980964,-90.24701990699396,-91.22284796694294,-91.59178706305102,-92.19625613978133,-91.48705700412393,-91.10604079905897,-91.00703920796514,-91.14706923440099,-91.41807573987171,-91.25404775515199,-90.90917032631114,-90.85508789401501,-90.21621573204175,-90.789468978066,-91.18487215321511,-90.62974912300706,-91.02705764491111,-91.35406940430403,-91.98155870940536,-92.48188437428325,-92.57747955061495,-91.69746999861673,-90.78439421160147,-91.22199407080188,-91.14796923426911,-91.13786137104034,-91.20614008465782,-91.20687484228984,-91.43252295302227,-91.01918859547004,-90.43391664884984,-91.40819117473438,-91.18416923703626,-91.60352285439149,-91.84422537125647,-91.54535067640245,-91.46967162983492,-92.228166394867,-93.04485631687567,-92.65877956431359,-93.61359681095928,-92.86311070015654,-92.1998859825544,-92.80325974198058,-92.3316564145498,-91.84904855443165,-91.43106205714867,-91.29252822697163,-91.94644012255594,-91.34284405875951,-91.78524080850184,-92.48338518897071,-92.43183169420809,-92.86364792427048,-92.42024758690968,-91.77538538305089,-92.12625279324129,-91.52937391819432,-91.3253748989664,-91.4228280489333,-91.68043073359877,-90.77921405434608,-90.60209605609998,-90.13719694456086,-90.2830011062324,-90.49900862621143,-90.01261313818395,-90.04786359332502,-89.23879643995315,-90.22766471700743,-90.21802980545908,-90.44619659753516,-91.30209619086236,-91.04408884141594,-90.59817882115021,-91.44604349229485,-92.02364233834669,-92.05387010471895,-91.92671076674014,-91.35737128602341,-91.25257656769827,-90.84618174144998,-90.04532538214698,-89.83366850670427,-89.95833644969389,-89.40225787600502,-89.33247718261555,-89.66006896970794,-89.33657443569973,-89.13591168262064,-88.44990853825584,-88.93349374551326,-88.95243644714355,-89.69908649055287,-89.17547630239278,-89.58386138407513,-89.34062851639464,-90.23900830745697,-89.91218815557659,-89.87950293906033,-89.45442064665258,-89.89957280084491,-89.99804581841454,-89.60289347823709,-90.17950826603919,-90.18228459358215,-89.26396031072363,-89.34883294533938,-89.88088084897026,-89.32669900497422,-90.20243099797517,-90.01150115439668,-89.91123535297811,-90.00020374078304,-89.21966554038227,-89.26020177034661,-89.44043030776083,-90.31960544874892,-91.29982321895659,-91.50286007858813,-91.68273638375103,-91.15295935980976,-92.09188508335501,-91.59217729186639,-91.69816185859963,-92.62489927560091,-92.58712253207341,-92.90021788561717,-93.21078141732141,-92.25344098033383,-92.03201673505828,-92.4343092199415,-92.5910874758847,-92.18405689951032,-92.98070883378386,-93.86700688349083,-92.91486092470586,-92.00877718953416,-91.78056759666651,-91.21548116439953,-90.63362122979015,-91.13241959828883,-91.57146673928946,-91.66491291346028,-91.45662096841261,-91.61205965839326,-90.61912372941151,-90.46919535845518,-91.31653152639046,-92.14994769962505,-92.88264517532662,-92.3292888365686,-91.83665491826832,-92.24755831761286,-92.84434866160154,-93.33674324862659,-92.43725792085752,-92.60568311205134,-91.68677402753383,-91.67882763175294,-92.22052813787013,-91.76084116380662,-91.3833869039081,-91.03465896798298,-90.26413993118331,-90.85171389905736,-91.08055756101385,-90.3396212705411,-90.72335259336978,-90.87221048213542,-91.67847646260634,-91.9195622690022,-91.4626145279035,-90.6866117157042,-90.32312182150781,-89.68035726994276,-88.8011069772765,-87.84437315957621,-88.57699306635186,-88.17438921891153,-87.23450454324484,-87.31558694271371,-87.23204057244584,-88.06521448725834,-87.17571254540235,-86.44915152015164,-86.59640448819846,-86.33857578178868,-87.16022654622793,-86.9616034841165,-87.55988109158352,-86.97654814179987,-87.11446934053674,-86.75221396517009,-85.98098540958017,-86.53346635540947,-86.99902394693345,-87.41772780288011,-87.85001897672191,-88.25833450397477,-89.10218717157841,-89.90956139937043,-90.39377793809399,-90.00694756675512,-89.7042351490818,-88.7182024102658,-89.32634841091931,-88.35424653673545,-88.73693377012387,-89.73578581307083,-89.59630561713129,-89.90618002740666,-90.32997032767162,-89.7861208114773,-89.37056488590315,-89.18863707780838,-89.42169978655875,-88.50839373050258,-88.96791616594419,-89.23698417050764,-89.24500399082899,-89.19760489976034,-89.25890130829066,-90.11661023413762,-90.86798402806744,-89.97094318084419,-89.81042815092951,-90.05083593958989,-89.75545275909826,-88.78272726247087,-88.02936340076849,-87.2897134735249,-87.71336634131148,-87.91800914611667,-88.78754360228777,-89.6295198793523,-89.1027696467936,-89.61751654418185,-90.56553078861907,-90.99981119809672,-91.55415808781981,-90.78812884772196,-91.52259240439162,-91.45383545476943,-90.74451152840629,-90.4652819451876,-90.68480785517022,-91.46720118680969,-90.51071047969162,-91.08765182690695,-91.84179009171203,-91.01507864519954,-92.00721258344129,-92.80282584670931,-92.223792235367,-92.71245940541849,-92.0649285307154,-91.8345146770589,-91.06823200406507,-90.78960568970069,-90.38066585874185,-90.11902127787471,-90.92458464251831,-91.37815519608557,-90.67832064721733,-91.62141766119748,-91.14503417164087,-90.7400191812776,-90.83009973727167,-90.15118732117116,-90.0812317635864,-90.68511695135385,-90.66979886451736,-91.08910066727549,-91.185001085978,-91.31983797764406,-91.48483825242147,-92.40082385763526,-92.59949320275337,-91.79082918772474,-92.18960004393011,-92.78990223072469,-93.76533120078966,-93.58795840991661,-94.04459989909083,-93.47821773821488,-94.3323984220624,-94.23184683965519,-93.47164026694372,-92.94776194030419,-92.20840981509537,-93.0653647435829,-92.25248114252463,-92.3221423625946,-92.80284881591797,-93.09556402917951,-93.41246534977108,-93.57873629499227,-93.66052086791024,-93.14771167328581,-92.9752919850871,-93.08558127796277,-93.16102979658172,-93.77523690043017,-93.87184149259701,-93.40528248576447,-92.77707600593567,-93.57740355096757,-93.65941832354292,-92.74074571067467,-92.01231048768386,-92.66830248152837,-93.06292175780982,-93.74917136831209,-93.842443539761,-93.74646227201447,-94.49875681009144,-94.01491637248546,-94.62188082095236,-95.09761591767892,-94.73022236581892,-94.37275116937235,-94.34794437559322,-93.87329459981993,-94.48585432162508,-94.89587693754584,-95.56564360763878,-94.83462241571397,-94.3123855064623,-93.64310008659959,-92.91315745795146,-92.78770172037184,-93.4556549792178,-93.91680649016052,-93.84389359271154,-93.24236913304776,-92.71351868007332,-92.40674496814609,-92.85005920566618,-93.42837214516476,-93.70876724598929,-93.96734969131649,-93.77698176214471,-93.6859872173518,-92.99949531070888,-92.08347375737503,-92.72575595322996,-93.03243022831157,-93.23349187662825,-92.76454819878563,-92.06209754571319,-91.66147539298981,-91.76459637563676,-91.06843200465664,-92.00253988383338,-92.49143349565566,-91.59626880055293,-92.04060742119327,-92.04292123625055,-92.57280602445826,-91.89318987494335,-92.34837587317452,-91.82348969345912,-92.30518683837727,-92.3180226450786,-92.02788846753538,-91.11530313361436,-91.57373262057081,-90.86529295751825,-91.17460807971656,-91.87614206969738,-92.76027279580012,-92.25819962937385,-91.85971570154652,-91.31476109381765,-90.89917933242396,-91.35350263537839,-91.4742563534528,-90.94719898328185,-91.57862065872177,-90.68705351045355,-90.71889455802739,-91.4488365156576,-90.71447652811185,-90.70085506001487,-90.87669239426032,-90.95272377273068,-91.49335466418415,-91.96405571093783,-91.0708805997856,-90.50975085841492,-89.64282987639308,-90.35632751369849,-90.62729648454115,-91.02942497562617,-90.54219518369064,-91.1879052282311,-91.77379679959267,-92.30051376251504,-92.13169125467539,-93.0890156282112,-92.9993105973117,-93.14067810261622,-93.38598144007847,-92.68783690175042,-93.61555283982307,-93.24005872942507,-93.71108416141942,-94.22494689561427,-94.46584607707337,-93.63671525428072,-93.13335135299712,-92.78041024319828,-91.84616605425254,-91.88049473846331,-91.06759072607383,-91.97270437143743,-91.91721164248884,-92.11080710357055,-92.88089338969439,-92.91263967053965,-93.05717263976112,-93.81126096611843,-94.4360721046105,-94.27577095711604,-93.98409879952669,-93.40302827674896,-93.41684103151783,-92.51085476158187,-92.19926170818508,-92.62616092339158,-92.08976899087429,-91.74526663590223,-92.61015447275713,-93.43608735781163,-92.86614596284926,-92.85040443670005,-92.93740334408358,-93.40697523206472,-93.70941786188632,-93.02184975007549,-93.04985891655087,-92.8936242419295,-93.29429386556149,-92.46871009236202,-91.75606886995956,-90.917792880442,-91.82629095437005,-92.10239281645045,-91.74766686279327,-91.97273809742182,-91.70088482927531,-91.78949145786464,-91.59525206265971,-92.34590600198135,-92.85240633552894,-92.51342662470415,-92.42922410462052,-92.84260725043714,-93.48098771180958,-94.18847767217085,-94.77832366386428,-94.97244697995484,-94.29074349161237,-94.99504423933104,-95.42749491753057,-96.30186478374526,-97.17441849270836,-96.56008582562208,-96.53040626924485,-96.28626792319119,-97.02076792018488,-96.61051718425006,-97.15834805369377,-98.0500309895724,-98.09137628693134,-98.92832622118294,-98.63788689812645,-98.79454918252304,-99.39815939310938,-98.43556407047436,-97.80770266987383,-97.00229310896248,-96.21320491470397,-96.46813068492338,-95.99889111006632,-95.08951728977263,-94.25768564688042,-94.6539044403471,-94.59129608888179,-95.41777783818543,-95.9727986138314,-95.98024503327906,-95.51455125957727,-94.56729794293642,-94.97787218354642,-95.15148539235815,-96.08039382565767,-95.92305297637358,-95.70271096331999,-95.75790189392865,-95.59906508866698,-95.96557695278898,-95.30999801307917,-95.83097378816456,-95.52357422327623,-95.3829475035891,-94.72635097708553,-94.9766908516176,-95.86106018256396,-96.65422831522301,-97.29667301196605,-97.7332110479474,-97.54298236081377,-97.1664482797496,-96.79213455319405,-96.30841840198264,-96.41007717559114,-95.61465797852725,-96.40184454806149,-96.02148191817105,-95.81233299756423,-95.91330258687958,-96.59158677887172,-95.91744681354612,-96.67096971534193,-97.38477247953415,-97.69845017045736,-96.74260984780267,-97.1996918655932,-97.06586300488561,-97.37744461605325,-96.69232166232541,-97.29577141301706,-96.9452791181393,-96.5963170947507,-96.88258128473535,-97.46909367479384,-97.07974712131545,-96.13903069170192,-96.57668617321178,-97.1393546871841,-96.2251912932843,-96.50672740489244,-96.61686952458695,-97.29088942939416,-97.06297560734674,-97.14671077346429,-97.8882895745337,-98.79188712360337,-98.2493467531167,-99.06836003577337,-100.01260594883934,-99.85638503963128,-99.14237317163497,-99.77324295928702,-100.6918623750098,-101.3996990234591,-100.9207720356062,-100.3858553157188,-100.87386900931597,-101.82541455188766,-102.23532455600798,-103.17164874169976,-102.98005694011226,-103.77153858402744,-104.54004135914147,-105.17801037803292,-104.50767345307395,-103.9999772766605,-104.98322400823236,-104.9022078635171,-104.95411233091727,-104.43842478049919,-104.30786757962778,-104.25945535115898,-104.18923788890243,-104.99642324866727,-104.65750360535458,-104.70171955600381,-104.3222429822199,-105.19415439292789,-105.397900857497,-105.6139828376472,-106.13917164830491,-106.07698865514249,-105.4915813030675,-105.4886942426674,-105.28658537659794,-105.93040388869122,-106.1132234572433,-106.31705017015338,-105.83244321634993,-106.68039566185325,-106.70279097231105,-106.98275860864669,-107.0922790938057,-106.98436005366966,-106.25786151876673,-105.31775460252538,-106.31422572676092,-105.59723138203844,-105.91528521757573,-106.29064919333905,-106.24837852688506,-105.26087555103004,-104.59481357689947,-105.48431983217597,-104.65180670144036,-104.26123576797545,-105.15575576527044,-104.61885848874226,-103.88966557988897,-103.60966206202284,-102.75697855651379,-103.20026687718928,-104.07095019845292,-104.20079518668354,-104.95671567553654,-105.48781203618273,-106.3714666236192,-106.50732078403234,-107.45700325863436,-106.7933301916346,-107.13195504341274,-107.81498623127118,-106.84571032086387,-107.31371736107394,-106.4911262691021,-106.71775230811909,-106.94574365857989,-107.62419594125822,-107.9594348068349,-108.67590282531455,-109.45443848799914,-109.8520447644405,-110.194111966528,-109.6567431492731,-108.9942972715944,-108.33353591430932,-108.82583799446002,-109.26229882705957,-108.63995017157868,-108.71848096745089,-109.67082826886326,-109.34841899387538,-108.3833536664024,-107.53443916747347,-108.45770982000977,-109.002268825192,-108.65101853013039,-108.84820922231302,-109.34097286406904,-109.36994197871536,-108.49792857095599,-108.70472779823467,-108.84014018718153,-108.4326456701383,-108.4992240765132,-109.38760699471459,-109.44811125472188,-108.83121267007664,-109.04453858314082,-108.68023575516418,-109.08001202857122,-109.16083713481203,-109.28759475704283,-108.94836141588166,-109.91145744081587,-109.9048998276703,-109.49785548076034,-109.2049898984842,-109.42626357451081,-110.00792234158143,-109.17821259610355,-108.91581244813278,-107.98914323560894,-108.66762147611007,-109.16251454688609,-108.91679241647944,-108.07555628055707,-108.77482165535912,-107.80258904397488,-108.3652360457927,-107.47452551173046,-107.5794855975546,-107.86774335056543,-107.27054049447179,-106.38568186108023,-106.24354536086321,-105.25007965508848,-105.07710066763684,-104.8943130178377,-104.68278044043109,-105.16542162653059,-104.80935597326607,-104.30176311917603,-104.40799317881465,-104.9640752254054,-104.15201163291931,-104.37676655640826,-104.08190736779943,-103.80074478965253,-104.32784067513421,-103.88838799670339,-104.61750284070149,-104.17015787865967,-103.38041429966688,-103.35058849491179,-104.04334382992238,-104.61542522860691,-105.32104972284287,-105.78926014900208,-105.43914253637195,-104.77327871695161,-105.32170584751293,-104.60241644503549,-104.51762388180941,-104.32201946852729,-104.64356107311323,-104.88816418265924,-104.21939803427085,-103.2828776226379,-103.8179292967543,-104.25920594017953,-104.9258125233464,-104.13888938212767,-104.14305667951703,-104.32230224413797,-105.20669926982373,-104.52436366071925,-104.93612868757918,-104.44872399559245,-104.4577351147309,-103.63586522359401,-103.70227672252804,-102.74989570910111,-102.74766927259043,-102.66033079475164,-102.42060758080333,-102.13203961635008,-102.66900253528729,-101.99766079615802,-101.77200769865885,-102.03717871336266,-101.66888639796525,-101.98287914320827,-101.8581395316869,-101.31428359635174,-101.44441837491468,-101.40166891831905,-101.63733941176906,-101.26511707343161,-101.55542455753312,-101.37903208145872,-101.107691090554,-100.51929505681619,-100.60528531018645,-99.92033116798848,-99.04822412226349,-98.59772341512144,-98.4874595166184,-98.17615061113611,-97.66666217520833,-96.76929763285443,-96.51994541520253,-95.78285800479352,-95.1643813084811,-95.52033328032121,-95.58029166981578,-94.91652716696262,-95.90976873552427,-95.57408844400197,-94.97372523881495,-95.74760827003047,-96.22428111778572,-97.04473422700539,-97.54043871769682,-98.03160363389179,-98.9470995743759,-99.17783701885492,-98.95080045703799,-98.16803910816088,-98.20490740425885,-97.78291598940268,-97.22740832483396,-96.50762972421944,-95.67919071065262,-96.25317454012111,-96.78182034846395,-96.71993203880265,-96.42664895020425,-97.27445107046515,-96.75130338734016,-96.27987775672227,-96.91158267622814,-96.02714161993936,-96.47951071429998,-95.53743254952133,-96.48967852350324,-95.75303001469001,-95.67080770106986,-96.23767648730427,-97.18603911623359,-97.94369785720482,-97.88838557666168,-97.35136348521337,-97.00008206721395,-96.8717020782642,-97.20109133096412,-96.36614267062396,-96.9230001908727,-96.35610374389216,-95.48730513872579,-94.88608235586435,-95.75020126905292,-94.79561190959066,-93.97638588305563,-93.76253435760736,-93.4277368420735,-92.60471993731335,-92.43119681300595,-91.47473422670737,-90.87649739999324,-91.6462472435087,-92.64252355042845,-91.91942042997107,-92.33833025721833,-92.39066079678014,-91.55494673736393,-91.37577108619735,-91.46472429530695,-92.35075681563467,-93.20416672760621,-92.45675967819989,-93.12448810180649,-93.69343352597207,-93.38187404442579,-93.0513056833297,-92.76446426473558,-92.38818032993004,-92.0346676632762,-92.26009390456602,-92.49922065623105,-91.60571997705847,-91.1002759016119,-90.74223917908967,-90.13304167240858,-90.61882929084823,-90.66623781993985,-90.13251033378765,-89.89619418373331,-89.43398668151349,-88.83189749345183,-89.8187196101062,-90.545218531508,-90.0904739513062,-89.6345593384467,-89.48161656083539,-88.7702811411582,-88.44996720226482,-88.94712638994679,-88.80168166337535,-87.80213724542409,-87.3929234337993,-86.64690130017698,-85.77175316913053,-84.94223532872275,-84.79606964066625,-84.40098815225065,-83.87928262725472,-83.10791726829484,-83.78311952296644,-84.18409409513697,-83.19205509265885,-83.2126949140802,-83.9985829833895,-84.85498329577968,-85.23497439315543,-84.76366119878367,-85.52040585735813,-86.24449016386643,-85.82938357302919,-85.04803123790771,-84.29722776543349,-83.82622966449708,-82.88072505034506,-82.74606378609315,-81.95531317731366,-82.80076052481309,-83.68183325510472,-84.11141813639551,-84.69627698045224,-84.84268915699795,-85.05336720636114,-84.13368609687313,-83.81761637143791,-83.29497196990997,-83.92154267197475,-84.07578291557729,-83.48371978243813,-82.69606317579746,-81.72744852397591,-80.90494354302064,-80.83704891242087,-79.95447920402512,-80.53267823532224,-79.92217592196539,-80.41944092558697,-80.49088261136785,-80.22881321981549,-80.58720145979896,-80.73374859755859,-81.23022888274863,-80.36966068809852,-81.30356279434636,-80.65666748490185,-81.40184502117336,-81.94325686106458,-81.31857510097325,-80.32114079641178,-80.8837413052097,-80.58231496531516,-79.89457678701729,-79.97322371834889,-80.9672566615045,-81.91049370076507,-81.4425278767012,-81.2327201240696,-81.36742522474378,-82.25585457356647,-81.99299836251885,-81.61232329625636,-81.08732608472928,-81.46730548422784,-80.97428067913279,-80.61474871542305,-81.33003168879077,-81.3626198344864,-81.01327341096476,-81.55796761903912,-81.13888922845945,-82.00956354103982,-82.18664820771664,-83.09051637677476,-83.5338606624864,-84.1598364468664,-83.52100853435695,-82.61635494278744,-83.53779166797176,-83.40655985847116,-83.21080477628857,-82.80497594224289,-81.86691069277003,-82.01601919531822,-82.07003285503015,-82.54676871094853,-82.05946416268125,-81.5504496935755,-81.82725353259593,-81.86456868192181,-81.81067339098081,-80.8685610438697,-81.12682442134246,-81.50257688667625,-80.70137908216566,-81.60270362952724,-82.54201044375077,-82.4660403970629,-82.91113813966513,-83.26328541757539,-83.73042276827618,-84.4034584457986,-84.58385372115299,-84.93759636254981,-85.56909782951698,-85.53873958764598,-84.80025121383369,-84.55775237968192,-84.5398816964589,-83.96130961878225,-84.22525593731552,-85.08775993203744,-85.18224175926298,-85.5682452893816,-85.41353435767815,-85.3007409889251,-84.71851562242955,-84.39779950119555,-83.65886205853894,-83.52465592743829,-83.79553845524788,-83.70918427594006,-83.06210024468601,-82.84510635538027,-83.37427060119808,-83.3883799398318,-83.968801967334,-82.99228987423703,-82.74491954687983,-83.29199140239507,-83.15976532967761,-83.10278958128765,-84.08694784576073,-83.93941816641018,-82.96657479507849,-83.79353815549985,-84.6434236052446,-84.27897166321054,-83.38585379067808,-83.88250625832006,-83.92402363754809,-83.4132472248748,-83.66289851861075,-84.35040226811543,-85.22391606960446,-86.18476470559835,-85.70738646294922,-84.82146111968905,-85.43293506233022,-85.92552979616448,-85.00841138325632,-85.64733907394111,-85.37133052106947,-84.5753183979541,-83.69324622955173,-83.34091620799154,-83.76708224136382,-84.27855682885274,-84.90778299886733,-84.46573071926832,-84.60683325584978,-84.94374767830595,-83.94652194483206,-84.69602217106149,-85.68273328850046,-85.28089998057112,-85.88963508373126,-85.982772518415,-85.71383500285447,-86.40636483347043,-85.99639186821878,-85.534775770735,-86.17176407948136,-86.01774669485167,-86.27822962170467,-85.46041701547801,-85.51746417116374,-85.48649647645652,-85.68384338030592,-86.04406414553523,-85.08626295346767,-84.48053742246702,-84.55004890775308,-85.20864197099581,-85.3734279726632,-84.74459525430575,-84.24648768361658,-84.2040447560139,-83.31513358093798,-84.09554893616587,-83.28685503639281,-84.24291062168777,-83.50363782420754,-83.22713755257428,-83.80678085749969,-84.21336235152557,-84.6939980937168,-85.4501125337556,-86.26416998030618,-86.61951438896358,-85.91882246732712,-85.68197121983394,-86.0034366059117,-86.43663473986089,-86.38004961190745,-85.99887067638338,-86.87034978438169,-86.68946032365784,-86.87023609830067,-86.92056070780382,-87.57420688774437,-87.23891537124291,-87.9481878746301,-88.16448675887659,-88.48208995489404,-87.50444223312661,-88.01775206625462,-87.40849521802738,-87.65488135674968,-88.06774854240939,-88.66474226722494,-89.63784524565563,-89.18928936077282,-88.35660016769543,-88.37329028593376,-88.2837373460643,-89.07472901558504,-88.77887873351574,-88.48587683448568,-89.04996683541685,-89.8384501109831,-89.24561496265233,-90.01627718517557,-90.82457866705954,-90.83668791968375,-90.3055720529519,-90.23395318677649,-91.07802390959114,-91.45983376912773,-91.71797903766856,-91.36884031258523,-92.18139079259709,-91.90777713852003,-91.99265527399257,-91.63360736705363,-91.16689648246393,-90.88157187309116,-91.04225190076977,-90.11432358110324,-90.04616548027843,-90.7779474677518,-91.25963010592386,-90.45911104697734,-90.93159674108028,-90.89817011123523,-91.16587144974619,-91.46467006206512,-91.10300647513941,-91.38570710876957,-90.92346593318507,-90.121566593647,-89.21536977728829,-89.32635212503374,-89.1888690656051,-88.51502993889153,-88.24885111488402,-89.135584957432,-88.35506453737617,-88.1849990026094,-87.99788348376751,-87.51575593510643,-86.84021023241803,-86.69653450837359,-87.11350361676887,-87.04045112710446,-87.41094445204362,-87.13663422921672,-88.10537273949012,-88.79014409612864,-89.27271618833765,-89.24092244217172,-88.52246836898848,-89.50224655494094,-89.76038154494017,-90.61901231855154,-91.53430332895368,-91.56524014752358,-91.05195899726823,-91.87984263384715,-91.26706566289067,-90.4928440535441,-89.92490407219157,-89.58867022860795,-88.85062143020332,-89.49238064931706,-89.71792109217495,-90.11833955626935,-90.86781502654776,-90.13656894117594,-89.90304178651422,-89.07990817166865,-88.97881311830133,-88.26353636849672,-87.6180617371574,-88.28102149395272,-87.91566137038171,-87.24387053772807,-87.09886992489919,-87.95734899677336,-88.5249178702943,-89.13088376959786,-89.92720799148083,-90.63589000562206,-91.63493861770257,-92.21932414500043,-91.52820894028991,-91.93089836183935,-91.28546359948814,-90.34687636513263,-90.85093353502452,-91.75610273331404,-92.43952765595168,-92.0846883286722,-92.4657998168841,-91.55638863239437,-91.31359896156937,-91.39435911178589,-91.63213697075844,-90.88929366599768,-90.55872947629541,-91.3440678846091,-90.50907904095948,-89.92668188503012,-89.65184391802177,-90.41300881933421,-90.07124952785671,-89.62267085118219,-90.06346187833697,-90.26001453911886,-90.3310342268087,-90.08086127508432,-90.88689139485359,-89.97827089577913,-90.55788256041706,-90.96024964377284,-90.93362162914127,-90.40291086910293,-90.90401598950848,-90.68628817470744,-90.22508817538619,-89.88806056976318,-90.62899328954518,-90.78909497195855,-90.62083102436736,-90.52554209623486,-89.86102961050346,-89.48807417787611,-90.07890105061233,-90.4507946674712,-90.94680131599307,-91.23758829385042,-91.12764581106603,-90.82325561344624,-90.54303462430835,-90.64472811901942,-90.8205282506533,-90.44262753566727,-91.12618322437629,-91.69054779037833,-91.80773702217266,-91.51617922820151,-90.66475610015914,-90.61772776814178,-90.23360998136923,-90.2032635267824,-90.2682207962498,-89.56516108941287,-88.84337685257196,-89.43515097582713,-89.06053535966203,-88.92592954821885,-89.31293218117207,-89.60884638084099,-90.5158107331954,-91.42753282189369,-91.82295291032642,-92.1072551747784,-91.89226712519303,-92.5096376882866,-91.58317046938464,-91.55949171166867,-92.23345123883337],"type":"scatter3d"},{"customdata":[["2024-07-24T23:35:06.010000"],["2024-07-24T23:35:07.010000"],["2024-07-24T23:35:08.010000"],["2024-07-24T23:35:09.010000"],["2024-07-24T23:35:10.010000"],["2024-07-24T23:35:11.010000"],["2024-07-24T23:35:12.010000"],["2024-07-24T23:35:13.010000"],["2024-07-24T23:35:14.010000"],["2024-07-24T23:35:15.010000"],["2024-07-24T23:35:16.010000"],["2024-07-24T23:35:17.010000"],["2024-07-24T23:35:18.010000"],["2024-07-24T23:35:19.010000"],["2024-07-24T23:35:20.010000"],["2024-07-24T23:35:21.010000"],["2024-07-24T23:35:22.010000"],["2024-07-24T23:35:23.010000"],["2024-07-24T23:35:24.010000"],["2024-07-24T23:35:25.010000"],["2024-07-24T23:35:26.010000"],["2024-07-24T23:35:27.010000"],["2024-07-24T23:35:28.010000"],["2024-07-24T23:35:29.010000"],["2024-07-24T23:35:30.010000"],["2024-07-24T23:35:31.010000"],["2024-07-24T23:35:32.010000"],["2024-07-24T23:35:33.010000"],["2024-07-24T23:35:34.010000"],["2024-07-24T23:35:35.010000"],["2024-07-24T23:35:36.010000"],["2024-07-24T23:35:37.010000"],["2024-07-24T23:35:38.010000"],["2024-07-24T23:35:39.010000"],["2024-07-24T23:35:40.010000"],["2024-07-24T23:35:41.010000"],["2024-07-24T23:35:42.010000"],["2024-07-24T23:35:43.010000"],["2024-07-24T23:35:44.010000"],["2024-07-24T23:35:45.010000"],["2024-07-24T23:35:46.010000"],["2024-07-24T23:35:47.010000"],["2024-07-24T23:35:48.010000"],["2024-07-24T23:35:49.010000"],["2024-07-24T23:35:50.010000"],["2024-07-24T23:35:51.010000"],["2024-07-24T23:35:52.010000"],["2024-07-24T23:35:53.010000"],["2024-07-24T23:35:54.010000"],["2024-07-24T23:35:55.010000"],["2024-07-24T23:35:56.010000"],["2024-07-24T23:35:57.010000"],["2024-07-24T23:35:58.010000"],["2024-07-24T23:35:59.010000"],["2024-07-24T23:36:00.010000"],["2024-07-24T23:36:01.010000"],["2024-07-24T23:36:02.010000"],["2024-07-24T23:36:03.010000"],["2024-07-24T23:36:04.010000"],["2024-07-24T23:36:05.010000"],["2024-07-24T23:36:06.010000"],["2024-07-24T23:36:07.010000"],["2024-07-24T23:36:08.010000"],["2024-07-24T23:36:09.010000"],["2024-07-24T23:36:10.010000"],["2024-07-24T23:36:11.010000"],["2024-07-24T23:36:12.010000"],["2024-07-24T23:36:13.010000"],["2024-07-24T23:36:14.010000"],["2024-07-24T23:36:15.010000"],["2024-07-24T23:36:16.010000"],["2024-07-24T23:36:17.010000"],["2024-07-24T23:36:18.010000"],["2024-07-24T23:36:19.010000"],["2024-07-24T23:36:20.010000"],["2024-07-24T23:36:21.010000"],["2024-07-24T23:36:22.010000"],["2024-07-24T23:36:23.010000"],["2024-07-24T23:36:24.010000"],["2024-07-24T23:36:25.010000"],["2024-07-24T23:36:26.010000"],["2024-07-24T23:36:27.010000"],["2024-07-24T23:36:28.010000"],["2024-07-24T23:36:29.010000"],["2024-07-24T23:36:30.010000"],["2024-07-24T23:36:31.010000"],["2024-07-24T23:36:32.010000"],["2024-07-24T23:36:33.010000"],["2024-07-24T23:36:34.010000"],["2024-07-24T23:36:35.010000"],["2024-07-24T23:36:36.010000"],["2024-07-24T23:36:37.010000"],["2024-07-24T23:36:38.010000"],["2024-07-24T23:36:39.010000"],["2024-07-24T23:36:40.010000"],["2024-07-24T23:36:41.010000"],["2024-07-24T23:36:42.010000"],["2024-07-24T23:36:43.010000"],["2024-07-24T23:36:44.010000"],["2024-07-24T23:36:45.010000"],["2024-07-24T23:36:46.010000"],["2024-07-24T23:36:47.010000"],["2024-07-24T23:36:48.010000"],["2024-07-24T23:36:49.010000"],["2024-07-24T23:36:50.010000"],["2024-07-24T23:36:51.010000"],["2024-07-24T23:36:52.010000"],["2024-07-24T23:36:53.010000"],["2024-07-24T23:36:54.010000"],["2024-07-24T23:36:55.010000"],["2024-07-24T23:36:56.010000"],["2024-07-24T23:36:57.010000"],["2024-07-24T23:36:58.010000"],["2024-07-24T23:36:59.010000"],["2024-07-24T23:37:00.010000"],["2024-07-24T23:37:01.010000"],["2024-07-24T23:37:02.010000"],["2024-07-24T23:37:03.010000"],["2024-07-24T23:37:04.010000"],["2024-07-24T23:37:05.010000"],["2024-07-24T23:37:06.010000"],["2024-07-24T23:37:07.010000"],["2024-07-24T23:37:08.010000"],["2024-07-24T23:37:09.010000"],["2024-07-24T23:37:10.010000"],["2024-07-24T23:37:11.010000"],["2024-07-24T23:37:12.010000"],["2024-07-24T23:37:13.010000"],["2024-07-24T23:37:14.010000"],["2024-07-24T23:37:15.010000"],["2024-07-24T23:37:16.010000"],["2024-07-24T23:37:17.010000"],["2024-07-24T23:37:18.010000"],["2024-07-24T23:37:19.010000"],["2024-07-24T23:37:20.010000"],["2024-07-24T23:37:21.010000"],["2024-07-24T23:37:22.010000"],["2024-07-24T23:37:23.010000"],["2024-07-24T23:37:24.010000"],["2024-07-24T23:37:25.010000"],["2024-07-24T23:37:26.010000"],["2024-07-24T23:37:27.010000"],["2024-07-24T23:37:28.010000"],["2024-07-24T23:37:29.010000"],["2024-07-24T23:37:30.010000"],["2024-07-24T23:37:31.010000"],["2024-07-24T23:37:32.010000"],["2024-07-24T23:37:33.010000"],["2024-07-24T23:37:34.010000"],["2024-07-24T23:37:35.010000"],["2024-07-24T23:37:36.010000"],["2024-07-24T23:37:37.010000"],["2024-07-24T23:37:38.010000"],["2024-07-24T23:37:39.010000"],["2024-07-24T23:37:40.010000"],["2024-07-24T23:37:41.010000"],["2024-07-24T23:37:42.010000"],["2024-07-24T23:37:43.010000"],["2024-07-24T23:37:44.010000"],["2024-07-24T23:37:45.010000"],["2024-07-24T23:37:46.010000"],["2024-07-24T23:37:47.010000"],["2024-07-24T23:37:48.010000"],["2024-07-24T23:37:49.010000"],["2024-07-24T23:37:50.010000"],["2024-07-24T23:37:51.010000"],["2024-07-24T23:37:52.010000"],["2024-07-24T23:37:53.010000"],["2024-07-24T23:37:54.010000"],["2024-07-24T23:37:55.010000"],["2024-07-24T23:37:56.010000"],["2024-07-24T23:37:57.010000"],["2024-07-24T23:37:58.010000"],["2024-07-24T23:37:59.010000"],["2024-07-24T23:38:00.010000"],["2024-07-24T23:38:01.010000"],["2024-07-24T23:38:02.010000"],["2024-07-24T23:38:03.010000"],["2024-07-24T23:38:04.010000"],["2024-07-24T23:38:05.010000"],["2024-07-24T23:38:06.010000"],["2024-07-24T23:38:07.010000"],["2024-07-24T23:38:08.010000"],["2024-07-24T23:38:09.010000"],["2024-07-24T23:38:10.010000"],["2024-07-24T23:38:11.010000"],["2024-07-24T23:38:12.010000"],["2024-07-24T23:38:13.010000"],["2024-07-24T23:38:14.010000"],["2024-07-24T23:38:15.010000"],["2024-07-24T23:38:16.010000"],["2024-07-24T23:38:17.010000"],["2024-07-24T23:38:18.010000"],["2024-07-24T23:38:19.010000"],["2024-07-24T23:38:20.010000"],["2024-07-24T23:38:21.010000"],["2024-07-24T23:38:22.010000"],["2024-07-24T23:38:23.010000"],["2024-07-24T23:38:24.010000"],["2024-07-24T23:38:25.010000"],["2024-07-24T23:38:26.010000"],["2024-07-24T23:38:27.010000"],["2024-07-24T23:38:28.010000"],["2024-07-24T23:38:29.010000"],["2024-07-24T23:38:30.010000"],["2024-07-24T23:38:31.010000"],["2024-07-24T23:38:32.010000"],["2024-07-24T23:38:33.010000"],["2024-07-24T23:38:34.010000"],["2024-07-24T23:38:35.010000"],["2024-07-24T23:38:36.010000"],["2024-07-24T23:38:37.010000"],["2024-07-24T23:38:38.010000"],["2024-07-24T23:38:39.010000"],["2024-07-24T23:38:40.010000"],["2024-07-24T23:38:41.010000"],["2024-07-24T23:38:42.010000"],["2024-07-24T23:38:43.010000"],["2024-07-24T23:38:44.010000"],["2024-07-24T23:38:45.010000"],["2024-07-24T23:38:46.010000"],["2024-07-24T23:38:47.010000"],["2024-07-24T23:38:48.010000"],["2024-07-24T23:38:49.010000"],["2024-07-24T23:38:50.010000"],["2024-07-24T23:38:51.010000"],["2024-07-24T23:38:52.010000"],["2024-07-24T23:38:53.010000"],["2024-07-24T23:38:54.010000"],["2024-07-24T23:38:55.010000"],["2024-07-24T23:38:56.010000"],["2024-07-24T23:38:57.010000"],["2024-07-24T23:38:58.010000"],["2024-07-24T23:38:59.010000"],["2024-07-24T23:39:00.010000"],["2024-07-24T23:39:01.010000"],["2024-07-24T23:39:02.010000"],["2024-07-24T23:39:03.010000"],["2024-07-24T23:39:04.010000"],["2024-07-24T23:39:05.010000"],["2024-07-24T23:39:06.010000"],["2024-07-24T23:39:07.010000"],["2024-07-24T23:39:08.010000"],["2024-07-24T23:39:09.010000"],["2024-07-24T23:39:10.010000"],["2024-07-24T23:39:11.010000"],["2024-07-24T23:39:12.010000"],["2024-07-24T23:39:13.010000"],["2024-07-24T23:39:14.010000"],["2024-07-24T23:39:15.010000"],["2024-07-24T23:39:16.010000"],["2024-07-24T23:39:17.010000"],["2024-07-24T23:39:18.010000"],["2024-07-24T23:39:19.010000"],["2024-07-24T23:39:20.010000"],["2024-07-24T23:39:21.010000"],["2024-07-24T23:39:22.010000"],["2024-07-24T23:39:23.010000"],["2024-07-24T23:39:24.010000"],["2024-07-24T23:39:25.010000"],["2024-07-24T23:39:26.010000"],["2024-07-24T23:39:27.010000"],["2024-07-24T23:39:28.010000"],["2024-07-24T23:39:29.010000"],["2024-07-24T23:39:30.010000"],["2024-07-24T23:39:31.010000"],["2024-07-24T23:39:32.010000"],["2024-07-24T23:39:33.010000"],["2024-07-24T23:39:34.010000"],["2024-07-24T23:39:35.010000"],["2024-07-24T23:39:36.010000"],["2024-07-24T23:39:37.010000"],["2024-07-24T23:39:38.010000"],["2024-07-24T23:39:39.010000"],["2024-07-24T23:39:40.010000"],["2024-07-24T23:39:41.010000"],["2024-07-24T23:39:42.010000"],["2024-07-24T23:39:43.010000"],["2024-07-24T23:39:44.010000"],["2024-07-24T23:39:45.010000"],["2024-07-24T23:39:46.010000"],["2024-07-24T23:39:47.010000"],["2024-07-24T23:39:48.010000"],["2024-07-24T23:39:49.010000"],["2024-07-24T23:39:50.010000"],["2024-07-24T23:39:51.010000"],["2024-07-24T23:39:52.010000"],["2024-07-24T23:39:53.010000"],["2024-07-24T23:39:54.010000"],["2024-07-24T23:39:55.010000"],["2024-07-24T23:39:56.010000"],["2024-07-24T23:39:57.010000"],["2024-07-24T23:39:58.010000"],["2024-07-24T23:39:59.010000"],["2024-07-24T23:40:00.010000"],["2024-07-24T23:40:01.010000"],["2024-07-24T23:40:02.010000"],["2024-07-24T23:40:03.010000"],["2024-07-24T23:40:04.010000"],["2024-07-24T23:40:05.010000"],["2024-07-24T23:40:06.010000"],["2024-07-24T23:40:07.010000"],["2024-07-24T23:40:08.010000"],["2024-07-24T23:40:09.010000"],["2024-07-24T23:40:10.010000"],["2024-07-24T23:40:11.010000"],["2024-07-24T23:40:12.010000"],["2024-07-24T23:40:13.010000"],["2024-07-24T23:40:14.010000"],["2024-07-24T23:40:15.010000"],["2024-07-24T23:40:16.010000"],["2024-07-24T23:40:17.010000"],["2024-07-24T23:40:18.010000"],["2024-07-24T23:40:19.010000"],["2024-07-24T23:40:20.010000"],["2024-07-24T23:40:21.010000"],["2024-07-24T23:40:22.010000"],["2024-07-24T23:40:23.010000"],["2024-07-24T23:40:24.010000"],["2024-07-24T23:40:25.010000"],["2024-07-24T23:40:26.010000"],["2024-07-24T23:40:27.010000"],["2024-07-24T23:40:28.010000"],["2024-07-24T23:40:29.010000"],["2024-07-24T23:40:30.010000"],["2024-07-24T23:40:31.010000"],["2024-07-24T23:40:32.010000"],["2024-07-24T23:40:33.010000"],["2024-07-24T23:40:34.010000"],["2024-07-24T23:40:35.010000"],["2024-07-24T23:40:36.010000"],["2024-07-24T23:40:37.010000"],["2024-07-24T23:40:38.010000"],["2024-07-24T23:40:39.010000"],["2024-07-24T23:40:40.010000"],["2024-07-24T23:40:41.010000"],["2024-07-24T23:40:42.010000"],["2024-07-24T23:40:43.010000"],["2024-07-24T23:40:44.010000"],["2024-07-24T23:40:45.010000"],["2024-07-24T23:40:46.010000"],["2024-07-24T23:40:47.010000"],["2024-07-24T23:40:48.010000"],["2024-07-24T23:40:49.010000"],["2024-07-24T23:40:50.010000"],["2024-07-24T23:40:51.010000"],["2024-07-24T23:40:52.010000"],["2024-07-24T23:40:53.010000"],["2024-07-24T23:40:54.010000"],["2024-07-24T23:40:55.010000"],["2024-07-24T23:40:56.010000"],["2024-07-24T23:40:57.010000"],["2024-07-24T23:40:58.010000"],["2024-07-24T23:40:59.010000"],["2024-07-24T23:41:00.010000"],["2024-07-24T23:41:01.010000"],["2024-07-24T23:41:02.010000"],["2024-07-24T23:41:03.010000"],["2024-07-24T23:41:04.010000"],["2024-07-24T23:41:05.010000"],["2024-07-24T23:41:06.010000"],["2024-07-24T23:41:07.010000"],["2024-07-24T23:41:08.010000"],["2024-07-24T23:41:09.010000"],["2024-07-24T23:41:10.010000"],["2024-07-24T23:41:11.010000"],["2024-07-24T23:41:12.010000"],["2024-07-24T23:41:13.010000"],["2024-07-24T23:41:14.010000"],["2024-07-24T23:41:15.010000"],["2024-07-24T23:41:16.010000"],["2024-07-24T23:41:17.010000"],["2024-07-24T23:41:18.010000"],["2024-07-24T23:41:19.010000"],["2024-07-24T23:41:20.010000"],["2024-07-24T23:41:21.010000"],["2024-07-24T23:41:22.010000"],["2024-07-24T23:41:23.010000"],["2024-07-24T23:41:24.010000"],["2024-07-24T23:41:25.010000"],["2024-07-24T23:41:26.010000"],["2024-07-24T23:41:27.010000"],["2024-07-24T23:41:28.010000"],["2024-07-24T23:41:29.010000"],["2024-07-24T23:41:30.010000"],["2024-07-24T23:41:31.010000"],["2024-07-24T23:41:32.010000"],["2024-07-24T23:41:33.010000"],["2024-07-24T23:41:34.010000"],["2024-07-24T23:41:35.010000"],["2024-07-24T23:41:36.010000"],["2024-07-24T23:41:37.010000"],["2024-07-24T23:41:38.010000"],["2024-07-24T23:41:39.010000"],["2024-07-24T23:41:40.010000"],["2024-07-24T23:41:41.010000"],["2024-07-24T23:41:42.010000"],["2024-07-24T23:41:43.010000"],["2024-07-24T23:41:44.010000"],["2024-07-24T23:41:45.010000"],["2024-07-24T23:41:46.010000"],["2024-07-24T23:41:47.010000"],["2024-07-24T23:41:48.010000"],["2024-07-24T23:41:49.010000"],["2024-07-24T23:41:50.010000"],["2024-07-24T23:41:51.010000"],["2024-07-24T23:41:52.010000"],["2024-07-24T23:41:53.010000"],["2024-07-24T23:41:54.010000"],["2024-07-24T23:41:55.010000"],["2024-07-24T23:41:56.010000"],["2024-07-24T23:41:57.010000"],["2024-07-24T23:41:58.010000"],["2024-07-24T23:41:59.010000"],["2024-07-24T23:42:00.010000"],["2024-07-24T23:42:01.010000"],["2024-07-24T23:42:02.010000"],["2024-07-24T23:42:03.010000"],["2024-07-24T23:42:04.010000"],["2024-07-24T23:42:05.010000"],["2024-07-24T23:42:06.010000"],["2024-07-24T23:42:07.010000"],["2024-07-24T23:42:08.010000"],["2024-07-24T23:42:09.010000"],["2024-07-24T23:42:10.010000"],["2024-07-24T23:42:11.010000"],["2024-07-24T23:42:12.010000"],["2024-07-24T23:42:13.010000"],["2024-07-24T23:42:14.010000"],["2024-07-24T23:42:15.010000"],["2024-07-24T23:42:16.010000"],["2024-07-24T23:42:17.010000"],["2024-07-24T23:42:18.010000"],["2024-07-24T23:42:19.010000"],["2024-07-24T23:42:20.010000"],["2024-07-24T23:42:21.010000"],["2024-07-24T23:42:22.010000"],["2024-07-24T23:42:23.010000"],["2024-07-24T23:42:24.010000"],["2024-07-24T23:42:25.010000"],["2024-07-24T23:42:26.010000"],["2024-07-24T23:42:27.010000"],["2024-07-24T23:42:28.010000"],["2024-07-24T23:42:29.010000"],["2024-07-24T23:42:30.010000"],["2024-07-24T23:42:31.010000"],["2024-07-24T23:42:32.010000"],["2024-07-24T23:42:33.010000"],["2024-07-24T23:42:34.010000"],["2024-07-24T23:42:35.010000"],["2024-07-24T23:42:36.010000"],["2024-07-24T23:42:37.010000"],["2024-07-24T23:42:38.010000"],["2024-07-24T23:42:39.010000"],["2024-07-24T23:42:40.010000"],["2024-07-24T23:42:41.010000"],["2024-07-24T23:42:42.010000"],["2024-07-24T23:42:43.010000"],["2024-07-24T23:42:44.010000"],["2024-07-24T23:42:45.010000"],["2024-07-24T23:42:46.010000"],["2024-07-24T23:42:47.010000"],["2024-07-24T23:42:48.010000"],["2024-07-24T23:42:49.010000"],["2024-07-24T23:42:50.010000"],["2024-07-24T23:42:51.010000"],["2024-07-24T23:42:52.010000"],["2024-07-24T23:42:53.010000"],["2024-07-24T23:42:54.010000"],["2024-07-24T23:42:55.010000"],["2024-07-24T23:42:56.010000"],["2024-07-24T23:42:57.010000"],["2024-07-24T23:42:58.010000"],["2024-07-24T23:42:59.010000"],["2024-07-24T23:43:00.010000"],["2024-07-24T23:43:01.010000"],["2024-07-24T23:43:02.010000"],["2024-07-24T23:43:03.010000"],["2024-07-24T23:43:04.010000"],["2024-07-24T23:43:05.010000"],["2024-07-24T23:43:06.010000"],["2024-07-24T23:43:07.010000"],["2024-07-24T23:43:08.010000"],["2024-07-24T23:43:09.010000"],["2024-07-24T23:43:10.010000"],["2024-07-24T23:43:11.010000"],["2024-07-24T23:43:12.010000"],["2024-07-24T23:43:13.010000"],["2024-07-24T23:43:14.010000"],["2024-07-24T23:43:15.010000"],["2024-07-24T23:43:16.010000"],["2024-07-24T23:43:17.010000"],["2024-07-24T23:43:18.010000"],["2024-07-24T23:43:19.010000"],["2024-07-24T23:43:20.010000"],["2024-07-24T23:43:21.010000"],["2024-07-24T23:43:22.010000"],["2024-07-24T23:43:23.010000"],["2024-07-24T23:43:24.010000"],["2024-07-24T23:43:25.010000"],["2024-07-24T23:43:26.010000"],["2024-07-24T23:43:27.010000"],["2024-07-24T23:43:28.010000"],["2024-07-24T23:43:29.010000"],["2024-07-24T23:43:30.010000"],["2024-07-24T23:43:31.010000"],["2024-07-24T23:43:32.010000"],["2024-07-24T23:43:33.010000"],["2024-07-24T23:43:34.010000"],["2024-07-24T23:43:35.010000"],["2024-07-24T23:43:36.010000"],["2024-07-24T23:43:37.010000"],["2024-07-24T23:43:38.010000"],["2024-07-24T23:43:39.010000"],["2024-07-24T23:43:40.010000"],["2024-07-24T23:43:41.010000"],["2024-07-24T23:43:42.010000"],["2024-07-24T23:43:43.010000"],["2024-07-24T23:43:44.010000"],["2024-07-24T23:43:45.010000"],["2024-07-24T23:43:46.010000"],["2024-07-24T23:43:47.010000"],["2024-07-24T23:43:48.010000"],["2024-07-24T23:43:49.010000"],["2024-07-24T23:43:50.010000"],["2024-07-24T23:43:51.010000"],["2024-07-24T23:43:52.010000"],["2024-07-24T23:43:53.010000"],["2024-07-24T23:43:54.010000"],["2024-07-24T23:43:55.010000"],["2024-07-24T23:43:56.010000"],["2024-07-24T23:43:57.010000"],["2024-07-24T23:43:58.010000"],["2024-07-24T23:43:59.010000"],["2024-07-24T23:44:00.010000"],["2024-07-24T23:44:01.010000"],["2024-07-24T23:44:02.010000"],["2024-07-24T23:44:03.010000"],["2024-07-24T23:44:04.010000"],["2024-07-24T23:44:05.010000"],["2024-07-24T23:44:06.010000"],["2024-07-24T23:44:07.010000"],["2024-07-24T23:44:08.010000"],["2024-07-24T23:44:09.010000"],["2024-07-24T23:44:10.010000"],["2024-07-24T23:44:11.010000"],["2024-07-24T23:44:12.010000"],["2024-07-24T23:44:13.010000"],["2024-07-24T23:44:14.010000"],["2024-07-24T23:44:15.010000"],["2024-07-24T23:44:16.010000"],["2024-07-24T23:44:17.010000"],["2024-07-24T23:44:18.010000"],["2024-07-24T23:44:19.010000"],["2024-07-24T23:44:20.010000"],["2024-07-24T23:44:21.010000"],["2024-07-24T23:44:22.010000"],["2024-07-24T23:44:23.010000"],["2024-07-24T23:44:24.010000"],["2024-07-24T23:44:25.010000"],["2024-07-24T23:44:26.010000"],["2024-07-24T23:44:27.010000"],["2024-07-24T23:44:28.010000"],["2024-07-24T23:44:29.010000"],["2024-07-24T23:44:30.010000"],["2024-07-24T23:44:31.010000"],["2024-07-24T23:44:32.010000"],["2024-07-24T23:44:33.010000"],["2024-07-24T23:44:34.010000"],["2024-07-24T23:44:35.010000"],["2024-07-24T23:44:36.010000"],["2024-07-24T23:44:37.010000"],["2024-07-24T23:44:38.010000"],["2024-07-24T23:44:39.010000"],["2024-07-24T23:44:40.010000"],["2024-07-24T23:44:41.010000"],["2024-07-24T23:44:42.010000"],["2024-07-24T23:44:43.010000"],["2024-07-24T23:44:44.010000"],["2024-07-24T23:44:45.010000"],["2024-07-24T23:44:46.010000"],["2024-07-24T23:44:47.010000"],["2024-07-24T23:44:48.010000"],["2024-07-24T23:44:49.010000"],["2024-07-24T23:44:50.010000"],["2024-07-24T23:44:51.010000"],["2024-07-24T23:44:52.010000"],["2024-07-24T23:44:53.010000"],["2024-07-24T23:44:54.010000"],["2024-07-24T23:44:55.010000"],["2024-07-24T23:44:56.010000"],["2024-07-24T23:44:57.010000"],["2024-07-24T23:44:58.010000"],["2024-07-24T23:44:59.010000"],["2024-07-24T23:45:00.010000"],["2024-07-24T23:45:01.010000"],["2024-07-24T23:45:02.010000"],["2024-07-24T23:45:03.010000"],["2024-07-24T23:45:04.010000"],["2024-07-24T23:45:05.010000"],["2024-07-24T23:45:06.010000"],["2024-07-24T23:45:07.010000"],["2024-07-24T23:45:08.010000"],["2024-07-24T23:45:09.010000"],["2024-07-24T23:45:10.010000"],["2024-07-24T23:45:11.010000"],["2024-07-24T23:45:12.010000"],["2024-07-24T23:45:13.010000"],["2024-07-24T23:45:14.010000"],["2024-07-24T23:45:15.010000"],["2024-07-24T23:45:16.010000"],["2024-07-24T23:45:17.010000"],["2024-07-24T23:45:18.010000"],["2024-07-24T23:45:19.010000"],["2024-07-24T23:45:20.010000"],["2024-07-24T23:45:21.010000"],["2024-07-24T23:45:22.010000"],["2024-07-24T23:45:23.010000"],["2024-07-24T23:45:24.010000"],["2024-07-24T23:45:25.010000"],["2024-07-24T23:45:26.010000"],["2024-07-24T23:45:27.010000"],["2024-07-24T23:45:28.010000"],["2024-07-24T23:45:29.010000"],["2024-07-24T23:45:30.010000"],["2024-07-24T23:45:31.010000"],["2024-07-24T23:45:32.010000"],["2024-07-24T23:45:33.010000"],["2024-07-24T23:45:34.010000"],["2024-07-24T23:45:35.010000"],["2024-07-24T23:45:36.010000"],["2024-07-24T23:45:37.010000"],["2024-07-24T23:45:38.010000"],["2024-07-24T23:45:39.010000"],["2024-07-24T23:45:40.010000"],["2024-07-24T23:45:41.010000"],["2024-07-24T23:45:42.010000"],["2024-07-24T23:45:43.010000"],["2024-07-24T23:45:44.010000"],["2024-07-24T23:45:45.010000"],["2024-07-24T23:45:46.010000"],["2024-07-24T23:45:47.010000"],["2024-07-24T23:45:48.010000"],["2024-07-24T23:45:49.010000"],["2024-07-24T23:45:50.010000"],["2024-07-24T23:45:51.010000"],["2024-07-24T23:45:52.010000"],["2024-07-24T23:45:53.010000"],["2024-07-24T23:45:54.010000"],["2024-07-24T23:45:55.010000"],["2024-07-24T23:45:56.010000"],["2024-07-24T23:45:57.010000"],["2024-07-24T23:45:58.010000"],["2024-07-24T23:45:59.010000"],["2024-07-24T23:46:00.010000"],["2024-07-24T23:46:01.010000"],["2024-07-24T23:46:02.010000"],["2024-07-24T23:46:03.010000"],["2024-07-24T23:46:04.010000"],["2024-07-24T23:46:05.010000"],["2024-07-24T23:46:06.010000"],["2024-07-24T23:46:07.010000"],["2024-07-24T23:46:08.010000"],["2024-07-24T23:46:09.010000"],["2024-07-24T23:46:10.010000"],["2024-07-24T23:46:11.010000"],["2024-07-24T23:46:12.010000"],["2024-07-24T23:46:13.010000"],["2024-07-24T23:46:14.010000"],["2024-07-24T23:46:15.010000"],["2024-07-24T23:46:16.010000"],["2024-07-24T23:46:17.010000"],["2024-07-24T23:46:18.010000"],["2024-07-24T23:46:19.010000"],["2024-07-24T23:46:20.010000"],["2024-07-24T23:46:21.010000"],["2024-07-24T23:46:22.010000"],["2024-07-24T23:46:23.010000"],["2024-07-24T23:46:24.010000"],["2024-07-24T23:46:25.010000"],["2024-07-24T23:46:26.010000"],["2024-07-24T23:46:27.010000"],["2024-07-24T23:46:28.010000"],["2024-07-24T23:46:29.010000"],["2024-07-24T23:46:30.010000"],["2024-07-24T23:46:31.010000"],["2024-07-24T23:46:32.010000"],["2024-07-24T23:46:33.010000"],["2024-07-24T23:46:34.010000"],["2024-07-24T23:46:35.010000"],["2024-07-24T23:46:36.010000"],["2024-07-24T23:46:37.010000"],["2024-07-24T23:46:38.010000"],["2024-07-24T23:46:39.010000"],["2024-07-24T23:46:40.010000"],["2024-07-24T23:46:41.010000"],["2024-07-24T23:46:42.010000"],["2024-07-24T23:46:43.010000"],["2024-07-24T23:46:44.010000"],["2024-07-24T23:46:45.010000"],["2024-07-24T23:46:46.010000"],["2024-07-24T23:46:47.010000"],["2024-07-24T23:46:48.010000"],["2024-07-24T23:46:49.010000"],["2024-07-24T23:46:50.010000"],["2024-07-24T23:46:51.010000"],["2024-07-24T23:46:52.010000"],["2024-07-24T23:46:53.010000"],["2024-07-24T23:46:54.010000"],["2024-07-24T23:46:55.010000"],["2024-07-24T23:46:56.010000"],["2024-07-24T23:46:57.010000"],["2024-07-24T23:46:58.010000"],["2024-07-24T23:46:59.010000"],["2024-07-24T23:47:00.010000"],["2024-07-24T23:47:01.010000"],["2024-07-24T23:47:02.010000"],["2024-07-24T23:47:03.010000"],["2024-07-24T23:47:04.010000"],["2024-07-24T23:47:05.010000"],["2024-07-24T23:47:06.010000"],["2024-07-24T23:47:07.010000"],["2024-07-24T23:47:08.010000"],["2024-07-24T23:47:09.010000"],["2024-07-24T23:47:10.010000"],["2024-07-24T23:47:11.010000"],["2024-07-24T23:47:12.010000"],["2024-07-24T23:47:13.010000"],["2024-07-24T23:47:14.010000"],["2024-07-24T23:47:15.010000"],["2024-07-24T23:47:16.010000"],["2024-07-24T23:47:17.010000"],["2024-07-24T23:47:18.010000"],["2024-07-24T23:47:19.010000"],["2024-07-24T23:47:20.010000"],["2024-07-24T23:47:21.010000"],["2024-07-24T23:47:22.010000"],["2024-07-24T23:47:23.010000"],["2024-07-24T23:47:24.010000"],["2024-07-24T23:47:25.010000"],["2024-07-24T23:47:26.010000"],["2024-07-24T23:47:27.010000"],["2024-07-24T23:47:28.010000"],["2024-07-24T23:47:29.010000"],["2024-07-24T23:47:30.010000"],["2024-07-24T23:47:31.010000"],["2024-07-24T23:47:32.010000"],["2024-07-24T23:47:33.010000"],["2024-07-24T23:47:34.010000"],["2024-07-24T23:47:35.010000"],["2024-07-24T23:47:36.010000"],["2024-07-24T23:47:37.010000"],["2024-07-24T23:47:38.010000"],["2024-07-24T23:47:39.010000"],["2024-07-24T23:47:40.010000"],["2024-07-24T23:47:41.010000"],["2024-07-24T23:47:42.010000"],["2024-07-24T23:47:43.010000"],["2024-07-24T23:47:44.010000"],["2024-07-24T23:47:45.010000"],["2024-07-24T23:47:46.010000"],["2024-07-24T23:47:47.010000"],["2024-07-24T23:47:48.010000"],["2024-07-24T23:47:49.010000"],["2024-07-24T23:47:50.010000"],["2024-07-24T23:47:51.010000"],["2024-07-24T23:47:52.010000"],["2024-07-24T23:47:53.010000"],["2024-07-24T23:47:54.010000"],["2024-07-24T23:47:55.010000"],["2024-07-24T23:47:56.010000"],["2024-07-24T23:47:57.010000"],["2024-07-24T23:47:58.010000"],["2024-07-24T23:47:59.010000"],["2024-07-24T23:48:00.010000"],["2024-07-24T23:48:01.010000"],["2024-07-24T23:48:02.010000"],["2024-07-24T23:48:03.010000"],["2024-07-24T23:48:04.010000"],["2024-07-24T23:48:05.010000"],["2024-07-24T23:48:06.010000"],["2024-07-24T23:48:07.010000"],["2024-07-24T23:48:08.010000"],["2024-07-24T23:48:09.010000"],["2024-07-24T23:48:10.010000"],["2024-07-24T23:48:11.010000"],["2024-07-24T23:48:12.010000"],["2024-07-24T23:48:13.010000"],["2024-07-24T23:48:14.010000"],["2024-07-24T23:48:15.010000"],["2024-07-24T23:48:16.010000"],["2024-07-24T23:48:17.010000"],["2024-07-24T23:48:18.010000"],["2024-07-24T23:48:19.010000"],["2024-07-24T23:48:20.010000"],["2024-07-24T23:48:21.010000"],["2024-07-24T23:48:22.010000"],["2024-07-24T23:48:23.010000"],["2024-07-24T23:48:24.010000"],["2024-07-24T23:48:25.010000"],["2024-07-24T23:48:26.010000"],["2024-07-24T23:48:27.010000"],["2024-07-24T23:48:28.010000"],["2024-07-24T23:48:29.010000"],["2024-07-24T23:48:30.010000"],["2024-07-24T23:48:31.010000"],["2024-07-24T23:48:32.010000"],["2024-07-24T23:48:33.010000"],["2024-07-24T23:48:34.010000"],["2024-07-24T23:48:35.010000"],["2024-07-24T23:48:36.010000"],["2024-07-24T23:48:37.010000"],["2024-07-24T23:48:38.010000"],["2024-07-24T23:48:39.010000"],["2024-07-24T23:48:40.010000"],["2024-07-24T23:48:41.010000"],["2024-07-24T23:48:42.010000"],["2024-07-24T23:48:43.010000"],["2024-07-24T23:48:44.010000"],["2024-07-24T23:48:45.010000"],["2024-07-24T23:48:46.010000"],["2024-07-24T23:48:47.010000"],["2024-07-24T23:48:48.010000"],["2024-07-24T23:48:49.010000"],["2024-07-24T23:48:50.010000"],["2024-07-24T23:48:51.010000"],["2024-07-24T23:48:52.010000"],["2024-07-24T23:48:53.010000"],["2024-07-24T23:48:54.010000"],["2024-07-24T23:48:55.010000"],["2024-07-24T23:48:56.010000"],["2024-07-24T23:48:57.010000"],["2024-07-24T23:48:58.010000"],["2024-07-24T23:48:59.010000"],["2024-07-24T23:49:00.010000"],["2024-07-24T23:49:01.010000"],["2024-07-24T23:49:02.010000"],["2024-07-24T23:49:03.010000"],["2024-07-24T23:49:04.010000"],["2024-07-24T23:49:05.010000"],["2024-07-24T23:49:06.010000"],["2024-07-24T23:49:07.010000"],["2024-07-24T23:49:08.010000"],["2024-07-24T23:49:09.010000"],["2024-07-24T23:49:10.010000"],["2024-07-24T23:49:11.010000"],["2024-07-24T23:49:12.010000"],["2024-07-24T23:49:13.010000"],["2024-07-24T23:49:14.010000"],["2024-07-24T23:49:15.010000"],["2024-07-24T23:49:16.010000"],["2024-07-24T23:49:17.010000"],["2024-07-24T23:49:18.010000"],["2024-07-24T23:49:19.010000"],["2024-07-24T23:49:20.010000"],["2024-07-24T23:49:21.010000"],["2024-07-24T23:49:22.010000"],["2024-07-24T23:49:23.010000"],["2024-07-24T23:49:24.010000"],["2024-07-24T23:49:25.010000"],["2024-07-24T23:49:26.010000"],["2024-07-24T23:49:27.010000"],["2024-07-24T23:49:28.010000"],["2024-07-24T23:49:29.010000"],["2024-07-24T23:49:30.010000"],["2024-07-24T23:49:31.010000"],["2024-07-24T23:49:32.010000"],["2024-07-24T23:49:33.010000"],["2024-07-24T23:49:34.010000"],["2024-07-24T23:49:35.010000"],["2024-07-24T23:49:36.010000"],["2024-07-24T23:49:37.010000"],["2024-07-24T23:49:38.010000"],["2024-07-24T23:49:39.010000"],["2024-07-24T23:49:40.010000"],["2024-07-24T23:49:41.010000"],["2024-07-24T23:49:42.010000"],["2024-07-24T23:49:43.010000"],["2024-07-24T23:49:44.010000"],["2024-07-24T23:49:45.010000"],["2024-07-24T23:49:46.010000"],["2024-07-24T23:49:47.010000"],["2024-07-24T23:49:48.010000"],["2024-07-24T23:49:49.010000"],["2024-07-24T23:49:50.010000"],["2024-07-24T23:49:51.010000"],["2024-07-24T23:49:52.010000"],["2024-07-24T23:49:53.010000"],["2024-07-24T23:49:54.010000"],["2024-07-24T23:49:55.010000"],["2024-07-24T23:49:56.010000"],["2024-07-24T23:49:57.010000"],["2024-07-24T23:49:58.010000"],["2024-07-24T23:49:59.010000"],["2024-07-24T23:50:00.010000"],["2024-07-24T23:50:01.010000"],["2024-07-24T23:50:02.010000"],["2024-07-24T23:50:03.010000"],["2024-07-24T23:50:04.010000"],["2024-07-24T23:50:05.010000"],["2024-07-24T23:50:06.010000"],["2024-07-24T23:50:07.010000"],["2024-07-24T23:50:08.010000"],["2024-07-24T23:50:09.010000"],["2024-07-24T23:50:10.010000"],["2024-07-24T23:50:11.010000"],["2024-07-24T23:50:12.010000"],["2024-07-24T23:50:13.010000"],["2024-07-24T23:50:14.010000"],["2024-07-24T23:50:15.010000"],["2024-07-24T23:50:16.010000"],["2024-07-24T23:50:17.010000"],["2024-07-24T23:50:18.010000"],["2024-07-24T23:50:19.010000"],["2024-07-24T23:50:20.010000"],["2024-07-24T23:50:21.010000"],["2024-07-24T23:50:22.010000"],["2024-07-24T23:50:23.010000"],["2024-07-24T23:50:24.010000"],["2024-07-24T23:50:25.010000"],["2024-07-24T23:50:26.010000"],["2024-07-24T23:50:27.010000"],["2024-07-24T23:50:28.010000"],["2024-07-24T23:50:29.010000"],["2024-07-24T23:50:30.010000"],["2024-07-24T23:50:31.010000"],["2024-07-24T23:50:32.010000"],["2024-07-24T23:50:33.010000"],["2024-07-24T23:50:34.010000"],["2024-07-24T23:50:35.010000"],["2024-07-24T23:50:36.010000"],["2024-07-24T23:50:37.010000"],["2024-07-24T23:50:38.010000"],["2024-07-24T23:50:39.010000"],["2024-07-24T23:50:40.010000"],["2024-07-24T23:50:41.010000"],["2024-07-24T23:50:42.010000"],["2024-07-24T23:50:43.010000"],["2024-07-24T23:50:44.010000"],["2024-07-24T23:50:45.010000"],["2024-07-24T23:50:46.010000"],["2024-07-24T23:50:47.010000"],["2024-07-24T23:50:48.010000"],["2024-07-24T23:50:49.010000"],["2024-07-24T23:50:50.010000"],["2024-07-24T23:50:51.010000"],["2024-07-24T23:50:52.010000"],["2024-07-24T23:50:53.010000"],["2024-07-24T23:50:54.010000"],["2024-07-24T23:50:55.010000"],["2024-07-24T23:50:56.010000"],["2024-07-24T23:50:57.010000"],["2024-07-24T23:50:58.010000"],["2024-07-24T23:50:59.010000"],["2024-07-24T23:51:00.010000"],["2024-07-24T23:51:01.010000"],["2024-07-24T23:51:02.010000"],["2024-07-24T23:51:03.010000"],["2024-07-24T23:51:04.010000"],["2024-07-24T23:51:05.010000"],["2024-07-24T23:51:06.010000"],["2024-07-24T23:51:07.010000"],["2024-07-24T23:51:08.010000"],["2024-07-24T23:51:09.010000"],["2024-07-24T23:51:10.010000"],["2024-07-24T23:51:11.010000"],["2024-07-24T23:51:12.010000"],["2024-07-24T23:51:13.010000"],["2024-07-24T23:51:14.010000"],["2024-07-24T23:51:15.010000"],["2024-07-24T23:51:16.010000"],["2024-07-24T23:51:17.010000"],["2024-07-24T23:51:18.010000"],["2024-07-24T23:51:19.010000"],["2024-07-24T23:51:20.010000"],["2024-07-24T23:51:21.010000"],["2024-07-24T23:51:22.010000"],["2024-07-24T23:51:23.010000"],["2024-07-24T23:51:24.010000"],["2024-07-24T23:51:25.010000"],["2024-07-24T23:51:26.010000"],["2024-07-24T23:51:27.010000"],["2024-07-24T23:51:28.010000"],["2024-07-24T23:51:29.010000"],["2024-07-24T23:51:30.010000"],["2024-07-24T23:51:31.010000"],["2024-07-24T23:51:32.010000"],["2024-07-24T23:51:33.010000"],["2024-07-24T23:51:34.010000"],["2024-07-24T23:51:35.010000"],["2024-07-24T23:51:36.010000"],["2024-07-24T23:51:37.010000"],["2024-07-24T23:51:38.010000"],["2024-07-24T23:51:39.010000"],["2024-07-24T23:51:40.010000"],["2024-07-24T23:51:41.010000"],["2024-07-24T23:51:42.010000"],["2024-07-24T23:51:43.010000"],["2024-07-24T23:51:44.010000"],["2024-07-24T23:51:45.010000"],["2024-07-24T23:51:46.010000"],["2024-07-24T23:51:47.010000"],["2024-07-24T23:51:48.010000"],["2024-07-24T23:51:49.010000"],["2024-07-24T23:51:50.010000"],["2024-07-24T23:51:51.010000"],["2024-07-24T23:51:52.010000"],["2024-07-24T23:51:53.010000"],["2024-07-24T23:51:54.010000"],["2024-07-24T23:51:55.010000"],["2024-07-24T23:51:56.010000"],["2024-07-24T23:51:57.010000"],["2024-07-24T23:51:58.010000"],["2024-07-24T23:51:59.010000"],["2024-07-24T23:52:00.010000"],["2024-07-24T23:52:01.010000"],["2024-07-24T23:52:02.010000"],["2024-07-24T23:52:03.010000"],["2024-07-24T23:52:04.010000"],["2024-07-24T23:52:05.010000"],["2024-07-24T23:52:06.010000"],["2024-07-24T23:52:07.010000"],["2024-07-24T23:52:08.010000"],["2024-07-24T23:52:09.010000"],["2024-07-24T23:52:10.010000"],["2024-07-24T23:52:11.010000"],["2024-07-24T23:52:12.010000"],["2024-07-24T23:52:13.010000"],["2024-07-24T23:52:14.010000"],["2024-07-24T23:52:15.010000"],["2024-07-24T23:52:16.010000"],["2024-07-24T23:52:17.010000"],["2024-07-24T23:52:18.010000"],["2024-07-24T23:52:19.010000"],["2024-07-24T23:52:20.010000"],["2024-07-24T23:52:21.010000"],["2024-07-24T23:52:22.010000"],["2024-07-24T23:52:23.010000"],["2024-07-24T23:52:24.010000"],["2024-07-24T23:52:25.010000"],["2024-07-24T23:52:26.010000"],["2024-07-24T23:52:27.010000"],["2024-07-24T23:52:28.010000"],["2024-07-24T23:52:29.010000"],["2024-07-24T23:52:30.010000"],["2024-07-24T23:52:31.010000"],["2024-07-24T23:52:32.010000"],["2024-07-24T23:52:33.010000"],["2024-07-24T23:52:34.010000"],["2024-07-24T23:52:35.010000"],["2024-07-24T23:52:36.010000"],["2024-07-24T23:52:37.010000"],["2024-07-24T23:52:38.010000"],["2024-07-24T23:52:39.010000"],["2024-07-24T23:52:40.010000"],["2024-07-24T23:52:41.010000"],["2024-07-24T23:52:42.010000"],["2024-07-24T23:52:43.010000"],["2024-07-24T23:52:44.010000"],["2024-07-24T23:52:45.010000"],["2024-07-24T23:52:46.010000"],["2024-07-24T23:52:47.010000"],["2024-07-24T23:52:48.010000"],["2024-07-24T23:52:49.010000"],["2024-07-24T23:52:50.010000"],["2024-07-24T23:52:51.010000"],["2024-07-24T23:52:52.010000"],["2024-07-24T23:52:53.010000"],["2024-07-24T23:52:54.010000"],["2024-07-24T23:52:55.010000"],["2024-07-24T23:52:56.010000"],["2024-07-24T23:52:57.010000"],["2024-07-24T23:52:58.010000"],["2024-07-24T23:52:59.010000"],["2024-07-24T23:53:00.010000"],["2024-07-24T23:53:01.010000"],["2024-07-24T23:53:02.010000"],["2024-07-24T23:53:03.010000"],["2024-07-24T23:53:04.010000"],["2024-07-24T23:53:05.010000"],["2024-07-24T23:53:06.010000"],["2024-07-24T23:53:07.010000"],["2024-07-24T23:53:08.010000"],["2024-07-24T23:53:09.010000"],["2024-07-24T23:53:10.010000"],["2024-07-24T23:53:11.010000"],["2024-07-24T23:53:12.010000"],["2024-07-24T23:53:13.010000"],["2024-07-24T23:53:14.010000"],["2024-07-24T23:53:15.010000"],["2024-07-24T23:53:16.010000"],["2024-07-24T23:53:17.010000"],["2024-07-24T23:53:18.010000"],["2024-07-24T23:53:19.010000"],["2024-07-24T23:53:20.010000"],["2024-07-24T23:53:21.010000"],["2024-07-24T23:53:22.010000"],["2024-07-24T23:53:23.010000"],["2024-07-24T23:53:24.010000"],["2024-07-24T23:53:25.010000"],["2024-07-24T23:53:26.010000"],["2024-07-24T23:53:27.010000"],["2024-07-24T23:53:28.010000"],["2024-07-24T23:53:29.010000"],["2024-07-24T23:53:30.010000"],["2024-07-24T23:53:31.010000"],["2024-07-24T23:53:32.010000"],["2024-07-24T23:53:33.010000"],["2024-07-24T23:53:34.010000"],["2024-07-24T23:53:35.010000"],["2024-07-24T23:53:36.010000"],["2024-07-24T23:53:37.010000"],["2024-07-24T23:53:38.010000"],["2024-07-24T23:53:39.010000"],["2024-07-24T23:53:40.010000"],["2024-07-24T23:53:41.010000"],["2024-07-24T23:53:42.010000"],["2024-07-24T23:53:43.010000"],["2024-07-24T23:53:44.010000"],["2024-07-24T23:53:45.010000"],["2024-07-24T23:53:46.010000"],["2024-07-24T23:53:47.010000"],["2024-07-24T23:53:48.010000"],["2024-07-24T23:53:49.010000"],["2024-07-24T23:53:50.010000"],["2024-07-24T23:53:51.010000"],["2024-07-24T23:53:52.010000"],["2024-07-24T23:53:53.010000"],["2024-07-24T23:53:54.010000"],["2024-07-24T23:53:55.010000"],["2024-07-24T23:53:56.010000"],["2024-07-24T23:53:57.010000"],["2024-07-24T23:53:58.010000"],["2024-07-24T23:53:59.010000"],["2024-07-24T23:54:00.010000"],["2024-07-24T23:54:01.010000"],["2024-07-24T23:54:02.010000"],["2024-07-24T23:54:03.010000"],["2024-07-24T23:54:04.010000"],["2024-07-24T23:54:05.010000"],["2024-07-24T23:54:06.010000"],["2024-07-24T23:54:07.010000"],["2024-07-24T23:54:08.010000"],["2024-07-24T23:54:09.010000"],["2024-07-24T23:54:10.010000"],["2024-07-24T23:54:11.010000"],["2024-07-24T23:54:12.010000"],["2024-07-24T23:54:13.010000"],["2024-07-24T23:54:14.010000"],["2024-07-24T23:54:15.010000"],["2024-07-24T23:54:16.010000"],["2024-07-24T23:54:17.010000"],["2024-07-24T23:54:18.010000"],["2024-07-24T23:54:19.010000"],["2024-07-24T23:54:20.010000"],["2024-07-24T23:54:21.010000"],["2024-07-24T23:54:22.010000"],["2024-07-24T23:54:23.010000"],["2024-07-24T23:54:24.010000"],["2024-07-24T23:54:25.010000"],["2024-07-24T23:54:26.010000"],["2024-07-24T23:54:27.010000"],["2024-07-24T23:54:28.010000"],["2024-07-24T23:54:29.010000"],["2024-07-24T23:54:30.010000"],["2024-07-24T23:54:31.010000"],["2024-07-24T23:54:32.010000"],["2024-07-24T23:54:33.010000"],["2024-07-24T23:54:34.010000"],["2024-07-24T23:54:35.010000"],["2024-07-24T23:54:36.010000"],["2024-07-24T23:54:37.010000"],["2024-07-24T23:54:38.010000"],["2024-07-24T23:54:39.010000"],["2024-07-24T23:54:40.010000"],["2024-07-24T23:54:41.010000"],["2024-07-24T23:54:42.010000"],["2024-07-24T23:54:43.010000"],["2024-07-24T23:54:44.010000"],["2024-07-24T23:54:45.010000"],["2024-07-24T23:54:46.010000"],["2024-07-24T23:54:47.010000"],["2024-07-24T23:54:48.010000"],["2024-07-24T23:54:49.010000"],["2024-07-24T23:54:50.010000"],["2024-07-24T23:54:51.010000"],["2024-07-24T23:54:52.010000"],["2024-07-24T23:54:53.010000"],["2024-07-24T23:54:54.010000"],["2024-07-24T23:54:55.010000"],["2024-07-24T23:54:56.010000"],["2024-07-24T23:54:57.010000"],["2024-07-24T23:54:58.010000"],["2024-07-24T23:54:59.010000"],["2024-07-24T23:55:00.010000"],["2024-07-24T23:55:01.010000"],["2024-07-24T23:55:02.010000"],["2024-07-24T23:55:03.010000"],["2024-07-24T23:55:04.010000"],["2024-07-24T23:55:05.010000"],["2024-07-24T23:55:06.010000"],["2024-07-24T23:55:07.010000"],["2024-07-24T23:55:08.010000"],["2024-07-24T23:55:09.010000"],["2024-07-24T23:55:10.010000"],["2024-07-24T23:55:11.010000"],["2024-07-24T23:55:12.010000"],["2024-07-24T23:55:13.010000"],["2024-07-24T23:55:14.010000"],["2024-07-24T23:55:15.010000"],["2024-07-24T23:55:16.010000"],["2024-07-24T23:55:17.010000"],["2024-07-24T23:55:18.010000"],["2024-07-24T23:55:19.010000"],["2024-07-24T23:55:20.010000"],["2024-07-24T23:55:21.010000"],["2024-07-24T23:55:22.010000"],["2024-07-24T23:55:23.010000"],["2024-07-24T23:55:24.010000"],["2024-07-24T23:55:25.010000"],["2024-07-24T23:55:26.010000"],["2024-07-24T23:55:27.010000"],["2024-07-24T23:55:28.010000"],["2024-07-24T23:55:29.010000"],["2024-07-24T23:55:30.010000"],["2024-07-24T23:55:31.010000"],["2024-07-24T23:55:32.010000"],["2024-07-24T23:55:33.010000"],["2024-07-24T23:55:34.010000"],["2024-07-24T23:55:35.010000"],["2024-07-24T23:55:36.010000"],["2024-07-24T23:55:37.010000"],["2024-07-24T23:55:38.010000"],["2024-07-24T23:55:39.010000"],["2024-07-24T23:55:40.010000"],["2024-07-24T23:55:41.010000"],["2024-07-24T23:55:42.010000"],["2024-07-24T23:55:43.010000"],["2024-07-24T23:55:44.010000"],["2024-07-24T23:55:45.010000"],["2024-07-24T23:55:46.010000"],["2024-07-24T23:55:47.010000"],["2024-07-24T23:55:48.010000"],["2024-07-24T23:55:49.010000"],["2024-07-24T23:55:50.010000"],["2024-07-24T23:55:51.010000"],["2024-07-24T23:55:52.010000"],["2024-07-24T23:55:53.010000"],["2024-07-24T23:55:54.010000"],["2024-07-24T23:55:55.010000"],["2024-07-24T23:55:56.010000"],["2024-07-24T23:55:57.010000"],["2024-07-24T23:55:58.010000"],["2024-07-24T23:55:59.010000"],["2024-07-24T23:56:00.010000"],["2024-07-24T23:56:01.010000"],["2024-07-24T23:56:02.010000"],["2024-07-24T23:56:03.010000"],["2024-07-24T23:56:04.010000"],["2024-07-24T23:56:05.010000"],["2024-07-24T23:56:06.010000"],["2024-07-24T23:56:07.010000"],["2024-07-24T23:56:08.010000"],["2024-07-24T23:56:09.010000"],["2024-07-24T23:56:10.010000"],["2024-07-24T23:56:11.010000"],["2024-07-24T23:56:12.010000"],["2024-07-24T23:56:13.010000"],["2024-07-24T23:56:14.010000"],["2024-07-24T23:56:15.010000"],["2024-07-24T23:56:16.010000"],["2024-07-24T23:56:17.010000"],["2024-07-24T23:56:18.010000"],["2024-07-24T23:56:19.010000"],["2024-07-24T23:56:20.010000"],["2024-07-24T23:56:21.010000"],["2024-07-24T23:56:22.010000"],["2024-07-24T23:56:23.010000"],["2024-07-24T23:56:24.010000"],["2024-07-24T23:56:25.010000"],["2024-07-24T23:56:26.010000"],["2024-07-24T23:56:27.010000"],["2024-07-24T23:56:28.010000"],["2024-07-24T23:56:29.010000"],["2024-07-24T23:56:30.010000"],["2024-07-24T23:56:31.010000"],["2024-07-24T23:56:32.010000"],["2024-07-24T23:56:33.010000"],["2024-07-24T23:56:34.010000"],["2024-07-24T23:56:35.010000"],["2024-07-24T23:56:36.010000"],["2024-07-24T23:56:37.010000"],["2024-07-24T23:56:38.010000"],["2024-07-24T23:56:39.010000"],["2024-07-24T23:56:40.010000"],["2024-07-24T23:56:41.010000"],["2024-07-24T23:56:42.010000"],["2024-07-24T23:56:43.010000"],["2024-07-24T23:56:44.010000"],["2024-07-24T23:56:45.010000"],["2024-07-24T23:56:46.010000"],["2024-07-24T23:56:47.010000"],["2024-07-24T23:56:48.010000"],["2024-07-24T23:56:49.010000"],["2024-07-24T23:56:50.010000"],["2024-07-24T23:56:51.010000"],["2024-07-24T23:56:52.010000"],["2024-07-24T23:56:53.010000"],["2024-07-24T23:56:54.010000"],["2024-07-24T23:56:55.010000"],["2024-07-24T23:56:56.010000"],["2024-07-24T23:56:57.010000"],["2024-07-24T23:56:58.010000"],["2024-07-24T23:56:59.010000"],["2024-07-24T23:57:00.010000"],["2024-07-24T23:57:01.010000"],["2024-07-24T23:57:02.010000"],["2024-07-24T23:57:03.010000"],["2024-07-24T23:57:04.010000"],["2024-07-24T23:57:05.010000"],["2024-07-24T23:57:06.010000"],["2024-07-24T23:57:07.010000"],["2024-07-24T23:57:08.010000"],["2024-07-24T23:57:09.010000"],["2024-07-24T23:57:10.010000"],["2024-07-24T23:57:11.010000"],["2024-07-24T23:57:12.010000"],["2024-07-24T23:57:13.010000"],["2024-07-24T23:57:14.010000"],["2024-07-24T23:57:15.010000"],["2024-07-24T23:57:16.010000"],["2024-07-24T23:57:17.010000"],["2024-07-24T23:57:18.010000"],["2024-07-24T23:57:19.010000"],["2024-07-24T23:57:20.010000"],["2024-07-24T23:57:21.010000"],["2024-07-24T23:57:22.010000"],["2024-07-24T23:57:23.010000"],["2024-07-24T23:57:24.010000"],["2024-07-24T23:57:25.010000"],["2024-07-24T23:57:26.010000"],["2024-07-24T23:57:27.010000"],["2024-07-24T23:57:28.010000"],["2024-07-24T23:57:29.010000"],["2024-07-24T23:57:30.010000"],["2024-07-24T23:57:31.010000"],["2024-07-24T23:57:32.010000"],["2024-07-24T23:57:33.010000"],["2024-07-24T23:57:34.010000"],["2024-07-24T23:57:35.010000"],["2024-07-24T23:57:36.010000"],["2024-07-24T23:57:37.010000"],["2024-07-24T23:57:38.010000"],["2024-07-24T23:57:39.010000"],["2024-07-24T23:57:40.010000"],["2024-07-24T23:57:41.010000"],["2024-07-24T23:57:42.010000"],["2024-07-24T23:57:43.010000"],["2024-07-24T23:57:44.010000"],["2024-07-24T23:57:45.010000"],["2024-07-24T23:57:46.010000"],["2024-07-24T23:57:47.010000"],["2024-07-24T23:57:48.010000"],["2024-07-24T23:57:49.010000"],["2024-07-24T23:57:50.010000"],["2024-07-24T23:57:51.010000"],["2024-07-24T23:57:52.010000"],["2024-07-24T23:57:53.010000"],["2024-07-24T23:57:54.010000"],["2024-07-24T23:57:55.010000"],["2024-07-24T23:57:56.010000"],["2024-07-24T23:57:57.010000"],["2024-07-24T23:57:58.010000"],["2024-07-24T23:57:59.010000"],["2024-07-24T23:58:00.010000"],["2024-07-24T23:58:01.010000"],["2024-07-24T23:58:02.010000"],["2024-07-24T23:58:03.010000"],["2024-07-24T23:58:04.010000"],["2024-07-24T23:58:05.010000"],["2024-07-24T23:58:06.010000"],["2024-07-24T23:58:07.010000"],["2024-07-24T23:58:08.010000"],["2024-07-24T23:58:09.010000"],["2024-07-24T23:58:10.010000"],["2024-07-24T23:58:11.010000"],["2024-07-24T23:58:12.010000"],["2024-07-24T23:58:13.010000"],["2024-07-24T23:58:14.010000"],["2024-07-24T23:58:15.010000"],["2024-07-24T23:58:16.010000"],["2024-07-24T23:58:17.010000"],["2024-07-24T23:58:18.010000"],["2024-07-24T23:58:19.010000"],["2024-07-24T23:58:20.010000"],["2024-07-24T23:58:21.010000"],["2024-07-24T23:58:22.010000"],["2024-07-24T23:58:23.010000"],["2024-07-24T23:58:24.010000"],["2024-07-24T23:58:25.010000"],["2024-07-24T23:58:26.010000"],["2024-07-24T23:58:27.010000"],["2024-07-24T23:58:28.010000"],["2024-07-24T23:58:29.010000"],["2024-07-24T23:58:30.010000"],["2024-07-24T23:58:31.010000"],["2024-07-24T23:58:32.010000"],["2024-07-24T23:58:33.010000"],["2024-07-24T23:58:34.010000"],["2024-07-24T23:58:35.010000"],["2024-07-24T23:58:36.010000"],["2024-07-24T23:58:37.010000"],["2024-07-24T23:58:38.010000"],["2024-07-24T23:58:39.010000"],["2024-07-24T23:58:40.010000"],["2024-07-24T23:58:41.010000"],["2024-07-24T23:58:42.010000"],["2024-07-24T23:58:43.010000"],["2024-07-24T23:58:44.010000"],["2024-07-24T23:58:45.010000"],["2024-07-24T23:58:46.010000"],["2024-07-24T23:58:47.010000"],["2024-07-24T23:58:48.010000"],["2024-07-24T23:58:49.010000"],["2024-07-24T23:58:50.010000"],["2024-07-24T23:58:51.010000"],["2024-07-24T23:58:52.010000"],["2024-07-24T23:58:53.010000"],["2024-07-24T23:58:54.010000"],["2024-07-24T23:58:55.010000"],["2024-07-24T23:58:56.010000"],["2024-07-24T23:58:57.010000"],["2024-07-24T23:58:58.010000"],["2024-07-24T23:58:59.010000"],["2024-07-24T23:59:00.010000"],["2024-07-24T23:59:01.010000"],["2024-07-24T23:59:02.010000"],["2024-07-24T23:59:03.010000"],["2024-07-24T23:59:04.010000"],["2024-07-24T23:59:05.010000"],["2024-07-24T23:59:06.010000"],["2024-07-24T23:59:07.010000"],["2024-07-24T23:59:08.010000"],["2024-07-24T23:59:09.010000"],["2024-07-24T23:59:10.010000"],["2024-07-24T23:59:11.010000"],["2024-07-24T23:59:12.010000"],["2024-07-24T23:59:13.010000"],["2024-07-24T23:59:14.010000"],["2024-07-24T23:59:15.010000"],["2024-07-24T23:59:16.010000"],["2024-07-24T23:59:17.010000"],["2024-07-24T23:59:18.010000"],["2024-07-24T23:59:19.010000"],["2024-07-24T23:59:20.010000"],["2024-07-24T23:59:21.010000"],["2024-07-24T23:59:22.010000"],["2024-07-24T23:59:23.010000"],["2024-07-24T23:59:24.010000"],["2024-07-24T23:59:25.010000"],["2024-07-24T23:59:26.010000"],["2024-07-24T23:59:27.010000"],["2024-07-24T23:59:28.010000"],["2024-07-24T23:59:29.010000"],["2024-07-24T23:59:30.010000"],["2024-07-24T23:59:31.010000"],["2024-07-24T23:59:32.010000"],["2024-07-24T23:59:33.010000"],["2024-07-24T23:59:34.010000"],["2024-07-24T23:59:35.010000"],["2024-07-24T23:59:36.010000"],["2024-07-24T23:59:37.010000"],["2024-07-24T23:59:38.010000"],["2024-07-24T23:59:39.010000"],["2024-07-24T23:59:40.010000"],["2024-07-24T23:59:41.010000"],["2024-07-24T23:59:42.010000"],["2024-07-24T23:59:43.010000"],["2024-07-24T23:59:44.010000"],["2024-07-24T23:59:45.010000"],["2024-07-24T23:59:46.010000"],["2024-07-24T23:59:47.010000"],["2024-07-24T23:59:48.010000"],["2024-07-24T23:59:49.010000"],["2024-07-24T23:59:50.010000"],["2024-07-24T23:59:51.010000"],["2024-07-24T23:59:52.010000"],["2024-07-24T23:59:53.010000"],["2024-07-24T23:59:54.010000"],["2024-07-24T23:59:55.010000"],["2024-07-24T23:59:56.010000"],["2024-07-24T23:59:57.010000"],["2024-07-24T23:59:58.010000"],["2024-07-24T23:59:59.010000"],["2024-07-25T00:00:00.010000"],["2024-07-25T00:00:01.010000"],["2024-07-25T00:00:02.010000"],["2024-07-25T00:00:03.010000"],["2024-07-25T00:00:04.010000"],["2024-07-25T00:00:05.010000"],["2024-07-25T00:00:06.010000"],["2024-07-25T00:00:07.010000"],["2024-07-25T00:00:08.010000"],["2024-07-25T00:00:09.010000"],["2024-07-25T00:00:10.010000"],["2024-07-25T00:00:11.010000"],["2024-07-25T00:00:12.010000"],["2024-07-25T00:00:13.010000"],["2024-07-25T00:00:14.010000"],["2024-07-25T00:00:15.010000"],["2024-07-25T00:00:16.010000"],["2024-07-25T00:00:17.010000"],["2024-07-25T00:00:18.010000"],["2024-07-25T00:00:19.010000"],["2024-07-25T00:00:20.010000"],["2024-07-25T00:00:21.010000"],["2024-07-25T00:00:22.010000"],["2024-07-25T00:00:23.010000"],["2024-07-25T00:00:24.010000"],["2024-07-25T00:00:25.010000"],["2024-07-25T00:00:26.010000"],["2024-07-25T00:00:27.010000"],["2024-07-25T00:00:28.010000"],["2024-07-25T00:00:29.010000"],["2024-07-25T00:00:30.010000"],["2024-07-25T00:00:31.010000"],["2024-07-25T00:00:32.010000"],["2024-07-25T00:00:33.010000"],["2024-07-25T00:00:34.010000"],["2024-07-25T00:00:35.010000"],["2024-07-25T00:00:36.010000"],["2024-07-25T00:00:37.010000"],["2024-07-25T00:00:38.010000"],["2024-07-25T00:00:39.010000"],["2024-07-25T00:00:40.010000"],["2024-07-25T00:00:41.010000"],["2024-07-25T00:00:42.010000"],["2024-07-25T00:00:43.010000"],["2024-07-25T00:00:44.010000"],["2024-07-25T00:00:45.010000"],["2024-07-25T00:00:46.010000"],["2024-07-25T00:00:47.010000"],["2024-07-25T00:00:48.010000"],["2024-07-25T00:00:49.010000"],["2024-07-25T00:00:50.010000"],["2024-07-25T00:00:51.010000"],["2024-07-25T00:00:52.010000"],["2024-07-25T00:00:53.010000"],["2024-07-25T00:00:54.010000"],["2024-07-25T00:00:55.010000"],["2024-07-25T00:00:56.010000"],["2024-07-25T00:00:57.010000"],["2024-07-25T00:00:58.010000"],["2024-07-25T00:00:59.010000"],["2024-07-25T00:01:00.010000"],["2024-07-25T00:01:01.010000"],["2024-07-25T00:01:02.010000"],["2024-07-25T00:01:03.010000"],["2024-07-25T00:01:04.010000"],["2024-07-25T00:01:05.010000"],["2024-07-25T00:01:06.010000"],["2024-07-25T00:01:07.010000"],["2024-07-25T00:01:08.010000"],["2024-07-25T00:01:09.010000"],["2024-07-25T00:01:10.010000"],["2024-07-25T00:01:11.010000"],["2024-07-25T00:01:12.010000"],["2024-07-25T00:01:13.010000"],["2024-07-25T00:01:14.010000"],["2024-07-25T00:01:15.010000"],["2024-07-25T00:01:16.010000"],["2024-07-25T00:01:17.010000"],["2024-07-25T00:01:18.010000"],["2024-07-25T00:01:19.010000"],["2024-07-25T00:01:20.010000"],["2024-07-25T00:01:21.010000"],["2024-07-25T00:01:22.010000"],["2024-07-25T00:01:23.010000"],["2024-07-25T00:01:24.010000"],["2024-07-25T00:01:25.010000"],["2024-07-25T00:01:26.010000"],["2024-07-25T00:01:27.010000"],["2024-07-25T00:01:28.010000"],["2024-07-25T00:01:29.010000"],["2024-07-25T00:01:30.010000"],["2024-07-25T00:01:31.010000"],["2024-07-25T00:01:32.010000"],["2024-07-25T00:01:33.010000"],["2024-07-25T00:01:34.010000"],["2024-07-25T00:01:35.010000"],["2024-07-25T00:01:36.010000"],["2024-07-25T00:01:37.010000"],["2024-07-25T00:01:38.010000"],["2024-07-25T00:01:39.010000"],["2024-07-25T00:01:40.010000"],["2024-07-25T00:01:41.010000"],["2024-07-25T00:01:42.010000"],["2024-07-25T00:01:43.010000"],["2024-07-25T00:01:44.010000"],["2024-07-25T00:01:45.010000"],["2024-07-25T00:01:46.010000"],["2024-07-25T00:01:47.010000"],["2024-07-25T00:01:48.010000"],["2024-07-25T00:01:49.010000"],["2024-07-25T00:01:50.010000"],["2024-07-25T00:01:51.010000"],["2024-07-25T00:01:52.010000"],["2024-07-25T00:01:53.010000"],["2024-07-25T00:01:54.010000"],["2024-07-25T00:01:55.010000"],["2024-07-25T00:01:56.010000"],["2024-07-25T00:01:57.010000"],["2024-07-25T00:01:58.010000"],["2024-07-25T00:01:59.010000"],["2024-07-25T00:02:00.010000"],["2024-07-25T00:02:01.010000"],["2024-07-25T00:02:02.010000"],["2024-07-25T00:02:03.010000"],["2024-07-25T00:02:04.010000"],["2024-07-25T00:02:05.010000"],["2024-07-25T00:02:06.010000"],["2024-07-25T00:02:07.010000"],["2024-07-25T00:02:08.010000"],["2024-07-25T00:02:09.010000"],["2024-07-25T00:02:10.010000"],["2024-07-25T00:02:11.010000"],["2024-07-25T00:02:12.010000"],["2024-07-25T00:02:13.010000"],["2024-07-25T00:02:14.010000"],["2024-07-25T00:02:15.010000"],["2024-07-25T00:02:16.010000"],["2024-07-25T00:02:17.010000"],["2024-07-25T00:02:18.010000"],["2024-07-25T00:02:19.010000"],["2024-07-25T00:02:20.010000"],["2024-07-25T00:02:21.010000"],["2024-07-25T00:02:22.010000"],["2024-07-25T00:02:23.010000"],["2024-07-25T00:02:24.010000"],["2024-07-25T00:02:25.010000"],["2024-07-25T00:02:26.010000"],["2024-07-25T00:02:27.010000"],["2024-07-25T00:02:28.010000"],["2024-07-25T00:02:29.010000"],["2024-07-25T00:02:30.010000"],["2024-07-25T00:02:31.010000"],["2024-07-25T00:02:32.010000"],["2024-07-25T00:02:33.010000"],["2024-07-25T00:02:34.010000"],["2024-07-25T00:02:35.010000"],["2024-07-25T00:02:36.010000"],["2024-07-25T00:02:37.010000"],["2024-07-25T00:02:38.010000"],["2024-07-25T00:02:39.010000"],["2024-07-25T00:02:40.010000"],["2024-07-25T00:02:41.010000"],["2024-07-25T00:02:42.010000"],["2024-07-25T00:02:43.010000"],["2024-07-25T00:02:44.010000"],["2024-07-25T00:02:45.010000"],["2024-07-25T00:02:46.010000"],["2024-07-25T00:02:47.010000"],["2024-07-25T00:02:48.010000"],["2024-07-25T00:02:49.010000"],["2024-07-25T00:02:50.010000"],["2024-07-25T00:02:51.010000"],["2024-07-25T00:02:52.010000"],["2024-07-25T00:02:53.010000"],["2024-07-25T00:02:54.010000"],["2024-07-25T00:02:55.010000"],["2024-07-25T00:02:56.010000"],["2024-07-25T00:02:57.010000"],["2024-07-25T00:02:58.010000"],["2024-07-25T00:02:59.010000"],["2024-07-25T00:03:00.010000"],["2024-07-25T00:03:01.010000"],["2024-07-25T00:03:02.010000"],["2024-07-25T00:03:03.010000"],["2024-07-25T00:03:04.010000"],["2024-07-25T00:03:05.010000"],["2024-07-25T00:03:06.010000"],["2024-07-25T00:03:07.010000"],["2024-07-25T00:03:08.010000"],["2024-07-25T00:03:09.010000"],["2024-07-25T00:03:10.010000"],["2024-07-25T00:03:11.010000"],["2024-07-25T00:03:12.010000"],["2024-07-25T00:03:13.010000"],["2024-07-25T00:03:14.010000"],["2024-07-25T00:03:15.010000"],["2024-07-25T00:03:16.010000"],["2024-07-25T00:03:17.010000"],["2024-07-25T00:03:18.010000"],["2024-07-25T00:03:19.010000"],["2024-07-25T00:03:20.010000"],["2024-07-25T00:03:21.010000"],["2024-07-25T00:03:22.010000"],["2024-07-25T00:03:23.010000"],["2024-07-25T00:03:24.010000"],["2024-07-25T00:03:25.010000"],["2024-07-25T00:03:26.010000"],["2024-07-25T00:03:27.010000"],["2024-07-25T00:03:28.010000"],["2024-07-25T00:03:29.010000"],["2024-07-25T00:03:30.010000"],["2024-07-25T00:03:31.010000"],["2024-07-25T00:03:32.010000"],["2024-07-25T00:03:33.010000"],["2024-07-25T00:03:34.010000"],["2024-07-25T00:03:35.010000"],["2024-07-25T00:03:36.010000"],["2024-07-25T00:03:37.010000"],["2024-07-25T00:03:38.010000"],["2024-07-25T00:03:39.010000"],["2024-07-25T00:03:40.010000"],["2024-07-25T00:03:41.010000"],["2024-07-25T00:03:42.010000"],["2024-07-25T00:03:43.010000"],["2024-07-25T00:03:44.010000"],["2024-07-25T00:03:45.010000"],["2024-07-25T00:03:46.010000"],["2024-07-25T00:03:47.010000"],["2024-07-25T00:03:48.010000"],["2024-07-25T00:03:49.010000"],["2024-07-25T00:03:50.010000"],["2024-07-25T00:03:51.010000"],["2024-07-25T00:03:52.010000"],["2024-07-25T00:03:53.010000"],["2024-07-25T00:03:54.010000"],["2024-07-25T00:03:55.010000"],["2024-07-25T00:03:56.010000"],["2024-07-25T00:03:57.010000"],["2024-07-25T00:03:58.010000"],["2024-07-25T00:03:59.010000"],["2024-07-25T00:04:00.010000"],["2024-07-25T00:04:01.010000"],["2024-07-25T00:04:02.010000"],["2024-07-25T00:04:03.010000"],["2024-07-25T00:04:04.010000"],["2024-07-25T00:04:05.010000"],["2024-07-25T00:04:06.010000"],["2024-07-25T00:04:07.010000"],["2024-07-25T00:04:08.010000"],["2024-07-25T00:04:09.010000"],["2024-07-25T00:04:10.010000"],["2024-07-25T00:04:11.010000"],["2024-07-25T00:04:12.010000"],["2024-07-25T00:04:13.010000"],["2024-07-25T00:04:14.010000"],["2024-07-25T00:04:15.010000"],["2024-07-25T00:04:16.010000"],["2024-07-25T00:04:17.010000"],["2024-07-25T00:04:18.010000"],["2024-07-25T00:04:19.010000"],["2024-07-25T00:04:20.010000"],["2024-07-25T00:04:21.010000"],["2024-07-25T00:04:22.010000"],["2024-07-25T00:04:23.010000"],["2024-07-25T00:04:24.010000"],["2024-07-25T00:04:25.010000"],["2024-07-25T00:04:26.010000"],["2024-07-25T00:04:27.010000"],["2024-07-25T00:04:28.010000"],["2024-07-25T00:04:29.010000"],["2024-07-25T00:04:30.010000"],["2024-07-25T00:04:31.010000"],["2024-07-25T00:04:32.010000"],["2024-07-25T00:04:33.010000"],["2024-07-25T00:04:34.010000"],["2024-07-25T00:04:35.010000"],["2024-07-25T00:04:36.010000"],["2024-07-25T00:04:37.010000"],["2024-07-25T00:04:38.010000"],["2024-07-25T00:04:39.010000"],["2024-07-25T00:04:40.010000"],["2024-07-25T00:04:41.010000"],["2024-07-25T00:04:42.010000"],["2024-07-25T00:04:43.010000"],["2024-07-25T00:04:44.010000"],["2024-07-25T00:04:45.010000"],["2024-07-25T00:04:46.010000"],["2024-07-25T00:04:47.010000"],["2024-07-25T00:04:48.010000"],["2024-07-25T00:04:49.010000"],["2024-07-25T00:04:50.010000"],["2024-07-25T00:04:51.010000"],["2024-07-25T00:04:52.010000"],["2024-07-25T00:04:53.010000"],["2024-07-25T00:04:54.010000"],["2024-07-25T00:04:55.010000"],["2024-07-25T00:04:56.010000"],["2024-07-25T00:04:57.010000"],["2024-07-25T00:04:58.010000"],["2024-07-25T00:04:59.010000"],["2024-07-25T00:05:00.010000"],["2024-07-25T00:05:01.010000"],["2024-07-25T00:05:02.010000"],["2024-07-25T00:05:03.010000"],["2024-07-25T00:05:04.010000"],["2024-07-25T00:05:05.010000"],["2024-07-25T00:05:06.010000"],["2024-07-25T00:05:07.010000"],["2024-07-25T00:05:08.010000"],["2024-07-25T00:05:09.010000"],["2024-07-25T00:05:10.010000"],["2024-07-25T00:05:11.010000"],["2024-07-25T00:05:12.010000"],["2024-07-25T00:05:13.010000"],["2024-07-25T00:05:14.010000"],["2024-07-25T00:05:15.010000"],["2024-07-25T00:05:16.010000"],["2024-07-25T00:05:17.010000"],["2024-07-25T00:05:18.010000"],["2024-07-25T00:05:19.010000"],["2024-07-25T00:05:20.010000"],["2024-07-25T00:05:21.010000"],["2024-07-25T00:05:22.010000"],["2024-07-25T00:05:23.010000"],["2024-07-25T00:05:24.010000"],["2024-07-25T00:05:25.010000"],["2024-07-25T00:05:26.010000"],["2024-07-25T00:05:27.010000"],["2024-07-25T00:05:28.010000"],["2024-07-25T00:05:29.010000"],["2024-07-25T00:05:30.010000"],["2024-07-25T00:05:31.010000"],["2024-07-25T00:05:32.010000"],["2024-07-25T00:05:33.010000"],["2024-07-25T00:05:34.010000"],["2024-07-25T00:05:35.010000"],["2024-07-25T00:05:36.010000"],["2024-07-25T00:05:37.010000"],["2024-07-25T00:05:38.010000"],["2024-07-25T00:05:39.010000"],["2024-07-25T00:05:40.010000"],["2024-07-25T00:05:41.010000"],["2024-07-25T00:05:42.010000"],["2024-07-25T00:05:43.010000"],["2024-07-25T00:05:44.010000"],["2024-07-25T00:05:45.010000"],["2024-07-25T00:05:46.010000"],["2024-07-25T00:05:47.010000"],["2024-07-25T00:05:48.010000"],["2024-07-25T00:05:49.010000"],["2024-07-25T00:05:50.010000"],["2024-07-25T00:05:51.010000"],["2024-07-25T00:05:52.010000"],["2024-07-25T00:05:53.010000"],["2024-07-25T00:05:54.010000"],["2024-07-25T00:05:55.010000"],["2024-07-25T00:05:56.010000"],["2024-07-25T00:05:57.010000"],["2024-07-25T00:05:58.010000"],["2024-07-25T00:05:59.010000"],["2024-07-25T00:06:00.010000"],["2024-07-25T00:06:01.010000"],["2024-07-25T00:06:02.010000"],["2024-07-25T00:06:03.010000"],["2024-07-25T00:06:04.010000"],["2024-07-25T00:06:05.010000"],["2024-07-25T00:06:06.010000"],["2024-07-25T00:06:07.010000"],["2024-07-25T00:06:08.010000"],["2024-07-25T00:06:09.010000"],["2024-07-25T00:06:10.010000"],["2024-07-25T00:06:11.010000"],["2024-07-25T00:06:12.010000"],["2024-07-25T00:06:13.010000"],["2024-07-25T00:06:14.010000"],["2024-07-25T00:06:15.010000"],["2024-07-25T00:06:16.010000"],["2024-07-25T00:06:17.010000"],["2024-07-25T00:06:18.010000"],["2024-07-25T00:06:19.010000"],["2024-07-25T00:06:20.010000"],["2024-07-25T00:06:21.010000"],["2024-07-25T00:06:22.010000"],["2024-07-25T00:06:23.010000"],["2024-07-25T00:06:24.010000"],["2024-07-25T00:06:25.010000"],["2024-07-25T00:06:26.010000"],["2024-07-25T00:06:27.010000"],["2024-07-25T00:06:28.010000"],["2024-07-25T00:06:29.010000"],["2024-07-25T00:06:30.010000"],["2024-07-25T00:06:31.010000"],["2024-07-25T00:06:32.010000"],["2024-07-25T00:06:33.010000"],["2024-07-25T00:06:34.010000"],["2024-07-25T00:06:35.010000"],["2024-07-25T00:06:36.010000"],["2024-07-25T00:06:37.010000"],["2024-07-25T00:06:38.010000"],["2024-07-25T00:06:39.010000"],["2024-07-25T00:06:40.010000"],["2024-07-25T00:06:41.010000"],["2024-07-25T00:06:42.010000"],["2024-07-25T00:06:43.010000"],["2024-07-25T00:06:44.010000"],["2024-07-25T00:06:45.010000"],["2024-07-25T00:06:46.010000"],["2024-07-25T00:06:47.010000"],["2024-07-25T00:06:48.010000"],["2024-07-25T00:06:49.010000"],["2024-07-25T00:06:50.010000"],["2024-07-25T00:06:51.010000"],["2024-07-25T00:06:52.010000"],["2024-07-25T00:06:53.010000"],["2024-07-25T00:06:54.010000"],["2024-07-25T00:06:55.010000"],["2024-07-25T00:06:56.010000"],["2024-07-25T00:06:57.010000"],["2024-07-25T00:06:58.010000"],["2024-07-25T00:06:59.010000"],["2024-07-25T00:07:00.010000"],["2024-07-25T00:07:01.010000"],["2024-07-25T00:07:02.010000"],["2024-07-25T00:07:03.010000"],["2024-07-25T00:07:04.010000"],["2024-07-25T00:07:05.010000"],["2024-07-25T00:07:06.010000"],["2024-07-25T00:07:07.010000"],["2024-07-25T00:07:08.010000"],["2024-07-25T00:07:09.010000"],["2024-07-25T00:07:10.010000"],["2024-07-25T00:07:11.010000"],["2024-07-25T00:07:12.010000"],["2024-07-25T00:07:13.010000"],["2024-07-25T00:07:14.010000"],["2024-07-25T00:07:15.010000"],["2024-07-25T00:07:16.010000"],["2024-07-25T00:07:17.010000"],["2024-07-25T00:07:18.010000"],["2024-07-25T00:07:19.010000"],["2024-07-25T00:07:20.010000"],["2024-07-25T00:07:21.010000"],["2024-07-25T00:07:22.010000"],["2024-07-25T00:07:23.010000"],["2024-07-25T00:07:24.010000"],["2024-07-25T00:07:25.010000"],["2024-07-25T00:07:26.010000"],["2024-07-25T00:07:27.010000"],["2024-07-25T00:07:28.010000"],["2024-07-25T00:07:29.010000"],["2024-07-25T00:07:30.010000"],["2024-07-25T00:07:31.010000"],["2024-07-25T00:07:32.010000"],["2024-07-25T00:07:33.010000"],["2024-07-25T00:07:34.010000"],["2024-07-25T00:07:35.010000"],["2024-07-25T00:07:36.010000"],["2024-07-25T00:07:37.010000"],["2024-07-25T00:07:38.010000"],["2024-07-25T00:07:39.010000"],["2024-07-25T00:07:40.010000"],["2024-07-25T00:07:41.010000"],["2024-07-25T00:07:42.010000"],["2024-07-25T00:07:43.010000"],["2024-07-25T00:07:44.010000"],["2024-07-25T00:07:45.010000"],["2024-07-25T00:07:46.010000"],["2024-07-25T00:07:47.010000"],["2024-07-25T00:07:48.010000"],["2024-07-25T00:07:49.010000"],["2024-07-25T00:07:50.010000"],["2024-07-25T00:07:51.010000"],["2024-07-25T00:07:52.010000"],["2024-07-25T00:07:53.010000"],["2024-07-25T00:07:54.010000"],["2024-07-25T00:07:55.010000"],["2024-07-25T00:07:56.010000"],["2024-07-25T00:07:57.010000"],["2024-07-25T00:07:58.010000"],["2024-07-25T00:07:59.010000"],["2024-07-25T00:08:00.010000"],["2024-07-25T00:08:01.010000"],["2024-07-25T00:08:02.010000"],["2024-07-25T00:08:03.010000"],["2024-07-25T00:08:04.010000"],["2024-07-25T00:08:05.010000"],["2024-07-25T00:08:06.010000"],["2024-07-25T00:08:07.010000"],["2024-07-25T00:08:08.010000"],["2024-07-25T00:08:09.010000"],["2024-07-25T00:08:10.010000"],["2024-07-25T00:08:11.010000"],["2024-07-25T00:08:12.010000"],["2024-07-25T00:08:13.010000"],["2024-07-25T00:08:14.010000"],["2024-07-25T00:08:15.010000"],["2024-07-25T00:08:16.010000"],["2024-07-25T00:08:17.010000"],["2024-07-25T00:08:18.010000"],["2024-07-25T00:08:19.010000"],["2024-07-25T00:08:20.010000"],["2024-07-25T00:08:21.010000"],["2024-07-25T00:08:22.010000"],["2024-07-25T00:08:23.010000"],["2024-07-25T00:08:24.010000"],["2024-07-25T00:08:25.010000"],["2024-07-25T00:08:26.010000"],["2024-07-25T00:08:27.010000"],["2024-07-25T00:08:28.010000"],["2024-07-25T00:08:29.010000"],["2024-07-25T00:08:30.010000"],["2024-07-25T00:08:31.010000"],["2024-07-25T00:08:32.010000"],["2024-07-25T00:08:33.010000"],["2024-07-25T00:08:34.010000"],["2024-07-25T00:08:35.010000"],["2024-07-25T00:08:36.010000"],["2024-07-25T00:08:37.010000"],["2024-07-25T00:08:38.010000"],["2024-07-25T00:08:39.010000"],["2024-07-25T00:08:40.010000"],["2024-07-25T00:08:41.010000"],["2024-07-25T00:08:42.010000"],["2024-07-25T00:08:43.010000"],["2024-07-25T00:08:44.010000"],["2024-07-25T00:08:45.010000"],["2024-07-25T00:08:46.010000"],["2024-07-25T00:08:47.010000"],["2024-07-25T00:08:48.010000"],["2024-07-25T00:08:49.010000"],["2024-07-25T00:08:50.010000"],["2024-07-25T00:08:51.010000"],["2024-07-25T00:08:52.010000"],["2024-07-25T00:08:53.010000"],["2024-07-25T00:08:54.010000"],["2024-07-25T00:08:55.010000"],["2024-07-25T00:08:56.010000"],["2024-07-25T00:08:57.010000"],["2024-07-25T00:08:58.010000"],["2024-07-25T00:08:59.010000"],["2024-07-25T00:09:00.010000"],["2024-07-25T00:09:01.010000"],["2024-07-25T00:09:02.010000"],["2024-07-25T00:09:03.010000"],["2024-07-25T00:09:04.010000"],["2024-07-25T00:09:05.010000"],["2024-07-25T00:09:06.010000"],["2024-07-25T00:09:07.010000"],["2024-07-25T00:09:08.010000"],["2024-07-25T00:09:09.010000"],["2024-07-25T00:09:10.010000"],["2024-07-25T00:09:11.010000"],["2024-07-25T00:09:12.010000"],["2024-07-25T00:09:13.010000"],["2024-07-25T00:09:14.010000"],["2024-07-25T00:09:15.010000"],["2024-07-25T00:09:16.010000"],["2024-07-25T00:09:17.010000"],["2024-07-25T00:09:18.010000"],["2024-07-25T00:09:19.010000"],["2024-07-25T00:09:20.010000"],["2024-07-25T00:09:21.010000"],["2024-07-25T00:09:22.010000"],["2024-07-25T00:09:23.010000"],["2024-07-25T00:09:24.010000"],["2024-07-25T00:09:25.010000"],["2024-07-25T00:09:26.010000"],["2024-07-25T00:09:27.010000"],["2024-07-25T00:09:28.010000"],["2024-07-25T00:09:29.010000"],["2024-07-25T00:09:30.010000"],["2024-07-25T00:09:31.010000"],["2024-07-25T00:09:32.010000"],["2024-07-25T00:09:33.010000"],["2024-07-25T00:09:34.010000"],["2024-07-25T00:09:35.010000"],["2024-07-25T00:09:36.010000"],["2024-07-25T00:09:37.010000"],["2024-07-25T00:09:38.010000"],["2024-07-25T00:09:39.010000"],["2024-07-25T00:09:40.010000"],["2024-07-25T00:09:41.010000"],["2024-07-25T00:09:42.010000"],["2024-07-25T00:09:43.010000"],["2024-07-25T00:09:44.010000"],["2024-07-25T00:09:45.010000"],["2024-07-25T00:09:46.010000"],["2024-07-25T00:09:47.010000"],["2024-07-25T00:09:48.010000"],["2024-07-25T00:09:49.010000"],["2024-07-25T00:09:50.010000"],["2024-07-25T00:09:51.010000"],["2024-07-25T00:09:52.010000"],["2024-07-25T00:09:53.010000"],["2024-07-25T00:09:54.010000"],["2024-07-25T00:09:55.010000"],["2024-07-25T00:09:56.010000"],["2024-07-25T00:09:57.010000"],["2024-07-25T00:09:58.010000"],["2024-07-25T00:09:59.010000"],["2024-07-25T00:10:00.010000"],["2024-07-25T00:10:01.010000"],["2024-07-25T00:10:02.010000"],["2024-07-25T00:10:03.010000"],["2024-07-25T00:10:04.010000"],["2024-07-25T00:10:05.010000"],["2024-07-25T00:10:06.010000"],["2024-07-25T00:10:07.010000"],["2024-07-25T00:10:08.010000"],["2024-07-25T00:10:09.010000"],["2024-07-25T00:10:10.010000"],["2024-07-25T00:10:11.010000"],["2024-07-25T00:10:12.010000"],["2024-07-25T00:10:13.010000"],["2024-07-25T00:10:14.010000"],["2024-07-25T00:10:15.010000"],["2024-07-25T00:10:16.010000"],["2024-07-25T00:10:17.010000"],["2024-07-25T00:10:18.010000"],["2024-07-25T00:10:19.010000"],["2024-07-25T00:10:20.010000"],["2024-07-25T00:10:21.010000"],["2024-07-25T00:10:22.010000"],["2024-07-25T00:10:23.010000"],["2024-07-25T00:10:24.010000"],["2024-07-25T00:10:25.010000"],["2024-07-25T00:10:26.010000"],["2024-07-25T00:10:27.010000"],["2024-07-25T00:10:28.010000"],["2024-07-25T00:10:29.010000"],["2024-07-25T00:10:30.010000"],["2024-07-25T00:10:31.010000"],["2024-07-25T00:10:32.010000"],["2024-07-25T00:10:33.010000"],["2024-07-25T00:10:34.010000"],["2024-07-25T00:10:35.010000"],["2024-07-25T00:10:36.010000"],["2024-07-25T00:10:37.010000"],["2024-07-25T00:10:38.010000"],["2024-07-25T00:10:39.010000"],["2024-07-25T00:10:40.010000"],["2024-07-25T00:10:41.010000"],["2024-07-25T00:10:42.010000"],["2024-07-25T00:10:43.010000"],["2024-07-25T00:10:44.010000"],["2024-07-25T00:10:45.010000"],["2024-07-25T00:10:46.010000"],["2024-07-25T00:10:47.010000"],["2024-07-25T00:10:48.010000"],["2024-07-25T00:10:49.010000"],["2024-07-25T00:10:50.010000"],["2024-07-25T00:10:51.010000"],["2024-07-25T00:10:52.010000"],["2024-07-25T00:10:53.010000"],["2024-07-25T00:10:54.010000"],["2024-07-25T00:10:55.010000"],["2024-07-25T00:10:56.010000"],["2024-07-25T00:10:57.010000"],["2024-07-25T00:10:58.010000"],["2024-07-25T00:10:59.010000"],["2024-07-25T00:11:00.010000"],["2024-07-25T00:11:01.010000"],["2024-07-25T00:11:02.010000"],["2024-07-25T00:11:03.010000"],["2024-07-25T00:11:04.010000"],["2024-07-25T00:11:05.010000"],["2024-07-25T00:11:06.010000"],["2024-07-25T00:11:07.010000"],["2024-07-25T00:11:08.010000"],["2024-07-25T00:11:09.010000"],["2024-07-25T00:11:10.010000"],["2024-07-25T00:11:11.010000"],["2024-07-25T00:11:12.010000"],["2024-07-25T00:11:13.010000"],["2024-07-25T00:11:14.010000"],["2024-07-25T00:11:15.010000"],["2024-07-25T00:11:16.010000"],["2024-07-25T00:11:17.010000"],["2024-07-25T00:11:18.010000"],["2024-07-25T00:11:19.010000"],["2024-07-25T00:11:20.010000"],["2024-07-25T00:11:21.010000"],["2024-07-25T00:11:22.010000"],["2024-07-25T00:11:23.010000"],["2024-07-25T00:11:24.010000"],["2024-07-25T00:11:25.010000"],["2024-07-25T00:11:26.010000"],["2024-07-25T00:11:27.010000"],["2024-07-25T00:11:28.010000"],["2024-07-25T00:11:29.010000"],["2024-07-25T00:11:30.010000"],["2024-07-25T00:11:31.010000"],["2024-07-25T00:11:32.010000"],["2024-07-25T00:11:33.010000"],["2024-07-25T00:11:34.010000"],["2024-07-25T00:11:35.010000"],["2024-07-25T00:11:36.010000"],["2024-07-25T00:11:37.010000"],["2024-07-25T00:11:38.010000"],["2024-07-25T00:11:39.010000"],["2024-07-25T00:11:40.010000"],["2024-07-25T00:11:41.010000"],["2024-07-25T00:11:42.010000"],["2024-07-25T00:11:43.010000"],["2024-07-25T00:11:44.010000"],["2024-07-25T00:11:45.010000"],["2024-07-25T00:11:46.010000"],["2024-07-25T00:11:47.010000"],["2024-07-25T00:11:48.010000"],["2024-07-25T00:11:49.010000"],["2024-07-25T00:11:50.010000"],["2024-07-25T00:11:51.010000"],["2024-07-25T00:11:52.010000"],["2024-07-25T00:11:53.010000"],["2024-07-25T00:11:54.010000"],["2024-07-25T00:11:55.010000"],["2024-07-25T00:11:56.010000"],["2024-07-25T00:11:57.010000"],["2024-07-25T00:11:58.010000"],["2024-07-25T00:11:59.010000"],["2024-07-25T00:12:00.010000"],["2024-07-25T00:12:01.010000"],["2024-07-25T00:12:02.010000"],["2024-07-25T00:12:03.010000"],["2024-07-25T00:12:04.010000"],["2024-07-25T00:12:05.010000"],["2024-07-25T00:12:06.010000"],["2024-07-25T00:12:07.010000"],["2024-07-25T00:12:08.010000"],["2024-07-25T00:12:09.010000"],["2024-07-25T00:12:10.010000"],["2024-07-25T00:12:11.010000"],["2024-07-25T00:12:12.010000"],["2024-07-25T00:12:13.010000"],["2024-07-25T00:12:14.010000"],["2024-07-25T00:12:15.010000"],["2024-07-25T00:12:16.010000"],["2024-07-25T00:12:17.010000"],["2024-07-25T00:12:18.010000"],["2024-07-25T00:12:19.010000"],["2024-07-25T00:12:20.010000"],["2024-07-25T00:12:21.010000"],["2024-07-25T00:12:22.010000"],["2024-07-25T00:12:23.010000"],["2024-07-25T00:12:24.010000"],["2024-07-25T00:12:25.010000"],["2024-07-25T00:12:26.010000"],["2024-07-25T00:12:27.010000"],["2024-07-25T00:12:28.010000"],["2024-07-25T00:12:29.010000"],["2024-07-25T00:12:30.010000"],["2024-07-25T00:12:31.010000"],["2024-07-25T00:12:32.010000"],["2024-07-25T00:12:33.010000"],["2024-07-25T00:12:34.010000"],["2024-07-25T00:12:35.010000"],["2024-07-25T00:12:36.010000"],["2024-07-25T00:12:37.010000"],["2024-07-25T00:12:38.010000"],["2024-07-25T00:12:39.010000"],["2024-07-25T00:12:40.010000"],["2024-07-25T00:12:41.010000"],["2024-07-25T00:12:42.010000"],["2024-07-25T00:12:43.010000"],["2024-07-25T00:12:44.010000"],["2024-07-25T00:12:45.010000"],["2024-07-25T00:12:46.010000"],["2024-07-25T00:12:47.010000"],["2024-07-25T00:12:48.010000"],["2024-07-25T00:12:49.010000"],["2024-07-25T00:12:50.010000"],["2024-07-25T00:12:51.010000"],["2024-07-25T00:12:52.010000"],["2024-07-25T00:12:53.010000"],["2024-07-25T00:12:54.010000"],["2024-07-25T00:12:55.010000"],["2024-07-25T00:12:56.010000"],["2024-07-25T00:12:57.010000"],["2024-07-25T00:12:58.010000"],["2024-07-25T00:12:59.010000"],["2024-07-25T00:13:00.010000"],["2024-07-25T00:13:01.010000"],["2024-07-25T00:13:02.010000"],["2024-07-25T00:13:03.010000"],["2024-07-25T00:13:04.010000"],["2024-07-25T00:13:05.010000"],["2024-07-25T00:13:06.010000"],["2024-07-25T00:13:07.010000"],["2024-07-25T00:13:08.010000"],["2024-07-25T00:13:09.010000"],["2024-07-25T00:13:10.010000"],["2024-07-25T00:13:11.010000"],["2024-07-25T00:13:12.010000"],["2024-07-25T00:13:13.010000"],["2024-07-25T00:13:14.010000"],["2024-07-25T00:13:15.010000"],["2024-07-25T00:13:16.010000"],["2024-07-25T00:13:17.010000"],["2024-07-25T00:13:18.010000"],["2024-07-25T00:13:19.010000"],["2024-07-25T00:13:20.010000"],["2024-07-25T00:13:21.010000"],["2024-07-25T00:13:22.010000"],["2024-07-25T00:13:23.010000"],["2024-07-25T00:13:24.010000"],["2024-07-25T00:13:25.010000"],["2024-07-25T00:13:26.010000"],["2024-07-25T00:13:27.010000"],["2024-07-25T00:13:28.010000"],["2024-07-25T00:13:29.010000"],["2024-07-25T00:13:30.010000"],["2024-07-25T00:13:31.010000"],["2024-07-25T00:13:32.010000"],["2024-07-25T00:13:33.010000"],["2024-07-25T00:13:34.010000"],["2024-07-25T00:13:35.010000"],["2024-07-25T00:13:36.010000"],["2024-07-25T00:13:37.010000"],["2024-07-25T00:13:38.010000"],["2024-07-25T00:13:39.010000"],["2024-07-25T00:13:40.010000"],["2024-07-25T00:13:41.010000"],["2024-07-25T00:13:42.010000"],["2024-07-25T00:13:43.010000"],["2024-07-25T00:13:44.010000"],["2024-07-25T00:13:45.010000"],["2024-07-25T00:13:46.010000"],["2024-07-25T00:13:47.010000"],["2024-07-25T00:13:48.010000"],["2024-07-25T00:13:49.010000"],["2024-07-25T00:13:50.010000"],["2024-07-25T00:13:51.010000"],["2024-07-25T00:13:52.010000"],["2024-07-25T00:13:53.010000"],["2024-07-25T00:13:54.010000"],["2024-07-25T00:13:55.010000"],["2024-07-25T00:13:56.010000"],["2024-07-25T00:13:57.010000"],["2024-07-25T00:13:58.010000"],["2024-07-25T00:13:59.010000"],["2024-07-25T00:14:00.010000"],["2024-07-25T00:14:01.010000"],["2024-07-25T00:14:02.010000"],["2024-07-25T00:14:03.010000"],["2024-07-25T00:14:04.010000"],["2024-07-25T00:14:05.010000"],["2024-07-25T00:14:06.010000"],["2024-07-25T00:14:07.010000"],["2024-07-25T00:14:08.010000"],["2024-07-25T00:14:09.010000"],["2024-07-25T00:14:10.010000"],["2024-07-25T00:14:11.010000"],["2024-07-25T00:14:12.010000"],["2024-07-25T00:14:13.010000"],["2024-07-25T00:14:14.010000"],["2024-07-25T00:14:15.010000"],["2024-07-25T00:14:16.010000"],["2024-07-25T00:14:17.010000"],["2024-07-25T00:14:18.010000"],["2024-07-25T00:14:19.010000"],["2024-07-25T00:14:20.010000"],["2024-07-25T00:14:21.010000"],["2024-07-25T00:14:22.010000"],["2024-07-25T00:14:23.010000"],["2024-07-25T00:14:24.010000"],["2024-07-25T00:14:25.010000"],["2024-07-25T00:14:26.010000"],["2024-07-25T00:14:27.010000"],["2024-07-25T00:14:28.010000"],["2024-07-25T00:14:29.010000"],["2024-07-25T00:14:30.010000"],["2024-07-25T00:14:31.010000"],["2024-07-25T00:14:32.010000"],["2024-07-25T00:14:33.010000"],["2024-07-25T00:14:34.010000"],["2024-07-25T00:14:35.010000"],["2024-07-25T00:14:36.010000"],["2024-07-25T00:14:37.010000"],["2024-07-25T00:14:38.010000"],["2024-07-25T00:14:39.010000"],["2024-07-25T00:14:40.010000"],["2024-07-25T00:14:41.010000"],["2024-07-25T00:14:42.010000"],["2024-07-25T00:14:43.010000"],["2024-07-25T00:14:44.010000"],["2024-07-25T00:14:45.010000"],["2024-07-25T00:14:46.010000"],["2024-07-25T00:14:47.010000"],["2024-07-25T00:14:48.010000"],["2024-07-25T00:14:49.010000"],["2024-07-25T00:14:50.010000"],["2024-07-25T00:14:51.010000"],["2024-07-25T00:14:52.010000"],["2024-07-25T00:14:53.010000"],["2024-07-25T00:14:54.010000"],["2024-07-25T00:14:55.010000"],["2024-07-25T00:14:56.010000"],["2024-07-25T00:14:57.010000"],["2024-07-25T00:14:58.010000"],["2024-07-25T00:14:59.010000"],["2024-07-25T00:15:00.010000"],["2024-07-25T00:15:01.010000"],["2024-07-25T00:15:02.010000"],["2024-07-25T00:15:03.010000"],["2024-07-25T00:15:04.010000"],["2024-07-25T00:15:05.010000"],["2024-07-25T00:15:06.010000"],["2024-07-25T00:15:07.010000"],["2024-07-25T00:15:08.010000"],["2024-07-25T00:15:09.010000"],["2024-07-25T00:15:10.010000"],["2024-07-25T00:15:11.010000"],["2024-07-25T00:15:12.010000"],["2024-07-25T00:15:13.010000"],["2024-07-25T00:15:14.010000"],["2024-07-25T00:15:15.010000"],["2024-07-25T00:15:16.010000"],["2024-07-25T00:15:17.010000"],["2024-07-25T00:15:18.010000"],["2024-07-25T00:15:19.010000"],["2024-07-25T00:15:20.010000"],["2024-07-25T00:15:21.010000"],["2024-07-25T00:15:22.010000"],["2024-07-25T00:15:23.010000"],["2024-07-25T00:15:24.010000"],["2024-07-25T00:15:25.010000"],["2024-07-25T00:15:26.010000"],["2024-07-25T00:15:27.010000"],["2024-07-25T00:15:28.010000"],["2024-07-25T00:15:29.010000"],["2024-07-25T00:15:30.010000"],["2024-07-25T00:15:31.010000"],["2024-07-25T00:15:32.010000"],["2024-07-25T00:15:33.010000"],["2024-07-25T00:15:34.010000"],["2024-07-25T00:15:35.010000"],["2024-07-25T00:15:36.010000"],["2024-07-25T00:15:37.010000"],["2024-07-25T00:15:38.010000"],["2024-07-25T00:15:39.010000"],["2024-07-25T00:15:40.010000"],["2024-07-25T00:15:41.010000"],["2024-07-25T00:15:42.010000"],["2024-07-25T00:15:43.010000"],["2024-07-25T00:15:44.010000"],["2024-07-25T00:15:45.010000"],["2024-07-25T00:15:46.010000"],["2024-07-25T00:15:47.010000"],["2024-07-25T00:15:48.010000"],["2024-07-25T00:15:49.010000"],["2024-07-25T00:15:50.010000"],["2024-07-25T00:15:51.010000"],["2024-07-25T00:15:52.010000"],["2024-07-25T00:15:53.010000"],["2024-07-25T00:15:54.010000"],["2024-07-25T00:15:55.010000"],["2024-07-25T00:15:56.010000"],["2024-07-25T00:15:57.010000"],["2024-07-25T00:15:58.010000"],["2024-07-25T00:15:59.010000"],["2024-07-25T00:16:00.010000"],["2024-07-25T00:16:01.010000"],["2024-07-25T00:16:02.010000"],["2024-07-25T00:16:03.010000"],["2024-07-25T00:16:04.010000"],["2024-07-25T00:16:05.010000"],["2024-07-25T00:16:06.010000"],["2024-07-25T00:16:07.010000"],["2024-07-25T00:16:08.010000"],["2024-07-25T00:16:09.010000"],["2024-07-25T00:16:10.010000"],["2024-07-25T00:16:11.010000"],["2024-07-25T00:16:12.010000"],["2024-07-25T00:16:13.010000"],["2024-07-25T00:16:14.010000"],["2024-07-25T00:16:15.010000"],["2024-07-25T00:16:16.010000"],["2024-07-25T00:16:17.010000"],["2024-07-25T00:16:18.010000"],["2024-07-25T00:16:19.010000"],["2024-07-25T00:16:20.010000"],["2024-07-25T00:16:21.010000"],["2024-07-25T00:16:22.010000"],["2024-07-25T00:16:23.010000"],["2024-07-25T00:16:24.010000"],["2024-07-25T00:16:25.010000"],["2024-07-25T00:16:26.010000"],["2024-07-25T00:16:27.010000"],["2024-07-25T00:16:28.010000"],["2024-07-25T00:16:29.010000"],["2024-07-25T00:16:30.010000"],["2024-07-25T00:16:31.010000"],["2024-07-25T00:16:32.010000"],["2024-07-25T00:16:33.010000"],["2024-07-25T00:16:34.010000"],["2024-07-25T00:16:35.010000"],["2024-07-25T00:16:36.010000"],["2024-07-25T00:16:37.010000"],["2024-07-25T00:16:38.010000"],["2024-07-25T00:16:39.010000"],["2024-07-25T00:16:40.010000"],["2024-07-25T00:16:41.010000"],["2024-07-25T00:16:42.010000"],["2024-07-25T00:16:43.010000"],["2024-07-25T00:16:44.010000"],["2024-07-25T00:16:45.010000"],["2024-07-25T00:16:46.010000"],["2024-07-25T00:16:47.010000"],["2024-07-25T00:16:48.010000"],["2024-07-25T00:16:49.010000"],["2024-07-25T00:16:50.010000"],["2024-07-25T00:16:51.010000"],["2024-07-25T00:16:52.010000"],["2024-07-25T00:16:53.010000"],["2024-07-25T00:16:54.010000"],["2024-07-25T00:16:55.010000"],["2024-07-25T00:16:56.010000"],["2024-07-25T00:16:57.010000"],["2024-07-25T00:16:58.010000"],["2024-07-25T00:16:59.010000"],["2024-07-25T00:17:00.010000"],["2024-07-25T00:17:01.010000"],["2024-07-25T00:17:02.010000"],["2024-07-25T00:17:03.010000"],["2024-07-25T00:17:04.010000"],["2024-07-25T00:17:05.010000"],["2024-07-25T00:17:06.010000"],["2024-07-25T00:17:07.010000"],["2024-07-25T00:17:08.010000"],["2024-07-25T00:17:09.010000"],["2024-07-25T00:17:10.010000"],["2024-07-25T00:17:11.010000"],["2024-07-25T00:17:12.010000"],["2024-07-25T00:17:13.010000"],["2024-07-25T00:17:14.010000"],["2024-07-25T00:17:15.010000"],["2024-07-25T00:17:16.010000"],["2024-07-25T00:17:17.010000"],["2024-07-25T00:17:18.010000"],["2024-07-25T00:17:19.010000"],["2024-07-25T00:17:20.010000"],["2024-07-25T00:17:21.010000"],["2024-07-25T00:17:22.010000"],["2024-07-25T00:17:23.010000"],["2024-07-25T00:17:24.010000"],["2024-07-25T00:17:25.010000"],["2024-07-25T00:17:26.010000"],["2024-07-25T00:17:27.010000"],["2024-07-25T00:17:28.010000"],["2024-07-25T00:17:29.010000"],["2024-07-25T00:17:30.010000"],["2024-07-25T00:17:31.010000"],["2024-07-25T00:17:32.010000"],["2024-07-25T00:17:33.010000"],["2024-07-25T00:17:34.010000"],["2024-07-25T00:17:35.010000"],["2024-07-25T00:17:36.010000"],["2024-07-25T00:17:37.010000"],["2024-07-25T00:17:38.010000"],["2024-07-25T00:17:39.010000"],["2024-07-25T00:17:40.010000"],["2024-07-25T00:17:41.010000"],["2024-07-25T00:17:42.010000"],["2024-07-25T00:17:43.010000"],["2024-07-25T00:17:44.010000"],["2024-07-25T00:17:45.010000"],["2024-07-25T00:17:46.010000"],["2024-07-25T00:17:47.010000"],["2024-07-25T00:17:48.010000"],["2024-07-25T00:17:49.010000"],["2024-07-25T00:17:50.010000"],["2024-07-25T00:17:51.010000"],["2024-07-25T00:17:52.010000"],["2024-07-25T00:17:53.010000"],["2024-07-25T00:17:54.010000"],["2024-07-25T00:17:55.010000"],["2024-07-25T00:17:56.010000"],["2024-07-25T00:17:57.010000"],["2024-07-25T00:17:58.010000"],["2024-07-25T00:17:59.010000"],["2024-07-25T00:18:00.010000"],["2024-07-25T00:18:01.010000"],["2024-07-25T00:18:02.010000"],["2024-07-25T00:18:03.010000"],["2024-07-25T00:18:04.010000"],["2024-07-25T00:18:05.010000"],["2024-07-25T00:18:06.010000"],["2024-07-25T00:18:07.010000"],["2024-07-25T00:18:08.010000"],["2024-07-25T00:18:09.010000"],["2024-07-25T00:18:10.010000"],["2024-07-25T00:18:11.010000"],["2024-07-25T00:18:12.010000"],["2024-07-25T00:18:13.010000"],["2024-07-25T00:18:14.010000"],["2024-07-25T00:18:15.010000"],["2024-07-25T00:18:16.010000"],["2024-07-25T00:18:17.010000"],["2024-07-25T00:18:18.010000"],["2024-07-25T00:18:19.010000"],["2024-07-25T00:18:20.010000"],["2024-07-25T00:18:21.010000"],["2024-07-25T00:18:22.010000"],["2024-07-25T00:18:23.010000"],["2024-07-25T00:18:24.010000"],["2024-07-25T00:18:25.010000"],["2024-07-25T00:18:26.010000"],["2024-07-25T00:18:27.010000"],["2024-07-25T00:18:28.010000"],["2024-07-25T00:18:29.010000"],["2024-07-25T00:18:30.010000"],["2024-07-25T00:18:31.010000"],["2024-07-25T00:18:32.010000"],["2024-07-25T00:18:33.010000"],["2024-07-25T00:18:34.010000"],["2024-07-25T00:18:35.010000"],["2024-07-25T00:18:36.010000"],["2024-07-25T00:18:37.010000"],["2024-07-25T00:18:38.010000"],["2024-07-25T00:18:39.010000"],["2024-07-25T00:18:40.010000"],["2024-07-25T00:18:41.010000"],["2024-07-25T00:18:42.010000"],["2024-07-25T00:18:43.010000"],["2024-07-25T00:18:44.010000"],["2024-07-25T00:18:45.010000"],["2024-07-25T00:18:46.010000"],["2024-07-25T00:18:47.010000"],["2024-07-25T00:18:48.010000"],["2024-07-25T00:18:49.010000"],["2024-07-25T00:18:50.010000"],["2024-07-25T00:18:51.010000"],["2024-07-25T00:18:52.010000"],["2024-07-25T00:18:53.010000"],["2024-07-25T00:18:54.010000"],["2024-07-25T00:18:55.010000"],["2024-07-25T00:18:56.010000"],["2024-07-25T00:18:57.010000"],["2024-07-25T00:18:58.010000"],["2024-07-25T00:18:59.010000"],["2024-07-25T00:19:00.010000"],["2024-07-25T00:19:01.010000"],["2024-07-25T00:19:02.010000"],["2024-07-25T00:19:03.010000"],["2024-07-25T00:19:04.010000"],["2024-07-25T00:19:05.010000"],["2024-07-25T00:19:06.010000"],["2024-07-25T00:19:07.010000"],["2024-07-25T00:19:08.010000"],["2024-07-25T00:19:09.010000"],["2024-07-25T00:19:10.010000"],["2024-07-25T00:19:11.010000"],["2024-07-25T00:19:12.010000"],["2024-07-25T00:19:13.010000"],["2024-07-25T00:19:14.010000"],["2024-07-25T00:19:15.010000"],["2024-07-25T00:19:16.010000"],["2024-07-25T00:19:17.010000"],["2024-07-25T00:19:18.010000"],["2024-07-25T00:19:19.010000"],["2024-07-25T00:19:20.010000"],["2024-07-25T00:19:21.010000"],["2024-07-25T00:19:22.010000"],["2024-07-25T00:19:23.010000"],["2024-07-25T00:19:24.010000"],["2024-07-25T00:19:25.010000"],["2024-07-25T00:19:26.010000"],["2024-07-25T00:19:27.010000"],["2024-07-25T00:19:28.010000"],["2024-07-25T00:19:29.010000"],["2024-07-25T00:19:30.010000"],["2024-07-25T00:19:31.010000"],["2024-07-25T00:19:32.010000"],["2024-07-25T00:19:33.010000"],["2024-07-25T00:19:34.010000"],["2024-07-25T00:19:35.010000"],["2024-07-25T00:19:36.010000"],["2024-07-25T00:19:37.010000"],["2024-07-25T00:19:38.010000"],["2024-07-25T00:19:39.010000"],["2024-07-25T00:19:40.010000"],["2024-07-25T00:19:41.010000"],["2024-07-25T00:19:42.010000"],["2024-07-25T00:19:43.010000"],["2024-07-25T00:19:44.010000"],["2024-07-25T00:19:45.010000"],["2024-07-25T00:19:46.010000"],["2024-07-25T00:19:47.010000"],["2024-07-25T00:19:48.010000"],["2024-07-25T00:19:49.010000"],["2024-07-25T00:19:50.010000"],["2024-07-25T00:19:51.010000"],["2024-07-25T00:19:52.010000"],["2024-07-25T00:19:53.010000"],["2024-07-25T00:19:54.010000"],["2024-07-25T00:19:55.010000"],["2024-07-25T00:19:56.010000"],["2024-07-25T00:19:57.010000"],["2024-07-25T00:19:58.010000"],["2024-07-25T00:19:59.010000"],["2024-07-25T00:20:00.010000"],["2024-07-25T00:20:01.010000"],["2024-07-25T00:20:02.010000"],["2024-07-25T00:20:03.010000"],["2024-07-25T00:20:04.010000"],["2024-07-25T00:20:05.010000"],["2024-07-25T00:20:06.010000"],["2024-07-25T00:20:07.010000"],["2024-07-25T00:20:08.010000"],["2024-07-25T00:20:09.010000"],["2024-07-25T00:20:10.010000"],["2024-07-25T00:20:11.010000"],["2024-07-25T00:20:12.010000"],["2024-07-25T00:20:13.010000"],["2024-07-25T00:20:14.010000"],["2024-07-25T00:20:15.010000"],["2024-07-25T00:20:16.010000"],["2024-07-25T00:20:17.010000"],["2024-07-25T00:20:18.010000"],["2024-07-25T00:20:19.010000"],["2024-07-25T00:20:20.010000"],["2024-07-25T00:20:21.010000"],["2024-07-25T00:20:22.010000"],["2024-07-25T00:20:23.010000"],["2024-07-25T00:20:24.010000"],["2024-07-25T00:20:25.010000"],["2024-07-25T00:20:26.010000"],["2024-07-25T00:20:27.010000"],["2024-07-25T00:20:28.010000"],["2024-07-25T00:20:29.010000"],["2024-07-25T00:20:30.010000"],["2024-07-25T00:20:31.010000"],["2024-07-25T00:20:32.010000"],["2024-07-25T00:20:33.010000"],["2024-07-25T00:20:34.010000"],["2024-07-25T00:20:35.010000"],["2024-07-25T00:20:36.010000"],["2024-07-25T00:20:37.010000"],["2024-07-25T00:20:38.010000"],["2024-07-25T00:20:39.010000"],["2024-07-25T00:20:40.010000"],["2024-07-25T00:20:41.010000"],["2024-07-25T00:20:42.010000"],["2024-07-25T00:20:43.010000"],["2024-07-25T00:20:44.010000"],["2024-07-25T00:20:45.010000"],["2024-07-25T00:20:46.010000"],["2024-07-25T00:20:47.010000"],["2024-07-25T00:20:48.010000"],["2024-07-25T00:20:49.010000"],["2024-07-25T00:20:50.010000"],["2024-07-25T00:20:51.010000"],["2024-07-25T00:20:52.010000"],["2024-07-25T00:20:53.010000"],["2024-07-25T00:20:54.010000"],["2024-07-25T00:20:55.010000"],["2024-07-25T00:20:56.010000"],["2024-07-25T00:20:57.010000"],["2024-07-25T00:20:58.010000"],["2024-07-25T00:20:59.010000"],["2024-07-25T00:21:00.010000"],["2024-07-25T00:21:01.010000"],["2024-07-25T00:21:02.010000"],["2024-07-25T00:21:03.010000"],["2024-07-25T00:21:04.010000"],["2024-07-25T00:21:05.010000"],["2024-07-25T00:21:06.010000"],["2024-07-25T00:21:07.010000"],["2024-07-25T00:21:08.010000"],["2024-07-25T00:21:09.010000"],["2024-07-25T00:21:10.010000"],["2024-07-25T00:21:11.010000"],["2024-07-25T00:21:12.010000"],["2024-07-25T00:21:13.010000"],["2024-07-25T00:21:14.010000"],["2024-07-25T00:21:15.010000"],["2024-07-25T00:21:16.010000"],["2024-07-25T00:21:17.010000"],["2024-07-25T00:21:18.010000"],["2024-07-25T00:21:19.010000"],["2024-07-25T00:21:20.010000"],["2024-07-25T00:21:21.010000"],["2024-07-25T00:21:22.010000"],["2024-07-25T00:21:23.010000"],["2024-07-25T00:21:24.010000"],["2024-07-25T00:21:25.010000"],["2024-07-25T00:21:26.010000"],["2024-07-25T00:21:27.010000"],["2024-07-25T00:21:28.010000"],["2024-07-25T00:21:29.010000"],["2024-07-25T00:21:30.010000"],["2024-07-25T00:21:31.010000"],["2024-07-25T00:21:32.010000"],["2024-07-25T00:21:33.010000"],["2024-07-25T00:21:34.010000"],["2024-07-25T00:21:35.010000"],["2024-07-25T00:21:36.010000"],["2024-07-25T00:21:37.010000"],["2024-07-25T00:21:38.010000"],["2024-07-25T00:21:39.010000"],["2024-07-25T00:21:40.010000"],["2024-07-25T00:21:41.010000"],["2024-07-25T00:21:42.010000"],["2024-07-25T00:21:43.010000"],["2024-07-25T00:21:44.010000"],["2024-07-25T00:21:45.010000"],["2024-07-25T00:21:46.010000"],["2024-07-25T00:21:47.010000"],["2024-07-25T00:21:48.010000"],["2024-07-25T00:21:49.010000"],["2024-07-25T00:21:50.010000"],["2024-07-25T00:21:51.010000"],["2024-07-25T00:21:52.010000"],["2024-07-25T00:21:53.010000"],["2024-07-25T00:21:54.010000"],["2024-07-25T00:21:55.010000"],["2024-07-25T00:21:56.010000"],["2024-07-25T00:21:57.010000"],["2024-07-25T00:21:58.010000"],["2024-07-25T00:21:59.010000"],["2024-07-25T00:22:00.010000"],["2024-07-25T00:22:01.010000"],["2024-07-25T00:22:02.010000"],["2024-07-25T00:22:03.010000"],["2024-07-25T00:22:04.010000"],["2024-07-25T00:22:05.010000"],["2024-07-25T00:22:06.010000"],["2024-07-25T00:22:07.010000"],["2024-07-25T00:22:08.010000"],["2024-07-25T00:22:09.010000"],["2024-07-25T00:22:10.010000"],["2024-07-25T00:22:11.010000"],["2024-07-25T00:22:12.010000"],["2024-07-25T00:22:13.010000"],["2024-07-25T00:22:14.010000"],["2024-07-25T00:22:15.010000"],["2024-07-25T00:22:16.010000"],["2024-07-25T00:22:17.010000"],["2024-07-25T00:22:18.010000"],["2024-07-25T00:22:19.010000"],["2024-07-25T00:22:20.010000"],["2024-07-25T00:22:21.010000"],["2024-07-25T00:22:22.010000"],["2024-07-25T00:22:23.010000"],["2024-07-25T00:22:24.010000"],["2024-07-25T00:22:25.010000"],["2024-07-25T00:22:26.010000"],["2024-07-25T00:22:27.010000"],["2024-07-25T00:22:28.010000"],["2024-07-25T00:22:29.010000"],["2024-07-25T00:22:30.010000"],["2024-07-25T00:22:31.010000"],["2024-07-25T00:22:32.010000"],["2024-07-25T00:22:33.010000"],["2024-07-25T00:22:34.010000"],["2024-07-25T00:22:35.010000"],["2024-07-25T00:22:36.010000"],["2024-07-25T00:22:37.010000"],["2024-07-25T00:22:38.010000"],["2024-07-25T00:22:39.010000"],["2024-07-25T00:22:40.010000"],["2024-07-25T00:22:41.010000"],["2024-07-25T00:22:42.010000"],["2024-07-25T00:22:43.010000"],["2024-07-25T00:22:44.010000"],["2024-07-25T00:22:45.010000"],["2024-07-25T00:22:46.010000"],["2024-07-25T00:22:47.010000"],["2024-07-25T00:22:48.010000"],["2024-07-25T00:22:49.010000"],["2024-07-25T00:22:50.010000"],["2024-07-25T00:22:51.010000"],["2024-07-25T00:22:52.010000"],["2024-07-25T00:22:53.010000"],["2024-07-25T00:22:54.010000"],["2024-07-25T00:22:55.010000"],["2024-07-25T00:22:56.010000"],["2024-07-25T00:22:57.010000"],["2024-07-25T00:22:58.010000"],["2024-07-25T00:22:59.010000"],["2024-07-25T00:23:00.010000"],["2024-07-25T00:23:01.010000"],["2024-07-25T00:23:02.010000"],["2024-07-25T00:23:03.010000"],["2024-07-25T00:23:04.010000"],["2024-07-25T00:23:05.010000"],["2024-07-25T00:23:06.010000"],["2024-07-25T00:23:07.010000"],["2024-07-25T00:23:08.010000"],["2024-07-25T00:23:09.010000"],["2024-07-25T00:23:10.010000"],["2024-07-25T00:23:11.010000"],["2024-07-25T00:23:12.010000"],["2024-07-25T00:23:13.010000"],["2024-07-25T00:23:14.010000"],["2024-07-25T00:23:15.010000"],["2024-07-25T00:23:16.010000"],["2024-07-25T00:23:17.010000"],["2024-07-25T00:23:18.010000"],["2024-07-25T00:23:19.010000"],["2024-07-25T00:23:20.010000"],["2024-07-25T00:23:21.010000"],["2024-07-25T00:23:22.010000"],["2024-07-25T00:23:23.010000"],["2024-07-25T00:23:24.010000"],["2024-07-25T00:23:25.010000"],["2024-07-25T00:23:26.010000"],["2024-07-25T00:23:27.010000"],["2024-07-25T00:23:28.010000"],["2024-07-25T00:23:29.010000"],["2024-07-25T00:23:30.010000"],["2024-07-25T00:23:31.010000"],["2024-07-25T00:23:32.010000"],["2024-07-25T00:23:33.010000"],["2024-07-25T00:23:34.010000"],["2024-07-25T00:23:35.010000"],["2024-07-25T00:23:36.010000"],["2024-07-25T00:23:37.010000"],["2024-07-25T00:23:38.010000"],["2024-07-25T00:23:39.010000"],["2024-07-25T00:23:40.010000"],["2024-07-25T00:23:41.010000"],["2024-07-25T00:23:42.010000"],["2024-07-25T00:23:43.010000"],["2024-07-25T00:23:44.010000"],["2024-07-25T00:23:45.010000"],["2024-07-25T00:23:46.010000"],["2024-07-25T00:23:47.010000"],["2024-07-25T00:23:48.010000"],["2024-07-25T00:23:49.010000"],["2024-07-25T00:23:50.010000"],["2024-07-25T00:23:51.010000"],["2024-07-25T00:23:52.010000"],["2024-07-25T00:23:53.010000"],["2024-07-25T00:23:54.010000"],["2024-07-25T00:23:55.010000"],["2024-07-25T00:23:56.010000"],["2024-07-25T00:23:57.010000"],["2024-07-25T00:23:58.010000"],["2024-07-25T00:23:59.010000"],["2024-07-25T00:24:00.010000"],["2024-07-25T00:24:01.010000"],["2024-07-25T00:24:02.010000"],["2024-07-25T00:24:03.010000"],["2024-07-25T00:24:04.010000"],["2024-07-25T00:24:05.010000"],["2024-07-25T00:24:06.010000"],["2024-07-25T00:24:07.010000"],["2024-07-25T00:24:08.010000"],["2024-07-25T00:24:09.010000"],["2024-07-25T00:24:10.010000"],["2024-07-25T00:24:11.010000"],["2024-07-25T00:24:12.010000"],["2024-07-25T00:24:13.010000"],["2024-07-25T00:24:14.010000"],["2024-07-25T00:24:15.010000"],["2024-07-25T00:24:16.010000"],["2024-07-25T00:24:17.010000"],["2024-07-25T00:24:18.010000"],["2024-07-25T00:24:19.010000"],["2024-07-25T00:24:20.010000"],["2024-07-25T00:24:21.010000"],["2024-07-25T00:24:22.010000"],["2024-07-25T00:24:23.010000"],["2024-07-25T00:24:24.010000"],["2024-07-25T00:24:25.010000"],["2024-07-25T00:24:26.010000"],["2024-07-25T00:24:27.010000"],["2024-07-25T00:24:28.010000"],["2024-07-25T00:24:29.010000"],["2024-07-25T00:24:30.010000"],["2024-07-25T00:24:31.010000"],["2024-07-25T00:24:32.010000"],["2024-07-25T00:24:33.010000"],["2024-07-25T00:24:34.010000"],["2024-07-25T00:24:35.010000"],["2024-07-25T00:24:36.010000"],["2024-07-25T00:24:37.010000"],["2024-07-25T00:24:38.010000"],["2024-07-25T00:24:39.010000"],["2024-07-25T00:24:40.010000"],["2024-07-25T00:24:41.010000"],["2024-07-25T00:24:42.010000"],["2024-07-25T00:24:43.010000"],["2024-07-25T00:24:44.010000"],["2024-07-25T00:24:45.010000"],["2024-07-25T00:24:46.010000"],["2024-07-25T00:24:47.010000"],["2024-07-25T00:24:48.010000"],["2024-07-25T00:24:49.010000"],["2024-07-25T00:24:50.010000"],["2024-07-25T00:24:51.010000"],["2024-07-25T00:24:52.010000"],["2024-07-25T00:24:53.010000"],["2024-07-25T00:24:54.010000"],["2024-07-25T00:24:55.010000"],["2024-07-25T00:24:56.010000"],["2024-07-25T00:24:57.010000"],["2024-07-25T00:24:58.010000"],["2024-07-25T00:24:59.010000"],["2024-07-25T00:25:00.010000"],["2024-07-25T00:25:01.010000"],["2024-07-25T00:25:02.010000"],["2024-07-25T00:25:03.010000"],["2024-07-25T00:25:04.010000"],["2024-07-25T00:25:05.010000"],["2024-07-25T00:25:06.010000"],["2024-07-25T00:25:07.010000"],["2024-07-25T00:25:08.010000"],["2024-07-25T00:25:09.010000"],["2024-07-25T00:25:10.010000"],["2024-07-25T00:25:11.010000"],["2024-07-25T00:25:12.010000"],["2024-07-25T00:25:13.010000"],["2024-07-25T00:25:14.010000"],["2024-07-25T00:25:15.010000"],["2024-07-25T00:25:16.010000"],["2024-07-25T00:25:17.010000"],["2024-07-25T00:25:18.010000"],["2024-07-25T00:25:19.010000"],["2024-07-25T00:25:20.010000"],["2024-07-25T00:25:21.010000"],["2024-07-25T00:25:22.010000"],["2024-07-25T00:25:23.010000"],["2024-07-25T00:25:24.010000"],["2024-07-25T00:25:25.010000"],["2024-07-25T00:25:26.010000"],["2024-07-25T00:25:27.010000"],["2024-07-25T00:25:28.010000"],["2024-07-25T00:25:29.010000"],["2024-07-25T00:25:30.010000"],["2024-07-25T00:25:31.010000"],["2024-07-25T00:25:32.010000"],["2024-07-25T00:25:33.010000"],["2024-07-25T00:25:34.010000"],["2024-07-25T00:25:35.010000"],["2024-07-25T00:25:36.010000"],["2024-07-25T00:25:37.010000"],["2024-07-25T00:25:38.010000"],["2024-07-25T00:25:39.010000"],["2024-07-25T00:25:40.010000"],["2024-07-25T00:25:41.010000"],["2024-07-25T00:25:42.010000"],["2024-07-25T00:25:43.010000"],["2024-07-25T00:25:44.010000"],["2024-07-25T00:25:45.010000"],["2024-07-25T00:25:46.010000"],["2024-07-25T00:25:47.010000"],["2024-07-25T00:25:48.010000"],["2024-07-25T00:25:49.010000"],["2024-07-25T00:25:50.010000"],["2024-07-25T00:25:51.010000"],["2024-07-25T00:25:52.010000"],["2024-07-25T00:25:53.010000"],["2024-07-25T00:25:54.010000"],["2024-07-25T00:25:55.010000"],["2024-07-25T00:25:56.010000"],["2024-07-25T00:25:57.010000"],["2024-07-25T00:25:58.010000"],["2024-07-25T00:25:59.010000"],["2024-07-25T00:26:00.010000"],["2024-07-25T00:26:01.010000"],["2024-07-25T00:26:02.010000"],["2024-07-25T00:26:03.010000"],["2024-07-25T00:26:04.010000"],["2024-07-25T00:26:05.010000"],["2024-07-25T00:26:06.010000"],["2024-07-25T00:26:07.010000"],["2024-07-25T00:26:08.010000"],["2024-07-25T00:26:09.010000"],["2024-07-25T00:26:10.010000"],["2024-07-25T00:26:11.010000"],["2024-07-25T00:26:12.010000"],["2024-07-25T00:26:13.010000"],["2024-07-25T00:26:14.010000"],["2024-07-25T00:26:15.010000"],["2024-07-25T00:26:16.010000"],["2024-07-25T00:26:17.010000"],["2024-07-25T00:26:18.010000"],["2024-07-25T00:26:19.010000"],["2024-07-25T00:26:20.010000"],["2024-07-25T00:26:21.010000"],["2024-07-25T00:26:22.010000"],["2024-07-25T00:26:23.010000"],["2024-07-25T00:26:24.010000"],["2024-07-25T00:26:25.010000"],["2024-07-25T00:26:26.010000"],["2024-07-25T00:26:27.010000"],["2024-07-25T00:26:28.010000"],["2024-07-25T00:26:29.010000"],["2024-07-25T00:26:30.010000"],["2024-07-25T00:26:31.010000"],["2024-07-25T00:26:32.010000"],["2024-07-25T00:26:33.010000"],["2024-07-25T00:26:34.010000"],["2024-07-25T00:26:35.010000"],["2024-07-25T00:26:36.010000"],["2024-07-25T00:26:37.010000"],["2024-07-25T00:26:38.010000"],["2024-07-25T00:26:39.010000"],["2024-07-25T00:26:40.010000"],["2024-07-25T00:26:41.010000"],["2024-07-25T00:26:42.010000"],["2024-07-25T00:26:43.010000"],["2024-07-25T00:26:44.010000"],["2024-07-25T00:26:45.010000"],["2024-07-25T00:26:46.010000"],["2024-07-25T00:26:47.010000"],["2024-07-25T00:26:48.010000"],["2024-07-25T00:26:49.010000"],["2024-07-25T00:26:50.010000"],["2024-07-25T00:26:51.010000"],["2024-07-25T00:26:52.010000"],["2024-07-25T00:26:53.010000"],["2024-07-25T00:26:54.010000"],["2024-07-25T00:26:55.010000"],["2024-07-25T00:26:56.010000"],["2024-07-25T00:26:57.010000"],["2024-07-25T00:26:58.010000"],["2024-07-25T00:26:59.010000"],["2024-07-25T00:27:00.010000"],["2024-07-25T00:27:01.010000"],["2024-07-25T00:27:02.010000"],["2024-07-25T00:27:03.010000"],["2024-07-25T00:27:04.010000"],["2024-07-25T00:27:05.010000"],["2024-07-25T00:27:06.010000"],["2024-07-25T00:27:07.010000"],["2024-07-25T00:27:08.010000"],["2024-07-25T00:27:09.010000"],["2024-07-25T00:27:10.010000"],["2024-07-25T00:27:11.010000"],["2024-07-25T00:27:12.010000"],["2024-07-25T00:27:13.010000"],["2024-07-25T00:27:14.010000"],["2024-07-25T00:27:15.010000"],["2024-07-25T00:27:16.010000"],["2024-07-25T00:27:17.010000"],["2024-07-25T00:27:18.010000"],["2024-07-25T00:27:19.010000"],["2024-07-25T00:27:20.010000"],["2024-07-25T00:27:21.010000"],["2024-07-25T00:27:22.010000"],["2024-07-25T00:27:23.010000"],["2024-07-25T00:27:24.010000"],["2024-07-25T00:27:25.010000"],["2024-07-25T00:27:26.010000"],["2024-07-25T00:27:27.010000"],["2024-07-25T00:27:28.010000"],["2024-07-25T00:27:29.010000"],["2024-07-25T00:27:30.010000"],["2024-07-25T00:27:31.010000"],["2024-07-25T00:27:32.010000"],["2024-07-25T00:27:33.010000"],["2024-07-25T00:27:34.010000"],["2024-07-25T00:27:35.010000"],["2024-07-25T00:27:36.010000"],["2024-07-25T00:27:37.010000"],["2024-07-25T00:27:38.010000"],["2024-07-25T00:27:39.010000"],["2024-07-25T00:27:40.010000"],["2024-07-25T00:27:41.010000"],["2024-07-25T00:27:42.010000"],["2024-07-25T00:27:43.010000"],["2024-07-25T00:27:44.010000"],["2024-07-25T00:27:45.010000"],["2024-07-25T00:27:46.010000"],["2024-07-25T00:27:47.010000"],["2024-07-25T00:27:48.010000"],["2024-07-25T00:27:49.010000"],["2024-07-25T00:27:50.010000"],["2024-07-25T00:27:51.010000"],["2024-07-25T00:27:52.010000"],["2024-07-25T00:27:53.010000"],["2024-07-25T00:27:54.010000"],["2024-07-25T00:27:55.010000"],["2024-07-25T00:27:56.010000"],["2024-07-25T00:27:57.010000"],["2024-07-25T00:27:58.010000"],["2024-07-25T00:27:59.010000"],["2024-07-25T00:28:00.010000"],["2024-07-25T00:28:01.010000"],["2024-07-25T00:28:02.010000"],["2024-07-25T00:28:03.010000"],["2024-07-25T00:28:04.010000"],["2024-07-25T00:28:05.010000"],["2024-07-25T00:28:06.010000"],["2024-07-25T00:28:07.010000"],["2024-07-25T00:28:08.010000"],["2024-07-25T00:28:09.010000"],["2024-07-25T00:28:10.010000"],["2024-07-25T00:28:11.010000"],["2024-07-25T00:28:12.010000"],["2024-07-25T00:28:13.010000"],["2024-07-25T00:28:14.010000"],["2024-07-25T00:28:15.010000"],["2024-07-25T00:28:16.010000"],["2024-07-25T00:28:17.010000"],["2024-07-25T00:28:18.010000"],["2024-07-25T00:28:19.010000"],["2024-07-25T00:28:20.010000"],["2024-07-25T00:28:21.010000"],["2024-07-25T00:28:22.010000"],["2024-07-25T00:28:23.010000"],["2024-07-25T00:28:24.010000"],["2024-07-25T00:28:25.010000"],["2024-07-25T00:28:26.010000"],["2024-07-25T00:28:27.010000"],["2024-07-25T00:28:28.010000"],["2024-07-25T00:28:29.010000"],["2024-07-25T00:28:30.010000"],["2024-07-25T00:28:31.010000"],["2024-07-25T00:28:32.010000"],["2024-07-25T00:28:33.010000"],["2024-07-25T00:28:34.010000"],["2024-07-25T00:28:35.010000"],["2024-07-25T00:28:36.010000"],["2024-07-25T00:28:37.010000"],["2024-07-25T00:28:38.010000"],["2024-07-25T00:28:39.010000"],["2024-07-25T00:28:40.010000"],["2024-07-25T00:28:41.010000"],["2024-07-25T00:28:42.010000"],["2024-07-25T00:28:43.010000"],["2024-07-25T00:28:44.010000"],["2024-07-25T00:28:45.010000"],["2024-07-25T00:28:46.010000"],["2024-07-25T00:28:47.010000"],["2024-07-25T00:28:48.010000"],["2024-07-25T00:28:49.010000"],["2024-07-25T00:28:50.010000"],["2024-07-25T00:28:51.010000"],["2024-07-25T00:28:52.010000"],["2024-07-25T00:28:53.010000"],["2024-07-25T00:28:54.010000"],["2024-07-25T00:28:55.010000"],["2024-07-25T00:28:56.010000"],["2024-07-25T00:28:57.010000"],["2024-07-25T00:28:58.010000"],["2024-07-25T00:28:59.010000"],["2024-07-25T00:29:00.010000"],["2024-07-25T00:29:01.010000"],["2024-07-25T00:29:02.010000"],["2024-07-25T00:29:03.010000"],["2024-07-25T00:29:04.010000"],["2024-07-25T00:29:05.010000"],["2024-07-25T00:29:06.010000"],["2024-07-25T00:29:07.010000"],["2024-07-25T00:29:08.010000"],["2024-07-25T00:29:09.010000"],["2024-07-25T00:29:10.010000"],["2024-07-25T00:29:11.010000"],["2024-07-25T00:29:12.010000"],["2024-07-25T00:29:13.010000"],["2024-07-25T00:29:14.010000"],["2024-07-25T00:29:15.010000"],["2024-07-25T00:29:16.010000"],["2024-07-25T00:29:17.010000"],["2024-07-25T00:29:18.010000"],["2024-07-25T00:29:19.010000"],["2024-07-25T00:29:20.010000"],["2024-07-25T00:29:21.010000"],["2024-07-25T00:29:22.010000"],["2024-07-25T00:29:23.010000"],["2024-07-25T00:29:24.010000"],["2024-07-25T00:29:25.010000"],["2024-07-25T00:29:26.010000"],["2024-07-25T00:29:27.010000"],["2024-07-25T00:29:28.010000"],["2024-07-25T00:29:29.010000"],["2024-07-25T00:29:30.010000"],["2024-07-25T00:29:31.010000"],["2024-07-25T00:29:32.010000"],["2024-07-25T00:29:33.010000"],["2024-07-25T00:29:34.010000"],["2024-07-25T00:29:35.010000"],["2024-07-25T00:29:36.010000"],["2024-07-25T00:29:37.010000"],["2024-07-25T00:29:38.010000"],["2024-07-25T00:29:39.010000"],["2024-07-25T00:29:40.010000"],["2024-07-25T00:29:41.010000"],["2024-07-25T00:29:42.010000"],["2024-07-25T00:29:43.010000"],["2024-07-25T00:29:44.010000"],["2024-07-25T00:29:45.010000"],["2024-07-25T00:29:46.010000"],["2024-07-25T00:29:47.010000"],["2024-07-25T00:29:48.010000"],["2024-07-25T00:29:49.010000"],["2024-07-25T00:29:50.010000"],["2024-07-25T00:29:51.010000"],["2024-07-25T00:29:52.010000"],["2024-07-25T00:29:53.010000"],["2024-07-25T00:29:54.010000"],["2024-07-25T00:29:55.010000"],["2024-07-25T00:29:56.010000"],["2024-07-25T00:29:57.010000"],["2024-07-25T00:29:58.010000"],["2024-07-25T00:29:59.010000"],["2024-07-25T00:30:00.010000"],["2024-07-25T00:30:01.010000"],["2024-07-25T00:30:02.010000"],["2024-07-25T00:30:03.010000"],["2024-07-25T00:30:04.010000"],["2024-07-25T00:30:05.010000"],["2024-07-25T00:30:06.010000"],["2024-07-25T00:30:07.010000"],["2024-07-25T00:30:08.010000"],["2024-07-25T00:30:09.010000"],["2024-07-25T00:30:10.010000"],["2024-07-25T00:30:11.010000"],["2024-07-25T00:30:12.010000"],["2024-07-25T00:30:13.010000"],["2024-07-25T00:30:14.010000"],["2024-07-25T00:30:15.010000"],["2024-07-25T00:30:16.010000"],["2024-07-25T00:30:17.010000"],["2024-07-25T00:30:18.010000"],["2024-07-25T00:30:19.010000"],["2024-07-25T00:30:20.010000"],["2024-07-25T00:30:21.010000"],["2024-07-25T00:30:22.010000"],["2024-07-25T00:30:23.010000"],["2024-07-25T00:30:24.010000"],["2024-07-25T00:30:25.010000"],["2024-07-25T00:30:26.010000"],["2024-07-25T00:30:27.010000"],["2024-07-25T00:30:28.010000"],["2024-07-25T00:30:29.010000"],["2024-07-25T00:30:30.010000"],["2024-07-25T00:30:31.010000"],["2024-07-25T00:30:32.010000"],["2024-07-25T00:30:33.010000"],["2024-07-25T00:30:34.010000"],["2024-07-25T00:30:35.010000"],["2024-07-25T00:30:36.010000"],["2024-07-25T00:30:37.010000"],["2024-07-25T00:30:38.010000"],["2024-07-25T00:30:39.010000"],["2024-07-25T00:30:40.010000"],["2024-07-25T00:30:41.010000"],["2024-07-25T00:30:42.010000"],["2024-07-25T00:30:43.010000"],["2024-07-25T00:30:44.010000"],["2024-07-25T00:30:45.010000"],["2024-07-25T00:30:46.010000"],["2024-07-25T00:30:47.010000"],["2024-07-25T00:30:48.010000"],["2024-07-25T00:30:49.010000"],["2024-07-25T00:30:50.010000"],["2024-07-25T00:30:51.010000"],["2024-07-25T00:30:52.010000"],["2024-07-25T00:30:53.010000"],["2024-07-25T00:30:54.010000"],["2024-07-25T00:30:55.010000"],["2024-07-25T00:30:56.010000"],["2024-07-25T00:30:57.010000"],["2024-07-25T00:30:58.010000"],["2024-07-25T00:30:59.010000"],["2024-07-25T00:31:00.010000"],["2024-07-25T00:31:01.010000"],["2024-07-25T00:31:02.010000"],["2024-07-25T00:31:03.010000"],["2024-07-25T00:31:04.010000"],["2024-07-25T00:31:05.010000"],["2024-07-25T00:31:06.010000"],["2024-07-25T00:31:07.010000"],["2024-07-25T00:31:08.010000"],["2024-07-25T00:31:09.010000"],["2024-07-25T00:31:10.010000"],["2024-07-25T00:31:11.010000"],["2024-07-25T00:31:12.010000"],["2024-07-25T00:31:13.010000"],["2024-07-25T00:31:14.010000"],["2024-07-25T00:31:15.010000"],["2024-07-25T00:31:16.010000"],["2024-07-25T00:31:17.010000"],["2024-07-25T00:31:18.010000"],["2024-07-25T00:31:19.010000"],["2024-07-25T00:31:20.010000"],["2024-07-25T00:31:21.010000"],["2024-07-25T00:31:22.010000"],["2024-07-25T00:31:23.010000"],["2024-07-25T00:31:24.010000"],["2024-07-25T00:31:25.010000"],["2024-07-25T00:31:26.010000"],["2024-07-25T00:31:27.010000"],["2024-07-25T00:31:28.010000"],["2024-07-25T00:31:29.010000"],["2024-07-25T00:31:30.010000"],["2024-07-25T00:31:31.010000"],["2024-07-25T00:31:32.010000"],["2024-07-25T00:31:33.010000"],["2024-07-25T00:31:34.010000"],["2024-07-25T00:31:35.010000"],["2024-07-25T00:31:36.010000"],["2024-07-25T00:31:37.010000"],["2024-07-25T00:31:38.010000"],["2024-07-25T00:31:39.010000"],["2024-07-25T00:31:40.010000"],["2024-07-25T00:31:41.010000"],["2024-07-25T00:31:42.010000"],["2024-07-25T00:31:43.010000"],["2024-07-25T00:31:44.010000"],["2024-07-25T00:31:45.010000"],["2024-07-25T00:31:46.010000"],["2024-07-25T00:31:47.010000"],["2024-07-25T00:31:48.010000"],["2024-07-25T00:31:49.010000"],["2024-07-25T00:31:50.010000"],["2024-07-25T00:31:51.010000"],["2024-07-25T00:31:52.010000"],["2024-07-25T00:31:53.010000"],["2024-07-25T00:31:54.010000"],["2024-07-25T00:31:55.010000"],["2024-07-25T00:31:56.010000"],["2024-07-25T00:31:57.010000"],["2024-07-25T00:31:58.010000"],["2024-07-25T00:31:59.010000"],["2024-07-25T00:32:00.010000"],["2024-07-25T00:32:01.010000"],["2024-07-25T00:32:02.010000"],["2024-07-25T00:32:03.010000"],["2024-07-25T00:32:04.010000"],["2024-07-25T00:32:05.010000"],["2024-07-25T00:32:06.010000"],["2024-07-25T00:32:07.010000"],["2024-07-25T00:32:08.010000"],["2024-07-25T00:32:09.010000"],["2024-07-25T00:32:10.010000"],["2024-07-25T00:32:11.010000"],["2024-07-25T00:32:12.010000"],["2024-07-25T00:32:13.010000"],["2024-07-25T00:32:14.010000"],["2024-07-25T00:32:15.010000"],["2024-07-25T00:32:16.010000"],["2024-07-25T00:32:17.010000"],["2024-07-25T00:32:18.010000"],["2024-07-25T00:32:19.010000"],["2024-07-25T00:32:20.010000"],["2024-07-25T00:32:21.010000"],["2024-07-25T00:32:22.010000"],["2024-07-25T00:32:23.010000"],["2024-07-25T00:32:24.010000"],["2024-07-25T00:32:25.010000"],["2024-07-25T00:32:26.010000"],["2024-07-25T00:32:27.010000"],["2024-07-25T00:32:28.010000"],["2024-07-25T00:32:29.010000"],["2024-07-25T00:32:30.010000"],["2024-07-25T00:32:31.010000"],["2024-07-25T00:32:32.010000"],["2024-07-25T00:32:33.010000"],["2024-07-25T00:32:34.010000"],["2024-07-25T00:32:35.010000"],["2024-07-25T00:32:36.010000"],["2024-07-25T00:32:37.010000"],["2024-07-25T00:32:38.010000"],["2024-07-25T00:32:39.010000"],["2024-07-25T00:32:40.010000"],["2024-07-25T00:32:41.010000"],["2024-07-25T00:32:42.010000"],["2024-07-25T00:32:43.010000"],["2024-07-25T00:32:44.010000"],["2024-07-25T00:32:45.010000"],["2024-07-25T00:32:46.010000"],["2024-07-25T00:32:47.010000"],["2024-07-25T00:32:48.010000"],["2024-07-25T00:32:49.010000"],["2024-07-25T00:32:50.010000"],["2024-07-25T00:32:51.010000"],["2024-07-25T00:32:52.010000"],["2024-07-25T00:32:53.010000"],["2024-07-25T00:32:54.010000"],["2024-07-25T00:32:55.010000"],["2024-07-25T00:32:56.010000"],["2024-07-25T00:32:57.010000"],["2024-07-25T00:32:58.010000"],["2024-07-25T00:32:59.010000"],["2024-07-25T00:33:00.010000"],["2024-07-25T00:33:01.010000"],["2024-07-25T00:33:02.010000"],["2024-07-25T00:33:03.010000"],["2024-07-25T00:33:04.010000"],["2024-07-25T00:33:05.010000"],["2024-07-25T00:33:06.010000"],["2024-07-25T00:33:07.010000"],["2024-07-25T00:33:08.010000"],["2024-07-25T00:33:09.010000"],["2024-07-25T00:33:10.010000"],["2024-07-25T00:33:11.010000"],["2024-07-25T00:33:12.010000"],["2024-07-25T00:33:13.010000"],["2024-07-25T00:33:14.010000"],["2024-07-25T00:33:15.010000"],["2024-07-25T00:33:16.010000"],["2024-07-25T00:33:17.010000"],["2024-07-25T00:33:18.010000"],["2024-07-25T00:33:19.010000"],["2024-07-25T00:33:20.010000"],["2024-07-25T00:33:21.010000"],["2024-07-25T00:33:22.010000"],["2024-07-25T00:33:23.010000"],["2024-07-25T00:33:24.010000"],["2024-07-25T00:33:25.010000"],["2024-07-25T00:33:26.010000"],["2024-07-25T00:33:27.010000"],["2024-07-25T00:33:28.010000"],["2024-07-25T00:33:29.010000"],["2024-07-25T00:33:30.010000"],["2024-07-25T00:33:31.010000"],["2024-07-25T00:33:32.010000"],["2024-07-25T00:33:33.010000"],["2024-07-25T00:33:34.010000"],["2024-07-25T00:33:35.010000"],["2024-07-25T00:33:36.010000"],["2024-07-25T00:33:37.010000"],["2024-07-25T00:33:38.010000"],["2024-07-25T00:33:39.010000"],["2024-07-25T00:33:40.010000"],["2024-07-25T00:33:41.010000"],["2024-07-25T00:33:42.010000"],["2024-07-25T00:33:43.010000"],["2024-07-25T00:33:44.010000"],["2024-07-25T00:33:45.010000"],["2024-07-25T00:33:46.010000"],["2024-07-25T00:33:47.010000"],["2024-07-25T00:33:48.010000"],["2024-07-25T00:33:49.010000"],["2024-07-25T00:33:50.010000"],["2024-07-25T00:33:51.010000"],["2024-07-25T00:33:52.010000"],["2024-07-25T00:33:53.010000"],["2024-07-25T00:33:54.010000"],["2024-07-25T00:33:55.010000"],["2024-07-25T00:33:56.010000"],["2024-07-25T00:33:57.010000"],["2024-07-25T00:33:58.010000"],["2024-07-25T00:33:59.010000"],["2024-07-25T00:34:00.010000"],["2024-07-25T00:34:01.010000"],["2024-07-25T00:34:02.010000"],["2024-07-25T00:34:03.010000"],["2024-07-25T00:34:04.010000"],["2024-07-25T00:34:05.010000"],["2024-07-25T00:34:06.010000"],["2024-07-25T00:34:07.010000"],["2024-07-25T00:34:08.010000"],["2024-07-25T00:34:09.010000"],["2024-07-25T00:34:10.010000"],["2024-07-25T00:34:11.010000"],["2024-07-25T00:34:12.010000"],["2024-07-25T00:34:13.010000"],["2024-07-25T00:34:14.010000"],["2024-07-25T00:34:15.010000"],["2024-07-25T00:34:16.010000"],["2024-07-25T00:34:17.010000"],["2024-07-25T00:34:18.010000"],["2024-07-25T00:34:19.010000"],["2024-07-25T00:34:20.010000"],["2024-07-25T00:34:21.010000"],["2024-07-25T00:34:22.010000"],["2024-07-25T00:34:23.010000"],["2024-07-25T00:34:24.010000"],["2024-07-25T00:34:25.010000"],["2024-07-25T00:34:26.010000"],["2024-07-25T00:34:27.010000"],["2024-07-25T00:34:28.010000"],["2024-07-25T00:34:29.010000"],["2024-07-25T00:34:30.010000"],["2024-07-25T00:34:31.010000"],["2024-07-25T00:34:32.010000"],["2024-07-25T00:34:33.010000"],["2024-07-25T00:34:34.010000"],["2024-07-25T00:34:35.010000"],["2024-07-25T00:34:36.010000"],["2024-07-25T00:34:37.010000"],["2024-07-25T00:34:38.010000"],["2024-07-25T00:34:39.010000"],["2024-07-25T00:34:40.010000"],["2024-07-25T00:34:41.010000"],["2024-07-25T00:34:42.010000"],["2024-07-25T00:34:43.010000"],["2024-07-25T00:34:44.010000"],["2024-07-25T00:34:45.010000"],["2024-07-25T00:34:46.010000"],["2024-07-25T00:34:47.010000"],["2024-07-25T00:34:48.010000"],["2024-07-25T00:34:49.010000"],["2024-07-25T00:34:50.010000"],["2024-07-25T00:34:51.010000"],["2024-07-25T00:34:52.010000"],["2024-07-25T00:34:53.010000"],["2024-07-25T00:34:54.010000"],["2024-07-25T00:34:55.010000"],["2024-07-25T00:34:56.010000"],["2024-07-25T00:34:57.010000"],["2024-07-25T00:34:58.010000"],["2024-07-25T00:34:59.010000"],["2024-07-25T00:35:00.010000"],["2024-07-25T00:35:01.010000"],["2024-07-25T00:35:02.010000"],["2024-07-25T00:35:03.010000"],["2024-07-25T00:35:04.010000"],["2024-07-25T00:35:05.010000"],["2024-07-25T00:35:06.010000"],["2024-07-25T00:35:07.010000"],["2024-07-25T00:35:08.010000"],["2024-07-25T00:35:09.010000"],["2024-07-25T00:35:10.010000"],["2024-07-25T00:35:11.010000"],["2024-07-25T00:35:12.010000"],["2024-07-25T00:35:13.010000"],["2024-07-25T00:35:14.010000"],["2024-07-25T00:35:15.010000"],["2024-07-25T00:35:16.010000"],["2024-07-25T00:35:17.010000"],["2024-07-25T00:35:18.010000"],["2024-07-25T00:35:19.010000"],["2024-07-25T00:35:20.010000"],["2024-07-25T00:35:21.010000"],["2024-07-25T00:35:22.010000"],["2024-07-25T00:35:23.010000"],["2024-07-25T00:35:24.010000"],["2024-07-25T00:35:25.010000"],["2024-07-25T00:35:26.010000"],["2024-07-25T00:35:27.010000"],["2024-07-25T00:35:28.010000"],["2024-07-25T00:35:29.010000"],["2024-07-25T00:35:30.010000"],["2024-07-25T00:35:31.010000"],["2024-07-25T00:35:32.010000"],["2024-07-25T00:35:33.010000"],["2024-07-25T00:35:34.010000"],["2024-07-25T00:35:35.010000"],["2024-07-25T00:35:36.010000"],["2024-07-25T00:35:37.010000"],["2024-07-25T00:35:38.010000"],["2024-07-25T00:35:39.010000"],["2024-07-25T00:35:40.010000"],["2024-07-25T00:35:41.010000"],["2024-07-25T00:35:42.010000"],["2024-07-25T00:35:43.010000"],["2024-07-25T00:35:44.010000"],["2024-07-25T00:35:45.010000"],["2024-07-25T00:35:46.010000"],["2024-07-25T00:35:47.010000"],["2024-07-25T00:35:48.010000"],["2024-07-25T00:35:49.010000"],["2024-07-25T00:35:50.010000"],["2024-07-25T00:35:51.010000"],["2024-07-25T00:35:52.010000"],["2024-07-25T00:35:53.010000"],["2024-07-25T00:35:54.010000"],["2024-07-25T00:35:55.010000"],["2024-07-25T00:35:56.010000"],["2024-07-25T00:35:57.010000"],["2024-07-25T00:35:58.010000"],["2024-07-25T00:35:59.010000"],["2024-07-25T00:36:00.010000"],["2024-07-25T00:36:01.010000"],["2024-07-25T00:36:02.010000"],["2024-07-25T00:36:03.010000"],["2024-07-25T00:36:04.010000"],["2024-07-25T00:36:05.010000"],["2024-07-25T00:36:06.010000"],["2024-07-25T00:36:07.010000"],["2024-07-25T00:36:08.010000"],["2024-07-25T00:36:09.010000"],["2024-07-25T00:36:10.010000"],["2024-07-25T00:36:11.010000"],["2024-07-25T00:36:12.010000"],["2024-07-25T00:36:13.010000"],["2024-07-25T00:36:14.010000"],["2024-07-25T00:36:15.010000"],["2024-07-25T00:36:16.010000"],["2024-07-25T00:36:17.010000"],["2024-07-25T00:36:18.010000"],["2024-07-25T00:36:19.010000"],["2024-07-25T00:36:20.010000"],["2024-07-25T00:36:21.010000"],["2024-07-25T00:36:22.010000"],["2024-07-25T00:36:23.010000"],["2024-07-25T00:36:24.010000"],["2024-07-25T00:36:25.010000"],["2024-07-25T00:36:26.010000"],["2024-07-25T00:36:27.010000"],["2024-07-25T00:36:28.010000"],["2024-07-25T00:36:29.010000"],["2024-07-25T00:36:30.010000"],["2024-07-25T00:36:31.010000"],["2024-07-25T00:36:32.010000"],["2024-07-25T00:36:33.010000"],["2024-07-25T00:36:34.010000"],["2024-07-25T00:36:35.010000"],["2024-07-25T00:36:36.010000"],["2024-07-25T00:36:37.010000"],["2024-07-25T00:36:38.010000"],["2024-07-25T00:36:39.010000"],["2024-07-25T00:36:40.010000"],["2024-07-25T00:36:41.010000"],["2024-07-25T00:36:42.010000"],["2024-07-25T00:36:43.010000"],["2024-07-25T00:36:44.010000"],["2024-07-25T00:36:45.010000"],["2024-07-25T00:36:46.010000"],["2024-07-25T00:36:47.010000"],["2024-07-25T00:36:48.010000"],["2024-07-25T00:36:49.010000"],["2024-07-25T00:36:50.010000"],["2024-07-25T00:36:51.010000"],["2024-07-25T00:36:52.010000"],["2024-07-25T00:36:53.010000"],["2024-07-25T00:36:54.010000"],["2024-07-25T00:36:55.010000"],["2024-07-25T00:36:56.010000"],["2024-07-25T00:36:57.010000"],["2024-07-25T00:36:58.010000"],["2024-07-25T00:36:59.010000"],["2024-07-25T00:37:00.010000"],["2024-07-25T00:37:01.010000"],["2024-07-25T00:37:02.010000"],["2024-07-25T00:37:03.010000"],["2024-07-25T00:37:04.010000"],["2024-07-25T00:37:05.010000"],["2024-07-25T00:37:06.010000"],["2024-07-25T00:37:07.010000"],["2024-07-25T00:37:08.010000"],["2024-07-25T00:37:09.010000"],["2024-07-25T00:37:10.010000"],["2024-07-25T00:37:11.010000"],["2024-07-25T00:37:12.010000"],["2024-07-25T00:37:13.010000"],["2024-07-25T00:37:14.010000"],["2024-07-25T00:37:15.010000"],["2024-07-25T00:37:16.010000"],["2024-07-25T00:37:17.010000"],["2024-07-25T00:37:18.010000"],["2024-07-25T00:37:19.010000"],["2024-07-25T00:37:20.010000"],["2024-07-25T00:37:21.010000"],["2024-07-25T00:37:22.010000"],["2024-07-25T00:37:23.010000"],["2024-07-25T00:37:24.010000"],["2024-07-25T00:37:25.010000"],["2024-07-25T00:37:26.010000"],["2024-07-25T00:37:27.010000"],["2024-07-25T00:37:28.010000"],["2024-07-25T00:37:29.010000"],["2024-07-25T00:37:30.010000"],["2024-07-25T00:37:31.010000"],["2024-07-25T00:37:32.010000"],["2024-07-25T00:37:33.010000"],["2024-07-25T00:37:34.010000"],["2024-07-25T00:37:35.010000"],["2024-07-25T00:37:36.010000"],["2024-07-25T00:37:37.010000"],["2024-07-25T00:37:38.010000"],["2024-07-25T00:37:39.010000"],["2024-07-25T00:37:40.010000"],["2024-07-25T00:37:41.010000"],["2024-07-25T00:37:42.010000"],["2024-07-25T00:37:43.010000"],["2024-07-25T00:37:44.010000"],["2024-07-25T00:37:45.010000"],["2024-07-25T00:37:46.010000"],["2024-07-25T00:37:47.010000"],["2024-07-25T00:37:48.010000"],["2024-07-25T00:37:49.010000"],["2024-07-25T00:37:50.010000"],["2024-07-25T00:37:51.010000"],["2024-07-25T00:37:52.010000"],["2024-07-25T00:37:53.010000"],["2024-07-25T00:37:54.010000"],["2024-07-25T00:37:55.010000"],["2024-07-25T00:37:56.010000"],["2024-07-25T00:37:57.010000"],["2024-07-25T00:37:58.010000"],["2024-07-25T00:37:59.010000"],["2024-07-25T00:38:00.010000"],["2024-07-25T00:38:01.010000"],["2024-07-25T00:38:02.010000"],["2024-07-25T00:38:03.010000"],["2024-07-25T00:38:04.010000"],["2024-07-25T00:38:05.010000"],["2024-07-25T00:38:06.010000"],["2024-07-25T00:38:07.010000"],["2024-07-25T00:38:08.010000"],["2024-07-25T00:38:09.010000"],["2024-07-25T00:38:10.010000"],["2024-07-25T00:38:11.010000"],["2024-07-25T00:38:12.010000"],["2024-07-25T00:38:13.010000"],["2024-07-25T00:38:14.010000"],["2024-07-25T00:38:15.010000"],["2024-07-25T00:38:16.010000"],["2024-07-25T00:38:17.010000"],["2024-07-25T00:38:18.010000"],["2024-07-25T00:38:19.010000"],["2024-07-25T00:38:20.010000"],["2024-07-25T00:38:21.010000"],["2024-07-25T00:38:22.010000"],["2024-07-25T00:38:23.010000"],["2024-07-25T00:38:24.010000"],["2024-07-25T00:38:25.010000"],["2024-07-25T00:38:26.010000"],["2024-07-25T00:38:27.010000"],["2024-07-25T00:38:28.010000"],["2024-07-25T00:38:29.010000"],["2024-07-25T00:38:30.010000"],["2024-07-25T00:38:31.010000"],["2024-07-25T00:38:32.010000"],["2024-07-25T00:38:33.010000"],["2024-07-25T00:38:34.010000"],["2024-07-25T00:38:35.010000"],["2024-07-25T00:38:36.010000"],["2024-07-25T00:38:37.010000"],["2024-07-25T00:38:38.010000"],["2024-07-25T00:38:39.010000"],["2024-07-25T00:38:40.010000"],["2024-07-25T00:38:41.010000"],["2024-07-25T00:38:42.010000"],["2024-07-25T00:38:43.010000"],["2024-07-25T00:38:44.010000"],["2024-07-25T00:38:45.010000"],["2024-07-25T00:38:46.010000"],["2024-07-25T00:38:47.010000"],["2024-07-25T00:38:48.010000"],["2024-07-25T00:38:49.010000"],["2024-07-25T00:38:50.010000"],["2024-07-25T00:38:51.010000"],["2024-07-25T00:38:52.010000"],["2024-07-25T00:38:53.010000"],["2024-07-25T00:38:54.010000"],["2024-07-25T00:38:55.010000"],["2024-07-25T00:38:56.010000"],["2024-07-25T00:38:57.010000"],["2024-07-25T00:38:58.010000"],["2024-07-25T00:38:59.010000"],["2024-07-25T00:39:00.010000"],["2024-07-25T00:39:01.010000"],["2024-07-25T00:39:02.010000"],["2024-07-25T00:39:03.010000"],["2024-07-25T00:39:04.010000"],["2024-07-25T00:39:05.010000"],["2024-07-25T00:39:06.010000"],["2024-07-25T00:39:07.010000"],["2024-07-25T00:39:08.010000"],["2024-07-25T00:39:09.010000"],["2024-07-25T00:39:10.010000"],["2024-07-25T00:39:11.010000"],["2024-07-25T00:39:12.010000"],["2024-07-25T00:39:13.010000"],["2024-07-25T00:39:14.010000"],["2024-07-25T00:39:15.010000"],["2024-07-25T00:39:16.010000"],["2024-07-25T00:39:17.010000"],["2024-07-25T00:39:18.010000"],["2024-07-25T00:39:19.010000"],["2024-07-25T00:39:20.010000"],["2024-07-25T00:39:21.010000"],["2024-07-25T00:39:22.010000"],["2024-07-25T00:39:23.010000"],["2024-07-25T00:39:24.010000"],["2024-07-25T00:39:25.010000"],["2024-07-25T00:39:26.010000"],["2024-07-25T00:39:27.010000"],["2024-07-25T00:39:28.010000"],["2024-07-25T00:39:29.010000"],["2024-07-25T00:39:30.010000"],["2024-07-25T00:39:31.010000"],["2024-07-25T00:39:32.010000"],["2024-07-25T00:39:33.010000"],["2024-07-25T00:39:34.010000"],["2024-07-25T00:39:35.010000"],["2024-07-25T00:39:36.010000"],["2024-07-25T00:39:37.010000"],["2024-07-25T00:39:38.010000"],["2024-07-25T00:39:39.010000"],["2024-07-25T00:39:40.010000"],["2024-07-25T00:39:41.010000"],["2024-07-25T00:39:42.010000"],["2024-07-25T00:39:43.010000"],["2024-07-25T00:39:44.010000"],["2024-07-25T00:39:45.010000"],["2024-07-25T00:39:46.010000"],["2024-07-25T00:39:47.010000"],["2024-07-25T00:39:48.010000"],["2024-07-25T00:39:49.010000"],["2024-07-25T00:39:50.010000"],["2024-07-25T00:39:51.010000"],["2024-07-25T00:39:52.010000"],["2024-07-25T00:39:53.010000"],["2024-07-25T00:39:54.010000"],["2024-07-25T00:39:55.010000"],["2024-07-25T00:39:56.010000"],["2024-07-25T00:39:57.010000"],["2024-07-25T00:39:58.010000"],["2024-07-25T00:39:59.010000"],["2024-07-25T00:40:00.010000"],["2024-07-25T00:40:01.010000"],["2024-07-25T00:40:02.010000"],["2024-07-25T00:40:03.010000"],["2024-07-25T00:40:04.010000"],["2024-07-25T00:40:05.010000"],["2024-07-25T00:40:06.010000"],["2024-07-25T00:40:07.010000"],["2024-07-25T00:40:08.010000"],["2024-07-25T00:40:09.010000"],["2024-07-25T00:40:10.010000"],["2024-07-25T00:40:11.010000"],["2024-07-25T00:40:12.010000"],["2024-07-25T00:40:13.010000"],["2024-07-25T00:40:14.010000"],["2024-07-25T00:40:15.010000"],["2024-07-25T00:40:16.010000"],["2024-07-25T00:40:17.010000"],["2024-07-25T00:40:18.010000"],["2024-07-25T00:40:19.010000"],["2024-07-25T00:40:20.010000"],["2024-07-25T00:40:21.010000"],["2024-07-25T00:40:22.010000"],["2024-07-25T00:40:23.010000"],["2024-07-25T00:40:24.010000"],["2024-07-25T00:40:25.010000"],["2024-07-25T00:40:26.010000"],["2024-07-25T00:40:27.010000"],["2024-07-25T00:40:28.010000"],["2024-07-25T00:40:29.010000"],["2024-07-25T00:40:30.010000"],["2024-07-25T00:40:31.010000"],["2024-07-25T00:40:32.010000"],["2024-07-25T00:40:33.010000"],["2024-07-25T00:40:34.010000"],["2024-07-25T00:40:35.010000"],["2024-07-25T00:40:36.010000"],["2024-07-25T00:40:37.010000"],["2024-07-25T00:40:38.010000"],["2024-07-25T00:40:39.010000"],["2024-07-25T00:40:40.010000"],["2024-07-25T00:40:41.010000"],["2024-07-25T00:40:42.010000"],["2024-07-25T00:40:43.010000"],["2024-07-25T00:40:44.010000"],["2024-07-25T00:40:45.010000"],["2024-07-25T00:40:46.010000"],["2024-07-25T00:40:47.010000"],["2024-07-25T00:40:48.010000"],["2024-07-25T00:40:49.010000"],["2024-07-25T00:40:50.010000"],["2024-07-25T00:40:51.010000"],["2024-07-25T00:40:52.010000"],["2024-07-25T00:40:53.010000"],["2024-07-25T00:40:54.010000"],["2024-07-25T00:40:55.010000"],["2024-07-25T00:40:56.010000"],["2024-07-25T00:40:57.010000"],["2024-07-25T00:40:58.010000"],["2024-07-25T00:40:59.010000"],["2024-07-25T00:41:00.010000"],["2024-07-25T00:41:01.010000"],["2024-07-25T00:41:02.010000"],["2024-07-25T00:41:03.010000"],["2024-07-25T00:41:04.010000"],["2024-07-25T00:41:05.010000"],["2024-07-25T00:41:06.010000"],["2024-07-25T00:41:07.010000"],["2024-07-25T00:41:08.010000"],["2024-07-25T00:41:09.010000"],["2024-07-25T00:41:10.010000"],["2024-07-25T00:41:11.010000"],["2024-07-25T00:41:12.010000"],["2024-07-25T00:41:13.010000"],["2024-07-25T00:41:14.010000"],["2024-07-25T00:41:15.010000"],["2024-07-25T00:41:16.010000"],["2024-07-25T00:41:17.010000"],["2024-07-25T00:41:18.010000"],["2024-07-25T00:41:19.010000"],["2024-07-25T00:41:20.010000"],["2024-07-25T00:41:21.010000"],["2024-07-25T00:41:22.010000"],["2024-07-25T00:41:23.010000"],["2024-07-25T00:41:24.010000"],["2024-07-25T00:41:25.010000"],["2024-07-25T00:41:26.010000"],["2024-07-25T00:41:27.010000"],["2024-07-25T00:41:28.010000"],["2024-07-25T00:41:29.010000"],["2024-07-25T00:41:30.010000"],["2024-07-25T00:41:31.010000"],["2024-07-25T00:41:32.010000"],["2024-07-25T00:41:33.010000"],["2024-07-25T00:41:34.010000"],["2024-07-25T00:41:35.010000"],["2024-07-25T00:41:36.010000"],["2024-07-25T00:41:37.010000"],["2024-07-25T00:41:38.010000"],["2024-07-25T00:41:39.010000"],["2024-07-25T00:41:40.010000"],["2024-07-25T00:41:41.010000"],["2024-07-25T00:41:42.010000"],["2024-07-25T00:41:43.010000"],["2024-07-25T00:41:44.010000"],["2024-07-25T00:41:45.010000"],["2024-07-25T00:41:46.010000"],["2024-07-25T00:41:47.010000"],["2024-07-25T00:41:48.010000"],["2024-07-25T00:41:49.010000"],["2024-07-25T00:41:50.010000"],["2024-07-25T00:41:51.010000"],["2024-07-25T00:41:52.010000"],["2024-07-25T00:41:53.010000"],["2024-07-25T00:41:54.010000"],["2024-07-25T00:41:55.010000"],["2024-07-25T00:41:56.010000"],["2024-07-25T00:41:57.010000"],["2024-07-25T00:41:58.010000"],["2024-07-25T00:41:59.010000"],["2024-07-25T00:42:00.010000"],["2024-07-25T00:42:01.010000"],["2024-07-25T00:42:02.010000"],["2024-07-25T00:42:03.010000"],["2024-07-25T00:42:04.010000"],["2024-07-25T00:42:05.010000"],["2024-07-25T00:42:06.010000"],["2024-07-25T00:42:07.010000"],["2024-07-25T00:42:08.010000"],["2024-07-25T00:42:09.010000"],["2024-07-25T00:42:10.010000"],["2024-07-25T00:42:11.010000"],["2024-07-25T00:42:12.010000"],["2024-07-25T00:42:13.010000"],["2024-07-25T00:42:14.010000"],["2024-07-25T00:42:15.010000"],["2024-07-25T00:42:16.010000"],["2024-07-25T00:42:17.010000"],["2024-07-25T00:42:18.010000"],["2024-07-25T00:42:19.010000"],["2024-07-25T00:42:20.010000"],["2024-07-25T00:42:21.010000"],["2024-07-25T00:42:22.010000"],["2024-07-25T00:42:23.010000"],["2024-07-25T00:42:24.010000"],["2024-07-25T00:42:25.010000"],["2024-07-25T00:42:26.010000"],["2024-07-25T00:42:27.010000"],["2024-07-25T00:42:28.010000"],["2024-07-25T00:42:29.010000"],["2024-07-25T00:42:30.010000"],["2024-07-25T00:42:31.010000"],["2024-07-25T00:42:32.010000"],["2024-07-25T00:42:33.010000"],["2024-07-25T00:42:34.010000"],["2024-07-25T00:42:35.010000"],["2024-07-25T00:42:36.010000"],["2024-07-25T00:42:37.010000"],["2024-07-25T00:42:38.010000"],["2024-07-25T00:42:39.010000"],["2024-07-25T00:42:40.010000"],["2024-07-25T00:42:41.010000"],["2024-07-25T00:42:42.010000"],["2024-07-25T00:42:43.010000"],["2024-07-25T00:42:44.010000"],["2024-07-25T00:42:45.010000"],["2024-07-25T00:42:46.010000"],["2024-07-25T00:42:47.010000"],["2024-07-25T00:42:48.010000"],["2024-07-25T00:42:49.010000"],["2024-07-25T00:42:50.010000"],["2024-07-25T00:42:51.010000"],["2024-07-25T00:42:52.010000"],["2024-07-25T00:42:53.010000"],["2024-07-25T00:42:54.010000"],["2024-07-25T00:42:55.010000"],["2024-07-25T00:42:56.010000"],["2024-07-25T00:42:57.010000"],["2024-07-25T00:42:58.010000"],["2024-07-25T00:42:59.010000"],["2024-07-25T00:43:00.010000"],["2024-07-25T00:43:01.010000"],["2024-07-25T00:43:02.010000"],["2024-07-25T00:43:03.010000"],["2024-07-25T00:43:04.010000"],["2024-07-25T00:43:05.010000"],["2024-07-25T00:43:06.010000"],["2024-07-25T00:43:07.010000"],["2024-07-25T00:43:08.010000"],["2024-07-25T00:43:09.010000"],["2024-07-25T00:43:10.010000"],["2024-07-25T00:43:11.010000"],["2024-07-25T00:43:12.010000"],["2024-07-25T00:43:13.010000"],["2024-07-25T00:43:14.010000"],["2024-07-25T00:43:15.010000"],["2024-07-25T00:43:16.010000"],["2024-07-25T00:43:17.010000"],["2024-07-25T00:43:18.010000"],["2024-07-25T00:43:19.010000"],["2024-07-25T00:43:20.010000"],["2024-07-25T00:43:21.010000"],["2024-07-25T00:43:22.010000"],["2024-07-25T00:43:23.010000"],["2024-07-25T00:43:24.010000"],["2024-07-25T00:43:25.010000"],["2024-07-25T00:43:26.010000"],["2024-07-25T00:43:27.010000"],["2024-07-25T00:43:28.010000"],["2024-07-25T00:43:29.010000"],["2024-07-25T00:43:30.010000"],["2024-07-25T00:43:31.010000"],["2024-07-25T00:43:32.010000"],["2024-07-25T00:43:33.010000"],["2024-07-25T00:43:34.010000"],["2024-07-25T00:43:35.010000"],["2024-07-25T00:43:36.010000"],["2024-07-25T00:43:37.010000"],["2024-07-25T00:43:38.010000"],["2024-07-25T00:43:39.010000"],["2024-07-25T00:43:40.010000"],["2024-07-25T00:43:41.010000"],["2024-07-25T00:43:42.010000"],["2024-07-25T00:43:43.010000"],["2024-07-25T00:43:44.010000"],["2024-07-25T00:43:45.010000"],["2024-07-25T00:43:46.010000"],["2024-07-25T00:43:47.010000"],["2024-07-25T00:43:48.010000"],["2024-07-25T00:43:49.010000"],["2024-07-25T00:43:50.010000"],["2024-07-25T00:43:51.010000"],["2024-07-25T00:43:52.010000"],["2024-07-25T00:43:53.010000"],["2024-07-25T00:43:54.010000"],["2024-07-25T00:43:55.010000"],["2024-07-25T00:43:56.010000"],["2024-07-25T00:43:57.010000"],["2024-07-25T00:43:58.010000"],["2024-07-25T00:43:59.010000"],["2024-07-25T00:44:00.010000"],["2024-07-25T00:44:01.010000"],["2024-07-25T00:44:02.010000"],["2024-07-25T00:44:03.010000"],["2024-07-25T00:44:04.010000"],["2024-07-25T00:44:05.010000"],["2024-07-25T00:44:06.010000"],["2024-07-25T00:44:07.010000"],["2024-07-25T00:44:08.010000"],["2024-07-25T00:44:09.010000"],["2024-07-25T00:44:10.010000"],["2024-07-25T00:44:11.010000"],["2024-07-25T00:44:12.010000"],["2024-07-25T00:44:13.010000"],["2024-07-25T00:44:14.010000"],["2024-07-25T00:44:15.010000"],["2024-07-25T00:44:16.010000"],["2024-07-25T00:44:17.010000"],["2024-07-25T00:44:18.010000"],["2024-07-25T00:44:19.010000"],["2024-07-25T00:44:20.010000"],["2024-07-25T00:44:21.010000"],["2024-07-25T00:44:22.010000"],["2024-07-25T00:44:23.010000"],["2024-07-25T00:44:24.010000"],["2024-07-25T00:44:25.010000"],["2024-07-25T00:44:26.010000"],["2024-07-25T00:44:27.010000"],["2024-07-25T00:44:28.010000"],["2024-07-25T00:44:29.010000"],["2024-07-25T00:44:30.010000"],["2024-07-25T00:44:31.010000"],["2024-07-25T00:44:32.010000"],["2024-07-25T00:44:33.010000"],["2024-07-25T00:44:34.010000"],["2024-07-25T00:44:35.010000"],["2024-07-25T00:44:36.010000"],["2024-07-25T00:44:37.010000"],["2024-07-25T00:44:38.010000"],["2024-07-25T00:44:39.010000"],["2024-07-25T00:44:40.010000"],["2024-07-25T00:44:41.010000"],["2024-07-25T00:44:42.010000"],["2024-07-25T00:44:43.010000"],["2024-07-25T00:44:44.010000"],["2024-07-25T00:44:45.010000"],["2024-07-25T00:44:46.010000"],["2024-07-25T00:44:47.010000"],["2024-07-25T00:44:48.010000"],["2024-07-25T00:44:49.010000"],["2024-07-25T00:44:50.010000"],["2024-07-25T00:44:51.010000"],["2024-07-25T00:44:52.010000"],["2024-07-25T00:44:53.010000"],["2024-07-25T00:44:54.010000"],["2024-07-25T00:44:55.010000"],["2024-07-25T00:44:56.010000"],["2024-07-25T00:44:57.010000"],["2024-07-25T00:44:58.010000"],["2024-07-25T00:44:59.010000"],["2024-07-25T00:45:00.010000"],["2024-07-25T00:45:01.010000"],["2024-07-25T00:45:02.010000"],["2024-07-25T00:45:03.010000"],["2024-07-25T00:45:04.010000"],["2024-07-25T00:45:05.010000"],["2024-07-25T00:45:06.010000"],["2024-07-25T00:45:07.010000"],["2024-07-25T00:45:08.010000"],["2024-07-25T00:45:09.010000"],["2024-07-25T00:45:10.010000"],["2024-07-25T00:45:11.010000"],["2024-07-25T00:45:12.010000"],["2024-07-25T00:45:13.010000"],["2024-07-25T00:45:14.010000"],["2024-07-25T00:45:15.010000"],["2024-07-25T00:45:16.010000"],["2024-07-25T00:45:17.010000"],["2024-07-25T00:45:18.010000"],["2024-07-25T00:45:19.010000"],["2024-07-25T00:45:20.010000"],["2024-07-25T00:45:21.010000"],["2024-07-25T00:45:22.010000"],["2024-07-25T00:45:23.010000"],["2024-07-25T00:45:24.010000"],["2024-07-25T00:45:25.010000"],["2024-07-25T00:45:26.010000"],["2024-07-25T00:45:27.010000"],["2024-07-25T00:45:28.010000"],["2024-07-25T00:45:29.010000"],["2024-07-25T00:45:30.010000"],["2024-07-25T00:45:31.010000"],["2024-07-25T00:45:32.010000"],["2024-07-25T00:45:33.010000"],["2024-07-25T00:45:34.010000"],["2024-07-25T00:45:35.010000"],["2024-07-25T00:45:36.010000"],["2024-07-25T00:45:37.010000"],["2024-07-25T00:45:38.010000"],["2024-07-25T00:45:39.010000"],["2024-07-25T00:45:40.010000"],["2024-07-25T00:45:41.010000"],["2024-07-25T00:45:42.010000"],["2024-07-25T00:45:43.010000"],["2024-07-25T00:45:44.010000"],["2024-07-25T00:45:45.010000"],["2024-07-25T00:45:46.010000"],["2024-07-25T00:45:47.010000"],["2024-07-25T00:45:48.010000"],["2024-07-25T00:45:49.010000"],["2024-07-25T00:45:50.010000"],["2024-07-25T00:45:51.010000"],["2024-07-25T00:45:52.010000"],["2024-07-25T00:45:53.010000"],["2024-07-25T00:45:54.010000"],["2024-07-25T00:45:55.010000"],["2024-07-25T00:45:56.010000"],["2024-07-25T00:45:57.010000"],["2024-07-25T00:45:58.010000"],["2024-07-25T00:45:59.010000"],["2024-07-25T00:46:00.010000"],["2024-07-25T00:46:01.010000"],["2024-07-25T00:46:02.010000"],["2024-07-25T00:46:03.010000"],["2024-07-25T00:46:04.010000"],["2024-07-25T00:46:05.010000"],["2024-07-25T00:46:06.010000"],["2024-07-25T00:46:07.010000"],["2024-07-25T00:46:08.010000"],["2024-07-25T00:46:09.010000"],["2024-07-25T00:46:10.010000"],["2024-07-25T00:46:11.010000"],["2024-07-25T00:46:12.010000"],["2024-07-25T00:46:13.010000"],["2024-07-25T00:46:14.010000"],["2024-07-25T00:46:15.010000"],["2024-07-25T00:46:16.010000"],["2024-07-25T00:46:17.010000"],["2024-07-25T00:46:18.010000"],["2024-07-25T00:46:19.010000"],["2024-07-25T00:46:20.010000"],["2024-07-25T00:46:21.010000"],["2024-07-25T00:46:22.010000"],["2024-07-25T00:46:23.010000"],["2024-07-25T00:46:24.010000"],["2024-07-25T00:46:25.010000"],["2024-07-25T00:46:26.010000"],["2024-07-25T00:46:27.010000"],["2024-07-25T00:46:28.010000"],["2024-07-25T00:46:29.010000"],["2024-07-25T00:46:30.010000"],["2024-07-25T00:46:31.010000"],["2024-07-25T00:46:32.010000"],["2024-07-25T00:46:33.010000"],["2024-07-25T00:46:34.010000"],["2024-07-25T00:46:35.010000"],["2024-07-25T00:46:36.010000"],["2024-07-25T00:46:37.010000"],["2024-07-25T00:46:38.010000"],["2024-07-25T00:46:39.010000"],["2024-07-25T00:46:40.010000"],["2024-07-25T00:46:41.010000"],["2024-07-25T00:46:42.010000"],["2024-07-25T00:46:43.010000"],["2024-07-25T00:46:44.010000"],["2024-07-25T00:46:45.010000"],["2024-07-25T00:46:46.010000"],["2024-07-25T00:46:47.010000"],["2024-07-25T00:46:48.010000"],["2024-07-25T00:46:49.010000"],["2024-07-25T00:46:50.010000"],["2024-07-25T00:46:51.010000"],["2024-07-25T00:46:52.010000"],["2024-07-25T00:46:53.010000"],["2024-07-25T00:46:54.010000"],["2024-07-25T00:46:55.010000"],["2024-07-25T00:46:56.010000"],["2024-07-25T00:46:57.010000"],["2024-07-25T00:46:58.010000"],["2024-07-25T00:46:59.010000"],["2024-07-25T00:47:00.010000"],["2024-07-25T00:47:01.010000"],["2024-07-25T00:47:02.010000"],["2024-07-25T00:47:03.010000"],["2024-07-25T00:47:04.010000"],["2024-07-25T00:47:05.010000"],["2024-07-25T00:47:06.010000"],["2024-07-25T00:47:07.010000"],["2024-07-25T00:47:08.010000"],["2024-07-25T00:47:09.010000"],["2024-07-25T00:47:10.010000"],["2024-07-25T00:47:11.010000"],["2024-07-25T00:47:12.010000"],["2024-07-25T00:47:13.010000"],["2024-07-25T00:47:14.010000"],["2024-07-25T00:47:15.010000"],["2024-07-25T00:47:16.010000"],["2024-07-25T00:47:17.010000"],["2024-07-25T00:47:18.010000"],["2024-07-25T00:47:19.010000"],["2024-07-25T00:47:20.010000"],["2024-07-25T00:47:21.010000"],["2024-07-25T00:47:22.010000"],["2024-07-25T00:47:23.010000"],["2024-07-25T00:47:24.010000"],["2024-07-25T00:47:25.010000"],["2024-07-25T00:47:26.010000"],["2024-07-25T00:47:27.010000"],["2024-07-25T00:47:28.010000"],["2024-07-25T00:47:29.010000"],["2024-07-25T00:47:30.010000"],["2024-07-25T00:47:31.010000"],["2024-07-25T00:47:32.010000"],["2024-07-25T00:47:33.010000"],["2024-07-25T00:47:34.010000"],["2024-07-25T00:47:35.010000"],["2024-07-25T00:47:36.010000"],["2024-07-25T00:47:37.010000"],["2024-07-25T00:47:38.010000"],["2024-07-25T00:47:39.010000"],["2024-07-25T00:47:40.010000"],["2024-07-25T00:47:41.010000"],["2024-07-25T00:47:42.010000"],["2024-07-25T00:47:43.010000"],["2024-07-25T00:47:44.010000"],["2024-07-25T00:47:45.010000"],["2024-07-25T00:47:46.010000"],["2024-07-25T00:47:47.010000"],["2024-07-25T00:47:48.010000"],["2024-07-25T00:47:49.010000"],["2024-07-25T00:47:50.010000"],["2024-07-25T00:47:51.010000"],["2024-07-25T00:47:52.010000"],["2024-07-25T00:47:53.010000"],["2024-07-25T00:47:54.010000"],["2024-07-25T00:47:55.010000"],["2024-07-25T00:47:56.010000"],["2024-07-25T00:47:57.010000"],["2024-07-25T00:47:58.010000"],["2024-07-25T00:47:59.010000"],["2024-07-25T00:48:00.010000"],["2024-07-25T00:48:01.010000"],["2024-07-25T00:48:02.010000"],["2024-07-25T00:48:03.010000"],["2024-07-25T00:48:04.010000"],["2024-07-25T00:48:05.010000"],["2024-07-25T00:48:06.010000"],["2024-07-25T00:48:07.010000"],["2024-07-25T00:48:08.010000"],["2024-07-25T00:48:09.010000"],["2024-07-25T00:48:10.010000"],["2024-07-25T00:48:11.010000"],["2024-07-25T00:48:12.010000"],["2024-07-25T00:48:13.010000"],["2024-07-25T00:48:14.010000"],["2024-07-25T00:48:15.010000"],["2024-07-25T00:48:16.010000"],["2024-07-25T00:48:17.010000"],["2024-07-25T00:48:18.010000"],["2024-07-25T00:48:19.010000"],["2024-07-25T00:48:20.010000"],["2024-07-25T00:48:21.010000"],["2024-07-25T00:48:22.010000"],["2024-07-25T00:48:23.010000"],["2024-07-25T00:48:24.010000"],["2024-07-25T00:48:25.010000"],["2024-07-25T00:48:26.010000"],["2024-07-25T00:48:27.010000"],["2024-07-25T00:48:28.010000"],["2024-07-25T00:48:29.010000"],["2024-07-25T00:48:30.010000"],["2024-07-25T00:48:31.010000"],["2024-07-25T00:48:32.010000"],["2024-07-25T00:48:33.010000"],["2024-07-25T00:48:34.010000"],["2024-07-25T00:48:35.010000"],["2024-07-25T00:48:36.010000"],["2024-07-25T00:48:37.010000"],["2024-07-25T00:48:38.010000"],["2024-07-25T00:48:39.010000"],["2024-07-25T00:48:40.010000"],["2024-07-25T00:48:41.010000"],["2024-07-25T00:48:42.010000"],["2024-07-25T00:48:43.010000"],["2024-07-25T00:48:44.010000"],["2024-07-25T00:48:45.010000"],["2024-07-25T00:48:46.010000"],["2024-07-25T00:48:47.010000"],["2024-07-25T00:48:48.010000"],["2024-07-25T00:48:49.010000"],["2024-07-25T00:48:50.010000"],["2024-07-25T00:48:51.010000"],["2024-07-25T00:48:52.010000"],["2024-07-25T00:48:53.010000"],["2024-07-25T00:48:54.010000"],["2024-07-25T00:48:55.010000"],["2024-07-25T00:48:56.010000"],["2024-07-25T00:48:57.010000"],["2024-07-25T00:48:58.010000"],["2024-07-25T00:48:59.010000"],["2024-07-25T00:49:00.010000"],["2024-07-25T00:49:01.010000"],["2024-07-25T00:49:02.010000"],["2024-07-25T00:49:03.010000"],["2024-07-25T00:49:04.010000"],["2024-07-25T00:49:05.010000"],["2024-07-25T00:49:06.010000"],["2024-07-25T00:49:07.010000"],["2024-07-25T00:49:08.010000"],["2024-07-25T00:49:09.010000"],["2024-07-25T00:49:10.010000"],["2024-07-25T00:49:11.010000"],["2024-07-25T00:49:12.010000"],["2024-07-25T00:49:13.010000"],["2024-07-25T00:49:14.010000"],["2024-07-25T00:49:15.010000"],["2024-07-25T00:49:16.010000"],["2024-07-25T00:49:17.010000"],["2024-07-25T00:49:18.010000"],["2024-07-25T00:49:19.010000"],["2024-07-25T00:49:20.010000"],["2024-07-25T00:49:21.010000"],["2024-07-25T00:49:22.010000"],["2024-07-25T00:49:23.010000"],["2024-07-25T00:49:24.010000"],["2024-07-25T00:49:25.010000"],["2024-07-25T00:49:26.010000"],["2024-07-25T00:49:27.010000"],["2024-07-25T00:49:28.010000"],["2024-07-25T00:49:29.010000"],["2024-07-25T00:49:30.010000"],["2024-07-25T00:49:31.010000"],["2024-07-25T00:49:32.010000"],["2024-07-25T00:49:33.010000"],["2024-07-25T00:49:34.010000"],["2024-07-25T00:49:35.010000"],["2024-07-25T00:49:36.010000"],["2024-07-25T00:49:37.010000"],["2024-07-25T00:49:38.010000"],["2024-07-25T00:49:39.010000"],["2024-07-25T00:49:40.010000"],["2024-07-25T00:49:41.010000"],["2024-07-25T00:49:42.010000"],["2024-07-25T00:49:43.010000"],["2024-07-25T00:49:44.010000"],["2024-07-25T00:49:45.010000"],["2024-07-25T00:49:46.010000"],["2024-07-25T00:49:47.010000"],["2024-07-25T00:49:48.010000"],["2024-07-25T00:49:49.010000"],["2024-07-25T00:49:50.010000"],["2024-07-25T00:49:51.010000"],["2024-07-25T00:49:52.010000"],["2024-07-25T00:49:53.010000"],["2024-07-25T00:49:54.010000"],["2024-07-25T00:49:55.010000"],["2024-07-25T00:49:56.010000"],["2024-07-25T00:49:57.010000"],["2024-07-25T00:49:58.010000"],["2024-07-25T00:49:59.010000"],["2024-07-25T00:50:00.010000"],["2024-07-25T00:50:01.010000"],["2024-07-25T00:50:02.010000"],["2024-07-25T00:50:03.010000"],["2024-07-25T00:50:04.010000"],["2024-07-25T00:50:05.010000"],["2024-07-25T00:50:06.010000"],["2024-07-25T00:50:07.010000"],["2024-07-25T00:50:08.010000"],["2024-07-25T00:50:09.010000"],["2024-07-25T00:50:10.010000"],["2024-07-25T00:50:11.010000"],["2024-07-25T00:50:12.010000"],["2024-07-25T00:50:13.010000"],["2024-07-25T00:50:14.010000"],["2024-07-25T00:50:15.010000"],["2024-07-25T00:50:16.010000"],["2024-07-25T00:50:17.010000"],["2024-07-25T00:50:18.010000"],["2024-07-25T00:50:19.010000"],["2024-07-25T00:50:20.010000"],["2024-07-25T00:50:21.010000"],["2024-07-25T00:50:22.010000"],["2024-07-25T00:50:23.010000"],["2024-07-25T00:50:24.010000"],["2024-07-25T00:50:25.010000"],["2024-07-25T00:50:26.010000"],["2024-07-25T00:50:27.010000"],["2024-07-25T00:50:28.010000"],["2024-07-25T00:50:29.010000"],["2024-07-25T00:50:30.010000"],["2024-07-25T00:50:31.010000"],["2024-07-25T00:50:32.010000"],["2024-07-25T00:50:33.010000"],["2024-07-25T00:50:34.010000"],["2024-07-25T00:50:35.010000"],["2024-07-25T00:50:36.010000"],["2024-07-25T00:50:37.010000"],["2024-07-25T00:50:38.010000"],["2024-07-25T00:50:39.010000"],["2024-07-25T00:50:40.010000"],["2024-07-25T00:50:41.010000"],["2024-07-25T00:50:42.010000"],["2024-07-25T00:50:43.010000"],["2024-07-25T00:50:44.010000"],["2024-07-25T00:50:45.010000"],["2024-07-25T00:50:46.010000"],["2024-07-25T00:50:47.010000"],["2024-07-25T00:50:48.010000"],["2024-07-25T00:50:49.010000"],["2024-07-25T00:50:50.010000"],["2024-07-25T00:50:51.010000"],["2024-07-25T00:50:52.010000"],["2024-07-25T00:50:53.010000"],["2024-07-25T00:50:54.010000"],["2024-07-25T00:50:55.010000"],["2024-07-25T00:50:56.010000"],["2024-07-25T00:50:57.010000"],["2024-07-25T00:50:58.010000"],["2024-07-25T00:50:59.010000"],["2024-07-25T00:51:00.010000"],["2024-07-25T00:51:01.010000"],["2024-07-25T00:51:02.010000"],["2024-07-25T00:51:03.010000"],["2024-07-25T00:51:04.010000"],["2024-07-25T00:51:05.010000"],["2024-07-25T00:51:06.010000"],["2024-07-25T00:51:07.010000"],["2024-07-25T00:51:08.010000"],["2024-07-25T00:51:09.010000"],["2024-07-25T00:51:10.010000"],["2024-07-25T00:51:11.010000"],["2024-07-25T00:51:12.010000"],["2024-07-25T00:51:13.010000"],["2024-07-25T00:51:14.010000"],["2024-07-25T00:51:15.010000"],["2024-07-25T00:51:16.010000"],["2024-07-25T00:51:17.010000"],["2024-07-25T00:51:18.010000"],["2024-07-25T00:51:19.010000"],["2024-07-25T00:51:20.010000"],["2024-07-25T00:51:21.010000"],["2024-07-25T00:51:22.010000"],["2024-07-25T00:51:23.010000"],["2024-07-25T00:51:24.010000"],["2024-07-25T00:51:25.010000"],["2024-07-25T00:51:26.010000"],["2024-07-25T00:51:27.010000"],["2024-07-25T00:51:28.010000"],["2024-07-25T00:51:29.010000"],["2024-07-25T00:51:30.010000"],["2024-07-25T00:51:31.010000"],["2024-07-25T00:51:32.010000"],["2024-07-25T00:51:33.010000"],["2024-07-25T00:51:34.010000"],["2024-07-25T00:51:35.010000"],["2024-07-25T00:51:36.010000"],["2024-07-25T00:51:37.010000"],["2024-07-25T00:51:38.010000"],["2024-07-25T00:51:39.010000"],["2024-07-25T00:51:40.010000"],["2024-07-25T00:51:41.010000"],["2024-07-25T00:51:42.010000"],["2024-07-25T00:51:43.010000"],["2024-07-25T00:51:44.010000"],["2024-07-25T00:51:45.010000"],["2024-07-25T00:51:46.010000"],["2024-07-25T00:51:47.010000"],["2024-07-25T00:51:48.010000"],["2024-07-25T00:51:49.010000"],["2024-07-25T00:51:50.010000"],["2024-07-25T00:51:51.010000"],["2024-07-25T00:51:52.010000"],["2024-07-25T00:51:53.010000"],["2024-07-25T00:51:54.010000"],["2024-07-25T00:51:55.010000"],["2024-07-25T00:51:56.010000"],["2024-07-25T00:51:57.010000"],["2024-07-25T00:51:58.010000"],["2024-07-25T00:51:59.010000"],["2024-07-25T00:52:00.010000"],["2024-07-25T00:52:01.010000"],["2024-07-25T00:52:02.010000"],["2024-07-25T00:52:03.010000"],["2024-07-25T00:52:04.010000"],["2024-07-25T00:52:05.010000"],["2024-07-25T00:52:06.010000"],["2024-07-25T00:52:07.010000"],["2024-07-25T00:52:08.010000"],["2024-07-25T00:52:09.010000"],["2024-07-25T00:52:10.010000"],["2024-07-25T00:52:11.010000"],["2024-07-25T00:52:12.010000"],["2024-07-25T00:52:13.010000"],["2024-07-25T00:52:14.010000"],["2024-07-25T00:52:15.010000"],["2024-07-25T00:52:16.010000"],["2024-07-25T00:52:17.010000"],["2024-07-25T00:52:18.010000"],["2024-07-25T00:52:19.010000"],["2024-07-25T00:52:20.010000"],["2024-07-25T00:52:21.010000"],["2024-07-25T00:52:22.010000"],["2024-07-25T00:52:23.010000"],["2024-07-25T00:52:24.010000"],["2024-07-25T00:52:25.010000"],["2024-07-25T00:52:26.010000"],["2024-07-25T00:52:27.010000"],["2024-07-25T00:52:28.010000"],["2024-07-25T00:52:29.010000"],["2024-07-25T00:52:30.010000"],["2024-07-25T00:52:31.010000"],["2024-07-25T00:52:32.010000"],["2024-07-25T00:52:33.010000"],["2024-07-25T00:52:34.010000"],["2024-07-25T00:52:35.010000"],["2024-07-25T00:52:36.010000"],["2024-07-25T00:52:37.010000"],["2024-07-25T00:52:38.010000"],["2024-07-25T00:52:39.010000"],["2024-07-25T00:52:40.010000"],["2024-07-25T00:52:41.010000"],["2024-07-25T00:52:42.010000"],["2024-07-25T00:52:43.010000"],["2024-07-25T00:52:44.010000"],["2024-07-25T00:52:45.010000"],["2024-07-25T00:52:46.010000"],["2024-07-25T00:52:47.010000"],["2024-07-25T00:52:48.010000"],["2024-07-25T00:52:49.010000"],["2024-07-25T00:52:50.010000"],["2024-07-25T00:52:51.010000"],["2024-07-25T00:52:52.010000"],["2024-07-25T00:52:53.010000"],["2024-07-25T00:52:54.010000"],["2024-07-25T00:52:55.010000"],["2024-07-25T00:52:56.010000"],["2024-07-25T00:52:57.010000"],["2024-07-25T00:52:58.010000"],["2024-07-25T00:52:59.010000"],["2024-07-25T00:53:00.010000"],["2024-07-25T00:53:01.010000"],["2024-07-25T00:53:02.010000"],["2024-07-25T00:53:03.010000"],["2024-07-25T00:53:04.010000"],["2024-07-25T00:53:05.010000"],["2024-07-25T00:53:06.010000"],["2024-07-25T00:53:07.010000"],["2024-07-25T00:53:08.010000"],["2024-07-25T00:53:09.010000"],["2024-07-25T00:53:10.010000"],["2024-07-25T00:53:11.010000"],["2024-07-25T00:53:12.010000"],["2024-07-25T00:53:13.010000"],["2024-07-25T00:53:14.010000"],["2024-07-25T00:53:15.010000"],["2024-07-25T00:53:16.010000"],["2024-07-25T00:53:17.010000"],["2024-07-25T00:53:18.010000"],["2024-07-25T00:53:19.010000"],["2024-07-25T00:53:20.010000"],["2024-07-25T00:53:21.010000"],["2024-07-25T00:53:22.010000"],["2024-07-25T00:53:23.010000"],["2024-07-25T00:53:24.010000"],["2024-07-25T00:53:25.010000"],["2024-07-25T00:53:26.010000"],["2024-07-25T00:53:27.010000"],["2024-07-25T00:53:28.010000"],["2024-07-25T00:53:29.010000"],["2024-07-25T00:53:30.010000"],["2024-07-25T00:53:31.010000"],["2024-07-25T00:53:32.010000"],["2024-07-25T00:53:33.010000"],["2024-07-25T00:53:34.010000"],["2024-07-25T00:53:35.010000"],["2024-07-25T00:53:36.010000"],["2024-07-25T00:53:37.010000"],["2024-07-25T00:53:38.010000"],["2024-07-25T00:53:39.010000"],["2024-07-25T00:53:40.010000"],["2024-07-25T00:53:41.010000"],["2024-07-25T00:53:42.010000"],["2024-07-25T00:53:43.010000"],["2024-07-25T00:53:44.010000"],["2024-07-25T00:53:45.010000"],["2024-07-25T00:53:46.010000"],["2024-07-25T00:53:47.010000"],["2024-07-25T00:53:48.010000"],["2024-07-25T00:53:49.010000"],["2024-07-25T00:53:50.010000"],["2024-07-25T00:53:51.010000"],["2024-07-25T00:53:52.010000"],["2024-07-25T00:53:53.010000"],["2024-07-25T00:53:54.010000"],["2024-07-25T00:53:55.010000"],["2024-07-25T00:53:56.010000"],["2024-07-25T00:53:57.010000"],["2024-07-25T00:53:58.010000"],["2024-07-25T00:53:59.010000"],["2024-07-25T00:54:00.010000"],["2024-07-25T00:54:01.010000"],["2024-07-25T00:54:02.010000"],["2024-07-25T00:54:03.010000"],["2024-07-25T00:54:04.010000"],["2024-07-25T00:54:05.010000"],["2024-07-25T00:54:06.010000"],["2024-07-25T00:54:07.010000"],["2024-07-25T00:54:08.010000"],["2024-07-25T00:54:09.010000"],["2024-07-25T00:54:10.010000"],["2024-07-25T00:54:11.010000"],["2024-07-25T00:54:12.010000"],["2024-07-25T00:54:13.010000"],["2024-07-25T00:54:14.010000"],["2024-07-25T00:54:15.010000"],["2024-07-25T00:54:16.010000"],["2024-07-25T00:54:17.010000"],["2024-07-25T00:54:18.010000"],["2024-07-25T00:54:19.010000"],["2024-07-25T00:54:20.010000"],["2024-07-25T00:54:21.010000"],["2024-07-25T00:54:22.010000"],["2024-07-25T00:54:23.010000"],["2024-07-25T00:54:24.010000"],["2024-07-25T00:54:25.010000"],["2024-07-25T00:54:26.010000"],["2024-07-25T00:54:27.010000"],["2024-07-25T00:54:28.010000"],["2024-07-25T00:54:29.010000"],["2024-07-25T00:54:30.010000"],["2024-07-25T00:54:31.010000"],["2024-07-25T00:54:32.010000"],["2024-07-25T00:54:33.010000"],["2024-07-25T00:54:34.010000"],["2024-07-25T00:54:35.010000"],["2024-07-25T00:54:36.010000"],["2024-07-25T00:54:37.010000"],["2024-07-25T00:54:38.010000"],["2024-07-25T00:54:39.010000"],["2024-07-25T00:54:40.010000"],["2024-07-25T00:54:41.010000"],["2024-07-25T00:54:42.010000"],["2024-07-25T00:54:43.010000"],["2024-07-25T00:54:44.010000"],["2024-07-25T00:54:45.010000"],["2024-07-25T00:54:46.010000"],["2024-07-25T00:54:47.010000"],["2024-07-25T00:54:48.010000"],["2024-07-25T00:54:49.010000"],["2024-07-25T00:54:50.010000"],["2024-07-25T00:54:51.010000"],["2024-07-25T00:54:52.010000"],["2024-07-25T00:54:53.010000"],["2024-07-25T00:54:54.010000"],["2024-07-25T00:54:55.010000"],["2024-07-25T00:54:56.010000"],["2024-07-25T00:54:57.010000"],["2024-07-25T00:54:58.010000"],["2024-07-25T00:54:59.010000"],["2024-07-25T00:55:00.010000"],["2024-07-25T00:55:01.010000"],["2024-07-25T00:55:02.010000"],["2024-07-25T00:55:03.010000"],["2024-07-25T00:55:04.010000"],["2024-07-25T00:55:05.010000"],["2024-07-25T00:55:06.010000"],["2024-07-25T00:55:07.010000"],["2024-07-25T00:55:08.010000"],["2024-07-25T00:55:09.010000"],["2024-07-25T00:55:10.010000"],["2024-07-25T00:55:11.010000"],["2024-07-25T00:55:12.010000"],["2024-07-25T00:55:13.010000"],["2024-07-25T00:55:14.010000"],["2024-07-25T00:55:15.010000"],["2024-07-25T00:55:16.010000"],["2024-07-25T00:55:17.010000"],["2024-07-25T00:55:18.010000"],["2024-07-25T00:55:19.010000"],["2024-07-25T00:55:20.010000"],["2024-07-25T00:55:21.010000"],["2024-07-25T00:55:22.010000"],["2024-07-25T00:55:23.010000"],["2024-07-25T00:55:24.010000"],["2024-07-25T00:55:25.010000"],["2024-07-25T00:55:26.010000"],["2024-07-25T00:55:27.010000"],["2024-07-25T00:55:28.010000"],["2024-07-25T00:55:29.010000"],["2024-07-25T00:55:30.010000"],["2024-07-25T00:55:31.010000"],["2024-07-25T00:55:32.010000"],["2024-07-25T00:55:33.010000"],["2024-07-25T00:55:34.010000"],["2024-07-25T00:55:35.010000"],["2024-07-25T00:55:36.010000"],["2024-07-25T00:55:37.010000"],["2024-07-25T00:55:38.010000"],["2024-07-25T00:55:39.010000"],["2024-07-25T00:55:40.010000"],["2024-07-25T00:55:41.010000"],["2024-07-25T00:55:42.010000"],["2024-07-25T00:55:43.010000"],["2024-07-25T00:55:44.010000"],["2024-07-25T00:55:45.010000"],["2024-07-25T00:55:46.010000"],["2024-07-25T00:55:47.010000"],["2024-07-25T00:55:48.010000"],["2024-07-25T00:55:49.010000"],["2024-07-25T00:55:50.010000"],["2024-07-25T00:55:51.010000"],["2024-07-25T00:55:52.010000"],["2024-07-25T00:55:53.010000"],["2024-07-25T00:55:54.010000"],["2024-07-25T00:55:55.010000"],["2024-07-25T00:55:56.010000"],["2024-07-25T00:55:57.010000"],["2024-07-25T00:55:58.010000"],["2024-07-25T00:55:59.010000"],["2024-07-25T00:56:00.010000"],["2024-07-25T00:56:01.010000"],["2024-07-25T00:56:02.010000"],["2024-07-25T00:56:03.010000"],["2024-07-25T00:56:04.010000"],["2024-07-25T00:56:05.010000"],["2024-07-25T00:56:06.010000"],["2024-07-25T00:56:07.010000"],["2024-07-25T00:56:08.010000"],["2024-07-25T00:56:09.010000"],["2024-07-25T00:56:10.010000"],["2024-07-25T00:56:11.010000"],["2024-07-25T00:56:12.010000"],["2024-07-25T00:56:13.010000"],["2024-07-25T00:56:14.010000"],["2024-07-25T00:56:15.010000"],["2024-07-25T00:56:16.010000"],["2024-07-25T00:56:17.010000"],["2024-07-25T00:56:18.010000"],["2024-07-25T00:56:19.010000"],["2024-07-25T00:56:20.010000"],["2024-07-25T00:56:21.010000"],["2024-07-25T00:56:22.010000"],["2024-07-25T00:56:23.010000"],["2024-07-25T00:56:24.010000"],["2024-07-25T00:56:25.010000"],["2024-07-25T00:56:26.010000"],["2024-07-25T00:56:27.010000"],["2024-07-25T00:56:28.010000"],["2024-07-25T00:56:29.010000"],["2024-07-25T00:56:30.010000"],["2024-07-25T00:56:31.010000"],["2024-07-25T00:56:32.010000"],["2024-07-25T00:56:33.010000"],["2024-07-25T00:56:34.010000"],["2024-07-25T00:56:35.010000"],["2024-07-25T00:56:36.010000"],["2024-07-25T00:56:37.010000"],["2024-07-25T00:56:38.010000"],["2024-07-25T00:56:39.010000"],["2024-07-25T00:56:40.010000"],["2024-07-25T00:56:41.010000"],["2024-07-25T00:56:42.010000"],["2024-07-25T00:56:43.010000"],["2024-07-25T00:56:44.010000"],["2024-07-25T00:56:45.010000"],["2024-07-25T00:56:46.010000"],["2024-07-25T00:56:47.010000"],["2024-07-25T00:56:48.010000"],["2024-07-25T00:56:49.010000"],["2024-07-25T00:56:50.010000"],["2024-07-25T00:56:51.010000"],["2024-07-25T00:56:52.010000"],["2024-07-25T00:56:53.010000"],["2024-07-25T00:56:54.010000"],["2024-07-25T00:56:55.010000"],["2024-07-25T00:56:56.010000"],["2024-07-25T00:56:57.010000"],["2024-07-25T00:56:58.010000"],["2024-07-25T00:56:59.010000"],["2024-07-25T00:57:00.010000"],["2024-07-25T00:57:01.010000"],["2024-07-25T00:57:02.010000"],["2024-07-25T00:57:03.010000"],["2024-07-25T00:57:04.010000"],["2024-07-25T00:57:05.010000"],["2024-07-25T00:57:06.010000"],["2024-07-25T00:57:07.010000"],["2024-07-25T00:57:08.010000"],["2024-07-25T00:57:09.010000"],["2024-07-25T00:57:10.010000"],["2024-07-25T00:57:11.010000"],["2024-07-25T00:57:12.010000"],["2024-07-25T00:57:13.010000"],["2024-07-25T00:57:14.010000"],["2024-07-25T00:57:15.010000"],["2024-07-25T00:57:16.010000"],["2024-07-25T00:57:17.010000"],["2024-07-25T00:57:18.010000"],["2024-07-25T00:57:19.010000"],["2024-07-25T00:57:20.010000"],["2024-07-25T00:57:21.010000"],["2024-07-25T00:57:22.010000"],["2024-07-25T00:57:23.010000"],["2024-07-25T00:57:24.010000"],["2024-07-25T00:57:25.010000"],["2024-07-25T00:57:26.010000"],["2024-07-25T00:57:27.010000"],["2024-07-25T00:57:28.010000"],["2024-07-25T00:57:29.010000"],["2024-07-25T00:57:30.010000"],["2024-07-25T00:57:31.010000"],["2024-07-25T00:57:32.010000"],["2024-07-25T00:57:33.010000"],["2024-07-25T00:57:34.010000"],["2024-07-25T00:57:35.010000"],["2024-07-25T00:57:36.010000"],["2024-07-25T00:57:37.010000"],["2024-07-25T00:57:38.010000"],["2024-07-25T00:57:39.010000"],["2024-07-25T00:57:40.010000"],["2024-07-25T00:57:41.010000"],["2024-07-25T00:57:42.010000"],["2024-07-25T00:57:43.010000"],["2024-07-25T00:57:44.010000"],["2024-07-25T00:57:45.010000"],["2024-07-25T00:57:46.010000"],["2024-07-25T00:57:47.010000"],["2024-07-25T00:57:48.010000"],["2024-07-25T00:57:49.010000"],["2024-07-25T00:57:50.010000"],["2024-07-25T00:57:51.010000"],["2024-07-25T00:57:52.010000"],["2024-07-25T00:57:53.010000"],["2024-07-25T00:57:54.010000"],["2024-07-25T00:57:55.010000"],["2024-07-25T00:57:56.010000"],["2024-07-25T00:57:57.010000"],["2024-07-25T00:57:58.010000"],["2024-07-25T00:57:59.010000"],["2024-07-25T00:58:00.010000"],["2024-07-25T00:58:01.010000"],["2024-07-25T00:58:02.010000"],["2024-07-25T00:58:03.010000"],["2024-07-25T00:58:04.010000"],["2024-07-25T00:58:05.010000"],["2024-07-25T00:58:06.010000"],["2024-07-25T00:58:07.010000"],["2024-07-25T00:58:08.010000"],["2024-07-25T00:58:09.010000"],["2024-07-25T00:58:10.010000"],["2024-07-25T00:58:11.010000"],["2024-07-25T00:58:12.010000"],["2024-07-25T00:58:13.010000"],["2024-07-25T00:58:14.010000"],["2024-07-25T00:58:15.010000"],["2024-07-25T00:58:16.010000"],["2024-07-25T00:58:17.010000"],["2024-07-25T00:58:18.010000"],["2024-07-25T00:58:19.010000"],["2024-07-25T00:58:20.010000"],["2024-07-25T00:58:21.010000"],["2024-07-25T00:58:22.010000"],["2024-07-25T00:58:23.010000"],["2024-07-25T00:58:24.010000"],["2024-07-25T00:58:25.010000"],["2024-07-25T00:58:26.010000"],["2024-07-25T00:58:27.010000"],["2024-07-25T00:58:28.010000"],["2024-07-25T00:58:29.010000"],["2024-07-25T00:58:30.010000"],["2024-07-25T00:58:31.010000"],["2024-07-25T00:58:32.010000"],["2024-07-25T00:58:33.010000"],["2024-07-25T00:58:34.010000"],["2024-07-25T00:58:35.010000"],["2024-07-25T00:58:36.010000"],["2024-07-25T00:58:37.010000"],["2024-07-25T00:58:38.010000"],["2024-07-25T00:58:39.010000"],["2024-07-25T00:58:40.010000"],["2024-07-25T00:58:41.010000"],["2024-07-25T00:58:42.010000"],["2024-07-25T00:58:43.010000"],["2024-07-25T00:58:44.010000"],["2024-07-25T00:58:45.010000"],["2024-07-25T00:58:46.010000"],["2024-07-25T00:58:47.010000"],["2024-07-25T00:58:48.010000"],["2024-07-25T00:58:49.010000"],["2024-07-25T00:58:50.010000"],["2024-07-25T00:58:51.010000"],["2024-07-25T00:58:52.010000"],["2024-07-25T00:58:53.010000"],["2024-07-25T00:58:54.010000"],["2024-07-25T00:58:55.010000"],["2024-07-25T00:58:56.010000"],["2024-07-25T00:58:57.010000"],["2024-07-25T00:58:58.010000"],["2024-07-25T00:58:59.010000"],["2024-07-25T00:59:00.010000"],["2024-07-25T00:59:01.010000"],["2024-07-25T00:59:02.010000"],["2024-07-25T00:59:03.010000"],["2024-07-25T00:59:04.010000"],["2024-07-25T00:59:05.010000"],["2024-07-25T00:59:06.010000"],["2024-07-25T00:59:07.010000"],["2024-07-25T00:59:08.010000"],["2024-07-25T00:59:09.010000"],["2024-07-25T00:59:10.010000"],["2024-07-25T00:59:11.010000"],["2024-07-25T00:59:12.010000"],["2024-07-25T00:59:13.010000"],["2024-07-25T00:59:14.010000"],["2024-07-25T00:59:15.010000"],["2024-07-25T00:59:16.010000"],["2024-07-25T00:59:17.010000"],["2024-07-25T00:59:18.010000"],["2024-07-25T00:59:19.010000"],["2024-07-25T00:59:20.010000"],["2024-07-25T00:59:21.010000"],["2024-07-25T00:59:22.010000"],["2024-07-25T00:59:23.010000"],["2024-07-25T00:59:24.010000"],["2024-07-25T00:59:25.010000"],["2024-07-25T00:59:26.010000"],["2024-07-25T00:59:27.010000"],["2024-07-25T00:59:28.010000"],["2024-07-25T00:59:29.010000"],["2024-07-25T00:59:30.010000"],["2024-07-25T00:59:31.010000"],["2024-07-25T00:59:32.010000"],["2024-07-25T00:59:33.010000"],["2024-07-25T00:59:34.010000"],["2024-07-25T00:59:35.010000"],["2024-07-25T00:59:36.010000"],["2024-07-25T00:59:37.010000"],["2024-07-25T00:59:38.010000"],["2024-07-25T00:59:39.010000"],["2024-07-25T00:59:40.010000"],["2024-07-25T00:59:41.010000"],["2024-07-25T00:59:42.010000"],["2024-07-25T00:59:43.010000"],["2024-07-25T00:59:44.010000"],["2024-07-25T00:59:45.010000"],["2024-07-25T00:59:46.010000"],["2024-07-25T00:59:47.010000"],["2024-07-25T00:59:48.010000"],["2024-07-25T00:59:49.010000"],["2024-07-25T00:59:50.010000"],["2024-07-25T00:59:51.010000"],["2024-07-25T00:59:52.010000"],["2024-07-25T00:59:53.010000"],["2024-07-25T00:59:54.010000"],["2024-07-25T00:59:55.010000"],["2024-07-25T00:59:56.010000"],["2024-07-25T00:59:57.010000"],["2024-07-25T00:59:58.010000"],["2024-07-25T00:59:59.010000"],["2024-07-25T01:00:00.010000"],["2024-07-25T01:00:01.010000"],["2024-07-25T01:00:02.010000"],["2024-07-25T01:00:03.010000"],["2024-07-25T01:00:04.010000"],["2024-07-25T01:00:05.010000"],["2024-07-25T01:00:06.010000"],["2024-07-25T01:00:07.010000"],["2024-07-25T01:00:08.010000"],["2024-07-25T01:00:09.010000"],["2024-07-25T01:00:10.010000"],["2024-07-25T01:00:11.010000"],["2024-07-25T01:00:12.010000"],["2024-07-25T01:00:13.010000"],["2024-07-25T01:00:14.010000"],["2024-07-25T01:00:15.010000"],["2024-07-25T01:00:16.010000"],["2024-07-25T01:00:17.010000"],["2024-07-25T01:00:18.010000"],["2024-07-25T01:00:19.010000"],["2024-07-25T01:00:20.010000"],["2024-07-25T01:00:21.010000"],["2024-07-25T01:00:22.010000"],["2024-07-25T01:00:23.010000"],["2024-07-25T01:00:24.010000"],["2024-07-25T01:00:25.010000"],["2024-07-25T01:00:26.010000"],["2024-07-25T01:00:27.010000"],["2024-07-25T01:00:28.010000"],["2024-07-25T01:00:29.010000"],["2024-07-25T01:00:30.010000"],["2024-07-25T01:00:31.010000"],["2024-07-25T01:00:32.010000"],["2024-07-25T01:00:33.010000"],["2024-07-25T01:00:34.010000"],["2024-07-25T01:00:35.010000"],["2024-07-25T01:00:36.010000"],["2024-07-25T01:00:37.010000"],["2024-07-25T01:00:38.010000"],["2024-07-25T01:00:39.010000"],["2024-07-25T01:00:40.010000"],["2024-07-25T01:00:41.010000"],["2024-07-25T01:00:42.010000"],["2024-07-25T01:00:43.010000"],["2024-07-25T01:00:44.010000"],["2024-07-25T01:00:45.010000"],["2024-07-25T01:00:46.010000"],["2024-07-25T01:00:47.010000"],["2024-07-25T01:00:48.010000"],["2024-07-25T01:00:49.010000"],["2024-07-25T01:00:50.010000"],["2024-07-25T01:00:51.010000"],["2024-07-25T01:00:52.010000"],["2024-07-25T01:00:53.010000"],["2024-07-25T01:00:54.010000"],["2024-07-25T01:00:55.010000"],["2024-07-25T01:00:56.010000"],["2024-07-25T01:00:57.010000"],["2024-07-25T01:00:58.010000"],["2024-07-25T01:00:59.010000"],["2024-07-25T01:01:00.010000"],["2024-07-25T01:01:01.010000"],["2024-07-25T01:01:02.010000"],["2024-07-25T01:01:03.010000"],["2024-07-25T01:01:04.010000"],["2024-07-25T01:01:05.010000"],["2024-07-25T01:01:06.010000"],["2024-07-25T01:01:07.010000"],["2024-07-25T01:01:08.010000"],["2024-07-25T01:01:09.010000"],["2024-07-25T01:01:10.010000"],["2024-07-25T01:01:11.010000"],["2024-07-25T01:01:12.010000"],["2024-07-25T01:01:13.010000"],["2024-07-25T01:01:14.010000"],["2024-07-25T01:01:15.010000"],["2024-07-25T01:01:16.010000"],["2024-07-25T01:01:17.010000"],["2024-07-25T01:01:18.010000"],["2024-07-25T01:01:19.010000"],["2024-07-25T01:01:20.010000"],["2024-07-25T01:01:21.010000"],["2024-07-25T01:01:22.010000"],["2024-07-25T01:01:23.010000"],["2024-07-25T01:01:24.010000"],["2024-07-25T01:01:25.010000"],["2024-07-25T01:01:26.010000"],["2024-07-25T01:01:27.010000"],["2024-07-25T01:01:28.010000"],["2024-07-25T01:01:29.010000"],["2024-07-25T01:01:30.010000"],["2024-07-25T01:01:31.010000"],["2024-07-25T01:01:32.010000"],["2024-07-25T01:01:33.010000"],["2024-07-25T01:01:34.010000"],["2024-07-25T01:01:35.010000"],["2024-07-25T01:01:36.010000"],["2024-07-25T01:01:37.010000"],["2024-07-25T01:01:38.010000"],["2024-07-25T01:01:39.010000"],["2024-07-25T01:01:40.010000"],["2024-07-25T01:01:41.010000"],["2024-07-25T01:01:42.010000"],["2024-07-25T01:01:43.010000"],["2024-07-25T01:01:44.010000"],["2024-07-25T01:01:45.010000"],["2024-07-25T01:01:46.010000"],["2024-07-25T01:01:47.010000"],["2024-07-25T01:01:48.010000"],["2024-07-25T01:01:49.010000"],["2024-07-25T01:01:50.010000"],["2024-07-25T01:01:51.010000"],["2024-07-25T01:01:52.010000"],["2024-07-25T01:01:53.010000"],["2024-07-25T01:01:54.010000"],["2024-07-25T01:01:55.010000"],["2024-07-25T01:01:56.010000"],["2024-07-25T01:01:57.010000"],["2024-07-25T01:01:58.010000"],["2024-07-25T01:01:59.010000"],["2024-07-25T01:02:00.010000"],["2024-07-25T01:02:01.010000"],["2024-07-25T01:02:02.010000"],["2024-07-25T01:02:03.010000"],["2024-07-25T01:02:04.010000"],["2024-07-25T01:02:05.010000"],["2024-07-25T01:02:06.010000"],["2024-07-25T01:02:07.010000"],["2024-07-25T01:02:08.010000"],["2024-07-25T01:02:09.010000"],["2024-07-25T01:02:10.010000"],["2024-07-25T01:02:11.010000"],["2024-07-25T01:02:12.010000"],["2024-07-25T01:02:13.010000"],["2024-07-25T01:02:14.010000"],["2024-07-25T01:02:15.010000"],["2024-07-25T01:02:16.010000"],["2024-07-25T01:02:17.010000"],["2024-07-25T01:02:18.010000"],["2024-07-25T01:02:19.010000"],["2024-07-25T01:02:20.010000"],["2024-07-25T01:02:21.010000"],["2024-07-25T01:02:22.010000"],["2024-07-25T01:02:23.010000"],["2024-07-25T01:02:24.010000"],["2024-07-25T01:02:25.010000"],["2024-07-25T01:02:26.010000"],["2024-07-25T01:02:27.010000"],["2024-07-25T01:02:28.010000"],["2024-07-25T01:02:29.010000"],["2024-07-25T01:02:30.010000"],["2024-07-25T01:02:31.010000"],["2024-07-25T01:02:32.010000"],["2024-07-25T01:02:33.010000"],["2024-07-25T01:02:34.010000"],["2024-07-25T01:02:35.010000"],["2024-07-25T01:02:36.010000"],["2024-07-25T01:02:37.010000"],["2024-07-25T01:02:38.010000"],["2024-07-25T01:02:39.010000"],["2024-07-25T01:02:40.010000"],["2024-07-25T01:02:41.010000"],["2024-07-25T01:02:42.010000"],["2024-07-25T01:02:43.010000"],["2024-07-25T01:02:44.010000"],["2024-07-25T01:02:45.010000"],["2024-07-25T01:02:46.010000"],["2024-07-25T01:02:47.010000"],["2024-07-25T01:02:48.010000"],["2024-07-25T01:02:49.010000"],["2024-07-25T01:02:50.010000"],["2024-07-25T01:02:51.010000"],["2024-07-25T01:02:52.010000"],["2024-07-25T01:02:53.010000"],["2024-07-25T01:02:54.010000"],["2024-07-25T01:02:55.010000"],["2024-07-25T01:02:56.010000"],["2024-07-25T01:02:57.010000"],["2024-07-25T01:02:58.010000"],["2024-07-25T01:02:59.010000"],["2024-07-25T01:03:00.010000"],["2024-07-25T01:03:01.010000"],["2024-07-25T01:03:02.010000"],["2024-07-25T01:03:03.010000"],["2024-07-25T01:03:04.010000"],["2024-07-25T01:03:05.010000"],["2024-07-25T01:03:06.010000"],["2024-07-25T01:03:07.010000"],["2024-07-25T01:03:08.010000"],["2024-07-25T01:03:09.010000"],["2024-07-25T01:03:10.010000"],["2024-07-25T01:03:11.010000"],["2024-07-25T01:03:12.010000"],["2024-07-25T01:03:13.010000"],["2024-07-25T01:03:14.010000"],["2024-07-25T01:03:15.010000"],["2024-07-25T01:03:16.010000"],["2024-07-25T01:03:17.010000"],["2024-07-25T01:03:18.010000"],["2024-07-25T01:03:19.010000"],["2024-07-25T01:03:20.010000"],["2024-07-25T01:03:21.010000"],["2024-07-25T01:03:22.010000"],["2024-07-25T01:03:23.010000"],["2024-07-25T01:03:24.010000"],["2024-07-25T01:03:25.010000"],["2024-07-25T01:03:26.010000"],["2024-07-25T01:03:27.010000"],["2024-07-25T01:03:28.010000"],["2024-07-25T01:03:29.010000"],["2024-07-25T01:03:30.010000"],["2024-07-25T01:03:31.010000"],["2024-07-25T01:03:32.010000"],["2024-07-25T01:03:33.010000"],["2024-07-25T01:03:34.010000"],["2024-07-25T01:03:35.010000"],["2024-07-25T01:03:36.010000"],["2024-07-25T01:03:37.010000"],["2024-07-25T01:03:38.010000"],["2024-07-25T01:03:39.010000"],["2024-07-25T01:03:40.010000"],["2024-07-25T01:03:41.010000"],["2024-07-25T01:03:42.010000"],["2024-07-25T01:03:43.010000"],["2024-07-25T01:03:44.010000"],["2024-07-25T01:03:45.010000"],["2024-07-25T01:03:46.010000"],["2024-07-25T01:03:47.010000"],["2024-07-25T01:03:48.010000"],["2024-07-25T01:03:49.010000"],["2024-07-25T01:03:50.010000"],["2024-07-25T01:03:51.010000"],["2024-07-25T01:03:52.010000"],["2024-07-25T01:03:53.010000"],["2024-07-25T01:03:54.010000"],["2024-07-25T01:03:55.010000"],["2024-07-25T01:03:56.010000"],["2024-07-25T01:03:57.010000"],["2024-07-25T01:03:58.010000"],["2024-07-25T01:03:59.010000"],["2024-07-25T01:04:00.010000"],["2024-07-25T01:04:01.010000"],["2024-07-25T01:04:02.010000"],["2024-07-25T01:04:03.010000"],["2024-07-25T01:04:04.010000"],["2024-07-25T01:04:05.010000"],["2024-07-25T01:04:06.010000"],["2024-07-25T01:04:07.010000"],["2024-07-25T01:04:08.010000"],["2024-07-25T01:04:09.010000"],["2024-07-25T01:04:10.010000"],["2024-07-25T01:04:11.010000"],["2024-07-25T01:04:12.010000"],["2024-07-25T01:04:13.010000"],["2024-07-25T01:04:14.010000"],["2024-07-25T01:04:15.010000"],["2024-07-25T01:04:16.010000"],["2024-07-25T01:04:17.010000"],["2024-07-25T01:04:18.010000"],["2024-07-25T01:04:19.010000"],["2024-07-25T01:04:20.010000"],["2024-07-25T01:04:21.010000"],["2024-07-25T01:04:22.010000"],["2024-07-25T01:04:23.010000"],["2024-07-25T01:04:24.010000"],["2024-07-25T01:04:25.010000"],["2024-07-25T01:04:26.010000"],["2024-07-25T01:04:27.010000"],["2024-07-25T01:04:28.010000"],["2024-07-25T01:04:29.010000"],["2024-07-25T01:04:30.010000"],["2024-07-25T01:04:31.010000"],["2024-07-25T01:04:32.010000"],["2024-07-25T01:04:33.010000"],["2024-07-25T01:04:34.010000"],["2024-07-25T01:04:35.010000"],["2024-07-25T01:04:36.010000"],["2024-07-25T01:04:37.010000"],["2024-07-25T01:04:38.010000"],["2024-07-25T01:04:39.010000"],["2024-07-25T01:04:40.010000"],["2024-07-25T01:04:41.010000"],["2024-07-25T01:04:42.010000"],["2024-07-25T01:04:43.010000"],["2024-07-25T01:04:44.010000"],["2024-07-25T01:04:45.010000"],["2024-07-25T01:04:46.010000"],["2024-07-25T01:04:47.010000"],["2024-07-25T01:04:48.010000"],["2024-07-25T01:04:49.010000"],["2024-07-25T01:04:50.010000"],["2024-07-25T01:04:51.010000"],["2024-07-25T01:04:52.010000"],["2024-07-25T01:04:53.010000"],["2024-07-25T01:04:54.010000"],["2024-07-25T01:04:55.010000"],["2024-07-25T01:04:56.010000"],["2024-07-25T01:04:57.010000"],["2024-07-25T01:04:58.010000"],["2024-07-25T01:04:59.010000"],["2024-07-25T01:05:00.010000"],["2024-07-25T01:05:01.010000"],["2024-07-25T01:05:02.010000"],["2024-07-25T01:05:03.010000"],["2024-07-25T01:05:04.010000"],["2024-07-25T01:05:05.010000"],["2024-07-25T01:05:06.010000"],["2024-07-25T01:05:07.010000"],["2024-07-25T01:05:08.010000"],["2024-07-25T01:05:09.010000"],["2024-07-25T01:05:10.010000"],["2024-07-25T01:05:11.010000"],["2024-07-25T01:05:12.010000"],["2024-07-25T01:05:13.010000"],["2024-07-25T01:05:14.010000"],["2024-07-25T01:05:15.010000"],["2024-07-25T01:05:16.010000"],["2024-07-25T01:05:17.010000"],["2024-07-25T01:05:18.010000"],["2024-07-25T01:05:19.010000"],["2024-07-25T01:05:20.010000"],["2024-07-25T01:05:21.010000"],["2024-07-25T01:05:22.010000"],["2024-07-25T01:05:23.010000"],["2024-07-25T01:05:24.010000"],["2024-07-25T01:05:25.010000"],["2024-07-25T01:05:26.010000"],["2024-07-25T01:05:27.010000"],["2024-07-25T01:05:28.010000"],["2024-07-25T01:05:29.010000"],["2024-07-25T01:05:30.010000"],["2024-07-25T01:05:31.010000"],["2024-07-25T01:05:32.010000"],["2024-07-25T01:05:33.010000"],["2024-07-25T01:05:34.010000"],["2024-07-25T01:05:35.010000"],["2024-07-25T01:05:36.010000"],["2024-07-25T01:05:37.010000"],["2024-07-25T01:05:38.010000"],["2024-07-25T01:05:39.010000"],["2024-07-25T01:05:40.010000"],["2024-07-25T01:05:41.010000"],["2024-07-25T01:05:42.010000"],["2024-07-25T01:05:43.010000"],["2024-07-25T01:05:44.010000"],["2024-07-25T01:05:45.010000"],["2024-07-25T01:05:46.010000"],["2024-07-25T01:05:47.010000"],["2024-07-25T01:05:48.010000"],["2024-07-25T01:05:49.010000"],["2024-07-25T01:05:50.010000"],["2024-07-25T01:05:51.010000"],["2024-07-25T01:05:52.010000"],["2024-07-25T01:05:53.010000"],["2024-07-25T01:05:54.010000"],["2024-07-25T01:05:55.010000"],["2024-07-25T01:05:56.010000"],["2024-07-25T01:05:57.010000"],["2024-07-25T01:05:58.010000"],["2024-07-25T01:05:59.010000"],["2024-07-25T01:06:00.010000"],["2024-07-25T01:06:01.010000"],["2024-07-25T01:06:02.010000"],["2024-07-25T01:06:03.010000"],["2024-07-25T01:06:04.010000"],["2024-07-25T01:06:05.010000"],["2024-07-25T01:06:06.010000"],["2024-07-25T01:06:07.010000"],["2024-07-25T01:06:08.010000"],["2024-07-25T01:06:09.010000"],["2024-07-25T01:06:10.010000"],["2024-07-25T01:06:11.010000"],["2024-07-25T01:06:12.010000"],["2024-07-25T01:06:13.010000"],["2024-07-25T01:06:14.010000"],["2024-07-25T01:06:15.010000"],["2024-07-25T01:06:16.010000"],["2024-07-25T01:06:17.010000"],["2024-07-25T01:06:18.010000"],["2024-07-25T01:06:19.010000"],["2024-07-25T01:06:20.010000"],["2024-07-25T01:06:21.010000"],["2024-07-25T01:06:22.010000"],["2024-07-25T01:06:23.010000"],["2024-07-25T01:06:24.010000"],["2024-07-25T01:06:25.010000"],["2024-07-25T01:06:26.010000"],["2024-07-25T01:06:27.010000"],["2024-07-25T01:06:28.010000"],["2024-07-25T01:06:29.010000"],["2024-07-25T01:06:30.010000"],["2024-07-25T01:06:31.010000"],["2024-07-25T01:06:32.010000"],["2024-07-25T01:06:33.010000"],["2024-07-25T01:06:34.010000"],["2024-07-25T01:06:35.010000"],["2024-07-25T01:06:36.010000"],["2024-07-25T01:06:37.010000"],["2024-07-25T01:06:38.010000"],["2024-07-25T01:06:39.010000"],["2024-07-25T01:06:40.010000"],["2024-07-25T01:06:41.010000"],["2024-07-25T01:06:42.010000"],["2024-07-25T01:06:43.010000"],["2024-07-25T01:06:44.010000"],["2024-07-25T01:06:45.010000"],["2024-07-25T01:06:46.010000"],["2024-07-25T01:06:47.010000"],["2024-07-25T01:06:48.010000"],["2024-07-25T01:06:49.010000"],["2024-07-25T01:06:50.010000"],["2024-07-25T01:06:51.010000"],["2024-07-25T01:06:52.010000"],["2024-07-25T01:06:53.010000"],["2024-07-25T01:06:54.010000"],["2024-07-25T01:06:55.010000"],["2024-07-25T01:06:56.010000"],["2024-07-25T01:06:57.010000"],["2024-07-25T01:06:58.010000"],["2024-07-25T01:06:59.010000"],["2024-07-25T01:07:00.010000"],["2024-07-25T01:07:01.010000"],["2024-07-25T01:07:02.010000"],["2024-07-25T01:07:03.010000"],["2024-07-25T01:07:04.010000"],["2024-07-25T01:07:05.010000"],["2024-07-25T01:07:06.010000"],["2024-07-25T01:07:07.010000"],["2024-07-25T01:07:08.010000"],["2024-07-25T01:07:09.010000"],["2024-07-25T01:07:10.010000"],["2024-07-25T01:07:11.010000"],["2024-07-25T01:07:12.010000"],["2024-07-25T01:07:13.010000"],["2024-07-25T01:07:14.010000"],["2024-07-25T01:07:15.010000"],["2024-07-25T01:07:16.010000"],["2024-07-25T01:07:17.010000"],["2024-07-25T01:07:18.010000"],["2024-07-25T01:07:19.010000"],["2024-07-25T01:07:20.010000"],["2024-07-25T01:07:21.010000"],["2024-07-25T01:07:22.010000"],["2024-07-25T01:07:23.010000"],["2024-07-25T01:07:24.010000"],["2024-07-25T01:07:25.010000"],["2024-07-25T01:07:26.010000"],["2024-07-25T01:07:27.010000"],["2024-07-25T01:07:28.010000"],["2024-07-25T01:07:29.010000"],["2024-07-25T01:07:30.010000"],["2024-07-25T01:07:31.010000"],["2024-07-25T01:07:32.010000"],["2024-07-25T01:07:33.010000"],["2024-07-25T01:07:34.010000"],["2024-07-25T01:07:35.010000"],["2024-07-25T01:07:36.010000"],["2024-07-25T01:07:37.010000"],["2024-07-25T01:07:38.010000"],["2024-07-25T01:07:39.010000"],["2024-07-25T01:07:40.010000"],["2024-07-25T01:07:41.010000"],["2024-07-25T01:07:42.010000"],["2024-07-25T01:07:43.010000"],["2024-07-25T01:07:44.010000"],["2024-07-25T01:07:45.010000"],["2024-07-25T01:07:46.010000"],["2024-07-25T01:07:47.010000"],["2024-07-25T01:07:48.010000"],["2024-07-25T01:07:49.010000"],["2024-07-25T01:07:50.010000"],["2024-07-25T01:07:51.010000"],["2024-07-25T01:07:52.010000"],["2024-07-25T01:07:53.010000"],["2024-07-25T01:07:54.010000"],["2024-07-25T01:07:55.010000"],["2024-07-25T01:07:56.010000"],["2024-07-25T01:07:57.010000"],["2024-07-25T01:07:58.010000"],["2024-07-25T01:07:59.010000"],["2024-07-25T01:08:00.010000"],["2024-07-25T01:08:01.010000"],["2024-07-25T01:08:02.010000"],["2024-07-25T01:08:03.010000"],["2024-07-25T01:08:04.010000"],["2024-07-25T01:08:05.010000"],["2024-07-25T01:08:06.010000"],["2024-07-25T01:08:07.010000"],["2024-07-25T01:08:08.010000"],["2024-07-25T01:08:09.010000"],["2024-07-25T01:08:10.010000"],["2024-07-25T01:08:11.010000"],["2024-07-25T01:08:12.010000"],["2024-07-25T01:08:13.010000"],["2024-07-25T01:08:14.010000"],["2024-07-25T01:08:15.010000"],["2024-07-25T01:08:16.010000"],["2024-07-25T01:08:17.010000"],["2024-07-25T01:08:18.010000"],["2024-07-25T01:08:19.010000"],["2024-07-25T01:08:20.010000"],["2024-07-25T01:08:21.010000"],["2024-07-25T01:08:22.010000"],["2024-07-25T01:08:23.010000"],["2024-07-25T01:08:24.010000"],["2024-07-25T01:08:25.010000"],["2024-07-25T01:08:26.010000"],["2024-07-25T01:08:27.010000"],["2024-07-25T01:08:28.010000"],["2024-07-25T01:08:29.010000"],["2024-07-25T01:08:30.010000"],["2024-07-25T01:08:31.010000"],["2024-07-25T01:08:32.010000"],["2024-07-25T01:08:33.010000"],["2024-07-25T01:08:34.010000"],["2024-07-25T01:08:35.010000"],["2024-07-25T01:08:36.010000"],["2024-07-25T01:08:37.010000"],["2024-07-25T01:08:38.010000"],["2024-07-25T01:08:39.010000"],["2024-07-25T01:08:40.010000"],["2024-07-25T01:08:41.010000"],["2024-07-25T01:08:42.010000"],["2024-07-25T01:08:43.010000"],["2024-07-25T01:08:44.010000"],["2024-07-25T01:08:45.010000"],["2024-07-25T01:08:46.010000"],["2024-07-25T01:08:47.010000"],["2024-07-25T01:08:48.010000"],["2024-07-25T01:08:49.010000"],["2024-07-25T01:08:50.010000"],["2024-07-25T01:08:51.010000"],["2024-07-25T01:08:52.010000"],["2024-07-25T01:08:53.010000"],["2024-07-25T01:08:54.010000"],["2024-07-25T01:08:55.010000"],["2024-07-25T01:08:56.010000"],["2024-07-25T01:08:57.010000"],["2024-07-25T01:08:58.010000"],["2024-07-25T01:08:59.010000"],["2024-07-25T01:09:00.010000"],["2024-07-25T01:09:01.010000"],["2024-07-25T01:09:02.010000"],["2024-07-25T01:09:03.010000"],["2024-07-25T01:09:04.010000"],["2024-07-25T01:09:05.010000"],["2024-07-25T01:09:06.010000"],["2024-07-25T01:09:07.010000"],["2024-07-25T01:09:08.010000"],["2024-07-25T01:09:09.010000"],["2024-07-25T01:09:10.010000"],["2024-07-25T01:09:11.010000"],["2024-07-25T01:09:12.010000"],["2024-07-25T01:09:13.010000"],["2024-07-25T01:09:14.010000"],["2024-07-25T01:09:15.010000"],["2024-07-25T01:09:16.010000"],["2024-07-25T01:09:17.010000"],["2024-07-25T01:09:18.010000"],["2024-07-25T01:09:19.010000"],["2024-07-25T01:09:20.010000"],["2024-07-25T01:09:21.010000"],["2024-07-25T01:09:22.010000"],["2024-07-25T01:09:23.010000"],["2024-07-25T01:09:24.010000"],["2024-07-25T01:09:25.010000"],["2024-07-25T01:09:26.010000"],["2024-07-25T01:09:27.010000"],["2024-07-25T01:09:28.010000"],["2024-07-25T01:09:29.010000"],["2024-07-25T01:09:30.010000"],["2024-07-25T01:09:31.010000"],["2024-07-25T01:09:32.010000"],["2024-07-25T01:09:33.010000"],["2024-07-25T01:09:34.010000"],["2024-07-25T01:09:35.010000"],["2024-07-25T01:09:36.010000"],["2024-07-25T01:09:37.010000"],["2024-07-25T01:09:38.010000"],["2024-07-25T01:09:39.010000"],["2024-07-25T01:09:40.010000"],["2024-07-25T01:09:41.010000"],["2024-07-25T01:09:42.010000"],["2024-07-25T01:09:43.010000"],["2024-07-25T01:09:44.010000"],["2024-07-25T01:09:45.010000"],["2024-07-25T01:09:46.010000"],["2024-07-25T01:09:47.010000"],["2024-07-25T01:09:48.010000"],["2024-07-25T01:09:49.010000"],["2024-07-25T01:09:50.010000"],["2024-07-25T01:09:51.010000"],["2024-07-25T01:09:52.010000"],["2024-07-25T01:09:53.010000"],["2024-07-25T01:09:54.010000"],["2024-07-25T01:09:55.010000"],["2024-07-25T01:09:56.010000"],["2024-07-25T01:09:57.010000"],["2024-07-25T01:09:58.010000"],["2024-07-25T01:09:59.010000"],["2024-07-25T01:10:00.010000"],["2024-07-25T01:10:01.010000"],["2024-07-25T01:10:02.010000"],["2024-07-25T01:10:03.010000"],["2024-07-25T01:10:04.010000"],["2024-07-25T01:10:05.010000"],["2024-07-25T01:10:06.010000"],["2024-07-25T01:10:07.010000"],["2024-07-25T01:10:08.010000"],["2024-07-25T01:10:09.010000"],["2024-07-25T01:10:10.010000"],["2024-07-25T01:10:11.010000"],["2024-07-25T01:10:12.010000"],["2024-07-25T01:10:13.010000"],["2024-07-25T01:10:14.010000"],["2024-07-25T01:10:15.010000"],["2024-07-25T01:10:16.010000"],["2024-07-25T01:10:17.010000"],["2024-07-25T01:10:18.010000"],["2024-07-25T01:10:19.010000"],["2024-07-25T01:10:20.010000"],["2024-07-25T01:10:21.010000"],["2024-07-25T01:10:22.010000"],["2024-07-25T01:10:23.010000"],["2024-07-25T01:10:24.010000"],["2024-07-25T01:10:25.010000"],["2024-07-25T01:10:26.010000"],["2024-07-25T01:10:27.010000"],["2024-07-25T01:10:28.010000"],["2024-07-25T01:10:29.010000"],["2024-07-25T01:10:30.010000"],["2024-07-25T01:10:31.010000"],["2024-07-25T01:10:32.010000"],["2024-07-25T01:10:33.010000"],["2024-07-25T01:10:34.010000"],["2024-07-25T01:10:35.010000"],["2024-07-25T01:10:36.010000"],["2024-07-25T01:10:37.010000"],["2024-07-25T01:10:38.010000"],["2024-07-25T01:10:39.010000"],["2024-07-25T01:10:40.010000"],["2024-07-25T01:10:41.010000"],["2024-07-25T01:10:42.010000"],["2024-07-25T01:10:43.010000"],["2024-07-25T01:10:44.010000"],["2024-07-25T01:10:45.010000"],["2024-07-25T01:10:46.010000"],["2024-07-25T01:10:47.010000"],["2024-07-25T01:10:48.010000"],["2024-07-25T01:10:49.010000"],["2024-07-25T01:10:50.010000"],["2024-07-25T01:10:51.010000"],["2024-07-25T01:10:52.010000"],["2024-07-25T01:10:53.010000"],["2024-07-25T01:10:54.010000"],["2024-07-25T01:10:55.010000"],["2024-07-25T01:10:56.010000"],["2024-07-25T01:10:57.010000"],["2024-07-25T01:10:58.010000"],["2024-07-25T01:10:59.010000"],["2024-07-25T01:11:00.010000"],["2024-07-25T01:11:01.010000"],["2024-07-25T01:11:02.010000"],["2024-07-25T01:11:03.010000"],["2024-07-25T01:11:04.010000"],["2024-07-25T01:11:05.010000"],["2024-07-25T01:11:06.010000"],["2024-07-25T01:11:07.010000"],["2024-07-25T01:11:08.010000"],["2024-07-25T01:11:09.010000"],["2024-07-25T01:11:10.010000"],["2024-07-25T01:11:11.010000"],["2024-07-25T01:11:12.010000"],["2024-07-25T01:11:13.010000"],["2024-07-25T01:11:14.010000"],["2024-07-25T01:11:15.010000"],["2024-07-25T01:11:16.010000"],["2024-07-25T01:11:17.010000"],["2024-07-25T01:11:18.010000"],["2024-07-25T01:11:19.010000"],["2024-07-25T01:11:20.010000"],["2024-07-25T01:11:21.010000"],["2024-07-25T01:11:22.010000"],["2024-07-25T01:11:23.010000"],["2024-07-25T01:11:24.010000"],["2024-07-25T01:11:25.010000"],["2024-07-25T01:11:26.010000"],["2024-07-25T01:11:27.010000"],["2024-07-25T01:11:28.010000"],["2024-07-25T01:11:29.010000"],["2024-07-25T01:11:30.010000"],["2024-07-25T01:11:31.010000"],["2024-07-25T01:11:32.010000"],["2024-07-25T01:11:33.010000"],["2024-07-25T01:11:34.010000"],["2024-07-25T01:11:35.010000"],["2024-07-25T01:11:36.010000"],["2024-07-25T01:11:37.010000"],["2024-07-25T01:11:38.010000"],["2024-07-25T01:11:39.010000"],["2024-07-25T01:11:40.010000"],["2024-07-25T01:11:41.010000"],["2024-07-25T01:11:42.010000"],["2024-07-25T01:11:43.010000"],["2024-07-25T01:11:44.010000"],["2024-07-25T01:11:45.010000"],["2024-07-25T01:11:46.010000"],["2024-07-25T01:11:47.010000"],["2024-07-25T01:11:48.010000"],["2024-07-25T01:11:49.010000"],["2024-07-25T01:11:50.010000"],["2024-07-25T01:11:51.010000"],["2024-07-25T01:11:52.010000"],["2024-07-25T01:11:53.010000"],["2024-07-25T01:11:54.010000"],["2024-07-25T01:11:55.010000"],["2024-07-25T01:11:56.010000"],["2024-07-25T01:11:57.010000"],["2024-07-25T01:11:58.010000"],["2024-07-25T01:11:59.010000"],["2024-07-25T01:12:00.010000"],["2024-07-25T01:12:01.010000"],["2024-07-25T01:12:02.010000"],["2024-07-25T01:12:03.010000"],["2024-07-25T01:12:04.010000"],["2024-07-25T01:12:05.010000"],["2024-07-25T01:12:06.010000"],["2024-07-25T01:12:07.010000"],["2024-07-25T01:12:08.010000"],["2024-07-25T01:12:09.010000"],["2024-07-25T01:12:10.010000"],["2024-07-25T01:12:11.010000"],["2024-07-25T01:12:12.010000"],["2024-07-25T01:12:13.010000"],["2024-07-25T01:12:14.010000"],["2024-07-25T01:12:15.010000"],["2024-07-25T01:12:16.010000"],["2024-07-25T01:12:17.010000"],["2024-07-25T01:12:18.010000"],["2024-07-25T01:12:19.010000"],["2024-07-25T01:12:20.010000"],["2024-07-25T01:12:21.010000"],["2024-07-25T01:12:22.010000"],["2024-07-25T01:12:23.010000"],["2024-07-25T01:12:24.010000"],["2024-07-25T01:12:25.010000"],["2024-07-25T01:12:26.010000"],["2024-07-25T01:12:27.010000"],["2024-07-25T01:12:28.010000"],["2024-07-25T01:12:29.010000"],["2024-07-25T01:12:30.010000"],["2024-07-25T01:12:31.010000"],["2024-07-25T01:12:32.010000"],["2024-07-25T01:12:33.010000"],["2024-07-25T01:12:34.010000"],["2024-07-25T01:12:35.010000"],["2024-07-25T01:12:36.010000"],["2024-07-25T01:12:37.010000"],["2024-07-25T01:12:38.010000"],["2024-07-25T01:12:39.010000"],["2024-07-25T01:12:40.010000"],["2024-07-25T01:12:41.010000"],["2024-07-25T01:12:42.010000"],["2024-07-25T01:12:43.010000"],["2024-07-25T01:12:44.010000"],["2024-07-25T01:12:45.010000"],["2024-07-25T01:12:46.010000"],["2024-07-25T01:12:47.010000"],["2024-07-25T01:12:48.010000"],["2024-07-25T01:12:49.010000"],["2024-07-25T01:12:50.010000"],["2024-07-25T01:12:51.010000"],["2024-07-25T01:12:52.010000"],["2024-07-25T01:12:53.010000"],["2024-07-25T01:12:54.010000"],["2024-07-25T01:12:55.010000"],["2024-07-25T01:12:56.010000"],["2024-07-25T01:12:57.010000"],["2024-07-25T01:12:58.010000"],["2024-07-25T01:12:59.010000"],["2024-07-25T01:13:00.010000"],["2024-07-25T01:13:01.010000"],["2024-07-25T01:13:02.010000"],["2024-07-25T01:13:03.010000"],["2024-07-25T01:13:04.010000"],["2024-07-25T01:13:05.010000"],["2024-07-25T01:13:06.010000"],["2024-07-25T01:13:07.010000"],["2024-07-25T01:13:08.010000"],["2024-07-25T01:13:09.010000"],["2024-07-25T01:13:10.010000"],["2024-07-25T01:13:11.010000"],["2024-07-25T01:13:12.010000"],["2024-07-25T01:13:13.010000"],["2024-07-25T01:13:14.010000"],["2024-07-25T01:13:15.010000"],["2024-07-25T01:13:16.010000"],["2024-07-25T01:13:17.010000"],["2024-07-25T01:13:18.010000"],["2024-07-25T01:13:19.010000"],["2024-07-25T01:13:20.010000"],["2024-07-25T01:13:21.010000"],["2024-07-25T01:13:22.010000"],["2024-07-25T01:13:23.010000"],["2024-07-25T01:13:24.010000"],["2024-07-25T01:13:25.010000"],["2024-07-25T01:13:26.010000"],["2024-07-25T01:13:27.010000"],["2024-07-25T01:13:28.010000"],["2024-07-25T01:13:29.010000"],["2024-07-25T01:13:30.010000"],["2024-07-25T01:13:31.010000"],["2024-07-25T01:13:32.010000"],["2024-07-25T01:13:33.010000"],["2024-07-25T01:13:34.010000"],["2024-07-25T01:13:35.010000"],["2024-07-25T01:13:36.010000"],["2024-07-25T01:13:37.010000"],["2024-07-25T01:13:38.010000"],["2024-07-25T01:13:39.010000"],["2024-07-25T01:13:40.010000"],["2024-07-25T01:13:41.010000"],["2024-07-25T01:13:42.010000"],["2024-07-25T01:13:43.010000"],["2024-07-25T01:13:44.010000"],["2024-07-25T01:13:45.010000"],["2024-07-25T01:13:46.010000"],["2024-07-25T01:13:47.010000"],["2024-07-25T01:13:48.010000"],["2024-07-25T01:13:49.010000"],["2024-07-25T01:13:50.010000"],["2024-07-25T01:13:51.010000"],["2024-07-25T01:13:52.010000"],["2024-07-25T01:13:53.010000"],["2024-07-25T01:13:54.010000"],["2024-07-25T01:13:55.010000"],["2024-07-25T01:13:56.010000"],["2024-07-25T01:13:57.010000"],["2024-07-25T01:13:58.010000"],["2024-07-25T01:13:59.010000"],["2024-07-25T01:14:00.010000"],["2024-07-25T01:14:01.010000"],["2024-07-25T01:14:02.010000"],["2024-07-25T01:14:03.010000"],["2024-07-25T01:14:04.010000"],["2024-07-25T01:14:05.010000"],["2024-07-25T01:14:06.010000"],["2024-07-25T01:14:07.010000"],["2024-07-25T01:14:08.010000"],["2024-07-25T01:14:09.010000"],["2024-07-25T01:14:10.010000"],["2024-07-25T01:14:11.010000"],["2024-07-25T01:14:12.010000"],["2024-07-25T01:14:13.010000"],["2024-07-25T01:14:14.010000"],["2024-07-25T01:14:15.010000"],["2024-07-25T01:14:16.010000"],["2024-07-25T01:14:17.010000"],["2024-07-25T01:14:18.010000"],["2024-07-25T01:14:19.010000"],["2024-07-25T01:14:20.010000"],["2024-07-25T01:14:21.010000"],["2024-07-25T01:14:22.010000"],["2024-07-25T01:14:23.010000"],["2024-07-25T01:14:24.010000"],["2024-07-25T01:14:25.010000"],["2024-07-25T01:14:26.010000"],["2024-07-25T01:14:27.010000"],["2024-07-25T01:14:28.010000"],["2024-07-25T01:14:29.010000"],["2024-07-25T01:14:30.010000"],["2024-07-25T01:14:31.010000"],["2024-07-25T01:14:32.010000"],["2024-07-25T01:14:33.010000"],["2024-07-25T01:14:34.010000"],["2024-07-25T01:14:35.010000"],["2024-07-25T01:14:36.010000"],["2024-07-25T01:14:37.010000"],["2024-07-25T01:14:38.010000"],["2024-07-25T01:14:39.010000"],["2024-07-25T01:14:40.010000"],["2024-07-25T01:14:41.010000"],["2024-07-25T01:14:42.010000"],["2024-07-25T01:14:43.010000"],["2024-07-25T01:14:44.010000"],["2024-07-25T01:14:45.010000"],["2024-07-25T01:14:46.010000"],["2024-07-25T01:14:47.010000"],["2024-07-25T01:14:48.010000"],["2024-07-25T01:14:49.010000"],["2024-07-25T01:14:50.010000"],["2024-07-25T01:14:51.010000"],["2024-07-25T01:14:52.010000"],["2024-07-25T01:14:53.010000"],["2024-07-25T01:14:54.010000"],["2024-07-25T01:14:55.010000"],["2024-07-25T01:14:56.010000"],["2024-07-25T01:14:57.010000"],["2024-07-25T01:14:58.010000"],["2024-07-25T01:14:59.010000"],["2024-07-25T01:15:00.010000"],["2024-07-25T01:15:01.010000"],["2024-07-25T01:15:02.010000"],["2024-07-25T01:15:03.010000"],["2024-07-25T01:15:04.010000"],["2024-07-25T01:15:05.010000"],["2024-07-25T01:15:06.010000"],["2024-07-25T01:15:07.010000"],["2024-07-25T01:15:08.010000"],["2024-07-25T01:15:09.010000"],["2024-07-25T01:15:10.010000"],["2024-07-25T01:15:11.010000"],["2024-07-25T01:15:12.010000"],["2024-07-25T01:15:13.010000"],["2024-07-25T01:15:14.010000"],["2024-07-25T01:15:15.010000"],["2024-07-25T01:15:16.010000"],["2024-07-25T01:15:17.010000"],["2024-07-25T01:15:18.010000"],["2024-07-25T01:15:19.010000"],["2024-07-25T01:15:20.010000"],["2024-07-25T01:15:21.010000"],["2024-07-25T01:15:22.010000"],["2024-07-25T01:15:23.010000"],["2024-07-25T01:15:24.010000"],["2024-07-25T01:15:25.010000"],["2024-07-25T01:15:26.010000"],["2024-07-25T01:15:27.010000"],["2024-07-25T01:15:28.010000"],["2024-07-25T01:15:29.010000"],["2024-07-25T01:15:30.010000"],["2024-07-25T01:15:31.010000"],["2024-07-25T01:15:32.010000"],["2024-07-25T01:15:33.010000"],["2024-07-25T01:15:34.010000"],["2024-07-25T01:15:35.010000"],["2024-07-25T01:15:36.010000"],["2024-07-25T01:15:37.010000"],["2024-07-25T01:15:38.010000"],["2024-07-25T01:15:39.010000"],["2024-07-25T01:15:40.010000"],["2024-07-25T01:15:41.010000"],["2024-07-25T01:15:42.010000"],["2024-07-25T01:15:43.010000"],["2024-07-25T01:15:44.010000"],["2024-07-25T01:15:45.010000"],["2024-07-25T01:15:46.010000"],["2024-07-25T01:15:47.010000"],["2024-07-25T01:15:48.010000"],["2024-07-25T01:15:49.010000"],["2024-07-25T01:15:50.010000"],["2024-07-25T01:15:51.010000"],["2024-07-25T01:15:52.010000"],["2024-07-25T01:15:53.010000"],["2024-07-25T01:15:54.010000"],["2024-07-25T01:15:55.010000"],["2024-07-25T01:15:56.010000"],["2024-07-25T01:15:57.010000"],["2024-07-25T01:15:58.010000"],["2024-07-25T01:15:59.010000"],["2024-07-25T01:16:00.010000"],["2024-07-25T01:16:01.010000"],["2024-07-25T01:16:02.010000"],["2024-07-25T01:16:03.010000"],["2024-07-25T01:16:04.010000"],["2024-07-25T01:16:05.010000"],["2024-07-25T01:16:06.010000"],["2024-07-25T01:16:07.010000"],["2024-07-25T01:16:08.010000"],["2024-07-25T01:16:09.010000"],["2024-07-25T01:16:10.010000"],["2024-07-25T01:16:11.010000"],["2024-07-25T01:16:12.010000"],["2024-07-25T01:16:13.010000"],["2024-07-25T01:16:14.010000"],["2024-07-25T01:16:15.010000"],["2024-07-25T01:16:16.010000"],["2024-07-25T01:16:17.010000"],["2024-07-25T01:16:18.010000"],["2024-07-25T01:16:19.010000"],["2024-07-25T01:16:20.010000"],["2024-07-25T01:16:21.010000"],["2024-07-25T01:16:22.010000"],["2024-07-25T01:16:23.010000"],["2024-07-25T01:16:24.010000"],["2024-07-25T01:16:25.010000"],["2024-07-25T01:16:26.010000"],["2024-07-25T01:16:27.010000"],["2024-07-25T01:16:28.010000"],["2024-07-25T01:16:29.010000"],["2024-07-25T01:16:30.010000"],["2024-07-25T01:16:31.010000"],["2024-07-25T01:16:32.010000"],["2024-07-25T01:16:33.010000"],["2024-07-25T01:16:34.010000"],["2024-07-25T01:16:35.010000"],["2024-07-25T01:16:36.010000"],["2024-07-25T01:16:37.010000"],["2024-07-25T01:16:38.010000"],["2024-07-25T01:16:39.010000"],["2024-07-25T01:16:40.010000"],["2024-07-25T01:16:41.010000"],["2024-07-25T01:16:42.010000"],["2024-07-25T01:16:43.010000"],["2024-07-25T01:16:44.010000"],["2024-07-25T01:16:45.010000"],["2024-07-25T01:16:46.010000"],["2024-07-25T01:16:47.010000"],["2024-07-25T01:16:48.010000"],["2024-07-25T01:16:49.010000"],["2024-07-25T01:16:50.010000"],["2024-07-25T01:16:51.010000"],["2024-07-25T01:16:52.010000"],["2024-07-25T01:16:53.010000"],["2024-07-25T01:16:54.010000"],["2024-07-25T01:16:55.010000"],["2024-07-25T01:16:56.010000"],["2024-07-25T01:16:57.010000"],["2024-07-25T01:16:58.010000"],["2024-07-25T01:16:59.010000"],["2024-07-25T01:17:00.010000"],["2024-07-25T01:17:01.010000"],["2024-07-25T01:17:02.010000"],["2024-07-25T01:17:03.010000"],["2024-07-25T01:17:04.010000"],["2024-07-25T01:17:05.010000"],["2024-07-25T01:17:06.010000"],["2024-07-25T01:17:07.010000"],["2024-07-25T01:17:08.010000"],["2024-07-25T01:17:09.010000"],["2024-07-25T01:17:10.010000"],["2024-07-25T01:17:11.010000"],["2024-07-25T01:17:12.010000"],["2024-07-25T01:17:13.010000"],["2024-07-25T01:17:14.010000"],["2024-07-25T01:17:15.010000"],["2024-07-25T01:17:16.010000"],["2024-07-25T01:17:17.010000"],["2024-07-25T01:17:18.010000"],["2024-07-25T01:17:19.010000"],["2024-07-25T01:17:20.010000"],["2024-07-25T01:17:21.010000"],["2024-07-25T01:17:22.010000"],["2024-07-25T01:17:23.010000"],["2024-07-25T01:17:24.010000"],["2024-07-25T01:17:25.010000"],["2024-07-25T01:17:26.010000"],["2024-07-25T01:17:27.010000"],["2024-07-25T01:17:28.010000"],["2024-07-25T01:17:29.010000"],["2024-07-25T01:17:30.010000"],["2024-07-25T01:17:31.010000"],["2024-07-25T01:17:32.010000"],["2024-07-25T01:17:33.010000"],["2024-07-25T01:17:34.010000"],["2024-07-25T01:17:35.010000"],["2024-07-25T01:17:36.010000"],["2024-07-25T01:17:37.010000"],["2024-07-25T01:17:38.010000"],["2024-07-25T01:17:39.010000"],["2024-07-25T01:17:40.010000"],["2024-07-25T01:17:41.010000"],["2024-07-25T01:17:42.010000"],["2024-07-25T01:17:43.010000"],["2024-07-25T01:17:44.010000"],["2024-07-25T01:17:45.010000"],["2024-07-25T01:17:46.010000"],["2024-07-25T01:17:47.010000"],["2024-07-25T01:17:48.010000"],["2024-07-25T01:17:49.010000"],["2024-07-25T01:17:50.010000"],["2024-07-25T01:17:51.010000"],["2024-07-25T01:17:52.010000"],["2024-07-25T01:17:53.010000"],["2024-07-25T01:17:54.010000"],["2024-07-25T01:17:55.010000"],["2024-07-25T01:17:56.010000"],["2024-07-25T01:17:57.010000"],["2024-07-25T01:17:58.010000"],["2024-07-25T01:17:59.010000"],["2024-07-25T01:18:00.010000"],["2024-07-25T01:18:01.010000"],["2024-07-25T01:18:02.010000"],["2024-07-25T01:18:03.010000"],["2024-07-25T01:18:04.010000"],["2024-07-25T01:18:05.010000"],["2024-07-25T01:18:06.010000"],["2024-07-25T01:18:07.010000"],["2024-07-25T01:18:08.010000"],["2024-07-25T01:18:09.010000"],["2024-07-25T01:18:10.010000"],["2024-07-25T01:18:11.010000"],["2024-07-25T01:18:12.010000"],["2024-07-25T01:18:13.010000"],["2024-07-25T01:18:14.010000"],["2024-07-25T01:18:15.010000"],["2024-07-25T01:18:16.010000"],["2024-07-25T01:18:17.010000"],["2024-07-25T01:18:18.010000"],["2024-07-25T01:18:19.010000"],["2024-07-25T01:18:20.010000"],["2024-07-25T01:18:21.010000"],["2024-07-25T01:18:22.010000"],["2024-07-25T01:18:23.010000"],["2024-07-25T01:18:24.010000"],["2024-07-25T01:18:25.010000"],["2024-07-25T01:18:26.010000"],["2024-07-25T01:18:27.010000"],["2024-07-25T01:18:28.010000"],["2024-07-25T01:18:29.010000"],["2024-07-25T01:18:30.010000"],["2024-07-25T01:18:31.010000"],["2024-07-25T01:18:32.010000"],["2024-07-25T01:18:33.010000"],["2024-07-25T01:18:34.010000"],["2024-07-25T01:18:35.010000"],["2024-07-25T01:18:36.010000"],["2024-07-25T01:18:37.010000"],["2024-07-25T01:18:38.010000"],["2024-07-25T01:18:39.010000"],["2024-07-25T01:18:40.010000"],["2024-07-25T01:18:41.010000"],["2024-07-25T01:18:42.010000"],["2024-07-25T01:18:43.010000"],["2024-07-25T01:18:44.010000"],["2024-07-25T01:18:45.010000"],["2024-07-25T01:18:46.010000"],["2024-07-25T01:18:47.010000"],["2024-07-25T01:18:48.010000"],["2024-07-25T01:18:49.010000"],["2024-07-25T01:18:50.010000"],["2024-07-25T01:18:51.010000"],["2024-07-25T01:18:52.010000"],["2024-07-25T01:18:53.010000"],["2024-07-25T01:18:54.010000"],["2024-07-25T01:18:55.010000"],["2024-07-25T01:18:56.010000"],["2024-07-25T01:18:57.010000"],["2024-07-25T01:18:58.010000"],["2024-07-25T01:18:59.010000"],["2024-07-25T01:19:00.010000"],["2024-07-25T01:19:01.010000"],["2024-07-25T01:19:02.010000"],["2024-07-25T01:19:03.010000"],["2024-07-25T01:19:04.010000"],["2024-07-25T01:19:05.010000"],["2024-07-25T01:19:06.010000"],["2024-07-25T01:19:07.010000"],["2024-07-25T01:19:08.010000"],["2024-07-25T01:19:09.010000"],["2024-07-25T01:19:10.010000"],["2024-07-25T01:19:11.010000"],["2024-07-25T01:19:12.010000"],["2024-07-25T01:19:13.010000"],["2024-07-25T01:19:14.010000"],["2024-07-25T01:19:15.010000"],["2024-07-25T01:19:16.010000"],["2024-07-25T01:19:17.010000"],["2024-07-25T01:19:18.010000"],["2024-07-25T01:19:19.010000"],["2024-07-25T01:19:20.010000"],["2024-07-25T01:19:21.010000"],["2024-07-25T01:19:22.010000"],["2024-07-25T01:19:23.010000"],["2024-07-25T01:19:24.010000"],["2024-07-25T01:19:25.010000"],["2024-07-25T01:19:26.010000"],["2024-07-25T01:19:27.010000"],["2024-07-25T01:19:28.010000"],["2024-07-25T01:19:29.010000"],["2024-07-25T01:19:30.010000"],["2024-07-25T01:19:31.010000"],["2024-07-25T01:19:32.010000"],["2024-07-25T01:19:33.010000"],["2024-07-25T01:19:34.010000"],["2024-07-25T01:19:35.010000"],["2024-07-25T01:19:36.010000"],["2024-07-25T01:19:37.010000"],["2024-07-25T01:19:38.010000"],["2024-07-25T01:19:39.010000"],["2024-07-25T01:19:40.010000"],["2024-07-25T01:19:41.010000"],["2024-07-25T01:19:42.010000"],["2024-07-25T01:19:43.010000"],["2024-07-25T01:19:44.010000"],["2024-07-25T01:19:45.010000"],["2024-07-25T01:19:46.010000"],["2024-07-25T01:19:47.010000"],["2024-07-25T01:19:48.010000"],["2024-07-25T01:19:49.010000"],["2024-07-25T01:19:50.010000"],["2024-07-25T01:19:51.010000"],["2024-07-25T01:19:52.010000"],["2024-07-25T01:19:53.010000"],["2024-07-25T01:19:54.010000"],["2024-07-25T01:19:55.010000"],["2024-07-25T01:19:56.010000"],["2024-07-25T01:19:57.010000"],["2024-07-25T01:19:58.010000"],["2024-07-25T01:19:59.010000"],["2024-07-25T01:20:00.010000"],["2024-07-25T01:20:01.010000"],["2024-07-25T01:20:02.010000"],["2024-07-25T01:20:03.010000"],["2024-07-25T01:20:04.010000"],["2024-07-25T01:20:05.010000"],["2024-07-25T01:20:06.010000"],["2024-07-25T01:20:07.010000"],["2024-07-25T01:20:08.010000"],["2024-07-25T01:20:09.010000"],["2024-07-25T01:20:10.010000"],["2024-07-25T01:20:11.010000"],["2024-07-25T01:20:12.010000"],["2024-07-25T01:20:13.010000"],["2024-07-25T01:20:14.010000"],["2024-07-25T01:20:15.010000"],["2024-07-25T01:20:16.010000"],["2024-07-25T01:20:17.010000"],["2024-07-25T01:20:18.010000"],["2024-07-25T01:20:19.010000"],["2024-07-25T01:20:20.010000"],["2024-07-25T01:20:21.010000"],["2024-07-25T01:20:22.010000"],["2024-07-25T01:20:23.010000"],["2024-07-25T01:20:24.010000"],["2024-07-25T01:20:25.010000"],["2024-07-25T01:20:26.010000"],["2024-07-25T01:20:27.010000"],["2024-07-25T01:20:28.010000"],["2024-07-25T01:20:29.010000"],["2024-07-25T01:20:30.010000"],["2024-07-25T01:20:31.010000"],["2024-07-25T01:20:32.010000"],["2024-07-25T01:20:33.010000"],["2024-07-25T01:20:34.010000"],["2024-07-25T01:20:35.010000"],["2024-07-25T01:20:36.010000"],["2024-07-25T01:20:37.010000"],["2024-07-25T01:20:38.010000"],["2024-07-25T01:20:39.010000"],["2024-07-25T01:20:40.010000"],["2024-07-25T01:20:41.010000"],["2024-07-25T01:20:42.010000"],["2024-07-25T01:20:43.010000"],["2024-07-25T01:20:44.010000"],["2024-07-25T01:20:45.010000"],["2024-07-25T01:20:46.010000"],["2024-07-25T01:20:47.010000"],["2024-07-25T01:20:48.010000"],["2024-07-25T01:20:49.010000"],["2024-07-25T01:20:50.010000"],["2024-07-25T01:20:51.010000"],["2024-07-25T01:20:52.010000"],["2024-07-25T01:20:53.010000"],["2024-07-25T01:20:54.010000"],["2024-07-25T01:20:55.010000"],["2024-07-25T01:20:56.010000"],["2024-07-25T01:20:57.010000"],["2024-07-25T01:20:58.010000"],["2024-07-25T01:20:59.010000"],["2024-07-25T01:21:00.010000"],["2024-07-25T01:21:01.010000"],["2024-07-25T01:21:02.010000"],["2024-07-25T01:21:03.010000"],["2024-07-25T01:21:04.010000"],["2024-07-25T01:21:05.010000"],["2024-07-25T01:21:06.010000"],["2024-07-25T01:21:07.010000"],["2024-07-25T01:21:08.010000"],["2024-07-25T01:21:09.010000"],["2024-07-25T01:21:10.010000"],["2024-07-25T01:21:11.010000"],["2024-07-25T01:21:12.010000"],["2024-07-25T01:21:13.010000"],["2024-07-25T01:21:14.010000"],["2024-07-25T01:21:15.010000"],["2024-07-25T01:21:16.010000"],["2024-07-25T01:21:17.010000"],["2024-07-25T01:21:18.010000"],["2024-07-25T01:21:19.010000"],["2024-07-25T01:21:20.010000"],["2024-07-25T01:21:21.010000"],["2024-07-25T01:21:22.010000"],["2024-07-25T01:21:23.010000"],["2024-07-25T01:21:24.010000"],["2024-07-25T01:21:25.010000"],["2024-07-25T01:21:26.010000"],["2024-07-25T01:21:27.010000"],["2024-07-25T01:21:28.010000"],["2024-07-25T01:21:29.010000"],["2024-07-25T01:21:30.010000"],["2024-07-25T01:21:31.010000"],["2024-07-25T01:21:32.010000"],["2024-07-25T01:21:33.010000"],["2024-07-25T01:21:34.010000"],["2024-07-25T01:21:35.010000"],["2024-07-25T01:21:36.010000"],["2024-07-25T01:21:37.010000"],["2024-07-25T01:21:38.010000"],["2024-07-25T01:21:39.010000"],["2024-07-25T01:21:40.010000"],["2024-07-25T01:21:41.010000"],["2024-07-25T01:21:42.010000"],["2024-07-25T01:21:43.010000"],["2024-07-25T01:21:44.010000"],["2024-07-25T01:21:45.010000"],["2024-07-25T01:21:46.010000"],["2024-07-25T01:21:47.010000"],["2024-07-25T01:21:48.010000"],["2024-07-25T01:21:49.010000"],["2024-07-25T01:21:50.010000"],["2024-07-25T01:21:51.010000"],["2024-07-25T01:21:52.010000"],["2024-07-25T01:21:53.010000"],["2024-07-25T01:21:54.010000"],["2024-07-25T01:21:55.010000"],["2024-07-25T01:21:56.010000"],["2024-07-25T01:21:57.010000"],["2024-07-25T01:21:58.010000"],["2024-07-25T01:21:59.010000"],["2024-07-25T01:22:00.010000"],["2024-07-25T01:22:01.010000"],["2024-07-25T01:22:02.010000"],["2024-07-25T01:22:03.010000"],["2024-07-25T01:22:04.010000"],["2024-07-25T01:22:05.010000"],["2024-07-25T01:22:06.010000"],["2024-07-25T01:22:07.010000"],["2024-07-25T01:22:08.010000"],["2024-07-25T01:22:09.010000"],["2024-07-25T01:22:10.010000"],["2024-07-25T01:22:11.010000"],["2024-07-25T01:22:12.010000"],["2024-07-25T01:22:13.010000"],["2024-07-25T01:22:14.010000"],["2024-07-25T01:22:15.010000"],["2024-07-25T01:22:16.010000"],["2024-07-25T01:22:17.010000"],["2024-07-25T01:22:18.010000"],["2024-07-25T01:22:19.010000"],["2024-07-25T01:22:20.010000"],["2024-07-25T01:22:21.010000"],["2024-07-25T01:22:22.010000"],["2024-07-25T01:22:23.010000"],["2024-07-25T01:22:24.010000"],["2024-07-25T01:22:25.010000"],["2024-07-25T01:22:26.010000"],["2024-07-25T01:22:27.010000"],["2024-07-25T01:22:28.010000"],["2024-07-25T01:22:29.010000"],["2024-07-25T01:22:30.010000"],["2024-07-25T01:22:31.010000"],["2024-07-25T01:22:32.010000"],["2024-07-25T01:22:33.010000"],["2024-07-25T01:22:34.010000"],["2024-07-25T01:22:35.010000"],["2024-07-25T01:22:36.010000"],["2024-07-25T01:22:37.010000"],["2024-07-25T01:22:38.010000"],["2024-07-25T01:22:39.010000"],["2024-07-25T01:22:40.010000"],["2024-07-25T01:22:41.010000"],["2024-07-25T01:22:42.010000"],["2024-07-25T01:22:43.010000"],["2024-07-25T01:22:44.010000"],["2024-07-25T01:22:45.010000"],["2024-07-25T01:22:46.010000"],["2024-07-25T01:22:47.010000"],["2024-07-25T01:22:48.010000"],["2024-07-25T01:22:49.010000"],["2024-07-25T01:22:50.010000"],["2024-07-25T01:22:51.010000"],["2024-07-25T01:22:52.010000"],["2024-07-25T01:22:53.010000"],["2024-07-25T01:22:54.010000"],["2024-07-25T01:22:55.010000"],["2024-07-25T01:22:56.010000"],["2024-07-25T01:22:57.010000"],["2024-07-25T01:22:58.010000"],["2024-07-25T01:22:59.010000"],["2024-07-25T01:23:00.010000"],["2024-07-25T01:23:01.010000"],["2024-07-25T01:23:02.010000"],["2024-07-25T01:23:03.010000"],["2024-07-25T01:23:04.010000"],["2024-07-25T01:23:05.010000"],["2024-07-25T01:23:06.010000"],["2024-07-25T01:23:07.010000"],["2024-07-25T01:23:08.010000"],["2024-07-25T01:23:09.010000"],["2024-07-25T01:23:10.010000"],["2024-07-25T01:23:11.010000"],["2024-07-25T01:23:12.010000"],["2024-07-25T01:23:13.010000"],["2024-07-25T01:23:14.010000"],["2024-07-25T01:23:15.010000"],["2024-07-25T01:23:16.010000"],["2024-07-25T01:23:17.010000"],["2024-07-25T01:23:18.010000"],["2024-07-25T01:23:19.010000"],["2024-07-25T01:23:20.010000"],["2024-07-25T01:23:21.010000"],["2024-07-25T01:23:22.010000"],["2024-07-25T01:23:23.010000"],["2024-07-25T01:23:24.010000"],["2024-07-25T01:23:25.010000"],["2024-07-25T01:23:26.010000"],["2024-07-25T01:23:27.010000"],["2024-07-25T01:23:28.010000"],["2024-07-25T01:23:29.010000"],["2024-07-25T01:23:30.010000"],["2024-07-25T01:23:31.010000"],["2024-07-25T01:23:32.010000"],["2024-07-25T01:23:33.010000"],["2024-07-25T01:23:34.010000"],["2024-07-25T01:23:35.010000"],["2024-07-25T01:23:36.010000"],["2024-07-25T01:23:37.010000"],["2024-07-25T01:23:38.010000"],["2024-07-25T01:23:39.010000"],["2024-07-25T01:23:40.010000"],["2024-07-25T01:23:41.010000"],["2024-07-25T01:23:42.010000"],["2024-07-25T01:23:43.010000"],["2024-07-25T01:23:44.010000"],["2024-07-25T01:23:45.010000"],["2024-07-25T01:23:46.010000"],["2024-07-25T01:23:47.010000"],["2024-07-25T01:23:48.010000"],["2024-07-25T01:23:49.010000"],["2024-07-25T01:23:50.010000"],["2024-07-25T01:23:51.010000"],["2024-07-25T01:23:52.010000"],["2024-07-25T01:23:53.010000"],["2024-07-25T01:23:54.010000"],["2024-07-25T01:23:55.010000"],["2024-07-25T01:23:56.010000"],["2024-07-25T01:23:57.010000"],["2024-07-25T01:23:58.010000"],["2024-07-25T01:23:59.010000"],["2024-07-25T01:24:00.010000"],["2024-07-25T01:24:01.010000"],["2024-07-25T01:24:02.010000"],["2024-07-25T01:24:03.010000"],["2024-07-25T01:24:04.010000"],["2024-07-25T01:24:05.010000"],["2024-07-25T01:24:06.010000"],["2024-07-25T01:24:07.010000"],["2024-07-25T01:24:08.010000"],["2024-07-25T01:24:09.010000"],["2024-07-25T01:24:10.010000"],["2024-07-25T01:24:11.010000"],["2024-07-25T01:24:12.010000"],["2024-07-25T01:24:13.010000"],["2024-07-25T01:24:14.010000"],["2024-07-25T01:24:15.010000"],["2024-07-25T01:24:16.010000"],["2024-07-25T01:24:17.010000"],["2024-07-25T01:24:18.010000"],["2024-07-25T01:24:19.010000"],["2024-07-25T01:24:20.010000"],["2024-07-25T01:24:21.010000"],["2024-07-25T01:24:22.010000"],["2024-07-25T01:24:23.010000"],["2024-07-25T01:24:24.010000"],["2024-07-25T01:24:25.010000"],["2024-07-25T01:24:26.010000"],["2024-07-25T01:24:27.010000"],["2024-07-25T01:24:28.010000"],["2024-07-25T01:24:29.010000"],["2024-07-25T01:24:30.010000"],["2024-07-25T01:24:31.010000"],["2024-07-25T01:24:32.010000"],["2024-07-25T01:24:33.010000"],["2024-07-25T01:24:34.010000"],["2024-07-25T01:24:35.010000"],["2024-07-25T01:24:36.010000"],["2024-07-25T01:24:37.010000"],["2024-07-25T01:24:38.010000"],["2024-07-25T01:24:39.010000"],["2024-07-25T01:24:40.010000"],["2024-07-25T01:24:41.010000"],["2024-07-25T01:24:42.010000"],["2024-07-25T01:24:43.010000"],["2024-07-25T01:24:44.010000"],["2024-07-25T01:24:45.010000"],["2024-07-25T01:24:46.010000"],["2024-07-25T01:24:47.010000"],["2024-07-25T01:24:48.010000"],["2024-07-25T01:24:49.010000"],["2024-07-25T01:24:50.010000"],["2024-07-25T01:24:51.010000"],["2024-07-25T01:24:52.010000"],["2024-07-25T01:24:53.010000"],["2024-07-25T01:24:54.010000"],["2024-07-25T01:24:55.010000"],["2024-07-25T01:24:56.010000"],["2024-07-25T01:24:57.010000"],["2024-07-25T01:24:58.010000"],["2024-07-25T01:24:59.010000"],["2024-07-25T01:25:00.010000"],["2024-07-25T01:25:01.010000"],["2024-07-25T01:25:02.010000"],["2024-07-25T01:25:03.010000"],["2024-07-25T01:25:04.010000"],["2024-07-25T01:25:05.010000"],["2024-07-25T01:25:06.010000"],["2024-07-25T01:25:07.010000"],["2024-07-25T01:25:08.010000"],["2024-07-25T01:25:09.010000"],["2024-07-25T01:25:10.010000"],["2024-07-25T01:25:11.010000"],["2024-07-25T01:25:12.010000"],["2024-07-25T01:25:13.010000"],["2024-07-25T01:25:14.010000"],["2024-07-25T01:25:15.010000"],["2024-07-25T01:25:16.010000"],["2024-07-25T01:25:17.010000"],["2024-07-25T01:25:18.010000"],["2024-07-25T01:25:19.010000"],["2024-07-25T01:25:20.010000"],["2024-07-25T01:25:21.010000"],["2024-07-25T01:25:22.010000"],["2024-07-25T01:25:23.010000"],["2024-07-25T01:25:24.010000"],["2024-07-25T01:25:25.010000"],["2024-07-25T01:25:26.010000"],["2024-07-25T01:25:27.010000"],["2024-07-25T01:25:28.010000"],["2024-07-25T01:25:29.010000"],["2024-07-25T01:25:30.010000"],["2024-07-25T01:25:31.010000"],["2024-07-25T01:25:32.010000"],["2024-07-25T01:25:33.010000"],["2024-07-25T01:25:34.010000"],["2024-07-25T01:25:35.010000"],["2024-07-25T01:25:36.010000"],["2024-07-25T01:25:37.010000"],["2024-07-25T01:25:38.010000"],["2024-07-25T01:25:39.010000"],["2024-07-25T01:25:40.010000"],["2024-07-25T01:25:41.010000"],["2024-07-25T01:25:42.010000"],["2024-07-25T01:25:43.010000"],["2024-07-25T01:25:44.010000"],["2024-07-25T01:25:45.010000"],["2024-07-25T01:25:46.010000"],["2024-07-25T01:25:47.010000"],["2024-07-25T01:25:48.010000"],["2024-07-25T01:25:49.010000"],["2024-07-25T01:25:50.010000"],["2024-07-25T01:25:51.010000"],["2024-07-25T01:25:52.010000"],["2024-07-25T01:25:53.010000"],["2024-07-25T01:25:54.010000"],["2024-07-25T01:25:55.010000"],["2024-07-25T01:25:56.010000"],["2024-07-25T01:25:57.010000"],["2024-07-25T01:25:58.010000"],["2024-07-25T01:25:59.010000"],["2024-07-25T01:26:00.010000"],["2024-07-25T01:26:01.010000"],["2024-07-25T01:26:02.010000"],["2024-07-25T01:26:03.010000"],["2024-07-25T01:26:04.010000"],["2024-07-25T01:26:05.010000"],["2024-07-25T01:26:06.010000"],["2024-07-25T01:26:07.010000"],["2024-07-25T01:26:08.010000"],["2024-07-25T01:26:09.010000"],["2024-07-25T01:26:10.010000"],["2024-07-25T01:26:11.010000"],["2024-07-25T01:26:12.010000"],["2024-07-25T01:26:13.010000"],["2024-07-25T01:26:14.010000"],["2024-07-25T01:26:15.010000"],["2024-07-25T01:26:16.010000"],["2024-07-25T01:26:17.010000"],["2024-07-25T01:26:18.010000"],["2024-07-25T01:26:19.010000"],["2024-07-25T01:26:20.010000"],["2024-07-25T01:26:21.010000"],["2024-07-25T01:26:22.010000"],["2024-07-25T01:26:23.010000"],["2024-07-25T01:26:24.010000"],["2024-07-25T01:26:25.010000"],["2024-07-25T01:26:26.010000"],["2024-07-25T01:26:27.010000"],["2024-07-25T01:26:28.010000"],["2024-07-25T01:26:29.010000"],["2024-07-25T01:26:30.010000"],["2024-07-25T01:26:31.010000"],["2024-07-25T01:26:32.010000"],["2024-07-25T01:26:33.010000"],["2024-07-25T01:26:34.010000"],["2024-07-25T01:26:35.010000"],["2024-07-25T01:26:36.010000"],["2024-07-25T01:26:37.010000"],["2024-07-25T01:26:38.010000"],["2024-07-25T01:26:39.010000"],["2024-07-25T01:26:40.010000"],["2024-07-25T01:26:41.010000"],["2024-07-25T01:26:42.010000"],["2024-07-25T01:26:43.010000"],["2024-07-25T01:26:44.010000"],["2024-07-25T01:26:45.010000"],["2024-07-25T01:26:46.010000"],["2024-07-25T01:26:47.010000"],["2024-07-25T01:26:48.010000"],["2024-07-25T01:26:49.010000"],["2024-07-25T01:26:50.010000"],["2024-07-25T01:26:51.010000"],["2024-07-25T01:26:52.010000"],["2024-07-25T01:26:53.010000"],["2024-07-25T01:26:54.010000"],["2024-07-25T01:26:55.010000"],["2024-07-25T01:26:56.010000"],["2024-07-25T01:26:57.010000"],["2024-07-25T01:26:58.010000"],["2024-07-25T01:26:59.010000"],["2024-07-25T01:27:00.010000"],["2024-07-25T01:27:01.010000"],["2024-07-25T01:27:02.010000"],["2024-07-25T01:27:03.010000"],["2024-07-25T01:27:04.010000"],["2024-07-25T01:27:05.010000"],["2024-07-25T01:27:06.010000"],["2024-07-25T01:27:07.010000"],["2024-07-25T01:27:08.010000"],["2024-07-25T01:27:09.010000"],["2024-07-25T01:27:10.010000"],["2024-07-25T01:27:11.010000"],["2024-07-25T01:27:12.010000"],["2024-07-25T01:27:13.010000"],["2024-07-25T01:27:14.010000"],["2024-07-25T01:27:15.010000"],["2024-07-25T01:27:16.010000"],["2024-07-25T01:27:17.010000"],["2024-07-25T01:27:18.010000"],["2024-07-25T01:27:19.010000"],["2024-07-25T01:27:20.010000"],["2024-07-25T01:27:21.010000"],["2024-07-25T01:27:22.010000"],["2024-07-25T01:27:23.010000"],["2024-07-25T01:27:24.010000"],["2024-07-25T01:27:25.010000"],["2024-07-25T01:27:26.010000"],["2024-07-25T01:27:27.010000"],["2024-07-25T01:27:28.010000"],["2024-07-25T01:27:29.010000"],["2024-07-25T01:27:30.010000"],["2024-07-25T01:27:31.010000"],["2024-07-25T01:27:32.010000"],["2024-07-25T01:27:33.010000"],["2024-07-25T01:27:34.010000"],["2024-07-25T01:27:35.010000"],["2024-07-25T01:27:36.010000"],["2024-07-25T01:27:37.010000"],["2024-07-25T01:27:38.010000"],["2024-07-25T01:27:39.010000"],["2024-07-25T01:27:40.010000"],["2024-07-25T01:27:41.010000"],["2024-07-25T01:27:42.010000"],["2024-07-25T01:27:43.010000"],["2024-07-25T01:27:44.010000"],["2024-07-25T01:27:45.010000"],["2024-07-25T01:27:46.010000"],["2024-07-25T01:27:47.010000"],["2024-07-25T01:27:48.010000"],["2024-07-25T01:27:49.010000"],["2024-07-25T01:27:50.010000"],["2024-07-25T01:27:51.010000"],["2024-07-25T01:27:52.010000"],["2024-07-25T01:27:53.010000"],["2024-07-25T01:27:54.010000"],["2024-07-25T01:27:55.010000"],["2024-07-25T01:27:56.010000"],["2024-07-25T01:27:57.010000"],["2024-07-25T01:27:58.010000"],["2024-07-25T01:27:59.010000"],["2024-07-25T01:28:00.010000"],["2024-07-25T01:28:01.010000"],["2024-07-25T01:28:02.010000"],["2024-07-25T01:28:03.010000"],["2024-07-25T01:28:04.010000"],["2024-07-25T01:28:05.010000"],["2024-07-25T01:28:06.010000"],["2024-07-25T01:28:07.010000"],["2024-07-25T01:28:08.010000"],["2024-07-25T01:28:09.010000"],["2024-07-25T01:28:10.010000"],["2024-07-25T01:28:11.010000"],["2024-07-25T01:28:12.010000"],["2024-07-25T01:28:13.010000"],["2024-07-25T01:28:14.010000"],["2024-07-25T01:28:15.010000"],["2024-07-25T01:28:16.010000"],["2024-07-25T01:28:17.010000"],["2024-07-25T01:28:18.010000"],["2024-07-25T01:28:19.010000"],["2024-07-25T01:28:20.010000"],["2024-07-25T01:28:21.010000"],["2024-07-25T01:28:22.010000"],["2024-07-25T01:28:23.010000"],["2024-07-25T01:28:24.010000"],["2024-07-25T01:28:25.010000"],["2024-07-25T01:28:26.010000"],["2024-07-25T01:28:27.010000"],["2024-07-25T01:28:28.010000"],["2024-07-25T01:28:29.010000"],["2024-07-25T01:28:30.010000"],["2024-07-25T01:28:31.010000"],["2024-07-25T01:28:32.010000"],["2024-07-25T01:28:33.010000"],["2024-07-25T01:28:34.010000"],["2024-07-25T01:28:35.010000"],["2024-07-25T01:28:36.010000"],["2024-07-25T01:28:37.010000"],["2024-07-25T01:28:38.010000"],["2024-07-25T01:28:39.010000"],["2024-07-25T01:28:40.010000"],["2024-07-25T01:28:41.010000"],["2024-07-25T01:28:42.010000"],["2024-07-25T01:28:43.010000"],["2024-07-25T01:28:44.010000"],["2024-07-25T01:28:45.010000"],["2024-07-25T01:28:46.010000"],["2024-07-25T01:28:47.010000"],["2024-07-25T01:28:48.010000"],["2024-07-25T01:28:49.010000"],["2024-07-25T01:28:50.010000"],["2024-07-25T01:28:51.010000"],["2024-07-25T01:28:52.010000"],["2024-07-25T01:28:53.010000"],["2024-07-25T01:28:54.010000"],["2024-07-25T01:28:55.010000"],["2024-07-25T01:28:56.010000"],["2024-07-25T01:28:57.010000"],["2024-07-25T01:28:58.010000"],["2024-07-25T01:28:59.010000"],["2024-07-25T01:29:00.010000"],["2024-07-25T01:29:01.010000"],["2024-07-25T01:29:02.010000"],["2024-07-25T01:29:03.010000"],["2024-07-25T01:29:04.010000"],["2024-07-25T01:29:05.010000"],["2024-07-25T01:29:06.010000"],["2024-07-25T01:29:07.010000"],["2024-07-25T01:29:08.010000"],["2024-07-25T01:29:09.010000"],["2024-07-25T01:29:10.010000"],["2024-07-25T01:29:11.010000"],["2024-07-25T01:29:12.010000"],["2024-07-25T01:29:13.010000"],["2024-07-25T01:29:14.010000"],["2024-07-25T01:29:15.010000"],["2024-07-25T01:29:16.010000"],["2024-07-25T01:29:17.010000"],["2024-07-25T01:29:18.010000"],["2024-07-25T01:29:19.010000"],["2024-07-25T01:29:20.010000"],["2024-07-25T01:29:21.010000"],["2024-07-25T01:29:22.010000"],["2024-07-25T01:29:23.010000"],["2024-07-25T01:29:24.010000"],["2024-07-25T01:29:25.010000"],["2024-07-25T01:29:26.010000"],["2024-07-25T01:29:27.010000"],["2024-07-25T01:29:28.010000"],["2024-07-25T01:29:29.010000"],["2024-07-25T01:29:30.010000"],["2024-07-25T01:29:31.010000"],["2024-07-25T01:29:32.010000"],["2024-07-25T01:29:33.010000"],["2024-07-25T01:29:34.010000"],["2024-07-25T01:29:35.010000"],["2024-07-25T01:29:36.010000"],["2024-07-25T01:29:37.010000"],["2024-07-25T01:29:38.010000"],["2024-07-25T01:29:39.010000"],["2024-07-25T01:29:40.010000"],["2024-07-25T01:29:41.010000"],["2024-07-25T01:29:42.010000"],["2024-07-25T01:29:43.010000"],["2024-07-25T01:29:44.010000"],["2024-07-25T01:29:45.010000"],["2024-07-25T01:29:46.010000"],["2024-07-25T01:29:47.010000"],["2024-07-25T01:29:48.010000"],["2024-07-25T01:29:49.010000"],["2024-07-25T01:29:50.010000"],["2024-07-25T01:29:51.010000"],["2024-07-25T01:29:52.010000"],["2024-07-25T01:29:53.010000"],["2024-07-25T01:29:54.010000"],["2024-07-25T01:29:55.010000"],["2024-07-25T01:29:56.010000"],["2024-07-25T01:29:57.010000"],["2024-07-25T01:29:58.010000"],["2024-07-25T01:29:59.010000"],["2024-07-25T01:30:00.010000"],["2024-07-25T01:30:01.010000"],["2024-07-25T01:30:02.010000"],["2024-07-25T01:30:03.010000"],["2024-07-25T01:30:04.010000"],["2024-07-25T01:30:05.010000"],["2024-07-25T01:30:06.010000"],["2024-07-25T01:30:07.010000"],["2024-07-25T01:30:08.010000"],["2024-07-25T01:30:09.010000"],["2024-07-25T01:30:10.010000"],["2024-07-25T01:30:11.010000"],["2024-07-25T01:30:12.010000"],["2024-07-25T01:30:13.010000"],["2024-07-25T01:30:14.010000"],["2024-07-25T01:30:15.010000"],["2024-07-25T01:30:16.010000"],["2024-07-25T01:30:17.010000"],["2024-07-25T01:30:18.010000"],["2024-07-25T01:30:19.010000"],["2024-07-25T01:30:20.010000"],["2024-07-25T01:30:21.010000"],["2024-07-25T01:30:22.010000"],["2024-07-25T01:30:23.010000"],["2024-07-25T01:30:24.010000"],["2024-07-25T01:30:25.010000"],["2024-07-25T01:30:26.010000"],["2024-07-25T01:30:27.010000"],["2024-07-25T01:30:28.010000"],["2024-07-25T01:30:29.010000"],["2024-07-25T01:30:30.010000"],["2024-07-25T01:30:31.010000"],["2024-07-25T01:30:32.010000"],["2024-07-25T01:30:33.010000"],["2024-07-25T01:30:34.010000"],["2024-07-25T01:30:35.010000"],["2024-07-25T01:30:36.010000"],["2024-07-25T01:30:37.010000"],["2024-07-25T01:30:38.010000"],["2024-07-25T01:30:39.010000"],["2024-07-25T01:30:40.010000"],["2024-07-25T01:30:41.010000"],["2024-07-25T01:30:42.010000"],["2024-07-25T01:30:43.010000"],["2024-07-25T01:30:44.010000"],["2024-07-25T01:30:45.010000"],["2024-07-25T01:30:46.010000"],["2024-07-25T01:30:47.010000"],["2024-07-25T01:30:48.010000"],["2024-07-25T01:30:49.010000"],["2024-07-25T01:30:50.010000"],["2024-07-25T01:30:51.010000"],["2024-07-25T01:30:52.010000"],["2024-07-25T01:30:53.010000"],["2024-07-25T01:30:54.010000"],["2024-07-25T01:30:55.010000"],["2024-07-25T01:30:56.010000"],["2024-07-25T01:30:57.010000"],["2024-07-25T01:30:58.010000"],["2024-07-25T01:30:59.010000"],["2024-07-25T01:31:00.010000"],["2024-07-25T01:31:01.010000"],["2024-07-25T01:31:02.010000"],["2024-07-25T01:31:03.010000"],["2024-07-25T01:31:04.010000"],["2024-07-25T01:31:05.010000"],["2024-07-25T01:31:06.010000"],["2024-07-25T01:31:07.010000"],["2024-07-25T01:31:08.010000"],["2024-07-25T01:31:09.010000"],["2024-07-25T01:31:10.010000"],["2024-07-25T01:31:11.010000"],["2024-07-25T01:31:12.010000"],["2024-07-25T01:31:13.010000"],["2024-07-25T01:31:14.010000"],["2024-07-25T01:31:15.010000"],["2024-07-25T01:31:16.010000"],["2024-07-25T01:31:17.010000"],["2024-07-25T01:31:18.010000"],["2024-07-25T01:31:19.010000"],["2024-07-25T01:31:20.010000"],["2024-07-25T01:31:21.010000"],["2024-07-25T01:31:22.010000"],["2024-07-25T01:31:23.010000"],["2024-07-25T01:31:24.010000"],["2024-07-25T01:31:25.010000"],["2024-07-25T01:31:26.010000"],["2024-07-25T01:31:27.010000"],["2024-07-25T01:31:28.010000"],["2024-07-25T01:31:29.010000"],["2024-07-25T01:31:30.010000"],["2024-07-25T01:31:31.010000"],["2024-07-25T01:31:32.010000"],["2024-07-25T01:31:33.010000"],["2024-07-25T01:31:34.010000"],["2024-07-25T01:31:35.010000"],["2024-07-25T01:31:36.010000"],["2024-07-25T01:31:37.010000"],["2024-07-25T01:31:38.010000"],["2024-07-25T01:31:39.010000"],["2024-07-25T01:31:40.010000"],["2024-07-25T01:31:41.010000"],["2024-07-25T01:31:42.010000"],["2024-07-25T01:31:43.010000"],["2024-07-25T01:31:44.010000"],["2024-07-25T01:31:45.010000"],["2024-07-25T01:31:46.010000"],["2024-07-25T01:31:47.010000"],["2024-07-25T01:31:48.010000"],["2024-07-25T01:31:49.010000"],["2024-07-25T01:31:50.010000"],["2024-07-25T01:31:51.010000"],["2024-07-25T01:31:52.010000"],["2024-07-25T01:31:53.010000"],["2024-07-25T01:31:54.010000"],["2024-07-25T01:31:55.010000"],["2024-07-25T01:31:56.010000"],["2024-07-25T01:31:57.010000"],["2024-07-25T01:31:58.010000"],["2024-07-25T01:31:59.010000"],["2024-07-25T01:32:00.010000"],["2024-07-25T01:32:01.010000"],["2024-07-25T01:32:02.010000"],["2024-07-25T01:32:03.010000"],["2024-07-25T01:32:04.010000"],["2024-07-25T01:32:05.010000"],["2024-07-25T01:32:06.010000"],["2024-07-25T01:32:07.010000"],["2024-07-25T01:32:08.010000"],["2024-07-25T01:32:09.010000"],["2024-07-25T01:32:10.010000"],["2024-07-25T01:32:11.010000"],["2024-07-25T01:32:12.010000"],["2024-07-25T01:32:13.010000"],["2024-07-25T01:32:14.010000"],["2024-07-25T01:32:15.010000"],["2024-07-25T01:32:16.010000"],["2024-07-25T01:32:17.010000"],["2024-07-25T01:32:18.010000"],["2024-07-25T01:32:19.010000"],["2024-07-25T01:32:20.010000"],["2024-07-25T01:32:21.010000"],["2024-07-25T01:32:22.010000"],["2024-07-25T01:32:23.010000"],["2024-07-25T01:32:24.010000"],["2024-07-25T01:32:25.010000"],["2024-07-25T01:32:26.010000"],["2024-07-25T01:32:27.010000"],["2024-07-25T01:32:28.010000"],["2024-07-25T01:32:29.010000"],["2024-07-25T01:32:30.010000"],["2024-07-25T01:32:31.010000"],["2024-07-25T01:32:32.010000"],["2024-07-25T01:32:33.010000"],["2024-07-25T01:32:34.010000"],["2024-07-25T01:32:35.010000"],["2024-07-25T01:32:36.010000"],["2024-07-25T01:32:37.010000"],["2024-07-25T01:32:38.010000"],["2024-07-25T01:32:39.010000"],["2024-07-25T01:32:40.010000"],["2024-07-25T01:32:41.010000"],["2024-07-25T01:32:42.010000"],["2024-07-25T01:32:43.010000"],["2024-07-25T01:32:44.010000"],["2024-07-25T01:32:45.010000"],["2024-07-25T01:32:46.010000"],["2024-07-25T01:32:47.010000"],["2024-07-25T01:32:48.010000"],["2024-07-25T01:32:49.010000"],["2024-07-25T01:32:50.010000"],["2024-07-25T01:32:51.010000"],["2024-07-25T01:32:52.010000"],["2024-07-25T01:32:53.010000"],["2024-07-25T01:32:54.010000"],["2024-07-25T01:32:55.010000"],["2024-07-25T01:32:56.010000"],["2024-07-25T01:32:57.010000"],["2024-07-25T01:32:58.010000"],["2024-07-25T01:32:59.010000"],["2024-07-25T01:33:00.010000"],["2024-07-25T01:33:01.010000"],["2024-07-25T01:33:02.010000"],["2024-07-25T01:33:03.010000"],["2024-07-25T01:33:04.010000"],["2024-07-25T01:33:05.010000"],["2024-07-25T01:33:06.010000"],["2024-07-25T01:33:07.010000"],["2024-07-25T01:33:08.010000"],["2024-07-25T01:33:09.010000"],["2024-07-25T01:33:10.010000"],["2024-07-25T01:33:11.010000"],["2024-07-25T01:33:12.010000"],["2024-07-25T01:33:13.010000"],["2024-07-25T01:33:14.010000"],["2024-07-25T01:33:15.010000"],["2024-07-25T01:33:16.010000"],["2024-07-25T01:33:17.010000"],["2024-07-25T01:33:18.010000"],["2024-07-25T01:33:19.010000"],["2024-07-25T01:33:20.010000"],["2024-07-25T01:33:21.010000"],["2024-07-25T01:33:22.010000"],["2024-07-25T01:33:23.010000"],["2024-07-25T01:33:24.010000"],["2024-07-25T01:33:25.010000"],["2024-07-25T01:33:26.010000"],["2024-07-25T01:33:27.010000"],["2024-07-25T01:33:28.010000"],["2024-07-25T01:33:29.010000"],["2024-07-25T01:33:30.010000"],["2024-07-25T01:33:31.010000"],["2024-07-25T01:33:32.010000"],["2024-07-25T01:33:33.010000"],["2024-07-25T01:33:34.010000"],["2024-07-25T01:33:35.010000"],["2024-07-25T01:33:36.010000"],["2024-07-25T01:33:37.010000"],["2024-07-25T01:33:38.010000"],["2024-07-25T01:33:39.010000"],["2024-07-25T01:33:40.010000"],["2024-07-25T01:33:41.010000"],["2024-07-25T01:33:42.010000"],["2024-07-25T01:33:43.010000"],["2024-07-25T01:33:44.010000"],["2024-07-25T01:33:45.010000"],["2024-07-25T01:33:46.010000"],["2024-07-25T01:33:47.010000"],["2024-07-25T01:33:48.010000"],["2024-07-25T01:33:49.010000"],["2024-07-25T01:33:50.010000"],["2024-07-25T01:33:51.010000"],["2024-07-25T01:33:52.010000"],["2024-07-25T01:33:53.010000"],["2024-07-25T01:33:54.010000"],["2024-07-25T01:33:55.010000"],["2024-07-25T01:33:56.010000"],["2024-07-25T01:33:57.010000"],["2024-07-25T01:33:58.010000"],["2024-07-25T01:33:59.010000"],["2024-07-25T01:34:00.010000"],["2024-07-25T01:34:01.010000"],["2024-07-25T01:34:02.010000"],["2024-07-25T01:34:03.010000"],["2024-07-25T01:34:04.010000"],["2024-07-25T01:34:05.010000"],["2024-07-25T01:34:06.010000"],["2024-07-25T01:34:07.010000"],["2024-07-25T01:34:08.010000"],["2024-07-25T01:34:09.010000"],["2024-07-25T01:34:10.010000"],["2024-07-25T01:34:11.010000"],["2024-07-25T01:34:12.010000"],["2024-07-25T01:34:13.010000"],["2024-07-25T01:34:14.010000"],["2024-07-25T01:34:15.010000"],["2024-07-25T01:34:16.010000"],["2024-07-25T01:34:17.010000"],["2024-07-25T01:34:18.010000"],["2024-07-25T01:34:19.010000"],["2024-07-25T01:34:20.010000"],["2024-07-25T01:34:21.010000"],["2024-07-25T01:34:22.010000"],["2024-07-25T01:34:23.010000"],["2024-07-25T01:34:24.010000"],["2024-07-25T01:34:25.010000"],["2024-07-25T01:34:26.010000"],["2024-07-25T01:34:27.010000"],["2024-07-25T01:34:28.010000"],["2024-07-25T01:34:29.010000"],["2024-07-25T01:34:30.010000"],["2024-07-25T01:34:31.010000"],["2024-07-25T01:34:32.010000"],["2024-07-25T01:34:33.010000"],["2024-07-25T01:34:34.010000"],["2024-07-25T01:34:35.010000"],["2024-07-25T01:34:36.010000"],["2024-07-25T01:34:37.010000"],["2024-07-25T01:34:38.010000"],["2024-07-25T01:34:39.010000"],["2024-07-25T01:34:40.010000"],["2024-07-25T01:34:41.010000"],["2024-07-25T01:34:42.010000"],["2024-07-25T01:34:43.010000"],["2024-07-25T01:34:44.010000"],["2024-07-25T01:34:45.010000"],["2024-07-25T01:34:46.010000"],["2024-07-25T01:34:47.010000"],["2024-07-25T01:34:48.010000"],["2024-07-25T01:34:49.010000"],["2024-07-25T01:34:50.010000"],["2024-07-25T01:34:51.010000"],["2024-07-25T01:34:52.010000"],["2024-07-25T01:34:53.010000"],["2024-07-25T01:34:54.010000"],["2024-07-25T01:34:55.010000"],["2024-07-25T01:34:56.010000"],["2024-07-25T01:34:57.010000"],["2024-07-25T01:34:58.010000"],["2024-07-25T01:34:59.010000"],["2024-07-25T01:35:00.010000"],["2024-07-25T01:35:01.010000"],["2024-07-25T01:35:02.010000"],["2024-07-25T01:35:03.010000"],["2024-07-25T01:35:04.010000"],["2024-07-25T01:35:05.010000"],["2024-07-25T01:35:06.010000"],["2024-07-25T01:35:07.010000"],["2024-07-25T01:35:08.010000"],["2024-07-25T01:35:09.010000"],["2024-07-25T01:35:10.010000"],["2024-07-25T01:35:11.010000"],["2024-07-25T01:35:12.010000"],["2024-07-25T01:35:13.010000"],["2024-07-25T01:35:14.010000"],["2024-07-25T01:35:15.010000"],["2024-07-25T01:35:16.010000"],["2024-07-25T01:35:17.010000"],["2024-07-25T01:35:18.010000"],["2024-07-25T01:35:19.010000"],["2024-07-25T01:35:20.010000"],["2024-07-25T01:35:21.010000"],["2024-07-25T01:35:22.010000"],["2024-07-25T01:35:23.010000"],["2024-07-25T01:35:24.010000"],["2024-07-25T01:35:25.010000"],["2024-07-25T01:35:26.010000"],["2024-07-25T01:35:27.010000"],["2024-07-25T01:35:28.010000"],["2024-07-25T01:35:29.010000"],["2024-07-25T01:35:30.010000"],["2024-07-25T01:35:31.010000"],["2024-07-25T01:35:32.010000"],["2024-07-25T01:35:33.010000"],["2024-07-25T01:35:34.010000"],["2024-07-25T01:35:35.010000"],["2024-07-25T01:35:36.010000"],["2024-07-25T01:35:37.010000"],["2024-07-25T01:35:38.010000"],["2024-07-25T01:35:39.010000"],["2024-07-25T01:35:40.010000"],["2024-07-25T01:35:41.010000"],["2024-07-25T01:35:42.010000"],["2024-07-25T01:35:43.010000"],["2024-07-25T01:35:44.010000"],["2024-07-25T01:35:45.010000"],["2024-07-25T01:35:46.010000"],["2024-07-25T01:35:47.010000"],["2024-07-25T01:35:48.010000"],["2024-07-25T01:35:49.010000"],["2024-07-25T01:35:50.010000"],["2024-07-25T01:35:51.010000"],["2024-07-25T01:35:52.010000"],["2024-07-25T01:35:53.010000"],["2024-07-25T01:35:54.010000"],["2024-07-25T01:35:55.010000"],["2024-07-25T01:35:56.010000"],["2024-07-25T01:35:57.010000"],["2024-07-25T01:35:58.010000"],["2024-07-25T01:35:59.010000"],["2024-07-25T01:36:00.010000"],["2024-07-25T01:36:01.010000"],["2024-07-25T01:36:02.010000"],["2024-07-25T01:36:03.010000"],["2024-07-25T01:36:04.010000"],["2024-07-25T01:36:05.010000"],["2024-07-25T01:36:06.010000"],["2024-07-25T01:36:07.010000"],["2024-07-25T01:36:08.010000"],["2024-07-25T01:36:09.010000"],["2024-07-25T01:36:10.010000"],["2024-07-25T01:36:11.010000"],["2024-07-25T01:36:12.010000"],["2024-07-25T01:36:13.010000"],["2024-07-25T01:36:14.010000"],["2024-07-25T01:36:15.010000"],["2024-07-25T01:36:16.010000"],["2024-07-25T01:36:17.010000"],["2024-07-25T01:36:18.010000"],["2024-07-25T01:36:19.010000"],["2024-07-25T01:36:20.010000"],["2024-07-25T01:36:21.010000"],["2024-07-25T01:36:22.010000"],["2024-07-25T01:36:23.010000"],["2024-07-25T01:36:24.010000"],["2024-07-25T01:36:25.010000"],["2024-07-25T01:36:26.010000"],["2024-07-25T01:36:27.010000"],["2024-07-25T01:36:28.010000"],["2024-07-25T01:36:29.010000"],["2024-07-25T01:36:30.010000"],["2024-07-25T01:36:31.010000"],["2024-07-25T01:36:32.010000"],["2024-07-25T01:36:33.010000"],["2024-07-25T01:36:34.010000"],["2024-07-25T01:36:35.010000"],["2024-07-25T01:36:36.010000"],["2024-07-25T01:36:37.010000"],["2024-07-25T01:36:38.010000"],["2024-07-25T01:36:39.010000"],["2024-07-25T01:36:40.010000"],["2024-07-25T01:36:41.010000"],["2024-07-25T01:36:42.010000"],["2024-07-25T01:36:43.010000"],["2024-07-25T01:36:44.010000"],["2024-07-25T01:36:45.010000"],["2024-07-25T01:36:46.010000"],["2024-07-25T01:36:47.010000"],["2024-07-25T01:36:48.010000"],["2024-07-25T01:36:49.010000"],["2024-07-25T01:36:50.010000"],["2024-07-25T01:36:51.010000"],["2024-07-25T01:36:52.010000"],["2024-07-25T01:36:53.010000"],["2024-07-25T01:36:54.010000"],["2024-07-25T01:36:55.010000"],["2024-07-25T01:36:56.010000"],["2024-07-25T01:36:57.010000"],["2024-07-25T01:36:58.010000"],["2024-07-25T01:36:59.010000"],["2024-07-25T01:37:00.010000"],["2024-07-25T01:37:01.010000"],["2024-07-25T01:37:02.010000"],["2024-07-25T01:37:03.010000"],["2024-07-25T01:37:04.010000"],["2024-07-25T01:37:05.010000"],["2024-07-25T01:37:06.010000"],["2024-07-25T01:37:07.010000"],["2024-07-25T01:37:08.010000"],["2024-07-25T01:37:09.010000"],["2024-07-25T01:37:10.010000"],["2024-07-25T01:37:11.010000"],["2024-07-25T01:37:12.010000"],["2024-07-25T01:37:13.010000"],["2024-07-25T01:37:14.010000"],["2024-07-25T01:37:15.010000"],["2024-07-25T01:37:16.010000"],["2024-07-25T01:37:17.010000"],["2024-07-25T01:37:18.010000"],["2024-07-25T01:37:19.010000"],["2024-07-25T01:37:20.010000"],["2024-07-25T01:37:21.010000"],["2024-07-25T01:37:22.010000"],["2024-07-25T01:37:23.010000"],["2024-07-25T01:37:24.010000"],["2024-07-25T01:37:25.010000"],["2024-07-25T01:37:26.010000"],["2024-07-25T01:37:27.010000"],["2024-07-25T01:37:28.010000"],["2024-07-25T01:37:29.010000"],["2024-07-25T01:37:30.010000"],["2024-07-25T01:37:31.010000"],["2024-07-25T01:37:32.010000"],["2024-07-25T01:37:33.010000"],["2024-07-25T01:37:34.010000"],["2024-07-25T01:37:35.010000"],["2024-07-25T01:37:36.010000"],["2024-07-25T01:37:37.010000"],["2024-07-25T01:37:38.010000"],["2024-07-25T01:37:39.010000"],["2024-07-25T01:37:40.010000"],["2024-07-25T01:37:41.010000"],["2024-07-25T01:37:42.010000"],["2024-07-25T01:37:43.010000"],["2024-07-25T01:37:44.010000"],["2024-07-25T01:37:45.010000"],["2024-07-25T01:37:46.010000"],["2024-07-25T01:37:47.010000"],["2024-07-25T01:37:48.010000"],["2024-07-25T01:37:49.010000"],["2024-07-25T01:37:50.010000"],["2024-07-25T01:37:51.010000"],["2024-07-25T01:37:52.010000"],["2024-07-25T01:37:53.010000"],["2024-07-25T01:37:54.010000"],["2024-07-25T01:37:55.010000"],["2024-07-25T01:37:56.010000"],["2024-07-25T01:37:57.010000"],["2024-07-25T01:37:58.010000"],["2024-07-25T01:37:59.010000"],["2024-07-25T01:38:00.010000"],["2024-07-25T01:38:01.010000"],["2024-07-25T01:38:02.010000"],["2024-07-25T01:38:03.010000"],["2024-07-25T01:38:04.010000"],["2024-07-25T01:38:05.010000"],["2024-07-25T01:38:06.010000"],["2024-07-25T01:38:07.010000"],["2024-07-25T01:38:08.010000"],["2024-07-25T01:38:09.010000"],["2024-07-25T01:38:10.010000"],["2024-07-25T01:38:11.010000"],["2024-07-25T01:38:12.010000"],["2024-07-25T01:38:13.010000"],["2024-07-25T01:38:14.010000"],["2024-07-25T01:38:15.010000"],["2024-07-25T01:38:16.010000"],["2024-07-25T01:38:17.010000"],["2024-07-25T01:38:18.010000"],["2024-07-25T01:38:19.010000"],["2024-07-25T01:38:20.010000"],["2024-07-25T01:38:21.010000"],["2024-07-25T01:38:22.010000"],["2024-07-25T01:38:23.010000"],["2024-07-25T01:38:24.010000"],["2024-07-25T01:38:25.010000"],["2024-07-25T01:38:26.010000"],["2024-07-25T01:38:27.010000"],["2024-07-25T01:38:28.010000"],["2024-07-25T01:38:29.010000"],["2024-07-25T01:38:30.010000"],["2024-07-25T01:38:31.010000"],["2024-07-25T01:38:32.010000"],["2024-07-25T01:38:33.010000"],["2024-07-25T01:38:34.010000"],["2024-07-25T01:38:35.010000"],["2024-07-25T01:38:36.010000"],["2024-07-25T01:38:37.010000"],["2024-07-25T01:38:38.010000"],["2024-07-25T01:38:39.010000"],["2024-07-25T01:38:40.010000"],["2024-07-25T01:38:41.010000"],["2024-07-25T01:38:42.010000"],["2024-07-25T01:38:43.010000"],["2024-07-25T01:38:44.010000"],["2024-07-25T01:38:45.010000"],["2024-07-25T01:38:46.010000"],["2024-07-25T01:38:47.010000"],["2024-07-25T01:38:48.010000"],["2024-07-25T01:38:49.010000"],["2024-07-25T01:38:50.010000"],["2024-07-25T01:38:51.010000"],["2024-07-25T01:38:52.010000"],["2024-07-25T01:38:53.010000"],["2024-07-25T01:38:54.010000"],["2024-07-25T01:38:55.010000"],["2024-07-25T01:38:56.010000"],["2024-07-25T01:38:57.010000"],["2024-07-25T01:38:58.010000"],["2024-07-25T01:38:59.010000"],["2024-07-25T01:39:00.010000"],["2024-07-25T01:39:01.010000"],["2024-07-25T01:39:02.010000"],["2024-07-25T01:39:03.010000"],["2024-07-25T01:39:04.010000"],["2024-07-25T01:39:05.010000"],["2024-07-25T01:39:06.010000"],["2024-07-25T01:39:07.010000"],["2024-07-25T01:39:08.010000"],["2024-07-25T01:39:09.010000"],["2024-07-25T01:39:10.010000"],["2024-07-25T01:39:11.010000"],["2024-07-25T01:39:12.010000"],["2024-07-25T01:39:13.010000"],["2024-07-25T01:39:14.010000"],["2024-07-25T01:39:15.010000"],["2024-07-25T01:39:16.010000"],["2024-07-25T01:39:17.010000"],["2024-07-25T01:39:18.010000"],["2024-07-25T01:39:19.010000"],["2024-07-25T01:39:20.010000"],["2024-07-25T01:39:21.010000"],["2024-07-25T01:39:22.010000"],["2024-07-25T01:39:23.010000"],["2024-07-25T01:39:24.010000"],["2024-07-25T01:39:25.010000"],["2024-07-25T01:39:26.010000"],["2024-07-25T01:39:27.010000"],["2024-07-25T01:39:28.010000"],["2024-07-25T01:39:29.010000"],["2024-07-25T01:39:30.010000"],["2024-07-25T01:39:31.010000"],["2024-07-25T01:39:32.010000"],["2024-07-25T01:39:33.010000"],["2024-07-25T01:39:34.010000"],["2024-07-25T01:39:35.010000"],["2024-07-25T01:39:36.010000"],["2024-07-25T01:39:37.010000"],["2024-07-25T01:39:38.010000"],["2024-07-25T01:39:39.010000"],["2024-07-25T01:39:40.010000"],["2024-07-25T01:39:41.010000"],["2024-07-25T01:39:42.010000"],["2024-07-25T01:39:43.010000"],["2024-07-25T01:39:44.010000"],["2024-07-25T01:39:45.010000"],["2024-07-25T01:39:46.010000"],["2024-07-25T01:39:47.010000"],["2024-07-25T01:39:48.010000"],["2024-07-25T01:39:49.010000"],["2024-07-25T01:39:50.010000"],["2024-07-25T01:39:51.010000"],["2024-07-25T01:39:52.010000"],["2024-07-25T01:39:53.010000"],["2024-07-25T01:39:54.010000"],["2024-07-25T01:39:55.010000"],["2024-07-25T01:39:56.010000"],["2024-07-25T01:39:57.010000"],["2024-07-25T01:39:58.010000"],["2024-07-25T01:39:59.010000"],["2024-07-25T01:40:00.010000"],["2024-07-25T01:40:01.010000"],["2024-07-25T01:40:02.010000"],["2024-07-25T01:40:03.010000"],["2024-07-25T01:40:04.010000"],["2024-07-25T01:40:05.010000"],["2024-07-25T01:40:06.010000"],["2024-07-25T01:40:07.010000"],["2024-07-25T01:40:08.010000"],["2024-07-25T01:40:09.010000"],["2024-07-25T01:40:10.010000"],["2024-07-25T01:40:11.010000"],["2024-07-25T01:40:12.010000"],["2024-07-25T01:40:13.010000"],["2024-07-25T01:40:14.010000"],["2024-07-25T01:40:15.010000"],["2024-07-25T01:40:16.010000"],["2024-07-25T01:40:17.010000"],["2024-07-25T01:40:18.010000"],["2024-07-25T01:40:19.010000"],["2024-07-25T01:40:20.010000"],["2024-07-25T01:40:21.010000"],["2024-07-25T01:40:22.010000"],["2024-07-25T01:40:23.010000"],["2024-07-25T01:40:24.010000"],["2024-07-25T01:40:25.010000"],["2024-07-25T01:40:26.010000"],["2024-07-25T01:40:27.010000"],["2024-07-25T01:40:28.010000"],["2024-07-25T01:40:29.010000"],["2024-07-25T01:40:30.010000"],["2024-07-25T01:40:31.010000"],["2024-07-25T01:40:32.010000"],["2024-07-25T01:40:33.010000"],["2024-07-25T01:40:34.010000"],["2024-07-25T01:40:35.010000"],["2024-07-25T01:40:36.010000"],["2024-07-25T01:40:37.010000"],["2024-07-25T01:40:38.010000"],["2024-07-25T01:40:39.010000"],["2024-07-25T01:40:40.010000"],["2024-07-25T01:40:41.010000"],["2024-07-25T01:40:42.010000"],["2024-07-25T01:40:43.010000"],["2024-07-25T01:40:44.010000"],["2024-07-25T01:40:45.010000"],["2024-07-25T01:40:46.010000"],["2024-07-25T01:40:47.010000"],["2024-07-25T01:40:48.010000"],["2024-07-25T01:40:49.010000"],["2024-07-25T01:40:50.010000"],["2024-07-25T01:40:51.010000"],["2024-07-25T01:40:52.010000"],["2024-07-25T01:40:53.010000"],["2024-07-25T01:40:54.010000"],["2024-07-25T01:40:55.010000"],["2024-07-25T01:40:56.010000"],["2024-07-25T01:40:57.010000"],["2024-07-25T01:40:58.010000"],["2024-07-25T01:40:59.010000"],["2024-07-25T01:41:00.010000"],["2024-07-25T01:41:01.010000"],["2024-07-25T01:41:02.010000"],["2024-07-25T01:41:03.010000"],["2024-07-25T01:41:04.010000"],["2024-07-25T01:41:05.010000"],["2024-07-25T01:41:06.010000"],["2024-07-25T01:41:07.010000"],["2024-07-25T01:41:08.010000"],["2024-07-25T01:41:09.010000"],["2024-07-25T01:41:10.010000"],["2024-07-25T01:41:11.010000"],["2024-07-25T01:41:12.010000"],["2024-07-25T01:41:13.010000"],["2024-07-25T01:41:14.010000"],["2024-07-25T01:41:15.010000"],["2024-07-25T01:41:16.010000"],["2024-07-25T01:41:17.010000"],["2024-07-25T01:41:18.010000"],["2024-07-25T01:41:19.010000"],["2024-07-25T01:41:20.010000"],["2024-07-25T01:41:21.010000"],["2024-07-25T01:41:22.010000"],["2024-07-25T01:41:23.010000"],["2024-07-25T01:41:24.010000"],["2024-07-25T01:41:25.010000"],["2024-07-25T01:41:26.010000"],["2024-07-25T01:41:27.010000"],["2024-07-25T01:41:28.010000"],["2024-07-25T01:41:29.010000"],["2024-07-25T01:41:30.010000"],["2024-07-25T01:41:31.010000"],["2024-07-25T01:41:32.010000"],["2024-07-25T01:41:33.010000"],["2024-07-25T01:41:34.010000"],["2024-07-25T01:41:35.010000"],["2024-07-25T01:41:36.010000"],["2024-07-25T01:41:37.010000"],["2024-07-25T01:41:38.010000"],["2024-07-25T01:41:39.010000"],["2024-07-25T01:41:40.010000"],["2024-07-25T01:41:41.010000"],["2024-07-25T01:41:42.010000"],["2024-07-25T01:41:43.010000"],["2024-07-25T01:41:44.010000"],["2024-07-25T01:41:45.010000"],["2024-07-25T01:41:46.010000"],["2024-07-25T01:41:47.010000"],["2024-07-25T01:41:48.010000"],["2024-07-25T01:41:49.010000"],["2024-07-25T01:41:50.010000"],["2024-07-25T01:41:51.010000"],["2024-07-25T01:41:52.010000"],["2024-07-25T01:41:53.010000"],["2024-07-25T01:41:54.010000"],["2024-07-25T01:41:55.010000"],["2024-07-25T01:41:56.010000"],["2024-07-25T01:41:57.010000"],["2024-07-25T01:41:58.010000"],["2024-07-25T01:41:59.010000"],["2024-07-25T01:42:00.010000"],["2024-07-25T01:42:01.010000"],["2024-07-25T01:42:02.010000"],["2024-07-25T01:42:03.010000"],["2024-07-25T01:42:04.010000"],["2024-07-25T01:42:05.010000"],["2024-07-25T01:42:06.010000"],["2024-07-25T01:42:07.010000"],["2024-07-25T01:42:08.010000"],["2024-07-25T01:42:09.010000"],["2024-07-25T01:42:10.010000"],["2024-07-25T01:42:11.010000"],["2024-07-25T01:42:12.010000"],["2024-07-25T01:42:13.010000"],["2024-07-25T01:42:14.010000"],["2024-07-25T01:42:15.010000"],["2024-07-25T01:42:16.010000"],["2024-07-25T01:42:17.010000"],["2024-07-25T01:42:18.010000"],["2024-07-25T01:42:19.010000"],["2024-07-25T01:42:20.010000"],["2024-07-25T01:42:21.010000"],["2024-07-25T01:42:22.010000"],["2024-07-25T01:42:23.010000"],["2024-07-25T01:42:24.010000"],["2024-07-25T01:42:25.010000"],["2024-07-25T01:42:26.010000"],["2024-07-25T01:42:27.010000"],["2024-07-25T01:42:28.010000"],["2024-07-25T01:42:29.010000"],["2024-07-25T01:42:30.010000"],["2024-07-25T01:42:31.010000"],["2024-07-25T01:42:32.010000"],["2024-07-25T01:42:33.010000"],["2024-07-25T01:42:34.010000"],["2024-07-25T01:42:35.010000"],["2024-07-25T01:42:36.010000"],["2024-07-25T01:42:37.010000"],["2024-07-25T01:42:38.010000"],["2024-07-25T01:42:39.010000"],["2024-07-25T01:42:40.010000"],["2024-07-25T01:42:41.010000"],["2024-07-25T01:42:42.010000"],["2024-07-25T01:42:43.010000"],["2024-07-25T01:42:44.010000"],["2024-07-25T01:42:45.010000"],["2024-07-25T01:42:46.010000"],["2024-07-25T01:42:47.010000"],["2024-07-25T01:42:48.010000"],["2024-07-25T01:42:49.010000"],["2024-07-25T01:42:50.010000"],["2024-07-25T01:42:51.010000"],["2024-07-25T01:42:52.010000"],["2024-07-25T01:42:53.010000"],["2024-07-25T01:42:54.010000"],["2024-07-25T01:42:55.010000"],["2024-07-25T01:42:56.010000"],["2024-07-25T01:42:57.010000"],["2024-07-25T01:42:58.010000"],["2024-07-25T01:42:59.010000"],["2024-07-25T01:43:00.010000"],["2024-07-25T01:43:01.010000"],["2024-07-25T01:43:02.010000"],["2024-07-25T01:43:03.010000"],["2024-07-25T01:43:04.010000"],["2024-07-25T01:43:05.010000"],["2024-07-25T01:43:06.010000"],["2024-07-25T01:43:07.010000"],["2024-07-25T01:43:08.010000"],["2024-07-25T01:43:09.010000"],["2024-07-25T01:43:10.010000"],["2024-07-25T01:43:11.010000"],["2024-07-25T01:43:12.010000"],["2024-07-25T01:43:13.010000"],["2024-07-25T01:43:14.010000"],["2024-07-25T01:43:15.010000"],["2024-07-25T01:43:16.010000"],["2024-07-25T01:43:17.010000"],["2024-07-25T01:43:18.010000"],["2024-07-25T01:43:19.010000"],["2024-07-25T01:43:20.010000"],["2024-07-25T01:43:21.010000"],["2024-07-25T01:43:22.010000"],["2024-07-25T01:43:23.010000"],["2024-07-25T01:43:24.010000"],["2024-07-25T01:43:25.010000"],["2024-07-25T01:43:26.010000"],["2024-07-25T01:43:27.010000"],["2024-07-25T01:43:28.010000"],["2024-07-25T01:43:29.010000"],["2024-07-25T01:43:30.010000"],["2024-07-25T01:43:31.010000"],["2024-07-25T01:43:32.010000"],["2024-07-25T01:43:33.010000"],["2024-07-25T01:43:34.010000"],["2024-07-25T01:43:35.010000"],["2024-07-25T01:43:36.010000"],["2024-07-25T01:43:37.010000"],["2024-07-25T01:43:38.010000"],["2024-07-25T01:43:39.010000"],["2024-07-25T01:43:40.010000"],["2024-07-25T01:43:41.010000"],["2024-07-25T01:43:42.010000"],["2024-07-25T01:43:43.010000"],["2024-07-25T01:43:44.010000"],["2024-07-25T01:43:45.010000"],["2024-07-25T01:43:46.010000"],["2024-07-25T01:43:47.010000"],["2024-07-25T01:43:48.010000"],["2024-07-25T01:43:49.010000"],["2024-07-25T01:43:50.010000"],["2024-07-25T01:43:51.010000"],["2024-07-25T01:43:52.010000"],["2024-07-25T01:43:53.010000"],["2024-07-25T01:43:54.010000"],["2024-07-25T01:43:55.010000"],["2024-07-25T01:43:56.010000"],["2024-07-25T01:43:57.010000"],["2024-07-25T01:43:58.010000"],["2024-07-25T01:43:59.010000"],["2024-07-25T01:44:00.010000"],["2024-07-25T01:44:01.010000"],["2024-07-25T01:44:02.010000"],["2024-07-25T01:44:03.010000"],["2024-07-25T01:44:04.010000"],["2024-07-25T01:44:05.010000"],["2024-07-25T01:44:06.010000"],["2024-07-25T01:44:07.010000"],["2024-07-25T01:44:08.010000"],["2024-07-25T01:44:09.010000"],["2024-07-25T01:44:10.010000"],["2024-07-25T01:44:11.010000"],["2024-07-25T01:44:12.010000"],["2024-07-25T01:44:13.010000"],["2024-07-25T01:44:14.010000"],["2024-07-25T01:44:15.010000"],["2024-07-25T01:44:16.010000"],["2024-07-25T01:44:17.010000"],["2024-07-25T01:44:18.010000"],["2024-07-25T01:44:19.010000"],["2024-07-25T01:44:20.010000"],["2024-07-25T01:44:21.010000"],["2024-07-25T01:44:22.010000"],["2024-07-25T01:44:23.010000"],["2024-07-25T01:44:24.010000"],["2024-07-25T01:44:25.010000"],["2024-07-25T01:44:26.010000"],["2024-07-25T01:44:27.010000"],["2024-07-25T01:44:28.010000"],["2024-07-25T01:44:29.010000"],["2024-07-25T01:44:30.010000"],["2024-07-25T01:44:31.010000"],["2024-07-25T01:44:32.010000"],["2024-07-25T01:44:33.010000"],["2024-07-25T01:44:34.010000"],["2024-07-25T01:44:35.010000"],["2024-07-25T01:44:36.010000"],["2024-07-25T01:44:37.010000"],["2024-07-25T01:44:38.010000"],["2024-07-25T01:44:39.010000"],["2024-07-25T01:44:40.010000"],["2024-07-25T01:44:41.010000"],["2024-07-25T01:44:42.010000"],["2024-07-25T01:44:43.010000"],["2024-07-25T01:44:44.010000"],["2024-07-25T01:44:45.010000"],["2024-07-25T01:44:46.010000"],["2024-07-25T01:44:47.010000"],["2024-07-25T01:44:48.010000"],["2024-07-25T01:44:49.010000"],["2024-07-25T01:44:50.010000"],["2024-07-25T01:44:51.010000"],["2024-07-25T01:44:52.010000"],["2024-07-25T01:44:53.010000"],["2024-07-25T01:44:54.010000"],["2024-07-25T01:44:55.010000"],["2024-07-25T01:44:56.010000"],["2024-07-25T01:44:57.010000"],["2024-07-25T01:44:58.010000"],["2024-07-25T01:44:59.010000"],["2024-07-25T01:45:00.010000"],["2024-07-25T01:45:01.010000"],["2024-07-25T01:45:02.010000"],["2024-07-25T01:45:03.010000"],["2024-07-25T01:45:04.010000"],["2024-07-25T01:45:05.010000"],["2024-07-25T01:45:06.010000"],["2024-07-25T01:45:07.010000"],["2024-07-25T01:45:08.010000"],["2024-07-25T01:45:09.010000"],["2024-07-25T01:45:10.010000"],["2024-07-25T01:45:11.010000"],["2024-07-25T01:45:12.010000"],["2024-07-25T01:45:13.010000"],["2024-07-25T01:45:14.010000"],["2024-07-25T01:45:15.010000"],["2024-07-25T01:45:16.010000"],["2024-07-25T01:45:17.010000"],["2024-07-25T01:45:18.010000"],["2024-07-25T01:45:19.010000"],["2024-07-25T01:45:20.010000"],["2024-07-25T01:45:21.010000"],["2024-07-25T01:45:22.010000"],["2024-07-25T01:45:23.010000"],["2024-07-25T01:45:24.010000"],["2024-07-25T01:45:25.010000"],["2024-07-25T01:45:26.010000"],["2024-07-25T01:45:27.010000"],["2024-07-25T01:45:28.010000"],["2024-07-25T01:45:29.010000"],["2024-07-25T01:45:30.010000"],["2024-07-25T01:45:31.010000"],["2024-07-25T01:45:32.010000"],["2024-07-25T01:45:33.010000"],["2024-07-25T01:45:34.010000"],["2024-07-25T01:45:35.010000"],["2024-07-25T01:45:36.010000"],["2024-07-25T01:45:37.010000"],["2024-07-25T01:45:38.010000"],["2024-07-25T01:45:39.010000"],["2024-07-25T01:45:40.010000"],["2024-07-25T01:45:41.010000"],["2024-07-25T01:45:42.010000"],["2024-07-25T01:45:43.010000"],["2024-07-25T01:45:44.010000"],["2024-07-25T01:45:45.010000"],["2024-07-25T01:45:46.010000"],["2024-07-25T01:45:47.010000"],["2024-07-25T01:45:48.010000"],["2024-07-25T01:45:49.010000"],["2024-07-25T01:45:50.010000"],["2024-07-25T01:45:51.010000"],["2024-07-25T01:45:52.010000"],["2024-07-25T01:45:53.010000"],["2024-07-25T01:45:54.010000"],["2024-07-25T01:45:55.010000"],["2024-07-25T01:45:56.010000"],["2024-07-25T01:45:57.010000"],["2024-07-25T01:45:58.010000"],["2024-07-25T01:45:59.010000"],["2024-07-25T01:46:00.010000"],["2024-07-25T01:46:01.010000"],["2024-07-25T01:46:02.010000"],["2024-07-25T01:46:03.010000"],["2024-07-25T01:46:04.010000"],["2024-07-25T01:46:05.010000"],["2024-07-25T01:46:06.010000"],["2024-07-25T01:46:07.010000"],["2024-07-25T01:46:08.010000"],["2024-07-25T01:46:09.010000"],["2024-07-25T01:46:10.010000"],["2024-07-25T01:46:11.010000"],["2024-07-25T01:46:12.010000"],["2024-07-25T01:46:13.010000"],["2024-07-25T01:46:14.010000"],["2024-07-25T01:46:15.010000"],["2024-07-25T01:46:16.010000"],["2024-07-25T01:46:17.010000"],["2024-07-25T01:46:18.010000"],["2024-07-25T01:46:19.010000"],["2024-07-25T01:46:20.010000"],["2024-07-25T01:46:21.010000"],["2024-07-25T01:46:22.010000"],["2024-07-25T01:46:23.010000"],["2024-07-25T01:46:24.010000"],["2024-07-25T01:46:25.010000"],["2024-07-25T01:46:26.010000"],["2024-07-25T01:46:27.010000"],["2024-07-25T01:46:28.010000"],["2024-07-25T01:46:29.010000"],["2024-07-25T01:46:30.010000"],["2024-07-25T01:46:31.010000"],["2024-07-25T01:46:32.010000"],["2024-07-25T01:46:33.010000"],["2024-07-25T01:46:34.010000"],["2024-07-25T01:46:35.010000"],["2024-07-25T01:46:36.010000"],["2024-07-25T01:46:37.010000"],["2024-07-25T01:46:38.010000"],["2024-07-25T01:46:39.010000"],["2024-07-25T01:46:40.010000"],["2024-07-25T01:46:41.010000"],["2024-07-25T01:46:42.010000"],["2024-07-25T01:46:43.010000"],["2024-07-25T01:46:44.010000"],["2024-07-25T01:46:45.010000"],["2024-07-25T01:46:46.010000"],["2024-07-25T01:46:47.010000"],["2024-07-25T01:46:48.010000"],["2024-07-25T01:46:49.010000"],["2024-07-25T01:46:50.010000"],["2024-07-25T01:46:51.010000"],["2024-07-25T01:46:52.010000"],["2024-07-25T01:46:53.010000"],["2024-07-25T01:46:54.010000"],["2024-07-25T01:46:55.010000"],["2024-07-25T01:46:56.010000"],["2024-07-25T01:46:57.010000"],["2024-07-25T01:46:58.010000"],["2024-07-25T01:46:59.010000"],["2024-07-25T01:47:00.010000"],["2024-07-25T01:47:01.010000"],["2024-07-25T01:47:02.010000"],["2024-07-25T01:47:03.010000"],["2024-07-25T01:47:04.010000"],["2024-07-25T01:47:05.010000"],["2024-07-25T01:47:06.010000"],["2024-07-25T01:47:07.010000"],["2024-07-25T01:47:08.010000"],["2024-07-25T01:47:09.010000"],["2024-07-25T01:47:10.010000"],["2024-07-25T01:47:11.010000"],["2024-07-25T01:47:12.010000"],["2024-07-25T01:47:13.010000"],["2024-07-25T01:47:14.010000"],["2024-07-25T01:47:15.010000"],["2024-07-25T01:47:16.010000"],["2024-07-25T01:47:17.010000"],["2024-07-25T01:47:18.010000"],["2024-07-25T01:47:19.010000"],["2024-07-25T01:47:20.010000"],["2024-07-25T01:47:21.010000"],["2024-07-25T01:47:22.010000"],["2024-07-25T01:47:23.010000"],["2024-07-25T01:47:24.010000"],["2024-07-25T01:47:25.010000"],["2024-07-25T01:47:26.010000"],["2024-07-25T01:47:27.010000"],["2024-07-25T01:47:28.010000"],["2024-07-25T01:47:29.010000"],["2024-07-25T01:47:30.010000"],["2024-07-25T01:47:31.010000"],["2024-07-25T01:47:32.010000"],["2024-07-25T01:47:33.010000"],["2024-07-25T01:47:34.010000"],["2024-07-25T01:47:35.010000"],["2024-07-25T01:47:36.010000"],["2024-07-25T01:47:37.010000"],["2024-07-25T01:47:38.010000"],["2024-07-25T01:47:39.010000"],["2024-07-25T01:47:40.010000"],["2024-07-25T01:47:41.010000"],["2024-07-25T01:47:42.010000"],["2024-07-25T01:47:43.010000"],["2024-07-25T01:47:44.010000"],["2024-07-25T01:47:45.010000"],["2024-07-25T01:47:46.010000"],["2024-07-25T01:47:47.010000"],["2024-07-25T01:47:48.010000"],["2024-07-25T01:47:49.010000"],["2024-07-25T01:47:50.010000"],["2024-07-25T01:47:51.010000"],["2024-07-25T01:47:52.010000"],["2024-07-25T01:47:53.010000"],["2024-07-25T01:47:54.010000"],["2024-07-25T01:47:55.010000"],["2024-07-25T01:47:56.010000"],["2024-07-25T01:47:57.010000"],["2024-07-25T01:47:58.010000"],["2024-07-25T01:47:59.010000"],["2024-07-25T01:48:00.010000"],["2024-07-25T01:48:01.010000"],["2024-07-25T01:48:02.010000"],["2024-07-25T01:48:03.010000"],["2024-07-25T01:48:04.010000"],["2024-07-25T01:48:05.010000"],["2024-07-25T01:48:06.010000"],["2024-07-25T01:48:07.010000"],["2024-07-25T01:48:08.010000"],["2024-07-25T01:48:09.010000"],["2024-07-25T01:48:10.010000"],["2024-07-25T01:48:11.010000"],["2024-07-25T01:48:12.010000"],["2024-07-25T01:48:13.010000"],["2024-07-25T01:48:14.010000"],["2024-07-25T01:48:15.010000"],["2024-07-25T01:48:16.010000"],["2024-07-25T01:48:17.010000"],["2024-07-25T01:48:18.010000"],["2024-07-25T01:48:19.010000"],["2024-07-25T01:48:20.010000"],["2024-07-25T01:48:21.010000"],["2024-07-25T01:48:22.010000"],["2024-07-25T01:48:23.010000"],["2024-07-25T01:48:24.010000"],["2024-07-25T01:48:25.010000"],["2024-07-25T01:48:26.010000"],["2024-07-25T01:48:27.010000"],["2024-07-25T01:48:28.010000"],["2024-07-25T01:48:29.010000"],["2024-07-25T01:48:30.010000"],["2024-07-25T01:48:31.010000"],["2024-07-25T01:48:32.010000"],["2024-07-25T01:48:33.010000"],["2024-07-25T01:48:34.010000"],["2024-07-25T01:48:35.010000"],["2024-07-25T01:48:36.010000"],["2024-07-25T01:48:37.010000"],["2024-07-25T01:48:38.010000"],["2024-07-25T01:48:39.010000"],["2024-07-25T01:48:40.010000"],["2024-07-25T01:48:41.010000"],["2024-07-25T01:48:42.010000"],["2024-07-25T01:48:43.010000"],["2024-07-25T01:48:44.010000"],["2024-07-25T01:48:45.010000"],["2024-07-25T01:48:46.010000"],["2024-07-25T01:48:47.010000"],["2024-07-25T01:48:48.010000"],["2024-07-25T01:48:49.010000"],["2024-07-25T01:48:50.010000"],["2024-07-25T01:48:51.010000"],["2024-07-25T01:48:52.010000"],["2024-07-25T01:48:53.010000"],["2024-07-25T01:48:54.010000"],["2024-07-25T01:48:55.010000"],["2024-07-25T01:48:56.010000"],["2024-07-25T01:48:57.010000"],["2024-07-25T01:48:58.010000"],["2024-07-25T01:48:59.010000"],["2024-07-25T01:49:00.010000"],["2024-07-25T01:49:01.010000"],["2024-07-25T01:49:02.010000"],["2024-07-25T01:49:03.010000"],["2024-07-25T01:49:04.010000"],["2024-07-25T01:49:05.010000"],["2024-07-25T01:49:06.010000"],["2024-07-25T01:49:07.010000"],["2024-07-25T01:49:08.010000"],["2024-07-25T01:49:09.010000"],["2024-07-25T01:49:10.010000"],["2024-07-25T01:49:11.010000"],["2024-07-25T01:49:12.010000"],["2024-07-25T01:49:13.010000"],["2024-07-25T01:49:14.010000"],["2024-07-25T01:49:15.010000"],["2024-07-25T01:49:16.010000"],["2024-07-25T01:49:17.010000"],["2024-07-25T01:49:18.010000"],["2024-07-25T01:49:19.010000"],["2024-07-25T01:49:20.010000"],["2024-07-25T01:49:21.010000"],["2024-07-25T01:49:22.010000"],["2024-07-25T01:49:23.010000"],["2024-07-25T01:49:24.010000"],["2024-07-25T01:49:25.010000"],["2024-07-25T01:49:26.010000"],["2024-07-25T01:49:27.010000"],["2024-07-25T01:49:28.010000"],["2024-07-25T01:49:29.010000"],["2024-07-25T01:49:30.010000"],["2024-07-25T01:49:31.010000"],["2024-07-25T01:49:32.010000"],["2024-07-25T01:49:33.010000"],["2024-07-25T01:49:34.010000"],["2024-07-25T01:49:35.010000"],["2024-07-25T01:49:36.010000"],["2024-07-25T01:49:37.010000"],["2024-07-25T01:49:38.010000"],["2024-07-25T01:49:39.010000"],["2024-07-25T01:49:40.010000"],["2024-07-25T01:49:41.010000"],["2024-07-25T01:49:42.010000"],["2024-07-25T01:49:43.010000"],["2024-07-25T01:49:44.010000"],["2024-07-25T01:49:45.010000"],["2024-07-25T01:49:46.010000"],["2024-07-25T01:49:47.010000"],["2024-07-25T01:49:48.010000"],["2024-07-25T01:49:49.010000"],["2024-07-25T01:49:50.010000"],["2024-07-25T01:49:51.010000"],["2024-07-25T01:49:52.010000"],["2024-07-25T01:49:53.010000"],["2024-07-25T01:49:54.010000"],["2024-07-25T01:49:55.010000"],["2024-07-25T01:49:56.010000"],["2024-07-25T01:49:57.010000"],["2024-07-25T01:49:58.010000"],["2024-07-25T01:49:59.010000"],["2024-07-25T01:50:00.010000"],["2024-07-25T01:50:01.010000"],["2024-07-25T01:50:02.010000"],["2024-07-25T01:50:03.010000"],["2024-07-25T01:50:04.010000"],["2024-07-25T01:50:05.010000"],["2024-07-25T01:50:06.010000"],["2024-07-25T01:50:07.010000"],["2024-07-25T01:50:08.010000"],["2024-07-25T01:50:09.010000"],["2024-07-25T01:50:10.010000"],["2024-07-25T01:50:11.010000"],["2024-07-25T01:50:12.010000"],["2024-07-25T01:50:13.010000"],["2024-07-25T01:50:14.010000"],["2024-07-25T01:50:15.010000"],["2024-07-25T01:50:16.010000"],["2024-07-25T01:50:17.010000"],["2024-07-25T01:50:18.010000"],["2024-07-25T01:50:19.010000"],["2024-07-25T01:50:20.010000"],["2024-07-25T01:50:21.010000"],["2024-07-25T01:50:22.010000"],["2024-07-25T01:50:23.010000"],["2024-07-25T01:50:24.010000"],["2024-07-25T01:50:25.010000"],["2024-07-25T01:50:26.010000"],["2024-07-25T01:50:27.010000"],["2024-07-25T01:50:28.010000"],["2024-07-25T01:50:29.010000"],["2024-07-25T01:50:30.010000"],["2024-07-25T01:50:31.010000"],["2024-07-25T01:50:32.010000"],["2024-07-25T01:50:33.010000"],["2024-07-25T01:50:34.010000"],["2024-07-25T01:50:35.010000"],["2024-07-25T01:50:36.010000"],["2024-07-25T01:50:37.010000"],["2024-07-25T01:50:38.010000"],["2024-07-25T01:50:39.010000"],["2024-07-25T01:50:40.010000"],["2024-07-25T01:50:41.010000"],["2024-07-25T01:50:42.010000"],["2024-07-25T01:50:43.010000"],["2024-07-25T01:50:44.010000"],["2024-07-25T01:50:45.010000"],["2024-07-25T01:50:46.010000"],["2024-07-25T01:50:47.010000"],["2024-07-25T01:50:48.010000"],["2024-07-25T01:50:49.010000"],["2024-07-25T01:50:50.010000"],["2024-07-25T01:50:51.010000"],["2024-07-25T01:50:52.010000"],["2024-07-25T01:50:53.010000"],["2024-07-25T01:50:54.010000"],["2024-07-25T01:50:55.010000"],["2024-07-25T01:50:56.010000"],["2024-07-25T01:50:57.010000"],["2024-07-25T01:50:58.010000"],["2024-07-25T01:50:59.010000"],["2024-07-25T01:51:00.010000"],["2024-07-25T01:51:01.010000"],["2024-07-25T01:51:02.010000"],["2024-07-25T01:51:03.010000"],["2024-07-25T01:51:04.010000"],["2024-07-25T01:51:05.010000"],["2024-07-25T01:51:06.010000"],["2024-07-25T01:51:07.010000"],["2024-07-25T01:51:08.010000"],["2024-07-25T01:51:09.010000"],["2024-07-25T01:51:10.010000"],["2024-07-25T01:51:11.010000"],["2024-07-25T01:51:12.010000"],["2024-07-25T01:51:13.010000"],["2024-07-25T01:51:14.010000"],["2024-07-25T01:51:15.010000"],["2024-07-25T01:51:16.010000"],["2024-07-25T01:51:17.010000"],["2024-07-25T01:51:18.010000"],["2024-07-25T01:51:19.010000"],["2024-07-25T01:51:20.010000"],["2024-07-25T01:51:21.010000"],["2024-07-25T01:51:22.010000"],["2024-07-25T01:51:23.010000"],["2024-07-25T01:51:24.010000"],["2024-07-25T01:51:25.010000"],["2024-07-25T01:51:26.010000"],["2024-07-25T01:51:27.010000"],["2024-07-25T01:51:28.010000"],["2024-07-25T01:51:29.010000"],["2024-07-25T01:51:30.010000"],["2024-07-25T01:51:31.010000"],["2024-07-25T01:51:32.010000"],["2024-07-25T01:51:33.010000"],["2024-07-25T01:51:34.010000"],["2024-07-25T01:51:35.010000"],["2024-07-25T01:51:36.010000"],["2024-07-25T01:51:37.010000"],["2024-07-25T01:51:38.010000"],["2024-07-25T01:51:39.010000"],["2024-07-25T01:51:40.010000"],["2024-07-25T01:51:41.010000"],["2024-07-25T01:51:42.010000"],["2024-07-25T01:51:43.010000"],["2024-07-25T01:51:44.010000"],["2024-07-25T01:51:45.010000"],["2024-07-25T01:51:46.010000"],["2024-07-25T01:51:47.010000"],["2024-07-25T01:51:48.010000"],["2024-07-25T01:51:49.010000"],["2024-07-25T01:51:50.010000"],["2024-07-25T01:51:51.010000"],["2024-07-25T01:51:52.010000"],["2024-07-25T01:51:53.010000"],["2024-07-25T01:51:54.010000"],["2024-07-25T01:51:55.010000"],["2024-07-25T01:51:56.010000"],["2024-07-25T01:51:57.010000"],["2024-07-25T01:51:58.010000"],["2024-07-25T01:51:59.010000"],["2024-07-25T01:52:00.010000"],["2024-07-25T01:52:01.010000"],["2024-07-25T01:52:02.010000"],["2024-07-25T01:52:03.010000"],["2024-07-25T01:52:04.010000"],["2024-07-25T01:52:05.010000"],["2024-07-25T01:52:06.010000"],["2024-07-25T01:52:07.010000"],["2024-07-25T01:52:08.010000"],["2024-07-25T01:52:09.010000"],["2024-07-25T01:52:10.010000"],["2024-07-25T01:52:11.010000"],["2024-07-25T01:52:12.010000"],["2024-07-25T01:52:13.010000"],["2024-07-25T01:52:14.010000"],["2024-07-25T01:52:15.010000"],["2024-07-25T01:52:16.010000"],["2024-07-25T01:52:17.010000"],["2024-07-25T01:52:18.010000"],["2024-07-25T01:52:19.010000"],["2024-07-25T01:52:20.010000"],["2024-07-25T01:52:21.010000"],["2024-07-25T01:52:22.010000"],["2024-07-25T01:52:23.010000"],["2024-07-25T01:52:24.010000"],["2024-07-25T01:52:25.010000"],["2024-07-25T01:52:26.010000"],["2024-07-25T01:52:27.010000"],["2024-07-25T01:52:28.010000"],["2024-07-25T01:52:29.010000"],["2024-07-25T01:52:30.010000"],["2024-07-25T01:52:31.010000"],["2024-07-25T01:52:32.010000"],["2024-07-25T01:52:33.010000"],["2024-07-25T01:52:34.010000"],["2024-07-25T01:52:35.010000"],["2024-07-25T01:52:36.010000"],["2024-07-25T01:52:37.010000"],["2024-07-25T01:52:38.010000"],["2024-07-25T01:52:39.010000"],["2024-07-25T01:52:40.010000"],["2024-07-25T01:52:41.010000"],["2024-07-25T01:52:42.010000"],["2024-07-25T01:52:43.010000"],["2024-07-25T01:52:44.010000"],["2024-07-25T01:52:45.010000"],["2024-07-25T01:52:46.010000"],["2024-07-25T01:52:47.010000"],["2024-07-25T01:52:48.010000"],["2024-07-25T01:52:49.010000"],["2024-07-25T01:52:50.010000"],["2024-07-25T01:52:51.010000"],["2024-07-25T01:52:52.010000"],["2024-07-25T01:52:53.010000"],["2024-07-25T01:52:54.010000"],["2024-07-25T01:52:55.010000"],["2024-07-25T01:52:56.010000"],["2024-07-25T01:52:57.010000"],["2024-07-25T01:52:58.010000"],["2024-07-25T01:52:59.010000"],["2024-07-25T01:53:00.010000"],["2024-07-25T01:53:01.010000"],["2024-07-25T01:53:02.010000"],["2024-07-25T01:53:03.010000"],["2024-07-25T01:53:04.010000"],["2024-07-25T01:53:05.010000"],["2024-07-25T01:53:06.010000"],["2024-07-25T01:53:07.010000"],["2024-07-25T01:53:08.010000"],["2024-07-25T01:53:09.010000"],["2024-07-25T01:53:10.010000"],["2024-07-25T01:53:11.010000"],["2024-07-25T01:53:12.010000"],["2024-07-25T01:53:13.010000"],["2024-07-25T01:53:14.010000"],["2024-07-25T01:53:15.010000"],["2024-07-25T01:53:16.010000"],["2024-07-25T01:53:17.010000"],["2024-07-25T01:53:18.010000"],["2024-07-25T01:53:19.010000"],["2024-07-25T01:53:20.010000"],["2024-07-25T01:53:21.010000"],["2024-07-25T01:53:22.010000"],["2024-07-25T01:53:23.010000"],["2024-07-25T01:53:24.010000"],["2024-07-25T01:53:25.010000"],["2024-07-25T01:53:26.010000"],["2024-07-25T01:53:27.010000"],["2024-07-25T01:53:28.010000"],["2024-07-25T01:53:29.010000"],["2024-07-25T01:53:30.010000"],["2024-07-25T01:53:31.010000"],["2024-07-25T01:53:32.010000"],["2024-07-25T01:53:33.010000"],["2024-07-25T01:53:34.010000"],["2024-07-25T01:53:35.010000"],["2024-07-25T01:53:36.010000"],["2024-07-25T01:53:37.010000"],["2024-07-25T01:53:38.010000"],["2024-07-25T01:53:39.010000"],["2024-07-25T01:53:40.010000"],["2024-07-25T01:53:41.010000"],["2024-07-25T01:53:42.010000"],["2024-07-25T01:53:43.010000"],["2024-07-25T01:53:44.010000"],["2024-07-25T01:53:45.010000"],["2024-07-25T01:53:46.010000"],["2024-07-25T01:53:47.010000"],["2024-07-25T01:53:48.010000"],["2024-07-25T01:53:49.010000"],["2024-07-25T01:53:50.010000"],["2024-07-25T01:53:51.010000"],["2024-07-25T01:53:52.010000"],["2024-07-25T01:53:53.010000"],["2024-07-25T01:53:54.010000"],["2024-07-25T01:53:55.010000"],["2024-07-25T01:53:56.010000"],["2024-07-25T01:53:57.010000"],["2024-07-25T01:53:58.010000"],["2024-07-25T01:53:59.010000"],["2024-07-25T01:54:00.010000"],["2024-07-25T01:54:01.010000"],["2024-07-25T01:54:02.010000"],["2024-07-25T01:54:03.010000"],["2024-07-25T01:54:04.010000"],["2024-07-25T01:54:05.010000"],["2024-07-25T01:54:06.010000"],["2024-07-25T01:54:07.010000"],["2024-07-25T01:54:08.010000"],["2024-07-25T01:54:09.010000"],["2024-07-25T01:54:10.010000"],["2024-07-25T01:54:11.010000"],["2024-07-25T01:54:12.010000"],["2024-07-25T01:54:13.010000"],["2024-07-25T01:54:14.010000"],["2024-07-25T01:54:15.010000"],["2024-07-25T01:54:16.010000"],["2024-07-25T01:54:17.010000"],["2024-07-25T01:54:18.010000"],["2024-07-25T01:54:19.010000"],["2024-07-25T01:54:20.010000"],["2024-07-25T01:54:21.010000"],["2024-07-25T01:54:22.010000"],["2024-07-25T01:54:23.010000"],["2024-07-25T01:54:24.010000"],["2024-07-25T01:54:25.010000"],["2024-07-25T01:54:26.010000"],["2024-07-25T01:54:27.010000"],["2024-07-25T01:54:28.010000"],["2024-07-25T01:54:29.010000"],["2024-07-25T01:54:30.010000"],["2024-07-25T01:54:31.010000"],["2024-07-25T01:54:32.010000"],["2024-07-25T01:54:33.010000"],["2024-07-25T01:54:34.010000"],["2024-07-25T01:54:35.010000"],["2024-07-25T01:54:36.010000"],["2024-07-25T01:54:37.010000"],["2024-07-25T01:54:38.010000"],["2024-07-25T01:54:39.010000"],["2024-07-25T01:54:40.010000"],["2024-07-25T01:54:41.010000"],["2024-07-25T01:54:42.010000"],["2024-07-25T01:54:43.010000"],["2024-07-25T01:54:44.010000"],["2024-07-25T01:54:45.010000"],["2024-07-25T01:54:46.010000"],["2024-07-25T01:54:47.010000"],["2024-07-25T01:54:48.010000"],["2024-07-25T01:54:49.010000"],["2024-07-25T01:54:50.010000"],["2024-07-25T01:54:51.010000"],["2024-07-25T01:54:52.010000"],["2024-07-25T01:54:53.010000"],["2024-07-25T01:54:54.010000"],["2024-07-25T01:54:55.010000"],["2024-07-25T01:54:56.010000"],["2024-07-25T01:54:57.010000"],["2024-07-25T01:54:58.010000"],["2024-07-25T01:54:59.010000"],["2024-07-25T01:55:00.010000"],["2024-07-25T01:55:01.010000"],["2024-07-25T01:55:02.010000"],["2024-07-25T01:55:03.010000"],["2024-07-25T01:55:04.010000"],["2024-07-25T01:55:05.010000"],["2024-07-25T01:55:06.010000"],["2024-07-25T01:55:07.010000"],["2024-07-25T01:55:08.010000"],["2024-07-25T01:55:09.010000"],["2024-07-25T01:55:10.010000"],["2024-07-25T01:55:11.010000"],["2024-07-25T01:55:12.010000"],["2024-07-25T01:55:13.010000"],["2024-07-25T01:55:14.010000"],["2024-07-25T01:55:15.010000"],["2024-07-25T01:55:16.010000"],["2024-07-25T01:55:17.010000"],["2024-07-25T01:55:18.010000"],["2024-07-25T01:55:19.010000"],["2024-07-25T01:55:20.010000"],["2024-07-25T01:55:21.010000"],["2024-07-25T01:55:22.010000"],["2024-07-25T01:55:23.010000"],["2024-07-25T01:55:24.010000"],["2024-07-25T01:55:25.010000"],["2024-07-25T01:55:26.010000"],["2024-07-25T01:55:27.010000"],["2024-07-25T01:55:28.010000"],["2024-07-25T01:55:29.010000"],["2024-07-25T01:55:30.010000"],["2024-07-25T01:55:31.010000"],["2024-07-25T01:55:32.010000"],["2024-07-25T01:55:33.010000"],["2024-07-25T01:55:34.010000"],["2024-07-25T01:55:35.010000"],["2024-07-25T01:55:36.010000"],["2024-07-25T01:55:37.010000"],["2024-07-25T01:55:38.010000"],["2024-07-25T01:55:39.010000"],["2024-07-25T01:55:40.010000"],["2024-07-25T01:55:41.010000"],["2024-07-25T01:55:42.010000"],["2024-07-25T01:55:43.010000"],["2024-07-25T01:55:44.010000"],["2024-07-25T01:55:45.010000"],["2024-07-25T01:55:46.010000"],["2024-07-25T01:55:47.010000"],["2024-07-25T01:55:48.010000"],["2024-07-25T01:55:49.010000"],["2024-07-25T01:55:50.010000"],["2024-07-25T01:55:51.010000"],["2024-07-25T01:55:52.010000"],["2024-07-25T01:55:53.010000"],["2024-07-25T01:55:54.010000"],["2024-07-25T01:55:55.010000"],["2024-07-25T01:55:56.010000"],["2024-07-25T01:55:57.010000"],["2024-07-25T01:55:58.010000"],["2024-07-25T01:55:59.010000"],["2024-07-25T01:56:00.010000"],["2024-07-25T01:56:01.010000"],["2024-07-25T01:56:02.010000"],["2024-07-25T01:56:03.010000"],["2024-07-25T01:56:04.010000"],["2024-07-25T01:56:05.010000"],["2024-07-25T01:56:06.010000"],["2024-07-25T01:56:07.010000"],["2024-07-25T01:56:08.010000"],["2024-07-25T01:56:09.010000"],["2024-07-25T01:56:10.010000"],["2024-07-25T01:56:11.010000"],["2024-07-25T01:56:12.010000"],["2024-07-25T01:56:13.010000"],["2024-07-25T01:56:14.010000"],["2024-07-25T01:56:15.010000"],["2024-07-25T01:56:16.010000"],["2024-07-25T01:56:17.010000"],["2024-07-25T01:56:18.010000"],["2024-07-25T01:56:19.010000"],["2024-07-25T01:56:20.010000"],["2024-07-25T01:56:21.010000"],["2024-07-25T01:56:22.010000"],["2024-07-25T01:56:23.010000"],["2024-07-25T01:56:24.010000"],["2024-07-25T01:56:25.010000"],["2024-07-25T01:56:26.010000"],["2024-07-25T01:56:27.010000"],["2024-07-25T01:56:28.010000"],["2024-07-25T01:56:29.010000"],["2024-07-25T01:56:30.010000"],["2024-07-25T01:56:31.010000"],["2024-07-25T01:56:32.010000"],["2024-07-25T01:56:33.010000"],["2024-07-25T01:56:34.010000"],["2024-07-25T01:56:35.010000"],["2024-07-25T01:56:36.010000"],["2024-07-25T01:56:37.010000"],["2024-07-25T01:56:38.010000"],["2024-07-25T01:56:39.010000"],["2024-07-25T01:56:40.010000"],["2024-07-25T01:56:41.010000"],["2024-07-25T01:56:42.010000"],["2024-07-25T01:56:43.010000"],["2024-07-25T01:56:44.010000"],["2024-07-25T01:56:45.010000"],["2024-07-25T01:56:46.010000"],["2024-07-25T01:56:47.010000"],["2024-07-25T01:56:48.010000"],["2024-07-25T01:56:49.010000"],["2024-07-25T01:56:50.010000"],["2024-07-25T01:56:51.010000"],["2024-07-25T01:56:52.010000"],["2024-07-25T01:56:53.010000"],["2024-07-25T01:56:54.010000"],["2024-07-25T01:56:55.010000"],["2024-07-25T01:56:56.010000"],["2024-07-25T01:56:57.010000"],["2024-07-25T01:56:58.010000"],["2024-07-25T01:56:59.010000"],["2024-07-25T01:57:00.010000"],["2024-07-25T01:57:01.010000"],["2024-07-25T01:57:02.010000"],["2024-07-25T01:57:03.010000"],["2024-07-25T01:57:04.010000"],["2024-07-25T01:57:05.010000"],["2024-07-25T01:57:06.010000"],["2024-07-25T01:57:07.010000"],["2024-07-25T01:57:08.010000"],["2024-07-25T01:57:09.010000"],["2024-07-25T01:57:10.010000"],["2024-07-25T01:57:11.010000"],["2024-07-25T01:57:12.010000"],["2024-07-25T01:57:13.010000"],["2024-07-25T01:57:14.010000"],["2024-07-25T01:57:15.010000"],["2024-07-25T01:57:16.010000"],["2024-07-25T01:57:17.010000"],["2024-07-25T01:57:18.010000"],["2024-07-25T01:57:19.010000"],["2024-07-25T01:57:20.010000"],["2024-07-25T01:57:21.010000"],["2024-07-25T01:57:22.010000"],["2024-07-25T01:57:23.010000"],["2024-07-25T01:57:24.010000"],["2024-07-25T01:57:25.010000"],["2024-07-25T01:57:26.010000"],["2024-07-25T01:57:27.010000"],["2024-07-25T01:57:28.010000"],["2024-07-25T01:57:29.010000"],["2024-07-25T01:57:30.010000"],["2024-07-25T01:57:31.010000"],["2024-07-25T01:57:32.010000"],["2024-07-25T01:57:33.010000"],["2024-07-25T01:57:34.010000"],["2024-07-25T01:57:35.010000"],["2024-07-25T01:57:36.010000"],["2024-07-25T01:57:37.010000"],["2024-07-25T01:57:38.010000"],["2024-07-25T01:57:39.010000"],["2024-07-25T01:57:40.010000"],["2024-07-25T01:57:41.010000"],["2024-07-25T01:57:42.010000"],["2024-07-25T01:57:43.010000"],["2024-07-25T01:57:44.010000"],["2024-07-25T01:57:45.010000"],["2024-07-25T01:57:46.010000"],["2024-07-25T01:57:47.010000"],["2024-07-25T01:57:48.010000"],["2024-07-25T01:57:49.010000"],["2024-07-25T01:57:50.010000"],["2024-07-25T01:57:51.010000"],["2024-07-25T01:57:52.010000"],["2024-07-25T01:57:53.010000"],["2024-07-25T01:57:54.010000"],["2024-07-25T01:57:55.010000"],["2024-07-25T01:57:56.010000"],["2024-07-25T01:57:57.010000"],["2024-07-25T01:57:58.010000"],["2024-07-25T01:57:59.010000"],["2024-07-25T01:58:00.010000"],["2024-07-25T01:58:01.010000"],["2024-07-25T01:58:02.010000"],["2024-07-25T01:58:03.010000"],["2024-07-25T01:58:04.010000"],["2024-07-25T01:58:05.010000"],["2024-07-25T01:58:06.010000"],["2024-07-25T01:58:07.010000"],["2024-07-25T01:58:08.010000"],["2024-07-25T01:58:09.010000"],["2024-07-25T01:58:10.010000"],["2024-07-25T01:58:11.010000"],["2024-07-25T01:58:12.010000"],["2024-07-25T01:58:13.010000"],["2024-07-25T01:58:14.010000"],["2024-07-25T01:58:15.010000"],["2024-07-25T01:58:16.010000"],["2024-07-25T01:58:17.010000"],["2024-07-25T01:58:18.010000"],["2024-07-25T01:58:19.010000"],["2024-07-25T01:58:20.010000"],["2024-07-25T01:58:21.010000"],["2024-07-25T01:58:22.010000"],["2024-07-25T01:58:23.010000"],["2024-07-25T01:58:24.010000"],["2024-07-25T01:58:25.010000"],["2024-07-25T01:58:26.010000"],["2024-07-25T01:58:27.010000"],["2024-07-25T01:58:28.010000"],["2024-07-25T01:58:29.010000"],["2024-07-25T01:58:30.010000"],["2024-07-25T01:58:31.010000"],["2024-07-25T01:58:32.010000"],["2024-07-25T01:58:33.010000"],["2024-07-25T01:58:34.010000"],["2024-07-25T01:58:35.010000"],["2024-07-25T01:58:36.010000"],["2024-07-25T01:58:37.010000"],["2024-07-25T01:58:38.010000"],["2024-07-25T01:58:39.010000"],["2024-07-25T01:58:40.010000"],["2024-07-25T01:58:41.010000"],["2024-07-25T01:58:42.010000"],["2024-07-25T01:58:43.010000"],["2024-07-25T01:58:44.010000"],["2024-07-25T01:58:45.010000"],["2024-07-25T01:58:46.010000"],["2024-07-25T01:58:47.010000"],["2024-07-25T01:58:48.010000"],["2024-07-25T01:58:49.010000"],["2024-07-25T01:58:50.010000"],["2024-07-25T01:58:51.010000"],["2024-07-25T01:58:52.010000"],["2024-07-25T01:58:53.010000"],["2024-07-25T01:58:54.010000"],["2024-07-25T01:58:55.010000"],["2024-07-25T01:58:56.010000"],["2024-07-25T01:58:57.010000"],["2024-07-25T01:58:58.010000"],["2024-07-25T01:58:59.010000"],["2024-07-25T01:59:00.010000"],["2024-07-25T01:59:01.010000"],["2024-07-25T01:59:02.010000"],["2024-07-25T01:59:03.010000"],["2024-07-25T01:59:04.010000"],["2024-07-25T01:59:05.010000"],["2024-07-25T01:59:06.010000"],["2024-07-25T01:59:07.010000"],["2024-07-25T01:59:08.010000"],["2024-07-25T01:59:09.010000"],["2024-07-25T01:59:10.010000"],["2024-07-25T01:59:11.010000"],["2024-07-25T01:59:12.010000"],["2024-07-25T01:59:13.010000"],["2024-07-25T01:59:14.010000"],["2024-07-25T01:59:15.010000"],["2024-07-25T01:59:16.010000"],["2024-07-25T01:59:17.010000"],["2024-07-25T01:59:18.010000"],["2024-07-25T01:59:19.010000"],["2024-07-25T01:59:20.010000"],["2024-07-25T01:59:21.010000"],["2024-07-25T01:59:22.010000"],["2024-07-25T01:59:23.010000"],["2024-07-25T01:59:24.010000"],["2024-07-25T01:59:25.010000"],["2024-07-25T01:59:26.010000"],["2024-07-25T01:59:27.010000"],["2024-07-25T01:59:28.010000"],["2024-07-25T01:59:29.010000"],["2024-07-25T01:59:30.010000"],["2024-07-25T01:59:31.010000"],["2024-07-25T01:59:32.010000"],["2024-07-25T01:59:33.010000"],["2024-07-25T01:59:34.010000"],["2024-07-25T01:59:35.010000"],["2024-07-25T01:59:36.010000"],["2024-07-25T01:59:37.010000"],["2024-07-25T01:59:38.010000"],["2024-07-25T01:59:39.010000"],["2024-07-25T01:59:40.010000"],["2024-07-25T01:59:41.010000"],["2024-07-25T01:59:42.010000"],["2024-07-25T01:59:43.010000"],["2024-07-25T01:59:44.010000"],["2024-07-25T01:59:45.010000"],["2024-07-25T01:59:46.010000"],["2024-07-25T01:59:47.010000"],["2024-07-25T01:59:48.010000"],["2024-07-25T01:59:49.010000"],["2024-07-25T01:59:50.010000"],["2024-07-25T01:59:51.010000"],["2024-07-25T01:59:52.010000"],["2024-07-25T01:59:53.010000"],["2024-07-25T01:59:54.010000"],["2024-07-25T01:59:55.010000"],["2024-07-25T01:59:56.010000"],["2024-07-25T01:59:57.010000"],["2024-07-25T01:59:58.010000"],["2024-07-25T01:59:59.010000"],["2024-07-25T02:00:00.010000"],["2024-07-25T02:00:01.010000"],["2024-07-25T02:00:02.010000"],["2024-07-25T02:00:03.010000"],["2024-07-25T02:00:04.010000"],["2024-07-25T02:00:05.010000"],["2024-07-25T02:00:06.010000"],["2024-07-25T02:00:07.010000"],["2024-07-25T02:00:08.010000"],["2024-07-25T02:00:09.010000"],["2024-07-25T02:00:10.010000"],["2024-07-25T02:00:11.010000"],["2024-07-25T02:00:12.010000"],["2024-07-25T02:00:13.010000"],["2024-07-25T02:00:14.010000"],["2024-07-25T02:00:15.010000"],["2024-07-25T02:00:16.010000"],["2024-07-25T02:00:17.010000"],["2024-07-25T02:00:18.010000"],["2024-07-25T02:00:19.010000"],["2024-07-25T02:00:20.010000"],["2024-07-25T02:00:21.010000"],["2024-07-25T02:00:22.010000"],["2024-07-25T02:00:23.010000"],["2024-07-25T02:00:24.010000"],["2024-07-25T02:00:25.010000"],["2024-07-25T02:00:26.010000"],["2024-07-25T02:00:27.010000"],["2024-07-25T02:00:28.010000"],["2024-07-25T02:00:29.010000"],["2024-07-25T02:00:30.010000"],["2024-07-25T02:00:31.010000"],["2024-07-25T02:00:32.010000"],["2024-07-25T02:00:33.010000"],["2024-07-25T02:00:34.010000"],["2024-07-25T02:00:35.010000"],["2024-07-25T02:00:36.010000"],["2024-07-25T02:00:37.010000"],["2024-07-25T02:00:38.010000"],["2024-07-25T02:00:39.010000"],["2024-07-25T02:00:40.010000"],["2024-07-25T02:00:41.010000"],["2024-07-25T02:00:42.010000"],["2024-07-25T02:00:43.010000"],["2024-07-25T02:00:44.010000"],["2024-07-25T02:00:45.010000"],["2024-07-25T02:00:46.010000"],["2024-07-25T02:00:47.010000"],["2024-07-25T02:00:48.010000"],["2024-07-25T02:00:49.010000"],["2024-07-25T02:00:50.010000"],["2024-07-25T02:00:51.010000"],["2024-07-25T02:00:52.010000"],["2024-07-25T02:00:53.010000"],["2024-07-25T02:00:54.010000"],["2024-07-25T02:00:55.010000"],["2024-07-25T02:00:56.010000"],["2024-07-25T02:00:57.010000"],["2024-07-25T02:00:58.010000"],["2024-07-25T02:00:59.010000"],["2024-07-25T02:01:00.010000"],["2024-07-25T02:01:01.010000"],["2024-07-25T02:01:02.010000"],["2024-07-25T02:01:03.010000"],["2024-07-25T02:01:04.010000"],["2024-07-25T02:01:05.010000"],["2024-07-25T02:01:06.010000"],["2024-07-25T02:01:07.010000"],["2024-07-25T02:01:08.010000"],["2024-07-25T02:01:09.010000"],["2024-07-25T02:01:10.010000"],["2024-07-25T02:01:11.010000"],["2024-07-25T02:01:12.010000"],["2024-07-25T02:01:13.010000"],["2024-07-25T02:01:14.010000"],["2024-07-25T02:01:15.010000"],["2024-07-25T02:01:16.010000"],["2024-07-25T02:01:17.010000"],["2024-07-25T02:01:18.010000"],["2024-07-25T02:01:19.010000"],["2024-07-25T02:01:20.010000"],["2024-07-25T02:01:21.010000"],["2024-07-25T02:01:22.010000"],["2024-07-25T02:01:23.010000"],["2024-07-25T02:01:24.010000"],["2024-07-25T02:01:25.010000"],["2024-07-25T02:01:26.010000"],["2024-07-25T02:01:27.010000"],["2024-07-25T02:01:28.010000"],["2024-07-25T02:01:29.010000"],["2024-07-25T02:01:30.010000"],["2024-07-25T02:01:31.010000"],["2024-07-25T02:01:32.010000"],["2024-07-25T02:01:33.010000"],["2024-07-25T02:01:34.010000"],["2024-07-25T02:01:35.010000"],["2024-07-25T02:01:36.010000"],["2024-07-25T02:01:37.010000"],["2024-07-25T02:01:38.010000"],["2024-07-25T02:01:39.010000"],["2024-07-25T02:01:40.010000"],["2024-07-25T02:01:41.010000"],["2024-07-25T02:01:42.010000"],["2024-07-25T02:01:43.010000"],["2024-07-25T02:01:44.010000"],["2024-07-25T02:01:45.010000"],["2024-07-25T02:01:46.010000"],["2024-07-25T02:01:47.010000"],["2024-07-25T02:01:48.010000"],["2024-07-25T02:01:49.010000"],["2024-07-25T02:01:50.010000"],["2024-07-25T02:01:51.010000"],["2024-07-25T02:01:52.010000"],["2024-07-25T02:01:53.010000"],["2024-07-25T02:01:54.010000"],["2024-07-25T02:01:55.010000"],["2024-07-25T02:01:56.010000"],["2024-07-25T02:01:57.010000"],["2024-07-25T02:01:58.010000"],["2024-07-25T02:01:59.010000"],["2024-07-25T02:02:00.010000"],["2024-07-25T02:02:01.010000"],["2024-07-25T02:02:02.010000"],["2024-07-25T02:02:03.010000"],["2024-07-25T02:02:04.010000"],["2024-07-25T02:02:05.010000"],["2024-07-25T02:02:06.010000"],["2024-07-25T02:02:07.010000"],["2024-07-25T02:02:08.010000"],["2024-07-25T02:02:09.010000"],["2024-07-25T02:02:10.010000"],["2024-07-25T02:02:11.010000"],["2024-07-25T02:02:12.010000"],["2024-07-25T02:02:13.010000"],["2024-07-25T02:02:14.010000"],["2024-07-25T02:02:15.010000"],["2024-07-25T02:02:16.010000"],["2024-07-25T02:02:17.010000"],["2024-07-25T02:02:18.010000"],["2024-07-25T02:02:19.010000"],["2024-07-25T02:02:20.010000"],["2024-07-25T02:02:21.010000"],["2024-07-25T02:02:22.010000"],["2024-07-25T02:02:23.010000"],["2024-07-25T02:02:24.010000"],["2024-07-25T02:02:25.010000"],["2024-07-25T02:02:26.010000"],["2024-07-25T02:02:27.010000"],["2024-07-25T02:02:28.010000"],["2024-07-25T02:02:29.010000"],["2024-07-25T02:02:30.010000"],["2024-07-25T02:02:31.010000"],["2024-07-25T02:02:32.010000"],["2024-07-25T02:02:33.010000"],["2024-07-25T02:02:34.010000"],["2024-07-25T02:02:35.010000"],["2024-07-25T02:02:36.010000"],["2024-07-25T02:02:37.010000"],["2024-07-25T02:02:38.010000"],["2024-07-25T02:02:39.010000"],["2024-07-25T02:02:40.010000"],["2024-07-25T02:02:41.010000"],["2024-07-25T02:02:42.010000"],["2024-07-25T02:02:43.010000"],["2024-07-25T02:02:44.010000"],["2024-07-25T02:02:45.010000"],["2024-07-25T02:02:46.010000"],["2024-07-25T02:02:47.010000"],["2024-07-25T02:02:48.010000"],["2024-07-25T02:02:49.010000"],["2024-07-25T02:02:50.010000"],["2024-07-25T02:02:51.010000"],["2024-07-25T02:02:52.010000"],["2024-07-25T02:02:53.010000"],["2024-07-25T02:02:54.010000"],["2024-07-25T02:02:55.010000"],["2024-07-25T02:02:56.010000"],["2024-07-25T02:02:57.010000"],["2024-07-25T02:02:58.010000"],["2024-07-25T02:02:59.010000"],["2024-07-25T02:03:00.010000"],["2024-07-25T02:03:01.010000"],["2024-07-25T02:03:02.010000"],["2024-07-25T02:03:03.010000"],["2024-07-25T02:03:04.010000"],["2024-07-25T02:03:05.010000"],["2024-07-25T02:03:06.010000"],["2024-07-25T02:03:07.010000"],["2024-07-25T02:03:08.010000"],["2024-07-25T02:03:09.010000"],["2024-07-25T02:03:10.010000"],["2024-07-25T02:03:11.010000"],["2024-07-25T02:03:12.010000"],["2024-07-25T02:03:13.010000"],["2024-07-25T02:03:14.010000"],["2024-07-25T02:03:15.010000"],["2024-07-25T02:03:16.010000"],["2024-07-25T02:03:17.010000"],["2024-07-25T02:03:18.010000"],["2024-07-25T02:03:19.010000"],["2024-07-25T02:03:20.010000"],["2024-07-25T02:03:21.010000"],["2024-07-25T02:03:22.010000"],["2024-07-25T02:03:23.010000"],["2024-07-25T02:03:24.010000"],["2024-07-25T02:03:25.010000"],["2024-07-25T02:03:26.010000"],["2024-07-25T02:03:27.010000"],["2024-07-25T02:03:28.010000"],["2024-07-25T02:03:29.010000"],["2024-07-25T02:03:30.010000"],["2024-07-25T02:03:31.010000"],["2024-07-25T02:03:32.010000"],["2024-07-25T02:03:33.010000"],["2024-07-25T02:03:34.010000"],["2024-07-25T02:03:35.010000"],["2024-07-25T02:03:36.010000"],["2024-07-25T02:03:37.010000"],["2024-07-25T02:03:38.010000"],["2024-07-25T02:03:39.010000"],["2024-07-25T02:03:40.010000"],["2024-07-25T02:03:41.010000"],["2024-07-25T02:03:42.010000"],["2024-07-25T02:03:43.010000"],["2024-07-25T02:03:44.010000"],["2024-07-25T02:03:45.010000"],["2024-07-25T02:03:46.010000"],["2024-07-25T02:03:47.010000"],["2024-07-25T02:03:48.010000"],["2024-07-25T02:03:49.010000"],["2024-07-25T02:03:50.010000"],["2024-07-25T02:03:51.010000"],["2024-07-25T02:03:52.010000"],["2024-07-25T02:03:53.010000"],["2024-07-25T02:03:54.010000"],["2024-07-25T02:03:55.010000"],["2024-07-25T02:03:56.010000"],["2024-07-25T02:03:57.010000"],["2024-07-25T02:03:58.010000"],["2024-07-25T02:03:59.010000"],["2024-07-25T02:04:00.010000"],["2024-07-25T02:04:01.010000"],["2024-07-25T02:04:02.010000"],["2024-07-25T02:04:03.010000"],["2024-07-25T02:04:04.010000"],["2024-07-25T02:04:05.010000"],["2024-07-25T02:04:06.010000"],["2024-07-25T02:04:07.010000"],["2024-07-25T02:04:08.010000"],["2024-07-25T02:04:09.010000"],["2024-07-25T02:04:10.010000"],["2024-07-25T02:04:11.010000"],["2024-07-25T02:04:12.010000"],["2024-07-25T02:04:13.010000"],["2024-07-25T02:04:14.010000"],["2024-07-25T02:04:15.010000"],["2024-07-25T02:04:16.010000"],["2024-07-25T02:04:17.010000"],["2024-07-25T02:04:18.010000"],["2024-07-25T02:04:19.010000"],["2024-07-25T02:04:20.010000"],["2024-07-25T02:04:21.010000"],["2024-07-25T02:04:22.010000"],["2024-07-25T02:04:23.010000"],["2024-07-25T02:04:24.010000"],["2024-07-25T02:04:25.010000"],["2024-07-25T02:04:26.010000"],["2024-07-25T02:04:27.010000"],["2024-07-25T02:04:28.010000"],["2024-07-25T02:04:29.010000"],["2024-07-25T02:04:30.010000"],["2024-07-25T02:04:31.010000"],["2024-07-25T02:04:32.010000"],["2024-07-25T02:04:33.010000"],["2024-07-25T02:04:34.010000"],["2024-07-25T02:04:35.010000"],["2024-07-25T02:04:36.010000"],["2024-07-25T02:04:37.010000"],["2024-07-25T02:04:38.010000"],["2024-07-25T02:04:39.010000"],["2024-07-25T02:04:40.010000"],["2024-07-25T02:04:41.010000"],["2024-07-25T02:04:42.010000"],["2024-07-25T02:04:43.010000"],["2024-07-25T02:04:44.010000"],["2024-07-25T02:04:45.010000"],["2024-07-25T02:04:46.010000"],["2024-07-25T02:04:47.010000"],["2024-07-25T02:04:48.010000"],["2024-07-25T02:04:49.010000"],["2024-07-25T02:04:50.010000"],["2024-07-25T02:04:51.010000"],["2024-07-25T02:04:52.010000"],["2024-07-25T02:04:53.010000"],["2024-07-25T02:04:54.010000"],["2024-07-25T02:04:55.010000"],["2024-07-25T02:04:56.010000"],["2024-07-25T02:04:57.010000"],["2024-07-25T02:04:58.010000"],["2024-07-25T02:04:59.010000"],["2024-07-25T02:05:00.010000"],["2024-07-25T02:05:01.010000"],["2024-07-25T02:05:02.010000"],["2024-07-25T02:05:03.010000"],["2024-07-25T02:05:04.010000"],["2024-07-25T02:05:05.010000"],["2024-07-25T02:05:06.010000"],["2024-07-25T02:05:07.010000"],["2024-07-25T02:05:08.010000"],["2024-07-25T02:05:09.010000"],["2024-07-25T02:05:10.010000"],["2024-07-25T02:05:11.010000"],["2024-07-25T02:05:12.010000"],["2024-07-25T02:05:13.010000"],["2024-07-25T02:05:14.010000"],["2024-07-25T02:05:15.010000"],["2024-07-25T02:05:16.010000"],["2024-07-25T02:05:17.010000"],["2024-07-25T02:05:18.010000"],["2024-07-25T02:05:19.010000"],["2024-07-25T02:05:20.010000"],["2024-07-25T02:05:21.010000"],["2024-07-25T02:05:22.010000"],["2024-07-25T02:05:23.010000"],["2024-07-25T02:05:24.010000"],["2024-07-25T02:05:25.010000"],["2024-07-25T02:05:26.010000"],["2024-07-25T02:05:27.010000"],["2024-07-25T02:05:28.010000"],["2024-07-25T02:05:29.010000"],["2024-07-25T02:05:30.010000"],["2024-07-25T02:05:31.010000"],["2024-07-25T02:05:32.010000"],["2024-07-25T02:05:33.010000"],["2024-07-25T02:05:34.010000"],["2024-07-25T02:05:35.010000"],["2024-07-25T02:05:36.010000"],["2024-07-25T02:05:37.010000"],["2024-07-25T02:05:38.010000"],["2024-07-25T02:05:39.010000"],["2024-07-25T02:05:40.010000"],["2024-07-25T02:05:41.010000"],["2024-07-25T02:05:42.010000"],["2024-07-25T02:05:43.010000"],["2024-07-25T02:05:44.010000"],["2024-07-25T02:05:45.010000"],["2024-07-25T02:05:46.010000"],["2024-07-25T02:05:47.010000"],["2024-07-25T02:05:48.010000"],["2024-07-25T02:05:49.010000"],["2024-07-25T02:05:50.010000"],["2024-07-25T02:05:51.010000"],["2024-07-25T02:05:52.010000"],["2024-07-25T02:05:53.010000"],["2024-07-25T02:05:54.010000"],["2024-07-25T02:05:55.010000"],["2024-07-25T02:05:56.010000"],["2024-07-25T02:05:57.010000"],["2024-07-25T02:05:58.010000"],["2024-07-25T02:05:59.010000"],["2024-07-25T02:06:00.010000"],["2024-07-25T02:06:01.010000"],["2024-07-25T02:06:02.010000"],["2024-07-25T02:06:03.010000"],["2024-07-25T02:06:04.010000"],["2024-07-25T02:06:05.010000"],["2024-07-25T02:06:06.010000"],["2024-07-25T02:06:07.010000"],["2024-07-25T02:06:08.010000"],["2024-07-25T02:06:09.010000"],["2024-07-25T02:06:10.010000"],["2024-07-25T02:06:11.010000"],["2024-07-25T02:06:12.010000"],["2024-07-25T02:06:13.010000"],["2024-07-25T02:06:14.010000"],["2024-07-25T02:06:15.010000"],["2024-07-25T02:06:16.010000"],["2024-07-25T02:06:17.010000"],["2024-07-25T02:06:18.010000"],["2024-07-25T02:06:19.010000"],["2024-07-25T02:06:20.010000"],["2024-07-25T02:06:21.010000"],["2024-07-25T02:06:22.010000"],["2024-07-25T02:06:23.010000"],["2024-07-25T02:06:24.010000"],["2024-07-25T02:06:25.010000"],["2024-07-25T02:06:26.010000"],["2024-07-25T02:06:27.010000"],["2024-07-25T02:06:28.010000"],["2024-07-25T02:06:29.010000"],["2024-07-25T02:06:30.010000"],["2024-07-25T02:06:31.010000"],["2024-07-25T02:06:32.010000"],["2024-07-25T02:06:33.010000"],["2024-07-25T02:06:34.010000"],["2024-07-25T02:06:35.010000"],["2024-07-25T02:06:36.010000"],["2024-07-25T02:06:37.010000"],["2024-07-25T02:06:38.010000"],["2024-07-25T02:06:39.010000"],["2024-07-25T02:06:40.010000"],["2024-07-25T02:06:41.010000"],["2024-07-25T02:06:42.010000"],["2024-07-25T02:06:43.010000"],["2024-07-25T02:06:44.010000"],["2024-07-25T02:06:45.010000"],["2024-07-25T02:06:46.010000"],["2024-07-25T02:06:47.010000"],["2024-07-25T02:06:48.010000"],["2024-07-25T02:06:49.010000"],["2024-07-25T02:06:50.010000"],["2024-07-25T02:06:51.010000"],["2024-07-25T02:06:52.010000"],["2024-07-25T02:06:53.010000"],["2024-07-25T02:06:54.010000"],["2024-07-25T02:06:55.010000"],["2024-07-25T02:06:56.010000"],["2024-07-25T02:06:57.010000"],["2024-07-25T02:06:58.010000"],["2024-07-25T02:06:59.010000"],["2024-07-25T02:07:00.010000"],["2024-07-25T02:07:01.010000"],["2024-07-25T02:07:02.010000"],["2024-07-25T02:07:03.010000"],["2024-07-25T02:07:04.010000"],["2024-07-25T02:07:05.010000"],["2024-07-25T02:07:06.010000"],["2024-07-25T02:07:07.010000"],["2024-07-25T02:07:08.010000"],["2024-07-25T02:07:09.010000"],["2024-07-25T02:07:10.010000"],["2024-07-25T02:07:11.010000"],["2024-07-25T02:07:12.010000"],["2024-07-25T02:07:13.010000"],["2024-07-25T02:07:14.010000"],["2024-07-25T02:07:15.010000"],["2024-07-25T02:07:16.010000"],["2024-07-25T02:07:17.010000"],["2024-07-25T02:07:18.010000"],["2024-07-25T02:07:19.010000"],["2024-07-25T02:07:20.010000"],["2024-07-25T02:07:21.010000"],["2024-07-25T02:07:22.010000"],["2024-07-25T02:07:23.010000"],["2024-07-25T02:07:24.010000"],["2024-07-25T02:07:25.010000"],["2024-07-25T02:07:26.010000"],["2024-07-25T02:07:27.010000"],["2024-07-25T02:07:28.010000"],["2024-07-25T02:07:29.010000"],["2024-07-25T02:07:30.010000"],["2024-07-25T02:07:31.010000"],["2024-07-25T02:07:32.010000"],["2024-07-25T02:07:33.010000"],["2024-07-25T02:07:34.010000"],["2024-07-25T02:07:35.010000"],["2024-07-25T02:07:36.010000"],["2024-07-25T02:07:37.010000"],["2024-07-25T02:07:38.010000"],["2024-07-25T02:07:39.010000"],["2024-07-25T02:07:40.010000"],["2024-07-25T02:07:41.010000"],["2024-07-25T02:07:42.010000"],["2024-07-25T02:07:43.010000"],["2024-07-25T02:07:44.010000"],["2024-07-25T02:07:45.010000"],["2024-07-25T02:07:46.010000"],["2024-07-25T02:07:47.010000"],["2024-07-25T02:07:48.010000"],["2024-07-25T02:07:49.010000"],["2024-07-25T02:07:50.010000"],["2024-07-25T02:07:51.010000"],["2024-07-25T02:07:52.010000"],["2024-07-25T02:07:53.010000"],["2024-07-25T02:07:54.010000"],["2024-07-25T02:07:55.010000"],["2024-07-25T02:07:56.010000"],["2024-07-25T02:07:57.010000"],["2024-07-25T02:07:58.010000"],["2024-07-25T02:07:59.010000"],["2024-07-25T02:08:00.010000"],["2024-07-25T02:08:01.010000"],["2024-07-25T02:08:02.010000"],["2024-07-25T02:08:03.010000"],["2024-07-25T02:08:04.010000"],["2024-07-25T02:08:05.010000"],["2024-07-25T02:08:06.010000"],["2024-07-25T02:08:07.010000"],["2024-07-25T02:08:08.010000"],["2024-07-25T02:08:09.010000"],["2024-07-25T02:08:10.010000"],["2024-07-25T02:08:11.010000"],["2024-07-25T02:08:12.010000"],["2024-07-25T02:08:13.010000"],["2024-07-25T02:08:14.010000"],["2024-07-25T02:08:15.010000"],["2024-07-25T02:08:16.010000"],["2024-07-25T02:08:17.010000"],["2024-07-25T02:08:18.010000"],["2024-07-25T02:08:19.010000"],["2024-07-25T02:08:20.010000"],["2024-07-25T02:08:21.010000"],["2024-07-25T02:08:22.010000"],["2024-07-25T02:08:23.010000"],["2024-07-25T02:08:24.010000"],["2024-07-25T02:08:25.010000"],["2024-07-25T02:08:26.010000"],["2024-07-25T02:08:27.010000"],["2024-07-25T02:08:28.010000"],["2024-07-25T02:08:29.010000"],["2024-07-25T02:08:30.010000"],["2024-07-25T02:08:31.010000"],["2024-07-25T02:08:32.010000"],["2024-07-25T02:08:33.010000"],["2024-07-25T02:08:34.010000"],["2024-07-25T02:08:35.010000"],["2024-07-25T02:08:36.010000"],["2024-07-25T02:08:37.010000"],["2024-07-25T02:08:38.010000"],["2024-07-25T02:08:39.010000"],["2024-07-25T02:08:40.010000"],["2024-07-25T02:08:41.010000"],["2024-07-25T02:08:42.010000"],["2024-07-25T02:08:43.010000"],["2024-07-25T02:08:44.010000"],["2024-07-25T02:08:45.010000"],["2024-07-25T02:08:46.010000"],["2024-07-25T02:08:47.010000"],["2024-07-25T02:08:48.010000"],["2024-07-25T02:08:49.010000"],["2024-07-25T02:08:50.010000"],["2024-07-25T02:08:51.010000"],["2024-07-25T02:08:52.010000"],["2024-07-25T02:08:53.010000"],["2024-07-25T02:08:54.010000"],["2024-07-25T02:08:55.010000"],["2024-07-25T02:08:56.010000"],["2024-07-25T02:08:57.010000"],["2024-07-25T02:08:58.010000"],["2024-07-25T02:08:59.010000"],["2024-07-25T02:09:00.010000"],["2024-07-25T02:09:01.010000"],["2024-07-25T02:09:02.010000"],["2024-07-25T02:09:03.010000"],["2024-07-25T02:09:04.010000"],["2024-07-25T02:09:05.010000"],["2024-07-25T02:09:06.010000"],["2024-07-25T02:09:07.010000"],["2024-07-25T02:09:08.010000"],["2024-07-25T02:09:09.010000"],["2024-07-25T02:09:10.010000"],["2024-07-25T02:09:11.010000"],["2024-07-25T02:09:12.010000"],["2024-07-25T02:09:13.010000"],["2024-07-25T02:09:14.010000"],["2024-07-25T02:09:15.010000"],["2024-07-25T02:09:16.010000"],["2024-07-25T02:09:17.010000"],["2024-07-25T02:09:18.010000"],["2024-07-25T02:09:19.010000"],["2024-07-25T02:09:20.010000"],["2024-07-25T02:09:21.010000"],["2024-07-25T02:09:22.010000"],["2024-07-25T02:09:23.010000"],["2024-07-25T02:09:24.010000"],["2024-07-25T02:09:25.010000"],["2024-07-25T02:09:26.010000"],["2024-07-25T02:09:27.010000"],["2024-07-25T02:09:28.010000"],["2024-07-25T02:09:29.010000"],["2024-07-25T02:09:30.010000"],["2024-07-25T02:09:31.010000"],["2024-07-25T02:09:32.010000"],["2024-07-25T02:09:33.010000"],["2024-07-25T02:09:34.010000"],["2024-07-25T02:09:35.010000"],["2024-07-25T02:09:36.010000"],["2024-07-25T02:09:37.010000"],["2024-07-25T02:09:38.010000"],["2024-07-25T02:09:39.010000"],["2024-07-25T02:09:40.010000"],["2024-07-25T02:09:41.010000"],["2024-07-25T02:09:42.010000"],["2024-07-25T02:09:43.010000"],["2024-07-25T02:09:44.010000"],["2024-07-25T02:09:45.010000"],["2024-07-25T02:09:46.010000"],["2024-07-25T02:09:47.010000"],["2024-07-25T02:09:48.010000"],["2024-07-25T02:09:49.010000"],["2024-07-25T02:09:50.010000"],["2024-07-25T02:09:51.010000"],["2024-07-25T02:09:52.010000"],["2024-07-25T02:09:53.010000"],["2024-07-25T02:09:54.010000"],["2024-07-25T02:09:55.010000"],["2024-07-25T02:09:56.010000"],["2024-07-25T02:09:57.010000"],["2024-07-25T02:09:58.010000"],["2024-07-25T02:09:59.010000"],["2024-07-25T02:10:00.010000"],["2024-07-25T02:10:01.010000"],["2024-07-25T02:10:02.010000"],["2024-07-25T02:10:03.010000"],["2024-07-25T02:10:04.010000"],["2024-07-25T02:10:05.010000"],["2024-07-25T02:10:06.010000"],["2024-07-25T02:10:07.010000"],["2024-07-25T02:10:08.010000"],["2024-07-25T02:10:09.010000"],["2024-07-25T02:10:10.010000"],["2024-07-25T02:10:11.010000"],["2024-07-25T02:10:12.010000"],["2024-07-25T02:10:13.010000"],["2024-07-25T02:10:14.010000"],["2024-07-25T02:10:15.010000"],["2024-07-25T02:10:16.010000"],["2024-07-25T02:10:17.010000"],["2024-07-25T02:10:18.010000"],["2024-07-25T02:10:19.010000"],["2024-07-25T02:10:20.010000"],["2024-07-25T02:10:21.010000"],["2024-07-25T02:10:22.010000"],["2024-07-25T02:10:23.010000"],["2024-07-25T02:10:24.010000"],["2024-07-25T02:10:25.010000"],["2024-07-25T02:10:26.010000"],["2024-07-25T02:10:27.010000"],["2024-07-25T02:10:28.010000"],["2024-07-25T02:10:29.010000"],["2024-07-25T02:10:30.010000"],["2024-07-25T02:10:31.010000"],["2024-07-25T02:10:32.010000"],["2024-07-25T02:10:33.010000"],["2024-07-25T02:10:34.010000"],["2024-07-25T02:10:35.010000"],["2024-07-25T02:10:36.010000"],["2024-07-25T02:10:37.010000"],["2024-07-25T02:10:38.010000"],["2024-07-25T02:10:39.010000"],["2024-07-25T02:10:40.010000"],["2024-07-25T02:10:41.010000"],["2024-07-25T02:10:42.010000"],["2024-07-25T02:10:43.010000"],["2024-07-25T02:10:44.010000"],["2024-07-25T02:10:45.010000"],["2024-07-25T02:10:46.010000"],["2024-07-25T02:10:47.010000"],["2024-07-25T02:10:48.010000"],["2024-07-25T02:10:49.010000"],["2024-07-25T02:10:50.010000"],["2024-07-25T02:10:51.010000"],["2024-07-25T02:10:52.010000"],["2024-07-25T02:10:53.010000"],["2024-07-25T02:10:54.010000"],["2024-07-25T02:10:55.010000"],["2024-07-25T02:10:56.010000"],["2024-07-25T02:10:57.010000"],["2024-07-25T02:10:58.010000"],["2024-07-25T02:10:59.010000"],["2024-07-25T02:11:00.010000"],["2024-07-25T02:11:01.010000"],["2024-07-25T02:11:02.010000"],["2024-07-25T02:11:03.010000"],["2024-07-25T02:11:04.010000"],["2024-07-25T02:11:05.010000"],["2024-07-25T02:11:06.010000"],["2024-07-25T02:11:07.010000"],["2024-07-25T02:11:08.010000"],["2024-07-25T02:11:09.010000"],["2024-07-25T02:11:10.010000"],["2024-07-25T02:11:11.010000"],["2024-07-25T02:11:12.010000"],["2024-07-25T02:11:13.010000"],["2024-07-25T02:11:14.010000"],["2024-07-25T02:11:15.010000"],["2024-07-25T02:11:16.010000"],["2024-07-25T02:11:17.010000"],["2024-07-25T02:11:18.010000"],["2024-07-25T02:11:19.010000"],["2024-07-25T02:11:20.010000"],["2024-07-25T02:11:21.010000"],["2024-07-25T02:11:22.010000"],["2024-07-25T02:11:23.010000"],["2024-07-25T02:11:24.010000"],["2024-07-25T02:11:25.010000"],["2024-07-25T02:11:26.010000"],["2024-07-25T02:11:27.010000"],["2024-07-25T02:11:28.010000"],["2024-07-25T02:11:29.010000"],["2024-07-25T02:11:30.010000"],["2024-07-25T02:11:31.010000"],["2024-07-25T02:11:32.010000"],["2024-07-25T02:11:33.010000"],["2024-07-25T02:11:34.010000"],["2024-07-25T02:11:35.010000"],["2024-07-25T02:11:36.010000"],["2024-07-25T02:11:37.010000"],["2024-07-25T02:11:38.010000"],["2024-07-25T02:11:39.010000"],["2024-07-25T02:11:40.010000"],["2024-07-25T02:11:41.010000"],["2024-07-25T02:11:42.010000"],["2024-07-25T02:11:43.010000"],["2024-07-25T02:11:44.010000"],["2024-07-25T02:11:45.010000"],["2024-07-25T02:11:46.010000"],["2024-07-25T02:11:47.010000"],["2024-07-25T02:11:48.010000"],["2024-07-25T02:11:49.010000"],["2024-07-25T02:11:50.010000"],["2024-07-25T02:11:51.010000"],["2024-07-25T02:11:52.010000"],["2024-07-25T02:11:53.010000"],["2024-07-25T02:11:54.010000"],["2024-07-25T02:11:55.010000"],["2024-07-25T02:11:56.010000"],["2024-07-25T02:11:57.010000"],["2024-07-25T02:11:58.010000"],["2024-07-25T02:11:59.010000"],["2024-07-25T02:12:00.010000"],["2024-07-25T02:12:01.010000"],["2024-07-25T02:12:02.010000"],["2024-07-25T02:12:03.010000"],["2024-07-25T02:12:04.010000"],["2024-07-25T02:12:05.010000"],["2024-07-25T02:12:06.010000"],["2024-07-25T02:12:07.010000"],["2024-07-25T02:12:08.010000"],["2024-07-25T02:12:09.010000"],["2024-07-25T02:12:10.010000"],["2024-07-25T02:12:11.010000"],["2024-07-25T02:12:12.010000"],["2024-07-25T02:12:13.010000"],["2024-07-25T02:12:14.010000"],["2024-07-25T02:12:15.010000"],["2024-07-25T02:12:16.010000"],["2024-07-25T02:12:17.010000"],["2024-07-25T02:12:18.010000"],["2024-07-25T02:12:19.010000"],["2024-07-25T02:12:20.010000"],["2024-07-25T02:12:21.010000"],["2024-07-25T02:12:22.010000"],["2024-07-25T02:12:23.010000"],["2024-07-25T02:12:24.010000"],["2024-07-25T02:12:25.010000"],["2024-07-25T02:12:26.010000"],["2024-07-25T02:12:27.010000"],["2024-07-25T02:12:28.010000"],["2024-07-25T02:12:29.010000"],["2024-07-25T02:12:30.010000"],["2024-07-25T02:12:31.010000"],["2024-07-25T02:12:32.010000"],["2024-07-25T02:12:33.010000"],["2024-07-25T02:12:34.010000"],["2024-07-25T02:12:35.010000"],["2024-07-25T02:12:36.010000"],["2024-07-25T02:12:37.010000"],["2024-07-25T02:12:38.010000"],["2024-07-25T02:12:39.010000"],["2024-07-25T02:12:40.010000"],["2024-07-25T02:12:41.010000"],["2024-07-25T02:12:42.010000"],["2024-07-25T02:12:43.010000"],["2024-07-25T02:12:44.010000"],["2024-07-25T02:12:45.010000"],["2024-07-25T02:12:46.010000"],["2024-07-25T02:12:47.010000"],["2024-07-25T02:12:48.010000"],["2024-07-25T02:12:49.010000"],["2024-07-25T02:12:50.010000"],["2024-07-25T02:12:51.010000"],["2024-07-25T02:12:52.010000"],["2024-07-25T02:12:53.010000"],["2024-07-25T02:12:54.010000"],["2024-07-25T02:12:55.010000"],["2024-07-25T02:12:56.010000"],["2024-07-25T02:12:57.010000"],["2024-07-25T02:12:58.010000"],["2024-07-25T02:12:59.010000"],["2024-07-25T02:13:00.010000"],["2024-07-25T02:13:01.010000"],["2024-07-25T02:13:02.010000"],["2024-07-25T02:13:03.010000"],["2024-07-25T02:13:04.010000"],["2024-07-25T02:13:05.010000"],["2024-07-25T02:13:06.010000"],["2024-07-25T02:13:07.010000"],["2024-07-25T02:13:08.010000"],["2024-07-25T02:13:09.010000"],["2024-07-25T02:13:10.010000"],["2024-07-25T02:13:11.010000"],["2024-07-25T02:13:12.010000"],["2024-07-25T02:13:13.010000"],["2024-07-25T02:13:14.010000"],["2024-07-25T02:13:15.010000"],["2024-07-25T02:13:16.010000"],["2024-07-25T02:13:17.010000"],["2024-07-25T02:13:18.010000"],["2024-07-25T02:13:19.010000"],["2024-07-25T02:13:20.010000"],["2024-07-25T02:13:21.010000"],["2024-07-25T02:13:22.010000"],["2024-07-25T02:13:23.010000"],["2024-07-25T02:13:24.010000"],["2024-07-25T02:13:25.010000"],["2024-07-25T02:13:26.010000"],["2024-07-25T02:13:27.010000"],["2024-07-25T02:13:28.010000"],["2024-07-25T02:13:29.010000"],["2024-07-25T02:13:30.010000"],["2024-07-25T02:13:31.010000"],["2024-07-25T02:13:32.010000"],["2024-07-25T02:13:33.010000"],["2024-07-25T02:13:34.010000"],["2024-07-25T02:13:35.010000"],["2024-07-25T02:13:36.010000"],["2024-07-25T02:13:37.010000"],["2024-07-25T02:13:38.010000"],["2024-07-25T02:13:39.010000"],["2024-07-25T02:13:40.010000"],["2024-07-25T02:13:41.010000"],["2024-07-25T02:13:42.010000"],["2024-07-25T02:13:43.010000"],["2024-07-25T02:13:44.010000"],["2024-07-25T02:13:45.010000"],["2024-07-25T02:13:46.010000"],["2024-07-25T02:13:47.010000"],["2024-07-25T02:13:48.010000"],["2024-07-25T02:13:49.010000"],["2024-07-25T02:13:50.010000"],["2024-07-25T02:13:51.010000"],["2024-07-25T02:13:52.010000"],["2024-07-25T02:13:53.010000"],["2024-07-25T02:13:54.010000"],["2024-07-25T02:13:55.010000"],["2024-07-25T02:13:56.010000"],["2024-07-25T02:13:57.010000"],["2024-07-25T02:13:58.010000"],["2024-07-25T02:13:59.010000"],["2024-07-25T02:14:00.010000"],["2024-07-25T02:14:01.010000"],["2024-07-25T02:14:02.010000"],["2024-07-25T02:14:03.010000"],["2024-07-25T02:14:04.010000"],["2024-07-25T02:14:05.010000"],["2024-07-25T02:14:06.010000"],["2024-07-25T02:14:07.010000"],["2024-07-25T02:14:08.010000"],["2024-07-25T02:14:09.010000"],["2024-07-25T02:14:10.010000"],["2024-07-25T02:14:11.010000"],["2024-07-25T02:14:12.010000"],["2024-07-25T02:14:13.010000"],["2024-07-25T02:14:14.010000"],["2024-07-25T02:14:15.010000"],["2024-07-25T02:14:16.010000"],["2024-07-25T02:14:17.010000"],["2024-07-25T02:14:18.010000"],["2024-07-25T02:14:19.010000"],["2024-07-25T02:14:20.010000"],["2024-07-25T02:14:21.010000"],["2024-07-25T02:14:22.010000"],["2024-07-25T02:14:23.010000"],["2024-07-25T02:14:24.010000"],["2024-07-25T02:14:25.010000"],["2024-07-25T02:14:26.010000"],["2024-07-25T02:14:27.010000"],["2024-07-25T02:14:28.010000"],["2024-07-25T02:14:29.010000"],["2024-07-25T02:14:30.010000"],["2024-07-25T02:14:31.010000"],["2024-07-25T02:14:32.010000"],["2024-07-25T02:14:33.010000"],["2024-07-25T02:14:34.010000"],["2024-07-25T02:14:35.010000"],["2024-07-25T02:14:36.010000"],["2024-07-25T02:14:37.010000"],["2024-07-25T02:14:38.010000"],["2024-07-25T02:14:39.010000"],["2024-07-25T02:14:40.010000"],["2024-07-25T02:14:41.010000"],["2024-07-25T02:14:42.010000"],["2024-07-25T02:14:43.010000"],["2024-07-25T02:14:44.010000"],["2024-07-25T02:14:45.010000"],["2024-07-25T02:14:46.010000"],["2024-07-25T02:14:47.010000"],["2024-07-25T02:14:48.010000"],["2024-07-25T02:14:49.010000"],["2024-07-25T02:14:50.010000"],["2024-07-25T02:14:51.010000"],["2024-07-25T02:14:52.010000"],["2024-07-25T02:14:53.010000"],["2024-07-25T02:14:54.010000"],["2024-07-25T02:14:55.010000"],["2024-07-25T02:14:56.010000"],["2024-07-25T02:14:57.010000"],["2024-07-25T02:14:58.010000"],["2024-07-25T02:14:59.010000"],["2024-07-25T02:15:00.010000"],["2024-07-25T02:15:01.010000"],["2024-07-25T02:15:02.010000"],["2024-07-25T02:15:03.010000"],["2024-07-25T02:15:04.010000"],["2024-07-25T02:15:05.010000"],["2024-07-25T02:15:06.010000"],["2024-07-25T02:15:07.010000"],["2024-07-25T02:15:08.010000"],["2024-07-25T02:15:09.010000"],["2024-07-25T02:15:10.010000"],["2024-07-25T02:15:11.010000"],["2024-07-25T02:15:12.010000"],["2024-07-25T02:15:13.010000"],["2024-07-25T02:15:14.010000"],["2024-07-25T02:15:15.010000"],["2024-07-25T02:15:16.010000"],["2024-07-25T02:15:17.010000"],["2024-07-25T02:15:18.010000"],["2024-07-25T02:15:19.010000"],["2024-07-25T02:15:20.010000"],["2024-07-25T02:15:21.010000"],["2024-07-25T02:15:22.010000"],["2024-07-25T02:15:23.010000"],["2024-07-25T02:15:24.010000"],["2024-07-25T02:15:25.010000"],["2024-07-25T02:15:26.010000"],["2024-07-25T02:15:27.010000"],["2024-07-25T02:15:28.010000"],["2024-07-25T02:15:29.010000"],["2024-07-25T02:15:30.010000"],["2024-07-25T02:15:31.010000"],["2024-07-25T02:15:32.010000"],["2024-07-25T02:15:33.010000"],["2024-07-25T02:15:34.010000"],["2024-07-25T02:15:35.010000"],["2024-07-25T02:15:36.010000"],["2024-07-25T02:15:37.010000"],["2024-07-25T02:15:38.010000"],["2024-07-25T02:15:39.010000"],["2024-07-25T02:15:40.010000"],["2024-07-25T02:15:41.010000"],["2024-07-25T02:15:42.010000"],["2024-07-25T02:15:43.010000"],["2024-07-25T02:15:44.010000"],["2024-07-25T02:15:45.010000"],["2024-07-25T02:15:46.010000"],["2024-07-25T02:15:47.010000"],["2024-07-25T02:15:48.010000"],["2024-07-25T02:15:49.010000"],["2024-07-25T02:15:50.010000"],["2024-07-25T02:15:51.010000"],["2024-07-25T02:15:52.010000"],["2024-07-25T02:15:53.010000"],["2024-07-25T02:15:54.010000"],["2024-07-25T02:15:55.010000"],["2024-07-25T02:15:56.010000"],["2024-07-25T02:15:57.010000"],["2024-07-25T02:15:58.010000"],["2024-07-25T02:15:59.010000"],["2024-07-25T02:16:00.010000"],["2024-07-25T02:16:01.010000"],["2024-07-25T02:16:02.010000"],["2024-07-25T02:16:03.010000"],["2024-07-25T02:16:04.010000"],["2024-07-25T02:16:05.010000"],["2024-07-25T02:16:06.010000"],["2024-07-25T02:16:07.010000"],["2024-07-25T02:16:08.010000"],["2024-07-25T02:16:09.010000"],["2024-07-25T02:16:10.010000"],["2024-07-25T02:16:11.010000"],["2024-07-25T02:16:12.010000"],["2024-07-25T02:16:13.010000"],["2024-07-25T02:16:14.010000"],["2024-07-25T02:16:15.010000"],["2024-07-25T02:16:16.010000"],["2024-07-25T02:16:17.010000"],["2024-07-25T02:16:18.010000"],["2024-07-25T02:16:19.010000"],["2024-07-25T02:16:20.010000"],["2024-07-25T02:16:21.010000"],["2024-07-25T02:16:22.010000"],["2024-07-25T02:16:23.010000"],["2024-07-25T02:16:24.010000"],["2024-07-25T02:16:25.010000"],["2024-07-25T02:16:26.010000"],["2024-07-25T02:16:27.010000"],["2024-07-25T02:16:28.010000"],["2024-07-25T02:16:29.010000"],["2024-07-25T02:16:30.010000"],["2024-07-25T02:16:31.010000"],["2024-07-25T02:16:32.010000"],["2024-07-25T02:16:33.010000"],["2024-07-25T02:16:34.010000"],["2024-07-25T02:16:35.010000"],["2024-07-25T02:16:36.010000"],["2024-07-25T02:16:37.010000"],["2024-07-25T02:16:38.010000"],["2024-07-25T02:16:39.010000"],["2024-07-25T02:16:40.010000"],["2024-07-25T02:16:41.010000"],["2024-07-25T02:16:42.010000"],["2024-07-25T02:16:43.010000"],["2024-07-25T02:16:44.010000"],["2024-07-25T02:16:45.010000"],["2024-07-25T02:16:46.010000"],["2024-07-25T02:16:47.010000"],["2024-07-25T02:16:48.010000"],["2024-07-25T02:16:49.010000"],["2024-07-25T02:16:50.010000"],["2024-07-25T02:16:51.010000"],["2024-07-25T02:16:52.010000"],["2024-07-25T02:16:53.010000"],["2024-07-25T02:16:54.010000"],["2024-07-25T02:16:55.010000"],["2024-07-25T02:16:56.010000"],["2024-07-25T02:16:57.010000"],["2024-07-25T02:16:58.010000"],["2024-07-25T02:16:59.010000"],["2024-07-25T02:17:00.010000"],["2024-07-25T02:17:01.010000"],["2024-07-25T02:17:02.010000"],["2024-07-25T02:17:03.010000"],["2024-07-25T02:17:04.010000"],["2024-07-25T02:17:05.010000"],["2024-07-25T02:17:06.010000"],["2024-07-25T02:17:07.010000"],["2024-07-25T02:17:08.010000"],["2024-07-25T02:17:09.010000"],["2024-07-25T02:17:10.010000"],["2024-07-25T02:17:11.010000"],["2024-07-25T02:17:12.010000"],["2024-07-25T02:17:13.010000"],["2024-07-25T02:17:14.010000"],["2024-07-25T02:17:15.010000"],["2024-07-25T02:17:16.010000"],["2024-07-25T02:17:17.010000"],["2024-07-25T02:17:18.010000"],["2024-07-25T02:17:19.010000"],["2024-07-25T02:17:20.010000"],["2024-07-25T02:17:21.010000"],["2024-07-25T02:17:22.010000"],["2024-07-25T02:17:23.010000"],["2024-07-25T02:17:24.010000"],["2024-07-25T02:17:25.010000"],["2024-07-25T02:17:26.010000"],["2024-07-25T02:17:27.010000"],["2024-07-25T02:17:28.010000"],["2024-07-25T02:17:29.010000"],["2024-07-25T02:17:30.010000"],["2024-07-25T02:17:31.010000"],["2024-07-25T02:17:32.010000"],["2024-07-25T02:17:33.010000"],["2024-07-25T02:17:34.010000"],["2024-07-25T02:17:35.010000"],["2024-07-25T02:17:36.010000"],["2024-07-25T02:17:37.010000"],["2024-07-25T02:17:38.010000"],["2024-07-25T02:17:39.010000"],["2024-07-25T02:17:40.010000"],["2024-07-25T02:17:41.010000"],["2024-07-25T02:17:42.010000"],["2024-07-25T02:17:43.010000"],["2024-07-25T02:17:44.010000"],["2024-07-25T02:17:45.010000"],["2024-07-25T02:17:46.010000"],["2024-07-25T02:17:47.010000"],["2024-07-25T02:17:48.010000"],["2024-07-25T02:17:49.010000"],["2024-07-25T02:17:50.010000"],["2024-07-25T02:17:51.010000"],["2024-07-25T02:17:52.010000"],["2024-07-25T02:17:53.010000"],["2024-07-25T02:17:54.010000"],["2024-07-25T02:17:55.010000"],["2024-07-25T02:17:56.010000"],["2024-07-25T02:17:57.010000"],["2024-07-25T02:17:58.010000"],["2024-07-25T02:17:59.010000"],["2024-07-25T02:18:00.010000"],["2024-07-25T02:18:01.010000"],["2024-07-25T02:18:02.010000"],["2024-07-25T02:18:03.010000"],["2024-07-25T02:18:04.010000"],["2024-07-25T02:18:05.010000"],["2024-07-25T02:18:06.010000"],["2024-07-25T02:18:07.010000"],["2024-07-25T02:18:08.010000"],["2024-07-25T02:18:09.010000"],["2024-07-25T02:18:10.010000"],["2024-07-25T02:18:11.010000"],["2024-07-25T02:18:12.010000"],["2024-07-25T02:18:13.010000"],["2024-07-25T02:18:14.010000"],["2024-07-25T02:18:15.010000"],["2024-07-25T02:18:16.010000"],["2024-07-25T02:18:17.010000"],["2024-07-25T02:18:18.010000"],["2024-07-25T02:18:19.010000"],["2024-07-25T02:18:20.010000"],["2024-07-25T02:18:21.010000"],["2024-07-25T02:18:22.010000"],["2024-07-25T02:18:23.010000"],["2024-07-25T02:18:24.010000"],["2024-07-25T02:18:25.010000"],["2024-07-25T02:18:26.010000"],["2024-07-25T02:18:27.010000"],["2024-07-25T02:18:28.010000"],["2024-07-25T02:18:29.010000"],["2024-07-25T02:18:30.010000"],["2024-07-25T02:18:31.010000"],["2024-07-25T02:18:32.010000"],["2024-07-25T02:18:33.010000"],["2024-07-25T02:18:34.010000"],["2024-07-25T02:18:35.010000"],["2024-07-25T02:18:36.010000"],["2024-07-25T02:18:37.010000"],["2024-07-25T02:18:38.010000"],["2024-07-25T02:18:39.010000"],["2024-07-25T02:18:40.010000"],["2024-07-25T02:18:41.010000"],["2024-07-25T02:18:42.010000"],["2024-07-25T02:18:43.010000"],["2024-07-25T02:18:44.010000"],["2024-07-25T02:18:45.010000"],["2024-07-25T02:18:46.010000"],["2024-07-25T02:18:47.010000"],["2024-07-25T02:18:48.010000"],["2024-07-25T02:18:49.010000"],["2024-07-25T02:18:50.010000"],["2024-07-25T02:18:51.010000"],["2024-07-25T02:18:52.010000"],["2024-07-25T02:18:53.010000"],["2024-07-25T02:18:54.010000"],["2024-07-25T02:18:55.010000"],["2024-07-25T02:18:56.010000"],["2024-07-25T02:18:57.010000"],["2024-07-25T02:18:58.010000"],["2024-07-25T02:18:59.010000"],["2024-07-25T02:19:00.010000"],["2024-07-25T02:19:01.010000"],["2024-07-25T02:19:02.010000"],["2024-07-25T02:19:03.010000"],["2024-07-25T02:19:04.010000"],["2024-07-25T02:19:05.010000"],["2024-07-25T02:19:06.010000"],["2024-07-25T02:19:07.010000"],["2024-07-25T02:19:08.010000"],["2024-07-25T02:19:09.010000"],["2024-07-25T02:19:10.010000"],["2024-07-25T02:19:11.010000"],["2024-07-25T02:19:12.010000"],["2024-07-25T02:19:13.010000"],["2024-07-25T02:19:14.010000"],["2024-07-25T02:19:15.010000"],["2024-07-25T02:19:16.010000"],["2024-07-25T02:19:17.010000"],["2024-07-25T02:19:18.010000"],["2024-07-25T02:19:19.010000"],["2024-07-25T02:19:20.010000"],["2024-07-25T02:19:21.010000"],["2024-07-25T02:19:22.010000"],["2024-07-25T02:19:23.010000"],["2024-07-25T02:19:24.010000"],["2024-07-25T02:19:25.010000"],["2024-07-25T02:19:26.010000"],["2024-07-25T02:19:27.010000"],["2024-07-25T02:19:28.010000"],["2024-07-25T02:19:29.010000"],["2024-07-25T02:19:30.010000"],["2024-07-25T02:19:31.010000"],["2024-07-25T02:19:32.010000"],["2024-07-25T02:19:33.010000"],["2024-07-25T02:19:34.010000"],["2024-07-25T02:19:35.010000"],["2024-07-25T02:19:36.010000"],["2024-07-25T02:19:37.010000"],["2024-07-25T02:19:38.010000"],["2024-07-25T02:19:39.010000"],["2024-07-25T02:19:40.010000"],["2024-07-25T02:19:41.010000"],["2024-07-25T02:19:42.010000"],["2024-07-25T02:19:43.010000"],["2024-07-25T02:19:44.010000"],["2024-07-25T02:19:45.010000"],["2024-07-25T02:19:46.010000"],["2024-07-25T02:19:47.010000"],["2024-07-25T02:19:48.010000"],["2024-07-25T02:19:49.010000"],["2024-07-25T02:19:50.010000"],["2024-07-25T02:19:51.010000"],["2024-07-25T02:19:52.010000"],["2024-07-25T02:19:53.010000"],["2024-07-25T02:19:54.010000"],["2024-07-25T02:19:55.010000"],["2024-07-25T02:19:56.010000"],["2024-07-25T02:19:57.010000"],["2024-07-25T02:19:58.010000"],["2024-07-25T02:19:59.010000"],["2024-07-25T02:20:00.010000"],["2024-07-25T02:20:01.010000"],["2024-07-25T02:20:02.010000"],["2024-07-25T02:20:03.010000"],["2024-07-25T02:20:04.010000"],["2024-07-25T02:20:05.010000"],["2024-07-25T02:20:06.010000"],["2024-07-25T02:20:07.010000"],["2024-07-25T02:20:08.010000"],["2024-07-25T02:20:09.010000"],["2024-07-25T02:20:10.010000"],["2024-07-25T02:20:11.010000"],["2024-07-25T02:20:12.010000"],["2024-07-25T02:20:13.010000"],["2024-07-25T02:20:14.010000"],["2024-07-25T02:20:15.010000"],["2024-07-25T02:20:16.010000"],["2024-07-25T02:20:17.010000"],["2024-07-25T02:20:18.010000"],["2024-07-25T02:20:19.010000"],["2024-07-25T02:20:20.010000"],["2024-07-25T02:20:21.010000"],["2024-07-25T02:20:22.010000"],["2024-07-25T02:20:23.010000"],["2024-07-25T02:20:24.010000"],["2024-07-25T02:20:25.010000"],["2024-07-25T02:20:26.010000"],["2024-07-25T02:20:27.010000"],["2024-07-25T02:20:28.010000"],["2024-07-25T02:20:29.010000"],["2024-07-25T02:20:30.010000"],["2024-07-25T02:20:31.010000"],["2024-07-25T02:20:32.010000"],["2024-07-25T02:20:33.010000"],["2024-07-25T02:20:34.010000"],["2024-07-25T02:20:35.010000"],["2024-07-25T02:20:36.010000"],["2024-07-25T02:20:37.010000"],["2024-07-25T02:20:38.010000"],["2024-07-25T02:20:39.010000"],["2024-07-25T02:20:40.010000"],["2024-07-25T02:20:41.010000"],["2024-07-25T02:20:42.010000"],["2024-07-25T02:20:43.010000"],["2024-07-25T02:20:44.010000"],["2024-07-25T02:20:45.010000"],["2024-07-25T02:20:46.010000"],["2024-07-25T02:20:47.010000"],["2024-07-25T02:20:48.010000"],["2024-07-25T02:20:49.010000"],["2024-07-25T02:20:50.010000"],["2024-07-25T02:20:51.010000"],["2024-07-25T02:20:52.010000"],["2024-07-25T02:20:53.010000"],["2024-07-25T02:20:54.010000"],["2024-07-25T02:20:55.010000"],["2024-07-25T02:20:56.010000"],["2024-07-25T02:20:57.010000"],["2024-07-25T02:20:58.010000"],["2024-07-25T02:20:59.010000"],["2024-07-25T02:21:00.010000"],["2024-07-25T02:21:01.010000"],["2024-07-25T02:21:02.010000"],["2024-07-25T02:21:03.010000"],["2024-07-25T02:21:04.010000"],["2024-07-25T02:21:05.010000"],["2024-07-25T02:21:06.010000"],["2024-07-25T02:21:07.010000"],["2024-07-25T02:21:08.010000"],["2024-07-25T02:21:09.010000"],["2024-07-25T02:21:10.010000"],["2024-07-25T02:21:11.010000"],["2024-07-25T02:21:12.010000"],["2024-07-25T02:21:13.010000"],["2024-07-25T02:21:14.010000"],["2024-07-25T02:21:15.010000"],["2024-07-25T02:21:16.010000"],["2024-07-25T02:21:17.010000"],["2024-07-25T02:21:18.010000"],["2024-07-25T02:21:19.010000"],["2024-07-25T02:21:20.010000"],["2024-07-25T02:21:21.010000"],["2024-07-25T02:21:22.010000"],["2024-07-25T02:21:23.010000"],["2024-07-25T02:21:24.010000"],["2024-07-25T02:21:25.010000"],["2024-07-25T02:21:26.010000"],["2024-07-25T02:21:27.010000"],["2024-07-25T02:21:28.010000"],["2024-07-25T02:21:29.010000"],["2024-07-25T02:21:30.010000"],["2024-07-25T02:21:31.010000"],["2024-07-25T02:21:32.010000"],["2024-07-25T02:21:33.010000"],["2024-07-25T02:21:34.010000"],["2024-07-25T02:21:35.010000"],["2024-07-25T02:21:36.010000"],["2024-07-25T02:21:37.010000"],["2024-07-25T02:21:38.010000"],["2024-07-25T02:21:39.010000"],["2024-07-25T02:21:40.010000"],["2024-07-25T02:21:41.010000"],["2024-07-25T02:21:42.010000"],["2024-07-25T02:21:43.010000"],["2024-07-25T02:21:44.010000"],["2024-07-25T02:21:45.010000"],["2024-07-25T02:21:46.010000"],["2024-07-25T02:21:47.010000"],["2024-07-25T02:21:48.010000"],["2024-07-25T02:21:49.010000"],["2024-07-25T02:21:50.010000"],["2024-07-25T02:21:51.010000"],["2024-07-25T02:21:52.010000"],["2024-07-25T02:21:53.010000"],["2024-07-25T02:21:54.010000"],["2024-07-25T02:21:55.010000"],["2024-07-25T02:21:56.010000"],["2024-07-25T02:21:57.010000"],["2024-07-25T02:21:58.010000"],["2024-07-25T02:21:59.010000"],["2024-07-25T02:22:00.010000"],["2024-07-25T02:22:01.010000"],["2024-07-25T02:22:02.010000"],["2024-07-25T02:22:03.010000"],["2024-07-25T02:22:04.010000"],["2024-07-25T02:22:05.010000"],["2024-07-25T02:22:06.010000"],["2024-07-25T02:22:07.010000"],["2024-07-25T02:22:08.010000"],["2024-07-25T02:22:09.010000"],["2024-07-25T02:22:10.010000"],["2024-07-25T02:22:11.010000"],["2024-07-25T02:22:12.010000"],["2024-07-25T02:22:13.010000"],["2024-07-25T02:22:14.010000"],["2024-07-25T02:22:15.010000"],["2024-07-25T02:22:16.010000"],["2024-07-25T02:22:17.010000"],["2024-07-25T02:22:18.010000"],["2024-07-25T02:22:19.010000"],["2024-07-25T02:22:20.010000"],["2024-07-25T02:22:21.010000"],["2024-07-25T02:22:22.010000"],["2024-07-25T02:22:23.010000"],["2024-07-25T02:22:24.010000"],["2024-07-25T02:22:25.010000"],["2024-07-25T02:22:26.010000"],["2024-07-25T02:22:27.010000"],["2024-07-25T02:22:28.010000"],["2024-07-25T02:22:29.010000"],["2024-07-25T02:22:30.010000"],["2024-07-25T02:22:31.010000"],["2024-07-25T02:22:32.010000"],["2024-07-25T02:22:33.010000"],["2024-07-25T02:22:34.010000"],["2024-07-25T02:22:35.010000"],["2024-07-25T02:22:36.010000"],["2024-07-25T02:22:37.010000"],["2024-07-25T02:22:38.010000"],["2024-07-25T02:22:39.010000"],["2024-07-25T02:22:40.010000"],["2024-07-25T02:22:41.010000"],["2024-07-25T02:22:42.010000"],["2024-07-25T02:22:43.010000"],["2024-07-25T02:22:44.010000"],["2024-07-25T02:22:45.010000"],["2024-07-25T02:22:46.010000"],["2024-07-25T02:22:47.010000"],["2024-07-25T02:22:48.010000"],["2024-07-25T02:22:49.010000"],["2024-07-25T02:22:50.010000"],["2024-07-25T02:22:51.010000"],["2024-07-25T02:22:52.010000"],["2024-07-25T02:22:53.010000"],["2024-07-25T02:22:54.010000"],["2024-07-25T02:22:55.010000"],["2024-07-25T02:22:56.010000"],["2024-07-25T02:22:57.010000"],["2024-07-25T02:22:58.010000"],["2024-07-25T02:22:59.010000"],["2024-07-25T02:23:00.010000"],["2024-07-25T02:23:01.010000"],["2024-07-25T02:23:02.010000"],["2024-07-25T02:23:03.010000"],["2024-07-25T02:23:04.010000"],["2024-07-25T02:23:05.010000"],["2024-07-25T02:23:06.010000"],["2024-07-25T02:23:07.010000"],["2024-07-25T02:23:08.010000"],["2024-07-25T02:23:09.010000"],["2024-07-25T02:23:10.010000"],["2024-07-25T02:23:11.010000"],["2024-07-25T02:23:12.010000"],["2024-07-25T02:23:13.010000"],["2024-07-25T02:23:14.010000"],["2024-07-25T02:23:15.010000"],["2024-07-25T02:23:16.010000"],["2024-07-25T02:23:17.010000"],["2024-07-25T02:23:18.010000"],["2024-07-25T02:23:19.010000"],["2024-07-25T02:23:20.010000"],["2024-07-25T02:23:21.010000"],["2024-07-25T02:23:22.010000"],["2024-07-25T02:23:23.010000"],["2024-07-25T02:23:24.010000"],["2024-07-25T02:23:25.010000"],["2024-07-25T02:23:26.010000"],["2024-07-25T02:23:27.010000"],["2024-07-25T02:23:28.010000"],["2024-07-25T02:23:29.010000"],["2024-07-25T02:23:30.010000"],["2024-07-25T02:23:31.010000"],["2024-07-25T02:23:32.010000"],["2024-07-25T02:23:33.010000"],["2024-07-25T02:23:34.010000"],["2024-07-25T02:23:35.010000"],["2024-07-25T02:23:36.010000"],["2024-07-25T02:23:37.010000"],["2024-07-25T02:23:38.010000"],["2024-07-25T02:23:39.010000"],["2024-07-25T02:23:40.010000"],["2024-07-25T02:23:41.010000"],["2024-07-25T02:23:42.010000"],["2024-07-25T02:23:43.010000"],["2024-07-25T02:23:44.010000"],["2024-07-25T02:23:45.010000"],["2024-07-25T02:23:46.010000"],["2024-07-25T02:23:47.010000"],["2024-07-25T02:23:48.010000"],["2024-07-25T02:23:49.010000"],["2024-07-25T02:23:50.010000"],["2024-07-25T02:23:51.010000"],["2024-07-25T02:23:52.010000"],["2024-07-25T02:23:53.010000"],["2024-07-25T02:23:54.010000"],["2024-07-25T02:23:55.010000"],["2024-07-25T02:23:56.010000"],["2024-07-25T02:23:57.010000"],["2024-07-25T02:23:58.010000"],["2024-07-25T02:23:59.010000"],["2024-07-25T02:24:00.010000"],["2024-07-25T02:24:01.010000"],["2024-07-25T02:24:02.010000"],["2024-07-25T02:24:03.010000"],["2024-07-25T02:24:04.010000"],["2024-07-25T02:24:05.010000"],["2024-07-25T02:24:06.010000"],["2024-07-25T02:24:07.010000"],["2024-07-25T02:24:08.010000"],["2024-07-25T02:24:09.010000"],["2024-07-25T02:24:10.010000"],["2024-07-25T02:24:11.010000"],["2024-07-25T02:24:12.010000"],["2024-07-25T02:24:13.010000"],["2024-07-25T02:24:14.010000"],["2024-07-25T02:24:15.010000"],["2024-07-25T02:24:16.010000"],["2024-07-25T02:24:17.010000"],["2024-07-25T02:24:18.010000"],["2024-07-25T02:24:19.010000"],["2024-07-25T02:24:20.010000"],["2024-07-25T02:24:21.010000"],["2024-07-25T02:24:22.010000"],["2024-07-25T02:24:23.010000"],["2024-07-25T02:24:24.010000"],["2024-07-25T02:24:25.010000"],["2024-07-25T02:24:26.010000"],["2024-07-25T02:24:27.010000"],["2024-07-25T02:24:28.010000"],["2024-07-25T02:24:29.010000"],["2024-07-25T02:24:30.010000"],["2024-07-25T02:24:31.010000"],["2024-07-25T02:24:32.010000"],["2024-07-25T02:24:33.010000"],["2024-07-25T02:24:34.010000"],["2024-07-25T02:24:35.010000"],["2024-07-25T02:24:36.010000"],["2024-07-25T02:24:37.010000"],["2024-07-25T02:24:38.010000"],["2024-07-25T02:24:39.010000"],["2024-07-25T02:24:40.010000"],["2024-07-25T02:24:41.010000"],["2024-07-25T02:24:42.010000"],["2024-07-25T02:24:43.010000"],["2024-07-25T02:24:44.010000"],["2024-07-25T02:24:45.010000"],["2024-07-25T02:24:46.010000"],["2024-07-25T02:24:47.010000"],["2024-07-25T02:24:48.010000"],["2024-07-25T02:24:49.010000"],["2024-07-25T02:24:50.010000"],["2024-07-25T02:24:51.010000"],["2024-07-25T02:24:52.010000"],["2024-07-25T02:24:53.010000"],["2024-07-25T02:24:54.010000"],["2024-07-25T02:24:55.010000"],["2024-07-25T02:24:56.010000"],["2024-07-25T02:24:57.010000"],["2024-07-25T02:24:58.010000"],["2024-07-25T02:24:59.010000"],["2024-07-25T02:25:00.010000"],["2024-07-25T02:25:01.010000"],["2024-07-25T02:25:02.010000"],["2024-07-25T02:25:03.010000"],["2024-07-25T02:25:04.010000"],["2024-07-25T02:25:05.010000"],["2024-07-25T02:25:06.010000"],["2024-07-25T02:25:07.010000"],["2024-07-25T02:25:08.010000"],["2024-07-25T02:25:09.010000"],["2024-07-25T02:25:10.010000"],["2024-07-25T02:25:11.010000"],["2024-07-25T02:25:12.010000"],["2024-07-25T02:25:13.010000"],["2024-07-25T02:25:14.010000"],["2024-07-25T02:25:15.010000"],["2024-07-25T02:25:16.010000"],["2024-07-25T02:25:17.010000"],["2024-07-25T02:25:18.010000"],["2024-07-25T02:25:19.010000"],["2024-07-25T02:25:20.010000"],["2024-07-25T02:25:21.010000"],["2024-07-25T02:25:22.010000"],["2024-07-25T02:25:23.010000"],["2024-07-25T02:25:24.010000"],["2024-07-25T02:25:25.010000"],["2024-07-25T02:25:26.010000"],["2024-07-25T02:25:27.010000"],["2024-07-25T02:25:28.010000"],["2024-07-25T02:25:29.010000"],["2024-07-25T02:25:30.010000"],["2024-07-25T02:25:31.010000"],["2024-07-25T02:25:32.010000"],["2024-07-25T02:25:33.010000"],["2024-07-25T02:25:34.010000"],["2024-07-25T02:25:35.010000"],["2024-07-25T02:25:36.010000"],["2024-07-25T02:25:37.010000"],["2024-07-25T02:25:38.010000"],["2024-07-25T02:25:39.010000"],["2024-07-25T02:25:40.010000"],["2024-07-25T02:25:41.010000"],["2024-07-25T02:25:42.010000"],["2024-07-25T02:25:43.010000"],["2024-07-25T02:25:44.010000"],["2024-07-25T02:25:45.010000"],["2024-07-25T02:25:46.010000"],["2024-07-25T02:25:47.010000"],["2024-07-25T02:25:48.010000"],["2024-07-25T02:25:49.010000"],["2024-07-25T02:25:50.010000"],["2024-07-25T02:25:51.010000"],["2024-07-25T02:25:52.010000"],["2024-07-25T02:25:53.010000"],["2024-07-25T02:25:54.010000"],["2024-07-25T02:25:55.010000"],["2024-07-25T02:25:56.010000"],["2024-07-25T02:25:57.010000"],["2024-07-25T02:25:58.010000"],["2024-07-25T02:25:59.010000"],["2024-07-25T02:26:00.010000"],["2024-07-25T02:26:01.010000"],["2024-07-25T02:26:02.010000"],["2024-07-25T02:26:03.010000"],["2024-07-25T02:26:04.010000"],["2024-07-25T02:26:05.010000"],["2024-07-25T02:26:06.010000"],["2024-07-25T02:26:07.010000"],["2024-07-25T02:26:08.010000"],["2024-07-25T02:26:09.010000"],["2024-07-25T02:26:10.010000"],["2024-07-25T02:26:11.010000"],["2024-07-25T02:26:12.010000"],["2024-07-25T02:26:13.010000"],["2024-07-25T02:26:14.010000"],["2024-07-25T02:26:15.010000"],["2024-07-25T02:26:16.010000"],["2024-07-25T02:26:17.010000"],["2024-07-25T02:26:18.010000"],["2024-07-25T02:26:19.010000"],["2024-07-25T02:26:20.010000"],["2024-07-25T02:26:21.010000"],["2024-07-25T02:26:22.010000"],["2024-07-25T02:26:23.010000"],["2024-07-25T02:26:24.010000"],["2024-07-25T02:26:25.010000"],["2024-07-25T02:26:26.010000"],["2024-07-25T02:26:27.010000"],["2024-07-25T02:26:28.010000"],["2024-07-25T02:26:29.010000"],["2024-07-25T02:26:30.010000"],["2024-07-25T02:26:31.010000"],["2024-07-25T02:26:32.010000"],["2024-07-25T02:26:33.010000"],["2024-07-25T02:26:34.010000"],["2024-07-25T02:26:35.010000"],["2024-07-25T02:26:36.010000"],["2024-07-25T02:26:37.010000"],["2024-07-25T02:26:38.010000"],["2024-07-25T02:26:39.010000"],["2024-07-25T02:26:40.010000"],["2024-07-25T02:26:41.010000"],["2024-07-25T02:26:42.010000"],["2024-07-25T02:26:43.010000"],["2024-07-25T02:26:44.010000"],["2024-07-25T02:26:45.010000"],["2024-07-25T02:26:46.010000"],["2024-07-25T02:26:47.010000"],["2024-07-25T02:26:48.010000"],["2024-07-25T02:26:49.010000"],["2024-07-25T02:26:50.010000"],["2024-07-25T02:26:51.010000"],["2024-07-25T02:26:52.010000"],["2024-07-25T02:26:53.010000"],["2024-07-25T02:26:54.010000"],["2024-07-25T02:26:55.010000"],["2024-07-25T02:26:56.010000"],["2024-07-25T02:26:57.010000"],["2024-07-25T02:26:58.010000"],["2024-07-25T02:26:59.010000"],["2024-07-25T02:27:00.010000"],["2024-07-25T02:27:01.010000"],["2024-07-25T02:27:02.010000"],["2024-07-25T02:27:03.010000"],["2024-07-25T02:27:04.010000"],["2024-07-25T02:27:05.010000"],["2024-07-25T02:27:06.010000"],["2024-07-25T02:27:07.010000"],["2024-07-25T02:27:08.010000"],["2024-07-25T02:27:09.010000"],["2024-07-25T02:27:10.010000"],["2024-07-25T02:27:11.010000"],["2024-07-25T02:27:12.010000"],["2024-07-25T02:27:13.010000"],["2024-07-25T02:27:14.010000"],["2024-07-25T02:27:15.010000"],["2024-07-25T02:27:16.010000"],["2024-07-25T02:27:17.010000"],["2024-07-25T02:27:18.010000"],["2024-07-25T02:27:19.010000"],["2024-07-25T02:27:20.010000"],["2024-07-25T02:27:21.010000"],["2024-07-25T02:27:22.010000"],["2024-07-25T02:27:23.010000"],["2024-07-25T02:27:24.010000"],["2024-07-25T02:27:25.010000"],["2024-07-25T02:27:26.010000"],["2024-07-25T02:27:27.010000"],["2024-07-25T02:27:28.010000"],["2024-07-25T02:27:29.010000"],["2024-07-25T02:27:30.010000"],["2024-07-25T02:27:31.010000"],["2024-07-25T02:27:32.010000"],["2024-07-25T02:27:33.010000"],["2024-07-25T02:27:34.010000"],["2024-07-25T02:27:35.010000"],["2024-07-25T02:27:36.010000"],["2024-07-25T02:27:37.010000"],["2024-07-25T02:27:38.010000"],["2024-07-25T02:27:39.010000"],["2024-07-25T02:27:40.010000"],["2024-07-25T02:27:41.010000"],["2024-07-25T02:27:42.010000"],["2024-07-25T02:27:43.010000"],["2024-07-25T02:27:44.010000"],["2024-07-25T02:27:45.010000"],["2024-07-25T02:27:46.010000"],["2024-07-25T02:27:47.010000"],["2024-07-25T02:27:48.010000"],["2024-07-25T02:27:49.010000"],["2024-07-25T02:27:50.010000"],["2024-07-25T02:27:51.010000"],["2024-07-25T02:27:52.010000"],["2024-07-25T02:27:53.010000"],["2024-07-25T02:27:54.010000"],["2024-07-25T02:27:55.010000"],["2024-07-25T02:27:56.010000"],["2024-07-25T02:27:57.010000"],["2024-07-25T02:27:58.010000"],["2024-07-25T02:27:59.010000"],["2024-07-25T02:28:00.010000"],["2024-07-25T02:28:01.010000"],["2024-07-25T02:28:02.010000"],["2024-07-25T02:28:03.010000"],["2024-07-25T02:28:04.010000"],["2024-07-25T02:28:05.010000"],["2024-07-25T02:28:06.010000"],["2024-07-25T02:28:07.010000"],["2024-07-25T02:28:08.010000"],["2024-07-25T02:28:09.010000"],["2024-07-25T02:28:10.010000"],["2024-07-25T02:28:11.010000"],["2024-07-25T02:28:12.010000"],["2024-07-25T02:28:13.010000"],["2024-07-25T02:28:14.010000"],["2024-07-25T02:28:15.010000"],["2024-07-25T02:28:16.010000"],["2024-07-25T02:28:17.010000"],["2024-07-25T02:28:18.010000"],["2024-07-25T02:28:19.010000"],["2024-07-25T02:28:20.010000"],["2024-07-25T02:28:21.010000"],["2024-07-25T02:28:22.010000"],["2024-07-25T02:28:23.010000"],["2024-07-25T02:28:24.010000"],["2024-07-25T02:28:25.010000"],["2024-07-25T02:28:26.010000"],["2024-07-25T02:28:27.010000"],["2024-07-25T02:28:28.010000"],["2024-07-25T02:28:29.010000"],["2024-07-25T02:28:30.010000"],["2024-07-25T02:28:31.010000"],["2024-07-25T02:28:32.010000"],["2024-07-25T02:28:33.010000"],["2024-07-25T02:28:34.010000"],["2024-07-25T02:28:35.010000"],["2024-07-25T02:28:36.010000"],["2024-07-25T02:28:37.010000"],["2024-07-25T02:28:38.010000"],["2024-07-25T02:28:39.010000"],["2024-07-25T02:28:40.010000"],["2024-07-25T02:28:41.010000"],["2024-07-25T02:28:42.010000"],["2024-07-25T02:28:43.010000"],["2024-07-25T02:28:44.010000"],["2024-07-25T02:28:45.010000"],["2024-07-25T02:28:46.010000"],["2024-07-25T02:28:47.010000"],["2024-07-25T02:28:48.010000"],["2024-07-25T02:28:49.010000"],["2024-07-25T02:28:50.010000"],["2024-07-25T02:28:51.010000"],["2024-07-25T02:28:52.010000"],["2024-07-25T02:28:53.010000"],["2024-07-25T02:28:54.010000"],["2024-07-25T02:28:55.010000"],["2024-07-25T02:28:56.010000"],["2024-07-25T02:28:57.010000"],["2024-07-25T02:28:58.010000"],["2024-07-25T02:28:59.010000"],["2024-07-25T02:29:00.010000"],["2024-07-25T02:29:01.010000"],["2024-07-25T02:29:02.010000"],["2024-07-25T02:29:03.010000"],["2024-07-25T02:29:04.010000"],["2024-07-25T02:29:05.010000"],["2024-07-25T02:29:06.010000"],["2024-07-25T02:29:07.010000"],["2024-07-25T02:29:08.010000"],["2024-07-25T02:29:09.010000"],["2024-07-25T02:29:10.010000"],["2024-07-25T02:29:11.010000"],["2024-07-25T02:29:12.010000"],["2024-07-25T02:29:13.010000"],["2024-07-25T02:29:14.010000"],["2024-07-25T02:29:15.010000"],["2024-07-25T02:29:16.010000"],["2024-07-25T02:29:17.010000"],["2024-07-25T02:29:18.010000"],["2024-07-25T02:29:19.010000"],["2024-07-25T02:29:20.010000"],["2024-07-25T02:29:21.010000"],["2024-07-25T02:29:22.010000"],["2024-07-25T02:29:23.010000"],["2024-07-25T02:29:24.010000"],["2024-07-25T02:29:25.010000"],["2024-07-25T02:29:26.010000"],["2024-07-25T02:29:27.010000"],["2024-07-25T02:29:28.010000"],["2024-07-25T02:29:29.010000"],["2024-07-25T02:29:30.010000"],["2024-07-25T02:29:31.010000"],["2024-07-25T02:29:32.010000"],["2024-07-25T02:29:33.010000"],["2024-07-25T02:29:34.010000"],["2024-07-25T02:29:35.010000"],["2024-07-25T02:29:36.010000"],["2024-07-25T02:29:37.010000"],["2024-07-25T02:29:38.010000"],["2024-07-25T02:29:39.010000"],["2024-07-25T02:29:40.010000"],["2024-07-25T02:29:41.010000"],["2024-07-25T02:29:42.010000"],["2024-07-25T02:29:43.010000"],["2024-07-25T02:29:44.010000"],["2024-07-25T02:29:45.010000"],["2024-07-25T02:29:46.010000"],["2024-07-25T02:29:47.010000"],["2024-07-25T02:29:48.010000"],["2024-07-25T02:29:49.010000"],["2024-07-25T02:29:50.010000"],["2024-07-25T02:29:51.010000"],["2024-07-25T02:29:52.010000"],["2024-07-25T02:29:53.010000"],["2024-07-25T02:29:54.010000"],["2024-07-25T02:29:55.010000"],["2024-07-25T02:29:56.010000"],["2024-07-25T02:29:57.010000"],["2024-07-25T02:29:58.010000"],["2024-07-25T02:29:59.010000"],["2024-07-25T02:30:00.010000"],["2024-07-25T02:30:01.010000"],["2024-07-25T02:30:02.010000"],["2024-07-25T02:30:03.010000"],["2024-07-25T02:30:04.010000"],["2024-07-25T02:30:05.010000"],["2024-07-25T02:30:06.010000"],["2024-07-25T02:30:07.010000"],["2024-07-25T02:30:08.010000"],["2024-07-25T02:30:09.010000"],["2024-07-25T02:30:10.010000"],["2024-07-25T02:30:11.010000"],["2024-07-25T02:30:12.010000"],["2024-07-25T02:30:13.010000"],["2024-07-25T02:30:14.010000"],["2024-07-25T02:30:15.010000"],["2024-07-25T02:30:16.010000"],["2024-07-25T02:30:17.010000"],["2024-07-25T02:30:18.010000"],["2024-07-25T02:30:19.010000"],["2024-07-25T02:30:20.010000"],["2024-07-25T02:30:21.010000"],["2024-07-25T02:30:22.010000"],["2024-07-25T02:30:23.010000"],["2024-07-25T02:30:24.010000"],["2024-07-25T02:30:25.010000"],["2024-07-25T02:30:26.010000"],["2024-07-25T02:30:27.010000"],["2024-07-25T02:30:28.010000"],["2024-07-25T02:30:29.010000"],["2024-07-25T02:30:30.010000"],["2024-07-25T02:30:31.010000"],["2024-07-25T02:30:32.010000"],["2024-07-25T02:30:33.010000"],["2024-07-25T02:30:34.010000"],["2024-07-25T02:30:35.010000"],["2024-07-25T02:30:36.010000"],["2024-07-25T02:30:37.010000"],["2024-07-25T02:30:38.010000"],["2024-07-25T02:30:39.010000"],["2024-07-25T02:30:40.010000"],["2024-07-25T02:30:41.010000"],["2024-07-25T02:30:42.010000"],["2024-07-25T02:30:43.010000"],["2024-07-25T02:30:44.010000"],["2024-07-25T02:30:45.010000"],["2024-07-25T02:30:46.010000"],["2024-07-25T02:30:47.010000"],["2024-07-25T02:30:48.010000"],["2024-07-25T02:30:49.010000"],["2024-07-25T02:30:50.010000"],["2024-07-25T02:30:51.010000"],["2024-07-25T02:30:52.010000"],["2024-07-25T02:30:53.010000"],["2024-07-25T02:30:54.010000"],["2024-07-25T02:30:55.010000"],["2024-07-25T02:30:56.010000"],["2024-07-25T02:30:57.010000"],["2024-07-25T02:30:58.010000"],["2024-07-25T02:30:59.010000"],["2024-07-25T02:31:00.010000"],["2024-07-25T02:31:01.010000"],["2024-07-25T02:31:02.010000"],["2024-07-25T02:31:03.010000"],["2024-07-25T02:31:04.010000"],["2024-07-25T02:31:05.010000"],["2024-07-25T02:31:06.010000"],["2024-07-25T02:31:07.010000"],["2024-07-25T02:31:08.010000"],["2024-07-25T02:31:09.010000"],["2024-07-25T02:31:10.010000"],["2024-07-25T02:31:11.010000"],["2024-07-25T02:31:12.010000"],["2024-07-25T02:31:13.010000"],["2024-07-25T02:31:14.010000"],["2024-07-25T02:31:15.010000"],["2024-07-25T02:31:16.010000"],["2024-07-25T02:31:17.010000"],["2024-07-25T02:31:18.010000"],["2024-07-25T02:31:19.010000"],["2024-07-25T02:31:20.010000"],["2024-07-25T02:31:21.010000"],["2024-07-25T02:31:22.010000"],["2024-07-25T02:31:23.010000"],["2024-07-25T02:31:24.010000"],["2024-07-25T02:31:25.010000"],["2024-07-25T02:31:26.010000"],["2024-07-25T02:31:27.010000"],["2024-07-25T02:31:28.010000"],["2024-07-25T02:31:29.010000"],["2024-07-25T02:31:30.010000"],["2024-07-25T02:31:31.010000"],["2024-07-25T02:31:32.010000"],["2024-07-25T02:31:33.010000"],["2024-07-25T02:31:34.010000"],["2024-07-25T02:31:35.010000"],["2024-07-25T02:31:36.010000"],["2024-07-25T02:31:37.010000"],["2024-07-25T02:31:38.010000"],["2024-07-25T02:31:39.010000"],["2024-07-25T02:31:40.010000"],["2024-07-25T02:31:41.010000"],["2024-07-25T02:31:42.010000"],["2024-07-25T02:31:43.010000"],["2024-07-25T02:31:44.010000"],["2024-07-25T02:31:45.010000"],["2024-07-25T02:31:46.010000"],["2024-07-25T02:31:47.010000"],["2024-07-25T02:31:48.010000"],["2024-07-25T02:31:49.010000"],["2024-07-25T02:31:50.010000"],["2024-07-25T02:31:51.010000"],["2024-07-25T02:31:52.010000"],["2024-07-25T02:31:53.010000"],["2024-07-25T02:31:54.010000"],["2024-07-25T02:31:55.010000"],["2024-07-25T02:31:56.010000"],["2024-07-25T02:31:57.010000"],["2024-07-25T02:31:58.010000"],["2024-07-25T02:31:59.010000"],["2024-07-25T02:32:00.010000"],["2024-07-25T02:32:01.010000"],["2024-07-25T02:32:02.010000"],["2024-07-25T02:32:03.010000"],["2024-07-25T02:32:04.010000"],["2024-07-25T02:32:05.010000"],["2024-07-25T02:32:06.010000"],["2024-07-25T02:32:07.010000"],["2024-07-25T02:32:08.010000"],["2024-07-25T02:32:09.010000"],["2024-07-25T02:32:10.010000"],["2024-07-25T02:32:11.010000"],["2024-07-25T02:32:12.010000"],["2024-07-25T02:32:13.010000"],["2024-07-25T02:32:14.010000"],["2024-07-25T02:32:15.010000"],["2024-07-25T02:32:16.010000"],["2024-07-25T02:32:17.010000"],["2024-07-25T02:32:18.010000"],["2024-07-25T02:32:19.010000"],["2024-07-25T02:32:20.010000"],["2024-07-25T02:32:21.010000"],["2024-07-25T02:32:22.010000"],["2024-07-25T02:32:23.010000"],["2024-07-25T02:32:24.010000"],["2024-07-25T02:32:25.010000"],["2024-07-25T02:32:26.010000"],["2024-07-25T02:32:27.010000"],["2024-07-25T02:32:28.010000"],["2024-07-25T02:32:29.010000"],["2024-07-25T02:32:30.010000"],["2024-07-25T02:32:31.010000"],["2024-07-25T02:32:32.010000"],["2024-07-25T02:32:33.010000"],["2024-07-25T02:32:34.010000"],["2024-07-25T02:32:35.010000"],["2024-07-25T02:32:36.010000"],["2024-07-25T02:32:37.010000"],["2024-07-25T02:32:38.010000"],["2024-07-25T02:32:39.010000"],["2024-07-25T02:32:40.010000"],["2024-07-25T02:32:41.010000"],["2024-07-25T02:32:42.010000"],["2024-07-25T02:32:43.010000"],["2024-07-25T02:32:44.010000"],["2024-07-25T02:32:45.010000"],["2024-07-25T02:32:46.010000"],["2024-07-25T02:32:47.010000"],["2024-07-25T02:32:48.010000"],["2024-07-25T02:32:49.010000"],["2024-07-25T02:32:50.010000"],["2024-07-25T02:32:51.010000"],["2024-07-25T02:32:52.010000"],["2024-07-25T02:32:53.010000"],["2024-07-25T02:32:54.010000"],["2024-07-25T02:32:55.010000"],["2024-07-25T02:32:56.010000"],["2024-07-25T02:32:57.010000"],["2024-07-25T02:32:58.010000"],["2024-07-25T02:32:59.010000"],["2024-07-25T02:33:00.010000"],["2024-07-25T02:33:01.010000"],["2024-07-25T02:33:02.010000"],["2024-07-25T02:33:03.010000"],["2024-07-25T02:33:04.010000"],["2024-07-25T02:33:05.010000"],["2024-07-25T02:33:06.010000"],["2024-07-25T02:33:07.010000"],["2024-07-25T02:33:08.010000"],["2024-07-25T02:33:09.010000"],["2024-07-25T02:33:10.010000"],["2024-07-25T02:33:11.010000"],["2024-07-25T02:33:12.010000"],["2024-07-25T02:33:13.010000"],["2024-07-25T02:33:14.010000"],["2024-07-25T02:33:15.010000"],["2024-07-25T02:33:16.010000"],["2024-07-25T02:33:17.010000"],["2024-07-25T02:33:18.010000"],["2024-07-25T02:33:19.010000"],["2024-07-25T02:33:20.010000"],["2024-07-25T02:33:21.010000"],["2024-07-25T02:33:22.010000"],["2024-07-25T02:33:23.010000"],["2024-07-25T02:33:24.010000"],["2024-07-25T02:33:25.010000"],["2024-07-25T02:33:26.010000"],["2024-07-25T02:33:27.010000"],["2024-07-25T02:33:28.010000"],["2024-07-25T02:33:29.010000"],["2024-07-25T02:33:30.010000"],["2024-07-25T02:33:31.010000"],["2024-07-25T02:33:32.010000"],["2024-07-25T02:33:33.010000"],["2024-07-25T02:33:34.010000"],["2024-07-25T02:33:35.010000"],["2024-07-25T02:33:36.010000"],["2024-07-25T02:33:37.010000"],["2024-07-25T02:33:38.010000"],["2024-07-25T02:33:39.010000"],["2024-07-25T02:33:40.010000"],["2024-07-25T02:33:41.010000"],["2024-07-25T02:33:42.010000"],["2024-07-25T02:33:43.010000"],["2024-07-25T02:33:44.010000"],["2024-07-25T02:33:45.010000"],["2024-07-25T02:33:46.010000"],["2024-07-25T02:33:47.010000"],["2024-07-25T02:33:48.010000"],["2024-07-25T02:33:49.010000"],["2024-07-25T02:33:50.010000"],["2024-07-25T02:33:51.010000"],["2024-07-25T02:33:52.010000"],["2024-07-25T02:33:53.010000"],["2024-07-25T02:33:54.010000"],["2024-07-25T02:33:55.010000"],["2024-07-25T02:33:56.010000"],["2024-07-25T02:33:57.010000"],["2024-07-25T02:33:58.010000"],["2024-07-25T02:33:59.010000"],["2024-07-25T02:34:00.010000"],["2024-07-25T02:34:01.010000"],["2024-07-25T02:34:02.010000"],["2024-07-25T02:34:03.010000"],["2024-07-25T02:34:04.010000"],["2024-07-25T02:34:05.010000"],["2024-07-25T02:34:06.010000"],["2024-07-25T02:34:07.010000"],["2024-07-25T02:34:08.010000"],["2024-07-25T02:34:09.010000"],["2024-07-25T02:34:10.010000"],["2024-07-25T02:34:11.010000"],["2024-07-25T02:34:12.010000"],["2024-07-25T02:34:13.010000"],["2024-07-25T02:34:14.010000"],["2024-07-25T02:34:15.010000"],["2024-07-25T02:34:16.010000"],["2024-07-25T02:34:17.010000"],["2024-07-25T02:34:18.010000"],["2024-07-25T02:34:19.010000"],["2024-07-25T02:34:20.010000"],["2024-07-25T02:34:21.010000"],["2024-07-25T02:34:22.010000"],["2024-07-25T02:34:23.010000"],["2024-07-25T02:34:24.010000"],["2024-07-25T02:34:25.010000"],["2024-07-25T02:34:26.010000"],["2024-07-25T02:34:27.010000"],["2024-07-25T02:34:28.010000"],["2024-07-25T02:34:29.010000"],["2024-07-25T02:34:30.010000"],["2024-07-25T02:34:31.010000"],["2024-07-25T02:34:32.010000"],["2024-07-25T02:34:33.010000"],["2024-07-25T02:34:34.010000"],["2024-07-25T02:34:35.010000"],["2024-07-25T02:34:36.010000"],["2024-07-25T02:34:37.010000"],["2024-07-25T02:34:38.010000"],["2024-07-25T02:34:39.010000"],["2024-07-25T02:34:40.010000"],["2024-07-25T02:34:41.010000"],["2024-07-25T02:34:42.010000"],["2024-07-25T02:34:43.010000"],["2024-07-25T02:34:44.010000"],["2024-07-25T02:34:45.010000"],["2024-07-25T02:34:46.010000"],["2024-07-25T02:34:47.010000"],["2024-07-25T02:34:48.010000"],["2024-07-25T02:34:49.010000"],["2024-07-25T02:34:50.010000"],["2024-07-25T02:34:51.010000"],["2024-07-25T02:34:52.010000"],["2024-07-25T02:34:53.010000"],["2024-07-25T02:34:54.010000"],["2024-07-25T02:34:55.010000"],["2024-07-25T02:34:56.010000"],["2024-07-25T02:34:57.010000"],["2024-07-25T02:34:58.010000"],["2024-07-25T02:34:59.010000"],["2024-07-25T02:35:00.010000"],["2024-07-25T02:35:01.010000"],["2024-07-25T02:35:02.010000"],["2024-07-25T02:35:03.010000"],["2024-07-25T02:35:04.010000"],["2024-07-25T02:35:05.010000"],["2024-07-25T02:35:06.010000"],["2024-07-25T02:35:07.010000"],["2024-07-25T02:35:08.010000"],["2024-07-25T02:35:09.010000"],["2024-07-25T02:35:10.010000"],["2024-07-25T02:35:11.010000"],["2024-07-25T02:35:12.010000"],["2024-07-25T02:35:13.010000"],["2024-07-25T02:35:14.010000"],["2024-07-25T02:35:15.010000"],["2024-07-25T02:35:16.010000"],["2024-07-25T02:35:17.010000"],["2024-07-25T02:35:18.010000"],["2024-07-25T02:35:19.010000"],["2024-07-25T02:35:20.010000"],["2024-07-25T02:35:21.010000"],["2024-07-25T02:35:22.010000"],["2024-07-25T02:35:23.010000"],["2024-07-25T02:35:24.010000"],["2024-07-25T02:35:25.010000"],["2024-07-25T02:35:26.010000"],["2024-07-25T02:35:27.010000"],["2024-07-25T02:35:28.010000"],["2024-07-25T02:35:29.010000"],["2024-07-25T02:35:30.010000"],["2024-07-25T02:35:31.010000"],["2024-07-25T02:35:32.010000"],["2024-07-25T02:35:33.010000"],["2024-07-25T02:35:34.010000"],["2024-07-25T02:35:35.010000"],["2024-07-25T02:35:36.010000"],["2024-07-25T02:35:37.010000"],["2024-07-25T02:35:38.010000"],["2024-07-25T02:35:39.010000"],["2024-07-25T02:35:40.010000"],["2024-07-25T02:35:41.010000"],["2024-07-25T02:35:42.010000"],["2024-07-25T02:35:43.010000"],["2024-07-25T02:35:44.010000"],["2024-07-25T02:35:45.010000"],["2024-07-25T02:35:46.010000"],["2024-07-25T02:35:47.010000"],["2024-07-25T02:35:48.010000"],["2024-07-25T02:35:49.010000"],["2024-07-25T02:35:50.010000"],["2024-07-25T02:35:51.010000"],["2024-07-25T02:35:52.010000"],["2024-07-25T02:35:53.010000"],["2024-07-25T02:35:54.010000"],["2024-07-25T02:35:55.010000"],["2024-07-25T02:35:56.010000"],["2024-07-25T02:35:57.010000"],["2024-07-25T02:35:58.010000"],["2024-07-25T02:35:59.010000"],["2024-07-25T02:36:00.010000"],["2024-07-25T02:36:01.010000"],["2024-07-25T02:36:02.010000"],["2024-07-25T02:36:03.010000"],["2024-07-25T02:36:04.010000"],["2024-07-25T02:36:05.010000"],["2024-07-25T02:36:06.010000"],["2024-07-25T02:36:07.010000"],["2024-07-25T02:36:08.010000"],["2024-07-25T02:36:09.010000"],["2024-07-25T02:36:10.010000"],["2024-07-25T02:36:11.010000"],["2024-07-25T02:36:12.010000"],["2024-07-25T02:36:13.010000"],["2024-07-25T02:36:14.010000"],["2024-07-25T02:36:15.010000"],["2024-07-25T02:36:16.010000"],["2024-07-25T02:36:17.010000"],["2024-07-25T02:36:18.010000"],["2024-07-25T02:36:19.010000"],["2024-07-25T02:36:20.010000"],["2024-07-25T02:36:21.010000"],["2024-07-25T02:36:22.010000"],["2024-07-25T02:36:23.010000"],["2024-07-25T02:36:24.010000"],["2024-07-25T02:36:25.010000"],["2024-07-25T02:36:26.010000"],["2024-07-25T02:36:27.010000"],["2024-07-25T02:36:28.010000"],["2024-07-25T02:36:29.010000"],["2024-07-25T02:36:30.010000"],["2024-07-25T02:36:31.010000"],["2024-07-25T02:36:32.010000"],["2024-07-25T02:36:33.010000"],["2024-07-25T02:36:34.010000"],["2024-07-25T02:36:35.010000"],["2024-07-25T02:36:36.010000"],["2024-07-25T02:36:37.010000"],["2024-07-25T02:36:38.010000"],["2024-07-25T02:36:39.010000"],["2024-07-25T02:36:40.010000"],["2024-07-25T02:36:41.010000"],["2024-07-25T02:36:42.010000"],["2024-07-25T02:36:43.010000"],["2024-07-25T02:36:44.010000"],["2024-07-25T02:36:45.010000"],["2024-07-25T02:36:46.010000"],["2024-07-25T02:36:47.010000"],["2024-07-25T02:36:48.010000"],["2024-07-25T02:36:49.010000"],["2024-07-25T02:36:50.010000"],["2024-07-25T02:36:51.010000"],["2024-07-25T02:36:52.010000"],["2024-07-25T02:36:53.010000"],["2024-07-25T02:36:54.010000"],["2024-07-25T02:36:55.010000"],["2024-07-25T02:36:56.010000"],["2024-07-25T02:36:57.010000"],["2024-07-25T02:36:58.010000"],["2024-07-25T02:36:59.010000"],["2024-07-25T02:37:00.010000"],["2024-07-25T02:37:01.010000"],["2024-07-25T02:37:02.010000"],["2024-07-25T02:37:03.010000"],["2024-07-25T02:37:04.010000"],["2024-07-25T02:37:05.010000"],["2024-07-25T02:37:06.010000"],["2024-07-25T02:37:07.010000"],["2024-07-25T02:37:08.010000"],["2024-07-25T02:37:09.010000"],["2024-07-25T02:37:10.010000"],["2024-07-25T02:37:11.010000"],["2024-07-25T02:37:12.010000"],["2024-07-25T02:37:13.010000"],["2024-07-25T02:37:14.010000"],["2024-07-25T02:37:15.010000"],["2024-07-25T02:37:16.010000"],["2024-07-25T02:37:17.010000"],["2024-07-25T02:37:18.010000"],["2024-07-25T02:37:19.010000"],["2024-07-25T02:37:20.010000"],["2024-07-25T02:37:21.010000"],["2024-07-25T02:37:22.010000"],["2024-07-25T02:37:23.010000"],["2024-07-25T02:37:24.010000"],["2024-07-25T02:37:25.010000"],["2024-07-25T02:37:26.010000"],["2024-07-25T02:37:27.010000"],["2024-07-25T02:37:28.010000"],["2024-07-25T02:37:29.010000"],["2024-07-25T02:37:30.010000"],["2024-07-25T02:37:31.010000"],["2024-07-25T02:37:32.010000"],["2024-07-25T02:37:33.010000"],["2024-07-25T02:37:34.010000"],["2024-07-25T02:37:35.010000"],["2024-07-25T02:37:36.010000"],["2024-07-25T02:37:37.010000"],["2024-07-25T02:37:38.010000"],["2024-07-25T02:37:39.010000"],["2024-07-25T02:37:40.010000"],["2024-07-25T02:37:41.010000"],["2024-07-25T02:37:42.010000"],["2024-07-25T02:37:43.010000"],["2024-07-25T02:37:44.010000"],["2024-07-25T02:37:45.010000"],["2024-07-25T02:37:46.010000"],["2024-07-25T02:37:47.010000"],["2024-07-25T02:37:48.010000"],["2024-07-25T02:37:49.010000"],["2024-07-25T02:37:50.010000"],["2024-07-25T02:37:51.010000"],["2024-07-25T02:37:52.010000"],["2024-07-25T02:37:53.010000"],["2024-07-25T02:37:54.010000"],["2024-07-25T02:37:55.010000"],["2024-07-25T02:37:56.010000"],["2024-07-25T02:37:57.010000"],["2024-07-25T02:37:58.010000"],["2024-07-25T02:37:59.010000"],["2024-07-25T02:38:00.010000"],["2024-07-25T02:38:01.010000"],["2024-07-25T02:38:02.010000"],["2024-07-25T02:38:03.010000"],["2024-07-25T02:38:04.010000"],["2024-07-25T02:38:05.010000"],["2024-07-25T02:38:06.010000"],["2024-07-25T02:38:07.010000"],["2024-07-25T02:38:08.010000"],["2024-07-25T02:38:09.010000"],["2024-07-25T02:38:10.010000"],["2024-07-25T02:38:11.010000"],["2024-07-25T02:38:12.010000"],["2024-07-25T02:38:13.010000"],["2024-07-25T02:38:14.010000"],["2024-07-25T02:38:15.010000"],["2024-07-25T02:38:16.010000"],["2024-07-25T02:38:17.010000"],["2024-07-25T02:38:18.010000"],["2024-07-25T02:38:19.010000"],["2024-07-25T02:38:20.010000"],["2024-07-25T02:38:21.010000"],["2024-07-25T02:38:22.010000"],["2024-07-25T02:38:23.010000"],["2024-07-25T02:38:24.010000"],["2024-07-25T02:38:25.010000"],["2024-07-25T02:38:26.010000"],["2024-07-25T02:38:27.010000"],["2024-07-25T02:38:28.010000"],["2024-07-25T02:38:29.010000"],["2024-07-25T02:38:30.010000"],["2024-07-25T02:38:31.010000"],["2024-07-25T02:38:32.010000"],["2024-07-25T02:38:33.010000"],["2024-07-25T02:38:34.010000"],["2024-07-25T02:38:35.010000"],["2024-07-25T02:38:36.010000"],["2024-07-25T02:38:37.010000"],["2024-07-25T02:38:38.010000"],["2024-07-25T02:38:39.010000"],["2024-07-25T02:38:40.010000"],["2024-07-25T02:38:41.010000"],["2024-07-25T02:38:42.010000"],["2024-07-25T02:38:43.010000"],["2024-07-25T02:38:44.010000"],["2024-07-25T02:38:45.010000"],["2024-07-25T02:38:46.010000"],["2024-07-25T02:38:47.010000"],["2024-07-25T02:38:48.010000"],["2024-07-25T02:38:49.010000"],["2024-07-25T02:38:50.010000"],["2024-07-25T02:38:51.010000"],["2024-07-25T02:38:52.010000"],["2024-07-25T02:38:53.010000"],["2024-07-25T02:38:54.010000"],["2024-07-25T02:38:55.010000"],["2024-07-25T02:38:56.010000"],["2024-07-25T02:38:57.010000"],["2024-07-25T02:38:58.010000"],["2024-07-25T02:38:59.010000"],["2024-07-25T02:39:00.010000"],["2024-07-25T02:39:01.010000"],["2024-07-25T02:39:02.010000"],["2024-07-25T02:39:03.010000"],["2024-07-25T02:39:04.010000"],["2024-07-25T02:39:05.010000"],["2024-07-25T02:39:06.010000"],["2024-07-25T02:39:07.010000"],["2024-07-25T02:39:08.010000"],["2024-07-25T02:39:09.010000"],["2024-07-25T02:39:10.010000"],["2024-07-25T02:39:11.010000"],["2024-07-25T02:39:12.010000"],["2024-07-25T02:39:13.010000"],["2024-07-25T02:39:14.010000"],["2024-07-25T02:39:15.010000"],["2024-07-25T02:39:16.010000"],["2024-07-25T02:39:17.010000"],["2024-07-25T02:39:18.010000"],["2024-07-25T02:39:19.010000"],["2024-07-25T02:39:20.010000"],["2024-07-25T02:39:21.010000"],["2024-07-25T02:39:22.010000"],["2024-07-25T02:39:23.010000"],["2024-07-25T02:39:24.010000"],["2024-07-25T02:39:25.010000"],["2024-07-25T02:39:26.010000"],["2024-07-25T02:39:27.010000"],["2024-07-25T02:39:28.010000"],["2024-07-25T02:39:29.010000"],["2024-07-25T02:39:30.010000"],["2024-07-25T02:39:31.010000"],["2024-07-25T02:39:32.010000"],["2024-07-25T02:39:33.010000"],["2024-07-25T02:39:34.010000"],["2024-07-25T02:39:35.010000"],["2024-07-25T02:39:36.010000"],["2024-07-25T02:39:37.010000"],["2024-07-25T02:39:38.010000"],["2024-07-25T02:39:39.010000"],["2024-07-25T02:39:40.010000"],["2024-07-25T02:39:41.010000"],["2024-07-25T02:39:42.010000"],["2024-07-25T02:39:43.010000"],["2024-07-25T02:39:44.010000"],["2024-07-25T02:39:45.010000"],["2024-07-25T02:39:46.010000"],["2024-07-25T02:39:47.010000"],["2024-07-25T02:39:48.010000"],["2024-07-25T02:39:49.010000"],["2024-07-25T02:39:50.010000"],["2024-07-25T02:39:51.010000"],["2024-07-25T02:39:52.010000"],["2024-07-25T02:39:53.010000"],["2024-07-25T02:39:54.010000"],["2024-07-25T02:39:55.010000"],["2024-07-25T02:39:56.010000"],["2024-07-25T02:39:57.010000"],["2024-07-25T02:39:58.010000"],["2024-07-25T02:39:59.010000"],["2024-07-25T02:40:00.010000"],["2024-07-25T02:40:01.010000"],["2024-07-25T02:40:02.010000"],["2024-07-25T02:40:03.010000"],["2024-07-25T02:40:04.010000"],["2024-07-25T02:40:05.010000"],["2024-07-25T02:40:06.010000"],["2024-07-25T02:40:07.010000"],["2024-07-25T02:40:08.010000"],["2024-07-25T02:40:09.010000"],["2024-07-25T02:40:10.010000"],["2024-07-25T02:40:11.010000"],["2024-07-25T02:40:12.010000"],["2024-07-25T02:40:13.010000"],["2024-07-25T02:40:14.010000"],["2024-07-25T02:40:15.010000"],["2024-07-25T02:40:16.010000"],["2024-07-25T02:40:17.010000"],["2024-07-25T02:40:18.010000"],["2024-07-25T02:40:19.010000"],["2024-07-25T02:40:20.010000"],["2024-07-25T02:40:21.010000"],["2024-07-25T02:40:22.010000"],["2024-07-25T02:40:23.010000"],["2024-07-25T02:40:24.010000"],["2024-07-25T02:40:25.010000"],["2024-07-25T02:40:26.010000"],["2024-07-25T02:40:27.010000"],["2024-07-25T02:40:28.010000"],["2024-07-25T02:40:29.010000"],["2024-07-25T02:40:30.010000"],["2024-07-25T02:40:31.010000"],["2024-07-25T02:40:32.010000"],["2024-07-25T02:40:33.010000"],["2024-07-25T02:40:34.010000"],["2024-07-25T02:40:35.010000"],["2024-07-25T02:40:36.010000"],["2024-07-25T02:40:37.010000"],["2024-07-25T02:40:38.010000"],["2024-07-25T02:40:39.010000"],["2024-07-25T02:40:40.010000"],["2024-07-25T02:40:41.010000"],["2024-07-25T02:40:42.010000"],["2024-07-25T02:40:43.010000"],["2024-07-25T02:40:44.010000"],["2024-07-25T02:40:45.010000"],["2024-07-25T02:40:46.010000"],["2024-07-25T02:40:47.010000"],["2024-07-25T02:40:48.010000"],["2024-07-25T02:40:49.010000"],["2024-07-25T02:40:50.010000"],["2024-07-25T02:40:51.010000"],["2024-07-25T02:40:52.010000"],["2024-07-25T02:40:53.010000"],["2024-07-25T02:40:54.010000"],["2024-07-25T02:40:55.010000"],["2024-07-25T02:40:56.010000"],["2024-07-25T02:40:57.010000"],["2024-07-25T02:40:58.010000"],["2024-07-25T02:40:59.010000"],["2024-07-25T02:41:00.010000"],["2024-07-25T02:41:01.010000"],["2024-07-25T02:41:02.010000"],["2024-07-25T02:41:03.010000"],["2024-07-25T02:41:04.010000"],["2024-07-25T02:41:05.010000"],["2024-07-25T02:41:06.010000"],["2024-07-25T02:41:07.010000"],["2024-07-25T02:41:08.010000"],["2024-07-25T02:41:09.010000"],["2024-07-25T02:41:10.010000"],["2024-07-25T02:41:11.010000"],["2024-07-25T02:41:12.010000"],["2024-07-25T02:41:13.010000"],["2024-07-25T02:41:14.010000"],["2024-07-25T02:41:15.010000"],["2024-07-25T02:41:16.010000"],["2024-07-25T02:41:17.010000"],["2024-07-25T02:41:18.010000"],["2024-07-25T02:41:19.010000"],["2024-07-25T02:41:20.010000"],["2024-07-25T02:41:21.010000"],["2024-07-25T02:41:22.010000"],["2024-07-25T02:41:23.010000"],["2024-07-25T02:41:24.010000"],["2024-07-25T02:41:25.010000"],["2024-07-25T02:41:26.010000"],["2024-07-25T02:41:27.010000"],["2024-07-25T02:41:28.010000"],["2024-07-25T02:41:29.010000"],["2024-07-25T02:41:30.010000"],["2024-07-25T02:41:31.010000"],["2024-07-25T02:41:32.010000"],["2024-07-25T02:41:33.010000"],["2024-07-25T02:41:34.010000"],["2024-07-25T02:41:35.010000"],["2024-07-25T02:41:36.010000"],["2024-07-25T02:41:37.010000"],["2024-07-25T02:41:38.010000"],["2024-07-25T02:41:39.010000"],["2024-07-25T02:41:40.010000"],["2024-07-25T02:41:41.010000"],["2024-07-25T02:41:42.010000"],["2024-07-25T02:41:43.010000"],["2024-07-25T02:41:44.010000"],["2024-07-25T02:41:45.010000"],["2024-07-25T02:41:46.010000"],["2024-07-25T02:41:47.010000"],["2024-07-25T02:41:48.010000"],["2024-07-25T02:41:49.010000"],["2024-07-25T02:41:50.010000"],["2024-07-25T02:41:51.010000"],["2024-07-25T02:41:52.010000"],["2024-07-25T02:41:53.010000"],["2024-07-25T02:41:54.010000"],["2024-07-25T02:41:55.010000"],["2024-07-25T02:41:56.010000"],["2024-07-25T02:41:57.010000"],["2024-07-25T02:41:58.010000"],["2024-07-25T02:41:59.010000"],["2024-07-25T02:42:00.010000"],["2024-07-25T02:42:01.010000"],["2024-07-25T02:42:02.010000"],["2024-07-25T02:42:03.010000"],["2024-07-25T02:42:04.010000"],["2024-07-25T02:42:05.010000"],["2024-07-25T02:42:06.010000"],["2024-07-25T02:42:07.010000"],["2024-07-25T02:42:08.010000"],["2024-07-25T02:42:09.010000"],["2024-07-25T02:42:10.010000"],["2024-07-25T02:42:11.010000"],["2024-07-25T02:42:12.010000"],["2024-07-25T02:42:13.010000"],["2024-07-25T02:42:14.010000"],["2024-07-25T02:42:15.010000"],["2024-07-25T02:42:16.010000"],["2024-07-25T02:42:17.010000"],["2024-07-25T02:42:18.010000"],["2024-07-25T02:42:19.010000"],["2024-07-25T02:42:20.010000"],["2024-07-25T02:42:21.010000"],["2024-07-25T02:42:22.010000"],["2024-07-25T02:42:23.010000"],["2024-07-25T02:42:24.010000"],["2024-07-25T02:42:25.010000"],["2024-07-25T02:42:26.010000"],["2024-07-25T02:42:27.010000"],["2024-07-25T02:42:28.010000"],["2024-07-25T02:42:29.010000"],["2024-07-25T02:42:30.010000"],["2024-07-25T02:42:31.010000"],["2024-07-25T02:42:32.010000"],["2024-07-25T02:42:33.010000"],["2024-07-25T02:42:34.010000"],["2024-07-25T02:42:35.010000"],["2024-07-25T02:42:36.010000"],["2024-07-25T02:42:37.010000"],["2024-07-25T02:42:38.010000"],["2024-07-25T02:42:39.010000"],["2024-07-25T02:42:40.010000"],["2024-07-25T02:42:41.010000"],["2024-07-25T02:42:42.010000"],["2024-07-25T02:42:43.010000"],["2024-07-25T02:42:44.010000"],["2024-07-25T02:42:45.010000"],["2024-07-25T02:42:46.010000"],["2024-07-25T02:42:47.010000"],["2024-07-25T02:42:48.010000"],["2024-07-25T02:42:49.010000"],["2024-07-25T02:42:50.010000"],["2024-07-25T02:42:51.010000"],["2024-07-25T02:42:52.010000"],["2024-07-25T02:42:53.010000"],["2024-07-25T02:42:54.010000"],["2024-07-25T02:42:55.010000"],["2024-07-25T02:42:56.010000"],["2024-07-25T02:42:57.010000"],["2024-07-25T02:42:58.010000"],["2024-07-25T02:42:59.010000"],["2024-07-25T02:43:00.010000"],["2024-07-25T02:43:01.010000"],["2024-07-25T02:43:02.010000"],["2024-07-25T02:43:03.010000"],["2024-07-25T02:43:04.010000"],["2024-07-25T02:43:05.010000"],["2024-07-25T02:43:06.010000"],["2024-07-25T02:43:07.010000"],["2024-07-25T02:43:08.010000"],["2024-07-25T02:43:09.010000"],["2024-07-25T02:43:10.010000"],["2024-07-25T02:43:11.010000"],["2024-07-25T02:43:12.010000"],["2024-07-25T02:43:13.010000"],["2024-07-25T02:43:14.010000"],["2024-07-25T02:43:15.010000"],["2024-07-25T02:43:16.010000"],["2024-07-25T02:43:17.010000"],["2024-07-25T02:43:18.010000"],["2024-07-25T02:43:19.010000"],["2024-07-25T02:43:20.010000"],["2024-07-25T02:43:21.010000"],["2024-07-25T02:43:22.010000"],["2024-07-25T02:43:23.010000"],["2024-07-25T02:43:24.010000"],["2024-07-25T02:43:25.010000"],["2024-07-25T02:43:26.010000"],["2024-07-25T02:43:27.010000"],["2024-07-25T02:43:28.010000"],["2024-07-25T02:43:29.010000"],["2024-07-25T02:43:30.010000"],["2024-07-25T02:43:31.010000"],["2024-07-25T02:43:32.010000"],["2024-07-25T02:43:33.010000"],["2024-07-25T02:43:34.010000"],["2024-07-25T02:43:35.010000"],["2024-07-25T02:43:36.010000"],["2024-07-25T02:43:37.010000"],["2024-07-25T02:43:38.010000"],["2024-07-25T02:43:39.010000"],["2024-07-25T02:43:40.010000"],["2024-07-25T02:43:41.010000"],["2024-07-25T02:43:42.010000"],["2024-07-25T02:43:43.010000"],["2024-07-25T02:43:44.010000"],["2024-07-25T02:43:45.010000"],["2024-07-25T02:43:46.010000"],["2024-07-25T02:43:47.010000"],["2024-07-25T02:43:48.010000"],["2024-07-25T02:43:49.010000"],["2024-07-25T02:43:50.010000"],["2024-07-25T02:43:51.010000"],["2024-07-25T02:43:52.010000"],["2024-07-25T02:43:53.010000"],["2024-07-25T02:43:54.010000"],["2024-07-25T02:43:55.010000"],["2024-07-25T02:43:56.010000"],["2024-07-25T02:43:57.010000"],["2024-07-25T02:43:58.010000"],["2024-07-25T02:43:59.010000"],["2024-07-25T02:44:00.010000"],["2024-07-25T02:44:01.010000"],["2024-07-25T02:44:02.010000"],["2024-07-25T02:44:03.010000"],["2024-07-25T02:44:04.010000"],["2024-07-25T02:44:05.010000"],["2024-07-25T02:44:06.010000"],["2024-07-25T02:44:07.010000"],["2024-07-25T02:44:08.010000"],["2024-07-25T02:44:09.010000"],["2024-07-25T02:44:10.010000"],["2024-07-25T02:44:11.010000"],["2024-07-25T02:44:12.010000"],["2024-07-25T02:44:13.010000"],["2024-07-25T02:44:14.010000"],["2024-07-25T02:44:15.010000"],["2024-07-25T02:44:16.010000"],["2024-07-25T02:44:17.010000"],["2024-07-25T02:44:18.010000"],["2024-07-25T02:44:19.010000"],["2024-07-25T02:44:20.010000"],["2024-07-25T02:44:21.010000"],["2024-07-25T02:44:22.010000"],["2024-07-25T02:44:23.010000"],["2024-07-25T02:44:24.010000"],["2024-07-25T02:44:25.010000"],["2024-07-25T02:44:26.010000"],["2024-07-25T02:44:27.010000"],["2024-07-25T02:44:28.010000"],["2024-07-25T02:44:29.010000"],["2024-07-25T02:44:30.010000"],["2024-07-25T02:44:31.010000"],["2024-07-25T02:44:32.010000"],["2024-07-25T02:44:33.010000"],["2024-07-25T02:44:34.010000"],["2024-07-25T02:44:35.010000"],["2024-07-25T02:44:36.010000"],["2024-07-25T02:44:37.010000"],["2024-07-25T02:44:38.010000"],["2024-07-25T02:44:39.010000"],["2024-07-25T02:44:40.010000"],["2024-07-25T02:44:41.010000"],["2024-07-25T02:44:42.010000"],["2024-07-25T02:44:43.010000"],["2024-07-25T02:44:44.010000"],["2024-07-25T02:44:45.010000"],["2024-07-25T02:44:46.010000"],["2024-07-25T02:44:47.010000"],["2024-07-25T02:44:48.010000"],["2024-07-25T02:44:49.010000"],["2024-07-25T02:44:50.010000"],["2024-07-25T02:44:51.010000"],["2024-07-25T02:44:52.010000"],["2024-07-25T02:44:53.010000"],["2024-07-25T02:44:54.010000"],["2024-07-25T02:44:55.010000"],["2024-07-25T02:44:56.010000"],["2024-07-25T02:44:57.010000"],["2024-07-25T02:44:58.010000"],["2024-07-25T02:44:59.010000"],["2024-07-25T02:45:00.010000"],["2024-07-25T02:45:01.010000"],["2024-07-25T02:45:02.010000"],["2024-07-25T02:45:03.010000"],["2024-07-25T02:45:04.010000"],["2024-07-25T02:45:05.010000"],["2024-07-25T02:45:06.010000"],["2024-07-25T02:45:07.010000"],["2024-07-25T02:45:08.010000"],["2024-07-25T02:45:09.010000"],["2024-07-25T02:45:10.010000"],["2024-07-25T02:45:11.010000"],["2024-07-25T02:45:12.010000"],["2024-07-25T02:45:13.010000"],["2024-07-25T02:45:14.010000"],["2024-07-25T02:45:15.010000"],["2024-07-25T02:45:16.010000"],["2024-07-25T02:45:17.010000"],["2024-07-25T02:45:18.010000"],["2024-07-25T02:45:19.010000"],["2024-07-25T02:45:20.010000"],["2024-07-25T02:45:21.010000"],["2024-07-25T02:45:22.010000"],["2024-07-25T02:45:23.010000"],["2024-07-25T02:45:24.010000"],["2024-07-25T02:45:25.010000"],["2024-07-25T02:45:26.010000"],["2024-07-25T02:45:27.010000"],["2024-07-25T02:45:28.010000"],["2024-07-25T02:45:29.010000"],["2024-07-25T02:45:30.010000"],["2024-07-25T02:45:31.010000"],["2024-07-25T02:45:32.010000"],["2024-07-25T02:45:33.010000"],["2024-07-25T02:45:34.010000"],["2024-07-25T02:45:35.010000"],["2024-07-25T02:45:36.010000"],["2024-07-25T02:45:37.010000"],["2024-07-25T02:45:38.010000"],["2024-07-25T02:45:39.010000"],["2024-07-25T02:45:40.010000"],["2024-07-25T02:45:41.010000"],["2024-07-25T02:45:42.010000"],["2024-07-25T02:45:43.010000"],["2024-07-25T02:45:44.010000"],["2024-07-25T02:45:45.010000"],["2024-07-25T02:45:46.010000"],["2024-07-25T02:45:47.010000"],["2024-07-25T02:45:48.010000"],["2024-07-25T02:45:49.010000"],["2024-07-25T02:45:50.010000"],["2024-07-25T02:45:51.010000"],["2024-07-25T02:45:52.010000"],["2024-07-25T02:45:53.010000"],["2024-07-25T02:45:54.010000"],["2024-07-25T02:45:55.010000"],["2024-07-25T02:45:56.010000"],["2024-07-25T02:45:57.010000"],["2024-07-25T02:45:58.010000"],["2024-07-25T02:45:59.010000"],["2024-07-25T02:46:00.010000"],["2024-07-25T02:46:01.010000"],["2024-07-25T02:46:02.010000"],["2024-07-25T02:46:03.010000"],["2024-07-25T02:46:04.010000"],["2024-07-25T02:46:05.010000"],["2024-07-25T02:46:06.010000"],["2024-07-25T02:46:07.010000"],["2024-07-25T02:46:08.010000"],["2024-07-25T02:46:09.010000"],["2024-07-25T02:46:10.010000"],["2024-07-25T02:46:11.010000"],["2024-07-25T02:46:12.010000"],["2024-07-25T02:46:13.010000"],["2024-07-25T02:46:14.010000"],["2024-07-25T02:46:15.010000"],["2024-07-25T02:46:16.010000"],["2024-07-25T02:46:17.010000"],["2024-07-25T02:46:18.010000"],["2024-07-25T02:46:19.010000"],["2024-07-25T02:46:20.010000"],["2024-07-25T02:46:21.010000"],["2024-07-25T02:46:22.010000"],["2024-07-25T02:46:23.010000"],["2024-07-25T02:46:24.010000"],["2024-07-25T02:46:25.010000"],["2024-07-25T02:46:26.010000"],["2024-07-25T02:46:27.010000"],["2024-07-25T02:46:28.010000"],["2024-07-25T02:46:29.010000"],["2024-07-25T02:46:30.010000"],["2024-07-25T02:46:31.010000"],["2024-07-25T02:46:32.010000"],["2024-07-25T02:46:33.010000"],["2024-07-25T02:46:34.010000"],["2024-07-25T02:46:35.010000"],["2024-07-25T02:46:36.010000"],["2024-07-25T02:46:37.010000"],["2024-07-25T02:46:38.010000"],["2024-07-25T02:46:39.010000"],["2024-07-25T02:46:40.010000"],["2024-07-25T02:46:41.010000"],["2024-07-25T02:46:42.010000"],["2024-07-25T02:46:43.010000"],["2024-07-25T02:46:44.010000"],["2024-07-25T02:46:45.010000"],["2024-07-25T02:46:46.010000"],["2024-07-25T02:46:47.010000"],["2024-07-25T02:46:48.010000"],["2024-07-25T02:46:49.010000"],["2024-07-25T02:46:50.010000"],["2024-07-25T02:46:51.010000"],["2024-07-25T02:46:52.010000"],["2024-07-25T02:46:53.010000"],["2024-07-25T02:46:54.010000"],["2024-07-25T02:46:55.010000"],["2024-07-25T02:46:56.010000"],["2024-07-25T02:46:57.010000"],["2024-07-25T02:46:58.010000"],["2024-07-25T02:46:59.010000"],["2024-07-25T02:47:00.010000"],["2024-07-25T02:47:01.010000"],["2024-07-25T02:47:02.010000"],["2024-07-25T02:47:03.010000"],["2024-07-25T02:47:04.010000"],["2024-07-25T02:47:05.010000"],["2024-07-25T02:47:06.010000"],["2024-07-25T02:47:07.010000"],["2024-07-25T02:47:08.010000"],["2024-07-25T02:47:09.010000"],["2024-07-25T02:47:10.010000"],["2024-07-25T02:47:11.010000"],["2024-07-25T02:47:12.010000"],["2024-07-25T02:47:13.010000"],["2024-07-25T02:47:14.010000"],["2024-07-25T02:47:15.010000"],["2024-07-25T02:47:16.010000"],["2024-07-25T02:47:17.010000"],["2024-07-25T02:47:18.010000"],["2024-07-25T02:47:19.010000"],["2024-07-25T02:47:20.010000"],["2024-07-25T02:47:21.010000"],["2024-07-25T02:47:22.010000"],["2024-07-25T02:47:23.010000"],["2024-07-25T02:47:24.010000"],["2024-07-25T02:47:25.010000"],["2024-07-25T02:47:26.010000"],["2024-07-25T02:47:27.010000"],["2024-07-25T02:47:28.010000"],["2024-07-25T02:47:29.010000"],["2024-07-25T02:47:30.010000"],["2024-07-25T02:47:31.010000"],["2024-07-25T02:47:32.010000"],["2024-07-25T02:47:33.010000"],["2024-07-25T02:47:34.010000"],["2024-07-25T02:47:35.010000"],["2024-07-25T02:47:36.010000"],["2024-07-25T02:47:37.010000"],["2024-07-25T02:47:38.010000"],["2024-07-25T02:47:39.010000"],["2024-07-25T02:47:40.010000"],["2024-07-25T02:47:41.010000"],["2024-07-25T02:47:42.010000"],["2024-07-25T02:47:43.010000"],["2024-07-25T02:47:44.010000"],["2024-07-25T02:47:45.010000"],["2024-07-25T02:47:46.010000"],["2024-07-25T02:47:47.010000"],["2024-07-25T02:47:48.010000"],["2024-07-25T02:47:49.010000"],["2024-07-25T02:47:50.010000"],["2024-07-25T02:47:51.010000"],["2024-07-25T02:47:52.010000"],["2024-07-25T02:47:53.010000"],["2024-07-25T02:47:54.010000"],["2024-07-25T02:47:55.010000"],["2024-07-25T02:47:56.010000"],["2024-07-25T02:47:57.010000"],["2024-07-25T02:47:58.010000"],["2024-07-25T02:47:59.010000"],["2024-07-25T02:48:00.010000"],["2024-07-25T02:48:01.010000"],["2024-07-25T02:48:02.010000"],["2024-07-25T02:48:03.010000"],["2024-07-25T02:48:04.010000"],["2024-07-25T02:48:05.010000"],["2024-07-25T02:48:06.010000"],["2024-07-25T02:48:07.010000"],["2024-07-25T02:48:08.010000"],["2024-07-25T02:48:09.010000"],["2024-07-25T02:48:10.010000"],["2024-07-25T02:48:11.010000"],["2024-07-25T02:48:12.010000"],["2024-07-25T02:48:13.010000"],["2024-07-25T02:48:14.010000"],["2024-07-25T02:48:15.010000"],["2024-07-25T02:48:16.010000"],["2024-07-25T02:48:17.010000"],["2024-07-25T02:48:18.010000"],["2024-07-25T02:48:19.010000"],["2024-07-25T02:48:20.010000"],["2024-07-25T02:48:21.010000"],["2024-07-25T02:48:22.010000"],["2024-07-25T02:48:23.010000"],["2024-07-25T02:48:24.010000"],["2024-07-25T02:48:25.010000"],["2024-07-25T02:48:26.010000"],["2024-07-25T02:48:27.010000"],["2024-07-25T02:48:28.010000"],["2024-07-25T02:48:29.010000"],["2024-07-25T02:48:30.010000"],["2024-07-25T02:48:31.010000"],["2024-07-25T02:48:32.010000"],["2024-07-25T02:48:33.010000"],["2024-07-25T02:48:34.010000"],["2024-07-25T02:48:35.010000"],["2024-07-25T02:48:36.010000"],["2024-07-25T02:48:37.010000"],["2024-07-25T02:48:38.010000"],["2024-07-25T02:48:39.010000"],["2024-07-25T02:48:40.010000"],["2024-07-25T02:48:41.010000"],["2024-07-25T02:48:42.010000"],["2024-07-25T02:48:43.010000"],["2024-07-25T02:48:44.010000"],["2024-07-25T02:48:45.010000"],["2024-07-25T02:48:46.010000"],["2024-07-25T02:48:47.010000"],["2024-07-25T02:48:48.010000"],["2024-07-25T02:48:49.010000"],["2024-07-25T02:48:50.010000"],["2024-07-25T02:48:51.010000"],["2024-07-25T02:48:52.010000"],["2024-07-25T02:48:53.010000"],["2024-07-25T02:48:54.010000"],["2024-07-25T02:48:55.010000"],["2024-07-25T02:48:56.010000"],["2024-07-25T02:48:57.010000"],["2024-07-25T02:48:58.010000"],["2024-07-25T02:48:59.010000"],["2024-07-25T02:49:00.010000"],["2024-07-25T02:49:01.010000"],["2024-07-25T02:49:02.010000"],["2024-07-25T02:49:03.010000"],["2024-07-25T02:49:04.010000"],["2024-07-25T02:49:05.010000"],["2024-07-25T02:49:06.010000"],["2024-07-25T02:49:07.010000"],["2024-07-25T02:49:08.010000"],["2024-07-25T02:49:09.010000"],["2024-07-25T02:49:10.010000"],["2024-07-25T02:49:11.010000"],["2024-07-25T02:49:12.010000"],["2024-07-25T02:49:13.010000"],["2024-07-25T02:49:14.010000"],["2024-07-25T02:49:15.010000"],["2024-07-25T02:49:16.010000"],["2024-07-25T02:49:17.010000"],["2024-07-25T02:49:18.010000"],["2024-07-25T02:49:19.010000"],["2024-07-25T02:49:20.010000"],["2024-07-25T02:49:21.010000"],["2024-07-25T02:49:22.010000"],["2024-07-25T02:49:23.010000"],["2024-07-25T02:49:24.010000"],["2024-07-25T02:49:25.010000"],["2024-07-25T02:49:26.010000"],["2024-07-25T02:49:27.010000"],["2024-07-25T02:49:28.010000"],["2024-07-25T02:49:29.010000"],["2024-07-25T02:49:30.010000"],["2024-07-25T02:49:31.010000"],["2024-07-25T02:49:32.010000"],["2024-07-25T02:49:33.010000"],["2024-07-25T02:49:34.010000"],["2024-07-25T02:49:35.010000"],["2024-07-25T02:49:36.010000"],["2024-07-25T02:49:37.010000"],["2024-07-25T02:49:38.010000"],["2024-07-25T02:49:39.010000"],["2024-07-25T02:49:40.010000"],["2024-07-25T02:49:41.010000"],["2024-07-25T02:49:42.010000"],["2024-07-25T02:49:43.010000"],["2024-07-25T02:49:44.010000"],["2024-07-25T02:49:45.010000"],["2024-07-25T02:49:46.010000"],["2024-07-25T02:49:47.010000"],["2024-07-25T02:49:48.010000"],["2024-07-25T02:49:49.010000"],["2024-07-25T02:49:50.010000"],["2024-07-25T02:49:51.010000"],["2024-07-25T02:49:52.010000"],["2024-07-25T02:49:53.010000"],["2024-07-25T02:49:54.010000"],["2024-07-25T02:49:55.010000"],["2024-07-25T02:49:56.010000"],["2024-07-25T02:49:57.010000"],["2024-07-25T02:49:58.010000"],["2024-07-25T02:49:59.010000"],["2024-07-25T02:50:00.010000"],["2024-07-25T02:50:01.010000"],["2024-07-25T02:50:02.010000"],["2024-07-25T02:50:03.010000"],["2024-07-25T02:50:04.010000"],["2024-07-25T02:50:05.010000"],["2024-07-25T02:50:06.010000"],["2024-07-25T02:50:07.010000"],["2024-07-25T02:50:08.010000"],["2024-07-25T02:50:09.010000"],["2024-07-25T02:50:10.010000"],["2024-07-25T02:50:11.010000"],["2024-07-25T02:50:12.010000"],["2024-07-25T02:50:13.010000"],["2024-07-25T02:50:14.010000"],["2024-07-25T02:50:15.010000"],["2024-07-25T02:50:16.010000"],["2024-07-25T02:50:17.010000"],["2024-07-25T02:50:18.010000"],["2024-07-25T02:50:19.010000"],["2024-07-25T02:50:20.010000"],["2024-07-25T02:50:21.010000"],["2024-07-25T02:50:22.010000"],["2024-07-25T02:50:23.010000"],["2024-07-25T02:50:24.010000"],["2024-07-25T02:50:25.010000"],["2024-07-25T02:50:26.010000"],["2024-07-25T02:50:27.010000"],["2024-07-25T02:50:28.010000"],["2024-07-25T02:50:29.010000"],["2024-07-25T02:50:30.010000"],["2024-07-25T02:50:31.010000"],["2024-07-25T02:50:32.010000"],["2024-07-25T02:50:33.010000"],["2024-07-25T02:50:34.010000"],["2024-07-25T02:50:35.010000"],["2024-07-25T02:50:36.010000"],["2024-07-25T02:50:37.010000"],["2024-07-25T02:50:38.010000"],["2024-07-25T02:50:39.010000"],["2024-07-25T02:50:40.010000"],["2024-07-25T02:50:41.010000"],["2024-07-25T02:50:42.010000"],["2024-07-25T02:50:43.010000"],["2024-07-25T02:50:44.010000"],["2024-07-25T02:50:45.010000"],["2024-07-25T02:50:46.010000"],["2024-07-25T02:50:47.010000"],["2024-07-25T02:50:48.010000"],["2024-07-25T02:50:49.010000"],["2024-07-25T02:50:50.010000"],["2024-07-25T02:50:51.010000"],["2024-07-25T02:50:52.010000"],["2024-07-25T02:50:53.010000"],["2024-07-25T02:50:54.010000"],["2024-07-25T02:50:55.010000"],["2024-07-25T02:50:56.010000"],["2024-07-25T02:50:57.010000"],["2024-07-25T02:50:58.010000"],["2024-07-25T02:50:59.010000"],["2024-07-25T02:51:00.010000"],["2024-07-25T02:51:01.010000"],["2024-07-25T02:51:02.010000"],["2024-07-25T02:51:03.010000"],["2024-07-25T02:51:04.010000"],["2024-07-25T02:51:05.010000"],["2024-07-25T02:51:06.010000"],["2024-07-25T02:51:07.010000"],["2024-07-25T02:51:08.010000"],["2024-07-25T02:51:09.010000"],["2024-07-25T02:51:10.010000"],["2024-07-25T02:51:11.010000"],["2024-07-25T02:51:12.010000"],["2024-07-25T02:51:13.010000"],["2024-07-25T02:51:14.010000"],["2024-07-25T02:51:15.010000"],["2024-07-25T02:51:16.010000"],["2024-07-25T02:51:17.010000"],["2024-07-25T02:51:18.010000"],["2024-07-25T02:51:19.010000"],["2024-07-25T02:51:20.010000"],["2024-07-25T02:51:21.010000"],["2024-07-25T02:51:22.010000"],["2024-07-25T02:51:23.010000"],["2024-07-25T02:51:24.010000"],["2024-07-25T02:51:25.010000"],["2024-07-25T02:51:26.010000"],["2024-07-25T02:51:27.010000"],["2024-07-25T02:51:28.010000"],["2024-07-25T02:51:29.010000"],["2024-07-25T02:51:30.010000"],["2024-07-25T02:51:31.010000"],["2024-07-25T02:51:32.010000"],["2024-07-25T02:51:33.010000"],["2024-07-25T02:51:34.010000"],["2024-07-25T02:51:35.010000"],["2024-07-25T02:51:36.010000"],["2024-07-25T02:51:37.010000"],["2024-07-25T02:51:38.010000"],["2024-07-25T02:51:39.010000"],["2024-07-25T02:51:40.010000"],["2024-07-25T02:51:41.010000"],["2024-07-25T02:51:42.010000"],["2024-07-25T02:51:43.010000"],["2024-07-25T02:51:44.010000"],["2024-07-25T02:51:45.010000"],["2024-07-25T02:51:46.010000"],["2024-07-25T02:51:47.010000"],["2024-07-25T02:51:48.010000"],["2024-07-25T02:51:49.010000"],["2024-07-25T02:51:50.010000"],["2024-07-25T02:51:51.010000"],["2024-07-25T02:51:52.010000"],["2024-07-25T02:51:53.010000"],["2024-07-25T02:51:54.010000"],["2024-07-25T02:51:55.010000"],["2024-07-25T02:51:56.010000"],["2024-07-25T02:51:57.010000"],["2024-07-25T02:51:58.010000"],["2024-07-25T02:51:59.010000"],["2024-07-25T02:52:00.010000"],["2024-07-25T02:52:01.010000"],["2024-07-25T02:52:02.010000"],["2024-07-25T02:52:03.010000"],["2024-07-25T02:52:04.010000"],["2024-07-25T02:52:05.010000"],["2024-07-25T02:52:06.010000"],["2024-07-25T02:52:07.010000"],["2024-07-25T02:52:08.010000"],["2024-07-25T02:52:09.010000"],["2024-07-25T02:52:10.010000"],["2024-07-25T02:52:11.010000"],["2024-07-25T02:52:12.010000"],["2024-07-25T02:52:13.010000"],["2024-07-25T02:52:14.010000"],["2024-07-25T02:52:15.010000"],["2024-07-25T02:52:16.010000"],["2024-07-25T02:52:17.010000"],["2024-07-25T02:52:18.010000"],["2024-07-25T02:52:19.010000"],["2024-07-25T02:52:20.010000"],["2024-07-25T02:52:21.010000"],["2024-07-25T02:52:22.010000"],["2024-07-25T02:52:23.010000"],["2024-07-25T02:52:24.010000"],["2024-07-25T02:52:25.010000"],["2024-07-25T02:52:26.010000"],["2024-07-25T02:52:27.010000"],["2024-07-25T02:52:28.010000"],["2024-07-25T02:52:29.010000"],["2024-07-25T02:52:30.010000"],["2024-07-25T02:52:31.010000"],["2024-07-25T02:52:32.010000"],["2024-07-25T02:52:33.010000"],["2024-07-25T02:52:34.010000"],["2024-07-25T02:52:35.010000"],["2024-07-25T02:52:36.010000"],["2024-07-25T02:52:37.010000"],["2024-07-25T02:52:38.010000"],["2024-07-25T02:52:39.010000"],["2024-07-25T02:52:40.010000"],["2024-07-25T02:52:41.010000"],["2024-07-25T02:52:42.010000"],["2024-07-25T02:52:43.010000"],["2024-07-25T02:52:44.010000"],["2024-07-25T02:52:45.010000"],["2024-07-25T02:52:46.010000"],["2024-07-25T02:52:47.010000"],["2024-07-25T02:52:48.010000"],["2024-07-25T02:52:49.010000"],["2024-07-25T02:52:50.010000"],["2024-07-25T02:52:51.010000"],["2024-07-25T02:52:52.010000"],["2024-07-25T02:52:53.010000"],["2024-07-25T02:52:54.010000"],["2024-07-25T02:52:55.010000"],["2024-07-25T02:52:56.010000"],["2024-07-25T02:52:57.010000"],["2024-07-25T02:52:58.010000"],["2024-07-25T02:52:59.010000"],["2024-07-25T02:53:00.010000"],["2024-07-25T02:53:01.010000"],["2024-07-25T02:53:02.010000"],["2024-07-25T02:53:03.010000"],["2024-07-25T02:53:04.010000"],["2024-07-25T02:53:05.010000"],["2024-07-25T02:53:06.010000"],["2024-07-25T02:53:07.010000"],["2024-07-25T02:53:08.010000"],["2024-07-25T02:53:09.010000"],["2024-07-25T02:53:10.010000"],["2024-07-25T02:53:11.010000"],["2024-07-25T02:53:12.010000"],["2024-07-25T02:53:13.010000"],["2024-07-25T02:53:14.010000"],["2024-07-25T02:53:15.010000"],["2024-07-25T02:53:16.010000"],["2024-07-25T02:53:17.010000"],["2024-07-25T02:53:18.010000"],["2024-07-25T02:53:19.010000"],["2024-07-25T02:53:20.010000"],["2024-07-25T02:53:21.010000"],["2024-07-25T02:53:22.010000"],["2024-07-25T02:53:23.010000"],["2024-07-25T02:53:24.010000"],["2024-07-25T02:53:25.010000"],["2024-07-25T02:53:26.010000"],["2024-07-25T02:53:27.010000"],["2024-07-25T02:53:28.010000"],["2024-07-25T02:53:29.010000"],["2024-07-25T02:53:30.010000"],["2024-07-25T02:53:31.010000"],["2024-07-25T02:53:32.010000"],["2024-07-25T02:53:33.010000"],["2024-07-25T02:53:34.010000"],["2024-07-25T02:53:35.010000"],["2024-07-25T02:53:36.010000"],["2024-07-25T02:53:37.010000"],["2024-07-25T02:53:38.010000"],["2024-07-25T02:53:39.010000"],["2024-07-25T02:53:40.010000"],["2024-07-25T02:53:41.010000"],["2024-07-25T02:53:42.010000"],["2024-07-25T02:53:43.010000"],["2024-07-25T02:53:44.010000"],["2024-07-25T02:53:45.010000"],["2024-07-25T02:53:46.010000"],["2024-07-25T02:53:47.010000"],["2024-07-25T02:53:48.010000"],["2024-07-25T02:53:49.010000"],["2024-07-25T02:53:50.010000"],["2024-07-25T02:53:51.010000"],["2024-07-25T02:53:52.010000"],["2024-07-25T02:53:53.010000"],["2024-07-25T02:53:54.010000"],["2024-07-25T02:53:55.010000"],["2024-07-25T02:53:56.010000"],["2024-07-25T02:53:57.010000"],["2024-07-25T02:53:58.010000"],["2024-07-25T02:53:59.010000"],["2024-07-25T02:54:00.010000"],["2024-07-25T02:54:01.010000"],["2024-07-25T02:54:02.010000"],["2024-07-25T02:54:03.010000"],["2024-07-25T02:54:04.010000"],["2024-07-25T02:54:05.010000"],["2024-07-25T02:54:06.010000"],["2024-07-25T02:54:07.010000"],["2024-07-25T02:54:08.010000"],["2024-07-25T02:54:09.010000"],["2024-07-25T02:54:10.010000"],["2024-07-25T02:54:11.010000"],["2024-07-25T02:54:12.010000"],["2024-07-25T02:54:13.010000"],["2024-07-25T02:54:14.010000"],["2024-07-25T02:54:15.010000"],["2024-07-25T02:54:16.010000"],["2024-07-25T02:54:17.010000"],["2024-07-25T02:54:18.010000"],["2024-07-25T02:54:19.010000"],["2024-07-25T02:54:20.010000"],["2024-07-25T02:54:21.010000"],["2024-07-25T02:54:22.010000"],["2024-07-25T02:54:23.010000"],["2024-07-25T02:54:24.010000"],["2024-07-25T02:54:25.010000"],["2024-07-25T02:54:26.010000"],["2024-07-25T02:54:27.010000"],["2024-07-25T02:54:28.010000"],["2024-07-25T02:54:29.010000"],["2024-07-25T02:54:30.010000"],["2024-07-25T02:54:31.010000"],["2024-07-25T02:54:32.010000"],["2024-07-25T02:54:33.010000"],["2024-07-25T02:54:34.010000"],["2024-07-25T02:54:35.010000"],["2024-07-25T02:54:36.010000"],["2024-07-25T02:54:37.010000"],["2024-07-25T02:54:38.010000"],["2024-07-25T02:54:39.010000"],["2024-07-25T02:54:40.010000"],["2024-07-25T02:54:41.010000"],["2024-07-25T02:54:42.010000"],["2024-07-25T02:54:43.010000"],["2024-07-25T02:54:44.010000"],["2024-07-25T02:54:45.010000"],["2024-07-25T02:54:46.010000"],["2024-07-25T02:54:47.010000"],["2024-07-25T02:54:48.010000"],["2024-07-25T02:54:49.010000"],["2024-07-25T02:54:50.010000"],["2024-07-25T02:54:51.010000"],["2024-07-25T02:54:52.010000"],["2024-07-25T02:54:53.010000"],["2024-07-25T02:54:54.010000"],["2024-07-25T02:54:55.010000"],["2024-07-25T02:54:56.010000"],["2024-07-25T02:54:57.010000"],["2024-07-25T02:54:58.010000"],["2024-07-25T02:54:59.010000"],["2024-07-25T02:55:00.010000"],["2024-07-25T02:55:01.010000"],["2024-07-25T02:55:02.010000"],["2024-07-25T02:55:03.010000"],["2024-07-25T02:55:04.010000"],["2024-07-25T02:55:05.010000"],["2024-07-25T02:55:06.010000"],["2024-07-25T02:55:07.010000"],["2024-07-25T02:55:08.010000"],["2024-07-25T02:55:09.010000"],["2024-07-25T02:55:10.010000"],["2024-07-25T02:55:11.010000"],["2024-07-25T02:55:12.010000"],["2024-07-25T02:55:13.010000"],["2024-07-25T02:55:14.010000"],["2024-07-25T02:55:15.010000"],["2024-07-25T02:55:16.010000"],["2024-07-25T02:55:17.010000"],["2024-07-25T02:55:18.010000"],["2024-07-25T02:55:19.010000"],["2024-07-25T02:55:20.010000"],["2024-07-25T02:55:21.010000"],["2024-07-25T02:55:22.010000"],["2024-07-25T02:55:23.010000"],["2024-07-25T02:55:24.010000"],["2024-07-25T02:55:25.010000"],["2024-07-25T02:55:26.010000"],["2024-07-25T02:55:27.010000"],["2024-07-25T02:55:28.010000"],["2024-07-25T02:55:29.010000"],["2024-07-25T02:55:30.010000"],["2024-07-25T02:55:31.010000"],["2024-07-25T02:55:32.010000"],["2024-07-25T02:55:33.010000"],["2024-07-25T02:55:34.010000"],["2024-07-25T02:55:35.010000"],["2024-07-25T02:55:36.010000"],["2024-07-25T02:55:37.010000"],["2024-07-25T02:55:38.010000"],["2024-07-25T02:55:39.010000"],["2024-07-25T02:55:40.010000"],["2024-07-25T02:55:41.010000"],["2024-07-25T02:55:42.010000"],["2024-07-25T02:55:43.010000"],["2024-07-25T02:55:44.010000"],["2024-07-25T02:55:45.010000"],["2024-07-25T02:55:46.010000"],["2024-07-25T02:55:47.010000"],["2024-07-25T02:55:48.010000"],["2024-07-25T02:55:49.010000"],["2024-07-25T02:55:50.010000"],["2024-07-25T02:55:51.010000"],["2024-07-25T02:55:52.010000"],["2024-07-25T02:55:53.010000"],["2024-07-25T02:55:54.010000"],["2024-07-25T02:55:55.010000"],["2024-07-25T02:55:56.010000"],["2024-07-25T02:55:57.010000"],["2024-07-25T02:55:58.010000"],["2024-07-25T02:55:59.010000"],["2024-07-25T02:56:00.010000"],["2024-07-25T02:56:01.010000"],["2024-07-25T02:56:02.010000"],["2024-07-25T02:56:03.010000"],["2024-07-25T02:56:04.010000"],["2024-07-25T02:56:05.010000"],["2024-07-25T02:56:06.010000"],["2024-07-25T02:56:07.010000"],["2024-07-25T02:56:08.010000"],["2024-07-25T02:56:09.010000"],["2024-07-25T02:56:10.010000"],["2024-07-25T02:56:11.010000"],["2024-07-25T02:56:12.010000"],["2024-07-25T02:56:13.010000"],["2024-07-25T02:56:14.010000"],["2024-07-25T02:56:15.010000"],["2024-07-25T02:56:16.010000"],["2024-07-25T02:56:17.010000"],["2024-07-25T02:56:18.010000"],["2024-07-25T02:56:19.010000"],["2024-07-25T02:56:20.010000"],["2024-07-25T02:56:21.010000"],["2024-07-25T02:56:22.010000"],["2024-07-25T02:56:23.010000"],["2024-07-25T02:56:24.010000"],["2024-07-25T02:56:25.010000"],["2024-07-25T02:56:26.010000"],["2024-07-25T02:56:27.010000"],["2024-07-25T02:56:28.010000"],["2024-07-25T02:56:29.010000"],["2024-07-25T02:56:30.010000"],["2024-07-25T02:56:31.010000"],["2024-07-25T02:56:32.010000"],["2024-07-25T02:56:33.010000"],["2024-07-25T02:56:34.010000"],["2024-07-25T02:56:35.010000"],["2024-07-25T02:56:36.010000"],["2024-07-25T02:56:37.010000"],["2024-07-25T02:56:38.010000"],["2024-07-25T02:56:39.010000"],["2024-07-25T02:56:40.010000"],["2024-07-25T02:56:41.010000"],["2024-07-25T02:56:42.010000"],["2024-07-25T02:56:43.010000"],["2024-07-25T02:56:44.010000"],["2024-07-25T02:56:45.010000"],["2024-07-25T02:56:46.010000"],["2024-07-25T02:56:47.010000"],["2024-07-25T02:56:48.010000"],["2024-07-25T02:56:49.010000"],["2024-07-25T02:56:50.010000"],["2024-07-25T02:56:51.010000"],["2024-07-25T02:56:52.010000"],["2024-07-25T02:56:53.010000"],["2024-07-25T02:56:54.010000"],["2024-07-25T02:56:55.010000"],["2024-07-25T02:56:56.010000"],["2024-07-25T02:56:57.010000"],["2024-07-25T02:56:58.010000"],["2024-07-25T02:56:59.010000"],["2024-07-25T02:57:00.010000"],["2024-07-25T02:57:01.010000"],["2024-07-25T02:57:02.010000"],["2024-07-25T02:57:03.010000"],["2024-07-25T02:57:04.010000"],["2024-07-25T02:57:05.010000"],["2024-07-25T02:57:06.010000"],["2024-07-25T02:57:07.010000"],["2024-07-25T02:57:08.010000"],["2024-07-25T02:57:09.010000"],["2024-07-25T02:57:10.010000"],["2024-07-25T02:57:11.010000"],["2024-07-25T02:57:12.010000"],["2024-07-25T02:57:13.010000"],["2024-07-25T02:57:14.010000"],["2024-07-25T02:57:15.010000"],["2024-07-25T02:57:16.010000"],["2024-07-25T02:57:17.010000"],["2024-07-25T02:57:18.010000"],["2024-07-25T02:57:19.010000"],["2024-07-25T02:57:20.010000"],["2024-07-25T02:57:21.010000"],["2024-07-25T02:57:22.010000"],["2024-07-25T02:57:23.010000"],["2024-07-25T02:57:24.010000"],["2024-07-25T02:57:25.010000"],["2024-07-25T02:57:26.010000"],["2024-07-25T02:57:27.010000"],["2024-07-25T02:57:28.010000"],["2024-07-25T02:57:29.010000"],["2024-07-25T02:57:30.010000"],["2024-07-25T02:57:31.010000"],["2024-07-25T02:57:32.010000"],["2024-07-25T02:57:33.010000"],["2024-07-25T02:57:34.010000"],["2024-07-25T02:57:35.010000"],["2024-07-25T02:57:36.010000"],["2024-07-25T02:57:37.010000"],["2024-07-25T02:57:38.010000"],["2024-07-25T02:57:39.010000"],["2024-07-25T02:57:40.010000"],["2024-07-25T02:57:41.010000"],["2024-07-25T02:57:42.010000"],["2024-07-25T02:57:43.010000"],["2024-07-25T02:57:44.010000"],["2024-07-25T02:57:45.010000"],["2024-07-25T02:57:46.010000"],["2024-07-25T02:57:47.010000"],["2024-07-25T02:57:48.010000"],["2024-07-25T02:57:49.010000"],["2024-07-25T02:57:50.010000"],["2024-07-25T02:57:51.010000"],["2024-07-25T02:57:52.010000"],["2024-07-25T02:57:53.010000"],["2024-07-25T02:57:54.010000"],["2024-07-25T02:57:55.010000"],["2024-07-25T02:57:56.010000"],["2024-07-25T02:57:57.010000"],["2024-07-25T02:57:58.010000"],["2024-07-25T02:57:59.010000"],["2024-07-25T02:58:00.010000"],["2024-07-25T02:58:01.010000"],["2024-07-25T02:58:02.010000"],["2024-07-25T02:58:03.010000"],["2024-07-25T02:58:04.010000"],["2024-07-25T02:58:05.010000"],["2024-07-25T02:58:06.010000"],["2024-07-25T02:58:07.010000"],["2024-07-25T02:58:08.010000"],["2024-07-25T02:58:09.010000"],["2024-07-25T02:58:10.010000"],["2024-07-25T02:58:11.010000"],["2024-07-25T02:58:12.010000"],["2024-07-25T02:58:13.010000"],["2024-07-25T02:58:14.010000"],["2024-07-25T02:58:15.010000"],["2024-07-25T02:58:16.010000"],["2024-07-25T02:58:17.010000"],["2024-07-25T02:58:18.010000"],["2024-07-25T02:58:19.010000"],["2024-07-25T02:58:20.010000"],["2024-07-25T02:58:21.010000"],["2024-07-25T02:58:22.010000"],["2024-07-25T02:58:23.010000"],["2024-07-25T02:58:24.010000"],["2024-07-25T02:58:25.010000"],["2024-07-25T02:58:26.010000"],["2024-07-25T02:58:27.010000"],["2024-07-25T02:58:28.010000"],["2024-07-25T02:58:29.010000"],["2024-07-25T02:58:30.010000"],["2024-07-25T02:58:31.010000"],["2024-07-25T02:58:32.010000"],["2024-07-25T02:58:33.010000"],["2024-07-25T02:58:34.010000"],["2024-07-25T02:58:35.010000"],["2024-07-25T02:58:36.010000"],["2024-07-25T02:58:37.010000"],["2024-07-25T02:58:38.010000"],["2024-07-25T02:58:39.010000"],["2024-07-25T02:58:40.010000"],["2024-07-25T02:58:41.010000"],["2024-07-25T02:58:42.010000"],["2024-07-25T02:58:43.010000"],["2024-07-25T02:58:44.010000"],["2024-07-25T02:58:45.010000"],["2024-07-25T02:58:46.010000"],["2024-07-25T02:58:47.010000"],["2024-07-25T02:58:48.010000"],["2024-07-25T02:58:49.010000"],["2024-07-25T02:58:50.010000"],["2024-07-25T02:58:51.010000"],["2024-07-25T02:58:52.010000"],["2024-07-25T02:58:53.010000"],["2024-07-25T02:58:54.010000"],["2024-07-25T02:58:55.010000"],["2024-07-25T02:58:56.010000"],["2024-07-25T02:58:57.010000"],["2024-07-25T02:58:58.010000"],["2024-07-25T02:58:59.010000"],["2024-07-25T02:59:00.010000"],["2024-07-25T02:59:01.010000"],["2024-07-25T02:59:02.010000"],["2024-07-25T02:59:03.010000"],["2024-07-25T02:59:04.010000"],["2024-07-25T02:59:05.010000"],["2024-07-25T02:59:06.010000"],["2024-07-25T02:59:07.010000"],["2024-07-25T02:59:08.010000"],["2024-07-25T02:59:09.010000"],["2024-07-25T02:59:10.010000"],["2024-07-25T02:59:11.010000"],["2024-07-25T02:59:12.010000"],["2024-07-25T02:59:13.010000"],["2024-07-25T02:59:14.010000"],["2024-07-25T02:59:15.010000"],["2024-07-25T02:59:16.010000"],["2024-07-25T02:59:17.010000"],["2024-07-25T02:59:18.010000"],["2024-07-25T02:59:19.010000"],["2024-07-25T02:59:20.010000"],["2024-07-25T02:59:21.010000"],["2024-07-25T02:59:22.010000"],["2024-07-25T02:59:23.010000"],["2024-07-25T02:59:24.010000"],["2024-07-25T02:59:25.010000"],["2024-07-25T02:59:26.010000"],["2024-07-25T02:59:27.010000"],["2024-07-25T02:59:28.010000"],["2024-07-25T02:59:29.010000"],["2024-07-25T02:59:30.010000"],["2024-07-25T02:59:31.010000"],["2024-07-25T02:59:32.010000"],["2024-07-25T02:59:33.010000"],["2024-07-25T02:59:34.010000"],["2024-07-25T02:59:35.010000"],["2024-07-25T02:59:36.010000"],["2024-07-25T02:59:37.010000"],["2024-07-25T02:59:38.010000"],["2024-07-25T02:59:39.010000"],["2024-07-25T02:59:40.010000"],["2024-07-25T02:59:41.010000"],["2024-07-25T02:59:42.010000"],["2024-07-25T02:59:43.010000"],["2024-07-25T02:59:44.010000"],["2024-07-25T02:59:45.010000"],["2024-07-25T02:59:46.010000"],["2024-07-25T02:59:47.010000"],["2024-07-25T02:59:48.010000"],["2024-07-25T02:59:49.010000"],["2024-07-25T02:59:50.010000"],["2024-07-25T02:59:51.010000"],["2024-07-25T02:59:52.010000"],["2024-07-25T02:59:53.010000"],["2024-07-25T02:59:54.010000"],["2024-07-25T02:59:55.010000"],["2024-07-25T02:59:56.010000"],["2024-07-25T02:59:57.010000"],["2024-07-25T02:59:58.010000"],["2024-07-25T02:59:59.010000"],["2024-07-25T03:00:00.010000"],["2024-07-25T03:00:01.010000"],["2024-07-25T03:00:02.010000"],["2024-07-25T03:00:03.010000"],["2024-07-25T03:00:04.010000"],["2024-07-25T03:00:05.010000"],["2024-07-25T03:00:06.010000"],["2024-07-25T03:00:07.010000"],["2024-07-25T03:00:08.010000"],["2024-07-25T03:00:09.010000"],["2024-07-25T03:00:10.010000"],["2024-07-25T03:00:11.010000"],["2024-07-25T03:00:12.010000"],["2024-07-25T03:00:13.010000"],["2024-07-25T03:00:14.010000"],["2024-07-25T03:00:15.010000"],["2024-07-25T03:00:16.010000"],["2024-07-25T03:00:17.010000"],["2024-07-25T03:00:18.010000"],["2024-07-25T03:00:19.010000"],["2024-07-25T03:00:20.010000"],["2024-07-25T03:00:21.010000"],["2024-07-25T03:00:22.010000"],["2024-07-25T03:00:23.010000"],["2024-07-25T03:00:24.010000"],["2024-07-25T03:00:25.010000"],["2024-07-25T03:00:26.010000"],["2024-07-25T03:00:27.010000"],["2024-07-25T03:00:28.010000"],["2024-07-25T03:00:29.010000"],["2024-07-25T03:00:30.010000"],["2024-07-25T03:00:31.010000"],["2024-07-25T03:00:32.010000"],["2024-07-25T03:00:33.010000"],["2024-07-25T03:00:34.010000"],["2024-07-25T03:00:35.010000"],["2024-07-25T03:00:36.010000"],["2024-07-25T03:00:37.010000"],["2024-07-25T03:00:38.010000"],["2024-07-25T03:00:39.010000"],["2024-07-25T03:00:40.010000"],["2024-07-25T03:00:41.010000"],["2024-07-25T03:00:42.010000"],["2024-07-25T03:00:43.010000"],["2024-07-25T03:00:44.010000"],["2024-07-25T03:00:45.010000"],["2024-07-25T03:00:46.010000"],["2024-07-25T03:00:47.010000"],["2024-07-25T03:00:48.010000"],["2024-07-25T03:00:49.010000"],["2024-07-25T03:00:50.010000"],["2024-07-25T03:00:51.010000"],["2024-07-25T03:00:52.010000"],["2024-07-25T03:00:53.010000"],["2024-07-25T03:00:54.010000"],["2024-07-25T03:00:55.010000"],["2024-07-25T03:00:56.010000"],["2024-07-25T03:00:57.010000"],["2024-07-25T03:00:58.010000"],["2024-07-25T03:00:59.010000"],["2024-07-25T03:01:00.010000"],["2024-07-25T03:01:01.010000"],["2024-07-25T03:01:02.010000"],["2024-07-25T03:01:03.010000"],["2024-07-25T03:01:04.010000"],["2024-07-25T03:01:05.010000"],["2024-07-25T03:01:06.010000"],["2024-07-25T03:01:07.010000"],["2024-07-25T03:01:08.010000"],["2024-07-25T03:01:09.010000"],["2024-07-25T03:01:10.010000"],["2024-07-25T03:01:11.010000"],["2024-07-25T03:01:12.010000"],["2024-07-25T03:01:13.010000"],["2024-07-25T03:01:14.010000"],["2024-07-25T03:01:15.010000"],["2024-07-25T03:01:16.010000"],["2024-07-25T03:01:17.010000"],["2024-07-25T03:01:18.010000"],["2024-07-25T03:01:19.010000"],["2024-07-25T03:01:20.010000"],["2024-07-25T03:01:21.010000"],["2024-07-25T03:01:22.010000"],["2024-07-25T03:01:23.010000"],["2024-07-25T03:01:24.010000"],["2024-07-25T03:01:25.010000"],["2024-07-25T03:01:26.010000"],["2024-07-25T03:01:27.010000"],["2024-07-25T03:01:28.010000"],["2024-07-25T03:01:29.010000"],["2024-07-25T03:01:30.010000"],["2024-07-25T03:01:31.010000"],["2024-07-25T03:01:32.010000"],["2024-07-25T03:01:33.010000"],["2024-07-25T03:01:34.010000"],["2024-07-25T03:01:35.010000"],["2024-07-25T03:01:36.010000"],["2024-07-25T03:01:37.010000"],["2024-07-25T03:01:38.010000"],["2024-07-25T03:01:39.010000"],["2024-07-25T03:01:40.010000"],["2024-07-25T03:01:41.010000"],["2024-07-25T03:01:42.010000"],["2024-07-25T03:01:43.010000"],["2024-07-25T03:01:44.010000"],["2024-07-25T03:01:45.010000"],["2024-07-25T03:01:46.010000"],["2024-07-25T03:01:47.010000"],["2024-07-25T03:01:48.010000"],["2024-07-25T03:01:49.010000"],["2024-07-25T03:01:50.010000"],["2024-07-25T03:01:51.010000"],["2024-07-25T03:01:52.010000"],["2024-07-25T03:01:53.010000"],["2024-07-25T03:01:54.010000"],["2024-07-25T03:01:55.010000"],["2024-07-25T03:01:56.010000"],["2024-07-25T03:01:57.010000"],["2024-07-25T03:01:58.010000"],["2024-07-25T03:01:59.010000"],["2024-07-25T03:02:00.010000"],["2024-07-25T03:02:01.010000"],["2024-07-25T03:02:02.010000"],["2024-07-25T03:02:03.010000"],["2024-07-25T03:02:04.010000"],["2024-07-25T03:02:05.010000"],["2024-07-25T03:02:06.010000"],["2024-07-25T03:02:07.010000"],["2024-07-25T03:02:08.010000"],["2024-07-25T03:02:09.010000"],["2024-07-25T03:02:10.010000"],["2024-07-25T03:02:11.010000"],["2024-07-25T03:02:12.010000"],["2024-07-25T03:02:13.010000"],["2024-07-25T03:02:14.010000"],["2024-07-25T03:02:15.010000"],["2024-07-25T03:02:16.010000"],["2024-07-25T03:02:17.010000"],["2024-07-25T03:02:18.010000"],["2024-07-25T03:02:19.010000"],["2024-07-25T03:02:20.010000"],["2024-07-25T03:02:21.010000"],["2024-07-25T03:02:22.010000"],["2024-07-25T03:02:23.010000"],["2024-07-25T03:02:24.010000"],["2024-07-25T03:02:25.010000"],["2024-07-25T03:02:26.010000"],["2024-07-25T03:02:27.010000"],["2024-07-25T03:02:28.010000"],["2024-07-25T03:02:29.010000"],["2024-07-25T03:02:30.010000"],["2024-07-25T03:02:31.010000"],["2024-07-25T03:02:32.010000"],["2024-07-25T03:02:33.010000"],["2024-07-25T03:02:34.010000"],["2024-07-25T03:02:35.010000"],["2024-07-25T03:02:36.010000"],["2024-07-25T03:02:37.010000"],["2024-07-25T03:02:38.010000"],["2024-07-25T03:02:39.010000"],["2024-07-25T03:02:40.010000"],["2024-07-25T03:02:41.010000"],["2024-07-25T03:02:42.010000"],["2024-07-25T03:02:43.010000"],["2024-07-25T03:02:44.010000"],["2024-07-25T03:02:45.010000"],["2024-07-25T03:02:46.010000"],["2024-07-25T03:02:47.010000"],["2024-07-25T03:02:48.010000"],["2024-07-25T03:02:49.010000"],["2024-07-25T03:02:50.010000"],["2024-07-25T03:02:51.010000"],["2024-07-25T03:02:52.010000"],["2024-07-25T03:02:53.010000"],["2024-07-25T03:02:54.010000"],["2024-07-25T03:02:55.010000"],["2024-07-25T03:02:56.010000"],["2024-07-25T03:02:57.010000"],["2024-07-25T03:02:58.010000"],["2024-07-25T03:02:59.010000"],["2024-07-25T03:03:00.010000"],["2024-07-25T03:03:01.010000"],["2024-07-25T03:03:02.010000"],["2024-07-25T03:03:03.010000"],["2024-07-25T03:03:04.010000"],["2024-07-25T03:03:05.010000"],["2024-07-25T03:03:06.010000"],["2024-07-25T03:03:07.010000"],["2024-07-25T03:03:08.010000"],["2024-07-25T03:03:09.010000"],["2024-07-25T03:03:10.010000"],["2024-07-25T03:03:11.010000"],["2024-07-25T03:03:12.010000"],["2024-07-25T03:03:13.010000"],["2024-07-25T03:03:14.010000"],["2024-07-25T03:03:15.010000"],["2024-07-25T03:03:16.010000"],["2024-07-25T03:03:17.010000"],["2024-07-25T03:03:18.010000"],["2024-07-25T03:03:19.010000"],["2024-07-25T03:03:20.010000"],["2024-07-25T03:03:21.010000"],["2024-07-25T03:03:22.010000"],["2024-07-25T03:03:23.010000"],["2024-07-25T03:03:24.010000"],["2024-07-25T03:03:25.010000"],["2024-07-25T03:03:26.010000"],["2024-07-25T03:03:27.010000"],["2024-07-25T03:03:28.010000"],["2024-07-25T03:03:29.010000"],["2024-07-25T03:03:30.010000"],["2024-07-25T03:03:31.010000"],["2024-07-25T03:03:32.010000"],["2024-07-25T03:03:33.010000"],["2024-07-25T03:03:34.010000"],["2024-07-25T03:03:35.010000"],["2024-07-25T03:03:36.010000"],["2024-07-25T03:03:37.010000"],["2024-07-25T03:03:38.010000"],["2024-07-25T03:03:39.010000"],["2024-07-25T03:03:40.010000"],["2024-07-25T03:03:41.010000"],["2024-07-25T03:03:42.010000"],["2024-07-25T03:03:43.010000"],["2024-07-25T03:03:44.010000"],["2024-07-25T03:03:45.010000"],["2024-07-25T03:03:46.010000"],["2024-07-25T03:03:47.010000"],["2024-07-25T03:03:48.010000"],["2024-07-25T03:03:49.010000"],["2024-07-25T03:03:50.010000"],["2024-07-25T03:03:51.010000"],["2024-07-25T03:03:52.010000"],["2024-07-25T03:03:53.010000"],["2024-07-25T03:03:54.010000"],["2024-07-25T03:03:55.010000"],["2024-07-25T03:03:56.010000"],["2024-07-25T03:03:57.010000"],["2024-07-25T03:03:58.010000"],["2024-07-25T03:03:59.010000"],["2024-07-25T03:04:00.010000"],["2024-07-25T03:04:01.010000"],["2024-07-25T03:04:02.010000"],["2024-07-25T03:04:03.010000"],["2024-07-25T03:04:04.010000"],["2024-07-25T03:04:05.010000"],["2024-07-25T03:04:06.010000"],["2024-07-25T03:04:07.010000"],["2024-07-25T03:04:08.010000"],["2024-07-25T03:04:09.010000"],["2024-07-25T03:04:10.010000"],["2024-07-25T03:04:11.010000"],["2024-07-25T03:04:12.010000"],["2024-07-25T03:04:13.010000"],["2024-07-25T03:04:14.010000"],["2024-07-25T03:04:15.010000"],["2024-07-25T03:04:16.010000"],["2024-07-25T03:04:17.010000"],["2024-07-25T03:04:18.010000"],["2024-07-25T03:04:19.010000"],["2024-07-25T03:04:20.010000"],["2024-07-25T03:04:21.010000"],["2024-07-25T03:04:22.010000"],["2024-07-25T03:04:23.010000"],["2024-07-25T03:04:24.010000"],["2024-07-25T03:04:25.010000"],["2024-07-25T03:04:26.010000"],["2024-07-25T03:04:27.010000"],["2024-07-25T03:04:28.010000"],["2024-07-25T03:04:29.010000"],["2024-07-25T03:04:30.010000"],["2024-07-25T03:04:31.010000"],["2024-07-25T03:04:32.010000"],["2024-07-25T03:04:33.010000"],["2024-07-25T03:04:34.010000"],["2024-07-25T03:04:35.010000"],["2024-07-25T03:04:36.010000"],["2024-07-25T03:04:37.010000"],["2024-07-25T03:04:38.010000"],["2024-07-25T03:04:39.010000"],["2024-07-25T03:04:40.010000"],["2024-07-25T03:04:41.010000"],["2024-07-25T03:04:42.010000"],["2024-07-25T03:04:43.010000"],["2024-07-25T03:04:44.010000"],["2024-07-25T03:04:45.010000"],["2024-07-25T03:04:46.010000"],["2024-07-25T03:04:47.010000"],["2024-07-25T03:04:48.010000"],["2024-07-25T03:04:49.010000"],["2024-07-25T03:04:50.010000"],["2024-07-25T03:04:51.010000"],["2024-07-25T03:04:52.010000"],["2024-07-25T03:04:53.010000"],["2024-07-25T03:04:54.010000"],["2024-07-25T03:04:55.010000"],["2024-07-25T03:04:56.010000"],["2024-07-25T03:04:57.010000"],["2024-07-25T03:04:58.010000"],["2024-07-25T03:04:59.010000"],["2024-07-25T03:05:00.010000"],["2024-07-25T03:05:01.010000"],["2024-07-25T03:05:02.010000"],["2024-07-25T03:05:03.010000"],["2024-07-25T03:05:04.010000"],["2024-07-25T03:05:05.010000"],["2024-07-25T03:05:06.010000"],["2024-07-25T03:05:07.010000"],["2024-07-25T03:05:08.010000"],["2024-07-25T03:05:09.010000"],["2024-07-25T03:05:10.010000"],["2024-07-25T03:05:11.010000"],["2024-07-25T03:05:12.010000"],["2024-07-25T03:05:13.010000"],["2024-07-25T03:05:14.010000"],["2024-07-25T03:05:15.010000"],["2024-07-25T03:05:16.010000"],["2024-07-25T03:05:17.010000"],["2024-07-25T03:05:18.010000"],["2024-07-25T03:05:19.010000"],["2024-07-25T03:05:20.010000"],["2024-07-25T03:05:21.010000"],["2024-07-25T03:05:22.010000"],["2024-07-25T03:05:23.010000"],["2024-07-25T03:05:24.010000"],["2024-07-25T03:05:25.010000"],["2024-07-25T03:05:26.010000"],["2024-07-25T03:05:27.010000"],["2024-07-25T03:05:28.010000"],["2024-07-25T03:05:29.010000"],["2024-07-25T03:05:30.010000"],["2024-07-25T03:05:31.010000"],["2024-07-25T03:05:32.010000"],["2024-07-25T03:05:33.010000"],["2024-07-25T03:05:34.010000"],["2024-07-25T03:05:35.010000"],["2024-07-25T03:05:36.010000"],["2024-07-25T03:05:37.010000"],["2024-07-25T03:05:38.010000"],["2024-07-25T03:05:39.010000"],["2024-07-25T03:05:40.010000"],["2024-07-25T03:05:41.010000"],["2024-07-25T03:05:42.010000"],["2024-07-25T03:05:43.010000"],["2024-07-25T03:05:44.010000"],["2024-07-25T03:05:45.010000"],["2024-07-25T03:05:46.010000"],["2024-07-25T03:05:47.010000"],["2024-07-25T03:05:48.010000"],["2024-07-25T03:05:49.010000"],["2024-07-25T03:05:50.010000"],["2024-07-25T03:05:51.010000"],["2024-07-25T03:05:52.010000"],["2024-07-25T03:05:53.010000"],["2024-07-25T03:05:54.010000"],["2024-07-25T03:05:55.010000"],["2024-07-25T03:05:56.010000"],["2024-07-25T03:05:57.010000"],["2024-07-25T03:05:58.010000"],["2024-07-25T03:05:59.010000"],["2024-07-25T03:06:00.010000"],["2024-07-25T03:06:01.010000"],["2024-07-25T03:06:02.010000"],["2024-07-25T03:06:03.010000"],["2024-07-25T03:06:04.010000"],["2024-07-25T03:06:05.010000"],["2024-07-25T03:06:06.010000"],["2024-07-25T03:06:07.010000"],["2024-07-25T03:06:08.010000"],["2024-07-25T03:06:09.010000"],["2024-07-25T03:06:10.010000"],["2024-07-25T03:06:11.010000"],["2024-07-25T03:06:12.010000"],["2024-07-25T03:06:13.010000"],["2024-07-25T03:06:14.010000"],["2024-07-25T03:06:15.010000"],["2024-07-25T03:06:16.010000"],["2024-07-25T03:06:17.010000"],["2024-07-25T03:06:18.010000"],["2024-07-25T03:06:19.010000"],["2024-07-25T03:06:20.010000"],["2024-07-25T03:06:21.010000"],["2024-07-25T03:06:22.010000"],["2024-07-25T03:06:23.010000"],["2024-07-25T03:06:24.010000"],["2024-07-25T03:06:25.010000"],["2024-07-25T03:06:26.010000"],["2024-07-25T03:06:27.010000"],["2024-07-25T03:06:28.010000"],["2024-07-25T03:06:29.010000"],["2024-07-25T03:06:30.010000"],["2024-07-25T03:06:31.010000"],["2024-07-25T03:06:32.010000"],["2024-07-25T03:06:33.010000"],["2024-07-25T03:06:34.010000"],["2024-07-25T03:06:35.010000"],["2024-07-25T03:06:36.010000"],["2024-07-25T03:06:37.010000"],["2024-07-25T03:06:38.010000"],["2024-07-25T03:06:39.010000"],["2024-07-25T03:06:40.010000"],["2024-07-25T03:06:41.010000"],["2024-07-25T03:06:42.010000"],["2024-07-25T03:06:43.010000"],["2024-07-25T03:06:44.010000"],["2024-07-25T03:06:45.010000"],["2024-07-25T03:06:46.010000"],["2024-07-25T03:06:47.010000"],["2024-07-25T03:06:48.010000"],["2024-07-25T03:06:49.010000"],["2024-07-25T03:06:50.010000"],["2024-07-25T03:06:51.010000"],["2024-07-25T03:06:52.010000"],["2024-07-25T03:06:53.010000"],["2024-07-25T03:06:54.010000"],["2024-07-25T03:06:55.010000"],["2024-07-25T03:06:56.010000"],["2024-07-25T03:06:57.010000"],["2024-07-25T03:06:58.010000"],["2024-07-25T03:06:59.010000"],["2024-07-25T03:07:00.010000"],["2024-07-25T03:07:01.010000"],["2024-07-25T03:07:02.010000"],["2024-07-25T03:07:03.010000"],["2024-07-25T03:07:04.010000"],["2024-07-25T03:07:05.010000"],["2024-07-25T03:07:06.010000"],["2024-07-25T03:07:07.010000"],["2024-07-25T03:07:08.010000"],["2024-07-25T03:07:09.010000"],["2024-07-25T03:07:10.010000"],["2024-07-25T03:07:11.010000"],["2024-07-25T03:07:12.010000"],["2024-07-25T03:07:13.010000"],["2024-07-25T03:07:14.010000"],["2024-07-25T03:07:15.010000"],["2024-07-25T03:07:16.010000"],["2024-07-25T03:07:17.010000"],["2024-07-25T03:07:18.010000"],["2024-07-25T03:07:19.010000"],["2024-07-25T03:07:20.010000"],["2024-07-25T03:07:21.010000"],["2024-07-25T03:07:22.010000"],["2024-07-25T03:07:23.010000"],["2024-07-25T03:07:24.010000"],["2024-07-25T03:07:25.010000"],["2024-07-25T03:07:26.010000"],["2024-07-25T03:07:27.010000"],["2024-07-25T03:07:28.010000"],["2024-07-25T03:07:29.010000"],["2024-07-25T03:07:30.010000"],["2024-07-25T03:07:31.010000"],["2024-07-25T03:07:32.010000"],["2024-07-25T03:07:33.010000"],["2024-07-25T03:07:34.010000"],["2024-07-25T03:07:35.010000"],["2024-07-25T03:07:36.010000"],["2024-07-25T03:07:37.010000"],["2024-07-25T03:07:38.010000"],["2024-07-25T03:07:39.010000"],["2024-07-25T03:07:40.010000"],["2024-07-25T03:07:41.010000"],["2024-07-25T03:07:42.010000"],["2024-07-25T03:07:43.010000"],["2024-07-25T03:07:44.010000"],["2024-07-25T03:07:45.010000"],["2024-07-25T03:07:46.010000"],["2024-07-25T03:07:47.010000"],["2024-07-25T03:07:48.010000"],["2024-07-25T03:07:49.010000"],["2024-07-25T03:07:50.010000"],["2024-07-25T03:07:51.010000"],["2024-07-25T03:07:52.010000"],["2024-07-25T03:07:53.010000"],["2024-07-25T03:07:54.010000"],["2024-07-25T03:07:55.010000"],["2024-07-25T03:07:56.010000"],["2024-07-25T03:07:57.010000"],["2024-07-25T03:07:58.010000"],["2024-07-25T03:07:59.010000"],["2024-07-25T03:08:00.010000"],["2024-07-25T03:08:01.010000"],["2024-07-25T03:08:02.010000"],["2024-07-25T03:08:03.010000"],["2024-07-25T03:08:04.010000"],["2024-07-25T03:08:05.010000"],["2024-07-25T03:08:06.010000"],["2024-07-25T03:08:07.010000"],["2024-07-25T03:08:08.010000"],["2024-07-25T03:08:09.010000"],["2024-07-25T03:08:10.010000"],["2024-07-25T03:08:11.010000"],["2024-07-25T03:08:12.010000"],["2024-07-25T03:08:13.010000"],["2024-07-25T03:08:14.010000"],["2024-07-25T03:08:15.010000"],["2024-07-25T03:08:16.010000"],["2024-07-25T03:08:17.010000"],["2024-07-25T03:08:18.010000"],["2024-07-25T03:08:19.010000"],["2024-07-25T03:08:20.010000"],["2024-07-25T03:08:21.010000"],["2024-07-25T03:08:22.010000"],["2024-07-25T03:08:23.010000"],["2024-07-25T03:08:24.010000"],["2024-07-25T03:08:25.010000"],["2024-07-25T03:08:26.010000"],["2024-07-25T03:08:27.010000"],["2024-07-25T03:08:28.010000"],["2024-07-25T03:08:29.010000"],["2024-07-25T03:08:30.010000"],["2024-07-25T03:08:31.010000"],["2024-07-25T03:08:32.010000"],["2024-07-25T03:08:33.010000"],["2024-07-25T03:08:34.010000"],["2024-07-25T03:08:35.010000"],["2024-07-25T03:08:36.010000"],["2024-07-25T03:08:37.010000"],["2024-07-25T03:08:38.010000"],["2024-07-25T03:08:39.010000"],["2024-07-25T03:08:40.010000"],["2024-07-25T03:08:41.010000"],["2024-07-25T03:08:42.010000"],["2024-07-25T03:08:43.010000"],["2024-07-25T03:08:44.010000"],["2024-07-25T03:08:45.010000"],["2024-07-25T03:08:46.010000"],["2024-07-25T03:08:47.010000"],["2024-07-25T03:08:48.010000"],["2024-07-25T03:08:49.010000"],["2024-07-25T03:08:50.010000"],["2024-07-25T03:08:51.010000"],["2024-07-25T03:08:52.010000"],["2024-07-25T03:08:53.010000"],["2024-07-25T03:08:54.010000"],["2024-07-25T03:08:55.010000"],["2024-07-25T03:08:56.010000"],["2024-07-25T03:08:57.010000"],["2024-07-25T03:08:58.010000"],["2024-07-25T03:08:59.010000"],["2024-07-25T03:09:00.010000"],["2024-07-25T03:09:01.010000"],["2024-07-25T03:09:02.010000"],["2024-07-25T03:09:03.010000"],["2024-07-25T03:09:04.010000"],["2024-07-25T03:09:05.010000"],["2024-07-25T03:09:06.010000"],["2024-07-25T03:09:07.010000"],["2024-07-25T03:09:08.010000"],["2024-07-25T03:09:09.010000"],["2024-07-25T03:09:10.010000"],["2024-07-25T03:09:11.010000"],["2024-07-25T03:09:12.010000"],["2024-07-25T03:09:13.010000"],["2024-07-25T03:09:14.010000"],["2024-07-25T03:09:15.010000"],["2024-07-25T03:09:16.010000"],["2024-07-25T03:09:17.010000"],["2024-07-25T03:09:18.010000"],["2024-07-25T03:09:19.010000"],["2024-07-25T03:09:20.010000"],["2024-07-25T03:09:21.010000"],["2024-07-25T03:09:22.010000"],["2024-07-25T03:09:23.010000"],["2024-07-25T03:09:24.010000"],["2024-07-25T03:09:25.010000"],["2024-07-25T03:09:26.010000"],["2024-07-25T03:09:27.010000"],["2024-07-25T03:09:28.010000"],["2024-07-25T03:09:29.010000"],["2024-07-25T03:09:30.010000"],["2024-07-25T03:09:31.010000"],["2024-07-25T03:09:32.010000"],["2024-07-25T03:09:33.010000"],["2024-07-25T03:09:34.010000"],["2024-07-25T03:09:35.010000"],["2024-07-25T03:09:36.010000"],["2024-07-25T03:09:37.010000"],["2024-07-25T03:09:38.010000"],["2024-07-25T03:09:39.010000"],["2024-07-25T03:09:40.010000"],["2024-07-25T03:09:41.010000"],["2024-07-25T03:09:42.010000"],["2024-07-25T03:09:43.010000"],["2024-07-25T03:09:44.010000"],["2024-07-25T03:09:45.010000"],["2024-07-25T03:09:46.010000"],["2024-07-25T03:09:47.010000"],["2024-07-25T03:09:48.010000"],["2024-07-25T03:09:49.010000"],["2024-07-25T03:09:50.010000"],["2024-07-25T03:09:51.010000"],["2024-07-25T03:09:52.010000"],["2024-07-25T03:09:53.010000"],["2024-07-25T03:09:54.010000"],["2024-07-25T03:09:55.010000"],["2024-07-25T03:09:56.010000"],["2024-07-25T03:09:57.010000"],["2024-07-25T03:09:58.010000"],["2024-07-25T03:09:59.010000"],["2024-07-25T03:10:00.010000"],["2024-07-25T03:10:01.010000"],["2024-07-25T03:10:02.010000"],["2024-07-25T03:10:03.010000"],["2024-07-25T03:10:04.010000"],["2024-07-25T03:10:05.010000"],["2024-07-25T03:10:06.010000"],["2024-07-25T03:10:07.010000"],["2024-07-25T03:10:08.010000"],["2024-07-25T03:10:09.010000"],["2024-07-25T03:10:10.010000"],["2024-07-25T03:10:11.010000"],["2024-07-25T03:10:12.010000"],["2024-07-25T03:10:13.010000"],["2024-07-25T03:10:14.010000"],["2024-07-25T03:10:15.010000"],["2024-07-25T03:10:16.010000"],["2024-07-25T03:10:17.010000"],["2024-07-25T03:10:18.010000"],["2024-07-25T03:10:19.010000"],["2024-07-25T03:10:20.010000"],["2024-07-25T03:10:21.010000"],["2024-07-25T03:10:22.010000"],["2024-07-25T03:10:23.010000"],["2024-07-25T03:10:24.010000"],["2024-07-25T03:10:25.010000"],["2024-07-25T03:10:26.010000"],["2024-07-25T03:10:27.010000"],["2024-07-25T03:10:28.010000"],["2024-07-25T03:10:29.010000"],["2024-07-25T03:10:30.010000"],["2024-07-25T03:10:31.010000"],["2024-07-25T03:10:32.010000"],["2024-07-25T03:10:33.010000"],["2024-07-25T03:10:34.010000"],["2024-07-25T03:10:35.010000"],["2024-07-25T03:10:36.010000"],["2024-07-25T03:10:37.010000"],["2024-07-25T03:10:38.010000"],["2024-07-25T03:10:39.010000"],["2024-07-25T03:10:40.010000"],["2024-07-25T03:10:41.010000"],["2024-07-25T03:10:42.010000"],["2024-07-25T03:10:43.010000"],["2024-07-25T03:10:44.010000"],["2024-07-25T03:10:45.010000"],["2024-07-25T03:10:46.010000"],["2024-07-25T03:10:47.010000"],["2024-07-25T03:10:48.010000"],["2024-07-25T03:10:49.010000"],["2024-07-25T03:10:50.010000"],["2024-07-25T03:10:51.010000"],["2024-07-25T03:10:52.010000"],["2024-07-25T03:10:53.010000"],["2024-07-25T03:10:54.010000"],["2024-07-25T03:10:55.010000"],["2024-07-25T03:10:56.010000"],["2024-07-25T03:10:57.010000"],["2024-07-25T03:10:58.010000"],["2024-07-25T03:10:59.010000"],["2024-07-25T03:11:00.010000"],["2024-07-25T03:11:01.010000"],["2024-07-25T03:11:02.010000"],["2024-07-25T03:11:03.010000"],["2024-07-25T03:11:04.010000"],["2024-07-25T03:11:05.010000"],["2024-07-25T03:11:06.010000"],["2024-07-25T03:11:07.010000"],["2024-07-25T03:11:08.010000"],["2024-07-25T03:11:09.010000"],["2024-07-25T03:11:10.010000"],["2024-07-25T03:11:11.010000"],["2024-07-25T03:11:12.010000"],["2024-07-25T03:11:13.010000"],["2024-07-25T03:11:14.010000"],["2024-07-25T03:11:15.010000"],["2024-07-25T03:11:16.010000"],["2024-07-25T03:11:17.010000"],["2024-07-25T03:11:18.010000"],["2024-07-25T03:11:19.010000"],["2024-07-25T03:11:20.010000"],["2024-07-25T03:11:21.010000"],["2024-07-25T03:11:22.010000"],["2024-07-25T03:11:23.010000"],["2024-07-25T03:11:24.010000"],["2024-07-25T03:11:25.010000"],["2024-07-25T03:11:26.010000"],["2024-07-25T03:11:27.010000"],["2024-07-25T03:11:28.010000"],["2024-07-25T03:11:29.010000"],["2024-07-25T03:11:30.010000"],["2024-07-25T03:11:31.010000"],["2024-07-25T03:11:32.010000"],["2024-07-25T03:11:33.010000"],["2024-07-25T03:11:34.010000"],["2024-07-25T03:11:35.010000"],["2024-07-25T03:11:36.010000"],["2024-07-25T03:11:37.010000"],["2024-07-25T03:11:38.010000"],["2024-07-25T03:11:39.010000"],["2024-07-25T03:11:40.010000"],["2024-07-25T03:11:41.010000"],["2024-07-25T03:11:42.010000"],["2024-07-25T03:11:43.010000"],["2024-07-25T03:11:44.010000"],["2024-07-25T03:11:45.010000"],["2024-07-25T03:11:46.010000"],["2024-07-25T03:11:47.010000"],["2024-07-25T03:11:48.010000"],["2024-07-25T03:11:49.010000"],["2024-07-25T03:11:50.010000"],["2024-07-25T03:11:51.010000"],["2024-07-25T03:11:52.010000"],["2024-07-25T03:11:53.010000"],["2024-07-25T03:11:54.010000"],["2024-07-25T03:11:55.010000"],["2024-07-25T03:11:56.010000"],["2024-07-25T03:11:57.010000"],["2024-07-25T03:11:58.010000"],["2024-07-25T03:11:59.010000"],["2024-07-25T03:12:00.010000"],["2024-07-25T03:12:01.010000"],["2024-07-25T03:12:02.010000"],["2024-07-25T03:12:03.010000"],["2024-07-25T03:12:04.010000"],["2024-07-25T03:12:05.010000"],["2024-07-25T03:12:06.010000"],["2024-07-25T03:12:07.010000"],["2024-07-25T03:12:08.010000"],["2024-07-25T03:12:09.010000"],["2024-07-25T03:12:10.010000"],["2024-07-25T03:12:11.010000"],["2024-07-25T03:12:12.010000"],["2024-07-25T03:12:13.010000"],["2024-07-25T03:12:14.010000"],["2024-07-25T03:12:15.010000"],["2024-07-25T03:12:16.010000"],["2024-07-25T03:12:17.010000"],["2024-07-25T03:12:18.010000"],["2024-07-25T03:12:19.010000"],["2024-07-25T03:12:20.010000"],["2024-07-25T03:12:21.010000"],["2024-07-25T03:12:22.010000"],["2024-07-25T03:12:23.010000"],["2024-07-25T03:12:24.010000"],["2024-07-25T03:12:25.010000"],["2024-07-25T03:12:26.010000"],["2024-07-25T03:12:27.010000"],["2024-07-25T03:12:28.010000"],["2024-07-25T03:12:29.010000"],["2024-07-25T03:12:30.010000"],["2024-07-25T03:12:31.010000"],["2024-07-25T03:12:32.010000"],["2024-07-25T03:12:33.010000"],["2024-07-25T03:12:34.010000"],["2024-07-25T03:12:35.010000"],["2024-07-25T03:12:36.010000"],["2024-07-25T03:12:37.010000"],["2024-07-25T03:12:38.010000"],["2024-07-25T03:12:39.010000"],["2024-07-25T03:12:40.010000"],["2024-07-25T03:12:41.010000"],["2024-07-25T03:12:42.010000"],["2024-07-25T03:12:43.010000"],["2024-07-25T03:12:44.010000"],["2024-07-25T03:12:45.010000"],["2024-07-25T03:12:46.010000"],["2024-07-25T03:12:47.010000"],["2024-07-25T03:12:48.010000"],["2024-07-25T03:12:49.010000"],["2024-07-25T03:12:50.010000"],["2024-07-25T03:12:51.010000"],["2024-07-25T03:12:52.010000"],["2024-07-25T03:12:53.010000"],["2024-07-25T03:12:54.010000"],["2024-07-25T03:12:55.010000"],["2024-07-25T03:12:56.010000"],["2024-07-25T03:12:57.010000"],["2024-07-25T03:12:58.010000"],["2024-07-25T03:12:59.010000"],["2024-07-25T03:13:00.010000"],["2024-07-25T03:13:01.010000"],["2024-07-25T03:13:02.010000"],["2024-07-25T03:13:03.010000"],["2024-07-25T03:13:04.010000"],["2024-07-25T03:13:05.010000"],["2024-07-25T03:13:06.010000"],["2024-07-25T03:13:07.010000"],["2024-07-25T03:13:08.010000"],["2024-07-25T03:13:09.010000"],["2024-07-25T03:13:10.010000"],["2024-07-25T03:13:11.010000"],["2024-07-25T03:13:12.010000"],["2024-07-25T03:13:13.010000"],["2024-07-25T03:13:14.010000"],["2024-07-25T03:13:15.010000"],["2024-07-25T03:13:16.010000"],["2024-07-25T03:13:17.010000"],["2024-07-25T03:13:18.010000"],["2024-07-25T03:13:19.010000"],["2024-07-25T03:13:20.010000"],["2024-07-25T03:13:21.010000"],["2024-07-25T03:13:22.010000"],["2024-07-25T03:13:23.010000"],["2024-07-25T03:13:24.010000"],["2024-07-25T03:13:25.010000"],["2024-07-25T03:13:26.010000"],["2024-07-25T03:13:27.010000"],["2024-07-25T03:13:28.010000"],["2024-07-25T03:13:29.010000"],["2024-07-25T03:13:30.010000"],["2024-07-25T03:13:31.010000"],["2024-07-25T03:13:32.010000"],["2024-07-25T03:13:33.010000"],["2024-07-25T03:13:34.010000"],["2024-07-25T03:13:35.010000"],["2024-07-25T03:13:36.010000"],["2024-07-25T03:13:37.010000"],["2024-07-25T03:13:38.010000"],["2024-07-25T03:13:39.010000"],["2024-07-25T03:13:40.010000"],["2024-07-25T03:13:41.010000"],["2024-07-25T03:13:42.010000"],["2024-07-25T03:13:43.010000"],["2024-07-25T03:13:44.010000"],["2024-07-25T03:13:45.010000"],["2024-07-25T03:13:46.010000"],["2024-07-25T03:13:47.010000"],["2024-07-25T03:13:48.010000"],["2024-07-25T03:13:49.010000"],["2024-07-25T03:13:50.010000"],["2024-07-25T03:13:51.010000"],["2024-07-25T03:13:52.010000"],["2024-07-25T03:13:53.010000"],["2024-07-25T03:13:54.010000"],["2024-07-25T03:13:55.010000"],["2024-07-25T03:13:56.010000"],["2024-07-25T03:13:57.010000"],["2024-07-25T03:13:58.010000"],["2024-07-25T03:13:59.010000"],["2024-07-25T03:14:00.010000"],["2024-07-25T03:14:01.010000"],["2024-07-25T03:14:02.010000"],["2024-07-25T03:14:03.010000"],["2024-07-25T03:14:04.010000"],["2024-07-25T03:14:05.010000"],["2024-07-25T03:14:06.010000"],["2024-07-25T03:14:07.010000"],["2024-07-25T03:14:08.010000"],["2024-07-25T03:14:09.010000"],["2024-07-25T03:14:10.010000"],["2024-07-25T03:14:11.010000"],["2024-07-25T03:14:12.010000"],["2024-07-25T03:14:13.010000"],["2024-07-25T03:14:14.010000"],["2024-07-25T03:14:15.010000"],["2024-07-25T03:14:16.010000"],["2024-07-25T03:14:17.010000"],["2024-07-25T03:14:18.010000"],["2024-07-25T03:14:19.010000"],["2024-07-25T03:14:20.010000"],["2024-07-25T03:14:21.010000"],["2024-07-25T03:14:22.010000"],["2024-07-25T03:14:23.010000"],["2024-07-25T03:14:24.010000"],["2024-07-25T03:14:25.010000"],["2024-07-25T03:14:26.010000"],["2024-07-25T03:14:27.010000"],["2024-07-25T03:14:28.010000"],["2024-07-25T03:14:29.010000"],["2024-07-25T03:14:30.010000"],["2024-07-25T03:14:31.010000"],["2024-07-25T03:14:32.010000"],["2024-07-25T03:14:33.010000"],["2024-07-25T03:14:34.010000"],["2024-07-25T03:14:35.010000"],["2024-07-25T03:14:36.010000"],["2024-07-25T03:14:37.010000"],["2024-07-25T03:14:38.010000"],["2024-07-25T03:14:39.010000"],["2024-07-25T03:14:40.010000"],["2024-07-25T03:14:41.010000"],["2024-07-25T03:14:42.010000"],["2024-07-25T03:14:43.010000"],["2024-07-25T03:14:44.010000"],["2024-07-25T03:14:45.010000"],["2024-07-25T03:14:46.010000"],["2024-07-25T03:14:47.010000"],["2024-07-25T03:14:48.010000"],["2024-07-25T03:14:49.010000"],["2024-07-25T03:14:50.010000"],["2024-07-25T03:14:51.010000"],["2024-07-25T03:14:52.010000"],["2024-07-25T03:14:53.010000"],["2024-07-25T03:14:54.010000"],["2024-07-25T03:14:55.010000"],["2024-07-25T03:14:56.010000"],["2024-07-25T03:14:57.010000"],["2024-07-25T03:14:58.010000"],["2024-07-25T03:14:59.010000"],["2024-07-25T03:15:00.010000"],["2024-07-25T03:15:01.010000"],["2024-07-25T03:15:02.010000"],["2024-07-25T03:15:03.010000"],["2024-07-25T03:15:04.010000"],["2024-07-25T03:15:05.010000"],["2024-07-25T03:15:06.010000"],["2024-07-25T03:15:07.010000"],["2024-07-25T03:15:08.010000"],["2024-07-25T03:15:09.010000"],["2024-07-25T03:15:10.010000"],["2024-07-25T03:15:11.010000"],["2024-07-25T03:15:12.010000"],["2024-07-25T03:15:13.010000"],["2024-07-25T03:15:14.010000"],["2024-07-25T03:15:15.010000"],["2024-07-25T03:15:16.010000"],["2024-07-25T03:15:17.010000"],["2024-07-25T03:15:18.010000"],["2024-07-25T03:15:19.010000"],["2024-07-25T03:15:20.010000"],["2024-07-25T03:15:21.010000"],["2024-07-25T03:15:22.010000"],["2024-07-25T03:15:23.010000"],["2024-07-25T03:15:24.010000"],["2024-07-25T03:15:25.010000"],["2024-07-25T03:15:26.010000"],["2024-07-25T03:15:27.010000"],["2024-07-25T03:15:28.010000"],["2024-07-25T03:15:29.010000"],["2024-07-25T03:15:30.010000"],["2024-07-25T03:15:31.010000"],["2024-07-25T03:15:32.010000"],["2024-07-25T03:15:33.010000"],["2024-07-25T03:15:34.010000"],["2024-07-25T03:15:35.010000"],["2024-07-25T03:15:36.010000"],["2024-07-25T03:15:37.010000"],["2024-07-25T03:15:38.010000"],["2024-07-25T03:15:39.010000"],["2024-07-25T03:15:40.010000"],["2024-07-25T03:15:41.010000"],["2024-07-25T03:15:42.010000"],["2024-07-25T03:15:43.010000"],["2024-07-25T03:15:44.010000"],["2024-07-25T03:15:45.010000"],["2024-07-25T03:15:46.010000"],["2024-07-25T03:15:47.010000"],["2024-07-25T03:15:48.010000"],["2024-07-25T03:15:49.010000"],["2024-07-25T03:15:50.010000"],["2024-07-25T03:15:51.010000"],["2024-07-25T03:15:52.010000"],["2024-07-25T03:15:53.010000"],["2024-07-25T03:15:54.010000"],["2024-07-25T03:15:55.010000"],["2024-07-25T03:15:56.010000"],["2024-07-25T03:15:57.010000"],["2024-07-25T03:15:58.010000"],["2024-07-25T03:15:59.010000"],["2024-07-25T03:16:00.010000"],["2024-07-25T03:16:01.010000"],["2024-07-25T03:16:02.010000"],["2024-07-25T03:16:03.010000"],["2024-07-25T03:16:04.010000"],["2024-07-25T03:16:05.010000"],["2024-07-25T03:16:06.010000"],["2024-07-25T03:16:07.010000"],["2024-07-25T03:16:08.010000"],["2024-07-25T03:16:09.010000"],["2024-07-25T03:16:10.010000"],["2024-07-25T03:16:11.010000"],["2024-07-25T03:16:12.010000"],["2024-07-25T03:16:13.010000"],["2024-07-25T03:16:14.010000"],["2024-07-25T03:16:15.010000"],["2024-07-25T03:16:16.010000"],["2024-07-25T03:16:17.010000"],["2024-07-25T03:16:18.010000"],["2024-07-25T03:16:19.010000"],["2024-07-25T03:16:20.010000"],["2024-07-25T03:16:21.010000"],["2024-07-25T03:16:22.010000"],["2024-07-25T03:16:23.010000"],["2024-07-25T03:16:24.010000"],["2024-07-25T03:16:25.010000"],["2024-07-25T03:16:26.010000"],["2024-07-25T03:16:27.010000"],["2024-07-25T03:16:28.010000"],["2024-07-25T03:16:29.010000"],["2024-07-25T03:16:30.010000"],["2024-07-25T03:16:31.010000"],["2024-07-25T03:16:32.010000"],["2024-07-25T03:16:33.010000"],["2024-07-25T03:16:34.010000"],["2024-07-25T03:16:35.010000"],["2024-07-25T03:16:36.010000"],["2024-07-25T03:16:37.010000"],["2024-07-25T03:16:38.010000"],["2024-07-25T03:16:39.010000"],["2024-07-25T03:16:40.010000"],["2024-07-25T03:16:41.010000"],["2024-07-25T03:16:42.010000"],["2024-07-25T03:16:43.010000"],["2024-07-25T03:16:44.010000"],["2024-07-25T03:16:45.010000"],["2024-07-25T03:16:46.010000"],["2024-07-25T03:16:47.010000"],["2024-07-25T03:16:48.010000"],["2024-07-25T03:16:49.010000"],["2024-07-25T03:16:50.010000"],["2024-07-25T03:16:51.010000"],["2024-07-25T03:16:52.010000"],["2024-07-25T03:16:53.010000"],["2024-07-25T03:16:54.010000"],["2024-07-25T03:16:55.010000"],["2024-07-25T03:16:56.010000"],["2024-07-25T03:16:57.010000"],["2024-07-25T03:16:58.010000"],["2024-07-25T03:16:59.010000"],["2024-07-25T03:17:00.010000"],["2024-07-25T03:17:01.010000"],["2024-07-25T03:17:02.010000"],["2024-07-25T03:17:03.010000"],["2024-07-25T03:17:04.010000"],["2024-07-25T03:17:05.010000"],["2024-07-25T03:17:06.010000"],["2024-07-25T03:17:07.010000"],["2024-07-25T03:17:08.010000"],["2024-07-25T03:17:09.010000"],["2024-07-25T03:17:10.010000"],["2024-07-25T03:17:11.010000"],["2024-07-25T03:17:12.010000"],["2024-07-25T03:17:13.010000"],["2024-07-25T03:17:14.010000"],["2024-07-25T03:17:15.010000"],["2024-07-25T03:17:16.010000"],["2024-07-25T03:17:17.010000"],["2024-07-25T03:17:18.010000"],["2024-07-25T03:17:19.010000"],["2024-07-25T03:17:20.010000"],["2024-07-25T03:17:21.010000"],["2024-07-25T03:17:22.010000"],["2024-07-25T03:17:23.010000"],["2024-07-25T03:17:24.010000"],["2024-07-25T03:17:25.010000"],["2024-07-25T03:17:26.010000"],["2024-07-25T03:17:27.010000"],["2024-07-25T03:17:28.010000"],["2024-07-25T03:17:29.010000"],["2024-07-25T03:17:30.010000"],["2024-07-25T03:17:31.010000"],["2024-07-25T03:17:32.010000"],["2024-07-25T03:17:33.010000"],["2024-07-25T03:17:34.010000"],["2024-07-25T03:17:35.010000"],["2024-07-25T03:17:36.010000"],["2024-07-25T03:17:37.010000"],["2024-07-25T03:17:38.010000"],["2024-07-25T03:17:39.010000"],["2024-07-25T03:17:40.010000"],["2024-07-25T03:17:41.010000"],["2024-07-25T03:17:42.010000"],["2024-07-25T03:17:43.010000"],["2024-07-25T03:17:44.010000"],["2024-07-25T03:17:45.010000"],["2024-07-25T03:17:46.010000"],["2024-07-25T03:17:47.010000"],["2024-07-25T03:17:48.010000"],["2024-07-25T03:17:49.010000"],["2024-07-25T03:17:50.010000"],["2024-07-25T03:17:51.010000"],["2024-07-25T03:17:52.010000"],["2024-07-25T03:17:53.010000"],["2024-07-25T03:17:54.010000"],["2024-07-25T03:17:55.010000"],["2024-07-25T03:17:56.010000"],["2024-07-25T03:17:57.010000"],["2024-07-25T03:17:58.010000"],["2024-07-25T03:17:59.010000"],["2024-07-25T03:18:00.010000"],["2024-07-25T03:18:01.010000"],["2024-07-25T03:18:02.010000"],["2024-07-25T03:18:03.010000"],["2024-07-25T03:18:04.010000"],["2024-07-25T03:18:05.010000"],["2024-07-25T03:18:06.010000"],["2024-07-25T03:18:07.010000"],["2024-07-25T03:18:08.010000"],["2024-07-25T03:18:09.010000"],["2024-07-25T03:18:10.010000"],["2024-07-25T03:18:11.010000"],["2024-07-25T03:18:12.010000"],["2024-07-25T03:18:13.010000"],["2024-07-25T03:18:14.010000"],["2024-07-25T03:18:15.010000"],["2024-07-25T03:18:16.010000"],["2024-07-25T03:18:17.010000"],["2024-07-25T03:18:18.010000"],["2024-07-25T03:18:19.010000"],["2024-07-25T03:18:20.010000"],["2024-07-25T03:18:21.010000"],["2024-07-25T03:18:22.010000"],["2024-07-25T03:18:23.010000"],["2024-07-25T03:18:24.010000"],["2024-07-25T03:18:25.010000"],["2024-07-25T03:18:26.010000"],["2024-07-25T03:18:27.010000"],["2024-07-25T03:18:28.010000"],["2024-07-25T03:18:29.010000"],["2024-07-25T03:18:30.010000"],["2024-07-25T03:18:31.010000"],["2024-07-25T03:18:32.010000"],["2024-07-25T03:18:33.010000"],["2024-07-25T03:18:34.010000"],["2024-07-25T03:18:35.010000"],["2024-07-25T03:18:36.010000"],["2024-07-25T03:18:37.010000"],["2024-07-25T03:18:38.010000"],["2024-07-25T03:18:39.010000"],["2024-07-25T03:18:40.010000"],["2024-07-25T03:18:41.010000"],["2024-07-25T03:18:42.010000"],["2024-07-25T03:18:43.010000"],["2024-07-25T03:18:44.010000"],["2024-07-25T03:18:45.010000"],["2024-07-25T03:18:46.010000"],["2024-07-25T03:18:47.010000"],["2024-07-25T03:18:48.010000"],["2024-07-25T03:18:49.010000"],["2024-07-25T03:18:50.010000"],["2024-07-25T03:18:51.010000"],["2024-07-25T03:18:52.010000"],["2024-07-25T03:18:53.010000"],["2024-07-25T03:18:54.010000"],["2024-07-25T03:18:55.010000"],["2024-07-25T03:18:56.010000"],["2024-07-25T03:18:57.010000"],["2024-07-25T03:18:58.010000"],["2024-07-25T03:18:59.010000"],["2024-07-25T03:19:00.010000"],["2024-07-25T03:19:01.010000"],["2024-07-25T03:19:02.010000"],["2024-07-25T03:19:03.010000"],["2024-07-25T03:19:04.010000"],["2024-07-25T03:19:05.010000"],["2024-07-25T03:19:06.010000"],["2024-07-25T03:19:07.010000"],["2024-07-25T03:19:08.010000"],["2024-07-25T03:19:09.010000"],["2024-07-25T03:19:10.010000"],["2024-07-25T03:19:11.010000"],["2024-07-25T03:19:12.010000"],["2024-07-25T03:19:13.010000"],["2024-07-25T03:19:14.010000"],["2024-07-25T03:19:15.010000"],["2024-07-25T03:19:16.010000"],["2024-07-25T03:19:17.010000"],["2024-07-25T03:19:18.010000"],["2024-07-25T03:19:19.010000"],["2024-07-25T03:19:20.010000"],["2024-07-25T03:19:21.010000"],["2024-07-25T03:19:22.010000"],["2024-07-25T03:19:23.010000"],["2024-07-25T03:19:24.010000"],["2024-07-25T03:19:25.010000"],["2024-07-25T03:19:26.010000"],["2024-07-25T03:19:27.010000"],["2024-07-25T03:19:28.010000"],["2024-07-25T03:19:29.010000"],["2024-07-25T03:19:30.010000"],["2024-07-25T03:19:31.010000"],["2024-07-25T03:19:32.010000"],["2024-07-25T03:19:33.010000"],["2024-07-25T03:19:34.010000"],["2024-07-25T03:19:35.010000"],["2024-07-25T03:19:36.010000"],["2024-07-25T03:19:37.010000"],["2024-07-25T03:19:38.010000"],["2024-07-25T03:19:39.010000"],["2024-07-25T03:19:40.010000"],["2024-07-25T03:19:41.010000"],["2024-07-25T03:19:42.010000"],["2024-07-25T03:19:43.010000"],["2024-07-25T03:19:44.010000"],["2024-07-25T03:19:45.010000"],["2024-07-25T03:19:46.010000"],["2024-07-25T03:19:47.010000"],["2024-07-25T03:19:48.010000"],["2024-07-25T03:19:49.010000"],["2024-07-25T03:19:50.010000"],["2024-07-25T03:19:51.010000"],["2024-07-25T03:19:52.010000"],["2024-07-25T03:19:53.010000"],["2024-07-25T03:19:54.010000"],["2024-07-25T03:19:55.010000"],["2024-07-25T03:19:56.010000"],["2024-07-25T03:19:57.010000"],["2024-07-25T03:19:58.010000"],["2024-07-25T03:19:59.010000"],["2024-07-25T03:20:00.010000"],["2024-07-25T03:20:01.010000"],["2024-07-25T03:20:02.010000"],["2024-07-25T03:20:03.010000"],["2024-07-25T03:20:04.010000"],["2024-07-25T03:20:05.010000"],["2024-07-25T03:20:06.010000"],["2024-07-25T03:20:07.010000"],["2024-07-25T03:20:08.010000"],["2024-07-25T03:20:09.010000"],["2024-07-25T03:20:10.010000"],["2024-07-25T03:20:11.010000"],["2024-07-25T03:20:12.010000"],["2024-07-25T03:20:13.010000"],["2024-07-25T03:20:14.010000"],["2024-07-25T03:20:15.010000"],["2024-07-25T03:20:16.010000"],["2024-07-25T03:20:17.010000"],["2024-07-25T03:20:18.010000"],["2024-07-25T03:20:19.010000"],["2024-07-25T03:20:20.010000"],["2024-07-25T03:20:21.010000"],["2024-07-25T03:20:22.010000"],["2024-07-25T03:20:23.010000"],["2024-07-25T03:20:24.010000"],["2024-07-25T03:20:25.010000"],["2024-07-25T03:20:26.010000"],["2024-07-25T03:20:27.010000"],["2024-07-25T03:20:28.010000"],["2024-07-25T03:20:29.010000"],["2024-07-25T03:20:30.010000"],["2024-07-25T03:20:31.010000"],["2024-07-25T03:20:32.010000"],["2024-07-25T03:20:33.010000"],["2024-07-25T03:20:34.010000"],["2024-07-25T03:20:35.010000"],["2024-07-25T03:20:36.010000"],["2024-07-25T03:20:37.010000"],["2024-07-25T03:20:38.010000"],["2024-07-25T03:20:39.010000"],["2024-07-25T03:20:40.010000"],["2024-07-25T03:20:41.010000"],["2024-07-25T03:20:42.010000"],["2024-07-25T03:20:43.010000"],["2024-07-25T03:20:44.010000"],["2024-07-25T03:20:45.010000"],["2024-07-25T03:20:46.010000"],["2024-07-25T03:20:47.010000"],["2024-07-25T03:20:48.010000"],["2024-07-25T03:20:49.010000"],["2024-07-25T03:20:50.010000"],["2024-07-25T03:20:51.010000"],["2024-07-25T03:20:52.010000"],["2024-07-25T03:20:53.010000"],["2024-07-25T03:20:54.010000"],["2024-07-25T03:20:55.010000"],["2024-07-25T03:20:56.010000"],["2024-07-25T03:20:57.010000"],["2024-07-25T03:20:58.010000"],["2024-07-25T03:20:59.010000"],["2024-07-25T03:21:00.010000"],["2024-07-25T03:21:01.010000"],["2024-07-25T03:21:02.010000"],["2024-07-25T03:21:03.010000"],["2024-07-25T03:21:04.010000"],["2024-07-25T03:21:05.010000"],["2024-07-25T03:21:06.010000"],["2024-07-25T03:21:07.010000"],["2024-07-25T03:21:08.010000"],["2024-07-25T03:21:09.010000"],["2024-07-25T03:21:10.010000"],["2024-07-25T03:21:11.010000"],["2024-07-25T03:21:12.010000"],["2024-07-25T03:21:13.010000"],["2024-07-25T03:21:14.010000"],["2024-07-25T03:21:15.010000"],["2024-07-25T03:21:16.010000"],["2024-07-25T03:21:17.010000"],["2024-07-25T03:21:18.010000"],["2024-07-25T03:21:19.010000"],["2024-07-25T03:21:20.010000"],["2024-07-25T03:21:21.010000"],["2024-07-25T03:21:22.010000"],["2024-07-25T03:21:23.010000"],["2024-07-25T03:21:24.010000"],["2024-07-25T03:21:25.010000"],["2024-07-25T03:21:26.010000"],["2024-07-25T03:21:27.010000"],["2024-07-25T03:21:28.010000"],["2024-07-25T03:21:29.010000"],["2024-07-25T03:21:30.010000"],["2024-07-25T03:21:31.010000"],["2024-07-25T03:21:32.010000"],["2024-07-25T03:21:33.010000"],["2024-07-25T03:21:34.010000"],["2024-07-25T03:21:35.010000"],["2024-07-25T03:21:36.010000"],["2024-07-25T03:21:37.010000"],["2024-07-25T03:21:38.010000"],["2024-07-25T03:21:39.010000"],["2024-07-25T03:21:40.010000"],["2024-07-25T03:21:41.010000"],["2024-07-25T03:21:42.010000"],["2024-07-25T03:21:43.010000"],["2024-07-25T03:21:44.010000"],["2024-07-25T03:21:45.010000"],["2024-07-25T03:21:46.010000"],["2024-07-25T03:21:47.010000"],["2024-07-25T03:21:48.010000"],["2024-07-25T03:21:49.010000"],["2024-07-25T03:21:50.010000"],["2024-07-25T03:21:51.010000"],["2024-07-25T03:21:52.010000"],["2024-07-25T03:21:53.010000"],["2024-07-25T03:21:54.010000"],["2024-07-25T03:21:55.010000"],["2024-07-25T03:21:56.010000"],["2024-07-25T03:21:57.010000"],["2024-07-25T03:21:58.010000"],["2024-07-25T03:21:59.010000"],["2024-07-25T03:22:00.010000"],["2024-07-25T03:22:01.010000"],["2024-07-25T03:22:02.010000"],["2024-07-25T03:22:03.010000"],["2024-07-25T03:22:04.010000"],["2024-07-25T03:22:05.010000"],["2024-07-25T03:22:06.010000"],["2024-07-25T03:22:07.010000"],["2024-07-25T03:22:08.010000"],["2024-07-25T03:22:09.010000"],["2024-07-25T03:22:10.010000"],["2024-07-25T03:22:11.010000"],["2024-07-25T03:22:12.010000"],["2024-07-25T03:22:13.010000"],["2024-07-25T03:22:14.010000"],["2024-07-25T03:22:15.010000"],["2024-07-25T03:22:16.010000"],["2024-07-25T03:22:17.010000"],["2024-07-25T03:22:18.010000"],["2024-07-25T03:22:19.010000"],["2024-07-25T03:22:20.010000"],["2024-07-25T03:22:21.010000"],["2024-07-25T03:22:22.010000"],["2024-07-25T03:22:23.010000"],["2024-07-25T03:22:24.010000"],["2024-07-25T03:22:25.010000"],["2024-07-25T03:22:26.010000"],["2024-07-25T03:22:27.010000"],["2024-07-25T03:22:28.010000"],["2024-07-25T03:22:29.010000"],["2024-07-25T03:22:30.010000"],["2024-07-25T03:22:31.010000"],["2024-07-25T03:22:32.010000"],["2024-07-25T03:22:33.010000"],["2024-07-25T03:22:34.010000"],["2024-07-25T03:22:35.010000"],["2024-07-25T03:22:36.010000"],["2024-07-25T03:22:37.010000"],["2024-07-25T03:22:38.010000"],["2024-07-25T03:22:39.010000"],["2024-07-25T03:22:40.010000"],["2024-07-25T03:22:41.010000"],["2024-07-25T03:22:42.010000"],["2024-07-25T03:22:43.010000"],["2024-07-25T03:22:44.010000"],["2024-07-25T03:22:45.010000"],["2024-07-25T03:22:46.010000"],["2024-07-25T03:22:47.010000"],["2024-07-25T03:22:48.010000"],["2024-07-25T03:22:49.010000"],["2024-07-25T03:22:50.010000"],["2024-07-25T03:22:51.010000"],["2024-07-25T03:22:52.010000"],["2024-07-25T03:22:53.010000"],["2024-07-25T03:22:54.010000"],["2024-07-25T03:22:55.010000"],["2024-07-25T03:22:56.010000"],["2024-07-25T03:22:57.010000"],["2024-07-25T03:22:58.010000"],["2024-07-25T03:22:59.010000"],["2024-07-25T03:23:00.010000"],["2024-07-25T03:23:01.010000"],["2024-07-25T03:23:02.010000"],["2024-07-25T03:23:03.010000"],["2024-07-25T03:23:04.010000"],["2024-07-25T03:23:05.010000"],["2024-07-25T03:23:06.010000"],["2024-07-25T03:23:07.010000"],["2024-07-25T03:23:08.010000"],["2024-07-25T03:23:09.010000"],["2024-07-25T03:23:10.010000"],["2024-07-25T03:23:11.010000"],["2024-07-25T03:23:12.010000"],["2024-07-25T03:23:13.010000"],["2024-07-25T03:23:14.010000"],["2024-07-25T03:23:15.010000"],["2024-07-25T03:23:16.010000"],["2024-07-25T03:23:17.010000"],["2024-07-25T03:23:18.010000"],["2024-07-25T03:23:19.010000"],["2024-07-25T03:23:20.010000"],["2024-07-25T03:23:21.010000"],["2024-07-25T03:23:22.010000"],["2024-07-25T03:23:23.010000"],["2024-07-25T03:23:24.010000"],["2024-07-25T03:23:25.010000"],["2024-07-25T03:23:26.010000"],["2024-07-25T03:23:27.010000"],["2024-07-25T03:23:28.010000"],["2024-07-25T03:23:29.010000"],["2024-07-25T03:23:30.010000"],["2024-07-25T03:23:31.010000"],["2024-07-25T03:23:32.010000"],["2024-07-25T03:23:33.010000"],["2024-07-25T03:23:34.010000"],["2024-07-25T03:23:35.010000"],["2024-07-25T03:23:36.010000"],["2024-07-25T03:23:37.010000"],["2024-07-25T03:23:38.010000"],["2024-07-25T03:23:39.010000"],["2024-07-25T03:23:40.010000"],["2024-07-25T03:23:41.010000"],["2024-07-25T03:23:42.010000"],["2024-07-25T03:23:43.010000"],["2024-07-25T03:23:44.010000"],["2024-07-25T03:23:45.010000"],["2024-07-25T03:23:46.010000"],["2024-07-25T03:23:47.010000"],["2024-07-25T03:23:48.010000"],["2024-07-25T03:23:49.010000"],["2024-07-25T03:23:50.010000"],["2024-07-25T03:23:51.010000"],["2024-07-25T03:23:52.010000"],["2024-07-25T03:23:53.010000"],["2024-07-25T03:23:54.010000"],["2024-07-25T03:23:55.010000"],["2024-07-25T03:23:56.010000"],["2024-07-25T03:23:57.010000"],["2024-07-25T03:23:58.010000"],["2024-07-25T03:23:59.010000"],["2024-07-25T03:24:00.010000"],["2024-07-25T03:24:01.010000"],["2024-07-25T03:24:02.010000"],["2024-07-25T03:24:03.010000"],["2024-07-25T03:24:04.010000"],["2024-07-25T03:24:05.010000"],["2024-07-25T03:24:06.010000"],["2024-07-25T03:24:07.010000"],["2024-07-25T03:24:08.010000"],["2024-07-25T03:24:09.010000"],["2024-07-25T03:24:10.010000"],["2024-07-25T03:24:11.010000"],["2024-07-25T03:24:12.010000"],["2024-07-25T03:24:13.010000"],["2024-07-25T03:24:14.010000"],["2024-07-25T03:24:15.010000"],["2024-07-25T03:24:16.010000"],["2024-07-25T03:24:17.010000"],["2024-07-25T03:24:18.010000"],["2024-07-25T03:24:19.010000"],["2024-07-25T03:24:20.010000"],["2024-07-25T03:24:21.010000"],["2024-07-25T03:24:22.010000"],["2024-07-25T03:24:23.010000"],["2024-07-25T03:24:24.010000"],["2024-07-25T03:24:25.010000"],["2024-07-25T03:24:26.010000"],["2024-07-25T03:24:27.010000"],["2024-07-25T03:24:28.010000"],["2024-07-25T03:24:29.010000"],["2024-07-25T03:24:30.010000"],["2024-07-25T03:24:31.010000"],["2024-07-25T03:24:32.010000"],["2024-07-25T03:24:33.010000"],["2024-07-25T03:24:34.010000"],["2024-07-25T03:24:35.010000"],["2024-07-25T03:24:36.010000"],["2024-07-25T03:24:37.010000"],["2024-07-25T03:24:38.010000"],["2024-07-25T03:24:39.010000"],["2024-07-25T03:24:40.010000"],["2024-07-25T03:24:41.010000"],["2024-07-25T03:24:42.010000"],["2024-07-25T03:24:43.010000"],["2024-07-25T03:24:44.010000"],["2024-07-25T03:24:45.010000"],["2024-07-25T03:24:46.010000"],["2024-07-25T03:24:47.010000"],["2024-07-25T03:24:48.010000"],["2024-07-25T03:24:49.010000"],["2024-07-25T03:24:50.010000"],["2024-07-25T03:24:51.010000"],["2024-07-25T03:24:52.010000"],["2024-07-25T03:24:53.010000"],["2024-07-25T03:24:54.010000"],["2024-07-25T03:24:55.010000"],["2024-07-25T03:24:56.010000"],["2024-07-25T03:24:57.010000"],["2024-07-25T03:24:58.010000"],["2024-07-25T03:24:59.010000"],["2024-07-25T03:25:00.010000"],["2024-07-25T03:25:01.010000"],["2024-07-25T03:25:02.010000"],["2024-07-25T03:25:03.010000"],["2024-07-25T03:25:04.010000"],["2024-07-25T03:25:05.010000"],["2024-07-25T03:25:06.010000"],["2024-07-25T03:25:07.010000"],["2024-07-25T03:25:08.010000"],["2024-07-25T03:25:09.010000"],["2024-07-25T03:25:10.010000"],["2024-07-25T03:25:11.010000"],["2024-07-25T03:25:12.010000"],["2024-07-25T03:25:13.010000"],["2024-07-25T03:25:14.010000"],["2024-07-25T03:25:15.010000"],["2024-07-25T03:25:16.010000"],["2024-07-25T03:25:17.010000"],["2024-07-25T03:25:18.010000"],["2024-07-25T03:25:19.010000"],["2024-07-25T03:25:20.010000"],["2024-07-25T03:25:21.010000"],["2024-07-25T03:25:22.010000"],["2024-07-25T03:25:23.010000"],["2024-07-25T03:25:24.010000"],["2024-07-25T03:25:25.010000"],["2024-07-25T03:25:26.010000"],["2024-07-25T03:25:27.010000"],["2024-07-25T03:25:28.010000"],["2024-07-25T03:25:29.010000"],["2024-07-25T03:25:30.010000"],["2024-07-25T03:25:31.010000"],["2024-07-25T03:25:32.010000"],["2024-07-25T03:25:33.010000"],["2024-07-25T03:25:34.010000"],["2024-07-25T03:25:35.010000"],["2024-07-25T03:25:36.010000"],["2024-07-25T03:25:37.010000"],["2024-07-25T03:25:38.010000"],["2024-07-25T03:25:39.010000"],["2024-07-25T03:25:40.010000"],["2024-07-25T03:25:41.010000"],["2024-07-25T03:25:42.010000"],["2024-07-25T03:25:43.010000"],["2024-07-25T03:25:44.010000"],["2024-07-25T03:25:45.010000"],["2024-07-25T03:25:46.010000"],["2024-07-25T03:25:47.010000"],["2024-07-25T03:25:48.010000"],["2024-07-25T03:25:49.010000"],["2024-07-25T03:25:50.010000"],["2024-07-25T03:25:51.010000"],["2024-07-25T03:25:52.010000"],["2024-07-25T03:25:53.010000"],["2024-07-25T03:25:54.010000"],["2024-07-25T03:25:55.010000"],["2024-07-25T03:25:56.010000"],["2024-07-25T03:25:57.010000"],["2024-07-25T03:25:58.010000"],["2024-07-25T03:25:59.010000"],["2024-07-25T03:26:00.010000"],["2024-07-25T03:26:01.010000"],["2024-07-25T03:26:02.010000"],["2024-07-25T03:26:03.010000"],["2024-07-25T03:26:04.010000"],["2024-07-25T03:26:05.010000"],["2024-07-25T03:26:06.010000"],["2024-07-25T03:26:07.010000"],["2024-07-25T03:26:08.010000"],["2024-07-25T03:26:09.010000"],["2024-07-25T03:26:10.010000"],["2024-07-25T03:26:11.010000"],["2024-07-25T03:26:12.010000"],["2024-07-25T03:26:13.010000"],["2024-07-25T03:26:14.010000"],["2024-07-25T03:26:15.010000"],["2024-07-25T03:26:16.010000"],["2024-07-25T03:26:17.010000"],["2024-07-25T03:26:18.010000"],["2024-07-25T03:26:19.010000"],["2024-07-25T03:26:20.010000"],["2024-07-25T03:26:21.010000"],["2024-07-25T03:26:22.010000"],["2024-07-25T03:26:23.010000"],["2024-07-25T03:26:24.010000"],["2024-07-25T03:26:25.010000"],["2024-07-25T03:26:26.010000"],["2024-07-25T03:26:27.010000"],["2024-07-25T03:26:28.010000"],["2024-07-25T03:26:29.010000"],["2024-07-25T03:26:30.010000"],["2024-07-25T03:26:31.010000"],["2024-07-25T03:26:32.010000"],["2024-07-25T03:26:33.010000"],["2024-07-25T03:26:34.010000"],["2024-07-25T03:26:35.010000"],["2024-07-25T03:26:36.010000"],["2024-07-25T03:26:37.010000"],["2024-07-25T03:26:38.010000"],["2024-07-25T03:26:39.010000"],["2024-07-25T03:26:40.010000"],["2024-07-25T03:26:41.010000"],["2024-07-25T03:26:42.010000"],["2024-07-25T03:26:43.010000"],["2024-07-25T03:26:44.010000"],["2024-07-25T03:26:45.010000"],["2024-07-25T03:26:46.010000"],["2024-07-25T03:26:47.010000"],["2024-07-25T03:26:48.010000"],["2024-07-25T03:26:49.010000"],["2024-07-25T03:26:50.010000"],["2024-07-25T03:26:51.010000"],["2024-07-25T03:26:52.010000"],["2024-07-25T03:26:53.010000"],["2024-07-25T03:26:54.010000"],["2024-07-25T03:26:55.010000"],["2024-07-25T03:26:56.010000"],["2024-07-25T03:26:57.010000"],["2024-07-25T03:26:58.010000"],["2024-07-25T03:26:59.010000"],["2024-07-25T03:27:00.010000"],["2024-07-25T03:27:01.010000"],["2024-07-25T03:27:02.010000"],["2024-07-25T03:27:03.010000"],["2024-07-25T03:27:04.010000"],["2024-07-25T03:27:05.010000"],["2024-07-25T03:27:06.010000"],["2024-07-25T03:27:07.010000"],["2024-07-25T03:27:08.010000"],["2024-07-25T03:27:09.010000"],["2024-07-25T03:27:10.010000"],["2024-07-25T03:27:11.010000"],["2024-07-25T03:27:12.010000"],["2024-07-25T03:27:13.010000"],["2024-07-25T03:27:14.010000"],["2024-07-25T03:27:15.010000"],["2024-07-25T03:27:16.010000"],["2024-07-25T03:27:17.010000"],["2024-07-25T03:27:18.010000"],["2024-07-25T03:27:19.010000"],["2024-07-25T03:27:20.010000"],["2024-07-25T03:27:21.010000"],["2024-07-25T03:27:22.010000"],["2024-07-25T03:27:23.010000"],["2024-07-25T03:27:24.010000"],["2024-07-25T03:27:25.010000"],["2024-07-25T03:27:26.010000"],["2024-07-25T03:27:27.010000"],["2024-07-25T03:27:28.010000"],["2024-07-25T03:27:29.010000"],["2024-07-25T03:27:30.010000"],["2024-07-25T03:27:31.010000"],["2024-07-25T03:27:32.010000"],["2024-07-25T03:27:33.010000"],["2024-07-25T03:27:34.010000"],["2024-07-25T03:27:35.010000"],["2024-07-25T03:27:36.010000"],["2024-07-25T03:27:37.010000"],["2024-07-25T03:27:38.010000"],["2024-07-25T03:27:39.010000"],["2024-07-25T03:27:40.010000"],["2024-07-25T03:27:41.010000"],["2024-07-25T03:27:42.010000"],["2024-07-25T03:27:43.010000"],["2024-07-25T03:27:44.010000"],["2024-07-25T03:27:45.010000"],["2024-07-25T03:27:46.010000"],["2024-07-25T03:27:47.010000"],["2024-07-25T03:27:48.010000"],["2024-07-25T03:27:49.010000"],["2024-07-25T03:27:50.010000"],["2024-07-25T03:27:51.010000"],["2024-07-25T03:27:52.010000"],["2024-07-25T03:27:53.010000"],["2024-07-25T03:27:54.010000"],["2024-07-25T03:27:55.010000"],["2024-07-25T03:27:56.010000"],["2024-07-25T03:27:57.010000"],["2024-07-25T03:27:58.010000"],["2024-07-25T03:27:59.010000"],["2024-07-25T03:28:00.010000"],["2024-07-25T03:28:01.010000"],["2024-07-25T03:28:02.010000"],["2024-07-25T03:28:03.010000"],["2024-07-25T03:28:04.010000"],["2024-07-25T03:28:05.010000"],["2024-07-25T03:28:06.010000"],["2024-07-25T03:28:07.010000"],["2024-07-25T03:28:08.010000"],["2024-07-25T03:28:09.010000"],["2024-07-25T03:28:10.010000"],["2024-07-25T03:28:11.010000"],["2024-07-25T03:28:12.010000"],["2024-07-25T03:28:13.010000"],["2024-07-25T03:28:14.010000"],["2024-07-25T03:28:15.010000"],["2024-07-25T03:28:16.010000"],["2024-07-25T03:28:17.010000"],["2024-07-25T03:28:18.010000"],["2024-07-25T03:28:19.010000"],["2024-07-25T03:28:20.010000"],["2024-07-25T03:28:21.010000"],["2024-07-25T03:28:22.010000"],["2024-07-25T03:28:23.010000"],["2024-07-25T03:28:24.010000"],["2024-07-25T03:28:25.010000"],["2024-07-25T03:28:26.010000"],["2024-07-25T03:28:27.010000"],["2024-07-25T03:28:28.010000"],["2024-07-25T03:28:29.010000"],["2024-07-25T03:28:30.010000"],["2024-07-25T03:28:31.010000"],["2024-07-25T03:28:32.010000"],["2024-07-25T03:28:33.010000"],["2024-07-25T03:28:34.010000"],["2024-07-25T03:28:35.010000"],["2024-07-25T03:28:36.010000"],["2024-07-25T03:28:37.010000"],["2024-07-25T03:28:38.010000"],["2024-07-25T03:28:39.010000"],["2024-07-25T03:28:40.010000"],["2024-07-25T03:28:41.010000"],["2024-07-25T03:28:42.010000"],["2024-07-25T03:28:43.010000"],["2024-07-25T03:28:44.010000"],["2024-07-25T03:28:45.010000"],["2024-07-25T03:28:46.010000"],["2024-07-25T03:28:47.010000"],["2024-07-25T03:28:48.010000"],["2024-07-25T03:28:49.010000"],["2024-07-25T03:28:50.010000"],["2024-07-25T03:28:51.010000"],["2024-07-25T03:28:52.010000"],["2024-07-25T03:28:53.010000"],["2024-07-25T03:28:54.010000"],["2024-07-25T03:28:55.010000"],["2024-07-25T03:28:56.010000"],["2024-07-25T03:28:57.010000"],["2024-07-25T03:28:58.010000"],["2024-07-25T03:28:59.010000"],["2024-07-25T03:29:00.010000"],["2024-07-25T03:29:01.010000"],["2024-07-25T03:29:02.010000"],["2024-07-25T03:29:03.010000"],["2024-07-25T03:29:04.010000"],["2024-07-25T03:29:05.010000"],["2024-07-25T03:29:06.010000"],["2024-07-25T03:29:07.010000"],["2024-07-25T03:29:08.010000"],["2024-07-25T03:29:09.010000"],["2024-07-25T03:29:10.010000"],["2024-07-25T03:29:11.010000"],["2024-07-25T03:29:12.010000"],["2024-07-25T03:29:13.010000"],["2024-07-25T03:29:14.010000"],["2024-07-25T03:29:15.010000"],["2024-07-25T03:29:16.010000"],["2024-07-25T03:29:17.010000"],["2024-07-25T03:29:18.010000"],["2024-07-25T03:29:19.010000"],["2024-07-25T03:29:20.010000"],["2024-07-25T03:29:21.010000"],["2024-07-25T03:29:22.010000"],["2024-07-25T03:29:23.010000"],["2024-07-25T03:29:24.010000"],["2024-07-25T03:29:25.010000"],["2024-07-25T03:29:26.010000"],["2024-07-25T03:29:27.010000"],["2024-07-25T03:29:28.010000"],["2024-07-25T03:29:29.010000"],["2024-07-25T03:29:30.010000"],["2024-07-25T03:29:31.010000"],["2024-07-25T03:29:32.010000"],["2024-07-25T03:29:33.010000"],["2024-07-25T03:29:34.010000"],["2024-07-25T03:29:35.010000"],["2024-07-25T03:29:36.010000"],["2024-07-25T03:29:37.010000"],["2024-07-25T03:29:38.010000"],["2024-07-25T03:29:39.010000"],["2024-07-25T03:29:40.010000"],["2024-07-25T03:29:41.010000"],["2024-07-25T03:29:42.010000"],["2024-07-25T03:29:43.010000"],["2024-07-25T03:29:44.010000"],["2024-07-25T03:29:45.010000"],["2024-07-25T03:29:46.010000"],["2024-07-25T03:29:47.010000"],["2024-07-25T03:29:48.010000"],["2024-07-25T03:29:49.010000"],["2024-07-25T03:29:50.010000"],["2024-07-25T03:29:51.010000"],["2024-07-25T03:29:52.010000"],["2024-07-25T03:29:53.010000"],["2024-07-25T03:29:54.010000"],["2024-07-25T03:29:55.010000"],["2024-07-25T03:29:56.010000"],["2024-07-25T03:29:57.010000"],["2024-07-25T03:29:58.010000"],["2024-07-25T03:29:59.010000"],["2024-07-25T03:30:00.010000"],["2024-07-25T03:30:01.010000"],["2024-07-25T03:30:02.010000"],["2024-07-25T03:30:03.010000"],["2024-07-25T03:30:04.010000"],["2024-07-25T03:30:05.010000"],["2024-07-25T03:30:06.010000"],["2024-07-25T03:30:07.010000"],["2024-07-25T03:30:08.010000"],["2024-07-25T03:30:09.010000"],["2024-07-25T03:30:10.010000"],["2024-07-25T03:30:11.010000"],["2024-07-25T03:30:12.010000"],["2024-07-25T03:30:13.010000"],["2024-07-25T03:30:14.010000"],["2024-07-25T03:30:15.010000"],["2024-07-25T03:30:16.010000"],["2024-07-25T03:30:17.010000"],["2024-07-25T03:30:18.010000"],["2024-07-25T03:30:19.010000"],["2024-07-25T03:30:20.010000"],["2024-07-25T03:30:21.010000"],["2024-07-25T03:30:22.010000"],["2024-07-25T03:30:23.010000"],["2024-07-25T03:30:24.010000"],["2024-07-25T03:30:25.010000"],["2024-07-25T03:30:26.010000"],["2024-07-25T03:30:27.010000"],["2024-07-25T03:30:28.010000"],["2024-07-25T03:30:29.010000"],["2024-07-25T03:30:30.010000"],["2024-07-25T03:30:31.010000"],["2024-07-25T03:30:32.010000"],["2024-07-25T03:30:33.010000"],["2024-07-25T03:30:34.010000"],["2024-07-25T03:30:35.010000"],["2024-07-25T03:30:36.010000"],["2024-07-25T03:30:37.010000"],["2024-07-25T03:30:38.010000"],["2024-07-25T03:30:39.010000"],["2024-07-25T03:30:40.010000"],["2024-07-25T03:30:41.010000"],["2024-07-25T03:30:42.010000"],["2024-07-25T03:30:43.010000"],["2024-07-25T03:30:44.010000"],["2024-07-25T03:30:45.010000"],["2024-07-25T03:30:46.010000"],["2024-07-25T03:30:47.010000"],["2024-07-25T03:30:48.010000"],["2024-07-25T03:30:49.010000"],["2024-07-25T03:30:50.010000"],["2024-07-25T03:30:51.010000"],["2024-07-25T03:30:52.010000"],["2024-07-25T03:30:53.010000"],["2024-07-25T03:30:54.010000"],["2024-07-25T03:30:55.010000"],["2024-07-25T03:30:56.010000"],["2024-07-25T03:30:57.010000"],["2024-07-25T03:30:58.010000"],["2024-07-25T03:30:59.010000"],["2024-07-25T03:31:00.010000"],["2024-07-25T03:31:01.010000"],["2024-07-25T03:31:02.010000"],["2024-07-25T03:31:03.010000"],["2024-07-25T03:31:04.010000"],["2024-07-25T03:31:05.010000"],["2024-07-25T03:31:06.010000"],["2024-07-25T03:31:07.010000"],["2024-07-25T03:31:08.010000"],["2024-07-25T03:31:09.010000"],["2024-07-25T03:31:10.010000"],["2024-07-25T03:31:11.010000"],["2024-07-25T03:31:12.010000"],["2024-07-25T03:31:13.010000"],["2024-07-25T03:31:14.010000"],["2024-07-25T03:31:15.010000"],["2024-07-25T03:31:16.010000"],["2024-07-25T03:31:17.010000"],["2024-07-25T03:31:18.010000"],["2024-07-25T03:31:19.010000"],["2024-07-25T03:31:20.010000"],["2024-07-25T03:31:21.010000"],["2024-07-25T03:31:22.010000"],["2024-07-25T03:31:23.010000"],["2024-07-25T03:31:24.010000"],["2024-07-25T03:31:25.010000"],["2024-07-25T03:31:26.010000"],["2024-07-25T03:31:27.010000"],["2024-07-25T03:31:28.010000"],["2024-07-25T03:31:29.010000"],["2024-07-25T03:31:30.010000"],["2024-07-25T03:31:31.010000"],["2024-07-25T03:31:32.010000"],["2024-07-25T03:31:33.010000"],["2024-07-25T03:31:34.010000"],["2024-07-25T03:31:35.010000"],["2024-07-25T03:31:36.010000"],["2024-07-25T03:31:37.010000"],["2024-07-25T03:31:38.010000"],["2024-07-25T03:31:39.010000"],["2024-07-25T03:31:40.010000"],["2024-07-25T03:31:41.010000"],["2024-07-25T03:31:42.010000"],["2024-07-25T03:31:43.010000"],["2024-07-25T03:31:44.010000"],["2024-07-25T03:31:45.010000"],["2024-07-25T03:31:46.010000"],["2024-07-25T03:31:47.010000"],["2024-07-25T03:31:48.010000"],["2024-07-25T03:31:49.010000"],["2024-07-25T03:31:50.010000"],["2024-07-25T03:31:51.010000"],["2024-07-25T03:31:52.010000"],["2024-07-25T03:31:53.010000"],["2024-07-25T03:31:54.010000"],["2024-07-25T03:31:55.010000"],["2024-07-25T03:31:56.010000"],["2024-07-25T03:31:57.010000"],["2024-07-25T03:31:58.010000"],["2024-07-25T03:31:59.010000"],["2024-07-25T03:32:00.010000"],["2024-07-25T03:32:01.010000"],["2024-07-25T03:32:02.010000"],["2024-07-25T03:32:03.010000"],["2024-07-25T03:32:04.010000"],["2024-07-25T03:32:05.010000"],["2024-07-25T03:32:06.010000"],["2024-07-25T03:32:07.010000"],["2024-07-25T03:32:08.010000"],["2024-07-25T03:32:09.010000"],["2024-07-25T03:32:10.010000"],["2024-07-25T03:32:11.010000"],["2024-07-25T03:32:12.010000"],["2024-07-25T03:32:13.010000"],["2024-07-25T03:32:14.010000"],["2024-07-25T03:32:15.010000"],["2024-07-25T03:32:16.010000"],["2024-07-25T03:32:17.010000"],["2024-07-25T03:32:18.010000"],["2024-07-25T03:32:19.010000"],["2024-07-25T03:32:20.010000"],["2024-07-25T03:32:21.010000"],["2024-07-25T03:32:22.010000"],["2024-07-25T03:32:23.010000"],["2024-07-25T03:32:24.010000"],["2024-07-25T03:32:25.010000"],["2024-07-25T03:32:26.010000"],["2024-07-25T03:32:27.010000"],["2024-07-25T03:32:28.010000"],["2024-07-25T03:32:29.010000"],["2024-07-25T03:32:30.010000"],["2024-07-25T03:32:31.010000"],["2024-07-25T03:32:32.010000"],["2024-07-25T03:32:33.010000"],["2024-07-25T03:32:34.010000"],["2024-07-25T03:32:35.010000"],["2024-07-25T03:32:36.010000"],["2024-07-25T03:32:37.010000"],["2024-07-25T03:32:38.010000"],["2024-07-25T03:32:39.010000"],["2024-07-25T03:32:40.010000"],["2024-07-25T03:32:41.010000"],["2024-07-25T03:32:42.010000"],["2024-07-25T03:32:43.010000"],["2024-07-25T03:32:44.010000"],["2024-07-25T03:32:45.010000"],["2024-07-25T03:32:46.010000"],["2024-07-25T03:32:47.010000"],["2024-07-25T03:32:48.010000"],["2024-07-25T03:32:49.010000"],["2024-07-25T03:32:50.010000"],["2024-07-25T03:32:51.010000"],["2024-07-25T03:32:52.010000"],["2024-07-25T03:32:53.010000"],["2024-07-25T03:32:54.010000"],["2024-07-25T03:32:55.010000"],["2024-07-25T03:32:56.010000"],["2024-07-25T03:32:57.010000"],["2024-07-25T03:32:58.010000"],["2024-07-25T03:32:59.010000"],["2024-07-25T03:33:00.010000"],["2024-07-25T03:33:01.010000"],["2024-07-25T03:33:02.010000"],["2024-07-25T03:33:03.010000"],["2024-07-25T03:33:04.010000"],["2024-07-25T03:33:05.010000"],["2024-07-25T03:33:06.010000"],["2024-07-25T03:33:07.010000"],["2024-07-25T03:33:08.010000"],["2024-07-25T03:33:09.010000"],["2024-07-25T03:33:10.010000"],["2024-07-25T03:33:11.010000"],["2024-07-25T03:33:12.010000"],["2024-07-25T03:33:13.010000"],["2024-07-25T03:33:14.010000"],["2024-07-25T03:33:15.010000"],["2024-07-25T03:33:16.010000"],["2024-07-25T03:33:17.010000"],["2024-07-25T03:33:18.010000"],["2024-07-25T03:33:19.010000"],["2024-07-25T03:33:20.010000"],["2024-07-25T03:33:21.010000"],["2024-07-25T03:33:22.010000"],["2024-07-25T03:33:23.010000"],["2024-07-25T03:33:24.010000"],["2024-07-25T03:33:25.010000"],["2024-07-25T03:33:26.010000"],["2024-07-25T03:33:27.010000"],["2024-07-25T03:33:28.010000"],["2024-07-25T03:33:29.010000"],["2024-07-25T03:33:30.010000"],["2024-07-25T03:33:31.010000"],["2024-07-25T03:33:32.010000"],["2024-07-25T03:33:33.010000"],["2024-07-25T03:33:34.010000"],["2024-07-25T03:33:35.010000"],["2024-07-25T03:33:36.010000"],["2024-07-25T03:33:37.010000"],["2024-07-25T03:33:38.010000"],["2024-07-25T03:33:39.010000"],["2024-07-25T03:33:40.010000"],["2024-07-25T03:33:41.010000"],["2024-07-25T03:33:42.010000"],["2024-07-25T03:33:43.010000"],["2024-07-25T03:33:44.010000"],["2024-07-25T03:33:45.010000"],["2024-07-25T03:33:46.010000"],["2024-07-25T03:33:47.010000"],["2024-07-25T03:33:48.010000"],["2024-07-25T03:33:49.010000"],["2024-07-25T03:33:50.010000"],["2024-07-25T03:33:51.010000"],["2024-07-25T03:33:52.010000"],["2024-07-25T03:33:53.010000"],["2024-07-25T03:33:54.010000"],["2024-07-25T03:33:55.010000"],["2024-07-25T03:33:56.010000"],["2024-07-25T03:33:57.010000"],["2024-07-25T03:33:58.010000"],["2024-07-25T03:33:59.010000"],["2024-07-25T03:34:00.010000"],["2024-07-25T03:34:01.010000"],["2024-07-25T03:34:02.010000"],["2024-07-25T03:34:03.010000"],["2024-07-25T03:34:04.010000"],["2024-07-25T03:34:05.010000"],["2024-07-25T03:34:06.010000"],["2024-07-25T03:34:07.010000"],["2024-07-25T03:34:08.010000"],["2024-07-25T03:34:09.010000"],["2024-07-25T03:34:10.010000"],["2024-07-25T03:34:11.010000"],["2024-07-25T03:34:12.010000"],["2024-07-25T03:34:13.010000"],["2024-07-25T03:34:14.010000"],["2024-07-25T03:34:15.010000"],["2024-07-25T03:34:16.010000"],["2024-07-25T03:34:17.010000"],["2024-07-25T03:34:18.010000"],["2024-07-25T03:34:19.010000"],["2024-07-25T03:34:20.010000"],["2024-07-25T03:34:21.010000"],["2024-07-25T03:34:22.010000"],["2024-07-25T03:34:23.010000"],["2024-07-25T03:34:24.010000"],["2024-07-25T03:34:25.010000"],["2024-07-25T03:34:26.010000"],["2024-07-25T03:34:27.010000"],["2024-07-25T03:34:28.010000"],["2024-07-25T03:34:29.010000"],["2024-07-25T03:34:30.010000"],["2024-07-25T03:34:31.010000"],["2024-07-25T03:34:32.010000"],["2024-07-25T03:34:33.010000"],["2024-07-25T03:34:34.010000"],["2024-07-25T03:34:35.010000"],["2024-07-25T03:34:36.010000"],["2024-07-25T03:34:37.010000"],["2024-07-25T03:34:38.010000"],["2024-07-25T03:34:39.010000"],["2024-07-25T03:34:40.010000"],["2024-07-25T03:34:41.010000"],["2024-07-25T03:34:42.010000"],["2024-07-25T03:34:43.010000"],["2024-07-25T03:34:44.010000"],["2024-07-25T03:34:45.010000"],["2024-07-25T03:34:46.010000"],["2024-07-25T03:34:47.010000"],["2024-07-25T03:34:48.010000"],["2024-07-25T03:34:49.010000"],["2024-07-25T03:34:50.010000"],["2024-07-25T03:34:51.010000"],["2024-07-25T03:34:52.010000"],["2024-07-25T03:34:53.010000"],["2024-07-25T03:34:54.010000"],["2024-07-25T03:34:55.010000"],["2024-07-25T03:34:56.010000"],["2024-07-25T03:34:57.010000"],["2024-07-25T03:34:58.010000"],["2024-07-25T03:34:59.010000"],["2024-07-25T03:35:00.010000"],["2024-07-25T03:35:01.010000"],["2024-07-25T03:35:02.010000"],["2024-07-25T03:35:03.010000"],["2024-07-25T03:35:04.010000"],["2024-07-25T03:35:05.010000"],["2024-07-25T03:35:06.010000"],["2024-07-25T03:35:07.010000"],["2024-07-25T03:35:08.010000"],["2024-07-25T03:35:09.010000"],["2024-07-25T03:35:10.010000"],["2024-07-25T03:35:11.010000"],["2024-07-25T03:35:12.010000"],["2024-07-25T03:35:13.010000"],["2024-07-25T03:35:14.010000"],["2024-07-25T03:35:15.010000"],["2024-07-25T03:35:16.010000"],["2024-07-25T03:35:17.010000"],["2024-07-25T03:35:18.010000"],["2024-07-25T03:35:19.010000"],["2024-07-25T03:35:20.010000"],["2024-07-25T03:35:21.010000"],["2024-07-25T03:35:22.010000"],["2024-07-25T03:35:23.010000"],["2024-07-25T03:35:24.010000"],["2024-07-25T03:35:25.010000"],["2024-07-25T03:35:26.010000"],["2024-07-25T03:35:27.010000"],["2024-07-25T03:35:28.010000"],["2024-07-25T03:35:29.010000"],["2024-07-25T03:35:30.010000"],["2024-07-25T03:35:31.010000"],["2024-07-25T03:35:32.010000"],["2024-07-25T03:35:33.010000"],["2024-07-25T03:35:34.010000"],["2024-07-25T03:35:35.010000"],["2024-07-25T03:35:36.010000"],["2024-07-25T03:35:37.010000"],["2024-07-25T03:35:38.010000"],["2024-07-25T03:35:39.010000"],["2024-07-25T03:35:40.010000"],["2024-07-25T03:35:41.010000"],["2024-07-25T03:35:42.010000"],["2024-07-25T03:35:43.010000"],["2024-07-25T03:35:44.010000"],["2024-07-25T03:35:45.010000"],["2024-07-25T03:35:46.010000"],["2024-07-25T03:35:47.010000"],["2024-07-25T03:35:48.010000"],["2024-07-25T03:35:49.010000"],["2024-07-25T03:35:50.010000"],["2024-07-25T03:35:51.010000"],["2024-07-25T03:35:52.010000"],["2024-07-25T03:35:53.010000"],["2024-07-25T03:35:54.010000"],["2024-07-25T03:35:55.010000"],["2024-07-25T03:35:56.010000"],["2024-07-25T03:35:57.010000"],["2024-07-25T03:35:58.010000"],["2024-07-25T03:35:59.010000"],["2024-07-25T03:36:00.010000"],["2024-07-25T03:36:01.010000"],["2024-07-25T03:36:02.010000"],["2024-07-25T03:36:03.010000"],["2024-07-25T03:36:04.010000"],["2024-07-25T03:36:05.010000"],["2024-07-25T03:36:06.010000"],["2024-07-25T03:36:07.010000"],["2024-07-25T03:36:08.010000"],["2024-07-25T03:36:09.010000"],["2024-07-25T03:36:10.010000"],["2024-07-25T03:36:11.010000"],["2024-07-25T03:36:12.010000"],["2024-07-25T03:36:13.010000"],["2024-07-25T03:36:14.010000"],["2024-07-25T03:36:15.010000"],["2024-07-25T03:36:16.010000"],["2024-07-25T03:36:17.010000"],["2024-07-25T03:36:18.010000"],["2024-07-25T03:36:19.010000"],["2024-07-25T03:36:20.010000"],["2024-07-25T03:36:21.010000"],["2024-07-25T03:36:22.010000"],["2024-07-25T03:36:23.010000"],["2024-07-25T03:36:24.010000"],["2024-07-25T03:36:25.010000"],["2024-07-25T03:36:26.010000"],["2024-07-25T03:36:27.010000"],["2024-07-25T03:36:28.010000"],["2024-07-25T03:36:29.010000"],["2024-07-25T03:36:30.010000"],["2024-07-25T03:36:31.010000"],["2024-07-25T03:36:32.010000"],["2024-07-25T03:36:33.010000"],["2024-07-25T03:36:34.010000"],["2024-07-25T03:36:35.010000"],["2024-07-25T03:36:36.010000"],["2024-07-25T03:36:37.010000"],["2024-07-25T03:36:38.010000"],["2024-07-25T03:36:39.010000"],["2024-07-25T03:36:40.010000"],["2024-07-25T03:36:41.010000"],["2024-07-25T03:36:42.010000"],["2024-07-25T03:36:43.010000"],["2024-07-25T03:36:44.010000"],["2024-07-25T03:36:45.010000"],["2024-07-25T03:36:46.010000"],["2024-07-25T03:36:47.010000"],["2024-07-25T03:36:48.010000"],["2024-07-25T03:36:49.010000"],["2024-07-25T03:36:50.010000"],["2024-07-25T03:36:51.010000"],["2024-07-25T03:36:52.010000"],["2024-07-25T03:36:53.010000"],["2024-07-25T03:36:54.010000"],["2024-07-25T03:36:55.010000"],["2024-07-25T03:36:56.010000"],["2024-07-25T03:36:57.010000"],["2024-07-25T03:36:58.010000"],["2024-07-25T03:36:59.010000"],["2024-07-25T03:37:00.010000"],["2024-07-25T03:37:01.010000"],["2024-07-25T03:37:02.010000"],["2024-07-25T03:37:03.010000"],["2024-07-25T03:37:04.010000"],["2024-07-25T03:37:05.010000"],["2024-07-25T03:37:06.010000"],["2024-07-25T03:37:07.010000"],["2024-07-25T03:37:08.010000"],["2024-07-25T03:37:09.010000"],["2024-07-25T03:37:10.010000"],["2024-07-25T03:37:11.010000"],["2024-07-25T03:37:12.010000"],["2024-07-25T03:37:13.010000"],["2024-07-25T03:37:14.010000"],["2024-07-25T03:37:15.010000"],["2024-07-25T03:37:16.010000"],["2024-07-25T03:37:17.010000"],["2024-07-25T03:37:18.010000"],["2024-07-25T03:37:19.010000"],["2024-07-25T03:37:20.010000"],["2024-07-25T03:37:21.010000"],["2024-07-25T03:37:22.010000"],["2024-07-25T03:37:23.010000"],["2024-07-25T03:37:24.010000"],["2024-07-25T03:37:25.010000"],["2024-07-25T03:37:26.010000"],["2024-07-25T03:37:27.010000"],["2024-07-25T03:37:28.010000"],["2024-07-25T03:37:29.010000"],["2024-07-25T03:37:30.010000"],["2024-07-25T03:37:31.010000"],["2024-07-25T03:37:32.010000"],["2024-07-25T03:37:33.010000"],["2024-07-25T03:37:34.010000"],["2024-07-25T03:37:35.010000"],["2024-07-25T03:37:36.010000"],["2024-07-25T03:37:37.010000"],["2024-07-25T03:37:38.010000"],["2024-07-25T03:37:39.010000"],["2024-07-25T03:37:40.010000"],["2024-07-25T03:37:41.010000"],["2024-07-25T03:37:42.010000"],["2024-07-25T03:37:43.010000"],["2024-07-25T03:37:44.010000"],["2024-07-25T03:37:45.010000"],["2024-07-25T03:37:46.010000"],["2024-07-25T03:37:47.010000"],["2024-07-25T03:37:48.010000"],["2024-07-25T03:37:49.010000"],["2024-07-25T03:37:50.010000"],["2024-07-25T03:37:51.010000"],["2024-07-25T03:37:52.010000"],["2024-07-25T03:37:53.010000"],["2024-07-25T03:37:54.010000"],["2024-07-25T03:37:55.010000"],["2024-07-25T03:37:56.010000"],["2024-07-25T03:37:57.010000"],["2024-07-25T03:37:58.010000"],["2024-07-25T03:37:59.010000"],["2024-07-25T03:38:00.010000"],["2024-07-25T03:38:01.010000"],["2024-07-25T03:38:02.010000"],["2024-07-25T03:38:03.010000"],["2024-07-25T03:38:04.010000"],["2024-07-25T03:38:05.010000"],["2024-07-25T03:38:06.010000"],["2024-07-25T03:38:07.010000"],["2024-07-25T03:38:08.010000"],["2024-07-25T03:38:09.010000"],["2024-07-25T03:38:10.010000"],["2024-07-25T03:38:11.010000"],["2024-07-25T03:38:12.010000"],["2024-07-25T03:38:13.010000"],["2024-07-25T03:38:14.010000"],["2024-07-25T03:38:15.010000"],["2024-07-25T03:38:16.010000"],["2024-07-25T03:38:17.010000"],["2024-07-25T03:38:18.010000"],["2024-07-25T03:38:19.010000"],["2024-07-25T03:38:20.010000"],["2024-07-25T03:38:21.010000"],["2024-07-25T03:38:22.010000"],["2024-07-25T03:38:23.010000"],["2024-07-25T03:38:24.010000"],["2024-07-25T03:38:25.010000"],["2024-07-25T03:38:26.010000"],["2024-07-25T03:38:27.010000"],["2024-07-25T03:38:28.010000"],["2024-07-25T03:38:29.010000"],["2024-07-25T03:38:30.010000"],["2024-07-25T03:38:31.010000"],["2024-07-25T03:38:32.010000"],["2024-07-25T03:38:33.010000"],["2024-07-25T03:38:34.010000"],["2024-07-25T03:38:35.010000"],["2024-07-25T03:38:36.010000"],["2024-07-25T03:38:37.010000"],["2024-07-25T03:38:38.010000"],["2024-07-25T03:38:39.010000"],["2024-07-25T03:38:40.010000"],["2024-07-25T03:38:41.010000"],["2024-07-25T03:38:42.010000"],["2024-07-25T03:38:43.010000"],["2024-07-25T03:38:44.010000"],["2024-07-25T03:38:45.010000"],["2024-07-25T03:38:46.010000"],["2024-07-25T03:38:47.010000"],["2024-07-25T03:38:48.010000"],["2024-07-25T03:38:49.010000"],["2024-07-25T03:38:50.010000"],["2024-07-25T03:38:51.010000"],["2024-07-25T03:38:52.010000"],["2024-07-25T03:38:53.010000"],["2024-07-25T03:38:54.010000"],["2024-07-25T03:38:55.010000"],["2024-07-25T03:38:56.010000"],["2024-07-25T03:38:57.010000"],["2024-07-25T03:38:58.010000"],["2024-07-25T03:38:59.010000"],["2024-07-25T03:39:00.010000"],["2024-07-25T03:39:01.010000"],["2024-07-25T03:39:02.010000"],["2024-07-25T03:39:03.010000"],["2024-07-25T03:39:04.010000"],["2024-07-25T03:39:05.010000"],["2024-07-25T03:39:06.010000"],["2024-07-25T03:39:07.010000"],["2024-07-25T03:39:08.010000"],["2024-07-25T03:39:09.010000"],["2024-07-25T03:39:10.010000"],["2024-07-25T03:39:11.010000"],["2024-07-25T03:39:12.010000"],["2024-07-25T03:39:13.010000"],["2024-07-25T03:39:14.010000"],["2024-07-25T03:39:15.010000"],["2024-07-25T03:39:16.010000"],["2024-07-25T03:39:17.010000"],["2024-07-25T03:39:18.010000"],["2024-07-25T03:39:19.010000"],["2024-07-25T03:39:20.010000"],["2024-07-25T03:39:21.010000"],["2024-07-25T03:39:22.010000"],["2024-07-25T03:39:23.010000"],["2024-07-25T03:39:24.010000"],["2024-07-25T03:39:25.010000"],["2024-07-25T03:39:26.010000"],["2024-07-25T03:39:27.010000"],["2024-07-25T03:39:28.010000"],["2024-07-25T03:39:29.010000"],["2024-07-25T03:39:30.010000"],["2024-07-25T03:39:31.010000"],["2024-07-25T03:39:32.010000"],["2024-07-25T03:39:33.010000"],["2024-07-25T03:39:34.010000"],["2024-07-25T03:39:35.010000"],["2024-07-25T03:39:36.010000"],["2024-07-25T03:39:37.010000"],["2024-07-25T03:39:38.010000"],["2024-07-25T03:39:39.010000"],["2024-07-25T03:39:40.010000"],["2024-07-25T03:39:41.010000"],["2024-07-25T03:39:42.010000"],["2024-07-25T03:39:43.010000"],["2024-07-25T03:39:44.010000"],["2024-07-25T03:39:45.010000"],["2024-07-25T03:39:46.010000"],["2024-07-25T03:39:47.010000"],["2024-07-25T03:39:48.010000"],["2024-07-25T03:39:49.010000"],["2024-07-25T03:39:50.010000"],["2024-07-25T03:39:51.010000"],["2024-07-25T03:39:52.010000"],["2024-07-25T03:39:53.010000"],["2024-07-25T03:39:54.010000"],["2024-07-25T03:39:55.010000"],["2024-07-25T03:39:56.010000"],["2024-07-25T03:39:57.010000"],["2024-07-25T03:39:58.010000"],["2024-07-25T03:39:59.010000"],["2024-07-25T03:40:00.010000"],["2024-07-25T03:40:01.010000"],["2024-07-25T03:40:02.010000"],["2024-07-25T03:40:03.010000"],["2024-07-25T03:40:04.010000"],["2024-07-25T03:40:05.010000"],["2024-07-25T03:40:06.010000"],["2024-07-25T03:40:07.010000"],["2024-07-25T03:40:08.010000"],["2024-07-25T03:40:09.010000"],["2024-07-25T03:40:10.010000"],["2024-07-25T03:40:11.010000"],["2024-07-25T03:40:12.010000"],["2024-07-25T03:40:13.010000"],["2024-07-25T03:40:14.010000"],["2024-07-25T03:40:15.010000"],["2024-07-25T03:40:16.010000"],["2024-07-25T03:40:17.010000"],["2024-07-25T03:40:18.010000"],["2024-07-25T03:40:19.010000"],["2024-07-25T03:40:20.010000"],["2024-07-25T03:40:21.010000"],["2024-07-25T03:40:22.010000"],["2024-07-25T03:40:23.010000"],["2024-07-25T03:40:24.010000"],["2024-07-25T03:40:25.010000"],["2024-07-25T03:40:26.010000"],["2024-07-25T03:40:27.010000"],["2024-07-25T03:40:28.010000"],["2024-07-25T03:40:29.010000"],["2024-07-25T03:40:30.010000"],["2024-07-25T03:40:31.010000"],["2024-07-25T03:40:32.010000"],["2024-07-25T03:40:33.010000"],["2024-07-25T03:40:34.010000"],["2024-07-25T03:40:35.010000"],["2024-07-25T03:40:36.010000"],["2024-07-25T03:40:37.010000"],["2024-07-25T03:40:38.010000"],["2024-07-25T03:40:39.010000"],["2024-07-25T03:40:40.010000"],["2024-07-25T03:40:41.010000"],["2024-07-25T03:40:42.010000"],["2024-07-25T03:40:43.010000"],["2024-07-25T03:40:44.010000"],["2024-07-25T03:40:45.010000"],["2024-07-25T03:40:46.010000"],["2024-07-25T03:40:47.010000"],["2024-07-25T03:40:48.010000"],["2024-07-25T03:40:49.010000"],["2024-07-25T03:40:50.010000"],["2024-07-25T03:40:51.010000"],["2024-07-25T03:40:52.010000"],["2024-07-25T03:40:53.010000"],["2024-07-25T03:40:54.010000"],["2024-07-25T03:40:55.010000"],["2024-07-25T03:40:56.010000"],["2024-07-25T03:40:57.010000"],["2024-07-25T03:40:58.010000"],["2024-07-25T03:40:59.010000"],["2024-07-25T03:41:00.010000"],["2024-07-25T03:41:01.010000"],["2024-07-25T03:41:02.010000"],["2024-07-25T03:41:03.010000"],["2024-07-25T03:41:04.010000"],["2024-07-25T03:41:05.010000"],["2024-07-25T03:41:06.010000"],["2024-07-25T03:41:07.010000"],["2024-07-25T03:41:08.010000"],["2024-07-25T03:41:09.010000"],["2024-07-25T03:41:10.010000"],["2024-07-25T03:41:11.010000"],["2024-07-25T03:41:12.010000"],["2024-07-25T03:41:13.010000"],["2024-07-25T03:41:14.010000"],["2024-07-25T03:41:15.010000"],["2024-07-25T03:41:16.010000"],["2024-07-25T03:41:17.010000"],["2024-07-25T03:41:18.010000"],["2024-07-25T03:41:19.010000"],["2024-07-25T03:41:20.010000"],["2024-07-25T03:41:21.010000"],["2024-07-25T03:41:22.010000"],["2024-07-25T03:41:23.010000"],["2024-07-25T03:41:24.010000"],["2024-07-25T03:41:25.010000"],["2024-07-25T03:41:26.010000"],["2024-07-25T03:41:27.010000"],["2024-07-25T03:41:28.010000"],["2024-07-25T03:41:29.010000"],["2024-07-25T03:41:30.010000"],["2024-07-25T03:41:31.010000"],["2024-07-25T03:41:32.010000"],["2024-07-25T03:41:33.010000"],["2024-07-25T03:41:34.010000"],["2024-07-25T03:41:35.010000"],["2024-07-25T03:41:36.010000"],["2024-07-25T03:41:37.010000"],["2024-07-25T03:41:38.010000"],["2024-07-25T03:41:39.010000"],["2024-07-25T03:41:40.010000"],["2024-07-25T03:41:41.010000"],["2024-07-25T03:41:42.010000"],["2024-07-25T03:41:43.010000"],["2024-07-25T03:41:44.010000"],["2024-07-25T03:41:45.010000"],["2024-07-25T03:41:46.010000"],["2024-07-25T03:41:47.010000"],["2024-07-25T03:41:48.010000"],["2024-07-25T03:41:49.010000"],["2024-07-25T03:41:50.010000"],["2024-07-25T03:41:51.010000"],["2024-07-25T03:41:52.010000"],["2024-07-25T03:41:53.010000"],["2024-07-25T03:41:54.010000"],["2024-07-25T03:41:55.010000"],["2024-07-25T03:41:56.010000"],["2024-07-25T03:41:57.010000"],["2024-07-25T03:41:58.010000"],["2024-07-25T03:41:59.010000"],["2024-07-25T03:42:00.010000"],["2024-07-25T03:42:01.010000"],["2024-07-25T03:42:02.010000"],["2024-07-25T03:42:03.010000"],["2024-07-25T03:42:04.010000"],["2024-07-25T03:42:05.010000"],["2024-07-25T03:42:06.010000"],["2024-07-25T03:42:07.010000"],["2024-07-25T03:42:08.010000"],["2024-07-25T03:42:09.010000"],["2024-07-25T03:42:10.010000"],["2024-07-25T03:42:11.010000"],["2024-07-25T03:42:12.010000"],["2024-07-25T03:42:13.010000"],["2024-07-25T03:42:14.010000"],["2024-07-25T03:42:15.010000"],["2024-07-25T03:42:16.010000"],["2024-07-25T03:42:17.010000"],["2024-07-25T03:42:18.010000"],["2024-07-25T03:42:19.010000"],["2024-07-25T03:42:20.010000"],["2024-07-25T03:42:21.010000"],["2024-07-25T03:42:22.010000"],["2024-07-25T03:42:23.010000"],["2024-07-25T03:42:24.010000"],["2024-07-25T03:42:25.010000"],["2024-07-25T03:42:26.010000"],["2024-07-25T03:42:27.010000"],["2024-07-25T03:42:28.010000"],["2024-07-25T03:42:29.010000"],["2024-07-25T03:42:30.010000"],["2024-07-25T03:42:31.010000"],["2024-07-25T03:42:32.010000"],["2024-07-25T03:42:33.010000"],["2024-07-25T03:42:34.010000"],["2024-07-25T03:42:35.010000"],["2024-07-25T03:42:36.010000"],["2024-07-25T03:42:37.010000"],["2024-07-25T03:42:38.010000"],["2024-07-25T03:42:39.010000"],["2024-07-25T03:42:40.010000"],["2024-07-25T03:42:41.010000"],["2024-07-25T03:42:42.010000"],["2024-07-25T03:42:43.010000"],["2024-07-25T03:42:44.010000"],["2024-07-25T03:42:45.010000"],["2024-07-25T03:42:46.010000"],["2024-07-25T03:42:47.010000"],["2024-07-25T03:42:48.010000"],["2024-07-25T03:42:49.010000"],["2024-07-25T03:42:50.010000"],["2024-07-25T03:42:51.010000"],["2024-07-25T03:42:52.010000"],["2024-07-25T03:42:53.010000"],["2024-07-25T03:42:54.010000"],["2024-07-25T03:42:55.010000"],["2024-07-25T03:42:56.010000"],["2024-07-25T03:42:57.010000"],["2024-07-25T03:42:58.010000"],["2024-07-25T03:42:59.010000"],["2024-07-25T03:43:00.010000"],["2024-07-25T03:43:01.010000"],["2024-07-25T03:43:02.010000"],["2024-07-25T03:43:03.010000"],["2024-07-25T03:43:04.010000"],["2024-07-25T03:43:05.010000"],["2024-07-25T03:43:06.010000"],["2024-07-25T03:43:07.010000"],["2024-07-25T03:43:08.010000"],["2024-07-25T03:43:09.010000"],["2024-07-25T03:43:10.010000"],["2024-07-25T03:43:11.010000"],["2024-07-25T03:43:12.010000"],["2024-07-25T03:43:13.010000"],["2024-07-25T03:43:14.010000"],["2024-07-25T03:43:15.010000"],["2024-07-25T03:43:16.010000"],["2024-07-25T03:43:17.010000"],["2024-07-25T03:43:18.010000"],["2024-07-25T03:43:19.010000"],["2024-07-25T03:43:20.010000"],["2024-07-25T03:43:21.010000"],["2024-07-25T03:43:22.010000"],["2024-07-25T03:43:23.010000"],["2024-07-25T03:43:24.010000"],["2024-07-25T03:43:25.010000"],["2024-07-25T03:43:26.010000"],["2024-07-25T03:43:27.010000"],["2024-07-25T03:43:28.010000"],["2024-07-25T03:43:29.010000"],["2024-07-25T03:43:30.010000"],["2024-07-25T03:43:31.010000"],["2024-07-25T03:43:32.010000"],["2024-07-25T03:43:33.010000"],["2024-07-25T03:43:34.010000"],["2024-07-25T03:43:35.010000"],["2024-07-25T03:43:36.010000"],["2024-07-25T03:43:37.010000"],["2024-07-25T03:43:38.010000"],["2024-07-25T03:43:39.010000"],["2024-07-25T03:43:40.010000"],["2024-07-25T03:43:41.010000"],["2024-07-25T03:43:42.010000"],["2024-07-25T03:43:43.010000"],["2024-07-25T03:43:44.010000"],["2024-07-25T03:43:45.010000"],["2024-07-25T03:43:46.010000"],["2024-07-25T03:43:47.010000"],["2024-07-25T03:43:48.010000"],["2024-07-25T03:43:49.010000"],["2024-07-25T03:43:50.010000"],["2024-07-25T03:43:51.010000"],["2024-07-25T03:43:52.010000"],["2024-07-25T03:43:53.010000"],["2024-07-25T03:43:54.010000"],["2024-07-25T03:43:55.010000"],["2024-07-25T03:43:56.010000"],["2024-07-25T03:43:57.010000"],["2024-07-25T03:43:58.010000"],["2024-07-25T03:43:59.010000"],["2024-07-25T03:44:00.010000"],["2024-07-25T03:44:01.010000"],["2024-07-25T03:44:02.010000"],["2024-07-25T03:44:03.010000"],["2024-07-25T03:44:04.010000"],["2024-07-25T03:44:05.010000"],["2024-07-25T03:44:06.010000"],["2024-07-25T03:44:07.010000"],["2024-07-25T03:44:08.010000"],["2024-07-25T03:44:09.010000"],["2024-07-25T03:44:10.010000"],["2024-07-25T03:44:11.010000"],["2024-07-25T03:44:12.010000"],["2024-07-25T03:44:13.010000"],["2024-07-25T03:44:14.010000"],["2024-07-25T03:44:15.010000"],["2024-07-25T03:44:16.010000"],["2024-07-25T03:44:17.010000"],["2024-07-25T03:44:18.010000"],["2024-07-25T03:44:19.010000"],["2024-07-25T03:44:20.010000"],["2024-07-25T03:44:21.010000"],["2024-07-25T03:44:22.010000"],["2024-07-25T03:44:23.010000"],["2024-07-25T03:44:24.010000"],["2024-07-25T03:44:25.010000"],["2024-07-25T03:44:26.010000"],["2024-07-25T03:44:27.010000"],["2024-07-25T03:44:28.010000"],["2024-07-25T03:44:29.010000"],["2024-07-25T03:44:30.010000"],["2024-07-25T03:44:31.010000"],["2024-07-25T03:44:32.010000"],["2024-07-25T03:44:33.010000"],["2024-07-25T03:44:34.010000"],["2024-07-25T03:44:35.010000"],["2024-07-25T03:44:36.010000"],["2024-07-25T03:44:37.010000"],["2024-07-25T03:44:38.010000"],["2024-07-25T03:44:39.010000"],["2024-07-25T03:44:40.010000"],["2024-07-25T03:44:41.010000"],["2024-07-25T03:44:42.010000"],["2024-07-25T03:44:43.010000"],["2024-07-25T03:44:44.010000"],["2024-07-25T03:44:45.010000"],["2024-07-25T03:44:46.010000"],["2024-07-25T03:44:47.010000"],["2024-07-25T03:44:48.010000"],["2024-07-25T03:44:49.010000"],["2024-07-25T03:44:50.010000"],["2024-07-25T03:44:51.010000"],["2024-07-25T03:44:52.010000"],["2024-07-25T03:44:53.010000"],["2024-07-25T03:44:54.010000"],["2024-07-25T03:44:55.010000"],["2024-07-25T03:44:56.010000"],["2024-07-25T03:44:57.010000"],["2024-07-25T03:44:58.010000"],["2024-07-25T03:44:59.010000"],["2024-07-25T03:45:00.010000"],["2024-07-25T03:45:01.010000"],["2024-07-25T03:45:02.010000"],["2024-07-25T03:45:03.010000"],["2024-07-25T03:45:04.010000"],["2024-07-25T03:45:05.010000"],["2024-07-25T03:45:06.010000"],["2024-07-25T03:45:07.010000"],["2024-07-25T03:45:08.010000"],["2024-07-25T03:45:09.010000"],["2024-07-25T03:45:10.010000"],["2024-07-25T03:45:11.010000"],["2024-07-25T03:45:12.010000"],["2024-07-25T03:45:13.010000"],["2024-07-25T03:45:14.010000"],["2024-07-25T03:45:15.010000"],["2024-07-25T03:45:16.010000"],["2024-07-25T03:45:17.010000"],["2024-07-25T03:45:18.010000"],["2024-07-25T03:45:19.010000"],["2024-07-25T03:45:20.010000"],["2024-07-25T03:45:21.010000"],["2024-07-25T03:45:22.010000"],["2024-07-25T03:45:23.010000"],["2024-07-25T03:45:24.010000"],["2024-07-25T03:45:25.010000"],["2024-07-25T03:45:26.010000"],["2024-07-25T03:45:27.010000"],["2024-07-25T03:45:28.010000"],["2024-07-25T03:45:29.010000"],["2024-07-25T03:45:30.010000"],["2024-07-25T03:45:31.010000"],["2024-07-25T03:45:32.010000"],["2024-07-25T03:45:33.010000"],["2024-07-25T03:45:34.010000"],["2024-07-25T03:45:35.010000"],["2024-07-25T03:45:36.010000"],["2024-07-25T03:45:37.010000"],["2024-07-25T03:45:38.010000"],["2024-07-25T03:45:39.010000"],["2024-07-25T03:45:40.010000"],["2024-07-25T03:45:41.010000"],["2024-07-25T03:45:42.010000"],["2024-07-25T03:45:43.010000"],["2024-07-25T03:45:44.010000"],["2024-07-25T03:45:45.010000"],["2024-07-25T03:45:46.010000"],["2024-07-25T03:45:47.010000"],["2024-07-25T03:45:48.010000"],["2024-07-25T03:45:49.010000"],["2024-07-25T03:45:50.010000"],["2024-07-25T03:45:51.010000"],["2024-07-25T03:45:52.010000"],["2024-07-25T03:45:53.010000"],["2024-07-25T03:45:54.010000"],["2024-07-25T03:45:55.010000"],["2024-07-25T03:45:56.010000"],["2024-07-25T03:45:57.010000"],["2024-07-25T03:45:58.010000"],["2024-07-25T03:45:59.010000"],["2024-07-25T03:46:00.010000"],["2024-07-25T03:46:01.010000"],["2024-07-25T03:46:02.010000"],["2024-07-25T03:46:03.010000"],["2024-07-25T03:46:04.010000"],["2024-07-25T03:46:05.010000"],["2024-07-25T03:46:06.010000"],["2024-07-25T03:46:07.010000"],["2024-07-25T03:46:08.010000"],["2024-07-25T03:46:09.010000"],["2024-07-25T03:46:10.010000"],["2024-07-25T03:46:11.010000"],["2024-07-25T03:46:12.010000"],["2024-07-25T03:46:13.010000"],["2024-07-25T03:46:14.010000"],["2024-07-25T03:46:15.010000"],["2024-07-25T03:46:16.010000"],["2024-07-25T03:46:17.010000"],["2024-07-25T03:46:18.010000"],["2024-07-25T03:46:19.010000"],["2024-07-25T03:46:20.010000"],["2024-07-25T03:46:21.010000"],["2024-07-25T03:46:22.010000"],["2024-07-25T03:46:23.010000"],["2024-07-25T03:46:24.010000"],["2024-07-25T03:46:25.010000"],["2024-07-25T03:46:26.010000"],["2024-07-25T03:46:27.010000"],["2024-07-25T03:46:28.010000"],["2024-07-25T03:46:29.010000"],["2024-07-25T03:46:30.010000"],["2024-07-25T03:46:31.010000"],["2024-07-25T03:46:32.010000"],["2024-07-25T03:46:33.010000"],["2024-07-25T03:46:34.010000"],["2024-07-25T03:46:35.010000"],["2024-07-25T03:46:36.010000"],["2024-07-25T03:46:37.010000"],["2024-07-25T03:46:38.010000"],["2024-07-25T03:46:39.010000"],["2024-07-25T03:46:40.010000"],["2024-07-25T03:46:41.010000"],["2024-07-25T03:46:42.010000"],["2024-07-25T03:46:43.010000"],["2024-07-25T03:46:44.010000"],["2024-07-25T03:46:45.010000"],["2024-07-25T03:46:46.010000"],["2024-07-25T03:46:47.010000"],["2024-07-25T03:46:48.010000"],["2024-07-25T03:46:49.010000"],["2024-07-25T03:46:50.010000"],["2024-07-25T03:46:51.010000"],["2024-07-25T03:46:52.010000"],["2024-07-25T03:46:53.010000"],["2024-07-25T03:46:54.010000"],["2024-07-25T03:46:55.010000"],["2024-07-25T03:46:56.010000"],["2024-07-25T03:46:57.010000"],["2024-07-25T03:46:58.010000"],["2024-07-25T03:46:59.010000"],["2024-07-25T03:47:00.010000"],["2024-07-25T03:47:01.010000"],["2024-07-25T03:47:02.010000"],["2024-07-25T03:47:03.010000"],["2024-07-25T03:47:04.010000"],["2024-07-25T03:47:05.010000"],["2024-07-25T03:47:06.010000"],["2024-07-25T03:47:07.010000"],["2024-07-25T03:47:08.010000"],["2024-07-25T03:47:09.010000"],["2024-07-25T03:47:10.010000"],["2024-07-25T03:47:11.010000"],["2024-07-25T03:47:12.010000"],["2024-07-25T03:47:13.010000"],["2024-07-25T03:47:14.010000"],["2024-07-25T03:47:15.010000"],["2024-07-25T03:47:16.010000"],["2024-07-25T03:47:17.010000"],["2024-07-25T03:47:18.010000"],["2024-07-25T03:47:19.010000"],["2024-07-25T03:47:20.010000"],["2024-07-25T03:47:21.010000"],["2024-07-25T03:47:22.010000"],["2024-07-25T03:47:23.010000"],["2024-07-25T03:47:24.010000"],["2024-07-25T03:47:25.010000"],["2024-07-25T03:47:26.010000"],["2024-07-25T03:47:27.010000"],["2024-07-25T03:47:28.010000"],["2024-07-25T03:47:29.010000"],["2024-07-25T03:47:30.010000"],["2024-07-25T03:47:31.010000"],["2024-07-25T03:47:32.010000"],["2024-07-25T03:47:33.010000"],["2024-07-25T03:47:34.010000"],["2024-07-25T03:47:35.010000"],["2024-07-25T03:47:36.010000"],["2024-07-25T03:47:37.010000"],["2024-07-25T03:47:38.010000"],["2024-07-25T03:47:39.010000"],["2024-07-25T03:47:40.010000"],["2024-07-25T03:47:41.010000"],["2024-07-25T03:47:42.010000"],["2024-07-25T03:47:43.010000"],["2024-07-25T03:47:44.010000"],["2024-07-25T03:47:45.010000"],["2024-07-25T03:47:46.010000"],["2024-07-25T03:47:47.010000"],["2024-07-25T03:47:48.010000"],["2024-07-25T03:47:49.010000"],["2024-07-25T03:47:50.010000"],["2024-07-25T03:47:51.010000"],["2024-07-25T03:47:52.010000"],["2024-07-25T03:47:53.010000"],["2024-07-25T03:47:54.010000"],["2024-07-25T03:47:55.010000"],["2024-07-25T03:47:56.010000"],["2024-07-25T03:47:57.010000"],["2024-07-25T03:47:58.010000"],["2024-07-25T03:47:59.010000"],["2024-07-25T03:48:00.010000"],["2024-07-25T03:48:01.010000"],["2024-07-25T03:48:02.010000"],["2024-07-25T03:48:03.010000"],["2024-07-25T03:48:04.010000"],["2024-07-25T03:48:05.010000"],["2024-07-25T03:48:06.010000"],["2024-07-25T03:48:07.010000"],["2024-07-25T03:48:08.010000"],["2024-07-25T03:48:09.010000"],["2024-07-25T03:48:10.010000"],["2024-07-25T03:48:11.010000"],["2024-07-25T03:48:12.010000"],["2024-07-25T03:48:13.010000"],["2024-07-25T03:48:14.010000"],["2024-07-25T03:48:15.010000"],["2024-07-25T03:48:16.010000"],["2024-07-25T03:48:17.010000"],["2024-07-25T03:48:18.010000"],["2024-07-25T03:48:19.010000"],["2024-07-25T03:48:20.010000"],["2024-07-25T03:48:21.010000"],["2024-07-25T03:48:22.010000"],["2024-07-25T03:48:23.010000"],["2024-07-25T03:48:24.010000"],["2024-07-25T03:48:25.010000"],["2024-07-25T03:48:26.010000"],["2024-07-25T03:48:27.010000"],["2024-07-25T03:48:28.010000"],["2024-07-25T03:48:29.010000"],["2024-07-25T03:48:30.010000"],["2024-07-25T03:48:31.010000"],["2024-07-25T03:48:32.010000"],["2024-07-25T03:48:33.010000"],["2024-07-25T03:48:34.010000"],["2024-07-25T03:48:35.010000"],["2024-07-25T03:48:36.010000"],["2024-07-25T03:48:37.010000"],["2024-07-25T03:48:38.010000"],["2024-07-25T03:48:39.010000"],["2024-07-25T03:48:40.010000"],["2024-07-25T03:48:41.010000"],["2024-07-25T03:48:42.010000"],["2024-07-25T03:48:43.010000"],["2024-07-25T03:48:44.010000"],["2024-07-25T03:48:45.010000"],["2024-07-25T03:48:46.010000"],["2024-07-25T03:48:47.010000"],["2024-07-25T03:48:48.010000"],["2024-07-25T03:48:49.010000"],["2024-07-25T03:48:50.010000"],["2024-07-25T03:48:51.010000"],["2024-07-25T03:48:52.010000"],["2024-07-25T03:48:53.010000"],["2024-07-25T03:48:54.010000"],["2024-07-25T03:48:55.010000"],["2024-07-25T03:48:56.010000"],["2024-07-25T03:48:57.010000"],["2024-07-25T03:48:58.010000"],["2024-07-25T03:48:59.010000"],["2024-07-25T03:49:00.010000"],["2024-07-25T03:49:01.010000"],["2024-07-25T03:49:02.010000"],["2024-07-25T03:49:03.010000"],["2024-07-25T03:49:04.010000"],["2024-07-25T03:49:05.010000"],["2024-07-25T03:49:06.010000"],["2024-07-25T03:49:07.010000"],["2024-07-25T03:49:08.010000"],["2024-07-25T03:49:09.010000"],["2024-07-25T03:49:10.010000"],["2024-07-25T03:49:11.010000"],["2024-07-25T03:49:12.010000"],["2024-07-25T03:49:13.010000"],["2024-07-25T03:49:14.010000"],["2024-07-25T03:49:15.010000"],["2024-07-25T03:49:16.010000"],["2024-07-25T03:49:17.010000"],["2024-07-25T03:49:18.010000"],["2024-07-25T03:49:19.010000"],["2024-07-25T03:49:20.010000"],["2024-07-25T03:49:21.010000"],["2024-07-25T03:49:22.010000"],["2024-07-25T03:49:23.010000"],["2024-07-25T03:49:24.010000"],["2024-07-25T03:49:25.010000"],["2024-07-25T03:49:26.010000"],["2024-07-25T03:49:27.010000"],["2024-07-25T03:49:28.010000"],["2024-07-25T03:49:29.010000"],["2024-07-25T03:49:30.010000"],["2024-07-25T03:49:31.010000"],["2024-07-25T03:49:32.010000"],["2024-07-25T03:49:33.010000"],["2024-07-25T03:49:34.010000"],["2024-07-25T03:49:35.010000"],["2024-07-25T03:49:36.010000"],["2024-07-25T03:49:37.010000"],["2024-07-25T03:49:38.010000"],["2024-07-25T03:49:39.010000"],["2024-07-25T03:49:40.010000"],["2024-07-25T03:49:41.010000"],["2024-07-25T03:49:42.010000"],["2024-07-25T03:49:43.010000"],["2024-07-25T03:49:44.010000"],["2024-07-25T03:49:45.010000"],["2024-07-25T03:49:46.010000"],["2024-07-25T03:49:47.010000"],["2024-07-25T03:49:48.010000"],["2024-07-25T03:49:49.010000"],["2024-07-25T03:49:50.010000"],["2024-07-25T03:49:51.010000"],["2024-07-25T03:49:52.010000"],["2024-07-25T03:49:53.010000"],["2024-07-25T03:49:54.010000"],["2024-07-25T03:49:55.010000"],["2024-07-25T03:49:56.010000"],["2024-07-25T03:49:57.010000"],["2024-07-25T03:49:58.010000"],["2024-07-25T03:49:59.010000"],["2024-07-25T03:50:00.010000"],["2024-07-25T03:50:01.010000"],["2024-07-25T03:50:02.010000"],["2024-07-25T03:50:03.010000"],["2024-07-25T03:50:04.010000"],["2024-07-25T03:50:05.010000"],["2024-07-25T03:50:06.010000"],["2024-07-25T03:50:07.010000"],["2024-07-25T03:50:08.010000"],["2024-07-25T03:50:09.010000"],["2024-07-25T03:50:10.010000"],["2024-07-25T03:50:11.010000"],["2024-07-25T03:50:12.010000"],["2024-07-25T03:50:13.010000"],["2024-07-25T03:50:14.010000"],["2024-07-25T03:50:15.010000"],["2024-07-25T03:50:16.010000"],["2024-07-25T03:50:17.010000"],["2024-07-25T03:50:18.010000"],["2024-07-25T03:50:19.010000"],["2024-07-25T03:50:20.010000"],["2024-07-25T03:50:21.010000"],["2024-07-25T03:50:22.010000"],["2024-07-25T03:50:23.010000"],["2024-07-25T03:50:24.010000"],["2024-07-25T03:50:25.010000"],["2024-07-25T03:50:26.010000"],["2024-07-25T03:50:27.010000"],["2024-07-25T03:50:28.010000"],["2024-07-25T03:50:29.010000"],["2024-07-25T03:50:30.010000"],["2024-07-25T03:50:31.010000"],["2024-07-25T03:50:32.010000"],["2024-07-25T03:50:33.010000"],["2024-07-25T03:50:34.010000"],["2024-07-25T03:50:35.010000"],["2024-07-25T03:50:36.010000"],["2024-07-25T03:50:37.010000"],["2024-07-25T03:50:38.010000"],["2024-07-25T03:50:39.010000"],["2024-07-25T03:50:40.010000"],["2024-07-25T03:50:41.010000"],["2024-07-25T03:50:42.010000"],["2024-07-25T03:50:43.010000"],["2024-07-25T03:50:44.010000"],["2024-07-25T03:50:45.010000"],["2024-07-25T03:50:46.010000"],["2024-07-25T03:50:47.010000"],["2024-07-25T03:50:48.010000"],["2024-07-25T03:50:49.010000"],["2024-07-25T03:50:50.010000"],["2024-07-25T03:50:51.010000"],["2024-07-25T03:50:52.010000"],["2024-07-25T03:50:53.010000"],["2024-07-25T03:50:54.010000"],["2024-07-25T03:50:55.010000"],["2024-07-25T03:50:56.010000"],["2024-07-25T03:50:57.010000"],["2024-07-25T03:50:58.010000"],["2024-07-25T03:50:59.010000"],["2024-07-25T03:51:00.010000"],["2024-07-25T03:51:01.010000"],["2024-07-25T03:51:02.010000"],["2024-07-25T03:51:03.010000"],["2024-07-25T03:51:04.010000"],["2024-07-25T03:51:05.010000"],["2024-07-25T03:51:06.010000"],["2024-07-25T03:51:07.010000"],["2024-07-25T03:51:08.010000"],["2024-07-25T03:51:09.010000"],["2024-07-25T03:51:10.010000"],["2024-07-25T03:51:11.010000"],["2024-07-25T03:51:12.010000"],["2024-07-25T03:51:13.010000"],["2024-07-25T03:51:14.010000"],["2024-07-25T03:51:15.010000"],["2024-07-25T03:51:16.010000"],["2024-07-25T03:51:17.010000"],["2024-07-25T03:51:18.010000"],["2024-07-25T03:51:19.010000"],["2024-07-25T03:51:20.010000"],["2024-07-25T03:51:21.010000"],["2024-07-25T03:51:22.010000"],["2024-07-25T03:51:23.010000"],["2024-07-25T03:51:24.010000"],["2024-07-25T03:51:25.010000"],["2024-07-25T03:51:26.010000"],["2024-07-25T03:51:27.010000"],["2024-07-25T03:51:28.010000"],["2024-07-25T03:51:29.010000"],["2024-07-25T03:51:30.010000"],["2024-07-25T03:51:31.010000"],["2024-07-25T03:51:32.010000"],["2024-07-25T03:51:33.010000"],["2024-07-25T03:51:34.010000"],["2024-07-25T03:51:35.010000"],["2024-07-25T03:51:36.010000"],["2024-07-25T03:51:37.010000"],["2024-07-25T03:51:38.010000"],["2024-07-25T03:51:39.010000"],["2024-07-25T03:51:40.010000"],["2024-07-25T03:51:41.010000"],["2024-07-25T03:51:42.010000"],["2024-07-25T03:51:43.010000"],["2024-07-25T03:51:44.010000"],["2024-07-25T03:51:45.010000"],["2024-07-25T03:51:46.010000"],["2024-07-25T03:51:47.010000"],["2024-07-25T03:51:48.010000"],["2024-07-25T03:51:49.010000"],["2024-07-25T03:51:50.010000"],["2024-07-25T03:51:51.010000"],["2024-07-25T03:51:52.010000"],["2024-07-25T03:51:53.010000"],["2024-07-25T03:51:54.010000"],["2024-07-25T03:51:55.010000"],["2024-07-25T03:51:56.010000"],["2024-07-25T03:51:57.010000"],["2024-07-25T03:51:58.010000"],["2024-07-25T03:51:59.010000"],["2024-07-25T03:52:00.010000"],["2024-07-25T03:52:01.010000"],["2024-07-25T03:52:02.010000"],["2024-07-25T03:52:03.010000"],["2024-07-25T03:52:04.010000"],["2024-07-25T03:52:05.010000"],["2024-07-25T03:52:06.010000"],["2024-07-25T03:52:07.010000"],["2024-07-25T03:52:08.010000"],["2024-07-25T03:52:09.010000"],["2024-07-25T03:52:10.010000"],["2024-07-25T03:52:11.010000"],["2024-07-25T03:52:12.010000"],["2024-07-25T03:52:13.010000"],["2024-07-25T03:52:14.010000"],["2024-07-25T03:52:15.010000"],["2024-07-25T03:52:16.010000"],["2024-07-25T03:52:17.010000"],["2024-07-25T03:52:18.010000"],["2024-07-25T03:52:19.010000"],["2024-07-25T03:52:20.010000"],["2024-07-25T03:52:21.010000"],["2024-07-25T03:52:22.010000"],["2024-07-25T03:52:23.010000"],["2024-07-25T03:52:24.010000"],["2024-07-25T03:52:25.010000"],["2024-07-25T03:52:26.010000"],["2024-07-25T03:52:27.010000"],["2024-07-25T03:52:28.010000"],["2024-07-25T03:52:29.010000"],["2024-07-25T03:52:30.010000"],["2024-07-25T03:52:31.010000"],["2024-07-25T03:52:32.010000"],["2024-07-25T03:52:33.010000"],["2024-07-25T03:52:34.010000"],["2024-07-25T03:52:35.010000"],["2024-07-25T03:52:36.010000"],["2024-07-25T03:52:37.010000"],["2024-07-25T03:52:38.010000"],["2024-07-25T03:52:39.010000"],["2024-07-25T03:52:40.010000"],["2024-07-25T03:52:41.010000"],["2024-07-25T03:52:42.010000"],["2024-07-25T03:52:43.010000"],["2024-07-25T03:52:44.010000"],["2024-07-25T03:52:45.010000"],["2024-07-25T03:52:46.010000"],["2024-07-25T03:52:47.010000"],["2024-07-25T03:52:48.010000"],["2024-07-25T03:52:49.010000"],["2024-07-25T03:52:50.010000"],["2024-07-25T03:52:51.010000"],["2024-07-25T03:52:52.010000"],["2024-07-25T03:52:53.010000"],["2024-07-25T03:52:54.010000"],["2024-07-25T03:52:55.010000"],["2024-07-25T03:52:56.010000"],["2024-07-25T03:52:57.010000"],["2024-07-25T03:52:58.010000"],["2024-07-25T03:52:59.010000"],["2024-07-25T03:53:00.010000"],["2024-07-25T03:53:01.010000"],["2024-07-25T03:53:02.010000"],["2024-07-25T03:53:03.010000"],["2024-07-25T03:53:04.010000"],["2024-07-25T03:53:05.010000"],["2024-07-25T03:53:06.010000"],["2024-07-25T03:53:07.010000"],["2024-07-25T03:53:08.010000"],["2024-07-25T03:53:09.010000"],["2024-07-25T03:53:10.010000"],["2024-07-25T03:53:11.010000"],["2024-07-25T03:53:12.010000"],["2024-07-25T03:53:13.010000"],["2024-07-25T03:53:14.010000"],["2024-07-25T03:53:15.010000"],["2024-07-25T03:53:16.010000"],["2024-07-25T03:53:17.010000"],["2024-07-25T03:53:18.010000"],["2024-07-25T03:53:19.010000"],["2024-07-25T03:53:20.010000"],["2024-07-25T03:53:21.010000"],["2024-07-25T03:53:22.010000"],["2024-07-25T03:53:23.010000"],["2024-07-25T03:53:24.010000"],["2024-07-25T03:53:25.010000"],["2024-07-25T03:53:26.010000"],["2024-07-25T03:53:27.010000"],["2024-07-25T03:53:28.010000"],["2024-07-25T03:53:29.010000"],["2024-07-25T03:53:30.010000"],["2024-07-25T03:53:31.010000"],["2024-07-25T03:53:32.010000"],["2024-07-25T03:53:33.010000"],["2024-07-25T03:53:34.010000"],["2024-07-25T03:53:35.010000"],["2024-07-25T03:53:36.010000"],["2024-07-25T03:53:37.010000"],["2024-07-25T03:53:38.010000"],["2024-07-25T03:53:39.010000"],["2024-07-25T03:53:40.010000"],["2024-07-25T03:53:41.010000"],["2024-07-25T03:53:42.010000"],["2024-07-25T03:53:43.010000"],["2024-07-25T03:53:44.010000"],["2024-07-25T03:53:45.010000"],["2024-07-25T03:53:46.010000"],["2024-07-25T03:53:47.010000"],["2024-07-25T03:53:48.010000"],["2024-07-25T03:53:49.010000"],["2024-07-25T03:53:50.010000"],["2024-07-25T03:53:51.010000"],["2024-07-25T03:53:52.010000"],["2024-07-25T03:53:53.010000"],["2024-07-25T03:53:54.010000"],["2024-07-25T03:53:55.010000"],["2024-07-25T03:53:56.010000"],["2024-07-25T03:53:57.010000"],["2024-07-25T03:53:58.010000"],["2024-07-25T03:53:59.010000"],["2024-07-25T03:54:00.010000"],["2024-07-25T03:54:01.010000"],["2024-07-25T03:54:02.010000"],["2024-07-25T03:54:03.010000"],["2024-07-25T03:54:04.010000"],["2024-07-25T03:54:05.010000"],["2024-07-25T03:54:06.010000"],["2024-07-25T03:54:07.010000"],["2024-07-25T03:54:08.010000"],["2024-07-25T03:54:09.010000"],["2024-07-25T03:54:10.010000"],["2024-07-25T03:54:11.010000"],["2024-07-25T03:54:12.010000"],["2024-07-25T03:54:13.010000"],["2024-07-25T03:54:14.010000"],["2024-07-25T03:54:15.010000"],["2024-07-25T03:54:16.010000"],["2024-07-25T03:54:17.010000"],["2024-07-25T03:54:18.010000"],["2024-07-25T03:54:19.010000"],["2024-07-25T03:54:20.010000"],["2024-07-25T03:54:21.010000"],["2024-07-25T03:54:22.010000"],["2024-07-25T03:54:23.010000"],["2024-07-25T03:54:24.010000"],["2024-07-25T03:54:25.010000"],["2024-07-25T03:54:26.010000"],["2024-07-25T03:54:27.010000"],["2024-07-25T03:54:28.010000"],["2024-07-25T03:54:29.010000"],["2024-07-25T03:54:30.010000"],["2024-07-25T03:54:31.010000"],["2024-07-25T03:54:32.010000"],["2024-07-25T03:54:33.010000"],["2024-07-25T03:54:34.010000"],["2024-07-25T03:54:35.010000"],["2024-07-25T03:54:36.010000"],["2024-07-25T03:54:37.010000"],["2024-07-25T03:54:38.010000"],["2024-07-25T03:54:39.010000"],["2024-07-25T03:54:40.010000"],["2024-07-25T03:54:41.010000"],["2024-07-25T03:54:42.010000"],["2024-07-25T03:54:43.010000"],["2024-07-25T03:54:44.010000"],["2024-07-25T03:54:45.010000"],["2024-07-25T03:54:46.010000"],["2024-07-25T03:54:47.010000"],["2024-07-25T03:54:48.010000"],["2024-07-25T03:54:49.010000"],["2024-07-25T03:54:50.010000"],["2024-07-25T03:54:51.010000"],["2024-07-25T03:54:52.010000"],["2024-07-25T03:54:53.010000"],["2024-07-25T03:54:54.010000"],["2024-07-25T03:54:55.010000"],["2024-07-25T03:54:56.010000"],["2024-07-25T03:54:57.010000"],["2024-07-25T03:54:58.010000"],["2024-07-25T03:54:59.010000"],["2024-07-25T03:55:00.010000"],["2024-07-25T03:55:01.010000"],["2024-07-25T03:55:02.010000"],["2024-07-25T03:55:03.010000"],["2024-07-25T03:55:04.010000"],["2024-07-25T03:55:05.010000"],["2024-07-25T03:55:06.010000"],["2024-07-25T03:55:07.010000"],["2024-07-25T03:55:08.010000"],["2024-07-25T03:55:09.010000"],["2024-07-25T03:55:10.010000"],["2024-07-25T03:55:11.010000"],["2024-07-25T03:55:12.010000"],["2024-07-25T03:55:13.010000"],["2024-07-25T03:55:14.010000"],["2024-07-25T03:55:15.010000"],["2024-07-25T03:55:16.010000"],["2024-07-25T03:55:17.010000"],["2024-07-25T03:55:18.010000"],["2024-07-25T03:55:19.010000"],["2024-07-25T03:55:20.010000"],["2024-07-25T03:55:21.010000"],["2024-07-25T03:55:22.010000"],["2024-07-25T03:55:23.010000"],["2024-07-25T03:55:24.010000"],["2024-07-25T03:55:25.010000"],["2024-07-25T03:55:26.010000"],["2024-07-25T03:55:27.010000"],["2024-07-25T03:55:28.010000"],["2024-07-25T03:55:29.010000"],["2024-07-25T03:55:30.010000"],["2024-07-25T03:55:31.010000"],["2024-07-25T03:55:32.010000"],["2024-07-25T03:55:33.010000"],["2024-07-25T03:55:34.010000"],["2024-07-25T03:55:35.010000"],["2024-07-25T03:55:36.010000"],["2024-07-25T03:55:37.010000"],["2024-07-25T03:55:38.010000"],["2024-07-25T03:55:39.010000"],["2024-07-25T03:55:40.010000"],["2024-07-25T03:55:41.010000"],["2024-07-25T03:55:42.010000"],["2024-07-25T03:55:43.010000"],["2024-07-25T03:55:44.010000"],["2024-07-25T03:55:45.010000"],["2024-07-25T03:55:46.010000"],["2024-07-25T03:55:47.010000"],["2024-07-25T03:55:48.010000"],["2024-07-25T03:55:49.010000"],["2024-07-25T03:55:50.010000"],["2024-07-25T03:55:51.010000"],["2024-07-25T03:55:52.010000"],["2024-07-25T03:55:53.010000"],["2024-07-25T03:55:54.010000"],["2024-07-25T03:55:55.010000"],["2024-07-25T03:55:56.010000"],["2024-07-25T03:55:57.010000"],["2024-07-25T03:55:58.010000"],["2024-07-25T03:55:59.010000"],["2024-07-25T03:56:00.010000"],["2024-07-25T03:56:01.010000"],["2024-07-25T03:56:02.010000"],["2024-07-25T03:56:03.010000"],["2024-07-25T03:56:04.010000"],["2024-07-25T03:56:05.010000"],["2024-07-25T03:56:06.010000"],["2024-07-25T03:56:07.010000"],["2024-07-25T03:56:08.010000"],["2024-07-25T03:56:09.010000"],["2024-07-25T03:56:10.010000"],["2024-07-25T03:56:11.010000"],["2024-07-25T03:56:12.010000"],["2024-07-25T03:56:13.010000"],["2024-07-25T03:56:14.010000"],["2024-07-25T03:56:15.010000"],["2024-07-25T03:56:16.010000"],["2024-07-25T03:56:17.010000"],["2024-07-25T03:56:18.010000"],["2024-07-25T03:56:19.010000"],["2024-07-25T03:56:20.010000"],["2024-07-25T03:56:21.010000"],["2024-07-25T03:56:22.010000"],["2024-07-25T03:56:23.010000"],["2024-07-25T03:56:24.010000"],["2024-07-25T03:56:25.010000"],["2024-07-25T03:56:26.010000"],["2024-07-25T03:56:27.010000"],["2024-07-25T03:56:28.010000"],["2024-07-25T03:56:29.010000"],["2024-07-25T03:56:30.010000"],["2024-07-25T03:56:31.010000"],["2024-07-25T03:56:32.010000"],["2024-07-25T03:56:33.010000"],["2024-07-25T03:56:34.010000"],["2024-07-25T03:56:35.010000"],["2024-07-25T03:56:36.010000"],["2024-07-25T03:56:37.010000"],["2024-07-25T03:56:38.010000"],["2024-07-25T03:56:39.010000"],["2024-07-25T03:56:40.010000"],["2024-07-25T03:56:41.010000"],["2024-07-25T03:56:42.010000"],["2024-07-25T03:56:43.010000"],["2024-07-25T03:56:44.010000"],["2024-07-25T03:56:45.010000"],["2024-07-25T03:56:46.010000"],["2024-07-25T03:56:47.010000"],["2024-07-25T03:56:48.010000"],["2024-07-25T03:56:49.010000"],["2024-07-25T03:56:50.010000"],["2024-07-25T03:56:51.010000"],["2024-07-25T03:56:52.010000"],["2024-07-25T03:56:53.010000"],["2024-07-25T03:56:54.010000"],["2024-07-25T03:56:55.010000"],["2024-07-25T03:56:56.010000"],["2024-07-25T03:56:57.010000"],["2024-07-25T03:56:58.010000"],["2024-07-25T03:56:59.010000"],["2024-07-25T03:57:00.010000"],["2024-07-25T03:57:01.010000"],["2024-07-25T03:57:02.010000"],["2024-07-25T03:57:03.010000"],["2024-07-25T03:57:04.010000"],["2024-07-25T03:57:05.010000"],["2024-07-25T03:57:06.010000"],["2024-07-25T03:57:07.010000"],["2024-07-25T03:57:08.010000"],["2024-07-25T03:57:09.010000"],["2024-07-25T03:57:10.010000"],["2024-07-25T03:57:11.010000"],["2024-07-25T03:57:12.010000"],["2024-07-25T03:57:13.010000"],["2024-07-25T03:57:14.010000"],["2024-07-25T03:57:15.010000"],["2024-07-25T03:57:16.010000"],["2024-07-25T03:57:17.010000"],["2024-07-25T03:57:18.010000"],["2024-07-25T03:57:19.010000"],["2024-07-25T03:57:20.010000"],["2024-07-25T03:57:21.010000"],["2024-07-25T03:57:22.010000"],["2024-07-25T03:57:23.010000"],["2024-07-25T03:57:24.010000"],["2024-07-25T03:57:25.010000"],["2024-07-25T03:57:26.010000"],["2024-07-25T03:57:27.010000"],["2024-07-25T03:57:28.010000"],["2024-07-25T03:57:29.010000"],["2024-07-25T03:57:30.010000"],["2024-07-25T03:57:31.010000"],["2024-07-25T03:57:32.010000"],["2024-07-25T03:57:33.010000"],["2024-07-25T03:57:34.010000"],["2024-07-25T03:57:35.010000"],["2024-07-25T03:57:36.010000"],["2024-07-25T03:57:37.010000"],["2024-07-25T03:57:38.010000"],["2024-07-25T03:57:39.010000"],["2024-07-25T03:57:40.010000"],["2024-07-25T03:57:41.010000"],["2024-07-25T03:57:42.010000"],["2024-07-25T03:57:43.010000"],["2024-07-25T03:57:44.010000"],["2024-07-25T03:57:45.010000"],["2024-07-25T03:57:46.010000"],["2024-07-25T03:57:47.010000"],["2024-07-25T03:57:48.010000"],["2024-07-25T03:57:49.010000"],["2024-07-25T03:57:50.010000"],["2024-07-25T03:57:51.010000"],["2024-07-25T03:57:52.010000"],["2024-07-25T03:57:53.010000"],["2024-07-25T03:57:54.010000"],["2024-07-25T03:57:55.010000"],["2024-07-25T03:57:56.010000"],["2024-07-25T03:57:57.010000"],["2024-07-25T03:57:58.010000"],["2024-07-25T03:57:59.010000"],["2024-07-25T03:58:00.010000"],["2024-07-25T03:58:01.010000"],["2024-07-25T03:58:02.010000"],["2024-07-25T03:58:03.010000"],["2024-07-25T03:58:04.010000"],["2024-07-25T03:58:05.010000"],["2024-07-25T03:58:06.010000"],["2024-07-25T03:58:07.010000"],["2024-07-25T03:58:08.010000"],["2024-07-25T03:58:09.010000"],["2024-07-25T03:58:10.010000"],["2024-07-25T03:58:11.010000"],["2024-07-25T03:58:12.010000"],["2024-07-25T03:58:13.010000"],["2024-07-25T03:58:14.010000"],["2024-07-25T03:58:15.010000"],["2024-07-25T03:58:16.010000"],["2024-07-25T03:58:17.010000"],["2024-07-25T03:58:18.010000"],["2024-07-25T03:58:19.010000"],["2024-07-25T03:58:20.010000"],["2024-07-25T03:58:21.010000"],["2024-07-25T03:58:22.010000"],["2024-07-25T03:58:23.010000"],["2024-07-25T03:58:24.010000"],["2024-07-25T03:58:25.010000"],["2024-07-25T03:58:26.010000"],["2024-07-25T03:58:27.010000"],["2024-07-25T03:58:28.010000"],["2024-07-25T03:58:29.010000"],["2024-07-25T03:58:30.010000"],["2024-07-25T03:58:31.010000"],["2024-07-25T03:58:32.010000"],["2024-07-25T03:58:33.010000"],["2024-07-25T03:58:34.010000"],["2024-07-25T03:58:35.010000"],["2024-07-25T03:58:36.010000"],["2024-07-25T03:58:37.010000"],["2024-07-25T03:58:38.010000"],["2024-07-25T03:58:39.010000"],["2024-07-25T03:58:40.010000"],["2024-07-25T03:58:41.010000"],["2024-07-25T03:58:42.010000"],["2024-07-25T03:58:43.010000"],["2024-07-25T03:58:44.010000"],["2024-07-25T03:58:45.010000"],["2024-07-25T03:58:46.010000"],["2024-07-25T03:58:47.010000"],["2024-07-25T03:58:48.010000"],["2024-07-25T03:58:49.010000"],["2024-07-25T03:58:50.010000"],["2024-07-25T03:58:51.010000"],["2024-07-25T03:58:52.010000"],["2024-07-25T03:58:53.010000"],["2024-07-25T03:58:54.010000"],["2024-07-25T03:58:55.010000"],["2024-07-25T03:58:56.010000"],["2024-07-25T03:58:57.010000"],["2024-07-25T03:58:58.010000"],["2024-07-25T03:58:59.010000"],["2024-07-25T03:59:00.010000"],["2024-07-25T03:59:01.010000"],["2024-07-25T03:59:02.010000"],["2024-07-25T03:59:03.010000"],["2024-07-25T03:59:04.010000"],["2024-07-25T03:59:05.010000"],["2024-07-25T03:59:06.010000"],["2024-07-25T03:59:07.010000"],["2024-07-25T03:59:08.010000"],["2024-07-25T03:59:09.010000"],["2024-07-25T03:59:10.010000"],["2024-07-25T03:59:11.010000"],["2024-07-25T03:59:12.010000"],["2024-07-25T03:59:13.010000"],["2024-07-25T03:59:14.010000"],["2024-07-25T03:59:15.010000"],["2024-07-25T03:59:16.010000"],["2024-07-25T03:59:17.010000"],["2024-07-25T03:59:18.010000"],["2024-07-25T03:59:19.010000"],["2024-07-25T03:59:20.010000"],["2024-07-25T03:59:21.010000"],["2024-07-25T03:59:22.010000"],["2024-07-25T03:59:23.010000"],["2024-07-25T03:59:24.010000"],["2024-07-25T03:59:25.010000"],["2024-07-25T03:59:26.010000"],["2024-07-25T03:59:27.010000"],["2024-07-25T03:59:28.010000"],["2024-07-25T03:59:29.010000"],["2024-07-25T03:59:30.010000"],["2024-07-25T03:59:31.010000"],["2024-07-25T03:59:32.010000"],["2024-07-25T03:59:33.010000"],["2024-07-25T03:59:34.010000"],["2024-07-25T03:59:35.010000"],["2024-07-25T03:59:36.010000"],["2024-07-25T03:59:37.010000"],["2024-07-25T03:59:38.010000"],["2024-07-25T03:59:39.010000"],["2024-07-25T03:59:40.010000"],["2024-07-25T03:59:41.010000"],["2024-07-25T03:59:42.010000"],["2024-07-25T03:59:43.010000"],["2024-07-25T03:59:44.010000"],["2024-07-25T03:59:45.010000"],["2024-07-25T03:59:46.010000"],["2024-07-25T03:59:47.010000"],["2024-07-25T03:59:48.010000"],["2024-07-25T03:59:49.010000"],["2024-07-25T03:59:50.010000"],["2024-07-25T03:59:51.010000"],["2024-07-25T03:59:52.010000"],["2024-07-25T03:59:53.010000"],["2024-07-25T03:59:54.010000"],["2024-07-25T03:59:55.010000"],["2024-07-25T03:59:56.010000"],["2024-07-25T03:59:57.010000"],["2024-07-25T03:59:58.010000"],["2024-07-25T03:59:59.010000"],["2024-07-25T04:00:00.010000"],["2024-07-25T04:00:01.010000"],["2024-07-25T04:00:02.010000"],["2024-07-25T04:00:03.010000"],["2024-07-25T04:00:04.010000"],["2024-07-25T04:00:05.010000"],["2024-07-25T04:00:06.010000"],["2024-07-25T04:00:07.010000"],["2024-07-25T04:00:08.010000"],["2024-07-25T04:00:09.010000"],["2024-07-25T04:00:10.010000"],["2024-07-25T04:00:11.010000"],["2024-07-25T04:00:12.010000"],["2024-07-25T04:00:13.010000"],["2024-07-25T04:00:14.010000"],["2024-07-25T04:00:15.010000"],["2024-07-25T04:00:16.010000"],["2024-07-25T04:00:17.010000"],["2024-07-25T04:00:18.010000"],["2024-07-25T04:00:19.010000"],["2024-07-25T04:00:20.010000"],["2024-07-25T04:00:21.010000"],["2024-07-25T04:00:22.010000"],["2024-07-25T04:00:23.010000"],["2024-07-25T04:00:24.010000"],["2024-07-25T04:00:25.010000"],["2024-07-25T04:00:26.010000"],["2024-07-25T04:00:27.010000"],["2024-07-25T04:00:28.010000"],["2024-07-25T04:00:29.010000"],["2024-07-25T04:00:30.010000"],["2024-07-25T04:00:31.010000"],["2024-07-25T04:00:32.010000"],["2024-07-25T04:00:33.010000"],["2024-07-25T04:00:34.010000"],["2024-07-25T04:00:35.010000"],["2024-07-25T04:00:36.010000"],["2024-07-25T04:00:37.010000"],["2024-07-25T04:00:38.010000"],["2024-07-25T04:00:39.010000"],["2024-07-25T04:00:40.010000"],["2024-07-25T04:00:41.010000"],["2024-07-25T04:00:42.010000"],["2024-07-25T04:00:43.010000"],["2024-07-25T04:00:44.010000"],["2024-07-25T04:00:45.010000"],["2024-07-25T04:00:46.010000"],["2024-07-25T04:00:47.010000"],["2024-07-25T04:00:48.010000"],["2024-07-25T04:00:49.010000"],["2024-07-25T04:00:50.010000"],["2024-07-25T04:00:51.010000"],["2024-07-25T04:00:52.010000"],["2024-07-25T04:00:53.010000"],["2024-07-25T04:00:54.010000"],["2024-07-25T04:00:55.010000"],["2024-07-25T04:00:56.010000"],["2024-07-25T04:00:57.010000"],["2024-07-25T04:00:58.010000"],["2024-07-25T04:00:59.010000"],["2024-07-25T04:01:00.010000"],["2024-07-25T04:01:01.010000"],["2024-07-25T04:01:02.010000"],["2024-07-25T04:01:03.010000"],["2024-07-25T04:01:04.010000"],["2024-07-25T04:01:05.010000"],["2024-07-25T04:01:06.010000"],["2024-07-25T04:01:07.010000"],["2024-07-25T04:01:08.010000"],["2024-07-25T04:01:09.010000"],["2024-07-25T04:01:10.010000"],["2024-07-25T04:01:11.010000"],["2024-07-25T04:01:12.010000"],["2024-07-25T04:01:13.010000"],["2024-07-25T04:01:14.010000"],["2024-07-25T04:01:15.010000"],["2024-07-25T04:01:16.010000"],["2024-07-25T04:01:17.010000"],["2024-07-25T04:01:18.010000"],["2024-07-25T04:01:19.010000"],["2024-07-25T04:01:20.010000"],["2024-07-25T04:01:21.010000"],["2024-07-25T04:01:22.010000"],["2024-07-25T04:01:23.010000"],["2024-07-25T04:01:24.010000"],["2024-07-25T04:01:25.010000"],["2024-07-25T04:01:26.010000"],["2024-07-25T04:01:27.010000"],["2024-07-25T04:01:28.010000"],["2024-07-25T04:01:29.010000"],["2024-07-25T04:01:30.010000"],["2024-07-25T04:01:31.010000"],["2024-07-25T04:01:32.010000"],["2024-07-25T04:01:33.010000"],["2024-07-25T04:01:34.010000"],["2024-07-25T04:01:35.010000"],["2024-07-25T04:01:36.010000"],["2024-07-25T04:01:37.010000"],["2024-07-25T04:01:38.010000"],["2024-07-25T04:01:39.010000"],["2024-07-25T04:01:40.010000"],["2024-07-25T04:01:41.010000"],["2024-07-25T04:01:42.010000"],["2024-07-25T04:01:43.010000"],["2024-07-25T04:01:44.010000"],["2024-07-25T04:01:45.010000"],["2024-07-25T04:01:46.010000"],["2024-07-25T04:01:47.010000"],["2024-07-25T04:01:48.010000"],["2024-07-25T04:01:49.010000"],["2024-07-25T04:01:50.010000"],["2024-07-25T04:01:51.010000"],["2024-07-25T04:01:52.010000"],["2024-07-25T04:01:53.010000"],["2024-07-25T04:01:54.010000"],["2024-07-25T04:01:55.010000"],["2024-07-25T04:01:56.010000"],["2024-07-25T04:01:57.010000"],["2024-07-25T04:01:58.010000"],["2024-07-25T04:01:59.010000"],["2024-07-25T04:02:00.010000"],["2024-07-25T04:02:01.010000"],["2024-07-25T04:02:02.010000"],["2024-07-25T04:02:03.010000"],["2024-07-25T04:02:04.010000"],["2024-07-25T04:02:05.010000"],["2024-07-25T04:02:06.010000"],["2024-07-25T04:02:07.010000"],["2024-07-25T04:02:08.010000"],["2024-07-25T04:02:09.010000"],["2024-07-25T04:02:10.010000"],["2024-07-25T04:02:11.010000"],["2024-07-25T04:02:12.010000"],["2024-07-25T04:02:13.010000"],["2024-07-25T04:02:14.010000"],["2024-07-25T04:02:15.010000"],["2024-07-25T04:02:16.010000"],["2024-07-25T04:02:17.010000"],["2024-07-25T04:02:18.010000"],["2024-07-25T04:02:19.010000"],["2024-07-25T04:02:20.010000"],["2024-07-25T04:02:21.010000"],["2024-07-25T04:02:22.010000"],["2024-07-25T04:02:23.010000"],["2024-07-25T04:02:24.010000"],["2024-07-25T04:02:25.010000"],["2024-07-25T04:02:26.010000"],["2024-07-25T04:02:27.010000"],["2024-07-25T04:02:28.010000"],["2024-07-25T04:02:29.010000"],["2024-07-25T04:02:30.010000"],["2024-07-25T04:02:31.010000"],["2024-07-25T04:02:32.010000"],["2024-07-25T04:02:33.010000"],["2024-07-25T04:02:34.010000"],["2024-07-25T04:02:35.010000"],["2024-07-25T04:02:36.010000"],["2024-07-25T04:02:37.010000"],["2024-07-25T04:02:38.010000"],["2024-07-25T04:02:39.010000"],["2024-07-25T04:02:40.010000"],["2024-07-25T04:02:41.010000"],["2024-07-25T04:02:42.010000"],["2024-07-25T04:02:43.010000"],["2024-07-25T04:02:44.010000"],["2024-07-25T04:02:45.010000"],["2024-07-25T04:02:46.010000"],["2024-07-25T04:02:47.010000"],["2024-07-25T04:02:48.010000"],["2024-07-25T04:02:49.010000"],["2024-07-25T04:02:50.010000"],["2024-07-25T04:02:51.010000"],["2024-07-25T04:02:52.010000"],["2024-07-25T04:02:53.010000"],["2024-07-25T04:02:54.010000"],["2024-07-25T04:02:55.010000"],["2024-07-25T04:02:56.010000"],["2024-07-25T04:02:57.010000"],["2024-07-25T04:02:58.010000"],["2024-07-25T04:02:59.010000"],["2024-07-25T04:03:00.010000"],["2024-07-25T04:03:01.010000"],["2024-07-25T04:03:02.010000"],["2024-07-25T04:03:03.010000"],["2024-07-25T04:03:04.010000"],["2024-07-25T04:03:05.010000"],["2024-07-25T04:03:06.010000"],["2024-07-25T04:03:07.010000"],["2024-07-25T04:03:08.010000"],["2024-07-25T04:03:09.010000"],["2024-07-25T04:03:10.010000"],["2024-07-25T04:03:11.010000"],["2024-07-25T04:03:12.010000"],["2024-07-25T04:03:13.010000"],["2024-07-25T04:03:14.010000"],["2024-07-25T04:03:15.010000"],["2024-07-25T04:03:16.010000"],["2024-07-25T04:03:17.010000"],["2024-07-25T04:03:18.010000"],["2024-07-25T04:03:19.010000"],["2024-07-25T04:03:20.010000"],["2024-07-25T04:03:21.010000"],["2024-07-25T04:03:22.010000"],["2024-07-25T04:03:23.010000"],["2024-07-25T04:03:24.010000"],["2024-07-25T04:03:25.010000"],["2024-07-25T04:03:26.010000"],["2024-07-25T04:03:27.010000"],["2024-07-25T04:03:28.010000"],["2024-07-25T04:03:29.010000"],["2024-07-25T04:03:30.010000"],["2024-07-25T04:03:31.010000"],["2024-07-25T04:03:32.010000"],["2024-07-25T04:03:33.010000"],["2024-07-25T04:03:34.010000"],["2024-07-25T04:03:35.010000"],["2024-07-25T04:03:36.010000"],["2024-07-25T04:03:37.010000"],["2024-07-25T04:03:38.010000"],["2024-07-25T04:03:39.010000"],["2024-07-25T04:03:40.010000"],["2024-07-25T04:03:41.010000"],["2024-07-25T04:03:42.010000"],["2024-07-25T04:03:43.010000"],["2024-07-25T04:03:44.010000"],["2024-07-25T04:03:45.010000"],["2024-07-25T04:03:46.010000"],["2024-07-25T04:03:47.010000"],["2024-07-25T04:03:48.010000"],["2024-07-25T04:03:49.010000"],["2024-07-25T04:03:50.010000"],["2024-07-25T04:03:51.010000"],["2024-07-25T04:03:52.010000"],["2024-07-25T04:03:53.010000"],["2024-07-25T04:03:54.010000"],["2024-07-25T04:03:55.010000"],["2024-07-25T04:03:56.010000"],["2024-07-25T04:03:57.010000"],["2024-07-25T04:03:58.010000"],["2024-07-25T04:03:59.010000"],["2024-07-25T04:04:00.010000"],["2024-07-25T04:04:01.010000"],["2024-07-25T04:04:02.010000"],["2024-07-25T04:04:03.010000"],["2024-07-25T04:04:04.010000"],["2024-07-25T04:04:05.010000"],["2024-07-25T04:04:06.010000"],["2024-07-25T04:04:07.010000"],["2024-07-25T04:04:08.010000"],["2024-07-25T04:04:09.010000"],["2024-07-25T04:04:10.010000"],["2024-07-25T04:04:11.010000"],["2024-07-25T04:04:12.010000"],["2024-07-25T04:04:13.010000"],["2024-07-25T04:04:14.010000"],["2024-07-25T04:04:15.010000"],["2024-07-25T04:04:16.010000"],["2024-07-25T04:04:17.010000"],["2024-07-25T04:04:18.010000"],["2024-07-25T04:04:19.010000"],["2024-07-25T04:04:20.010000"],["2024-07-25T04:04:21.010000"],["2024-07-25T04:04:22.010000"],["2024-07-25T04:04:23.010000"],["2024-07-25T04:04:24.010000"],["2024-07-25T04:04:25.010000"],["2024-07-25T04:04:26.010000"],["2024-07-25T04:04:27.010000"],["2024-07-25T04:04:28.010000"],["2024-07-25T04:04:29.010000"],["2024-07-25T04:04:30.010000"],["2024-07-25T04:04:31.010000"],["2024-07-25T04:04:32.010000"],["2024-07-25T04:04:33.010000"],["2024-07-25T04:04:34.010000"],["2024-07-25T04:04:35.010000"],["2024-07-25T04:04:36.010000"],["2024-07-25T04:04:37.010000"],["2024-07-25T04:04:38.010000"],["2024-07-25T04:04:39.010000"],["2024-07-25T04:04:40.010000"],["2024-07-25T04:04:41.010000"],["2024-07-25T04:04:42.010000"],["2024-07-25T04:04:43.010000"],["2024-07-25T04:04:44.010000"],["2024-07-25T04:04:45.010000"],["2024-07-25T04:04:46.010000"],["2024-07-25T04:04:47.010000"],["2024-07-25T04:04:48.010000"],["2024-07-25T04:04:49.010000"],["2024-07-25T04:04:50.010000"],["2024-07-25T04:04:51.010000"],["2024-07-25T04:04:52.010000"],["2024-07-25T04:04:53.010000"],["2024-07-25T04:04:54.010000"],["2024-07-25T04:04:55.010000"],["2024-07-25T04:04:56.010000"],["2024-07-25T04:04:57.010000"],["2024-07-25T04:04:58.010000"],["2024-07-25T04:04:59.010000"],["2024-07-25T04:05:00.010000"],["2024-07-25T04:05:01.010000"],["2024-07-25T04:05:02.010000"],["2024-07-25T04:05:03.010000"],["2024-07-25T04:05:04.010000"],["2024-07-25T04:05:05.010000"],["2024-07-25T04:05:06.010000"],["2024-07-25T04:05:07.010000"],["2024-07-25T04:05:08.010000"],["2024-07-25T04:05:09.010000"],["2024-07-25T04:05:10.010000"],["2024-07-25T04:05:11.010000"],["2024-07-25T04:05:12.010000"],["2024-07-25T04:05:13.010000"],["2024-07-25T04:05:14.010000"],["2024-07-25T04:05:15.010000"],["2024-07-25T04:05:16.010000"],["2024-07-25T04:05:17.010000"],["2024-07-25T04:05:18.010000"],["2024-07-25T04:05:19.010000"],["2024-07-25T04:05:20.010000"],["2024-07-25T04:05:21.010000"],["2024-07-25T04:05:22.010000"],["2024-07-25T04:05:23.010000"],["2024-07-25T04:05:24.010000"],["2024-07-25T04:05:25.010000"],["2024-07-25T04:05:26.010000"],["2024-07-25T04:05:27.010000"],["2024-07-25T04:05:28.010000"],["2024-07-25T04:05:29.010000"],["2024-07-25T04:05:30.010000"],["2024-07-25T04:05:31.010000"],["2024-07-25T04:05:32.010000"],["2024-07-25T04:05:33.010000"],["2024-07-25T04:05:34.010000"],["2024-07-25T04:05:35.010000"],["2024-07-25T04:05:36.010000"],["2024-07-25T04:05:37.010000"],["2024-07-25T04:05:38.010000"],["2024-07-25T04:05:39.010000"],["2024-07-25T04:05:40.010000"],["2024-07-25T04:05:41.010000"],["2024-07-25T04:05:42.010000"],["2024-07-25T04:05:43.010000"],["2024-07-25T04:05:44.010000"],["2024-07-25T04:05:45.010000"],["2024-07-25T04:05:46.010000"],["2024-07-25T04:05:47.010000"],["2024-07-25T04:05:48.010000"],["2024-07-25T04:05:49.010000"],["2024-07-25T04:05:50.010000"],["2024-07-25T04:05:51.010000"],["2024-07-25T04:05:52.010000"],["2024-07-25T04:05:53.010000"],["2024-07-25T04:05:54.010000"],["2024-07-25T04:05:55.010000"],["2024-07-25T04:05:56.010000"],["2024-07-25T04:05:57.010000"],["2024-07-25T04:05:58.010000"],["2024-07-25T04:05:59.010000"],["2024-07-25T04:06:00.010000"],["2024-07-25T04:06:01.010000"],["2024-07-25T04:06:02.010000"],["2024-07-25T04:06:03.010000"],["2024-07-25T04:06:04.010000"],["2024-07-25T04:06:05.010000"],["2024-07-25T04:06:06.010000"],["2024-07-25T04:06:07.010000"],["2024-07-25T04:06:08.010000"],["2024-07-25T04:06:09.010000"],["2024-07-25T04:06:10.010000"],["2024-07-25T04:06:11.010000"],["2024-07-25T04:06:12.010000"],["2024-07-25T04:06:13.010000"],["2024-07-25T04:06:14.010000"],["2024-07-25T04:06:15.010000"],["2024-07-25T04:06:16.010000"],["2024-07-25T04:06:17.010000"],["2024-07-25T04:06:18.010000"],["2024-07-25T04:06:19.010000"],["2024-07-25T04:06:20.010000"],["2024-07-25T04:06:21.010000"],["2024-07-25T04:06:22.010000"],["2024-07-25T04:06:23.010000"],["2024-07-25T04:06:24.010000"],["2024-07-25T04:06:25.010000"],["2024-07-25T04:06:26.010000"],["2024-07-25T04:06:27.010000"],["2024-07-25T04:06:28.010000"],["2024-07-25T04:06:29.010000"],["2024-07-25T04:06:30.010000"],["2024-07-25T04:06:31.010000"],["2024-07-25T04:06:32.010000"],["2024-07-25T04:06:33.010000"],["2024-07-25T04:06:34.010000"],["2024-07-25T04:06:35.010000"],["2024-07-25T04:06:36.010000"],["2024-07-25T04:06:37.010000"],["2024-07-25T04:06:38.010000"],["2024-07-25T04:06:39.010000"],["2024-07-25T04:06:40.010000"],["2024-07-25T04:06:41.010000"],["2024-07-25T04:06:42.010000"],["2024-07-25T04:06:43.010000"],["2024-07-25T04:06:44.010000"],["2024-07-25T04:06:45.010000"],["2024-07-25T04:06:46.010000"],["2024-07-25T04:06:47.010000"],["2024-07-25T04:06:48.010000"],["2024-07-25T04:06:49.010000"],["2024-07-25T04:06:50.010000"],["2024-07-25T04:06:51.010000"],["2024-07-25T04:06:52.010000"],["2024-07-25T04:06:53.010000"],["2024-07-25T04:06:54.010000"],["2024-07-25T04:06:55.010000"],["2024-07-25T04:06:56.010000"],["2024-07-25T04:06:57.010000"],["2024-07-25T04:06:58.010000"],["2024-07-25T04:06:59.010000"],["2024-07-25T04:07:00.010000"],["2024-07-25T04:07:01.010000"],["2024-07-25T04:07:02.010000"],["2024-07-25T04:07:03.010000"],["2024-07-25T04:07:04.010000"],["2024-07-25T04:07:05.010000"],["2024-07-25T04:07:06.010000"],["2024-07-25T04:07:07.010000"],["2024-07-25T04:07:08.010000"],["2024-07-25T04:07:09.010000"],["2024-07-25T04:07:10.010000"],["2024-07-25T04:07:11.010000"],["2024-07-25T04:07:12.010000"],["2024-07-25T04:07:13.010000"],["2024-07-25T04:07:14.010000"],["2024-07-25T04:07:15.010000"],["2024-07-25T04:07:16.010000"],["2024-07-25T04:07:17.010000"],["2024-07-25T04:07:18.010000"],["2024-07-25T04:07:19.010000"],["2024-07-25T04:07:20.010000"],["2024-07-25T04:07:21.010000"],["2024-07-25T04:07:22.010000"],["2024-07-25T04:07:23.010000"],["2024-07-25T04:07:24.010000"],["2024-07-25T04:07:25.010000"],["2024-07-25T04:07:26.010000"],["2024-07-25T04:07:27.010000"],["2024-07-25T04:07:28.010000"],["2024-07-25T04:07:29.010000"],["2024-07-25T04:07:30.010000"],["2024-07-25T04:07:31.010000"],["2024-07-25T04:07:32.010000"],["2024-07-25T04:07:33.010000"],["2024-07-25T04:07:34.010000"],["2024-07-25T04:07:35.010000"],["2024-07-25T04:07:36.010000"],["2024-07-25T04:07:37.010000"],["2024-07-25T04:07:38.010000"],["2024-07-25T04:07:39.010000"],["2024-07-25T04:07:40.010000"],["2024-07-25T04:07:41.010000"],["2024-07-25T04:07:42.010000"],["2024-07-25T04:07:43.010000"],["2024-07-25T04:07:44.010000"],["2024-07-25T04:07:45.010000"],["2024-07-25T04:07:46.010000"],["2024-07-25T04:07:47.010000"],["2024-07-25T04:07:48.010000"],["2024-07-25T04:07:49.010000"],["2024-07-25T04:07:50.010000"],["2024-07-25T04:07:51.010000"],["2024-07-25T04:07:52.010000"],["2024-07-25T04:07:53.010000"],["2024-07-25T04:07:54.010000"],["2024-07-25T04:07:55.010000"],["2024-07-25T04:07:56.010000"],["2024-07-25T04:07:57.010000"],["2024-07-25T04:07:58.010000"],["2024-07-25T04:07:59.010000"],["2024-07-25T04:08:00.010000"],["2024-07-25T04:08:01.010000"],["2024-07-25T04:08:02.010000"],["2024-07-25T04:08:03.010000"],["2024-07-25T04:08:04.010000"],["2024-07-25T04:08:05.010000"],["2024-07-25T04:08:06.010000"],["2024-07-25T04:08:07.010000"],["2024-07-25T04:08:08.010000"],["2024-07-25T04:08:09.010000"],["2024-07-25T04:08:10.010000"],["2024-07-25T04:08:11.010000"],["2024-07-25T04:08:12.010000"],["2024-07-25T04:08:13.010000"],["2024-07-25T04:08:14.010000"],["2024-07-25T04:08:15.010000"],["2024-07-25T04:08:16.010000"],["2024-07-25T04:08:17.010000"],["2024-07-25T04:08:18.010000"],["2024-07-25T04:08:19.010000"],["2024-07-25T04:08:20.010000"],["2024-07-25T04:08:21.010000"],["2024-07-25T04:08:22.010000"],["2024-07-25T04:08:23.010000"],["2024-07-25T04:08:24.010000"],["2024-07-25T04:08:25.010000"],["2024-07-25T04:08:26.010000"],["2024-07-25T04:08:27.010000"],["2024-07-25T04:08:28.010000"],["2024-07-25T04:08:29.010000"],["2024-07-25T04:08:30.010000"],["2024-07-25T04:08:31.010000"],["2024-07-25T04:08:32.010000"],["2024-07-25T04:08:33.010000"],["2024-07-25T04:08:34.010000"],["2024-07-25T04:08:35.010000"],["2024-07-25T04:08:36.010000"],["2024-07-25T04:08:37.010000"],["2024-07-25T04:08:38.010000"],["2024-07-25T04:08:39.010000"],["2024-07-25T04:08:40.010000"],["2024-07-25T04:08:41.010000"],["2024-07-25T04:08:42.010000"],["2024-07-25T04:08:43.010000"],["2024-07-25T04:08:44.010000"],["2024-07-25T04:08:45.010000"],["2024-07-25T04:08:46.010000"],["2024-07-25T04:08:47.010000"],["2024-07-25T04:08:48.010000"],["2024-07-25T04:08:49.010000"],["2024-07-25T04:08:50.010000"],["2024-07-25T04:08:51.010000"],["2024-07-25T04:08:52.010000"],["2024-07-25T04:08:53.010000"],["2024-07-25T04:08:54.010000"],["2024-07-25T04:08:55.010000"],["2024-07-25T04:08:56.010000"],["2024-07-25T04:08:57.010000"],["2024-07-25T04:08:58.010000"],["2024-07-25T04:08:59.010000"],["2024-07-25T04:09:00.010000"],["2024-07-25T04:09:01.010000"],["2024-07-25T04:09:02.010000"],["2024-07-25T04:09:03.010000"],["2024-07-25T04:09:04.010000"],["2024-07-25T04:09:05.010000"],["2024-07-25T04:09:06.010000"],["2024-07-25T04:09:07.010000"],["2024-07-25T04:09:08.010000"],["2024-07-25T04:09:09.010000"],["2024-07-25T04:09:10.010000"],["2024-07-25T04:09:11.010000"],["2024-07-25T04:09:12.010000"],["2024-07-25T04:09:13.010000"],["2024-07-25T04:09:14.010000"],["2024-07-25T04:09:15.010000"],["2024-07-25T04:09:16.010000"],["2024-07-25T04:09:17.010000"],["2024-07-25T04:09:18.010000"],["2024-07-25T04:09:19.010000"],["2024-07-25T04:09:20.010000"],["2024-07-25T04:09:21.010000"],["2024-07-25T04:09:22.010000"],["2024-07-25T04:09:23.010000"],["2024-07-25T04:09:24.010000"],["2024-07-25T04:09:25.010000"],["2024-07-25T04:09:26.010000"],["2024-07-25T04:09:27.010000"],["2024-07-25T04:09:28.010000"],["2024-07-25T04:09:29.010000"],["2024-07-25T04:09:30.010000"],["2024-07-25T04:09:31.010000"],["2024-07-25T04:09:32.010000"],["2024-07-25T04:09:33.010000"],["2024-07-25T04:09:34.010000"],["2024-07-25T04:09:35.010000"],["2024-07-25T04:09:36.010000"],["2024-07-25T04:09:37.010000"],["2024-07-25T04:09:38.010000"],["2024-07-25T04:09:39.010000"],["2024-07-25T04:09:40.010000"],["2024-07-25T04:09:41.010000"],["2024-07-25T04:09:42.010000"],["2024-07-25T04:09:43.010000"],["2024-07-25T04:09:44.010000"],["2024-07-25T04:09:45.010000"],["2024-07-25T04:09:46.010000"],["2024-07-25T04:09:47.010000"],["2024-07-25T04:09:48.010000"],["2024-07-25T04:09:49.010000"],["2024-07-25T04:09:50.010000"],["2024-07-25T04:09:51.010000"],["2024-07-25T04:09:52.010000"],["2024-07-25T04:09:53.010000"],["2024-07-25T04:09:54.010000"],["2024-07-25T04:09:55.010000"],["2024-07-25T04:09:56.010000"],["2024-07-25T04:09:57.010000"],["2024-07-25T04:09:58.010000"],["2024-07-25T04:09:59.010000"],["2024-07-25T04:10:00.010000"],["2024-07-25T04:10:01.010000"],["2024-07-25T04:10:02.010000"],["2024-07-25T04:10:03.010000"],["2024-07-25T04:10:04.010000"],["2024-07-25T04:10:05.010000"],["2024-07-25T04:10:06.010000"],["2024-07-25T04:10:07.010000"],["2024-07-25T04:10:08.010000"],["2024-07-25T04:10:09.010000"],["2024-07-25T04:10:10.010000"],["2024-07-25T04:10:11.010000"],["2024-07-25T04:10:12.010000"],["2024-07-25T04:10:13.010000"],["2024-07-25T04:10:14.010000"],["2024-07-25T04:10:15.010000"],["2024-07-25T04:10:16.010000"],["2024-07-25T04:10:17.010000"],["2024-07-25T04:10:18.010000"],["2024-07-25T04:10:19.010000"],["2024-07-25T04:10:20.010000"],["2024-07-25T04:10:21.010000"],["2024-07-25T04:10:22.010000"],["2024-07-25T04:10:23.010000"],["2024-07-25T04:10:24.010000"],["2024-07-25T04:10:25.010000"],["2024-07-25T04:10:26.010000"],["2024-07-25T04:10:27.010000"],["2024-07-25T04:10:28.010000"],["2024-07-25T04:10:29.010000"],["2024-07-25T04:10:30.010000"],["2024-07-25T04:10:31.010000"],["2024-07-25T04:10:32.010000"],["2024-07-25T04:10:33.010000"],["2024-07-25T04:10:34.010000"],["2024-07-25T04:10:35.010000"],["2024-07-25T04:10:36.010000"],["2024-07-25T04:10:37.010000"],["2024-07-25T04:10:38.010000"],["2024-07-25T04:10:39.010000"],["2024-07-25T04:10:40.010000"],["2024-07-25T04:10:41.010000"],["2024-07-25T04:10:42.010000"],["2024-07-25T04:10:43.010000"],["2024-07-25T04:10:44.010000"],["2024-07-25T04:10:45.010000"],["2024-07-25T04:10:46.010000"],["2024-07-25T04:10:47.010000"],["2024-07-25T04:10:48.010000"],["2024-07-25T04:10:49.010000"],["2024-07-25T04:10:50.010000"],["2024-07-25T04:10:51.010000"],["2024-07-25T04:10:52.010000"],["2024-07-25T04:10:53.010000"],["2024-07-25T04:10:54.010000"],["2024-07-25T04:10:55.010000"],["2024-07-25T04:10:56.010000"],["2024-07-25T04:10:57.010000"],["2024-07-25T04:10:58.010000"],["2024-07-25T04:10:59.010000"],["2024-07-25T04:11:00.010000"],["2024-07-25T04:11:01.010000"],["2024-07-25T04:11:02.010000"],["2024-07-25T04:11:03.010000"],["2024-07-25T04:11:04.010000"],["2024-07-25T04:11:05.010000"],["2024-07-25T04:11:06.010000"],["2024-07-25T04:11:07.010000"],["2024-07-25T04:11:08.010000"],["2024-07-25T04:11:09.010000"],["2024-07-25T04:11:10.010000"],["2024-07-25T04:11:11.010000"],["2024-07-25T04:11:12.010000"],["2024-07-25T04:11:13.010000"],["2024-07-25T04:11:14.010000"],["2024-07-25T04:11:15.010000"],["2024-07-25T04:11:16.010000"],["2024-07-25T04:11:17.010000"],["2024-07-25T04:11:18.010000"],["2024-07-25T04:11:19.010000"],["2024-07-25T04:11:20.010000"],["2024-07-25T04:11:21.010000"],["2024-07-25T04:11:22.010000"],["2024-07-25T04:11:23.010000"],["2024-07-25T04:11:24.010000"],["2024-07-25T04:11:25.010000"],["2024-07-25T04:11:26.010000"],["2024-07-25T04:11:27.010000"],["2024-07-25T04:11:28.010000"],["2024-07-25T04:11:29.010000"],["2024-07-25T04:11:30.010000"],["2024-07-25T04:11:31.010000"],["2024-07-25T04:11:32.010000"],["2024-07-25T04:11:33.010000"],["2024-07-25T04:11:34.010000"],["2024-07-25T04:11:35.010000"],["2024-07-25T04:11:36.010000"],["2024-07-25T04:11:37.010000"],["2024-07-25T04:11:38.010000"],["2024-07-25T04:11:39.010000"],["2024-07-25T04:11:40.010000"],["2024-07-25T04:11:41.010000"],["2024-07-25T04:11:42.010000"],["2024-07-25T04:11:43.010000"],["2024-07-25T04:11:44.010000"],["2024-07-25T04:11:45.010000"],["2024-07-25T04:11:46.010000"],["2024-07-25T04:11:47.010000"],["2024-07-25T04:11:48.010000"],["2024-07-25T04:11:49.010000"],["2024-07-25T04:11:50.010000"],["2024-07-25T04:11:51.010000"],["2024-07-25T04:11:52.010000"],["2024-07-25T04:11:53.010000"],["2024-07-25T04:11:54.010000"],["2024-07-25T04:11:55.010000"],["2024-07-25T04:11:56.010000"],["2024-07-25T04:11:57.010000"],["2024-07-25T04:11:58.010000"],["2024-07-25T04:11:59.010000"],["2024-07-25T04:12:00.010000"],["2024-07-25T04:12:01.010000"],["2024-07-25T04:12:02.010000"],["2024-07-25T04:12:03.010000"],["2024-07-25T04:12:04.010000"],["2024-07-25T04:12:05.010000"],["2024-07-25T04:12:06.010000"],["2024-07-25T04:12:07.010000"],["2024-07-25T04:12:08.010000"],["2024-07-25T04:12:09.010000"],["2024-07-25T04:12:10.010000"],["2024-07-25T04:12:11.010000"],["2024-07-25T04:12:12.010000"],["2024-07-25T04:12:13.010000"],["2024-07-25T04:12:14.010000"],["2024-07-25T04:12:15.010000"],["2024-07-25T04:12:16.010000"],["2024-07-25T04:12:17.010000"],["2024-07-25T04:12:18.010000"],["2024-07-25T04:12:19.010000"],["2024-07-25T04:12:20.010000"],["2024-07-25T04:12:21.010000"],["2024-07-25T04:12:22.010000"],["2024-07-25T04:12:23.010000"],["2024-07-25T04:12:24.010000"],["2024-07-25T04:12:25.010000"],["2024-07-25T04:12:26.010000"],["2024-07-25T04:12:27.010000"],["2024-07-25T04:12:28.010000"],["2024-07-25T04:12:29.010000"],["2024-07-25T04:12:30.010000"],["2024-07-25T04:12:31.010000"],["2024-07-25T04:12:32.010000"],["2024-07-25T04:12:33.010000"],["2024-07-25T04:12:34.010000"],["2024-07-25T04:12:35.010000"],["2024-07-25T04:12:36.010000"],["2024-07-25T04:12:37.010000"],["2024-07-25T04:12:38.010000"],["2024-07-25T04:12:39.010000"],["2024-07-25T04:12:40.010000"],["2024-07-25T04:12:41.010000"],["2024-07-25T04:12:42.010000"],["2024-07-25T04:12:43.010000"],["2024-07-25T04:12:44.010000"],["2024-07-25T04:12:45.010000"],["2024-07-25T04:12:46.010000"],["2024-07-25T04:12:47.010000"],["2024-07-25T04:12:48.010000"],["2024-07-25T04:12:49.010000"],["2024-07-25T04:12:50.010000"],["2024-07-25T04:12:51.010000"],["2024-07-25T04:12:52.010000"],["2024-07-25T04:12:53.010000"],["2024-07-25T04:12:54.010000"],["2024-07-25T04:12:55.010000"],["2024-07-25T04:12:56.010000"],["2024-07-25T04:12:57.010000"],["2024-07-25T04:12:58.010000"],["2024-07-25T04:12:59.010000"],["2024-07-25T04:13:00.010000"],["2024-07-25T04:13:01.010000"],["2024-07-25T04:13:02.010000"],["2024-07-25T04:13:03.010000"],["2024-07-25T04:13:04.010000"],["2024-07-25T04:13:05.010000"],["2024-07-25T04:13:06.010000"],["2024-07-25T04:13:07.010000"],["2024-07-25T04:13:08.010000"],["2024-07-25T04:13:09.010000"],["2024-07-25T04:13:10.010000"],["2024-07-25T04:13:11.010000"],["2024-07-25T04:13:12.010000"],["2024-07-25T04:13:13.010000"],["2024-07-25T04:13:14.010000"],["2024-07-25T04:13:15.010000"],["2024-07-25T04:13:16.010000"],["2024-07-25T04:13:17.010000"],["2024-07-25T04:13:18.010000"],["2024-07-25T04:13:19.010000"],["2024-07-25T04:13:20.010000"],["2024-07-25T04:13:21.010000"],["2024-07-25T04:13:22.010000"],["2024-07-25T04:13:23.010000"],["2024-07-25T04:13:24.010000"],["2024-07-25T04:13:25.010000"],["2024-07-25T04:13:26.010000"],["2024-07-25T04:13:27.010000"],["2024-07-25T04:13:28.010000"],["2024-07-25T04:13:29.010000"],["2024-07-25T04:13:30.010000"],["2024-07-25T04:13:31.010000"],["2024-07-25T04:13:32.010000"],["2024-07-25T04:13:33.010000"],["2024-07-25T04:13:34.010000"],["2024-07-25T04:13:35.010000"],["2024-07-25T04:13:36.010000"],["2024-07-25T04:13:37.010000"],["2024-07-25T04:13:38.010000"],["2024-07-25T04:13:39.010000"],["2024-07-25T04:13:40.010000"],["2024-07-25T04:13:41.010000"],["2024-07-25T04:13:42.010000"],["2024-07-25T04:13:43.010000"],["2024-07-25T04:13:44.010000"],["2024-07-25T04:13:45.010000"],["2024-07-25T04:13:46.010000"],["2024-07-25T04:13:47.010000"],["2024-07-25T04:13:48.010000"],["2024-07-25T04:13:49.010000"],["2024-07-25T04:13:50.010000"],["2024-07-25T04:13:51.010000"],["2024-07-25T04:13:52.010000"],["2024-07-25T04:13:53.010000"],["2024-07-25T04:13:54.010000"],["2024-07-25T04:13:55.010000"],["2024-07-25T04:13:56.010000"],["2024-07-25T04:13:57.010000"],["2024-07-25T04:13:58.010000"],["2024-07-25T04:13:59.010000"],["2024-07-25T04:14:00.010000"],["2024-07-25T04:14:01.010000"],["2024-07-25T04:14:02.010000"],["2024-07-25T04:14:03.010000"],["2024-07-25T04:14:04.010000"],["2024-07-25T04:14:05.010000"],["2024-07-25T04:14:06.010000"],["2024-07-25T04:14:07.010000"],["2024-07-25T04:14:08.010000"],["2024-07-25T04:14:09.010000"],["2024-07-25T04:14:10.010000"],["2024-07-25T04:14:11.010000"],["2024-07-25T04:14:12.010000"],["2024-07-25T04:14:13.010000"],["2024-07-25T04:14:14.010000"],["2024-07-25T04:14:15.010000"],["2024-07-25T04:14:16.010000"],["2024-07-25T04:14:17.010000"],["2024-07-25T04:14:18.010000"],["2024-07-25T04:14:19.010000"],["2024-07-25T04:14:20.010000"],["2024-07-25T04:14:21.010000"],["2024-07-25T04:14:22.010000"],["2024-07-25T04:14:23.010000"],["2024-07-25T04:14:24.010000"],["2024-07-25T04:14:25.010000"],["2024-07-25T04:14:26.010000"],["2024-07-25T04:14:27.010000"],["2024-07-25T04:14:28.010000"],["2024-07-25T04:14:29.010000"],["2024-07-25T04:14:30.010000"],["2024-07-25T04:14:31.010000"],["2024-07-25T04:14:32.010000"],["2024-07-25T04:14:33.010000"],["2024-07-25T04:14:34.010000"],["2024-07-25T04:14:35.010000"],["2024-07-25T04:14:36.010000"],["2024-07-25T04:14:37.010000"],["2024-07-25T04:14:38.010000"],["2024-07-25T04:14:39.010000"],["2024-07-25T04:14:40.010000"],["2024-07-25T04:14:41.010000"],["2024-07-25T04:14:42.010000"],["2024-07-25T04:14:43.010000"],["2024-07-25T04:14:44.010000"],["2024-07-25T04:14:45.010000"],["2024-07-25T04:14:46.010000"],["2024-07-25T04:14:47.010000"],["2024-07-25T04:14:48.010000"],["2024-07-25T04:14:49.010000"],["2024-07-25T04:14:50.010000"],["2024-07-25T04:14:51.010000"],["2024-07-25T04:14:52.010000"],["2024-07-25T04:14:53.010000"],["2024-07-25T04:14:54.010000"],["2024-07-25T04:14:55.010000"],["2024-07-25T04:14:56.010000"],["2024-07-25T04:14:57.010000"],["2024-07-25T04:14:58.010000"],["2024-07-25T04:14:59.010000"],["2024-07-25T04:15:00.010000"],["2024-07-25T04:15:01.010000"],["2024-07-25T04:15:02.010000"],["2024-07-25T04:15:03.010000"],["2024-07-25T04:15:04.010000"],["2024-07-25T04:15:05.010000"],["2024-07-25T04:15:06.010000"],["2024-07-25T04:15:07.010000"],["2024-07-25T04:15:08.010000"],["2024-07-25T04:15:09.010000"],["2024-07-25T04:15:10.010000"],["2024-07-25T04:15:11.010000"],["2024-07-25T04:15:12.010000"],["2024-07-25T04:15:13.010000"],["2024-07-25T04:15:14.010000"],["2024-07-25T04:15:15.010000"],["2024-07-25T04:15:16.010000"],["2024-07-25T04:15:17.010000"],["2024-07-25T04:15:18.010000"],["2024-07-25T04:15:19.010000"],["2024-07-25T04:15:20.010000"],["2024-07-25T04:15:21.010000"],["2024-07-25T04:15:22.010000"],["2024-07-25T04:15:23.010000"],["2024-07-25T04:15:24.010000"],["2024-07-25T04:15:25.010000"],["2024-07-25T04:15:26.010000"],["2024-07-25T04:15:27.010000"],["2024-07-25T04:15:28.010000"],["2024-07-25T04:15:29.010000"],["2024-07-25T04:15:30.010000"],["2024-07-25T04:15:31.010000"],["2024-07-25T04:15:32.010000"],["2024-07-25T04:15:33.010000"],["2024-07-25T04:15:34.010000"],["2024-07-25T04:15:35.010000"],["2024-07-25T04:15:36.010000"],["2024-07-25T04:15:37.010000"],["2024-07-25T04:15:38.010000"],["2024-07-25T04:15:39.010000"],["2024-07-25T04:15:40.010000"],["2024-07-25T04:15:41.010000"],["2024-07-25T04:15:42.010000"],["2024-07-25T04:15:43.010000"],["2024-07-25T04:15:44.010000"],["2024-07-25T04:15:45.010000"],["2024-07-25T04:15:46.010000"],["2024-07-25T04:15:47.010000"],["2024-07-25T04:15:48.010000"],["2024-07-25T04:15:49.010000"],["2024-07-25T04:15:50.010000"],["2024-07-25T04:15:51.010000"],["2024-07-25T04:15:52.010000"],["2024-07-25T04:15:53.010000"],["2024-07-25T04:15:54.010000"],["2024-07-25T04:15:55.010000"],["2024-07-25T04:15:56.010000"],["2024-07-25T04:15:57.010000"],["2024-07-25T04:15:58.010000"],["2024-07-25T04:15:59.010000"],["2024-07-25T04:16:00.010000"],["2024-07-25T04:16:01.010000"],["2024-07-25T04:16:02.010000"],["2024-07-25T04:16:03.010000"],["2024-07-25T04:16:04.010000"],["2024-07-25T04:16:05.010000"],["2024-07-25T04:16:06.010000"],["2024-07-25T04:16:07.010000"],["2024-07-25T04:16:08.010000"],["2024-07-25T04:16:09.010000"],["2024-07-25T04:16:10.010000"],["2024-07-25T04:16:11.010000"],["2024-07-25T04:16:12.010000"],["2024-07-25T04:16:13.010000"],["2024-07-25T04:16:14.010000"],["2024-07-25T04:16:15.010000"],["2024-07-25T04:16:16.010000"],["2024-07-25T04:16:17.010000"],["2024-07-25T04:16:18.010000"],["2024-07-25T04:16:19.010000"],["2024-07-25T04:16:20.010000"],["2024-07-25T04:16:21.010000"],["2024-07-25T04:16:22.010000"],["2024-07-25T04:16:23.010000"],["2024-07-25T04:16:24.010000"],["2024-07-25T04:16:25.010000"],["2024-07-25T04:16:26.010000"],["2024-07-25T04:16:27.010000"],["2024-07-25T04:16:28.010000"],["2024-07-25T04:16:29.010000"],["2024-07-25T04:16:30.010000"],["2024-07-25T04:16:31.010000"],["2024-07-25T04:16:32.010000"],["2024-07-25T04:16:33.010000"],["2024-07-25T04:16:34.010000"],["2024-07-25T04:16:35.010000"],["2024-07-25T04:16:36.010000"],["2024-07-25T04:16:37.010000"],["2024-07-25T04:16:38.010000"],["2024-07-25T04:16:39.010000"],["2024-07-25T04:16:40.010000"],["2024-07-25T04:16:41.010000"],["2024-07-25T04:16:42.010000"],["2024-07-25T04:16:43.010000"],["2024-07-25T04:16:44.010000"],["2024-07-25T04:16:45.010000"],["2024-07-25T04:16:46.010000"],["2024-07-25T04:16:47.010000"],["2024-07-25T04:16:48.010000"],["2024-07-25T04:16:49.010000"],["2024-07-25T04:16:50.010000"],["2024-07-25T04:16:51.010000"],["2024-07-25T04:16:52.010000"],["2024-07-25T04:16:53.010000"],["2024-07-25T04:16:54.010000"],["2024-07-25T04:16:55.010000"],["2024-07-25T04:16:56.010000"],["2024-07-25T04:16:57.010000"],["2024-07-25T04:16:58.010000"],["2024-07-25T04:16:59.010000"],["2024-07-25T04:17:00.010000"],["2024-07-25T04:17:01.010000"],["2024-07-25T04:17:02.010000"],["2024-07-25T04:17:03.010000"],["2024-07-25T04:17:04.010000"],["2024-07-25T04:17:05.010000"],["2024-07-25T04:17:06.010000"],["2024-07-25T04:17:07.010000"],["2024-07-25T04:17:08.010000"],["2024-07-25T04:17:09.010000"],["2024-07-25T04:17:10.010000"],["2024-07-25T04:17:11.010000"],["2024-07-25T04:17:12.010000"],["2024-07-25T04:17:13.010000"],["2024-07-25T04:17:14.010000"],["2024-07-25T04:17:15.010000"],["2024-07-25T04:17:16.010000"],["2024-07-25T04:17:17.010000"],["2024-07-25T04:17:18.010000"],["2024-07-25T04:17:19.010000"],["2024-07-25T04:17:20.010000"],["2024-07-25T04:17:21.010000"],["2024-07-25T04:17:22.010000"],["2024-07-25T04:17:23.010000"],["2024-07-25T04:17:24.010000"],["2024-07-25T04:17:25.010000"],["2024-07-25T04:17:26.010000"],["2024-07-25T04:17:27.010000"],["2024-07-25T04:17:28.010000"],["2024-07-25T04:17:29.010000"],["2024-07-25T04:17:30.010000"],["2024-07-25T04:17:31.010000"],["2024-07-25T04:17:32.010000"],["2024-07-25T04:17:33.010000"],["2024-07-25T04:17:34.010000"],["2024-07-25T04:17:35.010000"],["2024-07-25T04:17:36.010000"],["2024-07-25T04:17:37.010000"],["2024-07-25T04:17:38.010000"],["2024-07-25T04:17:39.010000"],["2024-07-25T04:17:40.010000"],["2024-07-25T04:17:41.010000"],["2024-07-25T04:17:42.010000"],["2024-07-25T04:17:43.010000"],["2024-07-25T04:17:44.010000"],["2024-07-25T04:17:45.010000"],["2024-07-25T04:17:46.010000"],["2024-07-25T04:17:47.010000"],["2024-07-25T04:17:48.010000"],["2024-07-25T04:17:49.010000"],["2024-07-25T04:17:50.010000"],["2024-07-25T04:17:51.010000"],["2024-07-25T04:17:52.010000"],["2024-07-25T04:17:53.010000"],["2024-07-25T04:17:54.010000"],["2024-07-25T04:17:55.010000"],["2024-07-25T04:17:56.010000"],["2024-07-25T04:17:57.010000"],["2024-07-25T04:17:58.010000"],["2024-07-25T04:17:59.010000"],["2024-07-25T04:18:00.010000"],["2024-07-25T04:18:01.010000"],["2024-07-25T04:18:02.010000"],["2024-07-25T04:18:03.010000"],["2024-07-25T04:18:04.010000"],["2024-07-25T04:18:05.010000"],["2024-07-25T04:18:06.010000"],["2024-07-25T04:18:07.010000"],["2024-07-25T04:18:08.010000"],["2024-07-25T04:18:09.010000"],["2024-07-25T04:18:10.010000"],["2024-07-25T04:18:11.010000"],["2024-07-25T04:18:12.010000"],["2024-07-25T04:18:13.010000"],["2024-07-25T04:18:14.010000"],["2024-07-25T04:18:15.010000"],["2024-07-25T04:18:16.010000"],["2024-07-25T04:18:17.010000"],["2024-07-25T04:18:18.010000"],["2024-07-25T04:18:19.010000"],["2024-07-25T04:18:20.010000"],["2024-07-25T04:18:21.010000"],["2024-07-25T04:18:22.010000"],["2024-07-25T04:18:23.010000"],["2024-07-25T04:18:24.010000"],["2024-07-25T04:18:25.010000"],["2024-07-25T04:18:26.010000"],["2024-07-25T04:18:27.010000"],["2024-07-25T04:18:28.010000"],["2024-07-25T04:18:29.010000"],["2024-07-25T04:18:30.010000"],["2024-07-25T04:18:31.010000"],["2024-07-25T04:18:32.010000"],["2024-07-25T04:18:33.010000"],["2024-07-25T04:18:34.010000"],["2024-07-25T04:18:35.010000"],["2024-07-25T04:18:36.010000"],["2024-07-25T04:18:37.010000"],["2024-07-25T04:18:38.010000"],["2024-07-25T04:18:39.010000"],["2024-07-25T04:18:40.010000"],["2024-07-25T04:18:41.010000"],["2024-07-25T04:18:42.010000"],["2024-07-25T04:18:43.010000"],["2024-07-25T04:18:44.010000"],["2024-07-25T04:18:45.010000"],["2024-07-25T04:18:46.010000"],["2024-07-25T04:18:47.010000"],["2024-07-25T04:18:48.010000"],["2024-07-25T04:18:49.010000"],["2024-07-25T04:18:50.010000"],["2024-07-25T04:18:51.010000"],["2024-07-25T04:18:52.010000"],["2024-07-25T04:18:53.010000"],["2024-07-25T04:18:54.010000"],["2024-07-25T04:18:55.010000"],["2024-07-25T04:18:56.010000"],["2024-07-25T04:18:57.010000"],["2024-07-25T04:18:58.010000"],["2024-07-25T04:18:59.010000"],["2024-07-25T04:19:00.010000"],["2024-07-25T04:19:01.010000"],["2024-07-25T04:19:02.010000"],["2024-07-25T04:19:03.010000"],["2024-07-25T04:19:04.010000"],["2024-07-25T04:19:05.010000"],["2024-07-25T04:19:06.010000"],["2024-07-25T04:19:07.010000"],["2024-07-25T04:19:08.010000"],["2024-07-25T04:19:09.010000"],["2024-07-25T04:19:10.010000"],["2024-07-25T04:19:11.010000"],["2024-07-25T04:19:12.010000"],["2024-07-25T04:19:13.010000"],["2024-07-25T04:19:14.010000"],["2024-07-25T04:19:15.010000"],["2024-07-25T04:19:16.010000"],["2024-07-25T04:19:17.010000"],["2024-07-25T04:19:18.010000"],["2024-07-25T04:19:19.010000"],["2024-07-25T04:19:20.010000"],["2024-07-25T04:19:21.010000"],["2024-07-25T04:19:22.010000"],["2024-07-25T04:19:23.010000"],["2024-07-25T04:19:24.010000"],["2024-07-25T04:19:25.010000"],["2024-07-25T04:19:26.010000"],["2024-07-25T04:19:27.010000"],["2024-07-25T04:19:28.010000"],["2024-07-25T04:19:29.010000"],["2024-07-25T04:19:30.010000"],["2024-07-25T04:19:31.010000"],["2024-07-25T04:19:32.010000"],["2024-07-25T04:19:33.010000"],["2024-07-25T04:19:34.010000"],["2024-07-25T04:19:35.010000"],["2024-07-25T04:19:36.010000"],["2024-07-25T04:19:37.010000"],["2024-07-25T04:19:38.010000"],["2024-07-25T04:19:39.010000"],["2024-07-25T04:19:40.010000"],["2024-07-25T04:19:41.010000"],["2024-07-25T04:19:42.010000"],["2024-07-25T04:19:43.010000"],["2024-07-25T04:19:44.010000"],["2024-07-25T04:19:45.010000"],["2024-07-25T04:19:46.010000"],["2024-07-25T04:19:47.010000"],["2024-07-25T04:19:48.010000"],["2024-07-25T04:19:49.010000"],["2024-07-25T04:19:50.010000"],["2024-07-25T04:19:51.010000"],["2024-07-25T04:19:52.010000"],["2024-07-25T04:19:53.010000"],["2024-07-25T04:19:54.010000"],["2024-07-25T04:19:55.010000"],["2024-07-25T04:19:56.010000"],["2024-07-25T04:19:57.010000"],["2024-07-25T04:19:58.010000"],["2024-07-25T04:19:59.010000"],["2024-07-25T04:20:00.010000"],["2024-07-25T04:20:01.010000"],["2024-07-25T04:20:02.010000"],["2024-07-25T04:20:03.010000"],["2024-07-25T04:20:04.010000"],["2024-07-25T04:20:05.010000"],["2024-07-25T04:20:06.010000"],["2024-07-25T04:20:07.010000"],["2024-07-25T04:20:08.010000"],["2024-07-25T04:20:09.010000"],["2024-07-25T04:20:10.010000"],["2024-07-25T04:20:11.010000"],["2024-07-25T04:20:12.010000"],["2024-07-25T04:20:13.010000"],["2024-07-25T04:20:14.010000"],["2024-07-25T04:20:15.010000"],["2024-07-25T04:20:16.010000"],["2024-07-25T04:20:17.010000"],["2024-07-25T04:20:18.010000"],["2024-07-25T04:20:19.010000"],["2024-07-25T04:20:20.010000"],["2024-07-25T04:20:21.010000"],["2024-07-25T04:20:22.010000"],["2024-07-25T04:20:23.010000"],["2024-07-25T04:20:24.010000"],["2024-07-25T04:20:25.010000"],["2024-07-25T04:20:26.010000"],["2024-07-25T04:20:27.010000"],["2024-07-25T04:20:28.010000"],["2024-07-25T04:20:29.010000"],["2024-07-25T04:20:30.010000"],["2024-07-25T04:20:31.010000"],["2024-07-25T04:20:32.010000"],["2024-07-25T04:20:33.010000"],["2024-07-25T04:20:34.010000"],["2024-07-25T04:20:35.010000"],["2024-07-25T04:20:36.010000"],["2024-07-25T04:20:37.010000"],["2024-07-25T04:20:38.010000"],["2024-07-25T04:20:39.010000"],["2024-07-25T04:20:40.010000"],["2024-07-25T04:20:41.010000"],["2024-07-25T04:20:42.010000"],["2024-07-25T04:20:43.010000"],["2024-07-25T04:20:44.010000"],["2024-07-25T04:20:45.010000"],["2024-07-25T04:20:46.010000"],["2024-07-25T04:20:47.010000"],["2024-07-25T04:20:48.010000"],["2024-07-25T04:20:49.010000"],["2024-07-25T04:20:50.010000"],["2024-07-25T04:20:51.010000"],["2024-07-25T04:20:52.010000"],["2024-07-25T04:20:53.010000"],["2024-07-25T04:20:54.010000"],["2024-07-25T04:20:55.010000"],["2024-07-25T04:20:56.010000"],["2024-07-25T04:20:57.010000"],["2024-07-25T04:20:58.010000"],["2024-07-25T04:20:59.010000"],["2024-07-25T04:21:00.010000"],["2024-07-25T04:21:01.010000"],["2024-07-25T04:21:02.010000"],["2024-07-25T04:21:03.010000"],["2024-07-25T04:21:04.010000"],["2024-07-25T04:21:05.010000"],["2024-07-25T04:21:06.010000"],["2024-07-25T04:21:07.010000"],["2024-07-25T04:21:08.010000"],["2024-07-25T04:21:09.010000"],["2024-07-25T04:21:10.010000"],["2024-07-25T04:21:11.010000"],["2024-07-25T04:21:12.010000"],["2024-07-25T04:21:13.010000"],["2024-07-25T04:21:14.010000"],["2024-07-25T04:21:15.010000"],["2024-07-25T04:21:16.010000"],["2024-07-25T04:21:17.010000"],["2024-07-25T04:21:18.010000"],["2024-07-25T04:21:19.010000"],["2024-07-25T04:21:20.010000"],["2024-07-25T04:21:21.010000"],["2024-07-25T04:21:22.010000"],["2024-07-25T04:21:23.010000"],["2024-07-25T04:21:24.010000"],["2024-07-25T04:21:25.010000"],["2024-07-25T04:21:26.010000"],["2024-07-25T04:21:27.010000"],["2024-07-25T04:21:28.010000"],["2024-07-25T04:21:29.010000"],["2024-07-25T04:21:30.010000"],["2024-07-25T04:21:31.010000"],["2024-07-25T04:21:32.010000"],["2024-07-25T04:21:33.010000"],["2024-07-25T04:21:34.010000"],["2024-07-25T04:21:35.010000"],["2024-07-25T04:21:36.010000"],["2024-07-25T04:21:37.010000"],["2024-07-25T04:21:38.010000"],["2024-07-25T04:21:39.010000"],["2024-07-25T04:21:40.010000"],["2024-07-25T04:21:41.010000"],["2024-07-25T04:21:42.010000"],["2024-07-25T04:21:43.010000"],["2024-07-25T04:21:44.010000"],["2024-07-25T04:21:45.010000"],["2024-07-25T04:21:46.010000"],["2024-07-25T04:21:47.010000"],["2024-07-25T04:21:48.010000"],["2024-07-25T04:21:49.010000"],["2024-07-25T04:21:50.010000"],["2024-07-25T04:21:51.010000"],["2024-07-25T04:21:52.010000"],["2024-07-25T04:21:53.010000"],["2024-07-25T04:21:54.010000"],["2024-07-25T04:21:55.010000"],["2024-07-25T04:21:56.010000"],["2024-07-25T04:21:57.010000"],["2024-07-25T04:21:58.010000"],["2024-07-25T04:21:59.010000"],["2024-07-25T04:22:00.010000"],["2024-07-25T04:22:01.010000"],["2024-07-25T04:22:02.010000"],["2024-07-25T04:22:03.010000"],["2024-07-25T04:22:04.010000"],["2024-07-25T04:22:05.010000"],["2024-07-25T04:22:06.010000"],["2024-07-25T04:22:07.010000"],["2024-07-25T04:22:08.010000"],["2024-07-25T04:22:09.010000"],["2024-07-25T04:22:10.010000"],["2024-07-25T04:22:11.010000"],["2024-07-25T04:22:12.010000"],["2024-07-25T04:22:13.010000"],["2024-07-25T04:22:14.010000"],["2024-07-25T04:22:15.010000"],["2024-07-25T04:22:16.010000"],["2024-07-25T04:22:17.010000"],["2024-07-25T04:22:18.010000"],["2024-07-25T04:22:19.010000"],["2024-07-25T04:22:20.010000"],["2024-07-25T04:22:21.010000"],["2024-07-25T04:22:22.010000"],["2024-07-25T04:22:23.010000"],["2024-07-25T04:22:24.010000"],["2024-07-25T04:22:25.010000"],["2024-07-25T04:22:26.010000"],["2024-07-25T04:22:27.010000"],["2024-07-25T04:22:28.010000"],["2024-07-25T04:22:29.010000"],["2024-07-25T04:22:30.010000"],["2024-07-25T04:22:31.010000"],["2024-07-25T04:22:32.010000"],["2024-07-25T04:22:33.010000"],["2024-07-25T04:22:34.010000"],["2024-07-25T04:22:35.010000"],["2024-07-25T04:22:36.010000"],["2024-07-25T04:22:37.010000"],["2024-07-25T04:22:38.010000"],["2024-07-25T04:22:39.010000"],["2024-07-25T04:22:40.010000"],["2024-07-25T04:22:41.010000"],["2024-07-25T04:22:42.010000"],["2024-07-25T04:22:43.010000"],["2024-07-25T04:22:44.010000"],["2024-07-25T04:22:45.010000"],["2024-07-25T04:22:46.010000"],["2024-07-25T04:22:47.010000"],["2024-07-25T04:22:48.010000"],["2024-07-25T04:22:49.010000"],["2024-07-25T04:22:50.010000"],["2024-07-25T04:22:51.010000"],["2024-07-25T04:22:52.010000"],["2024-07-25T04:22:53.010000"],["2024-07-25T04:22:54.010000"],["2024-07-25T04:22:55.010000"],["2024-07-25T04:22:56.010000"],["2024-07-25T04:22:57.010000"],["2024-07-25T04:22:58.010000"],["2024-07-25T04:22:59.010000"],["2024-07-25T04:23:00.010000"],["2024-07-25T04:23:01.010000"],["2024-07-25T04:23:02.010000"],["2024-07-25T04:23:03.010000"],["2024-07-25T04:23:04.010000"],["2024-07-25T04:23:05.010000"],["2024-07-25T04:23:06.010000"],["2024-07-25T04:23:07.010000"],["2024-07-25T04:23:08.010000"],["2024-07-25T04:23:09.010000"],["2024-07-25T04:23:10.010000"],["2024-07-25T04:23:11.010000"],["2024-07-25T04:23:12.010000"],["2024-07-25T04:23:13.010000"],["2024-07-25T04:23:14.010000"],["2024-07-25T04:23:15.010000"],["2024-07-25T04:23:16.010000"],["2024-07-25T04:23:17.010000"],["2024-07-25T04:23:18.010000"],["2024-07-25T04:23:19.010000"],["2024-07-25T04:23:20.010000"],["2024-07-25T04:23:21.010000"],["2024-07-25T04:23:22.010000"],["2024-07-25T04:23:23.010000"],["2024-07-25T04:23:24.010000"],["2024-07-25T04:23:25.010000"],["2024-07-25T04:23:26.010000"],["2024-07-25T04:23:27.010000"],["2024-07-25T04:23:28.010000"],["2024-07-25T04:23:29.010000"],["2024-07-25T04:23:30.010000"],["2024-07-25T04:23:31.010000"],["2024-07-25T04:23:32.010000"],["2024-07-25T04:23:33.010000"],["2024-07-25T04:23:34.010000"],["2024-07-25T04:23:35.010000"],["2024-07-25T04:23:36.010000"],["2024-07-25T04:23:37.010000"],["2024-07-25T04:23:38.010000"],["2024-07-25T04:23:39.010000"],["2024-07-25T04:23:40.010000"],["2024-07-25T04:23:41.010000"],["2024-07-25T04:23:42.010000"],["2024-07-25T04:23:43.010000"],["2024-07-25T04:23:44.010000"],["2024-07-25T04:23:45.010000"],["2024-07-25T04:23:46.010000"],["2024-07-25T04:23:47.010000"],["2024-07-25T04:23:48.010000"],["2024-07-25T04:23:49.010000"],["2024-07-25T04:23:50.010000"],["2024-07-25T04:23:51.010000"],["2024-07-25T04:23:52.010000"],["2024-07-25T04:23:53.010000"],["2024-07-25T04:23:54.010000"],["2024-07-25T04:23:55.010000"],["2024-07-25T04:23:56.010000"],["2024-07-25T04:23:57.010000"],["2024-07-25T04:23:58.010000"],["2024-07-25T04:23:59.010000"],["2024-07-25T04:24:00.010000"],["2024-07-25T04:24:01.010000"],["2024-07-25T04:24:02.010000"],["2024-07-25T04:24:03.010000"],["2024-07-25T04:24:04.010000"],["2024-07-25T04:24:05.010000"],["2024-07-25T04:24:06.010000"],["2024-07-25T04:24:07.010000"],["2024-07-25T04:24:08.010000"],["2024-07-25T04:24:09.010000"],["2024-07-25T04:24:10.010000"],["2024-07-25T04:24:11.010000"],["2024-07-25T04:24:12.010000"],["2024-07-25T04:24:13.010000"],["2024-07-25T04:24:14.010000"],["2024-07-25T04:24:15.010000"],["2024-07-25T04:24:16.010000"],["2024-07-25T04:24:17.010000"],["2024-07-25T04:24:18.010000"],["2024-07-25T04:24:19.010000"],["2024-07-25T04:24:20.010000"],["2024-07-25T04:24:21.010000"],["2024-07-25T04:24:22.010000"],["2024-07-25T04:24:23.010000"],["2024-07-25T04:24:24.010000"],["2024-07-25T04:24:25.010000"],["2024-07-25T04:24:26.010000"],["2024-07-25T04:24:27.010000"],["2024-07-25T04:24:28.010000"],["2024-07-25T04:24:29.010000"],["2024-07-25T04:24:30.010000"],["2024-07-25T04:24:31.010000"],["2024-07-25T04:24:32.010000"],["2024-07-25T04:24:33.010000"],["2024-07-25T04:24:34.010000"],["2024-07-25T04:24:35.010000"],["2024-07-25T04:24:36.010000"],["2024-07-25T04:24:37.010000"],["2024-07-25T04:24:38.010000"],["2024-07-25T04:24:39.010000"],["2024-07-25T04:24:40.010000"],["2024-07-25T04:24:41.010000"],["2024-07-25T04:24:42.010000"],["2024-07-25T04:24:43.010000"],["2024-07-25T04:24:44.010000"],["2024-07-25T04:24:45.010000"],["2024-07-25T04:24:46.010000"],["2024-07-25T04:24:47.010000"],["2024-07-25T04:24:48.010000"],["2024-07-25T04:24:49.010000"],["2024-07-25T04:24:50.010000"],["2024-07-25T04:24:51.010000"],["2024-07-25T04:24:52.010000"],["2024-07-25T04:24:53.010000"],["2024-07-25T04:24:54.010000"],["2024-07-25T04:24:55.010000"],["2024-07-25T04:24:56.010000"],["2024-07-25T04:24:57.010000"],["2024-07-25T04:24:58.010000"],["2024-07-25T04:24:59.010000"],["2024-07-25T04:25:00.010000"],["2024-07-25T04:25:01.010000"],["2024-07-25T04:25:02.010000"],["2024-07-25T04:25:03.010000"],["2024-07-25T04:25:04.010000"],["2024-07-25T04:25:05.010000"],["2024-07-25T04:25:06.010000"],["2024-07-25T04:25:07.010000"],["2024-07-25T04:25:08.010000"],["2024-07-25T04:25:09.010000"],["2024-07-25T04:25:10.010000"],["2024-07-25T04:25:11.010000"],["2024-07-25T04:25:12.010000"],["2024-07-25T04:25:13.010000"],["2024-07-25T04:25:14.010000"],["2024-07-25T04:25:15.010000"],["2024-07-25T04:25:16.010000"],["2024-07-25T04:25:17.010000"],["2024-07-25T04:25:18.010000"],["2024-07-25T04:25:19.010000"],["2024-07-25T04:25:20.010000"],["2024-07-25T04:25:21.010000"],["2024-07-25T04:25:22.010000"],["2024-07-25T04:25:23.010000"],["2024-07-25T04:25:24.010000"],["2024-07-25T04:25:25.010000"],["2024-07-25T04:25:26.010000"],["2024-07-25T04:25:27.010000"],["2024-07-25T04:25:28.010000"],["2024-07-25T04:25:29.010000"],["2024-07-25T04:25:30.010000"],["2024-07-25T04:25:31.010000"],["2024-07-25T04:25:32.010000"],["2024-07-25T04:25:33.010000"],["2024-07-25T04:25:34.010000"],["2024-07-25T04:25:35.010000"],["2024-07-25T04:25:36.010000"],["2024-07-25T04:25:37.010000"],["2024-07-25T04:25:38.010000"],["2024-07-25T04:25:39.010000"],["2024-07-25T04:25:40.010000"],["2024-07-25T04:25:41.010000"],["2024-07-25T04:25:42.010000"],["2024-07-25T04:25:43.010000"],["2024-07-25T04:25:44.010000"],["2024-07-25T04:25:45.010000"],["2024-07-25T04:25:46.010000"],["2024-07-25T04:25:47.010000"],["2024-07-25T04:25:48.010000"],["2024-07-25T04:25:49.010000"],["2024-07-25T04:25:50.010000"],["2024-07-25T04:25:51.010000"],["2024-07-25T04:25:52.010000"],["2024-07-25T04:25:53.010000"],["2024-07-25T04:25:54.010000"],["2024-07-25T04:25:55.010000"],["2024-07-25T04:25:56.010000"],["2024-07-25T04:25:57.010000"],["2024-07-25T04:25:58.010000"],["2024-07-25T04:25:59.010000"],["2024-07-25T04:26:00.010000"],["2024-07-25T04:26:01.010000"],["2024-07-25T04:26:02.010000"],["2024-07-25T04:26:03.010000"],["2024-07-25T04:26:04.010000"],["2024-07-25T04:26:05.010000"],["2024-07-25T04:26:06.010000"],["2024-07-25T04:26:07.010000"],["2024-07-25T04:26:08.010000"],["2024-07-25T04:26:09.010000"],["2024-07-25T04:26:10.010000"],["2024-07-25T04:26:11.010000"],["2024-07-25T04:26:12.010000"],["2024-07-25T04:26:13.010000"],["2024-07-25T04:26:14.010000"],["2024-07-25T04:26:15.010000"],["2024-07-25T04:26:16.010000"],["2024-07-25T04:26:17.010000"],["2024-07-25T04:26:18.010000"],["2024-07-25T04:26:19.010000"],["2024-07-25T04:26:20.010000"],["2024-07-25T04:26:21.010000"],["2024-07-25T04:26:22.010000"],["2024-07-25T04:26:23.010000"],["2024-07-25T04:26:24.010000"],["2024-07-25T04:26:25.010000"],["2024-07-25T04:26:26.010000"],["2024-07-25T04:26:27.010000"],["2024-07-25T04:26:28.010000"],["2024-07-25T04:26:29.010000"],["2024-07-25T04:26:30.010000"],["2024-07-25T04:26:31.010000"],["2024-07-25T04:26:32.010000"],["2024-07-25T04:26:33.010000"],["2024-07-25T04:26:34.010000"],["2024-07-25T04:26:35.010000"],["2024-07-25T04:26:36.010000"],["2024-07-25T04:26:37.010000"],["2024-07-25T04:26:38.010000"],["2024-07-25T04:26:39.010000"],["2024-07-25T04:26:40.010000"],["2024-07-25T04:26:41.010000"],["2024-07-25T04:26:42.010000"],["2024-07-25T04:26:43.010000"],["2024-07-25T04:26:44.010000"],["2024-07-25T04:26:45.010000"],["2024-07-25T04:26:46.010000"],["2024-07-25T04:26:47.010000"],["2024-07-25T04:26:48.010000"],["2024-07-25T04:26:49.010000"],["2024-07-25T04:26:50.010000"],["2024-07-25T04:26:51.010000"],["2024-07-25T04:26:52.010000"],["2024-07-25T04:26:53.010000"],["2024-07-25T04:26:54.010000"],["2024-07-25T04:26:55.010000"],["2024-07-25T04:26:56.010000"],["2024-07-25T04:26:57.010000"],["2024-07-25T04:26:58.010000"],["2024-07-25T04:26:59.010000"],["2024-07-25T04:27:00.010000"],["2024-07-25T04:27:01.010000"],["2024-07-25T04:27:02.010000"],["2024-07-25T04:27:03.010000"],["2024-07-25T04:27:04.010000"],["2024-07-25T04:27:05.010000"],["2024-07-25T04:27:06.010000"],["2024-07-25T04:27:07.010000"],["2024-07-25T04:27:08.010000"],["2024-07-25T04:27:09.010000"],["2024-07-25T04:27:10.010000"],["2024-07-25T04:27:11.010000"],["2024-07-25T04:27:12.010000"],["2024-07-25T04:27:13.010000"],["2024-07-25T04:27:14.010000"],["2024-07-25T04:27:15.010000"],["2024-07-25T04:27:16.010000"],["2024-07-25T04:27:17.010000"],["2024-07-25T04:27:18.010000"],["2024-07-25T04:27:19.010000"],["2024-07-25T04:27:20.010000"],["2024-07-25T04:27:21.010000"],["2024-07-25T04:27:22.010000"],["2024-07-25T04:27:23.010000"],["2024-07-25T04:27:24.010000"],["2024-07-25T04:27:25.010000"],["2024-07-25T04:27:26.010000"],["2024-07-25T04:27:27.010000"],["2024-07-25T04:27:28.010000"],["2024-07-25T04:27:29.010000"],["2024-07-25T04:27:30.010000"],["2024-07-25T04:27:31.010000"],["2024-07-25T04:27:32.010000"],["2024-07-25T04:27:33.010000"],["2024-07-25T04:27:34.010000"],["2024-07-25T04:27:35.010000"],["2024-07-25T04:27:36.010000"],["2024-07-25T04:27:37.010000"],["2024-07-25T04:27:38.010000"],["2024-07-25T04:27:39.010000"],["2024-07-25T04:27:40.010000"],["2024-07-25T04:27:41.010000"],["2024-07-25T04:27:42.010000"],["2024-07-25T04:27:43.010000"],["2024-07-25T04:27:44.010000"],["2024-07-25T04:27:45.010000"],["2024-07-25T04:27:46.010000"],["2024-07-25T04:27:47.010000"],["2024-07-25T04:27:48.010000"],["2024-07-25T04:27:49.010000"],["2024-07-25T04:27:50.010000"],["2024-07-25T04:27:51.010000"],["2024-07-25T04:27:52.010000"],["2024-07-25T04:27:53.010000"],["2024-07-25T04:27:54.010000"],["2024-07-25T04:27:55.010000"],["2024-07-25T04:27:56.010000"],["2024-07-25T04:27:57.010000"],["2024-07-25T04:27:58.010000"],["2024-07-25T04:27:59.010000"],["2024-07-25T04:28:00.010000"],["2024-07-25T04:28:01.010000"],["2024-07-25T04:28:02.010000"],["2024-07-25T04:28:03.010000"],["2024-07-25T04:28:04.010000"],["2024-07-25T04:28:05.010000"],["2024-07-25T04:28:06.010000"],["2024-07-25T04:28:07.010000"],["2024-07-25T04:28:08.010000"],["2024-07-25T04:28:09.010000"],["2024-07-25T04:28:10.010000"],["2024-07-25T04:28:11.010000"],["2024-07-25T04:28:12.010000"],["2024-07-25T04:28:13.010000"],["2024-07-25T04:28:14.010000"],["2024-07-25T04:28:15.010000"],["2024-07-25T04:28:16.010000"],["2024-07-25T04:28:17.010000"],["2024-07-25T04:28:18.010000"],["2024-07-25T04:28:19.010000"],["2024-07-25T04:28:20.010000"],["2024-07-25T04:28:21.010000"],["2024-07-25T04:28:22.010000"],["2024-07-25T04:28:23.010000"],["2024-07-25T04:28:24.010000"],["2024-07-25T04:28:25.010000"],["2024-07-25T04:28:26.010000"],["2024-07-25T04:28:27.010000"],["2024-07-25T04:28:28.010000"],["2024-07-25T04:28:29.010000"],["2024-07-25T04:28:30.010000"],["2024-07-25T04:28:31.010000"],["2024-07-25T04:28:32.010000"],["2024-07-25T04:28:33.010000"],["2024-07-25T04:28:34.010000"],["2024-07-25T04:28:35.010000"],["2024-07-25T04:28:36.010000"],["2024-07-25T04:28:37.010000"],["2024-07-25T04:28:38.010000"],["2024-07-25T04:28:39.010000"],["2024-07-25T04:28:40.010000"],["2024-07-25T04:28:41.010000"],["2024-07-25T04:28:42.010000"],["2024-07-25T04:28:43.010000"],["2024-07-25T04:28:44.010000"],["2024-07-25T04:28:45.010000"],["2024-07-25T04:28:46.010000"],["2024-07-25T04:28:47.010000"],["2024-07-25T04:28:48.010000"],["2024-07-25T04:28:49.010000"],["2024-07-25T04:28:50.010000"],["2024-07-25T04:28:51.010000"],["2024-07-25T04:28:52.010000"],["2024-07-25T04:28:53.010000"],["2024-07-25T04:28:54.010000"],["2024-07-25T04:28:55.010000"],["2024-07-25T04:28:56.010000"],["2024-07-25T04:28:57.010000"],["2024-07-25T04:28:58.010000"],["2024-07-25T04:28:59.010000"],["2024-07-25T04:29:00.010000"],["2024-07-25T04:29:01.010000"],["2024-07-25T04:29:02.010000"],["2024-07-25T04:29:03.010000"],["2024-07-25T04:29:04.010000"],["2024-07-25T04:29:05.010000"],["2024-07-25T04:29:06.010000"],["2024-07-25T04:29:07.010000"],["2024-07-25T04:29:08.010000"],["2024-07-25T04:29:09.010000"],["2024-07-25T04:29:10.010000"],["2024-07-25T04:29:11.010000"],["2024-07-25T04:29:12.010000"],["2024-07-25T04:29:13.010000"],["2024-07-25T04:29:14.010000"],["2024-07-25T04:29:15.010000"],["2024-07-25T04:29:16.010000"],["2024-07-25T04:29:17.010000"],["2024-07-25T04:29:18.010000"],["2024-07-25T04:29:19.010000"],["2024-07-25T04:29:20.010000"],["2024-07-25T04:29:21.010000"],["2024-07-25T04:29:22.010000"],["2024-07-25T04:29:23.010000"],["2024-07-25T04:29:24.010000"],["2024-07-25T04:29:25.010000"],["2024-07-25T04:29:26.010000"],["2024-07-25T04:29:27.010000"],["2024-07-25T04:29:28.010000"],["2024-07-25T04:29:29.010000"],["2024-07-25T04:29:30.010000"],["2024-07-25T04:29:31.010000"],["2024-07-25T04:29:32.010000"],["2024-07-25T04:29:33.010000"],["2024-07-25T04:29:34.010000"],["2024-07-25T04:29:35.010000"],["2024-07-25T04:29:36.010000"],["2024-07-25T04:29:37.010000"],["2024-07-25T04:29:38.010000"],["2024-07-25T04:29:39.010000"],["2024-07-25T04:29:40.010000"],["2024-07-25T04:29:41.010000"],["2024-07-25T04:29:42.010000"],["2024-07-25T04:29:43.010000"],["2024-07-25T04:29:44.010000"],["2024-07-25T04:29:45.010000"],["2024-07-25T04:29:46.010000"],["2024-07-25T04:29:47.010000"],["2024-07-25T04:29:48.010000"],["2024-07-25T04:29:49.010000"],["2024-07-25T04:29:50.010000"],["2024-07-25T04:29:51.010000"],["2024-07-25T04:29:52.010000"],["2024-07-25T04:29:53.010000"],["2024-07-25T04:29:54.010000"],["2024-07-25T04:29:55.010000"],["2024-07-25T04:29:56.010000"],["2024-07-25T04:29:57.010000"],["2024-07-25T04:29:58.010000"],["2024-07-25T04:29:59.010000"],["2024-07-25T04:30:00.010000"],["2024-07-25T04:30:01.010000"],["2024-07-25T04:30:02.010000"],["2024-07-25T04:30:03.010000"],["2024-07-25T04:30:04.010000"],["2024-07-25T04:30:05.010000"],["2024-07-25T04:30:06.010000"],["2024-07-25T04:30:07.010000"],["2024-07-25T04:30:08.010000"],["2024-07-25T04:30:09.010000"],["2024-07-25T04:30:10.010000"],["2024-07-25T04:30:11.010000"],["2024-07-25T04:30:12.010000"],["2024-07-25T04:30:13.010000"],["2024-07-25T04:30:14.010000"],["2024-07-25T04:30:15.010000"],["2024-07-25T04:30:16.010000"],["2024-07-25T04:30:17.010000"],["2024-07-25T04:30:18.010000"],["2024-07-25T04:30:19.010000"],["2024-07-25T04:30:20.010000"],["2024-07-25T04:30:21.010000"],["2024-07-25T04:30:22.010000"],["2024-07-25T04:30:23.010000"],["2024-07-25T04:30:24.010000"],["2024-07-25T04:30:25.010000"],["2024-07-25T04:30:26.010000"],["2024-07-25T04:30:27.010000"],["2024-07-25T04:30:28.010000"],["2024-07-25T04:30:29.010000"],["2024-07-25T04:30:30.010000"],["2024-07-25T04:30:31.010000"],["2024-07-25T04:30:32.010000"],["2024-07-25T04:30:33.010000"],["2024-07-25T04:30:34.010000"],["2024-07-25T04:30:35.010000"],["2024-07-25T04:30:36.010000"],["2024-07-25T04:30:37.010000"],["2024-07-25T04:30:38.010000"],["2024-07-25T04:30:39.010000"],["2024-07-25T04:30:40.010000"],["2024-07-25T04:30:41.010000"],["2024-07-25T04:30:42.010000"],["2024-07-25T04:30:43.010000"],["2024-07-25T04:30:44.010000"],["2024-07-25T04:30:45.010000"],["2024-07-25T04:30:46.010000"],["2024-07-25T04:30:47.010000"],["2024-07-25T04:30:48.010000"],["2024-07-25T04:30:49.010000"],["2024-07-25T04:30:50.010000"],["2024-07-25T04:30:51.010000"],["2024-07-25T04:30:52.010000"],["2024-07-25T04:30:53.010000"],["2024-07-25T04:30:54.010000"],["2024-07-25T04:30:55.010000"],["2024-07-25T04:30:56.010000"],["2024-07-25T04:30:57.010000"],["2024-07-25T04:30:58.010000"],["2024-07-25T04:30:59.010000"],["2024-07-25T04:31:00.010000"],["2024-07-25T04:31:01.010000"],["2024-07-25T04:31:02.010000"],["2024-07-25T04:31:03.010000"],["2024-07-25T04:31:04.010000"],["2024-07-25T04:31:05.010000"],["2024-07-25T04:31:06.010000"],["2024-07-25T04:31:07.010000"],["2024-07-25T04:31:08.010000"],["2024-07-25T04:31:09.010000"],["2024-07-25T04:31:10.010000"],["2024-07-25T04:31:11.010000"],["2024-07-25T04:31:12.010000"],["2024-07-25T04:31:13.010000"],["2024-07-25T04:31:14.010000"],["2024-07-25T04:31:15.010000"],["2024-07-25T04:31:16.010000"],["2024-07-25T04:31:17.010000"],["2024-07-25T04:31:18.010000"],["2024-07-25T04:31:19.010000"],["2024-07-25T04:31:20.010000"],["2024-07-25T04:31:21.010000"],["2024-07-25T04:31:22.010000"],["2024-07-25T04:31:23.010000"],["2024-07-25T04:31:24.010000"],["2024-07-25T04:31:25.010000"],["2024-07-25T04:31:26.010000"],["2024-07-25T04:31:27.010000"],["2024-07-25T04:31:28.010000"],["2024-07-25T04:31:29.010000"],["2024-07-25T04:31:30.010000"],["2024-07-25T04:31:31.010000"],["2024-07-25T04:31:32.010000"],["2024-07-25T04:31:33.010000"],["2024-07-25T04:31:34.010000"],["2024-07-25T04:31:35.010000"],["2024-07-25T04:31:36.010000"],["2024-07-25T04:31:37.010000"],["2024-07-25T04:31:38.010000"],["2024-07-25T04:31:39.010000"],["2024-07-25T04:31:40.010000"],["2024-07-25T04:31:41.010000"],["2024-07-25T04:31:42.010000"],["2024-07-25T04:31:43.010000"],["2024-07-25T04:31:44.010000"],["2024-07-25T04:31:45.010000"],["2024-07-25T04:31:46.010000"],["2024-07-25T04:31:47.010000"],["2024-07-25T04:31:48.010000"],["2024-07-25T04:31:49.010000"],["2024-07-25T04:31:50.010000"],["2024-07-25T04:31:51.010000"],["2024-07-25T04:31:52.010000"],["2024-07-25T04:31:53.010000"],["2024-07-25T04:31:54.010000"],["2024-07-25T04:31:55.010000"],["2024-07-25T04:31:56.010000"],["2024-07-25T04:31:57.010000"],["2024-07-25T04:31:58.010000"],["2024-07-25T04:31:59.010000"],["2024-07-25T04:32:00.010000"],["2024-07-25T04:32:01.010000"],["2024-07-25T04:32:02.010000"],["2024-07-25T04:32:03.010000"],["2024-07-25T04:32:04.010000"],["2024-07-25T04:32:05.010000"],["2024-07-25T04:32:06.010000"],["2024-07-25T04:32:07.010000"],["2024-07-25T04:32:08.010000"],["2024-07-25T04:32:09.010000"],["2024-07-25T04:32:10.010000"],["2024-07-25T04:32:11.010000"],["2024-07-25T04:32:12.010000"],["2024-07-25T04:32:13.010000"],["2024-07-25T04:32:14.010000"],["2024-07-25T04:32:15.010000"],["2024-07-25T04:32:16.010000"],["2024-07-25T04:32:17.010000"],["2024-07-25T04:32:18.010000"],["2024-07-25T04:32:19.010000"],["2024-07-25T04:32:20.010000"],["2024-07-25T04:32:21.010000"],["2024-07-25T04:32:22.010000"],["2024-07-25T04:32:23.010000"],["2024-07-25T04:32:24.010000"],["2024-07-25T04:32:25.010000"],["2024-07-25T04:32:26.010000"],["2024-07-25T04:32:27.010000"],["2024-07-25T04:32:28.010000"],["2024-07-25T04:32:29.010000"],["2024-07-25T04:32:30.010000"],["2024-07-25T04:32:31.010000"],["2024-07-25T04:32:32.010000"],["2024-07-25T04:32:33.010000"],["2024-07-25T04:32:34.010000"],["2024-07-25T04:32:35.010000"],["2024-07-25T04:32:36.010000"],["2024-07-25T04:32:37.010000"],["2024-07-25T04:32:38.010000"],["2024-07-25T04:32:39.010000"],["2024-07-25T04:32:40.010000"],["2024-07-25T04:32:41.010000"],["2024-07-25T04:32:42.010000"],["2024-07-25T04:32:43.010000"],["2024-07-25T04:32:44.010000"],["2024-07-25T04:32:45.010000"],["2024-07-25T04:32:46.010000"],["2024-07-25T04:32:47.010000"],["2024-07-25T04:32:48.010000"],["2024-07-25T04:32:49.010000"],["2024-07-25T04:32:50.010000"],["2024-07-25T04:32:51.010000"],["2024-07-25T04:32:52.010000"],["2024-07-25T04:32:53.010000"],["2024-07-25T04:32:54.010000"],["2024-07-25T04:32:55.010000"],["2024-07-25T04:32:56.010000"],["2024-07-25T04:32:57.010000"],["2024-07-25T04:32:58.010000"],["2024-07-25T04:32:59.010000"],["2024-07-25T04:33:00.010000"],["2024-07-25T04:33:01.010000"],["2024-07-25T04:33:02.010000"],["2024-07-25T04:33:03.010000"],["2024-07-25T04:33:04.010000"],["2024-07-25T04:33:05.010000"],["2024-07-25T04:33:06.010000"],["2024-07-25T04:33:07.010000"],["2024-07-25T04:33:08.010000"],["2024-07-25T04:33:09.010000"],["2024-07-25T04:33:10.010000"],["2024-07-25T04:33:11.010000"],["2024-07-25T04:33:12.010000"],["2024-07-25T04:33:13.010000"],["2024-07-25T04:33:14.010000"],["2024-07-25T04:33:15.010000"],["2024-07-25T04:33:16.010000"],["2024-07-25T04:33:17.010000"],["2024-07-25T04:33:18.010000"],["2024-07-25T04:33:19.010000"],["2024-07-25T04:33:20.010000"],["2024-07-25T04:33:21.010000"],["2024-07-25T04:33:22.010000"],["2024-07-25T04:33:23.010000"],["2024-07-25T04:33:24.010000"],["2024-07-25T04:33:25.010000"],["2024-07-25T04:33:26.010000"],["2024-07-25T04:33:27.010000"],["2024-07-25T04:33:28.010000"],["2024-07-25T04:33:29.010000"],["2024-07-25T04:33:30.010000"],["2024-07-25T04:33:31.010000"],["2024-07-25T04:33:32.010000"],["2024-07-25T04:33:33.010000"],["2024-07-25T04:33:34.010000"],["2024-07-25T04:33:35.010000"],["2024-07-25T04:33:36.010000"],["2024-07-25T04:33:37.010000"],["2024-07-25T04:33:38.010000"],["2024-07-25T04:33:39.010000"],["2024-07-25T04:33:40.010000"],["2024-07-25T04:33:41.010000"],["2024-07-25T04:33:42.010000"],["2024-07-25T04:33:43.010000"],["2024-07-25T04:33:44.010000"],["2024-07-25T04:33:45.010000"],["2024-07-25T04:33:46.010000"],["2024-07-25T04:33:47.010000"],["2024-07-25T04:33:48.010000"],["2024-07-25T04:33:49.010000"],["2024-07-25T04:33:50.010000"],["2024-07-25T04:33:51.010000"],["2024-07-25T04:33:52.010000"],["2024-07-25T04:33:53.010000"],["2024-07-25T04:33:54.010000"],["2024-07-25T04:33:55.010000"],["2024-07-25T04:33:56.010000"],["2024-07-25T04:33:57.010000"],["2024-07-25T04:33:58.010000"],["2024-07-25T04:33:59.010000"],["2024-07-25T04:34:00.010000"],["2024-07-25T04:34:01.010000"],["2024-07-25T04:34:02.010000"],["2024-07-25T04:34:03.010000"],["2024-07-25T04:34:04.010000"],["2024-07-25T04:34:05.010000"],["2024-07-25T04:34:06.010000"],["2024-07-25T04:34:07.010000"],["2024-07-25T04:34:08.010000"],["2024-07-25T04:34:09.010000"],["2024-07-25T04:34:10.010000"],["2024-07-25T04:34:11.010000"],["2024-07-25T04:34:12.010000"],["2024-07-25T04:34:13.010000"],["2024-07-25T04:34:14.010000"],["2024-07-25T04:34:15.010000"],["2024-07-25T04:34:16.010000"],["2024-07-25T04:34:17.010000"],["2024-07-25T04:34:18.010000"],["2024-07-25T04:34:19.010000"],["2024-07-25T04:34:20.010000"],["2024-07-25T04:34:21.010000"],["2024-07-25T04:34:22.010000"],["2024-07-25T04:34:23.010000"],["2024-07-25T04:34:24.010000"],["2024-07-25T04:34:25.010000"],["2024-07-25T04:34:26.010000"],["2024-07-25T04:34:27.010000"],["2024-07-25T04:34:28.010000"],["2024-07-25T04:34:29.010000"],["2024-07-25T04:34:30.010000"],["2024-07-25T04:34:31.010000"],["2024-07-25T04:34:32.010000"],["2024-07-25T04:34:33.010000"],["2024-07-25T04:34:34.010000"],["2024-07-25T04:34:35.010000"],["2024-07-25T04:34:36.010000"],["2024-07-25T04:34:37.010000"],["2024-07-25T04:34:38.010000"],["2024-07-25T04:34:39.010000"],["2024-07-25T04:34:40.010000"],["2024-07-25T04:34:41.010000"],["2024-07-25T04:34:42.010000"],["2024-07-25T04:34:43.010000"],["2024-07-25T04:34:44.010000"],["2024-07-25T04:34:45.010000"],["2024-07-25T04:34:46.010000"],["2024-07-25T04:34:47.010000"],["2024-07-25T04:34:48.010000"],["2024-07-25T04:34:49.010000"],["2024-07-25T04:34:50.010000"],["2024-07-25T04:34:51.010000"],["2024-07-25T04:34:52.010000"],["2024-07-25T04:34:53.010000"],["2024-07-25T04:34:54.010000"],["2024-07-25T04:34:55.010000"],["2024-07-25T04:34:56.010000"],["2024-07-25T04:34:57.010000"],["2024-07-25T04:34:58.010000"],["2024-07-25T04:34:59.010000"],["2024-07-25T04:35:00.010000"],["2024-07-25T04:35:01.010000"],["2024-07-25T04:35:02.010000"],["2024-07-25T04:35:03.010000"],["2024-07-25T04:35:04.010000"],["2024-07-25T04:35:05.010000"],["2024-07-25T04:35:06.010000"],["2024-07-25T04:35:07.010000"],["2024-07-25T04:35:08.010000"],["2024-07-25T04:35:09.010000"],["2024-07-25T04:35:10.010000"],["2024-07-25T04:35:11.010000"],["2024-07-25T04:35:12.010000"],["2024-07-25T04:35:13.010000"],["2024-07-25T04:35:14.010000"],["2024-07-25T04:35:15.010000"],["2024-07-25T04:35:16.010000"],["2024-07-25T04:35:17.010000"],["2024-07-25T04:35:18.010000"],["2024-07-25T04:35:19.010000"],["2024-07-25T04:35:20.010000"],["2024-07-25T04:35:21.010000"],["2024-07-25T04:35:22.010000"],["2024-07-25T04:35:23.010000"],["2024-07-25T04:35:24.010000"],["2024-07-25T04:35:25.010000"],["2024-07-25T04:35:26.010000"],["2024-07-25T04:35:27.010000"],["2024-07-25T04:35:28.010000"],["2024-07-25T04:35:29.010000"],["2024-07-25T04:35:30.010000"],["2024-07-25T04:35:31.010000"],["2024-07-25T04:35:32.010000"],["2024-07-25T04:35:33.010000"],["2024-07-25T04:35:34.010000"],["2024-07-25T04:35:35.010000"],["2024-07-25T04:35:36.010000"],["2024-07-25T04:35:37.010000"],["2024-07-25T04:35:38.010000"],["2024-07-25T04:35:39.010000"],["2024-07-25T04:35:40.010000"],["2024-07-25T04:35:41.010000"],["2024-07-25T04:35:42.010000"],["2024-07-25T04:35:43.010000"],["2024-07-25T04:35:44.010000"],["2024-07-25T04:35:45.010000"],["2024-07-25T04:35:46.010000"],["2024-07-25T04:35:47.010000"],["2024-07-25T04:35:48.010000"],["2024-07-25T04:35:49.010000"],["2024-07-25T04:35:50.010000"],["2024-07-25T04:35:51.010000"],["2024-07-25T04:35:52.010000"],["2024-07-25T04:35:53.010000"],["2024-07-25T04:35:54.010000"],["2024-07-25T04:35:55.010000"],["2024-07-25T04:35:56.010000"],["2024-07-25T04:35:57.010000"],["2024-07-25T04:35:58.010000"],["2024-07-25T04:35:59.010000"],["2024-07-25T04:36:00.010000"],["2024-07-25T04:36:01.010000"],["2024-07-25T04:36:02.010000"],["2024-07-25T04:36:03.010000"],["2024-07-25T04:36:04.010000"],["2024-07-25T04:36:05.010000"],["2024-07-25T04:36:06.010000"],["2024-07-25T04:36:07.010000"],["2024-07-25T04:36:08.010000"],["2024-07-25T04:36:09.010000"],["2024-07-25T04:36:10.010000"],["2024-07-25T04:36:11.010000"],["2024-07-25T04:36:12.010000"],["2024-07-25T04:36:13.010000"],["2024-07-25T04:36:14.010000"],["2024-07-25T04:36:15.010000"],["2024-07-25T04:36:16.010000"],["2024-07-25T04:36:17.010000"],["2024-07-25T04:36:18.010000"],["2024-07-25T04:36:19.010000"],["2024-07-25T04:36:20.010000"],["2024-07-25T04:36:21.010000"],["2024-07-25T04:36:22.010000"],["2024-07-25T04:36:23.010000"],["2024-07-25T04:36:24.010000"],["2024-07-25T04:36:25.010000"],["2024-07-25T04:36:26.010000"],["2024-07-25T04:36:27.010000"],["2024-07-25T04:36:28.010000"],["2024-07-25T04:36:29.010000"],["2024-07-25T04:36:30.010000"],["2024-07-25T04:36:31.010000"],["2024-07-25T04:36:32.010000"],["2024-07-25T04:36:33.010000"],["2024-07-25T04:36:34.010000"],["2024-07-25T04:36:35.010000"],["2024-07-25T04:36:36.010000"],["2024-07-25T04:36:37.010000"],["2024-07-25T04:36:38.010000"],["2024-07-25T04:36:39.010000"],["2024-07-25T04:36:40.010000"],["2024-07-25T04:36:41.010000"],["2024-07-25T04:36:42.010000"],["2024-07-25T04:36:43.010000"],["2024-07-25T04:36:44.010000"],["2024-07-25T04:36:45.010000"],["2024-07-25T04:36:46.010000"],["2024-07-25T04:36:47.010000"],["2024-07-25T04:36:48.010000"],["2024-07-25T04:36:49.010000"],["2024-07-25T04:36:50.010000"],["2024-07-25T04:36:51.010000"],["2024-07-25T04:36:52.010000"],["2024-07-25T04:36:53.010000"],["2024-07-25T04:36:54.010000"],["2024-07-25T04:36:55.010000"],["2024-07-25T04:36:56.010000"],["2024-07-25T04:36:57.010000"],["2024-07-25T04:36:58.010000"],["2024-07-25T04:36:59.010000"],["2024-07-25T04:37:00.010000"],["2024-07-25T04:37:01.010000"],["2024-07-25T04:37:02.010000"],["2024-07-25T04:37:03.010000"],["2024-07-25T04:37:04.010000"],["2024-07-25T04:37:05.010000"],["2024-07-25T04:37:06.010000"],["2024-07-25T04:37:07.010000"],["2024-07-25T04:37:08.010000"],["2024-07-25T04:37:09.010000"],["2024-07-25T04:37:10.010000"],["2024-07-25T04:37:11.010000"],["2024-07-25T04:37:12.010000"],["2024-07-25T04:37:13.010000"],["2024-07-25T04:37:14.010000"],["2024-07-25T04:37:15.010000"],["2024-07-25T04:37:16.010000"],["2024-07-25T04:37:17.010000"],["2024-07-25T04:37:18.010000"],["2024-07-25T04:37:19.010000"],["2024-07-25T04:37:20.010000"],["2024-07-25T04:37:21.010000"],["2024-07-25T04:37:22.010000"],["2024-07-25T04:37:23.010000"],["2024-07-25T04:37:24.010000"],["2024-07-25T04:37:25.010000"],["2024-07-25T04:37:26.010000"],["2024-07-25T04:37:27.010000"],["2024-07-25T04:37:28.010000"],["2024-07-25T04:37:29.010000"],["2024-07-25T04:37:30.010000"],["2024-07-25T04:37:31.010000"],["2024-07-25T04:37:32.010000"],["2024-07-25T04:37:33.010000"],["2024-07-25T04:37:34.010000"],["2024-07-25T04:37:35.010000"],["2024-07-25T04:37:36.010000"],["2024-07-25T04:37:37.010000"],["2024-07-25T04:37:38.010000"],["2024-07-25T04:37:39.010000"],["2024-07-25T04:37:40.010000"],["2024-07-25T04:37:41.010000"],["2024-07-25T04:37:42.010000"],["2024-07-25T04:37:43.010000"],["2024-07-25T04:37:44.010000"],["2024-07-25T04:37:45.010000"],["2024-07-25T04:37:46.010000"],["2024-07-25T04:37:47.010000"],["2024-07-25T04:37:48.010000"],["2024-07-25T04:37:49.010000"],["2024-07-25T04:37:50.010000"],["2024-07-25T04:37:51.010000"],["2024-07-25T04:37:52.010000"],["2024-07-25T04:37:53.010000"],["2024-07-25T04:37:54.010000"],["2024-07-25T04:37:55.010000"],["2024-07-25T04:37:56.010000"],["2024-07-25T04:37:57.010000"],["2024-07-25T04:37:58.010000"],["2024-07-25T04:37:59.010000"],["2024-07-25T04:38:00.010000"],["2024-07-25T04:38:01.010000"],["2024-07-25T04:38:02.010000"],["2024-07-25T04:38:03.010000"],["2024-07-25T04:38:04.010000"],["2024-07-25T04:38:05.010000"],["2024-07-25T04:38:06.010000"],["2024-07-25T04:38:07.010000"],["2024-07-25T04:38:08.010000"],["2024-07-25T04:38:09.010000"],["2024-07-25T04:38:10.010000"],["2024-07-25T04:38:11.010000"],["2024-07-25T04:38:12.010000"],["2024-07-25T04:38:13.010000"],["2024-07-25T04:38:14.010000"],["2024-07-25T04:38:15.010000"],["2024-07-25T04:38:16.010000"],["2024-07-25T04:38:17.010000"],["2024-07-25T04:38:18.010000"],["2024-07-25T04:38:19.010000"],["2024-07-25T04:38:20.010000"],["2024-07-25T04:38:21.010000"],["2024-07-25T04:38:22.010000"],["2024-07-25T04:38:23.010000"],["2024-07-25T04:38:24.010000"],["2024-07-25T04:38:25.010000"],["2024-07-25T04:38:26.010000"],["2024-07-25T04:38:27.010000"],["2024-07-25T04:38:28.010000"],["2024-07-25T04:38:29.010000"],["2024-07-25T04:38:30.010000"],["2024-07-25T04:38:31.010000"],["2024-07-25T04:38:32.010000"],["2024-07-25T04:38:33.010000"],["2024-07-25T04:38:34.010000"],["2024-07-25T04:38:35.010000"],["2024-07-25T04:38:36.010000"],["2024-07-25T04:38:37.010000"],["2024-07-25T04:38:38.010000"],["2024-07-25T04:38:39.010000"],["2024-07-25T04:38:40.010000"],["2024-07-25T04:38:41.010000"],["2024-07-25T04:38:42.010000"],["2024-07-25T04:38:43.010000"],["2024-07-25T04:38:44.010000"],["2024-07-25T04:38:45.010000"],["2024-07-25T04:38:46.010000"],["2024-07-25T04:38:47.010000"],["2024-07-25T04:38:48.010000"],["2024-07-25T04:38:49.010000"],["2024-07-25T04:38:50.010000"],["2024-07-25T04:38:51.010000"],["2024-07-25T04:38:52.010000"],["2024-07-25T04:38:53.010000"],["2024-07-25T04:38:54.010000"],["2024-07-25T04:38:55.010000"],["2024-07-25T04:38:56.010000"],["2024-07-25T04:38:57.010000"],["2024-07-25T04:38:58.010000"],["2024-07-25T04:38:59.010000"],["2024-07-25T04:39:00.010000"],["2024-07-25T04:39:01.010000"],["2024-07-25T04:39:02.010000"],["2024-07-25T04:39:03.010000"],["2024-07-25T04:39:04.010000"],["2024-07-25T04:39:05.010000"],["2024-07-25T04:39:06.010000"],["2024-07-25T04:39:07.010000"],["2024-07-25T04:39:08.010000"],["2024-07-25T04:39:09.010000"],["2024-07-25T04:39:10.010000"],["2024-07-25T04:39:11.010000"],["2024-07-25T04:39:12.010000"],["2024-07-25T04:39:13.010000"],["2024-07-25T04:39:14.010000"],["2024-07-25T04:39:15.010000"],["2024-07-25T04:39:16.010000"],["2024-07-25T04:39:17.010000"],["2024-07-25T04:39:18.010000"],["2024-07-25T04:39:19.010000"],["2024-07-25T04:39:20.010000"],["2024-07-25T04:39:21.010000"],["2024-07-25T04:39:22.010000"],["2024-07-25T04:39:23.010000"],["2024-07-25T04:39:24.010000"],["2024-07-25T04:39:25.010000"],["2024-07-25T04:39:26.010000"],["2024-07-25T04:39:27.010000"],["2024-07-25T04:39:28.010000"],["2024-07-25T04:39:29.010000"],["2024-07-25T04:39:30.010000"],["2024-07-25T04:39:31.010000"],["2024-07-25T04:39:32.010000"],["2024-07-25T04:39:33.010000"],["2024-07-25T04:39:34.010000"],["2024-07-25T04:39:35.010000"],["2024-07-25T04:39:36.010000"],["2024-07-25T04:39:37.010000"],["2024-07-25T04:39:38.010000"],["2024-07-25T04:39:39.010000"],["2024-07-25T04:39:40.010000"],["2024-07-25T04:39:41.010000"],["2024-07-25T04:39:42.010000"],["2024-07-25T04:39:43.010000"],["2024-07-25T04:39:44.010000"],["2024-07-25T04:39:45.010000"],["2024-07-25T04:39:46.010000"],["2024-07-25T04:39:47.010000"],["2024-07-25T04:39:48.010000"],["2024-07-25T04:39:49.010000"],["2024-07-25T04:39:50.010000"],["2024-07-25T04:39:51.010000"],["2024-07-25T04:39:52.010000"],["2024-07-25T04:39:53.010000"],["2024-07-25T04:39:54.010000"],["2024-07-25T04:39:55.010000"],["2024-07-25T04:39:56.010000"],["2024-07-25T04:39:57.010000"],["2024-07-25T04:39:58.010000"],["2024-07-25T04:39:59.010000"],["2024-07-25T04:40:00.010000"],["2024-07-25T04:40:01.010000"],["2024-07-25T04:40:02.010000"],["2024-07-25T04:40:03.010000"],["2024-07-25T04:40:04.010000"],["2024-07-25T04:40:05.010000"],["2024-07-25T04:40:06.010000"],["2024-07-25T04:40:07.010000"],["2024-07-25T04:40:08.010000"],["2024-07-25T04:40:09.010000"],["2024-07-25T04:40:10.010000"],["2024-07-25T04:40:11.010000"],["2024-07-25T04:40:12.010000"],["2024-07-25T04:40:13.010000"],["2024-07-25T04:40:14.010000"],["2024-07-25T04:40:15.010000"],["2024-07-25T04:40:16.010000"],["2024-07-25T04:40:17.010000"],["2024-07-25T04:40:18.010000"],["2024-07-25T04:40:19.010000"],["2024-07-25T04:40:20.010000"],["2024-07-25T04:40:21.010000"],["2024-07-25T04:40:22.010000"],["2024-07-25T04:40:23.010000"],["2024-07-25T04:40:24.010000"],["2024-07-25T04:40:25.010000"],["2024-07-25T04:40:26.010000"],["2024-07-25T04:40:27.010000"],["2024-07-25T04:40:28.010000"],["2024-07-25T04:40:29.010000"],["2024-07-25T04:40:30.010000"],["2024-07-25T04:40:31.010000"],["2024-07-25T04:40:32.010000"],["2024-07-25T04:40:33.010000"],["2024-07-25T04:40:34.010000"],["2024-07-25T04:40:35.010000"],["2024-07-25T04:40:36.010000"],["2024-07-25T04:40:37.010000"],["2024-07-25T04:40:38.010000"],["2024-07-25T04:40:39.010000"],["2024-07-25T04:40:40.010000"],["2024-07-25T04:40:41.010000"],["2024-07-25T04:40:42.010000"],["2024-07-25T04:40:43.010000"],["2024-07-25T04:40:44.010000"],["2024-07-25T04:40:45.010000"],["2024-07-25T04:40:46.010000"],["2024-07-25T04:40:47.010000"],["2024-07-25T04:40:48.010000"],["2024-07-25T04:40:49.010000"],["2024-07-25T04:40:50.010000"],["2024-07-25T04:40:51.010000"],["2024-07-25T04:40:52.010000"],["2024-07-25T04:40:53.010000"],["2024-07-25T04:40:54.010000"],["2024-07-25T04:40:55.010000"],["2024-07-25T04:40:56.010000"],["2024-07-25T04:40:57.010000"],["2024-07-25T04:40:58.010000"],["2024-07-25T04:40:59.010000"],["2024-07-25T04:41:00.010000"],["2024-07-25T04:41:01.010000"],["2024-07-25T04:41:02.010000"],["2024-07-25T04:41:03.010000"],["2024-07-25T04:41:04.010000"],["2024-07-25T04:41:05.010000"],["2024-07-25T04:41:06.010000"],["2024-07-25T04:41:07.010000"],["2024-07-25T04:41:08.010000"],["2024-07-25T04:41:09.010000"],["2024-07-25T04:41:10.010000"],["2024-07-25T04:41:11.010000"],["2024-07-25T04:41:12.010000"],["2024-07-25T04:41:13.010000"],["2024-07-25T04:41:14.010000"],["2024-07-25T04:41:15.010000"],["2024-07-25T04:41:16.010000"],["2024-07-25T04:41:17.010000"],["2024-07-25T04:41:18.010000"],["2024-07-25T04:41:19.010000"],["2024-07-25T04:41:20.010000"],["2024-07-25T04:41:21.010000"],["2024-07-25T04:41:22.010000"],["2024-07-25T04:41:23.010000"],["2024-07-25T04:41:24.010000"],["2024-07-25T04:41:25.010000"],["2024-07-25T04:41:26.010000"],["2024-07-25T04:41:27.010000"],["2024-07-25T04:41:28.010000"],["2024-07-25T04:41:29.010000"],["2024-07-25T04:41:30.010000"],["2024-07-25T04:41:31.010000"],["2024-07-25T04:41:32.010000"],["2024-07-25T04:41:33.010000"],["2024-07-25T04:41:34.010000"],["2024-07-25T04:41:35.010000"],["2024-07-25T04:41:36.010000"],["2024-07-25T04:41:37.010000"],["2024-07-25T04:41:38.010000"],["2024-07-25T04:41:39.010000"],["2024-07-25T04:41:40.010000"],["2024-07-25T04:41:41.010000"],["2024-07-25T04:41:42.010000"],["2024-07-25T04:41:43.010000"],["2024-07-25T04:41:44.010000"],["2024-07-25T04:41:45.010000"],["2024-07-25T04:41:46.010000"],["2024-07-25T04:41:47.010000"],["2024-07-25T04:41:48.010000"],["2024-07-25T04:41:49.010000"],["2024-07-25T04:41:50.010000"],["2024-07-25T04:41:51.010000"],["2024-07-25T04:41:52.010000"],["2024-07-25T04:41:53.010000"],["2024-07-25T04:41:54.010000"],["2024-07-25T04:41:55.010000"],["2024-07-25T04:41:56.010000"],["2024-07-25T04:41:57.010000"],["2024-07-25T04:41:58.010000"],["2024-07-25T04:41:59.010000"],["2024-07-25T04:42:00.010000"],["2024-07-25T04:42:01.010000"],["2024-07-25T04:42:02.010000"],["2024-07-25T04:42:03.010000"],["2024-07-25T04:42:04.010000"],["2024-07-25T04:42:05.010000"],["2024-07-25T04:42:06.010000"],["2024-07-25T04:42:07.010000"],["2024-07-25T04:42:08.010000"],["2024-07-25T04:42:09.010000"],["2024-07-25T04:42:10.010000"],["2024-07-25T04:42:11.010000"],["2024-07-25T04:42:12.010000"],["2024-07-25T04:42:13.010000"],["2024-07-25T04:42:14.010000"],["2024-07-25T04:42:15.010000"],["2024-07-25T04:42:16.010000"],["2024-07-25T04:42:17.010000"],["2024-07-25T04:42:18.010000"],["2024-07-25T04:42:19.010000"],["2024-07-25T04:42:20.010000"],["2024-07-25T04:42:21.010000"],["2024-07-25T04:42:22.010000"],["2024-07-25T04:42:23.010000"],["2024-07-25T04:42:24.010000"],["2024-07-25T04:42:25.010000"],["2024-07-25T04:42:26.010000"],["2024-07-25T04:42:27.010000"],["2024-07-25T04:42:28.010000"],["2024-07-25T04:42:29.010000"],["2024-07-25T04:42:30.010000"],["2024-07-25T04:42:31.010000"],["2024-07-25T04:42:32.010000"],["2024-07-25T04:42:33.010000"],["2024-07-25T04:42:34.010000"],["2024-07-25T04:42:35.010000"],["2024-07-25T04:42:36.010000"],["2024-07-25T04:42:37.010000"],["2024-07-25T04:42:38.010000"],["2024-07-25T04:42:39.010000"],["2024-07-25T04:42:40.010000"],["2024-07-25T04:42:41.010000"],["2024-07-25T04:42:42.010000"],["2024-07-25T04:42:43.010000"],["2024-07-25T04:42:44.010000"],["2024-07-25T04:42:45.010000"],["2024-07-25T04:42:46.010000"],["2024-07-25T04:42:47.010000"],["2024-07-25T04:42:48.010000"],["2024-07-25T04:42:49.010000"],["2024-07-25T04:42:50.010000"],["2024-07-25T04:42:51.010000"],["2024-07-25T04:42:52.010000"],["2024-07-25T04:42:53.010000"],["2024-07-25T04:42:54.010000"],["2024-07-25T04:42:55.010000"],["2024-07-25T04:42:56.010000"],["2024-07-25T04:42:57.010000"],["2024-07-25T04:42:58.010000"],["2024-07-25T04:42:59.010000"],["2024-07-25T04:43:00.010000"],["2024-07-25T04:43:01.010000"],["2024-07-25T04:43:02.010000"],["2024-07-25T04:43:03.010000"],["2024-07-25T04:43:04.010000"],["2024-07-25T04:43:05.010000"],["2024-07-25T04:43:06.010000"],["2024-07-25T04:43:07.010000"],["2024-07-25T04:43:08.010000"],["2024-07-25T04:43:09.010000"],["2024-07-25T04:43:10.010000"],["2024-07-25T04:43:11.010000"],["2024-07-25T04:43:12.010000"],["2024-07-25T04:43:13.010000"],["2024-07-25T04:43:14.010000"],["2024-07-25T04:43:15.010000"],["2024-07-25T04:43:16.010000"],["2024-07-25T04:43:17.010000"],["2024-07-25T04:43:18.010000"],["2024-07-25T04:43:19.010000"],["2024-07-25T04:43:20.010000"],["2024-07-25T04:43:21.010000"],["2024-07-25T04:43:22.010000"],["2024-07-25T04:43:23.010000"],["2024-07-25T04:43:24.010000"],["2024-07-25T04:43:25.010000"],["2024-07-25T04:43:26.010000"],["2024-07-25T04:43:27.010000"],["2024-07-25T04:43:28.010000"],["2024-07-25T04:43:29.010000"],["2024-07-25T04:43:30.010000"],["2024-07-25T04:43:31.010000"],["2024-07-25T04:43:32.010000"],["2024-07-25T04:43:33.010000"],["2024-07-25T04:43:34.010000"],["2024-07-25T04:43:35.010000"],["2024-07-25T04:43:36.010000"],["2024-07-25T04:43:37.010000"],["2024-07-25T04:43:38.010000"],["2024-07-25T04:43:39.010000"],["2024-07-25T04:43:40.010000"],["2024-07-25T04:43:41.010000"],["2024-07-25T04:43:42.010000"],["2024-07-25T04:43:43.010000"],["2024-07-25T04:43:44.010000"],["2024-07-25T04:43:45.010000"],["2024-07-25T04:43:46.010000"],["2024-07-25T04:43:47.010000"],["2024-07-25T04:43:48.010000"],["2024-07-25T04:43:49.010000"],["2024-07-25T04:43:50.010000"],["2024-07-25T04:43:51.010000"],["2024-07-25T04:43:52.010000"],["2024-07-25T04:43:53.010000"],["2024-07-25T04:43:54.010000"],["2024-07-25T04:43:55.010000"],["2024-07-25T04:43:56.010000"],["2024-07-25T04:43:57.010000"],["2024-07-25T04:43:58.010000"],["2024-07-25T04:43:59.010000"],["2024-07-25T04:44:00.010000"],["2024-07-25T04:44:01.010000"],["2024-07-25T04:44:02.010000"],["2024-07-25T04:44:03.010000"],["2024-07-25T04:44:04.010000"],["2024-07-25T04:44:05.010000"],["2024-07-25T04:44:06.010000"],["2024-07-25T04:44:07.010000"],["2024-07-25T04:44:08.010000"],["2024-07-25T04:44:09.010000"],["2024-07-25T04:44:10.010000"],["2024-07-25T04:44:11.010000"],["2024-07-25T04:44:12.010000"],["2024-07-25T04:44:13.010000"],["2024-07-25T04:44:14.010000"],["2024-07-25T04:44:15.010000"],["2024-07-25T04:44:16.010000"],["2024-07-25T04:44:17.010000"],["2024-07-25T04:44:18.010000"],["2024-07-25T04:44:19.010000"],["2024-07-25T04:44:20.010000"],["2024-07-25T04:44:21.010000"],["2024-07-25T04:44:22.010000"],["2024-07-25T04:44:23.010000"],["2024-07-25T04:44:24.010000"],["2024-07-25T04:44:25.010000"],["2024-07-25T04:44:26.010000"],["2024-07-25T04:44:27.010000"],["2024-07-25T04:44:28.010000"],["2024-07-25T04:44:29.010000"],["2024-07-25T04:44:30.010000"],["2024-07-25T04:44:31.010000"],["2024-07-25T04:44:32.010000"],["2024-07-25T04:44:33.010000"],["2024-07-25T04:44:34.010000"],["2024-07-25T04:44:35.010000"],["2024-07-25T04:44:36.010000"],["2024-07-25T04:44:37.010000"],["2024-07-25T04:44:38.010000"],["2024-07-25T04:44:39.010000"],["2024-07-25T04:44:40.010000"],["2024-07-25T04:44:41.010000"],["2024-07-25T04:44:42.010000"],["2024-07-25T04:44:43.010000"],["2024-07-25T04:44:44.010000"],["2024-07-25T04:44:45.010000"],["2024-07-25T04:44:46.010000"],["2024-07-25T04:44:47.010000"],["2024-07-25T04:44:48.010000"],["2024-07-25T04:44:49.010000"],["2024-07-25T04:44:50.010000"],["2024-07-25T04:44:51.010000"],["2024-07-25T04:44:52.010000"],["2024-07-25T04:44:53.010000"],["2024-07-25T04:44:54.010000"],["2024-07-25T04:44:55.010000"],["2024-07-25T04:44:56.010000"],["2024-07-25T04:44:57.010000"],["2024-07-25T04:44:58.010000"],["2024-07-25T04:44:59.010000"],["2024-07-25T04:45:00.010000"],["2024-07-25T04:45:01.010000"],["2024-07-25T04:45:02.010000"],["2024-07-25T04:45:03.010000"],["2024-07-25T04:45:04.010000"],["2024-07-25T04:45:05.010000"],["2024-07-25T04:45:06.010000"],["2024-07-25T04:45:07.010000"],["2024-07-25T04:45:08.010000"],["2024-07-25T04:45:09.010000"],["2024-07-25T04:45:10.010000"],["2024-07-25T04:45:11.010000"],["2024-07-25T04:45:12.010000"],["2024-07-25T04:45:13.010000"],["2024-07-25T04:45:14.010000"],["2024-07-25T04:45:15.010000"],["2024-07-25T04:45:16.010000"],["2024-07-25T04:45:17.010000"],["2024-07-25T04:45:18.010000"],["2024-07-25T04:45:19.010000"],["2024-07-25T04:45:20.010000"],["2024-07-25T04:45:21.010000"],["2024-07-25T04:45:22.010000"],["2024-07-25T04:45:23.010000"],["2024-07-25T04:45:24.010000"],["2024-07-25T04:45:25.010000"],["2024-07-25T04:45:26.010000"],["2024-07-25T04:45:27.010000"],["2024-07-25T04:45:28.010000"],["2024-07-25T04:45:29.010000"],["2024-07-25T04:45:30.010000"],["2024-07-25T04:45:31.010000"],["2024-07-25T04:45:32.010000"],["2024-07-25T04:45:33.010000"],["2024-07-25T04:45:34.010000"],["2024-07-25T04:45:35.010000"],["2024-07-25T04:45:36.010000"],["2024-07-25T04:45:37.010000"],["2024-07-25T04:45:38.010000"],["2024-07-25T04:45:39.010000"],["2024-07-25T04:45:40.010000"],["2024-07-25T04:45:41.010000"],["2024-07-25T04:45:42.010000"],["2024-07-25T04:45:43.010000"],["2024-07-25T04:45:44.010000"],["2024-07-25T04:45:45.010000"],["2024-07-25T04:45:46.010000"],["2024-07-25T04:45:47.010000"],["2024-07-25T04:45:48.010000"],["2024-07-25T04:45:49.010000"],["2024-07-25T04:45:50.010000"],["2024-07-25T04:45:51.010000"],["2024-07-25T04:45:52.010000"],["2024-07-25T04:45:53.010000"],["2024-07-25T04:45:54.010000"],["2024-07-25T04:45:55.010000"],["2024-07-25T04:45:56.010000"],["2024-07-25T04:45:57.010000"],["2024-07-25T04:45:58.010000"],["2024-07-25T04:45:59.010000"],["2024-07-25T04:46:00.010000"],["2024-07-25T04:46:01.010000"],["2024-07-25T04:46:02.010000"],["2024-07-25T04:46:03.010000"],["2024-07-25T04:46:04.010000"],["2024-07-25T04:46:05.010000"],["2024-07-25T04:46:06.010000"],["2024-07-25T04:46:07.010000"],["2024-07-25T04:46:08.010000"],["2024-07-25T04:46:09.010000"],["2024-07-25T04:46:10.010000"],["2024-07-25T04:46:11.010000"],["2024-07-25T04:46:12.010000"],["2024-07-25T04:46:13.010000"],["2024-07-25T04:46:14.010000"],["2024-07-25T04:46:15.010000"],["2024-07-25T04:46:16.010000"],["2024-07-25T04:46:17.010000"],["2024-07-25T04:46:18.010000"],["2024-07-25T04:46:19.010000"],["2024-07-25T04:46:20.010000"],["2024-07-25T04:46:21.010000"],["2024-07-25T04:46:22.010000"],["2024-07-25T04:46:23.010000"],["2024-07-25T04:46:24.010000"],["2024-07-25T04:46:25.010000"],["2024-07-25T04:46:26.010000"],["2024-07-25T04:46:27.010000"],["2024-07-25T04:46:28.010000"],["2024-07-25T04:46:29.010000"],["2024-07-25T04:46:30.010000"],["2024-07-25T04:46:31.010000"],["2024-07-25T04:46:32.010000"],["2024-07-25T04:46:33.010000"],["2024-07-25T04:46:34.010000"],["2024-07-25T04:46:35.010000"],["2024-07-25T04:46:36.010000"],["2024-07-25T04:46:37.010000"],["2024-07-25T04:46:38.010000"],["2024-07-25T04:46:39.010000"],["2024-07-25T04:46:40.010000"],["2024-07-25T04:46:41.010000"],["2024-07-25T04:46:42.010000"],["2024-07-25T04:46:43.010000"],["2024-07-25T04:46:44.010000"],["2024-07-25T04:46:45.010000"],["2024-07-25T04:46:46.010000"],["2024-07-25T04:46:47.010000"],["2024-07-25T04:46:48.010000"],["2024-07-25T04:46:49.010000"],["2024-07-25T04:46:50.010000"],["2024-07-25T04:46:51.010000"],["2024-07-25T04:46:52.010000"],["2024-07-25T04:46:53.010000"],["2024-07-25T04:46:54.010000"],["2024-07-25T04:46:55.010000"],["2024-07-25T04:46:56.010000"],["2024-07-25T04:46:57.010000"],["2024-07-25T04:46:58.010000"],["2024-07-25T04:46:59.010000"],["2024-07-25T04:47:00.010000"],["2024-07-25T04:47:01.010000"],["2024-07-25T04:47:02.010000"],["2024-07-25T04:47:03.010000"],["2024-07-25T04:47:04.010000"],["2024-07-25T04:47:05.010000"],["2024-07-25T04:47:06.010000"],["2024-07-25T04:47:07.010000"],["2024-07-25T04:47:08.010000"],["2024-07-25T04:47:09.010000"],["2024-07-25T04:47:10.010000"],["2024-07-25T04:47:11.010000"],["2024-07-25T04:47:12.010000"],["2024-07-25T04:47:13.010000"],["2024-07-25T04:47:14.010000"],["2024-07-25T04:47:15.010000"],["2024-07-25T04:47:16.010000"],["2024-07-25T04:47:17.010000"],["2024-07-25T04:47:18.010000"],["2024-07-25T04:47:19.010000"],["2024-07-25T04:47:20.010000"],["2024-07-25T04:47:21.010000"],["2024-07-25T04:47:22.010000"],["2024-07-25T04:47:23.010000"],["2024-07-25T04:47:24.010000"],["2024-07-25T04:47:25.010000"],["2024-07-25T04:47:26.010000"],["2024-07-25T04:47:27.010000"],["2024-07-25T04:47:28.010000"],["2024-07-25T04:47:29.010000"],["2024-07-25T04:47:30.010000"],["2024-07-25T04:47:31.010000"],["2024-07-25T04:47:32.010000"],["2024-07-25T04:47:33.010000"],["2024-07-25T04:47:34.010000"],["2024-07-25T04:47:35.010000"],["2024-07-25T04:47:36.010000"],["2024-07-25T04:47:37.010000"],["2024-07-25T04:47:38.010000"],["2024-07-25T04:47:39.010000"],["2024-07-25T04:47:40.010000"],["2024-07-25T04:47:41.010000"],["2024-07-25T04:47:42.010000"],["2024-07-25T04:47:43.010000"],["2024-07-25T04:47:44.010000"],["2024-07-25T04:47:45.010000"],["2024-07-25T04:47:46.010000"],["2024-07-25T04:47:47.010000"],["2024-07-25T04:47:48.010000"],["2024-07-25T04:47:49.010000"],["2024-07-25T04:47:50.010000"],["2024-07-25T04:47:51.010000"],["2024-07-25T04:47:52.010000"],["2024-07-25T04:47:53.010000"],["2024-07-25T04:47:54.010000"],["2024-07-25T04:47:55.010000"],["2024-07-25T04:47:56.010000"],["2024-07-25T04:47:57.010000"],["2024-07-25T04:47:58.010000"],["2024-07-25T04:47:59.010000"],["2024-07-25T04:48:00.010000"],["2024-07-25T04:48:01.010000"],["2024-07-25T04:48:02.010000"],["2024-07-25T04:48:03.010000"],["2024-07-25T04:48:04.010000"],["2024-07-25T04:48:05.010000"],["2024-07-25T04:48:06.010000"],["2024-07-25T04:48:07.010000"],["2024-07-25T04:48:08.010000"],["2024-07-25T04:48:09.010000"],["2024-07-25T04:48:10.010000"],["2024-07-25T04:48:11.010000"],["2024-07-25T04:48:12.010000"],["2024-07-25T04:48:13.010000"],["2024-07-25T04:48:14.010000"],["2024-07-25T04:48:15.010000"],["2024-07-25T04:48:16.010000"],["2024-07-25T04:48:17.010000"],["2024-07-25T04:48:18.010000"],["2024-07-25T04:48:19.010000"],["2024-07-25T04:48:20.010000"],["2024-07-25T04:48:21.010000"],["2024-07-25T04:48:22.010000"],["2024-07-25T04:48:23.010000"],["2024-07-25T04:48:24.010000"],["2024-07-25T04:48:25.010000"],["2024-07-25T04:48:26.010000"],["2024-07-25T04:48:27.010000"],["2024-07-25T04:48:28.010000"],["2024-07-25T04:48:29.010000"],["2024-07-25T04:48:30.010000"],["2024-07-25T04:48:31.010000"],["2024-07-25T04:48:32.010000"],["2024-07-25T04:48:33.010000"],["2024-07-25T04:48:34.010000"],["2024-07-25T04:48:35.010000"],["2024-07-25T04:48:36.010000"],["2024-07-25T04:48:37.010000"],["2024-07-25T04:48:38.010000"],["2024-07-25T04:48:39.010000"],["2024-07-25T04:48:40.010000"],["2024-07-25T04:48:41.010000"],["2024-07-25T04:48:42.010000"],["2024-07-25T04:48:43.010000"],["2024-07-25T04:48:44.010000"],["2024-07-25T04:48:45.010000"],["2024-07-25T04:48:46.010000"],["2024-07-25T04:48:47.010000"],["2024-07-25T04:48:48.010000"],["2024-07-25T04:48:49.010000"],["2024-07-25T04:48:50.010000"],["2024-07-25T04:48:51.010000"],["2024-07-25T04:48:52.010000"],["2024-07-25T04:48:53.010000"],["2024-07-25T04:48:54.010000"],["2024-07-25T04:48:55.010000"],["2024-07-25T04:48:56.010000"],["2024-07-25T04:48:57.010000"],["2024-07-25T04:48:58.010000"],["2024-07-25T04:48:59.010000"],["2024-07-25T04:49:00.010000"],["2024-07-25T04:49:01.010000"],["2024-07-25T04:49:02.010000"],["2024-07-25T04:49:03.010000"],["2024-07-25T04:49:04.010000"],["2024-07-25T04:49:05.010000"],["2024-07-25T04:49:06.010000"],["2024-07-25T04:49:07.010000"],["2024-07-25T04:49:08.010000"],["2024-07-25T04:49:09.010000"],["2024-07-25T04:49:10.010000"],["2024-07-25T04:49:11.010000"],["2024-07-25T04:49:12.010000"],["2024-07-25T04:49:13.010000"],["2024-07-25T04:49:14.010000"],["2024-07-25T04:49:15.010000"],["2024-07-25T04:49:16.010000"],["2024-07-25T04:49:17.010000"],["2024-07-25T04:49:18.010000"],["2024-07-25T04:49:19.010000"],["2024-07-25T04:49:20.010000"],["2024-07-25T04:49:21.010000"],["2024-07-25T04:49:22.010000"],["2024-07-25T04:49:23.010000"],["2024-07-25T04:49:24.010000"],["2024-07-25T04:49:25.010000"],["2024-07-25T04:49:26.010000"],["2024-07-25T04:49:27.010000"],["2024-07-25T04:49:28.010000"],["2024-07-25T04:49:29.010000"],["2024-07-25T04:49:30.010000"],["2024-07-25T04:49:31.010000"],["2024-07-25T04:49:32.010000"],["2024-07-25T04:49:33.010000"],["2024-07-25T04:49:34.010000"],["2024-07-25T04:49:35.010000"],["2024-07-25T04:49:36.010000"],["2024-07-25T04:49:37.010000"],["2024-07-25T04:49:38.010000"],["2024-07-25T04:49:39.010000"],["2024-07-25T04:49:40.010000"],["2024-07-25T04:49:41.010000"],["2024-07-25T04:49:42.010000"],["2024-07-25T04:49:43.010000"],["2024-07-25T04:49:44.010000"],["2024-07-25T04:49:45.010000"],["2024-07-25T04:49:46.010000"],["2024-07-25T04:49:47.010000"],["2024-07-25T04:49:48.010000"],["2024-07-25T04:49:49.010000"],["2024-07-25T04:49:50.010000"],["2024-07-25T04:49:51.010000"],["2024-07-25T04:49:52.010000"],["2024-07-25T04:49:53.010000"],["2024-07-25T04:49:54.010000"],["2024-07-25T04:49:55.010000"],["2024-07-25T04:49:56.010000"],["2024-07-25T04:49:57.010000"],["2024-07-25T04:49:58.010000"],["2024-07-25T04:49:59.010000"],["2024-07-25T04:50:00.010000"],["2024-07-25T04:50:01.010000"],["2024-07-25T04:50:02.010000"],["2024-07-25T04:50:03.010000"],["2024-07-25T04:50:04.010000"],["2024-07-25T04:50:05.010000"],["2024-07-25T04:50:06.010000"],["2024-07-25T04:50:07.010000"],["2024-07-25T04:50:08.010000"],["2024-07-25T04:50:09.010000"],["2024-07-25T04:50:10.010000"],["2024-07-25T04:50:11.010000"],["2024-07-25T04:50:12.010000"],["2024-07-25T04:50:13.010000"],["2024-07-25T04:50:14.010000"],["2024-07-25T04:50:15.010000"],["2024-07-25T04:50:16.010000"],["2024-07-25T04:50:17.010000"],["2024-07-25T04:50:18.010000"],["2024-07-25T04:50:19.010000"],["2024-07-25T04:50:20.010000"],["2024-07-25T04:50:21.010000"],["2024-07-25T04:50:22.010000"],["2024-07-25T04:50:23.010000"],["2024-07-25T04:50:24.010000"],["2024-07-25T04:50:25.010000"],["2024-07-25T04:50:26.010000"],["2024-07-25T04:50:27.010000"],["2024-07-25T04:50:28.010000"],["2024-07-25T04:50:29.010000"],["2024-07-25T04:50:30.010000"],["2024-07-25T04:50:31.010000"],["2024-07-25T04:50:32.010000"],["2024-07-25T04:50:33.010000"],["2024-07-25T04:50:34.010000"],["2024-07-25T04:50:35.010000"],["2024-07-25T04:50:36.010000"],["2024-07-25T04:50:37.010000"],["2024-07-25T04:50:38.010000"],["2024-07-25T04:50:39.010000"],["2024-07-25T04:50:40.010000"],["2024-07-25T04:50:41.010000"],["2024-07-25T04:50:42.010000"],["2024-07-25T04:50:43.010000"],["2024-07-25T04:50:44.010000"],["2024-07-25T04:50:45.010000"],["2024-07-25T04:50:46.010000"],["2024-07-25T04:50:47.010000"],["2024-07-25T04:50:48.010000"],["2024-07-25T04:50:49.010000"],["2024-07-25T04:50:50.010000"],["2024-07-25T04:50:51.010000"],["2024-07-25T04:50:52.010000"],["2024-07-25T04:50:53.010000"],["2024-07-25T04:50:54.010000"],["2024-07-25T04:50:55.010000"],["2024-07-25T04:50:56.010000"],["2024-07-25T04:50:57.010000"],["2024-07-25T04:50:58.010000"],["2024-07-25T04:50:59.010000"],["2024-07-25T04:51:00.010000"],["2024-07-25T04:51:01.010000"],["2024-07-25T04:51:02.010000"],["2024-07-25T04:51:03.010000"],["2024-07-25T04:51:04.010000"],["2024-07-25T04:51:05.010000"],["2024-07-25T04:51:06.010000"],["2024-07-25T04:51:07.010000"],["2024-07-25T04:51:08.010000"],["2024-07-25T04:51:09.010000"],["2024-07-25T04:51:10.010000"],["2024-07-25T04:51:11.010000"],["2024-07-25T04:51:12.010000"],["2024-07-25T04:51:13.010000"],["2024-07-25T04:51:14.010000"],["2024-07-25T04:51:15.010000"],["2024-07-25T04:51:16.010000"],["2024-07-25T04:51:17.010000"],["2024-07-25T04:51:18.010000"],["2024-07-25T04:51:19.010000"],["2024-07-25T04:51:20.010000"],["2024-07-25T04:51:21.010000"],["2024-07-25T04:51:22.010000"],["2024-07-25T04:51:23.010000"],["2024-07-25T04:51:24.010000"],["2024-07-25T04:51:25.010000"],["2024-07-25T04:51:26.010000"],["2024-07-25T04:51:27.010000"],["2024-07-25T04:51:28.010000"],["2024-07-25T04:51:29.010000"],["2024-07-25T04:51:30.010000"],["2024-07-25T04:51:31.010000"],["2024-07-25T04:51:32.010000"],["2024-07-25T04:51:33.010000"],["2024-07-25T04:51:34.010000"],["2024-07-25T04:51:35.010000"],["2024-07-25T04:51:36.010000"],["2024-07-25T04:51:37.010000"],["2024-07-25T04:51:38.010000"],["2024-07-25T04:51:39.010000"],["2024-07-25T04:51:40.010000"],["2024-07-25T04:51:41.010000"],["2024-07-25T04:51:42.010000"],["2024-07-25T04:51:43.010000"],["2024-07-25T04:51:44.010000"],["2024-07-25T04:51:45.010000"],["2024-07-25T04:51:46.010000"],["2024-07-25T04:51:47.010000"],["2024-07-25T04:51:48.010000"],["2024-07-25T04:51:49.010000"],["2024-07-25T04:51:50.010000"],["2024-07-25T04:51:51.010000"],["2024-07-25T04:51:52.010000"],["2024-07-25T04:51:53.010000"],["2024-07-25T04:51:54.010000"],["2024-07-25T04:51:55.010000"],["2024-07-25T04:51:56.010000"],["2024-07-25T04:51:57.010000"],["2024-07-25T04:51:58.010000"],["2024-07-25T04:51:59.010000"],["2024-07-25T04:52:00.010000"],["2024-07-25T04:52:01.010000"],["2024-07-25T04:52:02.010000"],["2024-07-25T04:52:03.010000"],["2024-07-25T04:52:04.010000"],["2024-07-25T04:52:05.010000"],["2024-07-25T04:52:06.010000"],["2024-07-25T04:52:07.010000"],["2024-07-25T04:52:08.010000"],["2024-07-25T04:52:09.010000"],["2024-07-25T04:52:10.010000"],["2024-07-25T04:52:11.010000"],["2024-07-25T04:52:12.010000"],["2024-07-25T04:52:13.010000"],["2024-07-25T04:52:14.010000"],["2024-07-25T04:52:15.010000"],["2024-07-25T04:52:16.010000"],["2024-07-25T04:52:17.010000"],["2024-07-25T04:52:18.010000"],["2024-07-25T04:52:19.010000"],["2024-07-25T04:52:20.010000"],["2024-07-25T04:52:21.010000"],["2024-07-25T04:52:22.010000"],["2024-07-25T04:52:23.010000"],["2024-07-25T04:52:24.010000"],["2024-07-25T04:52:25.010000"],["2024-07-25T04:52:26.010000"],["2024-07-25T04:52:27.010000"],["2024-07-25T04:52:28.010000"],["2024-07-25T04:52:29.010000"],["2024-07-25T04:52:30.010000"],["2024-07-25T04:52:31.010000"],["2024-07-25T04:52:32.010000"],["2024-07-25T04:52:33.010000"],["2024-07-25T04:52:34.010000"],["2024-07-25T04:52:35.010000"],["2024-07-25T04:52:36.010000"],["2024-07-25T04:52:37.010000"],["2024-07-25T04:52:38.010000"],["2024-07-25T04:52:39.010000"],["2024-07-25T04:52:40.010000"],["2024-07-25T04:52:41.010000"],["2024-07-25T04:52:42.010000"],["2024-07-25T04:52:43.010000"],["2024-07-25T04:52:44.010000"],["2024-07-25T04:52:45.010000"],["2024-07-25T04:52:46.010000"],["2024-07-25T04:52:47.010000"],["2024-07-25T04:52:48.010000"],["2024-07-25T04:52:49.010000"],["2024-07-25T04:52:50.010000"],["2024-07-25T04:52:51.010000"],["2024-07-25T04:52:52.010000"],["2024-07-25T04:52:53.010000"],["2024-07-25T04:52:54.010000"],["2024-07-25T04:52:55.010000"],["2024-07-25T04:52:56.010000"],["2024-07-25T04:52:57.010000"],["2024-07-25T04:52:58.010000"],["2024-07-25T04:52:59.010000"],["2024-07-25T04:53:00.010000"],["2024-07-25T04:53:01.010000"],["2024-07-25T04:53:02.010000"],["2024-07-25T04:53:03.010000"],["2024-07-25T04:53:04.010000"],["2024-07-25T04:53:05.010000"],["2024-07-25T04:53:06.010000"],["2024-07-25T04:53:07.010000"],["2024-07-25T04:53:08.010000"],["2024-07-25T04:53:09.010000"],["2024-07-25T04:53:10.010000"],["2024-07-25T04:53:11.010000"],["2024-07-25T04:53:12.010000"],["2024-07-25T04:53:13.010000"],["2024-07-25T04:53:14.010000"],["2024-07-25T04:53:15.010000"],["2024-07-25T04:53:16.010000"],["2024-07-25T04:53:17.010000"],["2024-07-25T04:53:18.010000"],["2024-07-25T04:53:19.010000"],["2024-07-25T04:53:20.010000"],["2024-07-25T04:53:21.010000"],["2024-07-25T04:53:22.010000"],["2024-07-25T04:53:23.010000"],["2024-07-25T04:53:24.010000"],["2024-07-25T04:53:25.010000"],["2024-07-25T04:53:26.010000"],["2024-07-25T04:53:27.010000"],["2024-07-25T04:53:28.010000"],["2024-07-25T04:53:29.010000"],["2024-07-25T04:53:30.010000"],["2024-07-25T04:53:31.010000"],["2024-07-25T04:53:32.010000"],["2024-07-25T04:53:33.010000"],["2024-07-25T04:53:34.010000"],["2024-07-25T04:53:35.010000"],["2024-07-25T04:53:36.010000"],["2024-07-25T04:53:37.010000"],["2024-07-25T04:53:38.010000"],["2024-07-25T04:53:39.010000"],["2024-07-25T04:53:40.010000"],["2024-07-25T04:53:41.010000"],["2024-07-25T04:53:42.010000"],["2024-07-25T04:53:43.010000"],["2024-07-25T04:53:44.010000"],["2024-07-25T04:53:45.010000"],["2024-07-25T04:53:46.010000"],["2024-07-25T04:53:47.010000"],["2024-07-25T04:53:48.010000"],["2024-07-25T04:53:49.010000"],["2024-07-25T04:53:50.010000"],["2024-07-25T04:53:51.010000"],["2024-07-25T04:53:52.010000"],["2024-07-25T04:53:53.010000"],["2024-07-25T04:53:54.010000"],["2024-07-25T04:53:55.010000"],["2024-07-25T04:53:56.010000"],["2024-07-25T04:53:57.010000"],["2024-07-25T04:53:58.010000"],["2024-07-25T04:53:59.010000"],["2024-07-25T04:54:00.010000"],["2024-07-25T04:54:01.010000"],["2024-07-25T04:54:02.010000"],["2024-07-25T04:54:03.010000"],["2024-07-25T04:54:04.010000"],["2024-07-25T04:54:05.010000"],["2024-07-25T04:54:06.010000"],["2024-07-25T04:54:07.010000"],["2024-07-25T04:54:08.010000"],["2024-07-25T04:54:09.010000"],["2024-07-25T04:54:10.010000"],["2024-07-25T04:54:11.010000"],["2024-07-25T04:54:12.010000"],["2024-07-25T04:54:13.010000"],["2024-07-25T04:54:14.010000"],["2024-07-25T04:54:15.010000"],["2024-07-25T04:54:16.010000"],["2024-07-25T04:54:17.010000"],["2024-07-25T04:54:18.010000"],["2024-07-25T04:54:19.010000"],["2024-07-25T04:54:20.010000"],["2024-07-25T04:54:21.010000"],["2024-07-25T04:54:22.010000"],["2024-07-25T04:54:23.010000"],["2024-07-25T04:54:24.010000"],["2024-07-25T04:54:25.010000"],["2024-07-25T04:54:26.010000"],["2024-07-25T04:54:27.010000"],["2024-07-25T04:54:28.010000"],["2024-07-25T04:54:29.010000"],["2024-07-25T04:54:30.010000"],["2024-07-25T04:54:31.010000"],["2024-07-25T04:54:32.010000"],["2024-07-25T04:54:33.010000"],["2024-07-25T04:54:34.010000"],["2024-07-25T04:54:35.010000"],["2024-07-25T04:54:36.010000"],["2024-07-25T04:54:37.010000"],["2024-07-25T04:54:38.010000"],["2024-07-25T04:54:39.010000"],["2024-07-25T04:54:40.010000"],["2024-07-25T04:54:41.010000"],["2024-07-25T04:54:42.010000"],["2024-07-25T04:54:43.010000"],["2024-07-25T04:54:44.010000"],["2024-07-25T04:54:45.010000"],["2024-07-25T04:54:46.010000"],["2024-07-25T04:54:47.010000"],["2024-07-25T04:54:48.010000"],["2024-07-25T04:54:49.010000"],["2024-07-25T04:54:50.010000"],["2024-07-25T04:54:51.010000"],["2024-07-25T04:54:52.010000"],["2024-07-25T04:54:53.010000"],["2024-07-25T04:54:54.010000"],["2024-07-25T04:54:55.010000"],["2024-07-25T04:54:56.010000"],["2024-07-25T04:54:57.010000"],["2024-07-25T04:54:58.010000"],["2024-07-25T04:54:59.010000"],["2024-07-25T04:55:00.010000"],["2024-07-25T04:55:01.010000"],["2024-07-25T04:55:02.010000"],["2024-07-25T04:55:03.010000"],["2024-07-25T04:55:04.010000"],["2024-07-25T04:55:05.010000"],["2024-07-25T04:55:06.010000"],["2024-07-25T04:55:07.010000"],["2024-07-25T04:55:08.010000"],["2024-07-25T04:55:09.010000"],["2024-07-25T04:55:10.010000"],["2024-07-25T04:55:11.010000"],["2024-07-25T04:55:12.010000"],["2024-07-25T04:55:13.010000"],["2024-07-25T04:55:14.010000"],["2024-07-25T04:55:15.010000"],["2024-07-25T04:55:16.010000"],["2024-07-25T04:55:17.010000"],["2024-07-25T04:55:18.010000"],["2024-07-25T04:55:19.010000"],["2024-07-25T04:55:20.010000"],["2024-07-25T04:55:21.010000"],["2024-07-25T04:55:22.010000"],["2024-07-25T04:55:23.010000"],["2024-07-25T04:55:24.010000"],["2024-07-25T04:55:25.010000"],["2024-07-25T04:55:26.010000"],["2024-07-25T04:55:27.010000"],["2024-07-25T04:55:28.010000"],["2024-07-25T04:55:29.010000"],["2024-07-25T04:55:30.010000"],["2024-07-25T04:55:31.010000"],["2024-07-25T04:55:32.010000"],["2024-07-25T04:55:33.010000"],["2024-07-25T04:55:34.010000"],["2024-07-25T04:55:35.010000"],["2024-07-25T04:55:36.010000"],["2024-07-25T04:55:37.010000"],["2024-07-25T04:55:38.010000"],["2024-07-25T04:55:39.010000"],["2024-07-25T04:55:40.010000"],["2024-07-25T04:55:41.010000"],["2024-07-25T04:55:42.010000"],["2024-07-25T04:55:43.010000"],["2024-07-25T04:55:44.010000"],["2024-07-25T04:55:45.010000"],["2024-07-25T04:55:46.010000"],["2024-07-25T04:55:47.010000"],["2024-07-25T04:55:48.010000"],["2024-07-25T04:55:49.010000"],["2024-07-25T04:55:50.010000"],["2024-07-25T04:55:51.010000"],["2024-07-25T04:55:52.010000"],["2024-07-25T04:55:53.010000"],["2024-07-25T04:55:54.010000"],["2024-07-25T04:55:55.010000"],["2024-07-25T04:55:56.010000"],["2024-07-25T04:55:57.010000"],["2024-07-25T04:55:58.010000"],["2024-07-25T04:55:59.010000"],["2024-07-25T04:56:00.010000"],["2024-07-25T04:56:01.010000"],["2024-07-25T04:56:02.010000"],["2024-07-25T04:56:03.010000"],["2024-07-25T04:56:04.010000"],["2024-07-25T04:56:05.010000"],["2024-07-25T04:56:06.010000"],["2024-07-25T04:56:07.010000"],["2024-07-25T04:56:08.010000"],["2024-07-25T04:56:09.010000"],["2024-07-25T04:56:10.010000"],["2024-07-25T04:56:11.010000"],["2024-07-25T04:56:12.010000"],["2024-07-25T04:56:13.010000"],["2024-07-25T04:56:14.010000"],["2024-07-25T04:56:15.010000"],["2024-07-25T04:56:16.010000"],["2024-07-25T04:56:17.010000"],["2024-07-25T04:56:18.010000"],["2024-07-25T04:56:19.010000"],["2024-07-25T04:56:20.010000"],["2024-07-25T04:56:21.010000"],["2024-07-25T04:56:22.010000"],["2024-07-25T04:56:23.010000"],["2024-07-25T04:56:24.010000"],["2024-07-25T04:56:25.010000"],["2024-07-25T04:56:26.010000"],["2024-07-25T04:56:27.010000"],["2024-07-25T04:56:28.010000"],["2024-07-25T04:56:29.010000"],["2024-07-25T04:56:30.010000"],["2024-07-25T04:56:31.010000"],["2024-07-25T04:56:32.010000"],["2024-07-25T04:56:33.010000"],["2024-07-25T04:56:34.010000"],["2024-07-25T04:56:35.010000"],["2024-07-25T04:56:36.010000"],["2024-07-25T04:56:37.010000"],["2024-07-25T04:56:38.010000"],["2024-07-25T04:56:39.010000"],["2024-07-25T04:56:40.010000"],["2024-07-25T04:56:41.010000"],["2024-07-25T04:56:42.010000"],["2024-07-25T04:56:43.010000"],["2024-07-25T04:56:44.010000"],["2024-07-25T04:56:45.010000"],["2024-07-25T04:56:46.010000"],["2024-07-25T04:56:47.010000"],["2024-07-25T04:56:48.010000"],["2024-07-25T04:56:49.010000"],["2024-07-25T04:56:50.010000"],["2024-07-25T04:56:51.010000"],["2024-07-25T04:56:52.010000"],["2024-07-25T04:56:53.010000"],["2024-07-25T04:56:54.010000"],["2024-07-25T04:56:55.010000"],["2024-07-25T04:56:56.010000"],["2024-07-25T04:56:57.010000"],["2024-07-25T04:56:58.010000"],["2024-07-25T04:56:59.010000"],["2024-07-25T04:57:00.010000"],["2024-07-25T04:57:01.010000"],["2024-07-25T04:57:02.010000"],["2024-07-25T04:57:03.010000"],["2024-07-25T04:57:04.010000"],["2024-07-25T04:57:05.010000"],["2024-07-25T04:57:06.010000"],["2024-07-25T04:57:07.010000"],["2024-07-25T04:57:08.010000"],["2024-07-25T04:57:09.010000"],["2024-07-25T04:57:10.010000"],["2024-07-25T04:57:11.010000"],["2024-07-25T04:57:12.010000"],["2024-07-25T04:57:13.010000"],["2024-07-25T04:57:14.010000"],["2024-07-25T04:57:15.010000"],["2024-07-25T04:57:16.010000"],["2024-07-25T04:57:17.010000"],["2024-07-25T04:57:18.010000"],["2024-07-25T04:57:19.010000"],["2024-07-25T04:57:20.010000"],["2024-07-25T04:57:21.010000"],["2024-07-25T04:57:22.010000"],["2024-07-25T04:57:23.010000"],["2024-07-25T04:57:24.010000"],["2024-07-25T04:57:25.010000"],["2024-07-25T04:57:26.010000"],["2024-07-25T04:57:27.010000"],["2024-07-25T04:57:28.010000"],["2024-07-25T04:57:29.010000"],["2024-07-25T04:57:30.010000"],["2024-07-25T04:57:31.010000"],["2024-07-25T04:57:32.010000"],["2024-07-25T04:57:33.010000"],["2024-07-25T04:57:34.010000"],["2024-07-25T04:57:35.010000"],["2024-07-25T04:57:36.010000"],["2024-07-25T04:57:37.010000"],["2024-07-25T04:57:38.010000"],["2024-07-25T04:57:39.010000"],["2024-07-25T04:57:40.010000"],["2024-07-25T04:57:41.010000"],["2024-07-25T04:57:42.010000"],["2024-07-25T04:57:43.010000"],["2024-07-25T04:57:44.010000"],["2024-07-25T04:57:45.010000"],["2024-07-25T04:57:46.010000"],["2024-07-25T04:57:47.010000"],["2024-07-25T04:57:48.010000"],["2024-07-25T04:57:49.010000"],["2024-07-25T04:57:50.010000"],["2024-07-25T04:57:51.010000"],["2024-07-25T04:57:52.010000"],["2024-07-25T04:57:53.010000"],["2024-07-25T04:57:54.010000"],["2024-07-25T04:57:55.010000"],["2024-07-25T04:57:56.010000"],["2024-07-25T04:57:57.010000"],["2024-07-25T04:57:58.010000"],["2024-07-25T04:57:59.010000"],["2024-07-25T04:58:00.010000"],["2024-07-25T04:58:01.010000"],["2024-07-25T04:58:02.010000"],["2024-07-25T04:58:03.010000"],["2024-07-25T04:58:04.010000"],["2024-07-25T04:58:05.010000"],["2024-07-25T04:58:06.010000"],["2024-07-25T04:58:07.010000"],["2024-07-25T04:58:08.010000"],["2024-07-25T04:58:09.010000"],["2024-07-25T04:58:10.010000"],["2024-07-25T04:58:11.010000"],["2024-07-25T04:58:12.010000"],["2024-07-25T04:58:13.010000"],["2024-07-25T04:58:14.010000"],["2024-07-25T04:58:15.010000"],["2024-07-25T04:58:16.010000"],["2024-07-25T04:58:17.010000"],["2024-07-25T04:58:18.010000"],["2024-07-25T04:58:19.010000"],["2024-07-25T04:58:20.010000"],["2024-07-25T04:58:21.010000"],["2024-07-25T04:58:22.010000"],["2024-07-25T04:58:23.010000"],["2024-07-25T04:58:24.010000"],["2024-07-25T04:58:25.010000"],["2024-07-25T04:58:26.010000"],["2024-07-25T04:58:27.010000"],["2024-07-25T04:58:28.010000"],["2024-07-25T04:58:29.010000"],["2024-07-25T04:58:30.010000"],["2024-07-25T04:58:31.010000"],["2024-07-25T04:58:32.010000"],["2024-07-25T04:58:33.010000"],["2024-07-25T04:58:34.010000"],["2024-07-25T04:58:35.010000"],["2024-07-25T04:58:36.010000"],["2024-07-25T04:58:37.010000"],["2024-07-25T04:58:38.010000"],["2024-07-25T04:58:39.010000"],["2024-07-25T04:58:40.010000"],["2024-07-25T04:58:41.010000"],["2024-07-25T04:58:42.010000"],["2024-07-25T04:58:43.010000"],["2024-07-25T04:58:44.010000"],["2024-07-25T04:58:45.010000"],["2024-07-25T04:58:46.010000"],["2024-07-25T04:58:47.010000"],["2024-07-25T04:58:48.010000"],["2024-07-25T04:58:49.010000"],["2024-07-25T04:58:50.010000"],["2024-07-25T04:58:51.010000"],["2024-07-25T04:58:52.010000"],["2024-07-25T04:58:53.010000"],["2024-07-25T04:58:54.010000"],["2024-07-25T04:58:55.010000"],["2024-07-25T04:58:56.010000"],["2024-07-25T04:58:57.010000"],["2024-07-25T04:58:58.010000"],["2024-07-25T04:58:59.010000"],["2024-07-25T04:59:00.010000"],["2024-07-25T04:59:01.010000"],["2024-07-25T04:59:02.010000"],["2024-07-25T04:59:03.010000"],["2024-07-25T04:59:04.010000"],["2024-07-25T04:59:05.010000"],["2024-07-25T04:59:06.010000"],["2024-07-25T04:59:07.010000"],["2024-07-25T04:59:08.010000"],["2024-07-25T04:59:09.010000"],["2024-07-25T04:59:10.010000"],["2024-07-25T04:59:11.010000"],["2024-07-25T04:59:12.010000"],["2024-07-25T04:59:13.010000"],["2024-07-25T04:59:14.010000"],["2024-07-25T04:59:15.010000"],["2024-07-25T04:59:16.010000"],["2024-07-25T04:59:17.010000"],["2024-07-25T04:59:18.010000"],["2024-07-25T04:59:19.010000"],["2024-07-25T04:59:20.010000"],["2024-07-25T04:59:21.010000"],["2024-07-25T04:59:22.010000"],["2024-07-25T04:59:23.010000"],["2024-07-25T04:59:24.010000"],["2024-07-25T04:59:25.010000"],["2024-07-25T04:59:26.010000"],["2024-07-25T04:59:27.010000"],["2024-07-25T04:59:28.010000"],["2024-07-25T04:59:29.010000"],["2024-07-25T04:59:30.010000"],["2024-07-25T04:59:31.010000"],["2024-07-25T04:59:32.010000"],["2024-07-25T04:59:33.010000"],["2024-07-25T04:59:34.010000"],["2024-07-25T04:59:35.010000"],["2024-07-25T04:59:36.010000"],["2024-07-25T04:59:37.010000"],["2024-07-25T04:59:38.010000"],["2024-07-25T04:59:39.010000"],["2024-07-25T04:59:40.010000"],["2024-07-25T04:59:41.010000"],["2024-07-25T04:59:42.010000"],["2024-07-25T04:59:43.010000"],["2024-07-25T04:59:44.010000"],["2024-07-25T04:59:45.010000"],["2024-07-25T04:59:46.010000"],["2024-07-25T04:59:47.010000"],["2024-07-25T04:59:48.010000"],["2024-07-25T04:59:49.010000"],["2024-07-25T04:59:50.010000"],["2024-07-25T04:59:51.010000"],["2024-07-25T04:59:52.010000"],["2024-07-25T04:59:53.010000"],["2024-07-25T04:59:54.010000"],["2024-07-25T04:59:55.010000"],["2024-07-25T04:59:56.010000"],["2024-07-25T04:59:57.010000"],["2024-07-25T04:59:58.010000"],["2024-07-25T04:59:59.010000"],["2024-07-25T05:00:00.010000"],["2024-07-25T05:00:01.010000"],["2024-07-25T05:00:02.010000"],["2024-07-25T05:00:03.010000"],["2024-07-25T05:00:04.010000"],["2024-07-25T05:00:05.010000"],["2024-07-25T05:00:06.010000"],["2024-07-25T05:00:07.010000"],["2024-07-25T05:00:08.010000"],["2024-07-25T05:00:09.010000"],["2024-07-25T05:00:10.010000"],["2024-07-25T05:00:11.010000"],["2024-07-25T05:00:12.010000"],["2024-07-25T05:00:13.010000"],["2024-07-25T05:00:14.010000"],["2024-07-25T05:00:15.010000"],["2024-07-25T05:00:16.010000"],["2024-07-25T05:00:17.010000"],["2024-07-25T05:00:18.010000"],["2024-07-25T05:00:19.010000"],["2024-07-25T05:00:20.010000"],["2024-07-25T05:00:21.010000"],["2024-07-25T05:00:22.010000"],["2024-07-25T05:00:23.010000"],["2024-07-25T05:00:24.010000"],["2024-07-25T05:00:25.010000"],["2024-07-25T05:00:26.010000"],["2024-07-25T05:00:27.010000"],["2024-07-25T05:00:28.010000"],["2024-07-25T05:00:29.010000"],["2024-07-25T05:00:30.010000"],["2024-07-25T05:00:31.010000"],["2024-07-25T05:00:32.010000"],["2024-07-25T05:00:33.010000"],["2024-07-25T05:00:34.010000"],["2024-07-25T05:00:35.010000"],["2024-07-25T05:00:36.010000"],["2024-07-25T05:00:37.010000"],["2024-07-25T05:00:38.010000"],["2024-07-25T05:00:39.010000"],["2024-07-25T05:00:40.010000"],["2024-07-25T05:00:41.010000"],["2024-07-25T05:00:42.010000"],["2024-07-25T05:00:43.010000"],["2024-07-25T05:00:44.010000"],["2024-07-25T05:00:45.010000"],["2024-07-25T05:00:46.010000"],["2024-07-25T05:00:47.010000"],["2024-07-25T05:00:48.010000"],["2024-07-25T05:00:49.010000"],["2024-07-25T05:00:50.010000"],["2024-07-25T05:00:51.010000"],["2024-07-25T05:00:52.010000"],["2024-07-25T05:00:53.010000"],["2024-07-25T05:00:54.010000"],["2024-07-25T05:00:55.010000"],["2024-07-25T05:00:56.010000"],["2024-07-25T05:00:57.010000"],["2024-07-25T05:00:58.010000"],["2024-07-25T05:00:59.010000"],["2024-07-25T05:01:00.010000"],["2024-07-25T05:01:01.010000"],["2024-07-25T05:01:02.010000"],["2024-07-25T05:01:03.010000"],["2024-07-25T05:01:04.010000"],["2024-07-25T05:01:05.010000"],["2024-07-25T05:01:06.010000"],["2024-07-25T05:01:07.010000"],["2024-07-25T05:01:08.010000"],["2024-07-25T05:01:09.010000"],["2024-07-25T05:01:10.010000"],["2024-07-25T05:01:11.010000"],["2024-07-25T05:01:12.010000"],["2024-07-25T05:01:13.010000"],["2024-07-25T05:01:14.010000"],["2024-07-25T05:01:15.010000"],["2024-07-25T05:01:16.010000"],["2024-07-25T05:01:17.010000"],["2024-07-25T05:01:18.010000"],["2024-07-25T05:01:19.010000"],["2024-07-25T05:01:20.010000"],["2024-07-25T05:01:21.010000"],["2024-07-25T05:01:22.010000"],["2024-07-25T05:01:23.010000"],["2024-07-25T05:01:24.010000"],["2024-07-25T05:01:25.010000"],["2024-07-25T05:01:26.010000"],["2024-07-25T05:01:27.010000"],["2024-07-25T05:01:28.010000"],["2024-07-25T05:01:29.010000"],["2024-07-25T05:01:30.010000"],["2024-07-25T05:01:31.010000"],["2024-07-25T05:01:32.010000"],["2024-07-25T05:01:33.010000"],["2024-07-25T05:01:34.010000"],["2024-07-25T05:01:35.010000"],["2024-07-25T05:01:36.010000"],["2024-07-25T05:01:37.010000"],["2024-07-25T05:01:38.010000"],["2024-07-25T05:01:39.010000"],["2024-07-25T05:01:40.010000"],["2024-07-25T05:01:41.010000"],["2024-07-25T05:01:42.010000"],["2024-07-25T05:01:43.010000"],["2024-07-25T05:01:44.010000"],["2024-07-25T05:01:45.010000"],["2024-07-25T05:01:46.010000"],["2024-07-25T05:01:47.010000"],["2024-07-25T05:01:48.010000"],["2024-07-25T05:01:49.010000"],["2024-07-25T05:01:50.010000"],["2024-07-25T05:01:51.010000"],["2024-07-25T05:01:52.010000"],["2024-07-25T05:01:53.010000"],["2024-07-25T05:01:54.010000"],["2024-07-25T05:01:55.010000"],["2024-07-25T05:01:56.010000"],["2024-07-25T05:01:57.010000"],["2024-07-25T05:01:58.010000"],["2024-07-25T05:01:59.010000"],["2024-07-25T05:02:00.010000"],["2024-07-25T05:02:01.010000"],["2024-07-25T05:02:02.010000"],["2024-07-25T05:02:03.010000"],["2024-07-25T05:02:04.010000"],["2024-07-25T05:02:05.010000"],["2024-07-25T05:02:06.010000"],["2024-07-25T05:02:07.010000"],["2024-07-25T05:02:08.010000"],["2024-07-25T05:02:09.010000"],["2024-07-25T05:02:10.010000"],["2024-07-25T05:02:11.010000"],["2024-07-25T05:02:12.010000"],["2024-07-25T05:02:13.010000"],["2024-07-25T05:02:14.010000"],["2024-07-25T05:02:15.010000"],["2024-07-25T05:02:16.010000"],["2024-07-25T05:02:17.010000"],["2024-07-25T05:02:18.010000"],["2024-07-25T05:02:19.010000"],["2024-07-25T05:02:20.010000"],["2024-07-25T05:02:21.010000"],["2024-07-25T05:02:22.010000"],["2024-07-25T05:02:23.010000"],["2024-07-25T05:02:24.010000"],["2024-07-25T05:02:25.010000"],["2024-07-25T05:02:26.010000"],["2024-07-25T05:02:27.010000"],["2024-07-25T05:02:28.010000"],["2024-07-25T05:02:29.010000"],["2024-07-25T05:02:30.010000"],["2024-07-25T05:02:31.010000"],["2024-07-25T05:02:32.010000"],["2024-07-25T05:02:33.010000"],["2024-07-25T05:02:34.010000"],["2024-07-25T05:02:35.010000"],["2024-07-25T05:02:36.010000"],["2024-07-25T05:02:37.010000"],["2024-07-25T05:02:38.010000"],["2024-07-25T05:02:39.010000"],["2024-07-25T05:02:40.010000"],["2024-07-25T05:02:41.010000"],["2024-07-25T05:02:42.010000"],["2024-07-25T05:02:43.010000"],["2024-07-25T05:02:44.010000"],["2024-07-25T05:02:45.010000"],["2024-07-25T05:02:46.010000"],["2024-07-25T05:02:47.010000"],["2024-07-25T05:02:48.010000"],["2024-07-25T05:02:49.010000"],["2024-07-25T05:02:50.010000"],["2024-07-25T05:02:51.010000"],["2024-07-25T05:02:52.010000"],["2024-07-25T05:02:53.010000"],["2024-07-25T05:02:54.010000"],["2024-07-25T05:02:55.010000"],["2024-07-25T05:02:56.010000"],["2024-07-25T05:02:57.010000"],["2024-07-25T05:02:58.010000"],["2024-07-25T05:02:59.010000"],["2024-07-25T05:03:00.010000"],["2024-07-25T05:03:01.010000"],["2024-07-25T05:03:02.010000"],["2024-07-25T05:03:03.010000"],["2024-07-25T05:03:04.010000"],["2024-07-25T05:03:05.010000"],["2024-07-25T05:03:06.010000"],["2024-07-25T05:03:07.010000"],["2024-07-25T05:03:08.010000"],["2024-07-25T05:03:09.010000"],["2024-07-25T05:03:10.010000"],["2024-07-25T05:03:11.010000"],["2024-07-25T05:03:12.010000"],["2024-07-25T05:03:13.010000"],["2024-07-25T05:03:14.010000"],["2024-07-25T05:03:15.010000"],["2024-07-25T05:03:16.010000"],["2024-07-25T05:03:17.010000"],["2024-07-25T05:03:18.010000"],["2024-07-25T05:03:19.010000"],["2024-07-25T05:03:20.010000"],["2024-07-25T05:03:21.010000"],["2024-07-25T05:03:22.010000"],["2024-07-25T05:03:23.010000"],["2024-07-25T05:03:24.010000"],["2024-07-25T05:03:25.010000"],["2024-07-25T05:03:26.010000"],["2024-07-25T05:03:27.010000"],["2024-07-25T05:03:28.010000"],["2024-07-25T05:03:29.010000"],["2024-07-25T05:03:30.010000"],["2024-07-25T05:03:31.010000"],["2024-07-25T05:03:32.010000"],["2024-07-25T05:03:33.010000"],["2024-07-25T05:03:34.010000"],["2024-07-25T05:03:35.010000"],["2024-07-25T05:03:36.010000"],["2024-07-25T05:03:37.010000"],["2024-07-25T05:03:38.010000"],["2024-07-25T05:03:39.010000"],["2024-07-25T05:03:40.010000"],["2024-07-25T05:03:41.010000"],["2024-07-25T05:03:42.010000"],["2024-07-25T05:03:43.010000"],["2024-07-25T05:03:44.010000"],["2024-07-25T05:03:45.010000"],["2024-07-25T05:03:46.010000"],["2024-07-25T05:03:47.010000"],["2024-07-25T05:03:48.010000"],["2024-07-25T05:03:49.010000"],["2024-07-25T05:03:50.010000"],["2024-07-25T05:03:51.010000"],["2024-07-25T05:03:52.010000"],["2024-07-25T05:03:53.010000"],["2024-07-25T05:03:54.010000"],["2024-07-25T05:03:55.010000"],["2024-07-25T05:03:56.010000"],["2024-07-25T05:03:57.010000"],["2024-07-25T05:03:58.010000"],["2024-07-25T05:03:59.010000"],["2024-07-25T05:04:00.010000"],["2024-07-25T05:04:01.010000"],["2024-07-25T05:04:02.010000"],["2024-07-25T05:04:03.010000"],["2024-07-25T05:04:04.010000"],["2024-07-25T05:04:05.010000"],["2024-07-25T05:04:06.010000"],["2024-07-25T05:04:07.010000"],["2024-07-25T05:04:08.010000"],["2024-07-25T05:04:09.010000"],["2024-07-25T05:04:10.010000"],["2024-07-25T05:04:11.010000"],["2024-07-25T05:04:12.010000"],["2024-07-25T05:04:13.010000"],["2024-07-25T05:04:14.010000"],["2024-07-25T05:04:15.010000"],["2024-07-25T05:04:16.010000"],["2024-07-25T05:04:17.010000"],["2024-07-25T05:04:18.010000"],["2024-07-25T05:04:19.010000"],["2024-07-25T05:04:20.010000"],["2024-07-25T05:04:21.010000"],["2024-07-25T05:04:22.010000"],["2024-07-25T05:04:23.010000"],["2024-07-25T05:04:24.010000"],["2024-07-25T05:04:25.010000"],["2024-07-25T05:04:26.010000"],["2024-07-25T05:04:27.010000"],["2024-07-25T05:04:28.010000"],["2024-07-25T05:04:29.010000"],["2024-07-25T05:04:30.010000"],["2024-07-25T05:04:31.010000"],["2024-07-25T05:04:32.010000"],["2024-07-25T05:04:33.010000"],["2024-07-25T05:04:34.010000"],["2024-07-25T05:04:35.010000"],["2024-07-25T05:04:36.010000"],["2024-07-25T05:04:37.010000"],["2024-07-25T05:04:38.010000"],["2024-07-25T05:04:39.010000"],["2024-07-25T05:04:40.010000"],["2024-07-25T05:04:41.010000"],["2024-07-25T05:04:42.010000"],["2024-07-25T05:04:43.010000"],["2024-07-25T05:04:44.010000"],["2024-07-25T05:04:45.010000"],["2024-07-25T05:04:46.010000"],["2024-07-25T05:04:47.010000"],["2024-07-25T05:04:48.010000"],["2024-07-25T05:04:49.010000"],["2024-07-25T05:04:50.010000"],["2024-07-25T05:04:51.010000"],["2024-07-25T05:04:52.010000"],["2024-07-25T05:04:53.010000"],["2024-07-25T05:04:54.010000"],["2024-07-25T05:04:55.010000"],["2024-07-25T05:04:56.010000"],["2024-07-25T05:04:57.010000"],["2024-07-25T05:04:58.010000"],["2024-07-25T05:04:59.010000"],["2024-07-25T05:05:00.010000"],["2024-07-25T05:05:01.010000"],["2024-07-25T05:05:02.010000"],["2024-07-25T05:05:03.010000"],["2024-07-25T05:05:04.010000"],["2024-07-25T05:05:05.010000"],["2024-07-25T05:05:06.010000"],["2024-07-25T05:05:07.010000"],["2024-07-25T05:05:08.010000"],["2024-07-25T05:05:09.010000"],["2024-07-25T05:05:10.010000"],["2024-07-25T05:05:11.010000"],["2024-07-25T05:05:12.010000"],["2024-07-25T05:05:13.010000"],["2024-07-25T05:05:14.010000"],["2024-07-25T05:05:15.010000"],["2024-07-25T05:05:16.010000"],["2024-07-25T05:05:17.010000"],["2024-07-25T05:05:18.010000"],["2024-07-25T05:05:19.010000"],["2024-07-25T05:05:20.010000"],["2024-07-25T05:05:21.010000"],["2024-07-25T05:05:22.010000"],["2024-07-25T05:05:23.010000"],["2024-07-25T05:05:24.010000"],["2024-07-25T05:05:25.010000"],["2024-07-25T05:05:26.010000"],["2024-07-25T05:05:27.010000"],["2024-07-25T05:05:28.010000"],["2024-07-25T05:05:29.010000"],["2024-07-25T05:05:30.010000"],["2024-07-25T05:05:31.010000"],["2024-07-25T05:05:32.010000"],["2024-07-25T05:05:33.010000"],["2024-07-25T05:05:34.010000"],["2024-07-25T05:05:35.010000"],["2024-07-25T05:05:36.010000"],["2024-07-25T05:05:37.010000"],["2024-07-25T05:05:38.010000"],["2024-07-25T05:05:39.010000"],["2024-07-25T05:05:40.010000"],["2024-07-25T05:05:41.010000"],["2024-07-25T05:05:42.010000"],["2024-07-25T05:05:43.010000"],["2024-07-25T05:05:44.010000"],["2024-07-25T05:05:45.010000"],["2024-07-25T05:05:46.010000"],["2024-07-25T05:05:47.010000"],["2024-07-25T05:05:48.010000"],["2024-07-25T05:05:49.010000"],["2024-07-25T05:05:50.010000"],["2024-07-25T05:05:51.010000"],["2024-07-25T05:05:52.010000"],["2024-07-25T05:05:53.010000"],["2024-07-25T05:05:54.010000"],["2024-07-25T05:05:55.010000"],["2024-07-25T05:05:56.010000"],["2024-07-25T05:05:57.010000"],["2024-07-25T05:05:58.010000"],["2024-07-25T05:05:59.010000"],["2024-07-25T05:06:00.010000"],["2024-07-25T05:06:01.010000"],["2024-07-25T05:06:02.010000"],["2024-07-25T05:06:03.010000"],["2024-07-25T05:06:04.010000"],["2024-07-25T05:06:05.010000"],["2024-07-25T05:06:06.010000"],["2024-07-25T05:06:07.010000"],["2024-07-25T05:06:08.010000"],["2024-07-25T05:06:09.010000"],["2024-07-25T05:06:10.010000"],["2024-07-25T05:06:11.010000"],["2024-07-25T05:06:12.010000"],["2024-07-25T05:06:13.010000"],["2024-07-25T05:06:14.010000"],["2024-07-25T05:06:15.010000"],["2024-07-25T05:06:16.010000"],["2024-07-25T05:06:17.010000"],["2024-07-25T05:06:18.010000"],["2024-07-25T05:06:19.010000"],["2024-07-25T05:06:20.010000"],["2024-07-25T05:06:21.010000"],["2024-07-25T05:06:22.010000"],["2024-07-25T05:06:23.010000"],["2024-07-25T05:06:24.010000"],["2024-07-25T05:06:25.010000"],["2024-07-25T05:06:26.010000"],["2024-07-25T05:06:27.010000"],["2024-07-25T05:06:28.010000"],["2024-07-25T05:06:29.010000"],["2024-07-25T05:06:30.010000"],["2024-07-25T05:06:31.010000"],["2024-07-25T05:06:32.010000"],["2024-07-25T05:06:33.010000"],["2024-07-25T05:06:34.010000"],["2024-07-25T05:06:35.010000"],["2024-07-25T05:06:36.010000"],["2024-07-25T05:06:37.010000"],["2024-07-25T05:06:38.010000"],["2024-07-25T05:06:39.010000"],["2024-07-25T05:06:40.010000"],["2024-07-25T05:06:41.010000"],["2024-07-25T05:06:42.010000"],["2024-07-25T05:06:43.010000"],["2024-07-25T05:06:44.010000"],["2024-07-25T05:06:45.010000"],["2024-07-25T05:06:46.010000"],["2024-07-25T05:06:47.010000"],["2024-07-25T05:06:48.010000"],["2024-07-25T05:06:49.010000"],["2024-07-25T05:06:50.010000"],["2024-07-25T05:06:51.010000"],["2024-07-25T05:06:52.010000"],["2024-07-25T05:06:53.010000"],["2024-07-25T05:06:54.010000"],["2024-07-25T05:06:55.010000"],["2024-07-25T05:06:56.010000"],["2024-07-25T05:06:57.010000"],["2024-07-25T05:06:58.010000"],["2024-07-25T05:06:59.010000"],["2024-07-25T05:07:00.010000"],["2024-07-25T05:07:01.010000"],["2024-07-25T05:07:02.010000"],["2024-07-25T05:07:03.010000"],["2024-07-25T05:07:04.010000"],["2024-07-25T05:07:05.010000"],["2024-07-25T05:07:06.010000"],["2024-07-25T05:07:07.010000"],["2024-07-25T05:07:08.010000"],["2024-07-25T05:07:09.010000"],["2024-07-25T05:07:10.010000"],["2024-07-25T05:07:11.010000"],["2024-07-25T05:07:12.010000"],["2024-07-25T05:07:13.010000"],["2024-07-25T05:07:14.010000"],["2024-07-25T05:07:15.010000"],["2024-07-25T05:07:16.010000"],["2024-07-25T05:07:17.010000"],["2024-07-25T05:07:18.010000"],["2024-07-25T05:07:19.010000"],["2024-07-25T05:07:20.010000"],["2024-07-25T05:07:21.010000"],["2024-07-25T05:07:22.010000"],["2024-07-25T05:07:23.010000"],["2024-07-25T05:07:24.010000"],["2024-07-25T05:07:25.010000"],["2024-07-25T05:07:26.010000"],["2024-07-25T05:07:27.010000"],["2024-07-25T05:07:28.010000"],["2024-07-25T05:07:29.010000"],["2024-07-25T05:07:30.010000"],["2024-07-25T05:07:31.010000"],["2024-07-25T05:07:32.010000"],["2024-07-25T05:07:33.010000"],["2024-07-25T05:07:34.010000"],["2024-07-25T05:07:35.010000"],["2024-07-25T05:07:36.010000"],["2024-07-25T05:07:37.010000"],["2024-07-25T05:07:38.010000"],["2024-07-25T05:07:39.010000"],["2024-07-25T05:07:40.010000"],["2024-07-25T05:07:41.010000"],["2024-07-25T05:07:42.010000"],["2024-07-25T05:07:43.010000"],["2024-07-25T05:07:44.010000"],["2024-07-25T05:07:45.010000"],["2024-07-25T05:07:46.010000"],["2024-07-25T05:07:47.010000"],["2024-07-25T05:07:48.010000"],["2024-07-25T05:07:49.010000"],["2024-07-25T05:07:50.010000"],["2024-07-25T05:07:51.010000"],["2024-07-25T05:07:52.010000"],["2024-07-25T05:07:53.010000"],["2024-07-25T05:07:54.010000"],["2024-07-25T05:07:55.010000"],["2024-07-25T05:07:56.010000"],["2024-07-25T05:07:57.010000"],["2024-07-25T05:07:58.010000"],["2024-07-25T05:07:59.010000"],["2024-07-25T05:08:00.010000"],["2024-07-25T05:08:01.010000"],["2024-07-25T05:08:02.010000"],["2024-07-25T05:08:03.010000"],["2024-07-25T05:08:04.010000"],["2024-07-25T05:08:05.010000"],["2024-07-25T05:08:06.010000"],["2024-07-25T05:08:07.010000"],["2024-07-25T05:08:08.010000"],["2024-07-25T05:08:09.010000"],["2024-07-25T05:08:10.010000"],["2024-07-25T05:08:11.010000"],["2024-07-25T05:08:12.010000"],["2024-07-25T05:08:13.010000"],["2024-07-25T05:08:14.010000"],["2024-07-25T05:08:15.010000"],["2024-07-25T05:08:16.010000"],["2024-07-25T05:08:17.010000"],["2024-07-25T05:08:18.010000"],["2024-07-25T05:08:19.010000"],["2024-07-25T05:08:20.010000"],["2024-07-25T05:08:21.010000"],["2024-07-25T05:08:22.010000"],["2024-07-25T05:08:23.010000"],["2024-07-25T05:08:24.010000"],["2024-07-25T05:08:25.010000"],["2024-07-25T05:08:26.010000"],["2024-07-25T05:08:27.010000"],["2024-07-25T05:08:28.010000"],["2024-07-25T05:08:29.010000"],["2024-07-25T05:08:30.010000"],["2024-07-25T05:08:31.010000"],["2024-07-25T05:08:32.010000"],["2024-07-25T05:08:33.010000"],["2024-07-25T05:08:34.010000"],["2024-07-25T05:08:35.010000"],["2024-07-25T05:08:36.010000"],["2024-07-25T05:08:37.010000"],["2024-07-25T05:08:38.010000"],["2024-07-25T05:08:39.010000"],["2024-07-25T05:08:40.010000"],["2024-07-25T05:08:41.010000"],["2024-07-25T05:08:42.010000"],["2024-07-25T05:08:43.010000"],["2024-07-25T05:08:44.010000"],["2024-07-25T05:08:45.010000"],["2024-07-25T05:08:46.010000"],["2024-07-25T05:08:47.010000"],["2024-07-25T05:08:48.010000"],["2024-07-25T05:08:49.010000"],["2024-07-25T05:08:50.010000"],["2024-07-25T05:08:51.010000"],["2024-07-25T05:08:52.010000"],["2024-07-25T05:08:53.010000"],["2024-07-25T05:08:54.010000"],["2024-07-25T05:08:55.010000"],["2024-07-25T05:08:56.010000"],["2024-07-25T05:08:57.010000"],["2024-07-25T05:08:58.010000"],["2024-07-25T05:08:59.010000"],["2024-07-25T05:09:00.010000"],["2024-07-25T05:09:01.010000"],["2024-07-25T05:09:02.010000"],["2024-07-25T05:09:03.010000"],["2024-07-25T05:09:04.010000"],["2024-07-25T05:09:05.010000"],["2024-07-25T05:09:06.010000"],["2024-07-25T05:09:07.010000"],["2024-07-25T05:09:08.010000"],["2024-07-25T05:09:09.010000"],["2024-07-25T05:09:10.010000"],["2024-07-25T05:09:11.010000"],["2024-07-25T05:09:12.010000"],["2024-07-25T05:09:13.010000"],["2024-07-25T05:09:14.010000"],["2024-07-25T05:09:15.010000"],["2024-07-25T05:09:16.010000"],["2024-07-25T05:09:17.010000"],["2024-07-25T05:09:18.010000"],["2024-07-25T05:09:19.010000"],["2024-07-25T05:09:20.010000"],["2024-07-25T05:09:21.010000"],["2024-07-25T05:09:22.010000"],["2024-07-25T05:09:23.010000"],["2024-07-25T05:09:24.010000"],["2024-07-25T05:09:25.010000"],["2024-07-25T05:09:26.010000"],["2024-07-25T05:09:27.010000"],["2024-07-25T05:09:28.010000"],["2024-07-25T05:09:29.010000"],["2024-07-25T05:09:30.010000"],["2024-07-25T05:09:31.010000"],["2024-07-25T05:09:32.010000"],["2024-07-25T05:09:33.010000"],["2024-07-25T05:09:34.010000"],["2024-07-25T05:09:35.010000"],["2024-07-25T05:09:36.010000"],["2024-07-25T05:09:37.010000"],["2024-07-25T05:09:38.010000"],["2024-07-25T05:09:39.010000"],["2024-07-25T05:09:40.010000"],["2024-07-25T05:09:41.010000"],["2024-07-25T05:09:42.010000"],["2024-07-25T05:09:43.010000"],["2024-07-25T05:09:44.010000"],["2024-07-25T05:09:45.010000"],["2024-07-25T05:09:46.010000"],["2024-07-25T05:09:47.010000"],["2024-07-25T05:09:48.010000"],["2024-07-25T05:09:49.010000"],["2024-07-25T05:09:50.010000"],["2024-07-25T05:09:51.010000"],["2024-07-25T05:09:52.010000"],["2024-07-25T05:09:53.010000"],["2024-07-25T05:09:54.010000"],["2024-07-25T05:09:55.010000"],["2024-07-25T05:09:56.010000"],["2024-07-25T05:09:57.010000"],["2024-07-25T05:09:58.010000"],["2024-07-25T05:09:59.010000"],["2024-07-25T05:10:00.010000"],["2024-07-25T05:10:01.010000"],["2024-07-25T05:10:02.010000"],["2024-07-25T05:10:03.010000"],["2024-07-25T05:10:04.010000"],["2024-07-25T05:10:05.010000"],["2024-07-25T05:10:06.010000"],["2024-07-25T05:10:07.010000"],["2024-07-25T05:10:08.010000"],["2024-07-25T05:10:09.010000"],["2024-07-25T05:10:10.010000"],["2024-07-25T05:10:11.010000"],["2024-07-25T05:10:12.010000"],["2024-07-25T05:10:13.010000"],["2024-07-25T05:10:14.010000"],["2024-07-25T05:10:15.010000"],["2024-07-25T05:10:16.010000"],["2024-07-25T05:10:17.010000"],["2024-07-25T05:10:18.010000"],["2024-07-25T05:10:19.010000"],["2024-07-25T05:10:20.010000"],["2024-07-25T05:10:21.010000"],["2024-07-25T05:10:22.010000"],["2024-07-25T05:10:23.010000"],["2024-07-25T05:10:24.010000"],["2024-07-25T05:10:25.010000"],["2024-07-25T05:10:26.010000"],["2024-07-25T05:10:27.010000"],["2024-07-25T05:10:28.010000"],["2024-07-25T05:10:29.010000"],["2024-07-25T05:10:30.010000"],["2024-07-25T05:10:31.010000"],["2024-07-25T05:10:32.010000"],["2024-07-25T05:10:33.010000"],["2024-07-25T05:10:34.010000"],["2024-07-25T05:10:35.010000"],["2024-07-25T05:10:36.010000"],["2024-07-25T05:10:37.010000"],["2024-07-25T05:10:38.010000"],["2024-07-25T05:10:39.010000"],["2024-07-25T05:10:40.010000"],["2024-07-25T05:10:41.010000"],["2024-07-25T05:10:42.010000"],["2024-07-25T05:10:43.010000"],["2024-07-25T05:10:44.010000"],["2024-07-25T05:10:45.010000"],["2024-07-25T05:10:46.010000"],["2024-07-25T05:10:47.010000"],["2024-07-25T05:10:48.010000"],["2024-07-25T05:10:49.010000"],["2024-07-25T05:10:50.010000"],["2024-07-25T05:10:51.010000"],["2024-07-25T05:10:52.010000"],["2024-07-25T05:10:53.010000"],["2024-07-25T05:10:54.010000"],["2024-07-25T05:10:55.010000"],["2024-07-25T05:10:56.010000"],["2024-07-25T05:10:57.010000"],["2024-07-25T05:10:58.010000"],["2024-07-25T05:10:59.010000"],["2024-07-25T05:11:00.010000"],["2024-07-25T05:11:01.010000"],["2024-07-25T05:11:02.010000"],["2024-07-25T05:11:03.010000"],["2024-07-25T05:11:04.010000"],["2024-07-25T05:11:05.010000"],["2024-07-25T05:11:06.010000"],["2024-07-25T05:11:07.010000"],["2024-07-25T05:11:08.010000"],["2024-07-25T05:11:09.010000"],["2024-07-25T05:11:10.010000"],["2024-07-25T05:11:11.010000"],["2024-07-25T05:11:12.010000"],["2024-07-25T05:11:13.010000"],["2024-07-25T05:11:14.010000"],["2024-07-25T05:11:15.010000"],["2024-07-25T05:11:16.010000"],["2024-07-25T05:11:17.010000"],["2024-07-25T05:11:18.010000"],["2024-07-25T05:11:19.010000"],["2024-07-25T05:11:20.010000"],["2024-07-25T05:11:21.010000"],["2024-07-25T05:11:22.010000"],["2024-07-25T05:11:23.010000"],["2024-07-25T05:11:24.010000"],["2024-07-25T05:11:25.010000"],["2024-07-25T05:11:26.010000"],["2024-07-25T05:11:27.010000"],["2024-07-25T05:11:28.010000"],["2024-07-25T05:11:29.010000"],["2024-07-25T05:11:30.010000"],["2024-07-25T05:11:31.010000"],["2024-07-25T05:11:32.010000"],["2024-07-25T05:11:33.010000"],["2024-07-25T05:11:34.010000"],["2024-07-25T05:11:35.010000"],["2024-07-25T05:11:36.010000"],["2024-07-25T05:11:37.010000"],["2024-07-25T05:11:38.010000"],["2024-07-25T05:11:39.010000"],["2024-07-25T05:11:40.010000"],["2024-07-25T05:11:41.010000"],["2024-07-25T05:11:42.010000"],["2024-07-25T05:11:43.010000"],["2024-07-25T05:11:44.010000"],["2024-07-25T05:11:45.010000"],["2024-07-25T05:11:46.010000"],["2024-07-25T05:11:47.010000"],["2024-07-25T05:11:48.010000"],["2024-07-25T05:11:49.010000"],["2024-07-25T05:11:50.010000"],["2024-07-25T05:11:51.010000"],["2024-07-25T05:11:52.010000"],["2024-07-25T05:11:53.010000"],["2024-07-25T05:11:54.010000"],["2024-07-25T05:11:55.010000"],["2024-07-25T05:11:56.010000"],["2024-07-25T05:11:57.010000"],["2024-07-25T05:11:58.010000"],["2024-07-25T05:11:59.010000"],["2024-07-25T05:12:00.010000"],["2024-07-25T05:12:01.010000"],["2024-07-25T05:12:02.010000"],["2024-07-25T05:12:03.010000"],["2024-07-25T05:12:04.010000"],["2024-07-25T05:12:05.010000"],["2024-07-25T05:12:06.010000"],["2024-07-25T05:12:07.010000"],["2024-07-25T05:12:08.010000"],["2024-07-25T05:12:09.010000"],["2024-07-25T05:12:10.010000"],["2024-07-25T05:12:11.010000"],["2024-07-25T05:12:12.010000"],["2024-07-25T05:12:13.010000"],["2024-07-25T05:12:14.010000"],["2024-07-25T05:12:15.010000"],["2024-07-25T05:12:16.010000"],["2024-07-25T05:12:17.010000"],["2024-07-25T05:12:18.010000"],["2024-07-25T05:12:19.010000"],["2024-07-25T05:12:20.010000"],["2024-07-25T05:12:21.010000"],["2024-07-25T05:12:22.010000"],["2024-07-25T05:12:23.010000"],["2024-07-25T05:12:24.010000"],["2024-07-25T05:12:25.010000"],["2024-07-25T05:12:26.010000"],["2024-07-25T05:12:27.010000"],["2024-07-25T05:12:28.010000"],["2024-07-25T05:12:29.010000"],["2024-07-25T05:12:30.010000"],["2024-07-25T05:12:31.010000"],["2024-07-25T05:12:32.010000"],["2024-07-25T05:12:33.010000"],["2024-07-25T05:12:34.010000"],["2024-07-25T05:12:35.010000"],["2024-07-25T05:12:36.010000"],["2024-07-25T05:12:37.010000"],["2024-07-25T05:12:38.010000"],["2024-07-25T05:12:39.010000"],["2024-07-25T05:12:40.010000"],["2024-07-25T05:12:41.010000"],["2024-07-25T05:12:42.010000"],["2024-07-25T05:12:43.010000"],["2024-07-25T05:12:44.010000"],["2024-07-25T05:12:45.010000"],["2024-07-25T05:12:46.010000"],["2024-07-25T05:12:47.010000"],["2024-07-25T05:12:48.010000"],["2024-07-25T05:12:49.010000"],["2024-07-25T05:12:50.010000"],["2024-07-25T05:12:51.010000"],["2024-07-25T05:12:52.010000"],["2024-07-25T05:12:53.010000"],["2024-07-25T05:12:54.010000"],["2024-07-25T05:12:55.010000"],["2024-07-25T05:12:56.010000"],["2024-07-25T05:12:57.010000"],["2024-07-25T05:12:58.010000"],["2024-07-25T05:12:59.010000"],["2024-07-25T05:13:00.010000"],["2024-07-25T05:13:01.010000"],["2024-07-25T05:13:02.010000"],["2024-07-25T05:13:03.010000"],["2024-07-25T05:13:04.010000"],["2024-07-25T05:13:05.010000"],["2024-07-25T05:13:06.010000"],["2024-07-25T05:13:07.010000"],["2024-07-25T05:13:08.010000"],["2024-07-25T05:13:09.010000"],["2024-07-25T05:13:10.010000"],["2024-07-25T05:13:11.010000"],["2024-07-25T05:13:12.010000"],["2024-07-25T05:13:13.010000"],["2024-07-25T05:13:14.010000"],["2024-07-25T05:13:15.010000"],["2024-07-25T05:13:16.010000"],["2024-07-25T05:13:17.010000"],["2024-07-25T05:13:18.010000"],["2024-07-25T05:13:19.010000"],["2024-07-25T05:13:20.010000"],["2024-07-25T05:13:21.010000"],["2024-07-25T05:13:22.010000"],["2024-07-25T05:13:23.010000"],["2024-07-25T05:13:24.010000"],["2024-07-25T05:13:25.010000"],["2024-07-25T05:13:26.010000"],["2024-07-25T05:13:27.010000"],["2024-07-25T05:13:28.010000"],["2024-07-25T05:13:29.010000"],["2024-07-25T05:13:30.010000"],["2024-07-25T05:13:31.010000"],["2024-07-25T05:13:32.010000"],["2024-07-25T05:13:33.010000"],["2024-07-25T05:13:34.010000"],["2024-07-25T05:13:35.010000"],["2024-07-25T05:13:36.010000"],["2024-07-25T05:13:37.010000"],["2024-07-25T05:13:38.010000"],["2024-07-25T05:13:39.010000"],["2024-07-25T05:13:40.010000"],["2024-07-25T05:13:41.010000"],["2024-07-25T05:13:42.010000"],["2024-07-25T05:13:43.010000"],["2024-07-25T05:13:44.010000"],["2024-07-25T05:13:45.010000"],["2024-07-25T05:13:46.010000"],["2024-07-25T05:13:47.010000"],["2024-07-25T05:13:48.010000"],["2024-07-25T05:13:49.010000"],["2024-07-25T05:13:50.010000"],["2024-07-25T05:13:51.010000"],["2024-07-25T05:13:52.010000"],["2024-07-25T05:13:53.010000"],["2024-07-25T05:13:54.010000"],["2024-07-25T05:13:55.010000"],["2024-07-25T05:13:56.010000"],["2024-07-25T05:13:57.010000"],["2024-07-25T05:13:58.010000"],["2024-07-25T05:13:59.010000"],["2024-07-25T05:14:00.010000"],["2024-07-25T05:14:01.010000"],["2024-07-25T05:14:02.010000"],["2024-07-25T05:14:03.010000"],["2024-07-25T05:14:04.010000"],["2024-07-25T05:14:05.010000"],["2024-07-25T05:14:06.010000"],["2024-07-25T05:14:07.010000"],["2024-07-25T05:14:08.010000"],["2024-07-25T05:14:09.010000"],["2024-07-25T05:14:10.010000"],["2024-07-25T05:14:11.010000"],["2024-07-25T05:14:12.010000"],["2024-07-25T05:14:13.010000"],["2024-07-25T05:14:14.010000"],["2024-07-25T05:14:15.010000"],["2024-07-25T05:14:16.010000"],["2024-07-25T05:14:17.010000"],["2024-07-25T05:14:18.010000"],["2024-07-25T05:14:19.010000"],["2024-07-25T05:14:20.010000"],["2024-07-25T05:14:21.010000"],["2024-07-25T05:14:22.010000"],["2024-07-25T05:14:23.010000"],["2024-07-25T05:14:24.010000"],["2024-07-25T05:14:25.010000"],["2024-07-25T05:14:26.010000"],["2024-07-25T05:14:27.010000"],["2024-07-25T05:14:28.010000"],["2024-07-25T05:14:29.010000"],["2024-07-25T05:14:30.010000"],["2024-07-25T05:14:31.010000"],["2024-07-25T05:14:32.010000"],["2024-07-25T05:14:33.010000"],["2024-07-25T05:14:34.010000"],["2024-07-25T05:14:35.010000"],["2024-07-25T05:14:36.010000"],["2024-07-25T05:14:37.010000"],["2024-07-25T05:14:38.010000"],["2024-07-25T05:14:39.010000"],["2024-07-25T05:14:40.010000"],["2024-07-25T05:14:41.010000"],["2024-07-25T05:14:42.010000"],["2024-07-25T05:14:43.010000"],["2024-07-25T05:14:44.010000"],["2024-07-25T05:14:45.010000"],["2024-07-25T05:14:46.010000"],["2024-07-25T05:14:47.010000"],["2024-07-25T05:14:48.010000"],["2024-07-25T05:14:49.010000"],["2024-07-25T05:14:50.010000"],["2024-07-25T05:14:51.010000"],["2024-07-25T05:14:52.010000"],["2024-07-25T05:14:53.010000"],["2024-07-25T05:14:54.010000"],["2024-07-25T05:14:55.010000"],["2024-07-25T05:14:56.010000"],["2024-07-25T05:14:57.010000"],["2024-07-25T05:14:58.010000"],["2024-07-25T05:14:59.010000"],["2024-07-25T05:15:00.010000"],["2024-07-25T05:15:01.010000"],["2024-07-25T05:15:02.010000"],["2024-07-25T05:15:03.010000"],["2024-07-25T05:15:04.010000"],["2024-07-25T05:15:05.010000"],["2024-07-25T05:15:06.010000"],["2024-07-25T05:15:07.010000"],["2024-07-25T05:15:08.010000"],["2024-07-25T05:15:09.010000"],["2024-07-25T05:15:10.010000"],["2024-07-25T05:15:11.010000"],["2024-07-25T05:15:12.010000"],["2024-07-25T05:15:13.010000"],["2024-07-25T05:15:14.010000"],["2024-07-25T05:15:15.010000"],["2024-07-25T05:15:16.010000"],["2024-07-25T05:15:17.010000"],["2024-07-25T05:15:18.010000"],["2024-07-25T05:15:19.010000"],["2024-07-25T05:15:20.010000"],["2024-07-25T05:15:21.010000"],["2024-07-25T05:15:22.010000"],["2024-07-25T05:15:23.010000"],["2024-07-25T05:15:24.010000"],["2024-07-25T05:15:25.010000"],["2024-07-25T05:15:26.010000"],["2024-07-25T05:15:27.010000"],["2024-07-25T05:15:28.010000"],["2024-07-25T05:15:29.010000"],["2024-07-25T05:15:30.010000"],["2024-07-25T05:15:31.010000"],["2024-07-25T05:15:32.010000"],["2024-07-25T05:15:33.010000"],["2024-07-25T05:15:34.010000"],["2024-07-25T05:15:35.010000"],["2024-07-25T05:15:36.010000"],["2024-07-25T05:15:37.010000"],["2024-07-25T05:15:38.010000"],["2024-07-25T05:15:39.010000"],["2024-07-25T05:15:40.010000"],["2024-07-25T05:15:41.010000"],["2024-07-25T05:15:42.010000"],["2024-07-25T05:15:43.010000"],["2024-07-25T05:15:44.010000"],["2024-07-25T05:15:45.010000"],["2024-07-25T05:15:46.010000"],["2024-07-25T05:15:47.010000"],["2024-07-25T05:15:48.010000"],["2024-07-25T05:15:49.010000"],["2024-07-25T05:15:50.010000"],["2024-07-25T05:15:51.010000"],["2024-07-25T05:15:52.010000"],["2024-07-25T05:15:53.010000"],["2024-07-25T05:15:54.010000"],["2024-07-25T05:15:55.010000"],["2024-07-25T05:15:56.010000"],["2024-07-25T05:15:57.010000"],["2024-07-25T05:15:58.010000"],["2024-07-25T05:15:59.010000"],["2024-07-25T05:16:00.010000"],["2024-07-25T05:16:01.010000"],["2024-07-25T05:16:02.010000"],["2024-07-25T05:16:03.010000"],["2024-07-25T05:16:04.010000"],["2024-07-25T05:16:05.010000"],["2024-07-25T05:16:06.010000"],["2024-07-25T05:16:07.010000"],["2024-07-25T05:16:08.010000"],["2024-07-25T05:16:09.010000"],["2024-07-25T05:16:10.010000"],["2024-07-25T05:16:11.010000"],["2024-07-25T05:16:12.010000"],["2024-07-25T05:16:13.010000"],["2024-07-25T05:16:14.010000"],["2024-07-25T05:16:15.010000"],["2024-07-25T05:16:16.010000"],["2024-07-25T05:16:17.010000"],["2024-07-25T05:16:18.010000"],["2024-07-25T05:16:19.010000"],["2024-07-25T05:16:20.010000"],["2024-07-25T05:16:21.010000"],["2024-07-25T05:16:22.010000"],["2024-07-25T05:16:23.010000"],["2024-07-25T05:16:24.010000"],["2024-07-25T05:16:25.010000"],["2024-07-25T05:16:26.010000"],["2024-07-25T05:16:27.010000"],["2024-07-25T05:16:28.010000"],["2024-07-25T05:16:29.010000"],["2024-07-25T05:16:30.010000"],["2024-07-25T05:16:31.010000"],["2024-07-25T05:16:32.010000"],["2024-07-25T05:16:33.010000"],["2024-07-25T05:16:34.010000"],["2024-07-25T05:16:35.010000"],["2024-07-25T05:16:36.010000"],["2024-07-25T05:16:37.010000"],["2024-07-25T05:16:38.010000"],["2024-07-25T05:16:39.010000"],["2024-07-25T05:16:40.010000"],["2024-07-25T05:16:41.010000"],["2024-07-25T05:16:42.010000"],["2024-07-25T05:16:43.010000"],["2024-07-25T05:16:44.010000"],["2024-07-25T05:16:45.010000"],["2024-07-25T05:16:46.010000"],["2024-07-25T05:16:47.010000"],["2024-07-25T05:16:48.010000"],["2024-07-25T05:16:49.010000"],["2024-07-25T05:16:50.010000"],["2024-07-25T05:16:51.010000"],["2024-07-25T05:16:52.010000"],["2024-07-25T05:16:53.010000"],["2024-07-25T05:16:54.010000"],["2024-07-25T05:16:55.010000"],["2024-07-25T05:16:56.010000"],["2024-07-25T05:16:57.010000"],["2024-07-25T05:16:58.010000"],["2024-07-25T05:16:59.010000"],["2024-07-25T05:17:00.010000"],["2024-07-25T05:17:01.010000"],["2024-07-25T05:17:02.010000"],["2024-07-25T05:17:03.010000"],["2024-07-25T05:17:04.010000"],["2024-07-25T05:17:05.010000"],["2024-07-25T05:17:06.010000"],["2024-07-25T05:17:07.010000"],["2024-07-25T05:17:08.010000"],["2024-07-25T05:17:09.010000"],["2024-07-25T05:17:10.010000"],["2024-07-25T05:17:11.010000"],["2024-07-25T05:17:12.010000"],["2024-07-25T05:17:13.010000"],["2024-07-25T05:17:14.010000"],["2024-07-25T05:17:15.010000"],["2024-07-25T05:17:16.010000"],["2024-07-25T05:17:17.010000"],["2024-07-25T05:17:18.010000"],["2024-07-25T05:17:19.010000"],["2024-07-25T05:17:20.010000"],["2024-07-25T05:17:21.010000"],["2024-07-25T05:17:22.010000"],["2024-07-25T05:17:23.010000"],["2024-07-25T05:17:24.010000"],["2024-07-25T05:17:25.010000"],["2024-07-25T05:17:26.010000"],["2024-07-25T05:17:27.010000"],["2024-07-25T05:17:28.010000"],["2024-07-25T05:17:29.010000"],["2024-07-25T05:17:30.010000"],["2024-07-25T05:17:31.010000"],["2024-07-25T05:17:32.010000"],["2024-07-25T05:17:33.010000"],["2024-07-25T05:17:34.010000"],["2024-07-25T05:17:35.010000"],["2024-07-25T05:17:36.010000"],["2024-07-25T05:17:37.010000"],["2024-07-25T05:17:38.010000"],["2024-07-25T05:17:39.010000"],["2024-07-25T05:17:40.010000"],["2024-07-25T05:17:41.010000"],["2024-07-25T05:17:42.010000"],["2024-07-25T05:17:43.010000"],["2024-07-25T05:17:44.010000"],["2024-07-25T05:17:45.010000"],["2024-07-25T05:17:46.010000"],["2024-07-25T05:17:47.010000"],["2024-07-25T05:17:48.010000"],["2024-07-25T05:17:49.010000"],["2024-07-25T05:17:50.010000"],["2024-07-25T05:17:51.010000"],["2024-07-25T05:17:52.010000"],["2024-07-25T05:17:53.010000"],["2024-07-25T05:17:54.010000"],["2024-07-25T05:17:55.010000"],["2024-07-25T05:17:56.010000"],["2024-07-25T05:17:57.010000"],["2024-07-25T05:17:58.010000"],["2024-07-25T05:17:59.010000"],["2024-07-25T05:18:00.010000"],["2024-07-25T05:18:01.010000"],["2024-07-25T05:18:02.010000"],["2024-07-25T05:18:03.010000"],["2024-07-25T05:18:04.010000"],["2024-07-25T05:18:05.010000"],["2024-07-25T05:18:06.010000"],["2024-07-25T05:18:07.010000"],["2024-07-25T05:18:08.010000"],["2024-07-25T05:18:09.010000"],["2024-07-25T05:18:10.010000"],["2024-07-25T05:18:11.010000"],["2024-07-25T05:18:12.010000"],["2024-07-25T05:18:13.010000"],["2024-07-25T05:18:14.010000"],["2024-07-25T05:18:15.010000"],["2024-07-25T05:18:16.010000"],["2024-07-25T05:18:17.010000"],["2024-07-25T05:18:18.010000"],["2024-07-25T05:18:19.010000"],["2024-07-25T05:18:20.010000"],["2024-07-25T05:18:21.010000"],["2024-07-25T05:18:22.010000"],["2024-07-25T05:18:23.010000"],["2024-07-25T05:18:24.010000"],["2024-07-25T05:18:25.010000"],["2024-07-25T05:18:26.010000"],["2024-07-25T05:18:27.010000"],["2024-07-25T05:18:28.010000"],["2024-07-25T05:18:29.010000"],["2024-07-25T05:18:30.010000"],["2024-07-25T05:18:31.010000"],["2024-07-25T05:18:32.010000"],["2024-07-25T05:18:33.010000"],["2024-07-25T05:18:34.010000"],["2024-07-25T05:18:35.010000"],["2024-07-25T05:18:36.010000"],["2024-07-25T05:18:37.010000"],["2024-07-25T05:18:38.010000"],["2024-07-25T05:18:39.010000"],["2024-07-25T05:18:40.010000"],["2024-07-25T05:18:41.010000"],["2024-07-25T05:18:42.010000"],["2024-07-25T05:18:43.010000"],["2024-07-25T05:18:44.010000"],["2024-07-25T05:18:45.010000"],["2024-07-25T05:18:46.010000"],["2024-07-25T05:18:47.010000"],["2024-07-25T05:18:48.010000"],["2024-07-25T05:18:49.010000"],["2024-07-25T05:18:50.010000"],["2024-07-25T05:18:51.010000"],["2024-07-25T05:18:52.010000"],["2024-07-25T05:18:53.010000"],["2024-07-25T05:18:54.010000"],["2024-07-25T05:18:55.010000"],["2024-07-25T05:18:56.010000"],["2024-07-25T05:18:57.010000"],["2024-07-25T05:18:58.010000"],["2024-07-25T05:18:59.010000"],["2024-07-25T05:19:00.010000"],["2024-07-25T05:19:01.010000"],["2024-07-25T05:19:02.010000"],["2024-07-25T05:19:03.010000"],["2024-07-25T05:19:04.010000"],["2024-07-25T05:19:05.010000"],["2024-07-25T05:19:06.010000"],["2024-07-25T05:19:07.010000"],["2024-07-25T05:19:08.010000"],["2024-07-25T05:19:09.010000"],["2024-07-25T05:19:10.010000"],["2024-07-25T05:19:11.010000"],["2024-07-25T05:19:12.010000"],["2024-07-25T05:19:13.010000"],["2024-07-25T05:19:14.010000"],["2024-07-25T05:19:15.010000"],["2024-07-25T05:19:16.010000"],["2024-07-25T05:19:17.010000"],["2024-07-25T05:19:18.010000"],["2024-07-25T05:19:19.010000"],["2024-07-25T05:19:20.010000"],["2024-07-25T05:19:21.010000"],["2024-07-25T05:19:22.010000"],["2024-07-25T05:19:23.010000"],["2024-07-25T05:19:24.010000"],["2024-07-25T05:19:25.010000"],["2024-07-25T05:19:26.010000"],["2024-07-25T05:19:27.010000"],["2024-07-25T05:19:28.010000"],["2024-07-25T05:19:29.010000"],["2024-07-25T05:19:30.010000"],["2024-07-25T05:19:31.010000"],["2024-07-25T05:19:32.010000"],["2024-07-25T05:19:33.010000"],["2024-07-25T05:19:34.010000"],["2024-07-25T05:19:35.010000"],["2024-07-25T05:19:36.010000"],["2024-07-25T05:19:37.010000"],["2024-07-25T05:19:38.010000"],["2024-07-25T05:19:39.010000"],["2024-07-25T05:19:40.010000"],["2024-07-25T05:19:41.010000"],["2024-07-25T05:19:42.010000"],["2024-07-25T05:19:43.010000"],["2024-07-25T05:19:44.010000"],["2024-07-25T05:19:45.010000"],["2024-07-25T05:19:46.010000"],["2024-07-25T05:19:47.010000"],["2024-07-25T05:19:48.010000"],["2024-07-25T05:19:49.010000"],["2024-07-25T05:19:50.010000"],["2024-07-25T05:19:51.010000"],["2024-07-25T05:19:52.010000"],["2024-07-25T05:19:53.010000"],["2024-07-25T05:19:54.010000"],["2024-07-25T05:19:55.010000"],["2024-07-25T05:19:56.010000"],["2024-07-25T05:19:57.010000"],["2024-07-25T05:19:58.010000"],["2024-07-25T05:19:59.010000"],["2024-07-25T05:20:00.010000"],["2024-07-25T05:20:01.010000"],["2024-07-25T05:20:02.010000"],["2024-07-25T05:20:03.010000"],["2024-07-25T05:20:04.010000"],["2024-07-25T05:20:05.010000"],["2024-07-25T05:20:06.010000"],["2024-07-25T05:20:07.010000"],["2024-07-25T05:20:08.010000"],["2024-07-25T05:20:09.010000"],["2024-07-25T05:20:10.010000"],["2024-07-25T05:20:11.010000"],["2024-07-25T05:20:12.010000"],["2024-07-25T05:20:13.010000"],["2024-07-25T05:20:14.010000"],["2024-07-25T05:20:15.010000"],["2024-07-25T05:20:16.010000"],["2024-07-25T05:20:17.010000"],["2024-07-25T05:20:18.010000"],["2024-07-25T05:20:19.010000"],["2024-07-25T05:20:20.010000"],["2024-07-25T05:20:21.010000"],["2024-07-25T05:20:22.010000"],["2024-07-25T05:20:23.010000"],["2024-07-25T05:20:24.010000"],["2024-07-25T05:20:25.010000"],["2024-07-25T05:20:26.010000"],["2024-07-25T05:20:27.010000"],["2024-07-25T05:20:28.010000"],["2024-07-25T05:20:29.010000"],["2024-07-25T05:20:30.010000"],["2024-07-25T05:20:31.010000"],["2024-07-25T05:20:32.010000"],["2024-07-25T05:20:33.010000"],["2024-07-25T05:20:34.010000"],["2024-07-25T05:20:35.010000"],["2024-07-25T05:20:36.010000"],["2024-07-25T05:20:37.010000"],["2024-07-25T05:20:38.010000"],["2024-07-25T05:20:39.010000"],["2024-07-25T05:20:40.010000"],["2024-07-25T05:20:41.010000"],["2024-07-25T05:20:42.010000"],["2024-07-25T05:20:43.010000"],["2024-07-25T05:20:44.010000"],["2024-07-25T05:20:45.010000"],["2024-07-25T05:20:46.010000"],["2024-07-25T05:20:47.010000"],["2024-07-25T05:20:48.010000"],["2024-07-25T05:20:49.010000"],["2024-07-25T05:20:50.010000"],["2024-07-25T05:20:51.010000"],["2024-07-25T05:20:52.010000"],["2024-07-25T05:20:53.010000"],["2024-07-25T05:20:54.010000"],["2024-07-25T05:20:55.010000"],["2024-07-25T05:20:56.010000"],["2024-07-25T05:20:57.010000"],["2024-07-25T05:20:58.010000"],["2024-07-25T05:20:59.010000"],["2024-07-25T05:21:00.010000"],["2024-07-25T05:21:01.010000"],["2024-07-25T05:21:02.010000"],["2024-07-25T05:21:03.010000"],["2024-07-25T05:21:04.010000"],["2024-07-25T05:21:05.010000"],["2024-07-25T05:21:06.010000"],["2024-07-25T05:21:07.010000"],["2024-07-25T05:21:08.010000"],["2024-07-25T05:21:09.010000"],["2024-07-25T05:21:10.010000"],["2024-07-25T05:21:11.010000"],["2024-07-25T05:21:12.010000"],["2024-07-25T05:21:13.010000"],["2024-07-25T05:21:14.010000"],["2024-07-25T05:21:15.010000"],["2024-07-25T05:21:16.010000"],["2024-07-25T05:21:17.010000"],["2024-07-25T05:21:18.010000"],["2024-07-25T05:21:19.010000"],["2024-07-25T05:21:20.010000"],["2024-07-25T05:21:21.010000"],["2024-07-25T05:21:22.010000"],["2024-07-25T05:21:23.010000"],["2024-07-25T05:21:24.010000"],["2024-07-25T05:21:25.010000"],["2024-07-25T05:21:26.010000"],["2024-07-25T05:21:27.010000"],["2024-07-25T05:21:28.010000"],["2024-07-25T05:21:29.010000"],["2024-07-25T05:21:30.010000"],["2024-07-25T05:21:31.010000"],["2024-07-25T05:21:32.010000"],["2024-07-25T05:21:33.010000"],["2024-07-25T05:21:34.010000"],["2024-07-25T05:21:35.010000"],["2024-07-25T05:21:36.010000"],["2024-07-25T05:21:37.010000"],["2024-07-25T05:21:38.010000"],["2024-07-25T05:21:39.010000"],["2024-07-25T05:21:40.010000"],["2024-07-25T05:21:41.010000"],["2024-07-25T05:21:42.010000"],["2024-07-25T05:21:43.010000"],["2024-07-25T05:21:44.010000"],["2024-07-25T05:21:45.010000"],["2024-07-25T05:21:46.010000"],["2024-07-25T05:21:47.010000"],["2024-07-25T05:21:48.010000"],["2024-07-25T05:21:49.010000"],["2024-07-25T05:21:50.010000"],["2024-07-25T05:21:51.010000"],["2024-07-25T05:21:52.010000"],["2024-07-25T05:21:53.010000"],["2024-07-25T05:21:54.010000"],["2024-07-25T05:21:55.010000"],["2024-07-25T05:21:56.010000"],["2024-07-25T05:21:57.010000"],["2024-07-25T05:21:58.010000"],["2024-07-25T05:21:59.010000"],["2024-07-25T05:22:00.010000"],["2024-07-25T05:22:01.010000"],["2024-07-25T05:22:02.010000"],["2024-07-25T05:22:03.010000"],["2024-07-25T05:22:04.010000"],["2024-07-25T05:22:05.010000"],["2024-07-25T05:22:06.010000"],["2024-07-25T05:22:07.010000"],["2024-07-25T05:22:08.010000"],["2024-07-25T05:22:09.010000"],["2024-07-25T05:22:10.010000"],["2024-07-25T05:22:11.010000"],["2024-07-25T05:22:12.010000"],["2024-07-25T05:22:13.010000"],["2024-07-25T05:22:14.010000"],["2024-07-25T05:22:15.010000"],["2024-07-25T05:22:16.010000"],["2024-07-25T05:22:17.010000"],["2024-07-25T05:22:18.010000"],["2024-07-25T05:22:19.010000"],["2024-07-25T05:22:20.010000"],["2024-07-25T05:22:21.010000"],["2024-07-25T05:22:22.010000"],["2024-07-25T05:22:23.010000"],["2024-07-25T05:22:24.010000"],["2024-07-25T05:22:25.010000"],["2024-07-25T05:22:26.010000"],["2024-07-25T05:22:27.010000"],["2024-07-25T05:22:28.010000"],["2024-07-25T05:22:29.010000"],["2024-07-25T05:22:30.010000"],["2024-07-25T05:22:31.010000"],["2024-07-25T05:22:32.010000"],["2024-07-25T05:22:33.010000"],["2024-07-25T05:22:34.010000"],["2024-07-25T05:22:35.010000"],["2024-07-25T05:22:36.010000"],["2024-07-25T05:22:37.010000"],["2024-07-25T05:22:38.010000"],["2024-07-25T05:22:39.010000"],["2024-07-25T05:22:40.010000"],["2024-07-25T05:22:41.010000"],["2024-07-25T05:22:42.010000"],["2024-07-25T05:22:43.010000"],["2024-07-25T05:22:44.010000"],["2024-07-25T05:22:45.010000"],["2024-07-25T05:22:46.010000"],["2024-07-25T05:22:47.010000"],["2024-07-25T05:22:48.010000"],["2024-07-25T05:22:49.010000"],["2024-07-25T05:22:50.010000"],["2024-07-25T05:22:51.010000"],["2024-07-25T05:22:52.010000"],["2024-07-25T05:22:53.010000"],["2024-07-25T05:22:54.010000"],["2024-07-25T05:22:55.010000"],["2024-07-25T05:22:56.010000"],["2024-07-25T05:22:57.010000"],["2024-07-25T05:22:58.010000"],["2024-07-25T05:22:59.010000"],["2024-07-25T05:23:00.010000"],["2024-07-25T05:23:01.010000"],["2024-07-25T05:23:02.010000"],["2024-07-25T05:23:03.010000"],["2024-07-25T05:23:04.010000"],["2024-07-25T05:23:05.010000"],["2024-07-25T05:23:06.010000"],["2024-07-25T05:23:07.010000"],["2024-07-25T05:23:08.010000"],["2024-07-25T05:23:09.010000"],["2024-07-25T05:23:10.010000"],["2024-07-25T05:23:11.010000"],["2024-07-25T05:23:12.010000"],["2024-07-25T05:23:13.010000"],["2024-07-25T05:23:14.010000"],["2024-07-25T05:23:15.010000"],["2024-07-25T05:23:16.010000"],["2024-07-25T05:23:17.010000"],["2024-07-25T05:23:18.010000"],["2024-07-25T05:23:19.010000"],["2024-07-25T05:23:20.010000"],["2024-07-25T05:23:21.010000"],["2024-07-25T05:23:22.010000"],["2024-07-25T05:23:23.010000"],["2024-07-25T05:23:24.010000"],["2024-07-25T05:23:25.010000"],["2024-07-25T05:23:26.010000"],["2024-07-25T05:23:27.010000"],["2024-07-25T05:23:28.010000"],["2024-07-25T05:23:29.010000"],["2024-07-25T05:23:30.010000"],["2024-07-25T05:23:31.010000"],["2024-07-25T05:23:32.010000"],["2024-07-25T05:23:33.010000"],["2024-07-25T05:23:34.010000"],["2024-07-25T05:23:35.010000"],["2024-07-25T05:23:36.010000"],["2024-07-25T05:23:37.010000"],["2024-07-25T05:23:38.010000"],["2024-07-25T05:23:39.010000"],["2024-07-25T05:23:40.010000"],["2024-07-25T05:23:41.010000"],["2024-07-25T05:23:42.010000"],["2024-07-25T05:23:43.010000"],["2024-07-25T05:23:44.010000"],["2024-07-25T05:23:45.010000"],["2024-07-25T05:23:46.010000"],["2024-07-25T05:23:47.010000"],["2024-07-25T05:23:48.010000"],["2024-07-25T05:23:49.010000"],["2024-07-25T05:23:50.010000"],["2024-07-25T05:23:51.010000"],["2024-07-25T05:23:52.010000"],["2024-07-25T05:23:53.010000"],["2024-07-25T05:23:54.010000"],["2024-07-25T05:23:55.010000"],["2024-07-25T05:23:56.010000"],["2024-07-25T05:23:57.010000"],["2024-07-25T05:23:58.010000"],["2024-07-25T05:23:59.010000"],["2024-07-25T05:24:00.010000"],["2024-07-25T05:24:01.010000"],["2024-07-25T05:24:02.010000"],["2024-07-25T05:24:03.010000"],["2024-07-25T05:24:04.010000"],["2024-07-25T05:24:05.010000"],["2024-07-25T05:24:06.010000"],["2024-07-25T05:24:07.010000"],["2024-07-25T05:24:08.010000"],["2024-07-25T05:24:09.010000"],["2024-07-25T05:24:10.010000"],["2024-07-25T05:24:11.010000"],["2024-07-25T05:24:12.010000"],["2024-07-25T05:24:13.010000"],["2024-07-25T05:24:14.010000"],["2024-07-25T05:24:15.010000"],["2024-07-25T05:24:16.010000"],["2024-07-25T05:24:17.010000"],["2024-07-25T05:24:18.010000"],["2024-07-25T05:24:19.010000"],["2024-07-25T05:24:20.010000"],["2024-07-25T05:24:21.010000"],["2024-07-25T05:24:22.010000"],["2024-07-25T05:24:23.010000"],["2024-07-25T05:24:24.010000"],["2024-07-25T05:24:25.010000"],["2024-07-25T05:24:26.010000"],["2024-07-25T05:24:27.010000"],["2024-07-25T05:24:28.010000"],["2024-07-25T05:24:29.010000"],["2024-07-25T05:24:30.010000"],["2024-07-25T05:24:31.010000"],["2024-07-25T05:24:32.010000"],["2024-07-25T05:24:33.010000"],["2024-07-25T05:24:34.010000"],["2024-07-25T05:24:35.010000"],["2024-07-25T05:24:36.010000"],["2024-07-25T05:24:37.010000"],["2024-07-25T05:24:38.010000"],["2024-07-25T05:24:39.010000"],["2024-07-25T05:24:40.010000"],["2024-07-25T05:24:41.010000"],["2024-07-25T05:24:42.010000"],["2024-07-25T05:24:43.010000"],["2024-07-25T05:24:44.010000"],["2024-07-25T05:24:45.010000"],["2024-07-25T05:24:46.010000"],["2024-07-25T05:24:47.010000"],["2024-07-25T05:24:48.010000"],["2024-07-25T05:24:49.010000"],["2024-07-25T05:24:50.010000"],["2024-07-25T05:24:51.010000"],["2024-07-25T05:24:52.010000"],["2024-07-25T05:24:53.010000"],["2024-07-25T05:24:54.010000"],["2024-07-25T05:24:55.010000"],["2024-07-25T05:24:56.010000"],["2024-07-25T05:24:57.010000"],["2024-07-25T05:24:58.010000"],["2024-07-25T05:24:59.010000"],["2024-07-25T05:25:00.010000"],["2024-07-25T05:25:01.010000"],["2024-07-25T05:25:02.010000"],["2024-07-25T05:25:03.010000"],["2024-07-25T05:25:04.010000"],["2024-07-25T05:25:05.010000"],["2024-07-25T05:25:06.010000"],["2024-07-25T05:25:07.010000"],["2024-07-25T05:25:08.010000"],["2024-07-25T05:25:09.010000"],["2024-07-25T05:25:10.010000"],["2024-07-25T05:25:11.010000"],["2024-07-25T05:25:12.010000"],["2024-07-25T05:25:13.010000"],["2024-07-25T05:25:14.010000"],["2024-07-25T05:25:15.010000"],["2024-07-25T05:25:16.010000"],["2024-07-25T05:25:17.010000"],["2024-07-25T05:25:18.010000"],["2024-07-25T05:25:19.010000"],["2024-07-25T05:25:20.010000"],["2024-07-25T05:25:21.010000"],["2024-07-25T05:25:22.010000"],["2024-07-25T05:25:23.010000"],["2024-07-25T05:25:24.010000"],["2024-07-25T05:25:25.010000"],["2024-07-25T05:25:26.010000"],["2024-07-25T05:25:27.010000"],["2024-07-25T05:25:28.010000"],["2024-07-25T05:25:29.010000"],["2024-07-25T05:25:30.010000"],["2024-07-25T05:25:31.010000"],["2024-07-25T05:25:32.010000"],["2024-07-25T05:25:33.010000"],["2024-07-25T05:25:34.010000"],["2024-07-25T05:25:35.010000"],["2024-07-25T05:25:36.010000"],["2024-07-25T05:25:37.010000"],["2024-07-25T05:25:38.010000"],["2024-07-25T05:25:39.010000"],["2024-07-25T05:25:40.010000"],["2024-07-25T05:25:41.010000"],["2024-07-25T05:25:42.010000"],["2024-07-25T05:25:43.010000"],["2024-07-25T05:25:44.010000"],["2024-07-25T05:25:45.010000"],["2024-07-25T05:25:46.010000"],["2024-07-25T05:25:47.010000"],["2024-07-25T05:25:48.010000"],["2024-07-25T05:25:49.010000"],["2024-07-25T05:25:50.010000"],["2024-07-25T05:25:51.010000"],["2024-07-25T05:25:52.010000"],["2024-07-25T05:25:53.010000"],["2024-07-25T05:25:54.010000"],["2024-07-25T05:25:55.010000"],["2024-07-25T05:25:56.010000"],["2024-07-25T05:25:57.010000"],["2024-07-25T05:25:58.010000"],["2024-07-25T05:25:59.010000"],["2024-07-25T05:26:00.010000"],["2024-07-25T05:26:01.010000"],["2024-07-25T05:26:02.010000"],["2024-07-25T05:26:03.010000"],["2024-07-25T05:26:04.010000"],["2024-07-25T05:26:05.010000"],["2024-07-25T05:26:06.010000"],["2024-07-25T05:26:07.010000"],["2024-07-25T05:26:08.010000"],["2024-07-25T05:26:09.010000"],["2024-07-25T05:26:10.010000"],["2024-07-25T05:26:11.010000"],["2024-07-25T05:26:12.010000"],["2024-07-25T05:26:13.010000"],["2024-07-25T05:26:14.010000"],["2024-07-25T05:26:15.010000"],["2024-07-25T05:26:16.010000"],["2024-07-25T05:26:17.010000"],["2024-07-25T05:26:18.010000"],["2024-07-25T05:26:19.010000"],["2024-07-25T05:26:20.010000"],["2024-07-25T05:26:21.010000"],["2024-07-25T05:26:22.010000"],["2024-07-25T05:26:23.010000"],["2024-07-25T05:26:24.010000"],["2024-07-25T05:26:25.010000"],["2024-07-25T05:26:26.010000"],["2024-07-25T05:26:27.010000"],["2024-07-25T05:26:28.010000"],["2024-07-25T05:26:29.010000"],["2024-07-25T05:26:30.010000"],["2024-07-25T05:26:31.010000"],["2024-07-25T05:26:32.010000"],["2024-07-25T05:26:33.010000"],["2024-07-25T05:26:34.010000"],["2024-07-25T05:26:35.010000"],["2024-07-25T05:26:36.010000"],["2024-07-25T05:26:37.010000"],["2024-07-25T05:26:38.010000"],["2024-07-25T05:26:39.010000"],["2024-07-25T05:26:40.010000"],["2024-07-25T05:26:41.010000"],["2024-07-25T05:26:42.010000"],["2024-07-25T05:26:43.010000"],["2024-07-25T05:26:44.010000"],["2024-07-25T05:26:45.010000"],["2024-07-25T05:26:46.010000"],["2024-07-25T05:26:47.010000"],["2024-07-25T05:26:48.010000"],["2024-07-25T05:26:49.010000"],["2024-07-25T05:26:50.010000"],["2024-07-25T05:26:51.010000"],["2024-07-25T05:26:52.010000"],["2024-07-25T05:26:53.010000"],["2024-07-25T05:26:54.010000"],["2024-07-25T05:26:55.010000"],["2024-07-25T05:26:56.010000"],["2024-07-25T05:26:57.010000"],["2024-07-25T05:26:58.010000"],["2024-07-25T05:26:59.010000"],["2024-07-25T05:27:00.010000"],["2024-07-25T05:27:01.010000"],["2024-07-25T05:27:02.010000"],["2024-07-25T05:27:03.010000"],["2024-07-25T05:27:04.010000"],["2024-07-25T05:27:05.010000"],["2024-07-25T05:27:06.010000"],["2024-07-25T05:27:07.010000"],["2024-07-25T05:27:08.010000"],["2024-07-25T05:27:09.010000"],["2024-07-25T05:27:10.010000"],["2024-07-25T05:27:11.010000"],["2024-07-25T05:27:12.010000"],["2024-07-25T05:27:13.010000"],["2024-07-25T05:27:14.010000"],["2024-07-25T05:27:15.010000"],["2024-07-25T05:27:16.010000"],["2024-07-25T05:27:17.010000"],["2024-07-25T05:27:18.010000"],["2024-07-25T05:27:19.010000"],["2024-07-25T05:27:20.010000"],["2024-07-25T05:27:21.010000"],["2024-07-25T05:27:22.010000"],["2024-07-25T05:27:23.010000"],["2024-07-25T05:27:24.010000"],["2024-07-25T05:27:25.010000"],["2024-07-25T05:27:26.010000"],["2024-07-25T05:27:27.010000"],["2024-07-25T05:27:28.010000"],["2024-07-25T05:27:29.010000"],["2024-07-25T05:27:30.010000"],["2024-07-25T05:27:31.010000"],["2024-07-25T05:27:32.010000"],["2024-07-25T05:27:33.010000"],["2024-07-25T05:27:34.010000"],["2024-07-25T05:27:35.010000"],["2024-07-25T05:27:36.010000"],["2024-07-25T05:27:37.010000"],["2024-07-25T05:27:38.010000"],["2024-07-25T05:27:39.010000"],["2024-07-25T05:27:40.010000"],["2024-07-25T05:27:41.010000"],["2024-07-25T05:27:42.010000"],["2024-07-25T05:27:43.010000"],["2024-07-25T05:27:44.010000"],["2024-07-25T05:27:45.010000"],["2024-07-25T05:27:46.010000"],["2024-07-25T05:27:47.010000"],["2024-07-25T05:27:48.010000"],["2024-07-25T05:27:49.010000"],["2024-07-25T05:27:50.010000"],["2024-07-25T05:27:51.010000"],["2024-07-25T05:27:52.010000"],["2024-07-25T05:27:53.010000"],["2024-07-25T05:27:54.010000"],["2024-07-25T05:27:55.010000"],["2024-07-25T05:27:56.010000"],["2024-07-25T05:27:57.010000"],["2024-07-25T05:27:58.010000"],["2024-07-25T05:27:59.010000"],["2024-07-25T05:28:00.010000"],["2024-07-25T05:28:01.010000"],["2024-07-25T05:28:02.010000"],["2024-07-25T05:28:03.010000"],["2024-07-25T05:28:04.010000"],["2024-07-25T05:28:05.010000"],["2024-07-25T05:28:06.010000"],["2024-07-25T05:28:07.010000"],["2024-07-25T05:28:08.010000"],["2024-07-25T05:28:09.010000"],["2024-07-25T05:28:10.010000"],["2024-07-25T05:28:11.010000"],["2024-07-25T05:28:12.010000"],["2024-07-25T05:28:13.010000"],["2024-07-25T05:28:14.010000"],["2024-07-25T05:28:15.010000"],["2024-07-25T05:28:16.010000"],["2024-07-25T05:28:17.010000"],["2024-07-25T05:28:18.010000"],["2024-07-25T05:28:19.010000"],["2024-07-25T05:28:20.010000"],["2024-07-25T05:28:21.010000"],["2024-07-25T05:28:22.010000"],["2024-07-25T05:28:23.010000"],["2024-07-25T05:28:24.010000"],["2024-07-25T05:28:25.010000"],["2024-07-25T05:28:26.010000"],["2024-07-25T05:28:27.010000"],["2024-07-25T05:28:28.010000"],["2024-07-25T05:28:29.010000"],["2024-07-25T05:28:30.010000"],["2024-07-25T05:28:31.010000"],["2024-07-25T05:28:32.010000"],["2024-07-25T05:28:33.010000"],["2024-07-25T05:28:34.010000"],["2024-07-25T05:28:35.010000"],["2024-07-25T05:28:36.010000"],["2024-07-25T05:28:37.010000"],["2024-07-25T05:28:38.010000"],["2024-07-25T05:28:39.010000"],["2024-07-25T05:28:40.010000"],["2024-07-25T05:28:41.010000"],["2024-07-25T05:28:42.010000"],["2024-07-25T05:28:43.010000"],["2024-07-25T05:28:44.010000"],["2024-07-25T05:28:45.010000"],["2024-07-25T05:28:46.010000"],["2024-07-25T05:28:47.010000"],["2024-07-25T05:28:48.010000"],["2024-07-25T05:28:49.010000"],["2024-07-25T05:28:50.010000"],["2024-07-25T05:28:51.010000"],["2024-07-25T05:28:52.010000"],["2024-07-25T05:28:53.010000"],["2024-07-25T05:28:54.010000"],["2024-07-25T05:28:55.010000"],["2024-07-25T05:28:56.010000"],["2024-07-25T05:28:57.010000"],["2024-07-25T05:28:58.010000"],["2024-07-25T05:28:59.010000"],["2024-07-25T05:29:00.010000"],["2024-07-25T05:29:01.010000"],["2024-07-25T05:29:02.010000"],["2024-07-25T05:29:03.010000"],["2024-07-25T05:29:04.010000"],["2024-07-25T05:29:05.010000"],["2024-07-25T05:29:06.010000"],["2024-07-25T05:29:07.010000"],["2024-07-25T05:29:08.010000"],["2024-07-25T05:29:09.010000"],["2024-07-25T05:29:10.010000"],["2024-07-25T05:29:11.010000"],["2024-07-25T05:29:12.010000"],["2024-07-25T05:29:13.010000"],["2024-07-25T05:29:14.010000"],["2024-07-25T05:29:15.010000"],["2024-07-25T05:29:16.010000"],["2024-07-25T05:29:17.010000"],["2024-07-25T05:29:18.010000"],["2024-07-25T05:29:19.010000"],["2024-07-25T05:29:20.010000"],["2024-07-25T05:29:21.010000"],["2024-07-25T05:29:22.010000"],["2024-07-25T05:29:23.010000"],["2024-07-25T05:29:24.010000"],["2024-07-25T05:29:25.010000"],["2024-07-25T05:29:26.010000"],["2024-07-25T05:29:27.010000"],["2024-07-25T05:29:28.010000"],["2024-07-25T05:29:29.010000"],["2024-07-25T05:29:30.010000"],["2024-07-25T05:29:31.010000"],["2024-07-25T05:29:32.010000"],["2024-07-25T05:29:33.010000"],["2024-07-25T05:29:34.010000"],["2024-07-25T05:29:35.010000"],["2024-07-25T05:29:36.010000"],["2024-07-25T05:29:37.010000"],["2024-07-25T05:29:38.010000"],["2024-07-25T05:29:39.010000"],["2024-07-25T05:29:40.010000"],["2024-07-25T05:29:41.010000"],["2024-07-25T05:29:42.010000"],["2024-07-25T05:29:43.010000"],["2024-07-25T05:29:44.010000"],["2024-07-25T05:29:45.010000"],["2024-07-25T05:29:46.010000"],["2024-07-25T05:29:47.010000"],["2024-07-25T05:29:48.010000"],["2024-07-25T05:29:49.010000"],["2024-07-25T05:29:50.010000"],["2024-07-25T05:29:51.010000"],["2024-07-25T05:29:52.010000"],["2024-07-25T05:29:53.010000"],["2024-07-25T05:29:54.010000"],["2024-07-25T05:29:55.010000"],["2024-07-25T05:29:56.010000"],["2024-07-25T05:29:57.010000"],["2024-07-25T05:29:58.010000"],["2024-07-25T05:29:59.010000"],["2024-07-25T05:30:00.010000"],["2024-07-25T05:30:01.010000"],["2024-07-25T05:30:02.010000"],["2024-07-25T05:30:03.010000"],["2024-07-25T05:30:04.010000"],["2024-07-25T05:30:05.010000"],["2024-07-25T05:30:06.010000"],["2024-07-25T05:30:07.010000"],["2024-07-25T05:30:08.010000"],["2024-07-25T05:30:09.010000"],["2024-07-25T05:30:10.010000"],["2024-07-25T05:30:11.010000"],["2024-07-25T05:30:12.010000"],["2024-07-25T05:30:13.010000"],["2024-07-25T05:30:14.010000"],["2024-07-25T05:30:15.010000"],["2024-07-25T05:30:16.010000"],["2024-07-25T05:30:17.010000"],["2024-07-25T05:30:18.010000"],["2024-07-25T05:30:19.010000"],["2024-07-25T05:30:20.010000"],["2024-07-25T05:30:21.010000"],["2024-07-25T05:30:22.010000"],["2024-07-25T05:30:23.010000"],["2024-07-25T05:30:24.010000"],["2024-07-25T05:30:25.010000"],["2024-07-25T05:30:26.010000"],["2024-07-25T05:30:27.010000"],["2024-07-25T05:30:28.010000"],["2024-07-25T05:30:29.010000"],["2024-07-25T05:30:30.010000"],["2024-07-25T05:30:31.010000"],["2024-07-25T05:30:32.010000"],["2024-07-25T05:30:33.010000"],["2024-07-25T05:30:34.010000"],["2024-07-25T05:30:35.010000"],["2024-07-25T05:30:36.010000"],["2024-07-25T05:30:37.010000"],["2024-07-25T05:30:38.010000"],["2024-07-25T05:30:39.010000"],["2024-07-25T05:30:40.010000"],["2024-07-25T05:30:41.010000"],["2024-07-25T05:30:42.010000"],["2024-07-25T05:30:43.010000"],["2024-07-25T05:30:44.010000"],["2024-07-25T05:30:45.010000"],["2024-07-25T05:30:46.010000"],["2024-07-25T05:30:47.010000"],["2024-07-25T05:30:48.010000"],["2024-07-25T05:30:49.010000"],["2024-07-25T05:30:50.010000"],["2024-07-25T05:30:51.010000"],["2024-07-25T05:30:52.010000"],["2024-07-25T05:30:53.010000"],["2024-07-25T05:30:54.010000"],["2024-07-25T05:30:55.010000"],["2024-07-25T05:30:56.010000"],["2024-07-25T05:30:57.010000"],["2024-07-25T05:30:58.010000"],["2024-07-25T05:30:59.010000"],["2024-07-25T05:31:00.010000"],["2024-07-25T05:31:01.010000"],["2024-07-25T05:31:02.010000"],["2024-07-25T05:31:03.010000"],["2024-07-25T05:31:04.010000"],["2024-07-25T05:31:05.010000"],["2024-07-25T05:31:06.010000"],["2024-07-25T05:31:07.010000"],["2024-07-25T05:31:08.010000"],["2024-07-25T05:31:09.010000"],["2024-07-25T05:31:10.010000"],["2024-07-25T05:31:11.010000"],["2024-07-25T05:31:12.010000"],["2024-07-25T05:31:13.010000"],["2024-07-25T05:31:14.010000"],["2024-07-25T05:31:15.010000"],["2024-07-25T05:31:16.010000"],["2024-07-25T05:31:17.010000"],["2024-07-25T05:31:18.010000"],["2024-07-25T05:31:19.010000"],["2024-07-25T05:31:20.010000"],["2024-07-25T05:31:21.010000"],["2024-07-25T05:31:22.010000"],["2024-07-25T05:31:23.010000"],["2024-07-25T05:31:24.010000"],["2024-07-25T05:31:25.010000"],["2024-07-25T05:31:26.010000"],["2024-07-25T05:31:27.010000"],["2024-07-25T05:31:28.010000"],["2024-07-25T05:31:29.010000"],["2024-07-25T05:31:30.010000"],["2024-07-25T05:31:31.010000"],["2024-07-25T05:31:32.010000"],["2024-07-25T05:31:33.010000"],["2024-07-25T05:31:34.010000"],["2024-07-25T05:31:35.010000"],["2024-07-25T05:31:36.010000"],["2024-07-25T05:31:37.010000"],["2024-07-25T05:31:38.010000"],["2024-07-25T05:31:39.010000"],["2024-07-25T05:31:40.010000"],["2024-07-25T05:31:41.010000"],["2024-07-25T05:31:42.010000"],["2024-07-25T05:31:43.010000"],["2024-07-25T05:31:44.010000"],["2024-07-25T05:31:45.010000"],["2024-07-25T05:31:46.010000"],["2024-07-25T05:31:47.010000"],["2024-07-25T05:31:48.010000"],["2024-07-25T05:31:49.010000"],["2024-07-25T05:31:50.010000"],["2024-07-25T05:31:51.010000"],["2024-07-25T05:31:52.010000"],["2024-07-25T05:31:53.010000"],["2024-07-25T05:31:54.010000"],["2024-07-25T05:31:55.010000"],["2024-07-25T05:31:56.010000"],["2024-07-25T05:31:57.010000"],["2024-07-25T05:31:58.010000"],["2024-07-25T05:31:59.010000"],["2024-07-25T05:32:00.010000"],["2024-07-25T05:32:01.010000"],["2024-07-25T05:32:02.010000"],["2024-07-25T05:32:03.010000"],["2024-07-25T05:32:04.010000"],["2024-07-25T05:32:05.010000"],["2024-07-25T05:32:06.010000"],["2024-07-25T05:32:07.010000"],["2024-07-25T05:32:08.010000"],["2024-07-25T05:32:09.010000"],["2024-07-25T05:32:10.010000"],["2024-07-25T05:32:11.010000"],["2024-07-25T05:32:12.010000"],["2024-07-25T05:32:13.010000"],["2024-07-25T05:32:14.010000"],["2024-07-25T05:32:15.010000"],["2024-07-25T05:32:16.010000"],["2024-07-25T05:32:17.010000"],["2024-07-25T05:32:18.010000"],["2024-07-25T05:32:19.010000"],["2024-07-25T05:32:20.010000"],["2024-07-25T05:32:21.010000"],["2024-07-25T05:32:22.010000"],["2024-07-25T05:32:23.010000"],["2024-07-25T05:32:24.010000"],["2024-07-25T05:32:25.010000"],["2024-07-25T05:32:26.010000"],["2024-07-25T05:32:27.010000"],["2024-07-25T05:32:28.010000"],["2024-07-25T05:32:29.010000"],["2024-07-25T05:32:30.010000"],["2024-07-25T05:32:31.010000"],["2024-07-25T05:32:32.010000"],["2024-07-25T05:32:33.010000"],["2024-07-25T05:32:34.010000"],["2024-07-25T05:32:35.010000"],["2024-07-25T05:32:36.010000"],["2024-07-25T05:32:37.010000"],["2024-07-25T05:32:38.010000"],["2024-07-25T05:32:39.010000"],["2024-07-25T05:32:40.010000"],["2024-07-25T05:32:41.010000"],["2024-07-25T05:32:42.010000"],["2024-07-25T05:32:43.010000"],["2024-07-25T05:32:44.010000"],["2024-07-25T05:32:45.010000"],["2024-07-25T05:32:46.010000"],["2024-07-25T05:32:47.010000"],["2024-07-25T05:32:48.010000"],["2024-07-25T05:32:49.010000"],["2024-07-25T05:32:50.010000"],["2024-07-25T05:32:51.010000"],["2024-07-25T05:32:52.010000"],["2024-07-25T05:32:53.010000"],["2024-07-25T05:32:54.010000"],["2024-07-25T05:32:55.010000"],["2024-07-25T05:32:56.010000"],["2024-07-25T05:32:57.010000"],["2024-07-25T05:32:58.010000"],["2024-07-25T05:32:59.010000"],["2024-07-25T05:33:00.010000"],["2024-07-25T05:33:01.010000"],["2024-07-25T05:33:02.010000"],["2024-07-25T05:33:03.010000"],["2024-07-25T05:33:04.010000"],["2024-07-25T05:33:05.010000"],["2024-07-25T05:33:06.010000"],["2024-07-25T05:33:07.010000"],["2024-07-25T05:33:08.010000"],["2024-07-25T05:33:09.010000"],["2024-07-25T05:33:10.010000"],["2024-07-25T05:33:11.010000"],["2024-07-25T05:33:12.010000"],["2024-07-25T05:33:13.010000"],["2024-07-25T05:33:14.010000"],["2024-07-25T05:33:15.010000"],["2024-07-25T05:33:16.010000"],["2024-07-25T05:33:17.010000"],["2024-07-25T05:33:18.010000"],["2024-07-25T05:33:19.010000"],["2024-07-25T05:33:20.010000"],["2024-07-25T05:33:21.010000"],["2024-07-25T05:33:22.010000"],["2024-07-25T05:33:23.010000"],["2024-07-25T05:33:24.010000"],["2024-07-25T05:33:25.010000"],["2024-07-25T05:33:26.010000"],["2024-07-25T05:33:27.010000"],["2024-07-25T05:33:28.010000"],["2024-07-25T05:33:29.010000"],["2024-07-25T05:33:30.010000"],["2024-07-25T05:33:31.010000"],["2024-07-25T05:33:32.010000"],["2024-07-25T05:33:33.010000"],["2024-07-25T05:33:34.010000"],["2024-07-25T05:33:35.010000"],["2024-07-25T05:33:36.010000"],["2024-07-25T05:33:37.010000"],["2024-07-25T05:33:38.010000"],["2024-07-25T05:33:39.010000"],["2024-07-25T05:33:40.010000"],["2024-07-25T05:33:41.010000"],["2024-07-25T05:33:42.010000"],["2024-07-25T05:33:43.010000"],["2024-07-25T05:33:44.010000"],["2024-07-25T05:33:45.010000"],["2024-07-25T05:33:46.010000"],["2024-07-25T05:33:47.010000"],["2024-07-25T05:33:48.010000"],["2024-07-25T05:33:49.010000"],["2024-07-25T05:33:50.010000"],["2024-07-25T05:33:51.010000"],["2024-07-25T05:33:52.010000"],["2024-07-25T05:33:53.010000"],["2024-07-25T05:33:54.010000"],["2024-07-25T05:33:55.010000"],["2024-07-25T05:33:56.010000"],["2024-07-25T05:33:57.010000"],["2024-07-25T05:33:58.010000"],["2024-07-25T05:33:59.010000"],["2024-07-25T05:34:00.010000"],["2024-07-25T05:34:01.010000"],["2024-07-25T05:34:02.010000"],["2024-07-25T05:34:03.010000"],["2024-07-25T05:34:04.010000"],["2024-07-25T05:34:05.010000"],["2024-07-25T05:34:06.010000"],["2024-07-25T05:34:07.010000"],["2024-07-25T05:34:08.010000"],["2024-07-25T05:34:09.010000"],["2024-07-25T05:34:10.010000"],["2024-07-25T05:34:11.010000"],["2024-07-25T05:34:12.010000"],["2024-07-25T05:34:13.010000"],["2024-07-25T05:34:14.010000"],["2024-07-25T05:34:15.010000"],["2024-07-25T05:34:16.010000"],["2024-07-25T05:34:17.010000"],["2024-07-25T05:34:18.010000"],["2024-07-25T05:34:19.010000"],["2024-07-25T05:34:20.010000"],["2024-07-25T05:34:21.010000"],["2024-07-25T05:34:22.010000"],["2024-07-25T05:34:23.010000"],["2024-07-25T05:34:24.010000"],["2024-07-25T05:34:25.010000"],["2024-07-25T05:34:26.010000"],["2024-07-25T05:34:27.010000"],["2024-07-25T05:34:28.010000"],["2024-07-25T05:34:29.010000"],["2024-07-25T05:34:30.010000"],["2024-07-25T05:34:31.010000"],["2024-07-25T05:34:32.010000"],["2024-07-25T05:34:33.010000"],["2024-07-25T05:34:34.010000"],["2024-07-25T05:34:35.010000"],["2024-07-25T05:34:36.010000"],["2024-07-25T05:34:37.010000"],["2024-07-25T05:34:38.010000"],["2024-07-25T05:34:39.010000"],["2024-07-25T05:34:40.010000"],["2024-07-25T05:34:41.010000"],["2024-07-25T05:34:42.010000"],["2024-07-25T05:34:43.010000"],["2024-07-25T05:34:44.010000"],["2024-07-25T05:34:45.010000"],["2024-07-25T05:34:46.010000"],["2024-07-25T05:34:47.010000"],["2024-07-25T05:34:48.010000"],["2024-07-25T05:34:49.010000"],["2024-07-25T05:34:50.010000"],["2024-07-25T05:34:51.010000"],["2024-07-25T05:34:52.010000"],["2024-07-25T05:34:53.010000"],["2024-07-25T05:34:54.010000"],["2024-07-25T05:34:55.010000"],["2024-07-25T05:34:56.010000"],["2024-07-25T05:34:57.010000"],["2024-07-25T05:34:58.010000"],["2024-07-25T05:34:59.010000"],["2024-07-25T05:35:00.010000"],["2024-07-25T05:35:01.010000"],["2024-07-25T05:35:02.010000"],["2024-07-25T05:35:03.010000"],["2024-07-25T05:35:04.010000"],["2024-07-25T05:35:05.010000"]],"hovertemplate":"color=4\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"4","line":{"color":"#FFA15A","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"4","scene":"scene","showlegend":true,"x":[217.51019871700555,217.79463720414788,217.78564503602684,218.0727852061391,217.4643819066696,217.11889550136402,218.04053208883852,218.61032686941326,219.1829870985821,219.9660236677155,220.41847773035988,221.00653139641508,220.10599206760526,219.78953610220924,220.6868076045066,220.90279690828174,220.70491940435022,220.94034319883212,221.87321933638304,222.56041322788224,221.99532449012622,221.11423669196665,220.14754576981068,219.9240769352764,220.1681864289567,220.06009187037125,219.40708760498092,218.89260591752827,217.94454336864874,217.36904621869326,217.89393245382234,218.86757034156471,218.80274214735255,219.33387629967183,220.18015700485557,219.9648861689493,219.19109642365947,218.63709608791396,218.05768028274179,218.34101591724902,218.59163915971294,219.2723818286322,219.06324343569577,218.67208695597947,219.34090750990435,218.39353019138798,218.94685970665887,218.80035697622225,218.17224256321788,217.19009806681424,216.20825784653425,216.8195199072361,216.65927615994588,217.21902481932193,218.0797806805931,217.69027502695099,218.2992356349714,219.21537086879835,218.90408640215173,218.7015864737332,219.4609827552922,219.61362035153434,219.63875789986923,219.17766911815852,219.2989354673773,219.03191842278466,219.17391182901338,218.71510949125513,219.43103736406192,220.41696142219007,220.6964546572417,220.8023742819205,220.97761475574225,221.79762011347339,221.36984256934375,221.41914796363562,221.8914955938235,221.21405084850267,221.61175888450816,220.6308077997528,220.93137752916664,220.09617842547596,219.50424866052344,218.61324029928073,218.31744383648038,219.00369536178187,218.04124416643754,218.0376015007496,217.83127876278013,217.61379027646035,218.52247996395454,219.0081226923503,218.90734213544056,218.65800880081952,219.5661477749236,220.19696060428396,219.37178459903225,219.38634359277785,220.12451292900369,219.3878337359056,219.1000551772304,219.49036387028173,220.3382743676193,220.2577297538519,219.43770874291658,219.76302800839767,219.34386139921844,220.11788489762694,219.94457937544212,219.3804895444773,218.4495779434219,218.9601047001779,219.8650792404078,218.8699971428141,219.19796188827604,219.406018814072,219.81029163487256,219.06847621360794,219.60352363949642,219.48154407925904,218.8557319669053,218.74865832319483,218.7033229121007,219.0176577749662,219.97025767387822,219.7106285127811,219.07563088135794,218.66835869988427,218.4822605457157,218.95883758645505,218.3112388458103,217.82350035896525,217.09314300259575,217.0636187796481,216.9778920165263,216.88472207309678,217.65090558864176,217.14104766072705,217.20936561794952,216.4797432636842,216.8766447575763,216.6872579762712,217.44570246664807,217.57193932170048,217.57264299038798,217.55955983465537,218.49957678187639,219.250932617113,219.19509742921218,220.1692131832242,221.04576953919604,221.34433050872758,221.27776289125904,221.80879483697936,220.9020713493228,221.6037108716555,221.68770340504125,222.47561787907034,222.0068506328389,222.78806021204218,222.31098211789504,222.8954877257347,222.32909945584834,222.52485712477937,223.00779024371877,223.19877883745357,222.67809849279,222.11419416870922,221.65727263037115,222.2169127711095,221.22471161466092,221.97951291548088,222.5443012965843,221.58932834211737,221.92355845496058,220.94982297485694,221.70999583695084,221.01189346285537,221.75162749597803,221.6404884434305,221.06292600464076,220.2606300241314,221.0138108166866,221.5716066895984,220.81710304366425,219.9479743517004,218.98909754119813,219.26620207959786,219.58385907113552,219.86496231611818,220.01113027939573,219.85610227799043,219.52066603535786,219.02727226400748,219.81021735444665,220.54775060294196,220.23211309220642,220.91617175424471,221.75961109390482,222.35295462515205,222.52788675297052,223.34645797032863,222.54363223025575,223.36607961263508,224.2126442748122,225.1292339116335,224.37871209252626,223.65902421204373,222.97348764399067,223.46933166263625,223.32057300396264,223.78792396886274,223.8604576936923,223.86256015580148,223.50645758770406,223.7897794926539,223.77959989244118,223.4869153960608,223.76815084042028,224.18390725599602,223.57960892142728,223.4166468102485,222.75600746506825,222.11161356419325,222.939024255611,223.28256186190993,224.16544554382563,223.60221957182512,223.01091852597892,223.1010191263631,222.73057562718168,223.3085647271946,223.7784497034736,224.55714780045673,224.0894353496842,223.45908421278,223.8159532174468,223.04447684483603,223.08552160020918,223.24841111898422,223.41749472450465,223.9555530976504,222.98100489238277,223.80793507397175,224.12500226171687,224.06744019081816,223.42057771701366,223.07637577177957,222.61455660918728,222.56930428138003,223.2583912461996,223.76758958864957,224.64494332950562,223.95846609026194,224.2804111232981,223.37620705831796,224.13035522215068,224.03565560188144,223.45888478355482,223.4354001241736,223.19361557997763,223.9977691504173,224.26045766752213,223.90744230290875,223.61679060431197,224.2625416154042,224.5610473137349,223.98846837878227,224.15627053147182,224.36681048059836,224.3828374738805,224.61440739035606,224.19634773861617,224.72954693855718,225.64222065359354,226.06512080458924,225.3555930084549,224.43633344117552,225.03489007148892,224.81692963419482,224.0372836086899,223.7064174860716,224.48603110807016,224.711863856297,224.70413376530632,225.25029276357964,225.87214498827234,225.38542413059622,224.82225077413023,225.36442074319348,225.0494672539644,225.5204024175182,224.91523362323642,225.0757789714262,224.175236760173,224.41833695955575,225.1592568946071,225.7472105231136,226.56280890805647,227.16045588394627,226.60395542904735,226.57474965509027,227.2841843185015,226.2948303744197,225.75604156777263,225.39509329851717,224.85868002893403,224.68212458118796,224.5069195786491,225.04454721836373,225.73259895853698,224.97009908268228,224.8777920315042,225.07664897711948,225.4975018342957,224.65009708795696,224.3072982924059,223.4674576902762,223.92638051556423,224.40808025980368,224.5013203448616,224.3458120599389,225.08077037893236,224.9194023613818,225.2298326571472,224.62729139160365,223.84406019328162,224.16698278393596,224.54063241370022,224.4059527250938,223.88609280297533,224.24673652509227,223.56646454613656,223.621951459907,224.15197681589052,223.61377198109403,223.2913939007558,222.3431590362452,221.38960405858234,222.04894260596484,221.39023083634675,220.76312793185934,221.34063325077295,221.04249390074983,221.16285371314734,220.86912324139848,219.8885039766319,220.1394674400799,219.4889692333527,219.76146430661902,220.60386667121202,221.01408764300868,220.10312765603885,219.53880592808127,220.3831176608801,221.0781782004051,221.38195452839136,220.61244285618886,220.47508010827005,219.81486535444856,219.83063900610432,219.6694555953145,219.34398658806458,218.4219301752746,219.3024243726395,219.05715375766158,218.71811553509906,218.3338109506294,218.46960121486336,217.86653164448217,217.50030144117773,216.5079973055981,217.0376024376601,217.13565496820956,216.55997978895903,217.00400180416182,216.0217854124494,216.27432441990823,215.42557250801474,214.60723235690966,214.90375182637945,214.87246421305463,215.85523218102753,215.2762725618668,215.02908017579466,214.43706866540015,214.66722955321893,214.72421719459817,214.1129606938921,213.1307531730272,213.67731227213517,214.04192380513996,213.74396304460242,213.87597646936774,213.97022471623495,213.12517267931253,213.78215973312035,214.46736000245437,213.54509069537744,213.76599689014256,214.02870517643169,213.25708331400529,212.96955161029473,213.66292752558365,214.18509189458564,213.99273464037105,214.54576364019886,213.64648829959333,213.44759105844423,213.92089041462168,214.8301724139601,215.2470282977447,215.65024504670873,216.54702533083037,215.55397657165304,215.8459080546163,216.36305960221216,216.56860563205555,216.84739173855633,217.37999199004844,217.27152033662423,217.90055524883792,218.09039376070723,217.5018043993041,217.9079204481095,217.10834189504385,217.75863091275096,218.0455236644484,218.30464268708602,218.8716302816756,218.5646482333541,219.34542128117755,219.08539487840608,219.4032431379892,218.43504684511572,219.0600178851746,218.11750232521445,217.33620734652504,218.00965375173837,217.17903488781303,217.92724692774937,218.75040797889233,218.1619003843516,218.3235468212515,218.926139944233,218.63568409672007,219.31489049829543,219.00413142843172,218.46082971338183,218.92742089601234,217.95001405430958,217.78911684732884,218.01204595994204,218.81612187530845,219.69559051143005,219.03608776489273,219.5778002180159,219.07240813132375,219.66866781795397,218.7641768651083,218.83161734277382,218.99324424238876,219.75283181434497,218.78446565242484,217.99582488508895,217.27101442031562,217.6474413620308,217.7194203059189,217.20803862111643,217.25029163016006,216.63509702589363,216.76944587472826,215.95806776965037,215.3040606076829,216.2876250441186,216.40599464811385,216.37526232842356,216.27023587422445,217.26510302862152,216.81213248474523,217.6495880088769,217.4920524037443,216.5636731525883,217.2198120560497,217.63731578737497,218.52335562650114,218.28516203071922,218.48114119563252,217.60692554106936,217.1906668082811,216.885818047449,217.01417779782787,216.67438332596794,216.36605936475098,217.04886352224275,216.97384155448526,216.26947251148522,216.61557521112263,216.29111483460292,215.9798871949315,215.11733864527196,214.9855245812796,215.6018118658103,214.71147560002282,215.59555560629815,215.59594057919458,215.41183172585443,215.1844221940264,214.2661518282257,213.89651095680892,213.67629881063476,214.51937962742522,214.53655248926952,213.76586098782718,214.54245714005083,214.34961465094239,214.35938421217725,214.2439756365493,214.21146673057228,214.41973506193608,214.25050053559244,215.00173395080492,215.2067035236396,214.22212006896734,214.26941646961495,214.90650397352874,215.1380694466643,215.40371145680547,215.85727731138468,215.65261292876676,214.96017014747486,214.7032263702713,213.95089878654107,214.91950417729095,214.76369870174676,215.4540969110094,214.75768708763644,215.2191011076793,215.47562006954104,215.76611651899293,215.3421600149013,214.73897900013253,214.47286479687318,214.91134311724454,215.7891677231528,215.4850847106427,214.9168318589218,215.2429701257497,214.25097954738885,213.63987589580938,212.74446124210954,212.90370684303343,213.50993564957753,213.82893707370386,212.9663031497039,212.5628929855302,213.34864851506427,212.50000144261867,212.6319513549097,213.00146602792665,213.55733541818336,214.3220993024297,214.10256342962384,214.6251064776443,215.2637742124498,215.55904992157593,215.25757119292393,214.3393378923647,214.9988562981598,215.5061999373138,216.16888378420845,216.19497293513268,216.0909239514731,215.1687652929686,215.69868950592354,215.19555070111528,215.3429942750372,215.5928209181875,215.2329975250177,215.5810808376409,215.3091694265604,215.51851208368316,215.53978631878272,216.22940588975325,217.00851420452818,216.038762988057,215.2909462088719,216.20670971507207,216.82642037980258,216.06803101254627,215.85978920664638,214.9983002222143,214.41650715703145,214.87615345139056,215.1759355403483,214.94269887637347,214.99894965672866,214.44722078042105,214.24184475000948,214.33238759683445,214.24790448974818,214.46453080605716,213.83726601861417,213.36734164971858,214.02920842217281,213.77609445387498,214.3225833219476,214.3166334303096,214.9472106313333,215.31210380839184,215.7482808320783,215.59051702683792,216.54801185661927,216.89232329279184,216.00155914807692,216.094446094241,215.72135804174468,216.36250197002664,216.12381251715124,215.96238776436076,215.64652908360586,216.08362965704873,215.3421957003884,215.82631145603955,216.15254198294133,215.97543429397047,215.00633256090805,214.4444702663459,214.60393215017393,215.30150819616392,215.54472866095603,215.1557618235238,214.61447408003733,214.6016980218701,215.17707625078037,214.92019814578816,214.03482836158946,213.47281573852524,213.02552573848516,212.68456688476726,212.8962976601906,212.63777080597356,212.98860513744876,212.46886288700625,212.02765553817153,212.58025500597432,213.50741455703974,213.88694145949557,214.72924114344642,215.06439969781786,214.8486498030834,214.17552284896374,214.3110889880918,214.00902269827202,213.93051974195987,214.3379694786854,213.552376027219,213.5081103737466,213.5473474622704,213.86183989280835,214.37466912996024,214.65583411511034,215.49346210900694,215.3625367223285,216.04698527092114,215.26080555375665,214.68223850335926,215.59993323357776,215.94441919960082,216.73775061918423,215.97655591601506,216.50724405422807,216.02169617498294,215.20576905552298,214.9618810028769,215.55667308578268,215.60979693941772,215.27394607150927,216.16388910543174,215.66451097279787,215.59297934826463,215.38362997584045,214.71329216193408,215.3508341340348,214.99697205470875,214.99785483907908,214.39066732581705,213.856781240087,214.31604489311576,213.5805971287191,213.66828962555155,213.69288781285286,212.97070870408788,213.08705096691847,213.78324533998966,213.62471706885844,213.41402656398714,213.24063956504688,214.02250352269039,213.27918101893738,212.62689338624477,213.01990200439468,212.448336311616,211.880702549126,210.97933448525146,211.084650314413,211.88683717977256,211.14929037028924,210.84206296410412,211.76069736713544,210.78440472949296,211.41686242399737,211.51491151517257,210.84684834396467,210.3728800402023,210.55921198427677,209.57109240302816,210.06379931233823,211.0090151000768,211.2698721778579,212.16557882586494,212.66829991247505,211.91354402014986,211.1230210014619,210.29661280242726,209.88126055756584,209.93044463638216,209.442388266325,209.04344083974138,209.0405204319395,209.02171447733417,208.7310415711254,208.3479710118845,208.88353871600702,208.98391853645444,208.8401897214353,209.22275843843818,208.43606750154868,207.6656659427099,206.80925409588963,206.12127291457728,206.26443016948178,206.26516224257648,205.96702501317486,206.69634215394035,207.45754810469225,208.0533992596902,207.09964693663642,206.82701338408515,206.68334867805243,207.30650678044185,207.9747103783302,207.03357231011614,207.44580223504454,207.132916579023,207.5599358859472,207.22917054966092,207.1651542186737,207.22960261674598,207.46943196188658,207.31784768169746,207.6700593936257,207.21863013552502,206.35724138654768,206.1970772515051,206.35958606749773,205.4306064476259,205.28743144497275,205.1452399897389,205.91536623751745,205.73297113040462,205.75238805869594,206.02040118305013,206.04089522408321,205.89546598959714,204.9202955639921,205.91991854598746,206.88795418012887,207.67659119190648,207.3136184643954,207.23856717394665,207.65115786157548,207.1052792929113,206.80154403299093,207.15970865264535,207.34084230009466,207.36801042919978,207.79362867353484,207.0813596234657,206.96121510211378,207.13191685080528,208.0451734084636,207.98564978176728,207.58734958991408,207.18445552606136,207.2535692411475,207.50274826819077,207.53715475229546,207.58244828367606,207.23998866183683,206.65880086785182,206.85334185464308,205.990374263376,205.36825897265226,205.52233313582838,206.44789017690346,206.1108398581855,205.69619450718164,204.70753606362268,205.3761485335417,205.15729117766023,204.7807548623532,204.09497740445659,203.39184160111472,203.77693647053093,203.09150202618912,202.98239779146388,203.32172766374424,203.11475175153464,203.92178433202207,203.9487620764412,204.08555380487815,203.71042977180332,202.9881674591452,203.77739648427814,204.0744339353405,204.43129125097767,204.48715875903144,203.71041557565331,203.8211616273038,204.7655039015226,205.0423252764158,204.74748198734596,203.79563293978572,204.5452960752882,204.5924084377475,204.90074087772518,204.48593280185014,205.45535397855565,205.46893608523533,205.07385215349495,205.19691254897043,204.41506594559178,203.86759880790487,204.06359450519085,203.84062439296395,203.4891188130714,202.90158057771623,202.67672840785235,202.32467198511586,202.38451367011294,202.32270086510107,203.04587134392932,203.5099428682588,203.4086517044343,203.23733686329797,202.51515565160662,202.69715910684317,202.3095653313212,202.08463972434402,203.07234719581902,203.46853425726295,202.59711620537564,202.91210387879983,203.46832412993535,202.91771742189303,202.43149646976963,202.09734977409244,202.5512025654316,203.3913801824674,203.75209871819243,203.10354381473735,202.95388837577775,203.8856926332228,203.22033447306603,202.90248932270333,202.43760261917487,201.47973231785,201.1120433830656,200.64789208909497,200.41307965107262,199.9237589854747,200.71836537774652,200.46950280293822,199.76361071877182,199.1078180251643,199.74346114555374,199.47102026920766,200.1853790404275,200.3467633780092,200.05279021942988,199.7706220280379,200.13817059621215,199.52576391445473,199.12927920976654,198.60837767552584,198.2471845834516,197.29633629415184,197.22658065939322,197.797609385103,197.33922128286213,197.0180778261274,198.01407580077648,197.22849479597062,196.75589106976986,196.84323404775932,196.0496024824679,196.3457221351564,195.44508579792455,196.0498126889579,195.4278390267864,194.52655429346487,194.1245780447498,194.71396350488067,194.24864103877917,194.45412698900327,195.26860721688718,196.23790607368574,195.89482448296621,196.59554307209328,195.80585501762107,195.80296119395643,195.82396882539615,195.7964122411795,195.9657674706541,196.40597430383787,196.7104257675819,197.0150428749621,196.29520522709936,195.78612311556935,195.6451420080848,195.24188600014895,195.939539689105,195.10506579000503,195.14940614067018,194.92525627743453,195.25888200569898,194.82737242244184,194.7802380216308,195.42591646313667,196.27818346768618,197.04013969982043,198.03045038273558,198.13809527549893,198.2449500421062,199.0391637966968,198.62312880484387,197.95776197314262,197.33817423973233,198.21645980561152,199.1964245121926,199.77155767101794,200.25055641215295,200.36510182963684,201.05309477169067,200.49743278324604,200.99082975368947,201.15947787836194,201.52663733484223,201.9666727851145,201.35177655424923,202.11887353938073,202.4798267763108,202.2076710043475,202.34844760457054,202.887432994321,203.50650416314602,203.447204423137,203.34539167257026,203.39287917828187,202.50293767638505,201.7745973127894,201.27647291636094,201.67176821269095,201.35934295738116,200.87135825771838,200.7680088756606,200.02334852563217,199.62281973706558,200.47074942663312,200.4298150613904,200.903040219564,201.76598932221532,201.95195134589449,201.9935977840796,201.0748205021955,201.57101344363764,202.0738976658322,202.93975951289758,203.1101077189669,203.93998894980177,204.79430171009153,204.33809116017073,204.00506681995466,203.55897501204163,204.0607939143665,203.41692160442472,203.11859614402056,202.97339880140498,201.98233478982002,202.71850631013513,201.94786535948515,202.5461895079352,203.04757839115337,203.6329028797336,204.23781195329502,203.92477368097752,203.88191771367565,203.80654373764992,203.10655102087185,202.95690261013806,203.59421724500135,203.89981837570667,204.8588872035034,205.57612000079826,205.215219614096,205.08199651911855,205.1538079357706,204.4849794730544,203.6986483563669,203.0995821901597,202.6858505033888,201.99603314884007,201.9617018289864,202.48662806581706,203.44930567592382,202.56775072636083,202.80044371262193,202.69230429269373,202.21316963573918,202.49281289661303,202.17101255618036,201.64139697514474,200.81034329812974,201.01694385474548,201.032594287768,200.92987502086908,201.5654100291431,201.27303267922252,200.8840099843219,201.13652955321595,202.0465129124932,202.71091923350468,202.32713625300676,201.39220126299188,201.09381948551163,200.33665332198143,199.49210097873583,199.18295674445108,199.43143132934347,199.66347311949357,199.21825448377058,200.04645679239184,201.00252693425864,200.90021616965532,201.4068843475543,200.47009453363717,199.6421462618746,199.5591500629671,199.63305240077898,200.0817752876319,199.74204191891477,199.8170964764431,200.53069142065942,200.75414179312065,201.65870014950633,202.16203910345212,203.16167767858133,203.13396219629794,203.03276583971456,203.04004178848118,202.80440308479592,203.16528620617464,202.8591981139034,203.83957236353308,203.7122625359334,204.5539471898228,204.07661276543513,205.0556634310633,205.12731030862778,204.74644040688872,205.20109546976164,204.41787206102163,205.32910264842212,204.9428438632749,205.48939237790182,205.48265803884715,205.51510125165805,204.9602257818915,203.98807882191613,203.4027078584768,202.54733442515135,202.8788087842986,202.87633431050926,202.48678752966225,201.82451173383743,201.24949184432626,201.28756603505462,201.87990707624704,201.81891874410212,201.8183273090981,201.27557018119842,201.2528821369633,201.05184093350545,200.6260522576049,199.63049591286108,200.02404154930264,199.22847709385678,199.78528781048954,199.90615944936872,199.25193282030523,198.89052338711917,198.5368981473148,199.14681742480025,199.1176936281845,199.4878209619783,198.70245310291648,198.12195995962247,198.3283601757139,197.69455066043884,198.6730279349722,198.16804228443652,198.57884287042543,197.7999799917452,197.96906772488728,197.01731045451015,196.83097157161683,196.90444030147046,197.35213696351275,197.01659846724942,197.2564234691672,198.06889349315315,198.86179570294917,199.06204266101122,199.3232838450931,200.18023044569418,200.71896875277162,201.02701956033707,200.56979697849602,200.76265116780996,200.25525983795524,200.00093330675736,200.80890191951767,201.43717728042975,201.64447872992605,202.14770874008536,202.5373070188798,201.66144219134003,201.20183065487072,201.9094944014214,202.20262697851285,202.52980105718598,202.87449198542163,203.73656283970922,203.70453979400918,202.73323037987575,203.65624557528645,202.68054321035743,201.967692153994,201.03536995593458,200.5796903623268,201.40848375624046,201.72284379415214,201.1824464155361,201.4092574142851,201.3398580243811,200.41767552820966,201.3270555692725,201.69505512714386,200.70018197316676,199.86463942890987,200.48546982975677,199.97673422377557,199.14585645636544,199.99778556125239,199.92122952919453,199.60453388979658,200.43337877234444,200.20052816579118,200.73280409444124,201.5778298745863,200.67938593309373,200.8549915351905,201.1113460813649,200.62111073592678,199.82973151979968,200.42383973812684,200.25814981525764,200.9989166194573,200.788026812952,200.05606589466333,200.689155517146,201.02769296057522,200.8708038092591,201.54965908173472,201.82532528275624,201.71749330637977,201.10536511288956,201.95550478762016,200.9947724165395,200.6290210019797,200.51377956103534,201.0726658073254,201.52014479367062,202.05651113204658,201.81308354903013,201.74303704220802,202.4087913329713,203.01589952595532,203.4371526138857,202.83892889181152,203.3193837692961,203.9833968183957,203.83862564060837,203.84126869915053,202.89148329943419,203.2049102494493,204.07523622829467,204.68213544599712,203.84489421313629,203.65749972173944,203.65460750367492,204.48177071101964,204.41295516910031,205.12468674732372,204.6836608024314,205.66963247256353,206.2083178134635,206.57030605059117,205.77601654361933,206.12508580135182,206.99042971851304,207.02804991602898,207.37504827138036,207.59010434523225,206.72437136247754,205.8134255381301,204.94249537587166,205.48118020081893,205.4906831071712,206.05245190812275,206.30201898282394,206.33115965267643,206.89032999658957,206.69103321619332,206.95785279152915,206.90082356519997,206.0028352350928,205.27553446544334,205.15990993008018,204.31628230959177,204.50550646940246,204.6682610977441,204.04087782418355,203.90014042006806,203.9280378012918,203.3056303714402,202.367629988119,202.3542150715366,202.08843901799992,201.69434089260176,201.19569075200707,201.75044481363147,200.94754182966426,201.79648839868605,201.97637505829334,201.9651107280515,202.61264998000115,202.05663995817304,202.3168024988845,201.99326940113679,201.93823334714398,202.69907247647643,201.81146937655285,201.84543198626488,202.61889947392046,203.5579405594617,204.35254122084007,204.26692047528923,204.19505530083552,204.46451921202242,204.13707835087553,205.04719269881025,205.95204753568396,205.480389197357,205.9402021029964,206.26337231090292,205.91116794850677,206.1810384504497,207.01550981681794,207.86075514601544,208.22935868054628,208.71835451759398,207.90422460669652,208.81407760363072,208.64059633109719,207.94779220502824,207.117131811101,206.2162353550084,206.25183115433902,206.1064193570055,207.04632736044005,207.52044783439487,208.45603219838813,209.24655805760995,210.2315997602418,209.78130108118057,209.33711955696344,209.4581505432725,208.95873634889722,209.6508315578103,210.48433604463935,210.91615752875805,211.60072897793725,210.6090830047615,211.57495501451194,211.24381330423057,212.12808933388442,211.13032070733607,210.2773030991666,210.49592871312052,209.52822096692398,210.5034206714481,209.55875066202134,209.556474277284,209.5987589592114,209.6171169267036,208.71338830981404,209.57144302362576,210.1967893289402,210.191577589605,211.0902290684171,211.79672570852563,212.45465609338135,212.9893693756312,213.06204854184762,213.46690899226815,213.01869812468067,213.24987760465592,213.34214327158406,212.3905094154179,212.4729124912992,211.51345742912963,210.6789876590483,210.1679642968811,211.0390849513933,211.8239454147406,210.95786134107038,211.10767226433381,211.41201311629266,210.62365743890405,209.7415782767348,210.43706947099417,209.71171770151705,209.92971075093374,209.05509070120752,208.38422040548176,207.83588436618447,207.86443085921928,208.69242860237136,208.88323108572513,208.47528008418158,208.24649448134005,207.65143635310233,208.2925202678889,209.1117692529224,208.50675593083724,208.63912387844175,208.87961142277345,208.5632973657921,207.79601429589093,207.7452072808519,208.42790693975985,207.7488837991841,208.65938816638663,208.00912329228595,207.56810208084062,207.26286403881386,208.15709256520495,207.53033740539104,208.2441228996031,207.70930139813572,208.576318141073,208.9955601412803,208.6020765705034,209.08605567878112,209.804753750097,210.58359614852816,210.13226520782337,209.52397380489856,210.4680312690325,210.82216647081077,211.5917212967761,212.31468502338976,212.25213354127482,212.707034220919,211.929600473959,211.64589903363958,211.77311191055924,210.78441236540675,210.00458878511563,210.01872338168323,210.3279320509173,210.71460025245324,210.04493252420798,210.02884839242324,210.54587709298357,211.28990708803758,210.96182792074978,210.46522353449836,210.7369805262424,209.79457330005243,210.28704868303612,210.07840881310403,210.5476189851761,210.83962074108422,211.7630263241008,212.4006604696624,212.85190666932613,213.62536193337291,213.59448168007657,214.0254673990421,213.78763154661283,214.73938735807315,214.0229279496707,213.5708342208527,214.3452458982356,214.9684156468138,215.20470971567556,214.3045025318861,215.227007442154,214.2868868377991,215.13395318435505,214.83843408804387,214.04408408747986,214.23160290392116,213.50146398879588,213.59440407482907,214.54499687673524,213.5991446916014,214.46836594911292,215.06044948007911,214.31808978552,214.12590288603678,213.32512159179896,214.31499756732956,215.24812068929896,215.99111892841756,215.51619786862284,215.9334730352275,215.39784812321886,215.44298311742023,215.87298691552132,215.0108218039386,214.61413943720981,214.65986468130723,215.0960478321649,214.26393377082422,213.36855184752494,212.76313617732376,212.53915961273015,212.48644729983062,212.14390448387712,211.5534406043589,211.67501410702243,210.77495325682685,209.90139366453514,209.47669615363702,209.02711060317233,208.21058054082096,208.92899755900726,209.0634199618362,208.19212437979877,207.93320814706385,207.33395643625408,206.5686071650125,205.86441775038838,206.24760015960783,206.6548847174272,206.26622657990083,205.7627447200939,204.83493257919326,204.97171226376668,205.47475414955989,205.68284640600905,206.43966200668365,207.32661098474637,208.0223037241958,207.59413841925561,207.35947048431262,207.79308150801808,207.13152868207544,206.4057990219444,207.15595210716128,206.75416783196852,206.97009364329278,206.84052190557122,207.54997393861413,207.92971372464672,207.52016725530848,207.0425141286105,207.15314778639004,206.56121750548482,207.5423828056082,206.933111009188,205.95129030523822,205.96514752833173,205.99889447912574,205.94825462531298,205.1552868965082,205.4377308525145,204.82945399638265,204.3848180710338,203.90169110288844,203.64343649195507,202.93147192150354,203.82280501630157,203.3987934985198,203.78786436654627,204.26410639844835,204.021621982567,203.69800300803035,203.78083471767604,204.15727774752304,204.29240182228386,205.14122891891748,205.24261272791773,204.24554034601897,205.18821944389492,205.34984410600737,205.9683145051822,205.69778068736196,205.84585185488686,206.2689399109222,205.70373678207397,206.26562994439155,205.5044417269528,205.17643900355324,205.54941693134606,205.35463369172066,206.20341968536377,206.81535127805546,206.02334682364017,206.75669256784022,206.34167043259367,205.91924271453172,206.79355855239555,206.92765239952132,207.8822365719825,208.66003782395273,208.19104960747063,208.42518618423492,209.4161232416518,209.78713370068,210.65459848660976,211.5477550108917,211.28866470512003,210.70781402522698,210.4357964368537,209.78605569014326,209.11231440166011,208.9195895139128,208.57955477386713,207.89728428935632,207.13702473882586,206.4876250764355,206.13418810255826,206.07556991558522,206.49903639173135,207.45283089298755,207.4574250364676,207.18405740708113,207.58394334791228,207.08145134104416,206.27686906978488,206.14850725606084,206.54997538635507,205.58726032543927,205.51678439741954,206.44889366999269,206.17408138187602,205.3373627178371,204.492671135813,204.45327176712453,205.04765617568046,205.84722376987338,205.89803883293644,205.78333271620795,206.57611795142293,205.76251033879817,206.2338838595897,207.13721767626703,206.52156987739727,205.9344022711739,204.9799100602977,204.71397159155458,203.80696960072964,204.0479844994843,204.69549212232232,204.87841174844652,204.4845720701851,205.0779781169258,205.90994758578017,206.691854366567,206.8339381716214,206.7813267079182,207.23890456557274,206.57401258684695,206.7378525575623,206.51448684791103,207.1803934094496,206.3261726088822,207.0001679151319,206.49369032401592,206.8954050564207,206.48619755450636,206.51157638756558,207.39487518696114,208.17257834691554,208.74188374448568,207.82426426187158,207.9344678358175,207.381118924357,207.9769747708924,207.62504423083737,207.37492444505915,207.24299680208787,206.5350254913792,205.63441144069657,206.06966209877282,205.67746552918106,205.08213845966384,205.77251732395962,205.2300381050445,204.32444070000201,204.11696948530152,204.12013741023839,205.08137916680425,206.04754517646506,206.7726638573222,207.18408298119903,206.43366408720613,205.4347353875637,204.63229148695245,204.44603784475476,203.4656183202751,204.43907873239368,203.45456277020276,203.74624418048188,204.4723032610491,205.41041089082137,206.13062474597245,207.072236191947,207.75146821932867,208.07902859104797,207.40319966198877,208.10038887802511,208.06697132717818,207.7655511670746,207.047541980166,206.86946027120575,206.072214637883,206.66896307701245,205.81508581759408,205.31617281166837,204.7399375536479,204.59953676071018,205.22718525864184,206.1762699605897,206.75052630947903,207.54675009613857,206.72281859442592,205.78870231751353,206.70842631859705,207.06937274895608,206.4854323118925,205.52762941131368,204.7582642310299,203.79007325228304,203.92066977266222,203.58940215036273,202.7172623849474,203.10839505912736,203.50760260783136,203.10689069284126,203.46198547584936,203.15214182063937,203.519113894552,203.92372547090054,204.0696670343168,203.41593246068805,202.80102526256815,203.37499541370198,203.1268199654296,203.9519224227406,203.59469318808988,203.36538523854688,203.4392448849976,203.7765805707313,204.7068245834671,205.2169474796392,205.14275084016845,204.6453783796169,204.25668507814407,203.28979624807835,202.90844158036634,203.52745486190543,203.9386171051301,202.9443942271173,203.71185227809474,203.77919815760106,203.91800574213266,203.63329736841843,202.91353381238878,202.24715124536306,202.1114406073466,202.5950935143046,203.2281096475199,203.8656918196939,203.44854046963155,203.0305223641917,203.9686482255347,204.7608345421031,205.21537910914049,205.22211239812896,204.78302382072434,205.12089381413534,204.26746976794675,203.85125469556078,204.5888467640616,204.76890272879973,205.41267064632848,205.96002609515563,206.71502972673625,206.42048144713044,207.0355630288832,206.74670084100217,207.05952567141503,207.7404396836646,208.12179383216426,207.49531451938674,207.12758420454338,207.9062277576886,207.18984160898253,206.23168273549527,206.4459314472042,206.47663752548397,205.49943380523473,205.77931230701506,205.6758460518904,204.94753638189286,204.53576442413032,205.25992579199374,205.515424054116,204.60920849535614,205.00866804039106,205.13608188321814,204.5482833897695,204.11053557367995,204.72409578645602,205.61462091421708,206.03965950990096,205.81981672532856,205.12753376923501,204.22131214803085,205.07443711534142,205.07997427880764,204.1345333266072,204.08897892711684,204.15839687362313,204.3067290149629,203.92095035733655,203.3579009831883,203.29251026315615,203.36566754523665,204.2635919963941,203.65542291803285,204.18889035377651,204.67865054495633,204.73775088088587,205.40531892096624,206.05640384741127,206.50903288368136,206.2969867894426,206.53837573016062,206.2513596629724,207.00603860756382,207.23740244703367,206.83740022964776,207.42188441753387,207.37214340176433,207.60104108927771,207.5933817634359,207.0324241835624,206.70582543546334,207.41813992941752,207.46290541207418,208.45486037852243,208.77010817732662,208.20303470361978,208.16581546980888,208.34480851795524,207.48057548189536,208.09608025103807,207.90395482070744,208.11416949238628,207.6212324486114,208.46151488972828,207.92380958236754,207.65061553567648,206.76908672088757,205.94508335646242,205.25397483212873,204.6601008377038,205.13557090098038,204.7475751787424,204.94519365439191,204.7148320665583,205.088636665605,204.6718182247132,203.8416046765633,204.65492050955072,205.30636121332645,205.53825988061726,206.2739985641092,206.67258231015876,207.56015658844262,208.094822908286,208.60023728664964,208.32468979712576,207.73392899753526,208.53000362822786,207.71827504225075,206.99775322154164,207.56430343631655,206.8898618496023,206.46492285234854,206.1097615598701,206.2904146895744,205.44652687991038,206.17946326499805,205.98842962551862,205.7150661223568,204.99126253696159,204.5153553825803,203.5963396965526,204.4264293210581,203.96297255111858,204.88777514500543,204.05016614450142,204.8671446084045,204.04167579952627,203.41311688162386,204.18468787521124,204.50491400575265,204.86300365021452,204.24745905492455,205.05931341694668,205.8748667454347,205.30687390454113,205.58631870802492,205.2664470258169,205.6617583911866,206.5480184648186,205.6231683199294,204.6418032166548,203.92485476844013,204.60099306469783,203.69556035194546,203.07734427973628,203.5521082659252,202.7766270795837,201.84622124489397,201.55633499845862,200.92424535332248,201.4164718161337,202.2185758962296,201.48143606167287,201.87579954834655,202.32583318883553,202.27986946655437,203.2444947916083,204.0426173931919,203.94052765890956,204.34150744928047,205.09816759452224,204.60612816503271,204.46785579714924,204.37323850253597,204.20949040539563,204.12649847147986,204.4661505925469,203.9054326894693,203.62571816239506,202.92251390358433,202.10865198727697,201.55401341011748,201.74866143940017,202.0415766700171,201.89074790105224,201.47817793255672,201.03973663924262,200.73876373609528,199.92088777245954,200.0173378251493,200.1364644933492,200.72755040461197,201.6261184103787,200.70569268381223,200.79429373983294,201.32732491055503,201.9853138900362,201.549786652904,201.3398488983512,200.65902312658727,201.35345570044592,201.10214821156114,200.82065811241046,200.25054674968123,199.2900262749754,200.22613168368116,200.85367784649134,201.6021097637713,202.0779544878751,201.33634468074888,201.79097787570208,201.94336791802198,201.75236064568162,202.0649129343219,202.1827091514133,201.68549386039376,202.58770651882514,202.0309955375269,202.51817326107994,203.2747318772599,202.5092871375382,202.39349549869075,201.72962920740247,202.5355176832527,201.9644299019128,202.31033369433135,202.61993752839044,202.36370736453682,201.95581542281434,202.10940204327926,202.7835074714385,202.83719357429072,202.6236691433005,202.34417790919542,203.2887519132346,204.02124746935442,204.0460380767472,203.5921282004565,203.45010266453028,203.99923549918458,203.76787546882406,203.27017594547942,202.77503099432215,202.12274426734075,202.07920756936073,202.69428091682494,202.0149189098738,202.97084071673453,202.32386034587398,202.1859730416909,202.80327781150118,202.27227007923648,201.52737840730697,200.58347985567525,201.2337210411206,201.3321292102337,200.68828723020852,200.87978060357273,200.2380292378366,200.10693400073797,200.93538625864312,201.60911626648158,201.45444891694933,202.01108349347487,201.14623249694705,200.55208056466654,201.23705084016547,200.60869328165427,200.16920276591554,200.3639587815851,200.23134791851044,201.17653832305223,201.88181705400348,201.42568964790553,202.02449285332114,201.4801448737271,201.1659981352277,201.86509469291195,202.6366188856773,203.4177378010936,203.29993588896468,202.36189370043576,202.5583353312686,203.01059833867475,203.8775576404296,204.81725104246289,203.86289974022657,203.66680830251426,202.8086373610422,202.18430701922625,203.0899166702293,203.06007448909804,204.04563063755631,203.30181110277772,202.9104750067927,203.78754251031205,202.89150965679437,203.2919175773859,204.0442960690707,203.40109977219254,202.90485333744437,203.1050708317198,203.245247409679,203.87817949196324,204.19834887469187,203.81099239597097,204.375622513704,203.92648555897176,204.0622852584347,203.1864113556221,202.739962735679,202.2635362232104,202.18503592535853,201.3957475349307,201.55233641481027,201.29827191727236,202.05439459439367,201.25783911533654,202.03666085284203,202.13212054409087,202.27966095274314,202.67110273241997,201.8440479109995,201.94211530964822,202.62864412134513,202.20792289962992,202.86269061360508,203.0819630585611,202.3228718000464,202.61314043728635,201.95608711102977,201.38690135627985,201.94064355781302,201.10564121603966,201.81918660085648,202.7165695647709,202.0926839215681,202.0884502576664,202.62710653431714,202.12880851794034,202.9811019366607,203.6820003716275,203.83498387644067,203.58970767399296,202.74343414511532,203.30222676834092,203.89738231990486,204.27515473449603,204.6351574137807,205.514727816917,205.0362625834532,205.84572787722573,205.16083852248266,206.071175981313,206.62211291864514,206.9659879640676,206.58984061377123,206.17625265475363,206.42019431572407,206.0672473446466,205.20318549126387,206.0584296323359,205.47512377100065,205.73339766077697,204.84108296921477,204.4278143653646,204.53028833214194,205.080702196341,205.2700817026198,204.51710495585576,205.3733068536967,205.8163884715177,204.8686382980086,205.858916092664,205.4688378595747,205.37967532360926,205.08203278435394,204.95468524843454,204.02111854078248,204.7484368495643,204.42952955374494,204.69142155861482,204.46445408416912,204.92469671694562,205.52398292161524,204.9802407315001,204.54151156684384,203.828149064444,203.64527462935075,204.12662729481235,203.70369009347633,202.92076643602923,202.87673556478694,203.37284987187013,203.72798030171543,204.0091911610216,203.49137676227838,202.70204527722672,201.82490693917498,201.13999625947326,200.1524610077031,201.00272697443143,201.5371819580905,201.2292062137276,200.68333605816588,201.45342333149165,202.0813513621688,202.80251896660775,202.09630451072007,202.6898336824961,203.14416623301804,202.79523906251416,202.14369684411213,202.22036391915753,202.58178278664127,201.90644810628146,202.33262455137447,201.9162479462102,202.1046390393749,201.28687682934105,200.6998909683898,201.36107857665047,201.99157493934035,201.67606951994821,201.55988560942933,201.56366331642494,201.9970165505074,202.39970770431682,202.25199930928648,202.49309619655833,202.57072832342237,202.10465853707865,201.5200208183378,201.325986078009,201.1431698431261,201.0776697229594,201.33489850116894,202.2584994621575,201.54163025412709,200.78945720382035,201.70585138257593,200.98219103226438,200.08289240580052,200.68337061349303,201.24747279658914,201.55457935202867,201.4610385359265,202.06515646958724,202.49046166287735,202.5662005865015,203.04231024207547,203.9515888299793,203.54928086558357,204.46809662599117,205.14203543402255,205.71908328402787,205.80932255322114,205.4919097488746,206.2315794392489,205.89639135124162,205.46985889645293,205.002387967892,204.33349527139217,205.22325270576403,204.69976697629318,205.1124380021356,205.6239016172476,205.35717457113788,204.88301878562197,205.18332617217675,205.10982051910833,205.9644946665503,206.8768866341561,206.7495323996991,206.32802109513432,206.19014013791457,206.69013513531536,207.65929156681523,208.14569233125076,208.0600567595102,207.8594250967726,208.48974525136873,209.03257075650617,209.0195534224622,208.0317359683104,207.039156970568,207.37455085664988,208.25935565540567,208.67404165770859,208.25435647414997,208.40998398838565,207.94366631051525,208.75958495074883,208.48756133159623,208.28539149370044,207.41837815614417,208.10692597692832,207.67629492329434,208.66701144073159,208.69734368054196,208.64418739872053,207.9768916326575,207.48426306527108,207.23373411549255,207.54491702234372,207.74797265650705,207.15576859284192,207.84392773360014,208.02627044916153,208.35949522722512,208.5944060641341,208.66858084546402,208.43852423131466,208.3854501452297,208.30442173639312,208.25411585066468,209.0553857041523,208.97930450271815,209.58787140483037,210.39570577209815,211.15450798347592,211.54267021268606,210.92699406435713,211.0531107331626,211.3927560574375,210.95665048016235,211.07129620108753,211.0367043814622,211.24795806407928,211.6206131298095,211.01794339949265,210.12475441535935,209.310440487694,209.84881562413648,209.2551017208025,209.97416231781244,209.6240584263578,208.63411166053265,209.06989953527227,208.55401573935524,209.22761970944703,209.02290644915774,208.36930533731356,209.1680256095715,209.72430450236425,209.2640867512673,210.1337053370662,210.10320389736444,209.37464365549386,209.44339928869158,210.14615051122382,209.93568907910958,209.17528546927497,209.26408066181466,209.09315216587856,208.51388131082058,207.96840922022238,207.16582074016333,207.5000931280665,206.80287839565426,206.00586478225887,205.16490109357983,205.78955721016973,206.46467414917424,206.45420789951459,205.89154646871611,205.5490436470136,204.63785300264135,204.04367260122672,204.35183311719447,205.0972590786405,204.10786832030863,204.700404883828,205.5644602770917,205.60735067073256,206.13028871826828,205.20754379685968,205.4351523234509,204.85461626295,204.18188935238868,203.26761620724574,202.76496575539932,202.33818821562454,201.5242397468537,201.01437080465257,201.69637872464955,202.1278552049771,202.05000951653346,202.45873194234446,203.41502756392583,204.10177702084184,203.33724715234712,202.62455784110352,203.03585840296,203.46370483748615,202.6128852814436,202.6336654610932,201.78257541917264,201.13738981774077,201.43655365752056,200.98605040926486,200.68745873542503,199.97184582613409,199.68001598212868,198.8389544240199,198.35465465579182,198.03082375321537,197.31697226455435,197.7623359952122,197.5730690220371,197.12637519696727,196.9587594405748,195.96710484754294,196.88664227956906,196.20508787035942,196.68605177477002,195.80091340653598,195.49500360619277,196.0831447020173,196.3224548753351,197.01459795888513,196.89211890427396,196.92548819305375,196.58378048986197,197.13519421126693,197.61459207022563,196.98173366580158,197.44722269196063,198.1410718015395,198.37502906657755,197.91611920529976,198.11865500733256,199.08051170874387,198.23437947547063,198.21872487012297,197.49210143834352,197.61783729540184,197.42176739685237,196.42257556179538,195.42440051957965,195.5000914488919,195.10970973875374,195.0708722495474,195.92772216396406,196.7491439958103,196.0936358482577,196.945449300576,197.54131787549704,197.44021745026112,197.05789536656812,196.20316456025466,195.5742188775912,196.01685461821035,195.85128516098484,195.79069665586576,194.9496512063779,194.57489102426916,193.60692421765998,192.92399499332532,193.84188320254907,194.78117564693093,195.02211972000077,194.102574754972,193.76320715388283,193.63875531917438,193.07225447148085,192.7082742229104,192.75035527162254,193.6832388699986,194.3862100332044,193.95814112620428,193.2224345752038,193.76289464114234,194.7552525489591,194.28640027623624,193.32615663670003,193.24498825147748,194.02527796151116,194.71208127913997,194.70174133963883,195.26972979819402,196.0833784341812,195.7379400320351,195.52898705378175,196.324001963716,197.1039204634726,197.1678783367388,196.65268529159948,196.8498265487142,197.52666749292985,198.02518419036642,197.99273102125153,197.25509893428534,196.71442604251206,196.84659212408587,196.8192158662714,196.83599500590935,196.883619193919,197.20200621103868,197.3799420716241,196.4471742589958,197.17882778961211,197.61102152615786,196.85919060371816,197.8557044728659,198.6361860758625,199.25184238981456,199.58577621681616,199.92290138453245,199.7622324647382,199.75959796179086,200.50367017742246,201.01286066230386,200.75426621641964,201.08727026358247,200.24881345359609,201.17463549226522,200.6014388599433,200.00656527094543,200.26166380709037,201.06063628708944,200.6232701628469,201.532363680657,202.45036824280396,203.40138318948448,203.3076763204299,202.33270270656794,203.31865172833204,202.94080011639744,202.74965501017869,203.654371955432,204.43129609478638,205.11273651570082,205.13569055777043,205.7285868837498,206.7007667766884,206.67241319129243,206.75572513369843,206.9566408265382,207.02754832664505,206.63505220692605,206.54669067636132,205.74641391821206,205.94104574201629,205.64770779013634,205.14766949415207,205.4946589199826,205.12357235699892,205.27056882437319,205.22691461071372,206.15413872757927,206.371302313637,207.03784629143775,206.20201533474028,206.38064814032987,205.49071826040745,205.66671004053205,205.26803384535015,204.5978648229502,205.56847126642242,206.36459977878258,205.61959444219247,205.98372538760304,205.52929918281734,205.20250579342246,204.88251411309466,204.45323644019663,204.9965125899762,204.4001208343543,203.9265616312623,203.19280604971573,203.615359372925,204.31023145420477,204.97174393665045,205.16329560196027,205.5532541233115,205.7835822836496,206.2677035657689,205.37683567451313,206.3762538312003,207.146982062608,206.14953603874892,206.93484512111172,206.792938107159,206.09965588804334,205.92069372860715,206.65041190059856,207.16860451502725,207.01135400217026,206.7521351003088,206.13717591576278,206.0341422301717,205.07917385036126,205.59364777151495,205.50920417392626,204.7273999331519,203.78799352468923,203.00529132178053,202.4401759323664,202.28195422282442,202.77019457193092,202.81320652877912,203.16664755064994,203.58671537507325,203.82247189152986,203.53837819537148,204.34721746249124,204.80884819757193,203.89617316657677,204.29106299346313,204.8946876837872,204.2236990123056,204.1892062816769,204.78822885034606,205.21309879608452,204.85335834231228,204.473439861089,205.41762457601726,206.28182434430346,206.53509201994166,207.47699328046292,206.55868072574958,207.20509835099801,206.62258491152897,206.77794116875157,207.57911087432876,207.54073138721287,206.93328456534073,206.9415256017819,207.1589878220111,206.48205863451585,207.23382821725681,207.3640869036317,207.33336831722409,206.62448081420735,206.45999604137614,207.18089147331193,206.82096207421273,207.4666776000522,208.45613286970183,209.34597146324813,209.2771141966805,209.94499126635492,210.90825229836628,210.7143115689978,210.5315688997507,210.7677469397895,210.7251136400737,210.98884466430172,211.47472953097895,210.8869409286417,211.66715088952333,212.08845330867916,212.31723521789536,212.17665563104674,211.6403092648834,212.48014270560816,213.32869379315525,213.84894933132455,214.61415185127407,214.90968601219356,214.23338923370466,215.06520282989368,215.71385144116357,216.32888030726463,216.8868573778309,216.35430561378598,215.59910437837243,215.63193904748186,216.30567854549736,216.38372864061967,216.449711706955,217.38460278138518,216.3859151895158,215.88437206903473,214.99512820364907,214.19227819377556,214.34205815196037,213.4982942598872,213.36613102955744,213.403023051098,214.10777821345255,214.7390846000053,214.370893814601,214.87816060101613,215.52107021119446,215.01370526012033,215.48368142871186,215.0901552485302,215.65388380456716,214.94381321920082,214.68957369914278,215.2771585942246,215.03932608710602,215.29134943336248,215.64719332568347,215.1659208983183,214.1964356219396,214.07728611445054,214.26560067664832,213.4726008796133,214.18586258310825,214.6566097876057,215.60333740897477,215.28047407465056,215.88013433245942,215.1258747857064,214.50621601799503,214.0510124671273,214.3626619563438,214.417681154795,214.30327330715954,214.98998080706224,214.47706344397739,215.40456519462168,216.25894373562187,215.85380973899737,216.5455951076001,217.51903829351068,217.57751508802176,217.10763545474038,217.81954494211823,218.13126936741173,218.7770453519188,219.46983332559466,220.13254698272794,220.449275969062,221.11468180222437,221.04175245109946,220.6236438085325,221.0301559176296,221.29111632332206,221.4429717171006,222.32753697689623,221.84273903863505,221.6187991532497,222.46938340645283,221.79078960651532,221.86897800303996,222.287230277434,222.22683573234826,222.48517534742132,223.30768654309213,223.21553351497278,224.16408196790144,224.31498232623562,225.17275419924408,225.61734407860786,225.2760893800296,225.12883331952617,225.00893891509622,224.05116898799315,223.31131556630135,223.3581881588325,223.66852071881294,222.71816481743008,222.74750809744,221.86008457653224,220.92876505106688,221.6428824160248,221.4242187240161,221.83162596262991,221.34988011792302,220.45754990773275,221.39988237060606,222.07307178946212,222.71074336580932,222.37163055455312,222.47556392336264,222.9916468653828,223.19783644843847,222.65313452621922,221.7202484146692,221.2258356809616,220.45231647370383,221.24385089520365,222.08437222102657,221.29288624599576,220.5383467138745,221.4456927557476,221.25840619346127,221.8098337808624,222.21132447198033,222.28928255522624,221.9335719672963,222.36261809477583,221.49639402050525,221.57607180904597,221.05269546667114,221.45454328274354,222.0728161795996,222.57551466021687,222.66516022523865,222.6978776124306,222.62694676965475,222.26411713054404,223.14366345154122,222.39727054955438,221.61115557327867,220.75499763851985,220.7599556897767,221.5734768556431,220.77212749933824,219.852471801918,219.05791165027767,219.41477028140798,218.49594932282344,218.68188900966197,219.52165224216878,219.88865275494754,219.03119025100023,218.7268315278925,219.6984744751826,219.82326659793034,220.7910708147101,220.44236184936017,220.94410726288334,221.02608693763614,221.72526736045256,220.87045553792268,220.2486752094701,220.54026804771274,221.39833706011996,221.94799791602418,222.84586435742676,222.17604949651286,221.87639039149508,222.6173690650612,223.01373315462843,222.96400493010879,222.6796392723918,222.31420951103792,221.6529323067516,221.49559216341004,222.30487728817388,222.9261237452738,223.304914096836,222.35693945223466,221.40656210388988,220.7649336871691,220.84467280469835,220.3320379392244,220.50809932220727,221.28498004190624,221.39719006139785,220.65267508476973,220.94945040903986,221.32031260803342,220.36822141427547,220.02909469604492,219.5119316377677,220.3622647728771,219.44361561909318,219.58184231538326,219.33419972704723,219.10039783036336,219.91298912558705,219.14884759532288,218.46527141984552,218.9503306732513,218.0348842330277,217.21956420363858,217.45547334104776,217.32087806006894,217.22687748027965,218.21458886703476,218.22562330868095,218.58042026590556,218.6291969968006,218.70156380347908,218.70707723032683,218.31940654851496,217.79177671996877,218.67193103441969,218.717728885822,218.54355527972803,218.44573747133836,218.2146767033264,217.82938557397574,217.36721638217568,217.06287258351222,216.47340667108074,215.75908312713727,216.00253329146653,215.03452773438767,214.76424322882667,215.02484609326348,214.93006372498348,215.1275876793079,214.78769954387099,215.3263988411054,214.74111598310992,215.09185387426987,215.02116129221395,214.73774633696303,215.03464304609224,214.6704591345042,214.46276363451034,214.35617681918666,215.26141042914242,215.71450529806316,216.07833267655224,215.1267830999568,215.22761810105294,214.41208794899285,214.93310681497678,214.0119765154086,214.64272893685848,214.68902047583833,214.44673758978024,214.42427587648854,213.44679718650877,213.4670363389887,212.8675619987771,213.30230254400522,213.77975449617952,214.70016878657043,215.49421939533204,214.6206020852551,214.82512024138123,215.18341595912352,214.46023957431316,213.55936088413,212.929595799651,213.70356959989294,212.95652743335813,213.05591537384316,213.90998329874128,213.7737107584253,213.0469880225137,213.26655250927433,213.221775774844,212.34317304054275,212.35653659887612,212.97526175854728,212.87066036555916,213.25455414503813,213.6773295244202,214.0257374914363,213.34141965722665,212.6441074507311,211.74069893499836,211.6724604498595,211.56126262620091,212.36110187415034,211.58318337611854,211.48691009217873,210.58693370828405,210.16186356032267,209.70587430894375,208.8884398387745,209.49523676885292,209.82546870457008,209.0177526655607,208.6956766168587,208.37132300296798,207.52657706988975,206.57388685969636,206.8195314523764,206.94679843029007,207.88539977744222,207.3330237083137,207.27662953129038,207.6925376029685,208.31147075258195,208.00298128463328,207.23436376964673,208.01609847927466,208.62109720893204,209.1124269515276,209.06183975655586,208.7356547205709,207.95104091754183,208.43012100597844,208.77831777883694,207.77854768466204,208.47913001384586,208.87761222291738,207.90660729072988,207.858366120141,207.0962657155469,207.87624370213598,208.06129162712023,208.09970660321414,208.2229125276208,208.94466042891145,208.46669926308095,208.24781025806442,207.7061823811382,208.39903162326664,208.52448544744402,207.85518072079867,208.5293507105671,207.82729175081477,207.77542134653777,208.7261629346758,209.32676279405132,210.22439155401662,210.84848422417417,210.4139022892341,209.50020383717492,210.02171905571595,209.09763094875962,208.50340830581263,208.70354491239414,209.56885165721178,209.8087744647637,209.58384437439963,209.9460726887919,209.10963420802727,208.6271975026466,209.27254005661234,208.46909196581692,208.06156931025907,207.39949689153582,206.5486448192969,206.91940461611375,206.7440668689087,205.84042899636552,205.15009562531486,205.97570818848908,204.98589887376875,205.41054088622332,205.2294661826454,205.48705342272297,205.85952630452812,205.5996095445007,204.97854516096413,204.88361158128828,204.1447688192129,205.10266814706847,204.77528934925795,204.35968585079536,203.88123808056116,204.54060915112495,204.4113668780774,205.20593080297112,205.84120694501325,206.48141277441755,207.23516046116129,207.77636274369434,208.09445510758087,208.14953132718801,208.2815728536807,208.6904220143333,209.3001977656968,209.44467321410775,209.08926100609824,209.21140426537022,208.54153900174424,207.6307851211168,207.9214047086425,208.4140500384383,208.01607309887186,207.31930359778926,206.68238842254505,207.66387938614935,208.63369491649792,208.13369453512132,208.09675084333867,207.71007120376453,206.92598140705377,207.13925170060247,207.1103923418559,207.62679771147668,207.85454494971782,207.21738119376823,207.1716709136963,206.8287545144558,207.66622203495353,208.27683720365167,207.90180585440248,207.825901446864,207.12138228071854,207.66286761965603,208.61149595398456,207.94977253861725,207.53962856531143,208.05579537060112,208.68925424991176,209.60982147790492,209.80220702057704,208.99812378687784,209.20472284406424,208.4883080101572,208.79469111328945,207.87858831463382,207.4279337557964,207.62682388722897,207.95278435619548,207.4988405574113,206.66335930814967,207.35063181817532,207.76197519013658,207.34831952350214,207.4103783085011,206.75260952673852,207.44810156989843,207.57157279504463,207.77514066779986,207.78088122187182,208.77402654662728,207.93721083691344,208.1009270036593,207.25259739998728,207.2151885582134,206.56145797483623,206.0389889087528,206.86883573327214,207.62672541104257,207.27228841325268,207.7349913995713,208.40365525800735,208.43345247302204,207.4684543106705,207.55040537007153,206.5981963002123,207.14895342476666,208.07928274571896,207.57030616281554,208.5185702238232,209.37529374100268,209.29632248543203,209.5352102154866,209.83325381856412,210.2804458308965,209.87502121645957,210.3034084350802,209.82336006546393,209.28918254282326,210.21318514319137,209.72964962990955,209.5898423488252,210.3599871955812,209.52048612525687,208.55419287038967,209.20939844707027,208.81993284402415,208.5435676923953,207.93315278505906,207.5896837245673,206.6798704015091,207.67213522922248,208.02419983688742,207.27459104219452,206.3819337640889,205.42531994078308,205.85702295647934,206.62972532212734,207.13203910412267,206.36328497203067,207.15514602605253,207.6939684082754,207.09670179197565,206.76650298945606,207.51851997664198,206.66994282556698,205.9614510894753,205.49317988893017,206.30022730957717,206.94075057888404,207.3481615516357,206.92158621968701,206.0739513472654,205.22376172896475,205.2544386582449,206.0330085400492,205.38399520516396,205.25802103523165,205.85936283087358,205.16502691200003,205.51868757838383,205.86888539558277,206.85286725778133,206.29810743173584,205.49575477000326,205.59333388134837,205.095617685467,205.39165734592825,206.06351550715044,206.10291349655017,205.1823550374247,205.16478058928624,204.30082979472354,204.6088675572537,204.50901502603665,203.59159658569843,203.40100717637688,203.92395125189796,202.97139113396406,201.98072415404022,201.32487713033333,200.475715035107,200.18390628043562,199.4471429255791,200.43233024934307,200.6983526214026,201.00233184592798,201.90082184551284,201.33075471408665,201.4875842272304,201.63221971457824,200.8613168639131,200.81307698972523,201.76221873052418,202.63314489275217,202.60808290261775,203.02372151706368,202.46892347373068,202.67208559345454,203.36102201789618,202.5533299650997,202.63823359273374,202.51609425526112,201.7855399949476,201.4354910752736,200.64556839177385,199.8167476002127,200.2332489285618,200.11496047815308,200.38285444490612,200.02810441097245,200.77143886266276,201.2859118967317,201.40971726132557,201.01489718537778,200.0184795362875,200.02294103056192,200.1792108635418,199.5672356323339,199.1982892076485,200.15925253601745,200.41474051773548,200.24015056248754,200.36551384767517,201.23742684489116,201.14374759607017,200.5534702707082,201.17281240969896,200.9225276298821,200.96389660146087,200.41599806817248,200.71642856067047,200.3435830953531,199.72203563107178,200.6098814443685,199.6537116668187,199.26772586023435,199.17327465768903,198.7051156326197,198.17217849381268,197.85511017031968,197.91003668727353,198.2456413875334,197.68975526560098,197.09790743747726,197.91017947299406,197.841285076458,198.60480084875599,198.23966051544994,198.28859066357836,197.36129647493362,196.45895011536777,196.46886943327263,196.23076022043824,196.39746871544048,195.50921150809154,194.57286400534213,195.48285063169897,195.728691205848,195.29396306117997,195.86010980047286,195.06249485583976,194.70977050578222,195.28942253859714,196.2748380447738,196.82004366163164,197.3172974367626,198.00864631216973,198.1446510865353,198.63751586154103,198.03557103220373,198.38783823139966,197.75875880848616,198.5742493425496,198.08165276935324,198.78051640326157,198.3093567271717,199.01667204825208,199.35994616849348,199.00717341713607,198.09462137846276,198.73895412217826,198.06017933832482,197.43637160211802,197.86216706363484,197.97672515409067,198.7922218553722,198.69277261616662,198.53223243169487,198.33838208811358,197.54739558929577,198.00750283384696,197.95507914200425,197.19243567762896,197.25875222869217,197.5290272468701,197.23561538523063,197.94601435447112,197.4748252313584,197.63477661227807,197.6840266189538,197.62480644788593,198.13372752815485,198.705979579594,198.08120681671426,198.64648152748123,198.44475934654474,198.47632107697427,198.7885828553699,198.86573049193248,198.87753079552203,199.7711305404082,199.7054340443574,200.36699138954282,199.9234675806947,200.0687658721581,199.82826499082148,199.89087918121368,199.7929076445289,200.39012277591974,199.71542709041387,199.55352735193446,200.31184064876288,199.33628166560084,199.52484046155587,199.3154999697581,199.13191802799702,199.3392119416967,199.45514916349202,199.9152315184474,199.7594251590781,199.24051559809595,198.62680965149775,197.74598226882517,197.40788402361795,196.64270057855174,195.8024669890292,196.2349348445423,196.45871246000752,196.2559781060554,196.61588551662862,196.74914272036403,195.8189475024119,195.28333326149732,194.70367259625345,194.46782101877034,193.49362536566332,193.72571299923584,193.3061421206221,192.3853497467935,193.14984771283343,192.7485173009336,192.28506879601628,191.49749035201967,192.39331640629098,191.51506046624854,191.83484120154753,192.8331801397726,191.98347742576152,192.83509302139282,193.7234626444988,193.60217481246218,194.4347630366683,193.5887201311998,193.25232459418476,192.92266095988452,192.94121228251606,193.2941060680896,193.923808301799,194.67044121399522,193.77235656464472,193.94774075830355,194.85367805650458,194.9183617173694,195.3307300293818,195.14139365870506,195.01262249611318,195.01566085778177,194.773493708577,194.0038914331235,194.70809454936534,194.4855571174994,195.0955355586484,195.5742877079174,196.5211890297942,196.39354950981215,196.34619827242568,196.50175915192813,195.882367644459,195.24676666082814,196.0673719649203,196.40412305528298,196.05699420161545,195.74808415211737,196.38628560863435,195.68469590647146,196.07971329474822,195.60598966758698,195.56865509785712,195.10357039188966,195.22508366731927,196.06253448175266,196.69199382700026,197.58764585573226,196.9034784603864,196.38617783924565,197.26825008308515,197.81068762624636,197.90307595394552,198.40288328612223,199.2507932363078,199.49979515280575,199.34660097956657,198.37356206122786,197.63297262135893,198.47067830478773,197.75328115560114,196.96040226193145,197.89089069748297,197.17942437715828,196.52602902054787,195.87386530917138,196.02631046064198,196.2651904518716,195.80164868710563,194.95861026085913,194.8557732035406,194.4869296308607,194.3315156395547,194.70335764298216,193.98730340320617,193.56045365473256,193.91356725152582,193.37364531494677,193.51965143764392,193.2516876300797,193.94039729470387,194.2393864407204,194.02392042707652,194.61547318752855,193.76050597568974,193.23771914560348,194.0121924779378,194.5771670313552,194.47413357207552,194.3382046581246,194.5949619137682,194.27362276799977,194.80552694760263,194.507897533942,194.11296854401007,193.1343790604733,192.67487341258675,192.5276276008226,191.89427129365504,191.95918670808896,192.43896057317033,193.27526491694152,192.4243003395386,192.2313162474893,192.1919823549688,191.4162715296261,192.33212845772505,192.04989860905334,191.95292922481894,191.317762945313,192.31233027996495,191.4242975441739,190.96776587702334,191.59009029669687,192.1122850854881,192.29872896010056,191.73823719704524,192.6703870901838,192.9510699273087,192.40025551384315,193.32384308520705,193.7279388490133,194.19753852579743,193.73261449020356,192.83633240265772,192.60997548280284,193.0588249801658,192.871154518798,192.627685633488,191.68130810605362,191.94757761061192,191.69210394006222,191.55112363910303,191.21468210592866,190.99492166377604,190.53269579494372,191.42436188599095,191.98019491788,192.9181564571336,192.768702482339,192.50798929901794,192.9274556846358,193.1674304525368,192.55315697938204,192.95317374449223,192.8739774590358,193.39694436313584,193.95281279133633,194.41430716961622,194.6961401682347,195.16180503368378,196.01736145000905,196.9590977197513,196.94654947472736,197.692379840184,197.69329867046326,198.41825884440914,198.66908363066614,197.89585986314341,197.90097301872447,197.88884103670716,197.571222523693,197.41903999680653,198.2389148925431,198.55164971295744,198.32085875514895,198.2205479457043,198.6726332823746,197.84733378794044,197.33595171710476,197.89091342594475,197.02017838461325,196.9769979706034,196.51557860337198,196.8766635125503,195.97346039814875,196.00118891056627,195.7392938840203,195.47514721751213,194.9387508025393,194.04694488132372,194.38711971230805,194.55678224610165,194.05207483377308,193.96698176208884,193.2887685955502,193.45476567931473,192.91250033304095,193.57603454589844,193.46614022552967,194.1837576883845,194.68781362008303,195.6875225682743,195.27978313528,194.85139237111434,195.53937025088817,195.62965540355071,196.3176675499417,195.51992633426562,195.20088248793036,195.46881048986688,195.8169811340049,196.64514285651967,197.09592561144382,196.39494315255433,195.85546004166827,195.12253065546975,194.92938717082143,195.6339041623287,196.066775996238,195.81631900649518,196.21683678170666,195.72059572814032,196.54263222357258,197.00492469826713,197.5838653743267,198.30141670256853,197.82633198332042,197.82526304293424,197.78218290302902,198.6874847309664,198.08121779561043,197.98444375908002,198.68189902277663,198.98990874364972,199.2897212114185,199.7370506110601,200.16464185900986,201.15291122859344,200.8222972000949,200.39066309062764,199.70919981133193,199.28058783104643,200.258681664709,200.30506707262248,200.35541222291067,201.01269778981805,200.47047175699845,199.79680967051536,199.08702474460006,199.77236526552588,199.5992801967077,199.26859231526032,198.88988946890458,198.68905930500478,198.43327335407957,199.4039301131852,198.6451667007059,199.56436943262815,200.26024503121153,200.39000065950677,200.06014834577218,200.19537125946954,199.99061761889607,200.8388739861548,201.7161484719254,200.90259106550366,201.27879971638322,202.06461503263563,202.01457340456545,202.57962934765965,203.5306623307988,204.01640655705705,203.96702449955046,203.2088101594709,203.4409958664328,202.71292222244665,203.20757934078574,202.5685771694407,201.61456141946837,202.47706628451124,202.727012865711,202.87065370799974,202.5022825463675,203.10761966416612,202.22633590828627,202.13790386682376,203.07087867241353,203.8163701593876,203.18030149163678,203.15395000949502,203.7240997608751,204.28134857630357,203.7324027325958,203.50738133955747,203.95929445745423,204.57705099647865,204.1059002764523,204.03951342590153,204.8821760858409,205.44221604755148,204.94961368013173,205.5307646007277,205.27917478978634,205.15256963530555,204.44483936484903,204.53993502771482,205.4750149254687,204.69000784214586,203.91867539426312,204.37785054184496,204.33044675551355,203.49598775897175,203.7257104027085,203.65070975990966,203.31061723455787,203.43179405108094,202.51075657783076,201.8173057460226,201.95744856726378,201.73815648118034,201.3413734738715,200.49733717180789,199.67417899891734,200.23023364692926,200.4643674287945,200.61162777710706,201.18280159216374,201.87695757392794,202.1411390057765,202.86699132388458,203.25356946326792,202.75584151037037,202.30895153293386,201.46959298010916,201.38167178211734,201.17412306787446,200.85468357568607,200.11678477469832,200.3027693289332,200.85380436852574,201.33718384616077,201.97367998911068,201.33147702459246,201.46594580402598,201.9750987268053,202.70255119772628,203.64159225672483,202.98663229960948,203.89709469582886,204.58356311311945,203.82482454087585,203.6998407957144,204.1301425108686,204.95404134737328,204.03126827208325,204.81232250947505,204.2458972800523,205.11483176797628,204.8850296419114,205.20282681612298,204.2460339567624,204.17167432187125,204.40557535737753,204.50699209654704,205.09979340527207,204.9083424191922,205.3656033165753,204.8393509699963,205.15162000060081,205.84311409061775,206.05372633924708,205.29477217886597,205.72417334700003,205.8402332868427,205.4100239528343,205.96732989139855,206.9380497452803,207.1746078352444,206.44274073187262,206.7601068811491,207.6361663886346,207.81439414527267,207.57133403979242,206.65523966634646,207.17260844213888,207.13971493113786,208.08014478720725,208.984817864839,209.32596836192533,210.22276744619012,210.40868434868753,209.42390831839293,209.14689784450457,210.13453566562384,209.54625888774171,208.76318937633187,208.46055744821206,207.82624669838697,208.7902719359845,208.30651342263445,209.0572836152278,209.0312501923181,209.68559400364757,209.36288250843063,210.19714890327305,209.4476248724386,209.37155365105718,209.57157666096464,208.85982533497736,208.83227460831404,209.70917619252577,208.9535589502193,209.47652982827276,208.83538388460875,208.56604365073144,209.38680856255814,210.10221075406298,210.50742597365752,210.23714276356623,211.04033770971,210.65630147000775,210.01707503991202,209.3844362362288,208.98855554917827,209.0800437075086,209.6023366684094,210.41465313127264,211.01966121187434,211.66592081962153,212.31261469237506,212.85730298655108,212.0095374621451,212.98820782033727,213.6927097258158,212.93577614193782,213.59667740482837,213.69217868801206,213.95106681296602,214.78237225674093,214.99641096498817,214.99017004389316,215.98143507074565,215.59614445269108,215.0136092249304,214.4957652995363,213.8405072176829,214.81187691772357,215.25477522518486,216.18625160073861,216.6814477806911,216.831102845259,217.66671968298033,217.9259784980677,218.51946602016687,217.56296390201896,218.51540990034118,219.38196526793763,219.2841685838066,219.5544987344183,220.24779124418274,219.61723842751235,220.18446505302563,219.9495166405104,220.42088207928464,219.94688480067998,220.07185036083683,219.7511991406791,220.22928707953542,220.43892990844324,219.45875153737143,219.42725264420733,220.18985337903723,220.0506949299015,219.13610256742686,219.14621839299798,219.41780466446653,219.21009109402075,218.77063615992665,219.26693945704028,219.2602660357952,219.48374408204108,219.65745909977704,219.43285764800385,218.48410595254973,218.6488282326609,218.06295121321455,217.26849691430107,216.61442363681272,217.1044125673361,217.24676374392584,217.64137141685933,216.8841623319313,216.91374562168494,215.9996583047323,216.13869667146355,216.80862597143278,215.97849307581782,215.24725668458268,214.32291954942048,213.58094353880733,213.9572334382683,213.0973321874626,212.70371218025684,212.721274393145,212.6168018905446,213.10937079507858,212.74548907065764,212.18081250879914,211.3257602630183,211.42296467069536,211.8960742955096,212.00891851773486,212.69422303233296,213.42201174097136,214.34740327345207,215.08572493726388,214.40179718006402,215.05801328876987,214.20123198255897,213.7919002766721,213.91778419865295,212.9629222517833,213.43546104757115,213.5615347744897,213.4521593786776,212.86868420103565,212.04645979218185,212.04625541903079,211.09723854018375,211.54130789637566,211.73706020554528,212.48287589102983,212.21208027098328,212.13033352280036,212.0060509950854,212.52598125953227,212.3380903126672,212.85054215975106,212.8341118702665,212.34473947109655,211.55963205872104,210.6628823056817,210.4170778663829,209.7953802109696,210.30637854663655,209.3677439885214,208.95046868175268,209.00862879119813,208.46571637364104,207.56302144145593,207.61257535452023,208.3601227235049,207.957547461614,206.95861775288358,207.0442891945131,206.1279585454613,206.97719348501414,207.66581140412018,207.6284495824948,208.54938314436004,209.51875599753112,208.5795893985778,207.858153055422,207.12737636826932,207.34094660822302,207.1916084913537,207.6154390028678,207.57444168440998,207.62837542127818,207.82683883979917,207.15204677637666,207.0766349248588,207.0939331878908,207.8908963878639,208.5514301294461,207.67394958483055,207.79376071551815,207.75449708895758,208.39755032770336,209.08491873927414,208.94682309404016,209.80175506370142,209.0637602582574,209.94982285005972,209.85289926920086,210.82632264029235,210.0021383804269,209.93554591247812,209.61253261752427,210.23553574783728,211.22874596016482,211.4403177346103,210.9562481082976,210.41038422193378,209.86598367244005,209.49982192507014,209.21174935391173,210.18216933635995,210.74034425569698,210.06139016896486,210.47623609937727,210.08255349704996,210.60746691934764,210.32061887718737,210.45474165538326,210.1890798965469,210.12523333728313,210.46523104980588,211.10128669720143,210.11413484159857,210.0628093709238,210.40764450421557,210.8005074406974,211.64648906700313,212.30399387702346,211.99150890950114,212.20882483571768,211.6812895820476,211.42810941440985,210.81805107090622,210.6105732638389,209.86255222931504,209.20019920077175,208.62239144928753,209.0587417264469,208.62493106117472,209.43682392826304,209.41832705307752,209.27670973306522,209.35933938296512,209.35057385917753,209.58262573042884,209.38771448284388,209.7103079603985,210.63481866242364,210.91415650444105,211.334090906661,211.92512070713565,211.6749316547066,212.57078007049859,212.48609420703724,213.47412320785224,212.80695108044893,213.6568962582387,214.2279122644104,215.19054188020527,215.37969431560487,215.74710788112134,215.51170243835077,216.3855566731654,216.7333784881048,216.66422112472355,215.7381774573587,215.18643555929884,216.0700255902484,216.06688678171486,215.97077928017825,216.79117558151484,216.8910884554498,216.32870763679966,215.43190298089758,215.13983014319092,215.73981743352488,215.29276545066386,215.0296871238388,214.19395152432844,214.17579136276618,215.15971607808024,215.99907116545364,216.73142277868465,216.07284467155114,216.77723470842466,217.18583448091522,217.836937175598,218.0742906369269,218.55415699770674,218.07899151323363,218.5200763423927,219.27057211380452,219.6593311293982,220.0865235668607,219.13489479618147,219.80406202189624,219.84888574667275,219.82708639511839,220.31124650873244,220.2622380135581,220.84720765892416,221.25763287674636,222.23026664741337,221.372212422546,220.62171725044027,221.296336339321,221.5214074230753,222.47454398544505,223.3732965416275,222.44717786554247,221.67018946120515,221.6583875999786,221.71637817192823,221.66365157673135,222.3701492077671,221.88097248319536,222.28588711144403,221.9070448866114,221.15327735478058,220.9537531323731,221.8982939897105,220.95240571303293,220.9606279428117,220.3860181509517,221.09216930391267,220.2376274173148,220.47385437972844,220.16978855244815,220.12642349861562,220.34933230513707,220.45905518438667,221.33003403199837,221.44951514387503,220.4700131965801,221.36122172418982,222.12871217122301,221.56062251655385,220.97491501737386,221.68431896716356,222.42899828078225,222.96954206749797,223.85439542494714,224.23461427818984,223.35384245915338,223.66558010922745,223.72434241091833,223.88979424210265,223.24826765619218,223.71133969072253,224.05620888760313,223.4247747026384,223.56106014270335,224.03145485091954,223.92947849212214,224.1278273537755,224.33790718764067,225.1970499427989,225.53119753533974,225.37110251188278,226.10274856816977,225.53287599422038,226.28271450661123,225.72569597885013,225.2059951289557,225.91664204467088,225.74077511159703,225.99850305821747,226.59905909234658,226.92615522583947,226.67754149017856,226.8140524025075,225.8851496707648,226.47530090902,226.1501251528971,225.87976498529315,226.6950840530917,227.30800599977374,227.23351221671328,227.6183850490488,228.09491340629756,228.81761130690575,229.2682725409977,229.21978943562135,229.91358442418277,229.5625293883495,229.01583490148187,228.64334079250693,227.91448163613677,228.64497106522322,228.9388725697063,229.54670976800844,230.41790767293423,230.00164221273735,230.91818864736706,231.61602665530518,232.31934280181304,232.47442055493593,231.85879974858835,231.83503873180598,231.9506550617516,231.45584648195654,231.98490206338465,231.93491949141026,232.46714058052748,232.62415279913694,231.6766660567373,232.14943869737908,231.36142388172448,231.31723021669313,230.82618298567832,231.68795055290684,230.9867718894966,230.12747235782444,230.99790236819535,230.25907320948318,230.32382148085162,230.01460050791502,229.9173871302046,229.4402454616502,229.5771835297346,230.25584993790835,229.52624189062044,229.53783017210662,229.3795098834671,228.48172076093033,227.76541899470612,228.59311398258433,228.56546054733917,229.30536420177668,229.4405383951962,228.5940895183012,228.23557155998424,228.2848010812886,229.2189396750182,229.2327571026981,228.36969176027924,227.4480905616656,228.0337474080734,227.23556184163317,227.19686262356117,227.10095319896936,228.04513676417992,227.75444060191512,228.25500481855124,227.93809109181166,228.09789811773226,228.76301286369562,228.21017585182562,227.37965340772644,227.92964358255267,227.63503058021888,227.1771665820852,228.07396067958325,228.5020471890457,228.6057928726077,227.91002284688875,228.30565455555916,228.28765215491876,228.80239126691595,228.5424253377132,229.51346792187542,229.26719454629347,230.2585799614899,231.00768977962434,231.8078692536801,232.12787650106475,232.47312605008483,232.07257189555094,232.6709957914427,232.8984267162159,232.6983793247491,232.67417141748592,233.08862434979528,232.38313427614048,232.92999107157812,233.12109637167305,232.42372859176248,232.8799113337882,233.17642354313284,233.32695018453524,232.93149349326268,233.059534272179,233.2862795451656,232.9635578012094,232.7803392666392,233.66609429148957,233.20618724636734,233.69068429991603,233.04704175703228,232.22359870187938,231.27803510427475,231.84146597376093,231.43274114606902,231.2448512655683,231.15634859586135,231.56647629430518,232.40406831447035,232.9236575840041,233.5830860505812,232.5891609522514,232.50576953263953,231.52015417814255,231.98429023846984,232.1460143942386,231.15937938727438,230.1669493536465,230.69725242769346,229.77631535567343,228.7916819327511,228.5535949668847,228.64819762157276,229.52611739048734,230.47837609658018,229.6866538352333,228.8392698308453,228.2906116093509,229.13273134920746,229.75793863926083,229.56181319896132,229.631027366966,229.12559477984905,229.3174726027064,228.64203398535028,229.37314565945417,229.90826772386208,230.64787859888747,230.33983508730307,230.2206321200356,229.56246136780828,228.71418821206316,229.42468347772956,230.30025070672855,230.3823111555539,230.0842585572973,229.15524933533743,229.27444231277332,229.90347760450095,229.21810924028978,228.8695831480436,228.40883882157505,229.0832286309451,228.34888917859644,228.04236672353,228.25558352516964,228.55828107427806,228.56555010052398,228.38405379652977,228.21517889248207,227.6615140833892,227.20117180980742,227.31971237203106,227.14429210219532,227.17284136777744,227.34889677539468,227.1264423104003,227.80569052603096,227.63166333036497,227.6636072327383,228.48113274527714,227.49046635907143,227.6332982587628,227.46851448342204,228.27070307452232,229.0487952916883,228.78107080841437,228.37923599779606,229.25854039378464,229.77050553122535,230.09076353209093,229.98646060889587,230.08079837448895,230.52466397034004,231.10684811277315,231.66322270035744,231.91823035525158,232.8466240768321,233.06148836575449,233.9264667276293,234.65366492094472,233.92681314749643,234.6228881930001,235.02370677050203,235.7107975790277,235.9190135472454,234.96857356419787,235.6968841762282,236.63893633056432,236.25893080281094,235.44641856336966,236.29002894088626,235.88630867330357,236.28249866189435,236.40751629136503,236.6053598271683,237.32327039260417,237.0257386462763,236.13762252917513,235.9930247575976,235.22529485356063,235.76873545348644,236.21459846105427,235.5230965865776,234.9880677955225,234.49784469837323,233.8622685088776,233.71186927659437,234.1981672346592,234.87863060226664,235.85809878539294,235.8587893671356,236.10814143018797,235.1432304866612,236.07210347568616,236.8023523753509,237.76086847716942,237.03500479692593,236.102121995762,236.07501911278814,237.00604891544208,236.04324219422415,235.6535153174773,235.85567302582785,235.15886596404016,234.31041261879727,233.79405661998317,233.58273226348683,234.49051370332018,234.34057085495442,235.16088649444282,234.25824043853208,234.17974790744483,234.97853031707928,234.4084907625802,234.61395471123978,234.44335335865617,233.50260070618242,233.7580462489277,234.65264574205503,235.65258669154719,234.87986895022914,234.51899117371067,235.12346827983856,235.5427081398666,235.5474603548646,236.14711316861212,236.45033733779564,236.85096432454884,236.21852718573064,237.0107925804332,236.37943279277533,236.16938183503225,236.64262096351013,236.59346271399409,235.90521319722757,236.22763045411557,235.24094765959308,236.17710853321478,236.81666353717446,235.8393168663606,236.41867329645902,235.61731292167678,236.59788315277547,236.20523237949237,235.27722843596712,234.87006198661402,234.2810569535941,234.76249218080193,235.3807160896249,235.78164443699643,236.0707748620771,236.51985333813354,236.53834711620584,235.9312767609954,235.3586494703777,234.74670758936554,233.83480773726478,233.48782097175717,233.6314882505685,233.7439024229534,233.42644631443545,234.31894117873162,235.0537209692411,234.26056542620063,234.58199028484523,234.73074967227876,234.9065567906946,235.60294705908746,235.04277435690165,235.621376670897,235.55537140229717,236.22443759208545,237.09774557175115,236.327682280913,236.09267559088767,235.9123695930466,236.8508257344365,237.13526111235842,236.31264654640108,236.1423774054274,236.9192271917127,236.62188088381663,236.4323853221722,236.36194503400475,237.00596619443968,236.99648629222065,236.29917708132416,237.11342112300918,236.69919601501897,237.2091618287377,237.49611611803994,238.2340843086131,238.7325310278684,239.6117942132987,240.55810557864606,240.15032458491623,240.00911778770387,239.21474412688985,240.00137461163104,239.9983341372572,239.88012466207147,239.3720009298995,238.53367516910657,239.01508350251243,239.29870856925845,239.5761979087256,239.0708534824662,239.402698288206,239.0721596321091,240.0000206399709,239.06775750406086,238.66007592948154,237.6607938115485,236.82875885162503,236.48478232463822,237.17289231996983,237.94437493383884,237.24991691112518,237.71422974672168,237.01596922893077,236.748694463633,236.65293419500813,237.0678657940589,237.94149593170732,238.27413089899346,237.56565065588802,236.65352531336248,237.37401591148227,237.83733201073483,236.91699588205665,237.4921233295463,238.1938272966072,237.3073826469481,237.2079628710635,237.603537324816,237.68167484225705,236.76548048760742,236.45862388145179,237.1351903541945,237.7588671320118,236.83388109412044,236.07347971992567,236.06644729105756,236.74606225825846,236.2479082979262,237.01725833071396,236.7181924362667,236.4608861748129,235.6582229216583,235.72146160155535,235.41316368430853,234.4763417467475,234.68969653639942,234.86626138631254,235.39493392407894,235.52695782668889,235.76142370374873,236.3673363449052,235.79663392947987,236.03242693375796,235.8041951553896,235.57344395993277,236.2848771926947,235.57586445705965,236.22433213563636,235.29511184990406,235.58121390314773,234.88292054552585,235.56430219486356,235.66485578007996,234.8193299616687,234.4578387918882,233.88099327404052,234.69262478873134,234.5571486176923,235.29198543448,234.99084579991177,234.3531273729168,234.69594000233337,235.62232265481725,234.96098650060594,234.7077654125169,234.56530310353264,233.78359671495855,233.52074391581118,233.13036905182526,232.97563521470875,232.8920316938311,232.43525301478803,231.70841925777495,230.7504963176325,231.08742635976523,231.23471002932638,230.72380156535655,229.7829987918958,230.32883490342647,229.70939674926922,229.21104496484622,229.5031571863219,229.45675710123032,229.88271506410092,228.94774304842576,229.7344466568902,229.4619743451476,229.49322771048173,230.4388062930666,231.24746986711398,230.66264266567305,230.05400911578909,229.09527289075777,228.7978587676771,229.72872481122613,230.5603410131298,231.10763712367043,231.6436225567013,231.32930532749742,231.4282059185207,230.8567903265357,231.2229933226481,230.3217773558572,229.68247407861054,229.02579735731706,229.86433338932693,230.08244838379323,229.7877947757952,230.11211290722713,230.89475857373327,230.86781930550933,230.94335620244965,231.39468011632562,232.0271705831401,232.86375779286027,233.3030549446121,232.95280560059473,233.79096676502377,234.04599424498156,234.3923735767603,233.73546650866047,234.1418398572132,234.6063830414787,234.9475967879407,234.6211226596497,235.40959439752623,235.9827661481686,236.3856538697146,237.0616370025091,237.6619588318281,237.59036456933245,236.72159399837255,237.63983662799,237.70326281897724,238.49481122521684,239.30949305882677,239.0654355995357,238.68038208410144,239.543055545073,238.85722960019484,239.24066271958873,240.18236837768927,239.58995877206326,239.1295816055499,239.3255829163827,239.49316353956237,238.90068576764315,237.9626172366552,238.1406346913427,238.91325400210917,239.05193066457286,239.7845682273619,239.20140771567822,238.6628726781346,238.94102410972118,239.94067013496533,240.18545342842117,240.44256585882977,241.324101310689,240.44336857786402,240.33038172358647,239.66944422014058,238.80402114847675,238.5259605338797,238.3536442159675,238.1461975602433,237.787927090656,237.3851747205481,237.3274363153614,236.73747792933136,235.94203835492954,235.33639470301569,235.28580317879096,234.2972371932119,234.72195260226727,234.8025833023712,235.1418186132796,235.65544117009267,235.78695724485442,235.11140679800883,234.17527095228434,234.33348833210766,234.7975734672509,234.41697669960558,233.75638981210068,233.20919525949284,233.76390065578744,233.77842488419265,233.57048909878358,234.47974248509854,234.71909775212407,234.82512317690998,234.2745837061666,233.76021336391568,234.2325149467215,234.57592081092298,235.5087188463658,235.60838223947212,235.66427536169067,236.6516434578225,236.14877324784175,236.37201258493587,236.77195962890983,236.85887832241133,237.64016437949613,238.39167761430144,238.43808142654598,238.95764078665525,239.5580404046923,239.71876307344064,239.1922966740094,240.1243468541652,240.5627277311869,240.28041109908372,239.9351746654138,239.79490577615798,240.12081866990775,240.27793918456882,239.6660046656616,239.3386848499067,239.6009264094755,240.42301912000403,240.63924679905176,241.13553423341364,241.2099397322163,240.93337504053488,240.0717028900981,240.61573618929833,240.85443656751886,241.47146076709032,241.3055772203952,240.67975665675476,241.2632882404141,241.42462403094396,240.78430692246184,239.79439832409844,239.6354653891176,239.52223033364862,238.64668527105823,238.61736351484433,239.4261416331865,239.2514214911498,238.68745011789724,239.17179557401687,239.94892160454765,240.52816117973998,241.34621472423896,241.6819506441243,241.89250707579777,241.43032466061413,240.98858605278656,240.99972742656246,240.156648918055,240.62038202304393,240.92930993018672,240.23189894203097,239.3604937447235,239.07661911519244,239.98678466165438,240.88456461019814,241.8608967117034,241.44706872478127,241.00041572004557,240.81130549684167,240.79564838204533,240.16885420586914,239.9096473683603,240.85651932284236,240.47126985853538,241.07537360256538,241.2026725965552,240.67964322958142,241.38208728376776,240.9965581255965,241.1780229290016,241.81045745359734,242.17843523807824,241.76839420339093,241.88652441417798,242.82925347285345,243.11267954530194,242.72034116927534,242.8510143244639,242.5913037643768,241.80607053870335,240.83454074524343,240.45537529047579,239.68210275191814,239.68558767065406,239.09397398866713,238.84178512031212,239.61376692634076,239.16020655119792,240.12793025840074,239.88060933351517,239.07126305252314,238.59915859252214,238.36202346533537,237.7447959240526,238.30827235104516,237.52552410028875,237.83852735441178,237.7963634422049,238.72101843450218,238.78763600764796,239.11773716425523,238.76883516134694,239.4941271878779,238.9168529282324,238.37128695985302,238.50154248112813,238.39427029294893,238.70612954953685,238.3106545456685,237.47932087490335,237.83300685230643,238.59502754546702,239.384340910241,239.11746107181534,238.93039338523522,239.11835521832108,239.06691261939704,239.23478769883513,238.61189591046423,238.0475136404857,238.68644573818892,239.41150161251426,240.03385207382962,239.13299820944667,239.0290645561181,238.52652357006446,239.37068224977702,238.94059600913897,237.97648341068998,237.68280797917396,237.58472857251763,237.80784148862585,238.5220975955017,238.35743714869022,239.04102247441188,239.4948965231888,239.08184120897204,238.13807524228469,237.23959492752329,238.0283974800259,237.59053738275543,238.0417736605741,238.46830035420135,237.84062933688983,238.76673674304038,238.36687111994252,237.62194156786427,237.36329827969894,238.26268178364262,237.38110123667866,237.64799242280424,238.63006098289043,238.80787128489465,238.43244801973924,238.10420368472114,238.00157015724108,237.67518172319978,237.2792748566717,236.7791881696321,236.16865730891004,235.63662673300132,234.8128154934384,234.5380868781358,233.77261772332713,234.72893058508635,235.59094637492672,236.54803746799007,236.7085075918585,236.56751564331353,235.59697262896225,235.20127398660406,234.5796991987154,235.06202077213675,235.90577616496012,236.639997407794,236.44283911352977,235.48981204163283,234.58322102716193,235.4161953208968,235.96567481476814,236.0604425240308,235.64042367553338,235.70979034295306,234.97735237097368,234.96529750479385,234.35486605158076,234.28981092339382,235.21374493138865,235.02501825941727,234.46303311176598,234.83413524832577,234.0940575771965,233.53498291317374,234.5136262406595,234.70693324040622,233.98212188808247,233.701903315261,232.76998569630086,232.3094114009291,232.4678329611197,232.17622895305976,231.25987771805376,231.3556907158345,230.85960565553978,230.3920040531084,229.4914937224239,228.67630319669843,228.84733686456457,229.104541673325,229.078741830308,229.7031176900491,230.00813724054024,229.2788061737083,229.1024567205459,229.3529140194878,228.3799835247919,228.5971873817034,227.76924594584852,226.85815295297652,227.4442838667892,227.82971082767472,227.92253966303542,226.95973139442503,226.25336522748694,225.60218923026696,224.71430456731468,225.32178508024663,225.34529541572556,226.1691942885518,225.8962391759269,226.67744660703465,226.8994998591952,227.7768892068416,228.6575970039703,228.22427905350924,229.0383974914439,228.58490368677303,227.7493196357973,228.059272444807,227.15852793864906,226.39364126417786,225.99213946424425,226.8738704919815,226.91381203569472,226.45487110083923,226.48173603182659,227.22214038856328,228.03197454521433,228.72246975824237,229.6242896290496,228.80165757564828,229.11358307488263,228.82961311237887,229.48509109439328,229.87079834891483,230.14424470532686,230.15017906809226,229.97600934561342,229.1837742337957,229.78382605686784,230.3559094434604,229.7198697384447,230.35184644674882,229.91442248830572,230.25279504759237,230.22346256487072,229.90220061596483,230.59436716604978,229.6126411803998,228.77330056857318,227.77445670543239,227.4145452361554,228.10198322171345,228.3368369084783,227.99841468734667,228.61810794938356,228.45064637158066,228.49804329732433,228.9354064995423,228.13369689369574,228.21825109329075,228.93811882194132,229.59247685968876,229.24384031258523,228.79148730449378,228.92375857196748,229.3380695595406,228.6512864008546,229.4279534672387,230.39528842736036,231.3266164297238,231.81078447494656,231.81130421441048,231.76065720245242,231.7787596974522,232.0947548672557,232.8514878982678,232.39986170595512,233.06618832750246,233.6118029546924,233.42008287413046,234.25212712585926,234.11368682608008,234.1304762735963,234.7244530087337,235.47326280735433,235.84915859391913,235.61766554787755,235.20321895089,235.7863506739959,236.2926813941449,236.8159877443686,236.0367719689384,235.4630040130578,235.21157216886058,235.26257242402062,235.95782025298104,236.40642531681806,235.6441804645583,236.4013710403815,237.14251288725063,236.72121726814657,237.08155659819022,237.51237804675475,236.81328452937305,237.6277387533337,236.75436417013407,237.01032542670146,237.45708704460412,237.3042028141208,237.58138740016147,237.3092803293839,236.39222469273955,237.05296329641715,237.4030620539561,238.356874902267,239.32217858545482,239.76655609812587,239.81509759882465,239.2496740873903,239.46309128263965,239.60585422581062,240.39268065569922,241.0184885938652,240.90861042356119,240.18685548752546,239.89317189296708,240.8415616969578,240.17113847471774,239.64654483040795,238.73254098463804,239.3477371367626,239.16471262462437,239.0812106630765,239.70128290401772,238.92415552819148,239.53153912676498,238.8111485862173,238.98693807702512,238.92009278060868,239.83431996963918,239.70437467843294,238.9064194126986,238.98992467997596,238.73383437423036,239.06409119674936,239.38208450563252,238.91415356425568,239.33440567692742,238.7625742321834,238.81084789242595,239.048088691663,239.34773064171895,238.3865086119622,239.0618172553368,238.8632779540494,238.7839492005296,238.80322973104194,239.1926211011596,238.26265208190307,237.30021479027346,237.8035934465006,238.10781169775873,238.68735592765734,238.9447511313483,239.38018186716363,240.13854084955528,240.317432500422,240.9429513704963,240.2865510811098,240.37469995813444,239.45568572590128,239.8539252220653,240.6056073163636,239.80225184978917,239.09224207838997,239.23843419225886,239.4631688874215,240.2965017114766,239.55290193948895,239.11289954185486,238.46897231182083,237.6365945180878,237.06119683012366,237.72421356569976,237.32634678296745,237.95659846020862,238.7395562948659,239.11443549394608,238.30706949159503,238.40744970412925,239.36545895133168,239.0375802749768,238.81095140893012,238.91142243193462,238.9020342421718,238.69888133276254,239.29196833772585,238.98619060590863,238.03552992921323,237.89477945724502,237.21795860212296,237.32081791199744,236.70044444827363,237.25844435067847,237.36682067252696,236.4288826044649,237.38908317359164,237.51505185570568,236.51550894370303,236.52314025117084,236.23772041965276,236.10490967938676,236.15638402057812,235.58304456621408,236.01657769829035,235.62499175034463,235.32514166506007,234.95149919157848,235.79785626474768,235.57417695969343,235.42237052647397,235.8842159640044,236.53877902030945,236.01565166190267,236.88110733404756,236.06125541310757,235.16872867941856,234.38067399291322,234.95340358372778,235.74264951003715,234.93257686961442,234.1512480895035,234.14522721571848,234.5516673461534,234.7884721979499,234.18744177371264,234.86445263959467,235.7194659388624,235.76555011607707,235.0631640763022,234.7661758940667,234.6589672435075,234.02933794865385,234.59569026855752,233.72740413574502,234.11863196408376,233.42857074504718,233.40929593425244,234.08502581203356,233.52845302782953,234.2944402396679,234.07085253018886,233.8735928251408,233.27822819259018,232.79930793168023,233.20573897194117,232.68288984103128,233.3877223888412,233.98192357691005,233.08528384147212,233.50386028783396,234.0578428688459,235.05399848753586,235.65073992637917,235.4094862435013,234.84999925969169,235.5144109018147,236.47754086274654,237.0268433103338,237.78784108441323,238.57023249892518,239.56220094533637,238.8077737945132,238.5542788207531,238.81233284343034,239.08164381794631,239.68998589226976,239.52596176508814,239.41565265599638,239.13368881400675,239.29093680065125,238.58867215691134,238.95262496126816,239.33429359691218,238.80419531371444,239.32624453445897,239.62082967488095,240.22425735602155,240.0205004340969,241.00731846643612,240.19498884677887,240.13651648676023,240.91653006803244,240.2344457092695,240.76191085064784,241.2989390543662,242.23883480625227,243.1198888574727,242.74866126151755,241.83394157560542,240.97393911192194,241.03918435843661,240.31882397830486,240.79238481773064,240.0054942695424,239.50651106517762,238.68909548502415,239.16107630124316,238.35498237842694,237.65782195981592,236.6902823210694,237.43619754491374,238.22222356498241,237.7628464139998,237.18382277479395,237.10867979284376,236.40188699262217,236.35326881194487,235.37685004528612,236.05360520025715,235.57284897658974,234.72471873927861,234.36648777220398,233.93926425790414,234.4819643101655,234.24582638498396,235.16289058187976,234.42809513676912,234.89328334480524,233.93610680662096,233.92213086085394,233.44503138400614,233.8500429559499,233.63239001575857,232.74450917495415,233.09857570193708,233.89601407758892,234.8955825297162,235.77802517917007,236.50997462682426,235.8552953992039,236.5580414137803,236.62261128332466,235.8134840191342,235.2322864709422,235.27296346565709,234.72006178554147,234.76906733540818,235.2561234566383,235.43990666326135,234.58454669220373,234.08881918760017,234.87448285939172,234.99491741601378,234.80952560715377,233.88504265109077,233.44059815537184,233.62333122454584,233.7466951762326,233.3497166512534,232.41613706666976,231.6964858272113,231.7262051468715,230.92344986647367,230.1311230068095,229.4453385984525,229.06132120406255,229.49996033729985,230.44436542596668,229.8851701677777,229.24101432412863,229.33663383405656,230.32755920337513,230.2656396497041,230.63535721041262,230.33574817562476,230.67017181543633,231.07829566206783,231.20387332513928,230.57082620682195,229.974760025274,229.14678425807506,228.5121824038215,229.0881211673841,228.7152362219058,228.02789035160094,227.88322155363858,227.49980581225827,226.56123012304306,225.76893151830882,225.0413558878936,225.42002690955997,225.9419740610756,225.59567310707644,225.8222757386975,225.7180398493074,225.30796325672418,225.3013775330037,224.55892463959754,224.33589319325984,223.6257574474439,224.26877870317549,224.8881186377257,224.75764153944328,224.4112854306586,225.288304369431,226.09726410917938,226.53872826322913,227.53263281285763,228.21083230059594,227.49816966149956,226.71775787929073,226.9863510830328,226.7554285377264,226.79869225574657,225.98027404770255,225.29628886003047,225.1947550997138,225.76597602013499,224.81801841314882,223.94078848138452,224.15786731196567,224.21287318272516,223.73943930212408,223.8982884422876,224.2342425021343,223.52188297221437,223.7077157823369,224.25006423378363,225.24251710809767,224.92856878554448,225.7443088251166,225.5846220990643,226.44774803193286,225.95903435256332,226.60818757442757,225.88937790459022,225.71703508170322,226.35228121187538,226.45578286750242,226.2427050191909,226.7785131135024,227.08946933690459,227.48656021431088,228.27758421655744,228.93245735252276,228.670588998124,228.34071626793593,228.98266396299005,228.0477769272402,228.41648009885103,228.0176399569027,227.66021131491289,227.3489774367772,227.68047663476318,227.02849725959823,226.94650695007294,226.0584820569493,226.75208738353103,225.75447445176542,226.5403999122791,227.28237603139132,227.5987376854755,227.85536201065406,226.9518628953956,226.83391796937212,227.54570073541254,227.0594981731847,227.2713531604968,227.08440573187545,227.08010052191094,227.9440681305714,228.66255026496947,229.15395902004093,229.80002782261,229.0257317861542,228.96398648433387,229.50003348710015,229.17781412974,228.63727654376999,229.14469933649525,229.17936211498454,228.30685356166214,228.32938306592405,228.4919023727998,227.95545571064577,228.34933113167062,227.59478089632466,228.05730091547593,228.4072602428496,229.28926185704768,228.70524758193642,227.84538254886866,227.35532899340615,227.40158418286592,226.99703130079433,226.4699610513635,226.45651700394228,225.99021120043471,225.37406349927187,224.7625101567246,225.49750632233918,226.19441374391317,227.03689850587398,227.25734854396433,227.5299009718001,227.13988139061257,227.2660223976709,227.73731349920854,228.00199468107894,228.50069492077455,228.78435866627842,228.28487047925591,228.08867762656882,228.01407044241205,227.27792719518766,226.47607859643176,227.03548140078783,227.95253581553698,228.78831472899765,229.38734047906473,228.85264173336327,229.7462388589047,230.24379972042516,229.4947273619473,229.36468061245978,229.56445402186364,229.9713194426149,230.4059798209928,230.4329287246801,230.11434613587335,230.2899213223718,231.08761081146076,230.2090495498851,230.50338634010404,230.9976186826825,231.53915687417611,232.17085368279368,231.72579493699595,231.4788276948966,230.99384189397097,230.07693693321198,229.8464543465525,230.5701929628849,230.5832745707594,231.40752417687327,231.8038192843087,232.45946685085073,232.0238032117486,232.83985577477142,232.67660177359357,233.3849828070961,233.5022309892811,233.96709642838687,234.8410454466939,235.5339549118653,235.29755422007293,235.96165122743696,236.82160049118102,236.63710371032357,237.25372136197984,236.63725356385112,235.6649650130421,235.3352081142366,235.8102425946854,235.6098398375325,235.53592066280544,234.8036658493802,235.79691991442814,236.25341954035684,237.026109976694,237.6849293615669,238.23295421758667,237.82627990236506,238.00333001837134,238.46907714102417,238.20834035146981,238.792705854401,238.49885966582224,237.59953141072765,237.20641171978787,237.25158598367125,237.38535377848893,236.4710371918045,236.91191493533552,237.82340491842479,237.99149305187166,238.18368304660544,237.91274042939767,237.61667627608404,237.88886266807094,238.87639125809073,239.12306940928102,238.2827790104784,238.25477636558935,237.84034641366452,237.17881249589846,236.78533987747505,237.51009291457012,237.3985490994528,236.4983656834811,236.08595371898264,235.16399147035554,234.4934521378018,235.10818719351664,235.1216566003859,234.52087147068232,234.8209615671076,234.00570532632992,234.39756141789258,234.16794031765312,233.89256906649098,233.646898296196,233.91924869269133,233.96282217931002,232.9755587503314,232.5059907459654,232.1655898289755,232.81139739369974,232.52210900513455,231.95356109039858,231.4509360003285,231.63614627392963,230.89515333529562,230.2886316641234,230.9177008396946,230.34012847673148,230.8551271483302,230.6157487789169,230.40322679653764,231.16575745586306,231.6509345509112,232.1389692509547,232.27330172527581,232.20138185843825,231.23993660882115,231.47633938631043,231.97819520672783,231.6547839078121,231.41294990945607,231.9817021349445,232.08377304673195,231.36922850366682,230.71923150215298,230.1007224097848,230.76646494166926,231.60835510212928,231.16074924822897,230.6507182563655,231.3583429083228,230.82842492917553,230.45710509177297,231.34251197148114,230.97126330574974,230.8459139834158,231.33551414031535,231.95606663497165,230.9850160810165,231.56639232020825,232.42819364275783,232.1599530344829,232.12478052079678,232.45449515478685,232.99470248352736,233.5869482527487,232.95113186864182,232.14415044803172,231.48004829417914,231.7176475096494,230.77343886066228,230.7094932203181,231.44847279880196,231.2143950923346,230.69498177152127,230.34146791882813,229.84809719398618,230.17921581631526,231.16104044672102,231.52575773186982,231.46786886267364,231.02593060582876,230.75309040443972,229.91263072239235,229.20195158664137,229.516341118142,230.16141987685114,231.00906493049115,231.45278573594987,230.68289538566023,230.13270063139498,231.03898282023147,231.65017294278368,230.66495009558275,229.8443191931583,229.76197154819965,228.77323143882677,227.78297831397504,227.90382171189412,227.84265669621527,228.82331006973982,228.30645317398012,227.89434121455997,226.95015194173902,227.75903070019558,228.2478996743448,227.7250936194323,228.45277905650437,229.03901673434302,229.155180004891,229.74774074507877,230.52693221578375,230.03476584283635,229.09567242488265,229.79823508812115,230.0610438468866,229.68006741534919,229.60378779750317,230.14442193461582,230.84995046071708,231.368715506047,231.4282035175711,231.74507202534005,232.6244566575624,232.1487182136625,231.19043545192108,230.30489344336092,231.00777235021815,231.91061507398263,231.10763016575947,231.5803482113406,230.63253468601033,230.31011770898476,231.23603005427867,230.65948967868462,231.51322772540152,230.79525051359087,231.11038699699566,230.99337573396042,230.35893562203273,231.08003989281133,231.7166953580454,232.34979445347562,232.38666435098276,231.95422273594886,231.91905711218715,232.58844471955672,233.16493441769853,233.84332289732993,234.7706992556341,234.19888968393207,233.73526227567345,234.2102419291623,233.24577807588503,234.04021225124598,234.64491989882663,233.73492319649085,232.9135696417652,232.77406906615943,232.09944719122723,231.52058230200782,231.80227405345067,232.47227860847488,231.58297064015642,232.44492950243875,231.8605176527053,231.63068255083635,231.71490510739386,230.8100597918965,230.7284431476146,231.3662955155596,231.92559846118093,231.29062520246953,232.24142306670547,232.1444146009162,231.2944112108089,230.94500518683344,230.84974513575435,230.02533618500456,230.76688334532082,231.18381732702255,232.02839808398858,231.5213941372931,231.74846493592486,231.76734921196476,231.6333567663096,232.19126449059695,231.77458298718557,231.69978495920077,230.9589946581982,230.83610312640667,230.07189128687605,230.10300093889236,230.49853863054886,229.91207172442228,229.90769226429984,229.80063087539747,230.54684842238203,230.02050681225955,230.58587618824095,231.50692506879568,231.75036307238042,230.7803979855962,230.0556129515171,230.77151047391817,230.5185873634182,229.63191990554333,230.4738131193444,230.01641994481906,230.17374921170995,229.59915543999523,229.88773477170616,229.46993177151307,230.31764801591635,229.45040862215683,230.38903934368864,230.7271425500512,231.58709447504953,231.92446234775707,232.21370783960447,231.36121918959543,230.57287177443504,230.32499621249735,229.6636820915155,229.3010662845336,229.28168336255476,229.0994455027394,229.41783864796162,230.24672049237415,229.46381062688306,229.01678214827552,228.31168531393632,228.73570851329714,228.3319764295593,229.3118875939399,230.2423764448613,229.37857835460454,229.23504541628063,228.95145417796448,229.81244948785752,228.9840086977929,228.52453739149496,228.8785948390141,229.12334909942,228.75465296721086,228.92918078554794,228.15042493958026,228.3577462155372,228.65062484145164,227.70954447658733,228.1924697603099,227.5575928813778,227.1984877847135,227.6949086803943,227.08432113565505,226.3517847857438,226.9389575808309,227.47822277480736,226.91931684082374,227.40514212986454,227.8075285484083,228.77599479444325,228.73986493702978,229.4409979316406,229.09351936681196,228.16353935282677,229.0278529743664,229.1033604457043,229.45466967718676,229.0999326580204,229.0473124757409,228.6808872409165,227.93271167064086,228.83724760310724,228.85404583299533,228.00928745698184,228.63061405997723,228.27098287083209,227.77945418469608,227.74720813939348,228.55847573513165,228.44063500873744,228.98927723616362,228.7651987313293,228.24377861246467,228.7596480101347,229.25846980977803,230.01078878575936,229.8558175265789,230.39531753305346,229.62390326242894,229.93533343169838,230.7950097513385,230.26849291473627,230.603622041177,230.9620484453626,230.38375012390316,230.02456900384277,230.54618736775592,230.97456073807552,230.5238702232018,230.55701259942725,229.57589193759486,230.2328677685,230.0843597939238,230.81260758684948,231.26028499891981,231.37461672350764,232.19248455017805,231.69356104778126,231.37354210577905,230.40665448782966,231.06395432306454,231.91187394503504,231.98602661583573,231.1278814766556,230.16428630566224,230.60985762346536,231.29219008982182,231.79351030290127,231.10174072673544,231.80549618415534,231.39869070006534,230.91511923121288,230.06612326623872,230.05830491892993,230.69071594206616,230.59051081398502,229.85031509865075,229.6397229526192,228.93953943811357,228.3636129531078,228.32472342485562,228.20541561907157,227.2829213803634,227.49996477551758,227.66866405820474,226.6945850015618,226.9838447822258,227.31070809997618,227.11012922646478,227.13365653622895,226.5010835295543,226.572418468073,227.3706640000455,228.31339778425172,229.1401832778938,228.46089065866545,228.21268524695188,228.86177387367934,229.80100004840642,228.81059489632025,227.84948492143303,227.111175511498,227.40708586992696,227.57577121909708,227.75298136100173,228.33810315979645,229.1809385214001,229.68069615354761,229.54400007938966,230.1561897303909,230.105585669633,229.26638939790428,228.9185071280226,228.34970914479345,227.68952461984009,228.5856741592288,227.9112818920985,228.0672406977974,227.50569263426587,227.15644422033802,227.3882491569966,226.51807708013803,225.68131510866806,225.8869156013243,225.0019143652171,225.69847591826692,225.76537620928138,225.51318220375106,226.06850315677002,226.73325555492193,227.13056646240875,227.3050937433727,227.35758846253157,227.8063899781555,228.04213449545205,228.11057814070955,228.8688925523311,227.9660177724436,227.60887712147087,227.6327773584053,228.4021063153632,227.50257475674152,227.67175984103233,227.2229700135067,227.85770498635247,228.44665359333158,228.18027773918584,228.44414135906845,227.53548988187686,227.62873987667263,227.61826887447387,227.0818632352166,226.74207577528432,226.42763039004058,226.7637616689317,226.8602221244946,226.46980529325083,226.4538092566654,225.61212891386822,225.5811247038655,225.2066499092616,225.03874398581684,225.11659718165174,225.13804916106164,225.145800516475,225.0809094919823,224.10505932522938,223.36002816958353,223.22558758500963,223.23001245968044,223.4500530641526,222.6837841863744,223.09007535362616,222.82976694731042,222.98559457343072,222.24059421988204,221.2838146588765,221.39381154906005,221.95209043007344,221.35533886170015,222.27538165310398,221.5159637676552,221.70963900303468,221.59414245234802,221.79520880477503,222.01183493854478,221.05098415212706,220.62549250712618,219.67481449944898,220.43919596262276,219.95556846261024,219.9324336266145,219.86779912095517,220.2073568352498,221.20368935819715,221.65449654264376,221.1073180520907,220.32031027367339,221.1903592189774,221.92167387716472,221.25352932792157,220.54308026004583,221.3522076732479,221.1674955789931,221.0197914177552,220.4936549072154,220.69693418312818,219.830355189275,220.71001822315156,221.10801648860797,221.2173100435175,220.74560299981385,220.46315911132842,221.37341206893325,221.91726970579475,221.43422495713457,222.16998429317027,222.66774196829647,221.73899170570076,222.55540372943506,223.32250165194273,222.67381518613547,223.47139650257304,224.31346717150882,225.15192375564948,224.1697549377568,224.90944663295522,224.05453626206145,224.86449964204803,224.14236308215186,223.2099772579968,223.78971950290725,223.67963173240423,224.32508597476408,224.98008643370122,224.34974422026426,224.69852483225986,223.9040628192015,223.98359629139304,224.07878070371225,224.911984375678,225.23132779961452,225.60283561237156,225.0203477051109,224.33762613870203,223.42669777339324,223.09256167151034,222.61205552890897,222.83172932825983,222.23736381158233,223.18987089395523,223.2624753122218,223.8705641888082,223.40645739249885,224.16058498248458,223.8438538350165,224.16436716681346,224.12107710447162,223.4172524381429,223.07345206663013,223.75646500196308,222.937960322015,223.6621877187863,223.5078462692909,223.64861589157954,223.88065192801878,223.44240636890754,223.13675531977788,223.85086169233546,224.71965918131173,225.61381163587794,225.9059874136001,225.55344329588115,224.7595806317404,224.3836183147505,225.33215148421004,224.360287678428,225.32208973448724,225.05392647208646,224.58725114539266,224.9384044338949,224.18998598959297,223.8676481852308,224.22826105961576,224.4208616875112,224.17880250094458,223.81117634940892,224.23233659286052,223.90244879899547,224.32949628401548,223.726190503221,224.30519181443378,223.34423461882398,223.10881281923503,223.56809347542003,223.86340859206393,224.77838309202343,224.8565891403705,224.48529766779393,224.19782122550532,223.25587217509747,223.50559526262805,223.76737826224416,224.5327640660107,225.20631356583908,226.1948552792892,226.01216164091602,225.4235762488097,225.93726146547124,225.2254872377962,225.49707515351474,225.1834936006926,224.22043061396107,224.82972447900102,224.7209983537905,224.78548499010503,224.8820786322467,224.13984973868355,224.1433660555631,224.2214868431911,224.1483786725439,224.2793934624642,223.98258573841304,223.17701017297804,224.07578243035823,224.07386125717312,223.20749259833246,222.97512356145307,223.58818978443742,223.42114269454032,222.82987004285678,223.0110966451466,223.46323824627325,222.8198997513391,222.23582338355482,221.3728909068741,221.61127465218306,222.50443542469293,222.05801902152598,222.17881952226162,221.98739409260452,221.47184343030676,221.42003130540252,221.51798092015088,222.06073075300083,221.94673422724009,221.99853225052357,221.26591879222542,220.6994415456429,219.97044306620955,220.0822250940837,219.23394404398277,218.43620459595695,218.40706927329302,218.15117444982752,218.82184912078083,218.5456347959116,218.13282128889114,219.02961552515626,219.98928159102798,220.11088983435184,220.11353464564309,220.59285834711045,220.93544950522482,220.95519108138978,220.55179169634357,220.45554693974555,220.77283703675494,219.94645174173638,219.59197281347588,220.30133627913892,219.87247949652374,219.36389800021425,220.32996128546074,220.64685065718368,221.2470484240912,221.93241525953636,221.28067872440442,221.43923199130222,220.63474558386952,221.482508987654,222.44265199592337,222.73756640637293,222.1069737104699,221.25495048146695,220.3430014103651,220.63273710012436,220.05906586768106,219.54454799043015,219.78718948503956,220.1525456137024,220.89844487374648,220.18320856336504,220.3676672349684,219.47215476306155,219.4007731107995,219.90653484221548,220.1587845836766,221.08215307351202,221.08491811528802,221.8895271299407,221.95358982449397,221.2572965924628,221.47940564760938,220.59487734362483,219.94807828776538,220.77200981555507,221.56661395309493,222.31046765251085,223.06107628718019,222.11811019759625,222.3086345368065,222.53748695226386,222.57296797819436,223.2642156383954,222.48024598974735,222.79174073180184,222.042522164993,222.6735775466077,222.29558897344396,222.26909189485013,222.91710426704958,221.92621226841584,221.7855925965123,221.70489649567753,222.45241467049345,222.9870934872888,223.6644452046603,223.066064523533,223.64492148160934,224.4700400372967,224.17330142157152,224.22914221556857,224.34856047388166,224.79832625575364,224.97667676350102,224.03310266090557,223.36546588269994,222.86269367532805,222.23654965125024,221.2843394749798,220.86649577878416,221.78776775067672,222.29991757730022,221.45575323561206,220.49078257894143,220.2594865267165,219.7445607748814,219.2506287600845,219.4036857620813,218.76932290941477,218.02282065199688,217.99380905414,217.69067429564893,218.2190927732736,217.63572076149285,217.1509119621478,216.64031524863094,216.46076893573627,217.0753126856871,216.7201078981161,217.16290525300428,216.71777874138206,216.81536346720532,217.17997362371534,217.71909799892455,217.24799035396427,218.23775301873684,217.61958519509062,216.82794089894742,216.70162284839898,217.14660093467683,217.6681935340166,217.2761148540303,217.52038257056847,217.26629485329613,217.03860878013074,216.45021157804877,215.59209097130224,215.66610020771623,215.22674890048802,214.5826994292438,214.8109050965868,214.39400318963453,213.81484744371846,213.77941428031772,213.80497145466506,213.73443153779954,213.71645188331604,213.3586391811259,213.96430582832545,213.76386439800262,213.79260872397572,214.16427174210548,213.63341411203146,212.98219254007563,213.48956703022122,213.5167479016818,213.54679320193827,213.01632954040542,212.71162289986387,213.63895452208817,213.7295675696805,213.5292597436346,213.4376428583637,212.4776938543655,211.6518339123577,210.7669268879108,209.95127046993002,209.55417894711718,210.4558104518801,210.53679385175928,210.91773392725736,210.0553314462304,209.54702419554815,210.42109061637893,210.1585141546093,209.70421793870628,209.43258682312444,209.0601583220996,209.1724370699376,208.94520504632965,208.95998394163325,208.5041211140342,208.30368908308446,208.84674076084048,209.02911343751475,208.59623850882053,208.7395894494839,208.40913663990796,207.45823390269652,208.35774644231424,207.91250995686278,208.2189510827884,208.9478652291,209.36554647842422,210.15133674116805,210.5609053648077,211.53068272816017,211.83640956645831,211.4851226345636,212.4261834169738,213.2171875522472,213.88619135180488,213.54961333144456,213.6295100278221,214.55010496033356,214.63442378817126,214.70250119175762,214.13605730049312,214.95507995784283,215.23309079138562,215.53309156093746,216.19528397498652,215.9047040254809,216.2508528358303,216.6442452063784,216.36341965058818,216.4853729084134,217.02259592805058,217.05373008642346,217.71055788174272,217.2216122765094,217.5712125529535,217.80979040218517,217.9986741365865,218.1964019164443,218.27403228124604,218.8497686656192,218.61789963394403,219.0012651165016,219.7925793849863,220.32261297572404,220.8881640434265,220.72765037044883,219.82767127268016,218.96829159464687,219.018235437572,218.11988268978894,217.2372701736167,216.2705427655019,216.34519511135295,216.30875450512394,216.10640024533495,216.07968726521358,216.15339160943404,215.94118113536388,215.850552840624,216.68107970105484,217.63027577102184,217.86781214550138,217.7420804160647,218.34540092991665,217.92657554894686,218.29611563961953,219.10148538509384,219.6976250493899,218.7878826628439,217.9430143260397,218.51529637351632,219.1584235955961,219.57568807853386,218.86015038052574,219.2385745840147,218.8011458455585,218.45750267943367,219.3120739767328,218.39708974258974,219.2678660787642,219.55996697302908,219.77334790024906,218.96196456532925,219.0090992441401,218.34196837525815,217.57337242970243,217.83204107359052,218.10290279984474,218.12971380073577,217.6025812444277,216.98424849146977,217.87042036140338,218.63529704976827,219.05769486026838,219.31237184116617,219.10019359271973,219.98317117383704,219.4721815106459,219.54657158255577,220.52923681773245,221.05890760105103,220.7033171299845,219.75266732648015,219.668274091091,219.93793513439596,220.54423443507403,219.88987148180604,219.99863740196452,220.50370054366067,221.42965245898813,220.81094594625756,221.76234964234754,221.97622830281034,221.11295073665679,220.72303422586992,220.51809230679646,220.32375486567616,220.40123143419623,219.82787848589942,220.24271449493244,219.55485074594617,220.27024947106838,220.58831382263452,220.9332553385757,221.80012333812192,222.45864219544455,223.27145398408175,222.91445928579196,223.04698458639905,223.54655691608787,223.52874704776332,223.59535912331194,224.0568316578865,224.8854912351817,224.0775743527338,223.36646749125794,223.10949579114094,223.80935729388148,224.25243587279692,223.5811450071633,223.7623506351374,224.373606889043,224.86537099909037,224.47082622582093,223.72063836222515,222.72631239844486,223.38685646280646,223.19203778542578,222.77108735078946,222.83471377193928,222.10809183120728,221.44590428797528,220.7792982533574,221.39819707302377,221.1450951434672,220.79660512227565,220.92139799054712,220.6141429520212,220.74938170611858,221.61248733941466,221.73722771182656,222.5486133173108,223.13096978049725,224.06382293766364,224.88069466734305,224.01009561680257,224.20157555537298,224.09625717438757,223.66869477694854,224.4357548574917,224.4901450080797,224.03229565592483,223.47365044243634,222.56632646732032,221.86566103529185,220.90139483381063,220.40293400688097,221.2156258719042,220.9099331512116,221.1335029299371,221.4752783817239,220.79560588439927,220.77431322121993,220.39072660170496,220.12321252003312,220.3427216988057,219.83190171653405,219.50972650246695,219.60188581654802,220.35464714607224,221.14422165462747,221.44564913772047,221.10574937611818,220.646135232877,220.3728805333376,220.61565467342734,221.07301534945145,220.83348542824388,220.945870898664,220.84098658524454,220.22949424898252,219.56654648669064,219.31131967250258,219.88444621814415,220.58743836311623,221.14707069238648,221.66569354524836,222.6367624583654,222.09857239108533,222.44958159467205,221.5866248602979,220.98910857271403,221.2514076428488,221.589925639797,221.10778433270752,220.50444210832939,220.18065628176555,220.3942697122693,219.6529180840589,219.1076753102243,219.81606448208913,220.71886734524742,220.2343918653205,219.3900294760242,219.05653061531484,218.93369463970885,219.8910938152112,220.65799469826743,220.25300846109167,219.63948423834518,220.3798440801911,219.99024246819317,219.50691774813458,218.67441834323108,219.30462078377604,219.0061757634394,219.54924391582608,219.1957619637251,218.66422317083925,218.33670692984015,219.01966164447367,218.9476897828281,218.16254252707586,218.2350805788301,217.4327909075655,216.47652785433456,216.9548562122509,216.61921213613823,217.49704133626074,216.8589564706199,217.02332757087424,216.766189141199,216.3894179854542,217.3792436295189,218.0686399107799,217.87098467396572,218.15930406423286,217.81126656150445,217.98720222711563,217.64260489074513,217.87706430628896,217.23681282904,216.60231790784746,216.86082206014544,216.50730442767963,217.33396539185196,216.67495067743585,215.67899771779776,216.5871143057011,215.61635312018916,215.59802789520472,215.25201386213303,214.35775546636432,214.63153122318909,213.7396340696141,213.62189962388948,214.60595310106874,215.29267216147855,215.43580979201943,215.27962586749345,215.23332291143015,216.10465371701866,216.4962525628507,216.12885178811848,215.8359118271619,216.26780879683793,216.8887309790589,216.9159120200202,217.5155926225707,216.83449174789712,217.3154126163572,216.46446623653173,217.26839479850605,217.741074483376,218.53946350282058,219.10418567014858,218.41877264110371,217.64225116884336,217.49312161793932,217.91140814637765,217.37760151876137,216.61770691210404,216.97499071294442,217.78297133930027,216.91582128731534,217.78253114130348,217.57839918788522,217.39813848305494,218.2256823782809,217.95956922648475,218.52838871395215,218.15798523603007,219.07406934536994,218.58601393550634,218.0794840985909,218.01362294703722,218.88810350280255,219.37241628486663,219.06050992570817,218.12316037574783,218.36401779018342,218.20979815069586,217.89396610297263,218.2924048267305,217.37180853495374,217.45161318359897,218.29519469942898,219.12122143246233,219.46292452141643,220.29968466144055,219.93972707074136,220.01111753098667,219.27080986695364,219.03058473719284,219.88751748064533,220.1181712290272,219.3168266331777,219.42272100178525,218.72344825137407,218.9845382780768,218.61011708481237,218.16886842716485,217.17354580853134,216.84343933174387,216.02539956523106,215.20168546307832,215.12189855379984,215.30978876212612,214.32054253155366,215.1794421095401,215.8503899765201,215.02015546429902,214.3269430845976,214.1554867848754,214.6155600505881,214.00923185888678,214.00189668685198,214.8795503336005,215.0088029326871,214.95759531436488,215.217750094831,215.2965290453285,215.6426431182772,216.2662822655402,215.95983059005812,215.20427645090967,214.92141728661954,214.09229547902942,214.28028664644808,214.83597184810787,215.66980818891898,216.01805350836366,216.64527697861195,216.97766428580508,216.84205535333604,217.57422719849274,217.6018010652624,217.15334244538099,217.71969436574727,218.5834404239431,217.6558341276832,218.02355804713443,217.32007586583495,216.41412560548633,217.11052045458928,216.57831287942827,217.35132157988846,218.00350673962384,218.75993407843634,218.99183786381036,218.85098939714953,218.01061483379453,217.3736112024635,217.61708739120513,217.5801004259847,217.47733702557161,216.57481149304658,215.67609996628016,215.58064770605415,215.85152536118403,216.47592686628923,216.41137485112995,215.98964338516816,215.9563484210521,216.345956644509,217.27598030213267,216.75512183550745,216.15963838109747,216.33696738490835,216.52579687908292,216.62260129721835,216.56730832951143,216.3246184112504,215.8370791967027,215.88830883940682,216.30388983199373,216.21171161346138,215.52250502631068,215.7439100299962,215.9654564196244,215.0926106623374,215.8628645450808,215.05145711358637,215.1010616873391,215.92686720145866,215.31448496785015,214.89573267940432,215.56052014883608,215.91231471812353,216.08489483315498,217.06654361914843,217.084555584006,217.4886036827229,216.98912364570424,216.8506680703722,217.57160451589152,218.14579425007105,217.16573431994766,217.28760560788214,216.9822268835269,217.35380115779117,218.30069891829044,218.607432752382,218.64645525161177,218.32405698345974,218.4601621516049,218.1457458557561,218.73955865111202,219.06379601405933,219.9434634312056,220.52592281252146,220.5726854405366,219.74625235795975,219.88063502358273,219.7211790047586,219.50886171171442,218.58675909182057,219.2573449211195,218.54651010083035,219.05519904289395,219.4809317481704,219.1465068217367,219.38569709844887,219.6879621008411,220.65490164840594,221.42643185984343,220.9299659919925,221.77388699026778,221.8386303819716,222.15855608228594,222.94006120879203,223.08298873063177,223.98898619273677,223.69656262593344,223.107229268644,223.40276770712808,223.40584308467805,222.46482752170414,221.5986363068223,222.3565628696233,222.49927016720176,222.139454966411,221.85153978178278,220.88557565771043,221.58771752100438,220.67449677363038,220.70138537837192,220.75409843027592,219.91193542350084,219.37662394996732,218.56021258840337,218.8450157372281,218.82626264961436,218.41387910023332,219.26756894961,218.4328227606602,218.16080109309405,218.95923722349107,218.47407318186015,218.6237914916128,218.99781558150426,218.1238453905098,218.35359480977058,217.99142324365675,217.85148010356352,217.10250512650236,216.27450632071123,215.54401748720556,216.32759138057008,216.56714382767677,217.0017940304242,217.23637493001297,217.71412600856274,218.55977595830336,218.72642747452483,219.1790805933997,219.28986762603745,218.49525082902983,218.00657909875736,217.46424079826102,216.6294983420521,216.5509109008126,216.69437149353325,216.8332132413052,217.80302289361134,218.07282038545236,217.37679982511327,217.59203971922398,216.86148490803316,217.27267761155963,216.7951820222661,217.3587433611974,217.19416179321706,217.79610699042678,217.83276084484532,217.29102732706815,216.42582954792306,216.78247400466353,217.0185430520214,217.03160277288407,217.16803590999916,216.73429346689954,217.4289929852821,217.87990395678207,216.9906101906672,217.77166025014594,218.07312552956864,218.66297678090632,218.79059407766908,219.69891179353,218.80543540604413,219.30631619598716,219.31705480068922,219.33287910278887,218.45578848710284,217.61815248336643,216.73006404796615,216.65228866087273,216.2211390971206,215.86223901296034,216.78720491565764,216.80983454547822,217.2571944775991,216.67911896388978,217.56910219462588,218.399100035429,218.5793066318147,219.4660425898619,219.27082800585777,219.6698036515154,220.51860005641356,220.52291030436754,221.39766589505598,221.45586407044902,222.02542063081637,221.8860970651731,221.6862245486118,220.7615411435254,220.07578731607646,220.2260845671408,220.73509273631498,221.49050147645175,221.1499488754198,220.68969999346882,220.25301503017545,221.05979557102546,221.68349583260715,222.10691647045314,221.84523586696014,222.42856646934524,222.2975391941145,221.81125372136012,221.69287032959983,221.73608377249911,221.34270788775757,221.4779639285989,221.77874922566116,221.97197817033157,222.59271185984835,223.14790531108156,223.8510243599303,223.39787516044453,224.23221830651164,224.87820696970448,224.68621003441513,225.2306918008253,225.87553021963686,226.8550160494633,225.95140153588727,225.63603091891855,225.15970874298364,224.24569460144266,224.3140708329156,224.60784808453172,223.93025312619284,223.9946737838909,223.2881616782397,224.01776997046545,224.9375697830692,224.34735268028453,224.5200448720716,224.92314276425168,224.98055353574455,224.72814533347264,223.9645775198005,223.86863249121234,223.70421831449494,224.1902016629465,223.3418064797297,224.29493284411728,224.1481013209559,223.5975663769059,224.25265164207667,223.62977233389392,222.98629514640197,223.87426684657112,224.20050233555958,223.26279433490708,222.5130599490367,222.46089730178937,221.4769136318937,222.2447444773279,222.8773619174026,222.13811404863372,222.04817267274484,222.02566713513806,221.60421905945987,221.08394666342065,220.4172566169873,220.0563572444953,219.96977676358074,219.56788070965558,220.1347229713574,220.9071801044047,220.87230625143275,221.82367047807202,221.71750155370682,221.78914146404713,222.53262502560392,221.80669206473976,222.54934292053804,222.1953177107498,221.47179884510115,222.19256014283746,221.98857097700238,222.96842883899808,222.3318207897246,222.16111666336656,221.38238287810236,222.35494188871235,221.41614618944004,221.64581267349422,221.20392970275134,222.17425155593082,222.02915425691754,222.05783040635288,222.70786705426872,221.95480725029483,221.58396915858611,221.78831867035478,222.59342284267768,222.77528595505282,223.52639138139784,224.1634326693602,224.38505869358778,223.78155485447496,223.71861110022292,224.3396595553495,224.3231073548086,224.46126262750477,224.5162270697765,225.13840991584584,224.63557320227847,224.55245044175535,224.4819756518118,224.67415291070938,225.10764492722228,224.11589586921036,223.6620840872638,223.01583073846996,222.28395877685398,221.57763390801847,221.99676509620622,221.75624873815104,222.63209118833765,222.61478937976062,222.611569034867,221.8416282311082,221.52089407481253,221.90556032862514,221.67707661353052,221.1775747174397,221.1281929742545,221.1050273370929,220.52638398343697,220.80301916552708,219.81442762259394,220.01350658386946,219.805278358981,220.6058133323677,221.47885538917035,220.4815173437819,221.11857659043744,220.78931500017643,220.2578715304844,221.21685226727277,220.26338347047567,219.91403468232602,220.7465029885061,220.25266220699996,220.98573096422479,220.49175433348864,220.77785763284191,219.92678890749812,219.24883659742773,219.78407978545874,219.75941036315635,220.28215138614178,219.6796352537349,218.83222798164934,218.4207811341621,219.16227009240538,218.36872894363478,218.37534783873707,218.82417790824547,217.8455070904456,218.71541696507484,219.29477467946708,218.57360471086577,218.39654375053942,218.51532911555842,219.18508569989353,220.02719568274915,220.97038863273337,221.59107354283333,222.09609499154612,221.69124885788187,222.5358206811361,223.12588696973398,223.78736211452633,224.24697214737535,223.93126637348905,224.5025048092939,224.27132891723886,224.24687723442912,224.24824508139864,224.74385281279683,224.00051753874868,224.46109816944227,225.1797154424712,224.8036339553073,224.9288481362164,225.60961086768657,226.2328566215001,225.5882173734717,225.44214929128066,225.6414245911874,226.39819568488747,225.5225890930742,226.0304776681587,226.61710090795532,226.36918926378712,227.077154496219,227.6659959112294,227.40253637125716,226.78272122098133,226.2731379372999,225.60752998897806,225.2942822384648,225.09254187578335,225.87084080651402,225.73710961919278,225.77976547693834,225.21843407861888,225.94581099087372,226.0409749248065,225.89093782752752,226.78630578517914,225.83863815665245,225.86389795690775,225.00819204887375,224.8714143098332,224.11448651039973,224.82319412752986,224.0664777988568,224.0713785458356,224.17745986301452,224.98065311834216,225.78043664759025,226.5888167140074,227.26790106808767,226.7240727734752,227.05581572046503,228.05446105170995,228.2641102410853,228.06275445828214,228.56642913911492,227.70351096289232,227.8571883677505,227.11368126282468,227.09765203855932,227.54336053086445,228.3932794057764,227.56398456450552,227.07342773117125,227.15731647331268,227.14090299746022,226.9179560719058,227.27231312263757,228.0965537717566,228.29804799007252,228.80773363588378,229.46109274262562,228.80193022312596,229.0346922604367,229.83761224430054,229.89857531152666,230.28663454158232,230.65677480213344,231.11068278644234,231.01628785114735,231.14139698259532,230.42639493290335,230.95651430124417,230.2198288901709,230.1067779432051,230.25806476781145,229.83859755890444,229.83017744729295,230.665818461217,230.5998014365323,230.41374997235835,231.25071643292904,231.82749330159277,232.5696446732618,232.14048349810764,232.9202911038883,233.82846014294773,233.460482488852,232.46776886610314,233.20351183507591,232.26822957396507,231.9730820171535,231.77064128452912,232.02333315415308,232.52186325145885,232.5688246539794,232.13417869387195,232.23326514475048,231.64695411501452,231.18639290705323,231.1815812359564,230.4395513110794,229.7990193348378,230.5223458148539,230.4546963418834,230.3889471553266,229.92037959210575,230.7455758098513,230.650363962166,229.7161586084403,230.6725331894122,231.24327632272616,230.64263744372874,229.69552901387215,230.61342439055443,230.81877604546025,231.57631450379267,232.15310123981908,232.72265570657328,232.5148278521374,232.77386419288814,232.61486210720614,232.54480776190758,233.54465973516926,232.8476098193787,231.993674677331,232.93874771054834,232.27407162357122,232.8799070273526,233.00559273920953,232.06638232525438,232.47175993258134,231.59693803777918,232.43146198615432,231.61217114282772,231.94910673657432,231.75552791310474,231.0715046580881,231.90540204104036,231.03017743723467,230.97484437003732,231.3122017630376,231.82532918080688,231.15453256247565,231.5853683007881,232.01496672350913,232.14521741401404,232.57315973518416,233.19366850238293,233.1508241603151,233.9939962211065,233.549160271883,233.38209183095023,232.63775702379644,232.30124234687537,232.93114761076868,233.44006939744577,233.1739894989878,233.4689514390193,233.63504997594282,234.2380400132388,233.97169308643788,234.28383457660675,234.63680687360466,234.52505863877013,235.39109807973728,235.30015595117584,235.19186817482114,234.6515606502071,234.29787508351728,233.77900565927848,232.9180416627787,232.56153619568795,233.4429782787338,233.64736927859485,233.65849073976278,232.94366660900414,232.61542820278555,232.43191679241136,231.60305628925562,232.21518379449844,233.19390964042395,233.30777553655207,233.386709284503,233.74322917638347,234.74144314602017,233.8373206150718,232.97526265727356,232.55338032869622,233.278146404773,233.32508638128638,232.602652982343,233.07097728597,233.59023224096745,234.4002714366652,234.38592523988336,234.39305410161614,235.24383580172434,234.87416596710682,234.4119659885764,234.99888824112713,235.5220129797235,234.5902492487803,234.7036734484136,234.7162517979741,235.0698417238891,234.1901200930588,234.6260372227989,235.1715114978142,235.44487646920606,235.00318593904376,234.52377515332773,234.50841791089624,234.96380884107202,234.86036802781746,235.72698253113776,236.6386910295114,236.28869142988697,235.6051990110427,235.43292061518878,236.23481720825657,237.20579550415277,236.76402780832723,237.37793856998906,237.3844785350375,236.41784378420562,235.9647760936059,235.51648916257545,235.72192889358848,236.0118637722917,235.37968336744234,234.66977685084566,233.7424718271941,234.19261662987992,234.1856374135241,235.17890499858186,235.06515805330127,235.27030694438145,235.63968815794215,236.2530210004188,237.14732251688838,237.64084632182494,237.49951658770442,236.55025268904865,237.27398361777887,236.75465542357415,235.92722623609006,235.08274700352922,235.45881005516276,234.47483411058784,233.89335917960852,233.00023392913863,233.82194475410506,233.51978372689337,233.6418736781925,233.6687443330884,233.8522201338783,234.6814863444306,234.25969646312296,233.30460467655212,234.23170011630282,234.3160673105158,235.25340515794232,236.10141091281548,235.89803082309663,235.99242583941668,235.8965163566172,236.11687257653102,236.05184959014878,237.02306683082134,236.66868858691305,237.08320097625256,237.8724214490503,237.6689105387777,237.52184736542404,238.2903723004274,237.49142213445157,238.14045954309404,237.50216766865924,238.31873340392485,238.2062240052037,237.4347431617789,236.7486770027317,236.14970495225862,235.60607427638024,235.5916031957604,236.02063857158646,235.43362343497574,235.50277008581907,236.07717368006706,236.4510472677648,236.08578746626154,236.5901227002032,236.38236005185172,237.08064136793837,236.3936619744636,237.01563641056418,237.82894724374637,237.47582317655906,236.57437127409503,236.08366234460846,235.21189708495513,235.36321628140286,236.31582395499572,235.74263154249638,235.31189523870125,235.252302961424,234.83634913200513,234.87710219668224,233.8912586197257,232.98390562878922,233.82435235800222,233.02774453163147,233.8351894253865,232.9610699126497,233.58455527806655,233.74146173428744,234.6933940546587,233.88431700039655,233.8102311496623,234.62210584711283,234.8909831326455,234.67703806096688,234.61772316787392,234.99580074334517,234.70620070351288,235.27682440215722,234.65241787442937,233.98541320906952,233.51146666891873,233.7741132117808,233.3465984002687,233.27442507538944,233.54593022959307,234.18117949087173,234.96929785981774,234.6404222319834,233.77935652108863,234.4997878712602,234.0296576116234,234.58820090908557,234.8318216353655,234.31960887787864,234.48074750695378,234.41098589962348,234.13369114743546,234.63973003765568,234.71342322789133,233.77633001469076,232.80949412472546,232.97599023254588,232.87968917610124,233.7192351091653,234.20337409665808,235.05873292824253,235.1020856066607,234.9555526827462,235.73011413728818,235.09792353957891,234.85878870496526,234.4131217719987,235.11483753379434,234.87305610859767,234.5654356875457,235.50345770595595,234.63458014419302,233.77737684035674,234.41036198846996,233.662579015363,232.77941585844383,232.50569140911102,232.3916842811741,232.79907180182636,233.10656941542402,232.99213122203946,233.86942915758118,234.1405665553175,233.82968541514128,233.26478620199487,233.05451485700905,233.6871062903665,233.14179057255387,232.44532966148108,232.7681455942802,231.94033003784716,232.30059863394126,232.64872186258435,231.69331937935203,232.18293617432937,231.80986186023802,231.4791328087449,231.16835113381967,231.64320835797116,232.60906173242256,232.75965704442933,233.0711053707637,232.7202591029927,231.96116879722103,231.68959657242522,232.24223232874647,233.12767115840688,233.85990370297804,233.1313667409122,232.9680910082534,233.81145342439413,233.72553640650585,232.8796825041063,232.4104510215111,233.09847679827362,232.5806880556047,232.9169791531749,232.89257301809266,232.82701064553112,233.7319942684844,233.4104236024432,233.624960728921,233.90502785844728,233.22412575921044,233.04891381552443,232.85551607236266,232.84139990992844,232.75626742560416,232.37507369183004,232.3590096142143,232.1350517938845,231.98137167841196,232.09541914751753,232.18762663612142,231.36748152552173,231.4439809769392,231.38678761478513,231.7338217329234,231.5797655005008,231.2143887244165,230.27954034460708,230.66138984495774,230.40155904274434,231.21908390615135,231.86083883140236,232.02694883290678,232.37899689748883,232.8489682590589,232.6406853273511,233.14253620570526,234.0160944238305,234.88607774022967,234.89607605757192,234.8723988039419,234.0152006680146,234.17311985464767,234.32579736970365,234.08169698016718,234.46512374002486,234.6550870668143,234.80054909037426,234.7188439760357,235.3774053179659,235.70024830289185,234.96996108535677,234.2966809188947,233.42991879349574,232.52343911491334,232.30305094784126,231.69474549824372,231.105108729098,230.45591877913103,230.5332177276723,230.72161611821502,230.34845704305917,229.692815143615,229.66333228349686,230.10353180067614,229.95522658759728,230.4999890490435,230.8641794733703,230.96696622483432,230.25998900318518,230.7427788716741,231.6863318379037,231.30024309037253,231.43693351000547,232.30621130531654,233.06593916751444,234.0531136081554,234.49088831059635,234.31001580739394,233.34084797417745,232.35172658320516,231.95357799250633,231.30112122697756,231.90652426099405,231.964907951653,231.17241761321202,232.15512219630182,231.39415727043524,230.4558907118626,229.72950324881822,229.24493429344147,229.2006282247603,230.1017616377212,229.88937483541667,230.5314813167788,231.09877589065582,231.4228148944676,232.3369265892543,232.34051050851122,231.55601132567972,232.53806614177302,232.86695916811004,233.2828016052954,232.84953607805073,233.6495492332615,234.11256811534986,234.82398363901302,235.2324035866186,236.1531349509023,236.71764547098428,236.37824129126966,236.95483654551208,236.97276262706146,237.43047633813694,237.38993671629578,237.5729241478257,237.85312503483146,238.61953302007169,238.88390609901398,238.2795653422363,238.1153146470897,239.0402349550277,238.93120716139674,238.53578670416027,238.77431907504797,238.83802120015025,239.52623026119545,239.46396755380556,239.85764725599438,239.1370794987306,238.5407151733525,237.6015529660508,236.7217934881337,236.9485078896396,236.53131267987192,235.58132583927363,235.29705654270947,234.44850128609687,235.00849839812145,234.29903698153794,233.77980736782774,233.61153464531526,233.48427665932104,233.93595252465457,234.44650762202218,234.36031972849742,234.7863900293596,235.57916874205694,235.11821235669777,234.73460146412253,234.6231651068665,234.72131863981485,234.67197517771274,234.81119759194553,235.61573153547943,235.00614693202078,235.7150437310338,235.88986439676955,235.2394172726199,234.74772605579346,234.67104141553864,233.88189118914306,234.75342060625553,235.04659339180216,235.1398003147915,235.21653029834852,234.53705521812662,234.20262787956744,234.4365581930615,234.57411798741668,234.1817644853145,233.99765483802184,233.78925440041348,233.02591709326953,233.33028085250407,233.68747855955735,234.47092421213165,234.88200346240774,234.00369896413758,233.40288817696273,232.54949196707457,233.09615813195705,233.0672558345832,233.61369466176257,232.70388561440632,232.90220834081993,232.67117627011612,233.61898550670594,233.34662100905553,234.09936180198565,234.980625373777,235.4732111664489,235.79797997465357,235.54006062587723,235.49617977906018,236.38996841199696,235.70608416991308,236.6206797179766,237.34852544032037,237.9280506609939,237.62767587415874,237.85334688937292,237.0596510618925,237.9365516989492,237.76704049110413,237.53992409491912,237.31146055087447,237.79263746272773,237.38589942315593,238.06938434019685,237.68486260203645,238.543007097207,239.54100391454995,238.84000637335703,239.3270564218983,238.52024926058948,238.86116954497993,239.1177437468432,238.62177966022864,238.615343447309,238.75739586539567,237.90041625872254,237.81734824553132,237.178614157252,236.80428753606975,237.1425608880818,237.033755782526,238.00560565199703,237.0640989933163,236.9670265908353,236.32658161222935,236.2391053820029,236.0169775960967,235.2427006312646,235.93705095583573,235.27337288903072,235.13331862166524,234.5116074644029,233.76715112663805,233.96002270281315,233.57730323029682,234.44156408682466,234.0426315125078,233.3771579777822,233.31198128079996,232.61868733167648,231.76239540008828,231.1455232934095,230.519653710071,230.87372055696324,229.9653788851574,229.88231888134032,229.92776350863278,230.4763887617737,230.80412946362048,230.47978036478162,230.5230389321223,230.1770655089058,229.89615089306608,230.16867701197043,229.7026064810343,229.22885823389515,229.07340695289895,228.39800097374246,228.67294159671292,228.8810749691911,229.47715031029657,230.29123473493382,230.05708533152938,229.18629087135196,229.59789137542248,230.17703313054517,230.3823742340319,229.7839845228009,229.50107013480738,229.10312703810632,230.08615028718486,230.64127202611417,230.33965606428683,230.68702672608197,231.57007949333638,231.96753776818514,232.4350503035821,232.06796419154853,232.09335933625698,232.75138337165117,233.0647034291178,232.17233799491078,232.68875531852245,232.99105019355193,232.3831424457021,231.79764825105667,232.19748679781333,232.37656617583707,232.992439951282,233.96554547268897,233.83666902873665,233.23431545495987,234.02619547955692,234.1585456156172,233.80005642259493,234.29445843352005,234.07552222628146,234.11222773464397,233.34020513808355,234.21601219195873,234.88992181932554,235.88934359233826,235.09811604674906,234.19090705597773,234.25574409076944,233.84254390140995,234.07566987909377,234.10557742370293,234.1441074544564,234.7772949198261,234.6329823071137,234.68069839617237,233.80426134029403,232.96636248053983,232.3299901401624,233.27187734562904,232.8428744324483,232.9398281108588,233.6448640585877,233.06042762845755,233.77962283603847,233.60063400352374,232.93211592640728,233.18437138479203,233.1279562273994,232.88046999275684,233.60717400815338,234.10120745375752,233.58848243486136,233.4782620742917,233.95432708971202,233.66984290303662,233.7816748889163,232.84535849560052,233.73267836030573,234.60107817919925,234.035614868626,234.7155830883421,234.91897227568552,234.44477738952264,234.15536200255156,233.72134423442185,232.90856079524383,233.3247399283573,233.81906441319734,233.17129273386672,232.36889465805143,231.78359409887344,231.03387720044702,230.4601052296348,230.47904574126005,229.84312804415822,229.54778067907318,230.16811468172818,229.2785262130201,229.08438000269234,228.60589282540604,228.08127543423325,228.94183100247756,229.65308734867722,229.25541344704106,229.14023528294638,229.0567469811067,228.97432386735454,229.46779140969738,228.47042530262843,228.81968848221004,228.7582892565988,229.68682260252535,229.29718187265098,228.6649078791961,228.50250278459862,229.0782648785971,229.5129209025763,228.87956377491355,229.23213420249522,230.05982055747882,230.1057691811584,229.7653418998234,230.17766376165673,230.56227090209723,229.83581243362278,228.87565804459155,229.52549392031506,230.1152299339883,230.41866613039747,229.64830232365057,230.14729257300496,230.08523094793782,230.17609767522663,229.3464094637893,228.7613205513917,229.31729431962594,229.6412571957335,230.496544030495,230.35055232187733,230.0386751163751,229.76859762892127,230.3058062568307,231.17263177409768,231.26606205757707,230.70441106474027,231.42111254762858,231.73779230285436,231.1247302442789,230.29329358041286,229.40841597504914,228.5601393566467,227.81673086434603,227.46205102093518,227.84171199705452,227.17645539948717,227.1439767642878,227.96130909165367,228.17722601164132,227.8790407232009,227.001052509062,227.27710978733376,227.67359428852797,228.0429711570032,227.38579107262194,228.100138457492,228.20237144548446,227.40514412336051,227.83329041814432,228.0141259757802,228.44319491740316,229.42019146401435,228.61114812921733,228.53355871280655,228.54570282576606,227.85148309683427,228.54359505232424,227.622819383163,226.8153244308196,226.97229683352634,227.70256251422688,227.4630560092628,226.58262297930196,226.43167994357646,226.9971670890227,227.66025312431157,227.11403376003727,228.09401860972866,228.4931654240936,228.33333457494155,227.63634422700852,228.46846675965935,228.7813250720501,228.0310014183633,229.0015662778169,228.80119450343773,229.3449833090417,229.64801289746538,229.07505941111594,228.51154649164528,227.57742398232222,226.66933522187173,227.53970124479383,228.1455959728919,227.38369066175073,228.2823956166394,227.74979527667165,226.7977642212063,226.71998973097652,227.43314183922485,226.4721045801416,226.46110728476197,227.27787682740018,226.7667768355459,226.2028931695968,225.28745046118274,224.82885569473729,225.46530774515122,225.4199629193172,226.32696224469692,226.8726265579462,227.83214940596372,227.99831888079643,228.57765203900635,228.73198416177183,228.311249114573,228.53986059315503,229.38219855166972,229.49978514341637,230.01810595346615,230.69056004704908,230.4529814091511,230.20052317576483,230.55192177789286,230.8271027179435,231.4352222434245,230.63331973645836,231.53555367933586,232.12019742606208,232.20209101121873,232.09128677193075,231.16470468277112,231.12446946138516,231.46849984163418,232.1235230132006,231.19991997163743,231.76992757758126,232.54637102596462,231.6867159139365,231.26922840578482,231.02072836272418,231.2380334502086,231.30346529046074,231.8115627914667,232.424261668697,231.6777031379752,232.61214962229133,233.40915587777272,232.53684513829648,232.7982183978893,233.5232194229029,234.10357656423002,234.87525100819767,234.82264480553567,235.24724965402856,234.81038701394573,235.55162044474855,235.0228483779356,234.70438942778856,235.02567924698815,234.32131204381585,235.018063202966,235.7057784711942,235.62801956944168,234.75225069373846,234.70877948775887,235.1521652196534,234.87498756498098,234.22146928682923,233.62277895445004,232.80699189100415,233.78419237677008,233.3514091996476,232.51061948901042,233.443477217108,233.35584643809125,232.9914564215578,233.38383895810694,233.72392615908757,232.84295540861785,233.05263009807095,233.4874654826708,233.02674730774015,232.3590850904584,232.00135991815478,231.84186080889776,232.55216624075547,231.89000605233014,232.1023389925249,232.86920605786145,232.9768981076777,233.14305821806192,233.9810279207304,234.90920322248712,234.22448929958045,233.70812456589192,234.27401110623032,233.76454190071672,233.21281316922978,233.10947718890384,233.00355770764872,233.01319323899224,232.09296780498698,231.80289071518928,232.3286763136275,231.6918059824966,231.18327123578638,230.76500126346946,229.94711087225005,230.26975758280605,229.81250225566328,229.1753605408594,228.2974029756151,227.94641020102426,227.4395911740139,226.98376101488248,226.48018530197442,226.95767727307975,226.7108511570841,225.75984713248909,226.23716294532642,226.65279033966362,225.83359914598987,225.42813969682902,225.2583219781518,226.08176581561565,225.11102623678744,225.56664758874103,225.96547515690327,225.8054750612937,226.75591773400083,226.3368602739647,226.33817167254165,225.86829120945185,225.44861514028162,224.5186741501093,224.07835603738204,224.2092209942639,223.42124641034752,223.55134231504053,223.3747332165949,222.63303475594148,222.81512536015362,222.76911844080314,222.4520757375285,222.5650417311117,222.2303701066412,222.38371448870748,222.64622521493584,221.95446801465005,221.74511265242472,220.9249622481875,221.45887314109132,220.616508373525,221.08794281585142,221.26555729703978,220.7132365773432,220.50801424542442,220.58130618510768,220.36694697570056,220.1884079221636,220.21440321905538,220.8804726889357,220.69036565022543,219.77930701337755,218.91015610517934,218.81170872878283,218.47885946324095,218.93199297506362,218.54467474669218,217.9966853740625,217.1014359863475,217.28808703133836,217.6506964173168,218.02604922186583,218.29996542446315,218.5948331328109,219.24636319931597,219.73563560610637,219.93555323313922,219.99090217519552,220.93283746019006,220.98325521079823,220.91113022901118,220.19938834523782,220.70465794531628,221.33220398472622,221.3110147640109,221.19344134954736,221.191636193078,221.6318107927218,221.35972259473056,220.37324278242886,221.03698302945122,221.253230902832,221.36981662595645,220.93495664838701,221.48574768798426,220.8791377171874,221.8154148417525,221.13078849436715,221.9735902636312,221.67759224260226,221.89880612539127,221.4981995029375,221.63099124841392,222.03582138149068,221.99037323798984,221.38432533899322,220.51764786662534,220.85030055698007,221.42457361193374,220.63706608396024,220.18174288840964,220.61645473726094,221.58431236678734,221.82370017888024,222.4119444647804,223.00230907043442,222.89246148243546,222.47480637812987,221.47698339959607,221.85276660742238,221.40543471556157,221.50492714624852,221.7406150442548,221.28993609920144,222.16298913024366,222.6371464803815,223.62334638647735,223.26485726237297,223.17496975744143,222.55565473577008,221.6064453460276,222.36157491290942,222.22096744831651,223.05938391759992,224.01192639535293,223.74668341968209,224.44618589803576,225.23497337521985,224.73504788288847,225.62413557432592,225.37123374920338,226.02977809216827,226.97267575515434,227.2895369292237,226.50958699081093,225.77658578148112,225.51893910998479,225.9669817686081,225.339877164457,226.04075657296926,226.42505257437006,226.3141815746203,225.7464721892029,226.54876761697233,227.49188370024785,227.88674241676927,227.6661899765022,227.58581540826708,227.42901214538142,226.44960877252743,227.38614829769358,227.5712557756342,228.09524887194857,228.0344592309557,227.24594277050346,226.70892383810133,225.97448295447975,225.14614080870524,225.389931908343,224.63010894693434,225.16466755932197,224.7864564252086,225.18134965747595,224.19054574007168,223.70431977603585,222.94923537410796,222.1655685910955,222.2152246297337,221.922680540476,221.80493643786758,222.7715402902104,223.61746386624873,224.04061337467283,223.31242607766762,223.57026382675394,224.55121536413208,224.2748370761983,224.83792922459543,224.84019247675315,224.94163219584152,224.67903685569763,223.72308496991172,224.55415649712086,223.5551851177588,223.5715547595173,223.91821416281164,224.54923764569685,225.51686653262004,225.75969997653738,224.96463101822883,225.73034076252952,225.93529976671562,226.7434298908338,226.24994195625186,225.87707563582808,226.75588701991364,227.30081829987466,227.23995364829898,226.76484128739685,226.5239152009599,225.95080875745043,226.4568498544395,227.38549633976072,227.48187398072332,227.80179250147194,227.8700380283408,227.66551635134965,228.59603206487373,228.8440649304539,229.8159853555262,229.9314843849279,230.91019908431917,230.65844687912613,230.49460776057094,230.7092726500705,231.22296835668385,231.00332977762446,230.0311975753866,229.1184837082401,229.86097472021356,229.61961507145315,229.046617240645,229.496779801324,229.85619144840166,229.31553179444745,229.42630543373525,230.41272633476183,230.99935027165338,231.52683364180848,231.21001222450286,231.38816436287016,231.77563959825784,231.40913755772635,230.66602842416614,229.74450318655,229.5380959981121,228.83859672863036,228.0841530659236,228.67893592407927,228.71580582484603,229.7153677395545,228.80522739887238,228.66311085550115,228.3273905501701,227.9248241414316,227.76357299089432,227.48147887410596,226.786469432991,226.27903935220093,225.35323784593493,226.29898244375363,227.06242030020803,227.92876529088244,228.29454192565754,228.28051594132558,228.97034097881988,229.33001736178994,230.30589049961418,231.22174183931202,231.06048085400835,230.12263937853277,229.6072246185504,230.31516706198454,229.63309517269954,229.55570962652564,229.4536104365252,230.18390036467463,230.23383096931502,230.91678885370493,231.37788023566827,232.21988780796528,232.0270780036226,231.19860755745322,230.96453205589205,231.4206207538955,231.77005515806377,231.96120393369347,232.9151010243222,232.42312104487792,233.30955034913495,232.3818882452324,232.19237330835313,231.36188814463094,231.49577174149454,232.4877612539567,231.56422700732946,231.68757489975542,230.7498918888159,230.57409250270575,230.02877300791442,230.20826161000878,229.81602036301047,230.42029400309548,229.58839205326512,229.05724770203233,229.34872789215297,230.01142025971785,229.9261258225888,229.74319248786196,229.26242347853258,229.35318278940395,229.21996948402375,228.27498241513968,228.44071360165253,228.90233633760363,229.4275843668729,228.65371454879642,228.84351541055366,228.7888382943347,229.6949473307468,230.66343248263001,231.56010672589764,231.37058099592105,232.06569368578494,232.99943317612633,233.52877707360312,233.11616111081094,234.10466138180345,233.65502860862762,234.55504081724212,235.35851821582764,235.65824231738225,236.15337054105476,235.45251301955432,236.0207731439732,236.99045725353062,236.3392464374192,236.05355156073347,236.94272071728483,237.19427852937952,236.6528742951341,237.0121244811453,236.66062938049436,236.98829658841714,237.57375180209056,238.5100852237083,238.0291030742228,237.38585982471704,238.3379864837043,238.51420203456655,239.08725719014183,239.41388943372294,238.56772051379085,238.89659411646426,238.88480701949447,238.50149665446952,239.04743831185624,238.90788802178577,239.15299701225013,239.9135212362744,240.88642820622772,240.51613886887208,241.37316998792812,241.77195135690272,241.1055448804982,241.52146415691823,241.15601635584608,240.50798315601423,241.46911158086732,240.9951424705796,240.0879711410962,239.9911381592974,239.2729826476425,238.3624742864631,237.59071942977607,237.35464816214517,236.90449044667184,236.9300743327476,237.3415398444049,237.05732075870037,236.55993846524507,236.0626897434704,236.7399743301794,235.81869522342458,236.0830011907965,235.62186504993588,235.71410364983603,236.4709249129519,236.8757523642853,237.4524156395346,237.35676590446383,237.2786540077068,237.17590352147818,236.71069595543668,236.54372746730223,236.46248703170568,236.77941635530442,236.18194592371583,235.9504118738696,235.76890476001427,234.92776098428294,233.93069412978366,233.1938268081285,232.58324996754527,233.53569256979972,232.59935253951699,232.39287889748812,232.99236274370924,232.86314390366897,233.49618860846385,234.17146648699418,234.1956299673766,234.64002192299813,234.43412194494158,233.81896395236254,233.58560867840424,233.70634152321145,233.68811815138906,234.54443927528337,234.70174421183765,234.6841236334294,235.57340079639107,236.02538516139612,235.95596722420305,236.57572491141036,236.40733732609078,237.27656256686896,237.62422800203785,237.6430725720711,237.15408198488876,236.4558092332445,235.9366727937013,236.6135667259805,237.51176791777834,238.16622482566163,239.03789127990603,239.81596270017326,240.21405846159905,241.16821309411898,241.17154503520578,240.3416378707625,241.0732838343829,241.08133068028837,241.53749143797904,242.43007280444726,242.3541145431809,243.21584099158645,244.1523556332104,244.39171125320718,245.1649002977647,245.39361551450565,244.56464713346213,244.57923336839303,243.87867302820086,244.4744536401704,244.04927309509367,244.45203271973878,243.8959373529069,243.43448903039098,243.39472232805565,242.9485635329038,242.76351914554834,241.8021385720931,241.2049100245349,240.77145577594638,241.0919589549303,241.16984858363867,240.91916431719437,240.32241047360003,240.02665839949623,239.0280856746249,239.22855720482767,238.25639690412208,238.32985053071752,237.60873276228085,237.29677400086075,236.503093468491,236.5427725170739,236.2950387839228,236.5138436513953,235.79057863168418,234.8091059681028,235.1520547340624,234.5578448451124,234.21961154881865,234.1255345507525,234.21806574286893,234.96742638200521,235.58600084716454,235.92591426614672,235.43275107303634,235.93634297326207,236.03619249677286,235.65159094939008,235.91552866762504,235.71359561104327,236.420491960831,235.71687760483474,236.66996285133064,236.64407223835588,236.58082598354667,236.3144650165923,237.01154408883303,236.3424247750081,235.83177798613906,235.68668071972206,234.84107326203957,234.85057224938646,234.56217919755727,234.98225990124047,234.93142586993054,234.46286212280393,234.60776188550517,234.34871252719313,234.43317127646878,233.53309127595276,234.43887356342748,235.25833465065807,236.19548885338008,235.41208909172565,235.60659471945837,236.20596561348066,235.6449908153154,236.01467974763364,236.43585047870874,237.2376663889736,236.24629373755306,235.57879285514355,235.40374606661499,236.36010419717059,237.15354117844254,236.7094301339239,236.11071866285056,235.70589095260948,235.57340116472915,236.2933362107724,235.90451706619933,235.90223309816793,236.17763811955228,236.16796708013862,235.69558083452284,235.22645590640604,236.00499579356983,236.95754606695846,236.73155145719647,236.14134405413643,236.99572830460966,236.98458552034572,237.7561723846011,237.21431423118338,238.01428384985775,238.23583050537854,238.92817843565717,238.28421875834465,238.74144755862653,238.09949463931844,238.86888450942934,238.85990117769688,239.70460942853242,239.0698717967607,240.02853845991194,239.3451681821607,240.02923032222316,240.1712500466965,240.5647241170518,239.99312047008425,239.3863527700305,238.42651347769424,238.6050368277356,238.52158484933898,237.86091634817421,237.53686548024416,237.40391294891015,236.7366970242001,237.28756575565785,237.0958515284583,237.17123080184683,236.3669525734149,236.56644148286432,236.6366021297872,237.43755078315735,236.91588132968172,237.4736232967116,238.17173635400832,237.43912148987874,237.78184152999893,237.04807615699247,236.4190060365945,236.79461451387033,235.92460093088448,236.75578017672524,237.05560831027105,238.00527670467272,237.6722128391266,238.13402866153046,238.28775521647185,238.98564611608163,238.30137175973505,238.1042846078053,238.2965190145187,238.44819044368342,238.75265008257702,238.6140976161696,239.4942986201495,239.13350126566365,238.45562082668766,238.42364438110963,238.9856467731297,238.83901838120073,238.51726154470816,238.27996534109116,237.84642764367163,238.61635902244598,239.4522755383514,239.5924551631324,239.5589154693298,239.62467551836744,240.6097044828348,241.340473680757,242.13989623263478,241.37983677070588,241.8802563427016,241.94688518391922,241.4372538025491,242.30032041482627,243.192330700811,243.11000474728644,243.68395724100992,243.83938609156758,244.21894494304433,244.60713455546647,245.07149434275925,244.90347617166117,244.92303598392755,244.94573957566172,245.59568976098672,245.26123267179355,246.16005520289764,245.5125377587974,244.5680365958251,244.2696238933131,243.9042091523297,243.81429542507976,243.9248990570195,244.75714661367238,245.24848621478304,245.855696934741,246.50248725758865,245.7055368530564,246.44130668323487,246.01016152556986,246.7148140897043,247.27538727410138,247.75757267000154,248.17952061397955,248.49072261713445,247.57089405180886,247.16232173517346,246.71131047001109,247.26057252660394,247.8063771831803,247.88657932356,248.55090645933524,248.25542807485908,249.2496175938286,249.22055166959763,249.46809710608795,248.48977975035086,248.51490441476926,247.58328861324117,247.90621339343488,247.8117002202198,248.1387388566509,248.5310416808352,247.82239485764876,247.09654020611197,247.74494882905856,247.9004474459216,247.7359241428785,248.63105627708137,248.973247485701,248.1647588685155,249.04233862040564,248.4919753903523,249.10771171096712,249.85471821995452,249.5341887786053,249.41188655933365,249.90715656848624,250.56830328516662,250.69223985960707,251.34884585812688,250.85312779108062,251.77281738212332,251.11356894951314,250.29918365646154,251.2902104225941,251.39002510905266,252.16085001640022,252.2861326704733,253.09760338440537,252.18371837912127,252.14782314980403,252.1346911136061,251.75860602548346,251.71886455686763,250.86938915401697,250.43495445977896,250.81370311742648,251.01941508008167,250.27768638776615,250.91347335278988,251.04669063258916,250.8981706588529,250.02242250647396,249.68009797250852,249.48144846456125,249.91033908119425,250.47744604712352,249.80425027944148,249.96220818534493,250.2960024732165,250.17380095785484,249.22140266001225,249.4189132116735,249.49133560573682,248.6163627752103,248.21739402692765,247.43239867547527,248.41457182867453,248.6985319731757,249.5720819910057,248.62894992157817,247.80822685780004,247.87418102798983,247.8444809122011,247.50867080502212,248.12483552563936,248.95898585114628,248.9746801648289,248.17174651101232,247.58877252181992,248.32176291756332,248.83622291032225,249.65988415014,249.50930885178968,249.05404174514115,248.41719192592427,248.19676709081978,247.6230719415471,246.82589291594923,246.05287187965587,246.9996979366988,246.58098507579416,245.9104063315317,245.01064800657332,245.26700448524207,245.88266568956897,245.70102225942537,246.08076345128939,246.87143095955253,246.87098403368145,247.22328202519566,246.61628551222384,246.784323384054,247.39299871586263,247.94043528754264,247.38230214640498,247.8810059609823,248.40315777761862,249.19654890382662,248.78025989001617,248.6204281928949,249.29830958275124,248.42016284447163,247.61487558111548,247.51662014378235,246.92827960615978,246.8802498956211,246.58775356737897,245.70973627036437,245.38771446840838,245.05208585597575,245.60432399669662,245.1361354016699,245.63976734969765,246.58482990320772,247.47211877908558,247.50875794887543,247.60556727880612,248.0543563514948,248.63291595038027,249.06495420169085,249.4142150063999,249.6346090096049,250.26616669259965,250.1968012591824,250.61120397830382,251.13955060904846,250.27805793145671,249.35526106879115,249.55685597704723,249.95620613917708,249.87069235369563,249.31168758217245,250.3069219700992,249.4720192849636,249.16405003657565,249.447312601842,250.056724708993,250.2492596223019,249.4489911594428,250.24773275246844,249.27695658616722,248.80560414399952,249.78894348954782,249.78358253929764,249.63020756235346,250.5057392916642,250.91506118047982,251.45749186351895,250.4895515232347,251.1299255648628,251.99196838913485,251.54726721951738,252.37751439772546,251.80940064089373,250.9144094469957,250.56349768210202,250.09050132799894,250.06520158378407,249.1728442190215,249.46638171561062,250.11377590103075,249.40532297780737,249.76512437546626,249.6730832979083,249.7843017289415,250.36395166022703,250.66908084088936,250.48292404366657,249.5640003187582,250.46635914687067,250.69075172394514,249.79353548912331,248.84727177908644,249.14616821240634,249.57260517356917,250.43990650726482,250.79815729428083,250.68367472523823,250.68659992096946,250.58810823690146,250.1860357169062,250.3806322561577,249.67331749992445,249.61058995733038,250.2851572521031,250.2724908166565,250.1510556009598,249.2994346022606,249.57655368279666,250.0042257043533,250.4525789776817,250.6472593243234,250.46802277769893,251.28249836340547,251.34060109825805,250.4166359314695,251.40383350942284,251.67270965501666,252.3425648440607,251.3932214458473,250.58885845541954,250.66070554452017,251.25727822026238,250.93595119705424,250.3215603157878,250.11714890506119,250.2933724205941,250.83803392667323,251.38081294158474,250.8560955375433,250.4132507792674,249.68882626947016,249.30313915526494,249.8266742406413,248.93351765023544,249.43217697320506,249.24696071259677,248.40402493951842,248.8152652499266,249.54852126026526,248.7659767321311,248.21643336350098,248.06561778020114,248.7865742687136,249.02788220299408,249.51971595641226,250.22346321074292,251.04121618904173,251.71268582344055,252.51026836084202,251.74025479704142,252.09222421376035,251.57489557284862,252.19607094256207,251.3165964744985,252.15447697322816,252.37255446845666,251.6013242281042,250.78594037611037,249.85380249563605,249.81831321725622,249.03552435757592,249.25403753155842,249.47056079190224,250.23757098754868,250.15423024399206,249.83179555926472,250.0673236171715,250.3319082041271,251.24251500098035,250.53678486775607,250.6803468442522,250.0927534638904,251.04012984829023,250.91124271554872,250.88105101324618,250.38314626878127,249.43384655332193,249.5995727898553,249.06085528386757,249.60885493457317,248.99495766265318,248.69855616195127,249.03964162431657,248.448630428873,247.57004057848826,246.8756289272569,247.08813395816833,247.5458501111716,248.17516121128574,248.89395924285054,249.17937092343345,249.70898905862123,250.02823966694996,249.84640981070697,248.92442361218855,248.87162278033793,248.35410489561036,247.52785105118528,246.9217978278175,247.23271937388927,246.82476794859394,246.8611738937907,247.16084579657763,247.90386296482757,248.07719487231225,248.9108733870089,249.57846845733002,248.97457694355398,249.28160190070048,248.4414430069737,248.4465423147194,248.79108608840033,249.665314655751,249.26104188524187,249.88127078022808,250.86506869271398,250.6482088100165,251.01139505859464,251.76879800576717,251.5599296898581,252.13786643277854,252.09790312685072,251.64329031994566,251.6813821415417,251.47030219249427,251.01993818115443,250.3805419197306,250.65726963989437,250.04680162714794,250.06962469266728,249.67443966167048,248.85747885983437,248.18682971503586,248.8310138033703,249.76316637033597,249.12308664247394,249.0063984664157,249.75453326664865,249.22097005462274,248.34912662906572,247.46793508157134,247.1871872791089,247.4289274122566,246.60151768568903,247.44699704367667,246.80507759470493,245.97034655930474,246.08554495545104,246.70824311720207,247.62674305960536,246.82027106685564,247.17246557585895,246.74183414690197,246.75169779360294,246.36009283689782,245.3674352746457,245.02295832848176,244.8281137975864,245.0838917051442,246.05131584452465,245.859421226196,245.20258313696831,244.43720545759425,245.39888799237087,245.6548048905097,245.9931511762552,246.9273434970528,245.9770180271007,245.69243452744558,244.84294690797105,244.863464565482,243.906128521543,243.7696073623374,244.4781183078885,243.93721389677376,244.84789703926072,245.01851361524314,245.9418654376641,246.4318508519791,246.67526301695034,245.90998535603285,245.3223699661903,245.22505461703986,245.29672916280106,244.89329597819597,245.48873084131628,246.1540601598099,246.7485013846308,246.82120984466746,246.07074771495536,245.60641112551093,244.81297031696886,244.0662361541763,243.34096051892266,243.8521856861189,243.6329371901229,242.80854405695572,243.73716482287273,242.7884451453574,242.12134844902903,241.87186813773587,242.7221309156157,242.7827018960379,242.5604686564766,243.4113975786604,242.78379408782348,241.8653965620324,241.91794779198244,241.778509226162,242.5714720855467,243.5653407056816,244.53928928589448,244.8041892736219,244.31780561432242,243.8207473042421,244.48922530887648,245.25244538672268,245.668632987421,245.38539843866602,245.0761024300009,245.11816121451557,245.4009509519674,244.81865546805784,244.1550661767833,243.75661645270884,243.9623279068619,243.84419355215505,243.40339559782296,243.10294674756005,242.46177355293185,241.87597026489675,242.0860562142916,242.52294057933614,242.75100560626015,242.09758383687586,241.71554233599454,241.7197575760074,241.14446104643866,241.55629671830684,242.02523917425424,241.83092791680247,241.86063009360805,242.74172267317772,243.1791654280387,242.50556877441704,241.7336100069806,240.8697828729637,241.31300910562277,241.08070333860815,240.5190185541287,239.74978754203767,240.00137038249522,240.38373244693503,239.54502837779,239.4548694016412,240.28613771917298,240.18718473659828,240.21051572123542,240.09845395572484,240.34835299104452,241.04334239801392,240.89933348400518,240.14073899248615,240.70890840189531,241.40601713676006,242.09481784282252,241.11651097983122,240.86251164972782,240.9195037363097,240.0028438512236,239.7954399897717,240.3498350023292,240.25073080835864,239.82183170272037,239.39601621916518,239.60022313287482,239.65698189893737,240.628299549222,240.5779821802862,240.26109704840928,239.70136066665873,239.9132353849709,239.2002469068393,238.55567981954664,238.46480131754652,237.876473587472,238.50495595112443,239.0700583779253,238.32936827559024,238.3139794897288,237.47245900752023,237.54675291199237,238.052839724347,238.993780806195,238.21017912076786,238.46191983949393,238.97378940694034,238.60403351252899,237.8171474095434,237.8079729322344,238.15515164658427,238.65833902964368,238.8201959389262,238.4313981779851,237.74513107724488,237.60621275613084,238.54219623981044,238.79494409868494,239.59273895528167,240.05951619008556,240.03272043401375,239.7542261038907,240.216508673504,239.83232094766572,240.53588156122714,239.82359144231305,239.55950941005722,240.4977408000268,241.0878374367021,240.8960847798735,241.30398927535862,241.3485380783677,240.99856770737097,241.71118353679776,240.85440451465547,240.53851854754612,240.4467220250517,240.44583689887077,240.0539498012513,239.78875195235014,240.20691121928394,239.91512926202267,239.68993540480733,240.67800369253382,240.81743912631646,241.01226278254762,240.86829078709707,240.20569997979328,241.0292014782317,241.92790551669896,241.01996590243652,240.47428365657106,241.1876200842671,241.3970386106521,240.54657042305917,241.5367019670084,242.0882728183642,242.23585300007835,241.5933608287014,241.08939083712175,240.61483818339184,240.9499564729631,240.29426346207038,239.6494380007498,239.91629241826013,240.76044318731874,239.94290087884292,239.90242062229663,239.5432209968567,240.3072241116315,239.48968590516597,239.69558745296672,239.45161650516093,239.94421431049705,240.21475376887247,240.01625035051256,239.07961196778342,239.5556458379142,238.93822033377364,238.745625522919,239.02645262656733,238.71609824802727,238.8741338411346,238.49374595517293,238.0753539497964,238.03538684919477,238.77574547659606,238.39760935679078,238.47934493469074,238.304094591178,238.4949391032569,238.48894659755751,237.64043225999922,236.74548850767314,236.36179903754964,236.06909834267572,235.5894810478203,235.62884895224124,235.7139020343311,236.57521055731922,235.67512774467468,234.84625027375296,234.1517601571977,233.843494432047,233.17679672362283,233.22045973828062,233.21537581738085,232.84308349480852,232.91101059503853,232.60108650568873,232.42781959893182,232.6677894210443,233.3075115364045,233.45377052109689,232.51151149580255,231.99983280943707,232.61845816578716,232.26601544301957,231.6140522933565,231.60778061533347,230.7162795891054,231.2678275210783,230.77324340678751,230.5473953797482,230.29848155425861,230.45226570498198,230.10832920949906,230.19941750261933,229.23562290333211,229.79704779293388,230.63990936707705,230.74772090418264,229.7844459200278,228.89356565335765,228.31794682797045,227.5006609428674,226.89949655812234,226.09805577388033,226.61682918528095,226.2250102935359,225.8797059226781,225.55264078779146,225.24994151946157,226.00581526895985,226.09440781362355,226.45273911440745,226.82922317553312,226.90777713339776,225.99487431673333,226.75351163977757,225.91344024660066,226.8381153610535,226.51063570100814,225.5928842537105,224.67073299223557,223.89725169539452,224.8102957783267,224.11525004683062,223.88921142881736,223.06125204777345,222.1771976267919,221.62227193592116,221.0986468764022,220.31398800294846,220.32883781194687,220.39732299931347,221.3514514323324,221.13058219430968,220.28612412884831,220.99792384821922,220.62882536416873,221.55853914422914,222.1950856675394,222.5205860300921,223.46597077930346,224.39495870377868,223.98581896256655,224.57918433565646,224.86414080718532,225.28859744640067,225.54228339483961,226.239252878353,226.76987683866173,227.55242942692712,228.0031583858654,228.052473757416,227.11978843063116,226.6120836432092,227.2165168817155,227.85513170529157,228.70977431349456,227.95610004104674,227.51919732615352,227.1068010237068,227.09673573682085,227.79131999332458,228.70047650765628,228.53021861286834,229.34757724637166,229.45311985118315,229.19136859849095,230.08892836375162,230.30117005249485,229.85561216063797,229.88571865065023,229.349599477835,229.39872046606615,229.57253986457363,230.01985407900065,229.45314539177343,229.9787329346873,230.3331361329183,230.5876117576845,231.07838691817597,230.85601811436936,230.34253246570006,229.49837908195332,229.9833385394886,230.70003020809963,231.65402396395802,232.15127248270437,233.04636364849284,232.1675396761857,232.65619526803493,232.86979584628716,233.29851756850258,233.37938982760534,233.48033143067732,233.84273767331615,234.2186424350366,235.09754132991657,235.59314926108345,235.71847951831296,235.0957700642757,234.95170352607965,233.99170134495944,234.51825325423852,235.1032349099405,234.1875343043357,233.31965916790068,233.91588842868805,233.1427108780481,233.3089260305278,233.85433719633147,233.00363700231537,232.02700934186578,231.3734945016913,231.84318197891116,232.13414826756343,231.5647915233858,231.8253194373101,231.96482933312654,232.73842304572463,233.19465836370364,233.65479638054967,233.3675323780626,233.62523593846709,233.0487480321899,232.27485675737262,232.02132983738557,231.23646284034476,232.07790292194113,231.9659689925611,232.69475413905457,233.38935652002692,233.05121251568198,232.17600329918787,232.64022737788036,233.48364587919787,234.2618481395766,233.8948746076785,233.5089495354332,233.88454568805173,233.01218355773017,232.9472008794546,233.679415514227,233.5292051588185,233.65370860509574,234.00515595264733,233.34782427316532,233.50370452785864,233.7866832613945,233.0321606346406,232.52364727575332,231.86650236463174,231.27362934313715,230.61669241357595,229.70479598920792,230.59508693544194,230.1232940214686,229.97925696289167,229.96940189087763,230.2946857791394,231.1237064874731,231.22551925620064,230.23922004317865,229.60885269474238,229.50082927336916,230.1774600329809,229.6846479815431,228.84121978236362,229.04517129343003,229.79956803610548,229.19410464307293,229.8532133307308,228.97318063210696,228.2472482295707,227.65821700217202,227.58062377991155,227.20946684665978,226.60352327674627,227.15161933097988,227.57219000114128,227.46648129774258,228.45442120404914,228.69843849679455,228.36968733603135,229.15479110507295,229.5884065637365,229.797300523147,230.55121630057693,231.39803748717532,230.84729389240965,230.54340093955398,231.25133862067014,230.84979476127774,231.2894698572345,232.24344624998048,231.79816984105855,231.1004696409218,231.6657947069034,230.7190389749594,229.9058632403612,230.16485471231863,230.2827623509802,229.83503092313185,230.49153575487435,230.08486444037408,230.0245820330456,230.18272744538262,231.15017363708466,231.96070119412616,231.1039123358205,230.25819576811045,229.7187927532941,229.3419860061258,229.5326519748196,230.02130033867434,229.49521973729134,229.4393150578253,228.70629695383832,227.8182881353423,227.84903887286782,227.70016738167033,228.16146814543754,229.10305688437074,229.00520423986018,229.16580137843266,229.7565558166243,229.76153838261962,229.36570969922468,229.51220179442316,228.97774695558473,228.9808555142954,228.3387179421261,227.53163958713412,227.50353466160595,227.85674490127712,227.52544886618853,227.28016977244988,227.07601943332702,228.06048621656373,228.58993860241026,229.32169323414564,228.8965376811102,229.70197566226125,229.87941447552294,229.1593581852503,229.84781543258578,230.47039586305618,230.26723013771698,229.43199698161334,230.29561575781554,230.1669168425724,229.27353072585538,228.83467940054834,228.16789130168036,227.96237063314766,228.64446913823485,228.76581590715796,228.42914729798213,228.49312248406932,228.64054046198726,229.37050900468603,229.89633665978909,230.04538185428828,229.26103053428233,228.43853837810457,227.63430122239515,228.134455725085,228.093487305101,227.75765450811014,227.22931770142168,227.06558807613328,227.3494619205594,227.5974318855442,227.43193541001529,226.74648109124973,227.09944025194272,228.02291320357472,228.82989644166082,228.6766391498968,229.5866000391543,229.77013937709853,229.55394007405266,230.02182131633162,229.86114737624303,228.93639878043905,229.7086911117658,229.3763005756773,229.1932963784784,228.6175280935131,227.7377821211703,227.16653890209273,227.2980118296109,228.16842558421195,227.33291369490325,226.39108742959797,225.41130135627463,225.1675583748147,225.34061213722453,225.71866171481088,224.919855623506,225.21220336062834,225.01978756766766,224.70188047364354,224.88784173643216,225.8624109365046,225.2345174481161,225.07413327507675,225.4188904496841,225.05586914205924,224.286537040025,224.3683089800179,224.3653109204024,223.40590461995453,223.28407775470987,224.28336039278656,223.78868646128103,224.1923776869662,223.94242230663076,224.48146902676672,223.5821154708974,224.34844932891428,223.68271212559193,224.31506950361654,224.35737565392628,223.3665093407035,223.24076031288132,222.26645374950022,222.9165193848312,223.67560187913477,223.7260680515319,223.54480644594878,223.3171229241416,223.49449136247858,223.47609539423138,224.24659466324374,223.66314119519666,223.9639129433781,224.06596920499578,223.69827148737386,224.5495628095232,224.26671073352918,224.51821955712512,224.57667543832213,224.23965909145772,224.8753483723849,224.62598977517337,224.5300273145549,224.2743678423576,224.36066671228036,224.47612276719883,224.31558105908334,223.5578642738983,222.66826370172203,222.31359250703827,221.84256050083786,222.0614319583401,222.12567839305848,223.08594554802403,222.87245157780126,222.59670568676665,221.85626546805725,221.5156648689881,221.9490568144247,221.08372641773894,220.70881810504943,221.20567764388397,222.01095452532172,222.86696306616068,223.54465033765882,223.46971417870373,223.28270661830902,222.49540962465107,222.48733371589333,222.68866495182738,222.28013300150633,223.21405642433092,224.08342781383544,223.2716869986616,222.7957225763239,223.52420941833407,222.75433179410174,222.67931227432564,223.45059338351712,223.0068269171752,222.32894152542576,221.53662628075108,221.6577727398835,222.54216604260728,222.08893227716908,222.80378567241132,222.21852889843285,222.21123378025368,222.65681655704975,223.02038733195513,222.96996936015785,223.4296943200752,222.87728885095567,223.11085032252595,223.84961455874145,224.82284687506035,224.13888700073585,223.27597331581637,223.52144904481247,223.8158416301012,224.24552135029808,224.3946727225557,224.58455546107143,225.28776093246415,224.83860114077106,225.7468753773719,224.79088731342927,224.20497005572543,223.61945081921294,223.28038007579744,222.64942074520513,223.4980104160495,222.57059896504506,223.21472810953856,222.62780918041244,221.99875027965754,221.88356662727892,222.3704668711871,221.60669266339391,222.567516959738,222.6670005535707,222.0450029191561,221.56991425249726,221.57419298542663,221.52454065997154,221.7419373379089,222.37471643043682,223.35477813286707,223.9512697556056,224.787943307776,225.1818927139975,224.65493903914467,224.11676492216066,223.25491695385426,223.5404550153762,224.08109658863395,223.3989873426035,222.85731453634799,222.03070133784786,222.7287274026312,222.1742616170086,221.49040831578895,220.5394634543918,219.5960808438249,220.44537879386917,220.16547511983663,221.01827008929104,221.76006593881175,221.97841813461855,222.19427792914212,221.6195508716628,222.1360841919668,222.40683741355315,222.53897576592863,222.92369106365368,222.13306068908423,222.19992053695023,221.4052906385623,220.9854588638991,221.19596709217876,221.03454637294635,221.66273096948862,221.57156387902796,221.72548210294917,221.04682010412216,220.73245625942945,220.30765759479254,220.5268478989601,220.45968975545838,221.36027768813074,221.80330730322748,221.6195482481271,221.259926780127,221.4390088636428,221.83771790284663,220.91772526083514,220.3878137296997,220.28872633120045,219.88404205720872,219.03267225436866,218.69283895753324,219.25482602184638,218.97394021134824,218.647613666486,217.872018720489,218.3678922066465,218.50880318088457,217.78016049740836,217.56170498020947,218.2938060280867,218.4602165967226,218.15176321333274,218.34640718670562,218.09917942807078,218.2877883920446,218.6284928121604,219.11746437614784,218.2048474806361,217.56108411960304,218.3206943818368,218.2601531613618,218.9465962643735,218.6350478217937,218.74744970863685,219.65046771569178,219.91182039445266,219.63634521747008,220.2215576916933,220.83895625174046,220.1461430019699,220.01525243045762,220.8024577102624,220.1042924192734,219.69249262055382,219.42784623382613,220.21452011773363,220.31606877595186,220.23424819717184,219.45746251149103,219.86561387311667,219.7879944513552,220.45359489740804,219.78181931143627,220.42508683586493,220.87165210349485,221.1351670185104,221.69223958998919,220.9400011333637,221.18534931913018,221.0294289761223,220.12237726338208,220.34858722239733,219.39100943459198,218.8662865604274,219.54341828031465,220.22773664211854,220.94780899770558,221.7157400250435,222.38854290405288,222.49906685994938,221.91794737009332,222.24303835444152,223.04700250551105,222.25162634672597,221.26144735049456,221.73836611350998,221.68758546933532,221.73824233049527,222.7021043980494,222.7634409442544,223.7192871919833,223.18358595203608,222.69862536201254,221.810173607897,221.18649013433605,221.35863121645525,220.4930676096119,220.95104712387547,220.27471511112526,220.18781347433105,219.96832041349262,219.88388724485412,220.25625459756702,219.74478686135262,218.78582611400634,217.93577688140795,217.13815323077142,218.08029126981273,218.87662312295288,219.55875861411914,220.44668952468783,220.16240776795894,219.18033543601632,218.93913884274662,218.60041150916368,219.42858714610338,220.3013686714694,220.65226806141436,220.88841490773484,220.76086230482906,220.47434331383556,220.8030578806065,220.72193515766412,219.74933437723666,219.41396262077615,219.73166122473776,219.48243564320728,220.4105196101591,219.85745718702674,220.59397929068655,220.49652393674478,219.95788880623877,219.3974197693169,218.9906798582524,219.19371610647067,219.87443631282076,219.12598660681397,219.83798783738166,220.01173209864646,220.68632780201733,220.4373084665276,220.34761071857065,219.69897105218843,218.9670485695824,218.07789036724716,217.89407895039767,216.97755122417584,216.54586355527863,215.67550861975178,215.05636676913127,214.2402177178301,215.06721423054114,215.63919387757778,215.7402445655316,215.30731903761625,214.372044891119,214.75435505155474,215.45313505455852,214.45661542005837,213.91770159592852,213.0220014117658,212.69033981254324,212.6948914094828,212.7471340741031,212.3346674107015,212.23878126684576,211.87223932659253,212.5129064982757,211.7622029101476,211.99136176193133,211.00261888327077,211.21923486841843,212.19443968869746,212.88560509076342,212.32308111619204,211.62926032859832,212.26438797125593,212.94305951148272,213.8932068743743,214.18916435306892,214.85010702442378,214.49758752528578,214.53812719415873,214.52961083920673,214.95908232638612,214.178308960516,214.62582965474576,214.27997475257143,213.46006641164422,213.80950430501252,213.38643988920376,214.01626800792292,213.2527945949696,212.89626915892586,213.8787641339004,213.01019572420046,213.1356917261146,212.760204449296,212.58838180592284,212.17111890902743,212.06229433976114,212.72331604082137,212.4837951096706,213.350986528676,212.75732889352366,212.62741694692522,212.57803782168776,211.89965167688206,211.7451744810678,212.20167359896004,212.27134035434574,211.568913185969,212.4843558347784,212.23031361447647,211.9388703070581,212.27776904264465,211.71934207109734,212.07131649600342,213.06421982031316,212.76941414782777,213.14921063184738,212.34383132122457,213.34035428939387,213.8590006888844,212.8800154728815,212.38143275678158,211.5029925238341,211.87717098044232,211.24929009797052,212.00233209040016,212.0567933069542,212.463693740312,213.1411284324713,213.72244032053277,213.93851986294612,214.68327796226367,213.96453608060256,213.70923663303256,213.53562584146857,212.89375710161403,212.7559918067418,212.19190534949303,213.13502386584878,212.21131252590567,211.48269956419244,212.19946855353191,212.04019672749564,211.62120557809249,211.43022145843133,211.01292374031618,211.60100766830146,211.24239145126194,210.4149773484096,210.3507426623255,209.7429316919297,209.2804186702706,209.757211079821,210.25753448251635,211.183224638924,212.04255355149508,211.0763844549656,210.18158828420565,211.1589029324241,211.74434122024104,212.1644300208427,213.03775888402015,212.84956511622295,213.56447839317843,213.5802763653919,213.29033645242453,214.1518574403599,213.85742996726185,213.18753966363147,213.58346136612818,213.83527579111978,213.1194000346586,212.27884790766984,212.97285595117137,213.85479684872553,214.5901446645148,215.05278562009335,215.5113061890006,214.72927733324468,214.41339333634824,214.0335029619746,214.21193686593324,214.32216247869655,213.9784905668348,213.30567442951724,213.43577062245458,213.35290446085855,212.63548322115093,212.81309543224052,213.23167514288798,212.95550144976005,212.83966689696535,211.97772176656872,211.88485782500356,212.46115253074095,212.1424819068052,211.2721762410365,212.11373618524522,211.17972888890654,210.48546527512372,210.61482108943164,210.35275605041534,210.9931047335267,210.69107097387314,211.0580235091038,210.80148964747787,211.5779163390398,211.81575740361586,211.5011958386749,212.14900219021365,211.1888087829575,210.44359110016376,210.71174143254757,210.0688994168304,209.42576035764068,208.69824890652671,209.06033223681152,209.73327447939664,210.3385145603679,209.9436276042834,209.49878295930102,208.96978853503242,209.68106111325324,209.9415906998329,209.15282521862537,208.18210997153074,208.02967375004664,208.53536540316418,209.45884005678818,209.12634353386238,208.16419051401317,208.67032094625756,208.5099218855612,208.85994270863011,208.1850628084503,207.7905399184674,207.0779886515811,206.9146198485978,206.4766300865449,207.0302072414197,207.06184136355296,207.23925483459607,206.6208857577294,207.29381580278277,208.25519988220185,208.0423730094917,207.48654941283166,206.5056307069026,207.18746592849493,206.4577190876007,206.70553982490674,207.1290935035795,207.06421412387863,208.05442229891196,207.3904100661166,208.1252169944346,207.26619865046814,207.99528967170045,207.63405665941536,208.59282467886806,209.08187915198505,209.01249061664566,209.16183517314494,208.22761582909152,207.35089456196874,207.05988088436425,206.24070712085813,207.0945769296959,206.39781348546967,205.59915127092972,205.42638522107154,205.47274769982323,205.23828714806587,206.14744503237307,205.17869161535054,204.69772353721783,204.04877404356375,203.2462018239312,204.21948795206845,204.2735881274566,203.29674657341093,202.56445195619017,202.3782971445471,201.5410179416649,201.6295976601541,201.86178035195917,201.62973502930254,202.1440875059925,201.3997638602741,201.3923822781071,200.51569171668962,200.83325076056644,201.36087321396917,200.37345042498782,200.40279330685735,200.67671969905496,200.97552974754944,200.93488191720098,200.24019995192066,199.30154494615272,199.64284407999367,199.6339835212566,198.92846317775548,198.19107619812712,197.7568592922762,196.99654392711818,196.5067731984891,196.37737840414047,196.33534613018855,196.0153743363917,196.95225561456755,197.47648238763213,196.91527696559206,197.27139947982505,197.83411728404462,198.83337267348543,199.37154949689284,199.1933648516424,199.5757259177044,199.3009421993047,199.5820818147622,200.38896623346955,201.2038323529996,201.70586251886562,200.87132159573957,201.47316534118727,200.66665342915803,200.47693565441296,201.27679055277258,200.8340404285118,201.04575834982097,201.76368460431695,202.05613255593926,202.23413588199764,202.24646439449862,202.8911729566753,202.51108688069507,201.65143629861996,201.63735658535734,201.27161013754085,201.84879272663966,202.66803536890075,202.96658687014133,202.82534632226452,203.27220511436462,203.53063749335706,204.20061071962118,204.08736234763637,203.20871535968035,202.6633201353252,201.82149860356003,201.19800080591813,200.2344061434269,199.88096497487277,199.18381541129202,199.94966420717537,200.61663111578673,200.71066806046292,200.00887596188113,199.88368615088984,199.84172946820036,200.11961150355637,199.97875737957656,200.42942537134513,199.5890643117018,199.80012856889516,200.47492178156972,199.8526965272613,200.3440122953616,199.79578311322257,199.10248910821974,198.73293549381196,198.92659675888717,199.78434160770848,199.01602825755253,198.9412632137537,198.8237732066773,198.73320157267153,199.29855675902218,198.88213442405686,198.6534040416591,199.09729352639988,198.4174736654386,197.79552717041224,198.55599965713918,198.64276160579175,199.6023895270191,199.33241418935359,198.9888833439909,199.73398690717295,200.23109781509265,199.7007127390243,198.7944582705386,197.82320856116712,196.86587056005374,197.0165794659406,198.01533326180652,197.9983316459693,198.15223143715411,198.0461458750069,197.38423208193853,197.19005705974996,197.52012905059382,197.39873118698597,198.0053817522712,197.88366808043793,198.5196043024771,197.97559028677642,198.45436760084704,199.13068459182978,199.81846544658765,199.04526133323088,199.7882610182278,199.72468076320365,199.60867691366002,199.78305871086195,199.34028103249148,200.06086741248146,199.84391605993733,198.9969880860299,199.4463907238096,199.4929661923088,198.6309117297642,198.6844839695841,198.5037316973321,198.86962334159762,197.88733564922586,197.21439417311922,196.89115879265592,196.412063639611,197.18609858909622,197.77146616578102,198.44815238798037,198.85393503680825,198.30045828362927,199.2476533926092,199.9109192788601,199.89841030724347,200.0662594609894,201.00715636461973,201.19273048313335,200.69097202969715,201.29476602980867,201.8599633970298,202.48783803265542,201.62619579629973,202.60498885251582,203.46600327873603,203.3637177553028,203.97260729549453,204.62752630840987,205.533199490048,205.02242207201198,205.3756009414792,206.36609991453588,206.44573198677972,207.1422999133356,207.59579944657162,207.54029054939747,208.29558666097,207.74840879486874,208.3900020495057,209.13573065865785,209.34718805225566,209.42804829543456,209.42126678023487,208.76724973600358,208.41641636798158,208.49578802846372,208.56310141738504,208.29061550600454,207.85870076809078,208.06031968444586,207.31819163355976,207.41370574897155,206.87675832491368,206.56297685112804,206.04123063664883,206.64558663824573,206.6166849299334,206.74392575584352,206.65317596541718,206.05991196027026,206.6571175325662,206.28767171921209,205.7993420995772,205.5636175237596,205.69762957980856,206.46750960871577,207.05019797803834,206.8795630587265,207.26753484783694,207.73114487482235,207.3539503305219,207.1605423502624,207.9764254190959,207.35351733630523,207.64443797338754,206.8456036648713,206.7559442757629,207.32209188351408,207.47946668881923,208.16725261230022,208.26883109658957,207.9626275897026,207.24436667189002,208.06729255849496,207.24649036861956,206.91449324414134,206.93224553624168,205.96824190812185,206.23388574970886,206.1398724555038,205.4383949432522,205.67128181410953,205.29695425834507,205.36512398766354,205.03592494456097,204.76914948550984,204.78657155577093,205.14277716819197,205.65083436481655,205.62145967362449,206.38222053460777,206.23650182178244,205.4968791534193,206.1604981678538,206.24595033098012,206.81312299519777,207.0102467346005,206.33803271548823,206.00590786337852,206.44549376005307,206.62155554117635,206.23836040496826,205.59266449837014,205.16685515735298,204.19869014248252,203.59734887303784,204.15122787747532,204.58522676117718,205.39017252903432,205.29747617151588,205.25501916417852,205.03150942735374,205.0073868976906,205.850362917874,205.59946151496843,204.61347931530327,204.86150698037818,205.74841732438654,205.82150864973664,206.31846186332405,206.297275015153,206.47831972502172,206.04585200129077,205.39225904177874,205.0317428521812,205.09276746213436,204.53236367180943,203.8692882573232,203.46380039164796,204.4110372858122,204.95799912000075,204.90335624618456,204.87718156492338,205.36006426857784,204.42140533123165,204.41751537984237,203.7001608624123,202.74703493062407,203.18503614980727,202.191390582826,201.44356107059866,201.52004209300503,202.26007448788732,202.08516122493893,202.58271191455424,202.5530454213731,203.03710431000218,203.51923116575927,203.52230580477044,203.2441011602059,202.8743367283605,203.2431391356513,203.96401409758255,203.48473388934508,202.62891738349572,203.17440783511847,203.68115434609354,204.37769398186356,205.0427799555473,205.93112472817302,206.10504761524498,206.33086623391137,206.75203982926905,207.32406729692593,208.06539569236338,208.85850186506286,208.50837378390133,208.74117660103366,207.88914203085005,207.6358651597984,206.704413598869,206.6013788022101,206.4375250064768,206.46384797990322,205.77371128695086,204.82789809862152,205.1974685965106,204.7818973963149,205.7216001986526,206.65899531031027,206.18410167796537,206.8636794053018,207.56417733430862,207.97891474934295,207.78077238751575,208.00554526876658,207.64902723114938,207.46779042854905,207.85280403774232,208.3004386476241,207.3439973415807,206.5550896571949,205.86003766860813,205.44155215658247,204.96466668788344,204.54610772943124,205.2469461550936,204.75661541242152,204.4122468070127,205.02298859972507,205.97615349665284,205.22247408283874,204.73887083260342,204.18980922736228,203.89580957219005,203.69131530215964,203.03485738532618,203.23192214639857,202.37136550154537,203.13650016766042,202.828472295776,202.35049976268783,202.0397032527253,202.4438396282494,202.71495859650895,202.67843279242516,201.86623528413475,201.25570766441524,201.51379222422838,201.2725566229783,200.8016270659864,201.1156204030849,200.5741274273023,199.8132487628609,199.11847899714485,198.76976216910407,199.42082155728713,198.95948336692527,199.2305521243252,199.22957846987993,199.86302242800593,199.72343039372936,199.19906423985958,199.5909139555879,198.8866607910022,199.7317863330245,199.6330408928916,199.19328092923388,199.52147674327716,198.81219011591747,198.12134917732328,198.14223226346076,197.57932109525427,197.48914506891742,197.59440618846565,197.16101791244,197.89157829945907,198.34793844958767,198.8491807053797,197.9907959131524,198.25673009688035,198.6293713292107,198.32742472924292,197.82231906382367,197.17804826889187,197.65253531979397,197.99556085513905,197.1624815268442,197.69585890509188,198.59085505921394,199.10232837451622,198.4634740841575,198.9996499158442,198.94362270785496,199.58965677721426,199.103620570153,199.7654521530494,200.07627267437056,199.14176606712863,198.61358417989686,199.61228223890066,200.42988517461345,199.86487986054271,199.65079975314438,199.62265320448205,200.52954072179273,201.23199718724936,201.9159869798459,202.68430422246456,202.3978347433731,202.32011299813166,202.14005373883992,202.8269544309005,203.24154130043462,203.22014985280111,204.0436671138741,203.20433002198115,203.879927393049,204.63309472054243,204.29063572874293,204.543927018065,204.90505955461413,205.744040354155,205.02663730084896,204.73680750699714,204.12602293258533,204.04509058129042,204.23794958507642,205.09042228152975,204.37622220860794,204.9130158298649,205.24843283835799,206.10099302371964,206.16676688473672,206.91582218091935,206.283298028633,206.94900540914387,206.78663465147838,207.28945065196604,207.1262323781848,206.1444951496087,206.3059490728192,206.18730147741735,207.13341280678287,206.36907243635505,206.8853986589238,206.7344653061591,207.45716384705156,206.8208754346706,207.0368108311668,206.3738467991352,205.3942550397478,205.12271859729663,205.8013652539812,206.70791135402396,206.39468463510275,207.15755138266832,207.01373035786673,206.72287118574604,206.42329141451046,206.84854161180556,206.61305099725723,205.74340666551143,206.24540379364043,205.5475704735145,205.16323767462745,205.48508997494355,205.17825677758083,204.37809546105564,204.0177421029657,204.38523972546682,203.92421087436378,203.52542659826577,204.34556320216507,203.77466509211808,204.3632342419587,204.33162221638486,205.23810818232596,204.8975680586882,204.63712288672104,204.26005767425522,203.53527329862118,202.9338542241603,203.06551365740597,203.41910547064617,202.61229698127136,203.4702145755291,202.96549365483224,202.85153151117265,202.13449188042432,201.54519907571375,201.13486150372773,201.14626809209585,201.59592269081622,200.68009911011904,201.10608171578497,201.6820260072127,202.36070387950167,202.72592464275658,203.17663665488362,202.50730188563466,201.97505696536973,201.77713452046737,202.0500962859951,201.588929051999,201.17832853645086,201.28530569607392,200.75930026033893,200.250309150666,199.6123310914263,198.9443031330593,198.0938887191005,197.32802692707628,198.0564607414417,199.0011191549711,198.8865818073973,199.23104694858193,198.89854949247092,198.58444930473343,198.34955499880016,198.65710692852736,198.92911510542035,198.0699094310403,199.0337588568218,200.00396887399256,199.61265339888632,200.09076140774414,199.26976918894798,199.547499388922,199.6815611710772,198.79502676287666,199.69282784033567,198.90267810830846,198.56650415295735,198.02366875624284,198.71623745374382,198.85329528246075,198.41571398964152,199.01651765313,198.5010638232343,197.54121053451672,198.29456583131105,198.90931990835816,198.0005735005252,197.25045907264575,196.9154598582536,197.88229979528114,198.67458501970395,198.60604245169088,198.6986928745173,198.94289793167263,199.20538497855887,200.19694868614897,200.90779264317825,200.90460960986093,201.6166346683167,201.8692698907107,201.5724138082005,201.03865548223257,201.72802507923916,200.83196405973285,200.7271262477152,200.2954547777772,200.98178561683744,200.23760848352686,199.94988728128374,200.39005803177133,200.27256944589317,200.0877008056268,199.80557378893718,199.25461914297193,200.20184621727094,200.1169999674894,200.7903911913745,199.87780714640394,199.14991819951683,199.88583579054102,199.84118390409276,198.9472436993383,198.97479133168235,199.09191970014945,198.68570556864142,198.08796986937523,197.995634988416,198.87585831945762,198.94302422413602,199.54582429258153,200.34017749177292,200.3756379261613,201.17303273500875,202.00660234317183,202.579755702056,202.7675593975,202.20440666330978,201.92862542439252,201.20799160003662,200.4169207061641,201.11958968872204,200.14609096804634,199.1585602061823,198.20961705595255,198.18477689800784,198.5200077779591,198.70769277913496,197.81460857205093,197.64219288621098,198.01309264730662,198.62543210899457,198.30930072627962,198.99737368058413,198.64498005900532,197.65314656402916,197.54489103425294,196.59098587790504,197.57239100337029,198.0003999476321,197.536271114368,197.30950697837397,198.17758702719584,197.23155499389395,196.5654480322264,197.04337437730283,197.1424364456907,197.26411060243845,197.65614633308724,198.11211960064247,197.83269549207762,197.76687305234373,198.21423377050087,197.40153805958107,198.17255128500983,198.13525850931183,198.3362462935038,197.8478884510696,198.3756385226734,197.49108986463398,198.2159303445369,198.355131524615,198.37636817712337,197.9845415870659,197.7741762716323,197.8810607562773,198.69887344771996,198.68971868650988,198.32265740493312,198.27173351077363,197.66727027157322,197.58230487722903,198.5667710690759,197.88500432204455,196.9818850760348,196.15220202831551,195.31178493984044,195.0579762980342,194.96588923828676,194.3864852115512,194.89448700565845,194.4456445844844,193.74575294274837,194.57060567522421,193.67109872493893,193.35091319680214,192.55857864860445,192.9251125738956,193.91685296827927,193.86170272203162,194.38281367439777,193.53100617742166,194.2308876691386,194.35920692328364,194.46925052348524,194.0212210593745,193.8396416613832,194.3784906794317,194.21114835236222,194.82537028938532,195.0957699343562,196.0729091563262,197.07281562453136,197.13245302531868,196.7201078888029,196.49910540366545,196.25940902531147,195.69888227665797,194.8544979696162,194.84241115720943,195.24965498736128,194.85233719134703,194.15112017514184,194.11900494573638,194.73539349762723,194.96663812128827,195.50252789771184,195.06768357148394,195.61365157924592,196.21571227908134,195.28893514117226,195.3287935354747,195.10516010411084,194.58032500278205,194.6661388752982,195.23528556711972,194.49652426689863,194.96128194825724,194.80999932717532,195.08268772717565,194.21717913961038,193.79886485636234,194.52076889202,194.46818355517462,194.9920205147937,194.5109280901961,194.98435104778036,195.0301145184785,194.2724156160839,194.2554829758592,194.06417277501896,193.8646332374774,193.91120138159022,194.47371343011037,193.7366340593435,193.20782170025632,193.77401407482103,193.44428324326873,192.6074875164777,192.69845935190096,192.0712199388072,192.18797431513667,191.3147221552208,190.42432320397347,190.0401602005586,189.9341820962727,189.4394521843642,189.71579055301845,188.8256922760047,189.51661474397406,190.07059970125556,189.6391369746998,189.17953083151951,188.72659474564716,187.74457694077864,188.36908960761502,189.06599601265043,189.4261581543833,188.4463532520458,187.7295495015569,187.57791159301996,187.92039006808773,187.28818714711815,187.90041900007054,188.37493703654036,187.77241756999865,187.97579018725082,188.01191820204258,188.47856340371072,189.0263046263717,188.04742166493088,188.94393916334957,189.6517482791096,190.5928834467195,191.041621980723,190.73277944047004,191.274064774625,190.73340508667752,191.1217011027038,190.88747584540397,190.46214404748753,190.85869643418118,191.15841635037214,190.71561764599755,191.54172016633675,191.9209895194508,191.2038341597654,191.6436466537416,191.06929298769683,190.23398596374318,189.307753641624,188.44566681748256,189.09261612268165,188.67091433797032,189.34420295525342,189.53196789184585,189.96467691892758,189.26600839802995,190.17539030546322,189.54570465814322,189.7641803654842,188.83832525881007,189.46622818429023,189.84927407978103,188.85761538892984,188.6674580387771,189.48487748205662,189.3090395028703,189.89715830935165,190.183400999289,190.7181825893931,191.36825293069705,192.08681902382523,191.33414496062323,190.79613342834637,190.6233713524416,191.22514389129356,191.27558439411223,192.04518006695434,192.13673539971933,192.17813607444987,192.46784404478967,193.31268874648958,193.54616974573582,193.50831214990467,194.2468356192112,194.99509349977598,195.71460520010442,194.8559877378866,194.456836768426,194.499661878217,195.34136194642633,196.19128341134638,195.54811604134738,195.3059904081747,194.63468756945804,195.1810299823992,195.84244385780767,196.45173868443817,196.3770734523423,196.50712356483564,196.45659899618477,196.29050224088132,195.5250305510126,194.77454969799146,195.5905528808944,194.9635897828266,195.15531805250794,194.58537262305617,194.13167568249628,193.9002052997239,193.77799611259252,192.989163717255,193.98602804727852,194.84159957570955,194.96936731087044,194.6804703003727,193.70598022267222,193.592127148062,194.1097444058396,194.77929421747103,194.7150018219836,194.17070552054793,195.13787947781384,196.09883455233648,196.26936412323266,195.41574234236032,196.31409754557535,196.94845484104007,197.49665836524218,197.61966809537262,198.57263150438666,199.38443363504484,200.01739293383434,199.14312498783693,199.70315234316513,200.15177590912208,200.99114228971303,200.53325281338766,201.2237522341311,202.04150218050927,201.98710691556334,202.1048225047998,201.50922433985397,201.96888853795826,201.21891238493845,200.8626026273705,201.49139683134854,202.2645097807981,201.73941270960495,201.14471751544625,200.18628609646112,199.93393626483157,199.89667609287426,199.1505649620667,199.10335154505447,198.92347985785455,198.0666001783684,198.07180434279144,197.57989605050534,197.96686697285622,198.68827787879854,198.68361853482202,199.630118672736,198.96402981178835,198.274700821843,198.33943816414103,197.36780528817326,197.4163840021938,197.10687453858554,198.08416076889262,197.21011345880106,196.35247973166406,196.75168000394478,196.27635323256254,197.02892676135525,196.07982815383002,195.79006699332967,195.89310205494985,195.05129599850625,194.15988925658166,194.95631847111508,194.00238591758534,193.59114122157916,194.45668790349737,193.7532985494472,193.9591243849136,194.52121699042618,194.5348582463339,194.62322166748345,193.93028044514358,194.92302737710997,195.35513753071427,196.18445195211098,196.9283541147597,196.05843237880617,195.5858489619568,194.79730116808787,193.8286571893841,193.97001096559688,193.40191579982638,194.12289510760456,194.96546346275136,195.60686100227758,195.64121240656823,195.11734355892986,196.0982138835825,196.43673495715484,197.06599323963746,196.21408633049577,196.76653320342302,197.05673972330987,197.30998188164085,198.14922815328464,197.77448072796687,197.085719587747,196.94532118085772,197.2290251739323,197.0789827927947,196.3542054244317,196.45758791500703,196.48420504527166,196.82817880809307,195.93143319757655,195.09644339838997,194.64439796144143,194.3507846989669,194.82760579697788,195.5466214902699,195.77508156187832,195.15157851437107,194.46279145078734,195.37638209108263,196.30635877652094,196.21910719713196,195.72270053019747,195.83384328801185,195.79401611862704,196.61723088193685,197.13428137637675,197.28899820474908,197.66260490426794,198.28230766998604,198.45803704904392,197.58916015271097,196.72625098051503,196.45485840458423,195.72414132812992,194.92099077161402,194.08562017371878,194.2592502948828,194.43153237132356,193.4403818929568,194.34973611077294,193.83228722820058,193.2810532352887,193.82955312449485,194.60435578599572,194.69172963034362,193.72675678087398,193.50434622215107,192.5494756931439,192.50160214537755,192.64513684995472,193.04404621664435,192.18968317611143,192.85981397563592,192.4899781346321,192.07717036735266,191.3091464722529,190.8975715469569,191.39382428536192,191.8773108809255,192.46777409128845,192.24069003714249,191.4467587005347,190.56350248353556,191.10227081086487,191.81397361960262,192.74246312584728,191.7933731591329,191.78529521031305,192.1046326891519,192.05672416184098,192.7313732788898,192.74042220041156,193.63610140187666,194.18196290219203,194.13226299313828,194.13493499625474,194.78784014191478,195.25919316103682,195.55288084642962,196.3564209053293,196.52524321433157,197.1170801059343,196.11726394155994,195.4989213445224,194.55896351439878,193.98951196484268,193.49701214022934,194.21826085774228,193.83437541360036,193.54932912997901,192.67636418854818,192.4701276551932,191.89944316726178,190.9011108269915,191.6584381395951,191.17991547007114,191.98668642668054,191.8965854914859,191.38454954419285,191.1215614238754,190.78301985375583,190.06476355157793,189.12581392005086,189.35936776734889,188.57153579313308,189.39360204245895,190.0701622874476,189.92050927737728,190.09549973066896,189.93115656077862,189.37130261212587,189.26710932981223,189.20031783916056,188.31107110949233,187.5091678290628,188.0359565881081,188.39718179404736,189.03798428177834,188.070352002047,188.7531653996557,189.61329433182254,188.8738704798743,189.7416302789934,190.115136787761,189.2928875037469,188.58212149655446,189.33243650803342,189.10655108699575,188.9020123714581,189.76252938760445,189.66392509173602,188.77346063731238,189.45372749399394,189.06007187394425,188.73815562715754,189.2430631495081,188.64728403650224,189.39061848307028,188.43193380115554,189.31532443501055,189.89630283694714,190.16102827340364,190.59560390748084,189.93447031173855,189.1481747389771,188.40864199819043,189.15876064170152,189.18439108226448,188.30327878845856,188.19825791195035,188.84290631115437,188.4116898518987,189.22234241943806,189.9073613905348,190.90463745826855,191.6474074330181,190.92104590078816,190.36624334705994,190.80263876309618,191.52033849060535,192.47386720916256,192.1599460253492,191.72874029027298,192.57787520624697,191.8297815285623,192.80845953291282,193.31842340435833,192.8966466882266,192.46551560983062,192.1594043765217,191.3003959050402,190.58288370398805,189.8685422083363,189.1791323190555,188.2582564712502,188.64364473661408,189.60002101631835,190.07546408940107,189.4595678811893,188.58391971234232,187.8398087383248,187.01674341782928,186.49056612793356,186.09859808068722,186.61908193910494,186.9528595423326,187.8836114006117,188.65038746688515,188.28964252397418,187.70725078042597,188.55564946355298,188.39824635721743,187.95851151738316,188.04703516606241,187.2661824580282,186.77474125334993,187.098983168602,186.25220175180584,186.94831205159426,187.2065318650566,187.0758156143129,186.29891879484057,186.4336838759482,185.5147495958954,186.31128229992464,186.19013321446255,186.73821181617677,187.69527789996937,188.14198758546263,187.8455581162125,187.44252393301576,188.01286303577945,188.5414562402293,189.41736571956426,189.64509888086468,189.64829316549003,189.60894383955747,190.00373448431492,190.1707951463759,189.547783061862,190.51123973168433,190.4106862754561,190.06438884604722,189.70502742566168,189.14468843396753,188.15438381955028,188.4663249142468,188.2600037585944,189.15821618027985,189.81614302145317,189.11466247448698,188.55807314580306,189.03400496440008,189.84379483247176,190.70664153806865,191.36704238737002,191.12807872099802,190.42218556208536,190.94824454560876,190.3113664011471,191.26262874295935,191.36036044871435,191.54745705798268,191.79931481461972,192.67720609949902,192.29415530571714,191.93795278295875,191.49764736322686,191.46232643863186,191.4500287999399,192.2856061696075,193.15531553933397,193.8333238447085,193.0541692795232,193.4193063187413,193.8624469898641,193.63044216716662,193.42296688072383,193.40265069995075,192.70384160941467,193.0706750387326,193.93065986828879,194.19949342636392,193.40800194209442,192.68585110036656,192.09331299504265,192.81474348157644,191.85693092411384,192.5962671050802,193.10188634553924,192.3250147900544,192.89475436648354,193.01878263801336,193.6421801247634,193.1827253792435,193.63071850687265,193.15881003951654,193.21855682134628,194.05085018323734,193.60637426190078,192.62195932725444,193.45698669878766,194.15749932918698,194.5234745410271,195.0852458900772,195.36655529448763,194.42016337672248,195.1439266963862,194.28603893285617,194.21293703233823,194.78062992729247,194.9799652020447,194.33371711382642,194.4794309027493,193.84330604830757,193.7074292683974,193.60053426213562,193.57924013165757,193.8005556599237,194.61888430360705,194.08725996967405,193.9856905224733,193.73866299679503,192.8992199152708,192.69289064221084,193.22593274200335,192.55310761090368,192.30331882741302,192.72903197584674,191.75453368667513,192.2663358305581,191.73250927357003,191.11844995152205,190.5872846976854,190.07730881124735,190.43499224446714,191.1303500663489,191.7661822391674,192.4311372404918,191.91446246858686,192.53263039328158,192.783597022295,193.62766046496108,194.02553529199213,194.2558916574344,194.25495484750718,194.06009874353185,193.90716897463426,193.4102172050625,193.4271555780433,192.82349928375334,192.1269496595487,192.1321490192786,191.98517565522343,192.6872877003625,192.95225930865854,192.08448397694156,192.94503049645573,191.9534231973812,191.50968648446724,191.11247647134587,192.00063629355282,191.5330574819818,192.44909958168864,192.39183625532314,191.69784597679973,190.83714252477512,190.3045938774012,191.20650054793805,191.04596797656268,190.3612463818863,190.96689583314583,189.98331773094833,189.05987226963043,189.7676450908184,189.4962242138572,189.21274114446715,189.44754645600915,190.41087746294215,189.76919117104262,189.9641863987781,189.83085014345124,188.94781904062256,188.53969949809834,188.08459567837417,188.49442459316924,189.43176373653114,188.82069046096876,189.69412924721837,189.84953637979925,189.06104964762926,188.33160201553255,188.8091840101406,189.48195206467062,189.54493564460427,189.55310144508258,190.27163050323725,189.56139871571213,190.05507726687938,189.57805960206315,190.01598866051063,189.3597598206252,189.74466406740248,190.35733784688637,189.47321829758584,188.927025037352,189.05104363383725,188.4342229454778,189.0038809813559,188.91114957723767,188.1194271389395,188.65100985765457,187.8270050669089,187.2725330949761,187.22427245322615,187.06553003191948,186.4192985794507,186.9462003489025,187.47999104484916,187.64318050583825,187.41816284134984,188.40695874392986,187.70317422877997,187.67213959107175,187.28567041968927,186.33229405572638,185.97110212268308,186.33037530072033,186.05896318238229,187.05403890181333,186.32033548364416,186.2441968228668,186.00941772572696,185.51025643153116,185.03866967232898,185.1696112663485,185.28504920192063,184.50722554465756,185.41490329802036,185.19977414095774,185.6900291168131,186.14383601257578,185.9787949710153,184.99710909742862,184.86153016798198,184.53521293587983,185.23061375925317,185.621859182138,185.69876995356753,184.8218756574206,184.1033125538379,184.13284357311204,183.87598193949088,183.82890224270523,183.50860306387767,183.9093082677573,184.77617741329595,183.91371324984357,184.74426350556314,185.71003888640553,184.74136113002896,185.4340500351973,186.0377568518743,185.09773498913273,184.96629999531433,185.9257272486575,186.86691992776468,186.71078620897606,186.38134532654658,187.0659763510339,186.6371199041605,187.29335353849456,186.83108491124585,187.62987725669518,187.92173691047356,187.20489284116775,187.79491619579494,188.57413845229894,189.17963178269565,189.216907099355,188.4816120970063,188.29439368005842,189.00369121786207,188.85805050935596,188.2174699595198,189.20550884166732,189.66079536965117,190.3019354911521,190.6628631176427,191.2087411666289,191.56664426857606,190.68272100621834,191.29000086104497,192.0329425809905,192.27398579800501,192.02264644159004,192.5070329545997,193.44459075573832,194.02159885317087,193.1822223123163,193.32211186923087,193.3036839128472,192.48049082932994,192.25645922869444,191.88568099588156,190.89078526152298,190.95367567799985,191.95365325221792,192.8387654875405,192.2147160214372,191.39563846727833,191.25025862501934,191.45282132038847,191.59053504886106,190.91679103346542,190.30942228715867,189.57808347838,189.3320149150677,189.28262401139364,189.64632781594992,190.00534683279693,190.29705974413082,189.76592755364254,190.48939262749627,189.68687280872837,190.16773529117927,189.7449505990371,189.94355682143942,190.52540859719738,190.58938138419762,190.36177505133674,189.5030770637095,188.80632941564545,189.06888461019844,188.82593092415482,188.46743162442,188.55892162723467,187.76232145819813,187.47077144356444,188.0591832739301,187.7094432716258,186.71345599694178,186.76492194784805,187.04290485242382,186.39251027163118,185.50727941142395,184.8646550704725,184.364654624369,185.1175462147221,185.9764956762083,185.9238446331583,186.80690157413483,187.62718469509855,188.4087944026105,187.5106737781316,187.7918483647518,188.18147622654215,187.30494756624103,186.47512279171497,185.78437596559525,186.54635796090588,185.97096982691437,186.22733955271542,185.3550672493875,185.8407272482291,186.68306745542213,186.46453454252332,186.10656434996054,185.15563772292808,185.38650340866297,185.02040713606402,185.36633096728474,184.61157890735194,183.64674011804163,184.5022763973102,183.6351088625379,182.6466517955996,183.60997773893178,184.0330321774818,183.25674535194412,183.2453201878816,182.51194455940276,182.5523576522246,181.927167407237,181.16881077783182,181.90201741456985,182.79122199118137,182.8158640563488,183.29487699409947,183.4956309888512,183.55895799025893,183.69358769711107,182.90345043502748,182.39294942794368,182.40542869549245,182.33819471485913,182.62048510834575,181.99960147589445,181.21328293113038,181.58093715459108,182.33873330336064,183.27919163322076,184.02502504363656,184.54399567842484,184.1132852830924,184.28053552052006,183.34676748747006,182.53041742229834,181.64783840579912,182.29779354017228,182.03994609881192,182.27541637374088,182.00203108321875,181.89053677255288,182.62510761991143,181.85599693469703,180.95640640053898,181.4703666297719,182.09407885791734,182.93485469697043,182.70098789595068,183.05263968277723,183.54576446441934,184.1242988021113,184.86642570747063,185.83617347385734,185.62057556863874,186.53004105389118,186.56366895651445,185.8632963737473,186.146107126493,186.89694549515843,187.15784442797303,186.66295184660703,187.43044493161142,187.55657368153334,186.76845333445817,186.39319789642468,186.7418547058478,187.1132925255224,187.02073237206787,187.0770256551914,187.40115731954575,187.41563868708909,188.10293049225584,187.66145684942603,186.78718765964732,187.44507023552433,187.9376132762991,188.72596460720524,188.6461156657897,188.99408048484474,188.41672857059166,189.3473132508807,189.70079312007874,189.82104208692908,188.97727898554876,188.49465566780418,187.73279767064378,188.7235555476509,188.94230922264978,188.63281388534233,188.361951331608,188.96708236215636,188.3798574754037,188.5469607929699,189.09375569457188,189.17106519825757,188.7287223059684,189.00003499817103,188.72272435436025,188.44375356053934,188.7828524140641,187.99340689461678,187.4544436414726,187.2543707001023,187.33718851488084,186.35623305197805,186.90212042070925,187.10474507231265,186.33638833928853,186.9956739107147,186.8274296829477,187.4670903342776,187.698935655877,186.8683955539018,187.85400756029412,188.3913810919039,188.75507754739374,187.92247354285792,187.71563226450235,187.48434814391658,188.22456573834643,188.84285966539755,188.19726052414626,188.57008595205843,188.8416165113449,189.00346194161102,188.93335577799007,188.92673693597317,189.38230457296595,190.18455596175045,190.77946374891326,191.49207629589364,192.00258922576904,192.2668537478894,193.03723051212728,192.09104416612536,192.8249597926624,193.71276452578604,193.33216602634639,192.8290648572147,192.32757383678108,192.79896763944998,192.6641115262173,192.85923086572438,193.59560209698975,193.9455117615871,193.07669154694304,192.66139626922086,193.1845208350569,193.06839090958238,193.6959628830664,193.48872497491539,192.96214929176494,192.50831617135555,191.88363444898278,192.88039854215458,193.02926546847448,194.01229967270046,193.5952317486517,193.21779443277046,193.025255210232,193.43020018562675,192.99846207536757,193.76254026358947,193.7585649592802,193.236603861209,193.5725040147081,193.1609268807806,193.67370991082862,193.59497506776825,194.04685860173777,194.81695934664458,194.6413749754429,193.88914105156437,193.14959001960233,192.83017711574212,192.00833230884746,192.07214321754873,191.3783922237344,191.20400675432757,191.36592425312847,191.29605574114248,191.17977329855785,191.58533789915964,192.17612365679815,192.98429428832605,192.87158948229626,192.05389928026125,191.6830296833068,192.18859172379598,192.23701013671234,192.8847010876052,193.51638791058213,194.05599612835795,193.95278381649405,193.051443467848,193.8491744119674,193.92846086574718,192.97994602611288,193.8425127756782,194.42949801078066,194.0061915111728,194.4362474065274,195.18788827443495,195.99569864245132,196.87580371042714,196.77912307111546,195.8219068814069,196.39570256322622,197.35297656338662,198.11105835344642,197.27899456210434,196.33289131335914,195.48389819823205,194.7592930579558,194.65532066393644,195.63988879695535,195.53028632048517,196.17574860760942,196.8780155479908,197.5919091347605,198.02263417467475,198.91787257697433,198.87394717428833,198.38807893637568,197.89846341498196,197.40374701842666,198.17795713432133,198.5292299501598,199.51407513720915,199.6880353949964,199.65397190582007,198.79959471616894,199.72996379993856,200.29246685979888,200.2472172905691,199.78130198083818,200.29473882820457,200.05287149641663,200.7485908959061,201.29501773044467,201.72063824906945,200.83066040370613,200.44573911931366,199.80999857233837,199.5789040448144,200.57511667022482,199.7681220457889,200.6279169730842,201.32770283985883,200.99096134398133,201.8288704319857,201.4105332326144,201.88610526826233,201.45351525675505,200.76292839692906,201.69912300584838,201.4692311314866,202.41212362144142,203.1677779816091,203.60889610322192,203.42533650947735,203.25277212122455,202.90648047300056,203.22268826141953,203.7636629184708,203.42617350677028,203.67063302500173,204.50439724791795,204.4075530008413,204.47574356896803,205.2414420968853,205.78949668025598,206.40242708195,205.8602424087003,206.6006831456907,206.11235764762387,205.89774327073246,206.6441787276417,206.15825321851298,206.79301283182576,207.7422451931052,208.21386578306556,207.8013324663043,207.74968292191625,208.2295601000078,208.421681556385,207.94917621137574,207.58862062497064,207.25118104415014,208.19578824238852,207.9098582630977,208.04295902326703,207.2606193474494,206.83765141712502,207.3302543736063,207.21960094571114,207.06185215804726,206.17984899505973,206.96084616798908,206.56849021138623,207.01297885738313,206.6935347984545,207.44970521889627,207.4742610156536,207.5150089287199,207.5625826078467,208.09876392781734,207.2141391132027,207.49295242363587,208.21114981593564,208.47220305306837,208.13567062513903,208.7285440545529,208.39869289426133,207.6026687445119,206.81591616617516,206.77973658125848,206.96557425614446,206.82560927420855,206.38822005409747,206.96399480756372,207.7294831480831,208.49667630251497,209.21007974958047,209.89273913344368,210.26228747470304,209.35867703380063,208.73591092322022,208.6591941108927,209.22375663695857,209.4602869283408,209.48003141302615,208.77165091829374,208.3797108354047,208.8626877507195,208.82330987183377,209.40298444312066,210.01426835684106,209.45904372166842,209.46117686247453,210.36959146428853,210.41823948407546,211.2639268557541,210.31695660715923,209.69435686431825,209.80949146160856,209.5575337181799,209.96816303301603,209.88137660780922,209.4157555764541,209.60606583813205,209.1277410243638,208.5160704520531,207.7785648247227,208.6864641592838,209.08090500347316,209.04403783520684,209.33439936582,208.53443467989564,209.50814816448838,209.51396330911666,210.19385666307062,210.64437670679763,211.34413127414882,211.08136832062155,212.02127288095653,212.51583048840985,212.39411923615262,212.68837552750483,212.34824465261772,212.2921067206189,211.69580781646073,212.1056870976463,212.75149511359632,212.9575475808233,213.4454117831774,213.12766606733203,212.4833126743324,211.6187859866768,212.57386384392157,212.90744426986203,213.04776906361803,212.23371941410005,212.60297377454117,211.6390038691461,212.0868955035694,213.05041879648343,212.73356720339507,213.10646017780527,213.05007519526407,213.29044333519414,212.89219241868705,213.22544630011544,212.85731032909825,212.21007294859737,211.80764757236466,212.49059047084302,212.3303702408448,213.0108313220553,213.60165569279343,212.79785415530205,212.8101691827178,212.24689555633813,211.67912385519594,212.29443511366844,211.32827281719074,210.4866716931574,209.69334579538554,210.48642809176818,209.58948187483475,208.73469842365012,208.87140080099925,209.39717549504712,208.73571095988154,208.16710898652673,208.7759533189237,208.04804723290727,208.81869363365695,209.3862662105821,208.7066192990169,208.1465871538967,208.92301634000614,209.4450325537473,208.63844479201362,208.7618069718592,208.85669713281095,208.17877182085067,207.30606505833566,207.60771712753922,207.23091709567234,206.5517049250193,207.1137624103576,207.55604021344334,208.54128553485498,208.40150609705597,208.94913105433807,208.3874009740539,209.12649809429422,209.0329947611317,208.17309445794672,208.84077374869958,208.01534217083827,207.4092067060992,208.06501543568447,208.88912205724046,208.57164256460965,209.2884953673929,209.3977882573381,208.4785452117212,207.47990315081552,207.66938410606235,207.51020876085386,207.10891393665224,207.18162202322856,207.5747625832446,206.77786318259314,206.44379571918398,205.94249648228288,206.35957874683663,206.15104060899466,206.85717544239014,206.38931117299944,206.851583680138,207.756608965341,206.97421888960525,206.54349458264187,207.1809506365098,207.61838788632303,207.54969474114478,208.10280321491882,208.18178669409826,208.94708063453436,208.75871046632528,208.77502786694095,208.95783177064732,208.58011824311689,208.73897724272683,209.2241610097699,209.6869203276001,210.33508282573894,209.56525859888643,209.73865142371505,210.26319637801498,211.09362756833434,211.93683789111674,212.5299047473818,213.07408533990383,212.51909926207736,213.189029998146,212.24787205830216,211.69763996824622,210.9582150322385,210.71727974619716,210.94860576139763,211.71242904895917,212.44449565000832,212.3128604996018,211.79791258694604,212.41254888894036,212.60837952047586,212.33402661187574,211.89001068100333,212.75400321837515,212.04026992199942,212.98397659603506,212.8423111527227,213.495950109791,213.61262213392183,213.3698649443686,213.13526205951348,213.97890213457868,213.2297481680289,214.1125766383484,213.79996905801818,213.4597191521898,213.19595292583108,213.46555089810863,213.058684470132,213.95178425638005,214.3916102121584,215.22184786759317,214.7252695215866,215.63299269974232,215.76904363324866,215.73251226730645,215.65890769893304,216.58257573051378,217.36658358899876,217.71696817688644,217.77975427173078,218.01348671782762,217.53771030856296,218.47806993685663,217.68625824991614,216.7861653356813,216.66597750037909,216.826400059741,216.94345924491063,216.94867139216512,216.15186075819656,215.87904340401292,215.00353724695742,215.12714683730155,214.28223106218502,214.612161191646,214.16242724796757,214.35352211864665,215.002654931508,214.12829771172255,214.11957443784922,213.16370660997927,213.8634584019892,213.46114842640236,213.68912786245346,214.05831047194079,213.6566004655324,213.37689382582903,213.14392016269267,212.2683727541007,212.0527547155507,212.22528786305338,211.7179650501348,211.17823069589213,211.08114030957222,211.85376649396494,211.2809882396832,211.53772315988317,212.2681975965388,211.97583360038698,210.98008084855974,210.20995041914284,210.50775655405596,211.4360720193945,212.2921333075501,212.60725697223097,211.75307051464915,211.9756428268738,211.7468155277893,211.54492705967277,212.16873687924817,212.76889789197594,211.86754202470183,212.84388366620988,213.3904166230932,212.48111456492916,212.5886924075894,212.21602571988478,212.15800642454997,212.93693965300918,212.8412210708484,213.2881141784601,214.15693803690374,214.26350558036938,215.15078458702192,215.9833149947226,216.4979383489117,216.4879878605716,217.28939666924998,217.64526657387614,218.11937844846398,218.875571815297,219.06509316246957,218.3081972533837,217.31461074901745,217.65495487116277,216.7619638494216,217.53458875836805,218.52349155861884,217.8225671784021,217.14751101238653,217.7769993566908,216.98182992078364,216.27996155899018,215.33042468922213,214.91198743507266,215.22047432279214,214.99577432172373,215.84338973416016,215.78562129149213,214.80360168684274,215.7061089691706,216.20568402903154,216.16112641664222,217.09706312650815,216.17227314878255,215.81647751340643,215.78859110875055,214.86207525851205,214.92942616017535,215.6290703653358,215.10208095889539,215.98191883182153,215.00582800619304,214.5986951496452,215.3583830036223,215.0323176193051,215.42807001434267,215.81915760412812,215.7671725456603,216.76232755975798,216.4005406307988,216.81731193093583,217.57394952420145,217.30332106957212,218.14343874529004,218.7704213806428,217.9875442548655,217.4755101497285,217.62487271986902,216.68098612129688,216.8998467042111,217.33583951555192,217.0103416480124,217.64365613879636,218.19376886589453,217.46313259378076,216.63099625706673,216.59102490311489,215.83474038541317,216.4778741756454,216.47670623194426,216.87821801146492,217.07612580107525,217.23558817943558,216.84250601241365,216.5543147753924,216.93042466044426,216.02907148003578,216.38307336578146,216.05885592801496,215.47067584935576,215.48391905147582,215.33860774384812,216.23844250570983,216.48152821371332,215.59630188066512,215.253166094888,214.79618028737605,214.10739298490807,213.50293464632705,212.92824196629226,213.6583781093359,213.3540732106194,214.24749892251566,213.5895774103701,214.28526468481869,214.8123773150146,214.5252589220181,214.6953421314247,213.96312167448923,213.58465061429888,213.45856951223686,212.91712665278465,211.98159755812958,211.56779899867252,211.13643110822886,211.8239855854772,212.14534217165783,211.63627980742604,211.5865582227707,212.49332959810272,212.69247300596908,213.41442899266258,213.39583607483655,213.3612755080685,214.0324001275003,213.76413955865428,214.36574559938163,213.3853746568784,212.8499214584008,211.9358549360186,212.79956735717133,211.84324822528288,210.9984556660056,211.46172216255218,211.66866384400055,211.64646922657266,211.9305383558385,211.97373344236985,212.02564125461504,212.76850361377,213.31190951587632,213.0835564462468,212.8131990423426,212.96487549878657,213.08102140855044,212.26769801415503,211.78110146848485,211.8502750582993,211.2424079477787,211.85200232965872,212.37359960516915,211.55839216336608,212.3027111417614,212.9681350775063,213.18111135298386,213.22279122006148,213.64428154472262,214.2070877556689,214.77548540290445,214.2206403715536,214.96455424604937,215.66352327400818,215.31857017287984,214.7192770061083,215.06402968475595,214.73609981732443,214.61115651763976,213.85316458530724,213.46068631811067,213.5248767696321,213.42324970895424,213.19625251786783,213.3396264258772,212.4900039783679,211.91264567244798,211.6401156433858,212.6138339182362,211.87649172637612,212.26900806790218,211.78608165262267,212.71835254272446,212.57425250159577,212.27247323701158,213.0301571181044,214.02235133526847,214.44804025813937,215.14722337620333,215.68387995986268,215.12389599252492,215.77571100974455,216.01800645142794,216.5568333058618,215.96474904147908,215.87297039246187,216.55466489773244,215.81727742077783,216.5899869618006,216.2982265530154,216.49048651009798,216.96716894209385,216.41370676644146,216.39470936218277,215.6884574755095,216.68218924617395,216.45197733165696,216.96777998749167,216.99049223586917,216.57833413220942,216.37709461897612,216.05535439681262,215.28101293044165,216.23663811571896,216.74534055497497,216.52606188924983,217.1752395085059,217.50028352765366,216.86490790732205,216.27056120196357,215.80091919284314,216.15878018084913,216.8579256637022,217.45120184961706,217.27104244800285,216.97348216362298,216.784189958591,217.6857733442448,218.17006012424827,218.69570108223706,219.56215062504634,219.5283180209808,219.47109972918406,218.50994710205123,219.33334612613544,220.32884172303602,220.8257941058837,220.44380385847762,220.67937422078103,220.14173087477684,219.4428431438282,219.2515584267676,218.9975754278712,219.5074151661247,218.6993112335913,217.87934559583664,217.00669805752113,216.66407537041232,216.69383597141132,217.51931273704395,217.13480022922158,216.4605472185649,216.00076617579907,215.67611485347152,214.82394149899483,214.03092029038817,214.61147403996438,215.55662819277495,216.511782577727,217.24501308379695,217.99476632010192,217.5225630798377,217.3262122045271,217.19890231918544,216.87272452982143,216.00588858872652,216.25847603706643,216.76565048051998,216.29397054901347,216.32385449158028,216.2903723581694,215.71246478613466,216.3063475987874,216.1206544409506,215.56868835911155,216.0179924396798,216.55595616064966,217.46335418103263,217.79444154165685,218.76256364723668,217.93665424734354,218.3090771739371,217.78597348788753,218.59857435245067,218.8335113208741,218.30295936437324,218.71899156458676,218.45192075613886,218.28099795570597,217.38513520779088,217.0114423595369,216.5659456755966,217.44987865025178,216.73055180395022,217.44512740010396,217.29455185914412,217.24098825268447,217.3547526919283,217.11475343583152,217.8952903370373,217.67570070456713,218.62985046627,217.78301898902282,217.04201144352555,216.50012689596042,215.62928367685527,216.0856182682328,217.02543177222833,217.37557791452855,217.2717085890472,218.24079633597285,219.05265275528654,219.13568081101403,218.6740506226197,217.7544680503197,217.11810377053916,217.23729704227298,217.8842905946076,217.55113319167867,218.33465587114915,217.3966652317904,218.24634279264137,219.07551552867517,219.39372661150992,219.97180526796728,219.58235608786345,219.93475444382057,219.46433393470943,219.12555318977684,218.84228214249015,218.96026474703103,218.86475315550342,219.78786405175924,219.81434045825154,219.64212089264765,219.0950735034421,219.66672276239842,220.1469472697936,220.1091812821105,219.8455269006081,219.36878003226593,220.01292553264648,219.94013836374506,219.71543025271967,218.7504136241041,219.0695455642417,218.61689005233347,218.2997769820504,218.41119921859354,219.09861950110644,220.08287561824545,219.84290487179533,220.5809746044688,220.35599776916206,221.0436259880662,221.38200985547155,221.07172944396734,221.3350543328561,221.02921083429828,221.57758631929755,221.86952105071396,221.13531409902498,220.77895415760577,220.98180142370984,221.04030265798792,221.8386515667662,222.4884167504497,223.04409360932186,223.08857961092144,222.30216625984758,222.85086886771023,222.43423532508314,221.52180907595903,221.34023366682231,220.43620899831876,220.42172938026488,221.31759045552462,221.31411630660295,220.3997771278955,220.18838378228247,220.6243970557116,221.4624930759892,222.12486090231687,222.68283517751843,221.7593401283957,222.01724469056353,221.94196251221,221.05496920645237,221.47459888551384,221.2061179173179,221.74764587171376,222.38029298745096,221.446252994705,221.80059986840934,221.47715184651315,220.4918756056577,221.44481559703127,221.95490641100332,220.99618970416486,220.29818816157058,221.19567694375291,221.12351237842813,221.28387078642845,222.07340934220701,221.61130332620814,221.33428026363254,222.2875353214331,223.1017628996633,222.45311760762706,222.0933026173152,221.63554523373023,221.2829783866182,221.41792936017737,220.87320504477248,221.55631035147235,221.9845708021894,222.81131338654086,222.60665118182078,223.4367594178766,224.14399338094518,223.41826633783057,224.1401190389879,224.58555405260995,225.4069066173397,225.89381510484964,225.8025433779694,225.25650127697736,224.62192752957344,225.1204560934566,224.84288772009313,225.531302487012,224.97376485634595,225.07347555318847,225.14495822042227,225.82419263990596,225.57549639744684,225.45773720089346,224.92785389674827,225.4773850198835,225.26852491963655,226.09425041638315,225.4000182985328,226.37884959438816,227.0851291534491,227.67937071900815,228.47854736447334,228.1315752696246,227.85591566795483,228.07923263916746,227.39475647220388,227.13655338203534,227.8590962481685,228.42162527283654,228.3096595914103,227.8027579858899,228.168029055465,227.50065258704126,228.16352159064263,227.8055505361408,228.05323147960007,227.6909078094177,228.2248826539144,228.70495254639536,229.5920918523334,230.04795932630077,229.73767807334661,228.78105906350538,229.2479082113132,228.33561983564869,227.55099707981572,228.42201194399968,228.56848302530125,227.63132951920852,228.2195438989438,228.06180890230462,227.30174646759406,227.7167451432906,227.49263806827366,228.4327446357347,228.89670533919707,228.19556918926537,228.55440117185935,228.5341855813749,228.193693687208,227.52014267537743,226.86222976073623,226.23150255018845,225.64503320492804,224.71898345602676,225.56962564308196,225.28897969424725,225.3134481557645,225.58736333576962,225.63445343496278,224.9162808135152,225.5182108785957,224.86691506858915,225.83293168526143,224.91168570984155,224.92158539174125,224.93267598794773,225.145110076759,224.26703228708357,224.18713319161907,224.37979211006314,224.29152604425326,225.03809069888666,225.58474489767104,225.96255551464856,226.8214269238524,227.51095842616633,228.1850917893462,228.99118637898937,228.46305937226862,228.62261630548164,228.84497760375962,228.69499053433537,229.27810574974865,229.88751023402438,229.10812220117077,229.15918813785538,228.2542008520104,229.01823037164286,228.62647769460455,228.1961599420756,228.69199611106887,228.0672415457666,228.61281921714544,229.25521368253976,228.75392938312143,228.34494318347424,227.82330094883218,228.31306485645473,227.96035239612684,227.98475237283856,227.41318849474192,228.21980428509414,227.63406775146723,227.99177761469036,227.84602635074407,228.43769021658227,228.9215620555915,229.1527581186965,229.43605456175283,229.6620298270136,229.90377764217556,230.09529250767082,230.55737748509273,231.3249722388573,231.01339534996077,230.31984743662179,230.18963292287663,230.6688275435008,230.7481613731943,231.1786783495918,231.04253283003345,230.73074583755806,230.65108358394355,230.1130677764304,229.28789060749114,228.82313142344356,228.7766180136241,228.35509742656723,229.2477530129254,228.24847293412313,228.70447552436963,228.18406748073176,227.56265355506912,228.28217074181885,229.07362983049825,229.27136407466605,229.77909867325798,229.63934909785166,229.68760825321078,229.37431938387454,228.95698843710124,228.4759143209085,228.83522379212081,229.29215062828735,230.27297859685495,230.52487429743633,230.68977772304788,229.98046504100785,229.24984807148576,228.59003781480715,227.77017880696803,228.0671848882921,228.93919076956809,229.90054717101157,230.22881670761853,230.4579804535024,230.03895111987367,229.9258578266017,230.17689477605745,230.33659821283072,230.9393348642625,231.3342939442955,230.9632022115402,231.17299102433026,230.5752971507609,231.39070953568444,230.78022944461554,230.63445108337328,229.74538456602022,228.77840571152046,228.0351158650592,227.4230474452488,226.6264024139382,227.25289159733802,226.28454261180013,226.86247159121558,227.82866144785658,227.20519952382892,228.02761253714561,227.46626842441037,227.5977571294643,227.75169026851654,227.61808207072318,226.89236943796277,226.76677780412138,227.65029242727906,228.08548613917083,228.7022056239657,228.74837578600273,228.72670859238133,228.47048569703475,227.4815934514627,226.8096371581778,225.82261005416512,225.58251881133765,225.89592495700344,225.64412472816184,225.5380842234008,226.0615353062749,225.67023541778326,225.91769807972014,226.25772148184478,226.29879310214892,227.05407405504957,227.65946208080277,227.70861462736502,227.69480842119083,227.0367190116085,227.17031039763242,226.18336579436436,225.9666479122825,225.15841943444684,224.84702098928392,225.2639513402246,224.82229239400476,225.44822661066428,225.53835930069908,224.9372017486021,225.40419894317165,225.3995898598805,225.7813997506164,226.04326161043718,226.32022360293195,226.2516540326178,226.37978226784617,226.15327298408374,225.91566507611424,226.11780379060656,226.85461367620155,226.7952189007774,225.96159407123923,226.09523542784154,226.91636983305216,226.08045325661078,226.20504947239533,225.4764104592614,225.69343932904303,225.10565300192684,225.8802811061032,225.84176811063662,226.48563240189105,227.08548515988514,226.65442989533767,226.02171662030742,226.64599239174277,226.96620024368167,226.030835961923,226.9657500879839,226.08325063018128,226.37630780274048,225.84624185413122,226.03079088777304,226.2422681977041,226.57202781783417,226.5684159542434,227.4106467757374,227.2314388146624,228.16834569675848,228.54883507965133,228.25087656080723,228.89575933059677,229.68431183090433,229.3745982288383,229.2662459355779,230.10710296826437,229.94910389231518,230.45358521444723,230.22835186123848,229.77707658102736,230.27349734818563,231.05799736874178,231.90215564100072,231.8197895232588,232.57124822866172,233.1762427673675,232.63656214810908,232.43125017825514,233.09326565777883,232.62530859699473,232.87581558339298,232.07621538080275,231.08855846570805,231.7650193241425,231.87026424752548,231.2007393091917,232.15182771766558,231.50766750704497,231.4392178063281,231.4185744537972,230.577386922203,229.90858831303194,230.1006348100491,229.25664564827457,229.81973806256428,230.07471992028877,229.90657277358696,230.81111444858834,230.8186198109761,231.4899343685247,230.88856722181663,231.52949816547334,231.69985056016594,231.0813645645976,230.3148467000574,231.1368379238993,232.09683397132903,231.6689366362989,231.40626957966015,230.7817077776417,230.26875863270834,230.2271336284466,230.93912503262982,231.15266978926957,231.9955364507623,231.1351527608931,231.4795336732641,231.63788491021842,231.83253839192912,231.7677017697133,231.00385185563937,231.03711366700009,231.70341389486566,231.8486150461249,232.29559337859973,232.82787356106564,233.04246751312166,233.48296963097528,234.08943833969533,234.5658649825491,234.7079073493369,235.55004271212965,236.27426608651876,236.40086077153683,236.83937900327146,236.54277684818953,235.98612152878195,235.99465155089274,236.44573306804523,237.4306777426973,237.85601115506142,237.1323064812459,237.31742852320895,237.28857949422672,238.23389793932438,237.43427047273144,237.1909610745497,237.5222452119924,238.2612176798284,239.01474490528926,239.85270210681483,238.86511054588482,238.0003284481354,238.29383782483637,238.72579839732498,239.32645105291158,239.63710886333138,238.79166830470785,238.01511472603306,238.30135316448286,239.27906817616895,238.45560898957774,238.41995428176597,238.19935528887436,238.90240385290235,238.67883010720834,237.9723391146399,238.6497815940529,239.17807592032477,239.31799592031166,240.19596107676625,240.11926437774673,240.93671933328733,240.5131028033793,240.96717121452093,240.11404241854325,240.05016574915498,239.4324536328204,239.2382284034975,239.53144240146503,239.12117809569463,238.34139288542792,239.1674975734204,238.91654478479177,238.63590283179656,238.91137482738122,238.6997596360743,239.68701502820477,238.76332392543554,239.7482606228441,239.86556922923774,240.01502892468125,240.84791848715395,240.18790427828208,239.53704952728003,239.50006706640124,239.30967367487028,238.44162581209093,238.64711240353063,239.13814231799915,239.48683178657666,239.9864395861514,239.79974072612822,239.56841841666028,239.6362349288538,240.01004016585648,239.4955081101507,239.78931534755975,239.5233115395531,239.36057098489255,239.74981397064403,239.08974163141102,239.01797245349735,239.18901764275506,239.40884481510147,240.0613642348908,240.22430866770446,240.14629590930417,239.9969365503639,239.4744379739277,238.66863230150193,239.3703675759025,238.75131565053016,239.40513724740595,239.0228334683925,239.545967574697,239.33386441040784,239.6024878108874,240.2811075206846,240.67306002182886,240.17007313808426,240.2390653179027,239.60258652130142,239.9539236514829,240.26243511820212,240.10253196582198,239.30022114003077,239.57617226755247,240.1397612723522,240.88362051034346,241.76611571991816,241.49060915783048,241.268845716957,241.41141670569777,241.79085585242137,241.46233361866325,242.11180892586708,242.13745403802022,242.4683056147769,241.98458070633933,242.86531056743115,242.98260483238846,243.58812994137406,242.94996459968388,243.66590123577043,244.61472446052358,244.41257709357888,244.39298888854682,244.5453434996307,244.3036794741638,244.8920434997417,245.03237072983757,245.0724865240045,244.50270222313702,244.45384320663288,244.48916186578572,244.19907473865896,243.27191776549444,242.69417436933145,242.2142179333605,242.6122370311059,241.9523243973963,242.4909068280831,241.73056924296543,242.71344283409417,241.9013944575563,240.92661659186706,241.64012396940961,242.47575748199597,241.54215692030266,242.33843659982085,242.6668223249726,243.2682272354141,243.63724486296996,244.0391112426296,243.50078222667798,244.4476041267626,245.38567842449993,244.90905158035457,245.1020265496336,245.3059972426854,244.6728538754396,245.52085372852162,246.33484140131623,245.657614863012,246.3957829051651,245.8616006569937,246.35618942417204,247.12580798752606,246.37107365112752,245.64924083976075,246.34615521179512,246.99106501135975,247.7350444421172,247.9288369663991,247.50626274943352,246.9519451968372,247.40420433320105,247.6241026702337,247.28164229076356,247.1125232069753,247.89837538683787,248.04070099117234,248.94331490434706,248.51748729357496,248.90446410654113,248.85367457009852,249.80464483052492,249.902011919301,250.20068337395787,251.14968580938876,251.50680590234697,252.0981118073687,252.9258374394849,253.59581840364262,252.91234058933333,252.735259140376,252.47480912227184,252.0915424535051,251.46474961843342,250.7314920485951,249.90469083189964,249.7596551370807,248.98217021021992,248.3939905539155,247.90665290690958,247.2645787051879,246.53378578042611,247.29799512401223,247.80158327752724,247.60110517498106,247.5131809595041,247.16247763484716,247.48286258801818,246.8337905127555,245.88687350135297,246.12344276811928,245.45656151417643,245.03420130023733,246.0035717668943,246.05553847644478,245.72739302599803,246.22096606949344,246.12369410786778,246.57589027192444,245.9725152058527,245.41749507002532,245.62185050873086,245.33827674295753,246.02545274980366,245.97620776481926,245.25543469190598,244.64624294871464,245.2307605338283,244.7132684183307,245.41380600212142,245.70010365592316,246.24159832624719,246.99287971993908,246.10610809270293,246.83918302273378,246.18952317954972,247.04083214700222,246.89402362518013,247.77062624320388,247.55410137679428,247.9268758026883,247.44975983025506,247.25695312442258,247.67760328017175,248.16524462029338,248.61605638545007,249.08457512781024,248.57738352008164,248.7243777429685,249.2932647676207,249.31673758570105,249.60869094682857,249.4129488999024,249.88609169982374,248.95437081018463,249.255343797151,248.64835606142879,249.27821591915563,248.77599195111543,247.88964770874009,247.85995154408738,248.74870243901387,249.50301841739565,250.08217712678015,249.71251533692703,249.37355224322528,249.46919643739238,250.09777323156595,250.56776470597833,249.7375682638958,250.64072710787877,249.78194069117308,248.8245604694821,248.35220880946144,248.1617654650472,248.92901984415948,249.90681523270905,248.99055119557306,248.93462217738852,248.11312917945907,247.5116426195018,247.25720862159505,246.49374769628048,245.81853602500632,245.25011801579967,244.25982949789613,243.5033798632212,243.4036988201551,242.83654513210058,241.9236132898368,242.68533186381683,242.77959657413885,242.55106039810926,242.93969376478344,242.10798673843965,241.48744999384508,241.2339890114963,241.3436567322351,242.03832682827488,242.16678145108745,241.80567157594487,242.32815364049748,242.1459204000421,242.5737210875377,243.48028963804245,244.32519722171128,244.03691006451845,244.13580635748804,244.48932885052636,244.81210286496207,245.1048197071068,244.49487805226818,244.5857370281592,245.34877073857933,246.282660335768,245.61841019894928,246.59948389278725,246.63510061474517,247.0486000785604,246.79837289452553,247.6886268267408,248.0568458046764,248.83272493164986,248.96745409304276,249.8108349251561,249.53052995540202,248.92932246159762,249.86046423297375,250.65831215446815,250.50390328047797,250.1346430806443,250.26396244205534,250.2527712364681,250.93843022780493,250.51343442685902,250.79935222212225,251.17706211516634,252.1365572377108,251.1442648721859,251.72038785694167,251.6472763903439,251.4825911577791,250.86851955205202,250.8017741390504,251.75218988442793,250.8995429361239,251.4770307210274,251.40045433491468,251.88809173135087,251.5371751789935,250.83798067551106,250.0932894833386,250.539793855045,250.09943447820842,249.89144939603284,249.22995178448036,248.98793466482311,248.43605223065242,247.64500586269423,247.0721807833761,246.6105872746557,246.63630245486274,246.2727646525018,246.0817582034506,246.6770096840337,247.24079103767872,246.32550964178517,246.0729322740808,245.2192467818968,245.21951569104567,245.16797592351213,244.77425396442413,244.1277487068437,244.7961401785724,243.9903676584363,243.73854585783556,244.16587296081707,243.20969315757975,244.0045402846299,243.81201870692894,243.86376529792324,243.72529306542128,242.75051058270037,243.6758845061995,244.47231077076867,245.2190490970388,245.93370691873133,246.47480361396447,247.46346672298387,246.7885363404639,246.06302115460858,245.59657878708094,246.47133683925495,247.28285439219326,247.90645724721253,248.85149264521897,247.98706496926025,248.15398576576263,247.32330384012312,247.51452083000913,246.97715305397287,247.26277474313974,246.72890642937273,247.31533432519063,246.3380770906806,246.28596057696268,246.43557153083384,246.68341971514747,247.46872104378417,247.84805874247104,247.2247406532988,247.72493942687288,248.52607286255807,249.47571031749249,248.9341369359754,248.20672745350748,247.25889923330396,246.55440721707419,245.71652749134228,244.9737594355829,245.95855315681547,246.92289125081152,246.07870349707082,245.47251277090982,245.30321812070906,244.5127103868872,244.30433302326128,243.99145963974297,243.0502304546535,243.68367551174015,243.83931306609884,244.81457493267953,245.11841582227498,245.69620067672804,246.19927734369412,246.6480567078106,245.69943286571652,246.2816022769548,245.2996863326989,245.31966257281601,244.46294662868604,245.384621091187,245.51553165819496,246.217694144696,245.55201600678265,245.57473147381097,244.7145577906631,245.70847098575905,245.19217953272164,245.3036793922074,244.33292244607583,243.78056999994442,244.2311198352836,244.77139060758054,244.2225463888608,243.39722753455862,242.8619172759354,242.48555044736713,241.84502065181732,241.965895478148,241.5043860836886,242.1722928029485,241.84666212415323,242.3425624766387,242.8161702887155,243.37349194008857,243.76162382494658,242.89891912275925,242.44314887793735,242.3959485143423,242.1521868617274,242.7684792415239,243.45023603225127,243.06823382806033,243.11909388704225,242.9978633658029,242.7431056657806,243.21268506767228,243.37203361839056,242.70286808907986,242.90669416356832,242.7813977515325,241.98337032552809,242.9665492605418,242.82135621551424,242.47223417600617,242.15129019273445,241.51537992525846,241.68916587997228,241.32246787752956,241.66734143393114,241.47291399212554,242.1758393999189,241.55382377747446,241.3246893240139,242.0811363714747,242.1411523995921,242.37058195797727,242.4795480351895,242.75464863004163,243.1379381045699,242.61328600160778,242.06258255476132,242.53568794718012,242.67582088755444,243.18684144178405,242.4756894307211,242.5428548255004,241.71633053198457,242.06063012313098,243.01313555659726,243.5974825792946,243.82314843405038,244.74999349890277,245.23033709544688,244.40944366296753,245.11244403524324,244.3330429457128,244.09424165077507,243.73612935189158,243.60095590539277,243.8911320772022,244.64681826205924,244.99013826763257,244.40245403070003,243.69559145113453,243.5135480267927,243.33598915673792,242.95677084475756,243.7087186141871,243.8574216789566,242.94761825772002,243.07299081422389,243.37600116897374,242.7847099583596,242.986110214144,243.43648913502693,244.3099079625681,244.06049077725038,244.15000519063324,244.47026050416753,243.58715245174244,244.29048182396218,244.4251483133994,244.30596711440012,244.12707569310442,244.39034585049376,243.50139692099765,242.54247575206682,243.5053884689696,242.75981191080064,241.83122215606272,241.59119574306533,241.14127432135865,240.39624638389796,241.22033413872123,241.35568824131042,241.9235641299747,241.78125679446384,241.03899084217846,240.83659812575206,240.084396537859,240.9375208960846,241.20981988497078,242.15754172671586,242.11649317666888,241.80318848136812,242.73446824587882,241.8373346948065,242.34286961704493,242.02522748988122,242.95535776065663,242.95376232359558,243.54835635097697,243.2544113616459,243.29551438614726,243.29699563561007,243.06893908092752,243.33773240679875,243.61488875746727,243.36848948150873,243.57740560686216,243.09042117139325,243.34311042912304,243.76903326809406,243.82433110196143,244.67665479658172,244.1912920116447,244.2603955278173,243.43654471589252,243.26223734300584,244.04214683221653,244.36182378977537,244.748603021726,245.19430803274736,245.9323248662986,246.71309110848233,246.37793922796845,247.03528480045497,246.29124957183376,245.50505878822878,244.85210459679365,245.58801999734715,244.98201190494,245.08323392411694,244.4200592865236,244.83787223463878,243.92513097682968,243.6318505294621,242.88537437003106,242.78049167850986,243.28201109729707,242.82332242559642,243.58559812093154,243.52749094134197,243.01987400930375,242.1674562287517,242.49702043412253,242.64871581736952,242.48043603869155,242.0279322033748,241.89661648124456,242.6557666552253,241.76192776672542,241.26875781454146,241.05363334249705,240.8100095614791,240.86230067675933,240.77961653051898,241.45203577540815,240.9631510451436,239.98521873541176,240.37155744619668,241.11869011539966,240.4150360925123,239.67815710464492,240.58704552287236,240.07719234516844,239.68005876196548,239.16369832353666,238.3589396616444,239.31214731233194,238.40659871837124,239.19067251635715,239.4357179356739,238.43845353042707,238.30678586103022,238.79878884833306,239.13526942860335,239.68529258854687,240.01104202121496,240.5864477311261,240.89307838119566,241.69337491551414,242.44791755406186,242.10796650731936,242.21103011677042,242.75746922940016,242.85943193314597,243.45922553353012,243.2739193532616,242.47002306953073,241.5631905286573,241.0402643433772,240.8522103158757,241.16777024930343,241.28994403546676,240.65912313200533,239.83424393832684,240.3246495560743,241.12585020111874,240.3075871891342,239.9332214789465,239.74792327405885,239.18360380176455,238.74952623341233,238.9243849152699,237.99588698754087,238.46342303557321,238.6342934286222,239.23810337204486,238.7898884890601,239.68732407176867,240.484254905954,241.038404176943,241.8918533604592,242.1800519786775,242.07169744325802,241.62091585434973,241.98042030865327,242.38739646505564,241.77256541326642,242.56118461117148,242.2623391672969,243.03228703327477,243.21158633334562,242.89247309230268,241.97198272356763,242.3848025794141,241.75452975463122,242.37610813742504,243.11181013984606,243.01378054684028,243.83086357731372,243.50711940648034,242.72902793204412,241.9323425674811,241.6786276185885,242.0330045837909,242.19686943432316,242.31039972044528,242.7166496696882,243.67414239700884,244.64098631078377,244.20909694302827,244.04293304588646,243.76201347261667,244.27338087465614,244.07447997108102,244.6260508527048,244.1611449518241,243.23710605036467,243.00509580830112,243.91294903447852,244.59407827397808,243.8370786337182,244.501516811084,244.10772101115435,244.19219389604405,243.54034895729274,243.98478213557974,242.99118141457438,242.80214362079278,242.09339294908568,243.03901113709435,243.8023662851192,243.59238448133692,244.17696806648746,244.02781730145216,244.906775245443,244.08913220791146,244.6562562007457,244.13302742363885,243.4081522198394,243.49256149539724,244.23164069885388,244.59596044849604,243.69521427480504,242.69777561631054,242.93841635622084,242.11662489222363,241.5719239441678,242.42383400769904,242.1402470539324,241.20998508110642,241.7688641822897,242.72355129150674,243.6863281261176,242.88774572499096,243.35887552239,243.81083135772496,244.77241844590753,245.43722545169294,245.7797859767452,246.16657690471038,246.98184450995177,246.5018605813384,246.3075140104629,247.13200615439564,247.20190862985328,247.6060868827626,248.5331349815242,248.67890086118132,248.03117750352249,248.08425632677972,247.3772536497563,248.3179754782468,248.7130673220381,247.80518737062812,248.48369110189378,247.51412552176043,247.85755177866668,247.9331871191971,247.75080914236605,246.9684987287037,247.6982942088507,247.0918797943741,248.06946844095364,247.8667141124606,248.55661946628243,249.33801445085555,248.34063391759992,248.27167401928455,247.47497854055837,248.0174443302676,247.75225911987945,247.44807975646108,247.85871146572754,248.28826051251963,247.53834433853626,247.9774770126678,247.613473163452,247.75520895654336,247.99823446758091,247.5287085142918,248.27238776301965,247.46725882822648,247.6758011635393,248.5552525818348,248.81730696419254,249.10467811208218,249.72092874720693,249.39023317070678,250.3314379430376,250.66959919268265,251.61896370304748,251.89407274359837,252.66822418570518,253.62514321040362,253.07478472031653,252.81067215977237,252.88739856053144,252.26331774843857,252.42386151617393,252.16679552104324,251.52531966893002,250.80778635805473,250.03701287368312,249.88951643230394,249.07948808884248,249.61741744726896,248.7278005690314,248.30197100620717,249.11968683451414,250.04339896235615,249.8536085858941,249.7426766413264,249.87410029256716,249.38840990234166,249.66788117354736,250.31447563739493,250.89412485715002,251.23063750565052,251.88126559648663,252.86696284962818,252.68725119763985,253.0909571503289,253.73371809069067,253.69817442446947,253.52619995875284,254.4365144232288,253.76099761249498,254.18894824245945,253.1917257863097,253.88247732818127,254.60453400062397,255.51421445794404,255.32259203866124,255.43448958126828,255.12337286071852,254.30884028691798,255.0074858525768,255.2453096807003,255.31792054930702,255.94447251129895,255.9991347109899,256.17468652687967,256.80819272529334,257.00600078096613,256.86640420742333,256.0778161883354,256.6153879533522,256.5459196246229,255.82491122325882,256.75176769820973,255.92206766922027,256.6883050650358,256.5300412629731,256.045755431056,255.95324440300465,255.2663744604215,256.0110756792128,256.9530086466111,256.88020092016086,255.99110968783498,256.0255900355987,256.00045214081183,256.06023786822334,256.6112517644651,256.4784006141126,257.2222436349839,256.47960397880524,256.8420284460299,257.5534773087129,256.9382004365325,257.89866776717827,258.7511452413164,258.5649778484367,258.08701412193477,258.11090088495985,258.5438882326707,259.3061436470598,259.73380716284737,260.4936085799709,259.9945847261697,260.3253660290502,260.5527470856905,260.4334823107347,260.2016739351675,260.4343309830874,260.1327960062772,260.43122569750994,261.31136511219665,261.4434876907617,260.61805556714535,260.4896712359041,260.85800990695134,261.7765135234222,261.77506544440985,261.9054054580629,262.4580766656436,262.77417071536183,262.7119422634132,262.995316082146,263.3533698678948,262.91438595578074,262.4567951471545,263.3388707670383,263.89355596574023,263.9891902883537,263.68448609951884,262.9454155433923,263.1446544234641,263.7170945783146,263.73922612145543,263.24547689501196,262.8962556566112,263.3114844611846,263.0710337879136,262.3843062426895,261.7860988313332,262.237348921597,261.6825781543739,262.2739553186111,261.5903510954231,261.2295830398798,261.6661427686922,262.21140291308984,261.7465587789193,262.0157748484053,261.64944663085043,261.5438394807279,260.6537453169003,260.30671180645004,259.59481893479824,260.52005296200514,260.15183190628886,260.53122807620093,261.064088460058,261.6070400499739,262.0126754217781,262.8036311720498,263.56936294259503,263.34803714510053,263.34941673930734,263.97524662548676,264.1792562883347,264.2917667981237,264.401213855017,263.81557127274573,264.6332687912509,265.0052674585022,264.7961691194214,265.1608311724849,265.28741748677567,265.44093997962773,264.55040481174365,263.8551427521743,263.1683749333024,262.6167205828242,261.6370018078014,262.2482377709821,262.01535850716755,261.2094708723016,261.53512389352545,261.7352241082117,261.3414261750877,261.329529363662,262.0766110159457,262.479455945082,261.8765418031253,262.42519257823005,263.1559875551611,263.6616349937394,263.5538304205984,263.74222162831575,263.3770443839021,264.11381160095334,264.1954149999656,263.8420832599513,263.0006038658321,263.83355553867295,263.1976526398212,263.0194962392561,262.45173666626215,262.9951055748388,262.55571333225816,263.4415448009968,264.1531699048355,263.48939437046647,263.91386000812054,263.17701428290457,262.29731671558693,262.12951009115204,262.59074351284653,262.08142618089914,262.809944444336,263.2958589331247,262.76982520893216,263.3046876662411,263.8783290809952,264.42546066315845,264.9335759365931,265.89874321594834,266.20739341760054,266.60606534034014,266.77152206003666,265.8992973412387,264.9317539012991,265.46690456569195,266.12765467725694,265.9535595867783,265.694661796093,265.7482989951968,266.39999707601964,265.75786663545296,266.2972184251994,267.21375085087493,266.8120782482438,265.99170836945996,266.94251474225894,267.91302391095087,268.31863211933523,268.4580925065093,268.17187256971374,268.73818916315213,268.3929707352072,268.4654835211113,269.0017563472502,269.8829842042178,269.76468005171046,269.2189063318074,268.74926018342376,269.63597345585003,270.48079505143687,269.63921489054337,269.15370982000604,269.4897309653461,270.0410580756143,270.0068303262815,269.02821033401415,269.34991907468066,270.1606071027927,270.65362880937755,270.9824528163299,270.53706983989105,271.44139885995537,272.43544151773676,272.330809477251,271.73135037440807,272.7068199981004,273.0437311567366,273.05093996878713,273.8587986859493,274.3956483504735,273.8739093984477,274.34258770616725,273.42242348426953,273.62079097051173,273.187893433962,273.7745099067688,273.29435095516965,273.5651401397772,273.1138848774135,273.1599360140972,272.52575582591817,273.03754499787465,272.9540938385762,273.09405687404796,272.8187408205122,273.1141670104116,272.91846837382764,272.4128310866654,272.8347372729331,272.07038895599544,271.8198637361638,271.4038167069666,271.7716402458027,271.81432396313176,272.42272601881996,272.4867348726839,272.2701860484667,271.4309163149446,270.50073458161205,270.75986786326393,270.19006260856986,269.84174952702597,270.050232260488,269.5158077371307,269.3590851444751,268.5913809002377,269.5225461637601,270.3476897897199,270.30864853644744,271.0257615717128,270.067263323348,269.13554598297924,269.35984795261174,270.1569779543206,270.3238833597861,270.2433366365731,270.41858054092154,270.20305194798857,270.9437844804488,271.64063544524834,271.8067124770023,272.1551584904082,271.1711047803983,272.12572618899867,272.8905846080743,272.09932416910306,272.8376804073341,273.4841355038807,273.1471304325387,273.4403350688517,273.85646977555007,274.03489936189726,274.3621958955191,275.3262483011931,275.46836390625685,275.21925311675295,275.9752729530446,276.77714985096827,276.88370053842664,277.69417694211006,278.35041224909946,278.0604891111143,278.91918607382104,279.7498752353713,279.0522159021348,278.9221823210828,279.3511905102059,278.47496540052816,278.139037870802,278.04751274362206,277.19079397339374,278.0928685218096,278.1349554923363,278.9041351196356,277.941120182164,277.1556581957266,276.91110560670495,276.06319442763925,276.8960288204253,277.83169478271157,277.2586614624597,277.5606571752578,277.2775475811213,276.38412053417414,276.3001717599109,276.1882802248001,276.30952848587185,277.0958291380666,277.4970474098809,278.1547644305974,278.19665995053947,279.13016496179625,278.6487947530113,277.65927358018234,277.8911888063885,277.20254741515964,277.4639158761129,277.8959225062281,277.550892022904,276.9332624753006,277.04301953315735,277.85195938916877,278.6897787419148,278.3913829745725,279.065702712629,279.9393325583078,279.36196220992133,278.4983406853862,279.05203229235485,278.0668179411441,278.8894006796181,279.34207554580644,278.6474751038477,279.2118865144439,278.9909998914227,279.25252035818994,279.6908247000538,279.22001072671264,278.42912094760686,278.4926216150634,279.05309257190675,278.9564804513939,278.03725344734266,277.7278608083725,277.2326478296891,277.07680201297626,276.60848461370915,276.90463421540335,276.7258521304466,276.2112224595621,276.14621332194656,275.88224284816533,275.9816452683881,275.74148706067353,275.4516596677713,274.89682471193373,275.549254802987,275.28670951956883,276.1847688020207,276.46841651620343,276.8693222180009,277.86051975702867,278.23889485467225,278.290051267948,278.9070874485187,279.1101680616848,279.8148764986545,280.66282385820523,280.5337315965444,280.0828736904077,280.1432764083147,280.45776246860623,281.41779978061095,281.6825429289602,281.26891480432823,280.4254807345569,279.58925688965246,278.92681402992457,278.56190346041694,278.07381079206243,278.5607252176851,278.92649065796286,279.18208211893216,279.5206671352498,279.2556470707059,278.7964413277805,279.1399173550308,279.83159171324223,278.91427087178454,279.2112718243152,278.3209294010885,279.260861561168,279.74481582595035,280.478738123551,279.9058060790412,280.37456296849996,279.56825166987255,279.3972284202464,280.2687910711393,281.1564647881314,280.9499630215578,280.7201398550533,280.2176645435393,279.2290795771405,280.2128640492447,281.11207683570683,281.3265901184641,282.0104342135601,281.1049984311685,280.1703950576484,279.3628900870681,279.5024204617366,278.63486543344334,279.36944044195116,278.3773468262516,278.1745463926345,278.2228947831318,277.38655731035396,277.48291019070894,277.4715120322071,276.78654955280945,277.1890695965849,276.48522279877216,277.1534281228669,277.1456430372782,278.0351491770707,277.6087500243448,277.58177256723866,276.9316457300447,277.09715722175315,277.8506917404011,277.47003737464547,277.8065896439366,278.10558586847037,278.70776000758633,279.43175643123686,279.92081128573045,280.0136001049541,280.9538975651376,281.9037087536417,281.6714766845107,281.54800145793706,281.379398944322,282.21150706568733,281.5496888831258,281.66997833084315,281.2506597065367,281.1518917577341,280.28064494300634,280.9951500943862,280.20391064928845,280.86063213134184,281.19732265966013,281.2967433203012,282.2886966164224,283.247337219771,283.9358613630757,284.43065540492535,283.7210962944664,283.40375139331445,283.28071030275896,283.49596885591745,282.9476814134978,283.93173207947984,284.49445215426385,284.6884550238028,283.83391060493886,284.04487064573914,284.45710287662223,284.8260414856486,284.95834498805925,284.3498968463391,284.38995959656313,283.4605320454575,283.4132267162204,283.37155113881454,284.3138554687612,284.6700428449549,285.2857654527761,284.6831491421908,285.4495010506362,285.41429765708745,285.69690326880664,285.1996878744103,285.54241135157645,285.45324964495376,285.97759087523445,286.75692962808535,287.06142618879676,286.6908221906051,287.21462768968195,287.79810191644356,287.7946695033461,287.349948505871,288.15793174132705,288.76394275249913,288.43941560480744,288.8053622012958,288.40293823974207,288.48085440834984,288.30782941170037,288.82203411264345,288.08111334452406,287.81133420206606,288.24432103382424,288.3839245857671,289.1214424734935,289.0985214780085,289.5089686489664,290.3092611422762,290.4610245502554,289.7474139193073,289.02487596170977,288.2328380686231,288.07509559439495,287.10483076190576,287.48651864845306,287.786840709392,288.6722230571322,288.93942281836644,288.58901370922104,288.3477899180725,289.1813405766152,290.14729811856523,289.58245511259884,290.4499774412252,289.76179273379967,290.289017056115,289.47562028607354,288.7771718367003,287.9040553532541,287.6006186841987,287.7011806657538,288.19099994841963,287.2056074999273,286.49531006766483,285.60665655182675,285.63268440775573,284.8023227364756,284.75722524896264,285.3282534168102,284.49834756786004,283.7402530484833,284.08577551925555,285.0398144428618,284.51281418604776,285.0277714552358,285.2103426665999,286.14067037496716,285.9215227914974,286.2053687120788,286.1140460544266,285.35704948427156,285.3916092021391,285.86883139563724,286.0924875368364,285.38823594665155,285.47709446400404,285.86104643018916,286.5423181015067,286.6954526854679,287.6695668217726,286.69414505688474,286.04758052621037,286.6274795155041,286.9804183933884,287.76619451120496,287.229388454929,288.0264943302609,288.0918800677173,287.5974857099354,288.0052223922685,287.627137075644,288.51979491347447,287.9628352476284,288.92148020584136,289.1903956811875,289.83189193112776,289.1249728333205,289.0506657762453,288.1748759695329,287.87877619965,286.9453313467093,286.58724855817854,286.74520440772176,285.86014869902283,286.57830023253337,286.2147001326084,285.7529502166435,286.3113772533834,286.7590856552124,286.0454782852903,285.64842541189864,286.2994176056236,285.79299055365846,285.22450130200014,285.31273218477145,285.66685166116804,286.0334238433279,286.3152823410928,286.48854573862627,286.61000810656697,287.41630058642477,287.1690659392625,288.03557220334187,288.4205894106999,288.50180348707363,288.32606474030763,288.7642372138798,288.330017413944,288.0618128129281,288.42035671742633,287.7335100010969,287.0556491119787,287.3277623318136,287.07539711054415,286.2929524453357,286.73107673740014,286.39914333680645,285.6678006160073,284.8358709313907,285.56683204555884,286.09093951201066,286.03153839800507,285.85344930924475,285.6708648460917,285.47140619996935,285.7697214996442,285.93280697707087,286.5759442313574,287.20645218808204,286.6305682146922,286.77696320135146,287.2285455423407,286.3339509568177,285.36988283181563,285.93152028042823,285.9917277577333,286.48772779712453,285.91986443521455,286.5051854806952,287.13088472094387,286.69243838777766,286.16716639185324,286.53280873736367,285.92851441539824,285.39801628375426,285.07410570047796,285.2313170284033,284.29194091353565,284.97771729761735,285.1522686127573,284.95492692478,285.1516266418621,285.79161729710177,286.3697193902917,285.4532905500382,285.74866914283484,285.5017293500714,284.76237356988713,283.88088521314785,284.10761126643047,283.5095449248329,283.2658326514065,283.1812609420158,283.8579163122922,283.18421817710623,283.11321082897484,283.1179633419961,282.81731758639216,283.4322486030869,283.2940395344049,283.5268426206894,284.2476751860231,285.0818203841336,284.2084243763238,284.7852280517109,285.6760111921467,285.5005143615417,284.80261894874275,283.8438481790945,283.00358286499977,283.12452205689624,282.1513144848868,281.1853844127618,281.2595037641004,281.20152804488316,281.3156043840572,281.60530458716676,281.77838324336335,282.0397967142053,282.1678276951425,282.6170174861327,282.47041311999783,282.28485452989116,281.82149244006723,282.08903485396877,281.5458612604998,282.51976471114904,282.5131921870634,283.3080723839812,283.0965967224911,282.19833935052156,281.85414066538215,280.854280824773,280.76091575669125,280.2968456814997,280.02862076368183,279.75749322073534,280.02263529924676,280.35231921775267,280.16675938759,279.4793146364391,279.43932906584814,279.35280521353707,280.2848477959633,280.43401773273945,279.50728754978627,280.4882895089686,280.2389901089482,279.9990490744822,279.88966957246885,279.79275473067537,279.4620862309821,278.7059871745296,278.826746692881,278.91552353464067,279.02389683015645,278.1530262203887,277.59219289710745,277.2222940325737,277.5595012730919,277.7385022123344,277.7144208038226,277.7272138367407,276.838055734057,276.2122707650997,275.428100542631,275.5671778009273,274.5883812303655,274.7047837418504,275.25252815755084,274.85038071591407,275.6117068300955,276.58042200049385,276.56479863869026,276.26390394568443,276.8166689216159,277.23358346754685,277.78572545945644,277.02648750226945,277.28007463086396,277.31265295064077,277.31100212363526,278.1516077313572,278.4131544451229,278.4829064095393,278.8607143582776,278.35808769380674,279.0192350577563,278.9101194073446,278.15793921239674,278.4049999509007,278.19881516881287,278.6816374058835,277.7302584424615,277.42671389644966,277.12572918320075,277.9804506036453,277.10020865499973,276.9185438072309,276.33308060327545,275.59423036081716,276.0078702615574,275.9611837710254,275.25927755469456,275.02037045685574,275.568956353236,276.13138289097697,275.7168200602755,275.5092543079518,275.190924808383,274.6400700164959,273.9093801542185,272.9682196304202,273.44446045765653,274.1174223739654,274.15203365311027,274.98915837705135,275.62449397705495,274.65893056523055,273.7138898805715,273.76187675073743,274.1665694541298,274.1253367513418,274.6719540138729,274.89159970730543,275.3472364516929,276.24833171861246,277.12072743754834,277.86489757616073,277.5571039128117,277.4250403204933,278.02591105597094,278.69858238566667,277.8015628554858,278.28324302239344,277.68568929377943,278.0358644044027,278.4857971519232,279.37100115651265,278.45018860371783,277.56324840663,277.2635947088711,277.89647206198424,276.99893493624404,277.1031301985495,277.5798197486438,277.57388928346336,278.48885232722387,278.34902373794466,279.2090962580405,278.85015136841685,278.99971294682473,278.0338928485289,277.89538318524137,277.64972007321194,278.62971619935706,277.9998028697446,278.75105730770156,278.8722448782064,278.5809823446907,278.0935820569284,277.4241276476532,276.42741732951254,276.53218414168805,275.5985928075388,274.9253638153896,275.75759980548173,274.9794849604368,275.88228695560247,276.2670273100957,276.64443565299734,276.9650765727274,276.66973463911563,276.2059842692688,275.2975092353299,275.19250295637175,274.5258898246102,275.46499614138156,276.2048029284924,276.49807998305187,276.87773946207017,276.3225269042887,275.7423983500339,276.2153178136796,275.3936287742108,275.6967739518732,275.0333501440473,274.8286436055787,274.8591956421733,275.50134635111317,275.33306746790186,276.3289720476605,277.22541506541893,277.74467598227784,277.37577102240175,276.734540280886,277.2376868268475,277.74051166372374,277.05682247690856,277.8765019052662,278.82264691311866,279.28325148765,279.69050446059555,280.580833543092,281.5635689687915,282.0175825301558,281.0260174260475,281.7162468810566,282.1523521305062,282.43857652693987,281.84767135977745,282.4680752842687,283.02957302099094,282.92329234303907,283.3538668504916,283.76756515633315,284.51427179249004,285.4218595325947,285.47221004078165,285.69118329742923,285.07272875029594,284.1500428779982,284.6285527618602,284.48898424906656,283.9629105972126,283.94573629135266,283.54781369213015,282.9027674868703,282.10444284277037,281.6513848323375,281.63429004885256,281.75790847139433,280.80609447555616,281.5662541780621,282.3849718151614,282.7353180372156,283.4886473440565,282.7741091554053,283.34436732530594,284.0527830561623,284.9274473628029,284.72636585868895,285.1559896329418,286.1399652021937,285.21468286868185,285.15968905668706,284.9978730585426,284.1218693368137,283.91526074288413,284.1844376944937,283.49942393414676,283.37292475719005,283.2560557788238,283.6945766871795,284.1286602858454,284.27551156654954,284.0523661491461,283.32410794263706,284.1334335273132,283.34984911978245,284.2638871804811,284.8709968691692,283.8725147577934,283.3955489923246,283.75185588374734,283.4852893319912,283.79195327544585,284.0304983058013,283.9244061522186,284.1833300110884,283.8575209947303,283.5864394553937,283.3133428138681,283.05721552390605,283.51820043986663,282.71281866775826,282.12017543660477,282.8469540528022,283.7662794040516,284.7566426130943,284.4339510225691,284.11758692516014,284.01807706663385,284.60826237825677,283.9792244262062,283.06223658891395,283.3127584964968,282.4725166442804,282.91319306753576,282.9488680893555,283.3674739021808,284.3625145726837,284.324735104572,285.0915551679209,284.2134447270073,284.52750973636284,284.3250228022225,283.4119776324369,283.5236101318151,284.2071963553317,284.64089177316055,284.7045241841115,283.7998919552192,283.33685811562464,283.85356774087995,284.8056432977319,285.2578075788915,285.33943619951606,286.1287787738256,285.90372443944216,286.10780596220866,286.7707113698125,286.87048724200577,286.0554538941942,286.2373691420071,286.5526956906542,287.4047950915992,287.78945569787174,287.1895889509469,288.1864308291115,288.2619982259348,288.9547293637879,288.26894084597006,287.5578162712045,288.14702699379995,289.0897194868885,289.66514265956357,289.62039278028533,290.2165931421332,290.2553728283383,290.5592407891527,291.30195900890976,291.39580333791673,291.18122898135334,291.58249599067494,291.68278833990917,290.7432242054492,291.6363482661545,291.3692990555428,291.7551815812476,292.33315659407526,292.14134965185076,292.32030132133514,291.7970363474451,292.6669429698959,293.0652337586507,293.2972478531301,294.2255231924355,294.75005796412006,293.75136074097827,293.29253157041967,292.7059973855503,292.45845872024074,292.6478017633781,291.7819818551652,291.0325527349487,291.5447431942448,292.0034576058388,292.6281430646777,292.2679291944951,291.3512455727905,290.3658722057007,290.54265438579023,290.35503435274586,291.2682929355651,291.540282655973,291.26320520602167,290.66042170254514,290.63224952993914,290.2146607437171,289.3220218764618,288.4950417773798,287.8584573175758,288.1010320377536,287.7815480832942,287.53895986313,288.16965597542,288.62516016466543,288.7485344163142,288.8129925392568,288.38339444668964,288.77302484447137,288.7223256598227,289.3632370494306,289.9000445641577,289.49103756342083,290.21235888265073,290.8979571228847,291.112872665748,291.4473664611578,291.77111411700025,291.84708052128553,292.6645509018563,292.7779062888585,292.36112525034696,291.7823363621719,292.184284796007,293.0370952123776,293.50305515294895,293.71781941410154,293.54984831018373,293.3948352537118,292.97417488880455,293.2362107052468,293.7102178009227,292.96271728212014,292.7219050643034,293.39763442100957,293.0497271195054,292.20684245880693,292.1660549324006,292.91644878685474,292.644761628937,291.79834276949987,291.68060208065435,291.26735961809754,291.9684077394195,292.4126627887599,292.00265282113105,292.299314157106,292.51035629957914,291.6585248913616,291.46043087076396,291.16998798493296,290.54799542343244,290.88328058598563,291.60581321967766,290.6300354991108,290.0041359728202,289.37042993772775,289.88483178941533,290.13470262568444,289.1848890474066,289.3324135611765,289.9314183369279,289.7672491115518,290.2691649692133,291.2256163950078,290.5847492464818,290.15177432401106,289.9216869864613,290.02451899275184,289.8587612095289,289.5093301613815,289.8533005048521,289.40565920621157,289.16962997894734,288.7518396936357,289.0771512440406,289.0052466741763,288.90376299479976,288.8445434863679,289.3833383540623,289.02356913825497,289.4614432230592,289.45924401097,289.5389771112241,288.6994840875268,288.60676449071616,287.8003398072906,288.06902335816994,287.3858355800621,287.21864398242906,286.4523313525133,287.3765510665253,287.13539889547974,287.3158023809083,288.08124817721546,288.5913580432534,287.8385470393114,287.37886030366644,287.5247656540014,288.3545373035595,288.3844414385967,288.5467207371257,287.68042487837374,288.05664359405637,287.37725616944954,287.523579810746,288.0717116338201,288.6020928011276,289.33857387816533,290.0544301937334,290.5271567609161,290.5089105037041,290.25324509246275,289.85481476504356,289.69556364929304,289.78796495497227,290.4026995752938,289.9013882498257,290.8259453168139,290.3191831833683,289.4186569796875,289.8175945975818,290.72638022666797,290.8879712764174,290.1465437733568,290.3070008982904,290.99377355724573,290.0810287403874,289.3553359406069,290.1052888324484,290.54182044090703,291.26804056577384,291.0015863352455,291.91333521250635,292.57598930597305,291.86905287997797,292.702576673124,291.96678569354117,291.9627373176627,292.659714427311,293.53465339448303,293.70119032170624,292.7285994263366,292.61835854360834,292.8688235282898,292.4314834023826,292.9186940738,293.7553823776543,292.81148482393473,292.30604137293994,291.7667160271667,291.6958742067218,292.06296384288,292.6515075583011,292.28872914239764,292.5651594568044,292.5117776757106,291.9838384022005,291.08182441908866,290.3017246359959,290.8349814293906,291.15644184453413,291.77504382422194,291.1668288856745,290.44476111093536,289.51515526371077,289.49264290276915,289.8431856012903,289.4615968223661,290.0505487290211,289.31014054315165,288.9987236834131,288.27715045167133,287.7792197796516,287.6888127634302,287.9330521081574,287.95174071518704,287.6446754327044,287.9840309647843,287.8831875300966,287.6058882055804,288.11250954680145,288.6584837124683,289.5124787669629,290.2159526455216,289.31187269324437,289.090968798846,288.8231630460359,289.50118431681767,290.36740913661197,289.5450275177136,289.52236146014184,290.5147054763511,291.00062969326973,290.67737495386973,290.48068466736004,290.4603062751703,290.21032527880743,290.13299677567557,290.132946413476,289.60413117473945,289.6452025673352,290.14166937116534,289.16313992487267,289.626300833188,289.1088192705065,288.4526849160902,288.26750851469114,287.5796223846264,288.4545956584625,288.3238133448176,288.81348746456206,289.50259248306975,289.56680587120354,289.48778764670715,289.2862719860859,289.416179693304,290.14192816009745,289.95127516333014,290.505136243999,289.73165904264897,288.8358567808755,288.156493275892,287.90597518440336,288.3682341654785,287.668250718154,286.78922357596457,286.07915424136445,286.06689353240654,285.1207772945054,285.1647007530555,285.85424256836995,285.31258868519217,285.25139986816794,285.63625095551834,285.09393482422456,285.5178498295136,286.0172221935354,286.200473416131,286.44006610428914,285.73215305106714,286.6828244063072,285.76268182322383,286.66660387953743,285.7684847828932,286.09210814442486,286.2136209355667,286.86420342419297,286.0701536103152,285.8879629848525,286.1639748015441,285.3407345432788,286.07656755205244,285.4548297468573,284.5160628464073,284.0497979684733,284.0379402427934,283.83277068659663,284.4926866404712,284.72057211305946,285.3497579009272,285.29601808730513,284.6905593741685,285.55262111127377,285.72589914500713,284.9142466811463,284.8236438827589,285.7509361919947,285.08193426020443,284.4603226403706,283.84269903600216,284.22152442252263,283.8275415999815,283.27917059278116,282.87809625593945,283.47686856565997,282.8080165218562,282.4025748996064,282.8081058617681,283.47824683971703,283.7444053138606,284.1713635167107,283.1855093645863,282.2856992781162,281.6579075269401,281.5077853365801,281.47781885182485,281.07329342188314,280.64234033273533,279.8111674580723,280.0920670730993,279.89810410607606,279.81177579332143,280.79950746009126,281.70506008481607,282.6044771769084,281.6109785027802,282.57466342300177,281.96502434369177,282.0575633402914,282.50723910564557,282.05498787527904,281.13648959901184,280.2621139525436,281.2494668215513,280.73686370253563,281.384690427687,281.4793241545558,282.4440311547369,281.6864122687839,282.62364132748917,283.03936347644776,283.6368189700879,283.02132002077997,283.6193029298447,284.5041318698786,284.00313522759825,283.3508160561323,282.65047669317573,283.4774254979566,282.6601349893026,282.73521081451327,282.6911306818947,281.7862676284276,280.970475230366,280.69585834397003,279.902444136329,280.3158780084923,281.2050815913826,280.2273537842557,280.8747995966114,281.63825634820387,281.092362690717,281.8128151851706,282.2988747241907,281.7014827071689,281.27092192554846,281.8665127065033,282.16628643963486,281.3496341370046,282.3210597615689,283.09244788624346,283.08272390579805,284.03428392484784,284.08960906788707,284.5104863997549,284.85848088236526,284.0131056481041,284.4959742282517,285.2440668954514,286.1987467831932,286.849839462433,286.9939585691318,286.1573557499796,285.58712010877207,285.60290053253993,285.99111792398617,285.4379658889957,284.8684522998519,284.2372939889319,284.00707363151014,284.3957565659657,283.77630601776764,283.25897796917707,283.6049135248177,283.8915913426317,284.2733886446804,284.85331017849967,284.9862613007426,284.78920424962416,285.69696136098355,286.1747003966011,286.91191532462835,286.99133230373263,286.61748449504375,287.4195114383474,286.9017386767082,287.6981128975749,286.80920585943386,286.09485506732017,285.4490099325776,285.8008967731148,285.21614319831133,285.06022506719455,284.2711816453375,284.04898661514744,283.91669183271006,283.35602660290897,282.6621342357248,282.323584692087,282.37896985933185,282.68986564548686,283.58998853946105,283.0975284050219,282.62744331825525,282.8489643232897,282.4807097944431,282.4529020115733,281.623393248301,281.70662896567956,281.196890081279,281.97755006467924,281.06144545879215,280.2122843773104,279.48841974604875,280.0271248673089,280.74977346137166,280.0539019731805,280.5404407661408,281.07214672118425,281.51651075528935,281.6186608900316,281.3109314823523,281.00012175086886,281.77395564923063,282.2583663254045,283.2265771809034,283.4571411437355,284.37611901247874,284.734294265043,283.93015622580424,283.8043892956339,284.6424183710478,285.58922767359763,285.5219170576893,285.26360253896564,285.84992940258235,285.0299598746933,286.0234203748405,286.50397168891504,286.2787861521356,285.28765289345756,285.3344082473777,285.28955931635574,284.6137930951081,283.98925397498533,284.3645458552055,284.86852345988154,285.35564527567476,286.03912325017154,285.42256507324055,285.9335634689778,286.4894569502212,287.1368626439944,286.2186323045753,285.3198330276646,285.23096378333867,285.36325287865475,286.2014000765048,287.10330269206315,287.2069957680069,286.45350132137537,286.2855139244348,286.44284703722224,286.0574410986155,285.8149752272293,286.0885816491209,287.03247335134074,287.5136357303709,288.4733025236055,289.34510760894045,288.86292602075264,288.76411501085386,288.19534477591515,288.4210158409551,288.62249797862023,288.3634055647999,288.97883284650743,288.3925318471156,288.2028303281404,287.52853033086285,288.49759167293087,289.4343910338357,289.95507154846564,289.3999385070056,289.5544137856923,289.30993545474485,290.13838912174106,290.47251427313313,290.9911435386166,290.9995284732431,290.8799373013899,291.5889512435533,290.8728987551294,290.47445172956213,290.4174954299815,290.09364979248494,289.6694528553635,290.27836492005736,290.95134560670704,290.84362318040803,291.5667853252962,290.60015543038025,290.88362119486555,291.07503018621355,291.5820427662693,290.7245476092212,290.2104557612911,291.2044509486295,291.84968661982566,292.19434133544564,291.8938258700073,292.62454382237047,293.52921664202586,293.47780656721443,292.5322758979164,292.621710837353,291.7590833851136,291.1356996349059,291.6675366908312,290.74466317892075,290.22831715177745,289.29775465931743,288.5444088159129,288.365008530207,289.2185158324428,288.5751159368083,288.52262891596183,289.31500038923696,288.8429763484746,288.25232826313004,287.57709073321894,286.84901019372046,287.0981672103517,287.27146427193657,287.0720648923889,286.9105281406082,287.0574097465724,287.95281950291246,287.1086143949069,287.3163438765332,288.15486656175926,289.03295270958915,289.88528522802517,290.0671409214847,289.6786339157261,290.36709623085335,291.17152577266097,290.72892102925107,290.5838674912229,290.7744628121145,291.5680444990285,291.574383021798,291.28849623259157,290.4206501338631,290.76940895523876,291.4007327412255,291.24655702663586,290.9771378780715,290.38435945566744,291.16882646875456,291.6443493831903,291.7588571640663,291.35502274287865,291.4181796037592,290.86108159599826,290.96567274071276,291.31744458014145,290.6884099072777,290.2511048624292,289.40076314099133,288.735640253406,288.7136031524278,289.1748959394172,289.6671229186468,289.54118441743776,289.1324930326082,288.64029846619815,287.7575417426415,288.1267944588326,288.00753734307364,288.21432366687804,288.1179765127599,288.08976596966386,288.86228482751176,288.15173926064745,287.95595229323953,287.54929972067475,288.4210814386606,288.4796947767027,288.97068132972345,288.4020433067344,287.88108271127567,288.81043562153354,288.21728995628655,287.54303426807746,288.07245927862823,288.4975634943694,288.761744115036,287.7838963801041,287.95670657558367,287.0331965931691,286.08836639346555,286.61725029349327,286.3433864619583,286.35877740662545,286.29621835658327,285.37982990033925,285.55280405050144,285.6634662928991,285.5917229228653,284.8841128372587,284.72960349777713,283.83886024169624,283.27186908433214,282.77466830890626,282.1110143447295,281.2384317070246,280.29674214078113,281.10655308747664,281.0814345977269,280.75484073674306,280.00884241471067,280.01073349034414,279.327129653655,279.2867973376997,280.2296550888568,280.19728189567104,281.1042981343344,280.43263951083645,280.6247451733798,279.9323984961957,279.2791968099773,279.74506223667413,280.37797884922475,281.0824139486067,281.2108661783859,281.658849013038,282.0659737093374,282.2621215675026,282.2981470390223,282.8324723332189,283.6514769792557,283.89676583604887,283.41287670843303,282.84292321885005,283.49474483914673,283.96844850853086,283.0741126658395,284.07193433865905,283.48267486086115,283.9989929385483,284.1312903673388,284.1764917606488,284.31098733469844,283.7688412712887,283.42830916307867,283.3374162944965,284.11447616061196,284.26066871127114,283.49744613235816,283.6112459274009,284.47996483230963,285.4426055843942,286.1359168291092,286.39846363896504,285.8856070251204,285.5138279334642,286.24595131212845,286.83631975762546,287.8321260763332,288.3429862651974,288.49884876189753,288.2672010003589,288.40686309011653,287.6273399088532,288.14693056512624,287.8925284394063,288.74040391575545,288.1723636495881,288.6391796255484,287.96986118424684,287.1917308261618,287.2951403129846,287.40747889783233,287.2075162134133,288.0461266692728,287.9740115129389,288.7503915936686,289.12368031498045,288.19414515281096,288.481430713553,287.50237887492403,288.3414615332149,289.31959395250306,289.8348840046674,289.23536113556474,289.910637721885,289.050983666908,289.40929294284433,288.63545404560864,288.4763930570334,289.16302100289613,288.82694624271244,288.7556434478611,287.8625360080041,287.0252809152007,286.35503660468385,287.07407426135615,287.76711815875024,288.67302778782323,289.35891306214035,288.38681413279846,288.5997899346985,288.8124737376347,289.4386922484264,288.71100114285946,288.9329332965426,289.5410120654851,288.65873356489465,289.08655529282987,289.80260580498725,289.88080163626,290.3794786850922,290.80589042650536,291.17776701413095,291.96501015359536,291.0486041349359,290.9038505712524,290.7556075081229,291.6858893567696,291.7805764381774,291.30562018835917,290.914997165557,290.55769409099594,289.6899118470028,289.9826355576515,289.5891039557755,289.280700057745,289.169558938127,289.85754193598405,288.9957992671989,289.1477062259801,289.4222149839625,289.3993815011345,289.65238865092397,290.04256952088326,290.0604110620916,290.2225621221587,290.1422457937151,289.2233740785159,289.9180462108925,289.46061522187665,290.20699653588235,291.0793667919934,291.99698718218133,291.89849339192733,291.20131948636845,290.41514507401735,291.06374264974147,291.6603140956722,291.99102082429454,291.25338609609753,291.79592782771215,292.66515750437975,291.66854571783915,291.3301266813651,290.9442789279856,291.8622244819999,291.7824599784799,291.78586834389716,292.62465513823554,292.64605628466234,292.5629992540926,292.6235716547817,292.67164322407916,293.1392198181711,292.83716654079035,293.1439470704645,292.9394908649847,292.3984292880632,291.5459986999631,291.6765297809616,291.8017516215332,290.8507580370642,291.6070810481906,291.7307063625194,292.41810931125656,291.724166829139,291.42340069031343,291.7845627130009,292.16247787093744,292.07139692781493,292.5155207118951,292.6291836970486,292.7628306974657,293.3908418272622,292.82750293798745,292.40614781854674,292.69979342771694,293.41527015855536,293.8265990950167,294.43028258159757,295.1032653278671,295.6487341481261,295.64457517582923,295.1795251821168,294.652895714622,295.1695129647851,295.3111984664574,296.1548931482248,297.0276170996949,296.4700291855261,296.484022449702,297.28753688186407,296.91133641730994,296.1552955782972,296.3368924134411,296.85974430153146,297.6154384817928,297.5991309545934,297.09993086662143,297.604029440321,297.04490543715656,297.44525471841916,297.55135555705056,298.4177231262438,298.6724940952845,299.374645028729,299.7397053865716,299.067299135495,299.6277654739097,300.07179309846833,299.7365619195625,300.59276968427,299.61991692893207,298.62059626495466,298.2844357024878,299.1748304110952,300.12387331947684,300.63688086532056,300.0196457938291,299.7536253151484,300.1233537364751,299.56676056981087,300.39948218502104,301.2772680413909,301.53393710497767,301.0003015389666,301.45300379768014,301.39575081365183,300.93905739765614,300.1911430982873,300.6128444378264,300.54189297696576,301.00273148715496,300.1805870416574,299.50434291828424,299.88569883815944,300.0225954274647,299.64250434190035,299.5437038894743,300.19822972640395,299.2314644046128,298.31724964641035,297.82132752472535,297.1427388386801,296.9138114009984,296.3106825458817,295.65202731080353,295.18952498957515,294.5304527170956,295.393451877404,294.79168132599443,294.37902948306873,294.59002080606297,294.141285979189,294.94282757956535,295.8982430710457,296.636431384366,297.2327778209001,297.48939361888915,297.71216044249013,298.1625556508079,297.34569801203907,297.56509471451864,297.8162408354692,297.5107982084155,298.15325308358297,298.22831486258656,298.57664031442255,298.5362089234404,299.20024042902514,299.662855877541,299.79789037257433,299.272485146299,298.36709044361487,297.53239019820467,298.02313457103446,298.9162900727242,299.4331886386499,300.26286342646927,299.7697912803851,299.03662344347686,298.98664327710867,299.96297132689506,299.41413227049634,298.9300066684373,298.7439884310588,299.43582251342013,299.973496532999,300.2692840131931,299.85754420468584,300.5133334607817,300.6238645534031,300.02239575237036,300.80091419583187,300.90204452350736,300.7519886251539,301.4695242238231,301.60284445621073,302.16878814669326,302.0993021791801,301.78597257565707,302.0179000920616,302.6468099001795,302.10516132367775,301.18631476489827,300.6335774785839,299.96009953320026,300.138576538302,300.99714594427496,301.1985148792155,301.1371532394551,300.58179661398754,300.81399209424853,300.53830296033993,300.42125209234655,300.4499334101565,301.01784280268475,301.84360578423366,300.86451090313494,300.8533881409094,300.7117222729139,300.9505505403504,301.7544379676692,302.65582088567317,302.60458102310076,303.6033967183903,304.49777444731444,304.6031979112886,304.56838641222566,303.97708385810256,304.12770452024415,303.41307542379946,303.80929023306817,304.51339765731245,304.1349396696314,304.2280528359115,303.7637218539603,304.11297273170203,303.5766974207945,303.26940442761406,302.63284067530185,302.42508873855695,302.2568252137862,302.55948504665866,303.2500533470884,303.1831073635258,302.51289975922555,302.8540017469786,303.2958517395891,302.3822096893564,302.4933004598133,302.24139081686735,302.75334090925753,303.5471294526942,304.5198607207276,304.4014085759409,305.2359676240012,305.56801996426657,305.6343871182762,305.1678660623729,305.81409629434347,305.62816009670496,305.09333493746817,304.2395461765118,303.5362000237219,302.80776089057326,303.76129083009437,303.62044318951666,303.7221384048462,302.90883338451385,302.597047876101,303.4945264332928,303.57959626149386,303.96154178259894,303.0095657836646,303.8923189602792,303.8793129972182,303.6806330787949,303.37102440046147,303.7564491457306,303.6696411538869,303.06323550036177,302.73612909344956,302.3541027200408,301.9272920759395,301.2624986427836,301.1246100035496,301.0863230424002,300.92563798930496,299.9649861427024,299.7466639019549,299.4656691234559,299.07404457358643,299.02512294985354,299.33114180900156,299.6748869707808,300.6431657974608,299.81476952088997,299.94419987220317,300.84079487714916,301.73341576196253,301.2453798693605,300.97097468422726,300.20361620746553,299.42866508523,299.20118461502716,298.7560694334097,298.36107431491837,298.044852248393,297.5924298991449,298.36566075729206,298.9233067915775,298.02944546053186,299.0189153170213,298.09911473374814,297.8310102657415,297.39883249392733,297.3365897187032,296.3368482943624,296.57110447250307,296.1030314331874,295.47921705106273,294.57520882738754,294.58765214914456,295.23886032029986,294.51265892433,294.27396467886865,295.1252592918463,294.16265263129026,294.2623074199073,293.57018985506147,293.6436614082195,294.2900368636474,294.46836159657687,294.8616643762216,293.99115374078974,294.8679994586855,294.6003695144318,294.02483769040555,293.25328424805775,292.6263681547716,292.8669207380153,293.5013470300473,293.19999826326966,292.22298376914114,293.11706965975463,293.5358567610383,294.2585722221993,294.77248222986236,295.1234182501212,295.6077941088006,296.0685351556167,296.9796674111858,297.2134718759917,297.78651056298986,297.258813760709,296.2625796799548,296.6418837583624,295.88664206536487,295.1117635644041,296.10364367533475,296.4560649357736,297.14367631683126,296.2163125947118,296.7814082466066,297.6961603057571,298.5306650106795,297.6798414471559,296.7803161460906,296.3655122262426,295.75677662342787,295.0325342719443,295.1418624445796,294.22544874297455,293.6179919023998,293.52477687690407,293.64298461936414,293.66062314622104,294.33611117023975,293.46336439810693,293.94900835864246,294.3275648043491,293.4137368318625,293.04535811953247,293.94309671549127,294.9162579746917,295.3960940875113,296.17439599940553,296.8081459477544,296.91475539281964,297.56580308871344,296.72899055760354,295.8574408744462,294.91124661732465,294.42077264981344,295.1993526946753,295.5932178348303,296.4713532188907,296.2378928447142,295.8083454198204,294.846638369374,294.6731590470299,295.4479762716219,295.35042483499274,294.86966721806675,295.4976986660622,295.1933710905723,295.23579282080755,295.28803709940985,295.5451462222263,296.0399175300263,295.8573071286082,296.7508448478766,296.8187965489924,296.02020651241764,295.46547352988273,295.28442940022796,295.6729537555948,296.0074492902495,295.6926785171963,296.63358320947737,296.97157319728285,296.8029054906219,296.298943430651,296.38619399257004,295.54582285834476,294.8771327235736,294.56886194041,294.9759819349274,294.5478431964293,294.00942335044965,293.0990151455626,294.0584277557209,293.05864081485197,292.7197456425056,291.78528469754383,292.262125024572,291.676462974865,292.07784902956337,292.72024862188846,293.4788369880989,293.5985762369819,293.93568596057594,293.79416954517365,293.516321440693,294.49841647269204,294.46193443378434,294.2884000232443,294.96638432890177,294.6978651639074,293.98580972338095,293.4387070448138,292.57404151186347,292.52265371056274,292.4476662748493,292.08992746379226,291.13092069188133,291.48571863165125,292.0783956986852,292.93377336254343,292.3243678556755,293.0361810042523,292.49977556895465,293.0425320761278,292.5916935475543,292.52756001939997,292.57163575058803,293.18819290352985,292.42670481139794,292.52354698767886,292.80401434050873,292.81314034201205,292.14092126255855,291.51842221664265,290.7556977630593,290.01823610952124,289.88478766568005,289.97593525471166,290.2339490461163,290.95839562406763,291.1742488425225,290.2773977201432,289.4239054499194,290.2283219769597,289.5151113187894,290.1044719647616,290.9504584223032,290.3712825146504,290.7917746277526,290.24022364616394,289.70618039323017,290.40683639235795,291.2106871381402,291.7386135002598,291.5543039930053,291.0457715848461,291.4758337107487,291.08668350661173,291.4497166820802,291.0611030096188,290.53459204081446,290.99789153179154,290.9238802953623,290.1717942892574,290.106060850434,290.6296052034013,290.17726340377703,289.73532297089696,288.749238520395,287.85327857080847,288.2940911697224,287.8710252540186,288.3249277267605,287.6407859586179,287.5732606560923,286.59693571040407,287.0472261523828,286.2006090772338,286.1450508781709,285.9951561545022,286.02809844724834,286.1816812455654,285.87984683644027,284.98691206611693,285.49872071668506,285.0935671548359,284.75124229025096,284.2423820188269,284.9630729742348,284.7507931170985,285.7487603034824,285.2441107900813,286.14750015735626,286.8288380992599,286.94513147184625,287.7969445870258,288.54149907734245,289.488175177481,289.052984517999,289.31540450872853,289.5063240416348,289.5825779857114,288.90583685133606,289.62272061780095,289.2653037812561,288.811793663539,289.63487361744046,290.45275834109634,290.03144607832655,289.51343638356775,290.3570609106682,290.5581360938959,291.0209984909743,291.87686533713713,292.130626777187,292.6577014415525,292.7878944459371,292.4897435409948,292.143508750014,292.53086471231654,292.71073362324387,292.9972135145217,293.3145612673834,293.8079126817174,292.94944560853764,292.6956047825515,291.8537259027362,291.9009085809812,291.4442604924552,291.42846787068993,290.9756817827001,290.93062792764977,290.9322562646121,291.307251597289,291.545795885846,290.6067993515171,291.2319384906441,291.21466510975733,290.4652316579595,291.33272833377123,291.74430913105607,292.22603088617325,291.92363069485873,291.5512456460856,291.2738631712273,290.80870557250455,291.43375700572506,291.82252136524767,291.3726973333396,292.34747000038624,291.61349459551275,290.96949927089736,291.07253270596266,291.36199735989794,291.6972371279262,292.3636124031618,293.2074998994358,292.91547566931695,292.39085314655676,293.31642356840894,292.80928502976894,293.48380030691624,292.74916939996183,293.43377337697893,292.6408455297351,293.0591148780659,293.67075947020203,293.66866435622796,293.95701371878386,294.0178151628934,293.6078375419602,293.74069883069023,293.5748901953921,294.010210508015,294.36673821508884,294.81060903985053,295.77683320688084,296.4231369616464,296.1179061131552,295.16616927832365,295.37608240917325,295.54720351612195,296.3886229475029,296.42058949219063,296.14922084473073,296.6445099688135,296.170503243804,295.21283942321315,296.09500082721934,296.7597386376001,295.9289497938007,296.45956137916073,296.5017010620795,296.88071610964835,296.0602589091286,296.8599876733497,297.608605414629,296.61035736789927,295.8160233590752,295.6098688598722,296.33492990303785,297.08445801911876,297.39376057405025,298.3649857826531,299.01938877254725,299.71975628845394,300.2133141839877,300.6406991039403,301.09740058751777,301.7497999467887,300.94749295013025,301.2640955722891,300.7696179836057,300.6856648414396,300.21334849344566,300.93080415576696,301.12798320222646,300.63326738541946,301.5816148282029,301.5874487818219,301.47286607837304,300.49694791343063,300.7073924089782,300.2931069438346,301.2539432137273,301.2874845811166,301.1789728230797,300.48056139517576,301.26931207301095,302.2219843189232,302.04489916935563,301.6700786948204,301.83293143380433,302.5157388136722,301.5473677427508,301.69216507533565,300.9849183629267,301.2065628422424,302.04517590859905,302.51284697884694,302.62407564604655,302.0883082738146,301.6344410581514,301.9422157490626,301.90352981258184,301.74818075587973,302.460135968402,301.9588671643287,301.48221324943006,300.89517819788307,300.98451624671,301.8733291849494,301.39425686141476,301.6907547865994,300.8484793724492,301.6494979285635,300.9428312284872,301.48879079753533,300.7462687366642,301.01851551327854,300.50323303835467,300.57880650740117,300.7032147347927,299.98227359028533,299.7783633596264,300.11085271602497,299.25180095341057,298.65183784253895,298.7502495152876,297.88109058281407,297.3878370434977,296.793771287892,296.84853376680985,297.23932594805956,296.65146994264796,296.44606372667477,295.9309831210412,295.82683308888227,295.27762534096837,295.90944055235013,296.2062778356485,297.01393699878827,297.4280436723493,296.85804540477693,296.79918196890503,296.19924176763743,295.3933531977236,295.3131036874838,295.42430969467387,295.1008830512874,294.214578977786,293.50391044002026,292.76448167162016,293.4097522641532,293.7085644756444,293.43943125614896,293.4186402526684,293.2720274021849,294.22856622515246,293.33602185640484,294.21611767448485,294.15971319610253,294.6222555972636,293.7733309478499,293.4148969342932,293.1025568759069,293.1758409915492,293.81389709562063,293.11594595201313,293.0506111299619,293.6922639380209,293.34763845056295,292.9535300969146,293.8305684039369,294.5523482491262,294.7364826449193,294.8080615028739,294.73378534661606,295.2631855099462,294.64274290250614,295.4142164317891,295.52356463111937,294.9236572389491,294.61586546944454,295.60703076189384,295.60264770453796,294.62516538612545,294.65368761867285,295.5081336610019,296.4171106480062,297.374156862963,298.1767110642977,298.3115482404828,299.0851301513612,299.534938799683,300.01643760688603,299.0745574440807,299.3286103801802,299.8678048294969,298.86802861932665,299.41467571491376,299.78725212207064,300.64187706587836,300.8179953042418,301.3706490211189,301.64629904413596,301.4044747208245,301.7001010971144,302.41396904271096,303.05303307343274,302.28758931392804,301.5131853404455,301.9338536923751,302.00199631927535,301.6751712220721,301.24283831147477,300.8541071410291,300.3188756252639,301.1619686805643,301.11714794300497,301.7513249358162,301.9686544421129,301.3821666399017,302.029089411255,301.41808401513845,301.94938062969595,301.04614804824814,300.26334571186453,300.4802011330612,300.3312684055418,300.2828281484544,299.75462053809315,299.61001051031053,299.9592733695172,299.62225861288607,299.5269210780971,298.69225233467296,298.43265791470185,297.98922535357997,298.1967396363616,297.5660932790488,297.7349582533352,296.89106515049934,296.3838889799081,295.7930902331136,295.16011658962816,295.86997384252027,296.7157959626056,296.9514361023903,297.61987096630037,297.3778553097509,297.15562554541975,296.6326504894532,296.432030483149,296.9125057570636,297.4862871100195,297.8060622336343,297.1649758294225,297.8923210850917,296.9856843641028,296.74673908157274,297.096258868929,297.32198004378006,296.3714627479203,297.197686817497,297.7612571520731,297.21178959682584,297.2664875416085,297.7842474053614,298.3190396348946,298.51131193106994,298.8839204502292,298.2340258192271,297.7523468621075,297.191771493759,297.6250666412525,298.5938112484291,297.9268795326352,298.6651537697762,298.27917787013575,297.98100084858015,297.5346957985312,298.4855072568171,297.9863616893999,298.78941417718306,298.83778016548604,298.00738183874637,298.30325641762465,297.3767776195891,297.42742821387947,298.31944709829986,299.2766500161961,298.8914157692343,299.19605168839917,299.8026503021829,299.5719520524144,299.0742760114372,298.5986102167517,297.64472753042355,296.8550996207632,296.83279301412404,296.47490834305063,295.7981995954178,295.5788890225813,295.4290343504399,296.154163709376,297.02533177193254,297.02454419527203,296.16717448970303,296.9568733717315,297.7396616199985,297.60189432650805,297.6312748719938,298.12783999787644,297.7988294856623,298.325606522616,298.8671364719048,299.5107656372711,299.9651062199846,300.7010646252893,300.1406697188504,301.0009306129068,300.74589758040383,300.10194004839286,299.9726963774301,299.0626769508235,299.69441195297986,298.79809387540445,299.6734483311884,300.62284761620685,300.91138708405197,300.2451360169798,299.2809188859537,298.4917178330943,297.73342845076695,297.71880404045805,297.9256719839759,297.9520030450076,297.6413830462843,297.11309358431026,296.771652283147,297.1956816520542,297.56584058329463,297.95263096736744,298.77934500947595,298.78155877348036,299.19744101911783,299.9030393064022,300.7250558421947,299.82722519757226,300.78092480637133,300.62931522447616,300.42830027546734,300.10459239780903,300.90328215481713,301.3943184213713,301.68138993065804,301.863598452881,301.43437713664025,302.2097272523679,301.44043301884085,300.71423459937796,300.2628167090006,301.12503515696153,301.10315490840003,300.4920935360715,299.92210445040837,300.82688086573035,300.1275758589618,299.282112672925,300.22537295660004,300.65874962182716,301.5807520537637,302.42069949535653,301.97927385615185,301.15024163853377,301.2449106457643,300.9221669626422,300.7375169885345,300.1004668623209,300.092384155374,301.02837362885475,300.13492486579344,299.226842477452,298.9888032586314,299.92656941572204,299.59192786039785,300.5128558669239,300.0891282376833,299.48415157618,298.895642768126,298.6087358118966,299.2310402863659,299.80941752018407,299.84482421260327,300.18677668180317,301.0603026957251,300.57332908315584,300.2559398636222,301.041205286514,301.5003255531192,301.4359360067174,300.8570160730742,300.35095522738993,300.2556057483889,299.5419437675737,300.25639079743996,300.58089073468,300.6469276053831,300.77282774914056,301.4301576083526,301.10367161920294,300.618988043163,300.5507652005181,301.4423089409247,301.47601145925,302.32937682792544,303.0215374175459,302.8673151759431,302.3218492795713,301.55174372252077,300.68542773928493,300.4558869227767,300.2850380251184,300.70451083919033,300.75175662105903,301.10290429973975,300.1761421728879,300.0811369000003,300.15060063079,299.2397278002463,299.79483896959573,300.5774792446755,299.652379964944,300.2797895562835,299.72659879829735,298.99574287515134,299.6765038073063,298.83387739025056,298.291263230145,299.0885178106837,299.89771905355155,300.0386653053574,300.88062278786674,301.561634210404,301.9481350998394,302.54805755987763,301.75912424735725,301.9695083806291,301.6999147455208,301.12882878351957,300.73349545896053,300.07131347386166,299.8681617351249,299.8832159927115,300.8314299955964,299.9913428016007,300.52102565113455,299.98368334025145,300.1141512435861,300.4716481715441,300.5812443289906,300.43282901728526,299.9733337587677,300.2048093280755,300.7638462195173,301.6380042876117,302.16081089386716,301.76452967571095,301.6558407614939,302.0782032329589,301.2154816277325,301.1175069101155,300.408249524422,300.0177981075831,299.56500034732744,299.6975614079274,298.95671764202416,299.9511562087573,299.2049862234853,299.21062778215855,299.05825315462425,299.07210114691406,298.29420093633235,297.51243067067116,298.05712831625715,297.4922984163277,296.5232131341472,296.6167562524788,297.07479604519904,297.13030936475843,297.13400702225044,298.11133619910106,298.06476470362395,298.3571956581436,297.49994836142287,297.49138585384935,298.0053612594493,297.8115913080983,296.8810387304984,296.3410895043053,295.4400017312728,295.13485571416095,294.6455089431256,295.10479761706665,295.91703824698925,296.3091476466507,295.9329346008599,296.9103793492541,297.5326306540519,298.18739552330226,297.7318081208505,298.4397966507822,298.24442151840776,297.82321654539555,298.747167811729,299.5387711767107,299.52211754536256,299.5063052624464,300.0864039482549,300.32171175582334,300.3321656752378,300.9262144039385,300.8125564274378,300.46691500674933,299.5431380313821,300.0418824781664,299.5222604749724,298.7356594107114,299.4572426122613,300.3696578531526,300.72476086672395,301.4943183483556,301.5557835442014,300.7642803876661,301.10506102629006,300.3439197437838,300.20486927684397,299.2360500851646,300.10124155227095,299.3342230976559,299.1034265058115,298.294516177848,298.64067336777225,298.6085366406478,299.0957296541892,298.9788729296997,298.39839993231,297.67385059874505,298.4792582108639,297.6299780551344,298.2912696697749,298.5206149602309,297.8096563196741,297.55670280661434,297.94321995973587,298.3809205549769,297.8000950929709,297.223501986824,297.2731897723861,297.92310310620815,296.96593947103247,297.5993183576502,298.17747478513047,298.6680977582,297.93584153288975,297.5970761878416,296.78659841557965,297.4182966137305,298.06285656709224,298.3788372371346,297.94019317254424,298.83337465813383,298.86125443596393,298.59226501127705,299.46788285067305,298.7662549694069,299.28349967766553,300.02400001790375,299.071909903083,298.7769963629544,299.20469581289217,299.45827380241826,298.95260734669864,299.5450832671486,299.2314379569143,299.9571230565198,299.9702678406611,299.6184756513685,299.8458962882869,299.9739190363325,300.4064098489471,300.9366731210612,301.35060844616964,302.16895654657856,301.7427738402039,301.8434521215968,302.78638419136405,303.74993828497827,303.85619909735397,303.4331225170754,302.9200089275837,303.2062168060802,303.85400166828185,304.78034208901227,305.0518836956471,305.9313386483118,306.8329639076255,307.7196115422994,308.5916471336968,308.9805777766742,308.20802419586107,308.7498216549866,308.29450614657253,308.0169882667251,308.8339724424295,308.4712663581595,308.2619284335524,309.18246171437204,310.03089338634163,310.7817311170511,310.80539008323103,310.4098825468682,310.1289430982433,310.36492969701067,310.0296222772449,310.3329315795563,310.21034234855324,310.2480464200489,309.7867736052722,310.24046378256753,310.33990510972217,311.2519138613716,311.0848202249035,311.81411139294505,310.9310913225636,310.7167530688457,309.8226205599494,309.3602012153715,308.67631257651374,307.76511122705415,307.29628839949146,307.12524773040786,307.3153159720823,306.9818941433914,307.4476492558606,306.5459393337369,306.2671754164621,306.8157154051587,306.9650529320352,307.67754307575524,307.6548057841137,308.21904182992876,307.5773462271318,307.5372829204425,308.25196438794956,309.11967347795144,308.8756856354885,308.66991030657664,308.6450032182038,308.24815692706034,308.43024683278054,308.3615054511465,307.6915402826853,308.51749756745994,307.88093009917066,307.6727008088492,306.8869303087704,307.83495880197734,307.59270418435335,308.3294321112335,307.90337030775845,307.5118553233333,307.548031902872,306.90948573406786,305.9993697553873,305.48830922180787,305.81770004099235,305.4872604138218,305.78897003782913,306.32463682908565,306.8402747474611,307.08573359716684,308.0592893366702,307.5190128874965,307.873637475539,307.848047811538,307.8631336642429,308.7203692267649,308.4002002370544,309.041622151155,308.1192592945881,308.50971939368173,307.6028250721283,307.5493915057741,307.0631645559333,307.0061884955503,306.6795958378352,307.25157057354227,308.2265807772055,307.61963868141174,307.5841653053649,308.40439405851066,308.5541465631686,307.7290630619973,307.5179158668034,306.65499360859394,307.2875605090521,306.8265816560015,305.91004982590675,306.5331524000503,305.5728666926734,305.44798085512593,304.8471250478178,305.21844106400385,304.3347728936933,304.74422479141504,305.3241498717107,305.2515608035028,306.03574792668223,306.94911231985316,307.4019706826657,306.79808737291023,307.7684115068987,308.21852797688916,307.32483366085216,307.13286155695096,307.78768409928307,307.8747155359015,308.0775431529619,308.490844739601,308.3143214266747,307.62157664308324,306.9261153410189,306.8428543191403,306.87453289842233,307.5534880440682,307.64092482673004,306.68494569323957,307.1295596463606,307.19355342537165,307.33393778605387,307.18335528858006,308.14961609849706,307.7017508847639,307.14804178709164,307.6813074410893,307.4387018531561,308.42130450578406,309.1852378016338,308.7781104645692,309.377632454969,308.5025476887822,307.5803817892447,307.5146366166882,306.73447570577264,307.1710582333617,306.8680637823418,306.77878181263804,306.13053435552865,306.10308833559975,306.72513395594433,307.2624518154189,306.53631033888087,305.90436494443566,306.9028486520983,306.0849476554431,305.5110888630152,305.42918713670224,306.15692923404276,305.47082547843456,306.35021074907854,307.0712044062093,307.6539972247556,307.30449916096404,306.42543910769746,306.2437432035804,305.8934015496634,306.14270560629666,306.8875997150317,306.4060951494612,307.0605778489262,306.31292268820107,305.4113103058189,305.1713966787793,305.2373455609195,305.36763875512406,305.690187133383,306.27942278049886,305.4800600307062,305.36259895935655,304.53800171613693,305.0148883545771,304.0792901632376,304.19125983770937,304.44269026070833,304.6071657920256,305.2499412293546,305.1121873790398,305.6173374466598,304.9233041545376,305.7398756099865,304.7964377934113,305.1528663067147,304.9246646510437,305.6712649129331,306.1572451069951,306.2482739808038,305.29714203905314,306.00400749919936,306.59444506978616,306.5868823202327,306.41586286202073,306.431510372553,306.5703988173045,306.11416403530166,305.5832675197162,304.6105274106376,305.00494703883305,305.65916152484715,306.1586549859494,305.9755792617798,305.37634192220867,305.9601452741772,305.88541482854635,305.43585041491315,304.9010313991457,305.06150699127465,305.27496329834685,304.473354534246,303.97492296481505,304.39845701958984,303.4573791241273,302.7504913844168,303.5080189402215,302.60781471291557,302.6410088436678,303.2881489531137,304.0655924160965,303.69630954321474,303.3128781327978,303.32851761579514,302.60189785109833,302.3582882373594,302.24361533438787,302.01778842136264,301.27170352544636,301.7644603601657,302.34684780146927,302.1965693044476,302.61780208395794,302.1869464321062,302.59025693684816,302.71644447604194,302.32869537966326,302.5948313474655,302.4363228082657,303.0285284970887,303.5768446433358,303.6298935418017,303.937202129513,304.05414977064356,303.13304624101147,303.7376721180044,303.62638761661947,304.6020161630586,305.26617406960577,304.34859448857605,304.9585145674646,305.5353035479784,306.10655501810834,306.08421042375267,306.67749233497307,305.79741860739887,306.70114414114505,307.54921800550073,307.4226510692388,307.5718646175228,306.79308312619105,306.5268414323218,305.5725358435884,305.5788633306511,306.1553843570873,306.2301082517952,306.517272118479,306.7545949886553,307.5837009162642,307.90518313786015,307.8463906645775,307.32169771101326,307.4506204687059,307.579759913031,308.5230777603574,308.17707988247275,307.38642701646313,307.1604578620754,306.1811137557961,305.51878374489024,305.8254909343086,306.5374636971392,306.5347572560422,307.04590866109356,307.79415455972776,308.39749059127644,307.7203533453867,307.8998053348623,307.75623064674437,307.3612133152783,307.8593173790723,307.8605011110194,307.9889941806905,307.2006547139026,307.73764713993296,307.606146548409,307.6953233489767,308.5098101212643,308.990924811922,309.03388273110613,308.9179785680026,308.5392351131886,308.46324602747336,308.84911710210145,308.35091417701915,308.8465381250717,308.40366481617093,309.38902294728905,309.042465869803,309.79246906144544,310.0117692123167,309.2616016208194,308.472692403011,308.7688004276715,309.7273961934261,308.98237415542826,308.6068090312183,309.31284072156996,310.2849779436365,311.1909224204719,310.8518273672089,310.18313706154004,310.9859870756045,310.2534571108408,310.1340328468941,310.90925076557323,310.42762093339115,309.51317175431177,309.10365839581937,308.94420100701973,309.8175299325958,309.2369202678092,309.1633484121412,308.59194253897294,308.4233926231973,308.43659052532166,309.0278409002349,309.7120875855908,309.49066858831793,308.78062320221215,309.1991541185416,308.61724794935435,308.79820427065715,308.5769376545213,309.43658611923456,309.584435924422,309.3970465566963,308.4836018239148,308.1837330660783,308.02388845104724,307.4252346996218,307.0434703817591,306.76200351910666,307.1540945000015,307.2883005528711,306.46071752300486,306.489819989074,305.83300158567727,304.97759779402986,305.8274956131354,305.1535551105626,305.3496488407254,305.1743911798112,304.4500680770725,304.91645588027313,304.4561129058711,304.4790685554035,304.86644896445796,304.8794453884475,304.00284968782216,303.85748028894886,303.7162169315852,303.52291380334646,303.28972616652027,302.99296934809536,303.18578041065484,302.7975585544482,303.41891372250393,303.94191714562476,303.3763311239891,302.7320983707905,303.1984572238289,303.66179033508524,303.74207661580294,304.423065663781,304.4693602719344,304.7649271986447,305.3964856378734,304.94817641051486,304.6757894442417,305.17358639324084,304.47396983159706,303.4980666413903,302.8288497957401,302.5546679524705,302.4720798446797,302.74248874979094,302.7813723939471,303.2021455182694,304.01736670266837,303.0475426982157,303.0811451030895,303.06351068243384,302.46259628562257,303.0671048988588,303.2399366325699,302.5962937651202,301.9788329359144,302.0945879491046,302.8640114138834,303.00966614158824,302.09857231238857,302.0471461522393,301.35190073866397,301.57179682003334,301.4090478681028,300.56675802962855,299.8883714908734,299.305983973667,298.84473640983924,299.11375012854114,299.2635502908379,300.2038293229416,300.6750646769069,299.9806424966082,299.5134667023085,300.22784859035164,299.53105923719704,298.9629838191904,298.4359488338232,298.01178862852976,297.1777222119272,296.9217980862595,297.6859504603781,298.3112473846413,298.8225649292581,299.6158158611506,299.15129318647087,298.3524558264762,298.0384386223741,299.0025734119117,299.8051495128311,300.25737407663837,299.6236578626558,299.23156503401697,300.048186162021,300.2784787467681,300.36675384128466,300.964666465763,301.82319173170254,302.0824058242142,302.3940416928381,302.2375568849966,302.8255442166701,302.0118019254878,302.3040724438615,302.205126686953,302.1908171665855,302.94426670344546,302.1399627150968,301.4373572343029,301.70642726821825,302.3744632219896,302.1138405073434,302.9781991443597,303.2991858907044,303.9148260746151,304.3928774520755,303.50057900557294,303.3245315537788,302.41504512447864,302.221555929631,302.30008560745046,303.0898443982005,303.6185215492733,302.8983602952212,303.1433432530612,303.58077995246276,304.57183311413974,305.4098988501355,306.17043148120865,306.05986998649314,306.44196171080694,305.79378859326243,305.60364809213206,304.8430394004099,305.26618600077927,304.40980605594814,305.21533902548254,304.8518487866968,304.1310193021782,304.9557709614746,304.03284750366583,304.02352930791676,304.0239552054554,304.7330169673078,305.133110340219,305.2347497451119,304.56227985350415,303.9570477209054,303.4591537383385,303.322564475704,302.8685361924581,302.52221944741905,302.5400769864209,302.5219401391223,301.5960677443072,301.15901666367427,300.8722611661069,301.48991291830316,301.53813400585204,300.7485459977761,300.45410529570654,300.7080612909049,299.91546955658123,299.57234299974516,298.9672959349118,298.99733454268426,299.8355697412044,300.3404247490689,300.1858539902605,299.9259955184534,299.33842474082485,298.5496615297161,298.0935098878108,298.72242585010827,298.4320999532938,298.7344427113421,297.96940299263224,297.6546143181622,298.5780699355528,298.8272660882212,298.74397113826126,298.35262281633914,298.37250938778743,298.7322120955214,299.63188463496044,300.3891654429026,300.06009978428483,299.90060314536095,299.1983038051985,299.5478932191618,299.181038224604,298.56397204101086,298.82293194159865,298.21376625075936,298.5499038277194,299.06096665002406,298.47337910486385,298.7491267193109,298.9612796762958,299.60836871527135,299.07024374464527,299.62182786827907,299.1415920504369,299.50241523748264,300.0258547863923,300.7355278194882,300.53848737617955,301.51937871053815,302.12355704512447,302.0547964121215,302.7198793012649,301.84463904378936,301.7576301540248,301.93798628728837,301.41313772043213,301.96065190201625,302.54350705072284,301.7314704428427,302.3678075959906,301.53477531764656,300.89238575287163,300.28428334882483,299.7247861097567,300.32400614069775,301.0188301708549,301.04331451514736,301.71923291822895,300.93809529719874,301.49781050905585,300.73375150421634,301.71194740897045,301.178794614505,300.7702562320046,300.8851293185726,301.3550692675635,301.3467654665001,300.4525670502335,300.02411438385025,300.15287986025214,299.38589633628726,298.92203841218725,299.09145677275956,299.24651517206803,298.2521157604642,298.22260600933805,298.98095695255324,298.20023287972435,297.7253407528624,298.4361879462376,298.3352276785299,297.4882216122933,298.30376962805167,299.26549014262855,300.22942732460797,299.71123398747295,299.0520431534387,299.057433437556,299.3405250515789,299.62005247501656,299.9228917839937,299.98521385900676,299.1494426894933,298.75580163206905,297.81090970896184,298.76372261578217,299.59187347162515,299.79149115365,298.81547811906785,298.06359873199835,297.32615360757336,298.2756911944598,297.5402700258419,297.9086516574025,297.9413741878234,297.5615139505826,298.2299750871025,297.93782336311415,297.100884296,296.78941126773134,296.6406575301662,297.55025033885613,298.23457163991407,298.2555651157163,298.78379949741066,299.65416923491284,299.8421080620028,299.87231494905427,300.24521184293553,300.77693517366424,301.2359560886398,300.81067790510133,301.77628859411925,302.5866164783947,303.5662260334939,304.04548353469,303.3774805665016,303.676544717513,303.85683308169246,303.6432133736089,303.377105966676,303.8560715308413,302.99275102932006,303.3940305262804,303.4954416421242,303.7268545757979,303.5675804037601,304.547478760127,305.53192146588117,304.53776755649596,304.5800092355348,303.90152622945607,303.1768667725846,302.7073846082203,302.08831514418125,301.6283643702045,302.4624953526072,302.65913516655564,302.9767984012142,303.16361951315776,302.9958754177205,302.0803296775557,301.96529804356396,301.725289021153,301.6129370769486,301.67905917111784,300.9813587302342,301.3481221892871,301.4790691025555,302.3627717825584,301.8956425106153,301.95915513206273,300.969856869895,300.0910302279517,299.46312053268775,298.6468105921522,299.51195014221594,299.96245439210907,299.50669296784326,298.70465343259275,298.62112076953053,298.18569752853364,298.6524996198714,297.90262560080737,298.32334000850096,297.3846678715199,297.9299251115881,297.54660823987797,297.2275935928337,296.31086918199435,296.0838810130954,296.7614791840315,296.48731338372454,297.37011632462963,297.76321589713916,298.53664718940854,297.59143348317593,297.82510718051344,298.44767183903605,298.9880529632792,299.96053781500086,300.37903984542936,299.9051616531797,299.852211904712,299.9912649281323,300.75568939279765,300.8798365695402,300.2149448157288,301.06146262958646,300.4542864970863,301.0760268038139,300.3771326248534,301.05950764101,300.6994465352036,300.32083629164845,299.6402424033731,299.8781995270401,299.6436688862741,299.2597115980461,298.55448561673984,298.1835989970714,299.0467469645664,298.79102430073544,297.9543232531287,297.7896625450812,298.0179771706462,297.62617635075003,297.14840645715594,296.2160353739746,295.418605318293,295.23676369711757,295.5455133826472,296.4913484756835,296.25699493521824,295.4485168787651,295.8374214670621,294.9230118729174,294.4703956646845,295.2168063172139,294.6968428110704,293.99543547676876,294.7025401596911,293.79855068493634,293.60613997047767,294.5755851827562,294.7742255916819,294.67009011562914,294.49107838142663,293.69244582531974,294.3064641482197,293.5088337659836,294.47723718732595,295.03114483272657,295.19864875730127,294.572245800402,294.6465813126415,295.16911420738325,294.9446395128034,295.61178161157295,296.45645151939243,295.53671038802713,296.4544380013831,295.59105942444876,295.16559422016144,295.58867934159935,295.70231126528233,295.00073190638795,294.69520223280415,295.1322800735943,294.32178031280637,294.5238437377848,293.91959008947015,294.7845800295472,294.7226382936351,294.6441303640604,293.66809313884005,294.3072366672568,293.4038923564367,294.268886173144,293.72793886158615,294.6895955456421,295.62175242137164,295.63244702667,295.1782778450288,295.0870272642933,294.8366489089094,294.96150923660025,294.61688002059236,293.64600937860087,294.30699307238683,295.0007626977749,294.29321661777794,295.0472869640216,294.08259187452495,294.9749275208451,295.379710637033,295.8892178940587,296.2867562822066,295.742500577122,295.65334374224767,295.5553324087523,294.85934206610546,294.5893883970566,294.80147874960676,295.75356163224205,296.38691607117653,296.8791802888736,296.9883078346029,297.4526868914254,297.8679986409843,298.0260213497095,297.25793889164925,297.9111805395223,297.9354588724673,297.0090738455765,296.58099930966273,297.5657942085527,297.5057330816053,297.24777877749875,297.81756389001384,298.3051060549915,299.136460701935,298.34357888204977,298.6836443939246,298.5866586547345,298.4676735759713,298.6862883241847,298.2076797634363,298.05265428172424,297.06904384261,297.09266830421984,296.580910585355,295.86902312608436,295.74154181033373,295.6543276947923,296.0175011754036,295.24329504929483,294.3026341875084,294.3039034428075,293.3612689827569,292.52038261434063,292.7147485045716,292.605946006719,293.30974169960245,293.3288533911109,292.698267234955,291.7047539371997,291.83810331625864,290.9090601122007,290.51957579376176,289.959842865821,289.2880659061484,288.93813433265314,288.5648789159022,288.75475089950487,288.4522841181606,287.5761931040324,286.586976964958,287.5761628546752,287.4269107799046,287.8583512697369,288.66494792792946,287.84436991997063,288.1294637648389,288.52234772685915,289.4379693842493,290.1663030134514,289.26477484218776,289.8939997777343,290.3974701501429,290.55808993056417,290.412827688735,290.6022746087983,290.598608170636,291.1887019239366,291.39192140847445,290.5656852289103,289.7315406915732,289.0190274072811,289.46670089429244,290.448244987987,289.81411685887724,288.83194670593366,289.5025508501567,290.2992578349076,290.79311713716015,290.0652878563851,290.49517664685845,289.9883456034586,290.4217698299326,289.5088866055012,289.8107368941419,289.9516560342163,289.8245814945549,290.46607618033886,291.3978033438325,291.8859904310666,291.05971607519314,290.3246843749657,289.5572851537727,289.137366569601,288.80824686493725,288.90073286835104,289.4268315988593,290.2331382902339,291.0912600257434,290.4734817361459,290.8362912205048,290.3947171084583,289.4219557112083,288.8523100153543,288.0267534763552,287.171806873288,286.9941988978535,287.2149731647223,286.5013660499826,286.76349800778553,286.0157105540857,285.40240699099377,285.2964505911805,286.17283686902374,286.07591980462894,285.765349233523,286.11784110963345,285.1330097876489,284.71506515331566,284.7792899799533,285.3707590242848,285.4160693860613,285.78733038622886,286.0620326353237,286.99623354757205,286.9302332610823,287.82093959627673,286.8801631703973,287.17069774726406,287.7132535856217,287.03277723584324,286.46809019939974,286.29764748504385,287.0390270575881,286.45212711347267,286.057448589243,287.04788465611637,287.65838161855936,287.2593187945895,286.41274527367204,285.84723082138225,286.1887372476049,286.0537831201218,285.6365598891862,285.38105697371066,285.21972989384085,284.5288157686591,284.27931155031547,283.8968128603883,283.3661844851449,283.9398771915585,282.9783417582512,282.29733834415674,282.2969931126572,281.6454862416722,281.15616197604686,281.1445387559943,282.1399190882221,283.01685177115723,284.007139459718,284.7669253619388,285.5380294271745,285.4663854762912,285.5667319591157,285.7358965491876,286.5281367478892,287.3360247896053,286.75256289262325,287.280933547765,286.9122105576098,287.19790247641504,286.73841042025015,286.57980859233066,286.2902549030259,286.364679783117,286.7052450980991,286.15155331837013,286.8070294018835,286.8968426808715,287.88853643322363,287.75158010656014,287.1729668066837,287.89908733498305,288.75535660330206,289.70896621840075,288.89217651914805,288.44291248265654,287.75030083488673,288.1264509372413,287.58650387404487,287.9474028442055,287.2262199399993,286.32207312295213,285.9543777159415,286.55953303352,286.9810221227817,287.6830178559758,286.9964409568347,287.60063943080604,287.1569860544987,287.7496897741221,288.1655105696991,288.88088262313977,287.95200837636366,287.693082164973,287.4103101110086,286.6156083564274,286.5870910733938,285.9326544837095,285.37636613147333,286.30521713895723,286.56379547156394,285.98186414688826,285.97897632140666,285.86562762921676,285.2112170099281,284.987955739256,284.694151757285,285.30874022934586,285.0404870067723,284.64708322053775,284.0137495668605,284.9438012689352,285.74540641577914,285.11711893370375,285.1186170275323,285.0502719823271,285.8891794248484,285.9871969711967,285.54564556712285,285.4486741744913,284.48526379745454,284.89550540642813,284.4039078927599,285.0732167917304,285.0307248174213,284.5533254891634,283.76166900480166,283.56434002751485,283.25081019103527,282.6214147233404,282.82222029333934,283.4855867996812,284.0472652823664,284.05836098408327,283.5401269006543,284.5172872240655,285.4966142568737,285.4434061748907,285.89016384026036,284.92518933396786,285.15040934085846,284.6832529329695,284.82658645836636,285.4794351630844,284.6618761010468,283.9054357674904,284.6811183555983,284.40276433341205,284.24150618957356,284.29901745542884,283.37474185880274,283.53032486885786,282.63575895968825,282.70401798468083,282.76260438747704,283.46923392871395,283.3740995223634,284.3283075145446,284.23786303726956,285.0429926402867,284.2607341990806,285.1008858862333,286.05985981132835,286.9942339481786,286.75968163926154,286.5432683462277,285.64803578704596,285.63136859051883,285.6553560360335,285.2693254458718,284.72563800541684,285.46495683444664,285.9322457462549,286.2481262451038,285.6642106929794,286.436142295599,286.97109929844737,287.78892662748694,287.51623944332823,287.9033324555494,288.1661395295523,289.1110222749412,288.1726968768053,288.54137709503993,288.5453597865999,288.67830641614273,288.40109877614304,287.6293046041392,286.6751108248718,286.3259299322963,286.7918065628037,286.6645159199834,287.52943360991776,287.5384373739362,288.07418038044125,288.56466122111306,288.3420743383467,288.60329980030656,288.9735381938517,289.38037778111175,289.48403189424425,288.48955905623734,287.99469866324216,288.2470781216398,289.0772646185942,288.19691301696,288.8140451479703,288.0715434662998,287.90380564844236,287.86550586717203,287.5731533849612,288.18166772229597,288.89830630552024,288.67581961955875,287.78796845907345,288.0142521201633,287.9792409595102,288.6854047351517,288.1540173157118,287.5084281805903,287.27158111007884,287.8318673777394,287.69696125248447,287.1000909227878,286.4758458272554,286.2470077937469,285.92371713509783,286.7637347881682,286.9480949342251,287.2798115173355,286.59623242914677,287.00188207719475,287.16935692401603,286.67495074449107,285.78610647143796,286.32805913314223,285.430902030319,285.7848836639896,285.44414359750226,285.1227140245028,284.6893232027069,285.2123078601435,284.6243029208854,284.744287929032,284.76967258844525,284.02160298172385,284.22703462978825,284.06607602816075,283.281647416763,283.38937481027097,283.6456451662816,283.08726534154266,282.4021422085352,283.2670750822872,282.73625027481467,283.36312309606,283.15337492432445,283.84043587511405,283.43524320703,283.62714397115633,282.82854896690696,282.1180374645628,281.1955170785077,280.30517216725275,280.70539473136887,281.05499415425584,281.00459277722985,280.36875665094703,280.29709969228134,281.12844375614077,281.865971614141,282.24774904130027,282.4939560731873,281.9585020216182,282.4098216420971,282.7528125825338,281.9928735853173,282.95065638795495,282.46140654943883,281.7323127486743,281.7861946155317,281.533608104568,281.8668448841199,282.74684381345287,281.9946903451346,282.7094588438049,282.13612234266475,281.1417120513506,280.59174308367074,280.6475754166022,281.63206747639924,281.8732246742584,281.0185419600457,280.0265244040638,279.9840433918871,280.9583841636777,280.82223778311163,281.661263235379,281.1321780360304,281.94359957659617,281.209826212842,281.59562504151836,281.22271896060556,281.2525131646544,280.4767019110732,281.1711498606019,281.70623198896646,281.48267951700836,281.53858134150505,280.89234765805304,279.9387074559927,280.1291176318191,280.1228329599835,279.88239658856764,280.3393684634939,280.1594483461231,280.78777762688696,280.08300693845376,280.23856256948784,280.90104248793796,281.05597913917154,281.1291989777237,281.9567313166335,281.5290516568348,282.5202881647274,282.95438774628565,282.75762638356537,282.6992275575176,283.08084374060854,283.05701681552455,283.8002474824898,283.20735405851156,283.69115913519636,283.55016595404595,282.6879644379951,282.93729637749493,283.7989645060152,284.7158254417591,284.2494090553373,284.84585296176374,284.460380312521,284.6834419053048,284.488863451872,284.19314830517396,284.85174638265744,285.1743981181644,285.0780592793599,285.5905422787182,286.03466724511236,285.84157742746174,286.7540180776268,286.4612773321569,287.23503244435415,288.15069768205285,288.77923768386245,289.44108494883403,289.3608615929261,289.74288486503065,290.58969716215506,290.7005458185449,290.2033771905117,291.1964917718433,290.33971130568534,289.57394211459905,290.26849508984014,290.03671892452985,289.10746187064797,289.00108878314495,288.9719960610382,288.9118008641526,288.5388469914906,289.038598197978,289.8141853460111,288.9465809389949,288.7386612785049,288.04361888114363,287.7479065642692,287.8297893945128,288.7794974204153,289.380215597339,288.7690619211644,288.25538980588317,287.7129146489315,287.88079949561507,287.41663437429816,287.27162837423384,287.70912675512955,287.4492584709078,286.7044239817187,287.4503401289694,286.54968603886664,286.92655228450894,287.71676721191034,288.3474259111099,287.7025127541274,288.07167904498056,287.5182081745006,287.19747129129246,286.91950747091323,287.0749710602686,287.07772992691025,286.24172553932294,285.8401018944569,286.34472759766504,286.1257096086629,286.63863347191364,286.3065268066712,286.7801383207552,286.1745333550498,286.87621767492965,286.6638459316455,286.4422810757533,286.582842476666,286.7288634739816,287.31721866549924,286.62481131544337,286.39879470318556,287.2571296687238,286.32692295871675,285.8357360740192,286.4808850721456,286.57453581364825,285.69057652540505,286.2317668804899,285.6100120348856,285.1401820364408,285.11158600635827,284.14590568840504,284.42845227383077,285.14658919069916,285.8538129120134,286.5551078822464,286.05861189076677,286.5884989267215,286.5931336255744,286.47312167240307,286.9210900515318,286.14538598433137,286.2959710531868,285.5556459836662,285.1041814959608,284.56176567589864,285.48219262668863,285.70576112670824,284.75291122775525,285.1385708125308,284.8660852992907,284.6629597591236,285.6578153260052,286.3103709984571,286.82063052617013,287.07285963278264,286.66804797621444,287.5232236390002,287.046045249328,287.4575560395606,288.32065876945853,289.15198463667184,290.1256349924952,289.22099816799164,288.3906760625541,287.4765745983459,287.79431258374825,288.5999724268913,289.4105486329645,288.63279893714935,289.1642757030204,289.5539399511181,289.051174683962,289.42039028089494,288.48778802063316,288.70093323336914,288.1712662675418,288.5200692275539,288.4314773157239,288.9511490110308,288.593140094541,289.48662540176883,288.5973537466489,288.0033227070235,288.22930821729824,287.7155189597979,287.72009307099506,287.0056916065514,287.3887823643163,288.18779790448025,288.9712760183029,288.0594365061261,287.88581758597866,287.12104495894164,287.05169186973944,286.1979032494128,286.18441173480824,287.1797242499888,287.9781624400057,287.8676925576292,288.49044290045276,288.00466014817357,288.64231530576944,289.11191112548113,290.09563418244943,290.016731234733,289.42279305960983,288.7546476763673,289.0608586505987,288.48792600864545,288.3610164830461,288.3704784447327,289.36086878646165,288.85398990288377,289.6034452295862,289.3067517862655,290.10851237922907,291.08773811813444,290.3876334144734,290.25019054301083,290.67878168448806,289.7773199887015,290.36386346723884,290.4853348508477,290.10342909255996,290.2267014910467,289.9890684466809,290.18982172897086,290.94429083867,291.84065197454765,291.64304941520095,292.3683693325147,292.5375722828321,291.5742242401466,292.1175432004966,292.39566599437967,293.29184283548966,292.4446273264475,292.4651290779002,292.72212363081053,292.2692676722072,291.65591094316915,291.6639640345238,292.39237828645855,291.5244043227285,291.21002133749425,291.09046112792566,291.32647478813305,291.9077705196105,290.93649563752115,291.36194255016744,291.1367276115343,290.2147888359614,290.8061764226295,290.9794753291644,291.5835401020013,291.9910085890442,291.7221813434735,292.663290057797,292.18553821882233,292.185052448418,291.5779648767784,292.18781336350366,292.5366816641763,292.88987620407715,293.35204948391765,293.2308799950406,292.70405711000785,293.00681196758524,293.2332063447684,292.81746294815093,292.2309473990463,292.36290475772694,292.1359831611626,292.24511513346806,292.36761972820386,292.5878988131881,291.7666770792566,290.86587946116924,291.3729668385349,291.997191790957,292.33078035432845,291.4656590539962,291.45144042233005,290.8601751597598,291.7234484660439,292.18692382238805,291.800102124922,292.314186966978,292.49327403632924,292.864310729783,292.70923187583685,292.695121162571,293.3119504135102,292.59095569793135,291.7179599790834,291.1238617259078,291.1377862794325,291.9275527144782,291.11073200777173,290.76312632113695,290.7406445159577,291.49057487305254,290.72356413817033,289.96081428974867,289.1945175761357,290.0769215617329,290.155783300288,290.58644383307546,291.42364134592935,292.29279257776216,292.6662377687171,292.7610766249709,292.4322789022699,292.16041371412575,292.6729331770912,293.5610959287733,293.42145958403125,292.70847377879545,292.4811666472815,293.14850648026913,292.6190086896531,292.9274143818766,292.31181598315015,291.9186363480985,291.64154449431226,292.44836071226746,293.1016979524866,292.8843473936431,293.6409200653434,293.2156886169687,292.5649423771538,293.19774019997567,293.1992357056588,292.5389897231944,291.9081826917827,292.3712137620896,292.41112261498347,293.1776460330002,292.39348129183054,291.51696749031544,291.22768199210986,290.94181602215394,291.66106434864923,291.91012253193185,290.9166984963231,291.67787436628714,291.64143328461796,290.67481980333105,289.89236082090065,289.72130132000893,290.190557832364,289.69747029663995,288.8545958097093,289.5254828413017,289.231366218999,288.7074830736965,288.52937698038295,288.38478877255693,288.34416788909584,287.4836707622744,286.6261759023182,285.8188940798864,284.98751025181264,284.03124203160405,283.3310830928385,283.09325741417706,283.01689332863316,282.3985164333135,282.1265018982813,281.19840204296634,281.21368284802884,280.3836133549921,279.92845999635756,279.7157320640981,280.07304477179423,280.4712796192616,281.4429729501717,280.51051651034504,281.1398949390277,281.9493258926086,281.75780432717875,281.25081623438746,280.87078031152487,281.65764721576124,282.3617171002552,281.5069164847955,282.048443317879,281.70832892041653,281.3012092472054,281.61855654465035,282.4975249613635,282.081381381955,281.8326610289514,282.7157674636692,282.34894965589046,282.31198134692386,283.1622074879706,283.41785352118313,283.9436726537533,283.2961623230949,283.4322050558403,284.0507587310858,283.97151385154575,283.915048699826,284.12751267431304,284.03482736553997,283.99958620918915,284.6589816780761,285.15041413577273,286.07965407473966,286.21604519803077,285.81678600003943,285.05720479926094,286.0164876044728,286.8691075462848,287.0263324389234,287.221700089518,286.8435816783458,286.3233904908411,287.0434902231209,287.9834944251925,287.0964106377214,287.28294931165874,288.0649285297841,288.09510400146246,287.97821565624326,287.9187200507149,288.33392052771524,288.25522596156225,288.3168880525045,288.91510763857514,288.2192023228854,288.960534140002,289.1754539483227,290.1740482165478,289.60836053127423,289.1593017852865,288.7396360943094,288.2893211329356,287.6336761061102,287.68085330864415,286.86098424810916,287.809916772414,287.1045294161886,287.3053205367178,287.7718489426188,287.6540383351967,287.13732482818887,286.57359190844,286.5658995783888,286.03102481132373,286.8984480551444,285.9815052044578,285.59234909014776,285.0813763444312,284.11755618592724,284.0974682518281,284.18799640471116,285.0461375247687,285.60086407884955,284.9837819254026,284.2493267902173,284.5501527604647,283.72054525418207,283.2581384750083,284.1199637427926,285.10565558075905,284.208144959528,283.6000502030365,284.14557488868013,284.51253115898,285.4556486089714,284.56552452687174,284.9582223878242,284.03987316275015,284.67429323028773,284.8689469755627,285.8062205375172,286.59194004163146,287.47523418441415,287.0110380803235,287.6263746051118,287.0354713140987,286.4612744622864,287.3625452928245,286.7770965350792,286.05336238630116,287.03824885422364,286.8675951776095,286.41617485461757,286.4371679360047,286.7555657373741,286.8766236184165,287.6673851222731,288.3079374167137,287.9413078343496,288.70557319093496,288.30053426884115,287.63488689716905,287.4106345004402,288.17521162796766,287.28976497938856,287.16221942333505,287.34721686225384,287.6996814161539,287.29661220824346,288.0719913430512,288.5150970085524,287.9196314467117,288.058958505746,288.1606903569773,288.25396389327943,288.57521557155997,288.4659332251176,288.53006853861734,288.4994550035335,288.2153635667637,288.47501353081316,287.64292023004964,287.2100084661506,287.04392206063494,287.81824252568185,287.040755066555,286.457035345491,285.49305909639224,284.58495930954814,284.40623631700873,284.0595532786101,284.5749125001021,284.4029955682345,283.74716287851334,283.2595401564613,282.2904141251929,282.8843203308061,283.46892361110076,283.5097224460915,283.1108482563868,282.8339630290866,283.4364570309408,283.7151892306283,283.07186499936506,282.191960522905,281.8111550998874,282.2278569699265,281.6199146383442,281.92226407816634,281.26222767075524,281.6704032118432,281.46015518391505,282.0371867916547,282.02811318961903,282.38294151518494,283.3532278756611,283.85093873133883,284.18131445813924,284.5954234697856,284.69126241421327,284.13072317512706,284.41566120879725,283.6227351948619,283.769651229959,284.4865449536592,284.8858624799177,284.5689211161807,284.0767245264724,283.0768781378865,283.0261819921434,283.81322536896914,284.33499559480697,284.04245594237,283.49294727947563,283.5703777852468,282.6768778269179,282.49181513348594,282.2777665811591,281.5760327130556,282.14290962554514,282.7166999098845,282.64504188951105,282.6082756957039,281.6975469728932,281.9769344027154,282.28038357710466,283.0393327358179,282.1767190573737,281.4295513150282,281.33709500543773,280.5685588796623,279.6757573746145,279.9357322216965,280.86148616299033,280.1950809145346,280.6335491668433,279.63956782221794,280.153589847032,280.2384055601433,280.50566107966006,280.4714904408902,281.12310514831915,281.75080053601414,281.71950796665624,281.9516005385667,281.1768960095942,280.2780649927445,280.6195472422987,281.11039779754356,280.38913319818676,279.7092270562425,278.8488267082721,279.4288810729049,278.4581380211748,279.3252927502617,279.24030926357955,278.727128890343,279.6660236287862,280.5932018812746,279.7830581748858,279.0543323773891,279.7045865380205,279.46828964771703,278.5703293699771,277.7347249132581,278.1232310500927,277.3218548009172,276.5039112381637,275.98349033435807,275.82127205794677,275.20263183675706,276.163300012704,276.063137663994,276.8678729501553,276.48340930137783,277.13295619841665,277.02787352818996,276.2584189600311,276.061492505949,276.6234259875491,276.07792129414156,276.08192141214386,275.7491852501407,275.951631332282,275.749354748521,276.3837692188099,276.92114113038406,276.5479125222191,276.2106718244031,275.7074562590569,275.57988309348,275.7267761598341,275.6344956238754,275.922102031298,274.9617207515985,274.068191411905,274.7996443361044,275.03543303115293,274.65771998651326,274.8696606075391,275.53951331740245,274.83627949887887,275.4619524925947,276.2554850722663,275.5559584782459,275.829558562953,275.22718065278605,274.36465397290885,275.19316130597144,275.2450897321105,274.5657922998071,275.5510968458839,275.9555172910914,275.88931724336,276.79328666999936,276.88228891743347,277.64035986177623,277.23016853258014,277.08326953230426,276.40533820632845,275.8150499043986,276.25480034481734,276.49519294081256,276.8134993137792,276.85674320627004,276.48339297948405,276.31080301385373,276.5974185639061,276.717113353312,277.58344880724326,277.16027350816876,277.55009121866897,277.50972402701154,277.5488508762792,277.98695906158537,277.8577604480088,278.00154593680054,278.0526187797077,278.55091087380424,278.2803920363076,278.46265007648617,277.72586705582216,278.0872948835604,278.430621328298,278.27491398109123,278.95459425635636,278.02154081873596,277.59193976968527,277.93793270131573,278.7295746579766,278.4469382138923,277.5519815767184,278.53033435950056,277.76046253507957,278.7501605870202,278.9629008555785,278.9825701722875,278.25700168684125,278.2023617126979,278.80407957499847,279.522126854863,280.28005883144215,279.70650008972734,278.81527699530125,278.02740263426676,277.75392609648407,277.6104175876826,278.0516539188102,277.94166373321787,277.01526105683297,276.2861034888774,275.389398355037,275.88457136414945,275.6353567610495,276.3204335621558,277.27458369825035,277.8616187986918,278.07545477570966,278.8351312307641,278.1562806596048,277.7944332137704,277.4892101986334,277.5347128501162,277.0941234175116,276.99301467696205,276.4847305524163,276.92212319374084,276.3900184556842,276.9223309690133,277.5597942750901,277.5929597453214,277.863405439537,277.34008731972426,277.48359278123826,278.26565236551687,278.4534742869437,278.60564183071256,277.873174298089,278.4488552566618,278.16821353230625,277.9761788728647,276.9976014755666,277.8732239417732,277.5229046177119,278.48476857319474,278.37271220376715,278.84026772435755,278.28825456788763,277.53327087685466,277.4630155111663,277.2339714891277,278.18603864777833,277.2589587792754,277.97776647051796,278.58796375617385,277.93479536054656,278.10899718105793,277.7495429548435,277.7838619011454,278.33914132229984,278.51400027470663,278.1973601761274,278.1590121947229,277.265418919269,276.88889116374776,277.14255601586774,276.2217961209826,275.47975042741746,275.8622274361551,275.15607307618484,274.6492434069514,275.4700295473449,275.65821680938825,276.5211545494385,276.1852613077499,275.25442476104945,275.81326280441135,275.9548540734686,275.7360446690582,276.3235023752786,277.0220331931487,277.4134239004925,277.78540825657547,277.0491003370844,276.69278905913234,275.9407368330285,275.0454434356652,274.22934325784445,274.1981041105464,273.4529209625907,272.6761581124738,271.8461561012082,272.5161539372057,273.2811383679509,273.3042294671759,272.6583905168809,273.218639198225,274.0976133593358,274.87927954504266,275.0535118635744,275.6409516893327,275.9207178442739,276.71390267368406,277.1281432765536,277.12380601186305,277.8829234195873,278.6980452663265,278.7991751600057,278.5797427063808,278.9565269155428,278.5452981782146,279.2091669435613,279.71650860924274,280.4561564764008,281.08310893410817,280.14967217016965,279.8691708589904,279.47834099503234,278.58467959519476,278.96695005800575,278.31566893169656,278.2191375987604,277.84987536398694,278.11540411319584,277.4515682035126,278.05063898442313,277.1644577807747,277.39298043679446,277.09537032898515,276.7840788946487,277.2273200196214,276.4822782841511,276.81330128759146,277.333732703235,278.19172459235415,277.70613652747124,277.8819737401791,276.961605747696,277.5252541806549,276.62382053071633,276.81463883817196,276.8806574703194,276.73579554306343,276.9617135063745,276.463063610252,275.6918954998255,274.77272823965177,274.1827223529108,274.7284486037679,274.799707361497,274.97204407071695,274.82124208519235,274.5603821207769,274.45995759544894,274.87691866979003,275.4036915753968,275.4459673813544,275.4154430506751,275.2444048449397,275.21567287901416,274.3877489496954,275.0159842320718,275.0580733050592,274.62492029182613,274.5701758186333,275.4873864860274,275.1391620207578,274.3998349355534,274.73375461110845,275.24135872349143,276.2066756905988,276.09796058479697,275.1417760774493,274.60344508010894,275.45005167182535,275.36504243686795,276.34531701682135,276.08106408361346,276.31020531011745,275.9307815008797,276.0429185377434,276.5452225729823,276.77551826182753,276.180212541949,275.23364930041134,274.7600155794062,274.15299739781767,274.3526103310287,274.5211210423149,274.6697464575991,274.0538475490175,273.07105448748916,273.20658578770235,272.5163325481117,271.82684333855286,271.4165448662825,272.3321392359212,272.7155994339846,271.8550549549982,271.4763181540184,270.9695610846393,271.146945879329,270.67463211808354,269.6819543107413,270.6594398897141,269.67749233869836,270.59008902776986,270.5870793084614,270.740980793722,270.7759995232336,270.4983449643478,270.4895587898791,270.3944837753661,270.26093845348805,270.0362418163568,269.0746510787867,268.23443754250184,268.39061836572364,268.06360518047586,268.76608115434647,269.7063233652152,269.8378935470246,269.08705534087494,269.7668408630416,269.0141684659757,268.5543726407923,269.27967739943415,269.41267561353743,269.8753123921342,269.06915545416996,268.46950927516446,269.1524745686911,268.6370914890431,268.6154967970215,269.1114223524928,269.31797837326303,269.09363448107615,268.85866673337296,269.41256420733407,269.33917916426435,269.4956861692481,268.796470368281,268.6108185374178,269.24660049332306,268.2757613649592,269.21992744412273,269.10870441794395,269.338466915302,270.070794980973,270.414025218226,270.7491304120049,271.6726880320348,271.1989045389928,270.9813855243847,270.3519745711237,269.49071104545146,269.9114239444025,270.6876377649605,270.941250462085,270.6438775327988,271.25539163546637,271.90276574902236,271.28258599247783,271.23705555917695,270.9956881511025,270.3104532798752,269.6169907054864,268.69801571872085,269.5605803988874,268.916216341313,268.891226912383,269.4111505993642,269.1795838563703,268.48363792104647,267.7653799210675,267.809208155144,268.34857906680554,268.4620631602593,267.982228722889,267.2413849714212,268.1363631798886,268.94953435799107,268.1433354439214,267.52758248290047,267.6703271069564,267.8717700531706,268.1794045865536,267.2823865530081,267.95396396238357,268.3545947470702,269.0555168716237,268.1139201694168,268.2319469517097,267.6245105396956,267.6063614548184,268.5720209223218,268.39235318033025,267.40272751124576,267.33004096569493,267.4550267579034,268.07770093670115,267.41260419320315,266.5124310827814,266.9324807417579,266.6426405184902,266.1138096791692,265.233969504945,264.45978919416666,264.3995137773454,264.94201865792274,264.41519748279825,264.72985124215484,264.31727746641263,263.71697049448267,264.5259960088879,264.5181612605229,265.2763732220046,265.29414682276547,265.7728643170558,266.5619746716693,266.66831940738484,266.1579774939455,266.1369806700386,266.83689069375396,267.2532867914997,267.65055446792394,267.6770715955645,268.10891157155856,268.8973366357386,268.9963806127198,268.2860216964036,268.61092326277867,269.4772926014848,269.1351990168914,270.0871267472394,270.03049111925066,270.154668005649,269.67832895647734,269.9611218771897,269.56214188970625,270.1360438228585,269.3622422083281,268.40857566939667,269.037050830666,268.0966628608294,269.09643902629614,269.0666018216871,268.9127884837799,269.7361660678871,270.0231813620776,270.9800501591526,271.40898297168314,270.94085048977286,271.4516251371242,271.9992110147141,271.9952058941126,271.04501706408337,271.3156660743989,271.44191649742424,271.6492302673869,272.1896389131434,271.9104410256259,271.5704741696827,271.4582664137706,271.4218005496077,272.1775004994124,272.10010439297184,272.5417595282197,272.8551963735372,273.61008660681546,273.9810754721984,273.2439094078727,273.2415547943674,274.1451797634363,274.5709552722983,274.5198395512998,274.50004642503336,274.52208026871085,273.69283949024975,273.4077191269025,273.41501300316304,273.948623069562,274.57495754864067,274.67035667644814,274.4018180188723,274.53314082184806,275.1868119179271,276.1035075034015,276.49738042848185,276.6424727863632,275.9124591741711,275.33544512139633,275.1152437478304,275.71707001375034,274.884132551495,275.7196535449475,275.6120077967644,274.88412062311545,274.55069347284734,273.8440752592869,274.1949633639306,274.89759563235566,274.3552566678263,274.61908951215446,274.1303172111511,274.5826062639244,273.6342457877472,274.1458242931403,275.019660491962,275.57389374263585,274.82990786852315,275.60974542750046,274.9630861086771,275.13093520654365,275.37157156085595,275.4487519962713,274.8653763816692,275.3921724297106,274.84129422251135,275.40976285235956,275.9795348918997,275.52295861858875,275.7903918433003,275.3609823989682,274.47093596169725,273.65186829911545,274.354617156554,273.49268603650853,273.2329574399628,274.070640811231,274.7516308268532,275.655521302484,276.34518572920933,275.86035072105005,275.14083332242444,275.7339672157541,275.1584310680628,275.133703796193,275.87640935881063,276.70455237757415,277.5475965249352,277.36768238665536,276.8622627691366,276.01484564412385,276.34713249700144,276.5781251764856,276.22465045331046,276.28382570436224,277.1262317909859,277.87816965719685,277.8273463337682,278.16076287673786,277.8405212997459,277.34060481004417,277.0647457879968,277.1659169923514,277.22704468574375,276.46376529801637,277.2201657802798,276.3970533241518,275.7753030085005,276.72016907995567,276.2687476701103,276.76962626585737,276.3181696869433,276.0296195172705,276.9725890234113,276.199646236375,276.71244927402586,275.78205824876204,275.2973277471028,275.78973330091685,275.8292089579627,275.03237943863496,275.5287971030921,276.44405014719814,275.99775717873126,276.4206966967322,275.86708667175844,275.1115678008646,276.06178093655035,275.1493111900054,275.17478401446715,275.2561065000482,275.2946395035833,276.2687045270577,275.8191349436529,276.1075891018845,276.1227914504707,275.2337616183795,274.65174772264436,274.85574997216463,274.16690109018236,274.8893813332543,275.8268446465954,276.2413279125467,275.7035695030354,275.5891927094199,275.5401747440919,274.8871472021565,275.8646006784402,276.14823821978644,275.2377146105282,274.692751604598,275.49020648980513,275.8855932322331,276.85587893472984,277.05558226723224,277.92334660468623,278.3317109486088,278.19166426872835,277.96960338251665,277.45223712641746,277.6399388369173,277.71990155335516,277.99288107454777,277.990316494368,277.9342411160469,277.9171331557445,277.7367722359486,278.7245758213103,278.65368955768645,278.1275473735295,277.8179454607889,277.238292186521,276.4637632127851,276.70910663576797,275.7233483148739,275.9548833123408,275.32404009159654,275.05244255578145,274.7602742551826,275.4130169348791,274.73035787278786,273.9943935358897,273.81659751804546,273.96811190014705,274.65147608099505,274.44439616566524,274.19062118558213,273.2385082151741,272.7399241467938,273.28844466386363,272.50324131408706,272.6493533840403,272.0548418662511,272.58018989115953,272.76312332972884,271.9960438068956,271.7618033196777,271.9861992551014,272.76498084841296,273.16531822970137,273.5053134150803,274.2622485719621,273.3230827548541,273.3362507256679,272.85167072247714,272.5815897677094,272.1863335114904,271.3636600160971,270.49712268216535,269.9628288256936,270.13374159205705,270.11400935659185,270.52636184962466,270.69202258531004,271.4203672599979,270.83309625135735,271.0570507287048,271.2498130807653,270.94156375247985,271.6541153928265,272.427573335357,273.0264744441956,273.8591154734604,274.1178159681149,274.7338674739003,274.8272607359104,273.88786755967885,273.5684459093027,273.56540664099157,273.4260282544419,273.5311006079428,272.5826957728714,272.72927650390193,272.251318029128,271.8105388195254,272.4167314497754,271.42599643440917,270.97427362343296,271.23958644550294,270.4157032473013,270.1351487785578,270.0225312039256,270.69684014841914,270.8150751469657,270.29999244306237,270.9723052363843,271.67030979599804,270.8227956783958,271.7400992978364,272.4035663148388,273.1858076816425,272.9378703199327,272.17328451247886,272.99915219517425,272.0054177697748,272.32811573240906,273.31951562315226,273.8179667289369,274.0588962715119,273.9644562955946,273.54605686990544,274.45050388621166,274.0644502490759,274.7119697285816,274.44685047026724,274.30771693680435,273.97305296361446,273.51465509366244,273.27529805293307,272.4086705772206,272.62794883409515,273.2699491358362,273.83827819954604,273.27165991812944,273.11567250825465,272.2122553116642,271.88338805688545,272.0575274839066,271.97257146798074,271.1710498286411,270.7224299176596,270.9752233023755,270.1185005144216,269.9001239920035,270.4768423731439,271.16824938030913,271.3491599969566,271.53215380897745,271.0056497529149,271.688830497209,271.76623474573717,271.68603058252484,272.3699585190043,271.7562518827617,272.7191390651278,273.0827528000809,273.1323680388741,272.14238043501973,272.4130618907511,272.9815790508874,273.62473682360724,274.5730498111807,275.5115446867421,274.80614171223715,274.321710921824,275.28038946771994,275.9421568941325,275.7500514979474,275.55273115681484,275.57743453467265,275.1866696095094,275.6781256790273,274.8719556555152,275.7372896014713,276.2460151016712,276.2805574075319,276.8288691416383,277.5435512466356,277.6461158376187,277.90795399900526,277.4691097890027,278.35703543387353,278.4492892031558,278.97520997654647,279.92050906224176,279.7586901281029,278.9101501549594,278.0100591140799,277.2956643733196,277.8420785171911,278.03948028292507,278.68725207215175,278.22350694285706,278.35894157970324,278.6101891254075,279.3346614749171,279.53468062449247,280.41274298354983,280.0635947296396,279.09016349865124,278.8101210803725,279.7262038839981,279.3530960655771,279.2680835602805,278.7673155674711,278.24506761459634,277.66714398609474,277.4316416247748,278.22680478775874,279.0098915686831,279.8321607061662,279.69715868122876,279.89700357289985,280.6706874757074,281.12215872341767,281.86584427393973,280.950878622476,280.69539586640894,279.9098003166728,280.7371488851495,280.90322680724785,281.8939873385243,281.1847090688534,281.1074266987853,282.040098243393,281.6187541480176,281.9395815823227,281.1226820140146,281.0187715049833,280.48498268192634,280.9849388957955,281.28408424323425,281.34781110007316,281.1376100834459,281.239294687286,281.77088974090293,281.7279505105689,281.1480772779323,281.8256444744766,282.7372873942368,282.61016771988943,282.8264097459614,283.4744313536212,283.51371279591694,283.61788597516716,284.24859089264646,283.6834085271694,283.19435237301514,283.3545079561882,282.4145098249428,283.2395616732538,283.40344260586426,282.42324557481334,281.71680645644665,280.7193733113818,279.8799393242225,279.825915155001,280.3250759919174,280.27194717200473,281.0849685748108,281.7573240259662,281.8946549347602,282.0840614316985,281.66052476968616,281.73066370980814,281.617402063217,280.9327060445212,280.6077862996608,281.31257073255256,281.11717738350853,280.84751680726185,281.39293448487297,280.9739214349538,280.72330145630985,280.6958929086104,279.9751197216101,280.94126010360196,280.03038205811754,280.8552483082749,281.69388816226274,282.5539827100001,282.8688230831176,282.5135846971534,282.41390412673354,282.8551398720592,283.61906950641423,284.2979976530187,283.3790023038164,282.9798187511042,283.24457787536085,283.0681756255217,283.183840082027,283.24134359462187,283.061468265485,282.5112096713856,282.88722105510533,282.90035498933867,282.9049475826323,282.9819406401366,282.97436432680115,282.1156991487369,281.85609842604026,282.14239620650187,282.55664685415104,283.31480942014605,283.52845341246575,282.9190101423301,282.3448671773076,282.5244188592769,283.2346531082876,284.1692939456552,283.8159592761658,284.21834842674434,284.87415337050334,285.62134708464146,286.289758708328,285.6269750604406,284.9713195976801,285.83520421013236,285.54736939864233,286.027802137658,285.7076540691778,285.6027320623398,285.56999238207936,286.2570728296414,286.0356198414229,286.07064864458516,285.82473177602515,286.56399561138824,287.3769850176759,287.31264758110046,286.51652999501675,287.1368673769757,288.02020821208134,288.94285751180723,288.1561829186976,287.1930330931209,286.4805252365768,286.8214609194547,286.4991245800629,286.3814311544411,287.17814069380984,287.94189409539104,288.3803825872019,287.6691865939647,287.9463328756392,287.90140729630366,287.1249045561999,287.59501860523596,286.87029583379626,286.16959095420316,285.9347161371261,285.5727780251764,285.7393415835686,285.13999296119437,285.88449561875314,285.07862542010844,286.018018391449,285.7817215058021,285.69768599933013,286.20057703508064,285.55826763343066,286.37037412356585,286.5796667886898,286.74209694052115,287.0219139433466,287.30437738401815,286.99470658181235,287.9421341801062,287.5500342040323,287.46766202151775,287.24418894946575,286.6800171774812,286.43372764531523,285.44944576965645,284.5756915011443,284.2792960908264,284.62860079994425,283.94395549502224,284.0946491979994,283.7150648436509,283.9452990111895,284.8512861463241,285.6584309437312,285.9358406695537,286.8460790910758,286.21692580357194,286.421517603565,285.9526527193375,285.52021049382165,285.4148028790951,285.7626620042138,285.98285633092746,286.28047721274197,286.8419782826677,287.06346660573035,287.2767733056098,288.247442683205,287.638235530816,286.8339184639044,287.62574114464223,287.5297196614556,287.1513945758343,287.5102940062061,286.6152615211904,287.389239681419,288.0292343623005,287.1777012068778,286.582364177797,286.8464795378968,286.86263109045103,286.2286244225688,285.7733490089886,285.44965509232134,286.0139672406949,285.6343629383482,284.88343543279916,284.1058086398989,283.8639088761993,282.9043918433599,282.7678051441908,283.16889028344303,283.93823866546154,283.49853031290695,282.8914722665213,283.27635071706027,283.73319079354405,283.4850143818185,283.9383504916914,283.6661403295584,284.44711956800893,284.193297742866,284.40014162426814,283.4734922219068,282.9346437654458,283.7794879330322,283.92031149659306,284.77326299482957,285.1815564115532,285.5755672673695,285.2841038419865,285.45420257002115,285.1892657857388,285.2691802266054,285.36115108570084,285.8666766304523,285.80215290607885,286.26782203279436,285.5959774120711,284.7282160273753,284.10250711767003,283.9496360681951,284.38057008059695,284.98144090827554,285.3667236152105,284.746242757421,284.84846814675257,284.15312852244824,283.32094863895327,283.33256924990565,282.57802134985104,282.496604276821,281.53632779512554,281.3301170100458,282.21003956440836,282.83170169452205,282.39631957001984,282.5177033790387,282.85476260026917,282.87838102318347,282.8678468391299,281.9077495224774,281.6187750371173,281.37647815514356,280.6390406638384,281.1059691021219,281.64525999408215,280.69940789649263,280.9718639450148,281.561389638111,282.0304553718306,282.1193891405128,281.5881993910298,281.23729633912444,282.1324168923311,282.86024172091857,283.77317255409434,283.34657397074625,283.7692277985625,284.71803015237674,284.96449129702523,284.8037502556108,284.20717110997066,283.4152728775516,283.9028726820834,284.57975284568965,284.50457344343886,284.4254441410303,283.81149664288387,283.4174687759951,283.53030909085646,283.6945196473971,284.0249259402044,284.5131800319068,285.2394402050413,285.45871003810316,285.6563995005563,286.32890536636114,286.5899590109475,287.22501159179956,287.0232896259986,287.1807144363411,287.8445780710317,287.58882006583735,288.2534239785746,287.4967718417756,288.01119353529066,287.15030253725126,287.4784340132028,288.4068574956618,288.87544373981655,288.7760188304819,289.4955212017521,289.18913145083934,289.7205976336263,290.6875997306779,290.2955094105564,290.50900598056614,290.9963075183332,291.4027016223408,290.5266880854033,290.95975068677217,290.9998926706612,290.6168309687637,290.69777335366234,290.6614616988227,290.0807708790526,290.792746453546,290.50480999983847,291.42436341941357,291.91546225035563,292.38645343249664,292.31751972809434,292.74126587528735,293.1242946838029,293.923942157533,294.2283163513057,295.00733364140615,295.8966740616597,295.74217015504837,295.6838400880806,296.0301596811041,296.6098635462113,296.9572814963758,296.232716135215,296.8378992145881,296.5413583321497,295.9639842300676,295.889807025902,296.8077847715467,296.2199141974561,296.1870679082349,295.9101355271414,295.10659202747047,295.3270182404667,295.7064068275504,296.11775802029297,296.2699589179829,297.0902836197056,296.37961362767965,295.6773210824467,296.27797013660893,295.5139959687367,295.90869113616645,295.5284469765611,294.8148363647051,294.78810304030776,294.83072860119864,295.8212883095257,296.68899101018906,295.7282515647821,296.6817821157165,297.2192084961571,297.8185460884124,298.0710787414573,298.53288203664124,298.3126690303907,299.20238112751395,299.5936223687604,298.716793179512,298.9273186014034,299.9237432316877,299.1082958849147,299.5657655359246,298.84084178786725,299.4005107409321,299.2302647656761,298.81482597999275,298.78999206935987,298.9720011809841,299.3893206282519,299.44962411839515,298.6987030012533,299.1735505871475,298.38945721974596,297.79685415141284,298.6994866542518,299.31718696886674,300.0134819424711,300.0942066470161,299.85127622261643,299.2697295160033,298.90258224867284,299.3012138949707,299.17205254454166,299.445606760215,298.71616061311215,298.06272781221196,298.6351601956412,298.73644544323906,298.32635302841663,298.777918134816,299.77624308364466,299.4954547379166,299.940635596402,299.55296407686546,299.23261045943946,299.1727730548009,299.6768818702549,299.80318121099845,299.94715479388833,300.7309497660026,300.18809448648244,300.73776884842664,300.620821478311,301.10011613881215,301.76905994163826,301.49096454074606,302.4849792183377,301.95765506569296,301.16855710651726,301.2371862810105,300.2852649949491,300.3439191803336,299.4620312657207,299.41208298690617,299.74596410803497,299.943669941742,300.38085302338004,301.0209100791253,300.6299092755653,300.45616838149726,300.4449927150272,299.9362602471374,300.03692163852975,300.14757392555475,299.4377133855596,299.09929315792397,299.17879430856556,299.09040940273553,299.2654278106056,298.941250057891,298.98333255713806,298.61159657873213,299.29834788525477,299.3721326654777,299.8229920864105,299.9808573741466,299.3166153980419,298.5959575865418,299.3390277000144,299.6546588628553,300.5238707610406,300.7963979328051,300.72360832523555,300.7186338673346,301.5393949560821,300.6577843800187,301.65122256288305,302.31490581156686,302.7355835400522,302.7715926943347,302.3933942951262,302.0910982741043,302.62835471937433,302.84565778961405,302.2588465209119,303.2230634079315,302.93321075476706,302.5090217348188,302.418847986497,301.9361789072864,301.7830924508162,301.7630960550159,301.6454249667004,302.2100528450683,302.50625737477094,302.36489983228967,302.78967389976606,303.7414022963494,303.76683700317517,302.82299080397934,303.1623655068688,302.73780716070905,302.08299467200413,302.45029639592394,302.7223886572756,302.5650465171784,302.05607763910666,302.84879953972995,302.4515966218896,302.112070039846,301.3385936329141,301.19259884394705,300.37185858702287,301.0991511535831,300.92562870448455,300.701111887116,300.51859191060066,301.20684381294996,301.69113937113434,301.8543117530644,301.6251768460497,301.60818892437965,301.72629884118214,302.2930246167816,303.1815438824706,302.2149055530317,302.4373572599143,301.83772570826113,302.17322897398844,302.0141056738794,301.24350508023053,300.3025497854687,299.4088372057304,298.89774469286203,298.17422902723774,298.59100289363414,297.8920890521258,298.036649805028,298.284232837148,298.87955880491063,298.78768448205665,299.2012508921325,299.57776214461774,300.13664466142654,299.6048145191744,299.46546297939494,298.58241705270484,297.6610487746075,296.9132981877774,297.8118547750637,298.05785203678533,297.6223685652949,297.859293081332,297.29504131292924,297.5215868088417,298.0083223939873,298.0344399372116,297.4295718087815,297.4771936777979,296.8242370453663,296.0975421764888,296.49868698231876,296.94684445112944,296.6907967142761,297.38388282060623,298.21772184828296,299.20588576747105,298.732013289351,298.59836673317477,299.22220092173666,299.47229027189314,299.75714551564306,299.7291278168559,298.74402868235484,298.8384739495814,298.9641912034713,298.8224121374078,298.2987538375892,298.38563175406307,299.11987247597426,299.0007159980014,298.02068386413157,297.64092764956877,298.32234431803226,297.5944477417506,298.45776280900463,299.0805754275061,298.39425203576684,298.10930670192465,297.6236767200753,298.5033343876712,298.90655909106135,299.8534129159525,299.7853817199357,300.772102126386,300.7998802373186,300.2536954958923,300.12264906056225,299.957446673885,300.3816465283744,300.4402273367159,301.3979514753446,302.3518241229467,303.0725090377964,303.9961923966184,304.3119967947714,304.41147201601416,303.95080137299374,303.48128600558266,303.8206694959663,304.3041383600794,304.7282638307661,304.54196427436545,304.83780155470595,304.69331194879487,304.51679677236825,303.5444009373896,303.3827133006416,302.52890620054677,303.4885966810398,303.19974282570183,303.6787823145278,304.07042374974117,303.9798986525275,303.74337030621246,303.2965397373773,304.09364696079865,304.70377989765257,304.795184136834,305.36904326593503,304.4019231838174,304.9347946289927,305.20451258914545,305.05664022266865,304.88189393794164,305.0440652095713,305.6498986063525,306.30117705324665,305.3687946507707,306.21997915860265,306.9040066190064,305.96964449668303,305.62856214726344,305.3411125689745,304.41560419788584,304.59249684307724,304.35997104784474,303.66532965237275,302.97631402360275,302.4541640668176,302.67915255296975,303.552179614082,303.1617894358933,303.8628972559236,302.99754383182153,302.19952247012407,302.0023767459206,302.50199804035947,302.36593890422955,302.1105542308651,302.35939079290256,302.9617907451466,303.08348453370854,303.3861352233216,303.00861861463636,302.5719225849025,303.3616052060388,303.6210188474506,303.43365246010944,302.8446568972431,303.65906644333154,302.9825238035992,302.03041894268245,302.31678385613486,302.4747683349997,302.11624782998115,302.1443053134717,302.7873358395882,302.7960313609801,302.80765544623137,303.7960631735623,303.68271222384647,303.8670795164071,303.37002265732735,303.6043179309927,303.6504977173172,303.5076061957516,303.0436112699099,303.82501003844664,302.82517315261066,301.9881698661484,302.01484704623,301.9274995326996,302.83757413504645,302.3557971105911,301.796781971585,301.38695364259183,301.11021123826504,300.32785716000944,301.25013814819977,300.51687753386796,301.06367384130135,300.37624473357573,299.7948959954083,298.798090392258,299.5185958240181,299.32376032555476,300.30282536149025,300.7408734858036,300.3539435756393,299.8059738385491,300.08586775837466,301.0589082669467,301.49306312575936,301.212682061363,300.38579578651115,300.5780905666761,301.2966654528864,302.2625143160112,302.68911213148385,303.6182121001184,304.48333998629823,304.9265869120136,305.21894794981927,304.3537371731363,305.044200506527,305.0138448989019,305.721153001301,306.04134469944984,306.52515449840575,305.89936278248206,305.9105518250726,306.007050385233,305.6491343746893,305.37629753304645,305.2303187116049,306.1424180022441,305.39221241883934,305.39621236221865,305.67370038246736,306.3751104651019,307.12539209704846,306.8177450350486,306.141919771675,305.1524204420857,304.5639251633547,305.3747487789951,305.199221289251,305.88381844665855,306.85452322196215,307.59490305697545,307.04615221498534,306.0974140316248,305.83407274773344,305.24048040248454,305.080592692364,304.374661647249,303.5286540896632,303.5289457323961,303.60836228588596,303.87646931409836,303.1984485206194,303.6211090898141,303.0603256612085,302.31743979873136,302.3356265993789,301.82853981340304,302.63035849295557,302.4744681743905,303.41649098461494,304.38990682177246,303.84875626442954,304.5550473234616,303.65031721582636,303.75202270783484,303.5827013589442,304.1177277462557,304.69256715336815,304.9556586514227,304.67344177281484,304.41970201022923,304.92297286726534,304.1528353150934,304.50791004812345,305.1883687819354,304.4923861781135,303.50479809194803,302.5232938094996,301.9150700159371,301.9347657873295,302.65975181758404,302.3041490735486,302.54110113251954,303.14683757256716,302.7389866518788,302.1231354945339,301.90504893660545,302.5657129213214,302.44345652731135,302.498388257809,302.4441177533008,302.6721763839014,302.89009850937873,303.8021089960821,302.84997639479116,303.62958673387766,302.78449082002044,302.17742097424343,301.36965381680056,300.41361658927053,300.9048930872232,300.8971968605183,301.43550901906565,301.0903587099165,301.45430437708274,302.4250008761883,301.6051750429906,300.8192244502716,300.048265573103,299.977936164476,299.7263855691999,299.21394751640037,299.5137780774385,300.49024436203763,300.80471873423085,300.6723411618732,300.279870738741,300.4263477609493,299.886181763839,300.26737425336614,299.68498417688534,299.6332477563992,299.7699228320271,300.47296517621726,300.1293953899294,299.91422346048057,300.63914161454886,301.5465748612769,301.0896715405397,301.097039680928,301.9677843186073,302.120926592499,301.4492226955481,301.9109664680436,301.44875258859247,301.7989515401423,301.6003243601881,301.2319868383929,300.515711535234,300.5759455123916,299.75974391167983,300.4748533195816,300.3232761970721,301.1161568220705,301.3953830553219,301.36708494555205,302.31377253169194,303.09538486693054,302.370051396545,301.66997610544786,301.63685307186097,302.4420977877453,303.301951686386,303.5751137714833,303.63592954725027,303.94572249194607,303.7312043472193,303.4226642320864,302.4694142448716,303.3656942867674,302.43793529551476,301.60102068958804,302.4566307901405,302.06914563430473,302.4553617807105,301.8853313163854,302.6667417427525,301.6830634903163,302.22523004282266,302.2653040140867,302.19670029729605,302.14725971687585,302.1518142139539,302.3486711685546,302.6778876380995,302.04308019485325,302.38313866592944,302.2832265170291,302.3589493664913,302.29414235800505,301.98658616887406,302.56674413289875,302.4637454589829,303.1805076552555,302.28623670944944,303.04848552215844,302.08803194528446,301.1996546969749,301.34068326372653,301.78009318746626,302.006104209926,302.4855147213675,303.22523404005915,302.95455443579704,302.00227318843827,302.77177316416055,303.4121133387089,304.036360392347,304.2906292742118,304.59963725786656,304.06430638674647,304.19937602151185,305.19325077719986,306.12477203831077,306.53067600075155,305.5935737253167,304.7089848793112,305.25484691467136,305.98459541844204,306.40791264083236,306.2205094890669,306.08627725671977,306.9360869615339,306.50712549872696,307.3997281282209,307.2820894285105,307.21650121035054,307.5268022841774,307.10529472958297,306.356512256898,305.77034191647545,306.2015462713316,306.35497099673375,306.6907413951121,306.5904963272624,307.16944464016706,306.9766944651492,307.36064686020836,307.7547972416505,308.0290190153755,307.8608997045085,307.8966071200557,308.0570715148933,308.86530152335763,309.72656181035563,308.84210761170834,308.6376797007397,308.210285380017,308.8945349631831,309.07816849369556,309.6262006731704,309.84614912373945,310.8118099537678,310.28391609573737,311.2470277324319,310.5544707174413,310.5989174214192,309.6575759309344,308.7867841972038,308.12510814890265,307.6779812751338,308.2713089650497,307.8089428874664,307.83869321038947,307.2583650252782,306.53665849985555,306.0608203415759,305.397558872588,304.84073662990704,305.82641352294013,306.5267218663357,306.4762430819683,306.58952575875446,306.7680235807784,307.2037794953212,307.4312896123156,308.39604289643466,308.6536501669325,308.93618867127225,308.2128476756625,307.74052930111066,307.50960517069325,307.59491873160005,308.05481278244406,308.4373884317465,308.72166104707867,308.19768925430253,308.58674428937957,309.3518322999589,310.13436507992446,309.31377477152273,309.55627986462787,309.6949156182818,310.33417969429865,309.83400427084416,309.375798383262,310.3620244865306,310.0854562991299,310.62578717200086,310.0958621534519,310.06559557653964,311.0460503944196,310.24751629913226,310.13856011722237,311.0803635888733,311.47365272277966,311.48474543727934,310.73106478108093,311.34165031742305,310.7164470157586,310.9019419979304,311.03317388286814,310.14691850170493,309.31422787578776,308.7568542971276,307.9168555117212,307.36480478802696,306.90426099672914,307.7708704727702,307.13118676142767,307.03263008594513,307.02681685239077,306.31185493897647,306.9808498714119,306.4444346399978,307.17172025796026,307.9794872603379,307.39837919548154,306.96061745565385,306.0474315122701,305.6246942114085,304.677689997945,304.36971551924944,303.4914181432687,302.50674629816785,303.30540697369725,303.34655229048803,304.18394628865644,303.7765983757563,304.66674736281857,304.72995670326054,305.4185988632962,306.2229099087417,306.65779438847676,307.3288605362177,307.54146277857944,307.9087333404459,308.1122313789092,308.04235533997416,308.96220908034593,308.701002410613,309.2472264911048,308.7419911962934,309.60784362303093,308.94994203792885,308.4162667780183,308.3251556577161,307.83739492530003,308.2209109235555,307.73410512181,308.33360550552607,308.3006344232708,308.51337897591293,308.76348613156006,307.9747318564914,308.9010975267738,308.15276952972636,308.08747953595594,307.77024711621925,307.7953398129903,307.1202645562589,307.35352059593424,307.3511121668853,307.8416880527511,308.8199952975847,308.65738382190466,308.5143595058471,308.0014492031187,307.0557718751952,307.73119905777276,306.933300239034,306.04688357561827,305.1171427946538,305.38218382932246,306.02043859055266,306.1680188770406,306.5982690625824,307.1965859737247,308.1309534115717,308.2042460828088,307.79879779787734,307.1695808121003,307.3275547805242,307.4740547402762,308.0332989739254,307.2376201180741,307.0826126844622,306.99628215190023,306.4418041119352,305.9014532538131,305.424125243444,305.34215245069936,305.012542583514,304.3904394330457,304.97010469436646,305.72802220797166,306.2312381467782,306.20140985259786,305.2875884626992,304.4385806163773,304.93386628245935,304.2809183872305,304.01654090499505,303.17582663334906,303.15675490908325,303.4938841308467,303.5102400635369,303.3722653933801,302.767242226284,302.03602804010734,301.66142642404884,301.43764942418784,301.78844236349687,300.901309100911,300.1921305838041,300.9880767967552,301.9462460903451,302.8716046921909,303.44341328553855,303.19291977537796,303.7260449086316,303.94763858336955,304.5827350029722,305.2829429367557,304.38042749557644,304.42544933548197,303.5693391566165,303.5239765844308,303.5076063713059,302.83195391483605,303.64359427895397,302.90030841575935,303.7360100909136,303.0498767863028,303.4318571477197,303.79386167926714,303.332264770288,302.95319536095485,303.9132468858734,304.54482653178275,304.0011194883846,304.4339126292616,303.7011768259108,304.3769458285533,304.8875240487978,305.62711164401844,305.6756705264561,304.89177432795987,304.42280680593103,304.89588010450825,305.57057884009555,304.9328163554892,305.5749992453493,304.7428194754757,303.7721383101307,302.8299487736076,303.42828617990017,302.72829671530053,301.8242974476889,302.2962897219695,301.69875519676134,301.13121105730534,301.7169549977407,301.1429424560629,300.21585033880547,300.93433445645496,300.86273733433336,300.5200603068806,300.8595388131216,301.3230157592334,302.3104659006931,302.8561468059197,302.56386217288673,303.21495244605467,304.20732353208587,303.24280540505424,302.6898993025534,303.51416745223105,303.44512793794274,303.31509309867397,302.64375063963234,303.03505571978167,304.033456959296,303.4444868438877,303.961387000978,304.0987795917317,303.10303092747927,302.9666837048717,303.2153046648018,302.9856341141276,302.3101272522472,302.1590190930292,302.23039765749127,301.7088098768145,301.39855517912656,300.9186144201085,301.7032158719376,301.76029642671347,302.2943658325821,303.16664890246466,302.9847719697282,303.5314603308216,303.0281575382687,303.10880898498,303.9177887737751,303.3415502770804,303.96173911029473,303.9454121030867,304.02617925498635,303.71312610199675,303.28262148285285,303.3075276645832,303.15512130316347,302.794440289028,303.4916690858081,302.74196343682706,303.16787189338356,303.2662142277695,302.6182063445449,303.45926187420264,302.7752223499119,302.80778451124206,303.5384970656596,303.3153657875955,302.64971035998315,302.3386885873042,303.33813344547525,303.1999694039114,303.46674085920677,304.17636849172413,304.3892069691792,304.0639870436862,303.3562270440161,303.64290044177324,302.9774209903553,302.65831166831776,301.98758587706834,302.640377830714,302.01797239808366,302.39420709898695,301.9918103553355,302.37759312288836,301.8676223549992,301.69870560755953,300.7044200678356,301.54601453477517,300.8870812067762,300.2815986187197,300.50724714109674,301.2753744600341,301.54301761928946,300.61881137872115,299.9797142143361,299.9893343327567,300.2980606062338,301.1925412151031,300.7425428442657,301.2923343642615,300.3890730207786,299.59651686809957,298.85655794339254,298.799173805397,299.2893409137614,300.1836782968603,299.56996523588896,298.60168357985094,297.7822242495604,297.0025754417293,297.689425193239,298.01209281524643,297.73570787068456,296.9656982421875,297.9064924288541,297.35931206773967,297.68719905847684,298.52906189486384,297.86392102018,298.0128146680072,298.14656036160886,297.8721314286813,298.00448492495343,297.74361322820187,297.36182722914964,297.744066960644,297.9038876737468,298.50240768818185,298.3994708461687,298.96955324709415,298.13190908450633,297.99436778994277,297.37902589468285,297.6635621935129,296.66640258347616,296.69052965473384,296.8261967166327,297.48099793540314,297.3286682339385,297.27058081747964,296.7393712606281,296.08429127465934,296.1235895957798,296.28063880559057,295.9052280765027,296.14286401774734,296.4266685307957,296.5523893935606,297.1586151383817,297.45165704283863,297.840712194331,296.86150353588164,296.79013463575393,296.99587286030874,297.1615344081074,297.98944174218923,298.5747099625878,297.67362015740946,297.012765110936,297.49882316822186,296.90402639703825,297.0848825359717,297.06076769391075,296.2621359429322,296.55336171528324,296.10575202992186,296.56344699067995,296.6348555069417,295.75749312667176,294.95283852657303,295.11064153397456,294.28044520458207,293.4578011180274,292.76947485888377,293.28014435619116,292.63343045068905,292.72836995730177,293.26956006884575,293.96147065469995,293.89154640585184,294.35742497537285,294.2841100078076,294.7691079219803,295.05469958344474,294.988872400485,295.731185100507,295.6634364030324,295.483123710379,295.43589814566076,295.04207061976194,294.54856749624014,294.40580227132887,295.0269794482738,295.6842682878487,296.59244059585035,297.554125698749,297.1540428744629,296.2963121943176,296.50369841838256,296.7211141847074,295.97823528014123,295.2487943712622,294.3726036157459,294.66689621983096,294.5825577848591,293.95691344561055,294.8686489132233,294.0130523261614,293.91184978187084,293.50424906564876,293.31825906503946,293.12162995990366,293.90625884663314,294.8169778245501,294.25647579552606,295.1126934536733,295.535663055256,295.39391680341214,295.99495261441916,295.5180831258185,295.66399679426104,294.71194635378197,294.9661625418812,295.295971729327,294.9991934024729,294.2065627705306,294.7568638185039,294.00073384400457,294.61029647663236,293.66938344435766,293.2737754811533,293.2685252930969,292.4617451862432,292.36760596139356,292.1702262824401,291.35715482989326,291.38416387466714,290.86416919901967,290.18526082811877,290.9517846792005,290.9759227707982,291.7224231073633,291.7598151806742,292.0482952478342,291.858211286366,291.83807997452095,290.90288968291134,291.70441047940403,291.75704030459747,291.50986886164173,290.76496379217133,290.1171490983106,290.75115333031863,290.14956600777805,290.48915357887745,289.93835518928245,289.26254538819194,290.06800505239516,290.9565936429426,290.961260299664,290.03736020438373,290.1379768550396,290.6752495323308,290.74212344316766,291.542980120983,291.56139245815575,291.09337400086224,291.0817443472333,290.60162711236626,290.44154521869496,291.0304254023358,291.49729294283316,292.1157546094619,292.11280251154676,291.56761575257406,291.8901996910572,292.67125583346933,293.6652135150507,292.93332475423813,292.1242024246603,291.3512462056242,292.34541994100437,292.28833542438224,291.34849569154903,291.824679620564,292.81612971099094,292.6293033580296,292.5416144360788,292.6532889371738,292.63144934223965,292.64670716878027,292.26740367198363,292.8120571197942,293.0471704057418,293.70419792598113,294.4617527429946,293.6198764713481,292.7496314011514,292.9864898119122,292.0529078487307,291.839572744444,291.04989567771554,290.7542929952033,290.6102083446458,290.6047164564952,289.7995664025657,289.7817993108183,290.39634332153946,291.19258002890274,291.5807840214111,291.53854375425726,291.08520395774394,291.7899976489134,291.4770234632306,292.3686701366678,291.89233926311135,292.107410681434,292.70677063427866,292.862167222891,292.2419677162543,291.25329589890316,290.33519569039345,289.6877308827825,290.19433497451246,290.47929064463824,291.2472698939964,291.42910359520465,291.0898482897319,291.5752019318752,291.3803471028805,290.50042031519115,290.8279392849654,290.22691433597356,290.1320256199688,291.05844845296815,290.55971857719123,290.89558221260086,290.102060679812,290.74534776620567,290.84307902120054,290.0295944963582,290.24532455345616,291.03060115873814,290.43632163945585,290.2082878178917,291.08958643628284,291.7952245827764,290.97519362717867,291.70328452810645,291.2450538976118,291.8241720437072,291.06136699207127,290.41615515574813,290.1029994590208,289.46429941803217,288.731184465345,287.9246124406345,288.0461501488462,287.52009076811373,286.5880040405318,287.45128213986754,287.92930105375126,288.63188386615366,287.93175390921533,288.11768697714433,288.44513807911426,289.0469789933413,288.1984013374895,287.8758642934263,287.3006723425351,287.4310457962565,286.7312349486165,286.1136394846253,285.75185922626406,286.47174103884026,285.58338695624843,285.155612078961,285.7617980176583,284.8050381112844,283.91329852025956,284.361705545336,284.4542115414515,284.2178710186854,283.74595080222934,284.63910882081836,285.5063730920665,285.75684783793986,286.0737296277657,285.6921715331264,285.6488402467221,285.6006705495529,284.9170546904206,285.3930907296017,286.30397092271596,285.4034725530073,285.9728148430586,286.7870834711939,287.12421502312645,287.5478257294744,286.79969501355663,287.33821741398424,287.36458156071603,288.11732534645125,288.2448385260068,287.3823126475327,286.4567611226812,286.899288081564,287.7560497727245,288.4609249862842,287.76949144294485,287.9229599512182,287.21784647973254,286.70013533579186,286.17720374744385,286.93447242770344,286.59236086392775,286.2523832540028,285.33226812118664,284.6221228437498,285.2956799324602,285.0727653489448,285.3700119559653,285.0509313661605,285.4113529906608,284.87968196859583,284.90255092736334,285.7572701703757,285.2724031819962,284.91652328986675,285.88347766455263,285.23207010142505,284.33040432445705,284.02488466957584,283.6559926341288,284.5448003904894,284.479458194226,283.7350972383283,283.83933985233307,284.16934602800757,284.3617293504067,283.3910970459692,282.73143826937303,283.40957221295685,283.24926779139787,284.03697859030217,283.4138965923339,283.3079712963663,282.74557466525584,283.0288126007654,283.86247218120843,282.96005627233535,282.3524491339922,281.8741211825982,281.8023295374587,281.4751458764076,282.4727476751432,282.6820705747232,282.52959534106776,281.8305849931203,282.4529734761454,282.5360502670519,281.6840170850046,281.7817512587644,280.9753678473644,280.3380619478412,280.5066937576048,280.9655827260576,281.3432882926427,281.2910301699303,282.26315349526703,281.3623765404336,280.4828637447208,281.3407139228657,280.6172066447325,280.0298068583943,279.85431979596615,280.2456855191849,279.27377830678597,279.0803740154952,280.0265601472929,279.08451763447374,278.6774471886456,278.13914749305695,278.87240745825693,279.27684137877077,278.86291335569695,278.2758982013911,277.6900463430211,276.8445898373611,275.9343597604893,275.2830884293653,275.0977572626434,274.6592726712115,273.7072151545435,273.4113681074232,273.441251212731,273.63256713282317,272.89552396256477,273.05368033610284,273.21315028797835,273.9558226224035,273.6892809639685,273.31757239764556,273.2362118465826,273.65487342793494,272.6799479215406,272.63042830396444,272.14013898558915,272.5328953429125,272.69501180248335,271.7889200504869,271.73442151071504,271.1795348734595,271.35206228028983,271.7900226111524,270.82252452522516,270.19377795793116,269.57357670692727,269.56392836291343,270.4123708177358,270.4811117374338,270.7959320945665,270.1089388956316,270.27267039194703,269.5900806062855,270.13396589364856,269.44823358906433,269.72566908132285,269.3309861780144,269.08886638330296,268.6892219274305,269.6875233068131,270.3535490334034,269.8197927167639,269.39306763373315,269.66940929787233,270.20122542697936,270.8226155885495,271.0161937060766,270.2755097821355,270.5969948768616,270.40639731055126,270.94277278287336,271.7327510775067,272.6077980976552,272.58888953365386,272.5771588603966,273.2900155102834,273.6313381809741,274.3199012274854,273.9175084400922,274.03911824617535,274.9216762557626,275.2665065713227,274.343933918979,273.9532960434444,274.3888982376084,274.8515696567483,274.0248869070783,273.90281660621986,273.7584283677861,274.5925281206146,274.0915940972045,273.19654839346185,273.5787935224362,273.6372150047682,273.41506550787017,273.78936265502125,273.3571562319994,274.08454202720895,274.24569850275293,274.2822758643888,273.59749351860955,272.6862448346801,271.88996319891885,270.9766952409409,270.0357422227971,270.52403957536444,269.6252390919253,269.689988235943,269.8968920055777,269.7929283203557,269.71567391138524,270.47543467907235,270.0598448915407,270.9667041487992,271.6082136281766,270.66695395763963,271.27556802425534,270.8408160954714,271.1077937884256,270.90387497330084,270.7423030282371,269.8612016281113,269.65109463827685,269.5346982749179,270.1162345488556,269.24181462358683,270.132983493153,269.65297703491524,268.9363058079034,269.5959209515713,269.14445632183924,269.66872747801244,269.19307689974084,268.9712830162607,269.3869397151284,270.27085505006835,270.8498445539735,269.8820824669674,268.97459961660206,268.607201163657,269.29477071296424,270.01819132687524,270.95454340660945,270.03495553461835,269.6400475730188,270.51338342158124,270.58346244785935,269.9841412738897,270.8298078752123,271.5339860068634,271.06523293908685,271.57599678682163,271.8268409213051,272.0273522720672,271.40757685899734,271.6626212662086,272.023245065473,272.3291990989819,271.71765155298635,271.5507295541465,271.4519838606939,271.87653137464076,272.11577128525823,272.1904298751615,271.9857251276262,271.8741630250588,272.8006039625034,272.9256799258292,272.8812050023116,272.88431915361434,272.31400569621474,272.2868354660459,273.25037390878424,274.0194874526933,273.4662730526179,274.31228756159544,274.9821956185624,275.4937475239858,275.04239708185196,275.03415955835953,275.87769160047174,274.98740585753694,274.73348031006753,274.441663229838,275.11464134044945,274.6601792629808,275.05095109157264,275.72080537769943,276.1735173622146,275.24886946287006,275.79248051531613,275.6654701870866,276.2623679335229,276.1608269470744,276.30598567286506,276.72241391427815,277.3198278732598,277.1187278581783,276.7546729184687,276.06569344876334,276.52841313323006,275.9655058947392,276.4448266187683,276.6068859421648,277.2224255227484,277.30585695803165,276.54509310470894,276.67324540996924,275.8640579893254,276.84221836319193,276.92128049815074,276.2541693979874,276.14882956957445,276.45319132274017,276.69331845873967,276.7698450409807,276.9545189659111,277.2338409218937,278.1492899991572,277.9936369182542,277.96384264621884,278.37668861541897,278.4641433795914,278.0064739109948,277.43152460921556,277.9210501681082,278.07944330759346,277.9957028469071,277.9371304954402,278.1080680573359,277.2688738643192,276.91211753943935,276.84234103839844,277.395686166361,277.0618070620112,277.598845673725,278.4076864612289,279.35259572183713,278.71624819142744,278.8027441208251,279.40532565442845,278.7810725821182,279.59114789171144,278.9960291595198,279.70957674784586,280.1577417575754,280.1413516369648,279.5784798152745,279.9700421690941,280.2698009912856,280.6122000203468,280.3198311920278,279.35456899693236,279.77302998304367,280.7583721629344,281.0155355129391,280.9530887417495,281.2010236065835,281.1091602840461,281.9217076925561,282.0006857528351,281.58701308909804,281.561858010944,281.06361506925896,280.8763283463195,280.5067080715671,281.48264717357233,281.56995406746864,280.6019440917298,280.16752811381593,280.0205872412771,280.0454082470387,280.04304650612175,280.8771907254122,280.9607313564047,280.93055255617946,281.7172977416776,282.0441293721087,281.61430945107713,280.9128169310279,280.5124679240398,280.00061226496473,279.66392635926604,279.58869484998286,280.01118820533156,279.33506517577916,280.325722607784,280.6103753610514,281.36451030150056,282.0737374480814,282.8554266639985,283.28399460343644,282.93563902610913,283.0997761054896,282.46497139520943,282.3141697770916,282.69164043618366,283.4841509931721,283.12180944066495,282.6107896026224,282.2633227999322,282.7755409912206,283.12978228600696,282.4257570314221,283.1255330396816,282.538323294837,283.21653645904735,284.1729125054553,283.3342465143651,282.9663169886917,281.9922926337458,281.6003801105544,282.5060712946579,281.7789279120043,282.07623063074425,282.22099174838513,282.78396065253764,282.6623518341221,282.17346823820844,282.3821925143711,282.97269838955253,283.66138456668705,284.6434211018495,284.1946767568588,283.32687686849385,282.4297669525258,283.41085025062785,284.1399767771363,284.8074677051045,283.97948193503544,283.67382044671103,283.5089657381177,283.9200840052217,283.71708526602015,284.65688758390024,285.25132684689015,284.5078265746124,284.53841038793325,285.43772333161905,285.14336776034907,285.6858180309646,284.91390560381114,284.2706758948043,284.02659657923505,284.01325550302863,283.5965326251462,283.4374680425972,283.311671666801,282.88936205394566,282.5920303640887,282.57288892939687,282.2142749549821,281.42395830200985,280.6706130099483,281.49111464619637,282.049896475859,282.08648120379075,281.768833683338,280.848125744611,280.56179046817124,279.95098566031083,280.65119935944676,281.5229306332767,282.4926345399581,283.2331579718739,283.06747171422467,283.45656822854653,284.3394772694446,283.6103496272117,283.2480196999386,282.7159532122314,282.9471846483648,281.96551271760836,282.7742265500128,282.75719509925693,283.6056789951399,284.47561771282926,285.39546813536435,286.3824808304198,285.6755963298492,286.1252094316296,286.9882008098066,287.43757203407586,287.7406644485891,288.6738385083154,287.7138200365007,286.86516861990094,286.94144916860387,287.31155734183267,286.8614737777971,286.91018210351467,287.0673790369183,286.22662328509614,285.7025884091854,284.9364628107287,284.06658940948546,283.09491145052016,282.9950639833696,283.38187906937674,284.33416177285835,284.34757680492476,284.0817753560841,284.87306422833353,284.1554699735716,284.36679618712515,284.71385120926425,285.48131953924894,284.7034155363217,285.30059244995937,286.1934704524465,286.09330091951415,286.84521692153066,286.93202631920576,286.5414058766328,287.2631789352745,286.4257254190743,286.53457585023716,285.86068838555366,285.63817768357694,285.5160840996541,286.36381015134975,286.9561565699987,286.0653255302459,285.87513879779726,286.50731108663604,286.5861322735436,286.124179053586,285.54405441042036,285.03007935220376,285.1264035603963,284.5206843954511,283.80327929742634,284.06592035247013,283.67068334529176,283.47838994767517,282.4847240722738,282.4399541118182,281.733918486163,280.81823860900477,281.02098941011354,281.2620913046412,281.83706825831905,282.6506099011749,282.4286189218983,283.1166157000698,282.9426674847491,282.76261767325923,282.67075800383464,282.9834200288169,282.92019694438204,282.29266568878666,282.4987495909445,281.85556194745004,281.19131742650643,280.96133117750287,281.59219414554536,282.2823089873418,281.4969868408516,280.51734713325277,280.0974633889273,281.0914599900134,281.8983297678642,282.6442762245424,282.06091678515077,282.1896037305705,281.84610270522535,280.9778395658359,281.7926735347137,281.89888454182073,282.82507078908384,282.90500816656277,282.3186292662285,282.82471684599295,283.4355773883872,283.7464428669773,282.75856897514313,282.05220849160105,282.29665528750047,282.3495371751487,282.23889660602435,282.53134272946045,282.0406692940742,282.9972471985966,283.7479782169685,284.31591703137383,285.0665069054812,285.368302217219,285.74469110928476,285.30440486967564,286.24578971229494,285.2470414713025,285.18641216121614,284.4876257297583,285.3724121642299,284.7420262438245,284.5859686504118,284.01207401324064,283.5637340298854,283.05303866555914,282.31318868277594,281.67227464867756,282.1355977379717,282.88990230159834,282.6035500704311,282.79613914806396,283.17157083237544,283.2783943526447,282.9024033690803,283.89435563096777,283.90644159633666,283.61241122707725,284.4562288848683,285.2294458979741,284.3743399595842,283.95017356751487,284.1785590779036,283.23146648332477,283.04697226686403,282.26787529559806,282.88011154485866,283.6675503528677,284.58024075534195,284.2844885168597,284.66615237575024,284.6617562402971,284.1104496042244,283.18738221004605,284.0084606469609,284.1228036978282,285.008791601751,285.86917215725407,284.89106545969844,284.17922830954194,283.7068469095975,283.62009844370186,283.8785079754889,282.89044642355293,282.0393016003072,282.02756955707446,281.58693664101884,281.40229335660115,281.8809920363128,281.81081374082714,282.6728773890063,282.1360495449044,282.7147019067779,282.1180814895779,281.57322660740465,280.7837608992122,280.8759448155761,281.4068917487748,280.70219596102834,279.784327885136,280.1628800686449,280.9944192902185,281.78708647657186],"y":[15.486373177263886,16.055208480451256,16.438840441405773,15.665098479948938,16.360204425174743,17.330268185585737,17.181337168440223,17.87770551070571,17.35890585044399,17.236377922352403,17.627886063419282,17.274660495575517,17.677041335962713,17.532112549059093,17.071874011307955,17.084468157961965,17.809924368280917,17.314976525027305,17.67100925836712,18.22187650995329,17.9650238705799,17.424421742092818,17.498574221506715,17.308969269972295,18.192850382998586,18.557334195822477,17.647160798776895,17.22700613224879,16.258008133154362,17.014185319654644,16.447592207230628,15.515444623306394,15.52192237554118,15.338099621701986,14.451994593720883,14.828994806390256,14.063177692703903,14.125248172786087,13.930729547981173,13.32361582480371,13.260504562407732,13.30746865272522,13.6588278952986,12.737429400440305,12.716492732055485,12.822157036047429,12.232260694727302,12.665049597620964,11.945673347450793,11.181869003456086,12.02635883539915,12.478917802218348,11.678716887254268,10.94027292681858,10.874397018924356,10.07329516671598,10.57782024377957,9.765823041088879,9.033575906418264,9.324274076148868,9.335864731576294,9.305588512215763,8.456981517840177,8.947458751499653,8.593943377025425,8.451907893177122,7.566289142239839,8.141989882104099,8.07941406359896,9.01132001914084,8.458593311719596,8.086225696373731,8.927400747779757,9.51026265323162,9.387444250751287,9.519506021868438,9.682949976529926,10.55701964860782,9.598883175291121,9.305625075474381,9.756884694565088,9.280369216110557,8.888347589876503,8.527166028041393,8.635638765990734,8.581973679829389,9.314053515903652,9.625889549963176,8.960641422308981,8.87185763195157,9.413022608030587,10.111368934158236,9.225943798199296,8.511010623071343,7.638007252011448,7.625536706764251,8.046785495243967,7.437809990718961,6.532933683600277,6.800180370919406,6.478185603860766,5.9908740925602615,5.838802400510758,6.161834544036537,5.946693578734994,5.108673668466508,4.181535862386227,5.131116955541074,5.056090435944498,5.614837731700391,6.053417201153934,5.539138957858086,5.161588506307453,4.558251892682165,4.15456372173503,3.269741187337786,3.899335120804608,4.624561195727438,4.650603471789509,4.072485494893044,4.339524702169001,3.480687526986003,3.825254505034536,4.34874625923112,4.156143849249929,3.298513967078179,3.218766908161342,2.241046621929854,3.053131847176701,2.4529876126907766,2.0736996782943606,2.948942174203694,3.4368617474101484,3.001637242734432,2.2145179021172225,3.127575872465968,2.8954884111881256,2.1208422342315316,1.9195348010398448,2.7779110413976014,2.2279876144602895,3.2141005471348763,3.6167834447696805,3.902135233860463,3.9041279880329967,3.870832009240985,3.6360750147141516,3.8095393320545554,3.1193328322842717,2.8091162415221334,1.902167912106961,2.8124804091639817,1.9608079632744193,2.494900950230658,2.4901450821198523,3.1466307938098907,2.555119070224464,2.2204350964166224,1.5650204266421497,0.6595397801138461,1.5629353011026978,0.9652649783529341,1.3106162534095347,1.542556966189295,0.6125711207278073,1.5123223098926246,0.9991741082631052,0.7232270166277885,0.6293946504592896,0.08314295345917344,-0.17609356809407473,0.0014678966253995895,0.9315196787938476,0.9948948118835688,0.3960160780698061,-0.07299334788694978,-1.0008724192157388,-1.1046809502877295,-1.254538538865745,-1.1767564499750733,-2.155032606329769,-1.754894976504147,-2.0568872704170644,-2.6380259189754725,-2.5657049203291535,-2.0655988324433565,-2.3772635543718934,-3.140299809165299,-3.7228861982002854,-3.2714458969421685,-3.076501039788127,-3.5410203309729695,-3.4856718638911843,-4.210365665145218,-5.123821656219661,-5.6939631891436875,-5.216493693180382,-4.935881341807544,-3.9665042320266366,-4.562955325935036,-5.065615696366876,-4.619433490559459,-5.195503143128008,-4.438046125695109,-5.157187987118959,-4.826595446560532,-4.360909539740533,-4.75884237093851,-4.860545846167952,-3.920650690793991,-4.75082569103688,-4.23850044189021,-3.609962882939726,-4.47914559347555,-5.091606086585671,-4.6444458845071495,-5.511740838643163,-5.848387144971639,-6.115700431633741,-5.575240640435368,-5.033161219209433,-5.774037137627602,-6.142964505124837,-5.736654393840581,-6.087587086483836,-5.4392669019289315,-4.591990693472326,-4.207175365183502,-5.003280952107161,-4.041531341616064,-3.914404375012964,-2.985337956342846,-2.1510811215266585,-2.0335573400370777,-1.0574742471799254,-0.20543234469369054,0.5561786782927811,0.5998256159946322,0.6352725778706372,1.3530218163505197,0.38397842599079013,0.5730611584149301,-0.399748036172241,-0.5952021810226142,-1.430338860489428,-0.5915360944345593,-0.9028763179667294,-0.7452446175739169,-0.5731826010160148,-0.8128305887803435,-1.2993428194895387,-1.7802130356431007,-1.3847213997505605,-0.6821076162159443,-0.279591107275337,-0.6176174748688936,-1.0026262043975294,-0.3109950451180339,0.6765317246317863,0.9599177772179246,0.9658767357468605,1.2100873454473913,2.121554837562144,2.2084400043822825,1.2399429576471448,0.7091034655459225,1.1868189554661512,1.2139912266284227,1.5808428949676454,2.421083452180028,3.1022699833847582,3.4595836317166686,2.632346791215241,2.860724311321974,2.4815389085561037,2.4847106589004397,1.995372321922332,2.3944508777931333,3.283865016885102,2.678992010653019,3.192103201057762,3.4954208144918084,3.7937949961051345,3.1960778548382223,2.395605173893273,2.407077417243272,1.8603687114082277,2.033369601238519,1.3897063732147217,0.892027482856065,0.9669492519460618,0.6835586149245501,0.5559862637892365,0.8161591459065676,0.41541221644729376,-0.2601367300376296,-0.663261660374701,0.06540091522037983,-0.3927231663838029,-0.5980403972789645,0.14741683192551136,0.6444802433252335,0.747760649304837,1.3783878711983562,0.48226375924423337,-0.12449897639453411,-0.7016336740925908,-0.130435970146209,0.5142639824189246,0.7475243066437542,0.8816768676042557,0.22984032751992345,0.7544652763754129,0.27710153069347143,1.0935827577486634,0.7358930995687842,0.6336614764295518,-0.06383341969922185,0.7066032676957548,0.4242149284109473,1.322397502604872,1.765633846167475,1.2180714453570545,1.4563723164610565,0.6820934014394879,-0.08600185811519623,-1.02756241383031,-1.5456446674652398,-2.154684514272958,-1.8881894573569298,-2.4607310611754656,-2.0577153456397355,-1.8786467118188739,-2.6227650633081794,-3.5217139800079167,-4.439745380077511,-5.134304155595601,-5.610385790001601,-5.067446830216795,-6.066043008584529,-5.17601211136207,-5.7383173308335245,-6.01387198176235,-6.5374108189716935,-5.745860230177641,-5.275876170024276,-4.592092356644571,-4.306639996822923,-4.618968542665243,-3.8495245915837586,-4.599779678508639,-5.363511047326028,-5.158764478284866,-4.376958248205483,-3.620124730747193,-3.9473641118966043,-4.191401477903128,-4.707394544035196,-4.07908551953733,-4.293925886508077,-3.377196101937443,-3.057318886741996,-3.987566387280822,-3.2386206621304154,-4.105068744625896,-3.7153665656223893,-3.4568782630376518,-3.5798057639040053,-2.958550760988146,-2.105643749702722,-2.4894741564057767,-2.874354265630245,-2.8128869901411235,-3.5519689531065524,-4.097218110691756,-4.128881499171257,-4.558074311353266,-3.729264608118683,-2.866942949127406,-3.493155183736235,-3.293080896604806,-3.669082025066018,-3.5321121043525636,-3.0023050494492054,-2.529914846178144,-2.860525223426521,-2.225573766976595,-1.3759170919656754,-0.6602226654067636,0.14549826364964247,0.17535701394081116,-0.722412308678031,-0.7007284136489034,-1.433103532064706,-2.3442945596762,-2.0211117775179446,-2.1587119312025607,-2.6049689217470586,-2.8464564797468483,-3.2776299654506147,-4.2520091333426535,-3.50024700909853,-3.00938069075346,-2.033189421053976,-1.2941288352012634,-2.272806412074715,-2.597964080516249,-2.111148847732693,-2.962859123479575,-2.499128586612642,-1.758646453730762,-2.2645899085327983,-2.7026842031627893,-1.9222865649499,-1.950129491277039,-2.379483014345169,-1.9540681149810553,-2.4398602419532835,-2.428074324503541,-1.6596135455183685,-0.7401232370175421,-0.7165975924581289,-0.21803160989657044,-1.1918366309255362,-0.5503986296243966,-1.3797617461532354,-0.7157803243026137,-0.9348371834494174,-0.13229190558195114,-0.7441005795262754,-0.10738344676792622,-0.08211344527080655,-0.34479068452492356,-0.3784428583458066,-0.9116756631992757,-0.20926798228174448,0.07330921944230795,0.5443908236920834,-0.4264880586415529,-0.41408295230939984,-0.8442676868289709,-1.6036620517261326,-2.268904980737716,-2.3622448700480163,-2.1755268471315503,-1.7875953265465796,-1.22588463826105,-1.0373081644065678,-0.31802471866831183,0.14957011491060257,-0.13119639037176967,-0.19670879002660513,0.2075777929276228,-0.002990452107042074,0.8822370446287096,0.6065306924283504,1.5827233763411641,1.9421775294467807,2.5683782938867807,1.9311171383596957,2.18357814848423,3.1566407955251634,3.8669338477775455,3.4037752468138933,2.587169979698956,2.9767104419879615,3.7010033037513494,2.7458573072217405,2.6548388334922493,1.786506274715066,1.0088008386082947,0.7560648522339761,0.4107537087984383,-0.1901292889378965,-0.20402487134560943,0.5939132031053305,0.5417231447063386,0.9993055979721248,0.9762564953416586,0.39363157469779253,-0.17710407078266144,-1.0292018596082926,-1.862549084238708,-1.4211521809920669,-1.2807006975635886,-1.6025682063773274,-2.309531639330089,-1.5996114877052605,-1.6227147495374084,-1.4368781074881554,-2.3371034911833704,-3.1630851551890373,-3.01385293668136,-3.924682655837387,-3.4423847906291485,-2.4596779886633158,-1.8257587789557874,-1.929061049129814,-1.9642633702605963,-2.131161369383335,-2.5758596076630056,-1.834382884670049,-1.970034482423216,-1.8893401017412543,-2.721629900857806,-3.2013571867719293,-3.255561905913055,-3.107208624947816,-3.7408920186571777,-4.218493816908449,-4.826589352916926,-5.559284343384206,-5.12879239115864,-5.010964186862111,-4.936561680864543,-5.712554792873561,-6.4232498267665505,-7.113589743152261,-6.119170151185244,-6.036008447874337,-5.634513701777905,-6.02608705824241,-6.413933483418077,-7.23647679714486,-6.322025272529572,-5.873373674694449,-5.531359206885099,-4.988807473797351,-5.421843457501382,-5.269501033704728,-4.527584684547037,-4.592848243191838,-4.706669696141034,-5.615265210624784,-6.613466943614185,-6.006903713569045,-5.748855259269476,-4.999279910698533,-5.078577233944088,-5.234298621304333,-6.095573976170272,-6.288984366692603,-5.440376742277294,-4.6191807496361434,-5.322753917425871,-4.795568219386041,-5.557335141580552,-5.691108673810959,-4.732223611790687,-4.500943939201534,-5.279096913523972,-5.8361313524656,-6.410627542063594,-5.562553076073527,-5.470453919842839,-6.403722862713039,-6.666454471182078,-7.5952880955301225,-8.44219189370051,-8.156222575344145,-7.578583191614598,-8.46841735765338,-8.815264413133264,-9.400830681435764,-9.453804143704474,-10.183554015588015,-10.594360117334872,-9.843252338003367,-9.19288574764505,-8.465546890627593,-9.177172385621816,-8.301762063521892,-8.751009766943753,-9.408526114653796,-10.357931265141815,-10.375893904827535,-9.896252015605569,-10.281252170912921,-10.437227565329522,-10.365751195698977,-10.478535079397261,-10.938388724345714,-10.47615641541779,-10.02193610323593,-10.174801209475845,-10.762759402394295,-10.374805928673595,-11.247879695612937,-11.976009469013661,-12.575013807509094,-11.619902811944485,-11.472868432756513,-10.563581516034901,-10.636493747122586,-10.495002095587552,-10.629321507178247,-10.306239641271532,-10.910890996921808,-10.021320707164705,-10.92149056494236,-9.928395628463477,-10.88084379537031,-10.058253554161638,-10.995350831188262,-10.38475225539878,-9.73288129735738,-9.580653844866902,-9.98095486825332,-9.169199132360518,-9.788176856003702,-10.66797764133662,-11.270694637205452,-10.447479895316064,-11.298937456682324,-10.581052311696112,-10.899819733574986,-11.279920008499175,-10.306880517862737,-10.985114575829357,-10.706277282442898,-11.5746139860712,-11.78444096352905,-11.883487485349178,-11.32950941985473,-11.48460809327662,-11.741222389042377,-10.987906842958182,-11.895071191247553,-10.956083345226943,-11.670902231708169,-12.548001212999225,-11.982803017366678,-11.385154712479562,-12.011453460436314,-11.59426565747708,-10.790776457637548,-10.448530357331038,-10.801203904673457,-11.318269205279648,-10.397048934362829,-10.63378340145573,-11.269772915635258,-11.380517507437617,-10.965365657117218,-10.991360022686422,-10.172135025262833,-10.067711495794356,-9.956067066174,-9.096124549396336,-9.374232941307127,-10.303800330031663,-10.77460162434727,-10.981252291239798,-11.199381607584655,-10.551114555913955,-10.814693184103817,-10.16006238013506,-11.027684044558555,-10.369784261099994,-9.638508788309991,-10.503790941555053,-10.588330427650362,-11.356378755997866,-12.054117998573929,-12.380651509389281,-11.767555135767907,-11.352575739379972,-11.816880078054965,-11.059376209042966,-11.112346929032356,-11.736098119057715,-12.342625642195344,-12.297004859894514,-11.76019094651565,-11.825092101003975,-11.434793286491185,-12.032823929097503,-12.035750104114413,-11.791919288225472,-12.644923927728087,-13.378723365720361,-13.811473596841097,-13.8533371752128,-14.13087047636509,-13.408386889845133,-13.992788426578045,-13.544052757322788,-14.35667329467833,-15.000549126882106,-14.044775587506592,-13.929734317120165,-13.288240085821599,-12.518799687270075,-12.978598930872977,-12.312791793607175,-13.138026145286858,-13.52666580863297,-13.81643828889355,-13.659497906919569,-13.251512929797173,-13.36367862764746,-13.367393469903618,-13.347980131395161,-12.689901967998594,-13.571543471422046,-14.475208033807576,-14.735453869216144,-14.248142762575299,-13.453123396728188,-12.845220213290304,-13.121183772571385,-13.813872078899294,-14.30631694989279,-13.492544196546078,-13.899110168218613,-13.085348734166473,-14.016472639981657,-13.313273882027715,-12.66183252260089,-12.6439820532687,-12.876457861624658,-11.979203331284225,-12.812031048350036,-12.838622802868485,-13.643817778211087,-13.757870133966208,-14.653119282331318,-15.075587260071188,-15.66064692940563,-14.663597161881626,-13.980487084481865,-14.41757599171251,-14.76511489180848,-13.93550769938156,-14.80000526085496,-13.919531784951687,-14.28148988680914,-14.313481386285275,-13.381753375288099,-13.023044173140079,-13.13654805533588,-12.351016557775438,-12.66530333692208,-13.394204405602068,-13.705146384891123,-13.550563869532198,-14.133597758132964,-13.373715048655868,-13.290014150552452,-12.746184257790446,-12.647208572365344,-13.642537779640406,-12.717214045580477,-13.588700124528259,-14.280824445188046,-14.466958073433489,-13.526963435579091,-13.733385528437793,-14.537034150213003,-15.162055380642414,-14.879699317738414,-14.003664389718324,-14.257242820225656,-14.544113025534898,-14.066389697603881,-13.275770032778382,-12.759889622684568,-13.563785411417484,-12.685033293440938,-12.199199318420142,-11.623528909869492,-11.878919509239495,-10.954797604586929,-11.947660109493881,-12.209847470279783,-11.748137183953077,-11.833657057024539,-11.157120339106768,-11.127410204615444,-11.639012021943927,-11.279593800194561,-11.002423075027764,-10.94985573971644,-10.096284824423492,-9.321954318787903,-10.01499150460586,-10.772668998222798,-11.111835507210344,-11.022810266818851,-10.42625164007768,-10.253063535317779,-9.466737776994705,-9.628335569053888,-8.649708915501833,-8.520420330110937,-8.935462032910436,-7.961751203518361,-7.855965698137879,-7.936674593016505,-7.686813976150006,-7.027342924848199,-7.21977339591831,-7.896164358127862,-6.969870014116168,-7.556948515120894,-8.168072523083538,-8.145965448115021,-8.050179510377347,-7.715646070428193,-7.373660535551608,-7.732712713070214,-7.192289914470166,-6.83480154722929,-6.7570287878625095,-6.084907945245504,-6.201280233450234,-6.550453951582313,-7.1540307071991265,-7.131610394921154,-6.621365979779512,-7.419192647561431,-6.578008298296481,-6.275696361903101,-6.103529333136976,-5.980003951117396,-5.551428257953376,-4.842147321905941,-3.9861282375641167,-3.817689275369048,-4.627839175984263,-5.575701924040914,-5.273762004449964,-4.500353165902197,-4.224702241830528,-4.276869761291891,-4.598080430179834,-4.517134585883468,-4.338642003946006,-3.3450471572577953,-2.876920633483678,-2.500463680829853,-3.397888763807714,-2.5298192729242146,-3.259737651795149,-3.1496446183882654,-3.21178657701239,-3.4581646933220327,-2.7255394188687205,-2.2526059271767735,-2.548847598489374,-2.4441300076432526,-1.6743200081400573,-2.541215163655579,-1.848939549177885,-2.453587500844151,-1.8399546798318624,-2.8033900489099324,-3.467176739592105,-4.022519204765558,-3.4258200931362808,-4.180276116356254,-3.398217717651278,-3.4226125446148217,-4.062377189286053,-3.904533608816564,-3.988489843904972,-4.962660012766719,-5.82902214396745,-6.185809621587396,-6.895926406607032,-7.6098641459830105,-8.549852653872222,-7.960950743872672,-7.723551718983799,-7.720521601848304,-8.516708331182599,-8.61066570924595,-8.424427727237344,-7.706620592623949,-6.770943427924067,-7.624678017105907,-8.358562821522355,-7.485631139483303,-7.770711832679808,-8.176204718183726,-7.895866034086794,-8.0564387999475,-7.39379954431206,-8.219807115383446,-8.184203904587775,-7.51049654558301,-7.455217009410262,-6.4802900035865605,-7.24206779897213,-6.437628608662635,-5.839538340456784,-6.456489979755133,-6.464836281724274,-7.2979738637804985,-7.251611892133951,-7.074863203335553,-6.63398901373148,-7.477950883563608,-8.119048414286226,-7.776317899581045,-8.139585889410228,-8.738294802606106,-8.19198583252728,-7.7609815914183855,-8.429734650533646,-9.420062372460961,-10.307589344214648,-10.076302388682961,-9.289870096370578,-8.873435870744288,-8.308618606533855,-7.67908376082778,-7.04949851334095,-6.425781574100256,-5.8257992467843,-6.742058132775128,-7.674910692498088,-7.357616757508367,-7.633377252612263,-8.125536418054253,-7.327377502806485,-7.785868844017386,-8.375881619285792,-8.558559894561768,-8.003996336832643,-7.386927543208003,-6.6133786723949015,-6.061895546037704,-6.3130291714333,-7.134614181704819,-7.883662032429129,-8.095036188606173,-7.3875331142917275,-7.611777620390058,-6.9657198851928115,-7.642330397851765,-8.555324228014797,-7.687098069116473,-7.128602494951338,-7.664871530141681,-7.90156127512455,-8.426084026694298,-8.554818985052407,-7.7510254653170705,-7.6542749539949,-8.088564982172102,-8.431160364765674,-9.18948478018865,-9.042069823946804,-9.849364566616714,-10.47228143690154,-9.774912930559367,-10.141960235778242,-9.867224582470953,-9.200483793392777,-8.546166760846972,-8.346551694441587,-8.950979064684361,-9.81642342498526,-10.398294547572732,-9.499701907392591,-8.759864248335361,-8.444664205890149,-9.0851432364434,-9.319062515161932,-9.86312263365835,-10.852773720864207,-10.755515400785953,-10.672900415025651,-9.843734679743648,-9.428043776657432,-10.398814082145691,-10.663470759987831,-10.734160324558616,-11.711811474058777,-11.640323653351516,-12.028699707705528,-12.694400570821017,-13.059359343722463,-13.918873040471226,-13.507481067441404,-12.71247220179066,-13.59343623323366,-14.040063731372356,-13.763110897503793,-13.513190771918744,-12.58273827796802,-12.584262792952359,-12.792030904907733,-12.005671699065715,-11.372098103165627,-10.499917435925454,-10.223187135532498,-10.724945043213665,-11.377410858403891,-11.927554409950972,-12.027575622778386,-11.460079671815038,-12.128733677789569,-11.661653905175626,-12.394074577372521,-11.59917728882283,-11.493571517057717,-11.949616005178541,-11.953911378979683,-11.52349371323362,-11.545413123909384,-11.894064926542342,-11.61540140165016,-11.166627015918493,-10.924834129866213,-10.020282287616283,-9.840393706224859,-10.136718182824552,-11.114234073087573,-11.775269834790379,-12.545723015908152,-11.817592416889966,-12.461597139015794,-12.111472479533404,-12.319738580845296,-12.32672057673335,-13.266741012688726,-14.082111536059529,-14.532166623044759,-15.143489333800972,-14.700448563788086,-15.639827194157988,-16.51226776931435,-17.462511720135808,-18.126290793530643,-18.839535049162805,-18.141499262303114,-18.672012744937092,-17.739972416311502,-18.176748626865447,-17.793656940571964,-17.707278348505497,-17.9803170543164,-17.72327550686896,-17.45406414847821,-16.51406788127497,-16.855461625847965,-15.864453973714262,-15.233482635580003,-14.969564060214907,-14.581008965149522,-15.427091113757342,-15.240661450196058,-14.386637855321169,-13.894405446946621,-14.392004299908876,-14.960405675694346,-15.282795819919556,-14.449420192744583,-13.868693294003606,-14.569618803448975,-14.565697893500328,-13.903997058980167,-13.160521933808923,-13.565508231054991,-13.024931814521551,-12.82935446780175,-12.478563672397286,-12.715432224795222,-12.331155755091459,-11.78761400282383,-10.81829171674326,-10.271792979445308,-9.414917873684317,-9.217616906855255,-9.285063792951405,-8.802940230816603,-8.89297151286155,-9.731202444527298,-10.223543184343725,-10.993769041728228,-11.862057829741389,-12.39687654003501,-12.32741502719,-12.40771550917998,-11.908354869112372,-12.57904932834208,-12.453485569916666,-11.802335710730404,-12.525724922772497,-13.280553380027413,-13.080214201938361,-13.606752132531255,-14.01927519403398,-13.789622981566936,-13.559013805352151,-14.443860714323819,-14.114745595958084,-13.22401938540861,-13.068204791285098,-12.126930916681886,-11.739091951400042,-11.054364050272852,-10.195986370090395,-9.931424393318594,-10.002243116963655,-9.129962857346982,-8.952538754791021,-9.679395439103246,-10.623119954019785,-11.202448005322367,-11.994147925172001,-12.890132132917643,-12.211668524891138,-12.96917180903256,-12.343383747618645,-13.098916511051357,-13.409070736262947,-13.352299194782972,-13.541606895625591,-12.7555041895248,-11.976216221228242,-12.003946422599256,-12.508735895622522,-12.535808977670968,-11.620781533885747,-11.438403165899217,-12.037270800676197,-12.168559279292822,-11.509787056129426,-10.513333275914192,-11.25678717205301,-11.052183062769473,-10.615261987783015,-10.451094405725598,-10.315834438428283,-11.298290909267962,-11.730710010509938,-12.460775912273675,-13.268263017758727,-12.721264784224331,-12.828754196874797,-12.247477109078318,-12.16078033996746,-12.378063176758587,-12.979298752266914,-12.560641343705356,-12.733225533738732,-12.960967289749533,-12.841386439278722,-12.091310304123908,-12.191621833946556,-12.522285177838057,-13.397541885264218,-13.875652389600873,-12.9968480928801,-13.201592861674726,-14.075324023142457,-13.461859960574657,-14.237387460656464,-14.71199187496677,-14.240262300241739,-13.267844920512289,-12.387104074470699,-11.73284337343648,-11.20905417157337,-10.612574454862624,-10.348803587257862,-11.049087448511273,-10.612342081964016,-10.904645107220858,-10.337518782354891,-11.127888053655624,-10.682371370960027,-11.041951244231313,-11.296738528180867,-11.73042135918513,-11.105668635107577,-11.241679041646421,-10.421871513593942,-11.193089274223894,-10.62812877446413,-10.62880628881976,-10.80251769721508,-10.314982941374183,-9.780981574207544,-10.07926853839308,-9.639516707044095,-8.678620170801878,-8.775856078602374,-9.683289625216275,-10.665191716514528,-9.885571832302958,-8.960635573137552,-9.12898352695629,-8.65277905156836,-8.315049038268626,-9.289077709894627,-8.649993093218654,-8.170412694104016,-8.243497781921178,-8.859179697930813,-9.301999537274241,-8.948181243613362,-9.014010772574693,-9.515270303469151,-9.73396425973624,-8.984870871528983,-9.806220747996122,-8.987820730544627,-9.78456740733236,-9.948754361830652,-9.647850712295622,-8.73783748364076,-9.57469884166494,-8.907395769841969,-8.86120836948976,-8.27722137561068,-8.624193030875176,-9.451328785624355,-9.11967724468559,-8.309995139017701,-8.803040091879666,-8.856434777379036,-9.477141240611672,-10.384464452974498,-11.357494349125773,-10.918144829571247,-10.329531723167747,-9.425349436700344,-9.92318066302687,-10.156622979789972,-9.530366727616638,-10.138455462642014,-10.136963048484176,-10.213305308949202,-11.189501120708883,-10.47707522381097,-10.954357487615198,-10.964276802260429,-11.092339569702744,-11.901124322786927,-11.140925072133541,-11.680515664629638,-12.585572418756783,-12.374601450748742,-13.36966485856101,-12.566341841593385,-12.556656579952687,-12.342834530863911,-11.80975316138938,-12.513115223031491,-13.262480015866458,-12.93214981770143,-11.93294582888484,-12.327410323545337,-11.884926046710461,-11.77891952265054,-11.850641760509461,-11.206359846051782,-12.169106483459473,-11.91957085672766,-12.177524494472891,-13.145607044920325,-13.067339716013521,-13.293761809822172,-12.712004865054041,-13.404384489636868,-13.680099493823946,-13.6563918935135,-13.826224682852626,-13.963940914720297,-13.506735367700458,-12.677641451358795,-13.311155372299254,-13.982175633311272,-14.351744756568223,-13.473567038308829,-14.214880918618292,-15.121520088985562,-14.530667318031192,-14.001495230942965,-14.925163003150374,-15.089443202596158,-16.078909480478615,-15.264375851955265,-14.587869014590979,-14.98513445444405,-14.586257013492286,-14.614930166862905,-15.293630016967654,-14.968433792702854,-15.356162161566317,-15.993448108900338,-15.07061721663922,-14.312542443163693,-14.313286409713328,-13.458866272121668,-12.755463055800647,-13.209291697479784,-13.52584730880335,-13.030709490180016,-13.929710500407964,-14.467809146270156,-15.344237858895212,-15.668048396706581,-15.342158999294043,-14.557364222127944,-13.910157405771315,-14.798153292853385,-14.857442358043045,-14.368064939044416,-14.737868290860206,-14.418605369050056,-15.274039349984378,-14.762219352647662,-14.972672917880118,-15.42829027120024,-14.717961974442005,-14.638403132092208,-14.541306093335152,-15.266256337054074,-15.38000705698505,-15.797635639552027,-15.954978524241596,-15.587202901486307,-15.743793570902199,-15.604628485161811,-15.565647485665977,-15.276379300747067,-15.697963543701917,-14.938345506321639,-15.248800477478653,-14.297019488178194,-13.441433925181627,-12.558772770687938,-11.749862680211663,-10.797134299762547,-11.52301989402622,-12.266329816076905,-11.47926051588729,-10.529447302222252,-10.745403412729502,-11.710694797802716,-11.496691136155277,-11.612618018407375,-10.882861444260925,-10.302646252792329,-10.196898337919265,-11.126802112907171,-11.330098966136575,-10.830294196493924,-11.517154730856419,-11.83806405030191,-11.86259133880958,-10.927599327173084,-9.986820762977004,-9.602982783690095,-9.557671150192618,-10.08277239324525,-10.475149127654731,-11.468042066786438,-11.320753224659711,-12.102211486082524,-12.449689001310617,-11.965831676498055,-12.543483330402523,-11.645989204756916,-12.368258703500032,-12.147580256685615,-12.539281936362386,-11.788813835475594,-11.317826606333256,-10.561371195595711,-10.88607461284846,-10.819591348990798,-11.38222760008648,-10.727176326327026,-11.319459079299122,-10.361514168325812,-11.332117044366896,-11.961282178759575,-11.044565865769982,-10.091541258618236,-9.384954498615116,-9.627074657473713,-8.822236153297126,-7.859124287497252,-7.4235594077035785,-7.988608214072883,-8.213159860111773,-8.9571596654132,-8.538852838333696,-8.891474579460919,-8.89439765876159,-9.255906858015805,-8.70157598471269,-7.762701358646154,-7.285742095671594,-6.748115658760071,-6.613568347413093,-7.29309038259089,-6.507825325243175,-7.402213064022362,-6.6791294910945,-7.645291717723012,-7.847770856227726,-7.7786863199435174,-8.524418632034212,-8.341082641389221,-8.665938696358353,-8.654468062799424,-8.793011529371142,-9.320381863974035,-8.691882414743304,-9.259597273077816,-9.594646896235645,-10.208938898518682,-10.863781083375216,-10.434104499872774,-9.491128513589501,-8.538320340681821,-8.534184079617262,-9.22952469671145,-10.016182471998036,-9.333064010366797,-9.569375609513372,-8.620779753196985,-7.932459516450763,-7.8812839044258,-7.963372647296637,-8.468248682562262,-8.418248977977782,-7.739749637432396,-7.473873987793922,-6.506782288663089,-6.402806638274342,-7.004030117299408,-6.226828146725893,-6.887604865245521,-6.264973647892475,-7.103673770558089,-6.540330664720386,-6.627001010347158,-7.400757466442883,-8.131778265815228,-8.735624143388122,-7.849406616296619,-8.655638971365988,-9.291679840534925,-10.14595328271389,-10.444257285445929,-10.292637184262276,-9.376310700550675,-9.224902286194265,-9.732619837857783,-8.947176104877144,-8.577843555249274,-9.185739520005882,-9.290642912965268,-8.599997613579035,-7.616785288322717,-8.253118256106973,-9.209134092088789,-8.903187543619424,-9.329638194292784,-8.950230839196593,-9.361786421854049,-9.646136866416782,-10.19067525723949,-9.69072892703116,-8.968585670460016,-9.408159925136715,-8.496697193942964,-8.439555790740997,-8.224793697241694,-7.62413083948195,-7.024517130572349,-6.784893941134214,-7.525486284866929,-7.743842160794884,-8.424557675141841,-8.928414897527546,-8.265564813278615,-9.137716943398118,-9.920713457278907,-9.870174613781273,-9.815357784274966,-10.054365911055356,-9.474176664371043,-9.515640754718333,-9.958739001303911,-10.252962422557175,-10.397926760837436,-10.858899417798966,-10.181038121692836,-9.708952227141708,-9.67298080585897,-9.714959593024105,-9.20116968313232,-9.473931051325053,-9.804920968133956,-9.524851863272488,-9.632057438604534,-8.791971499100327,-9.709570915438235,-9.023013417143375,-9.166770595125854,-8.68765803752467,-9.436407748609781,-8.881528448779136,-8.822114777285606,-9.15353007754311,-9.60074048768729,-8.992455604486167,-8.47727179247886,-8.416028280742466,-7.5174312316812575,-7.9313898528926075,-7.865398366004229,-8.653843431267887,-9.066093397792429,-8.480500005185604,-8.945942764170468,-9.85357427643612,-9.30533515010029,-8.455832695122808,-9.194607020355761,-9.916819229256362,-10.903499346226454,-11.875973633490503,-12.189346983563155,-12.479423522017896,-12.286284485366195,-11.984425940550864,-11.827964352909476,-12.71098519815132,-12.541885090991855,-13.52185408771038,-13.294105358887464,-13.375328136608005,-13.367474922444671,-12.888775538187474,-12.721482348628342,-12.27144923619926,-11.989691207651049,-11.255516821984202,-11.565431864466518,-10.861536411102861,-11.433664021082222,-12.290469476021826,-13.232692778110504,-13.982571744825691,-13.549753119703382,-13.799136659596115,-14.419495386071503,-15.055680813267827,-15.921507006045431,-15.466294924262911,-15.987211584113538,-16.81621772935614,-17.463571242056787,-17.044428658206016,-16.552119887433946,-17.418450079392642,-18.08512413315475,-17.27021237788722,-18.21503742132336,-18.33163345605135,-17.955797327216715,-18.686693620868027,-18.826016990467906,-18.9875148977153,-18.248034697491676,-19.190056564752012,-18.603145787958056,-18.788195525296032,-19.62206974439323,-19.054253645706922,-19.545860507991165,-19.501001685857773,-19.008534755092114,-19.384768766816705,-19.59647211851552,-19.200652619358152,-18.3615626366809,-18.07251701876521,-18.438220301643014,-18.125065468251705,-18.342445217538625,-18.23147616768256,-17.74691094690934,-17.04192593926564,-17.726766464766115,-17.51960660656914,-16.99252312583849,-16.06049524154514,-16.041078687645495,-16.056561873760074,-16.05884746974334,-15.184079561382532,-16.100311605725437,-17.01441857405007,-16.998031948227435,-16.365227203816175,-17.057084990665317,-17.245515395421535,-16.952983445487916,-17.765489897690713,-17.50498118577525,-16.60204884270206,-16.45256874617189,-15.677588806021959,-14.992668223101646,-14.425674225203693,-15.369714905042201,-15.930906690191478,-16.024600795470178,-16.33464282937348,-15.464913526549935,-15.970635929144919,-16.09844135819003,-16.713787144050002,-17.470058121252805,-17.55104704760015,-17.14255881216377,-16.732425765134394,-17.578519779257476,-17.078254599589854,-17.571892858017236,-18.210335648152977,-17.643315760418773,-18.493703255429864,-19.019264039583504,-18.59577971836552,-17.749377661384642,-17.495915304869413,-17.016713826917112,-17.55894030816853,-18.300947325769812,-18.840931395068765,-19.813867604825646,-20.19710349244997,-20.44886108255014,-19.735349881928414,-19.631324329413474,-19.610103718470782,-19.110511311795563,-19.944978738669306,-20.36404236778617,-20.899342199787498,-20.244074705056846,-19.827710788697004,-20.57141426578164,-19.589381134603173,-20.32911115977913,-19.929114720784128,-20.662332270294428,-20.669672562740743,-20.956972993910313,-21.37573399953544,-21.51089338865131,-22.05544292414561,-21.24898205464706,-20.484046589117497,-19.87738611130044,-18.9427882428281,-19.587041648104787,-18.80298470100388,-19.320132586639374,-18.725035771727562,-19.644575946033,-19.454110872466117,-20.15689341025427,-19.79128182074055,-19.040664869360626,-19.40538485441357,-18.892591376323253,-18.115333076566458,-17.444396458100528,-17.484697385225445,-17.803382148966193,-18.39393381169066,-18.50206323666498,-18.47775575518608,-17.827197907026857,-17.281914202030748,-16.65479137096554,-16.782382066361606,-16.19899704772979,-15.639796524308622,-14.70417210739106,-14.37092155078426,-15.260195994284004,-14.799933802802116,-14.500243430957198,-14.531755771487951,-14.590668076649308,-15.003368338569999,-14.845363803207874,-15.095147242769599,-14.746549061965197,-14.23772488720715,-14.004095868207514,-13.391088194679469,-13.196129689924419,-12.56505909981206,-13.038173330016434,-12.706895059905946,-13.68881096644327,-13.437915075104684,-13.534660638775676,-14.185868552420288,-13.221229005139321,-12.541003879159689,-12.65474629867822,-12.248719051945955,-11.267113002948463,-10.57707189116627,-9.908323471900076,-10.891980945132673,-10.125509106554091,-11.108455309644341,-11.732339786365628,-12.011933011002839,-12.526137916371226,-13.201958145946264,-13.996027749963105,-14.358990023843944,-15.195804709102958,-16.08443669648841,-17.001780678052455,-16.957901303190738,-17.031230233609676,-17.103221613913774,-16.605136951897293,-16.688161051366478,-16.757190635427833,-17.737116896547377,-17.872841340024024,-18.641878481954336,-18.791773435659707,-19.125059047713876,-19.89563423488289,-20.7999893669039,-21.655400400515646,-22.60248423134908,-23.54916676459834,-23.556776409503073,-24.39316848665476,-23.615530664101243,-23.02856372995302,-23.82921000616625,-23.232160640880466,-23.473137903027236,-23.373222833964974,-23.880030520260334,-24.4031852921471,-24.19013201026246,-24.506718777120113,-23.928153538610786,-23.299993801862,-22.57580481795594,-22.010935775004327,-22.975379190873355,-23.5186641770415,-24.452791068702936,-24.749487693421543,-24.53062364505604,-24.492916939780116,-23.857710416428745,-23.657167662866414,-24.414526555221528,-23.83974479464814,-24.216169484890997,-23.972624505870044,-24.528673442080617,-24.418094248510897,-23.64082311326638,-24.01852975320071,-23.739827560726553,-24.72278289590031,-25.06647715996951,-24.842372729908675,-25.22199401212856,-25.915362137835473,-26.252726008184254,-25.488622494973242,-24.69313195068389,-24.602105819620192,-24.553363400045782,-24.544255192857236,-24.574139826465398,-24.81270500877872,-24.619162586983293,-24.306894303765148,-23.959617295768112,-24.717367379926145,-24.950913602486253,-25.549097954295576,-26.263635772280395,-26.547064642887563,-26.485479440540075,-27.3426172779873,-26.759020916651934,-26.16663358034566,-26.943916001357138,-26.55076103936881,-25.889737052377313,-25.79628693079576,-26.48604840086773,-27.031463207677007,-27.6434388095513,-28.493135472759604,-27.930596135556698,-28.22874172916636,-28.003327042330056,-27.05235590459779,-27.852462809998542,-27.697474920656532,-27.321452105417848,-27.156825110781938,-27.926539757288992,-28.5328681464307,-28.79301392985508,-28.18861944740638,-29.009827205445617,-28.487321123946458,-27.671949181240052,-27.333303501829505,-27.057810171041638,-26.81754281418398,-26.910524720326066,-27.76435650791973,-28.006544982548803,-28.255875882692635,-28.119879680220038,-27.411779729649425,-28.16112023452297,-27.39032042119652,-27.361129013821483,-27.743133102543652,-28.003151648212224,-28.90466418210417,-28.68959628045559,-29.673690458759665,-30.62456754501909,-29.736932364292443,-30.395494133234024,-30.184962518513203,-30.20790936006233,-29.48056959081441,-29.68262245133519,-30.040717136580497,-29.790020902641118,-28.802381335757673,-28.286821798887104,-27.84048064937815,-28.401893125846982,-29.07243549823761,-29.235197867732495,-28.69584497017786,-29.667289152741432,-30.574511541519314,-29.876471201889217,-28.883955241646618,-28.631386757362634,-28.658061934635043,-28.18918382562697,-28.870634593535215,-28.216139662545174,-28.67132863169536,-28.37822155514732,-28.730820877011865,-29.019548614975065,-29.37089841859415,-28.911307842005044,-28.417332550976425,-28.800141128711402,-27.843035550322384,-27.382248433306813,-26.638517385348678,-27.488166708033532,-26.74669129634276,-27.63998075714335,-26.641215533018112,-26.81551805511117,-26.464655599556863,-26.767331410665065,-26.54635750548914,-26.147068999242038,-26.074866648763418,-25.513369388412684,-25.580800123978406,-25.17755922721699,-25.13147259503603,-24.76432642620057,-24.254493767395616,-24.64586473722011,-23.684469311498106,-23.0297860102728,-23.397930030245334,-24.251213406212628,-23.610639867838472,-23.181033392436802,-22.202120256610215,-21.50441090017557,-21.63412309670821,-22.388165827840567,-23.116216878872365,-22.86175989964977,-23.79640704067424,-24.587659900076687,-24.54480226803571,-25.479897311888635,-25.391938540153205,-25.22531689191237,-24.45351778017357,-24.175621647853404,-23.516154878307134,-24.452287240885198,-24.141159965191036,-23.46706070844084,-23.895487872883677,-24.677616480272263,-23.837728244718164,-23.450761003419757,-24.2683034427464,-24.325307494029403,-24.65253489324823,-25.143195071723312,-25.732431085780263,-25.408506703563035,-25.170164606533945,-26.065820675343275,-25.50886439392343,-26.340087838005275,-25.47703248495236,-25.23841064516455,-25.561707499437034,-25.81194654572755,-25.395073778927326,-25.265887015499175,-26.02509031072259,-25.801578390877694,-25.12467698706314,-24.14590450702235,-24.462951101828367,-25.461448810063303,-25.250792749226093,-24.386804374866188,-25.01105540152639,-24.544315366074443,-23.674287408124655,-24.272109549492598,-23.861000267788768,-24.778629294596612,-24.781704689376056,-24.284535941667855,-25.15219688229263,-24.30807794025168,-24.528129655402154,-24.512820473872125,-24.635527497157454,-25.58317254856229,-26.39356748573482,-26.323829128872603,-27.08227401180193,-27.663616555277258,-26.984347120393068,-26.428280296269804,-25.49758490966633,-25.55013557896018,-25.910750036127865,-25.087622593622655,-25.271927944850177,-24.93294851621613,-24.737130265217274,-24.849616447929293,-24.011896050535142,-23.573877898976207,-23.197695651557297,-23.438500971533358,-23.241691807750612,-22.64495935756713,-22.583888713736087,-23.52136998064816,-23.35097129549831,-22.569866084028035,-21.597588581498712,-21.37115154461935,-22.21700821397826,-22.415135546587408,-21.993191957008094,-21.235879940912127,-20.888543719425797,-20.911299935076386,-21.738765263464302,-22.4805377535522,-22.596606474835426,-23.046531851403415,-23.72759563056752,-23.445004326757044,-23.239375567995012,-23.703048582654446,-23.15460238046944,-22.490924451034516,-22.19013718655333,-22.852643883321434,-23.23566920356825,-22.267059503588825,-22.49750898592174,-21.501443312037736,-21.93361601512879,-21.103397384285927,-20.189750871621072,-19.912581771146506,-19.40270158322528,-19.396095847245306,-19.432327571325004,-20.061899739783257,-20.1829072823748,-20.239445639308542,-20.170722968876362,-19.35002931347117,-19.30651727784425,-19.533377912826836,-20.080869294703007,-19.313259630464017,-20.252078488003463,-20.905142939649522,-20.066613130271435,-19.987578228581697,-20.39257833128795,-20.773851782549173,-21.581775805912912,-20.928717584814876,-20.07955371076241,-20.229229684453458,-19.517717169597745,-19.06805294100195,-18.954994220286608,-18.869476152118295,-19.337425503414124,-19.70227026892826,-19.137231659144163,-19.686341535300016,-20.551691610366106,-20.64296806184575,-21.395504118409008,-22.12291506724432,-22.710493045393378,-23.7059403215535,-24.64093626337126,-24.148331569042057,-24.91116905817762,-23.92735207779333,-23.672011283691972,-23.069163240958005,-22.62472553225234,-23.36330662574619,-22.93802871601656,-22.064015928655863,-22.908388862852007,-23.848192372824997,-23.365775145590305,-22.990701094269753,-23.41680003935471,-23.18840997107327,-23.87850623903796,-24.06666971743107,-23.817041708156466,-24.383325777947903,-25.16645040595904,-24.717582907527685,-24.336044737603515,-24.44301571045071,-23.728946503717452,-23.87183671677485,-23.671182692982256,-22.76608253084123,-23.69354002736509,-23.662318057380617,-24.11695552803576,-24.356908760033548,-24.037244383711368,-24.101374874822795,-24.726838692557067,-24.759015697520226,-24.02512909285724,-24.488652017898858,-24.481434219051152,-25.360521923284978,-25.453321472741663,-24.482308400329202,-23.510336086153984,-24.1565401959233,-24.07717652292922,-23.10787256900221,-22.53630147082731,-23.52973320009187,-22.601206049788743,-23.035029764287174,-22.899061249103397,-22.121184160001576,-22.728042682167143,-22.52739716041833,-22.535659150220454,-22.983227167278528,-22.09647471830249,-21.905094156507403,-22.271056146826595,-21.47214101627469,-21.605492408387363,-20.932937952224165,-20.737912987358868,-21.31707596965134,-20.446179347112775,-20.61456537991762,-20.42083711270243,-21.151266663800925,-20.637302312534302,-20.818194699008018,-20.04684109520167,-19.086708185262978,-18.372451707720757,-17.901059033349156,-16.960699692368507,-16.709041975904256,-15.782741929404438,-15.24981392500922,-15.770255567040294,-15.944583249278367,-15.22370347334072,-14.505454972852021,-14.434554744977504,-13.48595832195133,-12.87210545130074,-13.349946511909366,-14.230960197281092,-15.07472677482292,-14.582415938843042,-13.806754774879664,-13.517932823393494,-13.90159527072683,-14.738994308747351,-15.664863552898169,-16.629340212326497,-16.67906939284876,-17.376726249232888,-17.505828281864524,-17.683006138075143,-17.184408826287836,-16.728422714862972,-17.595575503539294,-17.921528100036085,-17.753576507791877,-18.463468924164772,-17.762811170890927,-17.150587243027985,-16.221744389273226,-15.46746130939573,-15.139520383439958,-15.720057544764131,-16.412333281245083,-15.66254592128098,-15.212466999422759,-14.456780061125755,-13.779244310688227,-13.208822926040739,-12.60397113673389,-13.03294830955565,-12.812829811591655,-11.932630901224911,-11.337770265061408,-12.113690992817283,-11.161382046993822,-11.426244735252112,-11.017573931254447,-10.036010715179145,-9.572660134639591,-8.783669711556286,-9.333527124021202,-9.17551664588973,-9.010155828204006,-8.207571821752936,-8.365614515263587,-8.253800929058343,-9.137926071416587,-8.304131146054715,-8.33822920313105,-7.894953170791268,-6.99020532425493,-6.02336877817288,-5.6079797758720815,-6.406145969871432,-5.921963611152023,-5.434197918977588,-6.285543937236071,-6.409527491312474,-6.020198944956064,-6.351766639389098,-5.56915641669184,-4.6921491315588355,-5.615685753058642,-5.111723801586777,-5.966210829559714,-5.567211082670838,-6.335087406914681,-6.768547893501818,-7.66013660794124,-8.31684955721721,-7.663880812935531,-7.438989304937422,-6.843407154083252,-6.243002051487565,-5.71561919990927,-5.668779055122286,-6.438449537847191,-5.636690785642713,-5.926536330487579,-6.537406308576465,-6.985497793648392,-7.440945258829743,-6.935874335002154,-5.997628889512271,-6.213360546156764,-5.691125767771155,-5.0033998736180365,-5.351139790378511,-4.75865768129006,-5.001723406370729,-4.51152439462021,-3.745823179371655,-4.044295198749751,-4.3702068026177585,-4.861506767570972,-5.703429575078189,-6.113532437942922,-6.918186986353248,-6.7350246496498585,-6.490658284164965,-7.263054724782705,-7.8069355962798,-7.309915109537542,-6.7315590577200055,-6.198469164315611,-6.931130329146981,-6.586606964468956,-6.040605877991766,-5.080626560375094,-5.458589017391205,-6.08013830287382,-6.756998627912253,-7.445594586897641,-8.443432015366852,-8.577790001407266,-8.713306169956923,-7.891227059066296,-8.434113198891282,-8.433202899061143,-8.286673246882856,-8.88230612874031,-8.956864148844033,-8.257717856671661,-7.999102080240846,-8.960969154257327,-9.242230239324272,-9.83301942795515,-9.895332990214229,-9.566907027270645,-9.724218565039337,-9.472866714466363,-9.152984300162643,-9.454884111881256,-10.101997685618699,-9.951865255832672,-9.412909908685833,-9.859391928650439,-10.478052638005465,-11.318873329553753,-10.358329424634576,-10.15482113044709,-9.471022930461913,-9.308940171264112,-8.654749847948551,-9.41214021248743,-9.914593365974724,-9.50690052844584,-10.40649008564651,-9.824157494585961,-9.090511387214065,-9.467427691444755,-8.890771730802953,-9.59926858637482,-8.698306816164404,-9.106845512986183,-8.958662690594792,-9.241272832266986,-9.880036705173552,-10.08265698235482,-10.92256148904562,-10.98883614782244,-10.596970210317522,-10.164798418059945,-10.000926317181438,-10.5790613302961,-10.728011987172067,-10.081656469963491,-9.531383602879941,-8.953136787749827,-8.13054717099294,-8.494888001587242,-8.448567807674408,-7.56485896371305,-7.347584796603769,-6.916732216719538,-6.950564519036561,-7.029343876987696,-7.851849369704723,-8.50618004007265,-8.78256605565548,-8.595951434224844,-8.200691376347095,-8.181904345750809,-8.695708091836423,-9.060552419628948,-9.737942606210709,-8.835670212749392,-8.02821166999638,-7.772390969563276,-8.752498377114534,-9.68438608571887,-9.648620074149221,-10.0684107770212,-10.750605659559369,-10.493074531666934,-10.956780903507024,-11.344333790242672,-11.741153048817068,-11.810148363932967,-12.491022928617895,-11.793981585185975,-10.863649487495422,-11.09141165483743,-10.828884658869356,-11.000631401780993,-11.88895945250988,-12.482372063212097,-11.722586448304355,-11.956338321324438,-12.263902957551181,-11.58974446868524,-11.009467710740864,-11.17277987441048,-12.021120680961758,-11.694798947311938,-10.918083797208965,-11.59841706417501,-11.405478962231427,-11.352598644327372,-11.41219030180946,-11.642988102976233,-11.27853653486818,-11.564221083186567,-11.536927941720933,-12.532351170200855,-12.160490344278514,-12.070682280696929,-11.452726771589369,-11.402376582846045,-10.745425122790039,-11.302760618273169,-10.828641290776432,-11.776075216941535,-11.462270946707577,-10.83418616745621,-10.48954991158098,-9.628852329682559,-10.610782662872225,-11.41597977746278,-11.559882934205234,-10.726293353829533,-11.708274828270078,-11.904993793927133,-11.321002786513418,-10.677994299679995,-11.387516901362687,-12.199226864613593,-12.03268582886085,-12.152587864082307,-11.485159183852375,-10.60976350819692,-10.912800330668688,-11.613706360571086,-10.766544253565371,-10.04102672310546,-9.953143268357962,-9.293674724642187,-9.454320742283016,-8.900575280189514,-9.481652282644063,-8.984323201701045,-8.000465405639261,-8.495542999822646,-7.5253420090302825,-6.77873601578176,-5.977236985694617,-6.787040708120912,-6.150763985235244,-6.0221275659278035,-6.5079325758852065,-5.879553149919957,-6.38577254395932,-5.81569994520396,-6.610807901248336,-6.052347769960761,-6.552649108693004,-7.198639024049044,-6.751389405224472,-7.113791756331921,-8.042358137201518,-7.47667665919289,-7.656444047577679,-7.824868520721793,-7.606157694011927,-7.621394983958453,-6.792853360529989,-7.396361902821809,-7.7832981906831264,-8.602207032032311,-8.722267033997923,-8.424128200858831,-9.167847680859268,-8.735693896189332,-8.972642902750522,-9.441710407845676,-10.224333552177995,-9.606729514431208,-10.098070302046835,-9.746178998611867,-10.690301077440381,-10.70001363195479,-10.455714216921479,-9.630177585873753,-9.044834160711616,-9.868282639887184,-10.405546844471246,-10.88999073440209,-11.423246122896671,-10.951571869198233,-11.54117970354855,-10.612924515735358,-10.978179805912077,-11.356074650771916,-11.687914238777012,-11.198289457708597,-11.158320104703307,-11.160391451790929,-10.274265054613352,-10.504949760157615,-9.620046308264136,-10.168671326711774,-10.47210231423378,-11.061329688411206,-11.928251241333783,-12.24094519065693,-12.574935780838132,-13.54149698605761,-14.474577205721289,-15.19238987006247,-14.229220509529114,-15.140007675625384,-15.882850223686546,-16.63424612674862,-16.568348324857652,-15.583103742450476,-15.22869879566133,-14.704877861775458,-14.218554799910635,-13.938335187267512,-13.009544069878757,-12.866507519967854,-12.147109479177743,-11.906344583258033,-11.05922324070707,-10.494830667972565,-10.482286316808313,-9.488550826907158,-9.657977495808154,-8.702944294083863,-9.285804570652544,-8.991127935703844,-8.872463040519506,-8.98269734531641,-9.777415561955422,-9.690928906667978,-9.378269408363849,-9.424766230396926,-8.705368722323328,-8.177415418438613,-7.660334053449333,-7.081889419816434,-8.044338495470583,-7.408318209461868,-6.553715252317488,-7.3809487679973245,-7.619220877531916,-8.514401956927031,-8.375744891352952,-9.273287245538086,-10.182014232501388,-10.83562954608351,-10.562820817809552,-9.624285255093127,-9.960200004279613,-10.042494662571698,-11.018819581717253,-11.077645431738347,-12.00162147730589,-12.324923372361809,-12.07748711714521,-11.161648225970566,-10.8308015326038,-10.042108344845474,-10.510777038056403,-9.645915717817843,-9.570258827414364,-8.89884575130418,-8.433659235481173,-9.198186063207686,-8.531885925214738,-8.679034071974456,-8.97429990535602,-8.50413882965222,-9.166719343047589,-8.929653833154589,-9.199603601358831,-8.461575966794044,-8.925115025602281,-8.59567553224042,-8.632390071172267,-8.694877353031188,-8.948823797516525,-9.485677042976022,-9.40965573163703,-10.31212155520916,-11.158432924188673,-10.481351332273334,-10.353636719286442,-9.708933610469103,-9.23008935758844,-9.576054693199694,-9.895002169068903,-9.104692023713142,-8.467626499012113,-7.667114753741771,-8.268497458193451,-7.60383329866454,-8.364498428534716,-8.588036441244185,-9.435595151502639,-8.620955262333155,-8.790456669870764,-9.776532587595284,-9.22190685197711,-9.416849390603602,-8.992628520354629,-9.199533443432301,-8.97490296466276,-9.849145313724875,-9.078958698548377,-8.786255646962672,-9.155893464572728,-8.49497616617009,-8.10214270139113,-8.353883903473616,-8.316656011156738,-7.64320810418576,-8.04819905757904,-7.93835291499272,-8.21843333542347,-9.171616338193417,-10.154502634890378,-10.460579118225724,-10.262135340366513,-9.298055119346827,-8.446695677936077,-8.35665073664859,-7.736579631455243,-7.269325029570609,-6.4692840510979295,-5.5965151325799525,-5.504588668234646,-4.977949908003211,-4.177556564565748,-3.8034782302565873,-4.174565199762583,-4.509070027153939,-5.020585315302014,-4.837226301897317,-4.619144807569683,-5.039597829803824,-4.343060500919819,-3.447117620613426,-4.1409508301876485,-4.94142832281068,-5.10987408971414,-4.30751811247319,-3.5679619600996375,-3.6273372774012387,-4.243164569605142,-4.3107636496424675,-3.9314996055327356,-3.9779290687292814,-3.9379867925308645,-4.898365832865238,-4.453340189997107,-4.737882033921778,-4.072101505473256,-4.104050430469215,-3.936551744118333,-3.554687096737325,-3.532945556100458,-4.08613177202642,-3.727727027144283,-4.557934468146414,-5.486823293846101,-4.570896256249398,-5.178440760821104,-5.397366974968463,-4.996998420916498,-4.509468168951571,-4.511271005496383,-3.896023367997259,-4.354321273975074,-4.224921014159918,-4.937957325018942,-5.2682138085365295,-4.294062750879675,-5.204364908859134,-5.072578206658363,-5.351833363529295,-5.734766527544707,-5.99605344934389,-6.859086292795837,-6.668344193138182,-6.717325448058546,-7.697088159620762,-6.854191518388689,-6.074850078672171,-5.768629090394825,-6.502100985031575,-5.873668342363089,-5.211854928173125,-5.86150444438681,-6.489269546698779,-6.225634994916618,-5.907349617220461,-5.707574451807886,-6.031661855522543,-6.176955571398139,-5.495815614238381,-4.855112257413566,-5.084075717255473,-4.7822462525218725,-5.643822298385203,-6.052275143098086,-6.521467993501574,-6.875049741473049,-6.20973255764693,-6.991475474089384,-6.123639693018049,-6.902081021107733,-7.512843234464526,-8.359206054359674,-7.575141950510442,-8.442753124982119,-8.003871005959809,-8.63072386663407,-8.263542455155402,-7.8175361370667815,-6.837828551884741,-6.59142459044233,-5.80919802095741,-6.344684443436563,-5.557859955355525,-5.54102128604427,-5.442334603518248,-6.279210648499429,-5.629454831592739,-6.510744710452855,-6.918949639890343,-6.913096413016319,-6.786104605998844,-6.105899926275015,-6.418355719652027,-6.057241985108703,-5.679368448909372,-4.888566612266004,-4.378598735667765,-4.203795050270855,-4.884032099507749,-5.107894607819617,-5.740486810449511,-5.718031575437635,-5.7518477234989405,-6.054645960684866,-5.893968283198774,-6.378134208265692,-5.890147120691836,-5.011674372944981,-5.597706785425544,-4.763423627708107,-4.628249738365412,-4.480772696901113,-4.955207617022097,-4.614136158488691,-4.676181133836508,-3.9714821283705533,-3.724029691889882,-2.966263798531145,-3.4812907255254686,-3.921693325974047,-3.021689508575946,-2.4204807095229626,-1.8907200400717556,-1.9145235437899828,-2.6309813698753715,-2.1516344170086086,-2.0390184577554464,-2.08200791105628,-2.6775296898558736,-2.501632052939385,-2.3168886420316994,-2.8179214135743678,-3.3738255286589265,-3.3558508213609457,-3.5023405863903463,-2.505099105183035,-2.706253302283585,-2.7826437917537987,-2.0160363549366593,-1.267689287662506,-2.1906069084070623,-1.6818722891621292,-1.8322401926852763,-1.2489870726130903,-2.1760466285049915,-2.7428597756661475,-1.8225849336013198,-1.8042436544783413,-2.3147157886996865,-3.1422147057019174,-3.6526717361994088,-2.8088710545562208,-1.8739025765098631,-2.7385490178130567,-2.43289099028334,-1.7421958455815911,-1.1713993311859667,-1.0302442777901888,-1.070584498345852,-1.8975714189000428,-1.7559099150821567,-1.0685825776308775,-1.0089007164351642,-0.09087080042809248,-0.055750982370227575,0.815324938390404,1.8018317888490856,1.063445677049458,0.2708053858950734,-0.6233502831310034,-1.427916791755706,-1.855005036573857,-1.2997705047018826,-0.3304615989327431,-0.611847628839314,-1.2022165711969137,-1.2293070554733276,-0.38655039947479963,0.5191591964103281,1.35152808111161,2.1217943471856415,1.6095783347263932,1.0848977589048445,0.5899592116475105,0.9944989448413253,0.04984336905181408,-0.12314556492492557,-0.2357156896032393,-0.7012106725014746,0.06059952173382044,0.6392123680561781,0.4631616845726967,-0.2938925325870514,-0.04292258759960532,0.7932330085895956,1.767724267207086,1.4229260762222111,1.2601547688245773,0.6175697771832347,-0.25090680830180645,-0.45554655883461237,0.37614633422344923,0.14135121973231435,0.282404160592705,0.8094407422468066,0.574620321393013,0.009224040433764458,0.02850654348731041,-0.855949726421386,-1.290440735872835,-0.5283144833520055,0.41341386968269944,-0.27472836058586836,0.5601835274137557,1.3282812763936818,2.139447999652475,1.7748003960587084,1.8680694568902254,1.634805941954255,1.4567611701786518,2.2932075024582446,3.2398885027505457,2.809739636257291,2.301619502250105,3.1238322304561734,2.216276303399354,1.333143761381507,0.7482294500805438,0.44639775110408664,0.47198427515104413,0.7781050382182002,0.08564110193401575,-0.6074062795378268,-0.2881416594609618,-0.7020548712462187,-0.6528936303220689,-1.6257665078155696,-2.345296767540276,-2.261919945012778,-2.3742679259739816,-3.1938812942244112,-3.9351338762789965,-3.381267635151744,-4.283403144683689,-4.048720043618232,-3.1206063930876553,-4.0682758069597185,-3.990826257504523,-4.384251455776393,-3.9673786549828947,-3.174532680772245,-2.8681088546290994,-3.0603380957618356,-2.405668461229652,-3.2248621061444283,-3.6982471896335483,-3.8304671198129654,-3.813445462845266,-4.646848138421774,-4.598235398065299,-5.28624683059752,-4.323185071349144,-3.445085781160742,-3.2889494788832963,-2.5496649467386305,-3.41718490421772,-3.122200340498239,-2.5840961365029216,-2.076880155131221,-1.745492218527943,-2.6663193739950657,-2.558534479700029,-3.5205171550624073,-4.177545783109963,-3.604221333283931,-4.471773579716682,-3.9792986530810595,-3.0309840249828994,-3.7497223778627813,-4.508421957027167,-5.454268207773566,-4.982126764021814,-4.355680476408452,-4.072082391474396,-4.313579082954675,-5.079163147136569,-4.822937980759889,-5.385385034140199,-5.025950513780117,-4.834320886991918,-4.542618699837476,-5.32466433243826,-4.9640032751485705,-4.597152974456549,-4.005825828295201,-3.384381405543536,-3.505416865926236,-3.7201608968898654,-2.805892154108733,-2.014306826982647,-1.7456994922831655,-2.6145947817713022,-2.793745629489422,-2.1607680339366198,-1.6489101061597466,-1.1292181932367384,-0.4963881615549326,0.2109902799129486,1.1778813214041293,1.054550260771066,0.30654023913666606,0.3266248470172286,1.210885380860418,0.8048906805925071,1.7694056676700711,1.7355198012664914,2.101855199318379,1.709348242264241,1.0978112677112222,1.5062517584301531,2.4566751797683537,1.8178258165717125,2.5641051470302045,2.465726926457137,2.260688520502299,2.7278040586970747,1.8644303628243506,2.2716670189984143,1.295625758357346,1.930690719280392,2.684411476831883,1.9412209410220385,2.150482119526714,1.2579424362629652,0.8680043085478246,1.1131966523826122,1.6714194361120462,1.0908638234250247,0.16837958013638854,0.3468330046162009,0.8565161474980414,0.5537195960059762,-0.022941382601857185,0.5462137032300234,-0.10034009162336588,-0.5142324743792415,-0.34723138017579913,-0.4642061204649508,-0.7511697029694915,-1.4743736675009131,-1.8783575375564396,-2.6035438645631075,-3.2236263738013804,-4.067478198558092,-3.8885970222763717,-4.515810852870345,-3.928433272987604,-4.465375449042767,-3.9847487779334188,-2.989404955878854,-2.9670259738340974,-2.4739953530952334,-2.8921657660976052,-3.333207213319838,-2.92204617196694,-1.9692721273750067,-1.4223536709323525,-0.7870357246138155,-0.16158504225313663,-0.5866225562058389,-0.5347293349914253,0.06708668963983655,-0.6516265249811113,-0.3540435233153403,0.1013544830493629,-0.8825834514573216,-1.8600771534256637,-0.9630544655956328,-1.71548374556005,-2.4813969638198614,-1.5654674898833036,-1.7726861839182675,-1.5254030269570649,-1.803312995005399,-2.414690724108368,-2.2433359106071293,-1.662453395780176,-0.939912170637399,-1.2852530241943896,-0.3470728169195354,0.4074336877092719,0.1529213609173894,0.14398493943735957,-0.04321283381432295,0.6922477097250521,1.2832906050607562,1.0608202461153269,1.0900501245632768,0.6835050308145583,1.5257181762717664,1.8529139962047338,0.89919916074723,0.6557732606306672,-0.12604812905192375,0.14476420124992728,0.20777303026989102,0.2960340650752187,-0.4411605610512197,0.007432776503264904,-0.764455284923315,-1.6426464896649122,-0.7374284365214407,-0.17857878096401691,-0.22468710877001286,-0.29108179127797484,-0.49811065942049026,-1.4076530598104,-1.2678428306244314,-0.9932190757244825,-0.40725399600341916,0.19754251558333635,0.002038239501416683,-0.6641656206920743,-1.3424476888030767,-1.296202122233808,-1.2175166890956461,-2.039917407091707,-2.673355743288994,-2.394614681135863,-2.471174976788461,-2.418936959002167,-2.4435628629289567,-2.8663710481487215,-3.103714771103114,-2.536313334479928,-2.6799554931931198,-2.5940997479483485,-3.0926767578348517,-2.93559607071802,-2.415495711378753,-2.564519356004894,-3.1019448288716376,-3.305932547431439,-2.8372844462282956,-3.6370372138917446,-3.8750459160655737,-3.4618915538303554,-3.312927225138992,-3.5172841330058873,-2.8443298060446978,-2.993241468910128,-3.434277078602463,-3.727172293700278,-4.688665764871985,-5.041995705105364,-5.533150085713714,-6.346304340288043,-6.534833321347833,-5.912317746784538,-5.019896525423974,-5.151469784788787,-4.497705096844584,-4.413148179184645,-5.157042597886175,-4.238761629909277,-5.086374535690993,-4.320998454000801,-4.390273550059646,-3.9116691290400922,-4.38466348964721,-3.9807084752246737,-3.9457190837711096,-3.8492279471829534,-3.160833934787661,-2.343225374817848,-1.4953718837350607,-1.5578088434413075,-1.6249963724985719,-1.594432931393385,-1.6294995499774814,-1.815859658177942,-1.1054554381407797,-1.9659778107888997,-1.4849056424573064,-2.4017467759549618,-1.4027342698536813,-2.1711766668595374,-2.5179800554178655,-1.8771297726780176,-2.346571654547006,-1.5435664672404528,-1.0995397972874343,-0.5032869512215257,0.024527072440832853,-0.9729440952651203,-1.3061290495097637,-1.824015824124217,-2.4475672324188054,-1.869480945635587,-2.2256131884641945,-1.922298492398113,-1.257180857937783,-0.8583609880879521,-0.5475364290177822,-0.047179910354316235,0.018188499379903078,0.4945321548730135,0.48060177313163877,0.08933311142027378,0.4360896237194538,-0.1477215620689094,-1.1475211549550295,-1.1671002800576389,-0.7491115001030266,-1.0300727975554764,-0.9026808165945113,-0.39540454698726535,0.5140747702680528,-0.33871568692848086,-0.5188215114176273,-0.9897793871350586,-1.2406279970891774,-1.8517313883639872,-1.2327446290291846,-1.3845674912445247,-2.00618793675676,-1.7106091110035777,-1.070349276997149,-0.5805323971435428,-1.1179151646792889,-0.9503621929325163,-1.6034794352017343,-0.7140374183654785,-0.9044675189070404,-0.11698127072304487,0.7850507847033441,0.1140388147905469,-0.17420616745948792,0.6427210834808648,-0.09529637219384313,-0.33814545813947916,0.4973621475510299,-0.011952309403568506,-0.6390936295501888,-1.6338360789231956,-2.3800873337313533,-1.871566922403872,-1.1612240769900382,-1.002143925987184,-0.9990329849533737,-1.685032059904188,-2.6361516332253814,-2.4751194738782942,-3.302994212601334,-3.1370611996389925,-3.2153479047119617,-2.8967656530439854,-2.8553121518343687,-2.8271226747892797,-1.9856319511309266,-1.6623459234833717,-2.1625679177232087,-2.550358686130494,-2.2771540977992117,-2.2611440722830594,-2.0451103262603283,-2.1042536343447864,-2.0598560008220375,-1.8884241036139429,-1.041078507900238,-0.2546398611739278,-0.9871225100941956,-1.8332958337850869,-1.0597622375935316,-0.8754616561345756,-1.4016837212257087,-1.160828160122037,-0.33777394564822316,0.4167445697821677,0.5434659537859261,0.40856779692694545,1.1160204778425395,1.0564008811488748,0.2741688350215554,1.2508708722889423,1.8760819318704307,2.092486370354891,1.6339841452427208,2.2817539935931563,1.6892559141851962,2.576699908822775,1.801376212388277,2.531309195794165,2.335150327999145,1.9802587637677789,2.7418302302248776,3.0628165709786117,2.552605857141316,2.604014173615724,3.439504621550441,2.958364347461611,2.827346170786768,2.4610679522156715,1.9804714140482247,2.6796250860206783,3.3658834653906524,3.5633430420421064,3.7480322057381272,3.7380816848017275,4.472378644626588,4.577765492256731,4.277381608728319,4.3045787159353495,4.743551624938846,5.142785383854061,5.01637301268056,4.8323926432058215,5.238446934148669,4.688157793134451,4.939505241345614,5.130138796754181,5.059054011944681,4.094724680297077,3.7601410797797143,3.561949176248163,2.7975294729694724,2.1241507469676435,2.2287317598238587,1.9664129596203566,2.042811860330403,2.2844393914565444,1.3303796434774995,0.3593742037191987,1.2061835224740207,1.2843227786943316,2.266419479623437,1.4399896617978811,0.9424411444924772,1.071699872147292,0.10045643942430615,0.2864717529155314,1.2664591143839061,0.7943884353153408,0.24849222181364894,0.2845558640547097,-0.185439373832196,-0.41075249994173646,-0.06406350946053863,0.4535115649923682,-0.3282931945286691,0.05446797329932451,1.043316740076989,1.4674271079711616,1.3935179659165442,1.2647519749589264,1.8482042686082423,2.4602427035570145,1.7158461888320744,2.3732822062447667,2.6256525898352265,1.6560260239057243,2.1675706529058516,2.74882897362113,2.9195840377360582,2.627931911032647,3.2751151737757027,3.3622655761428177,3.485477419104427,4.468786888755858,3.741970241535455,4.048137451522052,3.8902410371229053,3.4301233207806945,2.6142406673170626,1.9991861996240914,1.8313867370598018,2.368867425713688,2.8543956079520285,3.8487237691879272,2.8576032584533095,2.3542476720176637,2.832618719432503,3.679557296447456,4.532079798635095,4.519471949432045,4.9010081915184855,5.283820789307356,6.028626368846744,5.341509690973908,4.460724237374961,3.9414378413930535,3.715163415297866,4.388292557559907,4.96416195249185,4.589811061508954,4.953339327592403,5.680274568963796,5.715078426990658,4.845842276699841,5.248853133991361,5.442021848168224,5.643129900097847,6.16571697499603,6.140660671051592,6.598280041944236,7.213534041307867,8.132753582671285,8.203324699774384,9.003580348566175,8.343056063633412,8.897114070598036,9.73489053780213,9.592125529889017,9.910382603295147,9.619003049563617,9.412614316679537,9.642235222272575,8.667489579413086,8.777996433898807,9.406556660775095,8.840037977788597,9.789004849735647,9.464909029193223,9.918229852803051,8.982883917167783,8.74802504805848,9.089368148706853,8.48330631153658,8.436525808181614,8.64076130464673,8.293899682350457,9.099263449199498,10.004663078580052,10.651885037776083,11.211933393031359,10.305012328084558,10.161642717663199,11.035046103410423,11.87787559395656,11.196912889368832,11.301036585588008,10.891107537318021,10.457466441672295,10.800074683967978,11.012071943376213,11.782673735637218,11.688935476355255,12.573035079520196,12.964755968656391,13.321862319018692,13.386853248812258,14.282040586229414,14.152986251749098,14.830526798963547,14.52935356926173,15.045218874700367,15.625365021172911,15.35428034607321,14.478125811554492,15.250600412953645,16.14567058812827,15.882014893461019,15.889459549449384,16.507124586496502,17.25543128652498,16.57585829962045,16.214008327107877,16.791412245482206,17.499223961960524,18.37825845927,17.621423786040395,18.450760550331324,18.932601796928793,18.803759070578963,18.276695805136114,18.29893669160083,18.910410205833614,18.020985586568713,17.876921956427395,18.64585497789085,19.528153635095805,20.261770733166486,20.542548378929496,20.369623602367938,19.951838198583573,20.724498354829848,20.06400778563693,19.26468049734831,19.51911109033972,18.924554949626327,18.866530063562095,18.906088968738914,19.877623601816595,19.76747816381976,20.47901445114985,19.5650605824776,19.326582549139857,19.910218105185777,20.063516512978822,20.8413510825485,21.591803330928087,21.762228356674314,21.581474523060024,21.923968659713864,22.009560033213347,21.0253318073228,20.786216588690877,21.390041776467115,22.33584864065051,22.66438688803464,22.49413199350238,21.868525944184512,22.503341517876834,23.319643606897444,23.834561770781875,23.650799721013755,23.721451196353883,23.036951676942408,22.92850321670994,23.521512567531317,23.109595594462007,23.342196310404688,23.518435657955706,23.239441696554422,23.474530598148704,22.82487071119249,22.991337600629777,22.438410511706024,23.411715182010084,22.663567679468542,22.47232050029561,21.930648589972407,22.82951313070953,23.66821545129642,24.52623251825571,23.863069195766002,24.176698653493077,23.614243037533015,22.873521433677524,22.581073387060314,21.878717974293977,21.29475500714034,20.717867478262633,20.81162202777341,21.810369335114956,22.17153827333823,22.643640621565282,22.939340444281697,23.369487572927028,22.665711948648095,22.772195301484317,21.935182705055922,21.86322339484468,22.124587556812912,22.674834193196148,23.600137484725565,23.111417388077825,22.839296235702932,22.806229799520224,21.935707432217896,22.80650899745524,23.146873683668673,24.122009130194783,24.452195595018566,24.423189285676926,23.771534278057516,24.30121384188533,23.405800784006715,22.916033966001123,23.049199806060642,23.46556367073208,23.8277882700786,23.182483178097755,23.74881216417998,24.249873297754675,24.964159921742976,25.595076765865088,25.58725659828633,24.901664674747735,24.406470998656005,24.506347943097353,25.362640298437327,25.82924111513421,25.331874686758965,24.905171379446983,24.775914492551237,23.946037122048438,23.79074347531423,24.533539534080774,23.61312854802236,22.87392698554322,22.703341107815504,22.232213116250932,22.549065361730754,21.776243893429637,22.418640877585858,21.851294982712716,21.59270254150033,21.706971312407404,21.525391588453203,21.96761137712747,22.837955916766077,23.34690818283707,23.063572930637747,22.24804573180154,22.445703759323806,22.71449757553637,23.31230627465993,22.964595371857285,22.598333502188325,22.904406571760774,22.525207918602973,21.93940260214731,21.177505453582853,21.754119468387216,20.765465293079615,20.19764617085457,19.59606412658468,19.404247293714434,18.808854066301137,18.158973855432123,18.577281154692173,18.191771128214896,18.51776180509478,19.36714058369398,18.441004844848067,19.028725705575198,18.209045249968767,17.221857553813607,18.171586436685175,19.007350329775363,18.741389750968665,18.3970956671983,18.822062966879457,19.42398941423744,18.43374260608107,19.16879838053137,19.475442368537188,18.74990604771301,18.38473981199786,17.96488159056753,17.90718152653426,18.560644750017673,18.354188976809382,19.05650143744424,19.415401278529316,18.83369284728542,19.81580330338329,19.57862042542547,18.737487291917205,18.036061814520508,17.505460117943585,16.788234716281295,15.801342813298106,15.068887141067535,15.73816257622093,15.367510269861668,15.692369721829891,15.12285412568599,14.367525819223374,15.232192872092128,14.880336127243936,14.702072595246136,15.66797816567123,16.442689935211092,16.892942781560123,17.11252236319706,17.893324941396713,18.356093359179795,19.122606922872365,19.77966180210933,19.5117666143924,18.651803331449628,19.05107728065923,19.37177841970697,19.630578748416156,20.524153830017895,20.318496191408485,20.914089359808713,21.186986235436052,21.244735815096647,20.411218208260834,21.361733796074986,21.056453900877386,21.04354736628011,21.00463607162237,20.41894537070766,20.57624163478613,21.543633923865855,21.871186290867627,21.421151577029377,22.246766021475196,21.81851522717625,20.84513601846993,20.66806920664385,20.405750229023397,19.578692694660276,20.5323002547957,20.261575064156204,21.03431095276028,20.13200900889933,20.9772658823058,21.5112978303805,20.885028406977654,21.24161993013695,20.397581681609154,21.30344571918249,22.26418985100463,22.301266439724714,22.54942508134991,23.142240249551833,23.550991665106267,22.979650693479925,23.267271771561354,24.019392629619688,23.028640046715736,22.109292719047517,21.5276141744107,20.992121895309538,21.064169947523624,21.652928669936955,21.69203730020672,22.256884277798235,21.568113925866783,22.536279431544244,21.792745100334287,21.2156250057742,21.792062209919095,22.73418613197282,23.178578954655677,22.21406652452424,22.20072283409536,22.83114530565217,22.174896222073585,21.466020313091576,20.721034321468323,20.55664588091895,21.00906889559701,21.59244831930846,22.304664575494826,21.50180051708594,21.43823078367859,21.56840285519138,22.065813168883324,22.490859867539257,22.360122645739466,21.41151904547587,21.344902101904154,20.91229766467586,20.646788734942675,20.19683025823906,19.644388342276216,20.296335234772414,20.819561968557537,20.41879720054567,19.884364580269903,20.84797208197415,19.997720377985388,20.89814897859469,20.750349667388946,21.365976528730243,21.64830864779651,22.503094208426774,22.682750839740038,21.74681248376146,21.087735577020794,21.409452887251973,22.376000025309622,22.794043388217688,23.57289164327085,23.069583723321557,22.372431789524853,22.091766191646457,21.691869718953967,21.65495425602421,22.234787797089666,22.279353821650147,23.013447664212435,23.996545505709946,24.224775205366313,23.51860351720825,23.912849323358387,24.863136530388147,25.063223175238818,24.3226159485057,24.076293447986245,23.143058139830828,23.178788042627275,23.14114697976038,23.263124655466527,23.929453445598483,24.202943075913936,24.67158685484901,23.8552832971327,24.134675208479166,24.278629824519157,24.911669670138508,25.36589881591499,24.857315986417234,24.409584153443575,25.061644685454667,24.476061064284295,25.328804741147906,25.12044896557927,25.261732439044863,25.920714255888015,26.651191104203463,25.99581806315109,25.31673312233761,25.734348059631884,26.560338170733303,26.110573371872306,25.957418085075915,26.265495021361858,26.512840802315623,25.603749040979892,25.110823043156415,25.020259423647076,25.47940346878022,25.668440299574286,26.29323054011911,26.876336654648185,27.204082811716944,27.35884274635464,26.599875619634986,27.493627891875803,26.780578731093556,27.67245795810595,27.462583460845053,27.817665157373995,27.402879864908755,27.678586199413985,28.302703076973557,28.470778754912317,27.67065814509988,28.164330183528364,27.984841145109385,27.535707931034267,28.34010710939765,28.998739319853485,29.60710832523182,29.583691623527557,28.6288832006976,28.42616593046114,28.242129576858133,27.857058003079146,28.111384788528085,28.029238915536553,28.32439377391711,28.836921475827694,28.095637132413685,28.514717462472618,28.062966296449304,27.935503567103297,28.44628369808197,28.61868466483429,29.381718013901263,29.249747570604086,28.860972614958882,28.427035343833268,27.498012603726238,27.457523403223604,27.02534352010116,26.13428784906864,26.252756546717137,25.685231683775783,24.711120273452252,24.809133226517588,23.911091109737754,24.56620173389092,24.267565092537552,23.345195340458304,22.637992362491786,22.132661927025765,22.488049836363643,22.538821344729513,23.174338744953275,22.9089126419276,22.191861290950328,22.608188757672906,23.337005708832294,23.519377961289138,22.571740209124982,22.298004945274442,22.584163102321327,21.606099976226687,21.451937823090702,20.903206842951477,21.777642641682178,21.17176678450778,21.661502052098513,22.615358349401504,21.71091306116432,21.703403322491795,21.332692693453282,21.295156214851886,21.28450071485713,20.9740399713628,21.670783252920955,22.61931226355955,23.517045710701495,24.272556607145816,24.9085492240265,24.06351825920865,23.985630709212273,24.904104344081134,25.59765929216519,26.078987444285303,25.628497964236885,25.76461933925748,25.239675518125296,25.965204235631973,26.192419978789985,25.594606160651892,26.207311167381704,27.00513535598293,27.860551605466753,28.281277200207114,28.813518163748085,28.990646115969867,28.102013192605227,28.28271330986172,28.26225753314793,27.608539861161262,28.12716537900269,27.41880120523274,27.485885554458946,26.54332796158269,26.207802332006395,26.400149514898658,25.564450041856617,25.49231543391943,26.177783061284572,26.429761157836765,26.82539496058598,26.73773427447304,26.4198478711769,26.07710946071893,26.003792529925704,25.461148761678487,25.493128794711083,25.79859913792461,26.08132903696969,27.056159826926887,27.542894004378468,28.47433163970709,29.27270427485928,29.177398486528546,28.550406832247972,28.17874346440658,28.398618473205715,29.218949952162802,29.779324328526855,30.441788201220334,30.219529246911407,31.116626797243953,31.936344837304205,32.89960386045277,32.677349713630974,32.80020005721599,32.77909055352211,32.208677779417485,32.59211524622515,31.794102971442044,31.72206162335351,32.58321568462998,32.629007847979665,33.1713127233088,32.687484772410244,32.9542885851115,32.514009709469974,32.707940832711756,33.128896239213645,32.60371248284355,33.583818934392184,32.75462478538975,32.14120182627812,32.457590067759156,33.097185377497226,32.77854982391,32.554258309770375,32.8360047750175,33.334437881130725,32.68835450615734,32.75809363881126,33.73563185054809,33.75146027980372,33.36066123424098,32.500282008666545,33.312987737357616,33.69117750786245,33.930188812781125,34.68626222386956,35.3584826476872,35.74169669859111,35.839203959330916,36.650913659483194,37.47104043280706,37.64294108655304,37.604726147372276,37.93092196760699,38.52717733941972,37.83455275045708,38.5106050898321,38.779877273365855,39.053499727509916,38.377794079482555,38.67215498443693,38.294506484176964,38.868363013491035,39.517456631176174,39.531412152573466,40.383582084905356,40.58455153182149,41.22011171467602,41.32760363724083,41.50627222470939,41.19465373130515,41.45590026397258,41.0235326779075,41.022122603375465,41.405118986498564,41.51479021226987,42.07536253053695,41.18529258295894,41.98787428205833,41.5935678021051,41.04617151431739,40.586065348703414,41.06225584400818,41.10935010202229,41.55431926762685,42.35848540766165,43.304075251333416,43.376365191303194,43.57007011026144,43.06934360973537,43.6531518464908,43.642932534217834,43.53363495413214,43.16405899496749,42.301579490769655,41.59343130188063,41.59153528138995,40.933544414583594,41.020784492604434,41.229436189401895,41.2587038804777,40.897811606526375,40.49878701940179,39.91219271579757,39.355338068213314,39.699470322579145,40.25108529208228,40.74949715612456,40.46327842678875,41.0772596122697,41.0639511118643,41.14322565961629,41.24608396878466,41.700410693883896,41.37264037784189,41.21623231517151,41.55807599006221,42.398254124913365,43.31261588493362,43.45179882552475,44.2404245515354,45.230399638880044,44.336711074691266,44.12586885597557,44.32883548270911,43.93104179576039,43.64153395080939,44.30524591496214,43.60170760797337,42.86123519623652,43.53341704746708,42.727895027026534,42.22160991933197,42.8385270498693,41.965397709049284,41.45992586715147,41.548112149816006,41.07968816906214,40.957241411320865,40.54524432262406,40.02791266795248,40.65722755994648,41.05922716297209,40.412894173990935,40.80262598814443,41.328721980564296,41.38893945980817,42.37580329319462,41.53095091320574,41.39393621822819,41.73476250236854,40.83440300775692,40.95800117775798,40.10170928342268,40.04974069958553,39.9839299605228,39.19002925697714,38.71826002653688,38.728224909864366,39.48393888724968,38.87703083222732,38.92935552727431,39.388515384402126,38.84737929981202,39.1485752123408,39.780131227802485,38.98188684089109,39.53034710884094,39.92697262065485,39.69643872557208,39.10590932192281,38.215317506343126,38.65455856639892,38.02395913051441,38.48819838743657,39.36537639377639,39.81937825633213,40.07556569483131,40.44187721516937,40.44212346756831,40.5976738887839,40.557789797428995,40.25135366572067,40.533411477226764,41.18691783770919,40.244750319980085,40.247284934390336,40.4114400902763,39.698251496534795,40.241865023970604,39.6720330696553,38.79498639795929,38.718516174703836,38.142735835164785,38.260213712230325,38.20765437558293,37.50942942732945,38.10515499021858,38.362009450327605,37.866133810952306,37.02893257094547,37.43276933114976,36.853737864177674,36.56247521145269,36.51336886314675,36.8341617025435,37.814029002562165,38.27257189480588,37.591419983655214,37.59725720575079,37.584958696737885,37.12030679732561,36.44106440944597,35.65307291736826,35.1832670699805,36.077049533836544,35.985179893672466,35.819076306186616,35.395708203781396,36.08340689865872,36.34990959241986,36.32974626170471,36.03468447411433,35.828537952620536,34.83029325352982,34.45517957536504,34.22331643337384,33.73021780513227,33.23872426850721,33.864439281169325,33.86037146160379,33.387572758831084,32.59749303013086,32.18593082437292,31.262561538256705,31.85245883371681,31.75326890917495,32.64769782498479,33.49066755361855,33.737367149908096,32.91732721077278,32.779782028868794,31.97061957186088,32.27677328931168,32.834403238259256,33.24917286960408,33.012611815705895,33.23633910017088,33.34899486321956,33.62904533557594,34.42950923042372,34.89914825884625,35.612274694256485,36.071594540495425,36.53111297218129,37.406887111254036,37.78644001670182,37.23970718868077,36.71055856626481,36.78100603306666,37.59651968209073,37.11026356741786,37.30554339941591,36.806070532649755,37.40614905534312,38.19982430618256,37.96717495331541,37.17474769288674,37.01911351410672,36.34058445505798,35.9392229677178,35.532881438266486,35.34966419590637,34.38769504381344,34.21171416947618,33.21261517610401,32.971869736909866,33.823930925223976,34.51297052158043,34.13123877439648,34.52844311064109,34.06914646178484,34.134330921340734,34.34675753349438,34.9201246467419,34.72864971216768,34.859540367498994,35.28838551836088,34.6826156550087,34.72038339404389,34.97211236739531,35.453809884842485,34.958870785776526,35.89169345609844,35.924645128659904,35.06290116114542,35.1386800785549,34.28632538206875,33.88008525641635,33.616177471354604,34.460345298517495,34.01508888602257,34.40627190330997,34.225749074015766,33.235726221464574,32.86023091617972,32.09792824322358,32.27868630643934,32.9198934729211,32.23384649073705,32.81367569277063,33.238259648904204,32.724630910903215,31.90399179747328,32.90222550416365,32.584159929305315,32.28577134851366,32.60889625130221,32.16136025125161,32.58620254229754,31.661118832882494,30.748583497013897,30.74517452949658,31.495948848314583,31.01339118089527,31.50764706870541,30.64096128800884,31.298383654560894,31.063038444612175,30.87906428379938,31.79769044322893,31.18964357301593,32.04828119976446,31.17087768064812,30.259301747661084,30.149283731821924,30.85329424822703,31.08592789201066,30.213679478038102,31.09825175302103,31.70522799808532,31.12839005794376,30.19258775189519,29.561439716257155,29.044092867989093,29.564988187979907,29.89983748551458,30.295076571404934,29.466279509477317,28.55632027843967,28.907778633758426,29.14760867645964,28.96129740960896,29.67616361193359,30.260993471369147,29.50460853567347,29.89193460298702,30.869914158713073,30.288353123236448,30.023916100617498,29.10266131348908,28.350912984926254,27.80289292288944,27.53786812722683,26.96494239056483,26.264066504314542,26.497894091997296,25.64446925278753,26.50050628464669,26.745498780161142,26.89388007344678,27.339802157133818,26.688793372828513,26.68085617525503,26.449112376198173,25.50471303379163,25.701610915362835,26.02472042804584,26.813711524941027,27.460780416149646,27.84723814157769,28.066467030439526,28.267405707389116,28.29607193125412,28.163551175501198,27.16464844485745,26.938131224829704,27.08177956053987,26.446990275755525,26.2308456543833,26.234612735453993,26.34536532033235,26.01027941936627,26.388675353024155,27.33693667501211,27.764717292506248,27.61006932752207,27.706391849555075,27.27968621114269,27.34692727122456,28.127299170941114,28.758771946188062,29.120601597242057,29.574599031358957,29.009309836663306,29.56585332006216,30.199809736572206,29.30002082604915,29.01853712229058,28.263490172103047,27.50213771732524,26.912228159140795,26.162100296933204,25.80345649132505,25.14550442621112,24.649721692316234,25.287830242421478,25.24130760319531,24.39164151903242,23.906563089229167,22.9695546887815,23.537859722040594,23.38269191980362,22.706141024827957,21.784041786100715,21.419019164983183,20.482802249025553,21.40268402127549,20.56557268463075,20.768250190652907,21.210968986619264,21.317255893256515,21.574749352876097,21.326966744847596,20.69311755988747,21.678851535078138,22.49164721602574,23.124585987534374,23.67918293410912,24.453584731556475,23.818544854409993,22.854881681036204,23.317313340958208,22.464785189833492,21.832707304973155,22.23496517818421,22.473610842600465,22.66773423878476,23.651084125973284,22.66951059550047,23.35694919200614,23.97917870571837,23.951928457710892,23.617534765508026,23.626104151364416,24.075158540625125,24.646597438957542,24.170204581692815,24.637226689606905,24.41796087520197,23.758955942932516,23.321786660701036,22.932359462603927,23.299387882463634,22.558192608878016,21.653075623791665,22.066032502800226,21.235065658111125,21.78222536155954,21.822767423465848,20.881311561912298,20.752452725544572,19.845570378471166,20.830486725084484,20.102881658822298,20.645175128243864,20.307048032060266,20.542796064168215,19.581105693709105,19.05090237641707,19.888365725521,19.609728729818016,19.340964045375586,19.0805706824176,18.483805682044476,19.197619398124516,18.35167679330334,17.809349320363253,16.95371055463329,17.71394826611504,17.640137823764235,17.141141712665558,16.62721818778664,17.12721208948642,17.68290824163705,18.51479977974668,17.69282577605918,17.181605940219015,17.987011765129864,17.862612683791667,17.755103975068778,17.60455907182768,16.839622885920107,17.185717606451362,17.55255793267861,16.93402141518891,16.039794059470296,15.89956840639934,16.8684917204082,16.321317361667752,16.107115774881095,16.02588025154546,16.456862245686352,15.72688778815791,15.104939423967153,15.15977938938886,15.4782495056279,16.348835192155093,16.717733432538807,16.903684839140624,16.692770715802908,16.83428499987349,17.739376038778573,18.511849678121507,18.986556021962315,19.051877120044082,19.964306997600943,19.429478600621223,19.21145672397688,19.09612159244716,18.449728039093316,18.37904821895063,18.94100881041959,18.22439561970532,19.01867935527116,18.329602854326367,19.021136871073395,19.888453488238156,19.68177132681012,18.721698228735477,19.413360099308193,18.78396348375827,18.546180374920368,19.331167597789317,18.372679626569152,17.376092843245715,18.019566096831113,18.68902866402641,18.100644596852362,18.0943336407654,18.948167575057596,18.97400477901101,18.259989217855036,18.498895162716508,18.335513685829937,17.508358133025467,16.65905169583857,16.91333158267662,16.542462909594178,16.392466639634222,15.99454308487475,15.1327562504448,14.34360877936706,14.821616222150624,15.376666668336838,15.903809722978622,16.26600940246135,16.086728655267507,15.299379576928914,14.85959621425718,15.360490579158068,15.174491131678224,15.071498257573694,15.931382275186479,16.23680408252403,15.522661155089736,14.625027548521757,15.46314090071246,15.852252187207341,16.308500131592155,16.12694825651124,16.036341270897537,16.596980704460293,16.15687708184123,15.571428074967116,14.821264831814915,13.867561598774046,13.27512688562274,14.01833942066878,14.415116421412677,15.213293590582907,14.437601784709841,14.536125781480223,14.332289658952504,15.047701921779662,14.523674357682467,13.678213394712657,13.683869376778603,14.58685553446412,15.299017281737179,15.253787074238062,14.99388797301799,14.343726756516844,15.161202524788678,15.549194500315934,16.475108054932207,17.382340750657022,17.399471408687532,18.182468024548143,17.62135255895555,17.949706146959215,17.362165609840304,16.55587430577725,16.640525192953646,16.631704915780574,15.751222799532115,16.63207104569301,15.994800509419292,15.368793449364603,14.526245749555528,14.684888013638556,14.715541702695191,14.18922233954072,15.158379425294697,14.466840752400458,14.27739608194679,15.090364608447999,14.215510082431138,14.373728729784489,13.995650364551693,14.45429241284728,14.502927186433226,14.384409038349986,13.473846485838294,13.281372224446386,12.324336344376206,12.292211040854454,12.210237913299352,12.356654970441014,11.678486716467887,11.099557594396174,11.474972466472536,11.800569458398968,11.004617326427251,10.842837996780872,11.734356063883752,11.63459553802386,12.295465755276382,12.034213765989989,11.387263251002878,11.622139961924404,10.844903505407274,11.114148600958288,11.462929327506572,10.899445302784443,11.617844744119793,12.564514233730733,12.012981248553842,11.436328841838986,11.019672026857734,11.917303739115596,11.692452725023031,10.789139347616583,10.177920611575246,10.329223075415939,10.882070811931044,11.790447894483805,10.99654131848365,11.585474899969995,11.460012384224683,10.611132559832186,9.788546955678612,10.128700917121023,9.816757319960743,9.582293440122157,9.036146875005215,9.458706109784544,8.735269169788808,7.7368160844780505,6.8465358298271894,6.30629597697407,5.665205179713666,5.999516216106713,5.241243237629533,5.510985670611262,5.025933248922229,4.651920065749437,3.7633335483260453,3.389480174984783,4.057645407970995,3.789822181686759,4.719228001311421,4.537840115837753,4.9141716356389225,5.476694655138999,5.237023658119142,5.765923959668726,6.342989212367684,5.93570453627035,5.062359854113311,5.138476147316396,5.1672867448069155,6.138670258689672,6.500593197531998,7.440342094283551,8.188993108924478,7.521485715173185,7.904290962498635,8.78117655357346,8.745568520389497,8.097964682150632,7.836987727787346,6.9643774474971,6.921218446921557,6.888825053349137,7.79737362312153,6.798091251403093,6.580081335268915,7.49681930989027,7.282858218066394,8.227724489755929,8.536767814774066,8.499716015532613,7.569974581245333,8.385382066015154,7.568664965685457,8.042879799380898,7.728763362392783,7.499907516874373,6.561577478889376,6.924374564550817,7.455741111654788,6.703592012170702,5.9492842447943985,5.146130627952516,4.448652847670019,4.392961738631129,3.8697023349814117,3.7967552389018238,2.9045458203181624,3.6046554227359593,3.1573109314776957,2.6123983967117965,2.374105406925082,2.426503414288163,2.2811346747912467,1.7118827016092837,1.2873714002780616,1.6903113746084273,0.7220505764707923,1.0305156516842544,0.13015311863273382,-0.6494915690273046,-1.1693401937372983,-0.7464487082324922,-0.9609475182369351,-1.2965283491648734,-0.38477224530652165,-1.2714266399852931,-1.34139824192971,-2.057011165190488,-1.1353406561538577,-0.63157859724015,-0.15444303350523114,0.5318769779987633,0.9039291152730584,1.523751620668918,2.312112618237734,2.5620950078591704,2.2637181049212813,2.1153206704184413,1.4926899331621826,0.5277663180604577,-0.2006871337071061,-0.9193931710906327,-0.008655488956719637,-0.5025196527130902,-0.9601197368465364,-0.3991534821689129,0.10081885941326618,-0.3526630806736648,-0.5089159496128559,-1.2917179274372756,-1.1190161807462573,-0.15938438195735216,-0.028094612527638674,0.6165877752937376,1.229651067405939,0.2564702625386417,0.23691277718171477,-0.10379344457760453,-0.2816651021130383,-0.10093097947537899,0.8344350182451308,0.48394274804741144,0.5412448956631124,0.7589859613217413,1.5017817672342062,1.5009991340339184,1.445331302471459,2.252281873486936,1.3831373765133321,1.6818437213078141,1.269264415372163,0.571650714147836,0.19425940047949553,1.1779850870370865,0.8207917683757842,0.5948571194894612,1.0677710473537445,0.08611049549654126,-0.7562213963828981,-0.9913770179264247,-0.6327836588025093,-0.5430750027298927,-0.6312143341638148,0.21701365429908037,0.7060824390500784,1.2850687596946955,2.1312422384507954,2.1311195357702672,1.5957477833144367,0.9195570247247815,1.6758248824626207,2.3251064009964466,3.220213825814426,3.3246032907627523,2.647469438612461,3.3802939006127417,3.726289703976363,3.33316269563511,2.881682534236461,2.4220293047837913,1.9840962290763855,2.96835122955963,3.9151750463061035,3.016636647749692,2.8533522160723805,2.380562235135585,1.6615016283467412,0.6708336309529841,1.5202410472556949,1.4951644497923553,1.8241974590346217,1.851738707628101,1.7543995301239192,1.266530875582248,2.1540661393664777,2.7817836608737707,3.72386113461107,3.6257128794677556,2.7994842315092683,2.649980092421174,2.6217843629419804,3.138204786926508,2.9732603011652827,2.633016772568226,2.5042114946991205,2.0317318928427994,2.8994669318199158,3.7449086401611567,4.6098036407493055,4.37651388393715,4.7181122386828065,3.9933053348213434,3.552726570982486,3.9255825830623507,4.646019702311605,5.210812642239034,6.034893674310297,5.376669559627771,5.481207215692848,6.044745476450771,6.640707860700786,7.226723650470376,7.8533836719579995,7.0322557226754725,7.354793319944292,7.005481585860252,7.304385622963309,7.052854961715639,7.421507835853845,7.833229160867631,8.815694481600076,9.446911563165486,9.505323248915374,10.450239884667099,11.406868312973529,12.010862812399864,11.45062427315861,10.58782737608999,9.788610635325313,9.306710134260356,8.377481227274984,9.283864409662783,8.813457416836172,9.224028874188662,9.015134087763727,10.001571516040713,10.824722062330693,11.739069700241089,10.767194115091115,10.911418018862605,11.064302764832973,10.974477290641516,11.118009344208986,12.09009647089988,12.441764384042472,12.72059120517224,12.800695104058832,13.25997078511864,12.989316954277456,12.35743196401745,11.622963136062026,11.473786682356149,11.815817299298942,11.292290330864489,11.21475971955806,10.758547021541744,10.290144645608962,11.128955931402743,11.711156667210162,11.22671359963715,10.339014483615756,11.07619977556169,11.923631092067808,12.318856814410537,12.65630168048665,13.166062182746828,14.130559085402638,14.115471858065575,13.603854575194418,13.18163642147556,12.462049525696784,12.708898634649813,12.921618290711194,13.64494547760114,13.99417885998264,13.13564371690154,13.638023772276938,14.383195557631552,14.174250568263233,14.689335991162807,14.68050749367103,14.005506174173206,14.33921088417992,13.666672370396554,14.177857412025332,15.052422773092985,15.105164920445532,15.261105197947472,15.98789850762114,15.379184274468571,16.295493424870074,16.579387564212084,16.8648320552893,17.61784774903208,18.26309433300048,18.047770268749446,17.086175952572376,16.374002976343036,15.957196563016623,15.410354821011424,16.313626704271883,15.424817130435258,16.129692149348557,16.50084469653666,16.342994560021907,16.481737795751542,15.847240185830742,16.180735129397362,16.503167344257236,16.135906585492194,15.789295283611864,14.90438575251028,15.802489608060569,14.999800230376422,15.762379470281303,16.03998945467174,16.29552803747356,16.19504319736734,16.458149504382163,17.06299352226779,16.553915512748063,17.130128797143698,16.987290935590863,17.43261924991384,17.858781619463116,18.54379633674398,19.165581025648862,20.014281168114394,20.744418741203845,21.248034034855664,21.859574312344193,21.529464038088918,22.10313643887639,21.94518435932696,21.890775279607624,21.889518442563713,22.681208393536508,23.43567954795435,22.662190306466073,21.677918053697795,20.752937697805464,20.923250722698867,20.249381771776825,20.160182788036764,20.642437683418393,20.186474185436964,21.172858794685453,21.546920365653932,22.51162069570273,22.03202520031482,22.45021150726825,22.767107415013015,22.11512971529737,21.899785902816802,22.760591462254524,22.191571702249348,21.408204513136297,22.262021547649056,22.363122992683202,21.64604863524437,22.43022124329582,21.796983300708234,21.367613836657256,20.37014374276623,20.20268213376403,19.436148738954216,20.05437956051901,21.00967819103971,21.640765633434057,22.58702521165833,23.062840474769473,22.9144240161404,22.710947916842997,23.02826824830845,22.6994569003582,22.553461741656065,22.887264758348465,23.160661374218762,23.09234054898843,23.121805324219167,22.916633814573288,23.451975679956377,23.83241407200694,23.16115406760946,23.00042321579531,23.22833894798532,22.567734892480075,21.936906929127872,22.3136691423133,22.531072188634425,21.625641683116555,21.259624533820897,20.99786226125434,21.388795552775264,20.59678957890719,20.726729759946465,19.8512050434947,19.85236839344725,20.65846156142652,20.30768957035616,20.94260528869927,21.133452821988612,20.93210246739909,21.243240613024682,21.837668831460178,22.716448970604688,23.529861006420106,22.851645693182945,22.30337285110727,22.266069398727268,22.584554555360228,22.675986291840672,21.78672212222591,21.348563029896468,21.02178954333067,21.147408903576434,21.4561048457399,21.788469818420708,21.96222692495212,21.239215650595725,20.550927410833538,20.15096961800009,20.647397375665605,20.943578130099922,20.362895352300256,19.561392981559038,19.5997976786457,20.18472866155207,19.394220834132284,19.394635203760117,19.37368363607675,19.33574321307242,18.65712686860934,19.655829846393317,19.5441960725002,19.659203049261123,19.818726565223187,20.71593562979251,20.348609099164605,19.74324955046177,20.48847615579143,20.838911489583552,21.603661104105413,22.251328258309513,22.86460920004174,21.881238990463316,20.99326827377081,21.809174952097237,22.433912789449096,22.930249839555472,22.58568258024752,22.5593111240305,22.088794465642422,21.7521224017255,22.41460265778005,21.55448125069961,22.409784756600857,22.026251637376845,22.898170254658908,22.019611965864897,21.935640696901828,20.983466055244207,21.000570964068174,20.621663654688746,20.88253497844562,20.134986124932766,19.363640507217497,20.00907872710377,20.018928454257548,19.52460300223902,18.56300112698227,18.159882806707174,19.0422659763135,19.65574753843248,19.95338427927345,20.306504460051656,20.647884246427566,20.42955713858828,21.286692842375487,20.56529148807749,20.06241600867361,19.97143767448142,19.189289088826627,18.39306269912049,17.710162600968033,17.585211062803864,16.761621890123934,17.496277404483408,17.161568211391568,17.517453489359468,17.17708005802706,17.882689640391618,18.288452833425254,18.610098669771105,17.79270109347999,17.63879280583933,17.08295444212854,16.88434342155233,17.43698226986453,17.800430426374078,18.63075568759814,18.011424021795392,17.11002754047513,16.945200263522565,16.074469443410635,15.221815263852477,15.623317304532975,15.69081049785018,15.380200011655688,15.186002273578197,15.49736919021234,14.56215050816536,13.585932507645339,13.275192906148732,12.552051775623113,11.807151624001563,12.616788384038955,12.14210296748206,11.919883360154927,10.938708341680467,10.99173437571153,11.415545028168708,11.33734987815842,12.068530314601958,12.62085391022265,11.792085425462574,11.42098146956414,11.650793689768761,10.779157217592001,10.190303987823427,9.612976191565394,8.905090534128249,9.1842022202909,9.084792542736977,8.99306163797155,9.190125717315823,9.965961220208555,9.036282038781792,9.703993028961122,9.952045756857842,9.166551649570465,9.962820651941001,9.481304267421365,10.199104982428253,10.87975666159764,11.23031679308042,11.601667752023786,11.029599935747683,10.769882733002305,9.987125121988356,9.944251146167517,10.69436094770208,10.523287002462894,11.008247105870396,11.373981648590416,10.718988333828747,10.559835564345121,10.78801321145147,11.156497688032687,10.872790897730738,9.949742923956364,10.200432474259287,10.755529645830393,10.421222750097513,10.807553599122912,9.967763044405729,10.26814405946061,9.79046034719795,8.997526926454157,9.869773584417999,10.278266462031752,11.036946377716959,10.403308219276369,9.62413523439318,10.539595858193934,11.034775321371853,10.862734517548233,11.577343247365206,11.958960083313286,11.753517977427691,12.39916625013575,11.591989944688976,11.421869731042534,10.886288898065686,10.169594313483685,10.343867197167128,10.761798187624663,11.2493815748021,11.823633102700114,10.981597840320319,11.978788207750767,11.499092957004905,12.30445009842515,12.062545014545321,12.212671054061502,12.648113605100662,13.087998434901237,13.537072099279612,14.484793797601014,14.295778736006469,13.34775882260874,13.795148520264775,14.006700763944536,13.996918111573905,13.412462347187102,12.667538910638541,13.472534358967096,14.063355362974107,14.386435525491834,14.107212180271745,14.34464865969494,14.146553713828325,15.14628389198333,15.799596243072301,16.061569100245833,15.815224518999457,15.907625125721097,16.89254752593115,16.0525939646177,16.480278209317476,16.413681944366544,16.451233981642872,15.647869757842273,14.894876124802977,14.94199056411162,15.580288905650377,15.290998125914484,15.15230208216235,15.017531445249915,15.735210789833218,15.040333178825676,14.158625868149102,14.988044765777886,14.099571683444083,13.783719872590154,14.399438356049359,15.123794476967305,14.243279335089028,13.853322030976415,13.017698325682431,12.153548317961395,11.480874290224165,12.17562444601208,12.789972610305995,13.787381020840257,13.68918878491968,13.15816900273785,13.054036180488765,12.42239439720288,13.07467047823593,12.641131077427417,12.590499411337078,13.234649192541838,12.709348309319466,12.679649924393743,13.669195261783898,13.648924906272441,14.245243283454329,14.453854363877326,14.450287646614015,13.473821049090475,13.16161216236651,13.90517761791125,14.260491044726223,14.791560254059732,13.80820373725146,13.524215355049819,14.482915487606078,14.995214726310223,14.729144633281976,15.667745543178171,15.973237960599363,15.650746413972229,15.393820185679942,14.641167882364243,13.920232789590955,14.845148564316332,14.16425565769896,14.649269100278616,15.26376137835905,15.893671691883355,15.246496684383601,14.530796942301095,14.095987098757178,13.679294633679092,13.737816493492573,13.15861412184313,13.270365211647004,14.030822409316897,14.035525897052139,14.373616006691009,14.989391980227083,15.523759747855365,15.597546122502536,16.470533185638487,16.32196849770844,17.02683359850198,16.916180593892932,17.91461396543309,17.644224376417696,17.97947247605771,18.093474176246673,18.58023209590465,17.837785380892456,18.570942970458418,19.36222119955346,19.42227088427171,18.60750754456967,19.49085313640535,20.264632497448474,19.929922454059124,20.081590585876256,20.98787756357342,20.956677958369255,20.125053170137107,20.015167355537415,20.909480514004827,20.068728695157915,20.35709969792515,21.34010812919587,21.58586722612381,21.143254797905684,20.60444850847125,20.965435192454606,20.61281508812681,21.10247491346672,21.690372283104807,22.499296716880053,23.261432213243097,23.647533839102834,24.389624858275056,25.074670657515526,25.22738615842536,24.648149352520704,24.848844431340694,24.16475969273597,23.57718358747661,23.420497900806367,23.4559736084193,24.05387969315052,23.298421000596136,23.7634200360626,24.192477583885193,23.590826663188636,23.198673190083355,23.508519009687006,23.811424954794347,24.17082843557,23.424762387759984,24.098588968627155,24.556850688997656,24.009579089470208,23.202428625896573,24.169367998838425,24.300751650240272,23.77649698033929,23.017311917152256,22.674665361177176,23.117687944788486,23.74885381059721,22.80336976889521,23.50249588629231,24.302831599954516,23.793647278565913,23.623978903517127,23.694208714179695,23.062434126157314,22.2975292080082,22.69244924420491,22.18569067073986,22.71314959367737,22.976571523118764,23.241433069109917,22.821428176015615,22.465894018299878,22.067605914082378,22.019606398418546,22.80264319246635,22.70705098984763,22.114171964116395,21.275334840174764,20.313809843733907,20.332776342518628,19.451488974504173,19.143561268690974,18.610306919552386,17.95952801173553,17.743790227454156,16.848208509851247,17.31502820039168,17.7406567200087,18.64405858842656,18.277021133340895,18.509510678239167,18.130470229312778,18.364734331611544,17.87331788195297,16.923406691290438,16.176588088274002,16.279011585749686,16.89374014362693,17.201811471488327,17.344289571978152,16.438218399416655,16.03840894671157,16.54394831880927,16.718601623550057,16.85926794214174,17.43659562431276,16.752292294986546,16.44632407044992,17.290504826698452,16.489783592987806,15.673043190035969,16.41566835856065,16.529255863744766,17.37766687059775,16.530922163277864,16.025856774300337,15.624940772540867,16.28333971882239,16.344107751268893,16.367631177883595,16.313627366907895,16.152065213304013,15.184419376775622,15.562499776482582,16.01564761204645,15.946650799363852,16.79629410430789,16.41114784264937,16.578761149197817,16.814484345261008,17.596557413693517,18.503581093624234,18.263777126092464,18.963854829780757,18.75771092949435,18.9188959505409,19.653842331841588,19.472767791710794,19.37532765371725,20.039250566624105,20.875849744770676,21.14821603242308,20.482689431402832,21.086156265810132,20.437774769961834,20.99381188908592,20.211729001253843,19.86528475349769,19.44178192364052,19.28172141732648,18.817312414757907,19.35149600263685,19.415933882351965,19.200852478388697,19.68438232690096,20.593884500674903,19.6622955664061,18.969355875160545,18.031651481054723,17.8057807860896,17.07451206818223,16.25880075339228,16.00981997139752,16.41122506512329,17.031393519602716,16.36008134158328,16.77876401040703,17.022489845752716,17.55283792410046,16.885816225316375,17.149574717506766,17.67014026083052,18.02588921552524,17.617180161643773,18.461940369103104,17.87042370950803,17.984235004521906,18.80999283818528,19.52683949517086,19.32116447482258,19.330786156002432,18.348484076093882,17.64279304165393,16.994344118516892,17.78816122189164,17.3005901533179,17.863779843319207,18.838431037496775,18.969082163646817,18.03410136559978,18.461814138572663,19.238596505951136,20.154782068915665,19.192895936314017,19.233312165830284,18.8470952026546,17.89686930878088,18.69100437592715,19.04695479525253,19.107778063043952,18.849755083210766,18.712187692988664,18.158004639670253,18.102136046160012,18.256185912992805,17.811533972155303,16.943413048051298,16.981365940067917,16.09613958792761,16.944674822501838,16.285271578934044,16.983852048404515,17.358560925349593,16.945134489797056,17.66801051935181,17.78477241843939,16.995792089030147,16.28325963485986,15.703471143264323,14.826894445810467,14.650711651425809,14.260799589101225,13.340353354811668,12.605431754607707,13.529162625782192,12.66558102471754,12.998282632790506,12.883714743424207,12.109492501243949,11.33644508710131,11.326468629296869,10.546724261250347,10.911841890774667,11.684861902147532,11.940940781496465,11.774595139082521,10.828948913142085,9.880509480834007,9.024377881549299,8.98592641018331,8.805735177360475,8.635787859093398,7.789859190583229,6.812106053344905,6.555676618590951,6.305897271260619,5.948785164859146,5.32268196484074,4.7309472328051925,3.749305731151253,4.0344463787041605,4.139582898002118,4.270236366894096,3.9180659567937255,3.039331508334726,2.7387920366600156,1.97934304876253,2.676616464741528,1.8637370052747428,2.223663660697639,2.507624389603734,2.1248928853310645,1.6730915694497526,1.3552866955287755,1.272771087475121,1.4056735271587968,1.1689983354881406,0.18466248456388712,0.2696759379468858,0.9607378202490509,1.7938265623524785,0.8193960492499173,-0.11530733155086637,-0.3998192804865539,0.008547486271709204,-0.4113796725869179,0.3815032462589443,0.7086603725329041,1.2118408433161676,1.025862774811685,0.49628374446183443,0.37246370455250144,-0.05867750383913517,-0.17478346452116966,-0.8690410852432251,-0.8913305359892547,-1.2633481384254992,-0.49314119340851903,-0.29950974229723215,0.16733263339847326,0.3788920505903661,0.18671377329155803,0.5487053450196981,0.21922179218381643,0.5769352875649929,0.04058069782331586,0.8194386996328831,0.0008450448513031006,-0.495937735773623,-1.293010465335101,-0.8794489637948573,-0.4197423290461302,-0.46842117281630635,-1.152410809416324,-1.3298443667590618,-0.9423115984536707,-0.8600369421765208,-0.5736531256698072,-0.0618062443099916,-0.08030839869752526,0.22166281612589955,0.019219823647290468,-0.3765208446420729,-1.2518374579958618,-0.766748083755374,-0.4734523668885231,-0.7280002688057721,-1.0857739560306072,-2.0251075415872037,-1.4643044462427497,-1.9065373875200748,-1.2628268767148256,-1.5398399545811117,-1.2098341775126755,-0.7277475940063596,-0.38964118622243404,-1.1132578416727483,-1.1217572740279138,-0.15712084481492639,-0.20644892565906048,0.5593683402985334,0.004632576834410429,0.5625207340344787,-0.38953631604090333,0.550902365706861,0.524673615116626,-0.2736961371265352,-0.3366706436499953,-1.0296525591984391,-1.7510961024090648,-2.1283418484963477,-2.2230426501482725,-2.194772802758962,-2.6844963021576405,-1.6891287928447127,-1.6213136217556894,-1.723017300479114,-1.7538917209021747,-2.056653454899788,-2.175466244574636,-2.6700279698707163,-1.6958464663475752,-1.0374427526257932,-1.1681715180166066,-1.294905534479767,-1.294850628823042,-1.8274708427488804,-1.4741449365392327,-0.6686898032203317,-0.6893869969062507,-0.2819773186929524,0.2605484053492546,-0.633509898558259,-0.7394812433049083,-0.925949175376445,-0.6016299319453537,-0.8791574509814382,-1.2355936006642878,-0.9570291060954332,-0.32884179009124637,0.29893055045977235,0.8339395220391452,-0.09192890673875809,-1.0311792390421033,-0.9836051957681775,-0.44070775201544166,-0.819251324981451,-1.3277460606768727,-0.3626229274086654,0.009695277083665133,0.19547586049884558,-0.46977845625951886,-0.9030592781491578,-0.14633386489003897,-0.10563223250210285,-0.10606488259509206,0.12977652391418815,0.46179447043687105,0.09265258722007275,0.1421880330890417,1.1323422249406576,0.6801669080741704,0.3004626869224012,-0.5147527316585183,0.38883011881262064,-0.25848279148340225,0.01467416761443019,-0.19586040172725916,-0.7661386416293681,-1.281709674745798,-0.9845017385669053,-1.401353305671364,-1.6784376678988338,-2.179513541981578,-1.1962325489148498,-1.3975328793749213,-1.0358689757995307,-0.9463296220637858,-0.7329697497189045,-0.1649900022894144,-0.6068801549263299,-0.39860656298696995,-0.720027566421777,-1.2244645291939378,-1.927668905351311,-1.1608516848646104,-1.4820941896177828,-2.051528545562178,-2.6530695683322847,-3.5723587493412197,-3.899574637878686,-3.6131364624015987,-3.1057610367424786,-3.665776251349598,-2.7280021104961634,-2.680079495999962,-2.0541186900809407,-1.2222224064171314,-0.5869837566278875,-1.0088891829364002,-1.9049992798827589,-2.745572045445442,-3.5220763934776187,-2.575966634787619,-2.9689778718166053,-3.7320975731126964,-2.871704624965787,-3.133835350163281,-4.073263397440314,-4.123869138304144,-3.142355691175908,-2.8658157507888973,-2.7793852388858795,-2.4391766455955803,-1.8007861818186939,-2.0153403491713107,-2.8726800130680203,-2.9767111144028604,-1.9867249270901084,-1.5393431461416185,-1.0420141387730837,-0.549535718280822,-0.9106160388328135,-1.218326103873551,-2.021752161439508,-1.667258801870048,-1.366282039321959,-2.230438041035086,-3.0324341035448015,-2.9567785230465233,-3.732884231954813,-4.55611869553104,-4.166836821008474,-3.815841297619045,-4.181138627696782,-4.2913462379947305,-3.7090186052955687,-3.135086855851114,-2.6836008788086474,-3.173279074486345,-2.5763496700674295,-1.9390329415909946,-2.622525403276086,-2.8739484045654535,-3.476898439694196,-4.039008426479995,-3.2026065280660987,-4.067486997693777,-4.956090313848108,-5.721491527743638,-5.611849768087268,-5.691496337298304,-5.903249019756913,-5.659002928994596,-5.240683055948466,-4.557357082609087,-5.20495321508497,-5.525334970559925,-5.799816401209682,-5.18024183018133,-5.12580713769421,-5.5509042125195265,-5.739482320845127,-5.847994236741215,-5.736512960866094,-6.418599327094853,-6.976692812982947,-6.059743982739747,-5.682866035494953,-5.928677286952734,-6.875915242359042,-7.013239985331893,-6.167988920584321,-6.988538836594671,-7.338521806988865,-6.423317402601242,-5.5937889707274735,-6.0107566206716,-6.778956187423319,-7.735870242584497,-7.876760967541486,-8.456500810105354,-8.657073962502182,-8.51888191793114,-7.524032185785472,-7.646774756722152,-8.591358274687082,-7.854836036916822,-7.7179806446656585,-6.828800110612065,-6.304185611195862,-6.209679472260177,-7.038516596425325,-7.662830665241927,-7.079239417798817,-8.004305455368012,-7.4088626080192626,-6.544120938517153,-7.035515648778528,-7.449815486557782,-7.788646139204502,-8.383496105670929,-7.421830111648887,-7.542900475207716,-7.379358288832009,-7.9363471725955606,-8.834368299227208,-7.984697595238686,-7.300836869049817,-7.630904283840209,-6.763134453911334,-6.260179142002016,-5.506220954935998,-6.085648602806032,-7.030172035563737,-6.103120450396091,-5.246345371007919,-6.065954875200987,-6.8326152404770255,-7.139286662917584,-8.101690090727061,-7.545269342139363,-8.264046925120056,-8.244509726762772,-8.216115939896554,-8.165975776966661,-8.49588773213327,-9.335016628261656,-10.140710341744125,-9.77875541197136,-8.868453735020012,-8.611364352982491,-8.301599085330963,-7.898845836520195,-8.282990980427712,-8.348947255406529,-7.657959321513772,-7.147971349768341,-6.6617895206436515,-7.349663534667343,-7.363247334957123,-7.9004684537649155,-8.082982425112277,-8.075647768564522,-9.036468570586294,-8.194686399772763,-7.714920567814261,-6.8398856008425355,-7.75206762785092,-8.044419935904443,-7.792909268755466,-7.274091125931591,-6.401791142299771,-5.543060514144599,-5.93435052735731,-5.633532454725355,-6.190279766917229,-6.694751636590809,-7.3551959111355245,-7.259560270700604,-6.8242419911548495,-6.818825257010758,-7.547161499504,-7.793068552855402,-8.611268668435514,-7.955720531754196,-8.023795768152922,-7.73254420561716,-7.313736821059138,-7.038039974868298,-7.452886638697237,-6.755167054478079,-6.569354617968202,-7.087148804683238,-7.181202983483672,-7.378904950805008,-6.42205020878464,-5.720676794182509,-5.910061193164438,-6.516612485051155,-6.639349960256368,-7.532965518999845,-8.106739731505513,-8.826608864124864,-9.627143788617104,-10.54292749427259,-11.301000221632421,-11.480099542066455,-10.98144038580358,-11.009747589472681,-10.641623490024358,-11.414800186175853,-11.704503275454044,-11.849481608252972,-10.946861735545099,-10.823480310384184,-11.107779280282557,-11.891095200087875,-12.741494738031179,-12.784913092385978,-11.858605977613479,-11.33353500906378,-11.688498746603727,-11.574891387950629,-10.685311857610941,-10.171976143028587,-10.563929405994713,-10.781752247363329,-11.712961551267654,-11.800293439533561,-12.566462254151702,-11.667915431782603,-10.948623688425869,-10.55548199499026,-9.61008622823283,-8.837433649692684,-9.404845704790205,-8.52775951474905,-8.563407502137125,-9.540058006066829,-9.09333567880094,-9.357441266998649,-9.176691776607186,-9.36772048054263,-8.476325824391097,-7.752437710296363,-7.735432262532413,-7.652479413896799,-7.3147755125537515,-7.628267067018896,-6.706964404322207,-6.033295115921646,-5.283800868317485,-5.933290054555982,-6.346069347113371,-6.386545752175152,-5.571130371186882,-5.178706061560661,-4.9284989247098565,-4.486914839129895,-4.983172576408833,-5.48230506805703,-5.454041485209018,-5.947295770049095,-4.9938938594423234,-5.866216903552413,-5.245828804560006,-4.716689289547503,-5.683143662288785,-6.015188928227872,-6.85202127462253,-7.26570724369958,-6.728244470432401,-6.99917069170624,-6.135067408438772,-5.627575752791017,-5.999362972099334,-6.0564396400004625,-6.240981947630644,-7.2111444771289825,-8.090313941705972,-8.019120608456433,-7.704085607081652,-7.615414529573172,-6.969436312559992,-6.236369633115828,-5.488316796720028,-4.675624012481421,-5.614093804731965,-6.149248026777059,-6.582344680093229,-7.000403460580856,-6.94133691303432,-7.00648270919919,-7.363717760425061,-8.044259635731578,-8.3605687180534,-8.112987639848143,-7.339465657714754,-7.912474973592907,-8.36492593633011,-8.898201106581837,-9.373907848726958,-8.656491413712502,-8.271406363230199,-7.3941873400472105,-8.07763158949092,-8.00423547392711,-8.18178774556145,-7.3779381448403,-7.730880882125348,-7.125837477855384,-6.695251504890621,-7.359801245387644,-7.610229613259435,-7.300149408169091,-7.185496152378619,-7.198251666035503,-7.676613159943372,-8.336752771399915,-9.122010052669793,-8.674125154037029,-7.704651150852442,-7.7555340602993965,-7.203925979323685,-7.18955743778497,-6.712453150656074,-7.711679975036532,-8.552349635399878,-8.670263763982803,-7.816787512972951,-7.6679836036637425,-7.576883654575795,-7.12664135126397,-6.565976335201412,-6.552093682345003,-7.497565602418035,-8.312194499187171,-8.136325009167194,-8.277965923771262,-8.944129465147853,-9.786374861374497,-10.716058241203427,-11.03984608873725,-12.018811368383467,-12.411426603328437,-12.426270259078592,-12.066167149692774,-12.17323707928881,-12.131796315312386,-11.330650001764297,-10.998248699586838,-10.424184379167855,-10.859778375830501,-11.313636031467468,-11.29680189723149,-10.8448880831711,-10.232812626287341,-10.040112765971571,-10.576954446267337,-10.74407711904496,-9.964433095417917,-9.975738923996687,-10.03715118020773,-10.368646709714085,-9.976583372335881,-10.209740627091378,-11.073172221891582,-11.454074828419834,-11.112453247886151,-11.217871176544577,-11.142652331385761,-11.956142622511834,-12.76791146909818,-12.908722615800798,-12.363023306243122,-12.65444104326889,-13.61005339724943,-13.375957572367042,-13.121097225695848,-14.066515546292067,-13.571980537846684,-12.872680141124874,-12.166353774722666,-11.543685003183782,-12.46810601092875,-12.258537266869098,-12.654546899721026,-13.216295182704926,-12.623894323594868,-13.208878963720053,-13.191078117582947,-12.417684461921453,-11.804650951642543,-12.582616297062486,-12.796178565826267,-13.576252183876932,-14.134190968703479,-14.767130130436271,-15.411205662414432,-15.23026355355978,-15.908511210232973,-15.115990861784667,-14.354243221692741,-15.230704840738326,-14.974654893856496,-15.321625273209065,-14.421541689429432,-15.216320891398937,-14.587643144186586,-15.343642218504101,-16.187452278565615,-15.726771515328437,-14.960643623489887,-15.243379077408463,-15.394525914918631,-15.465366038493812,-15.426494993735105,-15.840471568051726,-16.23309823963791,-16.72918499261141,-16.73232828080654,-15.902675323188305,-16.62344555137679,-16.899875096976757,-16.72580973058939,-17.719937363173813,-17.42159520275891,-17.122598670888692,-17.725381955504417,-18.587941258214414,-19.17607809463516,-19.84158149268478,-19.37007185863331,-20.09362117294222,-19.19017078075558,-18.508596032857895,-18.769500438589603,-18.92786870477721,-18.516697539016604,-17.768771460279822,-17.25212547276169,-16.57250874582678,-15.574704116676003,-15.351108015049249,-14.961641193833202,-15.220054338220507,-15.023040779400617,-15.346158950589597,-15.654605142306536,-14.702942750416696,-14.48009599559009,-13.540036630351096,-12.684702226426452,-12.323835502844304,-11.95778913423419,-11.74964210530743,-11.088923321571201,-11.436681346036494,-10.935128291137516,-10.426534321624786,-10.47311105625704,-10.902766664046794,-11.205148570239544,-10.753619798924774,-10.035070378798991,-10.93330638576299,-10.375362962018698,-10.253491287585348,-10.664274926297367,-11.546294812113047,-11.393240373581648,-12.084088616538793,-11.47446435270831,-11.145005975849926,-11.196072602644563,-11.606019232422113,-11.142494953703135,-11.794818164315075,-12.19980910886079,-12.913805211894214,-13.465751158073545,-13.08488697744906,-13.890618067700416,-12.910823813639581,-13.722467037383467,-13.224634311627597,-12.722067241091281,-12.746708737686276,-13.363328996580094,-13.462687713559717,-12.569386797491461,-11.99804193014279,-11.937336184550077,-12.526644120458513,-12.983856556937099,-13.690912963356823,-13.784632047638297,-13.53792641311884,-12.765433473978192,-13.2439987026155,-12.262031163088977,-12.854457650333643,-12.090191965457052,-12.69345122948289,-12.74584764521569,-12.158207372762263,-11.495480191428214,-11.262663218658417,-10.360750031191856,-9.514654810540378,-10.070164314005524,-10.560175964608788,-11.538522522896528,-11.310194497928023,-11.559354618191719,-11.17317772610113,-11.122621848713607,-10.322298407088965,-10.276890794280916,-10.888232927303761,-11.21406484162435,-12.156632381025702,-12.565782337449491,-11.869056700728834,-12.48032607929781,-13.140788610093296,-13.075865960679948,-14.01883353292942,-14.368550844490528,-14.764830017462373,-15.114905142225325,-16.059366097208112,-16.380641027353704,-17.368763575796038,-17.987178813200444,-17.358176925219595,-16.52920367848128,-17.07821303140372,-17.30693931085989,-18.045254478231072,-17.50208118604496,-17.983344723004848,-18.328679929487407,-17.793660078197718,-16.867042504716665,-17.682869403157383,-17.32202783599496,-17.491805287543684,-17.89804271189496,-18.806088206358254,-19.049946214072406,-18.23597420193255,-17.88305243011564,-18.30946035310626,-18.14067910052836,-18.851482887752354,-19.254354090429842,-19.079584809485823,-19.202807263936847,-19.42996549839154,-19.46878151362762,-20.359210933558643,-20.34559310367331,-20.752406515181065,-20.290944898035377,-19.546572214458138,-18.737412526272237,-18.42656952375546,-17.633025099057704,-18.316975525114685,-18.828311130404472,-19.080893830396235,-18.233495470136404,-18.581903140991926,-18.3394068130292,-18.033391611184925,-17.373262953944504,-16.416562775615603,-15.902585548348725,-15.962210455909371,-16.864424433093518,-17.296358093619347,-16.554398543201387,-17.053770118858665,-16.26891377288848,-16.389754402451217,-17.016307924408466,-17.969330310355872,-17.850406381767243,-18.474812675267458,-17.701771709136665,-18.07051844196394,-17.255439264699817,-18.035229575354606,-18.61800818471238,-18.466489035636187,-18.918508806731552,-19.460247464943677,-18.87030325178057,-19.070520755834877,-19.715585845988244,-20.5915273190476,-21.325217698235065,-20.75402790028602,-21.605893343687057,-20.940076523460448,-21.568519772961736,-21.026041188742965,-20.13904160261154,-19.92331729317084,-19.977846233639866,-18.988666728604585,-19.14433562476188,-19.630399995483458,-19.070704131387174,-18.663968284614384,-19.323196170385927,-18.396490601822734,-17.85669668810442,-18.409112692810595,-18.81243861000985,-18.260795196518302,-17.6554707698524,-17.85688678501174,-16.96409119805321,-16.780281803105026,-16.21398154599592,-16.030272437725216,-16.160908647812903,-16.65057630976662,-16.07860246486962,-17.050341218244284,-17.384031699039042,-17.038756852038205,-17.950663346797228,-18.146130183245987,-18.778048125561327,-19.54365106485784,-20.51829761825502,-20.44808765500784,-21.434449803549796,-21.228162333369255,-21.30049037700519,-21.925873805303127,-21.40963797038421,-20.960484333802015,-21.675919053144753,-21.118400729727,-21.123588225338608,-21.07954422198236,-21.49281077645719,-20.496942766476423,-21.20995751488954,-21.786217733751982,-22.19753850903362,-21.26299640024081,-21.401987745892256,-21.385850130580366,-20.879077136982232,-20.095145403873175,-19.363518439233303,-20.263395175803453,-20.78779395762831,-20.441479441244155,-21.117963143624365,-21.548403880093247,-21.402129386086017,-21.38911930564791,-20.65540550276637,-20.966619221493602,-21.917361247353256,-22.189853250049055,-22.12639844743535,-22.71304843109101,-23.371413131710142,-23.46780101535842,-22.61043102480471,-21.74690773896873,-21.64889160124585,-22.631293978076428,-23.601979605387896,-22.695204912219197,-23.276316264178604,-23.99109084904194,-24.29849041905254,-24.828392637427896,-24.68298027245328,-23.854021376930177,-23.217786992900074,-22.504432903137058,-21.700174656696618,-22.537790414877236,-22.537548527121544,-23.17629480967298,-22.69389332924038,-22.753464236855507,-21.93221490038559,-21.487129282671958,-20.723952876403928,-20.660311725456268,-21.618021108210087,-22.491400567814708,-22.293988183140755,-22.000298602040857,-22.001614356413484,-22.747158065903932,-23.50332893943414,-23.41315347980708,-23.971793442964554,-24.78935756115243,-25.448553965892643,-25.23883893387392,-25.676056866534054,-24.836064695380628,-25.166318744421005,-25.022457256447524,-24.10756399203092,-23.209079430438578,-23.95764087792486,-24.295349814929068,-25.2004629583098,-25.440784144680947,-24.94807297270745,-25.587812013924122,-25.64696628600359,-25.58257042756304,-25.627837857231498,-24.92397569073364,-25.085698909591883,-24.81860410468653,-25.166647748090327,-25.78976147575304,-26.78600330837071,-26.648846843279898,-26.823026701342314,-26.135213557165116,-26.19220936531201,-26.01533459313214,-26.729969438165426,-26.620071398559958,-27.10532957641408,-26.606155591085553,-25.95302742673084,-26.465719290543348,-26.21810347819701,-25.89824005542323,-26.78610179712996,-26.551296835765243,-25.56772038526833,-25.588239423464984,-24.86095637269318,-25.352347191423178,-25.387309012934566,-24.883462090045214,-25.01332857320085,-25.417082323227078,-25.649412760976702,-26.375770516693592,-26.47979510668665,-26.846996285952628,-25.928917763754725,-24.9487275457941,-25.5362473805435,-24.883327155839652,-24.00151288928464,-24.749801073689014,-25.426795090548694,-25.89674709830433,-26.675465474370867,-25.895619137678295,-24.95566835673526,-25.903012498747557,-25.67227381002158,-25.288464901037514,-24.88506335252896,-25.439414986874908,-24.604701843112707,-24.27315067546442,-23.69446475803852,-23.952157486695796,-22.972983146551996,-22.691017252393067,-22.78534244466573,-22.831658897921443,-23.59123579459265,-22.97310971841216,-22.390957701951265,-22.439854091964662,-22.465935313608497,-22.04178169509396,-21.440649730619043,-21.222344807814807,-20.613880642689764,-20.20503476448357,-21.097834879066795,-20.347718537785113,-20.10161559842527,-20.32307019457221,-20.34135064156726,-20.729458757676184,-19.755453140009195,-19.13093050243333,-18.636304885149002,-18.15797655796632,-17.72207335429266,-18.35257880948484,-18.296929897274822,-19.181691865436733,-19.32822177372873,-19.58426567260176,-19.761099476367235,-19.01099924603477,-19.30482677789405,-18.480610912200063,-17.654176360927522,-17.633782281074673,-16.86059563839808,-17.633694416377693,-17.072659659199417,-17.516908444464207,-17.589562357869,-17.388480686582625,-17.517749923747033,-18.268194078002125,-17.97130869142711,-17.11369945993647,-17.31799951195717,-17.50290912669152,-18.48865772271529,-17.526275002863258,-16.834013325627893,-16.03829652443528,-16.744871464092284,-17.302431624382734,-16.371129371691495,-15.450411106925458,-15.402790325228125,-14.740238825324923,-14.946150843985379,-15.57247498864308,-16.116805407684296,-15.96691748779267,-16.535695750266314,-16.162820083089173,-15.246170996222645,-14.527985681779683,-14.872680621687323,-14.911960875149816,-15.451197526883334,-15.238625223748386,-15.731277154758573,-15.113845304120332,-15.968902137130499,-16.54313399270177,-15.957118046935648,-15.568645406048745,-15.224308484699577,-15.14368849247694,-15.683451103046536,-15.221557382494211,-15.533494180068374,-15.573678416199982,-16.04376200027764,-15.358338243328035,-15.270640223752707,-14.502043632790446,-13.996466192882508,-14.595167280640453,-14.02926346147433,-14.127692910376936,-13.160699459258467,-12.766024992335588,-12.828188468236476,-12.041323030367494,-12.477664313744754,-13.171729921363294,-13.893718578852713,-13.110722881741822,-12.451210092753172,-11.936286305543035,-12.085763736162335,-11.954591139219701,-11.531521217897534,-11.18642131658271,-10.298955058213323,-10.393404590897262,-9.415570421144366,-10.372607733123004,-11.286901920102537,-11.858438493683934,-12.47264016745612,-11.880414430052042,-12.096069262828678,-12.857315870001912,-13.835404061712325,-14.82841799594462,-14.947508935816586,-15.870205187704414,-15.935691737104207,-15.613105606287718,-15.479624178726226,-16.068682030774653,-16.218762587290257,-16.663402286358178,-17.61274479003623,-17.690955121535808,-16.966294592712075,-16.7764905015938,-16.967529267072678,-17.367806546390057,-16.43916869070381,-16.074892780277878,-16.0554276779294,-16.963625243864954,-16.705334207508713,-17.215939348563552,-17.346659557893872,-17.75277135707438,-17.763792289420962,-18.695227006915957,-18.720563428942114,-18.677860074676573,-19.670101210009307,-18.86404571728781,-19.47982829483226,-18.954791667871177,-18.43324064463377,-17.61806730600074,-17.525449463166296,-16.651720935013145,-16.722535259090364,-15.917975186835974,-15.210223075468093,-14.53894413402304,-14.020663465373218,-14.263249777723104,-13.306765506509691,-12.403653943911195,-11.494377677328885,-12.209190029650927,-12.805971111170948,-12.96011165715754,-12.796746727079153,-13.60890058754012,-13.98767123091966,-13.635783220175654,-14.321721610147506,-15.296940219122916,-15.448142447974533,-16.28490059962496,-16.215304390061647,-15.458509592339396,-15.613097157329321,-15.062753493897617,-14.722821624483913,-15.416150620672852,-16.265488306526095,-16.63651409931481,-16.93604776682332,-16.101325816474855,-16.10811306722462,-16.24592840950936,-16.1321253310889,-16.80178290558979,-17.05336924875155,-16.96008854592219,-16.976686148904264,-16.219670792575926,-15.90843578753993,-15.705598678905517,-16.12910297513008,-15.24025555094704,-14.634086273610592,-13.861355190165341,-14.343963485676795,-13.608679868746549,-13.549157776869833,-13.425599111709744,-13.949259460438043,-13.628389806952327,-13.029336912091821,-13.493469071108848,-14.261512910481542,-14.266578773967922,-13.459675666876137,-12.713765437714756,-12.736101970542222,-12.751170570030808,-12.579439378809184,-13.50688917376101,-12.639372357632965,-12.484627005178481,-11.767810800578445,-10.849006867036223,-10.829452133271843,-10.953268901910633,-10.450118150096387,-10.668841681443155,-10.159485009498894,-11.087421793024987,-10.963924893643707,-10.935200598556548,-11.543497222941369,-11.16137396870181,-11.217662969604135,-11.533270057290792,-12.242048255167902,-11.519891661126167,-12.258568461053073,-13.045359862037003,-12.350133350584656,-13.347245657350868,-13.094364409334958,-13.443825662136078,-12.696586762089282,-12.98381414404139,-13.23292149277404,-12.61013384303078,-12.697913805488497,-12.429767238907516,-11.469858542084694,-11.8579862867482,-11.95683812117204,-12.76425065426156,-13.329773646313697,-12.853056222666055,-13.455958492588252,-12.596263914369047,-12.092854749411345,-11.483226786367595,-10.541695320047438,-10.154429099522531,-10.986804871354252,-10.80546046467498,-11.344712525140494,-10.522048411425203,-10.05699749244377,-9.941629365552217,-9.77490268042311,-9.670717134606093,-10.025767648592591,-9.79657250829041,-10.183885910082608,-9.50012399861589,-9.03155158739537,-9.73834270471707,-10.27064648643136,-9.614736566785723,-8.691446157637984,-7.703851803205907,-7.948490592185408,-7.197473167441785,-7.086005833931267,-6.637619426008314,-6.726298395078629,-6.002662206068635,-6.5944575080648065,-7.133706535678357,-8.122315156739205,-8.848324349615723,-9.196356857661158,-8.76147964131087,-8.3191929589957,-8.310203804634511,-8.77197920391336,-9.397822009399533,-9.885079992935061,-9.039441980421543,-9.969693516381085,-10.655316612683237,-11.651689196471125,-12.161507735494524,-12.424467776436359,-13.114400372840464,-13.31222037691623,-12.5603928565979,-11.834668250754476,-11.754020773805678,-11.902092800009996,-10.965780950617045,-11.313804949168116,-10.720774129033089,-10.128345879726112,-10.72573622688651,-11.641594629734755,-12.516607656143606,-12.93694353569299,-12.218530814629048,-12.312562350183725,-12.462646701838821,-13.072787721641362,-12.255670303944498,-12.053535957355052,-12.391360802575946,-11.546366454102099,-11.850233862642199,-11.642018591985106,-12.083255177363753,-11.889165232423693,-10.984568245708942,-11.081899870652705,-10.856000557541847,-11.115432903170586,-11.286183101125062,-11.409362805541605,-10.809248694218695,-10.804263384547085,-9.869613640010357,-10.321762362029403,-10.478111393284053,-9.839622245170176,-9.077517366502434,-9.848164395429194,-10.675006705336273,-10.859836208634079,-10.585606550332159,-11.44414549972862,-12.136655689682811,-11.341604070737958,-10.89942450542003,-9.93805511854589,-9.142063949722797,-9.962291894014925,-10.506812660489231,-9.571078389883041,-9.544878914952278,-9.961361575871706,-9.093314161989838,-8.73288281681016,-7.739971451461315,-7.391428077593446,-6.932640326675028,-6.838704071007669,-7.179352931212634,-6.3442667867057025,-6.865717344451696,-7.261524446308613,-7.134991192724556,-7.914918151218444,-8.39301995607093,-8.291026746388525,-8.94772530766204,-8.94979798514396,-8.298027459532022,-7.358348549809307,-6.742234910372645,-7.371180848684162,-7.666122159920633,-7.658481613267213,-8.416856618598104,-8.62805593945086,-8.213108716532588,-9.1348841288127,-8.150399957317859,-8.701821430120617,-8.869992151856422,-9.39554117852822,-9.291120795533061,-9.59678073739633,-8.609824082814157,-8.243842845316976,-7.547174089122564,-7.950847201514989,-7.813689963892102,-6.843013422098011,-7.579311546869576,-7.058424373622984,-6.258898948784918,-6.455334883183241,-7.345871794037521,-7.351356462575495,-8.212323816027492,-8.1414824295789,-7.6401297324337065,-7.352032315917313,-7.161793563514948,-7.694287991151214,-7.9325380264781415,-8.39505957532674,-9.150866138283163,-9.608075165655464,-9.009807143826038,-9.751405274029821,-10.63159656105563,-10.648818410467356,-10.38971136789769,-11.085224708076566,-11.900497240480036,-12.648382272105664,-12.458037066739053,-12.699049532879144,-12.95891311718151,-13.51734042307362,-13.954994804691523,-14.23699860740453,-13.481064117979258,-14.315919806715101,-14.324594809208065,-15.005372371058911,-14.132776902988553,-14.493765228427947,-14.712891711387783,-14.30679592071101,-14.98559155408293,-15.69877809425816,-15.743034249637276,-14.89550099382177,-14.250350865535438,-13.985365422442555,-13.846402743365616,-14.183965211734176,-13.352901172358543,-12.866831734776497,-12.844142355956137,-13.258129412308335,-14.234450172632933,-13.84404586115852,-13.8182287174277,-13.962634584400803,-14.572323419619352,-14.596264730207622,-14.195674329064786,-14.883232621941715,-14.941195335239172,-14.728687947615981,-13.844660535920411,-14.476568961050361,-14.815947241615504,-15.241724075283855,-16.19846081826836,-15.302298311144114,-16.16322313854471,-15.463195310905576,-16.34213235648349,-15.637004021555185,-16.2277825884521,-15.431151709984988,-15.57705766800791,-15.916134527418762,-15.111323401797563,-15.434661095961928,-15.746507451403886,-14.966304806061089,-14.933128849137574,-14.56206860113889,-14.940185759216547,-14.385460933670402,-15.361395330168307,-15.859937107656151,-15.080385477282107,-15.540933910291642,-15.101899914443493,-15.292088337242603,-14.999711571261287,-14.420676596462727,-14.46174364630133,-14.701565873343498,-15.359074245672673,-15.05419321032241,-15.02938302140683,-15.118898758199066,-15.470487072132528,-15.346519112586975,-15.233825760427862,-14.467746647074819,-13.789982054382563,-14.47946730721742,-13.48040846735239,-14.025785421952605,-14.106891821604222,-14.74666449194774,-15.467408457305282,-16.24250879138708,-15.578499021474272,-15.98724224139005,-15.234784922096878,-15.662595054600388,-15.478266736492515,-15.130900012794882,-15.018515694420785,-14.04580371035263,-15.024597438052297,-14.391133718192577,-14.905163699761033,-14.296648215968162,-14.175722393207252,-14.053691097069532,-14.784540138673037,-14.535235042218119,-13.799904754385352,-14.651887892279774,-13.661897190380841,-13.509740174282342,-14.441221659537405,-15.353863444644958,-14.70803582854569,-14.025431639980525,-14.805011541116983,-13.975304105784744,-14.659457032568753,-13.899882921483368,-14.264081093017012,-14.580289623700082,-15.447492430452257,-16.260593915358186,-15.882055662106723,-16.700218525715172,-17.054437613114715,-17.346014155540615,-17.382734485901892,-17.581540995277464,-18.451278897468,-18.369852393865585,-17.55281854700297,-16.639916548505425,-16.97927084751427,-17.668009310029447,-17.146407367661595,-17.338392622303218,-17.989601672627032,-18.909468855243176,-19.351946712471545,-19.130481044761837,-19.570638209115714,-18.65434554917738,-19.564746922347695,-19.29769171681255,-19.187659524846822,-18.6465813415125,-18.111725244671106,-18.44113362999633,-19.35200873715803,-18.500222594011575,-19.196059118025005,-18.339026977773756,-18.679980088956654,-18.193676956929266,-18.73054564651102,-18.08164648199454,-17.343408985994756,-16.961202777922153,-16.054645107593387,-15.688926630653441,-15.651775715872645,-16.25269128428772,-16.183920429553837,-16.06787242833525,-15.379197364673018,-15.328009272925556,-16.21813866868615,-16.99924726737663,-17.480681186076254,-18.198257558979094,-18.92055020062253,-19.65737627260387,-20.5717931012623,-20.381155708804727,-19.519825995434076,-19.397919406648725,-19.346422797068954,-18.552976510953158,-19.38051854632795,-19.709024361800402,-20.309898175299168,-20.148560634814203,-19.723924189340323,-19.956793826073408,-20.048520126380026,-19.688873606268317,-19.310165817383677,-19.163134573958814,-19.927464521490037,-20.780984201002866,-20.2418416547589,-19.984535834286362,-19.68868506187573,-19.948088137432933,-20.006085404660553,-19.47204476594925,-18.74106802046299,-18.382870614062995,-17.824136883486062,-18.446891637984663,-19.174892814829946,-19.86091554025188,-20.17551459930837,-20.755430101882666,-19.88208947656676,-19.46829039696604,-20.050114849116653,-20.88204135419801,-20.163944012951106,-21.038895894307643,-20.450309621170163,-19.51471370086074,-19.905673469416797,-20.331986682023853,-20.628723706118762,-20.896707376930863,-20.24844675231725,-20.29094006214291,-19.498160322662443,-19.6430994393304,-19.518125551752746,-20.453821923118085,-20.041677529457957,-19.366701235529035,-18.49756365409121,-19.452488891780376,-19.79376954259351,-20.17388361180201,-20.37606108514592,-19.82183867506683,-19.476456569507718,-19.45396911771968,-19.532677976880223,-18.73166296305135,-17.743816866073757,-17.324259085580707,-17.314851908013225,-16.609787723980844,-15.8500671912916,-15.374345588963479,-14.646505157463253,-14.014002711046487,-13.773735713679343,-14.023887383751571,-13.676693063694984,-13.532676584552974,-12.737571437843144,-12.690679074730724,-11.748408206738532,-12.370505699887872,-12.835488847922534,-13.323992269579321,-12.495961651206017,-12.647686885669827,-12.971335510257632,-12.785830906126648,-12.85539500368759,-12.104954682756215,-11.604339550249279,-12.30128342891112,-12.639513509813696,-13.436720703262836,-13.358698350843042,-12.464337670709938,-11.718898287508637,-12.620411270763725,-13.135822688695043,-13.694409416988492,-13.615076150745153,-13.731445785146207,-14.434404024388641,-14.590176433790475,-14.52810816373676,-15.270368590950966,-14.476866045966744,-13.66711584571749,-13.862335262820125,-13.914623861666769,-13.731893323827535,-13.503526826854795,-13.219647840131074,-13.83272257540375,-13.023960714694113,-12.47828032122925,-13.356601694598794,-12.770536989439279,-13.731455043889582,-13.630815727170557,-14.22077558748424,-13.668917172122747,-13.711522798519582,-14.651247801724821,-14.02479455852881,-13.51667811209336,-12.655185640789568,-12.490589016117156,-13.011653836350888,-13.974128017667681,-13.629052214324474,-14.240581583231688,-13.813459259457886,-13.198337505105883,-13.481261609587818,-13.093243569135666,-12.687036949209869,-13.465740511193871,-12.660951157100499,-13.139183841180056,-14.089354216586798,-13.57010202202946,-12.708670620340854,-12.63175122346729,-11.731740707997233,-12.580371107906103,-12.389195133931935,-12.777515509631485,-12.784866825677454,-13.497704381588846,-12.701951334718615,-12.85842223605141,-13.483410455286503,-12.591389392502606,-12.207192920614034,-12.468910925555974,-12.71907498454675,-12.551554901525378,-13.406997975427657,-14.362746952101588,-14.03559279954061,-14.518699155189097,-15.005309520754963,-15.71594643453136,-15.881137989461422,-16.751634049229324,-16.50135807786137,-17.285497853532434,-17.728449987247586,-17.877916756551713,-17.609349525999278,-17.89235164085403,-17.077842097729445,-16.504935669712722,-16.878136618994176,-17.81884586578235,-16.867212562821805,-17.77175387367606,-16.96891193371266,-16.061927598901093,-17.037078608293086,-17.104734790045768,-17.833567684981972,-17.76020254800096,-16.9618753856048,-17.95679764309898,-18.595725601073354,-18.219266356900334,-17.367663194425404,-17.14971934678033,-17.628943261224777,-17.21551609551534,-17.410454524680972,-17.49703085422516,-17.709771938156337,-18.241419952362776,-17.60964236781001,-17.937077291775495,-17.478422718588263,-17.1283817011863,-17.2635752633214,-18.035216484684497,-18.22764997370541,-17.80096346186474,-17.29109143279493,-16.463664098177105,-15.521119397133589,-15.57372865639627,-15.347467275336385,-16.152617748826742,-16.598824610468,-16.87975942250341,-17.632553674280643,-18.551376794464886,-17.91178202535957,-18.220170360524207,-18.748222936876118,-19.634993344079703,-19.311723412480205,-19.173648046329618,-19.78918052650988,-19.186768255662173,-19.35289751086384,-19.858088551089168,-20.466281588189304,-19.480741617735475,-20.128538069315255,-20.30512009980157,-20.933571220375597,-21.09185389475897,-21.3167482460849,-21.14764398150146,-21.97045692615211,-21.472258873749524,-21.690238021314144,-22.307147421408445,-21.438032809179276,-20.85604103282094,-19.921955657657236,-19.85920238541439,-19.77452042279765,-20.709759580902755,-21.260776803363115,-20.495785661507398,-19.8923144149594,-20.37028775224462,-21.146559555549175,-20.563151783775538,-19.69796474883333,-20.279647731222212,-20.561630682088435,-21.323268295265734,-21.534882923588157,-20.741859713103622,-20.331004092935473,-20.984995356295258,-19.98923595715314,-19.887408198788762,-19.07843348570168,-19.247246011160314,-18.721782190259546,-19.362466198857874,-19.325368275865912,-18.361185951624066,-18.602442684117705,-18.555724840145558,-18.29119143774733,-17.434169230517,-17.731600943487138,-17.968641325365752,-18.244087360799313,-18.317837302107364,-18.76106615876779,-17.995976108592004,-17.6015639686957,-17.05385584011674,-17.958570489659905,-17.687848437577486,-17.88428073283285,-17.2284272396937,-16.40315343020484,-17.1174474270083,-17.274941632989794,-18.016913132742047,-18.44250082736835,-18.7759685148485,-17.782395873218775,-18.12639088742435,-18.73347561294213,-18.557978335767984,-17.947589992079884,-18.67707757744938,-19.411835852079093,-19.498412602115422,-19.52856047777459,-20.210214531980455,-20.691111049149185,-20.78201273130253,-20.45883656758815,-20.108096178621054,-19.266614068765193,-19.804092783946544,-18.886381048243493,-18.618892370723188,-19.58241984155029,-20.159092606510967,-20.715940412599593,-20.713134557008743,-21.610136279836297,-21.7324007935822,-20.969879529904574,-19.99908991297707,-19.3246392426081,-19.799008714966476,-20.644435353577137,-20.829298719298095,-20.7898422293365,-20.202837743330747,-20.016102737747133,-19.948526228312403,-19.403714166022837,-20.12078058347106,-19.442257934249938,-18.913374949712306,-19.374912859871984,-19.046076466329396,-19.07379261031747,-18.487589667085558,-18.884907498490065,-19.093910365365446,-20.05940481973812,-20.275962790939957,-19.333691365551203,-20.30741608282551,-19.674989230930805,-19.66684502037242,-20.299250793177634,-19.59090425213799,-20.562316570896655,-19.698312402702868,-20.350526459980756,-20.30308480653912,-19.41153731709346,-18.77357211103663,-18.327053346671164,-17.428681989666075,-18.369022417347878,-19.24991721380502,-19.26815163716674,-19.391284577082843,-18.60876126214862,-18.880668512545526,-18.082512093242258,-17.898665672633797,-17.57564905891195,-17.703221990726888,-16.871160586364567,-17.275053684599698,-17.344511217903346,-18.093844775576144,-18.467958985362202,-18.97052786219865,-18.414329804945737,-19.029922855552286,-18.37924606539309,-18.4293458214961,-18.646768333856016,-18.084797848481685,-18.261072556953877,-18.811095277778804,-19.723423328250647,-20.606301088351756,-19.930115681141615,-20.25344013189897,-20.748788091819733,-21.274902223143727,-21.712515828665346,-22.498336331453174,-21.75735981622711,-21.189166171476245,-22.170839360915124,-21.81751407077536,-22.465792294591665,-22.04318652767688,-21.636421143077314,-21.594667808618397,-20.88477841531858,-21.07359531754628,-21.310833368450403,-21.909072429407388,-21.588681081309915,-21.910584680736065,-21.817439516540617,-20.83805199339986,-20.075096077285707,-21.0747645618394,-21.787765813991427,-22.244353903923184,-22.618786385748535,-22.567247219383717,-22.36428168648854,-21.893688443582505,-21.099674308206886,-20.61425145715475,-21.536768976598978,-20.802261225879192,-21.52672376250848,-20.723381837364286,-20.408065334893763,-21.086049143224955,-21.368129833601415,-20.836228216066957,-20.506436970550567,-19.607291030231863,-19.847524281591177,-20.25869787298143,-20.951730214525014,-21.435428442433476,-21.111450572963804,-20.885824860539287,-20.380126735195518,-20.69903824152425,-19.948902680538595,-20.073729819152504,-19.871478667017072,-19.234128246549517,-18.7671649903059,-19.556610974948853,-19.247683859430254,-20.030240688938648,-20.615571819245815,-21.04531375039369,-21.415445811115205,-20.49822908034548,-21.45390564808622,-21.4764618515037,-20.537219424266368,-19.5639864676632,-20.048731052782387,-19.492393237538636,-19.579873390030116,-19.358069497626275,-19.85308709135279,-19.857856228481978,-19.769625800661743,-20.1785006839782,-20.45228279288858,-19.71352746291086,-19.101667929906398,-19.27128057088703,-18.30455491086468,-18.494430092629045,-19.07709878263995,-19.53931045019999,-19.036573696881533,-19.43486848473549,-19.663996662013233,-19.967402134556323,-20.074527053628117,-21.057752722874284,-21.887270541395992,-21.77038282342255,-21.890855805482715,-22.18839279608801,-21.982181013096124,-21.993989505805075,-21.393376095220447,-21.97713000839576,-21.94372843299061,-22.53956869849935,-22.416556902695447,-22.01039376994595,-21.875449650920928,-22.661061770282686,-23.617427525110543,-22.758945105597377,-23.6230321964249,-24.313099241349846,-24.61458338610828,-24.44183764513582,-24.781122030690312,-24.475195437669754,-25.254922069143504,-24.763226741924882,-24.38491676468402,-24.980447247158736,-24.59460192359984,-24.656336780637503,-24.605521462392062,-24.62356372969225,-23.965032066218555,-23.484473817050457,-23.993551241699606,-24.259646197780967,-24.029369599185884,-23.588480653241277,-24.127128657884896,-23.277095364872366,-23.38234736258164,-22.582843282725662,-23.193559006787837,-23.378601900301874,-22.912261408288032,-22.297836685087532,-21.9333863039501,-22.242492166813463,-22.912928754929453,-23.78928158292547,-23.74148739222437,-24.23169783083722,-24.03677751030773,-24.65269049955532,-25.146232706028968,-24.73244570242241,-23.806610010564327,-23.513218346517533,-23.908655407838523,-24.65805334271863,-24.121570982970297,-23.880401766393334,-24.67439479008317,-23.697968112304807,-23.31990838004276,-24.216355415061116,-25.207357864826918,-24.95873524295166,-25.049460291862488,-24.625153184868395,-23.890654845163226,-23.130733935628086,-23.931025039870292,-24.761769474484026,-23.84586736978963,-24.035335761029273,-23.070649270433933,-23.775807783938944,-24.411371290218085,-24.038204590789974,-24.69617970334366,-24.872786848805845,-25.084356119390577,-25.36242115451023,-25.682149162050337,-24.71329858759418,-24.056715860962868,-23.643312309402972,-23.92084570834413,-24.180880426429212,-24.521535203792155,-24.968379606492817,-24.878777627367526,-24.324861941393465,-23.952664148062468,-23.230003853794187,-23.914917671121657,-23.90612855972722,-22.95090520568192,-22.186091375071555,-21.74639587989077,-21.39001573668793,-20.39946365915239,-20.723693034611642,-20.289210942573845,-19.364104306790978,-19.681999349500984,-20.638468477874994,-20.284628845285624,-19.451893464196473,-18.835784768220037,-19.139200645964593,-19.83523946488276,-18.925839060451835,-18.306814239826053,-17.625392057932913,-18.25942325172946,-17.61776670953259,-17.44085035705939,-18.384116852656007,-18.402856866829097,-17.702784990891814,-16.980640281457454,-16.422966399695724,-17.384585412684828,-18.31420406512916,-18.173977823928,-18.031321660149843,-18.72572978353128,-18.677830974571407,-18.32238322077319,-17.74289784952998,-17.893433364573866,-18.863408625125885,-18.0558586390689,-18.318728142417967,-18.020655975677073,-18.264849186874926,-18.71994233643636,-18.53089503850788,-17.949082989711314,-18.459732826799154,-18.85816288134083,-18.604822171851993,-17.624270711559802,-17.266196788754314,-17.976599842309952,-18.55178375262767,-19.102003801148385,-19.909480158239603,-20.664361035451293,-21.039341304451227,-21.973804249428213,-21.57472733501345,-22.49420160567388,-21.659049001988024,-21.363376318477094,-21.05673972470686,-21.51336964778602,-22.30342158349231,-22.12233149074018,-23.093604274559766,-23.79914384195581,-24.458260889165103,-23.568067122250795,-24.237404860556126,-24.246539684943855,-24.665188229177147,-23.885936757083982,-23.26631112070754,-22.61447202647105,-23.599326835013926,-24.214634434320033,-24.42770454287529,-23.591089795343578,-24.455741103272885,-24.498491778504103,-23.77961962344125,-22.983884323388338,-22.10088510531932,-22.678442431613803,-22.157406765967607,-21.923872309736907,-21.66173485526815,-21.922668755520135,-22.074005344416946,-21.357844126410782,-21.823942894581705,-20.841092091985047,-20.107915924396366,-19.226723522879183,-18.853289645165205,-19.383637090213597,-19.58719210792333,-19.466889211907983,-19.783466783352196,-20.336625047493726,-21.039295923896134,-20.529623134527355,-19.619376086629927,-20.343295901082456,-19.80482054175809,-20.035847114864737,-19.611615209374577,-19.613947360310704,-20.127528913784772,-20.40275248978287,-20.431924383621663,-19.549255068413913,-20.458619409706444,-20.69417274929583,-20.09411128005013,-20.75991465570405,-21.014943934977055,-20.262156278360635,-19.392556463368237,-20.137723729014397,-20.878257578238845,-21.2232452807948,-22.19894428830594,-22.806425996124744,-22.674249809235334,-22.625503931660205,-23.25715475389734,-22.942714027129114,-22.242263698019087,-22.200087937060744,-22.933227879926562,-22.383220135699958,-22.11485265661031,-22.582816171925515,-21.819809497334063,-22.09681330109015,-21.42047492507845,-21.33494630130008,-20.717006297316402,-21.562256169039756,-21.92233736626804,-21.186366237234324,-20.804587012156844,-21.511092339642346,-21.373237845487893,-20.677535445895046,-20.728115549776703,-21.389204810839146,-21.0562207615003,-21.792788431048393,-22.19452441064641,-22.923473075497895,-21.93095056898892,-22.622767647728324,-23.4955227044411,-22.66884564096108,-22.278177953790873,-21.73446602700278,-20.905500841792673,-20.96491998201236,-20.83077645720914,-19.926029603462666,-20.248487864155322,-20.724758811295033,-19.72847660910338,-20.712692629080266,-21.14359086379409,-22.117578027769923,-21.927971123252064,-22.003527539782226,-22.94824704527855,-23.15406468976289,-22.443711349740624,-22.9376004752703,-22.0318670719862,-22.892890837509185,-23.115642403718084,-23.34706553630531,-23.613603081088513,-24.14840659778565,-24.450261858757585,-24.290001563727856,-24.76411747233942,-24.181487627327442,-23.215475080069155,-23.804741802159697,-24.19603809947148,-25.029611027333885,-25.572369439993054,-26.23292001755908,-25.445045629050583,-25.931068744976074,-25.406635775230825,-26.23272104933858,-26.067815735936165,-26.89017109759152,-27.25809836992994,-26.90900954976678,-27.128530125133693,-27.721072854474187,-26.725819502957165,-27.279443769250065,-27.89190637599677,-28.081195869483054,-28.695595351513475,-28.38458361523226,-27.769644159357995,-28.37737663835287,-29.189850151073188,-28.767230660654604,-29.75504338508472,-30.260799190495163,-30.379530765116215,-29.889018048066646,-30.12157164607197,-30.825857884716243,-30.68204851867631,-30.979292198549956,-30.230870496481657,-30.858559414278716,-31.293860328849405,-30.487895667087287,-30.350594465620816,-31.11904246825725,-31.646278995554894,-31.1353340591304,-30.355036152061075,-31.328902344685048,-31.290818164125085,-30.96611607959494,-31.901148550678045,-30.986159395892173,-30.982286341954023,-31.597440164070576,-32.32819924643263,-31.69414610369131,-31.2044419888407,-30.392303198575974,-30.57703695539385,-30.717530890367925,-30.433199002873152,-31.163184728007764,-31.146542301401496,-30.520848699379712,-30.15619407221675,-30.68509483989328,-29.837769919075072,-30.826602098997682,-30.73343739565462,-30.55670965090394,-30.755066289566457,-30.15235456591472,-29.427647411823273,-28.7927368292585,-29.608565654605627,-29.376559015829116,-29.188663368579,-29.659156671259552,-29.292386712040752,-28.480929524172097,-28.306635089684278,-28.43884673062712,-27.544697976205498,-27.828890847973526,-28.049937083385885,-27.394131070934236,-28.37990154698491,-27.534375078976154,-26.947554596699774,-26.252834046259522,-25.529501508455724,-26.276548477821052,-25.87403529556468,-25.376163992099464,-24.650403153151274,-24.32479860400781,-24.650137721095234,-24.714018476661295,-24.776516332291067,-24.93245217949152,-24.835539189632982,-24.59749752469361,-24.811194366309792,-24.975918723270297,-25.819716126658022,-26.046989989932626,-26.92022049659863,-27.265464718453586,-27.2884143833071,-26.747081368695945,-25.846787864342332,-26.529818288516253,-26.21354981092736,-26.514576298184693,-25.934399295132607,-25.23209267994389,-26.026315682101995,-25.421421790961176,-24.704080711118877,-23.952184702269733,-23.211823145858943,-23.654437095392495,-24.019842091482133,-23.475366075057536,-23.822927880566567,-23.5388570218347,-23.150638352613896,-23.481520506553352,-23.96944209607318,-24.10506022395566,-23.211515699047595,-23.702286216430366,-24.32676363037899,-24.594376681372523,-25.54759990843013,-25.108558987267315,-24.425551969558,-23.837245288304985,-23.260035754647106,-23.700007495004684,-22.983387753367424,-23.022860013414174,-22.23207826865837,-22.08202321594581,-21.119755000341684,-20.1911658574827,-19.237195136025548,-19.163767762016505,-18.707794427406043,-19.196906309574842,-19.594827751163393,-19.741447389125824,-20.63425973430276,-20.810574719216675,-21.39108811924234,-21.997751197312027,-21.713363497983664,-20.796681858133525,-20.102206053212285,-20.339578102342784,-20.172663952689618,-20.709200704935938,-20.805385100189596,-21.10383299877867,-20.815208330284804,-20.48989833286032,-19.573365609161556,-19.381183207966387,-18.473172129131854,-18.27113529574126,-17.819294687826186,-17.042381808627397,-18.03296645032242,-18.98531712172553,-19.583208395633847,-19.78345112502575,-20.54839034518227,-20.406405688729137,-20.636928993742913,-20.61511734314263,-20.269330319948494,-19.2962891086936,-20.119916615076363,-19.941159489098936,-20.119731328450143,-20.96256920788437,-19.990852932445705,-19.77679563034326,-20.3576242569834,-20.172180105000734,-19.926265912596136,-18.983251248952,-18.071872469503433,-17.581676163710654,-17.203037506900728,-16.65908890683204,-17.645560152828693,-16.741692093666643,-17.167449226602912,-18.14781229151413,-17.229408864397556,-16.99809000780806,-16.55935169570148,-15.97474806662649,-16.73135197767988,-17.516796289477497,-17.97386605711654,-17.76881121704355,-17.6538593522273,-18.167645095847547,-17.561486216261983,-17.861504128202796,-17.95433146506548,-18.74795390293002,-18.59709115419537,-18.839011480100453,-18.727839124854654,-17.92899757483974,-17.11275805812329,-16.30207632901147,-17.283491508103907,-18.04796813754365,-18.228179696481675,-17.596411866135895,-17.126500576734543,-16.415232656057924,-16.623501103837043,-15.646150775253773,-16.059829326346517,-16.478246978484094,-17.13856055168435,-16.88288309983909,-17.287168638780713,-17.481915421318263,-16.962200680747628,-17.62316895555705,-18.1650708373636,-18.282476995140314,-18.341842143330723,-18.944087982177734,-18.11663732631132,-17.559839501511306,-18.327184126712382,-18.10394503735006,-17.815243498887867,-17.99601073237136,-18.446767169982195,-19.3081024014391,-19.20671432092786,-18.47041127504781,-19.120968020055443,-19.236632263753563,-18.402870825491846,-19.26235019788146,-18.512603187467903,-18.489913363941014,-18.423149465117604,-18.518654922954738,-18.640802573412657,-18.255032028071582,-17.923294129781425,-17.95812508976087,-17.578084336593747,-18.30796648748219,-18.372544357553124,-19.255057457834482,-18.87271343404427,-19.572439746465534,-19.526718027424067,-19.386628618929535,-19.308426467701793,-20.029013069346547,-19.30064084334299,-19.870482515078038,-20.210103753954172,-19.429815049283206,-19.391203281003982,-20.054955784231424,-20.20192923117429,-20.748277231585234,-21.165615704841912,-20.38864317862317,-20.677957353182137,-20.68514503724873,-20.89342315029353,-21.53342559468001,-20.756436670664698,-19.802761666942388,-20.348802618682384,-19.807622799184173,-19.35979208908975,-19.078398188576102,-18.304212673101574,-18.077995975967497,-18.400056453887373,-17.631191942840815,-18.15063929464668,-18.682349749840796,-18.49288646457717,-18.819453264586627,-18.349784418474883,-18.413331408053637,-18.774867189582437,-18.168155673425645,-17.24217118974775,-17.144803781528026,-18.03275472112,-18.338677939027548,-17.504099261015654,-16.936145008541644,-16.37205210654065,-16.26747447764501,-16.414927108213305,-15.669146183878183,-16.45042495476082,-17.002329317852855,-16.50177678791806,-17.429747559595853,-17.66068649990484,-17.577176080085337,-17.175498933065683,-17.98176323249936,-17.553464447148144,-16.585051455069333,-16.654422018676996,-16.381340749096125,-15.9452376361005,-14.96615598956123,-15.097689096815884,-15.892674348317087,-16.061526840552688,-16.856593591161072,-17.726190980989486,-17.385132988914847,-18.268953187391162,-18.796166861895472,-19.431895344518125,-20.250422168988734,-20.785310767591,-21.16976955719292,-21.27848847489804,-20.416161472909153,-20.568385421764106,-21.168587149120867,-22.04118018085137,-21.858977566473186,-22.282889460213482,-21.988332187756896,-22.956551454029977,-22.83618750423193,-22.179550437722355,-21.576573925092816,-22.060806039255112,-22.641697820741683,-21.91328099137172,-22.017769513186067,-21.99201208492741,-21.152433949057013,-20.228775596711785,-20.2464259150438,-19.595802126917988,-18.819151541683823,-18.39916770113632,-17.855453294236213,-18.111937762238085,-19.01556194666773,-19.107487473171204,-19.838354621082544,-19.678491207305342,-18.832974528428167,-19.166027210652828,-19.858349063433707,-20.258860596455634,-19.562007997650653,-19.429190838709474,-19.09007164137438,-19.21823141304776,-19.051336537580937,-18.906800728291273,-18.131910202093422,-18.404287555254996,-18.52026496361941,-18.152459013275802,-18.703770882915705,-19.330827138852328,-19.19434917299077,-19.590935764368623,-19.37394285853952,-19.0704018548131,-19.341484426986426,-18.851127213798463,-19.326348981820047,-18.857722448650748,-19.773633329197764,-19.10678350692615,-18.39340930664912,-18.91501354565844,-18.443700570147485,-18.683617701753974,-19.60331071447581,-19.99718362186104,-20.648525179363787,-21.63368762191385,-21.00283094542101,-20.218525408301502,-20.713216398842633,-21.710116098169237,-21.661240461282432,-21.96403950592503,-22.183223938103765,-22.373517218977213,-22.708560805767775,-23.643718703184277,-23.06223950861022,-23.9295083261095,-24.055457124020904,-24.750176697969437,-25.658784484490752,-25.227356307208538,-24.303992429282516,-24.17225766275078,-25.05635093199089,-24.314230169635266,-23.819172881543636,-24.33616985147819,-23.74808647390455,-23.77457061316818,-23.27749895490706,-22.695403141900897,-22.79227722901851,-22.49727287981659,-22.52225528843701,-22.04792413674295,-22.4920994034037,-22.61530310101807,-22.147150741890073,-22.99497615545988,-23.462077548727393,-22.947049281559885,-22.031494517810643,-22.640042101033032,-23.221097195055336,-22.372172880917788,-23.233305874746293,-22.906772585585713,-23.71925933798775,-24.506600882392377,-24.54423027439043,-24.040998318698257,-24.242328320629895,-23.925969659350812,-24.77390014193952,-24.83546607848257,-24.770000929012895,-24.287527269218117,-24.730048610828817,-24.96419059485197,-25.880386588163674,-25.664119908120483,-26.492481145076454,-25.736643207725137,-26.551149530801922,-27.264373286627233,-28.11711358744651,-27.278163821902126,-27.8873360613361,-26.917162038385868,-26.3243726096116,-25.877088562119752,-25.987381773535162,-25.627752548549324,-25.677753556519747,-25.033977643586695,-25.168295237235725,-24.85832969704643,-24.418633331079036,-23.77198304142803,-23.289677247870713,-23.757652493193746,-24.506510109640658,-24.08472754387185,-24.256935842800885,-24.229836102109402,-23.67615109682083,-23.23637020541355,-23.932080089580268,-23.616749258246273,-23.325027814600617,-22.538018063176423,-23.31602557376027,-23.13040414219722,-23.24684741673991,-22.975105572957546,-22.04701681062579,-22.138510859105736,-23.081125473603606,-22.102649385575205,-21.387387932743877,-22.3606044431217,-22.974257684778422,-23.497709390241653,-24.210630211047828,-24.02831886569038,-24.572866992093623,-25.25047121103853,-25.971987057011575,-26.431077648419887,-25.592232411261648,-25.949430502951145,-26.506251408718526,-25.664071862585843,-25.01621202658862,-25.89966158522293,-26.78183244448155,-26.400318015366793,-25.402921291068196,-25.563794398214668,-25.569713772740215,-24.6903214501217,-23.797908620443195,-23.304900001268834,-24.24787584785372,-24.111381526105106,-24.995426552835852,-24.3146053487435,-25.074740323238075,-25.79172601690516,-25.924109490122646,-25.587702626828104,-26.38525392767042,-27.17318313336,-27.077168311923742,-27.700261945836246,-27.0811280538328,-27.500498201698065,-27.030963560566306,-27.378990824334323,-27.18576852278784,-27.69681505439803,-28.23721906216815,-28.44134805444628,-28.476807820610702,-27.542902163229883,-28.116774973459542,-27.16626340523362,-26.49871720559895,-26.102585812099278,-25.793870522174984,-26.473554778378457,-25.852448319550604,-26.237146879080683,-26.761065484955907,-26.52081297757104,-25.58828554628417,-26.31277176551521,-26.548422970809042,-27.399978443514556,-27.42855429276824,-28.284098168835044,-28.9462319961749,-28.52006715303287,-28.10768477851525,-28.587632576469332,-28.778194279875606,-27.815176057163626,-28.552804213482887,-28.539459271356463,-29.15825114445761,-29.172760276589543,-29.264043806586415,-29.267233243677765,-28.379378529731184,-29.290142479352653,-30.215848818887025,-30.40838766237721,-30.96765970857814,-30.387921089772135,-30.467434451915324,-30.627943832427263,-30.36656550364569,-29.610816872678697,-30.352050018962473,-30.663161634467542,-29.84062874922529,-29.810153860598803,-30.378862345125526,-30.41522977501154,-30.300754252355546,-29.56378241162747,-29.44609720725566,-28.92386324610561,-28.272158184554428,-28.86065024137497,-28.433977524284273,-27.936567877884954,-27.910267606843263,-28.072298015467823,-28.820420336909592,-29.46013407316059,-29.350085493642837,-28.575221192557365,-28.250610972288996,-28.12343677179888,-28.598202363587916,-29.230500023346394,-28.848280559293926,-29.651688394136727,-30.52605300117284,-30.637235019821674,-30.726448928005993,-31.32417689356953,-31.10673057474196,-30.610472784843296,-30.14979604072869,-29.437133975327015,-28.57940793596208,-28.310443078633398,-27.917677281890064,-27.946752130053937,-27.866800246294588,-27.16892564482987,-27.77106799930334,-27.508505245205015,-27.78703487943858,-28.073448961135,-28.990815381519496,-29.13033543014899,-28.951337828300893,-29.19049240509048,-29.976326221600175,-29.514767391607165,-28.914411125704646,-27.945068780332804,-27.800663356203586,-28.78052854258567,-29.109521621838212,-29.294065589550883,-29.361778639722615,-29.671953833196312,-29.994938029907644,-30.546326050069183,-31.30477182287723,-31.85681638913229,-31.872675579041243,-31.504344972781837,-31.039369645528495,-31.757773288991302,-32.47991449106485,-32.97729857126251,-33.80032081529498,-33.93315108027309,-33.18457608995959,-33.82813203101978,-33.70920617505908,-32.75883033173159,-33.16287040570751,-32.69780461350456,-32.235104265622795,-32.239321200642735,-32.174912550486624,-31.192293416243047,-31.562495473772287,-31.62057907320559,-31.73509951448068,-31.8046569339931,-32.113252844661474,-31.201219617854804,-30.90787086309865,-30.92276960797608,-31.725928414147347,-31.878188190050423,-31.51894616847858,-31.41777907544747,-32.03536967234686,-32.27661692444235,-32.96341193001717,-33.41532283695415,-33.56417421763763,-33.691784739494324,-33.33366298349574,-32.48224799707532,-31.953365582041442,-32.08613550802693,-31.687287671491504,-30.817206047475338,-31.518410434946418,-32.40219567716122,-32.92398717207834,-32.53821732988581,-33.53778329817578,-32.87054160423577,-32.02669772366062,-32.88918526377529,-33.548073772806674,-33.008189040701836,-32.54630724247545,-32.657867500092834,-31.99419059883803,-31.100085394456983,-30.52561465324834,-30.565985477529466,-30.264561062213033,-30.348916025832295,-30.76574547123164,-30.29798840545118,-29.724663227796555,-30.222711719106883,-30.727871384937316,-30.853260001167655,-31.74285296117887,-31.418637449853122,-31.384248565416783,-30.65580165758729,-30.90200759517029,-30.371368998195976,-30.37566593522206,-29.797154824715108,-30.626394976396114,-30.439818018581718,-31.079880357254297,-30.214854976627976,-30.451191360130906,-31.330825971905142,-31.04959737462923,-30.349378937855363,-29.34951451839879,-30.10162971680984,-29.76917440071702,-28.83164356695488,-29.031252695713192,-29.436111556831747,-29.818337587174028,-29.207773201633245,-28.660259298048913,-28.271638724021614,-27.96438478352502,-28.78802303923294,-28.75748711731285,-28.845333056058735,-29.810226283967495,-29.191895068157464,-29.754612889140844,-29.270705547649413,-28.956006412394345,-28.513673561625183,-29.10487362323329,-28.306352988816798,-27.577181567437947,-26.624003336764872,-26.656094582751393,-26.275615120772272,-25.286534631159157,-24.526003283448517,-25.33479309687391,-25.26662226812914,-24.408247720915824,-25.31848265370354,-24.797093611210585,-25.361890573054552,-24.526175339706242,-25.16913382243365,-24.44027395825833,-23.666640523821115,-24.260549530852586,-25.176513738930225,-24.228329937439412,-24.046551764477044,-23.701243553310633,-23.676449892111123,-23.832015213556588,-22.951238121837378,-23.308983091264963,-22.476635986939073,-23.47167162410915,-22.97571724327281,-22.518189372494817,-21.52511111041531,-20.70442550163716,-20.567604317795485,-19.738889855332673,-20.124686853494495,-21.04980885889381,-21.449492674786597,-20.65195877943188,-20.024924816098064,-20.967393742408603,-20.561540683731437,-20.03078776691109,-19.641784343868494,-19.219030557665974,-20.03449494810775,-20.40391373448074,-20.653856060002,-21.060559136793017,-20.159873716533184,-20.012556705623865,-19.52733305329457,-19.885433012153953,-18.995844084769487,-18.584143962245435,-18.95047825947404,-19.775896252132952,-18.833179163280874,-18.021086242515594,-17.82418734114617,-18.54481807583943,-19.3787526730448,-18.906928488984704,-18.311953361611813,-17.97437707800418,-17.081749584060162,-16.191767491400242,-17.15327389817685,-17.884065796621144,-17.160899890121073,-17.724998383317143,-17.69305272726342,-18.50014166207984,-19.37915121903643,-18.725186361465603,-19.650814070366323,-19.0543649578467,-19.546570168808103,-20.47606502752751,-20.86178891407326,-20.00706722214818,-19.60084769828245,-18.731798962224275,-19.488239511381835,-18.71362229762599,-18.302272122353315,-18.693086915649474,-17.719019814860076,-17.860018814448267,-18.043288209475577,-17.543976550921798,-17.99404305499047,-18.78586328215897,-18.900972987059504,-19.510044912807643,-19.672047597821802,-20.420788432937115,-19.54843957396224,-19.291893916670233,-18.333566576708108,-18.55955544207245,-17.68492871057242,-16.848367833532393,-16.23032670794055,-16.87132079526782,-16.548232653178275,-16.436862577218562,-17.048796609044075,-17.47783982101828,-17.6370118544437,-17.928845503833145,-18.28152484446764,-17.60624620737508,-16.973497644532472,-16.6994287786074,-17.237324804533273,-18.140427365899086,-18.75333471922204,-18.08419622760266,-18.660161355510354,-19.18623315077275,-19.292512758634984,-18.660042775794864,-17.66195895941928,-16.819395454134792,-16.034238014370203,-16.83741015335545,-16.999025667086244,-16.649053895380348,-15.655996904708445,-16.53873102320358,-16.889346092473716,-16.96648184908554,-16.317559086717665,-17.104045565705746,-16.932831232436,-16.473389721941203,-16.073110239580274,-15.564078512601554,-14.943259859923273,-14.184806267730892,-14.859620618168265,-15.352058871649206,-16.33175679575652,-16.861851202789694,-15.978849824052304,-16.6670962003991,-16.216582676395774,-15.290506542660296,-15.898949003312737,-15.728044751565903,-15.657916214782745,-16.33949972363189,-16.02857080195099,-16.91626598406583,-17.143089657183737,-17.868496749084443,-17.402223920449615,-18.27062637358904,-17.89023129735142,-17.745926270261407,-17.226757328491658,-16.716822209767997,-16.304861622862518,-15.34383839322254,-15.336875541135669,-14.82276927260682,-15.318649709690362,-15.841738725546747,-16.415845782496035,-17.109534045681357,-18.065841980278492,-18.46832688525319,-18.62953924573958,-17.705274443607777,-16.886360091157258,-17.504057268612087,-18.32944324472919,-17.432360217906535,-17.12316901003942,-17.559098853264004,-17.418717640917748,-18.22195027489215,-18.37244413048029,-18.468190338928252,-18.91246227454394,-18.059682715218514,-17.571143354754895,-17.061538645997643,-16.099670244846493,-15.762728434056044,-15.888744771014899,-15.221252203453332,-14.972748630214483,-15.136077322997153,-15.238843127619475,-15.854058082215488,-16.20451592374593,-16.284337704535574,-15.562900150660425,-15.407997014001012,-14.523586398921907,-13.814394861925393,-13.438349551986903,-14.43116041040048,-14.84583588782698,-14.894027315080166,-15.002643555402756,-15.028188360389322,-15.675793529022485,-15.131132492795587,-14.972389203961939,-14.288980881683528,-15.023899886291474,-14.224500663112849,-14.215020224452019,-13.669127145316452,-13.749721025116742,-13.224366845563054,-13.599555843044072,-14.302542422432452,-14.837322116829455,-15.670312427915633,-15.182917608879507,-15.282603184692562,-15.584484819322824,-15.642305782996118,-16.154112218413502,-17.0696843219921,-17.166508377995342,-16.18960835179314,-16.382824376691133,-16.080718033015728,-15.591729235369712,-15.358261795248836,-15.599418806377798,-15.536980463657528,-16.469166796654463,-15.970384574029595,-16.695753562729806,-16.44666915014386,-16.956570921465755,-16.10234791226685,-15.564541676081717,-14.939627511426806,-15.472924588248134,-16.10222462937236,-16.019493093714118,-16.105446017347276,-16.954226312227547,-17.953981125727296,-18.398459258954972,-19.157750725746155,-18.46111544407904,-18.89127975795418,-18.41629250207916,-18.08899282850325,-18.221972525585443,-18.854460625443608,-19.48038414074108,-19.541468752082437,-18.79346963018179,-18.40784304495901,-17.74791461462155,-17.980186221655458,-17.843328446149826,-17.446302919648588,-16.995886106509715,-17.78671405557543,-17.935514751821756,-17.152582220733166,-16.791771712247282,-15.864362520165741,-16.627975571434945,-17.10383891966194,-18.063395810779184,-17.402743430342525,-16.87436112202704,-17.763581946026534,-16.838730458170176,-17.334149362519383,-16.872195362113416,-17.50947345700115,-18.251957986038178,-17.381713788956404,-18.27966669294983,-18.306467048358172,-17.444787270389497,-16.71234498685226,-17.320916920900345,-16.537704387214035,-15.558077126275748,-16.44020156096667,-16.99546621274203,-16.692588618490845,-17.66581348143518,-18.083283707499504,-17.915875024162233,-17.907036744523793,-17.413071740884334,-17.80104734469205,-17.36938592698425,-17.27282481174916,-16.740920464508235,-16.66182911489159,-16.058681967668235,-16.430691280402243,-16.464780357666314,-16.84434541594237,-17.79845046903938,-18.43439269764349,-18.90847683744505,-18.251440338324755,-17.936027021612972,-18.613112515304238,-18.022065034136176,-18.127916312310845,-18.94787208084017,-19.67834832239896,-20.617526622023433,-20.325284515041858,-19.801166533492506,-19.954660872928798,-20.689991586841643,-21.014471348840743,-20.554257553536445,-21.41826411569491,-21.99599213572219,-22.920919226948172,-22.81953232269734,-22.013440114445984,-22.19052321324125,-22.711531091481447,-22.611771172378212,-23.559758606366813,-23.729667943436652,-23.53098980151117,-24.072978606447577,-23.11197880236432,-22.641987890470773,-21.94885354489088,-22.732413722667843,-23.24595303973183,-22.611509585287422,-22.29235263960436,-22.955989157781005,-22.640883916057646,-22.503749643452466,-22.25910897832364,-22.517672704532743,-22.440005157142878,-22.556968417949975,-22.413705963175744,-22.18393156817183,-22.388032641727477,-22.81842892849818,-22.28242287179455,-22.152625306975096,-22.836173864547163,-22.041639558970928,-22.8499725041911,-22.109645850025117,-23.02512250514701,-23.114683009218425,-22.60426912177354,-22.90452591655776,-22.30140458466485,-23.135768407024443,-22.88261944288388,-23.67895517218858,-23.066427819430828,-22.249397551640868,-22.117727920413017,-22.557935764547437,-23.34071365231648,-22.560307004489005,-23.44494578568265,-23.454635130707175,-23.54974737809971,-23.403736188076437,-22.57959499116987,-23.31070234347135,-22.537697272840887,-22.36166358133778,-21.688178235664964,-21.972257272340357,-22.874855859205127,-23.049815263599157,-22.987951880320907,-22.119305341504514,-22.545096187852323,-22.325256424956024,-21.712393644731492,-21.53121144231409,-21.403297902084887,-22.11984485341236,-21.138849904295057,-21.86746924230829,-22.721823795698583,-22.79623398790136,-22.930588581599295,-23.67676711268723,-23.23692597169429,-22.363753795158118,-22.686955909244716,-22.625950039364398,-23.21077160537243,-22.21317982720211,-21.518298871349543,-21.83479517651722,-21.256939947605133,-20.29279283573851,-20.54212928423658,-21.112572147976607,-21.447257144842297,-21.984144368208945,-22.724169156048447,-22.145409990102053,-21.677155456971377,-21.555144072510302,-21.247345148585737,-20.90655467286706,-20.497869627084583,-21.036895527504385,-20.066231465898454,-19.919526369310915,-20.876465475186706,-20.39787612715736,-20.586815080139786,-21.36075981054455,-20.59563864953816,-20.35277983965352,-20.770640801638365,-19.929209377150983,-18.97924269363284,-19.521199450828135,-18.91647848021239,-18.186072810087353,-17.873357428703457,-17.599908648524433,-17.37352262204513,-17.89358032029122,-17.63426429638639,-16.756572859361768,-16.459807532839477,-17.433766380883753,-16.468160391319543,-16.292441598139703,-15.779389345552772,-16.031598917674273,-16.593219429720193,-17.529296761844307,-18.296491666696966,-19.068370029795915,-19.13130509154871,-19.97057341504842,-20.318208493757993,-19.73073209123686,-20.34706963924691,-19.746828951872885,-20.349108088761568,-21.021713476162404,-21.507965568918735,-22.375283590517938,-23.150300660636276,-22.609365708194673,-21.97401785152033,-21.277194118127227,-21.632980450987816,-21.49895003857091,-22.173333089333028,-21.954709746409208,-22.610698852222413,-22.177481067366898,-21.743422659579664,-22.372327849268913,-21.559968971647322,-21.575025333557278,-21.140767321456224,-20.747376692015678,-20.236544128973037,-20.27678529685363,-20.989230164326727,-20.072768117766827,-20.78994326107204,-20.901254437398165,-20.10575308278203,-20.527433237992227,-21.202844619750977,-20.93484404636547,-21.51445192284882,-21.477827539667487,-21.90599666396156,-22.093956005759537,-22.468594973906875,-21.973136451095343,-22.80947369383648,-22.329844877589494,-23.203806644305587,-22.874752978794277,-22.34830409474671,-22.84525798819959,-22.94040152663365,-23.057987803593278,-24.035442031919956,-23.061824960634112,-22.498238421510905,-21.855583250056952,-22.392911514267325,-21.937714075203985,-22.90063930535689,-21.92965499870479,-21.41359391901642,-21.852494315244257,-21.355421057902277,-22.159009493887424,-22.392607357352972,-21.502741707954556,-22.301512967795134,-22.06194493873045,-21.573823798447847,-22.108039588667452,-22.61869445256889,-21.91235677478835,-22.86633745767176,-23.625376576557755,-24.1894454350695,-24.153835070319474,-23.34087218903005,-23.234333151951432,-23.44820930296555,-22.79419745085761,-23.227553967386484,-23.96095917839557,-23.225165413692594,-22.860125390347093,-23.41459613852203,-23.110513982363045,-23.100283032748848,-22.750858881045133,-22.67756429547444,-23.39129972225055,-23.116567416582257,-23.01602706173435,-22.79787012981251,-22.83467285661027,-22.43953180126846,-23.228431939147413,-22.69762404821813,-23.644086027052253,-24.637198081240058,-24.0229466939345,-23.598099163733423,-23.582348765805364,-23.04560674401,-22.51708892174065,-22.35289156064391,-22.324608135037124,-23.012093271128833,-22.69023233279586,-23.177598952315748,-22.581533663440496,-23.5080060265027,-22.7527571413666,-23.654611279256642,-23.61625719908625,-23.24208968086168,-22.576640786137432,-21.751744674053043,-22.73087531235069,-23.5997189222835,-23.81819358887151,-24.80078142415732,-23.809593180194497,-22.82652300223708,-22.776076989714056,-22.64601553743705,-22.219437141437083,-21.747630684170872,-22.727125885896385,-22.061991175170988,-21.435265057720244,-20.536422074306756,-20.94129033945501,-20.7018202515319,-21.62866897927597,-20.63166722189635,-20.524402207694948,-21.087313674855977,-21.004296818282455,-21.913110082503408,-22.495452255010605,-22.463741478975862,-22.096353456377983,-21.141599400434643,-20.19133737264201,-21.041339848656207,-20.834215032402426,-20.977907998021692,-20.346152558922768,-20.75034414464608,-20.490185750182718,-20.43341096956283,-20.966910199262202,-21.24108089786023,-21.445363180711865,-21.27521641878411,-21.106541035696864,-20.45951444702223,-20.625453183427453,-20.75838877260685,-20.348944085650146,-19.67928060889244,-19.686334966681898,-19.479560368694365,-19.626351723913103,-19.58173227775842,-19.58829258941114,-19.839524197857827,-19.12313063722104,-18.48877169098705,-17.523638375103474,-17.447045703418553,-17.63605154165998,-17.39698090776801,-17.64662593230605,-18.48889622138813,-18.717066200450063,-19.277637398336083,-19.606746419798583,-19.331577428616583,-19.196918294299394,-20.104978434741497,-19.406963649671525,-18.74339052569121,-18.92870808346197,-19.694006646052003,-20.25579858198762,-19.3139435662888,-18.732218654826283,-18.701736041344702,-19.323170926887542,-19.49353438662365,-20.251653644256294,-20.123259003274143,-19.637502232566476,-19.614902191329747,-19.02901453943923,-19.957426013890654,-20.763375079259276,-19.790689256507903,-19.06364311510697,-18.39919629925862,-17.910466230940074,-18.27254523988813,-17.693837623577565,-18.459536883980036,-18.406088636722416,-18.794724429491907,-19.20115319499746,-18.626017884351313,-17.657347184140235,-18.187607157044113,-17.212319050449878,-16.96601880248636,-16.632554036099464,-16.01896109059453,-16.632127719465643,-15.982734508812428,-15.183701533824205,-14.732659704983234,-14.361860464327037,-13.530944607686251,-14.246557455975562,-14.562496275641024,-14.996308825910091,-14.907316421624273,-14.208832376170903,-14.36542786564678,-13.81617807596922,-14.534288544207811,-13.64606512710452,-12.824959693476558,-12.704292122740299,-12.209800423122942,-12.78766477201134,-13.540907063987106,-13.669023397844285,-13.723277962300926,-13.681011942680925,-13.735735232010484,-13.504486580844969,-13.938696717843413,-14.35741995787248,-14.214331423863769,-13.901981855742633,-14.222588216420263,-15.111868103034794,-16.04314732318744,-16.23344626184553,-15.292319949250668,-15.640197386499494,-14.943657004274428,-14.81994210369885,-15.004667067434639,-15.417626078240573,-14.51476547634229,-15.357274210080504,-15.936421476770192,-16.052018366754055,-17.00897427741438,-16.029843744821846,-16.77023985190317,-17.61688038893044,-17.749994018580765,-18.722148458473384,-19.158954374026507,-19.23264226829633,-19.61442864406854,-18.76215480035171,-19.010747274849564,-18.42581300297752,-19.366910696495324,-20.01019497960806,-20.90023347362876,-20.645584920421243,-20.031692682765424,-19.036992269568145,-19.643334567546844,-19.120926791336387,-19.00618476746604,-19.607650482095778,-19.8952732863836,-20.365075261797756,-19.687991729937494,-19.6671219849959,-20.138357805553824,-20.191636849194765,-19.415495951659977,-18.64911729749292,-18.85904372110963,-19.421984819229692,-19.718485170509666,-20.33462298195809,-19.48076435830444,-20.229877495672554,-20.750653185416013,-20.461331114638597,-20.55532597983256,-20.00580283626914,-20.768104871734977,-19.850429059471935,-19.653732053004205,-19.18325235368684,-18.868758864700794,-19.081569128204137,-18.703884773422033,-18.34578573703766,-18.522083713207394,-17.910080724861473,-18.343241064809263,-18.057405330706388,-17.70052056759596,-17.514867236837745,-17.54907803889364,-18.12575129745528,-17.932076812256128,-17.691401258111,-17.386418219655752,-17.241261660587043,-16.73969215899706,-17.187274012714624,-17.32137644570321,-17.275389176793396,-18.038870768155903,-18.313279195688665,-18.378355724271387,-18.85153297474608,-19.580653217155486,-19.7762399520725,-18.792004271876067,-18.915964006911963,-18.090069014113396,-17.119636245071888,-17.030143619980663,-16.208728183060884,-17.09048277931288,-16.95425512222573,-17.620597447268665,-18.256962531711906,-17.316141828428954,-17.91544324811548,-17.491095438133925,-18.410943450406194,-17.78301618853584,-17.21284006210044,-16.260995328892022,-15.412166968919337,-14.508353846147656,-14.740668896585703,-14.246211184188724,-15.211303829681128,-15.16654477873817,-15.090686722658575,-15.032394216861576,-14.853584246244282,-14.554688430391252,-14.304188973736018,-13.535307485144585,-14.377309610601515,-14.32151063438505,-14.028105111792684,-14.50656590750441,-15.074497445020825,-14.671076041646302,-15.307649689726532,-15.1992082670331,-15.330652554053813,-15.885768835432827,-15.429285290651023,-15.10538313118741,-15.445259704720229,-15.65617403248325,-15.920331193134189,-16.090092818718404,-16.00516287377104,-15.200132712256163,-14.821837994270027,-14.154906349722296,-14.582420671824366,-14.067007797770202,-13.252504952717572,-12.846716514322907,-13.789203256368637,-13.161914509255439,-12.576858877204359,-12.31084457365796,-13.142034103162587,-13.685434261336923,-13.102379909250885,-13.252940664533526,-14.1861079656519,-13.776954305823892,-13.05553751764819,-13.459432492032647,-14.347127434331924,-14.724960182793438,-14.855461159721017,-14.19155636522919,-15.18909205449745,-14.780207796487957,-15.761279074009508,-16.412542345933616,-15.631052009295672,-15.31897287722677,-15.857585659250617,-14.977347164414823,-14.037671512458473,-14.778181148692966,-14.69731847755611,-14.012639871798456,-13.285106616094708,-12.914869762025774,-12.807944865431637,-13.384799927007407,-12.634108954574913,-13.26354978280142,-12.299806804396212,-12.54489739658311,-11.849237871356308,-12.526405146345496,-11.634287923574448,-12.298219167627394,-12.240100088529289,-12.685955124441534,-12.535452771000564,-13.131917277816683,-12.29764515394345,-13.129967951681465,-12.216297133360058,-13.180380676873028,-13.295131744351238,-12.449461817741394,-12.763538614846766,-11.872064160183072,-12.312095297500491,-12.918328092433512,-11.96650386787951,-11.070976140908897,-10.304294655099511,-10.89258064655587,-10.696713415905833,-11.222437956836075,-10.917188537772745,-11.315499576274306,-11.43415400898084,-11.648348135408014,-11.492124516516924,-10.908934365026653,-11.285403024870902,-11.634918183088303,-11.077909533400089,-10.599652173928916,-11.300974097568542,-11.876982199959457,-11.427508706226945,-11.103342389687896,-10.38970805099234,-11.115236272569746,-10.996746555902064,-10.867463457863778,-10.332618450280279,-10.191824494861066,-10.12384171737358,-10.023758107796311,-9.521039637736976,-8.959538971539587,-9.498799110762775,-9.913058524951339,-10.671830062754452,-10.424671177286655,-10.524273106828332,-11.452156232204288,-11.892708274535835,-11.045118722133338,-12.035561613272876,-12.583938069175929,-13.191274411045015,-14.124710440635681,-14.094420477747917,-13.189183853100985,-13.761898077093065,-13.950026466045529,-13.689095629844815,-13.864183151628822,-13.547824094071984,-14.377315978519619,-15.203221212606877,-14.977415884844959,-15.503529599867761,-15.180269815027714,-15.76583936670795,-15.665447381325066,-15.702962071634829,-16.608427732717246,-17.21041905786842,-16.424269752576947,-17.23927499866113,-16.24985865317285,-15.304034696891904,-14.611227495595813,-15.040520844981074,-14.290432661771774,-13.612426714971662,-13.68751529417932,-13.91246242634952,-13.065608273260295,-12.0956877800636,-11.612535608466715,-10.84012990212068,-10.07678571017459,-10.856351559516042,-10.689318120479584,-10.644515694119036,-10.809726128354669,-11.7768261753954,-11.12148401280865,-10.482749402988702,-10.54405100690201,-10.72494342783466,-10.413278107065707,-9.635535822249949,-9.5682643041946,-9.577312427572906,-10.277984475251287,-10.937408049125224,-10.706465682014823,-10.018708864226937,-10.755132835358381,-10.425433614756912,-10.32594043854624,-10.26231167698279,-10.094537251163274,-11.025886147748679,-11.966671963222325,-12.300972803961486,-11.86448863754049,-11.898658672813326,-11.231486522126943,-10.935972203034908,-11.930151511915028,-12.650295128580183,-13.288685130886734,-12.81770001258701,-13.589117532595992,-14.054252498783171,-14.777712682262063,-13.952375842258334,-14.661223163362592,-15.211923779919744,-15.774095229804516,-16.038911449257284,-16.440557341091335,-16.773521882947534,-15.941787871997803,-16.5312213730067,-16.316448141355067,-15.487716421484947,-16.093140331096947,-17.073393979575485,-17.56398322666064,-17.043846413027495,-16.525687750428915,-16.913743937853724,-16.9157085721381,-17.182154352311045,-17.738847645465285,-17.11230657203123,-16.548628739081323,-17.208413965068758,-17.443820805754513,-18.085273363161832,-18.943328868132085,-19.09018753748387,-19.05474893329665,-19.05062439944595,-18.10841511702165,-18.026672690641135,-17.34223472652957,-17.439939606003463,-17.32219032011926,-16.827201812528074,-17.39202381344512,-18.38174236146733,-18.945516214240342,-18.31428413745016,-18.65829620230943,-17.722852347418666,-16.85942791821435,-16.26041603134945,-16.748628767672926,-17.573701607529074,-17.722815044689924,-17.475203776732087,-16.922472872771323,-16.25139111839235,-15.748787161428481,-16.549400220625103,-16.633614451158792,-17.27395258517936,-17.537097656633705,-17.22902954276651,-17.0269130715169,-17.64364682743326,-18.381519371178,-18.386157920584083,-18.712214488070458,-18.333536793012172,-18.433269604109228,-17.926134383305907,-17.243515875656158,-18.071878434624523,-17.27657232619822,-16.767629344481975,-17.407453157939017,-17.820169038604945,-17.74578286567703,-18.219739235937595,-18.95707489317283,-18.87998533528298,-18.80244890972972,-18.172839513979852,-18.458445738535374,-18.607135649304837,-18.441680679563433,-18.28346139797941,-18.960743489209563,-18.93700096104294,-19.735114686656743,-19.76514171110466,-20.699463065247983,-21.27081155637279,-21.150637175422162,-21.164989455603063,-20.786458196118474,-19.792069313582033,-19.89659939846024,-19.214005703106523,-18.393028725404292,-17.39740727469325,-17.1503417477943,-17.949085637927055,-18.249555697198957,-18.322554469574243,-17.72437591291964,-17.553895666263998,-18.539975726045668,-19.06007849611342,-18.1981601966545,-17.605944658629596,-18.559272698592395,-19.347115628421307,-20.04143033362925,-20.770962941925973,-20.841516692191362,-21.731143917888403,-21.45853140251711,-20.47461162460968,-19.674652494955808,-19.865628669969738,-20.185168955475092,-19.293797169346362,-18.936509132385254,-19.337040414568037,-19.298035759478807,-20.15415655216202,-20.59003400010988,-20.852262194268405,-21.78068268066272,-20.99462837493047,-20.624547661747783,-20.221398502588272,-20.905105095356703,-21.17726906342432,-21.015531189274043,-20.354342312086374,-21.058497437741607,-20.766331512480974,-19.778452504891902,-20.054104038048536,-20.74354009795934,-21.028260065242648,-21.464715853799134,-20.612772246822715,-19.885003398172557,-19.883107501082122,-19.540701671503484,-20.15333012258634,-19.744112404063344,-19.630237714853138,-18.941138671245426,-18.882296869065613,-19.735094648320228,-20.110738293733448,-19.912052321247756,-20.33453000476584,-21.035079657565802,-21.640215639024973,-21.662218312732875,-22.271556713618338,-22.59654674027115,-22.555672090966254,-22.330077537335455,-22.226237735245377,-21.628245496656746,-22.046685885638,-21.285863644909114,-21.210987117607147,-21.091347846202552,-21.814586250577122,-22.19743406167254,-21.415694121737033,-21.77701517334208,-21.373252916615456,-21.314179928973317,-20.483693363610655,-19.644290758296847,-19.41993719851598,-18.737532443366945,-18.123043737839907,-17.18595307180658,-16.61184381134808,-17.36272711120546,-16.855825065635145,-16.39517917484045,-17.294728364329785,-17.94587601814419,-16.96424644673243,-17.583368837833405,-17.464644135907292,-17.99589582392946,-17.2457295935601,-17.13233334943652,-16.784282179083675,-16.031412448268384,-15.175499169621617,-15.424621868412942,-16.10925493063405,-17.010105633642524,-16.211617621127516,-17.091731355059892,-16.630777215585113,-17.51648402446881,-17.2026175474748,-17.064247684553266,-16.53083188366145,-17.1512416373007,-18.060461197048426,-18.518234226386994,-18.65829337341711,-18.755956086795777,-19.69592644413933,-18.99371348693967,-19.24800033401698,-19.29794058902189,-19.883595080580562,-20.161598321050406,-19.621717524714768,-20.53622034145519,-20.109199832193553,-20.1803248077631,-19.239247747696936,-19.245128504000604,-18.42126294085756,-17.818326879292727,-17.142431296408176,-16.82435624161735,-16.047133072279394,-15.517850411124527,-15.433529044035822,-14.766970194410533,-14.193550375290215,-15.035294702742249,-15.730149265844375,-16.13807799015194,-16.47243203409016,-15.788835732731968,-15.37487357109785,-14.399444062728435,-14.52806491497904,-13.971888048108667,-14.543179197702557,-14.070290528703481,-13.613503939006478,-13.83970009163022,-12.900592165533453,-13.480435569770634,-13.585920716170222,-13.381390684749931,-13.883651739452034,-12.925896410830319,-12.017620392143726,-12.4610705957748,-12.788423431571573,-13.27476213593036,-13.3950215857476,-14.150170211214572,-13.883729104883969,-13.845074038021266,-14.617858176585287,-14.507840378209949,-13.558745089452714,-13.912839359138161,-14.761559241916984,-14.222874886356294,-13.30110288131982,-14.112367431633174,-14.112462500110269,-15.081071817781776,-15.33632727432996,-15.965196026023477,-16.5848416602239,-15.67772772256285,-16.271116627380252,-15.797979780472815,-15.945201931986958,-16.82611816516146,-15.95886256499216,-15.91285192547366,-16.005895455367863,-16.806656795553863,-15.816335467621684,-15.802120173349977,-16.673031464219093,-15.96113173943013,-16.129585257731378,-15.269854535814375,-14.331356320995837,-13.57587495725602,-13.046140726655722,-12.91354493284598,-13.174459096975625,-13.05455132201314,-13.342675714753568,-13.674551784992218,-12.879616721067578,-12.524559082463384,-12.814410739578307,-11.937228456605226,-11.094157027546316,-11.924844236113131,-12.800684093497694,-12.39454588200897,-11.49548238888383,-12.296036027371883,-11.382818176876754,-11.360618489794433,-10.741783582605422,-9.784669936168939,-9.363534722477198,-10.073323106393218,-9.815978585276753,-10.51382204843685,-10.262724320869893,-9.475879174657166,-8.689743975643069,-8.354752188548446,-7.459129896014929,-8.027215499896556,-8.479913037270308,-8.500323284883052,-8.6882130689919,-8.873074292205274,-7.976818158756942,-7.347490815445781,-7.3481934000737965,-7.776196145452559,-7.781997011043131,-7.240247542504221,-8.18504399759695,-8.731745211407542,-7.8412998197600245,-6.856596413999796,-6.486357823479921,-6.366081071551889,-6.121123683638871,-6.233689504675567,-5.900945487897843,-5.8251241580583155,-6.2241356815211475,-6.958946764934808,-7.3289452330209315,-7.8431604309007525,-8.749960323795676,-7.8940323744900525,-7.009732442907989,-6.995599174872041,-7.828832656145096,-7.290124617982656,-7.048971799202263,-6.0669266721233726,-5.379033914301544,-4.7790060131810606,-4.855796734336764,-4.373998156283051,-3.3970357263460755,-2.6444862172938883,-1.8229816518723965,-1.901255940552801,-2.7535161790437996,-3.278766189701855,-3.4941174960695207,-2.518582100979984,-2.9179209186695516,-3.4092498114332557,-3.5370869827456772,-3.205043385270983,-4.194239883217961,-3.6895287465304136,-2.83448613807559,-2.645564168691635,-2.9302692469209433,-2.7449869425036013,-2.106670384760946,-1.395065219141543,-1.1964571331627667,-1.8823534273542464,-1.1345587763935328,-2.0224918755702674,-1.2077764836139977,-1.132668981794268,-0.8343469779938459,-0.8867877465672791,-1.149846684653312,-2.076659389771521,-1.715229851193726,-1.0811812658794224,-1.3335020137019455,-0.6371263978071511,-1.5025344472378492,-0.8226728145964444,-1.3857104354538023,-2.252925131469965,-3.0699682449921966,-3.459971581120044,-2.680210079997778,-2.499458356294781,-2.8983967816457152,-3.837742571718991,-3.5165396463125944,-2.753792784642428,-3.395729550626129,-3.720156626775861,-4.148400579113513,-4.2760622766800225,-3.995394011028111,-4.678732804954052,-3.9739668872207403,-3.2420043437741697,-4.062293959315866,-4.519542411901057,-3.9652496837079525,-4.876795268151909,-4.54541519889608,-4.525083641055971,-5.152808685321361,-4.450208198744804,-3.897853659465909,-4.4285888355225325,-3.800248094368726,-2.915955530013889,-2.450278093572706,-1.616311448160559,-2.0594056299887598,-2.633107831235975,-3.46442005969584,-3.4676164272241294,-3.9510475704446435,-2.9998192144557834,-3.6453178841620684,-3.2311956672929227,-2.4691680795513093,-2.1943985456600785,-2.1728486139327288,-2.744089324492961,-2.3754174490459263,-2.5713656437583268,-1.9222136330790818,-1.0979725299403071,-0.6017459752038121,0.23733557341620326,0.5055889748036861,-0.4573630467057228,-0.33700543735176325,-0.5935268411412835,-0.557193772867322,-1.2845755191519856,-1.5902867540717125,-2.0814827578142285,-2.119011257775128,-2.2405325141735375,-2.6471371855586767,-1.8147397306747735,-2.4363597254268825,-1.5245897844433784,-1.4665918997488916,-1.0443184864707291,-1.951608627103269,-2.033308225683868,-1.337547215167433,-1.9846591535024345,-1.348553198389709,-2.3366946363821626,-3.123484426178038,-2.982380470726639,-2.777783202007413,-3.0801687533967197,-2.6194993392564356,-2.11625415366143,-3.03795411484316,-3.325329671613872,-3.1737129581160843,-2.320972324348986,-2.789449380710721,-2.1296679908409715,-1.2017371584661305,-0.5507941693067551,-0.6184563753195107,-0.8721684808842838,-1.7385457791388035,-0.9237000346183777,-0.8043209556490183,0.043513834942132235,-0.9275038135237992,-1.175857478287071,-0.855237394105643,-0.912588011007756,-1.1344760595820844,-0.3331519979983568,-0.5913977194577456,-0.35773156955838203,-1.1640410986728966,-1.7235414404422045,-1.0117150912992656,-1.4271867675706744,-1.2121681873686612,-0.4206155948340893,0.218745703343302,-0.6448755129240453,-0.05263033974915743,0.4058472220785916,1.3202656866051257,0.5054292744025588,0.8784722578711808,1.493101050145924,1.914372940082103,2.3470924175344408,3.305679673794657,3.4575455016456544,3.638734874781221,3.9822953827679157,3.887457305099815,3.0044108303263783,3.8366242456249893,4.554360252805054,4.546283186879009,5.297473544254899,5.088407970033586,4.703713298775256,5.49476776458323,5.647498278878629,6.565802320372313,7.1475216168910265,8.039222254883498,7.647687635850161,7.473725372925401,7.897113431245089,7.621206700336188,7.57344918185845,7.042963131330907,7.848052377812564,7.834345593582839,7.160626531112939,6.5260744583792984,5.859087499789894,6.47902275621891,5.665374885313213,6.123322763014585,6.271921238396317,5.431069738231599,6.275201153475791,5.8824956654571,5.26119234226644,5.437114704865962,6.302944194991142,6.701781518757343,5.768993579782546,6.080517030786723,6.09124692901969,6.353060847148299,6.571645196992904,6.450628141872585,5.641098921652883,6.085989836137742,5.201468446291983,5.286368141882122,5.101607754826546,4.464250572491437,4.780366688966751,5.58526370767504,5.935056413523853,6.276649592444301,6.152090374846011,6.168869250454009,7.107450717128813,8.076626726891845,8.00021322350949,8.819047677796334,8.446165081113577,8.197851224802434,8.748756932560354,9.359688876196742,9.854328360874206,9.483985615428537,9.151936423964798,9.975650034379214,9.87789152842015,9.936521529220045,9.655757744796574,10.553391536232084,10.176646403502673,10.78972901776433,11.69227591296658,11.489190452266484,12.412582661025226,11.884342829696834,11.917043196037412,12.604751342441887,12.573075354099274,11.781615233048797,12.081193968653679,11.507076264824718,10.852153317071497,10.971031767316163,11.431767418049276,11.78437212575227,11.288269456475973,11.257327434141189,10.532673516776413,10.995241237338632,10.446081331465393,10.00893710553646,9.523578809574246,9.947389631997794,10.155241447966546,9.726232889574021,9.176665865350515,8.83891787333414,9.694636777509004,9.136169135104865,9.665524947922677,9.7947705257684,9.699311078991741,9.254578283056617,8.52954537793994,8.01455152919516,8.974153300281614,8.44205331383273,8.464721431490034,7.467966433148831,8.20517823426053,8.519489194266498,8.5801693033427,8.682094309478998,9.19825521018356,9.543967069126666,9.541752229444683,8.620951535180211,8.561707365326583,8.318854437209666,7.671310759149492,7.234595300164074,7.983124007470906,7.9601536630652845,7.205929277464747,6.989011379424483,6.255797488614917,7.016105107497424,7.742009519599378,8.659642106853426,8.295452281367034,8.312181582208723,9.114362349268049,8.874548179097474,9.383486684877425,8.56474539404735,9.556536810472608,8.877502977382392,9.752023636363447,10.479734344407916,10.20992219215259,10.1289915391244,10.794731094967574,11.452225361019373,12.230240751989186,12.697563921101391,13.187084501143545,12.343954436480999,12.391232283320278,12.65452175308019,11.898386171087623,12.865717077627778,13.761252517811954,14.412496365141124,13.665016516111791,13.538775302935392,13.914151068311185,14.30422763619572,13.674376934301108,13.714400430209935,13.423007848206908,13.488198804669082,14.401300798170269,13.641930787358433,14.312355897855014,14.863869182299823,15.079654567409307,14.712759723886847,15.17348891729489,15.732531132176518,15.132933444343507,15.068994251079857,14.111217992380261,13.37216057581827,13.203452544286847,13.82995145674795,13.306857326067984,12.852721915580332,12.220503465272486,12.700225844513625,12.987400714308023,12.876111735589802,13.554763368796557,13.787709222640842,13.439924763515592,13.200892955064774,14.060807117726654,13.33626160537824,14.238682851195335,13.556096312124282,13.686928907874972,14.309148420579731,14.852311395574361,14.486632268410176,13.845267105381936,14.089693018700927,13.512990184593946,14.176784094888717,14.952303560450673,14.036081982776523,13.611722921021283,12.887871072627604,13.338246758561581,12.745463891420513,11.905799432657659,11.435625661164522,10.97041487134993,11.107787827495486,11.477640603668988,12.0254159537144,12.830556419212371,13.283118936233222,12.820586701389402,11.990361840929836,11.714907654095441,12.118038445245475,12.938244489952922,13.782268891576678,14.531163521576673,15.012489303015172,14.883034513797611,14.486448732670397,14.193774748127908,14.83515516994521,15.435613702982664,14.948857467621565,15.07491167448461,15.006420219317079,15.90880972892046,15.311587044969201,15.607347237877548,15.809908453840762,16.183743201196194,15.496975244954228,15.227309081703424,16.05165044358,16.06471825297922,16.30495920497924,15.40776624251157,15.542474911082536,15.344647447112948,14.405186323449016,14.226996056735516,14.85028321808204,15.03149534529075,14.644968264736235,14.362263302318752,13.62681777169928,13.11460231617093,13.942923496477306,13.367719761095941,13.965926935896277,13.96010374603793,14.767227695789188,15.680298637133092,16.46772302687168,15.570103575941175,14.644528411328793,15.219466188922524,15.528117035515606,16.48172876937315,16.730050824116915,16.673224437981844,16.241153199225664,16.218740998301655,16.438297390472144,17.103310425765812,17.537695153150707,17.010100859683007,17.015742923133075,16.426903849933296,17.265153921674937,16.907043910585344,16.45138736255467,17.043610238470137,17.72072630468756,17.667468510568142,17.040826379787177,17.664358912967145,17.081627445761114,17.679683320224285,17.60618707863614,17.326853837817907,17.971768341958523,18.221128495875746,18.312314133159816,17.68489257665351,17.276777014136314,17.237620638217777,16.951705920044333,17.166846483480185,17.4808984445408,17.23361070174724,16.44582946691662,16.23111547064036,15.234052775427699,14.804371873382479,14.642916100565344,14.717743825633079,15.494991664309055,15.237225212622434,14.722594541031867,15.153780348598957,14.442840951029211,14.719993053469807,14.429200534243137,14.952127116266638,15.583387061953545,16.33210303541273,16.88768438482657,16.629656286444515,15.643105858471245,15.755424870643765,15.882769778836519,16.795205888338387,15.920216564554721,15.135631947312504,15.0220135175623,14.654931204859167,15.377050311304629,16.267935959622264,16.523080069571733,17.48078071186319,18.084000186994672,17.848579092416912,18.074767652433366,17.176377297844738,16.68731913017109,17.6461139312014,17.91328816814348,18.140445064753294,18.326343468390405,17.656051471363753,17.515486149583012,16.801284403074533,17.392093303613365,16.96123722754419,16.91397755825892,16.534753299783915,16.183664951473475,16.28721857815981,17.073195163626224,16.56924299802631,16.681345369666815,15.957089994568378,16.178525729104877,16.177695220336318,16.43754615681246,17.089702376164496,17.852080661803484,18.705564267002046,19.1180780059658,18.25941334106028,18.480441036168486,18.945454166270792,19.103272377047688,19.190890966914594,19.30330882128328,18.754214063752443,19.689946428872645,19.2054871362634,18.518849668558687,19.337443329859525,19.132138556800783,19.143363903742284,19.807445775251836,19.736982175614685,19.48086878610775,20.375740731600672,19.988681122194976,20.525527502410114,19.825182618573308,20.67003422556445,21.17653517331928,20.461658616550267,21.38462832896039,21.77800045069307,21.973087562713772,22.894885702058673,22.473356726579368,21.68304050574079,20.736331639345735,20.77528135944158,21.55192758468911,21.95976101141423,21.485316266771406,22.062845126260072,23.012199331074953,22.832063577137887,23.808582982048392,22.883183285593987,23.50425130315125,23.65924479952082,23.91147741768509,23.151976527180523,23.315338330343366,23.337291568983346,24.296047928277403,24.38594522420317,23.535007579717785,24.104034829884768,25.00368799874559,24.996227405034006,24.854460757691413,24.729498708155006,24.544706924818456,25.301366228144616,24.65514324605465,23.787129872012883,24.583179785404354,23.60634863935411,22.845750778447837,22.111873771063983,21.47557159420103,22.059722363948822,21.467026666738093,21.4608129193075,21.565708844922483,21.471837047021836,21.953411748167127,22.51767351711169,23.04632250452414,23.892240258399397,23.825263543985784,23.306053124833852,22.95786552829668,22.519631951581687,21.524955134373158,20.96124227019027,20.065146803390235,19.17060826672241,19.894278168212622,20.445651282556355,21.3861770844087,22.351560048293322,21.364229052793235,22.24465456046164,22.0613181181252,22.13806357141584,22.248745063785464,22.95253353798762,23.39839293761179,22.571843380574137,21.910438077524304,21.88624402321875,21.407116341404617,21.43802119931206,21.74978787265718,21.660233721137047,22.492636545095593,21.59768271073699,22.06768960459158,22.70591753302142,23.10408765124157,24.09816292533651,24.738473459146917,24.182078584097326,23.63316107634455,23.082222763448954,23.232173257507384,23.625585720408708,24.564193490426987,25.519983370322734,24.91534784855321,25.648322576656938,25.228227379731834,25.052205721847713,25.58628329122439,25.85849846759811,25.48346594721079,25.95930654136464,25.199769916478544,26.162834474351257,25.910038479603827,25.460836802609265,26.264602804090828,26.668539019301534,26.900287537369877,26.88298452598974,26.884977222885936,27.867055166047066,27.136633809655905,26.240004188381135,26.810007601045072,26.041066109202802,25.20844487659633,25.15762090915814,24.267278774641454,24.2999395201914,24.79720445489511,23.81855244236067,22.828529973514378,21.853144037537277,21.208721148315817,21.030384416226298,21.983691673260182,21.763128319755197,21.86058213096112,21.14665304403752,20.50632960954681,20.543313215486705,21.077211040072143,20.256916746497154,20.49814317142591,21.44074651878327,22.421686228830367,22.7527753575705,22.02779918536544,21.120920086745173,21.44929645350203,22.362676792778075,23.212895648088306,23.784352459479123,24.629085465334356,24.248260396998376,24.06661640619859,23.45714657381177,23.05453304760158,22.824339075945318,23.81970894150436,23.825587946455926,22.856185528449714,22.254318630788475,22.143381603527814,21.705475436989218,20.791595877613872,21.01021727733314,20.063135042320937,20.84867934277281,20.279420893639326,20.094416284468025,20.025105063803494,19.17520842514932,19.131868958938867,19.3431905079633,19.302335151005536,19.565955698955804,20.281089478172362,19.746542062610388,19.434937309939414,18.992688191123307,18.09135527163744,18.661397911142558,19.485241040587425,19.850799067877233,19.325512370094657,18.79533611005172,19.270260921213776,19.136832273565233,19.62008467828855,19.454074753448367,19.03224787581712,19.865755792241544,18.938930104020983,19.68980188574642,19.19238172424957,18.650000285822898,18.140527678653598,17.431359057314694,17.964491868857294,18.714035502634943,19.43513176124543,19.1887239003554,18.51414467766881,19.313822478521615,20.238029055297375,19.287293512839824,20.052932138554752,19.83084699837491,19.34136452060193,20.303829587064683,19.74704663036391,19.025940220803022,18.8861969220452,19.608565524686128,19.291640480048954,19.90021297475323,20.396601506974548,20.32958892453462,20.615197791717947,21.119030836969614,21.47066095052287,21.065492758061737,21.400410973932594,21.76922116242349,21.372020434588194,21.3880687658675,20.705398448742926,20.974555395543575,21.800549468491226,21.555140694137663,21.87760673230514,21.826861270237714,22.291651313193142,21.445874674245715,22.22574121458456,21.91443872032687,21.482255851849914,21.393860012292862,20.825979883782566,20.611732854042202,21.102476360742003,21.54191545303911,21.099211814347655,21.550937278196216,22.354653547052294,23.0686543029733,23.881362365558743,24.45422619348392,24.487410140689462,23.61846146406606,23.82830365281552,23.79538330528885,24.744103593751788,24.948140995111316,25.401425512041897,25.566025404259562,25.65911638829857,25.546518138144165,26.109633004292846,25.782884144689888,25.204576193355024,24.909077384974808,25.439016565214843,25.224692803341895,25.69831702671945,25.092377837281674,24.85804270580411,24.475524621549994,23.996949200052768,24.92169322539121,24.747633267194033,24.430321101099253,24.83641008241102,25.485646702349186,26.467842447105795,27.3859188281931,28.37990794191137,28.975464447867125,29.235989285632968,29.901368772611022,30.00174731016159,30.742560470011085,29.870770276524127,30.057944386731833,30.424844266846776,30.328679234255105,29.52276448905468,29.03221553657204,29.757274728734046,30.328818663023412,29.610450215172023,28.748939429875463,28.92269399948418,28.886501241009682,28.496773398015648,29.28329975157976,29.013953895308077,29.50367229571566,28.86181222042069,29.842578684911132,29.164020885247737,28.64785258518532,29.591235720086843,29.655622497200966,30.550060836132616,30.76826674165204,31.187210865318775,30.51268378086388,30.595824413001537,29.77048304490745,29.11283214110881,29.089706538710743,28.628359373658895,28.40243456652388,27.44245412806049,27.971725636161864,27.360468873754144,26.68494411651045,25.70207247044891,24.78719703387469,24.679243742953986,25.666910401079804,26.24704865179956,25.535911010578275,26.426426257938147,27.017327688634396,27.38863326376304,26.39673989266157,26.366088044829667,26.67385288560763,26.209865251090378,26.509317812975496,26.686414710711688,27.36567330500111,27.753231646493077,27.31068821810186,27.230626795906574,27.756665146443993,27.219124029390514,27.078728653490543,27.886765017174184,27.757110693491995,28.688945233356208,29.405766859650612,28.535768774803728,27.975442032329738,28.487220137845725,29.16380243934691,28.583055012859404,28.93365164892748,29.302550591994077,29.42286034859717,29.77332237083465,28.90612482186407,28.315553795546293,27.364960975013673,27.120735733304173,27.975409602280706,27.98758490057662,28.12897909153253,28.000676011200994,27.606889084447175,27.424264731351286,27.70277833007276,27.304921977687627,28.155559297651052,27.88021632283926,28.29461800120771,29.048173205927014,29.72837651753798,28.84474237682298,28.565520703792572,28.987054416444153,29.08236370095983,28.5115918610245,27.672543364576995,27.74826803896576,26.759301180951297,26.4646226875484,27.414458719547838,28.15999569091946,27.323042262345552,27.97129971999675,27.86900912458077,28.120241465512663,28.616956558078527,28.809058306273073,29.54096709145233,29.259875721298158,29.351235973183066,29.20719304913655,30.06404111161828,29.352051011752337,28.548550405539572,28.39156760973856,29.057878989726305,28.900080314371735,28.99247033847496,28.134737868327647,27.92859606584534,26.934954170603305,27.5586616974324,26.685004600789398,26.07450556429103,26.312214481644332,26.090339168906212,25.820462833624333,25.993991965893656,26.2843551132828,25.595219667069614,25.60834090039134,25.995309555437416,25.579766919836402,24.819923802278936,25.42904619826004,25.00873143877834,25.879648021422327,25.55310163088143,26.18537190183997,26.18994178669527,26.244162207469344,25.51524227578193,26.464184679090977,26.8353336090222,26.078334046527743,25.590988634619862,26.369397816248238,26.473996330052614,26.932951564900577,26.4774567540735,25.983480135910213,24.986342578195035,24.395830310415477,25.39546149596572,25.39165554055944,24.88277299934998,23.999632970895618,23.427061347290874,24.216690743342042,24.062892296817154,23.27020300552249,22.750793270301074,23.255929244682193,23.984007780905813,23.193778702057898,22.66370209818706,22.477117569651455,21.676699781324714,20.9392984197475,21.474392261821777,21.613558725919574,21.751962710171938,22.009308558888733,21.557215612381697,21.36219063261524,20.989166238345206,20.0301560042426,19.844957659952343,19.9064652454108,19.3512177108787,18.584312045015395,19.274448866490275,20.234640079550445,20.54876568214968,21.283860806375742,22.17972142342478,22.433992952574044,22.623796977102757,22.00292813265696,21.286140783224255,20.5400979090482,20.091689048334956,20.787686241790652,21.269105229526758,20.837730314582586,21.82114432984963,22.22118795197457,21.374287143349648,21.23552994709462,21.468880157917738,22.162824702914804,22.254682837054133,22.869577273260802,21.916849037632346,22.563722514081746,22.181915471330285,23.018504930194467,22.190730666276067,22.692889389116317,21.950814173556864,22.457480762619525,23.052998724393547,23.772493593860418,23.271930950693786,24.13352836156264,23.854830880649388,24.12727975938469,23.48315746244043,23.228527234401554,24.12808301206678,23.76859777700156,22.811091794632375,22.677082610782236,21.87108194315806,21.740625420119613,21.886078662239015,21.788618864491582,22.080065493937582,21.659005602356046,22.283147683367133,21.869841137435287,21.45085218269378,21.927219182252884,22.09619327634573,21.99905452504754,22.553840049076825,21.670237869489938,22.533973078709096,22.56947583099827,22.053703043144196,21.832609358243644,21.14439690625295,21.375376222655177,20.852877859491855,20.26808359893039,20.772301975172013,19.883034881670028,19.430518749635667,18.93902991944924,19.3455130928196,19.925387784373015,20.720146079547703,21.48208407498896,21.33424170408398,21.418995757587254,20.69040508614853,20.783191951923072,20.63455843180418,20.08678297000006,19.865804015193135,19.23003880912438,19.466100461315364,19.02430520299822,18.141085132025182,18.259827736299485,18.4125839471817,18.76397116202861,17.850463109090924,17.66361505072564,17.661025610752404,17.970570272300392,18.6327699017711,19.31479571899399,19.075887166894972,18.49552909610793,18.753036990296096,18.764291026163846,19.21193112526089,18.32558440277353,18.197722042910755,17.25252811051905,17.320997901260853,17.069033070467412,16.346765975933522,17.01161374989897,16.978595999069512,16.451839488931,16.166649878025055,16.119113645981997,16.543365454301238,16.843386196997017,17.60195215139538,16.764358680229634,16.110778839327395,15.121388911735266,15.24939304497093,15.597289035562426,16.543152845464647,16.369137475267053,16.292367860674858,16.615928639192134,15.909464014228433,16.77118151402101,16.50854750769213,16.41500240424648,15.803708287421614,16.132652514148504,17.096146376337856,16.132401299197227,15.92584502696991,16.41173382010311,17.00594565132633,17.411366147454828,18.302985774818808,17.551362350117415,16.767246035393327,16.36092093680054,17.249070497695357,17.610091403592378,18.588826867286116,19.426970199216157,19.206209181807935,18.216998350340873,19.2116731046699,18.343212674371898,17.700263776350766,17.33993892930448,16.84532190207392,16.485035511199385,17.358357397839427,16.44026476237923,16.78256446449086,16.386269331909716,16.894545370247215,17.769981604535133,18.300397312734276,19.013825226575136,18.229614890180528,17.455695984419435,16.61245285626501,17.229933701455593,17.260186459403485,18.036511321552098,18.847219810821116,18.842782413586974,18.993554327636957,18.912517497781664,18.21920023811981,18.987172549124807,19.568451581988484,20.499288549646735,20.332372874952853,20.852313900366426,20.78867258084938,20.915496923495084,21.744211637880653,21.810737129766494,21.804921844042838,22.65711231250316,21.88091597845778,20.979429239872843,20.695271716918796,20.634322645142674,21.095274520106614,21.5642077322118,22.290250706952065,21.68391921138391,22.42910277051851,21.50088333012536,20.711413342505693,19.938597456086427,19.58430095203221,20.391999534796923,19.789613438304514,19.482436392456293,18.682305057533085,19.354275608435273,19.440292640123516,18.67206277884543,19.23288809414953,18.82327184639871,19.46149708190933,18.995093164034188,19.69604393048212,19.021730513777584,18.157553566619754,18.381846273783594,18.787645783741027,18.65190683538094,19.458374872803688,19.165030526462942,18.76860491372645,19.361187543720007,19.08843191061169,19.60183351067826,19.784908957313746,19.07222003582865,19.124226133339107,19.166605782229453,19.270153009798378,18.7765277530998,18.295558038633317,19.102066246327013,18.247356997337192,17.32833484420553,18.085467075463384,18.109612523578107,17.965779918711632,17.32507914165035,16.476500863675028,17.27067320700735,17.96502990508452,18.78349987557158,18.562910217326134,17.82901239208877,18.288095770869404,18.38766838144511,19.001892128027976,18.46518240729347,18.761069710366428,17.94617786584422,17.68159683002159,16.79287488758564,16.810180032625794,17.690423656255007,17.634151531849056,17.44923479948193,17.08740924624726,16.517577308230102,16.64989978959784,15.66107748541981,15.312736766878515,15.725450979545712,15.848469797056168,15.583380674477667,15.266100372653455,14.459833960048854,14.664250064641237,15.45893562072888,16.39684654120356,17.285296954214573,18.001461502164602,18.131153334397823,17.976400073152035,18.05560999782756,17.724860949907452,17.19157912908122,17.48658417025581,17.81230455217883,16.91986673278734,16.748780166730285,17.64409557171166,17.024893421679735,16.490048797335476,15.969117678236216,15.302836733404547,14.760059094522148,14.376963558141142,14.725811452139169,14.311043723486364,13.612074620556086,13.157661770004779,13.302083456423134,13.631536303088069,13.975991235114634,13.925374267157167,14.364526158198714,14.189476638566703,14.277062489185482,14.608577294275165,14.868929387070239,15.38656367501244,16.299438099376857,17.08639602828771,16.690983665641397,17.077031545341015,17.23281719814986,17.417633444070816,18.146812731865793,17.4876012140885,16.815449730027467,16.234723928384483,16.09260568022728,15.21911389939487,16.00806350260973,16.878914745058864,17.253420589957386,16.809415766969323,16.094574715476483,16.934883726760745,16.427922258153558,17.145552784670144,16.8182555292733,15.937496502883732,15.153921694494784,14.671644752845168,14.793994875624776,14.881694674957544,14.203335493803024,14.513675021007657,13.531677990220487,12.77303869696334,13.363489766139537,12.91347979567945,13.288034809753299,13.166348788421601,12.852426590863615,12.23417014721781,12.866797492373735,13.371450262144208,12.491545222233981,12.742183457594365,13.093047930393368,13.079061062540859,13.55359175382182,13.095730166882277,12.66322508547455,12.925358667038381,12.347651821561158,12.756423756945878,13.232769659720361,13.358290317468345,12.370771215297282,12.412831764668226,12.646800100337714,11.967496074270457,11.13465233752504,11.915412092581391,12.781090398319066,12.691726560238749,13.223594431299716,13.141695857513696,13.554026296827942,13.688610245008022,13.162954148370773,13.50036330986768,13.847116275690496,14.41417725943029,14.98023012233898,15.51151690678671,15.703065301757306,14.729503772687167,13.79972847737372,13.53138565365225,12.967138334643096,13.417629933450371,14.120573840104043,14.715938597917557,15.42294543562457,15.23879529768601,15.112541214562953,15.397379809990525,15.814902602694929,15.18557361420244,16.065419501625,17.020749600138515,16.146347471047193,15.457827948965132,15.043817840050906,14.328727760817856,14.922046278137714,14.651240030769259,15.1777130686678,16.102774385362864,16.663286897353828,16.015393919311464,16.792975875083357,16.238530685659498,15.322446129284799,15.145607164595276,15.033596960362047,14.944198218174279,15.849044311791658,16.01779045164585,16.67145519889891,15.869816248305142,16.190231409389526,16.102609392721206,16.88096610084176,17.342654983513057,18.024177675601095,17.984830353874713,18.39885471109301,17.82005680259317,17.340436247643083,17.51491185463965,18.223181327804923,17.914418874308467,17.987783040851355,18.020734268706292,17.961636352352798,17.259124440606683,17.419137805700302,18.402822053525597,18.006549135781825,18.216228139121085,19.025310422293842,19.337743372190744,20.1196171133779,19.73042104113847,20.379883696325123,20.134199214633554,20.1470732470043,19.565488883759826,19.724967274349183,19.156292674597353,19.36187071353197,19.146444239187986,19.822070346213877,20.283013682812452,20.304188470821828,21.223603934515268,20.60713235847652,20.72310444433242,21.197501777205616,22.03158877324313,22.913446739781648,23.81767312157899,23.64220600295812,23.800259774085134,23.43073627119884,23.488366345874965,22.543374680448323,22.206204569898546,22.724038210697472,21.750870964024216,21.654483750928193,22.45435254694894,22.87171811563894,22.99678131286055,23.754768365528435,23.29437956959009,23.55808787373826,24.22739738225937,25.04126109322533,24.7631205432117,25.307920917868614,25.06833754759282,24.782459589187056,25.422355673275888,25.33130485052243,25.308976326603442,26.08092102315277,25.922043026424944,25.675104696769267,25.586357398424298,24.844781667459756,25.339464199729264,25.140352733433247,25.941717268899083,25.53662833245471,24.741959732957184,25.576727147679776,25.481224429327995,25.21913022035733,24.422281126957387,23.658859277609736,23.389091192744672,23.73564330674708,23.0806390712969,22.622261934448034,23.15076374821365,23.6548320367001,24.63163196761161,24.953390947077423,24.458093118388206,23.64721907908097,22.684820560272783,22.08987977541983,22.433436409104615,22.39818520564586,22.298993721604347,22.550914082676172,22.972394552547485,23.968259145505726,23.030712217092514,22.14526151586324,23.115286828950047,24.05877621937543,23.188902388326824,23.08198102749884,22.736000305507332,22.494685294572264,22.011270705610514,22.041626057587564,21.07870412291959,21.88382750377059,22.00091953203082,22.666845499537885,22.126374301034957,22.820418276358396,22.23748877737671,22.8089795736596,22.112941587343812,22.369877823628485,23.02304318966344,23.170979388989508,22.670443335082382,23.537251095287502,22.557992504909635,21.60059259319678,22.102455580141395,21.522813736926764,20.711665055248886,21.631713945418596,21.08689220342785,21.70703549263999,22.10985870892182,22.599980445113033,22.88369535561651,23.685167444869876,24.269963798113167,24.955817823298275,24.42827886901796,24.746451057959348,25.265791137237102,25.072771422099322,25.957150978036225,26.630204222165048,26.19195042317733,26.6851719468832,26.344812457915395,25.679574297741055,26.638603480067104,27.39930315129459,28.33015672164038,27.964575565885752,27.54927405482158,27.994303221814334,28.457873538136482,27.940064788796008,27.602664264384657,27.29543426539749,26.846781574655324,26.890165924094617,26.45783141022548,27.43671879125759,27.00409090379253,27.00785227958113,26.761577853932977,27.486629986204207,26.752518095541745,26.99639915721491,27.544564994517714,28.32029306469485,28.636124062817544,28.82114839879796,28.714726170059294,29.556162350345403,29.449855054728687,29.83985556010157,30.75805142056197,31.5562718170695,32.179451659321785,32.19699953775853,31.2924392526038,31.69095571618527,32.18026912258938,32.781117321457714,32.43781086895615,32.29011185094714,32.28788050496951,32.62940028263256,32.43222378566861,32.330562418326735,31.976602608338,31.247659483924508,31.423802997451276,31.607766523957253,32.30138723831624,31.760225438978523,32.26245038071647,32.27893780358136,31.874160987325013,31.257408110424876,30.504807346500456,30.814288157969713,30.8811142295599,30.305280833505094,29.633847462013364,29.09766160789877,28.461630958598107,27.607020079158247,28.415767761413008,28.607018590904772,28.157456235028803,27.300075890030712,27.609427000861615,28.510943548288196,28.06861052569002,27.779829896055162,27.588356650900096,28.32189695117995,29.163325905334204,29.30970221478492,29.18437713291496,28.455975590273738,28.967557285912335,28.2097574044019,28.891719626262784,29.231918266043067,28.615579299628735,27.940140448510647,28.343359340447932,27.834019127301872,28.470038826577365,27.877697660122067,28.499060138128698,28.964068521745503,29.40111301187426,29.911155567038804,30.311418850440532,31.082730471156538,31.051106564700603,31.36130347615108,31.000776335131377,30.156433638650924,30.48630641074851,30.582351664081216,31.512182873673737,31.45781872421503,31.029563914518803,30.266615470405668,29.879086134023964,30.465456762816757,29.693994160275906,29.77607227349654,29.318728286307305,29.24466772424057,29.917666003573686,30.20247889868915,30.952993891201913,31.393032376188785,31.34378637233749,31.67506436817348,31.94372511934489,32.192853837739676,33.02113235369325,33.76632035989314,34.31164629710838,34.98379727220163,35.51632729638368,36.17063795123249,36.14126932807267,36.443639159202576,36.063884707167745,35.64472787315026,34.71666834177449,34.1955421352759,34.419956841506064,35.270298772491515,36.18840784672648,35.85869452403858,36.69443747866899,37.44293276546523,38.42276502540335,38.2249278021045,38.15966566000134,38.70666428562254,38.29067583940923,37.64817159855738,36.96129150129855,36.44294025655836,36.36814341368154,36.95777736604214,37.43187799071893,37.94450165564194,37.31527018966153,37.424899814184755,37.504252480808645,37.61124184774235,37.12141635781154,37.97588484361768,37.82740411348641,36.963864848483354,37.557377515826374,38.111370112746954,37.943120615556836,38.577931627165526,39.43266533873975,39.27941985335201,39.080283663235605,38.40683027962223,39.251275887712836,39.00682114902884,38.096466078422964,37.403857729863375,37.489652989432216,37.89081734372303,38.31427488196641,38.10415431577712,38.3573704585433,37.78643497033045,37.827240359503776,37.43924601143226,38.04441663296893,38.08313383022323,38.03027894254774,38.91901919897646,38.02118219388649,38.85224228911102,38.98427201109007,39.271759716793895,40.1590577266179,41.143084986601025,41.96027666609734,41.98184551578015,41.46914745448157,40.65056662587449,40.48190575186163,39.73732375446707,40.68439270975068,41.546665312256664,40.867796298116446,41.19692436279729,41.44232283486053,40.63237692927942,40.73512900201604,40.94967150175944,41.730023636482656,42.44469620566815,41.555857033934444,40.85882984707132,40.50761013152078,40.63845825800672,39.95244506932795,39.48160918196663,38.86997393751517,39.68976873252541,38.837197575718164,38.89229235379025,39.8508150880225,39.46287492895499,40.37799136713147,40.9365993659012,40.8105226685293,41.20286415936425,41.71782005717978,42.201059095561504,42.62171995872632,42.282856446225196,41.736089527606964,42.09205001825467,41.942064953036606,42.88546013087034,42.765766681637615,42.40192045364529,42.82996916491538,43.76961013674736,44.35608165245503,45.32018420193344,44.67913441779092,44.37799981003627,44.47349059255794,43.52067854208872,42.82658515544608,42.317782644648105,43.104620054364204,42.695148134138435,43.40413077920675,43.00891789328307,43.44081120099872,42.981357579585165,43.06895119138062,43.41894653160125,43.57928969571367,42.746168196666986,42.17419488821179,41.48468447243795,41.26809051120654,41.44247200805694,41.76249806815758,41.69337136251852,42.27656142832711,42.28252048464492,42.50548974238336,42.2640121136792,41.97892014449462,41.311035809572786,41.186484915204346,42.15861118910834,41.20216351747513,40.35449995007366,39.925552347674966,39.105882382486016,38.20654757646844,38.068957939278334,38.49638003623113,38.81163436919451,38.49562819162384,38.99727072939277,38.88198844017461,39.362424404826015,38.64977498399094,38.21338921505958,38.28394418908283,37.342263255268335,37.67195569258183,37.89437940437347,38.379336217883974,37.59614126663655,36.75284731388092,36.191439933143556,36.75331821804866,36.88133867364377,37.375984959769994,37.24305106513202,37.71095547499135,36.86797377746552,37.26113468548283,37.274452592711896,37.61785805597901,36.69387488486245,37.48213701695204,38.35877985274419,38.34380779834464,37.86638806760311,37.598495895043015,37.07175742974505,37.70649496419355,38.23398181889206,37.352854444645345,36.4443966713734,36.20508226333186,36.71735335001722,36.061570283956826,35.22447640215978,35.3800523490645,34.742104643024504,35.289010260254145,35.231575816404074,35.19601472327486,35.98802262637764,36.41999975172803,35.893933835905045,36.843766456935555,36.283991023898125,36.8990937625058,37.79554946953431,38.60149601334706,37.75936795771122,37.07490236451849,36.99382760981098,37.56365337735042,38.48877454875037,38.5703006577678,39.15833373181522,39.023233419749886,39.22695204149932,38.85534912953153,38.396282605826855,38.64191393693909,39.51518628792837,40.462691301479936,39.84571356931701,39.88826604373753,39.55952271539718,38.84797586733475,38.92653719289228,39.68405618099496,40.12417828431353,40.693930791225284,39.849054132122546,39.224524847231805,38.57294727675617,38.33960503106937,37.7188424016349,38.542367504909635,39.42308200104162,39.20729048596695,39.06178473914042,38.96385245164856,39.487222653348,40.246443703304976,39.27637151069939,39.36026503518224,39.946630554739386,40.379167997743934,40.40040701394901,39.50687824329361,39.574232479557395,39.35347409406677,38.71582829533145,38.014775664079934,38.08585855783895,37.33224817737937,36.33627155376598,35.462487027049065,35.10706238169223,35.594004751648754,35.46168935811147,35.05835837731138,34.949758652132004,35.02904244372621,34.98873398732394,35.09375874418765,35.87510244594887,36.607018646318465,36.02887584781274,35.56194720743224,35.34887505695224,35.472376180347055,35.314674634020776,34.927544008009136,33.99911525286734,34.538865549489856,34.0846402044408,33.23524892004207,33.55200528725982,33.713537151459605,33.89685939298943,33.22033514920622,33.00145245762542,32.51314346678555,32.52434611367062,31.71409212052822,32.0210425616242,31.606092831585556,32.00861741742119,32.8408388197422,33.367704095784575,33.87283993372694,33.454639406409115,33.46698900638148,33.26125132571906,34.1811957443133,35.017063786741346,34.75378315476701,35.12956730276346,34.244837385602295,34.47100086370483,34.078161837067455,34.32878676382825,34.12585924519226,34.92887483118102,35.60752637498081,36.08204821823165,35.3333008592017,35.459203312173486,35.67833384964615,34.82824394479394,34.06795063102618,34.208260972518474,33.44506516773254,34.29031787952408,33.82361738011241,34.75580373592675,34.21864192187786,34.77844249177724,34.51807010406628,35.13284138496965,34.28742228122428,34.85306606348604,35.51697548432276,35.7466206131503,36.29147599078715,35.8416331182234,35.9733379567042,35.88448028359562,36.779766199178994,37.66531198518351,37.502735239919275,37.85430643893778,38.06210773438215,38.14027140988037,38.14054574817419,39.06460048025474,38.58121806336567,37.88330727443099,37.58612230513245,38.06649504462257,38.92994831409305,39.65243695117533,39.038116364739835,39.58966325689107,40.34428877104074,39.974759228527546,40.6005152692087,40.85959388036281,40.79082057438791,40.66988713433966,40.194369605276734,40.99123605154455,41.46528319315985,41.540510314982384,41.58577492367476,42.54476414853707,42.51829441357404,41.688997546676546,42.34767388459295,41.846669864840806,41.13347394624725,40.52165725408122,41.32950985059142,41.55649528559297,41.2286211415194,41.88053555833176,42.49226145027205,43.092100240290165,42.7112028314732,43.31950450502336,42.72426366247237,41.928056669887155,42.6526207998395,42.14136208826676,42.447359829675406,41.98738363198936,41.448765877168626,41.89902927540243,42.89395442092791,43.85032213991508,43.498655249364674,44.270858029834926,43.82916355505586,42.91125249955803,42.04313902370632,41.27947458671406,41.45500254770741,42.24629637366161,42.131866783834994,41.59786623250693,40.85825674422085,40.18407928524539,39.23067418951541,38.46617532521486,39.34674951341003,38.88814828498289,39.14445782080293,39.83841114630923,40.304509319830686,40.11256274068728,40.6111800596118,40.81613073358312,40.513203060720116,40.33785762125626,39.83738491637632,39.9434505882673,40.22857105406001,41.18842674000189,41.29131310991943,42.25312728155404,42.902430998161435,42.90665214834735,42.03063229424879,41.10164148500189,40.32336385501549,39.81480914261192,39.70878343190998,39.07578640896827,39.588538786862046,38.846134984865785,38.5047849570401,39.011209623888135,38.05011500325054,37.55597454169765,36.818529159761965,36.912887007929385,37.49933568108827,37.774622516706586,38.3967547416687,38.6557315136306,39.308471156749874,39.69869631808251,40.2087970613502,40.94889145763591,40.96146659180522,41.19110050890595,40.46508766710758,41.197055572178215,41.11449803132564,41.01336693763733,40.518103011418134,40.93684623390436,40.84590792423114,40.65543718310073,41.33843894302845,41.78539276542142,41.40418198890984,40.84582162974402,39.91401745611802,40.550128525123,40.365862793289125,40.222586864605546,41.08462355006486,40.52533723600209,40.45902970759198,41.298472836147994,41.42499914439395,41.499820927158,42.239868957549334,42.564001753460616,41.94735482567921,42.64440409746021,41.666696541942656,41.68277439009398,42.40096911881119,42.69891133019701,41.756482418160886,41.78004664974287,40.91925259819254,41.11914549116045,40.411380018573254,40.114903344772756,39.26984766917303,39.76282239891589,40.44641048042104,39.67557460581884,38.806148421019316,38.98658707132563,39.63618238037452,39.85905864648521,40.68383446102962,40.14658564608544,40.60971761122346,41.498282556422055,41.13002854119986,40.93984794290736,41.37837375514209,41.537501136772335,40.730606683995575,41.515730656683445,41.61945833219215,41.5382571099326,42.056533803232014,42.78700258722529,42.08385979104787,42.66298479307443,42.84014699328691,42.43909632693976,41.800042463466525,41.31413750909269,41.509834790602326,42.33434273535386,42.37626777822152,42.97536317165941,42.255361329298466,41.60130608640611,42.484579492826015,42.97987140668556,42.049633994698524,41.85501681268215,41.48217085329816,41.30264292983338,41.11382870748639,40.73713271599263,41.66139895794913,42.64291586400941,42.10748198861256,41.19341606507078,40.2215579058975,39.59793009236455,38.79171466594562,38.38236655527726,39.37461070436984,38.81460046162829,38.5222656247206,38.314008676912636,39.0070467707701,38.75961816450581,38.010209049563855,38.46842074673623,38.49867638992146,37.58203142043203,36.88738650083542,37.475273051764816,36.73950893850997,36.80764667503536,37.1334911310114,36.180259118787944,36.9892518739216,36.75469540990889,35.8499432168901,35.8428196082823,35.09296617936343,34.184187330305576,34.264109667856246,33.28957225289196,34.0313169057481,34.991090206895024,35.033323341514915,35.60188467707485,35.06724921287969,34.767903219442815,35.49699354078621,34.94291003746912,35.758876516949385,35.57752274069935,36.44549841526896,35.467926271259785,36.13099547801539,35.13276482000947,35.543811506126076,34.79622122179717,34.741640819236636,34.54285553423688,35.238874471280724,34.85869418317452,35.44685812667012,36.24225397547707,35.61138964816928,35.516102619003505,36.074231883045286,36.59109729900956,36.247269111685455,35.643075867090374,34.723698150366545,35.34322555689141,34.72527962969616,35.59488469734788,35.55415404075757,34.73382742423564,35.30255670892075,34.99635470705107,34.34939762810245,34.58658417733386,33.6137172402814,33.26222071284428,32.76052691275254,32.4571615899913,33.329469616524875,32.35331500088796,32.29585124971345,32.13532358594239,33.07695919694379,32.6574150971137,32.08292794087902,31.302346711046994,31.74092693813145,31.147404491901398,31.6402246709913,32.58240282069892,33.135414336808026,32.32478257967159,31.361083183903247,32.226407221052796,31.968977218028158,32.53330700984225,32.12221521092579,31.75396975921467,31.187639348674566,32.02856719121337,31.795928651466966,31.397569281514734,31.425670413300395,30.879216051660478,31.61447746725753,30.85896866209805,31.796261145267636,30.849600622430444,31.719905997626483,32.61319788964465,33.37398955132812,34.18165684118867,33.70854771789163,33.720840089488775,33.46754066506401,34.2123736073263,34.29332527285442,34.78987668827176,34.961321205832064,34.32864365167916,34.44835507078096,33.95601689117029,33.62001848127693,34.455052939709276,35.10035846848041,35.68903136393055,35.072375571820885,35.16250436427072,34.20302753150463,34.63973618205637,35.49806210631505,35.46397705562413,34.53767626499757,34.7664041062817,35.640963717363775,36.346834615338594,36.948600329924375,36.11423486005515,35.942360979970545,35.02745846379548,35.287205789238214,34.37558525009081,34.72898563183844,34.39294356480241,35.138664465397596,34.29288324667141,33.629042382352054,34.021279758773744,33.63926754472777,34.092884523328394,33.703932884614915,32.774395043961704,31.946849917527288,31.372843069024384,31.245808597188443,30.66480056894943,30.064445027150214,30.144411631394178,30.750797145534307,29.882255271077156,30.290767424274236,30.43056434346363,30.67479761550203,30.710419529117644,31.532922287471592,30.57316247932613,30.544391887262464,31.26528854481876,31.32617393694818,31.15263952035457,31.820550308562815,32.62633793242276,31.76231214776635,32.600855246186256,33.22203084686771,33.86387003120035,33.234632891602814,32.455034393817186,33.19845675304532,34.16668458329514,34.72133552422747,34.05188963422552,33.52466475451365,34.27044114097953,33.981896851211786,34.04260764224455,34.94641410652548,35.17789834970608,34.24456495558843,34.11796505050734,33.35790436062962,33.07161143841222,33.21085955668241,32.34964973479509,31.78413506457582,31.783668250311166,31.3849260318093,30.697392518166453,31.259635949507356,31.347046150825918,32.17368390457705,32.520705432631075,33.26946559920907,33.74634863156825,34.33638204447925,35.1455585421063,35.195022005587816,34.90930919069797,33.990796628873795,33.48127479944378,32.80244978843257,32.110124645289034,31.878492141142488,32.04595805192366,31.39714596187696,31.35496317408979,31.981369966175407,31.022543686442077,31.895028808619827,32.00103062950075,32.76568697951734,32.91627556271851,32.24028065381572,32.9891748665832,33.885202437173575,34.27075869124383,33.331655686255544,33.78039485262707,33.162585258018225,33.34949149098247,33.262669327203184,33.56373500917107,33.606779168359935,33.570009905379266,34.216136573813856,33.67049210285768,32.755813682451844,32.61317631555721,31.88135663093999,32.29323744913563,32.16408294951543,31.386977282818407,32.02833652636036,33.00989286554977,33.54179978137836,32.80076153250411,33.7614818084985,33.30823848862201,33.296479704324156,33.92465546308085,33.70671061705798,34.285622659139335,34.285558542236686,33.79321030061692,34.50418689940125,34.311381210107356,35.00617630593479,35.90072009060532,35.59666076116264,34.76793012302369,33.990998403169215,33.79415279394016,33.26099865976721,32.68322262214497,33.31133678974584,32.57917808648199,33.25955597590655,33.74037671042606,33.725254910066724,33.87028940021992,34.775985991582274,34.45365649368614,33.84458428854123,34.14294822514057,33.70975913107395,32.73698377702385,33.024364287965,32.72353091975674,31.86254412867129,30.983816235791892,31.87498588487506,31.542424221057445,31.20594145124778,31.72227887623012,31.773562656715512,32.15177835756913,31.70982165588066,32.64095560228452,33.07372836070135,32.20891971187666,33.19720860943198,33.33366614300758,34.30385357467458,34.76486314786598,34.894631726201624,35.65667110309005,36.34589563542977,35.853761598002166,36.40021538641304,36.69138531619683,36.84064166434109,35.85975494934246,34.93386926269159,35.39649476436898,34.624824618920684,34.19933133991435,33.23977446509525,34.03704718640074,33.10608880966902,33.83978055976331,33.97318569244817,33.26892950711772,33.51970095420256,32.59053177712485,32.24351514270529,32.5293043111451,32.95207497756928,32.071563030127436,31.69704801077023,32.09646601835266,31.189149326179177,31.38963236520067,31.64570572040975,32.502563970629126,32.08317967597395,31.47757910331711,31.486616940703243,32.328806621953845,31.44450300419703,30.791118166409433,31.38360479986295,31.419609676115215,31.696182776708156,32.553439430426806,31.93924530642107,31.807461565826088,32.60346215078607,31.682182675693184,32.44092398323119,33.37399202818051,33.06973905488849,33.66599928215146,32.898466017562896,32.126671019010246,31.492756963707507,30.761105693876743,31.29678675858304,31.488821192178875,31.88318295078352,31.34937341324985,31.774179455824196,31.79588067997247,32.174866940360516,32.239869164768606,32.88012367347255,33.61477577313781,33.68220605421811,32.71417019283399,32.72716480540112,32.594778693281114,31.625958757009357,30.73954116553068,31.598976145498455,30.624403518158942,30.23473087325692,30.20990900322795,30.368795956950635,31.074006015900522,31.269795829895884,31.177728014066815,31.797438275069,31.1293071731925,31.83978060912341,32.1898782630451,31.471039108466357,31.52113894140348,32.23020103061572,32.240572633221745,33.074136537499726,32.45416416507214,32.41737769311294,31.706724324729294,31.22180828731507,31.18418174609542,31.237811617553234,31.62710879603401,32.25367205031216,31.911017321050167,30.942384843248874,30.828077252022922,30.550116105936468,31.082365848124027,30.398384703323245,30.949490725062788,30.833150084130466,31.749712633900344,31.103234766516834,30.44487881474197,31.216586652677506,30.97315318090841,30.833331380505115,30.414590845350176,31.37967068934813,31.804383816663176,31.633990932255983,31.877220306079835,32.810476816259325,33.67937877168879,32.85794888297096,32.68339624069631,33.01563823828474,33.46069724438712,34.37422156240791,34.18797629093751,34.18801423208788,34.71137183951214,34.850880480371416,34.54722238890827,33.7810197789222,34.57583015738055,34.10160477505997,33.3760185376741,33.272426144219935,32.74500798853114,33.33860217407346,32.73597831605002,32.53896300122142,32.98112359084189,33.63367227418348,34.19595250906423,35.1915281470865,35.12576798349619,35.84415174461901,36.83693046681583,37.4718871335499,36.81289500743151,36.612206537276506,37.52199551369995,36.591929596383125,36.598450584337115,36.15141540346667,36.29173595132306,36.32708969246596,35.752281229477376,36.49521075561643,35.69099403731525,36.51717470167205,37.49071519263089,38.27924443082884,38.193212430458516,37.53115930687636,37.01722758356482,37.572706282604486,37.94154534628615,38.14053736021742,38.523458157200366,37.831347118131816,37.68654770962894,38.52336669107899,38.67486195731908,39.40929414331913,39.76296043489128,38.871705904603004,38.23187770647928,38.53972466895357,37.78813711227849,38.76637443713844,38.33662202395499,38.57543870527297,38.323303777724504,37.32653110520914,37.097395586781204,38.03198284609243,38.994259209837765,38.19767991406843,38.8201285591349,39.727073249872774,40.470994701609015,40.67097180103883,40.37127928528935,41.20945803215727,40.94889249932021,41.1607958804816,41.19884334690869,41.508263275027275,40.846132854465395,41.80689658038318,40.97933621890843,40.62944634305313,40.3246582467109,40.97520259488374,40.28151051700115,41.22342643979937,42.06056741019711,42.59408021578565,42.76070551807061,42.31979410722852,41.72982667759061,41.25498536694795,41.020056245382875,40.50916774570942,40.10483970399946,40.27417849237099,40.54728902457282,40.87894460326061,40.770297821145505,40.61348807485774,39.95094304718077,38.95688088564202,38.410458670929074,38.22495893808082,37.832669568713754,38.3027148488909,38.91944632399827,38.303277387749404,38.34668610012159,38.89622629340738,39.085677658673376,38.269262173678726,38.09827101742849,37.25397605728358,38.25060248142108,37.66534174326807,37.50106089562178,37.32092933822423,37.034540036227554,37.64898923877627,37.17090828716755,37.57747855223715,36.84901595907286,35.861989500466734,36.20501630054787,35.54693623445928,36.083875202108175,36.788306379690766,37.28538719890639,36.360978392418474,35.7435124698095,34.97796038398519,35.26589746819809,34.68322652904317,35.109487015753984,35.80863071791828,34.94332758709788,35.76249152934179,35.97229149751365,35.26248974725604,34.96617370471358,34.44511221675202,33.44810346979648,34.05512298317626,34.54564197733998,35.53974436316639,35.51740591460839,35.54993266379461,36.0067377127707,35.18168401438743,35.1490240492858,34.39857946243137,33.47588372323662,34.102581856772304,34.48115205485374,34.015524805989116,34.56032959371805,33.992080593016,34.492263986729085,34.3830747785978,34.36409846553579,34.35804971307516,34.73580391239375,35.42222800478339,36.39978456683457,36.600962401367724,37.48457051673904,37.382312327157706,36.97286214353517,37.12291178712621,37.08311869343743,36.67027367884293,37.11276312125847,37.020988531410694,37.01923274807632,36.0715516959317,35.513070025946945,35.89893039735034,35.655658366624266,36.02564519830048,36.96616501780227,37.57086945930496,36.587153545580804,37.20593052171171,37.90824764408171,38.71491555403918,37.71625449648127,37.906937019433826,37.8512255679816,37.183503705542535,37.167523603886366,36.31805567862466,36.438826215453446,36.77463204273954,36.131347980350256,37.045045603998005,36.57761333975941,36.57939367229119,36.37511370657012,37.11910352483392,37.70593717461452,37.698501504492015,38.655752333812416,39.3136506928131,39.72724726470187,40.05603026971221,40.581243517342955,39.95467984676361,40.872507616411895,41.18765092268586,41.87720160186291,41.32395388558507,41.607976937200874,41.98865273036063,41.615195088554174,41.35669206874445,42.280472464859486,42.41172738512978,42.67065750528127,43.614604455418885,43.95264588948339,44.85005370527506,44.116377411875874,43.52947809593752,43.943077837117016,44.91136415116489,45.0208480656147,44.809894187841564,45.01187604852021,45.28743413416669,45.01624670019373,44.53355718497187,43.789901685435325,44.0011624507606,44.58137808274478,44.25828357832506,43.39858762873337,43.243489240761846,44.13469756068662,44.24924518307671,44.4604437481612,45.01012576185167,44.140424771700054,44.29188411869109,43.76426357636228,44.73011871613562,44.89516603667289,45.83012733748183,45.925928802695125,46.84860760020092,47.34897569846362,46.542210306972265,46.609786957036704,47.1466433624737,47.60589619539678,47.408575186971575,46.487210222519934,46.518510355614126,46.45085016684607,47.15651959972456,47.6348999068141,47.95657196594402,47.20667234947905,48.0854709232226,47.611430366523564,47.61234065331519,47.5290006455034,47.765780929941684,48.477845618501306,48.35597493639216,48.41972607374191,48.83873027237132,49.5391312809661,50.37390435067937,50.93640329223126,50.17072226665914,49.319440738298,48.77971416618675,48.26570802135393,47.94457021355629,47.791155701037496,48.218740296550095,47.50672401720658,48.42757006036118,47.94332758709788,48.812527576461434,48.740587449632585,48.11615345766768,48.71914911735803,48.48584851017222,48.250376305542886,48.69162042951211,47.87155195325613,48.45253329258412,48.16741512063891,47.17568940622732,47.201708159875125,46.52711037872359,45.96623887587339,45.78372201137245,46.54720166884363,46.10354065615684,45.369461635593325,45.02867694851011,44.62921732850373,45.56592473946512,45.900828598067164,46.12534715747461,45.98501356039196,46.578446437139064,46.16771324817091,46.322823950089514,45.880975803826004,46.485707191284746,46.38259021798149,46.90587210049853,46.80044015310705,47.43407157063484,47.56629982357845,47.03090182412416,46.90604414884001,47.29739109799266,47.10782634746283,47.03860022639856,46.76697198022157,46.23580863652751,45.68298311345279,45.29062651190907,45.201996504329145,45.210207503754646,46.18373642815277,47.13617564039305,46.95894389646128,46.460824933834374,45.98563721543178,45.02513644332066,44.08129714336246,43.58233459619805,43.81129455473274,44.14605583855882,43.655763634480536,42.943712793756276,42.334435587748885,42.73639724776149,42.994737536646426,43.671074197627604,44.54604921257123,45.329902284778655,45.44820781890303,44.58379314374179,44.20996084809303,43.2742589879781,42.67595289228484,41.711589235812426,42.32602688902989,42.22724169399589,41.26725807599723,41.88674539420754,41.16841769218445,40.361211279872805,40.30203362880275,40.78071638941765,41.059099656529725,41.94675888540223,41.27045561838895,40.31371625466272,40.01331564551219,39.231618884950876,38.90876418724656,38.67090915609151,37.686886413022876,37.544855466112494,36.76499892119318,37.335988057311624,38.31599293509498,39.22198775410652,38.71757687628269,38.41839106334373,37.752223156858236,38.081712934654206,37.210009816568345,37.7401842023246,38.721053685527295,39.56243041995913,38.649207026697695,38.02515872661024,37.74821301037446,37.03275799006224,36.405637896154076,37.40185826784,37.27990805543959,37.24952649278566,36.31563242385164,35.747773873154074,35.9638251028955,34.98982564127073,34.88141541834921,34.755204535555094,34.745475504081696,35.507958327420056,36.30803262954578,37.152553643565625,36.32615543482825,35.79770666034892,35.07881190115586,34.205007541459054,33.41990914102644,34.3863452966325,35.12019292032346,35.41842733183876,36.09309766814113,35.35531999543309,35.454986084252596,35.329898247960955,36.193936836440116,36.32669389573857,35.375397806055844,34.547319864388555,34.32745589222759,34.74820853350684,34.81556255603209,35.353014376945794,36.0141773163341,35.29785621678457,36.009608493652195,35.8623838792555,35.422293663956225,35.85268464777619,35.020650709979236,34.44082675036043,35.076327798422426,35.179335800465196,34.89875831035897,33.97322072414681,34.28032738994807,34.479486748576164,34.75461454736069,34.105030653998256,33.871259497944266,34.699364793952554,35.05626568896696,35.98209958244115,36.633237038739026,36.00687256362289,35.60136465029791,35.11056595435366,35.270922508556396,34.52094793878496,34.92683776142076,35.73748008022085,35.86749529791996,35.64589744526893,34.999427762348205,35.94130938826129,35.647189542185515,35.160757538396865,35.47496397700161,36.46514217555523,36.984657840803266,37.58535268716514,37.827013520058244,37.052451292052865,36.354821734596044,36.19139841943979,36.6207831017673,37.235633907839656,36.35298332897946,36.238592511974275,36.35785038443282,35.491046806797385,35.36458656191826,34.41375533072278,34.850708099547774,34.86164595140144,34.369466193486005,33.74134731804952,34.238193737342954,33.88870856584981,33.224245076067746,33.71248281514272,33.995990506373346,34.490066651720554,33.968711278401315,34.65794325526804,34.85600654780865,34.57354321843013,35.19010113552213,35.180831420235336,34.8656814689748,34.201431029010564,33.86395531473681,34.39065955579281,34.060734304599464,34.26261157076806,35.15087712043896,35.8809061688371,36.34643117664382,35.96381798945367,35.72235553851351,36.12515011196956,35.52486969297752,35.60769811179489,36.34196368930861,35.823064781259745,36.260843304917216,35.26630645710975,36.26030296785757,36.60393477510661,37.19335444224998,37.58082247059792,37.846044081263244,37.684759330004454,38.548771244008094,37.60231548268348,37.91415114188567,38.018991123419255,38.21994704660028,38.450760873034596,39.06082399515435,39.92067721253261,39.42978908121586,40.025458954274654,40.11455135606229,39.426802535075694,39.49842202477157,40.280755354557186,40.437783676665276,39.561846596654505,40.02936527971178,40.954541337676346,41.58218601113185,41.155332452151924,41.83356522209942,41.87636689795181,42.427469067275524,42.53223890205845,43.398685249034315,43.99800389353186,43.899568419437855,44.60505602136254,44.069879055488855,44.812050045933574,45.08156173909083,44.286944871768355,44.30840199114755,44.437231911346316,44.64247897686437,45.085302118677646,45.21980345249176,45.18221795326099,44.66192718129605,44.815872844308615,44.81854097219184,45.75784725788981,44.87869640951976,44.88403182476759,45.83758275443688,46.41568712098524,46.4952386431396,45.564924905542284,45.88210095325485,44.92566954763606,44.23841870203614,43.5822000624612,42.63917213445529,43.28247389849275,44.06760248169303,43.22456208849326,43.88175149448216,43.36027674609795,43.102024337276816,42.19884777395055,42.406582752708346,42.56195040233433,42.48214191896841,41.916620508302,42.422045685350895,43.29173203185201,43.465921121649444,43.84547922573984,43.59488788340241,43.12272260384634,43.04159771138802,42.158602910581976,41.87304569594562,42.299990016035736,43.01745381206274,43.50498446309939,42.56405339250341,41.91810426581651,41.507509069517255,42.449026610236615,41.5861762072891,41.266862554941326,41.899994543753564,42.882015593349934,43.3558856039308,42.9967351523228,43.68723582662642,44.256179542746395,43.68298253091052,43.706161780282855,44.380296154879034,45.191621070727706,44.53254607319832,44.77907244069502,44.64641832746565,43.89831004012376,44.232941889204085,45.18937483802438,45.143679888453335,45.37043675687164,44.469796913675964,44.86129328655079,45.58887277683243,44.90008623711765,45.77943860832602,45.89437007252127,45.177303557284176,45.68625250738114,46.084656946361065,46.03904203278944,45.181275461800396,45.39548582723364,44.67408640962094,44.20155883114785,43.628472327720374,43.33663380006328,43.15866971388459,42.35978704178706,41.64327578013763,40.88954211398959,41.60093286912888,40.715944616589695,39.835297625977546,40.8248787089251,41.35457002511248,41.39226954150945,40.46404906408861,41.04983726795763,40.10933097684756,40.48858769517392,40.05591978132725,40.99106656759977,40.08483489090577,40.264057353138924,40.916673209518194,40.958400001749396,39.98036122182384,40.490411260630935,40.012303112540394,40.376429308671504,40.1589808142744,40.48007508460432,40.38925664452836,40.715490160975605,40.624968437477946,41.35705861309543,41.44000116083771,41.292300847359,40.571059559471905,41.06536654708907,41.070626098662615,40.22729343501851,40.35969413770363,40.70495374081656,40.485247989185154,41.34467511018738,42.00299056014046,42.68617679737508,43.30696233827621,44.110029524192214,44.851736322045326,45.0566577850841,45.43544732872397,44.51051726099104,44.95415294682607,45.009876845404506,44.55337466113269,43.884029182139784,44.830410809256136,45.588848823681474,45.99573960294947,45.71249840548262,46.70323390234262,46.95733733102679,47.94443475129083,47.552535076625645,48.42224494367838,49.39895088830963,49.68070355523378,48.72059924900532,49.627812202088535,49.69921418465674,50.11825645528734,49.95365221332759,50.92863542214036,50.82181659853086,51.31837694020942,51.53759413631633,50.70235450845212,50.57143623428419,49.69176208367571,49.17636446561664,48.690309022087604,49.45787273161113,48.733052634168416,47.86547493701801,48.56729453150183,48.9487751792185,49.163210060913116,49.72658630553633,49.153289046138525,48.903085994534194,49.59392875619233,48.65327338408679,49.32003092672676,49.43333256430924,49.309270249679685,50.30519442213699,50.37546499725431,50.971784794703126,51.09582176152617,51.43366622598842,51.424931706395,51.35839758254588,50.56352571072057,51.20908425562084,51.678591441363096,50.75086734537035,50.910192337818444,51.19067877577618,50.4476231476292,50.29697295976803,49.79182624723762,49.528858478646725,50.21824772609398,49.64966572029516,50.35567923774943,50.8224170813337,51.66775002563372,50.85570327565074,50.36320440797135,50.261557013727725,50.121770618949085,49.73894156143069,49.06891595618799,48.668741987552494,49.33001696597785,49.70032650092617,49.323275273665786,49.58937194151804,48.88606119155884,49.78252728842199,49.637122228741646,50.411779440008104,50.07118284422904,50.065160317812115,49.16863396205008,49.3995592542924,48.96614380646497,49.03091236716136,48.61968236230314,47.94987535383552,47.29470724053681,48.28298317408189,47.71674208622426,48.05415112990886,48.42034335946664,48.50379010522738,47.862156671471894,48.268426998052746,49.1120765437372,49.71105291508138,50.48174624424428,49.72998516866937,48.98029641062021,48.28230424877256,47.40981278149411,47.82512386934832,48.0453689917922,48.539276770781726,49.138503074180335,49.789219710975885,49.92912962194532,49.230260386597365,48.63901802897453,47.96866534743458,47.832707858178765,48.70602354919538,48.37541538896039,48.64508934272453,48.4074743273668,47.6671821558848,46.7828780002892,46.05475790891796,46.23765427386388,46.54004423459992,46.20070345280692,46.262446047738194,46.63648414844647,46.72451489279047,45.729312632698566,45.7467135945335,46.287245890591294,45.4187548449263,44.98016110341996,44.77037011506036,45.1438340456225,45.335631599184126,44.651307720690966,45.52768323943019,44.56551634799689,45.14880800712854,45.49748773360625,44.54164224676788,45.23982782615349,46.03785423794761,45.740939760115,46.52834161138162,45.53682980546728,44.79893382266164,45.07354358397424,44.753730800934136,45.34767986508086,46.13689761469141,45.471830593422055,45.507364394143224,44.97212000237778,44.268050477840006,44.358317632228136,44.19986157724634,43.374659115914255,43.680611077696085,43.41351035563275,44.07207127381116,43.243238045368344,43.360323884524405,43.216039984487,42.27919136220589,41.409720508847386,41.43297732854262,41.05178042547777,40.28867418738082,40.12911005504429,40.282687429338694,39.891382727306336,39.99762454861775,39.84738535247743,39.20001900848001,38.940376717131585,38.61774067953229,39.05469368211925,38.07508322224021,37.5331540312618,38.32924509327859,37.49388498114422,38.26235087867826,37.74259804002941,37.38184231054038,37.454869801178575,37.22339415317401,36.291002279147506,35.356977962423116,35.74924426572397,36.20388387935236,36.02393502090126,36.342643035110086,36.82629146054387,36.90823099669069,37.06483891559765,37.251646630931646,37.12338142096996,38.100997061003,38.411590995732695,38.50394331431016,39.24566986737773,40.17494874307886,39.65245645446703,40.31348338164389,41.104333168827,41.15588455600664,40.2515228074044,39.807658857200295,40.08667657710612,39.870684158056974,39.027553520631045,39.56526465341449,40.28076640702784,40.721203269436955,40.90046404115856,40.77287078322843,40.743083372246474,41.347228076308966,42.14322856487706,41.50347901880741,40.88502364652231,40.38524128869176,40.461357036139816,41.063355199526995,40.99141792068258,40.27706109173596,41.1887773796916,40.78638403536752,40.85493547515944,41.62047425005585,41.61413010023534,42.57604079740122,42.31665227608755,42.382013593334705,42.56472714105621,42.40711764944717,42.616429071873426,42.412049600388855,42.03964403318241,41.45180484233424,42.13472536718473,42.70685078157112,42.14628499234095,41.57419518241659,42.38841943861917,42.51054412033409,42.40579322306439,42.61104313423857,43.1878782780841,42.40234779333696,43.022470283322036,43.835495822131634,43.52046016976237,43.025594105478376,43.16492128325626,43.33295879513025,44.28815630823374,44.71555490465835,45.714318291749805,45.8913457528688,45.03351044235751,45.84254455473274,46.05899658193812,45.8246213090606,45.025746687781066,45.54624985624105,45.26781166018918,44.70620489818975,44.08663004124537,43.88418624736369,43.514412022195756,44.339420300442725,44.29872002778575,43.36812266893685,43.532651748973876,44.49393492843956,43.79344570636749,43.41738377418369,42.71430266043171,42.60476799542084,42.00404889136553,42.13297745492309,41.24750616168603,42.036176699679345,41.37577803526074,41.276378917042166,41.844996438361704,40.9660029229708,41.89277763152495,41.42673575691879,41.632679756265134,42.223200855311006,41.92513288510963,42.37004490708932,42.10391112975776,42.32175906188786,43.07056371122599,43.78116353740916,44.23954616067931,43.489562975708395,42.65987740410492,43.58070479845628,43.0803825519979,42.113571368157864,42.365011773537844,42.0353253595531,42.66948150191456,43.24369572708383,43.530482173431665,44.38378222333267,43.44545152736828,42.64404680626467,43.11902115633711,42.56253592669964,41.94200088875368,41.58186581777409,42.331914484966546,42.96078915614635,42.67786133941263,42.817694288212806,43.02027996676043,42.27420889772475,42.57553314091638,41.93532223114744,42.813580493442714,42.129646215587854,42.48210645560175,42.560214307159185,41.9659194634296,42.432965563144535,43.34943432640284,44.348888222593814,44.72057324554771,45.09482130035758,44.564375799149275,44.60486726369709,44.492199290543795,43.77831376809627,43.961460372433066,44.33436195552349,44.366784828249365,43.782689054030925,43.038964001927525,42.14383471244946,42.380353494081646,42.02389121009037,41.35858930461109,41.85987719753757,42.419778688810766,42.06263488018885,41.104144571814686,41.848420303314924,42.6664758566767,43.37364474590868,43.925294529180974,44.66734099108726,43.93164598988369,43.253652767278254,42.573765026405454,42.75765701662749,41.864077031146735,41.949918147642165,42.39739510603249,41.64620860107243,42.37932752398774,41.9841739195399,42.22721706563607,42.801847056951374,42.17354163713753,41.47571266721934,40.686862531118095,41.05585638759658,41.603790492750704,42.540661494247615,41.62170666223392,41.59442494530231,41.47818951588124,41.52652099169791,41.9806746118702,42.10013252077624,41.25454300409183,40.39976522931829,41.04829715471715,41.023197463247925,41.57326254108921,42.54470726894215,42.28342919284478,41.370136484503746,40.93487429060042,40.84275963390246,39.91759794019163,38.98169883526862,38.73283198196441,39.55316109536216,39.652204035781324,39.29885846655816,39.360375352203846,40.25303165381774,40.52140160696581,39.90192673075944,40.08064127061516,39.3874180582352,39.50602933624759,38.83876600023359,39.78020354080945,40.11204618308693,39.88464530091733,39.0121479020454,38.35441167559475,37.8239407655783,38.7508583762683,38.64177065109834,38.26979597611353,38.52225773781538,39.16991795785725,38.192698054015636,37.66750998143107,37.326143082696944,37.86696521984413,37.443989508319646,36.696106682531536,35.778382521122694,35.638411334715784,35.44518941314891,34.479415248613805,35.0127397631295,34.64629810350016,34.14228734234348,33.74106967123225,34.43581588426605,34.974041108042,35.62473314628005,35.660009008366615,34.72601929726079,34.12415303196758,34.99036714201793,34.08109864871949,35.02281640237197,35.913028843235224,36.24011333519593,36.18871269049123,36.663633020594716,36.929044903256,37.911574124824256,37.38007953343913,36.74581470899284,35.96778282336891,36.66882167709991,36.23629446187988,35.326069929171354,35.41837746929377,35.49894568603486,34.828684392850846,35.61996381031349,36.290515353903174,36.853551134932786,37.03805672377348,36.61590647883713,35.98527711676434,35.98744174139574,35.41270128963515,36.00685195624828,35.13599776336923,35.7729456871748,36.3874448640272,35.53819449106231,35.864625153597444,35.92658019531518,36.856031358707696,36.14130239468068,35.661232681479305,36.25552085507661,36.154533388093114,36.05186138069257,36.471221804618835,37.219705055933446,37.38106302451342,38.320372842717916,38.30113669112325,37.94752488192171,37.228592331986874,36.815815943758935,36.247223573736846,36.24235185654834,35.94094283087179,35.11356862913817,35.7855785661377,35.678950102068484,35.36964285420254,34.626308334525675,34.034373139962554,33.142359509598464,33.029826576821506,32.55472397478297,32.97408831119537,32.42001933604479,31.526981220114976,30.54231244698167,30.82323173712939,31.654565716162324,32.26112721255049,31.83810079516843,31.311201540287584,31.38873660750687,31.62306258548051,31.57238894375041,30.89540505828336,30.313495949842036,31.206543367356062,30.587728158105165,30.05320666404441,29.48863918054849,30.34836760116741,29.711494509596378,29.329532952513546,29.084905117284507,29.386461875401437,28.767946570646018,28.844429756049067,28.14350880496204,27.825600131880492,26.95426279073581,26.963883437681943,26.25433485582471,26.380392624996603,25.95290832873434,26.324475293513387,26.184665116481483,25.186121257953346,24.499204935971648,24.53971478017047,24.557872869074345,25.388097990769893,25.416339702904224,24.82060314435512,25.290142430458218,24.656580068171024,24.487775787245482,25.216056776233017,24.467328387778252,23.87506271759048,22.965522212907672,22.98967840569094,22.54668389633298,21.66610380401835,21.95389144262299,21.410970838740468,20.79405450168997,19.825643219053745,20.114176977425814,19.565311388578266,19.43104773387313,18.61998545471579,18.109196248929948,17.946181934326887,17.341575199272484,18.102019750047475,18.049195503350347,17.97273756377399,18.548712514340878,17.651949502993375,18.514694774057716,18.547067765146494,18.068009454291314,18.168545939959586,18.502850119024515,17.820617442019284,17.80544907739386,18.013998977839947,17.15845461562276,16.388372686691582,15.889892672654241,15.9261132190004,14.948800668120384,15.416932499036193,15.752229314763099,16.17805211059749,17.09583710040897,16.757444546557963,16.822333842981607,16.0004007560201,15.632946758996695,14.717062999028713,14.612610537093133,13.892888980451971,14.183389503508806,13.205929418560117,12.372111794538796,12.879782767500728,13.41065133921802,13.458067794330418,12.481856041122228,12.853914314415306,13.327384382486343,12.5761774815619,12.337895090691745,12.05693463794887,12.38279628334567,11.654073836747557,11.60826712101698,11.548346001654863,11.331234199460596,10.802426781505346,11.443566628731787,10.776468933559954,10.385889258235693,9.902855920605361,10.692442006897181,11.483150975313038,11.15761832240969,10.675376782659441,11.50273826206103,12.363713746424764,12.40769731067121,11.691155060194433,12.388277882244438,11.659241915214807,11.879208353348076,12.239294686354697,11.355074778199196,11.316308992914855,12.001975672319531,11.803869442082942,12.185940861236304,11.352021142840385,11.245255171786994,11.125935030169785,11.577334307599813,10.72556059062481,10.93193044140935,10.870668713003397,11.237652366515249,10.567781104706228,10.357084312010556,9.746435226406902,9.417345052119344,9.234825768042356,9.446366971824318,9.508754203561693,9.136394433677197,9.089681319426745,8.176722556818277,9.071630894206464,9.858622927684337,10.051257889252156,9.541126498021185,8.571979060769081,8.830699211452156,9.08001627959311,9.747889656573534,10.285000890493393,10.840784529224038,11.683098160661757,11.028149693273008,11.639587996993214,11.504313021432608,10.542770873289555,10.045679133851081,11.042480710428208,10.93400498945266,11.472854313906282,11.994344662874937,12.95143274590373,12.625760016497225,12.760650461073965,13.321768945548683,13.711683612316847,13.912824525497854,13.850532344542444,13.488806376699358,12.876644473988563,13.687251733615994,13.91797579266131,12.997439350001514,12.397663994226605,13.163655451964587,12.620526784099638,12.236910030711442,12.01501303864643,12.976330902893096,12.232533414382488,12.53662155335769,12.12146051460877,11.414594291243702,11.56665871758014,10.967522320803255,11.9519820548594,12.005600367672741,12.36688037076965,12.766882947646081,13.025515189860016,13.443912672344595,13.095616973005235,13.918989142868668,14.299553832039237,15.172405931632966,15.605891414452344,16.40135119110346,17.366965412627906,17.51886126352474,17.108952053822577,17.898914557881653,18.376314635854214,18.844637045171112,19.758528696373105,18.873291859868914,18.48589223390445,19.19638910749927,19.189416472334415,18.751557167619467,18.07785846851766,18.359854591544718,18.25595494080335,18.849042234476656,19.438313867896795,19.14603489683941,18.153214105870575,17.8570610540919,18.60084055736661,18.88572624558583,18.06655426742509,18.06026826798916,17.121714963112026,17.620379582978785,17.85644696513191,17.64955869363621,17.875056326389313,17.891126011963934,18.809903788845986,19.629147524479777,19.108197330497205,18.216757893562317,19.11761303525418,19.66287104273215,19.90679144812748,20.223263797350228,20.820429406128824,20.100741098169237,19.77640970190987,19.85566454194486,19.87147209700197,20.258654175326228,20.83912942511961,20.089303055778146,19.955664542503655,19.63939581019804,20.549135422334075,19.844245203770697,19.144780219066888,18.229035006370395,17.432281008455902,18.014494297094643,18.588103414978832,18.49472744623199,18.537653034552932,19.292632264085114,18.3189618983306,17.604598983190954,17.364535926375538,18.09892762079835,17.33450854429975,17.565976932179183,18.056181942112744,18.701740519609302,19.339405459351838,19.327800824772567,19.505806162487715,19.74740515090525,20.420885601546615,21.140850188210607,20.948169535491616,20.64303951850161,21.137009236495942,21.29963513556868,20.32163041131571,19.612575280945748,19.733058486133814,19.75587885454297,20.66486295266077,19.711179792881012,20.15832179458812,19.331095217261463,19.4185930211097,19.015318513382226,19.057731488719583,19.99192721582949,19.247014965396374,19.164165508002043,18.74159949971363,18.629334293305874,17.75780135113746,18.082352119032294,17.896600244101137,17.319689615163952,17.82435402320698,17.109795939642936,17.33114970009774,18.312629041727632,19.1792408041656,19.156503276899457,19.413551781326532,19.042934263590723,18.679730927571654,19.193306057713926,18.41371203493327,17.813950787764043,17.42329578427598,18.415551780257374,18.09049951378256,17.973318291828036,17.80485120229423,17.397572515532374,18.036744996905327,18.29060591198504,18.075508701615036,17.654129611328244,17.62608322268352,17.04924028646201,16.82021139888093,16.33810654329136,15.340151988435537,14.369747152552009,15.127890855073929,15.791041695512831,16.639071135781705,16.584706413559616,16.895195624325424,17.758260423783213,18.484402609523386,19.09260513773188,18.6857533659786,18.563463838305324,19.47886604582891,18.651850562077016,18.685623151250184,18.5813978202641,17.672167249489576,18.60900424234569,18.777853538282216,18.87370340945199,19.06225815648213,19.243945946451277,18.829283718951046,19.6226688278839,18.79392803600058,18.18872379604727,18.06224043155089,17.348828243091702,17.283845108933747,17.889594196341932,18.606787679716945,19.497021530289203,20.090344795025885,19.777025441639125,18.99584567686543,18.824925378896296,17.87013003323227,17.323847039602697,16.532848038710654,16.491374887991697,16.532132880296558,16.228142934385687,15.997503610793501,15.650288889650255,15.963687103707343,16.134533748030663,15.241818967740983,15.464934560004622,16.00778920855373,16.698901956900954,16.121263400185853,15.495429756585509,15.729503097012639,14.992456539999694,14.034122838638723,13.886839952785522,14.795752906706184,15.666229929309338,16.45076639484614,16.843431568704545,17.02656491054222,16.120426434557885,15.260568232741207,14.934660393744707,15.856885467655957,14.949483398348093,15.705834562890232,15.011281854938716,15.490590114146471,16.184887413866818,16.829895878676325,15.973659730516374,15.184233019128442,15.11730203544721,16.06436133477837,17.018460747785866,16.65036006551236,16.408548727165908,15.663661068305373,14.785172576084733,15.304681229870766,14.490796307101846,14.31780699081719,13.707081517670304,14.066669000778347,13.130549391265959,13.416174631100148,14.398234301712364,14.083423618692905,13.98332118941471,13.754277826286852,14.007359256967902,13.771127819083631,14.119842219632119,15.004599504638463,15.589063831605017,16.291093381587416,16.857926244381815,16.326617622282356,15.810429958626628,16.48780839331448,16.81032384559512,16.006668941117823,16.076072476804256,15.435451128520072,15.964128204155713,16.223553584888577,16.61675785155967,15.813738538417965,15.20495738973841,15.62004940630868,15.355244219768792,15.368700379505754,15.989356680307537,16.474066885653883,17.338337599299848,17.053138834424317,18.00425284449011,18.229455575346947,18.859405907802284,18.050105914473534,18.61842960352078,19.350254430435598,20.284535139333457,21.092313070315868,20.256699907127768,20.29482315480709,19.695095849689096,20.450333750341088,20.200317822862417,21.034615970682353,20.800736007280648,20.729042429942638,20.1679719844833,21.088854708708823,21.062649787403643,21.64463695557788,21.721639083698392,21.956078548915684,22.71736968960613,23.246506655588746,23.37013554899022,22.977735021151602,22.56228078575805,22.35751648247242,22.16763156838715,21.296845029573888,21.484022978693247,22.271558550652117,23.207660978659987,22.338789166416973,22.482538293115795,22.262601857539266,23.216705956030637,23.38214303459972,22.62103778636083,22.917974354699254,23.090551524423063,22.31075227819383,21.623332154005766,22.021258397959173,22.841379560064524,23.421564572956413,23.27619658363983,24.120809788815677,23.368656689301133,23.25994204543531,22.77948852395639,23.753237417899072,23.851510886568576,24.811601750552654,24.894927783869207,25.601406706962734,25.36999257002026,26.042789451777935,26.154780839569867,25.55218577431515,25.66974831512198,25.21860460890457,25.341010590083897,26.259610583540052,25.81974749919027,24.952702860813588,25.834151888266206,26.64869777811691,27.462672058027238,28.326689081266522,27.57867867173627,27.586501022800803,28.249301569070667,28.70931273372844,28.799105231184512,28.538163787685335,29.4254662534222,28.821128871291876,28.11161916470155,28.72845208644867,29.02720217499882,29.066919591277838,28.157887785695493,27.68563776696101,27.44390450231731,28.141796805895865,27.174379753880203,26.853400349617004,27.007757287472486,27.525334105361253,27.67258483497426,28.167179103475064,28.895424633752555,29.69823899678886,28.85315536754206,29.679460695479065,29.29758950928226,28.429335329215974,27.9447501427494,28.88223124202341,28.481367447879165,28.364410951267928,29.03900149045512,28.22345635574311,28.96480989968404,28.869089833460748,28.87060987763107,29.11889071436599,29.959846717771143,29.321673657745123,28.56478032609448,28.735208916012198,28.79971640696749,28.216910481452942,27.731371386442333,27.394646047614515,27.956139417830855,28.87971102911979,28.62103838287294,28.667592835146934,28.14316085074097,28.26123366272077,27.588735772296786,27.707894711755216,27.79119312763214,28.1011151955463,29.021516006439924,28.881912876851857,28.107564624398947,28.19367230311036,28.255045141093433,28.81187711050734,28.29636044194922,28.798496894538403,29.555207187775522,30.352146418299526,29.56074640341103,30.27090672031045,30.428821134846658,30.58375026471913,29.741240818519145,29.707223086152226,29.834153073839843,29.399055677466094,29.92810956761241,29.843773425091058,28.94198269676417,29.166199010796845,28.641000205650926,28.804040093440562,28.92871635267511,28.206891490146518,27.731128689832985,27.9052871982567,27.695426918566227,26.769063874613494,25.919374024495482,26.230780700221658,26.373381892219186,26.679482055362314,27.63888443587348,26.643873857334256,26.48680791631341,25.806844972074032,25.65301481867209,26.617633379995823,26.521213192492723,26.50218240916729,25.970211579464376,25.23094595829025,25.26787483971566,25.092404153663665,25.68358443165198,26.6467917682603,27.152682282496244,26.203258955851197,25.401837831828743,25.651138086337596,26.024654265493155,26.84838963393122,27.145651147235185,26.43477316433564,26.634291933849454,26.544253130909055,26.313919943291694,25.945197388064116,25.979372726287693,25.511253176722676,24.865688829682767,24.683565468527377,25.202669798396528,24.642468403093517,23.67929870262742,24.62141259945929,25.321565330494195,24.44399334024638,25.22470001736656,24.64750956185162,24.594727747142315,24.084095344878733,23.185565017163754,23.621346834581345,24.0650075240992,24.294715486001223,23.687577332369983,24.46839262964204,24.886086465325207,24.390080243349075,24.11631768895313,23.56555274873972,23.154934087768197,23.457749110646546,22.562639760319144,21.71115680411458,22.429691965691745,22.03295810194686,22.059662849642336,22.490504044573754,22.17546504922211,22.9547857074067,22.339350662194192,21.820135599933565,21.75102702435106,21.16954537946731,21.102888897061348,21.681146911345422,21.30143707897514,21.204441680572927,21.434324492700398,22.035311579704285,21.48817764595151,21.090729896444827,21.041462656576186,20.521640363149345,20.71607272652909,20.85420288797468,21.07029834482819,20.530252892989665,20.133955765049905,19.677486868109554,18.95949616190046,18.528179246932268,19.33390156691894,20.042729432228953,19.879678836558014,20.223225281573832,20.478327821474522,19.734704792965204,19.853773006703705,19.883368626702577,20.364943070802838,19.775603653863072,19.630965759046376,19.327543679624796,20.170228852890432,19.526141269598156,19.710781033616513,20.549702166114002,19.79508882202208,20.6189329396002,20.184283854905516,20.485495783388615,20.140173715073615,20.56361324712634,20.763530447147787,20.13966084131971,20.07477585831657,19.723336500115693,20.255857985001057,20.314954172819853,21.297762832138687,21.293591880705208,21.51667628157884,21.017580195795745,21.369907055050135,20.7835224987939,21.07267202856019,20.459350136108696,20.755665413103998,21.08323344308883,21.263745454140007,21.401077731978148,20.453881049063057,20.049599547404796,19.769067413639277,19.496927685569972,19.501170937437564,19.797267452813685,19.989744439721107,19.46776898857206,19.863168807234615,20.53357896534726,19.616645415313542,20.441073432099074,20.29466597456485,19.664157772436738,20.173981135711074,20.67107690544799,21.092173411976546,21.74417207716033,22.243361345492303,22.235858926549554,21.909074657130986,20.99747530790046,21.36502099270001,22.013123338576406,21.555629906710237,22.03706684662029,22.329791410826147,21.592563695739955,22.253770304843783,23.025453578215092,22.451191276777536,22.29833511635661,22.460423391778022,21.8823407352902,21.533526042010635,21.990268669556826,22.160950479563326,22.26523107290268,21.63246202748269,21.482480195350945,21.796179093886167,22.356403845828027,22.391099844127893,22.876998895779252,23.811800244264305,23.796866334974766,24.5040792087093,23.67693813564256,24.16897963033989,24.328805930446833,23.340307537000626,23.002366522327065,23.069498762954026,23.040910257492214,23.71071558445692,24.48449006676674,24.464275773148984,25.05222609359771,24.61623642873019,24.574061735067517,24.95149735175073,24.979355045128614,24.740442199632525,25.25176072306931,25.16590770194307,25.617469316814095,25.444259772542864,25.922963376156986,26.68383716372773,27.492751620244235,28.025107752066106,28.483890626113862,27.76450726715848,28.340517031028867,28.456274404656142,28.296984267886728,27.64543945575133,26.82621408579871,27.672882716171443,28.302668725140393,27.376302330289036,28.2169254347682,28.068443831056356,27.374846074264497,27.590391863603145,28.10048353439197,27.18314830819145,27.425350580364466,26.572909803595394,25.98573005013168,26.531652581412345,26.133507454302162,26.48090621130541,26.789411437232047,26.463429728057235,26.187839561142027,26.529982693959028,25.685848666820675,25.85878971684724,25.22449067234993,24.307220875285566,24.386362205259502,25.11740191001445,24.27071902854368,24.600972363725305,24.415754454676062,23.82809695089236,23.463348692748696,23.29091486800462,23.648965889122337,23.635986501351,23.736439454369247,24.49685197370127,23.66355464560911,23.833175090607256,23.093661767896265,23.76349951280281,23.418406310956925,23.269080905243754,22.559543299488723,21.61019263835624,20.91742768511176,20.811531393788755,20.86116965766996,20.722418751567602,19.992219008039683,19.41357125667855,18.71841038344428,18.56303836358711,18.491810916922987,19.349821022246033,20.190969315823168,19.752856217790395,19.24909999826923,19.036231372971088,18.394479212816805,17.923138642683625,17.75857965601608,18.705778737552464,19.470046921633184,19.194999125320464,19.028690843842924,18.353323456365615,17.939478509593755,18.311045703012496,17.313906578347087,17.86836988432333,18.45398703031242,19.358333121985197,20.22345291217789,19.8401120537892,19.38930544583127,19.853071057237685,20.521401673089713,20.05906027974561,19.599995041731745,19.164464614354074,19.273550196085125,18.538972176145762,18.72826508525759,18.167301647830755,17.515517126768827,18.015371395740658,18.437325309496373,18.24432668928057,18.857867191080004,19.304371802136302,18.85442890645936,18.22847369639203,17.42030048230663,16.851732803042978,15.889611898455769,15.668156654108316,14.716299476567656,15.693873743992299,15.350001599639654,15.034344535786659,15.865552933886647,16.092002199962735,16.870423859450966,17.514215348288417,17.331677814479917,18.225628772284836,17.357083078473806,18.3264460391365,18.57890864694491,19.03331963857636,19.38036622432992,20.104035566095263,20.655186030548066,21.281776800286025,21.87113190861419,21.96294661052525,21.43278391379863,22.015854800119996,22.596791280899197,21.990366894751787,22.540315084159374,22.631635178811848,21.82788767432794,21.40167566947639,22.24680257542059,21.332662283442914,22.15218245377764,22.706980695482343,21.989747206680477,21.492529918439686,21.921040969435126,21.421442976221442,21.172903979197145,21.041230979841202,21.190956850536168,22.045911338645965,21.511533357203007,22.48185503669083,22.355624004732817,21.49688963405788,20.791569492779672,20.9167085532099,20.11299017816782,19.121663393918425,19.708406968042254,20.36960825556889,19.835346792824566,20.601506975945085,20.988263104576617,21.32105963025242,21.520342425443232,21.94542209105566,22.401435028295964,22.46715217549354,22.751012014225125,22.996041350532323,23.62465207837522,24.122203888837248,23.674608224071562,22.70314836828038,23.30122107360512,23.17616345686838,23.153895776253194,23.74462132388726,24.520322117954493,24.35899730073288,24.065669076051563,23.13736827392131,22.479203656315804,21.964180629700422,22.124697270803154,22.66944266948849,22.844676543958485,23.383645947556943,22.88758459640667,23.37763343239203,24.126954925712198,24.377188032027334,24.61592183029279,24.923392169643193,25.885346129070967,25.33914419123903,25.910655826330185,25.580398756545037,25.43677922245115,25.698175886645913,25.594094912987202,24.651150594931096,24.81935184262693,24.256837030872703,23.90847544791177,24.15644214209169,24.58240273874253,25.333045130595565,25.157991491723806,25.05416611302644,24.738122288603336,23.753254756797105,24.219315233640373,25.112440480850637,24.236855200491846,24.313476592767984,23.763204712886363,22.938193165697157,21.97832524124533,21.830726441461593,22.632385204546154,22.143631699495018,21.176845686044544,22.080643483437598,21.394521883688867,20.670972251333296,21.069595873355865,20.078508202917874,19.647673317231238,20.413136293180287,20.81607716018334,20.103514079004526,20.74405119335279,21.526102784089744,21.605432925280184,21.61224874248728,22.299389806576073,22.79327647574246,23.375860596075654,22.696139129344374,21.921179190743715,22.48768357047811,22.28529114788398,23.164848886430264,22.575962363742292,23.54962261300534,23.295180834829807,24.01738879363984,23.50974031398073,24.167695072479546,23.837817292660475,23.10766387777403,22.770742556545883,22.58069568220526,23.51114377239719,22.789203176274896,22.327776635065675,22.77598562510684,23.010549943428487,23.60602925810963,24.563913645222783,25.424122448079288,25.09304869035259,24.424320514313877,25.140896959695965,26.052402498666197,25.364055823534727,25.07040618453175,24.984681030269712,25.20409303996712,25.51161345653236,25.424393620807678,24.53736735135317,25.16345000686124,24.598519828170538,25.221139993984252,25.283935422077775,26.24753113044426,26.05741288140416,25.66014597704634,25.63629564875737,24.933311484288424,24.53623744705692,23.89229911658913,24.031543290708214,23.66565345134586,23.923308021388948,23.23971322365105,22.575472460128367,21.791261435486376,22.407571209594607,23.199160750489682,23.68125598039478,24.482429730705917,24.919043099042028,24.064697097521275,23.876563268713653,22.96562687912956,23.4813830293715,24.18346586357802,23.26473474316299,22.37442585732788,22.194853590801358,22.748691853135824,22.01843647286296,22.61198339611292,22.133137026801705,21.579223928041756,21.458869179710746,21.51295461365953,21.495800476055592,20.937907889019698,20.21607585484162,20.07463085791096,19.68012832896784,19.37994665047154,18.556729869917035,18.09073087014258,18.871150499675423,18.739381086546928,18.006744850892574,17.725631236564368,18.449390443973243,17.76219270285219,17.454295952804387,16.931057800538838,16.679339008871466,17.027549003250897,17.520101136527956,16.89242852991447,17.33044287515804,17.804914568085223,18.69665012927726,18.53899511694908,19.05516900215298,18.4224696746096,19.30153528507799,18.568499818909913,18.92338512139395,18.161778124049306,17.776723626069725,17.28563690232113,17.01261144829914,16.126712613739073,16.744130743201822,17.20099009014666,17.624889889266342,17.524575309827924,17.24120343476534,17.32770058931783,18.119111580308527,17.744645326863974,16.86042259586975,16.337022472172976,16.1223088321276,16.14713404327631,16.729448002763093,16.778930800035596,16.163891731761396,16.613050682935864,16.160027691628784,16.79106874577701,16.97468299185857,17.324717037845403,17.94202663609758,17.34953520586714,18.015781331341714,17.098958018235862,17.029468926601112,16.828331985976547,15.969292500987649,16.774210525210947,17.04211511509493,17.168734098784626,16.68682552780956,16.631194338202477,17.135978336445987,17.58384098438546,18.23570706648752,18.1658863350749,17.745663058478385,18.62926589231938,18.651723922695965,19.26815975503996,19.716903808526695,20.223011089023203,20.904845918063074,21.297269449569285,21.108979664742947,20.74827510258183,20.56127097737044,21.005637866444886,21.32236919598654,21.130890613421798,21.725055827293545,20.971657626330853,20.73280537361279,20.806462480220944,20.473097374662757,20.128171888180077,20.109856212045997,19.282828354276717,19.125544408336282,19.423253850545734,19.476726330816746,18.67800979455933,19.159850678406656,18.92420811066404,18.28046758985147,18.984215015545487,18.14565698429942,19.04499953566119,19.12805247027427,20.044064918067306,19.882412164472044,19.168353786226362,19.131830556783825,19.259744740556926,18.27096130186692,17.45280199125409,16.575106647331268,16.771363630890846,16.448805113323033,16.39707829244435,16.432083716150373,16.637889196164906,15.770564077422023,15.003206497989595,14.63313548779115,13.971362522337586,13.292917005252093,14.184915180318058,13.930785950273275,13.347922400105745,14.294205905403942,15.211149715818465,15.066463413648307,14.800867430865765,15.045702122617513,14.796160599216819,14.067457548342645,13.929069735575467,13.534798447974026,12.58737574191764,13.333807673305273,12.570418115705252,13.140067676082253,13.628269251435995,13.600319211836904,14.294495164882392,14.170865850057453,14.361335082445294,13.445345239248127,14.314409743063152,14.13215165445581,13.187302339822054,12.305788915604353,12.352845686022192,11.775946052279323,12.108604012522846,12.996123951859772,12.55973198171705,11.573037861380726,11.66184511128813,10.858896971680224,11.7605304652825,11.170105692464858,10.358247330412269,11.053083377424628,11.43985515832901,11.458727621473372,10.476423738524318,10.14814509730786,9.702654044143856,9.153218014165759,9.316719595342875,9.807113259099424,10.688429835252464,11.205020430963486,11.196816401090473,11.616396869998425,12.164713143371046,13.013012365438044,12.426660465542227,11.980825689155608,11.368800069671124,10.93522649211809,11.792782414704561,12.40905913291499,12.475970294326544,11.985178328119218,12.912194044329226,13.229992558248341,13.953475759364665,13.07759266672656,12.433179127518088,11.519473566673696,11.246313768904656,10.6880756104365,10.159659503027797,10.76122154481709,10.153731280006468,10.738310287706554,10.157638819888234,9.469192469958216,10.120335110928863,9.975218642037362,10.90915471734479,11.521118899341673,11.665144202765077,12.528064762242138,12.882359560579062,12.676955590490252,13.447166160214692,14.2954097292386,14.233696166425943,13.79345687944442,14.503762306645513,15.40403864858672,14.93488418450579,14.139538612682372,14.718825228512287,15.46406858926639,15.031424113549292,15.219712832476944,14.786465048324317,15.527409812435508,15.654330751858652,15.09078833926469,14.611871921923012,14.852787947747856,15.015756494365633,15.717779677826911,14.845894659869373,15.260421517305076,14.676850245334208,14.108137949369848,14.320565874688327,14.345717185176909,14.257167050149292,13.647242709994316,14.140340301208198,15.092990449164063,14.202292877715081,14.06938284356147,14.715768011286855,14.636743776034564,13.786770255304873,13.033553109969944,12.36208259081468,11.879859812557697,12.742997486609966,12.869131586514413,11.879257999360561,11.701537068467587,11.963425210677087,12.008267113473266,11.97845600079745,11.493882447481155,12.475008614826947,12.442921059206128,11.529939558822662,10.925956171471626,11.716741923242807,12.38656005449593,12.875398144125938,12.440572589170188,12.141203427221626,11.640842092223465,12.426312370691448,13.012568729929626,13.744051925837994,13.364927841350436,13.295681369956583,12.575831616763026,13.16802348010242,12.224739456549287,12.760681835003197,12.15513675287366,12.784579548984766,13.61818716302514,13.735054043121636,14.042030323296785,14.514180429745466,13.521927236579359,14.360175165347755,14.59513295115903,14.910634326282889,14.030538226943463,14.093324386980385,14.146925726439804,14.296319080516696,13.594621071126312,12.884507345035672,13.538431697525084,13.640242388937622,12.76327168988064,13.233378695789725,12.70348139340058,13.328225902747363,14.122821703087538,14.501425191760063,14.059817518573254,14.312629804946482,13.855983286630362,14.26137446379289,13.560004947707057,14.430907858069986,14.213218806311488,14.085898301564157,13.74199236324057,13.420853875111789,14.176424744073302,15.106660945806652,15.72912291623652,14.94038970861584,15.533983449451625,15.621083096601069,15.070770461577922,15.100556964054704,15.847631256096065,15.307085724547505,14.488663699943572,14.697940765414387,13.976534244138747,13.742277993820608,14.055837073363364,13.309313906822354,12.724881505593657,12.816681687254459,11.86748816492036,12.21435129828751,11.347011191304773,10.777882255613804,10.823091872502118,11.533486717846245,11.88176315324381,11.047369887586683,10.941280668601394,11.523102790582925,10.743345279246569,10.943481506314129,11.733249462209642,12.365180875174701,12.128824062645435,12.587490520905703,12.848909719381481,12.52920015156269,12.441110561601818,13.307690676301718,13.03931872267276,12.80453984439373,13.064606924541295,13.537965953815728,12.793803094420582,12.986458159517497,12.639581720344722,11.730741053353995,12.659698189236224,13.477727712132037,13.324939411599189,13.174636581446975,12.861421936191618,11.955854044761509,12.352343341335654,11.455953597091138,11.702851344831288,11.972639536950737,10.98319035815075,10.249056510161608,10.77986889705062,10.571439482271671,11.441252143122256,11.700685680378228,10.954882606863976,10.033116183709353,9.651257959194481,10.219189492985606,10.566349115222692,10.340739087201655,10.524743936955929,11.520231786184013,10.832913629710674,10.037698252592236,9.894382527563721,9.497128169517964,9.035647212527692,9.48398359073326,9.382539661601186,9.891552262473851,9.89803869696334,10.26625176332891,10.232224526349455,10.011571330018342,10.928247844334692,11.241473096888512,11.544638196472079,11.35258549079299,10.928085622843355,11.711925427429378,10.955099232960492,10.945390034932643,10.26153540564701,10.478225406259298,9.929210810456425,10.846654755063355,11.382686113007367,11.623221622779965,12.424589075613767,12.429310391191393,11.882872268557549,12.148580407723784,11.438644485548139,11.992411460261792,12.661134416237473,13.461252769920975,12.70568797038868,13.060562334954739,13.446148629765958,13.47211050381884,13.081169084645808,12.250977159943432,12.428570656571537,12.084243793040514,12.242747467476875,12.993675572331995,13.921799802221358,13.82794693345204,13.207921918481588,12.89902723673731,13.776065512094647,13.235861948691308,14.043077934999019,14.207556984853,14.232628219760954,13.396781969815493,12.848009112291038,13.228824202902615,12.851077552884817,12.159935200121254,12.136882381513715,12.94261325057596,13.313977593090385,13.22303846012801,12.755189814139158,13.033003404270858,13.279876390937716,13.407744244206697,13.037702972535044,13.663631150964648,13.905481810681522,13.173307171557099,13.623876482248306,13.766740282997489,12.845064691733569,11.912408868782222,11.827485884074122,11.507660251110792,11.054648585151881,11.913858442567289,12.898735044058412,12.280736862681806,11.824504356365651,11.448613112792373,10.841721093747765,10.823472456540912,10.47913042921573,10.110053922515363,10.774377731140703,10.128563067875803,10.857442214153707,11.773653325159103,12.116597696207464,12.6423923606053,12.436582759022713,11.896547581534833,11.788465605583042,11.135272683110088,11.062202098313719,10.300664045847952,9.317721984349191,8.954576577525586,9.490600503981113,8.79135215189308,8.659767554141581,8.358029933646321,7.684867501724511,6.7419311865232885,5.891739521641284,4.994754683692008,5.7907378021627665,5.342577046249062,5.709583687596023,6.085265438072383,5.4659402198158205,5.55112591246143,6.5057974718511105,6.448631119448692,7.072392232250422,6.953380544669926,6.10994609631598,5.57773969694972,6.108839517924935,5.939965121913701,6.039258137345314,6.216581321321428,6.337360348552465,7.305203614756465,7.477137097623199,6.8732562540099025,6.098175555001944,6.308418323751539,6.708962961100042,5.7734409351833165,4.822827162221074,4.126921086106449,4.602403899189085,4.952820084057748,4.090229730587453,4.761710643302649,4.6399405635893345,4.63781805196777,5.0221505160443485,5.684223034419119,6.122037877794355,5.937432273756713,5.743954116944224,4.808196610305458,5.15970114339143,4.491890395060182,3.975742899812758,4.669333041179925,3.9703355068340898,4.361563334707171,4.811268863733858,5.390946192666888,4.392095420975238,4.187922888435423,4.728950975462794,3.9557073726318777,3.6122254501096904,4.04491783445701,3.0858954242430627,2.8359189718030393,2.2115067006088793,2.850658002309501,1.962290768045932,1.7040358148515224,1.9015142805874348,2.860150855500251,3.1775021888315678,2.9387905606999993,2.124505558051169,2.2688010134734213,1.8550882716663182,2.4947056882083416,1.7476030699908733,1.5202285582199693,1.9081525402143598,1.4201467796228826,1.551360808312893,2.4109933036379516,3.2612432935275137,3.6407000916078687,4.1687580100260675,3.7612570109777153,4.058648436330259,4.97865421930328,4.111824284307659,3.447924914304167,2.7914019259624183,3.468761335592717,4.30758236348629,3.7063425723463297,3.971409473568201,3.058215953409672,4.020454774610698,4.327196127735078,4.357341776136309,4.946908639278263,4.2806298322975636,4.9894964187406,4.03076711948961,3.567509714048356,4.082965426612645,3.94475653860718,3.7170615405775607,3.3845460526645184,3.1817850787192583,2.844590275082737,2.8374891048297286,2.0932787396013737,1.9000558191910386,2.254101866390556,1.9031082512810826,1.6746358717791736,1.546869829762727,1.7627771953120828,2.2836921489797533,1.8250783486291766,1.7261041388846934,0.7969223950058222,1.7677618945017457,2.055183441378176,3.0241693453863263,3.279654800891876,3.511854210868478,2.6162523245438933,2.007501329295337,1.7784776473417878,2.647460483945906,3.6092157578095794,3.7226957292295992,4.018202668055892,4.9568267916329205,5.202908522449434,5.559227091260254,5.575000178068876,5.447606915142387,4.609006618149579,3.727497416548431,3.1702865506522357,2.9327107784338295,3.8510696943849325,4.1305097988806665,3.5688391756266356,4.559503734111786,3.6371926409192383,3.319317714776844,3.4052012139,2.49818674987182,2.8787913993000984,1.956266428809613,1.2195879612118006,1.056168554816395,0.8491599336266518,1.3945451406762004,2.081923944875598,1.8137910012155771,1.803281963802874,1.2960634264163673,0.5576952854171395,-0.26654735719785094,-0.3335205200128257,0.46942444425076246,0.6022542947903275,-0.15997851034626365,-0.9889291515573859,-0.6212178100831807,-1.584250511135906,-1.3267824975773692,-1.186295819003135,-1.6312289261259139,-2.56320460094139,-3.1611015433445573,-2.250232806429267,-1.7821600972674787,-1.5952948541380465,-1.3460786174982786,-2.013181067071855,-1.730206798762083,-2.113646394107491,-1.6022442178800702,-1.8111021122895181,-2.416012960486114,-2.8262491757050157,-2.246008599177003,-1.7260629190132022,-1.2087174211628735,-1.7700677723623812,-1.2886594613082707,-0.9143119482323527,-0.6657420662231743,-0.32536006486043334,-1.2765670693479478,-0.4364264509640634,-0.7110083866864443,-0.9360584081150591,-0.6604341939091682,-1.111722094938159,-1.787080306559801,-2.544286834076047,-2.077450757380575,-2.1778091322630644,-1.9964750604704022,-1.8422990376129746,-1.3588052364066243,-1.684710529167205,-1.3186479243449867,-1.5744298319332302,-1.2819472746923566,-1.5851457230746746,-2.053493912797421,-1.8291429774835706,-1.8186947237700224,-0.9354133787564933,-1.3358497326262295,-1.8838635082356632,-2.194211949594319,-1.5549279223196208,-1.1024980321526527,-0.5580072817392647,0.3634399138391018,-0.47860822128131986,-0.9080311749130487,-1.5583726661279798,-1.7280583586543798,-1.1302006053738296,-1.7306461473926902,-2.14403753913939,-1.8765208767727017,-1.408120068255812,-1.290942095220089,-0.4678528280928731,0.11033859988674521,-0.7367612970992923,-0.2159384610131383,-1.1502376906573772,-0.3073963727802038,0.3852066993713379,1.3090766002424061,1.5023111552000046,2.2011438505724072,2.4188659894280136,2.376330236438662,2.3095470000989735,2.3762998902238905,2.531544168945402,2.8211731943301857,3.6201671231538057,4.058513879776001,4.289740938693285,3.9592930912040174,3.31306031672284,4.272190131712705,4.729103485122323,5.5814224244095385,4.770253474358469,5.401937334798276,6.152352669741958,6.494215758051723,6.7530908598564565,6.730355475563556,5.865822602529079,6.366621503606439,6.732454549986869,6.972155491821468,6.5120729939080775,6.092406617011875,6.841160359792411,6.371039941441268,5.596715696156025,6.585625933483243,6.7271837829612195,6.435779963154346,7.151135672349483,6.156892747618258,5.932275026571006,6.595567481126636,6.864805496763438,6.010705367196351,5.157076004426926,5.646159726660699,6.170868570450693,6.640801179222763,6.206238268408924,6.199886328540742,6.007249359972775,6.566358000040054,5.769375563599169,5.713944315444678,6.539768477901816,6.2705151359550655,5.770516583696008,5.994521608110517,6.249749229289591,5.97639304259792,6.290218647103757,6.085777225438505,6.795631810091436,7.382598546799272,7.940126224886626,7.049331753980368,6.199248979333788,6.02458841027692,5.152626182418317,4.241764465812594,4.016352950595319,3.7189471065066755,4.047877151984721,3.1667330833151937,2.435457362793386,2.740835949778557,1.9923089765943587,1.4807273945771158,2.386585669592023,2.656780677847564,2.354380407836288,2.2059328299947083,2.1887693987227976,2.3489818051457405,3.162908114027232,3.926226277370006,4.393154363147914,5.140843814704567,4.997672203928232,4.80597599549219,4.120623611845076,4.807197975926101,4.089066049084067,3.0969257187098265,2.979432662948966,2.5895787053741515,3.323494336102158,2.649863187689334,2.8291383180767298,3.218428525608033,4.123263425193727,3.761251102667302,3.286703797057271,2.8298720652237535,2.4716852214187384,1.605916725937277,2.1637209434993565,2.4779451210051775,3.3217279743403196,3.507152364589274,2.6522831516340375,1.9998424132354558,2.6314592752605677,2.840887099504471,2.4003734630532563,2.7954867188818753,3.689920564647764,3.7355927587486804,2.831321963109076,3.46471915114671,2.4917553225532174,2.7910727839916945,3.723612044006586,2.864060693886131,2.898925129789859,3.5579672511667013,3.982412205543369,3.90188576746732,3.220970742404461,3.3090112353675067,3.7960032038390636,3.751398134510964,2.9851054227910936,3.4728401470929384,3.269908042624593,3.1035302807576954,2.4162803748622537,1.626310529652983,1.9321561479009688,2.458322578575462,1.8772575370967388,1.738261666148901,0.8018185785040259,0.3805443155579269,0.16520237550139427,-0.6586893387138844,-1.491334244608879,-2.1328690289519727,-1.8292687898501754,-2.446800930891186,-1.4823986170813441,-0.8436185247264802,-1.1597263813018799,-1.9534636097960174,-1.9736192040145397,-1.6173075283877552,-2.588768925052136,-2.9435436418280005,-3.8908765567466617,-4.7239855309017,-4.0604063011705875,-3.201931534335017,-2.411731055006385,-2.9783570799045265,-3.1502816947177052,-2.91046384582296,-2.0407543308101594,-2.935951268300414,-2.842033083550632,-2.2891091373749077,-1.3001789031550288,-0.560585796367377,0.17831647815182805,-0.10532064083963633,-0.42077318811789155,0.20582380890846252,-0.6616306728683412,-0.7921020523644984,-0.5374960191547871,-1.3299940777942538,-1.6654753843322396,-2.109186970628798,-3.09554746421054,-3.6690372028388083,-2.6992452200502157,-3.0775754135102034,-3.571374558378011,-2.735741743352264,-2.7700950540602207,-2.7584621547721326,-2.596974488347769,-2.794221425894648,-2.8916143807582557,-3.4361845389939845,-2.641484322026372,-3.585337796714157,-4.1206399030052125,-3.414134577848017,-3.821455109398812,-3.6828085868619382,-4.026776608545333,-3.3143549016676843,-3.2508424245752394,-3.917582454625517,-3.3144666966982186,-2.6441768556833267,-2.9233364555984735,-2.2830022661946714,-2.1145208119414747,-2.8004840882495046,-3.681165852583945,-2.7233177688904107,-1.8443267517723143,-2.7794587784446776,-2.8778592846356332,-1.903877763543278,-1.5407336819916964,-2.3441519550979137,-3.1948855104856193,-3.384421600960195,-3.3576447246596217,-2.979033384937793,-2.6766921784728765,-2.686149017419666,-2.84554295707494,-3.731744511052966,-4.346518929582089,-5.101415021345019,-4.506053402554244,-4.375886410009116,-5.177605509757996,-4.6310284454375505,-4.666332152206451,-3.9851401913911104,-4.765044284984469,-4.996070188470185,-5.621195618528873,-4.762719379737973,-4.939511158037931,-3.94414319191128,-4.91451621754095,-4.999602498486638,-4.5427697924897075,-4.449065086897463,-3.6304836804047227,-3.082756206393242,-2.950894584879279,-2.8514358629472554,-3.747505124192685,-3.6697752801701427,-4.368129470385611,-5.045353822875768,-4.945933595765382,-5.348922450095415,-4.940559395588934,-4.927191890776157,-4.484586921520531,-5.119425000157207,-4.227096921764314,-4.1178640755824745,-3.6512465341947973,-4.238309477921575,-3.4891942385584116,-2.8528498858213425,-3.200454618781805,-2.3315962641499937,-1.6776047982275486,-2.3099521859548986,-1.3739425837993622,-1.2557178055867553,-1.4737599673680961,-2.1301019466482103,-3.0905653215013444,-3.5018647024407983,-3.488066213671118,-4.471558540593833,-4.147891037166119,-4.810085708741099,-5.282911675050855,-5.461904274299741,-4.840997784864157,-5.531914597842842,-6.320600138045847,-5.339828310534358,-5.9986482271924615,-6.316074973437935,-5.405371027998626,-6.3069164655171335,-6.919734007678926,-5.967622782569379,-6.823973900638521,-6.249461203347892,-5.435729603283107,-5.670070414897054,-5.652114137541503,-4.9584068092517555,-4.980295519344509,-4.560834653209895,-5.023886032402515,-4.356549030635506,-3.9976503355428576,-3.9780550291761756,-4.094603524543345,-3.1704267375171185,-3.6246748310513794,-4.613598710857332,-5.287666010204703,-5.031771739944816,-5.712384961079806,-4.720541117247194,-5.55288888560608,-6.278145941440016,-6.235149505548179,-6.36851615505293,-6.648975077085197,-5.918641328345984,-6.773726111743599,-7.467206677887589,-7.496266268659383,-7.931595652364194,-7.6739105405285954,-8.470349278301,-9.102869373746216,-8.625736672896892,-7.654474235139787,-6.9453326761722565,-7.8928906549699605,-8.64433782408014,-8.478235965128988,-9.269632943440229,-9.472406737040728,-9.439971202984452,-9.8078131233342,-8.920146125368774,-7.992873697541654,-8.590544347185642,-7.669313246849924,-7.8820637902244925,-7.016720089595765,-7.828674517106265,-7.0105108306743205,-7.182300965767354,-7.065414227545261,-6.877138059120625,-6.451091100927442,-6.340020594652742,-6.200327823404223,-5.584331701043993,-5.55884423526004,-6.160679050721228,-7.040199166629463,-6.425145405344665,-6.405873181764036,-5.852904635947198,-6.258845548145473,-6.1349177192896605,-6.167902781162411,-5.854222354013473,-5.459197364281863,-5.848403798416257,-6.79858674062416,-5.857968030497432,-5.8573386133648455,-4.948688691016287,-4.81533862138167,-5.555819226894528,-5.0582833252847195,-4.1783024254255,-3.2059067166410387,-3.7962521137669683,-3.3963496387004852,-3.728454269003123,-4.4728689338080585,-4.729149352759123,-5.074234406929463,-5.314111990388483,-5.9244116405025125,-5.309742310084403,-5.751179662067443,-6.369547217153013,-7.317969236988574,-6.972644404973835,-7.458071562927216,-6.92697618342936,-6.157684698700905,-6.173463236540556,-5.850804751738906,-4.947240238077939,-5.437907018233091,-5.759469943586737,-5.8746674549765885,-5.141670188400894,-5.996504776645452,-6.441363342106342,-6.004596631042659,-6.034340035170317,-6.681749290786684,-6.047408925369382,-6.598852576687932,-6.957884336821735,-7.176531868521124,-6.396658540237695,-6.285230667330325,-6.4223120477981865,-6.162374769803137,-6.870787303429097,-5.995269602630287,-6.905872251372784,-6.099364472087473,-5.278969620354474,-4.298740278463811,-4.654851918574423,-5.3749222829937935,-4.6181149440817535,-3.980928317643702,-4.114990646485239,-3.4643230792135,-4.344537982717156,-3.8409888660535216,-4.744782920461148,-5.593146192841232,-5.201004416216165,-5.265411644242704,-5.986823485698551,-6.538485159166157,-5.657955112401396,-5.736637879163027,-6.2446243846789,-6.4430653573945165,-5.789525351021439,-6.303615922108293,-6.82868164870888,-6.832239844370633,-6.049527915660292,-5.346891860477626,-5.184298628475517,-4.85731863649562,-4.637828613165766,-3.8445188920013607,-4.099879710003734,-3.889685044065118,-4.004437376745045,-3.874759322963655,-3.0042036906816065,-2.8060290762223303,-2.3394991224631667,-3.021380877122283,-2.1424568770453334,-2.199699674732983,-1.7881162809208035,-2.7021470610052347,-1.7104478608816862,-1.1672085095196962,-0.8056743307970464,-0.7397490371949971,-1.4269435401074588,-1.4944220362231135,-1.1986907217651606,-1.8002702007070184,-1.841725460253656,-1.602408199571073,-2.2147526293992996,-1.5076491297222674,-2.1594202322885394,-1.7225443422794342,-1.5444354256615043,-2.192572762724012,-2.8912332174368203,-2.912967937067151,-3.420587866101414,-3.4166365088894963,-4.191847606562078,-4.939502967521548,-5.6649424051865935,-6.014937251806259,-6.311981844715774,-6.337149213068187,-5.852932607289404,-6.831044758670032,-6.502086922992021,-6.44843240454793,-5.889933488797396,-6.172797187697142,-6.264811793342233,-6.852494650520384,-7.394952550530434,-6.55986138805747,-7.080933368299156,-6.790222444571555,-7.417415424715728,-8.324191011488438,-8.718956479337066,-8.9088788558729,-8.361251923721284,-9.064286501146853,-9.056206254288554,-9.325411367230117,-9.11226069740951,-8.181159103754908,-7.44714171718806,-7.589665899053216,-8.171895197592676,-8.860056313220412,-8.373257901519537,-8.629040121100843,-9.552900950890034,-9.849064399953932,-9.07422840455547,-9.019266523886472,-8.504734303802252,-8.545837429817766,-7.853067624848336,-8.331688160076737,-8.390157123561949,-9.273785372264683,-9.424359849654138,-9.486735498532653,-10.272198965772986,-10.517982090823352,-10.457392720971256,-9.768506972584873,-9.774757276289165,-8.909784468822181,-9.239924649707973,-9.731035797391087,-8.816311095841229,-9.47349507175386,-9.19267975538969,-8.331190867815167,-9.287411562167108,-10.167472421657294,-9.32135790400207,-9.15270819561556,-8.538130330853164,-9.22220818279311,-9.824490963947028,-9.814453688915819,-8.822067790199071,-9.281566684134305,-10.081929665058851,-9.5904656695202,-8.691258076112717,-9.203418350312859,-9.018246661871672,-8.089743283111602,-7.4680086597800255,-8.359668248798698,-9.15276476368308,-8.806452430784702,-9.721330780535936,-10.227538657840341,-9.896512302570045,-9.20282787969336,-8.934124828781933,-8.112954635173082,-8.325182653497905,-8.36599507322535,-8.537001485936344,-9.080006826668978,-8.820563662797213,-9.437758357729763,-10.399875309318304,-10.469203481916338,-10.590257152915001,-11.477292538620532,-11.384642305318266,-11.457540668547153,-11.79023390589282,-12.13314882852137,-12.743060043081641,-12.382440759334713,-12.413604020141065,-12.847863872535527,-12.578022410627455,-13.295995901804417,-13.897241956554353,-14.818673734553158,-15.127471792977303,-15.946322767529637,-15.258388337679207,-15.066745452117175,-14.888321080245078,-15.026116777211428,-15.333745844196528,-14.427019279450178,-15.105977983213961,-14.502789529971778,-15.237525974866003,-14.252537223510444,-14.092334421351552,-13.544630773365498,-13.636742666829377,-14.008311896584928,-13.152120319660753,-12.272363502066582,-12.108689448796213,-11.809990999288857,-12.251687295734882,-11.357228979934007,-12.270121956709772,-13.059899028390646,-13.752884870395064,-14.670693026389927,-13.689591395203024,-12.701908076647669,-11.739299008622766,-10.75277267722413,-11.01239215862006,-10.6065115891397,-10.529165175743401,-10.9044956616126,-11.230297025293112,-11.555357223842293,-12.186606185976416,-12.863392306026071,-13.529109276365489,-14.508826325181872,-15.376505977008492,-16.335736298933625,-16.568698863498867,-16.272803945466876,-16.062869135290384,-16.069541548844427,-17.021821135189384,-16.443799232132733,-17.302649325225502,-16.32441354636103,-16.36996087571606,-16.651115763932467,-15.786242928355932,-15.180082731414586,-15.555247978307307,-16.102937220130116,-15.638497575186193,-15.860623252112418,-15.467321462463588,-14.950351927429438,-14.261482365429401,-14.028929381631315,-14.0165608166717,-13.202857070602477,-12.443899692967534,-13.241963245905936,-12.300264398567379,-12.173193720169365,-12.664221812970936,-13.512096047401428,-14.012511160690337,-13.558465199079365,-14.201036647427827,-14.840161781292409,-14.747349002864212,-14.455535159446299,-13.542195920832455,-12.838662215974182,-12.253030324354768,-11.707710965070873,-10.792643497232348,-10.0508903702721,-11.027691130992025,-11.184374345000833,-11.559423617552966,-11.942506967112422,-12.359147819224745,-12.97106013679877,-13.2158293123357,-13.901138418819755,-14.156554072163999,-13.74376342073083,-13.521007192321122,-12.87311993399635,-12.162811136804521,-13.013998958747834,-12.671606025658548,-11.798545683734119,-11.383241648320109,-10.46541766449809,-9.952253164723516,-9.647485978435725,-8.986658186186105,-8.12285547144711,-7.486644160933793,-7.006522876676172,-7.350155582651496,-7.397133311722428,-8.128707923460752,-8.189111070241779,-7.811807136051357,-7.644365981221199,-7.745570019818842,-7.974191493354738,-7.788685051724315,-6.998947665560991,-6.903481176123023,-7.548863954376429,-7.335956029128283,-7.551646505482495,-7.516996542457491,-7.912961746100336,-7.691240882035345,-7.759541877545416,-8.45379089564085,-8.671169258654118,-7.966894016135484,-8.900204648729414,-9.503258406184614,-8.969205601606518,-9.258311310317367,-9.468955660704523,-8.799345758743584,-9.621883166022599,-9.271664543543011,-10.158284928184003,-11.076231724582613,-10.800617043860257,-10.292893302626908,-10.64671138767153,-9.832994984462857,-9.825445445720106,-8.937635356094688,-8.234763313550502,-8.429717064835131,-8.976797651033849,-9.32022539107129,-10.137750447262079,-10.10374291613698,-9.372769230045378,-9.189243372995406,-8.318655665963888,-7.921749033499509,-8.218865313567221,-8.643176529556513,-8.668703421484679,-9.201996541582048,-8.374981685075909,-7.446334082167596,-7.250429566483945,-7.207123184110969,-7.079313276801258,-7.081070611253381,-7.280821309890598,-7.883674137759954,-8.50303567154333,-7.973678795620799,-8.939723569434136,-8.129733093548566,-7.933975861407816,-7.353646294213831,-7.385118537582457,-7.477402963209897,-7.7533122026361525,-8.121501193847507,-8.18656135443598,-8.34105713898316,-9.336001506540924,-10.03317556483671,-9.72994754370302,-10.060462550260127,-10.629962958395481,-9.801641800440848,-8.971053483430296,-9.59550866112113,-9.054422046523541,-8.098658115137368,-7.185548991430551,-8.142009492963552,-8.984378528781235,-8.752291761804372,-9.129681295715272,-10.102959828451276,-10.421132678166032,-10.564090880565345,-11.54204812971875,-12.425571559462696,-12.398702465929091,-13.179629693273455,-12.490292137954384,-12.491045587696135,-12.264384471345693,-12.840160014573485,-13.419009528588504,-14.128281269222498,-13.76257217489183,-13.033534342423081,-14.013677211944014,-14.257191241718829,-14.0707460870035,-14.619299750775099,-14.116034542676061,-14.882679394446313,-15.377626875881106,-14.73899750271812,-15.398808217141777,-15.102485245093703,-15.93941104132682,-16.873020246159285,-16.49244052823633,-16.034881728235632,-16.898047646973282,-16.366439956706017,-15.910258439835161,-16.141174694988877,-15.709613943006843,-15.11275993194431,-14.893030553124845,-15.004332386888564,-14.129704562947154,-13.587539005093277,-14.58641004562378,-14.640849293209612,-15.142501084133983,-14.419767199549824,-14.312891361303627,-15.132985518313944,-15.498072860762477,-15.173099150881171,-15.510435596574098,-15.703323766123503,-15.273297634441406,-15.893578547053039,-16.568943317979574,-15.81757835811004,-14.995272238738835,-14.191215609200299,-13.800807250663638,-13.393843658268452,-13.377360831480473,-13.863495603669435,-13.495261050295085,-13.834032815415412,-14.118794214911759,-14.33963050879538,-14.45910184737295,-13.62753287050873,-13.698225344531238,-13.917115952819586,-14.495796761475503,-15.023578225634992,-14.914364879950881,-14.103298000525683,-14.569391871336848,-14.394167422316968,-14.58612675499171,-13.96335576241836,-13.310492183547467,-12.862216755282134,-13.476481685880572,-14.295995093882084,-13.941313173621893,-14.193654125090688,-13.401837104000151,-12.611245197243989,-12.30446355510503,-11.411652804352343,-10.87279423745349,-11.174258639570326,-12.145522141829133,-11.89402874885127,-11.358671528287232,-11.540427965577692,-11.47395834326744,-11.988080347888172,-11.980994200333953,-11.28596932766959,-10.899120985530317,-10.79016410605982,-11.46787430997938,-11.876846414990723,-11.525158105418086,-10.536660647019744,-10.977513533085585,-11.936453189700842,-12.366100289393216,-11.498215385247022,-10.922165481839329,-11.362080975901335,-12.291194026824087,-12.625952042173594,-11.656167599372566,-12.332805769983679,-11.497550334315747,-11.465446178801358,-11.548172010108829,-11.8678826559335,-11.882293323520571,-12.468319843057543,-13.360748516395688,-13.171003400348127,-12.492481606081128,-13.385780714452267,-14.254691230598837,-14.040200861170888,-14.44067783979699,-14.509498767089099,-13.751208583358675,-14.519117103889585,-14.570872569922358,-13.714969142340124,-13.639390996657312,-13.2236957247369,-14.02259234432131,-14.926255332771689,-14.699464038480073,-14.866378534119576,-15.699285821989179,-15.536263078916818,-15.739206700120121,-16.601588882971555,-17.585005254019052,-17.529895482584834,-17.528762438334525,-18.313339515123516,-18.451485467143357,-18.069778467994183,-17.197995151393116,-16.331770041491836,-17.163916163612157,-16.31667255423963,-17.292777785565704,-17.04796582274139,-17.991430743131787,-18.056402381975204,-17.96917424723506,-17.2236796496436,-17.43937160866335,-18.38376576267183,-19.063906128983945,-18.26009360793978,-17.35707400366664,-18.295659304130822,-19.205995976924896,-20.103060092777014,-20.25684015173465,-20.183833583258092,-20.36566027486697,-21.184761792887002,-21.524031680077314,-22.47101399116218,-21.882077105343342,-21.835051838308573,-21.011601405218244,-21.15524575766176,-21.663994299713522,-21.951062471605837,-21.82169841043651,-22.636002534534782,-22.434806424658746,-22.043565680272877,-22.8090837164782,-23.236832038033754,-23.029625788796693,-22.6179482890293,-23.314466257113963,-22.69522445835173,-23.242021398618817,-22.26246634684503,-23.19508476415649,-22.72231125831604,-22.483988762833178,-22.489816955756396,-21.851345907896757,-22.262929173652083,-22.391775402706116,-23.180590622127056,-22.678874465171248,-21.750062617938966,-22.24664044007659,-22.451411165762693,-23.19586911564693,-23.606324619147927,-24.418595825321972,-25.295924817677587,-24.913995681796223,-24.91237218817696,-25.742070037405938,-26.30703615490347,-25.945228567812592,-25.13310789456591,-25.210879147518426,-26.195482802577317,-25.992654828354716,-25.050324168987572,-26.010116337798536,-25.04640469327569,-25.347838659305125,-25.264645365066826,-26.051395621150732,-26.94325796328485,-27.201041062362492,-27.943218963686377,-27.789792145136744,-27.411221717018634,-28.078133727423847,-27.258954024873674,-27.733604229055345,-28.297924833837897,-27.491707637440413,-27.61199283087626,-26.804331097751856,-26.618933451361954,-26.12653576536104,-25.35140418400988,-25.90258956607431,-25.042378102894872,-24.697822401300073,-25.051025833003223,-24.616336721461266,-24.95011523598805,-25.083083959762007,-25.820785315241665,-26.76739439368248,-27.498376273084432,-26.74730555061251,-26.848660338670015,-26.880353851709515,-26.702595194336027,-26.62125086179003,-26.567046526353806,-27.31343188136816,-27.932996599469334,-28.613331054337323,-28.767661534249783,-28.65037684654817,-28.886807424016297,-28.87953007640317,-29.162711307872087,-28.302194191142917,-28.584401650819927,-27.952472559642047,-27.75459293136373,-27.683247204404324,-27.338511516805738,-26.439452256076038,-26.664459037594497,-27.61402511736378,-27.702985394280404,-28.643898241687566,-27.841123022139072,-27.524589921347797,-27.47491243155673,-28.266777007374913,-27.811176313553005,-26.991250064224005,-26.02916510263458,-26.73285428993404,-25.902509511914104,-25.114229884929955,-24.609642279334366,-25.47061262372881,-24.89436422009021,-25.84695937251672,-25.56682583037764,-24.57034334912896,-25.490605036262423,-25.122534453868866,-25.571296157781035,-26.12242245161906,-26.491107950918376,-26.728580312337726,-26.25023250002414,-25.500089837238193,-25.217094173189253,-25.585773592814803,-24.918965051416308,-24.59985841019079,-24.466276930645108,-24.91482535423711,-25.629371986258775,-26.46474863914773,-26.107747685164213,-25.31454743631184,-26.292528092395514,-26.94118783995509,-27.533809228334576,-27.528741840738803,-27.595111396163702,-27.273864451795816,-27.339322656858712,-26.800616160500795,-27.609398948494345,-27.910428118426353,-28.514280741102993,-27.960032715462148,-28.318398936185986,-27.95191610325128,-28.8589045596309,-29.322065357584506,-28.417291674297303,-27.546843803022057,-27.582518188282847,-27.067949321120977,-27.40394253656268,-27.766629229765385,-27.159896478056908,-27.38172825658694,-27.977282947860658,-28.3248518477194,-29.093724600039423,-28.112018583342433,-27.25864835176617,-26.544057107530534,-26.74792770948261,-27.040093977935612,-27.680747386068106,-26.68503680638969,-26.635738231707364,-25.71292240358889,-26.456849473528564,-26.38159883674234,-26.568593833595514,-26.542893725447357,-26.466793780680746,-26.532890086993575,-26.615568494889885,-26.532324661500752,-26.26813354436308,-26.49728028057143,-26.069897150620818,-26.24864184251055,-26.61010472336784,-26.41671062866226,-26.775951779447496,-27.43700917530805,-28.025113079231232,-27.11928499676287,-27.508546440396458,-27.707116223871708,-28.50140282465145,-29.165311961900443,-29.57631696248427,-28.67979390686378,-29.328188145533204,-28.76654125796631,-29.25884572742507,-29.336762105114758,-29.217157503124326,-29.998899512458593,-29.343737037852407,-29.321473091375083,-29.75141165032983,-29.20743825705722,-30.18828593986109,-30.42729760473594,-29.428485695738345,-29.374803229235113,-28.8872749498114,-29.2437382848002,-28.521763259079307,-29.45359253650531,-28.556334857363254,-28.47482607839629,-28.184470290783793,-28.85935478657484,-28.82490454101935,-28.475150574930012,-28.714422469958663,-28.03440630901605,-27.78041086299345,-27.578192602377385,-26.80617018137127,-27.57643053866923,-28.46012643771246,-27.94937866507098,-28.155412543565035,-27.30766789475456,-26.623797913547605,-27.383834016975015,-27.83951687766239,-27.685985885560513,-27.858350245747715,-27.09132418129593,-27.064247911795974,-26.274556703865528,-26.481345918495208,-26.19424342457205,-26.62611404247582,-26.73823104193434,-25.805656949058175,-25.32821384212002,-25.60515030939132,-24.988811099901795,-24.39672474935651,-24.56550833955407,-25.027520929463208,-25.334874448366463,-26.08244991162792,-26.074103624094278,-25.649243224877864,-26.494757305365056,-26.834311447571963,-26.02255024528131,-25.426982164848596,-26.00653384346515,-26.63568492466584,-26.67116909613833,-25.814893861301243,-25.27824249351397,-25.668124294374138,-26.252804823685437,-25.35089921299368,-25.613848274108022,-26.210569946095347,-26.412941622082144,-27.273401006590575,-26.330931255128235,-26.285618094261736,-27.097136390861124,-27.540305021684617,-27.4755667434074,-28.4369233334437,-27.959364293608814,-27.31274756928906,-27.88223489234224,-28.236137732863426,-27.464334131684154,-27.397245968692005,-28.15004361467436,-28.306776338722557,-28.56286470219493,-29.013028849847615,-28.834004135802388,-28.64261166425422,-29.59334049373865,-30.47066977294162,-29.596657569985837,-28.927543903235346,-28.962191365193576,-29.29983021179214,-29.426110519561917,-29.862962106242776,-29.283650398254395,-29.578453668858856,-29.132803007028997,-29.332856053486466,-30.275831311941147,-29.37500022025779,-29.243688668124378,-28.279351520352066,-27.750008007977158,-28.377819538116455,-28.384669239632785,-27.487967974040657,-26.856635451316833,-27.763816056307405,-28.101218596100807,-28.081647541373968,-28.62385417195037,-29.131799642927945,-28.56746450997889,-27.752052645664662,-26.966274122241884,-26.885824820492417,-27.617862093262374,-28.585258583072573,-29.33982292097062,-30.06337374774739,-30.296583214309067,-31.003047661390156,-30.463224168866873,-30.50522153219208,-30.659759550355375,-30.93131496058777,-30.08038974739611,-29.59713668935001,-28.959346428047866,-29.7250837511383,-28.93802973954007,-29.4287903374061,-29.004143017809838,-29.968658064492047,-30.294783254619688,-30.534901683218777,-29.953648555558175,-30.552204969804734,-30.527177752926946,-29.969168682117015,-30.539170315954834,-30.351325589697808,-29.947936738375574,-29.696281199809164,-30.490193464793265,-30.42084450274706,-30.365622623823583,-29.79451908264309,-29.265478638466448,-30.059531142469496,-30.675321175251156,-31.669626076240093,-32.18137185787782,-33.034165060613304,-33.898464475758374,-33.730356216430664,-34.69660810474306,-33.81213624635711,-33.922118990216404,-33.99796995986253,-34.96108605666086,-34.918710209429264,-34.53607110353187,-34.738917261362076,-34.62903749430552,-35.40866394666955,-35.69362962944433,-34.730359219014645,-33.913427451159805,-33.58157589007169,-34.49588056048378,-34.61152599891648,-34.44648602977395,-33.79104933934286,-34.71243542479351,-33.992526788730174,-34.42982110241428,-34.58578737266362,-35.458548828959465,-36.21615070523694,-36.946813088376075,-37.873478051275015,-38.02690170798451,-38.338826360180974,-37.764586145523936,-38.41417393786833,-37.419519702438265,-37.82830033963546,-37.67928733071312,-38.4445043890737,-37.66717462847009,-37.22136281384155,-36.27318701520562,-36.50552342040464,-35.543112811632454,-36.18304664082825,-37.14445398794487,-38.10683598089963,-37.87604924291372,-38.43040397716686,-38.81421020301059,-39.336503747384995,-39.86479547386989,-39.56218589702621,-39.6128840171732,-40.39045811165124,-41.35446569789201,-40.686640778556466,-40.29045852320269,-39.359229137189686,-38.79932566266507,-37.826818799134344,-37.57610097061843,-37.591947990469635,-37.720465323422104,-38.53362950775772,-38.75295541388914,-39.17396533628926,-38.58524126652628,-38.08783006248996,-38.90267143398523,-38.90411183377728,-39.4553107926622,-39.72513927798718,-38.90544969122857,-38.59078479371965,-39.583129388745874,-38.92724057426676,-39.39852287620306,-39.84725114842877,-40.51406478602439,-39.6480902726762,-40.001612034626305,-40.47609054017812,-40.4848539265804,-41.3528347495012,-42.26029486628249,-42.851574334315956,-42.755867751315236,-42.69794702157378,-43.16477024462074,-43.76352364802733,-43.99705852614716,-43.29727494344115,-43.679018014576286,-43.46989769069478,-42.88771163066849,-43.56602881057188,-42.71510589495301,-43.23381122993305,-43.95364279393107,-43.69505985500291,-43.246575926896185,-43.29033461585641,-43.20798447076231,-43.37637175992131,-42.5169138321653,-43.13160797674209,-43.58255636366084,-42.82121917232871,-42.9908580663614,-43.45457985578105,-42.84616858838126,-42.54354508081451,-42.52996734948829,-43.07897030096501,-42.669867830816656,-41.94664690969512,-41.69813977787271,-41.35673124343157,-41.501225305721164,-42.28263032762334,-42.596685834694654,-43.276082183700055,-43.97102281963453,-44.51014161668718,-44.9274289063178,-44.10297363996506,-44.40812421776354,-43.45037854928523,-43.13958214316517,-43.41748238634318,-42.922730651684105,-43.626610008534044,-43.40860293107107,-44.007270120084286,-43.83230199711397,-44.700015475042164,-44.62611792422831,-45.23072442505509,-46.092711130622774,-45.36945708934218,-44.690435852855444,-45.14606230473146,-44.82358538219705,-44.299144180025905,-44.79180512111634,-45.21119774412364,-44.37754604127258,-44.79520877357572,-44.154823367949575,-43.16382180573419,-43.52785567333922,-43.99632992129773,-43.22748839436099,-43.56902558961883,-43.61656928807497,-43.769116844050586,-44.518218039534986,-44.34317343123257,-45.20207308093086,-45.56816945178434,-44.61693686712533,-44.23204987728968,-44.75521078705788,-44.27817298192531,-43.3362117880024,-42.433701819274575,-43.41475662169978,-42.43386813858524,-42.954179510008544,-42.893413436133415,-43.60980188427493,-43.67548268008977,-43.14679409656674,-43.446631459053606,-42.563597900792956,-42.068425595294684,-41.78657477116212,-41.32358293933794,-41.4046693216078,-41.33254246879369,-40.95610093139112,-41.7567031304352,-42.08680826192722,-42.218268420081586,-42.974055701866746,-42.86516934027895,-42.559666936285794,-42.88225550064817,-42.04546878300607,-41.38711642520502,-40.4467571307905,-40.447797156870365,-40.76201078109443,-40.07843941450119,-39.76761529920623,-40.00457875430584,-40.50941802980378,-40.080529952421784,-39.43270817538723,-39.79964545555413,-39.695005857851356,-40.36974738398567,-39.51245865924284,-39.68820320209488,-40.424781834706664,-39.828184484969825,-39.77629555622116,-39.3676674766466,-40.28338889731094,-39.84101796429604,-39.46971111232415,-39.24121710844338,-40.11953104706481,-40.39982023462653,-40.116360844578594,-39.48801844660193,-39.427054351661354,-40.329268076922745,-40.522325177211314,-40.677479051053524,-41.30668223509565,-42.26417544251308,-43.15361310308799,-43.047932411544025,-43.41063251439482,-44.09645424038172,-43.7480949354358,-44.17821608297527,-45.05055158166215,-44.40884255524725,-43.93062949599698,-44.72407073387876,-45.159274488221854,-45.592187247704715,-46.30486001772806,-47.229417039081454,-46.37164777331054,-46.6833219002001,-45.84164818236604,-46.024212800432,-46.1658039111644,-46.78769930778071,-46.09322798997164,-46.30071402480826,-46.627261995803565,-45.988105008378625,-45.37733400473371,-45.38309622043744,-44.931542875710875,-45.5360304848291,-45.5194507134147,-45.830616370309144,-45.01578146405518,-44.47100070444867,-44.8594367261976,-45.699087041430175,-46.270111561752856,-46.251129895448685,-46.165687322150916,-45.60885245073587,-44.73902795743197,-44.040923041757196,-44.460280591621995,-44.83875361550599,-45.80746499821544,-45.57591112656519,-44.95834914036095,-45.24095111899078,-44.33547278819606,-44.03008974948898,-43.68070442369208,-43.891912986990064,-44.70624956814572,-45.24859424261376,-45.5173452119343,-44.58581343339756,-43.801580405794084,-43.969789990223944,-44.22169847972691,-43.33117067627609,-43.79022629093379,-43.49381317803636,-43.9898807737045,-43.744257723446935,-43.92195577826351,-43.758746596984565,-43.23082606634125,-42.56132986675948,-43.27022714773193,-43.32678886782378,-44.043940289411694,-44.39772611530498,-43.818552704527974,-42.91492218663916,-43.872151859570295,-43.83346942206845,-43.01297794096172,-43.64552818797529,-43.43086359323934,-43.31901300093159,-42.353105638641864,-41.77315987320617,-41.773902331944555,-42.47648506052792,-42.27586996834725,-42.93938423646614,-42.265470596496016,-41.71204833313823,-41.62915366096422,-41.25796218262985,-42.06220447830856,-42.80408005369827,-42.19199778465554,-42.885982362087816,-42.67908236430958,-41.723313498776406,-41.4816560363397,-40.84467802895233,-40.5739117981866,-39.610475309193134,-39.91826279135421,-40.323518325109035,-40.595975320320576,-40.66883009020239,-41.23979262821376,-41.690032430458814,-42.22007565619424,-42.730224712286144,-42.00447810487822,-41.342100707348436,-41.96240134071559,-42.86651059426367,-42.29353197850287,-41.44150085002184,-41.81195455370471,-42.05227006273344,-41.05541848484427,-41.977993049658835,-42.64609210006893,-42.79496181756258,-42.18195321364328,-43.1730752652511,-42.79747705068439,-42.86652750102803,-42.24327494809404,-42.72014679946005,-41.78993018483743,-41.936887411400676,-41.10408168332651,-40.17860629828647,-40.89205558458343,-40.42481100698933,-39.94914528820664,-40.86439421726391,-41.68776397500187,-42.49357140855864,-42.346109457779676,-42.082633670419455,-42.57467899797484,-43.39982289681211,-42.81819781754166,-43.23682584986091,-42.377609856426716,-43.060647876467556,-43.16826573200524,-42.440987922716886,-43.309965796303004,-43.49908162932843,-43.064193492755294,-43.99527277331799,-43.80253613460809,-44.66226259805262,-45.02475345041603,-45.7898665741086,-45.93477784236893,-44.96978389238939,-45.32349365018308,-45.68284996645525,-46.46708865603432,-45.80452983500436,-44.97313783271238,-44.15370327979326,-44.907539152074605,-44.56849706824869,-45.24333859514445,-44.699850542936474,-44.826735257171094,-44.79199094278738,-43.86280647711828,-43.00246905395761,-43.98226398183033,-44.36666444595903,-44.74345218017697,-44.61156797595322,-44.56304634967819,-45.30572958569974,-44.73733053077012,-44.992451693397015,-45.955092596355826,-46.307158588431776,-46.710898648481816,-45.83043438149616,-45.24857402546331,-46.110598269850016,-46.161759302485734,-45.61693752044812,-45.094726094510406,-45.74236974073574,-45.6432759356685,-45.213187431916595,-44.50372027140111,-43.75738263549283,-43.37362046679482,-44.31032882351428,-45.184271063655615,-44.427745702676475,-44.508013595826924,-43.53952353680506,-42.82307092752308,-43.25902254600078,-42.60320271970704,-43.49687596410513,-44.30251119937748,-45.211864104960114,-45.105561474338174,-44.88097689533606,-45.60789134493098,-45.18158030649647,-45.09137122705579,-45.82160827005282,-45.786297406535596,-45.260941153392196,-45.605413062963635,-45.00014449330047,-44.273356275167316,-43.73017806280404,-43.884781202767044,-44.620536632835865,-43.90081449132413,-43.04276081407443,-43.79458709573373,-44.104631528723985,-44.85103643219918,-45.73139853775501,-45.93584968429059,-45.25550506031141,-45.500701238401234,-44.76415393920615,-44.594639332499355,-45.096088212914765,-44.597457950003445,-44.165925685781986,-44.06053923256695,-44.044573383405805,-43.53873015893623,-44.41190690686926,-44.051849462557584,-43.14828193280846,-43.70330692641437,-44.413268397562206,-44.36702470853925,-45.17427138844505,-45.961150012444705,-45.79142122622579,-45.86589151015505,-46.4973687408492,-46.543057694565505,-47.06660174019635,-47.94079743279144,-48.62593457521871,-48.10700924647972,-47.723101595416665,-47.421616326551884,-47.7531206109561,-48.38793090637773,-47.79633085243404,-48.01885830471292,-47.2363959942013,-47.40725980931893,-47.258300649002194,-47.076435746159405,-46.62705356115475,-47.442134286276996,-46.886066573672,-46.4149558506906,-47.37477194610983,-48.12267267610878,-47.35648611467332,-46.805707276798785,-47.483630219008774,-46.85712734749541,-47.6982556018047,-48.55435884743929,-47.86629485990852,-48.51624826528132,-47.90055256197229,-48.40635951887816,-48.3997612176463,-48.059469412546605,-48.3656744658947,-48.143184195738286,-47.769676219671965,-47.04272090224549,-46.92717927694321,-47.5791608216241,-47.96975150471553,-47.99362309882417,-48.038145302794874,-48.33276560436934,-48.57155533041805,-49.28906826488674,-48.85389997437596,-48.78940739436075,-48.700455703772604,-49.244835425168276,-48.65218210173771,-48.87815972836688,-48.52140929503366,-47.72506683552638,-48.102335886564106,-48.4519718256779,-48.920613466762006,-48.994559412356466,-48.97534916969016,-48.50237468723208,-48.34641761519015,-48.94675535708666,-49.39553853031248,-49.9231608514674,-49.418088778853416,-49.05080186435953,-48.78037045663223,-48.6263829045929,-48.40142486523837,-47.87815921287984,-47.48977222898975,-47.50643583480269,-46.870613830629736,-47.79463042458519,-47.06285010045394,-47.4175804075785,-46.83444230211899,-46.88774751313031,-46.94723603408784,-47.111059537157416,-46.80294004827738,-46.12826644303277,-46.77682804595679,-47.48039665911347,-48.107483085244894,-48.12141914712265,-48.752259123604745,-49.46306958375499,-49.49870952498168,-49.005687221419066,-48.10478885192424,-48.48607692634687,-48.40230604959652,-47.806833972688764,-47.44024014705792,-47.22410371992737,-47.17142006382346,-46.9760852297768,-47.380182072520256,-47.98562560742721,-48.54012773791328,-47.73578052781522,-48.13095969893038,-47.26324827037752,-46.80693994695321,-47.541271309833974,-47.720792185049504,-48.60980825684965,-48.83355289790779,-49.56007998716086,-50.19997657742351,-50.96107947546989,-51.24063920089975,-51.44579199096188,-51.68129783915356,-51.34333928488195,-50.47580567514524,-50.76609798846766,-50.215754323173314,-50.18949969066307,-49.71752194222063,-49.24239348806441,-50.08102862490341,-49.90593097358942,-50.892204717267305,-50.42849716357887,-50.18000685889274,-50.51732010906562,-50.749341695103794,-51.5145854735747,-50.69306829525158,-50.198816985823214,-50.36204901849851,-50.53386630443856,-50.86985510913655,-50.60774564323947,-51.141123877838254,-50.3027181988582,-50.15371409943327,-50.43459336552769,-50.49577364558354,-50.836034467443824,-50.31389674078673,-50.03717988869175,-50.40216101007536,-49.48081688582897,-49.32514544157311,-50.317803270183504,-49.597346207592636,-49.60854633105919,-48.64614640828222,-48.426397840026766,-49.28574178973213,-49.703546756412834,-49.4361214148812,-49.57204859144986,-48.882167764008045,-48.43090069759637,-47.992969575338066,-47.11206028936431,-47.67495160875842,-48.45702491514385,-48.79749874025583,-47.8363670152612,-48.69912885548547,-48.14320480125025,-48.076247594319284,-48.17520423978567,-47.247946572024375,-46.34364824043587,-46.19555625645444,-46.470609557349235,-46.19014545250684,-47.108169440645725,-46.72898270608857,-47.192365016788244,-47.00245415978134,-46.98053538054228,-46.84479873999953,-46.90888066915795,-47.90310050873086,-48.36898605758324,-47.56147693982348,-47.336924467235804,-47.34776826342568,-46.77637237729505,-46.9950158726424,-47.646197349298745,-47.40960984583944,-48.0512488395907,-47.668921273667365,-46.875601103529334,-47.426933334674686,-47.68741922779009,-47.657961229328066,-48.153159795328975,-47.68785785371438,-48.521857815328985,-48.67535641556606,-47.75881182588637,-47.31983757158741,-47.16741023026407,-46.459247128106654,-46.179217665456235,-46.09475058596581,-46.52878151880577,-46.92307344311848,-45.9719896428287,-45.161356495227665,-45.16149213910103,-45.085434287786484,-44.731248774565756,-44.96951002627611,-45.65352904377505,-46.36175399972126,-45.803559815045446,-46.7608535583131,-46.271640239749104,-46.658992449287325,-46.233065902255476,-45.2833546763286,-44.722749459091574,-45.018726772628725,-45.34580843523145,-46.25136311119422,-46.36565522290766,-45.81223724735901,-46.563607030082494,-47.20563544984907,-46.4510705457069,-45.57166525349021,-45.55964036239311,-45.98169805062935,-46.66481571784243,-45.869750569108874,-46.22850980237126,-47.18089620722458,-46.56979753822088,-47.20137726562098,-47.808783737011254,-46.83216910343617,-47.68459564819932,-47.81096167629585,-46.8427448682487,-46.62136968225241,-47.18788152607158,-46.691745542455465,-46.10077701508999,-47.05994235910475,-47.372095271945,-46.90796248847619,-46.998918266035616,-46.21938190469518,-45.76741363061592,-46.16072553442791,-46.53826908674091,-46.52364567480981,-47.039213072974235,-47.507190347183496,-48.291272605769336,-47.313837903086096,-46.51306305406615,-46.827090269420296,-47.29949309583753,-47.51650929637253,-48.27194435847923,-48.11977372504771,-47.234499535523355,-46.68931343499571,-46.07961622811854,-45.54829375445843,-45.826440322678536,-45.75407877843827,-45.3755106292665,-44.438010326121,-43.77387264976278,-43.43389711808413,-43.410631431266665,-43.23500660434365,-43.084028671495616,-42.91454066010192,-43.055610329378396,-43.65338250529021,-43.99781455704942,-44.30143993208185,-44.104300213977695,-44.40588375926018,-44.45972021762282,-43.66704919375479,-43.355309701990336,-43.615257697645575,-43.53407338401303,-43.340538065414876,-43.25220414530486,-43.66924654273316,-43.57705695228651,-43.63603301579133,-43.74620029516518,-42.79646372795105,-42.30621693190187,-42.173036391846836,-41.51682729553431,-40.78796941135079,-41.50574160879478,-41.17886910028756,-40.18522841716185,-39.48745715012774,-38.58448504237458,-38.53274862840772,-37.66852624900639,-37.39886777335778,-37.46763230022043,-37.4325582748279,-36.5365127120167,-37.428339118137956,-37.4555998891592,-37.70511705474928,-38.11701959883794,-38.173780251294374,-37.593061849009246,-38.25983922788873,-39.15224442863837,-39.5682218009606,-40.35607188381255,-40.172623025719076,-39.887486207298934,-40.8318015220575,-40.17086020857096,-39.71043174667284,-39.042686658445746,-38.18463064869866,-39.162244346924126,-39.54884708672762,-40.26320744398981,-39.275595794431865,-39.864841382950544,-39.77723713591695,-39.02372470125556,-39.39425430353731,-38.77852793736383,-39.34343681298196,-38.441141766961664,-39.28024378139526,-40.13458735588938,-41.01197744673118,-40.20253435149789,-40.86193439969793,-39.90502432407811,-40.25548134138808,-39.75356423575431,-39.59825458563864,-39.373827695380896,-39.69222976081073,-40.04464772203937,-39.69828514428809,-39.02327269734815,-38.33687516953796,-37.393323723226786,-36.78620651876554,-36.85732562234625,-35.90935874264687,-35.83971430035308,-35.86379805626348,-36.4660287075676,-37.446393695659935,-37.70449858345091,-36.81420421600342,-36.50364690832794,-36.05844519659877,-36.73205976281315,-36.63955777976662,-37.20723518868908,-37.01310399919748,-37.489977858029306,-37.93158708233386,-38.24827763624489,-38.11257314356044,-38.34087629104033,-38.23617659835145,-37.901396533474326,-38.34508725628257,-37.52675980143249,-37.608258499763906,-37.28887319006026,-37.94718899996951,-38.414857691153884,-38.21967450482771,-37.25707159563899,-37.8642535363324,-37.33137842779979,-36.56980470754206,-36.850448607001454,-37.035557389725,-36.30866917595267,-37.299767115619034,-37.63921100553125,-37.896882626693696,-38.182345868553966,-37.56801039259881,-37.63884598668665,-37.782256920821965,-36.80287621449679,-36.1552106756717,-36.726231824140996,-35.875364939682186,-36.18048704601824,-36.12144460296258,-36.215933692175895,-36.53993225749582,-36.98080168524757,-37.5083521688357,-36.97523806570098,-36.363128115423024,-36.026303563732654,-36.49346901522949,-36.21290449751541,-35.95010647550225,-35.60764445224777,-36.52974871266633,-37.35202124947682,-36.88760189060122,-37.084756426513195,-36.861577328294516,-37.141910961363465,-37.92997611220926,-37.233800295274705,-37.16328111384064,-37.144650330767035,-37.702507881913334,-37.479807153809816,-37.688572575338185,-38.06121308589354,-38.74907466536388,-38.55153537960723,-38.62826902931556,-38.56312121031806,-38.422899910248816,-38.956543523818254,-39.19072129065171,-39.25450535491109,-39.6456950167194,-39.09815952414647,-39.04857791867107,-39.13831662712619,-38.31826078239828,-38.11362907290459,-37.50603700056672,-38.45435961522162,-37.668694850523025,-38.39252352481708,-37.82236487232149,-38.2303119036369,-38.21188473608345,-38.60841194912791,-39.47897640848532,-38.76358902500942,-38.0423660678789,-38.45765987271443,-38.94161371141672,-39.13562517007813,-39.30806764308363,-39.639828076120466,-39.58626990020275,-39.077599849086255,-39.756500197108835,-39.634235778357834,-39.44941456941888,-38.96036206744611,-38.63555439794436,-39.56325925607234,-39.077274872455746,-39.578705962281674,-39.13554319739342,-40.0553154326044,-39.77781142387539,-39.12941468972713,-39.5756616871804,-38.75553289009258,-39.50817977031693,-39.623041194397956,-39.2669152864255,-39.55736904684454,-39.80034182500094,-39.84462675778195,-40.38160251174122,-40.5832200194709,-40.38070561317727,-40.813326478004456,-41.638574483804405,-41.017973775509745,-40.878481751773506,-40.959133610129356,-41.14188645547256,-40.701864189468324,-40.46461000433192,-39.852584650274366,-39.06997077167034,-38.16924422187731,-38.860225363168865,-39.10257038893178,-39.65101266792044,-39.62062000436708,-39.408928545657545,-39.32486245781183,-39.855986694805324,-39.56698979344219,-40.30737117072567,-40.651677440386266,-39.69231503503397,-40.581938644871116,-40.52386499894783,-40.6884350432083,-40.08266373723745,-40.42544165952131,-39.43216768791899,-39.38834575563669,-38.72919308394194,-39.69268627418205,-40.39734226092696,-39.85417420743033,-40.23693638527766,-40.33839490590617,-40.59499959927052,-40.352133431471884,-40.33329315716401,-41.28758696001023,-40.66125926654786,-40.31317194458097,-40.400761811994016,-39.707005514763296,-40.32212221529335,-39.64614718873054,-40.3782795034349,-41.1223270134069,-40.744646368548274,-39.9004227607511,-39.626567226368934,-39.379013281781226,-39.943708719685674,-40.37243244564161,-39.75679481215775,-39.35485539678484,-40.043873756658286,-40.831769017502666,-40.85358655732125,-41.740206371061504,-42.199080096557736,-42.19109895080328,-42.60181168653071,-42.882437381893396,-42.283190462272614,-41.64996324991807,-40.72293108981103,-41.633728000335395,-42.51208317419514,-42.99322531558573,-42.915875534992665,-43.86034431634471,-44.04653006512672,-43.730277529451996,-43.06703287223354,-42.858758829999715,-43.6674667308107,-43.22953031165525,-43.391545028891414,-44.13848158111796,-44.92195163387805,-45.83246928313747,-45.611801974475384,-44.70455996412784,-45.536607031710446,-44.573213141877204,-43.826368666719645,-43.991274951025844,-44.08033275604248,-44.47430624766275,-43.83207682846114,-43.03911055345088,-42.76889071566984,-41.94857515115291,-42.503875254653394,-42.001127461437136,-41.34056425606832,-40.821849829982966,-41.38883260963485,-41.42815041169524,-41.49420794099569,-42.2359022218734,-41.2899185246788,-41.99169048387557,-41.560474357102066,-42.09846369083971,-41.32218544278294,-40.6217897166498,-39.79695483017713,-39.45567392092198,-38.73411258915439,-39.38673464395106,-39.62194688944146,-40.31182069145143,-41.17048246692866,-42.070907345972955,-41.116902969777584,-41.971410184167325,-41.169326905626804,-40.75621820660308,-41.42003614874557,-41.18060161732137,-41.55240094102919,-40.98877825587988,-41.260257796384394,-41.113128937315196,-42.04550044098869,-41.05068114027381,-41.879322030581534,-42.55843659443781,-42.9597144247964,-42.37912316760048,-41.784597527235746,-42.20504656387493,-42.04651155974716,-41.04828978236765,-41.26849439041689,-40.824961967300624,-41.74995534447953,-41.949291857890785,-41.495608801953495,-41.5924742044881,-41.47057228954509,-41.18735045008361,-42.057835306506604,-41.17258013598621,-40.27315737865865,-39.35987446224317,-40.350039090029895,-40.645437752828,-40.24499194137752,-39.9507102323696,-39.79422746272758,-40.395676960702986,-41.06668289471418,-41.13479855237529,-40.47747248923406,-39.70114980498329,-38.93056510714814,-39.4850025405176,-39.68352901469916,-40.411116836126894,-39.54237636830658,-38.829402359202504,-39.541956265922636,-40.293618181720376,-39.768873274791986,-40.13737686444074,-41.04941372713074,-40.17097307741642,-41.092020152602345,-40.431598770897835,-40.5318367020227,-41.398108213208616,-41.68030694546178,-42.33848839066923,-42.81721506267786,-41.92387804016471,-42.82555701211095,-43.528708640486,-43.91071754042059,-43.2250876808539,-42.77715543983504,-42.926267981063575,-42.110572514124215,-42.958804158028215,-43.45998770464212,-42.70882149040699,-43.29227476473898,-44.05640964675695,-44.505136439576745,-43.659810210578144,-43.30199286155403,-44.114371434785426,-43.69458185462281,-43.74823525827378,-44.00953397527337,-43.36996354255825,-43.48696260293946,-44.15016190614551,-43.74442620854825,-42.784217971377075,-43.45039041014388,-43.12012922950089,-42.845847168937325,-42.41917476942763,-41.646755184046924,-41.05473274225369,-41.02570125926286,-40.68924096878618,-40.410554493777454,-39.80161823378876,-39.780404643155634,-39.98457646230236,-39.88784431386739,-39.69317051395774,-39.465608255472034,-39.131932952906936,-38.351151866372675,-38.59937345376238,-39.52721728850156,-39.634937305003405,-38.751402026973665,-38.359638816677034,-38.74648968083784,-39.51381322089583,-39.093502052593976,-38.110633744392544,-38.743565757293254,-38.38187459949404,-39.185674156062305,-38.9832151113078,-38.20574030932039,-37.28099605999887,-36.57014110824093,-37.27361143985763,-36.40065468195826,-35.8993707424961,-35.559279336128384,-35.17295572627336,-35.348618992604315,-34.5079600373283,-34.272328790742904,-33.538388137705624,-32.77627526689321,-33.75818393053487,-32.77117133559659,-32.92745062010363,-32.52256673434749,-32.54260480636731,-33.47043032664806,-33.374475500080734,-32.62512488337234,-32.82698138151318,-32.908494567498565,-33.43651404092088,-33.85058073606342,-33.315817567985505,-33.34765034308657,-33.773353497032076,-34.34014203026891,-34.85292042652145,-34.20166481425986,-33.455073210410774,-33.46856605773792,-33.52345368266106,-34.4473415245302,-33.7798076425679,-34.66038331016898,-34.15583598520607,-33.9785196329467,-34.35804680874571,-35.025762176606804,-35.35041438275948,-35.70951909897849,-35.750578036066145,-36.492094601504505,-36.09009215654805,-36.068941513542086,-35.299641754478216,-34.798114689067006,-34.62029336113483,-35.11411448707804,-35.964093901216984,-36.66818598471582,-36.82426232844591,-36.94932173099369,-36.38143818220124,-36.346270635258406,-36.287157024722546,-35.48693045368418,-35.52736868383363,-35.61033216211945,-35.536097263451666,-36.36662908317521,-36.274184277281165,-35.94408408040181,-35.95163077674806,-35.29190394980833,-34.84466204512864,-34.67151802079752,-35.4785614348948,-36.47440521232784,-37.452630212996155,-38.41999450838193,-37.564785085152835,-37.36920650117099,-37.03560202755034,-37.55714683700353,-38.3478912319988,-38.08409654535353,-38.608399126678705,-38.3789019449614,-38.0544089502655,-37.80903784604743,-38.35039313370362,-38.15902030514553,-39.120012826286256,-38.88361170515418,-38.73745236545801,-39.33800978586078,-38.76348013803363,-38.57903858972713,-37.974880383815616,-38.81532100960612,-39.17407051194459,-39.95159827545285,-39.5902222734876,-40.1013921611011,-40.42927906382829,-40.93488572631031,-40.370006427168846,-41.33472316060215,-40.362687872722745,-39.4670601664111,-39.45924922917038,-40.15889898408204,-40.43613902013749,-39.950877998024225,-39.42421444924548,-39.63929201243445,-39.62430318072438,-40.57543170033023,-41.11714115040377,-41.22980735544115,-40.52125549642369,-41.46317429561168,-42.42001515813172,-42.129569661803544,-41.22443056013435,-41.05904152104631,-41.35693773813546,-41.57374097779393,-41.09641735162586,-40.14228194998577,-40.985265956260264,-41.72314404742792,-41.787490299437195,-40.90802236832678,-40.8854217636399,-41.11993738776073,-40.539682588074356,-39.78348913230002,-40.35453786328435,-40.559049740899354,-40.958325296640396,-41.67687539383769,-41.57547648297623,-41.787392812315375,-42.45996019197628,-43.08193589979783,-42.43510125670582,-41.93429640121758,-42.03962121298537,-42.838342405389994,-43.04259567614645,-42.3047081339173,-42.74613296613097,-42.80745870107785,-42.555796679574996,-42.23173883417621,-42.54915282782167,-41.979073169175535,-41.32875354913995,-41.41220437409356,-42.185750290285796,-42.26835374440998,-42.034865317400545,-41.824606051668525,-42.79323622304946,-42.44800093583763,-42.70501682115719,-42.08360113669187,-41.79818367678672,-41.222657419741154,-40.99193496257067,-41.91617285832763,-41.11425494868308,-40.42662048013881,-40.56203084625304,-40.274641786236316,-39.783459906466305,-40.34525603847578,-40.10285954317078,-40.348542004823685,-40.30998515570536,-40.959805416408926,-40.273309669457376,-39.688957795500755,-39.53355765482411,-39.168169455137104,-40.089343088213354,-40.394541861489415,-39.423016720451415,-39.53378452453762,-40.11549584567547,-40.13751644734293,-41.08845008676872,-41.77812443673611,-41.86116863740608,-42.23870316008106,-42.62985322624445,-41.65600727777928,-41.163437684066594,-41.25343075674027,-41.58650017157197,-41.901531756389886,-41.27198172593489,-41.78493857663125,-41.33924008719623,-42.1981996325776,-43.06878597289324,-42.16836217464879,-43.05234316829592,-43.63585452688858,-43.91684452816844,-43.927206109743565,-43.92651243181899,-43.838687462732196,-43.755232342053205,-43.66710965381935,-42.93905504560098,-43.61807288695127,-43.10108600743115,-43.837424400262535,-43.28836495196447,-42.70840942161158,-41.78055901778862,-42.22268508467823,-41.617006357293576,-42.39013448636979,-42.91068645007908,-43.66008549137041,-42.93066950375214,-42.75866192020476,-42.57184220291674,-42.84598439093679,-43.200959952548146,-42.317086410708725,-41.894124461337924,-42.679095848463476,-42.71170349046588,-42.266830201260746,-42.83491554995999,-42.834636226762086,-42.89341995539144,-42.50463495636359,-42.677191879134625,-42.005041618831456,-41.01558339968324,-40.456735785119236,-41.29541549924761,-42.24080264568329,-42.5408268077299,-42.634832297451794,-42.80970496451482,-43.189590874593705,-42.62848343746737,-43.366633193567395,-43.198804542887956,-43.07834661984816,-42.822182416915894,-41.86296222452074,-40.89861541148275,-40.184782232157886,-40.23654053034261,-39.66595358168706,-40.56004838878289,-39.569407938513905,-38.90646020742133,-38.671085154637694,-37.98385318182409,-38.13473675167188,-38.609001964796335,-39.183415746316314,-38.733850789722055,-38.173258929513395,-37.9622647780925,-38.07272603549063,-37.09881243342534,-36.65475799981505,-36.25447579007596,-36.46942058345303,-36.58155108662322,-37.3444125559181,-37.52290404448286,-37.821813985705376,-38.634109953884035,-39.16318529518321,-38.54326290078461,-38.26065398193896,-38.582626887597144,-37.85503885569051,-37.96730623021722,-37.69378000451252,-38.25185038102791,-39.23682206496596,-39.73182862019166,-39.8830380612053,-39.453266584314406,-40.27406135806814,-41.2317210258916,-41.071227107197046,-41.81420643487945,-41.096687029115856,-41.436970903072506,-40.720544124022126,-41.22295542480424,-42.13995147589594,-41.80510125076398,-42.31525088381022,-43.289276304189116,-44.24014690844342,-43.6864711754024,-43.15395663538948,-43.734039198141545,-44.220789013430476,-45.18983619241044,-44.91323703574017,-44.2895668069832,-45.07539844606072,-45.03008281858638,-45.458687972743064,-46.18314780946821,-46.14842880098149,-47.007934217341244,-46.89039574796334,-45.9526474266313,-45.673531466163695,-45.17892087018117,-46.086423905566335,-45.8621953651309,-46.19170074444264,-45.88857936672866,-45.371571596711874,-45.937027596868575,-46.15484335133806,-46.317585739307106,-46.72710012923926,-46.17335874307901,-45.64242383418605,-45.20314820483327,-45.04351850692183,-44.220519808121026,-45.04383182711899,-45.837763716932386,-45.86484759906307,-44.904776537790895,-44.838962328620255,-45.37120044790208,-45.005511198658496,-45.87881112564355,-46.343636881094426,-46.425768457353115,-47.40939149260521,-46.54966235673055,-46.79370875703171,-46.609643483534455,-45.85376893449575,-45.50142333982512,-45.35670369444415,-45.39305946184322,-45.27565486775711,-45.76815031142905,-46.535257272422314,-45.79334492562339,-46.55920640099794,-47.01524009462446,-47.61646275501698,-47.078515362460166,-47.76204234967008,-47.73604349652305,-47.61084715370089,-48.27876820322126,-48.0676458706148,-47.65206904569641,-47.97815784951672,-48.820892891380936,-48.59125506691635,-48.12585096200928,-48.01148592866957,-48.84507131855935,-49.010682962369174,-49.352057345211506,-48.9765592883341,-48.32942322874442,-49.14949051570147,-50.07640162622556,-49.756574233062565,-49.94990392960608,-50.00864094402641,-49.226923908572644,-49.15354926465079,-49.13487506844103,-48.72549504367635,-48.91213244665414,-48.73103469517082,-47.95114011410624,-48.45194388739765,-49.225871718488634,-49.07562881754711,-49.87254678271711,-49.35088137816638,-49.104366266634315,-49.16151932720095,-48.74277823558077,-49.050083965063095,-48.724029175471514,-48.57720806822181,-47.76583610102534,-47.3091492690146,-46.72653944324702,-46.428122555371374,-47.134033631999046,-46.6035397304222,-47.54365976154804,-48.26820763060823,-48.692054201848805,-49.23829272342846,-49.702218669466674,-49.34996104193851,-49.2303930236958,-50.096070393919945,-49.23749881796539,-49.654513985384256,-49.67251421138644,-49.07594844745472,-48.64136543497443,-49.0911403815262,-48.77078041434288,-48.85860580345616,-48.29150122497231,-47.60331228654832,-47.155723195988685,-48.048654046375304,-48.98445238918066,-49.62034770892933,-49.909090370405465,-49.8038943009451,-50.18787341052666,-49.65446502575651,-48.97784589184448,-49.89698995091021,-48.99414529465139,-48.79790516756475,-48.61543115321547,-49.001638010609895,-48.17490533879027,-47.62623888021335,-48.594544439110905,-48.88329606875777,-48.36304045282304,-48.171903325244784,-48.36727671697736,-47.63155821757391,-46.91789238946512,-46.12349437084049,-45.58482714695856,-45.50170871941373,-46.176583683583885,-47.16352098248899,-47.6559858834371,-47.59372070757672,-48.52300247224048,-47.66456718929112,-48.44015323091298,-47.60997665068135,-47.09293372603133,-47.07558231940493,-47.92106253514066,-48.781162299681455,-47.964113745838404,-48.281495296861976,-48.85576749686152,-48.616431252565235,-49.16350402124226,-48.3700748491101,-48.1244285129942,-48.277334882412106,-47.78716267365962,-47.477425664663315,-48.16241996269673,-48.76404043380171,-49.216776565648615,-50.026439905166626,-49.064980334136635,-49.000172595027834,-49.65699353674427,-48.98889822373167,-49.31667939154431,-49.09098827466369,-48.386576446238905,-48.11800219118595,-48.09036492789164,-48.45891114557162,-47.50720093632117,-47.16920246742666,-46.84769192058593,-47.42019862635061,-47.508133492898196,-48.49479377409443,-47.73442775849253,-47.96019330341369,-47.429836437571794,-47.640415066853166,-48.045527250505984,-48.217965888325125,-47.67004835605621,-47.125324595253915,-47.24744593305513,-48.11076634423807,-47.472992120310664,-46.75822774041444,-47.554362488444895,-48.212561059277505,-48.12863671639934,-48.29259860422462,-49.092791200149804,-49.010636826977134,-49.292076335288584,-50.179534072987735,-49.94546958617866,-49.286723259836435,-48.292461287695915,-49.23359159659594,-48.817099092993885,-48.30659724539146,-48.42305840132758,-49.194243600126356,-48.3720816699788,-47.507828331086785,-47.368188441731036,-47.630259956698865,-46.99884901801124,-46.23641915805638,-46.817205912433565,-47.460375517606735,-47.392494978848845,-46.770968177355826,-46.2274697618559,-45.90633223298937,-46.056736797094345,-45.13118121307343,-46.071499085985124,-46.109997007995844,-46.43156229611486,-47.056689344812185,-47.90672269184142,-47.967539094854146,-48.602817920036614,-48.66214316757396,-49.01128375250846,-49.761151768732816,-49.82882779277861,-49.87257572216913,-49.24501581070945,-49.135940331965685,-49.199079780839384,-49.96606568712741,-49.40013046609238,-50.273333503399044,-50.01554728066549,-49.38033354328945,-49.50214986782521,-49.83401396591216,-49.802577232941985,-49.83756725117564,-50.08436380978674,-49.722079751081765,-50.52015178324655,-49.71664425591007,-49.246098305564374,-48.65029449574649,-49.523289426695555,-50.3705884013325,-50.19574999855831,-51.05791631806642,-50.210917020682245,-49.69602027023211,-50.35736197326332,-50.42115439474583,-50.12569155078381,-50.17405687412247,-50.25436970265582,-50.51352373091504,-51.05753282085061,-50.7665020506829,-51.486803751438856,-51.62548050703481,-50.88764551375061,-51.44796320190653,-51.98769058473408,-52.057998701464385,-52.06917846109718,-52.955690544098616,-52.20073748938739,-52.69083739910275,-52.249372034333646,-52.03850689949468,-51.68350882222876,-52.113617511466146,-52.30634060082957,-52.60975504666567,-52.19150773389265,-51.52553483331576,-50.72641484532505,-51.14526834199205,-51.678368042223155,-52.39883162546903,-52.14167516166344,-51.24321264773607,-52.22961448924616,-52.87188152456656,-53.6487848572433,-53.43056839890778,-53.08265390433371,-52.348895522765815,-52.14657879015431,-52.20360189024359,-52.96714906115085,-52.561679743696004,-51.74582817405462,-51.60936785209924,-50.934841397218406,-51.675753459800035,-51.9886137470603,-51.83093448309228,-52.12140283221379,-52.82785678841174,-52.12434842856601,-52.69656534772366,-53.600338561460376,-54.16467241058126,-53.34819869371131,-53.844961596187204,-54.30505418172106,-54.682379545178264,-54.331372275948524,-54.2993605080992,-53.99186561163515,-53.88600225793198,-53.565866073127836,-52.97654649941251,-53.74629207327962,-53.05136302718893,-53.99839516123757,-53.091479456052184,-53.53319826396182,-54.41483689751476,-54.49022387014702,-53.93374907877296,-54.118418586440384,-54.292089659255,-53.56958032399416,-53.30825253389776,-52.827904348727316,-52.51298818085343,-52.09133066609502,-52.70362382335588,-53.045313792768866,-53.76077002333477,-54.16921483492479,-54.260250735562295,-53.820375605951995,-54.48839229438454,-55.46190970065072,-54.473457750398666,-54.48334131017327,-54.8165432875976,-54.565560065209866,-53.95069900993258,-54.94491191301495,-54.2613325631246,-55.212759918067604,-56.13920346368104,-56.016810479108244,-55.47263932880014,-55.80052516236901,-55.0883641843684,-54.628873471636325,-54.74344745371491,-53.924861065112054,-53.71233937656507,-52.99132068315521,-52.090122660622,-51.476496681105345,-50.85566674778238,-50.02406818093732,-49.32437649834901,-49.142359831836075,-49.465144254267216,-48.50826159166172,-49.236905545927584,-48.704688898753375,-49.36608056211844,-48.692445491440594,-48.7546517890878,-49.315003434661776,-49.26166254794225,-48.99080077186227,-49.43930720211938,-50.047587445471436,-50.47566240327433,-50.34713457431644,-50.216327543370426,-50.08298856578767,-51.05548783391714,-51.85174338147044,-51.67184374341741,-52.62936741579324,-53.31836912082508,-54.30221909331158,-54.65591042954475,-55.07977077271789,-55.3206304567866,-54.91861477913335,-53.95883087394759,-53.94076802954078,-53.64793956885114,-54.51820451859385,-53.7730720709078,-54.60492024105042,-53.664616130292416,-54.635623598471284,-55.15853200247511,-55.85177900316194,-55.593701045028865,-55.1850468236953,-54.27398975705728,-55.16900473181158,-56.04252993827686,-55.58697641408071,-54.70716671599075,-53.876197203062475,-53.18441852834076,-52.36072710156441,-51.636260414496064,-51.222032190300524,-52.171573779545724,-51.30957866832614,-52.15844229608774,-52.906235189177096,-51.93900726083666,-51.89644248597324,-51.68498354125768,-52.36071373242885,-51.936512471176684,-52.00844402657822,-51.41583087854087,-51.57278858171776,-51.296291158068925,-51.18724523857236,-51.15176050271839,-50.90146620525047,-51.148480623494834,-51.846964912023395,-50.936200723517686,-49.954797443468124,-50.905577577184886,-50.24453736282885,-50.96345076570287,-51.79034335445613,-51.26268484117463,-52.13386420765892,-51.96309731574729,-52.843459490686655,-51.90367679297924,-52.767157602123916,-53.19573496514931,-52.98225823324174,-53.39043754292652,-52.831135659944266,-51.89576315833256,-51.307163471821696,-51.80308141792193,-51.1285618073307,-51.83072101464495,-52.768485312350094,-53.4306234694086,-53.99948724359274,-53.33687535999343,-53.41389933088794,-53.04822743497789,-52.951438745483756,-53.0875453162007,-52.198188200592995,-52.69695479236543,-53.2970102308318,-53.68583477335051,-54.149712631478906,-53.41514748055488,-52.533107875380665,-53.250202383846045,-53.04849157622084,-53.90213821968064,-53.38772114738822,-54.154597233980894,-54.91955826384947,-55.81132511841133,-56.652814974077046,-55.92952667735517,-56.229007665999234,-55.37368055945262,-55.43704409617931,-54.52657171711326,-53.57293568411842,-52.972879491280764,-52.20262974733487,-52.980965921189636,-52.782561058644205,-53.525653422344476,-54.34034976223484,-53.72157082520425,-53.094207387883216,-53.895084757357836,-54.47677678568289,-53.97537951404229,-54.89547288650647,-54.51514236535877,-54.411076130811125,-53.858579497784376,-54.085783617105335,-54.143527617678046,-53.90649909991771,-53.56390967965126,-52.74465433182195,-52.728531463537365,-51.94604150438681,-52.791895017493516,-53.406222749035805,-53.77647495595738,-53.975252110976726,-53.62022915109992,-53.70846978761256,-52.88010109309107,-51.99559785891324,-52.64339282596484,-53.48669778322801,-52.61196804139763,-53.06815899955109,-52.671996851917356,-53.63009501574561,-54.062621063087136,-53.54075827496126,-54.49477179115638,-54.02973261475563,-54.689312347210944,-55.22737441165373,-55.623528321273625,-56.073239519260824,-55.89465788053349,-56.19162479322404,-56.70774538302794,-57.377483893651515,-56.593801946379244,-57.31612829351798,-57.67009416036308,-58.36290044616908,-58.44486703397706,-59.394115703646094,-59.63284272374585,-58.68062409386039,-59.372477320954204,-58.38144979486242,-57.53302302211523,-57.23996894946322,-56.810813734307885,-56.309376230463386,-55.547623235266656,-56.260544245131314,-55.49783061025664,-55.96784898778424,-56.47068997938186,-56.752517593093216,-57.423849591519684,-57.30033467616886,-58.14451633486897,-57.50684286374599,-57.85346542298794,-57.302588015794754,-57.62639256473631,-57.44851051829755,-56.502275564242154,-56.38728818111122,-55.97197001427412,-55.134687189012766,-54.46210436569527,-54.62640716973692,-53.91818679869175,-53.59315159032121,-52.94236200628802,-52.79497762816027,-53.73261231556535,-54.66510210605338,-55.06818087073043,-54.56938688410446,-53.876250558532774,-53.051171156577766,-52.96790280751884,-53.915358220692724,-54.47498196316883,-54.076209356077015,-53.95319754444063,-54.209097913932055,-55.13642981695011,-56.0470693744719,-56.49336698325351,-56.01311894832179,-56.49433462321758,-55.67582584824413,-54.97766006458551,-54.44472247362137,-54.854151596315205,-55.55081244697794,-54.99556544981897,-54.012160127516836,-53.0762735363096,-53.12966288533062,-52.720044668763876,-53.545312348753214,-53.03219274105504,-53.69190471293405,-53.16863198997453,-52.81459900503978,-53.55542514612898,-53.68891833303496,-54.27176710963249,-54.7490467466414,-54.93361700233072,-54.156738391611725,-53.810493969824165,-53.417586580850184,-53.429061754606664,-52.944277631584555,-52.55497025651857,-51.75940810935572,-52.50731149595231,-53.076413886621594,-53.58227087929845,-53.84471762739122,-53.90997824817896,-52.94566770456731,-53.72544329427183,-53.31659286469221,-54.07821367448196,-54.411845710128546,-55.26783055765554,-56.02136086160317,-56.3809489607811,-56.67940761568025,-55.81485883984715,-55.151155666448176,-55.62059379462153,-55.84832652192563,-56.70485377544537,-57.22909619053826,-57.5367668280378,-57.024287653155625,-56.28876148350537,-55.46371807483956,-54.85618426743895,-55.16265563154593,-54.25751301040873,-53.81051282398403,-53.46968138823286,-54.13133372319862,-54.93884410941973,-55.22011347487569,-54.7341749467887,-53.971711004618555,-54.65175263630226,-55.343977763317525,-55.55889590177685,-54.92990642320365,-55.105178910307586,-54.76999350218102,-54.56161099532619,-55.44879700150341,-54.47168668778613,-53.6864037825726,-54.309442264959216,-53.96231686277315,-53.670435378327966,-52.98897544806823,-52.57022970030084,-52.32137318374589,-51.93361237552017,-51.72116227494553,-52.37546396860853,-52.186622723937035,-52.68984792986885,-53.51675288612023,-52.99726612539962,-52.559704209677875,-52.407300361432135,-52.281632128637284,-52.15722627332434,-52.16205649217591,-52.91746911080554,-53.08842716971412,-52.962483937852085,-52.84181518107653,-53.07593125710264,-52.250855275429785,-52.24243280664086,-52.24145983206108,-51.65621721511707,-52.52433662023395,-52.05571420304477,-51.424019602593035,-51.68532515177503,-51.75212474912405,-51.63130506221205,-52.343618934974074,-51.80802473239601,-52.5527253234759,-53.53812579670921,-52.63784398697317,-51.6745946733281,-51.42621537996456,-51.65885992208496,-52.21072853030637,-52.575272736139596,-52.73619229719043,-52.49414557451382,-52.31893578823656,-52.86210495280102,-51.96345724305138,-51.836753375828266,-52.026729865930974,-52.52293508499861,-51.63256152672693,-50.64778893627226,-51.05368072958663,-50.25232216715813,-50.99769793730229,-50.8452179543674,-50.059219339396805,-49.45714918663725,-48.8357760142535,-49.695888868533075,-49.859470228198916,-49.300537020899355,-48.35738749662414,-48.73158946400508,-49.482683236245066,-50.4352719374001,-51.16431313706562,-51.28905865596607,-51.53406133176759,-50.83214115258306,-51.73088085278869,-51.27870845422149,-51.06027419818565,-51.2752935718745,-51.6994369244203,-51.0357066183351,-51.12981549836695,-50.59802186349407,-50.425279004033655,-50.56547155184671,-51.128788022790104,-50.51494875224307,-50.47666409146041,-49.98215564573184,-49.86421780940145,-50.4831983554177,-51.33166016684845,-51.403681334573776,-51.68160826060921,-52.32714523700997,-51.63786954805255,-51.911157447844744,-52.69071125565097,-52.697912969626486,-52.98520938819274,-52.95969437342137,-53.85850770259276,-53.47924986528233,-54.31275626178831,-54.357411722652614,-55.06657054973766,-55.78232465358451,-56.53127044579014,-56.86600554548204,-56.31767639005557,-56.02878757752478,-55.861317643895745,-55.85866456059739,-55.57635953044519,-55.318631016183645,-54.818229326047,-54.42752136988565,-54.627032816410065,-55.00783206243068,-55.24369685538113,-55.643291152548045,-56.49377205315977,-57.235059769358486,-56.858387337531894,-55.99922875361517,-55.899385530501604,-55.886784988455474,-54.98386712372303,-55.30875487998128,-55.48503908049315,-56.275488631334156,-56.98218521475792,-57.92660283250734,-57.380469675175846,-56.806750774383545,-56.219672594219446,-56.736322176177055,-57.14737697830424,-56.40548318810761,-55.657034777570516,-55.48929478926584,-55.537611891981214,-56.457616656553,-56.51185607118532,-56.34595743147656,-56.686770509462804,-57.6636215033941,-56.923834019806236,-56.21180065209046,-56.4538057744503,-57.143603570293635,-57.92421727441251,-57.72670006612316,-58.28285472886637,-58.9398225476034,-58.716456685215235,-59.40868262620643,-59.04543193196878,-58.45870648510754,-57.996657074429095,-58.37086304044351,-59.052374897524714,-59.88782236352563,-59.60555817745626,-59.46455048909411,-60.167953497730196,-60.248010182287544,-60.50867284880951,-60.826004463713616,-61.69677184568718,-62.42105534905568,-62.08483779709786,-62.02622559433803,-62.68240449158475,-62.59666450461373,-63.00112163648009,-63.61713040294126,-63.71935408236459,-63.41921139834449,-63.49214652273804,-64.01302703656256,-64.35616727406159,-65.14277332322672,-64.90794540476054,-64.98155549820513,-65.78463627584279,-65.12360104126856,-65.50021585775539,-66.44258664222434,-66.97421059245244,-66.17551318835467,-66.22441756725311,-66.34954634448513,-66.01373204030097,-66.02316714590415,-65.96893391292542,-66.24949334794655,-65.52392828278244,-65.22856654599309,-64.72733052959666,-64.0737075903453,-63.424191016703844,-63.38238345319405,-63.238038713578135,-62.495338905602694,-61.52811566647142,-60.78824454266578,-61.282123379874974,-62.03791188681498,-62.371664254460484,-63.12058986956254,-63.91884807823226,-63.61615290725604,-62.97739050164819,-62.25363586144522,-63.08463353011757,-63.20507943164557,-62.39384377235547,-61.66409660875797,-62.61990115046501,-61.7102126320824,-61.15659521520138,-61.425572897773236,-62.20291788270697,-61.81613861769438,-60.862114247400314,-61.309536615386605,-61.3732080841437,-60.51241233991459,-60.78776964824647,-60.27592900954187,-60.55545289441943,-60.20088605675846,-59.469340288080275,-60.04067553859204,-59.21453880285844,-59.45498736947775,-59.35403046477586,-59.2124737938866,-59.56693948991597,-58.66975929541513,-58.339247894939035,-58.41124159935862,-57.86500573391095,-56.88968839915469,-56.94477909943089,-57.498071304988116,-57.1582420412451,-57.12538254028186,-56.78948856750503,-57.74324071360752,-58.40216234466061,-58.915744960308075,-58.269810766447335,-58.902858946006745,-58.59345456864685,-59.21244195755571,-60.121136942412704,-60.13223855383694,-60.04955186182633,-61.00857590371743,-60.23608748149127,-60.39321036403999,-60.998017012141645,-61.51234669331461,-61.681544774677604,-61.84541331324726,-61.110886754933745,-61.73988780612126,-62.22648624191061,-61.50925409188494,-62.334789720829576,-62.98258580546826,-63.362487479578704,-62.889982756692916,-63.482962612994015,-64.44430667255074,-64.75569361168891,-65.25678440509364,-66.05241744453087,-66.99827681994066,-67.49455631477758,-67.19506276166067,-67.822211493738,-68.19283997453749,-67.73343726387247,-66.81918381294236,-66.12100167851895,-66.52017186954618,-66.8537392760627,-66.7561708507128,-66.22883539507166,-67.15044096950442,-66.3620516480878,-67.02523197699338,-66.06949485139921,-65.32679118448868,-66.19460277166218,-66.53428310714662,-67.27136760344729,-66.7338627311401,-67.5189946545288,-68.41718660760671,-67.7968860603869,-68.5053497320041,-68.62878264673054,-68.17407200019807,-67.3838176196441,-66.66164987254888,-67.51032771542668,-67.51712570292875,-68.09392020525411,-69.00215034605935,-69.4672879613936,-70.13166188495234,-70.18789566773921,-70.18804724793881,-70.17823091195896,-69.78020222252235,-69.07068743370473,-69.42885739402846,-69.53684742283076,-69.17999600851908,-69.04313032701612,-68.93312298692763,-69.65199970128015,-69.02207985101268,-68.83588642487302,-67.87663360266015,-68.14397778082639,-68.41297122882679,-68.07607773179188,-67.23781445529312,-67.75413950206712,-68.59181929379702,-68.32944880146533,-68.23346582986414,-68.18638053536415,-68.3854953139089,-68.33358319662511,-67.52014118526131,-66.8761854628101,-66.34601528290659,-66.35886299982667,-66.74855558155105,-66.79137555835769,-67.59376427484676,-67.37816773168743,-66.7428400781937,-67.3653368530795,-66.79339412366971,-66.28082820400596,-65.87507727136835,-66.65158102987334,-67.10066267848015,-66.13932351348922,-66.72180552221835,-67.12571365246549,-66.1708560474217,-66.73679160606116,-65.93899219483137,-65.36870295042172,-66.23674477217719,-65.25432221172377,-64.5908838454634,-63.90527688479051,-62.92730329371989,-63.46944054029882,-62.989722999278456,-63.4500808021985,-62.91712379921228,-62.149073749780655,-62.00639990763739,-62.14558725338429,-61.436806903686374,-61.10525677166879,-60.54111893195659,-60.93782182270661,-60.68538760393858,-60.43365319725126,-59.9220421211794,-60.65451757935807,-60.46280850516632,-60.98980118520558,-61.42732363473624,-61.5845627784729,-61.10859823971987,-61.10068110981956,-60.86776667460799,-60.08926239190623,-60.71227697795257,-60.17445836076513,-59.716139156837016,-59.08945637382567,-58.36216114042327,-58.11657893424854,-58.48645634949207,-59.18796828854829,-59.993707010988146,-59.21907638432458,-59.21752098342404,-58.99301780434325,-59.33148838672787,-59.20280277449638,-58.98683650000021,-58.62541301827878,-59.35597858438268,-59.93211585609242,-59.61435219179839,-58.72125338995829,-59.15679327491671,-59.278138246852905,-59.689848135225475,-59.725388921797276,-59.35902657592669,-58.57013681717217,-59.18162399530411,-58.71782395290211,-59.374689056538045,-59.80294012092054,-60.22563257813454,-61.03096040524542,-60.1774959359318,-60.85976746957749,-60.66510000266135,-60.69055710779503,-61.58094346476719,-62.257089680060744,-61.82773352228105,-61.687871099449694,-61.25749678350985,-60.476816380396485,-59.50536980899051,-60.08649923047051,-61.0084189097397,-61.91543917870149,-62.00580583978444,-62.67395664099604,-63.37002596864477,-63.778886038810015,-63.79424757976085,-64.6157732559368,-64.50074368249625,-64.3504646345973,-64.71568010002375,-63.92721847072244,-63.10878059640527,-64.02133002365008,-64.02062426833436,-64.89464497892186,-63.91254719905555,-63.28293537022546,-62.916626708582044,-63.616648306604475,-63.025050782598555,-63.76600180147216,-63.17297549266368,-62.5334904640913,-63.17166574904695,-63.56268645077944,-63.16193803306669,-63.144931627903134,-62.82291767373681,-62.9766755476594,-62.86029283516109,-62.6290815314278,-63.06601304002106,-63.610694729723036,-62.899118984118104,-62.25415964284912,-62.034284649882466,-61.18112201616168,-61.05422891676426,-60.39403994940221,-61.072063092608005,-60.16903450898826,-59.59824615204707,-60.12271305778995,-59.89851657720283,-58.962503402493894,-58.41276909178123,-57.45875406963751,-56.58414684748277,-56.46644009370357,-56.06141271814704,-56.10035757208243,-55.21257942356169,-55.42900519212708,-56.110431145876646,-55.238798200618476,-54.27618316048756,-54.25046898750588,-54.36712076701224,-55.25931814685464,-55.93476394144818,-56.319530862383544,-56.19550915714353,-56.60375293623656,-57.28195830108598,-57.687919173855335,-58.56978381052613,-59.528802551329136,-59.36445401934907,-58.78802246740088,-59.311492362990975,-60.185039647854865,-59.62698628567159,-59.80286274058744,-60.06649314984679,-59.60779352998361,-59.38514958275482,-59.72037461446598,-60.288746756035835,-60.292791603598744,-60.95269133709371,-61.678987473249435,-62.16823558649048,-62.92188458517194,-62.56628851080313,-62.0512812230736,-61.153248521499336,-62.11807525763288,-62.93764713034034,-62.595688639674336,-62.68155257822946,-62.64850641414523,-62.30302642378956,-61.884787999559194,-61.36313137412071,-60.91914129257202,-60.33448020927608,-60.04490153118968,-60.21532655507326,-60.96829125471413,-60.83194309333339,-60.507108089048415,-59.6441578194499,-59.28440588852391,-58.70214711967856,-59.27562016155571,-58.31025580782443,-58.85359041951597,-58.399095653090626,-58.60603872966021,-57.86876132292673,-56.914904778357595,-57.826147770974785,-58.6471943850629,-58.80942546809092,-59.28430745564401,-59.845422285143286,-60.5738157434389,-61.53932640654966,-62.143783246632665,-62.82892463495955,-62.463007201906294,-62.519869027193636,-61.928580661304295,-62.31893775193021,-62.22752801561728,-63.224113925825804,-63.72417212231085,-64.70202236669138,-64.76202284032479,-64.16727775800973,-64.09248796431348,-64.40887699183077,-64.55621873727068,-64.42828894918784,-63.70563719654456,-64.53864264953882,-64.70423005335033,-65.27579548815265,-64.66158725507557,-64.9237927342765,-64.50607222504914,-64.88428572099656,-65.05448405165225,-64.69912068778649,-65.10126770706847,-65.33737488323823,-64.49335752706975,-64.64728155033663,-65.22236668039113,-64.62606973899528,-64.44119869219139,-63.51402895990759,-64.4592898809351,-63.7612088448368,-63.33380853338167,-63.70935282949358,-63.4809086760506,-63.85540465125814,-63.557705195154995,-64.39311675773934,-64.30896761687472,-64.72512413421646,-64.37484573153779,-65.02460213052109,-66.01544662145898,-66.9447477273643,-67.44365422287956,-67.54063635040075,-68.3586519677192,-68.972730579786,-68.7804750376381,-68.76028075348586,-69.01313959388062,-68.05308257741854,-67.8335648928769,-67.38702268199995,-67.43337358627468,-66.63397469650954,-66.7005027923733,-66.28532760636881,-66.07001321902499,-65.26479382067919,-64.62381819076836,-64.59394538821653,-63.71822192938998,-63.89387230761349,-64.62464846251532,-64.04392734123394,-64.51917592156678,-64.05211188830435,-64.57446045987308,-63.781123091466725,-63.40561084402725,-63.81777397263795,-63.330844982061535,-62.55012389551848,-62.07164477184415,-62.73772713029757,-62.436765067745,-62.55722585693002,-62.314481931272894,-61.87267235247418,-61.152126125991344,-61.99534539412707,-62.185466828756034,-63.18217894015834,-62.632895251736045,-62.769616787321866,-62.72919618431479,-62.01492159254849,-61.2510698819533,-61.32293236628175,-61.348736986517906,-62.14475482236594,-61.67081131506711,-61.28324190387502,-61.6089444081299,-61.359419057611376,-61.92942058574408,-61.406791131943464,-61.98105680849403,-62.23411481780931,-61.23840945167467,-61.83027731301263,-62.035406523384154,-61.93960587633774,-62.322873134631664,-62.99526771064848,-63.680056614335626,-63.43680285383016,-62.51796675706282,-62.01883049076423,-61.67141663748771,-61.76468559121713,-61.551924923434854,-61.43809293070808,-61.64521805290133,-61.957660178188235,-61.32393103884533,-61.146136115305126,-62.07866647373885,-62.98088159551844,-63.68156115477905,-64.16924943216145,-63.46568877948448,-62.614649780094624,-62.671309863682836,-61.91637753788382,-62.27685080235824,-62.17625843035057,-63.13710965169594,-63.99424523767084,-63.73342665284872,-64.702564293053,-63.745564305223525,-64.53533166274428,-64.78460253681988,-64.835222390946,-65.78316496871412,-66.35152374720201,-67.28551245247945,-67.41620464762673,-66.8790969136171,-67.80834048846737,-67.85127839818597,-67.96408162079751,-68.45126363541931,-69.3421382154338,-69.80417684279382,-69.73421066626906,-69.09392943838611,-68.26537436665967,-68.01348607987165,-67.38642016472295,-66.61049826303497,-67.48586794314906,-67.7340367496945,-67.91787297837436,-68.64640179695562,-67.89714003214613,-68.48389298468828,-68.39363488554955,-68.24245441425592,-68.54623860493302,-69.38026155298576,-69.41977865062654,-68.51726984931156,-67.91783376177773,-67.58166699996218,-67.17319511575624,-66.54089912166819,-66.27340029133484,-66.90412099426612,-67.61134859966114,-68.50869387295097,-68.39402160933241,-68.44838071335107,-68.1143576707691,-67.59013544349,-66.80567527189851,-66.91074422886595,-67.7043494163081,-66.71272895671427,-65.75348038645461,-64.93843447277322,-65.59899875288829,-64.99004991399124,-64.51249377569184,-64.12467764085159,-64.78595090378076,-65.11414566356689,-64.48458330938593,-64.41759380651638,-63.44131450727582,-62.97918804595247,-62.587983993347734,-63.353110884316266,-62.57135888049379,-62.42788308672607,-61.67126791737974,-61.30414796201512,-60.75771242193878,-60.83838432561606,-60.60895034018904,-60.605158164165914,-60.8791211117059,-60.34147330932319,-59.70880613848567,-58.891389621887356,-58.91062079742551,-59.62600590661168,-59.3335287803784,-58.61360197328031,-58.90503741707653,-57.95661124633625,-58.00681424373761,-58.850192207377404,-58.1186581752263,-59.05797800049186,-59.75881181610748,-58.77748310472816,-59.02781175356358,-59.50115977041423,-60.18646947760135,-60.52200949471444,-61.34083030372858,-61.17649256018922,-61.390946918167174,-61.00391042092815,-60.938900695648044,-60.62024782411754,-60.68198252702132,-59.718184522818774,-59.05585740506649,-59.04198159184307,-59.97751495288685,-60.326536651700735,-59.79089924087748,-59.845182324294,-59.03326990827918,-59.063748178537935,-59.48513280181214,-58.830926574766636,-58.764068274293095,-59.13588529499248,-59.212964605074376,-58.8574317949824,-58.233902383595705,-59.23221157537773,-59.57420076755807,-59.584945724345744,-59.458540928550065,-59.81458427477628,-59.80779590969905,-60.12118197279051,-60.283933537080884,-60.5031210379675,-60.820330971851945,-60.05544718215242,-59.1656127134338,-58.192140514962375,-58.63788351370022,-57.759696745313704,-57.456722132861614,-56.94865792570636,-57.227027407847345,-57.881454723421484,-57.28296246845275,-56.57620298070833,-57.42385175358504,-58.00523289432749,-58.252059273887426,-58.73572125751525,-58.2055145916529,-57.83845850126818,-57.28104876447469,-56.92305435333401,-56.467517079319805,-55.67213743226603,-56.09623020887375,-57.03155288984999,-56.50302156805992,-55.84543387917802,-55.99887573160231,-55.07424471434206,-54.8597258515656,-54.35694794310257,-54.6333673177287,-54.56909194448963,-55.31659352546558,-55.254069617018104,-54.718720860779285,-55.233965108171105,-55.07008319860324,-55.60325986519456,-54.670598833821714,-53.70608649495989,-54.0783465327695,-53.148051409982145,-52.47247847355902,-51.83160169888288,-52.26895291777328,-51.400383398868144,-50.666324351448566,-50.92855829605833,-50.8424170142971,-50.00441210903227,-49.355028914287686,-48.62679534777999,-49.37235737033188,-50.05541558424011,-50.70303888339549,-50.40274277841672,-50.67985178343952,-49.86226825136691,-49.39498213119805,-50.20045184716582,-51.02556424122304,-51.678327466826886,-51.30295776203275,-51.61554007278755,-52.27710985671729,-51.455477606039494,-52.43170803459361,-52.755512713920325,-53.555512813385576,-54.00873571680859,-54.39018142875284,-54.973577161785215,-55.06667671818286,-55.41111855721101,-55.54779478162527,-55.15877872519195,-55.31935543939471,-54.45805471204221,-53.807205013465136,-54.708179387263954,-55.29560364224017,-55.718142008874565,-54.943763801362365,-54.73695462802425,-55.31738581554964,-55.53000226337463,-56.43756504310295,-57.19601633120328,-56.19809072325006,-56.807039549108595,-56.40342791704461,-56.68309138668701,-56.29440527362749,-55.387951917015016,-54.58560468023643,-55.464175696484745,-55.88413597969338,-56.77411481644958,-57.122784265782684,-56.55333224032074,-55.6559944730252,-55.86387890065089,-55.59460222674534,-55.639505678322166,-54.70839313045144,-54.480714972596616,-55.06112975301221,-55.44888058491051,-54.499376519117504,-53.663479153998196,-52.68717793608084,-53.274439975619316,-53.02790280524641,-52.95636447099969,-52.38657734822482,-53.06694130087271,-53.66446198290214,-53.69578307820484,-54.04124420695007,-54.840753831900656,-53.939648270606995,-53.147493064403534,-52.61413516756147,-52.670990417245775,-51.93277984764427,-51.78814999572933,-51.16304579144344,-51.276200962252915,-51.226369680371135,-51.77729531144723,-52.24268350377679,-51.45417207106948,-50.78052020119503,-50.17083261907101,-51.05316336732358,-52.00213268585503,-51.99641598807648,-52.42082794336602,-52.89126239903271,-52.85395833058283,-53.65778362285346,-54.4891547979787,-54.33549277950078,-54.22708291048184,-53.97904357407242,-53.81838661059737,-54.506372548639774,-55.45532713457942,-55.71318553946912,-56.130990668199956,-55.80525983637199,-56.53303964342922,-57.21086956607178,-56.75245152879506,-56.97752110660076,-57.89858548156917,-58.402522621210665,-58.51095859520137,-58.17670335713774,-59.09725923463702,-58.60254791751504,-58.30772821465507,-57.36979889171198,-57.08754893532023,-56.807676427066326,-56.78450682060793,-56.41736077237874,-55.659025928005576,-54.81029271893203,-54.519145637284964,-54.71059394488111,-53.91513011790812,-53.97278757812455,-53.261096730828285,-52.36147461133078,-52.850299001671374,-53.12735408358276,-52.42933550197631,-52.16449813498184,-51.300455544143915,-51.803676263894886,-51.79575058398768,-52.38931769039482,-52.5428804284893,-52.22482989449054,-52.15364628843963,-52.28533876687288,-52.750409367494285,-53.165135570801795,-53.79617817280814,-53.63182165613398,-53.403078257571906,-53.2940978044644,-53.26230741478503,-53.7041320418939,-54.033367103897035,-53.449397675227374,-53.693447227589786,-53.614879151340574,-53.205401454120874,-53.678863695822656,-54.56288498919457,-53.841176697053015,-53.104987516999245,-53.39572526887059,-54.18410135246813,-54.133350810501724,-55.10654776124284,-54.477878449019045,-55.0125880506821,-54.43058669101447,-53.53568595321849,-54.20972829172388,-54.796739145647734,-55.67310949228704,-56.06200787378475,-55.08208884391934,-55.557534442748874,-55.39714498817921,-55.0047333589755,-55.420258494094014,-56.25188916595653,-56.832841626834124,-56.7929443269968,-56.47445775009692,-57.392350094392896,-57.50454061711207,-57.86183880176395,-58.48303739493713,-59.12164538539946,-58.394963182043284,-58.1209199600853,-58.07567787589505,-57.68093424895778,-57.484997851308435,-56.87045668018982,-57.25110252993181,-57.55673174513504,-58.33823339175433,-58.53339847456664,-59.46602102834731,-58.93122752895579,-58.524054964073,-58.489344388246536,-59.309237412177026,-58.42691510031,-58.878256312571466,-58.34454300068319,-58.84645130299032,-59.82488068193197,-60.217372031416744,-60.64573567453772,-60.34196357894689,-59.92853538738564,-60.865656008943915,-60.70627103559673,-60.42116580111906,-61.37345887813717,-62.356102803722024,-61.8399996208027,-61.18688916135579,-61.399024811107665,-61.524947406724095,-62.27492248592898,-62.3080981769599,-62.035206514876336,-62.381964842323214,-62.167974615469575,-61.433086367323995,-60.5681511759758,-59.867293076589704,-59.254718609619886,-59.273286703042686,-58.61125816823915,-57.66525213047862,-57.88716185837984,-57.1261777873151,-56.877160461619496,-56.05727306380868,-56.80321501940489,-56.043830417562276,-55.63111183093861,-55.35030021937564,-56.06079893419519,-55.58664983371273,-55.33538656914607,-54.40582944219932,-53.76900138519704,-53.19046882772818,-52.867222216911614,-53.45427209790796,-53.90250058891252,-54.79933307506144,-54.39770108088851,-55.26415339205414,-55.83692172402516,-56.59272967791185,-56.07678928412497,-56.221412368584424,-55.60650978377089,-56.3917261804454,-55.8540363823995,-54.91075284499675,-55.606318982783705,-54.98761675879359,-54.8759983885102,-55.198436269536614,-55.24454183736816,-56.02756845811382,-55.78200632613152,-55.02302147774026,-54.20577032491565,-53.33423302229494,-53.73357599321753,-53.32323734788224,-52.46619027899578,-52.149716238025576,-52.05572249926627,-51.97814216045663,-51.72045326931402,-51.875108015257865,-52.247403553221375,-53.103651764802635,-52.40148539701477,-51.43545025587082,-50.555023284163326,-51.42550645349547,-52.17905768705532,-52.74352951021865,-52.99327878141776,-53.76035215333104,-54.72184061445296,-54.90789455315098,-54.381448776926845,-53.86417099041864,-53.980001212563366,-53.037522174883634,-53.9957280466333,-54.68965442152694,-55.33478600624949,-54.81623165588826,-54.19800548721105,-53.90406886162236,-53.55537500465289,-53.68903139792383,-53.68592106504366,-52.85812969598919,-51.893465273082256,-52.71737234387547,-52.49896353762597,-51.775460781063884,-51.08692210679874,-51.282467793207616,-50.93786703934893,-50.20322064589709,-49.958850683644414,-49.821777732577175,-49.28806828241795,-49.3466534758918,-49.52348832692951,-49.9527909909375,-49.46180910943076,-48.65330502297729,-48.39624615479261,-47.54676978569478,-47.52622706256807,-47.59140590392053,-48.09204897703603,-49.01813824754208,-49.6403344781138,-50.183952347841114,-49.97040104586631,-50.89390065195039,-51.803079708479345,-51.9218595190905,-51.24821372656152,-52.22090404992923,-52.575786385685205,-51.83647930342704,-51.92341237096116,-51.51325661549345,-51.890665678773075,-51.29544302076101,-50.60965998005122,-50.48742474569008,-51.45409516291693,-50.724262431729585,-51.517615378368646,-50.82269089668989,-50.96445271698758,-50.60569284763187,-49.99645987059921,-49.40470471326262,-50.02305648336187,-50.62864469876513,-49.66517251636833,-49.043822838924825,-48.28148439899087,-47.85132495639846,-47.27467049378902,-46.54544168850407,-47.23130226647481,-47.69870519870892,-46.991423359140754,-47.64840737730265,-47.830619842745364,-47.09419311536476,-48.05638772808015,-48.73617182439193,-48.115014320705086,-48.671523274388164,-49.53685322590172,-50.48012492014095,-51.041864226572216,-51.943634586408734,-52.05652288394049,-51.21786214085296,-50.79019569978118,-50.189882955513895,-49.46883605606854,-49.99891893891618,-50.54418564075604,-51.10831278329715,-51.971090908162296,-51.76571610243991,-52.54514215327799,-51.812031825538725,-52.18463395815343,-52.84407788142562,-52.68836688436568,-51.7202054541558,-51.53359594848007,-50.88624932104722,-51.00051549356431,-50.5247559514828,-49.765317413024604,-50.15678902063519,-49.354369855020195,-49.09827381046489,-49.13028948940337,-49.859429055359215,-49.59623147454113,-49.706144207622856,-49.27595947496593,-48.66042649792507,-49.593966911546886,-48.64374714391306,-47.93964868457988,-47.81467468710616,-47.338426150847226,-46.895959071815014,-46.381339081097394,-45.638425468467176,-45.26345375040546,-44.57781598344445,-45.24525332637131,-45.41221993789077,-45.77873378433287,-46.27542556449771,-45.77452569780871,-45.06924741016701,-44.34239367535338,-43.678811038378626,-42.6944167278707,-42.48173748329282,-42.45999637199566,-42.72848024684936,-43.39078696677461,-43.73340261308476,-43.21093592280522,-43.58834230247885,-43.49578604614362,-44.10485578607768,-44.0562444711104,-43.67102715047076,-44.3829099573195,-43.61053291754797,-44.55249377340078,-43.699665408581495,-43.316674758680165,-43.527620709035546,-43.06791060138494,-43.4826797102578,-44.34889266965911,-43.43948516435921,-44.32301751058549,-44.98517446778715,-44.51416710950434,-45.291684438008815,-45.62460621865466,-46.268194952979684,-46.69529967755079,-46.914717202074826,-46.50871744705364,-46.024443740490824,-46.41456294246018,-46.54879525350407,-47.178814156446606,-47.36328123975545,-46.45454880176112,-46.16007627733052,-45.5248121866025,-44.65999266412109,-45.57580332737416,-45.24509728234261,-44.65727077703923,-44.59934106003493,-44.833309509791434,-44.266828055493534,-43.7529743607156,-43.76544863078743,-44.42769178794697,-45.252544361166656,-45.58949666004628,-46.27180886827409,-45.28799790237099,-45.91921772202477,-45.58900795457885,-45.91434697434306,-46.341658633667976,-47.32390939164907,-47.153656522743404,-46.46766873728484,-46.42256244085729,-46.719911047723144,-46.51794747449458,-47.48062564479187,-46.98907978506759,-46.44285824568942,-45.650423081591725,-46.10772300325334,-45.22066531423479,-45.06978031573817,-45.69427045248449,-46.31084931222722,-46.153533165343106,-47.108300807420164,-47.743177980184555,-47.092930145561695,-46.61751700518653,-47.46149537619203,-48.4106210032478,-49.280621349811554,-48.61328522814438,-49.52134904079139,-49.1110790274106,-48.857581211254,-48.71244804048911,-49.02017071703449,-49.42261975957081,-48.751454937737435,-49.04127293173224,-49.582089638803154,-49.21612834697589,-48.28527828352526,-48.46532811783254,-48.659019481390715,-49.14864056929946,-49.01742786122486,-49.26863379124552,-49.81380187673494,-50.58829610142857,-51.11248565418646,-50.856486338656396,-51.55943800229579,-51.40933050168678,-50.69818042125553,-49.979762508533895,-49.62868174351752,-49.4823771356605,-48.801550494972616,-49.26437068078667,-48.57708951178938,-49.49046344216913,-49.40632074140012,-49.665448053739965,-49.790771406609565,-48.970984641928226,-49.22627548640594,-48.94965404085815,-49.700256266631186,-49.58355590607971,-50.223584317136556,-50.447641626466066,-49.79051563935354,-50.00722201541066,-49.30490987189114,-48.63916851207614,-48.79679189063609,-49.033317361027,-48.426954445429146,-48.60924825724214,-47.61646705772728,-47.95137971546501,-46.96154097048566,-46.83942030323669,-47.02819858631119,-46.0868000742048,-46.429344492033124,-46.89545316481963,-47.88693521451205,-46.98815368441865,-47.654079930856824,-47.91369375633076,-48.85088263032958,-47.89479273930192,-48.58390044933185,-48.70587425259873,-49.62050558347255,-49.2354366988875,-50.023496977519244,-50.66779639571905,-50.69480691244826,-50.03905435837805,-50.9044499383308,-50.281887751072645,-51.213759110774845,-51.81240486726165,-52.755519533064216,-52.58964024158195,-53.46224271412939,-54.02218067832291,-54.505878671538085,-54.97889282181859,-54.47113518696278,-54.17795206513256,-54.46545990835875,-54.843451930675656,-54.55050617828965,-53.762154079042375,-53.74673434719443,-54.681108189281076,-53.91195817757398,-54.41458575055003,-54.11614495702088,-53.33360807411373,-53.832583042792976,-54.48494804184884,-53.65307252993807,-53.48741623386741,-53.84332954091951,-53.141063997056335,-53.82499081036076,-53.540319642052054,-53.65461869118735,-53.90330684557557,-53.448334452696145,-52.973617759067565,-52.85824723681435,-53.06126022338867,-52.80389840668067,-53.051953883841634,-53.452677676454186,-54.09313998511061,-53.73919262830168,-53.02386805228889,-53.4217267408967,-53.03243013005704,-52.51694293646142,-53.10854548495263,-53.05042741075158,-53.9358417969197,-53.77504728967324,-53.714663388673216,-53.78215977270156,-54.09027450159192,-54.47961755655706,-55.42091181315482,-55.32265760563314,-56.09813594259322,-56.96658629924059,-57.52719792490825,-57.12262729322538,-57.086169784422964,-57.38137467298657,-56.448285127058625,-56.16594553459436,-57.02076066657901,-57.258586847689,-57.79188181459904,-57.01828415226191,-56.505775874480605,-56.291477638762444,-55.908044185489416,-55.79009354067966,-55.78503873292357,-54.89477730775252,-54.888081088196486,-54.636666358448565,-54.55914963549003,-54.22749431012198,-53.380197012797,-53.22912627691403,-52.4031175239943,-53.07253582915291,-52.374503675382584,-53.231679547578096,-52.37037782231346,-51.809317886829376,-51.402941934298724,-51.38585022650659,-50.63243382330984,-50.80222528288141,-51.25633351644501,-51.022140245418996,-50.49719716096297,-51.00008128071204,-50.53056019311771,-49.68435704894364,-50.05154355801642,-49.87080128630623,-49.78915299801156,-49.75013753818348,-49.5189086725004,-49.80008538020775,-49.40210171462968,-49.129663492552936,-48.56549862213433,-48.80728462245315,-48.48602808313444,-48.33448536740616,-49.17048894241452,-48.68423296138644,-49.572043537627906,-49.9358876417391,-50.0330951185897,-50.89500149525702,-50.91524005262181,-50.03912409301847,-49.776116204913706,-49.462823826354,-49.30727775814012,-48.955071369186044,-49.35918250819668,-49.049087058752775,-49.13346361415461,-48.31356648961082,-48.16992155555636,-48.7210468207486,-49.58573769684881,-49.17046911129728,-49.375998123083264,-49.555942641571164,-49.57398466952145,-49.04221640760079,-48.594626165460795,-49.16349546564743,-48.535678004380316,-48.13585183490068,-48.22273089317605,-48.33329067565501,-48.720424418803304,-49.248324181418866,-48.48351833457127,-47.86591048538685,-48.73484598333016,-47.78839386254549,-46.79758157208562,-47.236469328869134,-47.22299587028101,-46.962050542701036,-46.37201621616259,-46.924463849980384,-46.45805201679468,-47.18860564660281,-46.55136859184131,-46.8421969935298,-47.35410512285307,-47.28465645387769,-46.78214852930978,-47.16435809293762,-47.307566525414586,-46.68542945059016,-46.3565731048584,-47.3100661765784,-48.23444143822417,-47.75524998875335,-48.03539022943005,-47.45256947912276,-47.212470792233944,-47.83995614759624,-48.41486115148291,-47.59227284602821,-48.05105854338035,-48.1482296125032,-47.81794824777171,-48.44441763171926,-49.17688576504588,-48.950701178982854,-49.43226595129818,-48.642764054238796,-49.59015736030415,-50.239273708779365,-49.620821077376604,-50.08727380586788,-49.51972026517615,-49.007041172124445,-49.30854938738048,-49.45307888323441,-48.64812901383266,-49.15522497193888,-49.219489665701985,-48.95312814088538,-49.395177519880235,-49.13701345119625,-48.21393795730546,-48.99472616566345,-49.279916402418166,-49.75524600921199,-50.21023054653779,-50.65200452459976,-49.72514180885628,-49.56516758957878,-48.60796589311212,-48.782600068021566,-47.84929541358724,-48.71348034963012,-48.312615282833576,-48.9686726834625,-49.698797094635665,-48.74449779186398,-49.45097943628207,-50.291314848233014,-49.456150244921446,-49.616232639644295,-49.527070451993495,-49.54453082056716,-50.15612654900178,-50.224101279396564,-51.09253595722839,-52.01921213185415,-51.74423169204965,-51.71448460314423,-51.53040306828916,-50.733354174531996,-51.226793583482504,-51.964283493347466,-51.28391739074141,-51.4607272753492,-51.846781810279936,-50.85074372589588,-50.51842371560633,-50.89161302288994,-51.08575432468206,-50.45404546940699,-50.573852606117725,-50.08867633668706,-49.673725043889135,-49.01095325080678,-49.30469424976036,-48.7529233363457,-49.27672198973596,-48.59645807323977,-49.2283499580808,-48.59685534518212,-48.194684548303485,-48.360486324410886,-47.74607747839764,-48.43547154031694,-48.22571331914514,-48.90700852358714,-48.0896507371217,-48.61070611141622,-48.45931569021195,-48.45450916187838,-48.751230937894434,-48.289915887173265,-49.09989747405052,-48.1817423235625,-47.89053678698838,-48.53549072612077,-48.99804570619017,-48.77402597479522,-48.389071862678975,-49.29041745327413,-48.87550166202709,-48.36217674287036,-49.2918087975122,-48.81198023771867,-49.1628453116864,-48.94580917619169,-48.095796283800155,-47.192066797520965,-47.21612261980772,-46.319607951212674,-45.946440977975726,-45.74912055302411,-45.2894794549793,-44.85864029079676,-43.951143520418555,-43.55605572788045,-43.31220532767475,-43.758937302511185,-43.46565403416753,-42.84291907725856,-43.67329502850771,-44.32415188383311,-43.62048811092973,-44.47285233344883,-45.016640967689455,-45.56049349857494,-45.88357770210132,-45.57304395828396,-46.24476234475151,-46.742054276168346,-47.366121551021934,-46.55501148477197,-47.446946604177356,-47.765829341486096,-48.444272524211556,-48.396754298359156,-48.01250227121636,-48.46616775263101,-48.771498932968825,-48.738306638319045,-49.16003908775747,-48.62514377338812,-49.49111928557977,-49.747567067388445,-49.14516713982448,-48.728513517882675,-49.337124715559185,-48.41483834758401,-47.80075965868309,-47.57215398317203,-47.949652686249465,-48.31355593865737,-47.81599972071126,-47.01608575740829,-46.12442626757547,-46.289063511416316,-45.35499681672081,-45.953366361092776,-45.21459172433242,-45.81841232860461,-45.33038450637832,-45.16712849587202,-45.343056849669665,-44.773013102822006,-45.513861145824194,-44.83067597029731,-44.68173527624458,-43.94409347558394,-43.989795125089586,-43.51943800551817,-44.2098507755436,-44.70635318150744,-44.50755547825247,-43.89469449687749,-43.95915118837729,-44.826127781998366,-44.32461032643914,-44.802893672604114,-44.95281376829371,-44.42632668931037,-44.88878610730171,-45.141366641037166,-44.37587603414431,-44.339889688417315,-43.46504960767925,-42.965343525633216,-42.041709137614816,-42.2652959455736,-41.79574607498944,-42.19499843195081,-41.60035075666383,-41.15463236393407,-40.59857176570222,-40.82268470991403,-39.8788509555161,-40.31186849530786,-41.09278081078082,-41.13982548704371,-40.289892247878015,-41.00494035612792,-41.30366067867726,-41.322581397369504,-41.99311628798023,-41.08477675495669,-42.08033204032108,-41.14371812995523,-40.278345103375614,-39.52246655523777,-39.470015147235245,-40.38373810891062,-40.09110725298524,-39.20798294339329,-39.584819151088595,-39.48286893730983,-38.99057832965627,-38.316765188239515,-38.289804455358535,-37.37340055825189,-36.83887411933392,-36.842887283768505,-37.41975293587893,-36.99539360450581,-37.47297773184255,-38.260701906867325,-37.4151331121102,-36.88347769761458,-37.214043023530394,-38.14469322981313,-38.616341554094106,-38.87724688695744,-38.78016662783921,-39.31807962292805,-38.86669144080952,-38.64779790909961,-39.61743386508897,-38.6793098654598,-38.45796648878604,-38.742336650379,-37.883635743521154,-37.645431655459106,-37.5453310101293,-37.74571467982605,-36.89945097314194,-36.25133767677471,-35.42800824763253,-35.03663682658225,-35.877308941446245,-35.3400435205549,-35.38357723271474,-34.90749928308651,-35.51920368196443,-34.59454826451838,-35.24346879823133,-35.1045648669824,-36.016672341153026,-36.564763247035444,-36.78035616595298,-37.25365335075185,-37.981998986098915,-37.50647749193013,-36.97141622332856,-36.85038189776242,-37.04254925856367,-36.802107269875705,-35.898007054347545,-34.98655339004472,-34.27245097281411,-33.7851703283377,-34.40692091314122,-33.40911719482392,-34.34963617939502,-33.561349257826805,-34.22063750587404,-33.2703506834805,-32.27045369381085,-33.08387885103002,-32.79838560009375,-33.222566693555564,-32.96023763343692,-32.21342485770583,-31.49991646874696,-32.48727894574404,-32.777418439276516,-32.572277017403394,-33.25755876908079,-34.22082640742883,-34.5433883452788,-34.47111555328593,-34.276173905003816,-33.76602386496961,-34.64965911814943,-34.36929882504046,-33.983164973556995,-34.334134952165186,-34.32328668329865,-33.46486138133332,-33.81043799314648,-34.117080609779805,-33.2787143853493,-33.497398629784584,-34.27596708992496,-33.45608672685921,-32.89441702980548,-33.86010193824768,-33.05068447673693,-32.50067228311673,-32.7150493231602,-33.34181175194681,-33.98274805909023,-33.12981051998213,-32.565956480801105,-32.05380827980116,-32.98412385862321,-32.017034351825714,-31.99477962264791,-31.98909538751468,-31.85676900483668,-32.31970143690705,-32.30956424027681,-31.939956189598888,-32.04117112234235,-31.772821365389973,-31.511456887237728,-30.545708136167377,-31.340735991485417,-30.953382663428783,-30.32791899656877,-29.736689128447324,-30.27505964320153,-29.79459125827998,-30.473682204261422,-30.237002541776747,-30.209548987448215,-30.119689167942852,-29.804828573949635,-29.960970260202885,-30.307213929947466,-29.682221630122513,-30.201798187103122,-30.824642532505095,-30.095276977401227,-30.373221438843757,-30.930411514360458,-30.221224607434124,-29.352004676125944,-29.33511714776978,-28.52988024102524,-28.73565407982096,-28.276529839262366,-27.58193094888702,-26.982982923276722,-26.662223351188004,-26.531879016198218,-25.651254555676132,-25.916011207271367,-25.454857686068863,-25.567904663737863,-25.803600412793458,-26.656172481365502,-25.793214295990765,-26.610878808423877,-26.286788896191865,-26.869854895863682,-27.104406773112714,-27.0565117970109,-27.54167852224782,-27.46830327110365,-27.32048604171723,-27.42244735127315,-28.31969076860696,-27.797840758692473,-27.628958739340305,-28.141486999113113,-27.20720502967015,-28.074625086504966,-28.809576999396086,-29.51238345913589,-30.235974374692887,-30.164236134383827,-29.29092980455607,-28.874633100349456,-29.816759433131665,-30.42081854119897,-30.08530292380601,-29.55402872338891,-28.896270297002047,-29.708767898846418,-30.287253632210195,-29.446470133960247,-30.438345957081765,-31.02925888216123,-30.7243624785915,-30.18935697339475,-30.44441067148,-29.55039277859032,-29.88960138708353,-30.134615088347346,-29.187009524088353,-28.974657613318413,-27.995248282328248,-28.587693873792887,-27.715305106248707,-27.74802338378504,-27.936297438573092,-27.46753288479522,-28.33320613624528,-28.350579413119704,-28.19741167873144,-28.262595793697983,-29.162831724621356,-29.51347630377859,-29.10065529914573,-28.622576881665736,-28.569121261127293,-27.644895852077752,-28.35254674870521,-29.021228742785752,-29.985542939975858,-30.459644245915115,-30.651427605189383,-31.086198101285845,-30.94968648860231,-31.191176024265587,-30.412091026548296,-29.849175756797194,-30.338781027588993,-30.272361242678016,-30.738447521813214,-30.969028489198536,-31.106315663084388,-31.5976377078332,-31.951501932926476,-31.3505979757756,-30.46918541379273,-29.826376656536013,-29.313820243347436,-28.959217654541135,-29.834613997489214,-30.256597572006285,-30.745841339230537,-31.562818855512887,-32.298563375137746,-31.403391619678587,-31.953779940027744,-32.53515459084883,-31.70013577444479,-31.956877245102078,-32.25887484103441,-32.653471047990024,-32.49023945769295,-33.116969616152346,-33.518035486806184,-33.15419618040323,-33.43921437161043,-33.96920587820932,-33.16386918304488,-33.703378605656326,-34.50380386551842,-35.38651969190687,-34.500327083747834,-33.79255477245897,-33.331867918372154,-33.40940565010533,-33.306775983422995,-33.03822152642533,-33.761905166786164,-33.45202932693064,-33.78721682727337,-33.182457358110696,-33.173856272827834,-32.527465381193906,-32.624975234270096,-32.72493408061564,-32.647655203938484,-33.262022867333144,-32.450356311164796,-33.40782923484221,-32.666465853340924,-32.72094647679478,-32.398418745491654,-31.498093749396503,-31.137320299632847,-31.687497016508132,-32.535145067144185,-32.846481094602495,-32.152140428777784,-32.22347190324217,-33.12373670330271,-33.470167733263224,-33.988558827899396,-34.90664900280535,-34.35156554542482,-35.1367118190974,-34.703318992163986,-35.41626191185787,-35.844332188833505,-36.22449391102418,-36.89142093947157,-37.06324185244739,-36.925304340198636,-37.49620559019968,-36.7195296054706,-37.129063074011356,-37.70092611713335,-37.3338148300536,-37.38246354088187,-36.69794283667579,-36.538875026162714,-37.32599792955443,-37.299576931167394,-37.6771627496928,-37.69146639993414,-37.777543356176466,-38.40271514374763,-38.886012989562005,-38.67477778578177,-39.37989779468626,-38.949450962711126,-39.03830836992711,-38.04648143751547,-38.04501552460715,-37.051470500417054,-36.42531501920894,-36.64522528043017,-37.1160294553265,-36.35313349450007,-37.20460424432531,-37.21272262185812,-37.70993872964755,-38.03219869500026,-37.96203830372542,-37.257920645177364,-38.119842152576894,-37.5354497754015,-37.44901728769764,-38.28405679948628,-37.57130231335759,-38.52867606235668,-38.94984081899747,-38.52747600339353,-39.31432102341205,-39.24093178892508,-38.866607267875224,-39.56353388726711,-40.30799030326307,-40.28007359104231,-39.90652843052521,-40.4771195598878,-39.91978007927537,-39.7649962939322,-40.61377913178876,-40.95226533990353,-40.31369391782209,-39.555306036025286,-40.390085148625076,-39.797228247858584,-40.25763445626944,-40.710280703380704,-39.9512206078507,-39.96040149079636,-38.96966096106917,-38.836799471173435,-38.11169287702069,-39.095031016506255,-38.995881750714034,-38.87686723610386,-38.49296980816871,-38.67074016062543,-39.31990445498377,-38.33425100846216,-38.215846720617265,-37.8286812864244,-36.90407567145303,-36.776376517955214,-35.990574752911925,-36.82703291764483,-36.41836996143684,-37.22027379646897,-37.09460164513439,-37.835296699311584,-38.60689768893644,-38.53118083579466,-38.51511616259813,-38.257382980547845,-39.23275473481044,-39.73296739254147,-39.155051223468035,-39.53942860476673,-39.69726441707462,-39.50370822986588,-39.23448166111484,-38.42605902114883,-37.960723526310176,-38.665417252574116,-38.20417684596032,-38.883777673356235,-38.93783310055733,-39.00129723222926,-38.28806901117787,-37.589572984259576,-37.14662839146331,-37.061518772970885,-37.191432994324714,-37.69080438930541,-38.39423784986138,-39.27884608041495,-38.401076308917254,-38.75603811908513,-39.24889407074079,-39.44628232438117,-38.91710579395294,-38.52136436058208,-37.569331570062786,-37.01251357514411,-36.59229672932997,-37.07367395237088,-36.47903177002445,-37.22452656039968,-37.84975602431223,-36.90124918660149,-36.71251850249246,-37.37979052774608,-37.7507238634862,-36.870414226315916,-37.10480592492968,-36.94636927219108,-36.31243769545108,-36.80564690520987,-36.96261598728597,-37.26375168655068,-36.88989201327786,-36.995979017112404,-37.80221484834328,-38.65890715364367,-38.95155249256641,-39.94885185780004,-39.260947563219815,-38.870437746401876,-38.17996182339266,-37.69533054949716,-37.89284369163215,-38.56907004630193,-39.06923228921369,-39.984255623072386,-39.92669850587845,-40.19817749597132,-41.084814321715385,-41.17346212128177,-40.81762933451682,-41.179575209505856,-40.51886193268001,-39.80190662806854,-40.746045326814055,-39.801264276728034,-39.64274853095412,-39.542368333786726,-39.9282515225932,-40.17817430617288,-40.63119681319222,-41.203286967705935,-40.59206849616021,-39.61432001367211,-39.59467504406348,-38.73811130132526,-38.211758830584586,-37.391864634584635,-37.29581730859354,-37.56149890832603,-36.638571225106716,-36.00419793324545,-35.269103213679045,-36.03174990788102,-35.64941298123449,-35.02720163855702,-34.48892541369423,-34.0448618484661,-34.24852709751576,-34.20938206277788,-33.88320294069126,-33.79293889645487,-33.46578339394182,-34.11510851746425,-33.38898959290236,-33.96749617019668,-33.621531123295426,-34.06828640168533,-33.996772449463606,-33.85126803535968,-33.263223491143435,-32.85236804373562,-33.125413700938225,-33.22600453766063,-34.112824943847954,-35.097985678352416,-35.74599167983979,-36.426062230952084,-35.694252310786396,-35.18223647354171,-35.86784824775532,-36.30803004465997,-36.13830323982984,-36.17950863810256,-36.81324605131522,-37.34320498164743,-38.06076449342072,-38.14750173036009,-38.86203885776922,-39.275770395994186,-38.77865498699248,-38.405296817887574,-38.22716669598594,-37.981546754483134,-37.344877736177295,-38.29871480586007,-37.36344715021551,-38.1845857524313,-39.103074468206614,-38.57612881436944,-37.86949787568301,-38.05453181127086,-38.98394713783637,-38.52305693831295,-38.316782142966986,-37.660008234437555,-38.64408541191369,-38.77099068555981,-38.55636814981699,-39.0904283542186,-38.84781773155555,-38.36282989801839,-37.614228629507124,-38.58842860208824,-39.35874758427963,-40.077290629502386,-40.794239168055356,-39.885321924928576,-39.53810514835641,-39.28425922244787,-40.223030022811145,-41.205823766067624,-40.809270199388266,-39.87257969379425,-40.847081871237606,-40.834845669101924,-40.59994309954345,-39.952208823058754,-40.512899049092084,-40.24700538627803,-39.43100009672344,-39.95817679492757,-40.60063315415755,-40.79240058083087,-40.5635606572032,-41.46521651279181,-41.77351210685447,-42.41648469073698,-42.440009272657335,-41.68865929218009,-42.24984165048227,-42.122181857936084,-41.38523729844019,-40.457818591967225,-40.464956210460514,-40.20669288048521,-39.97718359483406,-40.396300091873854,-39.49278260348365,-39.81473245518282,-40.34373811306432,-40.22835043910891,-39.814344505779445,-39.3980003898032,-38.64086393639445,-39.13973507843912,-38.30696060601622,-37.7007144279778,-37.93679234618321,-38.69525089208037,-37.93620687350631,-37.15701439511031,-36.98505590111017,-37.01237632334232,-37.31000055419281,-37.05731256073341,-37.029695599805564,-37.955323428846896,-37.00708145322278,-36.38769862847403,-35.8040806860663,-35.752101046498865,-35.656775194685906,-34.68530913768336,-34.87163481768221,-34.72262174077332,-34.58583651250228,-34.51382043026388,-35.163646813482046,-34.764776261523366,-34.93262498406693,-34.05456450814381,-33.74055649200454,-33.84284589346498,-33.40980915632099,-33.15451923571527,-32.85361544089392,-33.64373369049281,-34.08820101991296,-33.44078048784286,-34.125516617670655,-34.997781162615865,-35.429265048820525,-36.40601247176528,-36.55941494461149,-36.21167220780626,-35.28520638728514,-35.702662475407124,-35.84207665687427,-36.710548935923725,-36.26446763984859,-35.714068912900984,-36.507513409946114,-37.10178891243413,-37.23810181533918,-36.90547556709498,-37.19661876372993,-37.95720153627917,-37.08488726615906,-36.970471867825836,-37.641041352413595,-37.621836657170206,-37.83424792205915,-36.88604473415762,-37.09986627660692,-36.85173143213615,-37.1854612226598,-37.04164115246385,-37.3619336290285,-37.244234279263765,-37.20056336186826,-38.18214654549956,-37.81298356875777,-36.875393599737436,-35.95283992448822,-36.156009905040264,-35.626868719700724,-36.37035209638998,-37.34881762228906,-37.17865274241194,-37.22407107241452,-37.27839886257425,-36.690542192198336,-37.019532829057425,-37.104715215507895,-37.78347009746358,-38.64961151778698,-37.94256170792505,-37.866210251580924,-37.41181581001729,-36.931700468529016,-37.86303169326857,-37.592604908160865,-37.736558029893786,-37.17612039297819,-37.124861798714846,-36.53399325022474,-36.21888562524691,-36.29757049679756,-36.75182891264558,-37.19034519838169,-36.78602831764147,-35.814805711153895,-35.41857375111431,-35.76165144843981,-36.12179487198591,-36.8769490881823,-36.37320595048368,-35.4121295385994,-35.55186406522989,-35.58801402384415,-35.67257380625233,-36.36698997346684,-36.02749799750745,-35.90112812118605,-35.02189179509878,-35.90082997875288,-35.94140240363777,-36.71479772916064,-35.84977865265682,-35.349474305287,-35.90029857587069,-35.129897631239146,-34.76676735235378,-34.85801606439054,-34.549384088255465,-34.46151529531926,-35.16567059699446,-34.97966819955036,-34.747906423173845,-34.963996613398194,-34.7289574383758,-35.181725803762674,-34.65455326763913,-33.706493561621755,-34.16301201842725,-34.7865835884586,-35.73836909560487,-35.71800182526931,-36.0007810248062,-36.46668778127059,-37.10614992910996,-37.16164681967348,-36.410882709082216,-37.17430390929803,-36.22545223776251,-36.32315849419683,-36.8493634336628,-36.01573256216943,-36.72715531475842,-35.89573212200776,-36.732524666935205,-35.77174208685756,-35.84150208020583,-36.042215649504215,-35.39545733993873,-34.871702196542174,-35.790064103901386,-35.272044523619115,-35.27025325456634,-35.90454936120659,-35.13114961190149,-34.89982039760798,-34.906747879460454,-35.34653055714443,-35.48239194182679,-35.92159074312076,-35.211700848303735,-34.253744076471776,-34.72179044177756,-34.887783714104444,-35.792037702631205,-35.77005998045206,-35.04322860855609,-34.93723691534251,-34.58893602946773,-35.4233577772975,-34.73699112655595,-35.02387697994709,-34.26719179097563,-33.26890293136239,-32.99966525007039,-32.185046780854464,-32.214448016602546,-32.898721248377115,-32.30372739303857,-32.90620926767588,-33.76400045724586,-32.909849173389375,-32.417620942462236,-31.743484348524362,-30.9445962253958,-31.37569501204416,-31.9423726410605,-32.85601647524163,-32.926363861653954,-32.62001114524901,-31.779394205659628,-32.077654072549194,-32.566133628599346,-32.55519618047401,-33.17932069860399,-33.79868459003046,-34.66439987812191,-33.77147778077051,-33.065838356968015,-32.315394608303905,-33.23768040118739,-33.67323833424598,-33.25826455000788,-33.86987008340657,-33.576651386450976,-34.55727768084034,-34.13563438458368,-33.433016278315336,-33.26185685675591,-33.229921164922416,-32.90529543207958,-33.44395609619096,-33.04391049547121,-32.905831419397146,-33.17472231714055,-32.49050001287833,-31.943944740574807,-31.731484992429614,-31.515455939341336,-32.092866079416126,-32.18544105393812,-31.72210653871298,-31.52635335177183,-31.35287797730416,-31.25049282424152,-31.82767738448456,-31.7438910221681,-32.39266606094316,-32.17116016149521,-31.36840925551951,-30.845050025731325,-30.102817067410797,-29.345422584097832,-28.681187872309238,-27.72311991872266,-27.568659954704344,-27.78074596915394,-28.125149555504322,-27.288103295024484,-26.397218738216907,-26.63893485162407,-26.182461491320282,-26.80560208996758,-26.253129257820547,-25.367648096289486,-25.12827017949894,-25.997835516929626,-25.078160761855543,-24.206826583016664,-23.457980131730437,-23.3002598490566,-23.633512754458934,-24.19268267089501,-24.327365688048303,-24.62542489496991,-25.587071411777288,-26.13595296163112,-25.877716081682593,-26.810824303422123,-26.069677903316915,-25.89463147567585,-25.236497575882822,-24.878570056520402,-24.585545874666423,-25.341457115951926,-25.17838934948668,-25.986790424678475,-26.62234787782654,-26.441149095073342,-25.568103050347418,-24.715247030369937,-23.995537429582328,-24.113088845741004,-23.147997024003416,-22.58650212176144,-23.537640678230673,-22.914652781095356,-22.19707562075928,-21.285761307924986,-20.858513259794563,-21.037059519439936,-21.05403456138447,-21.9467117250897,-22.012638027314097,-21.02037137839943,-20.68428647937253,-20.16035751113668,-20.58115921029821,-21.314714232459664,-21.161906177643687,-21.165726223494858,-20.620923432987183,-19.89743304112926,-19.600136424880475,-19.92273148521781,-20.614923488814384,-21.303847709205,-22.204819788224995,-21.584401251748204,-22.325264315120876,-21.326973037794232,-20.980560386553407,-20.90070215705782,-21.01618922036141,-20.318416179157794,-19.78998240083456,-20.206517811398953,-20.11249549733475,-19.560970737598836,-18.72164639038965,-18.151136563159525,-17.89102620491758,-17.607857376802713,-18.506975868716836,-18.70295340428129,-18.161566695664078,-18.48240738734603,-17.799538204446435,-17.04516173573211,-16.90418657241389,-17.84477156866342,-17.67846020590514,-17.474923906847835,-17.73093376774341,-18.399209429509938,-19.13376509351656,-19.66288845287636,-19.01449712086469,-19.1160951834172,-18.32750163320452,-19.178429096005857,-20.170194653328508,-20.60718299075961,-20.33994324784726,-20.135580217000097,-19.191124146804214,-18.715631688479334,-18.45400194078684,-18.60454878443852,-17.912626969628036,-17.009106636978686,-17.84335487522185,-17.705587529111654,-17.272213845979422,-16.28573240712285,-15.732206602115184,-15.737019225489348,-15.553988366853446,-14.998163431882858,-15.045082302298397,-14.66088514123112,-13.979453648906201,-14.46102354908362,-14.806299067102373,-14.28697250597179,-14.294344627764076,-14.823221334256232,-14.693732115905732,-15.579639924690127,-15.16988447541371,-15.206115081440657,-16.126906149554998,-15.167973386123776,-14.950773319695145,-14.574010444339365,-14.579384283162653,-14.203042747452855,-13.343405013903975,-13.058888257481158,-13.919073048513383,-13.397757159546018,-13.393964397255331,-13.09885335015133,-13.19922748254612,-12.220945692621171,-11.472735699266195,-11.7986103692092,-12.271782108582556,-12.597086484078318,-13.357366675045341,-13.627557272091508,-13.052753075025976,-13.627873261924833,-14.269639616366476,-13.81844580359757,-13.422002394683659,-13.953069032169878,-13.50772618316114,-14.092332837171853,-14.485401384998113,-13.619586436543614,-13.22450755117461,-14.117154680658132,-14.188532288186252,-13.67900811554864,-13.783952151425183,-13.93787255929783,-13.61015399498865,-12.865862396545708,-13.529371692799032,-14.310632256325334,-14.455915248952806,-14.188278574962169,-14.536087289918214,-13.605962556786835,-14.449587675277144,-13.783266773913056,-14.141602620482445,-14.494289433583617,-13.524704701732844,-12.602111838757992,-12.854333030525595,-12.184978799894452,-11.397517994046211,-11.393021722789854,-12.350377137772739,-12.21861941087991,-12.096342089120299,-11.35386500088498,-10.64910532720387,-10.551009830087423,-10.884913605637848,-11.186100707855076,-10.237109725829214,-9.628666668664664,-10.02530557056889,-9.527748809661716,-9.97426482802257,-10.258211211767048,-10.11298788478598,-9.231014485936612,-10.005560658406466,-10.225084652658552,-10.98388856742531,-10.823572013527155,-10.026302870362997,-10.418225652072579,-11.094218260142952,-11.640422625467181,-11.877929552458227,-10.939822706393898,-11.636312286369503,-11.57021629018709,-12.43284868542105,-11.494716694112867,-11.886076024267823,-11.623286619782448,-10.923584112897515,-9.965338158421218,-9.359367494471371,-9.558255686424673,-8.663848431315273,-8.653954908251762,-8.838103136513382,-8.049596967175603,-8.212161818053573,-8.918574626557529,-8.64920542249456,-8.62858894187957,-9.347998294048011,-8.622288998682052,-8.451100935228169,-7.900358560029417,-8.771841814275831,-8.457242553122342,-8.178148730657995,-7.531481739599258,-7.086563546210527,-6.161573997233063,-5.96942033059895,-6.611232282128185,-6.327561145182699,-6.8766693896614015,-6.826019122265279,-5.853475896641612,-6.239782954566181,-6.0231034234166145,-5.6835645558312535,-5.786880963947624],"z":[-93.04806592548266,-93.12060571555048,-93.80947147216648,-93.34156238567084,-92.62205473892391,-92.96964586386457,-92.62239134451374,-92.57919386168942,-92.78571314178407,-93.63597547216341,-92.98765022633597,-92.44108337396756,-92.16768238553777,-92.76709890086204,-93.4291598093696,-93.12878067884594,-93.82947196718305,-94.55441751331091,-94.79109334945679,-94.28815222950652,-93.90157815814018,-93.46075647417456,-92.96333548333496,-92.64454720402136,-92.38410802930593,-92.8178078783676,-93.2299497704953,-92.53557052556425,-92.5980733926408,-93.54187427228317,-94.2211199789308,-93.51662226673216,-94.30368374241516,-94.65654733777046,-94.12679223064333,-94.00396468862891,-94.90859476197511,-94.47815985186026,-93.71925226831809,-94.31100498139858,-94.01175769045949,-94.19236468570307,-93.24386852420866,-93.42621685517952,-93.60466614644974,-93.05146869597957,-92.99141488736495,-92.63132656831294,-92.97880204068497,-93.90364359412342,-94.80104216374457,-93.90545561024919,-94.81819152738899,-94.31476367730647,-94.3363855779171,-94.74092803522944,-94.75486351689324,-94.26667189458385,-94.68425582582131,-94.18462023045868,-94.39449873287231,-94.48516152473167,-94.94767065625638,-94.38885566219687,-94.8593514971435,-94.22718729823828,-94.38850739831105,-94.36914979619905,-93.81469547562301,-93.0145522179082,-93.50094681512564,-93.92182714445516,-93.60037578921765,-93.82248404575512,-93.73158301180229,-94.71981207281351,-95.71580919902772,-94.81483554048464,-94.5321411951445,-95.19791207276285,-94.34515964891762,-94.13499406119809,-93.8111817180179,-93.25524583877996,-93.60620905878022,-93.71724543254822,-94.70721412589774,-95.1132403104566,-95.1033387510106,-94.5652139778249,-93.86110775591806,-93.85493042506278,-93.00030375551432,-92.8100613723509,-92.36157786054537,-92.96937486389652,-93.16878717159852,-92.93188303010538,-92.95491139125079,-92.65218911925331,-92.41573375882581,-93.24028122611344,-92.72095409780741,-93.1538069434464,-93.12431909842417,-93.89536066586152,-94.69103086646646,-94.11782747786492,-93.99498689454049,-93.79166124295443,-93.07361162779853,-93.20682206889614,-94.18134619295597,-93.59524482442066,-94.25770894950256,-94.70533386338502,-95.68603555392474,-95.43906644871458,-96.0932891392149,-95.62869137478992,-95.13467067852616,-95.93932586582378,-95.4130547400564,-94.88314371556044,-95.61197851132601,-94.9645882747136,-95.02892185375094,-94.94645032146946,-95.50085610430688,-96.27774077048525,-96.10128099098802,-95.38103701686487,-96.02888331469148,-96.21706039691344,-95.76314305933192,-95.80272344080731,-96.53690266888589,-95.89303293684497,-96.29100724868476,-97.10217146575451,-97.9289630916901,-98.4506248505786,-99.44897980988026,-100.22640998335555,-100.93794021056965,-100.5839740014635,-101.34657307853922,-100.69105629250407,-100.38644953863695,-100.37748709693551,-100.77649063616991,-101.42187385587022,-102.10969319939613,-102.79892751155421,-103.6292126965709,-102.78631198545918,-101.84835624648258,-101.96710487315431,-102.45549779990688,-102.26703811110929,-102.01439836854115,-102.89915014384314,-103.70963379368186,-104.61811194336042,-103.95608117664233,-104.92176704388112,-105.16995822498575,-104.1755729066208,-103.78124385653064,-103.298689131625,-103.26817998150364,-102.28719441359863,-101.93338111042976,-102.24784866673872,-101.74744724296033,-102.01058892998844,-102.16551356064156,-101.26476137060672,-101.3501952374354,-100.5553902760148,-100.32696184609085,-99.74887828528881,-99.89213976310566,-100.02295404020697,-99.86175645142794,-100.03232191177085,-100.23122882796451,-100.45845351507887,-99.54840496275574,-99.04570816690102,-99.80808507464826,-99.47061201324686,-100.3083713632077,-100.62757420958951,-100.76845727907494,-101.56810965342447,-101.54517858941108,-102.34167321911082,-102.70862353639677,-101.99380925064906,-101.61382948281243,-101.42582386778668,-100.49724683538079,-100.43077395576984,-100.73232034128159,-100.9664082895033,-101.67630872502923,-100.82558158738539,-101.40679584257305,-101.72940411930904,-102.36319026583806,-103.08000254165381,-103.41441627545282,-103.99798628967255,-104.76470541534945,-105.63181218830869,-104.76374898524955,-104.61386902537197,-104.27067904639989,-103.64236794877797,-103.25878926552832,-102.769480580464,-103.70645547052845,-104.05426905630156,-103.76299808640033,-103.69020224036649,-103.22742496430874,-103.68046913901344,-103.42666089721024,-102.53717164555565,-102.99896663473919,-102.23729651374742,-103.18971187621355,-103.00554145174101,-102.252635656856,-101.94526139367372,-102.89614407066256,-102.45211783936247,-103.42238168325275,-103.37486479384825,-102.65287150302902,-102.30448102718219,-102.47536673163995,-101.49345788173378,-101.61124649876729,-101.17284695757553,-102.16522531118244,-101.99360904796049,-101.24783104704693,-101.57127245236188,-101.68074501212686,-102.40517158107832,-101.43017234513536,-101.29392695426941,-102.21050031716004,-102.72423361288384,-102.11960143130273,-101.21772386785597,-101.76144517539069,-101.33191008027643,-101.59026885218918,-101.25024043768644,-102.09150704555213,-102.99161005718634,-103.28273640200496,-104.19770752033219,-103.43856451753527,-104.1372972629033,-104.72772170975804,-104.7873628186062,-105.5397886489518,-105.08109173411503,-106.02292351657525,-105.03225379018113,-105.68858160544187,-105.10258359648287,-105.83510854607448,-105.45856380648911,-106.41692774184048,-107.13232296332717,-106.59642842272297,-106.16930746845901,-105.43696498731151,-105.56680324533954,-106.19335014838725,-105.61966071277857,-105.82892862521112,-106.1722915568389,-106.41169056436047,-105.72071318561211,-105.16618656367064,-105.08262774161994,-105.06997614353895,-104.19968634983525,-104.42777854809538,-103.82201777305454,-103.14762169355527,-103.94147660443559,-104.63411466171965,-104.90851224819198,-104.4226326183416,-105.40375796100125,-104.73739502765238,-104.87808537576348,-104.48248159931973,-104.08993592392653,-104.72605656972155,-105.39905806723982,-105.1692572357133,-105.42398796463385,-106.1486872928217,-106.08528099674731,-106.09599798452109,-105.25481633329764,-104.31503235315904,-104.9672229802236,-104.98050598520786,-104.18042960343882,-105.0116160530597,-105.86238792072982,-105.71846557222307,-104.87690812861547,-105.64308947138488,-104.77712894137949,-103.87769334577024,-103.14127316465601,-103.75196795770898,-103.8588527427055,-104.10599379660562,-104.60305570391938,-103.86994410166517,-103.46624007122591,-103.09704563580453,-102.39702670276165,-102.26271695178002,-102.27433202601969,-101.35689931968227,-101.70852590771392,-100.96271483460441,-100.04023914271966,-100.3466022820212,-99.94493747781962,-99.54615709884092,-99.31041681952775,-100.29649492586032,-99.94103906489909,-99.8790804957971,-99.99027064302936,-100.08479688223451,-99.47648055804893,-100.42349792877212,-101.15189126459882,-100.34292828803882,-99.44525330001488,-98.84387643868104,-98.12512965640053,-98.76944814901799,-98.15559325739741,-98.68751612585038,-99.22778490465134,-100.13266236288473,-100.47151254257187,-100.10694275284186,-100.16666618362069,-99.52730540418997,-100.20443849032745,-99.68582611391321,-99.19428884424269,-98.22333288006485,-97.89188379049301,-97.17929287068546,-96.85597261739895,-96.61888744868338,-96.46910534612834,-95.48456662287936,-94.90133076440543,-95.26259435573593,-95.52891473844647,-95.62379611982033,-94.98999818973243,-95.76439176406711,-95.01237777387723,-95.79735415894538,-96.41793249221519,-96.73646045243368,-97.67545844009146,-98.64323623199016,-98.89891942730173,-98.59670914383605,-98.79434990137815,-98.61497785011306,-99.2863302337937,-98.87201721593738,-99.14207868557423,-98.43922339333221,-98.54343947488815,-97.65956652443856,-97.26215374283493,-96.35557402297854,-96.68732424592599,-96.07651832513511,-95.64385255938396,-95.29009337164462,-95.55808888329193,-95.15143808024004,-95.89249014295638,-95.37276701489463,-94.96996000409126,-95.8732426171191,-95.50810236018151,-94.69173698313534,-95.64178848965093,-95.33855957025662,-96.2928516366519,-96.95325511926785,-96.26085522258654,-96.8040750301443,-97.31000817986205,-97.64253919012845,-97.4938727132976,-98.38704874226823,-98.12498352024704,-97.21414513280615,-96.39526237174869,-97.29359476966783,-97.69424196425825,-96.9440712002106,-96.16436281846836,-95.69373762095347,-95.7920823385939,-96.56754809245467,-97.12771649472415,-96.82413647789508,-96.47647653054446,-96.01304150698707,-95.42799756443128,-94.77642752090469,-94.34322972083464,-94.17573066242039,-93.59531489666551,-93.5637622801587,-93.54053578944877,-93.72481601452455,-92.7522863545455,-92.87815599655733,-93.86565390462056,-93.54048858955503,-92.81450040685013,-93.03561923094094,-93.20681811450049,-92.4334045657888,-92.87204554257914,-93.76355280447751,-92.94564146967605,-93.29089724598452,-92.45585724059492,-92.16229981696233,-91.63445595558733,-91.63438540929928,-92.32392889587209,-91.64749103877693,-91.986321488861,-91.34524593036622,-91.87380488496274,-91.07897787960246,-90.16739043127745,-90.16912840073928,-90.53968284791335,-91.09692020248622,-90.4778120322153,-90.0671552401036,-89.2755961525254,-89.98863138491288,-90.58507355023175,-89.77166807837784,-89.09371842164546,-88.18093744898215,-88.5285504036583,-88.47172572696581,-88.32933860691264,-88.046737160068,-87.56212672078982,-88.30077535659075,-87.77374038426206,-86.78523179609329,-86.14864001655951,-86.18551053386182,-86.88602104689926,-87.35165722994134,-86.5567293590866,-87.16479509929195,-86.30859223380685,-86.52872958872467,-86.41045989189297,-86.43129549268633,-85.74627029150724,-86.59872945770621,-87.43813302041963,-87.85576754482463,-86.86795140523463,-86.48475465690717,-86.61777997063473,-85.89127369923517,-85.67916007898748,-85.49480044422671,-85.39262169133872,-85.32449302310124,-85.9731802106835,-86.07098694564775,-85.58521184697747,-85.09109520120546,-85.57015518425032,-85.63784682750702,-85.44226709054783,-84.53962039388716,-83.82953010732308,-83.63785836845636,-82.93190734647214,-83.76974951010197,-83.43669315008447,-83.92711043497548,-83.38698868313804,-84.16772202728316,-84.8383485255763,-84.64999801805243,-84.26062199287117,-84.0482692909427,-83.77043860265985,-83.69905728567392,-83.26876105181873,-83.87456355104223,-84.75911710551009,-85.01470410265028,-85.95297126518562,-86.16573664918542,-86.35819964436814,-86.62618490401655,-86.61153043666855,-87.27395061217248,-87.16396524896845,-87.76008317666128,-88.09340719692409,-87.56192999565974,-87.99449514830485,-88.56266570044681,-88.52328288368881,-88.45374050969258,-88.71248232433572,-88.67729521915317,-88.22292823484167,-87.42868100106716,-88.24001445062459,-88.90832623280585,-89.82060174224898,-90.52227659337223,-90.98490866785869,-91.96977282641456,-91.00908060418442,-91.19109566463158,-91.35890275985003,-91.06531326659024,-91.971665635705,-92.11886303406209,-91.66028637066483,-91.58531371550635,-92.06209027953446,-91.13650267664343,-91.10128439962864,-91.05270657734945,-90.9735318981111,-91.77880052989349,-92.41905223764479,-92.5914457612671,-92.88045023754239,-92.89089581277221,-93.64724191464484,-92.71303485520184,-91.78044801065698,-91.97959916107357,-91.85958616901189,-91.19362522335723,-90.51835493696854,-89.55817619571462,-89.26946013374254,-89.10603404510766,-89.26875762315467,-89.61966940900311,-90.2159334407188,-89.6742847119458,-89.44411381753162,-88.97404115321115,-89.68609861005098,-89.8615879775025,-90.44211193779483,-89.66927623422816,-88.9944809479639,-89.97905863961205,-89.60082308575511,-89.33048402983695,-88.79407848231494,-89.18656194908544,-88.36571096163243,-89.36265244847164,-89.05064276233315,-89.7962817712687,-89.69192997086793,-89.54174717981368,-90.11164617352188,-90.95258114580065,-90.47221258748323,-90.38984384480864,-91.0117697045207,-91.71440423838794,-91.06169865000993,-91.68210128787905,-90.92163239559159,-91.01598146278411,-90.41433079726994,-89.44272246584296,-88.95402270834893,-88.7414414822124,-88.93942401604727,-89.5633066301234,-89.58700310206041,-88.68045492563397,-88.42363184830174,-88.68177787587047,-89.54791645007208,-89.86448399489745,-89.92682467959821,-89.53656582627445,-89.94060717057437,-89.74619033327326,-88.83840926550329,-88.92087616678327,-88.09553048713133,-87.8053103107959,-87.16115153487772,-86.681450442411,-86.43423161003739,-86.18554153153673,-86.69005025457591,-87.14178900793195,-86.42557001346722,-86.81244866224006,-85.8372191041708,-86.57912743324414,-87.30454568890855,-88.26993428962305,-88.61040771799162,-88.14429380651563,-87.76558957342058,-87.46687202714384,-88.01213020132855,-87.38339800853282,-87.62709200335667,-87.87552369106561,-87.83481200505048,-87.64411871274933,-88.1412051920779,-88.75510248402134,-89.02874347940087,-88.21815281966701,-88.44653490232304,-89.3388410420157,-89.45213721366599,-89.9715099753812,-89.2985572735779,-89.56656192988157,-89.40186694078147,-89.04172407882288,-88.26604376500472,-88.48682740610093,-88.630743177142,-89.30950875766575,-88.56773936422542,-89.21859121182933,-89.95487670227885,-90.42470427043736,-89.68084955587983,-90.04509278340265,-90.27277340972796,-89.79845009418204,-89.81606715591624,-89.76001185923815,-90.04936624737456,-90.12418836401775,-90.34595018485561,-90.12782826786861,-89.72464404301718,-88.9067740435712,-89.10222164914012,-89.6123130293563,-89.67104825330898,-89.67987978970632,-88.86487406399101,-88.99002534430474,-88.59703430021182,-88.59250305918977,-88.3655329127796,-87.97706031287089,-87.52990291081369,-87.14317003078759,-87.20180012565106,-87.54869941435754,-86.56779399514198,-85.94430906511843,-85.0782468803227,-85.6657037679106,-86.56525827245787,-86.52698890818283,-85.85774395056069,-86.21749739069492,-85.21989592444152,-85.9702566768974,-85.23645051335916,-85.51069760182872,-84.99891677079722,-84.50167212309316,-85.11997351795435,-85.31129422271624,-85.05028948793188,-84.61597528215498,-85.35048443917185,-86.34539740532637,-86.23701113462448,-86.74057777039707,-85.76699886238202,-85.1156742698513,-84.8825533115305,-84.65540270507336,-85.1107176640071,-85.20909175556153,-85.29280132055283,-85.11036239145324,-85.25969314854592,-84.88371427450329,-85.2236420493573,-85.66875926218927,-86.60440096165985,-85.85113003756851,-85.72411631327122,-85.47813141997904,-85.0404634270817,-84.61103607155383,-84.99001171952114,-84.69043607078493,-84.98170214518905,-84.74453287478536,-83.86958781117573,-84.09096011146903,-83.8049398502335,-83.46523931482807,-84.01750601548702,-84.57573781022802,-84.2623306196183,-83.7994515276514,-83.53007340151817,-84.32570710312575,-85.14904491044581,-86.09305073367432,-85.74565881164744,-85.57457473920658,-86.05090131657198,-86.13020243495703,-86.59739945270121,-85.7622600463219,-86.3354230504483,-86.13178950594738,-86.37561239348724,-86.15478008240461,-85.68533133761957,-85.31948382081464,-84.52739356597885,-83.85631297109649,-84.71897931955755,-83.79360826639459,-84.26448240596801,-83.50205737818033,-82.71970644686371,-83.4321242547594,-82.5393182579428,-81.83211225830019,-81.03891168767586,-80.76746511040255,-81.37005562568083,-81.81385003495961,-81.7446103640832,-81.7680865386501,-81.93837187159806,-82.59195044962689,-81.9912681649439,-82.45283667603508,-82.83209851430729,-82.67276650201529,-82.48386698262766,-82.6857002186589,-82.36779278051108,-82.1400261563249,-81.60016365954652,-81.42318039061502,-81.04683776572347,-80.0760708488524,-79.43679453060031,-79.41351553052664,-80.40236941538751,-80.00926084630191,-80.1027441774495,-80.02430292544886,-80.85762358549982,-80.89119603810832,-79.97429615072906,-79.13437069486827,-78.766279484611,-79.52634902019054,-78.77396893361583,-78.0952216302976,-77.26864681160077,-77.6528414459899,-77.9240066963248,-78.76433600531891,-79.69815111067146,-79.99850367661566,-79.38567410456017,-78.87598731741309,-78.30686611309648,-77.63195422152057,-78.1259236340411,-77.94892411539331,-77.91327044600621,-77.54851174727082,-77.72941120527685,-76.995827910956,-76.4420189796947,-75.8999599404633,-76.4958097836934,-76.30937280179933,-75.7185825179331,-76.26360177015886,-75.92155401641503,-76.35806932719424,-77.10793891083449,-76.8766186577268,-77.4838192993775,-76.55720544885844,-75.5585736464709,-75.03198091872036,-75.3094113082625,-76.00159682380036,-75.98653826443478,-76.77583412406966,-76.59135934058577,-76.04859322216362,-75.11329096974805,-75.5942589379847,-75.93155283294618,-76.62973471172154,-76.7363159651868,-77.4308243044652,-77.8007277334109,-77.27035342529416,-76.65764021966606,-76.16595497122034,-76.2410211218521,-76.17797997873276,-76.32187290489674,-77.08393191266805,-77.07694971188903,-76.95961405104026,-76.6736134714447,-75.68211725400761,-75.58121917815879,-76.0715561863035,-75.72617367841303,-75.3543006516993,-75.09065048862249,-75.75181887485087,-75.2792449304834,-75.98422063747421,-75.99527387833223,-76.75108709512278,-77.68351300572976,-77.96923850104213,-77.066208709497,-77.98769190255553,-78.29329252010211,-78.1013947497122,-79.00125049473718,-78.09940105071291,-77.62840534839779,-77.84458962688223,-77.40572744933888,-77.45234629325569,-76.74778506811708,-77.04999099764973,-76.84456665208563,-77.05827162601054,-77.5882175322622,-78.50913923699409,-78.85470288805664,-78.23833577847108,-78.69689082400873,-78.54148124437779,-78.12821341771632,-78.4521543616429,-78.24898974504322,-78.5333192544058,-78.94954942073673,-79.49856406450272,-79.92572338366881,-79.4069148702547,-79.27109425980598,-79.5537722450681,-78.97744538774714,-79.07162593770772,-79.11606147605926,-78.53239704901353,-78.11697333073243,-77.72353541199118,-77.28731627576053,-76.6454702061601,-76.53620048146695,-77.34605763293803,-78.33505146251991,-78.03784829191864,-78.80941419582814,-79.55907681584358,-78.84165032207966,-79.79374988982454,-80.22431032219902,-80.73017708025873,-80.42030784767121,-80.27308840909973,-79.28155260626227,-79.09477385412902,-80.0707248733379,-79.07217265898362,-79.83478537388146,-78.9018481047824,-78.08058368507773,-78.37370372191072,-78.04458916885778,-78.35400906391442,-77.97337689669803,-78.79595141811296,-77.9263328150846,-77.32852518558502,-78.28338025789708,-78.18548512971029,-79.02219063276425,-78.25910498434678,-79.25400941865519,-78.47982020769268,-78.73266869038343,-78.18898369790986,-78.96825690055266,-78.82293459726498,-78.62556252023205,-77.98778642481193,-77.82428216189146,-78.79231467144564,-79.33042745152488,-79.46610257728025,-80.12064383784309,-79.2618155553937,-78.63064567325637,-79.53490970050916,-80.05134569574147,-80.50289273262024,-80.93644572002813,-79.96690448746085,-80.82990718027577,-81.67323184804991,-81.82168003031984,-81.58056571194902,-82.32334569655359,-83.21888536494225,-84.030256702099,-83.70302353939041,-83.00226221373305,-82.26048919418827,-81.91937200212851,-81.2060452150181,-81.28688422171399,-81.52208200376481,-81.1689547705464,-82.1391092701815,-81.73042681952938,-81.58472992107272,-82.32293840451166,-82.39770229160786,-82.03977745585144,-81.05001996085048,-81.19507866352797,-81.81936691654846,-81.59797414392233,-82.2264761487022,-81.66129206540063,-82.50357144512236,-82.13588458765298,-81.80808084551245,-81.3075026795268,-81.35747442021966,-81.32346922717988,-82.24602904403582,-82.61249610036612,-83.12256999732926,-83.02479959977791,-82.7963875522837,-82.28296516789123,-82.11853068508208,-81.35194501839578,-81.74905636068434,-80.87646951945499,-81.3658689619042,-81.85469396552071,-82.15579232014716,-81.95614852150902,-81.02279302338138,-80.5408068257384,-80.61768339760602,-80.57654219074175,-80.41687865136191,-79.54083476914093,-78.66755243809894,-79.33082916587591,-80.09181614173576,-80.55176289286464,-79.83489470323548,-80.27465261053294,-80.32935573207214,-81.07322093937546,-80.84553682850674,-80.52846560161561,-81.18641789071262,-80.62169515760615,-81.42691804422066,-81.85793940862641,-81.64276751223952,-82.22008591750637,-81.4456937070936,-82.26796746859327,-83.2401380520314,-84.16168031096458,-83.61509515345097,-84.22530203172937,-85.01530223200098,-85.60938131576404,-84.63060360401869,-84.70324215851724,-84.78613398829475,-85.17162033822387,-86.04336697701365,-85.82327150087804,-86.20637090317905,-85.39005555491894,-85.67196982819587,-85.60737613402307,-85.0359821789898,-85.54164226958528,-85.28984778001904,-84.8494171234779,-84.82820881111547,-84.27726258011535,-84.10790731851012,-84.4953832225874,-84.63986006285995,-85.04751230729744,-85.061473316513,-85.9315635454841,-85.48721075011417,-86.15959977684543,-86.20596926473081,-86.62743327021599,-86.4080947805196,-87.3750295820646,-86.79634023783728,-87.62011489085853,-87.3968831654638,-86.76121834199876,-86.30003871163353,-86.6993818427436,-85.98573642969131,-86.4100718521513,-85.5004909094423,-86.07324826903641,-86.77836850332096,-87.6762511767447,-87.95322648994625,-87.92579806502908,-88.17949225800112,-88.15601381333545,-87.5801505302079,-87.14284320827574,-87.39618038246408,-87.2479545623064,-87.0301792952232,-86.66911424556747,-86.35763047449291,-86.86626848764718,-87.05161157157272,-87.23862598510459,-87.97074573999271,-87.97887730877846,-88.69192178687081,-88.88245029607788,-88.42519448511302,-87.50850178673863,-87.05146273598075,-87.95850772829726,-87.15228517632931,-87.04311667429283,-87.15800184896216,-88.08773223962635,-88.06948672328144,-88.93947725556791,-89.26572124287486,-88.69239576999098,-88.77491544093937,-88.09486115491018,-88.6581771671772,-89.62385541945696,-89.85382509231567,-90.35990631952882,-90.93149372376502,-91.2434117756784,-91.36314602801576,-90.94055687868968,-91.3308807304129,-90.76070730993524,-90.85854196967557,-90.62079486157745,-89.8398131239228,-90.13387895096093,-91.09883209457621,-90.2699062130414,-89.75562293175608,-90.66735985316336,-90.55076357908547,-90.1731764851138,-90.3482500477694,-89.8175131957978,-90.56186378840357,-89.69529431778938,-89.08671134337783,-89.93954352056608,-90.56951036024839,-91.24845137260854,-91.81552013102919,-92.59713759785518,-93.01128014735878,-93.21521273674443,-93.02038700599223,-92.87602227693424,-92.86802660720423,-93.48171854857355,-93.63293042592704,-92.70169771416113,-93.63106361590326,-93.88002758938819,-93.356199469883,-93.22510803677142,-93.63192784413695,-94.01550855999812,-93.73325809650123,-94.55092257587239,-94.89924054779112,-95.07645512511954,-94.89902698341757,-94.89605198148638,-95.6739718420431,-96.58657712955028,-97.45718953246251,-97.8970742514357,-97.50029110303149,-97.1600680667907,-97.27794881770387,-96.81326610967517,-96.53132982365787,-96.04338612267748,-96.65581084787846,-95.92460049502552,-96.20602223742753,-96.43016457743943,-97.26469139754772,-96.5402972032316,-95.56336157117039,-96.56133651686832,-96.64586024591699,-97.03447654563934,-96.2320073992014,-95.82069610664621,-96.53000672161579,-97.17573683802038,-97.14727005315945,-96.58069499954581,-96.85422208532691,-97.50228660646826,-98.25063367048278,-98.7757909190841,-99.64810452004895,-100.02888200804591,-100.29766844632104,-100.44056652998552,-100.45144115341827,-100.69453741097823,-101.20351449167356,-101.5118094785139,-100.51319165341556,-101.37150209769607,-101.97971777385101,-102.95439487416297,-102.70183230191469,-102.9058160292916,-103.13162369420752,-102.73321647243574,-101.78133097523823,-102.24732594098896,-102.31394703220576,-102.34624849772081,-103.02841771673411,-102.18878375086933,-103.18450323445722,-104.02622547699139,-104.77795690810308,-103.80663452250883,-104.23215096257627,-104.47195528680459,-105.29675097716972,-105.0048061106354,-104.61087882705033,-105.50236855726689,-104.72468456299976,-103.72738443827257,-103.75133905373514,-104.50921798450872,-104.38893215218559,-104.8472692007199,-104.88840716099367,-104.75313381524757,-104.23343752976507,-104.69911259040236,-105.20833029132336,-105.3027195315808,-104.85801083547994,-105.29046643711627,-104.94938254542649,-105.76061108196154,-105.30169834150001,-105.97245614370331,-106.19553668471053,-105.40731556946412,-105.88159004319459,-105.55658214632422,-105.53327088011429,-105.1909467279911,-105.49165132502094,-104.77228793362156,-103.88334041228518,-103.67560010403395,-103.35265119047835,-102.53821775317192,-102.64860566984862,-102.78000864945352,-103.4785766643472,-104.45849690539762,-103.96212475560606,-104.41480845911428,-103.65075039630756,-103.02786643523723,-103.75955280195922,-104.17470748024061,-103.36644835025072,-102.49618839705363,-102.94418407371268,-102.27409031521529,-102.73656909819692,-101.9302753857337,-102.04791774833575,-102.39911551214755,-102.05837793741375,-102.06161710014567,-101.59613187471405,-101.59980167169124,-102.56534643331543,-102.71162846684456,-101.73009571805596,-102.7111079134047,-103.13300948496908,-103.66546400776133,-104.3417679388076,-104.54092745482922,-105.10217450838536,-105.18305355217308,-104.23397634550929,-104.88849367015064,-104.76660932321101,-104.03004640340805,-104.1510055102408,-103.26418047351763,-103.75817891815677,-104.01423465413973,-103.58172813104466,-103.5884252898395,-103.67861368926242,-103.53799220966175,-104.5341207315214,-104.31369705824181,-104.08363060792908,-104.3725727442652,-103.55435788538307,-103.13491516094655,-103.68457008292899,-103.8193144001998,-104.26172228436917,-104.08114166045561,-103.8660539118573,-102.91382370749488,-102.66793805826455,-102.38883782271296,-103.20041530253366,-102.21898664487526,-101.40327161410823,-100.7745973574929,-100.46287656389177,-100.4960449510254,-101.33485457859933,-100.71915766363963,-101.23043379746377,-101.56820899713784,-101.12474643345922,-101.04182000132278,-100.06860859319568,-100.48079941095784,-101.16464935196564,-102.08604638651013,-102.03085858700797,-102.15862925956026,-102.20437808008865,-102.77636913210154,-102.97081014094874,-102.96610895125195,-103.6247086180374,-103.63117120461538,-104.4181179124862,-104.03562452970073,-104.0071949120611,-103.43979912437499,-103.86503069102764,-103.26037439424545,-103.03567175986245,-102.13850557664409,-102.46138080582023,-101.70645938254893,-101.54581963829696,-100.7405427210033,-100.84298397554085,-101.28254212252796,-102.16104492219165,-102.48484181798995,-103.09921785024926,-102.9026791471988,-102.51054147910327,-103.45910409931093,-104.3144908300601,-104.1537270299159,-103.26304227905348,-103.86063196510077,-103.72236974118277,-103.29896889394149,-104.09673732612282,-104.1226160665974,-104.97466868860647,-104.13232186157256,-103.18047366850078,-102.23449565516785,-101.55962193012238,-102.1848089066334,-102.8891203016974,-103.88185031432658,-103.03189501585439,-103.18445693142712,-103.92106275353581,-103.2455607377924,-103.07245756546035,-103.79699400579557,-103.54478702880442,-103.29686586558819,-104.27240309491754,-104.91155113978311,-104.2145752622746,-104.37993861967698,-105.04784802347422,-105.25858878716826,-105.29978503519669,-105.77157175913453,-105.0620192810893,-104.88378236209974,-104.58647561166435,-104.89760528597981,-105.36919363634661,-105.55894396780059,-105.18105283472687,-105.75295978412032,-105.37526253471151,-106.22568727703765,-105.24294741638005,-104.24548158841208,-104.70721490355209,-104.32002120139077,-104.52584076253697,-105.33014691993594,-106.1498174900189,-105.22163774259388,-105.75913824373856,-104.96027443790808,-105.30626393388957,-105.83457527402788,-106.5760115403682,-105.99412790918723,-105.1324506662786,-104.91429335530847,-104.73322017211467,-104.30454204464331,-104.11643106583506,-103.48547690035775,-103.8246946646832,-102.8663320648484,-101.8726621423848,-101.92118407739326,-102.72534161200747,-103.64064142480493,-103.16987112443894,-103.02344725932926,-102.95868636155501,-103.5169001747854,-103.34709293721244,-102.71913072885945,-103.33328819088638,-102.40980514651164,-101.82601015176624,-102.74030217761174,-103.56720604933798,-102.64133271295577,-102.71862264489755,-101.91829278692603,-101.38442047126591,-101.51602502958849,-101.57856015441939,-102.5138761587441,-103.15820512222126,-103.57786468975246,-102.68637111317366,-102.57968625286594,-103.54134928574786,-102.7365369531326,-103.37186104571447,-102.86640115594491,-102.65865441225469,-103.42583266692236,-103.6594519005157,-102.77531115338206,-102.66172404401004,-102.49334531649947,-102.0160599774681,-102.03343541407958,-102.13909726124257,-102.7850378761068,-103.51695988606662,-103.60905850399286,-103.66119954455644,-102.96404442703351,-102.9503059736453,-103.26000659260899,-102.68568219151348,-101.80748795345426,-101.46844372712076,-102.06432786211371,-101.491154007148,-101.10470208199695,-101.68549927696586,-101.37798188766465,-101.2643017815426,-100.65345701575279,-101.10698575666174,-100.49410836165771,-100.78073567757383,-100.33550980128348,-100.16184016037732,-100.94714637985453,-100.91288609011099,-100.4756168667227,-100.68439885461703,-100.51962417270988,-101.05929079093039,-101.16889384575188,-101.62413594825193,-100.75506380246952,-101.60545375850052,-100.80643701273948,-100.88619251176715,-99.97026704950258,-99.49939542077482,-98.68012106278911,-99.0756441145204,-98.99462092900649,-99.59333252022043,-100.02705670660362,-99.03206475172192,-98.06037413747981,-97.77634076215327,-97.1795355998911,-97.76759650697932,-98.4324322831817,-97.74417080916464,-96.90799989830703,-96.72495014825836,-96.82235821010545,-97.05022955592722,-97.4421284366399,-96.85441914247349,-96.88169011939317,-96.46882910048589,-96.41720389341936,-97.30588378803805,-98.18445686157793,-97.36305865971372,-98.323921920266,-97.37525455513969,-96.64934533042833,-97.41184838162735,-97.38240595115349,-97.76182532077655,-97.35315173864365,-97.24949077749625,-96.38668059883639,-95.44750607945025,-95.23223287472501,-94.34134548110887,-94.22736248373985,-94.69660976389423,-94.21635089116171,-93.41436909884214,-94.28070660633966,-93.6187973045744,-94.14378111623228,-93.96328495396301,-94.04033750947565,-94.011146819219,-94.9124844726175,-94.65808695415035,-95.39223558455706,-94.49288080027327,-94.29519570572302,-93.6542817093432,-94.19910896196961,-93.83774833846837,-92.98891294002533,-93.27765279309824,-93.32472601020709,-92.58886831905693,-92.67348164413124,-93.18744170526043,-92.53115830151364,-93.42868382576853,-93.51479729171842,-92.75302393687889,-92.23623288795352,-92.4889986407943,-93.35807351907715,-93.26982569647953,-94.06001892499626,-94.99680942017585,-94.64810209162533,-95.45638835430145,-94.68217918043956,-93.77523121517152,-92.91021978715435,-93.18246620614082,-94.18113819696009,-94.02917297650129,-94.02216341160238,-94.22666096687317,-93.38545059598982,-94.03353772871196,-93.91533264145255,-94.09289856767282,-93.44727966468781,-92.93026815820485,-92.513408546336,-92.88567619770765,-92.19106385763735,-91.58990928949788,-91.44816571800038,-91.88708293205127,-92.82938207639381,-92.75189732993022,-92.79823840549216,-91.88709989655763,-92.06982883438468,-91.46637600939721,-90.65530367475003,-91.64939413638785,-92.08095939364284,-91.08378807501867,-91.7872253167443,-91.19166216533631,-91.70326743926853,-92.53888355987146,-92.14208214450628,-92.426344900392,-91.45539439143613,-91.87951701786369,-91.01253436785191,-90.67101809754968,-90.5477044666186,-90.51046683266759,-90.24822446005419,-90.88191571412608,-90.0035818614997,-90.12387171341106,-89.70469499379396,-89.09502390213311,-89.00815513404086,-88.43299475451931,-88.92097630724311,-89.74785349611193,-89.47989908885211,-89.14011292811483,-88.15489604929462,-87.86874135583639,-87.37265933537856,-86.38876198092476,-85.70544946286827,-86.30377623951063,-86.43180119153112,-85.76069166697562,-85.58464761264622,-85.8721135626547,-86.31900755874813,-86.32761245733127,-86.30303357541561,-86.88901775889099,-87.67815859848633,-87.97852074634284,-87.96646369248629,-88.03343460522592,-87.54307825258002,-88.18193000368774,-88.09650374343619,-87.48689773771912,-87.3400977612473,-86.58029203210026,-86.61823043692857,-86.43582918122411,-87.19909073971212,-86.64712365809828,-86.23331411648542,-87.23077474394813,-87.26804942870513,-87.97911650082096,-87.77121852664277,-88.3881619265303,-88.48462394066155,-88.52961579710245,-89.05018396954983,-88.33974436391145,-89.32726948242635,-89.19626829214394,-88.64376883767545,-88.34551699785516,-87.73567230533808,-88.27359173586592,-87.8554807617329,-88.40356266219169,-89.37456129398197,-88.80777007201687,-88.40319236088544,-87.78350218990818,-87.82104081846774,-87.67044462356716,-87.34029932599515,-87.18089826684445,-87.81176299368963,-87.03003513813019,-86.14504922786728,-86.78601587377489,-87.0977374939248,-86.58416010905057,-86.56300123175606,-87.53933747904375,-86.65559638431296,-87.53222071379423,-87.93027246836573,-87.061662979424,-87.88115690881386,-87.84541003219783,-87.78259773738682,-88.0960892951116,-88.55077261384577,-89.18644667277113,-90.15561365801841,-91.13316676253453,-91.53351302910596,-91.39144899742678,-91.7772902441211,-92.31191969383508,-91.91984232794493,-91.99088905984536,-92.25205893907696,-91.29169924929738,-91.08788827713579,-91.85098412400112,-92.60777179105207,-92.78406182024628,-92.97490956448019,-92.30133401043713,-92.24441560963169,-92.86197014944628,-93.81648823153228,-94.41377755114809,-94.60308583173901,-94.5407941415906,-95.17986910557374,-95.52338138548657,-96.0433915774338,-96.89199923770502,-96.90658505633473,-96.91742595797405,-97.15482470812276,-96.3736687367782,-96.20750315720215,-95.53597641736269,-95.87416800716892,-95.47092844964936,-96.00310967909172,-95.76319310674444,-96.48592002457008,-96.15645652683452,-96.0250382036902,-95.66179058142006,-95.92349022394046,-96.75446416577324,-96.05538090877235,-95.19602322392166,-95.91531058587134,-95.88892251206562,-95.13666966697201,-94.66956720175222,-95.09622728964314,-95.57739464426413,-96.51753744436428,-97.18836149014533,-97.41086491150782,-96.94219331396744,-97.25982601894066,-96.49693297129124,-96.25242559146136,-95.34978023776785,-94.45356903644279,-93.57275014230981,-94.45691057341173,-95.1230255891569,-94.31508677685633,-94.60837782733142,-93.63800404965878,-93.50362399965525,-92.50472867442295,-92.72642475226894,-92.80265217414126,-92.42694478668272,-93.16210474306718,-93.26021459093317,-94.21886320505291,-94.92916076583788,-95.53962771501392,-95.64414231479168,-95.53591633122414,-94.69762282446027,-94.58544425899163,-95.18656823411584,-96.04407976241782,-95.58464493695647,-96.45976555580273,-95.98114432161674,-95.67002769606188,-95.26535410480574,-95.1344931293279,-94.53598320204765,-94.853427848313,-95.05390882259235,-95.71042995015159,-95.55606350395828,-95.25753471115604,-95.02127200365067,-94.22921717632562,-95.17888124473393,-95.54567835526541,-94.89057542057708,-94.66232330724597,-94.31149889342487,-95.0708226095885,-95.43187954835594,-95.01553583983332,-94.86977791506797,-95.38333378639072,-95.34541170904413,-95.08182092336938,-95.12136444775388,-94.9502443112433,-95.41888164076954,-95.67966341087595,-94.96840032702312,-94.29980821348727,-94.25559166958556,-93.28546773968264,-92.58498171018437,-92.17667008331046,-92.78041759971529,-92.34014866640791,-92.47193895932287,-92.76014102436602,-92.58913294179365,-93.58049331605434,-92.88117244374007,-93.24365879502147,-93.31471683550626,-92.95474862679839,-92.85433962894604,-93.3944237283431,-93.65100113395602,-93.66794603783637,-92.83623562799767,-92.36667252518237,-92.60541576752439,-91.91854700818658,-92.90076433168724,-93.78838711325079,-94.40855596587062,-94.12039570463821,-95.05694521823898,-94.59459550632164,-94.65840442059562,-95.51330403937027,-95.52069383719936,-95.80290507199243,-96.53121454874054,-97.01208541169763,-96.30297008669004,-95.43047725269571,-95.97843314893544,-96.22747948067263,-95.37379686255008,-95.50145017774776,-95.72479486791417,-95.36457750573754,-95.04922330006957,-94.16311539895833,-93.9605299695395,-94.32463842956349,-93.80305231036618,-93.02988545177504,-93.67904407717288,-92.89286714559421,-91.94991048937663,-92.05685633560643,-92.11201142473146,-92.0237011439167,-91.969459482003,-92.06534945219755,-91.86274246731773,-92.13562578335404,-91.36634639557451,-91.49923741491511,-90.74158674525097,-90.99272268963978,-90.68454712629318,-89.77311233850196,-90.01890818495303,-89.27292273985222,-88.49196913745254,-89.4769754530862,-89.32157254265621,-88.76052886294201,-87.99145931750536,-87.14541968563572,-87.312229169067,-88.07198066171259,-88.63252821518108,-88.68364629428834,-89.5260395933874,-90.02862429851666,-90.64380805706605,-89.69307253556326,-88.79832662129775,-89.55365820555016,-90.15444108238444,-89.31850875541568,-89.89014144288376,-89.88119827117771,-89.98217822797596,-89.9173600897193,-90.12628888431937,-90.56338807195425,-90.34022400295362,-90.57697790162638,-90.09018452977762,-90.61471419362351,-91.47789972787723,-90.98278501676396,-91.91167034721002,-91.37067314097658,-92.36250936798751,-93.11292392713949,-93.02134905802086,-93.40110601345077,-92.76505660684779,-92.61539593758062,-91.96702825231478,-91.37868336355314,-91.61237513460219,-91.78298454079777,-92.09284345200285,-92.72251746011898,-92.88616107730195,-92.62080687703565,-92.80382033251226,-92.38765391381457,-93.30458204587922,-92.87488171039149,-93.3159966901876,-92.71054209768772,-92.53147043194622,-92.1961406795308,-92.10226652491838,-91.67397992033511,-92.53944350825623,-92.60578758083284,-91.73113800305873,-90.88046433730051,-91.51384319504723,-91.82799419434741,-91.93364433897659,-92.16321295825765,-91.89878941979259,-91.30126156285405,-92.12898965459317,-91.41341180447489,-90.48637703759596,-90.26177657814696,-90.74584214622155,-90.86139129335061,-91.60201981151477,-91.4386480548419,-91.6921110372059,-92.10099468566477,-91.69532752037048,-91.1517660934478,-91.78503365116194,-92.56565783685073,-92.67278178874403,-92.56530777504668,-91.65155508928001,-92.08031110931188,-92.34321698034182,-91.41729805991054,-90.81332803843543,-90.16265558172017,-89.80235539842397,-90.57043395703658,-91.33003756450489,-90.41954254359007,-89.97067239228636,-90.84251798549667,-91.06396883865818,-91.0297457925044,-91.76782062696293,-92.76358319958672,-92.25243844743818,-91.31544202798977,-91.24173383507878,-90.36735283723101,-89.57972852420062,-90.36278506740928,-89.61140067270026,-89.0758300004527,-88.65531502570957,-87.810477796942,-88.73712081229314,-87.73902022605762,-87.59786084340885,-87.20141439326108,-87.63915156573057,-87.85706644086167,-87.84826297080144,-87.48291604267433,-87.92753805685788,-88.92068639583886,-89.03735471982509,-89.91200410854071,-90.39798144064844,-90.6694327420555,-91.4305117316544,-90.96040696138516,-91.13611184386536,-90.85282710706815,-91.30566321918741,-90.8080279789865,-91.59282179595903,-91.07501694886014,-91.8428686466068,-92.79965746216476,-92.62583414791152,-93.28703765850514,-92.76938580255955,-93.26333780074492,-92.38000077195466,-92.6255820193328,-93.34945601876825,-93.42941840039566,-93.2268957043998,-93.13250253582373,-92.59136557206511,-93.27899071900174,-93.98721577227116,-94.98317890102044,-95.52576191816479,-95.55703603383154,-94.88671186799183,-95.10175455547869,-94.84245827328414,-94.33738577831537,-95.00214924663305,-95.04209048068151,-95.05265106447041,-94.30523670325056,-94.32537902705371,-94.44939103582874,-93.60029515298083,-93.55905485711992,-93.162337097805,-93.21597972046584,-92.80484156915918,-92.97989988327026,-93.65078670205548,-94.17356285313144,-94.48848473466933,-93.89827705500647,-94.29316728655249,-93.73484520474449,-93.38341592997313,-92.3969081309624,-91.60353377508,-91.13237198954448,-90.42292158212513,-90.55568702472374,-89.79819228453562,-89.2909100796096,-89.65876715630293,-88.93311386043206,-89.64757437864318,-89.11253235954791,-90.1003993684426,-89.57529125735164,-90.28488797042519,-89.5924944174476,-89.49731465242803,-89.16751880804077,-89.42241003736854,-89.68416504515335,-89.96245014853776,-89.40822870284319,-89.99044698895887,-90.21129880426452,-89.5569697781466,-89.75113399187103,-90.57333773141727,-89.99230969790369,-90.69245241116732,-90.57265617744997,-91.2205102709122,-91.70426363218576,-90.90684350719675,-90.93914215872064,-90.96388339949772,-91.2634126492776,-90.5982168102637,-90.46933765616268,-90.80617110896856,-90.66951097734272,-89.74114863667637,-88.93952644616365,-88.32614236138761,-87.43294641142711,-87.1301223281771,-86.25958619173616,-85.89479864481837,-86.82038302300498,-87.22150911064819,-88.15348677802831,-88.27862220676616,-88.93981071189046,-88.33412961568683,-89.21934692421928,-88.8372797225602,-88.344540276099,-87.6648372458294,-87.14512278325856,-87.72573109110817,-88.22340122284368,-87.73552657058463,-86.96559798251837,-87.75769882742316,-87.27718121372163,-87.04812922142446,-87.88998560840264,-87.05766849778593,-86.29534295434132,-86.44792769988999,-87.40149178914726,-88.07152333296835,-87.10547657078132,-86.14432799443603,-85.70997432433069,-84.95665892818943,-84.52873024949804,-84.76520737633109,-84.65681479219347,-84.54939797800034,-83.87476766761392,-84.43462005956098,-84.11305100144818,-83.39955412689596,-82.88566551962867,-81.93016889179125,-81.35438989195973,-82.1567462850362,-81.76409858930856,-82.20239725802094,-81.91173685528338,-81.37577651673928,-80.60055475868285,-80.42227635532618,-79.7771081123501,-80.62778718257323,-81.51209334749728,-81.96294592600316,-81.63129631755874,-81.03428201889619,-80.95323243644089,-80.61834899289533,-81.41563028236851,-81.49344742484391,-80.68349847197533,-80.16452885093167,-79.42781785316765,-79.2315975385718,-78.84937168937176,-78.50191561831161,-79.2414638842456,-79.68285924289376,-80.28973146341741,-79.58487920230255,-80.20103591214865,-80.23287359671667,-81.0618059351109,-81.00492692412809,-81.02171424916014,-81.68384927185252,-81.13587142108008,-81.07936356356367,-82.03605113131925,-82.67480327188969,-81.73605044279248,-81.23421079898253,-81.56382120680064,-81.8899132036604,-82.60380248213187,-83.45936773112044,-83.6086898483336,-83.92311005853117,-83.31793171586469,-82.49311192147434,-81.54086578311399,-81.96497133746743,-82.58096144488081,-82.52541435929015,-83.40052153496072,-83.07390104141086,-82.44895242806524,-82.2114625829272,-82.78690839326009,-82.38164390949532,-82.26175444340333,-81.44266579626128,-82.28399247210473,-82.53686304297298,-82.60642408812419,-83.3687156131491,-83.33815248776227,-83.7849449715577,-83.2744229962118,-82.90978387463838,-83.82762605510652,-83.18892814777792,-83.88880693726242,-84.73568123346195,-84.79166947351769,-85.23913770262152,-85.60665346076712,-86.0141011737287,-85.16247372096404,-84.37699475744739,-84.90841131005436,-85.21167766395956,-85.93459909735247,-85.43987255031243,-84.56965039670467,-84.14524586033076,-84.84343715338036,-84.3202891596593,-83.9659390039742,-83.80052149342373,-83.39481642097235,-82.87806282332167,-82.04891146020964,-81.98675469402224,-82.4270881479606,-82.27324473345652,-82.31460823956877,-83.31276243506,-83.4626901531592,-84.20575302513316,-84.43961028195918,-84.4828109787777,-84.57201049942523,-84.51369356689975,-84.07951221894473,-84.54461860237643,-83.59683563094586,-83.76059430697933,-84.50124204298481,-84.07634208584204,-84.38268636912107,-85.31122067477554,-84.34426487842575,-83.50143474433571,-84.00291817029938,-83.86019995249808,-83.31040123011917,-83.44606347754598,-83.31615299452096,-83.26011938648298,-82.8663819115609,-82.6287381881848,-82.31648802664131,-82.98581889597699,-83.07310209190473,-82.57559459097683,-83.00671854615211,-83.61434311093763,-82.61499760206789,-82.39351780386642,-82.29824354872108,-83.07993717864156,-83.87316866125911,-83.27863953402266,-83.46213967911899,-83.57802239106968,-84.32047137757763,-83.63759355898947,-83.50448955921456,-82.92625255836174,-82.38186605647206,-82.27220554556698,-81.4464326906018,-82.35703882249072,-81.49545464850962,-82.07931319670752,-81.74659842718393,-81.40155173512176,-81.6964801819995,-81.92463329946622,-82.29412273084745,-82.16133770998567,-82.88170450786129,-83.20355586381629,-83.08142646076158,-82.87876680260524,-82.97020852565765,-83.67029471881688,-82.84525515511632,-83.81627123476937,-83.1396250743419,-83.45671807602048,-83.45415631309152,-83.7965911035426,-84.49577215546742,-85.05501697259024,-85.20897433394566,-84.6357600078918,-85.32210393808782,-85.20483050309122,-85.57651810115203,-85.96643753256649,-85.27600204339251,-85.17885426105931,-84.62785396864638,-84.43609533086419,-84.11161554791033,-84.22862249985337,-83.63603137200698,-82.87927925214171,-82.81585089210421,-82.99874003743753,-83.4959070472978,-82.99782074335963,-83.81441770493984,-83.9484276343137,-84.46602882537991,-84.11724841501564,-84.33038582932204,-85.24542931467295,-85.1877129804343,-85.38044136064127,-85.33962404401973,-85.76579671958461,-85.82361256983131,-85.6425402034074,-86.21183973737061,-86.54751031240448,-85.79442711314186,-85.08106645056978,-85.47120452485979,-86.03408998483792,-86.22335516056046,-85.8040577978827,-85.28220869414508,-84.37799619976431,-85.2566140559502,-84.52878156583756,-84.04631261574104,-84.37910949625075,-83.39420305052772,-83.73656590050086,-82.88569289725274,-83.35440675821155,-83.05861742142588,-83.10666922805831,-82.63041001139209,-83.1664359997958,-83.04717915132642,-83.14083397062495,-83.22089985990897,-82.97568722860888,-82.33372107241303,-81.51211223891005,-80.80610869498923,-80.95224359026179,-80.4471396189183,-80.66125019174069,-80.19726746669039,-80.89147909078747,-81.62935230368748,-81.40071014827117,-81.8302840758115,-80.86943870875984,-81.33039229456335,-82.23882195632905,-81.75738566555083,-82.10362343629822,-82.95161245996132,-83.34604105958715,-83.90505858929828,-82.93525113305077,-82.74219687376171,-81.95741946808994,-82.805025562644,-82.27026742137969,-81.52877502609044,-80.76997325150296,-81.24508353788406,-81.34297484206036,-81.77168232342228,-82.54573980765417,-81.85426638880745,-82.59399115527049,-83.29678349010646,-82.66058503789827,-82.91638048784807,-82.76184163149446,-83.08866769773886,-84.03545574005693,-84.8308500056155,-84.13775444636121,-84.34857807401568,-83.92915280535817,-84.78440412087366,-84.63431902136654,-85.41640969738364,-85.92362970346585,-85.08431128691882,-85.04219707613811,-85.29540352663025,-85.22085351357237,-85.0507191689685,-85.8735136683099,-86.44153653969988,-86.27887114090845,-85.71450993930921,-86.3190887812525,-87.21646703779697,-86.77951186941937,-85.97976581286639,-86.78210171824321,-86.01412452105433,-86.21284107351676,-85.5774432006292,-85.28006840450689,-85.85844380548224,-86.80091088823974,-86.33072873577476,-85.99225577665493,-85.9764668373391,-86.1179628148675,-86.17601484712213,-87.1646465738304,-88.03058560332283,-87.54719952587038,-87.11833027424291,-86.80305087845773,-87.65307612996548,-88.44324487820268,-88.57940576551482,-89.21642563259229,-89.86213143495843,-90.1211170181632,-89.36032172339037,-89.32193387066945,-89.3599725314416,-90.0020204782486,-89.2644810769707,-88.57027676375583,-88.5381570244208,-88.69040686031803,-89.62317640753463,-89.32451642677188,-90.10252838721499,-90.1482357387431,-90.82130458112806,-91.76407625665888,-91.42970272758976,-92.13946375530213,-92.43073424650356,-91.85810319287702,-92.818018282298,-92.9286950812675,-93.34777192631736,-93.03795599611476,-92.3702262849547,-92.0037784371525,-92.90995958959684,-92.56867930619046,-92.83222607756034,-93.20282255392522,-94.10749405855313,-93.64010275155306,-93.23836197098717,-92.86481977673247,-92.72136093256995,-93.54975708667189,-93.603361078538,-92.68059158883989,-92.52060939883813,-93.11968321818858,-92.7130577173084,-92.94435709621757,-92.22246275097132,-92.3861115113832,-91.85167926410213,-92.36566490167752,-92.12533946009353,-92.74924527062103,-92.25764689734206,-93.15600097225979,-93.06329755438492,-93.05666727153584,-92.0717753013596,-91.31935747247189,-91.90844646561891,-91.21785174123943,-90.22590934904292,-90.25242376234382,-89.31793544767424,-89.51583607215434,-89.30285830190405,-89.86639889003709,-89.75800165953115,-90.31020636251196,-90.74194815801457,-90.79217405756935,-90.97264530928805,-90.15045024128631,-89.85736116301268,-90.35234223864973,-90.88148936256766,-90.90061293868348,-91.62392224278301,-92.03987554553896,-92.36383097153157,-92.2102330205962,-91.9262336823158,-92.30888549750671,-92.2525127492845,-91.44332331232727,-92.12015324924141,-91.2132479599677,-90.32407399639487,-90.94788793241605,-90.48453856585547,-91.01587724173442,-90.22480042325333,-90.17358578881249,-89.33742822799832,-88.86238723853603,-87.86400181800127,-88.00933789741248,-88.75615652790293,-88.89788349391893,-88.93548127543181,-88.08379394887015,-87.09931308962405,-87.36544273188338,-86.59992652619258,-87.00097863702103,-87.8438277002424,-87.76059840247035,-88.25817638402805,-89.001659902744,-89.83860781602561,-90.54882978228852,-91.11810310883448,-90.43134457943961,-90.55872511770576,-91.36705238232389,-90.64045628951862,-90.01219751685858,-90.83862423431128,-91.13864808436483,-91.45441126031801,-92.23402295121923,-91.90971476119012,-91.18545117368922,-92.03750627441332,-92.62990111159161,-92.4754153424874,-92.58030469762161,-93.57531082909554,-94.4363066367805,-93.65257916552946,-93.1394726112485,-93.91299688303843,-93.88381303893402,-94.57226899638772,-94.23259319597855,-93.96221917541698,-93.79177891323343,-93.69844439672306,-93.52925453521311,-92.7342488206923,-92.39913175441325,-92.01490073557943,-91.8803930892609,-91.3875339771621,-92.34896600851789,-93.30846601352096,-92.64148285146803,-92.81693840958178,-92.54980536736548,-93.15872292080894,-92.17766438191757,-92.17142574535683,-92.89275616314262,-92.0694062053226,-91.80322184460238,-92.37081129290164,-92.53296491177753,-91.89898041682318,-91.44172582728788,-90.82155071478337,-91.54460793919861,-91.70355240628123,-90.85343435779214,-91.69995708810166,-90.84788605198264,-89.92827018117532,-89.11544727999717,-89.34613789571449,-88.8864527028054,-88.60608427366242,-87.65401884075254,-86.81966078095138,-86.72256611613557,-87.32844019448385,-87.13172589614987,-86.43476010439917,-86.37084543239325,-86.15127539681271,-86.53089989954606,-86.46924606757239,-87.43733703438193,-86.7100528338924,-85.78041201364249,-86.26947321137413,-86.05162244057283,-86.00076651433483,-85.85699103493243,-86.30629634996876,-87.02118698973209,-86.84346849517897,-86.2738818321377,-86.81000819196925,-85.94263877859339,-84.98425427265465,-85.49694634368643,-84.77736988896504,-85.50144262704998,-84.60830319533125,-84.74688685825095,-85.74046350829303,-84.87486460665241,-84.5096810949035,-84.96942061185837,-85.83292364981025,-85.0921867727302,-84.86650508875027,-84.33100168872625,-83.33651821222156,-83.41583244735375,-82.50022237328812,-82.80508288322017,-82.44804750895128,-81.91173177352175,-80.93704504473135,-81.37730996869504,-82.14313692972064,-82.0047692921944,-82.71944900043309,-82.17114213760942,-81.65116563206539,-82.36045325966552,-81.53089792327955,-80.84424556558952,-80.88131705252454,-80.96829628804699,-81.47661679098383,-82.35736894840375,-82.21409492986277,-81.86478714412078,-82.77301683789119,-82.45204196637496,-81.66684702644125,-80.82400642847642,-81.37237414438277,-81.85740959597751,-82.46901162248105,-83.0365922274068,-82.47250337712467,-82.05599800031632,-81.68121507158503,-82.49952141707763,-82.94327633921057,-83.89275015424937,-82.93088259128854,-83.25248146941885,-83.63330291258171,-82.7247134372592,-82.02483856817707,-82.11609080946073,-81.45643041003495,-80.72692786809057,-79.77103098435327,-78.99335456406698,-78.47326433844864,-77.97887311410159,-78.61661186534911,-77.71960554085672,-78.57000399753451,-79.08003778429702,-78.42551298392937,-77.474514298141,-77.1186141744256,-76.52475122362375,-75.95633316040039,-76.26153540145606,-75.41030003596097,-74.68361661024392,-74.01840736391023,-73.24047640385106,-73.0622048699297,-72.52520996006206,-72.9944359078072,-72.41203568968922,-71.67532655363902,-71.95877068117261,-72.18388699134812,-72.2741365628317,-72.8577441452071,-72.9996883738786,-72.39152797311544,-72.9136660899967,-72.34967318642884,-71.52137162256986,-70.99910600204021,-71.08255545143038,-70.8514419971034,-70.40838518599048,-69.5862829987891,-70.28859671251848,-70.39460657490417,-70.43761726189405,-70.43871084181592,-70.34709000214934,-70.12860426679254,-71.0229212762788,-70.94978103460744,-71.38886173721403,-72.22514920961112,-72.64038816699758,-72.65599571866915,-73.31955463439226,-73.45127298356965,-74.04533634521067,-73.279400492087,-72.78461885079741,-72.16721837921068,-71.65850347327068,-71.20500415517017,-71.36229897057638,-70.77205657586455,-70.62511232867837,-71.0910068708472,-71.76810184447095,-70.7786526363343,-70.88138972921297,-71.61892759380862,-70.99801366217434,-70.26451845513657,-69.7820552829653,-70.39223288092762,-70.28450950281695,-70.2858288581483,-70.78241493739188,-71.37509235972539,-70.40321774641052,-70.50353803252801,-70.9040830573067,-70.85123194381595,-70.79711922165006,-70.82831143820658,-71.13028394058347,-71.9246899872087,-72.32274452131242,-71.76792448759079,-71.82839953713119,-71.82282937318087,-72.5229413448833,-71.93751167226583,-71.78702228050679,-71.012070028577,-71.64610118512064,-71.05493183992803,-71.2456130166538,-71.86855722265318,-71.58287175744772,-70.85014452878386,-70.42201690655202,-70.96997177274898,-71.60550082242116,-71.34019615640864,-70.64931817073375,-71.53385070012882,-71.15098511707038,-71.50353931216523,-71.12040393520147,-70.79928278224543,-70.79124783910811,-70.87237140908837,-70.46382711175829,-69.98197577474639,-70.85416756384075,-70.32599243754521,-70.79323326982558,-70.56530114170164,-69.99724586308002,-70.33594285184518,-70.12910346314311,-70.25213971314952,-70.46114644780755,-70.47396845230833,-70.38302944460884,-69.60205439012498,-69.08706246875226,-68.26162904966623,-67.64976905239746,-68.55450719362125,-67.87742906948552,-68.09807249298319,-68.78416775073856,-67.95972354896367,-67.34247569739819,-67.40200386941433,-66.48390408605337,-66.12398846633732,-66.01018126029521,-66.04737902944908,-66.31702468683943,-66.21665364177898,-65.99999799765646,-65.70680430810899,-65.002102506347,-64.64193273242563,-64.93319900101051,-65.25574953528121,-64.88786838250235,-64.10394663969055,-65.08158592320979,-66.07234903331846,-66.4161805245094,-66.77675817580894,-65.87451332248747,-66.52636355673894,-66.4581574560143,-65.57872040104121,-65.9944434184581,-65.52417006576434,-66.49899734323844,-66.59189106337726,-66.9786469922401,-66.6372000859119,-66.38011794257909,-66.02398291695863,-65.98635796783492,-66.77079180860892,-66.80118559487164,-66.51930171949789,-66.13838042039424,-65.27247833833098,-64.66164718614891,-65.13586546340957,-64.95946203125641,-65.12965072132647,-66.02438318589702,-65.04790477547795,-64.4795575872995,-64.32978443056345,-64.27204799698666,-64.88088339753449,-64.1966944844462,-64.44914590287954,-65.02837664680555,-64.24423346947879,-64.23931977897882,-64.62220701109618,-64.33381906198338,-64.03970173047855,-64.38648751797155,-64.16767800599337,-65.15674973744899,-64.83962974138558,-64.06154526211321,-64.86698771594092,-64.2220226470381,-64.23781288554892,-64.29466126672924,-64.87627048324794,-65.57672708388418,-66.33451750315726,-67.00654697045684,-67.68755812430754,-66.70148879941553,-66.44649742310867,-65.7956044333987,-65.88786668051034,-65.18118413025513,-65.338593384251,-65.9818064570427,-66.71497785206884,-66.8654489479959,-66.9681276245974,-66.76507132919505,-67.63359055388719,-67.28761280793697,-67.17519388720393,-67.55417998554185,-67.9117932044901,-67.6994137451984,-67.4356342391111,-67.48817559843883,-67.25629968941212,-68.1179532953538,-67.26891944836825,-67.86473565781489,-68.74029299290851,-68.48583504417911,-67.64064842788503,-67.8920673537068,-68.33815088775009,-67.88408898795024,-68.76056756218895,-68.48290694318712,-69.07454153429717,-68.28686390072107,-68.03896544314921,-67.6766165252775,-67.62387998448685,-67.76234324695542,-67.05246618622914,-66.76489673461765,-66.0865881149657,-65.49475095793605,-65.56565759610385,-66.02699547680095,-66.34258204698563,-66.99969407217577,-66.04860163992271,-65.32034598710015,-65.09072390059009,-65.24507220601663,-65.33089995197952,-65.52050155540928,-64.98013256350532,-65.09813194908202,-64.82853434421122,-64.94191038468853,-65.21977849164978,-64.93776187766343,-64.35784919233993,-64.39613281516358,-63.88943059556186,-64.58863800717518,-64.29503913177177,-64.54034244501963,-63.72523372294381,-64.35835800645873,-64.53224591491744,-63.79780347459018,-63.93443130282685,-63.05358933424577,-62.630464910529554,-62.99457102781162,-63.84641975490376,-63.21049357065931,-63.09377682255581,-62.16719267470762,-61.78732832008973,-62.643464277964085,-63.06175119196996,-62.86727014789358,-63.617804314009845,-62.89950045198202,-62.86153577687219,-62.333391510881484,-61.39598627388477,-60.919160089921206,-61.85548480413854,-61.9892997299321,-61.450089124031365,-60.636172893457115,-60.583173882681876,-59.64680470852181,-60.19925891561434,-59.86873670434579,-60.11810291046277,-60.619444746524096,-60.174006782472134,-59.9619524134323,-59.102087748236954,-58.469439692329615,-58.84947412041947,-59.68782549770549,-59.815016699489206,-59.26095911581069,-59.537952607963234,-60.5339740854688,-61.064511626027524,-60.61356304772198,-61.47212156141177,-61.193150458391756,-61.33694522827864,-61.80606860294938,-60.83099754806608,-60.83943774551153,-61.78555353311822,-60.91289176279679,-60.54351070057601,-59.95937261311337,-59.13104993989691,-59.27219643257558,-58.51227593515068,-58.26583712780848,-58.06115848803893,-58.37310310732573,-57.59796956600621,-58.24535448849201,-57.305227955337614,-56.73550815694034,-57.31762657687068,-57.32783401757479,-58.06583339674398,-58.87851415295154,-58.84521354129538,-58.503348347730935,-59.20635606488213,-58.75230808602646,-59.49685072293505,-59.58625762630254,-58.85854995716363,-58.713833580724895,-59.65230032475665,-59.66376196453348,-60.05540399858728,-59.583274498116225,-59.650037539191544,-60.475391851272434,-59.6210471666418,-59.25489313527942,-59.37475949851796,-59.76493728440255,-60.34615384088829,-60.61991654941812,-61.56133226212114,-61.0328822741285,-61.032117639668286,-61.82884260267019,-61.84020956605673,-61.163335498422384,-61.94336141599342,-62.07610219204798,-62.141864395234734,-62.49808293534443,-61.9695157147944,-61.67020569834858,-61.1394138103351,-61.91434314008802,-61.64533019019291,-61.77292370516807,-60.8501318464987,-60.859781494829804,-61.34066970134154,-61.58575940923765,-61.74291511066258,-62.026005355641246,-61.81233524763957,-62.346527478192,-63.15733049064875,-63.7061876016669,-63.145287743769586,-63.261396050453186,-62.72616495843977,-63.591361940372735,-64.00543618528172,-64.11024746811017,-64.73599973740056,-63.82349912263453,-63.17432190803811,-63.137839255388826,-62.7365291044116,-62.0971698416397,-61.13118899567053,-62.12065785797313,-62.587390831205994,-62.090064683463424,-61.3482372215949,-62.00230522407219,-61.910987183917314,-61.30393992131576,-62.01430193381384,-62.36328486632556,-63.19418202806264,-63.2751714955084,-62.31133834598586,-62.3290391988121,-62.42919442104176,-61.46539324009791,-61.99697255156934,-62.89527528779581,-63.321300632786006,-63.46553809195757,-64.26654279371724,-64.77884528134018,-65.01057714736089,-64.80651831300929,-64.55914653884247,-64.60136848594993,-64.35301261814311,-63.498570470139384,-63.57444205740467,-63.19590736879036,-64.04612443782389,-64.1477328510955,-63.833829291164875,-63.41620458941907,-62.82263429602608,-62.65704954229295,-63.587212200742215,-63.1938036181964,-63.34424574347213,-62.394978484138846,-61.43751287134364,-62.12331091333181,-62.454620871227235,-61.72301383083686,-60.9788687415421,-61.351579945068806,-61.89070654986426,-61.026643686462194,-61.88552280049771,-61.36290571419522,-60.95130833145231,-61.60694543225691,-62.446211736649275,-63.13346243649721,-63.282441082876176,-63.01837789360434,-63.3029710194096,-62.747691857628524,-61.864441726356745,-62.49605928407982,-62.21213224576786,-63.0897378702648,-63.012213851325214,-62.05370744690299,-62.937487702816725,-62.65844302531332,-62.40556904952973,-62.340189607813954,-61.65518003562465,-60.7543680514209,-61.19991055224091,-61.25411905394867,-61.802627603989094,-60.888211900833994,-60.41653346735984,-59.90930720278993,-59.342710052616894,-60.31588105484843,-61.05096215661615,-61.6588822142221,-61.65602529980242,-61.9610036467202,-62.49751083832234,-63.12203884217888,-63.11772760795429,-62.52905262960121,-62.285040442831814,-61.36695037595928,-60.91717573441565,-60.359683809801936,-61.19355754274875,-61.565877337474376,-61.65724287740886,-62.20535043254495,-62.38471539039165,-62.34197682188824,-62.75167691335082,-62.17466138070449,-62.19368648668751,-61.334546603262424,-60.34926659753546,-61.13799341255799,-61.074375226628035,-62.02390444232151,-61.35968116810545,-61.90699920617044,-62.22595737269148,-62.591250186786056,-61.95724916830659,-61.85723587451503,-62.720403279177845,-63.0706498301588,-63.8518654499203,-63.215667051728815,-62.256158124655485,-62.37773207202554,-62.99659673310816,-63.77232023375109,-63.23117557540536,-63.87323046149686,-63.361047396436334,-62.87744382955134,-62.02591374889016,-61.45847405400127,-62.298706779722124,-62.483836403116584,-62.41246917610988,-62.880886007100344,-63.737284301780164,-63.72931403154507,-64.53343307832256,-64.3921813601628,-63.5862728995271,-63.30108914710581,-63.20074498467147,-63.71202933927998,-63.67647815356031,-62.777741560246795,-62.138470525387675,-62.347640302497894,-61.38409240543842,-62.174548376817256,-62.16492701182142,-62.689833384007215,-63.187581818085164,-63.501841879449785,-64.31346897641197,-64.26360231917351,-65.23899455089122,-65.93577762879431,-65.06717878300697,-64.8493880983442,-64.3715768312104,-63.99735291302204,-63.49025794118643,-63.41541818482801,-62.97624967992306,-62.709401964209974,-63.334522258955985,-63.21538853831589,-63.338161145336926,-64.13622283376753,-63.513432662468404,-64.12777905259281,-63.61344660585746,-64.55616596387699,-63.94617355521768,-64.67778396373615,-64.909213504754,-64.90372963063419,-65.63723153294995,-66.24419171083719,-65.32612058427185,-65.2756184656173,-66.06498781917617,-65.52381416875869,-64.71101873135194,-64.55114067159593,-64.18128640251234,-64.30027645500377,-64.77786991884932,-64.24692826718092,-63.87394800269976,-63.4538572691381,-63.17272631591186,-62.561037661507726,-62.95553234126419,-62.08543461607769,-62.468512799590826,-61.89087285287678,-61.279850949998945,-61.50814289459959,-62.17509420355782,-62.616406640037894,-63.06947301514447,-64.04438428767025,-63.28829083731398,-63.545051691588014,-64.49572339793667,-64.28915723413229,-64.93322921032086,-65.49664764897898,-64.89672947721556,-65.14498862856999,-64.22876727906987,-63.51937715802342,-62.96477714367211,-62.95901874965057,-62.17362459702417,-61.24877718184143,-61.796962765045464,-62.674392447806895,-63.374320960603654,-64.18593242252246,-63.299478800501674,-62.85858703358099,-62.687551512382925,-62.891995466314256,-63.793714587111026,-64.33777917455882,-63.43758949264884,-64.20808199420571,-64.27426048601046,-65.22743584262207,-65.65037422673777,-65.43719665426761,-64.46820117672905,-63.697472961619496,-64.20729428669438,-64.07993731973693,-64.08125578053296,-63.39673608681187,-63.66244681412354,-62.892868633847684,-63.19962274795398,-63.523042008746415,-64.24306819494814,-64.62476409645751,-64.9925165977329,-64.59753980720416,-64.55983854830265,-65.37629839079455,-65.868390168529,-65.10078665195033,-65.20904163690284,-64.47056929534301,-64.71010799566284,-65.20758747169748,-65.91574885416776,-65.40296564763412,-66.15294342068955,-66.94573884131387,-67.28922770917416,-67.5725791095756,-68.29254179866984,-69.15009839134291,-69.35754134692252,-70.04221364017576,-70.479557399638,-70.48231765208766,-70.9525029999204,-70.34325812663883,-71.09873085329309,-70.52827877085656,-71.39156474964693,-71.03886381955817,-70.3067050059326,-69.40813904628158,-70.23845112510026,-69.54603367112577,-69.7906203167513,-69.48024754039943,-69.65012326044962,-70.2659113239497,-70.94337403122336,-70.65115186804906,-71.12374119926244,-70.27656829170883,-71.18543864460662,-71.57994886813685,-71.19701247941703,-72.14191800262779,-72.77885470772162,-73.67076721554622,-74.39141534687951,-75.1180515079759,-74.38073239568621,-74.89893861953169,-73.92118987208232,-74.5885512419045,-74.49527264107019,-73.50955699617043,-73.13209445169196,-72.56031355354935,-72.25695695914328,-72.24966695299372,-72.99641088349745,-73.67537138378248,-73.58869408909231,-73.30095957498997,-73.05241797026247,-73.17055732151493,-72.96620662417263,-73.90892759943381,-73.9574968079105,-73.8832649923861,-73.88416220014915,-73.56553315091878,-73.80240603908896,-73.76849890500307,-72.7844117153436,-71.91527613811195,-70.98381589632481,-70.10466424236074,-70.35927506256849,-70.99517249315977,-70.60323519585654,-70.12263628235087,-69.15672707743943,-69.80416541546583,-70.22935603931546,-69.24757080711424,-69.68229889124632,-69.37141915410757,-68.4558859989047,-67.7314255842939,-66.93760140240192,-66.48376129753888,-67.10566262016073,-66.450330757536,-66.85924904700369,-66.29439165722579,-66.18679766310379,-66.03663162514567,-66.72023715870455,-67.25961006851867,-66.92293313005939,-67.23380083823577,-67.6395426359959,-67.77070726780221,-67.49810553435236,-67.45924781123176,-66.47388501139358,-67.00463272677734,-67.71335909469053,-67.99267211696133,-67.13077874435112,-66.59700477169827,-66.19189267791808,-66.06860409025103,-65.30331973498687,-64.98017599014565,-64.3257583132945,-65.1028974656947,-65.57389784930274,-66.40171117009595,-66.76216892199591,-66.39563017943874,-65.94308245647699,-65.02562658162788,-65.1783900973387,-64.91635636379942,-64.35826666979119,-63.52312176162377,-63.20885388087481,-64.02168544149026,-63.13817143207416,-62.25064395181835,-61.63081961683929,-62.574017209000885,-62.71639016689733,-62.38181649520993,-62.351106139365584,-63.237105175387114,-64.18805659934878,-64.00855356222019,-63.1682830802165,-62.610310554504395,-62.83543431619182,-63.060377698391676,-64.05200591497123,-64.36770294001326,-63.47566199256107,-64.42780186794698,-65.4069743338041,-66.23240464320406,-66.19338107015938,-66.93093800311908,-66.44284618180245,-67.42865374824032,-68.37259545130655,-69.3218302023597,-69.06705879000947,-69.66764945909381,-69.75927666388452,-70.68436736054718,-70.70773723116145,-70.20733247231692,-70.18858281103894,-70.89775594696403,-71.5635357410647,-71.38208216475323,-70.45561196748167,-70.89690200332552,-70.5885462872684,-71.17427023965865,-71.68067082529888,-71.79251601500437,-72.1095564593561,-71.83383348351344,-72.50782847683877,-73.24898788239807,-73.96780326031148,-73.73119682166725,-74.66742620011792,-74.39832255011424,-73.67427537031472,-74.52233370579779,-74.39388519432396,-74.19379459973425,-74.3151551662013,-75.05588494287804,-75.83130089333281,-75.05866635916755,-75.0380811500363,-75.6514976718463,-76.64722954435274,-76.58410830143839,-76.4453455186449,-75.51380212139338,-75.54958710772917,-74.98257088148966,-75.67435814160854,-76.2218458368443,-77.15977537073195,-77.59432205976918,-76.85673429397866,-75.87492762319744,-75.47150809224695,-75.22575391223654,-75.52329499647021,-76.18696284480393,-77.01237455848604,-76.16859483299777,-76.69894681638107,-77.52266440726817,-77.1887694625184,-77.7434418592602,-76.97248024633154,-77.25612973468378,-77.69950769236311,-77.3442413546145,-77.72923462931067,-77.13363270787522,-77.58693678397685,-76.98780334601179,-77.44302899297327,-76.64070770936087,-77.35811564465985,-77.73205981403589,-77.42523701069877,-77.49027301836759,-76.75367279537022,-77.07957983436063,-78.0498905540444,-78.03349652746692,-78.38478115340695,-77.67497906275094,-78.6100702797994,-78.65133545873687,-77.72049955418333,-77.95117985224351,-78.53080894658342,-79.30674469657242,-78.54103619419038,-78.58778289332986,-78.32706330856308,-79.20098652876914,-78.71871426235884,-78.18366981530562,-77.85099834529683,-78.36622876208276,-78.20091125462204,-78.30522480746731,-78.16783892828971,-78.10571132507175,-78.02521193772554,-78.92662377562374,-78.68879775842652,-78.17080908920616,-78.15348435984924,-78.51727999513969,-78.49589187186211,-77.62424377491698,-76.895881222561,-77.51509124133736,-77.15166374808177,-77.64688852336258,-78.27830700436607,-77.78718626033515,-78.15901889838278,-77.83238987252116,-78.10364437568933,-79.06434164941311,-79.87474224716425,-79.7901037428528,-79.96016422240064,-79.52972100069746,-79.81453500781208,-78.83121505659074,-79.20272989757359,-79.5370097658597,-79.47188591444865,-79.83026374178007,-79.82713327370584,-79.94800695544109,-79.12324960902333,-78.8511157007888,-79.54704375099391,-79.97048002434894,-80.272450520657,-80.94744344148785,-81.45898144273087,-81.50162223726511,-82.2343621738255,-82.19114807760343,-82.39096215879545,-82.66105336975306,-83.41063935356215,-82.73036094009876,-83.14611515495926,-82.83401874126866,-83.7727253488265,-83.67670565610752,-83.76112852012739,-83.28089570906013,-84.16827860893682,-83.60858091898263,-84.57632889878005,-84.29310508118942,-85.25750989839435,-86.15522220311686,-85.72324492968619,-86.3284088568762,-86.84331618249416,-87.54410227853805,-88.10805443348363,-88.5360748609528,-88.19747970625758,-87.63012616802007,-86.77845621434972,-87.31303688231856,-88.24513519788161,-88.91123423352838,-88.85505545791239,-88.5296504306607,-89.52414816478267,-89.88771224580705,-89.86289951158687,-89.3058702647686,-89.72704457631335,-90.16479557799175,-90.01812867587432,-89.11633451841772,-89.28353468328714,-88.66100651444867,-89.27337509253994,-88.30101833352819,-87.9135963190347,-87.88213067408651,-87.57138954522088,-86.8752519544214,-87.51467153197154,-88.21284996066242,-87.49872521916404,-88.48022986575961,-88.66581001598388,-88.26890373742208,-87.89542987802997,-88.51147825224325,-88.28705934388563,-87.32264259690419,-88.10477900970727,-87.77262854157016,-88.4748159153387,-88.64454350154847,-88.09913603868335,-87.26990237878636,-86.67010430246592,-87.32175094168633,-88.16980648320168,-88.5634533893317,-87.99085908802226,-88.64149517379701,-88.75715678185225,-89.27906695427373,-88.87061787908897,-89.28882907377556,-89.97969597997144,-89.14172043232247,-89.61845987197012,-90.00924330949783,-90.78315691323951,-91.2856217911467,-91.70657839020714,-92.18991000717506,-92.60793508868665,-93.14535382715985,-94.0329904477112,-94.04670749884099,-94.06606696359813,-94.18251917837188,-94.18791625788435,-94.56524058617651,-93.87165579991415,-94.41597973834723,-94.05905519379303,-93.84791747480631,-93.81662856973708,-93.11778532154858,-93.19523751875386,-93.47323104599491,-93.40078249434009,-92.5497116111219,-91.67348301969469,-91.95300595182925,-92.43099202634767,-91.56114319013432,-91.08479229733348,-91.02719191974029,-90.7914255973883,-91.45104014221579,-90.52846669731662,-90.88187883747742,-91.84149380447343,-92.35550684621558,-92.43717698566616,-93.28750301897526,-92.85452388320118,-93.141813616734,-93.71917275805026,-94.4507340923883,-95.4393949857913,-96.26948598911986,-96.98708750028163,-97.70553707890213,-97.86170593323186,-98.57609253982082,-98.96294602984563,-98.47521817404777,-98.76555129140615,-98.86565671628341,-98.54776942590252,-98.94391991943121,-99.08697780501097,-98.60891100205481,-98.10237434040755,-98.29279889538884,-98.25991033017635,-98.0847152764909,-98.61084425263107,-97.993627037853,-97.24118252284825,-97.9097932795994,-97.00476298201829,-96.6380721386522,-96.53194341715425,-97.48064054036513,-97.49271228071302,-98.30232967296615,-98.09229762852192,-97.5343633084558,-96.56318899057806,-97.15661709755659,-97.83448068285361,-97.77508794795722,-98.16010865848511,-97.40546856960282,-98.33262036321685,-98.13466252526268,-97.2841932978481,-97.8135424638167,-97.3902396550402,-98.15700647281483,-97.46435817424208,-97.43316633300856,-96.83814908470958,-96.43398470804095,-97.34140153462067,-97.51265147374943,-98.09078203234822,-98.88824150105938,-97.92270039441064,-97.04960512928665,-97.52782069053501,-97.6225722655654,-96.86103264521807,-96.04538484010845,-96.51532700192183,-97.3146982640028,-97.20225652400404,-97.37581029161811,-97.37220574961975,-97.9280483815819,-98.80808020429686,-97.85060001211241,-97.72606254788116,-98.43367187678814,-98.23725882126018,-98.04259167099372,-97.46530468482524,-98.02730674110353,-98.8757783472538,-99.13201276445761,-99.48471210105345,-99.1310324203223,-99.78663459280506,-99.91970440605655,-100.37356226844713,-101.15504518337548,-101.12937509221956,-102.05611138883978,-101.68397215008736,-101.73431875510141,-101.32966330414638,-100.39074165234342,-99.43566724052653,-100.1041669677943,-100.77578166220337,-101.2214738423936,-101.37649274524301,-101.90079191187397,-102.46865688357502,-101.74665067484602,-102.42345860879868,-101.66723205009475,-102.36490159947425,-102.10615367116407,-102.0504509168677,-101.15116741415113,-102.01843068096787,-101.82083408068866,-101.62282345863059,-102.56336433487013,-103.15515419654548,-103.85054239165038,-104.5384780894965,-104.07542292913422,-104.96658068243414,-104.08892544684932,-104.51475509954616,-104.61788782197982,-103.98792306287214,-103.90231234114617,-103.44414548343047,-102.924727096688,-102.10172540228814,-102.2250616052188,-102.07491656579077,-102.93061827961355,-102.10367694823071,-101.5688754953444,-102.11645813239738,-102.35256702406332,-103.28910940140486,-103.91023301100358,-103.55596978822723,-102.6639025923796,-102.94277518708259,-102.51607486233115,-103.2157488707453,-103.12881436897442,-102.63769042911008,-102.16091569652781,-102.01257027545944,-101.32851239107549,-101.1966079925187,-100.58835979597643,-101.52345144562423,-102.05176983261481,-102.34672550158575,-101.4194798427634,-102.40104796178639,-102.29954487644136,-101.76739761512727,-101.45383176626638,-100.4996643923223,-100.27155096270144,-101.16889122175053,-101.31262986222282,-101.9307721387595,-102.46249336609617,-103.10658109001815,-102.97228765068576,-102.90690290182829,-102.73367567081004,-103.20227157743648,-103.82300361525267,-103.95480168610811,-103.65827868273482,-104.25354924472049,-105.17349045211449,-104.4600840783678,-103.6645855451934,-102.71635974897072,-103.16740647377446,-102.90422370424494,-102.8375867633149,-103.39766803756356,-103.07139999000356,-103.22672304650769,-102.3567320574075,-102.88270012661815,-103.67926636850461,-104.04958260850981,-103.73443114105612,-103.36607061047107,-102.52667068550363,-103.26610940881073,-103.53907009214163,-103.81188497226685,-104.35006953962147,-104.8135546692647,-105.1351538724266,-104.48869870882481,-105.39652869198471,-104.82518526213244,-105.6473037879914,-105.69552557915449,-106.55203008837998,-106.23402242967859,-106.01046288525686,-106.29761369014159,-106.251856317278,-106.47153505496681,-107.03541608015075,-108.00957000302151,-107.07617098884657,-106.35904338443652,-106.13825661595911,-105.36830374505371,-105.8756616008468,-106.475895232521,-106.21162211149931,-106.86618460528553,-107.76552192075178,-107.49220048915595,-106.66176594840363,-106.16214319411665,-106.02169558545575,-105.7516601998359,-106.12370904302225,-107.0211997628212,-107.9367075394839,-108.46672986494377,-108.68690047739074,-107.7366162315011,-107.33854099456221,-107.42663906840608,-107.13692660769448,-107.25389915099367,-106.29452047590166,-106.66108884429559,-107.60940094664693,-107.44131015334278,-107.16459192475304,-107.20684015471488,-106.85831366619095,-106.90137755079195,-106.82043971586972,-106.00367712415755,-106.75774494744837,-107.08875487046316,-106.55116633186117,-106.40011691814288,-106.08147395448759,-105.90873303404078,-106.69884171150625,-107.0028859958984,-107.95759823871776,-108.288773836568,-108.01740466570482,-107.37915312917903,-106.92396654421464,-107.20018006162718,-107.49430982302874,-107.24659897340462,-107.9886512956582,-108.33224482322112,-107.95854906598106,-108.62950126407668,-108.34612017311156,-107.66879145707935,-108.41148088360205,-108.45639469055459,-109.32626895979047,-110.01518779899925,-109.1809847233817,-108.50881963875145,-108.02972802706063,-108.78535009780899,-109.18640058999881,-109.6878767311573,-108.99645116971806,-109.48342730477452,-110.19110907567665,-110.77396419318393,-110.90935830678791,-109.97705196356401,-110.18047002982348,-109.52454622089863,-108.9495664620772,-108.87202467303723,-107.94328166684136,-107.18492513243109,-107.76152749080211,-107.44168168865144,-106.75725168781355,-107.56382175721228,-108.19211445795372,-107.28746411949396,-106.6592018911615,-106.27643817802891,-106.24624754209071,-106.7030256674625,-107.4415124761872,-107.97604065854102,-107.64188644755632,-108.13465299084783,-109.03409364726394,-109.73001868603751,-110.2504417989403,-110.21236236486584,-110.2305791885592,-110.34192524431273,-111.30226914677769,-110.50554314022884,-109.87585511850193,-110.29979905439541,-110.48782294010743,-109.80871372437105,-110.32959852414206,-110.79807917308062,-111.374190737959,-110.68997038714588,-109.98432194907218,-110.70885150320828,-111.18336758064106,-110.58407604321837,-109.82803122000769,-110.24879983067513,-110.83436614461243,-110.63718259474263,-110.15161758987233,-109.72618294460699,-109.38456755969673,-109.34720478160307,-110.26610745163634,-111.20240983692929,-111.1964078200981,-110.71581840422004,-110.80270760459825,-110.68791593797505,-111.52353817597032,-110.77435912517831,-110.87403798056766,-111.09725677594543,-111.99505700403824,-111.62305334070697,-111.10783676290885,-111.15269485954195,-110.55438952241093,-110.71048329630867,-109.73070389963686,-110.51262741070241,-111.06985467672348,-111.0887723537162,-110.6777079924941,-111.67359525104985,-111.62487815180793,-112.16171328350902,-112.3955846936442,-111.70868015475571,-110.7248004693538,-111.30674267513677,-111.2100392440334,-111.14961853111163,-111.86868781130761,-111.43637860845774,-112.0211926610209,-112.78849711641669,-113.42250790214166,-113.94921026844531,-114.66116747865453,-114.2070977455005,-113.88480315450579,-114.10803430806845,-113.42357393214479,-112.9572088974528,-113.20874884538352,-113.46734431292862,-113.80526254465804,-112.99305641232058,-113.57965991692618,-114.05460574664176,-113.57157866237685,-114.04009559843689,-114.30583661422133,-113.58753553917632,-114.1347960405983,-114.28914314834401,-114.40487364539877,-113.5364109701477,-112.96886054659262,-112.10144372656941,-112.67329799197614,-112.54787172703072,-111.79610769543797,-110.97172008128837,-111.14306201832369,-110.84537228057161,-110.09523222688586,-109.80484080314636,-109.13797498121858,-109.05135909607634,-108.6585694886744,-108.65307126566768,-108.19233355252072,-107.4556337269023,-107.61168482946232,-107.62316306820139,-107.42800580849871,-107.3465930246748,-107.85849821893498,-107.93005549302325,-107.47623409098014,-107.65096971252933,-108.51963128894567,-108.28839144390076,-107.4053778485395,-108.34654969256371,-108.88168604765087,-108.10323506919667,-107.28287629690021,-107.2513380870223,-107.43792330380529,-106.70489025581628,-107.4202721924521,-107.50954279769212,-107.22237423947081,-106.42609333107248,-107.18706514546648,-107.34390744799748,-107.97376000555232,-107.74938877858222,-107.01434554671869,-106.69346828898415,-106.61210101889446,-106.46993296174332,-106.82203107140958,-107.41906677465886,-106.80317460466176,-107.39310402981937,-106.60220950143412,-106.71331402566284,-107.4322344623506,-107.76820993470028,-107.48790703574196,-107.33258878812194,-106.51732904557139,-106.09036959568039,-107.05432002618909,-106.70803139777854,-107.59309893613681,-106.5971813662909,-106.15638795820996,-106.12327725207433,-105.56418745964766,-105.07857076730579,-104.66695765871555,-104.65553010161966,-104.05084916949272,-104.7323274104856,-103.84635675279424,-104.77850649831817,-103.78923087008297,-102.94673575041816,-103.92249260470271,-103.4177206014283,-104.37466143397614,-105.19522659806535,-105.80487246438861,-104.99136317288503,-105.96719021676108,-106.27132704528049,-106.24426417797804,-105.24801489524543,-104.53465862898156,-105.42154598748311,-105.07165544526652,-104.9329332751222,-104.56969441846013,-104.63792162295431,-103.95169736538082,-104.206660696771,-104.71084184432402,-104.33813967835158,-104.63585243094712,-105.2599448626861,-105.43357156636193,-104.96258248575032,-104.66614766884595,-104.85284803295508,-104.35270786751062,-103.39159767702222,-102.42242566216737,-102.67814036784694,-103.54794165072963,-104.31362896505743,-104.8617810215801,-104.37214039592072,-104.46547387726605,-103.61149156279862,-103.54592004837468,-102.88332674326375,-102.0697262417525,-101.98979956610128,-101.27527677686885,-101.9968363167718,-101.51786511112005,-101.41728540509939,-100.96622600313276,-100.97790393745527,-100.23462356161326,-100.39694402972236,-101.3198030446656,-101.60568167455494,-101.07133962586522,-100.34837014833465,-99.96637355908751,-99.5250900327228,-98.5899104392156,-99.21137096267194,-98.8443417204544,-98.98890799377114,-98.66778523800895,-97.9677207339555,-97.86866595316678,-97.66488512186334,-98.18862439133227,-97.7475914391689,-96.82006912725046,-96.13934236206114,-96.62332556582987,-96.56304282788187,-96.7874106420204,-96.8852178985253,-97.31688708532602,-97.26800757134333,-96.70200336398557,-97.65063955867663,-97.34954764414579,-96.90456319460645,-96.02899640286341,-96.11845503654331,-95.79466554708779,-95.01466520875692,-95.15981747023761,-95.4177868925035,-96.00844369223341,-95.54294027201831,-96.33764373557642,-96.16452769190073,-95.37024484667927,-95.42686594743282,-95.12156565161422,-94.31226417561993,-94.80614363634959,-95.0186149859801,-94.12760173203424,-94.90911657782272,-95.74997953837737,-96.29296982008964,-97.03968911571428,-97.18478056322783,-97.31184364156798,-98.0334392762743,-98.59943202417344,-97.80288010463119,-97.61760716093704,-98.25476286513731,-97.34170677885413,-97.6449528010562,-97.92035793652758,-97.79328379919752,-97.28229331597686,-96.89192704483867,-96.99665724486113,-97.94871479365975,-98.91940965363756,-98.26819395879284,-98.80306722177193,-98.74752569152042,-98.57091533159837,-99.43979728594422,-99.69947075517848,-100.39066872559488,-99.74510925775394,-98.98599563771859,-99.03486281260848,-98.63520525628701,-98.1891461214982,-98.9568799091503,-98.81642346689478,-98.31572160311043,-98.51510574808344,-98.36799424467608,-98.21268091583624,-98.87357833469287,-98.00773523980752,-97.36642406042665,-96.51160996267572,-97.50664716772735,-96.65499974088743,-96.38512223865837,-96.47141691530123,-95.53943982720375,-94.67487773159519,-94.35061392653733,-93.51443838980049,-92.59727970743552,-92.67150862701237,-92.29172667581588,-92.70067949453369,-92.13348376518115,-91.7864954136312,-92.28470693062991,-92.15176765853539,-92.39873107383028,-91.93163477629423,-92.44193150894716,-92.15706165134907,-93.15281312400475,-93.30595489544794,-92.58557163923979,-92.75292524881661,-92.52433019597083,-93.18876019446179,-93.40301455184817,-93.38606592454016,-93.08364107925445,-93.01927950046957,-93.53757937345654,-92.94942407123744,-92.32562651857734,-93.22250916343182,-93.47971138684079,-93.04231993900612,-92.53880853205919,-93.31878008553758,-93.88364416733384,-94.83915478596464,-95.56013362435624,-95.1067510410212,-95.58270590845495,-95.73468582332134,-96.4229617244564,-97.33787744678557,-97.63278923463076,-96.85821447521448,-96.07061483291909,-95.93820422748104,-96.81264972686768,-96.65914403088391,-96.42766452301294,-95.451968238689,-96.4420675910078,-96.56991638895124,-95.73899796279147,-95.21039527421817,-95.63988696876913,-96.06507426081225,-96.61920363595709,-97.08384579000995,-96.45866042468697,-95.59894662024453,-95.08437472721562,-94.43519262317568,-94.35932185407728,-94.47683406295255,-94.56507455604151,-93.8104373770766,-93.35012824181467,-92.53229821147397,-91.99130894895643,-92.47388018853962,-92.1236832770519,-92.30675172386691,-92.7262426908128,-92.5345578729175,-91.93197970185429,-92.72401534020901,-93.70491466810927,-94.07515512034297,-93.71083702612668,-92.74078769609332,-92.51772293448448,-91.59942983929068,-90.60894993739203,-90.61011717794463,-90.70445276936516,-91.53945582546294,-91.00683110859245,-91.74051240226254,-92.55982992146164,-93.2220631763339,-94.22086799656972,-93.35812687734142,-93.78586995089427,-93.69171930337325,-93.36737113865092,-93.79986650217324,-93.38771254522726,-93.91203796258196,-94.4669226584956,-93.96060450840741,-92.9836458126083,-93.37721600709483,-93.07351275905967,-92.07797243492678,-91.75784972170368,-92.29579388955608,-91.4329608278349,-91.22633323539048,-90.83565280493349,-91.07738119596615,-92.07477665878832,-91.1293773218058,-91.45936585171148,-90.66597981704399,-89.75824846280739,-90.52438014699146,-90.88986300071701,-90.8878728938289,-91.70842191809788,-91.8335298341699,-92.46400823164731,-91.71282326010987,-92.15491722617298,-91.49019502289593,-91.16716272383928,-90.25718952715397,-89.27098636236042,-89.1752133439295,-89.61587170418352,-90.12806647177786,-90.59083345998079,-90.65863721631467,-90.0245821881108,-90.2206856943667,-90.19433643389493,-90.07906644139439,-89.51689126016572,-90.43678187765181,-90.72974119521677,-90.42600874695927,-91.15561374742538,-91.88508604746312,-92.04992226650938,-92.108017005492,-91.67494895635173,-91.13925388688222,-90.67969995550811,-90.74720860272646,-89.94670414272696,-90.467121694237,-90.22678550286219,-90.586067779921,-90.56053763953969,-90.89914695639163,-90.72920380998403,-90.5892368783243,-91.51491203950718,-91.92744822474197,-91.55489889206365,-91.65498089045286,-91.1471558501944,-91.23876848584041,-91.13572949683294,-91.47182964766398,-91.7859844584018,-92.3191834455356,-92.86082417611033,-93.63505971664563,-94.5361365750432,-93.76685091014951,-94.4664660175331,-93.70647407183424,-93.16215652553365,-92.21531359525397,-91.27009491808712,-91.46110656671226,-90.49749700259417,-89.98327427869663,-89.74186707427725,-89.75286679668352,-89.71103281434625,-88.95022707385942,-89.19748035352677,-89.37371774902567,-89.7759972428903,-89.61654637241736,-89.47448675055057,-89.40811924776062,-88.93044845666736,-89.25935582024977,-90.08580001443624,-90.11583943711594,-90.36898367293179,-89.97642493480816,-89.22869410691783,-88.2918592276983,-87.53744454542175,-86.89949152851477,-86.62749403016642,-87.46332200104371,-88.37879632180557,-88.43502077413723,-89.41807703953236,-89.55237361555919,-89.48296797042713,-90.218337116763,-89.3587514879182,-88.85998810408637,-89.7781283967197,-90.38616140559316,-89.96950359782204,-90.81334535591304,-91.57317378139123,-91.61519906530157,-92.293690610677,-93.20648247376084,-92.27770010894164,-91.47442829655483,-90.91303419694304,-90.81510385870934,-89.9108551084064,-89.75644919415936,-89.89409013697878,-90.10808278340846,-89.6517237816006,-90.27713820710778,-90.65443332633004,-90.87164845596999,-90.86134366411716,-91.42566724354401,-90.4916393822059,-91.22983936592937,-90.37799624400213,-90.12388300755993,-90.35107844043523,-90.21288393903524,-90.180447507184,-89.2352538164705,-88.38138337852433,-89.06860337173566,-88.84607707103714,-88.88867095950991,-88.21776641579345,-88.68008281197399,-88.68579662963748,-87.90933241229504,-88.20862362487242,-87.97404413623735,-88.4247154709883,-88.27886921167374,-88.40898842131719,-87.7969028414227,-86.95003816997632,-86.9647458018735,-87.64006195263937,-87.62834808602929,-87.13734323671088,-87.92398046562448,-88.67021226650104,-88.41554430872202,-89.37057762034237,-89.7558183199726,-90.5002477876842,-90.21859361371025,-89.5270305708982,-89.62005142960697,-89.21684861043468,-90.12457366706803,-90.78202616842464,-90.676629956346,-90.31157340761274,-89.50278516160324,-89.63014009129256,-90.22772244270891,-90.18291018577293,-90.80209058709443,-90.0861929138191,-89.15055197058246,-89.15701415622607,-88.87187872920185,-88.31918956339359,-88.81069071125239,-88.12582168355584,-87.30530745070428,-87.89317830651999,-88.39184919837862,-88.13899406511337,-89.13001713715494,-89.91535479435697,-90.2318411488086,-90.63630512868986,-91.57235342264175,-91.50150543544441,-91.9353782129474,-91.2729528597556,-92.2316157608293,-92.98016673419625,-92.04987388756126,-92.9849626920186,-92.16829115711153,-93.11019336944446,-93.70684841554612,-93.61041728081182,-93.01268520625308,-93.13967777602375,-92.21647122688591,-92.15390234533697,-91.19876756425947,-90.96254870761186,-91.935820793733,-92.36538906162605,-92.58296226616949,-92.98121124785393,-93.4860157519579,-94.08223544061184,-94.36760180350393,-95.15485816355795,-94.95636279694736,-94.86264670547098,-95.5676094405353,-95.1250119926408,-95.16353327035904,-95.78292505349964,-96.58085938170552,-95.85548930615187,-95.74912161612883,-95.23734761495143,-94.49202867597342,-94.2029526536353,-93.4766097990796,-93.21212897729129,-92.29949811846018,-91.82367279706523,-90.9353287704289,-90.53329311357811,-90.80744573613629,-89.94152972009033,-90.89056040067226,-91.7823757249862,-91.72944735269994,-91.70491117658094,-91.98405732540414,-92.47722877236083,-93.2813726994209,-93.20537437032908,-92.50052031362429,-93.40897325472906,-93.8668503635563,-93.86426684865728,-94.29517601896077,-94.46509297471493,-94.38788347877562,-93.6110946838744,-92.66976399160922,-92.20084014674649,-91.35764792235568,-92.20871568005532,-91.53029013518244,-91.063665936701,-91.39872864680365,-92.23390193330124,-91.45715147722512,-91.40688771475106,-90.42412275355309,-90.04797620465979,-90.3320706980303,-91.20712127769366,-92.15334911411628,-92.9712068233639,-92.35646191705018,-91.9497649371624,-91.98766751261428,-92.80622484860942,-92.31410937942564,-92.78458788618445,-92.15262811351568,-91.97960115363821,-91.19211321137846,-90.59290253091604,-90.2100406079553,-90.29358604270965,-90.83837164612487,-91.30306417820975,-92.23226607590914,-91.66369456844404,-92.22487993398681,-93.1558689866215,-92.52845025248826,-92.95637303264812,-93.03792892582715,-93.79886506311595,-93.80336564127356,-93.7867556605488,-93.58209039596841,-93.44959301594645,-92.67993746791035,-92.81533846678212,-93.6989331417717,-94.45414361171424,-95.21050646342337,-95.83748918911442,-95.26526827877387,-95.77071004128084,-95.40536418138072,-96.16711641149595,-96.4263868695125,-95.56065903883427,-94.99975675856695,-94.28219097526744,-94.37467917054892,-93.94118784135208,-94.09909977391362,-93.90917349467054,-94.263461724855,-94.4861670541577,-94.93205970758572,-94.72827425086871,-94.50210360856727,-93.64449505088851,-92.75028443615884,-91.90686482004821,-92.25783926295117,-91.87708669016138,-91.48010995332152,-92.27568484796211,-92.24220265215263,-93.06176919210702,-93.42687342688441,-94.10806010384113,-93.57280279835686,-94.04947612201795,-93.61024369252846,-92.68608724139631,-92.97326032770798,-92.68685590196401,-93.66797902621329,-93.60719481157139,-92.87802162021399,-93.21012339694425,-94.16608464764431,-94.75995964184403,-94.29455230338499,-95.26718461839482,-94.81913711782545,-95.14596210094169,-94.69232250377536,-94.61631737276912,-94.17888463055715,-94.3341489401646,-93.80140504380688,-94.40235700225458,-95.17687214398757,-94.97517437627539,-94.46048430725932,-94.2926926445216,-94.87714742822573,-94.72566609457135,-94.75963686220348,-95.24129932234064,-94.77348979515955,-95.73671617917717,-96.61394950933754,-97.08478810964152,-98.01822609268129,-97.81550259701908,-96.88464087853208,-96.89774129306898,-96.06116401776671,-96.02969147870317,-95.93767571635544,-95.08060699747875,-95.13391477568075,-94.69425101438537,-93.7514477786608,-93.31676040403545,-92.43417302286252,-93.03699631011114,-94.0228767762892,-93.24296064535156,-92.87519395072013,-93.75384676223621,-92.93559976713732,-92.97919097542763,-93.22316085966304,-94.0569295687601,-93.9885742655024,-93.81860852008685,-93.5305928690359,-93.6409573527053,-93.453847784549,-92.51565062161535,-93.05383701249957,-92.5888190693222,-92.62530566565692,-93.34116170462221,-94.28626314550638,-94.90616780892015,-94.7477515861392,-93.8352535883896,-93.96920136315748,-94.86188895255327,-95.66599312284961,-96.63174919970334,-96.43016509525478,-95.83344718627632,-95.49206878850237,-96.01881167385727,-96.7671148008667,-95.83892642101273,-96.58045293111354,-96.86227006977424,-96.44657951546833,-95.65736278891563,-96.12704846495762,-97.09065369237214,-97.53210103325546,-96.8661006600596,-97.33047364512458,-97.2176044085063,-97.46263679256663,-97.83554292889312,-97.68476252164692,-97.40942170517519,-96.54283063067123,-96.02030916884542,-95.41372802294791,-95.50735940597951,-95.24200170347467,-95.99506468093023,-96.62904750276357,-95.86667486000806,-95.54880540817976,-95.06552592245862,-94.7078796303831,-93.78045880468562,-94.71746798045933,-95.19995606970042,-94.88307877071202,-95.40727176750079,-95.35042477492243,-96.29799734288827,-95.5662881503813,-95.81604628823698,-95.9123639529571,-96.23290785215795,-96.58084978582337,-96.72117831138894,-96.59620793210343,-96.20223224721849,-96.25223898421973,-96.82483835844323,-97.00719270156696,-96.33320720866323,-96.80579690914601,-97.37210773071274,-97.68104047467932,-97.08698267117143,-96.70060366857797,-97.32036321889609,-96.95281416224316,-97.07706324756145,-98.0174640994519,-97.45134162949398,-98.2558177751489,-97.64725106861442,-97.46591520309448,-97.66289434675127,-98.4398777638562,-98.22869887575507,-97.58408351335675,-97.87691727373749,-98.51408338407055,-97.54475427931175,-97.62293659383431,-97.16624159924686,-97.5379224056378,-96.89842558698729,-97.59493788518012,-97.01008275896311,-97.16553179686889,-97.57010915875435,-97.04561703465879,-96.95957638323307,-96.63781583402306,-97.06581951864064,-97.98659487767145,-97.19621997419745,-96.52154674381018,-96.90257668215781,-96.7295636436902,-96.54748018272221,-95.82224593358114,-95.46545710181817,-95.87981418101117,-95.01453481754288,-94.37289780983701,-93.92748834798113,-94.65101769240573,-95.30966881010681,-95.2552777105011,-95.57853607228026,-95.60927988030016,-94.84028941486031,-94.91287886817008,-94.51280771009624,-94.36964254267514,-94.1273263595067,-94.74069575686008,-94.02069503674284,-94.67548186145723,-94.6088487636298,-93.93253199756145,-93.06829622993246,-92.5916203209199,-91.85269527463242,-92.25079269520938,-91.74587849155068,-92.49162931926548,-91.79724513739347,-92.41165327141061,-92.94665717706084,-92.92781711975113,-93.10387066891417,-94.08622238552198,-93.90816451981664,-94.17864864459261,-94.86851030448452,-95.06371491774917,-94.6515620467253,-94.61229875590652,-94.29295798856765,-95.25714256288484,-94.853784003295,-95.52903409767896,-95.01700582448393,-94.51877114502713,-94.1280020577833,-93.85085812630132,-93.3213195707649,-93.90034046350047,-93.0269051794894,-93.04111701902002,-92.10070757661015,-91.26577463746071,-92.2182295685634,-92.79488626634702,-93.0665836702101,-92.85133907618001,-92.32846518792212,-91.42068627476692,-91.74962217127904,-91.792019195389,-92.51684316340834,-92.96183869754896,-92.02259994857013,-92.13321372913197,-91.78798854257911,-91.90031954273582,-91.33139707613736,-91.33417557971552,-91.41605364810675,-90.6099089239724,-90.89024570351467,-90.80527923954651,-91.14596211584285,-91.8795165377669,-92.07974698860198,-91.92677371017635,-92.5939520294778,-91.6529890615493,-92.335026091896,-91.63139855023474,-90.78709901962429,-90.81381956767291,-91.29001674009487,-91.35057153971866,-91.95336599787697,-92.48853919142857,-92.41397031163797,-92.88517559180036,-92.26724116783589,-92.17628331668675,-92.83236110489815,-92.38655448378995,-93.09212383348495,-93.32172086043283,-92.87445721589029,-92.12010468868539,-92.61616856511682,-92.14811542630196,-92.67711305059493,-91.88602678105235,-92.58626312436536,-93.30983920488507,-92.4347152276896,-92.51134420139715,-92.4482073970139,-91.47476128768176,-91.07248557498679,-91.32171960221604,-91.5017656609416,-90.52025658870116,-91.14539858745411,-90.88122869003564,-91.48297971859574,-92.39945617830381,-92.71531226765364,-93.49386565061286,-93.03523157862946,-92.1042925529182,-91.484370470047,-91.29922672268003,-91.08455589786172,-91.09775556391105,-91.9182309214957,-92.54564993595704,-92.5731267882511,-91.90901662036777,-92.86675116838887,-93.21797903301194,-92.892344834283,-92.96923574479297,-92.02660932019353,-91.69272469729185,-91.66715988423675,-91.98822295991704,-92.69404854392633,-93.20222572889179,-92.6302474909462,-93.16451272694394,-92.722112393938,-93.10670609446242,-93.48483929317445,-93.94823603425175,-94.80775352707133,-95.51130105415359,-94.96663607982919,-94.75350043689832,-94.9846633807756,-95.6653729537502,-95.88801973266527,-95.48713453067467,-95.66271324362606,-95.16326064569876,-94.32666941173375,-94.6737014320679,-94.91995315998793,-95.19695874629542,-94.30053382087499,-94.30084314569831,-95.04431245615706,-95.33849427523091,-94.74828889267519,-95.60405669454485,-94.8202570551075,-95.33399532968178,-95.38070195959881,-95.99749633669853,-96.61140844970942,-96.85654427949339,-96.62732797907665,-97.50478119496256,-97.20976965595037,-97.61210146173835,-96.94075735798106,-97.60297519015148,-98.13365827407688,-98.68363366741687,-97.72508772555739,-98.18124096374959,-98.73364458652213,-98.25394214503467,-97.29407367203385,-96.35053264535964,-95.82489191973582,-96.14129333896562,-97.11266927048564,-97.72700839722529,-97.26410482637584,-96.27695122780278,-95.49468321399763,-94.51759599754587,-94.26092743687332,-93.63445472763851,-93.12968311551958,-93.61644057603553,-94.12526925979182,-94.33559400448576,-93.61935881944373,-94.23041422478855,-94.53293514018878,-94.94899530615658,-94.45254764100537,-94.74963685264811,-95.00706921610981,-95.3583403560333,-94.90725386142731,-95.89499747892842,-95.48034348199144,-95.76925189699978,-95.8178664688021,-95.65417406987399,-96.33635923545808,-95.56547138560563,-94.89190933154896,-95.24201476154849,-96.02166921226308,-95.98497756570578,-95.1197872296907,-95.69011827604845,-96.16372151393443,-96.83714167727157,-97.46965872403234,-98.43966675596312,-97.47227267781273,-97.53812927287072,-97.66892441408709,-97.21146938437596,-97.18110608169809,-97.30333583708853,-97.76677075168118,-97.2767536258325,-97.41814714483917,-97.0152868614532,-97.19422402558848,-97.32143820868805,-97.5720198256895,-97.75353803765029,-98.19398616766557,-99.14494559587911,-98.89225026918575,-99.40796628501266,-98.93970381328836,-99.45748001197353,-98.54526022681966,-98.22821229696274,-98.48893737513572,-98.13800759846345,-98.40603449288756,-98.32802411774173,-98.08407500572503,-98.35479295020923,-97.60333903320134,-98.19329458801076,-97.49955521337688,-97.3315364564769,-98.30784873198718,-97.35514752333984,-97.62981739500538,-98.14508615713567,-98.2222132217139,-98.2259546755813,-98.9540547230281,-99.10011572064832,-98.92308794241399,-98.34998595481738,-97.90574094327167,-98.39658540626988,-98.51639568898827,-98.249254506547,-99.1016581878066,-98.81065420387313,-98.06648356001824,-98.63150998111814,-98.74922531656921,-99.7125188386999,-100.33993315603584,-99.7868860908784,-99.81531951576471,-100.44244880229235,-99.74110153038055,-99.48612823151052,-99.52404466457665,-98.840459829662,-98.4423053287901,-98.82378158625215,-98.31802954012528,-98.78975040046498,-98.89957716641948,-98.83822154300287,-99.04466720903292,-99.26707890955731,-98.86111500719562,-98.55444530118257,-98.93228961108252,-99.91020312951878,-100.73898030910641,-100.0808892948553,-100.8374393619597,-101.15941620059311,-101.83433179045096,-101.62888055853546,-101.81415553484112,-101.05790421320125,-101.41746588749811,-100.88205413054675,-100.24982685782015,-99.42235650354996,-98.49365975381806,-98.78058849088848,-98.10175916738808,-98.51421105256304,-97.6310569467023,-97.68857073551044,-98.59332249453291,-98.12760054972023,-98.57803988503292,-99.15642610378563,-98.39184790663421,-99.05635761935264,-99.80893556401134,-99.30104103405029,-100.14704431919381,-99.47079213568941,-99.20192669704556,-99.18257737159729,-99.72163164615631,-100.69625107012689,-100.8230809494853,-101.41800998197868,-101.321452842094,-101.05520629836246,-100.27372587146237,-101.26376988179982,-102.01036011287943,-101.36501576099545,-100.46262106113136,-100.16759511176497,-100.91265520034358,-101.57965092686936,-101.74422570876777,-101.35798336844891,-101.54609774053097,-101.78017874667421,-101.8795300386846,-101.76147694466636,-101.5482456823811,-101.61553035024554,-101.89426030917093,-102.54390996089205,-102.2300895168446,-102.34150741668418,-102.19867415819317,-102.6474236017093,-103.15357812447473,-103.44917263137177,-103.20514956768602,-104.13733175117522,-104.31507418351248,-104.37141644069925,-105.25842039147392,-104.790150817018,-104.46571450121701,-105.20237408857793,-105.908043442294,-105.64756760792807,-106.26740046078339,-106.0908356490545,-106.92968950746581,-106.89463649736717,-107.12480708444491,-108.06899004010484,-109.01647856086493,-109.46341401105747,-109.90012350818142,-110.58933631749824,-110.0609383652918,-109.13830536045134,-108.85214972682297,-107.94987116800621,-108.50937398988754,-109.5062092137523,-109.72347856266424,-110.27047847956419,-111.05615825252607,-111.39004909573123,-110.52184105478227,-110.94474953832105,-110.71145006082952,-111.27602953556925,-111.99086693068966,-111.38241727417335,-112.33588555688038,-113.17957161972299,-113.63659186055884,-113.28506653988734,-113.59205622086301,-113.62449332466349,-114.32335845660418,-113.55476117832586,-113.65950266411528,-114.07971299998462,-114.30399770103395,-114.30578404758126,-114.40120645752177,-114.6918529481627,-114.76619407068938,-113.93704774649814,-113.78183852415532,-114.3273385153152,-113.60731343971565,-113.79214366758242,-113.0857545286417,-112.67932665068656,-112.22875915188342,-112.23556462861598,-112.70848981384188,-112.85650768969208,-113.0168070322834,-113.83839588286355,-114.39923830376938,-114.58617936028168,-115.10000516334549,-115.40493522863835,-115.59580423263833,-115.56902884412557,-116.30867382278666,-115.47500531515107,-115.07906041992828,-114.9361363039352,-115.08422993170097,-114.45018261112273,-113.80686033004895,-114.11866432754323,-114.92848235927522,-114.30480363732204,-115.0927341170609,-116.0737547413446,-115.10806693788618,-115.78941088402644,-115.21337808016688,-115.22634350229055,-114.60937261627987,-113.98303876817226,-114.41169428871945,-113.43953344319016,-112.70890845637769,-112.25478596054018,-112.10718889860436,-112.60337621439248,-113.13525700941682,-113.78160408278927,-114.33221132215112,-114.12302896613255,-113.13278649747372,-112.1540450216271,-112.84987961594015,-112.42741683963686,-112.3262199126184,-111.96693798992783,-111.81561012286693,-112.25034111458808,-111.92625262727961,-112.23245567176491,-111.23717163549736,-111.89470500452444,-111.20260989153758,-111.06670943042263,-110.95596931362525,-110.90182716213167,-110.08974697394297,-111.04694847716019,-111.88221652526408,-111.12790193781257,-112.06166399596259,-113.04471681127325,-112.13612811174244,-113.13075133413076,-112.3106672372669,-112.44006569962949,-112.30119502032176,-112.10965012060478,-112.85089151281863,-112.97116284258664,-112.09542797273025,-112.55902561498806,-113.2391943265684,-114.19271025434136,-113.74649885622784,-112.80269393743947,-113.76129929861054,-113.97120724571869,-114.09120670054108,-114.29791497671977,-113.48882068321109,-113.03946397360414,-113.90196932246909,-114.05535501195118,-114.22829364845529,-114.24630259908736,-114.50915736798197,-114.24111116537824,-113.46014822414145,-112.80616678763181,-112.56164268497378,-113.31811966467649,-112.59853821294382,-113.03772100852802,-112.71947567397729,-113.28344568004832,-114.172636997886,-113.78858947986737,-114.66792244417593,-114.47661855537444,-115.24231044761837,-115.46508072130382,-116.36344957211986,-116.703198781237,-117.00509061617777,-116.3590873843059,-115.79483255557716,-116.41006177570671,-117.29322630958632,-116.36443999269977,-116.11981599032879,-115.59218255989254,-116.5130608426407,-115.69352912576869,-114.76014295499772,-115.25228567095473,-115.70115347392857,-116.29585716314614,-116.29490029485896,-116.2971010832116,-115.35020953649655,-115.11178012518212,-114.28361823735759,-113.29095251718536,-114.03862330969423,-113.24686069274321,-113.20615452248603,-112.73044426506385,-112.98148910747841,-112.38846437539905,-113.27281299419701,-112.37175431102514,-111.80320148030296,-111.65418002521619,-112.31482897372916,-111.93066913774237,-112.86840487457812,-112.97324246354401,-113.15883073117584,-112.64045506203547,-113.0466705467552,-113.29246773384511,-114.0445781792514,-114.06997724529356,-114.92349381418899,-114.0735072735697,-114.86211973614991,-114.27741193864495,-115.14312563929707,-114.59805583814159,-115.1071588518098,-114.98552182735875,-114.27705773059279,-113.69656038982794,-113.13323941500857,-112.27158063091338,-112.45344526227564,-111.5538374860771,-111.56783374771476,-111.4642027891241,-111.33087166305631,-111.38071949360892,-111.38135566841811,-111.55149423936382,-110.9287143861875,-110.53734123613685,-109.88125595962629,-109.38456552522257,-108.98334324266762,-108.89632561104372,-108.3743825959973,-108.4679862530902,-108.70378407882527,-109.38936385093257,-108.97367055993527,-109.11547321546823,-109.08952312311158,-110.04161575110629,-110.33601028332487,-110.95032686600462,-110.5557476640679,-111.05944987898692,-110.84626042703167,-110.48429125081748,-109.5064888400957,-110.19882130809128,-110.22497694613412,-110.85745157301426,-110.18508545868099,-110.35301010496914,-109.54059770982713,-108.56364751793444,-107.8245765697211,-108.18793333042413,-107.7629676614888,-108.40043219691142,-108.35598372574896,-108.06678124889731,-108.46034837374464,-108.80529474886134,-109.53140913881361,-109.53548862691969,-109.44981183484197,-109.39189933659509,-109.74445441411808,-110.50560306105763,-109.78022801876068,-109.74083783105016,-110.03726157452911,-110.89300167607144,-111.77755597652867,-111.35949231218547,-111.9610536787659,-112.20684748562053,-113.03798962151632,-113.74796208925545,-112.82084964308888,-113.46454434795305,-113.67920365231112,-114.11061942391098,-113.38130422122777,-112.86259276419878,-112.56027066614479,-112.01164739718661,-111.74569394811988,-111.30089582270011,-111.73364553367719,-111.29275882430375,-111.8690801137127,-111.06276765558869,-110.71671324409544,-109.81565473787487,-109.98393486766145,-109.44521815609187,-109.37009856058285,-109.15424471115693,-108.5689472113736,-109.04142305860296,-108.4517065868713,-109.02638564957306,-109.52139526046813,-110.4794155433774,-110.61385266343132,-111.01106789521873,-110.07611366547644,-109.84096225490794,-110.11958674294874,-109.24445707071573,-108.86502414057031,-109.31140566244721,-110.16850313032046,-110.70038668531924,-111.28979808324948,-110.89574475446716,-110.07404397753999,-110.69332968536764,-109.7853327030316,-109.81121637253091,-110.38536902330816,-109.8090415042825,-108.93812348274514,-108.81746233487502,-108.95948680024594,-108.76477577164769,-108.17531370790675,-107.96160515258089,-108.16488969372585,-107.33047356177121,-107.95348218083382,-108.34032373037189,-108.03299042535946,-108.12769000045955,-108.18847822770476,-107.44722102442756,-107.3177174506709,-107.26252436079085,-107.61355535220355,-106.98743834719062,-107.57529379986227,-107.88754303986207,-108.6494537810795,-108.85686780652031,-109.18607942666858,-109.96298010740429,-110.95892353449017,-111.56142476387322,-112.36311200028285,-112.26102309580892,-112.11209841771051,-112.04444645065814,-112.76107361353934,-112.11515800841153,-111.1826726719737,-111.49500595172867,-111.01151030231267,-111.05579190561548,-110.72330706147477,-109.75312228361145,-109.23467852687463,-108.44034869270399,-109.15280976193026,-108.87784200627357,-109.84677240811288,-109.73297728132457,-110.502257023938,-111.49266262864694,-111.87588073220104,-112.30151392985135,-111.89316602889448,-111.7566560911946,-112.56310797156766,-111.77390621462837,-111.92185273673385,-111.70825034286827,-111.47051759902388,-111.54583696741611,-112.30659403838217,-112.93613004731014,-112.63702605711296,-111.72161903278902,-112.13114026840776,-111.68920294335112,-112.53493549395353,-113.47282080352306,-114.02571861678734,-115.01283512217924,-114.52976116305217,-114.17041674116626,-114.52652390580624,-114.82532768882811,-114.65713680861518,-115.23978310218081,-115.51743461377919,-114.79513390455395,-114.39962610974908,-114.04586544400081,-114.13247419148684,-113.64527417020872,-114.51844484126195,-114.50697080884129,-114.00363454036415,-113.92239305656403,-113.90454644104466,-114.2535844403319,-114.7036591693759,-115.20991699863225,-114.3109010825865,-115.22211822820827,-115.92843359569088,-115.62532572820783,-116.11843358911574,-116.17704914696515,-116.94699685275555,-115.96876326296479,-115.04617206798866,-115.50790973752737,-114.63341879611835,-114.80644377693534,-114.62169928569347,-114.66272682510316,-115.18846111139283,-114.50117242941633,-113.96950961463153,-113.98212629929185,-113.58485696744174,-114.16483005136251,-114.8468329841271,-115.60017044050619,-116.05462932353839,-116.19581613410264,-116.1328750019893,-116.2600763165392,-116.14792401809245,-116.00260777352378,-116.66711340285838,-117.26683650026098,-116.68483605980873,-115.86444213893265,-115.80402859393507,-115.76508895028383,-116.46373570850119,-117.1127104088664,-116.76743858773261,-117.74427396897227,-116.81509416364133,-116.00734147243202,-116.69464809307829,-117.67279312945902,-118.57399663794786,-117.68971323501319,-117.31080487277359,-117.86772308591753,-118.19064267165959,-117.4424827597104,-117.08960186410695,-116.38294459320605,-116.71850051078945,-117.61466661980376,-118.12764445645735,-117.13584543019533,-116.20606130128726,-115.27706445334479,-114.27958108345047,-115.24139080289751,-114.70690562250093,-114.7900309576653,-114.06739209592342,-114.02867617737502,-114.54333346895874,-114.77870374778286,-114.12317628599703,-113.81171795586124,-113.62563732592389,-113.85229163756594,-114.16751137981191,-113.24235492479056,-113.74637685669586,-113.05124048655853,-113.85365663003176,-114.82282618293539,-115.03231635503471,-115.91827228385955,-115.32210939796641,-115.81809566775337,-115.71346339024603,-116.5842145588249,-116.17397051444277,-116.77864739950746,-116.5394248906523,-117.29484514938667,-116.57118965592235,-115.57960922084749,-116.54395817313343,-117.17942568194121,-117.16278372891247,-116.28437390830368,-116.43209153600037,-115.66733724297956,-115.99911829363555,-115.7415793761611,-115.80270281527191,-115.77716443128884,-116.08089141035452,-116.62513068318367,-116.31584132276475,-115.97007603943348,-115.00264067016542,-115.11371943028644,-115.4189175455831,-115.06962798722088,-115.04238676279783,-114.51251679193228,-114.23821917828172,-113.3032581275329,-113.93047990836203,-113.92442612629384,-113.5832612295635,-114.20563045702875,-113.60867609037086,-113.9448019885458,-113.08773542614654,-112.89946865243837,-113.62413767818362,-113.09887304948643,-112.96172008709982,-113.90991533035412,-113.801942310296,-114.33680204488337,-113.43802068801597,-114.02909331815317,-114.2816224261187,-114.12035613739863,-115.10766295017675,-114.8577151587233,-115.02922755619511,-114.92241870239377,-114.42021927097812,-114.94820551481098,-114.95334203122184,-115.35456898342818,-114.62023345427588,-114.27449887199327,-114.03453967021778,-114.17275099363178,-113.6230878168717,-113.03424129448831,-113.35298750037327,-113.51566642383114,-113.91405807435513,-114.49125587614253,-114.49716281238943,-114.4827469647862,-115.3511116122827,-116.17054349044338,-116.25369295245036,-115.81974371895194,-114.98275248426944,-114.12629599869251,-114.25700200535357,-113.90485252998769,-113.14000684674829,-112.93747089942917,-113.04811591887847,-113.59209465235472,-112.8532954021357,-112.88351770816371,-112.63737455103546,-113.40438296226785,-113.11470153741539,-113.8301986977458,-113.86797758191824,-112.9918621731922,-112.06523742014542,-113.05728453211486,-113.85682092327625,-113.55132611608133,-112.59816443361342,-113.47515880642459,-112.93047174997628,-112.77166198845953,-112.384556976147,-113.37942561553791,-113.1456609647721,-112.81543191615492,-113.5926512456499,-112.75000431621447,-113.2581317438744,-114.23232142953202,-115.07464564498514,-115.55023301299661,-115.60955794155598,-114.671121081803,-115.37094786856323,-114.72326056519523,-115.39061954477802,-114.9848924423568,-115.78611246775836,-114.79613791964948,-115.70713021839038,-114.79709723545238,-114.48643174022436,-113.61655998369679,-113.81653337320313,-114.47089337930083,-114.34565789345652,-113.61630840832368,-112.89402314415202,-112.66556815151125,-113.20616495748982,-112.35628532571718,-111.5639029936865,-111.79794717440382,-110.94686127640307,-111.4361312170513,-111.19644820690155,-111.58340233378112,-111.83955647144467,-111.85334463836625,-112.29533732775599,-112.5619976175949,-111.87018328811973,-111.20860675955191,-111.09039783291519,-112.04483945155516,-112.14773408975452,-112.36878862697631,-112.09753950173035,-112.03265809081495,-112.06663070060313,-111.15901275910437,-110.76676564896479,-110.85728399595246,-110.7431105133146,-110.99796658894047,-110.0155939720571,-109.7533839661628,-109.41074850643054,-109.37691771006212,-108.41221380000934,-108.04676462477073,-108.65556521387771,-109.61416073516011,-109.03454562369734,-108.53584208758548,-107.58983060717583,-107.16810233192518,-106.88049365254119,-106.59658594848588,-106.91013393877074,-106.36243683565408,-107.07969526387751,-106.90055089630187,-106.35492500150576,-106.15778102260083,-106.64738940447569,-105.64804233657196,-105.34731842949986,-106.29682520916685,-107.14181531686336,-106.29024927411228,-106.00993206491694,-105.26986871566623,-105.50529846968129,-105.4373933901079,-105.29928692569956,-104.54220588412136,-104.67995237838477,-105.37928578117862,-106.24662449024618,-106.58708239067346,-106.78233888326213,-107.10613378044218,-107.61684765154496,-107.99976665433496,-108.98487700428814,-108.76826962875202,-108.60165315167978,-108.0683019659482,-108.86434449348599,-108.63037551380694,-108.97857693908736,-109.03754749428481,-108.07379841478541,-107.20050347223878,-107.95179540244862,-108.5412102714181,-109.44699603272602,-108.78401059936732,-109.20430023549125,-109.4400448561646,-109.63947818614542,-110.03481880715117,-110.94783038226888,-110.46634009527043,-110.16664868639782,-109.3820035639219,-108.64041490666568,-108.76738972822204,-109.19112253468484,-109.56180999660864,-109.56265994161367,-110.3062868276611,-109.64451495418325,-109.3907720609568,-108.40582098299637,-108.58386097010225,-107.65371120208874,-108.41666764393449,-108.41468056337908,-107.47627728711814,-107.93053073529154,-108.13656689645723,-107.32275288878009,-108.2139056310989,-108.14631826523691,-109.07858399348333,-109.27135722991079,-109.55747363017872,-109.28843464003876,-108.3233233941719,-108.84262313973159,-109.04215962300077,-109.91339376522228,-109.71920439740643,-109.53059005038813,-110.53045191802084,-110.98225120548159,-111.05095440708101,-111.88264721212909,-111.04018456442282,-110.99751393683255,-111.83370413770899,-112.74722708528861,-112.82599619496614,-113.6303266803734,-114.05427882261574,-113.80575896147639,-113.80009779334068,-113.22989458637312,-113.0279274112545,-113.54915758268908,-114.11438590241596,-113.91838394803926,-113.22125097271055,-112.52118283230811,-111.52608238719404,-112.35109176626429,-111.89449730236083,-111.18913674354553,-110.66315670404583,-111.28801838448271,-111.08660437632352,-111.05770417582244,-110.55367099214345,-110.57319896668196,-109.85578224342316,-108.86478788219392,-108.08154920954257,-108.6044534901157,-109.17395331291482,-110.02911702170968,-109.03762931283563,-109.24524836335331,-108.74977153446525,-108.23088299389929,-107.89132836693898,-107.99781491840258,-108.5088785677217,-108.90018251910806,-108.7753214975819,-109.10717060044408,-108.53392366832122,-109.30149290012196,-108.57698287582025,-108.12924430612475,-107.96224464243278,-107.22997749317437,-107.69836909044534,-108.4794724592939,-107.75559114757925,-108.54900074657053,-107.80396143952385,-107.39006857806817,-106.69220370426774,-106.91773118684068,-106.67467551678419,-107.49571186723188,-106.73451019497588,-107.48543970333412,-108.05325807258487,-107.87207444850355,-107.43665540032089,-107.70900887949392,-108.52278854418546,-108.09719347022474,-108.55434006405994,-108.75376237882301,-108.72549792286009,-108.0402394849807,-107.94540124898776,-107.77198840212077,-107.12734312051907,-107.17250283807516,-107.87228924408555,-107.37452997732908,-108.05628631589934,-108.25059399055317,-109.13429554132745,-109.89603741420433,-108.96521646203473,-109.59083924023435,-109.37117280904204,-109.44725448591635,-108.95288252225146,-108.84285074844956,-109.5310558998026,-109.44320122804493,-109.88085408229381,-109.75671921437606,-110.63188159326091,-111.22874132636935,-110.37790292175487,-110.3820071881637,-109.88198788184673,-109.73667233623564,-109.32150254165754,-108.74480723682791,-109.30906921811402,-108.53153003193438,-109.52645673463121,-110.43462353013456,-109.46920767473057,-108.99079526402056,-108.02783063007519,-108.95247419271618,-109.17935114353895,-109.765825166367,-110.65105860540643,-110.18996976315975,-109.77388595091179,-109.08549237204716,-109.94872011430562,-110.08642724808306,-110.96018283488229,-111.61047842446715,-111.27186474809423,-110.39584745140746,-110.34856035746634,-111.01504799490795,-110.42815783200786,-110.68915981287137,-110.26963426824659,-110.81705630151555,-109.99230618216097,-110.12676367908716,-110.29185726074502,-109.89023633068427,-110.35738454479724,-109.80084355873987,-108.97539642825723,-109.95729022426531,-110.11173707712442,-109.23157092696056,-109.13531828904524,-109.08139008190483,-108.43456383887678,-108.85618496220559,-109.642271629069,-109.45211221603677,-108.9490513894707,-108.09784862352535,-108.16985462093726,-109.13007834367454,-108.26807800959796,-107.42350031016394,-106.66041314555332,-106.83775320509449,-105.97171855717897,-106.44383018044755,-105.80801152484491,-105.71126292599365,-105.59227826911956,-106.4398229662329,-105.89217078266665,-105.07241024216637,-105.69855662435293,-105.73889879696071,-105.4812699817121,-104.54349438101053,-105.51201843703166,-104.63307337230071,-104.74750942690298,-104.02366254525259,-104.49113838328049,-103.85206569591537,-104.76386040309444,-103.80412557953969,-104.47703870153055,-105.07217110600322,-104.23756332183257,-103.56266786530614,-103.5016580070369,-104.18107326608151,-103.30132712703198,-103.07107790792361,-103.251657161396,-103.27050888445228,-103.92043517855927,-103.5861511756666,-104.04412623215467,-104.1979275722988,-103.39743389422074,-103.6450133016333,-104.53692372795194,-103.77950058598071,-102.79422960383818,-103.44466591253877,-102.91488581709564,-102.45857172785327,-101.82636883435771,-101.73352997330949,-101.79956087982282,-102.29849547473714,-102.7990966332145,-102.33393655018881,-103.29631173051894,-103.98109570099041,-103.44236458512023,-103.05643082363531,-102.19564573373646,-102.90631366055459,-103.56507404102013,-103.17475470807403,-103.97535838745534,-103.5591318695806,-103.88529843324795,-103.08357310295105,-103.47298643644899,-103.93822211399674,-103.90993302827701,-104.19624703610316,-104.13665933022276,-105.13107427256182,-105.37245216639712,-104.78321548970416,-104.13058466464281,-103.42081044102088,-103.94474641047418,-103.272899242118,-103.32354724919423,-104.30581581965089,-103.7867153105326,-103.79945280123502,-104.10198718309402,-104.75411960948259,-105.16058528376743,-105.9372680480592,-106.6669975463301,-106.53684481745586,-106.01248299330473,-105.52321452368051,-104.64894636068493,-105.02236642176285,-104.51305854646489,-104.86245679203421,-105.6654541157186,-106.33922784682363,-106.96895833034068,-106.35882669407874,-106.41275614406914,-106.5992525042966,-105.63105215411633,-104.90158356307074,-104.76622295286506,-104.15990379266441,-105.07041086768731,-104.68559994641691,-103.8668337170966,-104.48181574419141,-103.51611378975213,-102.58789393398911,-102.43502742471173,-102.04252474848181,-102.73777216719463,-103.64308226527646,-103.76040452392772,-103.52484680805355,-103.47015458671376,-102.5831313249655,-102.57849440909922,-102.43780907429755,-102.24636522959918,-102.6659263977781,-102.58634383883327,-102.96856453223154,-102.72458163648844,-102.77974791405722,-102.50662373751402,-103.4760036021471,-104.38251839578152,-104.20393115701154,-103.99867358524352,-103.7019511773251,-104.37411477044225,-104.15412420406938,-103.51813076855615,-103.47765768924728,-104.0531017887406,-104.8367773569189,-104.23595015518367,-103.97086452972144,-104.53249092120677,-103.65475187590346,-104.0109295276925,-104.90061850938946,-105.00811590021476,-104.83685780037194,-105.16324997320771,-104.42310394020751,-105.31865969626233,-106.13917530886829,-106.33596761804074,-105.41798867005855,-105.14988605165854,-105.43946025054902,-106.25793344993144,-105.58995174849406,-105.9499339396134,-106.82459142850712,-106.8759315921925,-107.03619611170143,-106.7929325858131,-107.57776625733823,-108.3029115232639,-108.20484707737342,-108.95558977639303,-109.77994262194261,-110.0765199828893,-110.84981918288395,-110.17633215151727,-110.53339366661385,-110.68014084547758,-109.86463351687416,-109.31726974574849,-109.67281771451235,-109.14558624802157,-108.98738802736625,-109.47168167959899,-109.13757688552141,-108.41760018886998,-109.28736057737842,-108.54182992456481,-108.51106579368934,-108.90639090305194,-108.88133429642767,-108.06776127684861,-108.09794248314574,-108.18012265721336,-108.88317247573286,-108.33919282490388,-107.74431685265154,-108.61141436826438,-108.90396270900965,-108.07692220434546,-107.24191870773211,-106.34062220528722,-106.78708877740428,-106.93467282643542,-106.71410656161606,-107.4397653369233,-106.56523255584762,-107.16373787540942,-106.23161934269592,-105.84778225701302,-105.00198874808848,-104.26112023275346,-104.2802354390733,-103.72814373718575,-102.95756564289331,-103.68533114809543,-103.73838380817324,-103.72021502954885,-103.58306721784174,-104.28029460180551,-103.83409671345726,-103.48799574561417,-102.78142094193026,-101.90963062737137,-101.33262857887894,-102.32812728919089,-101.83927291678265,-102.19887443166226,-102.02349331742153,-102.04801240423694,-101.81249816389754,-102.11063858587295,-102.31195882800967,-103.03747299779207,-102.32135565252975,-103.21513953479007,-102.83108879299834,-103.3505014530383,-103.100443221163,-103.31697046058252,-104.20439687371254,-103.61041944706813,-104.02781704068184,-103.89556352421641,-104.60056869173422,-104.72994142537937,-104.71478976123035,-103.95389650808647,-103.70957622723654,-103.35536316363141,-102.81100844312459,-102.46411632746458,-101.85888605564833,-100.92267265729606,-100.91069903736934,-101.39673675596714,-102.33417407795787,-101.99478489439934,-102.94435664033517,-103.64246306195855,-104.46421841811389,-104.36607830831781,-105.05928660975769,-104.33901864802465,-104.73110805312172,-104.8891270197928,-105.69863141560927,-106.3051127595827,-107.024306029547,-106.2886643758975,-105.55167998373508,-104.81035036733374,-104.68650892470032,-105.28879972593859,-105.58183846902102,-104.82205693423748,-104.7447863118723,-104.37189583899453,-103.69305808283389,-102.75157117284834,-101.75287254713476,-102.47583239944652,-102.50205713137984,-103.4994457392022,-103.32351485686377,-103.6132385134697,-104.48996404465288,-104.41097053838894,-103.79463154356927,-103.55457037827,-103.79080719174817,-104.43031275831163,-104.6551778879948,-104.42585268756375,-105.23868216387928,-106.13269673008472,-107.05464494461194,-107.99749404937029,-108.31699284771457,-109.05693837441504,-108.90513934893534,-108.56248246692121,-107.75829066103324,-108.12918424187228,-108.68831609375775,-107.87941580731422,-108.56543023930863,-108.35195101145655,-109.11437327368185,-108.34523728722706,-109.24978287843987,-109.3547735940665,-109.6223405553028,-109.24749087635428,-109.37698769569397,-108.42372848792002,-107.87131028808653,-107.66319476952776,-107.99664040561765,-107.62740038102493,-108.03135666670278,-108.21072951843962,-107.90143365459517,-108.33870083466172,-109.11371110146865,-108.24978019855917,-107.30054737534374,-106.60228271363303,-106.89387382380664,-107.43936372827739,-107.20348834758624,-107.68829120136797,-107.52500833710656,-106.53339382028207,-107.18952783197165,-107.69987290492281,-106.70119590591639,-107.30174503056332,-107.16942193824798,-107.81348382588476,-107.99289690237492,-107.10257251700386,-106.84120344184339,-105.9323246772401,-105.91913091903552,-106.73519788915291,-106.93237798660994,-106.58398467721418,-106.70022444846109,-105.86023742193356,-105.08584734983742,-105.34572573984042,-105.23878385080025,-104.28622373752296,-104.50841585965827,-105.02142706140876,-105.74428562028334,-106.06787819368765,-106.13371545402333,-106.42190264677629,-107.00751123670489,-106.82708487519994,-105.84730917960405,-105.27735139708966,-105.58871454140171,-104.79836358502507,-104.98807139322162,-104.7947009196505,-104.7046110862866,-104.46395112248138,-105.21472179237753,-104.59647678630427,-104.33200432779267,-103.71402463922277,-104.28362632263452,-103.77553340326995,-104.53121232008561,-105.23102650465444,-106.20286328857765,-106.80193176213652,-106.04026623861864,-105.08354234928265,-105.8468251992017,-106.63231154158711,-107.1815869170241,-107.5333510148339,-106.98532974720001,-107.46295593166724,-107.38987711444497,-106.60313613666221,-107.42016550060362,-107.96443753503263,-108.62263940833509,-108.04813638608903,-108.78786619799212,-109.24237453192472,-109.07770755235106,-109.35084788547829,-109.34116783877835,-110.00898261461407,-110.8839565278031,-110.2626248607412,-110.18895098939538,-109.49303773231804,-109.62389763863757,-110.38770204270259,-109.70437781419605,-110.52159256953746,-111.23750851862133,-112.1346098696813,-112.1790382238105,-111.86741849221289,-112.80448030820116,-112.86275843158364,-113.72905162815005,-114.69768884591758,-115.08072442701086,-114.57699145423248,-114.95577973732725,-115.42845023423433,-115.6871988568455,-116.59028105996549,-116.85901205381379,-116.71869870042428,-116.1726462058723,-116.81739774905145,-116.57396657112986,-115.96945932600647,-116.85750761022791,-116.31000827252865,-115.55637095682323,-116.03311143862084,-116.8890406829305,-117.82922203652561,-118.19472609320655,-117.96570002660155,-117.07416168693453,-117.14225192274898,-116.5904743457213,-116.95309192687273,-116.92721390724182,-116.84238333581015,-116.40405674092472,-116.57976806117222,-115.75835227780044,-115.32298488914967,-114.55927636194974,-113.75726604042575,-113.49481307715178,-112.5347658181563,-112.87224690476432,-113.06490733288229,-113.85954951122403,-113.00769425788894,-113.46541698696092,-112.61194486357272,-112.9966996833682,-113.73172110505402,-113.245464369189,-112.38956676330417,-112.20332492748275,-112.6013019727543,-111.96740841353312,-112.5514688459225,-112.04108579223976,-111.29656790196896,-112.09480779245496,-112.0164419747889,-112.16409412538633,-112.84786673309281,-112.0784557806328,-112.19088862882927,-112.46594825200737,-112.14652985753492,-111.15028722258285,-110.9522805144079,-111.88908857945353,-111.11230729427189,-110.85499960416928,-111.2228886266239,-112.11244512582198,-112.09693505428731,-111.54855888523161,-111.14523249305785,-112.10096843820065,-112.82634181343019,-112.44244574708864,-112.8652837537229,-112.29064754024148,-112.26371176121756,-112.61103547131643,-113.19313517212868,-113.2041252143681,-114.1512124366127,-114.71621504146606,-114.53048726543784,-115.43023452535272,-114.64598854677752,-113.88796954741701,-114.58946142299101,-114.82032334432006,-114.5370914884843,-114.47203324222937,-114.12130054784939,-113.90584860416129,-113.5951037867926,-114.53222659183666,-114.33625785820186,-114.19214120833203,-114.34383340459317,-114.21266832295805,-115.05331323156133,-115.3396010408178,-114.9977899165824,-114.10302700428292,-114.06933569861576,-115.00189693178982,-114.41132366657257,-114.28440561611205,-114.47539186384529,-114.60706555191427,-115.2936067818664,-114.56361670885235,-115.3487118887715,-116.16771285701543,-116.12172063998878,-116.80302197486162,-116.47663898766041,-117.14658861700445,-117.54858622793108,-116.79324021143839,-116.06883986108005,-115.84923839243129,-116.78674754779786,-117.28941994160414,-116.80950036970899,-116.04541491670534,-115.39403028879315,-115.3116901461035,-114.40599184669554,-115.04027662519366,-114.1167634758167,-113.18857885012403,-113.79175427136943,-112.95627650385723,-113.384643511381,-113.16154221817851,-112.85162771726027,-113.52472434192896,-113.05323519231752,-112.71024971269071,-113.58125830395147,-114.36387046379969,-114.53030545683578,-115.32667925953865,-115.13570525404066,-115.0781452935189,-116.06770416442305,-115.75017185183242,-115.06100694276392,-115.88955734018236,-116.48985313391313,-115.87346146674827,-116.23904664628208,-116.0597950303927,-116.29046759847552,-116.3678271425888,-115.80136619741097,-115.77883959840983,-115.06552884634584,-114.2125258045271,-114.33607276761904,-113.93299977807328,-114.38600408285856,-113.80642236629501,-113.40745387412608,-114.13495290465653,-113.92394407093525,-113.53263392392546,-113.5961883389391,-113.90747688245028,-114.41537119820714,-114.07181018730626,-113.36857164418325,-113.99201487237588,-114.01740989694372,-114.1802285304293,-113.3126252265647,-113.81408330891281,-113.07486426830292,-112.24036458972842,-111.61236371239647,-112.58579939650372,-112.66565911984071,-112.0892123170197,-111.25392970163375,-111.22114471020177,-111.74013504013419,-112.13127227500081,-112.47273369133472,-111.67855186853558,-111.54048595624045,-111.42827476700768,-110.82577101001516,-110.03009131737053,-109.40112623479217,-108.97028268501163,-108.61089794663712,-107.62948874151334,-107.62430875655264,-108.16870671045035,-107.68460510158911,-106.86660815728828,-106.58980864984915,-105.66839116998017,-105.28870431846008,-105.63428033376113,-105.39144189609215,-105.54308952204883,-106.03311508428305,-105.16215880727395,-105.00451637478545,-105.44092598883435,-104.66912748850882,-104.88511508284137,-105.38167887693271,-106.18439116701484,-105.24579953541979,-104.75366428913549,-105.19874263135716,-105.72655826481059,-106.17335555050522,-105.27475408697501,-105.63353847991675,-104.88130148686469,-104.9216174846515,-105.1259003742598,-104.38302717311308,-105.03007656382397,-105.25535159977153,-104.62905110511929,-103.99739698227495,-104.24659274099395,-104.82389908051118,-105.36344523401931,-106.16752968775108,-107.03075741417706,-107.6000882522203,-108.536608772818,-109.3659670795314,-110.21409813128412,-110.89440882066265,-111.38122224248946,-111.3459697230719,-110.4255932928063,-110.99904316756874,-111.0467248307541,-110.230918077752,-110.74404889112338,-111.04543592501432,-111.24812844209373,-110.79635921958834,-110.27110298676416,-109.68785549188033,-109.37554045813158,-109.82671131473035,-110.0566115276888,-109.7261744090356,-109.88507152814418,-110.74380617123097,-111.39891498768702,-110.59058495145291,-109.60154238855466,-108.67544860905036,-108.26004686905071,-107.73084293678403,-107.99986285250634,-107.67829606449232,-107.07996243750677,-107.13951449142769,-106.23208801494911,-105.67224163888022,-104.82745798770338,-105.24946311069652,-105.3128930288367,-104.70875447010621,-105.68213893426582,-105.05748930759728,-104.88984219031408,-103.90439127758145,-103.26436463790014,-102.31688636820763,-102.94865238014609,-102.52804914303124,-101.62406359892339,-101.05924030020833,-100.84876351151615,-99.95834926981479,-100.71423653839156,-100.30935792857781,-100.36689999094233,-101.09381415275857,-100.96050469577312,-101.66518812160939,-100.8615725748241,-100.78727139439434,-100.23826044099405,-99.7454311628826,-99.92325215926394,-100.62924846820533,-100.9465282340534,-101.58362855762243,-100.66267515113577,-100.03208446549252,-100.63891640724614,-100.8395404680632,-101.42448521312326,-101.04769419366494,-101.59806685568765,-101.86178245395422,-101.1637996127829,-102.08020373852924,-102.24137165909633,-102.52988921897486,-102.25117459380999,-101.29658934241161,-102.0718281082809,-101.45638859504834,-101.59635278815404,-101.49676829623058,-102.36863690661266,-102.87826152518392,-102.01400882471353,-102.85484590474516,-102.41194460028782,-103.35413892241195,-103.08659955952317,-103.59863192494959,-103.45393543317914,-104.19408102845773,-104.51769347675145,-103.70555618964136,-104.31321430113167,-104.07483449252322,-103.50953964749351,-104.45526083372533,-105.07637949194759,-105.41827007010579,-105.15605057403445,-104.87145417183638,-104.97317908890545,-104.8672380996868,-105.2567355837673,-104.96024901606143,-104.47976150223985,-104.733767317608,-103.98265924537554,-103.44139220425859,-103.68559354310855,-104.592226206325,-104.0446503101848,-103.4412752580829,-103.95097628189251,-104.8835730520077,-104.063812778797,-103.81308412086219,-103.02708870731294,-103.1056609726511,-103.0614732215181,-103.00230571441352,-103.02315579121932,-103.87234090873972,-104.5392782445997,-103.55788044678047,-103.15501156589016,-102.64429152244702,-102.78100404143333,-102.15183031372726,-102.8199586882256,-102.56287482427433,-103.5322082140483,-103.7303043953143,-104.45967464800924,-104.33808778924868,-104.48335969401523,-103.73366414196789,-103.26481817755848,-103.49419015739113,-103.9344882434234,-103.7296858378686,-104.60626688599586,-105.52791853481904,-105.25686995079741,-105.31417584978044,-105.03448292473331,-105.16150078503415,-104.36443571466953,-104.31904138950631,-104.87216638959944,-105.12839475367218,-104.81252470612526,-104.09144726349041,-103.48370008124039,-102.99121436337009,-102.84471746487543,-101.96700802259147,-102.94595318008214,-103.82911821315065,-104.14330981206149,-104.40156253241003,-104.5044844886288,-105.30032898578793,-106.21602953365073,-105.24636739073321,-105.69677600311115,-106.47987186256796,-106.88804399594665,-105.89424879802391,-106.3556458405219,-105.53686488093808,-106.36409403989092,-106.18533356580883,-106.75195248378441,-105.75542395701632,-104.93243923224509,-104.76116042444482,-105.13319145934656,-104.59268532227725,-105.33487344440073,-106.12450658762828,-107.05428084544837,-106.97661397000775,-106.95732645923272,-105.95855589909479,-106.02597037702799,-106.92371161049232,-107.587715822272,-107.67862549657002,-108.12639540527016,-108.14913919894025,-107.34438594058156,-107.48251402704045,-108.20875405799598,-107.63688368583098,-107.10318033909425,-106.49068887066096,-106.87069028848782,-106.59363333927467,-105.86011778004467,-106.64059890434146,-107.6179616637528,-108.38236710289493,-108.05402979673818,-107.51761005492881,-107.85891147237271,-108.09793907497078,-107.64456324512139,-107.52417103713378,-107.24719162471592,-106.5096301343292,-106.98243346065283,-106.41181479487568,-107.01532110664994,-107.92500479193404,-107.40073448466137,-107.826975827571,-107.15357583388686,-106.30106969596818,-105.6847146814689,-105.80613960139453,-106.5132015934214,-107.0734008164145,-107.53502642177045,-107.72098537255079,-108.01435384666547,-108.39057314395905,-109.0289762225002,-108.96647647302598,-108.30462089320645,-107.44422409683466,-107.67919183149934,-107.69276290945709,-107.987328204792,-108.7608216041699,-109.02065164223313,-108.05571330105886,-108.04672873346135,-108.25000667199492,-107.75752574019134,-108.17816213704646,-108.6066046403721,-107.82475864887238,-107.23441647505388,-106.83527461672202,-107.65625457884744,-107.02183439442888,-106.94952179212123,-106.16976738953963,-105.17650587065145,-104.67516229953617,-103.95004446525127,-104.25275825802237,-105.0653878254816,-104.36195336654782,-105.00386345526204,-105.49335402576253,-105.02822135714814,-104.17285663122311,-103.90911708585918,-104.68744038185105,-104.87799940165132,-105.2358205341734,-106.2077162945643,-106.4018957237713,-105.73059716494754,-105.91702140355483,-106.54695699643344,-105.65654710168019,-104.90126284677535,-103.91796495718881,-103.14747248683125,-103.56920996541157,-103.83603497687727,-103.36634398205206,-103.35614309180528,-104.1700307787396,-103.95816289819777,-104.09955234313384,-103.63894396834075,-103.46310991188511,-102.93229894060642,-103.93229078454897,-104.18357611214742,-103.3057192210108,-102.64853449445218,-102.63131751911715,-102.80737568158656,-101.92525771539658,-102.66097350185737,-102.86429285956547,-102.87245131470263,-103.79223528085276,-103.0643623615615,-103.72014946071431,-103.62787220999599,-103.31417878670618,-103.82290444057435,-103.55405261181295,-102.8497199579142,-103.688893688377,-102.78194365138188,-102.60056837135926,-101.64295681100339,-101.45772963250056,-102.01646017096937,-102.97745354380459,-102.35691097239032,-102.16271963715553,-102.31677960650995,-101.80260150553659,-101.84670488862321,-101.53706458816305,-102.2448920449242,-101.32525927526876,-101.54868714045733,-101.5705750407651,-101.47240817034617,-101.57406741799787,-101.88675504736602,-102.44057404994965,-101.84180905064568,-102.83617581939325,-103.19572131009772,-102.92589979525656,-102.43593546329066,-102.44461956014857,-101.62774324743077,-101.23383013252169,-100.33686478808522,-99.44924523495138,-99.28034357260913,-98.94563619419932,-99.01195082254708,-98.89226927049458,-99.8863059123978,-99.85080067394301,-99.19912789668888,-99.56346458010375,-98.6471923366189,-98.10144926607609,-97.71285122726113,-96.96504345862195,-97.33422807883471,-98.05654357047752,-98.95248898956925,-98.89431376382709,-98.69971063872799,-98.88442907482386,-99.79619555547833,-99.41996467625722,-99.1924098143354,-99.84308186965063,-99.69329883018509,-99.47498479252681,-99.40490489965305,-99.21415103739128,-98.24115675734356,-98.91526592988521,-98.16939001576975,-98.58719913801178,-98.4773740330711,-99.15730326576158,-99.95730057219043,-98.99403220182285,-99.97574447793886,-99.15370212402195,-99.22100534895435,-99.23731447709724,-98.94863920006901,-99.75312041537836,-100.6552307838574,-100.78527436079457,-100.77069044206291,-100.11147698340937,-99.41075949091464,-99.32495245104656,-98.51843961933628,-98.70761535177007,-98.33492089621723,-98.48740123258904,-98.90179423661903,-98.20276284543797,-98.6099834064953,-98.39602880505845,-98.97137530241162,-98.43555649463087,-98.4822284183465,-98.59026230266318,-97.67794240126386,-97.66836778307334,-98.2372675430961,-97.557869436685,-97.77982596913353,-98.67414237791672,-98.71890048496425,-98.3087704484351,-97.3916276274249,-97.70516105135903,-97.6015784451738,-97.98461276106536,-97.07445152197033,-96.80928405141458,-96.54864048445597,-97.0565154356882,-96.82094642007723,-96.71147545101121,-97.16097026085481,-96.44909370969981,-96.24499839544296,-96.83974606823176,-96.89769383426756,-96.93479530978948,-96.09504471998662,-95.68334202282131,-96.27072296757251,-97.09585086628795,-97.29697877401486,-96.33529154350981,-95.53903307812288,-96.16776277776808,-96.20115395868197,-96.74244387727231,-97.34189751883969,-96.37156228302047,-96.19353141915053,-96.7227705125697,-97.70112951332703,-97.92204149626195,-97.78899002401158,-97.67029129248112,-97.83991170907393,-97.97481558145955,-97.2989139482379,-97.86445489199832,-98.67036863323301,-99.49543679505587,-99.23114932514727,-98.91435095807537,-98.99584721727297,-99.75236881617457,-99.66251299716532,-100.58707224391401,-101.21704776631668,-101.01170954620466,-101.09443761501461,-100.32027340354398,-100.16515810135752,-99.31849231757224,-98.96476009767503,-98.69224713789299,-97.83046639803797,-97.98409577412531,-98.79943369422108,-99.52145218383521,-99.10676773497835,-98.50465941103175,-99.17926760343835,-99.46684524370357,-99.63513053813949,-99.33895856002346,-98.45503428485245,-97.55304557876661,-97.47529128892347,-96.90395213942975,-97.08261416619644,-97.4405068247579,-97.1639932426624,-96.87214214494452,-96.48177194688469,-96.66784407850355,-96.00411357590929,-96.2360836463049,-96.85897817602381,-96.6188806029968,-97.21759986970574,-97.47665400803089,-97.31716582691297,-97.27493939688429,-97.31783644808456,-97.30148064997047,-96.7038668897003,-96.35541223781183,-95.62468892754987,-96.45263756392524,-97.2240828871727,-96.50481268018484,-96.0079055717215,-95.40927058365196,-94.41876502754167,-94.67072797194123,-94.58625848731026,-94.28765560267493,-95.15552227804437,-95.0234909793362,-94.80254014162347,-95.21165969548747,-95.74344002548605,-94.97154770139605,-95.94180539157242,-96.15643355762586,-97.05833191331476,-96.43739167740569,-96.21173436567187,-96.07187283504754,-96.07190622482449,-96.88668345240876,-96.84215888660401,-97.0644541811198,-97.57865527225658,-98.17009088676423,-98.63461122382432,-98.91172286495566,-99.41151686618105,-100.07872167788446,-100.00407443195581,-99.8598906910047,-100.1933205104433,-100.15038533043116,-100.86428644321859,-100.01747785042971,-100.91020590998232,-100.19940975541249,-99.29427516646683,-98.87200418720022,-98.92695550760254,-98.18581644818187,-97.51208797935396,-96.9911005133763,-96.39860535645857,-96.4158888719976,-95.42117827944458,-94.91442107548937,-94.31092291790992,-95.01784288976341,-94.39743012934923,-94.05069387285039,-94.54527984326705,-95.09320464730263,-95.44676414877176,-95.36681007826701,-95.96990734571591,-96.13360061822459,-95.78047350468114,-95.86696421867236,-96.82223267713562,-97.31270919833332,-97.22813910711557,-97.95723529485986,-98.8868538136594,-99.59782539820299,-99.33565742196515,-98.92529988707975,-97.96421945979819,-98.86443238379434,-97.87083895830438,-98.56162545504048,-97.83271316904575,-98.45382416434586,-98.02643777383491,-98.92899832269177,-98.88632672978565,-98.98596002021804,-99.73027874482796,-100.00833197264001,-100.44420604361221,-101.28095302684233,-101.54036394041032,-101.26702875690535,-100.28923091944307,-100.05524858366698,-99.46598953800276,-99.87951678037643,-100.5270320395939,-99.55232488084584,-100.09161716653034,-99.89818106032908,-100.65237079840153,-100.22943033510819,-100.56480454560369,-99.79797991877422,-99.34082192881033,-98.48789320839569,-97.785863452591,-97.94855413818732,-97.81774732703343,-98.3050611061044,-97.99088277015835,-97.77484547626227,-97.19620933011174,-96.9927236046642,-96.22827889304608,-95.55068673798814,-96.46236031595618,-97.21308084065095,-96.70520382467657,-95.76243228651583,-95.47797074820846,-94.65510177752003,-95.10109897237271,-95.86294089769945,-96.84317430108786,-96.23913691705093,-95.56268226355314,-96.04625306744128,-96.35031526256353,-96.06145333591849,-95.85247679101303,-96.42345170816407,-96.94796322472394,-97.01383772911504,-97.79286286886781,-98.35705960402265,-99.30183097999543,-98.6301776659675,-97.80209387652576,-97.53571552410722,-97.36444925051183,-97.35179599234834,-97.50800794083625,-97.48549569258466,-98.01589952642098,-98.10750831663609,-98.00957990949973,-98.41978139523417,-97.58786790026352,-97.33841122267768,-97.86593245202675,-98.38693249598145,-97.60426515014842,-96.65657249931246,-95.6755321873352,-95.0006083524786,-95.8114469232969,-95.25908788945526,-95.71865912526846,-95.07471923343837,-95.17897121980786,-94.23373164283112,-94.04285106016323,-94.45197369996458,-95.00566320959479,-95.3709561554715,-95.82250719098374,-95.12763407221064,-95.68203010736033,-95.6970626716502,-95.21143321180716,-94.76040300261229,-94.97994941705838,-95.74685450317338,-95.29443387221545,-96.22354818601161,-96.45084888488054,-97.15655159251764,-97.69246963690966,-96.72699451213703,-97.65532590821385,-98.24111084314063,-98.72293470986187,-97.99201614502817,-97.0746622690931,-97.21247470611706,-98.02359912823886,-98.50479826331139,-98.19081323733553,-97.28558175079525,-97.50821813102812,-97.65791040658951,-97.6935070916079,-98.23053770791739,-97.95291147381067,-97.37100909091532,-97.00447528390214,-96.74813716299832,-96.64739829394966,-96.1517484006472,-95.90610922221094,-95.03172981226817,-95.26013936614618,-94.82374966237694,-94.88871114561334,-94.99857551511377,-94.15780282020569,-93.68128372402862,-92.78656772663817,-93.68822121666744,-93.63673267746344,-93.40622208127752,-94.04866753378883,-93.67906188499182,-92.74687274778262,-92.07935192063451,-91.24970544315875,-90.7232311218977,-91.09738190518692,-90.56412569247186,-90.28116954956204,-90.63726713182405,-90.09909211099148,-89.18547827284783,-88.35173480771482,-88.49883501138538,-87.78299997653812,-88.63189199008048,-89.5911355568096,-89.46576800523326,-89.64572815550491,-90.1026376108639,-89.93995505198836,-90.03566542081535,-89.750884602312,-90.66733604669571,-91.34078302187845,-90.69483857182786,-89.89680107310414,-88.99820604687557,-88.07305337814614,-87.53329990617931,-87.62850218405947,-86.90343807497993,-86.32877937471494,-86.23983680596575,-85.83707979973406,-85.34445732319728,-85.9931516237557,-85.23239002609625,-85.17720901733264,-85.74507712339982,-85.05755467154086,-85.60497709922493,-86.20739366160706,-85.5937386197038,-85.5039018173702,-85.65444233408198,-85.47179252980277,-85.21969632292166,-84.52646806417033,-84.85759525699541,-85.15184034919366,-85.61951494636014,-86.37922330154106,-87.06530936108902,-87.31596009945497,-87.3975147367455,-86.48278409149498,-86.11833085305989,-85.35829347604886,-86.10917088668793,-85.64025261066854,-85.08512350404635,-85.98540758900344,-85.69204314332455,-86.28454978950322,-86.53475632285699,-87.31444021966308,-87.4049760075286,-88.08603643346578,-87.10418189130723,-86.20585377002135,-86.45118302153423,-87.05519294599071,-87.34855097671971,-87.03325125621632,-86.84742153575644,-86.3537881555967,-86.60779999895021,-87.0607107449323,-86.17929576942697,-86.99127733521163,-87.51148749422282,-86.8894987241365,-87.12526211887598,-87.31470891367644,-87.48935441905633,-87.83704537851736,-87.84832053212449,-88.23568156082183,-88.68812460033223,-89.54444329906255,-89.84714369801804,-90.70611398248002,-90.09077656641603,-90.93581495340914,-91.11975326063111,-90.47389106359333,-91.21273624710739,-90.38717312505469,-89.65223337244242,-90.4685590066947,-90.97923194104806,-90.81111345486715,-90.37015474494547,-90.68987377174199,-91.20695743290707,-92.07188358251005,-91.69054750958458,-91.45035100495443,-90.92028385214508,-91.72886365745217,-91.04404890583828,-91.2609860766679,-90.92881908640265,-91.58255105186254,-91.35642077075318,-92.06987294834107,-92.66221901774406,-91.83173329941928,-91.9759372966364,-91.08343757875264,-91.58223630581051,-91.60903851734474,-92.00934619968757,-91.0878791231662,-90.3351428648457,-90.35592640703544,-89.72574422648177,-90.11025310819969,-89.12455463316292,-88.73213793477044,-88.09091876260936,-87.8933211308904,-87.67183588910848,-87.00633668899536,-86.15305538801476,-85.61799972737208,-86.27917190548033,-87.08237958420068,-86.36644163588062,-86.13750055478886,-86.62396339699626,-86.63926864834502,-85.65880321944132,-86.5241573783569,-87.2775354674086,-87.86466748267412,-88.44824058748782,-89.16177275916561,-88.85706771165133,-88.79264954617247,-89.48360086698085,-89.11626751860604,-90.04487860016525,-90.02192204119638,-90.45896071242169,-90.87409390695393,-91.6516850143671,-91.38438303256407,-91.95968150626868,-91.41232058079913,-91.75527424970642,-91.12738001346588,-91.07944401539862,-90.41754991654307,-90.02814798615873,-89.56000989675522,-89.00022621033713,-89.96120832767338,-90.37908769864589,-89.89044327102602,-90.0019634347409,-89.61396729806438,-90.45254351617768,-89.60161205427721,-89.96968333004043,-89.14102201443166,-89.524458787404,-89.27529016556218,-90.10253838635981,-90.26398255396634,-89.65176926972345,-89.83006247133017,-90.64398165792227,-90.86969563830644,-91.69899936811998,-90.90689538698643,-90.92344207828864,-90.5027886829339,-89.97033783653751,-90.91004501841962,-89.99907451262698,-90.77048123953864,-90.55893423594534,-90.82368077896535,-91.76210053451359,-92.4172211997211,-91.6950907772407,-91.46476370329037,-92.1376859457232,-92.74747946904972,-92.91116656037048,-93.32246751524508,-93.52933877659962,-93.78114670468494,-93.33191332407296,-93.43053564568982,-94.00655672838911,-93.16173980757594,-93.682357233949,-93.47712728986517,-93.44660867284983,-93.31236504158005,-93.40250259172171,-92.44409792171791,-92.2874639951624,-91.69096809159964,-90.82217424642295,-90.43923934549093,-89.76780701894313,-89.82212815759704,-89.80031624482945,-89.70722759095952,-89.2062867009081,-89.68784061959013,-89.60247509367764,-90.3152254158631,-91.08908761385828,-90.15134222386405,-89.34112040046602,-90.19112754287198,-89.59509680140764,-88.73261437611654,-89.40968485362828,-88.87175491917878,-88.65961889084429,-89.28174825245515,-88.68609504029155,-89.07774979854003,-88.3288914966397,-88.36714977445081,-88.07242287090048,-88.62909066071734,-87.76539464108646,-88.03992636641487,-87.65296038100496,-88.13721086131409,-87.46549020521343,-87.58308434020728,-87.11889799078926,-86.50789240095764,-85.91048088250682,-85.53217996982858,-85.43603613087907,-86.03497535409406,-85.408530194778,-85.83653497789055,-86.6433633430861,-87.42723213275895,-86.65767470747232,-87.50447919778526,-88.44203979242593,-87.63011327199638,-88.0140221696347,-87.97630054876208,-87.40756727196276,-86.70566413924098,-85.93001772044227,-86.10238292021677,-86.31873286748305,-85.78182515082881,-84.79536221595481,-84.49648099113256,-84.05992435105145,-83.09176497347653,-82.7283274536021,-82.09553743619472,-83.00678492803127,-83.3780807745643,-82.75976723432541,-81.90814264770597,-82.89078861894086,-82.83776021935046,-82.98545656027272,-82.28016815846786,-83.1419490580447,-82.34369597351179,-83.10118984943256,-83.40689170639962,-82.83254540106282,-82.56432971451432,-83.30532628716901,-82.68077838141471,-82.29826880525798,-82.43286662455648,-82.62695284094661,-82.5438664322719,-81.71168800909072,-82.10601790715009,-82.27525948407128,-82.32762811006978,-83.23466599779204,-83.056995164603,-82.84374471893534,-82.65360622759908,-81.68600961798802,-82.50177522702143,-81.5878302352503,-80.66143635101616,-81.07877977658063,-81.70809597428888,-81.19411881407723,-81.92117018904537,-81.68495603045449,-81.4963605501689,-80.77877757325768,-80.85750281857327,-81.57257165247574,-81.93525653425604,-82.4075727998279,-82.43936779303476,-82.37708635861054,-81.57091668667272,-80.76235650852323,-81.0937369428575,-81.36727862711996,-82.2512024929747,-81.4564912985079,-82.16810594918206,-81.38923061266541,-82.35418819310144,-82.5366543084383,-81.82304645702243,-81.74293538881466,-82.71991395577788,-83.1729084555991,-83.48770398693159,-82.67854027450085,-82.62112893816084,-81.9104247004725,-81.1785799250938,-82.12640283629298,-82.42905878135934,-82.36924407538027,-81.73965228162706,-81.9205063721165,-82.04620587918907,-82.73717455519363,-83.71157754445449,-84.13843332603574,-83.44081898313016,-83.57342628482729,-84.38172031519935,-83.88457691436633,-82.95328966481611,-82.24074121797457,-81.86631687963381,-82.11617413442582,-82.43479055352509,-82.24639941705391,-81.28629027632996,-81.78507982892916,-81.2125823921524,-82.05335708288476,-81.25430031260476,-80.63756182044744,-79.97402471257374,-80.00805598916486,-79.92530974419788,-80.0553287314251,-79.81497509311885,-79.35884500760585,-80.22300479980186,-79.32359061669558,-80.0544016379863,-80.08983592223376,-80.53644169261679,-80.8313673241064,-81.19136069295928,-80.7812502249144,-80.50847568921745,-81.11128350626677,-80.20415931334719,-79.62054209783673,-79.48867370793596,-79.04148263623938,-78.41325736278668,-78.13003885326907,-77.48866655351594,-77.958174217958,-78.1140808579512,-77.53386777453125,-76.95756912278011,-77.6732852300629,-77.64366142684594,-76.66384368948638,-76.75992899248376,-77.07250460097566,-76.47319609485567,-76.98461011657491,-77.51864645909518,-76.77708234544843,-77.44856959488243,-78.28506464418024,-77.89251973340288,-78.4888704167679,-78.74401816958562,-78.76305016037077,-77.87498649861664,-77.95859595667571,-78.55469600157812,-77.90159236080945,-78.31266928929836,-77.87872863514349,-78.14219407271594,-78.14261223608628,-78.54978719633073,-77.73685073805973,-77.78671431308612,-77.686350136064,-78.02027549827471,-78.96521832374856,-78.01795787038282,-77.68449104437605,-78.10706956638023,-78.03559763776138,-77.25221836566925,-76.86164833791554,-76.59420168353245,-75.87727117491886,-75.88307369174436,-75.49133201828226,-75.55751174688339,-75.73986764112487,-76.50840765750036,-77.08121609175578,-77.12228451296687,-77.00128992088139,-77.198219334241,-76.8857269892469,-77.47913802647963,-77.21710869390517,-76.23971953801811,-75.96447715815157,-75.25758935697377,-75.52019267529249,-75.6804054910317,-75.70806153398007,-75.13861196767539,-75.4893967662938,-75.66744349291548,-76.62209851434454,-77.50842267367989,-77.00056190043688,-77.93438826873899,-77.72761785145849,-77.77153153903782,-77.85000964207575,-76.91823864076287,-77.3114365413785,-76.73183127772063,-77.67445886414498,-76.78143144352362,-76.37719484372064,-76.42959401011467,-75.48249833332375,-76.37800762569532,-76.7577951173298,-76.09722283994779,-76.53829237818718,-76.20830256026238,-75.57154543092474,-76.45962505042553,-76.1411689100787,-75.97715107398108,-75.20588802779093,-74.84792788792402,-74.09534071711823,-74.1093590608798,-73.89655642351136,-73.24610905302688,-73.83532278891653,-73.51559430593625,-72.71092708036304,-73.5260081985034,-73.74938870267943,-73.16360404994339,-73.29383763531223,-73.1791063779965,-74.06161015992984,-74.36343932896852,-74.96193407662213,-74.32337227649987,-74.67735350457951,-74.67447535414249,-73.96903205290437,-74.26642478816211,-74.23690471472219,-73.24545658798888,-72.93514989502728,-73.6492011914961,-73.09127581957728,-72.86290440475568,-71.97037260606885,-72.79298897925764,-72.52582760201767,-72.64199448935688,-72.95281141716987,-72.57574485661462,-72.72255942970514,-72.94161015423015,-72.52622518781573,-73.29901240812615,-74.17648603767157,-75.03796902578324,-75.21294617839158,-74.6489647612907,-74.6085336827673,-75.55938187707216,-74.63510800851509,-73.71315138740465,-74.67462289705873,-75.16507907118648,-75.05432021059096,-75.2512092422694,-75.0074498001486,-74.27894345810637,-73.83199859783053,-72.94261864898726,-72.05513686453924,-72.66406982392073,-72.4427876113914,-71.66408426035196,-70.89349363930523,-70.64939933642745,-70.34018642595038,-70.42836234113201,-70.36031130887568,-70.71089144609869,-71.68456740956753,-72.0826328471303,-71.68459215434268,-70.71958455303684,-70.50733761535957,-69.57898135250434,-70.24058904778212,-70.77579023689032,-70.55396304884925,-70.6175779690966,-70.62830484937876,-71.30643667140976,-72.06108343089,-72.63040760206059,-72.40241684392095,-72.17232241434976,-73.15399732906371,-73.11540280422196,-72.39953507808968,-71.79008067212999,-70.95937435235828,-71.65965021122247,-72.28563696052879,-72.22078367322683,-71.89647216303274,-70.98501160973683,-70.26503924932331,-70.53071344038472,-71.02696228539571,-70.25038401875645,-69.31912194518372,-69.91326972609386,-70.33949352009222,-71.1267881160602,-71.00634684180841,-71.14723101444542,-70.65411526570097,-70.39689759770408,-69.94240579381585,-70.29773354437202,-71.28155084513128,-71.58430690364912,-71.4076861734502,-72.27892072405666,-72.50090963486582,-73.13290413282812,-73.92913108086213,-73.30323932971805,-72.3256221851334,-72.84156477730721,-73.68666100967675,-74.38453381322324,-75.03245273977518,-74.51139563554898,-74.72706322791055,-74.64467647532001,-74.24977578688413,-74.60482711717486,-73.78647670475766,-73.46038505481556,-74.14563571149483,-74.80793603044003,-74.22163083357736,-74.33286618394777,-75.0464200032875,-74.77068926393986,-74.25236647529528,-73.66074580466375,-74.60550834238529,-74.85665787616745,-75.30949179036543,-75.94704904500395,-75.06644515739754,-74.21011062571779,-73.8748443950899,-73.50221059564501,-72.87620799615979,-73.08563087508082,-73.27306229947135,-74.03715682029724,-73.0955842686817,-72.93673551082611,-72.11839446565136,-71.15294801723212,-71.58287947019562,-71.81136870989576,-72.23693611100316,-71.81389561854303,-72.11664265859872,-71.47452951595187,-72.17261430667713,-72.52706612274051,-72.46693447139114,-71.58007640996948,-71.50855731405318,-72.14435479603708,-71.92240996472538,-71.47100701276213,-72.12684103287756,-71.85357693349943,-71.92864977568388,-71.49072826700285,-71.94530504662544,-72.82103675650433,-72.85647715581581,-72.98060022294521,-73.60360169690102,-73.0274019325152,-73.6611576876603,-73.15575223462656,-73.14102784497663,-72.93783448496833,-73.18899594107643,-73.53869139868766,-74.1731356587261,-74.64260450797155,-75.26273374026641,-75.47427311679348,-74.93746090494096,-75.54207597114146,-75.91452274890617,-75.39734538132325,-74.91375085199252,-74.37652590777725,-73.54810791509226,-74.37853281060234,-74.4902875139378,-74.03605291713029,-75.00554256467149,-74.38327135983855,-74.32113108923659,-73.74744601361454,-72.9600219540298,-72.74211338628083,-71.90339874615893,-72.74661657167599,-72.06679676705971,-71.11897661024705,-70.59010163042694,-70.65843091718853,-71.34324632259086,-72.15006819320843,-72.59186546364799,-73.08321001846343,-72.25800483860075,-71.40754504874349,-72.23607287602499,-72.60355300176889,-73.45938899740577,-74.30245521990582,-74.29093438433483,-73.56903709610924,-73.99529818538576,-73.12346877809614,-72.95644155470654,-72.71436429908499,-73.16467827791348,-73.99860837496817,-73.8908037962392,-74.59029928641394,-75.28832718543708,-74.5052663302049,-73.76775249280035,-74.1044885176234,-74.7768549695611,-74.32045903010294,-74.10318995267153,-73.90850281296298,-73.13796716602519,-73.81388592906296,-73.42249234672636,-73.10986068146303,-72.91784798260778,-73.20440656412393,-74.17503125732765,-73.52567779831588,-72.82678632205352,-73.60245827399194,-73.1226126709953,-73.94289900781587,-73.36803287733346,-72.96724860696122,-72.50940597383305,-72.57349680271,-71.63357060216367,-72.59527203906327,-72.41508536040783,-71.54776804801077,-70.56165274698287,-71.43176698125899,-71.10461479239166,-71.78968775179237,-71.34451750433072,-71.7517715645954,-71.04655809514225,-70.40693009039387,-71.2312688222155,-72.03252956038341,-71.4451829441823,-71.64054247457534,-71.93641662690789,-72.02734694397077,-72.47993630031124,-73.40126971527934,-72.82950793066993,-73.52666068868712,-74.16170876426622,-73.77748274290934,-73.65470078168437,-74.05945258913562,-74.22497904114425,-73.97874476574361,-73.90061032725498,-73.13131198706105,-72.19057122990489,-71.47941310377792,-72.39783566398546,-73.33777025528252,-72.7105887052603,-72.80355775123462,-72.15059288637713,-72.6622371119447,-72.77717449655756,-72.23021891154349,-72.97410181816667,-72.962449665647,-72.81291543040425,-72.57102299435064,-72.96387074375525,-72.06329462537542,-71.55737339053303,-71.25874000182375,-71.39715393446386,-71.52359234401956,-70.56859625177458,-70.44037812948227,-71.24223288195208,-71.91254365397617,-72.80396736552939,-72.45807666983455,-72.37539519323036,-72.17287135636434,-71.52039330918342,-71.43721099710092,-71.72682188777253,-71.18834641529247,-71.54223979683593,-72.41816183459014,-71.97953456733376,-72.87177010532469,-71.9660568209365,-72.69762374367565,-72.25430213054642,-72.08455168455839,-72.3054181500338,-71.48206974333152,-71.52083129109815,-72.40666470723227,-71.90839298954234,-72.21149469725788,-71.97245737351477,-71.09391893120483,-70.5941631081514,-69.75751582812518,-68.94450689898804,-68.89246127614751,-69.82875221362337,-69.45924459863454,-68.8674346585758,-69.41205241018906,-69.11806336324662,-68.33465478289872,-68.56046245526522,-68.86371672293171,-68.27544547338039,-67.76336875651032,-67.54572846088558,-66.6118688704446,-65.84081108262762,-65.39949164586142,-65.07866770448163,-64.73911890666932,-65.25190926715732,-65.97002551006153,-65.9850383112207,-64.98507199808955,-64.04819283913821,-63.448593280278146,-62.523840906564146,-62.51077985344455,-62.48568090144545,-62.76039268448949,-63.02950283838436,-63.361779164522886,-62.744210592936724,-62.46898791799322,-63.24836933426559,-63.79410147666931,-63.25955329835415,-63.756249950733036,-63.73199626710266,-64.04118497436866,-64.24372583208606,-64.99289613869041,-65.51966017857194,-66.14807487465441,-66.38586920779198,-67.23171484330669,-66.38455191627145,-66.36992064397782,-65.8220377410762,-65.55707978177816,-65.24793322663754,-65.13729108078405,-64.90019152406603,-64.6682514003478,-64.83141298731789,-65.62179187638685,-65.40591174550354,-65.17126853670925,-65.713797012344,-65.06425682874396,-65.18253861321136,-65.12302484782413,-64.38555866992101,-64.38521604333073,-64.79456554027274,-63.885253970045596,-63.496763174422085,-64.41312439739704,-65.07812175061554,-64.60767445061356,-64.99715893622488,-64.38889152603224,-65.13436316838488,-64.73919927654788,-64.05227815266699,-64.25091960094869,-64.30854292213917,-63.96546513494104,-64.04817702295259,-63.946739587932825,-64.891794889234,-63.90416546398774,-63.847118481528014,-64.41327589657158,-63.51244698185474,-63.58716297801584,-63.992449440062046,-63.81772923609242,-64.7858164710924,-65.69576153438538,-65.466604961548,-66.13661054195836,-65.50298305414617,-66.08844704320654,-66.64985726168379,-67.3869272978045,-67.75093312514946,-67.73929264768958,-68.16882081516087,-68.72399933543056,-69.65111867338419,-69.5019949269481,-69.2149357078597,-68.37562571000308,-67.56904224772006,-67.58863836620003,-67.17640234902501,-67.99715081695467,-68.55419775564224,-68.72752897487953,-68.6015738202259,-68.19697903702036,-67.67899155057967,-68.64517942909151,-69.12615665281191,-69.92208329075947,-69.3977145073004,-69.10963486740366,-69.9340274753049,-70.4074981319718,-71.36635318724439,-72.05047275265679,-71.45466568646953,-71.16269221063703,-71.62706096284091,-72.59847198566422,-72.21512922551483,-72.17951297527179,-71.25681176502258,-71.04270376032218,-70.75192690221593,-71.28287481097504,-71.41007444215938,-71.5192278441973,-72.2832353990525,-71.5669141500257,-70.72160751186311,-71.30638713343069,-71.26317230332643,-72.16066821757704,-71.50000006658956,-72.34861382981762,-71.37218570755795,-71.95627000276,-71.79893477307633,-70.9627738147974,-70.02176493080333,-69.56810069642961,-69.4067010898143,-69.41838292777538,-68.42330136476085,-67.76815144019201,-68.35798353515565,-68.34819485992193,-68.83098604762927,-68.99682842660695,-69.43526224279776,-69.60857716947794,-70.42291913134977,-70.26664193207398,-71.17368155857548,-71.42576359026134,-71.72291721496731,-72.38820886565372,-72.97478225640953,-72.13494705362245,-71.60041977465153,-70.94065689202398,-71.52121822582558,-71.22046600375324,-72.00836118264124,-71.69560303166509,-70.95362642640248,-70.07217076607049,-69.35338014457375,-68.70684799924493,-68.63345583248883,-68.58854156872258,-67.88917868258432,-66.94132201373577,-67.02176056569442,-67.44402354164049,-66.6853670286946,-65.93357301875949,-64.96600816352293,-65.19113298645243,-64.98718330822885,-64.98598879249766,-64.0287905340083,-63.28641807148233,-62.91538271587342,-63.062327079474926,-62.490837862249464,-62.17978067230433,-61.44876909442246,-61.937860772013664,-62.53150258306414,-62.80551637522876,-62.68375530326739,-63.42599909519777,-64.10632697492838,-64.25664053764194,-63.36431982181966,-63.351819715928286,-62.54551540222019,-61.690886550582945,-62.09747052984312,-61.45519246114418,-61.87920745275915,-61.17140737129375,-60.82764747645706,-60.92461766721681,-61.84559228690341,-60.88025711243972,-61.463969208300114,-60.46843252237886,-60.86487758997828,-61.00127251027152,-60.66619292413816,-61.02318642893806,-61.948085707146674,-61.17045343713835,-61.506121611222625,-61.7898623929359,-61.8293812610209,-62.17849814891815,-62.13273097155616,-63.04390335222706,-63.906799227464944,-63.2202507359907,-64.01500654686242,-64.591062924359,-64.69750428432599,-65.41734740836546,-65.07773007499054,-65.46860319888219,-65.50521670281887,-65.36379527440295,-66.04411497339606,-65.77015621727332,-66.59542029583827,-66.654016291257,-66.43660404486582,-67.09180658636615,-66.47158742370084,-65.97263040859252,-66.84085804317147,-67.36427858425304,-67.35297700716183,-68.14533883705735,-68.83358768932521,-69.5720546473749,-70.32800712902099,-70.492656304501,-70.66655357182026,-69.73657493852079,-69.6699843974784,-70.25544397579506,-70.18834158731624,-69.4286504634656,-68.95144431758672,-68.68473850749433,-68.35509811993688,-69.15448455279693,-70.06107773911208,-70.11210394604132,-69.95226164534688,-69.82011857442558,-69.47124663228169,-68.52008333336562,-68.02689612284303,-67.03718136623502,-67.53608902730048,-67.36325752642006,-67.86605281895027,-67.65356026496738,-67.32040943671018,-66.8906102576293,-66.129628370516,-65.33687021583319,-64.35340678784996,-63.922642928082496,-63.7832539472729,-63.72419685823843,-63.351050740107894,-62.66030550934374,-63.07230686908588,-63.5143276900053,-62.668481540400535,-61.9773306674324,-62.681285850238055,-62.09160015685484,-61.54878513934091,-60.56358396820724,-60.102246961556375,-60.6667573438026,-59.809234615415335,-60.377335951663554,-60.2527635153383,-60.18441857304424,-61.13184907659888,-61.1324345045723,-62.046747458633035,-61.91610209038481,-62.760155600029975,-63.52793504809961,-63.43041226640344,-62.52787025598809,-61.55391711322591,-60.959823317825794,-61.95309120323509,-61.30464181350544,-62.00400963937864,-61.343134959694,-61.796104709617794,-62.57035751501098,-62.5144997718744,-63.19773189397529,-62.494813055265695,-62.39064851542935,-62.16600967338309,-62.75767458090559,-62.35927504254505,-63.27048895461485,-62.860921753104776,-62.86072383727878,-63.116995381657034,-62.94461745722219,-63.31418208125979,-63.29086369415745,-63.382961770985276,-63.64963493403047,-63.240492672193795,-63.78747480129823,-62.80955383274704,-61.889899518340826,-62.29138637892902,-62.01255568070337,-62.171730228699744,-62.76397239137441,-63.17195151606575,-63.82757594669238,-63.16372807556763,-63.463493989314884,-62.94345692312345,-62.62163705704734,-62.280928500927985,-62.99875550251454,-62.87711662519723,-62.15946556720883,-61.79393322998658,-62.31179287750274,-61.494375901762396,-61.80329031450674,-62.27331867534667,-61.999062043614686,-62.77132338099182,-61.91086339112371,-62.2075884998776,-61.895448797848076,-62.21682572318241,-61.960547448601574,-61.95097706466913,-62.29881657240912,-62.52777332626283,-63.121333638206124,-62.28978023584932,-62.375008021015674,-62.23878125892952,-63.01913246465847,-63.98316387319937,-63.040573882404715,-62.27707975357771,-63.200154116842896,-62.40550574334338,-61.68660566955805,-60.80735564418137,-60.4530741465278,-61.21988002303988,-61.175374917685986,-60.669995189178735,-60.63161864411086,-60.66652392828837,-59.85504269879311,-60.06914740940556,-60.69380545942113,-61.196831649169326,-60.95570297027007,-60.35276356898248,-60.597147854510695,-59.66370220808312,-59.35221597691998,-58.881456355564296,-59.38169435504824,-59.92284794058651,-59.28521129582077,-58.62306955968961,-59.15832283068448,-59.30437761871144,-59.95266220998019,-59.59784003300592,-59.5767128537409,-59.95627821376547,-58.96873340802267,-59.50670878589153,-60.0930637344718,-60.39535373309627,-60.95989866601303,-61.371681122109294,-61.44545643730089,-60.717473118100315,-61.07325678830966,-61.08796997833997,-61.44558170763776,-61.596031608991325,-60.731259589549154,-59.85310608521104,-60.56499706348404,-60.48493166919798,-60.55024402868003,-60.5464508458972,-60.43988054897636,-60.22063707699999,-59.956513470970094,-59.93037399230525,-60.754570454359055,-61.54875329090282,-61.563379497267306,-61.45906162261963,-61.28048119600862,-62.19904292328283,-61.85213502123952,-61.67101328121498,-61.414207719732076,-61.06173326307908,-61.43207545205951,-60.98586920974776,-60.27835376933217,-59.582568927668035,-60.19624036317691,-59.421859132591635,-59.85748923569918,-60.038549463264644,-59.34984914492816,-59.93826898606494,-60.585795547347516,-59.7479045544751,-59.985200414434075,-60.54229220096022,-60.99152608588338,-61.52925872337073,-61.63928795186803,-60.66150388959795,-60.96769053675234,-61.96759465802461,-61.677397325634956,-62.10113650839776,-62.13960330095142,-63.088887819088995,-62.36454062908888,-62.796580201014876,-62.49744452908635,-63.33141622552648,-63.17721546860412,-63.190102810040116,-63.943039033561945,-63.07296800799668,-63.14251045556739,-63.15378322452307,-62.3631133469753,-61.58795736171305,-61.986489872448146,-61.41201021056622,-60.769672399386764,-61.18660196149722,-61.975923172198236,-62.279101675376296,-61.518377074971795,-60.91079997457564,-60.487442422192544,-60.48958462988958,-60.81461772043258,-61.40380170522258,-62.29898721631616,-62.05069403536618,-61.59703481150791,-61.57753582065925,-60.62483340641484,-60.11786290165037,-59.52494867891073,-59.71776357619092,-59.55050262995064,-60.038977454882115,-59.85157747985795,-60.4062414271757,-61.05116089200601,-61.76280288910493,-62.139943204820156,-61.44946802314371,-60.98930015973747,-61.98073825240135,-61.172564294654876,-61.456533569376916,-61.349748531822115,-61.21962632192299,-62.02300610160455,-62.30671631451696,-61.94261262891814,-62.556392195634544,-62.815517618786544,-63.439306951127946,-63.280330900102854,-63.310341397766024,-63.11670209420845,-63.46371296653524,-63.27281160233542,-64.09508764604107,-63.52987982658669,-63.75440313341096,-63.53592249471694,-64.12521539907902,-64.88089765189216,-65.6738228010945,-65.32746237702668,-64.35708252247423,-63.81844631815329,-63.46909623267129,-64.35693243285641,-63.98949859384447,-64.6766215423122,-63.92898240219802,-63.35663690883666,-62.46992634376511,-63.351293948013335,-63.770298276562244,-63.89356525614858,-63.93040074966848,-64.15692790364847,-63.42918492620811,-62.512966798618436,-62.558874303940684,-61.60195292998105,-61.140907916706055,-61.22287521511316,-60.75317074311897,-59.89603203255683,-59.439894173294306,-60.384050149004906,-59.816327042877674,-58.94185314606875,-58.53985296562314,-58.78293472668156,-58.36095047928393,-58.06205525714904,-57.58691180823371,-57.35792674263939,-58.29732224345207,-57.36956557352096,-57.116423591040075,-56.7104161423631,-56.43952523265034,-56.0433469703421,-55.57563391700387,-55.290574240963906,-55.837761372327805,-55.729150098748505,-55.82242922624573,-55.48592442739755,-54.98996224440634,-54.595218024682254,-54.52863128995523,-53.77373127033934,-53.42100363550708,-52.71896811434999,-51.832709301728755,-52.236243875697255,-53.15682781627402,-54.10740963136777,-54.54294111113995,-53.852765505667776,-53.638516913633794,-53.39035161258653,-53.321293365675956,-52.76073611015454,-52.594717133790255,-52.80498038884252,-53.71831775922328,-54.65719066513702,-55.049249480478466,-55.86327796848491,-55.96119849104434,-56.67544503323734,-55.90522698825225,-56.03336350340396,-55.82306541129947,-55.867097629234195,-55.19378003850579,-55.99545379821211,-55.11622628290206,-55.25952220894396,-55.78147525945678,-55.986898763570935,-55.92023663641885,-56.62138120504096,-56.22220837743953,-56.784428677055985,-57.043033096473664,-56.53875432070345,-55.90506340749562,-55.36974288057536,-56.0674039949663,-55.64868549769744,-55.60509423818439,-56.43048728676513,-56.780561541207135,-57.287514813710004,-56.78190287668258,-55.99495194805786,-55.835461222101,-54.93952140165493,-55.20551475137472,-55.425295574590564,-55.81310802651569,-56.73392010247335,-55.990462735295296,-55.42409133538604,-55.26226012920961,-55.80252673570067,-55.576026355847716,-55.53356497222558,-55.635172196663916,-55.57118797581643,-55.90497156698257,-56.76744112698361,-56.86146953655407,-56.36208939831704,-57.03461849829182,-57.809368249960244,-58.6023508827202,-58.01860138447955,-58.14072847692296,-58.88868879666552,-59.111133731901646,-58.97470153681934,-58.54201574670151,-59.051761294249445,-59.86156114330515,-60.18970309430733,-59.85341617139056,-59.5707151000388,-59.64415066828951,-59.696805539075285,-60.28407902736217,-60.98656748840585,-61.53328007273376,-60.69687746744603,-60.82216308871284,-61.015977101400495,-61.86150225671008,-61.46495370520279,-61.93501971196383,-61.98448439501226,-62.73921765340492,-62.76557009294629,-63.612465833779424,-63.525258710142225,-63.13374219182879,-63.39186305832118,-64.24111181404442,-65.02471627481282,-65.80582103226334,-65.74074382148683,-65.32498890999705,-64.71425582515076,-65.11318011023104,-64.56766837416217,-64.4078531935811,-65.14398005977273,-65.35790394572541,-65.210319862701,-65.94753630831838,-66.18252587039024,-67.01519426424056,-66.2183041041717,-65.87423935625702,-66.45915486104786,-66.30463921045884,-66.25507531827316,-66.89831408765167,-67.64452388044447,-67.36925701843575,-66.67758740670979,-66.57619567634538,-66.10688850656152,-66.08180968184024,-65.2542182165198,-65.07665332918987,-64.66857861122116,-65.46025026310235,-65.87699093250558,-65.99117478448898,-65.69901601271704,-66.02394870622084,-65.3372243270278,-66.22697520721704,-66.98683697264642,-66.94073252566159,-67.34124948270619,-68.09433103352785,-67.69323440687731,-68.36907138908282,-67.51214555837214,-66.76084003131837,-66.69960179924965,-66.10472436342388,-66.24699813360348,-65.91067914618179,-65.85241701547056,-66.0650563784875,-65.47488337988034,-66.29576943116263,-65.36431970028207,-65.41279348079115,-66.32756498176605,-66.59434150811285,-66.62750052474439,-65.79981139302254,-65.76223296485841,-66.26414622692391,-67.15124223474413,-67.10659131594002,-67.72668678127229,-68.22741472534835,-68.96748921368271,-69.27635536016896,-69.17009312333539,-69.46567641571164,-70.22403577156365,-71.10146702034399,-71.12939500669017,-71.91607090923935,-71.40827767411247,-71.79712056647986,-72.5455271541141,-73.48425372829661,-74.35219059186056,-74.40181072987616,-74.68101204140112,-74.75467671453953,-74.46972563350573,-73.53845075750723,-73.94251874182373,-74.88506928971037,-74.1524766520597,-74.72609649738297,-75.18571197194979,-75.90503406245261,-76.04503122065216,-76.54222124349326,-75.68833427876234,-76.14798427512869,-75.35450909286737,-75.67923303227872,-75.6921781883575,-75.19891726830974,-75.25558219989762,-75.71115364460275,-75.67422739276662,-76.35829063970596,-76.14925975166261,-75.91853178478777,-75.89664716692641,-74.99545299215242,-75.86540487920865,-76.37632826250046,-77.0219473647885,-77.8087265859358,-77.16455282317474,-76.61845091916621,-77.14495067717507,-76.62255677394569,-75.95829317625612,-74.99044149136171,-74.00565987592563,-74.87349703535438,-74.78599475743249,-74.55266142403707,-75.17592299170792,-75.87779874028638,-76.76027836184949,-77.58093141252175,-77.95384436054155,-77.46199070615694,-77.63055259780958,-78.48583765747026,-78.38331179087982,-78.26988992327824,-79.13718221336603,-79.53972268244252,-79.19203305244446,-78.92348613264039,-78.85612666700035,-78.20330729149282,-78.41165885096416,-77.9076902512461,-78.75409749755636,-78.73750961385667,-79.19540150649846,-80.18744003027678,-80.50987847009674,-80.46908153733239,-81.00423857429996,-81.7855637841858,-82.33885606378317,-81.93071422493085,-81.00220145098865,-81.59783470444381,-82.48579664109275,-83.10105327097699,-82.36990697914734,-81.53544046450406,-81.3407383505255,-80.39178392430767,-81.22477141860873,-81.68165708240122,-81.28551744949073,-80.3826749753207,-80.95690889656544,-81.77544296672568,-82.11723677720875,-81.82916269078851,-82.4502229001373,-83.10137273045257,-84.0775728826411,-83.41429448267445,-82.82355904346332,-83.71544269891456,-84.03295207582414,-83.15252400329337,-83.00107987364754,-83.0768658448942,-83.05215281294659,-82.43735345033929,-82.02019905811176,-82.75851720571518,-82.35789312282577,-81.5372220100835,-81.2495345454663,-82.09564422117546,-81.3402599315159,-80.56158530013636,-80.5090080681257,-79.64382642693818,-80.02155093522742,-79.71869484195486,-79.62835322646424,-79.49440437043086,-78.55310578877106,-78.41186355985701,-78.97366082994267,-79.23392516653985,-78.6687078862451,-79.09384310245514,-79.7255890192464,-79.2793892128393,-79.1870007016696,-78.95688409358263,-79.91668429970741,-79.82021827902645,-79.210503436625,-79.83884819829836,-79.85923633817583,-80.30393109610304,-79.32068254519254,-80.13456598715857,-80.45707758981735,-80.64393286127597,-80.97943855915219,-81.46431606868282,-81.78025464015082,-81.25064543494955,-81.0056985435076,-80.74522319203243,-81.47214710013941,-81.63857158925384,-82.63422697829083,-81.93662278074771,-81.73908472014591,-82.2268575374037,-82.95203202636912,-82.88284977385774,-83.48839357867837,-83.56685367971659,-83.02031631022692,-83.14930855669081,-82.89939251821488,-82.53860640060157,-82.33565474115312,-83.20658629573882,-82.57188893854618,-82.19217123929411,-82.31913608917966,-81.89937866246328,-81.35155702522025,-81.24860400985926,-80.32605399377644,-80.02834239369258,-79.09304682537913,-80.01226923195645,-80.20065084053203,-79.65832034731284,-79.02357829874381,-78.59476990066469,-77.70260260812938,-78.06518901931122,-77.32160486560315,-77.12932586623356,-77.56184105761349,-77.61997467791662,-77.75546964583918,-78.50549888703972,-78.71281976113096,-78.73898310028017,-78.55597314285114,-79.18036279315129,-79.42813232028857,-79.85292092710733,-80.14246084121987,-79.71022376278415,-80.5320645077154,-80.42020841315389,-81.19602492125705,-82.09253518097103,-81.66712668910623,-82.18466004543006,-81.44707391550764,-82.35190208582208,-81.99210047302768,-81.14508513640612,-80.33735499111935,-80.71723504085094,-80.68663420295343,-80.9088751571253,-80.57428033836186,-80.47061519185081,-80.65863646194339,-81.05880252784118,-80.36121276859194,-80.51512135472149,-80.80975306825712,-81.46949884481728,-81.45634975424036,-81.04591888934374,-80.533178367652,-80.32542871078476,-79.39420987619087,-79.01192482141778,-78.21702881110832,-78.01909167645499,-77.62987440591678,-78.33249934157357,-78.87140021519735,-79.40364778833464,-79.20764677878469,-78.70156214712188,-78.34178724093363,-79.32249052636325,-78.37586546316743,-77.93316320562735,-77.18118897639215,-76.40269229747355,-77.08356913318858,-77.42325098020956,-77.43272294290364,-76.44527496723458,-76.09887880273163,-76.872029050719,-76.66781813371927,-76.79427267750725,-77.44562640739605,-77.91252037743106,-78.74381900858134,-78.28244412271306,-78.1579668968916,-77.75938177248463,-78.6765938512981,-79.39281013514847,-79.20685245422646,-78.84208678686991,-79.70692609390244,-79.07245305273682,-79.84533773967996,-79.55450879316777,-80.00452838465571,-79.92935807490721,-78.93433352047578,-78.4369300995022,-78.34566778875887,-78.96612268313766,-79.2645689919591,-78.93164137471467,-79.71739329304546,-80.6565394969657,-81.04664706345648,-81.51234214706346,-81.22128064464778,-81.52654902683571,-81.48046077881008,-81.70240045851097,-81.30174596048892,-80.70795403188094,-80.94442602386698,-80.76686228532344,-79.86563489725813,-80.50401959521696,-79.72637601476163,-79.62591644702479,-79.81674632336944,-79.28658903948963,-79.1343807503581,-79.66903241025284,-79.81641016993672,-80.05733634298667,-79.25902082119137,-79.82460650848225,-79.0536188823171,-78.20019308431074,-77.9991417452693,-78.79029451310635,-78.28399310354143,-78.24101709527895,-78.23346657585353,-78.2143092751503,-77.72062589041889,-77.3088097483851,-78.24948869319633,-78.64245965098962,-78.24961451534182,-78.38767361454666,-78.48937389161438,-77.95908914506435,-78.82720095152035,-77.98980032652617,-78.8738801535219,-79.09895398421213,-79.5043811663054,-78.63681182125583,-77.9503374537453,-78.40246427850798,-77.88494948949665,-78.02548854518682,-77.66552808508277,-77.66978131327778,-77.53357126424089,-78.06723886169493,-78.78221273329109,-78.76011922489852,-79.23311836272478,-78.72527085989714,-78.54586204281077,-78.68629489932209,-79.43634520797059,-80.01213475409895,-80.19786573480815,-81.05513473460451,-80.868469403591,-81.20932842651382,-82.1425477322191,-82.92766264546663,-82.65156631777063,-83.26697986293584,-83.45863777631894,-84.16401271382347,-83.72983059473336,-84.45236185286194,-85.21929622348398,-84.4659912106581,-84.8160204179585,-84.65895344503224,-85.00958644039929,-85.2207336211577,-85.90057339845225,-85.15532063739374,-85.934286236763,-85.17422490101308,-86.14832398528233,-86.84727636910975,-86.69041121797636,-86.1474768826738,-86.67984090046957,-85.83200210565701,-86.33783147763461,-85.5600826437585,-85.9675174606964,-85.92268715705723,-86.77123678615317,-86.72353317169473,-87.22381920041516,-86.74403171800077,-85.82513831462711,-84.9325624811463,-85.15474394382909,-84.39029325125739,-84.13743695151061,-83.67082069534808,-84.25708406977355,-83.34341783355922,-83.70753046637401,-83.33069137856364,-83.2634097430855,-83.57154023833573,-83.21898262249306,-82.63186415238306,-81.857449835632,-82.25639315554872,-81.34369046334177,-80.70858014840633,-80.0125598362647,-79.82449735887349,-80.41023727785796,-80.983825316187,-81.42615173850209,-80.50534450542182,-79.60718199284747,-78.78202820615843,-79.38999743480235,-79.04203445184976,-78.26258721807972,-78.95166419167072,-79.7546022189781,-79.97595802508295,-79.09176502376795,-78.23237349418923,-77.4283808125183,-77.75214996142313,-77.74184863548726,-76.74538877280429,-76.97059435816482,-76.71121720550582,-76.68167771492153,-76.28673623222858,-76.32742410106584,-75.36058804765344,-74.80956789199263,-73.88384384475648,-74.12127578491345,-74.36397650651634,-73.44713648688048,-74.44272333662957,-74.15146380383521,-73.28110125707462,-74.10462063690647,-73.83375170547515,-73.79096341785043,-73.21486780652776,-73.78948401659727,-73.52447402337566,-73.38486926909536,-74.00129566341639,-74.53427688451484,-74.70759710390121,-75.58495394233614,-76.39661203650758,-76.22430832823738,-75.27649864507839,-75.2412784434855,-75.51052463008091,-74.65297717601061,-73.87055276148021,-74.71590981446207,-75.29479711549357,-74.63403602875769,-73.68766970420256,-72.96956069814041,-72.60211777919903,-72.81858031544834,-72.47217507241294,-72.79824193753302,-73.36811934038997,-72.71645469684154,-73.44917158177122,-73.60921277152374,-73.56003579962999,-72.95337240351364,-72.30199803085998,-73.24649069271982,-72.77874272456393,-72.0805859467946,-73.05138141661882,-73.57135622855276,-73.98554145731032,-74.89605010394007,-74.4767229645513,-73.74262565281242,-74.55629797512665,-75.05803336389363,-75.46508298348635,-74.57867304282263,-73.6196615616791,-74.00684989895672,-73.55590034928173,-73.05851929960772,-73.47638659505174,-73.82259448757395,-73.29096331307665,-73.04023861186579,-73.71955604013056,-73.6510162614286,-72.79379496211186,-72.05545646697283,-72.85409479541704,-72.38263393426314,-72.19107290450484,-71.55551678268239,-71.35231567826122,-71.34592489572242,-72.27606116235256,-71.49419197672978,-71.09406532812864,-71.55772743886337,-70.7952085910365,-71.66352654062212,-72.62189231440425,-71.9254462486133,-70.9664157461375,-71.79961781902239,-71.18026763293892,-70.57049081847072,-70.20255760429427,-71.00500617874786,-71.99486009031534,-72.67703280318528,-72.95687405392528,-71.9813593858853,-71.07496279105544,-71.04831826360896,-71.7030908796005,-72.39672567183152,-71.7071574809961,-70.98252877686173,-71.05172647489235,-71.97625208646059,-72.8659195988439,-73.6419423990883,-72.92465906776488,-72.05456678988412,-71.95678260643035,-72.18999258521944,-72.01730077993125,-71.74371703621,-71.48879286600277,-70.5167857860215,-69.93286306457594,-70.47875857260078,-69.77800628449768,-68.95463313534856,-69.94320882670581,-69.44587626447901,-69.53500574175268,-69.47457510046661,-68.84635217301548,-68.3096326268278,-68.41979469358921,-68.45775169273838,-68.70342064695433,-69.6966900266707,-70.48549657640979,-69.73710554419085,-68.96539397817105,-68.19497654819861,-68.93268655752763,-68.03727205330506,-67.19524496886879,-67.87197936885059,-68.56856517447159,-69.50626291334629,-69.77714844606817,-69.51758571946993,-69.33819311205298,-70.10896056052297,-69.73559093987569,-68.96394009003416,-68.43657909100875,-67.86798075167462,-68.62582264002413,-68.40333834150806,-67.84720371942967,-68.66249449411407,-68.4510277332738,-67.89073144691065,-68.4096453958191,-67.89035891834646,-68.17776079149917,-68.04243052285165,-68.34260892495513,-68.54534423397854,-69.27744083711877,-68.32692243764177,-68.1859590774402,-69.04770236462355,-69.25096571538597,-70.15714571205899,-69.97562979860231,-69.6838894742541,-70.3124960497953,-70.00758966663852,-70.38202183740214,-70.36971441935748,-70.88227773224935,-70.15828516613692,-69.36736984737217,-69.7977291434072,-69.11216060584411,-69.71013920428231,-69.1693848897703,-68.92057882854715,-69.8671908788383,-69.4568027225323,-69.8831490543671,-70.10613815067336,-70.93233592947945,-70.90425067441538,-70.32907449267805,-69.85908606695011,-68.95372023247182,-68.43782980786636,-68.90990808978677,-69.69502890342847,-68.95327322557569,-69.48219627141953,-68.64903513342142,-68.02274276362732,-67.74997970787808,-68.69399512698874,-67.93623176356778,-68.59810716379434,-68.59641517652199,-69.50718550337479,-68.84567490685731,-69.05790315801278,-69.96483435342088,-69.09542499994859,-69.00435664504766,-69.44117741147056,-68.45950071699917,-68.58796268701553,-68.46032705204561,-67.733415923547,-68.38677279371768,-69.13976831873879,-69.02545505901799,-68.47020877990872,-68.17735040420666,-68.86659243609756,-69.73658394254744,-70.41802088171244,-69.7672348790802,-68.83460948988795,-69.00133731402457,-69.44101030100137,-69.46964966552332,-69.3543151896447,-68.72370560327545,-68.05002734391019,-67.74789213156328,-68.69640671648085,-67.81263770814985,-68.02857520803809,-67.04420516081154,-66.13240315485746,-65.825244884938,-64.86001716647297,-65.72745204903185,-65.6904540779069,-66.46220139088109,-67.42957528075203,-67.01722439797595,-67.7220685663633,-68.59734515240416,-68.71325512556359,-68.78156570298597,-68.03464788896963,-68.6009949510917,-69.2111402368173,-69.30544746434316,-69.36396677233279,-68.62325314059854,-68.81595341023058,-68.65739302244037,-69.36847812123597,-69.17494265688583,-69.03621817054227,-68.9039790830575,-68.8164765490219,-69.14967816881835,-69.18146219663322,-68.5463524274528,-68.73258107714355,-68.02921972889453,-68.76600761478767,-68.69851366989315,-68.41318109165877,-68.2599926488474,-68.12537072738633,-68.61446128506213,-68.91714566992596,-68.85331322159618,-68.97275832574815,-68.3169951713644,-67.65364004578441,-68.4673135378398,-69.44632763694972,-69.1707823141478,-68.45563356764615,-69.36238348297775,-68.68196117505431,-68.55782099161297,-69.29472792660818,-68.43680558633059,-67.55791765358299,-66.61611549044028,-67.47657501604408,-67.97328753722832,-67.46555859455839,-67.69183203345165,-67.1177949574776,-66.83743505040184,-67.63387239538133,-67.32036395277828,-66.52602365426719,-65.93566224072129,-65.18569886637852,-64.53317896369845,-65.421990390867,-66.03223841870204,-66.39041784778237,-66.25596617534757,-65.92001487268135,-66.50596452271566,-66.85672263242304,-66.82197179738432,-65.83141284296289,-65.8149718050845,-66.51069153891876,-67.22303927829489,-67.55235019046813,-67.08069893391803,-66.70065028080717,-66.30896377097815,-66.0385600766167,-65.38889388833195,-65.07532265968621,-64.94686809834093,-64.11128570698202,-63.40818623825908,-62.871396246831864,-62.57524024276063,-63.51160767581314,-64.35521265072748,-63.965795351658016,-63.92360414005816,-64.63116915430874,-64.29706809064373,-64.41823792969808,-65.2564136562869,-65.44455438759178,-66.4382132999599,-67.12456028070301,-66.82979136891663,-66.10482732346281,-66.31365629285574,-65.41520074848086,-66.34235022589564,-65.47416384145617,-65.31843980913982,-66.05308576812968,-65.06451967265457,-65.63448080280796,-66.18494022684172,-65.84601871296763,-66.26412924192846,-66.8126271176152,-67.3486606925726,-66.71737690968439,-66.28448192588985,-66.89800542406738,-66.70829157717526,-67.34154065651819,-67.81017416389659,-67.29714032635093,-67.81344877183437,-67.44516532961279,-68.10363645851612,-67.28240543743595,-66.39916945248842,-65.64639010094106,-66.5084044104442,-66.48194565437734,-65.48633643286303,-65.78457710985094,-66.04589796299115,-66.2256061239168,-65.63639574730769,-64.9038183609955,-63.9809338231571,-64.08716207183897,-63.481698263436556,-63.517599848564714,-63.7921228739433,-62.988330708350986,-63.35179515136406,-63.90767187671736,-63.618306146003306,-62.71678538620472,-62.81789959780872,-63.69503754051402,-64.35777791822329,-64.81376682361588,-65.0571343563497,-65.15427700290456,-65.00706905173138,-65.30418074782938,-64.83691503154114,-64.90482079889625,-64.57665103534237,-63.96924036368728,-63.91470533981919,-64.41997434245422,-64.75897673331201,-63.7950246790424,-64.57419598847628,-65.2765619433485,-65.27263865526766,-65.4664048650302,-65.83555785100907,-66.51366143487394,-66.80222867894918,-66.83774353237823,-65.98405819758773,-65.76636249665171,-66.5114325187169,-66.67419989826158,-65.93524396279827,-65.52005276549608,-65.4534285319969,-64.91125377593562,-65.25780989835039,-65.82402142509818,-66.51922824885696,-67.48388475365937,-67.14184196200222,-68.07906218711287,-67.78517474606633,-67.45914564374834,-68.30445773573592,-69.27172101009637,-69.70540482597426,-70.5036521749571,-70.75585081707686,-70.93717907136306,-71.37748621311039,-71.78375301137567,-71.4625761215575,-71.18804703047499,-71.71543084038422,-71.72087630489841,-71.29210722632706,-71.7638813094236,-72.59055583458394,-72.85867960005999,-72.10754288965836,-73.02434505382553,-72.99841285962611,-72.92127165850252,-73.2053510104306,-73.91112666763365,-73.09325646515936,-73.48289240663871,-72.99777333252132,-72.53066842351109,-71.74534591613337,-71.98923317249864,-71.36225157324225,-71.90641306573525,-72.5152613800019,-71.73562350450084,-71.6125649237074,-72.41082876781002,-72.63749731797725,-72.02917339093983,-72.06108164833859,-71.47095727780834,-70.62134417006746,-71.47920180857182,-70.6511867721565,-71.14161899499595,-70.23293325444683,-69.84766131499782,-70.45951156131923,-71.35278533631936,-71.53275724919513,-70.97221019119024,-71.41707117902115,-71.87392469868064,-71.1038967706263,-72.0267652948387,-71.88234802614897,-72.07830826984718,-71.56264953128994,-70.69626401877031,-71.021611191798,-70.95974364737049,-70.73285274999216,-71.57813742756844,-71.80923109641299,-71.18588511645794,-71.29784272098914,-72.19304414931685,-71.341109726578,-70.91977440705523,-70.23666745517403,-70.39205847121775,-69.5067107998766,-68.7606569682248,-67.99106468074024,-68.30351115204394,-68.0285940663889,-67.7623922675848,-67.35713513102382,-67.60170243028551,-67.68058867473155,-68.52475975314155,-67.73699839692563,-68.71653265645728,-69.32991034863517,-68.8743210262619,-68.40814064489678,-68.5179992010817,-68.02935622353107,-67.75416559353471,-68.01859741145745,-67.11119513446465,-67.4415741157718,-67.62654520804062,-67.32424598094076,-67.07201314577833,-67.89397995220497,-67.67884951084852,-66.74567015608773,-66.77047955198213,-67.68527669226751,-68.13074604189023,-68.54089703503996,-69.0904933330603,-69.04660240700468,-68.79316394776106,-69.12332194577903,-69.22685776697472,-69.15000133123249,-68.87461510440335,-69.05575408507138,-69.07713674241677,-69.26107275346294,-69.61303244624287,-69.89653292438015,-69.3615141552873,-69.8658037991263,-69.47814360773191,-69.36281255772337,-69.58790421066806,-68.69966452661902,-69.15122976247221,-68.36742794327438,-67.38958371803164,-66.52050287555903,-67.50891280872747,-67.21884463867173,-67.1019317661412,-66.81414417503402,-66.320866541937,-66.87110873032361,-67.71232882840559,-67.50027437787503,-67.42305495031178,-68.20304655842483,-67.68833315419033,-67.89341547572985,-66.94618202466518,-65.97430675523356,-66.76306385081261,-66.90224359976128,-66.59457896649837,-65.65919777005911,-65.88135769777,-65.60156683949754,-66.57206839555874,-66.28934101713821,-66.76488533243537,-67.09033138304949,-66.60148411011323,-65.65263302763924,-66.09072530269623,-65.27477119117975,-65.90069952234626,-65.61311013251543,-65.16489659668878,-66.07280008960515,-66.4680748814717,-67.00207689963281,-66.623083433602,-66.75536131719127,-66.44355469150469,-67.15614267904311,-67.37378557771444,-66.71977013163269,-67.51261557731777,-67.11955947102979,-66.6248236745596,-67.35152403684333,-67.58961446210742,-67.04663489758968,-66.81839579483494,-66.70307104103267,-67.24706822168082,-66.46082234103233,-66.9861262193881,-66.47130029462278,-66.92298415955156,-67.58012917498127,-68.1212117173709,-67.92334751738235,-67.12657684832811,-66.4490992501378,-66.24908872041851,-65.51995615242049,-65.42975851986557,-65.7010479029268,-64.78681049030274,-65.67100733472034,-66.66666853474453,-66.44008937710896,-66.53056657221168,-65.7348106703721,-66.44348646933213,-65.46612145425752,-65.91648571100086,-65.78847499936819,-65.53991258703172,-64.74401364801452,-65.70699946768582,-65.73209478659555,-64.74477977957577,-65.00976636819541,-64.24752634903416,-64.69361533829942,-65.17033925838768,-65.79915691027418,-66.1078803697601,-66.77823872957379,-65.8432019003667,-66.39224054757506,-66.73268054239452,-66.2208420089446,-66.7356502157636,-66.82288840645924,-67.44597639050335,-68.24199304357171,-67.82088596047834,-66.83944341400638,-66.09164056414738,-66.66167184105143,-65.72773739183322,-66.58823704533279,-66.41720316978171,-66.09724830416963,-65.45172285102308,-65.66751407645643,-64.68413580488414,-65.44292722037062,-65.91711003519595,-66.57239883905277,-65.93860382353887,-66.18825619621202,-66.5737442583777,-65.77512362319976,-65.53180205496028,-66.14028024533764,-65.22213287791237,-66.21967416908592,-66.87328159157187,-66.28981092432514,-66.49095269944519,-65.78418729454279,-66.41189718339592,-66.87496002949774,-66.43589680083096,-66.27105129649863,-65.28650602092966,-64.47123709926382,-65.25822200905532,-65.30507487384602,-65.77376370877028,-66.65087952744216,-66.98173938784748,-67.05930602550507,-66.81498991837725,-67.52861430542544,-68.4502223697491,-68.98191048111767,-69.5330394282937,-68.7875253437087,-68.18399673467502,-67.25388804171234,-67.8326984369196,-68.0572516405955,-68.98678907006979,-68.28250164026394,-67.54129464318976,-67.14812231622636,-67.48583295755088,-66.93339856574312,-66.81046738568693,-66.30576188117266,-66.90378755703568,-65.93601042730734,-65.92896330682561,-66.45785418292508,-66.10173655534163,-66.10020624939352,-65.3012439692393,-66.29405092215165,-66.13015145156533,-65.82579134358093,-66.26573250629008,-66.39831690816209,-66.4549591653049,-66.70124029926956,-66.1959268534556,-67.04162221541628,-66.44427112396806,-66.70453495159745,-67.10655425162986,-66.94141682377085,-66.11042221821845,-65.29541070619598,-64.5858995472081,-63.77087269630283,-63.42584143625572,-63.560801482293755,-63.12521935906261,-63.49220164120197,-63.858453723602,-63.018659700173885,-64.01496931444854,-63.972488953731954,-63.225311008282006,-63.445856044534594,-63.42592433420941,-64.21399720944464,-63.83408773643896,-63.691048961132765,-63.20324419485405,-62.434155168011785,-61.693350065499544,-62.04991518938914,-62.88599569397047,-63.5197275034152,-63.81085571553558,-63.20557225961238,-62.94996082922444,-63.08854475291446,-63.358475566376,-64.06690891087055,-64.87674722401425,-65.19524568738416,-64.90538635803387,-64.01582413958386,-64.03444421757013,-64.1301334691234,-65.07853644806892,-64.53296589013189,-65.43977678613737,-65.59343414613977,-65.19495218480006,-65.61623199284077,-65.91607688833028,-64.98156606545672,-65.21549399523064,-66.20055832900107,-67.14944302802905,-67.90515685779974,-68.00602835835889,-67.61823558853939,-66.66821316257119,-66.39751049224287,-66.55315690487623,-67.40086187142879,-67.73604702576995,-67.61806855397299,-67.06662086304277,-66.15062788268551,-65.40347408922389,-64.46866663591936,-63.6935897837393,-64.64754156023264,-65.46340161329135,-65.1736901444383,-64.88849315606058,-64.93376461835578,-64.93243761966005,-65.37512187100947,-65.61577791534364,-65.50180436531082,-65.26199352508411,-65.05144340358675,-65.4124184474349,-66.01925916457549,-67.0181658519432,-66.2911844807677,-65.3734231730923,-65.70439761970192,-65.62415550742298,-65.76967674400657,-65.96939068753272,-66.93757044430822,-67.33758190320805,-67.4978823242709,-67.68341269111261,-67.4314940306358,-67.84494874626398,-68.09652600390837,-68.02659548586234,-68.81754984520376,-69.15783658716828,-69.4876849912107,-69.00322193698958,-68.70893007563427,-68.23982423683628,-68.80623696837574,-69.28476130450144,-69.75901464372873,-69.77843109052628,-69.95700536342338,-69.614312983118,-68.8394206580706,-69.31624394003302,-70.17625729786232,-69.56502783764154,-68.87741147819906,-68.57670164760202,-67.864251349587,-66.97205479349941,-66.38770512584597,-65.94694497063756,-65.57504273857921,-66.1702418369241,-65.77497914014384,-65.23606104589999,-65.11202049255371,-64.8651895755902,-65.28888706211,-65.87763871066272,-65.20202423771843,-65.08419121196494,-64.68635817430913,-64.16815081983805,-64.7998952139169,-64.84209208050743,-64.99709535622969,-65.59099530382082,-65.79931443277746,-65.89769495045766,-65.80394286243245,-66.51637502061203,-67.47996240993962,-67.43941227020696,-66.5365134300664,-65.58084096945822,-66.14175234222785,-65.51421093102545,-65.91571795055643,-66.0532817482017,-65.13577632466331,-65.8791464860551,-65.07536487653852,-64.44022124400362,-63.47100202785805,-64.03055505035445,-64.7473715194501,-65.08019933057949,-64.82596851419657,-65.27532697236165,-64.52500204974785,-63.92034161277115,-63.69430885370821,-63.029407664667815,-63.666145623195916,-63.92133056605235,-63.77607886726037,-64.52031957125291,-64.6286567565985,-65.04858513781801,-64.30863001802936,-63.78550277277827,-63.16301281563938,-62.448373129125684,-61.4776153890416,-60.96397630823776,-61.53980755480006,-61.518571896944195,-61.242254107724875,-61.49569988390431,-62.14747922355309,-62.727118151728064,-62.98287122603506,-63.72687222622335,-64.44526310404763,-64.74830983951688,-63.94462083512917,-63.23292573913932,-62.2948379018344,-62.834725787863135,-62.61035255715251,-61.70984835969284,-62.34578715311363,-61.780015224125236,-62.573334477841854,-62.287522204220295,-62.098561686463654,-62.69941565115005,-62.47348925052211,-62.27382673416287,-61.6804230697453,-60.909931528382,-60.045365697238594,-60.08491931669414,-60.73500650096685,-59.971672918181866,-59.71795862540603,-60.480860725510865,-60.16671686805785,-61.1651349728927,-61.73247381672263,-60.93988972855732,-60.42563466262072,-61.20568116614595,-61.64802310289815,-60.826920490246266,-61.29634645301849,-60.94426364265382,-61.09170163003728,-61.341491982806474,-61.028239437844604,-61.9351959573105,-62.78699902864173,-61.8547769151628,-62.34141765534878,-62.35401466721669,-62.98799590859562,-62.49084535706788,-61.640919170342386,-61.40964566357434,-60.63212137809023,-60.14154821680859,-59.52466831821948,-59.14760189736262,-58.33510836074129,-59.26746191782877,-59.678795482032,-59.1192340827547,-59.114153758157045,-59.2278040391393,-58.31913866056129,-58.501953506376594,-58.92750998074189,-58.73030127445236,-57.93639046512544,-58.49678725190461,-58.10335682099685,-58.72510377969593,-57.83767062285915,-58.74966959049925,-58.74361747642979,-59.42833209969103,-60.10171562153846,-59.7658328958787,-59.25372587842867,-59.842931031249464,-59.41988638881594,-59.713809749577194,-58.78096079034731,-59.502841741312295,-59.14654847048223,-59.021397376433015,-59.81033081514761,-60.37564197694883,-59.92224638257176,-60.55880694324151,-60.50681773945689,-59.65817247657105,-60.36522451881319,-59.404813456349075,-59.918888424988836,-60.78562425589189,-59.883984729181975,-59.13443874474615,-58.18160928366706,-59.06399179250002,-58.224808659404516,-57.50433912221342,-56.882982137613,-56.61488150525838,-56.423941659741104,-56.3399802884087,-56.97707418259233,-57.436241863295436,-58.408765089698136,-57.83589137298986,-58.16466900380328,-57.69121697777882,-58.59272610582411,-59.07609522668645,-58.418068166822195,-58.995150859467685,-59.08446972584352,-59.79851805884391,-60.30785152129829,-60.915211794897914,-60.66147155407816,-60.801818458829075,-60.15312437945977,-60.65311769628897,-60.15234503522515,-59.24572835629806,-60.15086302207783,-59.67855610791594,-59.51900885440409,-59.344120039604604,-58.871779365930706,-58.034488417673856,-57.760914764367044,-57.069228956941515,-56.85686044674367,-57.28100018855184,-56.865358476527035,-57.31608402635902,-57.98156059393659,-57.73543713148683,-58.705427303910255,-59.00764945708215,-58.96976121235639,-58.3501991648227,-57.59571587573737,-56.65832845168188,-56.06507316743955,-57.033209322951734,-57.082225513178855,-56.292007602285594,-56.97917086072266,-57.078225180506706,-57.4460239415057,-57.673898661043495,-57.82199589861557,-57.2634372417815,-57.4406292126514,-58.017669492866844,-57.397404588758945,-56.612647973932326,-57.025508753955364,-57.428256975486875,-56.54887410160154,-56.085646810010076,-56.59949057083577,-56.02530642412603,-56.44280660524964,-55.74769951123744,-56.33718932280317,-56.27148567838594,-56.82460220390931,-57.42780162533745,-57.013977128081024,-56.65239467145875,-57.043817959260195,-56.0532436282374,-55.56500015407801,-55.84578592795879,-55.82195258885622,-56.48457272909582,-56.76137908594683,-56.36045496445149,-55.97574617154896,-56.83831349480897,-57.008566240314394,-57.09970013704151,-56.319017165806144,-56.3880330612883,-57.033157823607326,-57.86261345818639,-58.40965449810028,-57.52767758490518,-58.29172970727086,-57.32534421375021,-57.540705311112106,-57.84185660770163,-58.65561897540465,-58.41757767833769,-59.397977421525866,-58.758648302871734,-59.05394948925823,-58.60083344345912,-58.64242373686284,-59.46928975125775,-58.82930046087131,-59.6544696316123,-60.298626818694174,-59.60349952848628,-59.61146035743877,-60.31189315021038,-61.22005138639361,-60.820037660654634,-60.65858289087191,-59.880754487589,-59.34854938648641,-60.17843648325652,-59.467724153306335,-59.52853819169104,-59.83578912029043,-59.62286057928577,-60.35013236803934,-61.23583761835471,-60.43944958457723,-60.51681328751147,-61.083697331137955,-60.89666931331158,-60.474176078569144,-59.67488837847486,-60.38206178834662,-60.958019704092294,-61.05596014438197,-60.458824187051505,-59.732962439768016,-59.29913230985403,-58.39761257590726,-59.263383850455284,-58.50154744787142,-58.50155339716002,-58.596260173246264,-58.7599507891573,-57.83341341139749,-57.88103783596307,-57.700746554881334,-58.00584699166939,-58.50418033869937,-57.667585467454046,-57.12837386224419,-57.16381599055603,-56.42121883574873,-56.95567989861593,-57.42587191192433,-58.33587652398273,-58.3339876960963,-58.63126592291519,-57.990874054376036,-57.65190781187266,-57.32323683658615,-57.66518461331725,-56.77143879560754,-57.673095462843776,-57.626034177839756,-57.50450311647728,-57.98625134630129,-58.170783028006554,-57.961745338048786,-58.954592479392886,-59.80500947823748,-59.63920777570456,-59.846998820547014,-59.449255720712245,-60.360565171111375,-60.46505223121494,-59.75466876802966,-59.88061146205291,-60.83373229345307,-60.829844393301755,-61.368795891758054,-61.84528396325186,-61.652591929305345,-61.00450122822076,-61.89317918848246,-62.61313712829724,-62.329161162953824,-62.26435450837016,-61.392833260353655,-61.142736496869475,-60.42496276181191,-59.663311964832246,-59.40755177754909,-59.80349712818861,-59.28431723918766,-58.86072404496372,-58.66692894557491,-59.048582864459604,-58.287349958438426,-57.30345604382455,-57.919407365843654,-58.65564142353833,-57.956413579173386,-58.605784439947456,-58.56376039516181,-59.5153383994475,-58.81728660967201,-59.27745325118303,-58.58660658588633,-58.80894847866148,-58.27089168410748,-58.06897727539763,-58.981132289394736,-59.80210527451709,-60.52284955652431,-59.64767389651388,-58.925388891715556,-58.56698033865541,-58.935706546064466,-58.222872354090214,-57.59846856724471,-58.06954228086397,-57.40048703784123,-57.249299242161214,-56.659033744130284,-56.796440629288554,-56.96103838738054,-56.71491288766265,-56.826868360396475,-57.130968185607344,-57.56877687154338,-58.15367238968611,-57.209249516483396,-57.46800219640136,-56.831927329767495,-57.438214746303856,-57.859083488583565,-57.78109101392329,-57.53764859074727,-57.83067048666999,-57.88749082526192,-58.53628725418821,-58.85113156540319,-59.29699884168804,-58.98965645208955,-59.60547331906855,-60.57806378509849,-59.58868410438299,-60.55137022724375,-60.968839468900114,-61.53611576883122,-62.37582365470007,-62.80649266671389,-61.92915165005252,-61.32602271437645,-61.892444256693125,-61.87278231466189,-61.42295621987432,-60.66716578928754,-61.225764472037554,-60.65888653276488,-60.076077309437096,-60.85581478103995,-60.92143843928352,-60.42197773279622,-60.43320354493335,-59.524475262034684,-60.24436726933345,-59.67086715111509,-58.91101448005065,-58.84665693389252,-59.499340031296015,-58.61826123483479,-59.39505520975217,-58.4516990785487,-58.1688358518295,-58.192406746093184,-57.23465526662767,-56.97703054966405,-57.21143613848835,-57.45050092320889,-57.399585623294115,-56.66982160555199,-57.289396539796144,-58.134790651034564,-57.57488940982148,-58.101126672234386,-57.429398144595325,-57.04737032670528,-57.3357130154036,-58.17358198482543,-58.990100724156946,-59.14441207656637,-59.609836493153125,-59.87905890494585,-60.67656229902059,-61.38413317035884,-62.006542779970914,-61.05814196495339,-60.834572511259466,-60.791037457529455,-61.12615565024316,-61.10863329935819,-61.296365621034056,-61.57878146227449,-61.66711665224284,-61.94591427361593,-61.77755147824064,-62.21250270633027,-62.186227625235915,-62.437690956983715,-62.498105177655816,-62.603538072668016,-62.69472550274804,-63.265496463514864,-63.09620084660128,-62.45946350740269,-63.05410584434867,-63.73940096888691,-63.7105205594562,-63.55796962743625,-63.43807798670605,-63.25483267148957,-62.37661558855325,-62.46362011739984,-62.23370251385495,-63.222592232283205,-64.06627914868295,-63.853239523246884,-63.017793921753764,-63.613361878320575,-64.29683736618608,-63.854332871735096,-64.1403364543803,-63.799745173193514,-63.60445445589721,-63.11279212636873,-62.70604605553672,-62.030215023085475,-61.20169800380245,-60.25487126130611,-60.59053841792047,-61.12146497517824,-60.449240181129426,-61.074919909238815,-60.68548955442384,-61.36931439349428,-61.756953741423786,-62.18373097060248,-61.55704521480948,-61.99128317972645,-61.52235182374716,-61.89114318275824,-62.865810621064156,-63.77813661796972,-62.86144234938547,-62.890376389957964,-62.742568352259696,-63.32733449758962,-63.37086394801736,-63.64604729041457,-62.703547599725425,-63.49758151592687,-64.00078291352838,-63.67740094847977,-63.13751843525097,-64.10490721277893,-63.75959054147825,-62.820771449711174,-63.78621258633211,-63.23697106773034,-62.79573692008853,-62.16197318537161,-61.39781242981553,-60.751493631862104,-60.596658958122134,-60.0990687366575,-59.89866915298626,-59.16870333021507,-58.36493048770353,-57.78811417147517,-57.216613752767444,-57.02509503858164,-56.599947014357895,-56.38983090640977,-55.78691601380706,-55.01586924074218,-56.009260025341064,-55.95684551913291,-55.61223993310705,-56.55949960183352,-57.31166882114485,-56.794436702970415,-56.39060519868508,-56.0733685484156,-55.26418818719685,-54.34536646679044,-54.05924139684066,-53.16334216017276,-52.47502215206623,-52.6099209766835,-53.22576493071392,-52.60113466065377,-53.33772054314613,-54.22122547542676,-53.59402046725154,-53.64722142042592,-54.18149327579886,-53.488427539821714,-54.032675717025995,-53.50880842283368,-53.98771419050172,-54.18253741739318,-53.19101787172258,-52.39008896937594,-52.57573026791215,-52.18042960809544,-52.73515539942309,-52.55054842121899,-53.26326203998178,-54.191693163476884,-54.03490700293332,-54.928672153968364,-55.64727089321241,-56.205372522585094,-56.168171647470444,-55.55638547753915,-55.74523303285241,-54.806415313854814,-55.136800264474005,-54.52658670023084,-54.86278173932806,-55.16881062882021,-54.47603298118338,-54.37652086932212,-54.626957381144166,-54.540173252578825,-55.10471383528784,-54.92204703297466,-55.06359434267506,-55.45468647964299,-56.04114761110395,-57.01946460315958,-56.240338931791484,-56.35601071175188,-56.985399182420224,-57.89902628585696,-57.821143542416394,-58.698163335677236,-59.10778004815802,-59.833618668839335,-60.1748297275044,-59.43362501915544,-59.79214102867991,-60.64292612019926,-60.18229509703815,-59.67020609555766,-59.70069308159873,-58.98405166203156,-59.473709216341376,-59.30571709154174,-59.92095012869686,-59.89180229883641,-59.959312779828906,-59.492534562479705,-60.46974266087636,-61.33832103945315,-62.09924573684111,-62.534001944586635,-61.97794246673584,-61.32943022111431,-60.9150325525552,-61.35776181425899,-62.00957379117608,-61.23309680726379,-62.131955025717616,-62.83665087772533,-62.97592863254249,-63.80535693047568,-63.57912685535848,-63.499656253959984,-63.49725586967543,-62.58635940030217,-63.41534222336486,-62.91787341609597,-62.47953083179891,-61.75592764886096,-61.923786734230816,-61.89597818767652,-61.94077966129407,-61.42393327783793,-61.735398987773806,-61.6949175670743,-61.613068596459925,-60.82628913689405,-61.17486078012735,-60.57617165474221,-61.2031861403957,-61.075863788835704,-62.063585869036615,-62.34639112651348,-62.722680806182325,-61.75704354280606,-60.80686066579074,-60.58143441332504,-59.68474722560495,-59.76179037429392,-59.74692338751629,-60.0068366760388,-60.82791222631931,-60.00583083694801,-59.765499494969845,-59.729481029789895,-60.39679057570174,-60.500687113497406,-61.02539497427642,-60.949081745930016,-60.92597221117467,-61.49661583593115,-60.57528415834531,-61.485777996946126,-61.85978221567348,-62.858752000611275,-63.26989337056875,-62.98978522839025,-62.19786628289148,-62.17409560736269,-62.63376877922565,-61.93974322779104,-62.189968805294484,-62.98580887913704,-62.63203353062272,-62.344305551145226,-61.344403135124594,-61.163700870238245,-61.88025587517768,-62.21685509197414,-62.81292968522757,-63.31962640117854,-62.966986685525626,-62.86972164688632,-63.85862905206159,-63.095040667336434,-62.94082613661885,-63.891913186293095,-64.11024829978123,-64.91023381659761,-65.33874744083732,-64.87961270613596,-64.44066298753023,-65.31779791833833,-64.37462379550561,-65.2094332757406,-65.45604460313916,-65.94913722807541,-65.53714426187798,-66.31780448788777,-65.89718958968297,-65.4292313712649,-65.98250662069768,-66.05969098163769,-65.94620413985103,-66.12654907954857,-65.4331972966902,-64.60959046846256,-65.33641155948862,-66.02160598989576,-66.63228600658476,-65.94982342189178,-66.39126633713022,-65.39768923027441,-65.92194394487888,-65.33768330560997,-64.74938463140279,-64.89513715123758,-64.14228330971673,-63.23899157065898,-63.566312480252236,-63.71270054159686,-64.1656738743186,-63.469509976916015,-63.41935549816117,-64.25808567367494,-65.12983499187976,-64.23548480356112,-63.89895462989807,-63.64848968107253,-64.11804811330512,-64.56574234645814,-65.45995906786993,-65.9881988489069,-66.132044268772,-65.54931111447513,-64.88706934871152,-64.32398177869618,-64.78085062187165,-64.76377236843109,-64.12625446729362,-64.59091604920104,-64.34702407568693,-64.72277712635696,-64.5372121813707,-65.08849715348333,-64.39942660462111,-63.83867742260918,-64.27574767591432,-63.63982418831438,-64.13829056033865,-65.08007569611073,-64.61652056034654,-64.14075465360656,-64.8487745122984,-65.70757317310199,-65.1427288162522,-65.50937936874107,-65.10068189539015,-65.25558225624263,-65.20967191783711,-64.62608579033986,-64.75857440475374,-65.07142401020974,-66.02779347263277,-66.45179012184963,-66.42488419637084,-66.1665314771235,-66.30870213033631,-66.06598009495065,-65.80988965788856,-65.7373375701718,-65.22613859502599,-65.1859762808308,-65.06350663676858,-65.28815240273252,-65.28256371384487,-64.69275362277403,-64.11846302542835,-63.773636722471565,-62.97438676375896,-62.487390734720975,-63.416424681432545,-63.84899829607457,-63.99973337026313,-64.48270776495337,-64.04422819567844,-63.5887153474614,-63.69729730673134,-64.41429102048278,-63.8470719428733,-64.29861718416214,-65.29222860885784,-64.76256028050557,-65.37277505546808,-65.66314257588238,-64.81525817839429,-64.81053147371858,-65.5898848506622,-66.39767030440271,-66.80494921142235,-67.06869289232418,-67.24310191115364,-67.17288103047758,-67.65254149353132,-67.93723474396393,-68.14222684828565,-67.95915126567706,-67.07793791312724,-66.94462264468893,-66.3085196162574,-66.8435020884499,-66.71100352983922,-66.60976002085954,-66.17666883440688,-65.78055934095755,-66.20633395388722,-65.59713293425739,-65.55903779575601,-65.00813953438774,-64.4799948562868,-64.34642558172345,-64.66504776384681,-65.64317109715194,-66.53127410588786,-67.20170792425051,-68.00525264022872,-68.3765835496597,-69.25526577048004,-68.3573660873808,-68.88935046549886,-68.0514455921948,-67.55602712603286,-67.73054495640099,-67.17403560318053,-66.79377369116992,-66.36585451057181,-66.65388445975259,-66.91654793405905,-67.12948088161647,-67.07600613962859,-66.09264666680247,-65.56288097426295,-65.30093994457275,-65.28411217732355,-65.27973031066358,-65.48234074236825,-64.94390738429502,-64.95496594440192,-65.47910724626854,-64.62837009318173,-65.57452808041126,-65.94974356144667,-65.83872541273013,-65.3754735677503,-66.1100512794219,-65.84949568612501,-66.40884254826233,-66.76412029191852,-67.0547308549285,-66.20181993581355,-65.33864504657686,-66.18912449432537,-65.22869587177411,-65.79346843296662,-66.20099773118272,-65.3820875394158,-66.1512929466553,-65.1772098201327,-66.16535706212744,-65.59969496494159,-66.5951734422706,-66.01248184451833,-66.09393505239859,-66.84996537584811,-65.98537876270711,-66.23740914743394,-66.2064837096259,-65.65341684874147,-66.1261235550046,-65.84336545644328,-64.85708558605984,-64.41996880061924,-64.94063688069582,-64.18090991629288,-64.1775126112625,-63.858335081953555,-63.429267717991024,-63.183892680797726,-63.868356918916106,-63.71096418565139,-62.81368975574151,-63.571432328317314,-63.4768157065846,-64.3303453149274,-64.12190655013546,-64.40915734739974,-64.96012338902801,-65.66602956643328,-65.29471018258482,-65.22347739245743,-65.74551369808614,-64.99157821806148,-64.8611749317497,-65.77921449253336,-65.52160659665242,-64.61415665829554,-64.04745138902217,-64.74112780531868,-64.25800179503858,-63.39864727156237,-63.64996335841715,-63.21115005807951,-64.06412775442004,-63.40634844917804,-62.449337226804346,-63.31134631764144,-64.18896289821714,-64.82343150768429,-64.50373249966651,-64.40836913371459,-64.18541783560067,-64.51680422434583,-64.50819852761924,-63.59195078583434,-63.22519504791126,-63.01036331476644,-63.20399606600404,-63.5766681516543,-63.767887502443045,-64.59797956096008,-65.374132797122,-65.08965333318338,-65.47252738522366,-64.55459451675415,-64.36103790346533,-64.27078237291425,-64.82598864613101,-64.66504109743983,-63.838770747650415,-62.918976730667055,-63.57958609191701,-63.5770462253131,-63.63671901030466,-64.62838464276865,-63.90922500845045,-64.15215210383758,-64.35154541023076,-63.924426851794124,-64.56089902622625,-65.36512152384967,-64.54749082447961,-63.64921944541857,-63.6139108967036,-62.65517998347059,-61.797372938133776,-61.863632349297404,-61.28158027911559,-62.227570151444525,-62.36532536428422,-62.17030912498012,-63.09914941992611,-63.24266342399642,-64.23493341496214,-65.11541902786121,-65.07115982472897,-65.76500117452815,-66.09499696316198,-66.81864665588364,-66.04236871795729,-66.88405346823856,-65.97045187745243,-66.76039168983698,-67.28663999587297,-66.7722976678051,-67.23170370841399,-66.90611141500995,-67.39811515342444,-67.63927539438009,-68.61535343434662,-68.58121424913406,-69.2913703978993,-69.83390605682507,-68.87468685396016,-68.0825458234176,-67.80166309699416,-68.67269187187776,-68.33315519383177,-67.90955116320401,-67.14364391984418,-67.99329304788262,-67.64271723013371,-67.5598773364909,-68.15406578127295,-68.16461730888113,-68.42368518887088,-67.47088323393837,-66.47698942944407,-67.29347643069923,-66.83505026204512,-65.96851094532758,-66.4388559544459,-66.49143058806658,-66.7774113714695,-66.02051244163886,-66.50737010641024,-65.7069214140065,-66.32336973492056,-66.82918357569724,-67.28076476883143,-67.13676274567842,-67.82385459681973,-66.88000534893945,-67.2174661969766,-67.95331404265016,-68.64461472677067,-68.14275174681097,-68.04666204703972,-67.57815993670374,-67.58160684350878,-68.28309756191447,-68.61830963985994,-69.11397285293788,-69.44466542918235,-70.32149420399219,-70.07988287555054,-70.00767682539299,-69.65304538467899,-69.60544674145058,-69.7654533633031,-69.59195371065289,-70.34433851437643,-71.1458952985704,-71.07756097335368,-71.27265409147367,-71.82214848371223,-71.92441567732021,-71.60088875517249,-71.27620011614636,-72.2620503725484,-73.20906381076202,-72.564096508082,-72.1475893012248,-71.33745261235163,-72.19934632629156,-71.83964811405167,-70.84493338456377,-70.18325412925333,-70.39544562110677,-70.52249181875959,-69.84113078610972,-69.24621290666983,-69.92622819915414,-69.35531460307539,-68.4961423673667,-67.84904741542414,-68.39267322933301,-67.47772096656263,-68.04971128096804,-68.17706663161516,-68.40993455192074,-67.78929232805967,-66.87769643682986,-66.16493131313473,-65.59436814300716,-65.26878589997068,-65.51374758360907,-66.2257332270965,-66.5765162082389,-67.15339050348848,-67.96148356376216,-68.54269718937576,-67.89034459553659,-68.50584703590721,-69.00110059417784,-68.41009624954313,-68.71484095556661,-69.33402368193492,-69.39734952989966,-68.46958688180894,-68.80112749245018,-68.62788593303412,-67.92297674529254,-67.81423740601167,-67.52258734591305,-67.04395253537223,-67.03449081256986,-67.94592543924227,-67.25916958646849,-67.86925615230575,-67.56115191848949,-67.42087747855112,-67.93278234964237,-68.46754950936884,-68.80210414528847,-67.97591416910291,-67.82206104928628,-68.54140567965806,-69.25250008190051,-70.07318019773811,-70.8013312201947,-70.96664702659473,-70.93579760333523,-70.38980939146131,-69.7480673068203,-69.90831361757591,-68.9564942670986,-68.29077516915277,-68.79571555647999,-68.03505271160975,-68.26654254132882,-68.52216732082888,-69.28080766182393,-68.52691663848236,-67.84293945413083,-67.51016905764118,-66.97875942010432,-66.5990256452933,-65.8681130995974,-66.78909466974437,-65.78995755780488,-66.5535866538994,-66.57783353468403,-66.68615218345076,-66.25424280297011,-66.8594882292673,-66.91321346582845,-67.61537764873356,-67.13150161830708,-67.53205609181896,-68.22955781500787,-67.92977204266936,-68.60734009370208,-69.30233585089445,-68.9355004010722,-69.76613081153482,-69.98329637898132,-69.14530661003664,-69.01270754868165,-68.10064414376393,-68.37654318334535,-68.09318846231326,-67.58539812732488,-68.0569431730546,-67.33733763033524,-67.13567480444908,-67.06545771053061,-66.40556803904474,-67.11199196148664,-67.25764893973246,-66.79710341989994,-67.04153716051951,-66.30776964034885,-66.5823168870993,-66.39020011620596,-66.43047529971227,-65.94262594683096,-65.39540725946426,-66.08614689577371,-65.9716129032895,-65.70615620352328,-66.15601153252646,-67.04869827628136,-67.7991097215563,-67.82118189521134,-68.57032473664731,-67.61321902088821,-68.57755607599393,-68.80540496204048,-68.63677199883386,-69.182931127958,-68.73030409868807,-69.30584856076166,-69.86703228577971,-69.54150561010465,-68.97258310904726,-69.80236645136029,-70.16800983296707,-69.54654535278678,-68.64817065140232,-68.64370621321723,-67.65196568751708,-67.94239176576957,-67.32281562825665,-67.09449535096064,-67.9236071924679,-67.13825043151155,-67.61462212353945,-68.331327250693,-67.86515529453754,-67.9338352419436,-68.08453948050737,-67.64371303608641,-66.72085804119706,-66.99431031569839,-66.205466626212,-66.8596179485321,-66.92977156024426,-67.61619514087215,-66.94397623930126,-67.52297813771293,-67.32864547986537,-66.35170417046174,-66.06057697581127,-65.18496719235554,-64.23781286738813,-64.16862751729786,-64.75705851381645,-64.37959473812953,-63.84945660410449,-64.59448738163337,-64.12646608473733,-64.00054131448269,-63.39380469080061,-62.664632817264646,-62.870051896665245,-62.93944794824347,-63.12810705695301,-62.46758875157684,-63.03129673888907,-62.445364240556955,-61.7214541034773,-61.50403155758977,-61.184493840206414,-61.30912948353216,-62.03363231755793,-61.8581597507,-61.04625004157424,-60.08435915783048,-60.382193117868155,-60.81492827134207,-61.18378539616242,-61.11807341966778,-60.72540392028168,-59.89990696590394,-59.029621972702444,-58.83161960169673,-59.634956654161215,-58.96351483883336,-59.888956393580884,-59.27709094947204,-59.56405011145398,-60.47202249150723,-60.53996700560674,-60.5932851000689,-60.34654267784208,-59.95632300898433,-60.19003132265061,-59.668358736205846,-59.95457204245031,-60.25678232451901,-60.21735130017623,-60.77202244568616,-60.914006176404655,-60.264365281909704,-61.20100028021261,-61.27314812876284,-61.625568924471736,-61.448860079515725,-62.28373999381438,-62.950540736783296,-62.16913725994527,-61.600031710229814,-61.51908548315987,-61.28016076842323,-61.739933769684285,-60.9372140225023,-60.06792841805145,-59.83510249340907,-59.00573825696483,-59.38673786446452,-59.816342633683234,-60.489310472738,-60.61616584286094,-60.133249876555055,-60.72921447828412,-60.16759889246896,-61.13659598166123,-60.49633304402232,-59.84650886943564,-60.376410379074514,-59.81355784693733,-59.36730735329911,-60.119209699332714,-60.565658676438034,-61.32112373504788,-60.50831311754882,-60.144252877216786,-59.60671197017655,-58.886368217878044,-59.79051793599501,-60.47238378459588,-59.66012204764411,-60.246258882340044,-61.19738125288859,-60.23342344304547,-59.67985683400184,-59.302655598148704,-59.18808408686891,-59.207643879111856,-59.14842262910679,-59.27289169002324,-59.69844165863469,-59.78105529304594,-59.404044286347926,-60.26751969847828,-61.00238611642271,-61.19207315845415,-60.19577189953998,-61.101818000432104,-62.06141958711669,-62.55951587529853,-62.875988700427115,-63.760046186856925,-64.28679787414148,-64.0145717621781,-64.47800254216418,-64.74541878234595,-65.31457107700408,-66.23633576510474,-67.1543192579411,-67.24177606403828,-66.9649302889593,-67.55156966531649,-66.933063340839,-67.41175324982032,-67.48439343553036,-68.35178333939984,-68.79542136378586,-67.95236341748387,-68.91048661759123,-69.59406779147685,-70.01205622265115,-69.77965590870008,-70.13283260120079,-69.89130903128535,-69.09565871255472,-69.7116983695887,-70.20465001370758,-69.59805663861334,-70.32862741826102,-69.56534756859764,-69.94806016655639,-69.46402073418722,-70.12874032836407,-69.25330342492089,-69.44192895945162,-70.38219197560102,-71.28016105201095,-71.8235808070749,-72.77397942682728,-72.1246923385188,-73.06373557355255,-72.61014747014269,-72.21805712068453,-72.33478778135031,-71.7553457277827,-72.71168288728222,-73.32703308435157,-72.93008522922173,-73.17629708256572,-72.88453806191683,-73.46265444532037,-73.92547659901902,-73.0380173153244,-73.62949277414009,-74.00089549645782,-73.62853242224082,-73.17847825959325,-72.42583938734606,-73.13928503915668,-74.06125103030354,-73.95207525696605,-74.43405258562416,-73.48438666202128,-73.91379747074097,-73.03137059649453,-72.06561414385214,-72.04511935263872,-72.54732973594218,-72.69052793737501,-73.2596498215571,-73.41600129846483,-74.38793342886493,-74.7180504752323,-75.14450757717714,-75.58909781603143,-74.76522997161373,-75.67131195403636,-76.63146590720862,-75.7509938320145,-74.87911604298279,-75.86072984570637,-75.25597082963213,-75.44230359559879,-75.13075076881796,-74.86985578201711,-75.51737984456122,-75.82474860502407,-76.62995816860348,-76.79442363558337,-76.84968519723043,-76.10247332416475,-75.27964769117534,-74.82222930388525,-74.5472199972719,-74.36592100048438,-74.53008494107053,-75.30417402274907,-75.1765994396992,-75.79616246931255,-76.55049180798233,-76.96175104472786,-76.64374564960599,-76.479159030132,-76.45083033526316,-75.48405611189082,-75.0271375766024,-74.51544325333089,-73.94439270440489,-74.51289125299081,-75.29492456279695,-75.42558789625764,-75.65321766911075,-75.1335191084072,-76.09873192571104,-75.8980749938637,-76.25778066413477,-76.37463924987242,-76.12472043558955,-76.15725918393582,-75.24998022988439,-75.180489923805,-75.37384762521833,-74.42949816491455,-73.985907681752,-74.29094404308125,-73.86794945085421,-73.57315921643749,-73.0002355617471,-73.56845282576978,-73.24258960224688,-73.33734313910827,-73.81123194145039,-73.62558981124312,-74.4829079080373,-74.83297353284433,-74.84431550931185,-74.196522872895,-74.2585297957994,-75.25027393223718,-74.2620415231213,-74.74285884015262,-75.32590488158166,-76.28138066688552,-76.82752332091331,-76.70738089596853,-76.14528026385233,-75.19218539446592,-75.44074233295396,-74.67494271276519,-74.51045414898545,-73.74324550619349,-73.80549662746489,-74.49858070863411,-74.0150339640677,-74.0473822359927,-73.26457028184086,-72.40282701700926,-72.50514021655545,-72.35917533980682,-71.40387770766392,-70.43980269599706,-69.46556965820491,-69.79813178349286,-70.49776354013011,-70.21943732490763,-69.68531135143712,-69.19878416508436,-69.05434976518154,-68.43795000761747,-68.10702609596774,-68.47570383921266,-67.57259185565636,-67.33068627212197,-66.94512824667618,-66.31286534806713,-66.38187073590234,-65.60660991538316,-65.69419062603265,-64.82681715209037,-64.3213027571328,-65.12214338732883,-65.30660555744544,-64.9429523544386,-64.74907898390666,-65.03622326208279,-65.2622031965293,-65.57107731932774,-66.06133169541135,-65.55098368832842,-65.31390330195427,-65.44591861357912,-64.48716908413917,-64.53364900592715,-63.79549660207704,-64.13958645286039,-64.67518846318126,-65.08111562160775,-65.99770973343402,-66.44444358162582,-67.42352953460068,-66.48190899798647,-66.76340733794495,-66.07304867776111,-65.91617545951158,-65.5485684806481,-65.12340019689873,-65.83869897481054,-65.52344873640686,-65.78582330420613,-65.81225447449833,-65.7355987476185,-65.24722183821723,-64.93647645087913,-65.12825697660446,-65.90521977934986,-65.69564062263817,-66.49707340309396,-66.82105670496821,-67.01610229769722,-67.19557224353775,-68.0328677133657,-68.31107841013,-69.04539391770959,-69.93238777201623,-70.80507977353409,-70.14304484333843,-70.77367282705382,-70.0083091147244,-69.93648082762957,-69.95553696434945,-70.28780898917466,-69.5295124463737,-70.3200426963158,-70.16499097831547,-69.60301432479173,-69.9596385168843,-69.1033458802849,-68.63872956112027,-68.69144669128582,-67.85848307609558,-68.39418763620779,-68.07797806616873,-68.39945381274447,-68.69034736836329,-69.49655397702008,-70.34086616942659,-70.72146401368082,-71.63754942920059,-70.91874200943857,-71.25638087792322,-72.00112414686009,-71.09485911112279,-71.88609886355698,-72.21318793436512,-71.96564619941637,-72.50176603486761,-72.4132498530671,-72.37545264931396,-71.43464380223304,-71.8092695181258,-72.28620322234929,-71.34886528924108,-70.48512457916513,-71.3147322894074,-71.82284987531602,-71.30197497690096,-72.29271298600361,-72.20069402456284,-71.853520097211,-72.01110924314708,-72.55519085889682,-71.7632815008983,-71.3218292905949,-70.77240167884156,-70.85132039524615,-70.63858583802357,-70.9169700499624,-71.17063162242994,-71.80138958618045,-71.90000209538266,-70.97244422603399,-70.83331764675677,-70.39448008220643,-69.67656551720574,-70.51931712031364,-71.09668132197112,-72.04317103838548,-72.55175659712404,-72.56448623491451,-72.7178746694699,-72.54621012881398,-72.3274326720275,-73.1135822776705,-72.91263313684613,-73.58538022451103,-73.79125249711797,-72.91536102071404,-73.37663986207917,-72.52552277222276,-72.68111247057095,-73.4815972498618,-73.09960390394554,-72.32747302763164,-73.18868514755741,-72.3421923336573,-72.6241849786602,-72.33981185639277,-73.01698743877932,-73.50304965069517,-74.25476542953402,-74.67725542420521,-73.81732142250985,-74.48042980954051,-73.825048701372,-74.1468391972594,-73.97472247527912,-73.09067614329979,-72.26819180417806,-72.77190631534904,-72.62350905593485,-72.98142470419407,-73.19199488824233,-73.87145408987999,-73.55849799932912,-73.11881758598611,-73.25375296268612,-72.55844489159063,-72.17456002859399,-72.63929418381304,-71.74964008759707,-71.65400287974626,-71.66981691075489,-71.38196078501642,-72.19777893694118,-72.11212992435321,-72.62763876421377,-71.91705055721104,-71.62220173235983,-72.2809357829392,-72.38115903409198,-72.0685056829825,-72.39065983239561,-72.62524869153276,-72.55945829721168,-72.63280748622492,-73.47667496465147,-73.37197238812223,-73.01328219706193,-72.46388460695744,-71.97755459556356,-72.45987048046663,-73.35205692471936,-72.60601889155805,-72.62718413770199,-72.40677293064073,-71.59545244975016,-71.61475451290607,-70.88368999259546,-71.44644563971087,-71.2997569735162,-71.9823885592632,-71.22439779434353,-71.39540331624448,-70.53965670149773,-70.60664077755064,-71.2062257588841,-71.82726612128317,-72.70733923278749,-72.2612825371325,-72.02577887382358,-72.58242363110185,-72.0138383009471,-71.99392589041963,-71.88917507883161,-71.32995698554441,-70.3728901995346,-70.54910947242752,-71.05939650256187,-70.36732795322314,-70.15492768678814,-70.14413465978578,-71.02021547965705,-70.63954771542922,-69.83262610109523,-70.11414080765098,-69.67146653495729,-70.25628421874717,-69.41401712037623,-69.2460464653559,-70.03783134371042,-70.40902302600443,-70.60321233607829,-70.73248101817444,-70.00739596644416,-70.34701254125684,-71.21973869903013,-71.49546019919217,-71.81889476627111,-71.110190322157,-71.23732468113303,-71.04730481561273,-71.16399266244844,-72.0716716889292,-71.20574331469834,-70.48837078595534,-70.2058101282455,-70.65255000302568,-71.30474016536027,-70.97897342592478,-71.47837158292532,-72.44404026539996,-72.33806572249159,-72.20315376669168,-71.45154117653146,-72.04842810845003,-72.14923645555973,-71.41513765929267,-71.25246819108725,-71.97553561348468,-72.21162503678352,-72.70212086616084,-73.575914778281,-73.82382974307984,-73.36922555183992,-73.94229814829305,-73.86733276722953,-74.5828754613176,-73.7338073165156,-73.26253815134987,-74.08900504373014,-74.83157837716863,-74.26272172154859,-75.25371656613424,-75.35984128713608,-74.87135320156813,-74.97283170558512,-74.4328113431111,-74.52211967017502,-74.781614638865,-74.13015747396275,-75.04234602162614,-75.29511310486123,-74.39389113197103,-74.37036929186434,-73.97673876350746,-73.75554104801267,-74.57069264398888,-74.30525137297809,-73.31554655032232,-72.38830477138981,-72.32663860777393,-73.04020133521408,-72.25646861083806,-72.04300130391493,-72.96318742725998,-73.51960795326158,-72.53316817479208,-72.44234322523698,-71.7715865643695,-70.84834387432784,-70.13481785124168,-69.23972109192982,-70.2346479757689,-71.06562969880179,-71.84498206432909,-71.63487921841443,-72.6249211365357,-72.28542562155053,-71.75463345693424,-71.70681045018137,-70.89221637463197,-71.67150184651837,-71.50953271286562,-71.1088204011321,-71.72556640813127,-70.76966482633725,-70.60141941020265,-70.34738611243665,-70.66876175627112,-69.90079225320369,-69.16252519376576,-69.45507504278794,-70.24860583804548,-69.38956670323387,-69.61257832031697,-69.997219664976,-69.3823541351594,-69.86361457314342,-70.23653653496876,-70.28117164224386,-70.69400268234313,-70.13686989946291,-70.86696204915643,-70.60010153613985,-69.85737413680181,-70.49136078869924,-71.09592109033838,-70.16665039397776,-70.49617632618174,-71.19214609125629,-71.64388845441863,-71.00336228404194,-71.85722622508183,-71.3868431225419,-71.55899254977703,-70.73295584740117,-69.74747086921707,-69.58978938031942,-69.0811822032556,-69.38495963206515,-70.05749156046659,-70.87588887335733,-71.72598376357928,-70.9331837776117,-71.26088677719235,-70.39090000418946,-69.85491104703397,-69.50137727241963,-68.71340260608122,-68.49120121076703,-68.55754562094808,-68.32108954712749,-68.30008922796696,-68.39585800934583,-67.95609945012257,-67.10954836150631,-67.7574657285586,-68.72388732479885,-68.78118566982448,-69.43345834780484,-69.70785763300955,-69.98357769148424,-70.56017877859995,-71.45807882072404,-71.57280914345756,-71.03695968305692,-70.18485607998446,-69.45375222340226,-68.74175375560299,-68.23108012508601,-67.80309141846374,-67.54782582819462,-68.31264964165166,-68.54520017001778,-68.3766241921112,-68.97956986073405,-69.08321969537064,-69.11370350280777,-68.84950467105955,-69.77220483263955,-69.39889189321548,-68.97632966982201,-69.62341631343588,-69.38400713540614,-69.10561448894441,-69.91714190552011,-70.45922171557322,-70.90299219405279,-71.06609293445945,-70.87400513840839,-70.20040166657418,-69.52308409055695,-69.40684713702649,-68.79993913555518,-67.94071265356615,-68.2942870138213,-68.12463469523937,-67.37033173488453,-68.0201703729108,-68.94357709027827,-68.77365042828023,-68.89044157229364,-69.05824343441054,-69.45111551508307,-68.5556529071182,-67.85527907777578,-68.33671108912677,-69.25981216179207,-68.70551391737536,-68.88111050892621,-68.44190383097157,-67.93088284460828,-68.28082250896841,-69.07212212728336,-69.01924651581794,-69.59088372020051,-69.54476411920041,-69.22883493453264,-69.80119178863242,-70.54148063575849,-70.4396544075571,-70.11599029274657,-70.87039074255154,-71.08705750154331,-72.03782277042046,-71.21704980358481,-71.01558767538518,-71.21471263980493,-70.50626708846539,-69.84002317348495,-69.8279937254265,-69.71412970079109,-68.91690901247784,-68.0741304163821,-67.81460249517113,-67.51967499544844,-67.94065003236756,-66.95232432335615,-67.800305405166,-68.1204885658808,-68.53227522829548,-68.51796507276595,-68.94301577936858,-69.07567770639434,-68.33172093005851,-68.99106731917709,-69.51795372134075,-70.31838516984135,-69.34602187201381,-69.74717554356903,-68.79464875627309,-68.71910007111728,-69.05984642216936,-69.40592023869976,-68.42070570029318,-68.57440555933863,-68.88795253681019,-68.57619760837406,-67.68794223247096,-66.99338881717995,-67.50449731992558,-66.93929860787466,-67.56363325053826,-66.9655336253345,-66.301845589187,-66.35821339255199,-66.22802360355854,-65.92653222102672,-65.65998506825417,-66.58582218782976,-65.94330399576575,-66.23954518930987,-66.28818858927116,-65.63283904222772,-65.48982765618712,-64.6748901810497,-64.35647528339177,-64.72940524760634,-63.750923515763134,-63.682236125692725,-64.28407183522359,-63.5093517806381,-63.72024301532656,-64.17937613092363,-64.97738560801372,-64.18772494932637,-64.78000335022807,-64.26914564752951,-64.32006409019232,-64.98948866454884,-64.54853132739663,-64.33656338276342,-65.29067235207185,-64.85734155541286,-64.01165755093098,-64.30528017738834,-65.11475894646719,-65.36349849030375,-65.60240238904953,-66.53820989653468,-66.33593459473923,-65.97590921446681,-66.41740978183225,-66.48523592902347,-67.40607582498342,-67.48256518645212,-68.42687764251605,-68.79275134531781,-68.99238768452778,-69.13099913857877,-69.01773552270606,-68.46825979743153,-68.46473391447216,-68.0657324292697,-67.76673257444054,-67.26955298008397,-67.54766059992835,-68.19247152889147,-69.06511913985014,-69.41076694754884,-68.44040887476876,-68.3047293475829,-68.85594009188935,-69.12253587087616,-69.43578784400597,-69.85308054415509,-69.58645522221923,-68.59172270586714,-67.81988655030727,-68.33510878589004,-69.14795326208696,-68.92727402271703,-68.26907720090821,-68.7924671783112,-67.99575650598854,-67.31868735840544,-66.3368935296312,-66.97460132930428,-66.80948833981529,-66.02987909223884,-66.64712526649237,-67.62420021463186,-68.18311400525272,-68.98380211740732,-68.60826888447627,-67.695825913921,-68.22971542272717,-67.40873003005981,-67.20487043634057,-66.94731253152713,-67.49166823644191,-67.0307235000655,-67.78946907771751,-68.16547324415296,-68.8327235202305,-69.18472900474444,-68.37418908951804,-68.33794250246137,-68.30063919723034,-67.72627266356722,-67.58181567629799,-66.96640321053565,-66.83095655823126,-67.06804527901113,-67.04421763354912,-66.88887718133628,-67.87417389312759,-68.07271207263693,-67.78101913863793,-68.53656528890133,-68.35741590010002,-68.08779188245535,-67.7913108584471,-66.89514109678566,-66.29408796038479,-65.74803156405687,-65.543412335217,-64.9701571110636,-65.28541462868452,-65.77937457105145,-66.49231166113168,-67.32153252093121,-66.99656459176913,-67.37837941851467,-66.57278689788654,-66.55348299769685,-67.19907675078139,-67.26434997981414,-66.64841184485704,-66.32718495698646,-66.27556281117722,-66.0966933988966,-66.81875582225621,-66.40096788853407,-66.7317333649844,-67.40503447595984,-67.8445965917781,-68.83454106049612,-68.6734589934349,-69.2625593310222,-69.84428954217583,-69.43693347088993,-69.35953308874741,-69.65850478503853,-69.71759909763932,-68.80216532200575,-67.97679878771305,-66.99965353356674,-67.81823856569827,-67.64333244413137,-66.85785809997469,-67.3133873254992,-68.01504127634689,-68.1772890696302,-68.69231795333326,-69.11833460116759,-69.0671305838041,-69.90748350927606,-69.27313721226528,-70.01745644723997,-69.12382955104113,-70.07203857786953,-69.41002963809296,-69.30321114044636,-68.526390156243,-67.72678264183924,-67.3980382331647,-67.40684021357447,-67.79574353480712,-67.81881097424775,-68.73792964220047,-67.82590867532417,-67.86380564048886,-67.02598336804658,-66.73180202720687,-67.0585656487383,-67.62851304002106,-68.18466082122177,-68.17714979173616,-68.92662286618724,-68.75747566018254,-68.48660070635378,-68.49695823015645,-67.98832537746057,-68.94905092101544,-69.63936074497178,-70.37975227460265,-69.51797988312319,-68.96718273265287,-68.06078600650653,-68.4806058080867,-68.80172190768644,-68.59842266747728,-68.6101151346229,-67.65475071128458,-68.65115274814889,-68.2600278025493,-67.93076645024121,-67.19930426497012,-67.1124406484887,-66.42343517253175,-66.19496648665518,-66.58859380800277,-65.68641771562397,-65.64573868736625,-65.24446241324767,-65.88410751800984,-66.22587879374623,-65.28277997206897,-66.01605637278408,-66.74568661535159,-66.86734815919772,-67.85796496272087,-67.64458823436871,-68.14274118933827,-67.80651183379814,-68.38955743145198,-67.55435272864997,-68.09862336795777,-68.4954985678196,-68.31783882342279,-69.0464579272084,-69.58522351784632,-70.05606298334897,-69.48979915492237,-68.60547499218956,-68.99169043404981,-69.38231587782502,-70.1738888300024,-70.07938673440367,-69.50749267172068,-69.56833138503134,-69.90031127771363,-69.40317065361887,-70.22089331457391,-70.92394911916927,-71.63568073185161,-71.18809387739748,-71.18700100993738,-71.06242637615651,-71.29207233712077,-71.35114414338022,-71.58342094579712,-71.01311825308949,-70.14617465948686,-70.94644529791549,-70.92983953049406,-71.58391194371507,-71.09119186643511,-71.13438594900072,-70.15206874348223,-70.45651737879962,-71.06763977371156,-70.20735548809171,-69.91508901072666,-70.21793587505817,-69.86208884604275,-69.58215139107779,-69.34603579109535,-68.42298199981451,-68.35985577013344,-69.02865222841501,-68.99646411882713,-68.50800897320732,-67.79171735374257,-67.65701989131048,-67.58606622926891,-67.94579667039216,-67.96632619854063,-68.51391144655645,-69.50129751907662,-70.20677190134302,-69.95050866575912,-69.2298703379929,-69.65984633984044,-70.42918785335496,-70.35193686652929,-70.6707538771443,-70.94594373367727,-70.90469563333318,-70.88672837615013,-70.97859732294455,-70.10917397448793,-70.19252743152902,-70.92331650108099,-69.97233209200203,-69.63810789957643,-68.6580860875547,-69.02224738895893,-68.67905589612201,-69.48515405552462,-68.6913892342709,-69.20011801738292,-68.25641401158646,-69.21469994075596,-69.83170334715396,-70.65069864830002,-70.41326707554981,-70.83614635281265,-70.84169126907364,-70.08071112120524,-69.10076276166365,-69.1177830286324,-68.43573562707752,-68.11345653096214,-68.26977368770167,-67.36022857576609,-67.20832137577236,-67.38131247647107,-66.50902564870194,-66.36821671389043,-65.71565229864791,-65.48949045175686,-65.47985686408356,-64.9096461655572,-64.3838067241013,-64.61377019109204,-64.76416054321453,-65.24545051343739,-65.00320170121267,-65.78327732114121,-65.48685939237475,-65.1545808268711,-65.90699371509254,-65.61769375484437,-66.14480957994238,-65.87888827174902,-66.01062507927418,-66.8946842495352,-67.80172279290855,-67.34178226068616,-67.09205234330148,-66.85250146966428,-67.15290878107771,-67.20062528410926,-67.39866881119087,-67.03704343317077,-67.95683384174481,-68.29957785038278,-68.89759292686358,-67.92115339590237,-68.42480079224333,-69.18597591854632,-70.12691894592717,-69.3764838911593,-70.12620852142572,-70.91162718925625,-71.40027962671593,-70.70417508902028,-70.91869117692113,-71.59357047267258,-72.42517140181735,-72.44139984762296,-71.50939305266365,-71.51544763939455,-72.09749932400882,-71.48190264869481,-71.58288832893595,-72.07247205730528,-72.73357871267945,-72.99136359896511,-72.49516459228471,-72.74516456341371,-73.71487482031807,-74.2850957964547,-73.8058986668475,-72.81571211665869,-72.39775349013507,-71.46601616078988,-71.36213357001543,-72.335815126542,-72.15983325894922,-71.17837546393275,-70.7299949140288,-70.58471570629627,-70.02875181939453,-70.06150689581409,-69.67769123055041,-69.67472428176552,-69.26608812948689,-68.54106720769778,-69.09171261452138,-68.19341794913635,-67.51404615072533,-67.93941550282761,-67.92044095508754,-68.70333520602435,-68.0194751652889,-68.06647361209616,-68.22292832797393,-67.69990804605186,-67.14885484427214,-66.93197397049516,-66.42229631589726,-66.45571429654956,-65.49231728259474,-65.11541047831997,-64.53489337442443,-65.33173645753413,-66.17001414950937,-66.05622261529788,-65.25979641452432,-65.22384833311662,-65.41517269797623,-65.1670066639781,-65.24798036180437,-65.4280493450351,-64.49261972587556,-65.44330091401935,-65.79829284828156,-66.16918943962082,-66.20308134751394,-66.60958112869412,-67.46597908856347,-67.86039288993925,-67.54299730202183,-67.03665547817945,-67.30215005110949,-66.35748801194131,-66.80781878624111,-66.29560257773846,-66.18545155553147,-66.36186857987195,-65.58221429213881,-64.76532195601612,-64.15677861636505,-63.17449577059597,-62.948229246772826,-62.9560906868428,-63.733191426843405,-63.9796089194715,-63.88288441952318,-64.74594954540953,-65.58877057442442,-65.92935128882527,-66.01481500687078,-65.26072865817696,-65.26751913083717,-65.72610024735332,-66.56171238049865,-66.76416258420795,-67.70071174995974,-67.99157386692241,-68.02148174354807,-68.31768714170903,-69.29041664022952,-69.66042972775176,-70.65374246519059,-69.99173900904134,-69.65154514694586,-70.41386750759557,-69.65040986891836,-70.29603538522497,-69.85111217899248,-68.92360009998083,-68.68269767984748,-68.19930264400318,-67.3983692349866,-68.08491356950253,-67.76309760287404,-68.42795669054613,-68.67262264620513,-69.09591901954263,-68.35188111383468,-67.36539972992614,-66.86738973204046,-67.6607451075688,-67.04048221139237,-67.06044798064977,-67.8380126543343,-68.56121949572116,-68.23912109667435,-68.86821139184758,-68.27219954598695,-69.19001406151801,-70.12986396579072,-70.52500398177654,-70.85997043550014,-71.69860267126933,-70.7148690642789,-70.29072676366195,-69.73183086328208,-69.91304185520858,-69.7500372924842,-69.52964053489268,-70.16153996065259,-70.24501672200859,-69.32631139969453,-69.0635173805058,-68.22669901419431,-67.25360699789599,-66.38614872237667,-66.31888215336949,-65.58180079329759,-64.97114638006315,-65.95738371135667,-66.37490295898169,-65.79539384832606,-65.96672953525558,-66.58927983371541,-66.7183984676376,-65.88799445703626,-64.91088637383655,-64.79731001285836,-64.11943367728963,-64.91951596643776,-64.15936622582376,-64.38655983656645,-64.39035672787577,-64.51548498496413,-65.15664766076952,-65.94059188943356,-65.74648017110303,-66.74067196901888,-66.46121908770874,-66.51580392429605,-65.91364571731538,-66.57717352500185,-66.72013674257323,-65.80941613856703,-66.47028291970491,-66.79047305276617,-67.6547066741623,-67.34704013355076,-66.93612931575626,-66.7177790752612,-67.5102030877024,-67.55545567674562,-67.68368561146781,-67.0538576869294,-67.63489765720442,-68.44541662745178,-68.59034219989553,-68.02909303549677,-68.04116900311783,-67.97828569449484,-67.58088316721842,-66.69530241237953,-67.38756999047473,-66.84493834618479,-67.12934505520388,-66.98096019728109,-66.02301210351288,-66.98410639492795,-67.52488393289968,-67.09949220903218,-67.93825485277921,-68.54260536236688,-68.52703934116289,-68.72261450067163,-69.21101966872811,-69.32354137348011,-69.87427504686639,-69.38288662070408,-68.42068372387439,-67.94653388950974,-68.7406134493649,-68.95495463954285,-68.51655100937933,-67.8596028634347,-67.47538824006915,-66.90252099372447,-67.51126262079924,-67.59598688129336,-67.0476698493585,-66.47946445457637,-67.30072693619877,-67.39660083502531,-68.35731797851622,-68.6997320940718,-68.08377531636506,-67.7646873514168,-66.89743717946112,-66.19825739879161,-66.6327912393026,-66.63735952135175,-66.63995450735092,-66.68865214521065,-66.81473436718807,-66.0863480255939,-65.4555400996469,-65.05210963729769,-64.99182344181463,-65.42936997208744,-64.99998888652772,-64.53460702346638,-65.35332950297743,-65.7474074959755,-65.54611217230558,-66.3575373054482,-66.67803762760013,-65.85703763365746,-65.73267786530778,-66.03961501969025,-66.5964723303914,-66.41870772326365,-67.09241365781054,-66.95494411652908,-66.16985696507618,-66.6130093485117,-66.19421120360494,-65.7070525214076,-66.61909114243463,-66.68145664036274,-66.07563880458474,-65.92379798041657,-65.33845136361197,-66.01754997298121,-66.70525302831084,-66.28536111209542,-67.05724517535418,-67.94405619148165,-68.11748341843486,-67.4607972507365,-67.45934861525893,-66.55648055719212,-67.03999896300957,-67.36378839798272,-67.89970585517585,-66.91764085367322,-67.46515052113682,-67.97527976706624,-67.74723790120333,-67.37936887750402,-68.22742563067004,-68.71339702187106,-68.87977472320199,-69.10743872029707,-69.29074943671003,-69.05938901985064,-68.87397160148248,-69.83898827433586,-69.28031505132094,-68.93288510525599,-68.92484920984134,-68.49067007238045,-68.02819130243734,-68.00001787161455,-67.58999500330538,-66.82425210252404,-67.45307252788916,-67.90132859535515,-68.66827024752274,-68.44646890135482,-67.76264034304768,-68.14802086772397,-67.90863718278706,-67.19253704836592,-66.32560385717079,-67.08466716343537,-66.75042771315202,-66.9730756636709,-67.59716162923723,-67.50779684633017,-67.57301302673295,-66.93229740019888,-67.79420395335183,-67.73873476497829,-66.83831111667678,-66.0784582500346,-65.57908469671384,-66.36438091285527,-65.75017312448472,-66.02074067294598,-66.66315252380446,-66.0668764594011,-66.88659191224724,-66.98007107991725,-66.40743775293231,-66.9015955850482,-66.23552035912871,-65.61377095757052,-65.17857589852065,-64.66375967906788,-65.11012137914076,-66.05312727065757,-66.70881497347727,-67.55219742935151,-67.34977315645665,-66.9346547392197,-66.43116435129195,-66.91268634516746,-67.62960123922676,-66.88025086373091,-67.43842887179926,-67.84381438279524,-67.19568275054917,-67.38559779850766,-67.32706935377792,-66.97130428254604,-66.83819556282833,-66.44838201161474,-67.43106213584542,-67.09481128491461,-66.8466180972755,-67.02909346297383,-67.75797868147492,-67.17045192886144,-66.37215769151226,-66.83438063832,-67.02714264858514,-67.52645196486264,-67.40201117284596,-66.82341754157096,-67.51308481395245,-66.52593397488818,-66.93422107258812,-66.92464804416522,-65.93083680560812,-66.83471135050058,-67.42525960411876,-67.03086868440732,-67.81454128632322,-68.23632882488891,-68.88919343193993,-69.74583865189925,-69.1299970857799,-69.31485133664683,-70.14527323236689,-70.83017986826599,-71.4748149048537,-70.82707613147795,-71.43058087816462,-72.2293919310905,-72.5844527343288,-72.06041203252971,-72.25332669913769,-73.1567254960537,-72.50596525426954,-72.67417059326544,-72.94563218671829,-72.11697354028001,-72.5287978919223,-71.91065175225958,-71.52033219533041,-70.54062187625095,-70.97844910807908,-70.42490851506591,-70.84858135646209,-71.37257762579247,-72.23935018433258,-71.69102780800313,-71.5339238261804,-71.12721674190834,-71.28487505437806,-70.59969778871164,-70.24323004577309,-71.10809300094843,-71.73581107612699,-72.54843755625188,-72.99868555739522,-73.71256938949227,-74.44410649407655,-74.13576234644279,-73.3487228420563,-73.45856448635459,-72.68230070080608,-73.1341370632872,-73.07034213235602,-73.88279543304816,-74.16411531949416,-74.19023130042478,-74.44044550973922,-74.62604166567326,-73.70658999076113,-74.43610069714487,-74.5175387300551,-75.4973851731047,-75.3280289680697,-76.08115676604211,-75.58053302625194,-75.78612954588607,-74.95258204638958,-74.17759620025754,-74.82872948702425,-75.32940539624542,-75.61224879743531,-74.99698169110343,-74.81432025320828,-75.00929004745558,-75.39681608602405,-75.80499075166881,-76.27353761065751,-76.07731884578243,-75.68711519101635,-74.94463849905878,-75.57196660712361,-76.39027983741835,-75.64410886494443,-75.0322663905099,-74.3555331141688,-74.18598602665588,-74.27994779590517,-74.72463230742142,-73.74030625121668,-73.88930582907051,-74.71413951925933,-75.03750552097335,-75.58171046804637,-76.03432755218819,-75.40178386354819,-74.48134766099975,-75.4671694827266,-74.62198006501421,-75.53711075847968,-76.21603884734213,-76.64044871926308,-76.39718314632773,-77.0952438688837,-76.53199612209573,-75.90794216655195,-75.07368668122217,-75.50992364110425,-75.3414396145381,-74.83618396427482,-74.57216270733625,-74.56277398020029,-73.87882637092844,-73.8909314610064,-73.49426618823782,-74.45268745580688,-75.07632290804759,-74.49024700419977,-73.54769527213648,-72.6302182157524,-72.97179409814999,-73.41604886762798,-72.53489891905338,-71.69319911673665,-72.32834606431425,-72.97426835913211,-72.568120197393,-71.77590603008866,-70.87601354857907,-70.52657334599644,-69.9959224043414,-70.30731358658522,-70.29285178054124,-69.49868683470413,-68.50733496109024,-68.71252645459026,-68.27095939125866,-68.33887595357373,-67.57243808079511,-67.47743701841682,-67.32655387604609,-66.42897700704634,-66.17650860827416,-65.688545756042,-65.69323488185182,-66.26519422372803,-66.62820540182292,-65.9262718539685,-65.76819301350042,-64.98132302099839,-65.09514006506652,-65.72142994403839,-65.62017377931625,-65.28965595085174,-64.86153502622619,-65.0166173260659,-65.11975327972323,-64.49270887719467,-64.25699727796018,-63.477610430680215,-63.97961125569418,-64.40883566811681,-64.44584340788424,-63.578710386529565,-63.378639238886535,-63.543549054302275,-62.688259318005294,-63.44595627859235,-62.58845070330426,-62.36641565291211,-61.84918146813288,-61.697904464323074,-62.00187774235383,-62.6421601860784,-63.03303404664621,-62.33507034601644,-62.85401272075251,-61.87600229680538,-62.49314728425816,-62.218720372300595,-61.648560161236674,-61.52839931799099,-61.25033831037581,-60.830170198343694,-59.88198610255495,-60.5204057469964,-61.096279851626605,-61.71638033585623,-61.85146493231878,-62.35803422983736,-63.078218238428235,-63.685401655733585,-64.68287609843537,-65.15568718314171,-64.67543826298788,-63.93086421722546,-63.42314339475706,-63.23967187758535,-63.63410262810066,-63.40273043233901,-63.03922604257241,-63.28707515029237,-62.7636739294976,-63.54638346284628,-63.038749892264605,-63.93977919686586,-64.48121411679313,-64.72819768032059,-64.8823247635737,-65.49582394538447,-65.32944648107514,-65.7716275495477,-65.40305216470733,-65.62309020059183,-64.6607874808833,-63.77909320965409,-63.151156758423895,-63.861655082553625,-64.04727280698717,-63.32242705440149,-62.64583262987435,-63.28092831000686,-63.16866244189441,-63.97797842603177,-64.50445654289797,-63.95295898988843,-64.11043591611087,-64.1583064920269,-64.79653436504304,-63.89373840158805,-63.82516005821526,-63.83585217082873,-63.93509792769328,-64.58364890469238,-64.19703540485352,-64.82618924370036,-64.88127157092094,-65.39735641144216,-65.4404479674995,-64.75440033432096,-65.18665446015075,-65.62179972417653,-64.84986284701154,-65.28505432838574,-65.93758700694889,-65.65016013616696,-66.56407606974244,-66.48674932820722,-66.11045031389222,-66.38470055209473,-66.5340127213858,-67.39290233887732,-67.889939697925,-67.02012898167595,-67.78155280137435,-68.27006559632719,-69.1668310132809,-68.57412803312764,-68.80544308945537,-69.29203457152471,-69.30960271460935,-69.01357018062845,-69.02404655329883,-69.91685234801844,-69.53935318719596,-69.96945526590571,-70.77061036834493,-71.59118840703741,-72.43140212446451,-72.6535447682254,-71.92350109340623,-71.78740172227845,-72.56267774570733,-73.04591059871018,-72.76936778100207,-73.71609212877229,-72.73409354640171,-72.46610692376271,-72.26448728935793,-71.77363014267758,-71.16282121604308,-71.99986419500783,-71.67132645612583,-71.94507109932601,-71.61911207064986,-70.97633260115981,-70.94952112948522,-70.50077776797116,-71.45244322810322,-72.15648499550298,-72.18460179166868,-72.45641371654347,-72.79580231616274,-72.10283010359854,-72.6449873498641,-72.19379094336182,-71.25146359670907,-72.00338458409533,-72.31092868419364,-72.69477346772328,-71.87816798407584,-72.04365674126893,-72.22659542690963,-72.08631553547457,-72.98755536833778,-73.26525644492358,-73.01439688168466,-72.70142035745084,-72.26378442766145,-72.7694005058147,-72.34875657316297,-72.98694179626182,-73.7073820354417,-74.26123011438176,-75.02665347559378,-75.22290475713089,-75.04135523876175,-74.56211335258558,-74.75053126784042,-73.934946348425,-74.21210722438991,-73.7620636029169,-72.83825610950589,-73.75721402326599,-74.4662577197887,-75.38091719616205,-74.40697074029595,-73.42449418501928,-72.57944784266874,-72.7666918169707,-73.53480608202517,-73.69362781662494,-73.21610269648954,-72.89243086334318,-72.6440610755235,-72.06292122043669,-73.03366950340569,-72.74757274799049,-72.72449620394036,-72.64116170769557,-72.46780876396224,-72.61554776411504,-72.29508252860978,-72.33221859065816,-72.55290174204856,-71.57993142539635,-72.53011546377093,-72.47607292747125,-72.63865906745195,-73.16275821905583,-72.86456569423899,-73.30387509381399,-73.02973394002765,-72.95982706872746,-72.74927974212915,-72.31534240534529,-72.33988242736086,-71.81931805796921,-72.77054156875238,-72.25570033676922,-72.90417393948883,-72.10888608219102,-71.92463467875496,-71.08168125804514,-72.06302877655253,-71.96791929472238,-71.08203889429569,-70.16633952688426,-69.61736960429698,-68.84504355257377,-69.36719985213131,-69.65417572809383,-70.20601751096547,-69.49106176616624,-69.64089259225875,-69.68687011953443,-69.61497413972393,-69.05795919150114,-69.54841122496873,-69.06090774619952,-68.66935841692612,-68.87563602626324,-68.5264219273813,-69.25924321217462,-69.2072013807483,-68.9580598892644,-68.18326015304774,-67.66273256763816,-67.15154868643731,-66.49075918504968,-66.13918859092519,-66.5813655485399,-67.32022069115192,-66.40583057980984,-65.50449455622584,-65.78919619135559,-65.91126271383837,-65.1252754428424,-65.760299757123,-66.17965853959322,-65.29212089627981,-65.89074397366494,-65.15180360013619,-66.14582332549617,-66.89262462081388,-66.00775893172249,-65.36620385292917,-64.99388884194195,-64.58494670176879,-64.9050945295021,-65.37386484071612,-64.971302727703,-65.75573983276263,-66.11549459770322,-66.96273792209104,-67.93201901996508,-67.18095364840701,-67.12741657020524,-67.08312751166523,-66.2218610290438,-65.8083637370728,-65.08838627394289,-64.13220737827942,-63.5209566289559,-63.47621920425445,-63.298613934312016,-62.36312629049644,-61.72963960003108,-60.8748746169731,-61.46440070960671,-61.44865972781554,-60.60664185509086,-61.35492961248383,-60.9775829622522,-60.37685362575576,-61.36566747864708,-60.790108864661306,-61.44580877991393,-61.0380130992271,-62.01316150650382,-61.75625403318554,-62.076341406442225,-62.562089692335576,-61.966574703808874,-61.493182859849185,-60.630511274095625,-60.4705266286619,-60.67359057068825,-60.91060974728316,-61.11939904652536,-61.67261059768498,-61.44966658717021,-60.48267811862752,-59.85664397291839,-60.44462221907452,-59.96108396537602,-60.50403434224427,-60.9217212786898,-60.61933196336031,-59.74606116907671,-59.624455980956554,-60.452008134219795,-60.443023189902306,-59.68848877120763,-58.696020185016096,-58.807609578594565,-59.28849851991981,-58.38008953072131,-59.09452201239765,-58.12897300859913,-58.90199574781582,-58.987384241074324,-59.40634515695274,-59.815928880590945,-60.71493927296251,-61.33607979910448,-62.101531566120684,-62.85522243194282,-63.829585272818804,-64.51648593461141,-65.08469837205485,-65.34807746764272,-65.14345479011536,-66.08447842299938,-66.31389760086313,-66.85559958126396,-66.69896472292021,-67.59052786091343,-67.31853142660111,-68.02699505724013,-68.6836336995475,-69.39364772755653,-68.59716502204537,-69.0956362420693,-70.07586070569232,-70.05423057125881,-71.0197783568874,-71.36806591786444,-70.62186378194019,-69.75500553846359,-69.268596237991,-68.85693300841376,-68.12587609374896,-68.31418285984546,-67.91471149446443,-67.99078921694309,-68.59892036858946,-68.66615346446633,-69.57336266664788,-69.99562530824915,-70.43956775544211,-70.52970375539735,-69.5774707221426,-70.22364975558594,-70.2267074873671,-69.53059520665556,-69.50763484090567,-68.78943459363654,-69.66513136960566,-69.39994929591194,-69.65799520397559,-70.6354978135787,-69.78479143604636,-68.97953051235527,-69.2770910775289,-69.37627016426995,-70.0238900440745,-70.96575486566871,-71.76426176261157,-71.41125201294199,-70.83590409671888,-69.91776523459703,-69.53698106016964,-69.55804818123579,-68.76478776661679,-69.03550176229328,-68.90614365972579,-68.62649975623935,-68.49289071001112,-68.66201996058226,-67.74522687587887,-67.2338937362656,-67.98094398761168,-67.2157675283961,-66.51164219621569,-65.65236002672464,-65.28935498278588,-65.55944979097694,-66.15393847459927,-65.7398428665474,-64.9007974928245,-65.56103059463203,-65.43315284093842,-64.76983991637826,-65.41473375540227,-65.93702967604622,-65.20227856514975,-65.70875722216442,-64.95680716820061,-65.22466220986098,-65.20769579336047,-64.62295000907034,-64.2855412075296,-65.08866083016619,-65.49008079292253,-66.13411030638963,-66.97622465249151,-67.75322221964598,-67.46873038215563,-68.17231614049524,-68.85552532412112,-69.7154722912237,-69.18525055423379,-70.10150977503508,-69.54149964218959,-70.44632000289857,-70.3775370544754,-70.53740544011816,-70.48044176446274,-70.33102257875726,-70.84008485497907,-70.30792602570727,-69.3410207987763,-69.75983552215621,-70.28209254005924,-70.94648047350347,-70.74996506981552,-71.1441312613897,-71.79771544737741,-71.68114581611007,-71.5809632060118,-70.65699654072523,-70.21998236514628,-70.14326614374295,-71.02582230931148,-70.54507738398388,-71.12334797391668,-71.76636263355613,-72.5727183027193,-71.8683206946589,-71.76837633689865,-71.40656844247133,-72.10285693313926,-71.41854678932577,-71.33257844578475,-70.4143352592364,-70.27922733919695,-70.51277266675606,-69.67766970116645,-69.38055039336905,-68.4689701711759,-68.13421317515895,-68.01513396715745,-67.45341556612402,-67.07888217596337,-66.79606127832085,-66.55883169779554,-67.36496770102531,-67.9199007214047,-68.48231929074973,-69.17345118802041,-70.0784200457856,-70.63437284715474,-71.3395938128233,-71.10677334107459,-71.86054931487888,-72.20285701844841,-71.94871912384406,-72.7505765678361,-72.77184929698706,-72.42447885405272,-72.94719379814342,-72.05697709461674,-71.65819235146046,-70.86177880689502,-71.07079689251259,-71.22757050115615,-71.57998084649444,-71.92054329114035,-71.45992157096043,-71.26956915855408,-70.50827445276082,-71.09627325600013,-70.25982973724604,-69.43300947220996,-68.78527142852545,-68.27015994349495,-67.74566091829911,-66.83153124665841,-66.54500603722408,-67.41995125031099,-68.05288290558383,-68.24558645812795,-68.53541272040457,-69.41729051014408,-68.98689206968993,-68.82571105007082,-68.65334749547765,-68.30328292958438,-68.34389278618619,-69.08406552951783,-68.33136881748214,-68.46623458433896,-68.8056029798463,-68.87778236949816,-67.95607277238742,-66.99766121525317,-66.21159657463431,-66.65487532829866,-65.65517463441938,-65.25075291935354,-65.99428520491347,-66.46501956833526,-67.0172653417103,-67.62400485435501,-68.36486211791635,-67.81079683452845,-67.61835043458268,-67.53989592427388,-68.3221871596761,-68.592772024218,-67.65876938542351,-66.70528207486495,-67.55738098034635,-67.01107411179692,-67.3484710091725,-68.232913446147,-69.13206149125472,-69.26545785693452,-68.90574722038582,-69.16982831666246,-68.8591223526746,-68.62235617917031,-68.32584287878126,-69.1891098995693,-68.84432681417093,-68.24911269219592,-67.5627002986148,-67.00520890764892,-67.00298324972391,-66.96928310021758,-66.44661707896739,-67.13458477659151,-66.85930126346648,-67.0785996648483,-67.65761963883415,-68.33780132234097,-68.0181325529702,-68.66206338722259,-69.59201617864892,-70.35247653070837,-70.81708236411214,-70.48351650405675,-69.658138172701,-68.90670022461563,-68.05973883392289,-67.78153144195676,-67.8088192846626,-67.61995495669544,-67.02082167798653,-66.26817493047565,-66.2402981580235,-66.19109403062612,-65.94613113300875,-65.63602418405935,-65.14251728123054,-65.83337298594415,-65.45558614749461,-64.5059821261093,-65.24409034661949,-65.0056197391823,-64.27400746243075,-64.19835587218404,-63.610706713516265,-64.38738947873935,-65.17239490849897,-65.4974241182208,-65.90552708739415,-66.83864931203425,-66.07289635716006,-65.64091981947422,-64.99779177922755,-65.92205939162523,-66.12909750919789,-67.1061827512458,-66.69963338086382,-66.65791452070698,-66.8550306679681,-66.83153760060668,-67.14705539634451,-66.68115048948675,-66.25191783253103,-65.65114398812875,-66.15435382071882,-65.66904858592898,-66.60893232794479,-66.50465076370165,-65.6697963369079,-65.33940587053075,-65.66904209554195,-65.80726439831778,-65.08962286729366,-65.36030425177887,-65.24505082005635,-65.88489923300222,-65.12655296269804,-64.3787741898559,-65.09109291387722,-64.17902262555435,-63.74070708127692,-63.5307054547593,-64.03220450598747,-64.1076400517486,-63.9621768114157,-63.15388800064102,-62.55566822690889,-61.830316718202084,-61.363643762655556,-61.49648111499846,-60.696379536762834,-59.70852670678869,-59.41659809090197,-59.71903476957232,-59.74403122253716,-59.18653140682727,-59.04592065420002,-58.910358609165996,-58.781593507155776,-59.68695159396157,-58.99056480452418,-58.493024847470224,-59.16088527766988,-59.28907043300569,-59.60821741679683,-59.96442939527333,-59.19816167000681,-59.97037919703871,-60.26099704578519,-60.333181934431195,-61.26365205598995,-60.47336928732693,-61.421714808326215,-60.48635360086337,-60.48488200036809,-60.37180125480518,-60.4562406190671,-60.83712189691141,-60.26571336667985,-60.115970904473215,-60.88868924928829,-61.879238940775394,-62.467768349684775,-61.938135062810034,-61.81811356684193,-61.91152549395338,-62.75731439283118,-62.756379697006196,-62.79397298488766,-62.38921735296026,-61.67564120469615,-62.02218973217532,-61.94277345947921,-62.27344618458301,-62.16136051993817,-62.52862201677635,-61.578452922869474,-61.66150237387046,-62.44514952087775,-63.13787216832861,-63.19259318569675,-62.85125262057409,-61.964289693161845,-62.073844907805324,-62.126928800716996,-62.2107382719405,-62.76393207535148,-62.83273117663339,-63.47644795104861,-62.97150731831789,-62.8997907359153,-62.2135651842691,-63.04196310788393,-63.611696945503354,-62.65436420682818,-62.319423011504114,-62.98260806128383,-62.558708833530545,-62.38278378127143,-63.37069248361513,-63.47294568223879,-63.46607144270092,-62.84050517203286,-63.39816119382158,-63.32051901007071,-62.84674861840904,-62.41465163975954,-62.815198419615626,-63.426502003800124,-64.14626860246062,-64.15881466027349,-64.4526912807487,-63.95141650270671,-64.29789741663262,-64.33688111230731,-64.98357971385121,-65.72069798503071,-65.468013077043,-65.79562868271023,-65.03191166371107,-64.53325387602672,-65.14538619946688,-65.1304938220419,-66.06853062706068,-65.72511385893449,-65.35070167761296,-65.53806136501953,-65.78220714209601,-65.7075892528519,-65.77740330807865,-66.73846255615354,-65.97355987131596,-66.13495320314541,-65.54849558323622,-64.77810597792268,-65.2728227628395,-66.22218750789762,-66.12115720007569,-65.1656408905983,-65.07868421915919,-65.6046910029836,-64.61669025523588,-63.7650863211602,-62.81422769045457,-62.0916044395417,-62.07880018977448,-62.80149729596451,-63.56723723653704,-63.1379259172827,-63.018834974151105,-62.62325379252434,-63.37801471212879,-62.52173617295921,-63.35436891531572,-62.908533866517246,-62.61848427448422,-62.710628893226385,-62.579799273982644,-62.982470200862736,-63.2558186724782,-62.73473162436858,-62.50611822027713,-62.612344584427774,-62.13389944145456,-61.50846242811531,-61.99831540836021,-62.7528884797357,-62.530012261588126,-62.363742764573544,-63.10067598382011,-63.674563865642995,-64.44811776420102,-65.25862895976752,-66.12967436853796,-67.12236931314692,-66.25483656022698,-66.99822928151116,-66.40850932942703,-65.890813594684,-66.5964120188728,-66.95861292118207,-67.2574483952485,-67.28329178597778,-67.39878521068022,-67.12685088068247,-66.4370416533202,-66.72733718622476,-65.7274134196341,-65.43511266401038,-64.67984609398991,-64.30233718501404,-65.0892227999866,-65.08039082307369,-64.77680874988437,-65.34934148751199,-64.6559242461808,-63.91656264802441,-64.90845829667524,-64.2940116734244,-65.17824163846672,-65.32808799855411,-64.39960694918409,-64.78302925359458,-64.87148209381849,-65.45433390466496,-65.2174696973525,-65.37752988748252,-66.3329163370654,-66.53986526699737,-65.9334899163805,-65.2310256450437,-65.60111002577469,-65.32739297533408,-65.62515466613695,-66.6236448311247,-67.33128305757418,-66.45036834850907,-66.05956424633041,-66.8333646254614,-66.21560975909233,-66.98757653916255,-66.0869804774411,-65.77090337872505,-65.01473989384249,-65.3861731835641,-64.6748048774898,-65.6307479199022,-65.56684150919318,-66.47501947265118,-66.62469640607014,-66.536236458458,-67.30234644049779,-66.4006277108565,-65.9437507246621,-66.4032744676806,-66.5518759326078,-66.67985137319192,-66.51218693843111,-66.06430483236909,-66.39107549469918,-66.76754097593948,-66.96370458928868,-67.28109167097136,-67.86799013242126,-68.45975321158767,-68.94555499125272,-69.89615871477872,-69.99234339781106,-70.53315700544044,-70.4076772578992,-69.44588477117941,-68.6115411138162,-69.29347868915647,-68.45555383106694,-67.60569709632546,-67.11970293708146,-66.28067314857617,-65.45912292040884,-65.16744400979951,-64.73823169060051,-64.32896789722145,-63.564432424958795,-64.09270226815715,-64.22889625001699,-63.413187289144844,-63.21037658397108,-64.02845223946497,-63.55721476767212,-62.94472450437024,-63.463629534468055,-62.55224112002179,-62.8147779032588,-62.39670641394332,-62.72600935678929,-62.318261487875134,-61.97945833299309,-62.50531497877091,-63.42808162467554,-64.0519775673747,-63.21113878209144,-63.62760306103155,-63.50394656602293,-63.77822032244876,-64.23414901224896,-64.82598328590393,-64.95503559242934,-65.1059956937097,-65.9934393176809,-66.81531341886148,-66.31109660351649,-66.02213324559852,-65.72099204408005,-65.30990519933403,-65.88314218306914,-66.17078328225762,-66.06854452658445,-65.27479912992567,-64.3650632770732,-63.937287244945765,-63.663277827203274,-63.06828800775111,-63.258767606690526,-63.101725946646184,-63.27492208685726,-63.1681643598713,-63.37708594882861,-62.5034305723384,-62.32272043218836,-63.040509562939405,-62.786021639127284,-62.41557573294267,-63.27299624681473,-62.36351109202951,-62.25777763966471,-61.6807509297505,-62.25941063137725,-62.32468422828242,-61.53253010241315,-61.822985185775906,-62.718756086193025,-63.06618947535753,-62.15250549465418,-61.6700889240019,-61.179871506989,-61.57668529683724,-60.77834509173408,-61.396073936950415,-62.22590090101585,-61.765105282887816,-60.97707172855735,-60.758945463225245,-60.481824493501335,-60.485831435769796,-60.32519720448181,-60.40577780455351,-59.854613666422665,-59.92813235055655,-59.603849581908435,-60.51491827936843,-60.70479095261544,-60.77051931247115,-59.84029321325943,-58.864931566640735,-58.94596652453765,-59.84433870157227,-59.01929757092148,-58.376060284208506,-58.02850718377158,-57.299879485275596,-56.309727143961936,-56.95417742151767,-57.70862189726904,-56.936105341184884,-56.85756915481761,-55.86497433669865,-55.4780903281644,-55.36013781046495,-55.10283600585535,-54.75278003746644,-53.96020751167089,-54.86780809285119,-54.04071839246899,-53.35532188601792,-53.47186803491786,-53.46756342751905,-53.05995937855914,-53.890943677630275,-53.0060993200168,-53.18287816271186,-54.006230047438294,-53.62960865115747,-53.293595022987574,-52.91572735598311,-52.48250513523817,-53.07614602940157,-53.89447434619069,-54.801665131468326,-55.285334050189704,-54.48429086431861,-55.05107299797237,-56.01909943763167,-56.796775897964835,-56.67223157314584,-55.76740775629878,-55.418112616520375,-55.74192659603432,-55.053210974205285,-55.72636844497174,-54.78437711670995,-54.25130696920678,-54.062904013320804,-54.34575030207634,-53.5927793700248,-53.433355554472655,-54.284333039075136,-53.579234797973186,-54.16478619212285,-54.060970617923886,-54.54263090854511,-55.50199358025566,-56.200633469969034,-55.92937867902219,-55.64537201076746,-54.86559930536896,-54.03327416209504,-55.01850669737905,-55.381269472651184,-54.532911118119955,-54.854219565633684,-54.554546321276575,-55.36279363045469,-56.13129683258012,-56.21556589985266,-55.227804623544216,-54.90427692653611,-55.39668486081064,-55.61345068924129,-55.75468151969835,-55.167668969370425,-55.379614086821675,-56.34195775864646,-56.789724024478346,-56.529473101720214,-56.788198272231966,-56.59247091645375,-57.14164769183844,-56.94052922120318,-57.25237311515957,-57.42649772996083,-56.57991464342922,-55.76078278431669,-55.36046360153705,-55.8417031718418,-55.25774440029636,-55.14916579565033,-54.769681342411786,-54.78771931352094,-54.12254311796278,-54.04570560250431,-53.31684016902,-53.32205095002428,-53.42434272635728,-54.125055310316384,-54.77987437648699,-54.49581090779975,-55.448978463187814,-54.60261668404564,-55.56905964482576,-54.798527512699366,-55.559527734760195,-54.70974881015718,-55.661696712020785,-54.88407609984279,-54.836343807633966,-54.56037856033072,-54.383495580405,-54.294251890387386,-54.020110013429075,-53.772124629467726,-54.75468035321683,-54.00250415690243,-53.09178335824981,-52.71834312705323,-53.19890876952559,-53.21213260712102,-53.39885891368613,-52.72703463258222,-51.868420214392245,-52.44579938380048,-52.572609399445355,-52.666152445133775,-52.619993480388075,-51.77861883305013,-51.83412856562063,-51.23700354946777,-51.682452180888504,-51.59673341317102,-51.70782148744911,-51.761405629105866,-50.911335051525384,-50.295389416627586,-49.54032735014334,-50.107634343672544,-50.250415386632085,-49.510380228515714,-50.0836460380815,-51.06819919589907,-51.576678009703755,-52.53435517521575,-52.10106155090034,-52.19348260527477,-51.79264342179522,-52.009365904610604,-51.25408700900152,-51.92370887286961,-51.78372731572017,-51.853285818360746,-51.049079393502325,-51.70160013996065,-52.351082728244364,-51.50131511455402,-51.92788038169965,-51.32122706994414,-51.83054344262928,-51.36525722546503,-50.78358991118148,-51.66250660456717,-52.14637292874977,-51.84650173410773,-52.368022102396935,-52.971151110716164,-53.21525407396257,-54.198291692882776,-53.59155237022787,-52.69411198189482,-52.258998557925224,-52.52171407500282,-52.856186823919415,-53.7258377680555,-53.23079776857048,-53.16832840256393,-52.537905482109636,-51.841141663491726,-52.46113320533186,-52.69779742648825,-52.814653143752366,-52.405203353613615,-53.00878416514024,-53.05112383514643,-52.67673751851544,-52.77302302233875,-53.05894159851596,-53.169242452364415,-53.16895967768505,-52.25335514731705,-52.36933804443106,-52.87401961768046,-53.06691013183445,-54.03403187170625,-54.33657752117142,-55.03207202907652,-55.7842634129338,-56.615569518413395,-56.40684909839183,-57.067534058354795,-57.78750871261582,-57.657313109375536,-57.154897877946496,-57.034123248420656,-57.6686120480299,-57.16804394638166,-56.18885688483715,-55.81076794303954,-55.14916375186294,-54.74340890115127,-55.31789981294423,-55.79562857281417,-55.83108820207417,-55.63434732565656,-55.148879988119006,-54.338852336164564,-54.16108110966161,-53.77589872479439,-53.58597299642861,-53.692281297408044,-54.67208891361952,-54.428362623322755,-53.55546503467485,-53.17353227222338,-52.445131089538336,-51.61538306903094,-50.76960061118007,-51.7235994534567,-51.1931344489567,-51.40552274836227,-51.23119372781366,-51.675324629060924,-51.615388446021825,-51.39567444752902,-51.726635358296335,-51.58923897240311,-51.9630712447688,-52.803882780484855,-53.721184672322124,-54.24486950878054,-54.37512961542234,-54.070519000291824,-53.12993310485035,-53.13850967865437,-53.50224039983004,-53.10901277791709,-53.35112029640004,-52.89428899390623,-52.91198367672041,-52.27285945462063,-51.505413150414824,-51.89128956012428,-50.93655167846009,-51.26494408398867,-51.38741236645728,-51.9401429425925,-52.85061309905723,-52.9882498239167,-53.570010397117585,-54.308842834085226,-53.505369457416236,-52.518135831691325,-52.24548534862697,-51.564978214446455,-51.24206520197913,-50.24918718682602,-50.00660994742066,-49.668070607353,-49.225944326259196,-50.20105723012239,-50.34486957686022,-50.53684510849416,-50.607666538562626,-50.76753831515089,-50.363321707583964,-51.29721047822386,-50.56193503411487,-51.31363684590906,-51.64646215364337,-51.74386056512594,-52.34307505143806,-51.37763246335089,-50.81394464056939,-50.426906920969486,-50.35087615950033,-50.8822351959534,-51.11623798543587,-51.330867315176874,-51.34920473303646,-50.90649858675897,-50.41897259326652,-50.48282487085089,-50.35587851470336,-51.10442004725337,-50.33820999180898,-49.67828972125426,-49.46322518028319,-48.49444649508223,-47.92781928787008,-47.19397278968245,-47.979026122018695,-47.490666597150266,-48.34922245889902,-47.86281570745632,-46.885977102443576,-46.97524411370978,-46.68928489368409,-46.86180948652327,-46.10428717080504,-46.294646102935076,-46.769761299248785,-46.065994484350085,-46.43854861194268,-46.82589935604483,-47.705913674551994,-48.348396399989724,-48.033602110575885,-47.29876724584028,-48.19482262805104,-48.06816918915138,-47.3554988251999,-46.50085281440988,-46.398389785550535,-45.993400033563375,-45.37111245281994,-45.99065604386851,-46.318819525651634,-46.457014210522175,-46.20813621720299,-46.093736230395734,-45.432403333019465,-45.09058093186468,-44.7448149244301,-45.608168616425246,-44.791234023403376,-44.44770968565717,-45.23546371748671,-45.44447075482458,-45.757521860767156,-46.35838863160461,-45.419948315713555,-45.24331993656233,-45.88791754562408,-44.92080893134698,-44.979126151651144,-45.24645833624527,-45.316114593762904,-45.70266450289637,-45.14072077628225,-44.42278392147273,-43.658932990860194,-43.98034808691591,-44.04229000862688,-43.812487930525094,-44.07000833423808,-44.38252295926213,-43.42106325691566,-42.960108135361224,-42.65004190756008,-42.13500833930448,-42.90514817694202,-43.505627777427435,-42.86681363079697,-43.83483832795173,-43.11854494968429,-42.530334467533976,-41.80318469600752,-41.17659722594544,-41.03175616217777,-40.8247713916935,-41.499339706264436,-42.0615957416594,-42.53467200649902,-42.24949162360281,-42.75142403598875,-42.51985572325066,-42.318289523012936,-42.96303712250665,-42.42722204886377,-42.106539780739695,-41.62616140348837,-41.8914785431698,-42.15693535609171,-42.46549648232758,-43.06564975902438,-42.75021029589698,-42.931291800457984,-42.720206699799746,-42.29010169766843,-41.54448457760736,-41.050186885520816,-40.710537570528686,-41.23947759019211,-41.5309789115563,-42.04746885644272,-41.85925263212994,-41.26940725231543,-41.21062521263957,-42.03457396104932,-42.1716342009604,-42.81838762713596,-42.83808775106445,-42.722305609844625,-43.53947490081191,-43.53021803451702,-43.48897253675386,-43.66447937814519,-42.8968762261793,-42.29005299182609,-41.59752449858934,-41.08383412286639,-41.31111524347216,-41.9922005017288,-42.927378818392754,-42.87165280384943,-42.76736851967871,-42.69676288962364,-43.428827218711376,-43.93024747539312,-43.651287630200386,-44.13365332316607,-43.85074299899861,-43.29216701677069,-42.508350032847375,-42.10648037493229,-42.36488368501887,-42.104772694874555,-42.43377191014588,-42.327026535756886,-42.872724503744394,-42.581419055350125,-43.542625435628,-43.02762641850859,-43.465675523504615,-44.42496492480859,-43.53461402375251,-43.89054034790024,-43.961124072317034,-43.8354647741653,-42.964398252777755,-43.5538823204115,-43.244321374222636,-43.08054581377655,-43.77671072538942,-43.30312671838328,-43.59263339918107,-43.003895331174135,-43.901514747645706,-43.99380331672728,-43.522223711013794,-43.18606353458017,-43.26058248942718,-43.56200679112226,-43.58830162230879,-42.898369304835796,-42.403837563470006,-42.473059424199164,-43.439234517049044,-43.46749229775742,-44.25329368794337,-43.408129359129816,-42.58119129948318,-42.422962456941605,-43.38084831414744,-42.451629328075796,-42.26655212044716,-41.976156301796436,-41.602654746733606,-41.53598375339061,-41.79963315650821,-41.24961821734905,-40.33405380882323,-40.045159013941884,-40.585949702654034,-41.30086358403787,-40.70401073852554,-40.174647013191134,-39.70514630852267,-39.840899797622114,-40.35421283915639,-40.14557258179411,-40.504740559030324,-40.711522871628404,-41.69226804282516,-41.338430382311344,-41.894123148638755,-42.61332183564082,-41.73198323417455,-41.16572236409411,-40.44924488756806,-40.44243531348184,-40.8770099892281,-40.64101535314694,-41.53114936687052,-41.67414202587679,-41.080142761114985,-41.961144980508834,-42.27982440032065,-42.858667653054,-42.536256226245314,-41.760511443950236,-42.50435605971143,-43.35985208535567,-43.01276021078229,-42.78208204405382,-42.314411115366966,-41.87182415043935,-41.54136975482106,-41.20139089319855,-41.94017476635054,-42.53675082558766,-41.60576983168721,-40.695883005391806,-40.36779573839158,-39.64611968956888,-38.95842835493386,-39.598820802755654,-40.36496199434623,-40.81553509877995,-40.92356267850846,-41.10082227317616,-41.626854764297605,-41.99403710383922,-42.76559313153848,-41.9614677275531,-41.99067776091397,-41.1771603114903,-40.37929327227175,-39.976438459940255,-39.622581753879786,-39.100812398362905,-40.01133022783324,-40.80093770287931,-39.88559603784233,-40.71631217049435,-40.21423620963469,-39.70559052051976,-38.84103966969997,-39.58846280397847,-40.28409916674718,-39.82259380584583,-39.2880090540275,-38.573279872071,-39.37421394791454,-39.36988862697035,-39.54187449114397,-40.26508981222287,-41.260994968004525,-41.27746359677985,-42.14155993051827,-42.83786709047854,-42.77360137645155,-42.09252938628197,-41.99336196901277,-42.45600267313421,-42.025764821097255,-42.152730950154364,-41.166309480555356,-41.257116278633475,-40.50762667087838,-39.81961416499689,-40.41160503262654,-40.181738359853625,-40.88078204635531,-41.301055152434856,-41.66631904570386,-40.735299315769225,-39.75084034865722,-40.204061441123486,-40.1174658969976,-40.24413518840447,-39.791146501433104,-39.32736679818481,-39.622976436745375,-39.30350969359279,-39.685622659977525,-39.37593749072403,-38.915696295909584,-39.86716377083212,-40.85487140249461,-41.43632010463625,-41.0769858029671,-40.453776803798974,-40.81786079891026,-40.01618136186153,-39.653060232289135,-39.4812766793184,-38.53702326025814,-39.2546123303473,-38.59684813162312,-39.58229313744232,-38.95640094438568,-37.979394888971,-38.39182784687728,-38.06149887107313,-37.87786918133497,-37.82152845757082,-38.72623485606164,-37.839621630031615,-38.09140474861488,-37.62232621945441,-37.198881432414055,-36.39330370770767,-36.675624335650355,-36.443038548342884,-36.58751973928884,-36.07059368630871,-36.59801172558218,-35.74444507109001,-34.945543927606195,-34.02138196863234,-33.58313003461808,-33.882264184299856,-33.45371161866933,-33.9614986628294,-33.573977494146675,-33.21254310570657,-33.5379800433293,-34.249163900036365,-34.18640126474202,-34.71586748305708,-33.83202831307426,-34.20109508931637,-33.824915409553796,-33.21791228186339,-33.83116979850456,-33.577554722782224,-33.97721874527633,-34.26812357781455,-33.91493170754984,-34.78095622267574,-34.951184877194464,-34.758351555559784,-35.42682357132435,-36.017658363096416,-36.345542821567506,-36.536618050187826,-36.21757619921118,-36.413329178933054,-35.66771326493472,-34.88656512089074,-34.72017291467637,-35.597344781737775,-36.181232400704175,-36.07575645437464,-35.851234812289476,-36.458789272233844,-37.054955744650215,-36.62513073394075,-36.68054243829101,-36.204933469649404,-36.08533917926252,-35.17309089517221,-34.19191039726138,-33.992776254657656,-33.22099787928164,-34.109906394500285,-34.643207762390375,-33.66152235865593,-33.535264641512185,-33.06312339939177,-32.63906998001039,-33.31649943487719,-33.343927717301995,-34.229448401834816,-34.02157539688051,-33.420496080536395,-32.72354652592912,-31.99997766362503,-31.93705069227144,-32.38044194551185,-33.27281229197979,-34.26720028324053,-35.24417999945581,-36.170318104326725,-36.58554981602356,-36.03294057957828,-35.284102115314454,-35.97747621499002,-36.69537663599476,-36.513797129970044,-36.208699012640864,-35.547286371700466,-35.25558391259983,-34.64610041398555,-35.64541273424402,-34.90572814550251,-34.86933160852641,-34.1699433918111,-33.244023110717535,-33.63612078037113,-33.62610523076728,-33.59283109335229,-33.05444341432303,-33.35684679960832,-33.65744649246335,-33.204369050916284,-33.65425758995116,-33.486514382995665,-33.30112514505163,-33.8473790101707,-33.49216958461329,-33.685876795556396,-34.42255277186632,-34.91556561831385,-34.645421270281076,-34.87918980233371,-35.8701858301647,-35.77430014824495,-35.40456328401342,-35.743847168050706,-36.257694837637246,-36.76273115258664,-36.43170778360218,-37.25516590196639,-36.47638038638979,-36.266385421622545,-36.128256192896515,-35.62884613266215,-36.46155254961923,-35.49737232550979,-34.74831926822662,-35.38523985957727,-34.51038646278903,-35.00281624821946,-35.48546487139538,-36.23313541756943,-35.546930625569075,-36.114312540739775,-35.188727350439876,-34.38315333239734,-34.51905619679019,-34.105070310644805,-33.20903014950454,-33.921632464043796,-34.03808306995779,-34.958411280531436,-34.68049072753638,-33.972387748770416,-33.96891985600814,-34.876398239284754,-35.48908975953236,-35.36459268722683,-34.68042199360207,-34.48050347296521,-34.03799066785723,-34.11542041646317,-34.596485435497016,-34.67336363019422,-35.54385134996846,-36.4903943981044,-36.726810107473284,-36.68777167145163,-37.054703573696315,-36.384381437674165,-36.404252148233354,-35.817800282966346,-35.30390778975561,-34.682388545479625,-35.30552655085921,-36.07664118241519,-35.81995682511479,-34.864937575533986,-34.05511332210153,-33.498097895644605,-34.47992457449436,-35.18887212779373,-34.260823647491634,-33.57795636355877,-32.7078455965966,-33.70614003529772,-34.25206311745569,-33.37866544770077,-34.1810677847825,-33.597812755033374,-33.076570817269385,-33.11335456324741,-32.7385054458864,-32.93778863782063,-33.74376149056479,-34.677223830949515,-34.494634251110256,-33.90894138114527,-34.07041896879673,-34.31978931231424,-34.24256159551442,-34.32025617547333,-34.16815013671294,-34.498968163039535,-35.32084065582603,-35.972727943211794,-36.18939476413652,-35.38641859591007,-35.534210910554975,-36.09207780426368,-35.68523010471836,-36.03490956546739,-35.698279603384435,-35.03712794231251,-34.22833597101271,-34.970466321799904,-35.57627445971593,-35.35599756799638,-34.48953351052478,-34.40212264750153,-34.53936199704185,-33.79771699104458,-34.68662271788344,-33.72723245853558,-33.8139055557549,-34.59400450391695,-33.64566392311826,-33.427041300572455,-33.63659099023789,-34.40718728909269,-35.05779300350696,-35.93004571646452,-36.18294863356277,-37.005771761760116,-37.36016553454101,-37.77994042355567,-37.09627016214654,-36.10685468791053,-35.24484598264098,-35.1949144359678,-34.348502239212394,-34.06977964006364,-34.08382384618744,-34.474012517370284,-35.27992980927229,-34.41378814401105,-34.626622463576496,-35.489804721437395,-35.894490650855005,-34.95714784273878,-35.336183075327426,-35.472885297145694,-34.855980834923685,-35.27652657777071,-34.94542590668425,-34.757442058995366,-35.19922489486635,-35.55505906697363,-35.283767422195524,-35.13012410514057,-35.38095162715763,-35.325170239433646,-34.59233716502786,-35.054938967339694,-36.03594283293933,-36.00835417537019,-35.93578849174082,-35.443191160447896,-34.590505089145154,-34.53928713221103,-35.18509881431237,-35.13348191045225,-34.74958574818447,-34.81269953632727,-34.32813623640686,-34.91953317541629,-35.61528083542362,-35.64030610723421,-35.75827051745728,-35.10170028731227,-35.90322961146012,-34.97111722128466,-34.5894606038928,-33.99814306944609,-34.176350792404264,-33.666703284252435,-33.46944121969864,-33.07894875109196,-32.936451544985175,-32.46378972521052,-32.75123029341921,-33.58228071080521,-32.931220962200314,-31.994539115112275,-31.206011762376875,-31.71787209995091,-30.754989033099264,-30.75914774602279,-29.85651911003515,-29.931855958420783,-30.619536655023694,-31.095697314478457,-31.071544652804732,-30.51430966053158,-29.97092900192365,-29.578625592403114,-30.43578433757648,-30.744824208319187,-30.073148855008185,-30.41521081980318,-30.612977106124163,-30.465322784148157,-30.616130107082427,-31.317759282886982,-31.31979241920635,-31.8348369859159,-31.347382572479546,-32.02662150049582,-31.906224958132952,-31.20665052998811,-31.519579609390348,-31.906023900024593,-31.059196508023888,-31.9605128983967,-32.630838570185006,-32.843231418170035,-33.650803421624005,-34.092017558868974,-34.97302841208875,-35.174257601611316,-34.87323854863644,-35.55605363147333,-35.45171728497371,-35.28695333050564,-35.29897658480331,-36.28366920305416,-35.627795667853206,-35.2847098633647,-35.65369002427906,-34.869017984718084,-34.4553337385878,-35.2366390042007,-34.280811636243016,-35.212458971422166,-35.16016520280391,-35.31597028346732,-34.582994274329394,-33.768507305532694,-34.043284023180604,-34.28039733506739,-34.22905092407018,-34.64778913138434,-35.20295160356909,-35.613903225399554,-35.90298917517066,-35.07803057366982,-35.74433794710785,-34.80534994183108,-34.10624760808423,-33.94999791868031,-33.01456972025335,-32.63937888573855,-31.90353801101446,-31.891423644963652,-32.07521700300276,-32.771248783916235,-32.59478126466274,-31.70705763855949,-31.535945862066,-31.272311754059047,-30.768912418745458,-30.232561620883644,-30.180686423089355,-31.14325431594625,-31.249208505265415,-30.356005245354027,-30.974959468003362,-31.03119793953374,-30.39046442694962,-31.13180816778913,-30.4033246897161,-30.081133282277733,-30.709915457759053,-31.03602062119171,-30.04630388552323,-30.81030895607546,-31.351484396960586,-31.557204527314752,-32.02225977415219,-32.5073723513633,-31.65126480581239,-31.822353474330157,-31.361205817665905,-31.660600889939815,-32.100732411723584,-32.52917522098869,-32.138297046069056,-32.38542604306713,-33.10672733420506,-33.014329445548356,-32.16638172138482,-32.933574174530804,-32.25705190235749,-32.82048966502771,-32.08118142513558,-31.607509556226432,-30.882448497228324,-30.42994836391881,-30.910989419091493,-30.156769265886396,-31.021739773452282,-31.601976048666984,-30.78657580818981,-30.17838399950415,-30.248719196766615,-30.37608625041321,-29.941668775863945,-29.715879460331053,-29.127202801872045,-28.449307863600552,-29.235074021853507,-28.75186360720545,-28.451300712302327,-29.076058277394623,-28.51899830251932,-27.68232993548736,-28.316801034845412,-28.332538145128638,-28.838469720911235,-28.95195226976648,-28.979732423089445,-28.956029204651713,-28.551235368009657,-27.892842755652964,-28.665632460732013,-27.871297104284167,-27.10590961109847,-26.708064876962453,-27.46615134878084,-26.714834969490767,-25.937119100708514,-25.312926683109254,-24.97664615372196,-24.537457305006683,-24.107348003890365,-23.249817113392055,-22.91871305415407,-22.888461582828313,-22.594447748735547,-21.81445814901963,-21.43233361747116,-22.182640253566206,-22.76036267913878,-23.726358496583998,-24.62296711234376,-24.669832316227257,-23.84310046257451,-24.58256644755602,-23.994317764416337,-24.834713401272893,-24.6932311700657,-24.11257731402293,-23.72097758296877,-22.7837085807696,-23.505507338792086,-22.82485102582723,-23.030129057820886,-22.914574158843607,-23.41985081927851,-22.74163273209706,-22.010601902380586,-21.61804589582607,-21.710428286809474,-22.341372824274004,-21.575162511784583,-21.20962982578203,-21.509059641510248,-21.5113701405935,-22.344786294270307,-22.95919548999518,-23.61561022652313,-22.80034968815744,-22.326805889606476,-23.256238925270736,-23.856176991946995,-23.04364159423858,-23.807572168763727,-23.872395467478782,-24.19376189308241,-23.604176482651383,-23.27730406494811,-23.57429537642747,-23.42237354023382,-24.285515022464097,-24.784478801302612,-25.6213505435735,-25.889436822384596,-25.973503108602017,-25.462759751360863,-24.732257010880858,-25.227595799136907,-24.549136688932776,-24.890960243996233,-24.646087234374136,-24.07211282569915,-24.29153057280928,-24.13275624671951,-24.89516059588641,-24.94863842939958,-25.07767449086532,-24.10260925674811,-23.76497547701001,-23.684751906897873,-23.06293311761692,-23.02160438336432,-23.45280540501699,-23.196262689307332,-22.510635153390467,-22.259722693357617,-22.838834209367633,-23.741956416051835,-24.6476350966841,-24.528373558074236,-23.528620471712202,-23.22919969819486,-22.752637575380504,-23.354047215078026,-23.78140516532585,-22.973246552050114,-22.96356029389426,-22.313201549928635,-22.142377101816237,-22.429823661223054,-22.389230931643397,-22.06390849268064,-21.374621299095452,-21.664313981775194,-21.353021714370698,-22.142478059977293,-22.591253452003002,-22.073325556702912,-21.110821419395506,-21.828198618255556,-21.227843394037336,-20.697881354484707,-21.585583311505616,-21.10741686914116,-20.125213840510696,-20.041218006517738,-20.21013703988865,-21.187890932895243,-21.158674995880574,-20.451232178136706,-20.33604669570923,-19.52121045673266,-18.78234055219218,-19.279271346051246,-19.67540591303259,-20.397372485604137,-20.144403411541134,-20.015685584861785,-19.39540947508067,-18.928371098823845,-19.51077602012083,-18.972021676134318,-19.257681911811233,-19.458109001163393,-19.74005840998143,-18.999409159179777,-19.971244102343917,-19.316209108568728,-18.80290400283411,-19.515316812321544,-20.228855315595865,-19.849286174867302,-19.214855997357517,-19.416298382449895,-19.92204391071573,-19.83805535035208,-18.974473676644266,-19.053351872134954,-19.022752550896257,-18.09748371038586,-18.420263899024576,-18.880225461907685,-19.423226894345134,-19.073905942961574,-18.50442463438958,-18.113607741426677,-17.32282763114199,-17.259259833022952,-17.192839969415218,-17.418757206294686,-17.590253273025155,-18.084583658725023,-18.245387061033398,-18.637335018720478,-18.641040983144194,-19.562707622535527,-20.075915219262242,-19.701701278798282,-19.013067597988993,-18.49790674680844,-18.1426419056952,-17.636823561042547,-17.921723637264222,-17.370669241528958,-16.565160302910954,-17.33135070744902,-17.87181132286787,-17.817084768787026,-17.653919990174472,-17.31998521462083,-16.66350775770843,-16.29692716849968,-16.863827792927623,-17.574995684437454,-17.52570575242862,-17.240129992365837,-17.940483479294926,-17.74075973732397,-17.997537101153284,-18.775140655692667,-17.868104646448046,-17.534127356950194,-16.983793042600155,-16.569546326994896,-17.03571355715394,-17.208229296840727,-17.59486400242895,-16.79306810395792,-16.487928623799235,-16.050043647177517,-15.47569119790569,-15.39702489040792,-16.257365277037024,-15.429634540341794,-14.666999540757388,-13.836020949296653,-13.047848990187049,-12.811363320797682,-12.248947640880942,-13.14114932762459,-12.141307858284563,-12.081231781747192,-12.84757721517235,-12.89819093607366,-13.805977528449148,-14.459154793526977,-14.948412043508142,-14.558279869612306,-14.909208399709314,-15.4059676094912,-14.961764872074127,-14.884403171949089,-15.023715647868812,-14.400390142574906,-13.58380628330633,-13.128768757451326,-13.860028906725347,-13.407609273679554,-13.32179193245247,-13.606179517228156,-12.78437877772376,-12.32575607066974,-12.898877071216702,-13.19262753520161,-12.260877568740398,-12.117197175510228,-11.803426679689437,-12.301715029403567,-11.900347231887281,-11.890417369548231,-10.966912939213216,-11.54483019001782,-11.735428826883435,-10.841022644657642,-10.926104151643813,-10.796961200423539,-9.891353820450604,-9.243899814318866,-8.639285839162767,-8.022379278670996,-7.6972691542468965,-7.584325209259987,-7.43453519186005,-7.228857779409736,-7.132825343403965,-7.69579257350415,-8.039050582330674,-7.929062300827354,-7.860883842688054,-7.853328205645084,-7.770308791194111,-8.534155059605837,-9.462465939577669,-9.64831878989935,-9.89751138491556,-10.357475499622524,-10.472726373933256,-11.261501454748213,-11.71670164493844,-11.166229418944567,-11.876337625086308,-11.289229908958077,-10.539009130559862,-11.034795006737113,-11.845802426338196,-11.41337289614603,-12.07518024602905,-11.448583516292274,-10.890925501473248,-10.984022979158908,-10.200596959795803,-10.299882201012224,-9.50126612558961,-9.256839622743428,-9.836556045338511,-10.173154213000089,-10.146317173261195,-9.537825849838555,-9.467035746201873,-10.427958007436246,-9.881642782129347,-9.629582022316754,-9.860913787968457,-10.222843314055353,-10.69679824449122,-9.857620688620955,-10.51692033931613,-10.612463733181357,-10.7935208696872,-10.025771820917726,-9.110481951385736,-9.853873119223863,-9.39445759402588,-9.96631322009489,-10.760792049113661,-11.03008044231683,-11.126647930592299,-11.135827345773578,-10.858094463124871,-11.176040755584836,-10.862202368676662,-10.06498953839764,-10.271189953200519,-11.123194333631545,-11.303426421713084,-10.747387437149882,-11.111468718387187,-10.405961697921157,-10.30675021884963,-9.647615677211434,-8.9992445432581,-8.727629023604095,-8.34257662249729,-8.056153107900172,-7.4174677724950016,-7.425230102147907,-8.358162916265428,-8.20633612992242,-7.318077966570854,-7.209430279675871,-8.086500005796552,-7.642116094008088,-6.669637420214713,-7.171973412390798,-6.877681699581444,-7.516397760249674,-6.820892724208534,-6.58882401464507,-6.971288905479014,-6.123906888999045,-5.9281003517098725,-5.4056264203973114,-5.881694825366139,-5.592741589061916,-6.455780015327036,-6.113973110448569,-5.9915634714998305,-5.06668560532853,-4.951971262227744,-5.740084630902857,-5.206823825836182,-4.244246094953269,-4.312485954724252,-5.199934544507414,-4.501043244730681,-3.7551761139184237,-2.7923115687444806,-2.894206206779927,-3.2984475707635283,-3.5231008287519217,-3.807728439103812,-3.8647479484789073,-4.134949644561857,-4.67854121979326,-4.731980559416115,-3.7431595944799483,-3.500857540871948,-2.5470928312279284,-2.001253475435078,-2.5943144313059747,-3.0193408844061196,-3.047059031203389,-2.6421056957915425,-2.448942638002336,-3.072892850730568,-2.8341472037136555,-3.073542577214539,-2.5162119274027646,-3.1238705893047154,-3.2205935874953866,-2.4694625167176127,-2.2055707941763103,-2.731108312960714,-2.459461380727589,-2.633891156408936,-3.5984035707078874,-2.6589195895940065,-3.5867335107177496,-2.9170560417696834,-3.146151937544346,-2.854821232613176,-3.6162218106910586,-4.5459005567245185,-4.061028398573399,-4.957692060619593,-5.504128868225962,-5.857018079608679,-5.99636827269569,-5.330752824433148,-4.382506721187383,-3.732475084718317,-4.337960327044129,-4.57318429229781,-4.263422648888081,-4.620484167244285,-5.1792652565054595,-4.2011386579833925,-3.943909185472876,-3.6195550253614783,-2.8835575273260474,-2.839562329929322,-3.511053820606321,-3.419841533526778,-4.195727286860347,-4.479876641184092,-5.1424093237146735,-4.7033735839650035,-3.9030422242358327,-3.2375170597806573,-3.7918760208413005,-4.501389725599438,-5.099915443453938,-6.086727052461356,-5.348890359979123,-5.296855336520821,-5.026038261596113,-5.243812484666705,-4.8560192245058715,-3.883250796701759,-3.427414117846638,-2.5824748184531927,-2.085480355657637,-2.014067993965,-2.591409278102219,-2.5312881325371563,-2.989122272003442,-2.864407818298787,-3.5072539085522294,-4.033180803991854,-3.3704405585303903,-3.425139019265771,-2.952171483077109,-2.902631050441414,-2.9651073217391968,-3.731710682157427,-2.860447194427252,-2.957833474036306,-3.142774908337742,-3.3962937626056373,-3.7650793753564358,-4.2362423674203455,-5.210139963775873,-5.850655122194439,-6.5191775020211935,-6.150385983288288,-5.399604557082057,-6.1006916095502675,-5.27187907230109,-6.203627449925989,-5.520566608756781,-5.802976158913225,-4.96793565293774,-5.085547513794154,-5.880687715951353,-5.367213012650609,-4.964819791261107,-5.4877846469171345,-4.558156680781394,-4.92923716083169,-5.7584098358638585,-6.755259203724563,-7.252997225150466,-6.718122045043856,-7.264726318884641,-7.28618890279904,-6.73068716423586,-7.675707529298961,-8.576708685606718,-8.768720662221313,-8.68816838413477,-9.6216746638529,-9.398859781213105,-9.057051006238908,-8.128386384341866,-8.727476847358048,-9.43127239216119,-9.208912829868495,-10.154190500732511,-9.87150015635416,-10.005147578660399,-10.395580377429724,-10.65777465607971,-11.257022988051176,-11.156338390428573,-11.416664338670671,-11.457878913264722,-11.719076506327838,-12.276193517725915,-13.001728855073452,-12.719103005714715,-11.826560901943594,-11.921678888145834,-11.161006809212267,-11.781407840549946,-10.78906440269202,-11.038158841431141,-10.683602110017091,-11.458089157473296,-11.99752365006134,-12.481002600397915,-12.665664189960808,-13.066175541840494,-13.729114724788815,-13.819093393161893,-13.133848703466356,-12.432917317841202,-11.438450142741203,-10.638191917911172,-10.399354713968933,-10.827296754345298,-11.360622618347406,-10.814391112420708,-10.276622725185007,-10.720509665552527,-9.870766060892493,-9.84569789422676,-10.600946332328022,-11.11205809097737,-10.188788518775254,-9.748746140860021,-9.939010715577751,-10.536327495705336,-11.120668045710772,-10.606863807421178,-10.251711030025035,-9.286244114395231,-9.899371399078518,-9.972435059025884,-9.205480460077524,-9.65014817751944,-10.111530495341867,-9.52985592233017,-9.502534901723266,-9.382062139455229,-8.715931503567845,-9.076795633416623,-8.446902366820723,-7.827178692445159,-6.93864520220086,-6.6581117627210915,-7.601908151526004,-7.316419516690075,-8.303233314771205,-7.552248363848776,-8.056795360520482,-8.052379146683961,-7.068636605050415,-6.227904374245554,-6.668640744872391,-6.988388973753899,-7.891159848775715,-7.223911819513887,-7.5222597401589155,-7.637779155280441,-8.257750641554594,-8.244786058086902,-8.642574141733348,-7.7181491502560675,-7.680569716263562,-8.499293324537575,-7.836221995763481,-7.29180475929752,-7.944831412285566,-8.147290877997875,-8.458367278333753,-8.00871063163504,-8.384434023406357,-8.742824061773717,-9.666564978659153,-10.036473245359957,-10.820123178418726,-10.881535537075251,-11.343517621513456,-10.716058564838022,-11.587202995549887,-10.822462408337742,-11.008279014378786,-11.259048319421709,-11.166094664949924,-11.066442824434489,-11.84877508552745,-12.449908380396664,-12.211366300005466,-11.385495024267584,-11.04308338696137,-11.081960929557681,-10.928811002988368,-10.250355688855052,-9.71476837573573,-10.281640614848584,-10.348715461790562,-11.192935228347778,-10.533462163526565,-10.067140455823392,-10.431727899704129,-10.351642885245383,-9.901834664866328,-9.023569454438984,-8.717296546325088,-9.397729430813342,-9.812753960490227,-9.945729199796915,-8.949997168034315,-8.664891905151308,-9.318248938769102,-9.131950906477869,-8.698952755425125,-8.275528811849654,-7.700858787167817,-8.457497397437692,-9.229622106999159,-10.026116793043911,-10.348606881219894,-10.063501460012048,-9.681705864612013,-9.95763935521245,-10.376150609459728,-9.848946732934564,-8.928469577804208,-9.429570285603404,-8.455512438900769,-8.757406008895487,-8.761444865260273,-8.160695270635188,-9.03030149731785,-8.870938424952328,-9.206360580865294,-9.58533079130575,-8.607640591450036,-8.79439880605787,-8.011819565668702,-7.35852647293359,-7.734702814370394,-8.461950421798974,-7.8793263914994895,-7.7395982150919735,-8.380658046342432,-8.619242798071355,-8.043036970775574,-8.282452389597893,-7.313009261153638,-7.045754671562463,-6.071959695313126,-6.971617470961064,-7.493203472811729,-6.7121976632624865,-6.781680712942034,-6.764865230768919,-6.48872790671885,-5.726320662070066,-4.813199053984135,-4.401780478190631,-3.598530875518918,-4.006633759941906,-3.7428295304998755,-3.8241458176635206,-4.611835890915245,-3.907087611500174,-4.139542617369443,-3.9062689132988453,-4.336260304320604,-4.512748689390719,-4.413798888679594,-4.404275710694492,-3.8646511076949537,-3.657148465514183,-2.691365192178637,-1.9520337921567261,-1.1995688755996525,-1.2015871941111982,-1.4902737201191485,-1.5501882201060653,-1.3835400030948222,-0.7710646293126047,-0.8799412460066378,-1.7760987733490765,-1.3948548045009375,-1.5703241126611829,-0.8909882502630353,-1.7642420916818082,-1.6800918658263981,-1.2755398694425821,-0.9616120182909071,-0.6068253996782005,-1.1996463011018932,-0.7597363688983023,0.08053358783945441,0.14061553170904517,0.811460392549634,1.792334851808846,2.4292400614358485,2.503651277627796,1.9386176695115864,2.5855952613055706,3.2699541854672134,2.4091379563324153,2.0565767269581556,2.7639711797237396,2.0564505411311984,2.395055314991623,2.845142064616084,2.5674998415634036,3.4101258483715355,3.4178946339525282,3.7356603732332587,4.715614482294768,3.9269692809320986,3.9338613054715097,3.3242740966379642,4.002618294674903,3.9783596815541387,4.309425675775856,3.3689533406868577,3.1442903033457696,2.86448757071048,3.10863477922976,2.845642290543765,3.698216955177486,2.755797517951578,2.4498664075508714,1.5600347411818802,2.383976309094578,1.6316747483797371,2.526940966490656,2.6075180736370385,3.2214941615238786,4.193495218642056,3.809034104924649,4.6320350375026464,5.504682215861976,5.175486756954342,6.1172146601602435,7.073189646936953,6.22649656701833,6.34858435112983,6.4786211512982845,6.331700517330319,6.310630069579929,6.711805852595717,6.636308063752949,7.101626799441874,6.675243019126356,6.375885779503733,6.18964507849887,6.9125214740633965,7.652942575979978,7.091544726397842,6.594293265137821,6.309481303207576,6.31924388743937,5.61547254351899,5.425345280207694,5.818955532740802,5.58714001160115,6.279437405988574,7.249828979372978,7.5235083401203156,7.507746184244752,8.431518455501646,9.0737978592515,9.141472663730383,8.240572005975991,8.339540674816817,8.669355415739119,7.715945850126445,6.896602346561849,5.953357272781432,5.709713393356651,5.628089528530836,4.876823748461902,4.274256595876068,4.7296810718253255,3.885851821862161,4.052551199216396,4.824166629463434,5.734043188858777,5.370256499852985,4.4618301200680435,5.356312782038003,4.5957786133512855,4.121203374583274,3.3460997473448515,3.468012675177306,3.440094552002847,2.6578819355927408,2.9307701103389263,2.0464079468511045,2.545204450841993,3.299602570012212,2.9070524582639337,2.7910762652754784,1.9277476728893816,2.059475439134985,1.4016994517296553,1.5323894177563488,0.5633159074932337,1.0314712976105511,0.779622680041939,-0.11459578853100538,-0.6572106182575226,-1.080281496513635,-1.7281979182735085,-1.4218015549704432,-2.0867293840274215,-2.5725660850293934,-3.21562665887177,-2.701462872326374,-3.2634714585728943,-2.446265156380832,-2.82633875310421,-3.0278700087219477,-2.848718635737896,-3.2988931657746434,-3.3960524895228446,-3.0119742075912654,-2.640828894916922,-3.500074914190918,-3.554688916541636,-3.568596262484789,-4.144492392893881,-4.8617164539173245,-4.13653426617384,-3.8924216381274164,-4.546540167648345,-5.504167771432549,-5.855163453146815,-4.876148494891822,-5.846130903344601,-6.068649812135845,-6.537326264195144,-7.138059591408819,-6.576472442597151,-5.9774602935649455,-5.142059654928744,-4.2182908724062145,-3.299302358645946,-3.0813121586106718,-2.1108729070983827,-2.6833685943856835,-2.730120069347322,-2.090623099822551,-1.5133229298517108,-1.5376040670089424,-0.6584208407439291,-0.29739018017426133,0.6743351747281849,0.39480515802279115,1.3132939916104078,1.4388792859390378,2.3954196027480066,1.8562828744761646,1.3297513662837446,1.3580188225023448,0.9117324990220368,0.4059512624517083,-0.13802177272737026,-0.45348233403638005,-0.16469562845304608,-0.7087452737614512,-1.12737383460626,-1.885993127245456,-1.5937171196565032,-0.6407859874889255,-1.2006434118375182,-1.639588087797165,-0.7064877832308412,-1.2083801976405084,-0.5482036513276398,-0.9719764944165945,-1.1573884380050004,-1.6011078828014433,-1.041449788492173,-1.2353751980699599,-0.6737835509702563,-0.7612104001455009,-1.133607229217887,-2.0622668522410095,-2.827130782417953,-1.8861037720926106,-2.4716908778063953,-2.814130289014429,-3.7539471546187997,-3.2883307663723826,-3.5839407802559435,-3.393561363685876,-4.170392605941743,-3.5598013401031494,-3.979467921424657,-3.3223506319336593,-3.531393529381603,-3.7209598016925156,-4.430472436826676,-4.158351791556925,-3.255461418069899,-3.548097067978233,-4.214855242520571,-3.6599109969101846,-4.509022627491504,-4.1263955286704,-4.585935689974576,-5.58255234034732,-5.068256876897067,-5.802140317391604,-6.174479345325381,-6.6605510441586375,-5.834809855092317,-5.336929840967059,-6.076231598854065,-6.1632364662364125,-6.892270673066378,-7.863309986423701,-7.481690114829689,-7.769766037818044,-7.102648144587874,-7.627122621051967,-7.62573689641431,-8.504516251850873,-8.325870116706938,-7.688357101287693,-8.264478985685855,-8.92775940708816,-7.990729400888085,-8.156582084484398,-7.248061839491129,-6.88306975690648,-6.787930435501039,-5.842501893173903,-6.494572939816862,-6.903975129593164,-6.433928328566253,-7.34406066685915,-7.150037923362106,-7.327073907479644,-7.886080161202699,-7.652152390219271,-8.615992533508688,-8.876631845720112,-7.955762270838022,-7.460017487406731,-8.278763940557837,-7.375263873953372,-7.292956105899066,-7.914966614451259,-8.526140812784433,-8.855350736994296,-8.777087206020951,-9.57284763501957,-9.685349231120199,-9.627234068699181,-8.97716958867386,-8.644508474040776,-8.333576834294945,-7.905584563501179,-8.79978422448039,-9.504951818380505,-9.323639879003167,-8.508535482455045,-8.94079369911924,-8.724188663065434,-8.211275191511959,-7.8767564673908055,-8.305967643857002,-7.920709155965596,-8.049979840870947,-7.238040817901492,-7.202003951184452,-8.077664398122579,-7.449689885601401,-6.67324665794149,-6.711554615758359,-7.371871040202677,-6.920361946336925,-6.46403830870986,-7.368600595742464,-7.859997272491455,-7.997012271545827,-8.66184822563082,-9.385795432608575,-8.918575978837907,-8.6629831911996,-7.692582054063678,-7.132681123446673,-6.6829479821026325,-6.996488123200834,-7.190368486568332,-6.663597603794187,-6.948688852600753,-7.902230911422521,-7.733799931593239,-7.371582101564854,-7.078311841934919,-7.321099425200373,-8.073674825485796,-7.847253697458655,-7.157961070071906,-7.186514742672443,-8.111033433116972,-8.943789022509009,-8.415503890253603,-7.591679290402681,-7.387514363974333,-6.826616061851382,-7.331549121532589,-7.47473768144846,-8.021422705147415,-8.958720569033176,-9.176104444079101,-8.368042013142258,-8.38503271760419,-7.910130092408508,-7.717421110253781,-8.489658098202199,-8.479305731598288,-8.291982425376773,-8.503068167250603,-8.514862621668726,-8.854760666377842,-8.277063621208072,-8.070861862506717,-7.296332923695445,-7.163909276947379,-6.744133830536157,-7.386009752284735,-6.90190458111465,-7.225273361895233,-7.9009956805966794,-8.296905860304832,-8.062294125091285,-8.176843301858753,-8.735124649945647,-8.583737918175757,-8.47610360197723,-9.31786590302363,-8.627175354398787,-8.364050801377743,-8.889936612918973,-9.167248961515725,-9.615337878931314,-9.442341917194426,-9.609142980072647,-9.299044364597648,-8.449699819553643,-9.170318629126996,-9.617314155679196,-9.727388435974717,-9.673032887279987,-8.880871372297406,-7.912683871109039,-6.980669531971216,-7.6110320230945945,-7.454965074546635,-6.774656780529767,-6.470606193412095,-7.2653613379225135,-8.220570303499699,-8.653513158205897,-9.187287876848131,-9.963213754352182,-10.11772084236145,-10.508342797867954,-10.272420403547585,-9.369793633464724,-8.646801615599543,-9.373190420679748,-9.694646532647312,-9.281419343780726,-8.996804112102836,-8.123563565779477,-8.254887034650892,-7.79883329430595,-7.641994945239276,-8.350635739974678,-7.413236137479544,-7.434411436319351,-7.713372233323753,-7.884108506143093,-8.42056919913739,-9.086138125509024,-8.645131964236498,-8.071316624525934,-8.639342068694532,-8.790772619191557,-8.075711850542575,-8.223841941915452,-9.061644980218261,-8.462303312961012,-8.548846961930394,-9.125774450600147,-10.016614348161966,-9.36922410177067,-8.39118242636323,-8.560947487596422,-8.717043636832386,-9.302912484388798,-8.694950096774846,-8.712423739489168,-8.662706948816776,-9.652154044248164,-10.543735896237195,-9.699137356132269,-9.289401465561241,-10.263714720029384,-11.094219854101539,-11.375533967744559,-11.762096693273634,-12.066063677892089,-11.615527336020023,-11.96655604802072,-11.282163667026907,-12.050935083068907,-12.184054990299046,-12.819559557829052,-12.851329968310893,-12.327677003573626,-12.866202586796135,-13.373938373290002,-12.375896253623068,-12.859957947861403,-12.628638723865151,-12.822387844789773,-13.208580180071294,-13.182458172552288,-13.434717281255871,-13.063008910510689,-13.767311597708613,-14.457262608688325,-14.15830766921863,-14.714429066516459,-15.626935447566211,-15.815822590142488,-16.246975688263774,-15.917560338508338,-15.171302085276693,-15.133606180548668,-14.981010384857655,-15.82022369839251,-16.222058968618512,-16.52305377367884,-16.101660348009318,-15.745256732217968,-16.44668683083728,-16.50860547926277,-15.615312473848462,-15.168754960410297,-16.155659468844533,-17.026833083480597,-17.577172768767923,-16.77022258983925,-16.588998494204134,-17.58620708854869,-18.410862151067704,-19.154557856265455,-18.246061438228935,-18.27139397058636,-18.806371243670583,-18.343903033062816,-17.736755840480328,-18.612361123319715,-19.049195590429008,-18.181259613484144,-18.54521149257198,-18.028381203766912,-17.454979417845607,-17.66641436330974,-17.31581081263721,-17.70525790238753,-18.118108567316085,-17.89047712413594,-17.625187548343092,-17.904336428269744,-17.63142215507105,-16.667088948190212,-16.55040672654286,-16.42513901228085,-16.62708305940032,-15.659892963711172,-16.536601996514946,-16.11096719233319,-16.33294950099662,-16.918510120362043,-17.427250270731747,-17.550828590989113,-17.21704392740503,-17.479071501176804,-16.994404347613454,-17.903541408479214,-17.71248698886484,-17.61686852388084,-17.51182660833001,-17.122217589057982,-17.287538391072303,-16.718700353521854,-16.798915589228272,-17.3996470104903,-18.38292805571109,-18.31556103657931,-17.78238466801122,-17.26603722712025,-18.129634987097234,-18.828795208130032,-18.294179138261825,-17.64070906722918,-17.226363444235176,-17.05503449263051,-16.88360578706488,-16.073261995334178,-15.073346693068743,-14.138156266883016,-13.375617581419647,-12.443204405717552,-11.44935374474153,-10.842577826231718,-11.760737427975982,-11.508760419208556,-10.71160053415224,-11.072257502470165,-11.926231682300568,-12.291046272031963,-11.884676727000624,-10.951882279012352,-11.646537812892348,-12.359647375065833,-12.472518453840166,-13.238081011921167,-14.06110683362931,-13.182730527594686,-13.699833823833615,-13.529387974645942,-12.89670184860006,-12.661639898084104,-13.129774525761604,-12.860232117585838,-12.946200067643076,-13.659094686154276,-14.181647769641131,-13.457403982523829,-12.673526804428548,-13.121772217564285,-13.570309155154973,-13.799812662880868,-13.392518587876111,-13.449395509902388,-13.436888094060123,-12.977683535777032,-12.985427108593285,-13.181100072804838,-13.256692605093122,-13.979997385758907,-14.590727170463651,-15.312901563476771,-14.468575572595,-13.849853416439146,-14.01085322862491,-13.277253866195679,-13.308934674598277,-12.541245121974498,-12.957827272824943,-12.935163710732013,-12.106434084940702,-11.95550881093368,-11.16612204303965,-10.961048839148134,-11.68810015823692,-11.170362571254373,-11.341513366438448,-10.726546905003488,-11.33534137532115,-11.525627156719565,-12.065928636584431,-12.059375138487667,-11.29923611273989,-11.843195805791765,-12.395130879245698,-12.025003020651639,-12.87915537878871,-12.85528654884547,-13.574710828252137,-13.022718126419932,-12.319357042200863,-11.587925302330405,-12.291773560456932,-11.563677872531116,-11.520455989520997,-10.8464787742123,-11.054423048626631,-10.715028116479516,-11.122617804445326,-10.63508463324979,-10.264214775990695,-9.475861131213605,-9.933374093379825,-10.167717254720628,-9.598722466733307,-8.914443002082407,-8.544504269491881,-9.294366287533194,-9.029982256703079,-9.913236012682319,-10.003623594064265,-9.051101881079376,-8.78462791396305,-8.0918501438573,-7.70740317273885,-6.9929283214733005,-6.281208842527121,-6.194396727718413,-5.2818678533658385,-5.375298018567264,-5.532109816558659,-4.711815805640072,-5.48848491627723,-5.488773283082992,-6.283746998291463,-6.019134967122227,-5.149558823090047,-4.75867057684809,-3.8277246989309788,-3.6764868167228997,-4.05983115779236,-3.6407066015526652,-4.211316066794097,-5.013319759629667,-4.288690621498972,-3.9082656600512564,-3.6300588133744895,-3.8749775858595967,-3.3221467579714954,-3.2419917434453964,-3.3531896341592073,-3.2818260896019638,-3.0167593802325428,-3.067613322753459,-2.3239984554238617,-2.815136803779751,-3.1530346609652042,-3.540188423357904,-3.9402614179998636,-3.7557577416300774,-3.9362963964231312,-4.036714548710734,-4.624508397188038,-4.08567719720304,-4.533035651780665,-4.843316017650068,-5.276733000297099,-4.297079350799322,-4.760171684902161,-3.836468250490725,-4.445958173833787,-4.984018980991095,-4.379092578776181,-4.938327774871141,-4.374700712505728,-4.594676730688661,-5.143110395409167,-4.399994110688567,-4.809953552670777,-4.869735362008214,-5.189476880710572,-4.742681941948831,-4.050366527866572,-3.9837838732637465,-4.791314350441098,-4.718817375134677,-3.9983756500296295,-4.061172308400273,-4.364604830276221,-4.981660712510347,-4.562867464497685,-5.347310376819223,-5.904930934309959,-6.313399534206837,-6.29800169961527,-6.693599402438849,-7.291256892029196,-7.609832555055618,-8.191980780567974,-7.909855212084949,-7.5366923795081675,-8.449756022542715,-7.4875340685248375,-7.106759823858738,-7.7026850478723645,-7.85656604450196,-7.768968780059367,-7.920688539277762,-7.342524516861886,-7.609708156902343,-8.460781274363399,-8.991284703370184,-8.816298861987889,-9.544256181456149,-10.349142766091973,-10.032413235865533,-10.787154448684305,-9.861187995411456,-10.21220099274069,-11.017002222593874,-11.677702380809933,-11.032403000630438,-11.030937516596168,-10.16958288056776,-11.02094722352922,-10.575926307123154,-11.200675153639168,-10.77951180189848,-11.296644216403365,-12.075419654604048,-12.399951019324362,-11.701444372534752,-12.337374770548195,-12.390129982959479,-11.402087063062936,-11.319730849470943,-11.965442549437284,-11.747490747831762,-10.848100375849754,-11.098300599493086,-11.703154741320759,-12.02760720346123,-11.799096554517746,-11.51610603183508,-11.15279530081898,-11.244923267979175,-11.631637043319643,-12.472340354695916,-13.375709130428731,-13.076971080619842,-13.152005358133465,-12.569427779875696,-13.552160830236971,-14.460318317636847,-14.61275175679475,-15.056573015172035,-15.681205593980849,-16.119403602089733,-15.675112644210458,-16.546916656196117,-15.657574913930148,-16.469965843018144,-16.388524557929486,-16.077003019396216,-16.987623020540923,-17.135684244334698,-18.053678619209677,-18.410346753895283,-19.392265158239752,-18.409710460342467,-18.831643457058817,-17.98183957580477,-17.675601752474904,-17.11025353288278,-16.773427790030837,-17.10722075216472,-17.08984243636951,-17.082933580037206,-16.788635871373117,-16.655113720335066,-16.824783470947295,-15.910090731922537,-15.682568211108446,-15.150991863105446,-14.654231302440166,-14.80985875800252,-15.790226728189737,-16.7157302335836,-17.33079684432596,-16.59817327139899,-17.160206644330174,-17.59743820456788,-18.092377594672143,-17.824697302654386,-18.71019634930417,-18.97871239297092,-18.239242349285632,-17.881819494999945,-17.230807989370078,-17.86367627326399,-17.474824566859752,-17.277706294320524,-17.804995072074234,-17.21396307600662,-18.090005865320563,-17.36022200109437,-17.859419051092118,-18.72506531327963,-19.393364440184087,-18.82650770433247,-19.273047603666782,-18.88604376465082,-19.438506744336337,-20.15407397504896,-19.58306532120332,-19.60287142265588,-19.665797093417495,-19.977376681752503,-20.34655402135104,-19.835856326390058,-19.048627810087055,-19.978717604652047,-19.22842432325706,-18.527201618999243,-18.660840017255396,-19.43525398010388,-18.59218745632097,-18.54740870371461,-19.071739627514035,-18.410932844504714,-18.162599035538733,-18.092166109010577,-18.15831281384453,-17.600179065484554,-17.539324239827693,-17.621778738684952,-17.676594137214124,-16.89741804637015,-15.927934967912734,-15.945631883572787,-15.300812911242247,-14.669379234313965,-13.938121481332928,-14.100535411387682,-13.257970954757184,-14.23054779926315,-14.567838019691408,-13.633371249772608,-14.068615651223809,-14.243265505414456,-14.20916864136234,-13.877185470890254,-12.97058967128396,-12.96547997649759,-13.524995842948556,-13.775458146352321,-13.530906894244254,-13.628067928832024,-13.121067348401994,-12.408696253784,-12.996459105517715,-12.367787152994424,-12.725283688865602,-12.593549008481205,-13.41817764332518,-13.673373127356172,-13.519356050994247,-13.461845809128135,-14.206926507409662,-14.824680870398879,-14.522921585012227,-14.594462667126209,-14.415480576921254,-14.032110201660544,-13.816029916983098,-14.44437576038763,-15.288682241924107,-15.846355541143566,-15.333453512750566,-15.105388969182968,-14.674202390480787,-14.874599144328386,-14.713837020099163,-14.156247896607965,-13.265939271077514,-14.200199521612376,-14.959332670550793,-15.36435723444447,-15.616097875870764,-14.971673564985394,-14.22242919402197,-14.190274960361421,-13.627046496141702,-14.28913999022916,-13.925525909289718,-14.119402959942818,-14.404110644944012,-14.903400361537933,-15.222016364336014,-15.58697544503957,-16.240339994896203,-15.88917538151145,-15.05956677813083,-15.012105589266866,-14.701782066840678,-15.030784115195274,-15.80911625828594,-15.537716745398939,-16.270598351955414,-15.977538947481662,-15.85647730436176,-15.771240585949272,-14.922206555958837,-14.824109778739512,-15.18205798463896,-15.032062275800854,-14.72958025475964,-13.8870297241956,-13.436729541514069,-14.388581073842943,-13.802597548812628,-13.821570594329387,-14.319368353579193,-14.339999623596668,-13.43377837492153,-12.977513066492975,-12.90117223141715,-13.44136866601184,-14.082882736809552,-14.210402130149305,-14.101152093615383,-14.398212510626763,-14.834663745947182,-14.410612361039966,-14.331406466197222,-13.948089343030006,-14.805484347511083,-13.851235293783247,-14.83446590648964,-14.810457199346274,-13.837967616971582,-14.438252083025873,-14.511310236528516,-14.962814128026366,-15.40370590845123,-14.685612230096012,-14.043051472399384,-15.037830083630979,-14.298831593245268,-13.84453800180927,-12.882110296282917,-13.044995077420026,-13.503260747529566,-13.461290748324245,-12.510540035553277,-12.890260411892086,-12.840248350054026,-13.308805449400097,-14.287395005580038,-14.583495311904699,-14.67418065899983,-15.427855182439089,-15.39653693139553,-15.43943621404469,-14.480734766460955,-13.543282853905112,-14.28726467024535,-13.952831916045398,-14.006718147546053,-14.554810369387269,-15.223358740564436,-15.695269581861794,-15.59433088451624,-16.13433353509754,-17.005077651236206,-17.87362149450928,-17.792308559641242,-17.500079890247434,-17.960755721200258,-18.64175909385085,-18.361322758719325,-17.709054932463914,-18.617858858779073,-19.30354525335133,-20.2290639472194,-19.249270303174853,-18.509147009346634,-17.893583042547107,-18.54130530031398,-17.60251854546368,-17.55639734491706,-16.807329488452524,-16.691970054525882,-16.09800980007276,-16.029996774625033,-15.248367647640407,-15.083812405355275,-14.968006019946188,-14.481365356594324,-15.361632012296468,-15.314050501212478,-15.757409388199449,-15.93648927193135,-16.6451944578439,-16.378435537219048,-15.678137562703341,-15.561653982382268,-15.746357983909547,-16.72607528558001,-16.164846730884165,-16.949098015204072,-17.27503410866484,-16.61065655713901,-17.487133221700788,-17.851886264514178,-18.07669451041147,-17.87077231425792,-18.09100627247244,-17.622163951862603,-18.26474766014144,-18.453023258130997,-17.98721856204793,-17.394557630177587,-17.895861903671175,-18.86909249285236,-19.117369479034096,-19.008424825035036,-19.49509198917076,-19.581150085199624,-18.775020245462656,-19.28619594871998,-18.290101532358676,-18.124608419369906,-18.01863987511024,-17.42233977187425,-17.16918473644182,-17.246953186113387,-18.164205599576235,-17.568528858944774,-18.521723953075707,-18.259069135412574,-17.475351322442293,-16.71437394944951,-15.888809269759804,-16.371726687066257,-16.920415870845318,-17.583637537434697,-17.84922299068421,-18.211247354280204,-17.840227934066206,-18.784778037574142,-19.019906709436327,-18.650129901245236,-19.142639571335167,-19.30670736823231,-19.484697953797877,-20.471650013700128,-20.730609443970025,-20.7147453580983,-21.126676837913692,-20.447169380728155,-19.658818719908595,-18.985472516622394,-19.76940781902522,-20.29151843721047,-20.592069793958217,-20.276136970613152,-20.874617896974087,-21.51156668458134,-21.223425986245275,-22.13045095000416,-21.869021403137594,-21.642316911369562,-22.015047053806484,-21.924794324673712,-21.684108328074217,-21.882852400187403,-20.99993705842644,-21.331546485889703,-21.172451416030526,-20.81038636341691,-21.441198425367475,-21.15606287959963,-21.54193866159767,-21.712241088971496,-20.87554986681789,-21.650479747913778,-21.3556766808033,-21.60811712173745,-20.88816775381565,-20.411754448898137,-20.240221158601344,-20.872652313206345,-21.138726673088968,-21.056496914941818,-20.698568519670516,-20.84319642977789,-20.830208925530314,-20.69386098580435,-21.662288886029273,-21.811699880752712,-21.214251649565995,-20.52156336326152,-21.286480145528913,-20.564354720059782,-20.103934259153903,-20.07302680518478,-20.54391257185489,-20.966767680365592,-20.16212316043675,-20.08869284624234,-20.196222552563995,-19.812261731829494,-20.202778273727745,-19.868025127332658,-19.222597738727927,-18.26498764846474,-19.110318805556744,-19.56388084264472,-18.82311980193481,-19.63467146968469,-20.075813522562385,-19.091049442533404,-20.003026826307178,-19.592426707036793,-19.86387479165569,-19.939042356796563,-19.447125838138163,-19.047656285576522,-19.872244708705693,-19.538231413345784,-20.122839270625263,-19.47099395142868,-18.5343593605794,-19.00922321761027,-19.063869851175696,-18.652592084836215,-18.927981440443546,-19.705180492717773,-18.893802162259817,-18.37950410367921,-19.18520487146452,-19.421186153776944,-19.55886547220871,-19.948150997515768,-19.575546083040535,-20.124803298618644,-20.381063599139452,-20.995696984697133,-20.816975427791476,-21.73651442071423,-21.699973593000323,-22.344041521195322,-22.733169817831367,-22.98857369692996,-22.074518674518913,-21.969288709573448,-22.313640366774052,-22.475367411971092,-21.575029133819044,-21.7390488111414,-22.16039456333965,-22.039448629599065,-21.840784972067922,-21.31411421811208,-20.473629773128778,-19.83186902757734,-19.4835002576001,-19.38428648142144,-18.46036294195801,-17.79042751295492,-17.262552780099213,-18.181534111499786,-18.92201048275456,-18.204645643476397,-18.927672021090984,-19.596881531644613,-19.471361779607832,-19.909175745677203,-20.77329962560907,-21.193340541794896,-20.65271410625428,-21.090808514971286,-21.20882165012881,-20.765320506878197,-20.052543493919075,-20.470124028157443,-20.902427866123617,-20.300485302694142,-19.644419374875724,-18.913862398359925,-19.872792295645922,-20.049569822847843,-19.456962823867798,-19.88950288342312,-19.447298367507756,-20.19302135007456,-20.789869550149888,-21.294565393589437,-21.90303090400994,-21.012187238782644,-20.616127719637007,-21.439424575772136,-20.528299842961133,-19.95544346794486,-20.714618801139295,-21.57259228825569,-20.7752081817016,-21.621427671518177,-20.891744391527027,-20.78736726520583,-20.779865271411836,-20.146902761422098,-19.214957314543426,-19.291404131799936,-18.630858364980668,-18.979858717415482,-19.788775254040956,-20.770928618032485,-21.406537683214992,-21.81173825263977,-21.053973144385964,-20.364771181717515,-21.292296127881855,-21.664997212123126,-21.920864088926464,-22.507349397521466,-21.760879340581596,-22.008193807210773,-21.610853389371186,-21.0199713120237,-20.074530149344355,-20.46977859735489,-20.354025518521667,-20.60896596778184,-19.918776215054095,-20.15070603834465,-19.258853471837938,-20.257156926207244,-19.33173923706636,-18.78663275996223,-17.84704808006063,-17.368284621741623,-17.05319389840588,-18.036986857652664,-19.021204222925007,-18.639996814075857,-19.266519089695066,-20.25829942058772,-20.352005851920694,-20.472166846506298,-20.39354693563655,-20.470217807218432,-20.167320700362325,-19.493235368281603,-20.007060872856528,-19.456943805795163,-20.200114384293556,-19.757619105745107,-20.470445819664747,-20.74132766481489,-20.966543746180832,-21.314409580547363,-21.995677865576,-22.90215702028945,-22.453719757962972,-22.675555048510432,-22.477404568344355,-21.679266514256597,-21.514293897897005,-20.717520527541637,-20.09695899579674,-20.56507684988901,-19.923758700024337,-19.85922172339633,-18.981308137532324,-18.085675997659564,-17.508411881979555,-17.9408330116421,-17.574385861400515,-18.503085483796895,-18.085417770780623,-18.146236247383058,-18.356613853946328,-17.40172785008326,-18.373219130560756,-18.842259918805212,-19.428925916086882,-18.641628387849778,-17.7762641585432,-17.036644764244556,-17.496995916590095,-16.79459794657305,-16.037582573480904,-15.084592903032899,-15.1440623216331,-14.664208823349327,-14.152230982668698,-13.758185076061636,-14.29892249731347,-13.553787434939295,-13.412229048553854,-12.549735113047063,-12.86915046069771,-13.703890269622207,-14.623737880494446,-14.717864705715328,-14.87330074608326,-15.783597009722143,-15.112609218806028,-14.597147749736905,-15.03787882765755,-15.72487827995792,-16.4885871023871,-16.79094707267359,-17.74075859738514,-17.672770175617188,-18.17643422121182,-17.20328080607578,-16.87679032748565,-17.184551738668233,-16.393533071503043,-15.925709794741124,-16.17386027984321,-16.244079476222396,-15.83045931532979,-16.481198951601982,-16.634941209107637,-17.162706014234573,-16.688389386050403,-16.586173430550843,-17.532862277701497,-18.16749184112996,-17.338467129971832,-17.411232902202755,-18.30933429952711,-17.94673268729821,-18.423375544138253,-18.207444957457483,-18.26749571179971,-18.167924373876303,-17.61506808595732,-18.394740560092032,-17.7691496941261,-18.39696069341153,-18.580213750712574,-18.66383743751794,-19.573088347911835,-18.82238717796281,-18.703251293394715,-17.87263418501243,-17.83560042642057,-18.27006166288629,-18.894357973709702,-18.037320812232792,-17.800555501598865,-17.082458183169365,-16.906070734374225,-17.448791311122477,-17.856020072940737,-17.66388052282855,-17.913607095368207,-17.51161117479205,-17.489877582062036,-18.197630212642252,-18.422894878778607,-19.27456273045391,-19.163251406978816,-18.467385039199144,-17.814158159308136,-18.705556738656014,-19.699988425243646,-19.21069148881361,-19.238242730032653,-18.571658589411527,-18.044176911003888,-18.70818188181147,-19.519938279874623,-18.636367538478225,-18.069104759488255,-18.09011862007901,-17.65079499129206,-17.589828648604453,-18.447963855229318,-19.216581929009408,-18.63714757654816,-18.385856189299375,-18.9011207902804,-19.85629261797294,-20.294728931970894,-19.35026952624321,-19.597571313381195,-20.15710092242807,-20.747253344859928,-20.385976737365127,-21.290275895036757,-21.762307561468333,-21.168057062663138,-20.229875658638775,-21.09312008926645,-21.490522130858153,-20.63241645367816,-21.25611259182915,-21.725269966758788,-21.433803253341466,-22.33739555347711,-22.19841316808015,-22.866810177452862,-22.66721220733598,-21.908353191800416,-20.941065885592252,-21.70568741671741,-21.632359483279288,-20.946900390088558,-21.38334006583318,-21.89687005383894,-21.031797107774764,-20.52396954782307,-20.193581134546548,-19.801245759241283,-19.742339076008648,-19.95344802364707,-19.39815946528688,-18.789364447351545,-18.030634802766144,-17.669182212091982,-17.01063705701381,-17.391889101825655,-16.519837240688503,-15.949555525090545,-16.731132854241878,-17.62847940903157,-16.75485252775252,-16.103955847211182,-16.597123338840902,-16.992319406475872,-17.839439813047647,-17.769492556340992,-17.745320158079267,-18.33245495101437,-18.04715048475191,-17.10199081664905,-17.735296670813113,-17.713227888103575,-17.16529011912644,-16.49114579614252,-16.17097609117627,-15.403711242601275,-14.789010828360915,-14.729225740302354,-15.66092176688835,-16.272848672699183,-16.720183504745364,-17.65620925836265,-17.84354357747361,-17.046974788419902,-17.854200244881213,-18.05421572783962,-17.058183879125863,-16.52118186512962,-16.860887113492936,-16.455919252708554,-17.006548769772053,-16.77622217312455,-17.438151963986456,-16.46216472517699,-17.23606105381623,-17.744594691321254,-17.071380408480763,-16.97943611489609,-17.17505020275712,-17.302639265544713,-17.981752661522478,-17.902213773690164,-17.21274275612086,-17.70055882446468,-18.125992686022073,-19.08847256191075,-19.547058526426554,-19.704415703658015,-19.149159462656826,-18.325718380045146,-18.335246276576072,-18.589819706976414,-18.16628208756447,-18.497767698485404,-18.18784652138129,-17.376796103082597,-17.09092547604814,-17.81703773047775,-18.435443182475865,-19.308118146378547,-19.375286129303277,-18.757687360979617,-18.73814227897674,-18.74556838069111,-18.55572717403993,-19.311958590056747,-20.203413891606033,-20.736462767235935,-19.993634740356356,-19.464310398790985,-19.35233636153862,-19.258430622983724,-19.52792049245909,-20.30787275219336,-20.417053574230522,-20.88685307977721,-19.959803274832666,-19.583170116879046,-19.237844636198133,-19.39730962878093,-18.905014772433788,-18.49304954102263,-18.194152783136815,-18.76563593838364,-19.355277792550623,-18.700759046245366,-18.135360384359956,-17.8988681207411,-17.386511442251503,-17.346915922127664,-17.079075211659074,-17.645875565242022,-17.666581196710467,-18.193660493940115,-17.696353488136083,-18.47372115822509,-17.61697703972459,-17.30884984647855,-16.604482309427112,-16.29395049996674,-15.31411961466074,-15.737426098901778,-16.40406952658668,-16.060519496444613,-16.285747978370637,-15.65579325100407,-14.736137035768479,-15.492278619203717,-16.394191628322005,-15.605349389836192,-15.464476551860571,-15.319506381172687,-14.799216478597373,-14.955758270341903,-14.748969661537558,-15.101069850381464,-15.172688425052911,-15.643248029984534,-15.352642650716007,-14.752533936407417,-14.791206459049135,-14.00109073985368,-14.477791091892868,-15.258736575953662,-14.420717704109848,-13.623407649807632,-13.675542529672384,-14.370306946802884,-14.391430911142379,-15.187293217983097,-15.976957370527089,-15.480329183861613,-16.128130631987005,-15.808178342413157,-16.783431047108024,-16.258549062535167,-15.475300018209964,-16.10209155874327,-16.125301606487483,-15.536363264545798,-15.48210400622338,-15.958019335288554,-16.17512008920312,-16.655580560676754,-17.51749822963029,-17.885707666631788,-18.414878307841718,-18.583090448286384,-18.59070130670443,-18.33887630980462,-18.954881978221238,-18.719667272176594,-19.628588614054024,-19.92202182067558,-20.136717510875314,-19.81124258460477,-19.164146757684648,-18.671465795021504,-18.518766480032355,-19.0255806283094,-18.923713869415224,-17.980247443076223,-17.391211610287428,-17.006579420063645,-16.97016660636291,-16.56580153061077,-15.734887681901455,-15.272948453202844,-14.584056004416198,-14.244249400682747,-14.355923383496702,-14.547312151640654,-15.275133357848972,-15.43532286817208,-15.531252547632903,-16.015984262805432,-16.47441758401692,-15.984115645755082,-15.716545945499092,-14.934321557171643,-15.253645301330835,-14.988061525393277,-14.007054267451167,-13.612663033884019,-13.301908491645008,-12.331902067176998,-11.659210435580462,-10.705137229524553,-10.187197577673942,-10.619491001125425,-10.216786701232195,-9.300164381042123,-8.519854684825987,-9.403611964080483,-10.293907487764955,-9.604483555071056,-8.831328485161066,-7.867478853091598,-8.074095485266298,-7.602407016325742,-7.8043706035241485,-8.631387392058969,-8.254849234130234,-7.691685379948467,-8.336157910525799,-8.09947012225166,-8.504392767325044,-8.1604223260656,-7.910235859919339,-8.788661484606564,-8.960241256281734,-8.609252663794905,-8.723344346508384,-8.568840257357806,-7.879341539461166,-7.497533667832613,-6.732553266454488,-6.266801530960947,-6.630210560746491,-7.607997321523726,-8.422041662037373,-9.081614314578474,-9.86113440291956,-10.201548973564059,-11.193477592431009,-10.84182271687314,-11.303695335052907,-11.010903690941632,-10.074163765646517,-9.111358478665352,-9.610933193936944,-10.579467810224742,-10.874371740035713,-11.63757399097085,-12.088684962131083,-12.186344654299319,-12.84468176169321,-12.819106128066778,-12.795512571465224,-12.211457631085068,-12.818166109733284,-12.293597500771284,-12.198930117767304,-12.62334065977484,-11.888876573182642,-12.453631709795445,-12.753824767190963,-13.276048521976918,-13.13648366741836,-13.261123694479465,-12.905987175181508,-13.756729216314852,-13.369887329172343,-13.661574986297637,-12.95886505767703,-13.088500930927694,-12.187391301617026,-12.440593630075455,-12.158044502604753,-12.590695010498166,-12.310556032229215,-11.451774142216891,-11.533684166148305,-12.288367681670934,-12.466939745936543,-13.40022413758561,-12.581074139568955,-13.32216696580872,-12.856532396283,-12.457115391734987,-11.569280269555748,-10.712313840631396,-11.299283816013485,-11.476479959208518,-10.729604212101549,-10.154817027039826,-11.137224385980517,-11.154218042269349,-11.959620633162558,-12.233408090658486,-13.19145861454308,-12.834089706186205,-12.3415092905052,-12.83846799004823,-13.83103642333299,-12.909652231261134,-13.35226093698293,-13.33282621577382,-13.57415636908263,-13.181692965328693,-12.989248637109995,-13.449981657322496,-13.758224389050156,-14.67925445875153,-14.696969508193433,-14.767863115761429,-13.896667774766684,-14.421135986223817,-14.738921099342406,-14.170167380478233,-14.460824124980718,-15.270900346338749,-15.7881337152794,-15.111488095950335,-15.522725968621671,-15.55719478521496,-14.817999900318682,-15.402549729216844,-14.98187622288242,-15.893662351649255,-15.600503631867468,-15.950705976225436,-15.77317522186786,-15.767026066314429,-16.271416867617518,-17.073095505591482,-17.287273441441357,-17.097737268544734,-16.984118013177067,-16.89236162463203,-17.321208951994777,-17.961817008443177,-18.50332986190915,-19.47461169678718,-19.38677118625492,-20.016344878356904,-20.68825446581468,-19.88653229083866,-19.409905817825347,-19.051665083039552,-19.273844154085964,-18.850138258654624,-18.848498102277517,-17.878312537446618,-17.890695250593126,-17.545623064041138,-17.142521320376545,-17.363621244672686,-18.254734413232654,-18.777520840987563,-18.79990530386567,-18.821490216068923,-19.565827331040055,-20.488929798826575,-21.325351838953793,-21.328617993276566,-20.81146506452933,-21.31821918906644,-20.934891501441598,-20.253848595079035,-19.68244855105877,-19.85381908947602,-20.59822855098173,-21.49604612728581,-22.38813075562939,-23.14159354334697,-22.61211715405807,-22.259237630292773,-21.349897637031972,-20.540151367429644,-20.09535846672952,-20.545386916957796,-19.841863308101892,-20.703435546252877,-20.760743662249297,-20.83041546214372,-21.085583592765033,-20.545713098254055,-20.480774897150695,-21.156486668158323,-21.265514022205025,-21.807062534615397,-21.443471936509013,-20.493302912451327,-20.81816771114245,-20.60635373974219,-21.15240978077054,-21.017182520590723,-21.04056848306209,-21.099048377480358,-20.2798415934667,-20.410869464743882,-20.327519657555968,-20.54851819574833,-21.452029986307025,-22.38920028368011,-22.639000283554196,-22.566758257802576,-22.640355547890067,-22.244592481758446,-22.129581737332046,-22.807583939284086,-23.781615016050637,-23.718377633951604,-22.754556982778013,-22.759012767579406,-23.24772273749113,-23.804466551169753,-23.17130282893777,-22.263269613031298,-21.69464983837679,-20.72411936800927,-20.27103924099356,-20.237811675295234,-19.34255248028785,-19.266366371884942,-19.46100696688518,-19.529946880880743,-20.029763196129352,-19.984655281994492,-19.48758104769513,-18.516729549504817,-18.999894601292908,-19.370211203582585,-18.637712526600808,-18.36619353154674,-17.830741852521896,-18.34267102694139,-19.04265727987513,-18.694398297462612,-19.364000560250133,-19.969776439946145,-20.274234065320343,-19.894388241227716,-19.969398704823107,-19.864606983028352,-19.50954546360299,-18.783066986128688,-17.864596084225923,-17.266272434499115,-17.27268878556788,-17.145853873807937,-17.628656456712633,-17.019738199654967,-17.550385498441756,-17.072831452824175,-17.00590495299548,-16.011339308228344,-16.109369304031134,-16.294181616045535,-16.5699069397524,-16.34173525404185,-17.29194447537884,-18.1468160697259,-19.063255633227527,-19.589638724457473,-20.081907858606428,-19.846885362640023,-19.086855658795685,-19.185727515723556,-18.550577154848725,-18.700823478400707,-18.919506300240755,-18.458221077919006,-18.29389158030972,-18.065515802707523,-18.944526442792267,-18.899424601346254,-18.089870345313102,-18.737174151930958,-18.071699215099216,-18.517977965064347,-17.66775159863755,-17.961015607696027,-18.251512795686722,-18.72668690048158,-18.900404981337488,-19.33564151637256,-20.12821175903082,-20.85553539963439,-21.628004651051015,-21.892797918058932,-20.974939607083797,-20.09707441320643,-19.396961166057736,-18.401560042519122,-17.950729409232736,-18.45163545012474,-18.2322046905756,-18.815905117895454,-19.54604069981724,-19.551044393330812,-18.58751697698608,-18.511799538042396,-18.329643928911537,-18.374229269102216,-19.275691505055875,-19.020546023268253,-18.695509632118046,-19.693215830251575,-18.747075193561614,-17.897899622563273,-17.2625250807032,-17.559341619722545,-16.595472629647702,-17.013050959911197,-17.74724468542263,-17.64636350190267,-18.189404255710542,-19.056608477141708,-19.30486439075321,-19.38640372827649,-20.373347381595522,-19.432746711652726,-18.440632609650493,-18.72200633632019,-18.96116473665461,-18.947090171743184,-18.83902169391513,-19.414413967635483,-19.260925243142992,-19.00917736859992,-19.129824153147638,-19.01413656724617,-18.582267303951085,-18.823065789416432,-18.88514413824305,-19.152525410987437,-19.297014149837196,-19.023035402409732,-18.910664960276335,-19.114060236141086,-19.23182554077357,-19.23842819361016,-18.98385455319658,-19.924072928726673,-20.749177461955696,-21.658604169730097,-22.3670538472943,-21.845892265439034,-22.769138812553138,-22.39238030416891,-23.11792855989188,-23.606781874317676,-23.04207685403526,-22.839694326277822,-23.634262800682336,-24.430683818180114,-24.798032633960247,-24.193896876182407,-24.55094940913841,-24.102854534517974,-23.174357610289007,-22.278066052589566,-21.961528371088207,-21.760123322717845,-21.100048596039414,-21.008250588551164,-21.35993627179414,-20.463823599740863,-20.72369635105133,-21.379684410989285,-21.29653561161831,-21.875955750700086,-21.23114779498428,-20.927305437158793,-21.821233020164073,-22.451612717472017,-22.103378283791244,-22.527924452908337,-22.555894285906106,-22.30490990402177,-21.454518948681653,-20.58464268874377,-21.395481958519667,-21.01338817505166,-20.36958298832178,-21.199824564158916,-20.689576759003103,-20.02650845516473,-19.417835446074605,-18.93357627885416,-19.750258679501712,-20.747810280881822,-19.952775333542377,-19.067787640262395,-19.43994611222297,-18.67651990801096,-18.195036189164966,-18.455434761941433,-18.613070897292346,-18.375094432383776,-18.465050150174648,-18.72440761141479,-18.03899414371699,-17.132476810831577,-17.44585900893435,-17.774396328721195,-17.858774248044938,-18.812471628189087,-18.257560253608972,-17.448351396713406,-17.169867554679513,-16.575319250579923,-16.24364169081673,-16.431126323528588,-15.613175313919783,-15.918909096624702,-16.877725364174694,-17.12212756741792,-17.403764685150236,-17.638832138851285,-18.020256132353097,-18.953951851464808,-18.36301513016224,-18.852793643716723,-19.835454632993788,-19.099297779612243,-19.560834562871605,-20.03820667974651,-20.233677354175597,-21.032171350438148,-20.603827523998916,-20.02669063862413,-20.38632332161069,-21.027624703012407,-20.749587727710605,-20.036905576940626,-20.801601748913527,-20.89568951865658,-21.407965993508697,-21.929349227808416,-22.157500167377293,-22.813058843370527,-23.56552273640409,-22.7397295339033,-22.58526957873255,-23.398835821077228,-22.473994094412774,-22.431566012557596,-21.69812893634662,-21.320100297685713,-21.166185156442225,-20.48839582549408,-20.040802099276334,-19.75810916442424,-19.038195379078388,-19.169473642949015,-19.20610396331176,-19.093938095029444,-19.389328950550407,-18.567916381172836,-18.094214336480945,-18.410647046752274,-19.163774192798883,-19.23377491440624,-18.705147799570113,-18.746004562359303,-19.673185360152274,-19.628700418397784,-19.21864706836641,-20.18274092115462,-20.838184165302664,-21.047111991792917,-21.230435793753713,-20.39890287583694,-21.32346042105928,-21.08528697490692,-21.839811376761645,-22.61952574364841,-22.958405901212245,-22.229262247681618,-21.520804721862078,-22.306970515754074,-22.152350917458534,-22.34977881470695,-21.521574947983027,-21.378561104647815,-22.283928429242224,-21.550275013316423,-21.290637471713126,-21.295860982034355,-21.359054390806705,-21.651502687018365,-22.291102377697825,-22.545842497143894,-21.884463344234973,-22.770616440102458,-23.187371203675866,-22.599159312900156,-22.72658524196595,-21.99864055821672,-22.74978400580585,-23.40066463407129,-23.623720787465572,-23.929274348542094,-24.117880383506417,-23.866401155944914,-24.2305268147029,-24.82052211742848,-24.3387496676296,-25.127240771893412,-25.6327641941607,-25.27366764098406,-24.420631849672645,-23.589746478013694,-24.420897440053523,-25.31753553915769,-24.97616202617064,-25.762519353535026,-25.286480051930994,-25.92780049983412,-25.947407130151987,-26.76351827569306,-27.229497375432402,-26.56893635354936,-27.505838316399604,-27.038793059065938,-27.033487601205707,-27.882467079907656,-28.246117376256734,-28.17785032792017,-28.224417828489095,-29.1458982094191,-28.208759900182486,-27.314438722096384,-26.603368523065,-26.36184560507536,-26.411544425878674,-26.9081876501441,-27.269156532827765,-27.783476954326034,-27.456763996742666,-26.54283933294937,-27.058272547554225,-26.125670722685754,-25.29836397105828,-26.150329855736345,-27.121246713213623,-26.693130099214613,-27.44514244934544,-27.012037449516356,-27.159859570208937,-26.57136343838647,-26.049594399053603,-25.684664104133844,-24.714261677116156,-24.761481477413327,-25.576423216145486,-26.532871772069484,-27.26195742515847,-28.07215014146641,-28.553640279453248,-29.321926539298147,-29.911040209699422,-29.28605353925377,-29.779043402522802,-29.128865854348987,-28.50961699616164,-27.5198638564907,-28.184160586912185,-28.23168481560424,-27.71819551754743,-28.12311956100166,-29.073443732224405,-28.54096303647384,-29.212904893793166,-29.394559937994927,-29.902132763527334,-29.51724742911756,-30.054417863022536,-29.44018832081929,-29.27794033009559,-29.109293933026493,-28.964006339665502,-29.954982534982264,-30.561109290923923,-30.500522601418197,-30.11997485300526,-30.389277479145676,-30.350698655471206,-30.541219503153116,-30.602504060138017,-30.67606183513999,-31.296906779054552,-31.95306877652183,-31.84004243230447,-31.420696523040533,-30.785518934950233,-31.641444499604404,-30.957567026373,-31.70121304364875,-30.807966185268015,-31.203549047466367,-31.160531111061573,-32.01136757899076,-32.385566365905106,-31.642931748647243,-31.627731586340815,-31.29907382791862,-30.703977952711284,-30.33865258982405,-30.07208248274401,-29.27900388184935,-28.749526320490986,-27.801310231443495,-26.880333700682968,-26.418435653671622,-26.20804133126512,-27.093197129666805,-27.035045746248215,-27.371303592342883,-28.146275631152093,-27.383580713998526,-26.950595112983137,-26.993342030327767,-25.994471142999828,-25.026696340180933,-24.75074849044904,-24.72684869589284,-25.65987646812573,-26.03214514022693,-25.593612334690988,-25.494628154672682,-25.39700715849176,-25.172505381982774,-25.081848724279553,-25.50004148297012,-25.538821930531412,-26.218674830626696,-25.80647238716483,-25.32173154503107,-25.96862900722772,-25.747837462928146,-25.985496239736676,-26.944003600627184,-25.977659780997783,-25.88149189669639,-25.1090087601915,-25.902049301192164,-26.034296257887036,-27.008085979614407,-27.731335227843374,-27.62896691216156,-26.66767174517736,-26.318785747047514,-26.453881337773055,-26.060573703143746,-25.137711797375232,-24.184121896978468,-23.79574768152088,-24.611233941745013,-24.24267888907343,-23.496054474264383,-23.135152949485928,-23.669890432152897,-23.372105553746223,-22.920094213448465,-22.84255061065778,-22.27084868727252,-22.351271199062467,-22.27382192807272,-23.008241361472756,-22.63698864961043,-22.127623450476676,-23.039250786416233,-22.909834833815694,-23.004404297098517,-23.200699392706156,-23.064890762791038,-22.46186470100656,-23.354839120991528,-23.581906197592616,-23.766155877616256,-23.590104280039668,-22.692760710138828,-23.60343063203618,-23.799733475781977,-23.770082978066057,-23.84807471325621,-24.054648415651172,-24.349489680491388,-23.938975487370044,-24.041988980490714,-24.241575297899544,-24.716745305340737,-24.958930778782815,-24.75202059140429,-25.427570117637515,-24.857880260329694,-25.453446764033288,-26.233701076824218,-26.848855649121106,-27.49824001500383,-27.699405142571777,-27.585408518090844,-28.204947428312153,-27.62456107744947,-27.94414039514959,-28.783338023815304,-28.665651510003954,-29.009278093930334,-29.551269528456032,-29.082263989839703,-29.299567945301533,-28.81892667664215,-28.29344963375479,-29.260249071754515,-29.009018760174513,-28.200401853770018,-27.46694919327274,-27.176234585233033,-27.93659438425675,-28.025436026975513,-28.23302720161155,-27.75210864795372,-27.614751347340643,-27.22318757744506,-27.54185184231028,-26.93082526838407,-26.516229706350714,-26.305885324720293,-26.638793962541968,-26.903093073982745,-26.582052449695766,-25.930056016426533,-26.44825498946011,-26.032371209934354,-26.515007588546723,-27.220577800180763,-27.163377828430384,-27.6903739804402,-27.514410531613976,-27.109915496315807,-27.397577146533877,-27.926432113628834,-27.538793422747403,-27.45662431837991,-27.393284536432475,-27.74925687396899,-27.641126800328493,-28.004550762940198,-28.544355916325003,-27.845911382697523,-27.941459264140576,-28.856206795200706,-28.03497311938554,-28.47509432816878,-28.506593216210604,-27.975068347528577,-27.068746981676668,-27.079838745296,-27.055689475499094,-26.195467106532305,-25.78670268598944,-26.120060918852687,-25.36767725693062,-24.744488299358636,-25.439992174506187,-24.65184730803594,-24.133318406064063,-24.681117442902178,-25.52143206447363,-26.214306382928044,-26.0403405809775,-25.05978477234021,-25.708853374700993,-25.142050797585398,-25.32107385015115,-25.803090284578502,-25.736873233690858,-24.839812491554767,-25.70058054290712,-25.69797071116045,-26.65081839915365,-27.071193136274815,-27.268372701946646,-26.959635764360428,-26.878427936229855,-26.403174712788314,-27.28180440189317,-26.880194779485464,-27.331649641972035,-26.98957374598831,-27.313446725253016,-27.45768705382943,-28.350251991767436,-29.210435012821108,-29.80094347987324,-30.746358076110482,-31.051962648052722,-31.376387652009726,-32.27788878371939,-32.66185184754431,-31.99872837541625,-31.69031965173781,-31.815636328887194,-32.18704092130065,-31.36359113128856,-31.55270378384739,-32.16290160175413,-32.88179869111627,-32.92767851660028,-33.611007826868445,-34.54978607688099,-33.854427229613066,-33.37141204532236,-33.2353076711297,-34.11753457132727,-33.477707530371845,-34.07131817005575,-35.04621211066842,-34.10591947613284,-33.499815977178514,-32.94151272252202,-33.70380298001692,-34.44569777837023,-34.287592311855406,-33.29330932768062,-33.210070355795324,-33.72548632975668,-34.04805646883324,-34.45754164084792,-33.544453921727836,-33.561795375309885,-33.45253060711548,-32.84600135870278,-33.48006831901148,-32.720273685175925,-33.04705987172201,-33.49239782663062,-32.819523743353784,-32.883141175843775,-32.86118252109736,-32.85599480383098,-32.3240186185576,-31.54283927474171,-31.409647170454264,-32.16709983581677,-32.35460540326312,-31.36195034114644,-31.772582520730793,-31.21006174897775,-31.313915280159563,-31.84719889285043,-32.507998866960406,-31.956267841160297,-32.16050198674202,-32.41526536364108,-32.87915784213692,-31.97294222889468,-32.759308899287134,-32.13531378423795,-33.063050710596144,-33.431753118522465,-32.5520864748396,-32.382349198684096,-32.70240495726466,-33.05075926706195,-32.07105550263077,-32.353106547147036,-32.298095622099936,-31.839085215702653,-31.004470736719668,-30.575249650981277,-30.270892257336527,-30.52558553032577,-31.270743926987052,-30.746017376426607,-31.000919208861887,-31.58644550619647,-31.810192524455488,-31.464282180648297,-30.66571121616289,-30.868915328755975,-30.23864365881309,-30.041522338520736,-30.244502121582627,-30.81606757454574,-30.868265052791685,-31.184626556932926,-31.332781489007175,-31.24090780504048,-31.0236237058416,-31.86796980490908,-31.196037218905985,-31.916014634538442,-31.995144010987133,-32.72702842671424,-32.37170684104785,-32.98971786769107,-32.05521832453087,-31.87021376332268,-31.370756656862795,-31.06667259801179,-30.97469884250313,-30.233963708858937,-30.470953626092523,-29.77113971300423,-30.22206475958228,-31.125371583737433,-31.470801851712167,-30.69929825561121,-29.81314015062526,-29.195150654762983,-29.061858006287366,-29.351565749384463,-29.969211068935692,-30.184583853464574,-29.964714501053095,-30.71673200605437,-30.538397977128625,-30.70219384273514,-29.738484253641218,-29.434974598698318,-30.07472970476374,-30.964006784837693,-30.509425146505237,-29.857076038606465,-29.715780476108193,-29.81480225827545,-28.819210760761052,-28.423657500185072,-28.95637016603723,-28.399206001777202,-29.29773619910702,-30.12923949956894,-29.545884264167398,-29.37661937903613,-28.96049298439175,-29.237888678442687,-28.980026338249445,-29.623387776780874,-29.391347710974514,-29.156008068006486,-28.632496735546738,-28.48833329603076,-29.034005193971097,-28.847470765933394,-28.054007238242775,-27.803659891244024,-28.02476214710623,-27.238815469667315,-27.143924592528492,-26.575372510123998,-26.24474868364632,-25.921389509923756,-26.466784307733178,-25.657351973466575,-25.338826258201152,-24.513956542126834,-24.950015040114522,-25.576627819798887,-25.271382813341916,-25.839020965620875,-26.1549211316742,-26.93860539374873,-27.664536920376122,-27.16456833621487,-27.00505641847849,-26.64550185063854,-27.139475016854703,-27.062228546943516,-26.58308372274041,-27.391147297807038,-26.902011398226023,-26.212592243216932,-26.419850666075945,-25.650140319485217,-24.829284499865025,-25.463117318227887,-25.363378374371678,-25.026208975352347,-25.842230293434113,-25.248545938637108,-25.858552625402808,-26.851503638084978,-25.924864506348968,-25.00488525722176,-24.899258013349026,-25.80429899599403,-26.53084444301203,-27.220141955651343,-26.447307147085667,-26.73189345980063,-26.17274287575856,-25.60429483372718,-25.050774830393493,-24.52356527466327,-23.886050103697926,-23.985665636137128,-24.297482062596828,-23.454638385679573,-22.888929687906057,-22.754383793100715,-22.15223288210109,-22.754438795149326,-22.855764593929052,-22.195276676211506,-22.976137007120997,-22.653623532038182,-22.46835130127147,-22.605546104256064,-21.709732566494495,-21.6229261434637,-21.490047495346516,-20.585380769334733,-21.51452235598117,-22.305556531064212,-22.152296661399305,-21.51621560798958,-22.004521139431745,-22.117067265789956,-22.663342074491084,-22.00438634585589,-22.942402535583824,-22.23398332344368,-23.099215427413583,-22.75136522203684,-23.26558850798756,-23.72667307127267,-24.21294763823971,-24.237404965795577,-24.364858481567353,-25.262406995054334,-26.195622199214995,-25.20023065758869,-25.20509831700474,-24.789410958997905,-24.375027092173696,-24.905620735604316,-25.663963928818703,-25.661678589414805,-26.567161980550736,-26.795376024208963,-26.639713088516146,-27.047335061710328,-28.036593660712242,-27.079405365977436,-27.86195093486458,-28.49110956955701,-28.40202152170241,-27.551035080570728,-27.967220582533628,-28.354603309184313,-29.336443914100528,-29.744621851481497,-30.178342474624515,-29.263150987681,-28.48516879649833,-29.282460753805935,-28.459651158656925,-29.0473243733868,-28.09926040377468,-28.73503332491964,-28.67612440371886,-27.82706638146192,-28.687781451735646,-29.59121175482869,-30.334391119889915,-30.03481254912913,-29.133386948611587,-28.158420758787543,-27.556513532996178,-26.764829793479294,-27.624209155794233,-26.929759598337114,-26.81684566149488,-25.922557617072016,-25.60035838279873,-24.953296205960214,-24.887541991192847,-24.279521962162107,-24.800537280738354,-24.493914410937577,-25.40646289056167,-25.00320575525984,-25.43199414294213,-25.635204042773694,-25.429108856711537,-25.363206778187305,-24.72114480054006,-25.130326899234205,-25.868209683336318,-25.136771211400628,-26.021650941111147,-25.140796321444213,-24.166121481452137,-24.586291536223143,-23.612341166473925,-22.972749245818704,-23.01281629409641,-22.977283402346075,-22.095054041594267,-21.49284079251811,-22.162374624516815,-22.331597623880953,-23.069050764199346,-23.451833894476295,-22.648838290013373,-22.145321692340076,-22.994488082826138,-22.16635104874149,-22.389668393414468,-23.348822243046016,-23.12772736977786,-23.030518805608153,-22.547707530669868,-22.66044431598857,-22.078576806001365,-21.092927724123,-21.86193497898057,-21.852702961768955,-21.49328494956717,-21.647335081826895,-20.94190299231559,-20.104778992477804,-19.953149947803468,-20.315909145399928,-20.180245733819902,-19.8484673127532,-20.020532003603876,-19.591921917628497,-19.97910671774298,-19.010466631967574,-19.887049318756908,-19.290067725349218,-20.247038829606026,-19.98572688549757,-19.52052266476676,-19.682306891307235,-19.632963279727846,-19.15801247395575,-18.565801439341158,-19.021405659615993,-18.75383484410122,-18.409818785265088,-19.32690900238231,-18.75745542999357,-19.17586521524936,-19.74476235313341,-19.155455372296274,-19.600418277084827,-19.447114938870072,-19.59742347197607,-18.631455447990447,-17.927948964759707,-17.547235878184438,-17.87630763463676,-17.184688402805477,-16.245151511393487,-16.26726651377976,-16.29376473138109,-15.53628603555262,-14.650249664206058,-14.061253658961505,-14.328875131905079,-14.059985589236021,-14.26221221871674,-14.869448879733682,-14.95453765289858,-15.651687492616475,-15.786137335468084,-14.817376827355474,-14.649772358126938,-13.80170972039923,-13.969585108570755,-13.28605529293418,-13.47756913676858,-12.53891551727429,-13.537116420455277,-13.715694533661008,-13.12532392796129,-13.790356567595154,-13.715425323694944,-12.893846607301384,-13.601514532230794,-14.52953393990174,-14.227492021862417,-13.513315147720277,-13.209936208557338,-13.79545913822949,-14.581375825684518,-15.02340215537697,-14.339238167740405,-13.794220177456737,-12.988347894046456,-13.367706521879882,-12.370853058528155,-12.037636099383235,-11.355328016448766,-11.821398285217583,-12.27721618488431,-12.977677057031542,-13.805369065143168,-13.037854695226997,-12.278215541969985,-13.017143353354186,-12.437947080936283,-13.331307081505656,-12.494533646386117,-12.225272040814161,-11.77370699448511,-11.924411595333368,-12.24028468830511,-12.384938416071236,-11.389671668875962,-11.096603407058865,-10.248024126980454,-9.712037729099393,-10.229839846026152,-10.778344408143312,-11.405437488574535,-12.28078302089125,-12.103856305591762,-11.11397753469646,-11.716544699855149,-12.398556048981845,-12.541677710134536,-11.710294849704951,-11.131906392984092,-10.189984110184014,-10.66639981418848,-10.576947297435254,-11.12739434093237,-11.62060630461201,-11.757901050616056,-12.563275147695094,-11.986962940078229,-12.081981296185404,-12.259905536659062,-11.88950919546187,-12.575747235678136,-12.682477345690131,-12.582336629740894,-12.253208560403436,-13.133164684288204,-12.43780954554677,-11.960506573785096,-12.938181458041072,-12.631806700490415,-12.478372036013752,-12.554585117381066,-13.310621731448919,-14.258508104365319,-13.441712312866002,-13.429124560207129,-13.825994000770152,-14.188726565800607,-13.802069330587983,-13.89744516601786,-13.589258030056953,-14.024249189998955,-13.128226466942579,-13.79749112855643,-13.598778290208429,-12.613931326661259,-12.266730019357055,-11.92521045729518,-12.72297426359728,-11.877640201710165,-11.52143610920757,-12.513448906131089,-13.390609549824148,-12.845346783753484,-12.183825411368161,-12.28728157049045,-12.348128254059702,-12.585319570731372,-12.7040912238881,-12.29993966082111,-11.610691401641816,-11.316918457392603,-12.002880384679884,-11.769620533566922,-10.807187644764781,-9.865916842594743,-9.913456410635263,-9.5197643507272,-9.505052065942436,-9.327416164800525,-8.41162318829447,-9.375242842361331,-10.337321375496686,-10.601426115259528,-10.647126897238195,-9.981803719419986,-8.994282668922096,-9.710213670972735,-10.467918728478253,-10.900085288565606,-11.424450360238552,-11.5763771943748,-11.585273761302233,-10.612912067212164,-10.618453972507268,-11.099621886853129,-11.694434884469956,-11.793134713545442,-11.680803272873163,-11.209873425774276,-10.26028705528006,-10.50359391188249,-10.04436113499105,-9.820089749060571,-10.257314709480852,-9.346008522901684,-8.862407979089767,-8.775816759094596,-9.237977228593081,-9.399608462117612,-9.07028860365972,-8.340032080654055,-7.720123045612127,-7.884539554826915,-7.959976435173303,-8.01624311087653,-7.6190161649137735,-8.013907650019974,-8.259345850907266,-7.560439676512033,-6.580393949989229,-6.017633761279285,-5.979712574277073,-6.567920030094683,-6.91732238419354,-6.984212537761778,-6.326497522182763,-5.917965221218765,-6.438255696557462,-5.438930629286915,-6.262050827033818,-5.5083325039595366,-5.545795279555023,-6.086499818135053,-6.639021884649992,-7.166493996977806,-8.129358804319054,-7.270578510593623,-6.651815032120794,-6.322401609271765,-7.157457228284329,-6.56893861386925,-6.128344866912812,-6.439425393939018,-6.973528327420354,-6.3958018072880805,-7.06938485475257,-7.547086052130908,-6.743867054581642,-6.222995124291629,-6.435763289686292,-6.697500803973526,-6.589866148773581,-5.959912770893425,-5.0665063336491585,-4.073342848569155,-3.2574499011971056,-2.970184028148651,-2.9523267466574907,-3.5912176901474595,-4.12744021601975,-4.003147687297314,-3.4145105769857764,-4.337355288211256,-4.1771143968217075,-3.6674706749618053,-4.3340979591012,-4.035607952624559,-4.522788581904024,-5.1706397398374975,-4.429149636998773,-4.393372274003923,-4.901364587247372,-5.3613963313400745,-4.955772489309311,-5.002509924583137,-5.264972736127675,-6.202213210053742,-5.744132434949279,-5.0740097956731915,-4.640101666562259,-5.406201187055558,-4.650635132566094,-4.070204807911068,-3.6722285808064044,-4.629220541100949,-3.681867439299822,-4.368640696164221,-4.173698975238949,-3.782979008741677,-4.0333300130441785,-4.9701614738442,-5.151156615465879,-5.3779894364997745,-5.273620985914022,-5.178680974058807,-5.977747907862067,-6.314010871108621,-6.159997145179659,-6.461727244313806,-6.018288464751095,-5.1379497814923525,-5.336968193762004,-5.6573443855158985,-4.942259441129863,-4.664661751128733,-4.2775421142578125,-4.3380544278770685,-4.8459604531526566,-4.4767377795651555,-4.361647253856063,-5.036160071380436,-5.823973753489554,-6.304407071322203,-7.114951888099313,-7.393795412499458,-6.699788356199861,-7.072107729502022,-7.767163848970085,-8.514644005801529,-8.696684105321765,-9.65410535549745,-10.182059650775045,-9.593568079639226,-8.652274303603917,-9.281152020674199,-9.925682249944657,-9.149928760249168,-9.215323229320347,-9.005951360333711,-9.651723111514002,-8.93419477948919,-9.574784693308175,-9.631301640998572,-9.486694612540305,-8.790807192679495,-9.32816104311496,-10.01398128643632,-9.686294508632272,-10.601298085413873,-10.117452051490545,-10.299396217335016,-9.364425719249994,-10.33158978773281,-10.48170333635062,-9.588009319733828,-9.221762023866177,-9.321536145173013,-8.481550115160644,-7.963581691030413,-8.198922290932387,-7.555052533280104,-8.049413372762501,-8.117480632849038,-7.93879931839183,-7.980839570052922,-7.093136335257441,-6.418064170982689,-6.67660768609494,-6.910728426184505,-5.987583029083908,-5.113427314907312,-5.300574542954564,-6.126032682135701,-6.339258749037981,-6.145300864242017,-7.143193135038018,-7.564702405128628,-8.431759524624795,-8.827008626889437,-8.41360922344029,-9.412616540212184,-9.639910661615431,-10.035001248586923,-11.033931371755898,-11.245912660378963,-10.865960840601474,-11.705356499180198,-12.445072974544019,-13.248236239422113,-13.348538283258677,-12.654699128586799,-12.058350187726319,-12.738552677910775,-11.78219321416691,-11.703589254058897,-12.326005646958947,-13.037738933693618,-12.914406785741448,-13.34107401035726,-13.453947264701128,-13.783806113991886,-14.405848389491439,-14.778717175126076,-14.86341538792476,-15.744491671212018,-16.514432129450142,-16.776053198147565,-17.15227857977152,-16.937462653033435,-17.0911147701554,-16.455658411141485,-15.700644709169865,-15.550728642381728,-16.22075804369524,-16.54753670981154,-16.94559482857585,-17.244511342141777,-17.637553710956126,-16.97119198832661,-16.28618270577863,-15.758798597380519,-15.998983839061111,-15.046640746295452,-14.579462508670986,-13.763235898688436,-13.31087855855003,-13.3949089134112,-13.834068724885583,-13.544384464155883,-13.511810408439487,-12.764924785587937,-13.494156447704881,-14.031165030319244,-14.492835993412882,-15.438335622660816,-14.584257371723652,-14.180081895086914,-13.34163927519694,-13.249411380384117,-13.684006372932345,-13.098219178617,-13.760528470855206,-12.848030254244804,-11.890406171325594,-12.53764247847721,-11.837334711570293,-11.036809453740716,-10.507996555883437,-9.808576151262969,-10.54879245068878,-10.791926228441298,-10.305019684135914,-11.056911089457572,-11.487224497832358,-12.350650968495756,-12.640987679362297,-13.366101456806064,-12.656215767841786,-12.15433440124616,-12.504700934048742,-12.439634381327778,-12.055026401765645,-12.82650457136333,-13.45658993627876,-12.8707948862575,-13.212261357344687,-12.910190419759601,-13.361166718415916,-12.740345168393105,-12.76912144292146,-11.99853314133361,-12.903647286817431,-12.817118448670954,-12.992095027584583,-12.438129244372249,-13.335280881728977,-14.026448657270521,-13.551341610495001,-12.877549726516008,-12.004572844132781,-12.394545110873878,-11.749221335165203,-12.654367127921432,-12.072227157652378,-11.800013321917504,-12.360919207334518,-12.4552740030922,-13.352701294701546,-14.166411980986595,-13.385645441245288,-12.982144549489021,-12.829345304053277,-13.661161687225103,-14.180773405358195,-14.478590844664723,-13.616136189550161,-14.47716253483668,-13.499081198126078,-12.700956423766911,-12.609610906802118,-13.16812203032896,-12.640083736740053,-12.667598596774042,-11.68934543337673,-10.819514313712716,-10.036394096910954,-10.02857801457867,-9.632107981014997,-9.792276096530259,-10.52787152864039,-9.544557893648744,-8.628045946359634,-8.132334340829402,-8.38412429811433,-8.913107939995825,-9.313009810168296,-9.626334170810878,-9.884039660450071,-10.243861302733421,-9.511745826806873,-8.936020252294838,-8.3820971227251,-7.588152083568275,-8.421399169135839,-7.7527460707351565,-7.00776774995029,-7.847422482911497,-7.903073528781533,-8.342820342164487,-9.195316433440894,-9.664316177368164,-9.242974979802966,-8.56584171205759,-7.970928930211812,-8.755842370446771,-9.018966928590089,-9.769735493231565,-10.17528560757637,-10.155142701696604,-9.387621091213077,-10.12980718864128,-9.749639380723238,-10.715920110233128,-10.73128687730059,-10.256936332210898,-11.092481742147356,-10.741453184280545,-10.625509506091475,-10.845324428752065,-10.967101080343127,-11.127880928572267,-10.813423871994019,-10.52746279258281,-10.829009755980223,-10.031536588445306,-10.701849231962115,-11.224079949315637,-10.379506094381213,-9.432060174178332,-8.652589824981987,-9.48749075550586,-9.543025833088905,-8.84622743865475,-9.126859676092863,-8.339190408587456,-7.865748155396432,-8.205866911448538,-7.573736646678299,-7.493801808916032,-6.600995207671076,-6.6858872207812965,-7.105270324740559,-7.21115736104548,-8.154980273917317,-8.867329721339047,-8.926016782876104,-9.773235191591084,-9.254843218252063,-8.96295868838206,-8.826260240282863,-8.558624967001379,-8.88306625885889,-9.687135729007423,-9.095760473515838,-9.325336563866585,-9.180089687462896,-9.800865234341472,-10.4989990638569,-10.640501802321523,-10.97148914122954,-11.45940691465512,-11.027079452760518,-11.716224499046803,-11.749970643781126,-11.074265636503696,-10.750450502615422,-9.94503186410293,-8.946018762886524,-8.98697358975187,-9.05887156771496,-9.627786736004055,-8.759840777143836,-8.003297618124634,-8.597006204538047,-8.510212154127657,-9.342068342026323,-9.587277972139418,-8.599729374982417,-8.225580742582679,-9.041847511194646,-9.139818483497947,-9.697535953018814,-8.950180819723755,-9.595742546953261,-9.911602899897844,-9.724370935931802,-9.990888823755085,-9.684941838029772,-8.82018195092678,-9.776442354544997,-9.472385271452367,-10.322330066934228,-10.330301952082664,-9.61748221796006,-9.076116319280118,-9.135331127326936,-9.211298307403922,-9.845292085781693,-8.864966449327767,-8.1063047577627,-7.908378010615706,-7.262999466154724,-7.106717330403626,-7.510020902380347,-6.986863884143531,-6.962750567588955,-7.735346974339336,-8.078738326206803,-8.048034220933914,-7.734031659550965,-7.441556763835251,-7.516887541394681,-7.757580300793052,-6.759341536555439,-6.0913661839440465,-6.237029619514942,-7.017887393478304,-6.792064169887453,-6.267826520372182,-5.404999227728695,-6.018147468101233,-5.609468556940556,-5.692453887313604,-5.139313226565719,-4.322474437765777,-3.8576083476655185,-2.993755454197526,-2.729182635433972,-2.2615756853483617,-1.2998045273125172,-0.6173376408405602,-0.8147547184489667,-0.56413648230955,-0.14393505174666643,-0.493323921225965,-0.7787812426686287,-1.7130831512622535,-2.605528579093516,-3.408671939279884,-3.9695027698762715,-4.019955599214882,-4.285824260208756,-3.838705245871097,-2.8920906633138657,-3.6405854835174978,-2.838430002797395,-2.6722978996112943,-3.272528444416821,-2.6140254586935043,-2.6051514502614737,-2.5946147055365145,-2.849129651673138,-2.7364395488984883,-3.673841531854123,-3.9694678192026913,-3.010533053893596,-2.8821205045096576,-2.2957350774668157,-1.7859673956409097,-1.1107141617685556,-0.9071344933472574,-1.323950134217739,-1.5059175649657845,-1.760185815859586,-2.1514644832350314,-1.4167029783129692,-0.6381644699722528,-1.2299036206677556,-1.9224447566084564,-1.686721628997475,-1.90413186699152,-2.3883414291776717,-1.5121573051437736,-1.5279189269058406,-2.1501727220602334,-1.5548345460556448,-1.3399081276729703,-1.7550114942714572,-1.8207136546261609,-2.3432864481583238,-2.4639962608926,-2.579795823432505,-2.3387112012133002,-3.108860284090042,-2.823516790289432,-3.4910606634803116,-3.7659133817069232,-2.9248849651776254,-3.448556016664952,-3.0029820832423866,-2.7062348127365112,-3.358362678438425,-3.9736717571504414,-3.0471095982939005,-3.3424515915103257,-3.1680035763420165,-2.7530002375133336,-3.510515881702304,-3.2978015593253076,-2.6999959060922265,-3.4721453562378883,-4.3470692546106875,-4.034833497367799,-4.797203798312694,-4.7498860554769635,-4.150704012718052,-5.062759190797806,-5.095021911896765,-5.012952207587659,-5.754808749072254,-6.514980236534029,-6.156326415017247,-5.764380110427737,-6.198057697620243,-5.4438987243920565,-5.9303884780965745,-6.112544578500092,-5.70431180531159,-6.351579723414034,-5.453700668178499,-5.88346293522045,-6.635617139283568,-6.539007500279695,-5.914972064085305,-6.620350664481521,-6.909419394098222,-6.355818666983396,-7.177661911584437,-6.368165104649961,-7.131312920711935,-7.849383273627609,-7.410099554806948,-6.640157889574766,-6.856231834273785,-6.120237526483834,-6.137082789558917,-6.522771844174713,-5.818595996592194,-6.049713212065399,-6.368110380135477,-7.073875098954886,-6.640465078409761,-6.462337443605065,-7.038906550500542,-7.6638126987963915,-6.774135845713317,-6.038004409521818,-5.273550072219223,-5.414669842459261,-6.25465393345803,-5.830529432743788,-4.9336983994580805,-4.69946155231446,-5.012200627941638,-5.067450650036335,-4.317997583653778,-3.9512622905895114,-3.0440846076235175,-3.7056137155741453,-3.813273694831878,-3.8506751428358257,-4.228919148445129,-4.8572665536776185,-5.605108558665961,-4.939005920197815,-4.399044438265264,-4.962924307677895,-4.647325425874442,-5.014448240399361,-5.683342202566564,-4.917688213288784,-4.471128427423537,-3.9023038274608552,-3.643397318664938,-2.8299924335442483,-3.2247533164918423,-3.7593907276168466,-3.2610338530503213,-3.1292944797314703,-3.1205694414675236,-3.5563034396618605,-4.046746110543609,-4.351619136985391,-4.2725294549018145,-3.4266869919374585,-2.6874159295111895,-2.581521139945835,-2.5420794072560966,-2.27315766364336,-1.6192730977199972,-2.593010683078319,-1.9836020497605205,-1.9855527584441006,-2.798762683290988,-2.468149034306407,-1.602373240981251,-1.270566238090396,-1.8105072006583214,-1.8159967702813447,-2.595490464940667,-2.5873359832912683,-1.9969479576684535,-2.444848660379648,-2.2536217058077455,-2.512581346090883,-2.0123592698946595,-1.0899310633540154,-1.8075319635681808,-1.4291383335366845,-0.9228315865620971,-0.7922924682497978,-1.002883252222091,-0.7242845171131194,-1.2434194283559918,-1.2702188328839839,-1.9076553992927074,-2.723994039464742,-3.6988347130827606,-4.339759984053671,-3.61096598347649,-3.094603916630149,-3.244820146355778,-4.110907698515803,-3.7160228113643825,-3.9711110405623913,-4.409391669090837,-4.105067417956889,-3.5969587061554193,-4.19368842523545,-3.4702708586119115,-2.516419562511146,-2.668276386335492,-2.280461811926216,-1.4631783324293792,-0.8670164844952524,-1.767243548296392,-1.153638836927712,-1.7044233870692551,-1.1164421197026968,-0.5673454110510647,-1.2743926797993481,-0.7628798759542406,0.010756149888038635,-0.4519563149660826,-0.06023577181622386,0.6746689714491367,0.7001982880756259,0.5693739694543183,-0.09330262197181582,-0.08782786224037409,-0.8956105271354318,-1.5724282059818506,-0.9525570305995643,-1.3468567649833858,-1.1938346358947456,-0.3841495322994888,0.537338244728744,-0.3230051714926958,-0.05328759038820863,0.5701374523341656,-0.1292698197066784,-0.1317908950150013,0.45286454912275076,-0.4185344991274178,-1.2727645547129214,-1.0034205629490316,-0.959189223125577,-1.8124781674705446,-2.49050508858636,-3.0069621400907636,-3.588679610285908,-2.890667997300625,-3.351108368486166,-3.835054535418749,-2.956131630577147,-3.7662268872372806,-3.3708837893791497,-2.5968018784187734,-1.8293316666968167,-2.797099603805691,-2.8246549260802567,-1.8736570295877755,-1.3463337034918368,-0.7570108291693032,-0.5295890192501247,-0.32073809253051877,-0.8942778273485601,-0.0461614103987813,0.29902741266414523,0.13913864409551024,0.622994284145534,-0.07310930313542485,0.013162626419216394,0.9121871483512223,0.24447906715795398,-0.1256600241176784,-0.297930845990777,-0.09772714786231518,0.7014422905631363,-0.07452733162790537,-0.6767728268168867,0.18797629978507757,-0.39236011262983084,0.01190652186051011,0.02093021897599101,-0.8864053636789322,-1.6362858237698674,-2.558065741788596,-2.750073934905231,-3.1771485530771315,-3.3400711552239954,-4.0217805611900985,-3.9241264392621815,-4.499119506683201,-4.48657019296661,-3.909231004770845,-4.0024615614674985,-4.875498319976032,-5.507833067793399,-5.7956351628527045,-6.261540276464075,-5.8888924163766205,-6.744780541397631,-6.596799646969885,-5.634260753169656,-5.62035145284608,-6.444522005971521,-7.373986572492868,-7.449338226113468,-7.7252722922712564,-7.603585821110755,-7.985632930416614,-8.437068522442132,-8.82845475524664,-9.501529486384243,-8.83317972254008,-8.377786397468299,-8.85219920007512,-9.399330453481525,-9.035991409327835,-9.983370402827859,-10.096481540240347,-9.169975510798395,-8.968647133558989,-8.676902691833675,-8.834702314343303,-8.234749768394977,-7.282832262571901,-6.545969132333994,-6.295875067822635,-5.7255528955720365,-5.88712097145617,-6.75383435189724,-7.061474596150219,-7.74893001280725,-7.28622252587229,-7.030697943177074,-6.141737269703299,-6.254572138655931,-5.7294928431510925,-6.633129328023642,-7.57161356927827,-8.429735885001719,-7.848615195602179,-7.293929577339441,-6.477127818390727,-7.218993712216616,-7.54309524782002,-8.32457623211667,-8.4468699907884,-9.042852012906224,-8.29441640805453,-8.206742745358497,-8.592226599808782,-9.415089009329677,-8.74012741772458,-9.58143331296742,-8.92000351473689,-9.818208457902074,-10.678767371922731,-10.121338551864028,-10.375453624408692,-10.31064686132595,-10.058641750831157,-9.306061846669763,-8.984357136301696,-9.307904923800379,-8.317397417966276,-7.396715579088777,-8.131103184074163,-7.980777087621391,-8.283482380211353,-7.6637962609529495,-8.04694677842781,-7.734393025748432,-7.014552580658346,-6.55010039312765,-6.989784049335867,-6.035453716758639,-5.771513901185244,-6.655335935764015,-6.637375519610941,-6.0683888318017125,-6.898684675805271,-6.876777221914381,-6.350974281318486,-5.5077103790827096,-6.440635981969535,-6.838132244069129,-6.076815087813884,-5.881254496052861,-5.743002710398287,-6.684640822000802,-6.829049340914935,-6.794294343329966,-7.713740883395076,-7.746636779978871,-8.504369808826596,-8.333934207446873,-7.98650787724182,-7.170767338946462,-7.435200380627066,-7.506466485094279,-8.278138956055045,-9.243386150803417,-9.813557179179043,-9.477246698457748,-8.825256243813783,-9.339765490498394,-8.837583029642701,-8.192323638126254,-7.2011260646395385,-6.749328182544559,-6.791597168892622,-6.245062080677599,-6.518489472568035,-5.803064097184688,-6.128130340017378,-6.794916341546923,-6.83344126585871,-6.0291284951381385,-5.706327984575182,-6.292636279948056,-6.186634021811187,-6.306575752794743,-6.135020463727415,-6.176645299419761,-6.854492631275207,-6.692895528394729,-6.663867285475135,-6.094585292972624,-6.532985323574394,-7.340285985264927,-8.13458584761247,-7.411685414612293,-8.192812050692737,-7.904480496887118,-8.693345620296896,-9.160511356778443,-9.963614012114704,-9.878318811766803,-8.892862733453512,-9.520639865659177,-9.49001545831561,-10.271864634007215,-9.888920571655035,-8.927620864473283,-8.383564248215407,-8.131837719585747,-7.657945005223155,-8.042068843729794,-7.303166107274592,-7.350745260715485,-6.911452458240092,-6.06068179057911,-5.0963946911506355,-5.781188265886158,-6.371235046070069,-6.759782440494746,-6.5484308656305075,-6.604182926006615,-6.70089112687856,-6.56431030947715,-7.404841858427972,-7.5655359867960215,-7.567861940711737,-6.981328760739416,-7.804223204031587,-7.799591333139688,-8.036002831533551,-7.586719843093306,-7.9650910389609635,-7.369471164885908,-7.370902515947819,-8.234349315520376,-7.624042763374746,-8.14831712609157,-9.070483691990376,-8.89763249270618,-8.154219442047179,-8.966548019554466,-9.015242745168507,-9.68908188585192,-10.416048126295209,-10.523133252747357,-9.746700821910053,-9.04862421285361,-9.857984042260796,-10.69122840417549,-11.318912502378225,-11.675126804038882,-11.909328969661146,-11.819310596212745,-12.276075524277985,-12.31301618507132,-12.930867541581392,-12.606997101102024,-12.803435008972883,-11.952444436494261,-11.806869049556553,-11.077050063759089,-11.022712850477546,-10.283295763656497,-10.41390279494226,-10.6920752604492,-11.484952788800001,-11.90902662370354,-11.558649205602705,-11.061591134406626,-11.321225506719202,-11.034365412779152,-11.7802366996184,-11.678532447200269,-11.935491854324937,-12.001904319040477,-12.525740596931428,-13.075687036849558,-13.257161165121943,-14.091057938989252,-14.391225425992161,-15.204640900716186,-16.0996436313726,-15.301910353358835,-15.290044900495559,-14.33857456408441,-14.369996405672282,-14.138991770334542,-14.90936704305932,-14.160388496238738,-14.699490631464869,-14.772881369572133,-15.721327881328762,-15.201767268590629,-15.154989140573889,-14.314995699096471,-14.371818715240806,-13.773268395569175,-14.577074702363461,-15.379991620313376,-16.340403134468943,-16.881751913577318,-16.31679522525519,-16.271619902458042,-16.38738642912358,-17.10603014845401,-16.573612763546407,-15.81645264942199,-15.884451997000724,-16.377275391947478,-17.19533774163574,-17.234550778754056,-17.147784173022956,-16.1857578298077,-15.725727960001677,-15.656897051725537,-15.467274292837828,-16.45377506641671,-15.526015717536211,-15.862793942447752,-16.391966726165265,-17.077289833687246,-17.885359045118093,-16.928914800751954,-17.744744590949267,-17.077454323880374,-16.45698271645233,-15.716643664985895,-15.248625312466174,-14.704307611100376,-14.474814557470381,-13.836849829182029,-14.600807577837259,-14.770479997154325,-15.404759771656245,-15.023076277691871,-15.736657796427608,-14.763821135740727,-14.313421148341149,-13.326890027616173,-14.264268489554524,-15.05018917657435,-15.767872464843094,-16.0318804634735,-15.208869001362473,-14.376521083526313,-14.366895036306232,-14.809154727961868,-13.984085959382355,-14.249500388745219,-13.617593940347433,-14.174054913688451,-14.770121010951698,-15.424694020301104,-15.35887363459915,-14.941790651064366,-14.004250587429851,-13.702596730552614,-14.155413972679526,-15.140110700856894,-15.600679285824299,-15.87476539472118,-16.286279381252825,-15.833895654883236,-16.635364815127105,-16.412982990033925,-15.785913424566388,-16.18890642374754,-15.884213582612574,-15.20954016642645,-14.59147688606754,-14.646956805605441,-14.745742068625987,-14.754700920078903,-14.9216443952173,-14.897432873491198,-15.589215888176113,-14.79632444307208,-15.00154109345749,-14.653068845625967,-14.230548918712884,-13.634072484914213,-12.845532925799489,-13.327868102584034,-13.381899370346218,-14.074235115200281,-13.932613187935203,-14.63924732292071,-14.86672423640266,-14.874349667225033,-15.040903801098466,-15.982761135790497,-16.26824260316789,-15.789824751205742,-15.904574431944638,-16.02143358066678,-16.473313768859953,-16.13211072422564,-15.27476180717349,-15.070792909245938,-14.52080427762121,-15.484663139563054,-15.909180612303317,-16.47959394333884,-16.075024092104286,-17.063015571329743,-18.026041535660625,-18.665515063796192,-19.211740572936833,-19.758491485845298,-18.876213553361595,-18.782570672687143,-18.64143904671073,-18.24499593442306,-18.11428743088618,-18.233176548033953,-18.808471490629017,-17.876213275361806,-17.441585056018084,-18.43390317307785,-18.737985144834965,-17.966542365495116,-17.8516191476956,-17.31192104285583,-17.195144249591976,-17.735153431538492,-17.987048565410078,-18.236230831593275,-17.667531626299024,-16.78437025938183,-17.577268331311643,-17.902244727127254,-18.298188269603997,-18.213939141482115,-18.902276864275336,-18.542806362733245,-18.480141983833164,-18.602419179398566,-18.99153798772022,-18.083056996110827,-18.081947868689895,-17.74458113219589,-17.06871175346896,-17.380077461712062,-16.662953613791615,-17.43604770116508,-16.815010917373,-15.84947078069672,-15.51165872393176,-15.14991062367335,-15.533994594123214,-16.105857220012695,-16.764918654225767,-17.735017666127533,-18.424416380468756,-17.975699394010007,-17.404029611032456,-16.712446801830083,-17.102257246617228,-17.336168762296438,-17.396378733683378,-16.585031962487847,-15.955119702965021,-16.846237419638783,-16.744142913259566,-16.76789399050176,-17.42019852763042,-17.977554672863334,-18.29549010982737,-18.329514598473907,-18.722969317343086,-19.510204147081822,-19.636950503103435,-19.829618534073234,-20.668629094492644,-19.715563223697245,-19.601432187482715,-19.141291700303555,-18.451003754977137,-18.235347414389253,-17.480403371620923,-18.076351069379598,-17.34415292646736,-17.8616823120974,-18.389439166523516,-18.332774172071368,-18.932549316436052,-19.036003714427352,-18.529638790059835,-18.777643268927932,-19.08640683721751,-20.076293986756355,-20.617148784920573,-20.390972823370248,-21.111783490516245,-20.49524006061256,-20.233550791162997,-20.197044257074594,-20.567641601897776,-21.549639937467873,-21.66970201767981,-22.03547420585528,-22.986251962836832,-22.892458692658693,-22.02525135036558,-22.52961242524907,-23.29489727364853,-23.555545871146023,-22.936282770708203,-22.60396963870153,-22.532840800005943,-23.140955975744873,-23.522467163857073,-22.59916865825653,-23.162899354007095,-22.333849165588617,-23.057071946561337,-23.79195943241939,-24.483952851500362,-24.351272812113166,-23.686094243079424,-24.46913861250505,-23.681026448961347,-24.52640060847625,-24.98614751175046,-25.691206897608936,-25.106436183210462,-24.8520414843224,-23.876147999893874,-24.798686465248466,-23.924553128890693,-24.542053221259266,-23.982086831703782,-23.348908088169992,-22.912797815632075,-22.864774111192673,-23.358383608981967,-22.921251815743744,-22.28160487767309,-21.59558123210445,-21.946942191105336,-21.877857050858438,-22.503258790820837,-22.56871459959075,-21.690123967826366,-21.16401465376839,-20.347950113005936,-21.01692461548373,-20.139235221315175,-19.26531244441867,-18.39903260115534,-18.559522703289986,-19.051935754716396,-19.916391618549824,-20.568715295288712,-19.83751691877842,-19.946705792099237,-20.927546571940184,-21.532407109159976,-21.7536617256701,-21.460712232161313,-22.06024923780933,-21.27190721826628,-21.173884593416005,-20.82672926224768,-20.905287673231214,-20.09165825136006,-20.33327664807439,-20.57997686509043,-20.89508023392409,-19.96052615623921,-20.912640694528818,-20.40488854981959,-21.012413137592375,-20.114637057762593,-19.333183792885393,-18.461915276478976,-18.363181672059,-18.732391253579408,-18.9045624663122,-19.42650824598968,-19.815042035188526,-20.251646584831178,-19.369991283863783,-19.64069047383964,-19.29595472663641,-19.159306929912418,-18.182865085080266,-18.842421269975603,-18.57313190633431,-19.2792486269027,-19.266716400627047,-19.54179223300889,-20.43346974812448,-19.976674645207822,-20.327043222729117,-19.537824116647243,-19.781977927312255,-19.772865884471685,-20.41989499889314,-20.483360396698117,-20.73390039568767,-20.843417150434107,-20.8697243463248,-19.966451533604413,-19.66359103564173,-19.80973840225488,-20.424907778855413,-20.86062722839415,-21.235528700985014,-21.822507872246206,-22.459114644676447,-22.734574429690838,-23.35848971735686,-23.083822357468307,-22.262499845121056,-21.39831465901807,-20.589642885141075,-20.07204872602597,-19.48084557009861,-20.296124631538987,-20.896132656838745,-21.21478786645457,-21.908149434719235,-22.346744232811034,-22.12724938383326,-22.443392870482057,-22.971061246935278,-23.706927357707173,-24.59439802961424,-24.84067963482812,-25.487583841197193,-25.273997108917683,-25.062210406642407,-25.513222261331975,-25.19522025063634,-26.184001497458667,-25.41235099779442,-26.240368070080876,-27.164376453496516,-26.99444010015577,-27.140425608027726,-26.714114242233336,-26.250323184765875,-26.866045127157122,-26.256634041201323,-26.622438573278487,-26.028003305196762,-26.047371710650623,-26.341687785461545,-25.366775078698993,-25.718502262607217,-26.315779010765254,-25.724140686448663,-26.227420795243233,-27.087887932546437,-27.464737535454333,-27.989627154078335,-27.51362373260781,-26.910821173340082,-26.417038466315717,-26.009271967224777,-25.501506636850536,-25.91236956883222,-26.779051085934043,-27.10741971852258,-26.185346371494234,-26.128265216946602,-26.24719054112211,-25.609106928575784,-25.50704612536356,-25.72692083660513,-24.762374037876725,-24.69378050370142,-24.216390686109662,-25.014538805931807,-24.28772930195555,-24.10351876541972,-23.703420480247587,-24.671032891608775,-25.205773076973855,-25.406815845519304,-25.723759861197323,-24.770456886850297,-25.59923520265147,-25.383769797626883,-24.432182631921023,-25.185029578395188,-24.327265452127904,-23.79454778227955,-23.24527874030173,-22.29308310477063,-23.115830348338932,-23.44678581878543,-23.346839716657996,-23.042765099089593,-23.66578233614564,-23.10490653803572,-23.387640152592212,-23.261862561572343,-23.483691185712814,-23.839999153278768,-23.528297912795097,-23.217700915411115,-22.80264063598588,-22.518430853728205,-21.966988352127373,-21.437507933471352,-20.772603922057897,-21.344204120337963,-21.376864915713668,-21.420502731576562,-21.77316742250696,-21.33602462289855,-20.429280614014715,-20.443894804921,-20.804033663123846,-20.218016101513058,-19.92094435216859,-19.706587879452854,-19.131158934440464,-18.552374134771526,-18.87170514371246,-19.350662441924214,-19.46981757786125,-18.90036565857008,-18.349351621232927,-17.484461954794824,-16.94262218941003,-16.176794704049826,-16.32185661047697,-15.32706848718226,-15.02289179014042,-14.843644598964602,-15.617078986484557,-15.282295631244779,-14.822229764889926,-13.93902121996507,-14.096462648827583,-14.134395436383784,-14.865255957469344,-15.419636785518378,-16.14763873256743,-15.623389650601894,-14.895117768086493,-14.057539057917893,-14.364292523823678,-13.508328517898917,-13.027198234107345,-12.096123364754021,-12.27302787033841,-11.906696274410933,-11.401856641285121,-12.071431305725127,-12.922081636730582,-13.100753130856901,-14.00648368569091,-13.246300476137549,-13.316204172093421,-13.290944262873381,-12.727869750466198,-11.77074845135212,-12.21894765459001,-12.528104939498007,-11.704875429160893,-12.651998134329915,-13.045919705647975,-13.987916357349604,-13.913355552591383,-14.390135264955461,-13.595553718041629,-14.0332470247522,-13.185140778310597,-12.354302808176726,-13.306403966154903,-13.455687161535025,-13.122733958531171,-13.67268859082833,-14.01882256148383,-14.876050790771842,-14.857732741162181,-14.513886030297726,-14.791107300668955,-15.781767704989761,-16.766336736269295,-15.789921334013343,-16.699116978794336,-16.136900187004358,-15.42495670216158,-15.87671231618151,-16.763662127777934,-16.331632392015308,-16.750372568145394,-16.913857877254486,-16.627238472457975,-16.19131098454818,-17.127753971144557,-17.481587758287787,-16.486593021079898,-17.445640944410115,-17.711708065588027,-17.511043143458664,-17.446264069061726,-18.180214527528733,-18.32483419822529,-17.998347049113363,-18.312316053546965,-19.14086894923821,-18.178533032070845,-18.248997296672314,-17.605949938762933,-17.095545132178813,-17.66984815010801,-17.18687727302313,-16.717915013898164,-16.414659404195845,-16.48773392336443,-15.736426383256912,-15.908323409035802,-16.11654326459393,-16.290627743583173,-17.088744454551488,-16.65843947743997,-17.20369881624356,-16.56733688293025,-16.891745945904404,-17.506078131031245,-17.751892736647278,-18.016749486792833,-18.528013485949486,-19.063307077158242,-19.12302218656987,-18.408621397335082,-18.496658760588616,-17.519605129491538,-16.595494124107063,-16.06241300003603,-15.346082621254027,-14.759822163265198,-14.976295612286776,-14.252288739662617,-13.512858808040619,-14.223473237361759,-14.021784196142107,-14.281602668110281,-14.206556523684412,-13.405245126690716,-13.919501821976155,-14.262322244700044,-14.50686075259,-13.905009284149855,-14.359486294910312,-15.285120224580169,-15.070886108092964,-15.5708545637317,-16.417193468194455,-15.699636951554567,-14.765508628915995,-15.519060975406319,-15.23038017237559,-15.370811788830906,-14.490894149523228,-15.003431238234043,-15.747829501051456,-16.70940876379609,-16.623463842552155,-16.558565945364535,-17.347473700530827,-17.254680980928242,-17.754785265773535,-17.26039957627654,-16.295617788564414,-16.38195974798873,-15.997335846535861,-15.066499865613878,-15.525737871415913,-16.216745126526803,-16.289456177968532,-16.17096217069775,-17.150744447484612,-17.42883564112708,-16.470415242481977,-16.67719434760511,-16.472188502084464,-17.146078817546368,-17.04268771689385,-16.178131639491767,-16.156537214294076,-16.483393388800323,-15.98158311424777,-15.43246952071786,-15.47733967890963,-15.631371228490025,-16.033286436926574,-16.873333911877126,-17.282176699489355,-17.119263029657304,-17.13239866727963,-16.489931599237025,-16.865689667873085,-17.037111688870937,-16.183395183179528,-16.56313069863245,-16.128121244721115,-16.411819262430072,-16.17178557580337,-15.27502908371389,-16.19648036500439,-15.993375801946968,-15.901809487957507,-15.377641998697072,-14.705596542917192,-14.276902232319117,-13.283403192646801,-12.830432772170752,-12.44941107975319,-11.497568693943322,-12.356340538710356,-12.64119823416695,-13.312048801220953,-13.940288057550788,-14.142019624821842,-15.051029010210186,-14.537341633345932,-13.939435579348356,-14.461470996495336,-15.448536242824048,-15.167302119079977,-15.13882304681465,-15.836135051213205,-15.466219113674015,-16.37055337522179,-16.262472209520638,-15.819663889706135,-16.68487388920039,-17.4145893342793,-18.012041640933603,-17.61457598861307,-18.324070892762393,-18.553114767652005,-17.983780830167234,-18.976839893031865,-18.632389610167593,-18.399902566336095,-18.783250751439482,-18.31628358224407,-18.045619680546224,-17.732156828977168,-17.12329814489931,-17.7187337432988,-18.480393381323665,-18.37383165722713,-18.620535497553647,-19.009697366971523,-18.345986786298454,-19.24119341839105,-19.450524603482336,-20.062370956875384,-20.262649485841393,-19.864690570626408,-19.49635276105255,-19.766964160837233,-20.29344448959455,-21.26205849647522,-20.77154307672754,-21.253341604024172,-20.811506879515946,-21.65014364151284,-22.56127416435629,-23.129814046435058,-23.302165667060763,-22.55260866181925,-22.468195914290845,-22.771337928716093,-22.139291513711214,-22.885687203146517,-23.09226296423003,-24.083820476196706,-24.727893664035946,-25.207937460392714,-25.92830555094406,-26.726828990038484,-27.22093350952491,-28.21301805973053,-29.100713266525418,-28.302361911628395,-28.300137466285378,-27.767577508930117,-27.676017900463194,-26.988799886777997,-26.123037146870047,-26.31250875396654,-27.260959765408188,-26.922751806676388,-27.427634904626757,-28.003235599026084,-27.62930622464046,-27.34430338582024,-27.952382906340063,-28.902584586758167,-28.85045949695632,-27.853429741691798,-27.587101699784398,-28.435514824464917,-28.55520423920825,-29.050630470737815,-29.543932184111327,-30.001777559053153,-30.871442249044776,-31.0303074833937,-30.034422510303557,-29.83928811037913,-29.832038384396583,-29.859715684782714,-29.254026805981994,-29.616942282766104,-29.294687680434436,-28.89740417385474,-29.344413228798658,-29.0104848514311,-28.046933425124735,-28.97811198187992,-28.92470662901178,-29.243797005619854,-29.971513965167105,-29.41493300627917,-30.302568141836673,-29.565480522811413,-29.882401580456644,-30.818154105450958,-31.18886765697971,-31.55755534209311,-30.63601452531293,-29.821283100172877,-29.436205881647766,-28.757874336559325,-29.095802541822195,-28.602507043164223,-28.22231143852696,-28.05196918034926,-27.744046019855887,-27.834522920660675,-28.44146327720955,-29.395540099591017,-28.587788907345384,-29.537708660122007,-29.394178598187864,-30.369027227628976,-31.19935597013682,-32.00642951950431,-31.249179947189987,-31.01104051247239,-30.25263398932293,-30.52044126112014,-30.15440907748416,-30.84890129743144,-31.378753778524697,-31.009255471173674,-32.003480144776404,-31.316861963365227,-31.811876038555056,-31.777531747706234,-31.203846151009202,-31.332516244612634,-31.833365350961685,-31.71995264850557,-32.26816985802725,-32.11757672717795,-32.51824851008132,-31.92450158856809,-32.10977791529149,-31.364556279499084,-31.740009831264615,-32.24340979475528,-32.5217063059099,-33.09612109232694,-33.20060557825491,-32.21645343257114,-31.384807752911,-30.911117719486356,-31.084748400375247,-30.43410648079589,-30.965021177660674,-31.77671662159264,-31.800831258296967,-31.433326142840087,-31.039303933270276,-31.94655726244673,-31.131600339431316,-30.9382101893425,-30.641697373241186,-31.203217232134193,-31.857837615534663,-31.14648923370987,-30.411760065238923,-30.08071105228737,-29.123641008045524,-29.120676459744573,-29.317851153202355,-29.416708833537996,-29.777817015070468,-29.20631764549762,-28.561494334135205,-28.17050405079499,-27.91844442859292,-28.412508216686547,-28.000074287410825,-27.32272999221459,-27.259833361022174,-27.29304296709597,-27.44233574718237,-27.880373110529035,-27.106967797502875,-26.880593079607934,-27.134705235715955,-27.056054740212858,-27.27851535519585,-27.30005389917642,-27.865811998024583,-28.228056754451245,-27.306547246407717,-26.99165473598987,-27.991013830527663,-28.61042266478762,-28.60729424469173,-27.977923260536045,-27.76278468966484,-27.345278198830783,-26.79671671288088,-25.897550761234015,-25.39780857646838,-25.781157687306404,-25.292329462710768,-25.925355641171336,-25.983968248125166,-25.93292006244883,-25.2022612830624,-25.30968611361459,-25.89706725254655,-26.79991145711392,-26.043512967415154,-26.57218104787171,-25.652881963178515,-24.674715160392225,-25.26762079074979,-25.205115543678403,-25.999613269232213,-25.095778182614595,-25.690812764223665,-25.88576056342572,-26.350692360196263,-25.927950348239392,-26.533654186874628,-25.575116246473044,-26.511931460350752,-25.88224428007379,-25.05494661256671,-24.136313450988382,-25.058059078641236,-25.43266659649089,-25.34536400064826,-24.49103466561064,-24.337350357789546,-23.93740828614682,-23.65965560823679,-24.499313422013074,-23.570055572781712,-22.85931301023811,-22.286513993982226,-21.798895370215178,-20.860907030757517,-21.135718672070652,-21.03865115623921,-21.09648167155683,-20.684275148436427,-19.98008539713919,-20.948791820555925,-21.5659148148261,-22.485784390941262,-22.35982427140698,-22.638776052277535,-23.626659478526562,-22.821580021176487,-22.52117991959676,-22.73177029378712,-22.944553609006107,-23.69810576736927,-24.46939028194174,-24.04804304987192,-24.589884335175157,-23.881155075505376,-23.926262337248772,-23.842279814649373,-24.781523512210697,-25.729453475680202,-25.917069461662322,-26.260294562671334,-26.148285353556275,-26.319834092631936,-26.3091535535641,-26.26859090477228,-27.087166890501976,-27.648098905570805,-26.69099411740899,-25.799931302666664,-26.789657161571085,-26.325364810880274,-25.645385352429003,-24.91376182436943,-24.559596417006105,-24.756262289825827,-24.308870867826045,-23.881366833113134,-22.890683468896896,-22.649445560760796,-22.474575333297253,-22.90004513785243,-22.54136154940352,-22.65302782319486,-22.54442505026236,-22.659136433620006,-21.972342680208385,-22.16232750331983,-22.246614476200193,-22.8573276870884,-23.83990131923929,-22.94221084797755,-22.84700573561713,-22.84831178188324,-23.473774218931794,-23.75628337217495,-23.419689861126244,-23.83211205760017,-23.831589869223535,-24.0436300765723,-23.42751754214987,-23.040158784482628,-23.966227973345667,-23.196957007050514,-24.087529719341546,-24.949649318587035,-24.17217241600156,-23.87382776848972,-23.341358290519565,-22.46967955119908,-23.40709472168237,-24.26822994928807,-23.94127306388691,-23.15277619799599,-23.016378031577915,-23.31761346384883,-23.803068884648383,-24.150217353366315,-24.214616510551423,-23.652680778410286,-24.497804302722216,-24.424375156406313,-24.133496675174683,-24.980008227284998,-25.483932535164058,-24.906209184788167,-25.429983370006084,-25.24126471299678,-25.436638004612178,-26.43273767037317,-27.051703670993447,-27.854254273697734,-28.848627904430032,-28.82873657019809,-28.802076768595725,-28.179308952298015,-28.26422271085903,-27.413129655178636,-26.709451003931463,-27.060968797653913,-27.576841564383358,-27.30271070729941,-27.33704598993063,-27.418089880608022,-26.63819633750245,-27.214914781041443,-27.657638367265463,-27.49850351875648,-26.66346468636766,-26.834485210943967,-27.771314531564713,-27.545263977721334,-27.640352627262473,-28.109697939362377,-27.842751989141107,-26.978786217048764,-27.587083536665887,-27.111221570521593,-27.122424265835434,-27.948245940264314,-27.186939437408,-27.118572115898132,-26.708542121574283,-25.833512756042182,-25.95547313336283,-25.427670527249575,-26.242999335750937,-26.954662011004984,-26.158838154748082,-25.579703712370247,-24.897936718538404,-25.193311679176986,-26.146006285212934,-25.67814202234149,-25.518975955434144,-25.042286158539355,-25.29852569894865,-26.131537332199514,-26.98668899666518,-26.11912958137691,-25.274299080949277,-24.886652030516416,-25.402110538911074,-26.285706085618585,-25.840628014411777,-25.562505011446774,-24.88135045906529,-24.233346019871533,-23.490666572004557,-23.05390094174072,-22.095786093268543,-21.193368202541023,-20.259654311928898,-20.966660045087337,-21.257314837072045,-20.352438372559845,-19.58696490712464,-20.18557518720627,-20.140303157269955,-20.037623066920787,-19.998820967506617,-19.027594802435488,-19.572927543427795,-19.52696941141039,-19.93642098410055,-19.2787975249812,-18.318715488072485,-18.83867333456874,-18.543849208857864,-17.797106133773923,-17.80806637275964,-18.16846564784646,-17.673910906072706,-17.503319430164993,-16.947340306360275,-17.187189729884267,-18.062622026074678,-17.275038453750312,-16.8384355828166,-17.627900856081396,-17.45849373936653,-16.87001930596307,-17.24347467906773,-17.256131500937045,-16.860013109631836,-17.362538948189467,-17.788246638607234,-18.5750558138825,-18.35367467114702,-19.11817721184343,-19.849038760643452,-19.938611389137805,-19.4656686084345,-19.81970459409058,-19.03740637889132,-18.637399177066982,-18.8482884359546,-18.686779812909663,-18.982669667806476,-19.046377500519156,-19.008944739121944,-18.340034059714526,-19.05417684884742,-18.59569845534861,-19.536647088825703,-19.344336832407862,-19.332753302529454,-18.894739607349038,-19.46045728959143,-19.422962594311684,-19.638762513175607,-18.69092405727133,-17.838410284370184,-17.342179960105568,-17.800762900616974,-17.973369390703738,-18.907145923003554,-19.266512172762305,-20.01415717136115,-19.884865541011095,-20.069346018135548,-20.251795900054276,-20.766403048764914,-21.52577377995476,-22.231109203770757,-21.47358253831044,-21.301577447913587,-20.48683236166835,-20.90160553622991,-20.210569745860994,-19.573986281175166,-19.62892528017983,-19.055448959115893,-19.600250823888928,-19.153396955225617,-18.594206835143268,-18.459553184453398,-18.674484129995108,-19.05506124952808,-18.613984178751707,-19.31822381867096,-20.295259591192007,-20.020424456801265,-20.835667521692812,-21.11672337213531,-20.45943203382194,-21.314070128835738,-20.398542428854853,-20.222663829103112,-19.571480948012322,-19.492407084908336,-19.618208053987473,-20.40895693190396,-19.60918196151033,-20.051568077877164,-20.443085055798292,-19.96232022996992,-19.69948850153014,-20.01491704909131,-19.228102773893625,-19.558717449195683,-19.201080576516688,-18.931731321383268,-19.331484274938703,-18.647965215612203,-19.387153977528214,-18.81301422789693,-19.51253392547369,-19.972803361713886,-19.24634856544435,-19.240900854114443,-18.317170563153923,-18.071234678383917,-18.86450347257778,-19.097884056158364,-18.64122937899083,-18.930057319346815,-19.54110989999026,-19.112682677339762,-19.070830941200256,-20.004524536896497,-20.669596558902413,-20.52773332921788,-21.293897515162826,-20.989241608884186,-21.062374470289797,-20.933554450515658,-21.581286190543324,-21.55673046130687,-22.386194601189345,-22.59377862792462,-22.16058718878776,-22.84421602776274,-22.83172721322626,-23.69540752377361,-24.56323916139081,-24.720259348861873,-24.581966330762953,-25.552185874432325,-24.854194668121636,-24.813463045749813,-25.381876279599965,-25.813785313628614,-25.835768763907254,-25.084483850747347,-25.861407328862697,-25.295128780882806,-24.316538881510496,-23.389633039943874,-23.209740773309022,-23.57623716443777,-24.11519073229283,-23.688793310895562,-22.709716346580535,-22.30253940774128,-23.234003838617355,-22.269863393623382,-22.056431736797094,-21.697648944333196,-21.735695373732597,-20.777407025918365,-21.25611555017531,-21.90189303457737,-22.742885894607753,-21.753192089498043,-20.92785163363442,-19.982286668382585,-19.62874480849132,-19.95194190228358,-20.69053437979892,-21.02168791461736,-21.085075897630304,-21.375771809369326,-21.121956741902977,-20.4910848014988,-21.44511709548533,-20.46750787831843,-20.730660362169147,-21.236454967409372,-21.06128281960264,-21.799484612885863,-22.554668940603733,-22.892434787470847,-23.244266630150378,-23.510322795715183,-23.799626188818365,-24.708576899487525,-25.095989286899567,-24.857007048092782,-25.803003140259534,-26.54155082348734,-25.551997754722834,-25.71789196273312,-25.586932719219476,-25.590992194134742,-25.21441365359351,-24.843182816170156,-25.643045227974653,-25.168137877248228,-25.079450574237853,-24.947067251894623,-25.935815484263003,-25.594633331522346,-25.312319609802216,-25.292605074122548,-25.21208785334602,-24.581112679094076,-24.69319481216371,-24.600294940639287,-25.238479387480766,-25.444445912726223,-25.087373052723706,-24.8689914108254,-24.75658643897623,-24.993427898269147,-25.539320826530457,-25.70733225112781,-26.305007238406688,-25.512625282164663,-25.628791250288486,-25.369719988200814,-25.54837834974751,-26.413432966917753,-26.438075775280595,-25.621235522441566,-25.027384342160076,-24.164208178874105,-24.650273142382503,-23.724182983394712,-23.23333640350029,-22.89557922212407,-23.773677330929786,-24.370580818969756,-24.714339430909604,-24.972811278421432,-25.105236034374684,-24.927693930454552,-24.506261290982366,-23.82076942687854,-24.82008965453133,-25.53641015710309,-26.174795913510025,-25.514843424316496,-25.963119125925004,-25.449289988260716,-24.75645045004785,-24.339103606529534,-25.124126244336367,-25.85177860688418,-26.04472804814577,-26.345843203831464,-25.72395518561825,-25.51722914306447,-26.103014656808227,-25.999912299681455,-25.494058545678854,-26.013153520412743,-25.466960495337844,-24.92909802077338,-24.546930943615735,-24.529336507432163,-25.203834237065166,-24.912319502793252,-25.717807062901556,-25.97928356193006,-26.123892498668283,-25.281573158223182,-24.976890158839524,-24.555940340273082,-25.42205967521295,-25.372406111564487,-25.349708637222648,-25.585916474461555,-25.62774456758052,-26.44784096395597,-25.80737366573885,-26.536695740185678,-26.999562923330814,-26.87851051380858,-27.854614147916436,-27.498556387610734,-27.389870963525027,-28.236801211256534,-28.152072943281382,-28.501148010604084,-28.51066479831934,-28.573621065355837,-29.343550263904035,-29.583095646928996,-29.489751198794693,-28.87983948830515,-29.17586117144674,-28.242303502280265,-28.317079147323966,-28.81762420060113,-29.36545536806807,-29.846176189836115,-30.05275143077597,-30.803875679615885,-30.191108630038798,-30.41556451888755,-29.736087925732136,-30.072549778968096,-30.802130407188088,-29.87698356853798,-29.627836011350155,-29.253300740383565,-29.66106873145327,-28.780724331736565,-28.504916792269796,-28.761025654617697,-28.473265124950558,-28.644066522363573,-28.285801082849503,-27.77486589923501,-28.13824093900621,-27.728084029164165,-27.088048067875206,-27.36160707566887,-26.892837152350694,-26.69923828681931,-26.939010455738753,-26.588072484359145,-26.721682908013463,-26.28776681656018,-25.614258237183094,-26.21007143938914,-26.6578769646585,-27.289796226657927,-26.5206002490595,-25.92167578358203,-26.87056058086455,-27.20168374478817,-26.698144712485373,-26.16157009359449,-27.0801988998428,-27.895706155803055,-27.604253727477044,-26.955479284282774,-26.9164222846739,-27.841946376953274,-27.712345545645803,-27.880655218381435,-28.215442537795752,-28.82002210523933,-29.313777287025005,-28.411883858032525,-28.011581076774746,-28.09595634881407,-29.089116835501045,-29.66482120519504,-30.633828819263726,-31.61185765406117,-30.89325251011178,-30.435849237721413,-30.48088225442916,-29.798409711103886,-29.43655337765813,-28.569621965289116,-29.522612715139985,-29.935853306669742,-30.395757417194545,-30.181694259867072,-29.863024123944342,-30.530572157353163,-30.827824276406318,-31.650436378084123,-30.975545305758715,-30.13633760297671,-29.676407516002655,-30.613440566696227,-30.89893604023382,-30.562480601482093,-31.21440447960049,-30.9756451100111,-30.913511453662068,-30.06352918315679,-29.354314133990556,-29.07372978469357,-28.198591156862676,-28.270907774567604,-28.52388030057773,-27.93061751080677,-27.506592069286853,-26.540477805770934,-27.089990803506225,-26.74365414818749,-25.901358667761087,-25.61600452149287,-24.81894695851952,-24.175681676715612,-24.745539411436766,-23.749292565509677,-23.267377100419253,-22.286927456967533,-21.919949213974178,-21.475459763314575,-21.903786971233785,-22.07892922637984,-22.851249219849706,-22.48482872499153,-22.507370713166893,-22.43886971939355,-21.58594496315345,-21.388169383164495,-21.882576406933367,-22.178648085333407,-21.907197962515056,-21.522513282019645,-21.804101513233036,-21.86247116420418,-22.31768107926473,-21.924522023182362,-21.67652525054291,-21.715205415617675,-22.559633269906044,-23.33753949496895,-24.007994297891855,-23.461137047968805,-22.573733900673687,-22.7978099049069,-23.429127995390445,-22.960216973908246,-23.326123591978103,-22.572513430844992,-21.845880868379027,-21.591023447923362,-20.92917435662821,-20.789180275052786,-20.750327011570334,-21.07181476522237,-21.377045794390142,-21.350708534475416,-20.67225435283035,-21.526050256099552,-21.77329325582832,-22.750469737220556,-23.604827872943133,-23.12368691060692,-22.37907174695283,-22.28329065348953,-21.63457847945392,-21.322946115862578,-21.14273140160367,-21.960262326989323,-22.593849377706647,-22.738523688632995,-23.01960515137762,-23.277714915573597,-23.736179164610803,-23.931565955281258,-23.241961732972413,-22.420374198351055,-21.502285538241267,-21.21103502297774,-20.833337990567088,-21.716451450251043,-20.867243880871683,-20.843526256270707,-20.379915170837194,-20.52689507463947,-19.853652141988277,-19.517357806675136,-19.355367633979768,-20.153520432766527,-19.20574734173715,-19.300300326664,-19.194485407322645,-19.10369091294706,-18.998789911158383,-18.22411000635475,-18.78492143424228,-18.829770686104894,-19.75095973070711,-19.85888833925128,-20.117911011446267,-20.989751833025366,-21.351935802958906,-20.754191130399704,-20.027139275800437,-20.5255420608446,-21.23973262682557,-21.092720482032746,-21.31762506533414,-20.822708402760327,-20.79887080239132,-20.10775794601068,-20.753743507433683,-21.171514329500496,-22.089219423010945,-22.910164089407772,-22.618949436116964,-23.33204546244815,-23.229937243741006,-23.321094513870776,-23.365414248313755,-22.86038169870153,-22.55806858278811,-22.63032090757042,-23.216038138605654,-23.97143199853599,-23.07798895193264,-23.242737517226487,-23.595948315691203,-23.332349722273648,-22.349935421720147,-22.884279222693294,-22.977959949988872,-22.945352572016418,-22.488245853222907,-23.181946340948343,-22.374291957821697,-22.807679880876094,-22.333791229408234,-22.691143106669188,-21.72031511180103,-21.684190704952925,-21.065641149878502,-20.277348898816854,-19.777169537264854,-20.57733903033659,-20.153232367243618,-20.583023462444544,-20.145123052876443,-20.549667975865304,-20.147028863430023,-19.509388564154506,-18.86999590275809,-19.09186127828434,-18.2304343781434,-18.835126981139183,-18.16636039270088,-17.99748163111508,-18.477892954833806,-19.323164497502148,-19.677164908498526,-20.136971560306847,-20.79995696945116,-20.716297530569136,-19.721946267411113,-20.545780289452523,-20.728435710072517,-20.72756634140387,-20.462553603108972,-19.537125502247363,-20.473847277928144,-20.97913738619536,-21.097321425564587,-21.369196786079556,-21.758758989162743,-21.706511384807527,-21.79349529882893,-21.579856168478727,-21.95683020958677,-22.642430768813938,-23.614753362722695,-22.929953600745648,-23.067574020009488,-23.481588538736105,-22.780371505767107,-22.703685111366212,-21.99309678794816,-21.960649473126978,-20.98376581259072,-21.002342916093767,-21.000666694249958,-21.731753250118345,-21.68820982472971,-22.427957029547542,-21.68243382498622,-21.79745771549642,-22.0877188956365,-21.278547211084515,-20.728561274241656,-20.19658160675317,-20.05498600192368,-19.985892993863672,-20.57998751103878,-19.9971240661107,-19.08043209835887,-19.453204781282693,-20.388003444299102,-20.026647756341845,-20.055700903758407,-19.20454276073724,-19.038059941027313,-19.844808319583535,-19.564052893780172,-20.48849359015003,-19.685282035265118,-19.89916867390275,-19.472263095900416,-20.43284718738869,-19.648906926158816,-18.64967500558123,-18.17411242518574,-17.723401670344174,-17.446336616761982,-17.190538038499653,-17.89214995596558,-17.615868669003248,-17.309767832048237,-18.150042983703315,-17.912520316429436,-18.055470109451562,-17.397639144212008,-16.787117590662092,-16.189502276480198,-16.36152251716703,-15.96875985711813,-15.017329869791865,-15.084762019570917,-15.06524160085246,-15.813225992023945,-15.116594449616969,-15.400405663996935,-15.570823954883963,-15.340716417413205,-15.67146202083677,-15.969869120512158,-16.294411248061806,-15.346048089209944,-15.910674150567502,-15.378655245527625,-15.481873404234648,-14.947067223489285,-15.018008895218372,-15.50976836308837,-16.38098764885217,-15.450966349802911,-15.036846383940428,-14.1908259075135,-14.599323013331741,-14.09797146031633,-13.467788333073258,-14.35326454276219,-14.86458549182862,-13.875745919998735,-14.025599150452763,-13.703369481954724,-13.823603231459856,-14.302131952252239,-13.354170298669487,-14.150437077507377,-13.202364506199956,-13.610535430256277,-13.200676231645048,-12.278114982880652,-13.228937177918851,-13.666244089137763,-12.732414255850017,-11.733178162947297,-11.427805224433541,-11.943862403277308,-11.443679342977703,-12.28842325694859,-12.094815677497536,-11.12691196007654,-11.602235504891723,-10.688505269121379,-10.569006798323244,-10.077981151174754,-10.606798887252808,-11.091592025011778,-11.178091894369572,-11.567670028656721,-11.402466295752674,-12.299119733273983,-11.603050211910158,-11.956232123542577,-11.152005484793335,-11.138625491876155,-10.678557416889817,-10.567084490787238,-9.607228921726346,-10.330490799620748,-11.31999636394903,-12.286016655620188,-12.317139598540962,-12.462735153269023,-11.578637604601681,-11.78758504614234,-10.905931636225432,-11.862983808387071,-12.379895018413663,-11.55914035672322,-11.582980714738369,-11.008242162875831,-10.265643930993974,-9.851625890471041,-10.169447961263359,-9.510784182697535,-9.298920582979918,-9.306826137006283,-9.148105803877115,-8.638157454319298,-8.596369582228363,-7.85368927102536,-7.8185467235744,-7.741471208631992,-6.824058964848518,-6.550862615462393,-6.593957794830203,-6.893488420173526,-6.009953789878637,-6.543253130745143,-7.4022472579963505,-7.82853845320642,-6.8786671832203865,-7.119682743679732,-6.765713205561042,-7.513838811777532,-6.6814781348221,-6.336093973834068,-6.997507670428604,-7.7598511558026075,-7.172595807816833,-8.061619502492249,-7.1250692079775035,-7.951850940007716,-6.9634425565600395,-7.519599245395511,-7.421384256798774,-6.671336378902197,-5.854131030384451,-5.305884609930217,-6.001457273028791,-6.107648349832743,-6.823368580080569,-6.017251516226679,-6.23822539485991,-6.405710827093571,-5.429252779111266,-4.813072354067117,-3.9100574064068496,-4.18865268304944,-3.388077371288091,-2.6072698729112744,-2.0002517229877412,-2.343765953555703,-3.239019352477044,-2.7223499808460474,-1.746545706409961,-0.989867715165019,-0.0822392450645566,-0.352653082460165,-0.5301082385703921,-1.5168447149917483,-2.4047567858360708,-2.786625236738473,-2.1019028718583286,-1.7868657722137868,-0.8606996554881334,-0.8956130314618349,-0.611680815462023,-0.5939684608019888,0.3707017353735864,0.9033186538144946,0.11055276915431023,-0.29077181592583656,-0.8228233652189374,-1.0924801118671894,-1.4321892345324159,-1.8279075026512146,-1.5058374796062708,-1.6550860567949712,-2.5968704842962325,-1.658149806316942,-1.8600843735039234,-1.8136499458923936,-2.159255367703736,-1.3962458088062704,-0.9489681324921548,-1.5403501689434052,-1.973549650516361,-2.9221911071799695,-2.4257782087661326,-2.4720854042097926,-2.7000380381941795,-2.7661951538175344,-2.069712060969323,-1.7161776321008801,-0.9103220743127167,-0.8691238858737051,-0.44918343238532543,-0.452575015835464,-0.12351179262623191,-1.0293389041908085,-0.32656119344756007,-0.4788609123788774,-0.5612418451346457,-0.6497246576473117,-1.366121550090611,-1.5524577926844358,-1.2900236169807613,-0.44978907285258174,0.14924252685159445,0.9045358658768237,1.107411440461874,1.7447672658599913,1.3753902614116669,0.6238579261116683,1.4520076159387827,1.364957943558693,0.6989562641829252,0.13567490968853235,0.8997690686956048,0.02765562292188406,0.7421542876400054,0.8765247096307576,0.9016221277415752,0.6985685513354838,-0.2607673997990787,0.36137701384723186,-0.43703903164714575,-0.0403599739074707,-0.8103490141220391,-1.166073666419834,-1.6642345753498375,-0.8486155294813216,-0.024658153299242258,0.9170020492747426,1.5528734661638737,0.9216294847428799,0.7383101340383291,0.3146182280033827,0.6180517417378724,0.9508604668080807,0.36240545148029923,1.0273308199830353,1.4982181009836495,0.9476192956790328,0.8850585957989097,0.44144903821870685,0.9470589375123382,0.979315378703177,1.0878036646172404,0.37856146274134517,0.41443104576319456,-0.33561192778870463,-0.236103477422148,0.723076727706939,1.4909757124260068,0.6458175922743976,0.7739346129819751,0.18993477011099458,-0.46258673537522554,0.4352728291414678,0.7803389998152852,0.06818270497024059,0.01148510491475463,-0.42616597237065434,0.3022900493815541,0.08202712796628475,-0.5766625795513391,-1.035053034313023,-0.5346294976770878,-1.0224696998484433,-0.29984174855053425,0.22407551435753703,-0.3474723915569484,-0.01507163094356656,-0.43017782969400287,-1.4254064583219588,-2.091496955603361,-2.167802006006241,-2.0225713225081563,-1.0517097101546824,-1.0092582572251558,-1.6430905130691826,-1.8433006177656353,-0.9281665245071054,-0.7535577430389822,-0.5265419860370457,-1.004118069075048,-0.4037161632440984,-1.0760235455818474,-0.3808009810745716,-0.12102596228942275,-0.4189747138880193,-0.6590425944887102,0.0038895374163985252,-0.4789098999463022,0.3076264811679721,0.13397796405479312,-0.051116077695041895,-0.9462798112072051,-0.6548974826000631,0.21855919854715466,1.1395300775766373,0.579267727676779,-0.27141045266762376,-0.3979608048684895,-0.9839050378650427,-1.5888786595314741,-2.424859455320984,-2.189765748567879,-2.1850949730724096,-2.7360032889992,-3.22584564704448,-3.98799991235137,-4.342074666172266,-4.432928057387471,-4.6413422506302595,-5.384202640503645,-5.582573700230569,-5.702074944041669,-6.375502975657582,-5.471677108667791,-5.197469883132726,-6.057941384147853,-5.2398700886406,-4.964722786098719,-4.393025782890618,-4.384513054508716,-4.253129038959742,-5.219077221583575,-5.813761604949832,-5.873054715339094,-6.221362229902297,-6.193347028456628,-5.713747868314385,-5.648153195157647,-6.1559477229602635,-6.330477530602366,-6.652851035818458,-7.436393185518682,-7.442218201700598,-7.595182109624147,-7.87096073012799,-7.6618728479370475,-7.971375544089824,-7.351694060023874,-7.234533614479005,-6.476009217090905,-5.956976352725178,-5.180695876013488,-5.835863518994302,-5.029923335183412,-4.728309131693095,-4.816399267408997,-4.502795738633722,-4.982165000401437,-4.253464009612799,-3.945278274361044,-4.809198553673923,-4.943459146656096,-4.678386892657727,-3.749715557321906,-3.66229299409315,-3.7174739446491003,-3.6259357519447803,-3.5561054688878357,-4.141088041011244,-4.64693420752883,-5.586226213723421,-4.820104608312249,-4.370029606856406,-4.772228911519051,-3.903332366142422,-4.119763542432338,-3.2535856124013662,-2.475810617208481,-3.017404575366527,-2.3404833008535206,-1.3925722036510706,-0.5208457852713764,0.11008419655263424,0.9869196736253798,1.1626193416304886,1.047815955709666,2.0096071152947843,2.0531249716877937,1.9043849222362041,2.384189857635647,1.5058102458715439,2.050203819293529,2.247015867382288,2.182058072183281,1.9600061997771263,1.7199220713227987,2.531434176955372,1.7446133294142783,1.935489864088595,1.486639631446451,1.4679651353508234,1.1911804131232202,1.7250126544386148,2.18288994487375,2.214270520955324,3.00699376873672,2.990865760948509,2.558100921101868,3.3508642287924886,2.4779345695860684,2.2254373473115265,1.779328856151551,2.297642675694078,3.1905011967755854,3.2387740169651806,2.259680237621069,2.1929007903672755,1.6644276822917163,2.5720143355429173,1.6668976810760796,1.0933659090660512,0.6292900983244181,0.34747539181262255,-0.21695646876469254,-0.4254688979126513,-0.6818337817676365,-0.5580352428369224],"type":"scatter3d"},{"customdata":[["2024-07-25T05:35:06.010000"],["2024-07-25T05:35:07.010000"],["2024-07-25T05:35:08.010000"],["2024-07-25T05:35:09.010000"],["2024-07-25T05:35:10.010000"],["2024-07-25T05:35:11.010000"],["2024-07-25T05:35:12.010000"],["2024-07-25T05:35:13.010000"],["2024-07-25T05:35:14.010000"],["2024-07-25T05:35:15.010000"],["2024-07-25T05:35:16.010000"],["2024-07-25T05:35:17.010000"],["2024-07-25T05:35:18.010000"],["2024-07-25T05:35:19.010000"],["2024-07-25T05:35:20.010000"],["2024-07-25T05:35:21.010000"],["2024-07-25T05:35:22.010000"],["2024-07-25T05:35:23.010000"],["2024-07-25T05:35:24.010000"],["2024-07-25T05:35:25.010000"],["2024-07-25T05:35:26.010000"],["2024-07-25T05:35:27.010000"],["2024-07-25T05:35:28.010000"],["2024-07-25T05:35:29.010000"],["2024-07-25T05:35:30.010000"],["2024-07-25T05:35:31.010000"],["2024-07-25T05:35:32.010000"],["2024-07-25T05:35:33.010000"],["2024-07-25T05:35:34.010000"],["2024-07-25T05:35:35.010000"],["2024-07-25T05:35:36.010000"],["2024-07-25T05:35:37.010000"],["2024-07-25T05:35:38.010000"],["2024-07-25T05:35:39.010000"],["2024-07-25T05:35:40.010000"],["2024-07-25T05:35:41.010000"],["2024-07-25T05:35:42.010000"],["2024-07-25T05:35:43.010000"],["2024-07-25T05:35:44.010000"],["2024-07-25T05:35:45.010000"],["2024-07-25T05:35:46.010000"],["2024-07-25T05:35:47.010000"],["2024-07-25T05:35:48.010000"],["2024-07-25T05:35:49.010000"],["2024-07-25T05:35:50.010000"],["2024-07-25T05:35:51.010000"],["2024-07-25T05:35:52.010000"],["2024-07-25T05:35:53.010000"],["2024-07-25T05:35:54.010000"],["2024-07-25T05:35:55.010000"],["2024-07-25T05:35:56.010000"],["2024-07-25T05:35:57.010000"],["2024-07-25T05:35:58.010000"],["2024-07-25T05:35:59.010000"],["2024-07-25T05:36:00.010000"],["2024-07-25T05:36:01.010000"],["2024-07-25T05:36:02.010000"],["2024-07-25T05:36:03.010000"],["2024-07-25T05:36:04.010000"],["2024-07-25T05:36:05.010000"],["2024-07-25T05:36:06.010000"],["2024-07-25T05:36:07.010000"],["2024-07-25T05:36:08.010000"],["2024-07-25T05:36:09.010000"],["2024-07-25T05:36:10.010000"],["2024-07-25T05:36:11.010000"],["2024-07-25T05:36:12.010000"],["2024-07-25T05:36:13.010000"],["2024-07-25T05:36:14.010000"],["2024-07-25T05:36:15.010000"],["2024-07-25T05:36:16.010000"],["2024-07-25T05:36:17.010000"],["2024-07-25T05:36:18.010000"],["2024-07-25T05:36:19.010000"],["2024-07-25T05:36:20.010000"],["2024-07-25T05:36:21.010000"],["2024-07-25T05:36:22.010000"],["2024-07-25T05:36:23.010000"],["2024-07-25T05:36:24.010000"],["2024-07-25T05:36:25.010000"],["2024-07-25T05:36:26.010000"],["2024-07-25T05:36:27.010000"],["2024-07-25T05:36:28.010000"],["2024-07-25T05:36:29.010000"],["2024-07-25T05:36:30.010000"],["2024-07-25T05:36:31.010000"],["2024-07-25T05:36:32.010000"],["2024-07-25T05:36:33.010000"],["2024-07-25T05:36:34.010000"],["2024-07-25T05:36:35.010000"],["2024-07-25T05:36:36.010000"],["2024-07-25T05:36:37.010000"],["2024-07-25T05:36:38.010000"],["2024-07-25T05:36:39.010000"],["2024-07-25T05:36:40.010000"],["2024-07-25T05:36:41.010000"],["2024-07-25T05:36:42.010000"],["2024-07-25T05:36:43.010000"],["2024-07-25T05:36:44.010000"],["2024-07-25T05:36:45.010000"],["2024-07-25T05:36:46.010000"],["2024-07-25T05:36:47.010000"],["2024-07-25T05:36:48.010000"],["2024-07-25T05:36:49.010000"],["2024-07-25T05:36:50.010000"],["2024-07-25T05:36:51.010000"],["2024-07-25T05:36:52.010000"],["2024-07-25T05:36:53.010000"],["2024-07-25T05:36:54.010000"],["2024-07-25T05:36:55.010000"],["2024-07-25T05:36:56.010000"],["2024-07-25T05:36:57.010000"],["2024-07-25T05:36:58.010000"],["2024-07-25T05:36:59.010000"],["2024-07-25T05:37:00.010000"],["2024-07-25T05:37:01.010000"],["2024-07-25T05:37:02.010000"],["2024-07-25T05:37:03.010000"],["2024-07-25T05:37:04.010000"],["2024-07-25T05:37:05.010000"],["2024-07-25T05:37:06.010000"],["2024-07-25T05:37:07.010000"],["2024-07-25T05:37:08.010000"],["2024-07-25T05:37:09.010000"],["2024-07-25T05:37:10.010000"],["2024-07-25T05:37:11.010000"],["2024-07-25T05:37:12.010000"],["2024-07-25T05:37:13.010000"],["2024-07-25T05:37:14.010000"],["2024-07-25T05:37:15.010000"],["2024-07-25T05:37:16.010000"],["2024-07-25T05:37:17.010000"],["2024-07-25T05:37:18.010000"],["2024-07-25T05:37:19.010000"],["2024-07-25T05:37:20.010000"],["2024-07-25T05:37:21.010000"],["2024-07-25T05:37:22.010000"],["2024-07-25T05:37:23.010000"],["2024-07-25T05:37:24.010000"],["2024-07-25T05:37:25.010000"],["2024-07-25T05:37:26.010000"],["2024-07-25T05:37:27.010000"],["2024-07-25T05:37:28.010000"],["2024-07-25T05:37:29.010000"],["2024-07-25T05:37:30.010000"],["2024-07-25T05:37:31.010000"],["2024-07-25T05:37:32.010000"],["2024-07-25T05:37:33.010000"],["2024-07-25T05:37:34.010000"],["2024-07-25T05:37:35.010000"],["2024-07-25T05:37:36.010000"],["2024-07-25T05:37:37.010000"],["2024-07-25T05:37:38.010000"],["2024-07-25T05:37:39.010000"],["2024-07-25T05:37:40.010000"],["2024-07-25T05:37:41.010000"],["2024-07-25T05:37:42.010000"],["2024-07-25T05:37:43.010000"],["2024-07-25T05:37:44.010000"],["2024-07-25T05:37:45.010000"],["2024-07-25T05:37:46.010000"],["2024-07-25T05:37:47.010000"],["2024-07-25T05:37:48.010000"],["2024-07-25T05:37:49.010000"],["2024-07-25T05:37:50.010000"],["2024-07-25T05:37:51.010000"],["2024-07-25T05:37:52.010000"],["2024-07-25T05:37:53.010000"],["2024-07-25T05:37:54.010000"],["2024-07-25T05:37:55.010000"],["2024-07-25T05:37:56.010000"],["2024-07-25T05:37:57.010000"],["2024-07-25T05:37:58.010000"],["2024-07-25T05:37:59.010000"],["2024-07-25T05:38:00.010000"],["2024-07-25T05:38:01.010000"],["2024-07-25T05:38:02.010000"],["2024-07-25T05:38:03.010000"],["2024-07-25T05:38:04.010000"],["2024-07-25T05:38:05.010000"],["2024-07-25T05:38:06.010000"],["2024-07-25T05:38:07.010000"],["2024-07-25T05:38:08.010000"],["2024-07-25T05:38:09.010000"],["2024-07-25T05:38:10.010000"],["2024-07-25T05:38:11.010000"],["2024-07-25T05:38:12.010000"],["2024-07-25T05:38:13.010000"],["2024-07-25T05:38:14.010000"],["2024-07-25T05:38:15.010000"],["2024-07-25T05:38:16.010000"],["2024-07-25T05:38:17.010000"],["2024-07-25T05:38:18.010000"],["2024-07-25T05:38:19.010000"],["2024-07-25T05:38:20.010000"],["2024-07-25T05:38:21.010000"],["2024-07-25T05:38:22.010000"],["2024-07-25T05:38:23.010000"],["2024-07-25T05:38:24.010000"],["2024-07-25T05:38:25.010000"],["2024-07-25T05:38:26.010000"],["2024-07-25T05:38:27.010000"],["2024-07-25T05:38:28.010000"],["2024-07-25T05:38:29.010000"],["2024-07-25T05:38:30.010000"],["2024-07-25T05:38:31.010000"],["2024-07-25T05:38:32.010000"],["2024-07-25T05:38:33.010000"],["2024-07-25T05:38:34.010000"],["2024-07-25T05:38:35.010000"],["2024-07-25T05:38:36.010000"],["2024-07-25T05:38:37.010000"],["2024-07-25T05:38:38.010000"],["2024-07-25T05:38:39.010000"],["2024-07-25T05:38:40.010000"],["2024-07-25T05:38:41.010000"],["2024-07-25T05:38:42.010000"],["2024-07-25T05:38:43.010000"],["2024-07-25T05:38:44.010000"],["2024-07-25T05:38:45.010000"],["2024-07-25T05:38:46.010000"],["2024-07-25T05:38:47.010000"],["2024-07-25T05:38:48.010000"],["2024-07-25T05:38:49.010000"],["2024-07-25T05:38:50.010000"],["2024-07-25T05:38:51.010000"],["2024-07-25T05:38:52.010000"],["2024-07-25T05:38:53.010000"],["2024-07-25T05:38:54.010000"],["2024-07-25T05:38:55.010000"],["2024-07-25T05:38:56.010000"],["2024-07-25T05:38:57.010000"],["2024-07-25T05:38:58.010000"],["2024-07-25T05:38:59.010000"],["2024-07-25T05:39:00.010000"],["2024-07-25T05:39:01.010000"],["2024-07-25T05:39:02.010000"],["2024-07-25T05:39:03.010000"],["2024-07-25T05:39:04.010000"],["2024-07-25T05:39:05.010000"],["2024-07-25T05:39:06.010000"],["2024-07-25T05:39:07.010000"],["2024-07-25T05:39:08.010000"],["2024-07-25T05:39:09.010000"],["2024-07-25T05:39:10.010000"],["2024-07-25T05:39:11.010000"],["2024-07-25T05:39:12.010000"],["2024-07-25T05:39:13.010000"],["2024-07-25T05:39:14.010000"],["2024-07-25T05:39:15.010000"],["2024-07-25T05:39:16.010000"],["2024-07-25T05:39:17.010000"],["2024-07-25T05:39:18.010000"],["2024-07-25T05:39:19.010000"],["2024-07-25T05:39:20.010000"],["2024-07-25T05:39:21.010000"],["2024-07-25T05:39:22.010000"],["2024-07-25T05:39:23.010000"],["2024-07-25T05:39:24.010000"],["2024-07-25T05:39:25.010000"],["2024-07-25T05:39:26.010000"],["2024-07-25T05:39:27.010000"],["2024-07-25T05:39:28.010000"],["2024-07-25T05:39:29.010000"],["2024-07-25T05:39:30.010000"],["2024-07-25T05:39:31.010000"],["2024-07-25T05:39:32.010000"],["2024-07-25T05:39:33.010000"],["2024-07-25T05:39:34.010000"],["2024-07-25T05:39:35.010000"],["2024-07-25T05:39:36.010000"],["2024-07-25T05:39:37.010000"],["2024-07-25T05:39:38.010000"],["2024-07-25T05:39:39.010000"],["2024-07-25T05:39:40.010000"],["2024-07-25T05:39:41.010000"],["2024-07-25T05:39:42.010000"],["2024-07-25T05:39:43.010000"],["2024-07-25T05:39:44.010000"],["2024-07-25T05:39:45.010000"],["2024-07-25T05:39:46.010000"],["2024-07-25T05:39:47.010000"],["2024-07-25T05:39:48.010000"],["2024-07-25T05:39:49.010000"],["2024-07-25T05:39:50.010000"],["2024-07-25T05:39:51.010000"],["2024-07-25T05:39:52.010000"],["2024-07-25T05:39:53.010000"],["2024-07-25T05:39:54.010000"],["2024-07-25T05:39:55.010000"],["2024-07-25T05:39:56.010000"],["2024-07-25T05:39:57.010000"],["2024-07-25T05:39:58.010000"],["2024-07-25T05:39:59.010000"],["2024-07-25T05:40:00.010000"],["2024-07-25T05:40:01.010000"],["2024-07-25T05:40:02.010000"],["2024-07-25T05:40:03.010000"],["2024-07-25T05:40:04.010000"],["2024-07-25T05:40:05.010000"],["2024-07-25T05:40:06.010000"],["2024-07-25T05:40:07.010000"],["2024-07-25T05:40:08.010000"],["2024-07-25T05:40:09.010000"],["2024-07-25T05:40:10.010000"],["2024-07-25T05:40:11.010000"],["2024-07-25T05:40:12.010000"],["2024-07-25T05:40:13.010000"],["2024-07-25T05:40:14.010000"],["2024-07-25T05:40:15.010000"],["2024-07-25T05:40:16.010000"],["2024-07-25T05:40:17.010000"],["2024-07-25T05:40:18.010000"],["2024-07-25T05:40:19.010000"],["2024-07-25T05:40:20.010000"],["2024-07-25T05:40:21.010000"],["2024-07-25T05:40:22.010000"],["2024-07-25T05:40:23.010000"],["2024-07-25T05:40:24.010000"],["2024-07-25T05:40:25.010000"],["2024-07-25T05:40:26.010000"],["2024-07-25T05:40:27.010000"],["2024-07-25T05:40:28.010000"],["2024-07-25T05:40:29.010000"],["2024-07-25T05:40:30.010000"],["2024-07-25T05:40:31.010000"],["2024-07-25T05:40:32.010000"],["2024-07-25T05:40:33.010000"],["2024-07-25T05:40:34.010000"],["2024-07-25T05:40:35.010000"],["2024-07-25T05:40:36.010000"],["2024-07-25T05:40:37.010000"],["2024-07-25T05:40:38.010000"],["2024-07-25T05:40:39.010000"],["2024-07-25T05:40:40.010000"],["2024-07-25T05:40:41.010000"],["2024-07-25T05:40:42.010000"],["2024-07-25T05:40:43.010000"],["2024-07-25T05:40:44.010000"],["2024-07-25T05:40:45.010000"],["2024-07-25T05:40:46.010000"],["2024-07-25T05:40:47.010000"],["2024-07-25T05:40:48.010000"],["2024-07-25T05:40:49.010000"],["2024-07-25T05:40:50.010000"],["2024-07-25T05:40:51.010000"],["2024-07-25T05:40:52.010000"],["2024-07-25T05:40:53.010000"],["2024-07-25T05:40:54.010000"],["2024-07-25T05:40:55.010000"],["2024-07-25T05:40:56.010000"],["2024-07-25T05:40:57.010000"],["2024-07-25T05:40:58.010000"],["2024-07-25T05:40:59.010000"],["2024-07-25T05:41:00.010000"],["2024-07-25T05:41:01.010000"],["2024-07-25T05:41:02.010000"],["2024-07-25T05:41:03.010000"],["2024-07-25T05:41:04.010000"],["2024-07-25T05:41:05.010000"],["2024-07-25T05:41:06.010000"],["2024-07-25T05:41:07.010000"],["2024-07-25T05:41:08.010000"],["2024-07-25T05:41:09.010000"],["2024-07-25T05:41:10.010000"],["2024-07-25T05:41:11.010000"],["2024-07-25T05:41:12.010000"],["2024-07-25T05:41:13.010000"],["2024-07-25T05:41:14.010000"],["2024-07-25T05:41:15.010000"],["2024-07-25T05:41:16.010000"],["2024-07-25T05:41:17.010000"],["2024-07-25T05:41:18.010000"],["2024-07-25T05:41:19.010000"],["2024-07-25T05:41:20.010000"],["2024-07-25T05:41:21.010000"],["2024-07-25T05:41:22.010000"],["2024-07-25T05:41:23.010000"],["2024-07-25T05:41:24.010000"],["2024-07-25T05:41:25.010000"],["2024-07-25T05:41:26.010000"],["2024-07-25T05:41:27.010000"],["2024-07-25T05:41:28.010000"],["2024-07-25T05:41:29.010000"],["2024-07-25T05:41:30.010000"],["2024-07-25T05:41:31.010000"],["2024-07-25T05:41:32.010000"],["2024-07-25T05:41:33.010000"],["2024-07-25T05:41:34.010000"],["2024-07-25T05:41:35.010000"],["2024-07-25T05:41:36.010000"],["2024-07-25T05:41:37.010000"],["2024-07-25T05:41:38.010000"],["2024-07-25T05:41:39.010000"],["2024-07-25T05:41:40.010000"],["2024-07-25T05:41:41.010000"],["2024-07-25T05:41:42.010000"],["2024-07-25T05:41:43.010000"],["2024-07-25T05:41:44.010000"],["2024-07-25T05:41:45.010000"],["2024-07-25T05:41:46.010000"],["2024-07-25T05:41:47.010000"],["2024-07-25T05:41:48.010000"],["2024-07-25T05:41:49.010000"],["2024-07-25T05:41:50.010000"],["2024-07-25T05:41:51.010000"],["2024-07-25T05:41:52.010000"],["2024-07-25T05:41:53.010000"],["2024-07-25T05:41:54.010000"],["2024-07-25T05:41:55.010000"],["2024-07-25T05:41:56.010000"],["2024-07-25T05:41:57.010000"],["2024-07-25T05:41:58.010000"],["2024-07-25T05:41:59.010000"],["2024-07-25T05:42:00.010000"],["2024-07-25T05:42:01.010000"],["2024-07-25T05:42:02.010000"],["2024-07-25T05:42:03.010000"],["2024-07-25T05:42:04.010000"],["2024-07-25T05:42:05.010000"],["2024-07-25T05:42:06.010000"],["2024-07-25T05:42:07.010000"],["2024-07-25T05:42:08.010000"],["2024-07-25T05:42:09.010000"],["2024-07-25T05:42:10.010000"],["2024-07-25T05:42:11.010000"],["2024-07-25T05:42:12.010000"],["2024-07-25T05:42:13.010000"],["2024-07-25T05:42:14.010000"],["2024-07-25T05:42:15.010000"],["2024-07-25T05:42:16.010000"],["2024-07-25T05:42:17.010000"],["2024-07-25T05:42:18.010000"],["2024-07-25T05:42:19.010000"],["2024-07-25T05:42:20.010000"],["2024-07-25T05:42:21.010000"],["2024-07-25T05:42:22.010000"],["2024-07-25T05:42:23.010000"],["2024-07-25T05:42:24.010000"],["2024-07-25T05:42:25.010000"],["2024-07-25T05:42:26.010000"],["2024-07-25T05:42:27.010000"],["2024-07-25T05:42:28.010000"],["2024-07-25T05:42:29.010000"],["2024-07-25T05:42:30.010000"],["2024-07-25T05:42:31.010000"],["2024-07-25T05:42:32.010000"],["2024-07-25T05:42:33.010000"],["2024-07-25T05:42:34.010000"],["2024-07-25T05:42:35.010000"],["2024-07-25T05:42:36.010000"],["2024-07-25T05:42:37.010000"],["2024-07-25T05:42:38.010000"],["2024-07-25T05:42:39.010000"],["2024-07-25T05:42:40.010000"],["2024-07-25T05:42:41.010000"],["2024-07-25T05:42:42.010000"],["2024-07-25T05:42:43.010000"],["2024-07-25T05:42:44.010000"],["2024-07-25T05:42:45.010000"],["2024-07-25T05:42:46.010000"],["2024-07-25T05:42:47.010000"],["2024-07-25T05:42:48.010000"],["2024-07-25T05:42:49.010000"],["2024-07-25T05:42:50.010000"],["2024-07-25T05:42:51.010000"],["2024-07-25T05:42:52.010000"],["2024-07-25T05:42:53.010000"],["2024-07-25T05:42:54.010000"],["2024-07-25T05:42:55.010000"],["2024-07-25T05:42:56.010000"],["2024-07-25T05:42:57.010000"],["2024-07-25T05:42:58.010000"],["2024-07-25T05:42:59.010000"],["2024-07-25T05:43:00.010000"],["2024-07-25T05:43:01.010000"],["2024-07-25T05:43:02.010000"],["2024-07-25T05:43:03.010000"],["2024-07-25T05:43:04.010000"],["2024-07-25T05:43:05.010000"],["2024-07-25T05:43:06.010000"],["2024-07-25T05:43:07.010000"],["2024-07-25T05:43:08.010000"],["2024-07-25T05:43:09.010000"],["2024-07-25T05:43:10.010000"],["2024-07-25T05:43:11.010000"],["2024-07-25T05:43:12.010000"],["2024-07-25T05:43:13.010000"],["2024-07-25T05:43:14.010000"],["2024-07-25T05:43:15.010000"],["2024-07-25T05:43:16.010000"],["2024-07-25T05:43:17.010000"],["2024-07-25T05:43:18.010000"],["2024-07-25T05:43:19.010000"],["2024-07-25T05:43:20.010000"],["2024-07-25T05:43:21.010000"],["2024-07-25T05:43:22.010000"],["2024-07-25T05:43:23.010000"],["2024-07-25T05:43:24.010000"],["2024-07-25T05:43:25.010000"],["2024-07-25T05:43:26.010000"],["2024-07-25T05:43:27.010000"],["2024-07-25T05:43:28.010000"],["2024-07-25T05:43:29.010000"],["2024-07-25T05:43:30.010000"],["2024-07-25T05:43:31.010000"],["2024-07-25T05:43:32.010000"],["2024-07-25T05:43:33.010000"],["2024-07-25T05:43:34.010000"],["2024-07-25T05:43:35.010000"],["2024-07-25T05:43:36.010000"],["2024-07-25T05:43:37.010000"],["2024-07-25T05:43:38.010000"],["2024-07-25T05:43:39.010000"],["2024-07-25T05:43:40.010000"],["2024-07-25T05:43:41.010000"],["2024-07-25T05:43:42.010000"],["2024-07-25T05:43:43.010000"],["2024-07-25T05:43:44.010000"],["2024-07-25T05:43:45.010000"],["2024-07-25T05:43:46.010000"],["2024-07-25T05:43:47.010000"],["2024-07-25T05:43:48.010000"],["2024-07-25T05:43:49.010000"],["2024-07-25T05:43:50.010000"],["2024-07-25T05:43:51.010000"],["2024-07-25T05:43:52.010000"],["2024-07-25T05:43:53.010000"],["2024-07-25T05:43:54.010000"],["2024-07-25T05:43:55.010000"],["2024-07-25T05:43:56.010000"],["2024-07-25T05:43:57.010000"],["2024-07-25T05:43:58.010000"],["2024-07-25T05:43:59.010000"],["2024-07-25T05:44:00.010000"],["2024-07-25T05:44:01.010000"],["2024-07-25T05:44:02.010000"],["2024-07-25T05:44:03.010000"],["2024-07-25T05:44:04.010000"],["2024-07-25T05:44:05.010000"],["2024-07-25T05:44:06.010000"],["2024-07-25T05:44:07.010000"],["2024-07-25T05:44:08.010000"],["2024-07-25T05:44:09.010000"],["2024-07-25T05:44:10.010000"],["2024-07-25T05:44:11.010000"],["2024-07-25T05:44:12.010000"],["2024-07-25T05:44:13.010000"],["2024-07-25T05:44:14.010000"],["2024-07-25T05:44:15.010000"],["2024-07-25T05:44:16.010000"],["2024-07-25T05:44:17.010000"],["2024-07-25T05:44:18.010000"],["2024-07-25T05:44:19.010000"],["2024-07-25T05:44:20.010000"],["2024-07-25T05:44:21.010000"],["2024-07-25T05:44:22.010000"],["2024-07-25T05:44:23.010000"],["2024-07-25T05:44:24.010000"],["2024-07-25T05:44:25.010000"],["2024-07-25T05:44:26.010000"],["2024-07-25T05:44:27.010000"],["2024-07-25T05:44:28.010000"],["2024-07-25T05:44:29.010000"],["2024-07-25T05:44:30.010000"],["2024-07-25T05:44:31.010000"],["2024-07-25T05:44:32.010000"],["2024-07-25T05:44:33.010000"],["2024-07-25T05:44:34.010000"],["2024-07-25T05:44:35.010000"],["2024-07-25T05:44:36.010000"],["2024-07-25T05:44:37.010000"],["2024-07-25T05:44:38.010000"],["2024-07-25T05:44:39.010000"],["2024-07-25T05:44:40.010000"],["2024-07-25T05:44:41.010000"],["2024-07-25T05:44:42.010000"],["2024-07-25T05:44:43.010000"],["2024-07-25T05:44:44.010000"],["2024-07-25T05:44:45.010000"],["2024-07-25T05:44:46.010000"],["2024-07-25T05:44:47.010000"],["2024-07-25T05:44:48.010000"],["2024-07-25T05:44:49.010000"],["2024-07-25T05:44:50.010000"],["2024-07-25T05:44:51.010000"],["2024-07-25T05:44:52.010000"],["2024-07-25T05:44:53.010000"],["2024-07-25T05:44:54.010000"],["2024-07-25T05:44:55.010000"],["2024-07-25T05:44:56.010000"],["2024-07-25T05:44:57.010000"],["2024-07-25T05:44:58.010000"],["2024-07-25T05:44:59.010000"],["2024-07-25T05:45:00.010000"],["2024-07-25T05:45:01.010000"],["2024-07-25T05:45:02.010000"],["2024-07-25T05:45:03.010000"],["2024-07-25T05:45:04.010000"],["2024-07-25T05:45:05.010000"],["2024-07-25T05:45:06.010000"],["2024-07-25T05:45:07.010000"],["2024-07-25T05:45:08.010000"],["2024-07-25T05:45:09.010000"],["2024-07-25T05:45:10.010000"],["2024-07-25T05:45:11.010000"],["2024-07-25T05:45:12.010000"],["2024-07-25T05:45:13.010000"],["2024-07-25T05:45:14.010000"],["2024-07-25T05:45:15.010000"],["2024-07-25T05:45:16.010000"],["2024-07-25T05:45:17.010000"],["2024-07-25T05:45:18.010000"],["2024-07-25T05:45:19.010000"],["2024-07-25T05:45:20.010000"],["2024-07-25T05:45:21.010000"],["2024-07-25T05:45:22.010000"],["2024-07-25T05:45:23.010000"],["2024-07-25T05:45:24.010000"],["2024-07-25T05:45:25.010000"],["2024-07-25T05:45:26.010000"],["2024-07-25T05:45:27.010000"],["2024-07-25T05:45:28.010000"],["2024-07-25T05:45:29.010000"],["2024-07-25T05:45:30.010000"],["2024-07-25T05:45:31.010000"],["2024-07-25T05:45:32.010000"],["2024-07-25T05:45:33.010000"],["2024-07-25T05:45:34.010000"],["2024-07-25T05:45:35.010000"],["2024-07-25T05:45:36.010000"],["2024-07-25T05:45:37.010000"],["2024-07-25T05:45:38.010000"],["2024-07-25T05:45:39.010000"],["2024-07-25T05:45:40.010000"],["2024-07-25T05:45:41.010000"],["2024-07-25T05:45:42.010000"],["2024-07-25T05:45:43.010000"],["2024-07-25T05:45:44.010000"],["2024-07-25T05:45:45.010000"],["2024-07-25T05:45:46.010000"],["2024-07-25T05:45:47.010000"],["2024-07-25T05:45:48.010000"],["2024-07-25T05:45:49.010000"],["2024-07-25T05:45:50.010000"],["2024-07-25T05:45:51.010000"],["2024-07-25T05:45:52.010000"],["2024-07-25T05:45:53.010000"],["2024-07-25T05:45:54.010000"],["2024-07-25T05:45:55.010000"],["2024-07-25T05:45:56.010000"],["2024-07-25T05:45:57.010000"],["2024-07-25T05:45:58.010000"],["2024-07-25T05:45:59.010000"],["2024-07-25T05:46:00.010000"],["2024-07-25T05:46:01.010000"],["2024-07-25T05:46:02.010000"],["2024-07-25T05:46:03.010000"],["2024-07-25T05:46:04.010000"],["2024-07-25T05:46:05.010000"],["2024-07-25T05:46:06.010000"],["2024-07-25T05:46:07.010000"],["2024-07-25T05:46:08.010000"],["2024-07-25T05:46:09.010000"],["2024-07-25T05:46:10.010000"],["2024-07-25T05:46:11.010000"],["2024-07-25T05:46:12.010000"],["2024-07-25T05:46:13.010000"],["2024-07-25T05:46:14.010000"],["2024-07-25T05:46:15.010000"],["2024-07-25T05:46:16.010000"],["2024-07-25T05:46:17.010000"],["2024-07-25T05:46:18.010000"],["2024-07-25T05:46:19.010000"],["2024-07-25T05:46:20.010000"],["2024-07-25T05:46:21.010000"],["2024-07-25T05:46:22.010000"],["2024-07-25T05:46:23.010000"],["2024-07-25T05:46:24.010000"],["2024-07-25T05:46:25.010000"],["2024-07-25T05:46:26.010000"],["2024-07-25T05:46:27.010000"],["2024-07-25T05:46:28.010000"],["2024-07-25T05:46:29.010000"],["2024-07-25T05:46:30.010000"],["2024-07-25T05:46:31.010000"],["2024-07-25T05:46:32.010000"],["2024-07-25T05:46:33.010000"],["2024-07-25T05:46:34.010000"],["2024-07-25T05:46:35.010000"],["2024-07-25T05:46:36.010000"],["2024-07-25T05:46:37.010000"],["2024-07-25T05:46:38.010000"],["2024-07-25T05:46:39.010000"],["2024-07-25T05:46:40.010000"],["2024-07-25T05:46:41.010000"],["2024-07-25T05:46:42.010000"],["2024-07-25T05:46:43.010000"],["2024-07-25T05:46:44.010000"],["2024-07-25T05:46:45.010000"],["2024-07-25T05:46:46.010000"],["2024-07-25T05:46:47.010000"],["2024-07-25T05:46:48.010000"],["2024-07-25T05:46:49.010000"],["2024-07-25T05:46:50.010000"],["2024-07-25T05:46:51.010000"],["2024-07-25T05:46:52.010000"],["2024-07-25T05:46:53.010000"],["2024-07-25T05:46:54.010000"],["2024-07-25T05:46:55.010000"],["2024-07-25T05:46:56.010000"],["2024-07-25T05:46:57.010000"],["2024-07-25T05:46:58.010000"],["2024-07-25T05:46:59.010000"],["2024-07-25T05:47:00.010000"],["2024-07-25T05:47:01.010000"],["2024-07-25T05:47:02.010000"],["2024-07-25T05:47:03.010000"],["2024-07-25T05:47:04.010000"],["2024-07-25T05:47:05.010000"],["2024-07-25T05:47:06.010000"],["2024-07-25T05:47:07.010000"],["2024-07-25T05:47:08.010000"],["2024-07-25T05:47:09.010000"],["2024-07-25T05:47:10.010000"],["2024-07-25T05:47:11.010000"],["2024-07-25T05:47:12.010000"],["2024-07-25T05:47:13.010000"],["2024-07-25T05:47:14.010000"],["2024-07-25T05:47:15.010000"],["2024-07-25T05:47:16.010000"],["2024-07-25T05:47:17.010000"],["2024-07-25T05:47:18.010000"],["2024-07-25T05:47:19.010000"],["2024-07-25T05:47:20.010000"],["2024-07-25T05:47:21.010000"],["2024-07-25T05:47:22.010000"],["2024-07-25T05:47:23.010000"],["2024-07-25T05:47:24.010000"],["2024-07-25T05:47:25.010000"],["2024-07-25T05:47:26.010000"],["2024-07-25T05:47:27.010000"],["2024-07-25T05:47:28.010000"],["2024-07-25T05:47:29.010000"],["2024-07-25T05:47:30.010000"],["2024-07-25T05:47:31.010000"],["2024-07-25T05:47:32.010000"],["2024-07-25T05:47:33.010000"],["2024-07-25T05:47:34.010000"],["2024-07-25T05:47:35.010000"],["2024-07-25T05:47:36.010000"],["2024-07-25T05:47:37.010000"],["2024-07-25T05:47:38.010000"],["2024-07-25T05:47:39.010000"],["2024-07-25T05:47:40.010000"],["2024-07-25T05:47:41.010000"],["2024-07-25T05:47:42.010000"],["2024-07-25T05:47:43.010000"],["2024-07-25T05:47:44.010000"],["2024-07-25T05:47:45.010000"],["2024-07-25T05:47:46.010000"],["2024-07-25T05:47:47.010000"],["2024-07-25T05:47:48.010000"],["2024-07-25T05:47:49.010000"],["2024-07-25T05:47:50.010000"],["2024-07-25T05:47:51.010000"],["2024-07-25T05:47:52.010000"],["2024-07-25T05:47:53.010000"],["2024-07-25T05:47:54.010000"],["2024-07-25T05:47:55.010000"],["2024-07-25T05:47:56.010000"],["2024-07-25T05:47:57.010000"],["2024-07-25T05:47:58.010000"],["2024-07-25T05:47:59.010000"],["2024-07-25T05:48:00.010000"],["2024-07-25T05:48:01.010000"],["2024-07-25T05:48:02.010000"],["2024-07-25T05:48:03.010000"],["2024-07-25T05:48:04.010000"],["2024-07-25T05:48:05.010000"],["2024-07-25T05:48:06.010000"],["2024-07-25T05:48:07.010000"],["2024-07-25T05:48:08.010000"],["2024-07-25T05:48:09.010000"],["2024-07-25T05:48:10.010000"],["2024-07-25T05:48:11.010000"],["2024-07-25T05:48:12.010000"],["2024-07-25T05:48:13.010000"],["2024-07-25T05:48:14.010000"],["2024-07-25T05:48:15.010000"],["2024-07-25T05:48:16.010000"],["2024-07-25T05:48:17.010000"],["2024-07-25T05:48:18.010000"],["2024-07-25T05:48:19.010000"],["2024-07-25T05:48:20.010000"],["2024-07-25T05:48:21.010000"],["2024-07-25T05:48:22.010000"],["2024-07-25T05:48:23.010000"],["2024-07-25T05:48:24.010000"],["2024-07-25T05:48:25.010000"],["2024-07-25T05:48:26.010000"],["2024-07-25T05:48:27.010000"],["2024-07-25T05:48:28.010000"],["2024-07-25T05:48:29.010000"],["2024-07-25T05:48:30.010000"],["2024-07-25T05:48:31.010000"],["2024-07-25T05:48:32.010000"],["2024-07-25T05:48:33.010000"],["2024-07-25T05:48:34.010000"],["2024-07-25T05:48:35.010000"],["2024-07-25T05:48:36.010000"],["2024-07-25T05:48:37.010000"],["2024-07-25T05:48:38.010000"],["2024-07-25T05:48:39.010000"],["2024-07-25T05:48:40.010000"],["2024-07-25T05:48:41.010000"],["2024-07-25T05:48:42.010000"],["2024-07-25T05:48:43.010000"],["2024-07-25T05:48:44.010000"],["2024-07-25T05:48:45.010000"],["2024-07-25T05:48:46.010000"],["2024-07-25T05:48:47.010000"],["2024-07-25T05:48:48.010000"],["2024-07-25T05:48:49.010000"],["2024-07-25T05:48:50.010000"],["2024-07-25T05:48:51.010000"],["2024-07-25T05:48:52.010000"],["2024-07-25T05:48:53.010000"],["2024-07-25T05:48:54.010000"],["2024-07-25T05:48:55.010000"],["2024-07-25T05:48:56.010000"],["2024-07-25T05:48:57.010000"],["2024-07-25T05:48:58.010000"],["2024-07-25T05:48:59.010000"],["2024-07-25T05:49:00.010000"],["2024-07-25T05:49:01.010000"],["2024-07-25T05:49:02.010000"],["2024-07-25T05:49:03.010000"],["2024-07-25T05:49:04.010000"],["2024-07-25T05:49:05.010000"],["2024-07-25T05:49:06.010000"],["2024-07-25T05:49:07.010000"],["2024-07-25T05:49:08.010000"],["2024-07-25T05:49:09.010000"],["2024-07-25T05:49:10.010000"],["2024-07-25T05:49:11.010000"],["2024-07-25T05:49:12.010000"],["2024-07-25T05:49:13.010000"],["2024-07-25T05:49:14.010000"],["2024-07-25T05:49:15.010000"],["2024-07-25T05:49:16.010000"],["2024-07-25T05:49:17.010000"],["2024-07-25T05:49:18.010000"],["2024-07-25T05:49:19.010000"],["2024-07-25T05:49:20.010000"],["2024-07-25T05:49:21.010000"],["2024-07-25T05:49:22.010000"],["2024-07-25T05:49:23.010000"],["2024-07-25T05:49:24.010000"],["2024-07-25T05:49:25.010000"],["2024-07-25T05:49:26.010000"],["2024-07-25T05:49:27.010000"],["2024-07-25T05:49:28.010000"],["2024-07-25T05:49:29.010000"],["2024-07-25T05:49:30.010000"],["2024-07-25T05:49:31.010000"],["2024-07-25T05:49:32.010000"],["2024-07-25T05:49:33.010000"],["2024-07-25T05:49:34.010000"],["2024-07-25T05:49:35.010000"],["2024-07-25T05:49:36.010000"],["2024-07-25T05:49:37.010000"],["2024-07-25T05:49:38.010000"],["2024-07-25T05:49:39.010000"],["2024-07-25T05:49:40.010000"],["2024-07-25T05:49:41.010000"],["2024-07-25T05:49:42.010000"],["2024-07-25T05:49:43.010000"],["2024-07-25T05:49:44.010000"],["2024-07-25T05:49:45.010000"],["2024-07-25T05:49:46.010000"],["2024-07-25T05:49:47.010000"],["2024-07-25T05:49:48.010000"],["2024-07-25T05:49:49.010000"],["2024-07-25T05:49:50.010000"],["2024-07-25T05:49:51.010000"],["2024-07-25T05:49:52.010000"],["2024-07-25T05:49:53.010000"],["2024-07-25T05:49:54.010000"],["2024-07-25T05:49:55.010000"],["2024-07-25T05:49:56.010000"],["2024-07-25T05:49:57.010000"],["2024-07-25T05:49:58.010000"],["2024-07-25T05:49:59.010000"],["2024-07-25T05:50:00.010000"],["2024-07-25T05:50:01.010000"],["2024-07-25T05:50:02.010000"],["2024-07-25T05:50:03.010000"],["2024-07-25T05:50:04.010000"],["2024-07-25T05:50:05.010000"],["2024-07-25T05:50:06.010000"],["2024-07-25T05:50:07.010000"],["2024-07-25T05:50:08.010000"],["2024-07-25T05:50:09.010000"],["2024-07-25T05:50:10.010000"],["2024-07-25T05:50:11.010000"],["2024-07-25T05:50:12.010000"],["2024-07-25T05:50:13.010000"],["2024-07-25T05:50:14.010000"],["2024-07-25T05:50:15.010000"],["2024-07-25T05:50:16.010000"],["2024-07-25T05:50:17.010000"],["2024-07-25T05:50:18.010000"],["2024-07-25T05:50:19.010000"],["2024-07-25T05:50:20.010000"],["2024-07-25T05:50:21.010000"],["2024-07-25T05:50:22.010000"],["2024-07-25T05:50:23.010000"],["2024-07-25T05:50:24.010000"],["2024-07-25T05:50:25.010000"],["2024-07-25T05:50:26.010000"],["2024-07-25T05:50:27.010000"],["2024-07-25T05:50:28.010000"],["2024-07-25T05:50:29.010000"],["2024-07-25T05:50:30.010000"],["2024-07-25T05:50:31.010000"],["2024-07-25T05:50:32.010000"],["2024-07-25T05:50:33.010000"],["2024-07-25T05:50:34.010000"],["2024-07-25T05:50:35.010000"],["2024-07-25T05:50:36.010000"],["2024-07-25T05:50:37.010000"],["2024-07-25T05:50:38.010000"],["2024-07-25T05:50:39.010000"],["2024-07-25T05:50:40.010000"],["2024-07-25T05:50:41.010000"],["2024-07-25T05:50:42.010000"],["2024-07-25T05:50:43.010000"],["2024-07-25T05:50:44.010000"],["2024-07-25T05:50:45.010000"],["2024-07-25T05:50:46.010000"],["2024-07-25T05:50:47.010000"],["2024-07-25T05:50:48.010000"],["2024-07-25T05:50:49.010000"],["2024-07-25T05:50:50.010000"],["2024-07-25T05:50:51.010000"],["2024-07-25T05:50:52.010000"],["2024-07-25T05:50:53.010000"],["2024-07-25T05:50:54.010000"],["2024-07-25T05:50:55.010000"],["2024-07-25T05:50:56.010000"],["2024-07-25T05:50:57.010000"],["2024-07-25T05:50:58.010000"],["2024-07-25T05:50:59.010000"],["2024-07-25T05:51:00.010000"],["2024-07-25T05:51:01.010000"],["2024-07-25T05:51:02.010000"],["2024-07-25T05:51:03.010000"],["2024-07-25T05:51:04.010000"],["2024-07-25T05:51:05.010000"],["2024-07-25T05:51:06.010000"],["2024-07-25T05:51:07.010000"],["2024-07-25T05:51:08.010000"],["2024-07-25T05:51:09.010000"],["2024-07-25T05:51:10.010000"],["2024-07-25T05:51:11.010000"],["2024-07-25T05:51:12.010000"],["2024-07-25T05:51:13.010000"],["2024-07-25T05:51:14.010000"],["2024-07-25T05:51:15.010000"],["2024-07-25T05:51:16.010000"],["2024-07-25T05:51:17.010000"],["2024-07-25T05:51:18.010000"],["2024-07-25T05:51:19.010000"],["2024-07-25T05:51:20.010000"],["2024-07-25T05:51:21.010000"],["2024-07-25T05:51:22.010000"],["2024-07-25T05:51:23.010000"],["2024-07-25T05:51:24.010000"],["2024-07-25T05:51:25.010000"],["2024-07-25T05:51:26.010000"],["2024-07-25T05:51:27.010000"],["2024-07-25T05:51:28.010000"],["2024-07-25T05:51:29.010000"],["2024-07-25T05:51:30.010000"],["2024-07-25T05:51:31.010000"],["2024-07-25T05:51:32.010000"],["2024-07-25T05:51:33.010000"],["2024-07-25T05:51:34.010000"],["2024-07-25T05:51:35.010000"],["2024-07-25T05:51:36.010000"],["2024-07-25T05:51:37.010000"],["2024-07-25T05:51:38.010000"],["2024-07-25T05:51:39.010000"],["2024-07-25T05:51:40.010000"],["2024-07-25T05:51:41.010000"],["2024-07-25T05:51:42.010000"],["2024-07-25T05:51:43.010000"],["2024-07-25T05:51:44.010000"],["2024-07-25T05:51:45.010000"],["2024-07-25T05:51:46.010000"],["2024-07-25T05:51:47.010000"],["2024-07-25T05:51:48.010000"],["2024-07-25T05:51:49.010000"],["2024-07-25T05:51:50.010000"],["2024-07-25T05:51:51.010000"],["2024-07-25T05:51:52.010000"],["2024-07-25T05:51:53.010000"],["2024-07-25T05:51:54.010000"],["2024-07-25T05:51:55.010000"],["2024-07-25T05:51:56.010000"],["2024-07-25T05:51:57.010000"],["2024-07-25T05:51:58.010000"],["2024-07-25T05:51:59.010000"],["2024-07-25T05:52:00.010000"],["2024-07-25T05:52:01.010000"],["2024-07-25T05:52:02.010000"],["2024-07-25T05:52:03.010000"],["2024-07-25T05:52:04.010000"],["2024-07-25T05:52:05.010000"],["2024-07-25T05:52:06.010000"],["2024-07-25T05:52:07.010000"],["2024-07-25T05:52:08.010000"],["2024-07-25T05:52:09.010000"],["2024-07-25T05:52:10.010000"],["2024-07-25T05:52:11.010000"],["2024-07-25T05:52:12.010000"],["2024-07-25T05:52:13.010000"],["2024-07-25T05:52:14.010000"],["2024-07-25T05:52:15.010000"],["2024-07-25T05:52:16.010000"],["2024-07-25T05:52:17.010000"],["2024-07-25T05:52:18.010000"],["2024-07-25T05:52:19.010000"],["2024-07-25T05:52:20.010000"],["2024-07-25T05:52:21.010000"],["2024-07-25T05:52:22.010000"],["2024-07-25T05:52:23.010000"],["2024-07-25T05:52:24.010000"],["2024-07-25T05:52:25.010000"],["2024-07-25T05:52:26.010000"],["2024-07-25T05:52:27.010000"],["2024-07-25T05:52:28.010000"],["2024-07-25T05:52:29.010000"],["2024-07-25T05:52:30.010000"],["2024-07-25T05:52:31.010000"],["2024-07-25T05:52:32.010000"],["2024-07-25T05:52:33.010000"],["2024-07-25T05:52:34.010000"],["2024-07-25T05:52:35.010000"],["2024-07-25T05:52:36.010000"],["2024-07-25T05:52:37.010000"],["2024-07-25T05:52:38.010000"],["2024-07-25T05:52:39.010000"],["2024-07-25T05:52:40.010000"],["2024-07-25T05:52:41.010000"],["2024-07-25T05:52:42.010000"],["2024-07-25T05:52:43.010000"],["2024-07-25T05:52:44.010000"],["2024-07-25T05:52:45.010000"],["2024-07-25T05:52:46.010000"],["2024-07-25T05:52:47.010000"],["2024-07-25T05:52:48.010000"],["2024-07-25T05:52:49.010000"],["2024-07-25T05:52:50.010000"],["2024-07-25T05:52:51.010000"],["2024-07-25T05:52:52.010000"],["2024-07-25T05:52:53.010000"],["2024-07-25T05:52:54.010000"],["2024-07-25T05:52:55.010000"],["2024-07-25T05:52:56.010000"],["2024-07-25T05:52:57.010000"],["2024-07-25T05:52:58.010000"],["2024-07-25T05:52:59.010000"],["2024-07-25T05:53:00.010000"],["2024-07-25T05:53:01.010000"],["2024-07-25T05:53:02.010000"],["2024-07-25T05:53:03.010000"],["2024-07-25T05:53:04.010000"],["2024-07-25T05:53:05.010000"],["2024-07-25T05:53:06.010000"],["2024-07-25T05:53:07.010000"],["2024-07-25T05:53:08.010000"],["2024-07-25T05:53:09.010000"],["2024-07-25T05:53:10.010000"],["2024-07-25T05:53:11.010000"],["2024-07-25T05:53:12.010000"],["2024-07-25T05:53:13.010000"],["2024-07-25T05:53:14.010000"],["2024-07-25T05:53:15.010000"],["2024-07-25T05:53:16.010000"],["2024-07-25T05:53:17.010000"],["2024-07-25T05:53:18.010000"],["2024-07-25T05:53:19.010000"],["2024-07-25T05:53:20.010000"],["2024-07-25T05:53:21.010000"],["2024-07-25T05:53:22.010000"],["2024-07-25T05:53:23.010000"],["2024-07-25T05:53:24.010000"],["2024-07-25T05:53:25.010000"],["2024-07-25T05:53:26.010000"],["2024-07-25T05:53:27.010000"],["2024-07-25T05:53:28.010000"],["2024-07-25T05:53:29.010000"],["2024-07-25T05:53:30.010000"],["2024-07-25T05:53:31.010000"],["2024-07-25T05:53:32.010000"],["2024-07-25T05:53:33.010000"],["2024-07-25T05:53:34.010000"],["2024-07-25T05:53:35.010000"],["2024-07-25T05:53:36.010000"],["2024-07-25T05:53:37.010000"],["2024-07-25T05:53:38.010000"],["2024-07-25T05:53:39.010000"],["2024-07-25T05:53:40.010000"],["2024-07-25T05:53:41.010000"],["2024-07-25T05:53:42.010000"],["2024-07-25T05:53:43.010000"],["2024-07-25T05:53:44.010000"],["2024-07-25T05:53:45.010000"],["2024-07-25T05:53:46.010000"],["2024-07-25T05:53:47.010000"],["2024-07-25T05:53:48.010000"],["2024-07-25T05:53:49.010000"],["2024-07-25T05:53:50.010000"],["2024-07-25T05:53:51.010000"],["2024-07-25T05:53:52.010000"],["2024-07-25T05:53:53.010000"],["2024-07-25T05:53:54.010000"],["2024-07-25T05:53:55.010000"],["2024-07-25T05:53:56.010000"],["2024-07-25T05:53:57.010000"],["2024-07-25T05:53:58.010000"],["2024-07-25T05:53:59.010000"],["2024-07-25T05:54:00.010000"],["2024-07-25T05:54:01.010000"],["2024-07-25T05:54:02.010000"],["2024-07-25T05:54:03.010000"],["2024-07-25T05:54:04.010000"],["2024-07-25T05:54:05.010000"],["2024-07-25T05:54:06.010000"],["2024-07-25T05:54:07.010000"],["2024-07-25T05:54:08.010000"],["2024-07-25T05:54:09.010000"],["2024-07-25T05:54:10.010000"],["2024-07-25T05:54:11.010000"],["2024-07-25T05:54:12.010000"],["2024-07-25T05:54:13.010000"],["2024-07-25T05:54:14.010000"],["2024-07-25T05:54:15.010000"],["2024-07-25T05:54:16.010000"],["2024-07-25T05:54:17.010000"],["2024-07-25T05:54:18.010000"],["2024-07-25T05:54:19.010000"],["2024-07-25T05:54:20.010000"],["2024-07-25T05:54:21.010000"],["2024-07-25T05:54:22.010000"],["2024-07-25T05:54:23.010000"],["2024-07-25T05:54:24.010000"],["2024-07-25T05:54:25.010000"],["2024-07-25T05:54:26.010000"],["2024-07-25T05:54:27.010000"],["2024-07-25T05:54:28.010000"],["2024-07-25T05:54:29.010000"],["2024-07-25T05:54:30.010000"],["2024-07-25T05:54:31.010000"],["2024-07-25T05:54:32.010000"],["2024-07-25T05:54:33.010000"],["2024-07-25T05:54:34.010000"],["2024-07-25T05:54:35.010000"],["2024-07-25T05:54:36.010000"],["2024-07-25T05:54:37.010000"],["2024-07-25T05:54:38.010000"],["2024-07-25T05:54:39.010000"],["2024-07-25T05:54:40.010000"],["2024-07-25T05:54:41.010000"],["2024-07-25T05:54:42.010000"],["2024-07-25T05:54:43.010000"],["2024-07-25T05:54:44.010000"],["2024-07-25T05:54:45.010000"],["2024-07-25T05:54:46.010000"],["2024-07-25T05:54:47.010000"],["2024-07-25T05:54:48.010000"],["2024-07-25T05:54:49.010000"],["2024-07-25T05:54:50.010000"],["2024-07-25T05:54:51.010000"],["2024-07-25T05:54:52.010000"],["2024-07-25T05:54:53.010000"],["2024-07-25T05:54:54.010000"],["2024-07-25T05:54:55.010000"],["2024-07-25T05:54:56.010000"],["2024-07-25T05:54:57.010000"],["2024-07-25T05:54:58.010000"],["2024-07-25T05:54:59.010000"],["2024-07-25T05:55:00.010000"],["2024-07-25T05:55:01.010000"],["2024-07-25T05:55:02.010000"],["2024-07-25T05:55:03.010000"],["2024-07-25T05:55:04.010000"],["2024-07-25T05:55:05.010000"],["2024-07-25T05:55:06.010000"],["2024-07-25T05:55:07.010000"],["2024-07-25T05:55:08.010000"],["2024-07-25T05:55:09.010000"],["2024-07-25T05:55:10.010000"],["2024-07-25T05:55:11.010000"],["2024-07-25T05:55:12.010000"],["2024-07-25T05:55:13.010000"],["2024-07-25T05:55:14.010000"],["2024-07-25T05:55:15.010000"],["2024-07-25T05:55:16.010000"],["2024-07-25T05:55:17.010000"],["2024-07-25T05:55:18.010000"],["2024-07-25T05:55:19.010000"],["2024-07-25T05:55:20.010000"],["2024-07-25T05:55:21.010000"],["2024-07-25T05:55:22.010000"],["2024-07-25T05:55:23.010000"],["2024-07-25T05:55:24.010000"],["2024-07-25T05:55:25.010000"],["2024-07-25T05:55:26.010000"],["2024-07-25T05:55:27.010000"],["2024-07-25T05:55:28.010000"],["2024-07-25T05:55:29.010000"],["2024-07-25T05:55:30.010000"],["2024-07-25T05:55:31.010000"],["2024-07-25T05:55:32.010000"],["2024-07-25T05:55:33.010000"],["2024-07-25T05:55:34.010000"],["2024-07-25T05:55:35.010000"],["2024-07-25T05:55:36.010000"],["2024-07-25T05:55:37.010000"],["2024-07-25T05:55:38.010000"],["2024-07-25T05:55:39.010000"],["2024-07-25T05:55:40.010000"],["2024-07-25T05:55:41.010000"],["2024-07-25T05:55:42.010000"],["2024-07-25T05:55:43.010000"],["2024-07-25T05:55:44.010000"],["2024-07-25T05:55:45.010000"],["2024-07-25T05:55:46.010000"],["2024-07-25T05:55:47.010000"],["2024-07-25T05:55:48.010000"],["2024-07-25T05:55:49.010000"],["2024-07-25T05:55:50.010000"],["2024-07-25T05:55:51.010000"],["2024-07-25T05:55:52.010000"],["2024-07-25T05:55:53.010000"],["2024-07-25T05:55:54.010000"],["2024-07-25T05:55:55.010000"],["2024-07-25T05:55:56.010000"],["2024-07-25T05:55:57.010000"],["2024-07-25T05:55:58.010000"],["2024-07-25T05:55:59.010000"],["2024-07-25T05:56:00.010000"],["2024-07-25T05:56:01.010000"],["2024-07-25T05:56:02.010000"],["2024-07-25T05:56:03.010000"],["2024-07-25T05:56:04.010000"],["2024-07-25T05:56:05.010000"],["2024-07-25T05:56:06.010000"],["2024-07-25T05:56:07.010000"],["2024-07-25T05:56:08.010000"],["2024-07-25T05:56:09.010000"],["2024-07-25T05:56:10.010000"],["2024-07-25T05:56:11.010000"],["2024-07-25T05:56:12.010000"],["2024-07-25T05:56:13.010000"],["2024-07-25T05:56:14.010000"],["2024-07-25T05:56:15.010000"],["2024-07-25T05:56:16.010000"],["2024-07-25T05:56:17.010000"],["2024-07-25T05:56:18.010000"],["2024-07-25T05:56:19.010000"],["2024-07-25T05:56:20.010000"],["2024-07-25T05:56:21.010000"],["2024-07-25T05:56:22.010000"],["2024-07-25T05:56:23.010000"],["2024-07-25T05:56:24.010000"],["2024-07-25T05:56:25.010000"],["2024-07-25T05:56:26.010000"],["2024-07-25T05:56:27.010000"],["2024-07-25T05:56:28.010000"],["2024-07-25T05:56:29.010000"],["2024-07-25T05:56:30.010000"],["2024-07-25T05:56:31.010000"],["2024-07-25T05:56:32.010000"],["2024-07-25T05:56:33.010000"],["2024-07-25T05:56:34.010000"],["2024-07-25T05:56:35.010000"],["2024-07-25T05:56:36.010000"],["2024-07-25T05:56:37.010000"],["2024-07-25T05:56:38.010000"],["2024-07-25T05:56:39.010000"],["2024-07-25T05:56:40.010000"],["2024-07-25T05:56:41.010000"],["2024-07-25T05:56:42.010000"],["2024-07-25T05:56:43.010000"],["2024-07-25T05:56:44.010000"],["2024-07-25T05:56:45.010000"],["2024-07-25T05:56:46.010000"],["2024-07-25T05:56:47.010000"],["2024-07-25T05:56:48.010000"],["2024-07-25T05:56:49.010000"],["2024-07-25T05:56:50.010000"],["2024-07-25T05:56:51.010000"],["2024-07-25T05:56:52.010000"],["2024-07-25T05:56:53.010000"],["2024-07-25T05:56:54.010000"],["2024-07-25T05:56:55.010000"],["2024-07-25T05:56:56.010000"],["2024-07-25T05:56:57.010000"],["2024-07-25T05:56:58.010000"],["2024-07-25T05:56:59.010000"],["2024-07-25T05:57:00.010000"],["2024-07-25T05:57:01.010000"],["2024-07-25T05:57:02.010000"],["2024-07-25T05:57:03.010000"],["2024-07-25T05:57:04.010000"],["2024-07-25T05:57:05.010000"],["2024-07-25T05:57:06.010000"],["2024-07-25T05:57:07.010000"],["2024-07-25T05:57:08.010000"],["2024-07-25T05:57:09.010000"],["2024-07-25T05:57:10.010000"],["2024-07-25T05:57:11.010000"],["2024-07-25T05:57:12.010000"],["2024-07-25T05:57:13.010000"],["2024-07-25T05:57:14.010000"],["2024-07-25T05:57:15.010000"],["2024-07-25T05:57:16.010000"],["2024-07-25T05:57:17.010000"],["2024-07-25T05:57:18.010000"],["2024-07-25T05:57:19.010000"],["2024-07-25T05:57:20.010000"],["2024-07-25T05:57:21.010000"],["2024-07-25T05:57:22.010000"],["2024-07-25T05:57:23.010000"],["2024-07-25T05:57:24.010000"],["2024-07-25T05:57:25.010000"],["2024-07-25T05:57:26.010000"],["2024-07-25T05:57:27.010000"],["2024-07-25T05:57:28.010000"],["2024-07-25T05:57:29.010000"],["2024-07-25T05:57:30.010000"],["2024-07-25T05:57:31.010000"],["2024-07-25T05:57:32.010000"],["2024-07-25T05:57:33.010000"],["2024-07-25T05:57:34.010000"],["2024-07-25T05:57:35.010000"],["2024-07-25T05:57:36.010000"],["2024-07-25T05:57:37.010000"],["2024-07-25T05:57:38.010000"],["2024-07-25T05:57:39.010000"],["2024-07-25T05:57:40.010000"],["2024-07-25T05:57:41.010000"],["2024-07-25T05:57:42.010000"],["2024-07-25T05:57:43.010000"],["2024-07-25T05:57:44.010000"],["2024-07-25T05:57:45.010000"],["2024-07-25T05:57:46.010000"],["2024-07-25T05:57:47.010000"],["2024-07-25T05:57:48.010000"],["2024-07-25T05:57:49.010000"],["2024-07-25T05:57:50.010000"],["2024-07-25T05:57:51.010000"],["2024-07-25T05:57:52.010000"],["2024-07-25T05:57:53.010000"],["2024-07-25T05:57:54.010000"],["2024-07-25T05:57:55.010000"],["2024-07-25T05:57:56.010000"],["2024-07-25T05:57:57.010000"],["2024-07-25T05:57:58.010000"],["2024-07-25T05:57:59.010000"],["2024-07-25T05:58:00.010000"],["2024-07-25T05:58:01.010000"],["2024-07-25T05:58:02.010000"],["2024-07-25T05:58:03.010000"],["2024-07-25T05:58:04.010000"],["2024-07-25T05:58:05.010000"],["2024-07-25T05:58:06.010000"],["2024-07-25T05:58:07.010000"],["2024-07-25T05:58:08.010000"],["2024-07-25T05:58:09.010000"],["2024-07-25T05:58:10.010000"],["2024-07-25T05:58:11.010000"],["2024-07-25T05:58:12.010000"],["2024-07-25T05:58:13.010000"],["2024-07-25T05:58:14.010000"],["2024-07-25T05:58:15.010000"],["2024-07-25T05:58:16.010000"],["2024-07-25T05:58:17.010000"],["2024-07-25T05:58:18.010000"],["2024-07-25T05:58:19.010000"],["2024-07-25T05:58:20.010000"],["2024-07-25T05:58:21.010000"],["2024-07-25T05:58:22.010000"],["2024-07-25T05:58:23.010000"],["2024-07-25T05:58:24.010000"],["2024-07-25T05:58:25.010000"],["2024-07-25T05:58:26.010000"],["2024-07-25T05:58:27.010000"],["2024-07-25T05:58:28.010000"],["2024-07-25T05:58:29.010000"],["2024-07-25T05:58:30.010000"],["2024-07-25T05:58:31.010000"],["2024-07-25T05:58:32.010000"],["2024-07-25T05:58:33.010000"],["2024-07-25T05:58:34.010000"],["2024-07-25T05:58:35.010000"],["2024-07-25T05:58:36.010000"],["2024-07-25T05:58:37.010000"],["2024-07-25T05:58:38.010000"],["2024-07-25T05:58:39.010000"],["2024-07-25T05:58:40.010000"],["2024-07-25T05:58:41.010000"],["2024-07-25T05:58:42.010000"],["2024-07-25T05:58:43.010000"],["2024-07-25T05:58:44.010000"],["2024-07-25T05:58:45.010000"],["2024-07-25T05:58:46.010000"],["2024-07-25T05:58:47.010000"],["2024-07-25T05:58:48.010000"],["2024-07-25T05:58:49.010000"],["2024-07-25T05:58:50.010000"],["2024-07-25T05:58:51.010000"],["2024-07-25T05:58:52.010000"],["2024-07-25T05:58:53.010000"],["2024-07-25T05:58:54.010000"],["2024-07-25T05:58:55.010000"],["2024-07-25T05:58:56.010000"],["2024-07-25T05:58:57.010000"],["2024-07-25T05:58:58.010000"],["2024-07-25T05:58:59.010000"],["2024-07-25T05:59:00.010000"],["2024-07-25T05:59:01.010000"],["2024-07-25T05:59:02.010000"],["2024-07-25T05:59:03.010000"],["2024-07-25T05:59:04.010000"],["2024-07-25T05:59:05.010000"],["2024-07-25T05:59:06.010000"],["2024-07-25T05:59:07.010000"],["2024-07-25T05:59:08.010000"],["2024-07-25T05:59:09.010000"],["2024-07-25T05:59:10.010000"],["2024-07-25T05:59:11.010000"],["2024-07-25T05:59:12.010000"],["2024-07-25T05:59:13.010000"],["2024-07-25T05:59:14.010000"],["2024-07-25T05:59:15.010000"],["2024-07-25T05:59:16.010000"],["2024-07-25T05:59:17.010000"],["2024-07-25T05:59:18.010000"],["2024-07-25T05:59:19.010000"],["2024-07-25T05:59:20.010000"],["2024-07-25T05:59:21.010000"],["2024-07-25T05:59:22.010000"],["2024-07-25T05:59:23.010000"],["2024-07-25T05:59:24.010000"],["2024-07-25T05:59:25.010000"],["2024-07-25T05:59:26.010000"],["2024-07-25T05:59:27.010000"],["2024-07-25T05:59:28.010000"],["2024-07-25T05:59:29.010000"],["2024-07-25T05:59:30.010000"],["2024-07-25T05:59:31.010000"],["2024-07-25T05:59:32.010000"],["2024-07-25T05:59:33.010000"],["2024-07-25T05:59:34.010000"],["2024-07-25T05:59:35.010000"],["2024-07-25T05:59:36.010000"],["2024-07-25T05:59:37.010000"],["2024-07-25T05:59:38.010000"],["2024-07-25T05:59:39.010000"],["2024-07-25T05:59:40.010000"],["2024-07-25T05:59:41.010000"],["2024-07-25T05:59:42.010000"],["2024-07-25T05:59:43.010000"],["2024-07-25T05:59:44.010000"],["2024-07-25T05:59:45.010000"],["2024-07-25T05:59:46.010000"],["2024-07-25T05:59:47.010000"],["2024-07-25T05:59:48.010000"],["2024-07-25T05:59:49.010000"],["2024-07-25T05:59:50.010000"],["2024-07-25T05:59:51.010000"],["2024-07-25T05:59:52.010000"],["2024-07-25T05:59:53.010000"],["2024-07-25T05:59:54.010000"],["2024-07-25T05:59:55.010000"],["2024-07-25T05:59:56.010000"],["2024-07-25T05:59:57.010000"],["2024-07-25T05:59:58.010000"],["2024-07-25T05:59:59.010000"],["2024-07-25T06:00:00.010000"],["2024-07-25T06:00:01.010000"],["2024-07-25T06:00:02.010000"],["2024-07-25T06:00:03.010000"],["2024-07-25T06:00:04.010000"],["2024-07-25T06:00:05.010000"],["2024-07-25T06:00:06.010000"],["2024-07-25T06:00:07.010000"],["2024-07-25T06:00:08.010000"],["2024-07-25T06:00:09.010000"],["2024-07-25T06:00:10.010000"],["2024-07-25T06:00:11.010000"],["2024-07-25T06:00:12.010000"],["2024-07-25T06:00:13.010000"],["2024-07-25T06:00:14.010000"],["2024-07-25T06:00:15.010000"],["2024-07-25T06:00:16.010000"],["2024-07-25T06:00:17.010000"],["2024-07-25T06:00:18.010000"],["2024-07-25T06:00:19.010000"],["2024-07-25T06:00:20.010000"],["2024-07-25T06:00:21.010000"],["2024-07-25T06:00:22.010000"],["2024-07-25T06:00:23.010000"],["2024-07-25T06:00:24.010000"],["2024-07-25T06:00:25.010000"],["2024-07-25T06:00:26.010000"],["2024-07-25T06:00:27.010000"],["2024-07-25T06:00:28.010000"],["2024-07-25T06:00:29.010000"],["2024-07-25T06:00:30.010000"],["2024-07-25T06:00:31.010000"],["2024-07-25T06:00:32.010000"],["2024-07-25T06:00:33.010000"],["2024-07-25T06:00:34.010000"],["2024-07-25T06:00:35.010000"],["2024-07-25T06:00:36.010000"],["2024-07-25T06:00:37.010000"],["2024-07-25T06:00:38.010000"],["2024-07-25T06:00:39.010000"],["2024-07-25T06:00:40.010000"],["2024-07-25T06:00:41.010000"],["2024-07-25T06:00:42.010000"],["2024-07-25T06:00:43.010000"],["2024-07-25T06:00:44.010000"],["2024-07-25T06:00:45.010000"],["2024-07-25T06:00:46.010000"],["2024-07-25T06:00:47.010000"],["2024-07-25T06:00:48.010000"],["2024-07-25T06:00:49.010000"],["2024-07-25T06:00:50.010000"],["2024-07-25T06:00:51.010000"],["2024-07-25T06:00:52.010000"],["2024-07-25T06:00:53.010000"],["2024-07-25T06:00:54.010000"],["2024-07-25T06:00:55.010000"],["2024-07-25T06:00:56.010000"],["2024-07-25T06:00:57.010000"],["2024-07-25T06:00:58.010000"],["2024-07-25T06:00:59.010000"],["2024-07-25T06:01:00.010000"],["2024-07-25T06:01:01.010000"],["2024-07-25T06:01:02.010000"],["2024-07-25T06:01:03.010000"],["2024-07-25T06:01:04.010000"],["2024-07-25T06:01:05.010000"],["2024-07-25T06:01:06.010000"],["2024-07-25T06:01:07.010000"],["2024-07-25T06:01:08.010000"],["2024-07-25T06:01:09.010000"],["2024-07-25T06:01:10.010000"],["2024-07-25T06:01:11.010000"],["2024-07-25T06:01:12.010000"],["2024-07-25T06:01:13.010000"],["2024-07-25T06:01:14.010000"],["2024-07-25T06:01:15.010000"],["2024-07-25T06:01:16.010000"],["2024-07-25T06:01:17.010000"],["2024-07-25T06:01:18.010000"],["2024-07-25T06:01:19.010000"],["2024-07-25T06:01:20.010000"],["2024-07-25T06:01:21.010000"],["2024-07-25T06:01:22.010000"],["2024-07-25T06:01:23.010000"],["2024-07-25T06:01:24.010000"],["2024-07-25T06:01:25.010000"],["2024-07-25T06:01:26.010000"],["2024-07-25T06:01:27.010000"],["2024-07-25T06:01:28.010000"],["2024-07-25T06:01:29.010000"],["2024-07-25T06:01:30.010000"],["2024-07-25T06:01:31.010000"],["2024-07-25T06:01:32.010000"],["2024-07-25T06:01:33.010000"],["2024-07-25T06:01:34.010000"],["2024-07-25T06:01:35.010000"],["2024-07-25T06:01:36.010000"],["2024-07-25T06:01:37.010000"],["2024-07-25T06:01:38.010000"],["2024-07-25T06:01:39.010000"],["2024-07-25T06:01:40.010000"],["2024-07-25T06:01:41.010000"],["2024-07-25T06:01:42.010000"],["2024-07-25T06:01:43.010000"],["2024-07-25T06:01:44.010000"],["2024-07-25T06:01:45.010000"],["2024-07-25T06:01:46.010000"],["2024-07-25T06:01:47.010000"],["2024-07-25T06:01:48.010000"],["2024-07-25T06:01:49.010000"],["2024-07-25T06:01:50.010000"],["2024-07-25T06:01:51.010000"],["2024-07-25T06:01:52.010000"],["2024-07-25T06:01:53.010000"],["2024-07-25T06:01:54.010000"],["2024-07-25T06:01:55.010000"],["2024-07-25T06:01:56.010000"],["2024-07-25T06:01:57.010000"],["2024-07-25T06:01:58.010000"],["2024-07-25T06:01:59.010000"],["2024-07-25T06:02:00.010000"],["2024-07-25T06:02:01.010000"],["2024-07-25T06:02:02.010000"],["2024-07-25T06:02:03.010000"],["2024-07-25T06:02:04.010000"],["2024-07-25T06:02:05.010000"],["2024-07-25T06:02:06.010000"],["2024-07-25T06:02:07.010000"],["2024-07-25T06:02:08.010000"],["2024-07-25T06:02:09.010000"],["2024-07-25T06:02:10.010000"],["2024-07-25T06:02:11.010000"],["2024-07-25T06:02:12.010000"],["2024-07-25T06:02:13.010000"],["2024-07-25T06:02:14.010000"],["2024-07-25T06:02:15.010000"],["2024-07-25T06:02:16.010000"],["2024-07-25T06:02:17.010000"],["2024-07-25T06:02:18.010000"],["2024-07-25T06:02:19.010000"],["2024-07-25T06:02:20.010000"],["2024-07-25T06:02:21.010000"],["2024-07-25T06:02:22.010000"],["2024-07-25T06:02:23.010000"],["2024-07-25T06:02:24.010000"],["2024-07-25T06:02:25.010000"],["2024-07-25T06:02:26.010000"],["2024-07-25T06:02:27.010000"],["2024-07-25T06:02:28.010000"],["2024-07-25T06:02:29.010000"],["2024-07-25T06:02:30.010000"],["2024-07-25T06:02:31.010000"],["2024-07-25T06:02:32.010000"],["2024-07-25T06:02:33.010000"],["2024-07-25T06:02:34.010000"],["2024-07-25T06:02:35.010000"],["2024-07-25T06:02:36.010000"],["2024-07-25T06:02:37.010000"],["2024-07-25T06:02:38.010000"],["2024-07-25T06:02:39.010000"],["2024-07-25T06:02:40.010000"],["2024-07-25T06:02:41.010000"],["2024-07-25T06:02:42.010000"],["2024-07-25T06:02:43.010000"],["2024-07-25T06:02:44.010000"],["2024-07-25T06:02:45.010000"],["2024-07-25T06:02:46.010000"],["2024-07-25T06:02:47.010000"],["2024-07-25T06:02:48.010000"],["2024-07-25T06:02:49.010000"],["2024-07-25T06:02:50.010000"],["2024-07-25T06:02:51.010000"],["2024-07-25T06:02:52.010000"],["2024-07-25T06:02:53.010000"],["2024-07-25T06:02:54.010000"],["2024-07-25T06:02:55.010000"],["2024-07-25T06:02:56.010000"],["2024-07-25T06:02:57.010000"],["2024-07-25T06:02:58.010000"],["2024-07-25T06:02:59.010000"],["2024-07-25T06:03:00.010000"],["2024-07-25T06:03:01.010000"],["2024-07-25T06:03:02.010000"],["2024-07-25T06:03:03.010000"],["2024-07-25T06:03:04.010000"],["2024-07-25T06:03:05.010000"],["2024-07-25T06:03:06.010000"],["2024-07-25T06:03:07.010000"],["2024-07-25T06:03:08.010000"],["2024-07-25T06:03:09.010000"],["2024-07-25T06:03:10.010000"],["2024-07-25T06:03:11.010000"],["2024-07-25T06:03:12.010000"],["2024-07-25T06:03:13.010000"],["2024-07-25T06:03:14.010000"],["2024-07-25T06:03:15.010000"],["2024-07-25T06:03:16.010000"],["2024-07-25T06:03:17.010000"],["2024-07-25T06:03:18.010000"],["2024-07-25T06:03:19.010000"],["2024-07-25T06:03:20.010000"],["2024-07-25T06:03:21.010000"],["2024-07-25T06:03:22.010000"],["2024-07-25T06:03:23.010000"],["2024-07-25T06:03:24.010000"],["2024-07-25T06:03:25.010000"],["2024-07-25T06:03:26.010000"],["2024-07-25T06:03:27.010000"],["2024-07-25T06:03:28.010000"],["2024-07-25T06:03:29.010000"],["2024-07-25T06:03:30.010000"],["2024-07-25T06:03:31.010000"],["2024-07-25T06:03:32.010000"],["2024-07-25T06:03:33.010000"],["2024-07-25T06:03:34.010000"],["2024-07-25T06:03:35.010000"],["2024-07-25T06:03:36.010000"],["2024-07-25T06:03:37.010000"],["2024-07-25T06:03:38.010000"],["2024-07-25T06:03:39.010000"],["2024-07-25T06:03:40.010000"],["2024-07-25T06:03:41.010000"],["2024-07-25T06:03:42.010000"],["2024-07-25T06:03:43.010000"],["2024-07-25T06:03:44.010000"],["2024-07-25T06:03:45.010000"],["2024-07-25T06:03:46.010000"],["2024-07-25T06:03:47.010000"],["2024-07-25T06:03:48.010000"],["2024-07-25T06:03:49.010000"],["2024-07-25T06:03:50.010000"],["2024-07-25T06:03:51.010000"],["2024-07-25T06:03:52.010000"],["2024-07-25T06:03:53.010000"],["2024-07-25T06:03:54.010000"],["2024-07-25T06:03:55.010000"],["2024-07-25T06:03:56.010000"],["2024-07-25T06:03:57.010000"],["2024-07-25T06:03:58.010000"],["2024-07-25T06:03:59.010000"],["2024-07-25T06:04:00.010000"],["2024-07-25T06:04:01.010000"],["2024-07-25T06:04:02.010000"],["2024-07-25T06:04:03.010000"],["2024-07-25T06:04:04.010000"],["2024-07-25T06:04:05.010000"],["2024-07-25T06:04:06.010000"],["2024-07-25T06:04:07.010000"],["2024-07-25T06:04:08.010000"],["2024-07-25T06:04:09.010000"],["2024-07-25T06:04:10.010000"],["2024-07-25T06:04:11.010000"],["2024-07-25T06:04:12.010000"],["2024-07-25T06:04:13.010000"],["2024-07-25T06:04:14.010000"],["2024-07-25T06:04:15.010000"],["2024-07-25T06:04:16.010000"],["2024-07-25T06:04:17.010000"],["2024-07-25T06:04:18.010000"],["2024-07-25T06:04:19.010000"],["2024-07-25T06:04:20.010000"],["2024-07-25T06:04:21.010000"],["2024-07-25T06:04:22.010000"],["2024-07-25T06:04:23.010000"],["2024-07-25T06:04:24.010000"],["2024-07-25T06:04:25.010000"],["2024-07-25T06:04:26.010000"],["2024-07-25T06:04:27.010000"],["2024-07-25T06:04:28.010000"],["2024-07-25T06:04:29.010000"],["2024-07-25T06:04:30.010000"],["2024-07-25T06:04:31.010000"],["2024-07-25T06:04:32.010000"],["2024-07-25T06:04:33.010000"],["2024-07-25T06:04:34.010000"],["2024-07-25T06:04:35.010000"],["2024-07-25T06:04:36.010000"],["2024-07-25T06:04:37.010000"],["2024-07-25T06:04:38.010000"],["2024-07-25T06:04:39.010000"],["2024-07-25T06:04:40.010000"],["2024-07-25T06:04:41.010000"],["2024-07-25T06:04:42.010000"],["2024-07-25T06:04:43.010000"],["2024-07-25T06:04:44.010000"],["2024-07-25T06:04:45.010000"],["2024-07-25T06:04:46.010000"],["2024-07-25T06:04:47.010000"],["2024-07-25T06:04:48.010000"],["2024-07-25T06:04:49.010000"],["2024-07-25T06:04:50.010000"],["2024-07-25T06:04:51.010000"],["2024-07-25T06:04:52.010000"],["2024-07-25T06:04:53.010000"],["2024-07-25T06:04:54.010000"],["2024-07-25T06:04:55.010000"],["2024-07-25T06:04:56.010000"],["2024-07-25T06:04:57.010000"],["2024-07-25T06:04:58.010000"],["2024-07-25T06:04:59.010000"],["2024-07-25T06:05:00.010000"],["2024-07-25T06:05:01.010000"],["2024-07-25T06:05:02.010000"],["2024-07-25T06:05:03.010000"],["2024-07-25T06:05:04.010000"],["2024-07-25T06:05:05.010000"],["2024-07-25T06:05:06.010000"],["2024-07-25T06:05:07.010000"],["2024-07-25T06:05:08.010000"],["2024-07-25T06:05:09.010000"],["2024-07-25T06:05:10.010000"],["2024-07-25T06:05:11.010000"],["2024-07-25T06:05:12.010000"],["2024-07-25T06:05:13.010000"],["2024-07-25T06:05:14.010000"],["2024-07-25T06:05:15.010000"],["2024-07-25T06:05:16.010000"],["2024-07-25T06:05:17.010000"],["2024-07-25T06:05:18.010000"],["2024-07-25T06:05:19.010000"],["2024-07-25T06:05:20.010000"],["2024-07-25T06:05:21.010000"],["2024-07-25T06:05:22.010000"],["2024-07-25T06:05:23.010000"],["2024-07-25T06:05:24.010000"],["2024-07-25T06:05:25.010000"],["2024-07-25T06:05:26.010000"],["2024-07-25T06:05:27.010000"],["2024-07-25T06:05:28.010000"],["2024-07-25T06:05:29.010000"],["2024-07-25T06:05:30.010000"],["2024-07-25T06:05:31.010000"],["2024-07-25T06:05:32.010000"],["2024-07-25T06:05:33.010000"],["2024-07-25T06:05:34.010000"],["2024-07-25T06:05:35.010000"],["2024-07-25T06:05:36.010000"],["2024-07-25T06:05:37.010000"],["2024-07-25T06:05:38.010000"],["2024-07-25T06:05:39.010000"],["2024-07-25T06:05:40.010000"],["2024-07-25T06:05:41.010000"],["2024-07-25T06:05:42.010000"],["2024-07-25T06:05:43.010000"],["2024-07-25T06:05:44.010000"],["2024-07-25T06:05:45.010000"],["2024-07-25T06:05:46.010000"],["2024-07-25T06:05:47.010000"],["2024-07-25T06:05:48.010000"],["2024-07-25T06:05:49.010000"],["2024-07-25T06:05:50.010000"],["2024-07-25T06:05:51.010000"],["2024-07-25T06:05:52.010000"],["2024-07-25T06:05:53.010000"],["2024-07-25T06:05:54.010000"],["2024-07-25T06:05:55.010000"],["2024-07-25T06:05:56.010000"],["2024-07-25T06:05:57.010000"],["2024-07-25T06:05:58.010000"],["2024-07-25T06:05:59.010000"],["2024-07-25T06:06:00.010000"],["2024-07-25T06:06:01.010000"],["2024-07-25T06:06:02.010000"],["2024-07-25T06:06:03.010000"],["2024-07-25T06:06:04.010000"],["2024-07-25T06:06:05.010000"],["2024-07-25T06:06:06.010000"],["2024-07-25T06:06:07.010000"],["2024-07-25T06:06:08.010000"],["2024-07-25T06:06:09.010000"],["2024-07-25T06:06:10.010000"],["2024-07-25T06:06:11.010000"],["2024-07-25T06:06:12.010000"],["2024-07-25T06:06:13.010000"],["2024-07-25T06:06:14.010000"],["2024-07-25T06:06:15.010000"],["2024-07-25T06:06:16.010000"],["2024-07-25T06:06:17.010000"],["2024-07-25T06:06:18.010000"],["2024-07-25T06:06:19.010000"],["2024-07-25T06:06:20.010000"],["2024-07-25T06:06:21.010000"],["2024-07-25T06:06:22.010000"],["2024-07-25T06:06:23.010000"],["2024-07-25T06:06:24.010000"],["2024-07-25T06:06:25.010000"],["2024-07-25T06:06:26.010000"],["2024-07-25T06:06:27.010000"],["2024-07-25T06:06:28.010000"],["2024-07-25T06:06:29.010000"],["2024-07-25T06:06:30.010000"],["2024-07-25T06:06:31.010000"],["2024-07-25T06:06:32.010000"],["2024-07-25T06:06:33.010000"],["2024-07-25T06:06:34.010000"],["2024-07-25T06:06:35.010000"],["2024-07-25T06:06:36.010000"],["2024-07-25T06:06:37.010000"],["2024-07-25T06:06:38.010000"],["2024-07-25T06:06:39.010000"],["2024-07-25T06:06:40.010000"],["2024-07-25T06:06:41.010000"],["2024-07-25T06:06:42.010000"],["2024-07-25T06:06:43.010000"],["2024-07-25T06:06:44.010000"],["2024-07-25T06:06:45.010000"],["2024-07-25T06:06:46.010000"],["2024-07-25T06:06:47.010000"],["2024-07-25T06:06:48.010000"],["2024-07-25T06:06:49.010000"],["2024-07-25T06:06:50.010000"],["2024-07-25T06:06:51.010000"],["2024-07-25T06:06:52.010000"],["2024-07-25T06:06:53.010000"],["2024-07-25T06:06:54.010000"],["2024-07-25T06:06:55.010000"],["2024-07-25T06:06:56.010000"],["2024-07-25T06:06:57.010000"],["2024-07-25T06:06:58.010000"],["2024-07-25T06:06:59.010000"],["2024-07-25T06:07:00.010000"],["2024-07-25T06:07:01.010000"],["2024-07-25T06:07:02.010000"],["2024-07-25T06:07:03.010000"],["2024-07-25T06:07:04.010000"],["2024-07-25T06:07:05.010000"],["2024-07-25T06:07:06.010000"],["2024-07-25T06:07:07.010000"],["2024-07-25T06:07:08.010000"],["2024-07-25T06:07:09.010000"],["2024-07-25T06:07:10.010000"],["2024-07-25T06:07:11.010000"],["2024-07-25T06:07:12.010000"],["2024-07-25T06:07:13.010000"],["2024-07-25T06:07:14.010000"],["2024-07-25T06:07:15.010000"],["2024-07-25T06:07:16.010000"],["2024-07-25T06:07:17.010000"],["2024-07-25T06:07:18.010000"],["2024-07-25T06:07:19.010000"],["2024-07-25T06:07:20.010000"],["2024-07-25T06:07:21.010000"],["2024-07-25T06:07:22.010000"],["2024-07-25T06:07:23.010000"],["2024-07-25T06:07:24.010000"],["2024-07-25T06:07:25.010000"],["2024-07-25T06:07:26.010000"],["2024-07-25T06:07:27.010000"],["2024-07-25T06:07:28.010000"],["2024-07-25T06:07:29.010000"],["2024-07-25T06:07:30.010000"],["2024-07-25T06:07:31.010000"],["2024-07-25T06:07:32.010000"],["2024-07-25T06:07:33.010000"],["2024-07-25T06:07:34.010000"],["2024-07-25T06:07:35.010000"],["2024-07-25T06:07:36.010000"],["2024-07-25T06:07:37.010000"],["2024-07-25T06:07:38.010000"],["2024-07-25T06:07:39.010000"],["2024-07-25T06:07:40.010000"],["2024-07-25T06:07:41.010000"],["2024-07-25T06:07:42.010000"],["2024-07-25T06:07:43.010000"],["2024-07-25T06:07:44.010000"],["2024-07-25T06:07:45.010000"],["2024-07-25T06:07:46.010000"],["2024-07-25T06:07:47.010000"],["2024-07-25T06:07:48.010000"],["2024-07-25T06:07:49.010000"],["2024-07-25T06:07:50.010000"],["2024-07-25T06:07:51.010000"],["2024-07-25T06:07:52.010000"],["2024-07-25T06:07:53.010000"],["2024-07-25T06:07:54.010000"],["2024-07-25T06:07:55.010000"],["2024-07-25T06:07:56.010000"],["2024-07-25T06:07:57.010000"],["2024-07-25T06:07:58.010000"],["2024-07-25T06:07:59.010000"],["2024-07-25T06:08:00.010000"],["2024-07-25T06:08:01.010000"],["2024-07-25T06:08:02.010000"],["2024-07-25T06:08:03.010000"],["2024-07-25T06:08:04.010000"],["2024-07-25T06:08:05.010000"],["2024-07-25T06:08:06.010000"],["2024-07-25T06:08:07.010000"],["2024-07-25T06:08:08.010000"],["2024-07-25T06:08:09.010000"],["2024-07-25T06:08:10.010000"],["2024-07-25T06:08:11.010000"],["2024-07-25T06:08:12.010000"],["2024-07-25T06:08:13.010000"],["2024-07-25T06:08:14.010000"],["2024-07-25T06:08:15.010000"],["2024-07-25T06:08:16.010000"],["2024-07-25T06:08:17.010000"],["2024-07-25T06:08:18.010000"],["2024-07-25T06:08:19.010000"],["2024-07-25T06:08:20.010000"],["2024-07-25T06:08:21.010000"],["2024-07-25T06:08:22.010000"],["2024-07-25T06:08:23.010000"],["2024-07-25T06:08:24.010000"],["2024-07-25T06:08:25.010000"],["2024-07-25T06:08:26.010000"],["2024-07-25T06:08:27.010000"],["2024-07-25T06:08:28.010000"],["2024-07-25T06:08:29.010000"],["2024-07-25T06:08:30.010000"],["2024-07-25T06:08:31.010000"],["2024-07-25T06:08:32.010000"],["2024-07-25T06:08:33.010000"],["2024-07-25T06:08:34.010000"],["2024-07-25T06:08:35.010000"],["2024-07-25T06:08:36.010000"],["2024-07-25T06:08:37.010000"],["2024-07-25T06:08:38.010000"],["2024-07-25T06:08:39.010000"],["2024-07-25T06:08:40.010000"],["2024-07-25T06:08:41.010000"],["2024-07-25T06:08:42.010000"],["2024-07-25T06:08:43.010000"],["2024-07-25T06:08:44.010000"],["2024-07-25T06:08:45.010000"],["2024-07-25T06:08:46.010000"],["2024-07-25T06:08:47.010000"],["2024-07-25T06:08:48.010000"],["2024-07-25T06:08:49.010000"],["2024-07-25T06:08:50.010000"],["2024-07-25T06:08:51.010000"],["2024-07-25T06:08:52.010000"],["2024-07-25T06:08:53.010000"],["2024-07-25T06:08:54.010000"],["2024-07-25T06:08:55.010000"],["2024-07-25T06:08:56.010000"],["2024-07-25T06:08:57.010000"],["2024-07-25T06:08:58.010000"],["2024-07-25T06:08:59.010000"],["2024-07-25T06:09:00.010000"],["2024-07-25T06:09:01.010000"],["2024-07-25T06:09:02.010000"],["2024-07-25T06:09:03.010000"],["2024-07-25T06:09:04.010000"],["2024-07-25T06:09:05.010000"],["2024-07-25T06:09:06.010000"],["2024-07-25T06:09:07.010000"],["2024-07-25T06:09:08.010000"],["2024-07-25T06:09:09.010000"],["2024-07-25T06:09:10.010000"],["2024-07-25T06:09:11.010000"],["2024-07-25T06:09:12.010000"],["2024-07-25T06:09:13.010000"],["2024-07-25T06:09:14.010000"],["2024-07-25T06:09:15.010000"],["2024-07-25T06:09:16.010000"],["2024-07-25T06:09:17.010000"],["2024-07-25T06:09:18.010000"],["2024-07-25T06:09:19.010000"],["2024-07-25T06:09:20.010000"],["2024-07-25T06:09:21.010000"],["2024-07-25T06:09:22.010000"],["2024-07-25T06:09:23.010000"],["2024-07-25T06:09:24.010000"],["2024-07-25T06:09:25.010000"],["2024-07-25T06:09:26.010000"],["2024-07-25T06:09:27.010000"],["2024-07-25T06:09:28.010000"],["2024-07-25T06:09:29.010000"],["2024-07-25T06:09:30.010000"],["2024-07-25T06:09:31.010000"],["2024-07-25T06:09:32.010000"],["2024-07-25T06:09:33.010000"],["2024-07-25T06:09:34.010000"],["2024-07-25T06:09:35.010000"],["2024-07-25T06:09:36.010000"],["2024-07-25T06:09:37.010000"],["2024-07-25T06:09:38.010000"],["2024-07-25T06:09:39.010000"],["2024-07-25T06:09:40.010000"],["2024-07-25T06:09:41.010000"],["2024-07-25T06:09:42.010000"],["2024-07-25T06:09:43.010000"],["2024-07-25T06:09:44.010000"],["2024-07-25T06:09:45.010000"],["2024-07-25T06:09:46.010000"],["2024-07-25T06:09:47.010000"],["2024-07-25T06:09:48.010000"],["2024-07-25T06:09:49.010000"],["2024-07-25T06:09:50.010000"],["2024-07-25T06:09:51.010000"],["2024-07-25T06:09:52.010000"],["2024-07-25T06:09:53.010000"],["2024-07-25T06:09:54.010000"],["2024-07-25T06:09:55.010000"],["2024-07-25T06:09:56.010000"],["2024-07-25T06:09:57.010000"],["2024-07-25T06:09:58.010000"],["2024-07-25T06:09:59.010000"],["2024-07-25T06:10:00.010000"],["2024-07-25T06:10:01.010000"],["2024-07-25T06:10:02.010000"],["2024-07-25T06:10:03.010000"],["2024-07-25T06:10:04.010000"],["2024-07-25T06:10:05.010000"],["2024-07-25T06:10:06.010000"],["2024-07-25T06:10:07.010000"],["2024-07-25T06:10:08.010000"],["2024-07-25T06:10:09.010000"],["2024-07-25T06:10:10.010000"],["2024-07-25T06:10:11.010000"],["2024-07-25T06:10:12.010000"],["2024-07-25T06:10:13.010000"],["2024-07-25T06:10:14.010000"],["2024-07-25T06:10:15.010000"],["2024-07-25T06:10:16.010000"],["2024-07-25T06:10:17.010000"],["2024-07-25T06:10:18.010000"],["2024-07-25T06:10:19.010000"],["2024-07-25T06:10:20.010000"],["2024-07-25T06:10:21.010000"],["2024-07-25T06:10:22.010000"],["2024-07-25T06:10:23.010000"],["2024-07-25T06:10:24.010000"],["2024-07-25T06:10:25.010000"],["2024-07-25T06:10:26.010000"],["2024-07-25T06:10:27.010000"],["2024-07-25T06:10:28.010000"],["2024-07-25T06:10:29.010000"],["2024-07-25T06:10:30.010000"],["2024-07-25T06:10:31.010000"],["2024-07-25T06:10:32.010000"],["2024-07-25T06:10:33.010000"],["2024-07-25T06:10:34.010000"],["2024-07-25T06:10:35.010000"],["2024-07-25T06:10:36.010000"],["2024-07-25T06:10:37.010000"],["2024-07-25T06:10:38.010000"],["2024-07-25T06:10:39.010000"],["2024-07-25T06:10:40.010000"],["2024-07-25T06:10:41.010000"],["2024-07-25T06:10:42.010000"],["2024-07-25T06:10:43.010000"],["2024-07-25T06:10:44.010000"],["2024-07-25T06:10:45.010000"],["2024-07-25T06:10:46.010000"],["2024-07-25T06:10:47.010000"],["2024-07-25T06:10:48.010000"],["2024-07-25T06:10:49.010000"],["2024-07-25T06:10:50.010000"],["2024-07-25T06:10:51.010000"],["2024-07-25T06:10:52.010000"],["2024-07-25T06:10:53.010000"],["2024-07-25T06:10:54.010000"],["2024-07-25T06:10:55.010000"],["2024-07-25T06:10:56.010000"],["2024-07-25T06:10:57.010000"],["2024-07-25T06:10:58.010000"],["2024-07-25T06:10:59.010000"],["2024-07-25T06:11:00.010000"],["2024-07-25T06:11:01.010000"],["2024-07-25T06:11:02.010000"],["2024-07-25T06:11:03.010000"],["2024-07-25T06:11:04.010000"],["2024-07-25T06:11:05.010000"],["2024-07-25T06:11:06.010000"],["2024-07-25T06:11:07.010000"],["2024-07-25T06:11:08.010000"],["2024-07-25T06:11:09.010000"],["2024-07-25T06:11:10.010000"],["2024-07-25T06:11:11.010000"],["2024-07-25T06:11:12.010000"],["2024-07-25T06:11:13.010000"],["2024-07-25T06:11:14.010000"],["2024-07-25T06:11:15.010000"],["2024-07-25T06:11:16.010000"],["2024-07-25T06:11:17.010000"],["2024-07-25T06:11:18.010000"],["2024-07-25T06:11:19.010000"],["2024-07-25T06:11:20.010000"],["2024-07-25T06:11:21.010000"],["2024-07-25T06:11:22.010000"],["2024-07-25T06:11:23.010000"],["2024-07-25T06:11:24.010000"],["2024-07-25T06:11:25.010000"],["2024-07-25T06:11:26.010000"],["2024-07-25T06:11:27.010000"],["2024-07-25T06:11:28.010000"],["2024-07-25T06:11:29.010000"],["2024-07-25T06:11:30.010000"],["2024-07-25T06:11:31.010000"],["2024-07-25T06:11:32.010000"],["2024-07-25T06:11:33.010000"],["2024-07-25T06:11:34.010000"],["2024-07-25T06:11:35.010000"],["2024-07-25T06:11:36.010000"],["2024-07-25T06:11:37.010000"],["2024-07-25T06:11:38.010000"],["2024-07-25T06:11:39.010000"],["2024-07-25T06:11:40.010000"],["2024-07-25T06:11:41.010000"],["2024-07-25T06:11:42.010000"],["2024-07-25T06:11:43.010000"],["2024-07-25T06:11:44.010000"],["2024-07-25T06:11:45.010000"],["2024-07-25T06:11:46.010000"],["2024-07-25T06:11:47.010000"],["2024-07-25T06:11:48.010000"],["2024-07-25T06:11:49.010000"],["2024-07-25T06:11:50.010000"],["2024-07-25T06:11:51.010000"],["2024-07-25T06:11:52.010000"],["2024-07-25T06:11:53.010000"],["2024-07-25T06:11:54.010000"],["2024-07-25T06:11:55.010000"],["2024-07-25T06:11:56.010000"],["2024-07-25T06:11:57.010000"],["2024-07-25T06:11:58.010000"],["2024-07-25T06:11:59.010000"],["2024-07-25T06:12:00.010000"],["2024-07-25T06:12:01.010000"],["2024-07-25T06:12:02.010000"],["2024-07-25T06:12:03.010000"],["2024-07-25T06:12:04.010000"],["2024-07-25T06:12:05.010000"],["2024-07-25T06:12:06.010000"],["2024-07-25T06:12:07.010000"],["2024-07-25T06:12:08.010000"],["2024-07-25T06:12:09.010000"],["2024-07-25T06:12:10.010000"],["2024-07-25T06:12:11.010000"],["2024-07-25T06:12:12.010000"],["2024-07-25T06:12:13.010000"],["2024-07-25T06:12:14.010000"],["2024-07-25T06:12:15.010000"],["2024-07-25T06:12:16.010000"],["2024-07-25T06:12:17.010000"],["2024-07-25T06:12:18.010000"],["2024-07-25T06:12:19.010000"],["2024-07-25T06:12:20.010000"],["2024-07-25T06:12:21.010000"],["2024-07-25T06:12:22.010000"],["2024-07-25T06:12:23.010000"],["2024-07-25T06:12:24.010000"],["2024-07-25T06:12:25.010000"],["2024-07-25T06:12:26.010000"],["2024-07-25T06:12:27.010000"],["2024-07-25T06:12:28.010000"],["2024-07-25T06:12:29.010000"],["2024-07-25T06:12:30.010000"],["2024-07-25T06:12:31.010000"],["2024-07-25T06:12:32.010000"],["2024-07-25T06:12:33.010000"],["2024-07-25T06:12:34.010000"],["2024-07-25T06:12:35.010000"],["2024-07-25T06:12:36.010000"],["2024-07-25T06:12:37.010000"],["2024-07-25T06:12:38.010000"],["2024-07-25T06:12:39.010000"],["2024-07-25T06:12:40.010000"],["2024-07-25T06:12:41.010000"],["2024-07-25T06:12:42.010000"],["2024-07-25T06:12:43.010000"],["2024-07-25T06:12:44.010000"],["2024-07-25T06:12:45.010000"],["2024-07-25T06:12:46.010000"],["2024-07-25T06:12:47.010000"],["2024-07-25T06:12:48.010000"],["2024-07-25T06:12:49.010000"],["2024-07-25T06:12:50.010000"],["2024-07-25T06:12:51.010000"],["2024-07-25T06:12:52.010000"],["2024-07-25T06:12:53.010000"],["2024-07-25T06:12:54.010000"],["2024-07-25T06:12:55.010000"],["2024-07-25T06:12:56.010000"],["2024-07-25T06:12:57.010000"],["2024-07-25T06:12:58.010000"],["2024-07-25T06:12:59.010000"],["2024-07-25T06:13:00.010000"],["2024-07-25T06:13:01.010000"],["2024-07-25T06:13:02.010000"],["2024-07-25T06:13:03.010000"],["2024-07-25T06:13:04.010000"],["2024-07-25T06:13:05.010000"],["2024-07-25T06:13:06.010000"],["2024-07-25T06:13:07.010000"],["2024-07-25T06:13:08.010000"],["2024-07-25T06:13:09.010000"],["2024-07-25T06:13:10.010000"],["2024-07-25T06:13:11.010000"],["2024-07-25T06:13:12.010000"],["2024-07-25T06:13:13.010000"],["2024-07-25T06:13:14.010000"],["2024-07-25T06:13:15.010000"],["2024-07-25T06:13:16.010000"],["2024-07-25T06:13:17.010000"],["2024-07-25T06:13:18.010000"],["2024-07-25T06:13:19.010000"],["2024-07-25T06:13:20.010000"],["2024-07-25T06:13:21.010000"],["2024-07-25T06:13:22.010000"],["2024-07-25T06:13:23.010000"],["2024-07-25T06:13:24.010000"],["2024-07-25T06:13:25.010000"],["2024-07-25T06:13:26.010000"],["2024-07-25T06:13:27.010000"],["2024-07-25T06:13:28.010000"],["2024-07-25T06:13:29.010000"],["2024-07-25T06:13:30.010000"],["2024-07-25T06:13:31.010000"],["2024-07-25T06:13:32.010000"],["2024-07-25T06:13:33.010000"],["2024-07-25T06:13:34.010000"],["2024-07-25T06:13:35.010000"],["2024-07-25T06:13:36.010000"],["2024-07-25T06:13:37.010000"],["2024-07-25T06:13:38.010000"],["2024-07-25T06:13:39.010000"],["2024-07-25T06:13:40.010000"],["2024-07-25T06:13:41.010000"],["2024-07-25T06:13:42.010000"],["2024-07-25T06:13:43.010000"],["2024-07-25T06:13:44.010000"],["2024-07-25T06:13:45.010000"],["2024-07-25T06:13:46.010000"],["2024-07-25T06:13:47.010000"],["2024-07-25T06:13:48.010000"],["2024-07-25T06:13:49.010000"],["2024-07-25T06:13:50.010000"],["2024-07-25T06:13:51.010000"],["2024-07-25T06:13:52.010000"],["2024-07-25T06:13:53.010000"],["2024-07-25T06:13:54.010000"],["2024-07-25T06:13:55.010000"],["2024-07-25T06:13:56.010000"],["2024-07-25T06:13:57.010000"],["2024-07-25T06:13:58.010000"],["2024-07-25T06:13:59.010000"],["2024-07-25T06:14:00.010000"],["2024-07-25T06:14:01.010000"],["2024-07-25T06:14:02.010000"],["2024-07-25T06:14:03.010000"],["2024-07-25T06:14:04.010000"],["2024-07-25T06:14:05.010000"],["2024-07-25T06:14:06.010000"],["2024-07-25T06:14:07.010000"],["2024-07-25T06:14:08.010000"],["2024-07-25T06:14:09.010000"],["2024-07-25T06:14:10.010000"],["2024-07-25T06:14:11.010000"],["2024-07-25T06:14:12.010000"],["2024-07-25T06:14:13.010000"],["2024-07-25T06:14:14.010000"],["2024-07-25T06:14:15.010000"],["2024-07-25T06:14:16.010000"],["2024-07-25T06:14:17.010000"],["2024-07-25T06:14:18.010000"],["2024-07-25T06:14:19.010000"],["2024-07-25T06:14:20.010000"],["2024-07-25T06:14:21.010000"],["2024-07-25T06:14:22.010000"],["2024-07-25T06:14:23.010000"],["2024-07-25T06:14:24.010000"],["2024-07-25T06:14:25.010000"],["2024-07-25T06:14:26.010000"],["2024-07-25T06:14:27.010000"],["2024-07-25T06:14:28.010000"],["2024-07-25T06:14:29.010000"],["2024-07-25T06:14:30.010000"],["2024-07-25T06:14:31.010000"],["2024-07-25T06:14:32.010000"],["2024-07-25T06:14:33.010000"],["2024-07-25T06:14:34.010000"],["2024-07-25T06:14:35.010000"],["2024-07-25T06:14:36.010000"],["2024-07-25T06:14:37.010000"],["2024-07-25T06:14:38.010000"],["2024-07-25T06:14:39.010000"],["2024-07-25T06:14:40.010000"],["2024-07-25T06:14:41.010000"],["2024-07-25T06:14:42.010000"],["2024-07-25T06:14:43.010000"],["2024-07-25T06:14:44.010000"],["2024-07-25T06:14:45.010000"],["2024-07-25T06:14:46.010000"],["2024-07-25T06:14:47.010000"],["2024-07-25T06:14:48.010000"],["2024-07-25T06:14:49.010000"],["2024-07-25T06:14:50.010000"],["2024-07-25T06:14:51.010000"],["2024-07-25T06:14:52.010000"],["2024-07-25T06:14:53.010000"],["2024-07-25T06:14:54.010000"],["2024-07-25T06:14:55.010000"],["2024-07-25T06:14:56.010000"],["2024-07-25T06:14:57.010000"],["2024-07-25T06:14:58.010000"],["2024-07-25T06:14:59.010000"],["2024-07-25T06:15:00.010000"],["2024-07-25T06:15:01.010000"],["2024-07-25T06:15:02.010000"],["2024-07-25T06:15:03.010000"],["2024-07-25T06:15:04.010000"],["2024-07-25T06:15:05.010000"],["2024-07-25T06:15:06.010000"],["2024-07-25T06:15:07.010000"],["2024-07-25T06:15:08.010000"],["2024-07-25T06:15:09.010000"],["2024-07-25T06:15:10.010000"],["2024-07-25T06:15:11.010000"],["2024-07-25T06:15:12.010000"],["2024-07-25T06:15:13.010000"],["2024-07-25T06:15:14.010000"],["2024-07-25T06:15:15.010000"],["2024-07-25T06:15:16.010000"],["2024-07-25T06:15:17.010000"],["2024-07-25T06:15:18.010000"],["2024-07-25T06:15:19.010000"],["2024-07-25T06:15:20.010000"],["2024-07-25T06:15:21.010000"],["2024-07-25T06:15:22.010000"],["2024-07-25T06:15:23.010000"],["2024-07-25T06:15:24.010000"],["2024-07-25T06:15:25.010000"],["2024-07-25T06:15:26.010000"],["2024-07-25T06:15:27.010000"],["2024-07-25T06:15:28.010000"],["2024-07-25T06:15:29.010000"],["2024-07-25T06:15:30.010000"],["2024-07-25T06:15:31.010000"],["2024-07-25T06:15:32.010000"],["2024-07-25T06:15:33.010000"],["2024-07-25T06:15:34.010000"],["2024-07-25T06:15:35.010000"],["2024-07-25T06:15:36.010000"],["2024-07-25T06:15:37.010000"],["2024-07-25T06:15:38.010000"],["2024-07-25T06:15:39.010000"],["2024-07-25T06:15:40.010000"],["2024-07-25T06:15:41.010000"],["2024-07-25T06:15:42.010000"],["2024-07-25T06:15:43.010000"],["2024-07-25T06:15:44.010000"],["2024-07-25T06:15:45.010000"],["2024-07-25T06:15:46.010000"],["2024-07-25T06:15:47.010000"],["2024-07-25T06:15:48.010000"],["2024-07-25T06:15:49.010000"],["2024-07-25T06:15:50.010000"],["2024-07-25T06:15:51.010000"],["2024-07-25T06:15:52.010000"],["2024-07-25T06:15:53.010000"],["2024-07-25T06:15:54.010000"],["2024-07-25T06:15:55.010000"],["2024-07-25T06:15:56.010000"],["2024-07-25T06:15:57.010000"],["2024-07-25T06:15:58.010000"],["2024-07-25T06:15:59.010000"],["2024-07-25T06:16:00.010000"],["2024-07-25T06:16:01.010000"],["2024-07-25T06:16:02.010000"],["2024-07-25T06:16:03.010000"],["2024-07-25T06:16:04.010000"],["2024-07-25T06:16:05.010000"],["2024-07-25T06:16:06.010000"],["2024-07-25T06:16:07.010000"],["2024-07-25T06:16:08.010000"],["2024-07-25T06:16:09.010000"],["2024-07-25T06:16:10.010000"],["2024-07-25T06:16:11.010000"],["2024-07-25T06:16:12.010000"],["2024-07-25T06:16:13.010000"],["2024-07-25T06:16:14.010000"],["2024-07-25T06:16:15.010000"],["2024-07-25T06:16:16.010000"],["2024-07-25T06:16:17.010000"],["2024-07-25T06:16:18.010000"],["2024-07-25T06:16:19.010000"],["2024-07-25T06:16:20.010000"],["2024-07-25T06:16:21.010000"],["2024-07-25T06:16:22.010000"],["2024-07-25T06:16:23.010000"],["2024-07-25T06:16:24.010000"],["2024-07-25T06:16:25.010000"],["2024-07-25T06:16:26.010000"],["2024-07-25T06:16:27.010000"],["2024-07-25T06:16:28.010000"],["2024-07-25T06:16:29.010000"],["2024-07-25T06:16:30.010000"],["2024-07-25T06:16:31.010000"],["2024-07-25T06:16:32.010000"],["2024-07-25T06:16:33.010000"],["2024-07-25T06:16:34.010000"],["2024-07-25T06:16:35.010000"],["2024-07-25T06:16:36.010000"],["2024-07-25T06:16:37.010000"],["2024-07-25T06:16:38.010000"],["2024-07-25T06:16:39.010000"],["2024-07-25T06:16:40.010000"],["2024-07-25T06:16:41.010000"],["2024-07-25T06:16:42.010000"],["2024-07-25T06:16:43.010000"],["2024-07-25T06:16:44.010000"],["2024-07-25T06:16:45.010000"],["2024-07-25T06:16:46.010000"],["2024-07-25T06:16:47.010000"],["2024-07-25T06:16:48.010000"],["2024-07-25T06:16:49.010000"],["2024-07-25T06:16:50.010000"],["2024-07-25T06:16:51.010000"],["2024-07-25T06:16:52.010000"],["2024-07-25T06:16:53.010000"],["2024-07-25T06:16:54.010000"],["2024-07-25T06:16:55.010000"],["2024-07-25T06:16:56.010000"],["2024-07-25T06:16:57.010000"],["2024-07-25T06:16:58.010000"],["2024-07-25T06:16:59.010000"],["2024-07-25T06:17:00.010000"],["2024-07-25T06:17:01.010000"],["2024-07-25T06:17:02.010000"],["2024-07-25T06:17:03.010000"],["2024-07-25T06:17:04.010000"],["2024-07-25T06:17:05.010000"],["2024-07-25T06:17:06.010000"],["2024-07-25T06:17:07.010000"],["2024-07-25T06:17:08.010000"],["2024-07-25T06:17:09.010000"],["2024-07-25T06:17:10.010000"],["2024-07-25T06:17:11.010000"],["2024-07-25T06:17:12.010000"],["2024-07-25T06:17:13.010000"],["2024-07-25T06:17:14.010000"],["2024-07-25T06:17:15.010000"],["2024-07-25T06:17:16.010000"],["2024-07-25T06:17:17.010000"],["2024-07-25T06:17:18.010000"],["2024-07-25T06:17:19.010000"],["2024-07-25T06:17:20.010000"],["2024-07-25T06:17:21.010000"],["2024-07-25T06:17:22.010000"],["2024-07-25T06:17:23.010000"],["2024-07-25T06:17:24.010000"],["2024-07-25T06:17:25.010000"],["2024-07-25T06:17:26.010000"],["2024-07-25T06:17:27.010000"],["2024-07-25T06:17:28.010000"],["2024-07-25T06:17:29.010000"],["2024-07-25T06:17:30.010000"],["2024-07-25T06:17:31.010000"],["2024-07-25T06:17:32.010000"],["2024-07-25T06:17:33.010000"],["2024-07-25T06:17:34.010000"],["2024-07-25T06:17:35.010000"],["2024-07-25T06:17:36.010000"],["2024-07-25T06:17:37.010000"],["2024-07-25T06:17:38.010000"],["2024-07-25T06:17:39.010000"],["2024-07-25T06:17:40.010000"],["2024-07-25T06:17:41.010000"],["2024-07-25T06:17:42.010000"],["2024-07-25T06:17:43.010000"],["2024-07-25T06:17:44.010000"],["2024-07-25T06:17:45.010000"],["2024-07-25T06:17:46.010000"],["2024-07-25T06:17:47.010000"],["2024-07-25T06:17:48.010000"],["2024-07-25T06:17:49.010000"],["2024-07-25T06:17:50.010000"],["2024-07-25T06:17:51.010000"],["2024-07-25T06:17:52.010000"],["2024-07-25T06:17:53.010000"],["2024-07-25T06:17:54.010000"],["2024-07-25T06:17:55.010000"],["2024-07-25T06:17:56.010000"],["2024-07-25T06:17:57.010000"],["2024-07-25T06:17:58.010000"],["2024-07-25T06:17:59.010000"],["2024-07-25T06:18:00.010000"],["2024-07-25T06:18:01.010000"],["2024-07-25T06:18:02.010000"],["2024-07-25T06:18:03.010000"],["2024-07-25T06:18:04.010000"],["2024-07-25T06:18:05.010000"],["2024-07-25T06:18:06.010000"],["2024-07-25T06:18:07.010000"],["2024-07-25T06:18:08.010000"],["2024-07-25T06:18:09.010000"],["2024-07-25T06:18:10.010000"],["2024-07-25T06:18:11.010000"],["2024-07-25T06:18:12.010000"],["2024-07-25T06:18:13.010000"],["2024-07-25T06:18:14.010000"],["2024-07-25T06:18:15.010000"],["2024-07-25T06:18:16.010000"],["2024-07-25T06:18:17.010000"],["2024-07-25T06:18:18.010000"],["2024-07-25T06:18:19.010000"],["2024-07-25T06:18:20.010000"],["2024-07-25T06:18:21.010000"],["2024-07-25T06:18:22.010000"],["2024-07-25T06:18:23.010000"],["2024-07-25T06:18:24.010000"],["2024-07-25T06:18:25.010000"],["2024-07-25T06:18:26.010000"],["2024-07-25T06:18:27.010000"],["2024-07-25T06:18:28.010000"],["2024-07-25T06:18:29.010000"],["2024-07-25T06:18:30.010000"],["2024-07-25T06:18:31.010000"],["2024-07-25T06:18:32.010000"],["2024-07-25T06:18:33.010000"],["2024-07-25T06:18:34.010000"],["2024-07-25T06:18:35.010000"],["2024-07-25T06:18:36.010000"],["2024-07-25T06:18:37.010000"],["2024-07-25T06:18:38.010000"],["2024-07-25T06:18:39.010000"],["2024-07-25T06:18:40.010000"],["2024-07-25T06:18:41.010000"],["2024-07-25T06:18:42.010000"],["2024-07-25T06:18:43.010000"],["2024-07-25T06:18:44.010000"],["2024-07-25T06:18:45.010000"],["2024-07-25T06:18:46.010000"],["2024-07-25T06:18:47.010000"],["2024-07-25T06:18:48.010000"],["2024-07-25T06:18:49.010000"],["2024-07-25T06:18:50.010000"],["2024-07-25T06:18:51.010000"],["2024-07-25T06:18:52.010000"],["2024-07-25T06:18:53.010000"],["2024-07-25T06:18:54.010000"],["2024-07-25T06:18:55.010000"],["2024-07-25T06:18:56.010000"],["2024-07-25T06:18:57.010000"],["2024-07-25T06:18:58.010000"],["2024-07-25T06:18:59.010000"],["2024-07-25T06:19:00.010000"],["2024-07-25T06:19:01.010000"],["2024-07-25T06:19:02.010000"],["2024-07-25T06:19:03.010000"],["2024-07-25T06:19:04.010000"],["2024-07-25T06:19:05.010000"],["2024-07-25T06:19:06.010000"],["2024-07-25T06:19:07.010000"],["2024-07-25T06:19:08.010000"],["2024-07-25T06:19:09.010000"],["2024-07-25T06:19:10.010000"],["2024-07-25T06:19:11.010000"],["2024-07-25T06:19:12.010000"],["2024-07-25T06:19:13.010000"],["2024-07-25T06:19:14.010000"],["2024-07-25T06:19:15.010000"],["2024-07-25T06:19:16.010000"],["2024-07-25T06:19:17.010000"],["2024-07-25T06:19:18.010000"],["2024-07-25T06:19:19.010000"],["2024-07-25T06:19:20.010000"],["2024-07-25T06:19:21.010000"],["2024-07-25T06:19:22.010000"],["2024-07-25T06:19:23.010000"],["2024-07-25T06:19:24.010000"],["2024-07-25T06:19:25.010000"],["2024-07-25T06:19:26.010000"],["2024-07-25T06:19:27.010000"],["2024-07-25T06:19:28.010000"],["2024-07-25T06:19:29.010000"],["2024-07-25T06:19:30.010000"],["2024-07-25T06:19:31.010000"],["2024-07-25T06:19:32.010000"],["2024-07-25T06:19:33.010000"],["2024-07-25T06:19:34.010000"],["2024-07-25T06:19:35.010000"],["2024-07-25T06:19:36.010000"],["2024-07-25T06:19:37.010000"],["2024-07-25T06:19:38.010000"],["2024-07-25T06:19:39.010000"],["2024-07-25T06:19:40.010000"],["2024-07-25T06:19:41.010000"],["2024-07-25T06:19:42.010000"],["2024-07-25T06:19:43.010000"],["2024-07-25T06:19:44.010000"],["2024-07-25T06:19:45.010000"],["2024-07-25T06:19:46.010000"],["2024-07-25T06:19:47.010000"],["2024-07-25T06:19:48.010000"],["2024-07-25T06:19:49.010000"],["2024-07-25T06:19:50.010000"],["2024-07-25T06:19:51.010000"],["2024-07-25T06:19:52.010000"],["2024-07-25T06:19:53.010000"],["2024-07-25T06:19:54.010000"],["2024-07-25T06:19:55.010000"],["2024-07-25T06:19:56.010000"],["2024-07-25T06:19:57.010000"],["2024-07-25T06:19:58.010000"],["2024-07-25T06:19:59.010000"],["2024-07-25T06:20:00.010000"],["2024-07-25T06:20:01.010000"],["2024-07-25T06:20:02.010000"],["2024-07-25T06:20:03.010000"],["2024-07-25T06:20:04.010000"],["2024-07-25T06:20:05.010000"],["2024-07-25T06:20:06.010000"],["2024-07-25T06:20:07.010000"],["2024-07-25T06:20:08.010000"],["2024-07-25T06:20:09.010000"],["2024-07-25T06:20:10.010000"],["2024-07-25T06:20:11.010000"],["2024-07-25T06:20:12.010000"],["2024-07-25T06:20:13.010000"],["2024-07-25T06:20:14.010000"],["2024-07-25T06:20:15.010000"],["2024-07-25T06:20:16.010000"],["2024-07-25T06:20:17.010000"],["2024-07-25T06:20:18.010000"],["2024-07-25T06:20:19.010000"],["2024-07-25T06:20:20.010000"],["2024-07-25T06:20:21.010000"],["2024-07-25T06:20:22.010000"],["2024-07-25T06:20:23.010000"],["2024-07-25T06:20:24.010000"],["2024-07-25T06:20:25.010000"],["2024-07-25T06:20:26.010000"],["2024-07-25T06:20:27.010000"],["2024-07-25T06:20:28.010000"],["2024-07-25T06:20:29.010000"],["2024-07-25T06:20:30.010000"],["2024-07-25T06:20:31.010000"],["2024-07-25T06:20:32.010000"],["2024-07-25T06:20:33.010000"],["2024-07-25T06:20:34.010000"],["2024-07-25T06:20:35.010000"],["2024-07-25T06:20:36.010000"],["2024-07-25T06:20:37.010000"],["2024-07-25T06:20:38.010000"],["2024-07-25T06:20:39.010000"],["2024-07-25T06:20:40.010000"],["2024-07-25T06:20:41.010000"],["2024-07-25T06:20:42.010000"],["2024-07-25T06:20:43.010000"],["2024-07-25T06:20:44.010000"],["2024-07-25T06:20:45.010000"],["2024-07-25T06:20:46.010000"],["2024-07-25T06:20:47.010000"],["2024-07-25T06:20:48.010000"],["2024-07-25T06:20:49.010000"],["2024-07-25T06:20:50.010000"],["2024-07-25T06:20:51.010000"],["2024-07-25T06:20:52.010000"],["2024-07-25T06:20:53.010000"],["2024-07-25T06:20:54.010000"],["2024-07-25T06:20:55.010000"],["2024-07-25T06:20:56.010000"],["2024-07-25T06:20:57.010000"],["2024-07-25T06:20:58.010000"],["2024-07-25T06:20:59.010000"],["2024-07-25T06:21:00.010000"],["2024-07-25T06:21:01.010000"],["2024-07-25T06:21:02.010000"],["2024-07-25T06:21:03.010000"],["2024-07-25T06:21:04.010000"],["2024-07-25T06:21:05.010000"],["2024-07-25T06:21:06.010000"],["2024-07-25T06:21:07.010000"],["2024-07-25T06:21:08.010000"],["2024-07-25T06:21:09.010000"],["2024-07-25T06:21:10.010000"],["2024-07-25T06:21:11.010000"],["2024-07-25T06:21:12.010000"],["2024-07-25T06:21:13.010000"],["2024-07-25T06:21:14.010000"],["2024-07-25T06:21:15.010000"],["2024-07-25T06:21:16.010000"],["2024-07-25T06:21:17.010000"],["2024-07-25T06:21:18.010000"],["2024-07-25T06:21:19.010000"],["2024-07-25T06:21:20.010000"],["2024-07-25T06:21:21.010000"],["2024-07-25T06:21:22.010000"],["2024-07-25T06:21:23.010000"],["2024-07-25T06:21:24.010000"],["2024-07-25T06:21:25.010000"],["2024-07-25T06:21:26.010000"],["2024-07-25T06:21:27.010000"],["2024-07-25T06:21:28.010000"],["2024-07-25T06:21:29.010000"],["2024-07-25T06:21:30.010000"],["2024-07-25T06:21:31.010000"],["2024-07-25T06:21:32.010000"],["2024-07-25T06:21:33.010000"],["2024-07-25T06:21:34.010000"],["2024-07-25T06:21:35.010000"],["2024-07-25T06:21:36.010000"],["2024-07-25T06:21:37.010000"],["2024-07-25T06:21:38.010000"],["2024-07-25T06:21:39.010000"],["2024-07-25T06:21:40.010000"],["2024-07-25T06:21:41.010000"],["2024-07-25T06:21:42.010000"],["2024-07-25T06:21:43.010000"],["2024-07-25T06:21:44.010000"],["2024-07-25T06:21:45.010000"],["2024-07-25T06:21:46.010000"],["2024-07-25T06:21:47.010000"],["2024-07-25T06:21:48.010000"],["2024-07-25T06:21:49.010000"],["2024-07-25T06:21:50.010000"],["2024-07-25T06:21:51.010000"],["2024-07-25T06:21:52.010000"],["2024-07-25T06:21:53.010000"],["2024-07-25T06:21:54.010000"],["2024-07-25T06:21:55.010000"],["2024-07-25T06:21:56.010000"],["2024-07-25T06:21:57.010000"],["2024-07-25T06:21:58.010000"],["2024-07-25T06:21:59.010000"],["2024-07-25T06:22:00.010000"],["2024-07-25T06:22:01.010000"],["2024-07-25T06:22:02.010000"],["2024-07-25T06:22:03.010000"],["2024-07-25T06:22:04.010000"],["2024-07-25T06:22:05.010000"],["2024-07-25T06:22:06.010000"],["2024-07-25T06:22:07.010000"],["2024-07-25T06:22:08.010000"],["2024-07-25T06:22:09.010000"],["2024-07-25T06:22:10.010000"],["2024-07-25T06:22:11.010000"],["2024-07-25T06:22:12.010000"],["2024-07-25T06:22:13.010000"],["2024-07-25T06:22:14.010000"],["2024-07-25T06:22:15.010000"],["2024-07-25T06:22:16.010000"],["2024-07-25T06:22:17.010000"],["2024-07-25T06:22:18.010000"],["2024-07-25T06:22:19.010000"],["2024-07-25T06:22:20.010000"],["2024-07-25T06:22:21.010000"],["2024-07-25T06:22:22.010000"],["2024-07-25T06:22:23.010000"],["2024-07-25T06:22:24.010000"],["2024-07-25T06:22:25.010000"],["2024-07-25T06:22:26.010000"],["2024-07-25T06:22:27.010000"],["2024-07-25T06:22:28.010000"],["2024-07-25T06:22:29.010000"],["2024-07-25T06:22:30.010000"],["2024-07-25T06:22:31.010000"],["2024-07-25T06:22:32.010000"],["2024-07-25T06:22:33.010000"],["2024-07-25T06:22:34.010000"],["2024-07-25T06:22:35.010000"],["2024-07-25T06:22:36.010000"],["2024-07-25T06:22:37.010000"],["2024-07-25T06:22:38.010000"],["2024-07-25T06:22:39.010000"],["2024-07-25T06:22:40.010000"],["2024-07-25T06:22:41.010000"],["2024-07-25T06:22:42.010000"],["2024-07-25T06:22:43.010000"],["2024-07-25T06:22:44.010000"],["2024-07-25T06:22:45.010000"],["2024-07-25T06:22:46.010000"],["2024-07-25T06:22:47.010000"],["2024-07-25T06:22:48.010000"],["2024-07-25T06:22:49.010000"],["2024-07-25T06:22:50.010000"],["2024-07-25T06:22:51.010000"],["2024-07-25T06:22:52.010000"],["2024-07-25T06:22:53.010000"],["2024-07-25T06:22:54.010000"],["2024-07-25T06:22:55.010000"],["2024-07-25T06:22:56.010000"],["2024-07-25T06:22:57.010000"],["2024-07-25T06:22:58.010000"],["2024-07-25T06:22:59.010000"],["2024-07-25T06:23:00.010000"],["2024-07-25T06:23:01.010000"],["2024-07-25T06:23:02.010000"],["2024-07-25T06:23:03.010000"],["2024-07-25T06:23:04.010000"],["2024-07-25T06:23:05.010000"],["2024-07-25T06:23:06.010000"],["2024-07-25T06:23:07.010000"],["2024-07-25T06:23:08.010000"],["2024-07-25T06:23:09.010000"],["2024-07-25T06:23:10.010000"],["2024-07-25T06:23:11.010000"],["2024-07-25T06:23:12.010000"],["2024-07-25T06:23:13.010000"],["2024-07-25T06:23:14.010000"],["2024-07-25T06:23:15.010000"],["2024-07-25T06:23:16.010000"],["2024-07-25T06:23:17.010000"],["2024-07-25T06:23:18.010000"],["2024-07-25T06:23:19.010000"],["2024-07-25T06:23:20.010000"],["2024-07-25T06:23:21.010000"],["2024-07-25T06:23:22.010000"],["2024-07-25T06:23:23.010000"],["2024-07-25T06:23:24.010000"],["2024-07-25T06:23:25.010000"],["2024-07-25T06:23:26.010000"],["2024-07-25T06:23:27.010000"],["2024-07-25T06:23:28.010000"],["2024-07-25T06:23:29.010000"],["2024-07-25T06:23:30.010000"],["2024-07-25T06:23:31.010000"],["2024-07-25T06:23:32.010000"],["2024-07-25T06:23:33.010000"],["2024-07-25T06:23:34.010000"],["2024-07-25T06:23:35.010000"],["2024-07-25T06:23:36.010000"],["2024-07-25T06:23:37.010000"],["2024-07-25T06:23:38.010000"],["2024-07-25T06:23:39.010000"],["2024-07-25T06:23:40.010000"],["2024-07-25T06:23:41.010000"],["2024-07-25T06:23:42.010000"],["2024-07-25T06:23:43.010000"],["2024-07-25T06:23:44.010000"],["2024-07-25T06:23:45.010000"],["2024-07-25T06:23:46.010000"],["2024-07-25T06:23:47.010000"],["2024-07-25T06:23:48.010000"],["2024-07-25T06:23:49.010000"],["2024-07-25T06:23:50.010000"],["2024-07-25T06:23:51.010000"],["2024-07-25T06:23:52.010000"],["2024-07-25T06:23:53.010000"],["2024-07-25T06:23:54.010000"],["2024-07-25T06:23:55.010000"],["2024-07-25T06:23:56.010000"],["2024-07-25T06:23:57.010000"],["2024-07-25T06:23:58.010000"],["2024-07-25T06:23:59.010000"],["2024-07-25T06:24:00.010000"],["2024-07-25T06:24:01.010000"],["2024-07-25T06:24:02.010000"],["2024-07-25T06:24:03.010000"],["2024-07-25T06:24:04.010000"],["2024-07-25T06:24:05.010000"],["2024-07-25T06:24:06.010000"],["2024-07-25T06:24:07.010000"],["2024-07-25T06:24:08.010000"],["2024-07-25T06:24:09.010000"],["2024-07-25T06:24:10.010000"],["2024-07-25T06:24:11.010000"],["2024-07-25T06:24:12.010000"],["2024-07-25T06:24:13.010000"],["2024-07-25T06:24:14.010000"],["2024-07-25T06:24:15.010000"],["2024-07-25T06:24:16.010000"],["2024-07-25T06:24:17.010000"],["2024-07-25T06:24:18.010000"],["2024-07-25T06:24:19.010000"],["2024-07-25T06:24:20.010000"],["2024-07-25T06:24:21.010000"],["2024-07-25T06:24:22.010000"],["2024-07-25T06:24:23.010000"],["2024-07-25T06:24:24.010000"],["2024-07-25T06:24:25.010000"],["2024-07-25T06:24:26.010000"],["2024-07-25T06:24:27.010000"],["2024-07-25T06:24:28.010000"],["2024-07-25T06:24:29.010000"],["2024-07-25T06:24:30.010000"],["2024-07-25T06:24:31.010000"],["2024-07-25T06:24:32.010000"],["2024-07-25T06:24:33.010000"],["2024-07-25T06:24:34.010000"],["2024-07-25T06:24:35.010000"],["2024-07-25T06:24:36.010000"],["2024-07-25T06:24:37.010000"],["2024-07-25T06:24:38.010000"],["2024-07-25T06:24:39.010000"],["2024-07-25T06:24:40.010000"],["2024-07-25T06:24:41.010000"],["2024-07-25T06:24:42.010000"],["2024-07-25T06:24:43.010000"],["2024-07-25T06:24:44.010000"],["2024-07-25T06:24:45.010000"],["2024-07-25T06:24:46.010000"],["2024-07-25T06:24:47.010000"],["2024-07-25T06:24:48.010000"],["2024-07-25T06:24:49.010000"],["2024-07-25T06:24:50.010000"],["2024-07-25T06:24:51.010000"],["2024-07-25T06:24:52.010000"],["2024-07-25T06:24:53.010000"],["2024-07-25T06:24:54.010000"],["2024-07-25T06:24:55.010000"],["2024-07-25T06:24:56.010000"],["2024-07-25T06:24:57.010000"],["2024-07-25T06:24:58.010000"],["2024-07-25T06:24:59.010000"],["2024-07-25T06:25:00.010000"],["2024-07-25T06:25:01.010000"],["2024-07-25T06:25:02.010000"],["2024-07-25T06:25:03.010000"],["2024-07-25T06:25:04.010000"],["2024-07-25T06:25:05.010000"],["2024-07-25T06:25:06.010000"],["2024-07-25T06:25:07.010000"],["2024-07-25T06:25:08.010000"],["2024-07-25T06:25:09.010000"],["2024-07-25T06:25:10.010000"],["2024-07-25T06:25:11.010000"],["2024-07-25T06:25:12.010000"],["2024-07-25T06:25:13.010000"],["2024-07-25T06:25:14.010000"],["2024-07-25T06:25:15.010000"],["2024-07-25T06:25:16.010000"],["2024-07-25T06:25:17.010000"],["2024-07-25T06:25:18.010000"],["2024-07-25T06:25:19.010000"],["2024-07-25T06:25:20.010000"],["2024-07-25T06:25:21.010000"],["2024-07-25T06:25:22.010000"],["2024-07-25T06:25:23.010000"],["2024-07-25T06:25:24.010000"],["2024-07-25T06:25:25.010000"],["2024-07-25T06:25:26.010000"],["2024-07-25T06:25:27.010000"],["2024-07-25T06:25:28.010000"],["2024-07-25T06:25:29.010000"],["2024-07-25T06:25:30.010000"],["2024-07-25T06:25:31.010000"],["2024-07-25T06:25:32.010000"],["2024-07-25T06:25:33.010000"],["2024-07-25T06:25:34.010000"],["2024-07-25T06:25:35.010000"],["2024-07-25T06:25:36.010000"],["2024-07-25T06:25:37.010000"],["2024-07-25T06:25:38.010000"],["2024-07-25T06:25:39.010000"],["2024-07-25T06:25:40.010000"],["2024-07-25T06:25:41.010000"],["2024-07-25T06:25:42.010000"],["2024-07-25T06:25:43.010000"],["2024-07-25T06:25:44.010000"],["2024-07-25T06:25:45.010000"],["2024-07-25T06:25:46.010000"],["2024-07-25T06:25:47.010000"],["2024-07-25T06:25:48.010000"],["2024-07-25T06:25:49.010000"],["2024-07-25T06:25:50.010000"],["2024-07-25T06:25:51.010000"],["2024-07-25T06:25:52.010000"],["2024-07-25T06:25:53.010000"],["2024-07-25T06:25:54.010000"],["2024-07-25T06:25:55.010000"],["2024-07-25T06:25:56.010000"],["2024-07-25T06:25:57.010000"],["2024-07-25T06:25:58.010000"],["2024-07-25T06:25:59.010000"],["2024-07-25T06:26:00.010000"],["2024-07-25T06:26:01.010000"],["2024-07-25T06:26:02.010000"],["2024-07-25T06:26:03.010000"],["2024-07-25T06:26:04.010000"],["2024-07-25T06:26:05.010000"],["2024-07-25T06:26:06.010000"],["2024-07-25T06:26:07.010000"],["2024-07-25T06:26:08.010000"],["2024-07-25T06:26:09.010000"],["2024-07-25T06:26:10.010000"],["2024-07-25T06:26:11.010000"],["2024-07-25T06:26:12.010000"],["2024-07-25T06:26:13.010000"],["2024-07-25T06:26:14.010000"],["2024-07-25T06:26:15.010000"],["2024-07-25T06:26:16.010000"],["2024-07-25T06:26:17.010000"],["2024-07-25T06:26:18.010000"],["2024-07-25T06:26:19.010000"],["2024-07-25T06:26:20.010000"],["2024-07-25T06:26:21.010000"],["2024-07-25T06:26:22.010000"],["2024-07-25T06:26:23.010000"],["2024-07-25T06:26:24.010000"],["2024-07-25T06:26:25.010000"],["2024-07-25T06:26:26.010000"],["2024-07-25T06:26:27.010000"],["2024-07-25T06:26:28.010000"],["2024-07-25T06:26:29.010000"],["2024-07-25T06:26:30.010000"],["2024-07-25T06:26:31.010000"],["2024-07-25T06:26:32.010000"],["2024-07-25T06:26:33.010000"],["2024-07-25T06:26:34.010000"],["2024-07-25T06:26:35.010000"],["2024-07-25T06:26:36.010000"],["2024-07-25T06:26:37.010000"],["2024-07-25T06:26:38.010000"],["2024-07-25T06:26:39.010000"],["2024-07-25T06:26:40.010000"],["2024-07-25T06:26:41.010000"],["2024-07-25T06:26:42.010000"],["2024-07-25T06:26:43.010000"],["2024-07-25T06:26:44.010000"],["2024-07-25T06:26:45.010000"],["2024-07-25T06:26:46.010000"],["2024-07-25T06:26:47.010000"],["2024-07-25T06:26:48.010000"],["2024-07-25T06:26:49.010000"],["2024-07-25T06:26:50.010000"],["2024-07-25T06:26:51.010000"],["2024-07-25T06:26:52.010000"],["2024-07-25T06:26:53.010000"],["2024-07-25T06:26:54.010000"],["2024-07-25T06:26:55.010000"],["2024-07-25T06:26:56.010000"],["2024-07-25T06:26:57.010000"],["2024-07-25T06:26:58.010000"],["2024-07-25T06:26:59.010000"],["2024-07-25T06:27:00.010000"],["2024-07-25T06:27:01.010000"],["2024-07-25T06:27:02.010000"],["2024-07-25T06:27:03.010000"],["2024-07-25T06:27:04.010000"],["2024-07-25T06:27:05.010000"],["2024-07-25T06:27:06.010000"],["2024-07-25T06:27:07.010000"],["2024-07-25T06:27:08.010000"],["2024-07-25T06:27:09.010000"],["2024-07-25T06:27:10.010000"],["2024-07-25T06:27:11.010000"],["2024-07-25T06:27:12.010000"],["2024-07-25T06:27:13.010000"],["2024-07-25T06:27:14.010000"],["2024-07-25T06:27:15.010000"],["2024-07-25T06:27:16.010000"],["2024-07-25T06:27:17.010000"],["2024-07-25T06:27:18.010000"],["2024-07-25T06:27:19.010000"],["2024-07-25T06:27:20.010000"],["2024-07-25T06:27:21.010000"],["2024-07-25T06:27:22.010000"],["2024-07-25T06:27:23.010000"],["2024-07-25T06:27:24.010000"],["2024-07-25T06:27:25.010000"],["2024-07-25T06:27:26.010000"],["2024-07-25T06:27:27.010000"],["2024-07-25T06:27:28.010000"],["2024-07-25T06:27:29.010000"],["2024-07-25T06:27:30.010000"],["2024-07-25T06:27:31.010000"],["2024-07-25T06:27:32.010000"],["2024-07-25T06:27:33.010000"],["2024-07-25T06:27:34.010000"],["2024-07-25T06:27:35.010000"],["2024-07-25T06:27:36.010000"],["2024-07-25T06:27:37.010000"],["2024-07-25T06:27:38.010000"],["2024-07-25T06:27:39.010000"],["2024-07-25T06:27:40.010000"],["2024-07-25T06:27:41.010000"],["2024-07-25T06:27:42.010000"],["2024-07-25T06:27:43.010000"],["2024-07-25T06:27:44.010000"],["2024-07-25T06:27:45.010000"],["2024-07-25T06:27:46.010000"],["2024-07-25T06:27:47.010000"],["2024-07-25T06:27:48.010000"],["2024-07-25T06:27:49.010000"],["2024-07-25T06:27:50.010000"],["2024-07-25T06:27:51.010000"],["2024-07-25T06:27:52.010000"],["2024-07-25T06:27:53.010000"],["2024-07-25T06:27:54.010000"],["2024-07-25T06:27:55.010000"],["2024-07-25T06:27:56.010000"],["2024-07-25T06:27:57.010000"],["2024-07-25T06:27:58.010000"],["2024-07-25T06:27:59.010000"],["2024-07-25T06:28:00.010000"],["2024-07-25T06:28:01.010000"],["2024-07-25T06:28:02.010000"],["2024-07-25T06:28:03.010000"],["2024-07-25T06:28:04.010000"],["2024-07-25T06:28:05.010000"],["2024-07-25T06:28:06.010000"],["2024-07-25T06:28:07.010000"],["2024-07-25T06:28:08.010000"],["2024-07-25T06:28:09.010000"],["2024-07-25T06:28:10.010000"],["2024-07-25T06:28:11.010000"],["2024-07-25T06:28:12.010000"],["2024-07-25T06:28:13.010000"],["2024-07-25T06:28:14.010000"],["2024-07-25T06:28:15.010000"],["2024-07-25T06:28:16.010000"],["2024-07-25T06:28:17.010000"],["2024-07-25T06:28:18.010000"],["2024-07-25T06:28:19.010000"],["2024-07-25T06:28:20.010000"],["2024-07-25T06:28:21.010000"],["2024-07-25T06:28:22.010000"],["2024-07-25T06:28:23.010000"],["2024-07-25T06:28:24.010000"],["2024-07-25T06:28:25.010000"],["2024-07-25T06:28:26.010000"],["2024-07-25T06:28:27.010000"],["2024-07-25T06:28:28.010000"],["2024-07-25T06:28:29.010000"],["2024-07-25T06:28:30.010000"],["2024-07-25T06:28:31.010000"],["2024-07-25T06:28:32.010000"],["2024-07-25T06:28:33.010000"],["2024-07-25T06:28:34.010000"],["2024-07-25T06:28:35.010000"],["2024-07-25T06:28:36.010000"],["2024-07-25T06:28:37.010000"],["2024-07-25T06:28:38.010000"],["2024-07-25T06:28:39.010000"],["2024-07-25T06:28:40.010000"],["2024-07-25T06:28:41.010000"],["2024-07-25T06:28:42.010000"],["2024-07-25T06:28:43.010000"],["2024-07-25T06:28:44.010000"],["2024-07-25T06:28:45.010000"],["2024-07-25T06:28:46.010000"],["2024-07-25T06:28:47.010000"],["2024-07-25T06:28:48.010000"],["2024-07-25T06:28:49.010000"],["2024-07-25T06:28:50.010000"],["2024-07-25T06:28:51.010000"],["2024-07-25T06:28:52.010000"],["2024-07-25T06:28:53.010000"],["2024-07-25T06:28:54.010000"],["2024-07-25T06:28:55.010000"],["2024-07-25T06:28:56.010000"],["2024-07-25T06:28:57.010000"],["2024-07-25T06:28:58.010000"],["2024-07-25T06:28:59.010000"],["2024-07-25T06:29:00.010000"],["2024-07-25T06:29:01.010000"],["2024-07-25T06:29:02.010000"],["2024-07-25T06:29:03.010000"],["2024-07-25T06:29:04.010000"],["2024-07-25T06:29:05.010000"],["2024-07-25T06:29:06.010000"],["2024-07-25T06:29:07.010000"],["2024-07-25T06:29:08.010000"],["2024-07-25T06:29:09.010000"],["2024-07-25T06:29:10.010000"],["2024-07-25T06:29:11.010000"],["2024-07-25T06:29:12.010000"],["2024-07-25T06:29:13.010000"],["2024-07-25T06:29:14.010000"],["2024-07-25T06:29:15.010000"],["2024-07-25T06:29:16.010000"],["2024-07-25T06:29:17.010000"],["2024-07-25T06:29:18.010000"],["2024-07-25T06:29:19.010000"],["2024-07-25T06:29:20.010000"],["2024-07-25T06:29:21.010000"],["2024-07-25T06:29:22.010000"],["2024-07-25T06:29:23.010000"],["2024-07-25T06:29:24.010000"],["2024-07-25T06:29:25.010000"],["2024-07-25T06:29:26.010000"],["2024-07-25T06:29:27.010000"],["2024-07-25T06:29:28.010000"],["2024-07-25T06:29:29.010000"],["2024-07-25T06:29:30.010000"],["2024-07-25T06:29:31.010000"],["2024-07-25T06:29:32.010000"],["2024-07-25T06:29:33.010000"],["2024-07-25T06:29:34.010000"],["2024-07-25T06:29:35.010000"],["2024-07-25T06:29:36.010000"],["2024-07-25T06:29:37.010000"],["2024-07-25T06:29:38.010000"],["2024-07-25T06:29:39.010000"],["2024-07-25T06:29:40.010000"],["2024-07-25T06:29:41.010000"],["2024-07-25T06:29:42.010000"],["2024-07-25T06:29:43.010000"],["2024-07-25T06:29:44.010000"],["2024-07-25T06:29:45.010000"],["2024-07-25T06:29:46.010000"],["2024-07-25T06:29:47.010000"],["2024-07-25T06:29:48.010000"],["2024-07-25T06:29:49.010000"],["2024-07-25T06:29:50.010000"],["2024-07-25T06:29:51.010000"],["2024-07-25T06:29:52.010000"],["2024-07-25T06:29:53.010000"],["2024-07-25T06:29:54.010000"],["2024-07-25T06:29:55.010000"],["2024-07-25T06:29:56.010000"],["2024-07-25T06:29:57.010000"],["2024-07-25T06:29:58.010000"],["2024-07-25T06:29:59.010000"],["2024-07-25T06:30:00.010000"],["2024-07-25T06:30:01.010000"],["2024-07-25T06:30:02.010000"],["2024-07-25T06:30:03.010000"],["2024-07-25T06:30:04.010000"],["2024-07-25T06:30:05.010000"],["2024-07-25T06:30:06.010000"],["2024-07-25T06:30:07.010000"],["2024-07-25T06:30:08.010000"],["2024-07-25T06:30:09.010000"],["2024-07-25T06:30:10.010000"],["2024-07-25T06:30:11.010000"],["2024-07-25T06:30:12.010000"],["2024-07-25T06:30:13.010000"],["2024-07-25T06:30:14.010000"],["2024-07-25T06:30:15.010000"],["2024-07-25T06:30:16.010000"],["2024-07-25T06:30:17.010000"],["2024-07-25T06:30:18.010000"],["2024-07-25T06:30:19.010000"],["2024-07-25T06:30:20.010000"],["2024-07-25T06:30:21.010000"],["2024-07-25T06:30:22.010000"],["2024-07-25T06:30:23.010000"],["2024-07-25T06:30:24.010000"],["2024-07-25T06:30:25.010000"],["2024-07-25T06:30:26.010000"],["2024-07-25T06:30:27.010000"],["2024-07-25T06:30:28.010000"],["2024-07-25T06:30:29.010000"],["2024-07-25T06:30:30.010000"],["2024-07-25T06:30:31.010000"],["2024-07-25T06:30:32.010000"],["2024-07-25T06:30:33.010000"],["2024-07-25T06:30:34.010000"],["2024-07-25T06:30:35.010000"],["2024-07-25T06:30:36.010000"],["2024-07-25T06:30:37.010000"],["2024-07-25T06:30:38.010000"],["2024-07-25T06:30:39.010000"],["2024-07-25T06:30:40.010000"],["2024-07-25T06:30:41.010000"],["2024-07-25T06:30:42.010000"],["2024-07-25T06:30:43.010000"],["2024-07-25T06:30:44.010000"],["2024-07-25T06:30:45.010000"],["2024-07-25T06:30:46.010000"],["2024-07-25T06:30:47.010000"],["2024-07-25T06:30:48.010000"],["2024-07-25T06:30:49.010000"],["2024-07-25T06:30:50.010000"],["2024-07-25T06:30:51.010000"],["2024-07-25T06:30:52.010000"],["2024-07-25T06:30:53.010000"],["2024-07-25T06:30:54.010000"],["2024-07-25T06:30:55.010000"],["2024-07-25T06:30:56.010000"],["2024-07-25T06:30:57.010000"],["2024-07-25T06:30:58.010000"],["2024-07-25T06:30:59.010000"],["2024-07-25T06:31:00.010000"],["2024-07-25T06:31:01.010000"],["2024-07-25T06:31:02.010000"],["2024-07-25T06:31:03.010000"],["2024-07-25T06:31:04.010000"],["2024-07-25T06:31:05.010000"],["2024-07-25T06:31:06.010000"],["2024-07-25T06:31:07.010000"],["2024-07-25T06:31:08.010000"],["2024-07-25T06:31:09.010000"],["2024-07-25T06:31:10.010000"],["2024-07-25T06:31:11.010000"],["2024-07-25T06:31:12.010000"],["2024-07-25T06:31:13.010000"],["2024-07-25T06:31:14.010000"],["2024-07-25T06:31:15.010000"],["2024-07-25T06:31:16.010000"],["2024-07-25T06:31:17.010000"],["2024-07-25T06:31:18.010000"],["2024-07-25T06:31:19.010000"],["2024-07-25T06:31:20.010000"],["2024-07-25T06:31:21.010000"],["2024-07-25T06:31:22.010000"],["2024-07-25T06:31:23.010000"],["2024-07-25T06:31:24.010000"],["2024-07-25T06:31:25.010000"],["2024-07-25T06:31:26.010000"],["2024-07-25T06:31:27.010000"],["2024-07-25T06:31:28.010000"],["2024-07-25T06:31:29.010000"],["2024-07-25T06:31:30.010000"],["2024-07-25T06:31:31.010000"],["2024-07-25T06:31:32.010000"],["2024-07-25T06:31:33.010000"],["2024-07-25T06:31:34.010000"],["2024-07-25T06:31:35.010000"],["2024-07-25T06:31:36.010000"],["2024-07-25T06:31:37.010000"],["2024-07-25T06:31:38.010000"],["2024-07-25T06:31:39.010000"],["2024-07-25T06:31:40.010000"],["2024-07-25T06:31:41.010000"],["2024-07-25T06:31:42.010000"],["2024-07-25T06:31:43.010000"],["2024-07-25T06:31:44.010000"],["2024-07-25T06:31:45.010000"],["2024-07-25T06:31:46.010000"],["2024-07-25T06:31:47.010000"],["2024-07-25T06:31:48.010000"],["2024-07-25T06:31:49.010000"],["2024-07-25T06:31:50.010000"],["2024-07-25T06:31:51.010000"],["2024-07-25T06:31:52.010000"],["2024-07-25T06:31:53.010000"],["2024-07-25T06:31:54.010000"],["2024-07-25T06:31:55.010000"],["2024-07-25T06:31:56.010000"],["2024-07-25T06:31:57.010000"],["2024-07-25T06:31:58.010000"],["2024-07-25T06:31:59.010000"],["2024-07-25T06:32:00.010000"],["2024-07-25T06:32:01.010000"],["2024-07-25T06:32:02.010000"],["2024-07-25T06:32:03.010000"],["2024-07-25T06:32:04.010000"],["2024-07-25T06:32:05.010000"],["2024-07-25T06:32:06.010000"],["2024-07-25T06:32:07.010000"],["2024-07-25T06:32:08.010000"],["2024-07-25T06:32:09.010000"],["2024-07-25T06:32:10.010000"],["2024-07-25T06:32:11.010000"],["2024-07-25T06:32:12.010000"],["2024-07-25T06:32:13.010000"],["2024-07-25T06:32:14.010000"],["2024-07-25T06:32:15.010000"],["2024-07-25T06:32:16.010000"],["2024-07-25T06:32:17.010000"],["2024-07-25T06:32:18.010000"],["2024-07-25T06:32:19.010000"],["2024-07-25T06:32:20.010000"],["2024-07-25T06:32:21.010000"],["2024-07-25T06:32:22.010000"],["2024-07-25T06:32:23.010000"],["2024-07-25T06:32:24.010000"],["2024-07-25T06:32:25.010000"],["2024-07-25T06:32:26.010000"],["2024-07-25T06:32:27.010000"],["2024-07-25T06:32:28.010000"],["2024-07-25T06:32:29.010000"],["2024-07-25T06:32:30.010000"],["2024-07-25T06:32:31.010000"],["2024-07-25T06:32:32.010000"],["2024-07-25T06:32:33.010000"],["2024-07-25T06:32:34.010000"],["2024-07-25T06:32:35.010000"],["2024-07-25T06:32:36.010000"],["2024-07-25T06:32:37.010000"],["2024-07-25T06:32:38.010000"],["2024-07-25T06:32:39.010000"],["2024-07-25T06:32:40.010000"],["2024-07-25T06:32:41.010000"],["2024-07-25T06:32:42.010000"],["2024-07-25T06:32:43.010000"],["2024-07-25T06:32:44.010000"],["2024-07-25T06:32:45.010000"],["2024-07-25T06:32:46.010000"],["2024-07-25T06:32:47.010000"],["2024-07-25T06:32:48.010000"],["2024-07-25T06:32:49.010000"],["2024-07-25T06:32:50.010000"],["2024-07-25T06:32:51.010000"],["2024-07-25T06:32:52.010000"],["2024-07-25T06:32:53.010000"],["2024-07-25T06:32:54.010000"],["2024-07-25T06:32:55.010000"],["2024-07-25T06:32:56.010000"],["2024-07-25T06:32:57.010000"],["2024-07-25T06:32:58.010000"],["2024-07-25T06:32:59.010000"],["2024-07-25T06:33:00.010000"],["2024-07-25T06:33:01.010000"],["2024-07-25T06:33:02.010000"],["2024-07-25T06:33:03.010000"],["2024-07-25T06:33:04.010000"],["2024-07-25T06:33:05.010000"],["2024-07-25T06:33:06.010000"],["2024-07-25T06:33:07.010000"],["2024-07-25T06:33:08.010000"],["2024-07-25T06:33:09.010000"],["2024-07-25T06:33:10.010000"],["2024-07-25T06:33:11.010000"],["2024-07-25T06:33:12.010000"],["2024-07-25T06:33:13.010000"],["2024-07-25T06:33:14.010000"],["2024-07-25T06:33:15.010000"],["2024-07-25T06:33:16.010000"],["2024-07-25T06:33:17.010000"],["2024-07-25T06:33:18.010000"],["2024-07-25T06:33:19.010000"],["2024-07-25T06:33:20.010000"],["2024-07-25T06:33:21.010000"],["2024-07-25T06:33:22.010000"],["2024-07-25T06:33:23.010000"],["2024-07-25T06:33:24.010000"],["2024-07-25T06:33:25.010000"],["2024-07-25T06:33:26.010000"],["2024-07-25T06:33:27.010000"],["2024-07-25T06:33:28.010000"],["2024-07-25T06:33:29.010000"],["2024-07-25T06:33:30.010000"],["2024-07-25T06:33:31.010000"],["2024-07-25T06:33:32.010000"],["2024-07-25T06:33:33.010000"],["2024-07-25T06:33:34.010000"],["2024-07-25T06:33:35.010000"],["2024-07-25T06:33:36.010000"],["2024-07-25T06:33:37.010000"],["2024-07-25T06:33:38.010000"],["2024-07-25T06:33:39.010000"],["2024-07-25T06:33:40.010000"],["2024-07-25T06:33:41.010000"],["2024-07-25T06:33:42.010000"],["2024-07-25T06:33:43.010000"],["2024-07-25T06:33:44.010000"],["2024-07-25T06:33:45.010000"],["2024-07-25T06:33:46.010000"],["2024-07-25T06:33:47.010000"],["2024-07-25T06:33:48.010000"],["2024-07-25T06:33:49.010000"],["2024-07-25T06:33:50.010000"],["2024-07-25T06:33:51.010000"],["2024-07-25T06:33:52.010000"],["2024-07-25T06:33:53.010000"],["2024-07-25T06:33:54.010000"],["2024-07-25T06:33:55.010000"],["2024-07-25T06:33:56.010000"],["2024-07-25T06:33:57.010000"],["2024-07-25T06:33:58.010000"],["2024-07-25T06:33:59.010000"],["2024-07-25T06:34:00.010000"],["2024-07-25T06:34:01.010000"],["2024-07-25T06:34:02.010000"],["2024-07-25T06:34:03.010000"],["2024-07-25T06:34:04.010000"],["2024-07-25T06:34:05.010000"],["2024-07-25T06:34:06.010000"],["2024-07-25T06:34:07.010000"],["2024-07-25T06:34:08.010000"],["2024-07-25T06:34:09.010000"],["2024-07-25T06:34:10.010000"],["2024-07-25T06:34:11.010000"],["2024-07-25T06:34:12.010000"],["2024-07-25T06:34:13.010000"],["2024-07-25T06:34:14.010000"],["2024-07-25T06:34:15.010000"],["2024-07-25T06:34:16.010000"],["2024-07-25T06:34:17.010000"],["2024-07-25T06:34:18.010000"],["2024-07-25T06:34:19.010000"],["2024-07-25T06:34:20.010000"],["2024-07-25T06:34:21.010000"],["2024-07-25T06:34:22.010000"],["2024-07-25T06:34:23.010000"],["2024-07-25T06:34:24.010000"],["2024-07-25T06:34:25.010000"],["2024-07-25T06:34:26.010000"],["2024-07-25T06:34:27.010000"],["2024-07-25T06:34:28.010000"],["2024-07-25T06:34:29.010000"],["2024-07-25T06:34:30.010000"],["2024-07-25T06:34:31.010000"],["2024-07-25T06:34:32.010000"],["2024-07-25T06:34:33.010000"],["2024-07-25T06:34:34.010000"],["2024-07-25T06:34:35.010000"],["2024-07-25T06:34:36.010000"],["2024-07-25T06:34:37.010000"],["2024-07-25T06:34:38.010000"],["2024-07-25T06:34:39.010000"],["2024-07-25T06:34:40.010000"],["2024-07-25T06:34:41.010000"],["2024-07-25T06:34:42.010000"],["2024-07-25T06:34:43.010000"],["2024-07-25T06:34:44.010000"],["2024-07-25T06:34:45.010000"],["2024-07-25T06:34:46.010000"],["2024-07-25T06:34:47.010000"],["2024-07-25T06:34:48.010000"],["2024-07-25T06:34:49.010000"],["2024-07-25T06:34:50.010000"],["2024-07-25T06:34:51.010000"],["2024-07-25T06:34:52.010000"],["2024-07-25T06:34:53.010000"],["2024-07-25T06:34:54.010000"],["2024-07-25T06:34:55.010000"],["2024-07-25T06:34:56.010000"],["2024-07-25T06:34:57.010000"],["2024-07-25T06:34:58.010000"],["2024-07-25T06:34:59.010000"],["2024-07-25T06:35:00.010000"],["2024-07-25T06:35:01.010000"],["2024-07-25T06:35:02.010000"],["2024-07-25T06:35:03.010000"],["2024-07-25T06:35:04.010000"],["2024-07-25T06:35:05.010000"],["2024-07-25T06:35:06.010000"],["2024-07-25T06:35:07.010000"],["2024-07-25T06:35:08.010000"],["2024-07-25T06:35:09.010000"],["2024-07-25T06:35:10.010000"],["2024-07-25T06:35:11.010000"],["2024-07-25T06:35:12.010000"],["2024-07-25T06:35:13.010000"],["2024-07-25T06:35:14.010000"],["2024-07-25T06:35:15.010000"],["2024-07-25T06:35:16.010000"],["2024-07-25T06:35:17.010000"],["2024-07-25T06:35:18.010000"],["2024-07-25T06:35:19.010000"],["2024-07-25T06:35:20.010000"],["2024-07-25T06:35:21.010000"],["2024-07-25T06:35:22.010000"],["2024-07-25T06:35:23.010000"],["2024-07-25T06:35:24.010000"],["2024-07-25T06:35:25.010000"],["2024-07-25T06:35:26.010000"],["2024-07-25T06:35:27.010000"],["2024-07-25T06:35:28.010000"],["2024-07-25T06:35:29.010000"],["2024-07-25T06:35:30.010000"],["2024-07-25T06:35:31.010000"],["2024-07-25T06:35:32.010000"],["2024-07-25T06:35:33.010000"],["2024-07-25T06:35:34.010000"],["2024-07-25T06:35:35.010000"],["2024-07-25T06:35:36.010000"],["2024-07-25T06:35:37.010000"],["2024-07-25T06:35:38.010000"],["2024-07-25T06:35:39.010000"],["2024-07-25T06:35:40.010000"],["2024-07-25T06:35:41.010000"],["2024-07-25T06:35:42.010000"],["2024-07-25T06:35:43.010000"],["2024-07-25T06:35:44.010000"],["2024-07-25T06:35:45.010000"],["2024-07-25T06:35:46.010000"],["2024-07-25T06:35:47.010000"],["2024-07-25T06:35:48.010000"],["2024-07-25T06:35:49.010000"],["2024-07-25T06:35:50.010000"],["2024-07-25T06:35:51.010000"],["2024-07-25T06:35:52.010000"],["2024-07-25T06:35:53.010000"],["2024-07-25T06:35:54.010000"],["2024-07-25T06:35:55.010000"],["2024-07-25T06:35:56.010000"],["2024-07-25T06:35:57.010000"],["2024-07-25T06:35:58.010000"],["2024-07-25T06:35:59.010000"],["2024-07-25T06:36:00.010000"],["2024-07-25T06:36:01.010000"],["2024-07-25T06:36:02.010000"],["2024-07-25T06:36:03.010000"],["2024-07-25T06:36:04.010000"],["2024-07-25T06:36:05.010000"],["2024-07-25T06:36:06.010000"],["2024-07-25T06:36:07.010000"],["2024-07-25T06:36:08.010000"],["2024-07-25T06:36:09.010000"],["2024-07-25T06:36:10.010000"],["2024-07-25T06:36:11.010000"],["2024-07-25T06:36:12.010000"],["2024-07-25T06:36:13.010000"],["2024-07-25T06:36:14.010000"],["2024-07-25T06:36:15.010000"],["2024-07-25T06:36:16.010000"],["2024-07-25T06:36:17.010000"],["2024-07-25T06:36:18.010000"],["2024-07-25T06:36:19.010000"],["2024-07-25T06:36:20.010000"],["2024-07-25T06:36:21.010000"],["2024-07-25T06:36:22.010000"],["2024-07-25T06:36:23.010000"],["2024-07-25T06:36:24.010000"],["2024-07-25T06:36:25.010000"],["2024-07-25T06:36:26.010000"],["2024-07-25T06:36:27.010000"],["2024-07-25T06:36:28.010000"],["2024-07-25T06:36:29.010000"],["2024-07-25T06:36:30.010000"],["2024-07-25T06:36:31.010000"],["2024-07-25T06:36:32.010000"],["2024-07-25T06:36:33.010000"],["2024-07-25T06:36:34.010000"],["2024-07-25T06:36:35.010000"],["2024-07-25T06:36:36.010000"],["2024-07-25T06:36:37.010000"],["2024-07-25T06:36:38.010000"],["2024-07-25T06:36:39.010000"],["2024-07-25T06:36:40.010000"],["2024-07-25T06:36:41.010000"],["2024-07-25T06:36:42.010000"],["2024-07-25T06:36:43.010000"],["2024-07-25T06:36:44.010000"],["2024-07-25T06:36:45.010000"],["2024-07-25T06:36:46.010000"],["2024-07-25T06:36:47.010000"],["2024-07-25T06:36:48.010000"],["2024-07-25T06:36:49.010000"],["2024-07-25T06:36:50.010000"],["2024-07-25T06:36:51.010000"],["2024-07-25T06:36:52.010000"],["2024-07-25T06:36:53.010000"],["2024-07-25T06:36:54.010000"],["2024-07-25T06:36:55.010000"],["2024-07-25T06:36:56.010000"],["2024-07-25T06:36:57.010000"],["2024-07-25T06:36:58.010000"],["2024-07-25T06:36:59.010000"],["2024-07-25T06:37:00.010000"],["2024-07-25T06:37:01.010000"],["2024-07-25T06:37:02.010000"],["2024-07-25T06:37:03.010000"],["2024-07-25T06:37:04.010000"],["2024-07-25T06:37:05.010000"],["2024-07-25T06:37:06.010000"],["2024-07-25T06:37:07.010000"],["2024-07-25T06:37:08.010000"],["2024-07-25T06:37:09.010000"],["2024-07-25T06:37:10.010000"],["2024-07-25T06:37:11.010000"],["2024-07-25T06:37:12.010000"],["2024-07-25T06:37:13.010000"],["2024-07-25T06:37:14.010000"],["2024-07-25T06:37:15.010000"],["2024-07-25T06:37:16.010000"],["2024-07-25T06:37:17.010000"],["2024-07-25T06:37:18.010000"],["2024-07-25T06:37:19.010000"],["2024-07-25T06:37:20.010000"],["2024-07-25T06:37:21.010000"],["2024-07-25T06:37:22.010000"],["2024-07-25T06:37:23.010000"],["2024-07-25T06:37:24.010000"],["2024-07-25T06:37:25.010000"],["2024-07-25T06:37:26.010000"],["2024-07-25T06:37:27.010000"],["2024-07-25T06:37:28.010000"],["2024-07-25T06:37:29.010000"],["2024-07-25T06:37:30.010000"],["2024-07-25T06:37:31.010000"],["2024-07-25T06:37:32.010000"],["2024-07-25T06:37:33.010000"],["2024-07-25T06:37:34.010000"],["2024-07-25T06:37:35.010000"],["2024-07-25T06:37:36.010000"],["2024-07-25T06:37:37.010000"],["2024-07-25T06:37:38.010000"],["2024-07-25T06:37:39.010000"],["2024-07-25T06:37:40.010000"],["2024-07-25T06:37:41.010000"],["2024-07-25T06:37:42.010000"],["2024-07-25T06:37:43.010000"],["2024-07-25T06:37:44.010000"],["2024-07-25T06:37:45.010000"],["2024-07-25T06:37:46.010000"],["2024-07-25T06:37:47.010000"],["2024-07-25T06:37:48.010000"],["2024-07-25T06:37:49.010000"],["2024-07-25T06:37:50.010000"],["2024-07-25T06:37:51.010000"],["2024-07-25T06:37:52.010000"],["2024-07-25T06:37:53.010000"],["2024-07-25T06:37:54.010000"],["2024-07-25T06:37:55.010000"],["2024-07-25T06:37:56.010000"],["2024-07-25T06:37:57.010000"],["2024-07-25T06:37:58.010000"],["2024-07-25T06:37:59.010000"],["2024-07-25T06:38:00.010000"],["2024-07-25T06:38:01.010000"],["2024-07-25T06:38:02.010000"],["2024-07-25T06:38:03.010000"],["2024-07-25T06:38:04.010000"],["2024-07-25T06:38:05.010000"],["2024-07-25T06:38:06.010000"],["2024-07-25T06:38:07.010000"],["2024-07-25T06:38:08.010000"],["2024-07-25T06:38:09.010000"],["2024-07-25T06:38:10.010000"],["2024-07-25T06:38:11.010000"],["2024-07-25T06:38:12.010000"],["2024-07-25T06:38:13.010000"],["2024-07-25T06:38:14.010000"],["2024-07-25T06:38:15.010000"],["2024-07-25T06:38:16.010000"],["2024-07-25T06:38:17.010000"],["2024-07-25T06:38:18.010000"],["2024-07-25T06:38:19.010000"],["2024-07-25T06:38:20.010000"],["2024-07-25T06:38:21.010000"],["2024-07-25T06:38:22.010000"],["2024-07-25T06:38:23.010000"],["2024-07-25T06:38:24.010000"],["2024-07-25T06:38:25.010000"],["2024-07-25T06:38:26.010000"],["2024-07-25T06:38:27.010000"],["2024-07-25T06:38:28.010000"],["2024-07-25T06:38:29.010000"],["2024-07-25T06:38:30.010000"],["2024-07-25T06:38:31.010000"],["2024-07-25T06:38:32.010000"],["2024-07-25T06:38:33.010000"],["2024-07-25T06:38:34.010000"],["2024-07-25T06:38:35.010000"],["2024-07-25T06:38:36.010000"],["2024-07-25T06:38:37.010000"],["2024-07-25T06:38:38.010000"],["2024-07-25T06:38:39.010000"],["2024-07-25T06:38:40.010000"],["2024-07-25T06:38:41.010000"],["2024-07-25T06:38:42.010000"],["2024-07-25T06:38:43.010000"],["2024-07-25T06:38:44.010000"],["2024-07-25T06:38:45.010000"],["2024-07-25T06:38:46.010000"],["2024-07-25T06:38:47.010000"],["2024-07-25T06:38:48.010000"],["2024-07-25T06:38:49.010000"],["2024-07-25T06:38:50.010000"],["2024-07-25T06:38:51.010000"],["2024-07-25T06:38:52.010000"],["2024-07-25T06:38:53.010000"],["2024-07-25T06:38:54.010000"],["2024-07-25T06:38:55.010000"],["2024-07-25T06:38:56.010000"],["2024-07-25T06:38:57.010000"],["2024-07-25T06:38:58.010000"],["2024-07-25T06:38:59.010000"],["2024-07-25T06:39:00.010000"],["2024-07-25T06:39:01.010000"],["2024-07-25T06:39:02.010000"],["2024-07-25T06:39:03.010000"],["2024-07-25T06:39:04.010000"],["2024-07-25T06:39:05.010000"],["2024-07-25T06:39:06.010000"],["2024-07-25T06:39:07.010000"],["2024-07-25T06:39:08.010000"],["2024-07-25T06:39:09.010000"],["2024-07-25T06:39:10.010000"],["2024-07-25T06:39:11.010000"],["2024-07-25T06:39:12.010000"],["2024-07-25T06:39:13.010000"],["2024-07-25T06:39:14.010000"],["2024-07-25T06:39:15.010000"],["2024-07-25T06:39:16.010000"],["2024-07-25T06:39:17.010000"],["2024-07-25T06:39:18.010000"],["2024-07-25T06:39:19.010000"],["2024-07-25T06:39:20.010000"],["2024-07-25T06:39:21.010000"],["2024-07-25T06:39:22.010000"],["2024-07-25T06:39:23.010000"],["2024-07-25T06:39:24.010000"],["2024-07-25T06:39:25.010000"],["2024-07-25T06:39:26.010000"],["2024-07-25T06:39:27.010000"],["2024-07-25T06:39:28.010000"],["2024-07-25T06:39:29.010000"],["2024-07-25T06:39:30.010000"],["2024-07-25T06:39:31.010000"],["2024-07-25T06:39:32.010000"],["2024-07-25T06:39:33.010000"],["2024-07-25T06:39:34.010000"],["2024-07-25T06:39:35.010000"],["2024-07-25T06:39:36.010000"],["2024-07-25T06:39:37.010000"],["2024-07-25T06:39:38.010000"],["2024-07-25T06:39:39.010000"],["2024-07-25T06:39:40.010000"],["2024-07-25T06:39:41.010000"],["2024-07-25T06:39:42.010000"],["2024-07-25T06:39:43.010000"],["2024-07-25T06:39:44.010000"],["2024-07-25T06:39:45.010000"],["2024-07-25T06:39:46.010000"],["2024-07-25T06:39:47.010000"],["2024-07-25T06:39:48.010000"],["2024-07-25T06:39:49.010000"],["2024-07-25T06:39:50.010000"],["2024-07-25T06:39:51.010000"],["2024-07-25T06:39:52.010000"],["2024-07-25T06:39:53.010000"],["2024-07-25T06:39:54.010000"],["2024-07-25T06:39:55.010000"],["2024-07-25T06:39:56.010000"],["2024-07-25T06:39:57.010000"],["2024-07-25T06:39:58.010000"],["2024-07-25T06:39:59.010000"],["2024-07-25T06:40:00.010000"],["2024-07-25T06:40:01.010000"],["2024-07-25T06:40:02.010000"],["2024-07-25T06:40:03.010000"],["2024-07-25T06:40:04.010000"],["2024-07-25T06:40:05.010000"],["2024-07-25T06:40:06.010000"],["2024-07-25T06:40:07.010000"],["2024-07-25T06:40:08.010000"],["2024-07-25T06:40:09.010000"],["2024-07-25T06:40:10.010000"],["2024-07-25T06:40:11.010000"],["2024-07-25T06:40:12.010000"],["2024-07-25T06:40:13.010000"],["2024-07-25T06:40:14.010000"],["2024-07-25T06:40:15.010000"],["2024-07-25T06:40:16.010000"],["2024-07-25T06:40:17.010000"],["2024-07-25T06:40:18.010000"],["2024-07-25T06:40:19.010000"],["2024-07-25T06:40:20.010000"],["2024-07-25T06:40:21.010000"],["2024-07-25T06:40:22.010000"],["2024-07-25T06:40:23.010000"],["2024-07-25T06:40:24.010000"],["2024-07-25T06:40:25.010000"],["2024-07-25T06:40:26.010000"],["2024-07-25T06:40:27.010000"],["2024-07-25T06:40:28.010000"],["2024-07-25T06:40:29.010000"],["2024-07-25T06:40:30.010000"],["2024-07-25T06:40:31.010000"],["2024-07-25T06:40:32.010000"],["2024-07-25T06:40:33.010000"],["2024-07-25T06:40:34.010000"],["2024-07-25T06:40:35.010000"],["2024-07-25T06:40:36.010000"],["2024-07-25T06:40:37.010000"],["2024-07-25T06:40:38.010000"],["2024-07-25T06:40:39.010000"],["2024-07-25T06:40:40.010000"],["2024-07-25T06:40:41.010000"],["2024-07-25T06:40:42.010000"],["2024-07-25T06:40:43.010000"],["2024-07-25T06:40:44.010000"],["2024-07-25T06:40:45.010000"],["2024-07-25T06:40:46.010000"],["2024-07-25T06:40:47.010000"],["2024-07-25T06:40:48.010000"],["2024-07-25T06:40:49.010000"],["2024-07-25T06:40:50.010000"],["2024-07-25T06:40:51.010000"],["2024-07-25T06:40:52.010000"],["2024-07-25T06:40:53.010000"],["2024-07-25T06:40:54.010000"],["2024-07-25T06:40:55.010000"],["2024-07-25T06:40:56.010000"],["2024-07-25T06:40:57.010000"],["2024-07-25T06:40:58.010000"],["2024-07-25T06:40:59.010000"],["2024-07-25T06:41:00.010000"],["2024-07-25T06:41:01.010000"],["2024-07-25T06:41:02.010000"],["2024-07-25T06:41:03.010000"],["2024-07-25T06:41:04.010000"],["2024-07-25T06:41:05.010000"],["2024-07-25T06:41:06.010000"],["2024-07-25T06:41:07.010000"],["2024-07-25T06:41:08.010000"],["2024-07-25T06:41:09.010000"],["2024-07-25T06:41:10.010000"],["2024-07-25T06:41:11.010000"],["2024-07-25T06:41:12.010000"],["2024-07-25T06:41:13.010000"],["2024-07-25T06:41:14.010000"],["2024-07-25T06:41:15.010000"],["2024-07-25T06:41:16.010000"],["2024-07-25T06:41:17.010000"],["2024-07-25T06:41:18.010000"],["2024-07-25T06:41:19.010000"],["2024-07-25T06:41:20.010000"],["2024-07-25T06:41:21.010000"],["2024-07-25T06:41:22.010000"],["2024-07-25T06:41:23.010000"],["2024-07-25T06:41:24.010000"],["2024-07-25T06:41:25.010000"],["2024-07-25T06:41:26.010000"],["2024-07-25T06:41:27.010000"],["2024-07-25T06:41:28.010000"],["2024-07-25T06:41:29.010000"],["2024-07-25T06:41:30.010000"],["2024-07-25T06:41:31.010000"],["2024-07-25T06:41:32.010000"],["2024-07-25T06:41:33.010000"],["2024-07-25T06:41:34.010000"],["2024-07-25T06:41:35.010000"],["2024-07-25T06:41:36.010000"],["2024-07-25T06:41:37.010000"],["2024-07-25T06:41:38.010000"],["2024-07-25T06:41:39.010000"],["2024-07-25T06:41:40.010000"],["2024-07-25T06:41:41.010000"],["2024-07-25T06:41:42.010000"],["2024-07-25T06:41:43.010000"],["2024-07-25T06:41:44.010000"],["2024-07-25T06:41:45.010000"],["2024-07-25T06:41:46.010000"],["2024-07-25T06:41:47.010000"],["2024-07-25T06:41:48.010000"],["2024-07-25T06:41:49.010000"],["2024-07-25T06:41:50.010000"],["2024-07-25T06:41:51.010000"],["2024-07-25T06:41:52.010000"],["2024-07-25T06:41:53.010000"],["2024-07-25T06:41:54.010000"],["2024-07-25T06:41:55.010000"],["2024-07-25T06:41:56.010000"],["2024-07-25T06:41:57.010000"],["2024-07-25T06:41:58.010000"],["2024-07-25T06:41:59.010000"],["2024-07-25T06:42:00.010000"],["2024-07-25T06:42:01.010000"],["2024-07-25T06:42:02.010000"],["2024-07-25T06:42:03.010000"],["2024-07-25T06:42:04.010000"],["2024-07-25T06:42:05.010000"],["2024-07-25T06:42:06.010000"],["2024-07-25T06:42:07.010000"],["2024-07-25T06:42:08.010000"],["2024-07-25T06:42:09.010000"],["2024-07-25T06:42:10.010000"],["2024-07-25T06:42:11.010000"],["2024-07-25T06:42:12.010000"],["2024-07-25T06:42:13.010000"],["2024-07-25T06:42:14.010000"],["2024-07-25T06:42:15.010000"],["2024-07-25T06:42:16.010000"],["2024-07-25T06:42:17.010000"],["2024-07-25T06:42:18.010000"],["2024-07-25T06:42:19.010000"],["2024-07-25T06:42:20.010000"],["2024-07-25T06:42:21.010000"],["2024-07-25T06:42:22.010000"],["2024-07-25T06:42:23.010000"],["2024-07-25T06:42:24.010000"],["2024-07-25T06:42:25.010000"],["2024-07-25T06:42:26.010000"],["2024-07-25T06:42:27.010000"],["2024-07-25T06:42:28.010000"],["2024-07-25T06:42:29.010000"],["2024-07-25T06:42:30.010000"],["2024-07-25T06:42:31.010000"],["2024-07-25T06:42:32.010000"],["2024-07-25T06:42:33.010000"],["2024-07-25T06:42:34.010000"],["2024-07-25T06:42:35.010000"],["2024-07-25T06:42:36.010000"],["2024-07-25T06:42:37.010000"],["2024-07-25T06:42:38.010000"],["2024-07-25T06:42:39.010000"],["2024-07-25T06:42:40.010000"],["2024-07-25T06:42:41.010000"],["2024-07-25T06:42:42.010000"],["2024-07-25T06:42:43.010000"],["2024-07-25T06:42:44.010000"],["2024-07-25T06:42:45.010000"],["2024-07-25T06:42:46.010000"],["2024-07-25T06:42:47.010000"],["2024-07-25T06:42:48.010000"],["2024-07-25T06:42:49.010000"],["2024-07-25T06:42:50.010000"],["2024-07-25T06:42:51.010000"],["2024-07-25T06:42:52.010000"],["2024-07-25T06:42:53.010000"],["2024-07-25T06:42:54.010000"],["2024-07-25T06:42:55.010000"],["2024-07-25T06:42:56.010000"],["2024-07-25T06:42:57.010000"],["2024-07-25T06:42:58.010000"],["2024-07-25T06:42:59.010000"],["2024-07-25T06:43:00.010000"],["2024-07-25T06:43:01.010000"],["2024-07-25T06:43:02.010000"],["2024-07-25T06:43:03.010000"],["2024-07-25T06:43:04.010000"],["2024-07-25T06:43:05.010000"],["2024-07-25T06:43:06.010000"],["2024-07-25T06:43:07.010000"],["2024-07-25T06:43:08.010000"],["2024-07-25T06:43:09.010000"],["2024-07-25T06:43:10.010000"],["2024-07-25T06:43:11.010000"],["2024-07-25T06:43:12.010000"],["2024-07-25T06:43:13.010000"],["2024-07-25T06:43:14.010000"],["2024-07-25T06:43:15.010000"],["2024-07-25T06:43:16.010000"],["2024-07-25T06:43:17.010000"],["2024-07-25T06:43:18.010000"],["2024-07-25T06:43:19.010000"],["2024-07-25T06:43:20.010000"],["2024-07-25T06:43:21.010000"],["2024-07-25T06:43:22.010000"],["2024-07-25T06:43:23.010000"],["2024-07-25T06:43:24.010000"],["2024-07-25T06:43:25.010000"],["2024-07-25T06:43:26.010000"],["2024-07-25T06:43:27.010000"],["2024-07-25T06:43:28.010000"],["2024-07-25T06:43:29.010000"],["2024-07-25T06:43:30.010000"],["2024-07-25T06:43:31.010000"],["2024-07-25T06:43:32.010000"],["2024-07-25T06:43:33.010000"],["2024-07-25T06:43:34.010000"],["2024-07-25T06:43:35.010000"],["2024-07-25T06:43:36.010000"],["2024-07-25T06:43:37.010000"],["2024-07-25T06:43:38.010000"],["2024-07-25T06:43:39.010000"],["2024-07-25T06:43:40.010000"],["2024-07-25T06:43:41.010000"],["2024-07-25T06:43:42.010000"],["2024-07-25T06:43:43.010000"],["2024-07-25T06:43:44.010000"],["2024-07-25T06:43:45.010000"],["2024-07-25T06:43:46.010000"],["2024-07-25T06:43:47.010000"],["2024-07-25T06:43:48.010000"],["2024-07-25T06:43:49.010000"],["2024-07-25T06:43:50.010000"],["2024-07-25T06:43:51.010000"],["2024-07-25T06:43:52.010000"],["2024-07-25T06:43:53.010000"],["2024-07-25T06:43:54.010000"],["2024-07-25T06:43:55.010000"],["2024-07-25T06:43:56.010000"],["2024-07-25T06:43:57.010000"],["2024-07-25T06:43:58.010000"],["2024-07-25T06:43:59.010000"],["2024-07-25T06:44:00.010000"],["2024-07-25T06:44:01.010000"],["2024-07-25T06:44:02.010000"],["2024-07-25T06:44:03.010000"],["2024-07-25T06:44:04.010000"],["2024-07-25T06:44:05.010000"],["2024-07-25T06:44:06.010000"],["2024-07-25T06:44:07.010000"],["2024-07-25T06:44:08.010000"],["2024-07-25T06:44:09.010000"],["2024-07-25T06:44:10.010000"],["2024-07-25T06:44:11.010000"],["2024-07-25T06:44:12.010000"],["2024-07-25T06:44:13.010000"],["2024-07-25T06:44:14.010000"],["2024-07-25T06:44:15.010000"],["2024-07-25T06:44:16.010000"],["2024-07-25T06:44:17.010000"],["2024-07-25T06:44:18.010000"],["2024-07-25T06:44:19.010000"],["2024-07-25T06:44:20.010000"],["2024-07-25T06:44:21.010000"],["2024-07-25T06:44:22.010000"],["2024-07-25T06:44:23.010000"],["2024-07-25T06:44:24.010000"],["2024-07-25T06:44:25.010000"],["2024-07-25T06:44:26.010000"],["2024-07-25T06:44:27.010000"],["2024-07-25T06:44:28.010000"],["2024-07-25T06:44:29.010000"],["2024-07-25T06:44:30.010000"],["2024-07-25T06:44:31.010000"],["2024-07-25T06:44:32.010000"],["2024-07-25T06:44:33.010000"],["2024-07-25T06:44:34.010000"],["2024-07-25T06:44:35.010000"],["2024-07-25T06:44:36.010000"],["2024-07-25T06:44:37.010000"],["2024-07-25T06:44:38.010000"],["2024-07-25T06:44:39.010000"],["2024-07-25T06:44:40.010000"],["2024-07-25T06:44:41.010000"],["2024-07-25T06:44:42.010000"],["2024-07-25T06:44:43.010000"],["2024-07-25T06:44:44.010000"],["2024-07-25T06:44:45.010000"],["2024-07-25T06:44:46.010000"],["2024-07-25T06:44:47.010000"],["2024-07-25T06:44:48.010000"],["2024-07-25T06:44:49.010000"],["2024-07-25T06:44:50.010000"],["2024-07-25T06:44:51.010000"],["2024-07-25T06:44:52.010000"],["2024-07-25T06:44:53.010000"],["2024-07-25T06:44:54.010000"],["2024-07-25T06:44:55.010000"],["2024-07-25T06:44:56.010000"],["2024-07-25T06:44:57.010000"],["2024-07-25T06:44:58.010000"],["2024-07-25T06:44:59.010000"],["2024-07-25T06:45:00.010000"],["2024-07-25T06:45:01.010000"],["2024-07-25T06:45:02.010000"],["2024-07-25T06:45:03.010000"],["2024-07-25T06:45:04.010000"],["2024-07-25T06:45:05.010000"],["2024-07-25T06:45:06.010000"],["2024-07-25T06:45:07.010000"],["2024-07-25T06:45:08.010000"],["2024-07-25T06:45:09.010000"],["2024-07-25T06:45:10.010000"],["2024-07-25T06:45:11.010000"],["2024-07-25T06:45:12.010000"],["2024-07-25T06:45:13.010000"],["2024-07-25T06:45:14.010000"],["2024-07-25T06:45:15.010000"],["2024-07-25T06:45:16.010000"],["2024-07-25T06:45:17.010000"],["2024-07-25T06:45:18.010000"],["2024-07-25T06:45:19.010000"],["2024-07-25T06:45:20.010000"],["2024-07-25T06:45:21.010000"],["2024-07-25T06:45:22.010000"],["2024-07-25T06:45:23.010000"],["2024-07-25T06:45:24.010000"],["2024-07-25T06:45:25.010000"],["2024-07-25T06:45:26.010000"],["2024-07-25T06:45:27.010000"],["2024-07-25T06:45:28.010000"],["2024-07-25T06:45:29.010000"],["2024-07-25T06:45:30.010000"],["2024-07-25T06:45:31.010000"],["2024-07-25T06:45:32.010000"],["2024-07-25T06:45:33.010000"],["2024-07-25T06:45:34.010000"],["2024-07-25T06:45:35.010000"],["2024-07-25T06:45:36.010000"],["2024-07-25T06:45:37.010000"],["2024-07-25T06:45:38.010000"],["2024-07-25T06:45:39.010000"],["2024-07-25T06:45:40.010000"],["2024-07-25T06:45:41.010000"],["2024-07-25T06:45:42.010000"],["2024-07-25T06:45:43.010000"],["2024-07-25T06:45:44.010000"],["2024-07-25T06:45:45.010000"],["2024-07-25T06:45:46.010000"],["2024-07-25T06:45:47.010000"],["2024-07-25T06:45:48.010000"],["2024-07-25T06:45:49.010000"],["2024-07-25T06:45:50.010000"],["2024-07-25T06:45:51.010000"],["2024-07-25T06:45:52.010000"],["2024-07-25T06:45:53.010000"],["2024-07-25T06:45:54.010000"],["2024-07-25T06:45:55.010000"],["2024-07-25T06:45:56.010000"],["2024-07-25T06:45:57.010000"],["2024-07-25T06:45:58.010000"],["2024-07-25T06:45:59.010000"],["2024-07-25T06:46:00.010000"],["2024-07-25T06:46:01.010000"],["2024-07-25T06:46:02.010000"],["2024-07-25T06:46:03.010000"],["2024-07-25T06:46:04.010000"],["2024-07-25T06:46:05.010000"],["2024-07-25T06:46:06.010000"],["2024-07-25T06:46:07.010000"],["2024-07-25T06:46:08.010000"],["2024-07-25T06:46:09.010000"],["2024-07-25T06:46:10.010000"],["2024-07-25T06:46:11.010000"],["2024-07-25T06:46:12.010000"],["2024-07-25T06:46:13.010000"],["2024-07-25T06:46:14.010000"],["2024-07-25T06:46:15.010000"],["2024-07-25T06:46:16.010000"],["2024-07-25T06:46:17.010000"],["2024-07-25T06:46:18.010000"],["2024-07-25T06:46:19.010000"],["2024-07-25T06:46:20.010000"],["2024-07-25T06:46:21.010000"],["2024-07-25T06:46:22.010000"],["2024-07-25T06:46:23.010000"],["2024-07-25T06:46:24.010000"],["2024-07-25T06:46:25.010000"],["2024-07-25T06:46:26.010000"],["2024-07-25T06:46:27.010000"],["2024-07-25T06:46:28.010000"],["2024-07-25T06:46:29.010000"],["2024-07-25T06:46:30.010000"],["2024-07-25T06:46:31.010000"],["2024-07-25T06:46:32.010000"],["2024-07-25T06:46:33.010000"],["2024-07-25T06:46:34.010000"],["2024-07-25T06:46:35.010000"],["2024-07-25T06:46:36.010000"],["2024-07-25T06:46:37.010000"],["2024-07-25T06:46:38.010000"],["2024-07-25T06:46:39.010000"],["2024-07-25T06:46:40.010000"],["2024-07-25T06:46:41.010000"],["2024-07-25T06:46:42.010000"],["2024-07-25T06:46:43.010000"],["2024-07-25T06:46:44.010000"],["2024-07-25T06:46:45.010000"],["2024-07-25T06:46:46.010000"],["2024-07-25T06:46:47.010000"],["2024-07-25T06:46:48.010000"],["2024-07-25T06:46:49.010000"],["2024-07-25T06:46:50.010000"],["2024-07-25T06:46:51.010000"],["2024-07-25T06:46:52.010000"],["2024-07-25T06:46:53.010000"],["2024-07-25T06:46:54.010000"],["2024-07-25T06:46:55.010000"],["2024-07-25T06:46:56.010000"],["2024-07-25T06:46:57.010000"],["2024-07-25T06:46:58.010000"],["2024-07-25T06:46:59.010000"],["2024-07-25T06:47:00.010000"],["2024-07-25T06:47:01.010000"],["2024-07-25T06:47:02.010000"],["2024-07-25T06:47:03.010000"],["2024-07-25T06:47:04.010000"],["2024-07-25T06:47:05.010000"],["2024-07-25T06:47:06.010000"],["2024-07-25T06:47:07.010000"],["2024-07-25T06:47:08.010000"],["2024-07-25T06:47:09.010000"],["2024-07-25T06:47:10.010000"],["2024-07-25T06:47:11.010000"],["2024-07-25T06:47:12.010000"],["2024-07-25T06:47:13.010000"],["2024-07-25T06:47:14.010000"],["2024-07-25T06:47:15.010000"],["2024-07-25T06:47:16.010000"],["2024-07-25T06:47:17.010000"],["2024-07-25T06:47:18.010000"],["2024-07-25T06:47:19.010000"],["2024-07-25T06:47:20.010000"],["2024-07-25T06:47:21.010000"],["2024-07-25T06:47:22.010000"],["2024-07-25T06:47:23.010000"],["2024-07-25T06:47:24.010000"],["2024-07-25T06:47:25.010000"],["2024-07-25T06:47:26.010000"],["2024-07-25T06:47:27.010000"],["2024-07-25T06:47:28.010000"],["2024-07-25T06:47:29.010000"],["2024-07-25T06:47:30.010000"],["2024-07-25T06:47:31.010000"],["2024-07-25T06:47:32.010000"],["2024-07-25T06:47:33.010000"],["2024-07-25T06:47:34.010000"],["2024-07-25T06:47:35.010000"],["2024-07-25T06:47:36.010000"],["2024-07-25T06:47:37.010000"],["2024-07-25T06:47:38.010000"],["2024-07-25T06:47:39.010000"],["2024-07-25T06:47:40.010000"],["2024-07-25T06:47:41.010000"],["2024-07-25T06:47:42.010000"],["2024-07-25T06:47:43.010000"],["2024-07-25T06:47:44.010000"],["2024-07-25T06:47:45.010000"],["2024-07-25T06:47:46.010000"],["2024-07-25T06:47:47.010000"],["2024-07-25T06:47:48.010000"],["2024-07-25T06:47:49.010000"],["2024-07-25T06:47:50.010000"],["2024-07-25T06:47:51.010000"],["2024-07-25T06:47:52.010000"],["2024-07-25T06:47:53.010000"],["2024-07-25T06:47:54.010000"],["2024-07-25T06:47:55.010000"],["2024-07-25T06:47:56.010000"],["2024-07-25T06:47:57.010000"],["2024-07-25T06:47:58.010000"],["2024-07-25T06:47:59.010000"],["2024-07-25T06:48:00.010000"],["2024-07-25T06:48:01.010000"],["2024-07-25T06:48:02.010000"],["2024-07-25T06:48:03.010000"],["2024-07-25T06:48:04.010000"],["2024-07-25T06:48:05.010000"],["2024-07-25T06:48:06.010000"],["2024-07-25T06:48:07.010000"],["2024-07-25T06:48:08.010000"],["2024-07-25T06:48:09.010000"],["2024-07-25T06:48:10.010000"],["2024-07-25T06:48:11.010000"],["2024-07-25T06:48:12.010000"],["2024-07-25T06:48:13.010000"],["2024-07-25T06:48:14.010000"],["2024-07-25T06:48:15.010000"],["2024-07-25T06:48:16.010000"],["2024-07-25T06:48:17.010000"],["2024-07-25T06:48:18.010000"],["2024-07-25T06:48:19.010000"],["2024-07-25T06:48:20.010000"],["2024-07-25T06:48:21.010000"],["2024-07-25T06:48:22.010000"],["2024-07-25T06:48:23.010000"],["2024-07-25T06:48:24.010000"],["2024-07-25T06:48:25.010000"],["2024-07-25T06:48:26.010000"],["2024-07-25T06:48:27.010000"],["2024-07-25T06:48:28.010000"],["2024-07-25T06:48:29.010000"],["2024-07-25T06:48:30.010000"],["2024-07-25T06:48:31.010000"],["2024-07-25T06:48:32.010000"],["2024-07-25T06:48:33.010000"],["2024-07-25T06:48:34.010000"],["2024-07-25T06:48:35.010000"],["2024-07-25T06:48:36.010000"],["2024-07-25T06:48:37.010000"],["2024-07-25T06:48:38.010000"],["2024-07-25T06:48:39.010000"],["2024-07-25T06:48:40.010000"],["2024-07-25T06:48:41.010000"],["2024-07-25T06:48:42.010000"],["2024-07-25T06:48:43.010000"],["2024-07-25T06:48:44.010000"],["2024-07-25T06:48:45.010000"],["2024-07-25T06:48:46.010000"],["2024-07-25T06:48:47.010000"],["2024-07-25T06:48:48.010000"],["2024-07-25T06:48:49.010000"],["2024-07-25T06:48:50.010000"],["2024-07-25T06:48:51.010000"],["2024-07-25T06:48:52.010000"],["2024-07-25T06:48:53.010000"],["2024-07-25T06:48:54.010000"],["2024-07-25T06:48:55.010000"],["2024-07-25T06:48:56.010000"],["2024-07-25T06:48:57.010000"],["2024-07-25T06:48:58.010000"],["2024-07-25T06:48:59.010000"],["2024-07-25T06:49:00.010000"],["2024-07-25T06:49:01.010000"],["2024-07-25T06:49:02.010000"],["2024-07-25T06:49:03.010000"],["2024-07-25T06:49:04.010000"],["2024-07-25T06:49:05.010000"],["2024-07-25T06:49:06.010000"],["2024-07-25T06:49:07.010000"],["2024-07-25T06:49:08.010000"],["2024-07-25T06:49:09.010000"],["2024-07-25T06:49:10.010000"],["2024-07-25T06:49:11.010000"],["2024-07-25T06:49:12.010000"],["2024-07-25T06:49:13.010000"],["2024-07-25T06:49:14.010000"],["2024-07-25T06:49:15.010000"],["2024-07-25T06:49:16.010000"],["2024-07-25T06:49:17.010000"],["2024-07-25T06:49:18.010000"],["2024-07-25T06:49:19.010000"],["2024-07-25T06:49:20.010000"],["2024-07-25T06:49:21.010000"],["2024-07-25T06:49:22.010000"],["2024-07-25T06:49:23.010000"],["2024-07-25T06:49:24.010000"],["2024-07-25T06:49:25.010000"],["2024-07-25T06:49:26.010000"],["2024-07-25T06:49:27.010000"],["2024-07-25T06:49:28.010000"],["2024-07-25T06:49:29.010000"],["2024-07-25T06:49:30.010000"],["2024-07-25T06:49:31.010000"],["2024-07-25T06:49:32.010000"],["2024-07-25T06:49:33.010000"],["2024-07-25T06:49:34.010000"],["2024-07-25T06:49:35.010000"],["2024-07-25T06:49:36.010000"],["2024-07-25T06:49:37.010000"],["2024-07-25T06:49:38.010000"],["2024-07-25T06:49:39.010000"],["2024-07-25T06:49:40.010000"],["2024-07-25T06:49:41.010000"],["2024-07-25T06:49:42.010000"],["2024-07-25T06:49:43.010000"],["2024-07-25T06:49:44.010000"],["2024-07-25T06:49:45.010000"],["2024-07-25T06:49:46.010000"],["2024-07-25T06:49:47.010000"],["2024-07-25T06:49:48.010000"],["2024-07-25T06:49:49.010000"],["2024-07-25T06:49:50.010000"],["2024-07-25T06:49:51.010000"],["2024-07-25T06:49:52.010000"],["2024-07-25T06:49:53.010000"],["2024-07-25T06:49:54.010000"],["2024-07-25T06:49:55.010000"],["2024-07-25T06:49:56.010000"],["2024-07-25T06:49:57.010000"],["2024-07-25T06:49:58.010000"],["2024-07-25T06:49:59.010000"],["2024-07-25T06:50:00.010000"],["2024-07-25T06:50:01.010000"],["2024-07-25T06:50:02.010000"],["2024-07-25T06:50:03.010000"],["2024-07-25T06:50:04.010000"],["2024-07-25T06:50:05.010000"],["2024-07-25T06:50:06.010000"],["2024-07-25T06:50:07.010000"],["2024-07-25T06:50:08.010000"],["2024-07-25T06:50:09.010000"],["2024-07-25T06:50:10.010000"],["2024-07-25T06:50:11.010000"],["2024-07-25T06:50:12.010000"],["2024-07-25T06:50:13.010000"],["2024-07-25T06:50:14.010000"],["2024-07-25T06:50:15.010000"],["2024-07-25T06:50:16.010000"],["2024-07-25T06:50:17.010000"],["2024-07-25T06:50:18.010000"],["2024-07-25T06:50:19.010000"],["2024-07-25T06:50:20.010000"],["2024-07-25T06:50:21.010000"],["2024-07-25T06:50:22.010000"],["2024-07-25T06:50:23.010000"],["2024-07-25T06:50:24.010000"],["2024-07-25T06:50:25.010000"],["2024-07-25T06:50:26.010000"],["2024-07-25T06:50:27.010000"],["2024-07-25T06:50:28.010000"],["2024-07-25T06:50:29.010000"],["2024-07-25T06:50:30.010000"],["2024-07-25T06:50:31.010000"],["2024-07-25T06:50:32.010000"],["2024-07-25T06:50:33.010000"],["2024-07-25T06:50:34.010000"],["2024-07-25T06:50:35.010000"],["2024-07-25T06:50:36.010000"],["2024-07-25T06:50:37.010000"],["2024-07-25T06:50:38.010000"],["2024-07-25T06:50:39.010000"],["2024-07-25T06:50:40.010000"],["2024-07-25T06:50:41.010000"],["2024-07-25T06:50:42.010000"],["2024-07-25T06:50:43.010000"],["2024-07-25T06:50:44.010000"],["2024-07-25T06:50:45.010000"],["2024-07-25T06:50:46.010000"],["2024-07-25T06:50:47.010000"],["2024-07-25T06:50:48.010000"],["2024-07-25T06:50:49.010000"],["2024-07-25T06:50:50.010000"],["2024-07-25T06:50:51.010000"],["2024-07-25T06:50:52.010000"],["2024-07-25T06:50:53.010000"],["2024-07-25T06:50:54.010000"],["2024-07-25T06:50:55.010000"],["2024-07-25T06:50:56.010000"],["2024-07-25T06:50:57.010000"],["2024-07-25T06:50:58.010000"],["2024-07-25T06:50:59.010000"],["2024-07-25T06:51:00.010000"],["2024-07-25T06:51:01.010000"],["2024-07-25T06:51:02.010000"],["2024-07-25T06:51:03.010000"],["2024-07-25T06:51:04.010000"],["2024-07-25T06:51:05.010000"],["2024-07-25T06:51:06.010000"],["2024-07-25T06:51:07.010000"],["2024-07-25T06:51:08.010000"],["2024-07-25T06:51:09.010000"],["2024-07-25T06:51:10.010000"],["2024-07-25T06:51:11.010000"],["2024-07-25T06:51:12.010000"],["2024-07-25T06:51:13.010000"],["2024-07-25T06:51:14.010000"],["2024-07-25T06:51:15.010000"],["2024-07-25T06:51:16.010000"],["2024-07-25T06:51:17.010000"],["2024-07-25T06:51:18.010000"],["2024-07-25T06:51:19.010000"],["2024-07-25T06:51:20.010000"],["2024-07-25T06:51:21.010000"],["2024-07-25T06:51:22.010000"],["2024-07-25T06:51:23.010000"],["2024-07-25T06:51:24.010000"],["2024-07-25T06:51:25.010000"],["2024-07-25T06:51:26.010000"],["2024-07-25T06:51:27.010000"],["2024-07-25T06:51:28.010000"],["2024-07-25T06:51:29.010000"],["2024-07-25T06:51:30.010000"],["2024-07-25T06:51:31.010000"],["2024-07-25T06:51:32.010000"],["2024-07-25T06:51:33.010000"],["2024-07-25T06:51:34.010000"],["2024-07-25T06:51:35.010000"],["2024-07-25T06:51:36.010000"],["2024-07-25T06:51:37.010000"],["2024-07-25T06:51:38.010000"],["2024-07-25T06:51:39.010000"],["2024-07-25T06:51:40.010000"],["2024-07-25T06:51:41.010000"],["2024-07-25T06:51:42.010000"],["2024-07-25T06:51:43.010000"],["2024-07-25T06:51:44.010000"],["2024-07-25T06:51:45.010000"],["2024-07-25T06:51:46.010000"],["2024-07-25T06:51:47.010000"],["2024-07-25T06:51:48.010000"],["2024-07-25T06:51:49.010000"],["2024-07-25T06:51:50.010000"],["2024-07-25T06:51:51.010000"],["2024-07-25T06:51:52.010000"],["2024-07-25T06:51:53.010000"],["2024-07-25T06:51:54.010000"],["2024-07-25T06:51:55.010000"],["2024-07-25T06:51:56.010000"],["2024-07-25T06:51:57.010000"],["2024-07-25T06:51:58.010000"],["2024-07-25T06:51:59.010000"],["2024-07-25T06:52:00.010000"],["2024-07-25T06:52:01.010000"],["2024-07-25T06:52:02.010000"],["2024-07-25T06:52:03.010000"],["2024-07-25T06:52:04.010000"],["2024-07-25T06:52:05.010000"],["2024-07-25T06:52:06.010000"],["2024-07-25T06:52:07.010000"],["2024-07-25T06:52:08.010000"],["2024-07-25T06:52:09.010000"],["2024-07-25T06:52:10.010000"],["2024-07-25T06:52:11.010000"],["2024-07-25T06:52:12.010000"],["2024-07-25T06:52:13.010000"],["2024-07-25T06:52:14.010000"],["2024-07-25T06:52:15.010000"],["2024-07-25T06:52:16.010000"],["2024-07-25T06:52:17.010000"],["2024-07-25T06:52:18.010000"],["2024-07-25T06:52:19.010000"],["2024-07-25T06:52:20.010000"],["2024-07-25T06:52:21.010000"],["2024-07-25T06:52:22.010000"],["2024-07-25T06:52:23.010000"],["2024-07-25T06:52:24.010000"],["2024-07-25T06:52:25.010000"],["2024-07-25T06:52:26.010000"],["2024-07-25T06:52:27.010000"],["2024-07-25T06:52:28.010000"],["2024-07-25T06:52:29.010000"],["2024-07-25T06:52:30.010000"],["2024-07-25T06:52:31.010000"],["2024-07-25T06:52:32.010000"],["2024-07-25T06:52:33.010000"],["2024-07-25T06:52:34.010000"],["2024-07-25T06:52:35.010000"],["2024-07-25T06:52:36.010000"],["2024-07-25T06:52:37.010000"],["2024-07-25T06:52:38.010000"],["2024-07-25T06:52:39.010000"],["2024-07-25T06:52:40.010000"],["2024-07-25T06:52:41.010000"],["2024-07-25T06:52:42.010000"],["2024-07-25T06:52:43.010000"],["2024-07-25T06:52:44.010000"],["2024-07-25T06:52:45.010000"],["2024-07-25T06:52:46.010000"],["2024-07-25T06:52:47.010000"],["2024-07-25T06:52:48.010000"],["2024-07-25T06:52:49.010000"],["2024-07-25T06:52:50.010000"],["2024-07-25T06:52:51.010000"],["2024-07-25T06:52:52.010000"],["2024-07-25T06:52:53.010000"],["2024-07-25T06:52:54.010000"],["2024-07-25T06:52:55.010000"],["2024-07-25T06:52:56.010000"],["2024-07-25T06:52:57.010000"],["2024-07-25T06:52:58.010000"],["2024-07-25T06:52:59.010000"],["2024-07-25T06:53:00.010000"],["2024-07-25T06:53:01.010000"],["2024-07-25T06:53:02.010000"],["2024-07-25T06:53:03.010000"],["2024-07-25T06:53:04.010000"],["2024-07-25T06:53:05.010000"],["2024-07-25T06:53:06.010000"],["2024-07-25T06:53:07.010000"],["2024-07-25T06:53:08.010000"],["2024-07-25T06:53:09.010000"],["2024-07-25T06:53:10.010000"],["2024-07-25T06:53:11.010000"],["2024-07-25T06:53:12.010000"],["2024-07-25T06:53:13.010000"],["2024-07-25T06:53:14.010000"],["2024-07-25T06:53:15.010000"],["2024-07-25T06:53:16.010000"],["2024-07-25T06:53:17.010000"],["2024-07-25T06:53:18.010000"],["2024-07-25T06:53:19.010000"],["2024-07-25T06:53:20.010000"],["2024-07-25T06:53:21.010000"],["2024-07-25T06:53:22.010000"],["2024-07-25T06:53:23.010000"],["2024-07-25T06:53:24.010000"],["2024-07-25T06:53:25.010000"],["2024-07-25T06:53:26.010000"],["2024-07-25T06:53:27.010000"],["2024-07-25T06:53:28.010000"],["2024-07-25T06:53:29.010000"],["2024-07-25T06:53:30.010000"],["2024-07-25T06:53:31.010000"],["2024-07-25T06:53:32.010000"],["2024-07-25T06:53:33.010000"],["2024-07-25T06:53:34.010000"],["2024-07-25T06:53:35.010000"],["2024-07-25T06:53:36.010000"],["2024-07-25T06:53:37.010000"],["2024-07-25T06:53:38.010000"],["2024-07-25T06:53:39.010000"],["2024-07-25T06:53:40.010000"],["2024-07-25T06:53:41.010000"],["2024-07-25T06:53:42.010000"],["2024-07-25T06:53:43.010000"],["2024-07-25T06:53:44.010000"],["2024-07-25T06:53:45.010000"],["2024-07-25T06:53:46.010000"],["2024-07-25T06:53:47.010000"],["2024-07-25T06:53:48.010000"],["2024-07-25T06:53:49.010000"],["2024-07-25T06:53:50.010000"],["2024-07-25T06:53:51.010000"],["2024-07-25T06:53:52.010000"],["2024-07-25T06:53:53.010000"],["2024-07-25T06:53:54.010000"],["2024-07-25T06:53:55.010000"],["2024-07-25T06:53:56.010000"],["2024-07-25T06:53:57.010000"],["2024-07-25T06:53:58.010000"],["2024-07-25T06:53:59.010000"],["2024-07-25T06:54:00.010000"],["2024-07-25T06:54:01.010000"],["2024-07-25T06:54:02.010000"],["2024-07-25T06:54:03.010000"],["2024-07-25T06:54:04.010000"],["2024-07-25T06:54:05.010000"],["2024-07-25T06:54:06.010000"],["2024-07-25T06:54:07.010000"],["2024-07-25T06:54:08.010000"],["2024-07-25T06:54:09.010000"],["2024-07-25T06:54:10.010000"],["2024-07-25T06:54:11.010000"],["2024-07-25T06:54:12.010000"],["2024-07-25T06:54:13.010000"],["2024-07-25T06:54:14.010000"],["2024-07-25T06:54:15.010000"],["2024-07-25T06:54:16.010000"],["2024-07-25T06:54:17.010000"],["2024-07-25T06:54:18.010000"],["2024-07-25T06:54:19.010000"],["2024-07-25T06:54:20.010000"],["2024-07-25T06:54:21.010000"],["2024-07-25T06:54:22.010000"],["2024-07-25T06:54:23.010000"],["2024-07-25T06:54:24.010000"],["2024-07-25T06:54:25.010000"],["2024-07-25T06:54:26.010000"],["2024-07-25T06:54:27.010000"],["2024-07-25T06:54:28.010000"],["2024-07-25T06:54:29.010000"],["2024-07-25T06:54:30.010000"],["2024-07-25T06:54:31.010000"],["2024-07-25T06:54:32.010000"],["2024-07-25T06:54:33.010000"],["2024-07-25T06:54:34.010000"],["2024-07-25T06:54:35.010000"],["2024-07-25T06:54:36.010000"],["2024-07-25T06:54:37.010000"],["2024-07-25T06:54:38.010000"],["2024-07-25T06:54:39.010000"],["2024-07-25T06:54:40.010000"],["2024-07-25T06:54:41.010000"],["2024-07-25T06:54:42.010000"],["2024-07-25T06:54:43.010000"],["2024-07-25T06:54:44.010000"],["2024-07-25T06:54:45.010000"],["2024-07-25T06:54:46.010000"],["2024-07-25T06:54:47.010000"],["2024-07-25T06:54:48.010000"],["2024-07-25T06:54:49.010000"],["2024-07-25T06:54:50.010000"],["2024-07-25T06:54:51.010000"],["2024-07-25T06:54:52.010000"],["2024-07-25T06:54:53.010000"],["2024-07-25T06:54:54.010000"],["2024-07-25T06:54:55.010000"],["2024-07-25T06:54:56.010000"],["2024-07-25T06:54:57.010000"],["2024-07-25T06:54:58.010000"],["2024-07-25T06:54:59.010000"],["2024-07-25T06:55:00.010000"],["2024-07-25T06:55:01.010000"],["2024-07-25T06:55:02.010000"],["2024-07-25T06:55:03.010000"],["2024-07-25T06:55:04.010000"],["2024-07-25T06:55:05.010000"],["2024-07-25T06:55:06.010000"],["2024-07-25T06:55:07.010000"],["2024-07-25T06:55:08.010000"],["2024-07-25T06:55:09.010000"],["2024-07-25T06:55:10.010000"],["2024-07-25T06:55:11.010000"],["2024-07-25T06:55:12.010000"],["2024-07-25T06:55:13.010000"],["2024-07-25T06:55:14.010000"],["2024-07-25T06:55:15.010000"],["2024-07-25T06:55:16.010000"],["2024-07-25T06:55:17.010000"],["2024-07-25T06:55:18.010000"],["2024-07-25T06:55:19.010000"],["2024-07-25T06:55:20.010000"],["2024-07-25T06:55:21.010000"],["2024-07-25T06:55:22.010000"],["2024-07-25T06:55:23.010000"],["2024-07-25T06:55:24.010000"],["2024-07-25T06:55:25.010000"],["2024-07-25T06:55:26.010000"],["2024-07-25T06:55:27.010000"],["2024-07-25T06:55:28.010000"],["2024-07-25T06:55:29.010000"],["2024-07-25T06:55:30.010000"],["2024-07-25T06:55:31.010000"],["2024-07-25T06:55:32.010000"],["2024-07-25T06:55:33.010000"],["2024-07-25T06:55:34.010000"],["2024-07-25T06:55:35.010000"],["2024-07-25T06:55:36.010000"],["2024-07-25T06:55:37.010000"],["2024-07-25T06:55:38.010000"],["2024-07-25T06:55:39.010000"],["2024-07-25T06:55:40.010000"],["2024-07-25T06:55:41.010000"],["2024-07-25T06:55:42.010000"],["2024-07-25T06:55:43.010000"],["2024-07-25T06:55:44.010000"],["2024-07-25T06:55:45.010000"],["2024-07-25T06:55:46.010000"],["2024-07-25T06:55:47.010000"],["2024-07-25T06:55:48.010000"],["2024-07-25T06:55:49.010000"],["2024-07-25T06:55:50.010000"],["2024-07-25T06:55:51.010000"],["2024-07-25T06:55:52.010000"],["2024-07-25T06:55:53.010000"],["2024-07-25T06:55:54.010000"],["2024-07-25T06:55:55.010000"],["2024-07-25T06:55:56.010000"],["2024-07-25T06:55:57.010000"],["2024-07-25T06:55:58.010000"],["2024-07-25T06:55:59.010000"],["2024-07-25T06:56:00.010000"],["2024-07-25T06:56:01.010000"],["2024-07-25T06:56:02.010000"],["2024-07-25T06:56:03.010000"],["2024-07-25T06:56:04.010000"],["2024-07-25T06:56:05.010000"],["2024-07-25T06:56:06.010000"],["2024-07-25T06:56:07.010000"],["2024-07-25T06:56:08.010000"],["2024-07-25T06:56:09.010000"],["2024-07-25T06:56:10.010000"],["2024-07-25T06:56:11.010000"],["2024-07-25T06:56:12.010000"],["2024-07-25T06:56:13.010000"],["2024-07-25T06:56:14.010000"],["2024-07-25T06:56:15.010000"],["2024-07-25T06:56:16.010000"],["2024-07-25T06:56:17.010000"],["2024-07-25T06:56:18.010000"],["2024-07-25T06:56:19.010000"],["2024-07-25T06:56:20.010000"],["2024-07-25T06:56:21.010000"],["2024-07-25T06:56:22.010000"],["2024-07-25T06:56:23.010000"],["2024-07-25T06:56:24.010000"],["2024-07-25T06:56:25.010000"],["2024-07-25T06:56:26.010000"],["2024-07-25T06:56:27.010000"],["2024-07-25T06:56:28.010000"],["2024-07-25T06:56:29.010000"],["2024-07-25T06:56:30.010000"],["2024-07-25T06:56:31.010000"],["2024-07-25T06:56:32.010000"],["2024-07-25T06:56:33.010000"],["2024-07-25T06:56:34.010000"],["2024-07-25T06:56:35.010000"],["2024-07-25T06:56:36.010000"],["2024-07-25T06:56:37.010000"],["2024-07-25T06:56:38.010000"],["2024-07-25T06:56:39.010000"],["2024-07-25T06:56:40.010000"],["2024-07-25T06:56:41.010000"],["2024-07-25T06:56:42.010000"],["2024-07-25T06:56:43.010000"],["2024-07-25T06:56:44.010000"],["2024-07-25T06:56:45.010000"],["2024-07-25T06:56:46.010000"],["2024-07-25T06:56:47.010000"],["2024-07-25T06:56:48.010000"],["2024-07-25T06:56:49.010000"],["2024-07-25T06:56:50.010000"],["2024-07-25T06:56:51.010000"],["2024-07-25T06:56:52.010000"],["2024-07-25T06:56:53.010000"],["2024-07-25T06:56:54.010000"],["2024-07-25T06:56:55.010000"],["2024-07-25T06:56:56.010000"],["2024-07-25T06:56:57.010000"],["2024-07-25T06:56:58.010000"],["2024-07-25T06:56:59.010000"],["2024-07-25T06:57:00.010000"],["2024-07-25T06:57:01.010000"],["2024-07-25T06:57:02.010000"],["2024-07-25T06:57:03.010000"],["2024-07-25T06:57:04.010000"],["2024-07-25T06:57:05.010000"],["2024-07-25T06:57:06.010000"],["2024-07-25T06:57:07.010000"],["2024-07-25T06:57:08.010000"],["2024-07-25T06:57:09.010000"],["2024-07-25T06:57:10.010000"],["2024-07-25T06:57:11.010000"],["2024-07-25T06:57:12.010000"],["2024-07-25T06:57:13.010000"],["2024-07-25T06:57:14.010000"],["2024-07-25T06:57:15.010000"],["2024-07-25T06:57:16.010000"],["2024-07-25T06:57:17.010000"],["2024-07-25T06:57:18.010000"],["2024-07-25T06:57:19.010000"],["2024-07-25T06:57:20.010000"],["2024-07-25T06:57:21.010000"],["2024-07-25T06:57:22.010000"],["2024-07-25T06:57:23.010000"],["2024-07-25T06:57:24.010000"],["2024-07-25T06:57:25.010000"],["2024-07-25T06:57:26.010000"],["2024-07-25T06:57:27.010000"],["2024-07-25T06:57:28.010000"],["2024-07-25T06:57:29.010000"],["2024-07-25T06:57:30.010000"],["2024-07-25T06:57:31.010000"],["2024-07-25T06:57:32.010000"],["2024-07-25T06:57:33.010000"],["2024-07-25T06:57:34.010000"],["2024-07-25T06:57:35.010000"],["2024-07-25T06:57:36.010000"],["2024-07-25T06:57:37.010000"],["2024-07-25T06:57:38.010000"],["2024-07-25T06:57:39.010000"],["2024-07-25T06:57:40.010000"],["2024-07-25T06:57:41.010000"],["2024-07-25T06:57:42.010000"],["2024-07-25T06:57:43.010000"],["2024-07-25T06:57:44.010000"],["2024-07-25T06:57:45.010000"],["2024-07-25T06:57:46.010000"],["2024-07-25T06:57:47.010000"],["2024-07-25T06:57:48.010000"],["2024-07-25T06:57:49.010000"],["2024-07-25T06:57:50.010000"],["2024-07-25T06:57:51.010000"],["2024-07-25T06:57:52.010000"],["2024-07-25T06:57:53.010000"],["2024-07-25T06:57:54.010000"],["2024-07-25T06:57:55.010000"],["2024-07-25T06:57:56.010000"],["2024-07-25T06:57:57.010000"],["2024-07-25T06:57:58.010000"],["2024-07-25T06:57:59.010000"],["2024-07-25T06:58:00.010000"],["2024-07-25T06:58:01.010000"],["2024-07-25T06:58:02.010000"],["2024-07-25T06:58:03.010000"],["2024-07-25T06:58:04.010000"],["2024-07-25T06:58:05.010000"],["2024-07-25T06:58:06.010000"],["2024-07-25T06:58:07.010000"],["2024-07-25T06:58:08.010000"],["2024-07-25T06:58:09.010000"],["2024-07-25T06:58:10.010000"],["2024-07-25T06:58:11.010000"],["2024-07-25T06:58:12.010000"],["2024-07-25T06:58:13.010000"],["2024-07-25T06:58:14.010000"],["2024-07-25T06:58:15.010000"],["2024-07-25T06:58:16.010000"],["2024-07-25T06:58:17.010000"],["2024-07-25T06:58:18.010000"],["2024-07-25T06:58:19.010000"],["2024-07-25T06:58:20.010000"],["2024-07-25T06:58:21.010000"],["2024-07-25T06:58:22.010000"],["2024-07-25T06:58:23.010000"],["2024-07-25T06:58:24.010000"],["2024-07-25T06:58:25.010000"],["2024-07-25T06:58:26.010000"],["2024-07-25T06:58:27.010000"],["2024-07-25T06:58:28.010000"],["2024-07-25T06:58:29.010000"],["2024-07-25T06:58:30.010000"],["2024-07-25T06:58:31.010000"],["2024-07-25T06:58:32.010000"],["2024-07-25T06:58:33.010000"],["2024-07-25T06:58:34.010000"],["2024-07-25T06:58:35.010000"],["2024-07-25T06:58:36.010000"],["2024-07-25T06:58:37.010000"],["2024-07-25T06:58:38.010000"],["2024-07-25T06:58:39.010000"],["2024-07-25T06:58:40.010000"],["2024-07-25T06:58:41.010000"],["2024-07-25T06:58:42.010000"],["2024-07-25T06:58:43.010000"],["2024-07-25T06:58:44.010000"],["2024-07-25T06:58:45.010000"],["2024-07-25T06:58:46.010000"],["2024-07-25T06:58:47.010000"],["2024-07-25T06:58:48.010000"],["2024-07-25T06:58:49.010000"],["2024-07-25T06:58:50.010000"],["2024-07-25T06:58:51.010000"],["2024-07-25T06:58:52.010000"],["2024-07-25T06:58:53.010000"],["2024-07-25T06:58:54.010000"],["2024-07-25T06:58:55.010000"],["2024-07-25T06:58:56.010000"],["2024-07-25T06:58:57.010000"],["2024-07-25T06:58:58.010000"],["2024-07-25T06:58:59.010000"],["2024-07-25T06:59:00.010000"],["2024-07-25T06:59:01.010000"],["2024-07-25T06:59:02.010000"],["2024-07-25T06:59:03.010000"],["2024-07-25T06:59:04.010000"],["2024-07-25T06:59:05.010000"],["2024-07-25T06:59:06.010000"],["2024-07-25T06:59:07.010000"],["2024-07-25T06:59:08.010000"],["2024-07-25T06:59:09.010000"],["2024-07-25T06:59:10.010000"],["2024-07-25T06:59:11.010000"],["2024-07-25T06:59:12.010000"],["2024-07-25T06:59:13.010000"],["2024-07-25T06:59:14.010000"],["2024-07-25T06:59:15.010000"],["2024-07-25T06:59:16.010000"],["2024-07-25T06:59:17.010000"],["2024-07-25T06:59:18.010000"],["2024-07-25T06:59:19.010000"],["2024-07-25T06:59:20.010000"],["2024-07-25T06:59:21.010000"],["2024-07-25T06:59:22.010000"],["2024-07-25T06:59:23.010000"],["2024-07-25T06:59:24.010000"],["2024-07-25T06:59:25.010000"],["2024-07-25T06:59:26.010000"],["2024-07-25T06:59:27.010000"],["2024-07-25T06:59:28.010000"],["2024-07-25T06:59:29.010000"],["2024-07-25T06:59:30.010000"],["2024-07-25T06:59:31.010000"],["2024-07-25T06:59:32.010000"],["2024-07-25T06:59:33.010000"],["2024-07-25T06:59:34.010000"],["2024-07-25T06:59:35.010000"],["2024-07-25T06:59:36.010000"],["2024-07-25T06:59:37.010000"],["2024-07-25T06:59:38.010000"],["2024-07-25T06:59:39.010000"],["2024-07-25T06:59:40.010000"],["2024-07-25T06:59:41.010000"],["2024-07-25T06:59:42.010000"],["2024-07-25T06:59:43.010000"],["2024-07-25T06:59:44.010000"],["2024-07-25T06:59:45.010000"],["2024-07-25T06:59:46.010000"],["2024-07-25T06:59:47.010000"],["2024-07-25T06:59:48.010000"],["2024-07-25T06:59:49.010000"],["2024-07-25T06:59:50.010000"],["2024-07-25T06:59:51.010000"],["2024-07-25T06:59:52.010000"],["2024-07-25T06:59:53.010000"],["2024-07-25T06:59:54.010000"],["2024-07-25T06:59:55.010000"],["2024-07-25T06:59:56.010000"],["2024-07-25T06:59:57.010000"],["2024-07-25T06:59:58.010000"],["2024-07-25T06:59:59.010000"],["2024-07-25T07:00:00.010000"],["2024-07-25T07:00:01.010000"],["2024-07-25T07:00:02.010000"],["2024-07-25T07:00:03.010000"],["2024-07-25T07:00:04.010000"],["2024-07-25T07:00:05.010000"],["2024-07-25T07:00:06.010000"],["2024-07-25T07:00:07.010000"],["2024-07-25T07:00:08.010000"],["2024-07-25T07:00:09.010000"],["2024-07-25T07:00:10.010000"],["2024-07-25T07:00:11.010000"],["2024-07-25T07:00:12.010000"],["2024-07-25T07:00:13.010000"],["2024-07-25T07:00:14.010000"],["2024-07-25T07:00:15.010000"],["2024-07-25T07:00:16.010000"],["2024-07-25T07:00:17.010000"],["2024-07-25T07:00:18.010000"],["2024-07-25T07:00:19.010000"],["2024-07-25T07:00:20.010000"],["2024-07-25T07:00:21.010000"],["2024-07-25T07:00:22.010000"],["2024-07-25T07:00:23.010000"],["2024-07-25T07:00:24.010000"],["2024-07-25T07:00:25.010000"],["2024-07-25T07:00:26.010000"],["2024-07-25T07:00:27.010000"],["2024-07-25T07:00:28.010000"],["2024-07-25T07:00:29.010000"],["2024-07-25T07:00:30.010000"],["2024-07-25T07:00:31.010000"],["2024-07-25T07:00:32.010000"],["2024-07-25T07:00:33.010000"],["2024-07-25T07:00:34.010000"],["2024-07-25T07:00:35.010000"],["2024-07-25T07:00:36.010000"],["2024-07-25T07:00:37.010000"],["2024-07-25T07:00:38.010000"],["2024-07-25T07:00:39.010000"],["2024-07-25T07:00:40.010000"],["2024-07-25T07:00:41.010000"],["2024-07-25T07:00:42.010000"],["2024-07-25T07:00:43.010000"],["2024-07-25T07:00:44.010000"],["2024-07-25T07:00:45.010000"],["2024-07-25T07:00:46.010000"],["2024-07-25T07:00:47.010000"],["2024-07-25T07:00:48.010000"],["2024-07-25T07:00:49.010000"],["2024-07-25T07:00:50.010000"],["2024-07-25T07:00:51.010000"],["2024-07-25T07:00:52.010000"],["2024-07-25T07:00:53.010000"],["2024-07-25T07:00:54.010000"],["2024-07-25T07:00:55.010000"],["2024-07-25T07:00:56.010000"],["2024-07-25T07:00:57.010000"],["2024-07-25T07:00:58.010000"],["2024-07-25T07:00:59.010000"],["2024-07-25T07:01:00.010000"],["2024-07-25T07:01:01.010000"],["2024-07-25T07:01:02.010000"],["2024-07-25T07:01:03.010000"],["2024-07-25T07:01:04.010000"],["2024-07-25T07:01:05.010000"],["2024-07-25T07:01:06.010000"],["2024-07-25T07:01:07.010000"],["2024-07-25T07:01:08.010000"],["2024-07-25T07:01:09.010000"],["2024-07-25T07:01:10.010000"],["2024-07-25T07:01:11.010000"],["2024-07-25T07:01:12.010000"],["2024-07-25T07:01:13.010000"],["2024-07-25T07:01:14.010000"],["2024-07-25T07:01:15.010000"],["2024-07-25T07:01:16.010000"],["2024-07-25T07:01:17.010000"],["2024-07-25T07:01:18.010000"],["2024-07-25T07:01:19.010000"],["2024-07-25T07:01:20.010000"],["2024-07-25T07:01:21.010000"],["2024-07-25T07:01:22.010000"],["2024-07-25T07:01:23.010000"],["2024-07-25T07:01:24.010000"],["2024-07-25T07:01:25.010000"],["2024-07-25T07:01:26.010000"],["2024-07-25T07:01:27.010000"],["2024-07-25T07:01:28.010000"],["2024-07-25T07:01:29.010000"],["2024-07-25T07:01:30.010000"],["2024-07-25T07:01:31.010000"],["2024-07-25T07:01:32.010000"],["2024-07-25T07:01:33.010000"],["2024-07-25T07:01:34.010000"],["2024-07-25T07:01:35.010000"],["2024-07-25T07:01:36.010000"],["2024-07-25T07:01:37.010000"],["2024-07-25T07:01:38.010000"],["2024-07-25T07:01:39.010000"],["2024-07-25T07:01:40.010000"],["2024-07-25T07:01:41.010000"],["2024-07-25T07:01:42.010000"],["2024-07-25T07:01:43.010000"],["2024-07-25T07:01:44.010000"],["2024-07-25T07:01:45.010000"],["2024-07-25T07:01:46.010000"],["2024-07-25T07:01:47.010000"],["2024-07-25T07:01:48.010000"],["2024-07-25T07:01:49.010000"],["2024-07-25T07:01:50.010000"],["2024-07-25T07:01:51.010000"],["2024-07-25T07:01:52.010000"],["2024-07-25T07:01:53.010000"],["2024-07-25T07:01:54.010000"],["2024-07-25T07:01:55.010000"],["2024-07-25T07:01:56.010000"],["2024-07-25T07:01:57.010000"],["2024-07-25T07:01:58.010000"],["2024-07-25T07:01:59.010000"],["2024-07-25T07:02:00.010000"],["2024-07-25T07:02:01.010000"],["2024-07-25T07:02:02.010000"],["2024-07-25T07:02:03.010000"],["2024-07-25T07:02:04.010000"],["2024-07-25T07:02:05.010000"],["2024-07-25T07:02:06.010000"],["2024-07-25T07:02:07.010000"],["2024-07-25T07:02:08.010000"],["2024-07-25T07:02:09.010000"],["2024-07-25T07:02:10.010000"],["2024-07-25T07:02:11.010000"],["2024-07-25T07:02:12.010000"],["2024-07-25T07:02:13.010000"],["2024-07-25T07:02:14.010000"],["2024-07-25T07:02:15.010000"],["2024-07-25T07:02:16.010000"],["2024-07-25T07:02:17.010000"],["2024-07-25T07:02:18.010000"],["2024-07-25T07:02:19.010000"],["2024-07-25T07:02:20.010000"],["2024-07-25T07:02:21.010000"],["2024-07-25T07:02:22.010000"],["2024-07-25T07:02:23.010000"],["2024-07-25T07:02:24.010000"],["2024-07-25T07:02:25.010000"],["2024-07-25T07:02:26.010000"],["2024-07-25T07:02:27.010000"],["2024-07-25T07:02:28.010000"],["2024-07-25T07:02:29.010000"],["2024-07-25T07:02:30.010000"],["2024-07-25T07:02:31.010000"],["2024-07-25T07:02:32.010000"],["2024-07-25T07:02:33.010000"],["2024-07-25T07:02:34.010000"],["2024-07-25T07:02:35.010000"],["2024-07-25T07:02:36.010000"],["2024-07-25T07:02:37.010000"],["2024-07-25T07:02:38.010000"],["2024-07-25T07:02:39.010000"],["2024-07-25T07:02:40.010000"],["2024-07-25T07:02:41.010000"],["2024-07-25T07:02:42.010000"],["2024-07-25T07:02:43.010000"],["2024-07-25T07:02:44.010000"],["2024-07-25T07:02:45.010000"],["2024-07-25T07:02:46.010000"],["2024-07-25T07:02:47.010000"],["2024-07-25T07:02:48.010000"],["2024-07-25T07:02:49.010000"],["2024-07-25T07:02:50.010000"],["2024-07-25T07:02:51.010000"],["2024-07-25T07:02:52.010000"],["2024-07-25T07:02:53.010000"],["2024-07-25T07:02:54.010000"],["2024-07-25T07:02:55.010000"],["2024-07-25T07:02:56.010000"],["2024-07-25T07:02:57.010000"],["2024-07-25T07:02:58.010000"],["2024-07-25T07:02:59.010000"],["2024-07-25T07:03:00.010000"],["2024-07-25T07:03:01.010000"],["2024-07-25T07:03:02.010000"],["2024-07-25T07:03:03.010000"],["2024-07-25T07:03:04.010000"],["2024-07-25T07:03:05.010000"],["2024-07-25T07:03:06.010000"],["2024-07-25T07:03:07.010000"],["2024-07-25T07:03:08.010000"],["2024-07-25T07:03:09.010000"],["2024-07-25T07:03:10.010000"],["2024-07-25T07:03:11.010000"],["2024-07-25T07:03:12.010000"],["2024-07-25T07:03:13.010000"],["2024-07-25T07:03:14.010000"],["2024-07-25T07:03:15.010000"],["2024-07-25T07:03:16.010000"],["2024-07-25T07:03:17.010000"],["2024-07-25T07:03:18.010000"],["2024-07-25T07:03:19.010000"],["2024-07-25T07:03:20.010000"],["2024-07-25T07:03:21.010000"],["2024-07-25T07:03:22.010000"],["2024-07-25T07:03:23.010000"],["2024-07-25T07:03:24.010000"],["2024-07-25T07:03:25.010000"],["2024-07-25T07:03:26.010000"],["2024-07-25T07:03:27.010000"],["2024-07-25T07:03:28.010000"],["2024-07-25T07:03:29.010000"],["2024-07-25T07:03:30.010000"],["2024-07-25T07:03:31.010000"],["2024-07-25T07:03:32.010000"],["2024-07-25T07:03:33.010000"],["2024-07-25T07:03:34.010000"],["2024-07-25T07:03:35.010000"],["2024-07-25T07:03:36.010000"],["2024-07-25T07:03:37.010000"],["2024-07-25T07:03:38.010000"],["2024-07-25T07:03:39.010000"],["2024-07-25T07:03:40.010000"],["2024-07-25T07:03:41.010000"],["2024-07-25T07:03:42.010000"],["2024-07-25T07:03:43.010000"],["2024-07-25T07:03:44.010000"],["2024-07-25T07:03:45.010000"],["2024-07-25T07:03:46.010000"],["2024-07-25T07:03:47.010000"],["2024-07-25T07:03:48.010000"],["2024-07-25T07:03:49.010000"],["2024-07-25T07:03:50.010000"],["2024-07-25T07:03:51.010000"],["2024-07-25T07:03:52.010000"],["2024-07-25T07:03:53.010000"],["2024-07-25T07:03:54.010000"],["2024-07-25T07:03:55.010000"],["2024-07-25T07:03:56.010000"],["2024-07-25T07:03:57.010000"],["2024-07-25T07:03:58.010000"],["2024-07-25T07:03:59.010000"],["2024-07-25T07:04:00.010000"],["2024-07-25T07:04:01.010000"],["2024-07-25T07:04:02.010000"],["2024-07-25T07:04:03.010000"],["2024-07-25T07:04:04.010000"],["2024-07-25T07:04:05.010000"],["2024-07-25T07:04:06.010000"],["2024-07-25T07:04:07.010000"],["2024-07-25T07:04:08.010000"],["2024-07-25T07:04:09.010000"],["2024-07-25T07:04:10.010000"],["2024-07-25T07:04:11.010000"],["2024-07-25T07:04:12.010000"],["2024-07-25T07:04:13.010000"],["2024-07-25T07:04:14.010000"],["2024-07-25T07:04:15.010000"],["2024-07-25T07:04:16.010000"],["2024-07-25T07:04:17.010000"],["2024-07-25T07:04:18.010000"],["2024-07-25T07:04:19.010000"],["2024-07-25T07:04:20.010000"],["2024-07-25T07:04:21.010000"],["2024-07-25T07:04:22.010000"],["2024-07-25T07:04:23.010000"],["2024-07-25T07:04:24.010000"],["2024-07-25T07:04:25.010000"],["2024-07-25T07:04:26.010000"],["2024-07-25T07:04:27.010000"],["2024-07-25T07:04:28.010000"],["2024-07-25T07:04:29.010000"],["2024-07-25T07:04:30.010000"],["2024-07-25T07:04:31.010000"],["2024-07-25T07:04:32.010000"],["2024-07-25T07:04:33.010000"],["2024-07-25T07:04:34.010000"],["2024-07-25T07:04:35.010000"],["2024-07-25T07:04:36.010000"],["2024-07-25T07:04:37.010000"],["2024-07-25T07:04:38.010000"],["2024-07-25T07:04:39.010000"],["2024-07-25T07:04:40.010000"],["2024-07-25T07:04:41.010000"],["2024-07-25T07:04:42.010000"],["2024-07-25T07:04:43.010000"],["2024-07-25T07:04:44.010000"],["2024-07-25T07:04:45.010000"],["2024-07-25T07:04:46.010000"],["2024-07-25T07:04:47.010000"],["2024-07-25T07:04:48.010000"],["2024-07-25T07:04:49.010000"],["2024-07-25T07:04:50.010000"],["2024-07-25T07:04:51.010000"],["2024-07-25T07:04:52.010000"],["2024-07-25T07:04:53.010000"],["2024-07-25T07:04:54.010000"],["2024-07-25T07:04:55.010000"],["2024-07-25T07:04:56.010000"],["2024-07-25T07:04:57.010000"],["2024-07-25T07:04:58.010000"],["2024-07-25T07:04:59.010000"],["2024-07-25T07:05:00.010000"],["2024-07-25T07:05:01.010000"],["2024-07-25T07:05:02.010000"],["2024-07-25T07:05:03.010000"],["2024-07-25T07:05:04.010000"],["2024-07-25T07:05:05.010000"],["2024-07-25T07:05:06.010000"],["2024-07-25T07:05:07.010000"],["2024-07-25T07:05:08.010000"],["2024-07-25T07:05:09.010000"],["2024-07-25T07:05:10.010000"],["2024-07-25T07:05:11.010000"],["2024-07-25T07:05:12.010000"],["2024-07-25T07:05:13.010000"],["2024-07-25T07:05:14.010000"],["2024-07-25T07:05:15.010000"],["2024-07-25T07:05:16.010000"],["2024-07-25T07:05:17.010000"],["2024-07-25T07:05:18.010000"],["2024-07-25T07:05:19.010000"],["2024-07-25T07:05:20.010000"],["2024-07-25T07:05:21.010000"],["2024-07-25T07:05:22.010000"],["2024-07-25T07:05:23.010000"],["2024-07-25T07:05:24.010000"],["2024-07-25T07:05:25.010000"],["2024-07-25T07:05:26.010000"],["2024-07-25T07:05:27.010000"],["2024-07-25T07:05:28.010000"],["2024-07-25T07:05:29.010000"],["2024-07-25T07:05:30.010000"],["2024-07-25T07:05:31.010000"],["2024-07-25T07:05:32.010000"],["2024-07-25T07:05:33.010000"],["2024-07-25T07:05:34.010000"],["2024-07-25T07:05:35.010000"],["2024-07-25T07:05:36.010000"],["2024-07-25T07:05:37.010000"],["2024-07-25T07:05:38.010000"],["2024-07-25T07:05:39.010000"],["2024-07-25T07:05:40.010000"],["2024-07-25T07:05:41.010000"],["2024-07-25T07:05:42.010000"],["2024-07-25T07:05:43.010000"],["2024-07-25T07:05:44.010000"],["2024-07-25T07:05:45.010000"],["2024-07-25T07:05:46.010000"],["2024-07-25T07:05:47.010000"],["2024-07-25T07:05:48.010000"],["2024-07-25T07:05:49.010000"],["2024-07-25T07:05:50.010000"],["2024-07-25T07:05:51.010000"],["2024-07-25T07:05:52.010000"],["2024-07-25T07:05:53.010000"],["2024-07-25T07:05:54.010000"],["2024-07-25T07:05:55.010000"],["2024-07-25T07:05:56.010000"],["2024-07-25T07:05:57.010000"],["2024-07-25T07:05:58.010000"],["2024-07-25T07:05:59.010000"],["2024-07-25T07:06:00.010000"],["2024-07-25T07:06:01.010000"],["2024-07-25T07:06:02.010000"],["2024-07-25T07:06:03.010000"],["2024-07-25T07:06:04.010000"],["2024-07-25T07:06:05.010000"],["2024-07-25T07:06:06.010000"],["2024-07-25T07:06:07.010000"],["2024-07-25T07:06:08.010000"],["2024-07-25T07:06:09.010000"],["2024-07-25T07:06:10.010000"],["2024-07-25T07:06:11.010000"],["2024-07-25T07:06:12.010000"],["2024-07-25T07:06:13.010000"],["2024-07-25T07:06:14.010000"],["2024-07-25T07:06:15.010000"],["2024-07-25T07:06:16.010000"],["2024-07-25T07:06:17.010000"],["2024-07-25T07:06:18.010000"],["2024-07-25T07:06:19.010000"],["2024-07-25T07:06:20.010000"],["2024-07-25T07:06:21.010000"],["2024-07-25T07:06:22.010000"],["2024-07-25T07:06:23.010000"],["2024-07-25T07:06:24.010000"],["2024-07-25T07:06:25.010000"],["2024-07-25T07:06:26.010000"],["2024-07-25T07:06:27.010000"],["2024-07-25T07:06:28.010000"],["2024-07-25T07:06:29.010000"],["2024-07-25T07:06:30.010000"],["2024-07-25T07:06:31.010000"],["2024-07-25T07:06:32.010000"],["2024-07-25T07:06:33.010000"],["2024-07-25T07:06:34.010000"],["2024-07-25T07:06:35.010000"],["2024-07-25T07:06:36.010000"],["2024-07-25T07:06:37.010000"],["2024-07-25T07:06:38.010000"],["2024-07-25T07:06:39.010000"],["2024-07-25T07:06:40.010000"],["2024-07-25T07:06:41.010000"],["2024-07-25T07:06:42.010000"],["2024-07-25T07:06:43.010000"],["2024-07-25T07:06:44.010000"],["2024-07-25T07:06:45.010000"],["2024-07-25T07:06:46.010000"],["2024-07-25T07:06:47.010000"],["2024-07-25T07:06:48.010000"],["2024-07-25T07:06:49.010000"],["2024-07-25T07:06:50.010000"],["2024-07-25T07:06:51.010000"],["2024-07-25T07:06:52.010000"],["2024-07-25T07:06:53.010000"],["2024-07-25T07:06:54.010000"],["2024-07-25T07:06:55.010000"],["2024-07-25T07:06:56.010000"],["2024-07-25T07:06:57.010000"],["2024-07-25T07:06:58.010000"],["2024-07-25T07:06:59.010000"],["2024-07-25T07:07:00.010000"],["2024-07-25T07:07:01.010000"],["2024-07-25T07:07:02.010000"],["2024-07-25T07:07:03.010000"],["2024-07-25T07:07:04.010000"],["2024-07-25T07:07:05.010000"],["2024-07-25T07:07:06.010000"],["2024-07-25T07:07:07.010000"],["2024-07-25T07:07:08.010000"],["2024-07-25T07:07:09.010000"],["2024-07-25T07:07:10.010000"],["2024-07-25T07:07:11.010000"],["2024-07-25T07:07:12.010000"],["2024-07-25T07:07:13.010000"],["2024-07-25T07:07:14.010000"],["2024-07-25T07:07:15.010000"],["2024-07-25T07:07:16.010000"],["2024-07-25T07:07:17.010000"],["2024-07-25T07:07:18.010000"],["2024-07-25T07:07:19.010000"],["2024-07-25T07:07:20.010000"],["2024-07-25T07:07:21.010000"],["2024-07-25T07:07:22.010000"],["2024-07-25T07:07:23.010000"],["2024-07-25T07:07:24.010000"],["2024-07-25T07:07:25.010000"],["2024-07-25T07:07:26.010000"],["2024-07-25T07:07:27.010000"],["2024-07-25T07:07:28.010000"],["2024-07-25T07:07:29.010000"],["2024-07-25T07:07:30.010000"],["2024-07-25T07:07:31.010000"],["2024-07-25T07:07:32.010000"],["2024-07-25T07:07:33.010000"],["2024-07-25T07:07:34.010000"],["2024-07-25T07:07:35.010000"],["2024-07-25T07:07:36.010000"],["2024-07-25T07:07:37.010000"],["2024-07-25T07:07:38.010000"],["2024-07-25T07:07:39.010000"],["2024-07-25T07:07:40.010000"],["2024-07-25T07:07:41.010000"],["2024-07-25T07:07:42.010000"],["2024-07-25T07:07:43.010000"],["2024-07-25T07:07:44.010000"],["2024-07-25T07:07:45.010000"],["2024-07-25T07:07:46.010000"],["2024-07-25T07:07:47.010000"],["2024-07-25T07:07:48.010000"],["2024-07-25T07:07:49.010000"],["2024-07-25T07:07:50.010000"],["2024-07-25T07:07:51.010000"],["2024-07-25T07:07:52.010000"],["2024-07-25T07:07:53.010000"],["2024-07-25T07:07:54.010000"],["2024-07-25T07:07:55.010000"],["2024-07-25T07:07:56.010000"],["2024-07-25T07:07:57.010000"],["2024-07-25T07:07:58.010000"],["2024-07-25T07:07:59.010000"],["2024-07-25T07:08:00.010000"],["2024-07-25T07:08:01.010000"],["2024-07-25T07:08:02.010000"],["2024-07-25T07:08:03.010000"],["2024-07-25T07:08:04.010000"],["2024-07-25T07:08:05.010000"],["2024-07-25T07:08:06.010000"],["2024-07-25T07:08:07.010000"],["2024-07-25T07:08:08.010000"],["2024-07-25T07:08:09.010000"],["2024-07-25T07:08:10.010000"],["2024-07-25T07:08:11.010000"],["2024-07-25T07:08:12.010000"],["2024-07-25T07:08:13.010000"],["2024-07-25T07:08:14.010000"],["2024-07-25T07:08:15.010000"],["2024-07-25T07:08:16.010000"],["2024-07-25T07:08:17.010000"],["2024-07-25T07:08:18.010000"],["2024-07-25T07:08:19.010000"],["2024-07-25T07:08:20.010000"],["2024-07-25T07:08:21.010000"],["2024-07-25T07:08:22.010000"],["2024-07-25T07:08:23.010000"],["2024-07-25T07:08:24.010000"],["2024-07-25T07:08:25.010000"],["2024-07-25T07:08:26.010000"],["2024-07-25T07:08:27.010000"],["2024-07-25T07:08:28.010000"],["2024-07-25T07:08:29.010000"],["2024-07-25T07:08:30.010000"],["2024-07-25T07:08:31.010000"],["2024-07-25T07:08:32.010000"],["2024-07-25T07:08:33.010000"],["2024-07-25T07:08:34.010000"],["2024-07-25T07:08:35.010000"],["2024-07-25T07:08:36.010000"],["2024-07-25T07:08:37.010000"],["2024-07-25T07:08:38.010000"],["2024-07-25T07:08:39.010000"],["2024-07-25T07:08:40.010000"],["2024-07-25T07:08:41.010000"],["2024-07-25T07:08:42.010000"],["2024-07-25T07:08:43.010000"],["2024-07-25T07:08:44.010000"],["2024-07-25T07:08:45.010000"],["2024-07-25T07:08:46.010000"],["2024-07-25T07:08:47.010000"],["2024-07-25T07:08:48.010000"],["2024-07-25T07:08:49.010000"],["2024-07-25T07:08:50.010000"],["2024-07-25T07:08:51.010000"],["2024-07-25T07:08:52.010000"],["2024-07-25T07:08:53.010000"],["2024-07-25T07:08:54.010000"],["2024-07-25T07:08:55.010000"],["2024-07-25T07:08:56.010000"],["2024-07-25T07:08:57.010000"],["2024-07-25T07:08:58.010000"],["2024-07-25T07:08:59.010000"],["2024-07-25T07:09:00.010000"],["2024-07-25T07:09:01.010000"],["2024-07-25T07:09:02.010000"],["2024-07-25T07:09:03.010000"],["2024-07-25T07:09:04.010000"],["2024-07-25T07:09:05.010000"],["2024-07-25T07:09:06.010000"],["2024-07-25T07:09:07.010000"],["2024-07-25T07:09:08.010000"],["2024-07-25T07:09:09.010000"],["2024-07-25T07:09:10.010000"],["2024-07-25T07:09:11.010000"],["2024-07-25T07:09:12.010000"],["2024-07-25T07:09:13.010000"],["2024-07-25T07:09:14.010000"],["2024-07-25T07:09:15.010000"],["2024-07-25T07:09:16.010000"],["2024-07-25T07:09:17.010000"],["2024-07-25T07:09:18.010000"],["2024-07-25T07:09:19.010000"],["2024-07-25T07:09:20.010000"],["2024-07-25T07:09:21.010000"],["2024-07-25T07:09:22.010000"],["2024-07-25T07:09:23.010000"],["2024-07-25T07:09:24.010000"],["2024-07-25T07:09:25.010000"],["2024-07-25T07:09:26.010000"],["2024-07-25T07:09:27.010000"],["2024-07-25T07:09:28.010000"],["2024-07-25T07:09:29.010000"],["2024-07-25T07:09:30.010000"],["2024-07-25T07:09:31.010000"],["2024-07-25T07:09:32.010000"],["2024-07-25T07:09:33.010000"],["2024-07-25T07:09:34.010000"],["2024-07-25T07:09:35.010000"],["2024-07-25T07:09:36.010000"],["2024-07-25T07:09:37.010000"],["2024-07-25T07:09:38.010000"],["2024-07-25T07:09:39.010000"],["2024-07-25T07:09:40.010000"],["2024-07-25T07:09:41.010000"],["2024-07-25T07:09:42.010000"],["2024-07-25T07:09:43.010000"],["2024-07-25T07:09:44.010000"],["2024-07-25T07:09:45.010000"],["2024-07-25T07:09:46.010000"],["2024-07-25T07:09:47.010000"],["2024-07-25T07:09:48.010000"],["2024-07-25T07:09:49.010000"],["2024-07-25T07:09:50.010000"],["2024-07-25T07:09:51.010000"],["2024-07-25T07:09:52.010000"],["2024-07-25T07:09:53.010000"],["2024-07-25T07:09:54.010000"],["2024-07-25T07:09:55.010000"],["2024-07-25T07:09:56.010000"],["2024-07-25T07:09:57.010000"],["2024-07-25T07:09:58.010000"],["2024-07-25T07:09:59.010000"],["2024-07-25T07:10:00.010000"],["2024-07-25T07:10:01.010000"],["2024-07-25T07:10:02.010000"],["2024-07-25T07:10:03.010000"],["2024-07-25T07:10:04.010000"],["2024-07-25T07:10:05.010000"],["2024-07-25T07:10:06.010000"],["2024-07-25T07:10:07.010000"],["2024-07-25T07:10:08.010000"],["2024-07-25T07:10:09.010000"],["2024-07-25T07:10:10.010000"],["2024-07-25T07:10:11.010000"],["2024-07-25T07:10:12.010000"],["2024-07-25T07:10:13.010000"],["2024-07-25T07:10:14.010000"],["2024-07-25T07:10:15.010000"],["2024-07-25T07:10:16.010000"],["2024-07-25T07:10:17.010000"],["2024-07-25T07:10:18.010000"],["2024-07-25T07:10:19.010000"],["2024-07-25T07:10:20.010000"],["2024-07-25T07:10:21.010000"],["2024-07-25T07:10:22.010000"],["2024-07-25T07:10:23.010000"],["2024-07-25T07:10:24.010000"],["2024-07-25T07:10:25.010000"],["2024-07-25T07:10:26.010000"],["2024-07-25T07:10:27.010000"],["2024-07-25T07:10:28.010000"],["2024-07-25T07:10:29.010000"],["2024-07-25T07:10:30.010000"],["2024-07-25T07:10:31.010000"],["2024-07-25T07:10:32.010000"],["2024-07-25T07:10:33.010000"],["2024-07-25T07:10:34.010000"],["2024-07-25T07:10:35.010000"],["2024-07-25T07:10:36.010000"],["2024-07-25T07:10:37.010000"],["2024-07-25T07:10:38.010000"],["2024-07-25T07:10:39.010000"],["2024-07-25T07:10:40.010000"],["2024-07-25T07:10:41.010000"],["2024-07-25T07:10:42.010000"],["2024-07-25T07:10:43.010000"],["2024-07-25T07:10:44.010000"],["2024-07-25T07:10:45.010000"],["2024-07-25T07:10:46.010000"],["2024-07-25T07:10:47.010000"],["2024-07-25T07:10:48.010000"],["2024-07-25T07:10:49.010000"],["2024-07-25T07:10:50.010000"],["2024-07-25T07:10:51.010000"],["2024-07-25T07:10:52.010000"],["2024-07-25T07:10:53.010000"],["2024-07-25T07:10:54.010000"],["2024-07-25T07:10:55.010000"],["2024-07-25T07:10:56.010000"],["2024-07-25T07:10:57.010000"],["2024-07-25T07:10:58.010000"],["2024-07-25T07:10:59.010000"],["2024-07-25T07:11:00.010000"],["2024-07-25T07:11:01.010000"],["2024-07-25T07:11:02.010000"],["2024-07-25T07:11:03.010000"],["2024-07-25T07:11:04.010000"],["2024-07-25T07:11:05.010000"],["2024-07-25T07:11:06.010000"],["2024-07-25T07:11:07.010000"],["2024-07-25T07:11:08.010000"],["2024-07-25T07:11:09.010000"],["2024-07-25T07:11:10.010000"],["2024-07-25T07:11:11.010000"],["2024-07-25T07:11:12.010000"],["2024-07-25T07:11:13.010000"],["2024-07-25T07:11:14.010000"],["2024-07-25T07:11:15.010000"],["2024-07-25T07:11:16.010000"],["2024-07-25T07:11:17.010000"],["2024-07-25T07:11:18.010000"],["2024-07-25T07:11:19.010000"],["2024-07-25T07:11:20.010000"],["2024-07-25T07:11:21.010000"],["2024-07-25T07:11:22.010000"],["2024-07-25T07:11:23.010000"],["2024-07-25T07:11:24.010000"],["2024-07-25T07:11:25.010000"],["2024-07-25T07:11:26.010000"],["2024-07-25T07:11:27.010000"],["2024-07-25T07:11:28.010000"],["2024-07-25T07:11:29.010000"],["2024-07-25T07:11:30.010000"],["2024-07-25T07:11:31.010000"],["2024-07-25T07:11:32.010000"],["2024-07-25T07:11:33.010000"],["2024-07-25T07:11:34.010000"],["2024-07-25T07:11:35.010000"],["2024-07-25T07:11:36.010000"],["2024-07-25T07:11:37.010000"],["2024-07-25T07:11:38.010000"],["2024-07-25T07:11:39.010000"],["2024-07-25T07:11:40.010000"],["2024-07-25T07:11:41.010000"],["2024-07-25T07:11:42.010000"],["2024-07-25T07:11:43.010000"],["2024-07-25T07:11:44.010000"],["2024-07-25T07:11:45.010000"],["2024-07-25T07:11:46.010000"],["2024-07-25T07:11:47.010000"],["2024-07-25T07:11:48.010000"],["2024-07-25T07:11:49.010000"],["2024-07-25T07:11:50.010000"],["2024-07-25T07:11:51.010000"],["2024-07-25T07:11:52.010000"],["2024-07-25T07:11:53.010000"],["2024-07-25T07:11:54.010000"],["2024-07-25T07:11:55.010000"],["2024-07-25T07:11:56.010000"],["2024-07-25T07:11:57.010000"],["2024-07-25T07:11:58.010000"],["2024-07-25T07:11:59.010000"],["2024-07-25T07:12:00.010000"],["2024-07-25T07:12:01.010000"],["2024-07-25T07:12:02.010000"],["2024-07-25T07:12:03.010000"],["2024-07-25T07:12:04.010000"],["2024-07-25T07:12:05.010000"],["2024-07-25T07:12:06.010000"],["2024-07-25T07:12:07.010000"],["2024-07-25T07:12:08.010000"],["2024-07-25T07:12:09.010000"],["2024-07-25T07:12:10.010000"],["2024-07-25T07:12:11.010000"],["2024-07-25T07:12:12.010000"],["2024-07-25T07:12:13.010000"],["2024-07-25T07:12:14.010000"],["2024-07-25T07:12:15.010000"],["2024-07-25T07:12:16.010000"],["2024-07-25T07:12:17.010000"],["2024-07-25T07:12:18.010000"],["2024-07-25T07:12:19.010000"],["2024-07-25T07:12:20.010000"],["2024-07-25T07:12:21.010000"],["2024-07-25T07:12:22.010000"],["2024-07-25T07:12:23.010000"],["2024-07-25T07:12:24.010000"],["2024-07-25T07:12:25.010000"],["2024-07-25T07:12:26.010000"],["2024-07-25T07:12:27.010000"],["2024-07-25T07:12:28.010000"],["2024-07-25T07:12:29.010000"],["2024-07-25T07:12:30.010000"],["2024-07-25T07:12:31.010000"],["2024-07-25T07:12:32.010000"],["2024-07-25T07:12:33.010000"],["2024-07-25T07:12:34.010000"],["2024-07-25T07:12:35.010000"],["2024-07-25T07:12:36.010000"],["2024-07-25T07:12:37.010000"],["2024-07-25T07:12:38.010000"],["2024-07-25T07:12:39.010000"],["2024-07-25T07:12:40.010000"],["2024-07-25T07:12:41.010000"],["2024-07-25T07:12:42.010000"],["2024-07-25T07:12:43.010000"],["2024-07-25T07:12:44.010000"],["2024-07-25T07:12:45.010000"],["2024-07-25T07:12:46.010000"],["2024-07-25T07:12:47.010000"],["2024-07-25T07:12:48.010000"],["2024-07-25T07:12:49.010000"],["2024-07-25T07:12:50.010000"],["2024-07-25T07:12:51.010000"],["2024-07-25T07:12:52.010000"],["2024-07-25T07:12:53.010000"],["2024-07-25T07:12:54.010000"],["2024-07-25T07:12:55.010000"],["2024-07-25T07:12:56.010000"],["2024-07-25T07:12:57.010000"],["2024-07-25T07:12:58.010000"],["2024-07-25T07:12:59.010000"],["2024-07-25T07:13:00.010000"],["2024-07-25T07:13:01.010000"],["2024-07-25T07:13:02.010000"],["2024-07-25T07:13:03.010000"],["2024-07-25T07:13:04.010000"],["2024-07-25T07:13:05.010000"],["2024-07-25T07:13:06.010000"],["2024-07-25T07:13:07.010000"],["2024-07-25T07:13:08.010000"],["2024-07-25T07:13:09.010000"],["2024-07-25T07:13:10.010000"],["2024-07-25T07:13:11.010000"],["2024-07-25T07:13:12.010000"],["2024-07-25T07:13:13.010000"],["2024-07-25T07:13:14.010000"],["2024-07-25T07:13:15.010000"],["2024-07-25T07:13:16.010000"],["2024-07-25T07:13:17.010000"],["2024-07-25T07:13:18.010000"],["2024-07-25T07:13:19.010000"],["2024-07-25T07:13:20.010000"],["2024-07-25T07:13:21.010000"],["2024-07-25T07:13:22.010000"],["2024-07-25T07:13:23.010000"],["2024-07-25T07:13:24.010000"],["2024-07-25T07:13:25.010000"],["2024-07-25T07:13:26.010000"],["2024-07-25T07:13:27.010000"],["2024-07-25T07:13:28.010000"],["2024-07-25T07:13:29.010000"],["2024-07-25T07:13:30.010000"],["2024-07-25T07:13:31.010000"],["2024-07-25T07:13:32.010000"],["2024-07-25T07:13:33.010000"],["2024-07-25T07:13:34.010000"],["2024-07-25T07:13:35.010000"],["2024-07-25T07:13:36.010000"],["2024-07-25T07:13:37.010000"],["2024-07-25T07:13:38.010000"],["2024-07-25T07:13:39.010000"],["2024-07-25T07:13:40.010000"],["2024-07-25T07:13:41.010000"],["2024-07-25T07:13:42.010000"],["2024-07-25T07:13:43.010000"],["2024-07-25T07:13:44.010000"],["2024-07-25T07:13:45.010000"],["2024-07-25T07:13:46.010000"],["2024-07-25T07:13:47.010000"],["2024-07-25T07:13:48.010000"],["2024-07-25T07:13:49.010000"],["2024-07-25T07:13:50.010000"],["2024-07-25T07:13:51.010000"],["2024-07-25T07:13:52.010000"],["2024-07-25T07:13:53.010000"],["2024-07-25T07:13:54.010000"],["2024-07-25T07:13:55.010000"],["2024-07-25T07:13:56.010000"],["2024-07-25T07:13:57.010000"],["2024-07-25T07:13:58.010000"],["2024-07-25T07:13:59.010000"],["2024-07-25T07:14:00.010000"],["2024-07-25T07:14:01.010000"],["2024-07-25T07:14:02.010000"],["2024-07-25T07:14:03.010000"],["2024-07-25T07:14:04.010000"],["2024-07-25T07:14:05.010000"],["2024-07-25T07:14:06.010000"],["2024-07-25T07:14:07.010000"],["2024-07-25T07:14:08.010000"],["2024-07-25T07:14:09.010000"],["2024-07-25T07:14:10.010000"],["2024-07-25T07:14:11.010000"],["2024-07-25T07:14:12.010000"],["2024-07-25T07:14:13.010000"],["2024-07-25T07:14:14.010000"],["2024-07-25T07:14:15.010000"],["2024-07-25T07:14:16.010000"],["2024-07-25T07:14:17.010000"],["2024-07-25T07:14:18.010000"],["2024-07-25T07:14:19.010000"],["2024-07-25T07:14:20.010000"],["2024-07-25T07:14:21.010000"],["2024-07-25T07:14:22.010000"],["2024-07-25T07:14:23.010000"],["2024-07-25T07:14:24.010000"],["2024-07-25T07:14:25.010000"],["2024-07-25T07:14:26.010000"],["2024-07-25T07:14:27.010000"],["2024-07-25T07:14:28.010000"],["2024-07-25T07:14:29.010000"],["2024-07-25T07:14:30.010000"],["2024-07-25T07:14:31.010000"],["2024-07-25T07:14:32.010000"],["2024-07-25T07:14:33.010000"],["2024-07-25T07:14:34.010000"],["2024-07-25T07:14:35.010000"],["2024-07-25T07:14:36.010000"],["2024-07-25T07:14:37.010000"],["2024-07-25T07:14:38.010000"],["2024-07-25T07:14:39.010000"],["2024-07-25T07:14:40.010000"],["2024-07-25T07:14:41.010000"],["2024-07-25T07:14:42.010000"],["2024-07-25T07:14:43.010000"],["2024-07-25T07:14:44.010000"],["2024-07-25T07:14:45.010000"],["2024-07-25T07:14:46.010000"],["2024-07-25T07:14:47.010000"],["2024-07-25T07:14:48.010000"],["2024-07-25T07:14:49.010000"],["2024-07-25T07:14:50.010000"],["2024-07-25T07:14:51.010000"],["2024-07-25T07:14:52.010000"],["2024-07-25T07:14:53.010000"],["2024-07-25T07:14:54.010000"],["2024-07-25T07:14:55.010000"],["2024-07-25T07:14:56.010000"],["2024-07-25T07:14:57.010000"],["2024-07-25T07:14:58.010000"],["2024-07-25T07:14:59.010000"],["2024-07-25T07:15:00.010000"],["2024-07-25T07:15:01.010000"],["2024-07-25T07:15:02.010000"],["2024-07-25T07:15:03.010000"],["2024-07-25T07:15:04.010000"],["2024-07-25T07:15:05.010000"],["2024-07-25T07:15:06.010000"],["2024-07-25T07:15:07.010000"],["2024-07-25T07:15:08.010000"],["2024-07-25T07:15:09.010000"],["2024-07-25T07:15:10.010000"],["2024-07-25T07:15:11.010000"],["2024-07-25T07:15:12.010000"],["2024-07-25T07:15:13.010000"],["2024-07-25T07:15:14.010000"],["2024-07-25T07:15:15.010000"],["2024-07-25T07:15:16.010000"],["2024-07-25T07:15:17.010000"],["2024-07-25T07:15:18.010000"],["2024-07-25T07:15:19.010000"],["2024-07-25T07:15:20.010000"],["2024-07-25T07:15:21.010000"],["2024-07-25T07:15:22.010000"],["2024-07-25T07:15:23.010000"],["2024-07-25T07:15:24.010000"],["2024-07-25T07:15:25.010000"],["2024-07-25T07:15:26.010000"],["2024-07-25T07:15:27.010000"],["2024-07-25T07:15:28.010000"],["2024-07-25T07:15:29.010000"],["2024-07-25T07:15:30.010000"],["2024-07-25T07:15:31.010000"],["2024-07-25T07:15:32.010000"],["2024-07-25T07:15:33.010000"],["2024-07-25T07:15:34.010000"],["2024-07-25T07:15:35.010000"],["2024-07-25T07:15:36.010000"],["2024-07-25T07:15:37.010000"],["2024-07-25T07:15:38.010000"],["2024-07-25T07:15:39.010000"],["2024-07-25T07:15:40.010000"],["2024-07-25T07:15:41.010000"],["2024-07-25T07:15:42.010000"],["2024-07-25T07:15:43.010000"],["2024-07-25T07:15:44.010000"],["2024-07-25T07:15:45.010000"],["2024-07-25T07:15:46.010000"],["2024-07-25T07:15:47.010000"],["2024-07-25T07:15:48.010000"],["2024-07-25T07:15:49.010000"],["2024-07-25T07:15:50.010000"],["2024-07-25T07:15:51.010000"],["2024-07-25T07:15:52.010000"],["2024-07-25T07:15:53.010000"],["2024-07-25T07:15:54.010000"],["2024-07-25T07:15:55.010000"],["2024-07-25T07:15:56.010000"],["2024-07-25T07:15:57.010000"],["2024-07-25T07:15:58.010000"],["2024-07-25T07:15:59.010000"],["2024-07-25T07:16:00.010000"],["2024-07-25T07:16:01.010000"],["2024-07-25T07:16:02.010000"],["2024-07-25T07:16:03.010000"],["2024-07-25T07:16:04.010000"],["2024-07-25T07:16:05.010000"],["2024-07-25T07:16:06.010000"],["2024-07-25T07:16:07.010000"],["2024-07-25T07:16:08.010000"],["2024-07-25T07:16:09.010000"],["2024-07-25T07:16:10.010000"],["2024-07-25T07:16:11.010000"],["2024-07-25T07:16:12.010000"],["2024-07-25T07:16:13.010000"],["2024-07-25T07:16:14.010000"],["2024-07-25T07:16:15.010000"],["2024-07-25T07:16:16.010000"],["2024-07-25T07:16:17.010000"],["2024-07-25T07:16:18.010000"],["2024-07-25T07:16:19.010000"],["2024-07-25T07:16:20.010000"],["2024-07-25T07:16:21.010000"],["2024-07-25T07:16:22.010000"],["2024-07-25T07:16:23.010000"],["2024-07-25T07:16:24.010000"],["2024-07-25T07:16:25.010000"],["2024-07-25T07:16:26.010000"],["2024-07-25T07:16:27.010000"],["2024-07-25T07:16:28.010000"],["2024-07-25T07:16:29.010000"],["2024-07-25T07:16:30.010000"],["2024-07-25T07:16:31.010000"],["2024-07-25T07:16:32.010000"],["2024-07-25T07:16:33.010000"],["2024-07-25T07:16:34.010000"],["2024-07-25T07:16:35.010000"],["2024-07-25T07:16:36.010000"],["2024-07-25T07:16:37.010000"],["2024-07-25T07:16:38.010000"],["2024-07-25T07:16:39.010000"],["2024-07-25T07:16:40.010000"],["2024-07-25T07:16:41.010000"],["2024-07-25T07:16:42.010000"],["2024-07-25T07:16:43.010000"],["2024-07-25T07:16:44.010000"],["2024-07-25T07:16:45.010000"],["2024-07-25T07:16:46.010000"],["2024-07-25T07:16:47.010000"],["2024-07-25T07:16:48.010000"],["2024-07-25T07:16:49.010000"],["2024-07-25T07:16:50.010000"],["2024-07-25T07:16:51.010000"],["2024-07-25T07:16:52.010000"],["2024-07-25T07:16:53.010000"],["2024-07-25T07:16:54.010000"],["2024-07-25T07:16:55.010000"],["2024-07-25T07:16:56.010000"],["2024-07-25T07:16:57.010000"],["2024-07-25T07:16:58.010000"],["2024-07-25T07:16:59.010000"],["2024-07-25T07:17:00.010000"],["2024-07-25T07:17:01.010000"],["2024-07-25T07:17:02.010000"],["2024-07-25T07:17:03.010000"],["2024-07-25T07:17:04.010000"],["2024-07-25T07:17:05.010000"],["2024-07-25T07:17:06.010000"],["2024-07-25T07:17:07.010000"],["2024-07-25T07:17:08.010000"],["2024-07-25T07:17:09.010000"],["2024-07-25T07:17:10.010000"],["2024-07-25T07:17:11.010000"],["2024-07-25T07:17:12.010000"],["2024-07-25T07:17:13.010000"],["2024-07-25T07:17:14.010000"],["2024-07-25T07:17:15.010000"],["2024-07-25T07:17:16.010000"],["2024-07-25T07:17:17.010000"],["2024-07-25T07:17:18.010000"],["2024-07-25T07:17:19.010000"],["2024-07-25T07:17:20.010000"],["2024-07-25T07:17:21.010000"],["2024-07-25T07:17:22.010000"],["2024-07-25T07:17:23.010000"],["2024-07-25T07:17:24.010000"],["2024-07-25T07:17:25.010000"],["2024-07-25T07:17:26.010000"],["2024-07-25T07:17:27.010000"],["2024-07-25T07:17:28.010000"],["2024-07-25T07:17:29.010000"],["2024-07-25T07:17:30.010000"],["2024-07-25T07:17:31.010000"],["2024-07-25T07:17:32.010000"],["2024-07-25T07:17:33.010000"],["2024-07-25T07:17:34.010000"],["2024-07-25T07:17:35.010000"],["2024-07-25T07:17:36.010000"],["2024-07-25T07:17:37.010000"],["2024-07-25T07:17:38.010000"],["2024-07-25T07:17:39.010000"],["2024-07-25T07:17:40.010000"],["2024-07-25T07:17:41.010000"],["2024-07-25T07:17:42.010000"],["2024-07-25T07:17:43.010000"],["2024-07-25T07:17:44.010000"],["2024-07-25T07:17:45.010000"],["2024-07-25T07:17:46.010000"],["2024-07-25T07:17:47.010000"],["2024-07-25T07:17:48.010000"],["2024-07-25T07:17:49.010000"],["2024-07-25T07:17:50.010000"],["2024-07-25T07:17:51.010000"],["2024-07-25T07:17:52.010000"],["2024-07-25T07:17:53.010000"],["2024-07-25T07:17:54.010000"],["2024-07-25T07:17:55.010000"],["2024-07-25T07:17:56.010000"],["2024-07-25T07:17:57.010000"],["2024-07-25T07:17:58.010000"],["2024-07-25T07:17:59.010000"],["2024-07-25T07:18:00.010000"],["2024-07-25T07:18:01.010000"],["2024-07-25T07:18:02.010000"],["2024-07-25T07:18:03.010000"],["2024-07-25T07:18:04.010000"],["2024-07-25T07:18:05.010000"],["2024-07-25T07:18:06.010000"],["2024-07-25T07:18:07.010000"],["2024-07-25T07:18:08.010000"],["2024-07-25T07:18:09.010000"],["2024-07-25T07:18:10.010000"],["2024-07-25T07:18:11.010000"],["2024-07-25T07:18:12.010000"],["2024-07-25T07:18:13.010000"],["2024-07-25T07:18:14.010000"],["2024-07-25T07:18:15.010000"],["2024-07-25T07:18:16.010000"],["2024-07-25T07:18:17.010000"],["2024-07-25T07:18:18.010000"],["2024-07-25T07:18:19.010000"],["2024-07-25T07:18:20.010000"],["2024-07-25T07:18:21.010000"],["2024-07-25T07:18:22.010000"],["2024-07-25T07:18:23.010000"],["2024-07-25T07:18:24.010000"],["2024-07-25T07:18:25.010000"],["2024-07-25T07:18:26.010000"],["2024-07-25T07:18:27.010000"],["2024-07-25T07:18:28.010000"],["2024-07-25T07:18:29.010000"],["2024-07-25T07:18:30.010000"],["2024-07-25T07:18:31.010000"],["2024-07-25T07:18:32.010000"],["2024-07-25T07:18:33.010000"],["2024-07-25T07:18:34.010000"],["2024-07-25T07:18:35.010000"],["2024-07-25T07:18:36.010000"],["2024-07-25T07:18:37.010000"],["2024-07-25T07:18:38.010000"],["2024-07-25T07:18:39.010000"],["2024-07-25T07:18:40.010000"],["2024-07-25T07:18:41.010000"],["2024-07-25T07:18:42.010000"],["2024-07-25T07:18:43.010000"],["2024-07-25T07:18:44.010000"],["2024-07-25T07:18:45.010000"],["2024-07-25T07:18:46.010000"],["2024-07-25T07:18:47.010000"],["2024-07-25T07:18:48.010000"],["2024-07-25T07:18:49.010000"],["2024-07-25T07:18:50.010000"],["2024-07-25T07:18:51.010000"],["2024-07-25T07:18:52.010000"],["2024-07-25T07:18:53.010000"],["2024-07-25T07:18:54.010000"],["2024-07-25T07:18:55.010000"],["2024-07-25T07:18:56.010000"],["2024-07-25T07:18:57.010000"],["2024-07-25T07:18:58.010000"],["2024-07-25T07:18:59.010000"],["2024-07-25T07:19:00.010000"],["2024-07-25T07:19:01.010000"],["2024-07-25T07:19:02.010000"],["2024-07-25T07:19:03.010000"],["2024-07-25T07:19:04.010000"],["2024-07-25T07:19:05.010000"],["2024-07-25T07:19:06.010000"],["2024-07-25T07:19:07.010000"],["2024-07-25T07:19:08.010000"],["2024-07-25T07:19:09.010000"],["2024-07-25T07:19:10.010000"],["2024-07-25T07:19:11.010000"],["2024-07-25T07:19:12.010000"],["2024-07-25T07:19:13.010000"],["2024-07-25T07:19:14.010000"],["2024-07-25T07:19:15.010000"],["2024-07-25T07:19:16.010000"],["2024-07-25T07:19:17.010000"],["2024-07-25T07:19:18.010000"],["2024-07-25T07:19:19.010000"],["2024-07-25T07:19:20.010000"],["2024-07-25T07:19:21.010000"],["2024-07-25T07:19:22.010000"],["2024-07-25T07:19:23.010000"],["2024-07-25T07:19:24.010000"],["2024-07-25T07:19:25.010000"],["2024-07-25T07:19:26.010000"],["2024-07-25T07:19:27.010000"],["2024-07-25T07:19:28.010000"],["2024-07-25T07:19:29.010000"],["2024-07-25T07:19:30.010000"],["2024-07-25T07:19:31.010000"],["2024-07-25T07:19:32.010000"],["2024-07-25T07:19:33.010000"],["2024-07-25T07:19:34.010000"],["2024-07-25T07:19:35.010000"],["2024-07-25T07:19:36.010000"],["2024-07-25T07:19:37.010000"],["2024-07-25T07:19:38.010000"],["2024-07-25T07:19:39.010000"],["2024-07-25T07:19:40.010000"],["2024-07-25T07:19:41.010000"],["2024-07-25T07:19:42.010000"],["2024-07-25T07:19:43.010000"],["2024-07-25T07:19:44.010000"],["2024-07-25T07:19:45.010000"],["2024-07-25T07:19:46.010000"],["2024-07-25T07:19:47.010000"],["2024-07-25T07:19:48.010000"],["2024-07-25T07:19:49.010000"],["2024-07-25T07:19:50.010000"],["2024-07-25T07:19:51.010000"],["2024-07-25T07:19:52.010000"],["2024-07-25T07:19:53.010000"],["2024-07-25T07:19:54.010000"],["2024-07-25T07:19:55.010000"],["2024-07-25T07:19:56.010000"],["2024-07-25T07:19:57.010000"],["2024-07-25T07:19:58.010000"],["2024-07-25T07:19:59.010000"],["2024-07-25T07:20:00.010000"],["2024-07-25T07:20:01.010000"],["2024-07-25T07:20:02.010000"],["2024-07-25T07:20:03.010000"],["2024-07-25T07:20:04.010000"],["2024-07-25T07:20:05.010000"],["2024-07-25T07:20:06.010000"],["2024-07-25T07:20:07.010000"],["2024-07-25T07:20:08.010000"],["2024-07-25T07:20:09.010000"],["2024-07-25T07:20:10.010000"],["2024-07-25T07:20:11.010000"],["2024-07-25T07:20:12.010000"],["2024-07-25T07:20:13.010000"],["2024-07-25T07:20:14.010000"],["2024-07-25T07:20:15.010000"],["2024-07-25T07:20:16.010000"],["2024-07-25T07:20:17.010000"],["2024-07-25T07:20:18.010000"],["2024-07-25T07:20:19.010000"],["2024-07-25T07:20:20.010000"],["2024-07-25T07:20:21.010000"],["2024-07-25T07:20:22.010000"],["2024-07-25T07:20:23.010000"],["2024-07-25T07:20:24.010000"],["2024-07-25T07:20:25.010000"],["2024-07-25T07:20:26.010000"],["2024-07-25T07:20:27.010000"],["2024-07-25T07:20:28.010000"],["2024-07-25T07:20:29.010000"],["2024-07-25T07:20:30.010000"],["2024-07-25T07:20:31.010000"],["2024-07-25T07:20:32.010000"],["2024-07-25T07:20:33.010000"],["2024-07-25T07:20:34.010000"],["2024-07-25T07:20:35.010000"],["2024-07-25T07:20:36.010000"],["2024-07-25T07:20:37.010000"],["2024-07-25T07:20:38.010000"],["2024-07-25T07:20:39.010000"],["2024-07-25T07:20:40.010000"],["2024-07-25T07:20:41.010000"],["2024-07-25T07:20:42.010000"],["2024-07-25T07:20:43.010000"],["2024-07-25T07:20:44.010000"],["2024-07-25T07:20:45.010000"],["2024-07-25T07:20:46.010000"],["2024-07-25T07:20:47.010000"],["2024-07-25T07:20:48.010000"],["2024-07-25T07:20:49.010000"],["2024-07-25T07:20:50.010000"],["2024-07-25T07:20:51.010000"],["2024-07-25T07:20:52.010000"],["2024-07-25T07:20:53.010000"],["2024-07-25T07:20:54.010000"],["2024-07-25T07:20:55.010000"],["2024-07-25T07:20:56.010000"],["2024-07-25T07:20:57.010000"],["2024-07-25T07:20:58.010000"],["2024-07-25T07:20:59.010000"],["2024-07-25T07:21:00.010000"],["2024-07-25T07:21:01.010000"],["2024-07-25T07:21:02.010000"],["2024-07-25T07:21:03.010000"],["2024-07-25T07:21:04.010000"],["2024-07-25T07:21:05.010000"],["2024-07-25T07:21:06.010000"],["2024-07-25T07:21:07.010000"],["2024-07-25T07:21:08.010000"],["2024-07-25T07:21:09.010000"],["2024-07-25T07:21:10.010000"],["2024-07-25T07:21:11.010000"],["2024-07-25T07:21:12.010000"],["2024-07-25T07:21:13.010000"],["2024-07-25T07:21:14.010000"],["2024-07-25T07:21:15.010000"],["2024-07-25T07:21:16.010000"],["2024-07-25T07:21:17.010000"],["2024-07-25T07:21:18.010000"],["2024-07-25T07:21:19.010000"],["2024-07-25T07:21:20.010000"],["2024-07-25T07:21:21.010000"],["2024-07-25T07:21:22.010000"],["2024-07-25T07:21:23.010000"],["2024-07-25T07:21:24.010000"],["2024-07-25T07:21:25.010000"],["2024-07-25T07:21:26.010000"],["2024-07-25T07:21:27.010000"],["2024-07-25T07:21:28.010000"],["2024-07-25T07:21:29.010000"],["2024-07-25T07:21:30.010000"],["2024-07-25T07:21:31.010000"],["2024-07-25T07:21:32.010000"],["2024-07-25T07:21:33.010000"],["2024-07-25T07:21:34.010000"],["2024-07-25T07:21:35.010000"],["2024-07-25T07:21:36.010000"],["2024-07-25T07:21:37.010000"],["2024-07-25T07:21:38.010000"],["2024-07-25T07:21:39.010000"],["2024-07-25T07:21:40.010000"],["2024-07-25T07:21:41.010000"],["2024-07-25T07:21:42.010000"],["2024-07-25T07:21:43.010000"],["2024-07-25T07:21:44.010000"],["2024-07-25T07:21:45.010000"],["2024-07-25T07:21:46.010000"],["2024-07-25T07:21:47.010000"],["2024-07-25T07:21:48.010000"],["2024-07-25T07:21:49.010000"],["2024-07-25T07:21:50.010000"],["2024-07-25T07:21:51.010000"],["2024-07-25T07:21:52.010000"],["2024-07-25T07:21:53.010000"],["2024-07-25T07:21:54.010000"],["2024-07-25T07:21:55.010000"],["2024-07-25T07:21:56.010000"],["2024-07-25T07:21:57.010000"],["2024-07-25T07:21:58.010000"],["2024-07-25T07:21:59.010000"],["2024-07-25T07:22:00.010000"],["2024-07-25T07:22:01.010000"],["2024-07-25T07:22:02.010000"],["2024-07-25T07:22:03.010000"],["2024-07-25T07:22:04.010000"],["2024-07-25T07:22:05.010000"],["2024-07-25T07:22:06.010000"],["2024-07-25T07:22:07.010000"],["2024-07-25T07:22:08.010000"],["2024-07-25T07:22:09.010000"],["2024-07-25T07:22:10.010000"],["2024-07-25T07:22:11.010000"],["2024-07-25T07:22:12.010000"],["2024-07-25T07:22:13.010000"],["2024-07-25T07:22:14.010000"],["2024-07-25T07:22:15.010000"],["2024-07-25T07:22:16.010000"],["2024-07-25T07:22:17.010000"],["2024-07-25T07:22:18.010000"],["2024-07-25T07:22:19.010000"],["2024-07-25T07:22:20.010000"],["2024-07-25T07:22:21.010000"],["2024-07-25T07:22:22.010000"],["2024-07-25T07:22:23.010000"],["2024-07-25T07:22:24.010000"],["2024-07-25T07:22:25.010000"],["2024-07-25T07:22:26.010000"],["2024-07-25T07:22:27.010000"],["2024-07-25T07:22:28.010000"],["2024-07-25T07:22:29.010000"],["2024-07-25T07:22:30.010000"],["2024-07-25T07:22:31.010000"],["2024-07-25T07:22:32.010000"],["2024-07-25T07:22:33.010000"],["2024-07-25T07:22:34.010000"],["2024-07-25T07:22:35.010000"],["2024-07-25T07:22:36.010000"],["2024-07-25T07:22:37.010000"],["2024-07-25T07:22:38.010000"],["2024-07-25T07:22:39.010000"],["2024-07-25T07:22:40.010000"],["2024-07-25T07:22:41.010000"],["2024-07-25T07:22:42.010000"],["2024-07-25T07:22:43.010000"],["2024-07-25T07:22:44.010000"],["2024-07-25T07:22:45.010000"],["2024-07-25T07:22:46.010000"],["2024-07-25T07:22:47.010000"],["2024-07-25T07:22:48.010000"],["2024-07-25T07:22:49.010000"],["2024-07-25T07:22:50.010000"],["2024-07-25T07:22:51.010000"],["2024-07-25T07:22:52.010000"],["2024-07-25T07:22:53.010000"],["2024-07-25T07:22:54.010000"],["2024-07-25T07:22:55.010000"],["2024-07-25T07:22:56.010000"],["2024-07-25T07:22:57.010000"],["2024-07-25T07:22:58.010000"],["2024-07-25T07:22:59.010000"],["2024-07-25T07:23:00.010000"],["2024-07-25T07:23:01.010000"],["2024-07-25T07:23:02.010000"],["2024-07-25T07:23:03.010000"],["2024-07-25T07:23:04.010000"],["2024-07-25T07:23:05.010000"],["2024-07-25T07:23:06.010000"],["2024-07-25T07:23:07.010000"],["2024-07-25T07:23:08.010000"],["2024-07-25T07:23:09.010000"],["2024-07-25T07:23:10.010000"],["2024-07-25T07:23:11.010000"],["2024-07-25T07:23:12.010000"],["2024-07-25T07:23:13.010000"],["2024-07-25T07:23:14.010000"],["2024-07-25T07:23:15.010000"],["2024-07-25T07:23:16.010000"],["2024-07-25T07:23:17.010000"],["2024-07-25T07:23:18.010000"],["2024-07-25T07:23:19.010000"],["2024-07-25T07:23:20.010000"],["2024-07-25T07:23:21.010000"],["2024-07-25T07:23:22.010000"],["2024-07-25T07:23:23.010000"],["2024-07-25T07:23:24.010000"],["2024-07-25T07:23:25.010000"],["2024-07-25T07:23:26.010000"],["2024-07-25T07:23:27.010000"],["2024-07-25T07:23:28.010000"],["2024-07-25T07:23:29.010000"],["2024-07-25T07:23:30.010000"],["2024-07-25T07:23:31.010000"],["2024-07-25T07:23:32.010000"],["2024-07-25T07:23:33.010000"],["2024-07-25T07:23:34.010000"],["2024-07-25T07:23:35.010000"],["2024-07-25T07:23:36.010000"],["2024-07-25T07:23:37.010000"],["2024-07-25T07:23:38.010000"],["2024-07-25T07:23:39.010000"],["2024-07-25T07:23:40.010000"],["2024-07-25T07:23:41.010000"],["2024-07-25T07:23:42.010000"],["2024-07-25T07:23:43.010000"],["2024-07-25T07:23:44.010000"],["2024-07-25T07:23:45.010000"],["2024-07-25T07:23:46.010000"],["2024-07-25T07:23:47.010000"],["2024-07-25T07:23:48.010000"],["2024-07-25T07:23:49.010000"],["2024-07-25T07:23:50.010000"],["2024-07-25T07:23:51.010000"],["2024-07-25T07:23:52.010000"],["2024-07-25T07:23:53.010000"],["2024-07-25T07:23:54.010000"],["2024-07-25T07:23:55.010000"],["2024-07-25T07:23:56.010000"],["2024-07-25T07:23:57.010000"],["2024-07-25T07:23:58.010000"],["2024-07-25T07:23:59.010000"],["2024-07-25T07:24:00.010000"],["2024-07-25T07:24:01.010000"],["2024-07-25T07:24:02.010000"],["2024-07-25T07:24:03.010000"],["2024-07-25T07:24:04.010000"],["2024-07-25T07:24:05.010000"],["2024-07-25T07:24:06.010000"],["2024-07-25T07:24:07.010000"],["2024-07-25T07:24:08.010000"],["2024-07-25T07:24:09.010000"],["2024-07-25T07:24:10.010000"],["2024-07-25T07:24:11.010000"],["2024-07-25T07:24:12.010000"],["2024-07-25T07:24:13.010000"],["2024-07-25T07:24:14.010000"],["2024-07-25T07:24:15.010000"],["2024-07-25T07:24:16.010000"],["2024-07-25T07:24:17.010000"],["2024-07-25T07:24:18.010000"],["2024-07-25T07:24:19.010000"],["2024-07-25T07:24:20.010000"],["2024-07-25T07:24:21.010000"],["2024-07-25T07:24:22.010000"],["2024-07-25T07:24:23.010000"],["2024-07-25T07:24:24.010000"],["2024-07-25T07:24:25.010000"],["2024-07-25T07:24:26.010000"],["2024-07-25T07:24:27.010000"],["2024-07-25T07:24:28.010000"],["2024-07-25T07:24:29.010000"],["2024-07-25T07:24:30.010000"],["2024-07-25T07:24:31.010000"],["2024-07-25T07:24:32.010000"],["2024-07-25T07:24:33.010000"],["2024-07-25T07:24:34.010000"],["2024-07-25T07:24:35.010000"],["2024-07-25T07:24:36.010000"],["2024-07-25T07:24:37.010000"],["2024-07-25T07:24:38.010000"],["2024-07-25T07:24:39.010000"],["2024-07-25T07:24:40.010000"],["2024-07-25T07:24:41.010000"],["2024-07-25T07:24:42.010000"],["2024-07-25T07:24:43.010000"],["2024-07-25T07:24:44.010000"],["2024-07-25T07:24:45.010000"],["2024-07-25T07:24:46.010000"],["2024-07-25T07:24:47.010000"],["2024-07-25T07:24:48.010000"],["2024-07-25T07:24:49.010000"],["2024-07-25T07:24:50.010000"],["2024-07-25T07:24:51.010000"],["2024-07-25T07:24:52.010000"],["2024-07-25T07:24:53.010000"],["2024-07-25T07:24:54.010000"],["2024-07-25T07:24:55.010000"],["2024-07-25T07:24:56.010000"],["2024-07-25T07:24:57.010000"],["2024-07-25T07:24:58.010000"],["2024-07-25T07:24:59.010000"],["2024-07-25T07:25:00.010000"],["2024-07-25T07:25:01.010000"],["2024-07-25T07:25:02.010000"],["2024-07-25T07:25:03.010000"],["2024-07-25T07:25:04.010000"],["2024-07-25T07:25:05.010000"],["2024-07-25T07:25:06.010000"],["2024-07-25T07:25:07.010000"],["2024-07-25T07:25:08.010000"],["2024-07-25T07:25:09.010000"],["2024-07-25T07:25:10.010000"],["2024-07-25T07:25:11.010000"],["2024-07-25T07:25:12.010000"],["2024-07-25T07:25:13.010000"],["2024-07-25T07:25:14.010000"],["2024-07-25T07:25:15.010000"],["2024-07-25T07:25:16.010000"],["2024-07-25T07:25:17.010000"],["2024-07-25T07:25:18.010000"],["2024-07-25T07:25:19.010000"],["2024-07-25T07:25:20.010000"],["2024-07-25T07:25:21.010000"],["2024-07-25T07:25:22.010000"],["2024-07-25T07:25:23.010000"],["2024-07-25T07:25:24.010000"],["2024-07-25T07:25:25.010000"],["2024-07-25T07:25:26.010000"],["2024-07-25T07:25:27.010000"],["2024-07-25T07:25:28.010000"],["2024-07-25T07:25:29.010000"],["2024-07-25T07:25:30.010000"],["2024-07-25T07:25:31.010000"],["2024-07-25T07:25:32.010000"],["2024-07-25T07:25:33.010000"],["2024-07-25T07:25:34.010000"],["2024-07-25T07:25:35.010000"],["2024-07-25T07:25:36.010000"],["2024-07-25T07:25:37.010000"],["2024-07-25T07:25:38.010000"],["2024-07-25T07:25:39.010000"],["2024-07-25T07:25:40.010000"],["2024-07-25T07:25:41.010000"],["2024-07-25T07:25:42.010000"],["2024-07-25T07:25:43.010000"],["2024-07-25T07:25:44.010000"],["2024-07-25T07:25:45.010000"],["2024-07-25T07:25:46.010000"],["2024-07-25T07:25:47.010000"],["2024-07-25T07:25:48.010000"],["2024-07-25T07:25:49.010000"],["2024-07-25T07:25:50.010000"],["2024-07-25T07:25:51.010000"],["2024-07-25T07:25:52.010000"],["2024-07-25T07:25:53.010000"],["2024-07-25T07:25:54.010000"],["2024-07-25T07:25:55.010000"],["2024-07-25T07:25:56.010000"],["2024-07-25T07:25:57.010000"],["2024-07-25T07:25:58.010000"],["2024-07-25T07:25:59.010000"],["2024-07-25T07:26:00.010000"],["2024-07-25T07:26:01.010000"],["2024-07-25T07:26:02.010000"],["2024-07-25T07:26:03.010000"],["2024-07-25T07:26:04.010000"],["2024-07-25T07:26:05.010000"],["2024-07-25T07:26:06.010000"],["2024-07-25T07:26:07.010000"],["2024-07-25T07:26:08.010000"],["2024-07-25T07:26:09.010000"],["2024-07-25T07:26:10.010000"],["2024-07-25T07:26:11.010000"],["2024-07-25T07:26:12.010000"],["2024-07-25T07:26:13.010000"],["2024-07-25T07:26:14.010000"],["2024-07-25T07:26:15.010000"],["2024-07-25T07:26:16.010000"],["2024-07-25T07:26:17.010000"],["2024-07-25T07:26:18.010000"],["2024-07-25T07:26:19.010000"],["2024-07-25T07:26:20.010000"],["2024-07-25T07:26:21.010000"],["2024-07-25T07:26:22.010000"],["2024-07-25T07:26:23.010000"],["2024-07-25T07:26:24.010000"],["2024-07-25T07:26:25.010000"],["2024-07-25T07:26:26.010000"],["2024-07-25T07:26:27.010000"],["2024-07-25T07:26:28.010000"],["2024-07-25T07:26:29.010000"],["2024-07-25T07:26:30.010000"],["2024-07-25T07:26:31.010000"],["2024-07-25T07:26:32.010000"],["2024-07-25T07:26:33.010000"],["2024-07-25T07:26:34.010000"],["2024-07-25T07:26:35.010000"],["2024-07-25T07:26:36.010000"],["2024-07-25T07:26:37.010000"],["2024-07-25T07:26:38.010000"],["2024-07-25T07:26:39.010000"],["2024-07-25T07:26:40.010000"],["2024-07-25T07:26:41.010000"],["2024-07-25T07:26:42.010000"],["2024-07-25T07:26:43.010000"],["2024-07-25T07:26:44.010000"],["2024-07-25T07:26:45.010000"],["2024-07-25T07:26:46.010000"],["2024-07-25T07:26:47.010000"],["2024-07-25T07:26:48.010000"],["2024-07-25T07:26:49.010000"],["2024-07-25T07:26:50.010000"],["2024-07-25T07:26:51.010000"],["2024-07-25T07:26:52.010000"],["2024-07-25T07:26:53.010000"],["2024-07-25T07:26:54.010000"],["2024-07-25T07:26:55.010000"],["2024-07-25T07:26:56.010000"],["2024-07-25T07:26:57.010000"],["2024-07-25T07:26:58.010000"],["2024-07-25T07:26:59.010000"],["2024-07-25T07:27:00.010000"],["2024-07-25T07:27:01.010000"],["2024-07-25T07:27:02.010000"],["2024-07-25T07:27:03.010000"],["2024-07-25T07:27:04.010000"],["2024-07-25T07:27:05.010000"],["2024-07-25T07:27:06.010000"],["2024-07-25T07:27:07.010000"],["2024-07-25T07:27:08.010000"],["2024-07-25T07:27:09.010000"],["2024-07-25T07:27:10.010000"],["2024-07-25T07:27:11.010000"],["2024-07-25T07:27:12.010000"],["2024-07-25T07:27:13.010000"],["2024-07-25T07:27:14.010000"],["2024-07-25T07:27:15.010000"],["2024-07-25T07:27:16.010000"],["2024-07-25T07:27:17.010000"],["2024-07-25T07:27:18.010000"],["2024-07-25T07:27:19.010000"],["2024-07-25T07:27:20.010000"],["2024-07-25T07:27:21.010000"],["2024-07-25T07:27:22.010000"],["2024-07-25T07:27:23.010000"],["2024-07-25T07:27:24.010000"],["2024-07-25T07:27:25.010000"],["2024-07-25T07:27:26.010000"],["2024-07-25T07:27:27.010000"],["2024-07-25T07:27:28.010000"],["2024-07-25T07:27:29.010000"],["2024-07-25T07:27:30.010000"],["2024-07-25T07:27:31.010000"],["2024-07-25T07:27:32.010000"],["2024-07-25T07:27:33.010000"],["2024-07-25T07:27:34.010000"],["2024-07-25T07:27:35.010000"],["2024-07-25T07:27:36.010000"],["2024-07-25T07:27:37.010000"],["2024-07-25T07:27:38.010000"],["2024-07-25T07:27:39.010000"],["2024-07-25T07:27:40.010000"],["2024-07-25T07:27:41.010000"],["2024-07-25T07:27:42.010000"],["2024-07-25T07:27:43.010000"],["2024-07-25T07:27:44.010000"],["2024-07-25T07:27:45.010000"],["2024-07-25T07:27:46.010000"],["2024-07-25T07:27:47.010000"],["2024-07-25T07:27:48.010000"],["2024-07-25T07:27:49.010000"],["2024-07-25T07:27:50.010000"],["2024-07-25T07:27:51.010000"],["2024-07-25T07:27:52.010000"],["2024-07-25T07:27:53.010000"],["2024-07-25T07:27:54.010000"],["2024-07-25T07:27:55.010000"],["2024-07-25T07:27:56.010000"],["2024-07-25T07:27:57.010000"],["2024-07-25T07:27:58.010000"],["2024-07-25T07:27:59.010000"],["2024-07-25T07:28:00.010000"],["2024-07-25T07:28:01.010000"],["2024-07-25T07:28:02.010000"],["2024-07-25T07:28:03.010000"],["2024-07-25T07:28:04.010000"],["2024-07-25T07:28:05.010000"],["2024-07-25T07:28:06.010000"],["2024-07-25T07:28:07.010000"],["2024-07-25T07:28:08.010000"],["2024-07-25T07:28:09.010000"],["2024-07-25T07:28:10.010000"],["2024-07-25T07:28:11.010000"],["2024-07-25T07:28:12.010000"],["2024-07-25T07:28:13.010000"],["2024-07-25T07:28:14.010000"],["2024-07-25T07:28:15.010000"],["2024-07-25T07:28:16.010000"],["2024-07-25T07:28:17.010000"],["2024-07-25T07:28:18.010000"],["2024-07-25T07:28:19.010000"],["2024-07-25T07:28:20.010000"],["2024-07-25T07:28:21.010000"],["2024-07-25T07:28:22.010000"],["2024-07-25T07:28:23.010000"],["2024-07-25T07:28:24.010000"],["2024-07-25T07:28:25.010000"],["2024-07-25T07:28:26.010000"],["2024-07-25T07:28:27.010000"],["2024-07-25T07:28:28.010000"],["2024-07-25T07:28:29.010000"],["2024-07-25T07:28:30.010000"],["2024-07-25T07:28:31.010000"],["2024-07-25T07:28:32.010000"],["2024-07-25T07:28:33.010000"],["2024-07-25T07:28:34.010000"],["2024-07-25T07:28:35.010000"],["2024-07-25T07:28:36.010000"],["2024-07-25T07:28:37.010000"],["2024-07-25T07:28:38.010000"],["2024-07-25T07:28:39.010000"],["2024-07-25T07:28:40.010000"],["2024-07-25T07:28:41.010000"],["2024-07-25T07:28:42.010000"],["2024-07-25T07:28:43.010000"],["2024-07-25T07:28:44.010000"],["2024-07-25T07:28:45.010000"],["2024-07-25T07:28:46.010000"],["2024-07-25T07:28:47.010000"],["2024-07-25T07:28:48.010000"],["2024-07-25T07:28:49.010000"],["2024-07-25T07:28:50.010000"],["2024-07-25T07:28:51.010000"],["2024-07-25T07:28:52.010000"],["2024-07-25T07:28:53.010000"],["2024-07-25T07:28:54.010000"],["2024-07-25T07:28:55.010000"],["2024-07-25T07:28:56.010000"],["2024-07-25T07:28:57.010000"],["2024-07-25T07:28:58.010000"],["2024-07-25T07:28:59.010000"],["2024-07-25T07:29:00.010000"],["2024-07-25T07:29:01.010000"],["2024-07-25T07:29:02.010000"],["2024-07-25T07:29:03.010000"],["2024-07-25T07:29:04.010000"],["2024-07-25T07:29:05.010000"],["2024-07-25T07:29:06.010000"],["2024-07-25T07:29:07.010000"],["2024-07-25T07:29:08.010000"],["2024-07-25T07:29:09.010000"],["2024-07-25T07:29:10.010000"],["2024-07-25T07:29:11.010000"],["2024-07-25T07:29:12.010000"],["2024-07-25T07:29:13.010000"],["2024-07-25T07:29:14.010000"],["2024-07-25T07:29:15.010000"],["2024-07-25T07:29:16.010000"],["2024-07-25T07:29:17.010000"],["2024-07-25T07:29:18.010000"],["2024-07-25T07:29:19.010000"],["2024-07-25T07:29:20.010000"],["2024-07-25T07:29:21.010000"],["2024-07-25T07:29:22.010000"],["2024-07-25T07:29:23.010000"],["2024-07-25T07:29:24.010000"],["2024-07-25T07:29:25.010000"],["2024-07-25T07:29:26.010000"],["2024-07-25T07:29:27.010000"],["2024-07-25T07:29:28.010000"],["2024-07-25T07:29:29.010000"],["2024-07-25T07:29:30.010000"],["2024-07-25T07:29:31.010000"],["2024-07-25T07:29:32.010000"],["2024-07-25T07:29:33.010000"],["2024-07-25T07:29:34.010000"],["2024-07-25T07:29:35.010000"],["2024-07-25T07:29:36.010000"],["2024-07-25T07:29:37.010000"],["2024-07-25T07:29:38.010000"],["2024-07-25T07:29:39.010000"],["2024-07-25T07:29:40.010000"],["2024-07-25T07:29:41.010000"],["2024-07-25T07:29:42.010000"],["2024-07-25T07:29:43.010000"],["2024-07-25T07:29:44.010000"],["2024-07-25T07:29:45.010000"],["2024-07-25T07:29:46.010000"],["2024-07-25T07:29:47.010000"],["2024-07-25T07:29:48.010000"],["2024-07-25T07:29:49.010000"],["2024-07-25T07:29:50.010000"],["2024-07-25T07:29:51.010000"],["2024-07-25T07:29:52.010000"],["2024-07-25T07:29:53.010000"],["2024-07-25T07:29:54.010000"],["2024-07-25T07:29:55.010000"],["2024-07-25T07:29:56.010000"],["2024-07-25T07:29:57.010000"],["2024-07-25T07:29:58.010000"],["2024-07-25T07:29:59.010000"],["2024-07-25T07:30:00.010000"],["2024-07-25T07:30:01.010000"],["2024-07-25T07:30:02.010000"],["2024-07-25T07:30:03.010000"],["2024-07-25T07:30:04.010000"],["2024-07-25T07:30:05.010000"],["2024-07-25T07:30:06.010000"],["2024-07-25T07:30:07.010000"],["2024-07-25T07:30:08.010000"],["2024-07-25T07:30:09.010000"],["2024-07-25T07:30:10.010000"],["2024-07-25T07:30:11.010000"],["2024-07-25T07:30:12.010000"],["2024-07-25T07:30:13.010000"],["2024-07-25T07:30:14.010000"],["2024-07-25T07:30:15.010000"],["2024-07-25T07:30:16.010000"],["2024-07-25T07:30:17.010000"],["2024-07-25T07:30:18.010000"],["2024-07-25T07:30:19.010000"],["2024-07-25T07:30:20.010000"],["2024-07-25T07:30:21.010000"],["2024-07-25T07:30:22.010000"],["2024-07-25T07:30:23.010000"],["2024-07-25T07:30:24.010000"],["2024-07-25T07:30:25.010000"],["2024-07-25T07:30:26.010000"],["2024-07-25T07:30:27.010000"],["2024-07-25T07:30:28.010000"],["2024-07-25T07:30:29.010000"],["2024-07-25T07:30:30.010000"],["2024-07-25T07:30:31.010000"],["2024-07-25T07:30:32.010000"],["2024-07-25T07:30:33.010000"],["2024-07-25T07:30:34.010000"],["2024-07-25T07:30:35.010000"],["2024-07-25T07:30:36.010000"],["2024-07-25T07:30:37.010000"],["2024-07-25T07:30:38.010000"],["2024-07-25T07:30:39.010000"],["2024-07-25T07:30:40.010000"],["2024-07-25T07:30:41.010000"],["2024-07-25T07:30:42.010000"],["2024-07-25T07:30:43.010000"],["2024-07-25T07:30:44.010000"],["2024-07-25T07:30:45.010000"],["2024-07-25T07:30:46.010000"],["2024-07-25T07:30:47.010000"],["2024-07-25T07:30:48.010000"],["2024-07-25T07:30:49.010000"],["2024-07-25T07:30:50.010000"],["2024-07-25T07:30:51.010000"],["2024-07-25T07:30:52.010000"],["2024-07-25T07:30:53.010000"],["2024-07-25T07:30:54.010000"],["2024-07-25T07:30:55.010000"],["2024-07-25T07:30:56.010000"],["2024-07-25T07:30:57.010000"],["2024-07-25T07:30:58.010000"],["2024-07-25T07:30:59.010000"],["2024-07-25T07:31:00.010000"],["2024-07-25T07:31:01.010000"],["2024-07-25T07:31:02.010000"],["2024-07-25T07:31:03.010000"],["2024-07-25T07:31:04.010000"],["2024-07-25T07:31:05.010000"],["2024-07-25T07:31:06.010000"],["2024-07-25T07:31:07.010000"],["2024-07-25T07:31:08.010000"],["2024-07-25T07:31:09.010000"],["2024-07-25T07:31:10.010000"],["2024-07-25T07:31:11.010000"],["2024-07-25T07:31:12.010000"],["2024-07-25T07:31:13.010000"],["2024-07-25T07:31:14.010000"],["2024-07-25T07:31:15.010000"],["2024-07-25T07:31:16.010000"],["2024-07-25T07:31:17.010000"],["2024-07-25T07:31:18.010000"],["2024-07-25T07:31:19.010000"],["2024-07-25T07:31:20.010000"],["2024-07-25T07:31:21.010000"],["2024-07-25T07:31:22.010000"],["2024-07-25T07:31:23.010000"],["2024-07-25T07:31:24.010000"],["2024-07-25T07:31:25.010000"],["2024-07-25T07:31:26.010000"],["2024-07-25T07:31:27.010000"],["2024-07-25T07:31:28.010000"],["2024-07-25T07:31:29.010000"],["2024-07-25T07:31:30.010000"],["2024-07-25T07:31:31.010000"],["2024-07-25T07:31:32.010000"],["2024-07-25T07:31:33.010000"],["2024-07-25T07:31:34.010000"],["2024-07-25T07:31:35.010000"],["2024-07-25T07:31:36.010000"],["2024-07-25T07:31:37.010000"],["2024-07-25T07:31:38.010000"],["2024-07-25T07:31:39.010000"],["2024-07-25T07:31:40.010000"],["2024-07-25T07:31:41.010000"],["2024-07-25T07:31:42.010000"],["2024-07-25T07:31:43.010000"],["2024-07-25T07:31:44.010000"],["2024-07-25T07:31:45.010000"],["2024-07-25T07:31:46.010000"],["2024-07-25T07:31:47.010000"],["2024-07-25T07:31:48.010000"],["2024-07-25T07:31:49.010000"],["2024-07-25T07:31:50.010000"],["2024-07-25T07:31:51.010000"],["2024-07-25T07:31:52.010000"],["2024-07-25T07:31:53.010000"],["2024-07-25T07:31:54.010000"],["2024-07-25T07:31:55.010000"],["2024-07-25T07:31:56.010000"],["2024-07-25T07:31:57.010000"],["2024-07-25T07:31:58.010000"],["2024-07-25T07:31:59.010000"],["2024-07-25T07:32:00.010000"],["2024-07-25T07:32:01.010000"],["2024-07-25T07:32:02.010000"],["2024-07-25T07:32:03.010000"],["2024-07-25T07:32:04.010000"],["2024-07-25T07:32:05.010000"],["2024-07-25T07:32:06.010000"],["2024-07-25T07:32:07.010000"],["2024-07-25T07:32:08.010000"],["2024-07-25T07:32:09.010000"],["2024-07-25T07:32:10.010000"],["2024-07-25T07:32:11.010000"],["2024-07-25T07:32:12.010000"],["2024-07-25T07:32:13.010000"],["2024-07-25T07:32:14.010000"],["2024-07-25T07:32:15.010000"],["2024-07-25T07:32:16.010000"],["2024-07-25T07:32:17.010000"],["2024-07-25T07:32:18.010000"],["2024-07-25T07:32:19.010000"],["2024-07-25T07:32:20.010000"],["2024-07-25T07:32:21.010000"],["2024-07-25T07:32:22.010000"],["2024-07-25T07:32:23.010000"],["2024-07-25T07:32:24.010000"],["2024-07-25T07:32:25.010000"],["2024-07-25T07:32:26.010000"],["2024-07-25T07:32:27.010000"],["2024-07-25T07:32:28.010000"],["2024-07-25T07:32:29.010000"],["2024-07-25T07:32:30.010000"],["2024-07-25T07:32:31.010000"],["2024-07-25T07:32:32.010000"],["2024-07-25T07:32:33.010000"],["2024-07-25T07:32:34.010000"],["2024-07-25T07:32:35.010000"],["2024-07-25T07:32:36.010000"],["2024-07-25T07:32:37.010000"],["2024-07-25T07:32:38.010000"],["2024-07-25T07:32:39.010000"],["2024-07-25T07:32:40.010000"],["2024-07-25T07:32:41.010000"],["2024-07-25T07:32:42.010000"],["2024-07-25T07:32:43.010000"],["2024-07-25T07:32:44.010000"],["2024-07-25T07:32:45.010000"],["2024-07-25T07:32:46.010000"],["2024-07-25T07:32:47.010000"],["2024-07-25T07:32:48.010000"],["2024-07-25T07:32:49.010000"],["2024-07-25T07:32:50.010000"],["2024-07-25T07:32:51.010000"],["2024-07-25T07:32:52.010000"],["2024-07-25T07:32:53.010000"],["2024-07-25T07:32:54.010000"],["2024-07-25T07:32:55.010000"],["2024-07-25T07:32:56.010000"],["2024-07-25T07:32:57.010000"],["2024-07-25T07:32:58.010000"],["2024-07-25T07:32:59.010000"],["2024-07-25T07:33:00.010000"],["2024-07-25T07:33:01.010000"],["2024-07-25T07:33:02.010000"],["2024-07-25T07:33:03.010000"],["2024-07-25T07:33:04.010000"],["2024-07-25T07:33:05.010000"],["2024-07-25T07:33:06.010000"],["2024-07-25T07:33:07.010000"],["2024-07-25T07:33:08.010000"],["2024-07-25T07:33:09.010000"],["2024-07-25T07:33:10.010000"],["2024-07-25T07:33:11.010000"],["2024-07-25T07:33:12.010000"],["2024-07-25T07:33:13.010000"],["2024-07-25T07:33:14.010000"],["2024-07-25T07:33:15.010000"],["2024-07-25T07:33:16.010000"],["2024-07-25T07:33:17.010000"],["2024-07-25T07:33:18.010000"],["2024-07-25T07:33:19.010000"],["2024-07-25T07:33:20.010000"],["2024-07-25T07:33:21.010000"],["2024-07-25T07:33:22.010000"],["2024-07-25T07:33:23.010000"],["2024-07-25T07:33:24.010000"],["2024-07-25T07:33:25.010000"],["2024-07-25T07:33:26.010000"],["2024-07-25T07:33:27.010000"],["2024-07-25T07:33:28.010000"],["2024-07-25T07:33:29.010000"],["2024-07-25T07:33:30.010000"],["2024-07-25T07:33:31.010000"],["2024-07-25T07:33:32.010000"],["2024-07-25T07:33:33.010000"],["2024-07-25T07:33:34.010000"],["2024-07-25T07:33:35.010000"],["2024-07-25T07:33:36.010000"],["2024-07-25T07:33:37.010000"],["2024-07-25T07:33:38.010000"],["2024-07-25T07:33:39.010000"],["2024-07-25T07:33:40.010000"],["2024-07-25T07:33:41.010000"],["2024-07-25T07:33:42.010000"],["2024-07-25T07:33:43.010000"],["2024-07-25T07:33:44.010000"],["2024-07-25T07:33:45.010000"],["2024-07-25T07:33:46.010000"],["2024-07-25T07:33:47.010000"],["2024-07-25T07:33:48.010000"],["2024-07-25T07:33:49.010000"],["2024-07-25T07:33:50.010000"],["2024-07-25T07:33:51.010000"],["2024-07-25T07:33:52.010000"],["2024-07-25T07:33:53.010000"],["2024-07-25T07:33:54.010000"],["2024-07-25T07:33:55.010000"],["2024-07-25T07:33:56.010000"],["2024-07-25T07:33:57.010000"],["2024-07-25T07:33:58.010000"],["2024-07-25T07:33:59.010000"],["2024-07-25T07:34:00.010000"],["2024-07-25T07:34:01.010000"],["2024-07-25T07:34:02.010000"],["2024-07-25T07:34:03.010000"],["2024-07-25T07:34:04.010000"],["2024-07-25T07:34:05.010000"],["2024-07-25T07:34:06.010000"],["2024-07-25T07:34:07.010000"],["2024-07-25T07:34:08.010000"],["2024-07-25T07:34:09.010000"],["2024-07-25T07:34:10.010000"],["2024-07-25T07:34:11.010000"],["2024-07-25T07:34:12.010000"],["2024-07-25T07:34:13.010000"],["2024-07-25T07:34:14.010000"],["2024-07-25T07:34:15.010000"],["2024-07-25T07:34:16.010000"],["2024-07-25T07:34:17.010000"],["2024-07-25T07:34:18.010000"],["2024-07-25T07:34:19.010000"],["2024-07-25T07:34:20.010000"],["2024-07-25T07:34:21.010000"],["2024-07-25T07:34:22.010000"],["2024-07-25T07:34:23.010000"],["2024-07-25T07:34:24.010000"],["2024-07-25T07:34:25.010000"],["2024-07-25T07:34:26.010000"],["2024-07-25T07:34:27.010000"],["2024-07-25T07:34:28.010000"],["2024-07-25T07:34:29.010000"],["2024-07-25T07:34:30.010000"],["2024-07-25T07:34:31.010000"],["2024-07-25T07:34:32.010000"],["2024-07-25T07:34:33.010000"],["2024-07-25T07:34:34.010000"],["2024-07-25T07:34:35.010000"],["2024-07-25T07:34:36.010000"],["2024-07-25T07:34:37.010000"],["2024-07-25T07:34:38.010000"],["2024-07-25T07:34:39.010000"],["2024-07-25T07:34:40.010000"],["2024-07-25T07:34:41.010000"],["2024-07-25T07:34:42.010000"],["2024-07-25T07:34:43.010000"],["2024-07-25T07:34:44.010000"],["2024-07-25T07:34:45.010000"],["2024-07-25T07:34:46.010000"],["2024-07-25T07:34:47.010000"],["2024-07-25T07:34:48.010000"],["2024-07-25T07:34:49.010000"],["2024-07-25T07:34:50.010000"],["2024-07-25T07:34:51.010000"],["2024-07-25T07:34:52.010000"],["2024-07-25T07:34:53.010000"],["2024-07-25T07:34:54.010000"],["2024-07-25T07:34:55.010000"],["2024-07-25T07:34:56.010000"],["2024-07-25T07:34:57.010000"],["2024-07-25T07:34:58.010000"],["2024-07-25T07:34:59.010000"],["2024-07-25T07:35:00.010000"],["2024-07-25T07:35:01.010000"],["2024-07-25T07:35:02.010000"],["2024-07-25T07:35:03.010000"],["2024-07-25T07:35:04.010000"],["2024-07-25T07:35:05.010000"],["2024-07-25T07:35:06.010000"],["2024-07-25T07:35:07.010000"],["2024-07-25T07:35:08.010000"],["2024-07-25T07:35:09.010000"],["2024-07-25T07:35:10.010000"],["2024-07-25T07:35:11.010000"],["2024-07-25T07:35:12.010000"],["2024-07-25T07:35:13.010000"],["2024-07-25T07:35:14.010000"],["2024-07-25T07:35:15.010000"],["2024-07-25T07:35:16.010000"],["2024-07-25T07:35:17.010000"],["2024-07-25T07:35:18.010000"],["2024-07-25T07:35:19.010000"],["2024-07-25T07:35:20.010000"],["2024-07-25T07:35:21.010000"],["2024-07-25T07:35:22.010000"],["2024-07-25T07:35:23.010000"],["2024-07-25T07:35:24.010000"],["2024-07-25T07:35:25.010000"],["2024-07-25T07:35:26.010000"],["2024-07-25T07:35:27.010000"],["2024-07-25T07:35:28.010000"],["2024-07-25T07:35:29.010000"],["2024-07-25T07:35:30.010000"],["2024-07-25T07:35:31.010000"],["2024-07-25T07:35:32.010000"],["2024-07-25T07:35:33.010000"],["2024-07-25T07:35:34.010000"],["2024-07-25T07:35:35.010000"],["2024-07-25T07:35:36.010000"],["2024-07-25T07:35:37.010000"],["2024-07-25T07:35:38.010000"],["2024-07-25T07:35:39.010000"],["2024-07-25T07:35:40.010000"],["2024-07-25T07:35:41.010000"],["2024-07-25T07:35:42.010000"],["2024-07-25T07:35:43.010000"],["2024-07-25T07:35:44.010000"],["2024-07-25T07:35:45.010000"],["2024-07-25T07:35:46.010000"],["2024-07-25T07:35:47.010000"],["2024-07-25T07:35:48.010000"],["2024-07-25T07:35:49.010000"],["2024-07-25T07:35:50.010000"],["2024-07-25T07:35:51.010000"],["2024-07-25T07:35:52.010000"],["2024-07-25T07:35:53.010000"],["2024-07-25T07:35:54.010000"],["2024-07-25T07:35:55.010000"],["2024-07-25T07:35:56.010000"],["2024-07-25T07:35:57.010000"],["2024-07-25T07:35:58.010000"],["2024-07-25T07:35:59.010000"],["2024-07-25T07:36:00.010000"],["2024-07-25T07:36:01.010000"],["2024-07-25T07:36:02.010000"],["2024-07-25T07:36:03.010000"],["2024-07-25T07:36:04.010000"],["2024-07-25T07:36:05.010000"],["2024-07-25T07:36:06.010000"],["2024-07-25T07:36:07.010000"],["2024-07-25T07:36:08.010000"],["2024-07-25T07:36:09.010000"],["2024-07-25T07:36:10.010000"],["2024-07-25T07:36:11.010000"],["2024-07-25T07:36:12.010000"],["2024-07-25T07:36:13.010000"],["2024-07-25T07:36:14.010000"],["2024-07-25T07:36:15.010000"],["2024-07-25T07:36:16.010000"],["2024-07-25T07:36:17.010000"],["2024-07-25T07:36:18.010000"],["2024-07-25T07:36:19.010000"],["2024-07-25T07:36:20.010000"],["2024-07-25T07:36:21.010000"],["2024-07-25T07:36:22.010000"],["2024-07-25T07:36:23.010000"],["2024-07-25T07:36:24.010000"],["2024-07-25T07:36:25.010000"],["2024-07-25T07:36:26.010000"],["2024-07-25T07:36:27.010000"],["2024-07-25T07:36:28.010000"],["2024-07-25T07:36:29.010000"],["2024-07-25T07:36:30.010000"],["2024-07-25T07:36:31.010000"],["2024-07-25T07:36:32.010000"],["2024-07-25T07:36:33.010000"],["2024-07-25T07:36:34.010000"],["2024-07-25T07:36:35.010000"],["2024-07-25T07:36:36.010000"],["2024-07-25T07:36:37.010000"],["2024-07-25T07:36:38.010000"],["2024-07-25T07:36:39.010000"],["2024-07-25T07:36:40.010000"],["2024-07-25T07:36:41.010000"],["2024-07-25T07:36:42.010000"],["2024-07-25T07:36:43.010000"],["2024-07-25T07:36:44.010000"],["2024-07-25T07:36:45.010000"],["2024-07-25T07:36:46.010000"],["2024-07-25T07:36:47.010000"],["2024-07-25T07:36:48.010000"],["2024-07-25T07:36:49.010000"],["2024-07-25T07:36:50.010000"],["2024-07-25T07:36:51.010000"],["2024-07-25T07:36:52.010000"],["2024-07-25T07:36:53.010000"],["2024-07-25T07:36:54.010000"],["2024-07-25T07:36:55.010000"],["2024-07-25T07:36:56.010000"],["2024-07-25T07:36:57.010000"],["2024-07-25T07:36:58.010000"],["2024-07-25T07:36:59.010000"],["2024-07-25T07:37:00.010000"],["2024-07-25T07:37:01.010000"],["2024-07-25T07:37:02.010000"],["2024-07-25T07:37:03.010000"],["2024-07-25T07:37:04.010000"],["2024-07-25T07:37:05.010000"],["2024-07-25T07:37:06.010000"],["2024-07-25T07:37:07.010000"],["2024-07-25T07:37:08.010000"],["2024-07-25T07:37:09.010000"],["2024-07-25T07:37:10.010000"],["2024-07-25T07:37:11.010000"],["2024-07-25T07:37:12.010000"],["2024-07-25T07:37:13.010000"],["2024-07-25T07:37:14.010000"],["2024-07-25T07:37:15.010000"],["2024-07-25T07:37:16.010000"],["2024-07-25T07:37:17.010000"],["2024-07-25T07:37:18.010000"],["2024-07-25T07:37:19.010000"],["2024-07-25T07:37:20.010000"],["2024-07-25T07:37:21.010000"],["2024-07-25T07:37:22.010000"],["2024-07-25T07:37:23.010000"],["2024-07-25T07:37:24.010000"],["2024-07-25T07:37:25.010000"],["2024-07-25T07:37:26.010000"],["2024-07-25T07:37:27.010000"],["2024-07-25T07:37:28.010000"],["2024-07-25T07:37:29.010000"],["2024-07-25T07:37:30.010000"],["2024-07-25T07:37:31.010000"],["2024-07-25T07:37:32.010000"],["2024-07-25T07:37:33.010000"],["2024-07-25T07:37:34.010000"],["2024-07-25T07:37:35.010000"],["2024-07-25T07:37:36.010000"],["2024-07-25T07:37:37.010000"],["2024-07-25T07:37:38.010000"],["2024-07-25T07:37:39.010000"],["2024-07-25T07:37:40.010000"],["2024-07-25T07:37:41.010000"],["2024-07-25T07:37:42.010000"],["2024-07-25T07:37:43.010000"],["2024-07-25T07:37:44.010000"],["2024-07-25T07:37:45.010000"],["2024-07-25T07:37:46.010000"],["2024-07-25T07:37:47.010000"],["2024-07-25T07:37:48.010000"],["2024-07-25T07:37:49.010000"],["2024-07-25T07:37:50.010000"],["2024-07-25T07:37:51.010000"],["2024-07-25T07:37:52.010000"],["2024-07-25T07:37:53.010000"],["2024-07-25T07:37:54.010000"],["2024-07-25T07:37:55.010000"],["2024-07-25T07:37:56.010000"],["2024-07-25T07:37:57.010000"],["2024-07-25T07:37:58.010000"],["2024-07-25T07:37:59.010000"],["2024-07-25T07:38:00.010000"],["2024-07-25T07:38:01.010000"],["2024-07-25T07:38:02.010000"],["2024-07-25T07:38:03.010000"],["2024-07-25T07:38:04.010000"],["2024-07-25T07:38:05.010000"],["2024-07-25T07:38:06.010000"],["2024-07-25T07:38:07.010000"],["2024-07-25T07:38:08.010000"],["2024-07-25T07:38:09.010000"],["2024-07-25T07:38:10.010000"],["2024-07-25T07:38:11.010000"],["2024-07-25T07:38:12.010000"],["2024-07-25T07:38:13.010000"],["2024-07-25T07:38:14.010000"],["2024-07-25T07:38:15.010000"],["2024-07-25T07:38:16.010000"],["2024-07-25T07:38:17.010000"],["2024-07-25T07:38:18.010000"],["2024-07-25T07:38:19.010000"],["2024-07-25T07:38:20.010000"],["2024-07-25T07:38:21.010000"],["2024-07-25T07:38:22.010000"],["2024-07-25T07:38:23.010000"],["2024-07-25T07:38:24.010000"],["2024-07-25T07:38:25.010000"],["2024-07-25T07:38:26.010000"],["2024-07-25T07:38:27.010000"],["2024-07-25T07:38:28.010000"],["2024-07-25T07:38:29.010000"],["2024-07-25T07:38:30.010000"],["2024-07-25T07:38:31.010000"],["2024-07-25T07:38:32.010000"],["2024-07-25T07:38:33.010000"],["2024-07-25T07:38:34.010000"],["2024-07-25T07:38:35.010000"],["2024-07-25T07:38:36.010000"],["2024-07-25T07:38:37.010000"],["2024-07-25T07:38:38.010000"],["2024-07-25T07:38:39.010000"],["2024-07-25T07:38:40.010000"],["2024-07-25T07:38:41.010000"],["2024-07-25T07:38:42.010000"],["2024-07-25T07:38:43.010000"],["2024-07-25T07:38:44.010000"],["2024-07-25T07:38:45.010000"],["2024-07-25T07:38:46.010000"],["2024-07-25T07:38:47.010000"],["2024-07-25T07:38:48.010000"],["2024-07-25T07:38:49.010000"],["2024-07-25T07:38:50.010000"],["2024-07-25T07:38:51.010000"],["2024-07-25T07:38:52.010000"],["2024-07-25T07:38:53.010000"],["2024-07-25T07:38:54.010000"],["2024-07-25T07:38:55.010000"],["2024-07-25T07:38:56.010000"],["2024-07-25T07:38:57.010000"],["2024-07-25T07:38:58.010000"],["2024-07-25T07:38:59.010000"],["2024-07-25T07:39:00.010000"],["2024-07-25T07:39:01.010000"],["2024-07-25T07:39:02.010000"],["2024-07-25T07:39:03.010000"],["2024-07-25T07:39:04.010000"],["2024-07-25T07:39:05.010000"],["2024-07-25T07:39:06.010000"],["2024-07-25T07:39:07.010000"],["2024-07-25T07:39:08.010000"],["2024-07-25T07:39:09.010000"],["2024-07-25T07:39:10.010000"],["2024-07-25T07:39:11.010000"],["2024-07-25T07:39:12.010000"],["2024-07-25T07:39:13.010000"],["2024-07-25T07:39:14.010000"],["2024-07-25T07:39:15.010000"],["2024-07-25T07:39:16.010000"],["2024-07-25T07:39:17.010000"],["2024-07-25T07:39:18.010000"],["2024-07-25T07:39:19.010000"],["2024-07-25T07:39:20.010000"],["2024-07-25T07:39:21.010000"],["2024-07-25T07:39:22.010000"],["2024-07-25T07:39:23.010000"],["2024-07-25T07:39:24.010000"],["2024-07-25T07:39:25.010000"],["2024-07-25T07:39:26.010000"],["2024-07-25T07:39:27.010000"],["2024-07-25T07:39:28.010000"],["2024-07-25T07:39:29.010000"],["2024-07-25T07:39:30.010000"],["2024-07-25T07:39:31.010000"],["2024-07-25T07:39:32.010000"],["2024-07-25T07:39:33.010000"],["2024-07-25T07:39:34.010000"],["2024-07-25T07:39:35.010000"],["2024-07-25T07:39:36.010000"],["2024-07-25T07:39:37.010000"],["2024-07-25T07:39:38.010000"],["2024-07-25T07:39:39.010000"],["2024-07-25T07:39:40.010000"],["2024-07-25T07:39:41.010000"],["2024-07-25T07:39:42.010000"],["2024-07-25T07:39:43.010000"],["2024-07-25T07:39:44.010000"],["2024-07-25T07:39:45.010000"],["2024-07-25T07:39:46.010000"],["2024-07-25T07:39:47.010000"],["2024-07-25T07:39:48.010000"],["2024-07-25T07:39:49.010000"],["2024-07-25T07:39:50.010000"],["2024-07-25T07:39:51.010000"],["2024-07-25T07:39:52.010000"],["2024-07-25T07:39:53.010000"],["2024-07-25T07:39:54.010000"],["2024-07-25T07:39:55.010000"],["2024-07-25T07:39:56.010000"],["2024-07-25T07:39:57.010000"],["2024-07-25T07:39:58.010000"],["2024-07-25T07:39:59.010000"],["2024-07-25T07:40:00.010000"],["2024-07-25T07:40:01.010000"],["2024-07-25T07:40:02.010000"],["2024-07-25T07:40:03.010000"],["2024-07-25T07:40:04.010000"],["2024-07-25T07:40:05.010000"],["2024-07-25T07:40:06.010000"],["2024-07-25T07:40:07.010000"],["2024-07-25T07:40:08.010000"],["2024-07-25T07:40:09.010000"],["2024-07-25T07:40:10.010000"],["2024-07-25T07:40:11.010000"],["2024-07-25T07:40:12.010000"],["2024-07-25T07:40:13.010000"],["2024-07-25T07:40:14.010000"],["2024-07-25T07:40:15.010000"],["2024-07-25T07:40:16.010000"],["2024-07-25T07:40:17.010000"],["2024-07-25T07:40:18.010000"],["2024-07-25T07:40:19.010000"],["2024-07-25T07:40:20.010000"],["2024-07-25T07:40:21.010000"],["2024-07-25T07:40:22.010000"],["2024-07-25T07:40:23.010000"],["2024-07-25T07:40:24.010000"],["2024-07-25T07:40:25.010000"],["2024-07-25T07:40:26.010000"],["2024-07-25T07:40:27.010000"],["2024-07-25T07:40:28.010000"],["2024-07-25T07:40:29.010000"],["2024-07-25T07:40:30.010000"],["2024-07-25T07:40:31.010000"],["2024-07-25T07:40:32.010000"],["2024-07-25T07:40:33.010000"],["2024-07-25T07:40:34.010000"],["2024-07-25T07:40:35.010000"],["2024-07-25T07:40:36.010000"],["2024-07-25T07:40:37.010000"],["2024-07-25T07:40:38.010000"],["2024-07-25T07:40:39.010000"],["2024-07-25T07:40:40.010000"],["2024-07-25T07:40:41.010000"],["2024-07-25T07:40:42.010000"],["2024-07-25T07:40:43.010000"],["2024-07-25T07:40:44.010000"],["2024-07-25T07:40:45.010000"],["2024-07-25T07:40:46.010000"],["2024-07-25T07:40:47.010000"],["2024-07-25T07:40:48.010000"],["2024-07-25T07:40:49.010000"],["2024-07-25T07:40:50.010000"],["2024-07-25T07:40:51.010000"],["2024-07-25T07:40:52.010000"],["2024-07-25T07:40:53.010000"],["2024-07-25T07:40:54.010000"],["2024-07-25T07:40:55.010000"],["2024-07-25T07:40:56.010000"],["2024-07-25T07:40:57.010000"],["2024-07-25T07:40:58.010000"],["2024-07-25T07:40:59.010000"],["2024-07-25T07:41:00.010000"],["2024-07-25T07:41:01.010000"],["2024-07-25T07:41:02.010000"],["2024-07-25T07:41:03.010000"],["2024-07-25T07:41:04.010000"],["2024-07-25T07:41:05.010000"],["2024-07-25T07:41:06.010000"],["2024-07-25T07:41:07.010000"],["2024-07-25T07:41:08.010000"],["2024-07-25T07:41:09.010000"],["2024-07-25T07:41:10.010000"],["2024-07-25T07:41:11.010000"],["2024-07-25T07:41:12.010000"],["2024-07-25T07:41:13.010000"],["2024-07-25T07:41:14.010000"],["2024-07-25T07:41:15.010000"],["2024-07-25T07:41:16.010000"],["2024-07-25T07:41:17.010000"],["2024-07-25T07:41:18.010000"],["2024-07-25T07:41:19.010000"],["2024-07-25T07:41:20.010000"],["2024-07-25T07:41:21.010000"],["2024-07-25T07:41:22.010000"],["2024-07-25T07:41:23.010000"],["2024-07-25T07:41:24.010000"],["2024-07-25T07:41:25.010000"],["2024-07-25T07:41:26.010000"],["2024-07-25T07:41:27.010000"],["2024-07-25T07:41:28.010000"],["2024-07-25T07:41:29.010000"],["2024-07-25T07:41:30.010000"],["2024-07-25T07:41:31.010000"],["2024-07-25T07:41:32.010000"],["2024-07-25T07:41:33.010000"],["2024-07-25T07:41:34.010000"],["2024-07-25T07:41:35.010000"],["2024-07-25T07:41:36.010000"],["2024-07-25T07:41:37.010000"],["2024-07-25T07:41:38.010000"],["2024-07-25T07:41:39.010000"],["2024-07-25T07:41:40.010000"],["2024-07-25T07:41:41.010000"],["2024-07-25T07:41:42.010000"],["2024-07-25T07:41:43.010000"],["2024-07-25T07:41:44.010000"],["2024-07-25T07:41:45.010000"],["2024-07-25T07:41:46.010000"],["2024-07-25T07:41:47.010000"],["2024-07-25T07:41:48.010000"],["2024-07-25T07:41:49.010000"],["2024-07-25T07:41:50.010000"],["2024-07-25T07:41:51.010000"],["2024-07-25T07:41:52.010000"],["2024-07-25T07:41:53.010000"],["2024-07-25T07:41:54.010000"],["2024-07-25T07:41:55.010000"],["2024-07-25T07:41:56.010000"],["2024-07-25T07:41:57.010000"],["2024-07-25T07:41:58.010000"],["2024-07-25T07:41:59.010000"],["2024-07-25T07:42:00.010000"],["2024-07-25T07:42:01.010000"],["2024-07-25T07:42:02.010000"],["2024-07-25T07:42:03.010000"],["2024-07-25T07:42:04.010000"],["2024-07-25T07:42:05.010000"],["2024-07-25T07:42:06.010000"],["2024-07-25T07:42:07.010000"],["2024-07-25T07:42:08.010000"],["2024-07-25T07:42:09.010000"],["2024-07-25T07:42:10.010000"],["2024-07-25T07:42:11.010000"],["2024-07-25T07:42:12.010000"],["2024-07-25T07:42:13.010000"],["2024-07-25T07:42:14.010000"],["2024-07-25T07:42:15.010000"],["2024-07-25T07:42:16.010000"],["2024-07-25T07:42:17.010000"],["2024-07-25T07:42:18.010000"],["2024-07-25T07:42:19.010000"],["2024-07-25T07:42:20.010000"],["2024-07-25T07:42:21.010000"],["2024-07-25T07:42:22.010000"],["2024-07-25T07:42:23.010000"],["2024-07-25T07:42:24.010000"],["2024-07-25T07:42:25.010000"],["2024-07-25T07:42:26.010000"],["2024-07-25T07:42:27.010000"],["2024-07-25T07:42:28.010000"],["2024-07-25T07:42:29.010000"],["2024-07-25T07:42:30.010000"],["2024-07-25T07:42:31.010000"],["2024-07-25T07:42:32.010000"],["2024-07-25T07:42:33.010000"],["2024-07-25T07:42:34.010000"],["2024-07-25T07:42:35.010000"],["2024-07-25T07:42:36.010000"],["2024-07-25T07:42:37.010000"],["2024-07-25T07:42:38.010000"],["2024-07-25T07:42:39.010000"],["2024-07-25T07:42:40.010000"],["2024-07-25T07:42:41.010000"],["2024-07-25T07:42:42.010000"],["2024-07-25T07:42:43.010000"],["2024-07-25T07:42:44.010000"],["2024-07-25T07:42:45.010000"],["2024-07-25T07:42:46.010000"],["2024-07-25T07:42:47.010000"],["2024-07-25T07:42:48.010000"],["2024-07-25T07:42:49.010000"],["2024-07-25T07:42:50.010000"],["2024-07-25T07:42:51.010000"],["2024-07-25T07:42:52.010000"],["2024-07-25T07:42:53.010000"],["2024-07-25T07:42:54.010000"],["2024-07-25T07:42:55.010000"],["2024-07-25T07:42:56.010000"],["2024-07-25T07:42:57.010000"],["2024-07-25T07:42:58.010000"],["2024-07-25T07:42:59.010000"],["2024-07-25T07:43:00.010000"],["2024-07-25T07:43:01.010000"],["2024-07-25T07:43:02.010000"],["2024-07-25T07:43:03.010000"],["2024-07-25T07:43:04.010000"],["2024-07-25T07:43:05.010000"],["2024-07-25T07:43:06.010000"],["2024-07-25T07:43:07.010000"],["2024-07-25T07:43:08.010000"],["2024-07-25T07:43:09.010000"],["2024-07-25T07:43:10.010000"],["2024-07-25T07:43:11.010000"],["2024-07-25T07:43:12.010000"],["2024-07-25T07:43:13.010000"],["2024-07-25T07:43:14.010000"],["2024-07-25T07:43:15.010000"],["2024-07-25T07:43:16.010000"],["2024-07-25T07:43:17.010000"],["2024-07-25T07:43:18.010000"],["2024-07-25T07:43:19.010000"],["2024-07-25T07:43:20.010000"],["2024-07-25T07:43:21.010000"],["2024-07-25T07:43:22.010000"],["2024-07-25T07:43:23.010000"],["2024-07-25T07:43:24.010000"],["2024-07-25T07:43:25.010000"],["2024-07-25T07:43:26.010000"],["2024-07-25T07:43:27.010000"],["2024-07-25T07:43:28.010000"],["2024-07-25T07:43:29.010000"],["2024-07-25T07:43:30.010000"],["2024-07-25T07:43:31.010000"],["2024-07-25T07:43:32.010000"],["2024-07-25T07:43:33.010000"],["2024-07-25T07:43:34.010000"],["2024-07-25T07:43:35.010000"],["2024-07-25T07:43:36.010000"],["2024-07-25T07:43:37.010000"],["2024-07-25T07:43:38.010000"],["2024-07-25T07:43:39.010000"],["2024-07-25T07:43:40.010000"],["2024-07-25T07:43:41.010000"],["2024-07-25T07:43:42.010000"],["2024-07-25T07:43:43.010000"],["2024-07-25T07:43:44.010000"],["2024-07-25T07:43:45.010000"],["2024-07-25T07:43:46.010000"],["2024-07-25T07:43:47.010000"],["2024-07-25T07:43:48.010000"],["2024-07-25T07:43:49.010000"],["2024-07-25T07:43:50.010000"],["2024-07-25T07:43:51.010000"],["2024-07-25T07:43:52.010000"],["2024-07-25T07:43:53.010000"],["2024-07-25T07:43:54.010000"],["2024-07-25T07:43:55.010000"],["2024-07-25T07:43:56.010000"],["2024-07-25T07:43:57.010000"],["2024-07-25T07:43:58.010000"],["2024-07-25T07:43:59.010000"],["2024-07-25T07:44:00.010000"],["2024-07-25T07:44:01.010000"],["2024-07-25T07:44:02.010000"],["2024-07-25T07:44:03.010000"],["2024-07-25T07:44:04.010000"],["2024-07-25T07:44:05.010000"],["2024-07-25T07:44:06.010000"],["2024-07-25T07:44:07.010000"],["2024-07-25T07:44:08.010000"],["2024-07-25T07:44:09.010000"],["2024-07-25T07:44:10.010000"],["2024-07-25T07:44:11.010000"],["2024-07-25T07:44:12.010000"],["2024-07-25T07:44:13.010000"],["2024-07-25T07:44:14.010000"],["2024-07-25T07:44:15.010000"],["2024-07-25T07:44:16.010000"],["2024-07-25T07:44:17.010000"],["2024-07-25T07:44:18.010000"],["2024-07-25T07:44:19.010000"],["2024-07-25T07:44:20.010000"],["2024-07-25T07:44:21.010000"],["2024-07-25T07:44:22.010000"],["2024-07-25T07:44:23.010000"],["2024-07-25T07:44:24.010000"],["2024-07-25T07:44:25.010000"],["2024-07-25T07:44:26.010000"],["2024-07-25T07:44:27.010000"],["2024-07-25T07:44:28.010000"],["2024-07-25T07:44:29.010000"],["2024-07-25T07:44:30.010000"],["2024-07-25T07:44:31.010000"],["2024-07-25T07:44:32.010000"],["2024-07-25T07:44:33.010000"],["2024-07-25T07:44:34.010000"],["2024-07-25T07:44:35.010000"],["2024-07-25T07:44:36.010000"],["2024-07-25T07:44:37.010000"],["2024-07-25T07:44:38.010000"],["2024-07-25T07:44:39.010000"],["2024-07-25T07:44:40.010000"],["2024-07-25T07:44:41.010000"],["2024-07-25T07:44:42.010000"],["2024-07-25T07:44:43.010000"],["2024-07-25T07:44:44.010000"],["2024-07-25T07:44:45.010000"],["2024-07-25T07:44:46.010000"],["2024-07-25T07:44:47.010000"],["2024-07-25T07:44:48.010000"],["2024-07-25T07:44:49.010000"],["2024-07-25T07:44:50.010000"],["2024-07-25T07:44:51.010000"],["2024-07-25T07:44:52.010000"],["2024-07-25T07:44:53.010000"],["2024-07-25T07:44:54.010000"],["2024-07-25T07:44:55.010000"],["2024-07-25T07:44:56.010000"],["2024-07-25T07:44:57.010000"],["2024-07-25T07:44:58.010000"],["2024-07-25T07:44:59.010000"],["2024-07-25T07:45:00.010000"],["2024-07-25T07:45:01.010000"],["2024-07-25T07:45:02.010000"],["2024-07-25T07:45:03.010000"],["2024-07-25T07:45:04.010000"],["2024-07-25T07:45:05.010000"],["2024-07-25T07:45:06.010000"],["2024-07-25T07:45:07.010000"],["2024-07-25T07:45:08.010000"],["2024-07-25T07:45:09.010000"],["2024-07-25T07:45:10.010000"],["2024-07-25T07:45:11.010000"],["2024-07-25T07:45:12.010000"],["2024-07-25T07:45:13.010000"],["2024-07-25T07:45:14.010000"],["2024-07-25T07:45:15.010000"],["2024-07-25T07:45:16.010000"],["2024-07-25T07:45:17.010000"],["2024-07-25T07:45:18.010000"],["2024-07-25T07:45:19.010000"],["2024-07-25T07:45:20.010000"],["2024-07-25T07:45:21.010000"],["2024-07-25T07:45:22.010000"],["2024-07-25T07:45:23.010000"],["2024-07-25T07:45:24.010000"],["2024-07-25T07:45:25.010000"],["2024-07-25T07:45:26.010000"],["2024-07-25T07:45:27.010000"],["2024-07-25T07:45:28.010000"],["2024-07-25T07:45:29.010000"],["2024-07-25T07:45:30.010000"],["2024-07-25T07:45:31.010000"],["2024-07-25T07:45:32.010000"],["2024-07-25T07:45:33.010000"],["2024-07-25T07:45:34.010000"],["2024-07-25T07:45:35.010000"],["2024-07-25T07:45:36.010000"],["2024-07-25T07:45:37.010000"],["2024-07-25T07:45:38.010000"],["2024-07-25T07:45:39.010000"],["2024-07-25T07:45:40.010000"],["2024-07-25T07:45:41.010000"],["2024-07-25T07:45:42.010000"],["2024-07-25T07:45:43.010000"],["2024-07-25T07:45:44.010000"],["2024-07-25T07:45:45.010000"],["2024-07-25T07:45:46.010000"],["2024-07-25T07:45:47.010000"],["2024-07-25T07:45:48.010000"],["2024-07-25T07:45:49.010000"],["2024-07-25T07:45:50.010000"],["2024-07-25T07:45:51.010000"],["2024-07-25T07:45:52.010000"],["2024-07-25T07:45:53.010000"],["2024-07-25T07:45:54.010000"],["2024-07-25T07:45:55.010000"],["2024-07-25T07:45:56.010000"],["2024-07-25T07:45:57.010000"],["2024-07-25T07:45:58.010000"],["2024-07-25T07:45:59.010000"],["2024-07-25T07:46:00.010000"],["2024-07-25T07:46:01.010000"],["2024-07-25T07:46:02.010000"],["2024-07-25T07:46:03.010000"],["2024-07-25T07:46:04.010000"],["2024-07-25T07:46:05.010000"],["2024-07-25T07:46:06.010000"],["2024-07-25T07:46:07.010000"],["2024-07-25T07:46:08.010000"],["2024-07-25T07:46:09.010000"],["2024-07-25T07:46:10.010000"],["2024-07-25T07:46:11.010000"],["2024-07-25T07:46:12.010000"],["2024-07-25T07:46:13.010000"],["2024-07-25T07:46:14.010000"],["2024-07-25T07:46:15.010000"],["2024-07-25T07:46:16.010000"],["2024-07-25T07:46:17.010000"],["2024-07-25T07:46:18.010000"],["2024-07-25T07:46:19.010000"],["2024-07-25T07:46:20.010000"],["2024-07-25T07:46:21.010000"],["2024-07-25T07:46:22.010000"],["2024-07-25T07:46:23.010000"],["2024-07-25T07:46:24.010000"],["2024-07-25T07:46:25.010000"],["2024-07-25T07:46:26.010000"],["2024-07-25T07:46:27.010000"],["2024-07-25T07:46:28.010000"],["2024-07-25T07:46:29.010000"],["2024-07-25T07:46:30.010000"],["2024-07-25T07:46:31.010000"],["2024-07-25T07:46:32.010000"],["2024-07-25T07:46:33.010000"],["2024-07-25T07:46:34.010000"],["2024-07-25T07:46:35.010000"],["2024-07-25T07:46:36.010000"],["2024-07-25T07:46:37.010000"],["2024-07-25T07:46:38.010000"],["2024-07-25T07:46:39.010000"],["2024-07-25T07:46:40.010000"],["2024-07-25T07:46:41.010000"],["2024-07-25T07:46:42.010000"],["2024-07-25T07:46:43.010000"],["2024-07-25T07:46:44.010000"],["2024-07-25T07:46:45.010000"],["2024-07-25T07:46:46.010000"],["2024-07-25T07:46:47.010000"],["2024-07-25T07:46:48.010000"],["2024-07-25T07:46:49.010000"],["2024-07-25T07:46:50.010000"],["2024-07-25T07:46:51.010000"],["2024-07-25T07:46:52.010000"],["2024-07-25T07:46:53.010000"],["2024-07-25T07:46:54.010000"],["2024-07-25T07:46:55.010000"],["2024-07-25T07:46:56.010000"],["2024-07-25T07:46:57.010000"],["2024-07-25T07:46:58.010000"],["2024-07-25T07:46:59.010000"],["2024-07-25T07:47:00.010000"],["2024-07-25T07:47:01.010000"],["2024-07-25T07:47:02.010000"],["2024-07-25T07:47:03.010000"],["2024-07-25T07:47:04.010000"],["2024-07-25T07:47:05.010000"],["2024-07-25T07:47:06.010000"],["2024-07-25T07:47:07.010000"],["2024-07-25T07:47:08.010000"],["2024-07-25T07:47:09.010000"],["2024-07-25T07:47:10.010000"],["2024-07-25T07:47:11.010000"],["2024-07-25T07:47:12.010000"],["2024-07-25T07:47:13.010000"],["2024-07-25T07:47:14.010000"],["2024-07-25T07:47:15.010000"],["2024-07-25T07:47:16.010000"],["2024-07-25T07:47:17.010000"],["2024-07-25T07:47:18.010000"],["2024-07-25T07:47:19.010000"],["2024-07-25T07:47:20.010000"],["2024-07-25T07:47:21.010000"],["2024-07-25T07:47:22.010000"],["2024-07-25T07:47:23.010000"],["2024-07-25T07:47:24.010000"],["2024-07-25T07:47:25.010000"],["2024-07-25T07:47:26.010000"],["2024-07-25T07:47:27.010000"],["2024-07-25T07:47:28.010000"],["2024-07-25T07:47:29.010000"],["2024-07-25T07:47:30.010000"],["2024-07-25T07:47:31.010000"],["2024-07-25T07:47:32.010000"],["2024-07-25T07:47:33.010000"],["2024-07-25T07:47:34.010000"],["2024-07-25T07:47:35.010000"],["2024-07-25T07:47:36.010000"],["2024-07-25T07:47:37.010000"],["2024-07-25T07:47:38.010000"],["2024-07-25T07:47:39.010000"],["2024-07-25T07:47:40.010000"],["2024-07-25T07:47:41.010000"],["2024-07-25T07:47:42.010000"],["2024-07-25T07:47:43.010000"],["2024-07-25T07:47:44.010000"],["2024-07-25T07:47:45.010000"],["2024-07-25T07:47:46.010000"],["2024-07-25T07:47:47.010000"],["2024-07-25T07:47:48.010000"],["2024-07-25T07:47:49.010000"],["2024-07-25T07:47:50.010000"],["2024-07-25T07:47:51.010000"],["2024-07-25T07:47:52.010000"],["2024-07-25T07:47:53.010000"],["2024-07-25T07:47:54.010000"],["2024-07-25T07:47:55.010000"],["2024-07-25T07:47:56.010000"],["2024-07-25T07:47:57.010000"],["2024-07-25T07:47:58.010000"],["2024-07-25T07:47:59.010000"],["2024-07-25T07:48:00.010000"],["2024-07-25T07:48:01.010000"],["2024-07-25T07:48:02.010000"],["2024-07-25T07:48:03.010000"],["2024-07-25T07:48:04.010000"],["2024-07-25T07:48:05.010000"],["2024-07-25T07:48:06.010000"],["2024-07-25T07:48:07.010000"],["2024-07-25T07:48:08.010000"],["2024-07-25T07:48:09.010000"],["2024-07-25T07:48:10.010000"],["2024-07-25T07:48:11.010000"],["2024-07-25T07:48:12.010000"],["2024-07-25T07:48:13.010000"],["2024-07-25T07:48:14.010000"],["2024-07-25T07:48:15.010000"],["2024-07-25T07:48:16.010000"],["2024-07-25T07:48:17.010000"],["2024-07-25T07:48:18.010000"],["2024-07-25T07:48:19.010000"],["2024-07-25T07:48:20.010000"],["2024-07-25T07:48:21.010000"],["2024-07-25T07:48:22.010000"],["2024-07-25T07:48:23.010000"],["2024-07-25T07:48:24.010000"],["2024-07-25T07:48:25.010000"],["2024-07-25T07:48:26.010000"],["2024-07-25T07:48:27.010000"],["2024-07-25T07:48:28.010000"],["2024-07-25T07:48:29.010000"],["2024-07-25T07:48:30.010000"],["2024-07-25T07:48:31.010000"],["2024-07-25T07:48:32.010000"],["2024-07-25T07:48:33.010000"],["2024-07-25T07:48:34.010000"],["2024-07-25T07:48:35.010000"],["2024-07-25T07:48:36.010000"],["2024-07-25T07:48:37.010000"],["2024-07-25T07:48:38.010000"],["2024-07-25T07:48:39.010000"],["2024-07-25T07:48:40.010000"],["2024-07-25T07:48:41.010000"],["2024-07-25T07:48:42.010000"],["2024-07-25T07:48:43.010000"],["2024-07-25T07:48:44.010000"],["2024-07-25T07:48:45.010000"],["2024-07-25T07:48:46.010000"],["2024-07-25T07:48:47.010000"],["2024-07-25T07:48:48.010000"],["2024-07-25T07:48:49.010000"],["2024-07-25T07:48:50.010000"],["2024-07-25T07:48:51.010000"],["2024-07-25T07:48:52.010000"],["2024-07-25T07:48:53.010000"],["2024-07-25T07:48:54.010000"],["2024-07-25T07:48:55.010000"],["2024-07-25T07:48:56.010000"],["2024-07-25T07:48:57.010000"],["2024-07-25T07:48:58.010000"],["2024-07-25T07:48:59.010000"],["2024-07-25T07:49:00.010000"],["2024-07-25T07:49:01.010000"],["2024-07-25T07:49:02.010000"],["2024-07-25T07:49:03.010000"],["2024-07-25T07:49:04.010000"],["2024-07-25T07:49:05.010000"],["2024-07-25T07:49:06.010000"],["2024-07-25T07:49:07.010000"],["2024-07-25T07:49:08.010000"],["2024-07-25T07:49:09.010000"],["2024-07-25T07:49:10.010000"],["2024-07-25T07:49:11.010000"],["2024-07-25T07:49:12.010000"],["2024-07-25T07:49:13.010000"],["2024-07-25T07:49:14.010000"],["2024-07-25T07:49:15.010000"],["2024-07-25T07:49:16.010000"],["2024-07-25T07:49:17.010000"],["2024-07-25T07:49:18.010000"],["2024-07-25T07:49:19.010000"],["2024-07-25T07:49:20.010000"],["2024-07-25T07:49:21.010000"],["2024-07-25T07:49:22.010000"],["2024-07-25T07:49:23.010000"],["2024-07-25T07:49:24.010000"],["2024-07-25T07:49:25.010000"],["2024-07-25T07:49:26.010000"],["2024-07-25T07:49:27.010000"],["2024-07-25T07:49:28.010000"],["2024-07-25T07:49:29.010000"],["2024-07-25T07:49:30.010000"],["2024-07-25T07:49:31.010000"],["2024-07-25T07:49:32.010000"],["2024-07-25T07:49:33.010000"],["2024-07-25T07:49:34.010000"],["2024-07-25T07:49:35.010000"],["2024-07-25T07:49:36.010000"],["2024-07-25T07:49:37.010000"],["2024-07-25T07:49:38.010000"],["2024-07-25T07:49:39.010000"],["2024-07-25T07:49:40.010000"],["2024-07-25T07:49:41.010000"],["2024-07-25T07:49:42.010000"],["2024-07-25T07:49:43.010000"],["2024-07-25T07:49:44.010000"],["2024-07-25T07:49:45.010000"],["2024-07-25T07:49:46.010000"],["2024-07-25T07:49:47.010000"],["2024-07-25T07:49:48.010000"],["2024-07-25T07:49:49.010000"],["2024-07-25T07:49:50.010000"],["2024-07-25T07:49:51.010000"],["2024-07-25T07:49:52.010000"],["2024-07-25T07:49:53.010000"],["2024-07-25T07:49:54.010000"],["2024-07-25T07:49:55.010000"],["2024-07-25T07:49:56.010000"],["2024-07-25T07:49:57.010000"],["2024-07-25T07:49:58.010000"],["2024-07-25T07:49:59.010000"],["2024-07-25T07:50:00.010000"],["2024-07-25T07:50:01.010000"],["2024-07-25T07:50:02.010000"],["2024-07-25T07:50:03.010000"],["2024-07-25T07:50:04.010000"],["2024-07-25T07:50:05.010000"],["2024-07-25T07:50:06.010000"],["2024-07-25T07:50:07.010000"],["2024-07-25T07:50:08.010000"],["2024-07-25T07:50:09.010000"],["2024-07-25T07:50:10.010000"],["2024-07-25T07:50:11.010000"],["2024-07-25T07:50:12.010000"],["2024-07-25T07:50:13.010000"],["2024-07-25T07:50:14.010000"],["2024-07-25T07:50:15.010000"],["2024-07-25T07:50:16.010000"],["2024-07-25T07:50:17.010000"],["2024-07-25T07:50:18.010000"],["2024-07-25T07:50:19.010000"],["2024-07-25T07:50:20.010000"],["2024-07-25T07:50:21.010000"],["2024-07-25T07:50:22.010000"],["2024-07-25T07:50:23.010000"],["2024-07-25T07:50:24.010000"],["2024-07-25T07:50:25.010000"],["2024-07-25T07:50:26.010000"],["2024-07-25T07:50:27.010000"],["2024-07-25T07:50:28.010000"],["2024-07-25T07:50:29.010000"],["2024-07-25T07:50:30.010000"],["2024-07-25T07:50:31.010000"],["2024-07-25T07:50:32.010000"],["2024-07-25T07:50:33.010000"],["2024-07-25T07:50:34.010000"],["2024-07-25T07:50:35.010000"],["2024-07-25T07:50:36.010000"],["2024-07-25T07:50:37.010000"],["2024-07-25T07:50:38.010000"],["2024-07-25T07:50:39.010000"],["2024-07-25T07:50:40.010000"],["2024-07-25T07:50:41.010000"],["2024-07-25T07:50:42.010000"],["2024-07-25T07:50:43.010000"],["2024-07-25T07:50:44.010000"],["2024-07-25T07:50:45.010000"],["2024-07-25T07:50:46.010000"],["2024-07-25T07:50:47.010000"],["2024-07-25T07:50:48.010000"],["2024-07-25T07:50:49.010000"],["2024-07-25T07:50:50.010000"],["2024-07-25T07:50:51.010000"],["2024-07-25T07:50:52.010000"],["2024-07-25T07:50:53.010000"],["2024-07-25T07:50:54.010000"],["2024-07-25T07:50:55.010000"],["2024-07-25T07:50:56.010000"],["2024-07-25T07:50:57.010000"],["2024-07-25T07:50:58.010000"],["2024-07-25T07:50:59.010000"],["2024-07-25T07:51:00.010000"],["2024-07-25T07:51:01.010000"],["2024-07-25T07:51:02.010000"],["2024-07-25T07:51:03.010000"],["2024-07-25T07:51:04.010000"],["2024-07-25T07:51:05.010000"],["2024-07-25T07:51:06.010000"],["2024-07-25T07:51:07.010000"],["2024-07-25T07:51:08.010000"],["2024-07-25T07:51:09.010000"],["2024-07-25T07:51:10.010000"],["2024-07-25T07:51:11.010000"],["2024-07-25T07:51:12.010000"],["2024-07-25T07:51:13.010000"],["2024-07-25T07:51:14.010000"],["2024-07-25T07:51:15.010000"],["2024-07-25T07:51:16.010000"],["2024-07-25T07:51:17.010000"],["2024-07-25T07:51:18.010000"],["2024-07-25T07:51:19.010000"],["2024-07-25T07:51:20.010000"],["2024-07-25T07:51:21.010000"],["2024-07-25T07:51:22.010000"],["2024-07-25T07:51:23.010000"],["2024-07-25T07:51:24.010000"],["2024-07-25T07:51:25.010000"],["2024-07-25T07:51:26.010000"],["2024-07-25T07:51:27.010000"],["2024-07-25T07:51:28.010000"],["2024-07-25T07:51:29.010000"],["2024-07-25T07:51:30.010000"],["2024-07-25T07:51:31.010000"],["2024-07-25T07:51:32.010000"],["2024-07-25T07:51:33.010000"],["2024-07-25T07:51:34.010000"],["2024-07-25T07:51:35.010000"],["2024-07-25T07:51:36.010000"],["2024-07-25T07:51:37.010000"],["2024-07-25T07:51:38.010000"],["2024-07-25T07:51:39.010000"],["2024-07-25T07:51:40.010000"],["2024-07-25T07:51:41.010000"],["2024-07-25T07:51:42.010000"],["2024-07-25T07:51:43.010000"],["2024-07-25T07:51:44.010000"],["2024-07-25T07:51:45.010000"],["2024-07-25T07:51:46.010000"],["2024-07-25T07:51:47.010000"],["2024-07-25T07:51:48.010000"],["2024-07-25T07:51:49.010000"],["2024-07-25T07:51:50.010000"],["2024-07-25T07:51:51.010000"],["2024-07-25T07:51:52.010000"],["2024-07-25T07:51:53.010000"],["2024-07-25T07:51:54.010000"],["2024-07-25T07:51:55.010000"],["2024-07-25T07:51:56.010000"],["2024-07-25T07:51:57.010000"],["2024-07-25T07:51:58.010000"],["2024-07-25T07:51:59.010000"],["2024-07-25T07:52:00.010000"],["2024-07-25T07:52:01.010000"],["2024-07-25T07:52:02.010000"],["2024-07-25T07:52:03.010000"],["2024-07-25T07:52:04.010000"],["2024-07-25T07:52:05.010000"],["2024-07-25T07:52:06.010000"],["2024-07-25T07:52:07.010000"],["2024-07-25T07:52:08.010000"],["2024-07-25T07:52:09.010000"],["2024-07-25T07:52:10.010000"],["2024-07-25T07:52:11.010000"],["2024-07-25T07:52:12.010000"],["2024-07-25T07:52:13.010000"],["2024-07-25T07:52:14.010000"],["2024-07-25T07:52:15.010000"],["2024-07-25T07:52:16.010000"],["2024-07-25T07:52:17.010000"],["2024-07-25T07:52:18.010000"],["2024-07-25T07:52:19.010000"],["2024-07-25T07:52:20.010000"],["2024-07-25T07:52:21.010000"],["2024-07-25T07:52:22.010000"],["2024-07-25T07:52:23.010000"],["2024-07-25T07:52:24.010000"],["2024-07-25T07:52:25.010000"],["2024-07-25T07:52:26.010000"],["2024-07-25T07:52:27.010000"],["2024-07-25T07:52:28.010000"],["2024-07-25T07:52:29.010000"],["2024-07-25T07:52:30.010000"],["2024-07-25T07:52:31.010000"],["2024-07-25T07:52:32.010000"],["2024-07-25T07:52:33.010000"],["2024-07-25T07:52:34.010000"],["2024-07-25T07:52:35.010000"],["2024-07-25T07:52:36.010000"],["2024-07-25T07:52:37.010000"],["2024-07-25T07:52:38.010000"],["2024-07-25T07:52:39.010000"],["2024-07-25T07:52:40.010000"],["2024-07-25T07:52:41.010000"],["2024-07-25T07:52:42.010000"],["2024-07-25T07:52:43.010000"],["2024-07-25T07:52:44.010000"],["2024-07-25T07:52:45.010000"],["2024-07-25T07:52:46.010000"],["2024-07-25T07:52:47.010000"],["2024-07-25T07:52:48.010000"],["2024-07-25T07:52:49.010000"],["2024-07-25T07:52:50.010000"],["2024-07-25T07:52:51.010000"],["2024-07-25T07:52:52.010000"],["2024-07-25T07:52:53.010000"],["2024-07-25T07:52:54.010000"],["2024-07-25T07:52:55.010000"],["2024-07-25T07:52:56.010000"],["2024-07-25T07:52:57.010000"],["2024-07-25T07:52:58.010000"],["2024-07-25T07:52:59.010000"],["2024-07-25T07:53:00.010000"],["2024-07-25T07:53:01.010000"],["2024-07-25T07:53:02.010000"],["2024-07-25T07:53:03.010000"],["2024-07-25T07:53:04.010000"],["2024-07-25T07:53:05.010000"],["2024-07-25T07:53:06.010000"],["2024-07-25T07:53:07.010000"],["2024-07-25T07:53:08.010000"],["2024-07-25T07:53:09.010000"],["2024-07-25T07:53:10.010000"],["2024-07-25T07:53:11.010000"],["2024-07-25T07:53:12.010000"],["2024-07-25T07:53:13.010000"],["2024-07-25T07:53:14.010000"],["2024-07-25T07:53:15.010000"],["2024-07-25T07:53:16.010000"],["2024-07-25T07:53:17.010000"],["2024-07-25T07:53:18.010000"],["2024-07-25T07:53:19.010000"],["2024-07-25T07:53:20.010000"],["2024-07-25T07:53:21.010000"],["2024-07-25T07:53:22.010000"],["2024-07-25T07:53:23.010000"],["2024-07-25T07:53:24.010000"],["2024-07-25T07:53:25.010000"],["2024-07-25T07:53:26.010000"],["2024-07-25T07:53:27.010000"],["2024-07-25T07:53:28.010000"],["2024-07-25T07:53:29.010000"],["2024-07-25T07:53:30.010000"],["2024-07-25T07:53:31.010000"],["2024-07-25T07:53:32.010000"],["2024-07-25T07:53:33.010000"],["2024-07-25T07:53:34.010000"],["2024-07-25T07:53:35.010000"],["2024-07-25T07:53:36.010000"],["2024-07-25T07:53:37.010000"],["2024-07-25T07:53:38.010000"],["2024-07-25T07:53:39.010000"],["2024-07-25T07:53:40.010000"],["2024-07-25T07:53:41.010000"],["2024-07-25T07:53:42.010000"],["2024-07-25T07:53:43.010000"],["2024-07-25T07:53:44.010000"],["2024-07-25T07:53:45.010000"],["2024-07-25T07:53:46.010000"],["2024-07-25T07:53:47.010000"],["2024-07-25T07:53:48.010000"],["2024-07-25T07:53:49.010000"],["2024-07-25T07:53:50.010000"],["2024-07-25T07:53:51.010000"],["2024-07-25T07:53:52.010000"],["2024-07-25T07:53:53.010000"],["2024-07-25T07:53:54.010000"],["2024-07-25T07:53:55.010000"],["2024-07-25T07:53:56.010000"],["2024-07-25T07:53:57.010000"],["2024-07-25T07:53:58.010000"],["2024-07-25T07:53:59.010000"],["2024-07-25T07:54:00.010000"],["2024-07-25T07:54:01.010000"],["2024-07-25T07:54:02.010000"],["2024-07-25T07:54:03.010000"],["2024-07-25T07:54:04.010000"],["2024-07-25T07:54:05.010000"],["2024-07-25T07:54:06.010000"],["2024-07-25T07:54:07.010000"],["2024-07-25T07:54:08.010000"],["2024-07-25T07:54:09.010000"],["2024-07-25T07:54:10.010000"],["2024-07-25T07:54:11.010000"],["2024-07-25T07:54:12.010000"],["2024-07-25T07:54:13.010000"],["2024-07-25T07:54:14.010000"],["2024-07-25T07:54:15.010000"],["2024-07-25T07:54:16.010000"],["2024-07-25T07:54:17.010000"],["2024-07-25T07:54:18.010000"],["2024-07-25T07:54:19.010000"],["2024-07-25T07:54:20.010000"],["2024-07-25T07:54:21.010000"],["2024-07-25T07:54:22.010000"],["2024-07-25T07:54:23.010000"],["2024-07-25T07:54:24.010000"],["2024-07-25T07:54:25.010000"],["2024-07-25T07:54:26.010000"],["2024-07-25T07:54:27.010000"],["2024-07-25T07:54:28.010000"],["2024-07-25T07:54:29.010000"],["2024-07-25T07:54:30.010000"],["2024-07-25T07:54:31.010000"],["2024-07-25T07:54:32.010000"],["2024-07-25T07:54:33.010000"],["2024-07-25T07:54:34.010000"],["2024-07-25T07:54:35.010000"],["2024-07-25T07:54:36.010000"],["2024-07-25T07:54:37.010000"],["2024-07-25T07:54:38.010000"],["2024-07-25T07:54:39.010000"],["2024-07-25T07:54:40.010000"],["2024-07-25T07:54:41.010000"],["2024-07-25T07:54:42.010000"],["2024-07-25T07:54:43.010000"],["2024-07-25T07:54:44.010000"],["2024-07-25T07:54:45.010000"],["2024-07-25T07:54:46.010000"],["2024-07-25T07:54:47.010000"],["2024-07-25T07:54:48.010000"],["2024-07-25T07:54:49.010000"],["2024-07-25T07:54:50.010000"],["2024-07-25T07:54:51.010000"],["2024-07-25T07:54:52.010000"],["2024-07-25T07:54:53.010000"],["2024-07-25T07:54:54.010000"],["2024-07-25T07:54:55.010000"],["2024-07-25T07:54:56.010000"],["2024-07-25T07:54:57.010000"],["2024-07-25T07:54:58.010000"],["2024-07-25T07:54:59.010000"],["2024-07-25T07:55:00.010000"],["2024-07-25T07:55:01.010000"],["2024-07-25T07:55:02.010000"],["2024-07-25T07:55:03.010000"],["2024-07-25T07:55:04.010000"],["2024-07-25T07:55:05.010000"],["2024-07-25T07:55:06.010000"],["2024-07-25T07:55:07.010000"],["2024-07-25T07:55:08.010000"],["2024-07-25T07:55:09.010000"],["2024-07-25T07:55:10.010000"],["2024-07-25T07:55:11.010000"],["2024-07-25T07:55:12.010000"],["2024-07-25T07:55:13.010000"],["2024-07-25T07:55:14.010000"],["2024-07-25T07:55:15.010000"],["2024-07-25T07:55:16.010000"],["2024-07-25T07:55:17.010000"],["2024-07-25T07:55:18.010000"],["2024-07-25T07:55:19.010000"],["2024-07-25T07:55:20.010000"],["2024-07-25T07:55:21.010000"],["2024-07-25T07:55:22.010000"],["2024-07-25T07:55:23.010000"],["2024-07-25T07:55:24.010000"],["2024-07-25T07:55:25.010000"],["2024-07-25T07:55:26.010000"],["2024-07-25T07:55:27.010000"],["2024-07-25T07:55:28.010000"],["2024-07-25T07:55:29.010000"],["2024-07-25T07:55:30.010000"],["2024-07-25T07:55:31.010000"],["2024-07-25T07:55:32.010000"],["2024-07-25T07:55:33.010000"],["2024-07-25T07:55:34.010000"],["2024-07-25T07:55:35.010000"],["2024-07-25T07:55:36.010000"],["2024-07-25T07:55:37.010000"],["2024-07-25T07:55:38.010000"],["2024-07-25T07:55:39.010000"],["2024-07-25T07:55:40.010000"],["2024-07-25T07:55:41.010000"],["2024-07-25T07:55:42.010000"],["2024-07-25T07:55:43.010000"],["2024-07-25T07:55:44.010000"],["2024-07-25T07:55:45.010000"],["2024-07-25T07:55:46.010000"],["2024-07-25T07:55:47.010000"],["2024-07-25T07:55:48.010000"],["2024-07-25T07:55:49.010000"],["2024-07-25T07:55:50.010000"],["2024-07-25T07:55:51.010000"],["2024-07-25T07:55:52.010000"],["2024-07-25T07:55:53.010000"],["2024-07-25T07:55:54.010000"],["2024-07-25T07:55:55.010000"],["2024-07-25T07:55:56.010000"],["2024-07-25T07:55:57.010000"],["2024-07-25T07:55:58.010000"],["2024-07-25T07:55:59.010000"],["2024-07-25T07:56:00.010000"],["2024-07-25T07:56:01.010000"],["2024-07-25T07:56:02.010000"],["2024-07-25T07:56:03.010000"],["2024-07-25T07:56:04.010000"],["2024-07-25T07:56:05.010000"],["2024-07-25T07:56:06.010000"],["2024-07-25T07:56:07.010000"],["2024-07-25T07:56:08.010000"],["2024-07-25T07:56:09.010000"],["2024-07-25T07:56:10.010000"],["2024-07-25T07:56:11.010000"],["2024-07-25T07:56:12.010000"],["2024-07-25T07:56:13.010000"],["2024-07-25T07:56:14.010000"],["2024-07-25T07:56:15.010000"],["2024-07-25T07:56:16.010000"],["2024-07-25T07:56:17.010000"],["2024-07-25T07:56:18.010000"],["2024-07-25T07:56:19.010000"],["2024-07-25T07:56:20.010000"],["2024-07-25T07:56:21.010000"],["2024-07-25T07:56:22.010000"],["2024-07-25T07:56:23.010000"],["2024-07-25T07:56:24.010000"],["2024-07-25T07:56:25.010000"],["2024-07-25T07:56:26.010000"],["2024-07-25T07:56:27.010000"],["2024-07-25T07:56:28.010000"],["2024-07-25T07:56:29.010000"],["2024-07-25T07:56:30.010000"],["2024-07-25T07:56:31.010000"],["2024-07-25T07:56:32.010000"],["2024-07-25T07:56:33.010000"],["2024-07-25T07:56:34.010000"],["2024-07-25T07:56:35.010000"],["2024-07-25T07:56:36.010000"],["2024-07-25T07:56:37.010000"],["2024-07-25T07:56:38.010000"],["2024-07-25T07:56:39.010000"],["2024-07-25T07:56:40.010000"],["2024-07-25T07:56:41.010000"],["2024-07-25T07:56:42.010000"],["2024-07-25T07:56:43.010000"],["2024-07-25T07:56:44.010000"],["2024-07-25T07:56:45.010000"],["2024-07-25T07:56:46.010000"],["2024-07-25T07:56:47.010000"],["2024-07-25T07:56:48.010000"],["2024-07-25T07:56:49.010000"],["2024-07-25T07:56:50.010000"],["2024-07-25T07:56:51.010000"],["2024-07-25T07:56:52.010000"],["2024-07-25T07:56:53.010000"],["2024-07-25T07:56:54.010000"],["2024-07-25T07:56:55.010000"],["2024-07-25T07:56:56.010000"],["2024-07-25T07:56:57.010000"],["2024-07-25T07:56:58.010000"],["2024-07-25T07:56:59.010000"],["2024-07-25T07:57:00.010000"],["2024-07-25T07:57:01.010000"],["2024-07-25T07:57:02.010000"],["2024-07-25T07:57:03.010000"],["2024-07-25T07:57:04.010000"],["2024-07-25T07:57:05.010000"],["2024-07-25T07:57:06.010000"],["2024-07-25T07:57:07.010000"],["2024-07-25T07:57:08.010000"],["2024-07-25T07:57:09.010000"],["2024-07-25T07:57:10.010000"],["2024-07-25T07:57:11.010000"],["2024-07-25T07:57:12.010000"],["2024-07-25T07:57:13.010000"],["2024-07-25T07:57:14.010000"],["2024-07-25T07:57:15.010000"],["2024-07-25T07:57:16.010000"],["2024-07-25T07:57:17.010000"],["2024-07-25T07:57:18.010000"],["2024-07-25T07:57:19.010000"],["2024-07-25T07:57:20.010000"],["2024-07-25T07:57:21.010000"],["2024-07-25T07:57:22.010000"],["2024-07-25T07:57:23.010000"],["2024-07-25T07:57:24.010000"],["2024-07-25T07:57:25.010000"],["2024-07-25T07:57:26.010000"],["2024-07-25T07:57:27.010000"],["2024-07-25T07:57:28.010000"],["2024-07-25T07:57:29.010000"],["2024-07-25T07:57:30.010000"],["2024-07-25T07:57:31.010000"],["2024-07-25T07:57:32.010000"],["2024-07-25T07:57:33.010000"],["2024-07-25T07:57:34.010000"],["2024-07-25T07:57:35.010000"],["2024-07-25T07:57:36.010000"],["2024-07-25T07:57:37.010000"],["2024-07-25T07:57:38.010000"],["2024-07-25T07:57:39.010000"],["2024-07-25T07:57:40.010000"],["2024-07-25T07:57:41.010000"],["2024-07-25T07:57:42.010000"],["2024-07-25T07:57:43.010000"],["2024-07-25T07:57:44.010000"],["2024-07-25T07:57:45.010000"],["2024-07-25T07:57:46.010000"],["2024-07-25T07:57:47.010000"],["2024-07-25T07:57:48.010000"],["2024-07-25T07:57:49.010000"],["2024-07-25T07:57:50.010000"],["2024-07-25T07:57:51.010000"],["2024-07-25T07:57:52.010000"],["2024-07-25T07:57:53.010000"],["2024-07-25T07:57:54.010000"],["2024-07-25T07:57:55.010000"],["2024-07-25T07:57:56.010000"],["2024-07-25T07:57:57.010000"],["2024-07-25T07:57:58.010000"],["2024-07-25T07:57:59.010000"],["2024-07-25T07:58:00.010000"],["2024-07-25T07:58:01.010000"],["2024-07-25T07:58:02.010000"],["2024-07-25T07:58:03.010000"],["2024-07-25T07:58:04.010000"],["2024-07-25T07:58:05.010000"],["2024-07-25T07:58:06.010000"],["2024-07-25T07:58:07.010000"],["2024-07-25T07:58:08.010000"],["2024-07-25T07:58:09.010000"],["2024-07-25T07:58:10.010000"],["2024-07-25T07:58:11.010000"],["2024-07-25T07:58:12.010000"],["2024-07-25T07:58:13.010000"],["2024-07-25T07:58:14.010000"],["2024-07-25T07:58:15.010000"],["2024-07-25T07:58:16.010000"],["2024-07-25T07:58:17.010000"],["2024-07-25T07:58:18.010000"],["2024-07-25T07:58:19.010000"],["2024-07-25T07:58:20.010000"],["2024-07-25T07:58:21.010000"],["2024-07-25T07:58:22.010000"],["2024-07-25T07:58:23.010000"],["2024-07-25T07:58:24.010000"],["2024-07-25T07:58:25.010000"],["2024-07-25T07:58:26.010000"],["2024-07-25T07:58:27.010000"],["2024-07-25T07:58:28.010000"],["2024-07-25T07:58:29.010000"],["2024-07-25T07:58:30.010000"],["2024-07-25T07:58:31.010000"],["2024-07-25T07:58:32.010000"],["2024-07-25T07:58:33.010000"],["2024-07-25T07:58:34.010000"],["2024-07-25T07:58:35.010000"],["2024-07-25T07:58:36.010000"],["2024-07-25T07:58:37.010000"],["2024-07-25T07:58:38.010000"],["2024-07-25T07:58:39.010000"],["2024-07-25T07:58:40.010000"],["2024-07-25T07:58:41.010000"],["2024-07-25T07:58:42.010000"],["2024-07-25T07:58:43.010000"],["2024-07-25T07:58:44.010000"],["2024-07-25T07:58:45.010000"],["2024-07-25T07:58:46.010000"],["2024-07-25T07:58:47.010000"],["2024-07-25T07:58:48.010000"],["2024-07-25T07:58:49.010000"],["2024-07-25T07:58:50.010000"],["2024-07-25T07:58:51.010000"],["2024-07-25T07:58:52.010000"],["2024-07-25T07:58:53.010000"],["2024-07-25T07:58:54.010000"],["2024-07-25T07:58:55.010000"],["2024-07-25T07:58:56.010000"],["2024-07-25T07:58:57.010000"],["2024-07-25T07:58:58.010000"],["2024-07-25T07:58:59.010000"],["2024-07-25T07:59:00.010000"],["2024-07-25T07:59:01.010000"],["2024-07-25T07:59:02.010000"],["2024-07-25T07:59:03.010000"],["2024-07-25T07:59:04.010000"],["2024-07-25T07:59:05.010000"],["2024-07-25T07:59:06.010000"],["2024-07-25T07:59:07.010000"],["2024-07-25T07:59:08.010000"],["2024-07-25T07:59:09.010000"],["2024-07-25T07:59:10.010000"],["2024-07-25T07:59:11.010000"],["2024-07-25T07:59:12.010000"],["2024-07-25T07:59:13.010000"],["2024-07-25T07:59:14.010000"],["2024-07-25T07:59:15.010000"],["2024-07-25T07:59:16.010000"],["2024-07-25T07:59:17.010000"],["2024-07-25T07:59:18.010000"],["2024-07-25T07:59:19.010000"],["2024-07-25T07:59:20.010000"],["2024-07-25T07:59:21.010000"],["2024-07-25T07:59:22.010000"],["2024-07-25T07:59:23.010000"],["2024-07-25T07:59:24.010000"],["2024-07-25T07:59:25.010000"],["2024-07-25T07:59:26.010000"],["2024-07-25T07:59:27.010000"],["2024-07-25T07:59:28.010000"],["2024-07-25T07:59:29.010000"],["2024-07-25T07:59:30.010000"],["2024-07-25T07:59:31.010000"],["2024-07-25T07:59:32.010000"],["2024-07-25T07:59:33.010000"],["2024-07-25T07:59:34.010000"],["2024-07-25T07:59:35.010000"],["2024-07-25T07:59:36.010000"],["2024-07-25T07:59:37.010000"],["2024-07-25T07:59:38.010000"],["2024-07-25T07:59:39.010000"],["2024-07-25T07:59:40.010000"],["2024-07-25T07:59:41.010000"],["2024-07-25T07:59:42.010000"],["2024-07-25T07:59:43.010000"],["2024-07-25T07:59:44.010000"],["2024-07-25T07:59:45.010000"],["2024-07-25T07:59:46.010000"],["2024-07-25T07:59:47.010000"],["2024-07-25T07:59:48.010000"],["2024-07-25T07:59:49.010000"],["2024-07-25T07:59:50.010000"],["2024-07-25T07:59:51.010000"],["2024-07-25T07:59:52.010000"],["2024-07-25T07:59:53.010000"],["2024-07-25T07:59:54.010000"],["2024-07-25T07:59:55.010000"],["2024-07-25T07:59:56.010000"],["2024-07-25T07:59:57.010000"],["2024-07-25T07:59:58.010000"],["2024-07-25T07:59:59.010000"],["2024-07-25T08:00:00.010000"],["2024-07-25T08:00:01.010000"],["2024-07-25T08:00:02.010000"],["2024-07-25T08:00:03.010000"],["2024-07-25T08:00:04.010000"],["2024-07-25T08:00:05.010000"],["2024-07-25T08:00:06.010000"],["2024-07-25T08:00:07.010000"],["2024-07-25T08:00:08.010000"],["2024-07-25T08:00:09.010000"],["2024-07-25T08:00:10.010000"],["2024-07-25T08:00:11.010000"],["2024-07-25T08:00:12.010000"],["2024-07-25T08:00:13.010000"],["2024-07-25T08:00:14.010000"],["2024-07-25T08:00:15.010000"],["2024-07-25T08:00:16.010000"],["2024-07-25T08:00:17.010000"],["2024-07-25T08:00:18.010000"],["2024-07-25T08:00:19.010000"],["2024-07-25T08:00:20.010000"],["2024-07-25T08:00:21.010000"],["2024-07-25T08:00:22.010000"],["2024-07-25T08:00:23.010000"],["2024-07-25T08:00:24.010000"],["2024-07-25T08:00:25.010000"],["2024-07-25T08:00:26.010000"],["2024-07-25T08:00:27.010000"],["2024-07-25T08:00:28.010000"],["2024-07-25T08:00:29.010000"],["2024-07-25T08:00:30.010000"],["2024-07-25T08:00:31.010000"],["2024-07-25T08:00:32.010000"],["2024-07-25T08:00:33.010000"],["2024-07-25T08:00:34.010000"],["2024-07-25T08:00:35.010000"],["2024-07-25T08:00:36.010000"],["2024-07-25T08:00:37.010000"],["2024-07-25T08:00:38.010000"],["2024-07-25T08:00:39.010000"],["2024-07-25T08:00:40.010000"],["2024-07-25T08:00:41.010000"],["2024-07-25T08:00:42.010000"],["2024-07-25T08:00:43.010000"],["2024-07-25T08:00:44.010000"],["2024-07-25T08:00:45.010000"],["2024-07-25T08:00:46.010000"],["2024-07-25T08:00:47.010000"],["2024-07-25T08:00:48.010000"],["2024-07-25T08:00:49.010000"],["2024-07-25T08:00:50.010000"],["2024-07-25T08:00:51.010000"],["2024-07-25T08:00:52.010000"],["2024-07-25T08:00:53.010000"],["2024-07-25T08:00:54.010000"],["2024-07-25T08:00:55.010000"],["2024-07-25T08:00:56.010000"],["2024-07-25T08:00:57.010000"],["2024-07-25T08:00:58.010000"],["2024-07-25T08:00:59.010000"],["2024-07-25T08:01:00.010000"],["2024-07-25T08:01:01.010000"],["2024-07-25T08:01:02.010000"],["2024-07-25T08:01:03.010000"],["2024-07-25T08:01:04.010000"],["2024-07-25T08:01:05.010000"],["2024-07-25T08:01:06.010000"],["2024-07-25T08:01:07.010000"],["2024-07-25T08:01:08.010000"],["2024-07-25T08:01:09.010000"],["2024-07-25T08:01:10.010000"],["2024-07-25T08:01:11.010000"],["2024-07-25T08:01:12.010000"],["2024-07-25T08:01:13.010000"],["2024-07-25T08:01:14.010000"],["2024-07-25T08:01:15.010000"],["2024-07-25T08:01:16.010000"],["2024-07-25T08:01:17.010000"],["2024-07-25T08:01:18.010000"],["2024-07-25T08:01:19.010000"],["2024-07-25T08:01:20.010000"],["2024-07-25T08:01:21.010000"],["2024-07-25T08:01:22.010000"],["2024-07-25T08:01:23.010000"],["2024-07-25T08:01:24.010000"],["2024-07-25T08:01:25.010000"],["2024-07-25T08:01:26.010000"],["2024-07-25T08:01:27.010000"],["2024-07-25T08:01:28.010000"],["2024-07-25T08:01:29.010000"],["2024-07-25T08:01:30.010000"],["2024-07-25T08:01:31.010000"],["2024-07-25T08:01:32.010000"],["2024-07-25T08:01:33.010000"],["2024-07-25T08:01:34.010000"],["2024-07-25T08:01:35.010000"],["2024-07-25T08:01:36.010000"],["2024-07-25T08:01:37.010000"],["2024-07-25T08:01:38.010000"],["2024-07-25T08:01:39.010000"],["2024-07-25T08:01:40.010000"],["2024-07-25T08:01:41.010000"],["2024-07-25T08:01:42.010000"],["2024-07-25T08:01:43.010000"],["2024-07-25T08:01:44.010000"],["2024-07-25T08:01:45.010000"],["2024-07-25T08:01:46.010000"],["2024-07-25T08:01:47.010000"],["2024-07-25T08:01:48.010000"],["2024-07-25T08:01:49.010000"],["2024-07-25T08:01:50.010000"],["2024-07-25T08:01:51.010000"],["2024-07-25T08:01:52.010000"],["2024-07-25T08:01:53.010000"],["2024-07-25T08:01:54.010000"],["2024-07-25T08:01:55.010000"],["2024-07-25T08:01:56.010000"],["2024-07-25T08:01:57.010000"],["2024-07-25T08:01:58.010000"],["2024-07-25T08:01:59.010000"],["2024-07-25T08:02:00.010000"],["2024-07-25T08:02:01.010000"],["2024-07-25T08:02:02.010000"],["2024-07-25T08:02:03.010000"],["2024-07-25T08:02:04.010000"],["2024-07-25T08:02:05.010000"],["2024-07-25T08:02:06.010000"],["2024-07-25T08:02:07.010000"],["2024-07-25T08:02:08.010000"],["2024-07-25T08:02:09.010000"],["2024-07-25T08:02:10.010000"],["2024-07-25T08:02:11.010000"],["2024-07-25T08:02:12.010000"],["2024-07-25T08:02:13.010000"],["2024-07-25T08:02:14.010000"],["2024-07-25T08:02:15.010000"],["2024-07-25T08:02:16.010000"],["2024-07-25T08:02:17.010000"],["2024-07-25T08:02:18.010000"],["2024-07-25T08:02:19.010000"],["2024-07-25T08:02:20.010000"],["2024-07-25T08:02:21.010000"],["2024-07-25T08:02:22.010000"],["2024-07-25T08:02:23.010000"],["2024-07-25T08:02:24.010000"],["2024-07-25T08:02:25.010000"],["2024-07-25T08:02:26.010000"],["2024-07-25T08:02:27.010000"],["2024-07-25T08:02:28.010000"],["2024-07-25T08:02:29.010000"],["2024-07-25T08:02:30.010000"],["2024-07-25T08:02:31.010000"],["2024-07-25T08:02:32.010000"],["2024-07-25T08:02:33.010000"],["2024-07-25T08:02:34.010000"],["2024-07-25T08:02:35.010000"],["2024-07-25T08:02:36.010000"],["2024-07-25T08:02:37.010000"],["2024-07-25T08:02:38.010000"],["2024-07-25T08:02:39.010000"],["2024-07-25T08:02:40.010000"],["2024-07-25T08:02:41.010000"],["2024-07-25T08:02:42.010000"],["2024-07-25T08:02:43.010000"],["2024-07-25T08:02:44.010000"],["2024-07-25T08:02:45.010000"],["2024-07-25T08:02:46.010000"],["2024-07-25T08:02:47.010000"],["2024-07-25T08:02:48.010000"],["2024-07-25T08:02:49.010000"],["2024-07-25T08:02:50.010000"],["2024-07-25T08:02:51.010000"],["2024-07-25T08:02:52.010000"],["2024-07-25T08:02:53.010000"],["2024-07-25T08:02:54.010000"],["2024-07-25T08:02:55.010000"],["2024-07-25T08:02:56.010000"],["2024-07-25T08:02:57.010000"],["2024-07-25T08:02:58.010000"],["2024-07-25T08:02:59.010000"],["2024-07-25T08:03:00.010000"],["2024-07-25T08:03:01.010000"],["2024-07-25T08:03:02.010000"],["2024-07-25T08:03:03.010000"],["2024-07-25T08:03:04.010000"],["2024-07-25T08:03:05.010000"],["2024-07-25T08:03:06.010000"],["2024-07-25T08:03:07.010000"],["2024-07-25T08:03:08.010000"],["2024-07-25T08:03:09.010000"],["2024-07-25T08:03:10.010000"],["2024-07-25T08:03:11.010000"],["2024-07-25T08:03:12.010000"],["2024-07-25T08:03:13.010000"],["2024-07-25T08:03:14.010000"],["2024-07-25T08:03:15.010000"],["2024-07-25T08:03:16.010000"],["2024-07-25T08:03:17.010000"],["2024-07-25T08:03:18.010000"],["2024-07-25T08:03:19.010000"],["2024-07-25T08:03:20.010000"],["2024-07-25T08:03:21.010000"],["2024-07-25T08:03:22.010000"],["2024-07-25T08:03:23.010000"],["2024-07-25T08:03:24.010000"],["2024-07-25T08:03:25.010000"],["2024-07-25T08:03:26.010000"],["2024-07-25T08:03:27.010000"],["2024-07-25T08:03:28.010000"],["2024-07-25T08:03:29.010000"],["2024-07-25T08:03:30.010000"],["2024-07-25T08:03:31.010000"],["2024-07-25T08:03:32.010000"],["2024-07-25T08:03:33.010000"],["2024-07-25T08:03:34.010000"],["2024-07-25T08:03:35.010000"],["2024-07-25T08:03:36.010000"],["2024-07-25T08:03:37.010000"],["2024-07-25T08:03:38.010000"],["2024-07-25T08:03:39.010000"],["2024-07-25T08:03:40.010000"],["2024-07-25T08:03:41.010000"],["2024-07-25T08:03:42.010000"],["2024-07-25T08:03:43.010000"],["2024-07-25T08:03:44.010000"],["2024-07-25T08:03:45.010000"],["2024-07-25T08:03:46.010000"],["2024-07-25T08:03:47.010000"],["2024-07-25T08:03:48.010000"],["2024-07-25T08:03:49.010000"],["2024-07-25T08:03:50.010000"],["2024-07-25T08:03:51.010000"],["2024-07-25T08:03:52.010000"],["2024-07-25T08:03:53.010000"],["2024-07-25T08:03:54.010000"],["2024-07-25T08:03:55.010000"],["2024-07-25T08:03:56.010000"],["2024-07-25T08:03:57.010000"],["2024-07-25T08:03:58.010000"],["2024-07-25T08:03:59.010000"],["2024-07-25T08:04:00.010000"],["2024-07-25T08:04:01.010000"],["2024-07-25T08:04:02.010000"],["2024-07-25T08:04:03.010000"],["2024-07-25T08:04:04.010000"],["2024-07-25T08:04:05.010000"],["2024-07-25T08:04:06.010000"],["2024-07-25T08:04:07.010000"],["2024-07-25T08:04:08.010000"],["2024-07-25T08:04:09.010000"],["2024-07-25T08:04:10.010000"],["2024-07-25T08:04:11.010000"],["2024-07-25T08:04:12.010000"],["2024-07-25T08:04:13.010000"],["2024-07-25T08:04:14.010000"],["2024-07-25T08:04:15.010000"],["2024-07-25T08:04:16.010000"],["2024-07-25T08:04:17.010000"],["2024-07-25T08:04:18.010000"],["2024-07-25T08:04:19.010000"],["2024-07-25T08:04:20.010000"],["2024-07-25T08:04:21.010000"],["2024-07-25T08:04:22.010000"],["2024-07-25T08:04:23.010000"],["2024-07-25T08:04:24.010000"],["2024-07-25T08:04:25.010000"],["2024-07-25T08:04:26.010000"],["2024-07-25T08:04:27.010000"],["2024-07-25T08:04:28.010000"],["2024-07-25T08:04:29.010000"],["2024-07-25T08:04:30.010000"],["2024-07-25T08:04:31.010000"],["2024-07-25T08:04:32.010000"],["2024-07-25T08:04:33.010000"],["2024-07-25T08:04:34.010000"],["2024-07-25T08:04:35.010000"],["2024-07-25T08:04:36.010000"],["2024-07-25T08:04:37.010000"],["2024-07-25T08:04:38.010000"],["2024-07-25T08:04:39.010000"],["2024-07-25T08:04:40.010000"],["2024-07-25T08:04:41.010000"],["2024-07-25T08:04:42.010000"],["2024-07-25T08:04:43.010000"],["2024-07-25T08:04:44.010000"],["2024-07-25T08:04:45.010000"],["2024-07-25T08:04:46.010000"],["2024-07-25T08:04:47.010000"],["2024-07-25T08:04:48.010000"],["2024-07-25T08:04:49.010000"],["2024-07-25T08:04:50.010000"],["2024-07-25T08:04:51.010000"],["2024-07-25T08:04:52.010000"],["2024-07-25T08:04:53.010000"],["2024-07-25T08:04:54.010000"],["2024-07-25T08:04:55.010000"],["2024-07-25T08:04:56.010000"],["2024-07-25T08:04:57.010000"],["2024-07-25T08:04:58.010000"],["2024-07-25T08:04:59.010000"],["2024-07-25T08:05:00.010000"],["2024-07-25T08:05:01.010000"],["2024-07-25T08:05:02.010000"],["2024-07-25T08:05:03.010000"],["2024-07-25T08:05:04.010000"],["2024-07-25T08:05:05.010000"],["2024-07-25T08:05:06.010000"],["2024-07-25T08:05:07.010000"],["2024-07-25T08:05:08.010000"],["2024-07-25T08:05:09.010000"],["2024-07-25T08:05:10.010000"],["2024-07-25T08:05:11.010000"],["2024-07-25T08:05:12.010000"],["2024-07-25T08:05:13.010000"],["2024-07-25T08:05:14.010000"],["2024-07-25T08:05:15.010000"],["2024-07-25T08:05:16.010000"],["2024-07-25T08:05:17.010000"],["2024-07-25T08:05:18.010000"],["2024-07-25T08:05:19.010000"],["2024-07-25T08:05:20.010000"],["2024-07-25T08:05:21.010000"],["2024-07-25T08:05:22.010000"],["2024-07-25T08:05:23.010000"],["2024-07-25T08:05:24.010000"],["2024-07-25T08:05:25.010000"],["2024-07-25T08:05:26.010000"],["2024-07-25T08:05:27.010000"],["2024-07-25T08:05:28.010000"],["2024-07-25T08:05:29.010000"],["2024-07-25T08:05:30.010000"],["2024-07-25T08:05:31.010000"],["2024-07-25T08:05:32.010000"],["2024-07-25T08:05:33.010000"],["2024-07-25T08:05:34.010000"],["2024-07-25T08:05:35.010000"],["2024-07-25T08:05:36.010000"],["2024-07-25T08:05:37.010000"],["2024-07-25T08:05:38.010000"],["2024-07-25T08:05:39.010000"],["2024-07-25T08:05:40.010000"],["2024-07-25T08:05:41.010000"],["2024-07-25T08:05:42.010000"],["2024-07-25T08:05:43.010000"],["2024-07-25T08:05:44.010000"],["2024-07-25T08:05:45.010000"],["2024-07-25T08:05:46.010000"],["2024-07-25T08:05:47.010000"],["2024-07-25T08:05:48.010000"],["2024-07-25T08:05:49.010000"],["2024-07-25T08:05:50.010000"],["2024-07-25T08:05:51.010000"],["2024-07-25T08:05:52.010000"],["2024-07-25T08:05:53.010000"],["2024-07-25T08:05:54.010000"],["2024-07-25T08:05:55.010000"],["2024-07-25T08:05:56.010000"],["2024-07-25T08:05:57.010000"],["2024-07-25T08:05:58.010000"],["2024-07-25T08:05:59.010000"],["2024-07-25T08:06:00.010000"],["2024-07-25T08:06:01.010000"],["2024-07-25T08:06:02.010000"],["2024-07-25T08:06:03.010000"],["2024-07-25T08:06:04.010000"],["2024-07-25T08:06:05.010000"],["2024-07-25T08:06:06.010000"],["2024-07-25T08:06:07.010000"],["2024-07-25T08:06:08.010000"],["2024-07-25T08:06:09.010000"],["2024-07-25T08:06:10.010000"],["2024-07-25T08:06:11.010000"],["2024-07-25T08:06:12.010000"],["2024-07-25T08:06:13.010000"],["2024-07-25T08:06:14.010000"],["2024-07-25T08:06:15.010000"],["2024-07-25T08:06:16.010000"],["2024-07-25T08:06:17.010000"],["2024-07-25T08:06:18.010000"],["2024-07-25T08:06:19.010000"],["2024-07-25T08:06:20.010000"],["2024-07-25T08:06:21.010000"],["2024-07-25T08:06:22.010000"],["2024-07-25T08:06:23.010000"],["2024-07-25T08:06:24.010000"],["2024-07-25T08:06:25.010000"],["2024-07-25T08:06:26.010000"],["2024-07-25T08:06:27.010000"],["2024-07-25T08:06:28.010000"],["2024-07-25T08:06:29.010000"],["2024-07-25T08:06:30.010000"],["2024-07-25T08:06:31.010000"],["2024-07-25T08:06:32.010000"],["2024-07-25T08:06:33.010000"],["2024-07-25T08:06:34.010000"],["2024-07-25T08:06:35.010000"],["2024-07-25T08:06:36.010000"],["2024-07-25T08:06:37.010000"],["2024-07-25T08:06:38.010000"],["2024-07-25T08:06:39.010000"],["2024-07-25T08:06:40.010000"],["2024-07-25T08:06:41.010000"],["2024-07-25T08:06:42.010000"],["2024-07-25T08:06:43.010000"],["2024-07-25T08:06:44.010000"],["2024-07-25T08:06:45.010000"],["2024-07-25T08:06:46.010000"],["2024-07-25T08:06:47.010000"],["2024-07-25T08:06:48.010000"],["2024-07-25T08:06:49.010000"],["2024-07-25T08:06:50.010000"],["2024-07-25T08:06:51.010000"],["2024-07-25T08:06:52.010000"],["2024-07-25T08:06:53.010000"],["2024-07-25T08:06:54.010000"],["2024-07-25T08:06:55.010000"],["2024-07-25T08:06:56.010000"],["2024-07-25T08:06:57.010000"],["2024-07-25T08:06:58.010000"],["2024-07-25T08:06:59.010000"],["2024-07-25T08:07:00.010000"],["2024-07-25T08:07:01.010000"],["2024-07-25T08:07:02.010000"],["2024-07-25T08:07:03.010000"],["2024-07-25T08:07:04.010000"],["2024-07-25T08:07:05.010000"],["2024-07-25T08:07:06.010000"],["2024-07-25T08:07:07.010000"],["2024-07-25T08:07:08.010000"],["2024-07-25T08:07:09.010000"],["2024-07-25T08:07:10.010000"],["2024-07-25T08:07:11.010000"],["2024-07-25T08:07:12.010000"],["2024-07-25T08:07:13.010000"],["2024-07-25T08:07:14.010000"],["2024-07-25T08:07:15.010000"],["2024-07-25T08:07:16.010000"],["2024-07-25T08:07:17.010000"],["2024-07-25T08:07:18.010000"],["2024-07-25T08:07:19.010000"],["2024-07-25T08:07:20.010000"],["2024-07-25T08:07:21.010000"],["2024-07-25T08:07:22.010000"],["2024-07-25T08:07:23.010000"],["2024-07-25T08:07:24.010000"],["2024-07-25T08:07:25.010000"],["2024-07-25T08:07:26.010000"],["2024-07-25T08:07:27.010000"],["2024-07-25T08:07:28.010000"],["2024-07-25T08:07:29.010000"],["2024-07-25T08:07:30.010000"],["2024-07-25T08:07:31.010000"],["2024-07-25T08:07:32.010000"],["2024-07-25T08:07:33.010000"],["2024-07-25T08:07:34.010000"],["2024-07-25T08:07:35.010000"],["2024-07-25T08:07:36.010000"],["2024-07-25T08:07:37.010000"],["2024-07-25T08:07:38.010000"],["2024-07-25T08:07:39.010000"],["2024-07-25T08:07:40.010000"],["2024-07-25T08:07:41.010000"],["2024-07-25T08:07:42.010000"],["2024-07-25T08:07:43.010000"],["2024-07-25T08:07:44.010000"],["2024-07-25T08:07:45.010000"],["2024-07-25T08:07:46.010000"],["2024-07-25T08:07:47.010000"],["2024-07-25T08:07:48.010000"],["2024-07-25T08:07:49.010000"],["2024-07-25T08:07:50.010000"],["2024-07-25T08:07:51.010000"],["2024-07-25T08:07:52.010000"],["2024-07-25T08:07:53.010000"],["2024-07-25T08:07:54.010000"],["2024-07-25T08:07:55.010000"],["2024-07-25T08:07:56.010000"],["2024-07-25T08:07:57.010000"],["2024-07-25T08:07:58.010000"],["2024-07-25T08:07:59.010000"],["2024-07-25T08:08:00.010000"],["2024-07-25T08:08:01.010000"],["2024-07-25T08:08:02.010000"],["2024-07-25T08:08:03.010000"],["2024-07-25T08:08:04.010000"],["2024-07-25T08:08:05.010000"],["2024-07-25T08:08:06.010000"],["2024-07-25T08:08:07.010000"],["2024-07-25T08:08:08.010000"],["2024-07-25T08:08:09.010000"],["2024-07-25T08:08:10.010000"],["2024-07-25T08:08:11.010000"],["2024-07-25T08:08:12.010000"],["2024-07-25T08:08:13.010000"],["2024-07-25T08:08:14.010000"],["2024-07-25T08:08:15.010000"],["2024-07-25T08:08:16.010000"],["2024-07-25T08:08:17.010000"],["2024-07-25T08:08:18.010000"],["2024-07-25T08:08:19.010000"],["2024-07-25T08:08:20.010000"],["2024-07-25T08:08:21.010000"],["2024-07-25T08:08:22.010000"],["2024-07-25T08:08:23.010000"],["2024-07-25T08:08:24.010000"],["2024-07-25T08:08:25.010000"],["2024-07-25T08:08:26.010000"],["2024-07-25T08:08:27.010000"],["2024-07-25T08:08:28.010000"],["2024-07-25T08:08:29.010000"],["2024-07-25T08:08:30.010000"],["2024-07-25T08:08:31.010000"],["2024-07-25T08:08:32.010000"],["2024-07-25T08:08:33.010000"],["2024-07-25T08:08:34.010000"],["2024-07-25T08:08:35.010000"],["2024-07-25T08:08:36.010000"],["2024-07-25T08:08:37.010000"],["2024-07-25T08:08:38.010000"],["2024-07-25T08:08:39.010000"],["2024-07-25T08:08:40.010000"],["2024-07-25T08:08:41.010000"],["2024-07-25T08:08:42.010000"],["2024-07-25T08:08:43.010000"],["2024-07-25T08:08:44.010000"],["2024-07-25T08:08:45.010000"],["2024-07-25T08:08:46.010000"],["2024-07-25T08:08:47.010000"],["2024-07-25T08:08:48.010000"],["2024-07-25T08:08:49.010000"],["2024-07-25T08:08:50.010000"],["2024-07-25T08:08:51.010000"],["2024-07-25T08:08:52.010000"],["2024-07-25T08:08:53.010000"],["2024-07-25T08:08:54.010000"],["2024-07-25T08:08:55.010000"],["2024-07-25T08:08:56.010000"],["2024-07-25T08:08:57.010000"],["2024-07-25T08:08:58.010000"],["2024-07-25T08:08:59.010000"],["2024-07-25T08:09:00.010000"],["2024-07-25T08:09:01.010000"],["2024-07-25T08:09:02.010000"],["2024-07-25T08:09:03.010000"],["2024-07-25T08:09:04.010000"],["2024-07-25T08:09:05.010000"],["2024-07-25T08:09:06.010000"],["2024-07-25T08:09:07.010000"],["2024-07-25T08:09:08.010000"],["2024-07-25T08:09:09.010000"],["2024-07-25T08:09:10.010000"],["2024-07-25T08:09:11.010000"],["2024-07-25T08:09:12.010000"],["2024-07-25T08:09:13.010000"],["2024-07-25T08:09:14.010000"],["2024-07-25T08:09:15.010000"],["2024-07-25T08:09:16.010000"],["2024-07-25T08:09:17.010000"],["2024-07-25T08:09:18.010000"],["2024-07-25T08:09:19.010000"],["2024-07-25T08:09:20.010000"],["2024-07-25T08:09:21.010000"],["2024-07-25T08:09:22.010000"],["2024-07-25T08:09:23.010000"],["2024-07-25T08:09:24.010000"],["2024-07-25T08:09:25.010000"],["2024-07-25T08:09:26.010000"],["2024-07-25T08:09:27.010000"],["2024-07-25T08:09:28.010000"],["2024-07-25T08:09:29.010000"],["2024-07-25T08:09:30.010000"],["2024-07-25T08:09:31.010000"],["2024-07-25T08:09:32.010000"],["2024-07-25T08:09:33.010000"],["2024-07-25T08:09:34.010000"],["2024-07-25T08:09:35.010000"],["2024-07-25T08:09:36.010000"],["2024-07-25T08:09:37.010000"],["2024-07-25T08:09:38.010000"],["2024-07-25T08:09:39.010000"],["2024-07-25T08:09:40.010000"],["2024-07-25T08:09:41.010000"],["2024-07-25T08:09:42.010000"],["2024-07-25T08:09:43.010000"],["2024-07-25T08:09:44.010000"],["2024-07-25T08:09:45.010000"],["2024-07-25T08:09:46.010000"],["2024-07-25T08:09:47.010000"],["2024-07-25T08:09:48.010000"],["2024-07-25T08:09:49.010000"],["2024-07-25T08:09:50.010000"],["2024-07-25T08:09:51.010000"],["2024-07-25T08:09:52.010000"],["2024-07-25T08:09:53.010000"],["2024-07-25T08:09:54.010000"],["2024-07-25T08:09:55.010000"],["2024-07-25T08:09:56.010000"],["2024-07-25T08:09:57.010000"],["2024-07-25T08:09:58.010000"],["2024-07-25T08:09:59.010000"],["2024-07-25T08:10:00.010000"],["2024-07-25T08:10:01.010000"],["2024-07-25T08:10:02.010000"],["2024-07-25T08:10:03.010000"],["2024-07-25T08:10:04.010000"],["2024-07-25T08:10:05.010000"],["2024-07-25T08:10:06.010000"],["2024-07-25T08:10:07.010000"],["2024-07-25T08:10:08.010000"],["2024-07-25T08:10:09.010000"],["2024-07-25T08:10:10.010000"],["2024-07-25T08:10:11.010000"],["2024-07-25T08:10:12.010000"],["2024-07-25T08:10:13.010000"],["2024-07-25T08:10:14.010000"],["2024-07-25T08:10:15.010000"],["2024-07-25T08:10:16.010000"],["2024-07-25T08:10:17.010000"],["2024-07-25T08:10:18.010000"],["2024-07-25T08:10:19.010000"],["2024-07-25T08:10:20.010000"],["2024-07-25T08:10:21.010000"],["2024-07-25T08:10:22.010000"],["2024-07-25T08:10:23.010000"],["2024-07-25T08:10:24.010000"],["2024-07-25T08:10:25.010000"],["2024-07-25T08:10:26.010000"],["2024-07-25T08:10:27.010000"],["2024-07-25T08:10:28.010000"],["2024-07-25T08:10:29.010000"],["2024-07-25T08:10:30.010000"],["2024-07-25T08:10:31.010000"],["2024-07-25T08:10:32.010000"],["2024-07-25T08:10:33.010000"],["2024-07-25T08:10:34.010000"],["2024-07-25T08:10:35.010000"],["2024-07-25T08:10:36.010000"],["2024-07-25T08:10:37.010000"],["2024-07-25T08:10:38.010000"],["2024-07-25T08:10:39.010000"],["2024-07-25T08:10:40.010000"],["2024-07-25T08:10:41.010000"],["2024-07-25T08:10:42.010000"],["2024-07-25T08:10:43.010000"],["2024-07-25T08:10:44.010000"],["2024-07-25T08:10:45.010000"],["2024-07-25T08:10:46.010000"],["2024-07-25T08:10:47.010000"],["2024-07-25T08:10:48.010000"],["2024-07-25T08:10:49.010000"],["2024-07-25T08:10:50.010000"],["2024-07-25T08:10:51.010000"],["2024-07-25T08:10:52.010000"],["2024-07-25T08:10:53.010000"],["2024-07-25T08:10:54.010000"],["2024-07-25T08:10:55.010000"],["2024-07-25T08:10:56.010000"],["2024-07-25T08:10:57.010000"],["2024-07-25T08:10:58.010000"],["2024-07-25T08:10:59.010000"],["2024-07-25T08:11:00.010000"],["2024-07-25T08:11:01.010000"],["2024-07-25T08:11:02.010000"],["2024-07-25T08:11:03.010000"],["2024-07-25T08:11:04.010000"],["2024-07-25T08:11:05.010000"],["2024-07-25T08:11:06.010000"],["2024-07-25T08:11:07.010000"],["2024-07-25T08:11:08.010000"],["2024-07-25T08:11:09.010000"],["2024-07-25T08:11:10.010000"],["2024-07-25T08:11:11.010000"],["2024-07-25T08:11:12.010000"],["2024-07-25T08:11:13.010000"],["2024-07-25T08:11:14.010000"],["2024-07-25T08:11:15.010000"],["2024-07-25T08:11:16.010000"],["2024-07-25T08:11:17.010000"],["2024-07-25T08:11:18.010000"],["2024-07-25T08:11:19.010000"],["2024-07-25T08:11:20.010000"],["2024-07-25T08:11:21.010000"],["2024-07-25T08:11:22.010000"],["2024-07-25T08:11:23.010000"],["2024-07-25T08:11:24.010000"],["2024-07-25T08:11:25.010000"],["2024-07-25T08:11:26.010000"],["2024-07-25T08:11:27.010000"],["2024-07-25T08:11:28.010000"],["2024-07-25T08:11:29.010000"],["2024-07-25T08:11:30.010000"],["2024-07-25T08:11:31.010000"],["2024-07-25T08:11:32.010000"],["2024-07-25T08:11:33.010000"],["2024-07-25T08:11:34.010000"],["2024-07-25T08:11:35.010000"],["2024-07-25T08:11:36.010000"],["2024-07-25T08:11:37.010000"],["2024-07-25T08:11:38.010000"],["2024-07-25T08:11:39.010000"],["2024-07-25T08:11:40.010000"],["2024-07-25T08:11:41.010000"],["2024-07-25T08:11:42.010000"],["2024-07-25T08:11:43.010000"],["2024-07-25T08:11:44.010000"],["2024-07-25T08:11:45.010000"],["2024-07-25T08:11:46.010000"],["2024-07-25T08:11:47.010000"],["2024-07-25T08:11:48.010000"],["2024-07-25T08:11:49.010000"],["2024-07-25T08:11:50.010000"],["2024-07-25T08:11:51.010000"],["2024-07-25T08:11:52.010000"],["2024-07-25T08:11:53.010000"],["2024-07-25T08:11:54.010000"],["2024-07-25T08:11:55.010000"],["2024-07-25T08:11:56.010000"],["2024-07-25T08:11:57.010000"],["2024-07-25T08:11:58.010000"],["2024-07-25T08:11:59.010000"],["2024-07-25T08:12:00.010000"],["2024-07-25T08:12:01.010000"],["2024-07-25T08:12:02.010000"],["2024-07-25T08:12:03.010000"],["2024-07-25T08:12:04.010000"],["2024-07-25T08:12:05.010000"],["2024-07-25T08:12:06.010000"],["2024-07-25T08:12:07.010000"],["2024-07-25T08:12:08.010000"],["2024-07-25T08:12:09.010000"],["2024-07-25T08:12:10.010000"],["2024-07-25T08:12:11.010000"],["2024-07-25T08:12:12.010000"],["2024-07-25T08:12:13.010000"],["2024-07-25T08:12:14.010000"],["2024-07-25T08:12:15.010000"],["2024-07-25T08:12:16.010000"],["2024-07-25T08:12:17.010000"],["2024-07-25T08:12:18.010000"],["2024-07-25T08:12:19.010000"],["2024-07-25T08:12:20.010000"],["2024-07-25T08:12:21.010000"],["2024-07-25T08:12:22.010000"],["2024-07-25T08:12:23.010000"],["2024-07-25T08:12:24.010000"],["2024-07-25T08:12:25.010000"],["2024-07-25T08:12:26.010000"],["2024-07-25T08:12:27.010000"],["2024-07-25T08:12:28.010000"],["2024-07-25T08:12:29.010000"],["2024-07-25T08:12:30.010000"],["2024-07-25T08:12:31.010000"],["2024-07-25T08:12:32.010000"],["2024-07-25T08:12:33.010000"],["2024-07-25T08:12:34.010000"],["2024-07-25T08:12:35.010000"],["2024-07-25T08:12:36.010000"],["2024-07-25T08:12:37.010000"],["2024-07-25T08:12:38.010000"],["2024-07-25T08:12:39.010000"],["2024-07-25T08:12:40.010000"],["2024-07-25T08:12:41.010000"],["2024-07-25T08:12:42.010000"],["2024-07-25T08:12:43.010000"],["2024-07-25T08:12:44.010000"],["2024-07-25T08:12:45.010000"],["2024-07-25T08:12:46.010000"],["2024-07-25T08:12:47.010000"],["2024-07-25T08:12:48.010000"],["2024-07-25T08:12:49.010000"],["2024-07-25T08:12:50.010000"],["2024-07-25T08:12:51.010000"],["2024-07-25T08:12:52.010000"],["2024-07-25T08:12:53.010000"],["2024-07-25T08:12:54.010000"],["2024-07-25T08:12:55.010000"],["2024-07-25T08:12:56.010000"],["2024-07-25T08:12:57.010000"],["2024-07-25T08:12:58.010000"],["2024-07-25T08:12:59.010000"],["2024-07-25T08:13:00.010000"],["2024-07-25T08:13:01.010000"],["2024-07-25T08:13:02.010000"],["2024-07-25T08:13:03.010000"],["2024-07-25T08:13:04.010000"],["2024-07-25T08:13:05.010000"],["2024-07-25T08:13:06.010000"],["2024-07-25T08:13:07.010000"],["2024-07-25T08:13:08.010000"],["2024-07-25T08:13:09.010000"],["2024-07-25T08:13:10.010000"],["2024-07-25T08:13:11.010000"],["2024-07-25T08:13:12.010000"],["2024-07-25T08:13:13.010000"],["2024-07-25T08:13:14.010000"],["2024-07-25T08:13:15.010000"],["2024-07-25T08:13:16.010000"],["2024-07-25T08:13:17.010000"],["2024-07-25T08:13:18.010000"],["2024-07-25T08:13:19.010000"],["2024-07-25T08:13:20.010000"],["2024-07-25T08:13:21.010000"],["2024-07-25T08:13:22.010000"],["2024-07-25T08:13:23.010000"],["2024-07-25T08:13:24.010000"],["2024-07-25T08:13:25.010000"],["2024-07-25T08:13:26.010000"],["2024-07-25T08:13:27.010000"],["2024-07-25T08:13:28.010000"],["2024-07-25T08:13:29.010000"],["2024-07-25T08:13:30.010000"],["2024-07-25T08:13:31.010000"],["2024-07-25T08:13:32.010000"],["2024-07-25T08:13:33.010000"],["2024-07-25T08:13:34.010000"],["2024-07-25T08:13:35.010000"],["2024-07-25T08:13:36.010000"],["2024-07-25T08:13:37.010000"],["2024-07-25T08:13:38.010000"],["2024-07-25T08:13:39.010000"],["2024-07-25T08:13:40.010000"],["2024-07-25T08:13:41.010000"],["2024-07-25T08:13:42.010000"],["2024-07-25T08:13:43.010000"],["2024-07-25T08:13:44.010000"],["2024-07-25T08:13:45.010000"],["2024-07-25T08:13:46.010000"],["2024-07-25T08:13:47.010000"],["2024-07-25T08:13:48.010000"],["2024-07-25T08:13:49.010000"],["2024-07-25T08:13:50.010000"],["2024-07-25T08:13:51.010000"],["2024-07-25T08:13:52.010000"],["2024-07-25T08:13:53.010000"],["2024-07-25T08:13:54.010000"],["2024-07-25T08:13:55.010000"],["2024-07-25T08:13:56.010000"],["2024-07-25T08:13:57.010000"],["2024-07-25T08:13:58.010000"],["2024-07-25T08:13:59.010000"],["2024-07-25T08:14:00.010000"],["2024-07-25T08:14:01.010000"],["2024-07-25T08:14:02.010000"],["2024-07-25T08:14:03.010000"],["2024-07-25T08:14:04.010000"],["2024-07-25T08:14:05.010000"],["2024-07-25T08:14:06.010000"],["2024-07-25T08:14:07.010000"],["2024-07-25T08:14:08.010000"],["2024-07-25T08:14:09.010000"],["2024-07-25T08:14:10.010000"],["2024-07-25T08:14:11.010000"],["2024-07-25T08:14:12.010000"],["2024-07-25T08:14:13.010000"],["2024-07-25T08:14:14.010000"],["2024-07-25T08:14:15.010000"],["2024-07-25T08:14:16.010000"],["2024-07-25T08:14:17.010000"],["2024-07-25T08:14:18.010000"],["2024-07-25T08:14:19.010000"],["2024-07-25T08:14:20.010000"],["2024-07-25T08:14:21.010000"],["2024-07-25T08:14:22.010000"],["2024-07-25T08:14:23.010000"],["2024-07-25T08:14:24.010000"],["2024-07-25T08:14:25.010000"],["2024-07-25T08:14:26.010000"],["2024-07-25T08:14:27.010000"],["2024-07-25T08:14:28.010000"],["2024-07-25T08:14:29.010000"],["2024-07-25T08:14:30.010000"],["2024-07-25T08:14:31.010000"],["2024-07-25T08:14:32.010000"],["2024-07-25T08:14:33.010000"],["2024-07-25T08:14:34.010000"],["2024-07-25T08:14:35.010000"],["2024-07-25T08:14:36.010000"],["2024-07-25T08:14:37.010000"],["2024-07-25T08:14:38.010000"],["2024-07-25T08:14:39.010000"],["2024-07-25T08:14:40.010000"],["2024-07-25T08:14:41.010000"],["2024-07-25T08:14:42.010000"],["2024-07-25T08:14:43.010000"],["2024-07-25T08:14:44.010000"],["2024-07-25T08:14:45.010000"],["2024-07-25T08:14:46.010000"],["2024-07-25T08:14:47.010000"],["2024-07-25T08:14:48.010000"],["2024-07-25T08:14:49.010000"],["2024-07-25T08:14:50.010000"],["2024-07-25T08:14:51.010000"],["2024-07-25T08:14:52.010000"],["2024-07-25T08:14:53.010000"],["2024-07-25T08:14:54.010000"],["2024-07-25T08:14:55.010000"],["2024-07-25T08:14:56.010000"],["2024-07-25T08:14:57.010000"],["2024-07-25T08:14:58.010000"],["2024-07-25T08:14:59.010000"],["2024-07-25T08:15:00.010000"],["2024-07-25T08:15:01.010000"],["2024-07-25T08:15:02.010000"],["2024-07-25T08:15:03.010000"],["2024-07-25T08:15:04.010000"],["2024-07-25T08:15:05.010000"],["2024-07-25T08:15:06.010000"],["2024-07-25T08:15:07.010000"],["2024-07-25T08:15:08.010000"],["2024-07-25T08:15:09.010000"],["2024-07-25T08:15:10.010000"],["2024-07-25T08:15:11.010000"],["2024-07-25T08:15:12.010000"],["2024-07-25T08:15:13.010000"],["2024-07-25T08:15:14.010000"],["2024-07-25T08:15:15.010000"],["2024-07-25T08:15:16.010000"],["2024-07-25T08:15:17.010000"],["2024-07-25T08:15:18.010000"],["2024-07-25T08:15:19.010000"],["2024-07-25T08:15:20.010000"],["2024-07-25T08:15:21.010000"],["2024-07-25T08:15:22.010000"],["2024-07-25T08:15:23.010000"],["2024-07-25T08:15:24.010000"],["2024-07-25T08:15:25.010000"],["2024-07-25T08:15:26.010000"],["2024-07-25T08:15:27.010000"],["2024-07-25T08:15:28.010000"],["2024-07-25T08:15:29.010000"],["2024-07-25T08:15:30.010000"],["2024-07-25T08:15:31.010000"],["2024-07-25T08:15:32.010000"],["2024-07-25T08:15:33.010000"],["2024-07-25T08:15:34.010000"],["2024-07-25T08:15:35.010000"],["2024-07-25T08:15:36.010000"],["2024-07-25T08:15:37.010000"],["2024-07-25T08:15:38.010000"],["2024-07-25T08:15:39.010000"],["2024-07-25T08:15:40.010000"],["2024-07-25T08:15:41.010000"],["2024-07-25T08:15:42.010000"],["2024-07-25T08:15:43.010000"],["2024-07-25T08:15:44.010000"],["2024-07-25T08:15:45.010000"],["2024-07-25T08:15:46.010000"],["2024-07-25T08:15:47.010000"],["2024-07-25T08:15:48.010000"],["2024-07-25T08:15:49.010000"],["2024-07-25T08:15:50.010000"],["2024-07-25T08:15:51.010000"],["2024-07-25T08:15:52.010000"],["2024-07-25T08:15:53.010000"],["2024-07-25T08:15:54.010000"],["2024-07-25T08:15:55.010000"],["2024-07-25T08:15:56.010000"],["2024-07-25T08:15:57.010000"],["2024-07-25T08:15:58.010000"],["2024-07-25T08:15:59.010000"],["2024-07-25T08:16:00.010000"],["2024-07-25T08:16:01.010000"],["2024-07-25T08:16:02.010000"],["2024-07-25T08:16:03.010000"],["2024-07-25T08:16:04.010000"],["2024-07-25T08:16:05.010000"],["2024-07-25T08:16:06.010000"],["2024-07-25T08:16:07.010000"],["2024-07-25T08:16:08.010000"],["2024-07-25T08:16:09.010000"],["2024-07-25T08:16:10.010000"],["2024-07-25T08:16:11.010000"],["2024-07-25T08:16:12.010000"],["2024-07-25T08:16:13.010000"],["2024-07-25T08:16:14.010000"],["2024-07-25T08:16:15.010000"],["2024-07-25T08:16:16.010000"],["2024-07-25T08:16:17.010000"],["2024-07-25T08:16:18.010000"],["2024-07-25T08:16:19.010000"],["2024-07-25T08:16:20.010000"],["2024-07-25T08:16:21.010000"],["2024-07-25T08:16:22.010000"],["2024-07-25T08:16:23.010000"],["2024-07-25T08:16:24.010000"],["2024-07-25T08:16:25.010000"],["2024-07-25T08:16:26.010000"],["2024-07-25T08:16:27.010000"],["2024-07-25T08:16:28.010000"],["2024-07-25T08:16:29.010000"],["2024-07-25T08:16:30.010000"],["2024-07-25T08:16:31.010000"],["2024-07-25T08:16:32.010000"],["2024-07-25T08:16:33.010000"],["2024-07-25T08:16:34.010000"],["2024-07-25T08:16:35.010000"],["2024-07-25T08:16:36.010000"],["2024-07-25T08:16:37.010000"],["2024-07-25T08:16:38.010000"],["2024-07-25T08:16:39.010000"],["2024-07-25T08:16:40.010000"],["2024-07-25T08:16:41.010000"],["2024-07-25T08:16:42.010000"],["2024-07-25T08:16:43.010000"],["2024-07-25T08:16:44.010000"],["2024-07-25T08:16:45.010000"],["2024-07-25T08:16:46.010000"],["2024-07-25T08:16:47.010000"],["2024-07-25T08:16:48.010000"],["2024-07-25T08:16:49.010000"],["2024-07-25T08:16:50.010000"],["2024-07-25T08:16:51.010000"],["2024-07-25T08:16:52.010000"],["2024-07-25T08:16:53.010000"],["2024-07-25T08:16:54.010000"],["2024-07-25T08:16:55.010000"],["2024-07-25T08:16:56.010000"],["2024-07-25T08:16:57.010000"],["2024-07-25T08:16:58.010000"],["2024-07-25T08:16:59.010000"],["2024-07-25T08:17:00.010000"],["2024-07-25T08:17:01.010000"],["2024-07-25T08:17:02.010000"],["2024-07-25T08:17:03.010000"],["2024-07-25T08:17:04.010000"],["2024-07-25T08:17:05.010000"],["2024-07-25T08:17:06.010000"],["2024-07-25T08:17:07.010000"],["2024-07-25T08:17:08.010000"],["2024-07-25T08:17:09.010000"],["2024-07-25T08:17:10.010000"],["2024-07-25T08:17:11.010000"],["2024-07-25T08:17:12.010000"],["2024-07-25T08:17:13.010000"],["2024-07-25T08:17:14.010000"],["2024-07-25T08:17:15.010000"],["2024-07-25T08:17:16.010000"],["2024-07-25T08:17:17.010000"],["2024-07-25T08:17:18.010000"],["2024-07-25T08:17:19.010000"],["2024-07-25T08:17:20.010000"],["2024-07-25T08:17:21.010000"],["2024-07-25T08:17:22.010000"],["2024-07-25T08:17:23.010000"],["2024-07-25T08:17:24.010000"],["2024-07-25T08:17:25.010000"],["2024-07-25T08:17:26.010000"],["2024-07-25T08:17:27.010000"],["2024-07-25T08:17:28.010000"],["2024-07-25T08:17:29.010000"],["2024-07-25T08:17:30.010000"],["2024-07-25T08:17:31.010000"],["2024-07-25T08:17:32.010000"],["2024-07-25T08:17:33.010000"],["2024-07-25T08:17:34.010000"],["2024-07-25T08:17:35.010000"],["2024-07-25T08:17:36.010000"],["2024-07-25T08:17:37.010000"],["2024-07-25T08:17:38.010000"],["2024-07-25T08:17:39.010000"],["2024-07-25T08:17:40.010000"],["2024-07-25T08:17:41.010000"],["2024-07-25T08:17:42.010000"],["2024-07-25T08:17:43.010000"],["2024-07-25T08:17:44.010000"],["2024-07-25T08:17:45.010000"],["2024-07-25T08:17:46.010000"],["2024-07-25T08:17:47.010000"],["2024-07-25T08:17:48.010000"],["2024-07-25T08:17:49.010000"],["2024-07-25T08:17:50.010000"],["2024-07-25T08:17:51.010000"],["2024-07-25T08:17:52.010000"],["2024-07-25T08:17:53.010000"],["2024-07-25T08:17:54.010000"],["2024-07-25T08:17:55.010000"],["2024-07-25T08:17:56.010000"],["2024-07-25T08:17:57.010000"],["2024-07-25T08:17:58.010000"],["2024-07-25T08:17:59.010000"],["2024-07-25T08:18:00.010000"],["2024-07-25T08:18:01.010000"],["2024-07-25T08:18:02.010000"],["2024-07-25T08:18:03.010000"],["2024-07-25T08:18:04.010000"],["2024-07-25T08:18:05.010000"],["2024-07-25T08:18:06.010000"],["2024-07-25T08:18:07.010000"],["2024-07-25T08:18:08.010000"],["2024-07-25T08:18:09.010000"],["2024-07-25T08:18:10.010000"],["2024-07-25T08:18:11.010000"],["2024-07-25T08:18:12.010000"],["2024-07-25T08:18:13.010000"],["2024-07-25T08:18:14.010000"],["2024-07-25T08:18:15.010000"],["2024-07-25T08:18:16.010000"],["2024-07-25T08:18:17.010000"],["2024-07-25T08:18:18.010000"],["2024-07-25T08:18:19.010000"],["2024-07-25T08:18:20.010000"],["2024-07-25T08:18:21.010000"],["2024-07-25T08:18:22.010000"],["2024-07-25T08:18:23.010000"],["2024-07-25T08:18:24.010000"],["2024-07-25T08:18:25.010000"],["2024-07-25T08:18:26.010000"],["2024-07-25T08:18:27.010000"],["2024-07-25T08:18:28.010000"],["2024-07-25T08:18:29.010000"],["2024-07-25T08:18:30.010000"],["2024-07-25T08:18:31.010000"],["2024-07-25T08:18:32.010000"],["2024-07-25T08:18:33.010000"],["2024-07-25T08:18:34.010000"],["2024-07-25T08:18:35.010000"],["2024-07-25T08:18:36.010000"],["2024-07-25T08:18:37.010000"],["2024-07-25T08:18:38.010000"],["2024-07-25T08:18:39.010000"],["2024-07-25T08:18:40.010000"],["2024-07-25T08:18:41.010000"],["2024-07-25T08:18:42.010000"],["2024-07-25T08:18:43.010000"],["2024-07-25T08:18:44.010000"],["2024-07-25T08:18:45.010000"],["2024-07-25T08:18:46.010000"],["2024-07-25T08:18:47.010000"],["2024-07-25T08:18:48.010000"],["2024-07-25T08:18:49.010000"],["2024-07-25T08:18:50.010000"],["2024-07-25T08:18:51.010000"],["2024-07-25T08:18:52.010000"],["2024-07-25T08:18:53.010000"],["2024-07-25T08:18:54.010000"],["2024-07-25T08:18:55.010000"],["2024-07-25T08:18:56.010000"],["2024-07-25T08:18:57.010000"],["2024-07-25T08:18:58.010000"],["2024-07-25T08:18:59.010000"],["2024-07-25T08:19:00.010000"],["2024-07-25T08:19:01.010000"],["2024-07-25T08:19:02.010000"],["2024-07-25T08:19:03.010000"],["2024-07-25T08:19:04.010000"],["2024-07-25T08:19:05.010000"],["2024-07-25T08:19:06.010000"],["2024-07-25T08:19:07.010000"],["2024-07-25T08:19:08.010000"],["2024-07-25T08:19:09.010000"],["2024-07-25T08:19:10.010000"],["2024-07-25T08:19:11.010000"],["2024-07-25T08:19:12.010000"],["2024-07-25T08:19:13.010000"],["2024-07-25T08:19:14.010000"],["2024-07-25T08:19:15.010000"],["2024-07-25T08:19:16.010000"],["2024-07-25T08:19:17.010000"],["2024-07-25T08:19:18.010000"],["2024-07-25T08:19:19.010000"],["2024-07-25T08:19:20.010000"],["2024-07-25T08:19:21.010000"],["2024-07-25T08:19:22.010000"],["2024-07-25T08:19:23.010000"],["2024-07-25T08:19:24.010000"],["2024-07-25T08:19:25.010000"],["2024-07-25T08:19:26.010000"],["2024-07-25T08:19:27.010000"],["2024-07-25T08:19:28.010000"],["2024-07-25T08:19:29.010000"],["2024-07-25T08:19:30.010000"],["2024-07-25T08:19:31.010000"],["2024-07-25T08:19:32.010000"],["2024-07-25T08:19:33.010000"],["2024-07-25T08:19:34.010000"],["2024-07-25T08:19:35.010000"],["2024-07-25T08:19:36.010000"],["2024-07-25T08:19:37.010000"],["2024-07-25T08:19:38.010000"],["2024-07-25T08:19:39.010000"],["2024-07-25T08:19:40.010000"],["2024-07-25T08:19:41.010000"],["2024-07-25T08:19:42.010000"],["2024-07-25T08:19:43.010000"],["2024-07-25T08:19:44.010000"],["2024-07-25T08:19:45.010000"],["2024-07-25T08:19:46.010000"],["2024-07-25T08:19:47.010000"],["2024-07-25T08:19:48.010000"],["2024-07-25T08:19:49.010000"],["2024-07-25T08:19:50.010000"],["2024-07-25T08:19:51.010000"],["2024-07-25T08:19:52.010000"],["2024-07-25T08:19:53.010000"],["2024-07-25T08:19:54.010000"],["2024-07-25T08:19:55.010000"],["2024-07-25T08:19:56.010000"],["2024-07-25T08:19:57.010000"],["2024-07-25T08:19:58.010000"],["2024-07-25T08:19:59.010000"],["2024-07-25T08:20:00.010000"],["2024-07-25T08:20:01.010000"],["2024-07-25T08:20:02.010000"],["2024-07-25T08:20:03.010000"],["2024-07-25T08:20:04.010000"],["2024-07-25T08:20:05.010000"],["2024-07-25T08:20:06.010000"],["2024-07-25T08:20:07.010000"],["2024-07-25T08:20:08.010000"],["2024-07-25T08:20:09.010000"],["2024-07-25T08:20:10.010000"],["2024-07-25T08:20:11.010000"],["2024-07-25T08:20:12.010000"],["2024-07-25T08:20:13.010000"],["2024-07-25T08:20:14.010000"],["2024-07-25T08:20:15.010000"],["2024-07-25T08:20:16.010000"],["2024-07-25T08:20:17.010000"],["2024-07-25T08:20:18.010000"],["2024-07-25T08:20:19.010000"],["2024-07-25T08:20:20.010000"],["2024-07-25T08:20:21.010000"],["2024-07-25T08:20:22.010000"],["2024-07-25T08:20:23.010000"],["2024-07-25T08:20:24.010000"],["2024-07-25T08:20:25.010000"],["2024-07-25T08:20:26.010000"],["2024-07-25T08:20:27.010000"],["2024-07-25T08:20:28.010000"],["2024-07-25T08:20:29.010000"],["2024-07-25T08:20:30.010000"],["2024-07-25T08:20:31.010000"],["2024-07-25T08:20:32.010000"],["2024-07-25T08:20:33.010000"],["2024-07-25T08:20:34.010000"],["2024-07-25T08:20:35.010000"],["2024-07-25T08:20:36.010000"],["2024-07-25T08:20:37.010000"],["2024-07-25T08:20:38.010000"],["2024-07-25T08:20:39.010000"],["2024-07-25T08:20:40.010000"],["2024-07-25T08:20:41.010000"],["2024-07-25T08:20:42.010000"],["2024-07-25T08:20:43.010000"],["2024-07-25T08:20:44.010000"],["2024-07-25T08:20:45.010000"],["2024-07-25T08:20:46.010000"],["2024-07-25T08:20:47.010000"],["2024-07-25T08:20:48.010000"],["2024-07-25T08:20:49.010000"],["2024-07-25T08:20:50.010000"],["2024-07-25T08:20:51.010000"],["2024-07-25T08:20:52.010000"],["2024-07-25T08:20:53.010000"],["2024-07-25T08:20:54.010000"],["2024-07-25T08:20:55.010000"],["2024-07-25T08:20:56.010000"],["2024-07-25T08:20:57.010000"],["2024-07-25T08:20:58.010000"],["2024-07-25T08:20:59.010000"],["2024-07-25T08:21:00.010000"],["2024-07-25T08:21:01.010000"],["2024-07-25T08:21:02.010000"],["2024-07-25T08:21:03.010000"],["2024-07-25T08:21:04.010000"],["2024-07-25T08:21:05.010000"],["2024-07-25T08:21:06.010000"],["2024-07-25T08:21:07.010000"],["2024-07-25T08:21:08.010000"],["2024-07-25T08:21:09.010000"],["2024-07-25T08:21:10.010000"],["2024-07-25T08:21:11.010000"],["2024-07-25T08:21:12.010000"],["2024-07-25T08:21:13.010000"],["2024-07-25T08:21:14.010000"],["2024-07-25T08:21:15.010000"],["2024-07-25T08:21:16.010000"],["2024-07-25T08:21:17.010000"],["2024-07-25T08:21:18.010000"],["2024-07-25T08:21:19.010000"],["2024-07-25T08:21:20.010000"],["2024-07-25T08:21:21.010000"],["2024-07-25T08:21:22.010000"],["2024-07-25T08:21:23.010000"],["2024-07-25T08:21:24.010000"],["2024-07-25T08:21:25.010000"],["2024-07-25T08:21:26.010000"],["2024-07-25T08:21:27.010000"],["2024-07-25T08:21:28.010000"],["2024-07-25T08:21:29.010000"],["2024-07-25T08:21:30.010000"],["2024-07-25T08:21:31.010000"],["2024-07-25T08:21:32.010000"],["2024-07-25T08:21:33.010000"],["2024-07-25T08:21:34.010000"],["2024-07-25T08:21:35.010000"],["2024-07-25T08:21:36.010000"],["2024-07-25T08:21:37.010000"],["2024-07-25T08:21:38.010000"],["2024-07-25T08:21:39.010000"],["2024-07-25T08:21:40.010000"],["2024-07-25T08:21:41.010000"],["2024-07-25T08:21:42.010000"],["2024-07-25T08:21:43.010000"],["2024-07-25T08:21:44.010000"],["2024-07-25T08:21:45.010000"],["2024-07-25T08:21:46.010000"],["2024-07-25T08:21:47.010000"],["2024-07-25T08:21:48.010000"],["2024-07-25T08:21:49.010000"],["2024-07-25T08:21:50.010000"],["2024-07-25T08:21:51.010000"],["2024-07-25T08:21:52.010000"],["2024-07-25T08:21:53.010000"],["2024-07-25T08:21:54.010000"],["2024-07-25T08:21:55.010000"],["2024-07-25T08:21:56.010000"],["2024-07-25T08:21:57.010000"],["2024-07-25T08:21:58.010000"],["2024-07-25T08:21:59.010000"],["2024-07-25T08:22:00.010000"],["2024-07-25T08:22:01.010000"],["2024-07-25T08:22:02.010000"],["2024-07-25T08:22:03.010000"],["2024-07-25T08:22:04.010000"],["2024-07-25T08:22:05.010000"],["2024-07-25T08:22:06.010000"],["2024-07-25T08:22:07.010000"],["2024-07-25T08:22:08.010000"],["2024-07-25T08:22:09.010000"],["2024-07-25T08:22:10.010000"],["2024-07-25T08:22:11.010000"],["2024-07-25T08:22:12.010000"],["2024-07-25T08:22:13.010000"],["2024-07-25T08:22:14.010000"],["2024-07-25T08:22:15.010000"],["2024-07-25T08:22:16.010000"],["2024-07-25T08:22:17.010000"],["2024-07-25T08:22:18.010000"],["2024-07-25T08:22:19.010000"],["2024-07-25T08:22:20.010000"],["2024-07-25T08:22:21.010000"],["2024-07-25T08:22:22.010000"],["2024-07-25T08:22:23.010000"],["2024-07-25T08:22:24.010000"],["2024-07-25T08:22:25.010000"],["2024-07-25T08:22:26.010000"],["2024-07-25T08:22:27.010000"],["2024-07-25T08:22:28.010000"],["2024-07-25T08:22:29.010000"],["2024-07-25T08:22:30.010000"],["2024-07-25T08:22:31.010000"],["2024-07-25T08:22:32.010000"],["2024-07-25T08:22:33.010000"],["2024-07-25T08:22:34.010000"],["2024-07-25T08:22:35.010000"],["2024-07-25T08:22:36.010000"],["2024-07-25T08:22:37.010000"],["2024-07-25T08:22:38.010000"],["2024-07-25T08:22:39.010000"],["2024-07-25T08:22:40.010000"],["2024-07-25T08:22:41.010000"],["2024-07-25T08:22:42.010000"],["2024-07-25T08:22:43.010000"],["2024-07-25T08:22:44.010000"],["2024-07-25T08:22:45.010000"],["2024-07-25T08:22:46.010000"],["2024-07-25T08:22:47.010000"],["2024-07-25T08:22:48.010000"],["2024-07-25T08:22:49.010000"],["2024-07-25T08:22:50.010000"],["2024-07-25T08:22:51.010000"],["2024-07-25T08:22:52.010000"],["2024-07-25T08:22:53.010000"],["2024-07-25T08:22:54.010000"],["2024-07-25T08:22:55.010000"],["2024-07-25T08:22:56.010000"],["2024-07-25T08:22:57.010000"],["2024-07-25T08:22:58.010000"],["2024-07-25T08:22:59.010000"],["2024-07-25T08:23:00.010000"],["2024-07-25T08:23:01.010000"],["2024-07-25T08:23:02.010000"],["2024-07-25T08:23:03.010000"],["2024-07-25T08:23:04.010000"],["2024-07-25T08:23:05.010000"],["2024-07-25T08:23:06.010000"],["2024-07-25T08:23:07.010000"],["2024-07-25T08:23:08.010000"],["2024-07-25T08:23:09.010000"],["2024-07-25T08:23:10.010000"],["2024-07-25T08:23:11.010000"],["2024-07-25T08:23:12.010000"],["2024-07-25T08:23:13.010000"],["2024-07-25T08:23:14.010000"],["2024-07-25T08:23:15.010000"],["2024-07-25T08:23:16.010000"],["2024-07-25T08:23:17.010000"],["2024-07-25T08:23:18.010000"],["2024-07-25T08:23:19.010000"],["2024-07-25T08:23:20.010000"],["2024-07-25T08:23:21.010000"],["2024-07-25T08:23:22.010000"],["2024-07-25T08:23:23.010000"],["2024-07-25T08:23:24.010000"],["2024-07-25T08:23:25.010000"],["2024-07-25T08:23:26.010000"],["2024-07-25T08:23:27.010000"],["2024-07-25T08:23:28.010000"],["2024-07-25T08:23:29.010000"],["2024-07-25T08:23:30.010000"],["2024-07-25T08:23:31.010000"],["2024-07-25T08:23:32.010000"],["2024-07-25T08:23:33.010000"],["2024-07-25T08:23:34.010000"],["2024-07-25T08:23:35.010000"],["2024-07-25T08:23:36.010000"],["2024-07-25T08:23:37.010000"],["2024-07-25T08:23:38.010000"],["2024-07-25T08:23:39.010000"],["2024-07-25T08:23:40.010000"],["2024-07-25T08:23:41.010000"],["2024-07-25T08:23:42.010000"],["2024-07-25T08:23:43.010000"],["2024-07-25T08:23:44.010000"],["2024-07-25T08:23:45.010000"],["2024-07-25T08:23:46.010000"],["2024-07-25T08:23:47.010000"],["2024-07-25T08:23:48.010000"],["2024-07-25T08:23:49.010000"],["2024-07-25T08:23:50.010000"],["2024-07-25T08:23:51.010000"],["2024-07-25T08:23:52.010000"],["2024-07-25T08:23:53.010000"],["2024-07-25T08:23:54.010000"],["2024-07-25T08:23:55.010000"],["2024-07-25T08:23:56.010000"],["2024-07-25T08:23:57.010000"],["2024-07-25T08:23:58.010000"],["2024-07-25T08:23:59.010000"],["2024-07-25T08:24:00.010000"],["2024-07-25T08:24:01.010000"],["2024-07-25T08:24:02.010000"],["2024-07-25T08:24:03.010000"],["2024-07-25T08:24:04.010000"],["2024-07-25T08:24:05.010000"],["2024-07-25T08:24:06.010000"],["2024-07-25T08:24:07.010000"],["2024-07-25T08:24:08.010000"],["2024-07-25T08:24:09.010000"],["2024-07-25T08:24:10.010000"],["2024-07-25T08:24:11.010000"],["2024-07-25T08:24:12.010000"],["2024-07-25T08:24:13.010000"],["2024-07-25T08:24:14.010000"],["2024-07-25T08:24:15.010000"],["2024-07-25T08:24:16.010000"],["2024-07-25T08:24:17.010000"],["2024-07-25T08:24:18.010000"],["2024-07-25T08:24:19.010000"],["2024-07-25T08:24:20.010000"],["2024-07-25T08:24:21.010000"],["2024-07-25T08:24:22.010000"],["2024-07-25T08:24:23.010000"],["2024-07-25T08:24:24.010000"],["2024-07-25T08:24:25.010000"],["2024-07-25T08:24:26.010000"],["2024-07-25T08:24:27.010000"],["2024-07-25T08:24:28.010000"],["2024-07-25T08:24:29.010000"],["2024-07-25T08:24:30.010000"],["2024-07-25T08:24:31.010000"],["2024-07-25T08:24:32.010000"],["2024-07-25T08:24:33.010000"],["2024-07-25T08:24:34.010000"],["2024-07-25T08:24:35.010000"],["2024-07-25T08:24:36.010000"],["2024-07-25T08:24:37.010000"],["2024-07-25T08:24:38.010000"],["2024-07-25T08:24:39.010000"],["2024-07-25T08:24:40.010000"],["2024-07-25T08:24:41.010000"],["2024-07-25T08:24:42.010000"],["2024-07-25T08:24:43.010000"],["2024-07-25T08:24:44.010000"],["2024-07-25T08:24:45.010000"],["2024-07-25T08:24:46.010000"],["2024-07-25T08:24:47.010000"],["2024-07-25T08:24:48.010000"],["2024-07-25T08:24:49.010000"],["2024-07-25T08:24:50.010000"],["2024-07-25T08:24:51.010000"],["2024-07-25T08:24:52.010000"],["2024-07-25T08:24:53.010000"],["2024-07-25T08:24:54.010000"],["2024-07-25T08:24:55.010000"],["2024-07-25T08:24:56.010000"],["2024-07-25T08:24:57.010000"],["2024-07-25T08:24:58.010000"],["2024-07-25T08:24:59.010000"],["2024-07-25T08:25:00.010000"],["2024-07-25T08:25:01.010000"],["2024-07-25T08:25:02.010000"],["2024-07-25T08:25:03.010000"],["2024-07-25T08:25:04.010000"],["2024-07-25T08:25:05.010000"],["2024-07-25T08:25:06.010000"],["2024-07-25T08:25:07.010000"],["2024-07-25T08:25:08.010000"],["2024-07-25T08:25:09.010000"],["2024-07-25T08:25:10.010000"],["2024-07-25T08:25:11.010000"],["2024-07-25T08:25:12.010000"],["2024-07-25T08:25:13.010000"],["2024-07-25T08:25:14.010000"],["2024-07-25T08:25:15.010000"],["2024-07-25T08:25:16.010000"],["2024-07-25T08:25:17.010000"],["2024-07-25T08:25:18.010000"],["2024-07-25T08:25:19.010000"],["2024-07-25T08:25:20.010000"],["2024-07-25T08:25:21.010000"],["2024-07-25T08:25:22.010000"],["2024-07-25T08:25:23.010000"],["2024-07-25T08:25:24.010000"],["2024-07-25T08:25:25.010000"],["2024-07-25T08:25:26.010000"],["2024-07-25T08:25:27.010000"],["2024-07-25T08:25:28.010000"],["2024-07-25T08:25:29.010000"],["2024-07-25T08:25:30.010000"],["2024-07-25T08:25:31.010000"],["2024-07-25T08:25:32.010000"],["2024-07-25T08:25:33.010000"],["2024-07-25T08:25:34.010000"],["2024-07-25T08:25:35.010000"],["2024-07-25T08:25:36.010000"],["2024-07-25T08:25:37.010000"],["2024-07-25T08:25:38.010000"],["2024-07-25T08:25:39.010000"],["2024-07-25T08:25:40.010000"],["2024-07-25T08:25:41.010000"],["2024-07-25T08:25:42.010000"],["2024-07-25T08:25:43.010000"],["2024-07-25T08:25:44.010000"],["2024-07-25T08:25:45.010000"],["2024-07-25T08:25:46.010000"],["2024-07-25T08:25:47.010000"],["2024-07-25T08:25:48.010000"],["2024-07-25T08:25:49.010000"],["2024-07-25T08:25:50.010000"],["2024-07-25T08:25:51.010000"],["2024-07-25T08:25:52.010000"],["2024-07-25T08:25:53.010000"],["2024-07-25T08:25:54.010000"],["2024-07-25T08:25:55.010000"],["2024-07-25T08:25:56.010000"],["2024-07-25T08:25:57.010000"],["2024-07-25T08:25:58.010000"],["2024-07-25T08:25:59.010000"],["2024-07-25T08:26:00.010000"],["2024-07-25T08:26:01.010000"],["2024-07-25T08:26:02.010000"],["2024-07-25T08:26:03.010000"],["2024-07-25T08:26:04.010000"],["2024-07-25T08:26:05.010000"],["2024-07-25T08:26:06.010000"],["2024-07-25T08:26:07.010000"],["2024-07-25T08:26:08.010000"],["2024-07-25T08:26:09.010000"],["2024-07-25T08:26:10.010000"],["2024-07-25T08:26:11.010000"],["2024-07-25T08:26:12.010000"],["2024-07-25T08:26:13.010000"],["2024-07-25T08:26:14.010000"],["2024-07-25T08:26:15.010000"],["2024-07-25T08:26:16.010000"],["2024-07-25T08:26:17.010000"],["2024-07-25T08:26:18.010000"],["2024-07-25T08:26:19.010000"],["2024-07-25T08:26:20.010000"],["2024-07-25T08:26:21.010000"],["2024-07-25T08:26:22.010000"],["2024-07-25T08:26:23.010000"],["2024-07-25T08:26:24.010000"],["2024-07-25T08:26:25.010000"],["2024-07-25T08:26:26.010000"],["2024-07-25T08:26:27.010000"],["2024-07-25T08:26:28.010000"],["2024-07-25T08:26:29.010000"],["2024-07-25T08:26:30.010000"],["2024-07-25T08:26:31.010000"],["2024-07-25T08:26:32.010000"],["2024-07-25T08:26:33.010000"],["2024-07-25T08:26:34.010000"],["2024-07-25T08:26:35.010000"],["2024-07-25T08:26:36.010000"],["2024-07-25T08:26:37.010000"],["2024-07-25T08:26:38.010000"],["2024-07-25T08:26:39.010000"],["2024-07-25T08:26:40.010000"],["2024-07-25T08:26:41.010000"],["2024-07-25T08:26:42.010000"],["2024-07-25T08:26:43.010000"],["2024-07-25T08:26:44.010000"],["2024-07-25T08:26:45.010000"],["2024-07-25T08:26:46.010000"],["2024-07-25T08:26:47.010000"],["2024-07-25T08:26:48.010000"],["2024-07-25T08:26:49.010000"],["2024-07-25T08:26:50.010000"],["2024-07-25T08:26:51.010000"],["2024-07-25T08:26:52.010000"],["2024-07-25T08:26:53.010000"],["2024-07-25T08:26:54.010000"],["2024-07-25T08:26:55.010000"],["2024-07-25T08:26:56.010000"],["2024-07-25T08:26:57.010000"],["2024-07-25T08:26:58.010000"],["2024-07-25T08:26:59.010000"],["2024-07-25T08:27:00.010000"],["2024-07-25T08:27:01.010000"],["2024-07-25T08:27:02.010000"],["2024-07-25T08:27:03.010000"],["2024-07-25T08:27:04.010000"],["2024-07-25T08:27:05.010000"],["2024-07-25T08:27:06.010000"],["2024-07-25T08:27:07.010000"],["2024-07-25T08:27:08.010000"],["2024-07-25T08:27:09.010000"],["2024-07-25T08:27:10.010000"],["2024-07-25T08:27:11.010000"],["2024-07-25T08:27:12.010000"],["2024-07-25T08:27:13.010000"],["2024-07-25T08:27:14.010000"],["2024-07-25T08:27:15.010000"],["2024-07-25T08:27:16.010000"],["2024-07-25T08:27:17.010000"],["2024-07-25T08:27:18.010000"],["2024-07-25T08:27:19.010000"],["2024-07-25T08:27:20.010000"],["2024-07-25T08:27:21.010000"],["2024-07-25T08:27:22.010000"],["2024-07-25T08:27:23.010000"],["2024-07-25T08:27:24.010000"],["2024-07-25T08:27:25.010000"],["2024-07-25T08:27:26.010000"],["2024-07-25T08:27:27.010000"],["2024-07-25T08:27:28.010000"],["2024-07-25T08:27:29.010000"],["2024-07-25T08:27:30.010000"],["2024-07-25T08:27:31.010000"],["2024-07-25T08:27:32.010000"],["2024-07-25T08:27:33.010000"],["2024-07-25T08:27:34.010000"],["2024-07-25T08:27:35.010000"],["2024-07-25T08:27:36.010000"],["2024-07-25T08:27:37.010000"],["2024-07-25T08:27:38.010000"],["2024-07-25T08:27:39.010000"],["2024-07-25T08:27:40.010000"],["2024-07-25T08:27:41.010000"],["2024-07-25T08:27:42.010000"],["2024-07-25T08:27:43.010000"],["2024-07-25T08:27:44.010000"],["2024-07-25T08:27:45.010000"],["2024-07-25T08:27:46.010000"],["2024-07-25T08:27:47.010000"],["2024-07-25T08:27:48.010000"],["2024-07-25T08:27:49.010000"],["2024-07-25T08:27:50.010000"],["2024-07-25T08:27:51.010000"],["2024-07-25T08:27:52.010000"],["2024-07-25T08:27:53.010000"],["2024-07-25T08:27:54.010000"],["2024-07-25T08:27:55.010000"],["2024-07-25T08:27:56.010000"],["2024-07-25T08:27:57.010000"],["2024-07-25T08:27:58.010000"],["2024-07-25T08:27:59.010000"],["2024-07-25T08:28:00.010000"],["2024-07-25T08:28:01.010000"],["2024-07-25T08:28:02.010000"],["2024-07-25T08:28:03.010000"],["2024-07-25T08:28:04.010000"],["2024-07-25T08:28:05.010000"],["2024-07-25T08:28:06.010000"],["2024-07-25T08:28:07.010000"],["2024-07-25T08:28:08.010000"],["2024-07-25T08:28:09.010000"],["2024-07-25T08:28:10.010000"],["2024-07-25T08:28:11.010000"],["2024-07-25T08:28:12.010000"],["2024-07-25T08:28:13.010000"],["2024-07-25T08:28:14.010000"],["2024-07-25T08:28:15.010000"],["2024-07-25T08:28:16.010000"],["2024-07-25T08:28:17.010000"],["2024-07-25T08:28:18.010000"],["2024-07-25T08:28:19.010000"],["2024-07-25T08:28:20.010000"],["2024-07-25T08:28:21.010000"],["2024-07-25T08:28:22.010000"],["2024-07-25T08:28:23.010000"],["2024-07-25T08:28:24.010000"],["2024-07-25T08:28:25.010000"],["2024-07-25T08:28:26.010000"],["2024-07-25T08:28:27.010000"],["2024-07-25T08:28:28.010000"],["2024-07-25T08:28:29.010000"],["2024-07-25T08:28:30.010000"],["2024-07-25T08:28:31.010000"],["2024-07-25T08:28:32.010000"],["2024-07-25T08:28:33.010000"],["2024-07-25T08:28:34.010000"],["2024-07-25T08:28:35.010000"],["2024-07-25T08:28:36.010000"],["2024-07-25T08:28:37.010000"],["2024-07-25T08:28:38.010000"],["2024-07-25T08:28:39.010000"],["2024-07-25T08:28:40.010000"],["2024-07-25T08:28:41.010000"],["2024-07-25T08:28:42.010000"],["2024-07-25T08:28:43.010000"],["2024-07-25T08:28:44.010000"],["2024-07-25T08:28:45.010000"],["2024-07-25T08:28:46.010000"],["2024-07-25T08:28:47.010000"],["2024-07-25T08:28:48.010000"],["2024-07-25T08:28:49.010000"],["2024-07-25T08:28:50.010000"],["2024-07-25T08:28:51.010000"],["2024-07-25T08:28:52.010000"],["2024-07-25T08:28:53.010000"],["2024-07-25T08:28:54.010000"],["2024-07-25T08:28:55.010000"],["2024-07-25T08:28:56.010000"],["2024-07-25T08:28:57.010000"],["2024-07-25T08:28:58.010000"],["2024-07-25T08:28:59.010000"],["2024-07-25T08:29:00.010000"],["2024-07-25T08:29:01.010000"],["2024-07-25T08:29:02.010000"],["2024-07-25T08:29:03.010000"],["2024-07-25T08:29:04.010000"],["2024-07-25T08:29:05.010000"],["2024-07-25T08:29:06.010000"],["2024-07-25T08:29:07.010000"],["2024-07-25T08:29:08.010000"],["2024-07-25T08:29:09.010000"],["2024-07-25T08:29:10.010000"],["2024-07-25T08:29:11.010000"],["2024-07-25T08:29:12.010000"],["2024-07-25T08:29:13.010000"],["2024-07-25T08:29:14.010000"],["2024-07-25T08:29:15.010000"],["2024-07-25T08:29:16.010000"],["2024-07-25T08:29:17.010000"],["2024-07-25T08:29:18.010000"],["2024-07-25T08:29:19.010000"],["2024-07-25T08:29:20.010000"],["2024-07-25T08:29:21.010000"],["2024-07-25T08:29:22.010000"],["2024-07-25T08:29:23.010000"],["2024-07-25T08:29:24.010000"],["2024-07-25T08:29:25.010000"],["2024-07-25T08:29:26.010000"],["2024-07-25T08:29:27.010000"],["2024-07-25T08:29:28.010000"],["2024-07-25T08:29:29.010000"],["2024-07-25T08:29:30.010000"],["2024-07-25T08:29:31.010000"],["2024-07-25T08:29:32.010000"],["2024-07-25T08:29:33.010000"],["2024-07-25T08:29:34.010000"],["2024-07-25T08:29:35.010000"],["2024-07-25T08:29:36.010000"],["2024-07-25T08:29:37.010000"],["2024-07-25T08:29:38.010000"],["2024-07-25T08:29:39.010000"],["2024-07-25T08:29:40.010000"],["2024-07-25T08:29:41.010000"],["2024-07-25T08:29:42.010000"],["2024-07-25T08:29:43.010000"],["2024-07-25T08:29:44.010000"],["2024-07-25T08:29:45.010000"],["2024-07-25T08:29:46.010000"],["2024-07-25T08:29:47.010000"],["2024-07-25T08:29:48.010000"],["2024-07-25T08:29:49.010000"],["2024-07-25T08:29:50.010000"],["2024-07-25T08:29:51.010000"],["2024-07-25T08:29:52.010000"],["2024-07-25T08:29:53.010000"],["2024-07-25T08:29:54.010000"],["2024-07-25T08:29:55.010000"],["2024-07-25T08:29:56.010000"],["2024-07-25T08:29:57.010000"],["2024-07-25T08:29:58.010000"],["2024-07-25T08:29:59.010000"],["2024-07-25T08:30:00.010000"],["2024-07-25T08:30:01.010000"],["2024-07-25T08:30:02.010000"],["2024-07-25T08:30:03.010000"],["2024-07-25T08:30:04.010000"],["2024-07-25T08:30:05.010000"],["2024-07-25T08:30:06.010000"],["2024-07-25T08:30:07.010000"],["2024-07-25T08:30:08.010000"],["2024-07-25T08:30:09.010000"],["2024-07-25T08:30:10.010000"],["2024-07-25T08:30:11.010000"],["2024-07-25T08:30:12.010000"],["2024-07-25T08:30:13.010000"],["2024-07-25T08:30:14.010000"],["2024-07-25T08:30:15.010000"],["2024-07-25T08:30:16.010000"],["2024-07-25T08:30:17.010000"],["2024-07-25T08:30:18.010000"],["2024-07-25T08:30:19.010000"],["2024-07-25T08:30:20.010000"],["2024-07-25T08:30:21.010000"],["2024-07-25T08:30:22.010000"],["2024-07-25T08:30:23.010000"],["2024-07-25T08:30:24.010000"],["2024-07-25T08:30:25.010000"],["2024-07-25T08:30:26.010000"],["2024-07-25T08:30:27.010000"],["2024-07-25T08:30:28.010000"],["2024-07-25T08:30:29.010000"],["2024-07-25T08:30:30.010000"],["2024-07-25T08:30:31.010000"],["2024-07-25T08:30:32.010000"],["2024-07-25T08:30:33.010000"],["2024-07-25T08:30:34.010000"],["2024-07-25T08:30:35.010000"],["2024-07-25T08:30:36.010000"],["2024-07-25T08:30:37.010000"],["2024-07-25T08:30:38.010000"],["2024-07-25T08:30:39.010000"],["2024-07-25T08:30:40.010000"],["2024-07-25T08:30:41.010000"],["2024-07-25T08:30:42.010000"],["2024-07-25T08:30:43.010000"],["2024-07-25T08:30:44.010000"],["2024-07-25T08:30:45.010000"],["2024-07-25T08:30:46.010000"],["2024-07-25T08:30:47.010000"],["2024-07-25T08:30:48.010000"],["2024-07-25T08:30:49.010000"],["2024-07-25T08:30:50.010000"],["2024-07-25T08:30:51.010000"],["2024-07-25T08:30:52.010000"],["2024-07-25T08:30:53.010000"],["2024-07-25T08:30:54.010000"],["2024-07-25T08:30:55.010000"],["2024-07-25T08:30:56.010000"],["2024-07-25T08:30:57.010000"],["2024-07-25T08:30:58.010000"],["2024-07-25T08:30:59.010000"],["2024-07-25T08:31:00.010000"],["2024-07-25T08:31:01.010000"],["2024-07-25T08:31:02.010000"],["2024-07-25T08:31:03.010000"],["2024-07-25T08:31:04.010000"],["2024-07-25T08:31:05.010000"],["2024-07-25T08:31:06.010000"],["2024-07-25T08:31:07.010000"],["2024-07-25T08:31:08.010000"],["2024-07-25T08:31:09.010000"],["2024-07-25T08:31:10.010000"],["2024-07-25T08:31:11.010000"],["2024-07-25T08:31:12.010000"],["2024-07-25T08:31:13.010000"],["2024-07-25T08:31:14.010000"],["2024-07-25T08:31:15.010000"],["2024-07-25T08:31:16.010000"],["2024-07-25T08:31:17.010000"],["2024-07-25T08:31:18.010000"],["2024-07-25T08:31:19.010000"],["2024-07-25T08:31:20.010000"],["2024-07-25T08:31:21.010000"],["2024-07-25T08:31:22.010000"],["2024-07-25T08:31:23.010000"],["2024-07-25T08:31:24.010000"],["2024-07-25T08:31:25.010000"],["2024-07-25T08:31:26.010000"],["2024-07-25T08:31:27.010000"],["2024-07-25T08:31:28.010000"],["2024-07-25T08:31:29.010000"],["2024-07-25T08:31:30.010000"],["2024-07-25T08:31:31.010000"],["2024-07-25T08:31:32.010000"],["2024-07-25T08:31:33.010000"],["2024-07-25T08:31:34.010000"],["2024-07-25T08:31:35.010000"],["2024-07-25T08:31:36.010000"],["2024-07-25T08:31:37.010000"],["2024-07-25T08:31:38.010000"],["2024-07-25T08:31:39.010000"],["2024-07-25T08:31:40.010000"],["2024-07-25T08:31:41.010000"],["2024-07-25T08:31:42.010000"],["2024-07-25T08:31:43.010000"],["2024-07-25T08:31:44.010000"],["2024-07-25T08:31:45.010000"],["2024-07-25T08:31:46.010000"],["2024-07-25T08:31:47.010000"],["2024-07-25T08:31:48.010000"],["2024-07-25T08:31:49.010000"],["2024-07-25T08:31:50.010000"],["2024-07-25T08:31:51.010000"],["2024-07-25T08:31:52.010000"],["2024-07-25T08:31:53.010000"],["2024-07-25T08:31:54.010000"],["2024-07-25T08:31:55.010000"],["2024-07-25T08:31:56.010000"],["2024-07-25T08:31:57.010000"],["2024-07-25T08:31:58.010000"],["2024-07-25T08:31:59.010000"],["2024-07-25T08:32:00.010000"],["2024-07-25T08:32:01.010000"],["2024-07-25T08:32:02.010000"],["2024-07-25T08:32:03.010000"],["2024-07-25T08:32:04.010000"],["2024-07-25T08:32:05.010000"],["2024-07-25T08:32:06.010000"],["2024-07-25T08:32:07.010000"],["2024-07-25T08:32:08.010000"],["2024-07-25T08:32:09.010000"],["2024-07-25T08:32:10.010000"],["2024-07-25T08:32:11.010000"],["2024-07-25T08:32:12.010000"],["2024-07-25T08:32:13.010000"],["2024-07-25T08:32:14.010000"],["2024-07-25T08:32:15.010000"],["2024-07-25T08:32:16.010000"],["2024-07-25T08:32:17.010000"],["2024-07-25T08:32:18.010000"],["2024-07-25T08:32:19.010000"],["2024-07-25T08:32:20.010000"],["2024-07-25T08:32:21.010000"],["2024-07-25T08:32:22.010000"],["2024-07-25T08:32:23.010000"],["2024-07-25T08:32:24.010000"],["2024-07-25T08:32:25.010000"],["2024-07-25T08:32:26.010000"],["2024-07-25T08:32:27.010000"],["2024-07-25T08:32:28.010000"],["2024-07-25T08:32:29.010000"],["2024-07-25T08:32:30.010000"],["2024-07-25T08:32:31.010000"],["2024-07-25T08:32:32.010000"],["2024-07-25T08:32:33.010000"],["2024-07-25T08:32:34.010000"],["2024-07-25T08:32:35.010000"],["2024-07-25T08:32:36.010000"],["2024-07-25T08:32:37.010000"],["2024-07-25T08:32:38.010000"],["2024-07-25T08:32:39.010000"],["2024-07-25T08:32:40.010000"],["2024-07-25T08:32:41.010000"],["2024-07-25T08:32:42.010000"],["2024-07-25T08:32:43.010000"],["2024-07-25T08:32:44.010000"],["2024-07-25T08:32:45.010000"],["2024-07-25T08:32:46.010000"],["2024-07-25T08:32:47.010000"],["2024-07-25T08:32:48.010000"],["2024-07-25T08:32:49.010000"],["2024-07-25T08:32:50.010000"],["2024-07-25T08:32:51.010000"],["2024-07-25T08:32:52.010000"],["2024-07-25T08:32:53.010000"],["2024-07-25T08:32:54.010000"],["2024-07-25T08:32:55.010000"],["2024-07-25T08:32:56.010000"],["2024-07-25T08:32:57.010000"],["2024-07-25T08:32:58.010000"],["2024-07-25T08:32:59.010000"],["2024-07-25T08:33:00.010000"],["2024-07-25T08:33:01.010000"],["2024-07-25T08:33:02.010000"],["2024-07-25T08:33:03.010000"],["2024-07-25T08:33:04.010000"],["2024-07-25T08:33:05.010000"],["2024-07-25T08:33:06.010000"],["2024-07-25T08:33:07.010000"],["2024-07-25T08:33:08.010000"],["2024-07-25T08:33:09.010000"],["2024-07-25T08:33:10.010000"],["2024-07-25T08:33:11.010000"],["2024-07-25T08:33:12.010000"],["2024-07-25T08:33:13.010000"],["2024-07-25T08:33:14.010000"],["2024-07-25T08:33:15.010000"],["2024-07-25T08:33:16.010000"],["2024-07-25T08:33:17.010000"],["2024-07-25T08:33:18.010000"],["2024-07-25T08:33:19.010000"],["2024-07-25T08:33:20.010000"],["2024-07-25T08:33:21.010000"],["2024-07-25T08:33:22.010000"],["2024-07-25T08:33:23.010000"],["2024-07-25T08:33:24.010000"],["2024-07-25T08:33:25.010000"],["2024-07-25T08:33:26.010000"],["2024-07-25T08:33:27.010000"],["2024-07-25T08:33:28.010000"],["2024-07-25T08:33:29.010000"],["2024-07-25T08:33:30.010000"],["2024-07-25T08:33:31.010000"],["2024-07-25T08:33:32.010000"],["2024-07-25T08:33:33.010000"],["2024-07-25T08:33:34.010000"],["2024-07-25T08:33:35.010000"],["2024-07-25T08:33:36.010000"],["2024-07-25T08:33:37.010000"],["2024-07-25T08:33:38.010000"],["2024-07-25T08:33:39.010000"],["2024-07-25T08:33:40.010000"],["2024-07-25T08:33:41.010000"],["2024-07-25T08:33:42.010000"],["2024-07-25T08:33:43.010000"],["2024-07-25T08:33:44.010000"],["2024-07-25T08:33:45.010000"],["2024-07-25T08:33:46.010000"],["2024-07-25T08:33:47.010000"],["2024-07-25T08:33:48.010000"],["2024-07-25T08:33:49.010000"],["2024-07-25T08:33:50.010000"],["2024-07-25T08:33:51.010000"],["2024-07-25T08:33:52.010000"],["2024-07-25T08:33:53.010000"],["2024-07-25T08:33:54.010000"],["2024-07-25T08:33:55.010000"],["2024-07-25T08:33:56.010000"],["2024-07-25T08:33:57.010000"],["2024-07-25T08:33:58.010000"],["2024-07-25T08:33:59.010000"],["2024-07-25T08:34:00.010000"],["2024-07-25T08:34:01.010000"],["2024-07-25T08:34:02.010000"],["2024-07-25T08:34:03.010000"],["2024-07-25T08:34:04.010000"],["2024-07-25T08:34:05.010000"],["2024-07-25T08:34:06.010000"],["2024-07-25T08:34:07.010000"],["2024-07-25T08:34:08.010000"],["2024-07-25T08:34:09.010000"],["2024-07-25T08:34:10.010000"],["2024-07-25T08:34:11.010000"],["2024-07-25T08:34:12.010000"],["2024-07-25T08:34:13.010000"],["2024-07-25T08:34:14.010000"],["2024-07-25T08:34:15.010000"],["2024-07-25T08:34:16.010000"],["2024-07-25T08:34:17.010000"],["2024-07-25T08:34:18.010000"],["2024-07-25T08:34:19.010000"],["2024-07-25T08:34:20.010000"],["2024-07-25T08:34:21.010000"],["2024-07-25T08:34:22.010000"],["2024-07-25T08:34:23.010000"],["2024-07-25T08:34:24.010000"],["2024-07-25T08:34:25.010000"],["2024-07-25T08:34:26.010000"],["2024-07-25T08:34:27.010000"],["2024-07-25T08:34:28.010000"],["2024-07-25T08:34:29.010000"],["2024-07-25T08:34:30.010000"],["2024-07-25T08:34:31.010000"],["2024-07-25T08:34:32.010000"],["2024-07-25T08:34:33.010000"],["2024-07-25T08:34:34.010000"],["2024-07-25T08:34:35.010000"],["2024-07-25T08:34:36.010000"],["2024-07-25T08:34:37.010000"],["2024-07-25T08:34:38.010000"],["2024-07-25T08:34:39.010000"],["2024-07-25T08:34:40.010000"],["2024-07-25T08:34:41.010000"],["2024-07-25T08:34:42.010000"],["2024-07-25T08:34:43.010000"],["2024-07-25T08:34:44.010000"],["2024-07-25T08:34:45.010000"],["2024-07-25T08:34:46.010000"],["2024-07-25T08:34:47.010000"],["2024-07-25T08:34:48.010000"],["2024-07-25T08:34:49.010000"],["2024-07-25T08:34:50.010000"],["2024-07-25T08:34:51.010000"],["2024-07-25T08:34:52.010000"],["2024-07-25T08:34:53.010000"],["2024-07-25T08:34:54.010000"],["2024-07-25T08:34:55.010000"],["2024-07-25T08:34:56.010000"],["2024-07-25T08:34:57.010000"],["2024-07-25T08:34:58.010000"],["2024-07-25T08:34:59.010000"],["2024-07-25T08:35:00.010000"],["2024-07-25T08:35:01.010000"],["2024-07-25T08:35:02.010000"],["2024-07-25T08:35:03.010000"],["2024-07-25T08:35:04.010000"],["2024-07-25T08:35:05.010000"],["2024-07-25T08:35:06.010000"],["2024-07-25T08:35:07.010000"],["2024-07-25T08:35:08.010000"],["2024-07-25T08:35:09.010000"],["2024-07-25T08:35:10.010000"],["2024-07-25T08:35:11.010000"],["2024-07-25T08:35:12.010000"],["2024-07-25T08:35:13.010000"],["2024-07-25T08:35:14.010000"],["2024-07-25T08:35:15.010000"],["2024-07-25T08:35:16.010000"],["2024-07-25T08:35:17.010000"],["2024-07-25T08:35:18.010000"],["2024-07-25T08:35:19.010000"],["2024-07-25T08:35:20.010000"],["2024-07-25T08:35:21.010000"],["2024-07-25T08:35:22.010000"],["2024-07-25T08:35:23.010000"],["2024-07-25T08:35:24.010000"],["2024-07-25T08:35:25.010000"],["2024-07-25T08:35:26.010000"],["2024-07-25T08:35:27.010000"],["2024-07-25T08:35:28.010000"],["2024-07-25T08:35:29.010000"],["2024-07-25T08:35:30.010000"],["2024-07-25T08:35:31.010000"],["2024-07-25T08:35:32.010000"],["2024-07-25T08:35:33.010000"],["2024-07-25T08:35:34.010000"],["2024-07-25T08:35:35.010000"],["2024-07-25T08:35:36.010000"],["2024-07-25T08:35:37.010000"],["2024-07-25T08:35:38.010000"],["2024-07-25T08:35:39.010000"],["2024-07-25T08:35:40.010000"],["2024-07-25T08:35:41.010000"],["2024-07-25T08:35:42.010000"],["2024-07-25T08:35:43.010000"],["2024-07-25T08:35:44.010000"],["2024-07-25T08:35:45.010000"],["2024-07-25T08:35:46.010000"],["2024-07-25T08:35:47.010000"],["2024-07-25T08:35:48.010000"],["2024-07-25T08:35:49.010000"],["2024-07-25T08:35:50.010000"],["2024-07-25T08:35:51.010000"],["2024-07-25T08:35:52.010000"],["2024-07-25T08:35:53.010000"],["2024-07-25T08:35:54.010000"],["2024-07-25T08:35:55.010000"],["2024-07-25T08:35:56.010000"],["2024-07-25T08:35:57.010000"],["2024-07-25T08:35:58.010000"],["2024-07-25T08:35:59.010000"],["2024-07-25T08:36:00.010000"],["2024-07-25T08:36:01.010000"],["2024-07-25T08:36:02.010000"],["2024-07-25T08:36:03.010000"],["2024-07-25T08:36:04.010000"],["2024-07-25T08:36:05.010000"],["2024-07-25T08:36:06.010000"],["2024-07-25T08:36:07.010000"],["2024-07-25T08:36:08.010000"],["2024-07-25T08:36:09.010000"],["2024-07-25T08:36:10.010000"],["2024-07-25T08:36:11.010000"],["2024-07-25T08:36:12.010000"],["2024-07-25T08:36:13.010000"],["2024-07-25T08:36:14.010000"],["2024-07-25T08:36:15.010000"],["2024-07-25T08:36:16.010000"],["2024-07-25T08:36:17.010000"],["2024-07-25T08:36:18.010000"],["2024-07-25T08:36:19.010000"],["2024-07-25T08:36:20.010000"],["2024-07-25T08:36:21.010000"],["2024-07-25T08:36:22.010000"],["2024-07-25T08:36:23.010000"],["2024-07-25T08:36:24.010000"],["2024-07-25T08:36:25.010000"],["2024-07-25T08:36:26.010000"],["2024-07-25T08:36:27.010000"],["2024-07-25T08:36:28.010000"],["2024-07-25T08:36:29.010000"],["2024-07-25T08:36:30.010000"],["2024-07-25T08:36:31.010000"],["2024-07-25T08:36:32.010000"],["2024-07-25T08:36:33.010000"],["2024-07-25T08:36:34.010000"],["2024-07-25T08:36:35.010000"],["2024-07-25T08:36:36.010000"],["2024-07-25T08:36:37.010000"],["2024-07-25T08:36:38.010000"],["2024-07-25T08:36:39.010000"],["2024-07-25T08:36:40.010000"],["2024-07-25T08:36:41.010000"],["2024-07-25T08:36:42.010000"],["2024-07-25T08:36:43.010000"],["2024-07-25T08:36:44.010000"],["2024-07-25T08:36:45.010000"],["2024-07-25T08:36:46.010000"],["2024-07-25T08:36:47.010000"],["2024-07-25T08:36:48.010000"],["2024-07-25T08:36:49.010000"],["2024-07-25T08:36:50.010000"],["2024-07-25T08:36:51.010000"],["2024-07-25T08:36:52.010000"],["2024-07-25T08:36:53.010000"],["2024-07-25T08:36:54.010000"],["2024-07-25T08:36:55.010000"],["2024-07-25T08:36:56.010000"],["2024-07-25T08:36:57.010000"],["2024-07-25T08:36:58.010000"],["2024-07-25T08:36:59.010000"],["2024-07-25T08:37:00.010000"],["2024-07-25T08:37:01.010000"],["2024-07-25T08:37:02.010000"],["2024-07-25T08:37:03.010000"],["2024-07-25T08:37:04.010000"],["2024-07-25T08:37:05.010000"],["2024-07-25T08:37:06.010000"],["2024-07-25T08:37:07.010000"],["2024-07-25T08:37:08.010000"],["2024-07-25T08:37:09.010000"],["2024-07-25T08:37:10.010000"],["2024-07-25T08:37:11.010000"],["2024-07-25T08:37:12.010000"],["2024-07-25T08:37:13.010000"],["2024-07-25T08:37:14.010000"],["2024-07-25T08:37:15.010000"],["2024-07-25T08:37:16.010000"],["2024-07-25T08:37:17.010000"],["2024-07-25T08:37:18.010000"],["2024-07-25T08:37:19.010000"],["2024-07-25T08:37:20.010000"],["2024-07-25T08:37:21.010000"],["2024-07-25T08:37:22.010000"],["2024-07-25T08:37:23.010000"],["2024-07-25T08:37:24.010000"],["2024-07-25T08:37:25.010000"],["2024-07-25T08:37:26.010000"],["2024-07-25T08:37:27.010000"],["2024-07-25T08:37:28.010000"],["2024-07-25T08:37:29.010000"],["2024-07-25T08:37:30.010000"],["2024-07-25T08:37:31.010000"],["2024-07-25T08:37:32.010000"],["2024-07-25T08:37:33.010000"],["2024-07-25T08:37:34.010000"],["2024-07-25T08:37:35.010000"],["2024-07-25T08:37:36.010000"],["2024-07-25T08:37:37.010000"],["2024-07-25T08:37:38.010000"],["2024-07-25T08:37:39.010000"],["2024-07-25T08:37:40.010000"],["2024-07-25T08:37:41.010000"],["2024-07-25T08:37:42.010000"],["2024-07-25T08:37:43.010000"],["2024-07-25T08:37:44.010000"],["2024-07-25T08:37:45.010000"],["2024-07-25T08:37:46.010000"],["2024-07-25T08:37:47.010000"],["2024-07-25T08:37:48.010000"],["2024-07-25T08:37:49.010000"],["2024-07-25T08:37:50.010000"],["2024-07-25T08:37:51.010000"],["2024-07-25T08:37:52.010000"],["2024-07-25T08:37:53.010000"],["2024-07-25T08:37:54.010000"],["2024-07-25T08:37:55.010000"],["2024-07-25T08:37:56.010000"],["2024-07-25T08:37:57.010000"],["2024-07-25T08:37:58.010000"],["2024-07-25T08:37:59.010000"],["2024-07-25T08:38:00.010000"],["2024-07-25T08:38:01.010000"],["2024-07-25T08:38:02.010000"],["2024-07-25T08:38:03.010000"],["2024-07-25T08:38:04.010000"],["2024-07-25T08:38:05.010000"],["2024-07-25T08:38:06.010000"],["2024-07-25T08:38:07.010000"],["2024-07-25T08:38:08.010000"],["2024-07-25T08:38:09.010000"],["2024-07-25T08:38:10.010000"],["2024-07-25T08:38:11.010000"],["2024-07-25T08:38:12.010000"],["2024-07-25T08:38:13.010000"],["2024-07-25T08:38:14.010000"],["2024-07-25T08:38:15.010000"],["2024-07-25T08:38:16.010000"],["2024-07-25T08:38:17.010000"],["2024-07-25T08:38:18.010000"],["2024-07-25T08:38:19.010000"],["2024-07-25T08:38:20.010000"],["2024-07-25T08:38:21.010000"],["2024-07-25T08:38:22.010000"],["2024-07-25T08:38:23.010000"],["2024-07-25T08:38:24.010000"],["2024-07-25T08:38:25.010000"],["2024-07-25T08:38:26.010000"],["2024-07-25T08:38:27.010000"],["2024-07-25T08:38:28.010000"],["2024-07-25T08:38:29.010000"],["2024-07-25T08:38:30.010000"],["2024-07-25T08:38:31.010000"],["2024-07-25T08:38:32.010000"],["2024-07-25T08:38:33.010000"],["2024-07-25T08:38:34.010000"],["2024-07-25T08:38:35.010000"],["2024-07-25T08:38:36.010000"],["2024-07-25T08:38:37.010000"],["2024-07-25T08:38:38.010000"],["2024-07-25T08:38:39.010000"],["2024-07-25T08:38:40.010000"],["2024-07-25T08:38:41.010000"],["2024-07-25T08:38:42.010000"],["2024-07-25T08:38:43.010000"],["2024-07-25T08:38:44.010000"],["2024-07-25T08:38:45.010000"],["2024-07-25T08:38:46.010000"],["2024-07-25T08:38:47.010000"],["2024-07-25T08:38:48.010000"],["2024-07-25T08:38:49.010000"],["2024-07-25T08:38:50.010000"],["2024-07-25T08:38:51.010000"],["2024-07-25T08:38:52.010000"],["2024-07-25T08:38:53.010000"],["2024-07-25T08:38:54.010000"],["2024-07-25T08:38:55.010000"],["2024-07-25T08:38:56.010000"],["2024-07-25T08:38:57.010000"],["2024-07-25T08:38:58.010000"],["2024-07-25T08:38:59.010000"],["2024-07-25T08:39:00.010000"],["2024-07-25T08:39:01.010000"],["2024-07-25T08:39:02.010000"],["2024-07-25T08:39:03.010000"],["2024-07-25T08:39:04.010000"],["2024-07-25T08:39:05.010000"],["2024-07-25T08:39:06.010000"],["2024-07-25T08:39:07.010000"],["2024-07-25T08:39:08.010000"],["2024-07-25T08:39:09.010000"],["2024-07-25T08:39:10.010000"],["2024-07-25T08:39:11.010000"],["2024-07-25T08:39:12.010000"],["2024-07-25T08:39:13.010000"],["2024-07-25T08:39:14.010000"],["2024-07-25T08:39:15.010000"],["2024-07-25T08:39:16.010000"],["2024-07-25T08:39:17.010000"],["2024-07-25T08:39:18.010000"],["2024-07-25T08:39:19.010000"],["2024-07-25T08:39:20.010000"],["2024-07-25T08:39:21.010000"],["2024-07-25T08:39:22.010000"],["2024-07-25T08:39:23.010000"],["2024-07-25T08:39:24.010000"],["2024-07-25T08:39:25.010000"],["2024-07-25T08:39:26.010000"],["2024-07-25T08:39:27.010000"],["2024-07-25T08:39:28.010000"],["2024-07-25T08:39:29.010000"],["2024-07-25T08:39:30.010000"],["2024-07-25T08:39:31.010000"],["2024-07-25T08:39:32.010000"],["2024-07-25T08:39:33.010000"],["2024-07-25T08:39:34.010000"],["2024-07-25T08:39:35.010000"],["2024-07-25T08:39:36.010000"],["2024-07-25T08:39:37.010000"],["2024-07-25T08:39:38.010000"],["2024-07-25T08:39:39.010000"],["2024-07-25T08:39:40.010000"],["2024-07-25T08:39:41.010000"],["2024-07-25T08:39:42.010000"],["2024-07-25T08:39:43.010000"],["2024-07-25T08:39:44.010000"],["2024-07-25T08:39:45.010000"],["2024-07-25T08:39:46.010000"],["2024-07-25T08:39:47.010000"],["2024-07-25T08:39:48.010000"],["2024-07-25T08:39:49.010000"],["2024-07-25T08:39:50.010000"],["2024-07-25T08:39:51.010000"],["2024-07-25T08:39:52.010000"],["2024-07-25T08:39:53.010000"],["2024-07-25T08:39:54.010000"],["2024-07-25T08:39:55.010000"],["2024-07-25T08:39:56.010000"],["2024-07-25T08:39:57.010000"],["2024-07-25T08:39:58.010000"],["2024-07-25T08:39:59.010000"],["2024-07-25T08:40:00.010000"],["2024-07-25T08:40:01.010000"],["2024-07-25T08:40:02.010000"],["2024-07-25T08:40:03.010000"],["2024-07-25T08:40:04.010000"],["2024-07-25T08:40:05.010000"],["2024-07-25T08:40:06.010000"],["2024-07-25T08:40:07.010000"],["2024-07-25T08:40:08.010000"],["2024-07-25T08:40:09.010000"],["2024-07-25T08:40:10.010000"],["2024-07-25T08:40:11.010000"],["2024-07-25T08:40:12.010000"],["2024-07-25T08:40:13.010000"],["2024-07-25T08:40:14.010000"],["2024-07-25T08:40:15.010000"],["2024-07-25T08:40:16.010000"],["2024-07-25T08:40:17.010000"],["2024-07-25T08:40:18.010000"],["2024-07-25T08:40:19.010000"],["2024-07-25T08:40:20.010000"],["2024-07-25T08:40:21.010000"],["2024-07-25T08:40:22.010000"],["2024-07-25T08:40:23.010000"],["2024-07-25T08:40:24.010000"],["2024-07-25T08:40:25.010000"],["2024-07-25T08:40:26.010000"],["2024-07-25T08:40:27.010000"],["2024-07-25T08:40:28.010000"],["2024-07-25T08:40:29.010000"],["2024-07-25T08:40:30.010000"],["2024-07-25T08:40:31.010000"],["2024-07-25T08:40:32.010000"],["2024-07-25T08:40:33.010000"],["2024-07-25T08:40:34.010000"],["2024-07-25T08:40:35.010000"],["2024-07-25T08:40:36.010000"],["2024-07-25T08:40:37.010000"],["2024-07-25T08:40:38.010000"],["2024-07-25T08:40:39.010000"],["2024-07-25T08:40:40.010000"],["2024-07-25T08:40:41.010000"],["2024-07-25T08:40:42.010000"],["2024-07-25T08:40:43.010000"],["2024-07-25T08:40:44.010000"],["2024-07-25T08:40:45.010000"],["2024-07-25T08:40:46.010000"],["2024-07-25T08:40:47.010000"],["2024-07-25T08:40:48.010000"],["2024-07-25T08:40:49.010000"],["2024-07-25T08:40:50.010000"],["2024-07-25T08:40:51.010000"],["2024-07-25T08:40:52.010000"],["2024-07-25T08:40:53.010000"],["2024-07-25T08:40:54.010000"],["2024-07-25T08:40:55.010000"],["2024-07-25T08:40:56.010000"],["2024-07-25T08:40:57.010000"],["2024-07-25T08:40:58.010000"],["2024-07-25T08:40:59.010000"],["2024-07-25T08:41:00.010000"],["2024-07-25T08:41:01.010000"],["2024-07-25T08:41:02.010000"],["2024-07-25T08:41:03.010000"],["2024-07-25T08:41:04.010000"],["2024-07-25T08:41:05.010000"],["2024-07-25T08:41:06.010000"],["2024-07-25T08:41:07.010000"],["2024-07-25T08:41:08.010000"],["2024-07-25T08:41:09.010000"],["2024-07-25T08:41:10.010000"],["2024-07-25T08:41:11.010000"],["2024-07-25T08:41:12.010000"],["2024-07-25T08:41:13.010000"],["2024-07-25T08:41:14.010000"],["2024-07-25T08:41:15.010000"],["2024-07-25T08:41:16.010000"],["2024-07-25T08:41:17.010000"],["2024-07-25T08:41:18.010000"],["2024-07-25T08:41:19.010000"],["2024-07-25T08:41:20.010000"],["2024-07-25T08:41:21.010000"],["2024-07-25T08:41:22.010000"],["2024-07-25T08:41:23.010000"],["2024-07-25T08:41:24.010000"],["2024-07-25T08:41:25.010000"],["2024-07-25T08:41:26.010000"],["2024-07-25T08:41:27.010000"],["2024-07-25T08:41:28.010000"],["2024-07-25T08:41:29.010000"],["2024-07-25T08:41:30.010000"],["2024-07-25T08:41:31.010000"],["2024-07-25T08:41:32.010000"],["2024-07-25T08:41:33.010000"],["2024-07-25T08:41:34.010000"],["2024-07-25T08:41:35.010000"],["2024-07-25T08:41:36.010000"],["2024-07-25T08:41:37.010000"],["2024-07-25T08:41:38.010000"],["2024-07-25T08:41:39.010000"],["2024-07-25T08:41:40.010000"],["2024-07-25T08:41:41.010000"],["2024-07-25T08:41:42.010000"],["2024-07-25T08:41:43.010000"],["2024-07-25T08:41:44.010000"],["2024-07-25T08:41:45.010000"],["2024-07-25T08:41:46.010000"],["2024-07-25T08:41:47.010000"],["2024-07-25T08:41:48.010000"],["2024-07-25T08:41:49.010000"],["2024-07-25T08:41:50.010000"],["2024-07-25T08:41:51.010000"],["2024-07-25T08:41:52.010000"],["2024-07-25T08:41:53.010000"],["2024-07-25T08:41:54.010000"],["2024-07-25T08:41:55.010000"],["2024-07-25T08:41:56.010000"],["2024-07-25T08:41:57.010000"],["2024-07-25T08:41:58.010000"],["2024-07-25T08:41:59.010000"],["2024-07-25T08:42:00.010000"],["2024-07-25T08:42:01.010000"],["2024-07-25T08:42:02.010000"],["2024-07-25T08:42:03.010000"],["2024-07-25T08:42:04.010000"],["2024-07-25T08:42:05.010000"],["2024-07-25T08:42:06.010000"],["2024-07-25T08:42:07.010000"],["2024-07-25T08:42:08.010000"],["2024-07-25T08:42:09.010000"],["2024-07-25T08:42:10.010000"],["2024-07-25T08:42:11.010000"],["2024-07-25T08:42:12.010000"],["2024-07-25T08:42:13.010000"],["2024-07-25T08:42:14.010000"],["2024-07-25T08:42:15.010000"],["2024-07-25T08:42:16.010000"],["2024-07-25T08:42:17.010000"],["2024-07-25T08:42:18.010000"],["2024-07-25T08:42:19.010000"],["2024-07-25T08:42:20.010000"],["2024-07-25T08:42:21.010000"],["2024-07-25T08:42:22.010000"],["2024-07-25T08:42:23.010000"],["2024-07-25T08:42:24.010000"],["2024-07-25T08:42:25.010000"],["2024-07-25T08:42:26.010000"],["2024-07-25T08:42:27.010000"],["2024-07-25T08:42:28.010000"],["2024-07-25T08:42:29.010000"],["2024-07-25T08:42:30.010000"],["2024-07-25T08:42:31.010000"],["2024-07-25T08:42:32.010000"],["2024-07-25T08:42:33.010000"],["2024-07-25T08:42:34.010000"],["2024-07-25T08:42:35.010000"],["2024-07-25T08:42:36.010000"],["2024-07-25T08:42:37.010000"],["2024-07-25T08:42:38.010000"],["2024-07-25T08:42:39.010000"],["2024-07-25T08:42:40.010000"],["2024-07-25T08:42:41.010000"],["2024-07-25T08:42:42.010000"],["2024-07-25T08:42:43.010000"],["2024-07-25T08:42:44.010000"],["2024-07-25T08:42:45.010000"],["2024-07-25T08:42:46.010000"],["2024-07-25T08:42:47.010000"],["2024-07-25T08:42:48.010000"],["2024-07-25T08:42:49.010000"],["2024-07-25T08:42:50.010000"],["2024-07-25T08:42:51.010000"],["2024-07-25T08:42:52.010000"],["2024-07-25T08:42:53.010000"],["2024-07-25T08:42:54.010000"],["2024-07-25T08:42:55.010000"],["2024-07-25T08:42:56.010000"],["2024-07-25T08:42:57.010000"],["2024-07-25T08:42:58.010000"],["2024-07-25T08:42:59.010000"],["2024-07-25T08:43:00.010000"],["2024-07-25T08:43:01.010000"],["2024-07-25T08:43:02.010000"],["2024-07-25T08:43:03.010000"],["2024-07-25T08:43:04.010000"],["2024-07-25T08:43:05.010000"],["2024-07-25T08:43:06.010000"],["2024-07-25T08:43:07.010000"],["2024-07-25T08:43:08.010000"],["2024-07-25T08:43:09.010000"],["2024-07-25T08:43:10.010000"],["2024-07-25T08:43:11.010000"],["2024-07-25T08:43:12.010000"],["2024-07-25T08:43:13.010000"],["2024-07-25T08:43:14.010000"],["2024-07-25T08:43:15.010000"],["2024-07-25T08:43:16.010000"],["2024-07-25T08:43:17.010000"],["2024-07-25T08:43:18.010000"],["2024-07-25T08:43:19.010000"],["2024-07-25T08:43:20.010000"],["2024-07-25T08:43:21.010000"],["2024-07-25T08:43:22.010000"],["2024-07-25T08:43:23.010000"],["2024-07-25T08:43:24.010000"],["2024-07-25T08:43:25.010000"],["2024-07-25T08:43:26.010000"],["2024-07-25T08:43:27.010000"],["2024-07-25T08:43:28.010000"],["2024-07-25T08:43:29.010000"],["2024-07-25T08:43:30.010000"],["2024-07-25T08:43:31.010000"],["2024-07-25T08:43:32.010000"],["2024-07-25T08:43:33.010000"],["2024-07-25T08:43:34.010000"],["2024-07-25T08:43:35.010000"],["2024-07-25T08:43:36.010000"],["2024-07-25T08:43:37.010000"],["2024-07-25T08:43:38.010000"],["2024-07-25T08:43:39.010000"],["2024-07-25T08:43:40.010000"],["2024-07-25T08:43:41.010000"],["2024-07-25T08:43:42.010000"],["2024-07-25T08:43:43.010000"],["2024-07-25T08:43:44.010000"],["2024-07-25T08:43:45.010000"],["2024-07-25T08:43:46.010000"],["2024-07-25T08:43:47.010000"],["2024-07-25T08:43:48.010000"],["2024-07-25T08:43:49.010000"],["2024-07-25T08:43:50.010000"],["2024-07-25T08:43:51.010000"],["2024-07-25T08:43:52.010000"],["2024-07-25T08:43:53.010000"],["2024-07-25T08:43:54.010000"],["2024-07-25T08:43:55.010000"],["2024-07-25T08:43:56.010000"],["2024-07-25T08:43:57.010000"],["2024-07-25T08:43:58.010000"],["2024-07-25T08:43:59.010000"],["2024-07-25T08:44:00.010000"],["2024-07-25T08:44:01.010000"],["2024-07-25T08:44:02.010000"],["2024-07-25T08:44:03.010000"],["2024-07-25T08:44:04.010000"],["2024-07-25T08:44:05.010000"],["2024-07-25T08:44:06.010000"],["2024-07-25T08:44:07.010000"],["2024-07-25T08:44:08.010000"],["2024-07-25T08:44:09.010000"],["2024-07-25T08:44:10.010000"],["2024-07-25T08:44:11.010000"],["2024-07-25T08:44:12.010000"],["2024-07-25T08:44:13.010000"],["2024-07-25T08:44:14.010000"],["2024-07-25T08:44:15.010000"],["2024-07-25T08:44:16.010000"],["2024-07-25T08:44:17.010000"],["2024-07-25T08:44:18.010000"],["2024-07-25T08:44:19.010000"],["2024-07-25T08:44:20.010000"],["2024-07-25T08:44:21.010000"],["2024-07-25T08:44:22.010000"],["2024-07-25T08:44:23.010000"],["2024-07-25T08:44:24.010000"],["2024-07-25T08:44:25.010000"],["2024-07-25T08:44:26.010000"],["2024-07-25T08:44:27.010000"],["2024-07-25T08:44:28.010000"],["2024-07-25T08:44:29.010000"],["2024-07-25T08:44:30.010000"],["2024-07-25T08:44:31.010000"],["2024-07-25T08:44:32.010000"],["2024-07-25T08:44:33.010000"],["2024-07-25T08:44:34.010000"],["2024-07-25T08:44:35.010000"],["2024-07-25T08:44:36.010000"],["2024-07-25T08:44:37.010000"],["2024-07-25T08:44:38.010000"],["2024-07-25T08:44:39.010000"],["2024-07-25T08:44:40.010000"],["2024-07-25T08:44:41.010000"],["2024-07-25T08:44:42.010000"],["2024-07-25T08:44:43.010000"],["2024-07-25T08:44:44.010000"],["2024-07-25T08:44:45.010000"],["2024-07-25T08:44:46.010000"],["2024-07-25T08:44:47.010000"],["2024-07-25T08:44:48.010000"],["2024-07-25T08:44:49.010000"],["2024-07-25T08:44:50.010000"],["2024-07-25T08:44:51.010000"],["2024-07-25T08:44:52.010000"],["2024-07-25T08:44:53.010000"],["2024-07-25T08:44:54.010000"],["2024-07-25T08:44:55.010000"],["2024-07-25T08:44:56.010000"],["2024-07-25T08:44:57.010000"],["2024-07-25T08:44:58.010000"],["2024-07-25T08:44:59.010000"],["2024-07-25T08:45:00.010000"],["2024-07-25T08:45:01.010000"],["2024-07-25T08:45:02.010000"],["2024-07-25T08:45:03.010000"],["2024-07-25T08:45:04.010000"],["2024-07-25T08:45:05.010000"],["2024-07-25T08:45:06.010000"],["2024-07-25T08:45:07.010000"],["2024-07-25T08:45:08.010000"],["2024-07-25T08:45:09.010000"],["2024-07-25T08:45:10.010000"],["2024-07-25T08:45:11.010000"],["2024-07-25T08:45:12.010000"],["2024-07-25T08:45:13.010000"],["2024-07-25T08:45:14.010000"],["2024-07-25T08:45:15.010000"],["2024-07-25T08:45:16.010000"],["2024-07-25T08:45:17.010000"],["2024-07-25T08:45:18.010000"],["2024-07-25T08:45:19.010000"],["2024-07-25T08:45:20.010000"],["2024-07-25T08:45:21.010000"],["2024-07-25T08:45:22.010000"],["2024-07-25T08:45:23.010000"],["2024-07-25T08:45:24.010000"],["2024-07-25T08:45:25.010000"],["2024-07-25T08:45:26.010000"],["2024-07-25T08:45:27.010000"],["2024-07-25T08:45:28.010000"],["2024-07-25T08:45:29.010000"],["2024-07-25T08:45:30.010000"],["2024-07-25T08:45:31.010000"],["2024-07-25T08:45:32.010000"],["2024-07-25T08:45:33.010000"],["2024-07-25T08:45:34.010000"],["2024-07-25T08:45:35.010000"],["2024-07-25T08:45:36.010000"],["2024-07-25T08:45:37.010000"],["2024-07-25T08:45:38.010000"],["2024-07-25T08:45:39.010000"],["2024-07-25T08:45:40.010000"],["2024-07-25T08:45:41.010000"],["2024-07-25T08:45:42.010000"],["2024-07-25T08:45:43.010000"],["2024-07-25T08:45:44.010000"],["2024-07-25T08:45:45.010000"],["2024-07-25T08:45:46.010000"],["2024-07-25T08:45:47.010000"],["2024-07-25T08:45:48.010000"],["2024-07-25T08:45:49.010000"],["2024-07-25T08:45:50.010000"],["2024-07-25T08:45:51.010000"],["2024-07-25T08:45:52.010000"],["2024-07-25T08:45:53.010000"],["2024-07-25T08:45:54.010000"],["2024-07-25T08:45:55.010000"],["2024-07-25T08:45:56.010000"],["2024-07-25T08:45:57.010000"],["2024-07-25T08:45:58.010000"],["2024-07-25T08:45:59.010000"],["2024-07-25T08:46:00.010000"],["2024-07-25T08:46:01.010000"],["2024-07-25T08:46:02.010000"],["2024-07-25T08:46:03.010000"],["2024-07-25T08:46:04.010000"],["2024-07-25T08:46:05.010000"],["2024-07-25T08:46:06.010000"],["2024-07-25T08:46:07.010000"],["2024-07-25T08:46:08.010000"],["2024-07-25T08:46:09.010000"],["2024-07-25T08:46:10.010000"],["2024-07-25T08:46:11.010000"],["2024-07-25T08:46:12.010000"],["2024-07-25T08:46:13.010000"],["2024-07-25T08:46:14.010000"],["2024-07-25T08:46:15.010000"],["2024-07-25T08:46:16.010000"],["2024-07-25T08:46:17.010000"],["2024-07-25T08:46:18.010000"],["2024-07-25T08:46:19.010000"],["2024-07-25T08:46:20.010000"],["2024-07-25T08:46:21.010000"],["2024-07-25T08:46:22.010000"],["2024-07-25T08:46:23.010000"],["2024-07-25T08:46:24.010000"],["2024-07-25T08:46:25.010000"],["2024-07-25T08:46:26.010000"],["2024-07-25T08:46:27.010000"],["2024-07-25T08:46:28.010000"],["2024-07-25T08:46:29.010000"],["2024-07-25T08:46:30.010000"],["2024-07-25T08:46:31.010000"],["2024-07-25T08:46:32.010000"],["2024-07-25T08:46:33.010000"],["2024-07-25T08:46:34.010000"],["2024-07-25T08:46:35.010000"],["2024-07-25T08:46:36.010000"],["2024-07-25T08:46:37.010000"],["2024-07-25T08:46:38.010000"],["2024-07-25T08:46:39.010000"],["2024-07-25T08:46:40.010000"],["2024-07-25T08:46:41.010000"],["2024-07-25T08:46:42.010000"],["2024-07-25T08:46:43.010000"],["2024-07-25T08:46:44.010000"],["2024-07-25T08:46:45.010000"],["2024-07-25T08:46:46.010000"],["2024-07-25T08:46:47.010000"],["2024-07-25T08:46:48.010000"],["2024-07-25T08:46:49.010000"],["2024-07-25T08:46:50.010000"],["2024-07-25T08:46:51.010000"],["2024-07-25T08:46:52.010000"],["2024-07-25T08:46:53.010000"],["2024-07-25T08:46:54.010000"],["2024-07-25T08:46:55.010000"],["2024-07-25T08:46:56.010000"],["2024-07-25T08:46:57.010000"],["2024-07-25T08:46:58.010000"],["2024-07-25T08:46:59.010000"],["2024-07-25T08:47:00.010000"],["2024-07-25T08:47:01.010000"],["2024-07-25T08:47:02.010000"],["2024-07-25T08:47:03.010000"],["2024-07-25T08:47:04.010000"],["2024-07-25T08:47:05.010000"],["2024-07-25T08:47:06.010000"],["2024-07-25T08:47:07.010000"],["2024-07-25T08:47:08.010000"],["2024-07-25T08:47:09.010000"],["2024-07-25T08:47:10.010000"],["2024-07-25T08:47:11.010000"],["2024-07-25T08:47:12.010000"],["2024-07-25T08:47:13.010000"],["2024-07-25T08:47:14.010000"],["2024-07-25T08:47:15.010000"],["2024-07-25T08:47:16.010000"],["2024-07-25T08:47:17.010000"],["2024-07-25T08:47:18.010000"],["2024-07-25T08:47:19.010000"],["2024-07-25T08:47:20.010000"],["2024-07-25T08:47:21.010000"],["2024-07-25T08:47:22.010000"],["2024-07-25T08:47:23.010000"],["2024-07-25T08:47:24.010000"],["2024-07-25T08:47:25.010000"],["2024-07-25T08:47:26.010000"],["2024-07-25T08:47:27.010000"],["2024-07-25T08:47:28.010000"],["2024-07-25T08:47:29.010000"],["2024-07-25T08:47:30.010000"],["2024-07-25T08:47:31.010000"],["2024-07-25T08:47:32.010000"],["2024-07-25T08:47:33.010000"],["2024-07-25T08:47:34.010000"],["2024-07-25T08:47:35.010000"],["2024-07-25T08:47:36.010000"],["2024-07-25T08:47:37.010000"],["2024-07-25T08:47:38.010000"],["2024-07-25T08:47:39.010000"],["2024-07-25T08:47:40.010000"],["2024-07-25T08:47:41.010000"],["2024-07-25T08:47:42.010000"],["2024-07-25T08:47:43.010000"],["2024-07-25T08:47:44.010000"],["2024-07-25T08:47:45.010000"],["2024-07-25T08:47:46.010000"],["2024-07-25T08:47:47.010000"],["2024-07-25T08:47:48.010000"],["2024-07-25T08:47:49.010000"],["2024-07-25T08:47:50.010000"],["2024-07-25T08:47:51.010000"],["2024-07-25T08:47:52.010000"],["2024-07-25T08:47:53.010000"],["2024-07-25T08:47:54.010000"],["2024-07-25T08:47:55.010000"],["2024-07-25T08:47:56.010000"],["2024-07-25T08:47:57.010000"],["2024-07-25T08:47:58.010000"],["2024-07-25T08:47:59.010000"],["2024-07-25T08:48:00.010000"],["2024-07-25T08:48:01.010000"],["2024-07-25T08:48:02.010000"],["2024-07-25T08:48:03.010000"],["2024-07-25T08:48:04.010000"],["2024-07-25T08:48:05.010000"],["2024-07-25T08:48:06.010000"],["2024-07-25T08:48:07.010000"],["2024-07-25T08:48:08.010000"],["2024-07-25T08:48:09.010000"],["2024-07-25T08:48:10.010000"],["2024-07-25T08:48:11.010000"],["2024-07-25T08:48:12.010000"],["2024-07-25T08:48:13.010000"],["2024-07-25T08:48:14.010000"],["2024-07-25T08:48:15.010000"],["2024-07-25T08:48:16.010000"],["2024-07-25T08:48:17.010000"],["2024-07-25T08:48:18.010000"],["2024-07-25T08:48:19.010000"],["2024-07-25T08:48:20.010000"],["2024-07-25T08:48:21.010000"],["2024-07-25T08:48:22.010000"],["2024-07-25T08:48:23.010000"],["2024-07-25T08:48:24.010000"],["2024-07-25T08:48:25.010000"],["2024-07-25T08:48:26.010000"],["2024-07-25T08:48:27.010000"],["2024-07-25T08:48:28.010000"],["2024-07-25T08:48:29.010000"],["2024-07-25T08:48:30.010000"],["2024-07-25T08:48:31.010000"],["2024-07-25T08:48:32.010000"],["2024-07-25T08:48:33.010000"],["2024-07-25T08:48:34.010000"],["2024-07-25T08:48:35.010000"],["2024-07-25T08:48:36.010000"],["2024-07-25T08:48:37.010000"],["2024-07-25T08:48:38.010000"],["2024-07-25T08:48:39.010000"],["2024-07-25T08:48:40.010000"],["2024-07-25T08:48:41.010000"],["2024-07-25T08:48:42.010000"],["2024-07-25T08:48:43.010000"],["2024-07-25T08:48:44.010000"],["2024-07-25T08:48:45.010000"],["2024-07-25T08:48:46.010000"],["2024-07-25T08:48:47.010000"],["2024-07-25T08:48:48.010000"],["2024-07-25T08:48:49.010000"],["2024-07-25T08:48:50.010000"],["2024-07-25T08:48:51.010000"],["2024-07-25T08:48:52.010000"],["2024-07-25T08:48:53.010000"],["2024-07-25T08:48:54.010000"],["2024-07-25T08:48:55.010000"],["2024-07-25T08:48:56.010000"],["2024-07-25T08:48:57.010000"],["2024-07-25T08:48:58.010000"],["2024-07-25T08:48:59.010000"],["2024-07-25T08:49:00.010000"],["2024-07-25T08:49:01.010000"],["2024-07-25T08:49:02.010000"],["2024-07-25T08:49:03.010000"],["2024-07-25T08:49:04.010000"],["2024-07-25T08:49:05.010000"],["2024-07-25T08:49:06.010000"],["2024-07-25T08:49:07.010000"],["2024-07-25T08:49:08.010000"],["2024-07-25T08:49:09.010000"],["2024-07-25T08:49:10.010000"],["2024-07-25T08:49:11.010000"],["2024-07-25T08:49:12.010000"],["2024-07-25T08:49:13.010000"],["2024-07-25T08:49:14.010000"],["2024-07-25T08:49:15.010000"],["2024-07-25T08:49:16.010000"],["2024-07-25T08:49:17.010000"],["2024-07-25T08:49:18.010000"],["2024-07-25T08:49:19.010000"],["2024-07-25T08:49:20.010000"],["2024-07-25T08:49:21.010000"],["2024-07-25T08:49:22.010000"],["2024-07-25T08:49:23.010000"],["2024-07-25T08:49:24.010000"],["2024-07-25T08:49:25.010000"],["2024-07-25T08:49:26.010000"],["2024-07-25T08:49:27.010000"],["2024-07-25T08:49:28.010000"],["2024-07-25T08:49:29.010000"],["2024-07-25T08:49:30.010000"],["2024-07-25T08:49:31.010000"],["2024-07-25T08:49:32.010000"],["2024-07-25T08:49:33.010000"],["2024-07-25T08:49:34.010000"],["2024-07-25T08:49:35.010000"],["2024-07-25T08:49:36.010000"],["2024-07-25T08:49:37.010000"],["2024-07-25T08:49:38.010000"],["2024-07-25T08:49:39.010000"],["2024-07-25T08:49:40.010000"],["2024-07-25T08:49:41.010000"],["2024-07-25T08:49:42.010000"],["2024-07-25T08:49:43.010000"],["2024-07-25T08:49:44.010000"],["2024-07-25T08:49:45.010000"],["2024-07-25T08:49:46.010000"],["2024-07-25T08:49:47.010000"],["2024-07-25T08:49:48.010000"],["2024-07-25T08:49:49.010000"],["2024-07-25T08:49:50.010000"],["2024-07-25T08:49:51.010000"],["2024-07-25T08:49:52.010000"],["2024-07-25T08:49:53.010000"],["2024-07-25T08:49:54.010000"],["2024-07-25T08:49:55.010000"],["2024-07-25T08:49:56.010000"],["2024-07-25T08:49:57.010000"],["2024-07-25T08:49:58.010000"],["2024-07-25T08:49:59.010000"],["2024-07-25T08:50:00.010000"],["2024-07-25T08:50:01.010000"],["2024-07-25T08:50:02.010000"],["2024-07-25T08:50:03.010000"],["2024-07-25T08:50:04.010000"],["2024-07-25T08:50:05.010000"],["2024-07-25T08:50:06.010000"],["2024-07-25T08:50:07.010000"],["2024-07-25T08:50:08.010000"],["2024-07-25T08:50:09.010000"],["2024-07-25T08:50:10.010000"],["2024-07-25T08:50:11.010000"],["2024-07-25T08:50:12.010000"],["2024-07-25T08:50:13.010000"],["2024-07-25T08:50:14.010000"],["2024-07-25T08:50:15.010000"],["2024-07-25T08:50:16.010000"],["2024-07-25T08:50:17.010000"],["2024-07-25T08:50:18.010000"],["2024-07-25T08:50:19.010000"],["2024-07-25T08:50:20.010000"],["2024-07-25T08:50:21.010000"],["2024-07-25T08:50:22.010000"],["2024-07-25T08:50:23.010000"],["2024-07-25T08:50:24.010000"],["2024-07-25T08:50:25.010000"],["2024-07-25T08:50:26.010000"],["2024-07-25T08:50:27.010000"],["2024-07-25T08:50:28.010000"],["2024-07-25T08:50:29.010000"],["2024-07-25T08:50:30.010000"],["2024-07-25T08:50:31.010000"],["2024-07-25T08:50:32.010000"],["2024-07-25T08:50:33.010000"],["2024-07-25T08:50:34.010000"],["2024-07-25T08:50:35.010000"],["2024-07-25T08:50:36.010000"],["2024-07-25T08:50:37.010000"],["2024-07-25T08:50:38.010000"],["2024-07-25T08:50:39.010000"],["2024-07-25T08:50:40.010000"],["2024-07-25T08:50:41.010000"],["2024-07-25T08:50:42.010000"],["2024-07-25T08:50:43.010000"],["2024-07-25T08:50:44.010000"],["2024-07-25T08:50:45.010000"],["2024-07-25T08:50:46.010000"],["2024-07-25T08:50:47.010000"],["2024-07-25T08:50:48.010000"],["2024-07-25T08:50:49.010000"],["2024-07-25T08:50:50.010000"],["2024-07-25T08:50:51.010000"],["2024-07-25T08:50:52.010000"],["2024-07-25T08:50:53.010000"],["2024-07-25T08:50:54.010000"],["2024-07-25T08:50:55.010000"],["2024-07-25T08:50:56.010000"],["2024-07-25T08:50:57.010000"],["2024-07-25T08:50:58.010000"],["2024-07-25T08:50:59.010000"],["2024-07-25T08:51:00.010000"],["2024-07-25T08:51:01.010000"],["2024-07-25T08:51:02.010000"],["2024-07-25T08:51:03.010000"],["2024-07-25T08:51:04.010000"],["2024-07-25T08:51:05.010000"],["2024-07-25T08:51:06.010000"],["2024-07-25T08:51:07.010000"],["2024-07-25T08:51:08.010000"],["2024-07-25T08:51:09.010000"],["2024-07-25T08:51:10.010000"],["2024-07-25T08:51:11.010000"],["2024-07-25T08:51:12.010000"],["2024-07-25T08:51:13.010000"],["2024-07-25T08:51:14.010000"],["2024-07-25T08:51:15.010000"],["2024-07-25T08:51:16.010000"],["2024-07-25T08:51:17.010000"],["2024-07-25T08:51:18.010000"],["2024-07-25T08:51:19.010000"],["2024-07-25T08:51:20.010000"],["2024-07-25T08:51:21.010000"],["2024-07-25T08:51:22.010000"],["2024-07-25T08:51:23.010000"],["2024-07-25T08:51:24.010000"],["2024-07-25T08:51:25.010000"],["2024-07-25T08:51:26.010000"],["2024-07-25T08:51:27.010000"],["2024-07-25T08:51:28.010000"],["2024-07-25T08:51:29.010000"],["2024-07-25T08:51:30.010000"],["2024-07-25T08:51:31.010000"],["2024-07-25T08:51:32.010000"],["2024-07-25T08:51:33.010000"],["2024-07-25T08:51:34.010000"],["2024-07-25T08:51:35.010000"],["2024-07-25T08:51:36.010000"],["2024-07-25T08:51:37.010000"],["2024-07-25T08:51:38.010000"],["2024-07-25T08:51:39.010000"],["2024-07-25T08:51:40.010000"],["2024-07-25T08:51:41.010000"],["2024-07-25T08:51:42.010000"],["2024-07-25T08:51:43.010000"],["2024-07-25T08:51:44.010000"],["2024-07-25T08:51:45.010000"],["2024-07-25T08:51:46.010000"],["2024-07-25T08:51:47.010000"],["2024-07-25T08:51:48.010000"],["2024-07-25T08:51:49.010000"],["2024-07-25T08:51:50.010000"],["2024-07-25T08:51:51.010000"],["2024-07-25T08:51:52.010000"],["2024-07-25T08:51:53.010000"],["2024-07-25T08:51:54.010000"],["2024-07-25T08:51:55.010000"],["2024-07-25T08:51:56.010000"],["2024-07-25T08:51:57.010000"],["2024-07-25T08:51:58.010000"],["2024-07-25T08:51:59.010000"],["2024-07-25T08:52:00.010000"],["2024-07-25T08:52:01.010000"],["2024-07-25T08:52:02.010000"],["2024-07-25T08:52:03.010000"],["2024-07-25T08:52:04.010000"],["2024-07-25T08:52:05.010000"],["2024-07-25T08:52:06.010000"],["2024-07-25T08:52:07.010000"],["2024-07-25T08:52:08.010000"],["2024-07-25T08:52:09.010000"],["2024-07-25T08:52:10.010000"],["2024-07-25T08:52:11.010000"],["2024-07-25T08:52:12.010000"],["2024-07-25T08:52:13.010000"],["2024-07-25T08:52:14.010000"],["2024-07-25T08:52:15.010000"],["2024-07-25T08:52:16.010000"],["2024-07-25T08:52:17.010000"],["2024-07-25T08:52:18.010000"],["2024-07-25T08:52:19.010000"],["2024-07-25T08:52:20.010000"],["2024-07-25T08:52:21.010000"],["2024-07-25T08:52:22.010000"],["2024-07-25T08:52:23.010000"],["2024-07-25T08:52:24.010000"],["2024-07-25T08:52:25.010000"],["2024-07-25T08:52:26.010000"],["2024-07-25T08:52:27.010000"],["2024-07-25T08:52:28.010000"],["2024-07-25T08:52:29.010000"],["2024-07-25T08:52:30.010000"],["2024-07-25T08:52:31.010000"],["2024-07-25T08:52:32.010000"],["2024-07-25T08:52:33.010000"],["2024-07-25T08:52:34.010000"],["2024-07-25T08:52:35.010000"],["2024-07-25T08:52:36.010000"],["2024-07-25T08:52:37.010000"],["2024-07-25T08:52:38.010000"],["2024-07-25T08:52:39.010000"],["2024-07-25T08:52:40.010000"],["2024-07-25T08:52:41.010000"],["2024-07-25T08:52:42.010000"],["2024-07-25T08:52:43.010000"],["2024-07-25T08:52:44.010000"],["2024-07-25T08:52:45.010000"],["2024-07-25T08:52:46.010000"],["2024-07-25T08:52:47.010000"],["2024-07-25T08:52:48.010000"],["2024-07-25T08:52:49.010000"],["2024-07-25T08:52:50.010000"],["2024-07-25T08:52:51.010000"],["2024-07-25T08:52:52.010000"],["2024-07-25T08:52:53.010000"],["2024-07-25T08:52:54.010000"],["2024-07-25T08:52:55.010000"],["2024-07-25T08:52:56.010000"],["2024-07-25T08:52:57.010000"],["2024-07-25T08:52:58.010000"],["2024-07-25T08:52:59.010000"],["2024-07-25T08:53:00.010000"],["2024-07-25T08:53:01.010000"],["2024-07-25T08:53:02.010000"],["2024-07-25T08:53:03.010000"],["2024-07-25T08:53:04.010000"],["2024-07-25T08:53:05.010000"],["2024-07-25T08:53:06.010000"],["2024-07-25T08:53:07.010000"],["2024-07-25T08:53:08.010000"],["2024-07-25T08:53:09.010000"],["2024-07-25T08:53:10.010000"],["2024-07-25T08:53:11.010000"],["2024-07-25T08:53:12.010000"],["2024-07-25T08:53:13.010000"],["2024-07-25T08:53:14.010000"],["2024-07-25T08:53:15.010000"],["2024-07-25T08:53:16.010000"],["2024-07-25T08:53:17.010000"],["2024-07-25T08:53:18.010000"],["2024-07-25T08:53:19.010000"],["2024-07-25T08:53:20.010000"],["2024-07-25T08:53:21.010000"],["2024-07-25T08:53:22.010000"],["2024-07-25T08:53:23.010000"],["2024-07-25T08:53:24.010000"],["2024-07-25T08:53:25.010000"],["2024-07-25T08:53:26.010000"],["2024-07-25T08:53:27.010000"],["2024-07-25T08:53:28.010000"],["2024-07-25T08:53:29.010000"],["2024-07-25T08:53:30.010000"],["2024-07-25T08:53:31.010000"],["2024-07-25T08:53:32.010000"],["2024-07-25T08:53:33.010000"],["2024-07-25T08:53:34.010000"],["2024-07-25T08:53:35.010000"],["2024-07-25T08:53:36.010000"],["2024-07-25T08:53:37.010000"],["2024-07-25T08:53:38.010000"],["2024-07-25T08:53:39.010000"],["2024-07-25T08:53:40.010000"],["2024-07-25T08:53:41.010000"],["2024-07-25T08:53:42.010000"],["2024-07-25T08:53:43.010000"],["2024-07-25T08:53:44.010000"],["2024-07-25T08:53:45.010000"],["2024-07-25T08:53:46.010000"],["2024-07-25T08:53:47.010000"],["2024-07-25T08:53:48.010000"],["2024-07-25T08:53:49.010000"],["2024-07-25T08:53:50.010000"],["2024-07-25T08:53:51.010000"],["2024-07-25T08:53:52.010000"],["2024-07-25T08:53:53.010000"],["2024-07-25T08:53:54.010000"],["2024-07-25T08:53:55.010000"],["2024-07-25T08:53:56.010000"],["2024-07-25T08:53:57.010000"],["2024-07-25T08:53:58.010000"],["2024-07-25T08:53:59.010000"],["2024-07-25T08:54:00.010000"],["2024-07-25T08:54:01.010000"],["2024-07-25T08:54:02.010000"],["2024-07-25T08:54:03.010000"],["2024-07-25T08:54:04.010000"],["2024-07-25T08:54:05.010000"],["2024-07-25T08:54:06.010000"],["2024-07-25T08:54:07.010000"],["2024-07-25T08:54:08.010000"],["2024-07-25T08:54:09.010000"],["2024-07-25T08:54:10.010000"],["2024-07-25T08:54:11.010000"],["2024-07-25T08:54:12.010000"],["2024-07-25T08:54:13.010000"],["2024-07-25T08:54:14.010000"],["2024-07-25T08:54:15.010000"],["2024-07-25T08:54:16.010000"],["2024-07-25T08:54:17.010000"],["2024-07-25T08:54:18.010000"],["2024-07-25T08:54:19.010000"],["2024-07-25T08:54:20.010000"],["2024-07-25T08:54:21.010000"],["2024-07-25T08:54:22.010000"],["2024-07-25T08:54:23.010000"],["2024-07-25T08:54:24.010000"],["2024-07-25T08:54:25.010000"],["2024-07-25T08:54:26.010000"],["2024-07-25T08:54:27.010000"],["2024-07-25T08:54:28.010000"],["2024-07-25T08:54:29.010000"],["2024-07-25T08:54:30.010000"],["2024-07-25T08:54:31.010000"],["2024-07-25T08:54:32.010000"],["2024-07-25T08:54:33.010000"],["2024-07-25T08:54:34.010000"],["2024-07-25T08:54:35.010000"],["2024-07-25T08:54:36.010000"],["2024-07-25T08:54:37.010000"],["2024-07-25T08:54:38.010000"],["2024-07-25T08:54:39.010000"],["2024-07-25T08:54:40.010000"],["2024-07-25T08:54:41.010000"],["2024-07-25T08:54:42.010000"],["2024-07-25T08:54:43.010000"],["2024-07-25T08:54:44.010000"],["2024-07-25T08:54:45.010000"],["2024-07-25T08:54:46.010000"],["2024-07-25T08:54:47.010000"],["2024-07-25T08:54:48.010000"],["2024-07-25T08:54:49.010000"],["2024-07-25T08:54:50.010000"],["2024-07-25T08:54:51.010000"],["2024-07-25T08:54:52.010000"],["2024-07-25T08:54:53.010000"],["2024-07-25T08:54:54.010000"],["2024-07-25T08:54:55.010000"],["2024-07-25T08:54:56.010000"],["2024-07-25T08:54:57.010000"],["2024-07-25T08:54:58.010000"],["2024-07-25T08:54:59.010000"],["2024-07-25T08:55:00.010000"],["2024-07-25T08:55:01.010000"],["2024-07-25T08:55:02.010000"],["2024-07-25T08:55:03.010000"],["2024-07-25T08:55:04.010000"],["2024-07-25T08:55:05.010000"],["2024-07-25T08:55:06.010000"],["2024-07-25T08:55:07.010000"],["2024-07-25T08:55:08.010000"],["2024-07-25T08:55:09.010000"],["2024-07-25T08:55:10.010000"],["2024-07-25T08:55:11.010000"],["2024-07-25T08:55:12.010000"],["2024-07-25T08:55:13.010000"],["2024-07-25T08:55:14.010000"],["2024-07-25T08:55:15.010000"],["2024-07-25T08:55:16.010000"],["2024-07-25T08:55:17.010000"],["2024-07-25T08:55:18.010000"],["2024-07-25T08:55:19.010000"],["2024-07-25T08:55:20.010000"],["2024-07-25T08:55:21.010000"],["2024-07-25T08:55:22.010000"],["2024-07-25T08:55:23.010000"],["2024-07-25T08:55:24.010000"],["2024-07-25T08:55:25.010000"],["2024-07-25T08:55:26.010000"],["2024-07-25T08:55:27.010000"],["2024-07-25T08:55:28.010000"],["2024-07-25T08:55:29.010000"],["2024-07-25T08:55:30.010000"],["2024-07-25T08:55:31.010000"],["2024-07-25T08:55:32.010000"],["2024-07-25T08:55:33.010000"],["2024-07-25T08:55:34.010000"],["2024-07-25T08:55:35.010000"],["2024-07-25T08:55:36.010000"],["2024-07-25T08:55:37.010000"],["2024-07-25T08:55:38.010000"],["2024-07-25T08:55:39.010000"],["2024-07-25T08:55:40.010000"],["2024-07-25T08:55:41.010000"],["2024-07-25T08:55:42.010000"],["2024-07-25T08:55:43.010000"],["2024-07-25T08:55:44.010000"],["2024-07-25T08:55:45.010000"],["2024-07-25T08:55:46.010000"],["2024-07-25T08:55:47.010000"],["2024-07-25T08:55:48.010000"],["2024-07-25T08:55:49.010000"],["2024-07-25T08:55:50.010000"],["2024-07-25T08:55:51.010000"],["2024-07-25T08:55:52.010000"],["2024-07-25T08:55:53.010000"],["2024-07-25T08:55:54.010000"],["2024-07-25T08:55:55.010000"],["2024-07-25T08:55:56.010000"],["2024-07-25T08:55:57.010000"],["2024-07-25T08:55:58.010000"],["2024-07-25T08:55:59.010000"],["2024-07-25T08:56:00.010000"],["2024-07-25T08:56:01.010000"],["2024-07-25T08:56:02.010000"],["2024-07-25T08:56:03.010000"],["2024-07-25T08:56:04.010000"],["2024-07-25T08:56:05.010000"],["2024-07-25T08:56:06.010000"],["2024-07-25T08:56:07.010000"],["2024-07-25T08:56:08.010000"],["2024-07-25T08:56:09.010000"],["2024-07-25T08:56:10.010000"],["2024-07-25T08:56:11.010000"],["2024-07-25T08:56:12.010000"],["2024-07-25T08:56:13.010000"],["2024-07-25T08:56:14.010000"],["2024-07-25T08:56:15.010000"],["2024-07-25T08:56:16.010000"],["2024-07-25T08:56:17.010000"],["2024-07-25T08:56:18.010000"],["2024-07-25T08:56:19.010000"],["2024-07-25T08:56:20.010000"],["2024-07-25T08:56:21.010000"],["2024-07-25T08:56:22.010000"],["2024-07-25T08:56:23.010000"],["2024-07-25T08:56:24.010000"],["2024-07-25T08:56:25.010000"],["2024-07-25T08:56:26.010000"],["2024-07-25T08:56:27.010000"],["2024-07-25T08:56:28.010000"],["2024-07-25T08:56:29.010000"],["2024-07-25T08:56:30.010000"],["2024-07-25T08:56:31.010000"],["2024-07-25T08:56:32.010000"],["2024-07-25T08:56:33.010000"],["2024-07-25T08:56:34.010000"],["2024-07-25T08:56:35.010000"],["2024-07-25T08:56:36.010000"],["2024-07-25T08:56:37.010000"],["2024-07-25T08:56:38.010000"],["2024-07-25T08:56:39.010000"],["2024-07-25T08:56:40.010000"],["2024-07-25T08:56:41.010000"],["2024-07-25T08:56:42.010000"],["2024-07-25T08:56:43.010000"],["2024-07-25T08:56:44.010000"],["2024-07-25T08:56:45.010000"],["2024-07-25T08:56:46.010000"],["2024-07-25T08:56:47.010000"],["2024-07-25T08:56:48.010000"],["2024-07-25T08:56:49.010000"],["2024-07-25T08:56:50.010000"],["2024-07-25T08:56:51.010000"],["2024-07-25T08:56:52.010000"],["2024-07-25T08:56:53.010000"],["2024-07-25T08:56:54.010000"],["2024-07-25T08:56:55.010000"],["2024-07-25T08:56:56.010000"],["2024-07-25T08:56:57.010000"],["2024-07-25T08:56:58.010000"],["2024-07-25T08:56:59.010000"],["2024-07-25T08:57:00.010000"],["2024-07-25T08:57:01.010000"],["2024-07-25T08:57:02.010000"],["2024-07-25T08:57:03.010000"],["2024-07-25T08:57:04.010000"],["2024-07-25T08:57:05.010000"],["2024-07-25T08:57:06.010000"],["2024-07-25T08:57:07.010000"],["2024-07-25T08:57:08.010000"],["2024-07-25T08:57:09.010000"],["2024-07-25T08:57:10.010000"],["2024-07-25T08:57:11.010000"],["2024-07-25T08:57:12.010000"],["2024-07-25T08:57:13.010000"],["2024-07-25T08:57:14.010000"],["2024-07-25T08:57:15.010000"],["2024-07-25T08:57:16.010000"],["2024-07-25T08:57:17.010000"],["2024-07-25T08:57:18.010000"],["2024-07-25T08:57:19.010000"],["2024-07-25T08:57:20.010000"],["2024-07-25T08:57:21.010000"],["2024-07-25T08:57:22.010000"],["2024-07-25T08:57:23.010000"],["2024-07-25T08:57:24.010000"],["2024-07-25T08:57:25.010000"],["2024-07-25T08:57:26.010000"],["2024-07-25T08:57:27.010000"],["2024-07-25T08:57:28.010000"],["2024-07-25T08:57:29.010000"],["2024-07-25T08:57:30.010000"],["2024-07-25T08:57:31.010000"],["2024-07-25T08:57:32.010000"],["2024-07-25T08:57:33.010000"],["2024-07-25T08:57:34.010000"],["2024-07-25T08:57:35.010000"],["2024-07-25T08:57:36.010000"],["2024-07-25T08:57:37.010000"],["2024-07-25T08:57:38.010000"],["2024-07-25T08:57:39.010000"],["2024-07-25T08:57:40.010000"],["2024-07-25T08:57:41.010000"],["2024-07-25T08:57:42.010000"],["2024-07-25T08:57:43.010000"],["2024-07-25T08:57:44.010000"],["2024-07-25T08:57:45.010000"],["2024-07-25T08:57:46.010000"],["2024-07-25T08:57:47.010000"],["2024-07-25T08:57:48.010000"],["2024-07-25T08:57:49.010000"],["2024-07-25T08:57:50.010000"],["2024-07-25T08:57:51.010000"],["2024-07-25T08:57:52.010000"],["2024-07-25T08:57:53.010000"],["2024-07-25T08:57:54.010000"],["2024-07-25T08:57:55.010000"],["2024-07-25T08:57:56.010000"],["2024-07-25T08:57:57.010000"],["2024-07-25T08:57:58.010000"],["2024-07-25T08:57:59.010000"],["2024-07-25T08:58:00.010000"],["2024-07-25T08:58:01.010000"],["2024-07-25T08:58:02.010000"],["2024-07-25T08:58:03.010000"],["2024-07-25T08:58:04.010000"],["2024-07-25T08:58:05.010000"],["2024-07-25T08:58:06.010000"],["2024-07-25T08:58:07.010000"],["2024-07-25T08:58:08.010000"],["2024-07-25T08:58:09.010000"],["2024-07-25T08:58:10.010000"],["2024-07-25T08:58:11.010000"],["2024-07-25T08:58:12.010000"],["2024-07-25T08:58:13.010000"],["2024-07-25T08:58:14.010000"],["2024-07-25T08:58:15.010000"],["2024-07-25T08:58:16.010000"],["2024-07-25T08:58:17.010000"],["2024-07-25T08:58:18.010000"],["2024-07-25T08:58:19.010000"],["2024-07-25T08:58:20.010000"],["2024-07-25T08:58:21.010000"],["2024-07-25T08:58:22.010000"],["2024-07-25T08:58:23.010000"],["2024-07-25T08:58:24.010000"],["2024-07-25T08:58:25.010000"],["2024-07-25T08:58:26.010000"],["2024-07-25T08:58:27.010000"],["2024-07-25T08:58:28.010000"],["2024-07-25T08:58:29.010000"],["2024-07-25T08:58:30.010000"],["2024-07-25T08:58:31.010000"],["2024-07-25T08:58:32.010000"],["2024-07-25T08:58:33.010000"],["2024-07-25T08:58:34.010000"],["2024-07-25T08:58:35.010000"],["2024-07-25T08:58:36.010000"],["2024-07-25T08:58:37.010000"],["2024-07-25T08:58:38.010000"],["2024-07-25T08:58:39.010000"],["2024-07-25T08:58:40.010000"],["2024-07-25T08:58:41.010000"],["2024-07-25T08:58:42.010000"],["2024-07-25T08:58:43.010000"],["2024-07-25T08:58:44.010000"],["2024-07-25T08:58:45.010000"],["2024-07-25T08:58:46.010000"],["2024-07-25T08:58:47.010000"],["2024-07-25T08:58:48.010000"],["2024-07-25T08:58:49.010000"],["2024-07-25T08:58:50.010000"],["2024-07-25T08:58:51.010000"],["2024-07-25T08:58:52.010000"],["2024-07-25T08:58:53.010000"],["2024-07-25T08:58:54.010000"],["2024-07-25T08:58:55.010000"],["2024-07-25T08:58:56.010000"],["2024-07-25T08:58:57.010000"],["2024-07-25T08:58:58.010000"],["2024-07-25T08:58:59.010000"],["2024-07-25T08:59:00.010000"],["2024-07-25T08:59:01.010000"],["2024-07-25T08:59:02.010000"],["2024-07-25T08:59:03.010000"],["2024-07-25T08:59:04.010000"],["2024-07-25T08:59:05.010000"],["2024-07-25T08:59:06.010000"],["2024-07-25T08:59:07.010000"],["2024-07-25T08:59:08.010000"],["2024-07-25T08:59:09.010000"],["2024-07-25T08:59:10.010000"],["2024-07-25T08:59:11.010000"],["2024-07-25T08:59:12.010000"],["2024-07-25T08:59:13.010000"],["2024-07-25T08:59:14.010000"],["2024-07-25T08:59:15.010000"],["2024-07-25T08:59:16.010000"],["2024-07-25T08:59:17.010000"],["2024-07-25T08:59:18.010000"],["2024-07-25T08:59:19.010000"],["2024-07-25T08:59:20.010000"],["2024-07-25T08:59:21.010000"],["2024-07-25T08:59:22.010000"],["2024-07-25T08:59:23.010000"],["2024-07-25T08:59:24.010000"],["2024-07-25T08:59:25.010000"],["2024-07-25T08:59:26.010000"],["2024-07-25T08:59:27.010000"],["2024-07-25T08:59:28.010000"],["2024-07-25T08:59:29.010000"],["2024-07-25T08:59:30.010000"],["2024-07-25T08:59:31.010000"],["2024-07-25T08:59:32.010000"],["2024-07-25T08:59:33.010000"],["2024-07-25T08:59:34.010000"],["2024-07-25T08:59:35.010000"],["2024-07-25T08:59:36.010000"],["2024-07-25T08:59:37.010000"],["2024-07-25T08:59:38.010000"],["2024-07-25T08:59:39.010000"],["2024-07-25T08:59:40.010000"],["2024-07-25T08:59:41.010000"],["2024-07-25T08:59:42.010000"],["2024-07-25T08:59:43.010000"],["2024-07-25T08:59:44.010000"],["2024-07-25T08:59:45.010000"],["2024-07-25T08:59:46.010000"],["2024-07-25T08:59:47.010000"],["2024-07-25T08:59:48.010000"],["2024-07-25T08:59:49.010000"],["2024-07-25T08:59:50.010000"],["2024-07-25T08:59:51.010000"],["2024-07-25T08:59:52.010000"],["2024-07-25T08:59:53.010000"],["2024-07-25T08:59:54.010000"],["2024-07-25T08:59:55.010000"],["2024-07-25T08:59:56.010000"],["2024-07-25T08:59:57.010000"],["2024-07-25T08:59:58.010000"],["2024-07-25T08:59:59.010000"],["2024-07-25T09:00:00.010000"],["2024-07-25T09:00:01.010000"],["2024-07-25T09:00:02.010000"],["2024-07-25T09:00:03.010000"],["2024-07-25T09:00:04.010000"],["2024-07-25T09:00:05.010000"],["2024-07-25T09:00:06.010000"],["2024-07-25T09:00:07.010000"],["2024-07-25T09:00:08.010000"],["2024-07-25T09:00:09.010000"],["2024-07-25T09:00:10.010000"],["2024-07-25T09:00:11.010000"],["2024-07-25T09:00:12.010000"],["2024-07-25T09:00:13.010000"],["2024-07-25T09:00:14.010000"],["2024-07-25T09:00:15.010000"],["2024-07-25T09:00:16.010000"],["2024-07-25T09:00:17.010000"],["2024-07-25T09:00:18.010000"],["2024-07-25T09:00:19.010000"],["2024-07-25T09:00:20.010000"],["2024-07-25T09:00:21.010000"],["2024-07-25T09:00:22.010000"],["2024-07-25T09:00:23.010000"],["2024-07-25T09:00:24.010000"],["2024-07-25T09:00:25.010000"],["2024-07-25T09:00:26.010000"],["2024-07-25T09:00:27.010000"],["2024-07-25T09:00:28.010000"],["2024-07-25T09:00:29.010000"],["2024-07-25T09:00:30.010000"],["2024-07-25T09:00:31.010000"],["2024-07-25T09:00:32.010000"],["2024-07-25T09:00:33.010000"],["2024-07-25T09:00:34.010000"],["2024-07-25T09:00:35.010000"],["2024-07-25T09:00:36.010000"],["2024-07-25T09:00:37.010000"],["2024-07-25T09:00:38.010000"],["2024-07-25T09:00:39.010000"],["2024-07-25T09:00:40.010000"],["2024-07-25T09:00:41.010000"],["2024-07-25T09:00:42.010000"],["2024-07-25T09:00:43.010000"],["2024-07-25T09:00:44.010000"],["2024-07-25T09:00:45.010000"],["2024-07-25T09:00:46.010000"],["2024-07-25T09:00:47.010000"],["2024-07-25T09:00:48.010000"],["2024-07-25T09:00:49.010000"],["2024-07-25T09:00:50.010000"],["2024-07-25T09:00:51.010000"],["2024-07-25T09:00:52.010000"],["2024-07-25T09:00:53.010000"],["2024-07-25T09:00:54.010000"],["2024-07-25T09:00:55.010000"],["2024-07-25T09:00:56.010000"],["2024-07-25T09:00:57.010000"],["2024-07-25T09:00:58.010000"],["2024-07-25T09:00:59.010000"],["2024-07-25T09:01:00.010000"],["2024-07-25T09:01:01.010000"],["2024-07-25T09:01:02.010000"],["2024-07-25T09:01:03.010000"],["2024-07-25T09:01:04.010000"],["2024-07-25T09:01:05.010000"],["2024-07-25T09:01:06.010000"],["2024-07-25T09:01:07.010000"],["2024-07-25T09:01:08.010000"],["2024-07-25T09:01:09.010000"],["2024-07-25T09:01:10.010000"],["2024-07-25T09:01:11.010000"],["2024-07-25T09:01:12.010000"],["2024-07-25T09:01:13.010000"],["2024-07-25T09:01:14.010000"],["2024-07-25T09:01:15.010000"],["2024-07-25T09:01:16.010000"],["2024-07-25T09:01:17.010000"],["2024-07-25T09:01:18.010000"],["2024-07-25T09:01:19.010000"],["2024-07-25T09:01:20.010000"],["2024-07-25T09:01:21.010000"],["2024-07-25T09:01:22.010000"],["2024-07-25T09:01:23.010000"],["2024-07-25T09:01:24.010000"],["2024-07-25T09:01:25.010000"],["2024-07-25T09:01:26.010000"],["2024-07-25T09:01:27.010000"],["2024-07-25T09:01:28.010000"],["2024-07-25T09:01:29.010000"],["2024-07-25T09:01:30.010000"],["2024-07-25T09:01:31.010000"],["2024-07-25T09:01:32.010000"],["2024-07-25T09:01:33.010000"],["2024-07-25T09:01:34.010000"],["2024-07-25T09:01:35.010000"],["2024-07-25T09:01:36.010000"],["2024-07-25T09:01:37.010000"],["2024-07-25T09:01:38.010000"],["2024-07-25T09:01:39.010000"],["2024-07-25T09:01:40.010000"],["2024-07-25T09:01:41.010000"],["2024-07-25T09:01:42.010000"],["2024-07-25T09:01:43.010000"],["2024-07-25T09:01:44.010000"],["2024-07-25T09:01:45.010000"],["2024-07-25T09:01:46.010000"],["2024-07-25T09:01:47.010000"],["2024-07-25T09:01:48.010000"],["2024-07-25T09:01:49.010000"],["2024-07-25T09:01:50.010000"],["2024-07-25T09:01:51.010000"],["2024-07-25T09:01:52.010000"],["2024-07-25T09:01:53.010000"],["2024-07-25T09:01:54.010000"],["2024-07-25T09:01:55.010000"],["2024-07-25T09:01:56.010000"],["2024-07-25T09:01:57.010000"],["2024-07-25T09:01:58.010000"],["2024-07-25T09:01:59.010000"],["2024-07-25T09:02:00.010000"],["2024-07-25T09:02:01.010000"],["2024-07-25T09:02:02.010000"],["2024-07-25T09:02:03.010000"],["2024-07-25T09:02:04.010000"],["2024-07-25T09:02:05.010000"],["2024-07-25T09:02:06.010000"],["2024-07-25T09:02:07.010000"],["2024-07-25T09:02:08.010000"],["2024-07-25T09:02:09.010000"],["2024-07-25T09:02:10.010000"],["2024-07-25T09:02:11.010000"],["2024-07-25T09:02:12.010000"],["2024-07-25T09:02:13.010000"],["2024-07-25T09:02:14.010000"],["2024-07-25T09:02:15.010000"],["2024-07-25T09:02:16.010000"],["2024-07-25T09:02:17.010000"],["2024-07-25T09:02:18.010000"],["2024-07-25T09:02:19.010000"],["2024-07-25T09:02:20.010000"],["2024-07-25T09:02:21.010000"],["2024-07-25T09:02:22.010000"],["2024-07-25T09:02:23.010000"],["2024-07-25T09:02:24.010000"],["2024-07-25T09:02:25.010000"],["2024-07-25T09:02:26.010000"],["2024-07-25T09:02:27.010000"],["2024-07-25T09:02:28.010000"],["2024-07-25T09:02:29.010000"],["2024-07-25T09:02:30.010000"],["2024-07-25T09:02:31.010000"],["2024-07-25T09:02:32.010000"],["2024-07-25T09:02:33.010000"],["2024-07-25T09:02:34.010000"],["2024-07-25T09:02:35.010000"],["2024-07-25T09:02:36.010000"],["2024-07-25T09:02:37.010000"],["2024-07-25T09:02:38.010000"],["2024-07-25T09:02:39.010000"],["2024-07-25T09:02:40.010000"],["2024-07-25T09:02:41.010000"],["2024-07-25T09:02:42.010000"],["2024-07-25T09:02:43.010000"],["2024-07-25T09:02:44.010000"],["2024-07-25T09:02:45.010000"],["2024-07-25T09:02:46.010000"],["2024-07-25T09:02:47.010000"],["2024-07-25T09:02:48.010000"],["2024-07-25T09:02:49.010000"],["2024-07-25T09:02:50.010000"],["2024-07-25T09:02:51.010000"],["2024-07-25T09:02:52.010000"],["2024-07-25T09:02:53.010000"],["2024-07-25T09:02:54.010000"],["2024-07-25T09:02:55.010000"],["2024-07-25T09:02:56.010000"],["2024-07-25T09:02:57.010000"],["2024-07-25T09:02:58.010000"],["2024-07-25T09:02:59.010000"],["2024-07-25T09:03:00.010000"],["2024-07-25T09:03:01.010000"],["2024-07-25T09:03:02.010000"],["2024-07-25T09:03:03.010000"],["2024-07-25T09:03:04.010000"],["2024-07-25T09:03:05.010000"],["2024-07-25T09:03:06.010000"],["2024-07-25T09:03:07.010000"],["2024-07-25T09:03:08.010000"],["2024-07-25T09:03:09.010000"],["2024-07-25T09:03:10.010000"],["2024-07-25T09:03:11.010000"],["2024-07-25T09:03:12.010000"],["2024-07-25T09:03:13.010000"],["2024-07-25T09:03:14.010000"],["2024-07-25T09:03:15.010000"],["2024-07-25T09:03:16.010000"],["2024-07-25T09:03:17.010000"],["2024-07-25T09:03:18.010000"],["2024-07-25T09:03:19.010000"],["2024-07-25T09:03:20.010000"],["2024-07-25T09:03:21.010000"],["2024-07-25T09:03:22.010000"],["2024-07-25T09:03:23.010000"],["2024-07-25T09:03:24.010000"],["2024-07-25T09:03:25.010000"],["2024-07-25T09:03:26.010000"],["2024-07-25T09:03:27.010000"],["2024-07-25T09:03:28.010000"],["2024-07-25T09:03:29.010000"],["2024-07-25T09:03:30.010000"],["2024-07-25T09:03:31.010000"],["2024-07-25T09:03:32.010000"],["2024-07-25T09:03:33.010000"],["2024-07-25T09:03:34.010000"],["2024-07-25T09:03:35.010000"],["2024-07-25T09:03:36.010000"],["2024-07-25T09:03:37.010000"],["2024-07-25T09:03:38.010000"],["2024-07-25T09:03:39.010000"],["2024-07-25T09:03:40.010000"],["2024-07-25T09:03:41.010000"],["2024-07-25T09:03:42.010000"],["2024-07-25T09:03:43.010000"],["2024-07-25T09:03:44.010000"],["2024-07-25T09:03:45.010000"],["2024-07-25T09:03:46.010000"],["2024-07-25T09:03:47.010000"],["2024-07-25T09:03:48.010000"],["2024-07-25T09:03:49.010000"],["2024-07-25T09:03:50.010000"],["2024-07-25T09:03:51.010000"],["2024-07-25T09:03:52.010000"],["2024-07-25T09:03:53.010000"],["2024-07-25T09:03:54.010000"],["2024-07-25T09:03:55.010000"],["2024-07-25T09:03:56.010000"],["2024-07-25T09:03:57.010000"],["2024-07-25T09:03:58.010000"],["2024-07-25T09:03:59.010000"],["2024-07-25T09:04:00.010000"],["2024-07-25T09:04:01.010000"],["2024-07-25T09:04:02.010000"],["2024-07-25T09:04:03.010000"],["2024-07-25T09:04:04.010000"],["2024-07-25T09:04:05.010000"],["2024-07-25T09:04:06.010000"],["2024-07-25T09:04:07.010000"],["2024-07-25T09:04:08.010000"],["2024-07-25T09:04:09.010000"],["2024-07-25T09:04:10.010000"],["2024-07-25T09:04:11.010000"],["2024-07-25T09:04:12.010000"],["2024-07-25T09:04:13.010000"],["2024-07-25T09:04:14.010000"],["2024-07-25T09:04:15.010000"],["2024-07-25T09:04:16.010000"],["2024-07-25T09:04:17.010000"],["2024-07-25T09:04:18.010000"],["2024-07-25T09:04:19.010000"],["2024-07-25T09:04:20.010000"],["2024-07-25T09:04:21.010000"],["2024-07-25T09:04:22.010000"],["2024-07-25T09:04:23.010000"],["2024-07-25T09:04:24.010000"],["2024-07-25T09:04:25.010000"],["2024-07-25T09:04:26.010000"],["2024-07-25T09:04:27.010000"],["2024-07-25T09:04:28.010000"],["2024-07-25T09:04:29.010000"],["2024-07-25T09:04:30.010000"],["2024-07-25T09:04:31.010000"],["2024-07-25T09:04:32.010000"],["2024-07-25T09:04:33.010000"],["2024-07-25T09:04:34.010000"],["2024-07-25T09:04:35.010000"],["2024-07-25T09:04:36.010000"],["2024-07-25T09:04:37.010000"],["2024-07-25T09:04:38.010000"],["2024-07-25T09:04:39.010000"],["2024-07-25T09:04:40.010000"],["2024-07-25T09:04:41.010000"],["2024-07-25T09:04:42.010000"],["2024-07-25T09:04:43.010000"],["2024-07-25T09:04:44.010000"],["2024-07-25T09:04:45.010000"],["2024-07-25T09:04:46.010000"],["2024-07-25T09:04:47.010000"],["2024-07-25T09:04:48.010000"],["2024-07-25T09:04:49.010000"],["2024-07-25T09:04:50.010000"],["2024-07-25T09:04:51.010000"],["2024-07-25T09:04:52.010000"],["2024-07-25T09:04:53.010000"],["2024-07-25T09:04:54.010000"],["2024-07-25T09:04:55.010000"],["2024-07-25T09:04:56.010000"],["2024-07-25T09:04:57.010000"],["2024-07-25T09:04:58.010000"],["2024-07-25T09:04:59.010000"],["2024-07-25T09:05:00.010000"],["2024-07-25T09:05:01.010000"],["2024-07-25T09:05:02.010000"],["2024-07-25T09:05:03.010000"],["2024-07-25T09:05:04.010000"],["2024-07-25T09:05:05.010000"],["2024-07-25T09:05:06.010000"],["2024-07-25T09:05:07.010000"],["2024-07-25T09:05:08.010000"],["2024-07-25T09:05:09.010000"],["2024-07-25T09:05:10.010000"],["2024-07-25T09:05:11.010000"],["2024-07-25T09:05:12.010000"],["2024-07-25T09:05:13.010000"],["2024-07-25T09:05:14.010000"],["2024-07-25T09:05:15.010000"],["2024-07-25T09:05:16.010000"],["2024-07-25T09:05:17.010000"],["2024-07-25T09:05:18.010000"],["2024-07-25T09:05:19.010000"],["2024-07-25T09:05:20.010000"],["2024-07-25T09:05:21.010000"],["2024-07-25T09:05:22.010000"],["2024-07-25T09:05:23.010000"],["2024-07-25T09:05:24.010000"],["2024-07-25T09:05:25.010000"],["2024-07-25T09:05:26.010000"],["2024-07-25T09:05:27.010000"],["2024-07-25T09:05:28.010000"],["2024-07-25T09:05:29.010000"],["2024-07-25T09:05:30.010000"],["2024-07-25T09:05:31.010000"],["2024-07-25T09:05:32.010000"],["2024-07-25T09:05:33.010000"],["2024-07-25T09:05:34.010000"],["2024-07-25T09:05:35.010000"],["2024-07-25T09:05:36.010000"],["2024-07-25T09:05:37.010000"],["2024-07-25T09:05:38.010000"],["2024-07-25T09:05:39.010000"],["2024-07-25T09:05:40.010000"],["2024-07-25T09:05:41.010000"],["2024-07-25T09:05:42.010000"],["2024-07-25T09:05:43.010000"],["2024-07-25T09:05:44.010000"],["2024-07-25T09:05:45.010000"],["2024-07-25T09:05:46.010000"],["2024-07-25T09:05:47.010000"],["2024-07-25T09:05:48.010000"],["2024-07-25T09:05:49.010000"],["2024-07-25T09:05:50.010000"],["2024-07-25T09:05:51.010000"],["2024-07-25T09:05:52.010000"],["2024-07-25T09:05:53.010000"],["2024-07-25T09:05:54.010000"],["2024-07-25T09:05:55.010000"],["2024-07-25T09:05:56.010000"],["2024-07-25T09:05:57.010000"],["2024-07-25T09:05:58.010000"],["2024-07-25T09:05:59.010000"],["2024-07-25T09:06:00.010000"],["2024-07-25T09:06:01.010000"],["2024-07-25T09:06:02.010000"],["2024-07-25T09:06:03.010000"],["2024-07-25T09:06:04.010000"],["2024-07-25T09:06:05.010000"],["2024-07-25T09:06:06.010000"],["2024-07-25T09:06:07.010000"],["2024-07-25T09:06:08.010000"],["2024-07-25T09:06:09.010000"],["2024-07-25T09:06:10.010000"],["2024-07-25T09:06:11.010000"],["2024-07-25T09:06:12.010000"],["2024-07-25T09:06:13.010000"],["2024-07-25T09:06:14.010000"],["2024-07-25T09:06:15.010000"],["2024-07-25T09:06:16.010000"],["2024-07-25T09:06:17.010000"],["2024-07-25T09:06:18.010000"],["2024-07-25T09:06:19.010000"],["2024-07-25T09:06:20.010000"],["2024-07-25T09:06:21.010000"],["2024-07-25T09:06:22.010000"],["2024-07-25T09:06:23.010000"],["2024-07-25T09:06:24.010000"],["2024-07-25T09:06:25.010000"],["2024-07-25T09:06:26.010000"],["2024-07-25T09:06:27.010000"],["2024-07-25T09:06:28.010000"],["2024-07-25T09:06:29.010000"],["2024-07-25T09:06:30.010000"],["2024-07-25T09:06:31.010000"],["2024-07-25T09:06:32.010000"],["2024-07-25T09:06:33.010000"],["2024-07-25T09:06:34.010000"],["2024-07-25T09:06:35.010000"],["2024-07-25T09:06:36.010000"],["2024-07-25T09:06:37.010000"],["2024-07-25T09:06:38.010000"],["2024-07-25T09:06:39.010000"],["2024-07-25T09:06:40.010000"],["2024-07-25T09:06:41.010000"],["2024-07-25T09:06:42.010000"],["2024-07-25T09:06:43.010000"],["2024-07-25T09:06:44.010000"],["2024-07-25T09:06:45.010000"],["2024-07-25T09:06:46.010000"],["2024-07-25T09:06:47.010000"],["2024-07-25T09:06:48.010000"],["2024-07-25T09:06:49.010000"],["2024-07-25T09:06:50.010000"],["2024-07-25T09:06:51.010000"],["2024-07-25T09:06:52.010000"],["2024-07-25T09:06:53.010000"],["2024-07-25T09:06:54.010000"],["2024-07-25T09:06:55.010000"],["2024-07-25T09:06:56.010000"],["2024-07-25T09:06:57.010000"],["2024-07-25T09:06:58.010000"],["2024-07-25T09:06:59.010000"],["2024-07-25T09:07:00.010000"],["2024-07-25T09:07:01.010000"],["2024-07-25T09:07:02.010000"],["2024-07-25T09:07:03.010000"],["2024-07-25T09:07:04.010000"],["2024-07-25T09:07:05.010000"],["2024-07-25T09:07:06.010000"],["2024-07-25T09:07:07.010000"],["2024-07-25T09:07:08.010000"],["2024-07-25T09:07:09.010000"],["2024-07-25T09:07:10.010000"],["2024-07-25T09:07:11.010000"],["2024-07-25T09:07:12.010000"],["2024-07-25T09:07:13.010000"],["2024-07-25T09:07:14.010000"],["2024-07-25T09:07:15.010000"],["2024-07-25T09:07:16.010000"],["2024-07-25T09:07:17.010000"],["2024-07-25T09:07:18.010000"],["2024-07-25T09:07:19.010000"],["2024-07-25T09:07:20.010000"],["2024-07-25T09:07:21.010000"],["2024-07-25T09:07:22.010000"],["2024-07-25T09:07:23.010000"],["2024-07-25T09:07:24.010000"],["2024-07-25T09:07:25.010000"],["2024-07-25T09:07:26.010000"],["2024-07-25T09:07:27.010000"],["2024-07-25T09:07:28.010000"],["2024-07-25T09:07:29.010000"],["2024-07-25T09:07:30.010000"],["2024-07-25T09:07:31.010000"],["2024-07-25T09:07:32.010000"],["2024-07-25T09:07:33.010000"],["2024-07-25T09:07:34.010000"],["2024-07-25T09:07:35.010000"],["2024-07-25T09:07:36.010000"],["2024-07-25T09:07:37.010000"],["2024-07-25T09:07:38.010000"],["2024-07-25T09:07:39.010000"],["2024-07-25T09:07:40.010000"],["2024-07-25T09:07:41.010000"],["2024-07-25T09:07:42.010000"],["2024-07-25T09:07:43.010000"],["2024-07-25T09:07:44.010000"],["2024-07-25T09:07:45.010000"],["2024-07-25T09:07:46.010000"],["2024-07-25T09:07:47.010000"],["2024-07-25T09:07:48.010000"],["2024-07-25T09:07:49.010000"],["2024-07-25T09:07:50.010000"],["2024-07-25T09:07:51.010000"],["2024-07-25T09:07:52.010000"],["2024-07-25T09:07:53.010000"],["2024-07-25T09:07:54.010000"],["2024-07-25T09:07:55.010000"],["2024-07-25T09:07:56.010000"],["2024-07-25T09:07:57.010000"],["2024-07-25T09:07:58.010000"],["2024-07-25T09:07:59.010000"],["2024-07-25T09:08:00.010000"],["2024-07-25T09:08:01.010000"],["2024-07-25T09:08:02.010000"],["2024-07-25T09:08:03.010000"],["2024-07-25T09:08:04.010000"],["2024-07-25T09:08:05.010000"],["2024-07-25T09:08:06.010000"],["2024-07-25T09:08:07.010000"],["2024-07-25T09:08:08.010000"],["2024-07-25T09:08:09.010000"],["2024-07-25T09:08:10.010000"],["2024-07-25T09:08:11.010000"],["2024-07-25T09:08:12.010000"],["2024-07-25T09:08:13.010000"],["2024-07-25T09:08:14.010000"],["2024-07-25T09:08:15.010000"],["2024-07-25T09:08:16.010000"],["2024-07-25T09:08:17.010000"],["2024-07-25T09:08:18.010000"],["2024-07-25T09:08:19.010000"],["2024-07-25T09:08:20.010000"],["2024-07-25T09:08:21.010000"],["2024-07-25T09:08:22.010000"],["2024-07-25T09:08:23.010000"],["2024-07-25T09:08:24.010000"],["2024-07-25T09:08:25.010000"],["2024-07-25T09:08:26.010000"],["2024-07-25T09:08:27.010000"],["2024-07-25T09:08:28.010000"],["2024-07-25T09:08:29.010000"],["2024-07-25T09:08:30.010000"],["2024-07-25T09:08:31.010000"],["2024-07-25T09:08:32.010000"],["2024-07-25T09:08:33.010000"],["2024-07-25T09:08:34.010000"],["2024-07-25T09:08:35.010000"],["2024-07-25T09:08:36.010000"],["2024-07-25T09:08:37.010000"],["2024-07-25T09:08:38.010000"],["2024-07-25T09:08:39.010000"],["2024-07-25T09:08:40.010000"],["2024-07-25T09:08:41.010000"],["2024-07-25T09:08:42.010000"],["2024-07-25T09:08:43.010000"],["2024-07-25T09:08:44.010000"],["2024-07-25T09:08:45.010000"],["2024-07-25T09:08:46.010000"],["2024-07-25T09:08:47.010000"],["2024-07-25T09:08:48.010000"],["2024-07-25T09:08:49.010000"],["2024-07-25T09:08:50.010000"],["2024-07-25T09:08:51.010000"],["2024-07-25T09:08:52.010000"],["2024-07-25T09:08:53.010000"],["2024-07-25T09:08:54.010000"],["2024-07-25T09:08:55.010000"],["2024-07-25T09:08:56.010000"],["2024-07-25T09:08:57.010000"],["2024-07-25T09:08:58.010000"],["2024-07-25T09:08:59.010000"],["2024-07-25T09:09:00.010000"],["2024-07-25T09:09:01.010000"],["2024-07-25T09:09:02.010000"],["2024-07-25T09:09:03.010000"],["2024-07-25T09:09:04.010000"],["2024-07-25T09:09:05.010000"],["2024-07-25T09:09:06.010000"],["2024-07-25T09:09:07.010000"],["2024-07-25T09:09:08.010000"],["2024-07-25T09:09:09.010000"],["2024-07-25T09:09:10.010000"],["2024-07-25T09:09:11.010000"],["2024-07-25T09:09:12.010000"],["2024-07-25T09:09:13.010000"],["2024-07-25T09:09:14.010000"],["2024-07-25T09:09:15.010000"],["2024-07-25T09:09:16.010000"],["2024-07-25T09:09:17.010000"],["2024-07-25T09:09:18.010000"],["2024-07-25T09:09:19.010000"],["2024-07-25T09:09:20.010000"],["2024-07-25T09:09:21.010000"],["2024-07-25T09:09:22.010000"],["2024-07-25T09:09:23.010000"],["2024-07-25T09:09:24.010000"],["2024-07-25T09:09:25.010000"],["2024-07-25T09:09:26.010000"],["2024-07-25T09:09:27.010000"],["2024-07-25T09:09:28.010000"],["2024-07-25T09:09:29.010000"],["2024-07-25T09:09:30.010000"],["2024-07-25T09:09:31.010000"],["2024-07-25T09:09:32.010000"],["2024-07-25T09:09:33.010000"],["2024-07-25T09:09:34.010000"],["2024-07-25T09:09:35.010000"],["2024-07-25T09:09:36.010000"],["2024-07-25T09:09:37.010000"],["2024-07-25T09:09:38.010000"],["2024-07-25T09:09:39.010000"],["2024-07-25T09:09:40.010000"],["2024-07-25T09:09:41.010000"],["2024-07-25T09:09:42.010000"],["2024-07-25T09:09:43.010000"],["2024-07-25T09:09:44.010000"],["2024-07-25T09:09:45.010000"],["2024-07-25T09:09:46.010000"],["2024-07-25T09:09:47.010000"],["2024-07-25T09:09:48.010000"],["2024-07-25T09:09:49.010000"],["2024-07-25T09:09:50.010000"],["2024-07-25T09:09:51.010000"],["2024-07-25T09:09:52.010000"],["2024-07-25T09:09:53.010000"],["2024-07-25T09:09:54.010000"],["2024-07-25T09:09:55.010000"],["2024-07-25T09:09:56.010000"],["2024-07-25T09:09:57.010000"],["2024-07-25T09:09:58.010000"],["2024-07-25T09:09:59.010000"],["2024-07-25T09:10:00.010000"],["2024-07-25T09:10:01.010000"],["2024-07-25T09:10:02.010000"],["2024-07-25T09:10:03.010000"],["2024-07-25T09:10:04.010000"],["2024-07-25T09:10:05.010000"],["2024-07-25T09:10:06.010000"],["2024-07-25T09:10:07.010000"],["2024-07-25T09:10:08.010000"],["2024-07-25T09:10:09.010000"],["2024-07-25T09:10:10.010000"],["2024-07-25T09:10:11.010000"],["2024-07-25T09:10:12.010000"],["2024-07-25T09:10:13.010000"],["2024-07-25T09:10:14.010000"],["2024-07-25T09:10:15.010000"],["2024-07-25T09:10:16.010000"],["2024-07-25T09:10:17.010000"],["2024-07-25T09:10:18.010000"],["2024-07-25T09:10:19.010000"],["2024-07-25T09:10:20.010000"],["2024-07-25T09:10:21.010000"],["2024-07-25T09:10:22.010000"],["2024-07-25T09:10:23.010000"],["2024-07-25T09:10:24.010000"],["2024-07-25T09:10:25.010000"],["2024-07-25T09:10:26.010000"],["2024-07-25T09:10:27.010000"],["2024-07-25T09:10:28.010000"],["2024-07-25T09:10:29.010000"],["2024-07-25T09:10:30.010000"],["2024-07-25T09:10:31.010000"],["2024-07-25T09:10:32.010000"],["2024-07-25T09:10:33.010000"],["2024-07-25T09:10:34.010000"],["2024-07-25T09:10:35.010000"],["2024-07-25T09:10:36.010000"],["2024-07-25T09:10:37.010000"],["2024-07-25T09:10:38.010000"],["2024-07-25T09:10:39.010000"],["2024-07-25T09:10:40.010000"],["2024-07-25T09:10:41.010000"],["2024-07-25T09:10:42.010000"],["2024-07-25T09:10:43.010000"],["2024-07-25T09:10:44.010000"],["2024-07-25T09:10:45.010000"],["2024-07-25T09:10:46.010000"],["2024-07-25T09:10:47.010000"],["2024-07-25T09:10:48.010000"],["2024-07-25T09:10:49.010000"],["2024-07-25T09:10:50.010000"],["2024-07-25T09:10:51.010000"],["2024-07-25T09:10:52.010000"],["2024-07-25T09:10:53.010000"],["2024-07-25T09:10:54.010000"],["2024-07-25T09:10:55.010000"],["2024-07-25T09:10:56.010000"],["2024-07-25T09:10:57.010000"],["2024-07-25T09:10:58.010000"],["2024-07-25T09:10:59.010000"],["2024-07-25T09:11:00.010000"],["2024-07-25T09:11:01.010000"],["2024-07-25T09:11:02.010000"],["2024-07-25T09:11:03.010000"],["2024-07-25T09:11:04.010000"],["2024-07-25T09:11:05.010000"],["2024-07-25T09:11:06.010000"],["2024-07-25T09:11:07.010000"],["2024-07-25T09:11:08.010000"],["2024-07-25T09:11:09.010000"],["2024-07-25T09:11:10.010000"],["2024-07-25T09:11:11.010000"],["2024-07-25T09:11:12.010000"],["2024-07-25T09:11:13.010000"],["2024-07-25T09:11:14.010000"],["2024-07-25T09:11:15.010000"],["2024-07-25T09:11:16.010000"],["2024-07-25T09:11:17.010000"],["2024-07-25T09:11:18.010000"],["2024-07-25T09:11:19.010000"],["2024-07-25T09:11:20.010000"],["2024-07-25T09:11:21.010000"],["2024-07-25T09:11:22.010000"],["2024-07-25T09:11:23.010000"],["2024-07-25T09:11:24.010000"],["2024-07-25T09:11:25.010000"],["2024-07-25T09:11:26.010000"],["2024-07-25T09:11:27.010000"],["2024-07-25T09:11:28.010000"],["2024-07-25T09:11:29.010000"],["2024-07-25T09:11:30.010000"],["2024-07-25T09:11:31.010000"],["2024-07-25T09:11:32.010000"],["2024-07-25T09:11:33.010000"],["2024-07-25T09:11:34.010000"],["2024-07-25T09:11:35.010000"],["2024-07-25T09:11:36.010000"],["2024-07-25T09:11:37.010000"],["2024-07-25T09:11:38.010000"],["2024-07-25T09:11:39.010000"],["2024-07-25T09:11:40.010000"],["2024-07-25T09:11:41.010000"],["2024-07-25T09:11:42.010000"],["2024-07-25T09:11:43.010000"],["2024-07-25T09:11:44.010000"],["2024-07-25T09:11:45.010000"],["2024-07-25T09:11:46.010000"],["2024-07-25T09:11:47.010000"],["2024-07-25T09:11:48.010000"],["2024-07-25T09:11:49.010000"],["2024-07-25T09:11:50.010000"],["2024-07-25T09:11:51.010000"],["2024-07-25T09:11:52.010000"],["2024-07-25T09:11:53.010000"],["2024-07-25T09:11:54.010000"],["2024-07-25T09:11:55.010000"],["2024-07-25T09:11:56.010000"],["2024-07-25T09:11:57.010000"],["2024-07-25T09:11:58.010000"],["2024-07-25T09:11:59.010000"],["2024-07-25T09:12:00.010000"],["2024-07-25T09:12:01.010000"],["2024-07-25T09:12:02.010000"],["2024-07-25T09:12:03.010000"],["2024-07-25T09:12:04.010000"],["2024-07-25T09:12:05.010000"],["2024-07-25T09:12:06.010000"],["2024-07-25T09:12:07.010000"],["2024-07-25T09:12:08.010000"],["2024-07-25T09:12:09.010000"],["2024-07-25T09:12:10.010000"],["2024-07-25T09:12:11.010000"],["2024-07-25T09:12:12.010000"],["2024-07-25T09:12:13.010000"],["2024-07-25T09:12:14.010000"],["2024-07-25T09:12:15.010000"],["2024-07-25T09:12:16.010000"],["2024-07-25T09:12:17.010000"],["2024-07-25T09:12:18.010000"],["2024-07-25T09:12:19.010000"],["2024-07-25T09:12:20.010000"],["2024-07-25T09:12:21.010000"],["2024-07-25T09:12:22.010000"],["2024-07-25T09:12:23.010000"],["2024-07-25T09:12:24.010000"],["2024-07-25T09:12:25.010000"],["2024-07-25T09:12:26.010000"],["2024-07-25T09:12:27.010000"],["2024-07-25T09:12:28.010000"],["2024-07-25T09:12:29.010000"],["2024-07-25T09:12:30.010000"],["2024-07-25T09:12:31.010000"],["2024-07-25T09:12:32.010000"],["2024-07-25T09:12:33.010000"],["2024-07-25T09:12:34.010000"],["2024-07-25T09:12:35.010000"],["2024-07-25T09:12:36.010000"],["2024-07-25T09:12:37.010000"],["2024-07-25T09:12:38.010000"],["2024-07-25T09:12:39.010000"],["2024-07-25T09:12:40.010000"],["2024-07-25T09:12:41.010000"],["2024-07-25T09:12:42.010000"],["2024-07-25T09:12:43.010000"],["2024-07-25T09:12:44.010000"],["2024-07-25T09:12:45.010000"],["2024-07-25T09:12:46.010000"],["2024-07-25T09:12:47.010000"],["2024-07-25T09:12:48.010000"],["2024-07-25T09:12:49.010000"],["2024-07-25T09:12:50.010000"],["2024-07-25T09:12:51.010000"],["2024-07-25T09:12:52.010000"],["2024-07-25T09:12:53.010000"],["2024-07-25T09:12:54.010000"],["2024-07-25T09:12:55.010000"],["2024-07-25T09:12:56.010000"],["2024-07-25T09:12:57.010000"],["2024-07-25T09:12:58.010000"],["2024-07-25T09:12:59.010000"],["2024-07-25T09:13:00.010000"],["2024-07-25T09:13:01.010000"],["2024-07-25T09:13:02.010000"],["2024-07-25T09:13:03.010000"],["2024-07-25T09:13:04.010000"],["2024-07-25T09:13:05.010000"],["2024-07-25T09:13:06.010000"],["2024-07-25T09:13:07.010000"],["2024-07-25T09:13:08.010000"],["2024-07-25T09:13:09.010000"],["2024-07-25T09:13:10.010000"],["2024-07-25T09:13:11.010000"],["2024-07-25T09:13:12.010000"],["2024-07-25T09:13:13.010000"],["2024-07-25T09:13:14.010000"],["2024-07-25T09:13:15.010000"],["2024-07-25T09:13:16.010000"],["2024-07-25T09:13:17.010000"],["2024-07-25T09:13:18.010000"],["2024-07-25T09:13:19.010000"],["2024-07-25T09:13:20.010000"],["2024-07-25T09:13:21.010000"],["2024-07-25T09:13:22.010000"],["2024-07-25T09:13:23.010000"],["2024-07-25T09:13:24.010000"],["2024-07-25T09:13:25.010000"],["2024-07-25T09:13:26.010000"],["2024-07-25T09:13:27.010000"],["2024-07-25T09:13:28.010000"],["2024-07-25T09:13:29.010000"],["2024-07-25T09:13:30.010000"],["2024-07-25T09:13:31.010000"],["2024-07-25T09:13:32.010000"],["2024-07-25T09:13:33.010000"],["2024-07-25T09:13:34.010000"],["2024-07-25T09:13:35.010000"],["2024-07-25T09:13:36.010000"],["2024-07-25T09:13:37.010000"],["2024-07-25T09:13:38.010000"],["2024-07-25T09:13:39.010000"],["2024-07-25T09:13:40.010000"],["2024-07-25T09:13:41.010000"],["2024-07-25T09:13:42.010000"],["2024-07-25T09:13:43.010000"],["2024-07-25T09:13:44.010000"],["2024-07-25T09:13:45.010000"],["2024-07-25T09:13:46.010000"],["2024-07-25T09:13:47.010000"],["2024-07-25T09:13:48.010000"],["2024-07-25T09:13:49.010000"],["2024-07-25T09:13:50.010000"],["2024-07-25T09:13:51.010000"],["2024-07-25T09:13:52.010000"],["2024-07-25T09:13:53.010000"],["2024-07-25T09:13:54.010000"],["2024-07-25T09:13:55.010000"],["2024-07-25T09:13:56.010000"],["2024-07-25T09:13:57.010000"],["2024-07-25T09:13:58.010000"],["2024-07-25T09:13:59.010000"],["2024-07-25T09:14:00.010000"],["2024-07-25T09:14:01.010000"],["2024-07-25T09:14:02.010000"],["2024-07-25T09:14:03.010000"],["2024-07-25T09:14:04.010000"],["2024-07-25T09:14:05.010000"],["2024-07-25T09:14:06.010000"],["2024-07-25T09:14:07.010000"],["2024-07-25T09:14:08.010000"],["2024-07-25T09:14:09.010000"],["2024-07-25T09:14:10.010000"],["2024-07-25T09:14:11.010000"],["2024-07-25T09:14:12.010000"],["2024-07-25T09:14:13.010000"],["2024-07-25T09:14:14.010000"],["2024-07-25T09:14:15.010000"],["2024-07-25T09:14:16.010000"],["2024-07-25T09:14:17.010000"],["2024-07-25T09:14:18.010000"],["2024-07-25T09:14:19.010000"],["2024-07-25T09:14:20.010000"],["2024-07-25T09:14:21.010000"],["2024-07-25T09:14:22.010000"],["2024-07-25T09:14:23.010000"],["2024-07-25T09:14:24.010000"],["2024-07-25T09:14:25.010000"],["2024-07-25T09:14:26.010000"],["2024-07-25T09:14:27.010000"],["2024-07-25T09:14:28.010000"],["2024-07-25T09:14:29.010000"],["2024-07-25T09:14:30.010000"],["2024-07-25T09:14:31.010000"],["2024-07-25T09:14:32.010000"],["2024-07-25T09:14:33.010000"],["2024-07-25T09:14:34.010000"],["2024-07-25T09:14:35.010000"],["2024-07-25T09:14:36.010000"],["2024-07-25T09:14:37.010000"],["2024-07-25T09:14:38.010000"],["2024-07-25T09:14:39.010000"],["2024-07-25T09:14:40.010000"],["2024-07-25T09:14:41.010000"],["2024-07-25T09:14:42.010000"],["2024-07-25T09:14:43.010000"],["2024-07-25T09:14:44.010000"],["2024-07-25T09:14:45.010000"],["2024-07-25T09:14:46.010000"],["2024-07-25T09:14:47.010000"],["2024-07-25T09:14:48.010000"],["2024-07-25T09:14:49.010000"],["2024-07-25T09:14:50.010000"],["2024-07-25T09:14:51.010000"],["2024-07-25T09:14:52.010000"],["2024-07-25T09:14:53.010000"],["2024-07-25T09:14:54.010000"],["2024-07-25T09:14:55.010000"],["2024-07-25T09:14:56.010000"],["2024-07-25T09:14:57.010000"],["2024-07-25T09:14:58.010000"],["2024-07-25T09:14:59.010000"],["2024-07-25T09:15:00.010000"],["2024-07-25T09:15:01.010000"],["2024-07-25T09:15:02.010000"],["2024-07-25T09:15:03.010000"],["2024-07-25T09:15:04.010000"],["2024-07-25T09:15:05.010000"],["2024-07-25T09:15:06.010000"],["2024-07-25T09:15:07.010000"],["2024-07-25T09:15:08.010000"],["2024-07-25T09:15:09.010000"],["2024-07-25T09:15:10.010000"],["2024-07-25T09:15:11.010000"],["2024-07-25T09:15:12.010000"],["2024-07-25T09:15:13.010000"],["2024-07-25T09:15:14.010000"],["2024-07-25T09:15:15.010000"],["2024-07-25T09:15:16.010000"],["2024-07-25T09:15:17.010000"],["2024-07-25T09:15:18.010000"],["2024-07-25T09:15:19.010000"],["2024-07-25T09:15:20.010000"],["2024-07-25T09:15:21.010000"],["2024-07-25T09:15:22.010000"],["2024-07-25T09:15:23.010000"],["2024-07-25T09:15:24.010000"],["2024-07-25T09:15:25.010000"],["2024-07-25T09:15:26.010000"],["2024-07-25T09:15:27.010000"],["2024-07-25T09:15:28.010000"],["2024-07-25T09:15:29.010000"],["2024-07-25T09:15:30.010000"],["2024-07-25T09:15:31.010000"],["2024-07-25T09:15:32.010000"],["2024-07-25T09:15:33.010000"],["2024-07-25T09:15:34.010000"],["2024-07-25T09:15:35.010000"],["2024-07-25T09:15:36.010000"],["2024-07-25T09:15:37.010000"],["2024-07-25T09:15:38.010000"],["2024-07-25T09:15:39.010000"],["2024-07-25T09:15:40.010000"],["2024-07-25T09:15:41.010000"],["2024-07-25T09:15:42.010000"],["2024-07-25T09:15:43.010000"],["2024-07-25T09:15:44.010000"],["2024-07-25T09:15:45.010000"],["2024-07-25T09:15:46.010000"],["2024-07-25T09:15:47.010000"],["2024-07-25T09:15:48.010000"],["2024-07-25T09:15:49.010000"],["2024-07-25T09:15:50.010000"],["2024-07-25T09:15:51.010000"],["2024-07-25T09:15:52.010000"],["2024-07-25T09:15:53.010000"],["2024-07-25T09:15:54.010000"],["2024-07-25T09:15:55.010000"],["2024-07-25T09:15:56.010000"],["2024-07-25T09:15:57.010000"],["2024-07-25T09:15:58.010000"],["2024-07-25T09:15:59.010000"],["2024-07-25T09:16:00.010000"],["2024-07-25T09:16:01.010000"],["2024-07-25T09:16:02.010000"],["2024-07-25T09:16:03.010000"],["2024-07-25T09:16:04.010000"],["2024-07-25T09:16:05.010000"],["2024-07-25T09:16:06.010000"],["2024-07-25T09:16:07.010000"],["2024-07-25T09:16:08.010000"],["2024-07-25T09:16:09.010000"],["2024-07-25T09:16:10.010000"],["2024-07-25T09:16:11.010000"],["2024-07-25T09:16:12.010000"],["2024-07-25T09:16:13.010000"],["2024-07-25T09:16:14.010000"],["2024-07-25T09:16:15.010000"],["2024-07-25T09:16:16.010000"],["2024-07-25T09:16:17.010000"],["2024-07-25T09:16:18.010000"],["2024-07-25T09:16:19.010000"],["2024-07-25T09:16:20.010000"],["2024-07-25T09:16:21.010000"],["2024-07-25T09:16:22.010000"],["2024-07-25T09:16:23.010000"],["2024-07-25T09:16:24.010000"],["2024-07-25T09:16:25.010000"],["2024-07-25T09:16:26.010000"],["2024-07-25T09:16:27.010000"],["2024-07-25T09:16:28.010000"],["2024-07-25T09:16:29.010000"],["2024-07-25T09:16:30.010000"],["2024-07-25T09:16:31.010000"],["2024-07-25T09:16:32.010000"],["2024-07-25T09:16:33.010000"],["2024-07-25T09:16:34.010000"],["2024-07-25T09:16:35.010000"],["2024-07-25T09:16:36.010000"],["2024-07-25T09:16:37.010000"],["2024-07-25T09:16:38.010000"],["2024-07-25T09:16:39.010000"],["2024-07-25T09:16:40.010000"],["2024-07-25T09:16:41.010000"],["2024-07-25T09:16:42.010000"],["2024-07-25T09:16:43.010000"],["2024-07-25T09:16:44.010000"],["2024-07-25T09:16:45.010000"],["2024-07-25T09:16:46.010000"],["2024-07-25T09:16:47.010000"],["2024-07-25T09:16:48.010000"],["2024-07-25T09:16:49.010000"],["2024-07-25T09:16:50.010000"],["2024-07-25T09:16:51.010000"],["2024-07-25T09:16:52.010000"],["2024-07-25T09:16:53.010000"],["2024-07-25T09:16:54.010000"],["2024-07-25T09:16:55.010000"],["2024-07-25T09:16:56.010000"],["2024-07-25T09:16:57.010000"],["2024-07-25T09:16:58.010000"],["2024-07-25T09:16:59.010000"],["2024-07-25T09:17:00.010000"],["2024-07-25T09:17:01.010000"],["2024-07-25T09:17:02.010000"],["2024-07-25T09:17:03.010000"],["2024-07-25T09:17:04.010000"],["2024-07-25T09:17:05.010000"],["2024-07-25T09:17:06.010000"],["2024-07-25T09:17:07.010000"],["2024-07-25T09:17:08.010000"],["2024-07-25T09:17:09.010000"],["2024-07-25T09:17:10.010000"],["2024-07-25T09:17:11.010000"],["2024-07-25T09:17:12.010000"],["2024-07-25T09:17:13.010000"],["2024-07-25T09:17:14.010000"],["2024-07-25T09:17:15.010000"],["2024-07-25T09:17:16.010000"],["2024-07-25T09:17:17.010000"],["2024-07-25T09:17:18.010000"],["2024-07-25T09:17:19.010000"],["2024-07-25T09:17:20.010000"],["2024-07-25T09:17:21.010000"],["2024-07-25T09:17:22.010000"],["2024-07-25T09:17:23.010000"],["2024-07-25T09:17:24.010000"],["2024-07-25T09:17:25.010000"],["2024-07-25T09:17:26.010000"],["2024-07-25T09:17:27.010000"],["2024-07-25T09:17:28.010000"],["2024-07-25T09:17:29.010000"],["2024-07-25T09:17:30.010000"],["2024-07-25T09:17:31.010000"],["2024-07-25T09:17:32.010000"],["2024-07-25T09:17:33.010000"],["2024-07-25T09:17:34.010000"],["2024-07-25T09:17:35.010000"],["2024-07-25T09:17:36.010000"],["2024-07-25T09:17:37.010000"],["2024-07-25T09:17:38.010000"],["2024-07-25T09:17:39.010000"],["2024-07-25T09:17:40.010000"],["2024-07-25T09:17:41.010000"],["2024-07-25T09:17:42.010000"],["2024-07-25T09:17:43.010000"],["2024-07-25T09:17:44.010000"],["2024-07-25T09:17:45.010000"],["2024-07-25T09:17:46.010000"],["2024-07-25T09:17:47.010000"],["2024-07-25T09:17:48.010000"],["2024-07-25T09:17:49.010000"],["2024-07-25T09:17:50.010000"],["2024-07-25T09:17:51.010000"],["2024-07-25T09:17:52.010000"],["2024-07-25T09:17:53.010000"],["2024-07-25T09:17:54.010000"],["2024-07-25T09:17:55.010000"],["2024-07-25T09:17:56.010000"],["2024-07-25T09:17:57.010000"],["2024-07-25T09:17:58.010000"],["2024-07-25T09:17:59.010000"],["2024-07-25T09:18:00.010000"],["2024-07-25T09:18:01.010000"],["2024-07-25T09:18:02.010000"],["2024-07-25T09:18:03.010000"],["2024-07-25T09:18:04.010000"],["2024-07-25T09:18:05.010000"],["2024-07-25T09:18:06.010000"],["2024-07-25T09:18:07.010000"],["2024-07-25T09:18:08.010000"],["2024-07-25T09:18:09.010000"],["2024-07-25T09:18:10.010000"],["2024-07-25T09:18:11.010000"],["2024-07-25T09:18:12.010000"],["2024-07-25T09:18:13.010000"],["2024-07-25T09:18:14.010000"],["2024-07-25T09:18:15.010000"],["2024-07-25T09:18:16.010000"],["2024-07-25T09:18:17.010000"],["2024-07-25T09:18:18.010000"],["2024-07-25T09:18:19.010000"],["2024-07-25T09:18:20.010000"],["2024-07-25T09:18:21.010000"],["2024-07-25T09:18:22.010000"],["2024-07-25T09:18:23.010000"],["2024-07-25T09:18:24.010000"],["2024-07-25T09:18:25.010000"],["2024-07-25T09:18:26.010000"],["2024-07-25T09:18:27.010000"],["2024-07-25T09:18:28.010000"],["2024-07-25T09:18:29.010000"],["2024-07-25T09:18:30.010000"],["2024-07-25T09:18:31.010000"],["2024-07-25T09:18:32.010000"],["2024-07-25T09:18:33.010000"],["2024-07-25T09:18:34.010000"],["2024-07-25T09:18:35.010000"],["2024-07-25T09:18:36.010000"],["2024-07-25T09:18:37.010000"],["2024-07-25T09:18:38.010000"],["2024-07-25T09:18:39.010000"],["2024-07-25T09:18:40.010000"],["2024-07-25T09:18:41.010000"],["2024-07-25T09:18:42.010000"],["2024-07-25T09:18:43.010000"],["2024-07-25T09:18:44.010000"],["2024-07-25T09:18:45.010000"],["2024-07-25T09:18:46.010000"],["2024-07-25T09:18:47.010000"],["2024-07-25T09:18:48.010000"],["2024-07-25T09:18:49.010000"],["2024-07-25T09:18:50.010000"],["2024-07-25T09:18:51.010000"],["2024-07-25T09:18:52.010000"],["2024-07-25T09:18:53.010000"],["2024-07-25T09:18:54.010000"],["2024-07-25T09:18:55.010000"],["2024-07-25T09:18:56.010000"],["2024-07-25T09:18:57.010000"],["2024-07-25T09:18:58.010000"],["2024-07-25T09:18:59.010000"],["2024-07-25T09:19:00.010000"],["2024-07-25T09:19:01.010000"],["2024-07-25T09:19:02.010000"],["2024-07-25T09:19:03.010000"],["2024-07-25T09:19:04.010000"],["2024-07-25T09:19:05.010000"],["2024-07-25T09:19:06.010000"],["2024-07-25T09:19:07.010000"],["2024-07-25T09:19:08.010000"],["2024-07-25T09:19:09.010000"],["2024-07-25T09:19:10.010000"],["2024-07-25T09:19:11.010000"],["2024-07-25T09:19:12.010000"],["2024-07-25T09:19:13.010000"],["2024-07-25T09:19:14.010000"],["2024-07-25T09:19:15.010000"],["2024-07-25T09:19:16.010000"],["2024-07-25T09:19:17.010000"],["2024-07-25T09:19:18.010000"],["2024-07-25T09:19:19.010000"],["2024-07-25T09:19:20.010000"],["2024-07-25T09:19:21.010000"],["2024-07-25T09:19:22.010000"],["2024-07-25T09:19:23.010000"],["2024-07-25T09:19:24.010000"],["2024-07-25T09:19:25.010000"],["2024-07-25T09:19:26.010000"],["2024-07-25T09:19:27.010000"],["2024-07-25T09:19:28.010000"],["2024-07-25T09:19:29.010000"],["2024-07-25T09:19:30.010000"],["2024-07-25T09:19:31.010000"],["2024-07-25T09:19:32.010000"],["2024-07-25T09:19:33.010000"],["2024-07-25T09:19:34.010000"],["2024-07-25T09:19:35.010000"],["2024-07-25T09:19:36.010000"],["2024-07-25T09:19:37.010000"],["2024-07-25T09:19:38.010000"],["2024-07-25T09:19:39.010000"],["2024-07-25T09:19:40.010000"],["2024-07-25T09:19:41.010000"],["2024-07-25T09:19:42.010000"],["2024-07-25T09:19:43.010000"],["2024-07-25T09:19:44.010000"],["2024-07-25T09:19:45.010000"],["2024-07-25T09:19:46.010000"],["2024-07-25T09:19:47.010000"],["2024-07-25T09:19:48.010000"],["2024-07-25T09:19:49.010000"],["2024-07-25T09:19:50.010000"],["2024-07-25T09:19:51.010000"],["2024-07-25T09:19:52.010000"],["2024-07-25T09:19:53.010000"],["2024-07-25T09:19:54.010000"],["2024-07-25T09:19:55.010000"],["2024-07-25T09:19:56.010000"],["2024-07-25T09:19:57.010000"],["2024-07-25T09:19:58.010000"],["2024-07-25T09:19:59.010000"],["2024-07-25T09:20:00.010000"],["2024-07-25T09:20:01.010000"],["2024-07-25T09:20:02.010000"],["2024-07-25T09:20:03.010000"],["2024-07-25T09:20:04.010000"],["2024-07-25T09:20:05.010000"],["2024-07-25T09:20:06.010000"],["2024-07-25T09:20:07.010000"],["2024-07-25T09:20:08.010000"],["2024-07-25T09:20:09.010000"],["2024-07-25T09:20:10.010000"],["2024-07-25T09:20:11.010000"],["2024-07-25T09:20:12.010000"],["2024-07-25T09:20:13.010000"],["2024-07-25T09:20:14.010000"],["2024-07-25T09:20:15.010000"],["2024-07-25T09:20:16.010000"],["2024-07-25T09:20:17.010000"],["2024-07-25T09:20:18.010000"],["2024-07-25T09:20:19.010000"],["2024-07-25T09:20:20.010000"],["2024-07-25T09:20:21.010000"],["2024-07-25T09:20:22.010000"],["2024-07-25T09:20:23.010000"],["2024-07-25T09:20:24.010000"],["2024-07-25T09:20:25.010000"],["2024-07-25T09:20:26.010000"],["2024-07-25T09:20:27.010000"],["2024-07-25T09:20:28.010000"],["2024-07-25T09:20:29.010000"],["2024-07-25T09:20:30.010000"],["2024-07-25T09:20:31.010000"],["2024-07-25T09:20:32.010000"],["2024-07-25T09:20:33.010000"],["2024-07-25T09:20:34.010000"],["2024-07-25T09:20:35.010000"],["2024-07-25T09:20:36.010000"],["2024-07-25T09:20:37.010000"],["2024-07-25T09:20:38.010000"],["2024-07-25T09:20:39.010000"],["2024-07-25T09:20:40.010000"],["2024-07-25T09:20:41.010000"],["2024-07-25T09:20:42.010000"],["2024-07-25T09:20:43.010000"],["2024-07-25T09:20:44.010000"],["2024-07-25T09:20:45.010000"],["2024-07-25T09:20:46.010000"],["2024-07-25T09:20:47.010000"],["2024-07-25T09:20:48.010000"],["2024-07-25T09:20:49.010000"],["2024-07-25T09:20:50.010000"],["2024-07-25T09:20:51.010000"],["2024-07-25T09:20:52.010000"],["2024-07-25T09:20:53.010000"],["2024-07-25T09:20:54.010000"],["2024-07-25T09:20:55.010000"],["2024-07-25T09:20:56.010000"],["2024-07-25T09:20:57.010000"],["2024-07-25T09:20:58.010000"],["2024-07-25T09:20:59.010000"],["2024-07-25T09:21:00.010000"],["2024-07-25T09:21:01.010000"],["2024-07-25T09:21:02.010000"],["2024-07-25T09:21:03.010000"],["2024-07-25T09:21:04.010000"],["2024-07-25T09:21:05.010000"],["2024-07-25T09:21:06.010000"],["2024-07-25T09:21:07.010000"],["2024-07-25T09:21:08.010000"],["2024-07-25T09:21:09.010000"],["2024-07-25T09:21:10.010000"],["2024-07-25T09:21:11.010000"],["2024-07-25T09:21:12.010000"],["2024-07-25T09:21:13.010000"],["2024-07-25T09:21:14.010000"],["2024-07-25T09:21:15.010000"],["2024-07-25T09:21:16.010000"],["2024-07-25T09:21:17.010000"],["2024-07-25T09:21:18.010000"],["2024-07-25T09:21:19.010000"],["2024-07-25T09:21:20.010000"],["2024-07-25T09:21:21.010000"],["2024-07-25T09:21:22.010000"],["2024-07-25T09:21:23.010000"],["2024-07-25T09:21:24.010000"],["2024-07-25T09:21:25.010000"],["2024-07-25T09:21:26.010000"],["2024-07-25T09:21:27.010000"],["2024-07-25T09:21:28.010000"],["2024-07-25T09:21:29.010000"],["2024-07-25T09:21:30.010000"],["2024-07-25T09:21:31.010000"],["2024-07-25T09:21:32.010000"],["2024-07-25T09:21:33.010000"],["2024-07-25T09:21:34.010000"],["2024-07-25T09:21:35.010000"],["2024-07-25T09:21:36.010000"],["2024-07-25T09:21:37.010000"],["2024-07-25T09:21:38.010000"],["2024-07-25T09:21:39.010000"],["2024-07-25T09:21:40.010000"],["2024-07-25T09:21:41.010000"],["2024-07-25T09:21:42.010000"],["2024-07-25T09:21:43.010000"],["2024-07-25T09:21:44.010000"],["2024-07-25T09:21:45.010000"],["2024-07-25T09:21:46.010000"],["2024-07-25T09:21:47.010000"],["2024-07-25T09:21:48.010000"],["2024-07-25T09:21:49.010000"],["2024-07-25T09:21:50.010000"],["2024-07-25T09:21:51.010000"],["2024-07-25T09:21:52.010000"],["2024-07-25T09:21:53.010000"],["2024-07-25T09:21:54.010000"],["2024-07-25T09:21:55.010000"],["2024-07-25T09:21:56.010000"],["2024-07-25T09:21:57.010000"],["2024-07-25T09:21:58.010000"],["2024-07-25T09:21:59.010000"],["2024-07-25T09:22:00.010000"],["2024-07-25T09:22:01.010000"],["2024-07-25T09:22:02.010000"],["2024-07-25T09:22:03.010000"],["2024-07-25T09:22:04.010000"],["2024-07-25T09:22:05.010000"],["2024-07-25T09:22:06.010000"],["2024-07-25T09:22:07.010000"],["2024-07-25T09:22:08.010000"],["2024-07-25T09:22:09.010000"],["2024-07-25T09:22:10.010000"],["2024-07-25T09:22:11.010000"],["2024-07-25T09:22:12.010000"],["2024-07-25T09:22:13.010000"],["2024-07-25T09:22:14.010000"],["2024-07-25T09:22:15.010000"],["2024-07-25T09:22:16.010000"],["2024-07-25T09:22:17.010000"],["2024-07-25T09:22:18.010000"],["2024-07-25T09:22:19.010000"],["2024-07-25T09:22:20.010000"],["2024-07-25T09:22:21.010000"],["2024-07-25T09:22:22.010000"],["2024-07-25T09:22:23.010000"],["2024-07-25T09:22:24.010000"],["2024-07-25T09:22:25.010000"],["2024-07-25T09:22:26.010000"],["2024-07-25T09:22:27.010000"],["2024-07-25T09:22:28.010000"],["2024-07-25T09:22:29.010000"],["2024-07-25T09:22:30.010000"],["2024-07-25T09:22:31.010000"],["2024-07-25T09:22:32.010000"],["2024-07-25T09:22:33.010000"],["2024-07-25T09:22:34.010000"],["2024-07-25T09:22:35.010000"],["2024-07-25T09:22:36.010000"],["2024-07-25T09:22:37.010000"],["2024-07-25T09:22:38.010000"],["2024-07-25T09:22:39.010000"],["2024-07-25T09:22:40.010000"],["2024-07-25T09:22:41.010000"],["2024-07-25T09:22:42.010000"],["2024-07-25T09:22:43.010000"],["2024-07-25T09:22:44.010000"],["2024-07-25T09:22:45.010000"],["2024-07-25T09:22:46.010000"],["2024-07-25T09:22:47.010000"],["2024-07-25T09:22:48.010000"],["2024-07-25T09:22:49.010000"],["2024-07-25T09:22:50.010000"],["2024-07-25T09:22:51.010000"],["2024-07-25T09:22:52.010000"],["2024-07-25T09:22:53.010000"],["2024-07-25T09:22:54.010000"],["2024-07-25T09:22:55.010000"],["2024-07-25T09:22:56.010000"],["2024-07-25T09:22:57.010000"],["2024-07-25T09:22:58.010000"],["2024-07-25T09:22:59.010000"],["2024-07-25T09:23:00.010000"],["2024-07-25T09:23:01.010000"],["2024-07-25T09:23:02.010000"],["2024-07-25T09:23:03.010000"],["2024-07-25T09:23:04.010000"],["2024-07-25T09:23:05.010000"],["2024-07-25T09:23:06.010000"],["2024-07-25T09:23:07.010000"],["2024-07-25T09:23:08.010000"],["2024-07-25T09:23:09.010000"],["2024-07-25T09:23:10.010000"],["2024-07-25T09:23:11.010000"],["2024-07-25T09:23:12.010000"],["2024-07-25T09:23:13.010000"],["2024-07-25T09:23:14.010000"],["2024-07-25T09:23:15.010000"],["2024-07-25T09:23:16.010000"],["2024-07-25T09:23:17.010000"],["2024-07-25T09:23:18.010000"],["2024-07-25T09:23:19.010000"],["2024-07-25T09:23:20.010000"],["2024-07-25T09:23:21.010000"],["2024-07-25T09:23:22.010000"],["2024-07-25T09:23:23.010000"],["2024-07-25T09:23:24.010000"],["2024-07-25T09:23:25.010000"],["2024-07-25T09:23:26.010000"],["2024-07-25T09:23:27.010000"],["2024-07-25T09:23:28.010000"],["2024-07-25T09:23:29.010000"],["2024-07-25T09:23:30.010000"],["2024-07-25T09:23:31.010000"],["2024-07-25T09:23:32.010000"],["2024-07-25T09:23:33.010000"],["2024-07-25T09:23:34.010000"],["2024-07-25T09:23:35.010000"],["2024-07-25T09:23:36.010000"],["2024-07-25T09:23:37.010000"],["2024-07-25T09:23:38.010000"],["2024-07-25T09:23:39.010000"],["2024-07-25T09:23:40.010000"],["2024-07-25T09:23:41.010000"],["2024-07-25T09:23:42.010000"],["2024-07-25T09:23:43.010000"],["2024-07-25T09:23:44.010000"],["2024-07-25T09:23:45.010000"],["2024-07-25T09:23:46.010000"],["2024-07-25T09:23:47.010000"],["2024-07-25T09:23:48.010000"],["2024-07-25T09:23:49.010000"],["2024-07-25T09:23:50.010000"],["2024-07-25T09:23:51.010000"],["2024-07-25T09:23:52.010000"],["2024-07-25T09:23:53.010000"],["2024-07-25T09:23:54.010000"],["2024-07-25T09:23:55.010000"],["2024-07-25T09:23:56.010000"],["2024-07-25T09:23:57.010000"],["2024-07-25T09:23:58.010000"],["2024-07-25T09:23:59.010000"],["2024-07-25T09:24:00.010000"],["2024-07-25T09:24:01.010000"],["2024-07-25T09:24:02.010000"],["2024-07-25T09:24:03.010000"],["2024-07-25T09:24:04.010000"],["2024-07-25T09:24:05.010000"],["2024-07-25T09:24:06.010000"],["2024-07-25T09:24:07.010000"],["2024-07-25T09:24:08.010000"],["2024-07-25T09:24:09.010000"],["2024-07-25T09:24:10.010000"],["2024-07-25T09:24:11.010000"],["2024-07-25T09:24:12.010000"],["2024-07-25T09:24:13.010000"],["2024-07-25T09:24:14.010000"],["2024-07-25T09:24:15.010000"],["2024-07-25T09:24:16.010000"],["2024-07-25T09:24:17.010000"],["2024-07-25T09:24:18.010000"],["2024-07-25T09:24:19.010000"],["2024-07-25T09:24:20.010000"],["2024-07-25T09:24:21.010000"],["2024-07-25T09:24:22.010000"],["2024-07-25T09:24:23.010000"],["2024-07-25T09:24:24.010000"],["2024-07-25T09:24:25.010000"],["2024-07-25T09:24:26.010000"],["2024-07-25T09:24:27.010000"],["2024-07-25T09:24:28.010000"],["2024-07-25T09:24:29.010000"],["2024-07-25T09:24:30.010000"],["2024-07-25T09:24:31.010000"],["2024-07-25T09:24:32.010000"],["2024-07-25T09:24:33.010000"],["2024-07-25T09:24:34.010000"],["2024-07-25T09:24:35.010000"],["2024-07-25T09:24:36.010000"],["2024-07-25T09:24:37.010000"],["2024-07-25T09:24:38.010000"],["2024-07-25T09:24:39.010000"],["2024-07-25T09:24:40.010000"],["2024-07-25T09:24:41.010000"],["2024-07-25T09:24:42.010000"],["2024-07-25T09:24:43.010000"],["2024-07-25T09:24:44.010000"],["2024-07-25T09:24:45.010000"],["2024-07-25T09:24:46.010000"],["2024-07-25T09:24:47.010000"],["2024-07-25T09:24:48.010000"],["2024-07-25T09:24:49.010000"],["2024-07-25T09:24:50.010000"],["2024-07-25T09:24:51.010000"],["2024-07-25T09:24:52.010000"],["2024-07-25T09:24:53.010000"],["2024-07-25T09:24:54.010000"],["2024-07-25T09:24:55.010000"],["2024-07-25T09:24:56.010000"],["2024-07-25T09:24:57.010000"],["2024-07-25T09:24:58.010000"],["2024-07-25T09:24:59.010000"],["2024-07-25T09:25:00.010000"],["2024-07-25T09:25:01.010000"],["2024-07-25T09:25:02.010000"],["2024-07-25T09:25:03.010000"],["2024-07-25T09:25:04.010000"],["2024-07-25T09:25:05.010000"],["2024-07-25T09:25:06.010000"],["2024-07-25T09:25:07.010000"],["2024-07-25T09:25:08.010000"],["2024-07-25T09:25:09.010000"],["2024-07-25T09:25:10.010000"],["2024-07-25T09:25:11.010000"],["2024-07-25T09:25:12.010000"],["2024-07-25T09:25:13.010000"],["2024-07-25T09:25:14.010000"],["2024-07-25T09:25:15.010000"],["2024-07-25T09:25:16.010000"],["2024-07-25T09:25:17.010000"],["2024-07-25T09:25:18.010000"],["2024-07-25T09:25:19.010000"],["2024-07-25T09:25:20.010000"],["2024-07-25T09:25:21.010000"],["2024-07-25T09:25:22.010000"],["2024-07-25T09:25:23.010000"],["2024-07-25T09:25:24.010000"],["2024-07-25T09:25:25.010000"],["2024-07-25T09:25:26.010000"],["2024-07-25T09:25:27.010000"],["2024-07-25T09:25:28.010000"],["2024-07-25T09:25:29.010000"],["2024-07-25T09:25:30.010000"],["2024-07-25T09:25:31.010000"],["2024-07-25T09:25:32.010000"],["2024-07-25T09:25:33.010000"],["2024-07-25T09:25:34.010000"],["2024-07-25T09:25:35.010000"],["2024-07-25T09:25:36.010000"],["2024-07-25T09:25:37.010000"],["2024-07-25T09:25:38.010000"],["2024-07-25T09:25:39.010000"],["2024-07-25T09:25:40.010000"],["2024-07-25T09:25:41.010000"],["2024-07-25T09:25:42.010000"],["2024-07-25T09:25:43.010000"],["2024-07-25T09:25:44.010000"],["2024-07-25T09:25:45.010000"],["2024-07-25T09:25:46.010000"],["2024-07-25T09:25:47.010000"],["2024-07-25T09:25:48.010000"],["2024-07-25T09:25:49.010000"],["2024-07-25T09:25:50.010000"],["2024-07-25T09:25:51.010000"],["2024-07-25T09:25:52.010000"],["2024-07-25T09:25:53.010000"],["2024-07-25T09:25:54.010000"],["2024-07-25T09:25:55.010000"],["2024-07-25T09:25:56.010000"],["2024-07-25T09:25:57.010000"],["2024-07-25T09:25:58.010000"],["2024-07-25T09:25:59.010000"],["2024-07-25T09:26:00.010000"],["2024-07-25T09:26:01.010000"],["2024-07-25T09:26:02.010000"],["2024-07-25T09:26:03.010000"],["2024-07-25T09:26:04.010000"],["2024-07-25T09:26:05.010000"],["2024-07-25T09:26:06.010000"],["2024-07-25T09:26:07.010000"],["2024-07-25T09:26:08.010000"],["2024-07-25T09:26:09.010000"],["2024-07-25T09:26:10.010000"],["2024-07-25T09:26:11.010000"],["2024-07-25T09:26:12.010000"],["2024-07-25T09:26:13.010000"],["2024-07-25T09:26:14.010000"],["2024-07-25T09:26:15.010000"],["2024-07-25T09:26:16.010000"],["2024-07-25T09:26:17.010000"],["2024-07-25T09:26:18.010000"],["2024-07-25T09:26:19.010000"],["2024-07-25T09:26:20.010000"],["2024-07-25T09:26:21.010000"],["2024-07-25T09:26:22.010000"],["2024-07-25T09:26:23.010000"],["2024-07-25T09:26:24.010000"],["2024-07-25T09:26:25.010000"],["2024-07-25T09:26:26.010000"],["2024-07-25T09:26:27.010000"],["2024-07-25T09:26:28.010000"],["2024-07-25T09:26:29.010000"],["2024-07-25T09:26:30.010000"],["2024-07-25T09:26:31.010000"],["2024-07-25T09:26:32.010000"],["2024-07-25T09:26:33.010000"],["2024-07-25T09:26:34.010000"],["2024-07-25T09:26:35.010000"],["2024-07-25T09:26:36.010000"],["2024-07-25T09:26:37.010000"],["2024-07-25T09:26:38.010000"],["2024-07-25T09:26:39.010000"],["2024-07-25T09:26:40.010000"],["2024-07-25T09:26:41.010000"],["2024-07-25T09:26:42.010000"],["2024-07-25T09:26:43.010000"],["2024-07-25T09:26:44.010000"],["2024-07-25T09:26:45.010000"],["2024-07-25T09:26:46.010000"],["2024-07-25T09:26:47.010000"],["2024-07-25T09:26:48.010000"],["2024-07-25T09:26:49.010000"],["2024-07-25T09:26:50.010000"],["2024-07-25T09:26:51.010000"],["2024-07-25T09:26:52.010000"],["2024-07-25T09:26:53.010000"],["2024-07-25T09:26:54.010000"],["2024-07-25T09:26:55.010000"],["2024-07-25T09:26:56.010000"],["2024-07-25T09:26:57.010000"],["2024-07-25T09:26:58.010000"],["2024-07-25T09:26:59.010000"],["2024-07-25T09:27:00.010000"],["2024-07-25T09:27:01.010000"],["2024-07-25T09:27:02.010000"],["2024-07-25T09:27:03.010000"],["2024-07-25T09:27:04.010000"],["2024-07-25T09:27:05.010000"],["2024-07-25T09:27:06.010000"],["2024-07-25T09:27:07.010000"],["2024-07-25T09:27:08.010000"],["2024-07-25T09:27:09.010000"],["2024-07-25T09:27:10.010000"],["2024-07-25T09:27:11.010000"],["2024-07-25T09:27:12.010000"],["2024-07-25T09:27:13.010000"],["2024-07-25T09:27:14.010000"],["2024-07-25T09:27:15.010000"],["2024-07-25T09:27:16.010000"],["2024-07-25T09:27:17.010000"],["2024-07-25T09:27:18.010000"],["2024-07-25T09:27:19.010000"],["2024-07-25T09:27:20.010000"],["2024-07-25T09:27:21.010000"],["2024-07-25T09:27:22.010000"],["2024-07-25T09:27:23.010000"],["2024-07-25T09:27:24.010000"],["2024-07-25T09:27:25.010000"],["2024-07-25T09:27:26.010000"],["2024-07-25T09:27:27.010000"],["2024-07-25T09:27:28.010000"],["2024-07-25T09:27:29.010000"],["2024-07-25T09:27:30.010000"],["2024-07-25T09:27:31.010000"],["2024-07-25T09:27:32.010000"],["2024-07-25T09:27:33.010000"],["2024-07-25T09:27:34.010000"],["2024-07-25T09:27:35.010000"],["2024-07-25T09:27:36.010000"],["2024-07-25T09:27:37.010000"],["2024-07-25T09:27:38.010000"],["2024-07-25T09:27:39.010000"],["2024-07-25T09:27:40.010000"],["2024-07-25T09:27:41.010000"],["2024-07-25T09:27:42.010000"],["2024-07-25T09:27:43.010000"],["2024-07-25T09:27:44.010000"],["2024-07-25T09:27:45.010000"],["2024-07-25T09:27:46.010000"],["2024-07-25T09:27:47.010000"],["2024-07-25T09:27:48.010000"],["2024-07-25T09:27:49.010000"],["2024-07-25T09:27:50.010000"],["2024-07-25T09:27:51.010000"],["2024-07-25T09:27:52.010000"],["2024-07-25T09:27:53.010000"],["2024-07-25T09:27:54.010000"],["2024-07-25T09:27:55.010000"],["2024-07-25T09:27:56.010000"],["2024-07-25T09:27:57.010000"],["2024-07-25T09:27:58.010000"],["2024-07-25T09:27:59.010000"],["2024-07-25T09:28:00.010000"],["2024-07-25T09:28:01.010000"],["2024-07-25T09:28:02.010000"],["2024-07-25T09:28:03.010000"],["2024-07-25T09:28:04.010000"],["2024-07-25T09:28:05.010000"],["2024-07-25T09:28:06.010000"],["2024-07-25T09:28:07.010000"],["2024-07-25T09:28:08.010000"],["2024-07-25T09:28:09.010000"],["2024-07-25T09:28:10.010000"],["2024-07-25T09:28:11.010000"],["2024-07-25T09:28:12.010000"],["2024-07-25T09:28:13.010000"],["2024-07-25T09:28:14.010000"],["2024-07-25T09:28:15.010000"],["2024-07-25T09:28:16.010000"],["2024-07-25T09:28:17.010000"],["2024-07-25T09:28:18.010000"],["2024-07-25T09:28:19.010000"],["2024-07-25T09:28:20.010000"],["2024-07-25T09:28:21.010000"],["2024-07-25T09:28:22.010000"],["2024-07-25T09:28:23.010000"],["2024-07-25T09:28:24.010000"],["2024-07-25T09:28:25.010000"],["2024-07-25T09:28:26.010000"],["2024-07-25T09:28:27.010000"],["2024-07-25T09:28:28.010000"],["2024-07-25T09:28:29.010000"],["2024-07-25T09:28:30.010000"],["2024-07-25T09:28:31.010000"],["2024-07-25T09:28:32.010000"],["2024-07-25T09:28:33.010000"],["2024-07-25T09:28:34.010000"],["2024-07-25T09:28:35.010000"],["2024-07-25T09:28:36.010000"],["2024-07-25T09:28:37.010000"],["2024-07-25T09:28:38.010000"],["2024-07-25T09:28:39.010000"],["2024-07-25T09:28:40.010000"],["2024-07-25T09:28:41.010000"],["2024-07-25T09:28:42.010000"],["2024-07-25T09:28:43.010000"],["2024-07-25T09:28:44.010000"],["2024-07-25T09:28:45.010000"],["2024-07-25T09:28:46.010000"],["2024-07-25T09:28:47.010000"],["2024-07-25T09:28:48.010000"],["2024-07-25T09:28:49.010000"],["2024-07-25T09:28:50.010000"],["2024-07-25T09:28:51.010000"],["2024-07-25T09:28:52.010000"],["2024-07-25T09:28:53.010000"],["2024-07-25T09:28:54.010000"],["2024-07-25T09:28:55.010000"],["2024-07-25T09:28:56.010000"],["2024-07-25T09:28:57.010000"],["2024-07-25T09:28:58.010000"],["2024-07-25T09:28:59.010000"],["2024-07-25T09:29:00.010000"],["2024-07-25T09:29:01.010000"],["2024-07-25T09:29:02.010000"],["2024-07-25T09:29:03.010000"],["2024-07-25T09:29:04.010000"],["2024-07-25T09:29:05.010000"],["2024-07-25T09:29:06.010000"],["2024-07-25T09:29:07.010000"],["2024-07-25T09:29:08.010000"],["2024-07-25T09:29:09.010000"],["2024-07-25T09:29:10.010000"],["2024-07-25T09:29:11.010000"],["2024-07-25T09:29:12.010000"],["2024-07-25T09:29:13.010000"],["2024-07-25T09:29:14.010000"],["2024-07-25T09:29:15.010000"],["2024-07-25T09:29:16.010000"],["2024-07-25T09:29:17.010000"],["2024-07-25T09:29:18.010000"],["2024-07-25T09:29:19.010000"],["2024-07-25T09:29:20.010000"],["2024-07-25T09:29:21.010000"],["2024-07-25T09:29:22.010000"],["2024-07-25T09:29:23.010000"],["2024-07-25T09:29:24.010000"],["2024-07-25T09:29:25.010000"],["2024-07-25T09:29:26.010000"],["2024-07-25T09:29:27.010000"],["2024-07-25T09:29:28.010000"],["2024-07-25T09:29:29.010000"],["2024-07-25T09:29:30.010000"],["2024-07-25T09:29:31.010000"],["2024-07-25T09:29:32.010000"],["2024-07-25T09:29:33.010000"],["2024-07-25T09:29:34.010000"],["2024-07-25T09:29:35.010000"],["2024-07-25T09:29:36.010000"],["2024-07-25T09:29:37.010000"],["2024-07-25T09:29:38.010000"],["2024-07-25T09:29:39.010000"],["2024-07-25T09:29:40.010000"],["2024-07-25T09:29:41.010000"],["2024-07-25T09:29:42.010000"],["2024-07-25T09:29:43.010000"],["2024-07-25T09:29:44.010000"],["2024-07-25T09:29:45.010000"],["2024-07-25T09:29:46.010000"],["2024-07-25T09:29:47.010000"],["2024-07-25T09:29:48.010000"],["2024-07-25T09:29:49.010000"],["2024-07-25T09:29:50.010000"],["2024-07-25T09:29:51.010000"],["2024-07-25T09:29:52.010000"],["2024-07-25T09:29:53.010000"],["2024-07-25T09:29:54.010000"],["2024-07-25T09:29:55.010000"],["2024-07-25T09:29:56.010000"],["2024-07-25T09:29:57.010000"],["2024-07-25T09:29:58.010000"],["2024-07-25T09:29:59.010000"],["2024-07-25T09:30:00.010000"],["2024-07-25T09:30:01.010000"],["2024-07-25T09:30:02.010000"],["2024-07-25T09:30:03.010000"],["2024-07-25T09:30:04.010000"],["2024-07-25T09:30:05.010000"],["2024-07-25T09:30:06.010000"],["2024-07-25T09:30:07.010000"],["2024-07-25T09:30:08.010000"],["2024-07-25T09:30:09.010000"],["2024-07-25T09:30:10.010000"],["2024-07-25T09:30:11.010000"],["2024-07-25T09:30:12.010000"],["2024-07-25T09:30:13.010000"],["2024-07-25T09:30:14.010000"],["2024-07-25T09:30:15.010000"],["2024-07-25T09:30:16.010000"],["2024-07-25T09:30:17.010000"],["2024-07-25T09:30:18.010000"],["2024-07-25T09:30:19.010000"],["2024-07-25T09:30:20.010000"],["2024-07-25T09:30:21.010000"],["2024-07-25T09:30:22.010000"],["2024-07-25T09:30:23.010000"],["2024-07-25T09:30:24.010000"],["2024-07-25T09:30:25.010000"],["2024-07-25T09:30:26.010000"],["2024-07-25T09:30:27.010000"],["2024-07-25T09:30:28.010000"],["2024-07-25T09:30:29.010000"],["2024-07-25T09:30:30.010000"],["2024-07-25T09:30:31.010000"],["2024-07-25T09:30:32.010000"],["2024-07-25T09:30:33.010000"],["2024-07-25T09:30:34.010000"],["2024-07-25T09:30:35.010000"],["2024-07-25T09:30:36.010000"],["2024-07-25T09:30:37.010000"],["2024-07-25T09:30:38.010000"],["2024-07-25T09:30:39.010000"],["2024-07-25T09:30:40.010000"],["2024-07-25T09:30:41.010000"],["2024-07-25T09:30:42.010000"],["2024-07-25T09:30:43.010000"],["2024-07-25T09:30:44.010000"],["2024-07-25T09:30:45.010000"],["2024-07-25T09:30:46.010000"],["2024-07-25T09:30:47.010000"],["2024-07-25T09:30:48.010000"],["2024-07-25T09:30:49.010000"],["2024-07-25T09:30:50.010000"],["2024-07-25T09:30:51.010000"],["2024-07-25T09:30:52.010000"],["2024-07-25T09:30:53.010000"],["2024-07-25T09:30:54.010000"],["2024-07-25T09:30:55.010000"],["2024-07-25T09:30:56.010000"],["2024-07-25T09:30:57.010000"],["2024-07-25T09:30:58.010000"],["2024-07-25T09:30:59.010000"],["2024-07-25T09:31:00.010000"],["2024-07-25T09:31:01.010000"],["2024-07-25T09:31:02.010000"],["2024-07-25T09:31:03.010000"],["2024-07-25T09:31:04.010000"],["2024-07-25T09:31:05.010000"],["2024-07-25T09:31:06.010000"],["2024-07-25T09:31:07.010000"],["2024-07-25T09:31:08.010000"],["2024-07-25T09:31:09.010000"],["2024-07-25T09:31:10.010000"],["2024-07-25T09:31:11.010000"],["2024-07-25T09:31:12.010000"],["2024-07-25T09:31:13.010000"],["2024-07-25T09:31:14.010000"],["2024-07-25T09:31:15.010000"],["2024-07-25T09:31:16.010000"],["2024-07-25T09:31:17.010000"],["2024-07-25T09:31:18.010000"],["2024-07-25T09:31:19.010000"],["2024-07-25T09:31:20.010000"],["2024-07-25T09:31:21.010000"],["2024-07-25T09:31:22.010000"],["2024-07-25T09:31:23.010000"],["2024-07-25T09:31:24.010000"],["2024-07-25T09:31:25.010000"],["2024-07-25T09:31:26.010000"],["2024-07-25T09:31:27.010000"],["2024-07-25T09:31:28.010000"],["2024-07-25T09:31:29.010000"],["2024-07-25T09:31:30.010000"],["2024-07-25T09:31:31.010000"],["2024-07-25T09:31:32.010000"],["2024-07-25T09:31:33.010000"],["2024-07-25T09:31:34.010000"],["2024-07-25T09:31:35.010000"],["2024-07-25T09:31:36.010000"],["2024-07-25T09:31:37.010000"],["2024-07-25T09:31:38.010000"],["2024-07-25T09:31:39.010000"],["2024-07-25T09:31:40.010000"],["2024-07-25T09:31:41.010000"],["2024-07-25T09:31:42.010000"],["2024-07-25T09:31:43.010000"],["2024-07-25T09:31:44.010000"],["2024-07-25T09:31:45.010000"],["2024-07-25T09:31:46.010000"],["2024-07-25T09:31:47.010000"],["2024-07-25T09:31:48.010000"],["2024-07-25T09:31:49.010000"],["2024-07-25T09:31:50.010000"],["2024-07-25T09:31:51.010000"],["2024-07-25T09:31:52.010000"],["2024-07-25T09:31:53.010000"],["2024-07-25T09:31:54.010000"],["2024-07-25T09:31:55.010000"],["2024-07-25T09:31:56.010000"],["2024-07-25T09:31:57.010000"],["2024-07-25T09:31:58.010000"],["2024-07-25T09:31:59.010000"],["2024-07-25T09:32:00.010000"],["2024-07-25T09:32:01.010000"],["2024-07-25T09:32:02.010000"],["2024-07-25T09:32:03.010000"],["2024-07-25T09:32:04.010000"],["2024-07-25T09:32:05.010000"],["2024-07-25T09:32:06.010000"],["2024-07-25T09:32:07.010000"],["2024-07-25T09:32:08.010000"],["2024-07-25T09:32:09.010000"],["2024-07-25T09:32:10.010000"],["2024-07-25T09:32:11.010000"],["2024-07-25T09:32:12.010000"],["2024-07-25T09:32:13.010000"],["2024-07-25T09:32:14.010000"],["2024-07-25T09:32:15.010000"],["2024-07-25T09:32:16.010000"],["2024-07-25T09:32:17.010000"],["2024-07-25T09:32:18.010000"],["2024-07-25T09:32:19.010000"],["2024-07-25T09:32:20.010000"],["2024-07-25T09:32:21.010000"],["2024-07-25T09:32:22.010000"],["2024-07-25T09:32:23.010000"],["2024-07-25T09:32:24.010000"],["2024-07-25T09:32:25.010000"],["2024-07-25T09:32:26.010000"],["2024-07-25T09:32:27.010000"],["2024-07-25T09:32:28.010000"],["2024-07-25T09:32:29.010000"],["2024-07-25T09:32:30.010000"],["2024-07-25T09:32:31.010000"],["2024-07-25T09:32:32.010000"],["2024-07-25T09:32:33.010000"],["2024-07-25T09:32:34.010000"],["2024-07-25T09:32:35.010000"],["2024-07-25T09:32:36.010000"],["2024-07-25T09:32:37.010000"],["2024-07-25T09:32:38.010000"],["2024-07-25T09:32:39.010000"],["2024-07-25T09:32:40.010000"],["2024-07-25T09:32:41.010000"],["2024-07-25T09:32:42.010000"],["2024-07-25T09:32:43.010000"],["2024-07-25T09:32:44.010000"],["2024-07-25T09:32:45.010000"],["2024-07-25T09:32:46.010000"],["2024-07-25T09:32:47.010000"],["2024-07-25T09:32:48.010000"],["2024-07-25T09:32:49.010000"],["2024-07-25T09:32:50.010000"],["2024-07-25T09:32:51.010000"],["2024-07-25T09:32:52.010000"],["2024-07-25T09:32:53.010000"],["2024-07-25T09:32:54.010000"],["2024-07-25T09:32:55.010000"],["2024-07-25T09:32:56.010000"],["2024-07-25T09:32:57.010000"],["2024-07-25T09:32:58.010000"],["2024-07-25T09:32:59.010000"],["2024-07-25T09:33:00.010000"],["2024-07-25T09:33:01.010000"],["2024-07-25T09:33:02.010000"],["2024-07-25T09:33:03.010000"],["2024-07-25T09:33:04.010000"],["2024-07-25T09:33:05.010000"],["2024-07-25T09:33:06.010000"],["2024-07-25T09:33:07.010000"],["2024-07-25T09:33:08.010000"],["2024-07-25T09:33:09.010000"],["2024-07-25T09:33:10.010000"],["2024-07-25T09:33:11.010000"],["2024-07-25T09:33:12.010000"],["2024-07-25T09:33:13.010000"],["2024-07-25T09:33:14.010000"],["2024-07-25T09:33:15.010000"],["2024-07-25T09:33:16.010000"],["2024-07-25T09:33:17.010000"],["2024-07-25T09:33:18.010000"],["2024-07-25T09:33:19.010000"],["2024-07-25T09:33:20.010000"],["2024-07-25T09:33:21.010000"],["2024-07-25T09:33:22.010000"],["2024-07-25T09:33:23.010000"],["2024-07-25T09:33:24.010000"],["2024-07-25T09:33:25.010000"],["2024-07-25T09:33:26.010000"],["2024-07-25T09:33:27.010000"],["2024-07-25T09:33:28.010000"],["2024-07-25T09:33:29.010000"],["2024-07-25T09:33:30.010000"],["2024-07-25T09:33:31.010000"],["2024-07-25T09:33:32.010000"],["2024-07-25T09:33:33.010000"],["2024-07-25T09:33:34.010000"],["2024-07-25T09:33:35.010000"],["2024-07-25T09:33:36.010000"],["2024-07-25T09:33:37.010000"],["2024-07-25T09:33:38.010000"],["2024-07-25T09:33:39.010000"],["2024-07-25T09:33:40.010000"],["2024-07-25T09:33:41.010000"],["2024-07-25T09:33:42.010000"],["2024-07-25T09:33:43.010000"],["2024-07-25T09:33:44.010000"],["2024-07-25T09:33:45.010000"],["2024-07-25T09:33:46.010000"],["2024-07-25T09:33:47.010000"],["2024-07-25T09:33:48.010000"],["2024-07-25T09:33:49.010000"],["2024-07-25T09:33:50.010000"],["2024-07-25T09:33:51.010000"],["2024-07-25T09:33:52.010000"],["2024-07-25T09:33:53.010000"],["2024-07-25T09:33:54.010000"],["2024-07-25T09:33:55.010000"],["2024-07-25T09:33:56.010000"],["2024-07-25T09:33:57.010000"],["2024-07-25T09:33:58.010000"],["2024-07-25T09:33:59.010000"],["2024-07-25T09:34:00.010000"],["2024-07-25T09:34:01.010000"],["2024-07-25T09:34:02.010000"],["2024-07-25T09:34:03.010000"],["2024-07-25T09:34:04.010000"],["2024-07-25T09:34:05.010000"],["2024-07-25T09:34:06.010000"],["2024-07-25T09:34:07.010000"],["2024-07-25T09:34:08.010000"],["2024-07-25T09:34:09.010000"],["2024-07-25T09:34:10.010000"],["2024-07-25T09:34:11.010000"],["2024-07-25T09:34:12.010000"],["2024-07-25T09:34:13.010000"],["2024-07-25T09:34:14.010000"],["2024-07-25T09:34:15.010000"],["2024-07-25T09:34:16.010000"],["2024-07-25T09:34:17.010000"],["2024-07-25T09:34:18.010000"],["2024-07-25T09:34:19.010000"],["2024-07-25T09:34:20.010000"],["2024-07-25T09:34:21.010000"],["2024-07-25T09:34:22.010000"],["2024-07-25T09:34:23.010000"],["2024-07-25T09:34:24.010000"],["2024-07-25T09:34:25.010000"],["2024-07-25T09:34:26.010000"],["2024-07-25T09:34:27.010000"],["2024-07-25T09:34:28.010000"],["2024-07-25T09:34:29.010000"],["2024-07-25T09:34:30.010000"],["2024-07-25T09:34:31.010000"],["2024-07-25T09:34:32.010000"],["2024-07-25T09:34:33.010000"],["2024-07-25T09:34:34.010000"],["2024-07-25T09:34:35.010000"],["2024-07-25T09:34:36.010000"],["2024-07-25T09:34:37.010000"],["2024-07-25T09:34:38.010000"],["2024-07-25T09:34:39.010000"],["2024-07-25T09:34:40.010000"],["2024-07-25T09:34:41.010000"],["2024-07-25T09:34:42.010000"],["2024-07-25T09:34:43.010000"],["2024-07-25T09:34:44.010000"],["2024-07-25T09:34:45.010000"],["2024-07-25T09:34:46.010000"],["2024-07-25T09:34:47.010000"],["2024-07-25T09:34:48.010000"],["2024-07-25T09:34:49.010000"],["2024-07-25T09:34:50.010000"],["2024-07-25T09:34:51.010000"],["2024-07-25T09:34:52.010000"],["2024-07-25T09:34:53.010000"],["2024-07-25T09:34:54.010000"],["2024-07-25T09:34:55.010000"],["2024-07-25T09:34:56.010000"],["2024-07-25T09:34:57.010000"],["2024-07-25T09:34:58.010000"],["2024-07-25T09:34:59.010000"],["2024-07-25T09:35:00.010000"],["2024-07-25T09:35:01.010000"],["2024-07-25T09:35:02.010000"],["2024-07-25T09:35:03.010000"],["2024-07-25T09:35:04.010000"],["2024-07-25T09:35:05.010000"],["2024-07-25T09:35:06.010000"],["2024-07-25T09:35:07.010000"],["2024-07-25T09:35:08.010000"],["2024-07-25T09:35:09.010000"],["2024-07-25T09:35:10.010000"],["2024-07-25T09:35:11.010000"],["2024-07-25T09:35:12.010000"],["2024-07-25T09:35:13.010000"],["2024-07-25T09:35:14.010000"],["2024-07-25T09:35:15.010000"],["2024-07-25T09:35:16.010000"],["2024-07-25T09:35:17.010000"],["2024-07-25T09:35:18.010000"],["2024-07-25T09:35:19.010000"],["2024-07-25T09:35:20.010000"],["2024-07-25T09:35:21.010000"],["2024-07-25T09:35:22.010000"],["2024-07-25T09:35:23.010000"],["2024-07-25T09:35:24.010000"],["2024-07-25T09:35:25.010000"],["2024-07-25T09:35:26.010000"],["2024-07-25T09:35:27.010000"],["2024-07-25T09:35:28.010000"],["2024-07-25T09:35:29.010000"],["2024-07-25T09:35:30.010000"],["2024-07-25T09:35:31.010000"],["2024-07-25T09:35:32.010000"],["2024-07-25T09:35:33.010000"],["2024-07-25T09:35:34.010000"],["2024-07-25T09:35:35.010000"],["2024-07-25T09:35:36.010000"],["2024-07-25T09:35:37.010000"],["2024-07-25T09:35:38.010000"],["2024-07-25T09:35:39.010000"],["2024-07-25T09:35:40.010000"],["2024-07-25T09:35:41.010000"],["2024-07-25T09:35:42.010000"],["2024-07-25T09:35:43.010000"],["2024-07-25T09:35:44.010000"],["2024-07-25T09:35:45.010000"],["2024-07-25T09:35:46.010000"],["2024-07-25T09:35:47.010000"],["2024-07-25T09:35:48.010000"],["2024-07-25T09:35:49.010000"],["2024-07-25T09:35:50.010000"],["2024-07-25T09:35:51.010000"],["2024-07-25T09:35:52.010000"],["2024-07-25T09:35:53.010000"],["2024-07-25T09:35:54.010000"],["2024-07-25T09:35:55.010000"],["2024-07-25T09:35:56.010000"],["2024-07-25T09:35:57.010000"],["2024-07-25T09:35:58.010000"],["2024-07-25T09:35:59.010000"],["2024-07-25T09:36:00.010000"],["2024-07-25T09:36:01.010000"],["2024-07-25T09:36:02.010000"],["2024-07-25T09:36:03.010000"],["2024-07-25T09:36:04.010000"],["2024-07-25T09:36:05.010000"],["2024-07-25T09:36:06.010000"],["2024-07-25T09:36:07.010000"],["2024-07-25T09:36:08.010000"],["2024-07-25T09:36:09.010000"],["2024-07-25T09:36:10.010000"],["2024-07-25T09:36:11.010000"],["2024-07-25T09:36:12.010000"],["2024-07-25T09:36:13.010000"],["2024-07-25T09:36:14.010000"],["2024-07-25T09:36:15.010000"],["2024-07-25T09:36:16.010000"],["2024-07-25T09:36:17.010000"],["2024-07-25T09:36:18.010000"],["2024-07-25T09:36:19.010000"],["2024-07-25T09:36:20.010000"],["2024-07-25T09:36:21.010000"],["2024-07-25T09:36:22.010000"],["2024-07-25T09:36:23.010000"],["2024-07-25T09:36:24.010000"],["2024-07-25T09:36:25.010000"],["2024-07-25T09:36:26.010000"],["2024-07-25T09:36:27.010000"],["2024-07-25T09:36:28.010000"],["2024-07-25T09:36:29.010000"],["2024-07-25T09:36:30.010000"],["2024-07-25T09:36:31.010000"],["2024-07-25T09:36:32.010000"],["2024-07-25T09:36:33.010000"],["2024-07-25T09:36:34.010000"],["2024-07-25T09:36:35.010000"],["2024-07-25T09:36:36.010000"],["2024-07-25T09:36:37.010000"],["2024-07-25T09:36:38.010000"],["2024-07-25T09:36:39.010000"],["2024-07-25T09:36:40.010000"],["2024-07-25T09:36:41.010000"],["2024-07-25T09:36:42.010000"],["2024-07-25T09:36:43.010000"],["2024-07-25T09:36:44.010000"],["2024-07-25T09:36:45.010000"],["2024-07-25T09:36:46.010000"],["2024-07-25T09:36:47.010000"],["2024-07-25T09:36:48.010000"],["2024-07-25T09:36:49.010000"],["2024-07-25T09:36:50.010000"],["2024-07-25T09:36:51.010000"],["2024-07-25T09:36:52.010000"],["2024-07-25T09:36:53.010000"],["2024-07-25T09:36:54.010000"],["2024-07-25T09:36:55.010000"],["2024-07-25T09:36:56.010000"],["2024-07-25T09:36:57.010000"],["2024-07-25T09:36:58.010000"],["2024-07-25T09:36:59.010000"],["2024-07-25T09:37:00.010000"],["2024-07-25T09:37:01.010000"],["2024-07-25T09:37:02.010000"],["2024-07-25T09:37:03.010000"],["2024-07-25T09:37:04.010000"],["2024-07-25T09:37:05.010000"],["2024-07-25T09:37:06.010000"],["2024-07-25T09:37:07.010000"],["2024-07-25T09:37:08.010000"],["2024-07-25T09:37:09.010000"],["2024-07-25T09:37:10.010000"],["2024-07-25T09:37:11.010000"],["2024-07-25T09:37:12.010000"],["2024-07-25T09:37:13.010000"],["2024-07-25T09:37:14.010000"],["2024-07-25T09:37:15.010000"],["2024-07-25T09:37:16.010000"],["2024-07-25T09:37:17.010000"],["2024-07-25T09:37:18.010000"],["2024-07-25T09:37:19.010000"],["2024-07-25T09:37:20.010000"],["2024-07-25T09:37:21.010000"],["2024-07-25T09:37:22.010000"],["2024-07-25T09:37:23.010000"],["2024-07-25T09:37:24.010000"],["2024-07-25T09:37:25.010000"],["2024-07-25T09:37:26.010000"],["2024-07-25T09:37:27.010000"],["2024-07-25T09:37:28.010000"],["2024-07-25T09:37:29.010000"],["2024-07-25T09:37:30.010000"],["2024-07-25T09:37:31.010000"],["2024-07-25T09:37:32.010000"],["2024-07-25T09:37:33.010000"],["2024-07-25T09:37:34.010000"],["2024-07-25T09:37:35.010000"],["2024-07-25T09:37:36.010000"],["2024-07-25T09:37:37.010000"],["2024-07-25T09:37:38.010000"],["2024-07-25T09:37:39.010000"],["2024-07-25T09:37:40.010000"],["2024-07-25T09:37:41.010000"],["2024-07-25T09:37:42.010000"],["2024-07-25T09:37:43.010000"],["2024-07-25T09:37:44.010000"],["2024-07-25T09:37:45.010000"],["2024-07-25T09:37:46.010000"],["2024-07-25T09:37:47.010000"],["2024-07-25T09:37:48.010000"],["2024-07-25T09:37:49.010000"],["2024-07-25T09:37:50.010000"],["2024-07-25T09:37:51.010000"],["2024-07-25T09:37:52.010000"],["2024-07-25T09:37:53.010000"],["2024-07-25T09:37:54.010000"],["2024-07-25T09:37:55.010000"],["2024-07-25T09:37:56.010000"],["2024-07-25T09:37:57.010000"],["2024-07-25T09:37:58.010000"],["2024-07-25T09:37:59.010000"],["2024-07-25T09:38:00.010000"],["2024-07-25T09:38:01.010000"],["2024-07-25T09:38:02.010000"],["2024-07-25T09:38:03.010000"],["2024-07-25T09:38:04.010000"],["2024-07-25T09:38:05.010000"],["2024-07-25T09:38:06.010000"],["2024-07-25T09:38:07.010000"],["2024-07-25T09:38:08.010000"],["2024-07-25T09:38:09.010000"],["2024-07-25T09:38:10.010000"],["2024-07-25T09:38:11.010000"],["2024-07-25T09:38:12.010000"],["2024-07-25T09:38:13.010000"],["2024-07-25T09:38:14.010000"],["2024-07-25T09:38:15.010000"],["2024-07-25T09:38:16.010000"],["2024-07-25T09:38:17.010000"],["2024-07-25T09:38:18.010000"],["2024-07-25T09:38:19.010000"],["2024-07-25T09:38:20.010000"],["2024-07-25T09:38:21.010000"],["2024-07-25T09:38:22.010000"],["2024-07-25T09:38:23.010000"],["2024-07-25T09:38:24.010000"],["2024-07-25T09:38:25.010000"],["2024-07-25T09:38:26.010000"],["2024-07-25T09:38:27.010000"],["2024-07-25T09:38:28.010000"],["2024-07-25T09:38:29.010000"],["2024-07-25T09:38:30.010000"],["2024-07-25T09:38:31.010000"],["2024-07-25T09:38:32.010000"],["2024-07-25T09:38:33.010000"],["2024-07-25T09:38:34.010000"],["2024-07-25T09:38:35.010000"],["2024-07-25T09:38:36.010000"],["2024-07-25T09:38:37.010000"],["2024-07-25T09:38:38.010000"],["2024-07-25T09:38:39.010000"],["2024-07-25T09:38:40.010000"],["2024-07-25T09:38:41.010000"],["2024-07-25T09:38:42.010000"],["2024-07-25T09:38:43.010000"],["2024-07-25T09:38:44.010000"],["2024-07-25T09:38:45.010000"],["2024-07-25T09:38:46.010000"],["2024-07-25T09:38:47.010000"],["2024-07-25T09:38:48.010000"],["2024-07-25T09:38:49.010000"],["2024-07-25T09:38:50.010000"],["2024-07-25T09:38:51.010000"],["2024-07-25T09:38:52.010000"],["2024-07-25T09:38:53.010000"],["2024-07-25T09:38:54.010000"],["2024-07-25T09:38:55.010000"],["2024-07-25T09:38:56.010000"],["2024-07-25T09:38:57.010000"],["2024-07-25T09:38:58.010000"],["2024-07-25T09:38:59.010000"],["2024-07-25T09:39:00.010000"],["2024-07-25T09:39:01.010000"],["2024-07-25T09:39:02.010000"],["2024-07-25T09:39:03.010000"],["2024-07-25T09:39:04.010000"],["2024-07-25T09:39:05.010000"],["2024-07-25T09:39:06.010000"],["2024-07-25T09:39:07.010000"],["2024-07-25T09:39:08.010000"],["2024-07-25T09:39:09.010000"],["2024-07-25T09:39:10.010000"],["2024-07-25T09:39:11.010000"],["2024-07-25T09:39:12.010000"],["2024-07-25T09:39:13.010000"],["2024-07-25T09:39:14.010000"],["2024-07-25T09:39:15.010000"],["2024-07-25T09:39:16.010000"],["2024-07-25T09:39:17.010000"],["2024-07-25T09:39:18.010000"],["2024-07-25T09:39:19.010000"],["2024-07-25T09:39:20.010000"],["2024-07-25T09:39:21.010000"],["2024-07-25T09:39:22.010000"],["2024-07-25T09:39:23.010000"],["2024-07-25T09:39:24.010000"],["2024-07-25T09:39:25.010000"],["2024-07-25T09:39:26.010000"],["2024-07-25T09:39:27.010000"],["2024-07-25T09:39:28.010000"],["2024-07-25T09:39:29.010000"],["2024-07-25T09:39:30.010000"],["2024-07-25T09:39:31.010000"],["2024-07-25T09:39:32.010000"],["2024-07-25T09:39:33.010000"],["2024-07-25T09:39:34.010000"],["2024-07-25T09:39:35.010000"],["2024-07-25T09:39:36.010000"],["2024-07-25T09:39:37.010000"],["2024-07-25T09:39:38.010000"],["2024-07-25T09:39:39.010000"],["2024-07-25T09:39:40.010000"],["2024-07-25T09:39:41.010000"],["2024-07-25T09:39:42.010000"],["2024-07-25T09:39:43.010000"],["2024-07-25T09:39:44.010000"],["2024-07-25T09:39:45.010000"],["2024-07-25T09:39:46.010000"],["2024-07-25T09:39:47.010000"],["2024-07-25T09:39:48.010000"],["2024-07-25T09:39:49.010000"],["2024-07-25T09:39:50.010000"],["2024-07-25T09:39:51.010000"],["2024-07-25T09:39:52.010000"],["2024-07-25T09:39:53.010000"],["2024-07-25T09:39:54.010000"],["2024-07-25T09:39:55.010000"],["2024-07-25T09:39:56.010000"],["2024-07-25T09:39:57.010000"],["2024-07-25T09:39:58.010000"],["2024-07-25T09:39:59.010000"],["2024-07-25T09:40:00.010000"],["2024-07-25T09:40:01.010000"],["2024-07-25T09:40:02.010000"],["2024-07-25T09:40:03.010000"],["2024-07-25T09:40:04.010000"],["2024-07-25T09:40:05.010000"],["2024-07-25T09:40:06.010000"],["2024-07-25T09:40:07.010000"],["2024-07-25T09:40:08.010000"],["2024-07-25T09:40:09.010000"],["2024-07-25T09:40:10.010000"],["2024-07-25T09:40:11.010000"],["2024-07-25T09:40:12.010000"],["2024-07-25T09:40:13.010000"],["2024-07-25T09:40:14.010000"],["2024-07-25T09:40:15.010000"],["2024-07-25T09:40:16.010000"],["2024-07-25T09:40:17.010000"],["2024-07-25T09:40:18.010000"],["2024-07-25T09:40:19.010000"],["2024-07-25T09:40:20.010000"],["2024-07-25T09:40:21.010000"],["2024-07-25T09:40:22.010000"],["2024-07-25T09:40:23.010000"],["2024-07-25T09:40:24.010000"],["2024-07-25T09:40:25.010000"],["2024-07-25T09:40:26.010000"],["2024-07-25T09:40:27.010000"],["2024-07-25T09:40:28.010000"],["2024-07-25T09:40:29.010000"],["2024-07-25T09:40:30.010000"],["2024-07-25T09:40:31.010000"],["2024-07-25T09:40:32.010000"],["2024-07-25T09:40:33.010000"],["2024-07-25T09:40:34.010000"],["2024-07-25T09:40:35.010000"],["2024-07-25T09:40:36.010000"],["2024-07-25T09:40:37.010000"],["2024-07-25T09:40:38.010000"],["2024-07-25T09:40:39.010000"],["2024-07-25T09:40:40.010000"],["2024-07-25T09:40:41.010000"],["2024-07-25T09:40:42.010000"],["2024-07-25T09:40:43.010000"],["2024-07-25T09:40:44.010000"],["2024-07-25T09:40:45.010000"],["2024-07-25T09:40:46.010000"],["2024-07-25T09:40:47.010000"],["2024-07-25T09:40:48.010000"],["2024-07-25T09:40:49.010000"],["2024-07-25T09:40:50.010000"],["2024-07-25T09:40:51.010000"],["2024-07-25T09:40:52.010000"],["2024-07-25T09:40:53.010000"],["2024-07-25T09:40:54.010000"],["2024-07-25T09:40:55.010000"],["2024-07-25T09:40:56.010000"],["2024-07-25T09:40:57.010000"],["2024-07-25T09:40:58.010000"],["2024-07-25T09:40:59.010000"],["2024-07-25T09:41:00.010000"],["2024-07-25T09:41:01.010000"],["2024-07-25T09:41:02.010000"],["2024-07-25T09:41:03.010000"],["2024-07-25T09:41:04.010000"],["2024-07-25T09:41:05.010000"],["2024-07-25T09:41:06.010000"],["2024-07-25T09:41:07.010000"],["2024-07-25T09:41:08.010000"],["2024-07-25T09:41:09.010000"],["2024-07-25T09:41:10.010000"],["2024-07-25T09:41:11.010000"],["2024-07-25T09:41:12.010000"],["2024-07-25T09:41:13.010000"],["2024-07-25T09:41:14.010000"],["2024-07-25T09:41:15.010000"],["2024-07-25T09:41:16.010000"],["2024-07-25T09:41:17.010000"],["2024-07-25T09:41:18.010000"],["2024-07-25T09:41:19.010000"],["2024-07-25T09:41:20.010000"],["2024-07-25T09:41:21.010000"],["2024-07-25T09:41:22.010000"],["2024-07-25T09:41:23.010000"],["2024-07-25T09:41:24.010000"],["2024-07-25T09:41:25.010000"],["2024-07-25T09:41:26.010000"],["2024-07-25T09:41:27.010000"],["2024-07-25T09:41:28.010000"],["2024-07-25T09:41:29.010000"],["2024-07-25T09:41:30.010000"],["2024-07-25T09:41:31.010000"],["2024-07-25T09:41:32.010000"],["2024-07-25T09:41:33.010000"],["2024-07-25T09:41:34.010000"],["2024-07-25T09:41:35.010000"],["2024-07-25T09:41:36.010000"],["2024-07-25T09:41:37.010000"],["2024-07-25T09:41:38.010000"],["2024-07-25T09:41:39.010000"],["2024-07-25T09:41:40.010000"],["2024-07-25T09:41:41.010000"],["2024-07-25T09:41:42.010000"],["2024-07-25T09:41:43.010000"],["2024-07-25T09:41:44.010000"],["2024-07-25T09:41:45.010000"],["2024-07-25T09:41:46.010000"],["2024-07-25T09:41:47.010000"],["2024-07-25T09:41:48.010000"],["2024-07-25T09:41:49.010000"],["2024-07-25T09:41:50.010000"],["2024-07-25T09:41:51.010000"],["2024-07-25T09:41:52.010000"],["2024-07-25T09:41:53.010000"],["2024-07-25T09:41:54.010000"],["2024-07-25T09:41:55.010000"],["2024-07-25T09:41:56.010000"],["2024-07-25T09:41:57.010000"],["2024-07-25T09:41:58.010000"],["2024-07-25T09:41:59.010000"],["2024-07-25T09:42:00.010000"],["2024-07-25T09:42:01.010000"],["2024-07-25T09:42:02.010000"],["2024-07-25T09:42:03.010000"],["2024-07-25T09:42:04.010000"],["2024-07-25T09:42:05.010000"],["2024-07-25T09:42:06.010000"],["2024-07-25T09:42:07.010000"],["2024-07-25T09:42:08.010000"],["2024-07-25T09:42:09.010000"],["2024-07-25T09:42:10.010000"],["2024-07-25T09:42:11.010000"],["2024-07-25T09:42:12.010000"],["2024-07-25T09:42:13.010000"],["2024-07-25T09:42:14.010000"],["2024-07-25T09:42:15.010000"],["2024-07-25T09:42:16.010000"],["2024-07-25T09:42:17.010000"],["2024-07-25T09:42:18.010000"],["2024-07-25T09:42:19.010000"],["2024-07-25T09:42:20.010000"],["2024-07-25T09:42:21.010000"],["2024-07-25T09:42:22.010000"],["2024-07-25T09:42:23.010000"],["2024-07-25T09:42:24.010000"],["2024-07-25T09:42:25.010000"],["2024-07-25T09:42:26.010000"],["2024-07-25T09:42:27.010000"],["2024-07-25T09:42:28.010000"],["2024-07-25T09:42:29.010000"],["2024-07-25T09:42:30.010000"],["2024-07-25T09:42:31.010000"],["2024-07-25T09:42:32.010000"],["2024-07-25T09:42:33.010000"],["2024-07-25T09:42:34.010000"],["2024-07-25T09:42:35.010000"],["2024-07-25T09:42:36.010000"],["2024-07-25T09:42:37.010000"],["2024-07-25T09:42:38.010000"],["2024-07-25T09:42:39.010000"],["2024-07-25T09:42:40.010000"],["2024-07-25T09:42:41.010000"],["2024-07-25T09:42:42.010000"],["2024-07-25T09:42:43.010000"],["2024-07-25T09:42:44.010000"],["2024-07-25T09:42:45.010000"],["2024-07-25T09:42:46.010000"],["2024-07-25T09:42:47.010000"],["2024-07-25T09:42:48.010000"],["2024-07-25T09:42:49.010000"],["2024-07-25T09:42:50.010000"],["2024-07-25T09:42:51.010000"],["2024-07-25T09:42:52.010000"],["2024-07-25T09:42:53.010000"],["2024-07-25T09:42:54.010000"],["2024-07-25T09:42:55.010000"],["2024-07-25T09:42:56.010000"],["2024-07-25T09:42:57.010000"],["2024-07-25T09:42:58.010000"],["2024-07-25T09:42:59.010000"],["2024-07-25T09:43:00.010000"],["2024-07-25T09:43:01.010000"],["2024-07-25T09:43:02.010000"],["2024-07-25T09:43:03.010000"],["2024-07-25T09:43:04.010000"],["2024-07-25T09:43:05.010000"],["2024-07-25T09:43:06.010000"],["2024-07-25T09:43:07.010000"],["2024-07-25T09:43:08.010000"],["2024-07-25T09:43:09.010000"],["2024-07-25T09:43:10.010000"],["2024-07-25T09:43:11.010000"],["2024-07-25T09:43:12.010000"],["2024-07-25T09:43:13.010000"],["2024-07-25T09:43:14.010000"],["2024-07-25T09:43:15.010000"],["2024-07-25T09:43:16.010000"],["2024-07-25T09:43:17.010000"],["2024-07-25T09:43:18.010000"],["2024-07-25T09:43:19.010000"],["2024-07-25T09:43:20.010000"],["2024-07-25T09:43:21.010000"],["2024-07-25T09:43:22.010000"],["2024-07-25T09:43:23.010000"],["2024-07-25T09:43:24.010000"],["2024-07-25T09:43:25.010000"],["2024-07-25T09:43:26.010000"],["2024-07-25T09:43:27.010000"],["2024-07-25T09:43:28.010000"],["2024-07-25T09:43:29.010000"],["2024-07-25T09:43:30.010000"],["2024-07-25T09:43:31.010000"],["2024-07-25T09:43:32.010000"],["2024-07-25T09:43:33.010000"],["2024-07-25T09:43:34.010000"],["2024-07-25T09:43:35.010000"],["2024-07-25T09:43:36.010000"],["2024-07-25T09:43:37.010000"],["2024-07-25T09:43:38.010000"],["2024-07-25T09:43:39.010000"],["2024-07-25T09:43:40.010000"],["2024-07-25T09:43:41.010000"],["2024-07-25T09:43:42.010000"],["2024-07-25T09:43:43.010000"],["2024-07-25T09:43:44.010000"],["2024-07-25T09:43:45.010000"],["2024-07-25T09:43:46.010000"],["2024-07-25T09:43:47.010000"],["2024-07-25T09:43:48.010000"],["2024-07-25T09:43:49.010000"],["2024-07-25T09:43:50.010000"],["2024-07-25T09:43:51.010000"],["2024-07-25T09:43:52.010000"],["2024-07-25T09:43:53.010000"],["2024-07-25T09:43:54.010000"],["2024-07-25T09:43:55.010000"],["2024-07-25T09:43:56.010000"],["2024-07-25T09:43:57.010000"],["2024-07-25T09:43:58.010000"],["2024-07-25T09:43:59.010000"],["2024-07-25T09:44:00.010000"],["2024-07-25T09:44:01.010000"],["2024-07-25T09:44:02.010000"],["2024-07-25T09:44:03.010000"],["2024-07-25T09:44:04.010000"],["2024-07-25T09:44:05.010000"],["2024-07-25T09:44:06.010000"],["2024-07-25T09:44:07.010000"],["2024-07-25T09:44:08.010000"],["2024-07-25T09:44:09.010000"],["2024-07-25T09:44:10.010000"],["2024-07-25T09:44:11.010000"],["2024-07-25T09:44:12.010000"],["2024-07-25T09:44:13.010000"],["2024-07-25T09:44:14.010000"],["2024-07-25T09:44:15.010000"],["2024-07-25T09:44:16.010000"],["2024-07-25T09:44:17.010000"],["2024-07-25T09:44:18.010000"],["2024-07-25T09:44:19.010000"],["2024-07-25T09:44:20.010000"],["2024-07-25T09:44:21.010000"],["2024-07-25T09:44:22.010000"],["2024-07-25T09:44:23.010000"],["2024-07-25T09:44:24.010000"],["2024-07-25T09:44:25.010000"],["2024-07-25T09:44:26.010000"],["2024-07-25T09:44:27.010000"],["2024-07-25T09:44:28.010000"],["2024-07-25T09:44:29.010000"],["2024-07-25T09:44:30.010000"],["2024-07-25T09:44:31.010000"],["2024-07-25T09:44:32.010000"],["2024-07-25T09:44:33.010000"],["2024-07-25T09:44:34.010000"],["2024-07-25T09:44:35.010000"],["2024-07-25T09:44:36.010000"],["2024-07-25T09:44:37.010000"],["2024-07-25T09:44:38.010000"],["2024-07-25T09:44:39.010000"],["2024-07-25T09:44:40.010000"],["2024-07-25T09:44:41.010000"],["2024-07-25T09:44:42.010000"],["2024-07-25T09:44:43.010000"],["2024-07-25T09:44:44.010000"],["2024-07-25T09:44:45.010000"],["2024-07-25T09:44:46.010000"],["2024-07-25T09:44:47.010000"],["2024-07-25T09:44:48.010000"],["2024-07-25T09:44:49.010000"],["2024-07-25T09:44:50.010000"],["2024-07-25T09:44:51.010000"],["2024-07-25T09:44:52.010000"],["2024-07-25T09:44:53.010000"],["2024-07-25T09:44:54.010000"],["2024-07-25T09:44:55.010000"],["2024-07-25T09:44:56.010000"],["2024-07-25T09:44:57.010000"],["2024-07-25T09:44:58.010000"],["2024-07-25T09:44:59.010000"],["2024-07-25T09:45:00.010000"],["2024-07-25T09:45:01.010000"],["2024-07-25T09:45:02.010000"],["2024-07-25T09:45:03.010000"],["2024-07-25T09:45:04.010000"],["2024-07-25T09:45:05.010000"],["2024-07-25T09:45:06.010000"],["2024-07-25T09:45:07.010000"],["2024-07-25T09:45:08.010000"],["2024-07-25T09:45:09.010000"],["2024-07-25T09:45:10.010000"],["2024-07-25T09:45:11.010000"],["2024-07-25T09:45:12.010000"],["2024-07-25T09:45:13.010000"],["2024-07-25T09:45:14.010000"],["2024-07-25T09:45:15.010000"],["2024-07-25T09:45:16.010000"],["2024-07-25T09:45:17.010000"],["2024-07-25T09:45:18.010000"],["2024-07-25T09:45:19.010000"],["2024-07-25T09:45:20.010000"],["2024-07-25T09:45:21.010000"],["2024-07-25T09:45:22.010000"],["2024-07-25T09:45:23.010000"],["2024-07-25T09:45:24.010000"],["2024-07-25T09:45:25.010000"],["2024-07-25T09:45:26.010000"],["2024-07-25T09:45:27.010000"],["2024-07-25T09:45:28.010000"],["2024-07-25T09:45:29.010000"],["2024-07-25T09:45:30.010000"],["2024-07-25T09:45:31.010000"],["2024-07-25T09:45:32.010000"],["2024-07-25T09:45:33.010000"],["2024-07-25T09:45:34.010000"],["2024-07-25T09:45:35.010000"],["2024-07-25T09:45:36.010000"],["2024-07-25T09:45:37.010000"],["2024-07-25T09:45:38.010000"],["2024-07-25T09:45:39.010000"],["2024-07-25T09:45:40.010000"],["2024-07-25T09:45:41.010000"],["2024-07-25T09:45:42.010000"],["2024-07-25T09:45:43.010000"],["2024-07-25T09:45:44.010000"],["2024-07-25T09:45:45.010000"],["2024-07-25T09:45:46.010000"],["2024-07-25T09:45:47.010000"],["2024-07-25T09:45:48.010000"],["2024-07-25T09:45:49.010000"],["2024-07-25T09:45:50.010000"],["2024-07-25T09:45:51.010000"],["2024-07-25T09:45:52.010000"],["2024-07-25T09:45:53.010000"],["2024-07-25T09:45:54.010000"],["2024-07-25T09:45:55.010000"],["2024-07-25T09:45:56.010000"],["2024-07-25T09:45:57.010000"],["2024-07-25T09:45:58.010000"],["2024-07-25T09:45:59.010000"],["2024-07-25T09:46:00.010000"],["2024-07-25T09:46:01.010000"],["2024-07-25T09:46:02.010000"],["2024-07-25T09:46:03.010000"],["2024-07-25T09:46:04.010000"],["2024-07-25T09:46:05.010000"],["2024-07-25T09:46:06.010000"],["2024-07-25T09:46:07.010000"],["2024-07-25T09:46:08.010000"],["2024-07-25T09:46:09.010000"],["2024-07-25T09:46:10.010000"],["2024-07-25T09:46:11.010000"],["2024-07-25T09:46:12.010000"],["2024-07-25T09:46:13.010000"],["2024-07-25T09:46:14.010000"],["2024-07-25T09:46:15.010000"],["2024-07-25T09:46:16.010000"],["2024-07-25T09:46:17.010000"],["2024-07-25T09:46:18.010000"],["2024-07-25T09:46:19.010000"],["2024-07-25T09:46:20.010000"],["2024-07-25T09:46:21.010000"],["2024-07-25T09:46:22.010000"],["2024-07-25T09:46:23.010000"],["2024-07-25T09:46:24.010000"],["2024-07-25T09:46:25.010000"],["2024-07-25T09:46:26.010000"],["2024-07-25T09:46:27.010000"],["2024-07-25T09:46:28.010000"],["2024-07-25T09:46:29.010000"],["2024-07-25T09:46:30.010000"],["2024-07-25T09:46:31.010000"],["2024-07-25T09:46:32.010000"],["2024-07-25T09:46:33.010000"],["2024-07-25T09:46:34.010000"],["2024-07-25T09:46:35.010000"],["2024-07-25T09:46:36.010000"],["2024-07-25T09:46:37.010000"],["2024-07-25T09:46:38.010000"],["2024-07-25T09:46:39.010000"],["2024-07-25T09:46:40.010000"],["2024-07-25T09:46:41.010000"],["2024-07-25T09:46:42.010000"],["2024-07-25T09:46:43.010000"],["2024-07-25T09:46:44.010000"],["2024-07-25T09:46:45.010000"],["2024-07-25T09:46:46.010000"],["2024-07-25T09:46:47.010000"],["2024-07-25T09:46:48.010000"],["2024-07-25T09:46:49.010000"],["2024-07-25T09:46:50.010000"],["2024-07-25T09:46:51.010000"],["2024-07-25T09:46:52.010000"],["2024-07-25T09:46:53.010000"],["2024-07-25T09:46:54.010000"],["2024-07-25T09:46:55.010000"],["2024-07-25T09:46:56.010000"],["2024-07-25T09:46:57.010000"],["2024-07-25T09:46:58.010000"],["2024-07-25T09:46:59.010000"],["2024-07-25T09:47:00.010000"],["2024-07-25T09:47:01.010000"],["2024-07-25T09:47:02.010000"],["2024-07-25T09:47:03.010000"],["2024-07-25T09:47:04.010000"],["2024-07-25T09:47:05.010000"],["2024-07-25T09:47:06.010000"],["2024-07-25T09:47:07.010000"],["2024-07-25T09:47:08.010000"],["2024-07-25T09:47:09.010000"],["2024-07-25T09:47:10.010000"],["2024-07-25T09:47:11.010000"],["2024-07-25T09:47:12.010000"],["2024-07-25T09:47:13.010000"],["2024-07-25T09:47:14.010000"],["2024-07-25T09:47:15.010000"],["2024-07-25T09:47:16.010000"],["2024-07-25T09:47:17.010000"],["2024-07-25T09:47:18.010000"],["2024-07-25T09:47:19.010000"],["2024-07-25T09:47:20.010000"],["2024-07-25T09:47:21.010000"],["2024-07-25T09:47:22.010000"],["2024-07-25T09:47:23.010000"],["2024-07-25T09:47:24.010000"],["2024-07-25T09:47:25.010000"],["2024-07-25T09:47:26.010000"],["2024-07-25T09:47:27.010000"],["2024-07-25T09:47:28.010000"],["2024-07-25T09:47:29.010000"],["2024-07-25T09:47:30.010000"],["2024-07-25T09:47:31.010000"],["2024-07-25T09:47:32.010000"],["2024-07-25T09:47:33.010000"],["2024-07-25T09:47:34.010000"],["2024-07-25T09:47:35.010000"],["2024-07-25T09:47:36.010000"],["2024-07-25T09:47:37.010000"],["2024-07-25T09:47:38.010000"],["2024-07-25T09:47:39.010000"],["2024-07-25T09:47:40.010000"],["2024-07-25T09:47:41.010000"],["2024-07-25T09:47:42.010000"],["2024-07-25T09:47:43.010000"],["2024-07-25T09:47:44.010000"],["2024-07-25T09:47:45.010000"],["2024-07-25T09:47:46.010000"],["2024-07-25T09:47:47.010000"],["2024-07-25T09:47:48.010000"],["2024-07-25T09:47:49.010000"],["2024-07-25T09:47:50.010000"],["2024-07-25T09:47:51.010000"],["2024-07-25T09:47:52.010000"],["2024-07-25T09:47:53.010000"],["2024-07-25T09:47:54.010000"],["2024-07-25T09:47:55.010000"],["2024-07-25T09:47:56.010000"],["2024-07-25T09:47:57.010000"],["2024-07-25T09:47:58.010000"],["2024-07-25T09:47:59.010000"],["2024-07-25T09:48:00.010000"],["2024-07-25T09:48:01.010000"],["2024-07-25T09:48:02.010000"],["2024-07-25T09:48:03.010000"],["2024-07-25T09:48:04.010000"],["2024-07-25T09:48:05.010000"],["2024-07-25T09:48:06.010000"],["2024-07-25T09:48:07.010000"],["2024-07-25T09:48:08.010000"],["2024-07-25T09:48:09.010000"],["2024-07-25T09:48:10.010000"],["2024-07-25T09:48:11.010000"],["2024-07-25T09:48:12.010000"],["2024-07-25T09:48:13.010000"],["2024-07-25T09:48:14.010000"],["2024-07-25T09:48:15.010000"],["2024-07-25T09:48:16.010000"],["2024-07-25T09:48:17.010000"],["2024-07-25T09:48:18.010000"],["2024-07-25T09:48:19.010000"],["2024-07-25T09:48:20.010000"],["2024-07-25T09:48:21.010000"],["2024-07-25T09:48:22.010000"],["2024-07-25T09:48:23.010000"],["2024-07-25T09:48:24.010000"],["2024-07-25T09:48:25.010000"],["2024-07-25T09:48:26.010000"],["2024-07-25T09:48:27.010000"],["2024-07-25T09:48:28.010000"],["2024-07-25T09:48:29.010000"],["2024-07-25T09:48:30.010000"],["2024-07-25T09:48:31.010000"],["2024-07-25T09:48:32.010000"],["2024-07-25T09:48:33.010000"],["2024-07-25T09:48:34.010000"],["2024-07-25T09:48:35.010000"],["2024-07-25T09:48:36.010000"],["2024-07-25T09:48:37.010000"],["2024-07-25T09:48:38.010000"],["2024-07-25T09:48:39.010000"],["2024-07-25T09:48:40.010000"],["2024-07-25T09:48:41.010000"],["2024-07-25T09:48:42.010000"],["2024-07-25T09:48:43.010000"],["2024-07-25T09:48:44.010000"],["2024-07-25T09:48:45.010000"],["2024-07-25T09:48:46.010000"],["2024-07-25T09:48:47.010000"],["2024-07-25T09:48:48.010000"],["2024-07-25T09:48:49.010000"],["2024-07-25T09:48:50.010000"],["2024-07-25T09:48:51.010000"],["2024-07-25T09:48:52.010000"],["2024-07-25T09:48:53.010000"],["2024-07-25T09:48:54.010000"],["2024-07-25T09:48:55.010000"],["2024-07-25T09:48:56.010000"],["2024-07-25T09:48:57.010000"],["2024-07-25T09:48:58.010000"],["2024-07-25T09:48:59.010000"],["2024-07-25T09:49:00.010000"],["2024-07-25T09:49:01.010000"],["2024-07-25T09:49:02.010000"],["2024-07-25T09:49:03.010000"],["2024-07-25T09:49:04.010000"],["2024-07-25T09:49:05.010000"],["2024-07-25T09:49:06.010000"],["2024-07-25T09:49:07.010000"],["2024-07-25T09:49:08.010000"],["2024-07-25T09:49:09.010000"],["2024-07-25T09:49:10.010000"],["2024-07-25T09:49:11.010000"],["2024-07-25T09:49:12.010000"],["2024-07-25T09:49:13.010000"],["2024-07-25T09:49:14.010000"],["2024-07-25T09:49:15.010000"],["2024-07-25T09:49:16.010000"],["2024-07-25T09:49:17.010000"],["2024-07-25T09:49:18.010000"],["2024-07-25T09:49:19.010000"],["2024-07-25T09:49:20.010000"],["2024-07-25T09:49:21.010000"],["2024-07-25T09:49:22.010000"],["2024-07-25T09:49:23.010000"],["2024-07-25T09:49:24.010000"],["2024-07-25T09:49:25.010000"],["2024-07-25T09:49:26.010000"],["2024-07-25T09:49:27.010000"],["2024-07-25T09:49:28.010000"],["2024-07-25T09:49:29.010000"],["2024-07-25T09:49:30.010000"],["2024-07-25T09:49:31.010000"],["2024-07-25T09:49:32.010000"],["2024-07-25T09:49:33.010000"],["2024-07-25T09:49:34.010000"],["2024-07-25T09:49:35.010000"],["2024-07-25T09:49:36.010000"],["2024-07-25T09:49:37.010000"],["2024-07-25T09:49:38.010000"],["2024-07-25T09:49:39.010000"],["2024-07-25T09:49:40.010000"],["2024-07-25T09:49:41.010000"],["2024-07-25T09:49:42.010000"],["2024-07-25T09:49:43.010000"],["2024-07-25T09:49:44.010000"],["2024-07-25T09:49:45.010000"],["2024-07-25T09:49:46.010000"],["2024-07-25T09:49:47.010000"],["2024-07-25T09:49:48.010000"],["2024-07-25T09:49:49.010000"],["2024-07-25T09:49:50.010000"],["2024-07-25T09:49:51.010000"],["2024-07-25T09:49:52.010000"],["2024-07-25T09:49:53.010000"],["2024-07-25T09:49:54.010000"],["2024-07-25T09:49:55.010000"],["2024-07-25T09:49:56.010000"],["2024-07-25T09:49:57.010000"],["2024-07-25T09:49:58.010000"],["2024-07-25T09:49:59.010000"],["2024-07-25T09:50:00.010000"],["2024-07-25T09:50:01.010000"],["2024-07-25T09:50:02.010000"],["2024-07-25T09:50:03.010000"],["2024-07-25T09:50:04.010000"],["2024-07-25T09:50:05.010000"],["2024-07-25T09:50:06.010000"],["2024-07-25T09:50:07.010000"],["2024-07-25T09:50:08.010000"],["2024-07-25T09:50:09.010000"],["2024-07-25T09:50:10.010000"],["2024-07-25T09:50:11.010000"],["2024-07-25T09:50:12.010000"],["2024-07-25T09:50:13.010000"],["2024-07-25T09:50:14.010000"],["2024-07-25T09:50:15.010000"],["2024-07-25T09:50:16.010000"],["2024-07-25T09:50:17.010000"],["2024-07-25T09:50:18.010000"],["2024-07-25T09:50:19.010000"],["2024-07-25T09:50:20.010000"],["2024-07-25T09:50:21.010000"],["2024-07-25T09:50:22.010000"],["2024-07-25T09:50:23.010000"],["2024-07-25T09:50:24.010000"],["2024-07-25T09:50:25.010000"],["2024-07-25T09:50:26.010000"],["2024-07-25T09:50:27.010000"],["2024-07-25T09:50:28.010000"],["2024-07-25T09:50:29.010000"],["2024-07-25T09:50:30.010000"],["2024-07-25T09:50:31.010000"],["2024-07-25T09:50:32.010000"],["2024-07-25T09:50:33.010000"],["2024-07-25T09:50:34.010000"],["2024-07-25T09:50:35.010000"],["2024-07-25T09:50:36.010000"],["2024-07-25T09:50:37.010000"],["2024-07-25T09:50:38.010000"],["2024-07-25T09:50:39.010000"],["2024-07-25T09:50:40.010000"],["2024-07-25T09:50:41.010000"],["2024-07-25T09:50:42.010000"],["2024-07-25T09:50:43.010000"],["2024-07-25T09:50:44.010000"],["2024-07-25T09:50:45.010000"],["2024-07-25T09:50:46.010000"],["2024-07-25T09:50:47.010000"],["2024-07-25T09:50:48.010000"],["2024-07-25T09:50:49.010000"],["2024-07-25T09:50:50.010000"],["2024-07-25T09:50:51.010000"],["2024-07-25T09:50:52.010000"],["2024-07-25T09:50:53.010000"],["2024-07-25T09:50:54.010000"],["2024-07-25T09:50:55.010000"],["2024-07-25T09:50:56.010000"],["2024-07-25T09:50:57.010000"],["2024-07-25T09:50:58.010000"],["2024-07-25T09:50:59.010000"],["2024-07-25T09:51:00.010000"],["2024-07-25T09:51:01.010000"],["2024-07-25T09:51:02.010000"],["2024-07-25T09:51:03.010000"],["2024-07-25T09:51:04.010000"],["2024-07-25T09:51:05.010000"],["2024-07-25T09:51:06.010000"],["2024-07-25T09:51:07.010000"],["2024-07-25T09:51:08.010000"],["2024-07-25T09:51:09.010000"],["2024-07-25T09:51:10.010000"],["2024-07-25T09:51:11.010000"],["2024-07-25T09:51:12.010000"],["2024-07-25T09:51:13.010000"],["2024-07-25T09:51:14.010000"],["2024-07-25T09:51:15.010000"],["2024-07-25T09:51:16.010000"],["2024-07-25T09:51:17.010000"],["2024-07-25T09:51:18.010000"],["2024-07-25T09:51:19.010000"],["2024-07-25T09:51:20.010000"],["2024-07-25T09:51:21.010000"],["2024-07-25T09:51:22.010000"],["2024-07-25T09:51:23.010000"],["2024-07-25T09:51:24.010000"],["2024-07-25T09:51:25.010000"],["2024-07-25T09:51:26.010000"],["2024-07-25T09:51:27.010000"],["2024-07-25T09:51:28.010000"],["2024-07-25T09:51:29.010000"],["2024-07-25T09:51:30.010000"],["2024-07-25T09:51:31.010000"],["2024-07-25T09:51:32.010000"],["2024-07-25T09:51:33.010000"],["2024-07-25T09:51:34.010000"],["2024-07-25T09:51:35.010000"],["2024-07-25T09:51:36.010000"],["2024-07-25T09:51:37.010000"],["2024-07-25T09:51:38.010000"],["2024-07-25T09:51:39.010000"],["2024-07-25T09:51:40.010000"],["2024-07-25T09:51:41.010000"],["2024-07-25T09:51:42.010000"],["2024-07-25T09:51:43.010000"],["2024-07-25T09:51:44.010000"],["2024-07-25T09:51:45.010000"],["2024-07-25T09:51:46.010000"],["2024-07-25T09:51:47.010000"],["2024-07-25T09:51:48.010000"],["2024-07-25T09:51:49.010000"],["2024-07-25T09:51:50.010000"],["2024-07-25T09:51:51.010000"],["2024-07-25T09:51:52.010000"],["2024-07-25T09:51:53.010000"],["2024-07-25T09:51:54.010000"],["2024-07-25T09:51:55.010000"],["2024-07-25T09:51:56.010000"],["2024-07-25T09:51:57.010000"],["2024-07-25T09:51:58.010000"],["2024-07-25T09:51:59.010000"],["2024-07-25T09:52:00.010000"],["2024-07-25T09:52:01.010000"],["2024-07-25T09:52:02.010000"],["2024-07-25T09:52:03.010000"],["2024-07-25T09:52:04.010000"],["2024-07-25T09:52:05.010000"],["2024-07-25T09:52:06.010000"],["2024-07-25T09:52:07.010000"],["2024-07-25T09:52:08.010000"],["2024-07-25T09:52:09.010000"],["2024-07-25T09:52:10.010000"],["2024-07-25T09:52:11.010000"],["2024-07-25T09:52:12.010000"],["2024-07-25T09:52:13.010000"],["2024-07-25T09:52:14.010000"],["2024-07-25T09:52:15.010000"],["2024-07-25T09:52:16.010000"],["2024-07-25T09:52:17.010000"],["2024-07-25T09:52:18.010000"],["2024-07-25T09:52:19.010000"],["2024-07-25T09:52:20.010000"],["2024-07-25T09:52:21.010000"],["2024-07-25T09:52:22.010000"],["2024-07-25T09:52:23.010000"],["2024-07-25T09:52:24.010000"],["2024-07-25T09:52:25.010000"],["2024-07-25T09:52:26.010000"],["2024-07-25T09:52:27.010000"],["2024-07-25T09:52:28.010000"],["2024-07-25T09:52:29.010000"],["2024-07-25T09:52:30.010000"],["2024-07-25T09:52:31.010000"],["2024-07-25T09:52:32.010000"],["2024-07-25T09:52:33.010000"],["2024-07-25T09:52:34.010000"],["2024-07-25T09:52:35.010000"],["2024-07-25T09:52:36.010000"],["2024-07-25T09:52:37.010000"],["2024-07-25T09:52:38.010000"],["2024-07-25T09:52:39.010000"],["2024-07-25T09:52:40.010000"],["2024-07-25T09:52:41.010000"],["2024-07-25T09:52:42.010000"],["2024-07-25T09:52:43.010000"],["2024-07-25T09:52:44.010000"],["2024-07-25T09:52:45.010000"],["2024-07-25T09:52:46.010000"],["2024-07-25T09:52:47.010000"],["2024-07-25T09:52:48.010000"],["2024-07-25T09:52:49.010000"],["2024-07-25T09:52:50.010000"],["2024-07-25T09:52:51.010000"],["2024-07-25T09:52:52.010000"],["2024-07-25T09:52:53.010000"],["2024-07-25T09:52:54.010000"],["2024-07-25T09:52:55.010000"],["2024-07-25T09:52:56.010000"],["2024-07-25T09:52:57.010000"],["2024-07-25T09:52:58.010000"],["2024-07-25T09:52:59.010000"],["2024-07-25T09:53:00.010000"],["2024-07-25T09:53:01.010000"],["2024-07-25T09:53:02.010000"],["2024-07-25T09:53:03.010000"],["2024-07-25T09:53:04.010000"],["2024-07-25T09:53:05.010000"],["2024-07-25T09:53:06.010000"],["2024-07-25T09:53:07.010000"],["2024-07-25T09:53:08.010000"],["2024-07-25T09:53:09.010000"],["2024-07-25T09:53:10.010000"],["2024-07-25T09:53:11.010000"],["2024-07-25T09:53:12.010000"],["2024-07-25T09:53:13.010000"],["2024-07-25T09:53:14.010000"],["2024-07-25T09:53:15.010000"],["2024-07-25T09:53:16.010000"],["2024-07-25T09:53:17.010000"],["2024-07-25T09:53:18.010000"],["2024-07-25T09:53:19.010000"],["2024-07-25T09:53:20.010000"],["2024-07-25T09:53:21.010000"],["2024-07-25T09:53:22.010000"],["2024-07-25T09:53:23.010000"],["2024-07-25T09:53:24.010000"],["2024-07-25T09:53:25.010000"],["2024-07-25T09:53:26.010000"],["2024-07-25T09:53:27.010000"],["2024-07-25T09:53:28.010000"],["2024-07-25T09:53:29.010000"],["2024-07-25T09:53:30.010000"],["2024-07-25T09:53:31.010000"],["2024-07-25T09:53:32.010000"],["2024-07-25T09:53:33.010000"],["2024-07-25T09:53:34.010000"],["2024-07-25T09:53:35.010000"],["2024-07-25T09:53:36.010000"],["2024-07-25T09:53:37.010000"],["2024-07-25T09:53:38.010000"],["2024-07-25T09:53:39.010000"],["2024-07-25T09:53:40.010000"],["2024-07-25T09:53:41.010000"],["2024-07-25T09:53:42.010000"],["2024-07-25T09:53:43.010000"],["2024-07-25T09:53:44.010000"],["2024-07-25T09:53:45.010000"],["2024-07-25T09:53:46.010000"],["2024-07-25T09:53:47.010000"],["2024-07-25T09:53:48.010000"],["2024-07-25T09:53:49.010000"],["2024-07-25T09:53:50.010000"],["2024-07-25T09:53:51.010000"],["2024-07-25T09:53:52.010000"],["2024-07-25T09:53:53.010000"],["2024-07-25T09:53:54.010000"],["2024-07-25T09:53:55.010000"],["2024-07-25T09:53:56.010000"],["2024-07-25T09:53:57.010000"],["2024-07-25T09:53:58.010000"],["2024-07-25T09:53:59.010000"],["2024-07-25T09:54:00.010000"],["2024-07-25T09:54:01.010000"],["2024-07-25T09:54:02.010000"],["2024-07-25T09:54:03.010000"],["2024-07-25T09:54:04.010000"],["2024-07-25T09:54:05.010000"],["2024-07-25T09:54:06.010000"],["2024-07-25T09:54:07.010000"],["2024-07-25T09:54:08.010000"],["2024-07-25T09:54:09.010000"],["2024-07-25T09:54:10.010000"],["2024-07-25T09:54:11.010000"],["2024-07-25T09:54:12.010000"],["2024-07-25T09:54:13.010000"],["2024-07-25T09:54:14.010000"],["2024-07-25T09:54:15.010000"],["2024-07-25T09:54:16.010000"],["2024-07-25T09:54:17.010000"],["2024-07-25T09:54:18.010000"],["2024-07-25T09:54:19.010000"],["2024-07-25T09:54:20.010000"],["2024-07-25T09:54:21.010000"],["2024-07-25T09:54:22.010000"],["2024-07-25T09:54:23.010000"],["2024-07-25T09:54:24.010000"],["2024-07-25T09:54:25.010000"],["2024-07-25T09:54:26.010000"],["2024-07-25T09:54:27.010000"],["2024-07-25T09:54:28.010000"],["2024-07-25T09:54:29.010000"],["2024-07-25T09:54:30.010000"],["2024-07-25T09:54:31.010000"],["2024-07-25T09:54:32.010000"],["2024-07-25T09:54:33.010000"],["2024-07-25T09:54:34.010000"],["2024-07-25T09:54:35.010000"],["2024-07-25T09:54:36.010000"],["2024-07-25T09:54:37.010000"],["2024-07-25T09:54:38.010000"],["2024-07-25T09:54:39.010000"],["2024-07-25T09:54:40.010000"],["2024-07-25T09:54:41.010000"],["2024-07-25T09:54:42.010000"],["2024-07-25T09:54:43.010000"],["2024-07-25T09:54:44.010000"],["2024-07-25T09:54:45.010000"],["2024-07-25T09:54:46.010000"],["2024-07-25T09:54:47.010000"],["2024-07-25T09:54:48.010000"],["2024-07-25T09:54:49.010000"],["2024-07-25T09:54:50.010000"],["2024-07-25T09:54:51.010000"],["2024-07-25T09:54:52.010000"],["2024-07-25T09:54:53.010000"],["2024-07-25T09:54:54.010000"],["2024-07-25T09:54:55.010000"],["2024-07-25T09:54:56.010000"],["2024-07-25T09:54:57.010000"],["2024-07-25T09:54:58.010000"],["2024-07-25T09:54:59.010000"],["2024-07-25T09:55:00.010000"],["2024-07-25T09:55:01.010000"],["2024-07-25T09:55:02.010000"],["2024-07-25T09:55:03.010000"],["2024-07-25T09:55:04.010000"],["2024-07-25T09:55:05.010000"],["2024-07-25T09:55:06.010000"],["2024-07-25T09:55:07.010000"],["2024-07-25T09:55:08.010000"],["2024-07-25T09:55:09.010000"],["2024-07-25T09:55:10.010000"],["2024-07-25T09:55:11.010000"],["2024-07-25T09:55:12.010000"],["2024-07-25T09:55:13.010000"],["2024-07-25T09:55:14.010000"],["2024-07-25T09:55:15.010000"],["2024-07-25T09:55:16.010000"],["2024-07-25T09:55:17.010000"],["2024-07-25T09:55:18.010000"],["2024-07-25T09:55:19.010000"],["2024-07-25T09:55:20.010000"],["2024-07-25T09:55:21.010000"],["2024-07-25T09:55:22.010000"],["2024-07-25T09:55:23.010000"],["2024-07-25T09:55:24.010000"],["2024-07-25T09:55:25.010000"],["2024-07-25T09:55:26.010000"],["2024-07-25T09:55:27.010000"],["2024-07-25T09:55:28.010000"],["2024-07-25T09:55:29.010000"],["2024-07-25T09:55:30.010000"],["2024-07-25T09:55:31.010000"],["2024-07-25T09:55:32.010000"],["2024-07-25T09:55:33.010000"],["2024-07-25T09:55:34.010000"],["2024-07-25T09:55:35.010000"],["2024-07-25T09:55:36.010000"],["2024-07-25T09:55:37.010000"],["2024-07-25T09:55:38.010000"],["2024-07-25T09:55:39.010000"],["2024-07-25T09:55:40.010000"],["2024-07-25T09:55:41.010000"],["2024-07-25T09:55:42.010000"],["2024-07-25T09:55:43.010000"],["2024-07-25T09:55:44.010000"],["2024-07-25T09:55:45.010000"],["2024-07-25T09:55:46.010000"],["2024-07-25T09:55:47.010000"],["2024-07-25T09:55:48.010000"],["2024-07-25T09:55:49.010000"],["2024-07-25T09:55:50.010000"],["2024-07-25T09:55:51.010000"],["2024-07-25T09:55:52.010000"],["2024-07-25T09:55:53.010000"],["2024-07-25T09:55:54.010000"],["2024-07-25T09:55:55.010000"],["2024-07-25T09:55:56.010000"],["2024-07-25T09:55:57.010000"],["2024-07-25T09:55:58.010000"],["2024-07-25T09:55:59.010000"],["2024-07-25T09:56:00.010000"],["2024-07-25T09:56:01.010000"],["2024-07-25T09:56:02.010000"],["2024-07-25T09:56:03.010000"],["2024-07-25T09:56:04.010000"],["2024-07-25T09:56:05.010000"],["2024-07-25T09:56:06.010000"],["2024-07-25T09:56:07.010000"],["2024-07-25T09:56:08.010000"],["2024-07-25T09:56:09.010000"],["2024-07-25T09:56:10.010000"],["2024-07-25T09:56:11.010000"],["2024-07-25T09:56:12.010000"],["2024-07-25T09:56:13.010000"],["2024-07-25T09:56:14.010000"],["2024-07-25T09:56:15.010000"],["2024-07-25T09:56:16.010000"],["2024-07-25T09:56:17.010000"],["2024-07-25T09:56:18.010000"],["2024-07-25T09:56:19.010000"],["2024-07-25T09:56:20.010000"],["2024-07-25T09:56:21.010000"],["2024-07-25T09:56:22.010000"],["2024-07-25T09:56:23.010000"],["2024-07-25T09:56:24.010000"],["2024-07-25T09:56:25.010000"],["2024-07-25T09:56:26.010000"],["2024-07-25T09:56:27.010000"],["2024-07-25T09:56:28.010000"],["2024-07-25T09:56:29.010000"],["2024-07-25T09:56:30.010000"],["2024-07-25T09:56:31.010000"],["2024-07-25T09:56:32.010000"],["2024-07-25T09:56:33.010000"],["2024-07-25T09:56:34.010000"],["2024-07-25T09:56:35.010000"],["2024-07-25T09:56:36.010000"],["2024-07-25T09:56:37.010000"],["2024-07-25T09:56:38.010000"],["2024-07-25T09:56:39.010000"],["2024-07-25T09:56:40.010000"],["2024-07-25T09:56:41.010000"],["2024-07-25T09:56:42.010000"],["2024-07-25T09:56:43.010000"],["2024-07-25T09:56:44.010000"],["2024-07-25T09:56:45.010000"],["2024-07-25T09:56:46.010000"],["2024-07-25T09:56:47.010000"],["2024-07-25T09:56:48.010000"],["2024-07-25T09:56:49.010000"],["2024-07-25T09:56:50.010000"],["2024-07-25T09:56:51.010000"],["2024-07-25T09:56:52.010000"],["2024-07-25T09:56:53.010000"],["2024-07-25T09:56:54.010000"],["2024-07-25T09:56:55.010000"],["2024-07-25T09:56:56.010000"],["2024-07-25T09:56:57.010000"],["2024-07-25T09:56:58.010000"],["2024-07-25T09:56:59.010000"],["2024-07-25T09:57:00.010000"],["2024-07-25T09:57:01.010000"],["2024-07-25T09:57:02.010000"],["2024-07-25T09:57:03.010000"],["2024-07-25T09:57:04.010000"],["2024-07-25T09:57:05.010000"],["2024-07-25T09:57:06.010000"],["2024-07-25T09:57:07.010000"],["2024-07-25T09:57:08.010000"],["2024-07-25T09:57:09.010000"],["2024-07-25T09:57:10.010000"],["2024-07-25T09:57:11.010000"],["2024-07-25T09:57:12.010000"],["2024-07-25T09:57:13.010000"],["2024-07-25T09:57:14.010000"],["2024-07-25T09:57:15.010000"],["2024-07-25T09:57:16.010000"],["2024-07-25T09:57:17.010000"],["2024-07-25T09:57:18.010000"],["2024-07-25T09:57:19.010000"],["2024-07-25T09:57:20.010000"],["2024-07-25T09:57:21.010000"],["2024-07-25T09:57:22.010000"],["2024-07-25T09:57:23.010000"],["2024-07-25T09:57:24.010000"],["2024-07-25T09:57:25.010000"],["2024-07-25T09:57:26.010000"],["2024-07-25T09:57:27.010000"],["2024-07-25T09:57:28.010000"],["2024-07-25T09:57:29.010000"],["2024-07-25T09:57:30.010000"],["2024-07-25T09:57:31.010000"],["2024-07-25T09:57:32.010000"],["2024-07-25T09:57:33.010000"],["2024-07-25T09:57:34.010000"],["2024-07-25T09:57:35.010000"],["2024-07-25T09:57:36.010000"],["2024-07-25T09:57:37.010000"],["2024-07-25T09:57:38.010000"],["2024-07-25T09:57:39.010000"],["2024-07-25T09:57:40.010000"],["2024-07-25T09:57:41.010000"],["2024-07-25T09:57:42.010000"],["2024-07-25T09:57:43.010000"],["2024-07-25T09:57:44.010000"],["2024-07-25T09:57:45.010000"],["2024-07-25T09:57:46.010000"],["2024-07-25T09:57:47.010000"],["2024-07-25T09:57:48.010000"],["2024-07-25T09:57:49.010000"],["2024-07-25T09:57:50.010000"],["2024-07-25T09:57:51.010000"],["2024-07-25T09:57:52.010000"],["2024-07-25T09:57:53.010000"],["2024-07-25T09:57:54.010000"],["2024-07-25T09:57:55.010000"],["2024-07-25T09:57:56.010000"],["2024-07-25T09:57:57.010000"],["2024-07-25T09:57:58.010000"],["2024-07-25T09:57:59.010000"],["2024-07-25T09:58:00.010000"],["2024-07-25T09:58:01.010000"],["2024-07-25T09:58:02.010000"],["2024-07-25T09:58:03.010000"],["2024-07-25T09:58:04.010000"],["2024-07-25T09:58:05.010000"],["2024-07-25T09:58:06.010000"],["2024-07-25T09:58:07.010000"],["2024-07-25T09:58:08.010000"],["2024-07-25T09:58:09.010000"],["2024-07-25T09:58:10.010000"],["2024-07-25T09:58:11.010000"],["2024-07-25T09:58:12.010000"],["2024-07-25T09:58:13.010000"],["2024-07-25T09:58:14.010000"],["2024-07-25T09:58:15.010000"],["2024-07-25T09:58:16.010000"],["2024-07-25T09:58:17.010000"],["2024-07-25T09:58:18.010000"],["2024-07-25T09:58:19.010000"],["2024-07-25T09:58:20.010000"],["2024-07-25T09:58:21.010000"],["2024-07-25T09:58:22.010000"],["2024-07-25T09:58:23.010000"],["2024-07-25T09:58:24.010000"],["2024-07-25T09:58:25.010000"],["2024-07-25T09:58:26.010000"],["2024-07-25T09:58:27.010000"],["2024-07-25T09:58:28.010000"],["2024-07-25T09:58:29.010000"],["2024-07-25T09:58:30.010000"],["2024-07-25T09:58:31.010000"],["2024-07-25T09:58:32.010000"],["2024-07-25T09:58:33.010000"],["2024-07-25T09:58:34.010000"],["2024-07-25T09:58:35.010000"],["2024-07-25T09:58:36.010000"],["2024-07-25T09:58:37.010000"],["2024-07-25T09:58:38.010000"],["2024-07-25T09:58:39.010000"],["2024-07-25T09:58:40.010000"],["2024-07-25T09:58:41.010000"],["2024-07-25T09:58:42.010000"],["2024-07-25T09:58:43.010000"],["2024-07-25T09:58:44.010000"],["2024-07-25T09:58:45.010000"],["2024-07-25T09:58:46.010000"],["2024-07-25T09:58:47.010000"],["2024-07-25T09:58:48.010000"],["2024-07-25T09:58:49.010000"],["2024-07-25T09:58:50.010000"],["2024-07-25T09:58:51.010000"],["2024-07-25T09:58:52.010000"],["2024-07-25T09:58:53.010000"],["2024-07-25T09:58:54.010000"],["2024-07-25T09:58:55.010000"],["2024-07-25T09:58:56.010000"],["2024-07-25T09:58:57.010000"],["2024-07-25T09:58:58.010000"],["2024-07-25T09:58:59.010000"],["2024-07-25T09:59:00.010000"],["2024-07-25T09:59:01.010000"],["2024-07-25T09:59:02.010000"],["2024-07-25T09:59:03.010000"],["2024-07-25T09:59:04.010000"],["2024-07-25T09:59:05.010000"],["2024-07-25T09:59:06.010000"],["2024-07-25T09:59:07.010000"],["2024-07-25T09:59:08.010000"],["2024-07-25T09:59:09.010000"],["2024-07-25T09:59:10.010000"],["2024-07-25T09:59:11.010000"],["2024-07-25T09:59:12.010000"],["2024-07-25T09:59:13.010000"],["2024-07-25T09:59:14.010000"],["2024-07-25T09:59:15.010000"],["2024-07-25T09:59:16.010000"],["2024-07-25T09:59:17.010000"],["2024-07-25T09:59:18.010000"],["2024-07-25T09:59:19.010000"],["2024-07-25T09:59:20.010000"],["2024-07-25T09:59:21.010000"],["2024-07-25T09:59:22.010000"],["2024-07-25T09:59:23.010000"],["2024-07-25T09:59:24.010000"],["2024-07-25T09:59:25.010000"],["2024-07-25T09:59:26.010000"],["2024-07-25T09:59:27.010000"],["2024-07-25T09:59:28.010000"],["2024-07-25T09:59:29.010000"],["2024-07-25T09:59:30.010000"],["2024-07-25T09:59:31.010000"],["2024-07-25T09:59:32.010000"],["2024-07-25T09:59:33.010000"],["2024-07-25T09:59:34.010000"],["2024-07-25T09:59:35.010000"],["2024-07-25T09:59:36.010000"],["2024-07-25T09:59:37.010000"],["2024-07-25T09:59:38.010000"],["2024-07-25T09:59:39.010000"],["2024-07-25T09:59:40.010000"],["2024-07-25T09:59:41.010000"],["2024-07-25T09:59:42.010000"],["2024-07-25T09:59:43.010000"],["2024-07-25T09:59:44.010000"],["2024-07-25T09:59:45.010000"],["2024-07-25T09:59:46.010000"],["2024-07-25T09:59:47.010000"],["2024-07-25T09:59:48.010000"],["2024-07-25T09:59:49.010000"],["2024-07-25T09:59:50.010000"],["2024-07-25T09:59:51.010000"],["2024-07-25T09:59:52.010000"],["2024-07-25T09:59:53.010000"],["2024-07-25T09:59:54.010000"],["2024-07-25T09:59:55.010000"],["2024-07-25T09:59:56.010000"],["2024-07-25T09:59:57.010000"],["2024-07-25T09:59:58.010000"],["2024-07-25T09:59:59.010000"],["2024-07-25T10:00:00.010000"],["2024-07-25T10:00:01.010000"],["2024-07-25T10:00:02.010000"],["2024-07-25T10:00:03.010000"],["2024-07-25T10:00:04.010000"],["2024-07-25T10:00:05.010000"],["2024-07-25T10:00:06.010000"],["2024-07-25T10:00:07.010000"],["2024-07-25T10:00:08.010000"],["2024-07-25T10:00:09.010000"],["2024-07-25T10:00:10.010000"],["2024-07-25T10:00:11.010000"],["2024-07-25T10:00:12.010000"],["2024-07-25T10:00:13.010000"],["2024-07-25T10:00:14.010000"],["2024-07-25T10:00:15.010000"],["2024-07-25T10:00:16.010000"],["2024-07-25T10:00:17.010000"],["2024-07-25T10:00:18.010000"],["2024-07-25T10:00:19.010000"],["2024-07-25T10:00:20.010000"],["2024-07-25T10:00:21.010000"],["2024-07-25T10:00:22.010000"],["2024-07-25T10:00:23.010000"],["2024-07-25T10:00:24.010000"],["2024-07-25T10:00:25.010000"],["2024-07-25T10:00:26.010000"],["2024-07-25T10:00:27.010000"],["2024-07-25T10:00:28.010000"],["2024-07-25T10:00:29.010000"],["2024-07-25T10:00:30.010000"],["2024-07-25T10:00:31.010000"],["2024-07-25T10:00:32.010000"],["2024-07-25T10:00:33.010000"],["2024-07-25T10:00:34.010000"],["2024-07-25T10:00:35.010000"],["2024-07-25T10:00:36.010000"],["2024-07-25T10:00:37.010000"],["2024-07-25T10:00:38.010000"],["2024-07-25T10:00:39.010000"],["2024-07-25T10:00:40.010000"],["2024-07-25T10:00:41.010000"],["2024-07-25T10:00:42.010000"],["2024-07-25T10:00:43.010000"],["2024-07-25T10:00:44.010000"],["2024-07-25T10:00:45.010000"],["2024-07-25T10:00:46.010000"],["2024-07-25T10:00:47.010000"],["2024-07-25T10:00:48.010000"],["2024-07-25T10:00:49.010000"],["2024-07-25T10:00:50.010000"],["2024-07-25T10:00:51.010000"],["2024-07-25T10:00:52.010000"],["2024-07-25T10:00:53.010000"],["2024-07-25T10:00:54.010000"],["2024-07-25T10:00:55.010000"],["2024-07-25T10:00:56.010000"],["2024-07-25T10:00:57.010000"],["2024-07-25T10:00:58.010000"],["2024-07-25T10:00:59.010000"],["2024-07-25T10:01:00.010000"],["2024-07-25T10:01:01.010000"],["2024-07-25T10:01:02.010000"],["2024-07-25T10:01:03.010000"],["2024-07-25T10:01:04.010000"],["2024-07-25T10:01:05.010000"],["2024-07-25T10:01:06.010000"],["2024-07-25T10:01:07.010000"],["2024-07-25T10:01:08.010000"],["2024-07-25T10:01:09.010000"],["2024-07-25T10:01:10.010000"],["2024-07-25T10:01:11.010000"],["2024-07-25T10:01:12.010000"],["2024-07-25T10:01:13.010000"],["2024-07-25T10:01:14.010000"],["2024-07-25T10:01:15.010000"],["2024-07-25T10:01:16.010000"],["2024-07-25T10:01:17.010000"],["2024-07-25T10:01:18.010000"],["2024-07-25T10:01:19.010000"],["2024-07-25T10:01:20.010000"],["2024-07-25T10:01:21.010000"],["2024-07-25T10:01:22.010000"],["2024-07-25T10:01:23.010000"],["2024-07-25T10:01:24.010000"],["2024-07-25T10:01:25.010000"],["2024-07-25T10:01:26.010000"],["2024-07-25T10:01:27.010000"],["2024-07-25T10:01:28.010000"],["2024-07-25T10:01:29.010000"],["2024-07-25T10:01:30.010000"],["2024-07-25T10:01:31.010000"],["2024-07-25T10:01:32.010000"],["2024-07-25T10:01:33.010000"],["2024-07-25T10:01:34.010000"],["2024-07-25T10:01:35.010000"],["2024-07-25T10:01:36.010000"],["2024-07-25T10:01:37.010000"],["2024-07-25T10:01:38.010000"],["2024-07-25T10:01:39.010000"],["2024-07-25T10:01:40.010000"],["2024-07-25T10:01:41.010000"],["2024-07-25T10:01:42.010000"],["2024-07-25T10:01:43.010000"],["2024-07-25T10:01:44.010000"],["2024-07-25T10:01:45.010000"],["2024-07-25T10:01:46.010000"],["2024-07-25T10:01:47.010000"],["2024-07-25T10:01:48.010000"],["2024-07-25T10:01:49.010000"],["2024-07-25T10:01:50.010000"],["2024-07-25T10:01:51.010000"],["2024-07-25T10:01:52.010000"],["2024-07-25T10:01:53.010000"],["2024-07-25T10:01:54.010000"],["2024-07-25T10:01:55.010000"],["2024-07-25T10:01:56.010000"],["2024-07-25T10:01:57.010000"],["2024-07-25T10:01:58.010000"],["2024-07-25T10:01:59.010000"],["2024-07-25T10:02:00.010000"],["2024-07-25T10:02:01.010000"],["2024-07-25T10:02:02.010000"],["2024-07-25T10:02:03.010000"],["2024-07-25T10:02:04.010000"],["2024-07-25T10:02:05.010000"],["2024-07-25T10:02:06.010000"],["2024-07-25T10:02:07.010000"],["2024-07-25T10:02:08.010000"],["2024-07-25T10:02:09.010000"],["2024-07-25T10:02:10.010000"],["2024-07-25T10:02:11.010000"],["2024-07-25T10:02:12.010000"],["2024-07-25T10:02:13.010000"],["2024-07-25T10:02:14.010000"],["2024-07-25T10:02:15.010000"],["2024-07-25T10:02:16.010000"],["2024-07-25T10:02:17.010000"],["2024-07-25T10:02:18.010000"],["2024-07-25T10:02:19.010000"],["2024-07-25T10:02:20.010000"],["2024-07-25T10:02:21.010000"],["2024-07-25T10:02:22.010000"],["2024-07-25T10:02:23.010000"],["2024-07-25T10:02:24.010000"],["2024-07-25T10:02:25.010000"],["2024-07-25T10:02:26.010000"],["2024-07-25T10:02:27.010000"],["2024-07-25T10:02:28.010000"],["2024-07-25T10:02:29.010000"],["2024-07-25T10:02:30.010000"],["2024-07-25T10:02:31.010000"],["2024-07-25T10:02:32.010000"],["2024-07-25T10:02:33.010000"],["2024-07-25T10:02:34.010000"],["2024-07-25T10:02:35.010000"],["2024-07-25T10:02:36.010000"],["2024-07-25T10:02:37.010000"],["2024-07-25T10:02:38.010000"],["2024-07-25T10:02:39.010000"],["2024-07-25T10:02:40.010000"],["2024-07-25T10:02:41.010000"],["2024-07-25T10:02:42.010000"],["2024-07-25T10:02:43.010000"],["2024-07-25T10:02:44.010000"],["2024-07-25T10:02:45.010000"],["2024-07-25T10:02:46.010000"],["2024-07-25T10:02:47.010000"],["2024-07-25T10:02:48.010000"],["2024-07-25T10:02:49.010000"],["2024-07-25T10:02:50.010000"],["2024-07-25T10:02:51.010000"],["2024-07-25T10:02:52.010000"],["2024-07-25T10:02:53.010000"],["2024-07-25T10:02:54.010000"],["2024-07-25T10:02:55.010000"],["2024-07-25T10:02:56.010000"],["2024-07-25T10:02:57.010000"],["2024-07-25T10:02:58.010000"],["2024-07-25T10:02:59.010000"],["2024-07-25T10:03:00.010000"],["2024-07-25T10:03:01.010000"],["2024-07-25T10:03:02.010000"],["2024-07-25T10:03:03.010000"],["2024-07-25T10:03:04.010000"],["2024-07-25T10:03:05.010000"],["2024-07-25T10:03:06.010000"],["2024-07-25T10:03:07.010000"],["2024-07-25T10:03:08.010000"],["2024-07-25T10:03:09.010000"],["2024-07-25T10:03:10.010000"],["2024-07-25T10:03:11.010000"],["2024-07-25T10:03:12.010000"],["2024-07-25T10:03:13.010000"],["2024-07-25T10:03:14.010000"],["2024-07-25T10:03:15.010000"],["2024-07-25T10:03:16.010000"],["2024-07-25T10:03:17.010000"],["2024-07-25T10:03:18.010000"],["2024-07-25T10:03:19.010000"],["2024-07-25T10:03:20.010000"],["2024-07-25T10:03:21.010000"],["2024-07-25T10:03:22.010000"],["2024-07-25T10:03:23.010000"],["2024-07-25T10:03:24.010000"],["2024-07-25T10:03:25.010000"],["2024-07-25T10:03:26.010000"],["2024-07-25T10:03:27.010000"],["2024-07-25T10:03:28.010000"],["2024-07-25T10:03:29.010000"],["2024-07-25T10:03:30.010000"],["2024-07-25T10:03:31.010000"],["2024-07-25T10:03:32.010000"],["2024-07-25T10:03:33.010000"],["2024-07-25T10:03:34.010000"],["2024-07-25T10:03:35.010000"],["2024-07-25T10:03:36.010000"],["2024-07-25T10:03:37.010000"],["2024-07-25T10:03:38.010000"],["2024-07-25T10:03:39.010000"],["2024-07-25T10:03:40.010000"],["2024-07-25T10:03:41.010000"],["2024-07-25T10:03:42.010000"],["2024-07-25T10:03:43.010000"],["2024-07-25T10:03:44.010000"],["2024-07-25T10:03:45.010000"],["2024-07-25T10:03:46.010000"],["2024-07-25T10:03:47.010000"],["2024-07-25T10:03:48.010000"],["2024-07-25T10:03:49.010000"],["2024-07-25T10:03:50.010000"],["2024-07-25T10:03:51.010000"],["2024-07-25T10:03:52.010000"],["2024-07-25T10:03:53.010000"],["2024-07-25T10:03:54.010000"],["2024-07-25T10:03:55.010000"],["2024-07-25T10:03:56.010000"],["2024-07-25T10:03:57.010000"],["2024-07-25T10:03:58.010000"],["2024-07-25T10:03:59.010000"],["2024-07-25T10:04:00.010000"],["2024-07-25T10:04:01.010000"],["2024-07-25T10:04:02.010000"],["2024-07-25T10:04:03.010000"],["2024-07-25T10:04:04.010000"],["2024-07-25T10:04:05.010000"],["2024-07-25T10:04:06.010000"],["2024-07-25T10:04:07.010000"],["2024-07-25T10:04:08.010000"],["2024-07-25T10:04:09.010000"],["2024-07-25T10:04:10.010000"],["2024-07-25T10:04:11.010000"],["2024-07-25T10:04:12.010000"],["2024-07-25T10:04:13.010000"],["2024-07-25T10:04:14.010000"],["2024-07-25T10:04:15.010000"],["2024-07-25T10:04:16.010000"],["2024-07-25T10:04:17.010000"],["2024-07-25T10:04:18.010000"],["2024-07-25T10:04:19.010000"],["2024-07-25T10:04:20.010000"],["2024-07-25T10:04:21.010000"],["2024-07-25T10:04:22.010000"],["2024-07-25T10:04:23.010000"],["2024-07-25T10:04:24.010000"],["2024-07-25T10:04:25.010000"],["2024-07-25T10:04:26.010000"],["2024-07-25T10:04:27.010000"],["2024-07-25T10:04:28.010000"],["2024-07-25T10:04:29.010000"],["2024-07-25T10:04:30.010000"],["2024-07-25T10:04:31.010000"],["2024-07-25T10:04:32.010000"],["2024-07-25T10:04:33.010000"],["2024-07-25T10:04:34.010000"],["2024-07-25T10:04:35.010000"],["2024-07-25T10:04:36.010000"],["2024-07-25T10:04:37.010000"],["2024-07-25T10:04:38.010000"],["2024-07-25T10:04:39.010000"],["2024-07-25T10:04:40.010000"],["2024-07-25T10:04:41.010000"],["2024-07-25T10:04:42.010000"],["2024-07-25T10:04:43.010000"],["2024-07-25T10:04:44.010000"],["2024-07-25T10:04:45.010000"],["2024-07-25T10:04:46.010000"],["2024-07-25T10:04:47.010000"],["2024-07-25T10:04:48.010000"],["2024-07-25T10:04:49.010000"],["2024-07-25T10:04:50.010000"],["2024-07-25T10:04:51.010000"],["2024-07-25T10:04:52.010000"],["2024-07-25T10:04:53.010000"],["2024-07-25T10:04:54.010000"],["2024-07-25T10:04:55.010000"],["2024-07-25T10:04:56.010000"],["2024-07-25T10:04:57.010000"],["2024-07-25T10:04:58.010000"],["2024-07-25T10:04:59.010000"],["2024-07-25T10:05:00.010000"],["2024-07-25T10:05:01.010000"],["2024-07-25T10:05:02.010000"],["2024-07-25T10:05:03.010000"],["2024-07-25T10:05:04.010000"],["2024-07-25T10:05:05.010000"],["2024-07-25T10:05:06.010000"],["2024-07-25T10:05:07.010000"],["2024-07-25T10:05:08.010000"],["2024-07-25T10:05:09.010000"],["2024-07-25T10:05:10.010000"],["2024-07-25T10:05:11.010000"],["2024-07-25T10:05:12.010000"],["2024-07-25T10:05:13.010000"],["2024-07-25T10:05:14.010000"],["2024-07-25T10:05:15.010000"],["2024-07-25T10:05:16.010000"],["2024-07-25T10:05:17.010000"],["2024-07-25T10:05:18.010000"],["2024-07-25T10:05:19.010000"],["2024-07-25T10:05:20.010000"],["2024-07-25T10:05:21.010000"],["2024-07-25T10:05:22.010000"],["2024-07-25T10:05:23.010000"],["2024-07-25T10:05:24.010000"],["2024-07-25T10:05:25.010000"],["2024-07-25T10:05:26.010000"],["2024-07-25T10:05:27.010000"],["2024-07-25T10:05:28.010000"],["2024-07-25T10:05:29.010000"],["2024-07-25T10:05:30.010000"],["2024-07-25T10:05:31.010000"],["2024-07-25T10:05:32.010000"],["2024-07-25T10:05:33.010000"],["2024-07-25T10:05:34.010000"],["2024-07-25T10:05:35.010000"],["2024-07-25T10:05:36.010000"],["2024-07-25T10:05:37.010000"],["2024-07-25T10:05:38.010000"],["2024-07-25T10:05:39.010000"],["2024-07-25T10:05:40.010000"],["2024-07-25T10:05:41.010000"],["2024-07-25T10:05:42.010000"],["2024-07-25T10:05:43.010000"],["2024-07-25T10:05:44.010000"],["2024-07-25T10:05:45.010000"],["2024-07-25T10:05:46.010000"],["2024-07-25T10:05:47.010000"],["2024-07-25T10:05:48.010000"],["2024-07-25T10:05:49.010000"],["2024-07-25T10:05:50.010000"],["2024-07-25T10:05:51.010000"],["2024-07-25T10:05:52.010000"],["2024-07-25T10:05:53.010000"],["2024-07-25T10:05:54.010000"],["2024-07-25T10:05:55.010000"],["2024-07-25T10:05:56.010000"],["2024-07-25T10:05:57.010000"],["2024-07-25T10:05:58.010000"],["2024-07-25T10:05:59.010000"],["2024-07-25T10:06:00.010000"],["2024-07-25T10:06:01.010000"],["2024-07-25T10:06:02.010000"],["2024-07-25T10:06:03.010000"],["2024-07-25T10:06:04.010000"],["2024-07-25T10:06:05.010000"],["2024-07-25T10:06:06.010000"],["2024-07-25T10:06:07.010000"],["2024-07-25T10:06:08.010000"],["2024-07-25T10:06:09.010000"],["2024-07-25T10:06:10.010000"],["2024-07-25T10:06:11.010000"],["2024-07-25T10:06:12.010000"],["2024-07-25T10:06:13.010000"],["2024-07-25T10:06:14.010000"],["2024-07-25T10:06:15.010000"],["2024-07-25T10:06:16.010000"],["2024-07-25T10:06:17.010000"],["2024-07-25T10:06:18.010000"],["2024-07-25T10:06:19.010000"],["2024-07-25T10:06:20.010000"],["2024-07-25T10:06:21.010000"],["2024-07-25T10:06:22.010000"],["2024-07-25T10:06:23.010000"],["2024-07-25T10:06:24.010000"],["2024-07-25T10:06:25.010000"],["2024-07-25T10:06:26.010000"],["2024-07-25T10:06:27.010000"],["2024-07-25T10:06:28.010000"],["2024-07-25T10:06:29.010000"],["2024-07-25T10:06:30.010000"],["2024-07-25T10:06:31.010000"],["2024-07-25T10:06:32.010000"],["2024-07-25T10:06:33.010000"],["2024-07-25T10:06:34.010000"],["2024-07-25T10:06:35.010000"],["2024-07-25T10:06:36.010000"],["2024-07-25T10:06:37.010000"],["2024-07-25T10:06:38.010000"],["2024-07-25T10:06:39.010000"],["2024-07-25T10:06:40.010000"],["2024-07-25T10:06:41.010000"],["2024-07-25T10:06:42.010000"],["2024-07-25T10:06:43.010000"],["2024-07-25T10:06:44.010000"],["2024-07-25T10:06:45.010000"],["2024-07-25T10:06:46.010000"],["2024-07-25T10:06:47.010000"],["2024-07-25T10:06:48.010000"],["2024-07-25T10:06:49.010000"],["2024-07-25T10:06:50.010000"],["2024-07-25T10:06:51.010000"],["2024-07-25T10:06:52.010000"],["2024-07-25T10:06:53.010000"],["2024-07-25T10:06:54.010000"],["2024-07-25T10:06:55.010000"],["2024-07-25T10:06:56.010000"],["2024-07-25T10:06:57.010000"],["2024-07-25T10:06:58.010000"],["2024-07-25T10:06:59.010000"],["2024-07-25T10:07:00.010000"],["2024-07-25T10:07:01.010000"],["2024-07-25T10:07:02.010000"],["2024-07-25T10:07:03.010000"],["2024-07-25T10:07:04.010000"],["2024-07-25T10:07:05.010000"],["2024-07-25T10:07:06.010000"],["2024-07-25T10:07:07.010000"],["2024-07-25T10:07:08.010000"],["2024-07-25T10:07:09.010000"],["2024-07-25T10:07:10.010000"],["2024-07-25T10:07:11.010000"],["2024-07-25T10:07:12.010000"],["2024-07-25T10:07:13.010000"],["2024-07-25T10:07:14.010000"],["2024-07-25T10:07:15.010000"],["2024-07-25T10:07:16.010000"],["2024-07-25T10:07:17.010000"],["2024-07-25T10:07:18.010000"],["2024-07-25T10:07:19.010000"],["2024-07-25T10:07:20.010000"],["2024-07-25T10:07:21.010000"],["2024-07-25T10:07:22.010000"],["2024-07-25T10:07:23.010000"],["2024-07-25T10:07:24.010000"],["2024-07-25T10:07:25.010000"],["2024-07-25T10:07:26.010000"],["2024-07-25T10:07:27.010000"],["2024-07-25T10:07:28.010000"],["2024-07-25T10:07:29.010000"],["2024-07-25T10:07:30.010000"],["2024-07-25T10:07:31.010000"],["2024-07-25T10:07:32.010000"],["2024-07-25T10:07:33.010000"],["2024-07-25T10:07:34.010000"],["2024-07-25T10:07:35.010000"],["2024-07-25T10:07:36.010000"],["2024-07-25T10:07:37.010000"],["2024-07-25T10:07:38.010000"],["2024-07-25T10:07:39.010000"],["2024-07-25T10:07:40.010000"],["2024-07-25T10:07:41.010000"],["2024-07-25T10:07:42.010000"],["2024-07-25T10:07:43.010000"],["2024-07-25T10:07:44.010000"],["2024-07-25T10:07:45.010000"],["2024-07-25T10:07:46.010000"],["2024-07-25T10:07:47.010000"],["2024-07-25T10:07:48.010000"],["2024-07-25T10:07:49.010000"],["2024-07-25T10:07:50.010000"],["2024-07-25T10:07:51.010000"],["2024-07-25T10:07:52.010000"],["2024-07-25T10:07:53.010000"],["2024-07-25T10:07:54.010000"],["2024-07-25T10:07:55.010000"],["2024-07-25T10:07:56.010000"],["2024-07-25T10:07:57.010000"],["2024-07-25T10:07:58.010000"],["2024-07-25T10:07:59.010000"],["2024-07-25T10:08:00.010000"],["2024-07-25T10:08:01.010000"],["2024-07-25T10:08:02.010000"],["2024-07-25T10:08:03.010000"],["2024-07-25T10:08:04.010000"],["2024-07-25T10:08:05.010000"],["2024-07-25T10:08:06.010000"],["2024-07-25T10:08:07.010000"],["2024-07-25T10:08:08.010000"],["2024-07-25T10:08:09.010000"],["2024-07-25T10:08:10.010000"],["2024-07-25T10:08:11.010000"],["2024-07-25T10:08:12.010000"],["2024-07-25T10:08:13.010000"],["2024-07-25T10:08:14.010000"],["2024-07-25T10:08:15.010000"],["2024-07-25T10:08:16.010000"],["2024-07-25T10:08:17.010000"],["2024-07-25T10:08:18.010000"],["2024-07-25T10:08:19.010000"],["2024-07-25T10:08:20.010000"],["2024-07-25T10:08:21.010000"],["2024-07-25T10:08:22.010000"],["2024-07-25T10:08:23.010000"],["2024-07-25T10:08:24.010000"],["2024-07-25T10:08:25.010000"],["2024-07-25T10:08:26.010000"],["2024-07-25T10:08:27.010000"],["2024-07-25T10:08:28.010000"],["2024-07-25T10:08:29.010000"],["2024-07-25T10:08:30.010000"],["2024-07-25T10:08:31.010000"],["2024-07-25T10:08:32.010000"],["2024-07-25T10:08:33.010000"],["2024-07-25T10:08:34.010000"],["2024-07-25T10:08:35.010000"],["2024-07-25T10:08:36.010000"],["2024-07-25T10:08:37.010000"],["2024-07-25T10:08:38.010000"],["2024-07-25T10:08:39.010000"],["2024-07-25T10:08:40.010000"],["2024-07-25T10:08:41.010000"],["2024-07-25T10:08:42.010000"],["2024-07-25T10:08:43.010000"],["2024-07-25T10:08:44.010000"],["2024-07-25T10:08:45.010000"],["2024-07-25T10:08:46.010000"],["2024-07-25T10:08:47.010000"],["2024-07-25T10:08:48.010000"],["2024-07-25T10:08:49.010000"],["2024-07-25T10:08:50.010000"],["2024-07-25T10:08:51.010000"],["2024-07-25T10:08:52.010000"],["2024-07-25T10:08:53.010000"],["2024-07-25T10:08:54.010000"],["2024-07-25T10:08:55.010000"],["2024-07-25T10:08:56.010000"],["2024-07-25T10:08:57.010000"],["2024-07-25T10:08:58.010000"],["2024-07-25T10:08:59.010000"],["2024-07-25T10:09:00.010000"],["2024-07-25T10:09:01.010000"],["2024-07-25T10:09:02.010000"],["2024-07-25T10:09:03.010000"],["2024-07-25T10:09:04.010000"],["2024-07-25T10:09:05.010000"],["2024-07-25T10:09:06.010000"],["2024-07-25T10:09:07.010000"],["2024-07-25T10:09:08.010000"],["2024-07-25T10:09:09.010000"],["2024-07-25T10:09:10.010000"],["2024-07-25T10:09:11.010000"],["2024-07-25T10:09:12.010000"],["2024-07-25T10:09:13.010000"],["2024-07-25T10:09:14.010000"],["2024-07-25T10:09:15.010000"],["2024-07-25T10:09:16.010000"],["2024-07-25T10:09:17.010000"],["2024-07-25T10:09:18.010000"],["2024-07-25T10:09:19.010000"],["2024-07-25T10:09:20.010000"],["2024-07-25T10:09:21.010000"],["2024-07-25T10:09:22.010000"],["2024-07-25T10:09:23.010000"],["2024-07-25T10:09:24.010000"],["2024-07-25T10:09:25.010000"],["2024-07-25T10:09:26.010000"],["2024-07-25T10:09:27.010000"],["2024-07-25T10:09:28.010000"],["2024-07-25T10:09:29.010000"],["2024-07-25T10:09:30.010000"],["2024-07-25T10:09:31.010000"],["2024-07-25T10:09:32.010000"],["2024-07-25T10:09:33.010000"],["2024-07-25T10:09:34.010000"],["2024-07-25T10:09:35.010000"],["2024-07-25T10:09:36.010000"],["2024-07-25T10:09:37.010000"],["2024-07-25T10:09:38.010000"],["2024-07-25T10:09:39.010000"],["2024-07-25T10:09:40.010000"],["2024-07-25T10:09:41.010000"],["2024-07-25T10:09:42.010000"],["2024-07-25T10:09:43.010000"],["2024-07-25T10:09:44.010000"],["2024-07-25T10:09:45.010000"],["2024-07-25T10:09:46.010000"],["2024-07-25T10:09:47.010000"],["2024-07-25T10:09:48.010000"],["2024-07-25T10:09:49.010000"],["2024-07-25T10:09:50.010000"],["2024-07-25T10:09:51.010000"],["2024-07-25T10:09:52.010000"],["2024-07-25T10:09:53.010000"],["2024-07-25T10:09:54.010000"],["2024-07-25T10:09:55.010000"],["2024-07-25T10:09:56.010000"],["2024-07-25T10:09:57.010000"],["2024-07-25T10:09:58.010000"],["2024-07-25T10:09:59.010000"],["2024-07-25T10:10:00.010000"],["2024-07-25T10:10:01.010000"],["2024-07-25T10:10:02.010000"],["2024-07-25T10:10:03.010000"],["2024-07-25T10:10:04.010000"],["2024-07-25T10:10:05.010000"],["2024-07-25T10:10:06.010000"],["2024-07-25T10:10:07.010000"],["2024-07-25T10:10:08.010000"],["2024-07-25T10:10:09.010000"],["2024-07-25T10:10:10.010000"],["2024-07-25T10:10:11.010000"],["2024-07-25T10:10:12.010000"],["2024-07-25T10:10:13.010000"],["2024-07-25T10:10:14.010000"],["2024-07-25T10:10:15.010000"],["2024-07-25T10:10:16.010000"],["2024-07-25T10:10:17.010000"],["2024-07-25T10:10:18.010000"],["2024-07-25T10:10:19.010000"],["2024-07-25T10:10:20.010000"],["2024-07-25T10:10:21.010000"],["2024-07-25T10:10:22.010000"],["2024-07-25T10:10:23.010000"],["2024-07-25T10:10:24.010000"],["2024-07-25T10:10:25.010000"],["2024-07-25T10:10:26.010000"],["2024-07-25T10:10:27.010000"],["2024-07-25T10:10:28.010000"],["2024-07-25T10:10:29.010000"],["2024-07-25T10:10:30.010000"],["2024-07-25T10:10:31.010000"],["2024-07-25T10:10:32.010000"],["2024-07-25T10:10:33.010000"],["2024-07-25T10:10:34.010000"],["2024-07-25T10:10:35.010000"],["2024-07-25T10:10:36.010000"],["2024-07-25T10:10:37.010000"],["2024-07-25T10:10:38.010000"],["2024-07-25T10:10:39.010000"],["2024-07-25T10:10:40.010000"],["2024-07-25T10:10:41.010000"],["2024-07-25T10:10:42.010000"],["2024-07-25T10:10:43.010000"],["2024-07-25T10:10:44.010000"],["2024-07-25T10:10:45.010000"],["2024-07-25T10:10:46.010000"],["2024-07-25T10:10:47.010000"],["2024-07-25T10:10:48.010000"],["2024-07-25T10:10:49.010000"],["2024-07-25T10:10:50.010000"],["2024-07-25T10:10:51.010000"],["2024-07-25T10:10:52.010000"],["2024-07-25T10:10:53.010000"],["2024-07-25T10:10:54.010000"],["2024-07-25T10:10:55.010000"],["2024-07-25T10:10:56.010000"],["2024-07-25T10:10:57.010000"],["2024-07-25T10:10:58.010000"],["2024-07-25T10:10:59.010000"],["2024-07-25T10:11:00.010000"],["2024-07-25T10:11:01.010000"],["2024-07-25T10:11:02.010000"],["2024-07-25T10:11:03.010000"],["2024-07-25T10:11:04.010000"],["2024-07-25T10:11:05.010000"],["2024-07-25T10:11:06.010000"],["2024-07-25T10:11:07.010000"],["2024-07-25T10:11:08.010000"],["2024-07-25T10:11:09.010000"],["2024-07-25T10:11:10.010000"],["2024-07-25T10:11:11.010000"],["2024-07-25T10:11:12.010000"],["2024-07-25T10:11:13.010000"],["2024-07-25T10:11:14.010000"],["2024-07-25T10:11:15.010000"],["2024-07-25T10:11:16.010000"],["2024-07-25T10:11:17.010000"],["2024-07-25T10:11:18.010000"],["2024-07-25T10:11:19.010000"],["2024-07-25T10:11:20.010000"],["2024-07-25T10:11:21.010000"],["2024-07-25T10:11:22.010000"],["2024-07-25T10:11:23.010000"],["2024-07-25T10:11:24.010000"],["2024-07-25T10:11:25.010000"],["2024-07-25T10:11:26.010000"],["2024-07-25T10:11:27.010000"],["2024-07-25T10:11:28.010000"],["2024-07-25T10:11:29.010000"],["2024-07-25T10:11:30.010000"],["2024-07-25T10:11:31.010000"],["2024-07-25T10:11:32.010000"],["2024-07-25T10:11:33.010000"],["2024-07-25T10:11:34.010000"],["2024-07-25T10:11:35.010000"],["2024-07-25T10:11:36.010000"],["2024-07-25T10:11:37.010000"],["2024-07-25T10:11:38.010000"],["2024-07-25T10:11:39.010000"],["2024-07-25T10:11:40.010000"],["2024-07-25T10:11:41.010000"],["2024-07-25T10:11:42.010000"],["2024-07-25T10:11:43.010000"],["2024-07-25T10:11:44.010000"],["2024-07-25T10:11:45.010000"],["2024-07-25T10:11:46.010000"],["2024-07-25T10:11:47.010000"],["2024-07-25T10:11:48.010000"],["2024-07-25T10:11:49.010000"],["2024-07-25T10:11:50.010000"],["2024-07-25T10:11:51.010000"],["2024-07-25T10:11:52.010000"],["2024-07-25T10:11:53.010000"],["2024-07-25T10:11:54.010000"],["2024-07-25T10:11:55.010000"],["2024-07-25T10:11:56.010000"],["2024-07-25T10:11:57.010000"],["2024-07-25T10:11:58.010000"],["2024-07-25T10:11:59.010000"],["2024-07-25T10:12:00.010000"],["2024-07-25T10:12:01.010000"],["2024-07-25T10:12:02.010000"],["2024-07-25T10:12:03.010000"],["2024-07-25T10:12:04.010000"],["2024-07-25T10:12:05.010000"],["2024-07-25T10:12:06.010000"],["2024-07-25T10:12:07.010000"],["2024-07-25T10:12:08.010000"],["2024-07-25T10:12:09.010000"],["2024-07-25T10:12:10.010000"],["2024-07-25T10:12:11.010000"],["2024-07-25T10:12:12.010000"],["2024-07-25T10:12:13.010000"],["2024-07-25T10:12:14.010000"],["2024-07-25T10:12:15.010000"],["2024-07-25T10:12:16.010000"],["2024-07-25T10:12:17.010000"],["2024-07-25T10:12:18.010000"],["2024-07-25T10:12:19.010000"],["2024-07-25T10:12:20.010000"],["2024-07-25T10:12:21.010000"],["2024-07-25T10:12:22.010000"],["2024-07-25T10:12:23.010000"],["2024-07-25T10:12:24.010000"],["2024-07-25T10:12:25.010000"],["2024-07-25T10:12:26.010000"],["2024-07-25T10:12:27.010000"],["2024-07-25T10:12:28.010000"],["2024-07-25T10:12:29.010000"],["2024-07-25T10:12:30.010000"],["2024-07-25T10:12:31.010000"],["2024-07-25T10:12:32.010000"],["2024-07-25T10:12:33.010000"],["2024-07-25T10:12:34.010000"],["2024-07-25T10:12:35.010000"],["2024-07-25T10:12:36.010000"],["2024-07-25T10:12:37.010000"],["2024-07-25T10:12:38.010000"],["2024-07-25T10:12:39.010000"],["2024-07-25T10:12:40.010000"],["2024-07-25T10:12:41.010000"],["2024-07-25T10:12:42.010000"],["2024-07-25T10:12:43.010000"],["2024-07-25T10:12:44.010000"],["2024-07-25T10:12:45.010000"],["2024-07-25T10:12:46.010000"],["2024-07-25T10:12:47.010000"],["2024-07-25T10:12:48.010000"],["2024-07-25T10:12:49.010000"],["2024-07-25T10:12:50.010000"],["2024-07-25T10:12:51.010000"],["2024-07-25T10:12:52.010000"],["2024-07-25T10:12:53.010000"],["2024-07-25T10:12:54.010000"],["2024-07-25T10:12:55.010000"],["2024-07-25T10:12:56.010000"],["2024-07-25T10:12:57.010000"],["2024-07-25T10:12:58.010000"],["2024-07-25T10:12:59.010000"],["2024-07-25T10:13:00.010000"],["2024-07-25T10:13:01.010000"],["2024-07-25T10:13:02.010000"],["2024-07-25T10:13:03.010000"],["2024-07-25T10:13:04.010000"],["2024-07-25T10:13:05.010000"],["2024-07-25T10:13:06.010000"],["2024-07-25T10:13:07.010000"],["2024-07-25T10:13:08.010000"],["2024-07-25T10:13:09.010000"],["2024-07-25T10:13:10.010000"],["2024-07-25T10:13:11.010000"],["2024-07-25T10:13:12.010000"],["2024-07-25T10:13:13.010000"],["2024-07-25T10:13:14.010000"],["2024-07-25T10:13:15.010000"],["2024-07-25T10:13:16.010000"],["2024-07-25T10:13:17.010000"],["2024-07-25T10:13:18.010000"],["2024-07-25T10:13:19.010000"],["2024-07-25T10:13:20.010000"],["2024-07-25T10:13:21.010000"],["2024-07-25T10:13:22.010000"],["2024-07-25T10:13:23.010000"],["2024-07-25T10:13:24.010000"],["2024-07-25T10:13:25.010000"],["2024-07-25T10:13:26.010000"],["2024-07-25T10:13:27.010000"],["2024-07-25T10:13:28.010000"],["2024-07-25T10:13:29.010000"],["2024-07-25T10:13:30.010000"],["2024-07-25T10:13:31.010000"],["2024-07-25T10:13:32.010000"],["2024-07-25T10:13:33.010000"],["2024-07-25T10:13:34.010000"],["2024-07-25T10:13:35.010000"],["2024-07-25T10:13:36.010000"],["2024-07-25T10:13:37.010000"],["2024-07-25T10:13:38.010000"],["2024-07-25T10:13:39.010000"],["2024-07-25T10:13:40.010000"],["2024-07-25T10:13:41.010000"],["2024-07-25T10:13:42.010000"],["2024-07-25T10:13:43.010000"],["2024-07-25T10:13:44.010000"],["2024-07-25T10:13:45.010000"],["2024-07-25T10:13:46.010000"],["2024-07-25T10:13:47.010000"],["2024-07-25T10:13:48.010000"],["2024-07-25T10:13:49.010000"],["2024-07-25T10:13:50.010000"],["2024-07-25T10:13:51.010000"],["2024-07-25T10:13:52.010000"],["2024-07-25T10:13:53.010000"],["2024-07-25T10:13:54.010000"],["2024-07-25T10:13:55.010000"],["2024-07-25T10:13:56.010000"],["2024-07-25T10:13:57.010000"],["2024-07-25T10:13:58.010000"],["2024-07-25T10:13:59.010000"],["2024-07-25T10:14:00.010000"],["2024-07-25T10:14:01.010000"],["2024-07-25T10:14:02.010000"],["2024-07-25T10:14:03.010000"],["2024-07-25T10:14:04.010000"],["2024-07-25T10:14:05.010000"],["2024-07-25T10:14:06.010000"],["2024-07-25T10:14:07.010000"],["2024-07-25T10:14:08.010000"],["2024-07-25T10:14:09.010000"],["2024-07-25T10:14:10.010000"],["2024-07-25T10:14:11.010000"],["2024-07-25T10:14:12.010000"],["2024-07-25T10:14:13.010000"],["2024-07-25T10:14:14.010000"],["2024-07-25T10:14:15.010000"],["2024-07-25T10:14:16.010000"],["2024-07-25T10:14:17.010000"],["2024-07-25T10:14:18.010000"],["2024-07-25T10:14:19.010000"],["2024-07-25T10:14:20.010000"],["2024-07-25T10:14:21.010000"],["2024-07-25T10:14:22.010000"],["2024-07-25T10:14:23.010000"],["2024-07-25T10:14:24.010000"],["2024-07-25T10:14:25.010000"],["2024-07-25T10:14:26.010000"],["2024-07-25T10:14:27.010000"],["2024-07-25T10:14:28.010000"],["2024-07-25T10:14:29.010000"],["2024-07-25T10:14:30.010000"],["2024-07-25T10:14:31.010000"],["2024-07-25T10:14:32.010000"],["2024-07-25T10:14:33.010000"],["2024-07-25T10:14:34.010000"],["2024-07-25T10:14:35.010000"],["2024-07-25T10:14:36.010000"],["2024-07-25T10:14:37.010000"],["2024-07-25T10:14:38.010000"],["2024-07-25T10:14:39.010000"],["2024-07-25T10:14:40.010000"],["2024-07-25T10:14:41.010000"],["2024-07-25T10:14:42.010000"],["2024-07-25T10:14:43.010000"],["2024-07-25T10:14:44.010000"],["2024-07-25T10:14:45.010000"],["2024-07-25T10:14:46.010000"],["2024-07-25T10:14:47.010000"],["2024-07-25T10:14:48.010000"],["2024-07-25T10:14:49.010000"],["2024-07-25T10:14:50.010000"],["2024-07-25T10:14:51.010000"],["2024-07-25T10:14:52.010000"],["2024-07-25T10:14:53.010000"],["2024-07-25T10:14:54.010000"],["2024-07-25T10:14:55.010000"],["2024-07-25T10:14:56.010000"],["2024-07-25T10:14:57.010000"],["2024-07-25T10:14:58.010000"],["2024-07-25T10:14:59.010000"],["2024-07-25T10:15:00.010000"],["2024-07-25T10:15:01.010000"],["2024-07-25T10:15:02.010000"],["2024-07-25T10:15:03.010000"],["2024-07-25T10:15:04.010000"],["2024-07-25T10:15:05.010000"],["2024-07-25T10:15:06.010000"],["2024-07-25T10:15:07.010000"],["2024-07-25T10:15:08.010000"],["2024-07-25T10:15:09.010000"],["2024-07-25T10:15:10.010000"],["2024-07-25T10:15:11.010000"],["2024-07-25T10:15:12.010000"],["2024-07-25T10:15:13.010000"],["2024-07-25T10:15:14.010000"],["2024-07-25T10:15:15.010000"],["2024-07-25T10:15:16.010000"],["2024-07-25T10:15:17.010000"],["2024-07-25T10:15:18.010000"],["2024-07-25T10:15:19.010000"],["2024-07-25T10:15:20.010000"],["2024-07-25T10:15:21.010000"],["2024-07-25T10:15:22.010000"],["2024-07-25T10:15:23.010000"],["2024-07-25T10:15:24.010000"],["2024-07-25T10:15:25.010000"],["2024-07-25T10:15:26.010000"],["2024-07-25T10:15:27.010000"],["2024-07-25T10:15:28.010000"],["2024-07-25T10:15:29.010000"],["2024-07-25T10:15:30.010000"],["2024-07-25T10:15:31.010000"],["2024-07-25T10:15:32.010000"],["2024-07-25T10:15:33.010000"],["2024-07-25T10:15:34.010000"],["2024-07-25T10:15:35.010000"],["2024-07-25T10:15:36.010000"],["2024-07-25T10:15:37.010000"],["2024-07-25T10:15:38.010000"],["2024-07-25T10:15:39.010000"],["2024-07-25T10:15:40.010000"],["2024-07-25T10:15:41.010000"],["2024-07-25T10:15:42.010000"],["2024-07-25T10:15:43.010000"],["2024-07-25T10:15:44.010000"],["2024-07-25T10:15:45.010000"],["2024-07-25T10:15:46.010000"],["2024-07-25T10:15:47.010000"],["2024-07-25T10:15:48.010000"],["2024-07-25T10:15:49.010000"],["2024-07-25T10:15:50.010000"],["2024-07-25T10:15:51.010000"],["2024-07-25T10:15:52.010000"],["2024-07-25T10:15:53.010000"],["2024-07-25T10:15:54.010000"],["2024-07-25T10:15:55.010000"],["2024-07-25T10:15:56.010000"],["2024-07-25T10:15:57.010000"],["2024-07-25T10:15:58.010000"],["2024-07-25T10:15:59.010000"],["2024-07-25T10:16:00.010000"],["2024-07-25T10:16:01.010000"],["2024-07-25T10:16:02.010000"],["2024-07-25T10:16:03.010000"],["2024-07-25T10:16:04.010000"],["2024-07-25T10:16:05.010000"],["2024-07-25T10:16:06.010000"],["2024-07-25T10:16:07.010000"],["2024-07-25T10:16:08.010000"],["2024-07-25T10:16:09.010000"],["2024-07-25T10:16:10.010000"],["2024-07-25T10:16:11.010000"],["2024-07-25T10:16:12.010000"],["2024-07-25T10:16:13.010000"],["2024-07-25T10:16:14.010000"],["2024-07-25T10:16:15.010000"],["2024-07-25T10:16:16.010000"],["2024-07-25T10:16:17.010000"],["2024-07-25T10:16:18.010000"],["2024-07-25T10:16:19.010000"],["2024-07-25T10:16:20.010000"],["2024-07-25T10:16:21.010000"],["2024-07-25T10:16:22.010000"],["2024-07-25T10:16:23.010000"],["2024-07-25T10:16:24.010000"],["2024-07-25T10:16:25.010000"],["2024-07-25T10:16:26.010000"],["2024-07-25T10:16:27.010000"],["2024-07-25T10:16:28.010000"],["2024-07-25T10:16:29.010000"],["2024-07-25T10:16:30.010000"],["2024-07-25T10:16:31.010000"],["2024-07-25T10:16:32.010000"],["2024-07-25T10:16:33.010000"],["2024-07-25T10:16:34.010000"],["2024-07-25T10:16:35.010000"],["2024-07-25T10:16:36.010000"],["2024-07-25T10:16:37.010000"],["2024-07-25T10:16:38.010000"],["2024-07-25T10:16:39.010000"],["2024-07-25T10:16:40.010000"],["2024-07-25T10:16:41.010000"],["2024-07-25T10:16:42.010000"],["2024-07-25T10:16:43.010000"],["2024-07-25T10:16:44.010000"],["2024-07-25T10:16:45.010000"],["2024-07-25T10:16:46.010000"],["2024-07-25T10:16:47.010000"],["2024-07-25T10:16:48.010000"],["2024-07-25T10:16:49.010000"],["2024-07-25T10:16:50.010000"],["2024-07-25T10:16:51.010000"],["2024-07-25T10:16:52.010000"],["2024-07-25T10:16:53.010000"],["2024-07-25T10:16:54.010000"],["2024-07-25T10:16:55.010000"],["2024-07-25T10:16:56.010000"],["2024-07-25T10:16:57.010000"],["2024-07-25T10:16:58.010000"],["2024-07-25T10:16:59.010000"],["2024-07-25T10:17:00.010000"],["2024-07-25T10:17:01.010000"],["2024-07-25T10:17:02.010000"],["2024-07-25T10:17:03.010000"],["2024-07-25T10:17:04.010000"],["2024-07-25T10:17:05.010000"],["2024-07-25T10:17:06.010000"],["2024-07-25T10:17:07.010000"],["2024-07-25T10:17:08.010000"],["2024-07-25T10:17:09.010000"],["2024-07-25T10:17:10.010000"],["2024-07-25T10:17:11.010000"],["2024-07-25T10:17:12.010000"],["2024-07-25T10:17:13.010000"],["2024-07-25T10:17:14.010000"],["2024-07-25T10:17:15.010000"],["2024-07-25T10:17:16.010000"],["2024-07-25T10:17:17.010000"],["2024-07-25T10:17:18.010000"],["2024-07-25T10:17:19.010000"],["2024-07-25T10:17:20.010000"],["2024-07-25T10:17:21.010000"],["2024-07-25T10:17:22.010000"],["2024-07-25T10:17:23.010000"],["2024-07-25T10:17:24.010000"],["2024-07-25T10:17:25.010000"],["2024-07-25T10:17:26.010000"],["2024-07-25T10:17:27.010000"],["2024-07-25T10:17:28.010000"],["2024-07-25T10:17:29.010000"],["2024-07-25T10:17:30.010000"],["2024-07-25T10:17:31.010000"],["2024-07-25T10:17:32.010000"],["2024-07-25T10:17:33.010000"],["2024-07-25T10:17:34.010000"],["2024-07-25T10:17:35.010000"],["2024-07-25T10:17:36.010000"],["2024-07-25T10:17:37.010000"],["2024-07-25T10:17:38.010000"],["2024-07-25T10:17:39.010000"],["2024-07-25T10:17:40.010000"],["2024-07-25T10:17:41.010000"],["2024-07-25T10:17:42.010000"],["2024-07-25T10:17:43.010000"],["2024-07-25T10:17:44.010000"],["2024-07-25T10:17:45.010000"],["2024-07-25T10:17:46.010000"],["2024-07-25T10:17:47.010000"],["2024-07-25T10:17:48.010000"],["2024-07-25T10:17:49.010000"],["2024-07-25T10:17:50.010000"],["2024-07-25T10:17:51.010000"],["2024-07-25T10:17:52.010000"],["2024-07-25T10:17:53.010000"],["2024-07-25T10:17:54.010000"],["2024-07-25T10:17:55.010000"],["2024-07-25T10:17:56.010000"],["2024-07-25T10:17:57.010000"],["2024-07-25T10:17:58.010000"],["2024-07-25T10:17:59.010000"],["2024-07-25T10:18:00.010000"],["2024-07-25T10:18:01.010000"],["2024-07-25T10:18:02.010000"],["2024-07-25T10:18:03.010000"],["2024-07-25T10:18:04.010000"],["2024-07-25T10:18:05.010000"],["2024-07-25T10:18:06.010000"],["2024-07-25T10:18:07.010000"],["2024-07-25T10:18:08.010000"],["2024-07-25T10:18:09.010000"],["2024-07-25T10:18:10.010000"],["2024-07-25T10:18:11.010000"],["2024-07-25T10:18:12.010000"],["2024-07-25T10:18:13.010000"],["2024-07-25T10:18:14.010000"],["2024-07-25T10:18:15.010000"],["2024-07-25T10:18:16.010000"],["2024-07-25T10:18:17.010000"],["2024-07-25T10:18:18.010000"],["2024-07-25T10:18:19.010000"],["2024-07-25T10:18:20.010000"],["2024-07-25T10:18:21.010000"],["2024-07-25T10:18:22.010000"],["2024-07-25T10:18:23.010000"],["2024-07-25T10:18:24.010000"],["2024-07-25T10:18:25.010000"],["2024-07-25T10:18:26.010000"],["2024-07-25T10:18:27.010000"],["2024-07-25T10:18:28.010000"],["2024-07-25T10:18:29.010000"],["2024-07-25T10:18:30.010000"],["2024-07-25T10:18:31.010000"],["2024-07-25T10:18:32.010000"],["2024-07-25T10:18:33.010000"],["2024-07-25T10:18:34.010000"],["2024-07-25T10:18:35.010000"],["2024-07-25T10:18:36.010000"],["2024-07-25T10:18:37.010000"],["2024-07-25T10:18:38.010000"],["2024-07-25T10:18:39.010000"],["2024-07-25T10:18:40.010000"],["2024-07-25T10:18:41.010000"],["2024-07-25T10:18:42.010000"],["2024-07-25T10:18:43.010000"],["2024-07-25T10:18:44.010000"],["2024-07-25T10:18:45.010000"],["2024-07-25T10:18:46.010000"],["2024-07-25T10:18:47.010000"],["2024-07-25T10:18:48.010000"],["2024-07-25T10:18:49.010000"],["2024-07-25T10:18:50.010000"],["2024-07-25T10:18:51.010000"],["2024-07-25T10:18:52.010000"],["2024-07-25T10:18:53.010000"],["2024-07-25T10:18:54.010000"],["2024-07-25T10:18:55.010000"],["2024-07-25T10:18:56.010000"],["2024-07-25T10:18:57.010000"],["2024-07-25T10:18:58.010000"],["2024-07-25T10:18:59.010000"],["2024-07-25T10:19:00.010000"],["2024-07-25T10:19:01.010000"],["2024-07-25T10:19:02.010000"],["2024-07-25T10:19:03.010000"],["2024-07-25T10:19:04.010000"],["2024-07-25T10:19:05.010000"],["2024-07-25T10:19:06.010000"],["2024-07-25T10:19:07.010000"],["2024-07-25T10:19:08.010000"],["2024-07-25T10:19:09.010000"],["2024-07-25T10:19:10.010000"],["2024-07-25T10:19:11.010000"],["2024-07-25T10:19:12.010000"],["2024-07-25T10:19:13.010000"],["2024-07-25T10:19:14.010000"],["2024-07-25T10:19:15.010000"],["2024-07-25T10:19:16.010000"],["2024-07-25T10:19:17.010000"],["2024-07-25T10:19:18.010000"],["2024-07-25T10:19:19.010000"],["2024-07-25T10:19:20.010000"],["2024-07-25T10:19:21.010000"],["2024-07-25T10:19:22.010000"],["2024-07-25T10:19:23.010000"],["2024-07-25T10:19:24.010000"],["2024-07-25T10:19:25.010000"],["2024-07-25T10:19:26.010000"],["2024-07-25T10:19:27.010000"],["2024-07-25T10:19:28.010000"],["2024-07-25T10:19:29.010000"],["2024-07-25T10:19:30.010000"],["2024-07-25T10:19:31.010000"],["2024-07-25T10:19:32.010000"],["2024-07-25T10:19:33.010000"],["2024-07-25T10:19:34.010000"],["2024-07-25T10:19:35.010000"],["2024-07-25T10:19:36.010000"],["2024-07-25T10:19:37.010000"],["2024-07-25T10:19:38.010000"],["2024-07-25T10:19:39.010000"],["2024-07-25T10:19:40.010000"],["2024-07-25T10:19:41.010000"],["2024-07-25T10:19:42.010000"],["2024-07-25T10:19:43.010000"],["2024-07-25T10:19:44.010000"],["2024-07-25T10:19:45.010000"],["2024-07-25T10:19:46.010000"],["2024-07-25T10:19:47.010000"],["2024-07-25T10:19:48.010000"],["2024-07-25T10:19:49.010000"],["2024-07-25T10:19:50.010000"],["2024-07-25T10:19:51.010000"],["2024-07-25T10:19:52.010000"],["2024-07-25T10:19:53.010000"],["2024-07-25T10:19:54.010000"],["2024-07-25T10:19:55.010000"],["2024-07-25T10:19:56.010000"],["2024-07-25T10:19:57.010000"],["2024-07-25T10:19:58.010000"],["2024-07-25T10:19:59.010000"],["2024-07-25T10:20:00.010000"],["2024-07-25T10:20:01.010000"],["2024-07-25T10:20:02.010000"],["2024-07-25T10:20:03.010000"],["2024-07-25T10:20:04.010000"],["2024-07-25T10:20:05.010000"],["2024-07-25T10:20:06.010000"],["2024-07-25T10:20:07.010000"],["2024-07-25T10:20:08.010000"],["2024-07-25T10:20:09.010000"],["2024-07-25T10:20:10.010000"],["2024-07-25T10:20:11.010000"],["2024-07-25T10:20:12.010000"],["2024-07-25T10:20:13.010000"],["2024-07-25T10:20:14.010000"],["2024-07-25T10:20:15.010000"],["2024-07-25T10:20:16.010000"],["2024-07-25T10:20:17.010000"],["2024-07-25T10:20:18.010000"],["2024-07-25T10:20:19.010000"],["2024-07-25T10:20:20.010000"],["2024-07-25T10:20:21.010000"],["2024-07-25T10:20:22.010000"],["2024-07-25T10:20:23.010000"],["2024-07-25T10:20:24.010000"],["2024-07-25T10:20:25.010000"],["2024-07-25T10:20:26.010000"],["2024-07-25T10:20:27.010000"],["2024-07-25T10:20:28.010000"],["2024-07-25T10:20:29.010000"],["2024-07-25T10:20:30.010000"],["2024-07-25T10:20:31.010000"],["2024-07-25T10:20:32.010000"],["2024-07-25T10:20:33.010000"],["2024-07-25T10:20:34.010000"],["2024-07-25T10:20:35.010000"],["2024-07-25T10:20:36.010000"],["2024-07-25T10:20:37.010000"],["2024-07-25T10:20:38.010000"],["2024-07-25T10:20:39.010000"],["2024-07-25T10:20:40.010000"],["2024-07-25T10:20:41.010000"],["2024-07-25T10:20:42.010000"],["2024-07-25T10:20:43.010000"],["2024-07-25T10:20:44.010000"],["2024-07-25T10:20:45.010000"],["2024-07-25T10:20:46.010000"],["2024-07-25T10:20:47.010000"],["2024-07-25T10:20:48.010000"],["2024-07-25T10:20:49.010000"],["2024-07-25T10:20:50.010000"],["2024-07-25T10:20:51.010000"],["2024-07-25T10:20:52.010000"],["2024-07-25T10:20:53.010000"],["2024-07-25T10:20:54.010000"],["2024-07-25T10:20:55.010000"],["2024-07-25T10:20:56.010000"],["2024-07-25T10:20:57.010000"],["2024-07-25T10:20:58.010000"],["2024-07-25T10:20:59.010000"],["2024-07-25T10:21:00.010000"],["2024-07-25T10:21:01.010000"],["2024-07-25T10:21:02.010000"],["2024-07-25T10:21:03.010000"],["2024-07-25T10:21:04.010000"],["2024-07-25T10:21:05.010000"],["2024-07-25T10:21:06.010000"],["2024-07-25T10:21:07.010000"],["2024-07-25T10:21:08.010000"],["2024-07-25T10:21:09.010000"],["2024-07-25T10:21:10.010000"],["2024-07-25T10:21:11.010000"],["2024-07-25T10:21:12.010000"],["2024-07-25T10:21:13.010000"],["2024-07-25T10:21:14.010000"],["2024-07-25T10:21:15.010000"],["2024-07-25T10:21:16.010000"],["2024-07-25T10:21:17.010000"],["2024-07-25T10:21:18.010000"],["2024-07-25T10:21:19.010000"],["2024-07-25T10:21:20.010000"],["2024-07-25T10:21:21.010000"],["2024-07-25T10:21:22.010000"],["2024-07-25T10:21:23.010000"],["2024-07-25T10:21:24.010000"],["2024-07-25T10:21:25.010000"],["2024-07-25T10:21:26.010000"],["2024-07-25T10:21:27.010000"],["2024-07-25T10:21:28.010000"],["2024-07-25T10:21:29.010000"],["2024-07-25T10:21:30.010000"],["2024-07-25T10:21:31.010000"],["2024-07-25T10:21:32.010000"],["2024-07-25T10:21:33.010000"],["2024-07-25T10:21:34.010000"],["2024-07-25T10:21:35.010000"],["2024-07-25T10:21:36.010000"],["2024-07-25T10:21:37.010000"],["2024-07-25T10:21:38.010000"],["2024-07-25T10:21:39.010000"],["2024-07-25T10:21:40.010000"],["2024-07-25T10:21:41.010000"],["2024-07-25T10:21:42.010000"],["2024-07-25T10:21:43.010000"],["2024-07-25T10:21:44.010000"],["2024-07-25T10:21:45.010000"],["2024-07-25T10:21:46.010000"],["2024-07-25T10:21:47.010000"],["2024-07-25T10:21:48.010000"],["2024-07-25T10:21:49.010000"],["2024-07-25T10:21:50.010000"],["2024-07-25T10:21:51.010000"],["2024-07-25T10:21:52.010000"],["2024-07-25T10:21:53.010000"],["2024-07-25T10:21:54.010000"],["2024-07-25T10:21:55.010000"],["2024-07-25T10:21:56.010000"],["2024-07-25T10:21:57.010000"],["2024-07-25T10:21:58.010000"],["2024-07-25T10:21:59.010000"],["2024-07-25T10:22:00.010000"],["2024-07-25T10:22:01.010000"],["2024-07-25T10:22:02.010000"],["2024-07-25T10:22:03.010000"],["2024-07-25T10:22:04.010000"],["2024-07-25T10:22:05.010000"],["2024-07-25T10:22:06.010000"],["2024-07-25T10:22:07.010000"],["2024-07-25T10:22:08.010000"],["2024-07-25T10:22:09.010000"],["2024-07-25T10:22:10.010000"],["2024-07-25T10:22:11.010000"],["2024-07-25T10:22:12.010000"],["2024-07-25T10:22:13.010000"],["2024-07-25T10:22:14.010000"],["2024-07-25T10:22:15.010000"],["2024-07-25T10:22:16.010000"],["2024-07-25T10:22:17.010000"],["2024-07-25T10:22:18.010000"],["2024-07-25T10:22:19.010000"],["2024-07-25T10:22:20.010000"],["2024-07-25T10:22:21.010000"],["2024-07-25T10:22:22.010000"],["2024-07-25T10:22:23.010000"],["2024-07-25T10:22:24.010000"],["2024-07-25T10:22:25.010000"],["2024-07-25T10:22:26.010000"],["2024-07-25T10:22:27.010000"],["2024-07-25T10:22:28.010000"],["2024-07-25T10:22:29.010000"],["2024-07-25T10:22:30.010000"],["2024-07-25T10:22:31.010000"],["2024-07-25T10:22:32.010000"],["2024-07-25T10:22:33.010000"],["2024-07-25T10:22:34.010000"],["2024-07-25T10:22:35.010000"],["2024-07-25T10:22:36.010000"],["2024-07-25T10:22:37.010000"],["2024-07-25T10:22:38.010000"],["2024-07-25T10:22:39.010000"],["2024-07-25T10:22:40.010000"],["2024-07-25T10:22:41.010000"],["2024-07-25T10:22:42.010000"],["2024-07-25T10:22:43.010000"],["2024-07-25T10:22:44.010000"],["2024-07-25T10:22:45.010000"],["2024-07-25T10:22:46.010000"],["2024-07-25T10:22:47.010000"],["2024-07-25T10:22:48.010000"],["2024-07-25T10:22:49.010000"],["2024-07-25T10:22:50.010000"],["2024-07-25T10:22:51.010000"],["2024-07-25T10:22:52.010000"],["2024-07-25T10:22:53.010000"],["2024-07-25T10:22:54.010000"],["2024-07-25T10:22:55.010000"],["2024-07-25T10:22:56.010000"],["2024-07-25T10:22:57.010000"],["2024-07-25T10:22:58.010000"],["2024-07-25T10:22:59.010000"],["2024-07-25T10:23:00.010000"],["2024-07-25T10:23:01.010000"],["2024-07-25T10:23:02.010000"],["2024-07-25T10:23:03.010000"],["2024-07-25T10:23:04.010000"],["2024-07-25T10:23:05.010000"],["2024-07-25T10:23:06.010000"],["2024-07-25T10:23:07.010000"],["2024-07-25T10:23:08.010000"],["2024-07-25T10:23:09.010000"],["2024-07-25T10:23:10.010000"],["2024-07-25T10:23:11.010000"],["2024-07-25T10:23:12.010000"],["2024-07-25T10:23:13.010000"],["2024-07-25T10:23:14.010000"],["2024-07-25T10:23:15.010000"],["2024-07-25T10:23:16.010000"],["2024-07-25T10:23:17.010000"],["2024-07-25T10:23:18.010000"],["2024-07-25T10:23:19.010000"],["2024-07-25T10:23:20.010000"],["2024-07-25T10:23:21.010000"],["2024-07-25T10:23:22.010000"],["2024-07-25T10:23:23.010000"],["2024-07-25T10:23:24.010000"],["2024-07-25T10:23:25.010000"],["2024-07-25T10:23:26.010000"],["2024-07-25T10:23:27.010000"],["2024-07-25T10:23:28.010000"],["2024-07-25T10:23:29.010000"],["2024-07-25T10:23:30.010000"],["2024-07-25T10:23:31.010000"],["2024-07-25T10:23:32.010000"],["2024-07-25T10:23:33.010000"],["2024-07-25T10:23:34.010000"],["2024-07-25T10:23:35.010000"],["2024-07-25T10:23:36.010000"],["2024-07-25T10:23:37.010000"],["2024-07-25T10:23:38.010000"],["2024-07-25T10:23:39.010000"],["2024-07-25T10:23:40.010000"],["2024-07-25T10:23:41.010000"],["2024-07-25T10:23:42.010000"],["2024-07-25T10:23:43.010000"],["2024-07-25T10:23:44.010000"],["2024-07-25T10:23:45.010000"],["2024-07-25T10:23:46.010000"],["2024-07-25T10:23:47.010000"],["2024-07-25T10:23:48.010000"],["2024-07-25T10:23:49.010000"],["2024-07-25T10:23:50.010000"],["2024-07-25T10:23:51.010000"],["2024-07-25T10:23:52.010000"],["2024-07-25T10:23:53.010000"],["2024-07-25T10:23:54.010000"],["2024-07-25T10:23:55.010000"],["2024-07-25T10:23:56.010000"],["2024-07-25T10:23:57.010000"],["2024-07-25T10:23:58.010000"],["2024-07-25T10:23:59.010000"],["2024-07-25T10:24:00.010000"],["2024-07-25T10:24:01.010000"],["2024-07-25T10:24:02.010000"],["2024-07-25T10:24:03.010000"],["2024-07-25T10:24:04.010000"],["2024-07-25T10:24:05.010000"],["2024-07-25T10:24:06.010000"],["2024-07-25T10:24:07.010000"],["2024-07-25T10:24:08.010000"],["2024-07-25T10:24:09.010000"],["2024-07-25T10:24:10.010000"],["2024-07-25T10:24:11.010000"],["2024-07-25T10:24:12.010000"],["2024-07-25T10:24:13.010000"],["2024-07-25T10:24:14.010000"],["2024-07-25T10:24:15.010000"],["2024-07-25T10:24:16.010000"],["2024-07-25T10:24:17.010000"],["2024-07-25T10:24:18.010000"],["2024-07-25T10:24:19.010000"],["2024-07-25T10:24:20.010000"],["2024-07-25T10:24:21.010000"],["2024-07-25T10:24:22.010000"],["2024-07-25T10:24:23.010000"],["2024-07-25T10:24:24.010000"],["2024-07-25T10:24:25.010000"],["2024-07-25T10:24:26.010000"],["2024-07-25T10:24:27.010000"],["2024-07-25T10:24:28.010000"],["2024-07-25T10:24:29.010000"],["2024-07-25T10:24:30.010000"],["2024-07-25T10:24:31.010000"],["2024-07-25T10:24:32.010000"],["2024-07-25T10:24:33.010000"],["2024-07-25T10:24:34.010000"],["2024-07-25T10:24:35.010000"],["2024-07-25T10:24:36.010000"],["2024-07-25T10:24:37.010000"],["2024-07-25T10:24:38.010000"],["2024-07-25T10:24:39.010000"],["2024-07-25T10:24:40.010000"],["2024-07-25T10:24:41.010000"],["2024-07-25T10:24:42.010000"],["2024-07-25T10:24:43.010000"],["2024-07-25T10:24:44.010000"],["2024-07-25T10:24:45.010000"],["2024-07-25T10:24:46.010000"],["2024-07-25T10:24:47.010000"],["2024-07-25T10:24:48.010000"],["2024-07-25T10:24:49.010000"],["2024-07-25T10:24:50.010000"],["2024-07-25T10:24:51.010000"],["2024-07-25T10:24:52.010000"],["2024-07-25T10:24:53.010000"],["2024-07-25T10:24:54.010000"],["2024-07-25T10:24:55.010000"],["2024-07-25T10:24:56.010000"],["2024-07-25T10:24:57.010000"],["2024-07-25T10:24:58.010000"],["2024-07-25T10:24:59.010000"],["2024-07-25T10:25:00.010000"],["2024-07-25T10:25:01.010000"],["2024-07-25T10:25:02.010000"],["2024-07-25T10:25:03.010000"],["2024-07-25T10:25:04.010000"],["2024-07-25T10:25:05.010000"],["2024-07-25T10:25:06.010000"],["2024-07-25T10:25:07.010000"],["2024-07-25T10:25:08.010000"],["2024-07-25T10:25:09.010000"],["2024-07-25T10:25:10.010000"],["2024-07-25T10:25:11.010000"],["2024-07-25T10:25:12.010000"],["2024-07-25T10:25:13.010000"],["2024-07-25T10:25:14.010000"],["2024-07-25T10:25:15.010000"],["2024-07-25T10:25:16.010000"],["2024-07-25T10:25:17.010000"],["2024-07-25T10:25:18.010000"],["2024-07-25T10:25:19.010000"],["2024-07-25T10:25:20.010000"],["2024-07-25T10:25:21.010000"],["2024-07-25T10:25:22.010000"],["2024-07-25T10:25:23.010000"],["2024-07-25T10:25:24.010000"],["2024-07-25T10:25:25.010000"],["2024-07-25T10:25:26.010000"],["2024-07-25T10:25:27.010000"],["2024-07-25T10:25:28.010000"],["2024-07-25T10:25:29.010000"],["2024-07-25T10:25:30.010000"],["2024-07-25T10:25:31.010000"],["2024-07-25T10:25:32.010000"],["2024-07-25T10:25:33.010000"],["2024-07-25T10:25:34.010000"],["2024-07-25T10:25:35.010000"],["2024-07-25T10:25:36.010000"],["2024-07-25T10:25:37.010000"],["2024-07-25T10:25:38.010000"],["2024-07-25T10:25:39.010000"],["2024-07-25T10:25:40.010000"],["2024-07-25T10:25:41.010000"],["2024-07-25T10:25:42.010000"],["2024-07-25T10:25:43.010000"],["2024-07-25T10:25:44.010000"],["2024-07-25T10:25:45.010000"],["2024-07-25T10:25:46.010000"],["2024-07-25T10:25:47.010000"],["2024-07-25T10:25:48.010000"],["2024-07-25T10:25:49.010000"],["2024-07-25T10:25:50.010000"],["2024-07-25T10:25:51.010000"],["2024-07-25T10:25:52.010000"],["2024-07-25T10:25:53.010000"],["2024-07-25T10:25:54.010000"],["2024-07-25T10:25:55.010000"],["2024-07-25T10:25:56.010000"],["2024-07-25T10:25:57.010000"],["2024-07-25T10:25:58.010000"],["2024-07-25T10:25:59.010000"],["2024-07-25T10:26:00.010000"],["2024-07-25T10:26:01.010000"],["2024-07-25T10:26:02.010000"],["2024-07-25T10:26:03.010000"],["2024-07-25T10:26:04.010000"],["2024-07-25T10:26:05.010000"],["2024-07-25T10:26:06.010000"],["2024-07-25T10:26:07.010000"],["2024-07-25T10:26:08.010000"],["2024-07-25T10:26:09.010000"],["2024-07-25T10:26:10.010000"],["2024-07-25T10:26:11.010000"],["2024-07-25T10:26:12.010000"],["2024-07-25T10:26:13.010000"],["2024-07-25T10:26:14.010000"],["2024-07-25T10:26:15.010000"],["2024-07-25T10:26:16.010000"],["2024-07-25T10:26:17.010000"],["2024-07-25T10:26:18.010000"],["2024-07-25T10:26:19.010000"],["2024-07-25T10:26:20.010000"],["2024-07-25T10:26:21.010000"],["2024-07-25T10:26:22.010000"],["2024-07-25T10:26:23.010000"],["2024-07-25T10:26:24.010000"],["2024-07-25T10:26:25.010000"],["2024-07-25T10:26:26.010000"],["2024-07-25T10:26:27.010000"],["2024-07-25T10:26:28.010000"],["2024-07-25T10:26:29.010000"],["2024-07-25T10:26:30.010000"],["2024-07-25T10:26:31.010000"],["2024-07-25T10:26:32.010000"],["2024-07-25T10:26:33.010000"],["2024-07-25T10:26:34.010000"],["2024-07-25T10:26:35.010000"],["2024-07-25T10:26:36.010000"],["2024-07-25T10:26:37.010000"],["2024-07-25T10:26:38.010000"],["2024-07-25T10:26:39.010000"],["2024-07-25T10:26:40.010000"],["2024-07-25T10:26:41.010000"],["2024-07-25T10:26:42.010000"],["2024-07-25T10:26:43.010000"],["2024-07-25T10:26:44.010000"],["2024-07-25T10:26:45.010000"],["2024-07-25T10:26:46.010000"],["2024-07-25T10:26:47.010000"],["2024-07-25T10:26:48.010000"],["2024-07-25T10:26:49.010000"],["2024-07-25T10:26:50.010000"],["2024-07-25T10:26:51.010000"],["2024-07-25T10:26:52.010000"],["2024-07-25T10:26:53.010000"],["2024-07-25T10:26:54.010000"],["2024-07-25T10:26:55.010000"],["2024-07-25T10:26:56.010000"],["2024-07-25T10:26:57.010000"],["2024-07-25T10:26:58.010000"],["2024-07-25T10:26:59.010000"],["2024-07-25T10:27:00.010000"],["2024-07-25T10:27:01.010000"],["2024-07-25T10:27:02.010000"],["2024-07-25T10:27:03.010000"],["2024-07-25T10:27:04.010000"],["2024-07-25T10:27:05.010000"],["2024-07-25T10:27:06.010000"],["2024-07-25T10:27:07.010000"],["2024-07-25T10:27:08.010000"],["2024-07-25T10:27:09.010000"],["2024-07-25T10:27:10.010000"],["2024-07-25T10:27:11.010000"],["2024-07-25T10:27:12.010000"],["2024-07-25T10:27:13.010000"],["2024-07-25T10:27:14.010000"],["2024-07-25T10:27:15.010000"],["2024-07-25T10:27:16.010000"],["2024-07-25T10:27:17.010000"],["2024-07-25T10:27:18.010000"],["2024-07-25T10:27:19.010000"],["2024-07-25T10:27:20.010000"],["2024-07-25T10:27:21.010000"],["2024-07-25T10:27:22.010000"],["2024-07-25T10:27:23.010000"],["2024-07-25T10:27:24.010000"],["2024-07-25T10:27:25.010000"],["2024-07-25T10:27:26.010000"],["2024-07-25T10:27:27.010000"],["2024-07-25T10:27:28.010000"],["2024-07-25T10:27:29.010000"],["2024-07-25T10:27:30.010000"],["2024-07-25T10:27:31.010000"],["2024-07-25T10:27:32.010000"],["2024-07-25T10:27:33.010000"],["2024-07-25T10:27:34.010000"],["2024-07-25T10:27:35.010000"],["2024-07-25T10:27:36.010000"],["2024-07-25T10:27:37.010000"],["2024-07-25T10:27:38.010000"],["2024-07-25T10:27:39.010000"],["2024-07-25T10:27:40.010000"],["2024-07-25T10:27:41.010000"],["2024-07-25T10:27:42.010000"],["2024-07-25T10:27:43.010000"],["2024-07-25T10:27:44.010000"],["2024-07-25T10:27:45.010000"],["2024-07-25T10:27:46.010000"],["2024-07-25T10:27:47.010000"],["2024-07-25T10:27:48.010000"],["2024-07-25T10:27:49.010000"],["2024-07-25T10:27:50.010000"],["2024-07-25T10:27:51.010000"],["2024-07-25T10:27:52.010000"],["2024-07-25T10:27:53.010000"],["2024-07-25T10:27:54.010000"],["2024-07-25T10:27:55.010000"],["2024-07-25T10:27:56.010000"],["2024-07-25T10:27:57.010000"],["2024-07-25T10:27:58.010000"],["2024-07-25T10:27:59.010000"],["2024-07-25T10:28:00.010000"],["2024-07-25T10:28:01.010000"],["2024-07-25T10:28:02.010000"],["2024-07-25T10:28:03.010000"],["2024-07-25T10:28:04.010000"],["2024-07-25T10:28:05.010000"],["2024-07-25T10:28:06.010000"],["2024-07-25T10:28:07.010000"],["2024-07-25T10:28:08.010000"],["2024-07-25T10:28:09.010000"],["2024-07-25T10:28:10.010000"],["2024-07-25T10:28:11.010000"],["2024-07-25T10:28:12.010000"],["2024-07-25T10:28:13.010000"],["2024-07-25T10:28:14.010000"],["2024-07-25T10:28:15.010000"],["2024-07-25T10:28:16.010000"],["2024-07-25T10:28:17.010000"],["2024-07-25T10:28:18.010000"],["2024-07-25T10:28:19.010000"],["2024-07-25T10:28:20.010000"],["2024-07-25T10:28:21.010000"],["2024-07-25T10:28:22.010000"],["2024-07-25T10:28:23.010000"],["2024-07-25T10:28:24.010000"],["2024-07-25T10:28:25.010000"],["2024-07-25T10:28:26.010000"],["2024-07-25T10:28:27.010000"],["2024-07-25T10:28:28.010000"],["2024-07-25T10:28:29.010000"],["2024-07-25T10:28:30.010000"],["2024-07-25T10:28:31.010000"],["2024-07-25T10:28:32.010000"],["2024-07-25T10:28:33.010000"],["2024-07-25T10:28:34.010000"],["2024-07-25T10:28:35.010000"],["2024-07-25T10:28:36.010000"],["2024-07-25T10:28:37.010000"],["2024-07-25T10:28:38.010000"],["2024-07-25T10:28:39.010000"],["2024-07-25T10:28:40.010000"],["2024-07-25T10:28:41.010000"],["2024-07-25T10:28:42.010000"],["2024-07-25T10:28:43.010000"],["2024-07-25T10:28:44.010000"],["2024-07-25T10:28:45.010000"],["2024-07-25T10:28:46.010000"],["2024-07-25T10:28:47.010000"],["2024-07-25T10:28:48.010000"],["2024-07-25T10:28:49.010000"],["2024-07-25T10:28:50.010000"],["2024-07-25T10:28:51.010000"],["2024-07-25T10:28:52.010000"],["2024-07-25T10:28:53.010000"],["2024-07-25T10:28:54.010000"],["2024-07-25T10:28:55.010000"],["2024-07-25T10:28:56.010000"],["2024-07-25T10:28:57.010000"],["2024-07-25T10:28:58.010000"],["2024-07-25T10:28:59.010000"],["2024-07-25T10:29:00.010000"],["2024-07-25T10:29:01.010000"],["2024-07-25T10:29:02.010000"],["2024-07-25T10:29:03.010000"],["2024-07-25T10:29:04.010000"],["2024-07-25T10:29:05.010000"],["2024-07-25T10:29:06.010000"],["2024-07-25T10:29:07.010000"],["2024-07-25T10:29:08.010000"],["2024-07-25T10:29:09.010000"],["2024-07-25T10:29:10.010000"],["2024-07-25T10:29:11.010000"],["2024-07-25T10:29:12.010000"],["2024-07-25T10:29:13.010000"],["2024-07-25T10:29:14.010000"],["2024-07-25T10:29:15.010000"],["2024-07-25T10:29:16.010000"],["2024-07-25T10:29:17.010000"],["2024-07-25T10:29:18.010000"],["2024-07-25T10:29:19.010000"],["2024-07-25T10:29:20.010000"],["2024-07-25T10:29:21.010000"],["2024-07-25T10:29:22.010000"],["2024-07-25T10:29:23.010000"],["2024-07-25T10:29:24.010000"],["2024-07-25T10:29:25.010000"],["2024-07-25T10:29:26.010000"],["2024-07-25T10:29:27.010000"],["2024-07-25T10:29:28.010000"],["2024-07-25T10:29:29.010000"],["2024-07-25T10:29:30.010000"],["2024-07-25T10:29:31.010000"],["2024-07-25T10:29:32.010000"],["2024-07-25T10:29:33.010000"],["2024-07-25T10:29:34.010000"],["2024-07-25T10:29:35.010000"],["2024-07-25T10:29:36.010000"],["2024-07-25T10:29:37.010000"],["2024-07-25T10:29:38.010000"],["2024-07-25T10:29:39.010000"],["2024-07-25T10:29:40.010000"],["2024-07-25T10:29:41.010000"],["2024-07-25T10:29:42.010000"],["2024-07-25T10:29:43.010000"],["2024-07-25T10:29:44.010000"],["2024-07-25T10:29:45.010000"],["2024-07-25T10:29:46.010000"],["2024-07-25T10:29:47.010000"],["2024-07-25T10:29:48.010000"],["2024-07-25T10:29:49.010000"],["2024-07-25T10:29:50.010000"],["2024-07-25T10:29:51.010000"],["2024-07-25T10:29:52.010000"],["2024-07-25T10:29:53.010000"],["2024-07-25T10:29:54.010000"],["2024-07-25T10:29:55.010000"],["2024-07-25T10:29:56.010000"],["2024-07-25T10:29:57.010000"],["2024-07-25T10:29:58.010000"],["2024-07-25T10:29:59.010000"],["2024-07-25T10:30:00.010000"],["2024-07-25T10:30:01.010000"],["2024-07-25T10:30:02.010000"],["2024-07-25T10:30:03.010000"],["2024-07-25T10:30:04.010000"],["2024-07-25T10:30:05.010000"],["2024-07-25T10:30:06.010000"],["2024-07-25T10:30:07.010000"],["2024-07-25T10:30:08.010000"],["2024-07-25T10:30:09.010000"],["2024-07-25T10:30:10.010000"],["2024-07-25T10:30:11.010000"],["2024-07-25T10:30:12.010000"],["2024-07-25T10:30:13.010000"],["2024-07-25T10:30:14.010000"],["2024-07-25T10:30:15.010000"],["2024-07-25T10:30:16.010000"],["2024-07-25T10:30:17.010000"],["2024-07-25T10:30:18.010000"],["2024-07-25T10:30:19.010000"],["2024-07-25T10:30:20.010000"],["2024-07-25T10:30:21.010000"],["2024-07-25T10:30:22.010000"],["2024-07-25T10:30:23.010000"],["2024-07-25T10:30:24.010000"],["2024-07-25T10:30:25.010000"],["2024-07-25T10:30:26.010000"],["2024-07-25T10:30:27.010000"],["2024-07-25T10:30:28.010000"],["2024-07-25T10:30:29.010000"],["2024-07-25T10:30:30.010000"],["2024-07-25T10:30:31.010000"],["2024-07-25T10:30:32.010000"],["2024-07-25T10:30:33.010000"],["2024-07-25T10:30:34.010000"],["2024-07-25T10:30:35.010000"],["2024-07-25T10:30:36.010000"],["2024-07-25T10:30:37.010000"],["2024-07-25T10:30:38.010000"],["2024-07-25T10:30:39.010000"],["2024-07-25T10:30:40.010000"],["2024-07-25T10:30:41.010000"],["2024-07-25T10:30:42.010000"],["2024-07-25T10:30:43.010000"],["2024-07-25T10:30:44.010000"],["2024-07-25T10:30:45.010000"],["2024-07-25T10:30:46.010000"],["2024-07-25T10:30:47.010000"],["2024-07-25T10:30:48.010000"],["2024-07-25T10:30:49.010000"],["2024-07-25T10:30:50.010000"],["2024-07-25T10:30:51.010000"],["2024-07-25T10:30:52.010000"],["2024-07-25T10:30:53.010000"],["2024-07-25T10:30:54.010000"],["2024-07-25T10:30:55.010000"],["2024-07-25T10:30:56.010000"],["2024-07-25T10:30:57.010000"],["2024-07-25T10:30:58.010000"],["2024-07-25T10:30:59.010000"],["2024-07-25T10:31:00.010000"],["2024-07-25T10:31:01.010000"],["2024-07-25T10:31:02.010000"],["2024-07-25T10:31:03.010000"],["2024-07-25T10:31:04.010000"],["2024-07-25T10:31:05.010000"],["2024-07-25T10:31:06.010000"],["2024-07-25T10:31:07.010000"],["2024-07-25T10:31:08.010000"],["2024-07-25T10:31:09.010000"],["2024-07-25T10:31:10.010000"],["2024-07-25T10:31:11.010000"],["2024-07-25T10:31:12.010000"],["2024-07-25T10:31:13.010000"],["2024-07-25T10:31:14.010000"],["2024-07-25T10:31:15.010000"],["2024-07-25T10:31:16.010000"],["2024-07-25T10:31:17.010000"],["2024-07-25T10:31:18.010000"],["2024-07-25T10:31:19.010000"],["2024-07-25T10:31:20.010000"],["2024-07-25T10:31:21.010000"],["2024-07-25T10:31:22.010000"],["2024-07-25T10:31:23.010000"],["2024-07-25T10:31:24.010000"],["2024-07-25T10:31:25.010000"],["2024-07-25T10:31:26.010000"],["2024-07-25T10:31:27.010000"],["2024-07-25T10:31:28.010000"],["2024-07-25T10:31:29.010000"],["2024-07-25T10:31:30.010000"],["2024-07-25T10:31:31.010000"],["2024-07-25T10:31:32.010000"],["2024-07-25T10:31:33.010000"],["2024-07-25T10:31:34.010000"],["2024-07-25T10:31:35.010000"],["2024-07-25T10:31:36.010000"],["2024-07-25T10:31:37.010000"],["2024-07-25T10:31:38.010000"],["2024-07-25T10:31:39.010000"],["2024-07-25T10:31:40.010000"],["2024-07-25T10:31:41.010000"],["2024-07-25T10:31:42.010000"],["2024-07-25T10:31:43.010000"],["2024-07-25T10:31:44.010000"],["2024-07-25T10:31:45.010000"],["2024-07-25T10:31:46.010000"],["2024-07-25T10:31:47.010000"],["2024-07-25T10:31:48.010000"],["2024-07-25T10:31:49.010000"],["2024-07-25T10:31:50.010000"],["2024-07-25T10:31:51.010000"],["2024-07-25T10:31:52.010000"],["2024-07-25T10:31:53.010000"],["2024-07-25T10:31:54.010000"],["2024-07-25T10:31:55.010000"],["2024-07-25T10:31:56.010000"],["2024-07-25T10:31:57.010000"],["2024-07-25T10:31:58.010000"],["2024-07-25T10:31:59.010000"],["2024-07-25T10:32:00.010000"],["2024-07-25T10:32:01.010000"],["2024-07-25T10:32:02.010000"],["2024-07-25T10:32:03.010000"],["2024-07-25T10:32:04.010000"],["2024-07-25T10:32:05.010000"],["2024-07-25T10:32:06.010000"],["2024-07-25T10:32:07.010000"],["2024-07-25T10:32:08.010000"],["2024-07-25T10:32:09.010000"],["2024-07-25T10:32:10.010000"],["2024-07-25T10:32:11.010000"],["2024-07-25T10:32:12.010000"],["2024-07-25T10:32:13.010000"],["2024-07-25T10:32:14.010000"],["2024-07-25T10:32:15.010000"],["2024-07-25T10:32:16.010000"],["2024-07-25T10:32:17.010000"],["2024-07-25T10:32:18.010000"],["2024-07-25T10:32:19.010000"],["2024-07-25T10:32:20.010000"],["2024-07-25T10:32:21.010000"],["2024-07-25T10:32:22.010000"],["2024-07-25T10:32:23.010000"],["2024-07-25T10:32:24.010000"],["2024-07-25T10:32:25.010000"],["2024-07-25T10:32:26.010000"],["2024-07-25T10:32:27.010000"],["2024-07-25T10:32:28.010000"],["2024-07-25T10:32:29.010000"],["2024-07-25T10:32:30.010000"],["2024-07-25T10:32:31.010000"],["2024-07-25T10:32:32.010000"],["2024-07-25T10:32:33.010000"],["2024-07-25T10:32:34.010000"],["2024-07-25T10:32:35.010000"],["2024-07-25T10:32:36.010000"],["2024-07-25T10:32:37.010000"],["2024-07-25T10:32:38.010000"],["2024-07-25T10:32:39.010000"],["2024-07-25T10:32:40.010000"],["2024-07-25T10:32:41.010000"],["2024-07-25T10:32:42.010000"],["2024-07-25T10:32:43.010000"],["2024-07-25T10:32:44.010000"],["2024-07-25T10:32:45.010000"],["2024-07-25T10:32:46.010000"],["2024-07-25T10:32:47.010000"],["2024-07-25T10:32:48.010000"],["2024-07-25T10:32:49.010000"],["2024-07-25T10:32:50.010000"],["2024-07-25T10:32:51.010000"],["2024-07-25T10:32:52.010000"],["2024-07-25T10:32:53.010000"],["2024-07-25T10:32:54.010000"],["2024-07-25T10:32:55.010000"],["2024-07-25T10:32:56.010000"],["2024-07-25T10:32:57.010000"],["2024-07-25T10:32:58.010000"],["2024-07-25T10:32:59.010000"],["2024-07-25T10:33:00.010000"],["2024-07-25T10:33:01.010000"],["2024-07-25T10:33:02.010000"],["2024-07-25T10:33:03.010000"],["2024-07-25T10:33:04.010000"],["2024-07-25T10:33:05.010000"],["2024-07-25T10:33:06.010000"],["2024-07-25T10:33:07.010000"],["2024-07-25T10:33:08.010000"],["2024-07-25T10:33:09.010000"],["2024-07-25T10:33:10.010000"],["2024-07-25T10:33:11.010000"],["2024-07-25T10:33:12.010000"],["2024-07-25T10:33:13.010000"],["2024-07-25T10:33:14.010000"],["2024-07-25T10:33:15.010000"],["2024-07-25T10:33:16.010000"],["2024-07-25T10:33:17.010000"],["2024-07-25T10:33:18.010000"],["2024-07-25T10:33:19.010000"],["2024-07-25T10:33:20.010000"],["2024-07-25T10:33:21.010000"],["2024-07-25T10:33:22.010000"],["2024-07-25T10:33:23.010000"],["2024-07-25T10:33:24.010000"],["2024-07-25T10:33:25.010000"],["2024-07-25T10:33:26.010000"],["2024-07-25T10:33:27.010000"],["2024-07-25T10:33:28.010000"],["2024-07-25T10:33:29.010000"],["2024-07-25T10:33:30.010000"],["2024-07-25T10:33:31.010000"],["2024-07-25T10:33:32.010000"],["2024-07-25T10:33:33.010000"],["2024-07-25T10:33:34.010000"],["2024-07-25T10:33:35.010000"],["2024-07-25T10:33:36.010000"],["2024-07-25T10:33:37.010000"],["2024-07-25T10:33:38.010000"],["2024-07-25T10:33:39.010000"],["2024-07-25T10:33:40.010000"],["2024-07-25T10:33:41.010000"],["2024-07-25T10:33:42.010000"],["2024-07-25T10:33:43.010000"],["2024-07-25T10:33:44.010000"],["2024-07-25T10:33:45.010000"],["2024-07-25T10:33:46.010000"],["2024-07-25T10:33:47.010000"],["2024-07-25T10:33:48.010000"],["2024-07-25T10:33:49.010000"],["2024-07-25T10:33:50.010000"],["2024-07-25T10:33:51.010000"],["2024-07-25T10:33:52.010000"],["2024-07-25T10:33:53.010000"],["2024-07-25T10:33:54.010000"],["2024-07-25T10:33:55.010000"],["2024-07-25T10:33:56.010000"],["2024-07-25T10:33:57.010000"],["2024-07-25T10:33:58.010000"],["2024-07-25T10:33:59.010000"],["2024-07-25T10:34:00.010000"],["2024-07-25T10:34:01.010000"],["2024-07-25T10:34:02.010000"],["2024-07-25T10:34:03.010000"],["2024-07-25T10:34:04.010000"],["2024-07-25T10:34:05.010000"],["2024-07-25T10:34:06.010000"],["2024-07-25T10:34:07.010000"],["2024-07-25T10:34:08.010000"],["2024-07-25T10:34:09.010000"],["2024-07-25T10:34:10.010000"],["2024-07-25T10:34:11.010000"],["2024-07-25T10:34:12.010000"],["2024-07-25T10:34:13.010000"],["2024-07-25T10:34:14.010000"],["2024-07-25T10:34:15.010000"],["2024-07-25T10:34:16.010000"],["2024-07-25T10:34:17.010000"],["2024-07-25T10:34:18.010000"],["2024-07-25T10:34:19.010000"],["2024-07-25T10:34:20.010000"],["2024-07-25T10:34:21.010000"],["2024-07-25T10:34:22.010000"],["2024-07-25T10:34:23.010000"],["2024-07-25T10:34:24.010000"],["2024-07-25T10:34:25.010000"],["2024-07-25T10:34:26.010000"],["2024-07-25T10:34:27.010000"],["2024-07-25T10:34:28.010000"],["2024-07-25T10:34:29.010000"],["2024-07-25T10:34:30.010000"],["2024-07-25T10:34:31.010000"],["2024-07-25T10:34:32.010000"],["2024-07-25T10:34:33.010000"],["2024-07-25T10:34:34.010000"],["2024-07-25T10:34:35.010000"],["2024-07-25T10:34:36.010000"],["2024-07-25T10:34:37.010000"],["2024-07-25T10:34:38.010000"],["2024-07-25T10:34:39.010000"],["2024-07-25T10:34:40.010000"],["2024-07-25T10:34:41.010000"],["2024-07-25T10:34:42.010000"],["2024-07-25T10:34:43.010000"],["2024-07-25T10:34:44.010000"],["2024-07-25T10:34:45.010000"],["2024-07-25T10:34:46.010000"],["2024-07-25T10:34:47.010000"],["2024-07-25T10:34:48.010000"],["2024-07-25T10:34:49.010000"],["2024-07-25T10:34:50.010000"],["2024-07-25T10:34:51.010000"],["2024-07-25T10:34:52.010000"],["2024-07-25T10:34:53.010000"],["2024-07-25T10:34:54.010000"],["2024-07-25T10:34:55.010000"],["2024-07-25T10:34:56.010000"],["2024-07-25T10:34:57.010000"],["2024-07-25T10:34:58.010000"],["2024-07-25T10:34:59.010000"],["2024-07-25T10:35:00.010000"],["2024-07-25T10:35:01.010000"],["2024-07-25T10:35:02.010000"],["2024-07-25T10:35:03.010000"],["2024-07-25T10:35:04.010000"],["2024-07-25T10:35:05.010000"],["2024-07-25T10:35:06.010000"],["2024-07-25T10:35:07.010000"],["2024-07-25T10:35:08.010000"],["2024-07-25T10:35:09.010000"],["2024-07-25T10:35:10.010000"],["2024-07-25T10:35:11.010000"],["2024-07-25T10:35:12.010000"],["2024-07-25T10:35:13.010000"],["2024-07-25T10:35:14.010000"],["2024-07-25T10:35:15.010000"],["2024-07-25T10:35:16.010000"],["2024-07-25T10:35:17.010000"],["2024-07-25T10:35:18.010000"],["2024-07-25T10:35:19.010000"],["2024-07-25T10:35:20.010000"],["2024-07-25T10:35:21.010000"],["2024-07-25T10:35:22.010000"],["2024-07-25T10:35:23.010000"],["2024-07-25T10:35:24.010000"],["2024-07-25T10:35:25.010000"],["2024-07-25T10:35:26.010000"],["2024-07-25T10:35:27.010000"],["2024-07-25T10:35:28.010000"],["2024-07-25T10:35:29.010000"],["2024-07-25T10:35:30.010000"],["2024-07-25T10:35:31.010000"],["2024-07-25T10:35:32.010000"],["2024-07-25T10:35:33.010000"],["2024-07-25T10:35:34.010000"],["2024-07-25T10:35:35.010000"],["2024-07-25T10:35:36.010000"],["2024-07-25T10:35:37.010000"],["2024-07-25T10:35:38.010000"],["2024-07-25T10:35:39.010000"],["2024-07-25T10:35:40.010000"],["2024-07-25T10:35:41.010000"],["2024-07-25T10:35:42.010000"],["2024-07-25T10:35:43.010000"],["2024-07-25T10:35:44.010000"],["2024-07-25T10:35:45.010000"],["2024-07-25T10:35:46.010000"],["2024-07-25T10:35:47.010000"],["2024-07-25T10:35:48.010000"],["2024-07-25T10:35:49.010000"],["2024-07-25T10:35:50.010000"],["2024-07-25T10:35:51.010000"],["2024-07-25T10:35:52.010000"],["2024-07-25T10:35:53.010000"],["2024-07-25T10:35:54.010000"],["2024-07-25T10:35:55.010000"],["2024-07-25T10:35:56.010000"],["2024-07-25T10:35:57.010000"],["2024-07-25T10:35:58.010000"],["2024-07-25T10:35:59.010000"],["2024-07-25T10:36:00.010000"],["2024-07-25T10:36:01.010000"],["2024-07-25T10:36:02.010000"],["2024-07-25T10:36:03.010000"],["2024-07-25T10:36:04.010000"],["2024-07-25T10:36:05.010000"],["2024-07-25T10:36:06.010000"],["2024-07-25T10:36:07.010000"],["2024-07-25T10:36:08.010000"],["2024-07-25T10:36:09.010000"],["2024-07-25T10:36:10.010000"],["2024-07-25T10:36:11.010000"],["2024-07-25T10:36:12.010000"],["2024-07-25T10:36:13.010000"],["2024-07-25T10:36:14.010000"],["2024-07-25T10:36:15.010000"],["2024-07-25T10:36:16.010000"],["2024-07-25T10:36:17.010000"],["2024-07-25T10:36:18.010000"],["2024-07-25T10:36:19.010000"],["2024-07-25T10:36:20.010000"],["2024-07-25T10:36:21.010000"],["2024-07-25T10:36:22.010000"],["2024-07-25T10:36:23.010000"],["2024-07-25T10:36:24.010000"],["2024-07-25T10:36:25.010000"],["2024-07-25T10:36:26.010000"],["2024-07-25T10:36:27.010000"],["2024-07-25T10:36:28.010000"],["2024-07-25T10:36:29.010000"],["2024-07-25T10:36:30.010000"],["2024-07-25T10:36:31.010000"],["2024-07-25T10:36:32.010000"],["2024-07-25T10:36:33.010000"],["2024-07-25T10:36:34.010000"],["2024-07-25T10:36:35.010000"],["2024-07-25T10:36:36.010000"],["2024-07-25T10:36:37.010000"],["2024-07-25T10:36:38.010000"],["2024-07-25T10:36:39.010000"],["2024-07-25T10:36:40.010000"],["2024-07-25T10:36:41.010000"],["2024-07-25T10:36:42.010000"],["2024-07-25T10:36:43.010000"],["2024-07-25T10:36:44.010000"],["2024-07-25T10:36:45.010000"],["2024-07-25T10:36:46.010000"],["2024-07-25T10:36:47.010000"],["2024-07-25T10:36:48.010000"],["2024-07-25T10:36:49.010000"],["2024-07-25T10:36:50.010000"],["2024-07-25T10:36:51.010000"],["2024-07-25T10:36:52.010000"],["2024-07-25T10:36:53.010000"],["2024-07-25T10:36:54.010000"],["2024-07-25T10:36:55.010000"],["2024-07-25T10:36:56.010000"],["2024-07-25T10:36:57.010000"],["2024-07-25T10:36:58.010000"],["2024-07-25T10:36:59.010000"],["2024-07-25T10:37:00.010000"],["2024-07-25T10:37:01.010000"],["2024-07-25T10:37:02.010000"],["2024-07-25T10:37:03.010000"],["2024-07-25T10:37:04.010000"],["2024-07-25T10:37:05.010000"],["2024-07-25T10:37:06.010000"],["2024-07-25T10:37:07.010000"],["2024-07-25T10:37:08.010000"],["2024-07-25T10:37:09.010000"],["2024-07-25T10:37:10.010000"],["2024-07-25T10:37:11.010000"],["2024-07-25T10:37:12.010000"],["2024-07-25T10:37:13.010000"],["2024-07-25T10:37:14.010000"],["2024-07-25T10:37:15.010000"],["2024-07-25T10:37:16.010000"],["2024-07-25T10:37:17.010000"],["2024-07-25T10:37:18.010000"],["2024-07-25T10:37:19.010000"],["2024-07-25T10:37:20.010000"],["2024-07-25T10:37:21.010000"],["2024-07-25T10:37:22.010000"],["2024-07-25T10:37:23.010000"],["2024-07-25T10:37:24.010000"],["2024-07-25T10:37:25.010000"],["2024-07-25T10:37:26.010000"],["2024-07-25T10:37:27.010000"],["2024-07-25T10:37:28.010000"],["2024-07-25T10:37:29.010000"],["2024-07-25T10:37:30.010000"],["2024-07-25T10:37:31.010000"],["2024-07-25T10:37:32.010000"],["2024-07-25T10:37:33.010000"],["2024-07-25T10:37:34.010000"],["2024-07-25T10:37:35.010000"],["2024-07-25T10:37:36.010000"],["2024-07-25T10:37:37.010000"],["2024-07-25T10:37:38.010000"],["2024-07-25T10:37:39.010000"],["2024-07-25T10:37:40.010000"],["2024-07-25T10:37:41.010000"],["2024-07-25T10:37:42.010000"],["2024-07-25T10:37:43.010000"],["2024-07-25T10:37:44.010000"],["2024-07-25T10:37:45.010000"],["2024-07-25T10:37:46.010000"],["2024-07-25T10:37:47.010000"],["2024-07-25T10:37:48.010000"],["2024-07-25T10:37:49.010000"],["2024-07-25T10:37:50.010000"],["2024-07-25T10:37:51.010000"],["2024-07-25T10:37:52.010000"],["2024-07-25T10:37:53.010000"],["2024-07-25T10:37:54.010000"],["2024-07-25T10:37:55.010000"],["2024-07-25T10:37:56.010000"],["2024-07-25T10:37:57.010000"],["2024-07-25T10:37:58.010000"],["2024-07-25T10:37:59.010000"],["2024-07-25T10:38:00.010000"],["2024-07-25T10:38:01.010000"],["2024-07-25T10:38:02.010000"],["2024-07-25T10:38:03.010000"],["2024-07-25T10:38:04.010000"],["2024-07-25T10:38:05.010000"],["2024-07-25T10:38:06.010000"],["2024-07-25T10:38:07.010000"],["2024-07-25T10:38:08.010000"],["2024-07-25T10:38:09.010000"],["2024-07-25T10:38:10.010000"],["2024-07-25T10:38:11.010000"],["2024-07-25T10:38:12.010000"],["2024-07-25T10:38:13.010000"],["2024-07-25T10:38:14.010000"],["2024-07-25T10:38:15.010000"],["2024-07-25T10:38:16.010000"],["2024-07-25T10:38:17.010000"],["2024-07-25T10:38:18.010000"],["2024-07-25T10:38:19.010000"],["2024-07-25T10:38:20.010000"],["2024-07-25T10:38:21.010000"],["2024-07-25T10:38:22.010000"],["2024-07-25T10:38:23.010000"],["2024-07-25T10:38:24.010000"],["2024-07-25T10:38:25.010000"],["2024-07-25T10:38:26.010000"],["2024-07-25T10:38:27.010000"],["2024-07-25T10:38:28.010000"],["2024-07-25T10:38:29.010000"],["2024-07-25T10:38:30.010000"],["2024-07-25T10:38:31.010000"],["2024-07-25T10:38:32.010000"],["2024-07-25T10:38:33.010000"],["2024-07-25T10:38:34.010000"],["2024-07-25T10:38:35.010000"],["2024-07-25T10:38:36.010000"],["2024-07-25T10:38:37.010000"],["2024-07-25T10:38:38.010000"],["2024-07-25T10:38:39.010000"],["2024-07-25T10:38:40.010000"],["2024-07-25T10:38:41.010000"],["2024-07-25T10:38:42.010000"],["2024-07-25T10:38:43.010000"],["2024-07-25T10:38:44.010000"],["2024-07-25T10:38:45.010000"],["2024-07-25T10:38:46.010000"],["2024-07-25T10:38:47.010000"],["2024-07-25T10:38:48.010000"],["2024-07-25T10:38:49.010000"],["2024-07-25T10:38:50.010000"],["2024-07-25T10:38:51.010000"],["2024-07-25T10:38:52.010000"],["2024-07-25T10:38:53.010000"],["2024-07-25T10:38:54.010000"],["2024-07-25T10:38:55.010000"],["2024-07-25T10:38:56.010000"],["2024-07-25T10:38:57.010000"],["2024-07-25T10:38:58.010000"],["2024-07-25T10:38:59.010000"],["2024-07-25T10:39:00.010000"],["2024-07-25T10:39:01.010000"],["2024-07-25T10:39:02.010000"],["2024-07-25T10:39:03.010000"],["2024-07-25T10:39:04.010000"],["2024-07-25T10:39:05.010000"],["2024-07-25T10:39:06.010000"],["2024-07-25T10:39:07.010000"],["2024-07-25T10:39:08.010000"],["2024-07-25T10:39:09.010000"],["2024-07-25T10:39:10.010000"],["2024-07-25T10:39:11.010000"],["2024-07-25T10:39:12.010000"],["2024-07-25T10:39:13.010000"],["2024-07-25T10:39:14.010000"],["2024-07-25T10:39:15.010000"],["2024-07-25T10:39:16.010000"],["2024-07-25T10:39:17.010000"],["2024-07-25T10:39:18.010000"],["2024-07-25T10:39:19.010000"],["2024-07-25T10:39:20.010000"],["2024-07-25T10:39:21.010000"],["2024-07-25T10:39:22.010000"],["2024-07-25T10:39:23.010000"],["2024-07-25T10:39:24.010000"],["2024-07-25T10:39:25.010000"],["2024-07-25T10:39:26.010000"],["2024-07-25T10:39:27.010000"],["2024-07-25T10:39:28.010000"],["2024-07-25T10:39:29.010000"],["2024-07-25T10:39:30.010000"],["2024-07-25T10:39:31.010000"],["2024-07-25T10:39:32.010000"],["2024-07-25T10:39:33.010000"],["2024-07-25T10:39:34.010000"],["2024-07-25T10:39:35.010000"],["2024-07-25T10:39:36.010000"],["2024-07-25T10:39:37.010000"],["2024-07-25T10:39:38.010000"],["2024-07-25T10:39:39.010000"],["2024-07-25T10:39:40.010000"],["2024-07-25T10:39:41.010000"],["2024-07-25T10:39:42.010000"],["2024-07-25T10:39:43.010000"],["2024-07-25T10:39:44.010000"],["2024-07-25T10:39:45.010000"],["2024-07-25T10:39:46.010000"],["2024-07-25T10:39:47.010000"],["2024-07-25T10:39:48.010000"],["2024-07-25T10:39:49.010000"],["2024-07-25T10:39:50.010000"],["2024-07-25T10:39:51.010000"],["2024-07-25T10:39:52.010000"],["2024-07-25T10:39:53.010000"],["2024-07-25T10:39:54.010000"],["2024-07-25T10:39:55.010000"],["2024-07-25T10:39:56.010000"],["2024-07-25T10:39:57.010000"],["2024-07-25T10:39:58.010000"],["2024-07-25T10:39:59.010000"],["2024-07-25T10:40:00.010000"],["2024-07-25T10:40:01.010000"],["2024-07-25T10:40:02.010000"],["2024-07-25T10:40:03.010000"],["2024-07-25T10:40:04.010000"],["2024-07-25T10:40:05.010000"],["2024-07-25T10:40:06.010000"],["2024-07-25T10:40:07.010000"],["2024-07-25T10:40:08.010000"],["2024-07-25T10:40:09.010000"],["2024-07-25T10:40:10.010000"],["2024-07-25T10:40:11.010000"],["2024-07-25T10:40:12.010000"],["2024-07-25T10:40:13.010000"],["2024-07-25T10:40:14.010000"],["2024-07-25T10:40:15.010000"],["2024-07-25T10:40:16.010000"],["2024-07-25T10:40:17.010000"],["2024-07-25T10:40:18.010000"],["2024-07-25T10:40:19.010000"],["2024-07-25T10:40:20.010000"],["2024-07-25T10:40:21.010000"],["2024-07-25T10:40:22.010000"],["2024-07-25T10:40:23.010000"],["2024-07-25T10:40:24.010000"],["2024-07-25T10:40:25.010000"],["2024-07-25T10:40:26.010000"],["2024-07-25T10:40:27.010000"],["2024-07-25T10:40:28.010000"],["2024-07-25T10:40:29.010000"],["2024-07-25T10:40:30.010000"],["2024-07-25T10:40:31.010000"],["2024-07-25T10:40:32.010000"],["2024-07-25T10:40:33.010000"],["2024-07-25T10:40:34.010000"],["2024-07-25T10:40:35.010000"],["2024-07-25T10:40:36.010000"],["2024-07-25T10:40:37.010000"],["2024-07-25T10:40:38.010000"],["2024-07-25T10:40:39.010000"],["2024-07-25T10:40:40.010000"],["2024-07-25T10:40:41.010000"],["2024-07-25T10:40:42.010000"],["2024-07-25T10:40:43.010000"],["2024-07-25T10:40:44.010000"],["2024-07-25T10:40:45.010000"],["2024-07-25T10:40:46.010000"],["2024-07-25T10:40:47.010000"],["2024-07-25T10:40:48.010000"],["2024-07-25T10:40:49.010000"],["2024-07-25T10:40:50.010000"],["2024-07-25T10:40:51.010000"],["2024-07-25T10:40:52.010000"],["2024-07-25T10:40:53.010000"],["2024-07-25T10:40:54.010000"],["2024-07-25T10:40:55.010000"],["2024-07-25T10:40:56.010000"],["2024-07-25T10:40:57.010000"],["2024-07-25T10:40:58.010000"],["2024-07-25T10:40:59.010000"],["2024-07-25T10:41:00.010000"],["2024-07-25T10:41:01.010000"],["2024-07-25T10:41:02.010000"],["2024-07-25T10:41:03.010000"],["2024-07-25T10:41:04.010000"],["2024-07-25T10:41:05.010000"],["2024-07-25T10:41:06.010000"],["2024-07-25T10:41:07.010000"],["2024-07-25T10:41:08.010000"],["2024-07-25T10:41:09.010000"],["2024-07-25T10:41:10.010000"],["2024-07-25T10:41:11.010000"],["2024-07-25T10:41:12.010000"],["2024-07-25T10:41:13.010000"],["2024-07-25T10:41:14.010000"],["2024-07-25T10:41:15.010000"],["2024-07-25T10:41:16.010000"],["2024-07-25T10:41:17.010000"],["2024-07-25T10:41:18.010000"],["2024-07-25T10:41:19.010000"],["2024-07-25T10:41:20.010000"],["2024-07-25T10:41:21.010000"],["2024-07-25T10:41:22.010000"],["2024-07-25T10:41:23.010000"],["2024-07-25T10:41:24.010000"],["2024-07-25T10:41:25.010000"],["2024-07-25T10:41:26.010000"],["2024-07-25T10:41:27.010000"],["2024-07-25T10:41:28.010000"],["2024-07-25T10:41:29.010000"],["2024-07-25T10:41:30.010000"],["2024-07-25T10:41:31.010000"],["2024-07-25T10:41:32.010000"],["2024-07-25T10:41:33.010000"],["2024-07-25T10:41:34.010000"],["2024-07-25T10:41:35.010000"],["2024-07-25T10:41:36.010000"],["2024-07-25T10:41:37.010000"],["2024-07-25T10:41:38.010000"],["2024-07-25T10:41:39.010000"],["2024-07-25T10:41:40.010000"],["2024-07-25T10:41:41.010000"],["2024-07-25T10:41:42.010000"],["2024-07-25T10:41:43.010000"],["2024-07-25T10:41:44.010000"],["2024-07-25T10:41:45.010000"],["2024-07-25T10:41:46.010000"],["2024-07-25T10:41:47.010000"],["2024-07-25T10:41:48.010000"],["2024-07-25T10:41:49.010000"],["2024-07-25T10:41:50.010000"],["2024-07-25T10:41:51.010000"],["2024-07-25T10:41:52.010000"],["2024-07-25T10:41:53.010000"],["2024-07-25T10:41:54.010000"],["2024-07-25T10:41:55.010000"],["2024-07-25T10:41:56.010000"],["2024-07-25T10:41:57.010000"],["2024-07-25T10:41:58.010000"],["2024-07-25T10:41:59.010000"],["2024-07-25T10:42:00.010000"],["2024-07-25T10:42:01.010000"],["2024-07-25T10:42:02.010000"],["2024-07-25T10:42:03.010000"],["2024-07-25T10:42:04.010000"],["2024-07-25T10:42:05.010000"],["2024-07-25T10:42:06.010000"],["2024-07-25T10:42:07.010000"],["2024-07-25T10:42:08.010000"],["2024-07-25T10:42:09.010000"],["2024-07-25T10:42:10.010000"],["2024-07-25T10:42:11.010000"],["2024-07-25T10:42:12.010000"],["2024-07-25T10:42:13.010000"],["2024-07-25T10:42:14.010000"],["2024-07-25T10:42:15.010000"],["2024-07-25T10:42:16.010000"],["2024-07-25T10:42:17.010000"],["2024-07-25T10:42:18.010000"],["2024-07-25T10:42:19.010000"],["2024-07-25T10:42:20.010000"],["2024-07-25T10:42:21.010000"],["2024-07-25T10:42:22.010000"],["2024-07-25T10:42:23.010000"],["2024-07-25T10:42:24.010000"],["2024-07-25T10:42:25.010000"],["2024-07-25T10:42:26.010000"],["2024-07-25T10:42:27.010000"],["2024-07-25T10:42:28.010000"],["2024-07-25T10:42:29.010000"],["2024-07-25T10:42:30.010000"],["2024-07-25T10:42:31.010000"],["2024-07-25T10:42:32.010000"],["2024-07-25T10:42:33.010000"],["2024-07-25T10:42:34.010000"],["2024-07-25T10:42:35.010000"],["2024-07-25T10:42:36.010000"],["2024-07-25T10:42:37.010000"],["2024-07-25T10:42:38.010000"],["2024-07-25T10:42:39.010000"],["2024-07-25T10:42:40.010000"],["2024-07-25T10:42:41.010000"],["2024-07-25T10:42:42.010000"],["2024-07-25T10:42:43.010000"],["2024-07-25T10:42:44.010000"],["2024-07-25T10:42:45.010000"],["2024-07-25T10:42:46.010000"],["2024-07-25T10:42:47.010000"],["2024-07-25T10:42:48.010000"],["2024-07-25T10:42:49.010000"],["2024-07-25T10:42:50.010000"],["2024-07-25T10:42:51.010000"],["2024-07-25T10:42:52.010000"],["2024-07-25T10:42:53.010000"],["2024-07-25T10:42:54.010000"],["2024-07-25T10:42:55.010000"],["2024-07-25T10:42:56.010000"],["2024-07-25T10:42:57.010000"],["2024-07-25T10:42:58.010000"],["2024-07-25T10:42:59.010000"],["2024-07-25T10:43:00.010000"],["2024-07-25T10:43:01.010000"],["2024-07-25T10:43:02.010000"],["2024-07-25T10:43:03.010000"],["2024-07-25T10:43:04.010000"],["2024-07-25T10:43:05.010000"],["2024-07-25T10:43:06.010000"],["2024-07-25T10:43:07.010000"],["2024-07-25T10:43:08.010000"],["2024-07-25T10:43:09.010000"],["2024-07-25T10:43:10.010000"],["2024-07-25T10:43:11.010000"],["2024-07-25T10:43:12.010000"],["2024-07-25T10:43:13.010000"],["2024-07-25T10:43:14.010000"],["2024-07-25T10:43:15.010000"],["2024-07-25T10:43:16.010000"],["2024-07-25T10:43:17.010000"],["2024-07-25T10:43:18.010000"],["2024-07-25T10:43:19.010000"],["2024-07-25T10:43:20.010000"],["2024-07-25T10:43:21.010000"],["2024-07-25T10:43:22.010000"],["2024-07-25T10:43:23.010000"],["2024-07-25T10:43:24.010000"],["2024-07-25T10:43:25.010000"],["2024-07-25T10:43:26.010000"],["2024-07-25T10:43:27.010000"],["2024-07-25T10:43:28.010000"],["2024-07-25T10:43:29.010000"],["2024-07-25T10:43:30.010000"],["2024-07-25T10:43:31.010000"],["2024-07-25T10:43:32.010000"],["2024-07-25T10:43:33.010000"],["2024-07-25T10:43:34.010000"],["2024-07-25T10:43:35.010000"],["2024-07-25T10:43:36.010000"],["2024-07-25T10:43:37.010000"],["2024-07-25T10:43:38.010000"],["2024-07-25T10:43:39.010000"],["2024-07-25T10:43:40.010000"],["2024-07-25T10:43:41.010000"],["2024-07-25T10:43:42.010000"],["2024-07-25T10:43:43.010000"],["2024-07-25T10:43:44.010000"],["2024-07-25T10:43:45.010000"],["2024-07-25T10:43:46.010000"],["2024-07-25T10:43:47.010000"],["2024-07-25T10:43:48.010000"],["2024-07-25T10:43:49.010000"],["2024-07-25T10:43:50.010000"],["2024-07-25T10:43:51.010000"],["2024-07-25T10:43:52.010000"],["2024-07-25T10:43:53.010000"],["2024-07-25T10:43:54.010000"],["2024-07-25T10:43:55.010000"],["2024-07-25T10:43:56.010000"],["2024-07-25T10:43:57.010000"],["2024-07-25T10:43:58.010000"],["2024-07-25T10:43:59.010000"],["2024-07-25T10:44:00.010000"],["2024-07-25T10:44:01.010000"],["2024-07-25T10:44:02.010000"],["2024-07-25T10:44:03.010000"],["2024-07-25T10:44:04.010000"],["2024-07-25T10:44:05.010000"],["2024-07-25T10:44:06.010000"],["2024-07-25T10:44:07.010000"],["2024-07-25T10:44:08.010000"],["2024-07-25T10:44:09.010000"],["2024-07-25T10:44:10.010000"],["2024-07-25T10:44:11.010000"],["2024-07-25T10:44:12.010000"],["2024-07-25T10:44:13.010000"],["2024-07-25T10:44:14.010000"],["2024-07-25T10:44:15.010000"],["2024-07-25T10:44:16.010000"],["2024-07-25T10:44:17.010000"],["2024-07-25T10:44:18.010000"],["2024-07-25T10:44:19.010000"],["2024-07-25T10:44:20.010000"],["2024-07-25T10:44:21.010000"],["2024-07-25T10:44:22.010000"],["2024-07-25T10:44:23.010000"],["2024-07-25T10:44:24.010000"],["2024-07-25T10:44:25.010000"],["2024-07-25T10:44:26.010000"],["2024-07-25T10:44:27.010000"],["2024-07-25T10:44:28.010000"],["2024-07-25T10:44:29.010000"],["2024-07-25T10:44:30.010000"],["2024-07-25T10:44:31.010000"],["2024-07-25T10:44:32.010000"],["2024-07-25T10:44:33.010000"],["2024-07-25T10:44:34.010000"],["2024-07-25T10:44:35.010000"],["2024-07-25T10:44:36.010000"],["2024-07-25T10:44:37.010000"],["2024-07-25T10:44:38.010000"],["2024-07-25T10:44:39.010000"],["2024-07-25T10:44:40.010000"],["2024-07-25T10:44:41.010000"],["2024-07-25T10:44:42.010000"],["2024-07-25T10:44:43.010000"],["2024-07-25T10:44:44.010000"],["2024-07-25T10:44:45.010000"],["2024-07-25T10:44:46.010000"],["2024-07-25T10:44:47.010000"],["2024-07-25T10:44:48.010000"],["2024-07-25T10:44:49.010000"],["2024-07-25T10:44:50.010000"],["2024-07-25T10:44:51.010000"],["2024-07-25T10:44:52.010000"],["2024-07-25T10:44:53.010000"],["2024-07-25T10:44:54.010000"],["2024-07-25T10:44:55.010000"],["2024-07-25T10:44:56.010000"],["2024-07-25T10:44:57.010000"],["2024-07-25T10:44:58.010000"],["2024-07-25T10:44:59.010000"],["2024-07-25T10:45:00.010000"],["2024-07-25T10:45:01.010000"],["2024-07-25T10:45:02.010000"],["2024-07-25T10:45:03.010000"],["2024-07-25T10:45:04.010000"],["2024-07-25T10:45:05.010000"],["2024-07-25T10:45:06.010000"],["2024-07-25T10:45:07.010000"],["2024-07-25T10:45:08.010000"],["2024-07-25T10:45:09.010000"],["2024-07-25T10:45:10.010000"],["2024-07-25T10:45:11.010000"],["2024-07-25T10:45:12.010000"],["2024-07-25T10:45:13.010000"],["2024-07-25T10:45:14.010000"],["2024-07-25T10:45:15.010000"],["2024-07-25T10:45:16.010000"],["2024-07-25T10:45:17.010000"],["2024-07-25T10:45:18.010000"],["2024-07-25T10:45:19.010000"],["2024-07-25T10:45:20.010000"],["2024-07-25T10:45:21.010000"],["2024-07-25T10:45:22.010000"],["2024-07-25T10:45:23.010000"],["2024-07-25T10:45:24.010000"],["2024-07-25T10:45:25.010000"],["2024-07-25T10:45:26.010000"],["2024-07-25T10:45:27.010000"],["2024-07-25T10:45:28.010000"],["2024-07-25T10:45:29.010000"],["2024-07-25T10:45:30.010000"],["2024-07-25T10:45:31.010000"],["2024-07-25T10:45:32.010000"],["2024-07-25T10:45:33.010000"],["2024-07-25T10:45:34.010000"],["2024-07-25T10:45:35.010000"],["2024-07-25T10:45:36.010000"],["2024-07-25T10:45:37.010000"],["2024-07-25T10:45:38.010000"],["2024-07-25T10:45:39.010000"],["2024-07-25T10:45:40.010000"],["2024-07-25T10:45:41.010000"],["2024-07-25T10:45:42.010000"],["2024-07-25T10:45:43.010000"],["2024-07-25T10:45:44.010000"],["2024-07-25T10:45:45.010000"],["2024-07-25T10:45:46.010000"],["2024-07-25T10:45:47.010000"],["2024-07-25T10:45:48.010000"],["2024-07-25T10:45:49.010000"],["2024-07-25T10:45:50.010000"],["2024-07-25T10:45:51.010000"],["2024-07-25T10:45:52.010000"],["2024-07-25T10:45:53.010000"],["2024-07-25T10:45:54.010000"],["2024-07-25T10:45:55.010000"],["2024-07-25T10:45:56.010000"],["2024-07-25T10:45:57.010000"],["2024-07-25T10:45:58.010000"],["2024-07-25T10:45:59.010000"],["2024-07-25T10:46:00.010000"],["2024-07-25T10:46:01.010000"],["2024-07-25T10:46:02.010000"],["2024-07-25T10:46:03.010000"],["2024-07-25T10:46:04.010000"],["2024-07-25T10:46:05.010000"],["2024-07-25T10:46:06.010000"],["2024-07-25T10:46:07.010000"],["2024-07-25T10:46:08.010000"],["2024-07-25T10:46:09.010000"],["2024-07-25T10:46:10.010000"],["2024-07-25T10:46:11.010000"],["2024-07-25T10:46:12.010000"],["2024-07-25T10:46:13.010000"],["2024-07-25T10:46:14.010000"],["2024-07-25T10:46:15.010000"],["2024-07-25T10:46:16.010000"],["2024-07-25T10:46:17.010000"],["2024-07-25T10:46:18.010000"],["2024-07-25T10:46:19.010000"],["2024-07-25T10:46:20.010000"],["2024-07-25T10:46:21.010000"],["2024-07-25T10:46:22.010000"],["2024-07-25T10:46:23.010000"],["2024-07-25T10:46:24.010000"],["2024-07-25T10:46:25.010000"],["2024-07-25T10:46:26.010000"],["2024-07-25T10:46:27.010000"],["2024-07-25T10:46:28.010000"],["2024-07-25T10:46:29.010000"],["2024-07-25T10:46:30.010000"],["2024-07-25T10:46:31.010000"],["2024-07-25T10:46:32.010000"],["2024-07-25T10:46:33.010000"],["2024-07-25T10:46:34.010000"],["2024-07-25T10:46:35.010000"],["2024-07-25T10:46:36.010000"],["2024-07-25T10:46:37.010000"],["2024-07-25T10:46:38.010000"],["2024-07-25T10:46:39.010000"],["2024-07-25T10:46:40.010000"],["2024-07-25T10:46:41.010000"],["2024-07-25T10:46:42.010000"],["2024-07-25T10:46:43.010000"],["2024-07-25T10:46:44.010000"],["2024-07-25T10:46:45.010000"],["2024-07-25T10:46:46.010000"],["2024-07-25T10:46:47.010000"],["2024-07-25T10:46:48.010000"],["2024-07-25T10:46:49.010000"],["2024-07-25T10:46:50.010000"],["2024-07-25T10:46:51.010000"],["2024-07-25T10:46:52.010000"],["2024-07-25T10:46:53.010000"],["2024-07-25T10:46:54.010000"],["2024-07-25T10:46:55.010000"],["2024-07-25T10:46:56.010000"],["2024-07-25T10:46:57.010000"],["2024-07-25T10:46:58.010000"],["2024-07-25T10:46:59.010000"],["2024-07-25T10:47:00.010000"],["2024-07-25T10:47:01.010000"],["2024-07-25T10:47:02.010000"],["2024-07-25T10:47:03.010000"],["2024-07-25T10:47:04.010000"],["2024-07-25T10:47:05.010000"],["2024-07-25T10:47:06.010000"],["2024-07-25T10:47:07.010000"],["2024-07-25T10:47:08.010000"],["2024-07-25T10:47:09.010000"],["2024-07-25T10:47:10.010000"],["2024-07-25T10:47:11.010000"],["2024-07-25T10:47:12.010000"],["2024-07-25T10:47:13.010000"],["2024-07-25T10:47:14.010000"],["2024-07-25T10:47:15.010000"],["2024-07-25T10:47:16.010000"],["2024-07-25T10:47:17.010000"],["2024-07-25T10:47:18.010000"],["2024-07-25T10:47:19.010000"],["2024-07-25T10:47:20.010000"],["2024-07-25T10:47:21.010000"],["2024-07-25T10:47:22.010000"],["2024-07-25T10:47:23.010000"],["2024-07-25T10:47:24.010000"],["2024-07-25T10:47:25.010000"],["2024-07-25T10:47:26.010000"],["2024-07-25T10:47:27.010000"],["2024-07-25T10:47:28.010000"],["2024-07-25T10:47:29.010000"],["2024-07-25T10:47:30.010000"],["2024-07-25T10:47:31.010000"],["2024-07-25T10:47:32.010000"],["2024-07-25T10:47:33.010000"],["2024-07-25T10:47:34.010000"],["2024-07-25T10:47:35.010000"],["2024-07-25T10:47:36.010000"],["2024-07-25T10:47:37.010000"],["2024-07-25T10:47:38.010000"],["2024-07-25T10:47:39.010000"],["2024-07-25T10:47:40.010000"],["2024-07-25T10:47:41.010000"],["2024-07-25T10:47:42.010000"],["2024-07-25T10:47:43.010000"],["2024-07-25T10:47:44.010000"],["2024-07-25T10:47:45.010000"],["2024-07-25T10:47:46.010000"],["2024-07-25T10:47:47.010000"],["2024-07-25T10:47:48.010000"],["2024-07-25T10:47:49.010000"],["2024-07-25T10:47:50.010000"],["2024-07-25T10:47:51.010000"],["2024-07-25T10:47:52.010000"],["2024-07-25T10:47:53.010000"],["2024-07-25T10:47:54.010000"],["2024-07-25T10:47:55.010000"],["2024-07-25T10:47:56.010000"],["2024-07-25T10:47:57.010000"],["2024-07-25T10:47:58.010000"],["2024-07-25T10:47:59.010000"],["2024-07-25T10:48:00.010000"],["2024-07-25T10:48:01.010000"],["2024-07-25T10:48:02.010000"],["2024-07-25T10:48:03.010000"],["2024-07-25T10:48:04.010000"],["2024-07-25T10:48:05.010000"],["2024-07-25T10:48:06.010000"],["2024-07-25T10:48:07.010000"],["2024-07-25T10:48:08.010000"],["2024-07-25T10:48:09.010000"],["2024-07-25T10:48:10.010000"],["2024-07-25T10:48:11.010000"],["2024-07-25T10:48:12.010000"],["2024-07-25T10:48:13.010000"],["2024-07-25T10:48:14.010000"],["2024-07-25T10:48:15.010000"],["2024-07-25T10:48:16.010000"],["2024-07-25T10:48:17.010000"],["2024-07-25T10:48:18.010000"],["2024-07-25T10:48:19.010000"],["2024-07-25T10:48:20.010000"],["2024-07-25T10:48:21.010000"],["2024-07-25T10:48:22.010000"],["2024-07-25T10:48:23.010000"],["2024-07-25T10:48:24.010000"],["2024-07-25T10:48:25.010000"],["2024-07-25T10:48:26.010000"],["2024-07-25T10:48:27.010000"],["2024-07-25T10:48:28.010000"],["2024-07-25T10:48:29.010000"],["2024-07-25T10:48:30.010000"],["2024-07-25T10:48:31.010000"],["2024-07-25T10:48:32.010000"],["2024-07-25T10:48:33.010000"],["2024-07-25T10:48:34.010000"],["2024-07-25T10:48:35.010000"],["2024-07-25T10:48:36.010000"],["2024-07-25T10:48:37.010000"],["2024-07-25T10:48:38.010000"],["2024-07-25T10:48:39.010000"],["2024-07-25T10:48:40.010000"],["2024-07-25T10:48:41.010000"],["2024-07-25T10:48:42.010000"],["2024-07-25T10:48:43.010000"],["2024-07-25T10:48:44.010000"],["2024-07-25T10:48:45.010000"],["2024-07-25T10:48:46.010000"],["2024-07-25T10:48:47.010000"],["2024-07-25T10:48:48.010000"],["2024-07-25T10:48:49.010000"],["2024-07-25T10:48:50.010000"],["2024-07-25T10:48:51.010000"],["2024-07-25T10:48:52.010000"],["2024-07-25T10:48:53.010000"],["2024-07-25T10:48:54.010000"],["2024-07-25T10:48:55.010000"],["2024-07-25T10:48:56.010000"],["2024-07-25T10:48:57.010000"],["2024-07-25T10:48:58.010000"],["2024-07-25T10:48:59.010000"],["2024-07-25T10:49:00.010000"],["2024-07-25T10:49:01.010000"],["2024-07-25T10:49:02.010000"],["2024-07-25T10:49:03.010000"],["2024-07-25T10:49:04.010000"],["2024-07-25T10:49:05.010000"],["2024-07-25T10:49:06.010000"],["2024-07-25T10:49:07.010000"],["2024-07-25T10:49:08.010000"],["2024-07-25T10:49:09.010000"],["2024-07-25T10:49:10.010000"],["2024-07-25T10:49:11.010000"],["2024-07-25T10:49:12.010000"],["2024-07-25T10:49:13.010000"],["2024-07-25T10:49:14.010000"],["2024-07-25T10:49:15.010000"],["2024-07-25T10:49:16.010000"],["2024-07-25T10:49:17.010000"],["2024-07-25T10:49:18.010000"],["2024-07-25T10:49:19.010000"],["2024-07-25T10:49:20.010000"],["2024-07-25T10:49:21.010000"],["2024-07-25T10:49:22.010000"],["2024-07-25T10:49:23.010000"],["2024-07-25T10:49:24.010000"],["2024-07-25T10:49:25.010000"],["2024-07-25T10:49:26.010000"],["2024-07-25T10:49:27.010000"],["2024-07-25T10:49:28.010000"],["2024-07-25T10:49:29.010000"],["2024-07-25T10:49:30.010000"],["2024-07-25T10:49:31.010000"],["2024-07-25T10:49:32.010000"],["2024-07-25T10:49:33.010000"],["2024-07-25T10:49:34.010000"],["2024-07-25T10:49:35.010000"],["2024-07-25T10:49:36.010000"],["2024-07-25T10:49:37.010000"],["2024-07-25T10:49:38.010000"],["2024-07-25T10:49:39.010000"],["2024-07-25T10:49:40.010000"],["2024-07-25T10:49:41.010000"],["2024-07-25T10:49:42.010000"],["2024-07-25T10:49:43.010000"],["2024-07-25T10:49:44.010000"],["2024-07-25T10:49:45.010000"],["2024-07-25T10:49:46.010000"],["2024-07-25T10:49:47.010000"],["2024-07-25T10:49:48.010000"],["2024-07-25T10:49:49.010000"],["2024-07-25T10:49:50.010000"],["2024-07-25T10:49:51.010000"],["2024-07-25T10:49:52.010000"],["2024-07-25T10:49:53.010000"],["2024-07-25T10:49:54.010000"],["2024-07-25T10:49:55.010000"],["2024-07-25T10:49:56.010000"],["2024-07-25T10:49:57.010000"],["2024-07-25T10:49:58.010000"],["2024-07-25T10:49:59.010000"],["2024-07-25T10:50:00.010000"],["2024-07-25T10:50:01.010000"],["2024-07-25T10:50:02.010000"],["2024-07-25T10:50:03.010000"],["2024-07-25T10:50:04.010000"],["2024-07-25T10:50:05.010000"],["2024-07-25T10:50:06.010000"],["2024-07-25T10:50:07.010000"],["2024-07-25T10:50:08.010000"],["2024-07-25T10:50:09.010000"],["2024-07-25T10:50:10.010000"],["2024-07-25T10:50:11.010000"],["2024-07-25T10:50:12.010000"],["2024-07-25T10:50:13.010000"],["2024-07-25T10:50:14.010000"],["2024-07-25T10:50:15.010000"],["2024-07-25T10:50:16.010000"],["2024-07-25T10:50:17.010000"],["2024-07-25T10:50:18.010000"],["2024-07-25T10:50:19.010000"],["2024-07-25T10:50:20.010000"],["2024-07-25T10:50:21.010000"],["2024-07-25T10:50:22.010000"],["2024-07-25T10:50:23.010000"],["2024-07-25T10:50:24.010000"],["2024-07-25T10:50:25.010000"],["2024-07-25T10:50:26.010000"],["2024-07-25T10:50:27.010000"],["2024-07-25T10:50:28.010000"],["2024-07-25T10:50:29.010000"],["2024-07-25T10:50:30.010000"],["2024-07-25T10:50:31.010000"],["2024-07-25T10:50:32.010000"],["2024-07-25T10:50:33.010000"],["2024-07-25T10:50:34.010000"],["2024-07-25T10:50:35.010000"],["2024-07-25T10:50:36.010000"],["2024-07-25T10:50:37.010000"],["2024-07-25T10:50:38.010000"],["2024-07-25T10:50:39.010000"],["2024-07-25T10:50:40.010000"],["2024-07-25T10:50:41.010000"],["2024-07-25T10:50:42.010000"],["2024-07-25T10:50:43.010000"],["2024-07-25T10:50:44.010000"],["2024-07-25T10:50:45.010000"],["2024-07-25T10:50:46.010000"],["2024-07-25T10:50:47.010000"],["2024-07-25T10:50:48.010000"],["2024-07-25T10:50:49.010000"],["2024-07-25T10:50:50.010000"],["2024-07-25T10:50:51.010000"],["2024-07-25T10:50:52.010000"],["2024-07-25T10:50:53.010000"],["2024-07-25T10:50:54.010000"],["2024-07-25T10:50:55.010000"],["2024-07-25T10:50:56.010000"],["2024-07-25T10:50:57.010000"],["2024-07-25T10:50:58.010000"],["2024-07-25T10:50:59.010000"],["2024-07-25T10:51:00.010000"],["2024-07-25T10:51:01.010000"],["2024-07-25T10:51:02.010000"],["2024-07-25T10:51:03.010000"],["2024-07-25T10:51:04.010000"],["2024-07-25T10:51:05.010000"],["2024-07-25T10:51:06.010000"],["2024-07-25T10:51:07.010000"],["2024-07-25T10:51:08.010000"],["2024-07-25T10:51:09.010000"],["2024-07-25T10:51:10.010000"],["2024-07-25T10:51:11.010000"],["2024-07-25T10:51:12.010000"],["2024-07-25T10:51:13.010000"],["2024-07-25T10:51:14.010000"],["2024-07-25T10:51:15.010000"],["2024-07-25T10:51:16.010000"],["2024-07-25T10:51:17.010000"],["2024-07-25T10:51:18.010000"],["2024-07-25T10:51:19.010000"],["2024-07-25T10:51:20.010000"],["2024-07-25T10:51:21.010000"],["2024-07-25T10:51:22.010000"],["2024-07-25T10:51:23.010000"],["2024-07-25T10:51:24.010000"],["2024-07-25T10:51:25.010000"],["2024-07-25T10:51:26.010000"],["2024-07-25T10:51:27.010000"],["2024-07-25T10:51:28.010000"],["2024-07-25T10:51:29.010000"],["2024-07-25T10:51:30.010000"],["2024-07-25T10:51:31.010000"],["2024-07-25T10:51:32.010000"],["2024-07-25T10:51:33.010000"],["2024-07-25T10:51:34.010000"],["2024-07-25T10:51:35.010000"],["2024-07-25T10:51:36.010000"],["2024-07-25T10:51:37.010000"],["2024-07-25T10:51:38.010000"],["2024-07-25T10:51:39.010000"],["2024-07-25T10:51:40.010000"],["2024-07-25T10:51:41.010000"],["2024-07-25T10:51:42.010000"],["2024-07-25T10:51:43.010000"],["2024-07-25T10:51:44.010000"],["2024-07-25T10:51:45.010000"],["2024-07-25T10:51:46.010000"],["2024-07-25T10:51:47.010000"],["2024-07-25T10:51:48.010000"],["2024-07-25T10:51:49.010000"],["2024-07-25T10:51:50.010000"],["2024-07-25T10:51:51.010000"],["2024-07-25T10:51:52.010000"],["2024-07-25T10:51:53.010000"],["2024-07-25T10:51:54.010000"],["2024-07-25T10:51:55.010000"],["2024-07-25T10:51:56.010000"],["2024-07-25T10:51:57.010000"],["2024-07-25T10:51:58.010000"],["2024-07-25T10:51:59.010000"],["2024-07-25T10:52:00.010000"],["2024-07-25T10:52:01.010000"],["2024-07-25T10:52:02.010000"],["2024-07-25T10:52:03.010000"],["2024-07-25T10:52:04.010000"],["2024-07-25T10:52:05.010000"],["2024-07-25T10:52:06.010000"],["2024-07-25T10:52:07.010000"],["2024-07-25T10:52:08.010000"],["2024-07-25T10:52:09.010000"],["2024-07-25T10:52:10.010000"],["2024-07-25T10:52:11.010000"],["2024-07-25T10:52:12.010000"],["2024-07-25T10:52:13.010000"],["2024-07-25T10:52:14.010000"],["2024-07-25T10:52:15.010000"],["2024-07-25T10:52:16.010000"],["2024-07-25T10:52:17.010000"],["2024-07-25T10:52:18.010000"],["2024-07-25T10:52:19.010000"],["2024-07-25T10:52:20.010000"],["2024-07-25T10:52:21.010000"],["2024-07-25T10:52:22.010000"],["2024-07-25T10:52:23.010000"],["2024-07-25T10:52:24.010000"],["2024-07-25T10:52:25.010000"],["2024-07-25T10:52:26.010000"],["2024-07-25T10:52:27.010000"],["2024-07-25T10:52:28.010000"],["2024-07-25T10:52:29.010000"],["2024-07-25T10:52:30.010000"],["2024-07-25T10:52:31.010000"],["2024-07-25T10:52:32.010000"],["2024-07-25T10:52:33.010000"],["2024-07-25T10:52:34.010000"],["2024-07-25T10:52:35.010000"],["2024-07-25T10:52:36.010000"],["2024-07-25T10:52:37.010000"],["2024-07-25T10:52:38.010000"],["2024-07-25T10:52:39.010000"],["2024-07-25T10:52:40.010000"],["2024-07-25T10:52:41.010000"],["2024-07-25T10:52:42.010000"],["2024-07-25T10:52:43.010000"],["2024-07-25T10:52:44.010000"],["2024-07-25T10:52:45.010000"],["2024-07-25T10:52:46.010000"],["2024-07-25T10:52:47.010000"],["2024-07-25T10:52:48.010000"],["2024-07-25T10:52:49.010000"],["2024-07-25T10:52:50.010000"],["2024-07-25T10:52:51.010000"],["2024-07-25T10:52:52.010000"],["2024-07-25T10:52:53.010000"],["2024-07-25T10:52:54.010000"],["2024-07-25T10:52:55.010000"],["2024-07-25T10:52:56.010000"],["2024-07-25T10:52:57.010000"],["2024-07-25T10:52:58.010000"],["2024-07-25T10:52:59.010000"],["2024-07-25T10:53:00.010000"],["2024-07-25T10:53:01.010000"],["2024-07-25T10:53:02.010000"],["2024-07-25T10:53:03.010000"],["2024-07-25T10:53:04.010000"],["2024-07-25T10:53:05.010000"],["2024-07-25T10:53:06.010000"],["2024-07-25T10:53:07.010000"],["2024-07-25T10:53:08.010000"],["2024-07-25T10:53:09.010000"],["2024-07-25T10:53:10.010000"],["2024-07-25T10:53:11.010000"],["2024-07-25T10:53:12.010000"],["2024-07-25T10:53:13.010000"],["2024-07-25T10:53:14.010000"],["2024-07-25T10:53:15.010000"],["2024-07-25T10:53:16.010000"],["2024-07-25T10:53:17.010000"],["2024-07-25T10:53:18.010000"],["2024-07-25T10:53:19.010000"],["2024-07-25T10:53:20.010000"],["2024-07-25T10:53:21.010000"],["2024-07-25T10:53:22.010000"],["2024-07-25T10:53:23.010000"],["2024-07-25T10:53:24.010000"],["2024-07-25T10:53:25.010000"],["2024-07-25T10:53:26.010000"],["2024-07-25T10:53:27.010000"],["2024-07-25T10:53:28.010000"],["2024-07-25T10:53:29.010000"],["2024-07-25T10:53:30.010000"],["2024-07-25T10:53:31.010000"],["2024-07-25T10:53:32.010000"],["2024-07-25T10:53:33.010000"],["2024-07-25T10:53:34.010000"],["2024-07-25T10:53:35.010000"],["2024-07-25T10:53:36.010000"],["2024-07-25T10:53:37.010000"],["2024-07-25T10:53:38.010000"],["2024-07-25T10:53:39.010000"],["2024-07-25T10:53:40.010000"],["2024-07-25T10:53:41.010000"],["2024-07-25T10:53:42.010000"],["2024-07-25T10:53:43.010000"],["2024-07-25T10:53:44.010000"],["2024-07-25T10:53:45.010000"],["2024-07-25T10:53:46.010000"],["2024-07-25T10:53:47.010000"],["2024-07-25T10:53:48.010000"],["2024-07-25T10:53:49.010000"],["2024-07-25T10:53:50.010000"],["2024-07-25T10:53:51.010000"],["2024-07-25T10:53:52.010000"],["2024-07-25T10:53:53.010000"],["2024-07-25T10:53:54.010000"],["2024-07-25T10:53:55.010000"],["2024-07-25T10:53:56.010000"],["2024-07-25T10:53:57.010000"],["2024-07-25T10:53:58.010000"],["2024-07-25T10:53:59.010000"],["2024-07-25T10:54:00.010000"],["2024-07-25T10:54:01.010000"],["2024-07-25T10:54:02.010000"],["2024-07-25T10:54:03.010000"],["2024-07-25T10:54:04.010000"],["2024-07-25T10:54:05.010000"],["2024-07-25T10:54:06.010000"],["2024-07-25T10:54:07.010000"],["2024-07-25T10:54:08.010000"],["2024-07-25T10:54:09.010000"],["2024-07-25T10:54:10.010000"],["2024-07-25T10:54:11.010000"],["2024-07-25T10:54:12.010000"],["2024-07-25T10:54:13.010000"],["2024-07-25T10:54:14.010000"],["2024-07-25T10:54:15.010000"],["2024-07-25T10:54:16.010000"],["2024-07-25T10:54:17.010000"],["2024-07-25T10:54:18.010000"],["2024-07-25T10:54:19.010000"],["2024-07-25T10:54:20.010000"],["2024-07-25T10:54:21.010000"],["2024-07-25T10:54:22.010000"],["2024-07-25T10:54:23.010000"],["2024-07-25T10:54:24.010000"],["2024-07-25T10:54:25.010000"],["2024-07-25T10:54:26.010000"],["2024-07-25T10:54:27.010000"],["2024-07-25T10:54:28.010000"],["2024-07-25T10:54:29.010000"],["2024-07-25T10:54:30.010000"],["2024-07-25T10:54:31.010000"],["2024-07-25T10:54:32.010000"],["2024-07-25T10:54:33.010000"],["2024-07-25T10:54:34.010000"],["2024-07-25T10:54:35.010000"],["2024-07-25T10:54:36.010000"],["2024-07-25T10:54:37.010000"],["2024-07-25T10:54:38.010000"],["2024-07-25T10:54:39.010000"],["2024-07-25T10:54:40.010000"],["2024-07-25T10:54:41.010000"],["2024-07-25T10:54:42.010000"],["2024-07-25T10:54:43.010000"],["2024-07-25T10:54:44.010000"],["2024-07-25T10:54:45.010000"],["2024-07-25T10:54:46.010000"],["2024-07-25T10:54:47.010000"],["2024-07-25T10:54:48.010000"],["2024-07-25T10:54:49.010000"],["2024-07-25T10:54:50.010000"],["2024-07-25T10:54:51.010000"],["2024-07-25T10:54:52.010000"],["2024-07-25T10:54:53.010000"],["2024-07-25T10:54:54.010000"],["2024-07-25T10:54:55.010000"],["2024-07-25T10:54:56.010000"],["2024-07-25T10:54:57.010000"],["2024-07-25T10:54:58.010000"],["2024-07-25T10:54:59.010000"],["2024-07-25T10:55:00.010000"],["2024-07-25T10:55:01.010000"],["2024-07-25T10:55:02.010000"],["2024-07-25T10:55:03.010000"],["2024-07-25T10:55:04.010000"],["2024-07-25T10:55:05.010000"],["2024-07-25T10:55:06.010000"],["2024-07-25T10:55:07.010000"],["2024-07-25T10:55:08.010000"],["2024-07-25T10:55:09.010000"],["2024-07-25T10:55:10.010000"],["2024-07-25T10:55:11.010000"],["2024-07-25T10:55:12.010000"],["2024-07-25T10:55:13.010000"],["2024-07-25T10:55:14.010000"],["2024-07-25T10:55:15.010000"],["2024-07-25T10:55:16.010000"],["2024-07-25T10:55:17.010000"],["2024-07-25T10:55:18.010000"],["2024-07-25T10:55:19.010000"],["2024-07-25T10:55:20.010000"],["2024-07-25T10:55:21.010000"],["2024-07-25T10:55:22.010000"],["2024-07-25T10:55:23.010000"],["2024-07-25T10:55:24.010000"],["2024-07-25T10:55:25.010000"],["2024-07-25T10:55:26.010000"],["2024-07-25T10:55:27.010000"],["2024-07-25T10:55:28.010000"],["2024-07-25T10:55:29.010000"],["2024-07-25T10:55:30.010000"],["2024-07-25T10:55:31.010000"],["2024-07-25T10:55:32.010000"],["2024-07-25T10:55:33.010000"],["2024-07-25T10:55:34.010000"],["2024-07-25T10:55:35.010000"],["2024-07-25T10:55:36.010000"],["2024-07-25T10:55:37.010000"],["2024-07-25T10:55:38.010000"],["2024-07-25T10:55:39.010000"],["2024-07-25T10:55:40.010000"],["2024-07-25T10:55:41.010000"],["2024-07-25T10:55:42.010000"],["2024-07-25T10:55:43.010000"],["2024-07-25T10:55:44.010000"],["2024-07-25T10:55:45.010000"],["2024-07-25T10:55:46.010000"],["2024-07-25T10:55:47.010000"],["2024-07-25T10:55:48.010000"],["2024-07-25T10:55:49.010000"],["2024-07-25T10:55:50.010000"],["2024-07-25T10:55:51.010000"],["2024-07-25T10:55:52.010000"],["2024-07-25T10:55:53.010000"],["2024-07-25T10:55:54.010000"],["2024-07-25T10:55:55.010000"],["2024-07-25T10:55:56.010000"],["2024-07-25T10:55:57.010000"],["2024-07-25T10:55:58.010000"],["2024-07-25T10:55:59.010000"],["2024-07-25T10:56:00.010000"],["2024-07-25T10:56:01.010000"],["2024-07-25T10:56:02.010000"],["2024-07-25T10:56:03.010000"],["2024-07-25T10:56:04.010000"],["2024-07-25T10:56:05.010000"],["2024-07-25T10:56:06.010000"],["2024-07-25T10:56:07.010000"],["2024-07-25T10:56:08.010000"],["2024-07-25T10:56:09.010000"],["2024-07-25T10:56:10.010000"],["2024-07-25T10:56:11.010000"],["2024-07-25T10:56:12.010000"],["2024-07-25T10:56:13.010000"],["2024-07-25T10:56:14.010000"],["2024-07-25T10:56:15.010000"],["2024-07-25T10:56:16.010000"],["2024-07-25T10:56:17.010000"],["2024-07-25T10:56:18.010000"],["2024-07-25T10:56:19.010000"],["2024-07-25T10:56:20.010000"],["2024-07-25T10:56:21.010000"],["2024-07-25T10:56:22.010000"],["2024-07-25T10:56:23.010000"],["2024-07-25T10:56:24.010000"],["2024-07-25T10:56:25.010000"],["2024-07-25T10:56:26.010000"],["2024-07-25T10:56:27.010000"],["2024-07-25T10:56:28.010000"],["2024-07-25T10:56:29.010000"],["2024-07-25T10:56:30.010000"],["2024-07-25T10:56:31.010000"],["2024-07-25T10:56:32.010000"],["2024-07-25T10:56:33.010000"],["2024-07-25T10:56:34.010000"],["2024-07-25T10:56:35.010000"],["2024-07-25T10:56:36.010000"],["2024-07-25T10:56:37.010000"],["2024-07-25T10:56:38.010000"],["2024-07-25T10:56:39.010000"],["2024-07-25T10:56:40.010000"],["2024-07-25T10:56:41.010000"],["2024-07-25T10:56:42.010000"],["2024-07-25T10:56:43.010000"],["2024-07-25T10:56:44.010000"],["2024-07-25T10:56:45.010000"],["2024-07-25T10:56:46.010000"],["2024-07-25T10:56:47.010000"],["2024-07-25T10:56:48.010000"],["2024-07-25T10:56:49.010000"],["2024-07-25T10:56:50.010000"],["2024-07-25T10:56:51.010000"],["2024-07-25T10:56:52.010000"],["2024-07-25T10:56:53.010000"],["2024-07-25T10:56:54.010000"],["2024-07-25T10:56:55.010000"],["2024-07-25T10:56:56.010000"],["2024-07-25T10:56:57.010000"],["2024-07-25T10:56:58.010000"],["2024-07-25T10:56:59.010000"],["2024-07-25T10:57:00.010000"],["2024-07-25T10:57:01.010000"],["2024-07-25T10:57:02.010000"],["2024-07-25T10:57:03.010000"],["2024-07-25T10:57:04.010000"],["2024-07-25T10:57:05.010000"],["2024-07-25T10:57:06.010000"],["2024-07-25T10:57:07.010000"],["2024-07-25T10:57:08.010000"],["2024-07-25T10:57:09.010000"],["2024-07-25T10:57:10.010000"],["2024-07-25T10:57:11.010000"],["2024-07-25T10:57:12.010000"],["2024-07-25T10:57:13.010000"],["2024-07-25T10:57:14.010000"],["2024-07-25T10:57:15.010000"],["2024-07-25T10:57:16.010000"],["2024-07-25T10:57:17.010000"],["2024-07-25T10:57:18.010000"],["2024-07-25T10:57:19.010000"],["2024-07-25T10:57:20.010000"],["2024-07-25T10:57:21.010000"],["2024-07-25T10:57:22.010000"],["2024-07-25T10:57:23.010000"],["2024-07-25T10:57:24.010000"],["2024-07-25T10:57:25.010000"],["2024-07-25T10:57:26.010000"],["2024-07-25T10:57:27.010000"],["2024-07-25T10:57:28.010000"],["2024-07-25T10:57:29.010000"],["2024-07-25T10:57:30.010000"],["2024-07-25T10:57:31.010000"],["2024-07-25T10:57:32.010000"],["2024-07-25T10:57:33.010000"],["2024-07-25T10:57:34.010000"],["2024-07-25T10:57:35.010000"],["2024-07-25T10:57:36.010000"],["2024-07-25T10:57:37.010000"],["2024-07-25T10:57:38.010000"],["2024-07-25T10:57:39.010000"],["2024-07-25T10:57:40.010000"],["2024-07-25T10:57:41.010000"],["2024-07-25T10:57:42.010000"],["2024-07-25T10:57:43.010000"],["2024-07-25T10:57:44.010000"],["2024-07-25T10:57:45.010000"],["2024-07-25T10:57:46.010000"],["2024-07-25T10:57:47.010000"],["2024-07-25T10:57:48.010000"],["2024-07-25T10:57:49.010000"],["2024-07-25T10:57:50.010000"],["2024-07-25T10:57:51.010000"],["2024-07-25T10:57:52.010000"],["2024-07-25T10:57:53.010000"],["2024-07-25T10:57:54.010000"],["2024-07-25T10:57:55.010000"],["2024-07-25T10:57:56.010000"],["2024-07-25T10:57:57.010000"],["2024-07-25T10:57:58.010000"],["2024-07-25T10:57:59.010000"],["2024-07-25T10:58:00.010000"],["2024-07-25T10:58:01.010000"],["2024-07-25T10:58:02.010000"],["2024-07-25T10:58:03.010000"],["2024-07-25T10:58:04.010000"],["2024-07-25T10:58:05.010000"],["2024-07-25T10:58:06.010000"],["2024-07-25T10:58:07.010000"],["2024-07-25T10:58:08.010000"],["2024-07-25T10:58:09.010000"],["2024-07-25T10:58:10.010000"],["2024-07-25T10:58:11.010000"],["2024-07-25T10:58:12.010000"],["2024-07-25T10:58:13.010000"],["2024-07-25T10:58:14.010000"],["2024-07-25T10:58:15.010000"],["2024-07-25T10:58:16.010000"],["2024-07-25T10:58:17.010000"],["2024-07-25T10:58:18.010000"],["2024-07-25T10:58:19.010000"],["2024-07-25T10:58:20.010000"],["2024-07-25T10:58:21.010000"],["2024-07-25T10:58:22.010000"],["2024-07-25T10:58:23.010000"],["2024-07-25T10:58:24.010000"],["2024-07-25T10:58:25.010000"],["2024-07-25T10:58:26.010000"],["2024-07-25T10:58:27.010000"],["2024-07-25T10:58:28.010000"],["2024-07-25T10:58:29.010000"],["2024-07-25T10:58:30.010000"],["2024-07-25T10:58:31.010000"],["2024-07-25T10:58:32.010000"],["2024-07-25T10:58:33.010000"],["2024-07-25T10:58:34.010000"],["2024-07-25T10:58:35.010000"],["2024-07-25T10:58:36.010000"],["2024-07-25T10:58:37.010000"],["2024-07-25T10:58:38.010000"],["2024-07-25T10:58:39.010000"],["2024-07-25T10:58:40.010000"],["2024-07-25T10:58:41.010000"],["2024-07-25T10:58:42.010000"],["2024-07-25T10:58:43.010000"],["2024-07-25T10:58:44.010000"],["2024-07-25T10:58:45.010000"],["2024-07-25T10:58:46.010000"],["2024-07-25T10:58:47.010000"],["2024-07-25T10:58:48.010000"],["2024-07-25T10:58:49.010000"],["2024-07-25T10:58:50.010000"],["2024-07-25T10:58:51.010000"],["2024-07-25T10:58:52.010000"],["2024-07-25T10:58:53.010000"],["2024-07-25T10:58:54.010000"],["2024-07-25T10:58:55.010000"],["2024-07-25T10:58:56.010000"],["2024-07-25T10:58:57.010000"],["2024-07-25T10:58:58.010000"],["2024-07-25T10:58:59.010000"],["2024-07-25T10:59:00.010000"],["2024-07-25T10:59:01.010000"],["2024-07-25T10:59:02.010000"],["2024-07-25T10:59:03.010000"],["2024-07-25T10:59:04.010000"],["2024-07-25T10:59:05.010000"],["2024-07-25T10:59:06.010000"],["2024-07-25T10:59:07.010000"],["2024-07-25T10:59:08.010000"],["2024-07-25T10:59:09.010000"],["2024-07-25T10:59:10.010000"],["2024-07-25T10:59:11.010000"],["2024-07-25T10:59:12.010000"],["2024-07-25T10:59:13.010000"],["2024-07-25T10:59:14.010000"],["2024-07-25T10:59:15.010000"],["2024-07-25T10:59:16.010000"],["2024-07-25T10:59:17.010000"],["2024-07-25T10:59:18.010000"],["2024-07-25T10:59:19.010000"],["2024-07-25T10:59:20.010000"],["2024-07-25T10:59:21.010000"],["2024-07-25T10:59:22.010000"],["2024-07-25T10:59:23.010000"],["2024-07-25T10:59:24.010000"],["2024-07-25T10:59:25.010000"],["2024-07-25T10:59:26.010000"],["2024-07-25T10:59:27.010000"],["2024-07-25T10:59:28.010000"],["2024-07-25T10:59:29.010000"],["2024-07-25T10:59:30.010000"],["2024-07-25T10:59:31.010000"],["2024-07-25T10:59:32.010000"],["2024-07-25T10:59:33.010000"],["2024-07-25T10:59:34.010000"],["2024-07-25T10:59:35.010000"],["2024-07-25T10:59:36.010000"],["2024-07-25T10:59:37.010000"],["2024-07-25T10:59:38.010000"],["2024-07-25T10:59:39.010000"],["2024-07-25T10:59:40.010000"],["2024-07-25T10:59:41.010000"],["2024-07-25T10:59:42.010000"],["2024-07-25T10:59:43.010000"],["2024-07-25T10:59:44.010000"],["2024-07-25T10:59:45.010000"],["2024-07-25T10:59:46.010000"],["2024-07-25T10:59:47.010000"],["2024-07-25T10:59:48.010000"],["2024-07-25T10:59:49.010000"],["2024-07-25T10:59:50.010000"],["2024-07-25T10:59:51.010000"],["2024-07-25T10:59:52.010000"],["2024-07-25T10:59:53.010000"],["2024-07-25T10:59:54.010000"],["2024-07-25T10:59:55.010000"],["2024-07-25T10:59:56.010000"],["2024-07-25T10:59:57.010000"],["2024-07-25T10:59:58.010000"],["2024-07-25T10:59:59.010000"],["2024-07-25T11:00:00.010000"],["2024-07-25T11:00:01.010000"],["2024-07-25T11:00:02.010000"],["2024-07-25T11:00:03.010000"],["2024-07-25T11:00:04.010000"],["2024-07-25T11:00:05.010000"],["2024-07-25T11:00:06.010000"],["2024-07-25T11:00:07.010000"],["2024-07-25T11:00:08.010000"],["2024-07-25T11:00:09.010000"],["2024-07-25T11:00:10.010000"],["2024-07-25T11:00:11.010000"],["2024-07-25T11:00:12.010000"],["2024-07-25T11:00:13.010000"],["2024-07-25T11:00:14.010000"],["2024-07-25T11:00:15.010000"],["2024-07-25T11:00:16.010000"],["2024-07-25T11:00:17.010000"],["2024-07-25T11:00:18.010000"],["2024-07-25T11:00:19.010000"],["2024-07-25T11:00:20.010000"],["2024-07-25T11:00:21.010000"],["2024-07-25T11:00:22.010000"],["2024-07-25T11:00:23.010000"],["2024-07-25T11:00:24.010000"],["2024-07-25T11:00:25.010000"],["2024-07-25T11:00:26.010000"],["2024-07-25T11:00:27.010000"],["2024-07-25T11:00:28.010000"],["2024-07-25T11:00:29.010000"],["2024-07-25T11:00:30.010000"],["2024-07-25T11:00:31.010000"],["2024-07-25T11:00:32.010000"],["2024-07-25T11:00:33.010000"],["2024-07-25T11:00:34.010000"],["2024-07-25T11:00:35.010000"],["2024-07-25T11:00:36.010000"],["2024-07-25T11:00:37.010000"],["2024-07-25T11:00:38.010000"],["2024-07-25T11:00:39.010000"],["2024-07-25T11:00:40.010000"],["2024-07-25T11:00:41.010000"],["2024-07-25T11:00:42.010000"],["2024-07-25T11:00:43.010000"],["2024-07-25T11:00:44.010000"],["2024-07-25T11:00:45.010000"],["2024-07-25T11:00:46.010000"],["2024-07-25T11:00:47.010000"],["2024-07-25T11:00:48.010000"],["2024-07-25T11:00:49.010000"],["2024-07-25T11:00:50.010000"],["2024-07-25T11:00:51.010000"],["2024-07-25T11:00:52.010000"],["2024-07-25T11:00:53.010000"],["2024-07-25T11:00:54.010000"],["2024-07-25T11:00:55.010000"],["2024-07-25T11:00:56.010000"],["2024-07-25T11:00:57.010000"],["2024-07-25T11:00:58.010000"],["2024-07-25T11:00:59.010000"],["2024-07-25T11:01:00.010000"],["2024-07-25T11:01:01.010000"],["2024-07-25T11:01:02.010000"],["2024-07-25T11:01:03.010000"],["2024-07-25T11:01:04.010000"],["2024-07-25T11:01:05.010000"],["2024-07-25T11:01:06.010000"],["2024-07-25T11:01:07.010000"],["2024-07-25T11:01:08.010000"],["2024-07-25T11:01:09.010000"],["2024-07-25T11:01:10.010000"],["2024-07-25T11:01:11.010000"],["2024-07-25T11:01:12.010000"],["2024-07-25T11:01:13.010000"],["2024-07-25T11:01:14.010000"],["2024-07-25T11:01:15.010000"],["2024-07-25T11:01:16.010000"],["2024-07-25T11:01:17.010000"],["2024-07-25T11:01:18.010000"],["2024-07-25T11:01:19.010000"],["2024-07-25T11:01:20.010000"],["2024-07-25T11:01:21.010000"],["2024-07-25T11:01:22.010000"],["2024-07-25T11:01:23.010000"],["2024-07-25T11:01:24.010000"],["2024-07-25T11:01:25.010000"],["2024-07-25T11:01:26.010000"],["2024-07-25T11:01:27.010000"],["2024-07-25T11:01:28.010000"],["2024-07-25T11:01:29.010000"],["2024-07-25T11:01:30.010000"],["2024-07-25T11:01:31.010000"],["2024-07-25T11:01:32.010000"],["2024-07-25T11:01:33.010000"],["2024-07-25T11:01:34.010000"],["2024-07-25T11:01:35.010000"],["2024-07-25T11:01:36.010000"],["2024-07-25T11:01:37.010000"],["2024-07-25T11:01:38.010000"],["2024-07-25T11:01:39.010000"],["2024-07-25T11:01:40.010000"],["2024-07-25T11:01:41.010000"],["2024-07-25T11:01:42.010000"],["2024-07-25T11:01:43.010000"],["2024-07-25T11:01:44.010000"],["2024-07-25T11:01:45.010000"],["2024-07-25T11:01:46.010000"],["2024-07-25T11:01:47.010000"],["2024-07-25T11:01:48.010000"],["2024-07-25T11:01:49.010000"],["2024-07-25T11:01:50.010000"],["2024-07-25T11:01:51.010000"],["2024-07-25T11:01:52.010000"],["2024-07-25T11:01:53.010000"],["2024-07-25T11:01:54.010000"],["2024-07-25T11:01:55.010000"],["2024-07-25T11:01:56.010000"],["2024-07-25T11:01:57.010000"],["2024-07-25T11:01:58.010000"],["2024-07-25T11:01:59.010000"],["2024-07-25T11:02:00.010000"],["2024-07-25T11:02:01.010000"],["2024-07-25T11:02:02.010000"],["2024-07-25T11:02:03.010000"],["2024-07-25T11:02:04.010000"],["2024-07-25T11:02:05.010000"],["2024-07-25T11:02:06.010000"],["2024-07-25T11:02:07.010000"],["2024-07-25T11:02:08.010000"],["2024-07-25T11:02:09.010000"],["2024-07-25T11:02:10.010000"],["2024-07-25T11:02:11.010000"],["2024-07-25T11:02:12.010000"],["2024-07-25T11:02:13.010000"],["2024-07-25T11:02:14.010000"],["2024-07-25T11:02:15.010000"],["2024-07-25T11:02:16.010000"],["2024-07-25T11:02:17.010000"],["2024-07-25T11:02:18.010000"],["2024-07-25T11:02:19.010000"],["2024-07-25T11:02:20.010000"],["2024-07-25T11:02:21.010000"],["2024-07-25T11:02:22.010000"],["2024-07-25T11:02:23.010000"],["2024-07-25T11:02:24.010000"],["2024-07-25T11:02:25.010000"],["2024-07-25T11:02:26.010000"],["2024-07-25T11:02:27.010000"],["2024-07-25T11:02:28.010000"],["2024-07-25T11:02:29.010000"],["2024-07-25T11:02:30.010000"],["2024-07-25T11:02:31.010000"],["2024-07-25T11:02:32.010000"],["2024-07-25T11:02:33.010000"],["2024-07-25T11:02:34.010000"],["2024-07-25T11:02:35.010000"],["2024-07-25T11:02:36.010000"],["2024-07-25T11:02:37.010000"],["2024-07-25T11:02:38.010000"],["2024-07-25T11:02:39.010000"],["2024-07-25T11:02:40.010000"],["2024-07-25T11:02:41.010000"],["2024-07-25T11:02:42.010000"],["2024-07-25T11:02:43.010000"],["2024-07-25T11:02:44.010000"],["2024-07-25T11:02:45.010000"],["2024-07-25T11:02:46.010000"],["2024-07-25T11:02:47.010000"],["2024-07-25T11:02:48.010000"],["2024-07-25T11:02:49.010000"],["2024-07-25T11:02:50.010000"],["2024-07-25T11:02:51.010000"],["2024-07-25T11:02:52.010000"],["2024-07-25T11:02:53.010000"],["2024-07-25T11:02:54.010000"],["2024-07-25T11:02:55.010000"],["2024-07-25T11:02:56.010000"],["2024-07-25T11:02:57.010000"],["2024-07-25T11:02:58.010000"],["2024-07-25T11:02:59.010000"],["2024-07-25T11:03:00.010000"],["2024-07-25T11:03:01.010000"],["2024-07-25T11:03:02.010000"],["2024-07-25T11:03:03.010000"],["2024-07-25T11:03:04.010000"],["2024-07-25T11:03:05.010000"],["2024-07-25T11:03:06.010000"],["2024-07-25T11:03:07.010000"],["2024-07-25T11:03:08.010000"],["2024-07-25T11:03:09.010000"],["2024-07-25T11:03:10.010000"],["2024-07-25T11:03:11.010000"],["2024-07-25T11:03:12.010000"],["2024-07-25T11:03:13.010000"],["2024-07-25T11:03:14.010000"],["2024-07-25T11:03:15.010000"],["2024-07-25T11:03:16.010000"],["2024-07-25T11:03:17.010000"],["2024-07-25T11:03:18.010000"],["2024-07-25T11:03:19.010000"],["2024-07-25T11:03:20.010000"],["2024-07-25T11:03:21.010000"],["2024-07-25T11:03:22.010000"],["2024-07-25T11:03:23.010000"],["2024-07-25T11:03:24.010000"],["2024-07-25T11:03:25.010000"],["2024-07-25T11:03:26.010000"],["2024-07-25T11:03:27.010000"],["2024-07-25T11:03:28.010000"],["2024-07-25T11:03:29.010000"],["2024-07-25T11:03:30.010000"],["2024-07-25T11:03:31.010000"],["2024-07-25T11:03:32.010000"],["2024-07-25T11:03:33.010000"],["2024-07-25T11:03:34.010000"],["2024-07-25T11:03:35.010000"],["2024-07-25T11:03:36.010000"],["2024-07-25T11:03:37.010000"],["2024-07-25T11:03:38.010000"],["2024-07-25T11:03:39.010000"],["2024-07-25T11:03:40.010000"],["2024-07-25T11:03:41.010000"],["2024-07-25T11:03:42.010000"],["2024-07-25T11:03:43.010000"],["2024-07-25T11:03:44.010000"],["2024-07-25T11:03:45.010000"],["2024-07-25T11:03:46.010000"],["2024-07-25T11:03:47.010000"],["2024-07-25T11:03:48.010000"],["2024-07-25T11:03:49.010000"],["2024-07-25T11:03:50.010000"],["2024-07-25T11:03:51.010000"],["2024-07-25T11:03:52.010000"],["2024-07-25T11:03:53.010000"],["2024-07-25T11:03:54.010000"],["2024-07-25T11:03:55.010000"],["2024-07-25T11:03:56.010000"],["2024-07-25T11:03:57.010000"],["2024-07-25T11:03:58.010000"],["2024-07-25T11:03:59.010000"],["2024-07-25T11:04:00.010000"],["2024-07-25T11:04:01.010000"],["2024-07-25T11:04:02.010000"],["2024-07-25T11:04:03.010000"],["2024-07-25T11:04:04.010000"],["2024-07-25T11:04:05.010000"],["2024-07-25T11:04:06.010000"],["2024-07-25T11:04:07.010000"],["2024-07-25T11:04:08.010000"],["2024-07-25T11:04:09.010000"],["2024-07-25T11:04:10.010000"],["2024-07-25T11:04:11.010000"],["2024-07-25T11:04:12.010000"],["2024-07-25T11:04:13.010000"],["2024-07-25T11:04:14.010000"],["2024-07-25T11:04:15.010000"],["2024-07-25T11:04:16.010000"],["2024-07-25T11:04:17.010000"],["2024-07-25T11:04:18.010000"],["2024-07-25T11:04:19.010000"],["2024-07-25T11:04:20.010000"],["2024-07-25T11:04:21.010000"],["2024-07-25T11:04:22.010000"],["2024-07-25T11:04:23.010000"],["2024-07-25T11:04:24.010000"],["2024-07-25T11:04:25.010000"],["2024-07-25T11:04:26.010000"],["2024-07-25T11:04:27.010000"],["2024-07-25T11:04:28.010000"],["2024-07-25T11:04:29.010000"],["2024-07-25T11:04:30.010000"],["2024-07-25T11:04:31.010000"],["2024-07-25T11:04:32.010000"],["2024-07-25T11:04:33.010000"],["2024-07-25T11:04:34.010000"],["2024-07-25T11:04:35.010000"],["2024-07-25T11:04:36.010000"],["2024-07-25T11:04:37.010000"],["2024-07-25T11:04:38.010000"],["2024-07-25T11:04:39.010000"],["2024-07-25T11:04:40.010000"],["2024-07-25T11:04:41.010000"],["2024-07-25T11:04:42.010000"],["2024-07-25T11:04:43.010000"],["2024-07-25T11:04:44.010000"],["2024-07-25T11:04:45.010000"],["2024-07-25T11:04:46.010000"],["2024-07-25T11:04:47.010000"],["2024-07-25T11:04:48.010000"],["2024-07-25T11:04:49.010000"],["2024-07-25T11:04:50.010000"],["2024-07-25T11:04:51.010000"],["2024-07-25T11:04:52.010000"],["2024-07-25T11:04:53.010000"],["2024-07-25T11:04:54.010000"],["2024-07-25T11:04:55.010000"],["2024-07-25T11:04:56.010000"],["2024-07-25T11:04:57.010000"],["2024-07-25T11:04:58.010000"],["2024-07-25T11:04:59.010000"],["2024-07-25T11:05:00.010000"],["2024-07-25T11:05:01.010000"],["2024-07-25T11:05:02.010000"],["2024-07-25T11:05:03.010000"],["2024-07-25T11:05:04.010000"],["2024-07-25T11:05:05.010000"],["2024-07-25T11:05:06.010000"],["2024-07-25T11:05:07.010000"],["2024-07-25T11:05:08.010000"],["2024-07-25T11:05:09.010000"],["2024-07-25T11:05:10.010000"],["2024-07-25T11:05:11.010000"],["2024-07-25T11:05:12.010000"],["2024-07-25T11:05:13.010000"],["2024-07-25T11:05:14.010000"],["2024-07-25T11:05:15.010000"],["2024-07-25T11:05:16.010000"],["2024-07-25T11:05:17.010000"],["2024-07-25T11:05:18.010000"],["2024-07-25T11:05:19.010000"],["2024-07-25T11:05:20.010000"],["2024-07-25T11:05:21.010000"],["2024-07-25T11:05:22.010000"],["2024-07-25T11:05:23.010000"],["2024-07-25T11:05:24.010000"],["2024-07-25T11:05:25.010000"],["2024-07-25T11:05:26.010000"],["2024-07-25T11:05:27.010000"],["2024-07-25T11:05:28.010000"],["2024-07-25T11:05:29.010000"],["2024-07-25T11:05:30.010000"],["2024-07-25T11:05:31.010000"],["2024-07-25T11:05:32.010000"],["2024-07-25T11:05:33.010000"],["2024-07-25T11:05:34.010000"],["2024-07-25T11:05:35.010000"],["2024-07-25T11:05:36.010000"],["2024-07-25T11:05:37.010000"],["2024-07-25T11:05:38.010000"],["2024-07-25T11:05:39.010000"],["2024-07-25T11:05:40.010000"],["2024-07-25T11:05:41.010000"],["2024-07-25T11:05:42.010000"],["2024-07-25T11:05:43.010000"],["2024-07-25T11:05:44.010000"],["2024-07-25T11:05:45.010000"],["2024-07-25T11:05:46.010000"],["2024-07-25T11:05:47.010000"],["2024-07-25T11:05:48.010000"],["2024-07-25T11:05:49.010000"],["2024-07-25T11:05:50.010000"],["2024-07-25T11:05:51.010000"],["2024-07-25T11:05:52.010000"],["2024-07-25T11:05:53.010000"],["2024-07-25T11:05:54.010000"],["2024-07-25T11:05:55.010000"],["2024-07-25T11:05:56.010000"],["2024-07-25T11:05:57.010000"],["2024-07-25T11:05:58.010000"],["2024-07-25T11:05:59.010000"],["2024-07-25T11:06:00.010000"],["2024-07-25T11:06:01.010000"],["2024-07-25T11:06:02.010000"],["2024-07-25T11:06:03.010000"],["2024-07-25T11:06:04.010000"],["2024-07-25T11:06:05.010000"],["2024-07-25T11:06:06.010000"],["2024-07-25T11:06:07.010000"],["2024-07-25T11:06:08.010000"],["2024-07-25T11:06:09.010000"],["2024-07-25T11:06:10.010000"],["2024-07-25T11:06:11.010000"],["2024-07-25T11:06:12.010000"],["2024-07-25T11:06:13.010000"],["2024-07-25T11:06:14.010000"],["2024-07-25T11:06:15.010000"],["2024-07-25T11:06:16.010000"],["2024-07-25T11:06:17.010000"],["2024-07-25T11:06:18.010000"],["2024-07-25T11:06:19.010000"],["2024-07-25T11:06:20.010000"],["2024-07-25T11:06:21.010000"],["2024-07-25T11:06:22.010000"],["2024-07-25T11:06:23.010000"],["2024-07-25T11:06:24.010000"],["2024-07-25T11:06:25.010000"],["2024-07-25T11:06:26.010000"],["2024-07-25T11:06:27.010000"],["2024-07-25T11:06:28.010000"],["2024-07-25T11:06:29.010000"],["2024-07-25T11:06:30.010000"],["2024-07-25T11:06:31.010000"],["2024-07-25T11:06:32.010000"],["2024-07-25T11:06:33.010000"],["2024-07-25T11:06:34.010000"],["2024-07-25T11:06:35.010000"],["2024-07-25T11:06:36.010000"],["2024-07-25T11:06:37.010000"],["2024-07-25T11:06:38.010000"],["2024-07-25T11:06:39.010000"],["2024-07-25T11:06:40.010000"],["2024-07-25T11:06:41.010000"],["2024-07-25T11:06:42.010000"],["2024-07-25T11:06:43.010000"],["2024-07-25T11:06:44.010000"],["2024-07-25T11:06:45.010000"],["2024-07-25T11:06:46.010000"],["2024-07-25T11:06:47.010000"],["2024-07-25T11:06:48.010000"],["2024-07-25T11:06:49.010000"],["2024-07-25T11:06:50.010000"],["2024-07-25T11:06:51.010000"],["2024-07-25T11:06:52.010000"],["2024-07-25T11:06:53.010000"],["2024-07-25T11:06:54.010000"],["2024-07-25T11:06:55.010000"],["2024-07-25T11:06:56.010000"],["2024-07-25T11:06:57.010000"],["2024-07-25T11:06:58.010000"],["2024-07-25T11:06:59.010000"],["2024-07-25T11:07:00.010000"],["2024-07-25T11:07:01.010000"],["2024-07-25T11:07:02.010000"],["2024-07-25T11:07:03.010000"],["2024-07-25T11:07:04.010000"],["2024-07-25T11:07:05.010000"],["2024-07-25T11:07:06.010000"],["2024-07-25T11:07:07.010000"],["2024-07-25T11:07:08.010000"],["2024-07-25T11:07:09.010000"],["2024-07-25T11:07:10.010000"],["2024-07-25T11:07:11.010000"],["2024-07-25T11:07:12.010000"],["2024-07-25T11:07:13.010000"],["2024-07-25T11:07:14.010000"],["2024-07-25T11:07:15.010000"],["2024-07-25T11:07:16.010000"],["2024-07-25T11:07:17.010000"],["2024-07-25T11:07:18.010000"],["2024-07-25T11:07:19.010000"],["2024-07-25T11:07:20.010000"],["2024-07-25T11:07:21.010000"],["2024-07-25T11:07:22.010000"],["2024-07-25T11:07:23.010000"],["2024-07-25T11:07:24.010000"],["2024-07-25T11:07:25.010000"],["2024-07-25T11:07:26.010000"],["2024-07-25T11:07:27.010000"],["2024-07-25T11:07:28.010000"],["2024-07-25T11:07:29.010000"],["2024-07-25T11:07:30.010000"],["2024-07-25T11:07:31.010000"],["2024-07-25T11:07:32.010000"],["2024-07-25T11:07:33.010000"],["2024-07-25T11:07:34.010000"],["2024-07-25T11:07:35.010000"],["2024-07-25T11:07:36.010000"],["2024-07-25T11:07:37.010000"],["2024-07-25T11:07:38.010000"],["2024-07-25T11:07:39.010000"],["2024-07-25T11:07:40.010000"],["2024-07-25T11:07:41.010000"],["2024-07-25T11:07:42.010000"],["2024-07-25T11:07:43.010000"],["2024-07-25T11:07:44.010000"],["2024-07-25T11:07:45.010000"],["2024-07-25T11:07:46.010000"],["2024-07-25T11:07:47.010000"],["2024-07-25T11:07:48.010000"],["2024-07-25T11:07:49.010000"],["2024-07-25T11:07:50.010000"],["2024-07-25T11:07:51.010000"],["2024-07-25T11:07:52.010000"],["2024-07-25T11:07:53.010000"],["2024-07-25T11:07:54.010000"],["2024-07-25T11:07:55.010000"],["2024-07-25T11:07:56.010000"],["2024-07-25T11:07:57.010000"],["2024-07-25T11:07:58.010000"],["2024-07-25T11:07:59.010000"],["2024-07-25T11:08:00.010000"],["2024-07-25T11:08:01.010000"],["2024-07-25T11:08:02.010000"],["2024-07-25T11:08:03.010000"],["2024-07-25T11:08:04.010000"],["2024-07-25T11:08:05.010000"],["2024-07-25T11:08:06.010000"],["2024-07-25T11:08:07.010000"],["2024-07-25T11:08:08.010000"],["2024-07-25T11:08:09.010000"],["2024-07-25T11:08:10.010000"],["2024-07-25T11:08:11.010000"],["2024-07-25T11:08:12.010000"],["2024-07-25T11:08:13.010000"],["2024-07-25T11:08:14.010000"],["2024-07-25T11:08:15.010000"],["2024-07-25T11:08:16.010000"],["2024-07-25T11:08:17.010000"],["2024-07-25T11:08:18.010000"],["2024-07-25T11:08:19.010000"],["2024-07-25T11:08:20.010000"],["2024-07-25T11:08:21.010000"],["2024-07-25T11:08:22.010000"],["2024-07-25T11:08:23.010000"],["2024-07-25T11:08:24.010000"],["2024-07-25T11:08:25.010000"],["2024-07-25T11:08:26.010000"],["2024-07-25T11:08:27.010000"],["2024-07-25T11:08:28.010000"],["2024-07-25T11:08:29.010000"],["2024-07-25T11:08:30.010000"],["2024-07-25T11:08:31.010000"],["2024-07-25T11:08:32.010000"],["2024-07-25T11:08:33.010000"],["2024-07-25T11:08:34.010000"],["2024-07-25T11:08:35.010000"],["2024-07-25T11:08:36.010000"],["2024-07-25T11:08:37.010000"],["2024-07-25T11:08:38.010000"],["2024-07-25T11:08:39.010000"],["2024-07-25T11:08:40.010000"],["2024-07-25T11:08:41.010000"],["2024-07-25T11:08:42.010000"],["2024-07-25T11:08:43.010000"],["2024-07-25T11:08:44.010000"],["2024-07-25T11:08:45.010000"],["2024-07-25T11:08:46.010000"],["2024-07-25T11:08:47.010000"],["2024-07-25T11:08:48.010000"],["2024-07-25T11:08:49.010000"],["2024-07-25T11:08:50.010000"],["2024-07-25T11:08:51.010000"],["2024-07-25T11:08:52.010000"],["2024-07-25T11:08:53.010000"],["2024-07-25T11:08:54.010000"],["2024-07-25T11:08:55.010000"],["2024-07-25T11:08:56.010000"],["2024-07-25T11:08:57.010000"],["2024-07-25T11:08:58.010000"],["2024-07-25T11:08:59.010000"],["2024-07-25T11:09:00.010000"],["2024-07-25T11:09:01.010000"],["2024-07-25T11:09:02.010000"],["2024-07-25T11:09:03.010000"],["2024-07-25T11:09:04.010000"],["2024-07-25T11:09:05.010000"],["2024-07-25T11:09:06.010000"],["2024-07-25T11:09:07.010000"],["2024-07-25T11:09:08.010000"],["2024-07-25T11:09:09.010000"],["2024-07-25T11:09:10.010000"],["2024-07-25T11:09:11.010000"],["2024-07-25T11:09:12.010000"],["2024-07-25T11:09:13.010000"],["2024-07-25T11:09:14.010000"],["2024-07-25T11:09:15.010000"],["2024-07-25T11:09:16.010000"],["2024-07-25T11:09:17.010000"],["2024-07-25T11:09:18.010000"],["2024-07-25T11:09:19.010000"],["2024-07-25T11:09:20.010000"],["2024-07-25T11:09:21.010000"],["2024-07-25T11:09:22.010000"],["2024-07-25T11:09:23.010000"],["2024-07-25T11:09:24.010000"],["2024-07-25T11:09:25.010000"],["2024-07-25T11:09:26.010000"],["2024-07-25T11:09:27.010000"],["2024-07-25T11:09:28.010000"],["2024-07-25T11:09:29.010000"],["2024-07-25T11:09:30.010000"],["2024-07-25T11:09:31.010000"],["2024-07-25T11:09:32.010000"],["2024-07-25T11:09:33.010000"],["2024-07-25T11:09:34.010000"],["2024-07-25T11:09:35.010000"],["2024-07-25T11:09:36.010000"],["2024-07-25T11:09:37.010000"],["2024-07-25T11:09:38.010000"],["2024-07-25T11:09:39.010000"],["2024-07-25T11:09:40.010000"],["2024-07-25T11:09:41.010000"],["2024-07-25T11:09:42.010000"],["2024-07-25T11:09:43.010000"],["2024-07-25T11:09:44.010000"],["2024-07-25T11:09:45.010000"],["2024-07-25T11:09:46.010000"],["2024-07-25T11:09:47.010000"],["2024-07-25T11:09:48.010000"],["2024-07-25T11:09:49.010000"],["2024-07-25T11:09:50.010000"],["2024-07-25T11:09:51.010000"],["2024-07-25T11:09:52.010000"],["2024-07-25T11:09:53.010000"],["2024-07-25T11:09:54.010000"],["2024-07-25T11:09:55.010000"],["2024-07-25T11:09:56.010000"],["2024-07-25T11:09:57.010000"],["2024-07-25T11:09:58.010000"],["2024-07-25T11:09:59.010000"],["2024-07-25T11:10:00.010000"],["2024-07-25T11:10:01.010000"],["2024-07-25T11:10:02.010000"],["2024-07-25T11:10:03.010000"],["2024-07-25T11:10:04.010000"],["2024-07-25T11:10:05.010000"],["2024-07-25T11:10:06.010000"],["2024-07-25T11:10:07.010000"],["2024-07-25T11:10:08.010000"],["2024-07-25T11:10:09.010000"],["2024-07-25T11:10:10.010000"],["2024-07-25T11:10:11.010000"],["2024-07-25T11:10:12.010000"],["2024-07-25T11:10:13.010000"],["2024-07-25T11:10:14.010000"],["2024-07-25T11:10:15.010000"],["2024-07-25T11:10:16.010000"],["2024-07-25T11:10:17.010000"],["2024-07-25T11:10:18.010000"],["2024-07-25T11:10:19.010000"],["2024-07-25T11:10:20.010000"],["2024-07-25T11:10:21.010000"],["2024-07-25T11:10:22.010000"],["2024-07-25T11:10:23.010000"],["2024-07-25T11:10:24.010000"],["2024-07-25T11:10:25.010000"],["2024-07-25T11:10:26.010000"],["2024-07-25T11:10:27.010000"],["2024-07-25T11:10:28.010000"],["2024-07-25T11:10:29.010000"],["2024-07-25T11:10:30.010000"],["2024-07-25T11:10:31.010000"],["2024-07-25T11:10:32.010000"],["2024-07-25T11:10:33.010000"],["2024-07-25T11:10:34.010000"],["2024-07-25T11:10:35.010000"],["2024-07-25T11:10:36.010000"],["2024-07-25T11:10:37.010000"],["2024-07-25T11:10:38.010000"],["2024-07-25T11:10:39.010000"],["2024-07-25T11:10:40.010000"],["2024-07-25T11:10:41.010000"],["2024-07-25T11:10:42.010000"],["2024-07-25T11:10:43.010000"],["2024-07-25T11:10:44.010000"],["2024-07-25T11:10:45.010000"],["2024-07-25T11:10:46.010000"],["2024-07-25T11:10:47.010000"],["2024-07-25T11:10:48.010000"],["2024-07-25T11:10:49.010000"],["2024-07-25T11:10:50.010000"],["2024-07-25T11:10:51.010000"],["2024-07-25T11:10:52.010000"],["2024-07-25T11:10:53.010000"],["2024-07-25T11:10:54.010000"],["2024-07-25T11:10:55.010000"],["2024-07-25T11:10:56.010000"],["2024-07-25T11:10:57.010000"],["2024-07-25T11:10:58.010000"],["2024-07-25T11:10:59.010000"],["2024-07-25T11:11:00.010000"],["2024-07-25T11:11:01.010000"],["2024-07-25T11:11:02.010000"],["2024-07-25T11:11:03.010000"],["2024-07-25T11:11:04.010000"],["2024-07-25T11:11:05.010000"],["2024-07-25T11:11:06.010000"],["2024-07-25T11:11:07.010000"],["2024-07-25T11:11:08.010000"],["2024-07-25T11:11:09.010000"],["2024-07-25T11:11:10.010000"],["2024-07-25T11:11:11.010000"],["2024-07-25T11:11:12.010000"],["2024-07-25T11:11:13.010000"],["2024-07-25T11:11:14.010000"],["2024-07-25T11:11:15.010000"],["2024-07-25T11:11:16.010000"],["2024-07-25T11:11:17.010000"],["2024-07-25T11:11:18.010000"],["2024-07-25T11:11:19.010000"],["2024-07-25T11:11:20.010000"],["2024-07-25T11:11:21.010000"],["2024-07-25T11:11:22.010000"],["2024-07-25T11:11:23.010000"],["2024-07-25T11:11:24.010000"],["2024-07-25T11:11:25.010000"],["2024-07-25T11:11:26.010000"],["2024-07-25T11:11:27.010000"],["2024-07-25T11:11:28.010000"],["2024-07-25T11:11:29.010000"],["2024-07-25T11:11:30.010000"],["2024-07-25T11:11:31.010000"],["2024-07-25T11:11:32.010000"],["2024-07-25T11:11:33.010000"],["2024-07-25T11:11:34.010000"],["2024-07-25T11:11:35.010000"],["2024-07-25T11:11:36.010000"],["2024-07-25T11:11:37.010000"],["2024-07-25T11:11:38.010000"],["2024-07-25T11:11:39.010000"],["2024-07-25T11:11:40.010000"],["2024-07-25T11:11:41.010000"],["2024-07-25T11:11:42.010000"],["2024-07-25T11:11:43.010000"],["2024-07-25T11:11:44.010000"],["2024-07-25T11:11:45.010000"],["2024-07-25T11:11:46.010000"],["2024-07-25T11:11:47.010000"],["2024-07-25T11:11:48.010000"],["2024-07-25T11:11:49.010000"],["2024-07-25T11:11:50.010000"],["2024-07-25T11:11:51.010000"],["2024-07-25T11:11:52.010000"],["2024-07-25T11:11:53.010000"],["2024-07-25T11:11:54.010000"],["2024-07-25T11:11:55.010000"],["2024-07-25T11:11:56.010000"],["2024-07-25T11:11:57.010000"],["2024-07-25T11:11:58.010000"],["2024-07-25T11:11:59.010000"],["2024-07-25T11:12:00.010000"],["2024-07-25T11:12:01.010000"],["2024-07-25T11:12:02.010000"],["2024-07-25T11:12:03.010000"],["2024-07-25T11:12:04.010000"],["2024-07-25T11:12:05.010000"],["2024-07-25T11:12:06.010000"],["2024-07-25T11:12:07.010000"],["2024-07-25T11:12:08.010000"],["2024-07-25T11:12:09.010000"],["2024-07-25T11:12:10.010000"],["2024-07-25T11:12:11.010000"],["2024-07-25T11:12:12.010000"],["2024-07-25T11:12:13.010000"],["2024-07-25T11:12:14.010000"],["2024-07-25T11:12:15.010000"],["2024-07-25T11:12:16.010000"],["2024-07-25T11:12:17.010000"],["2024-07-25T11:12:18.010000"],["2024-07-25T11:12:19.010000"],["2024-07-25T11:12:20.010000"],["2024-07-25T11:12:21.010000"],["2024-07-25T11:12:22.010000"],["2024-07-25T11:12:23.010000"],["2024-07-25T11:12:24.010000"],["2024-07-25T11:12:25.010000"],["2024-07-25T11:12:26.010000"],["2024-07-25T11:12:27.010000"],["2024-07-25T11:12:28.010000"],["2024-07-25T11:12:29.010000"],["2024-07-25T11:12:30.010000"],["2024-07-25T11:12:31.010000"],["2024-07-25T11:12:32.010000"],["2024-07-25T11:12:33.010000"],["2024-07-25T11:12:34.010000"],["2024-07-25T11:12:35.010000"],["2024-07-25T11:12:36.010000"],["2024-07-25T11:12:37.010000"],["2024-07-25T11:12:38.010000"],["2024-07-25T11:12:39.010000"],["2024-07-25T11:12:40.010000"],["2024-07-25T11:12:41.010000"],["2024-07-25T11:12:42.010000"],["2024-07-25T11:12:43.010000"],["2024-07-25T11:12:44.010000"],["2024-07-25T11:12:45.010000"],["2024-07-25T11:12:46.010000"],["2024-07-25T11:12:47.010000"],["2024-07-25T11:12:48.010000"],["2024-07-25T11:12:49.010000"],["2024-07-25T11:12:50.010000"],["2024-07-25T11:12:51.010000"],["2024-07-25T11:12:52.010000"],["2024-07-25T11:12:53.010000"],["2024-07-25T11:12:54.010000"],["2024-07-25T11:12:55.010000"],["2024-07-25T11:12:56.010000"],["2024-07-25T11:12:57.010000"],["2024-07-25T11:12:58.010000"],["2024-07-25T11:12:59.010000"],["2024-07-25T11:13:00.010000"],["2024-07-25T11:13:01.010000"],["2024-07-25T11:13:02.010000"],["2024-07-25T11:13:03.010000"],["2024-07-25T11:13:04.010000"],["2024-07-25T11:13:05.010000"],["2024-07-25T11:13:06.010000"],["2024-07-25T11:13:07.010000"],["2024-07-25T11:13:08.010000"],["2024-07-25T11:13:09.010000"],["2024-07-25T11:13:10.010000"],["2024-07-25T11:13:11.010000"],["2024-07-25T11:13:12.010000"],["2024-07-25T11:13:13.010000"],["2024-07-25T11:13:14.010000"],["2024-07-25T11:13:15.010000"],["2024-07-25T11:13:16.010000"],["2024-07-25T11:13:17.010000"],["2024-07-25T11:13:18.010000"],["2024-07-25T11:13:19.010000"],["2024-07-25T11:13:20.010000"],["2024-07-25T11:13:21.010000"],["2024-07-25T11:13:22.010000"],["2024-07-25T11:13:23.010000"],["2024-07-25T11:13:24.010000"],["2024-07-25T11:13:25.010000"],["2024-07-25T11:13:26.010000"],["2024-07-25T11:13:27.010000"],["2024-07-25T11:13:28.010000"],["2024-07-25T11:13:29.010000"],["2024-07-25T11:13:30.010000"],["2024-07-25T11:13:31.010000"],["2024-07-25T11:13:32.010000"],["2024-07-25T11:13:33.010000"],["2024-07-25T11:13:34.010000"],["2024-07-25T11:13:35.010000"],["2024-07-25T11:13:36.010000"],["2024-07-25T11:13:37.010000"],["2024-07-25T11:13:38.010000"],["2024-07-25T11:13:39.010000"],["2024-07-25T11:13:40.010000"],["2024-07-25T11:13:41.010000"],["2024-07-25T11:13:42.010000"],["2024-07-25T11:13:43.010000"],["2024-07-25T11:13:44.010000"],["2024-07-25T11:13:45.010000"],["2024-07-25T11:13:46.010000"],["2024-07-25T11:13:47.010000"],["2024-07-25T11:13:48.010000"],["2024-07-25T11:13:49.010000"],["2024-07-25T11:13:50.010000"],["2024-07-25T11:13:51.010000"],["2024-07-25T11:13:52.010000"],["2024-07-25T11:13:53.010000"],["2024-07-25T11:13:54.010000"],["2024-07-25T11:13:55.010000"],["2024-07-25T11:13:56.010000"],["2024-07-25T11:13:57.010000"],["2024-07-25T11:13:58.010000"],["2024-07-25T11:13:59.010000"],["2024-07-25T11:14:00.010000"],["2024-07-25T11:14:01.010000"],["2024-07-25T11:14:02.010000"],["2024-07-25T11:14:03.010000"],["2024-07-25T11:14:04.010000"],["2024-07-25T11:14:05.010000"],["2024-07-25T11:14:06.010000"],["2024-07-25T11:14:07.010000"],["2024-07-25T11:14:08.010000"],["2024-07-25T11:14:09.010000"],["2024-07-25T11:14:10.010000"],["2024-07-25T11:14:11.010000"],["2024-07-25T11:14:12.010000"],["2024-07-25T11:14:13.010000"],["2024-07-25T11:14:14.010000"],["2024-07-25T11:14:15.010000"],["2024-07-25T11:14:16.010000"],["2024-07-25T11:14:17.010000"],["2024-07-25T11:14:18.010000"],["2024-07-25T11:14:19.010000"],["2024-07-25T11:14:20.010000"],["2024-07-25T11:14:21.010000"],["2024-07-25T11:14:22.010000"],["2024-07-25T11:14:23.010000"],["2024-07-25T11:14:24.010000"],["2024-07-25T11:14:25.010000"],["2024-07-25T11:14:26.010000"],["2024-07-25T11:14:27.010000"],["2024-07-25T11:14:28.010000"],["2024-07-25T11:14:29.010000"],["2024-07-25T11:14:30.010000"],["2024-07-25T11:14:31.010000"],["2024-07-25T11:14:32.010000"],["2024-07-25T11:14:33.010000"],["2024-07-25T11:14:34.010000"],["2024-07-25T11:14:35.010000"],["2024-07-25T11:14:36.010000"],["2024-07-25T11:14:37.010000"],["2024-07-25T11:14:38.010000"],["2024-07-25T11:14:39.010000"],["2024-07-25T11:14:40.010000"],["2024-07-25T11:14:41.010000"],["2024-07-25T11:14:42.010000"],["2024-07-25T11:14:43.010000"],["2024-07-25T11:14:44.010000"],["2024-07-25T11:14:45.010000"],["2024-07-25T11:14:46.010000"],["2024-07-25T11:14:47.010000"],["2024-07-25T11:14:48.010000"],["2024-07-25T11:14:49.010000"],["2024-07-25T11:14:50.010000"],["2024-07-25T11:14:51.010000"],["2024-07-25T11:14:52.010000"],["2024-07-25T11:14:53.010000"],["2024-07-25T11:14:54.010000"],["2024-07-25T11:14:55.010000"],["2024-07-25T11:14:56.010000"],["2024-07-25T11:14:57.010000"],["2024-07-25T11:14:58.010000"],["2024-07-25T11:14:59.010000"],["2024-07-25T11:15:00.010000"],["2024-07-25T11:15:01.010000"],["2024-07-25T11:15:02.010000"],["2024-07-25T11:15:03.010000"],["2024-07-25T11:15:04.010000"],["2024-07-25T11:15:05.010000"],["2024-07-25T11:15:06.010000"],["2024-07-25T11:15:07.010000"],["2024-07-25T11:15:08.010000"],["2024-07-25T11:15:09.010000"],["2024-07-25T11:15:10.010000"],["2024-07-25T11:15:11.010000"],["2024-07-25T11:15:12.010000"],["2024-07-25T11:15:13.010000"],["2024-07-25T11:15:14.010000"],["2024-07-25T11:15:15.010000"],["2024-07-25T11:15:16.010000"],["2024-07-25T11:15:17.010000"],["2024-07-25T11:15:18.010000"],["2024-07-25T11:15:19.010000"],["2024-07-25T11:15:20.010000"],["2024-07-25T11:15:21.010000"],["2024-07-25T11:15:22.010000"],["2024-07-25T11:15:23.010000"],["2024-07-25T11:15:24.010000"],["2024-07-25T11:15:25.010000"],["2024-07-25T11:15:26.010000"],["2024-07-25T11:15:27.010000"],["2024-07-25T11:15:28.010000"],["2024-07-25T11:15:29.010000"],["2024-07-25T11:15:30.010000"],["2024-07-25T11:15:31.010000"],["2024-07-25T11:15:32.010000"],["2024-07-25T11:15:33.010000"],["2024-07-25T11:15:34.010000"],["2024-07-25T11:15:35.010000"],["2024-07-25T11:15:36.010000"],["2024-07-25T11:15:37.010000"],["2024-07-25T11:15:38.010000"],["2024-07-25T11:15:39.010000"],["2024-07-25T11:15:40.010000"],["2024-07-25T11:15:41.010000"],["2024-07-25T11:15:42.010000"],["2024-07-25T11:15:43.010000"],["2024-07-25T11:15:44.010000"],["2024-07-25T11:15:45.010000"],["2024-07-25T11:15:46.010000"],["2024-07-25T11:15:47.010000"],["2024-07-25T11:15:48.010000"],["2024-07-25T11:15:49.010000"],["2024-07-25T11:15:50.010000"],["2024-07-25T11:15:51.010000"],["2024-07-25T11:15:52.010000"],["2024-07-25T11:15:53.010000"],["2024-07-25T11:15:54.010000"],["2024-07-25T11:15:55.010000"],["2024-07-25T11:15:56.010000"],["2024-07-25T11:15:57.010000"],["2024-07-25T11:15:58.010000"],["2024-07-25T11:15:59.010000"],["2024-07-25T11:16:00.010000"],["2024-07-25T11:16:01.010000"],["2024-07-25T11:16:02.010000"],["2024-07-25T11:16:03.010000"],["2024-07-25T11:16:04.010000"],["2024-07-25T11:16:05.010000"],["2024-07-25T11:16:06.010000"],["2024-07-25T11:16:07.010000"],["2024-07-25T11:16:08.010000"],["2024-07-25T11:16:09.010000"],["2024-07-25T11:16:10.010000"],["2024-07-25T11:16:11.010000"],["2024-07-25T11:16:12.010000"],["2024-07-25T11:16:13.010000"],["2024-07-25T11:16:14.010000"],["2024-07-25T11:16:15.010000"],["2024-07-25T11:16:16.010000"],["2024-07-25T11:16:17.010000"],["2024-07-25T11:16:18.010000"],["2024-07-25T11:16:19.010000"],["2024-07-25T11:16:20.010000"],["2024-07-25T11:16:21.010000"],["2024-07-25T11:16:22.010000"],["2024-07-25T11:16:23.010000"],["2024-07-25T11:16:24.010000"],["2024-07-25T11:16:25.010000"],["2024-07-25T11:16:26.010000"],["2024-07-25T11:16:27.010000"],["2024-07-25T11:16:28.010000"],["2024-07-25T11:16:29.010000"],["2024-07-25T11:16:30.010000"],["2024-07-25T11:16:31.010000"],["2024-07-25T11:16:32.010000"],["2024-07-25T11:16:33.010000"],["2024-07-25T11:16:34.010000"],["2024-07-25T11:16:35.010000"],["2024-07-25T11:16:36.010000"],["2024-07-25T11:16:37.010000"],["2024-07-25T11:16:38.010000"],["2024-07-25T11:16:39.010000"],["2024-07-25T11:16:40.010000"],["2024-07-25T11:16:41.010000"],["2024-07-25T11:16:42.010000"],["2024-07-25T11:16:43.010000"],["2024-07-25T11:16:44.010000"],["2024-07-25T11:16:45.010000"],["2024-07-25T11:16:46.010000"],["2024-07-25T11:16:47.010000"],["2024-07-25T11:16:48.010000"],["2024-07-25T11:16:49.010000"],["2024-07-25T11:16:50.010000"],["2024-07-25T11:16:51.010000"],["2024-07-25T11:16:52.010000"],["2024-07-25T11:16:53.010000"],["2024-07-25T11:16:54.010000"],["2024-07-25T11:16:55.010000"],["2024-07-25T11:16:56.010000"],["2024-07-25T11:16:57.010000"],["2024-07-25T11:16:58.010000"],["2024-07-25T11:16:59.010000"],["2024-07-25T11:17:00.010000"],["2024-07-25T11:17:01.010000"],["2024-07-25T11:17:02.010000"],["2024-07-25T11:17:03.010000"],["2024-07-25T11:17:04.010000"],["2024-07-25T11:17:05.010000"],["2024-07-25T11:17:06.010000"],["2024-07-25T11:17:07.010000"],["2024-07-25T11:17:08.010000"],["2024-07-25T11:17:09.010000"],["2024-07-25T11:17:10.010000"],["2024-07-25T11:17:11.010000"],["2024-07-25T11:17:12.010000"],["2024-07-25T11:17:13.010000"],["2024-07-25T11:17:14.010000"],["2024-07-25T11:17:15.010000"],["2024-07-25T11:17:16.010000"],["2024-07-25T11:17:17.010000"],["2024-07-25T11:17:18.010000"],["2024-07-25T11:17:19.010000"],["2024-07-25T11:17:20.010000"],["2024-07-25T11:17:21.010000"],["2024-07-25T11:17:22.010000"],["2024-07-25T11:17:23.010000"],["2024-07-25T11:17:24.010000"],["2024-07-25T11:17:25.010000"],["2024-07-25T11:17:26.010000"],["2024-07-25T11:17:27.010000"],["2024-07-25T11:17:28.010000"],["2024-07-25T11:17:29.010000"],["2024-07-25T11:17:30.010000"],["2024-07-25T11:17:31.010000"],["2024-07-25T11:17:32.010000"],["2024-07-25T11:17:33.010000"],["2024-07-25T11:17:34.010000"],["2024-07-25T11:17:35.010000"],["2024-07-25T11:17:36.010000"],["2024-07-25T11:17:37.010000"],["2024-07-25T11:17:38.010000"],["2024-07-25T11:17:39.010000"],["2024-07-25T11:17:40.010000"],["2024-07-25T11:17:41.010000"],["2024-07-25T11:17:42.010000"],["2024-07-25T11:17:43.010000"],["2024-07-25T11:17:44.010000"],["2024-07-25T11:17:45.010000"],["2024-07-25T11:17:46.010000"],["2024-07-25T11:17:47.010000"],["2024-07-25T11:17:48.010000"],["2024-07-25T11:17:49.010000"],["2024-07-25T11:17:50.010000"],["2024-07-25T11:17:51.010000"],["2024-07-25T11:17:52.010000"],["2024-07-25T11:17:53.010000"],["2024-07-25T11:17:54.010000"],["2024-07-25T11:17:55.010000"],["2024-07-25T11:17:56.010000"],["2024-07-25T11:17:57.010000"],["2024-07-25T11:17:58.010000"],["2024-07-25T11:17:59.010000"],["2024-07-25T11:18:00.010000"],["2024-07-25T11:18:01.010000"],["2024-07-25T11:18:02.010000"],["2024-07-25T11:18:03.010000"],["2024-07-25T11:18:04.010000"],["2024-07-25T11:18:05.010000"],["2024-07-25T11:18:06.010000"],["2024-07-25T11:18:07.010000"],["2024-07-25T11:18:08.010000"],["2024-07-25T11:18:09.010000"],["2024-07-25T11:18:10.010000"],["2024-07-25T11:18:11.010000"],["2024-07-25T11:18:12.010000"],["2024-07-25T11:18:13.010000"],["2024-07-25T11:18:14.010000"],["2024-07-25T11:18:15.010000"],["2024-07-25T11:18:16.010000"],["2024-07-25T11:18:17.010000"],["2024-07-25T11:18:18.010000"],["2024-07-25T11:18:19.010000"],["2024-07-25T11:18:20.010000"],["2024-07-25T11:18:21.010000"],["2024-07-25T11:18:22.010000"],["2024-07-25T11:18:23.010000"],["2024-07-25T11:18:24.010000"],["2024-07-25T11:18:25.010000"],["2024-07-25T11:18:26.010000"],["2024-07-25T11:18:27.010000"],["2024-07-25T11:18:28.010000"],["2024-07-25T11:18:29.010000"],["2024-07-25T11:18:30.010000"],["2024-07-25T11:18:31.010000"],["2024-07-25T11:18:32.010000"],["2024-07-25T11:18:33.010000"],["2024-07-25T11:18:34.010000"],["2024-07-25T11:18:35.010000"],["2024-07-25T11:18:36.010000"],["2024-07-25T11:18:37.010000"],["2024-07-25T11:18:38.010000"],["2024-07-25T11:18:39.010000"],["2024-07-25T11:18:40.010000"],["2024-07-25T11:18:41.010000"],["2024-07-25T11:18:42.010000"],["2024-07-25T11:18:43.010000"],["2024-07-25T11:18:44.010000"],["2024-07-25T11:18:45.010000"],["2024-07-25T11:18:46.010000"],["2024-07-25T11:18:47.010000"],["2024-07-25T11:18:48.010000"],["2024-07-25T11:18:49.010000"],["2024-07-25T11:18:50.010000"],["2024-07-25T11:18:51.010000"],["2024-07-25T11:18:52.010000"],["2024-07-25T11:18:53.010000"],["2024-07-25T11:18:54.010000"],["2024-07-25T11:18:55.010000"],["2024-07-25T11:18:56.010000"],["2024-07-25T11:18:57.010000"],["2024-07-25T11:18:58.010000"],["2024-07-25T11:18:59.010000"],["2024-07-25T11:19:00.010000"],["2024-07-25T11:19:01.010000"],["2024-07-25T11:19:02.010000"],["2024-07-25T11:19:03.010000"],["2024-07-25T11:19:04.010000"],["2024-07-25T11:19:05.010000"],["2024-07-25T11:19:06.010000"],["2024-07-25T11:19:07.010000"],["2024-07-25T11:19:08.010000"],["2024-07-25T11:19:09.010000"],["2024-07-25T11:19:10.010000"],["2024-07-25T11:19:11.010000"],["2024-07-25T11:19:12.010000"],["2024-07-25T11:19:13.010000"],["2024-07-25T11:19:14.010000"],["2024-07-25T11:19:15.010000"],["2024-07-25T11:19:16.010000"],["2024-07-25T11:19:17.010000"],["2024-07-25T11:19:18.010000"],["2024-07-25T11:19:19.010000"],["2024-07-25T11:19:20.010000"],["2024-07-25T11:19:21.010000"],["2024-07-25T11:19:22.010000"],["2024-07-25T11:19:23.010000"],["2024-07-25T11:19:24.010000"],["2024-07-25T11:19:25.010000"],["2024-07-25T11:19:26.010000"],["2024-07-25T11:19:27.010000"],["2024-07-25T11:19:28.010000"],["2024-07-25T11:19:29.010000"],["2024-07-25T11:19:30.010000"],["2024-07-25T11:19:31.010000"],["2024-07-25T11:19:32.010000"],["2024-07-25T11:19:33.010000"],["2024-07-25T11:19:34.010000"],["2024-07-25T11:19:35.010000"],["2024-07-25T11:19:36.010000"],["2024-07-25T11:19:37.010000"],["2024-07-25T11:19:38.010000"],["2024-07-25T11:19:39.010000"],["2024-07-25T11:19:40.010000"],["2024-07-25T11:19:41.010000"],["2024-07-25T11:19:42.010000"],["2024-07-25T11:19:43.010000"],["2024-07-25T11:19:44.010000"],["2024-07-25T11:19:45.010000"],["2024-07-25T11:19:46.010000"],["2024-07-25T11:19:47.010000"],["2024-07-25T11:19:48.010000"],["2024-07-25T11:19:49.010000"],["2024-07-25T11:19:50.010000"],["2024-07-25T11:19:51.010000"],["2024-07-25T11:19:52.010000"],["2024-07-25T11:19:53.010000"],["2024-07-25T11:19:54.010000"],["2024-07-25T11:19:55.010000"],["2024-07-25T11:19:56.010000"],["2024-07-25T11:19:57.010000"],["2024-07-25T11:19:58.010000"],["2024-07-25T11:19:59.010000"],["2024-07-25T11:20:00.010000"],["2024-07-25T11:20:01.010000"],["2024-07-25T11:20:02.010000"],["2024-07-25T11:20:03.010000"],["2024-07-25T11:20:04.010000"],["2024-07-25T11:20:05.010000"],["2024-07-25T11:20:06.010000"],["2024-07-25T11:20:07.010000"],["2024-07-25T11:20:08.010000"],["2024-07-25T11:20:09.010000"],["2024-07-25T11:20:10.010000"],["2024-07-25T11:20:11.010000"],["2024-07-25T11:20:12.010000"],["2024-07-25T11:20:13.010000"],["2024-07-25T11:20:14.010000"],["2024-07-25T11:20:15.010000"],["2024-07-25T11:20:16.010000"],["2024-07-25T11:20:17.010000"],["2024-07-25T11:20:18.010000"],["2024-07-25T11:20:19.010000"],["2024-07-25T11:20:20.010000"],["2024-07-25T11:20:21.010000"],["2024-07-25T11:20:22.010000"],["2024-07-25T11:20:23.010000"],["2024-07-25T11:20:24.010000"],["2024-07-25T11:20:25.010000"],["2024-07-25T11:20:26.010000"],["2024-07-25T11:20:27.010000"],["2024-07-25T11:20:28.010000"],["2024-07-25T11:20:29.010000"],["2024-07-25T11:20:30.010000"],["2024-07-25T11:20:31.010000"],["2024-07-25T11:20:32.010000"],["2024-07-25T11:20:33.010000"],["2024-07-25T11:20:34.010000"],["2024-07-25T11:20:35.010000"],["2024-07-25T11:20:36.010000"],["2024-07-25T11:20:37.010000"],["2024-07-25T11:20:38.010000"],["2024-07-25T11:20:39.010000"],["2024-07-25T11:20:40.010000"],["2024-07-25T11:20:41.010000"],["2024-07-25T11:20:42.010000"],["2024-07-25T11:20:43.010000"],["2024-07-25T11:20:44.010000"],["2024-07-25T11:20:45.010000"],["2024-07-25T11:20:46.010000"],["2024-07-25T11:20:47.010000"],["2024-07-25T11:20:48.010000"],["2024-07-25T11:20:49.010000"],["2024-07-25T11:20:50.010000"],["2024-07-25T11:20:51.010000"],["2024-07-25T11:20:52.010000"],["2024-07-25T11:20:53.010000"],["2024-07-25T11:20:54.010000"],["2024-07-25T11:20:55.010000"],["2024-07-25T11:20:56.010000"],["2024-07-25T11:20:57.010000"],["2024-07-25T11:20:58.010000"],["2024-07-25T11:20:59.010000"],["2024-07-25T11:21:00.010000"],["2024-07-25T11:21:01.010000"],["2024-07-25T11:21:02.010000"],["2024-07-25T11:21:03.010000"],["2024-07-25T11:21:04.010000"],["2024-07-25T11:21:05.010000"],["2024-07-25T11:21:06.010000"],["2024-07-25T11:21:07.010000"],["2024-07-25T11:21:08.010000"],["2024-07-25T11:21:09.010000"],["2024-07-25T11:21:10.010000"],["2024-07-25T11:21:11.010000"],["2024-07-25T11:21:12.010000"],["2024-07-25T11:21:13.010000"],["2024-07-25T11:21:14.010000"],["2024-07-25T11:21:15.010000"],["2024-07-25T11:21:16.010000"],["2024-07-25T11:21:17.010000"],["2024-07-25T11:21:18.010000"],["2024-07-25T11:21:19.010000"],["2024-07-25T11:21:20.010000"],["2024-07-25T11:21:21.010000"],["2024-07-25T11:21:22.010000"],["2024-07-25T11:21:23.010000"],["2024-07-25T11:21:24.010000"],["2024-07-25T11:21:25.010000"],["2024-07-25T11:21:26.010000"],["2024-07-25T11:21:27.010000"],["2024-07-25T11:21:28.010000"],["2024-07-25T11:21:29.010000"],["2024-07-25T11:21:30.010000"],["2024-07-25T11:21:31.010000"],["2024-07-25T11:21:32.010000"],["2024-07-25T11:21:33.010000"],["2024-07-25T11:21:34.010000"],["2024-07-25T11:21:35.010000"],["2024-07-25T11:21:36.010000"],["2024-07-25T11:21:37.010000"],["2024-07-25T11:21:38.010000"],["2024-07-25T11:21:39.010000"],["2024-07-25T11:21:40.010000"],["2024-07-25T11:21:41.010000"],["2024-07-25T11:21:42.010000"],["2024-07-25T11:21:43.010000"],["2024-07-25T11:21:44.010000"],["2024-07-25T11:21:45.010000"],["2024-07-25T11:21:46.010000"],["2024-07-25T11:21:47.010000"],["2024-07-25T11:21:48.010000"],["2024-07-25T11:21:49.010000"],["2024-07-25T11:21:50.010000"],["2024-07-25T11:21:51.010000"],["2024-07-25T11:21:52.010000"],["2024-07-25T11:21:53.010000"],["2024-07-25T11:21:54.010000"],["2024-07-25T11:21:55.010000"],["2024-07-25T11:21:56.010000"],["2024-07-25T11:21:57.010000"],["2024-07-25T11:21:58.010000"],["2024-07-25T11:21:59.010000"],["2024-07-25T11:22:00.010000"],["2024-07-25T11:22:01.010000"],["2024-07-25T11:22:02.010000"],["2024-07-25T11:22:03.010000"],["2024-07-25T11:22:04.010000"],["2024-07-25T11:22:05.010000"],["2024-07-25T11:22:06.010000"],["2024-07-25T11:22:07.010000"],["2024-07-25T11:22:08.010000"],["2024-07-25T11:22:09.010000"],["2024-07-25T11:22:10.010000"],["2024-07-25T11:22:11.010000"],["2024-07-25T11:22:12.010000"],["2024-07-25T11:22:13.010000"],["2024-07-25T11:22:14.010000"],["2024-07-25T11:22:15.010000"],["2024-07-25T11:22:16.010000"],["2024-07-25T11:22:17.010000"],["2024-07-25T11:22:18.010000"],["2024-07-25T11:22:19.010000"],["2024-07-25T11:22:20.010000"],["2024-07-25T11:22:21.010000"],["2024-07-25T11:22:22.010000"],["2024-07-25T11:22:23.010000"],["2024-07-25T11:22:24.010000"],["2024-07-25T11:22:25.010000"],["2024-07-25T11:22:26.010000"],["2024-07-25T11:22:27.010000"],["2024-07-25T11:22:28.010000"],["2024-07-25T11:22:29.010000"],["2024-07-25T11:22:30.010000"],["2024-07-25T11:22:31.010000"],["2024-07-25T11:22:32.010000"],["2024-07-25T11:22:33.010000"],["2024-07-25T11:22:34.010000"],["2024-07-25T11:22:35.010000"],["2024-07-25T11:22:36.010000"],["2024-07-25T11:22:37.010000"],["2024-07-25T11:22:38.010000"],["2024-07-25T11:22:39.010000"],["2024-07-25T11:22:40.010000"],["2024-07-25T11:22:41.010000"],["2024-07-25T11:22:42.010000"],["2024-07-25T11:22:43.010000"],["2024-07-25T11:22:44.010000"],["2024-07-25T11:22:45.010000"],["2024-07-25T11:22:46.010000"],["2024-07-25T11:22:47.010000"],["2024-07-25T11:22:48.010000"],["2024-07-25T11:22:49.010000"],["2024-07-25T11:22:50.010000"],["2024-07-25T11:22:51.010000"],["2024-07-25T11:22:52.010000"],["2024-07-25T11:22:53.010000"],["2024-07-25T11:22:54.010000"],["2024-07-25T11:22:55.010000"],["2024-07-25T11:22:56.010000"],["2024-07-25T11:22:57.010000"],["2024-07-25T11:22:58.010000"],["2024-07-25T11:22:59.010000"],["2024-07-25T11:23:00.010000"],["2024-07-25T11:23:01.010000"],["2024-07-25T11:23:02.010000"],["2024-07-25T11:23:03.010000"],["2024-07-25T11:23:04.010000"],["2024-07-25T11:23:05.010000"],["2024-07-25T11:23:06.010000"],["2024-07-25T11:23:07.010000"],["2024-07-25T11:23:08.010000"],["2024-07-25T11:23:09.010000"],["2024-07-25T11:23:10.010000"],["2024-07-25T11:23:11.010000"],["2024-07-25T11:23:12.010000"],["2024-07-25T11:23:13.010000"],["2024-07-25T11:23:14.010000"],["2024-07-25T11:23:15.010000"],["2024-07-25T11:23:16.010000"],["2024-07-25T11:23:17.010000"],["2024-07-25T11:23:18.010000"],["2024-07-25T11:23:19.010000"],["2024-07-25T11:23:20.010000"],["2024-07-25T11:23:21.010000"],["2024-07-25T11:23:22.010000"],["2024-07-25T11:23:23.010000"],["2024-07-25T11:23:24.010000"],["2024-07-25T11:23:25.010000"],["2024-07-25T11:23:26.010000"],["2024-07-25T11:23:27.010000"],["2024-07-25T11:23:28.010000"],["2024-07-25T11:23:29.010000"],["2024-07-25T11:23:30.010000"],["2024-07-25T11:23:31.010000"],["2024-07-25T11:23:32.010000"],["2024-07-25T11:23:33.010000"],["2024-07-25T11:23:34.010000"],["2024-07-25T11:23:35.010000"],["2024-07-25T11:23:36.010000"],["2024-07-25T11:23:37.010000"],["2024-07-25T11:23:38.010000"],["2024-07-25T11:23:39.010000"],["2024-07-25T11:23:40.010000"],["2024-07-25T11:23:41.010000"],["2024-07-25T11:23:42.010000"],["2024-07-25T11:23:43.010000"],["2024-07-25T11:23:44.010000"],["2024-07-25T11:23:45.010000"],["2024-07-25T11:23:46.010000"],["2024-07-25T11:23:47.010000"],["2024-07-25T11:23:48.010000"],["2024-07-25T11:23:49.010000"],["2024-07-25T11:23:50.010000"],["2024-07-25T11:23:51.010000"],["2024-07-25T11:23:52.010000"],["2024-07-25T11:23:53.010000"],["2024-07-25T11:23:54.010000"],["2024-07-25T11:23:55.010000"],["2024-07-25T11:23:56.010000"],["2024-07-25T11:23:57.010000"],["2024-07-25T11:23:58.010000"],["2024-07-25T11:23:59.010000"],["2024-07-25T11:24:00.010000"],["2024-07-25T11:24:01.010000"],["2024-07-25T11:24:02.010000"],["2024-07-25T11:24:03.010000"],["2024-07-25T11:24:04.010000"],["2024-07-25T11:24:05.010000"],["2024-07-25T11:24:06.010000"],["2024-07-25T11:24:07.010000"],["2024-07-25T11:24:08.010000"],["2024-07-25T11:24:09.010000"],["2024-07-25T11:24:10.010000"],["2024-07-25T11:24:11.010000"],["2024-07-25T11:24:12.010000"],["2024-07-25T11:24:13.010000"],["2024-07-25T11:24:14.010000"],["2024-07-25T11:24:15.010000"],["2024-07-25T11:24:16.010000"],["2024-07-25T11:24:17.010000"],["2024-07-25T11:24:18.010000"],["2024-07-25T11:24:19.010000"],["2024-07-25T11:24:20.010000"],["2024-07-25T11:24:21.010000"],["2024-07-25T11:24:22.010000"],["2024-07-25T11:24:23.010000"],["2024-07-25T11:24:24.010000"],["2024-07-25T11:24:25.010000"],["2024-07-25T11:24:26.010000"],["2024-07-25T11:24:27.010000"],["2024-07-25T11:24:28.010000"],["2024-07-25T11:24:29.010000"],["2024-07-25T11:24:30.010000"],["2024-07-25T11:24:31.010000"],["2024-07-25T11:24:32.010000"],["2024-07-25T11:24:33.010000"],["2024-07-25T11:24:34.010000"],["2024-07-25T11:24:35.010000"],["2024-07-25T11:24:36.010000"],["2024-07-25T11:24:37.010000"],["2024-07-25T11:24:38.010000"],["2024-07-25T11:24:39.010000"],["2024-07-25T11:24:40.010000"],["2024-07-25T11:24:41.010000"],["2024-07-25T11:24:42.010000"],["2024-07-25T11:24:43.010000"],["2024-07-25T11:24:44.010000"],["2024-07-25T11:24:45.010000"],["2024-07-25T11:24:46.010000"],["2024-07-25T11:24:47.010000"],["2024-07-25T11:24:48.010000"],["2024-07-25T11:24:49.010000"],["2024-07-25T11:24:50.010000"],["2024-07-25T11:24:51.010000"],["2024-07-25T11:24:52.010000"],["2024-07-25T11:24:53.010000"],["2024-07-25T11:24:54.010000"],["2024-07-25T11:24:55.010000"],["2024-07-25T11:24:56.010000"],["2024-07-25T11:24:57.010000"],["2024-07-25T11:24:58.010000"],["2024-07-25T11:24:59.010000"],["2024-07-25T11:25:00.010000"],["2024-07-25T11:25:01.010000"],["2024-07-25T11:25:02.010000"],["2024-07-25T11:25:03.010000"],["2024-07-25T11:25:04.010000"],["2024-07-25T11:25:05.010000"],["2024-07-25T11:25:06.010000"],["2024-07-25T11:25:07.010000"],["2024-07-25T11:25:08.010000"],["2024-07-25T11:25:09.010000"],["2024-07-25T11:25:10.010000"],["2024-07-25T11:25:11.010000"],["2024-07-25T11:25:12.010000"],["2024-07-25T11:25:13.010000"],["2024-07-25T11:25:14.010000"],["2024-07-25T11:25:15.010000"],["2024-07-25T11:25:16.010000"],["2024-07-25T11:25:17.010000"],["2024-07-25T11:25:18.010000"],["2024-07-25T11:25:19.010000"],["2024-07-25T11:25:20.010000"],["2024-07-25T11:25:21.010000"],["2024-07-25T11:25:22.010000"],["2024-07-25T11:25:23.010000"],["2024-07-25T11:25:24.010000"],["2024-07-25T11:25:25.010000"],["2024-07-25T11:25:26.010000"],["2024-07-25T11:25:27.010000"],["2024-07-25T11:25:28.010000"],["2024-07-25T11:25:29.010000"],["2024-07-25T11:25:30.010000"],["2024-07-25T11:25:31.010000"],["2024-07-25T11:25:32.010000"],["2024-07-25T11:25:33.010000"],["2024-07-25T11:25:34.010000"],["2024-07-25T11:25:35.010000"],["2024-07-25T11:25:36.010000"],["2024-07-25T11:25:37.010000"],["2024-07-25T11:25:38.010000"],["2024-07-25T11:25:39.010000"],["2024-07-25T11:25:40.010000"],["2024-07-25T11:25:41.010000"],["2024-07-25T11:25:42.010000"],["2024-07-25T11:25:43.010000"],["2024-07-25T11:25:44.010000"],["2024-07-25T11:25:45.010000"],["2024-07-25T11:25:46.010000"],["2024-07-25T11:25:47.010000"],["2024-07-25T11:25:48.010000"],["2024-07-25T11:25:49.010000"],["2024-07-25T11:25:50.010000"],["2024-07-25T11:25:51.010000"],["2024-07-25T11:25:52.010000"],["2024-07-25T11:25:53.010000"],["2024-07-25T11:25:54.010000"],["2024-07-25T11:25:55.010000"],["2024-07-25T11:25:56.010000"],["2024-07-25T11:25:57.010000"],["2024-07-25T11:25:58.010000"],["2024-07-25T11:25:59.010000"],["2024-07-25T11:26:00.010000"],["2024-07-25T11:26:01.010000"],["2024-07-25T11:26:02.010000"],["2024-07-25T11:26:03.010000"],["2024-07-25T11:26:04.010000"],["2024-07-25T11:26:05.010000"],["2024-07-25T11:26:06.010000"],["2024-07-25T11:26:07.010000"],["2024-07-25T11:26:08.010000"],["2024-07-25T11:26:09.010000"],["2024-07-25T11:26:10.010000"],["2024-07-25T11:26:11.010000"],["2024-07-25T11:26:12.010000"],["2024-07-25T11:26:13.010000"],["2024-07-25T11:26:14.010000"],["2024-07-25T11:26:15.010000"],["2024-07-25T11:26:16.010000"],["2024-07-25T11:26:17.010000"],["2024-07-25T11:26:18.010000"],["2024-07-25T11:26:19.010000"],["2024-07-25T11:26:20.010000"],["2024-07-25T11:26:21.010000"],["2024-07-25T11:26:22.010000"],["2024-07-25T11:26:23.010000"],["2024-07-25T11:26:24.010000"],["2024-07-25T11:26:25.010000"],["2024-07-25T11:26:26.010000"],["2024-07-25T11:26:27.010000"],["2024-07-25T11:26:28.010000"],["2024-07-25T11:26:29.010000"],["2024-07-25T11:26:30.010000"],["2024-07-25T11:26:31.010000"],["2024-07-25T11:26:32.010000"],["2024-07-25T11:26:33.010000"],["2024-07-25T11:26:34.010000"],["2024-07-25T11:26:35.010000"],["2024-07-25T11:26:36.010000"],["2024-07-25T11:26:37.010000"],["2024-07-25T11:26:38.010000"],["2024-07-25T11:26:39.010000"],["2024-07-25T11:26:40.010000"],["2024-07-25T11:26:41.010000"],["2024-07-25T11:26:42.010000"],["2024-07-25T11:26:43.010000"],["2024-07-25T11:26:44.010000"],["2024-07-25T11:26:45.010000"],["2024-07-25T11:26:46.010000"],["2024-07-25T11:26:47.010000"],["2024-07-25T11:26:48.010000"],["2024-07-25T11:26:49.010000"],["2024-07-25T11:26:50.010000"],["2024-07-25T11:26:51.010000"],["2024-07-25T11:26:52.010000"],["2024-07-25T11:26:53.010000"],["2024-07-25T11:26:54.010000"],["2024-07-25T11:26:55.010000"],["2024-07-25T11:26:56.010000"],["2024-07-25T11:26:57.010000"],["2024-07-25T11:26:58.010000"],["2024-07-25T11:26:59.010000"],["2024-07-25T11:27:00.010000"],["2024-07-25T11:27:01.010000"],["2024-07-25T11:27:02.010000"],["2024-07-25T11:27:03.010000"],["2024-07-25T11:27:04.010000"],["2024-07-25T11:27:05.010000"],["2024-07-25T11:27:06.010000"],["2024-07-25T11:27:07.010000"],["2024-07-25T11:27:08.010000"],["2024-07-25T11:27:09.010000"],["2024-07-25T11:27:10.010000"],["2024-07-25T11:27:11.010000"],["2024-07-25T11:27:12.010000"],["2024-07-25T11:27:13.010000"],["2024-07-25T11:27:14.010000"],["2024-07-25T11:27:15.010000"],["2024-07-25T11:27:16.010000"],["2024-07-25T11:27:17.010000"],["2024-07-25T11:27:18.010000"],["2024-07-25T11:27:19.010000"],["2024-07-25T11:27:20.010000"],["2024-07-25T11:27:21.010000"],["2024-07-25T11:27:22.010000"],["2024-07-25T11:27:23.010000"],["2024-07-25T11:27:24.010000"],["2024-07-25T11:27:25.010000"],["2024-07-25T11:27:26.010000"],["2024-07-25T11:27:27.010000"],["2024-07-25T11:27:28.010000"],["2024-07-25T11:27:29.010000"],["2024-07-25T11:27:30.010000"],["2024-07-25T11:27:31.010000"],["2024-07-25T11:27:32.010000"],["2024-07-25T11:27:33.010000"],["2024-07-25T11:27:34.010000"],["2024-07-25T11:27:35.010000"],["2024-07-25T11:27:36.010000"],["2024-07-25T11:27:37.010000"],["2024-07-25T11:27:38.010000"],["2024-07-25T11:27:39.010000"],["2024-07-25T11:27:40.010000"],["2024-07-25T11:27:41.010000"],["2024-07-25T11:27:42.010000"],["2024-07-25T11:27:43.010000"],["2024-07-25T11:27:44.010000"],["2024-07-25T11:27:45.010000"],["2024-07-25T11:27:46.010000"],["2024-07-25T11:27:47.010000"],["2024-07-25T11:27:48.010000"],["2024-07-25T11:27:49.010000"],["2024-07-25T11:27:50.010000"],["2024-07-25T11:27:51.010000"],["2024-07-25T11:27:52.010000"],["2024-07-25T11:27:53.010000"],["2024-07-25T11:27:54.010000"],["2024-07-25T11:27:55.010000"],["2024-07-25T11:27:56.010000"],["2024-07-25T11:27:57.010000"],["2024-07-25T11:27:58.010000"],["2024-07-25T11:27:59.010000"],["2024-07-25T11:28:00.010000"],["2024-07-25T11:28:01.010000"],["2024-07-25T11:28:02.010000"],["2024-07-25T11:28:03.010000"],["2024-07-25T11:28:04.010000"],["2024-07-25T11:28:05.010000"],["2024-07-25T11:28:06.010000"],["2024-07-25T11:28:07.010000"],["2024-07-25T11:28:08.010000"],["2024-07-25T11:28:09.010000"],["2024-07-25T11:28:10.010000"],["2024-07-25T11:28:11.010000"],["2024-07-25T11:28:12.010000"],["2024-07-25T11:28:13.010000"],["2024-07-25T11:28:14.010000"],["2024-07-25T11:28:15.010000"],["2024-07-25T11:28:16.010000"],["2024-07-25T11:28:17.010000"],["2024-07-25T11:28:18.010000"],["2024-07-25T11:28:19.010000"],["2024-07-25T11:28:20.010000"],["2024-07-25T11:28:21.010000"],["2024-07-25T11:28:22.010000"],["2024-07-25T11:28:23.010000"],["2024-07-25T11:28:24.010000"],["2024-07-25T11:28:25.010000"],["2024-07-25T11:28:26.010000"],["2024-07-25T11:28:27.010000"],["2024-07-25T11:28:28.010000"],["2024-07-25T11:28:29.010000"],["2024-07-25T11:28:30.010000"],["2024-07-25T11:28:31.010000"],["2024-07-25T11:28:32.010000"],["2024-07-25T11:28:33.010000"],["2024-07-25T11:28:34.010000"],["2024-07-25T11:28:35.010000"],["2024-07-25T11:28:36.010000"],["2024-07-25T11:28:37.010000"],["2024-07-25T11:28:38.010000"],["2024-07-25T11:28:39.010000"],["2024-07-25T11:28:40.010000"],["2024-07-25T11:28:41.010000"],["2024-07-25T11:28:42.010000"],["2024-07-25T11:28:43.010000"],["2024-07-25T11:28:44.010000"],["2024-07-25T11:28:45.010000"],["2024-07-25T11:28:46.010000"],["2024-07-25T11:28:47.010000"],["2024-07-25T11:28:48.010000"],["2024-07-25T11:28:49.010000"],["2024-07-25T11:28:50.010000"],["2024-07-25T11:28:51.010000"],["2024-07-25T11:28:52.010000"],["2024-07-25T11:28:53.010000"],["2024-07-25T11:28:54.010000"],["2024-07-25T11:28:55.010000"],["2024-07-25T11:28:56.010000"],["2024-07-25T11:28:57.010000"],["2024-07-25T11:28:58.010000"],["2024-07-25T11:28:59.010000"],["2024-07-25T11:29:00.010000"],["2024-07-25T11:29:01.010000"],["2024-07-25T11:29:02.010000"],["2024-07-25T11:29:03.010000"],["2024-07-25T11:29:04.010000"],["2024-07-25T11:29:05.010000"],["2024-07-25T11:29:06.010000"],["2024-07-25T11:29:07.010000"],["2024-07-25T11:29:08.010000"],["2024-07-25T11:29:09.010000"],["2024-07-25T11:29:10.010000"],["2024-07-25T11:29:11.010000"],["2024-07-25T11:29:12.010000"],["2024-07-25T11:29:13.010000"],["2024-07-25T11:29:14.010000"],["2024-07-25T11:29:15.010000"],["2024-07-25T11:29:16.010000"],["2024-07-25T11:29:17.010000"],["2024-07-25T11:29:18.010000"],["2024-07-25T11:29:19.010000"],["2024-07-25T11:29:20.010000"],["2024-07-25T11:29:21.010000"],["2024-07-25T11:29:22.010000"],["2024-07-25T11:29:23.010000"],["2024-07-25T11:29:24.010000"],["2024-07-25T11:29:25.010000"],["2024-07-25T11:29:26.010000"],["2024-07-25T11:29:27.010000"],["2024-07-25T11:29:28.010000"],["2024-07-25T11:29:29.010000"],["2024-07-25T11:29:30.010000"],["2024-07-25T11:29:31.010000"],["2024-07-25T11:29:32.010000"],["2024-07-25T11:29:33.010000"],["2024-07-25T11:29:34.010000"],["2024-07-25T11:29:35.010000"],["2024-07-25T11:29:36.010000"],["2024-07-25T11:29:37.010000"],["2024-07-25T11:29:38.010000"],["2024-07-25T11:29:39.010000"],["2024-07-25T11:29:40.010000"],["2024-07-25T11:29:41.010000"],["2024-07-25T11:29:42.010000"],["2024-07-25T11:29:43.010000"],["2024-07-25T11:29:44.010000"],["2024-07-25T11:29:45.010000"],["2024-07-25T11:29:46.010000"],["2024-07-25T11:29:47.010000"],["2024-07-25T11:29:48.010000"],["2024-07-25T11:29:49.010000"],["2024-07-25T11:29:50.010000"],["2024-07-25T11:29:51.010000"],["2024-07-25T11:29:52.010000"],["2024-07-25T11:29:53.010000"],["2024-07-25T11:29:54.010000"],["2024-07-25T11:29:55.010000"],["2024-07-25T11:29:56.010000"],["2024-07-25T11:29:57.010000"],["2024-07-25T11:29:58.010000"],["2024-07-25T11:29:59.010000"],["2024-07-25T11:30:00.010000"],["2024-07-25T11:30:01.010000"],["2024-07-25T11:30:02.010000"],["2024-07-25T11:30:03.010000"],["2024-07-25T11:30:04.010000"],["2024-07-25T11:30:05.010000"],["2024-07-25T11:30:06.010000"],["2024-07-25T11:30:07.010000"],["2024-07-25T11:30:08.010000"],["2024-07-25T11:30:09.010000"],["2024-07-25T11:30:10.010000"],["2024-07-25T11:30:11.010000"],["2024-07-25T11:30:12.010000"],["2024-07-25T11:30:13.010000"],["2024-07-25T11:30:14.010000"],["2024-07-25T11:30:15.010000"],["2024-07-25T11:30:16.010000"],["2024-07-25T11:30:17.010000"],["2024-07-25T11:30:18.010000"],["2024-07-25T11:30:19.010000"],["2024-07-25T11:30:20.010000"],["2024-07-25T11:30:21.010000"],["2024-07-25T11:30:22.010000"],["2024-07-25T11:30:23.010000"],["2024-07-25T11:30:24.010000"],["2024-07-25T11:30:25.010000"],["2024-07-25T11:30:26.010000"],["2024-07-25T11:30:27.010000"],["2024-07-25T11:30:28.010000"],["2024-07-25T11:30:29.010000"],["2024-07-25T11:30:30.010000"],["2024-07-25T11:30:31.010000"],["2024-07-25T11:30:32.010000"],["2024-07-25T11:30:33.010000"],["2024-07-25T11:30:34.010000"],["2024-07-25T11:30:35.010000"],["2024-07-25T11:30:36.010000"],["2024-07-25T11:30:37.010000"],["2024-07-25T11:30:38.010000"],["2024-07-25T11:30:39.010000"],["2024-07-25T11:30:40.010000"],["2024-07-25T11:30:41.010000"],["2024-07-25T11:30:42.010000"],["2024-07-25T11:30:43.010000"],["2024-07-25T11:30:44.010000"],["2024-07-25T11:30:45.010000"],["2024-07-25T11:30:46.010000"],["2024-07-25T11:30:47.010000"],["2024-07-25T11:30:48.010000"],["2024-07-25T11:30:49.010000"],["2024-07-25T11:30:50.010000"],["2024-07-25T11:30:51.010000"],["2024-07-25T11:30:52.010000"],["2024-07-25T11:30:53.010000"],["2024-07-25T11:30:54.010000"],["2024-07-25T11:30:55.010000"],["2024-07-25T11:30:56.010000"],["2024-07-25T11:30:57.010000"],["2024-07-25T11:30:58.010000"],["2024-07-25T11:30:59.010000"],["2024-07-25T11:31:00.010000"],["2024-07-25T11:31:01.010000"],["2024-07-25T11:31:02.010000"],["2024-07-25T11:31:03.010000"],["2024-07-25T11:31:04.010000"],["2024-07-25T11:31:05.010000"],["2024-07-25T11:31:06.010000"],["2024-07-25T11:31:07.010000"],["2024-07-25T11:31:08.010000"],["2024-07-25T11:31:09.010000"],["2024-07-25T11:31:10.010000"],["2024-07-25T11:31:11.010000"],["2024-07-25T11:31:12.010000"],["2024-07-25T11:31:13.010000"],["2024-07-25T11:31:14.010000"],["2024-07-25T11:31:15.010000"],["2024-07-25T11:31:16.010000"],["2024-07-25T11:31:17.010000"],["2024-07-25T11:31:18.010000"],["2024-07-25T11:31:19.010000"],["2024-07-25T11:31:20.010000"],["2024-07-25T11:31:21.010000"],["2024-07-25T11:31:22.010000"],["2024-07-25T11:31:23.010000"],["2024-07-25T11:31:24.010000"],["2024-07-25T11:31:25.010000"],["2024-07-25T11:31:26.010000"],["2024-07-25T11:31:27.010000"],["2024-07-25T11:31:28.010000"],["2024-07-25T11:31:29.010000"],["2024-07-25T11:31:30.010000"],["2024-07-25T11:31:31.010000"],["2024-07-25T11:31:32.010000"],["2024-07-25T11:31:33.010000"],["2024-07-25T11:31:34.010000"],["2024-07-25T11:31:35.010000"],["2024-07-25T11:31:36.010000"],["2024-07-25T11:31:37.010000"],["2024-07-25T11:31:38.010000"],["2024-07-25T11:31:39.010000"],["2024-07-25T11:31:40.010000"],["2024-07-25T11:31:41.010000"],["2024-07-25T11:31:42.010000"],["2024-07-25T11:31:43.010000"],["2024-07-25T11:31:44.010000"],["2024-07-25T11:31:45.010000"],["2024-07-25T11:31:46.010000"],["2024-07-25T11:31:47.010000"],["2024-07-25T11:31:48.010000"],["2024-07-25T11:31:49.010000"],["2024-07-25T11:31:50.010000"],["2024-07-25T11:31:51.010000"],["2024-07-25T11:31:52.010000"],["2024-07-25T11:31:53.010000"],["2024-07-25T11:31:54.010000"],["2024-07-25T11:31:55.010000"],["2024-07-25T11:31:56.010000"],["2024-07-25T11:31:57.010000"],["2024-07-25T11:31:58.010000"],["2024-07-25T11:31:59.010000"],["2024-07-25T11:32:00.010000"],["2024-07-25T11:32:01.010000"],["2024-07-25T11:32:02.010000"],["2024-07-25T11:32:03.010000"],["2024-07-25T11:32:04.010000"],["2024-07-25T11:32:05.010000"],["2024-07-25T11:32:06.010000"],["2024-07-25T11:32:07.010000"],["2024-07-25T11:32:08.010000"],["2024-07-25T11:32:09.010000"],["2024-07-25T11:32:10.010000"],["2024-07-25T11:32:11.010000"],["2024-07-25T11:32:12.010000"],["2024-07-25T11:32:13.010000"],["2024-07-25T11:32:14.010000"],["2024-07-25T11:32:15.010000"],["2024-07-25T11:32:16.010000"],["2024-07-25T11:32:17.010000"],["2024-07-25T11:32:18.010000"],["2024-07-25T11:32:19.010000"],["2024-07-25T11:32:20.010000"],["2024-07-25T11:32:21.010000"],["2024-07-25T11:32:22.010000"],["2024-07-25T11:32:23.010000"],["2024-07-25T11:32:24.010000"],["2024-07-25T11:32:25.010000"],["2024-07-25T11:32:26.010000"],["2024-07-25T11:32:27.010000"],["2024-07-25T11:32:28.010000"],["2024-07-25T11:32:29.010000"],["2024-07-25T11:32:30.010000"],["2024-07-25T11:32:31.010000"],["2024-07-25T11:32:32.010000"],["2024-07-25T11:32:33.010000"],["2024-07-25T11:32:34.010000"],["2024-07-25T11:32:35.010000"],["2024-07-25T11:32:36.010000"],["2024-07-25T11:32:37.010000"],["2024-07-25T11:32:38.010000"],["2024-07-25T11:32:39.010000"],["2024-07-25T11:32:40.010000"],["2024-07-25T11:32:41.010000"],["2024-07-25T11:32:42.010000"],["2024-07-25T11:32:43.010000"],["2024-07-25T11:32:44.010000"],["2024-07-25T11:32:45.010000"],["2024-07-25T11:32:46.010000"],["2024-07-25T11:32:47.010000"],["2024-07-25T11:32:48.010000"],["2024-07-25T11:32:49.010000"],["2024-07-25T11:32:50.010000"],["2024-07-25T11:32:51.010000"],["2024-07-25T11:32:52.010000"],["2024-07-25T11:32:53.010000"],["2024-07-25T11:32:54.010000"],["2024-07-25T11:32:55.010000"],["2024-07-25T11:32:56.010000"],["2024-07-25T11:32:57.010000"],["2024-07-25T11:32:58.010000"],["2024-07-25T11:32:59.010000"],["2024-07-25T11:33:00.010000"],["2024-07-25T11:33:01.010000"],["2024-07-25T11:33:02.010000"],["2024-07-25T11:33:03.010000"],["2024-07-25T11:33:04.010000"],["2024-07-25T11:33:05.010000"],["2024-07-25T11:33:06.010000"],["2024-07-25T11:33:07.010000"],["2024-07-25T11:33:08.010000"],["2024-07-25T11:33:09.010000"],["2024-07-25T11:33:10.010000"],["2024-07-25T11:33:11.010000"],["2024-07-25T11:33:12.010000"],["2024-07-25T11:33:13.010000"],["2024-07-25T11:33:14.010000"],["2024-07-25T11:33:15.010000"],["2024-07-25T11:33:16.010000"],["2024-07-25T11:33:17.010000"],["2024-07-25T11:33:18.010000"],["2024-07-25T11:33:19.010000"],["2024-07-25T11:33:20.010000"],["2024-07-25T11:33:21.010000"],["2024-07-25T11:33:22.010000"],["2024-07-25T11:33:23.010000"],["2024-07-25T11:33:24.010000"],["2024-07-25T11:33:25.010000"],["2024-07-25T11:33:26.010000"],["2024-07-25T11:33:27.010000"],["2024-07-25T11:33:28.010000"],["2024-07-25T11:33:29.010000"],["2024-07-25T11:33:30.010000"],["2024-07-25T11:33:31.010000"],["2024-07-25T11:33:32.010000"],["2024-07-25T11:33:33.010000"],["2024-07-25T11:33:34.010000"],["2024-07-25T11:33:35.010000"],["2024-07-25T11:33:36.010000"],["2024-07-25T11:33:37.010000"],["2024-07-25T11:33:38.010000"],["2024-07-25T11:33:39.010000"],["2024-07-25T11:33:40.010000"],["2024-07-25T11:33:41.010000"],["2024-07-25T11:33:42.010000"],["2024-07-25T11:33:43.010000"],["2024-07-25T11:33:44.010000"],["2024-07-25T11:33:45.010000"],["2024-07-25T11:33:46.010000"],["2024-07-25T11:33:47.010000"],["2024-07-25T11:33:48.010000"],["2024-07-25T11:33:49.010000"],["2024-07-25T11:33:50.010000"],["2024-07-25T11:33:51.010000"],["2024-07-25T11:33:52.010000"],["2024-07-25T11:33:53.010000"],["2024-07-25T11:33:54.010000"],["2024-07-25T11:33:55.010000"],["2024-07-25T11:33:56.010000"],["2024-07-25T11:33:57.010000"],["2024-07-25T11:33:58.010000"],["2024-07-25T11:33:59.010000"],["2024-07-25T11:34:00.010000"],["2024-07-25T11:34:01.010000"],["2024-07-25T11:34:02.010000"],["2024-07-25T11:34:03.010000"],["2024-07-25T11:34:04.010000"],["2024-07-25T11:34:05.010000"],["2024-07-25T11:34:06.010000"],["2024-07-25T11:34:07.010000"],["2024-07-25T11:34:08.010000"],["2024-07-25T11:34:09.010000"],["2024-07-25T11:34:10.010000"],["2024-07-25T11:34:11.010000"],["2024-07-25T11:34:12.010000"],["2024-07-25T11:34:13.010000"],["2024-07-25T11:34:14.010000"],["2024-07-25T11:34:15.010000"],["2024-07-25T11:34:16.010000"],["2024-07-25T11:34:17.010000"],["2024-07-25T11:34:18.010000"],["2024-07-25T11:34:19.010000"],["2024-07-25T11:34:20.010000"],["2024-07-25T11:34:21.010000"],["2024-07-25T11:34:22.010000"],["2024-07-25T11:34:23.010000"],["2024-07-25T11:34:24.010000"],["2024-07-25T11:34:25.010000"],["2024-07-25T11:34:26.010000"],["2024-07-25T11:34:27.010000"],["2024-07-25T11:34:28.010000"],["2024-07-25T11:34:29.010000"],["2024-07-25T11:34:30.010000"],["2024-07-25T11:34:31.010000"],["2024-07-25T11:34:32.010000"],["2024-07-25T11:34:33.010000"],["2024-07-25T11:34:34.010000"],["2024-07-25T11:34:35.010000"],["2024-07-25T11:34:36.010000"],["2024-07-25T11:34:37.010000"],["2024-07-25T11:34:38.010000"],["2024-07-25T11:34:39.010000"],["2024-07-25T11:34:40.010000"],["2024-07-25T11:34:41.010000"],["2024-07-25T11:34:42.010000"],["2024-07-25T11:34:43.010000"],["2024-07-25T11:34:44.010000"],["2024-07-25T11:34:45.010000"],["2024-07-25T11:34:46.010000"],["2024-07-25T11:34:47.010000"],["2024-07-25T11:34:48.010000"],["2024-07-25T11:34:49.010000"],["2024-07-25T11:34:50.010000"],["2024-07-25T11:34:51.010000"],["2024-07-25T11:34:52.010000"],["2024-07-25T11:34:53.010000"],["2024-07-25T11:34:54.010000"],["2024-07-25T11:34:55.010000"],["2024-07-25T11:34:56.010000"],["2024-07-25T11:34:57.010000"],["2024-07-25T11:34:58.010000"],["2024-07-25T11:34:59.010000"],["2024-07-25T11:35:00.010000"],["2024-07-25T11:35:01.010000"],["2024-07-25T11:35:02.010000"],["2024-07-25T11:35:03.010000"],["2024-07-25T11:35:04.010000"],["2024-07-25T11:35:05.010000"]],"hovertemplate":"color=5\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"5","line":{"color":"#19d3f3","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"5","scene":"scene","showlegend":true,"x":[282.55712673813105,283.1251584533602,283.449061492458,283.1170353954658,282.1614488842897,282.90835574269295,283.3800067193806,283.65228013228625,283.5875512752682,283.7686441587284,283.43461282225326,284.31677487445995,284.09835820645094,283.8727006521076,284.4046965264715,284.0763429487124,285.0166498119943,285.7428109492175,286.6924178758636,286.9427115530707,287.81117451703176,288.65582515718415,289.21022795746103,289.5619982792996,288.96061760000885,288.9217173415236,289.01134565100074,289.6082487301901,289.02385712089017,289.6283816131763,289.5717658624053,290.3737984346226,290.93715077405795,291.50586901186034,291.75519934343174,292.33193926513195,292.7039401209913,292.96860410179943,292.09228627057746,292.4008902204223,293.37988760555163,293.218207588885,293.8798477575183,293.8173473123461,293.13315964397043,292.67072949232534,292.96993742045015,293.53571623563766,293.3081372762099,292.99576193699613,293.8702414892614,294.22023574635386,293.7809253623709,294.1234051208012,293.38075048383325,293.5545265120454,293.4999246462248,292.9433478852734,292.95531322294846,293.1576537466608,292.69610536517575,291.7224370376207,292.6508758482523,293.30402578553185,293.5850145155564,293.32197355665267,294.03160180104896,293.5225059441291,292.7316280747764,291.8848136877641,291.4667021539062,291.4550555460155,290.9068543133326,290.1783245969564,290.5961789856665,290.30547451926395,289.64184043044224,289.7030038293451,290.68370596086606,291.5342933149077,290.7458392526023,291.01178910396993,291.5402972805314,291.25295684859157,290.97521570092067,291.8340393458493,291.60797542659566,291.2374516269192,291.87104346510023,292.8411706807092,293.0748379365541,293.50461264466867,293.01675866916776,292.79493123386055,293.25591432116926,293.7303353785537,292.8877991968766,292.0323062976822,291.50428446475416,291.2294688830152,291.7204948752187,292.6412657392211,291.64765537297353,292.5512349321507,292.7951692896895,293.7706916388124,293.20438096811995,293.3955615074374,294.32604624005035,294.73389734653756,293.77728720381856,294.299425103236,293.84685475286096,294.4901125836186,294.7852380159311,294.0856524850242,294.17115770839155,294.5462159998715,295.3978577060625,295.89626158680767,294.96477026259527,294.18790409434587,294.9531629406847,294.74179675243795,294.0299827721901,294.01597209088504,293.9337028535083,294.5934363566339,294.6068036672659,293.94835548615083,293.1127464650199,293.98137029772624,293.1233105296269,293.03067145170644,293.16099847620353,294.0353650911711,293.59256054693833,293.77497401600704,294.43956301687285,295.3729753848165,295.53956869756803,296.2428768253885,295.6591993155889,295.4100306010805,296.1274323654361,295.5077971406281,295.9961112542078,295.5812901780009,295.7354597840458,295.6198036754504,295.65855787694454,295.8598208511248,295.3686368591152,295.66825837176293,296.17678674776107,296.8567735981196,296.3673548740335,297.0190715864301,297.1725311470218,296.3392523522489,295.40986558794975,295.94411069108173,295.4520001197234,295.83453722530976,294.9522423692979,295.7031871373765,295.80105115193874,295.3316485537216,294.7754905996844,295.5586279244162,295.8873436502181,296.40167975239456,295.94259591260925,295.90324395056814,296.8438090519048,296.79710814729333,297.3619794221595,297.11630218988284,297.08309590956196,296.2962131756358,295.9800188005902,295.0770792993717,294.24887842452154,294.90921462187544,293.94353674585,293.9416803563945,293.3995692683384,293.2760048536584,293.72904264507815,293.9377012127079,293.04312471020967,293.40928815864027,294.09535551443696,295.008343542926,294.47460137680173,295.1407961784862,294.4062554030679,295.3134337347001,294.7041902542114,295.5412925486453,294.6033937856555,295.3472174499184,294.41446894733235,294.1635308316909,293.3611558577977,294.2214769977145,294.69075292767957,295.57742720190436,294.9579908498563,295.196195658762,294.85924796620384,293.8874451839365,294.1154609117657,294.9729031859897,294.20946149528027,293.91051384527236,294.27787455683574,294.2950657545589,294.6812263773754,295.04212731774896,294.7386869532056,295.0005379584618,294.12503479467705,294.8992156512104,293.93145610019565,294.00611204467714,294.1236569201574,295.0963604003191,295.7321780989878,294.8837218726985,294.45539682917297,295.288448236417,294.386481219437,294.34259102586657,294.1291153412312,295.0424184505828,296.0158764757216,296.3410500683822,296.93016675673425,295.9431604705751,296.9295644708909,296.2564625740051,295.88626381987706,295.7663438417949,295.0009235087782,294.2474653106183,293.9997702827677,293.7743235928938,293.5078131505288,294.441232916899,294.98795215785503,294.2346844370477,293.50870482390746,294.1034740670584,293.449063628912,294.2707774443552,294.2535332031548,294.6049201115966,294.7397712622769,293.7654652027413,294.04026700463146,294.78816457791254,294.8314125300385,294.82736834837124,294.3493449636735,294.8145293868147,294.91032735677436,295.4317558519542,296.25956107582897,295.3004914461635,295.3985016089864,296.0376942413859,296.62206671293825,297.0773798143491,296.3511097263545,296.70913740387186,296.6963948137127,297.2886835541576,296.64379572635517,297.4074795655906,297.1623017936945,297.623496721033,297.9440446663648,297.82048444543034,298.2260196036659,298.17555528413504,298.3222549445927,298.3889053254388,299.361933067441,299.2084569805302,300.12877060333267,301.0309228305705,300.7722595501691,300.21833662316203,299.4504048554227,300.3376789302565,299.6460880995728,299.16816576896235,298.7104694256559,298.14741874020547,298.78910742513835,298.78418890945613,299.51853237114847,298.90492780087516,298.4638275927864,298.4848451013677,298.22709089238197,298.18392183817923,298.77584848413244,298.83153523504734,298.9948984766379,299.39927481114864,298.59255386469886,298.7141072973609,299.64819921553135,299.88429758278653,299.4396990654059,299.5716476030648,299.4914026344195,299.64022435061634,298.91999265598133,298.97564586577937,299.9087017220445,299.71494663739577,300.456790458411,299.47253090376034,299.3835876248777,299.8598596849479,299.8382923686877,298.9724771203473,299.57675697887316,299.2914572879672,298.829431402497,297.99020521109924,297.77988602314144,298.3621987244114,297.8326056767255,297.7057932969183,297.1874013254419,298.1000563679263,298.2356741731055,298.89145909436047,298.39143643481657,298.75292094191536,299.18111981870607,298.8168689580634,299.7262450559065,300.3809249000624,301.0289071723819,300.78297174954787,300.68048509256914,299.8334315409884,298.9054651116021,299.1408103974536,300.1030022529885,300.5076222741045,300.7166188592091,301.56781165720895,301.27790145622566,301.02367670461535,300.14513322059065,299.41069339727983,299.2932139239274,298.77324421005324,299.73669862467796,299.38493552431464,299.87404383625835,300.1016832650639,300.2180960443802,300.8744715033099,301.01487784460187,300.13410683954135,301.1054796767421,301.59656380629167,301.0592865142971,300.9653277792968,300.4815754625015,301.1047590896487,301.33867740258574,300.80651685222983,301.10704258456826,301.4127407656051,301.12143008830026,302.08332977211103,302.22791272820905,302.90799287473783,302.98294401168823,301.9959957166575,302.08818623563275,302.0614013914019,302.52667255187407,302.5060059828684,301.5612101792358,301.61415315791965,301.73726618057117,300.8367215907201,301.1538596036844,301.2403311105445,301.7723941914737,302.0742019414902,301.1767303668894,301.66770128626376,302.15461645275354,302.4183396832086,302.7812307216227,302.0591111006215,302.9110596291721,303.66503132367507,303.9524969845079,304.75770032638684,305.3874993836507,305.0480469544418,304.0902143763378,304.1667091776617,304.69186046440154,304.75466264411807,305.1525820675306,306.0522563382983,306.7177545889281,306.14080111822113,306.60320319095626,307.0998371616006,306.57651958987117,307.2653976348229,306.77543058712035,306.52784387394786,307.2370524536818,307.76326943095773,308.611243668478,308.85711881984025,308.5803713630885,308.1829481078312,307.76620226120576,307.54564589448273,307.3713460471481,306.96347998362035,307.7101579825394,307.5521274795756,307.483165519312,307.2530862847343,307.05187446111813,307.4543725387193,308.12929121684283,308.54929488617927,308.0259406636469,307.4098393516615,308.4038029848598,308.01458643283695,307.9730820991099,307.63058455241844,308.47665930958465,307.841811358463,307.0566912163049,306.42113512940705,306.2691073473543,305.58530945237726,306.50822040392086,306.61607899563387,307.34183149039745,307.6110536875203,307.34645309345797,308.0670849638991,307.47849150933325,307.00519596086815,307.0046349996701,307.081287370529,306.7714304863475,307.7414181176573,307.64272139780223,308.5314157209359,307.7022342858836,307.0417596376501,306.2651800457388,306.42989895585924,306.2483616457321,307.2124622948468,307.3538647284731,306.69121962506324,307.468895918224,308.10810234211385,308.9411146119237,308.4380837450735,308.90969684999436,307.95652284519747,307.8199521028437,307.4762703208253,307.8783783176914,308.36947864387184,309.33489021100104,310.18832367891446,310.15705829812214,310.8076578914188,310.5018460652791,309.6957874689251,310.15875234501436,311.05749280471355,311.21646751556545,310.37514312472194,310.74283391423523,310.80771938245744,310.9622128363699,310.6116498070769,309.83633814612404,310.8179816394113,310.6828688699752,310.12351267877966,309.2682868181728,309.50025484431535,309.01183697674423,309.41133646992967,308.7536254473962,309.44984810007736,309.4908356880769,308.75476872362196,308.56235821312293,307.7063041613437,307.5053246989846,308.3748076441698,308.0927144442685,308.3291113851592,308.83095770236105,309.0111814942211,308.2180742104538,308.8818886592053,308.9610838997178,309.283483941108,308.9865159559995,308.55930002219975,307.6942507731728,307.3641913784668,307.910653621424,307.94873360171914,307.91824174532667,308.2171279187314,307.23841743869707,306.89041050802916,306.5220896382816,305.97362613817677,305.94579009898007,306.58957674819976,307.1174737880938,307.0789696793072,307.745016486384,308.33030302869156,307.46101327845827,307.03747178195044,308.00190272694454,307.97408721828833,308.46819304674864,308.13444491522387,307.679065738339,306.81543255923316,307.5911081498489,306.6582558853552,307.4779808279127,307.1422095876187,307.82560497615486,308.49613716546446,309.427212508861,308.746294809971,308.0945995715447,308.24745481368154,307.6148918052204,307.5666753104888,306.57404038496315,305.70932501833886,305.5536906677298,305.83472361182794,305.59410610888153,306.2574666268192,305.61444514337927,305.7689243927598,305.4862533695996,304.7977086491883,303.8992235190235,303.9988189339638,303.1881553735584,302.60821267263964,303.4454906848259,302.71695152297616,302.94553852826357,302.3671499141492,302.8893391955644,302.9092814605683,303.88325357763097,304.47393497126177,303.94328660005704,304.6919806743972,304.27216866146773,303.7828413094394,302.8436752562411,302.2390282335691,302.21618044003844,301.6115061165765,300.7243855535053,301.5823137788102,302.2665546583012,301.79525681585073,302.5230289087631,302.31388100842014,301.58728167647496,301.3994787745178,301.6989470180124,302.50537981372327,302.63573609571904,302.6860777232796,302.01899847434834,302.46498180693015,301.571581965778,300.9448008313775,301.1371864704415,301.5169670959003,301.6460995436646,302.5935425958596,302.7032512431033,302.2715514167212,302.5095723583363,301.84158384241164,301.9344512624666,302.26193439541385,302.340319708921,302.8509089923464,303.5160596794449,302.91430127667263,303.10750940069556,302.48555232957006,301.5383738586679,301.5220622830093,302.486383640673,302.50358157698065,302.32724697561935,302.08809340232983,301.88243585731834,302.16409946838394,302.16062515135854,302.8542925664224,302.02841083100066,302.84453152213246,302.3847485873848,302.05290233157575,301.565316922497,302.520130132325,302.97756179003045,302.3437997926958,301.9677326832898,302.1040860111825,303.0921058678068,302.36312982672825,301.43138133268803,301.03314321115613,301.9445965741761,302.8834519665688,303.8321263883263,302.9060003440827,303.7314459369518,304.1050089420751,304.71132765803486,304.66126709990203,304.0106112523936,303.09636950166896,302.49865006189793,301.8008022289723,301.2771171205677,300.7575406944379,300.2465365314856,300.95970880938694,300.95154418004677,300.97838165797293,301.79402858717367,300.9122684150934,300.30042167846113,301.09870934765786,301.82037200033665,302.1237935209647,301.7394245304167,301.8050242192112,301.85699415113777,302.091187951155,301.51230416307226,301.95645991293713,302.0942692877725,303.0136585510336,302.8349188407883,302.2513389713131,301.2866385746747,300.49255938315764,301.10248245252296,301.81989612663165,301.44992035534233,301.9239872843027,300.99512407183647,300.65105396695435,299.67577299755067,299.8121477011591,299.6358899944462,299.61489126086235,300.2557482868433,300.3867263565771,299.5559338070452,299.9924470358528,299.40673237480223,299.5675215520896,300.13885858887807,300.7376730432734,300.6856384491548,300.25272330781445,299.40637039905414,298.4715711278841,299.2213745601475,298.87714853463694,299.1525177345611,299.95717512862757,300.48927449807525,301.3549994211644,302.2027777447365,302.8544101319276,302.54867917019874,302.9550578566268,303.8496235613711,303.7690451913513,302.7986187390052,302.9667784702033,302.8816053494811,303.2491856245324,303.80316584324464,303.16015789378434,302.2964215958491,301.3299238840118,300.98190804896876,301.23722112365067,301.87799416994676,301.014383292757,301.3733202344738,300.5049365265295,300.8366242614575,300.2756179510616,299.58505632402375,299.6499267173931,300.00387983908877,299.7050966839306,298.7759685125202,298.077654204797,297.86476734513417,298.4951296825893,298.5554369795136,297.92331022396684,297.1601735162549,296.38070437312126,295.6002719393,295.08891734387726,296.0823666979559,296.4427951541729,296.96546298917383,296.302759969607,296.1016747695394,295.47187243262306,295.01292855711654,295.0132560566999,295.5536677762866,296.3296388811432,296.1187697001733,296.65401450544596,297.37198570370674,297.01484889909625,297.883714558091,298.3201433555223,297.3693033605814,298.07495912583545,297.32889321027324,297.53568486496806,297.60288701718673,297.5530576040037,296.73770308634266,295.93223458807915,296.00913199642673,296.52000604756176,295.8780051493086,296.51451811753213,297.2936019040644,297.25988031737506,297.3922877837904,297.42351721273735,298.2193666207604,298.4982673795894,299.1661473698914,299.7368641705252,299.5587579421699,298.944629910402,299.5436040260829,298.56655622366816,297.9941675909795,298.06312659569085,297.30200577899814,297.3814826863818,296.9461175701581,297.1707743234001,298.1042011072859,297.2603645999916,297.2555950274691,296.44357260270044,295.96073985425755,296.10017842426896,295.259437836241,295.3079857584089,295.67762311175466,295.928551601246,295.917005836498,296.45733058732003,295.76031907927245,295.7358648972586,294.7582386448048,294.3647688678466,294.15299393609166,293.480329815764,293.6760281370953,294.36800717236474,295.3282644068822,295.07543538929895,294.4825713876635,294.6782658309676,295.15947749093175,294.51582261314616,293.85914305690676,293.2485246625729,293.5828173789196,294.1029184493236,293.1743326834403,293.1389456228353,293.58474157890305,293.1275144391693,292.94510771660134,293.7343136770651,294.2585056135431,294.2337688365951,294.76074689626694,294.01669185841456,294.9914249731228,295.91631574137136,295.1161782280542,295.43424896430224,296.0847875699401,295.4336202610284,295.13754881266505,296.0907306247391,295.2828645007685,296.2046948587522,296.8994382247329,295.9217567294836,295.6384797412902,295.12022058898583,294.2739777495153,294.9559941315092,295.23898490844294,295.87226168392226,295.815788178239,295.93859838694334,295.0562500944361,294.5330908121541,293.8930534697138,292.8948144428432,292.68112230021507,293.68108497327194,293.80082921590656,294.4266324825585,295.1478632520884,295.7587015796453,296.09631882049143,296.3349054311402,296.73210775014013,296.97480986081064,296.6507909903303,296.4643767573871,295.5477286223322,295.643241094891,295.1007112772204,294.49208748852834,294.9539507343434,295.1425675274804,295.6737558776513,295.34617083566263,295.1968791875988,294.4349723304622,293.589552837424,293.59576289448887,293.72016633627936,293.7420665244572,293.0764155606739,292.7398662446067,291.95519771659747,291.0451594600454,290.94866058556363,290.693813262973,289.809377388563,290.1781330755912,290.65806080028415,290.1963203907944,290.8067912128754,290.16754647530615,289.1919493083842,288.8863471131772,289.7692944253795,289.27108950028196,288.54936734074727,287.7622771640308,288.139588159509,287.95851622661576,287.3585185017437,287.8240159964189,288.0400237813592,288.41141721466556,288.2026532590389,287.6025379896164,287.2513475706801,286.88068773038685,286.5888314023614,286.3804187295027,285.42015780787915,285.2939341971651,285.1567580970004,284.32778794597834,283.7125646942295,283.0924155958928,283.09878060547635,283.5135663272813,283.62710158666596,283.09587734146044,283.4882933534682,283.28695974778384,283.1484900047071,282.3631286714226,281.43781553348526,281.8387781698257,282.5537024983205,282.93485683528706,283.51811317168176,283.8903580014594,282.9299709862098,282.2311163973063,281.95414301520213,281.1933926208876,280.2311050244607,279.5022799745202,278.5145464623347,277.61695294454694,278.2050888342783,279.0745594734326,279.7650477462448,280.0917005101219,280.2932939794846,279.8667969838716,279.046980261337,278.9235193943605,277.9529822827317,277.56355537846684,278.2270177863538,278.86012323154137,279.66543560056016,279.9891820740886,279.1732392446138,278.44954544492066,277.45333809265867,276.62238491885364,277.1319422586821,277.25007375795394,276.6407162826508,276.81590092368424,276.06985351257026,275.9311795835383,275.48712846590206,275.92612610477954,275.4900147137232,275.0201809667051,275.89008078258485,275.7728072446771,274.9121273062192,274.76370288897306,274.19070621114224,273.44870457192883,274.2240814687684,273.5448117572814,273.85448326403275,273.70263588475063,272.9296022206545,273.7816749843769,273.80288382293656,274.6277975263074,274.4067258881405,274.0047769914381,273.86646887194365,273.4338884204626,273.31999050313607,273.99139821669087,273.29398426925763,273.79594526812434,272.8776648337953,273.6936125103384,273.3949209144339,273.0769457668066,272.7870819289237,272.65771057642996,272.1708546751179,271.7631892580539,270.9525529597886,270.5583257917315,270.21255981875584,269.9397878651507,270.3179919733666,270.5831299391575,271.0982108935714,271.0155801330693,270.7144335997291,270.8265643962659,271.21569764614105,271.02777583058923,270.62472670990974,270.9234702750109,270.1219772286713,270.8413768815808,271.3114769170061,270.85932495165616,270.98922792077065,271.1285537984222,270.6894514313899,271.02871879795566,271.97661682916805,272.8182017863728,271.85578729445115,272.174600855913,273.04014845751226,272.2510344674811,273.1093494319357,272.99766664626077,273.2824018029496,274.0229641115293,274.0012401272543,274.88666756264865,275.8091325988062,274.87053522933275,274.84860192611814,274.0446460461244,274.08670644508675,273.9217979409732,274.28194704605266,273.7926321211271,274.50584038719535,273.7759509086609,274.10308895027265,273.4104528413154,273.5147629776038,273.6317793666385,272.70229696761817,273.6472504166886,273.49808135349303,272.7303112219088,272.02682326966897,271.89284609351307,271.72638291912153,271.128989642486,271.7236458961852,271.408530971501,271.32037095865235,270.74292336730286,269.86765715898946,269.1475185886957,269.295466854237,268.73522195685655,269.5886453813873,269.27149707684293,270.2514981087297,269.70392489945516,270.66124135348946,270.89439931930974,270.9247551616281,271.0949531006627,271.4369930117391,270.6300156665966,270.0015642126091,270.2787657934241,269.51910923514515,270.35854730103165,269.3849851395935,269.4584344723262,268.7650849572383,268.25388108054176,269.1034288550727,268.34821812435985,268.00469952542335,267.2066741245799,268.172969348263,268.8743380685337,268.228206937667,268.477644153405,267.54445258900523,267.2059113159776,266.70074645383283,266.38614332536235,265.97673876583576,266.65089294780046,267.2353470418602,267.7787087918259,266.86357723735273,267.82980900723487,267.2391083687544,266.24186740024015,266.9038894250989,267.0614650142379,267.8173452527262,266.9714607624337,266.60355134215206,266.9108700058423,265.9693325748667,265.97290291264653,265.36577521963045,264.7050742926076,265.24837457947433,264.93905676389113,265.4605573746376,264.4875426320359,265.3758174548857,264.8121447577141,264.69523202767596,265.1595566715114,264.76231492869556,264.2078802632168,264.35002462379634,264.6439038030803,264.06345313368365,263.2559581133537,262.3999177413061,261.766818840988,262.44995950581506,262.62610991019756,262.97255786834285,263.3052864144556,262.9822363341227,261.99613757431507,261.9500919994898,262.71593039063737,262.6145431105979,263.2213784069754,262.37418186012655,262.37954429071397,262.6050284206867,263.0383523781784,263.0428658416495,264.01386651489884,263.9572558235377,264.1174634923227,264.4227474001236,264.24214159557596,265.21525059686974,264.9875300177373,265.5696656280197,266.4873778601177,265.60714237065986,265.84923944529146,264.94664024794474,264.5029213745147,264.3980247285217,265.374516683165,266.2113675973378,265.5880758250132,266.4837062046863,265.76620427239686,266.04815253429115,266.4961238531396,266.111519056838,265.90538401622325,266.03060016129166,265.3835379332304,266.23858201969415,267.20105867646635,266.93483576970175,267.7848017816432,268.16420132061467,267.8117631189525,267.9368399330415,267.8628850681707,267.2546817054972,266.5437704361975,267.46445517987013,267.90504799224436,267.4149453542195,268.0026172683574,268.2828708565794,269.088564011734,269.950728346128,270.87076494144276,269.90461788512766,269.19804207328707,269.4525582464412,268.924218269065,268.39245929196477,267.56503031682223,267.55480450205505,267.881860176567,267.8709065336734,268.7529656481929,268.29132180381566,268.2135798097588,268.9776525637135,269.67464340198785,269.0521782222204,268.19323186855763,267.8514161808416,267.15139349736273,267.1593250343576,266.78758542984724,266.88558827899396,266.6221454003826,265.7394734681584,265.4819596540183,265.894637289457,265.0144715337083,264.3976803882979,263.593484244775,263.970389760565,264.3269571666606,263.7245224788785,263.42097134003416,263.4597454657778,264.148868041113,264.1686230446212,264.47895905701444,264.69985991343856,264.71877528959885,264.51951453927904,265.0355304875411,265.1357350181788,264.4894247772172,265.19058220647275,264.612957527861,264.56290576420724,265.19200163753703,265.87396240839735,266.4219264816493,266.22372440155596,265.8167613153346,264.9055742388591,265.2065035905689,264.64910451695323,264.00418751174584,264.9968192493543,265.9718356318772,265.74821096099913,265.09185745194554,265.7367488411255,264.993883759249,264.89704736322165,265.3027048506774,264.99251379817724,265.90207799430937,265.70243740966544,264.9507909519598,264.8322685682215,264.82766180532053,264.07667338242754,264.0175240072422,263.70991812692955,264.4522751355544,263.5690401964821,263.2889249562286,263.78745056921616,263.09996512299404,263.2206402653828,262.2475395658985,262.4793752320111,262.802246063482,262.5662904167548,263.1880296128802,263.86627627164125,263.3742050831206,263.84549693996087,264.62882399279624,264.48821536591277,264.0864533991553,263.6181656983681,262.9515859526582,262.21725186519325,261.94989457027987,262.3000694895163,262.70279312646016,263.11042022146285,262.8520854394883,263.44399597868323,263.7643683254719,264.0023054862395,263.1639448739588,262.2669000509195,263.0893411892466,263.1083685909398,262.15801250049844,262.5792127000168,262.096553878393,263.0127081251703,263.40783087722957,263.9793074843474,263.44476492377,262.8880607536994,263.8172092642635,264.4656769488938,263.7041276022792,263.8740652836859,263.8412824207917,264.3418936980888,265.21437823120505,264.3492632131092,265.3131707115099,265.0831350563094,264.89162708912045,264.481010212563,263.9143051863648,264.8914936268702,264.0022536064498,263.91830393718556,264.644198671449,264.37773842178285,263.97704113833606,264.8581978692673,264.83278149645776,263.8412189502269,264.33122502453625,264.9013570100069,265.01045496808365,265.7825128962286,265.4801464048214,264.87352933501825,264.9246239620261,264.2351748771034,264.3226171596907,264.103669767268,263.3228490687907,263.44325516652316,264.331718002446,264.3566145906225,264.0921250367537,264.27968193078414,264.39400701923296,263.5178779042326,262.80869375541806,262.1800906932913,261.9698804388754,261.6531751267612,261.2955249310471,261.9314663177356,261.2143980790861,261.39737485395744,260.4538116119802,261.2044480838813,260.99497728189453,261.292207647115,260.61585954902694,261.5614246795885,262.1099074948579,262.3872739933431,263.1857701293193,263.2274464452639,263.0241284179501,263.4224969120696,263.06788579467684,263.8086521285586,264.5111319045536,264.6403348329477,264.35523758409545,263.5611101058312,263.59144332865253,264.3873297823593,263.87554081715643,264.47137622674927,264.9074642909691,264.1828079628758,263.207710089162,263.4424398499541,263.9193203127943,263.4524861681275,264.408360788133,264.19231042964384,264.9060539258644,264.47147853439674,264.16638894425705,264.0286558093503,264.6573833562434,264.9794638925232,264.781009319704,263.8099076426588,263.6472353730351,264.4335162891075,263.7970517827198,263.6146804750897,263.2142727607861,263.5932810269296,263.7054955009371,262.7781236800365,263.11870411550626,263.8173820837401,263.3574688071385,262.4238768182695,261.5925948410295,261.4052570629865,262.0200192630291,262.3921617981978,263.1939317304641,262.8422662173398,263.32648761570454,262.59581527207047,263.0868364437483,262.18640250805765,262.76965313311666,263.6358574833721,264.5795531645417,264.2837536307052,264.7090445253998,264.08105147304013,264.9581208447926,264.0815757564269,264.4153391169384,263.6305122245103,263.0708211637102,262.98857060587034,262.8922760402784,263.5607879422605,264.3863194976002,264.5490643843077,265.0910861277953,264.5556718315929,264.26305940002203,265.2410634541884,266.00994605524465,265.64170152368024,266.53033419977874,265.8831008891575,264.89820369845256,265.82300796499476,265.85011733230203,265.2605731030926,264.6448569521308,265.26360634714365,265.2661656723358,265.9287877124734,266.24800574500114,266.16375993331894,266.9480372359976,266.72868100367486,267.0179278012365,267.7222939133644,267.9889436215162,268.7168788132258,269.4979506148957,269.24692749232054,268.38037607679144,268.34448184864596,268.02790523692966,268.6266443096101,269.0101601453498,269.6775616649538,270.4122673594393,270.14663883298635,270.09664701577276,269.1568079967983,268.32716212654486,268.4727262412198,267.6883551883511,268.5492698433809,267.98475345410407,268.7016609776765,269.6665141559206,269.03687568567693,269.39458149205893,268.5099861016497,269.39041865896434,269.0166717162356,268.03764263540506,267.9264496769756,267.8879331154749,267.1270902864635,267.8207278577611,266.9132117931731,267.6059936960228,267.7176531353034,267.9633301869035,267.5967859928496,267.58405721746385,268.10834719147533,267.7116341283545,268.66259597055614,269.00209845555946,268.8808371759951,268.9550291276537,269.5383188864216,269.26718739653006,268.80003780080006,268.1287788921036,267.92645877879113,268.73851026035845,269.6227228282951,270.0615317514166,270.67163468524814,270.7843971224502,270.3335552350618,269.96991306729615,269.905776405707,270.8874957654625,271.2003433764912,270.6960799745284,271.4064842099324,271.5043937363662,272.22937544900924,271.4169924836606,272.1948113902472,273.1039051976986,273.1269115987234,272.817244597245,272.61030846927315,272.32666186010465,272.5534135811031,273.11068448703736,273.3921180749312,273.3201537723653,274.0321631655097,274.23317296616733,274.7915951348841,274.38878936786205,274.250833701808,273.96355457557365,274.12162077985704,273.67630164464936,273.93844770547,273.1166475508362,272.4019887628965,273.34768420737237,272.9138212078251,272.51679501868784,272.0159151465632,272.4890761189163,271.655561263673,270.7776858340949,270.99432453140616,271.3765518721193,271.552953124512,270.7095924243331,270.71512014744803,271.3820090624504,270.9888509269804,271.7072313227691,272.64175509940833,272.6689992668107,272.9091878756881,273.7637541447766,273.7860365351662,273.0829601637088,272.9017486120574,273.00137525517493,273.8138663750142,274.7767165065743,274.87793263513595,273.9585928353481,273.0069769937545,272.16873781429604,271.7508573262021,271.49598168581724,271.5265439315699,271.35815513227135,271.7620208673179,272.7417361503467,273.535239698831,274.45483709173277,275.3648651796393,274.9087802572176,275.4639679277316,275.3492470001802,276.1550523368642,275.6343639525585,274.67658735625446,275.0566309019923,274.57325127581134,274.5145165803842,274.8660016460344,274.74477594485506,273.76272011594847,273.2179614203051,272.9287266242318,272.3662129305303,272.675044673495,272.25712429266423,271.7262260103598,270.81708057876676,271.12184798158705,270.78669394599274,271.68877653591335,271.10135054728016,271.42508556926623,271.4112137435004,271.84542336221784,271.3924516919069,272.03075697785243,272.0015479288995,271.6659263060428,271.0863717198372,270.1387100396678,270.61046410212293,271.1665323637426,270.97078557359055,271.82621109485626,272.20436228299513,271.58408261090517,271.0213525844738,271.72039294894785,272.51957290107384,271.8844783222303,271.4462894978933,272.0073408302851,272.29137499118224,271.6891414215788,270.9816450201906,271.35146438889205,272.19374455837533,271.2229466554709,271.5798635086976,272.3469623546116,272.7376014511101,273.5428763702512,273.0886029768735,273.44855727860704,272.9027625275776,273.52276171557605,273.74203025503084,272.8604014897719,272.6395547813736,272.8595638787374,273.6031537158415,274.3251562928781,273.9301917408593,274.86904792208225,275.28579711401835,274.3833505208604,275.1387096103281,275.095092382282,274.5664008795284,274.2371757389046,273.97531897900626,273.9964797599241,273.51289250236005,273.5401454465464,273.78601268073544,272.78701083920896,273.0978546454571,274.0642163786106,274.8189407447353,274.6424536188133,273.75850529270247,274.69734062300995,275.69127099821344,276.27978066308424,276.7181385764852,275.85228845477104,274.942538887728,274.26207304093987,274.42633047048,273.78320928663015,273.3870105147362,273.8642403995618,274.3480894854292,273.50091182626784,273.2009991183877,273.36783892055973,274.2330505247228,273.9974889480509,273.39798108208925,272.80632356274873,272.7912620645948,272.6325394101441,273.23276518145576,273.94836038537323,273.60166205791757,274.47878679586574,273.9062389265746,274.0071158623323,274.8976627965458,274.2805946422741,274.18418363295496,273.52166627394035,273.7503934688866,274.4152198266238,273.6536516682245,274.2932459083386,275.1323145949282,274.24666567519307,275.1295745447278,274.1320639550686,273.8960722167976,274.63710998464376,275.15218535019085,274.4531416511163,273.5647792168893,274.0194061268121,274.186452741269,275.15481787594035,274.15737634850666,273.15995070524514,273.90297503536567,273.0848134625703,274.02700690180063,273.4198918803595,272.64014473650604,272.99548560846597,272.33134556980804,272.1552921421826,273.0066997986287,273.63015260268,273.1014115200378,272.226990706753,272.96638610353693,273.2230642391369,273.2870197878219,272.7493189149536,272.9274543141946,272.1763388845138,271.4611025340855,270.47806071070954,270.1415330511518,269.7655531265773,269.595202261582,269.80810739286244,269.4509001383558,268.67049847217277,269.53331418707967,269.38975834846497,270.2024864535779,269.9020831515081,270.2918419409543,270.1116433669813,270.54985682852566,269.8522247080691,269.76460154308006,268.93107164651155,269.122221192345,268.96458070818335,268.9306181371212,269.552279187832,269.07058615237474,268.1490321275778,267.820610425435,267.8531040083617,268.30284591345116,268.23209220776334,267.2929917080328,267.8830605125986,267.6514785424806,268.1936149643734,267.8387935347855,267.9901899327524,267.39206288568676,268.1349228154868,268.72832101164386,269.02972479956225,268.490506418515,269.18985034897923,269.9959198180586,270.0907814023085,270.5559837031178,270.884000163991,270.2023165952414,270.24594244826585,270.60059052472934,271.3652816922404,271.7609386937693,272.2235048189759,273.0206276685931,273.0027889786288,272.1835026293993,272.4240636266768,273.13614974403754,273.1963102668524,272.96289528300986,273.3543929234147,272.68158133281395,273.50409118644893,274.0342536373064,273.8700566957705,273.1792366425507,272.7262376276776,273.226110169664,274.0631889710203,275.0152484080754,275.4014298385009,275.55924753425643,276.2489732275717,276.6339097456075,276.14459515735507,275.30364055000246,275.98514373227954,275.0813096277416,274.1985113620758,273.40399192878976,273.87397813703865,273.6395172197372,274.1847629924305,274.7410829309374,275.16316225240007,274.5627316972241,273.7378016458824,273.943235963583,274.7600622768514,274.1859950814396,274.7204100419767,274.56625838112086,273.68616198794916,273.8026133668609,274.0790773634799,273.2614272576757,273.63893097033724,273.9945065798238,274.52606872608885,274.898786237929,275.2500485149212,274.2833673111163,273.8875516806729,274.1423273719847,273.2908986653201,272.8918251376599,272.82504427433014,273.79007664322853,273.34023576416075,272.9607488871552,273.0233677816577,273.1000708974898,272.27093183947727,271.4474542988464,272.1440332788043,271.2119144066237,271.9438279620372,271.3732436411083,272.17847325932235,273.1779742720537,272.78540183231235,273.5390556580387,273.60656607104465,272.74991105822846,272.23789778677747,271.33743751514703,270.71007047453895,271.0429192376323,270.4504027189687,270.84366033086553,270.7967140423134,271.10349674290046,271.79762710956857,272.1371541051194,272.6793072675355,273.08203979721293,273.779399946332,274.6387109849602,275.3324947236106,275.2135372511111,274.2479750546627,273.36527774948627,273.2279351851903,273.7050908827223,273.8990584779531,273.64235078310594,272.67004264658317,272.13895359868184,273.06897902069613,274.0641430574469,273.4180601099506,272.88044630223885,272.77303216280416,272.7885553832166,271.8946261499077,271.5947354133241,272.2158296601847,271.66609682142735,271.3390354309231,271.2706532818265,270.6824301299639,269.8589966413565,270.1335153076798,269.1865780544467,268.9610483907163,268.94125269912183,269.9356372077018,270.24791046231985,269.3149154698476,269.7590807159431,269.20178080163896,268.77646353282034,269.5483353114687,269.2368123922497,268.892681538593,268.54982371861115,267.69101827358827,266.9052424682304,267.13563417783007,266.1900480003096,265.8226187322289,266.2780421306379,266.2114941589534,266.32324787741527,265.35329448757693,265.65382289048284,265.42121158819646,265.87617107573897,266.35844125039876,265.38953309645876,264.410118218977,264.4144374593161,263.9329317663796,263.11238279799,264.0017095184885,264.2591090374626,264.5376597279683,263.8955548261292,263.2880657808855,262.9763261987828,262.09160139225423,261.6716272495687,262.49357112683356,263.0387924374081,263.9251291491091,263.34497263794765,262.9323407821357,262.0491682603024,262.73387895943597,263.65971826249734,263.1338561116718,262.29036959353834,263.1285047545098,263.08338257763535,263.78881516633555,264.27042486378923,264.3763431641273,264.9458407778293,265.6494672377594,265.55741078965366,265.56448888685554,264.92702870909125,264.04438018845394,263.46032977243885,263.78659943817183,264.57168609742075,263.825988071505,264.4045971282758,263.8721675318666,263.43109075864777,263.23491873126477,263.4609330599196,264.1828865078278,263.2936297231354,263.4793644058518,262.5011026035063,262.2221840568818,262.95451960805804,262.20276242122054,261.2804881040938,262.17054650420323,262.06029511615634,261.650652308017,261.7696843640879,261.84584384132177,261.7152764382772,261.72978165140375,262.5456826714799,262.365084475372,262.34995236760005,262.24157668696716,262.98368432791904,263.45440577715635,262.74088116548955,262.43189434846863,262.3882359266281,261.43070961534977,261.4814451094717,260.9992322064936,261.26781381201,260.34775686077774,260.41452481318265,260.7687653414905,260.1141665549949,259.914996329695,260.0600580391474,260.43622342823073,260.751680274494,259.7599536050111,259.0814417824149,259.7503603743389,259.43271412560716,258.9110749186948,258.0057708369568,257.16097693052143,256.7341446406208,257.47875195741653,258.3842616798356,259.04125244915485,259.140736898873,258.361094402615,258.4955827239901,258.44255980476737,258.494009825401,258.6693793409504,259.05714162718505,259.8241990329698,260.44900833815336,260.9482681034133,261.4437943343073,261.9178674770519,261.1642272733152,262.0154804880731,261.9564403053373,262.1217553974129,261.4604363734834,261.5168911856599,261.68146076379344,262.54355149157345,262.1940629808232,261.6908379350789,262.3850120403804,263.2520241960883,262.82128776377067,262.6637006485835,262.19506289530545,261.6526204040274,261.4904063749127,261.28202152997255,260.82282959949225,259.8745966232382,259.43240237189457,259.6634289515205,260.63075627107173,261.4617443168536,261.0413138233125,260.12362597184256,260.74403851572424,260.44871334778145,261.17574922088534,261.6921905949712,261.6893211947754,261.14238478802145,260.99695783481,260.7728090803139,260.50060050562024,260.00539257517084,259.9726739535108,259.64102679723874,259.439440630842,259.003221841529,258.320855084341,259.25236933724955,258.5471125859767,258.71973504312336,257.8468772675842,258.30912720318884,259.0806643180549,258.6978395059705,259.21956196567044,259.0532489172183,258.20531951170415,258.4485222613439,258.1409990042448,258.79115980211645,259.0766453393735,259.7609888147563,258.86526985652745,258.78226260794327,258.2194134835154,257.9485683524981,258.45758193777874,257.8611215450801,256.906206484884,257.44422509660944,258.3801909070462,259.1615347978659,258.2433006968349,258.8372082626447,259.1220631445758,259.7619425226003,259.6023282818496,259.36630078731105,258.93729246919975,258.77561078453436,258.1714423992671,258.34411275666207,258.36054863315076,257.5253917328082,257.6165414475836,257.510558180511,257.00083209201694,257.87405066471547,258.1407720921561,258.06235647853464,257.95973853440955,258.202752860263,258.87950157606974,258.2643578546122,257.9540394865908,257.75978204933926,257.71222851704806,257.0961559698917,256.84391807904467,256.76462326711044,257.3362538148649,257.0299745122902,256.334754770156,256.60467203427106,256.62932328507304,257.4038598081097,257.0554407602176,257.23581657372415,256.3649246627465,256.42299414239824,256.8882391923107,256.01924002636224,256.3905184045434,256.79949920251966,257.70303834043443,257.4416248933412,257.3190293209627,257.0144759165123,257.1029990212992,256.6427924791351,256.5361170214601,256.7549456246197,255.95881828665733,256.65608739992604,257.032184980344,256.9766150112264,257.57832901226357,257.6382605852559,258.3197542396374,257.67410880932584,257.49905958306044,258.4115459835157,258.76647719554603,259.37840087292716,259.8660252406262,260.0110163693316,260.76703451992944,260.32109158858657,259.66648311167955,260.58310555433854,259.8370619667694,260.1706107915379,260.4575535901822,260.2440198203549,260.74408861855045,259.77234319318086,260.6874660057947,260.3503479808569,260.8271506438032,260.5006280359812,259.92221385985613,260.36391166364774,261.12218694482,260.54613969195634,260.6389290317893,259.9818655210547,259.3625510642305,259.2810807353817,259.9700609422289,260.68908459320664,259.76103989593685,258.8018484036438,259.70537844952196,259.1835849122144,259.48802357679233,259.88093853835016,259.4235419370234,258.717402191367,258.37644823268056,258.5767840333283,259.04545570909977,258.5278589404188,258.8777430667542,259.29735491611063,258.5197488889098,259.0365740964189,258.8985957466066,258.8616386805661,258.7843427360058,258.86521922564134,257.88666190905496,257.0989390523173,256.7849616622552,257.57608527410775,257.56102047581226,257.191091154702,258.1374341249466,259.1031138491817,259.34283914696425,259.81856343941763,260.3982712761499,261.32281590113416,261.35097686899826,262.06420282507315,262.93157120049,262.6936242226511,262.7909223618917,263.48860868485644,263.92942373175174,263.79482998372987,264.55106278462335,264.9702633880079,265.4103381135501,265.3956844639033,264.62925308709964,265.50702475802973,265.1362582119182,266.0312723852694,266.77445705840364,267.04438819922507,266.2360908598639,266.99377628881484,266.5452252505347,265.73779552523047,266.04727335693315,267.04463107697666,268.03259093593806,267.8472055257298,267.4598689461127,267.5661554550752,268.09808413125575,268.9780067834072,269.8212317461148,270.64158554328606,271.1678812080063,271.8158962656744,272.76155014149845,271.9474392910488,272.74341359967366,273.5390690858476,273.8166655227542,274.4017005977221,274.8517877073027,274.6241655666381,275.3717665532604,274.4811458848417,275.4285168531351,274.84891393827274,273.9378670086153,273.5632322607562,274.09096384979784,274.7709321882576,275.1468443744816,274.9819988193922,275.7495315023698,274.9110646452755,274.1708098729141,273.6428029281087,273.74614492384717,272.8337935474701,273.58631654269993,272.87467178935185,273.7610748442821,274.06165063381195,274.1562982252799,274.55911518167704,275.4518765201792,275.1560217817314,275.6343014710583,276.2978462539613,277.08699730038643,276.78039275249466,277.47739812126383,277.1137002748437,277.4938937672414,277.7071321657859,278.56896680919454,278.36346881324425,278.4627686194144,279.16695360373706,279.2185516823083,279.5993695198558,280.2813081527129,279.3711528200656,279.6221525268629,278.92783544491976,278.3117093257606,278.02125634253025,278.74232490500435,279.00067625939846,278.2843820685521,277.94221996562555,277.5804649665952,276.5973858637735,276.69107812363654,275.7400867170654,275.56802506465465,275.8344760029577,275.3264771187678,276.22250910196453,275.35831406805664,275.8935449048877,275.009368843399,275.9872919502668,275.13192255655304,276.03930091205984,275.14828449161723,274.59578383434564,274.58005418721586,273.63529531192034,273.2664643707685,273.787638138514,274.0714845727198,273.7166719469242,273.7450871709734,273.97019974980503,273.2567522060126,273.4179020645097,274.0769216911867,273.9956269180402,273.28315548878163,273.9628319563344,273.16678381850943,272.26346283312887,271.4743259479292,272.0724134440534,271.9029873092659,272.7309115426615,273.3220262960531,272.40488499216735,271.54501874698326,271.2301757973619,270.9452261631377,270.6719214124605,271.0482156770304,270.7646924625151,270.7132859406993,270.2455513407476,271.1218799217604,271.0792045290582,272.04009476164356,271.3420672887005,272.13893808983266,272.2994648842141,272.8033913853578,272.6859126663767,273.6215274981223,273.8349897447042,273.9749878873117,273.7527627889067,273.6740934676491,274.48864709213376,275.3661671895534,274.5718409526162,274.3007292393595,275.11669736448675,275.3901659818366,274.6591469999403,274.9541561664082,275.1695508630946,274.68134794570506,274.9694657032378,274.48878994351253,273.8467934085056,273.1329340762459,272.1660361867398,272.61031311331317,273.0784073136747,272.09269929118454,271.47623984050006,271.3930384889245,271.7059319894761,271.00256044091657,271.3773299190216,271.31507938262075,270.52252502180636,270.60299538681284,270.8023140565492,270.69235656922683,270.40357106085867,269.9908767337911,269.93665985483676,269.15467757871374,268.441168484278,269.03029966633767,268.33972797263414,268.0332944896072,267.05617611436173,267.52257478330284,267.97643529530615,268.2531888377853,269.01340974587947,268.57206536084414,269.2482865396887,270.0896031986922,270.38552945572883,271.0603887611069,270.7448982940987,269.8949407651089,269.372596395202,269.16387559613213,268.26160911796615,267.858694891911,267.7861003940925,268.2824971601367,267.8617957737297,266.9743082234636,266.6074704322964,267.2184429522604,267.45312180090696,266.48338305577636,266.6253973841667,266.0674930610694,266.62989967362955,266.7302394192666,267.1249876492657,268.0975763606839,268.8337465785444,269.3814425920136,268.8667562669143,269.4913614881225,269.54787420202047,269.51134010683745,270.3892017197795,271.29819450946525,271.4356464492157,271.62747556483373,271.11701582046226,270.52042843261734,270.1401497106999,270.5961630777456,271.11559110181406,271.6885828943923,272.6138468310237,271.73471839074045,271.78209971264005,271.8013528212905,270.80964828282595,270.846080919262,270.6822840333916,270.4966416382231,269.7903525251895,270.74790638452396,270.0997197837569,269.23944132821634,269.92941883485764,269.6651494638063,269.2727049551904,270.08558484492823,270.60515510477126,270.5562518648803,270.6293448023498,270.9014894575812,270.4712803689763,271.03035500785336,271.2842129948549,271.7031321604736,272.19496633671224,272.85852048918605,272.6383147467859,273.2761409189552,273.82078326959163,274.4157362761907,274.7522066012025,275.21078050648794,274.4532845853828,273.86504609975964,274.3753286874853,274.657815374434,273.9295388539322,273.06292494852096,273.7493315800093,272.8115494302474,272.968861898873,272.1546484003775,271.4524323903024,271.619466109667,271.55293018417433,271.8852802067995,271.32086491398513,271.7614614996128,272.17402619635686,272.0600781678222,272.1070080483332,271.5847842339426,271.27426372189075,272.04640426812693,272.53807365568355,273.41824938496575,274.41006483789533,274.2912918757647,273.6100472426042,272.6154894698411,271.862395694945,272.0871513681486,271.6503242449835,272.32552366377786,272.47915439959615,271.8512018509209,271.987072405871,271.5574361369945,272.3410528297536,272.0446546864696,272.409323500935,272.89951109932736,273.10915656154975,274.0669195782393,273.67187839606777,274.30083899060264,275.174138431903,274.91605484997854,275.6411788421683,276.38475997559726,276.4403364439495,275.9450738639571,275.58534399513155,275.4957630801946,276.3408816475421,275.9386600907892,275.099668093957,275.0817753924057,275.0341702713631,274.7342168795876,275.67689094971865,275.4871419570409,275.66660126298666,276.0248983083293,276.6229572738521,277.47401483915746,277.5830914299004,277.6445681885816,277.2869326299988,277.84321297705173,278.69379314174876,279.09488631086424,279.1861618105322,279.84748401865363,280.7722263005562,281.4165833713487,280.60408083349466,279.62862029625103,278.65231550252065,279.4290109882131,278.8672560788691,279.593733553309,279.71528168348595,279.3229967649095,279.61530271265656,279.78065813239664,278.974343707785,278.0773545796983,277.64165308419615,277.35172334779054,277.87261387938634,277.21002424461767,276.79172319965437,277.3568905326538,276.5204078494571,276.8083860343322,276.29099892871454,277.01421855948865,276.06001508096233,276.0707239648327,276.64529161481187,276.3383322264999,276.9119410496205,276.8197816875763,277.1443847059272,277.68166269455105,277.89879540679976,278.0910474094562,278.0820020646788,278.9046241887845,279.0090918978676,279.18169284891337,280.11712437076494,280.62070686835796,281.2384872874245,282.06951191835105,281.584021395538,281.83348800521344,281.777839358896,281.86022490123287,281.9820782709867,281.96409049490467,281.2864049496129,281.5831498638727,281.35217014933005,281.78528536949307,282.09650599444285,282.0855891625397,281.16965927928686,281.02566348947585,280.5009560100734,279.60120339039713,279.15078780194744,278.64420374529436,278.3941504638642,278.7441452802159,278.9762925566174,279.68203912861645,279.5225074845366,279.27289473777637,278.5768286497332,278.7585843182169,278.16782067902386,278.4539702204056,278.7391499383375,279.718422986567,279.8707344359718,279.5392937930301,280.44629568746313,279.86207797238603,280.5528570469469,280.1383792087436,279.58154912944883,280.49293579207733,279.56428972724825,279.836507528089,278.84228685405105,279.10843201028183,278.3867159760557,278.2855457533151,278.66323186224326,278.310308016371,278.9833661359735,278.37091182311997,278.8280684915371,278.0003434838727,277.67588135786355,277.8628097306937,278.8581521031447,279.60098339850083,279.20422849757597,278.93746787076816,279.44145457679406,278.58316690288484,278.023327014409,277.6402126150206,277.49527407158166,278.46219127299264,279.20007428945974,278.76423431094736,278.2981334379874,279.0154080502689,279.64514739625156,280.553958655335,280.2915662028827,279.89922238048166,279.66659599356353,278.9845113516785,279.06597832916304,278.1972991465591,278.8357596495189,278.0859109410085,277.28820169949904,278.2187769128941,278.614960947074,277.94710573367774,278.412306278944,278.0119553836994,278.8203332172707,279.432588676922,279.4598773852922,279.0238961405121,279.93863496836275,280.53638633852825,280.55892357137054,281.3653340744786,282.09453651029617,281.90373835572973,282.6701034475118,282.961287539918,282.6944564166479,282.266744997818,281.98503226134926,281.926459797658,281.1641207970679,281.7718040915206,282.4518288038671,282.44845547154546,281.6096587693319,280.87167503125966,280.58303924510255,280.93780797114596,280.92201498523355,281.89639927539974,282.80703142797574,282.04958666116,282.13219513744116,281.80289842095226,281.16613949881867,280.95273493090644,280.7065515466966,280.68802526174113,281.2136744162999,280.8886238737032,280.71736901951954,279.9897836567834,279.6996382260695,280.58724189922214,280.32668759673834,280.9702158011496,281.81293768109754,282.2213911442086,283.08900282904506,282.8383506760001,283.0177175467834,282.448404727038,282.4356247014366,282.15168940555304,282.3894875305705,281.57349297311157,282.4841643641703,281.8576874639839,282.65570274274796,281.6609503189102,281.01741703785956,281.37997598480433,282.347443127539,282.1856127465144,282.73401675000787,282.2374773360789,281.3526715137996,281.011143819429,280.4672950725071,279.75159137230366,278.9476903034374,278.4629218587652,278.56927771680057,279.3553040511906,279.9608320603147,279.30078161880374,279.723239001818,279.02082063630223,278.18799232458696,278.7110154191032,278.84399324981496,278.54572475049645,278.3124195043929,278.84031380945817,279.5801994348876,279.0719838659279,279.05786182917655,278.6034643719904,279.41032441100106,280.1943571418524,280.03864801861346,280.1016895887442,280.53516563307494,280.83932045288384,280.2617041505873,279.82588306302205,280.15567570971325,279.5919928047806,279.9918867549859,280.30986592918634,281.0158668369986,280.35255627147853,279.3571430086158,279.34792046202347,279.711083647795,279.76801303448156,279.09346628235653,278.410590805579,278.4204226899892,277.6904682535678,277.25866540241987,277.5098150554113,277.8358398685232,277.9719238220714,278.4500944777392,279.42943098116666,280.15368323307484,279.64800002938136,279.5003379243426,279.5107908840291,280.0906880684197,279.65256468206644,278.824896637816,279.42923204321414,279.0926386434585,278.1760498979129,278.7573574199341,279.2415541415103,278.98737882683054,279.45737498858944,279.13142490061,280.05261878762394,280.2690684576519,280.2798846093938,280.90923790540546,281.71461850358173,281.38756048167124,280.97312717325985,280.94546351535246,281.33588726073503,280.73244393989444,281.18878700584173,280.63308122288436,280.69426362169906,281.18685114244,280.7946544443257,281.4507198240608,280.5180989182554,280.08926971489564,279.85828222939745,280.7835017289035,281.5114319860004,282.44989304384217,281.9757004980929,282.00342961912975,281.11671414086595,280.5072214156389,280.14051078725606,280.6048802998848,281.57576911197975,280.656157924328,280.0301273865625,280.3276066300459,280.6503732674755,280.3211134201847,279.664285519626,278.70435373764485,279.1984381629154,279.4851837474853,278.9927462497726,278.1882893787697,278.12477993266657,277.507994315587,277.6288356198929,278.3309939694591,277.6500148731284,277.6326338108629,277.9830882609822,277.8965835934505,278.7678940552287,278.77947945473716,278.97952055744827,278.4213628382422,278.6134922672063,278.5877229962498,279.23589822649956,278.5736043774523,278.0751675972715,278.95367263024673,279.05259213829413,278.9290502490476,278.1962155746296,278.3577267443761,278.80919836927205,279.71995032485574,280.21669620554894,279.4207307500765,279.17388245556504,278.7539652707055,279.18906460050493,279.4943072516471,279.4914463465102,279.965678405948,279.18888396490365,279.7426287326962,280.6809204882011,281.28563936660066,281.32101857010275,281.60897396691144,282.16611072514206,281.9157240348868,281.97663329495117,282.28111888980493,281.74757535010576,281.1989455684088,280.81553637515754,281.33875045506284,280.8617064738646,281.57612516963854,280.93660531472415,280.0390321793966,279.62435807753354,279.36206359323114,280.1500917277299,281.09694468742236,280.5379027556628,280.18710536602885,280.65469129988924,280.714861754328,281.20785442274064,280.29359388165176,279.7378308074549,280.7255024011247,280.47197123337537,281.0954716880806,281.0213206168264,280.60261198412627,280.4930666522123,281.12128925463185,280.60103128664196,281.15299277426675,281.0160955777392,280.16645598830655,279.962766894605,280.8416677862406,281.14202238153666,280.30930357193574,279.351010100916,279.8651202386245,279.8903592219576,280.8717562793754,280.59482230013236,281.4047441468574,282.120667188894,281.1404787702486,281.6429955926724,282.40698628732935,282.24423251254484,281.29367386363447,281.91483362205327,281.98611470870674,282.5757989520207,281.59103101538494,282.216915557161,281.50287627615035,280.60960648488253,280.04291784297675,279.8393368781544,278.88509695371613,279.75432320917025,280.65125612867996,280.15809122798964,280.95562622509897,280.42927890783176,281.0285914535634,281.9120260081254,281.703682993073,282.3425127011724,282.3927161116153,281.9352056845091,282.6993859875947,283.2967386096716,283.42934968695045,284.36680536950007,285.1420913897455,285.0596774839796,285.1132025453262,284.24337030760944,283.6102606616914,283.37265947367996,283.878384726122,284.0817122645676,284.49744667718187,284.2589348494075,285.22472111787647,285.70587764214724,285.34270386537537,285.10430356347933,284.1956081497483,284.9911928246729,284.13743171375245,284.84600345697254,285.22430944722146,285.56885934015736,285.97465294832364,286.85070449113846,286.8375855111517,286.868701802101,287.07478836225346,286.72873784508556,286.0598249952309,286.32485173642635,285.57955937320367,284.7682843259536,284.0992541969754,283.34348106756806,282.5015575401485,282.59126674290746,282.61767691839486,283.1743493541144,282.9024089584127,282.02277968404815,281.6300107911229,282.18899753922597,282.12123392056674,282.35665710503235,282.83018865063787,283.16139049781486,283.0699598803185,282.1592809287831,282.1822166754864,281.5206142254174,282.29049632837996,281.34335038019344,282.3410876127891,281.41033025085926,281.36526624439284,282.0316355074756,282.33645232534036,281.8311641686596,282.09198880335316,282.9378282832913,282.14261712227017,281.3226285739802,282.07557333400473,281.6654172297567,282.2667147410102,281.6324693830684,281.0992736076005,280.57011783961207,279.66378103382885,278.93343036668375,278.1604685182683,278.1371323126368,277.80760078225285,278.80527779925615,278.60258081695065,278.0728498129174,278.38808587472886,278.29420855501667,279.1698406445794,278.48440977651626,279.304856502451,279.5568915712647,279.7340364228003,279.14851240767166,280.07623467594385,280.6057245321572,280.326379052829,280.2129388768226,279.9213214498013,280.8922056974843,280.66278292937204,281.5190346124582,282.0839902427979,282.322200786788,282.1797313373536,282.29357742052525,282.2792566968128,281.4537494047545,281.2133485516533,281.23728720331565,280.25345206353813,279.7418022127822,280.4551649824716,280.62040529120713,281.0199664575048,281.08912428608164,281.6630443325266,281.87337509263307,282.03168062120676,282.62968844361603,282.9165640086867,281.93485685857013,282.4323885035701,283.1662616604008,283.22294872952625,282.69910973962396,283.2039710036479,283.7213323460892,284.56436088401824,284.06886774580926,283.44785550795496,282.7500781067647,282.9566923021339,282.5148085942492,283.1714047617279,282.62902731914073,283.2958362917416,282.7449394175783,282.06446215184405,281.4361437642947,280.8513371674344,280.5328576848842,281.246357135009,281.189730102662,281.58014217205346,281.77016418008134,281.5291186738759,281.0461231023073,280.48903720779344,281.44374856865034,281.7576891705394,282.28642022330314,283.2725455616601,282.31693939166144,282.6500989785418,283.37873139837757,283.68447438813746,283.3022619499825,282.8592168437317,283.63509439677,282.65479498403147,282.74870069883764,283.6199703537859,283.6976974112913,283.04504316160455,282.78993565635756,281.80939820595086,281.106806371361,281.9192757541314,281.9096142896451,282.4642672953196,282.86733183357865,283.4255490526557,283.0031439643353,282.2493394096382,282.60808520019054,283.54512482183054,283.5211095539853,283.96223701443523,283.9070311198011,284.67488073091954,283.9142946242355,283.427141321823,283.87791021028534,284.63048135861754,284.56526485132053,284.25935293734074,285.1720679998398,284.77140653366223,284.4124018945731,283.8639411893673,284.8240815750323,284.4504606174305,283.93530042050406,284.2456560106948,284.17034217342734,284.01089465385303,284.4042509654537,285.3184648216702,284.94701229641214,285.4567485949956,284.47333695506677,285.3575134957209,285.68906420795247,285.32003072090447,284.3581530256197,284.44586243946105,285.40773192839697,286.40033745300025,286.26032158220187,286.4569460838102,286.3771249195561,286.68093291996047,287.48993906006217,287.2819315404631,287.34530549077317,286.5462182434276,286.2600935632363,286.85028743743896,286.60301076667383,287.5691876206547,287.79923804756254,287.49015401722863,287.5527684353292,287.15100515354425,286.2913003778085,287.01403012126684,287.5432800850831,287.8312571840361,287.8907052516006,288.0467675267719,288.10648242384195,288.87540345359594,288.8737692418508,288.85893273120746,289.6309760729782,289.7278414564207,289.2419635611586,288.63428535917774,289.5046989424154,289.126700125169,288.32663020212203,289.19946257257834,290.12763926340267,289.474961690139,290.2714514429681,290.7864193399437,291.70197180332616,291.6361384652555,292.1176877100952,292.7682929406874,293.10647474229336,294.0653962804936,294.0598751883954,293.6828814102337,294.12098102318123,293.9596850834787,293.72584448661655,294.39651958085597,293.4129397836514,294.004700999707,293.9296794855036,292.9906479557976,293.1686570099555,292.9829597994685,292.8726111892611,293.75884650601074,292.88681160332635,293.6105098100379,293.4341034279205,293.6310802507214,294.21810359694064,293.8927101865411,293.0106323179789,292.537859397009,291.6712866947055,290.99298209371045,291.4760579857975,291.6021067793481,290.71989078167826,291.28260268922895,291.1646135575138,291.9282436221838,291.1479361602105,291.117163403891,290.1468201414682,291.1085557709448,291.8227642644197,291.56495633907616,290.59775108098984,289.78481310838833,289.1747096874751,288.25050078704953,287.4968487988226,288.29620600119233,288.5917615587823,289.07053070515394,289.1504389536567,288.8391426531598,288.4717000159435,288.19105247501284,288.93069308483973,288.78880307031795,288.8915421087295,289.0004037441686,289.44056073762476,289.9571579070762,290.95169073250145,291.45665697334334,290.47752362769097,290.7188342944719,290.4671489507891,290.21518043940887,289.7906875880435,289.71915806876495,289.2712992662564,288.43634434230626,288.03228089539334,287.60144330514595,286.6687091081403,286.3918803120032,285.9203651268035,286.28912765393034,286.2747851461172,286.6931314445101,287.43948375526816,286.6979009998031,286.8852344197221,287.61736080423,288.14370731730014,287.5820698393509,288.45890232827514,289.22896731691435,290.1720211105421,291.0684056938626,291.79253673227504,292.6651759115048,292.2186893899925,291.4949756413698,292.09330146433786,292.51441531674936,292.3070371025242,293.0813062218949,293.3921864433214,293.36992380721495,293.3029089528136,293.6242845635861,292.73250907240435,292.42075028223917,292.59810978593305,292.40119470236823,293.12700351141393,293.9133785129525,293.6518850377761,293.86907405778766,294.2826494406909,294.99886757554486,294.88248677924275,294.7160620139912,294.7580129606649,294.22062735352665,294.1458935793489,294.0144158969633,293.4337617731653,293.9788184762001,293.7961019715294,294.31189846852794,294.4300802578218,293.9677983582951,294.15922809764743,294.92897673742846,294.7190705924295,295.4196342038922,295.6169948768802,294.87120643397793,295.6913032196462,295.8920201067813,296.36373971262947,296.5963178258389,296.2899673716165,296.46225502807647,297.1809052731842,297.5959912207909,296.8028351883404,296.25122501701117,295.7234599669464,295.10329425986856,294.64467967208475,294.9649989595637,294.05198798747733,293.1645368677564,292.6667494592257,293.51725012715906,293.0928342328407,293.9670541170053,293.8016724428162,292.9329110896215,291.9992756107822,291.8258642042056,292.60996054438874,292.85310244141147,293.0263700392097,293.4860669421032,293.53903500689194,293.28374144015834,293.74292154144496,293.9492894485593,293.3749701157212,293.41405476629734,292.86830656649545,292.58607996162027,291.63202086882666,291.1024648239836,290.7278720368631,290.67141115665436,290.2425776706077,290.52592976018786,289.9427994284779,290.84719639644027,291.63946043420583,291.2920463089831,290.46554938843474,291.3402932570316,290.8394181407057,291.5329174702056,292.38815661193803,293.20618280256167,293.2355003594421,293.1805007075891,292.88458630954847,292.07443524571136,291.92828127136454,291.12566730799153,292.06697359588,291.19165564421564,290.26938464539126,290.8988745016977,290.2655479060486,291.1897185253911,291.8220470617525,292.1130702230148,291.6449416275136,292.4207389461808,292.74182423809543,293.2020057491027,292.8277168283239,292.50159188872203,293.3152457512915,293.4507975205779,293.925995440688,294.8861445323564,295.65926157310605,295.2434763289057,295.3470497056842,295.8256830791943,295.8546824832447,295.1505757025443,295.1791491396725,294.9003953244537,294.4508948228322,294.30090123973787,294.6082198410295,294.8870430351235,294.1529751936905,294.96734626498073,294.43773991335183,294.0149048808962,294.7427877560258,295.6128626870923,294.76173880835995,294.0411522490904,293.2401147214696,292.44477443629876,292.0795219000429,291.38954957108945,290.54096741462126,291.43562418594956,291.2379787187092,292.2185707660392,291.3132530269213,291.00596658699214,291.6112850755453,291.73012811504304,292.6111915730871,292.33196393819526,292.6589170312509,293.61183404223993,294.507450719364,295.20158073073253,294.7250895402394,294.26069737644866,294.2512658806518,295.2108001075685,294.3610344254412,293.65484817232937,294.349577115383,293.4181806258857,293.66259540151805,294.2228654464707,294.3312820508145,294.75680866790935,294.65786415711045,295.1926517849788,295.1593619468622,295.8379485514015,296.83566234307364,297.27063643652946,297.1925932355225,296.4417824568227,295.5092884115875,294.57492789579555,294.5538531797938,294.18622782593593,294.8952444056049,295.81199925998226,294.9714573258534,295.6635150536895,295.08755457773805,294.11622635880485,294.93797256052494,294.9991514966823,294.0781897115521,293.7338823354803,294.24739424558356,294.2754322485998,293.55225121602416,292.55804448528215,292.5895317387767,293.0986175709404,292.5974618108012,293.2012550155632,293.37247401382774,293.5118663548492,293.16481892578304,292.352760235779,293.1279147360474,293.1230606776662,293.71196362702176,294.3144400687888,294.20098724914715,294.86298638861626,294.0322423884645,293.507825021632,292.7494010454975,293.36814424209297,293.1636181785725,293.43671816168353,292.9821786042303,292.0868090861477,291.6311050807126,292.0970531455241,292.25898592127487,291.64295022794977,290.95070134615526,290.17442018259317,289.31810691859573,290.2205688683316,291.0488758967258,290.265395949129,290.83693266799673,290.7860247255303,291.50537727819756,291.0514982705936,290.31697816122323,290.3058673562482,290.61491340212524,289.7178754634224,289.9985371902585,289.46752878883854,289.548071464058,289.45180369215086,289.8971598232165,288.9842594321817,288.04473139857873,288.10073307622224,288.59911731118336,288.4837283818051,287.76388131733984,286.8456878233701,286.2082771304995,286.36039330996573,286.5568261006847,286.6040538405068,287.5592868910171,286.6543929781765,287.21286713378504,287.9655225966126,288.16721266601235,287.9123851447366,286.96372607396916,287.68823203165084,288.35385584738106,288.5544245573692,287.67749742092565,287.91547667235136,287.98615903407335,287.6036371313967,287.2515395623632,288.10590842785314,288.3422695901245,287.5902096936479,288.2851890497841,287.4703519823961,287.36885352712125,287.83373766951263,287.56463756784797,287.43278168002144,287.23013778962195,286.30704259406775,286.67539437906817,286.0794553994201,286.4025442847051,287.09794517001137,286.67307824920863,286.8372513623908,287.44007191294804,286.84719258593395,286.85505972616374,287.72998657869175,286.8661723360419,287.34637550311163,286.60067890863866,286.361337993294,286.65240679774433,286.1350531098433,286.97968745278195,286.8227272890508,286.4675810500048,286.3111267159693,286.02954363264143,287.01448029186577,286.91169239534065,287.4831578829326,288.09259365452453,287.14797559101135,287.66293019941077,287.47499486012384,287.70665063895285,286.9799568140879,287.90751035371795,287.59736428502947,288.0333514213562,288.1916708513163,288.28652478195727,287.73819793434814,287.11841483972967,287.8214866742492,288.35608448740095,287.366849206388,287.35914213303477,288.28835537238047,287.88886676728725,288.15359166264534,287.20388024207205,287.61788123100996,288.0418703947216,288.58490034379065,289.08191163791344,288.3597280732356,288.2470539868809,288.1150431581773,287.57856863271445,288.5268994560465,287.5543515342288,287.7025795811787,287.90571908885613,286.92303412547335,287.88555223075673,287.39527001883835,288.3858077772893,287.7641769456677,286.79411778319627,286.37173024984077,285.7222182387486,285.02529479702935,285.194613896776,284.6477188533172,285.12556901481,285.4419561866671,285.53141553420573,284.78208969766274,285.2567938086577,285.16151888715103,284.88746531913057,285.61947294231504,285.9133567549288,286.3936119112186,286.8912956682034,286.7701484998688,285.79010071605444,286.0955518358387,285.93437029700726,286.2135968566872,286.7003199486062,286.285188770853,285.6047174958512,284.7294264715165,284.49993563909084,283.69335015909746,282.9474940020591,283.1129902000539,282.2051777378656,283.1538940654136,282.64795503858477,283.20551387779415,282.7161504612304,283.1001059622504,282.5874261748977,283.47969811270013,283.6165945096873,282.70670391852036,282.08852246170864,283.00606807041913,282.6354688317515,281.8603528384119,281.6951064057648,281.9310510819778,281.94745659828186,281.17053710622713,281.0689927600324,281.6397103997879,282.3017725474201,282.9731416385621,283.24563841242343,283.3245390476659,282.4467283994891,282.3316810782999,282.94457255583256,282.9990181205794,282.96173882111907,282.3577948301099,281.3685064925812,282.3113025687635,282.76837356574833,283.02405607979745,282.16153775993735,281.60767712956294,280.7285717581399,280.8679599845782,280.9670288297348,280.3913054415025,280.13004825497046,279.98806061642244,279.35237016994506,280.05308566242456,280.7568501974456,281.34030237141997,280.5549797019921,279.9371502758004,278.9873269814998,279.5677887778729,280.4135349858552,281.2366656810045,281.2789789326489,281.2312082233839,280.4821335989982,281.4306427887641,281.38691943883896,281.9008803386241,281.86260665766895,282.77114737639204,282.6127741858363,283.04563841363415,282.79103400884196,283.75845992425457,284.15860395738855,284.8142417091876,284.7392441746779,285.5534978220239,286.27135824458674,285.6796146170236,284.7280643582344,285.55245850840583,286.0615078145638,286.25822081416845,287.1752631701529,287.047008942347,286.3992061470635,286.72737833997235,286.2398632899858,286.6951747541316,286.2644730322063,286.26276253163815,285.4489837423898,284.57041809521616,284.85710146510974,285.0204378319904,285.85412545641884,285.22049868060276,286.1363852270879,286.84957529464737,287.8398685166612,287.9425728954375,288.84951005410403,288.8868441861123,288.1749446731992,287.7743661184795,288.74086029222235,288.0347480936907,287.42019892670214,286.48938270192593,287.2360255634412,287.035265089944,287.09505964582786,287.0588185619563,286.46554219396785,287.43929143762216,288.04303551185876,287.63831609208137,288.3051378787495,288.0581229496747,288.3279374302365,287.9198016501032,287.4128688359633,286.44057697895914,287.3270085584372,288.1002194597386,288.4190612323582,289.00593029148877,289.61578004434705,289.24037625733763,290.0721429088153,289.69460350926965,288.9347160188481,289.1154167051427,288.2445398182608,287.47002359945327,287.9318295959383,287.94484971417114,288.15780854970217,288.0311435908079,287.9894860382192,287.2315461556427,286.45188237261027,286.7954734135419,285.7995766000822,285.58670124132186,285.8098994437605,286.52352666296065,286.14496501814574,286.74087085947394,287.3520713914186,287.24623070145026,286.600742041599,286.96397348633036,286.9037623493932,286.8538878597319,287.76268208026886,288.31612734962255,288.4832364777103,288.5449999962002,289.0902616591193,289.2383912228979,288.62633599806577,288.50270037679,287.9501375630498,287.72526150615886,286.90889035351574,287.217463596724,287.7692200895399,288.60601787175983,287.8777038920671,287.6200547274202,287.7582567962818,287.99750594142824,288.0600369232707,288.24570128833875,287.7314437646419,286.74598615942523,286.12179383588955,286.98852896038443,286.6062089619227,287.3989295102656,288.1403854545206,287.41363462479785,287.36789291072637,287.9868698907085,287.0348130110651,286.09295162186027,285.772944717668,284.7886186153628,285.6106293560006,285.1905985842459,284.69607673725113,285.142590041738,284.40622667083517,283.4586373139173,283.4511205526069,284.4182767220773,283.61527601629496,282.65694388048723,282.14523234404624,282.22410761984065,282.0088604344055,281.8697385340929,282.70238305348903,283.22652521310374,282.4246289245784,283.1224110801704,282.45185885578394,282.1575331008062,281.6509108650498,281.5600212048739,281.79803515039384,282.39810025924817,283.3403201587498,282.9562634108588,283.69586233980954,284.41451682010666,283.4889159537852,283.61074560694396,282.971397430636,283.38676200062037,283.30080158403143,284.07830017246306,283.86025124555454,283.35383892431855,282.92574113514274,283.56366289174184,283.204708002042,283.96861638408154,283.8944108756259,283.55380165949464,284.31642389064655,284.12297026766464,284.1949993916787,284.3667051428929,285.0688979756087,285.9591280873865,285.2435713945888,285.58847657823935,285.8823671499267,286.45519572589546,286.88443301524967,286.9145146943629,287.15541063202545,286.9267654521391,287.65027453843504,287.24912574188784,286.8759609167464,287.45082551799715,286.86673831474036,287.73796127550304,288.15742660779506,288.816735196393,289.1912326933816,288.4945924989879,289.41956600220874,289.6104678674601,288.61425549257547,288.00654207821935,288.59783606091514,289.57265454763547,289.30747707467526,288.6655860017054,288.74567423341796,289.71642991900444,288.79346865974367,288.8285454097204,288.39029425755143,288.5023730243556,289.12557368027046,289.8615051447414,289.8804108425975,290.451014992781,290.10079628089443,290.8339797621593,291.25040954351425,291.3696731990203,290.40936970245093,289.6452360977419,289.70966191682965,290.41608025692403,291.38177554216236,291.7937258556485,291.0087598711252,290.01027248613536,289.6273650578223,288.90769118536264,288.6661344454624,289.44636352173984,289.69087356096134,290.04504716489464,289.84488544613123,289.0465089250356,289.5278070271015,290.2735365955159,290.3042179038748,290.21201581694186,290.74541909154505,290.5008633751422,291.11501287994906,291.3532759542577,292.1242680065334,292.2524994444102,292.464971347712,293.33771662181243,293.185859312769,293.02608509687707,293.45743475761265,293.61568394023925,293.22105786856264,293.3227000106126,294.04848857875913,294.55393461789936,294.6748204510659,293.9278589244932,294.61651393724605,294.9621331784874,294.132666666992,294.61232967022806,295.1178394295275,295.9200863405131,295.7122274930589,295.82029951689765,296.33574029430747,296.7541481102817,296.5544260670431,297.5217084395699,298.40749468654394,298.7107855458744,298.14526077127084,297.7751144981012,298.0259913210757,298.8427633694373,298.9269391801208,299.61325483676046,300.361443948932,301.33980982610956,301.700794220902,301.5215963162482,302.0054062441923,302.29183364706114,302.7785705779679,301.89746834663674,302.41875404538587,301.7933346023783,302.74597954470664,303.14902143506333,302.92392523027956,303.6306738331914,303.54187316587195,304.0642076539807,304.4219477958977,304.6791741582565,304.35468172328547,304.3735361257568,303.8738043438643,304.4711006428115,305.1964071379043,305.1643182816915,305.1847407273017,304.25972066493705,304.859394507017,304.3629496898502,303.4459321680479,303.25025123311207,304.1997926081531,303.6871622572653,304.0400018882938,303.4760219939053,303.37217457965016,303.1045513264835,302.2047720323317,302.17871721321717,302.6578139238991,303.359722874593,303.35892046196386,304.1669473000802,303.19311280269176,303.86895640427247,304.285062326584,304.77211230574176,305.4861011188477,306.10647693648934,306.68754011252895,306.09705032687634,305.18134693289176,306.0076238908805,306.48516378877684,306.2686914494261,306.82614294765517,306.67104403907433,306.81963491998613,307.5793263455853,307.2664831164293,307.4709770414047,308.14703425904736,307.8135713939555,307.99206903623417,308.4177223043516,308.48813076503575,309.2173228766769,309.75890445616096,308.89031598716974,309.885542828124,309.79166330583394,308.80096984049305,308.1111610685475,307.6547501916066,306.8315436858684,306.56073625246063,307.0987514364533,306.5917975977063,307.201651009731,306.6193577409722,306.50398118281737,307.1310471496545,307.81090397248045,307.1595597723499,306.7187217497267,306.7398603693582,305.9194902870804,306.1032710187137,306.89255905058235,306.91703064832836,305.93591967877,305.56728684622794,306.4655807367526,307.3005117815919,306.73543442366645,307.0973749929108,306.530858093407,307.2258168919943,307.9698694739491,308.10344592574984,307.1092542936094,307.5374113358557,307.34266743063927,307.71762913279235,307.5740375886671,308.05988586414605,307.0788716059178,307.04285927163437,307.3831351995468,307.2894189953804,307.06239656265825,307.8713007741608,308.13511177757755,307.89410821255296,307.12588861305267,307.70689992420375,307.1974226855673,306.6781856319867,306.3006609780714,305.46435901429504,304.48020220035687,304.35133139882237,304.76632395759225,304.7084786556661,303.74952444108203,303.41459610359743,303.48763348860666,303.5274636987597,304.2641661451198,303.910964445211,303.0975307673216,302.1058680312708,301.18115698499605,300.65891764033586,300.6988120074384,299.7003110162914,299.3091580187902,299.5013904599473,300.48048239946365,300.667401548475,299.87211167626083,300.18293614080176,299.4365686275996,299.84843111410737,300.58463415363804,300.99723097635433,301.26690354803577,301.60537212109193,302.01020055729896,301.8546688314527,301.0637869690545,300.3403222314082,301.00929725309834,300.0116767878644,300.4705405905843,301.3838278995827,300.48892230400816,300.92887871712446,301.738404980395,301.8131666840054,302.2101873769425,301.2163432603702,300.2708115139976,300.7607593610883,299.8477373784408,299.63708778703585,300.00481272814795,300.15169463679194,299.56413755426183,300.27683138661087,300.6342624598183,300.572840123903,299.75650177756324,299.7638807944022,298.97985454136506,298.1952187451534,297.6432744944468,297.8926281738095,297.6718055619858,297.2400426133536,297.6789972409606,298.54139641625807,298.3432568400167,298.6336206239648,298.9950998965651,298.612485810183,299.117641587276,299.2998424503021,300.2345992573537,299.45198499178514,298.49117897171527,299.02886383701116,298.561353973113,298.6624329020269,299.27432687347755,298.4190084654838,297.52289981022477,297.9752600765787,297.4346270915121,298.21703848522156,297.9332706676796,297.2831923412159,296.3356660245918,296.29257127130404,295.8392983204685,295.1570958411321,294.33158178674057,294.80790304159746,294.2142480760813,293.7798481583595,293.74316896498203,293.96292820200324,293.85988902207464,294.5803416436538,294.95243147434667,295.32095012487844,295.611095267348,296.1122489729896,296.8772301855497,297.8484883583151,297.1313853287138,296.2822762061842,296.3873413274996,297.338800619822,296.6937582558021,296.53454813594,297.03541349759325,296.53051024349406,297.15686115110293,296.6176372352056,296.0663968529552,296.05076824035496,295.49105988116935,294.80054018832743,294.2839215686545,294.9646448432468,295.375224549789,294.57210046751425,293.87531639728695,293.88702976703644,293.8556643323973,293.4276048983447,292.853664428927,292.4222350413911,292.1441303854808,291.9632280166261,292.6052645831369,293.4457446555607,293.73476260108873,293.8034183708951,293.8041280955076,293.56869571935385,293.24741390161216,293.6567565626465,294.27867382997647,294.2654548822902,294.2677300865762,293.28650814434513,292.59645301569253,292.91249856725335,292.43378441687673,292.6572244213894,292.64637507731095,292.5429917150177,293.0431653317064,293.5573709909804,293.0144554018043,292.7630370547995,292.1424823687412,291.3639242462814,290.8771180124022,290.8479367014952,291.2920208303258,292.04797459347174,292.7169389296323,293.32642070017755,294.19425955740735,293.6510588317178,294.189161489252,294.94470144668594,295.5066285962239,296.13038339978084,296.76408282248303,297.69794673426077,297.61892206035554,296.8606326621957,297.2401275401935,297.0804353025742,297.57045773230493,297.9802805618383,297.27147052111104,296.47776453662664,296.9410420693457,297.18936187494546,297.4836068288423,298.0687227617018,298.3256974215619,298.1190637308173,298.47959374124184,298.4944099104032,298.7141342172399,299.1161876549013,299.78468260355294,300.3711540494114,299.8137215343304,300.0015798630193,299.63180965324864,299.1084797261283,300.1025989158079,299.3816363820806,298.55930107459426,299.4757937453687,300.2849484202452,300.93009582487866,301.8689610250294,301.7926716506481,302.0817501745187,302.0691454540938,301.8453969429247,301.66005556937307,301.1420772797428,301.06060836743563,300.5394759546034,299.7562145520933,298.8444577693008,297.9912366149947,298.3726432742551,298.857167954091,298.89210357284173,298.48645602399483,297.75318316649646,297.2014539227821,296.3547809063457,296.2977264053188,297.2073271465488,297.83872380526736,297.07592945266515,296.2646850091405,295.3965853205882,295.13548904657364,295.7777009336278,296.5537952147424,295.79522182326764,295.0972412037663,294.4317776178941,293.64135455712676,293.7455687462352,293.2387314680964,293.1310318126343,293.3696584813297,293.18246116349474,292.76193822408095,293.1235425272025,293.7936241659336,293.46936052525416,293.1201233197935,293.11772788176313,293.52690021134913,294.4602672443725,294.5567185981199,293.895497280173,293.4155978974886,294.2847010283731,294.33967601927,293.5386693882756,293.77860703645274,293.97094018384814,294.1938404231332,294.3416926898062,293.66599911265075,293.2861794671044,294.12768370239064,294.1422484861687,293.8187363180332,293.054681266658,292.33324741665274,293.19564055884257,293.906049172394,294.33845965657383,294.2370752734132,293.9475730317645,293.133145453874,293.50835314486176,293.327177724801,294.2251297077164,294.0896504400298,294.8777291243896,295.68239212594926,296.43976032175124,296.87088162172586,297.4755295137875,296.752033283934,297.0921860933304,296.4032542430796,296.06651423312724,295.9859539172612,295.85008389363065,295.04717800579965,295.55499633355066,294.84592994954437,293.8823588807136,293.99675831524655,293.7323966389522,293.61967097083107,293.9429546496831,294.1624957444146,293.1996026379056,293.4251019177027,292.50924520846456,293.2089635208249,292.93566652340814,293.81072780815884,293.02811356587335,293.5018789204769,293.0830723172985,292.8591042798944,293.34391446132213,293.2593754255213,292.8830378865823,292.33380524627864,293.10313277971,292.32514490233734,293.04518200457096,293.5201710150577,293.0280692372471,293.8843275792897,293.20532033778727,292.64496489288285,293.2113152514212,292.65419307816774,293.61569052701816,294.61054910253733,295.29581316001713,295.90998043632135,295.5474510928616,295.50080293416977,296.4062214246951,297.3092924179509,298.04807775933295,298.0327290613204,297.767371814698,297.6670854794793,297.52082847291604,298.3806735165417,299.3398770415224,299.16882411390543,298.882061958313,298.75041151279584,297.90143546741456,297.40190605586395,297.6231251452118,297.73627255670726,298.2795009454712,298.15558181190863,298.862858641427,299.40566864656284,299.0926625998691,299.8021843540482,299.64359048753977,300.1302151894197,299.58940793108195,299.6030525988899,299.58984382264316,300.29190662968904,299.62563635921106,299.1350509468466,298.85460538836196,298.6134835910052,299.32257993426174,299.6108930455521,300.40348626533523,301.1020144172944,300.3703491324559,299.9275306938216,299.9485251251608,300.008543104399,299.98589582694694,299.22028622357175,298.85122364759445,299.5852450062521,299.2906771861017,298.9476535129361,298.3871459583752,298.6311143953353,299.4837375204079,299.0487166773528,298.36686537694186,298.259583203122,299.0488173700869,298.4833034751937,299.0124309146777,298.7106382958591,299.4496067883447,300.206821070984,300.60105083929375,299.9415148147382,299.0850288355723,300.06965920934454,299.94639492593706,299.11131714610383,298.5325982440263,297.9925159448758,297.59995380975306,296.8714039810002,296.2678597676568,296.69062536396086,296.72261330578476,297.08814628142864,297.3550772308372,296.65316924173385,297.54813519353047,297.7131523392163,297.2651768317446,297.82263143593445,298.6797909610905,298.29331686347723,298.14978101244196,297.98627414368093,298.4056635107845,299.2839999473654,298.9414619752206,298.2070922940038,298.01396109955385,298.47098233830184,297.60821292642504,298.3775221379474,297.70337664615363,297.6960346880369,296.77674213284627,297.7680459069088,298.13286698563024,297.42356322333217,297.2686342424713,296.35900237131864,296.72596682142466,295.9830618277192,296.4770049918443,295.94860957283527,294.99415025673807,295.70689931930974,295.57864924287423,294.7357125543058,295.69251632736996,295.64528695261106,296.32915067020804,295.90213104663417,296.2618993795477,295.855208709836,295.27150178700686,295.8945427676663,295.4630785090849,295.5470450804569,294.5695868958719,293.7103814142756,294.5392328253947,294.50625441549346,293.63245032774284,294.267094058916,294.50093972403556,293.6864824583754,293.10921608889475,294.03671360434964,293.8061976809986,294.2704808781855,294.37259266898036,294.7083499818109,294.11980628129095,294.9763514799997,295.53292785352096,295.1404494312592,295.3863028981723,294.40688688308,294.5869258749299,294.6711782757193,295.635494527407,295.1243942906149,294.6905803894624,294.12340544816107,294.4612880963832,294.56809181161225,294.6909660352394,293.6975333634764,293.0166301340796,293.1800689767115,293.6435848637484,292.89902275428176,292.80075870407745,292.33379546459764,292.87519342219457,293.5846369029023,292.9951058542356,293.85555868735537,294.03855733014643,293.9422182724811,294.8605746733956,294.256540494971,294.8442453760654,294.70806365134194,294.1089172917418,294.43746941536665,294.5595707818866,294.951050367672,294.5179875358008,295.4787820065394,296.40772694163024,296.4433495742269,296.9601778960787,297.3777997530997,297.6765813436359,296.9188027107157,296.4343108595349,296.2933733644895,296.35895308991894,296.46688185073435,296.69010662613437,297.4859093609266,297.43767180340365,298.1843371838331,298.71687306510285,298.2376314778812,298.99247094616294,298.22356636589393,297.45288612833247,297.63969892356545,296.705628936179,297.14123254455626,296.5269867214374,295.69188277842477,295.2660674690269,294.4640688691288,294.0009269420989,293.50343479728326,293.30366749688983,293.40407610684633,292.9082279014401,292.7624539937824,291.9752233810723,292.0936853340827,292.3044629432261,292.2458323095925,292.33577747363597,291.912640389055,292.60964434221387,292.3352842014283,292.0618298272602,292.8202490070835,293.0664239814505,293.2541794106364,293.6272670896724,292.7435762695968,292.8641001819633,292.0783568415791,291.169941929169,290.30290315300226,289.72502081422135,290.3148075127974,289.3882975378074,288.7159367967397,288.48755844449624,288.8053038902581,289.02510934276506,289.73559845937416,289.09271365916356,288.8580555766821,289.7149107926525,290.1322053158656,291.08202560199425,291.16256433399394,291.20903064729646,292.11280441842973,292.9740200624801,292.3154812133871,293.03764593973756,292.95002262014896,292.2335117440671,291.8550717039034,290.858994808048,291.26465593650937,290.6539040976204,290.0338884294033,289.1831153742969,289.15693722711876,289.4984739399515,289.3482090551406,289.82709222240373,290.4231276419014,289.7945334278047,290.7244584248401,291.5844552088529,290.8428094633855,291.4283898798749,291.45832318114117,292.32747527910396,291.4073619819246,291.69491376681253,292.5091351624578,291.6540737012401,292.3095117020421,292.3339189137332,292.1342125860974,291.9607953536324,291.8475595791824,291.78549632802606,291.37896098103374,292.19739520875737,292.98734837351367,292.4374796538614,292.72978023812175,292.7848412473686,293.5873384959996,293.373091975227,293.3217994798906,292.7132554198615,291.9915303871967,290.99158996436745,290.0273389182985,289.1145719005726,288.4053448680788,287.9097792254761,288.1212359787896,287.80833275197074,287.8715522219427,287.11900392500684,288.0538403606042,287.8475911580026,287.1408078391105,287.80612058145925,288.34518036432564,287.9392512100749,287.52729201177135,286.98513766145334,286.74323248071596,286.2627045926638,285.45556930219755,286.2833072138019,287.12696579284966,286.2603827090934,286.65704281721264,287.4101227084175,288.06131143216044,287.80433468706906,287.67029249761254,287.32684488454834,287.98670146474615,288.79655500361696,289.2865742938593,288.8150699501857,289.7817205279134,290.4452471318655,289.8948509488255,289.91098277131096,289.1100648175925,288.72288794768974,288.3832771582529,289.18807975854725,288.9366469825618,289.8505536862649,289.19213122082874,289.22694419138134,289.04874866921455,289.06145465234295,289.06177908880636,290.0186294130981,289.0437741843052,289.21476948307827,289.55166882136837,288.5674347290769,289.2189645166509,289.5553853963502,290.1803653566167,289.77359331585467,289.28438259428367,289.5672489493154,288.90997608425096,289.78456592187285,290.3535396833904,290.64332773257047,290.5132426023483,290.0111825824715,290.4104904416017,291.3184001413174,291.56285311002284,291.1656553968787,290.3589309146628,290.66982893133536,291.5147276632488,291.2389412787743,291.27891457173973,292.0814069285989,291.89071263046935,291.3246040288359,290.62111673597246,290.7465531514026,291.24997678771615,290.5012823645957,290.5201564691961,291.44520308822393,291.55369433481246,290.9466240792535,290.6371551146731,290.0357836582698,289.3267568149604,288.5002537705004,288.3593947784975,288.7649356657639,288.79774757567793,289.66176356282085,289.45693874917924,290.0781659479253,290.5390789313242,291.33747927378863,291.4861964127049,291.36622357042506,290.63078661775216,291.3489684914239,292.1165589420125,291.8226178083569,291.93181508686393,291.69509622314945,292.0791230746545,292.4871794153005,292.76834830548614,293.3445207490586,293.5216348087415,293.63888879166916,293.7530176723376,294.66265909094363,294.2243825639598,293.79326270055026,294.6850167773664,294.8614624897018,295.6814110474661,296.5395678295754,295.6228538621217,295.742921280209,296.24806212168187,295.31745988409966,295.3667174600996,295.09759535221383,295.4535567704588,295.2761261560954,295.1878459393047,295.5104903662577,295.607535159681,296.15906003909186,297.14715949911624,296.1734648793936,296.07529670279473,296.31017768662423,295.8774294629693,295.05810269666836,295.6017872001976,295.3104515778832,296.0165653252043,295.82617160724476,294.92241999227554,295.83014529012144,295.36759547237307,295.40565790515393,295.5611683516763,296.5204285159707,296.1255360804498,296.6417021667585,297.623555471655,298.5930814766325,299.52160653611645,298.80660814093426,298.22606125986204,299.1113049443811,299.87129958346486,299.83849866501987,300.7641987246461,301.3159216810018,301.6259396872483,302.2731690281071,301.6133896782994,301.53125261794776,300.8556554042734,301.2676193257794,300.3946199552156,299.9699339568615,300.6884040948935,299.77322307694703,299.92666888516396,300.4428452453576,300.7319612763822,300.1865953411907,300.32995581720024,299.53100408101454,299.8248925348744,299.88832272123545,300.76519456133246,299.9118494275026,300.69413835695013,299.9364441311918,299.0324384700507,299.9420292763971,299.73014913732186,299.9939725375734,300.50098369503394,300.09129818947986,299.7187224905938,299.35084408149123,299.9126268690452,299.6949009853415,299.6702079856768,299.70535419974476,299.4519255151972,300.43098282208666,301.1920642401092,301.6183634470217,301.01179471518844,301.6702221808955,301.8921909616329,302.06465209601447,301.096538355574,300.55283546168357,301.1110415211879,301.08841857593507,301.11699906690046,301.1976699796505,301.8090974641964,300.9669052888639,300.15459362603724,299.79234329005703,300.25654525402933,300.8232795908116,300.9224232188426,300.0624750717543,299.48572149826214,299.76327092852443,299.2119579035789,299.10325596295297,298.3005073303357,298.25916711986065,298.7990095722489,299.3817429263145,298.49665484949946,298.5685381554067,299.0386918634176,299.8464651876129,300.14809448691085,299.84285465301946,299.99075350677595,299.72146237501875,298.9553757365793,299.7032153713517,300.1339264353737,299.2761877961457,299.5927165718749,299.88343708915636,299.1441897973418,299.4242036230862,299.8159046447836,300.0670664724894,300.0206726854667,300.71919787395746,301.54589682631195,301.4686133223586,301.76184662338346,301.8635608893819,301.12149642640725,301.15239221649244,300.3366516456008,300.2946735173464,299.88766237720847,298.94341839896515,299.67536163702607,298.7518253410235,299.49295780574903,298.6952093821019,297.74767456995323,297.9629009682685,298.2598064080812,299.06294159870595,299.8990142652765,299.970933156088,300.66499984730035,301.11767160659656,301.0639445912093,300.22480553993955,300.35848137456924,301.07152716629207,301.19685835950077,300.3679992975667,301.0183287104592,301.9513842118904,302.05072158621624,301.5800189683214,301.4129403815605,301.8549284809269,301.96080960100517,301.78526199562475,302.7637096894905,303.22982931835577,304.00158834736794,304.19308380642906,303.6181714073755,302.7685146345757,302.74880347028375,302.9472360974178,303.1287051658146,304.069256701041,305.02025359962136,304.498890130315,305.2608073325828,304.7028542389162,305.4174746540375,305.0633557392284,305.8817025059834,304.98547187121585,305.67953776102513,306.01951163541526,305.8318333667703,305.938485534396,305.0102638937533,304.7092505232431,304.30965649243444,303.6998206656426,303.3734484356828,303.28194736037403,302.45815940061584,302.20976829435676,302.00396048557013,301.87229721201584,301.64488471858203,302.0659276586957,302.60238871816546,301.9216202721,301.41740269912407,301.9463551263325,301.4131242884323,300.8161446284503,300.5398045326583,300.7694356604479,299.8638521330431,300.5272799022496,300.02589718298987,300.1328350128606,300.47164850123227,300.15388496313244,299.32133335713297,298.4819894330576,299.0852820593864,298.40170381451026,297.9128866470419,296.93641733611,297.16010203398764,296.41016607778147,296.2109188805334,296.55567309074104,295.87464299891144,296.1210725028068,295.5094017176889,294.5326475277543,294.26422481425107,293.86566074797884,293.3073011916131,292.647006877698,292.5771005996503,293.22409933945164,293.38290901016444,293.0477329008281,293.35709841083735,293.34878762159497,293.4220221070573,294.3377627050504,294.1837259293534,293.68610864691436,293.3754971260205,293.799394977279,293.7988581433892,293.0729013052769,292.58883235184476,292.70995044801384,292.15756024233997,291.31389031605795,292.1910815727897,292.97363141179085,292.9226859812625,292.9700532951392,293.5796342520043,293.7240560585633,293.4645738862455,294.0360956978984,294.4885112149641,294.3935569478199,295.2027984596789,295.3311179014854,295.94771496905014,296.2952686715871,296.7145606074482,295.7532792952843,296.33881298918277,296.20179537590593,296.51693056337535,296.90890193963423,297.08992996905,297.72135774604976,298.53006586944684,299.380075592082,299.645393056795,300.473727284465,300.48562260810286,300.2392690964043,300.4854019852355,299.7684875889681,299.5823657764122,299.30858264118433,299.1570719354786,298.83485358860344,299.49474387522787,299.036459680181,298.4253492997959,297.9826143584214,298.1309263217263,298.88252669898793,299.3921244321391,300.04262413689867,299.7078842399642,299.2022499581799,299.7961594690569,299.7383547849022,300.73087960947305,300.8655978818424,300.598944385536,299.9666290343739,300.5921967276372,301.49341120105237,301.49423831840977,301.85839676856995,301.3756083776243,301.8168364795856,302.2201720220037,302.1947755329311,302.2251953375526,301.809417062439,301.01880417764187,300.6959009980783,300.78619324276224,299.9517212631181,300.2565291370265,299.70373333385214,299.2871343968436,299.0313642020337,299.8838058337569,299.29360150685534,299.0549529339187,298.71561320964247,299.6936859698035,299.10477016773075,299.1682036994025,299.18761389888823,299.4038828681223,298.46316354954615,298.42368727363646,297.66579583100975,297.1102217528969,297.4536834182218,298.21658937959,297.6088840221055,297.1103252116591,296.26998685020953,296.306837876793,295.4153120103292,294.75941245118156,295.01887363707647,295.33945074817166,295.07093371869996,295.5611135936342,295.57002402096987,295.3800286902115,295.0211891196668,295.38702554488555,296.0471947542392,295.63404204975814,295.55789006268606,296.3111036415212,297.13162197638303,296.462370400317,297.1408123434521,296.4417052664794,295.9600154389627,296.91350744711235,296.48732947092503,297.44036374567077,297.8725353507325,298.48523623822257,297.54897959763184,297.2299054148607,297.99150784453377,297.2166391587816,296.997472865507,297.8784574228339,298.3952147946693,298.9345904928632,299.0123800174333,299.67842131713405,300.2125487383455,300.09996144333854,299.23918074555695,299.872692049481,300.6188123077154,301.5912660770118,301.79484634893015,301.26577679347247,301.98944608448073,301.5042635528371,301.18385748611763,301.2601588284597,301.38153517385945,300.6595532167703,301.1243315008469,301.4897346063517,301.0346568664536,300.49316543340683,299.8803594117053,299.09248207416385,299.58906567981467,298.66602118033916,299.30611124355346,298.8985521928407,299.4741506227292,299.177762592677,299.7530228504911,300.37377981934696,301.1474370681681,301.0815175920725,301.5195857421495,300.5219424609095,301.0856315935962,301.62172718020156,302.24419343145564,301.5315691162832,301.6530713150278,302.3663102257997,302.24590381933376,302.0599191649817,301.6606821450405,300.9823673926294,300.00701751047745,300.1271681981161,299.53518563881516,300.4482790431939,301.3159119519405,300.37189133744687,301.27909377543256,301.91342760110274,301.34155707852915,301.37138211680576,301.7869666321203,302.2262233258225,303.1304525095038,303.1410005618818,302.727246130351,302.76668103411794,302.58797577256337,301.86281432863325,302.31008923752233,303.20690624555573,304.1949098724872,305.01038560597226,305.66370562138036,305.31290354253724,304.689877289813,304.87277696980163,305.45508067309856,305.05087945377454,305.0886826342903,304.7741259499453,304.5428713383153,305.07802636222914,304.58123141760007,303.91930483002216,303.02294359495863,303.23440102953464,303.9891518726945,303.17191913863644,303.7883458370343,304.7002189652994,303.8649696968496,303.5809321217239,302.6004601791501,303.2791628227569,303.2562216091901,303.1900532413274,303.3284043376334,302.55116005288437,303.5280285072513,304.2236569831148,303.3372286511585,303.32526882505044,303.8309640958905,303.6178788379766,302.7987780524418,303.37521553086117,302.4040755475871,302.11443735612556,301.17349112126976,300.5293295616284,300.94483048236,301.8865131698549,301.4720270722173,301.2764517562464,300.494088771753,299.68051640177146,299.2802566359751,298.3172516194172,298.64802870806307,299.22692764690146,298.70782456733286,298.767950004898,298.0446815956384,297.21259765606374,297.4944560835138,296.95993768563494,296.56833491055295,297.2395703624934,297.75830175727606,297.22653048997745,297.3385146902874,296.348492807243,296.1672320314683,296.45550419809297,297.12692651711404,297.2297625700012,297.01122237881646,297.56556797912344,297.7485471810214,298.4522538455203,299.118116713129,299.6828804942779,300.43945590173826,299.675239530392,300.097881922964,300.6530684637837,300.28570016799495,299.9860608614981,299.9896778878756,299.13329243613407,300.1224000202492,300.3624185011722,301.09735369170085,300.54948781849816,301.0645461175591,301.73852060874924,301.7059018095024,301.04127507051453,301.2837815294042,300.32010721275583,300.4213100154884,301.0143092679791,300.87167759845033,301.7125339829363,302.40688738878816,302.9258012599312,302.34714797046036,302.47007838170975,302.1301769958809,302.29089001286775,301.5486060064286,300.564911626745,299.6305436990224,298.65543120214716,298.4313719510101,298.63221917906776,297.8813223815523,298.03805018402636,298.6113072549924,297.9596346663311,298.35242149280384,298.06101190205663,297.97983006294817,296.98792252130806,297.08716749353334,297.2327266437933,298.0443397429772,297.3587449649349,296.88382251095027,296.32565952977166,296.60684188408777,296.6219499921426,297.4564681984484,296.8616100884974,297.548782103695,297.96059314953163,298.3872075714171,297.4216042715125,296.7786806062795,296.7262877882458,295.7482597865164,295.5467403149232,294.6196457496844,295.25293519627303,295.96200909418985,296.06859030853957,296.42635455168784,295.9903819281608,296.9875427717343,297.7310158032924,296.7787934006192,297.2163256397471,297.9573844335973,297.0733925360255,297.67633396433666,298.2532875081524,298.4134478587657,297.86008045403287,298.7334799626842,297.8245155434124,297.0579978916794,296.3429047735408,296.20098166354,295.9636207460426,295.66263046162203,294.7245261413045,295.47412721673027,295.78867777250707,295.9744027033448,296.4414128200151,296.2791316313669,295.8516801628284,295.50148144643754,294.79609944904223,293.90358339902014,294.342459960375,293.4656037236564,292.59790571266785,293.26800391310826,292.2791323713027,291.70823515206575,292.64439105335623,292.5719026159495,293.0288197379559,292.79247704846784,293.0019629560411,293.3949525789358,294.3217929089442,294.78408644208685,294.77221089648083,295.41174207348377,295.36828264407814,294.92091974662617,295.25316501641646,295.2346271490678,294.29736327007413,293.5714749637991,292.7886624583043,292.98802487691864,293.06500537507236,293.1419059401378,293.8424487421289,293.50399922719225,293.31515292217955,293.4514465974644,292.936089258641,292.57766407867894,292.9385468782857,293.72194099705666,294.40300465235487,295.3050188506022,295.4850784991868,295.6457092887722,295.65659327898175,294.78513959236443,294.50606500403956,294.8539919476025,295.77076077926904,296.02627963898703,296.4710268438794,295.58109154738486,295.4720575665124,295.3975865175016,295.82080203294754,296.56875296123326,295.6835849462077,295.19463138328865,295.38508255174384,294.4594920426607,295.05903074797243,295.2727792719379,295.09198161028326,294.5816164086573,294.43863947177306,293.67858493467793,293.3048427058384,293.85367842623964,294.43711986299604,295.27452114317566,295.31980374176055,295.4661780395545,294.676390432287,295.59634599648416,295.5726937693544,295.79468201333657,296.4214350618422,297.3058722410351,298.12932613072917,297.3995884107426,297.945844032336,297.5817593210377,296.84475956950337,296.5128705371171,297.2866316353902,298.0671456325799,298.2966141314246,297.50310998409986,297.15521605918184,296.6687679463066,295.8508677678183,296.6351914391853,295.67660474637523,296.3541752654128,296.8447553534061,297.574336245656,296.9543513744138,297.7899703658186,297.040640251711,297.85112144239247,298.6656300309114,298.3631461490877,297.4943155897781,297.08657891443,296.7146088629961,295.7768922764808,295.6195550384,295.92108980566263,296.02556187519804,295.45990355918184,295.73405991727486,296.6617586556822,295.84255636436865,296.3459574216977,295.6446336018853,295.5425044959411,295.741599497851,295.3776622195728,294.40232872078195,293.5448391251266,293.6517154490575,293.640075664036,294.18378524202853,293.7655136049725,293.1267140568234,293.43801894644275,293.1901528155431,292.2823769338429,291.31962609430775,291.0943652964197,290.5656188027933,289.8460545563139,289.50156335160136,288.69244152354077,288.4984997767024,288.5531636653468,288.572360844817,287.7973530194722,287.13681561499834,287.13568672304973,288.0692297150381,287.29768430721015,286.76863843761384,287.46991265239194,286.5089115127921,285.5881954417564,286.33610578859225,286.22452934877947,285.37961871922016,286.2594853383489,286.23654987616464,285.70593347307295,285.3011223128997,285.7376458719373,285.94937414629385,285.7015406736173,285.1603927393444,284.6758605632931,284.94780942285433,285.8369351224974,285.81342761358246,285.28671394241974,284.81385872140527,285.2051277034916,286.17194939078763,286.7149579417892,287.0680571072735,287.2788599212654,287.0565918656066,287.044126118999,286.88448367919773,286.40879239235073,285.48250219691545,285.10590650653467,284.3254140750505,284.39416151028126,283.61261886917055,282.88760562008247,283.5941240196116,283.0942401215434,283.5565173206851,282.6876842826605,283.3784014596604,283.76360214175656,283.51157926255837,282.5744704310782,282.59301620768383,282.5132068935782,282.0445360499434,282.6461194078438,281.764098983258,281.1120191528462,281.2065607639961,280.7743188859895,281.08947600238025,280.7466334127821,281.25667950697243,281.5979043673724,280.75187712349,281.64377402188256,281.4426515540108,281.079779908061,280.34075876232237,279.4939053687267,279.3142769872211,278.4787235078402,278.1074011735618,278.5051216590218,277.790597719606,277.6631728806533,278.616297503002,278.76250522676855,278.56418412784114,279.3406945867464,278.91482230834663,279.05063963029534,278.6120472974144,278.3411222011782,279.28247039951384,278.66431040363386,277.9948631259613,277.0879227248952,277.2668483830057,276.45384283177555,276.80821300670505,275.8275780752301,275.16597625939175,275.26191725581884,275.7689491007477,274.79624173929915,274.00946209346876,274.0550849721767,274.35237771458924,274.8022644808516,274.77618470648304,275.3986254725605,275.1713008619845,275.76148904534057,275.22764171566814,274.9767590723932,274.9409978855401,275.160323292017,275.91777259483933,275.25840329006314,275.69872944569215,276.61770239891484,275.76787155494094,275.01591118145734,275.78839996177703,275.77500660764053,276.2505992949009,275.3126669446938,275.2985999379307,276.1449497360736,275.9419521302916,275.79179773805663,276.51052775001153,276.27584431832656,275.4388906895183,275.61129336990416,274.9318802212365,274.52175632538274,275.4189357999712,275.94112363178283,275.5824290784076,274.94389769341797,275.68132984032854,275.24094594595954,275.7663777973503,275.5477023171261,275.8935100277886,275.41937059909105,276.28453218052164,275.9390832814388,274.9778846586123,275.22710593091324,276.054312590044,275.2057686438784,275.21188388066366,274.79805217310786,275.665550458245,275.52037147339433,275.0342974020168,274.2072590510361,274.0435679149814,273.7301586563699,272.9530388270505,272.00385342678055,272.85958492802456,272.95213065482676,273.8634347743355,274.8614454306662,273.9985113320872,274.5552410837263,275.1622434821911,274.17411472834647,273.7542569967918,273.92722843773663,274.55748993717134,274.5476152249612,274.7250545313582,274.9716744539328,274.8577879052609,275.5520593407564,276.3375546997413,275.66731886332855,276.07189022004604,276.67393726762384,277.67351931752637,277.7942871665582,277.70719448197633,278.15169994253665,277.1520254071802,276.65775515371934,277.03278869204223,277.17930055828765,277.9824423943646,277.2510568150319,276.6705623692833,275.8122687889263,276.04637242946774,275.442459222395,274.8184484913945,274.8261918001808,275.3066771454178,275.3568794396706,275.5090042515658,274.6370444493368,275.1422065421939,275.44575201533735,275.29387281415984,275.62406307738274,276.1022820570506,276.2230422552675,276.28041729843244,277.1778024802916,277.22002435894683,277.923863213975,277.62398989638314,276.8223632327281,277.8202851614915,278.0266316542402,278.9713885872625,279.1394739183597,279.24283290235326,279.64620319986716,279.89248229702935,280.74531149165705,280.83122564386576,281.33070604037493,281.9106479175389,281.71668268414214,282.2905000387691,283.0073546632193,283.4819948999211,283.2708299458027,283.5337125631049,283.6608614670113,284.6232309336774,284.5007841917686,284.025098901242,284.14473997149616,284.6649333015084,283.74419813323766,284.5150302951224,284.0557530699298,284.68680930230767,284.8836274961941,285.5854518064298,285.70255203777924,285.51536109205335,284.7582837427035,285.1946907308884,284.48239568201825,284.6076313443482,284.53867495572194,284.75308715272695,283.97913096565753,284.4787585386075,283.74994982918724,283.9050820353441,283.2075001881458,283.2017385484651,283.600649042055,283.9771751789376,283.79646930797026,284.7688453970477,284.96039422182366,285.4544244897552,284.67808234877884,283.85639856848866,283.7867254265584,284.24360980140045,284.0584984035231,283.7750063794665,283.0046723517589,283.0287521285936,283.9008182743564,284.60502167372033,284.5725150471553,284.98690625978634,285.3725059577264,286.1331128044985,287.1056812489405,287.36441357573494,288.27022588904947,287.3790854429826,287.2234190162271,286.3699316843413,286.7776355338283,286.6175683522597,287.04151241481304,287.43006956670433,286.55049307690933,287.5186610915698,286.8451512828469,286.28777786018327,285.51324191037565,285.1825649738312,284.44191204803064,284.7439190829173,285.0292296214029,285.4564665807411,285.94185291044414,286.79637755965814,287.61291982000694,287.41673262929544,287.60161044821143,288.2579155457206,287.37100101960823,287.4042311538942,288.09281788161024,288.5349324988201,288.8389200582169,288.17665427038446,288.812387435697,288.60610879585147,287.6468479060568,287.21772406902164,287.0974570196122,286.13687083590776,285.87021366506815,286.1639980841428,286.29790236242115,285.31383486976847,284.9859271775931,284.6010247091763,284.56462760688737,284.4349549841136,284.1202814639546,283.8237788332626,283.32079260982573,283.4703998933546,284.238586156629,285.1157740573399,284.93994291033596,284.35661762580276,284.2673954400234,283.62796363513917,283.15458162501454,283.2663865489885,283.994024600368,283.9710436798632,284.1855040118098,283.926709624473,283.4063742598519,284.0401645875536,283.65536959283054,282.7001205603592,283.239702640567,282.52959058852866,283.06159070692956,283.3552984446287,282.4745005480945,281.88333434052765,280.8836480639875,281.18137014331296,281.85436294274405,282.4875628352165,281.4965625004843,282.30448438227177,283.1418732702732,283.7409124998376,284.6657448122278,284.46582220261917,284.5528474752791,285.10874333325773,284.9447882445529,284.7689970070496,285.7170461034402,285.20760472491384,284.45159905962646,284.6329134418629,284.52982432348654,283.7095766388811,283.92383979354054,283.9166591344401,283.5909237796441,284.44421971729025,285.08954165456817,284.11031353566796,284.32328802673146,283.5761188259348,283.8529772195034,283.75784851936623,283.2686085375026,282.9241690612398,282.785000291653,283.2207273496315,282.568149024155,281.62581683928147,281.636598625686,282.1877694102004,282.2501453650184,283.109813594725,283.5120334196836,282.6744897738099,282.9183437023312,283.827796085272,283.7474529379979,283.47654938232154,282.693601929117,283.4939973237924,283.04628065414727,282.9176720366813,283.1084975008853,282.8859348297119,283.76535254111513,283.6861049137078,282.83564167190343,283.1717201746069,283.68947493331507,282.8570384164341,282.4344767425209,281.5036814901978,280.7806263715029,280.01753364969045,280.24959936505184,279.3968966593966,278.78653583023697,277.9647364583798,277.4668099358678,278.3979534897953,277.6106475475244,277.4533280553296,276.49884140258655,276.8539183149114,277.1577385584824,276.71749791596085,276.0156457819976,276.98293402418494,276.5102775208652,275.96858651423827,276.4545550365001,277.43901445064694,277.1815721737221,277.0548933669925,277.9379800404422,277.87254059594125,278.493284357246,278.33616790547967,278.3993647112511,278.6379722892307,277.841115987394,278.34579469496384,278.2375220754184,277.79613505257294,278.08582017431036,278.92529958486557,279.10992467729375,278.1407866831869,277.5932630877942,277.70929810171947,277.1589276078157,276.4156817337498,276.191528018564,276.0725516360253,275.5600546649657,275.3637864459306,274.5342984399758,275.128677546978,274.4112521354109,274.03075205301866,273.61095212446526,274.07192541565746,273.6494918386452,273.4152229940519,273.70020519848913,273.26209473703057,273.5676002651453,274.4331744783558,274.0955315218307,273.7691604285501,272.83754360862076,273.32292581908405,274.12207225104794,273.6482825744897,273.4947996023111,274.3542121392675,274.2119394582696,274.89432548638433,275.67332550371066,275.780161395669,274.9414108488709,274.8693392300047,274.03428789786994,274.5502040120773,274.81748304795474,275.55180011410266,275.3127027233131,275.29451407212764,275.3549457225017,274.55676667857915,273.62977931136265,274.1575488462113,273.5386260282248,272.54879453452304,273.2035175981,272.2781383637339,271.58255056804046,271.9592720801011,272.4108460145071,272.3130973065272,272.0566583634354,271.84514892240986,271.1929953112267,271.31350442767143,271.63501010928303,271.5590577418916,271.9610749706626,271.91703116800636,271.24757847748697,271.2018543500453,271.27981183864176,270.40910057816654,270.7740648109466,271.11684285243973,270.53828771365806,270.4362369040027,270.4914793265052,269.6729152868502,269.9566642497666,269.21548570599407,269.6617985391058,269.11536687938496,269.41894547175616,270.11078479653224,269.88130793720484,269.8759118854068,269.8399853101,269.24070963216946,269.08917661523446,269.82733264984563,269.3950567226857,270.2288327845745,270.32791454019025,269.95914000831544,270.4220244833268,269.7698657470755,268.792146212887,269.5997253633104,269.689716828987,270.51282614003867,270.8368580164388,271.8225211710669,272.2080943612382,272.5240642540157,273.0229065720923,272.12185434112325,272.946213175077,272.86969815939665,272.88065576320514,272.8432814287953,273.2163155009039,272.2904877024703,272.80684473132715,273.62972837267444,274.4714784040116,273.61530739767477,273.87419807724655,273.61144383251667,273.92691444652155,274.0256386403926,273.5987097732723,272.655916844029,273.58024436654523,273.3357503730804,273.05312247527763,272.8934352034703,273.73874051496387,273.9145583650097,273.62223740434274,273.3517397493124,273.1989265996963,273.17857354786247,272.3895605802536,271.509112152271,272.12442631460726,272.31395179079846,272.52384045161307,273.4138496685773,274.0546173918992,274.4068936002441,273.43280900176615,274.1018624859862,274.6387267638929,274.1485195765272,273.5822243359871,273.9151738253422,273.88236440951005,273.26643896708265,273.97585926624015,273.09579863911495,274.0526890847832,273.4877541400492,273.7082704831846,274.70801669638604,275.3263163790107,274.5691498359665,274.03511977242306,274.06684252945706,273.8424797914922,274.63721172790974,275.52486525988206,274.9755628397688,275.83260837662965,275.34614625992253,275.73347269091755,276.3392563164234,276.8057439029217,276.59496945887804,276.5478733484633,275.8516547395848,275.90645020920783,275.6300975601189,274.87085437215865,275.4965118705295,275.07829047366977,275.1415335726924,274.8578502172604,275.7666757935658,275.09530371055007,274.6297936961055,274.3903993018903,273.5880662999116,273.04486420797184,272.8190529081039,272.34586604172364,271.62709736591205,271.8973910487257,271.25967443501577,271.1710300371051,270.43607179354876,270.83493247581646,269.96069720666856,270.54453821945935,270.8185159494169,271.2336416603066,272.06368498085067,271.629247514531,270.85758966580033,271.20667100325227,271.2137831659056,270.70675513567403,270.33547412836924,269.5956562203355,269.0821613497101,268.77472488116473,268.1866348348558,268.93468454573303,269.7427460011095,269.9110344527289,270.39891342958435,269.6312014623545,269.309414437972,269.1572487587109,268.4278607792221,268.6222165636718,268.2115519652143,267.698375441134,267.32302093692124,267.6013864995912,268.50735642341897,268.1184810465202,267.62948097195476,266.9166178922169,266.01968736061826,265.1996052088216,264.7716135662049,263.97830696590245,263.0699455407448,263.64631387917325,264.37327104527503,263.9857943113893,264.7416714159772,265.02345165843144,264.4446268454194,264.0108985588886,264.46529621537775,263.57560079265386,263.2516411365941,263.72476430935785,263.49819668056443,263.8625295711681,263.1422321712598,263.7423005187884,263.4491012636572,263.9213691591285,262.93672366440296,262.1694437554106,262.79495143378153,262.34910389827564,261.8252249038778,261.66504711378366,261.04639250040054,260.21371469227597,260.38666001940146,260.41945075569674,260.74920690385625,260.6648694179021,260.6980258808471,259.9731069719419,259.2371583036147,259.9265360184945,259.4943135967478,259.8592034326866,259.504961006809,259.93518481589854,260.8874030425213,261.4437344064936,260.55710344947875,260.35620376095176,259.86783191468567,260.75981665449217,260.0054990523495,259.6860139509663,259.4731899481267,259.23588512372226,258.4313464066945,258.82897105207667,258.660966463387,259.3582876101136,259.4766942183487,259.0575075610541,259.0962156797759,259.80955921066925,259.12965214718133,259.4452283587307,259.1173955281265,258.4395762006752,259.4236748572439,259.78308362560347,259.62861464871094,258.71703885961324,258.275795864407,258.0228405185044,258.17586001800373,258.2992367767729,258.26309446664527,258.7546471413225,259.3420456368476,258.73869675863534,258.7483479655348,258.9553462914191,259.7561312839389,260.6456683264114,261.49262439319864,260.9701178781688,260.5798878152855,260.4778596824035,260.16056042490527,259.81877389969304,260.0071303443983,259.7428456051275,259.04138980666175,258.1973391333595,258.5954770538956,258.2950811367482,258.01153185078874,258.48548962408677,259.1563890231773,259.1163607998751,259.77938976697624,258.80440293299034,259.0297176986933,258.2759017772041,257.9434900772758,257.8435708973557,258.28347062086686,258.15247123362496,258.82996182655916,258.0252887797542,258.439567939844,258.61699799774215,258.5166398449801,257.5214946125634,257.920799002517,257.12873668037355,256.1921167736873,256.0813109157607,256.6082972949371,257.5846890178509,257.76992386672646,257.88122599665076,257.1563888597302,256.7011934649199,256.28916952805594,256.8105926550925,257.39147188700736,258.3145657707937,259.2904685251415,259.69989801058546,259.88105598278344,259.07283105608076,258.13515734579414,258.4343499690294,259.3104297160171,259.9372532851994,259.6988133764826,260.58280581701547,260.9675262188539,261.7683503990993,262.3623160449788,261.5969677134417,261.51173946168274,260.695893490687,261.3344171019271,261.13508375314996,261.73487447341904,261.9807211603038,261.7969534168951,262.51323049981147,263.0843781484291,262.7416451089084,262.7902451227419,262.4726321748458,261.88167762197554,262.20918251154944,261.7608657516539,261.81439973739907,262.23857942130417,262.52180183446035,262.08798225363716,262.56600159965456,263.2816776386462,262.36905782157555,262.9464886575006,262.2206493834965,262.1374879265204,262.02862736349925,261.6227908525616,261.86917718686163,261.9722622525878,262.1610327363014,262.23697041301057,261.360290997196,260.48327007563785,260.90033725695685,260.6111957281828,260.2645556270145,260.7131652836688,261.7071060575545,260.95482114795595,261.5479029943235,260.77241448825225,259.89756058715284,260.6709065772593,261.4639158276841,260.7485828497447,261.417397743091,260.44548722263426,261.36471666861326,261.06567931268364,261.5381623990834,262.2303140084259,261.41969196964055,260.5157058588229,260.9431297937408,260.0768066095188,259.3605645727366,259.95628923689947,260.74912981083617,260.26148483064026,260.1962345489301,259.9360337452963,260.28248358517885,259.8006205605343,259.52997859334573,258.65874400082976,258.4281139667146,257.86049201665446,258.2125647170469,258.0499623455107,258.7557553485967,259.19288471201435,258.2951994142495,258.01737232040614,257.16160075971857,257.398298246786,257.31982037611306,256.75685927364975,256.98556784680113,257.50944780372083,257.14104069722816,257.20100019918755,256.97047844016925,257.12395205162466,257.6969730332494,257.4325008587912,257.2938738204539,257.38219053298235,258.1941535882652,258.6100653205067,258.56191093008965,259.34395568305627,259.0779476510361,258.41841610334814,257.57934597181156,258.0732986815274,258.0574344196357,257.9195661274716,257.2484507053159,258.03348654089496,258.6952994838357,259.04280870594084,258.4013819657266,257.7609740756452,257.5369149153121,257.49415663583204,257.09629797469825,258.01574277412146,258.33905513584614,258.482951158192,257.6795294168405,257.06399178504944,256.26237534033135,256.93181763309985,256.02717044763267,256.52450117701665,256.73558738827705,256.0931401173584,255.3199282293208,254.939459992107,255.74012589640915,256.4352291384712,256.12443156773224,255.35919042723253,256.22541477531195,255.4671760397032,255.73223947174847,255.31394743546844,255.45813219295815,255.30075833573937,255.6427659955807,256.3773479796946,256.0198565647006,255.75440429104492,256.03617603331804,255.7205192227848,256.40182413952425,256.61286723287776,257.5959831913933,256.79452036879957,256.640168832615,257.0784063981846,258.0646278723143,258.7449989267625,257.852939539589,258.48897423036397,257.82807837752625,257.98378973361105,257.08288750145584,256.9078481141478,257.48374730721116,257.564663100522,258.0527860936709,259.04384567262605,259.3712955182418,260.02121875667945,260.26902105566114,259.7248039897531,259.3422768539749,259.93509400077164,258.97841345192865,258.37449314352125,257.53335055569187,258.01472412375733,257.68965486297384,258.33744017314166,257.89704178692773,257.3057997026481,257.52970378892496,258.12420090613887,257.78008120926097,257.88727566972375,258.590575044509,259.3989268732257,258.4788965457119,258.3906263653189,257.45609634835273,257.2309795874171,257.7129927473143,257.8940122318454,258.01110125519335,257.1266469922848,256.2593289380893,256.4804819226265,257.4692145762965,257.5502773425542,258.2464436753653,258.6959744589403,258.9091161680408,259.3311632820405,259.68353057745844,259.9517473736778,259.3517838171683,259.6852268297225,258.7182189631276,259.6026575039141,259.18369642598554,259.98463771585375,260.0280001433566,259.4572448558174,260.1489594466984,260.67367676319554,261.32859906740487,260.81283403001726,260.55428817728534,261.20002213167027,261.78571468172595,261.6444927640259,261.326610582415,260.8065550546162,261.5987443709746,260.84357478516176,260.02159795491025,260.5875873961486,260.18017509859055,260.43385467818007,260.6902762935497,261.48518009809777,261.78053337475285,261.1346467230469,261.49971625348553,262.15860338369384,262.5117649352178,262.9322636788711,262.7308446955867,262.54303663922474,262.378304018639,262.49577114731073,263.26141906529665,263.20336867915466,264.1465216903016,263.2234400953166,263.32362262392417,263.6214943472296,263.76844232995063,264.19142552046105,263.76380513235927,264.11283938912675,264.5730553981848,263.9825286800042,264.7913174247369,265.0743163577281,264.53250201418996,263.770658695139,262.7852839222178,262.3162811603397,262.98458672780544,262.4730553785339,263.3290393538773,263.6832153964788,264.0895655970089,264.86611698102206,264.1533495578915,263.5777067397721,263.4052885854617,263.17089951457456,262.54883447568864,263.14883755194023,262.620697948616,263.19607937615365,263.2399969995022,263.87222058465704,264.84126764908433,264.01039211964235,264.96683225082234,264.6310166991316,264.256191290915,264.50132929813117,265.2609229693189,265.52326254406944,266.3094145366922,267.21417205315083,266.7839564466849,266.79235719377175,266.2670243741013,266.8751315707341,266.9792575580068,267.29875935288146,266.6188048883341,266.9570550057106,266.04128710832447,266.5495679145679,267.52916848054156,266.9252907531336,266.87861257372424,266.19873987324536,266.09633720619604,266.18041823990643,265.2220593057573,265.8317133425735,265.20267558749765,266.01909421617165,266.484494489152,266.6904070661403,265.8425489910878,265.09316536132246,264.4369975980371,264.5461551928893,263.8030035234988,264.20037788851187,264.8409136827104,264.03527683066204,264.23751867655665,263.43297631759197,263.8985345377587,264.88997320691124,263.93026074720547,263.2140886276029,262.8303815680556,262.55550224427134,263.34330640221015,264.1692203790881,263.1887742038816,263.51290404237807,263.9409412769601,263.9416772010736,263.8892818815075,264.18212393438444,263.5147903780453,262.6851345333271,262.4687887756154,262.2929376824759,262.95080041186884,262.65959428669885,262.43071897746995,262.40594499977306,261.4220629730262,261.6249105837196,261.4287158763036,261.76824371051043,261.849241186399,262.0061520920135,261.95350019307807,262.58442170452327,263.07809161162004,263.8717103037052,263.52767208451405,263.10747436620295,263.45573424641043,263.71551266824827,263.540084683802,263.75849492894486,264.2407277524471,263.9354347907938,263.8422839315608,263.6941159837879,264.12820495292544,264.14930957369506,264.3832118762657,265.3280834443867,265.361464926973,264.40617678826675,264.5419032066129,265.33444047532976,266.124326242134,265.8551596039906,266.2400572989136,266.33090730942786,265.89077767636627,266.2238477729261,266.26925611589104,266.36669811746106,265.9226800724864,265.55067705968395,265.8495519203134,265.0870411754586,265.35590562131256,266.03276878688484,266.08451003488153,265.9048969880678,266.61689394526184,265.70646110456437,265.36090848967433,266.0872052675113,266.3789940192364,265.58014775719494,264.6272807274945,264.4029924883507,264.26032679062337,264.6506012589671,265.6351337512024,265.1447226945311,265.8845697916113,266.36175811477005,266.9498722660355,267.7622347297147,267.5661754771136,268.2102065240033,267.82466807123274,267.6484316107817,267.0189196243882,267.12043576454744,266.33608844084665,267.14639809401706,268.13635486457497,268.75126846227795,269.40813873615116,270.33515659626573,269.52965312544256,269.6003683572635,269.18420567456633,269.03368102107197,268.28948857681826,268.3593183285557,269.2326537715271,269.82943309284747,269.3369850977324,269.96108985086903,269.8992500975728,269.3123668730259,268.6315865535289,268.8334160493687,268.42437900276855,268.1549069778994,267.2985286307521,266.79549375129864,266.3945063301362,266.494849503506,265.5695218630135,266.3219445226714,266.6414647833444,267.44357091374695,268.30465590115637,269.234050352592,269.09074408048764,268.52118016732857,268.2067033611238,268.51453142939135,269.110544456169,269.655126972124,270.1596370860934,270.179487303365,271.06992270052433,270.19322563987225,269.2875643139705,269.9219780112617,270.67520792176947,270.5819945386611,269.95051304157823,269.4330317368731,269.5532168550417,269.1298725339584,269.247080875095,270.12027115980163,269.5104313218035,269.9426197251305,269.7937926570885,269.27796439640224,268.6598938610405,268.80143585661426,268.6949534830637,268.796349696815,268.1426641899161,267.18568369187415,267.8277548318729,267.6235122731887,266.9626741311513,266.5335175502114,266.3834739928134,265.8738546129316,265.3216455592774,265.2028437126428,264.6680297330022,264.5961115928367,263.88510165316984,263.20475481823087,262.21045462600887,263.20845389179885,262.4617000054568,262.9539680760354,263.7463786229491,263.2147980821319,262.5892345076427,263.35202925791964,262.4095822162926,261.92509816307575,261.85661974269897,261.38584281736985,262.30698530189693,261.30786998802796,260.7010590489954,259.8716196240857,260.00686459755525,260.09968010894954,260.82860872661695,260.70398124633357,260.26087448745966,260.72806536592543,259.8565107807517,260.62892018444836,261.18108082329854,261.99478576052934,262.37544123781845,261.47501953924075,262.0027916445397,262.80973564228043,262.25280319619924,263.16236562654376,263.19796501565725,263.36947435792536,262.5130730168894,262.09544504480436,261.66125646280125,260.98607161734253,261.629171221517,261.29551373049617,262.2012414447963,262.8795390338637,263.0034231953323,262.7509972564876,262.99537205696106,263.1645139148459,263.7756138299592,264.4531218614429,264.493626691401,264.2873786422424,264.95945657696575,264.5959810889326,265.5910703605041,266.1885792980902,265.74519694177434,266.54112981259823,265.79055328899994,266.51608308497816,267.37948148231953,266.43420707900077,265.7205246910453,264.8674571956508,265.28138909256086,264.364728202112,265.2142293890938,265.59450667211786,265.70302933221683,264.8104561972432,263.9557601567358,264.90917266579345,265.75757794221863,266.3012567702681,265.57020623609424,266.5637771617621,267.3490580157377,267.7127807298675,267.07302042795345,267.99948896467686,267.926769179292,267.0651720785536,267.04696161765605,266.28905250830576,265.80386793613434,265.94332745252177,266.0255522802472,266.97185344807804,267.935369908344,268.32925135083497,267.78518313448876,267.97411901457235,268.8145278724842,268.90205392986536,268.8474632576108,267.8564315261319,266.9459192729555,267.0827482813038,267.77541790297255,268.14796250499785,267.7259505218826,267.4212377220392,266.4479787191376,267.0942301112227,266.299867618829,265.35592676047236,265.60621664999053,265.63556517194957,266.4845039341599,267.036407308653,266.97758650034666,266.6349765951745,266.5240667592734,267.36250349273905,267.47343748249114,267.52723720902577,267.5845281840302,268.1499370932579,267.2485109497793,266.61853202804923,266.26044595241547,265.6758508272469,266.22512127272785,266.0606385585852,265.63006233936176,265.24790130509064,265.2802490647882,264.4190891892649,265.14462790777907,264.98827382875606,265.94969855295494,265.1790245473385,266.16298353578895,266.77744318917394,266.8941572676413,267.8079896341078,266.8394040474668,265.9047497678548,266.53338421927765,266.96270945155993,267.3875395092182,266.5099552888423,266.18905861629173,266.1187627161853,265.55722866021097,265.8191434475593,264.86134801618755,265.49929555971175,265.16494605643675,265.59552524238825,264.6330360621214,264.3773296205327,265.0078739156015,265.8358936361037,266.5494535029866,266.11266415938735,266.26961669232696,267.2141552916728,267.79941590782255,268.74700036179274,269.5955701144412,270.5821464350447,270.81887357961386,270.29003100004047,269.5567863518372,268.7295408239588,269.139211833477,269.90997571730986,269.6801042659208,269.2868863726035,270.14934196928516,270.7897566193715,271.3621284174733,272.0507478774525,272.12993584014475,272.3221664475277,271.8460239879787,272.15411081910133,272.1176735050976,271.36115616047755,271.43024783721194,272.122780517675,271.554955013562,272.5480106715113,272.0582532370463,272.1457739137113,272.4842108255252,272.44395126309246,273.22015321906656,272.30237121880054,272.5626635765657,272.6470316997729,273.38970706937835,272.5197646059096,272.6754175662063,273.06789563177153,272.85304523957893,273.0599595028907,273.79777227621526,273.3193347193301,273.9189338311553,274.645559258759,274.23259631637484,274.11208486463875,273.60078746499494,274.3456844734028,274.8565585007891,274.583798059728,274.72207912337035,274.1534962505102,274.4255786356516,273.6811919994652,273.09819583268836,272.54871165240183,272.07918282272294,272.16353775700554,273.0888329776935,273.1798649635166,272.8604416796006,273.6321984906681,273.0584708498791,273.2562946449034,273.7117033684626,274.4564769146964,275.37789165694267,275.4119326309301,275.6710885008797,275.13684908580035,274.20314480317757,273.2267609224655,273.1377908033319,273.860542352777,273.391663571354,273.97941155172884,273.4156255777925,273.2560294577852,273.96168704889715,273.8415647209622,273.2048703515902,273.67750973720104,273.5204487112351,272.94977693259716,272.64821788761765,273.3225905802101,272.6805824832991,273.1420652545057,273.1474925689399,273.6910666790791,274.2169334567152,273.37439617235214,273.0789882289246,273.61853260640055,273.71096292696893,273.18880123784766,273.82964959787205,273.2369900015183,273.70776423159987,273.891184407752,274.7865640982054,275.3883911324665,275.799968871288,276.13752198033035,277.0680770473555,277.4469262282364,277.3131936821155,276.69403488375247,277.6347250933759,276.9984031310305,277.747330382932,277.1039958144538,277.66385468747467,278.2944642310031,278.13542001182213,277.56054057041183,277.4043681579642,277.19018797390163,277.1112180277705,276.20010741148144,277.14732266264036,276.62253473326564,277.00418267119676,276.45764383487403,275.463477879297,275.96624773927033,276.2639269544743,275.5712189255282,275.8658619867638,275.22456523636356,276.07537240860984,276.46290562395006,276.22110276389867,276.5783928716555,276.2610652530566,277.1707183145918,277.4756831973791,277.2180453212932,278.2011560946703,278.0336861787364,277.09747065557167,277.000175956171,277.93667633412406,277.4913958371617,277.38813124550506,278.1443032328971,278.8494610097259,279.7947274320759,280.7247834033333,281.5350602436811,281.8094649426639,282.1600207518786,282.5801507155411,281.7437066202983,282.64210560312495,281.7514884797856,280.7806807393208,281.3575545614585,282.23975094314665,281.4019272499718,282.14851934835315,283.063801032491,283.76895738439634,283.4474268858321,282.5945884305984,282.12882582703605,282.7724380614236,282.37745121726766,282.63348147971556,283.587581041269,283.02444886090234,282.02567692799494,282.7638251292519,282.3656663671136,282.93084077490494,282.4217484132387,283.2023325753398,282.8873433275148,283.53626886662096,283.4517275178805,283.75083225918934,283.8129191258922,283.6009089583531,284.1625843043439,285.15270900260657,285.49813058413565,286.43961852788925,286.9333778899163,286.37009030906484,287.2116509308107,288.00316024245694,287.41357509512454,287.3981330259703,287.65366683201864,288.2502448442392,288.94316017255187,289.5006081527099,289.37753516295925,288.5134396990761,288.94711688393727,289.40147936018184,288.9566534389742,288.51456978032365,287.850479693152,287.6706501352601,286.71231434028596,287.3131031463854,288.1104603423737,288.876638866961,288.54772024462,289.3019327521324,288.51223243260756,288.52072601998225,288.79195839865133,289.4685598718934,288.7606054977514,289.6843659710139,290.03724505612627,290.94260409707204,290.27718114852905,289.97300403751433,290.5927067184821,290.1910830195993,291.13409444177523,291.1254842574708,291.58919378975406,291.4562005074695,291.62265346199274,292.45877533452585,292.3917000289075,291.936998186633,291.5283097838983,291.58452527131885,292.0991231785156,291.6224068100564,290.9752164911479,291.94828343577683,291.17397752497345,290.49752636719495,291.3707028613426,292.2609404367395,291.9925639210269,291.04708188120276,290.3874380090274,290.1307086814195,289.37807830329984,290.03772803675383,291.0064775412902,290.70951169077307,290.3902969583869,290.70151340262964,291.6928194197826,292.2102851970121,293.1181987929158,293.1596170850098,292.83410863159224,293.4502048105933,292.55264637758955,292.93755790544674,293.3625379689038,294.1361117642373,293.7242434648797,293.0834104921669,292.72559012146667,292.6407484905794,292.12817845121026,291.5865615485236,291.0779025154188,291.36852424172685,291.1204056222923,291.6973471175879,291.13126029865816,292.1198028693907,291.5892972550355,292.3301724898629,292.6497670696117,292.31852550944313,292.0429497594014,292.1235713032074,291.33440982736647,291.60756759531796,291.10561080183834,291.05066333152354,291.0688506131992,291.47833559382707,291.561584754847,291.04522171383724,291.4327167295851,291.7918480783701,291.63963356334716,292.05119540309533,291.9047720017843,291.7546026245691,292.0208943709731,292.865128448233,293.75804165378213,294.607810780406,293.77690508496016,293.79795328434557,294.1657556765713,294.73013105709106,295.19880570471287,294.61908442154527,295.45008840505034,295.7805027938448,296.37328696995974,295.83978296723217,295.3724273107946,295.10687890602276,295.5591829181649,294.63100185990334,294.65741414483637,295.5090242656879,295.95517673902214,296.5993879348971,296.44315499067307,297.1956311916001,297.1567335729487,297.5929377800785,296.74394448054954,296.5979712079279,296.6484831557609,296.97313289996237,297.4640905642882,297.1025352599099,296.6848301826976,296.0853897514753,295.37764926534146,294.8186374399811,295.1637508594431,295.47969475761056,294.9342353614047,294.8674068581313,294.4371990468353,295.0684729120694,296.00653981789947,296.8416234450415,297.80741141876206,297.8176950844936,297.07691379403695,298.0650655385107,298.8578068972565,297.9860650585033,298.3954252637923,298.10683500627056,297.9767651692964,298.84387242328376,298.46165273245424,297.5478184535168,298.082423876971,297.2858515144326,297.1153787765652,297.1013416447677,297.0266846497543,297.60220847278833,297.91432428825647,297.1366206537932,296.25369443325326,296.60323635675013,297.38613856909797,297.54799579130486,297.20560036832467,296.6239396892488,295.69234119169414,295.7708734245971,295.1349296309054,295.55522963544354,295.00132992118597,294.90221949480474,295.0029746713117,294.1786431437358,294.9340947554447,294.00244922284037,294.7347261016257,295.7102732285857,295.75494056241587,296.0095450761728,295.252884787973,294.4386478615925,294.16957841906697,294.1476382999681,294.8128377664834,294.03640606766567,293.7290708674118,292.7436154866591,293.0595726422034,292.5773330582306,292.8359264158644,292.71623462531716,292.5069827050902,292.3039911258966,292.04447564296424,292.4399471678771,293.22528128372505,293.44221297930926,294.39479649066925,295.16929934639484,295.6672501936555,296.56766361603513,295.62448516022414,296.13794220937416,296.4473524708301,296.8507587071508,297.68809881061316,298.17700619623065,297.6332952803932,298.60395497456193,298.44135473528877,297.5684086647816,297.52119085146114,296.6314550982788,295.9740293007344,296.76862156111747,295.7945458544418,295.12700667092577,295.50466475915164,295.1042149653658,295.9673165711574,296.2125815805048,295.42530473461375,295.4093609484844,294.9317586864345,295.1003916352056,294.4653186122887,294.2656957753934,294.2513442123309,294.3496458386071,294.3436430245638,294.2084806407802,295.1915436545387,295.13863208238035,295.67213093675673,295.5152655704878,294.95113741094247,295.58369405474514,296.0341418138705,296.1306605921127,295.65178871620446,295.544228695333,295.1026102891192,295.3845043401234,294.47351174708456,295.0174924675375,295.627099622041,295.01608919305727,294.6951026972383,295.63997659413144,295.95689193112776,295.5014626979828,294.9496944937855,294.6867927755229,295.39446720294654,295.37756763305515,295.77871570969,295.98249819502234,296.50154250115156,297.07370453793555,297.2153386394493,298.07666512485594,298.68526772456244,297.72237954614684,297.9047910547815,298.5559400478378,297.77849773550406,298.6673627910204,299.62373776873574,300.04783195629716,300.91692485148087,301.19311770331115,300.9408233608119,301.3168969224207,300.34716811496764,299.97795127984136,299.69470444787294,298.6954620857723,299.3168607172556,299.56455840496346,299.20702230464667,298.7464661882259,297.8140088156797,298.22527508158237,297.3500345046632,297.61273288726807,298.26916702557355,299.15171868680045,299.5696029695682,298.62870291573927,298.7749953479506,299.00130841322243,298.27421480976045,299.05001105181873,298.4776179702021,299.44924111897126,299.19241290260106,298.20657200179994,297.8062121439725,298.04035109560937,298.082680716645,298.2205544160679,297.5191824878566,297.00625306740403,297.9612686038017,297.13078701589257,297.46877254359424,297.040797484573,298.0130315097049,297.6871162429452,297.22299745399505,297.5426048305817,298.0913720331155,298.3262280090712,297.6490852194838,297.0124743836932,297.0141744124703,296.4823177321814,297.2693327446468,298.14661026978865,298.63834181800485,297.8494405383244,297.0747700734064,296.6675718794577,296.4599728984758,295.8070431021042,295.5109131289646,295.1049781781621,296.04225373547524,295.4456122959964,294.4870499339886,294.30145953642204,294.4392090686597,294.74308497225866,295.1201120452024,294.1268100766465,293.67595762293786,293.4643318252638,292.8167940755375,293.079045496881,293.1359783485532,293.868215884082,293.0049962219782,293.0478436993435,293.11734379502013,292.12838388513774,292.0992590119131,292.82007874595,293.6942194146104,294.68127616355196,294.8223201688379,295.3844713335857,294.5277668167837,293.80745446961373,293.30689547769725,292.9092010855675,293.4882732150145,293.329125683289,293.81860119942576,294.5014535957016,293.6963771781884,293.5438118847087,292.671061902307,293.63614869164303,293.18503583362326,293.7452075947076,294.51579883042723,294.00054001249373,294.3499475182034,293.8567823851481,294.8464261800982,294.95900718774647,295.9058715077117,296.2291779150255,296.598435790278,295.61812830669805,296.33521081646904,296.393682887312,296.507524500601,296.148148259148,296.254248553887,295.29823207343,295.97530899289995,295.1032013706863,295.04217938613147,295.03273388789967,294.620820381213,295.1645753560588,295.78906761761755,296.59003743110225,295.6660199565813,295.95139964297414,295.03186965873465,294.7190025993623,295.3083545276895,295.30722226575017,294.9746195562184,294.994316669181,294.1629758137278,294.6537731345743,294.37964777089655,294.8476108722389,294.48075089091435,295.181163453497,295.4796030931175,295.4062727014534,294.8257512245327,294.1519906935282,293.28453987510875,292.63056712737307,293.4365857830271,294.10664828307927,294.50788138527423,294.0058836932294,294.25493524130434,294.2706453585997,295.23230897355825,296.18155142711475,297.10554266301915,296.87871352024376,297.0039199073799,297.95351544581354,298.723130710423,297.8290528166108,297.0666347662918,296.12614870723337,295.49233195045963,294.9888453874737,295.4092721277848,294.55230113118887,295.2821079483256,296.0029181363061,296.30840150872245,296.0754204513505,295.8383967182599,296.2289888234809,296.72766690934077,296.8644544244744,296.87197347544134,297.53313318127766,297.97382758464664,298.92535414360464,298.54267672030255,298.0913534881547,297.55812732083723,298.400693458505,298.4400360863656,297.825666914694,297.8514235895127,296.8714055875316,297.72286329139024,297.8169224532321,298.64171123411506,298.7629420310259,298.3551522507332,299.00422369735315,299.71319905808195,299.57870408985764,300.30148032447323,300.11617413163185,299.6316259126179,299.34536013472825,299.29708822024986,299.40197065705433,298.7373509737663,299.01180421048775,299.9014255385846,300.4987995075062,301.30605711368844,300.88592823874205,301.06023718137294,301.9172337464988,302.13934596581385,301.7339087096043,301.81091573741287,302.6900852145627,302.5295140966773,302.52704335330054,303.0520650097169,303.3332578917034,302.6301544182934,301.8512435927987,302.8440431859344,302.95594238862395,303.16494698729366,303.8412948101759,303.04619060177356,302.7546222573146,302.1730770091526,302.87832392100245,303.7747839195654,304.33802568819374,303.9014310869388,304.8173246127553,304.9029393168166,304.3732591420412,303.57277508592233,304.47218090714887,304.25189050193876,303.4183009690605,304.21520134899765,304.9528219262138,304.81603070907295,305.2683281339705,304.83844026736915,304.06884222012013,303.957143205218,304.3997490135953,304.1454840665683,304.21012005442753,303.9527704869397,304.3032483845018,304.3081479645334,304.7581328242086,304.21456921705976,303.3660950148478,303.1113181752153,303.2590874847956,303.71808678563684,303.70368724735454,304.33739340212196,304.03128602169454,303.1780832144432,303.3586906688288,303.33633077703416,304.0810015173629,304.3258821698837,304.7026543566026,305.5635124812834,306.20349299069494,306.77923451317474,306.9749587699771,307.44757264247164,306.9757669372484,307.76592159690335,307.6760432901792,308.49672851571813,307.51104431739077,307.7215651948936,308.2596903825179,307.71025821752846,307.85680840862915,306.93400801019743,306.22921328246593,306.98681294964626,306.57007776713,305.66220755828544,305.95348168630153,306.49944938672706,307.34995857439935,307.89628222677857,308.2064497275278,308.03029357176274,307.58252790849656,308.26172685809433,307.86992341745645,308.0154991741292,308.3139168038033,307.83872845117,307.8035883209668,306.90107047325,306.0039376919158,306.2490346604027,305.82273897575215,305.9445084715262,305.11000587278977,305.35358641156927,304.5326710329391,304.81046081427485,303.8291886411607,304.271658083424,304.4673981484957,305.3124505695887,305.87641551252455,306.17913937103003,305.67402273323387,306.1581663209945,305.8665760862641,306.1405275124125,305.8714036718011,306.02801903383806,306.92534183477983,307.06957037886605,307.0047484510578,307.64167486689985,307.77946682088077,307.2079371251166,306.32957142731175,306.80994054861367,305.9700687644072,306.7249208907597,307.4576792102307,307.8110736710951,308.2159214336425,308.7133206804283,309.43443889869377,308.89506236370653,309.25415491545573,310.1212442596443,309.61265404708683,310.6058568204753,310.9261998864822,310.57788951927796,310.5551981688477,311.0699714124203,310.8456195387989,310.33852824242786,309.9617832195945,309.48319117631763,309.5293868398294,310.2235037884675,310.2249755896628,309.5597320520319,310.2339686467312,310.7997347237542,311.1986033106223,312.09364452259615,312.01964990329,312.39947992237285,312.66652538301423,313.0452771144919,312.969011310488,312.87660812586546,312.2435290198773,311.48407018277794,311.66306737670675,310.88793009566143,311.4041252648458,311.32154229143634,310.82891300460324,310.394299921114,310.0078966272995,309.53984163329005,310.49853780306876,311.40485503477976,312.0575694744475,312.0897670388222,312.3525432292372,313.32810550695285,312.3725617742166,312.9831673190929,312.70697317505255,313.5055292993784,312.64254513243213,312.9564950801432,312.69279293343425,312.8268840191886,312.85196499107406,312.1166991479695,313.05622909683734,312.7989726732485,313.4894689251669,312.5216498170048,311.94109545927495,312.22579501150176,312.98811976006255,312.3783114971593,312.97895630355924,312.5162394074723,312.55537840677425,312.1773755024187,312.6306494800374,312.95167994638905,312.58063939446583,311.69757222756743,311.698293519672,312.03673327481374,312.3823722181842,313.1242273733951,313.32247199863195,312.9343448607251,313.5717700025998,313.01591469626874,312.2480949666351,312.56892311992124,311.6806460269727,311.1379291601479,311.5223238337785,311.94918605079874,312.6026384467259,311.88085681851953,311.38117441069335,311.13843595050275,310.20239849342033,310.8678316157311,311.62937957420945,311.5238019260578,311.54395221499726,311.2104918695986,310.4063676930964,311.1952899787575,310.23183058341965,310.2817658870481,309.29847463639453,310.26113050663844,310.9173182947561,311.08208304224536,311.9906335454434,312.8014693232253,312.58415532438084,313.05094320420176,312.8055909262039,313.0800679004751,313.17492658738047,313.0540132559836,312.19811832811683,312.49940312467515,313.00525164511055,313.12216890696436,312.3077042954974,313.0075587686151,312.3827993948944,311.5874873888679,312.0879852967337,311.60978398425505,311.71327162953094,311.98390905419365,312.1585939610377,312.4689696552232,311.71892652567476,311.037508897949,311.3640175261535,310.99563989276066,311.97716792998835,312.170965177007,311.77309475420043,310.95053050480783,311.32354526780546,311.98441082285717,311.6102595552802,312.4746480919421,312.11189410975203,311.5968620404601,311.6634422214702,311.4033116786741,312.2212621429935,312.6055510584265,312.84777285484597,313.34851004509255,313.6797859854996,313.68942491104826,314.4800397288054,313.9784408803098,313.69608977995813,314.613826113753,313.65906523074955,312.946373319719,312.6657351637259,312.408555617556,313.29530288558453,313.4021398825571,313.1300892070867,312.9252601987682,313.82573591545224,313.91351561201736,313.87340907240286,313.46757068950683,313.0317371478304,313.1693750442937,313.4518562615849,312.91266986588016,312.7112994850613,313.17358574131504,312.32857814617455,311.5030607599765,311.2449716106057,312.07335848687217,312.62446393352,312.60329553624615,312.7677409001626,313.0639102351852,313.40464266669005,312.62055130675435,313.30318139260635,312.40975504228845,313.02027657208964,312.3488014964387,313.2271554642357,312.96641270210966,312.78543909220025,312.3826889130287,312.4958727634512,311.6541607864201,311.5866591432132,310.6075494312681,310.1454778802581,310.82937340205535,311.21366321109235,311.53151780739427,310.9742843597196,311.3909859317355,312.0002641463652,311.46107058553025,310.5115544111468,309.7551710046828,309.3002318297513,310.0451162303798,310.717783393804,310.32849053898826,310.7275433745235,310.5906436755322,310.11390579259023,309.2072573476471,309.1336415573023,308.51433023810387,308.98995647905394,309.3604687489569,310.14653692860156,310.89640147518367,311.475337902084,311.3692266657017,311.75323724839836,311.0133693511598,310.7123535396531,310.51836130209267,310.1078970199451,310.7904780358076,310.4760978203267,310.3681086502038,311.2365903039463,310.41388040361926,310.2823914750479,310.5713075827807,309.71719682216644,309.499798912555,309.43927733646706,308.4444969170727,309.00752778491005,309.7788553251885,309.0795278591104,309.58770446525887,310.399240960367,310.32144965650514,310.40223898133263,309.6769031584263,310.17343838419765,309.3614114304073,308.8956093303859,309.1035408996977,308.47951183933765,308.9646721119061,309.8213662011549,310.574045506306,309.68333837622777,310.23502805875614,310.73065527016297,310.2629266390577,310.77797107817605,309.9271508282982,309.9714212277904,309.24984131613746,309.0909659084864,308.34111599298194,308.18375437613577,308.0629600575194,307.6403262531385,306.98392072785646,307.7891481365077,307.23295362619683,306.7288790442981,306.33332248963416,306.0444018179551,305.8861055118032,305.8354495689273,306.27896794863045,305.7499274984002,306.6166328373365,306.4963051341474,306.0046768481843,306.3355476032011,305.69313704315573,306.2881239899434,305.3321170876734,304.96658548759297,304.9752186033875,304.27077014325187,304.73091320320964,305.0444877035916,304.55301480647177,304.9118154696189,304.55192675674334,304.8488329737447,303.91603569919243,302.92898834031075,302.4274390330538,301.56786662433296,301.49278139835224,301.6927897683345,302.06976722646505,302.1728503992781,301.2291423212737,300.86917104991153,300.72200051136315,300.5097686657682,299.64474692568183,300.1354905278422,299.95033891964704,299.03151553310454,299.1885919030756,299.10570919374004,298.8134253048338,298.40587981790304,298.6367305852473,298.5853362386115,299.48972388822585,298.8001537648961,298.07792173186317,297.79040469648317,296.9678235668689,296.5400694832206,297.25168918119743,297.33895539911464,297.4497477863915,297.73451551701874,297.11186861852184,296.5376923517324,296.6078260326758,295.74836796475574,296.10811801068485,295.5551147432998,294.7326528932899,294.56754689570516,293.88608697569,294.78193437168375,294.24996223533526,293.414673817344,293.98006617370993,293.5927252531983,294.16864933026955,293.96178732579574,293.83625215059146,294.786099689547,294.2991308029741,295.0360787897371,294.7382735949941,294.05233124131337,294.995492009446,295.4378701923415,294.520502042491,294.50530536286533,294.9872749503702,294.3391147865914,294.0164321884513,293.8415376385674,294.0559664182365,293.8139011831954,294.5476305093616,294.7528565283865,293.9394118380733,293.2887255814858,293.8394685704261,294.4148867242038,294.516515113879,294.7146007400006,293.96091862302274,293.4755382835865,293.17818268574774,293.67816785909235,294.53456314327195,294.58205977268517,293.6187266423367,292.7338060741313,293.24694713251665,293.5969601017423,293.19188345130533,293.0973551394418,294.0663875392638,294.3831239216961,293.7424795171246,294.65988615341485,295.04304552450776,295.80572128342465,295.1063663698733,294.27732117660344,293.8828736227006,292.91101930383593,293.855684267357,294.19987400621176,293.7900409460999,293.6940207737498,293.37221200717613,293.38264382630587,294.1046733050607,293.1234273361042,292.3909624782391,291.5350389084779,292.5084950509481,292.792452567257,291.9124084189534,290.94486920163035,290.5340270670131,289.94663882255554,289.34425046062097,290.2525802021846,291.2203786922619,291.01770939072594,290.0246645142324,290.5316376774572,291.3423542510718,291.261105066631,291.09958610264584,291.21830693166703,290.6757263536565,291.5762854879722,292.25266087194905,291.7083402941935,291.45721931383014,292.38669948792085,292.1864104187116,293.0993267185986,292.9577843192965,293.82074597431347,292.88495958037674,293.02691658912227,292.8061020318419,293.6097336122766,293.37559042405337,292.797638904769,292.26261205319315,292.75278271269053,292.54475869378075,292.9327070694417,292.0475490097888,292.8784507242963,293.5510479710065,292.95452604908496,292.94152897270396,292.7765348297544,293.4777492652647,292.75614563934505,292.3105672202073,292.1710579977371,291.58010016568005,292.3102525235154,291.72019483475015,292.242181467358,292.81485586054623,292.916996171698,292.2181837190874,292.94194136653095,293.5322188860737,293.41209500981495,294.14809590158984,294.16682926844805,293.3749076263048,293.95176551816985,294.1930259321816,293.38739913888276,292.7151646213606,291.93982836650684,292.0624415911734,292.91644000215456,291.98195859836414,292.3756255963817,292.35639928653836,293.1543273162097,293.7995612863451,292.9300585365854,292.26785713853315,292.9531520004384,293.6757796187885,292.88998457882553,293.0580349541269,292.9584603602998,293.2026147986762,293.3942376570776,292.9830522695556,293.7674621543847,292.96738144150004,293.59675195859745,294.30576837528497,293.9807115532458,294.1931666601449,294.87389532243833,294.5256228870712,293.5284492811188,292.7617836766876,293.3067938797176,294.10995174292475,294.00990012288094,293.28285627719015,293.6489683743566,294.2814139723778,294.44193890318274,295.17127645760775,295.5889147273265,295.5345122567378,295.87271351274103,295.5948954313062,296.13763743871823,295.37114281766117,296.05474247504026,297.01337915379554,296.9642860600725,297.0979427592829,297.274235741701,297.5601698975079,298.0185968466103,298.8055503554642,298.40285653201863,298.02273966604844,298.8780585578643,298.65535804303363,298.46511117881164,299.31204806175083,299.11659503448755,298.585811865516,299.33328731311485,299.0839914274402,298.52380360197276,298.6573761580512,298.1794559773989,298.56135064922273,298.6895145974122,299.59495431324467,299.2717899880372,300.1438692989759,300.95137261692435,300.17531447764486,299.93964783707634,300.3971150154248,300.8251329646446,299.83807934168726,298.880417260807,298.2757646664977,298.538077886682,298.5319209797308,297.76650578388944,297.2295725098811,298.20410451851785,298.0152762872167,297.6159803085029,297.42258794326335,297.77219701511785,297.555883822497,296.62194257183,296.0397343230434,295.5181988044642,295.53273102547973,295.13905032817274,295.0905318609439,294.66685585770756,294.03937004553154,294.3492797482759,293.3705569622107,293.0510728205554,292.56918340548873,292.2938970257528,292.41997951315716,292.3375380798243,292.3862939956598,292.3119004876353,292.8822636976838,293.58915323391557,294.4738516015932,294.1402930971235,293.1904457397759,293.660645452328,293.4305925387889,292.56585937784985,292.67943594697863,291.9300086130388,291.03465212835,290.87071501417086,291.07691941643134,290.42956754611805,291.27648006752133,290.85299438331276,291.43762627709657,292.3782004150562,292.98356556287035,293.5323176961392,292.7340514920652,292.9543280573562,292.9157113186084,293.8774547902867,294.28365819808096,295.0484985760413,295.46116505144164,294.66029283450916,293.9209864092991,293.4360866509378,292.6235411199741,291.7725826865062,292.6155380872078,293.54066013451666,292.5727896136232,292.84296086989343,293.3100841920823,293.11135258805007,293.99460274353623,293.8672997681424,293.3338583242148,293.3002559118904,294.1049824845977,293.12119005573913,293.99430643441156,293.3569047288038,292.823103741277,293.3000856358558,292.61799987824634,293.3605668996461,293.50689806137234,293.38725873688236,293.9738779733889,293.8309410638176,293.64017985761166,292.86994654126465,293.504417123273,293.79030989762396,293.40157662844285,293.91981335217133,293.77630198467523,294.66907426156104,295.35387042397633,295.128682883922,294.85045230202377,295.83810847625136,295.0902749877423,294.76100016664714,294.4786528083496,294.5801095007919,293.8099593259394,293.3028686894104,292.7943530171178,292.9475886160508,292.2972479565069,292.7176806954667,293.69141021789983,293.9261330747977,293.8110227044672,294.20085126766935,293.58755767624825,294.19653967395425,294.6862419922836,294.31642136443406,294.9771647481248,295.18484063167125,295.9756901944056,295.20233421213925,295.15775419864804,295.7383448211476,295.2379521857947,295.22067900002,294.3357398598455,294.4872780526057,294.1745651829988,294.3028532960452,294.69230291899294,294.880230453331,295.0249448562972,294.5945746321231,294.7211120808497,294.87120330287144,294.7876449939795,293.8409200818278,293.583527256269,294.4288618871942,293.46624995954335,294.35431322455406,293.66254938347265,294.2713918155059,294.3279504249804,294.44009739067405,295.16055576177314,294.64443600876257,294.9373105308041,295.64605568675324,295.13157533016056,295.20872417557985,295.36813644180074,295.7477834257297,295.6074348487891,296.2770393900573,295.9624108946882,295.4021118232049,295.854406693019,296.8215735242702,297.48510407004505,297.00029157847166,297.0237411512062,297.0160574731417,296.44163523009047,295.68071810202673,295.65016235644,295.96304164174944,296.4530553794466,296.52143582701683,297.3901980421506,296.4688220010139,296.75701027503237,297.24033971270546,297.23939136229455,296.80753597803414,296.0324034919031,296.8659854042344,297.4546543317847,297.0441994983703,296.6593024581671,296.0898279128596,296.66590236732736,297.37410689750686,297.60571439843625,296.91162672592327,297.5857662875205,298.15815474744886,297.8033368601464,297.6174824149348,297.1124851787463,296.4123314851895,296.0885649668053,295.322571166791,295.0818619322963,295.3331947689876,294.9437891282141,295.5117210773751,295.42015842627734,296.0013364306651,295.74205830926076,295.78534322977066,295.215980369132,295.14301792066544,295.1207685312256,294.820766994264,294.5753580457531,294.79047418478876,294.374296839349,293.5052014673129,293.77922400599346,294.09084430290386,293.8513588849455,294.32849794160575,294.4307825881988,293.9956013513729,293.62982509983703,293.9160180054605,293.0136947510764,293.3632132867351,292.67617712542415,292.06739272596315,291.33541600080207,291.1327185523696,290.38502896623686,290.52822975907475,290.8533591297455,290.47734615858644,291.1617210479453,291.99437806755304,291.9944795300253,291.30222035665065,291.4840745185502,291.0912772817537,291.6248314953409,292.6082349540666,292.9333194959909,292.94847967568785,292.0376234711148,292.89480991568416,292.56940713105723,293.5140375373885,294.4988162750378,293.52368657896295,293.1849979804829,294.0915125324391,295.0095449006185,295.9035962666385,295.08384052012116,295.5197514197789,296.51312617538497,296.60675401845947,296.60494807362556,296.02555881952867,296.92675957642496,296.63771368190646,296.4617812577635,297.27158621605486,298.2328178230673,297.554808920715,297.75973137980327,297.7078084363602,297.3098203269765,298.22291313903406,298.28679870441556,299.05824223486707,298.7753835977055,299.0324948048219,300.00161867728457,300.24387523997575,299.4192587779835,298.74544381536543,297.794195539318,297.00975983729586,297.43912058277056,298.3815193329938,297.412447898183,297.2104732352309,296.2743870592676,295.65922884549946,295.6084357383661,296.37784588336945,296.02565290685743,296.15111447824165,296.05172057822347,296.09554094215855,295.7685329695232,296.7190580922179,296.79167567612603,297.41674597002566,297.9985280800611,297.13133317558095,297.1685098032467,297.44035281520337,298.3557194308378,298.0713424999267,298.85418992163613,298.2612289865501,297.5503923315555,297.21461702650413,296.4880574112758,297.05136642884463,298.04216072009876,298.10579205909744,297.422872625757,296.77113638073206,297.40328580047935,296.95818158239126,297.8443649201654,297.38280087988824,297.4185881530866,297.47988130990416,297.4942627889104,297.98176327720284,297.30550104146823,296.7295607966371,296.5435346867889,295.872779102996,296.27952747698873,296.85461434861645,297.2551803383976,297.13728751335293,296.32397704105824,295.62947682477534,296.0906650396064,296.90048406878486,296.9479082040489,296.5304888896644,295.7109646392055,294.8063150490634,294.57001566234976,293.9663560851477,294.50806605350226,294.63195269415155,295.31274710129946,295.20455891964957,295.9813543288037,295.40560065675527,295.9124432010576,295.7588460021652,295.59545824630186,295.8294305726886,295.85803109174594,296.18425238039345,296.1576069421135,295.8520323205739,295.577729228884,295.7346376897767,296.17365247244015,296.21193241281435,296.6132878931239,296.36205414962023,295.80337450047955,295.8349150768481,296.2471949644387,296.3117805668153,296.025047828909,296.2742565330118,296.14619429875165,296.9373615188524,295.98140674456954,295.79924492537975,295.4650901183486,295.2644200278446,295.87283406825736,296.17496572155505,295.50427718413994,295.29614479700103,295.98212981410325,295.21849643439054,295.44841841282323,294.9953992306255,295.7447268879041,295.1119442838244,294.62968171713874,294.3383703669533,294.7839936250821,293.84040696918964,293.4708419595845,292.72955294093117,292.6563864941709,292.6663811006583,292.7229825896211,292.8162676813081,292.0248490460217,291.21104109007865,290.40534337377176,291.0022033727728,291.9544338793494,292.7320175669156,293.1890759621747,293.0305218696594,292.04672437813133,291.21525412704796,291.05801240960136,291.47934211511165,291.34025696106255,291.462860239204,290.5775480521843,289.69228048296645,289.27338224323466,288.813903179951,288.17938034329563,287.65865343622863,288.2070772717707,288.699204003904,289.2485658987425,288.6940024252981,288.0303723397665,288.9305969919078,289.85635389294475,290.2760360073298,290.25260056648403,290.14564456697553,290.39459792757407,291.38076098077,290.66717124311253,291.2579188486561,290.752630347386,290.48228589305654,290.5267282128334,290.25965142203495,290.16059999680147,290.757033622358,290.75669249892235,291.5404384797439,291.8200337383896,292.0078768627718,292.7363994270563,292.9961303919554,292.60994547698647,293.31086160521954,292.8440183396451,292.95337024051696,292.60998782142997,292.2764402641915,291.9556768387556,292.7441856409423,292.96530888648704,293.75348926335573,293.8267910811119,294.59335338370875,295.0956382439472,294.25897887768224,293.4649617043324,294.3501322083175,293.7115840986371,293.34553154557943,292.96509207831696,293.45753656933084,293.9503083517775,294.4273869250901,294.4891341663897,295.2596275890246,294.6291936794296,295.25476883910596,295.9309724303894,295.9137188824825,296.3240861957893,296.88296518381685,297.2931729303673,297.79154141806066,297.9053626479581,297.89065130613744,297.2383383642882,297.7157528330572,298.30847518797964,297.7643892560154,297.33650740701705,297.2022646088153,296.9648717995733,297.7908567385748,297.5911429733969,297.2074092649855,297.4732899204828,298.44019207311794,299.30582659039646,299.7557004461996,299.538102271501,300.2354384115897,299.3539294106886,298.77331939386204,298.0091153215617,297.68349348334596,297.20139743294567,296.283031062223,297.1274166130461,297.41772158816457,297.43957777367905,296.4669071743265,296.8182240673341,296.9645955329761,296.347334174905,297.04306964436546,297.4082808098756,296.47672947729006,297.14278254657984,297.7889660517685,297.7525465483777,297.7120467820205,298.2067301971838,298.63870720611885,299.5056044794619,299.35078821145,298.46485091745853,298.27035633381456,299.19713624799624,298.61466804426163,298.2119801491499,297.79372145142406,298.3674291530624,298.75704972585663,299.27177376905456,299.8802693951875,299.6367445131764,300.26740517653525,300.17459104722366,300.4705265779048,299.90559119777754,299.80733070801944,300.75785599881783,300.3070711167529,300.09673173725605,300.97261095186695,301.4413059479557,300.6154998932034,300.82466205442324,300.3910103403032,300.50734330061823,300.88281053258106,301.68713754275814,301.0207076566294,301.45162773132324,301.86808289866894,301.34665246354416,302.2077437583357,301.4305452806875,301.4473957917653,302.2476405785419,301.72951997444034,301.2593465195969,302.0854081804864,301.2940998687409,301.1283544912003,300.30437486898154,300.13798696454614,300.7666899128817,301.36020882055163,302.274600058794,301.78487244201824,301.00272634672,300.0662014535628,299.0850288546644,299.57209389284253,299.3221768536605,298.8386867358349,299.2116694590077,299.0076359733939,298.02604047907516,298.686316662468,299.4858988416381,298.5185590358451,297.6352075347677,296.9095425759442,296.084110497497,296.11382978223264,296.8631555456668,296.52014136500657,296.2035025721416,295.5652655204758,295.0681932531297,295.4505770751275,296.3087469190359,296.12263752287254,295.39657880412415,295.95693409536034,296.88415723480284,296.9818706503138,297.1243709116243,296.30334846442565,295.9300603517331,296.3834112705663,297.17090913280845,296.2095397906378,296.3793515153229,296.68767612660304,296.9010703340173,297.64582109544426,297.4671250237152,298.220050082542,298.02188502345234,298.2601315653883,299.2417106423527,299.57694119401276,298.85606009094045,298.9162221411243,299.48038002010435,300.13243821356446,299.2917927405797,298.957036992535,298.58900033915415,298.52562627615407,298.82628423767164,298.0961311850697,298.64057109411806,298.18647727929056,299.0574539434165,299.39802602725103,298.45470438851044,298.7072705598548,299.50321890367195,299.2376619311981,299.8188696168363,299.3306582327932,299.72740248963237,299.4483415209688,298.76822710735723,298.7296099560335,298.2896769689396,298.1736723589711,298.9631993183866,299.63214947329834,299.3206474245526,299.2132718767971,299.7698268229142,300.4210408544168,300.37394131347537,300.94725274760276,301.83006076002494,302.69381241779774,302.4939703894779,303.32938525034115,303.7167060179636,303.6328526614234,302.9820013670251,303.35369317559525,302.99835983105004,303.66953215701506,304.36522315023467,303.81286940397695,302.92648482043296,303.055473849643,303.6526139592752,303.4970532441512,303.3512868010439,302.4591589011252,302.5548089342192,302.0595385446213,301.8086929419078,302.4849334321916,303.16097488999367,302.9749818411656,302.70703939301893,302.9370599440299,302.06479181116447,301.9232844854705,301.632524819579,301.19696066807956,301.60643434058875,301.2884121229872,300.4681310504675,300.1274879598059,300.85800666967407,300.1735340184532,300.63796235620975,300.2359062200412,300.5697881183587,300.9367452659644,300.1350221503526,300.2032248903997,300.28200606722385,300.8997005834244,300.46685941983014,301.4429866336286,301.6455258401111,301.4009119174443,300.46538552455604,300.50309737958014,299.73608038015664,298.79733089217916,298.20122721558437,297.3850731435232,297.74864052515477,296.87629570486024,296.0678810905665,296.5140385371633,296.5718285292387,296.14723822986707,297.06628179503605,297.9503888874315,298.24786499142647,297.7117082173936,298.1021639876999,297.1909562922083,298.0465827113949,297.4298577657901,297.6334290043451,298.30663785524666,298.90393865667284,299.4879749636166,298.4978374992497,298.36729198880494,297.64022192545235,298.22361038438976,298.4045772831887,297.6021897024475,297.4763980670832,297.8459998690523,298.0171775869094,297.5682218633592,297.7320789732039,297.11220939597115,297.09483995614573,296.39229786535725,295.5734778000042,295.4370643859729,295.2648997027427,294.3833950343542,294.3099938291125,293.35071543604136,293.3383759013377,293.35032187448815,292.88862171955407,292.7698486931622,291.8742222539149,291.49010352091864,292.18093905597925,291.9085593796335,291.2096317233518,291.4168543401174,291.20587353408337,290.3165439735167,291.1999934120104,290.2132267714478,290.5345114641823,290.9178446177393,290.95193146308884,289.99861079780385,289.06019122945145,289.88044764846563,289.3080926523544,289.00111995637417,289.9811247396283,290.3772228625603,290.3066908721812,291.18462934717536,291.81923377048224,291.2949969987385,291.45441369945183,290.7277295989916,291.1641393871978,291.34887853916734,290.5869406061247,291.45180127071217,291.0934725506231,291.7693107458763,290.8440388017334,290.11590017564595,290.6698435107246,290.5313817099668,289.59061605250463,289.4869524608366,289.34824794204906,289.57447758316994,289.12222040770575,288.32702242722735,287.63392626401037,288.13476178376004,287.29741472378373,287.28382696025074,287.17154388781637,287.3234708667733,287.81661452539265,288.49850274343044,287.93535834364593,287.6939556193538,287.1564308712259,287.26171480258927,288.0471983794123,288.19968239590526,289.03880759561434,289.87031556433067,289.52831207355484,289.00054056942463,289.4633417269215,289.16276862705126,288.2791366796009,288.1711450214498,287.54070482729,288.1002924442291,287.95659043686464,288.5017598113045,287.74431373691186,286.85702257882804,286.2062990735285,287.0168625181541,286.83564750291407,287.7715741288848,288.32080031652004,288.37504540616646,287.8292386312969,288.3253280976787,288.6621657120995,288.49440044537187,287.5658687995747,288.2421390209347,288.56441243039444,288.6180486162193,288.50369477365166,288.411176905036,289.15084829274565,290.11301862169057,290.57866735523567,289.91901630489156,290.0089351586066,289.53352363593876,288.7802464668639,288.68447629828006,289.63315727282315,289.31317243818194,289.01768619706854,289.8900666832924,289.77000674651936,289.35015973541886,289.10201297095045,289.679495297838,289.781122663524,290.3469267748296,290.1857430078089,290.66115765972063,291.5937246186659,291.8858941756189,291.6768599813804,292.0537809347734,291.57306585321203,291.7365226158872,290.9070385522209,290.5707974447869,290.4201481398195,290.4294028938748,290.4976202044636,291.1757755749859,291.6772215566598,292.63307587150484,293.3854164360091,294.11535151163116,294.90990009345114,294.2090234658681,294.0341031928547,294.4846169836819,294.56890556169674,295.29145727911964,295.2643137574196,295.71634205197915,295.0995129230432,294.53437586827204,294.93685175618157,295.1674746167846,294.68736057914793,294.3887566826306,294.34238326875493,294.8917312989943,295.68913186574355,295.63863698160276,296.46298687020317,296.0709287612699,296.8169086086564,296.9184416164644,297.06700470484793,297.39251646678895,298.2842966578901,298.50708562880754,298.090143378824,298.0680366428569,298.4280541110784,298.92001057369635,299.75339106749743,299.40194199373946,299.3340536360629,300.2397045381367,300.29686268465593,300.80564070120454,300.55913163814694,301.334685951937,302.2986597046256,303.0821159845218,302.59858420304954,301.7157640294172,300.8866236372851,301.79063123324886,301.9160785996355,301.02206817036495,300.845990982838,301.6862553199753,301.032655775547,301.7138211107813,302.64015526650473,301.7577068232931,302.37881846819073,301.60204126965255,301.7697854009457,301.602989051491,301.0264264238067,300.2323823706247,300.5768702086061,299.69880748493597,299.9076504493132,300.4379388783127,299.6633541500196,300.39108705334365,301.22399838408455,300.44880158873275,299.87437733868137,299.744891569484,299.5776510271244,299.90919069433585,299.9939522505738,299.1413337565027,299.39752812171355,299.2549293558113,298.8416553051211,298.65710041392595,299.4068370992318,299.9200986074284,300.09178618714213,300.893069954589,301.4708174718544,300.55139534920454,301.12184171006083,300.58401351841167,300.44376693852246,300.8619875521399,300.88447645679116,301.7674358235672,302.71271329466254,302.15717589342967,302.56158213084564,302.02297973120585,301.07054977864027,301.3396951397881,301.42599139129743,300.70660992432386,301.5476305466145,301.70067365001887,302.0001844051294,301.97988920938224,301.11702457023785,300.35134413000196,299.8146625543013,298.85994582623243,299.29824844468385,299.6315560750663,300.2632821998559,299.761121742893,300.4433196298778,299.56455998076126,300.1306409230456,299.43754946580157,298.6468203268014,298.96566679514945,299.7035686708987,299.5375845413655,299.1253421851434,298.5836619841866,297.8857672875747,298.3629915495403,299.35227347165346,298.7203873801045,299.1665974399075,299.8098841519095,299.4903198676184,300.3891467768699,299.719823599793,300.2752633881755,299.6147437617183,299.5464210999198,299.19605822628364,299.38508946681395,299.8576770136133,300.8569102184847,301.84341352339834,302.7960512745194,303.48023354960606,304.13732529850677,304.1454523317516,303.5445940736681,303.0067221899517,303.8386180452071,304.49122130451724,305.1852587359026,306.0472450130619,305.8285328242928,305.5131086795591,305.05651372112334,306.04259245749563,306.86320928903297,305.94937514932826,306.09437700454146,305.7480166661553,304.757277560886,303.7655004141852,303.3193212891929,304.0008040936664,303.700234062504,304.07339123403654,304.812744602561,305.804951175116,306.0521488334052,305.86242608493194,306.55266139423475,307.0727441762574,306.5485161677934,307.19833370437846,307.70054928958416,307.6883184891194,307.49819896463305,306.5549886743538,307.40813711704686,307.4201311771758,307.10334612149745,307.4175053150393,308.31924756383523,308.847620010376,308.79228438297287,308.7371575040743,309.5852106544189,310.27463509188965,310.8673750949092,311.31613397877663,312.1278486447409,311.2347553288564,311.5555025213398,310.7423823415302,311.5901423962787,312.2364787044935,313.1249199183658,313.81231734668836,312.9217944731936,313.8951769839041,313.41336713312194,313.35206972807646,312.7919925581664,312.986643510405,313.2852301332168,313.12442785315216,312.6173907201737,312.12495774868876,313.0936878239736,313.75266449386254,313.1526489094831,313.7680382048711,314.5225782250054,313.73376507218927,313.7636034539901,313.53415599744767,312.7022829288617,313.22910554520786,312.27244831668213,311.45368285058066,310.9061131342314,310.8072758805938,311.1650644466281,310.9522238164209,311.90810117218643,311.3648183797486,311.88195995101705,311.36093170614913,310.68286962714046,310.81879385514185,310.2635359223932,311.249634613283,311.9559292574413,311.6069246302359,311.7131887744181,312.41811921447515,312.1792512303218,312.4053469253704,312.61336467508227,312.54775689309463,312.02026756620035,312.96578196575865,312.22274275077507,311.5470191943459,312.0077088489197,311.8809893159196,311.2810126435943,310.3001032648608,310.55293993558735,310.970579628367,310.60995233478025,311.21154401125386,310.61421123333275,311.18877949751914,311.81347801350057,312.78095747344196,311.96702666254714,311.16616785991937,310.1985067767091,310.0251014502719,310.40359149407595,310.0589842265472,309.6210202332586,309.40383859025314,309.3833253844641,310.1761524020694,310.62624209187925,311.34304373525083,311.20630268985406,310.58344607800245,310.61981868278235,310.84016827167943,310.2769878846593,310.0903251920827,309.6155372848734,309.1944290981628,308.9875664138235,309.57316051609814,310.29794931411743,310.71470439760014,311.5595827959478,311.7017953740433,311.8784109642729,311.43067303020507,310.8659156402573,311.52545594098046,312.4228908447549,312.91776184085757,312.20950851077214,311.5758751556277,310.91988822165877,311.05272932583466,310.93256439780816,311.19768808223307,311.36363097000867,310.41954016312957,311.00226908084005,310.50688219070435,311.0795380831696,311.7138552069664,312.11039165686816,312.991968750488,313.9519298369996,314.8967976090498,315.70144917303696,315.27598988777027,315.0831762799062,315.5138280452229,314.8424056279473,315.05276418477297,314.1944211842492,313.32992251683027,312.36578030558303,312.6161581161432,312.43520796857774,313.29476597113535,314.0221305573359,314.6397107183002,314.9229505681433,314.9957153131254,314.90611688932404,314.0110204955563,314.63115718681365,313.8495709421113,313.114657538943,312.12119165156037,311.1872921246104,310.35977216018364,309.96557909157127,310.0645546000451,309.595080901403,309.43085887050256,310.1188152632676,310.36181927332655,309.81353409262374,309.02223965898156,308.18851768644527,308.47878570249304,308.75330770388246,308.5873661111109,308.98452563537285,308.1692010439001,308.0068794582039,307.21808684105054,307.1876002033241,308.1159147382714,308.6833838354796,309.0041673905216,309.6784937493503,310.55274980235845,311.402328139171,311.1737817940302,311.82347607659176,311.1831233492121,311.1489069024101,311.9406193164177,312.0073331533931,311.78297451883554,310.85235709743574,310.5880675534718,309.72214631317183,309.5593952066265,310.396929227747,311.08518037432805,311.3059718408622,310.965564428363,309.97473390214145,309.7902023438364,310.0746677829884,310.72553783049807,310.43079148139805,310.0781638016924,310.8477433449589,311.79726021084934,312.78444446623325,312.44921328127384,311.8142161592841,312.03584226453677,312.9530892013572,312.09296389948577,311.4873700737953,311.6174064613879,312.4962920616381,312.8790644989349,313.6187064400874,314.034727148246,313.87717306800187,314.18674464244395,313.85443427506834,313.896273619961,314.8676201989874,313.91052989289165,314.70738326990977,315.663707439322,315.44403375219554,314.4584639277309,314.48731217253953,314.1049504778348,314.4689678954892,314.2887597796507,314.1384743312374,314.1034003519453,314.41176911629736,314.7978277117945,315.5980639513582,315.50122024305165,314.5053929784335,313.6264850557782,312.70359279355034,311.8444702811539,311.1937988367863,311.18126344913617,311.3275929382071,311.69375293981284,311.14791658101603,311.69696453399956,312.61463301209733,312.6539362547919,312.9250429640524,312.05808367952704,311.3915902161971,311.45345238922164,311.7279714005999,310.8496765294112,311.6320765335113,311.58032815204933,311.57126625534147,310.81121431896463,311.73292469233274,312.34714793087915,312.45875914907083,311.46730984700844,311.5845363084227,311.8693922730163,311.3492752597667,311.1576669239439,310.472721576225,309.7118551163003,308.76166919386014,307.81633956264704,308.56212323205546,309.10827025864273,308.53138096258044,309.4677759427577,308.9579318803735,309.19673835346475,309.99743847129866,309.0437768455595,309.29896242078394,308.72055068518966,309.1178508498706,308.30958661530167,307.5196707090363,307.7216151836328,307.8260529814288,308.0586398537271,307.43071848573163,308.1697675585747,308.4348792685196,309.32540143700317,309.3684651488438,309.1308645159006,310.0082671842538,309.17361510312185,309.000507554505,309.941597614903,309.02229851623997,309.9635494304821,310.38161847228184,309.78104255441576,310.0518722003326,310.0148383397609,309.3915515379049,310.20171691756696,310.45694063743576,311.21680925088003,311.7633018642664,312.6717747100629,312.6472779554315,313.3065586062148,312.81080983160064,313.47201306791976,313.97188251372427,314.7001318805851,314.3679428463802,313.9647285542451,313.64415015326813,314.27214914839715,315.05565449176356,314.70497618382797,314.6747865397483,314.4230119599961,314.6766453431919,315.24310324853286,315.30758849484846,315.5032326593064,315.5866222688928,315.7187995505519,315.20889902161434,315.5733655500226,316.3423616713844,315.65974632883444,315.5679449005984,315.6647256859578,314.91711832676083,315.29882096266374,315.7404946614988,314.99980368232355,314.27908496838063,314.8869738923386,314.42220869427547,314.07248508231714,314.47734491713345,314.11957669071853,313.554925319273,314.0107304463163,313.82005032431334,314.48440850153565,313.9900629869662,314.85014534322545,315.6154671558179,316.51919269096106,317.22957815462723,318.0988034219481,317.2547512743622,316.44709007348865,317.16136659123003,316.3433285620995,316.3316311240196,315.5249293851666,314.9166299072094,315.65264345612377,315.611757398583,315.51955801295117,316.29260582569987,316.62304534437135,317.34071511309594,318.3065205877647,318.15529175288975,318.8027243614197,319.29188676923513,319.14873568015173,320.001850980334,320.4372461969033,319.7377431532368,320.39077958650887,319.7677907370962,319.80447302525863,320.5388730294071,320.46384604880586,321.2105220807716,321.2718727905303,321.08108526514843,321.52736319135875,320.87299719266593,320.8534425459802,320.71342807030305,320.83610771084204,320.62045392021537,320.82689943071455,321.51149378111586,320.7678762958385,320.8450123271905,320.91490242723376,321.12338269595057,321.2315543368459,320.4656854956411,321.27380021940917,320.58536750264466,319.9149861102924,319.33714578533545,319.2282706038095,319.74221794866025,320.3890068465844,320.2535185315646,320.9204606660642,320.50458497880027,321.3114959364757,321.3666234067641,320.9066141275689,321.0851314845495,320.9204665082507,321.190837000031,320.80294421780854,320.61762612778693,319.94295658776537,319.068790987134,320.00369957322255,319.3623102460988,320.04365851031616,319.0616861633025,319.67177190771326,319.73347051627934,319.1709654578008,318.38204678473994,317.7779192314483,317.8383480501361,318.81233733845875,319.7396564623341,320.5176291856915,321.1712277182378,320.32285875454545,319.5148802222684,319.1211192687042,319.8958487599157,320.1868945900351,320.52726402739063,320.3443885403685,321.101374800317,321.49192347889766,320.61978863272816,321.022358358372,322.0180036695674,322.34917741734535,322.30466900439933,322.9752568914555,323.29060535132885,323.78041656082496,322.8563615558669,322.42654286744073,323.03987794183195,322.8542436757125,323.2608804171905,322.97123744431883,322.3354464834556,322.7535950425081,322.6820496232249,323.4095209427178,322.8681653975509,323.78591733193025,322.80495206080377,322.9686674471013,322.4848937760107,321.54725199285895,321.0211134990677,321.8850293797441,321.8091237600893,321.88624125067145,322.4792078882456,323.3597474745475,322.76907161902636,322.6187266828492,322.86489518499,322.72836199821904,322.700386476703,322.19499791646376,321.56499035283923,321.3024473823607,321.59808243857697,320.7268742262386,320.3023688797839,319.47166843526065,319.0628959671594,318.44607524899766,318.03424703422934,318.9720098488033,318.9780872585252,319.6950340764597,319.5151224914007,320.22803302528337,321.0113986223005,320.04349058214575,319.08796878159046,318.85846231039613,319.6538063492626,320.2003709473647,320.43373635131866,320.8007246507332,320.7579987067729,320.2222322621383,320.28568079834804,319.31474777823314,319.52238552831113,319.2244809800759,318.36085802223533,318.36467946507037,318.08572456566617,317.22989688115194,316.5691397804767,315.85152854630724,315.4109825482592,316.17523074010387,316.15118932398036,315.9373428099789,315.1410311497748,314.19061292288825,313.2769250809215,313.7479802398011,313.6579188145697,314.392142359633,313.91962684411556,313.31153699429706,314.1822514384985,313.9379737027921,313.9331048107706,312.96580263692886,312.7098013982177,312.5071258805692,313.47237230371684,313.37370312260464,312.9955753120594,313.5088918195106,312.92411181284115,313.02715868502855,312.53003688622266,312.09983266564086,313.04863284295425,313.10905381385237,312.8619433087297,312.6945152836852,312.68889640364796,313.5030981162563,313.59192007640377,312.89948422368616,312.8345649135299,313.15374411828816,313.2742822468281,314.19413278764114,314.58800476044416,313.978249498643,313.30333709158003,313.14626566693187,312.67941786907613,312.96990317013115,312.3208906133659,312.42956700362265,312.32524612313136,311.5091528906487,310.7040223632939,311.0268280170858,311.45388223044574,311.7652777186595,312.0955182267353,312.78218701994047,312.8437991384417,313.5264536519535,313.27034748578444,313.80639866320416,313.37361149163917,314.343873269856,314.50548514025286,314.7474420941435,315.1128319427371,314.430383302737,313.9088368122466,313.72992462292314,314.20699664670974,313.54854676593095,313.51830087788403,313.95632530376315,313.3663606555201,312.63039438892156,312.5132468775846,313.45471884543076,314.36160261183977,313.87570664891973,314.4812145642936,315.3215965325944,314.39380816183984,314.87012674985453,315.5037613757886,315.1114269224927,314.69832149893045,314.386219877284,314.5575004648417,314.0818509235978,314.7643983112648,313.8478129231371,313.9865618702024,313.18322280375287,312.969570602756,313.3565834616311,313.4151974217966,313.66331443423405,314.6155308545567,314.40795247722417,313.6427517286502,313.7417116058059,313.13640347635373,313.9808805962093,314.9036183571443,315.2934307521209,315.6605805349536,316.33746370347217,317.1117470790632,316.49449753342196,317.3706558961421,317.61601113853976,318.326045806054,317.5969666512683,317.3372916202061,317.5391952516511,317.0980267524719,316.9942893795669,316.3323633801192,317.0707278707996,317.2049998547882,317.1514394246042,317.61816035583615,317.3437069263309,317.0061474251561,316.51919128512964,317.01072988891974,316.1816173167899,316.18497263034806,315.2110444116406,315.10662840586156,315.5990188191645,315.9015014884062,315.23134296853095,315.9979041470215,316.93986291391775,317.55763681419194,317.929596924223,318.42786738369614,317.7742100311443,318.6136695393361,319.5238940487616,319.75735911307856,320.6846773228608,321.277980979532,320.7347631161101,320.1827369136736,319.91756226029247,319.2931223292835,319.9898063163273,320.188168767374,319.9570025517605,320.08556494442746,320.19870959827676,319.8113227128051,319.1220560730435,319.2905503734946,318.35355394519866,318.4214950092137,318.6844158680178,318.5687554311007,317.7041078754701,317.50044867256656,318.1019419315271,317.641294289846,318.27008421253413,317.9850931032561,318.1005184035748,318.9981951392256,319.64317640755326,320.34153341455385,321.28603373561054,321.9316233545542,321.77728663152084,322.3591373213567,322.2338247545995,322.50093542970717,322.9175323327072,323.363562037237,322.3814562014304,321.58385372394696,322.3410307955928,323.2697016047314,323.2197757861577,323.12925923243165,324.0160673139617,324.5791412270628,325.50326789868996,325.2376548750326,325.3614695640281,325.0866446988657,324.20227739866823,323.50217597093433,324.1471538427286,325.00511165196076,324.41859819041565,324.74601062806323,323.84681115020066,324.7117529027164,324.8919015536085,325.1247927164659,325.3442178191617,326.1782326530665,325.9062539418228,326.4034060961567,326.0503808199428,326.80815915204585,326.79316429933533,326.52320824796334,325.9749541277997,325.96145363803953,325.90505361091346,325.7816452998668,325.15245742863044,324.3841456659138,324.5630114926025,324.50486895255744,324.367753487546,324.51417319476604,324.4771884717047,323.4810924567282,323.88638373091817,324.5250311009586,324.1819242150523,324.0794580853544,325.0776335699484,325.0749299977906,325.4008512138389,325.99826614419,326.87805622955784,326.5069625820033,325.9029603791423,325.72776140552014,325.96273346664384,326.4411694477312,327.1805441323668,327.2405834705569,327.7015186501667,326.8959593186155,326.19501782860607,326.61396566592157,326.0605376334861,325.4231606302783,326.4027061103843,326.01681058946997,326.76915500778705,326.14725891314447,325.55999103281647,325.03902752837166,324.21128429379314,324.0664508403279,324.5517507796176,325.29348845174536,325.38733416376635,324.76172406971455,324.2338038352318,324.67261267406866,325.2623018217273,325.56308323238045,324.86090874578804,325.1498527508229,325.8001019330695,326.1783409216441,325.496742461808,324.83821962447837,325.58486005151644,324.7814958207309,325.46991821192205,326.4649321422912,327.09954794310033,326.24321594601497,326.1513277105987,325.9752739658579,326.56421271152794,327.0780899929814,326.8505230806768,327.264258434996,327.714793367777,328.31890029925853,328.7107576802373,328.94592889305204,328.6137869148515,329.23517617722973,328.4527560789138,328.5283916820772,329.052550456021,328.77812987100333,328.19786965008825,327.7360000810586,328.64924503071234,328.5736314258538,328.93514168728143,328.59247233113274,328.2045199489221,328.0816114381887,328.2586290836334,328.6196266785264,329.60698233451694,329.20019049337134,328.3286778386682,327.8189560105093,326.9957002759911,326.67053173994645,327.1772457207553,327.1776649863459,326.5160952061415,325.76103039179,324.89922854537144,323.9817145955749,323.5415473729372,324.33514264877886,324.170910267625,323.99142622295767,324.98174877045676,325.62952877162024,324.99544653389603,324.866983005777,324.4288547448814,324.9573084805161,324.3157628085464,324.4340323093347,325.17018063925207,324.67441150033846,324.8433232307434,325.6419561658986,326.5685071190819,326.32606160407886,326.9051938592456,326.07484416197985,326.8778324765153,327.739130678121,327.24682308733463,326.84675064263865,327.45432384032756,327.51181080704555,327.92714382195845,328.06857484579086,327.321159936022,327.6816208981909,327.3810595534742,327.78416503220797,328.07930200360715,327.4418413275853,327.23823691066355,327.9106120839715,328.1116382898763,327.835919035133,327.452468149364,327.3601959310472,326.36410094378516,327.1966647640802,326.83209234056994,326.16974554024637,326.8440350680612,327.0090817590244,326.7161371912807,325.74241001484916,325.3396158684045,324.73593378905207,324.0003874497488,324.17703378899023,324.64791279286146,324.0289382748306,324.0372737189755,324.83853729395196,325.7255087313242,325.5025815954432,325.3061330500059,325.6823192220181,326.6026054783724,326.2802868774161,326.3493466996588,326.9258844386786,326.18536084285006,325.97786023141816,326.54060161905363,327.422600756865,327.3603531694971,328.3225353695452,328.91520039830357,328.18255226453766,328.3127677422017,328.54620167566463,327.8973106550984,328.2228898978792,327.7031069570221,327.19965051533654,327.3541523218155,326.39511538669467,327.3118022796698,326.84343666723,327.076570820529,326.98870288580656,326.8527888096869,326.3826260068454,327.3478533839807,328.28079241188243,329.0883860425092,329.64325329707935,330.08833061670884,330.28165420982987,330.73237807070836,330.8953760927543,331.04323626775295,330.5392910069786,331.0564475194551,330.6611281600781,330.1732476283796,329.88274217769504,330.1511595402844,330.4185274550691,329.5757317938842,328.74338366277516,329.0416262988001,328.85935315908864,329.1265281550586,328.63220792403445,327.6945291371085,327.04947917116806,326.20543499849737,326.2448754427023,325.7396273845807,324.81552524724975,324.5261017791927,323.7525525051169,324.42928545037284,323.97701777890325,324.12397766672075,324.52699721977115,324.1994273001328,323.9771548421122,323.6474060942419,323.7919300305657,323.4315394992009,322.65720609528944,322.82986172055826,323.37268925923854,322.92687390046194,322.4919367050752,322.01277303276584,322.06481635943055,321.7785844425671,321.0514880339615,320.32898133434355,319.376406847965,318.99844793230295,319.6616365923546,318.8894916549325,319.56078403815627,319.98037368338555,319.5305279418826,319.9338388214819,319.53971229167655,319.79905475722626,319.8764539603144,320.0663673421368,319.1940138549544,318.37983999587595,317.80999302724376,317.96131919138134,317.8669395740144,316.8959505520761,316.33273183042184,316.19274418847635,316.1789132761769,315.2604796011001,315.8459536386654,314.8712182128802,315.28235727595165,315.128602291923,314.26199124380946,314.4193034428172,313.47799465758726,312.80382329784334,312.0746022355743,313.0593473901972,313.43455771310255,313.5549652404152,313.38636457314715,313.6021025776863,314.50199570925906,314.09924210747704,314.57032155804336,314.66623686347157,315.08777702832595,314.1340625677258,315.01952442293987,315.2467980044894,314.7934280433692,315.4448528373614,314.4704392985441,314.1746686473489,314.93465461442247,315.54486599890515,315.57710120873526,315.69722152361646,316.3658409048803,315.69165415968746,315.3058412922546,315.79262170149013,315.6734794927761,316.38274242402986,316.4966437066905,315.6142290197313,316.23177328146994,315.394033650402,314.8989852964878,314.1965163401328,314.8127165483311,315.59100888250396,315.42954209120944,315.1599791753106,315.8519719638862,315.78104639053345,316.7741361632943,316.2424908033572,316.5539661790244,316.83964068768546,316.5130851259455,316.78791361209005,316.3577519967221,315.4034844292328,315.2835104628466,314.9288541274145,313.94504417898133,314.1503102472052,314.09488139720634,314.72504538763314,315.1962137259543,314.5089049790986,313.80065623065457,313.54575334955007,312.5490392940119,311.8205868564546,311.0052471687086,310.43962033465505,311.36111255176365,310.52904162788764,310.32081413362175,310.28368659317493,309.51834930619225,309.4569878685288,309.3519545663148,309.4619733123109,309.2363665471785,310.08906468516216,309.6855560168624,309.51519852504134,309.11992721026763,309.551564716734,309.7605414474383,308.9559735893272,309.6647858521901,310.0056080655195,309.75485324766487,309.7068070988171,309.8589118393138,310.49825161276385,310.47918179025874,309.90753496438265,310.8994672168046,311.3831420959905,311.77300747903064,311.87982996739447,312.4854945312254,312.3976677940227,313.3166314936243,312.4143818113953,312.5053782281466,313.2172101959586,313.150151304435,312.18774363584816,311.2467693146318,311.80174444336444,312.26380001194775,311.83325963281095,312.69826463377103,313.3493316248059,313.14011430507526,313.24531289888546,313.8679247214459,314.0787433651276,313.3869423586875,313.4741395707242,314.00779567379504,313.03256920026615,313.80025985557586,314.7430728506297,314.3770449743606,314.9032973507419,313.9654516479932,314.82550479704514,315.47547524701804,314.9491785587743,315.63227845495567,316.3488583145663,315.38301994558424,315.8747462630272,315.0863544335589,314.3951318413019,315.17420948157087,314.4756733495742,314.3117037289776,315.08374690590426,316.0803889739327,315.16350919008255,315.5647080624476,315.8951499806717,316.4801574042067,315.59370379988104,315.9919751258567,316.51598612684757,316.30320050008595,316.41212371131405,315.56106166820973,315.66077955812216,314.98283826885745,314.8790912576951,314.7845667847432,314.2619085367769,314.9549352377653,314.05981093226,314.98461110005155,315.4436842687428,315.12021055445075,315.59020080557093,316.1789892213419,315.40484077017754,315.61083514709026,315.12948953034356,314.74018118111417,314.1248157694936,313.99038170604035,313.0852223765105,313.98039177805185,314.6200738870539,315.27878918126225,314.7708883853629,315.1696302574128,314.69483210146427,314.8559545944445,314.69441300909966,313.8177316742949,314.1670234538615,314.55402609938756,313.98078035004437,313.61849148664623,314.4706695461646,313.8802108024247,314.81889319140464,313.89070415170863,313.87422594381496,313.4346598889679,314.10028318176046,314.183476021979,313.6797730885446,314.1146067781374,313.9222895815037,313.1379860015586,312.6830714135431,311.8937341677956,311.85070889629424,311.26270224899054,310.27722688624635,311.0474229976535,310.63896115962416,310.13845610432327,310.66313894698396,310.39557122346014,310.0182188008912,310.4379557003267,310.6140472716652,310.10486516263336,309.42785158753395,308.9186903848313,309.8918483336456,309.36758077843115,308.8485174099915,309.0783916525543,308.2759063146077,307.73626880627126,307.3722661063075,307.03124769590795,306.88720298185945,307.48983840690926,308.2652396056801,309.0664995252155,308.77351044723764,309.5768527863547,310.3760113418102,309.49907250655815,309.2227149447426,309.94976604916155,309.5895426692441,310.3938659420237,310.24709525704384,311.0505541325547,310.79943247511983,311.0689679561183,311.3974764258601,311.1854589106515,310.46556874364614,311.1822928651236,311.8743753731251,312.32196485530585,312.78784614475444,312.47636011382565,312.27754071028903,312.1021925229579,313.0807077479549,312.41374522075057,312.9485708544962,313.0462315646,312.61058577150106,313.2273988830857,313.74225382274017,312.8372528334148,313.53905133297667,312.7733138385229,313.4044984220527,312.95425176853314,313.67292591324076,313.66039205761626,313.05776909925044,312.16223802324384,312.6805357709527,312.0540324333124,311.3975601946004,311.2596515463665,310.50873505091295,311.0397338587791,310.1353213721886,309.9240394984372,310.8164933989756,310.4321534563787,310.4721898199059,310.46794361714274,310.1555736339651,311.0789331495762,311.2964374967851,310.93802142422646,311.3847938552499,311.0753919389099,312.0353170800954,311.7617075801827,311.16170910093933,311.6046489942819,310.76489015156403,309.9069077698514,309.44555099355057,309.2915277015418,309.4179576104507,309.7359331101179,310.02676108200103,310.75973404664546,310.78264629421756,310.3146304623224,310.95149687025696,310.3577112071216,309.9113122788258,310.2055456759408,311.173789890483,312.0859817676246,312.28284362889826,311.476335269399,310.79906948143616,311.29849299183115,311.168363139499,312.1542556886561,312.2808655574918,312.0123930131085,312.48718163883314,313.2857317025773,313.53946863580495,313.98613603413105,314.19739194680005,313.5704034944065,313.216525234282,314.06941074412316,313.1759240026586,312.4856591937132,312.97168946033344,313.9281906038523,313.9869704237208,314.76606554025784,314.21738251671195,314.624073588755,314.73036456061527,315.29224509140477,315.1827873555012,315.7122717355378,315.82821159716696,315.98863535374403,316.01237875409424,315.3672252483666,314.6954412702471,315.6643019365147,316.0081024793908,315.37599202618003,315.4733379208483,314.89823890291154,315.285867548082,314.34211859246716,315.0692680440843,315.85987779917195,315.9979220717214,315.2559731043875,315.3361303792335,316.0635733907111,315.9788237148896,315.88464957568794,315.9172630342655,316.48479721462354,316.02750966884196,316.9203603314236,316.66459610918537,317.1133251157589,317.62581391772255,316.7620425685309,317.61261065956205,316.95220759510994,317.08653372572735,316.9835807415657,316.2001075199805,316.16621857183054,316.4948254809715,316.3544237324968,315.872171017807,315.3555329311639,314.4119113855995,314.3523484892212,313.4503577495925,313.1530728312209,312.64250319078565,311.9658618122339,311.52605325868353,311.8551927935332,312.53807978658006,312.2231138548814,311.5050456151366,310.82049401663244,310.5128140519373,311.220969398506,310.9143590265885,311.8340891376138,311.0270577748306,310.2394721098244,309.9856448294595,309.42930130520836,309.0487863854505,309.9277011589147,309.34702247660607,309.22422072896734,309.1490257130936,310.1378226336092,310.6942129484378,310.85634683584794,311.47081680456176,311.8246020907536,311.58250991394743,311.15492262737826,312.0989754749462,311.61646826472133,312.52525840327144,311.8838835018687,310.96746636368334,311.1858180174604,311.13653988949955,311.39921713713557,310.9603720041923,311.8527148105204,311.6341563202441,311.19049347983673,311.8959249719046,312.4191144704819,311.9289086908102,311.8768386254087,312.0098085156642,312.6877665971406,313.6196451126598,313.39494238747284,314.27298916038126,313.7469573416747,313.0678367577493,313.6684830370359,313.7261823597364,314.0944994944148,313.86452867276967,313.48586952872574,314.32938785711303,313.4366208855063,313.601854884997,314.2802149048075,314.1594527326524,314.1485274294391,315.00776012055576,315.4095695503056,315.81467392481863,316.4140632576309,317.3903092686087,317.26394102023914,316.7887690817006,315.8800811213441,316.72352369781584,316.10503838723525,315.7089501223527,316.6661755051464,317.1410621893592,316.9130034376867,317.28036846453324,316.79219498764724,316.42702591232955,316.17869756836444,316.3518644589931,315.4561285781674,315.16068712295964,314.5991407595575,315.1937258965336,314.6810796945356,314.0639599477872,313.2372110434808,313.2340023224242,313.6569923032075,314.4141513570212,313.60243302723393,312.79000826133415,312.47684770822525,312.06630782363936,312.1380135677755,311.8164367186837,312.2358155124821,311.87233007187024,312.0300640030764,312.7458012588322,312.6413970873691,312.99878752883524,313.49497413961217,312.51460013212636,312.73992506135255,313.48468352109194,313.3133554616943,312.9637175989337,313.19461806165054,313.1432215604,313.65300047630444,313.46456877561286,312.6057848352939,312.52971223555505,312.29274124559015,312.99262584606186,312.74363893363625,313.12803028989583,313.4854585137218,314.05696467496455,314.5900107859634,313.8401349093765,313.8097882014699,314.5997699620202,315.29677485348657,315.9706859039143,316.4661260796711,316.39147465862334,316.652909708675,315.665728201624,315.6476748492569,315.7810142314993,315.2096477993764,314.37443216331303,313.5443301424384,313.03868791554123,313.3655465655029,312.7208322053775,312.0942511628382,311.7108289231546,310.99287338135764,310.8923093229532,310.0558783770539,309.7848560814746,310.3986241975799,310.96417238470167,311.9115870012902,311.4451105557382,311.020856463816,310.81145168375224,310.21543299779296,310.20993861556053,310.28251511836424,309.59915126208216,310.4382990631275,310.81424344005063,311.195891011972,311.91932173771784,312.1860897503793,311.4123803754337,311.3445089724846,311.3412734577432,311.00373752741143,310.23057747771963,310.97083646338433,310.5745917991735,311.3572681550868,310.58680118760094,310.90113702602684,310.3665250488557,310.3771146372892,310.33852598723024,309.6198860760778,310.42207563715056,310.41135443141684,311.0637043956667,311.35900345491245,310.6208365513012,311.3555092951283,312.01691968692467,311.2571306983009,312.1262601884082,312.9112924556248,312.14960681833327,312.5422789035365,311.7658556783572,312.5465920707211,312.7069668113254,311.72423227876425,311.39800786040723,310.7079487685114,311.6824660897255,312.09753880184144,311.3650972498581,311.2027486343868,310.62598437909037,310.74738087132573,310.4050987176597,310.5832870914601,310.7193142795004,311.18679466471076,310.65949994698167,309.72236124798656,310.3001144984737,311.0404252517037,310.73623210797086,310.7375941220671,311.16228946391493,312.03293695813045,312.10146637354046,313.0576719334349,312.7946207784116,312.7068907832727,312.65267578838393,312.18401079950854,311.21939402166754,310.51262782979757,310.102057187818,309.4157975646667,309.83509661024436,310.01524508558214,309.84606451168656,309.1843939963728,309.41681553423405,309.1232634508051,309.2596358307637,309.88802224071696,310.5642416290939,310.8309572832659,311.08830054756254,310.78744608489797,311.1552973277867,310.6410736832768,310.4505691314116,310.96589272329584,311.74974664719775,311.01569258933887,311.39144377876073,312.2691779350862,312.75453640241176,313.412708169315,314.1243762411177,313.50237979972735,313.0998618295416,313.5101028406061,313.58034490048885,313.3839252148755,314.27678824029863,313.44747569411993,314.3263475243002,314.2706843945198,314.07145593268797,314.3443039790727,313.916387333069,314.4020655457862,313.73420140566304,312.7863487205468,311.8040699106641,312.10188198881224,311.7248550327495,311.54951096884906,310.5778458286077,310.69051532493904,311.6557429479435,311.81970009580255,312.64477266324684,311.86341939494014,311.035884803161,311.953318703454,311.41191227082163,310.81175495218486,309.99798726662993,309.6256849206984,309.0831228545867,309.36358059570193,310.2007584911771,310.0921278721653,309.1003751712851,308.30189156066626,307.9794995863922,307.0300953090191,307.9414913216606,308.3481872715056,308.4429840738885,309.40250277426094,308.54266084963456,308.57628361321986,308.08736877376214,308.4961805534549,307.79928643256426,307.5669703022577,307.3173885983415,306.617783959955,306.4943600706756,306.9109448660165,307.3278907155618,307.16497799009085,306.1914457301609,306.0351269617677,306.33456241246313,305.34224194148555,304.5246373829432,305.5135888666846,306.35381300887093,305.68002531165257,304.74603741103783,304.9328919602558,305.67048915009946,305.0544943357818,305.7217994593084,305.9404567927122,305.1352221183479,306.01032204693183,305.38686351059005,305.0248733549379,305.8488988475874,305.8819038630463,306.79222587356344,306.32224216638133,306.69611429004,306.86038101650774,306.47166456794366,306.6063548605889,306.348384892568,306.4891890641302,305.7043229318224,305.6535124462098,305.5104204667732,304.80244996072724,305.2771903835237,305.74910502368584,304.9342513643205,304.53902293462306,304.09994846535847,304.3988586785272,303.5877688988112,303.9853714485653,303.0616496419534,302.8261857237667,303.0397650580853,302.52412378042936,302.801700303331,302.0986980088055,302.6533975652419,303.1661876910366,302.5866515976377,303.5303294546902,303.95992662664503,304.7262050239369,304.7592960977927,303.92953979130834,304.5534306243062,304.1836154987104,305.112992299255,304.20291171967983,304.43148884596303,303.67748762015253,304.16813752707094,303.58730308059603,303.753974721767,303.84527395060286,303.79824728518724,303.15946459863335,303.34235698962584,302.7265110681765,302.33306853007525,302.84165490372106,302.8807550841011,302.0893628685735,301.16734811803326,301.56227706791833,302.1926653254777,301.380857326556,300.805018434301,301.1368117025122,301.1232100655325,300.71760935150087,300.00124959554523,299.622324985452,299.09772134479135,299.8217131285928,299.1918392297812,299.3383253654465,299.76503821928054,300.07848104974255,299.4548603761941,298.94579750997946,297.9487375859171,297.29959320649505,297.2574839540757,297.8480172478594,298.06143921939656,298.539642683696,299.2111982065253,299.7381632453762,299.589062044397,300.51959230098873,299.62775195017457,299.49816258624196,299.96240626694635,299.57361809629947,299.2902537113987,300.16967566730455,300.047147247009,300.10276937205344,300.9576642764732,301.2803535698913,300.7802195074037,301.1953367819078,301.8612374179065,301.00196615746245,301.19885728880763,300.73130764393136,299.89234447898343,299.5172662176192,300.10922587895766,299.7230953448452,300.54831227706745,300.66144349612296,301.23434784123674,300.6608336754143,300.6823296016082,301.4123832699843,300.4381883852184,299.8542785649188,299.98572000395507,300.8536232369952,300.35446176864207,299.3582934499718,300.2048144568689,299.90230740141124,299.9871756322682,299.27399168536067,298.27587685594335,298.70250222086906,297.71754804300144,298.4968030494638,297.9981375243515,297.97938983747736,297.04503005743027,296.3149964348413,297.0160164386034,296.0522305862978,295.86855283845216,295.0182032017037,294.2436997327022,294.1508866283111,293.7542821527459,293.89323449274525,293.1820971914567,292.6983172148466,293.2400240614079,292.55254908883944,293.3342858296819,294.0410613580607,294.09555746708065,295.0259064580314,295.3062210981734,295.85084794508293,295.44653169531375,296.3839028184302,296.46409503230825,296.43210654566064,297.0908510009758,296.9160575186834,296.71786295762286,296.74864996923134,295.95797144109383,296.7692277398892,296.9586773957126,297.4552075462416,297.36230846727267,297.6053575836122,298.14783307537436,297.50899332389235,296.7251546899788,297.26456387666985,297.78497998742387,297.073265071027,297.00788702629507,297.9528474919498,297.3912167083472,297.7859978633933,298.50064612552524,298.2731610899791,298.91389482840896,299.7851844970137,299.7568410295062,298.89741270430386,298.8976017986424,298.33304618205875,298.52066102903336,299.00895016500726,299.7408659150824,300.1261993725784,299.45204608514905,298.969512836542,298.4403510778211,299.017248027958,299.71171337459236,300.48801567498595,299.4993310458958,299.46117911627516,298.7157291849144,299.48275025188923,298.71060020150617,298.80230997130275,299.4360921164043,300.2416030857712,300.7920014313422,300.0751307448372,300.684080268722,301.41378440801054,300.48842866625637,301.14732628967613,300.83431951887906,300.8294385964982,301.0322835869156,300.7099418444559,300.61451638676226,301.5813371418044,301.88936212752014,302.6893856469542,302.6919132824987,302.80044970614836,303.48632471309975,303.80202585924417,304.1837969045155,303.8213804420084,303.95176331559196,304.0895888945088,303.194381674286,303.23184429854155,303.5174339427613,303.9589749565348,303.9165578507818,304.234405758325,303.2812179606408,302.91914378199726,302.6421650010161,302.5721873799339,302.7842803960666,302.14410261437297,303.1070633670315,303.6682667545974,304.42487562354654,303.6347813932225,303.73017541505396,303.84223808860406,304.7797073828988,305.36752746393904,305.0499196751043,305.6568224588409,306.5594457946718,307.1006339038722,306.3255980028771,306.1673156176694,306.22651610476896,305.79501470318064,305.112370074261,305.5183582464233,305.6616864837706,306.58237964566797,307.0947687928565,307.38658150611445,307.2007778757252,307.9782172124833,308.20871053403243,308.58700947323814,308.7849253900349,309.05891787586734,308.4121037735604,307.485667985864,307.1580699952319,306.87930201087147,306.5646598013118,307.3042632280849,307.4028237373568,307.722909104079,308.55827208887786,308.29366863612086,308.5496689681895,309.30082982126623,308.76507420418784,308.13340163230896,307.6946600144729,308.0687852515839,308.1837352621369,307.7721173642203,307.17118255328387,306.2384491497651,305.8689038818702,305.61049707839265,306.3472109907307,307.16021301969886,306.4307830641046,306.30430678091943,305.78542507858947,306.52815996995196,306.01289838086814,305.0759557490237,305.24586371006444,304.5817201733589,304.9788523958996,305.23897165991366,305.496712569613,305.31291588163003,305.6568645136431,305.2241978319362,306.1540209511295,306.4098927662708,306.25858272705227,305.9896834366955,305.38946115924045,305.95185345457867,306.315822431352,306.30244627501816,307.250180718489,307.79444962227717,307.85033778008074,307.08744721719995,306.9282336817123,306.39995455695316,307.0872664283961,307.18122739484534,308.0200793305412,308.50880581280217,309.14398203324527,308.3064576317556,307.89957743231207,307.2949665579945,306.9838863662444,306.73923883540556,306.5709510007873,306.2665495313704,306.7347082225606,307.5884445947595,307.96959936851636,307.01854924531654,307.42063677404076,306.64722841233015,306.0725851384923,305.85247780987993,306.5229495582171,306.61297680297866,305.7643446289003,306.73182147275656,307.280352844391,306.30053284438327,306.64743796363473,307.0155054307543,307.17283732350916,307.7659981129691,308.42235385021195,308.8103974047117,309.1382969315164,309.6661840728484,309.86564322561026,310.6873147287406,310.38196550216526,310.13345984648913,310.7578250565566,311.6722212196328,311.0127372550778,311.68228860385716,311.3620623033494,311.3393370830454,310.80835341336206,311.13725962489843,310.2491075890139,309.9443832328543,310.4027393613942,309.8885658499785,310.1257345159538,310.22470554756,309.88670476712286,310.19463561149314,310.67629275564104,310.57583387661725,310.5420545497909,309.8808256057091,310.67590652639046,309.7261671568267,310.07448102813214,310.6765215252526,311.2674629869871,310.61836796812713,310.45416220929474,310.2231152020395,311.1112762866542,310.21083672950044,310.3546275901608,310.9153256379068,311.3212934532203,310.9080618703738,311.7791356439702,310.8495985660702,310.313391701784,311.0525228767656,311.4847543723881,311.89327879436314,311.3624945082702,310.55382157536224,310.5851519405842,311.54832459799945,312.24472675519064,312.4810299091041,312.8190575065091,312.3599594058469,312.93043470941484,312.3154956721701,312.73650077637285,312.15959314163774,312.66620606789365,312.6810653335415,313.4993007997982,312.92918887687847,313.13581454660743,312.60516994586214,312.42865772591904,311.84870396880433,312.63520184904337,312.8679359839298,312.89108748734,313.6350549017079,312.73152860207483,313.5968790934421,313.34725704137236,313.53332787100226,314.3830196633935,314.54706118488684,315.236294479575,314.83636243315414,314.86479819053784,314.6770103042945,315.26112128887326,314.7961372262798,314.763092729263,314.0621241591871,313.5408395361155,312.7523164311424,313.36731343204156,313.6430779383518,313.3969277474098,313.73415700905025,313.81152201024815,313.4887517434545,314.1013623182662,313.36576377088204,313.4160263170488,313.0044536101632,313.89210982015356,313.3929685507901,313.579552131705,313.955896215979,313.1813274230808,313.5965633383021,314.3015332967043,313.76555378036574,314.6941069783643,315.5456344867125,315.6470869234763,316.2320521795191,317.2293138173409,318.0171903660521,317.2647308711894,317.7456053616479,318.1583622987382,317.750643204432,318.2396316998638,318.13632200611755,318.768052178435,318.9927025930956,319.12043111165985,319.1644808771089,318.8120424486697,319.1653663669713,318.9960962939076,319.2876380016096,318.88860751735047,318.319680724293,318.37998414132744,319.0179013623856,318.12805982585996,317.30809378949925,318.1543486136943,318.6208385922946,318.2877567289397,318.98198567470536,319.7684383871965,319.35251203738153,318.9707792280242,319.6237123175524,319.9414139734581,319.5100501384586,320.4079665536992,320.5163578814827,319.67418879969046,320.5873576840386,321.2547076791525,320.3647314547561,319.7457591253333,320.5361191588454,319.96843653544784,319.68854474881664,319.7071262751706,319.5738951731473,320.53414006577805,321.06186905829236,320.4474169299938,320.2350529041141,320.3623210443184,320.50016046874225,319.77245571883395,318.91214292729273,318.40034536411986,318.6418193751015,317.7523558042012,317.2415318102576,318.11037161014974,317.3621630151756,317.25726941553876,317.3384286738001,316.9599845474586,317.1598864221014,317.6256831455976,317.63789792824537,318.1693546595052,318.4325557886623,318.9173268401064,318.4623933886178,319.1378641007468,318.5132686360739,318.6676094182767,319.4051658306271,319.4090106622316,318.89006113633513,318.6043003858067,319.38755178125575,318.45907136332244,319.4292647074908,319.28462121495977,318.6801043911837,318.1379243126139,317.2689778492786,316.6066267970018,315.82445338601246,315.0095289349556,314.47247781278566,313.728753386531,313.6218190211803,313.7942849728279,314.42212821217254,315.36180206853896,314.46020233025774,315.2543353717774,315.5155222211033,315.8086821222678,315.13271737704054,314.9271124638617,315.60609014332294,314.8316553658806,315.1317490362562,315.96729586971924,316.1817547092214,315.6529583707452,315.02897885488346,314.1933417757973,314.97923941584304,314.9768668357283,315.07158955698833,315.30888528795913,315.4564397968352,315.6202670875937,315.6224849349819,316.08772067027166,315.84531248314306,315.2674966226332,315.1103440988809,315.1677642436698,314.48232837812975,314.33936647325754,315.05152916163206,314.98823027079925,315.80925722932443,316.1241853935644,315.8274438478984,316.41276684449986,315.5140333948657,315.4531581811607,314.9469694220461,315.622719374951,315.03026186442,315.9577022427693,316.6931273667142,317.3089132993482,316.6149202529341,316.4354595639743,316.91608825000003,317.9008292630315,316.99041770910844,317.2278014984913,317.07620013225824,316.4409696441144,316.44622639752924,316.0231008674018,316.8032343396917,316.96347563015297,317.7948004328646,317.64638385595754,318.047879003454,318.04948247922584,318.4117279276252,318.61565406480804,319.0613135462627,318.72675046883523,318.76169249182567,318.48104885360226,319.1603047186509,318.9920432558283,319.62197403935716,319.60724245384336,320.29542938945815,320.28698670770973,319.91858719009906,319.11574140237644,319.9832436405122,319.5869205375202,319.73202898167074,319.12153046485037,319.8742176811211,320.2074988428503,319.64848663983867,319.1391908316873,319.5487543763593,319.8624503589235,318.8992205564864,318.1587613928132,318.76514841010794,318.5156528353691,317.52534197084606,316.92193918209523,317.199441479519,317.12319844029844,318.1012703781016,318.48731725802645,318.8123725145124,319.55163454357535,320.17449529934675,320.0540488837287,320.86158656934276,321.03515969309956,321.636436867062,321.62833646917716,321.6113358507864,321.13190559251234,321.8198173176497,322.18238460225984,322.637606324628,321.84822329087183,322.4052902199328,321.73621476395056,321.5409528343007,322.0950221037492,322.12792875710875,321.97275726962835,322.47734536603093,322.9086788385175,322.3948072930798,322.743719517719,323.0503659583628,322.97814843896776,323.54298643162474,322.59285202715546,322.7238875729963,322.77229249849916,323.3281203615479,324.16196994576603,323.8914136765525,323.5382060413249,322.6069976859726,322.761189987883,323.60112700005993,323.14653082191944,323.16469445219263,324.0162245561369,325.00797378551215,325.8901444324292,324.97343858890235,324.3666415056214,323.78728147549555,322.8703815471381,323.18153781443834,323.4369371798821,322.4669320182875,323.4279572344385,323.27124508516863,323.6277822027914,324.0356480330229,323.0589765268378,322.63864959590137,323.32811465952545,322.94492090586573,322.010527332779,322.45039458107203,322.8114770925604,323.1910796929151,323.35115975979716,323.39752790983766,323.78447496239096,323.4299432840198,322.5136023280211,322.9043781575747,322.2671471745707,322.733917248901,323.6614207322709,324.62385317496955,325.61783182946965,325.1817015418783,324.78183367149904,324.3920331513509,323.4037155723199,323.31663167849183,322.938285747543,322.68778257863596,322.9457473452203,323.05266854399815,322.83073315024376,323.04481351794675,322.67434049397707,322.11530265631154,322.44540879223496,323.3765029478818,323.70601486135274,323.8543290174566,323.1929711229168,322.4846119894646,323.2498457520269,323.8439319366589,323.30171577539295,323.3542056493461,323.1851225309074,322.5012030415237,322.08883885573596,321.5549641777761,321.7955142580904,321.60044515552,322.5206906227395,323.1729180915281,322.2840046924539,322.0970494081266,321.802025673911,321.12365664122626,320.85507004195824,320.992925954517,321.73018108913675,322.191302749794,321.8970744716935,321.5568406675011,321.2504500108771,322.0100502432324,321.7951112878509,322.45846409210935,322.08078431664035,322.93251765705645,322.1421046224423,321.9189435010776,322.33641380490735,321.9058767869137,322.3678810596466,321.90983645105734,321.00142543390393,320.94484092528,321.635631733574,321.96403928659856,321.0593929607421,320.53671550704166,319.9421856976114,320.74590577557683,320.97976886993274,320.9785566208884,320.7202631626278,320.55510508222505,321.5531081533991,321.20436560129747,320.88643366564065,321.353174071759,321.59323871694505,321.73668961413205,321.6124148275703,322.19258633069694,322.34372742054984,321.655470084399,321.62245341809466,320.98987811105326,321.0885148574598,321.2099586757831,321.9591997093521,322.3463127017021,322.81762434728444,322.1875918949954,322.505920318421,322.3303692401387,323.19173451932147,322.9147712099366,323.4242007364519,323.6038867691532,324.023321501445,324.49076153943315,324.9369311365299,325.06031643319875,324.37308473559096,324.01263866527006,323.310414952226,323.7331431536004,323.69680350553244,324.2657465445809,324.26830095099285,325.1690011615865,326.05992414429784,326.95307322591543,326.1751193916425,326.8076814864762,326.45258373208344,325.63848885381594,324.6632309742272,324.21095473784953,325.0641656345688,324.2000242797658,323.71268530981615,323.0198559933342,322.3097515613772,321.73159923311323,322.27217926690355,322.34704427886754,322.4500842001289,321.9056914942339,321.24375079898164,321.14745509577915,321.3900723103434,321.83674110053107,321.7590455003083,321.00683336658403,320.0977762276307,319.38870282284915,319.43667739490047,319.579701570794,318.70077886246145,318.22433781344444,318.9678846360184,318.2250052993186,317.53772950265557,316.71021810825914,316.2569069643505,315.878117472399,315.331691571977,314.78011882305145,315.66312650591135,315.17730371048674,315.6625991817564,315.6439596898854,315.8112143725157,316.51996209751815,317.20060048857704,316.38538889726624,315.4447060795501,315.07526461267844,314.81556954141706,314.3125083888881,313.58127551013604,314.1097538196482,314.30870917486027,315.0961233768612,315.27401710115373,314.8707893146202,315.717619267758,314.9350310610607,314.15498082432896,314.14663200546056,314.72371423756704,314.75680399732664,314.4644292742014,314.7249885769561,315.1945062894374,315.2130255661905,314.43582992302254,313.8949078754522,314.8387185181491,314.9535828260705,315.7998284501955,316.4593531023711,316.9511611633934,316.35595555696636,316.81411390565336,317.1533715450205,317.85855721635744,318.5730263371952,317.57368865190074,318.2026212657802,318.7479238216765,317.80832721013576,318.0244696252048,317.1682308255695,317.5983079755679,317.346805063542,317.8298597703688,317.84904495766386,318.10524592967704,318.456404954195,319.04574123444036,319.4929840071127,319.57408893154934,319.13609034428373,318.3899148562923,319.3845050735399,319.9203938902356,319.100380317308,318.75009354017675,319.4619921972044,320.4414657494053,321.2948543112725,321.6919153975323,321.12863511173055,320.82354926597327,320.75220189476386,319.92453239811584,320.7845385498367,320.6043085134588,320.1318856459111,319.483803070616,319.79566011717543,320.2058972134255,320.0843548863195,319.45601033000275,319.502322435379,319.62228273786604,319.3868600660935,320.35364780714735,320.2134805149399,319.9583878214471,320.03873667353764,319.3586554727517,319.7067341702059,319.58507020771503,319.8402494112961,318.95309872878715,319.81986405467615,319.3693567086011,319.047547633294,319.72597393905744,319.26059605926275,318.73230993328616,319.15602259803563,320.02540322067216,320.4299064758234,321.34202662529424,321.55822930298746,322.1059779296629,321.43944251164794,321.8450539750047,322.83765230420977,323.83394228760153,324.1338665462099,324.64413178665563,325.3731876076199,324.52365333307534,324.7240428836085,325.56274603214115,325.88542270148173,326.01300835842267,326.42368178395554,325.8453671275638,325.2371796220541,325.8981735194102,326.5522515103221,326.65478366194293,326.4376376005821,326.66116654407233,326.4906041077338,326.01363871153444,325.58984749019146,325.40943353716284,324.972191255074,324.8886479162611,325.4979349565692,326.128800581675,326.4286547191441,326.11997600318864,326.12908288277686,326.42407534690574,326.20572098949924,326.6623281734064,326.7795420042239,325.8508862336166,325.46991517720744,325.6094208774157,326.38627572357655,325.9697071556002,326.4759308639914,327.1069811391644,327.38251467235386,327.39353963686153,327.67678766837344,326.88235123222694,326.39953741803765,326.15217287652194,325.60420321905985,325.08896811446175,324.8812570194714,324.3609166848473,323.95040230685845,324.75013841688633,324.1979111866094,323.36965692043304,323.29092484060675,324.2284249207005,324.8602915373631,324.877442126628,325.5315341516398,325.3461008127779,325.5177295329049,325.5043908855878,326.060336377006,325.4723978424445,325.9699335610494,326.8017949727364,326.61156473401934,325.7342832442373,324.73591435234994,323.97172961523756,323.7362195774913,322.829243528191,323.51817556936294,323.45078932354227,323.6282612760551,323.43523292290047,323.90872390801087,324.35587427346036,324.1460477220826,323.9275737046264,323.1529514868744,322.42160579701886,322.13430398795754,322.6624483782798,322.93313472531736,323.459785324987,324.33024278795347,323.9781393404119,324.23904882138595,323.46816800395027,323.8481874722056,323.24316405365244,322.2697714488022,321.5812000823207,322.4373528510332,322.08280342957005,322.1547957966104,321.39476464129984,321.3624641499482,320.5236085844226,320.87129111448303,320.1438763733022,320.51017653383315,320.4616830078885,321.23440466821194,322.2050948063843,322.4878770369105,321.9453972042538,322.5181585047394,323.12045889068395,323.71844714460894,323.02922767866403,322.77991426270455,323.2038528607227,322.6625793403946,323.29376652650535,322.79011011170223,323.1912380908616,322.8060235208832,321.9841829254292,322.94648418575525,322.82248865580186,323.8077665218152,323.83615320781246,323.60308758635074,323.35369303356856,322.71588267059997,322.80948885157704,323.0169899230823,323.94953412469476,323.1861544456333,323.204676266294,322.51250847941265,322.4553108578548,322.74680213676766,322.25397033663467,321.98890810413286,321.4116142671555,321.810293877963,321.4368505841121,321.3839476117864,321.58061558380723,320.69866761472076,321.6090534492396,320.83702965220436,321.7327643376775,322.1962417443283,321.36282479111105,321.7569076521322,322.19779520342126,322.5133718778379,322.1707724481821,321.421643005684,321.24443685868755,320.42482168320566,319.5735265025869,320.46659481246024,320.25673088571057,319.8919573239982,319.3792135468684,319.2317377193831,319.46192634897307,320.40381709858775,320.6092464593239,321.2235335945152,320.871924655512,320.94906536256894,320.7928265845403,320.9178287591785,321.6754730367102,321.66648846911266,321.9516493892297,321.34254777804017,321.65614000707865,321.15016552386805,321.3319469355047,321.6732335938141,322.0646368386224,321.98669467074797,322.36300676316023,321.8402964686975,322.01432961411774,321.10576747823507,321.37876259721816,320.47955117281526,320.71536675142124,319.764683408197,318.77303057024255,318.08553778007627,318.5831249463372,319.3560932930559,319.2476941482164,319.14463108498603,319.9771177750081,319.7185395588167,320.6641554161906,320.75211705453694,320.86167647177354,320.5708645982668,320.99221502942964,320.53510892530903,321.02706011896953,320.7020225073211,320.76398601336405,321.1039426224306,321.5262587456964,320.5384825319052,319.7566316057928,319.45289302337915,319.5283131496981,319.5688305795193,320.2494896389544,319.56641800142825,319.0393113414757,319.9799960316159,320.44057399360463,320.2620905013755,319.63953738845885,320.44941213028505,320.21021878998727,320.29815089097247,320.61623013112694,321.4670105064288,321.92017728229985,321.639301342424,321.3499487256631,320.63446726091206,320.551284361165,319.9293096973561,319.71680547622964,318.76309713581577,319.2437584893778,318.754208330065,319.7081409445964,319.624179280363,318.92194619681686,318.6483252411708,317.9840176771395,318.0222786623053,318.9356971401721,318.60579076083377,319.46357281692326,318.8725284929387,319.11339596658945,319.1868865182623,319.17224048869684,319.40073106298223,318.96962899295613,318.4309073048644,317.4404533132911,318.24907573359087,318.74356227368116,318.205036947038,318.72082898113877,318.36111557483673,318.66587493848056,318.6611003787257,317.72060893895105,316.81157816341147,316.71055247820914,316.5500224218704,316.68773924699053,317.11295596137643,316.1659602257423,315.5903245760128,316.1236241115257,315.92613907018676,316.18827289156616,316.98497365415096,316.7366990740411,317.27672492386773,317.5515793287195,317.20075335074216,317.80312974518165,316.8933740123175,316.1142437411472,315.38187796622515,316.18682038225234,317.01001829467714,317.31303206132725,317.5812685806304,316.8409689767286,316.5915340348147,315.75992923090234,316.2892411821522,315.93651521904394,316.9245095355436,316.32825311413035,315.5166977024637,315.4619697970338,314.75427471473813,315.3162110284902,316.06028994126245,316.8693012809381,316.66070905700326,317.61338136158884,318.5034120841883,319.00831073056906,319.3627148424275,318.4231707970612,317.5648534432985,318.0100280814804,317.11730974074453,317.4374134875834,317.43167534004897,316.9961744323373,316.7370611890219,316.3321170322597,316.6772573245689,317.1431840453297,316.6393614411354,315.71457979269326,315.8375476114452,316.6071013021283,316.4012336698361,316.94987041084096,316.21217007376254,316.7861589966342,317.0091393236071,316.43834452331066,316.8588371104561,317.04140061931685,316.248610613402,315.30843235878274,315.8733078916557,315.9038671646267,315.02236401848495,315.2820445224643,314.932165554259,314.73970169294626,314.7760735373013,314.79369686124846,314.86870849411935,314.889136439655,315.355464681983,315.53883928013965,314.88638450810686,315.4145303941332,315.74619502807036,315.1719929059036,314.28549487516284,314.02578937262297,314.14193699881434,313.5101629504934,313.363416436594,312.9316755095497,312.06537218997255,311.5512491441332,311.8542947359383,311.2866921890527,311.3598786108196,311.57037841621786,311.28501554066315,310.49709283420816,310.1836034832522,309.75979596655816,310.23085604188964,311.0864862226881,311.83625738415867,311.65343840094283,311.4315088358708,310.7777512255125,309.81374743394554,309.59595496207476,309.8978273640387,309.0746870972216,308.45352821052074,308.98089160071686,308.02120998268947,307.9366752235219,308.8824285250157,308.17280735773966,308.0813805665821,308.76901269331574,308.7087876922451,308.0888435812667,308.1485155359842,309.09012167621404,308.8438100614585,308.2124631810002,307.3754852376878,308.3441785783507,308.1941788760014,308.33643794897944,308.218924137298,308.674048374407,307.7221358586103,307.59036392346025,307.0953412121162,307.33766978327185,306.46783910598606,307.45198184717447,308.3275059540756,307.6333587919362,308.1222968590446,307.5265901321545,307.81118054455146,307.3695927239023,306.5565985343419,307.4129551523365,307.3397102789022,307.5320670953952,307.57293051248416,306.64649212919176,306.0109968963079,306.19379743747413,306.090370957274,306.84664383903146,307.04414004134014,306.24095887178555,306.5054760049097,306.1328360098414,305.769922465086,306.3442779080942,306.6441094558686,306.4082503071986,306.5281892567873,306.02517876122147,306.22971186600626,306.88643948128447,307.3769786651246,307.8980005076155,308.5992778092623,307.770894870162,307.7331695118919,308.60323174251243,309.4568614657037,310.098982041236,311.0489631937817,310.98701148154214,310.15460894024,310.1326043908484,309.4750019852072,308.4766144431196,307.71999969892204,308.0311321723275,308.2065580058843,308.79250482469797,308.9581899577752,309.81507124425843,309.581423453521,309.9516800092533,310.25191997457296,309.813498463016,310.6676438776776,311.21168972784653,311.6585643654689,312.2703903215006,311.50993884168565,311.81087217107415,312.6038412847556,312.09046795777977,311.60239473264664,312.56335319112986,313.39422716991976,312.58528909878805,312.5605779150501,313.2446128008887,313.0843030512333,313.4665311523713,313.99465042725205,314.53462557215244,314.3186181942001,314.4059543488547,313.48082860559225,314.01150699704885,313.6142895175144,314.27411669818684,314.94154292251915,314.9011010406539,314.39632178191096,314.4977405364625,314.2580092814751,313.71934507833794,313.2542805946432,312.62370498105884,312.5068816621788,312.8554232297465,312.8564351135865,313.0497717312537,312.6393248299137,312.0762296724133,312.10833009751514,311.28560135839507,311.8780333949253,312.68366183154285,313.14045106386766,312.538689781446,312.1241165357642,311.56198025867343,311.4756407090463,312.4746708110906,312.96317105647177,313.86187294404954,313.2386451703496,312.943474996835,313.9005459463224,314.73956748237833,315.38411093782634,314.78970845090225,315.19736631354317,315.7736997860484,316.39732573973015,315.4897098299116,315.35199244646356,314.9500128175132,315.6843977426179,316.29263417003676,315.3909421507269,314.87701239436865,314.4682235759683,313.78300693724304,314.03727501723915,314.15790455555543,313.4065547143109,313.9355544107966,313.8823739150539,314.1434420887381,314.97855132771656,314.0894600292668,313.2111934614368,313.88096343167126,313.09954485390335,312.39798891032115,313.02507471945137,312.33194938348606,312.0914257937111,311.3476718598977,310.8993793046102,309.9614766188897,310.73014474473894,311.3330994048156,310.7537918873131,310.3497620103881,310.7235711249523,311.2801375281997,311.80555814737454,312.28052841546014,311.6239501875825,311.10873270360753,310.14219555445015,309.63919067336246,308.90489661321044,309.8389985789545,310.7509242380038,310.29211366781965,309.9860853049904,310.70413109799847,311.04198178229854,311.8347090394236,311.7405256005004,311.28100405586883,311.42926841555163,310.99502933351323,311.02941316971555,311.8647532458417,310.923060038127,311.2194985016249,312.1071563176811,311.2488816617988,312.22368457494304,312.1742496136576,312.14120458764955,312.05331348767504,311.8594587263651,312.6185083575547,312.2432661582716,311.40944229019806,310.54498848784715,309.78524946793914,308.9847735967487,309.597183811944,309.2722666822374,309.64825368486345,310.1780215213075,310.65911107324064,310.00867769215256,309.02493647066876,309.4330255538225,308.7092809318565,307.78667060891166,308.6874814713374,308.4519271310419,307.9689558688551,307.12157420022413,307.9680857080966,307.3636014694348,307.8126032031141,307.22349483380094,307.4350374955684,306.9492908818647,307.27114412002265,308.08050590287894,307.32463998161256,307.7229933938943,308.215363514144,308.9392889421433,308.5773427374661,308.25704268040136,307.5115873562172,306.87047018902376,307.6339092552662,306.76731211924925,306.4384311493486,307.00379628967494,307.18304137606174,306.5768757807091,307.22452013287693,307.1999909966253,306.4267984861508,306.38410322135314,306.0428810240701,306.26592882396653,305.62949959747493,306.4806123636663,305.731359151192,305.3248562174849,305.38072241144255,304.70330093754455,305.12502427073196,305.73773274663836,306.05858407495543,306.24278913857415,305.6623351708986,304.7894497248344,304.4530393537134,305.26574352104217,305.18835414759815,305.8819027421996,305.50546390004456,305.6656440109946,306.11030726786703,305.5553039428778,305.23455426376313,305.12366129644215,305.587604069151,306.0267763133161,305.976281971205,306.8467257139273,306.44105941662565,306.4102347865701,307.08253506803885,306.8960109022446,306.8511407170445,306.7865691441111,306.0783449388109,306.81800780957565,307.4323571701534,307.92419107304886,308.70620747469366,308.3012726586312,307.9642862523906,307.99856214458123,307.5672985590063,306.9006996941753,305.96653006691486,305.3259444637224,305.15706496173516,306.101700744126,305.8989683901891,306.7224325626157,306.9315064153634,307.04755871417,306.17803766718134,306.2411400768906,305.36938210669905,305.4556980174966,305.36233423044905,305.41247655125335,305.99863881710917,306.7328849141486,306.17047485895455,305.9409563844092,306.47190897120163,305.729458166752,305.409551941324,305.2626924691722,305.8336576926522,305.66981337219477,305.3013030407019,306.0624540443532,306.46058474481106,305.57361181546,304.94273214647546,305.36661386583,305.23766296356916,305.8805211340077,305.14385331375524,305.06520727137104,304.57019801903516,305.317873172462,305.22755777603015,304.62762552918866,305.2279739319347,305.56367637356743,305.59780210396275,305.64566071052104,305.6097647873685,304.8808140787296,303.89898727461696,303.61727214232087,303.39646791666746,303.0198755566962,302.2724781371653,301.79260890418664,300.82810479030013,301.4038416570984,300.70568779390305,299.8947232463397,298.907183857169,298.46906320378184,298.76785830268636,298.6084694559686,299.354888798669,298.6252078237012,298.8431765465066,298.65502314968035,297.8786802194081,298.00565217249095,297.0788783542812,296.20680924132466,296.61306233052164,296.07871960522607,296.8950171228498,296.44259767234325,295.880651564803,295.0245294421911,295.0368294753134,294.8374586724676,294.8179721250199,293.96748572122306,294.2172145815566,294.99210993386805,295.36464286455885,295.98581332247704,296.60697118612006,295.96674133557826,296.147856653668,295.43629616778344,296.4354036645964,295.91521970788017,295.75706211617216,295.56282275822014,294.81176622537896,294.1356394565664,294.844823256135,294.50231220480055,294.49713166616857,294.1248117564246,293.1278126183897,294.114700068254,294.8479587091133,294.97140801744536,294.2296143975109,295.18994644097984,295.64208434382454,294.91696916893125,294.7737779179588,295.46790689928457,294.8685130593367,294.53122100327164,295.1956021669321,295.8465255848132,295.5700416066684,296.3159629423171,297.0275597218424,297.3977224812843,297.94289764901623,297.72979877423495,298.32632727595046,297.78477091901004,298.28747170837596,298.1510641933419,298.8890442289412,298.28706785757095,299.0825212835334,298.2918402343057,297.59861073223874,298.30687545845285,297.97437528148293,298.5885652322322,298.49048063904047,299.1097243251279,299.1035010777414,299.2711477885023,299.7369390707463,299.429792042356,300.22336846543476,299.5166670754552,298.58467728691176,298.92745179962367,298.4680615104735,299.3301649270579,299.29966441728175,300.1984673351981,300.4868314056657,300.36645717779174,299.70510792778805,300.11432855948806,299.708460112568,298.7584371846169,298.7335473909043,298.2077395664528,297.3643845538609,296.885273527354,297.327789704781,297.9148040236905,297.0441729291342,296.81086448347196,297.001228896901,296.127145412378,296.30430083349347,296.2933896481991,295.8744511399418,295.20214540325105,295.01112444279715,295.2954367278144,295.59959944942966,296.2847544099204,296.37337736040354,296.3036749372259,296.2092141411267,295.6469248547219,295.35660382779315,294.39871931029484,294.59806391689926,295.25718646124005,295.7667117812671,296.70155446371064,296.43143572146073,295.6454166905023,296.16478226939216,295.1904529593885,295.37493450101465,295.84430416999385,295.9103125622496,296.23917496809736,296.26018381817266,295.27564763231203,295.7557769510895,294.8591839661822,294.5247436831705,295.440714629367,294.4641116410494,295.2762578926049,294.57125829393044,294.2165880482644,294.170012019109,293.28934358619153,292.83785643382,293.77217402122915,293.8178112930618,293.1956658186391,293.06993214134127,292.3269579508342,293.17066013021395,292.78164532547817,293.6572923124768,294.54389396030456,295.35921599855646,294.82981060724705,294.9500257782638,295.80793815338984,296.0882298941724,296.8585056425072,296.63077732361853,296.50829465314746,297.1282871272415,297.8194896252826,297.75022425781935,298.1693277354352,297.746327212546,297.9369427980855,297.15845822216943,297.00458038738,297.2687578657642,297.87277344986796,296.91865062806755,297.6872684918344,298.44286376656964,299.0420969398692,299.2621932127513,298.6865021167323,299.22374947508797,298.5991106159054,298.91600087238476,298.54174387594685,297.701169162523,298.6576612801291,297.7664484055713,298.6129723172635,298.23770051123574,297.96799314487725,298.5487748119049,299.1045304844156,299.5597364990972,299.3343565608375,299.15178308449686,298.56112722074613,299.15647706156597,299.8763368772343,300.7463410240598,301.4358030296862,301.5841095033102,302.4969412125647,303.36566630005836,304.02827192656696,304.099326337222,303.37076367251575,303.7774443263188,304.670008698944,304.83128863107413,304.77425289992243,305.4042198508978,306.2001157589257,306.15633551217616,306.3905453160405,306.70582583453506,307.2055808585137,307.6731238504872,307.3528194241226,308.3487427928485,307.7372516039759,308.6960060815327,308.3493812591769,307.50988095998764,306.85919598164037,307.7362498752773,306.8421462592669,306.37095193145797,305.95742091257125,305.9813441224396,306.9140065587126,307.53520708112046,308.40362251503393,308.9064852995798,308.395234238822,307.8603754732758,307.24559065233916,306.6804497214034,307.52520799729973,307.48170168697834,307.3408150617033,307.1468543834053,306.1928799431771,305.2273660628125,304.68623192887753,304.65170248877257,304.00341679295525,303.66145967738703,303.988374681212,303.5945616941899,303.63459412939847,304.0835658842698,303.94355217181146,304.50831427657977,305.4612896074541,304.56473328825086,305.0255911052227,304.74943742947653,304.5787524804473,304.97000636393204,305.42455668607727,305.14790475089103,305.7931019817479,305.9196265065111,305.0382154039107,305.4003878859803,304.4349728859961,304.54605157719925,304.10113369114697,304.99487319169566,305.36865385528654,304.64071325119585,303.85883422009647,304.55182837089524,305.46681529376656,306.1145983678289,306.08670815173537,305.7394435913302,305.1199727910571,304.7933990461752,305.48953992454335,306.21273846458644,305.78411427885294,305.89160212827846,306.67495153378695,307.3541114474647,307.83822455024347,307.3697952646762,307.35915608890355,307.9610581113957,307.53745931666344,307.8199754944071,308.46269887359813,309.23761837976053,309.70995822828263,308.8976537347771,307.96252229018137,308.8721228837967,308.0607180255465,307.54574323631823,306.5902635236271,305.97486526705325,305.013535420876,304.0744443978183,304.7432783213444,303.8790702102706,303.55631136428565,303.8496456677094,303.7402000101283,304.25738731212914,304.97052981471643,305.1528195273131,304.3723130049184,303.867611956317,304.1854170593433,304.95262369466946,304.530763593968,304.00282696587965,304.99421662604436,305.38017619913444,305.90625716466457,305.05888825654984,305.60025325091556,305.3371232962236,306.2612376501784,306.2330989157781,306.2856303052977,306.79983099596575,305.8535989341326,306.73990099690855,306.46120998542756,307.344050030224,307.4541723560542,307.7681324672885,308.2704402436502,307.33712563477457,307.538860687986,306.7212948035449,307.28512583021075,306.94414982618764,307.1275496254675,306.98324771784246,306.68493637489155,306.0199885163456,305.8157846336253,305.48146559111774,306.23999115778133,306.73269611690193,306.75835193600506,307.13327004155144,307.8326619900763,308.52593654440716,308.44892100803554,309.220610213466,309.31313557131216,308.3198673124425,309.2536963191815,308.5285163614899,308.8562251711264,309.166166708339,309.0555363390595,308.93466046545655,308.86483885068446,309.02294494211674,308.3898212327622,308.5530187780969,308.9739830009639,308.1943558957428,308.7959009716287,308.28887397935614,308.0335306050256,307.19705710280687,306.56385076371953,306.04245189158246,306.0551968505606,306.8755379659124,307.082794142887,306.17606404749677,305.73115205345675,305.45541056199,305.5538198663853,305.1222671736032,305.87776170670986,305.1583511182107,305.53132293885574,305.2577240569517,305.02944986661896,304.62630035355687,304.72761795297265,304.5962627432309,303.6334697967395,302.9118056381121,303.38413077173755,302.8072734326124,302.78069438040257,303.6816992610693,303.4878957811743,302.97327284514904,303.92950341291726,303.03402390144765,303.8102249898948,303.87707931920886,302.9683913048357,303.84351429948583,303.26297445688397,302.8602841193788,302.96392357582226,303.60887405415997,304.06519977469,304.0677361190319,304.7908555357717,305.33690969552845,305.9263364286162,306.30803502863273,307.2127548265271,306.71067570336163,306.2679041363299,305.4765854720026,304.7676113182679,305.26711217686534,304.72308991197497,304.4846030762419,303.8921188474633,304.6915585449897,305.00515907118097,304.99005053704605,304.8427092721686,304.68216344574466,305.4724395661615,306.0787787986919,305.5466045392677,305.8722624434158,306.1184179224074,305.7657469031401,305.6051703938283,306.570036645513,306.6700843577273,306.2580646635033,306.66707298438996,307.1433870298788,306.55319848749787,305.563789177686,305.62500841356814,305.03073195694014,305.80758903874084,305.0963441054337,305.81569573422894,304.86527551338077,304.1684996606782,304.57638675766066,304.2672821735032,304.8482563770376,304.89354293840006,304.7133854916319,305.18405954446644,305.77822501398623,305.06291626393795,304.6763596870005,304.8440241157077,305.766552192159,306.6825348553248,306.9697710238397,306.0159768345766,306.6179952053353,305.84251675661653,305.46749760210514,304.98617641068995,305.46867444505915,306.15355510031804,306.7712170789018,306.83954858221114,306.69461653148755,307.08053498901427,307.56888302974403,308.01386223733425,307.61534190084785,306.77003229549155,306.88215958094224,306.3573795966804,306.2054402003996,305.85401331819594,306.5973364999518,305.743121442385,304.9243372147903,304.2771738790907,304.08446509670466,303.686452684924,302.8447197605856,303.3365542786196,303.31219338206574,303.86031708680093,303.769567691721,303.31336065381765,303.8762799035758,303.6078297733329,303.8345022741705,304.50456800032407,305.16119543649256,304.91594315646216,304.54000840801746,305.5248690689914,306.1642834767699,305.48853798536584,305.98965268814936,306.2172585311346,305.84869824536145,304.96447277395055,304.7213592804037,305.61039561312646,304.9597131656483,304.46265305019915,304.2034027208574,303.6709932181984,304.00817706855014,304.0526226023212,304.77239066921175,305.6012963107787,305.1036650012247,304.11390562029555,304.5503502362408,304.76408234005794,303.84560837224126,303.12766698747873,302.2964515173808,301.32543854555115,300.8830400616862,301.5994468573481,302.25677552167326,302.27003658376634,301.50795317906886,301.76739186095074,301.3236018931493,301.8878298313357,302.1634159972891,302.59539432963356,301.87445898819715,302.5794024481438,303.15774224931374,302.42467556521297,301.9620891804807,301.90850842837244,301.90931997681037,301.12937317742035,302.09436966013163,302.7337454603985,302.1006170613691,303.0980621497147,302.6324329120107,302.22088861092925,302.4228706541471,301.6994394855574,302.0703280954622,302.6841788194142,302.1076581720263,301.1585575141944,300.6514424555935,299.83423477597535,299.6892243223265,299.8023896240629,300.1289123352617,299.32776481099427,298.59683121182024,297.73956760251895,297.9215870606713,296.93243428552523,296.2148881042376,295.7000553025864,295.99592138268054,296.9337112768553,296.8639245419763,296.1736652171239,295.957597985398,295.5467053861357,295.93807828985155,295.7415927052498,295.0231532868929,294.7770570865832,295.27265662746504,295.57167408103123,294.80631769960746,294.3793352767825,294.2903825175017,294.0323492777534,293.7244494827464,292.8723142547533,292.21899646986276,292.76371427159756,293.15391534473747,293.822010979522,293.7368405647576,294.2121888506226,293.95553808286786,294.85438918182626,294.7482284400612,295.07358192140236,295.95400619180873,295.2836337015033,295.9445319562219,295.41624541115016,295.1880882787518,296.1689209905453,295.6693800771609,295.97106117894873,296.08055444899946,295.62032655533403,296.56771088484675,297.1659830142744,296.54369602678344,297.07944114878774,297.10900884401053,297.0275009069592,296.1169361565262,295.1643271809444,294.80579732730985,295.25373309245333,296.03529671253636,295.8616073061712,295.03729266347364,294.12190947588533,294.6897800685838,295.48857298959047,294.6434133327566,295.3039061110467,294.6970387264155,295.15140850888565,295.01497947005555,294.56485795555636,293.5794464685023,293.49683738313615,293.9384648059495,294.0757575626485,294.39985001971945,293.8087155036628,294.19204818597063,293.4254681225866,292.59930826118216,292.8413472454995,292.2519726976752,292.9204277792014,293.1550976773724,292.9753684117459,293.50421550218016,292.748868024908,292.88394258124754,292.2353059020825,291.7635029456578,292.74331925064325,292.0635782778263,291.4343358492479,290.69105553952977,291.5365377557464,290.92542407335714,290.1469755023718,289.2018550289795,289.5285943541676,288.6108142635785,287.81957858242095,288.2828953322023,288.5852389521897,289.4132414595224,290.1327448999509,291.1029748758301,291.7236788892187,291.8903391761705,292.39963852846995,292.6238580495119,293.4321758495644,294.4072725973092,294.9384141773917,294.4699753969908,293.9036149238236,293.3377758562565,293.41477101668715,293.6842363527976,293.5824117101729,294.51421656040475,295.24570614285767,295.9609000226483,296.32084826240316,295.59259434370324,296.5472350246273,295.61025477340445,294.9843877754174,295.7199882059358,294.93716275226325,295.4251627349295,295.6259537441656,296.3877985095605,297.2922808066942,296.89358493313193,297.4931594710797,298.191181212198,297.9256403390318,298.21081773983315,298.3032121011056,299.0470247701742,298.6561789806001,298.8474116534926,298.79017498670146,298.2928203740157,298.30126674473286,298.41716492315754,298.88379146903753,298.8795991386287,299.5528216138482,300.533216310665,299.58568251365796,300.5847493587062,300.9048874024302,301.26432251324877,301.7311691213399,302.0070532914251,302.03384867170826,302.54121111053973,301.83064650790766,301.9334144932218,301.5870793936774,301.06521789962426,300.57328773941845,299.89599333144724,300.7653859052807,300.4289855551906,301.195452358108,300.5116366366856,300.40110515244305,299.5155515708029,300.1902036028914,301.1358000510372,302.0835521775298,302.02085177600384,302.95958720659837,303.1938685430214,303.34489679755643,303.13911356637254,304.1221648044884,304.2073939568363,304.81814610026777,304.98501233989373,304.6393231828697,304.4749911040999,304.9480220475234,304.0860924227163,303.0867097848095,303.4172449391335,303.9339815513231,303.2807344943285,303.32814316265285,303.2839887375012,303.8744510789402,303.195552890189,302.4199565560557,302.61343553476036,302.6261636912823,301.7888031648472,301.3810377768241,301.38843585550785,300.54588723834604,300.21385921211913,300.4122439753264,300.3860837072134,300.7353527280502,300.8745903931558,300.0265558459796,300.03158514387906,300.2973828674294,300.8843729039654,300.97159867733717,300.8824847168289,301.4690685560927,301.72120102960616,302.0829588295892,301.92846469720826,302.40465149236843,303.20236351154745,303.2041915599257,302.82951054163277,302.69238104717806,301.95205819793046,301.3817802807316,301.9352767956443,302.4203066811897,303.35635564895347,302.41830005450174,302.4677540352568,303.0608242521994,303.1882561966777,303.6174222845584,303.4655570331961,302.80435484834015,303.28678570035845,304.2178705581464,303.40303865028545,303.21147479629144,303.99396843556315,303.68877941090614,304.065522138495,304.86351144500077,304.70172307407483,305.39194470644,305.46397544723004,305.6888557896018,305.17960668867454,304.56835861038417,303.96793773723766,303.9463888844475,303.5682015940547,302.6411414546892,303.39192392257974,303.2746604499407,302.296320640482,302.38781086122617,302.6377885201946,301.69605950731784,302.4005618407391,302.23287960048765,302.40582594042644,302.3174627488479,302.0915114819072,302.30876533826813,301.3532230327837,300.64390581380576,300.4226537174545,301.09968874277547,300.8212450752035,301.0581650035456,300.18624755647033,299.4575631003827,299.83498678868636,300.4486131570302,299.6502760038711,299.43453939957544,299.7088032546453,300.29914653953165,299.57110422709957,299.0088561703451,299.87921575363725,299.73094017384574,298.89580470276996,299.5584808308631,299.7973876413889,299.06994486181065,299.4218830210157,299.7586373933591,300.32977940235287,299.90743231773376,300.3195996643044,300.3792122662999,299.6737498724833,299.0423316527158,298.9564219652675,298.85971218626946,298.2408787282184,298.5383378593251,299.11193311959505,299.6369691728614,300.3403581129387,301.0703150732443,301.51279988186434,302.36332630971447,301.6957840952091,300.9294885704294,301.38821910787374,301.65090917563066,300.93952601403,300.9343363950029,301.21775596775115,301.25032391538844,300.83298311335966,300.8424006202258,301.2890692795627,301.35998738277704,301.693082974758,301.27611993346363,301.7803321755491,300.79882709449157,300.39670568006113,300.93147624935955,301.8960547382012,302.11979856388643,302.3584193768911,303.33809493202716,303.11232889350504,304.0501383226365,304.4803752512671,304.2725668102503,304.4483831548132,304.9728057552129,304.3850208716467,303.549491812475,303.40177015122026,302.425309327431,302.2744935769588,301.5914820814505,301.5144599801861,301.94324966007844,301.08694387832657,301.75122366379946,301.42735938634723,302.40065838582814,302.14468103135005,302.9471456762403,303.76279591117054,304.1742979642004,304.4473736556247,303.8965354729444,303.12319019716233,302.44763084035367,303.23652274906635,302.977837536484,303.03170674527064,302.0370421106927,302.1413031844422,301.6923429053277,301.9149827826768,302.1504415497184,303.1391956214793,304.0071567860432,303.5376189132221,303.8748661633581,303.95866472134367,304.8691828344017,304.89675950678065,305.05686616990715,304.12227740045637,303.9974665371701,303.94678525812924,303.60012313118204,304.4102185345255,303.8275237423368,304.8267178493552,305.30148265277967,305.07278114929795,304.4603478270583,304.1021545981057,303.67140437383205,304.2685416149907,304.05074014980346,304.4800300435163,303.5312961312011,303.68157704314217,304.38257411215454,305.3035291642882,305.663568417076,305.571098735556,305.6914535528049,306.5499065024778,307.1681308085099,306.37308896752074,305.5093689248897,304.5947453654371,303.70478005521,303.39608902763575,303.8589677270502,303.9160686498508,303.4565186263062,303.0632344917394,304.0531564569101,303.86036027316004,304.8440532470122,305.4618474896997,304.5006741899997,304.4143836898729,303.47150212945417,302.6398002621718,302.751587360166,303.04741746000946,302.2144201290794,301.5098907290958,300.6590726855211,301.1994925555773,300.90000845724717,300.70890858815983,300.30669392831624,299.6944040977396,300.0523968189955,300.20635427860543,299.8356092548929,300.2693976997398,300.89044237462804,299.9509113118984,298.991101463791,299.23985240701586,298.57711718417704,299.335955651477,299.25281654158607,298.87462070491165,299.61136812949553,300.46418960858136,300.9404304753989,300.12196421902627,300.3752523967996,300.7964801895432,300.5110873337835,300.54154885932803,301.5088105974719,300.51118266629055,301.21408039564267,300.8214676310308,301.04243231005967,300.5787682826631,300.33620991930366,300.5059776571579,300.3385773845948,300.2611795812845,300.20310297235847,299.7134755807929,300.67827001959085,300.6915607028641,300.29905083728954,300.16232476430014,300.30516841309145,299.43168053310364,299.7049286700785,299.2272663619369,299.95227927248925,299.36943145049736,299.83339955704287,299.19650110509247,298.3246496776119,297.37465714430436,298.32396902889013,297.97494033165276,298.39483388280496,297.5574294058606,297.2946672164835,296.3695793263614,297.03820414002985,297.6497862651013,298.0350498687476,297.80292837833986,296.8380574830808,297.6663292385638,297.26765139913186,296.77622371539474,297.65170959057286,297.50790676567703,297.4526953944005,298.3170825014822,297.7045796904713,298.3664282374084,297.6017746911384,297.84066144935787,298.56016673427075,298.0145926293917,298.5110158305615,297.65307825850323,297.45514281420037,297.56591434869915,296.84478218713775,295.8736408161931,295.6550520933233,296.5456354576163,297.27469395985827,297.8436580998823,298.79946792917326,298.4245395567268,299.1874778722413,300.05981239443645,299.86311258468777,299.92833457607776,300.6778297973797,300.8710123151541,300.42785664927214,301.31037333095446,300.34879064699635,299.4667978771031,300.07885458506644,300.5679130149074,300.8173432108015,300.2129058390856,300.8422214956954,300.0547183440067,300.04762620152906,300.8488006745465,300.6095746345818,300.69835764635354,299.8150899177417,299.5975799355656,299.2937933267094,299.10099680535495,299.46754594612867,299.00079588824883,298.9918409236707,299.7781952987425,299.6395831522532,298.9489669739269,299.63243677234277,298.87191498000175,298.0014026337303,298.1096048178151,298.8393649770878,298.16563315782696,298.8481692960486,298.0460208216682,297.26273890025914,297.38623868022114,297.62664780253544,297.1130369254388,296.51466563902795,295.97132749529555,295.0960374120623,294.8246592837386,294.2909231018275,294.781272941269,294.99312515417114,295.5996489422396,295.82243314152583,295.6093230424449,294.9104358172044,295.8481173682958,296.1739821154624,296.159542592708,297.0493244100362,297.272743828129,298.1906112190336,298.5330296657048,298.17897287290543,297.47279596189037,296.83526159916073,296.85248478362337,297.05725467251614,297.9389626076445,297.51360689708963,296.63412512559444,297.5530383065343,298.19579110946506,298.1591329956427,298.29415368894115,297.7087883334607,297.31780916359276,296.91456350916997,296.23866966506466,295.58563069300726,295.7601484954357,296.40751791140065,296.89818916795775,297.8126778169535,297.5177452736534,297.82637853035703,298.35158487129956,297.6982569731772,297.2712394297123,296.85304302256554,297.2954014800489,297.4417460891418,296.7230959380977,296.8639134033583,297.1406830539927,297.4472355879843,297.2961526871659,297.0777701539919,297.07343505788594,297.6295445030555,298.12791717331856,297.9550434825942,297.83255423326045,298.1293966053054,298.49257762543857,297.9936224720441,298.89692437974736,298.9632074069232,298.98496943246573,298.6131114359014,299.5842567658983,299.630870601628,298.83774259733036,298.2745369351469,297.4419429046102,297.16631301958114,296.9250317700207,297.8168389503844,298.4636848848313,299.08247446408495,299.2142713726498,298.73444324638695,297.85194552037865,297.18051353516057,296.3289293679409,295.4715810692869,294.9775186800398,295.23832818632945,295.2056721285917,294.69577644811943,294.22021728381515,294.7728351666592,295.3151948922314,294.68577953847125,294.49542394001037,294.6942072119564,294.0772379850969,294.0967979710549,294.61842302419245,294.50437923381105,294.135430180002,293.6747156311758,294.26007651071995,295.2453324198723,295.8159710862674,294.9417290245183,295.7625026325695,296.0423635565676,295.7757006343454,296.1433544335887,295.8067721235566,295.247963082511,294.7420002873987,294.96337481727824,294.4474395182915,294.17743996344507,293.44562352634966,293.6537299696356,292.7649466977455,292.24694632785395,291.59295069100335,291.3814674206078,291.389891105704,291.0284645613283,291.82750774081796,292.34447176614776,291.6394233056344,290.752619929146,290.598210231401,290.3334362162277,289.53572408948094,290.5066904737614,289.9608096354641,290.57082112831995,290.6337053216994,291.5131663023494,290.8638872583397,290.78742963494733,291.27120486227795,291.8567821797915,291.0795052363537,290.14507121406496,290.5897651645355,290.75762935355306,289.7714041303843,289.72280731331557,289.06081280857325,288.24420389160514,287.2832566667348,286.3119031540118,285.7395775122568,285.6125143649988,286.17724185530096,285.5216117622331,284.77390227792785,285.64322746777907,284.8382132691331,284.7751565473154,284.9859269526787,284.654044367373,284.210892170202,283.35785372182727,283.95576921571046,284.8024017624557,284.94517220091075,284.93456347938627,285.6195583054796,285.5680047478527,284.66978580178693,283.9573365887627,283.0229540760629,284.0064790714532,284.65374413505197,285.0112659758888,285.5099836299196,285.2868072842248,285.1819475586526,284.9691440537572,284.126403672155,283.68205507239327,282.8095482760109,281.91627238644287,282.9109264384024,283.2252220166847,282.7334411069751,283.47003526892513,283.91409804299474,284.07850797940046,284.43766463780776,285.4179505263455,284.46245794557035,283.5459241606295,284.3932864051312,284.1543753524311,283.3785565784201,283.5275963097811,283.6238276474178,283.95858680224046,284.01625230303034,284.56689018243924,284.49394758371636,284.43350460007787,284.44284270098433,284.0124076437205,284.50101196439937,284.3651976212859,284.3859710767865,284.7311974395998,284.25700926734135,285.0234935665503,284.0716636092402,283.20009719766676,284.1132625271566,284.10379227949306,284.89357802737504,285.62183298543096,286.35178095148876,285.9838771573268,286.74256622605026,286.7351273437962,286.87778439512476,287.83469649078324,287.5628436151892,287.8171322182752,288.4181597819552,288.3426183219999,288.77743617165834,288.30792306317016,287.95630432106555,288.21166970813647,287.62125734519213,288.38659720215946,288.5025800568983,288.08622039156035,288.1371608674526,287.97823417373,288.34681600378826,288.1772488299757,287.6834021550603,287.7043344937265,287.9957489045337,287.76402169652283,288.29874843917787,287.52527397777885,287.7001923988573,288.2666071020067,287.67488797334954,288.4831294324249,288.6506427777931,289.2398517434485,288.56670517427847,287.58162652282044,287.92005072999746,287.25409410428256,287.48325567739084,286.90020199259743,287.85307149682194,287.40133171062917,286.40458937129006,286.4529371387325,286.0754938824102,286.1311014997773,286.06032242951915,285.4654672355391,285.3832307155244,286.1297017047182,286.47464410355315,286.5660071047023,285.68732162658125,285.41502495249733,286.36245120409876,285.91968551278114,285.39824200887233,285.77717614592984,284.9413199056871,284.65477338247,283.7768619488925,283.9869048781693,283.24734265031293,283.1833739997819,282.22671794705093,283.2266929903999,284.00352268712595,284.8805490094237,285.25539360102266,284.74208631552756,285.20049067772925,285.2557022697292,285.91233924776316,285.1613924531266,285.8195092920214,284.8463600529358,285.08367440477014,284.83245947770774,285.52159124286845,284.8996313768439,284.8557328474708,284.37531612766907,284.9548912672326,284.024238334503,283.91385305998847,284.15102184563875,283.56892647454515,282.59084397368133,281.73220580862835,280.8437104956247,281.00169344991446,281.11354214604944,280.18081074394286,281.03035309305415,281.6988618699834,281.0271247108467,280.1901134666987,279.60164018161595,278.7813478964381,279.2955233119428,278.4818601659499,279.0512381712906,279.49457807373255,278.72136106994003,278.1071545300074,278.73828756902367,279.35780108207837,280.06506076594815,280.6422104202211,279.7751754024066,279.00870072003454,279.74029689189047,279.4338539983146,278.6263602762483,278.6692912657745,278.5462836660445,278.96863306174055,278.8184509119019,278.6981004914269,279.04556220024824,278.09046390559524,278.65170107921585,279.62536727031693,278.6826692619361,278.28393009305,278.48982057580724,278.08953708270565,279.0058243488893,278.1076392857358,278.3001358322799,279.0160958399065,279.6737026735209,280.5547119891271,280.8436830868013,281.1424024174921,281.4279041751288,282.21062043169513,282.04167923424393,282.76937669701874,283.1498718773946,283.08310398599133,282.5089025525376,282.88115010177717,282.31894430331886,281.7583275604993,281.36236686958,281.0754005787894,281.3857536953874,280.55935626477003,280.2762643531896,279.34744035685435,280.3152273623273,280.86930348724127,281.1798504800536,281.13738602772355,281.43893058085814,281.73035828070715,282.25389076350257,282.06232922291383,281.91127948416397,282.34426157549024,283.06237399205565,283.39486982813105,282.7854634276591,282.88026143051684,283.1835872079246,282.3707807553001,282.70058977697045,282.5921840700321,281.73714752076194,280.976826694794,281.4807649636641,282.0449760565534,281.11133408220485,281.5672475672327,280.68329479638487,280.1523851202801,281.0895303012803,281.63902077265084,281.20821113791317,280.6085728383623,279.69949669064954,280.12580660777166,280.32096321554855,280.11118911299855,280.7113911919296,280.257225479465,279.9100466570817,280.4141970262863,279.49252622714266,279.528876000084,280.51694629946724,280.5024182968773,280.71112063201144,280.9098792052828,281.57514191651717,282.1563573498279,281.88283216627315,281.4865552801639,281.483660524711,282.0964155467227,281.5057021016255,280.5152420839295,281.4936079494655,281.7456618133001,282.55264024203643,282.3303368240595,282.33779995236546,283.3128613042645,283.5520401233807,283.1709155049175,282.85174784017727,283.24633591715246,283.72252269554883,283.9161652876064,283.0185070806183,283.8892268273048,283.15633692918345,283.643638654612,282.66093556629494,282.9848572057672,282.14988911384717,282.10584487300366,283.0746073401533,283.5057297437452,283.64617203501984,282.90363026596606,282.78286427119747,282.54860353516415,282.3017836883664,282.78516847034916,283.08262395719066,283.0082819419913,283.8190461844206,284.7413542964496,283.8436530116014,283.70301829092205,283.8366881082766,284.482266807463,284.31743559939787,284.46171962004155,284.2995273452252,284.6199414669536,285.32232093717903,285.4332563430071,285.62407463788986,285.48292096797377,284.55306551465765,284.0039838459343,283.44435258209705,283.68817832367495,282.83686302416027,283.2192122093402,282.6942313425243,281.7474249326624,281.43642608169466,281.38631372945383,280.88486021663994,281.4109292780049,280.51932186214253,281.0061680120416,281.89232259523124,281.52230502059683,281.1221225769259,281.3211603872478,282.0130485165864,282.0768644940108,281.46875509573147,282.4309621863067,282.02407520264387,283.00648107845336,282.67065314622596,282.77551507623866,282.3364745033905,282.7442310168408,283.0055736666545,282.3908308451064,282.60365960979834,283.57709460146725,282.9529038355686,282.02723933244124,282.56508590839803,282.5806449986994,282.66075034765527,283.284836569801,283.6721839015372,283.69526654528454,284.05650866078213,284.11526265274733,283.21608946984634,283.93502540141344,284.06358768744394,283.2603402794339,283.8437025952153,283.2549324524589,283.6451406124979,282.97678563324735,283.51502254465595,282.5941900704056,282.51485514780506,281.8626228906214,281.6110961860977,280.8946340479888,280.16176669998094,280.0149416420609,279.0635978449136,278.7173643503338,278.9088323395699,278.1171445013024,277.44641283201054,276.44746607961133,276.83611874841154,275.88681435538456,276.63903043046594,276.05947881005704,275.5379922701977,275.60922515252605,276.0809397078119,276.2477364349179,276.598243704997,276.3538122046739,275.847519017756,275.5577688650228,275.47161028860137,276.4137516859919,275.70564268669114,276.0127394818701,276.84444877598435,276.89242795016617,276.54777097608894,276.723153013736,277.083219461143,276.34563074074686,275.6328214518726,275.69774065120146,275.89469280000776,275.5499167726375,276.4436682998203,275.5822136490606,276.57458638213575,275.87462988030165,276.50849915808067,277.40872152801603,277.8370543732308,277.0311723286286,276.5432019615546,277.22700404562056,276.5193490246311,275.5360111678019,274.8177127055824,274.6647972930223,273.871599082835,274.7778247590177,275.4881222532131,274.889591940213,274.82959501678124,274.38331277901307,273.5934747927822,272.92934164078906,273.7879897598177,273.9822050142102,273.95784743037075,273.4751746887341,274.36597728636116,275.3575663366355,275.62849676422775,274.707356586121,275.1723324889317,275.2822608011775,274.96526081860065,275.214957640972,275.7999073481187,276.741535787005,275.89080349728465,276.1753948889673,275.5658174925484,274.74347199872136,275.52122805826366,274.8823273703456,275.4668418355286,274.63992131734267,275.5626774462871,276.25497537478805,275.8128759707324,275.30953600630164,276.24690056499094,276.7854452817701,276.5779503984377,275.99927320796996,275.11607629666105,275.2625717916526,274.62458784040064,273.8369859205559,274.4336865115911,273.5715014799498,272.905127489008,273.5317211220972,273.15335660008714,273.6199969025329,274.59255171054974,274.257119232323,275.00510871456936,275.06660242704675,275.0036276630126,274.21878670249134,274.7616042518057,274.75415841815993,275.0964720430784,275.46360682928935,276.05161099601537,276.30580774648115,276.80543188238516,276.4684455837123,275.5276775085367,276.4742953744717,277.01103721233085,277.76121385674924,278.67537376843393,278.14777687657624,278.4282110170461,278.64312773244455,278.6665248628706,279.5855098059401,280.17179043777287,280.376870107837,279.6160441339016,280.42677025217563,280.10916175926104,279.9554342580959,280.69704700261354,280.9148996081203,281.2368805264123,281.7364475168288,280.92072707554325,281.56310428585857,280.9191827950999,281.7856344948523,282.62628569593653,281.8757793083787,281.1182195027359,281.0494196610525,281.9815218253061,282.497332402505,281.79603063315153,281.3930719573982,282.22882506251335,281.6838771100156,282.3220665920526,282.51666784798726,281.97527994960546,281.0047174273059,281.3042419361882,281.4835433065891,280.5025567202829,281.4348557777703,280.5841650972143,280.95946383988485,281.7497442923486,281.31735922861844,280.54344462184235,280.3321423251182,280.1162588605657,279.16967512620613,278.3378687580116,278.7693912964314,279.59092898014933,278.9759770696983,279.356368414592,279.6506193866953,278.65876826271415,278.44614624558017,278.1644096453674,277.20041778404266,276.2187059461139,276.5163968866691,276.0111326170154,275.8905846825801,275.6900465381332,275.6866214480251,275.7322479849681,275.06018895469606,274.67703902861103,273.6816064962186,273.6543077076785,274.0816895547323,274.90354519709945,274.0829443978146,273.7931159087457,273.3516504028812,272.6429228084162,271.6761627346277,271.0975099722855,270.6509529496543,271.3912985487841,272.3558134823106,272.32000580150634,271.5552139454521,270.76068692002445,270.5379604222253,271.3712198087014,270.60246098274365,270.4637394058518,271.1460759649053,271.1147741628811,271.46335260150954,271.065791842062,270.2391971601173,269.82299290038645,269.52720366278663,270.46704188222066,270.55581948393956,270.89049838483334,271.3282844121568,270.942802362144,271.92985747847706,271.7196637596935,270.8536303252913,270.98224997799844,270.60625749174505,271.026525801979,270.3693004096858,270.38610351923853,269.69579633371904,269.7014699890278,270.3188190483488,270.5590673345141,271.3305996567942,271.9163044351153,272.7781516453251,272.1331729260273,272.6994273434393,272.0801113410853,271.65805203281343,272.6065935380757,272.7573484252207,272.8540132693015,272.937524380628,272.4692054358311,272.8385296300985,272.10329506359994,272.1304273083806,271.3272554203868,271.0599389350973,271.58797714393586,271.38641039747745,270.9872860577889,271.83438860531896,271.4486743812449,271.9661290529184,271.7862829482183,271.54430094826967,271.0516292322427,271.26668508537114,271.5773384841159,271.8062316272408,271.3066870486364,271.4244970777072,271.00552482390776,270.69616262288764,269.8156256810762,269.53461347240955,270.2171327127144,270.3114855894819,269.3185863592662,269.027158212848,268.65088787162676,267.7079779282212,268.36691386951134,269.21470237569883,268.6955430228263,267.99335898831487,268.5498317317106,268.04870946891606,268.50311686936766,268.13393200421706,267.8432312286459,268.06780673004687,267.7493699141778,268.2805910552852,267.79448604909703,267.93545345263556,268.43321950547397,268.2989278989844,268.62945875013247,269.4029438304715,268.6622641454451,268.6739323795773,269.43808802962303,270.26439693244174,270.2453571241349,270.3971581310034,269.96880215685815,269.0689723333344,268.5960034299642,268.36837554955855,269.2421285393648,269.6387868709862,269.281981327571,269.3225515061058,270.0520774521865,270.4994601747021,269.89892163220793,269.90387310041115,269.74050286598504,269.6453221417032,270.41106160497293,269.5336962775327,269.2720156311989,270.1056524538435,271.09557599388063,271.3930591517128,271.9756428510882,271.271623138804,270.99227364035323,270.20609363587573,269.9608416198753,269.2019315655343,269.38829139387235,268.5256589562632,267.9680366865359,268.21178125962615,268.02791958721355,267.42647211579606,267.2884529591538,268.1083537847735,267.1307203271426,266.6053264522925,266.4817732265219,266.3159832637757,266.70624024793506,266.2110561458394,265.9220451908186,265.9138754159212,266.7386373193003,266.2719378997572,266.1571047240868,265.956297326833,266.80081163998693,266.4772032396868,266.65466381656006,266.63762893900275,265.80227925255895,264.95852226438,265.90022124070674,265.4390667155385,265.08076386014,265.16996651748195,264.345098874066,264.5441106050275,265.4473282545805,265.3889288934879,264.81626082444564,265.568277570419,265.90774908615276,266.6418112856336,265.80892992718145,266.6001015692018,267.2518961187452,266.5874494612217,266.21746321581304,266.15929036866874,266.9177004052326,267.4860890074633,267.3851385866292,267.7590887481347,267.2012811047025,267.4968875409104,267.0090259341523,268.0014654644765,268.39885686384514,269.3726815772243,269.73464466957375,270.4130548508838,271.0913438703865,271.00623632594943,270.9543263344094,270.77669989224523,270.28504135319963,269.9507218776271,270.40340444492176,270.7165364935063,270.2930612959899,269.7455012924038,269.92490520793945,268.9912476562895,268.60340733872727,269.11622175714,268.4540103287436,268.3279398921877,268.43117771856487,268.09297929145396,267.97944991104305,267.3233689717017,266.6034635640681,265.90700904792175,265.5633533867076,265.4936290252954,265.88567862147465,265.87388004455715,266.466510664206,265.6265158802271,265.63944799499586,265.4581728600897,265.95524083822966,266.4650084730238,267.24043146148324,268.14994596270844,268.30085874535143,268.75849913805723,268.75019946089014,269.12505495687947,269.78441731259227,269.47417711885646,269.1597019089386,269.7925605219789,268.9732772242278,268.5013427147642,267.5440288083628,268.1687487429008,267.7950156228617,267.2111286073923,266.4505382394418,266.3633303651586,266.49291559588164,267.15803201589733,267.89817638369277,268.3025269792415,267.7564469636418,267.17024218756706,266.27969565428793,266.6128629767336,267.1279880097136,266.3704482787289,266.3050886634737,266.5799400974065,266.3048502057791,267.20783302001655,267.37919704057276,268.2716515464708,267.75825540954247,267.936066119466,268.61466114828363,269.43057804135606,269.23561277939007,268.81570051331073,268.72108825016767,269.70976016670465,268.7304272670299,269.35745938913897,269.6905676838942,269.71375893149525,268.7716911723837,269.39644681150094,268.42268555238843,268.31644901586697,268.83778606541455,269.1523882462643,269.17170509370044,268.5971582685597,268.09663844201714,267.95884934673086,268.04696648102254,268.09231262328103,267.4797156439163,268.3052639393136,267.58547088177875,267.3603532295674,267.3361034113914,267.30876210844144,267.18343606730923,266.4920447776094,265.7815481238067,266.08694375446066,266.213097368367,267.1952155320905,266.3768864320591,266.0647577694617,266.38906441489235,266.9882158865221,267.0041646743193,266.77365107042715,267.6586231458932,268.26063208887354,268.93876352068037,269.27782651409507,269.7267728848383,269.383936827071,270.35584121057764,270.90829331055284,270.4965921230614,270.46670997608453,269.83188282418996,268.9360399469733,268.4461515736766,269.3595888973214,269.2697621877305,269.4989855424501,270.051926351618,270.1271389950998,270.726205538027,270.97504651965573,270.2040271400474,270.50889275362715,270.24789299769327,269.92860947269946,270.72645631432533,270.24610508419573,270.81870372453704,270.68363639106974,270.700339818839,270.191787999589,270.3356263753958,270.09898693906143,269.6428547021933,269.6483055935241,270.6291232695803,270.9160731160082,270.21293263463303,270.8318426734768,270.52113509876654,270.3221933506429,269.3972290637903,269.0440586451441,268.6316856802441,269.31077762460336,269.6825810363516,268.99482486303896,268.6700118230656,267.9772477336228,268.566764337942,269.4673292567022,269.58094405848533,270.5705856210552,271.3226128886454,270.8492392953485,271.5804510926828,272.0571678359993,271.21811566175893,271.83449601661414,272.6652867021039,272.8766324734315,273.55327216442674,274.46822024695575,275.3889043754898,274.8522219648585,275.0816045952961,275.3846008423716,275.4992950395681,276.4019892816432,276.8670739820227,275.89090397721156,274.9465673295781,274.4054505955428,275.22080773999915,274.70900979824364,274.34939809609205,274.07776524685323,274.77810777770355,274.51461805636063,275.32158388523385,274.57047634897754,273.93561116140336,274.1431615203619,273.33066998329014,272.937428381294,272.2756063248962,272.5743859373033,272.78354039415717,272.12984382966533,271.8315292475745,272.19404561584815,272.84794632252306,273.7700781971216,273.6156698470004,274.34067770978436,275.28044488374144,275.2385655110702,275.9618825414218,276.1013481244445,277.0765506341122,276.70723848976195,276.24850384751335,276.76938220858574,276.9992667334154,276.8729136758484,276.20905408263206,276.1326449569315,276.3746071457863,277.05586517741904,277.8936081775464,277.50960825942457,277.5699583021924,277.799841331318,277.07685022521764,277.1162053863518,278.0077740177512,277.63898772606626,277.0252195731737,276.12236904446036,276.4974024416879,275.49839824019,276.4203607547097,275.6267005982809,276.48849071981385,275.62096393853426,275.05366688780487,274.9792760810815,275.44809575611725,275.46193350013345,274.7919287686236,275.2739447634667,275.81285262759775,276.73755279928446,275.9343687929213,276.6860104324296,277.4375064475462,276.76806997228414,276.26881605619565,276.44038950651884,277.3963043941185,276.8904894758016,276.3518081526272,276.6174887190573,277.10365852015093,276.156507877633,275.57964121038094,276.3495363825932,276.3991220644675,276.89592924015597,277.8820887412876,277.63328620931134,277.44213514914736,278.0870178155601,278.58056715643033,278.26495478348807,278.62186336982995,278.192444041837,277.9331632819958,278.3757399120368,278.8890795116313,278.7044662097469,278.2227609809488,278.859798330348,279.077821877785,279.4939970523119,279.99357655690983,280.7212401027791,281.30583439953625,281.85183101240546,282.2412467719987,281.41831498779356,280.9055151883513,280.6122105997056,281.1120126401074,281.0979747315869,281.9668849897571,281.93470257893205,282.41316084424034,283.2038424368948,283.12793443584815,284.0989759033546,284.6019393228926,285.3181996033527,284.71893710736185,284.4290830004029,284.164393087849,285.0090798549354,284.866147112567,284.6062380298972,283.9464013907127,284.51499167177826,284.96824456751347,285.9371165293269,285.15439542289823,285.5298900604248,285.36955408891663,285.1479927841574,285.6260531269945,286.1761317891069,285.9817136065103,286.3815088397823,285.44567661359906,284.56004000641406,284.4222122589126,284.9662280706689,284.7380421664566,283.92845064168796,284.5854612090625,285.1951315761544,286.0381212332286,286.3799807676114,286.3783106915653,286.9120885655284,286.72473121155053,286.0822021448985,285.61485328059644,285.9839421515353,286.9659174606204,287.7759828167036,288.2855691779405,288.152091388125,287.9027698007412,288.21024837205186,287.5504804505035,287.2023524832912,287.9680256214924,288.83621969120577,288.8079605558887,289.5360905257985,289.7463052533567,288.9791849795729,288.10106485523283,288.94249508716166,289.7929233107716,289.63593525765464,289.24623956065625,289.8679621326737,290.306864077691,290.0764504610561,289.92845168570057,289.2563026174903,289.71039360854775,290.40936699463055,290.6469744001515,289.76859159069136,290.0115989889018,289.44369261106476,288.763669077307,289.32167188217863,288.95593262836337,287.99778139125556,287.79752825014293,287.5643699783832,287.55656511802226,288.1140234800987,288.18220186047256,288.03519241465256,288.72170147811994,289.3402375499718,289.28461548825726,290.1399041158147,290.52490871725604,290.36404825840145,290.60627982532606,289.7868317407556,289.38570536579937,289.52364963525906,288.80163353215903,288.0031789485365,288.17872049240395,287.4596505216323,287.2872106116265,287.8209336558357,286.90711898589507,287.1118300575763,286.5559461978264,286.51316273212433,287.39250360941514,286.70672836573794,287.3468518014997,287.71260815812275,286.91085344180465,287.19937943061814,286.8709285920486,285.9358224272728,285.1123294495046,285.4754814058542,284.59890003176406,283.77463222434744,283.71509197354317,284.1696563642472,283.36969701526687,282.81498099770397,282.7703623659909,283.12678846530616,284.11758656287566,283.8523948555812,284.5615666275844,283.76516046375036,282.9410666124895,282.8916182932444,282.56294918293133,283.205759014003,283.14306244347245,283.6423529405147,282.94493768317625,283.41524134529755,283.25342140207067,282.84438799181953,283.71501359855756,283.23238577740267,282.66073757223785,282.6736118472181,281.9613633551635,281.0068661798723,281.99678571894765,282.2079335236922,282.41645364975557,282.19365739123896,282.4647877011448,281.99714913219213,282.1640472449362,281.7330729016103,281.45024904003367,281.3658265196718,281.5711065735668,280.9283690424636,281.3115114751272,281.5048602116294,282.097788146697,282.4388408390805,282.2797271395102,282.4730455991812,282.94217971665785,283.63851143373176,283.6470923242159,284.14658453688025,283.2903752080165,284.0819217329845,284.52991072507575,283.6498478045687,283.7501792553812,282.8184668645263,283.173151823692,284.09066830249503,283.8881428637542,283.5378324384801,284.04195965081453,283.4078197986819,283.13514098292217,282.54104015324265,282.1160936183296,281.8081475752406,281.0356874917634,280.11433701822534,280.07509794831276,279.4080760013312,278.55820935731754,277.96995609859005,278.5894995504059,277.84015082893893,278.04332370869815,277.6280487398617,277.98584348801523,277.3838666989468,277.93500420823693,278.6703983210027,279.183484334033,279.9058330892585,280.312180374749,279.3452771785669,278.36249896138906,278.1030812943354,278.5456333970651,278.993345126044,279.131055617705,278.86035731155425,278.2317100088112,277.98785714805126,277.42769858799875,277.8738537444733,278.324409857858,279.0355471679941,278.09742896305397,278.8175876471214,279.6934517864138,280.50281175924465,279.5111237918027,280.2998178284615,280.0919620809145,279.8016915204935,279.61392771080136,280.2507901326753,279.59956169547513,278.6067657568492,279.0165684646927,279.2246872535907,279.210514747072,279.53987926850095,280.5043538091704,281.18113032449037,281.89929911354557,282.63024288322777,282.77060265559703,283.0374116618186,283.7591440109536,283.7113079051487,284.57378810318187,284.96973503148183,285.51219194428995,285.7596118571237,285.6150166131556,286.211376467254,285.7330377702601,286.69015113217756,286.91149036353454,287.3899602009915,287.77973299706355,287.512609240599,286.64668630762026,286.7315774313174,287.6559438784607,287.5422333115712,287.1464407425374,286.53992519248277,285.9562353952788,286.2532102591358,286.94489680742845,287.2007952556014,286.8670689468272,286.46821014629677,287.11592657957226,287.34698068210855,287.1791447503492,287.82378169428557,288.0226681032218,287.5178074352443,287.95564471697435,288.7281947247684,287.916249812115,286.9284047083929,287.4509894712828,286.96508784173056,286.8484270675108,287.57134313415736,286.905727614183,286.0615419135429,285.85755657963455,286.6151700611226,286.94742723042145,287.2220086120069,286.83558072615415,286.2125074407086,287.1003071567975,286.2111210594885,285.861209675204,285.1688633575104,285.63598579354584,285.85428367415443,285.2036329670809,286.1038132077083,287.0112031190656,287.9527286323719,287.49521872447804,287.97583113843575,288.72298556473106,288.53288668440655,288.69919970817864,289.1345729967579,289.224913676735,288.59982942184433,288.62298279162496,287.90170070389286,288.2093423921615,288.42206413438544,288.81421116553247,288.7480977186933,287.92193238204345,288.59723446005955,287.7010257495567,288.42659523151815,287.44611528050154,286.5290806791745,286.82921510143206,286.4579426809214,285.76573039079085,286.6641119760461,285.9585593310185,286.8771386235021,286.0645106108859,286.1952784610912,285.8519021868706,285.3299497119151,285.2274289582856,286.0960181504488,286.35175265651196,285.4338154802099,284.7887763399631,284.6300100646913,285.4881351971999,285.0957528576255,285.8057563449256,285.3767983959988,284.41360759874806,284.1611002921127,284.0454622628167,284.21226166794077,284.53153888415545,285.03052611555904,284.06902907555923,283.47437577927485,283.2343138642609,283.75481409719214,283.8633016576059,282.9403601838276,283.1619694996625,282.9526243447326,282.1902986080386,282.03820432908833,281.20097288582474,280.2254281779751,280.3331726989709,280.7211516131647,280.8506057905033,281.35196463391185,280.99002721579745,281.0318846530281,280.89724135771394,281.24938910314813,281.4456163002178,281.04253561235964,281.18581028468907,281.0959581374191,280.4823290645145,280.62313031125814,280.7780816471204,280.7724650497548,281.0484667546116,282.0288490820676,282.68877963908017,282.6512622088194,283.43056508293375,283.29840209381655,284.0788854272105,284.03265274269506,284.6617389395833,284.15793226705864,283.47980225272477,283.74569473741576,283.8807830042206,283.60617723409086,282.6736330888234,283.48730084858835,284.37781689642,283.8469686359167,284.0868371562101,284.69562140479684,284.5667719664052,284.3002392812632,283.60624784603715,282.8879323718138,283.093741259072,282.77018753252923,282.55389009509236,282.6476688818075,282.070824644994,282.8852958572097,283.39218056900427,283.4864460756071,283.2878723205067,282.4145991229452,282.57891488913447,282.7262029252015,282.2085431236774,282.6492496719584,283.4283500597812,284.27748158434406,284.8568232296966,285.13581121107563,285.54049690347165,286.2705130437389,286.709052731283,286.9231624826789,285.9917682125233,286.02649233164266,285.30664888676256,284.38366882363334,284.13847258128226,285.0546878245659,285.7392308781855,285.7928677094169,285.81260290788487,285.17583875218406,284.28344996413216,284.48667620215565,284.1111030690372,284.8778578150086,284.07676923135296,283.3183384439908,282.4233162421733,282.7143976325169,283.0178978173062,283.36206511827186,282.9626497486606,282.12798655452207,282.61097016884014,281.97385768964887,282.038142059464,282.2374352393672,282.32206098362803,282.17159848846495,282.7470803563483,283.15182402404025,282.74165179859847,283.5811935043894,284.039637343958,283.8223868892528,283.7997469427064,283.61595641681924,283.8839801340364,283.61118141468614,283.0357561474666,282.73129641404375,282.6096703885123,282.2342525520362,282.477262864355,282.1311461664736,282.76720925746486,282.88014616584405,283.09215265745297,283.9657827047631,283.7632602294907,283.72629085415974,282.892531724181,282.68655423121527,283.02920015202835,283.3682486200705,284.084252751898,284.75062590278685,285.21372267603874,285.72912899730727,285.6734875361435,285.9594333223067,286.4712059092708,286.3726816717535,286.3673247983679,286.9310631947592,287.30795003380626,287.06582950241864,286.3596378802322,285.5049057556316,285.37487877253443,285.6813575862907,284.7174229519442,284.1549311024137,283.5345293567516,283.19300910970196,283.04206635057926,283.9433107180521,284.6006979942322,283.6884632622823,283.64054619707167,282.85014086123556,282.2545014647767,282.6290089110844,283.4900443595834,283.13743677176535,283.7377667441033,284.34168679639697,283.8187632174231,283.5635872068815,283.2264856947586,283.5994677944109,282.65389778930694,283.57714356761426,284.44166335836053,284.9374538208358,284.7309382413514,283.80208021681756,283.49921885319054,282.5370391206816,283.3866948331706,283.47770554432645,284.2922182576731,284.46485565882176,284.5394929838367,284.5143283284269,285.3842986142263,285.7176816482097,285.35321613773704,286.3413745588623,286.48949412442744,285.9160189027898,285.59919167263433,286.26384221902117,285.8433211450465,286.80430515948683,286.4112448920496,286.04380867863074,285.57122137444094,284.7050015111454,283.9918997376226,283.22869116440415,282.23262494197115,281.76344808610156,281.64715218823403,281.3183725448325,280.3880091831088,280.79091650247574,280.7855676612817,281.50857135886326,282.3606161563657,281.63022081088275,281.752327630762,282.10211937036365,282.5567365833558,282.130184113048,281.57551846373826,281.01974268769845,280.4157962240279,280.9238665406592,280.2052449067123,280.91227088542655,281.37034143460914,280.5714407674968,279.9181850175373,279.2143725291826,279.78453715890646,280.29009698471054,281.1233671801165,280.9806961850263,281.5675057009794,280.71414897590876,280.92177899507806,280.3809814332053,280.08840070525184,280.9209165428765,281.54184949351475,281.8199509559199,281.32225096970797,280.42884637694806,279.9282049513422,280.7589752115309,280.9648099136539,280.97936422377825,280.41973602678627,280.43175724707544,280.1893023145385,280.18242544075474,280.773209746927,281.66422469122335,281.25274936296046,280.58898227103055,280.29720271611586,280.2686810931191,280.6254113088362,280.06520050624385,280.96215302171186,280.28540976019576,280.0360801164061,279.4420902663842,278.4701265282929,277.7205719589256,277.90500866109505,277.49313998548314,277.8283421257511,278.8251471403055,278.31358183640987,278.4369369451888,278.169554263819,277.24069056333974,276.8157384926453,277.14836233342066,277.6444407440722,277.6510824873112,278.5784428343177,278.3075326955877,278.66570630297065,277.71963935997337,278.46981989219785,278.9091244097799,278.54131720075384,279.4743933947757,280.1535223745741,279.6418275409378,279.69419056130573,278.9454076704569,278.8822616939433,278.26823929231614,278.3018354861997,277.3901625080034,276.4875219957903,277.09367282595485,276.6532306270674,276.67874714080244,276.4171065283008,276.5105535509065,275.5459368187003,276.4667754396796,275.6635883715935,276.5682800905779,276.36299770185724,276.95729839103296,276.0943942540325,275.7105856752023,276.4765624040738,276.9796810676344,276.87652008701116,276.2045323131606,276.1210717004724,276.7485778592527,276.34800225216895,277.1377958348021,276.45112380059436,276.99235061975196,276.00784211745486,276.38981484482065,276.1217989115976,275.33396016061306,276.0598971671425,275.43533327430487,276.299057723023,277.12758585764095,276.16989207919687,276.50632784096524,276.905288873706,277.0728952502832,276.44017458334565,275.45365008851513,274.920148357749,275.5834631836042,274.902178298682,274.30395853472874,274.9859726014547,274.39880798151717,273.5933228000067,273.4766902108677,273.52229209104553,273.34354161983356,273.80653188424185,274.48231954453513,273.74074230669066,274.2170597794466,275.1771647464484,275.5291099664755,276.29983728937805,277.03430160228163,276.2149130580947,276.03697744198143,275.1288319295272,274.70701892487705,274.8433721023612,275.7055447557941,276.2623210642487,276.4654411515221,277.2571187647991,277.55444442434236,276.93424249300733,277.64890059502795,278.3511337162927,278.4316212674603,278.4643405159004,278.05033772299066,277.53609429067,278.2575190574862,277.8017158447765,278.542963843327,277.73191048391163,276.97606057301164,277.32472153240815,278.0739202494733,277.4899843111634,277.0298755080439,276.16816836362705,276.26956241065636,277.2011831435375,277.1938006361015,276.80848518619314,275.94733981229365,275.32126298872754,275.6729637621902,275.78502393048257,274.81605304731056,275.2460610563867,274.90175454644486,275.48898685676977,274.7724731480703,273.8435425166972,273.5180669152178,273.1819389341399,272.9646595166996,273.3196918242611,272.3960811966099,271.53491761069745,270.7202919078991,271.1979727935977,270.38521896488965,271.03843251941726,271.20377068873495,271.20588813815266,271.4153446210548,270.4747645971365,271.1866980995983,270.9324900768697,270.83553555980325,271.5117430710234,270.6629166333005,270.40230847895145,270.25147138210014,271.22006914252415,270.8801407520659,271.8666184223257,271.13818489108235,270.78230685554445,271.16174562089145,270.99508845061064,270.09586662845686,269.1031499202363,269.85481994831935,269.9914871514775,269.82526572514325,269.66429269500077,268.78135310532525,269.3500219578855,270.09457642026246,270.3782793926075,271.0681695784442,270.36182412551716,270.1794475214556,269.5956139434129,268.9580743475817,268.3081647907384,267.6233652685769,267.2409339477308,267.0561522343196,266.61831638310105,266.3010698235594,265.99044644553214,265.0262730801478,264.3598971874453,265.22791741928086,266.1711123632267,265.92636749939993,266.35952574014664,265.6683620829135,265.7166225146502,265.8159493836574,266.3546217326075,266.51519758300856,266.6763343475759,266.6402276051231,267.05421256273985,266.13688708422706,265.44546545576304,265.39238200336695,265.9080016221851,265.41554049309343,265.9379109577276,266.7378452778794,267.3057879428379,266.8146967124194,267.6155879874714,268.34863085858524,268.23941877670586,267.3516631820239,268.3491015653126,268.57702015386894,268.98555895732716,269.13621570076793,269.8327763285488,268.99995309626684,268.13331810198724,268.61841786978766,269.0964768687263,269.2116579315625,268.4631079877727,267.9301106981002,267.84876729361713,268.08376698568463,268.7444746326655,267.77371221687645,266.7986402967945,265.9905906021595,266.01739347260445,266.05765052791685,265.36619416391477,265.6393990358338,265.03620118880644,264.58562471484765,265.35513831768185,264.9085352215916,265.30501442123204,264.6212664847262,264.08492660336196,264.3844339316711,265.0470540653914,264.5727239768021,263.9318743357435,264.0694448123686,264.61465280037373,265.0984332584776,265.2215278176591,265.1490267207846,265.40643289126456,264.84595022024587,264.26344989473,264.3358482196927,264.8850636621937,264.72476767003536,265.1063313973136,266.0905338926241,266.5776890255511,266.890029813163,266.9770878129639,266.3662105668336,265.77072160644457,264.82619828451425,265.3893875624053,265.27096196915954,265.8702061716467,266.8309062058106,267.49211040278897,267.43535845307633,266.81783745391294,265.9974854690954,266.94400065625086,266.3467591297813,267.0248901708983,266.62321101734415,267.2087216740474,267.08511445624754,268.02650933293626,268.6869064462371,267.72271640971303,267.22962036170065,267.82498161215335,268.19561380241066,267.4148413427174,267.20371487690136,266.486393596977,265.533235124778,266.1070214868523,266.7453510425985,267.74415433593094,267.57189696328714,267.87370530422777,268.72363806469366,267.901546258945,268.7987889004871,268.6271758978255,268.5830452707596,268.8365147439763,269.3888909877278,270.2959988131188,270.8417649217881,269.9464448103681,270.0106131755747,269.74923824192956,268.842849500943,268.6133576827124,269.42974109295756,270.22771312016994,269.44215152738616,269.54970148205757,268.76057773828506,269.7218107916415,268.7923602764495,268.2195844440721,268.47960981260985,268.526937847957,268.15208910079673,268.75094254361466,268.73468956910074,268.1659799744375,267.3170752283186,267.5415749968961,267.1157121444121,268.0397508852184,268.15105909854174,268.70421674335375,267.86195541219786,268.7268738565035,268.170614419505,267.2794657815248,267.07035468844697,266.8141624960117,267.7608532528393,267.9516375218518,268.1437667077407,267.2937685097568,268.24842572864145,267.9711913964711,268.0578536600806,268.1208471148275,267.6553795891814,267.937751237303,267.47849014448,267.19039463670924,267.28904059529305,267.96877286443487,268.65076555730775,268.32568205334246,267.94929713755846,268.3773246319033,268.48988319095224,268.98739791847765,268.1144259106368,268.2238739482127,267.3451669118367,268.0856458027847,269.0587795623578,269.09425712702796,269.5362200345844,269.0801346739754,268.44835410127416,269.30742791993544,269.2766031976789,268.63450350193307,268.0177300735377,267.9144270364195,267.19000278180465,268.12600096920505,267.44169905781746,267.0323257842101,267.02951424382627,266.231335750781,265.6542095411569,266.30810105102137,265.7622719267383,266.1374539178796,265.1854723598808,264.2830388941802,265.18246271600947,264.3568284716457,264.8546729213558,265.2776119071059,264.79825105611235,264.17082045041025,264.987854431849,265.57886979496107,264.76190493348986,264.78185895783827,263.78960473136976,264.68127702223137,265.15630692243576,265.0935488222167,264.7952083926648,265.3600939908065,265.7732657128945,265.5403983206488,264.7901502982713,265.6499139890075,265.57039726665244,266.32615067018196,266.48103123996407,265.5284763216041,265.62462743511423,265.15811349637806,264.4296700116247,263.7818345427513,264.695930828806,264.1840740018524,264.92796095786616,264.8610851196572,265.5804493301548,265.6383490851149,264.8593298429623,265.14231966342777,264.73324341280386,265.61845607915893,266.0956510370597,266.84983010729775,266.3549930281006,266.9805122176185,267.3872216423042,266.70866156881675,267.528075881768,266.85405120812356,267.8135060281493,268.6298562292941,267.8264526859857,268.21881549758837,268.63275041710585,267.75882185902447,266.759478204418,266.490020501893,265.65434188814834,264.755781381391,265.0487396698445,265.5743694966659,266.4766305666417,265.6043222481385,265.10623652813956,264.1592850377783,264.88216733932495,265.74275761516765,266.6642146706581,267.39565041614696,266.4520752746612,266.101217050571,266.9895293000154,266.4250715407543,266.0720217465423,265.0859724879265,266.0605389494449,266.5953665841371,267.26329961791635,266.46172541799024,266.75266799423844,266.51488615525886,267.33342515071854,266.9693951206282,267.0158470799215,266.8182742353529,266.7156522013247,266.3583160373382,266.70300137856975,266.57417112682015,266.7733306111768,266.01938058435917,265.5634809648618,266.2030718107708,265.81591319013387,265.0579721429385,265.96709201671183,266.02497103624046,265.8285463703796,265.9677716298029,266.2147726700641,266.87997805839404,266.1243937877007,265.51164992013946,264.6003559506498,263.60906612034887,263.14659145521,262.5742902113125,263.34414769755676,262.94177151843905,263.8660453595221,264.3867566236295,265.0376131837256,265.33595859631896,264.92888272413984,265.0876164729707,264.3294837055728,264.47203667555004,264.0128960935399,264.73921332415193,265.2610578648746,265.8761035008356,266.428277451545,265.54745491500944,265.42292485106736,265.12034355523065,264.75453305384144,264.8276313338429,264.40715770283714,263.874888102524,263.8666603313759,263.8129291245714,263.78798533417284,264.7812906084582,265.71332841785625,266.3736993763596,265.88750060787424,266.52115848241374,266.20192898763344,265.7456514015794,264.8263855627738,265.0650017517619,264.47075952077284,264.7735752076842,264.2014309298247,265.06952945981175,264.3495023720898,264.27476371172816,263.31084911571816,262.7258473462425,263.5224999971688,263.8899651672691,264.3986738761887,264.67386777931824,264.7568272994831,265.3200733582489,266.00351629871875,265.9320800299756,266.5777494669892,265.71329955291003,266.14872134802863,266.55781203787774,267.09831258049235,268.00381271820515,267.04945474117994,267.81376613816246,268.4560060459189,267.6507443347946,267.982196951285,267.1137823909521,266.368843018543,265.87914948165417,264.96180915180594,265.4349429802969,265.3884034869261,264.575340309646,265.2369718970731,265.9681006842293,265.7518211612478,266.3782338905148,265.9927792418748,265.367751325015,265.4450839930214,265.35059314919636,266.3196215988137,267.25195708684623,267.9122190619819,267.6671897354536,267.8883430431597,268.39775508642197,267.6025152700022,267.22872523684055,267.9323896425776,268.85704766819254,267.87332110339776,268.2483858028427,268.96252473723143,268.89503449061885,268.81927342526615,269.0438210698776,269.4855266287923,269.2933553257026,268.68725307798013,268.66845671925694,268.3642539861612,268.5088368137367,268.86384962918237,268.85605720290914,269.50827232468873,269.7893871711567,269.64063734794036,268.9585034539923,269.6692863376811,269.8875643373467,270.30961820995435,269.97569351503626,270.96631474839523,270.2437564074062,271.11759652616456,271.7269683619961,270.8541571982205,270.2548291957937,271.06457881629467,271.9830817808397,271.78389047598466,270.98124134354293,270.93737334851176,270.9371157758869,270.96735122893006,271.5169030413963,272.5146973715164,272.20469818776473,271.7272140099667,272.24764204071835,272.72990972269326,272.88392097176984,273.2023567883298,274.09339681407437,273.4543188032694,274.23116937838495,273.6771735493094,274.39658398739994,273.6508817463182,274.01297960523516,274.5211806502193,273.8373394389637,273.49598920252174,273.258023774717,274.14802275784314,274.2441165409982,274.67334456415847,274.7758043464273,274.79895572690293,274.8674335279502,273.93139752931893,273.3558548116125,274.2942060912028,274.62716723186895,275.475597913377,275.1059824102558,274.4925116864033,274.3457084898837,275.1133498339914,275.25090762088075,274.39442442171276,275.0258100829087,275.2429268984124,275.22532564541325,276.10658890521154,276.6417672233656,276.7808368410915,276.169458583463,275.5491236834787,275.01679886318743,275.48587053921074,274.9174878206104,274.37937494181097,273.6714252298698,274.1633630436845,274.26329531380907,274.0736342794262,274.3032719073817,273.63994060410187,272.68086227355525,272.7422681110911,272.16433643037453,271.825910882093,271.9251991286874,272.5399804087356,272.5121729038656,271.8543107928708,270.9672815822996,270.5010759313591,270.55893057072535,271.1082681212574,270.9861270976253,270.7238503661938,271.4403036972508,271.83140158094466,272.73958477564156,272.760725017637,271.8865705751814,271.2814048207365,271.0135156940669,271.041087616235,271.83761674771085,271.80668127257377,270.9435553671792,270.684827983845,270.7116378531791,270.9012018055655,271.4781194673851,271.3826990183443,272.0685037574731,272.29541291017085,271.33147645602,270.89957825187594,271.4708307958208,270.47224216349423,270.3742312625982,270.2165813469328,269.3384621469304,269.3230673633516,270.0026911632158,269.70601469045505,270.11085149785504,269.7872137031518,270.2671966738999,270.622257753741,271.46906984969974,270.5337911355309,270.63683782331645,270.89396551111713,271.66152547160164,271.18690333981067,270.2114525907673,270.3634695201181,269.8106905911118,270.3466573697515,270.5878953537904,270.29998890543357,270.5958649306558,270.1616522911936,270.53505205223337,269.87452238751575,270.2769885980524,270.9038325319998,270.29300883831456,269.61731368210167,270.12337328260764,269.34735104674473,270.1671638004482,270.8619585945271,270.89696340914816,270.5005567264743,271.3377771573141,270.59384223120287,270.35751497745514,271.3145188037306,271.57532166549936,271.3251672568731,270.5424571670592,269.7805165327154,270.7432186352089,270.7812002552673,270.66796252829954,270.2816687640734,270.9604604844935,270.8883514655754,271.8655095002614,272.18442222615704,272.2694630715996,272.98277722112834,272.29093034239486,271.6932876352221,272.2050709943287,272.4188505951315,271.88209106214345,272.002789826598,272.8933096691035,273.33023369079456,272.49784869141877,272.40869196597487,272.00613222038373,272.64800365129486,273.52429799130186,273.17531788535416,273.9785726037808,274.12548019504175,273.3426103894599,273.7909763669595,273.7640035697259,273.6386819225736,273.60194130335003,274.43778111506253,273.9774075313471,274.5000693905167,273.9579827412963,274.66674436768517,275.25868108309805,275.48032265855,275.57021603686735,275.0731122707948,274.99919183319435,274.36916693113744,274.4681254210882,273.7624581903219,274.74160272069275,274.7053741342388,274.3945343620144,273.91107259271666,274.5179548775777,274.530793689657,273.57516230177134,273.4374028039165,273.66953189484775,273.673355740495,273.5531491120346,274.42781510576606,275.18522457266226,275.30308539420366,276.0493212095462,275.8355060419999,275.56091666873544,275.9758237693459,276.590203886386,276.44255883432925,276.7177798883058,276.98589921416715,276.9176899031736,276.9780227057636,276.5406392668374,276.3029622742906,276.5590908708982,276.8913959180936,276.45420648157597,275.59967721858993,276.0832752524875,275.7151590222493,276.399951425381,276.60089380387217,276.86225936887786,277.7674865294248,277.1258954484947,276.840738392435,276.09349706210196,276.9391766488552,276.79624341987073,276.5831921119243,276.6412621755153,277.6243114732206,276.69683024985716,276.19472192274407,275.6633192258887,276.1781107936986,275.35265445290133,275.3952507604845,274.91809805156663,274.9663519822061,275.93271084968,275.30985240917653,275.06220456166193,275.31860964000225,276.30043352628127,275.45960160391405,275.8194863675162,275.31364843435585,275.7850742349401,276.3947937814519,277.2343485876918,278.19414586480707,278.30398059030995,277.4179308023304,276.67755364999175,277.13682252028957,277.58932118536904,277.71983467275277,278.02971951989457,277.2165237776935,276.8290461488068,276.37388794403523,275.50210035126656,274.73608986195177,275.66790840029716,274.80377146042883,275.6802443326451,276.462482619565,276.103259307798,276.58015508390963,275.95164231723174,275.51161235617474,275.70152692869306,275.18657744303346,274.89346312265843,274.2633616020903,274.2964853057638,274.6865790733136,274.2710494901985,273.28797118971124,273.5614808970131,274.2855215109885,273.2884112894535,273.15391183365136,273.1130348062143,273.1812300244346,273.8822542373091,274.056529445108,273.54248961107805,273.5786730204709,272.8472639606334,272.1448782510124,271.2425743979402,270.9217850761488,271.57322341762483,272.0479858298786,272.94992979383096,273.081025081221,273.33467448456213,274.1705793873407,273.9768203208223,274.4116118219681,275.1322303903289,274.80327191529796,274.33822932606563,273.7523773089051,272.7662674449384,272.8731375904754,273.62978256633505,272.7077736989595,272.2021034308709,272.63529815524817,272.25081252027303,272.09215630730614,273.071024119854,273.98310800036415,273.0027952264063,273.330429374706,274.2570474166423,273.9215574939735,273.92527872044593,273.6529563488439,272.7450417065993,273.65770667558536,273.65617077518255,273.71675840066746,273.8456366364844,273.9942370611243,274.19918494159356,273.5295743062161,272.8291523740627,272.7046516747214,272.7031641472131,272.41238124715164,271.53134828433394,271.6083281603642,272.45247276639566,272.99834275757894,273.89894461492077,273.4370317296125,274.07183125801384,273.12829766748473,272.2657205546275,271.7064288225956,270.7459346605465,270.97672708379105,271.11633441457525,271.64629772119224,272.2330585247837,271.4965410125442,271.9646476372145,270.9928547013551,271.7629636982456,272.74924106616527,273.62484160484746,272.93925287621096,273.22328380774707,272.81735724164173,273.2382696135901,272.8339347024448,272.1994969206862,271.78658690908924,272.72948785685,271.9911120329052,271.2516166353598,272.1881108703092,272.9137612679042,272.1487886002287,272.3443025685847,272.6816184739582,273.57674263976514,272.5848410949111,271.7671262952499,271.21054362971336,272.12965823803097,272.72278294013813,273.2551259859465,273.98678953247145,273.7620831760578,273.89436095161363,274.6430337750353,274.1823751470074,274.74289473425597,275.610611488577,275.67031900025904,275.2357016950846,275.9444890045561,276.6570508778095,276.29682025918737,275.44956718804315,275.9425939763896,274.9660624479875,274.7685929723084,275.3663593339734,276.3376708040014,275.84005241980776,276.22494967421517,275.36742924991995,275.7763950112276,274.9709599232301,275.2757430784404,275.6403494621627,276.58035066118464,275.9779251506552,275.929325344041,276.83685302268714,276.7334122094326,276.58350437134504,276.4544472852722,276.1038555209525,277.07416572468355,277.1042030090466,277.96618439117447,277.4116303711198,277.53876241575927,278.49493324104697,279.25996079761535,279.92456518812105,279.3286313316785,279.2797706373967,279.88740003528073,279.93795154523104,279.5968084493652,280.28067164635286,280.7167076016776,280.2730214013718,279.5489615588449,279.5016431543045,279.8791310535744,279.30460079945624,279.9512505289167,280.3435046914965,279.73697699187323,278.97771013667807,278.3782628956251,277.5214235582389,277.54283766867593,277.12127222679555,276.362065479625,275.9153890153393,276.4593977648765,277.34660353371873,276.78075025510043,277.0807065735571,277.0669401702471,276.3225667369552,275.5951843117364,275.0107439714484,275.2575988462195,275.3916274146177,275.3158970051445,274.6750415931456,275.2574462206103,275.0271344855428,275.3109995322302,274.64465606724843,274.8930999105796,275.8381552188657,276.45463062729686,276.8040097793564,276.51862604822963,275.68147630803287,275.5109854754992,275.7541275769472,275.15028242440894,275.0590210435912,274.82631276454777,274.724042174872,275.08431219588965,274.8774880305864,275.0770427486859,275.26969058904797,275.8582813795656,275.1815046980046,274.75305194966495,274.01422249665484,273.5114322411828,274.3038170756772,273.54422238934785,272.9573791460134,273.7726095537655,274.018532381393,274.6797112394124,275.26828400045633,275.1106453118846,275.1662071151659,276.10501203127205,276.87583942338824,276.3130214130506,276.73659651586786,277.0955549683422,277.5596114243381,277.1243344419636,276.9695864082314,277.5405915318988,277.1608737660572,277.82334668794647,278.6146574411541,278.1930615189485,278.50175759755075,277.7719509676099,277.1560253291391,277.6275108754635,276.68114732718095,277.2565261567943,277.03517441404983,277.65388001548126,278.6280588922091,277.6360658542253,277.5230476199649,276.7673570038751,277.73049039626494,277.25919485185295,276.3642068901099,275.98297007614747,275.7234538416378,274.7390605020337,274.78095584735274,275.27921813493595,274.7677716878243,273.9903495698236,273.01521850703284,273.6202345737256,274.5513791628182,275.46916991565377,276.2749622040428,275.86729764565825,275.38161786133423,274.94166031852365,275.2192027498968,274.90177333308384,274.2271683914587,274.0180510794744,274.7463182201609,274.198701958172,275.08314703498036,275.7316375076771,275.71377869229764,275.9391350839287,276.7696172501892,277.35792647721246,277.1645844867453,278.0846863714978,278.1510415272787,277.8513238201849,278.2062812903896,277.964409197215,277.55436562607065,277.96590567333624,278.18780671525747,278.5012469245121,279.3839083048515,279.92955479957163,278.9914393858053,279.7584346528165,279.6013800846413,279.87405361933634,279.05568715790287,279.3720702617429,279.43715489981696,279.5460475520231,279.89327856199816,280.69849078310654,280.72433741251007,280.99248494021595,281.2269143955782,281.7417234056629,282.67998044611886,282.33481335267425,281.4752192562446,280.8785144141875,281.67581293545663,281.96447111852467,282.3743045455776,283.0621949834749,283.77320499625057,284.30659340228885,284.7456890307367,284.84293767483905,285.1225369684398,286.09902336867526,285.12907689623535,285.32035816367716,284.7891730880365,284.5488261738792,283.8147625592537,283.42329265596345,284.3742038910277,284.6273397086188,284.4720268244855,284.65919281868264,285.2586759305559,286.2019236944616,286.9236689219251,287.56924843695015,287.7906906455755,288.28093655686826,288.31437063775957,288.44013582123443,288.9593198276125,288.5578066240996,288.1002421346493,288.95861109765247,288.99085787590593,289.8665883326903,289.3539104592055,288.521003308706,288.98479877924547,289.60864665498957,289.39517149934545,288.48609063075855,287.7009734287858,288.17172947805375,288.2519998596981,288.28942016139627,288.3154050349258,287.6994103677571,287.33946477621794,287.1713198213838,287.2562145004049,286.97913890052587,287.36059665028006,287.9207601840608,287.8519741659984,288.207769758068,288.60487896902487,288.0094521623105,288.3618457955308,288.4554249807261,288.5213721948676,288.07678562868387,288.72642139485106,288.852559230756,288.2991606583819,287.6367382714525,288.14810918970034,288.6935060271062,289.13024026714265,288.77206477709115,288.87349042249843,289.1347347679548,288.97902952926233,289.475216826424,289.851300525479,289.31213763775304,289.2066895691678,289.88735146075487,290.07276921346784,290.48915325151756,290.4335974799469,289.70893468894064,289.1749963252805,290.159182026051,289.8112138803117,289.9705023020506,290.06061292625964,289.378561753314,289.7400251873769,289.4686685046181,289.0265980674885,288.3253574995324,288.2076780218631,288.18325291434303,288.42957118339837,288.6544053866528,288.10760491201654,287.7781819063239,287.1927191079594,288.1514860945754,287.6068835905753,287.1053439662792,286.6503670285456,287.4083655048162,288.0081890085712,287.0750258434564,287.9345483169891,288.2366868890822,288.6292421463877,288.23782569309697,287.2819509943947,288.07285220129415,287.49291041865945,288.0669419579208,288.61792229674757,289.49433547537774,290.27120204409584,291.1641240660101,290.47907159337774,290.68550931848586,291.1145244697109,291.230338125024,291.37955716159195,290.66441576881334,290.9930946431123,290.91297245630994,290.50328650698066,290.2501271679066,289.3596123671159,288.5527944788337,288.8837808771059,289.1175659080036,289.6468501132913,289.49844985827804,290.2771569560282,290.1174584249966,290.95796469412744,290.3850762145594,290.7980030272156,290.26917853113264,290.6532439789735,291.5336598237045,290.9990577567369,290.46184005681425,290.3188061956316,289.86879488267004,289.181311739143,288.35457366192713,287.7307158857584,288.62943538976833,288.05938461609185,288.7934707766399,288.2022552373819,288.8055820441805,288.33266474306583,288.82140703033656,289.5109445718117,288.60587142640725,288.5048430073075,287.8337848749943,286.8459449405782,287.0085008707829,286.6413532253355,285.95048823952675,286.6328833149746,287.52127117523924,287.9942870126106,287.8318539047614,288.4311084356159,289.3432436604053,288.9490268114023,289.19550119061023,288.9191050576046,288.0995266153477,287.7611861107871,286.8263917672448,287.52048304490745,287.95866842521355,288.5020085689612,288.60415330994874,289.5517291803844,289.0720134549774,288.8450307366438,288.60012442525476,288.7525163521059,287.79461495531723,287.51048532966524,288.37344445241615,289.2335692355409,289.1371389385313,289.199594957754,288.6162534914911,289.354700289201,289.02241397695616,289.42617976106703,289.5711655560881,290.22409637784585,289.82452590437606,289.56780344154686,290.45849705766886,290.9039580482058,291.10535517381504,290.97923710523173,290.37902200827375,291.19033780600876,291.55206379666924,291.2148028020747,290.79187531303614,290.12184909777716,290.0511162481271,290.65932171372697,291.1698483033106,290.6440211641602,290.310524860397,290.3418041989207,289.35038207517937,290.14418989093974,289.21007338771597,288.5746992640197,288.1399659216404,287.64167933538556,288.2414465425536,287.57191041717306,287.36460446892306,287.6562595255673,286.78047393402085,286.261770659592,286.3976103574969,286.85739786410704,286.3198356577195,286.65445241099223,285.71847563562915,286.1050382712856,285.8766091335565,285.1822982747108,284.8859382881783,284.52934179920703,285.1739787114784,285.56803700421005,286.2171251429245,286.9094355488196,286.06536648981273,285.72434748196974,285.7865304239094,286.2028522551991,285.22350844042376,285.8433291167021,285.50087738456205,285.12966729095206,285.6731350370683,284.7115482278168,285.2186622088775,285.69321172731,286.16053705709055,286.1469864314422,285.57098039705306,285.7620400269516,286.4847246273421,286.4758190694265,286.132266913075,285.3187203439884,284.46373187284917,284.63040384138003,284.47513926494867,284.1029518158175,283.2532159117982,282.6000662925653,282.061867385637,282.9652742110193,282.5774549283087,282.110835372936,282.9911044742912,282.85592107335106,282.5190033148974,281.87870621774346,282.3329412494786,282.33025448117405,282.581491262652,282.9906241376884,283.40284802531824,283.76965769473463,283.0251909606159,282.7356039681472,282.7167364428751,282.31701568095013,282.87106398819014,283.1322222100571,282.84963233815506,283.84894989291206,284.5874280515127,283.67376225301996,283.8775891601108,283.23168142698705,282.6362019707449,282.82672546757385,282.9935360387899,282.7734675691463,283.5540037644096,282.8784925402142,283.4290078985505,283.4655608232133,282.8936356063932,282.33392001735047,282.761546744965,282.979747323785,282.47200433909893,283.17358070472255,284.05174391856417,283.98220013128594,283.7198349740356,284.5064821331762,283.9132836367935,284.81613501161337,285.2214637794532,286.1109407264739,285.5498607084155,285.98561803391203,285.8245096318424,286.4494178663008,287.0746817635372,286.587320309598,286.39160197833553,287.00619069719687,286.91733912192285,287.4684303510003,286.5063517410308,286.6372400918044,287.29901384934783,287.67805766360834,287.46473141619936,287.55140826525167,287.6894532744773,288.4563636612147,289.2539849919267,289.5409132987261,290.5008431021124,290.2064671772532,291.13889916753396,290.6493131071329,290.2484238627367,290.9805517406203,290.14060110319406,291.00733218574896,290.44650335563347,290.7422926002182,291.0629827543162,291.79083782294765,292.3032119530253,293.28750467766076,293.1083117844537,293.96560025494546,293.2741153235547,293.9380541825667,294.62849966203794,295.48802646715194,295.5155260004103,294.5969729698263,293.8536442699842,294.6849931087345,293.9889973537065,293.49361698376015,294.38911637151614,293.98152733547613,294.75426488835365,293.92820673435926,294.4994002454914,295.2189703313634,295.0124619998969,295.56892565684393,296.3396323514171,296.7867829068564,296.09537827782333,296.9568630028516,296.3377234307118,296.80684283189476,295.85634233569726,295.3616983368993,295.26045304117724,294.4749950817786,294.42497426550835,294.12012083642185,293.96925502456725,294.9602641533129,294.5501037458889,294.2289843619801,295.18493558699265,295.8189464393072,294.8625932680443,295.5039570713416,295.2430645618588,295.28249908890575,294.58848593430594,294.6862070285715,294.309158699587,294.7343545546755,294.4005682412535,294.62803167896345,295.3473247499205,296.25279649393633,297.1750618480146,297.7539061587304,297.0561887472868,296.95290655177087,296.53832648834214,297.3004862261005,298.18294896557927,298.3087834683247,298.16887979162857,298.5635373466648,299.54076526034623,300.3465423323214,301.18983410671353,300.44425639603287,301.2318959310651,301.85680128261447,301.65035813022405,301.8477785042487,302.136431992054,301.8301922273822,301.05891933618113,300.4605102343485,301.26990176318213,301.98689369112253,301.69525620155036,302.65559890540317,301.9473635656759,301.80567641276866,301.64243421005085,301.83400374790654,302.01105501828715,301.20738495513797,300.5038110325113,301.0989210996777,301.07587286131456,300.54747354099527,299.75923237297684,300.23904798319563,300.1027701725252,300.7658262834884,300.9163808999583,300.4496450442821,300.39239400811493,299.64133742731065,299.0187721182592,298.3625776586123,297.4896621061489,298.3652686732821,299.0808969885111,298.8117822529748,298.6874604145996,297.9626237731427,298.9144173245877,299.73547382000834,299.6496972586028,299.10300571192056,298.49669198552147,298.0154128554277,298.0994868823327,297.48735924763605,296.5191363254562,296.79218815872446,297.37683393992484,298.19958257861435,298.83941317815334,298.66371818678454,298.78068505181,299.5974590885453,300.23170157196,300.39121931558475,300.28720805794,301.12249374901876,301.476687587332,301.08565209433436,300.5862286314368,300.0002763182856,299.0312301386148,299.3201511804946,300.2672120705247,300.4478053697385,299.77946486277506,299.7652796735056,300.6982690282166,301.35022494057193,301.5045171403326,302.3041925942525,302.4457459044643,303.35981687530875,304.20962195750326,303.69959097355604,302.7240010215901,302.0998271224089,301.6912219999358,300.8497641226277,300.5789478775114,300.7752951621078,300.81185269355774,300.23761441372335,299.4225383657031,298.5058247023262,298.27602294133976,297.5237471438013,297.30173884285614,297.96132355183363,297.85331011842936,296.9925613924861,296.3306247345172,296.9966170177795,296.5113015808165,297.32483980664983,298.13635458704084,298.45168148493394,297.9076477685012,297.04208464501426,297.03871108358726,297.86892898380756,297.50087003363296,297.52209024270996,298.50015368917957,297.8794854269363,298.3930028262548,298.5178058729507,299.3383349655196,299.83625033777207,299.3745271661319,299.9349564574659,299.4787308438681,299.9044514396228,300.01987944729626,299.2180846086703,299.7079602377489,299.14773919899017,298.6543204174377,299.3435930139385,299.2313985787332,299.7999879941344,299.2817842285149,300.2642937055789,299.9294942235574,300.68435840075836,300.5386956650764,300.71930870367214,301.5028905137442,301.7829075199552,301.992119578179,302.4729343377985,303.3622230649926,302.9184288191609,302.1121012372896,301.95144601678476,301.5649367389269,301.5921314614825,301.46633574413136,301.58562498213723,301.339873616118,301.0331990499981,301.02295951684937,300.7960388753563,301.35124964639544,302.0937986574136,301.2203088887036,301.1674244264141,301.8181687616743,301.6623956365511,302.01494174124673,302.08018980547786,301.5641051577404,301.69431424187496,301.20056511461735,302.03436278924346,302.79525440977886,303.1218403847888,302.4712652261369,301.71211398858577,302.53743167454377,303.316530009266,304.0955701107159,304.63166355574504,303.8593523129821,303.854865942616,304.4325362802483,304.7066540378146,305.55495264707133,305.27854181453586,305.17596513358876,305.19995623640716,305.965305890888,306.17164107691497,306.91495345905423,307.81563376355916,307.5261694290675,308.12428947212175,307.98413541028276,307.77571170963347,308.69888090062886,308.46232694387436,308.7182804387994,309.1278709070757,308.8621255606413,309.06898630131036,308.41712407628074,307.6028312477283,306.7470088945702,305.8531343527138,306.737967915833,306.2343031275086,307.18332284502685,306.4132361174561,306.88951543485746,307.7258591405116,307.6880764584057,307.67369807185605,307.5077979178168,308.4195366743952,307.51745986612514,307.2382501140237,307.201349820476,307.87550584599376,307.7431009756401,308.01128139765933,308.13884205324575,307.67086949246004,308.2510753078386,308.19989645667374,307.46908524027094,308.4594662366435,309.2403319007717,309.835001910571,309.47568639880046,308.8889876762405,308.63376455008984,309.5752907721326,309.71490927087143,310.2885712105781,309.8230590238236,308.8944409447722,308.30913068167865,308.00183727033436,308.8254511752166,309.63666476355866,310.60047466820106,310.90134921390563,310.3515503150411,310.6013599806465,309.72446587169543,308.9855056661181,308.2218909743242,308.086073144339,307.28892754763365,307.7325450973585,307.97014567721635,307.40024948725477,308.2500846828334,308.27036356553435,307.4863791167736,307.8546337024309,306.9906078558415,307.3750908742659,306.98617353336886,306.8564659040421,307.0306393825449,307.3054470028728,306.79189875070006,307.5052932263352,307.6791103091091,308.231399116572,308.93033150956035,309.47431537043303,309.3703364972025,309.6303555755876,308.91170309484005,308.98773896414787,308.0872649070807,307.2770703639835,307.95340803731233,308.5639946148731,308.71481170412153,308.90325037110597,309.2304701488465,309.222139751073,309.4848316577263,308.81188025092706,308.30831982800737,307.6216823933646,308.14145820913836,308.5025620730594,308.2923599546775,307.7095007551834,308.48378549702466,308.61314456537366,309.34677642863244,309.82626908365637,310.07569614565,310.8556663081981,311.0709163551219,310.53364937286824,310.758065092843,309.89436990208924,309.5135775618255,309.9994815425016,309.02130598016083,308.4307848098688,309.41756499465555,309.40438297437504,308.5351382265799,308.2179338601418,307.75236486876383,308.1007797429338,309.09449532581493,308.6510300389491,308.276206525974,307.92025040555745,307.90706146974117,307.27831332199275,306.87947487365454,307.79622714594007,307.2323333369568,307.6038530129008,308.2797980969772,308.76782588101923,307.9814900769852,308.4388894215226,307.4826497337781,307.6342279049568,306.8235025056638,305.9280543262139,306.83130089379847,306.6352392556146,306.97972821444273,307.96356283687055,308.08639666391537,308.62589060142636,308.7637518150732,309.2975899768062,308.32365995878354,308.34413211233914,307.6179028279148,306.93063186481595,306.4119732519612,307.28283212007955,308.1550957625732,308.3421634840779,308.99180931970477,309.2337020058185,310.0114209498279,310.0296112378128,309.9027775619179,309.2742218570784,308.53597836522385,309.373937393073,309.95420866506174,309.34899190906435,309.1689333599061,309.1091250227764,309.18955287197605,308.95017720293254,308.2246864507906,309.08167266473174,308.34875018009916,308.7802941761911,308.0768445227295,308.58645061729476,308.77153451228514,307.933865621686,307.14152058167383,307.11872106418014,307.77957313042134,308.77602985687554,309.70994006004184,309.0116748982109,308.42857212387025,307.6518493061885,307.6377192926593,306.7153023155406,306.0282116243616,305.9424215257168,305.94288064632565,306.0386368497275,305.74412631895393,306.0006090644747,306.44139621267095,305.6163424416445,306.4686115346849,307.38089706841856,307.8303164136596,308.38689258368686,307.9576627877541,307.21272672666237,307.43850223207846,307.45258939266205,308.097271266859,308.573588039726,308.6352768819779,308.4025532370433,307.44284415384755,307.8378236279823,307.92219892702997,307.2692223782651,307.37418684968725,308.32201405474916,308.39832293754444,309.1886957702227,309.8368268623017,310.11128925764933,309.1139760990627,308.2594189941883,309.12589259585366,309.26125942589715,309.0947994920425,308.1286128568463,307.2790396101773,308.24622103897855,307.50294426223263,307.0743750734255,306.8613577974029,306.98512540152296,306.8768848432228,306.14765627728775,305.86918873200193,305.2969959480688,305.449011199642,304.5092075103894,304.591230688151,304.058782174252,303.8448241674341,303.16914479015395,303.8052408332005,303.7674536970444,304.58092964068055,304.20998250180855,303.4865192142315,303.57785411551595,304.5446709776297,304.33384751714766,304.48084229649976,304.30063828406855,304.0885564824566,304.6913406443782,304.558118826244,303.6404537674971,302.9882378373295,302.60019225114956,303.5737068518065,303.91931081330404,303.29330107057467,303.4207805301994,304.25238724192604,304.1606773864478,304.66954587679356,305.5897171474062,305.4608389856294,305.2799273603596,304.4706104933284,305.2282484509051,304.5350115252659,304.55262057390064,304.722312906757,305.312569018919,305.00608568638563,305.05830744979903,304.15240453882143,305.1258856165223,304.5191947389394,305.29441602900624,305.0853600176051,305.5517005599104,305.78915881738067,305.7161814495921,305.85932798776776,305.3598797302693,306.2632114435546,305.3326975503005,304.7455273028463,304.6385142975487,304.59521726612,304.4886563322507,305.3341385042295,305.61333715636283,306.509041571524,306.1307455119677,305.1646067239344,304.3449527048506,303.7050686222501,303.6020629736595,303.2757500745356,302.30043297307566,303.1106005143374,303.8921240027994,304.48320031678304,305.39900318486616,305.65071575250477,305.89590772613883,305.36625581793487,305.1088930014521,304.2590319127776,304.9068766757846,305.44843444461003,305.9256375171244,305.7167722536251,304.89946873812005,304.4048700830899,305.14935549069196,305.9470968223177,306.5255849971436,306.8865212588571,306.5366252581589,305.9398390012793,305.85899067437276,306.83929582778364,306.75418867729604,306.1969735692255,306.7885734895244,306.6102802832611,306.43462465237826,306.4202526053414,306.1110867941752,306.3504805965349,306.4335996871814,306.91481890529394,307.0686687952839,306.74426425248384,306.1984329861589,306.3812432666309,307.0656539564952,306.2054285625927,306.0125965117477,305.2354160519317,305.08110831677914,304.9222033196129,305.4023035815917,304.4927645167336,304.3701891419478,303.6267297430895,303.9260251345113,303.00404421659186,303.6040663602762,304.59902531281114,304.59756165603176,304.046442062594,303.23627042304724,303.7353926100768,303.3817729256116,303.7952059158124,303.7043544864282,304.3843186763115,303.87699405057356,303.1519418153912,303.8787578707561,304.81658680550754,305.8130256040022,305.89371170662344,306.12624126672745,306.0237218881957,306.83362949453294,307.8116337605752,308.0327326641418,307.23980802856386,307.47737171081826,307.24446395924315,307.2773011275567,306.9363785488531,306.9533538809046,306.32217248296365,305.82458223123103,306.4224342093803,306.3313879529014,305.5206343010068,305.73103347653523,306.49831134593114,306.6960031525232,307.033619757276,307.15054996544495,306.7323978282511,305.99737730482593,305.85600929753855,306.4616091926582,306.1517956405878,306.9225780800916,306.0714571624994,307.0263956631534,308.00542326504365,308.4077432686463,307.5311538055539,308.0761961089447,308.38312569539994,308.501751200296,308.30944020301104,308.28392018936574,309.20824186271057,308.82652269350365,308.6483075208962,308.15646683983505,308.25324768945575,308.0736401262693,307.3572884099558,306.53678093710914,307.4394368585199,307.23656329419464,308.06873692339286,307.94038663757965,308.83908622851595,309.32724342215806,310.2040090933442,310.4152136952616,310.10429192660376,310.1965722325258,310.3589687948115,311.22916332772,311.75969982985407,312.2517536627129,311.8705014027655,312.44004954537377,312.22372074006125,312.7710628914647,313.5819677389227,312.8809048975818,312.9110649507493,313.7208198206499,314.36131028598174,313.5928582539782,313.20334319770336,313.0232592104003,313.06813817843795,313.1061404980719,313.60605078795925,312.7372823068872,312.0373417669907,311.33071824675426,310.35575487837195,311.21082989359275,310.87856591446325,309.8792200377211,309.112405996304,310.0677935294807,310.52086671767756,310.86974189290777,310.6729593561031,309.76279833959416,310.55721779959276,310.2588023552671,310.6690871925093,310.50107432249933,310.48532426543534,310.9689277294092,310.6575831682421,310.7266826024279,310.66145141096786,309.78272860869765,309.0705346921459,309.97504213731736,309.5234002978541,310.0482221636921,309.22582655306906,309.2405297574587,308.7033032923937,309.4190865098499,310.09818177111447,310.0706305867061,309.9915154464543,310.5565690859221,310.78429872496054,310.2620721035637,309.5548076084815,310.3311612820253,309.9096426484175,310.71307687601075,310.1671002181247,310.26450171275064,310.8149176687002,310.1997889028862,310.863233611919,309.9952209163457,309.64752146974206,310.5671632322483,311.25722950836644,310.45079615386203,310.778792259749,311.5042385510169,310.610456247814,310.4284644681029,309.53268699301407,309.4760704166256,309.2080383216962,309.08941363263875,309.8762794462964,310.29044281411916,309.2941327933222,309.9196345824748,310.4177459133789,310.27390731079504,309.8486132686958,309.88735036505386,309.9730749395676,310.22217392688617,310.82551162550226,310.8291690577753,311.735567886848,312.4636705359444,312.5440950761549,312.1343029793352,311.9694876023568,311.9465275150724,312.4281810875982,313.40995332738385,313.2482923530042,312.28355718171224,312.30421126354486,311.38075959309936,311.0436729118228,311.0901720854454,311.20683872839436,311.63096231548116,311.3917380422354,311.9302718951367,311.9034770419821,312.6771676116623,312.37173638818786,313.0906397001818,312.36642847396433,311.8667362937704,312.6740023395978,312.9495150819421,313.42937295138836,313.94092778954655,313.57789571629837,312.61477634171024,312.6658346867189,312.22706731176004,312.68413940723985,313.0183240897022,313.1402935725637,313.2895809528418,314.23844400793314,314.8951536407694,314.53642073785886,313.9230978740379,314.1464038756676,314.3037704369053,313.44282915769145,314.125110022258,314.6560165178962,313.9556335923262,313.3216952444054,313.6018726667389,313.94607891421765,314.9053442548029,315.1266391398385,315.686314702034,314.810186595656,315.6506148460321,316.5375239714049,317.22375402459875,318.02842378849164,318.0040723164566,317.0235992278904,316.5457900725305,316.89248658856377,316.4066193951294,316.14629978640005,315.2968072970398,315.9659350630827,316.8653552075848,316.7511717621237,316.69550304301083,316.60023119300604,316.78754053032026,317.57489592023194,318.2481229575351,318.48106834478676,318.45878166984767,318.3038335107267,318.7429408058524,319.4830328449607,319.26942637981847,319.5657483446412,318.96571737434715,319.475490252953,318.7158841849305,318.3910813801922,317.85484373616055,317.8501493888907,318.83254931820557,318.65533383982256,319.1014428269118,319.730729282368,319.8929622331634,320.3572423476726,320.47400197479874,320.8942397092469,320.76807006215677,320.4769133385271,320.6010880419053,320.74633865011856,319.7924898453057,319.7157447533682,319.23404946597293,319.71330263558775,319.65979433991015,319.7499713455327,319.9982233499177,319.114147097338,319.2923317877576,319.88953060330823,319.97593289101496,320.8179653733969,320.25051003554836,319.7447281284258,319.0066993460059,318.82483104616404,318.90986825339496,319.0506126554683,318.1193914054893,317.32839432777837,317.82607615878806,317.33631207980216,318.0866827410646,318.9542331667617,319.5800011786632,320.03927609464154,320.4097263813019,319.89777060598135,320.29785937070847,321.0966704408638,320.1040601860732,319.9593889648095,319.8136881222017,320.5647314726375,320.782747477293,320.16376851918176,320.4148286883719,321.2605047081597,321.5779436654411,321.6634120582603,322.5344704068266,322.67232468910515,322.95574917737395,323.62140105944127,323.7671930119395,323.1453816238791,323.4270299039781,322.9559930562973,323.3901152382605,322.88455431116745,323.4306175527163,323.89753304282203,324.79402548866346,324.17934116953984,324.8634681450203,324.45805898401886,324.7959820316173,325.5515502206981,324.83952424069867,324.40568499127403,323.4432625682093,322.698366668541,322.84121453994885,322.8717794222757,322.8485556030646,323.411589467898,322.818247966934,321.9444711385295,322.1914398451336,322.71863426594064,322.3534446535632,321.61693214904517,321.9810403222218,322.6364902500063,323.27264245739207,322.99182092025876,323.10589373856783,323.40111970715225,323.8968230127357,323.66857821214944,323.1982665685937,324.0012832917273,323.4981305897236,323.6536304564215,323.59238980105147,322.9625050337054,322.6833941093646,322.599163047038,322.16280209086835,321.6756472126581,322.2376391305588,322.2272740807384,322.78388514742255,323.7198252514936,323.63750425493345,323.59013446513563,323.11179278884083,323.96526875160635,323.8462984599173,323.5318134254776,323.73788124183193,323.6371201258153,322.7121325638145,322.26089850254357,323.0335421632044,323.61994820972905,323.92229874711484,324.18559818621725,323.8046865686774,324.6463189343922,323.95248274179175,323.50249961344525,322.5385647676885,323.0456837597303,323.7304849200882,323.16852197470143,323.1696823616512,323.1185300750658,322.38916106987745,323.2534436332062,323.689174905885,323.8330798530951,323.1902295150794,323.8208144712262,322.89739590510726,323.22771728690714,323.4552883664146,324.0178003022447,323.27011481299996,323.71419976092875,322.89607087057084,323.55715003516525,323.3620220790617,324.1393543975428,324.0394813041203,324.8214063355699,324.99984295479953,325.80978139163926,325.57089545438066,326.4401793801226,327.1422940338962,327.1730140596628,328.06876929244027,327.16471446631476,326.86062822304666,326.83466005977243,326.1670675687492,325.65831844881177,324.77139649679884,324.67577139893547,324.8271963503212,324.91915924847126,324.45205263840035,323.9339353861287,323.9408324942924,323.535564746242,323.9836256764829,323.25624113250524,324.0235986211337,323.9621653431095,324.5177595606074,325.4735377333127,326.30226743454114,326.8421458369121,326.64134790422395,325.67240282380953,326.3227700111456,326.77077606273815,327.39007160579786,327.754805049859,326.93343346286565,326.0035505373962,326.9897657074034,326.7740406137891,326.71410078462213,326.4015774028376,326.23501336807385,326.83553870161995,327.45553879020736,326.73286795662716,325.8586162701249,325.01179739506915,325.1288698730059,325.81992365187034,326.07083226088434,325.2045551217161,325.18261877587065,326.15730389906093,326.06265644030645,325.3388499408029,325.438177971635,325.94095588708296,324.95396822411567,325.4198791082017,325.00822007097304,324.3856892324984,324.46311160409823,324.0411770241335,324.6347193545662,324.48084940062836,324.6817142148502,324.8828034712933,324.7287339679897,324.9176812861115,325.88970416085795,325.85362942842767,325.42944938410074,325.4472510004416,325.5340133421123,325.2459385190159,324.44439469696954,324.10584103129804,323.6087947473861,322.72766729677096,323.66287581902,324.64452380733564,323.6606288794428,324.4677967322059,324.01808842225,324.6136826570146,325.5094714839943,326.31926867365837,325.38703885069117,326.3764187851921,327.02690164232627,327.2010092847049,326.58209851477295,326.73057518247515,327.68137435847893,328.2350191711448,327.319337899331,326.62668247288093,325.93204473750666,326.5018028826453,326.7918304083869,327.71017768373713,326.751221830491,326.47912404872477,325.5631161737256,324.6421579788439,325.62381557095796,324.73946560779586,324.63196345278993,325.0139884063974,325.97403567191213,326.8956722356379,327.85652597248554,328.72982411039993,328.0566377788782,328.7856636592187,329.21550726983696,329.0523325246759,329.8574416046031,330.3422636138275,329.91993268812075,329.6045366018079,330.5682455035858,330.7879146449268,331.2464958941564,331.23684660485014,331.55301528517157,331.96208883589134,332.07357819052413,332.5079443426803,331.6084331907332,330.8266712571494,329.98114865412936,330.9552572853863,329.96070775249973,330.00093259382993,330.76279885834083,330.0012974361889,330.25577137991786,330.87005480611697,330.73883414873853,330.42797589628026,330.26153792301193,330.5447389311157,330.8284885850735,331.07562660984695,330.7877871552482,330.10423159739,330.7622793945484,331.69894066732377,332.104699450545,333.00587080977857,332.0230478430167,331.2571481051855,332.22969058156013,331.5683893603273,332.34271911298856,331.8061741241254,331.0387187944725,330.382985483855,329.57666849857196,329.97952433303,329.9395518004894,330.70283344294876,331.45091907680035,332.09603935526684,332.80027588643134,332.7172899572179,332.8886292078532,332.5451359041035,332.6517671253532,331.9193090945482,332.43576448829845,333.0878975354135,332.4772056317888,332.3024730463512,331.6715367739089,332.533466021996,332.0048832646571,331.2386223101057,332.19367505190894,332.22144772158936,332.37930446257815,332.47331472020596,331.6937100281939,332.01696880022064,331.8925538416952,331.91520866937935,332.5296739190817,333.41300230892375,333.2706342465244,334.2458012844436,334.2226294144057,334.6525643048808,334.1003062799573,333.6766704483889,334.3571991492063,334.95408417936414,334.28744759829715,334.829460229259,335.6479441123083,336.5476829074323,335.9521192633547,335.42958329292014,335.3163866912946,335.4465431352146,335.6767419902608,336.61018474865705,335.7507217070088,335.1167911249213,335.1059505371377,334.2822303813882,335.21629322646186,334.26778433285654,334.8451161547564,335.7650049380027,335.3911090577021,334.81282906327397,334.6211778107099,334.61663945624605,334.66440604487434,335.3749752002768,335.1550770220347,336.0257361191325,335.3288163524121,335.9482644456439,335.31442936183885,334.5335130430758,335.4938288186677,335.69370658509433,335.7064718976617,335.69330890709534,335.1204599700868,335.4070430016145,334.5743195414543,335.0812068991363,334.1950012948364,334.0512649673037,334.9691898575984,335.06310239899904,334.801731787622,335.4204901000485,336.31505842274055,335.5865974640474,334.75461616180837,334.07839769497514,334.7572652720846,334.9589184653014,335.5115756778978,335.72771844407544,336.0433468995616,335.5074731493369,336.22435883805156,336.56441539060324,336.6998702692799,337.0056930775754,337.74086402449757,336.9075685720891,337.4677737201564,337.9780986532569,337.27153077721596,337.74031209014356,337.1915464764461,336.51605695625767,336.1207536510192,335.8620034828782,335.4224152164534,334.9017342044972,334.84088040562347,333.92661630921066,333.82889324845746,333.25579849956557,334.05105361668393,334.9346107537858,335.8650993183255,335.1733821099624,335.87974934792146,336.0967514179647,336.7307293335907,336.4257186311297,336.83626249292865,336.9687890894711,336.76674534287304,336.88800698006526,337.33130472153425,337.86526294471696,336.9246979714371,337.49194900132716,336.9777922164649,336.5400256505236,336.2115819007158,336.487096672412,336.1809146539308,336.807120133657,337.49847634881735,338.09872903162614,338.99306462612003,338.7701492412016,339.667870674748,340.4799449876882,340.27942935889587,339.33881264179945,338.5250243861228,338.8232970852405,338.9595489446074,338.7114610988647,337.75598254054785,337.74112467700616,338.0834916769527,337.6611803751439,338.31879710033536,338.46705631306395,338.85600786982104,339.6326133273542,340.1229477194138,339.38863368006423,339.4203219721094,338.5409900327213,338.5775442579761,339.05453544529155,338.58633048832417,338.34288495685905,339.23429407412186,338.4049269221723,338.8774116486311,338.28281304845586,338.9830093048513,339.3822924834676,338.8836398278363,337.93473055865616,337.63753035804257,337.98975616367534,338.62168324925005,338.3705206285231,338.0353234014474,337.3016070309095,337.6267046886496,338.10618817806244,338.6171609116718,339.1128155840561,340.0296208919026,339.67237312346697,339.4915010109544,340.1157593470998,339.21284768916667,338.9465675810352,339.3677700087428,339.4850518433377,340.47460466017947,339.8646647152491,340.49869610276073,339.5370105379261,338.8795320200734,339.41370807541534,340.3647817117162,339.84462015051395,340.08462647581473,340.76221957430243,340.20164859248325,339.41715327929705,339.8016099561937,340.65949601959437,341.2111107218079,340.5546235702932,340.8621880458668,340.82332508359104,341.2708108224906,341.2519274074584,340.30072876252234,339.9885273752734,339.08151946170256,339.4739773576148,338.9237181902863,338.75499593419954,339.7535571437329,338.80636065034196,338.86494754161686,338.34916570642963,337.87779982341453,337.29747718013823,337.5384431411512,338.53383114142343,339.167677893769,339.0262829135172,339.56347285350785,339.31176270730793,339.6433467073366,340.1435837075114,340.3673116341233,340.76518812123686,341.3478493327275,342.0202410258353,342.13114550197497,342.5226840125397,342.7824957771227,342.1837783702649,342.7127602440305,343.25273767113686,343.77272776840255,344.12589799659327,343.75255333445966,344.24929823726416,344.3899233909324,343.7367923790589,343.97248448897153,343.40654856711626,343.68931657774374,344.2444760440849,344.4317973186262,345.03599784430116,345.4376439987682,345.47692400217056,344.9511845014058,344.31786955846474,345.0218550339341,344.643628208898,344.59143808530644,344.65874706814066,345.51849223673344,344.6321240477264,343.9559259209782,343.1147051700391,343.3263822607696,343.9172143819742,343.2120967018418,343.00651197182015,342.43579312739894,342.18251195317134,342.45787329087034,342.3091008416377,342.1378405173309,343.03781006252393,342.4328867914155,341.7120452444069,342.2957415380515,341.96820467012003,341.79901068191975,342.7510162764229,343.66479740059003,343.68252368923277,344.35469292709604,343.8782080002129,344.5518088005483,344.1412229659036,343.6436174912378,343.9620498926379,343.4977163881995,342.7755980617367,342.7184337647632,342.8661091430113,343.458631625399,343.3036982603371,342.36908629816025,342.35748256510124,343.3130959686823,343.65966793661937,344.33317982032895,343.61582304909825,344.35477797174826,344.3935876348987,345.04877662146464,344.5660948869772,343.9865790614858,344.12871472071856,344.2041906141676,343.3093434525654,343.76099881110713,344.19577035307884,343.5877671209164,343.11924159293994,342.9386478206143,343.2909097382799,343.1768967839889,343.3670473480597,344.0955195929855,344.062745295465,344.0225056372583,344.38313904823735,343.55902987672016,343.5539349280298,344.1743109477684,344.41109948791564,345.30686134658754,345.18027904303744,345.59453423228115,345.97465670015663,346.3744024997577,345.76389707252383,345.8136243321933,345.281906189397,346.07752928929403,346.4403723347932,345.5130571173504,346.4225186579861,347.3361495458521,347.6103969258256,346.6270428872667,345.93581810360774,346.2541008051485,345.6797067588195,346.55285804811865,346.41459812643006,347.3006047187373,346.57943230774254,346.32669289037585,345.8015342191793,345.55472661275417,344.6044874219224,344.27288931049407,344.85895086824894,344.58042627898976,344.586071791593,344.8261261465959,344.85154484119266,344.71265257522464,344.51529225707054,344.0471621369943,344.0487599875778,343.1491110548377,342.1843447270803,341.84056866634637,341.7912240475416,341.63921721233055,341.16457389853895,340.9638628498651,340.46916414704174,340.84794960403815,340.8754085358232,340.0940977432765,339.4510646290146,340.18123501958326,341.13925423752517,342.0884067667648,342.6926994319074,341.7684957999736,341.33882020879537,340.71074593486264,340.97007444594055,340.04464289871976,339.4273046371527,339.2538161557168,338.7160950852558,339.276644049678,339.7750384914689,340.49351275525987,341.36060082167387,340.4269527993165,339.6593363471329,338.72443562652916,339.4354556435719,340.0681062983349,339.9089138689451,340.5365222133696,340.29532277956605,340.32424292340875,341.07831886969507,341.74263632902876,341.15531940804794,340.44337798142806,339.47302032867447,338.4748286851682,338.2116099288687,338.6937590041198,338.11705581843853,338.81802591169253,339.6647696653381,339.50458000507206,338.744759616442,337.91691939067096,336.9323700889945,336.85625991784036,336.58913979819044,335.91903028683737,336.3667712225579,336.4731101882644,335.6259885309264,336.23793109692633,335.53993889596313,336.00647463230416,335.826222890988,334.86471619224176,334.71851192833856,333.73148034885526,334.65413683466613,334.8083785576746,335.5659754741937,335.06504961056635,335.7449926128611,336.70955760916695,336.5714324931614,336.85963571164757,335.892752117943,335.16778806364164,334.3189256726764,334.2376931416802,334.0699043860659,334.23247085884213,333.66720768855885,332.87169215409085,333.1970538585447,334.14342331001535,334.57264767726883,333.7499013529159,333.9974046414718,334.6303664795123,334.552346221637,333.56756322225556,333.8529983209446,334.39100725390017,333.4558358383365,333.8762649875134,333.6085671335459,334.49049718957394,334.76734756771475,335.5825771749951,336.57993416674435,336.7937397067435,336.900026534684,336.78571764333174,336.31743215816095,335.71908581862226,335.5765530997887,334.95797831891105,334.31348547386006,333.96744213439524,333.8710871525109,334.1308939335868,335.0550772254355,335.7066432512365,336.0172944953665,335.911501317285,336.8694535633549,335.91154593229294,335.8294057752937,335.2127547846176,335.6500120656565,336.32109783776104,335.9048807648942,335.95314547838643,335.1142045943998,335.53087589191273,336.1005496904254,335.10080469213426,335.38062540255487,334.4528763759881,334.2998300571926,333.3549355766736,332.36542581487447,331.40286120167,331.9343841630034,331.70997112290934,331.1414903420955,330.1873351628892,330.08545143762603,330.2683588452637,330.92459719767794,330.2614278658293,329.32439252967015,329.2965938136913,328.45571674546227,327.9933836841956,327.14123596437275,326.7289799726568,325.8755070469342,326.73588416771963,326.2258825977333,326.11440594587475,326.4197662980296,326.58985391352326,326.32381639350206,326.66165450261906,327.4885348454118,326.83178171655163,325.8366306438111,326.7581376559101,326.4356774254702,326.71862207725644,326.2975462162867,326.5141335311346,327.385596498847,327.29665559437126,326.34088742313907,327.0126003124751,327.2854605340399,328.15136866644025,328.318189995829,329.18333961907774,329.7652389020659,328.83420061320066,329.77471042610705,330.6061514746398,329.8630394213833,329.5838961279951,328.9820630867034,328.50815352099016,328.0999253783375,327.35883274814114,327.8150031301193,327.28925548680127,327.5703923283145,326.7483436767943,326.4258020054549,326.048199092038,326.7079038862139,325.8102427138947,325.65397130465135,325.3621534239501,324.92231744201854,325.2960677095689,324.8073401944712,324.93963829474524,325.1588523183018,325.88560002762824,326.8840380208567,325.91894293390214,326.4594446201809,327.3215223667212,327.7816450386308,328.3485063458793,328.7379342308268,328.53158381953835,329.0656803511083,329.3083850671537,328.4578492976725,328.7869395907037,329.25598826399073,328.74081548769027,329.4072419553995,329.41669476032257,329.08606708422303,329.2559707448818,328.3915076907724,327.6645522369072,327.1647444553673,327.9192743776366,328.2217283723876,328.0018118242733,327.705689758528,328.58568210247904,328.69906541798264,328.8793792440556,329.5912546189502,328.75722684757784,329.28896154882386,328.7247274443507,329.2198009416461,330.0251597794704,330.1547747934237,330.36434757802635,330.8637855667621,330.2771274903789,331.1691458285786,331.0225791381672,330.3020950849168,330.8976963022724,331.8747553820722,331.2165218763985,331.2506198035553,331.46577359130606,332.0819716854021,331.6712058791891,330.67769648041576,330.0932139069773,330.9101013052277,330.09216498350725,330.7635035496205,330.8138766665943,331.58490752149373,332.3988063004799,331.58931549452245,331.8053728574887,332.75888618594036,333.1969226524234,333.44023805018514,333.4808799321763,333.1980758588761,333.67684513982385,333.4450456225313,332.9223792543635,333.7152725132182,332.8938027303666,333.59140331298113,334.4487782516517,334.6123703070916,335.27864750567824,334.9886629190296,334.2027918295935,335.0617503714748,335.77949098451063,336.68984661251307,335.9843061468564,336.81308240117505,336.2256982871331,336.3837818140164,337.3272531093098,336.8935272851959,337.2061893870123,338.1292518945411,338.56879789335653,339.02821236569434,339.74896613508463,340.23150712810457,340.37783147906885,341.28124553337693,340.83791881334037,340.4268808704801,340.0430775540881,339.3354699257761,340.27389050880447,341.25628092186525,341.8378818607889,341.4779274966568,340.85006122663617,341.59973515337333,341.1818004283123,341.937592336908,341.22922615520656,341.3134112986736,340.69502197392285,341.2596144140698,341.1483583920635,341.03539356356487,340.21547352243215,339.3058122806251,339.1791858379729,338.31329886289313,338.3939200420864,339.28151534404606,339.01800526631996,338.7908656601794,338.57435572333634,337.70551621867344,336.7842721650377,337.7675635474734,337.6973889283836,338.0078156879172,338.44648182811216,339.0325839719735,339.31036635348573,339.96782956738025,339.7508743288927,340.50848590256646,341.24867094215006,340.53968175454065,339.6958673899062,338.86873550573364,337.87313515366986,337.38426532782614,336.66851338464767,335.91134850820526,335.94096222752705,335.47970667202026,336.0992245641537,336.29769669566303,336.02509053749964,336.87646094849333,337.4575642044656,337.0685234302655,337.12377595854923,336.13692895462736,335.202220402658,335.3908451371826,334.41764256125316,334.65431374590844,334.24419847270474,334.37540838401765,334.5876923180185,334.15095065068454,333.5391536746174,334.4091505394317,333.8693203567527,332.9066023491323,333.0574724478647,332.09527193708345,332.3199358456768,332.1169287543744,332.4422280425206,332.41565907374024,331.81409338628873,331.3595874477178,331.24967188574374,331.4673702865839,331.6606091228314,331.11212185723707,331.8529755123891,330.9537517381832,330.5398626071401,330.13399025565013,329.39932340336964,328.4614777886309,328.42910537449643,327.54675805428997,328.33650537440553,329.01839167112485,329.339574590791,328.68559534242377,328.3255657781847,327.9569762721658,327.42126314435154,327.5483018239029,328.44490088569,328.2145023015328,328.87846047477797,328.47923206398264,328.0434650052339,328.933327275794,329.2999435197562,330.2956505343318,331.1730117504485,331.0961937275715,330.700075420551,331.14289777120575,330.70823273574933,329.7486682254821,329.58336797589436,329.9841771670617,330.7009434988722,330.6911121197045,330.44769023312256,330.7977722962387,329.9731362853199,330.15670092310756,329.5757140526548,328.6807356174104,328.88310304749757,329.3448142716661,330.30702683050185,329.4175996771082,330.10302937217057,330.7061816956848,331.7049701344222,331.59265105985105,331.7549437992275,331.90193248493597,331.74840421043336,332.70143127953634,331.8931173873134,331.6397421443835,330.746975179296,329.83799679996446,330.16074239462614,329.2634847057052,328.64552036114037,328.10837458400056,328.0615864950232,328.02345845568925,328.9590627690777,329.3450309447944,328.34972669929266,328.6915715453215,329.35677255224437,329.3915144861676,329.7703587450087,329.5387934264727,329.39605402201414,330.07399271195754,329.72727818088606,328.8751837979071,329.07389431493357,329.3807389391586,328.76184332510456,329.5305765434168,329.9186439695768,329.969229045324,329.1662878948264,329.9676438597962,329.2616654774174,329.9151500589214,329.8686203029938,329.4885410913266,328.5758003969677,329.5459025884047,330.423106697388,329.79788617650047,330.29130444303155,330.6797705395147,330.00417002430186,330.73898952268064,329.9624034608714,329.71708003850654,330.4862605249509,330.2751402729191,330.92361610615626,331.6364607932046,330.9383909595199,331.4446913260035,331.1924984129146,332.058687758632,331.0649138940498,330.11784216109663,330.1163048259914,329.165954856202,328.5534158712253,327.5798636940308,327.2553403819911,327.5220420109108,327.17480860836804,326.90894255414605,326.4804510800168,326.0238852282055,325.9447090998292,326.1992985997349,327.0784220681526,326.31330558890477,326.12869283230975,326.93686927948147,327.19754468183964,327.30926954885945,326.98259516386315,326.90890621813014,326.5195066216402,325.72135242493823,325.56859498564154,326.5228655799292,326.30782200489193,326.6049587982707,326.2472395300865,326.36817412963137,327.25397953623906,328.2508350443095,328.2197806700133,327.6818720526062,327.93578594503924,327.86478557018563,327.02109321625903,326.31094448035583,325.76157697243616,325.0515972226858,324.66265988955274,324.02292713848874,323.9273973717354,323.85541366785765,323.46664309408516,322.69351060315967,323.620025949087,323.4448583982885,323.50586973596364,324.39166329056025,324.25759731046855,325.2518355958164,325.31080054631457,325.2315649925731,324.8520073588006,325.84889647644013,325.74808451207355,325.5224605612457,324.58268141793087,324.42834517359734,323.9342216150835,323.439844999928,322.4786756034009,323.2811593268998,324.21722372900695,324.55174333648756,324.5438817930408,325.3194218170829,326.1059482791461,325.46039100689813,325.3041189108044,324.3531137518585,323.5691820355132,323.416827974841,322.9576150784269,323.6144222668372,323.6835235650651,324.1027765828185,324.7865387513302,324.9184563360177,324.41386183490977,324.1418401100673,323.6877535250969,323.8206295403652,324.7030989048071,325.2608226314187,324.94550510821864,325.2404379029758,324.8969671991654,324.39987934660167,323.71049290150404,323.3999924091622,323.70742060942575,324.44566158391535,325.0143094630912,324.38302088109776,324.75953910220414,325.1661909823306,325.59431940177456,326.3425155659206,325.81742188800126,325.1317490548827,325.0152292889543,325.52588808210567,325.8340915325098,325.581851889845,325.80665296223015,325.79466653522104,324.85531048243865,325.3041047514416,324.8949810718186,325.0708303428255,324.28810669574887,323.5570565252565,323.235247741919,324.0872391834855,323.42761069815606,322.846403404139,323.30924310768023,323.2760982187465,323.2453629965894,322.73302014078945,322.4684205283411,321.47815443528816,321.4836064269766,321.4736341740936,320.6213830206543,320.13063808437437,319.40720493812114,319.4305144427344,318.75389302009717,319.13762867450714,319.5769582320936,320.3062082803808,320.20546000264585,320.11140759289265,320.2569901146926,320.70673769991845,320.7641307367012,320.76985231181607,321.33790411939844,321.4731657747179,321.6832377491519,321.6597038237378,320.94803861062974,320.79718229779974,321.6508914795704,320.6860437602736,320.2235815334134,320.4273598631844,321.1194868837483,321.8505679438822,321.41318756574765,322.22212654398754,322.18023502314463,321.3319711647928,320.4677936267108,321.4498828505166,321.35169425886124,322.32265281211585,323.26064483774826,323.10860171401873,323.21018444839865,323.57844783645123,323.07017498556525,323.8894648524001,323.4599823905155,322.959850252606,323.71554529853165,324.3027244540863,325.19046698277816,324.3848892604001,324.09463381255046,323.2602860010229,323.71680287690833,323.0141612207517,322.9633092558943,322.2875203532167,321.4906012592837,321.9957599104382,321.23885906580836,320.6072055930272,319.81884179264307,319.91992319747806,319.5325352619402,318.6280582277104,317.6779510434717,317.37828872259706,318.3281424958259,317.84217927698046,316.9166287891567,316.78497711895034,316.67847862280905,317.62811456620693,318.1657184269279,317.6416151570156,317.8148725051433,318.56376988906413,318.1140614300966,317.29847818333656,317.0862726839259,316.38794873002917,317.0190486628562,317.7305833478458,318.0338131263852,317.3361376756802,317.1650781496428,317.6732922680676,318.12469807174057,317.4413495399058,317.7387073263526,317.73357779858634,317.7225473378785,318.20613790582865,317.72813435364515,317.49676790088415,317.2139120544307,316.91189934918657,317.2819951833226,317.8199173132889,318.0770029956475,317.5483589069918,318.2295730202459,318.0086498861201,318.9889538981952,319.91604804527014,319.98946474213153,319.3105688286014,320.13452032068744,320.2293077679351,319.66931664803997,319.9514071489684,319.03114823950455,319.7913568462245,320.1523881526664,320.56519868131727,320.2252560467459,320.90974164940417,321.1501218508929,320.55170358205214,320.1253982363269,320.3107621190138,321.24027664680034,321.6269101491198,320.71960437949747,320.05382113857195,319.82095727091655,318.94133946159855,317.9729496091604,317.73379478696734,317.4092889078893,318.24664233624935,317.50881346687675,318.35553584014997,319.02640184015036,318.75462110247463,319.527603501454,320.4914067997597,319.92877736641094,320.1977231982164,320.76226378325373,319.826834583655,319.481483343523,320.20747660379857,320.86721409577876,321.33171644061804,322.30080659035593,323.0924028889276,322.73499145777896,323.2552745640278,323.7497361660935,324.1821719859727,323.3100023367442,323.588113443926,324.01421996811405,323.5346185704693,324.184976820834,323.9960204497911,324.028724739328,325.0077558476478,325.0061380928382,325.29771996755153,325.98680307529867,325.11449063243344,324.6385705117136,325.23550439300016,326.0209806635976,325.2426409618929,325.0367832467891,324.2040571779944,323.4061365942471,323.0299648088403,323.76068542012945,323.80573248444125,323.49386035325006,322.82930801203474,323.1682937555015,322.17114132409915,321.70374679984525,320.9233497604728,320.244845203124,319.7291605309583,319.9369270517491,319.2163192522712,318.4124743086286,318.4892876362428,318.58741465816274,317.99278755206615,317.1315058195032,317.57419084897265,317.3212252166122,317.3476795987226,316.8785467292182,316.34364798804745,316.85726333549246,316.2623559497297,317.0346669694409,317.738168401178,318.1226484961808,318.31207332760096,319.05977758113295,319.50207023276016,320.05138364760205,320.59059778414667,320.40230472944677,321.38760222820565,320.885071399156,320.8373228064738,321.3943507373333,321.6286382735707,322.48043835163116,323.3540051677264,323.28711025137454,323.2584945880808,323.4151995582506,322.9181945165619,323.4938870156184,322.7905923733488,322.20350288646296,322.0497717540711,321.45639741327614,321.80210275482386,322.32070001540706,321.7735944846645,321.99010317213833,321.89395490521565,321.6895374651067,321.29767681797966,320.6656701224856,321.2038454147987,321.7553402376361,322.45974299823865,323.06478958949447,324.03113543847576,324.267555792816,323.3201537942514,322.94340764917433,323.7533122622408,323.7559386789799,322.9639914580621,322.72052746405825,323.461850205902,323.42028625681996,323.02538082702085,322.5583728281781,321.87227668147534,321.4774363110773,320.8939061840065,320.7155966521241,320.46904745558277,320.48982167150825,320.05799041921273,320.4459855626337,319.52832571277395,318.78480607643723,318.57955118315294,319.42335897265,318.4465466919355,319.1634080768563,319.48890457488596,319.482949052006,319.1996905459091,318.6979744359851,317.9827714660205,318.3027095631696,318.41550498921424,317.69449936645105,317.6520132436417,317.41548883728683,316.93091155029833,316.8450426822528,316.6628042347729,316.00766838155687,315.15924317901954,314.6926516010426,314.98730878857896,315.7503586616367,315.0454078326002,315.92104582488537,315.73100197920576,316.44859421486035,316.5896417009644,317.03702002344653,316.4066640473902,315.94966381881386,315.99680892797187,315.2716495161876,315.70624564867467,314.83648103801534,315.5623416490853,316.1058406541124,315.74627406010404,316.1166497017257,317.0858796061948,316.36352185951546,316.76562512665987,317.2839563251473,317.1240731510334,316.2600774639286,315.9325608680956,316.22913744766265,316.69071103958413,317.4219347056933,317.00873962650076,317.5856325291097,316.83795236004516,317.74291366292164,317.42530351132154,317.3006804175675,317.38248767424375,318.33478596108034,317.6214076257311,316.8415455678478,316.7885987008922,316.4286809726618,316.833734028507,316.08395781507716,316.42468349589035,315.6752413017675,315.6053045135923,316.0529490611516,316.86429522465914,317.65215968480334,317.80466987844557,318.6758224358782,319.3030536612496,318.7622869974002,318.2180201532319,317.38200374506414,318.1725034629926,317.94907820690423,318.36007158691064,318.45615421188995,317.87733048945665,317.5038160136901,317.14464376028627,316.53875099727884,315.8517904141918,316.1137158353813,315.2931376709603,315.8624406121671,316.83796614408493,316.78895738208666,316.5788888861425,316.4740783572197,316.91320307087153,316.87651404971257,316.12689051870257,315.7893066913821,315.6299531683326,314.63443160103634,314.7242356040515,315.4435641709715,316.3976489729248,317.3119602757506,317.5913506750949,316.86880924832076,315.9093445301987,316.633261019364,315.9941801549867,316.5047523640096,316.29718491854146,316.37632092740387,317.362834493164,317.7763910256326,317.7883025058545,318.5030023478903,317.52466115448624,316.58778443792835,317.0509594124742,316.1228178059682,315.49322155304253,316.34402939863503,315.87335885316133,314.94825029652566,314.8104207161814,315.45499021420255,315.3797510419972,314.6005986239761,313.6101121902466,313.45737476972863,312.5783125939779,312.9044126342051,313.0072153243236,313.20592464273795,313.879295963794,314.1947572506033,314.3825563592836,314.0329111334868,314.983779986389,315.8529025022872,315.8565350738354,315.0893549094908,314.17076831962913,313.4588811220601,312.96741103194654,312.37241701362655,312.3576209973544,312.9542071102187,312.04547792719677,311.14367006346583,310.3755124765448,309.4655088195577,308.9019767921418,309.8404314192012,310.6010021427646,310.4985949653201,310.53662164509296,310.70282848970965,310.9651569640264,311.1035672426224,311.6189755885862,311.0063657378778,311.34903444023803,310.5333602693863,310.47085016593337,310.36180107854307,310.751167121809,309.8382815429941,308.88282850245014,308.47805073391646,309.37383346632123,308.71954057039693,308.9378865212202,308.00142246484756,308.9536819336936,309.87039621779695,310.38814180949703,310.56901831552386,310.0454094898887,310.64282944006845,311.5564756137319,312.52512337686494,313.0595597391948,312.2163922591135,313.0743482154794,313.21624698489904,313.20451671490446,314.1615161700174,314.99011472566053,315.9662352045998,315.6530342390761,315.5237170071341,316.2124851308763,316.29029396828264,316.11133021954447,317.08051041327417,317.12799575086683,316.6767054074444,316.7867344841361,316.44592647161335,316.2029505139217,317.1276591490023,316.8353840499185,316.0187664167024,316.42392118740827,317.2000118615106,316.4397272793576,315.5348378322087,315.47783097904176,315.27459143381566,316.22177623491734,315.94424073025584,314.970134481322,315.3721952973865,315.86004959465936,315.7032989664003,316.048102513887,315.6160224224441,315.32410207390785,314.4746065554209,313.9036387973465,314.82173933135346,315.3707629228011,315.9394336817786,316.78831222839653,316.25109251309186,316.42916239378974,316.69056441960856,316.67259611655027,316.06935906177387,315.55100620910525,315.95131312543526,315.9171233116649,315.04835554398596,314.62603185512125,315.18646358232945,315.4728813096881,315.5088823894039,314.67937548970804,314.6979205920361,315.4238936584443,315.82198964990675,315.8838476971723,316.6499852030538,317.46874308073893,317.8781635388732,318.29851036844775,319.14787805918604,319.9671837799251,320.24258726648986,320.1270000617951,320.1244982369244,320.1973139247857,320.57956313714385,320.46963671641424,320.158829651773,320.061267752666,320.3280080584809,320.2923519127071,320.00595511030406,319.7401024987921,319.06608816608787,319.0469545307569,319.33143446035683,319.4212692696601,319.79369884496555,320.6667066430673,321.0113805588335,320.6215439001098,319.9335983367637,319.54598406422883,319.6075476766564,319.23191722715273,319.8310825279914,318.84345857053995,318.43337761377916,319.2400502320379,318.65469953464344,318.8811137038283,319.6784063465893,320.5082077421248,320.4391665835865,319.6074047316797,319.15592841617763,318.9683187683113,319.3421223387122,320.044998713769,319.0699308873154,319.9396132505499,320.1208983589895,319.9614320322871,319.38360878638923,318.42428527167067,318.22912745922804,317.60444507654756,316.9366212193854,317.7933136704378,317.1379965990782,316.94560484262183,316.3446832965128,317.2397933350876,316.7504421574995,316.6360696568154,315.6746474974789,316.3791709304787,316.43509822757915,316.3538194326684,315.6049362132326,314.6194315413013,315.1593394097872,314.3942525773309,313.8315506288782,312.9506229455583,313.8758517773822,313.911464729812,313.0755125284195,312.20540885301307,312.76041669771075,311.95395941333845,312.50911697465926,311.51179104857147,312.0018239193596,311.1870045675896,310.5251012784429,310.749351948034,311.68187526939437,310.69727138616145,311.3423824114725,311.67026127595454,312.000101484824,312.37906942982227,312.32032916275784,312.5625105262734,313.0873849885538,314.07209912966937,313.167956658639,313.6615905179642,314.1500237076543,314.40598653955385,314.3370192446746,314.2314894963056,314.94313845271245,315.90023443941027,315.2486683735624,316.02857016492635,315.44415974384174,314.75367561960593,314.1720324167982,313.54019953496754,313.16087613720447,313.74844885384664,314.03793624136597,313.39983830135316,312.8604781040922,313.03781001642346,313.30024053528905,312.77758769877255,313.5780157879926,313.43496358022094,312.95446383208036,313.88854703726247,312.902763041202,312.09143245080486,312.6148614664562,312.62924761651084,312.44102144706994,311.85460814181715,310.9216710878536,310.43869688315317,311.1300951144658,312.08282938366756,312.3620599620044,311.6885398728773,310.90225072484463,311.32674111425877,310.6439002677798,310.5462699229829,310.44514796556905,309.76357569685206,310.73069479316473,310.3747824411839,311.2238451442681,312.0928127942607,312.9128020601347,313.65535996621475,314.38333460874856,315.2646969356574,314.34345544176176,315.1534403441474,315.6745440810919,316.19769931258634,316.264689842239,316.0969009078108,315.33181362831965,316.1111383717507,315.3351597529836,314.5625445917249,314.50149013195187,314.71330522792414,313.86522680241615,314.18026345642284,314.944830540102,315.8427248573862,316.30185460299253,316.25974665908143,315.6419358551502,315.68249614257365,314.6859168591909,314.45231867814437,315.3788815247826,315.5638072537258,315.8415574426763,316.352357883472,316.7617323049344,316.7341353269294,317.5081618838012,317.3330821353011,316.8944479539059,316.49733532965183,316.06033487059176,315.927868087776,315.11388058029115,314.44624811271206,313.9440298709087,313.232653665822,312.8518835515715,312.3364880164154,312.6639823759906,313.0162999909371,313.2158369976096,313.0374373225495,313.54839926585555,313.63636870356277,313.5991516080685,313.3240874367766,312.8764880239032,313.8252869178541,313.9624761152081,313.0893598943949,312.7366937007755,312.11929262103513,311.31670640036464,312.20224732439965,311.3151227692142,312.1568065742031,312.66662745084614,313.37191043188795,313.5047635422088,314.1896630129777,314.48506785649806,314.268033166416,313.63984012324363,313.1903290268965,313.6645879223943,313.209584960714,312.8367839977145,312.14666404761374,312.439357386902,313.2667853999883,313.2618163432926,313.3614876740612,313.31167498603463,313.9981960761361,313.58205073326826,313.4729973934591,313.33460784563795,313.4569609789178,313.43069577077404,312.7833553184755,313.67464895686135,314.5714726783335,313.82959340838715,313.2717507360503,313.63301629014313,313.15203527128324,314.0945465308614,313.6277162693441,313.2183780455962,312.94042015774176,312.237454646267,312.9695008173585,313.3039869237691,312.72800094494596,313.60509808408096,313.0147288660519,312.6369083682075,313.37751145800576,313.9625643393956,313.89174132049084,314.84381959820166,313.8998916307464,313.72511802613735,313.9264896539971,314.4125559250824,314.4097703001462,313.6623330106959,314.63736558379605,314.9447902068496,315.65501979133114,315.03727870061994,314.4446863462217,314.72585140075535,314.860344434157,315.61863498715684,316.45983889559284,317.1318620648235,317.5329459300265,317.67382693849504,318.15871997736394,318.90765192871913,318.3478991226293,317.38407700229436,317.7613774300553,317.1741272546351,317.5946951075457,318.189328817185,318.39747707080096,317.7566258604638,317.5679954192601,317.4488199003972,316.9297402910888,317.8402310558595,316.9712509699166,317.52312102820724,317.2771521206014,316.8832936193794,316.17941073840484,316.10523985605687,315.70111346710473,316.4146870984696,317.17981642950326,316.2182088359259,316.0516185518354,315.52917320048437,315.48852517362684,315.4926888938062,315.29342483123764,315.6426670043729,316.4911899790168,315.85343630751595,315.56853639287874,316.10870520723984,316.7561976071447,317.4883941812441,316.731912126299,317.153228844516,316.67435087636113,315.82107511442155,315.04035324789584,314.5365781672299,314.9061100766994,315.66227389359847,316.2886508544907,316.61615470517427,316.0689480355941,316.3771763537079,316.6826576734893,317.1283005559817,316.98132433742285,317.5632159993984,316.6865743389353,315.9970037508756,315.34336563339457,315.11255723331124,315.2079810020514,314.592518735677,313.6174456025474,312.76421483652666,313.056378188543,312.61795717617497,313.186845486518,313.32124829106033,313.45726123126224,313.38520233286545,314.2773249037564,315.11029931297526,315.5160586121492,316.258506258484,315.7829909962602,315.68009917996824,314.77120192954317,313.9854665012099,314.497978863772,313.62276845565066,313.0086967814714,312.4246056112461,312.0194037319161,311.7885529967025,311.5744209405966,312.4660703879781,312.0152666014619,311.32250946899876,310.6162902065553,311.45482413005084,312.03790979320183,311.578281192109,311.2744607371278,311.2384000257589,310.34634613851085,311.1592879812233,311.5859322375618,312.25747222825885,312.60808088304475,312.5340119302273,311.6915123304352,312.03445757413283,311.63306546444073,312.63080309983343,313.0192127325572,312.4456280474551,312.452562934719,311.66183881787583,311.70395235996693,311.60748065495864,311.18382882652804,310.85997114516795,310.1060238685459,310.6057934309356,311.143167572096,311.12878619972616,310.90817578695714,311.0280698877759,311.5273782988079,310.7719089994207,311.5221852110699,311.5099315303378,312.0233369139023,311.79320923937485,311.5698721134104,311.49112109746784,310.65597365330905,310.4432391594164,309.8335720356554,310.1008822042495,309.6873011086136,309.7903247103095,310.3660676609725,311.3245707442984,311.3548815357499,310.49952793540433,311.11926682433113,311.8053182833828,310.85230442974716,310.51279468648136,309.914479797706,308.9556262465194,308.1980270622298,308.1712316153571,308.888391982764,308.89127941057086,309.0066176103428,309.0099235624075,309.8652550270781,309.45808771345764,309.91718786535785,309.8348796875216,310.31311008892953,309.6597225414589,310.46074193902314,310.2338789361529,309.3316350267269,309.471392782405,310.3695060638711,310.56406162213534,310.74785089027137,311.1914377491921,310.39266979834065,309.77471341053024,309.541822320316,310.49020173354074,310.79503007186577,309.8420358831063,309.21597873279825,310.0247259051539,309.3245856584981,308.7196049182676,309.7082205028273,310.62960368115455,309.70155261596665,310.69920979300514,310.02474554860964,310.8422063039616,311.1703423950821,310.24987336061895,309.65998322702944,309.9667957993224,310.3054697695188,309.32539848191664,310.1174464253709,310.1682526045479,310.6650357786566,310.64463534392416,310.2539659095928,310.99426838057116,311.6882889880799,311.8425184879452,312.39980402961373,312.37909163627774,312.5456305304542,312.2492618034594,312.99828578112647,312.6526163686067,312.8340842728503,311.8875285112299,311.1698946999386,312.11789207486436,311.12728528119624,311.65668750274926,310.66526520904154,310.20303415413946,310.1264270558022,309.6207191674039,310.0350776570849,309.4949667309411,310.0838177665137,310.2755680559203,311.2321114046499,312.23121540015563,311.6818569749594,311.5924580725841,311.54993095761165,311.5302551072091,312.0871657980606,311.77531765401363,311.91791343688965,311.89799635345116,311.66110698040575,310.7801809948869,310.70602040411904,311.13392533687875,311.3713925774209,310.8152236021124,309.91138231148943,310.33709823479876,309.7286946242675,309.5471351998858,310.44196779839694,310.93009929638356,311.4014810118824,312.3569030542858,312.92149711446837,313.0122156422585,312.99770515738055,312.60084528662264,313.03750247182325,312.3042265921831,312.60896502481773,312.82415898377076,313.05114449746907,313.90749767702073,313.88862984534353,313.88963471585885,314.75983188906685,314.7124057998881,315.39253008924425,314.87957281060517,314.6656009978615,314.26961529813707,315.1870687510818,314.49183566495776,315.46599775273353,315.06861508404836,314.72168380441144,313.8903862396255,313.4332333165221,313.5510966638103,313.73273436445743,313.0114779714495,312.41449336055666,312.28125035064295,312.91648716200143,311.9221668741666,311.36081043910235,312.0612482391298,312.702376766596,313.47535016713664,314.23710420541465,314.7588577005081,314.10786182945594,313.98476117523387,313.750075425487,313.58425967535004,312.86900409916416,312.52106876671314,313.06142633454874,313.74330258741975,313.14435882726684,312.2018467425369,312.63826388679445,313.63661412661895,313.2827352131717,314.16526066930965,313.8906040061265,314.53106951666996,314.76186251081526,314.71691529266536,313.7381536308676,313.5485895788297,313.3141746320762,313.66979043604806,313.80323656694964,314.6177395824343,314.7181253358722,314.3747359388508,313.56345774186775,312.9530424326658,312.41078259563074,313.2424837714061,312.82738867914304,313.20321989478543,313.4051806880161,313.51553345657885,312.9449572348967,313.37294116662815,313.340577440802,314.17821269109845,313.98480223538354,313.6480401484296,314.2951024095528,313.50310281291604,314.4514132202603,314.96968381199986,314.50074384734035,313.9234846397303,313.944304194767,313.5195769504644,313.90303418505937,313.34298704657704,313.7578323665075,312.96240077354014,312.0708154258318,312.5426971646957,312.4927128921263,311.8219561604783,312.3596582268365,311.5381329511292,312.2170408265665,311.6223123893142,311.98694766126573,312.82249377761036,311.916431363672,311.12287377612665,310.49330363608897,309.5006791674532,308.8017640924081,307.9103612154722,308.42882397025824,307.6733466857113,307.2048081960529,307.6010423502885,307.9187756329775,307.7509758598171,308.66504251537845,309.04495243914425,309.9886160083115,309.2973617115058,308.40360630955547,308.7461443855427,308.3319367370568,307.80141246318817,306.8850541263819,307.1619776058942,307.8465122957714,308.5835324912332,309.2995519959368,308.3161568730138,307.89184041135013,306.9219619645737,307.6504138703458,308.47512571141124,307.63294224254787,306.8738718526438,307.4404281373136,307.6572092133574,308.5633513345383,307.6409923587926,307.40851188870147,307.5258932001889,307.07095526717603,307.397132080514,308.20377773977816,309.14432096434757,308.5011283480562,308.4546589353122,307.8754428010434,308.3643262479454,307.9720769566484,307.6166493226774,307.09702492365614,307.2797725154087,307.6887422786094,307.5421596430242,307.2338042897172,306.63211539713666,307.31038102228194,307.0766321248375,307.88645221153274,307.356286266353,306.7038589916192,307.09496179874986,307.81143128080294,308.7056831452064,308.80887120356783,309.42151074903086,308.87773309089243,308.8020784910768,308.6227666242048,309.42504572309554,309.81714741606265,310.4342929460108,309.6840528678149,309.5824539158493,308.6369018778205,309.63641683990136,308.82676424551755,308.6836748542264,309.41828185878694,309.95145873492584,309.49062637612224,308.9453536532819,309.75241168169305,309.5854868837632,309.76870368700475,309.0918122106232,309.2934112800285,310.1514398227446,310.43400125345215,310.0585844242014,310.8835269208066,310.9021511222236,311.7428509336896,311.7311692032963,310.83399501862004,310.51862512808293,310.74956991616637,310.4557093689218,310.54280700162053,311.03459457913414,311.86493917461485,311.94467214215547,312.52450993005186,312.56039989506826,312.31359555991367,311.8441489911638,311.9989988980815,311.8972524856217,311.0840322659351,311.3597778528929,310.4071637922898,309.67082187812775,309.3012600070797,308.75073053035885,308.03192130476236,307.0617399532348,307.16124395513907,308.1020527514629,307.96050253417343,308.7715431684628,309.2414098684676,308.40836918726563,307.5030985288322,307.67170091625303,308.27949401317164,307.8629435701296,308.79180877422914,309.30017705867067,308.85741465259343,308.8942347029224,309.1302634505555,308.36678713094443,308.4855373231694,308.006853191182,308.0967884338461,308.82559938682243,309.02577562630177,308.68914690520614,308.83515045186505,308.5321502517909,309.2008965895511,309.95461476873606,309.2095969785005,309.1784560177475,308.6298823901452,308.37571627646685,309.01727412315086,310.00598673243076,310.96042380062863,310.32287254557014,309.5674184053205,309.20991126215085,308.37266356498003,308.06134169502184,307.78382485965267,308.72341276006773,308.3105580797419,308.3970558629371,309.14633236359805,309.2589462385513,309.1063086478971,308.35666653187945,308.6053785709664,308.6813350976445,308.8453612807207,308.5086319837719,308.1174265528098,308.6754150628112,308.9152421383187,308.49339936254546,308.8684734068811,308.23617468075827,308.37837795261294,308.7948103346862,308.4304350512102,307.88618577551097,307.5046305139549,308.05708325095475,307.2473933198489,307.51906628580764,307.64560782629997,306.68112111696973,306.763038596604,306.64170808903873,306.4917955901474,306.6372461714782,306.42875181138515,305.91400957340375,306.61321801971644,306.9608609424904,306.5063882111572,306.9005994424224,306.2547511025332,306.63715265039355,307.0941861155443,307.19718471635133,306.69552423106506,306.2703441036865,306.6445518909022,306.5255205365829,306.7831610594876,306.8738765581511,307.4639782682061,307.4384572650306,308.00766177428886,307.0331992832944,306.42117337184027,306.09843201795593,305.9318729271181,305.86364797875285,305.5463103787042,306.40871183527634,305.55396803468466,306.0848235259764,305.9338649143465,305.969063881319,305.0235957596451,304.42228768439963,303.7751135369763,304.59052834752947,305.13970584468916,305.3123841723427,304.70551518537104,305.4703930565156,305.5648135691881,306.09907908691093,306.2462001047097,307.24016086990014,306.35752284666523,306.02511975960806,307.01102545298636,306.76298307301477,306.8156981752254,305.9672895199619,305.7247124663554,305.9542962773703,305.884923833888,305.1408214662224,305.71255819965154,305.3472171118483,306.2782342056744,305.54993046540767,305.8940776051022,305.2221333915368,304.32351987063885,303.8010011189617,304.728076802101,305.0696669924073,304.1537919305265,304.7418840546161,305.2230869755149,306.05291728675365,306.35840571159497,306.3577848835848,306.12661843467504,305.3939403980039,305.7139622364193,306.67545289965346,306.89709724951535,307.46519591193646,308.3260395764373,307.57935234578326,307.2452320274897,308.1462257881649,307.6465123677626,307.0261883493513,306.9989325911738,306.41073926026,305.58858825685456,304.841421241872,304.0762571161613,303.60594586096704,304.00917763775215,304.6215007104911,305.6115380269475,305.06345541076735,304.82561135990545,304.3452133364044,303.59112086193636,303.53463822091,303.49526954768226,303.21543775545433,303.6877633933909,303.1892715799622,304.0443848562427,304.0437879851088,304.7795467409305,303.85689641023055,304.0026083821431,303.59948108764365,303.98173155263066,304.3387046637945,305.07677617808804,305.7413822906092,305.1726556858048,304.87763996748254,304.7260522781871,305.7228725356981,306.1623525740579,306.726252540946,305.92699016910046,305.18084587110206,305.1079294793308,304.7006799057126,304.83206414198503,305.3530861684121,304.41499145980924,304.43322798842564,304.33415858773515,303.75512382015586,303.7634361018427,303.8618616685271,303.25171677488834,302.61028895759955,301.6895783217624,302.20670620631427,302.5722373407334,302.5720196212642,302.9833936239593,302.08303257031366,302.25763957202435,301.3246767190285,302.2694328688085,303.00007394794375,302.0838330774568,302.936181881465,302.2731621474959,302.9018576000817,303.7478889338672,303.68762189429253,304.004617462866,304.1301017217338,304.6212448342703,304.88039350742474,304.1390924178995,305.1118529769592,304.9775706832297,305.0737986420281,305.0158559270203,304.47255468927324,304.4840073096566,303.6680692890659,304.03064217045903,304.2512909639627,304.11987024825066,304.7274898304604,304.7374116568826,303.7693595602177,303.6642670473084,303.9052041294053,304.8658687165007,304.0026585655287,303.9782487512566,303.39981481526047,304.0707859052345,304.1978901270777,303.2962003736757,303.5326055358164,303.8022086424753,303.21493869274855,303.45096902921796,302.5132353268564,302.44955742685124,302.7191403484903,303.4023255854845,302.90638274885714,303.76560576213524,303.26072896877304,303.93737001297995,303.09534581610933,302.6217437554151,303.1621498041786,303.3455579308793,304.0941215660423,304.8950096424669,304.2254781811498,304.56167424749583,305.4310279684141,305.9521561958827,305.9747967044823,305.81107074953616,305.36185731505975,304.68925283523276,304.04663725430146,303.85424727154896,304.1191761055961,304.9591218228452,304.9562550703995,305.61596278334036,305.8483086130582,305.06397368293256,304.14593538595363,303.73334436817095,303.2820055866614,303.4744828399271,304.39546594023705,304.655514088925,304.68044009944424,305.3611931083724,305.1520327893086,305.00782409962267,305.6124304481782,306.48643716983497,305.54108143784106,305.86364967236295,305.39119456801564,305.95122826937586,306.64907885715365,306.0324773429893,306.1799932997674,305.5415227697231,306.2315400536172,307.0809553740546,307.7959810299799,307.26336464472115,307.5403930596076,307.14219569787383,307.1717732613906,306.9351631370373,306.4381201523356,307.15694934362546,306.64705033926293,306.4997002063319,306.9084562379867,306.0403341948986,305.0690564145334,305.11800761381164,304.8882095240988,303.9908391004428,303.402709485963,303.36402411339805,302.6370953102596,303.0414171498269,302.9286574511789,303.89140512468293,304.5619373489171,305.39013025164604,305.3788408059627,305.0220080590807,304.8817411288619,304.038339945022,303.8076141909696,303.3337024827488,304.1001981738955,304.46300972346216,305.07022192003205,305.6366133815609,305.90029912721366,305.91295309737325,305.39060839265585,306.31365171587095,305.81310132332146,304.83936876570806,305.1895593814552,305.9073279518634,306.13446436356753,305.37799234548584,305.4576334664598,305.6073372573592,306.39026647945866,305.993432902731,306.40035833604634,306.31622963165864,306.10579004883766,305.8468199148774,305.1212028283626,304.17061563488096,304.8377347108908,305.7598793008365,306.57881187368184,307.50356379617006,307.2093188446015,307.82306467555463,307.5391572434455,308.04909535869956,307.50779891805723,308.29248286318034,307.3121359627694,307.6868606149219,307.9548865123652,308.09167424216866,308.10042764851823,307.31805011536926,307.85673043550923,308.58582828519866,309.43794709956273,309.21481860568747,308.663197146263,309.3091301191598,310.26484582200646,310.0464700930752,309.44954653223976,309.96945184934884,309.5033685779199,309.83253140188754,309.3993972307071,309.29114747513086,309.0457011340186,308.3383832788095,308.6385501357727,308.4180925693363,307.99598009930924,308.9401468830183,308.501096597407,309.2238730774261,308.2375226793811,307.5064364820719,308.1889522885904,308.1170619102195,308.8810525620356,308.6087599643506,309.44749454502016,309.88472496764734,310.5923397350125,310.9569465559907,310.5708389398642,310.10418484639376,310.2177663319744,309.58898553065956,310.30057104304433,309.4081331314519,309.8467953251675,309.9426011722535,309.08769257739186,309.6159525131807,309.43952331971377,309.5893505681306,309.9829469230026,309.0246887556277,309.0855942387134,308.47499930206686,307.72578690573573,306.77501798514277,306.8965674783103,307.53403908759356,306.6227374137379,307.06173078296706,307.4124694955535,307.391460748855,307.0484876502305,306.34119979897514,306.90347768645734,306.88796234689653,307.2675643628463,307.261423043441,307.8324266914278,308.51655518449843,308.08448880305514,307.44892862206325,306.6224157246761,306.60909813130274,306.70837163273245,305.95304342126474,305.0667988420464,304.22911007050425,303.3181845601648,304.1325823501684,304.079721711576,303.0808432013728,303.18942834995687,303.8858613036573,303.3393496568315,304.22907010279596,305.168383654207,305.72227959660813,306.44620225019753,307.09323184983805,306.1584166511893,305.1712476955727,305.0536747169681,304.6728418748826,303.6751952958293,303.5839592074044,304.5404842207208,303.734508221969,304.04918686905876,304.05592427263036,304.68163774348795,305.6311472947709,305.7757871081121,305.0348905767314,304.9026403101161,305.3995893714018,306.0354565484449,305.8158034053631,305.45770570868626,305.8802665793337,306.34024725528434,307.13309041038156,307.24216473614797,307.6813009646721,307.0589005718939,307.1816319078207,307.75218803761527,307.08694664994255,306.0909241018817,306.29112179996446,307.148170591332,307.7163478904404,307.7675783005543,308.62498588487506,309.07927389023826,308.15269035147503,308.37244744366035,309.2335428711958,309.5796659323387,308.8778058560565,309.33337489468977,308.457917122636,307.6743114963174,307.6883392916061,306.9463190641254,307.13821198605,307.98006114549935,307.3586775343865,306.54848303925246,305.6763782114722,306.30633560894057,306.9273032271303,306.37968012923375,305.67010408081114,306.0822656801902,306.01938643632457,306.9053019718267,306.4475594069809,306.7979073585011,306.7749198144302,306.21813286142424,305.3633246747777,305.6609396105632,304.67277001729235,303.9190324242227,304.8415650217794,304.8106817449443,304.9744026986882,305.75533091649413,306.68008780293167,307.38684425642714,306.71722929319367,307.6310667465441,307.85702907294035,308.79210750898346,309.5586994243786,308.83185206819326,308.49132097279653,307.5792294088751,308.3526510288939,307.94359559426084,308.1663008071482,308.7561171767302,307.92695763893425,308.36418797820807,308.51234949426726,308.0709923612885,308.8539040405303,309.44886987283826,310.36418436141685,309.5798723073676,308.65686870506033,308.45049574924633,309.4481363669038,308.5643021003343,308.5526147997007,308.64528506668285,308.80235487921163,308.2010158128105,308.269125781022,308.20360203040764,308.1126254326664,308.5088118929416,308.9487803061493,308.22007214603946,308.9721986874938,308.7341632945463,308.2299140570685,307.83653507893905,307.0983286667615,306.14451085962355,305.68321864074096,306.2402946362272,305.75598410051316,306.57022416358814,306.6805862337351,307.4114193567075,307.3575754035264,307.73722478188574,307.6144696320407,308.4292756593786,308.35616450896487,307.9197776289657,308.23149942979217,307.46507105370983,307.2399556282908,307.10391001822427,307.6925738505088,306.8041418637149,306.1862624664791,305.1963497372344,305.33922348544,304.3930383240804,304.03814553515986,304.33601466799155,303.80176716065034,304.67650681035593,304.66170806158334,304.78711243951693,304.7790896757506,305.11492592003196,305.3266239450313,305.7810977436602,305.8589878194034,305.6867226967588,305.51292474754155,305.60943153174594,306.22421729844064,306.70594599749893,306.2779214880429,306.56929627247155,305.6060307309963,305.0247859656811,304.6797015443444,305.65279142651707,306.56262159580365,305.87299659941345,305.1951354127377,304.5284242066555,304.96015222743154,304.62437165062875,303.96145093860105,304.94045019103214,304.64315154682845,304.58381464518607,304.205410592258,303.2920459508896,303.5155844395049,302.84601026866585,302.48588621849194,301.92993224970996,301.9663485707715,301.19269666215405,301.6205543940887,302.1248139035888,301.8749288828112,302.0931268995628,301.32305790344253,301.39387650601566,300.45260114222765,299.9087566025555,299.1114493664354,299.88652039831504,299.658490318805,299.460853245575,299.73367722006515,299.0546336155385,299.754752590321,299.43612686218694,299.0606549042277,299.87884186347947,299.86293556401506,299.64277239190415,300.53494492406026,300.4075983497314,301.09541327646,300.31062908656895,300.97466361615807,301.1163126039319,301.26214292179793,301.9858185881749,301.4416058571078,302.3458136320114,302.3225608551875,303.15902535570785,302.50014888402075,301.8495390219614,302.1450294740498,302.2530395309441,301.4808446923271,300.9553900817409,300.5710111358203,300.79642359074205,301.58794345287606,302.3252245783806,303.2655451698229,302.88717680145055,302.0153459822759,302.0492090820335,302.6964013511315,302.7069160132669,303.64301693439484,303.98328338190913,304.2589486623183,303.36807586532086,302.75998122338206,302.09484864911065,302.9537997795269,302.0555104757659,302.9978960673325,303.81284309504554,303.7074652975425,303.58035638090223,302.73067909292877,303.3152478290722,303.4098128802143,303.54764404986054,303.1705456385389,302.482467178721,301.74740433786064,301.8032490713522,301.20933029195294,301.11146196955815,300.92931253137067,300.79187956638634,300.52032236987725,300.6509245093912,299.9502120972611,300.48978708172217,301.37384651135653,302.11419366812333,302.00202562101185,302.8498452496715,303.3998210518621,303.12895508063957,303.3280877843499,303.65106727415696,303.4349928032607,302.55254866275936,302.5573449297808,302.67032933421433,302.15780043043196,302.4134178077802,301.83949456969276,302.0215910668485,301.16631154110655,301.12532446021214,301.1094653927721,300.9273607651703,301.8580725826323,302.67286153370515,301.7221898394637,302.0624791216105,301.2236892692745,301.2227372499183,300.8395807053894,301.02202816074714,301.5879614702426,302.4371696426533,303.215963749215,302.3348066159524,302.74334372533485,302.75527523085475,303.61453000688925,304.3167452607304,304.2831316902302,304.85647332528606,304.7725725034252,303.9393449537456,303.7459168508649,303.1951468922198,303.72313089156523,304.1353341611102,303.4528623255901,303.1892247032374,303.90987411746755,303.4128650184721,304.4036415973678,303.4571490981616,302.86405554274097,302.8582220384851,302.99605890596285,302.3275306299329,302.79774122918025,302.79603460012004,302.27148934919387,302.6768349916674,301.73381001269445,301.54007243923843,301.50101725850254,302.13927715597674,302.5116694434546,301.67644819710404,301.35959559632465,301.1468065790832,300.2150996122509,300.1565988212824,301.0758881587535,300.6148885646835,301.4583193245344,300.5352800935507,299.7767002917826,300.3347341893241,300.8799453303218,300.67084455071017,301.16421820782125,300.54651272436604,299.67849116632715,298.67849600687623,297.9816481540911,297.07104314444587,297.60899270605296,297.1133879804984,296.99504354270175,296.84216298768297,296.52523388247937,296.9248570371419,296.7538841511123,296.51790687208995,296.4223908749409,296.6824761396274,297.6476200912148,296.8252524365671,296.19133904157206,295.57323721563444,294.60780634125695,295.2285006241873,294.3675183299929,293.9874226353131,294.5693566920236,294.67363759549335,294.0485990107991,294.1040763929486,293.4578379523009,294.3878996814601,294.27015398303047,294.7123250453733,295.6167049710639,294.6681701387279,293.99068554630503,293.27323246747255,292.85311506548896,292.0277029131539,292.5993667212315,292.692231990397,293.0176966241561,293.76824862649664,294.0668353601359,295.0664286073297,295.0985236405395,295.175579527393,294.81276626046747,295.77876381156966,295.76022649277,296.6736192172393,297.2065757336095,297.36458106385544,297.73158110352233,298.49706689082086,298.9710121653043,298.4142847941257,298.08748963614926,298.32631480833516,298.475022200495,297.6685677850619,297.0671939738095,296.60257516847923,296.3030783412978,295.8891161340289,294.93008559336886,295.6395360901952,295.547108635772,296.1921357619576,295.86119592934847,296.23803304648027,296.6343481936492,296.75469787884504,296.0765978489071,296.9597329655662,296.5461843535304,297.12935013044626,297.4525334564969,297.82097221538424,297.0312658259645,297.9428329626098,297.449221289251,297.40237431786954,296.8376314267516,296.7477924777195,297.3074615430087,297.3435638733208,298.01685625407845,298.66144539183006,298.8273594067432,298.81887966860086,298.60356312058866,299.3130298233591,299.6114957188256,298.8474232912995,298.3226861539297,297.845257146284,298.27329793805256,298.52999939164147,298.07163803698495,298.262003199663,298.65212775813416,298.45786475017667,299.276755284518,299.8443823205307,300.75548508157954,300.3174945865758,299.57236246950924,298.60484366863966,299.3572790599428,299.0005023176782,298.03819513786584,298.34833423793316,298.2246561902575,298.92796261096373,298.9634284055792,298.3429570272565,297.8799795242958,297.2157486421056,296.22341469163075,296.0096844905056,295.2538507524878,295.0877306028269,294.5189863080159,293.8849894395098,293.9524877369404,293.4274290469475,294.2280713156797,294.5008456343785,293.8866766327992,293.5316561474465,293.339124545455,294.15293650561944,294.6490231035277,295.0429850034416,295.4605366704054,295.03013938385993,294.916924060788,295.9131480860524,294.91989208199084,294.48726196354255,293.8752960637212,293.3359712655656,293.36666042450815,292.3818042743951,291.5744756436907,292.2276052306406,292.34786741109565,293.1325056543574,292.6894103833474,293.17992440611124,293.66906774789095,294.0365775767714,293.6686037769541,293.44533839821815,293.73967830091715,294.4762875321321,294.4781659259461,294.3670610389672,295.3227366907522,296.2600793763995,295.7513033468276,296.3298467863351,295.54924694867805,295.3190823062323,294.33543188963085,294.3976912731305,295.23650437919423,294.31062571005896,294.00595640717074,293.28632273245603,293.8512981799431,293.43832441652194,293.549656977877,293.0946205887012,293.4297225512564,292.46700970456004,292.38743852172047,292.7425347068347,292.46901897061616,292.2953970092349,293.05890496913344,293.7544970586896,294.19983997009695,294.86173934908584,295.6813770593144,296.35464545572177,297.3382120914757,297.81049629393965,298.15478073759004,298.37463610293344,297.84608603361994,297.2439514026046,296.4863510541618,296.5416060835123,297.0338168791495,296.92756852321327,297.83685553306714,297.58017748082057,297.14193315198645,297.4452070747502,297.61638637352735,298.24504081439227,298.28293458372355,297.7733290162869,298.25137030519545,297.5983334365301,297.01609901245683,297.3581153661944,298.2527097617276,298.965778099373,298.04581521917135,297.88561865175143,298.712984578684,299.32548414496705,299.21479310421273,300.00904338015243,299.1692514680326,299.1820049835369,299.11188585544005,299.5109420605004,300.212360416539,300.8208028553054,301.4107119459659,301.6247640764341,300.7265468724072,301.6902137529105,300.84597671823576,300.0111628533341,300.09653981169686,300.0012853886001,300.67203629622236,301.5252379504964,302.24516058480367,302.37604063376784,301.9103789697401,301.39824165729806,301.2808312177658,302.13820240600035,302.61412582919,302.1300548291765,301.7754627391696,302.7190443505533,302.96787843480706,302.8701314055361,302.4288366176188,301.9885067762807,301.72812004061416,302.50757286371663,302.4792506643571,302.8828139184043,302.24716417538,303.2236477280967,303.7048309459351,303.63741006236523,304.25944184930995,303.64339297031984,302.85493602929637,302.9374483102001,302.02727735135704,302.07865972444415,302.53833822114393,301.90988516574726,302.2544466778636,302.58924064133316,303.0668196394108,302.5626407037489,301.6556380088441,300.7066006832756,300.61947995983064,300.42254725284874,300.3014586973004,300.85568025521934,300.6530691399239,299.8678227197379,299.3398113870062,299.4322180575691,300.0720658148639,300.23445662716404,299.49697909411043,299.886880971957,300.71201589377597,301.1419066595845,301.73819833109155,302.6442096666433,302.1587784974836,301.9436527923681,302.77110214391723,303.7683371156454,304.50361745711416,304.64255621517077,305.5617827014066,305.09341935859993,305.49307198356837,304.7169609153643,304.7859706883319,304.8439483968541,303.9358437000774,304.15916286967695,304.9574910714291,305.18659212393686,304.5881770774722,305.5869394452311,305.72490843664855,305.06053639156744,305.8705310365185,306.3669027159922,305.72666591824964,304.87544620316476,305.6179396356456,305.03099700435996,304.33144594496116,304.2961897207424,304.08721655094996,303.1221846905537,304.0331744835712,303.83237806148827,303.9262585649267,303.8119005365297,304.0376217411831,303.4020887245424,303.9537557698786,303.76561689935625,303.62917201733217,304.4658885416575,304.6127949068323,304.41364102531224,304.07781723327935,304.927940140944,304.7546875826083,304.6069521359168,304.3753128219396,305.3190511604771,305.42456604447216,306.24082174384966,305.4495189432055,305.783875558991,305.3344180653803,304.4566720733419,304.50539911398664,303.71932193264365,304.2531106439419,303.76266548456624,304.40411688853055,304.06519699282944,303.09915896318853,303.3183307913132,302.31965117994696,303.1573160267435,304.0398058728315,303.1643292205408,302.5691422126256,302.55501126497984,301.7350417939015,301.2899889522232,301.897572232876,302.2304072366096,302.4475930193439,302.3513789800927,301.4027770780958,300.4293999373913,299.88064244482666,299.30151833128184,298.6040802160278,298.69155193539336,297.7229998726398,297.4710322166793,297.152312300168,297.71889279270545,297.7950669080019,298.3679969543591,299.16795153543353,298.4722662400454,299.18279776815325,298.2160265673883,299.127456672024,299.1459370870143,299.31854914780706,298.4047746025026,297.8603269662708,297.67134506674483,298.4902635863982,298.583299708087,299.4911762936972,299.3627489460632,298.79790863068774,298.6841523228213,297.88344379421324,298.1145112076774,298.3216983289458,297.4422787409276,296.8299210816622,297.67302486440167,298.4016024931334,298.3020481192507,298.79056444298476,299.6387250586413,299.5525627066381,300.16997579764575,300.9959049853496,301.49054621811956,301.54356662975624,301.8200098942034,302.2648851480335,302.1351018245332,302.5855689817108,301.7811856060289,302.62233954528347,302.90302995499223,302.1438897512853,301.8206098349765,302.5476328134537,303.1304232943803,303.6027725371532,303.42929346114397,303.658730418887,303.1208244157024,303.78428116068244,303.79481307882816,304.17617211584,304.24005782650784,303.6800904655829,304.0051780808717,304.220509163104,305.1859451313503,304.5655885874294,305.02144627831876,304.53578038560227,304.64514528168365,304.1132209626958,304.4549547354691,304.7987813092768,304.20244266837835,303.97040656162426,304.86706303898245,304.72999183647335,304.331971058622,304.8545127538964,304.12006148695946,303.99248702125624,303.2187646739185,303.21805644687265,302.2926762672141,302.4391677547246,302.3025488536805,301.39502862188965,301.48939638910815,300.9416319048032,300.00576999085024,299.2432189313695,300.09562959428877,299.7541543045081,299.8375682500191,299.46130363689736,298.6260584858246,299.351410550531,298.62770589534193,298.37302805669606,298.1642132480629,298.24829906085506,298.7380026523024,298.0493890075013,297.2692182282917,297.65308194607496,298.1867271559313,297.72108182450756,298.52922567212954,298.88687006616965,299.1905782930553,299.9860161007382,299.10891195666045,299.36883955681697,299.79507374670357,299.6120847244747,299.10559149226174,298.1299429638311,298.38077673036605,299.2670454280451,299.6155316368677,298.85945731960237,298.93800991540775,298.3551560845226,298.28692208230495,297.90943503472954,297.68039823230356,297.69514223886654,296.9576372769661,296.00410214532167,296.36419249046594,297.2168891360052,297.0881728865206,296.63419808167964,296.3444898785092,296.81146369688213,297.4914185688831,297.8301149075851,297.0520165069029,297.22318433225155,297.68827198818326,297.0334329777397,297.7252583601512,297.87566347047687,297.82874025404453,296.8902435065247,297.15549392206594,296.40424082335085,295.4816606771201,294.5850653136149,294.6950533678755,293.8507989165373,294.11980673251674,293.4318903456442,294.01487407600507,293.48289716849104,293.4139472525567,293.9200677690096,294.29137675790116,293.66375973122194,293.1914318683557,293.2908496479504,292.4205901189707,292.9560999972746,292.86892309971154,293.24733534595,292.8197257872671,292.282292840071,291.50989371165633,290.8464508187026,291.02853152435273,291.54130504932255,291.26869983412325,290.3037086920813,291.03102192888036,291.7417502645403,291.8177000116557,292.79866266297176,292.4587621577084,291.9385779937729,290.94617192447186,291.8906501689926,291.4337993101217,292.34357482148334,291.69367073709145,291.92851070454344,291.75598042970523,291.5601885644719,292.30716495169327,292.0441790977493,292.29739658208564,293.25957333948463,293.34094455465674,293.89732627989724,293.7415507119149,294.44296034565195,294.8700929307379,294.13135954691097,293.17247749865055,294.0657303077169,294.00750721571967,294.0117005207576,294.81670802505687,294.38029264099896,294.6874797870405,294.109414962586,295.08906374964863,295.4481858247891,296.09060495346785,295.94734045444056,296.2263122899458,295.43331464892253,294.56568326987326,294.17687960295007,293.8313464350067,292.86950120842084,293.29522394621745,293.61738322488964,293.9836018709466,294.92193305911496,295.0090716537088,294.0340821999125,294.4911548565142,294.9003674136475,295.2363943718374,295.35584032023326,296.30614497419447,296.8487981967628,297.57716819411144,296.7347595989704,297.5515248635784,296.75355973187834,296.1210985076614,296.54083550255746,297.31078222580254,296.4592023040168,297.25912804622203,297.1625527618453,296.18798980442807,296.09766136016697,297.0033367672004,296.6713232486509,297.3180931075476,297.7719244011678,297.24789826292545,297.1460640002042,296.45994750922546,297.25882031721994,297.49440041789785,296.69728627149016,297.5839102040045,297.1232609078288,296.1509249410592,295.7710293238051,296.2509524580091,296.50339782843366,295.978227193933,295.67907292209566,296.02580869430676,295.99280144367367,296.86431551072747,296.46075925789773,295.75288708880544,296.25047331210226,295.72460494190454,295.3878526976332,295.4426445681602,295.8959151394665,296.14250557962805,297.1163739343174,296.40636753011495,296.96549549978226,296.64078239398077,296.42088992055506,297.2012709849514,297.93987120408565,297.8551380261779,297.02122598188,296.81938623962924,297.4667952833697,296.81029916601256,295.84949112450704,294.88291867403314,295.3271585996263,294.9427474332042,294.48251663986593,295.12538159638643,295.203233751934,296.0404619812034],"y":[-5.536801170092076,-4.633799843955785,-4.596678429748863,-5.567268518265337,-6.200929827988148,-6.982958549167961,-7.1387218767777085,-7.018081068061292,-7.53715889248997,-7.050266545731574,-7.294996813870966,-7.981939332559705,-8.809750490356237,-8.255464994814247,-8.219495856203139,-7.682687429245561,-6.952347171958536,-7.320692290086299,-7.289922446478158,-6.300897303503007,-5.531720800790936,-4.689490519464016,-3.8440077281557024,-3.9658080781809986,-4.296375062316656,-4.666112017352134,-4.668128855992109,-5.377447911072522,-4.5913255964405835,-3.993356722407043,-3.5450235083699226,-4.189253199379891,-5.100284235551953,-4.544855883345008,-5.13678022660315,-5.110403965227306,-4.809088850859553,-4.062273752409965,-3.1264086537994444,-2.3778350581414998,-2.5214330181479454,-3.1586502506397665,-2.420326908119023,-2.5711456458084285,-1.770757324527949,-1.885692359879613,-2.5765330414287746,-1.8334637619554996,-1.4802978299558163,-2.459614880848676,-2.221645148936659,-2.888684533536434,-2.968773878645152,-3.6753869452513754,-3.075535043142736,-2.317471072077751,-2.606124042533338,-1.8453170503489673,-1.9678282761014998,-1.0385820749215782,-0.9037368642166257,-0.4632918066345155,-1.2557701338082552,-2.0284239766187966,-2.1890812078490853,-1.5288643334060907,-1.6981595107354224,-0.7752214660868049,-1.4640698856674135,-1.3160904445685446,-1.255731096956879,-2.220249839592725,-1.3675550012849271,-0.7575153834186494,-0.47579432651400566,0.35439293552190065,0.36929246690124273,0.8339959951117635,0.4003642783500254,0.1272603594698012,0.5938316537067294,0.5617942782118917,1.4684621025808156,1.6233382700011134,0.8709404077380896,0.5445583094842732,1.449358468875289,2.3491200669668615,2.7253559064120054,2.119132376741618,1.3721680045127869,1.2826188844628632,0.6878680200316012,1.1313231512904167,1.456939089577645,2.0284091057255864,1.6114859115332365,0.6911040525883436,1.5951758371666074,2.029896207153797,2.8725467422045767,2.1582979862578213,2.2016125074587762,1.7102222959510982,1.476336897816509,0.5333124799653888,-0.09977848082780838,0.02559510013088584,-0.2792465169914067,-0.12473370507359505,-0.33588370168581605,0.05806068144738674,0.5256969430483878,0.5831318544223905,1.4133592755533755,1.6741730514913797,1.0975307561457157,0.616626407019794,0.16009604558348656,-0.7305840570479631,-0.9441143297590315,-0.9097043531946838,-1.8104966767132282,-2.303777930792421,-3.252235089894384,-4.222854245454073,-3.377331167925149,-4.120608791708946,-4.759689717553556,-4.7558533367700875,-5.29133128002286,-5.067882675677538,-5.5587532999925315,-6.257436317391694,-6.13394828652963,-6.837098078802228,-7.082646174356341,-6.688598147127777,-6.378392790909857,-5.388285640627146,-5.80377238849178,-6.457558711990714,-6.2123368280008435,-6.96149197826162,-7.0972758289426565,-6.236207750160247,-6.786761398427188,-7.224056330975145,-7.030900389421731,-6.918706639204174,-7.770633811596781,-8.524033862166107,-9.040464357007295,-8.414382421411574,-7.889631399419159,-6.984508058987558,-7.371823494788259,-8.270362436771393,-7.635485307779163,-7.776091248728335,-8.550898542162031,-9.06774646928534,-8.131519566755742,-8.268960048444569,-7.702743444126099,-6.716295906808227,-6.133559030015022,-6.4156924011185765,-5.89765110751614,-5.007746731862426,-4.262098237406462,-4.622055660933256,-4.4573782635852695,-5.136487476527691,-4.964990545064211,-5.9563224678859115,-5.528391145635396,-4.933006911538541,-5.709866985678673,-5.987371249590069,-5.887325101066381,-5.310166900511831,-4.492751286830753,-4.8646908001974225,-4.631522694136947,-4.858696754090488,-5.225887345615774,-5.959458262659609,-5.3619749513454735,-5.235347296111286,-5.494416127447039,-6.059387477580458,-6.331395904533565,-7.207357428502291,-7.3609528774395585,-7.805593268945813,-8.02589849429205,-7.832186272833496,-8.816636937204748,-7.919379856437445,-8.80713334493339,-9.656777938362211,-9.866964440327138,-9.296630019787699,-8.74607597431168,-7.9299148679710925,-8.544808325823396,-8.285918722394854,-7.763788968324661,-7.959533457644284,-8.531948229763657,-7.784843571484089,-6.978721404448152,-6.556484910659492,-5.833083142992109,-5.451696174219251,-5.616448306944221,-4.723016796633601,-4.270031657535583,-4.542927341070026,-3.652090939693153,-4.304092172067612,-4.61406590975821,-3.7345200493000448,-3.6958085470832884,-3.9403747422620654,-3.5793567653745413,-4.523346167989075,-3.8244637842290103,-3.315667127724737,-3.3544800989329815,-3.6285954038612545,-3.150648271199316,-2.5095182806253433,-1.9643630203790963,-2.6528376429341733,-2.56451222486794,-1.9970461684279144,-2.004159617703408,-1.7939836345613003,-1.921918608713895,-1.1136774607002735,-1.7508834204636514,-1.4369805152527988,-0.944948906544596,-0.01730952737852931,-0.6585296695120633,-0.6730079199187458,-0.148154912982136,-1.095935171470046,-0.3275041035376489,-1.1682113814167678,-0.8885585754178464,-0.7393003739416599,-0.6854893509298563,0.08661955641582608,-0.73001590045169,-0.49533803202211857,-0.16995159117504954,-0.4304330935701728,-1.3256772542372346,-1.2304152273572981,-1.7791371066123247,-1.3061817698180676,-0.6064819805324078,-0.9848548513837159,-0.4991944991052151,-0.915833103004843,-1.8900790205225348,-1.9527393961325288,-2.041491182986647,-1.69573943503201,-1.379311753436923,-1.21884083468467,-0.5142561104148626,0.035456107929348946,0.8195339725352824,0.3105362900532782,0.6824201964773238,0.12913375161588192,0.1903444416821003,0.20386691577732563,0.9083695565350354,0.7372501194477081,1.6021637790836394,1.0516693405807018,1.7627633241936564,1.8133389255963266,1.061794432811439,1.118628200609237,1.8178886980749667,1.4509736779145896,2.0810292386449873,2.9285823423415422,2.621387262828648,3.3561923410743475,3.9241594769991934,4.7110439338721335,4.203804061748087,3.2521625570952892,3.1085937810130417,3.5723459841683507,3.2741942862048745,4.010101188439876,4.726883084047586,4.966101652942598,5.860488896258175,4.965628145262599,5.632067763712257,4.974444123450667,5.578678011428565,5.936492683831602,5.429975347593427,5.206679863389581,5.378957157023251,4.857214096467942,5.177910663187504,4.425121481530368,4.558125173673034,4.713367861229926,5.104797032196075,5.850523208267987,4.914087317883968,4.689759919419885,5.438197209499776,5.200375995133072,4.364256102591753,3.4907786222174764,4.421745536383241,5.261057470925152,6.210028018336743,5.967455370351672,5.865317118819803,6.064975990448147,6.5012759836390615,7.119339210912585,7.774958868511021,8.297017789445817,7.807921915780753,8.583928271196783,8.206043671816587,8.324781669769436,7.861178291495889,7.5415823655202985,7.912558013573289,8.751234822906554,9.349351638462394,9.186453639529645,10.145040767733008,10.40624025510624,10.63537974236533,10.864747895859182,10.152974475640804,10.107780483085662,9.755032449029386,9.021630225237459,8.103925785049796,8.472344648558646,9.415789167396724,8.484270900953561,9.335030403453857,9.059684129897505,9.916405993979424,9.462513510603458,9.561823898460716,9.24793768953532,8.29505167575553,7.885214673355222,7.29683493822813,7.990769577678293,7.978081951849163,7.49185198219493,7.736925041303039,7.528828936628997,7.987945495638996,7.679980192799121,7.920630744192749,6.99955793004483,6.513485612813383,6.438372272998095,5.466077147983015,4.568345975130796,3.8286794871091843,3.65435254573822,2.9458284177817404,2.480846135877073,2.19302914198488,2.3157655666582286,3.146301139611751,2.7865178282372653,3.7361960974521935,4.683691686484963,4.91964317439124,4.345122513361275,3.4631328997202218,3.9960427810437977,3.1316256751306355,3.658806870225817,3.246336509473622,3.156554297078401,3.473037151619792,4.425791361369193,5.020207918714732,5.655062559992075,4.977673877961934,4.7736051944084466,5.347357518970966,4.653074816800654,4.992534296121448,4.18767292285338,3.5101551455445588,3.536409480497241,2.6619319999590516,3.090249091386795,2.629537017084658,2.0926757222041488,2.9752014875411987,3.1804497223347425,2.7890890087001026,3.4168590144254267,3.90425106883049,3.6401798860169947,3.883736900985241,4.1859592236578465,4.891650042962283,4.6333989184349775,4.893649041187018,3.931117831263691,4.814843090716749,4.885916672646999,5.129817967303097,4.966631278395653,5.294009391684085,4.553800359368324,3.8629267904907465,3.1024905759841204,2.278355293907225,3.2222525849938393,3.526629021856934,3.8059551371261477,4.751665056683123,5.564090880099684,5.440458976663649,5.292236624285579,4.652509405743331,3.923928296659142,4.048448842484504,4.817940076813102,4.681364162359387,4.425504794809967,4.153060771059245,4.800549665465951,4.687404276803136,5.65875841723755,6.002033000346273,6.823078763205558,7.2079887059517205,6.294060229789466,6.390918801538646,5.696031982079148,4.8459329986944795,4.809471746906638,4.561345839407295,3.967632664833218,4.823713398072869,4.021799093578011,3.5069515788927674,3.3788064657710493,3.7887179367244244,4.675918526016176,4.930036522448063,4.450296328403056,4.267938571982086,3.5071122962981462,4.316496789921075,3.8249815185554326,3.2039130576886237,3.5852779895067215,4.245207440108061,4.314282143022865,3.805069714318961,4.141889811959118,3.1588973170146346,3.76372011564672,3.2917722864076495,3.9340626494958997,3.155931692570448,2.235222756396979,2.8581423829309642,2.7155772163532674,3.029450316913426,2.613209073897451,2.38908606255427,1.7125453511253,1.4539203154854476,1.161545884795487,0.4528356334194541,-0.5134790730662644,-0.4995775721035898,0.13659990346059203,0.8771244543604553,0.1702417442575097,0.9584788917563856,0.6334623540751636,0.16637001372873783,-0.07176761096343398,-0.28342198906466365,-0.9913981747813523,-0.9245392554439604,-0.09765953104943037,-0.9378086435608566,-0.7491622306406498,-0.22720854869112372,-0.42983213206753135,-0.5119427782483399,-0.1015076176263392,0.43667282024398446,-0.24529403820633888,-0.14203108521178365,-0.5556625532917678,-0.15372231462970376,-0.25872412184253335,0.5382692930288613,-0.09848144836723804,0.7872006264515221,1.7620677673257887,0.9045641655102372,0.8297252878546715,0.7034789216704667,1.045652484986931,0.25235827872529626,0.17301011784002185,0.9646155908703804,0.6969415652565658,-0.027000992093235254,0.7476310934871435,0.7861793446354568,0.8932706182822585,0.8767205304466188,0.8872002437710762,1.4856538311578333,1.6940896254964173,0.986054852604866,1.2090916861779988,1.0959061426110566,0.9266694174148142,1.4906858075410128,1.6738020717166364,1.6225543529726565,1.4225327051244676,1.4646993554197252,1.4966234299354255,2.19642351847142,2.9434459442272782,2.5152145456522703,1.7238638447597623,1.451772093307227,1.3456462263129652,2.2771094902418554,1.4457228863611817,0.6589893666096032,1.6042630514129996,0.612372943200171,0.09615198848769069,0.20348072703927755,-0.684848069678992,-0.8685227031819522,-0.5665079387836158,-0.930120310280472,-0.2761615249328315,-0.23899207124486566,-1.1755009121261537,-1.8559796949848533,-2.064407034777105,-2.192997499369085,-1.7725757919251919,-1.678496424574405,-2.1671426501125097,-1.9973124065436423,-1.5893808798864484,-1.52501505240798,-0.6614615293219686,-0.5924244737252593,-0.5405816058628261,-0.049462745897471905,0.22731647733598948,0.12333067646250129,-0.4316363502293825,0.42519961576908827,0.7626933655701578,0.9520453424192965,1.1095067313872278,0.9633720782585442,1.2027718056924641,1.1154374578036368,0.21442618826404214,0.13198036141693592,0.2987807970494032,-0.19388950522989035,-0.42707566684111953,-0.25837497180327773,0.4152970206923783,-0.4579798746854067,-0.3268199856393039,0.6207836424000561,-0.2988268081098795,0.09365705633535981,0.028182008303701878,0.6045323284342885,0.4599024411290884,0.9671159200370312,0.5089810974895954,-0.378743305336684,-0.7710203034803271,-1.213987907860428,-0.6210268954746425,-1.3961219852790236,-0.6954099768772721,-1.2509420649148524,-0.7924155197106302,0.17191623244434595,-0.12389368424192071,0.6548355100676417,1.612471496220678,1.6317866500467062,2.307224308140576,2.3361974735744298,2.8061105352826416,3.1333421831950545,3.665736843366176,2.7483926732093096,3.1442540995776653,2.5060963802970946,2.055707115214318,1.4658880517818034,0.8462011786177754,1.2952483147382736,1.0389721412211657,1.7888251305557787,2.2198642240837216,1.7713872198946774,1.832421890925616,2.4259536643512547,2.4208606109023094,2.3937738044187427,1.4637844758108258,1.9856649921275675,1.0029059504158795,1.1496482319198549,0.5179046369157732,0.22947851195931435,-0.46561533585190773,-1.083458635956049,-0.3198906839825213,-0.011998762376606464,0.6947877197526395,0.4286878118291497,1.2024356327019632,1.7448100643232465,1.6384541648440063,0.994377120397985,1.4325903845019639,2.1757213165983558,2.8127204896882176,2.0882724383845925,2.1076310272328556,1.1821706732735038,2.0254612383432686,2.55675839073956,3.21166406897828,3.876828365959227,4.85728645324707,3.920049323234707,3.7994583332911134,2.898761640768498,2.804068415425718,2.7428972288034856,3.653463421855122,2.7655028915032744,2.368053091224283,3.223768139258027,3.5654084882698953,3.9248375967144966,3.820704739075154,3.499252198264003,4.433470197021961,3.987765021622181,4.338368983473629,3.6074064560234547,4.434898730367422,3.6405442389659584,4.330899860244244,4.331237250007689,3.8744209334254265,4.210101685952395,4.253662229515612,4.8865761030465364,5.7445771135389805,4.780826700851321,4.139879366848618,4.972077812999487,4.487103031016886,4.576716251671314,4.882725080940872,5.569425038527697,5.109319091774523,5.835775405168533,4.903458167798817,5.8820604658685625,5.475605712737888,5.413589150644839,4.765699548181146,4.966746784280986,4.959710606839508,5.937195838894695,6.357831982430071,6.428400588687509,5.5174344764091074,6.172396693844348,6.730182509869337,6.333678566850722,5.607799823395908,4.7791008609347045,5.226573288906366,5.010984205175191,4.241597433108836,3.683852221351117,4.259793675504625,3.3085392117500305,3.237098409794271,2.681261527352035,2.760849667713046,3.0774894771166146,3.682263792026788,3.8973331549204886,4.418219619430602,5.359224938321859,5.162947975099087,6.05165507690981,5.816904488019645,6.35413930285722,5.9562992746941745,5.76373773207888,5.2921339510940015,5.5270366268232465,4.852022792212665,4.993660986889154,5.49872027663514,6.284020118881017,6.760905834380537,5.823305706027895,5.782729728613049,5.361681376583874,4.969461541157216,5.523625626694411,6.439030399080366,5.550614866428077,5.076502044685185,4.71607042523101,5.053157807793468,5.592171739786863,5.667324356734753,5.197321309708059,4.89947283314541,5.42558796191588,4.502173607703298,3.7807356477715075,3.0906554623506963,3.709754815325141,2.9046188960783184,2.6008932148106396,2.9253205424174666,3.529697970021516,2.835862949490547,2.1832473357208073,3.104702449403703,2.973651970271021,3.461157542653382,3.207366622518748,4.154450723901391,3.806041479576379,3.906554491724819,4.819587614387274,4.913148599676788,5.166864731814712,5.220423585735261,6.017606466542929,6.821323626674712,7.6899823024868965,8.188333328813314,8.548073649406433,7.889236745424569,7.064943604171276,6.556681319605559,6.558827645611018,5.985518517438322,5.184217939153314,5.234370781574398,5.308094742242247,5.359693035949022,5.425780446734279,6.076967743225396,5.481830636970699,5.407284585759044,5.199408510234207,6.004133103881031,6.611359303817153,7.272769209928811,8.163173419889063,7.359832122456282,8.060261124745011,8.823040588293225,7.936146400403231,8.38052172306925,7.518652439117432,6.633288721553981,7.291644027456641,7.286604410968721,7.340781135484576,7.262695078738034,6.7180951735936105,6.339091584086418,6.032666831742972,6.349233508110046,6.053169190417975,6.893371372483671,7.200181245338172,7.375239460263401,6.534283505752683,5.7157837357372046,4.958390539512038,4.126934472937137,3.9939967314712703,3.473630557768047,2.531441147439182,2.1191635276190937,1.6667514527216554,1.1910700420849025,1.2552935392595828,0.6220912178978324,1.3882194804027677,0.42165510542690754,0.6994468350894749,0.6157692703418434,0.00422979611903429,0.10106434393674135,0.2933572605252266,0.8151225014589727,0.14328020252287388,-0.041750685311853886,0.8350099651142955,0.6906840777955949,0.3622781285084784,0.8602744918316603,1.4496514187194407,1.7061555054970086,0.854401670396328,1.5436006477102637,2.2467148639261723,1.461430371273309,1.7737679877318442,0.7969854371622205,1.4785641813650727,0.9296004585921764,1.4024389889091253,1.2679788251407444,1.872986420057714,2.2365640993230045,2.631460744421929,1.714562791865319,2.0562693988904357,1.1830008453689516,0.2160789961926639,0.6101676695980132,-0.19290510332211852,-1.099568554200232,-0.7359773693606257,-1.5084884744137526,-1.720131307374686,-1.8963823928497732,-2.1526073301211,-3.0161592988297343,-3.272419690620154,-3.912700431421399,-3.2397112022154033,-3.6010389742441475,-3.497721318155527,-2.9704260476864874,-2.175615272950381,-1.2758414535783231,-1.7489259783178568,-2.026523034553975,-2.9877441013231874,-3.756919388193637,-3.727902349550277,-3.3955920920707285,-4.348020443692803,-4.122782793827355,-4.70801285142079,-3.727994818240404,-3.7780818776227534,-4.638191427569836,-4.301914743613452,-4.396989132743329,-5.272235126700252,-5.525109702255577,-5.213276078924537,-4.9410653710365295,-5.55864836089313,-4.566911514382809,-3.6824813415296376,-3.317501565441489,-3.0636612875387073,-3.8684170600026846,-3.946652039885521,-3.1750104278326035,-2.600770474411547,-1.7446081065572798,-1.7301719663664699,-2.488962371367961,-1.9325369144789875,-1.0075994627550244,-1.4351210864260793,-2.4266899484209716,-3.4199230610392988,-3.636182172689587,-2.687277171295136,-2.5176770109683275,-2.3740795576013625,-2.315851126331836,-2.7155037918128073,-2.0105037936009467,-2.466490549966693,-2.4816143522039056,-2.1368237463757396,-2.0414083702489734,-2.7718091919086874,-2.8683455660939217,-2.313802934717387,-2.88718894822523,-2.9093510997481644,-2.9892885969020426,-3.798489357344806,-4.753556065261364,-3.9176727812737226,-4.3895006170496345,-4.3583393027074635,-3.942946751601994,-4.9149761172011495,-4.698097593151033,-4.096353099215776,-3.4221279649063945,-3.8961635869927704,-3.7581751267425716,-3.0303939976729453,-3.087034235242754,-3.3984585497528315,-3.310109115205705,-4.021496222820133,-4.010207129642367,-4.080767726060003,-3.2734826914966106,-2.338745256420225,-1.9709127452224493,-1.0689721098169684,-0.23410877818241715,0.017804995644837618,0.7335438067093492,-0.22486980259418488,-0.6320076012052596,-1.12967828521505,-1.2624481208622456,-0.623934811912477,-0.6840085075236857,-0.041877472307533026,-0.1616132277995348,-0.09286409243941307,0.8174257013015449,0.8284723162651062,1.7882723505608737,1.629657278303057,2.2339407689869404,3.0794828957878053,3.684388615190983,3.215210753493011,3.1583513729274273,2.4687051149085164,1.6971082678064704,2.673807166516781,3.1178564648143947,2.4190537449903786,3.2090437579900026,2.4543324625119567,2.9783458444289863,3.514950251672417,3.4842107431031764,3.366735313087702,3.805611819960177,3.363051654305309,3.2402779650874436,4.111803907901049,4.068284114822745,3.3443935932591558,3.106148950755596,3.60191438626498,4.230802302714437,4.13881596038118,4.635810780804604,4.039978308137506,3.6385583905503154,4.5201774151064456,5.108496295753866,5.166162386536598,4.291081257164478,4.130171624012291,3.8090000078082085,2.8556627156212926,2.7748599592596292,3.01583342673257,2.44711924623698,2.7411971953697503,2.5413654861040413,2.8162056747823954,3.7894990080967546,4.288579645100981,5.006859521847218,4.247392843011767,3.3756431895308197,4.132639951072633,4.627284963149577,4.375505247153342,3.8546949014998972,4.644936420489103,4.78523479308933,4.966447673738003,5.408763344399631,5.5403542085550725,4.659335506148636,4.249316137749702,5.193838854786009,5.008978306315839,5.84998102998361,6.306632102932781,5.893804527353495,6.171395531389862,6.231217429507524,6.5987895163707435,7.150033839046955,7.804752616211772,8.708128507249057,8.903535372111946,9.483621121849865,10.440657703205943,9.805117525160313,9.934475054964423,10.378081125672907,11.212039523757994,10.438853783998638,9.551718573551625,10.180113663431257,10.275001522153616,10.72685903403908,10.935723732691258,10.707628048956394,9.764199866447598,10.722240403760225,11.508462941739708,10.773557346314192,10.788539233151823,9.98180811945349,9.760071216151118,9.11397430440411,8.779999120626599,8.22235642094165,8.874363764189184,9.21638901764527,9.511162798386067,10.114201765041798,10.904368863906711,11.153570783790201,11.088036306668073,11.60027411300689,10.83039019210264,10.31458232505247,9.668980589136481,9.271876575425267,9.653747843578458,10.406191995833069,11.379715014249086,10.824205943848938,10.78471526922658,10.853919326327741,9.952396896202117,9.098865376319736,9.062767054419965,8.307643556967378,8.005252143833786,8.721892703324556,8.301896031480283,9.220849354751408,9.999647591728717,9.314535598270595,8.358945679850876,8.063820114824921,8.738647548481822,8.810578227043152,9.679712096694857,9.484878790099174,9.875286082271487,10.774739005137235,9.916312278714031,8.981739283073694,9.48183569824323,9.083410791121423,9.662316084839404,10.379349611699581,10.277722667902708,10.09222488105297,9.840876217931509,9.61103952350095,10.1646275119856,10.93066547298804,10.608952712267637,11.31733899191022,11.461010846775025,12.125138566829264,12.962469317018986,13.25036661978811,13.350557448342443,14.22012428427115,14.011387284845114,14.34805231448263,14.902367991860956,14.753418867476285,14.988682079594582,14.65977976238355,15.528162082191557,15.399672293569893,16.05091112619266,16.861347184050828,17.03686499921605,17.78333455277607,17.493878226261586,16.496197692584246,15.642211728263646,15.038474436383694,15.062607212923467,15.73360444419086,15.666855525691062,16.511724356096238,16.64304337790236,17.401247525122017,16.86908412957564,15.959841650910676,16.274854335468262,15.454762824811041,15.081737128086388,15.597763028927147,15.035916945897043,15.124459734652191,14.154397010803223,14.794590294361115,14.483785767573863,15.271784384734929,15.84407495893538,15.555583396460861,16.230072611477226,16.67813997156918,16.278395680245012,17.037842305377126,17.718441893346608,17.804621627088636,17.860233766958117,18.38304303167388,17.439815999940038,18.31802208395675,17.336717214901,17.91264834580943,18.88380200136453,18.04743732372299,18.55654079746455,18.06203722814098,17.26982464361936,17.342613767366856,17.33461189083755,17.47028665849939,16.715121142566204,15.906597166787833,15.4064349825494,14.47925941599533,15.16309682186693,14.881233228836209,15.61226944392547,16.242332712747157,15.376979369670153,15.580205244012177,15.068577934522182,15.169718250166625,14.999510920140892,14.776315122842789,15.576676386408508,15.409235215745866,15.830171334557235,15.430213737301528,15.69019387010485,15.800333054736257,14.977631676010787,15.966647594235837,15.952775968238711,15.911459526978433,16.024292562156916,15.733416128437966,16.43349830713123,16.87858795747161,17.859415193088353,18.52611048379913,18.090772376395762,18.813295355066657,19.018147002905607,20.004254516214132,19.33754395879805,19.997168039903045,19.049469595309347,18.26891038613394,18.836039536632597,18.048374836333096,18.223525407724082,17.388090976979584,16.46809572679922,15.928332466632128,15.824091798160225,15.513686499092728,14.964949141722172,14.153389737475663,14.863950337748975,14.354483650065958,14.0552445827052,14.802575792651623,14.654646237380803,13.96298017539084,13.8616730007343,13.476959406863898,12.959742060862482,12.549061011057347,13.037275701295584,13.013824134599417,12.885333477053791,12.500025098677725,12.871331948321313,12.220934668090194,12.450020065531135,12.28756302734837,11.887550198938698,11.87065107235685,12.062219010200351,11.374623275827616,11.418342583812773,11.537581343203783,11.867049360182136,12.700075646862388,13.494378693401814,14.181267752312124,14.20871048932895,14.854250000789762,13.916598016396165,14.108929982874542,14.341911521740258,15.149645903147757,15.010488314554095,15.813091945834458,15.90961102815345,16.72029334679246,16.307497247122228,16.004555324092507,16.674322326667607,16.296804247889668,15.6315259761177,15.851775252725929,16.79903961950913,17.61881489539519,18.010276950430125,17.54549843771383,18.030200365465134,18.50661654630676,18.814304321072996,18.644337358418852,19.41219716751948,19.22573496773839,19.708693930879235,20.39187365118414,20.27303796587512,19.83576680533588,19.684589515440166,20.116366686765105,20.265655596740544,20.87507999315858,20.90631909109652,19.960989279672503,19.35450039478019,19.672361358534545,19.647440802771598,20.288083339575678,20.79254483850673,21.567083251662552,20.740791114978492,21.625301781576127,22.210580127779394,21.85931480070576,22.411451827269047,23.007367982063442,23.559375430457294,24.511776340194046,25.47409940743819,24.901901341509074,24.70626226020977,25.42471162509173,25.766708586364985,26.376030769199133,27.242937059141695,27.34585843188688,27.806953543797135,27.045784255024046,26.35665520746261,26.63006894243881,26.057958155404776,25.926113467663527,25.382434291765094,25.29328499827534,26.26165801100433,25.80323649942875,26.010701404418796,26.591165041550994,26.50214323028922,26.57634714478627,27.429188108537346,26.81368287373334,26.52645116392523,26.053180725313723,26.86593689210713,27.29832742875442,27.464076043572277,27.79093779809773,27.884895053692162,27.83254663227126,28.5710411448963,29.039025991223752,28.208006125409156,27.4144532433711,26.56776070408523,26.931184585671872,26.123886831570417,26.966745497193187,26.704266708809882,26.194853903260082,25.53857471747324,25.498168675694615,26.45823395997286,25.466031203977764,24.62990669347346,25.560400990303606,26.43723347503692,27.26157755870372,26.2950923666358,27.025746858213097,27.77324624406174,28.676202685106546,28.903306086547673,29.43224044330418,28.491313754115254,28.018800561781973,28.738263179082423,27.90129680838436,28.602458997629583,28.27424749964848,27.788391911890358,27.640005643479526,28.63624109979719,27.878109102603048,28.013352607376873,28.002453127410263,28.682700716890395,28.287385537754744,28.131194011773914,27.666176196187735,27.268237334210426,27.41015658620745,26.89420972717926,26.606391520705074,27.143887335434556,27.212099053431302,27.486317976377904,28.367380879819393,28.883030847646296,28.435084050986916,27.905386396683753,27.009636154863983,27.353207342792302,27.518781377002597,27.229596154298633,27.5603803191334,28.51540107280016,29.349272610154003,28.68479683995247,28.22747579496354,27.53031119471416,28.255831197369844,28.27530141128227,28.199964030180126,28.847601956222206,28.958963884040713,29.39812800148502,29.580115368124098,29.751654049381614,29.50299509288743,30.268648706376553,30.852191190235317,31.69205178366974,30.846564962994307,30.064041015226394,29.145979538094252,29.96413822704926,29.517082329839468,28.956949304789305,28.534308708738536,29.234005878213793,29.751863789279014,29.515466914046556,30.351079372223467,30.941655799746513,31.61309122480452,32.338502544444054,32.86265864921734,33.27633512765169,33.76505779474974,33.12896075611934,33.78140174970031,33.666744159534574,34.646000176202506,35.182353612966835,35.666030425578356,36.482485082000494,37.32524531520903,37.00001301569864,36.62908689444885,37.477520843502134,37.5822319984436,37.93240115372464,38.78537622233853,38.72488936269656,38.09352812869474,38.24852736480534,38.65135194454342,38.66470474144444,37.920350513421,38.31766257388517,37.33683691266924,36.354223809204996,36.37697333749384,35.533956409431994,35.868131967727095,34.93587671360001,35.46126812836155,36.15137265343219,36.49785415129736,36.35135666746646,36.63031643908471,37.08522803382948,37.594086066354066,38.11330914590508,37.62686366820708,37.579730327706784,37.18850880023092,37.46669921698049,38.04039385728538,37.16277742385864,37.96095653902739,38.39432594599202,38.63658968731761,37.78516913019121,38.19412238802761,37.30498941941187,37.9408442704007,38.5908171874471,38.57137603033334,39.33448583073914,38.787831485271454,39.009206586983055,39.41294145444408,39.360545840580016,40.19411638053134,40.25346360122785,39.74496560823172,39.80252029793337,38.928248504176736,39.90087391715497,39.48071150993928,39.33188268402591,39.573049692902714,39.46033147023991,39.944168590940535,40.36669506225735,41.032864447683096,40.04878983600065,39.993653742130846,39.55001110583544,39.227322957944125,39.49473488191143,39.60448692785576,39.60200534481555,39.110619029961526,38.42731974739581,38.434860691428185,38.56796008674428,38.31219153339043,38.2847959571518,37.58910886431113,37.898336932528764,37.35607548849657,36.464527915697545,37.14804317429662,36.56115534435958,35.716779459267855,35.0549546405673,35.77900559315458,34.85824408894405,35.04322493588552,34.389291821047664,33.809762428049,33.68907630443573,33.16436025360599,33.70442070206627,33.4303646273911,33.517926511354744,33.83950719283894,33.1995231914334,33.69385032868013,33.067596247885376,33.1389849553816,32.90542995650321,32.371466328855604,32.899882363155484,33.664085946045816,32.94725052360445,32.550115432590246,32.33518752083182,32.711526988539845,33.66552641382441,32.668735021259636,32.5694020697847,32.74562188051641,32.10398979391903,32.28389932774007,33.04838691325858,33.20165439369157,32.50065557984635,31.99860889883712,32.78835482662544,33.19287003856152,33.57363366568461,33.43158750329167,33.48682623868808,34.26569060701877,33.811316658277065,34.35671436274424,35.15717088105157,34.7831416442059,35.13948026672006,35.65164912072942,34.945506932679564,35.496861171443015,35.37403127318248,34.77200378058478,33.9820019043982,33.137196998111904,33.9822035995312,34.357307793572545,34.133278463967144,33.98140977462754,33.41857561422512,33.0789356213063,32.656470355112106,33.09961357200518,32.78223152644932,33.54605356743559,34.35135276988149,34.154662321321666,35.018763300497085,34.26712038228288,34.56722126156092,33.73358810413629,32.74109422182664,32.03084273962304,31.25057590706274,31.588281109463423,31.463416624814272,32.14665729785338,32.45851186802611,31.717689477372915,30.87185365939513,31.22907528001815,30.35858890460804,29.71332918200642,29.046909687574953,29.018768790643662,29.01752038113773,28.578559211455286,28.018356744665653,27.99875418515876,27.35279035521671,27.394843717571348,28.306909306906164,29.160249420441687,29.027337105944753,28.228767827153206,28.96840591309592,29.415965664200485,29.142505950760096,29.963369003031403,29.701326749287546,29.479828950949013,30.474865538068116,31.01488746283576,31.721608721651137,32.41532655991614,33.12140242103487,33.31508904742077,33.28112300531939,32.56908596120775,33.410298890434206,32.560292821377516,31.99247159808874,31.284425818827003,31.957086810376495,32.78752008173615,32.671574937645346,31.693180568050593,32.314410923514515,31.67266724864021,31.010040561202914,30.36175618460402,30.351069160271436,30.908556995447725,31.015304892789572,31.783304452430457,32.07459765532985,31.531152395531535,31.883164691273123,31.598404981661588,32.30905852979049,32.70271517848596,32.80690662097186,33.755063590593636,33.50493687391281,33.76112153753638,33.513206341769546,34.150027074851096,34.27443510433659,34.22482525371015,33.96073539881036,33.30819967761636,33.593812939245254,34.27586774714291,34.45778351323679,34.045389271806926,33.45370559068397,34.41134006110951,34.132257629651576,34.9588743657805,34.56811653356999,33.97702832566574,34.24754742300138,33.636372306384146,34.26474301936105,33.42435438837856,33.95805712742731,33.9823356163688,33.30654873838648,34.277626757044345,33.552618036046624,33.000869578681886,33.32593665225431,34.07648172508925,35.008760519791394,35.16711583873257,36.15643608151004,35.22301440872252,35.029185759369284,34.49332981090993,33.85935170482844,33.53768133698031,34.11514708492905,33.62293313629925,33.76379074482247,33.021474345587194,32.45099123613909,32.1631068661809,31.571180288214236,31.527888951357454,31.79033922124654,31.304066569078714,32.067739580757916,32.372601178474724,31.950204867403954,31.953649883158505,32.83431343920529,31.953863023780286,31.74247212242335,31.73161169840023,30.77380587765947,30.23989586858079,30.14512946503237,29.285255694761872,29.097563623916358,29.885205731727183,29.59179576765746,29.991681126412004,29.093552315142006,29.698245344683528,29.625014138408005,28.789021742064506,28.826592605561018,28.009724111761898,28.419592722784728,28.34262848040089,28.581892017740756,28.53667879384011,28.310023619327694,27.874848545063287,27.219924568664283,27.016717088408768,26.636037829332054,26.793326511979103,27.499922613613307,27.65642421366647,28.242344504222274,27.74935524072498,27.656768287997693,27.530754199717194,28.17495936760679,28.085187334101647,27.8722125608474,26.925698740873486,27.110606024973094,28.067957595922053,27.84494648128748,27.677124125417322,27.445600709412247,26.732331686653197,26.423323608469218,26.33930569840595,25.515810613986105,24.727862738072872,25.602172896731645,25.03957337932661,25.139650747179985,24.5990790897049,25.049275989178568,26.005611232481897,26.32279707212001,26.472640972118825,26.37272329395637,26.37003834731877,26.20918559934944,26.897723442409188,27.660708045586944,27.053674843162298,26.540656712371856,26.400420266669244,26.769073250703514,26.1809123987332,26.24029111629352,25.679101049434394,25.04708949988708,24.58367443829775,23.965017832815647,23.74742153286934,22.76029071258381,22.168102195020765,22.842665775679052,22.657175506465137,22.78914713440463,22.63688673917204,23.34488560492173,22.673979489132762,21.968477584421635,21.49719261843711,22.35386450588703,22.210053565446287,22.246588066220284,22.519940052647144,22.464973932132125,21.810300293844193,22.698924901429564,23.34713196242228,23.96820106357336,23.7492419029586,23.9790729181841,24.339835830032825,25.25469156494364,25.630296810995787,25.570196824148297,25.757839366793633,26.31488930946216,25.87817996693775,25.86538308020681,25.8154615922831,24.832131104078144,25.264418425504118,25.721543203573674,26.27102073887363,26.49060127325356,26.37544820830226,27.10169073753059,26.75895217200741,27.588921844493598,28.128762166947126,28.53483696701005,28.8521765707992,28.345112620387226,27.722824800293893,28.17181377718225,28.440729230176657,27.666379638016224,27.691972207743675,26.69828087091446,25.99786544498056,25.395377465058118,25.404882746748626,24.989584972616285,25.23883201368153,25.52857373841107,26.302288466133177,26.138295797631145,25.153701316565275,25.997300185263157,26.316331723704934,26.132712671067566,25.965085581876338,26.633916383143514,26.415790657978505,25.503624393604696,24.58159655937925,23.759358467534184,23.452380950096995,23.392785163596272,24.120126038324088,24.158104465343058,23.974194737151265,23.876034372486174,24.67083692084998,24.94474114663899,24.041473374702036,24.561446978710592,25.544310609344393,25.762153642252088,24.85207179747522,25.02410865109414,24.456132775638252,24.574689003173262,25.13069956563413,25.346708388999104,25.680284961592406,24.978753061965108,24.369266884867102,24.511899176053703,24.07960178516805,23.836800824385136,24.689993742853403,24.020936019718647,24.287622937001288,23.994083176832646,24.834005393553525,24.28134452039376,23.39327021408826,23.435220980551094,22.490268085617572,23.143608735874295,24.083350592292845,24.137333168182522,23.583630042616278,23.661788697354496,23.592715456150472,23.800324213225394,23.58754223352298,24.520948371849954,24.919282999821007,23.97334374859929,24.89124342147261,25.544293163809925,25.264521062374115,25.960205969400704,25.953102425672114,25.6869388371706,26.14141310751438,25.572218250017613,24.846513517200947,24.488168194890022,24.63772189244628,24.352439671289176,24.881908053997904,25.315251470077783,26.046121031511575,25.453598289284855,25.572168324142694,26.167737091891468,26.52698397403583,26.52892752084881,26.66316013643518,27.573142625857145,27.614809977822006,26.98123459285125,26.229885085951537,26.642449515871704,26.693256869446486,27.43258921522647,26.743655452039093,26.818409574683756,26.68908725399524,26.49015013128519,25.855778562370688,25.83394306525588,25.57220460055396,25.47409358434379,26.438917636871338,26.779990574344993,27.094605449121445,26.995295559521765,26.165607531554997,25.213134730700403,24.623491548467427,23.823569448664784,23.672003500163555,23.20824165083468,22.442876054439694,23.248157234862447,24.199427407234907,23.427678821142763,24.408367162104696,23.489571960642934,23.17315345350653,23.124624189455062,23.84719153586775,24.064806401729584,24.150015360675752,23.637861706782132,23.030893690418452,22.05036257021129,22.357166259549558,21.547243682667613,22.234450494404882,21.366882768459618,21.791768438648432,22.4278982761316,21.97726006153971,21.231023262720555,21.687124133575708,21.155063971411437,20.514802642166615,20.131678960751742,20.064508009701967,19.858770621474832,19.748845441266894,19.778323681093752,18.791507338173687,18.162438672035933,17.956637620925903,18.257513890974224,19.116735275369138,19.749177291058004,19.201670372392982,19.78717947937548,20.158874285873026,20.93307136790827,20.047476232983172,19.894245775416493,20.746346193365753,20.154092379380018,19.71853069961071,18.815606796182692,19.077370802871883,18.90330853872001,19.424837908241898,19.13707355922088,19.024290200788528,19.21581073384732,18.263924272730947,17.610463347285986,17.64895319007337,16.929902035742998,16.43053990509361,16.954859513789415,17.32776076020673,17.005694549065083,16.394197304733098,16.99491858575493,16.975057282485068,16.401780682150275,16.057507439050823,16.334489689208567,16.040371540468186,15.61667735176161,15.30600483249873,14.507078377064317,13.652683533262461,12.920128660742193,13.864799289032817,14.596167164854705,15.279651740565896,14.973818363621831,14.132022792939097,14.668540233746171,15.52786378422752,16.507649580482394,16.87649919744581,16.450024734716862,17.16291257739067,16.58138251816854,17.330078872852027,17.881280523724854,18.149565225001425,17.34605509415269,16.47306824894622,15.532396878115833,14.642121492419392,13.69909099303186,14.189962523523718,14.391954878810793,14.04279651073739,14.49648870062083,15.069671475794166,16.023749120533466,16.687289615161717,16.164354430977255,17.079739599488676,17.693368135020137,17.635936891194433,17.242052339948714,16.303533823229373,15.550007227342576,15.23751989332959,14.914888930041343,15.80978869041428,16.43313398817554,15.813855820335448,16.5869769025594,16.747639650013298,15.901957953348756,16.03440155275166,15.61905606649816,15.84659825032577,16.057310493662953,15.912426613271236,16.82693415833637,16.319731225725263,16.01485749008134,16.057898635044694,16.902332795783877,16.818850167561322,17.221707213204354,18.04833709076047,17.702700487338006,16.96238165628165,17.483775065280497,17.172852208372205,16.968658548314124,17.390595278237015,16.660632958635688,16.723105038050562,16.431573340669274,16.139805691782385,17.079161361325532,17.608428040985018,16.87479175440967,16.56659920234233,15.685660604853183,15.798609039746225,15.552341548260301,15.619757560547441,16.53648656932637,16.703937349375337,16.351635484956205,16.546994119416922,16.804864501114935,16.926428133621812,16.48718113452196,17.38775132363662,16.58135157590732,15.944363679271191,15.025039370171726,15.744484621100128,14.803164592478424,14.08802007092163,14.313555571716279,14.178915111813694,13.78142809215933,12.88277107430622,12.142237492837012,12.860806845128536,13.178672560025007,13.440323700662702,14.007423027418554,13.721976766828448,12.979550385847688,13.811808557715267,14.302600885741413,14.299266164191067,14.53658836800605,13.56610916601494,13.08805744163692,13.472942307591438,12.943088673986495,12.860421898309141,12.90337105281651,13.119764066301286,13.179628485348076,12.441035413183272,11.723226773086935,12.49783178139478,12.775512408930808,12.847477048169822,12.632197262253612,12.217207060661167,11.284060765989125,10.712959325872362,10.878390997182578,11.090586052741855,11.23555071791634,10.69944528490305,11.024694114923477,11.67291836347431,12.226865777280182,12.700172769837081,12.652016002684832,11.662341951392591,12.127785766962916,11.55447055445984,11.796908390242606,11.637310213409364,11.846564820967615,12.452797022182494,12.593069034162909,12.444467468187213,12.83696315297857,12.474978453014046,12.382755212951452,11.944442493841052,11.79492305405438,12.609710790216923,11.611462146509439,12.009966676589102,12.15932571189478,12.781436948105693,12.404518318362534,13.34068258246407,12.403225940652192,12.074509822763503,12.957568977493793,13.10125651396811,12.917462954763323,12.934363389387727,13.133501008152962,13.796139381360263,13.820651081390679,14.152076883241534,13.861417224630713,13.112384286243469,12.492715718224645,12.18256344133988,12.885871737264097,12.99256450496614,13.795236142352223,12.810169029980898,12.50311185233295,13.103749099653214,12.62182969134301,12.247314928565174,13.197623098734766,12.59794174367562,12.797092812135816,11.880232999101281,12.10757735138759,12.39887890405953,11.547495982144028,11.488018421456218,12.240625264588743,12.790833095088601,11.806544173974544,12.192508155014366,12.648225913289934,12.848634156864136,13.460714840795845,12.771137008443475,12.375811582896858,13.21296997833997,13.278773557394743,12.56432572985068,12.157141631934792,11.603194542229176,12.137362231034786,11.283817250747234,10.575979463756084,9.81175797386095,10.012386831454933,9.391251709777862,9.286915332544595,9.416067767422646,10.331321340985596,10.472405765205622,10.471678824629635,10.459431297611445,10.209526936523616,10.981849297415465,11.525534134358168,11.100835560820997,10.728250158019364,10.744576416444033,9.938708242028952,10.113661772571504,10.322175474371761,10.115163185168058,9.720097868237644,9.739086258225143,10.4542998499237,9.946050896309316,9.04364588810131,8.104397205170244,7.902359149418771,8.308169438038021,9.12231533927843,9.413125754799694,8.857338946778327,8.082017191220075,8.528901171404868,7.93022722331807,6.9748622751794755,6.399041618686169,6.264810689724982,6.121000413317233,7.085361898411065,7.386252764612436,8.150563025847077,7.865565300453454,8.26010121917352,7.925307579804212,7.2122101304121315,7.011309670750052,7.72435836866498,7.498551536817104,6.782805133610964,6.882183070294559,6.651218106038868,6.498411455657333,5.850451554171741,5.698984337039292,5.793459871783853,6.542243044357747,6.552322723437101,7.2370708282105625,8.046048574149609,8.219672916457057,7.25821169745177,7.112334069330245,6.164654212538153,5.404887770768255,4.413631625007838,3.736770108807832,3.622502907179296,4.102167604956776,4.737835891079158,4.29256445588544,3.322351099923253,3.675441465806216,3.7516103140078485,4.315247759222984,3.7169087738730013,4.432867837138474,4.292730128392577,3.4098577625118196,2.773330138064921,3.504679524805397,3.7415257254615426,4.4724161317572,4.0594442542642355,5.042463073972613,5.9366685235872865,5.257447225507349,4.847354816272855,5.5671755988150835,5.23021746892482,4.794980451464653,5.357521972153336,5.072482176590711,5.586943758651614,5.154739876277745,4.6726015084423125,4.805991749744862,5.390854252502322,5.402773002628237,5.1588220982812345,5.207364903297275,5.739734237547964,6.0244139595888555,6.709017766173929,6.852856822311878,7.412730008363724,7.197631947230548,6.242608155589551,6.636115555185825,5.895813275594264,6.785733852069825,7.015255797188729,6.837309035938233,7.555970864370465,7.149046152830124,7.495993172749877,7.896639454644173,8.036682416219264,8.764055284671485,7.95522162085399,7.385758953168988,7.759814064018428,8.521685837302357,8.51662053912878,9.491694475989789,9.208795050159097,9.27440963126719,8.604622144717723,7.687573421746492,7.273028822615743,6.562994526233524,7.461788256186992,6.96659898199141,6.3444479731842875,6.608066020067781,7.594938891008496,7.258003036025912,7.1794744352810085,6.87257223483175,6.778952785767615,5.919095912016928,5.713655891362578,6.480723156128079,7.216562752146274,7.348249728791416,6.455769250635058,6.528049228247255,5.869721288327128,4.960907316301018,3.974346469156444,4.870476220268756,4.050153173040599,5.03955985698849,5.358502563089132,4.874968817457557,5.797930124681443,6.361359441652894,5.57571473158896,4.6075765187852085,4.12293343199417,4.982592890970409,4.559799268376082,5.465008765924722,4.900294559076428,4.865649254992604,5.046599817927927,4.693719203118235,4.995331228710711,4.627311340998858,5.3091443963348866,4.802528406493366,5.045162894297391,4.64496672898531,5.0799794513732195,4.265500487294048,5.0112683568149805,4.231171097140759,4.068552301265299,3.2090455517172813,2.3117147074081004,1.3706375025212765,2.00800250004977,2.872503937687725,2.035869259852916,2.9883457431569695,2.4580874159000814,2.402591217774898,2.7345887860283256,2.178273603785783,1.228348701260984,0.6662534596398473,0.6221103188581765,0.21076205698773265,-0.028418926522135735,-0.2755996100604534,-0.8370833471417427,-1.5211494867689908,-0.7887556911446154,-1.2470798892900348,-0.5364797678776085,-0.9270496950484812,-1.3046955931931734,-0.5721551217138767,-0.7516244701109827,-0.7260518460534513,-0.07513120397925377,-0.3059881180524826,-0.7719827112741768,-0.47268831077963114,-0.02738550677895546,-0.2368633751757443,-0.4294151500798762,-0.1558580151759088,0.27830157382413745,0.14244566531851888,0.5339791513979435,0.650764427613467,1.3804268655367196,0.44218245381489396,1.4325032252818346,1.4685379364527762,1.554933801293373,0.8130285744555295,0.21407603193074465,0.6129333628341556,0.4042200311087072,-0.36039034416899085,-0.2328083305619657,-0.4378972612321377,-0.07716027786955237,-0.7686355486512184,-1.0818684962578118,-1.290050347801298,-0.9437656672671437,-0.20108599262312055,-0.3167697452008724,0.45915198884904385,-0.14993309834972024,-0.15667158691212535,0.555953805334866,1.2945640571415424,0.6220183460973203,0.06867439905181527,0.5940670953132212,1.0519203655421734,0.1346671194769442,0.39360137609764934,0.704127830453217,0.24675887916237116,0.5887986486777663,0.8309935554862022,0.3764309021644294,0.18392324214801192,0.8586010839790106,0.13291573990136385,0.34146340657025576,1.1639557722955942,0.7016077251173556,0.570546708535403,-0.05064518144354224,0.4796610753983259,-0.4569966164417565,0.16601204313337803,-0.04995224718004465,-0.2519854251295328,0.3453713026829064,0.5037034563720226,1.483116777613759,0.8430484347045422,0.26386751187965274,-0.44730690214782953,-0.9239193527027965,-1.375019327737391,-0.8951770542189479,-1.542717490810901,-1.0679376171901822,-0.3728548907674849,-0.305209725163877,-0.4128694082610309,-0.018506108317524195,0.25549073703587055,1.1721039353869855,0.884142663795501,0.6443057274445891,0.36905329767614603,-0.5041898074559867,-0.6743701137602329,-1.091384974308312,-1.2758045438677073,-1.7581617794930935,-1.6913443789817393,-1.3274026354774833,-1.6288646799512208,-1.3938149069435894,-1.608144123107195,-2.3178758015856147,-1.523385583423078,-1.3509204308502376,-2.0366710675880313,-2.837770079728216,-2.3982804529368877,-2.6929593523964286,-3.126102641224861,-2.1620869799517095,-1.8635250497609377,-2.6923491321504116,-3.4236072250641882,-3.0954188778996468,-4.001706824172288,-3.4831235432066023,-3.9664930775761604,-4.061256838962436,-3.9334649378433824,-2.94660431612283,-3.290795458946377,-3.2492048139683902,-3.262511459644884,-2.3580991686321795,-3.33834858937189,-2.5431810477748513,-1.7778205340728164,-2.741872572340071,-3.1792562175542116,-4.059319788124412,-4.050579452421516,-3.159811169374734,-3.106546717695892,-3.8926885263063014,-3.618943245150149,-3.1342451977543533,-3.3173864712007344,-2.70467326650396,-2.6449813353829086,-3.352169329300523,-2.9356305706314743,-2.3313105003908277,-2.961055359337479,-3.7229009522125125,-3.4822896546684206,-3.5725840223021805,-2.850853671785444,-2.824434562586248,-3.266252262983471,-2.8970267199911177,-2.8169473973102868,-1.8339910982176661,-1.075146864168346,-1.7065949477255344,-1.2825179477222264,-1.2740660440176725,-1.6493998202495277,-0.6841706004925072,-0.33879598695784807,-1.110880578868091,-0.8678783429786563,-0.32074678782373667,0.41045982809737325,1.054431226104498,0.25428385473787785,1.051636144053191,1.6693733725696802,2.274921604897827,2.619313161354512,2.68491756496951,1.9066955782473087,1.7289095143787563,2.278178554959595,2.9248142009600997,3.196864065248519,3.046386602334678,4.025177659001201,3.120674609672278,2.79454213893041,2.971212330274284,3.354369026608765,3.268215460702777,2.3630255293101072,1.774492192082107,1.9141671862453222,2.2682102522812784,1.836110470816493,1.0302509544417262,1.0114075168967247,1.1951869167387486,1.0878747971728444,1.193866559304297,1.3575651603750885,2.037682675756514,1.5909951440989971,1.0239457730203867,0.1452155807055533,0.3563220030628145,-0.1805873205885291,-0.026916831731796265,-0.9945045039057732,-0.3231830163858831,0.5238826801069081,-0.35090114548802376,-0.08128216676414013,-0.09937598882243037,-0.32081400975584984,0.16558945504948497,0.43530592508614063,1.3805382382124662,2.0463224351406097,1.8240214171819389,2.5738154496066272,1.6904238616116345,2.2146645253524184,3.0789991598576307,3.8558499636128545,3.5743774492293596,3.950582899618894,3.7832725127227604,3.21890971949324,4.036302246153355,3.3617311813868582,3.207027225289494,3.163055308163166,2.822946361731738,3.1137666585855186,3.4455665345303714,2.9334627990610898,3.6153131159953773,2.922078645322472,2.492640420794487,2.1497684940695763,2.770654925145209,2.496427832171321,2.7782865343615413,2.8821258265525103,1.9950840389356017,2.3455890272744,3.1666752891615033,2.9495241101831198,3.6360236015170813,3.7874816465191543,3.622955722268671,4.276211800519377,5.257553983014077,6.012437322642654,6.713289130944759,7.025676425546408,7.900497559458017,7.550195176620036,7.579442683141679,7.992170318495482,8.5971700376831,9.244321069680154,9.13698832783848,8.16256850073114,8.200553839094937,8.695254507474601,9.393779043573886,9.932015538681298,10.658805155195296,10.609198227059096,10.80231891386211,11.249641219154,12.211375147104263,12.0229855440557,11.473600798286498,10.97833332978189,11.920040409546345,11.848757178988308,12.19851337512955,11.581090383697301,12.547613121569157,13.410515597555786,14.027157452888787,13.971633388660848,14.528259384911507,14.240157191175967,14.842726487200707,14.832297773566097,14.342827678192407,14.79768672119826,14.26873905910179,15.018702443689108,15.388751576654613,15.987512513063848,15.638594701886177,16.222382333595306,15.483043157495558,14.66288380837068,14.935633501969278,15.490568107925355,16.06387737672776,16.97207358200103,17.69183370983228,18.47954852692783,18.431340479757637,18.382211136631668,18.928734537679702,19.53700485592708,20.363038880284876,20.060782161075622,20.648797196801752,20.942787604406476,21.64166820794344,21.604478819295764,21.995479359757155,22.81280844891444,23.766093539539725,23.834579391870648,24.331430803518742,24.688648398965597,24.66231750091538,24.842096944805235,24.358677330426872,25.012445019558072,24.792583987582475,25.68182017840445,26.10206384025514,25.925727867055684,24.969020342454314,24.56507924804464,23.756140678655356,23.77602056832984,23.040192091371864,23.459218413569033,23.988232854753733,24.316491410601884,23.853917250875384,23.936659178696573,24.62331014778465,24.871187864337116,25.196142187342048,24.81490025576204,25.62676361622289,25.91156525351107,25.152806718368083,25.117344753816724,26.11295888852328,26.433167971204966,25.682274124585092,26.08343032700941,25.536293012090027,25.51089455280453,26.099850906524807,26.652258325368166,27.357260519172996,28.328952473122627,28.926605076063424,28.8031052374281,28.910873615182936,27.937419419642538,28.679011203814298,28.942757996730506,28.442432812880725,28.92829807335511,28.163867284543812,28.79800116084516,27.910089835058898,27.6363350530155,27.40685636829585,26.5458028675057,26.825557058677077,26.13488563382998,25.845853792969137,26.489535625558347,26.77886276692152,26.300488917157054,26.92207628302276,26.93502059346065,25.99701471813023,26.5423048036173,26.7954518282786,26.298152338247746,26.607159895356745,27.491646153386682,27.021587499883026,26.730008342768997,26.868809043895453,26.47368566505611,25.540196784306318,26.499238464515656,26.234043419361115,25.27149503584951,24.491045725997537,24.80294050835073,24.58317443775013,23.72825103951618,23.279385308735073,23.46489038038999,23.91607363242656,24.418579797726125,24.27367049176246,23.91288094362244,23.754941316787153,23.53888501645997,22.83244764106348,22.007158662658185,22.720380823593587,22.878055782988667,22.925503427162766,22.663328998256475,22.568627300672233,23.476789311505854,24.267163822427392,23.369307685643435,24.2983487425372,25.049941267818213,24.934671722818166,23.995684585068375,24.06781841116026,23.08268250571564,23.39559055911377,24.174620235338807,23.851296212524176,23.785788335371763,23.088902609422803,23.19115878548473,23.722391335759312,23.8122055134736,23.556660942267627,23.379279787186533,23.673373021185398,23.232851368840784,23.24895201716572,23.367931525222957,22.647206369321793,22.102414728607982,21.22614673525095,21.626739570405334,20.796851730439812,21.410989540163428,21.194992632139474,22.13775973347947,23.0547887776047,23.07091711042449,22.710127465892583,22.733538061380386,22.155071704648435,21.27882338920608,20.768633926752955,21.59556236723438,21.35945800645277,21.26090410305187,21.961650582496077,21.581258163321763,22.376645408570766,21.767714966554195,21.864654189907014,22.57650705333799,21.919747848063707,21.55670259706676,22.51488473219797,22.30587166082114,21.593018573708832,22.142054919619113,22.938618884421885,22.338635599706322,22.377862324472517,22.815718712750822,22.42707681329921,22.168515846133232,21.72859504399821,21.2263867771253,20.400628271047026,21.280809848103672,21.236673039849848,20.631900918204337,19.837075837887824,19.374457608442754,19.61723130196333,18.74008211772889,19.609227602835745,20.59733842825517,21.345086134504527,21.483634712174535,21.955117869656533,22.339322132989764,21.604380703065544,20.908834282308817,20.242077154107392,20.687459761742502,21.48989346064627,20.989866347517818,21.633374179247767,20.992499087005854,21.588473485782743,21.132250337395817,21.412906910758466,22.227249630261213,21.360954377800226,22.158375925850123,22.305509502999485,21.726083116140217,22.19685728242621,21.778314081951976,21.7265200978145,22.15322914486751,21.735551456920803,21.944645583163947,22.36115212738514,23.003414696548134,22.346476525068283,21.50182330235839,21.97712037852034,21.184163921047002,21.570271383505315,21.891073557082564,21.072255030740052,20.441746342927217,20.116592302452773,19.713112000375986,20.5824836329557,19.839861549902707,19.3812599866651,20.188610170502216,20.668542956002057,21.275166587904096,22.070214247331023,21.70767994178459,21.992832326795906,21.62520380783826,22.21351632848382,21.241941826418042,21.848072335589677,22.003660930786282,22.38080002879724,21.52697773417458,21.644106002524495,22.1413311669603,21.65757151739672,21.90671041002497,21.361982545349747,22.05631577502936,22.635053120087832,23.371556976344436,24.072278366424143,23.863297391217202,24.769038343336433,25.46211754484102,26.42735884618014,27.049050705507398,27.805873144418,27.10748191876337,27.86424727831036,28.839883132837713,29.047063199803233,28.554274474270642,29.099291588179767,28.588043306488544,28.895539504941553,28.354807389434427,28.199361727107316,27.611602761317044,28.275700577534735,27.965927076060325,27.755396200809628,28.554569620639086,29.0244693281129,29.72528507001698,30.277885942254215,29.697117995470762,28.857846059836447,28.93253067554906,28.230972807388753,28.87477489002049,29.750052383169532,29.297962345182896,28.553349649067968,28.875951468013227,29.243454401846975,28.674443918280303,29.179110924247652,28.447202716954052,28.47038774425164,28.40676944470033,28.97622842574492,28.15658386796713,28.494657559785992,29.196348974015564,29.02595844771713,29.668925762642175,29.153711104765534,28.3463099533692,27.874847421888262,27.77646165713668,28.565788699313998,28.695386898238212,28.428799530956894,29.08484962163493,29.303649994079024,29.876698635984212,30.03338451543823,29.208209043368697,28.57745579769835,28.419812825508416,28.669367308262736,29.40243710577488,29.10448832064867,29.903451775666326,29.703437150921673,29.63301864732057,29.420582866761833,28.47415987122804,28.6597856618464,29.118517874740064,29.19042939785868,29.909239943604916,29.86440020194277,28.864785755984485,28.911708599422127,29.415032216813415,29.001004746183753,28.27879843953997,28.762438896112144,27.991341604385525,27.08480849210173,26.779206082224846,26.10862067202106,25.480168181937188,25.899606777355075,25.392529820092022,25.55831083469093,26.009968500584364,26.063616669736803,26.824210830032825,26.861895675305277,26.450606470927596,26.719376515131444,26.853823530487716,26.894132529385388,27.323785916902125,26.708774611819535,26.93891012761742,26.25499007338658,27.208443203940988,26.671877562068403,26.950277348048985,27.6134489858523,28.305866060312837,28.246451931539923,27.840412463527173,27.930517656262964,27.40556830726564,27.909561291802675,27.808369493111968,28.63463713042438,28.84415074205026,29.33924902882427,28.716094989795238,29.253130972385406,29.888314939569682,30.309118916280568,31.03847035765648,30.500781001057476,31.014144737739116,32.005773454438895,31.62533259857446,30.876047919970006,31.610063447616994,31.481461813207716,31.83939393889159,32.187272269744426,31.677218715660274,31.510213176254183,31.20540361618623,31.4182315710932,30.659161075484008,29.90479397540912,29.101722923107445,29.492513190489262,30.492456275969744,30.486565040424466,31.484065292868763,31.95484181540087,31.171436814125627,31.43003378994763,30.885856410022825,31.313701514154673,30.684191616252065,31.047958509996533,30.09438100270927,30.8384111225605,31.317573653068393,32.21172158792615,31.459249225910753,30.6465874472633,31.62071522604674,30.81502549117431,30.741787075530738,31.563192698638886,31.94730868982151,31.350624862127006,30.68127649789676,29.85282918298617,30.825919368304312,30.04717429401353,29.758429978508502,30.596413355786353,31.42220989894122,31.35354661848396,30.870148042216897,31.083101043477654,31.008193225599825,30.87364090187475,30.547189875971526,31.48118609143421,30.598502138629556,31.445662869606167,31.756811341270804,31.454205725807697,30.74646639591083,29.912797265686095,29.31349283317104,29.77244935883209,29.94176684273407,29.873615031130612,30.092293547466397,29.708676749374717,30.317725314293057,30.31460866332054,30.4233780791983,30.352575876750052,29.740754046477377,28.967523030936718,29.635674722027034,30.53807410504669,30.037229879759252,29.33037166018039,28.661425217520446,28.90725295757875,28.143358403351158,28.046023609582335,28.048580586444587,27.20165455620736,26.478982585016638,26.817433848045766,27.163670603651553,27.70365774910897,27.876993651501834,28.491743783000857,28.558176243677735,29.43198933498934,29.113597746472806,28.645926783327013,29.623908289708197,28.640824642032385,29.342915403191,30.228268222417682,29.253102514892817,28.829832969699055,27.859344147145748,28.524151551537216,28.42344127735123,28.5393728595227,29.149477237369865,28.72123510017991,28.311509377788752,27.861423529684544,27.691570694558322,27.443002258893102,26.98127595335245,26.19329113466665,26.823017404414713,25.884419716894627,25.897227186709642,25.368699650280178,25.44725383259356,25.082281961105764,25.68663410283625,25.23876651795581,25.061700460501015,24.176316981203854,24.835943615529686,25.14951386069879,24.678789440076798,24.099324562586844,23.383791868574917,23.44015615992248,24.298994463402778,25.085388632956892,25.239948445465416,25.98712770594284,25.432347561698407,24.64000815199688,24.5316838985309,24.417081641964614,23.96762787271291,24.61203971132636,25.057519177440554,24.938596792984754,24.713568655308336,24.946161760482937,24.02264465764165,23.396105247549713,23.830345220398158,24.42664143908769,24.507386814802885,23.715605173259974,24.64348782831803,25.312002840451896,24.64599072979763,25.49165763007477,25.029190314933658,24.76436629705131,25.118641486857086,25.104886882938445,24.95493324054405,24.290407883934677,24.70616583293304,24.129254661500454,24.273358227219433,23.72763229208067,24.20226381532848,24.480441666208208,25.032495298422873,25.934311056043953,26.931003310717642,26.289470789954066,25.79470811318606,25.99190512485802,26.615451018791646,26.815998802892864,26.59278702456504,27.281455228105187,27.03138519404456,27.298243567347527,26.89046183368191,27.533084200229496,27.520149127114564,26.61542770313099,26.822147980332375,26.67735736304894,27.298575723543763,26.61078311363235,27.563139871228486,28.124638019129634,28.38297225907445,27.614864300005138,27.676588776521385,28.58808772964403,29.587831601966172,29.07185218622908,28.60619933065027,29.22239743359387,28.413555598352104,28.193337404634804,27.262584035284817,28.127912637311965,28.096197390928864,27.94300418999046,28.37261910084635,28.668644397053868,28.218089681118727,28.16983881453052,28.48022537631914,29.232431683223695,29.86117838183418,30.45938791707158,30.69986531045288,31.071123340167105,30.494228733237833,29.925432454328984,29.576538963709027,30.246464693453163,29.644890575669706,30.234609827399254,29.506393127143383,29.029009447898716,29.870365703012794,29.7514234976843,29.093783288728446,30.073090080171824,29.71502834558487,30.271134385373443,30.549412759486586,30.167015397921205,29.681757444981486,29.537474447395653,28.929979332722723,28.733161171898246,29.524911540094763,30.1465098480694,30.597054556943476,31.449219533242285,31.051907009910792,30.276921831071377,31.156479969155043,31.01956210564822,30.37998461071402,29.90633520623669,29.37397822458297,28.447233255486935,29.353128771763295,28.47105753934011,28.454339755233377,27.585981310810894,27.179664820898324,26.287755587603897,26.746525569353253,27.542541027534753,28.205025205388665,27.35634477296844,27.376069178339094,27.3190204272978,28.162712421268225,28.746278531383723,29.288468742743134,29.638728998601437,28.70313116442412,29.449024663306773,28.49783619074151,28.664702096488327,29.161635174416006,28.550387089606375,29.540207393001765,30.50309197464958,31.236627636943012,30.425464018713683,30.34135161153972,29.427112359087914,29.595362120307982,28.829261349979788,29.273593727033585,29.974586635828018,30.431313432753086,30.943786504678428,30.70330335199833,30.227040834259242,30.320777013897896,29.660761800594628,30.05997518217191,30.26000357698649,31.078614595811814,31.026447251439095,31.395578251685947,31.709857241250575,31.002774593885988,30.169079633429646,29.812459128908813,30.112890710122883,30.070098556112498,29.530135150067508,28.63922397280112,29.104218575637788,29.666909899096936,29.216459636110812,29.107593431603163,28.935651554726064,29.615238204132766,30.61443826276809,30.430662508588284,31.22598320711404,30.55214665038511,30.56696355342865,29.61431889794767,29.788754776585847,28.983459806535393,28.615212506148964,29.41953414492309,29.885078969411552,30.604193297214806,31.35829760041088,32.019835389684886,32.98216964164749,33.7243820191361,34.50214947806671,33.927868330385536,33.96636832691729,33.72486027004197,33.71807297039777,34.584397847764194,35.40279724402353,35.212489860598,35.943557769060135,35.028194826096296,35.8560411692597,35.283921947702765,35.58828047802672,35.104602091014385,36.02348242374137,37.00156720587984,37.0386920645833,36.18963217874989,36.83288065344095,36.65616202633828,37.200259543955326,36.27988400217146,37.21033937251195,37.26615130901337,37.30860975757241,37.01998890331015,36.67447876697406,37.06866367906332,36.275065204594284,36.536919615697116,37.06155093992129,36.65193800767884,35.67768429359421,35.21564075537026,35.54495872883126,34.91106936754659,35.438214633148164,34.99185193097219,34.33029071986675,34.22166489716619,34.55564115475863,33.575016951654106,32.984295514877886,33.285271416418254,32.86424017930403,33.42378279287368,34.269353717099875,35.21510521089658,35.904601100832224,36.201557845342904,35.45657547470182,35.28183401096612,36.042155917268246,35.09801574284211,35.55859599635005,34.77172342129052,34.06422985345125,33.6379834190011,33.92162329517305,33.42174619715661,32.54839086579159,32.50271384418011,32.872684807516634,31.91108409734443,32.6985769784078,32.96576565038413,32.233405558392406,33.20624270429835,33.49149925168604,32.893549817148596,33.529438592493534,34.080064832698554,35.075456619262695,34.62406484875828,33.96146963723004,34.331205944065005,33.90845292247832,34.03586328588426,33.94521412765607,34.240031788125634,33.30513561889529,33.14904965320602,33.22690389119089,33.54044993733987,34.142603939864784,33.529456252697855,32.826956088189036,32.90320529136807,32.08647447125986,32.64451522147283,32.198864066042006,31.60785532090813,32.12534367479384,31.93152537290007,32.365402676165104,32.5051357857883,32.66863453993574,33.608149715699255,33.42084947088733,33.70938353333622,33.7388370228,33.39007475832477,34.311997598037124,35.27260908484459,34.31482836836949,33.34940916253254,33.543580181431025,33.32300026388839,34.24960864242166,34.38372492464259,33.826233598869294,33.6046635620296,32.91688238317147,32.675111749675125,32.61225080303848,32.0177149749361,31.860798029229045,31.72679726500064,32.14500756142661,31.857830814551562,31.573221364058554,31.36545910127461,31.656477420125157,31.326596009545028,31.457049715798348,31.797401817981154,31.685336677823216,31.770947301294655,32.18650910630822,32.96276145474985,32.3123978623189,33.08489766810089,33.360481632873416,34.16234931536019,34.053046732675284,33.73183533223346,33.99559998931363,34.35103724617511,34.679758036509156,35.62034331355244,35.43657160922885,35.70206432649866,36.31841036165133,37.17998956143856,37.35909577924758,36.40436501568183,35.64641099283472,35.20127522805706,34.60322697926313,34.25104163354263,34.796120868530124,34.2939389613457,34.699482202064246,34.15813083667308,33.74093948351219,34.31778268516064,33.3682439699769,32.55092693725601,33.47211110312492,33.786680296529084,33.14467009296641,33.92307451181114,34.39610619004816,34.362291261553764,34.26649850187823,35.09420326258987,36.0373032358475,35.70350977173075,35.513281526975334,35.114704249892384,34.31565895630047,34.088968166615814,33.731935403775424,32.8523524957709,33.80667336145416,33.067277036607265,32.32740456983447,32.67107383534312,32.695609694346786,31.73210471915081,30.758713578339666,30.08579750172794,29.271520181093365,29.21751359431073,29.760674222838134,29.792775329202414,29.79180237511173,29.854365072213113,29.74448789143935,29.41210048412904,28.653849268332124,28.637450778391212,28.847155625000596,28.590052771847695,29.120365160051733,29.1089528077282,29.752781291026622,30.2664294578135,31.15275914873928,31.999330521561205,31.726869422011077,31.930168939288706,31.261177321895957,31.526583007071167,30.685573157854378,30.91299712890759,31.29257035627961,32.052565592341125,33.01765708019957,32.921327107120305,33.15854298463091,32.40908105392009,32.20599541021511,32.249234188348055,32.31622553942725,31.96031188732013,31.696164444088936,31.61847055144608,31.85435042483732,32.65939351916313,33.07028440060094,32.63348405435681,32.64272138988599,32.192707968410105,32.5945756630972,31.624251338653266,30.76593645848334,31.340783243998885,30.914699465502053,30.56835515005514,30.936682839412242,30.992091448046267,30.74771696794778,30.775834791827947,30.334940804168582,29.918834693729877,30.743847973644733,30.191264134831727,29.551571974996477,29.706954440567642,30.053343139588833,30.25724846078083,29.814573761075735,28.830180714372545,28.88905838970095,28.462518610991538,27.65299436589703,28.628373488318175,28.477250078693032,29.176223176997155,28.747683802153915,29.583656893577427,30.274584215134382,31.085697431582958,31.87797201424837,31.931615197099745,31.895841782912612,32.33916355622932,32.377168708946556,32.66395672922954,33.28602516511455,33.16178537905216,33.374798886012286,33.34740291489288,33.76045356830582,33.53658322803676,34.263080588541925,33.926938354969025,34.53386443294585,33.89804780948907,34.425564986187965,33.87719318503514,34.26229913532734,33.40668768808246,33.019624087028205,32.29361725458875,32.09177995612845,31.4038705076091,31.451680031139404,32.09016321180388,31.71542157512158,32.5117009668611,32.9746924424544,32.69065792718902,33.61237147869542,33.709929410833865,33.16038277419284,32.58551577012986,33.041633828077465,32.23303695674986,31.665097180753946,32.61660354398191,33.435068669728935,32.460239278618246,33.10346364742145,33.95634891977534,33.880608797073364,34.5723038604483,34.01555377198383,34.706035926006734,34.38223362201825,35.1954654045403,34.520551742985845,33.66195927001536,33.26222011074424,32.44209303567186,32.7534071682021,32.89928984642029,32.37406524177641,31.804750497918576,31.784539519809186,32.517156748101115,31.802045898977667,31.3211423298344,31.227080090902746,32.092891429085284,31.183344003278762,31.021164514124393,30.78594839759171,30.239700255915523,29.31548802461475,28.835033976938576,27.919018626678735,28.8158831843175,28.523694408126175,27.56284980243072,26.596072397660464,27.22939939936623,28.104090923443437,27.1861190488562,26.349925532005727,25.914851792622358,26.703227061778307,27.522169014438987,26.63265495421365,27.429604350123554,27.361342994961888,27.204207201488316,27.057908195070922,27.10929879359901,26.6141486777924,26.7839284571819,25.810106542892754,25.431030204053968,25.393159836530685,25.387191313318908,24.770576210226864,24.89950119284913,24.36702200304717,24.184694822411984,23.700635206419975,23.48557591671124,23.324891805183142,23.40616064099595,22.48507058713585,22.3790301149711,21.625956147909164,21.00561230070889,21.31237678648904,20.442417772486806,20.687946017831564,19.874279368203133,20.255399184767157,19.353310491424054,19.097090222872794,20.07013202039525,20.50697454251349,19.830358910840005,18.98740676464513,19.84941572556272,20.12264379672706,20.946089908480644,20.784083812963217,21.489232836756855,21.257490776944906,21.079208224546164,20.708393779117614,20.36998267658055,20.226216363254935,20.828185411635786,20.435691067483276,20.906448748428375,21.27390853036195,21.32470364123583,20.407325552310795,21.207185516133904,20.846285617910326,20.22822263650596,20.939508453011513,21.14127389062196,21.36802616948262,20.60251693474129,20.088265078142285,20.901293699163944,20.723537504673004,21.35748682077974,20.912564650177956,20.58483353909105,20.525407368782908,20.542729758657515,20.80303743109107,20.307735749986023,20.51584130898118,20.42961229942739,19.517869473900646,18.654885474592447,18.28854349674657,18.165861025918275,17.848784453235567,17.46255230391398,18.166213170159608,17.598028930835426,16.852807458024472,17.276815944351256,16.41994009213522,15.931325202342123,16.734471863135695,16.699111280497164,17.139369324781,17.573295070789754,17.036365263164043,17.450861774384975,17.443048014305532,16.515689093153924,16.81031106505543,17.34154977509752,17.07676273630932,16.22607172699645,15.579942460171878,15.038200348615646,14.831915718968958,15.24094103416428,16.23306428268552,17.014274153392762,17.836863186676055,16.846671652514488,16.149892072193325,16.984661013353616,16.948218149133027,16.31699840677902,16.947055763099343,17.610033954959363,18.338163701351732,18.800449579488486,19.122049739584327,19.34772251173854,18.57952388143167,18.39558169664815,18.341715599875897,17.359394330065697,18.109365256037563,17.703803066164255,17.420959402341396,17.211171588860452,18.160725090187043,18.888550457544625,17.931819174438715,17.005230859853327,17.51681417506188,17.357158713042736,17.210427504964173,16.613443897105753,16.992986930068582,17.16988278599456,16.57570403208956,17.45394716411829,17.983153430745006,17.8359119691886,17.154978164006025,17.029178109951317,16.689000949263573,17.138540108222514,17.856708569917828,18.15875704586506,18.423557138070464,19.124932523816824,19.86685150815174,18.999138507060707,19.82165085338056,20.605226980987936,21.281730827409774,22.21574561437592,21.63383698137477,22.310537027660757,21.498603956308216,21.430698884185404,20.520981612149626,20.483732959255576,19.688140094745904,19.487829303834587,18.778166204225272,19.04749304894358,19.24308725213632,20.03122932650149,19.37061382178217,19.42854727478698,19.965016479138285,20.347790982108563,20.691206987481564,20.732856136746705,19.947185275144875,20.65301639540121,21.110911386553198,21.408835686277598,21.976980176754296,21.196622563060373,20.32749405456707,20.49652075394988,19.820947157219052,20.56389008462429,21.286041726823896,20.742078329902142,19.917586700525135,19.90408204868436,20.214657091069967,19.658894488122314,19.13878393638879,19.54246658226475,20.425902756862342,19.78841019049287,20.319246836472303,20.274014049209654,19.574323321226984,20.471382190007716,21.138616575859487,21.42695764033124,22.396820603404194,23.0304094273597,22.421732772607356,22.25236088875681,23.049206368625164,22.30412340350449,22.31335189193487,21.980937719345093,22.601500004995614,23.068689440377057,23.075469526462257,22.179705354385078,22.990597066935152,23.767555637750775,23.97726878290996,23.030700201168656,22.619457161519676,21.861991179175675,22.737193126231432,21.903351962566376,22.197377104777843,21.98477193620056,21.309806702192873,21.698530606925488,21.218846852425486,20.670416488312185,21.1452815849334,21.42531287483871,22.02683477802202,22.224647600203753,21.86150981625542,22.63159990683198,22.64567266544327,23.07836212264374,22.239478373900056,21.338660271372646,20.421770196408033,21.014677102677524,20.229761036578566,19.64324529329315,19.16819665301591,18.280293982475996,18.46087451837957,18.84344297274947,19.035189448390156,18.27645063586533,18.624919281806797,18.819800455123186,18.561358978040516,17.689347140025347,17.54112743632868,17.28165230154991,17.436296571511775,16.961258877068758,16.53410743875429,17.291580035351217,16.696135965641588,17.13740781787783,17.70410880446434,17.604058425407857,17.347236339002848,17.09041344281286,18.085051923058927,18.951502967625856,18.702476808801293,19.43241128977388,19.49588061356917,19.46396177681163,19.440691222436726,18.725931123364717,18.299990217667073,17.857384346891195,18.24922056030482,17.297019816935062,17.0923615032807,16.17450283188373,16.094715647865087,15.274289655033499,15.82056730473414,16.3508958988823,16.21580841112882,15.294214057736099,14.579220697749406,14.453405166510493,15.138108363375068,15.376561149954796,14.581771397963166,13.692252801731229,12.759283237159252,13.068526866845787,12.765433846972883,12.260871281847358,12.689681227784604,11.810284398496151,11.867324599064887,12.221176239661872,13.122213090769947,13.446794282179326,12.77074798522517,12.767164802644402,13.621066052466631,14.419139292091131,15.198107849340886,15.74315558327362,16.57870234362781,17.143727847840637,17.057898392435163,16.651746463030577,17.128973898477852,16.53972358396277,16.68302269047126,15.957209523301572,16.458959591574967,16.97412636457011,16.213850964792073,16.545929226092994,16.293839329387993,15.993077999446541,16.410550797358155,16.364544662181288,16.270729991607368,15.49851687764749,14.87799320043996,15.520482179708779,15.717888751532882,16.460800314322114,15.525178572162986,15.040539912879467,14.835337573196739,14.246834962628782,13.955307493451983,13.130048151593655,12.189789222087711,12.380250822287053,13.107779978774488,13.61783909983933,13.794900711160153,14.020873384550214,14.911783289164305,15.821121292188764,15.875161048956215,16.58916692296043,16.350507258903235,15.569001716561615,15.993195510469377,15.266802978236228,15.264464620966464,15.75484568066895,15.121260717976838,14.409994717221707,14.175734880845994,13.413788108620793,12.79942490439862,12.94919126201421,13.894298767670989,14.533157041296363,13.65134117146954,14.609332143794745,14.549425386358052,15.437292599119246,15.953093248885125,16.63092930102721,16.819696377962828,17.139273702632636,17.948485010769218,17.34882509568706,16.98748124204576,16.830145846121013,15.926445478573442,15.978905070573092,15.398188252933323,15.743218957446516,16.470924253109843,17.039526009000838,17.75314631825313,16.98698362428695,16.442321370355785,16.89602279663086,16.428524499293417,16.07468140311539,16.504674728494138,15.96467878529802,16.393697357736528,16.462505570612848,16.44694910850376,17.15307376580313,16.673994439654052,16.68461229559034,17.619984021876007,16.666133224964142,16.42158573260531,15.659641380887479,14.820881583727896,14.640467832796276,14.186110719572753,13.742016448173672,14.731105427257717,14.134716155473143,13.743076384067535,14.264584768563509,14.078282282687724,13.18816296197474,13.107374812941998,13.29464252339676,13.45190696977079,13.621471635531634,13.480940385255963,13.290169775485992,13.475082559045404,13.821893607731909,13.497914887964725,13.19446947099641,13.085208853241056,13.97473909612745,13.568896593060344,13.079111472703516,13.35619829641655,13.46047010133043,12.980687701608986,12.395745320711285,12.126368132419884,12.086275424342602,12.419617315754294,12.36196702439338,12.937820477876812,13.514364989474416,14.356406395323575,13.487163362558931,13.695685950107872,12.827891191001981,12.529195453971624,11.66145882057026,12.50113330502063,11.592693573329598,11.72776209237054,10.931185273453593,11.848724845331162,12.489403781946748,12.432242460548878,12.499196535442024,12.302332148887217,11.317652504425496,11.357082346919924,11.826211905106902,11.447213989682496,11.414441449102014,10.821799273602664,11.532481406349689,11.164112174883485,11.151591851375997,11.873261604923755,11.59024966461584,12.13585277274251,12.916825485415757,12.727803823538125,13.119460904505104,12.369237550534308,11.98537635896355,11.644249252509326,10.75560907041654,11.658556176815182,11.792517718393356,11.19346958771348,10.653613612055779,10.186087628360838,9.52847367990762,10.198205649387091,10.449847561772913,10.900772542692721,10.15437029581517,9.60550877219066,8.66477860417217,9.078068868257105,8.2552549126558,7.715230365283787,8.115029847249389,7.407531759236008,7.584139175713062,6.659351913724095,7.012109891045839,6.852029764093459,7.241534965578467,7.21583493379876,6.984423598274589,6.8021396095864475,7.4228364559821784,8.015213486272842,8.6080751423724,8.030746336560696,8.479246602393687,8.038446669932455,7.428493044804782,6.530946568120271,6.113838647026569,6.672936960589141,6.177075808402151,5.453966902103275,4.454903670586646,3.7962208851240575,4.05552451685071,3.37427366245538,3.2754340688697994,3.035658797249198,2.736253619659692,1.9442019686102867,2.555693061091006,3.260149273555726,3.237571514211595,3.2545481212437153,2.6648518820293248,3.078425996005535,3.793278807774186,4.539185537956655,4.634934678673744,4.325948639772832,3.588433046359569,3.783632761798799,4.458975649438798,3.542725826613605,2.6851773601956666,2.3494532452896237,2.035002706106752,1.617940055206418,0.8655620208010077,-0.028219105675816536,0.5038059656508267,0.5433150641620159,0.272840766236186,0.41252038860693574,0.09282341087237,-0.045480767264962196,-0.5436340859159827,0.2397830467671156,-0.09942603064700961,-0.282648210413754,-0.8272432880476117,-1.621585389599204,-1.9957166519016027,-2.473786818794906,-2.3590767071582377,-3.0669345487840474,-3.5918968031182885,-3.266384980175644,-3.184189004357904,-2.18863008916378,-1.5030683856457472,-2.0367077914997935,-2.9978938717395067,-3.0268429652787745,-3.8791439393535256,-3.5539184254594147,-2.868842146359384,-3.31404878012836,-3.009655233938247,-3.052657349035144,-3.4031597459688783,-3.4811072424054146,-3.522201127372682,-3.0385474879294634,-3.8445322513580322,-4.2906118468381464,-3.683761280030012,-2.9345738301053643,-3.8598826620727777,-4.218780815601349,-4.129853109829128,-4.719132482539862,-5.362019017804414,-5.9434853391721845,-5.870086409151554,-4.885348791256547,-5.089442502707243,-4.510519839823246,-5.409362636972219,-5.823639737907797,-4.876187715679407,-4.273584452457726,-5.238905357196927,-5.526151705533266,-5.825549258384854,-6.446140524931252,-6.612638326361775,-6.7510680253617465,-7.199045416899025,-8.020675414707512,-8.555025840643793,-9.460646195337176,-10.118657840881497,-10.915783860720694,-11.580669746734202,-11.017577317543328,-11.863418048713356,-11.271833766717464,-11.853578087873757,-12.819853745866567,-13.784782008267939,-14.634822813794017,-15.506767880637199,-14.781404583714902,-13.968382809311152,-13.556743749883026,-14.019661434460431,-14.3795813228935,-14.378731263335794,-14.08437249623239,-14.946000987198204,-15.90743306092918,-15.841622493695468,-14.846416269429028,-15.565663647837937,-15.751553002744913,-15.842104001902044,-16.056520690675825,-15.196052667219192,-15.412743491586298,-15.701764246914536,-16.005631908774376,-15.27286759391427,-16.03413006849587,-15.76687230868265,-15.898794560693204,-15.582020155154169,-15.72074265498668,-14.972716413903981,-15.618406364694238,-15.983823822345585,-15.588881871197373,-16.118174884468317,-15.59994160104543,-14.983175075147301,-15.919318987522274,-15.97204326512292,-15.248072895221412,-14.577393956948072,-15.097863873001188,-14.168519641272724,-14.54828290361911,-15.503381436690688,-15.440620198380202,-15.669631668366492,-15.229329917114228,-14.80062711937353,-14.296276511158794,-13.806468377355486,-13.737105038948357,-13.902333428617567,-13.294637150596827,-13.034349992405623,-12.592840915545821,-12.574312531854957,-13.038667232729495,-13.99012525845319,-14.241135878954083,-14.228561625350267,-13.399707907345146,-14.318487741984427,-15.19967605965212,-15.000815910752863,-15.744354087859392,-16.181228606030345,-15.231915978249162,-16.1419487465173,-15.501176967751235,-15.690291171893477,-16.216237294021994,-15.830665684305131,-15.137560489121825,-15.958614267408848,-15.18484452413395,-14.510896546766162,-13.738580777775496,-12.804760097526014,-13.598457765299827,-14.484380297828466,-13.699618422426283,-14.168780097272247,-13.876696683466434,-13.550730688963085,-13.26155242556706,-13.640345491003245,-14.2291026446037,-14.125334315001965,-14.288548543583602,-14.88539804611355,-13.949745597783476,-14.89199453825131,-15.268877875059843,-15.736858543474227,-15.497815003618598,-14.828134011942893,-15.465071675833315,-16.282519802451134,-17.261088455095887,-18.1689282823354,-17.7625022479333,-18.440631127916276,-18.404730803333223,-18.653550954535604,-18.100291633512825,-17.37553806975484,-17.756344007328153,-17.13138970080763,-16.190067369490862,-17.0140891619958,-17.048069826327264,-16.761336355935782,-17.536883325316012,-17.77047660248354,-16.971417341846973,-17.867135965730995,-18.41237867437303,-17.86911422619596,-18.61699296766892,-17.766616819426417,-17.199563125614077,-16.939586754422635,-16.227486475836486,-15.235763316974044,-14.948048209305853,-15.787828502245247,-14.900236102286726,-14.193917501717806,-13.537906115408987,-13.518133874982595,-13.496425437740982,-14.173170590307564,-13.906635803170502,-12.939188844058663,-13.525295588653535,-14.214563744608313,-14.04872329114005,-14.762280866969377,-14.28428756725043,-13.938931793905795,-13.468724738806486,-12.949770054314286,-12.335645258892328,-11.770525914151222,-11.131023046094924,-10.24276300240308,-10.631593519821763,-9.885684162843972,-10.208901304751635,-11.03534321906045,-11.109742528758943,-11.846769682131708,-12.494230343960226,-13.11699998890981,-13.148589101154357,-12.796092197299004,-13.3476548823528,-13.518033271189779,-12.70525251980871,-13.05762306554243,-12.216907992493361,-12.400265748146921,-12.308842559345067,-12.829229382332414,-11.904616779647768,-11.431261238642037,-11.827564814593643,-12.53602685406804,-12.608468080870807,-13.272000709082931,-13.122076634783298,-12.640862479340285,-12.215770330745727,-12.26859817840159,-11.707957575563341,-12.020627534482628,-11.98149615433067,-11.054342473391443,-11.685731356032193,-11.626302263699472,-11.049007902853191,-10.879193624015898,-10.613342709373683,-9.66540695540607,-9.380249107722193,-9.34828568994999,-8.554516937118024,-9.459384267684072,-10.239615919999778,-9.401372979860753,-8.573611569125205,-7.828001387882978,-7.059582518413663,-6.764857450034469,-6.7632981752976775,-6.355628032702953,-6.6233153459616005,-6.707160418853164,-5.944875691086054,-4.953826244454831,-5.307247526012361,-4.574122518766671,-4.577745737507939,-5.516577671281993,-4.775422242935747,-5.360246028751135,-4.883700706996024,-5.5812082453630865,-5.971891969908029,-6.100496536586434,-6.983083997387439,-7.536904363427311,-8.408531593158841,-8.179047299548984,-7.640797138679773,-7.04003297816962,-6.612387576140463,-7.10396600374952,-6.422681850846857,-7.072490201797336,-6.4865940059535205,-6.3682459075935185,-5.564899950753897,-6.272859117016196,-6.0847188658080995,-6.246779769193381,-5.494761949870735,-6.234959413297474,-5.92467797268182,-5.742120066192001,-5.219863660633564,-5.119123608805239,-4.478844464756548,-5.474038006272167,-5.584742589853704,-5.869824678171426,-5.932522088289261,-5.948039305396378,-6.59122754028067,-5.643634743988514,-4.96041018795222,-5.74685895210132,-6.107954493258148,-5.706412855535746,-6.655319173820317,-5.765309012494981,-4.8830108805559576,-5.413073998875916,-4.734623062890023,-4.030628139153123,-3.584850543178618,-4.552883084863424,-4.974200719501823,-4.165679152589291,-4.910374171566218,-4.077772581484169,-4.475102454423904,-5.15465840511024,-4.906597128137946,-4.898178317584097,-5.808344391640276,-6.089030186180025,-6.055429434869438,-6.5353055889718235,-5.754996505565941,-6.7071522399783134,-5.728376641403884,-6.170389644801617,-6.4336440628394485,-5.547810689080507,-5.776194445323199,-4.881911270786077,-4.890272744931281,-5.523502507712692,-5.516313035972416,-5.064195382408798,-5.297130776569247,-5.9505564966239035,-6.1874994253739715,-6.503267297521234,-7.254323656670749,-7.8541915994137526,-8.097050515469164,-7.560662248637527,-7.97317901160568,-7.709476842079312,-7.5992882046848536,-7.173117026221007,-7.910141218919307,-7.258888370357454,-6.900270059239119,-7.65113673126325,-7.367708366829902,-6.4925566096790135,-7.275131213478744,-6.557197363581508,-7.304095612838864,-6.713743889704347,-6.6210733712650836,-6.737107376102358,-7.722011063247919,-7.307427631225437,-7.952107179444283,-7.354165509808809,-6.900599378161132,-6.411829871125519,-6.018580765463412,-5.860184235032648,-5.841836216393858,-5.554653247818351,-5.7893571350723505,-5.234144655056298,-4.341042791027576,-3.93237874424085,-4.582628566771746,-5.145956209395081,-4.397319747135043,-4.887079218868166,-4.154206259176135,-4.414783955551684,-3.8620611843653023,-3.1989235118962824,-3.9003734532743692,-4.346828061621636,-5.104492962826043,-4.618355228565633,-4.279519906267524,-5.131279604975134,-4.999871462117881,-4.460835565812886,-5.072494470980018,-5.556099157780409,-5.714288954157382,-5.056349804159254,-5.42724534496665,-5.852761507965624,-5.986165824811906,-5.218062391038984,-4.930808439850807,-4.1846806313842535,-4.197178121656179,-3.596490455325693,-4.059020936023444,-4.994160992093384,-5.441224324051291,-4.972150405868888,-5.750522433314472,-5.583434301428497,-4.661937882658094,-5.6056826072745025,-6.099565485492349,-5.430481744930148,-5.529561962466687,-6.254737806506455,-5.693955341819674,-6.028122258838266,-5.966475256253034,-6.050425124820322,-6.677170241251588,-6.553714074660093,-7.0246689561754465,-6.859092354774475,-6.375135240610689,-6.8704030816443264,-6.261689759325236,-5.759286364074796,-6.453771036118269,-5.55587907647714,-5.846814175136387,-5.225254027172923,-5.921427201479673,-5.7887289905920625,-6.123218712862581,-7.059760490898043,-7.928323992528021,-7.330320115201175,-6.750965510029346,-7.301491871476173,-7.67753967223689,-8.134832510259002,-7.717240943107754,-8.086403745692223,-8.668827624060214,-8.12495373096317,-7.877923893276602,-8.437048487830907,-7.8735351650975645,-7.683649965096265,-6.9704795074649155,-7.104469612240791,-8.046451348345727,-7.642610365059227,-7.223358578979969,-7.785101714078337,-8.381881799083203,-7.845752244349569,-8.292910139542073,-8.886993336956948,-8.500813210848719,-9.18860140349716,-9.795849689282477,-9.810045113321394,-10.44736865349114,-10.394250555895269,-10.708180375862867,-10.840747288428247,-10.457431772723794,-9.822998403571546,-10.485714045818895,-10.497977604158223,-11.136800674255937,-11.372837195638567,-10.868103126529604,-10.397172324359417,-10.979369062464684,-10.99278816813603,-11.612850612495095,-10.924430891405791,-10.829864404629916,-11.446233030874282,-11.639830633532256,-12.49437567172572,-12.84821342350915,-12.364444931969047,-12.226860201451927,-12.511573703028262,-12.001237108837813,-12.942216378170997,-12.541308514773846,-12.201049444731325,-12.786817265674472,-12.273309161420912,-12.405912061687559,-13.374714305624366,-13.97049552993849,-14.57208704855293,-14.640794011764228,-14.037909283302724,-13.702248301822692,-14.391133262775838,-13.584144292864949,-13.374179763253778,-14.36816079262644,-14.199971463531256,-14.918850541114807,-14.037628641817719,-14.993564043194056,-14.104425455443561,-13.855525960680097,-14.077797510661185,-14.245097794104367,-13.399686846416444,-12.804644267540425,-12.880003923550248,-13.36722832173109,-12.556208341382444,-12.186819702386856,-12.425225130282342,-11.683315575588495,-11.219860176555812,-12.027271554805338,-12.006406935397536,-12.26592171471566,-11.524676584172994,-12.208947643637657,-12.157630974892527,-13.070610432885587,-13.306643138173968,-13.539657627232373,-13.008905979804695,-12.859281921293586,-12.382605716120452,-12.570462564006448,-11.794197188690305,-11.04430733481422,-11.004468170460314,-10.915639236569405,-11.254301112610847,-11.788292315322906,-10.854363032616675,-11.195445507764816,-11.065722616855055,-11.578469187952578,-11.535718066152185,-11.72819592943415,-11.230735964607447,-11.586991995107383,-12.02193384245038,-11.27056330256164,-11.938530405983329,-12.128195963334292,-12.978732403367758,-12.245895020663738,-12.778422700241208,-12.795327881351113,-13.648485453333706,-14.481008059345186,-14.438426651526242,-14.649466675706208,-15.146791502367705,-14.71071724127978,-15.07851647445932,-14.805146098602563,-14.309016599785537,-15.098543650005013,-15.061957268510014,-14.330928904004395,-14.541281630750746,-14.506852541584522,-14.546839038375765,-15.461110025644302,-14.473569178953767,-14.879834146704525,-15.218053403310478,-15.020072508603334,-15.01000301539898,-15.77219869568944,-16.721151012461632,-17.26985493162647,-17.258881928399205,-17.251394509337842,-17.191851071082056,-17.051753436215222,-16.386841703671962,-16.69439888233319,-15.94280869094655,-15.548733433242887,-15.18250813614577,-15.988239382393658,-15.57983269309625,-15.952769146300852,-15.355716731864959,-14.549587451387197,-13.881346135865897,-13.682157516013831,-13.179289725143462,-13.615511931944638,-14.416029111947864,-14.555371993687004,-15.099651340860873,-15.893606999423355,-14.949310975614935,-14.557203412987292,-13.98844555998221,-13.212278003804386,-13.567841229960322,-13.544665147084743,-14.342895658686757,-14.251174645032734,-13.462631043046713,-13.248110899701715,-12.861910537350923,-12.746664959937334,-13.285059176385403,-13.317759403027594,-12.529637347906828,-12.768621313385665,-12.903395155444741,-13.230469855479896,-13.007832532282919,-12.803294258192182,-13.633222502656281,-14.391547509469092,-14.644880426116288,-15.27511660195887,-16.103217164520174,-15.295044083148241,-16.101771724410355,-15.35912490496412,-14.550138046965003,-14.45082018058747,-15.208050299901515,-15.232303158845752,-14.900254165288061,-15.155221667606384,-15.66262927185744,-16.43991350568831,-16.743365021422505,-17.658170248381793,-16.7743734610267,-16.23897467646748,-16.035794685594738,-15.303402440156788,-14.331999292597175,-13.578605079557747,-13.036362423561513,-13.846885939128697,-14.434784981422126,-15.294086602982134,-14.449825001414865,-14.493038948625326,-13.546994517091662,-13.664409639313817,-12.81646211631596,-13.793324924539775,-14.21720089809969,-14.643585256300867,-14.603447692934424,-14.663047729060054,-14.78617539582774,-15.4275047108531,-16.346226835157722,-16.108527564443648,-15.871490403078496,-15.260205006692559,-16.174438033252954,-15.317193082999438,-14.685387181583792,-15.499540304299444,-15.7939284411259,-16.108474156353623,-16.845344837754965,-16.065873427782208,-16.897962647955865,-15.995232383720577,-16.41158745950088,-17.005115002859384,-16.96935074357316,-17.90879720915109,-18.171945774462074,-18.535674571525306,-18.17266124347225,-17.725547382608056,-18.327129340730608,-18.911721965763718,-17.982741253916174,-18.879291456658393,-19.619954174850136,-20.168048666790128,-19.376266873907298,-18.798406158108264,-19.73411894030869,-19.175130223855376,-19.39472549641505,-20.007099819369614,-20.655437383800745,-21.164529306814075,-20.517478696536273,-20.657369007356465,-20.006380075588822,-20.29594867164269,-20.004343062639236,-20.098040675278753,-19.730400544591248,-20.579640789423138,-21.29994462383911,-21.873609180096537,-22.366901225410402,-22.861979816574603,-22.944428610615432,-23.80789980525151,-23.885527895763516,-23.0323449363932,-23.837476025801152,-22.84320319071412,-22.24461399251595,-22.727886066306382,-23.35378094110638,-23.03389906231314,-22.965674104634672,-22.623607340734452,-23.539189112372696,-22.899240956176072,-23.2382038468495,-24.053725245408714,-24.752408634405583,-24.703773113898933,-25.123128248844296,-24.26275627501309,-24.30945851933211,-24.106196862645447,-23.72479213681072,-23.515411449596286,-23.11196959670633,-23.32078378368169,-22.477108728140593,-21.529167630709708,-21.17727386811748,-21.41041729832068,-21.48625102173537,-21.600046639796346,-22.274566881824285,-21.764493683353066,-22.616893218830228,-23.408336201682687,-23.439121674280614,-23.502313879318535,-22.549981508869678,-23.191178970970213,-23.207029066048563,-22.892857330385596,-22.841207282152027,-23.14885158324614,-22.51774052157998,-22.060400780290365,-22.959198311902583,-23.479812853969634,-22.514650699216872,-22.545094373635948,-22.88447551149875,-22.124706279020756,-22.0147396591492,-21.18509848602116,-20.73747332766652,-20.989679246209562,-20.67171050189063,-21.268496870994568,-21.166738911531866,-21.21445105597377,-20.580507384613156,-21.062124389689416,-21.15684662712738,-21.02848107693717,-21.65551115758717,-21.620588793884963,-22.512787216808647,-21.99145113537088,-22.412694526370615,-22.077511753886938,-22.360366712789983,-22.04725573444739,-21.060789744369686,-21.24309571366757,-21.705023846123368,-22.39757633348927,-22.710550491698086,-22.05536702927202,-22.29293426964432,-21.61390549549833,-20.642017097212374,-19.70717338984832,-20.318846645299345,-20.547706031706184,-21.537558793555945,-22.242081185337156,-22.71041927766055,-22.6702437591739,-22.997446707915515,-23.748968719970435,-23.712562405038625,-23.721300095319748,-23.07242536963895,-22.306033100932837,-22.241092306561768,-22.183272317051888,-21.963112350087613,-21.51228405814618,-20.61657791165635,-21.258113456889987,-21.43793717585504,-21.000329898204654,-20.050303163472563,-20.661351394373924,-19.830780476797372,-18.90895013930276,-19.89030778268352,-20.604876248165965,-19.721943081822246,-20.155361453071237,-20.131722779478878,-19.646610119845718,-20.256993263494223,-20.798172985669225,-19.81975912535563,-19.380029309540987,-20.359127886593342,-20.041184762492776,-19.985622245818377,-19.102454208303243,-19.29582782741636,-18.770675651263446,-18.316829630173743,-18.798476874362677,-19.13812075322494,-19.618660901673138,-19.144141474273056,-18.861285383347422,-18.09906759671867,-18.645551547873765,-19.589867495931685,-19.379446264356375,-19.13294068351388,-19.993051941972226,-20.475508192554116,-19.634741771034896,-19.086819625925273,-19.423881080467254,-19.550729111302644,-19.280605129897594,-18.300215872004628,-18.330381514970213,-19.025179305579513,-18.43733376264572,-18.71777803543955,-17.86843622708693,-18.855854875408113,-18.554114835336804,-19.2909732805565,-19.30729154124856,-19.873716079164296,-19.07461679307744,-20.024290742818266,-19.749343406874686,-19.376905330922455,-19.0643768790178,-19.159341134130955,-19.132091737817973,-18.660525393206626,-18.611081287730485,-18.44182858429849,-19.227483422961086,-19.567746973130852,-20.099379646591842,-19.282445774413645,-19.197957946918905,-18.32914030039683,-18.924116662237793,-19.496353205293417,-18.52117902552709,-17.65448594558984,-17.151654795277864,-16.768346313387156,-16.59536894131452,-16.03034158796072,-16.217470676638186,-15.553283549845219,-15.729691754560918,-14.781261051539332,-15.344559647608548,-15.638872297946364,-14.794610664248466,-14.725399385672063,-15.546652944292873,-16.49501982377842,-16.079194083809853,-15.685875771567225,-14.712947982363403,-13.974967601709068,-13.669136466924101,-14.29418316623196,-13.454689241945744,-13.292881579604,-13.136047815904021,-12.379545663949102,-11.76956877950579,-11.000438749790192,-11.208381755277514,-11.682288254145533,-12.67771133966744,-13.012255122419447,-12.286253185477108,-12.964116535149515,-12.298213825095445,-12.897138480097055,-12.20130025781691,-11.93258461728692,-11.862945112865418,-11.857123185414821,-11.2971729231067,-11.070913712494075,-11.504203241318464,-11.499012476298958,-11.000134689267725,-11.565297479741275,-12.233630643226206,-12.946932099759579,-13.354144744575024,-13.949698024895042,-13.45039306068793,-12.609505644068122,-13.508230386767536,-13.907908459659666,-14.632796448655427,-13.825913553126156,-13.688527109567076,-14.432295436039567,-13.825409025885165,-12.870945744216442,-13.282211339101195,-14.02584555465728,-13.719530939124525,-13.549905744381249,-13.133977231569588,-13.384306988678873,-12.463862404692918,-12.394738568458706,-13.38342285854742,-13.698676126077771,-13.98761118017137,-14.425456586293876,-13.99627509713173,-14.433596489485353,-13.93907367484644,-14.625522210262716,-14.885483868885785,-14.471319972071797,-14.710578930564225,-14.551069521345198,-14.57831260561943,-13.886158497538418,-13.448289239313453,-13.430622974876314,-13.623362787533551,-14.05998057499528,-14.40347066661343,-15.112441423814744,-14.9464214858599,-15.915064919739962,-16.300686947535723,-15.85249870410189,-15.919695822987705,-14.953164028469473,-15.226429449394345,-15.24692085571587,-15.881470383144915,-16.506974458694458,-17.084132083691657,-16.972552717663348,-17.234846975188702,-17.974000702612102,-18.686905530747026,-18.103569585364312,-17.627557578962296,-17.42492613522336,-18.284130673855543,-18.74417554680258,-19.110024612862617,-20.10615221923217,-20.954608767293394,-20.23766878247261,-19.308827900327742,-20.04125452367589,-19.250244329683483,-20.05456140311435,-20.239073402713984,-19.841629155911505,-19.358160222880542,-20.119024193380028,-20.029191510751843,-20.59031267138198,-20.077479792758822,-19.487744204234332,-19.400966609828174,-19.392071092966944,-18.983901515137404,-18.64679238665849,-18.99103399226442,-18.07626290526241,-17.745882167480886,-18.15030236216262,-18.697076020296663,-18.422748192679137,-19.10912169702351,-19.00448862882331,-19.198889695573598,-18.368702651932836,-18.567713467404246,-18.92705162940547,-18.334947532974184,-17.518204551190138,-17.5372922741808,-17.726931404788047,-17.21768634719774,-18.047709125094116,-18.491222915705293,-19.201573577243835,-19.57153704529628,-19.09141654940322,-19.562821813393384,-20.41456585843116,-19.67698453227058,-18.90917141828686,-18.933335354551673,-18.238970349542797,-17.60596999945119,-18.259734366554767,-18.70280125224963,-18.901676131878048,-19.641863589640707,-19.558058192953467,-19.334800804965198,-19.144910330418497,-18.215937544126064,-17.850934766232967,-18.533464942593127,-17.569322974421084,-18.507571164518595,-18.358582206536084,-18.58916656440124,-19.57624935405329,-19.119526049587876,-19.41605565091595,-18.48607209092006,-17.548771572764963,-16.942971718963236,-17.030940596479923,-16.27948820311576,-16.890051742084324,-16.23903045943007,-17.15095651289448,-17.251701734028757,-17.904231580439955,-17.88945790519938,-16.949735417496413,-17.59959697816521,-17.50975166633725,-17.588001344818622,-17.929184997454286,-18.80010939342901,-18.70931394211948,-18.62866210611537,-17.808626836165786,-17.354465239681304,-17.145013950765133,-16.173429476562887,-15.988256199285388,-16.063981556799263,-16.152846198994666,-16.35189178865403,-16.33904361492023,-15.819232660811394,-15.563964110799134,-15.862749642226845,-15.117301329504699,-15.270204938482493,-15.555810497142375,-15.738621822558343,-15.623251185752451,-15.447579716332257,-14.67295558610931,-15.418933810666203,-15.930589528288692,-15.781629604753107,-15.74206894915551,-16.178245054092258,-16.50203385949135,-17.31228678720072,-17.514957912731916,-17.259901877958328,-18.108978397678584,-17.46701980708167,-18.2208620775491,-18.527353493031114,-18.236562131904066,-18.979440374299884,-19.83858364308253,-19.571779327001423,-19.505753833800554,-19.623597021680325,-20.13138902699575,-20.85746186831966,-20.245898263994604,-19.929498717654496,-20.815238344483078,-21.168236328754574,-21.80790111515671,-21.88560235965997,-21.429823191836476,-20.94335006410256,-20.21518376749009,-20.499653324950486,-19.979140588082373,-19.90366048179567,-19.20702382316813,-18.297257652506232,-18.559080909006298,-18.393834285903722,-17.519804501440376,-17.95931739034131,-18.279879931826144,-18.42868248047307,-17.832409451249987,-18.58041898533702,-17.777512181550264,-17.810997947119176,-17.674080150201917,-16.75715132476762,-15.86614408576861,-15.602081576362252,-15.555633230134845,-16.153547456488013,-16.837283610831946,-17.41797245433554,-17.143335002940148,-16.88078040862456,-16.381850806996226,-15.84110579174012,-16.27705881698057,-15.994727455079556,-16.83515017759055,-16.939900821074843,-16.89612968824804,-16.271710040513426,-15.507678559049964,-15.95244196942076,-16.750953720416874,-17.64671084517613,-17.962076283060014,-18.141507542692125,-18.80857003154233,-18.655719278380275,-18.390995093155652,-18.535555140580982,-18.133413892704993,-19.08135231817141,-18.56159805878997,-19.07449016207829,-18.381241193972528,-18.068209062796086,-17.66112789697945,-18.382072150707245,-17.709063862916082,-18.253821006976068,-18.3295478830114,-17.85107674775645,-18.315805713180453,-18.956246533431113,-19.819705952424556,-20.12574305711314,-20.153671336825937,-20.549261062871665,-20.91778660612181,-21.526305098552257,-20.6469314834103,-21.537056708708405,-20.570877641439438,-20.359502519480884,-20.247484761290252,-20.922828199341893,-20.758706892374903,-19.927604601718485,-19.751399028114974,-20.252375577110797,-20.3212446491234,-20.28987075202167,-19.61643068632111,-19.522280347067863,-20.245183788705617,-21.052538186777383,-20.184071811381727,-20.732175508979708,-21.52952272957191,-21.237838182598352,-20.475951192434877,-19.667111048474908,-19.87467571441084,-19.933694761246443,-20.181118171662092,-19.439982956275344,-19.7974831382744,-20.16819736873731,-19.497103601228446,-18.63206611108035,-17.67941400082782,-17.374393690377474,-16.435681677423418,-15.593493522144854,-15.38480455800891,-15.516284005716443,-14.59508028998971,-13.848513888195157,-12.974373875185847,-13.017285094130784,-12.76947608590126,-11.940237253438681,-10.99853097088635,-11.78215304389596,-11.39499876787886,-11.646128873340786,-11.993745740503073,-11.52610428724438,-11.009705708827823,-11.561856583226472,-11.205087883863598,-10.594758253544569,-11.525223863311112,-12.50149595644325,-12.796591461636126,-12.649323713965714,-13.14110020827502,-13.035455422010273,-12.164918982423842,-12.72515113092959,-13.487243669573218,-13.960419300477952,-14.007925178389996,-14.503574611153454,-13.951913928147405,-14.322975934948772,-14.001197542063892,-14.260524615645409,-14.947288231924176,-15.446569544263184,-15.026902850717306,-14.427764924243093,-14.854916043579578,-15.474351375829428,-15.92274812841788,-16.87299829069525,-16.886654862668365,-16.358648071065545,-15.980699173174798,-16.34547247039154,-17.1907669454813,-17.248314945492893,-17.512022911570966,-17.27775831799954,-18.222112252376974,-17.241905812639743,-18.074712183792144,-18.349160028155893,-17.97835737792775,-18.08150168834254,-17.398430212400854,-17.000797283370048,-17.278150814119726,-17.082234928384423,-17.605046378914267,-18.079608137253672,-17.67549623036757,-16.82660222519189,-16.081705536693335,-16.08429589495063,-16.512332421261817,-15.576730698347092,-15.088499662932009,-16.075116992928088,-16.124463097192347,-16.18254289869219,-17.088695674203336,-16.874956040177494,-17.406868952326477,-17.776684540789574,-18.34649579646066,-18.77392829908058,-18.731920410878956,-19.53974956087768,-18.925074671395123,-18.199077137745917,-19.047298728954047,-19.874996224418283,-19.52378156548366,-18.750935960561037,-19.08272799476981,-19.176268943585455,-19.42330261413008,-18.868081726133823,-18.307397886179388,-18.241550498176366,-17.998266861308366,-18.48981614643708,-18.283575974870473,-17.888490685261786,-17.520899705588818,-18.08112820936367,-18.721553162671626,-17.739505242556334,-18.27348660910502,-18.822602370753884,-19.331432207021862,-19.654413661919534,-20.51991881756112,-19.730282624717802,-18.972160570323467,-19.76569018047303,-18.79118295153603,-18.30187031440437,-18.799662666395307,-18.066328575834632,-18.334891869220883,-17.57365782512352,-18.277831085491925,-18.630709025077522,-18.98700019577518,-18.63881801860407,-18.858920335769653,-19.00319314794615,-19.55146060232073,-19.69465533271432,-20.038648655172437,-19.79100456275046,-20.003621054813266,-19.138122331351042,-19.608270024415106,-19.21864558616653,-19.308511408045888,-18.75633017672226,-18.245685813948512,-18.814578372985125,-19.165552000980824,-19.76817268272862,-20.495971145108342,-20.386217836290598,-20.6589883598499,-20.51834580441937,-20.46657542977482,-21.346163612790406,-20.485392244998366,-20.737121611833572,-20.08137233182788,-19.46807767311111,-18.485256537795067,-19.225837698206306,-20.168316249269992,-20.578619851265103,-20.66760311787948,-21.27424126630649,-20.45746695715934,-21.28998711751774,-20.53347341576591,-19.927366962190717,-19.328669148962945,-19.160876509267837,-19.826746818609536,-19.87692090962082,-20.846459047868848,-21.246863953303546,-21.279153850860894,-22.135786016006023,-22.68866000790149,-21.848210806027055,-22.2042845194228,-21.972532907966524,-22.860525764524937,-23.57843164773658,-23.075137412641197,-23.2031879988499,-23.319192813243717,-22.825552531983703,-22.41412577079609,-23.065711664501578,-22.305863748770207,-22.272795628290623,-21.352083533536643,-20.501439661253244,-21.359609226696193,-20.501150918658823,-19.70660788891837,-19.374300167895854,-19.97235906077549,-20.49314510729164,-20.23768906854093,-19.446439021732658,-20.067917268257588,-20.96399907907471,-20.33914032857865,-19.962091790512204,-20.143884904216975,-19.36319090751931,-18.713117111474276,-18.113838382530957,-18.72588715981692,-19.05961499363184,-18.986042115371674,-18.680939459241927,-18.414395640604198,-18.78198260255158,-19.2474045031704,-19.429585544858128,-20.014781141187996,-20.253313896246254,-20.556405880954117,-20.358085617423058,-21.28696600254625,-20.346234431490302,-19.781819633673877,-19.128870057407767,-18.334178666118532,-18.35041402466595,-19.323081427719444,-18.712439322378486,-19.480984141118824,-19.883351573254913,-20.150261083152145,-19.81099532917142,-19.644945268984884,-19.67872128309682,-20.369906516280025,-20.002889816183597,-20.70255431206897,-20.627723714336753,-20.98689545877278,-21.15196597063914,-21.346764245070517,-21.15323227038607,-21.173016328830272,-20.530822713393718,-20.475921970326453,-19.518667398020625,-20.439226004760712,-21.123190961312503,-21.270858457311988,-20.667831579688936,-19.73952675703913,-20.096712012775242,-19.11501482920721,-18.6086322395131,-17.87984127784148,-17.634328208398074,-17.97091294452548,-17.23690799670294,-17.94365152856335,-16.9456929191947,-16.43602019129321,-17.27835470950231,-18.104966206476092,-17.462291243951768,-18.270694161765277,-19.124773962888867,-18.15408139070496,-17.80820327810943,-18.05119922803715,-19.00848267134279,-19.818801910150796,-20.003108147531748,-20.316000709775835,-20.515238436870277,-20.53816701984033,-19.959468563087285,-19.89730762084946,-19.40049739461392,-19.804724109824747,-20.134254799690098,-19.189542264677584,-18.589837805833668,-18.34367259591818,-18.723303326405585,-18.277904201764613,-17.595662883482873,-17.90148096717894,-18.515790151897818,-19.247926640789956,-18.914955063723028,-19.01145887700841,-18.491316240746528,-19.03509497269988,-19.07757558953017,-18.41235408373177,-19.370944116730243,-18.46844657836482,-18.12757989577949,-17.81160692172125,-17.83936520293355,-17.443380034994334,-18.313177421689034,-17.397627147380263,-18.250913131982088,-18.059481325093657,-17.822866205126047,-17.442402543500066,-17.75924461428076,-17.22152306837961,-16.250096252188087,-15.648187133483589,-15.343043855857104,-14.668145878706127,-14.179791764821857,-14.163998633623123,-14.631347867660224,-14.742447856348008,-13.796451771166176,-14.261994580272585,-14.045892024412751,-13.255721360910684,-12.617118100635707,-12.788086207583547,-12.196308227721602,-12.56325614778325,-11.62272713938728,-11.9829046796076,-11.744721754919738,-11.907247526105493,-11.356207177042961,-10.512342560105026,-9.738890016451478,-10.146576491184533,-10.454266637563705,-9.767185267060995,-9.060685581993312,-8.241735070478171,-8.993226450867951,-9.896833174396306,-9.461001265328377,-8.490843581035733,-9.036267651244998,-9.187218124978244,-8.677997434977442,-8.424904947634786,-8.844861593097448,-7.960870665498078,-7.499254733789712,-7.086779071949422,-7.442244199570268,-7.334324304945767,-6.834156036842614,-7.535398280248046,-7.966180091258138,-6.994040570221841,-6.831750636454672,-6.497242706827819,-6.785522331949323,-5.963264066260308,-5.2079382869414985,-5.3677339013665915,-5.30962845729664,-5.938487490173429,-5.4860662133432925,-5.647770331706852,-4.829984742216766,-4.943636786658317,-5.4812524216249585,-6.278348871041089,-5.873820744454861,-5.624883032403886,-4.963328044395894,-4.708328706212342,-5.014698276296258,-4.907585993874818,-5.513662243261933,-5.270640566013753,-4.678584210108966,-5.1696283435449,-4.352474979590625,-3.7279796451330185,-2.9546781377866864,-2.016377608291805,-2.9137382404878736,-3.6703712390735745,-3.758453863207251,-4.55889243260026,-3.6676175612956285,-3.849892731755972,-3.09809644613415,-3.5660850973799825,-3.071702400688082,-3.649873503949493,-2.829196891281754,-3.026246874127537,-3.61344479303807,-2.974593467079103,-3.6993710077367723,-2.9406254906207323,-3.1204074868001044,-2.1642076070420444,-2.6716735493391752,-2.5953478990122676,-3.365161976777017,-2.91753412457183,-3.7524114311672747,-3.525247413199395,-3.6844211923889816,-4.365996089298278,-5.334869491867721,-6.234629745129496,-5.754303984809667,-6.476671003270894,-5.966807273216546,-6.415186760947108,-6.078221023082733,-6.509752029553056,-7.039887353312224,-7.94142982037738,-8.78802325297147,-8.388052348047495,-9.209925208240747,-9.286324832588434,-9.289463248103857,-9.437893887516111,-9.150590983219445,-8.385618385858834,-9.345922368112952,-8.902288966812193,-8.021315667778254,-7.398776847869158,-7.203146931249648,-6.785481551662087,-7.5733392452821136,-6.691978823859245,-5.998479632660747,-5.158174365758896,-5.653218203689903,-4.960562099702656,-5.803595774341375,-6.419362272135913,-5.85549653461203,-6.685781861655414,-6.0485165300779045,-7.044742841273546,-6.6757908263243735,-6.449676288757473,-6.428907098248601,-5.9744042521342635,-5.605390777811408,-5.018729726783931,-5.2759335353039205,-4.691672580782324,-4.352378982119262,-5.148579808417708,-5.567432196810842,-6.05880194157362,-5.95481461007148,-5.350204353220761,-4.956740104127675,-5.9083293550647795,-6.639791299588978,-6.161335250362754,-5.471111703664064,-4.7401980073191226,-4.993139393161982,-4.631432777270675,-4.242448353674263,-4.910636420361698,-5.230171347502619,-6.038260288536549,-6.034030217677355,-5.539576008915901,-6.348229025024921,-7.128238942939788,-7.40121799800545,-7.436699992511421,-7.286728889681399,-7.4553681393153965,-6.586215492803603,-6.763818831648678,-7.298650453798473,-6.363284754566848,-6.2862698077224195,-6.679869709070772,-7.38825406273827,-7.622814937029034,-6.644048923160881,-6.639002538751811,-6.824120205361396,-5.994353684596717,-6.900220252107829,-6.275419870857149,-6.345844439230859,-6.975525215733796,-5.980218447744846,-6.746841546613723,-6.730582045391202,-5.904913065955043,-5.8505995948798954,-4.95997530175373,-4.4611633736640215,-4.321097578853369,-3.9602537737227976,-4.165983287151903,-3.3516812338493764,-3.0324503337033093,-3.865590568166226,-3.832386582624167,-4.006954464130104,-4.738956811837852,-5.1361916568130255,-5.626287965103984,-6.331409158185124,-7.051736997440457,-6.539617717266083,-7.1482184012420475,-7.4848139667883515,-8.132015397772193,-7.255724758841097,-7.338439164683223,-8.141226790379733,-7.7101168925873935,-7.52819334063679,-7.820314787328243,-7.14482362754643,-7.144109417218715,-7.895099333487451,-8.596084735821933,-9.092938559595495,-9.087631728965789,-8.589407434221357,-9.56410953681916,-10.165680594276637,-10.757789209019393,-10.332040661945939,-10.16691945772618,-10.65197874745354,-11.194580412004143,-10.402045486494899,-9.763815593440086,-9.944058191031218,-9.39701272873208,-9.910944435745478,-9.10903725354001,-8.883909106720239,-9.102745695970953,-8.916779608931392,-8.288131199311465,-7.950246314052492,-7.599171799141914,-8.108478798530996,-8.023038286715746,-7.551188625860959,-7.985420968849212,-8.979146917816252,-9.429234081413597,-9.8930559810251,-10.292068576440215,-10.259099395480007,-10.746309085283428,-11.218505752272904,-10.494857297744602,-9.734842146746814,-9.27181895216927,-8.904313274193555,-8.62114614713937,-9.501173068303615,-8.849890463519841,-7.976089578587562,-7.281575753353536,-7.084347050637007,-7.137326704338193,-7.736207494046539,-7.008034746162593,-7.074549111537635,-6.234738843515515,-5.346599860582501,-6.32083252677694,-6.080940849613398,-5.142123883590102,-5.9887599758803844,-5.752169798128307,-5.828720356803387,-6.603947638068348,-6.040256846696138,-5.664292562752962,-4.768608782440424,-4.966182428877801,-5.246676370035857,-5.739733232185245,-5.018514043651521,-5.375544421840459,-5.498391082510352,-5.681593149900436,-6.041737481486052,-7.001777455676347,-7.647683986462653,-8.16952076740563,-7.906635069288313,-7.152229476254433,-6.167022978421301,-6.239085779991001,-7.000252658501267,-6.117903509642929,-5.130900034215301,-5.158536902163178,-5.670928747858852,-5.778027121908963,-5.370106952264905,-4.832499182783067,-4.5222389083355665,-5.2536289668641984,-6.129916412755847,-7.099594606552273,-7.1209049760364,-6.648158106021583,-5.811921458225697,-6.529287779703736,-7.060938240494579,-7.7764400956220925,-6.962543226778507,-6.809525188058615,-6.96402463177219,-6.632145922631025,-6.947979167569429,-7.4526215847581625,-6.83743641525507,-6.4076691856607795,-6.619032337330282,-6.7134677092544734,-7.193050939589739,-6.503618069924414,-5.6740593099966645,-5.128220004960895,-5.463383201044053,-5.170535316690803,-5.804898016620427,-5.583458882756531,-6.0604970757849514,-6.203133309725672,-6.583051624707878,-6.489181598182768,-7.067985199391842,-7.149588705506176,-7.698985497932881,-7.480797635391355,-7.420896503608674,-7.06642112089321,-6.313253446016461,-6.5217773974873126,-6.675332961603999,-5.960371028631926,-6.338982171844691,-7.115278223995119,-7.388127231970429,-7.630150124896318,-7.814361458644271,-8.047103508375585,-8.083192031364888,-7.867282235994935,-7.955922236666083,-8.841736161150038,-8.783295140136033,-9.76289541926235,-9.677032102365047,-9.54062580736354,-8.820970572996885,-8.54516983544454,-9.544149687048048,-9.847238374873996,-10.372514590155333,-10.299484587274492,-9.930450939573348,-10.535058628767729,-10.399189836811274,-9.623132731765509,-8.815290053840727,-9.62363471928984,-8.830216770991683,-8.356304838787764,-9.198821476195008,-8.718772813212126,-9.124410126823932,-8.80922425026074,-9.385912165045738,-9.870943026151508,-9.607893441338092,-9.740015286486596,-9.937216805294156,-9.769916825462133,-9.39905116148293,-8.622034565545619,-8.65473435819149,-8.127182207070291,-7.31393122067675,-7.341197750531137,-8.184769205283374,-8.463008808437735,-8.543663824908435,-7.84728574519977,-8.807126134168357,-9.346912789158523,-8.55571399955079,-7.593253551516682,-7.150393015705049,-6.415083481930196,-7.071831412613392,-7.854954024776816,-8.563157999422401,-9.407468897290528,-9.292834677733481,-9.414127123076469,-8.552866222336888,-9.490341161377728,-9.186007264070213,-9.429776397068053,-9.994478452019393,-9.735332509502769,-10.676257126498967,-10.716527616605163,-10.089675425551832,-9.942885283846408,-10.233191127423197,-9.678987368475646,-10.072332171257585,-10.524697702843696,-10.049394006375223,-9.230944246519357,-9.294887892436236,-9.353236630093306,-9.52035646000877,-10.398515474051237,-11.232869456056505,-11.310742880217731,-11.275225372053683,-11.739836674649268,-12.64827246684581,-11.973352362867445,-11.767673855647445,-10.819578712340444,-10.192868370562792,-9.559296912979335,-9.705627921968699,-10.277007930912077,-10.737209020648152,-10.862958046142012,-11.549090766813606,-10.72838032618165,-11.294654226396233,-11.824861533008516,-11.30184389743954,-11.45771662145853,-12.364208771847188,-12.107254776638001,-11.522433208767325,-12.07220637332648,-12.632859408855438,-13.176322575192899,-12.717238395940512,-13.654331924859434,-13.19152254005894,-13.677093877922744,-12.835203621070832,-12.07916503213346,-11.857177468948066,-10.861225144471973,-11.231754202861339,-12.168877331539989,-11.7404073481448,-11.777156515046954,-12.425334005150944,-12.944834565278143,-11.953244077973068,-11.596982990857214,-12.596093316096812,-11.948925334494561,-11.420280801597983,-11.00770760467276,-10.345461019314826,-11.057076219469309,-11.009853718802333,-10.320563124027103,-9.964217788539827,-10.628253638744354,-10.611920484341681,-9.77478666510433,-10.756461842916906,-11.585893297567964,-12.26961113838479,-12.769292568787932,-13.234166934620589,-12.328506757039577,-11.590305685531348,-11.144917404744774,-10.701537930872291,-10.168034533504397,-10.00068533141166,-9.096541481558233,-8.440538701601326,-9.436861544381827,-10.1706064324826,-9.396569442003965,-9.115721424575895,-9.438902256079018,-9.304636019747704,-8.76087263552472,-9.75358416652307,-10.132139638997614,-9.80968404514715,-10.300517943222076,-10.610577230807394,-11.504347749520093,-10.63079026248306,-11.347388938069344,-11.795511937700212,-12.024041198659688,-12.550400764215738,-12.060687866527587,-12.535733934491873,-11.945863416418433,-12.632415773812681,-12.856021771673113,-12.584865003358573,-11.665056738071144,-12.317476559896022,-11.59251534147188,-10.629301795735955,-10.427281784825027,-10.702965903095901,-10.48738755658269,-10.128962812945247,-9.338614928536117,-8.606124411802739,-9.359911743085831,-9.11205161223188,-9.71418915502727,-9.87755866535008,-9.135527174454182,-9.167763465084136,-9.875713858287781,-8.988660712726414,-9.235483711585402,-8.714933259412646,-9.0262287594378,-9.518740226980299,-8.893888098187745,-9.075813170988113,-10.067043240647763,-9.181930028367788,-9.93263909779489,-10.102260692045093,-10.944877083878964,-11.522341806441545,-11.25242030667141,-10.334004302509129,-10.354147320613265,-9.60953211504966,-8.937207454815507,-9.650944662746042,-10.442810873966664,-10.848373800516129,-11.32691679475829,-10.557437739800662,-9.77285734564066,-9.50210034660995,-8.51846957206726,-8.966650545131415,-9.354262327309698,-8.580212428234518,-7.648522495757788,-6.870949023403227,-6.578997736796737,-6.26905939495191,-5.839041735976934,-5.684379007201642,-6.620346012990922,-6.435240446124226,-6.571244295220822,-7.099848655518144,-6.279679572209716,-5.7232760284096,-5.718605152331293,-6.0284944786690176,-5.685506375972182,-5.000386410858482,-4.444576308596879,-3.4811762901954353,-3.3407259611412883,-3.580430631991476,-4.561737710610032,-4.090992546174675,-4.836917594075203,-5.087937023025006,-5.48457386251539,-6.15278489748016,-6.038118244148791,-6.158107965718955,-6.708666391670704,-6.550278520211577,-6.551267272792757,-7.396581392735243,-6.91022881725803,-7.223594202194363,-7.894278595224023,-8.135264919139445,-7.489926102571189,-8.280779778026044,-9.088873853441328,-8.25662714149803,-7.752789523918182,-7.884485984686762,-8.191873759962618,-7.236308020539582,-7.125186087097973,-7.053774155210704,-6.888693949673325,-6.31973116658628,-5.6021262956783175,-6.496143807191402,-5.499154255259782,-6.09955916274339,-5.1608522846363485,-4.85977317718789,-5.112649964168668,-5.537026947829872,-5.961486843880266,-6.292377978097647,-6.6828196556307375,-7.581794335041195,-8.186338645871729,-9.108561120461673,-8.573886396829039,-9.190091410651803,-8.406045535113662,-7.677404022309929,-7.1866836422123015,-7.293693799059838,-7.538280100096017,-7.420797172002494,-6.622846490703523,-6.7952300906181335,-7.418369427323341,-8.310496554709971,-8.906441296450794,-9.731155049055815,-9.64763409877196,-9.091977983247489,-8.156156561803073,-7.605736129451543,-6.962896168697625,-6.075473355129361,-6.087356955278665,-5.324102232698351,-4.950070410966873,-5.463697048369795,-6.374199407640845,-6.654005458578467,-5.887438393663615,-6.116879062261432,-7.105286619625986,-6.366435409989208,-5.468610203824937,-6.365895821712911,-7.259968696627766,-6.318596027325839,-6.13171525998041,-5.679863842204213,-5.752076223492622,-6.104939623270184,-5.382063486147672,-4.757008238695562,-5.3632666654884815,-5.370531648863107,-5.63457112479955,-5.410513578448445,-5.341328360140324,-6.200579297263175,-5.671661733649671,-5.78281774930656,-5.136499431915581,-4.419594038743526,-4.213509249035269,-3.2628685724921525,-3.875346153974533,-4.145951325073838,-4.897177999373525,-5.7742506680078804,-6.15766187896952,-6.405401728115976,-6.027270425576717,-6.110339871607721,-6.907503364607692,-7.010242688469589,-7.4445330603048205,-6.97604268649593,-6.511610762681812,-6.506190245039761,-7.455799976363778,-7.1412474336102605,-6.841391648631543,-6.413929309230298,-5.4696998172439635,-5.4015155313536525,-5.503956188913435,-4.88200590852648,-5.232064000330865,-4.380155400373042,-5.113974856212735,-4.533873813226819,-5.168872631154954,-5.93637678027153,-5.363896058406681,-6.198449409101158,-5.4333877130411565,-5.449074305593967,-4.905639544595033,-5.3605104447342455,-4.688078306615353,-5.607832636218518,-6.432986310683191,-5.446572743356228,-6.208295363467187,-7.033048892393708,-6.604470654856414,-6.6889072032645345,-5.756730487570167,-6.517512108199298,-7.352888545487076,-6.6566675854846835,-6.959228676743805,-7.80133644444868,-7.35064013954252,-6.63290648534894,-7.4593974514864385,-8.312994053121656,-9.277777070179582,-9.163805876858532,-8.543159648310393,-8.034315379802138,-7.975668526254594,-7.5716062053106725,-8.389087083283812,-8.924655785784125,-8.7377630029805,-9.494446281343699,-8.55462859198451,-8.833527503535151,-8.077480841428041,-7.77546007046476,-7.0443431017920375,-7.631336631719023,-7.1585474582389,-7.316996033769101,-8.247993120923638,-7.346732883248478,-7.719518775586039,-7.367932587862015,-6.865910669323057,-6.3810939863324165,-5.5970758576877415,-6.295013374648988,-6.856364444829524,-7.408994322177023,-7.86885295715183,-7.014454498887062,-7.3963550087064505,-6.872649501543492,-6.9493137006647885,-7.392148999497294,-7.235883263871074,-6.410142617300153,-5.860837907530367,-5.7748459950089455,-6.206599564757198,-6.895126294344664,-6.436691676266491,-6.022997958119959,-6.939958878792822,-6.064570983406156,-5.123939498793334,-4.397837541531771,-3.683843430597335,-3.371733737178147,-3.4175751134753227,-3.0893509867601097,-2.312501534819603,-2.171089191455394,-2.704624816775322,-3.192487475927919,-2.7903967974707484,-2.371917756740004,-2.7448185603134334,-1.9808880635537207,-2.0524213071912527,-1.896152501925826,-1.0335302860476077,-1.2541820872575045,-0.812642389908433,-1.1363858478143811,-1.49495088448748,-1.8538988698273897,-0.9644308593124151,-1.4549330514855683,-1.9478087383322418,-2.3304127450101078,-2.7551983748562634,-3.629435280803591,-3.928745393641293,-4.702126824762672,-5.490932293236256,-4.567324484232813,-4.106585674453527,-3.995332361664623,-4.173718001693487,-4.335775649175048,-3.569935040548444,-4.414557045791298,-3.498742582742125,-2.8977956427261233,-3.778487965464592,-4.776804599445313,-4.657737842295319,-4.069526206236333,-3.901912141125649,-4.696600480936468,-5.055661381687969,-5.452436768449843,-4.522846147883683,-4.93561724293977,-4.0949780736118555,-3.978244536090642,-4.254545409232378,-4.873226115014404,-4.224067882634699,-3.3618795881047845,-2.9991572480648756,-2.9198707956820726,-2.949272456113249,-3.563217533752322,-3.3626151173375547,-2.799043796956539,-3.683334411121905,-3.6927077411673963,-2.9026087946258485,-3.7672868366353214,-4.60531235486269,-5.421608019154519,-4.518360341433436,-3.683867400046438,-3.015058516524732,-2.5946519351564348,-2.743741465266794,-1.873069983907044,-1.4493011911399662,-0.5302005894482136,-0.7649267264641821,-1.0138963954523206,-0.6004069433547556,-1.4869858962483704,-2.3645830056630075,-1.6562798344530165,-2.4402669491246343,-2.512427693232894,-3.278381898533553,-4.008909286465496,-3.069156268145889,-2.5887177824042737,-3.2050965828821063,-2.902135141659528,-2.5137927434407175,-1.9036993687041104,-2.125519703142345,-2.6958806039765477,-3.2074347245506942,-2.968200506642461,-2.416126453317702,-2.8873640429228544,-2.7838599337264895,-3.513454985804856,-3.3501054598018527,-3.3271386371925473,-3.2968669063411653,-3.209820897318423,-2.402238101698458,-1.7943499516695738,-1.663757813628763,-2.332152673508972,-2.376954128500074,-2.8091030698269606,-3.3946163188666105,-2.730884735006839,-3.4692058521322906,-4.1213010479696095,-5.007461469154805,-5.910852960776538,-5.82035416085273,-6.408129411749542,-5.4304171721450984,-6.298605306074023,-6.922897027339786,-6.9808815638534725,-6.354470641352236,-6.528368589002639,-6.021855132188648,-6.637929611839354,-5.902612737379968,-5.574017611332238,-6.329028158914298,-6.005084436852485,-6.9476053807884455,-6.421070515643805,-7.075389707926661,-6.590986520051956,-6.807748614344746,-6.5683815511874855,-6.461774586234242,-6.315106754656881,-6.99825995741412,-6.3975675562396646,-6.3952616462484,-5.99936696793884,-5.324542165733874,-5.262457664590329,-5.384176664520055,-6.144897283054888,-6.865862169768661,-7.614020881708711,-8.25701758870855,-9.016449254471809,-9.88553685694933,-10.585859221406281,-11.33673169510439,-11.899183890316635,-11.278024982661009,-12.065531524363905,-11.147773931268603,-11.739328037947416,-11.895963691174984,-12.113705234602094,-12.426837682258338,-11.698681900743395,-12.277359055820853,-13.173403889406472,-13.131594229489565,-14.029260192997754,-13.030930700246245,-12.937112860847265,-12.953590753022581,-12.722732092719525,-12.923468733672053,-12.30246044928208,-12.832364557310939,-13.243658461142331,-13.38816212117672,-13.452287928201258,-13.441166267264634,-14.393193094059825,-13.95875322446227,-13.55844424944371,-13.491881956346333,-14.413813236635178,-15.197400978766382,-15.441049499437213,-14.791826653294265,-14.29616431472823,-14.226914260536432,-14.335683651734143,-14.378550720401108,-14.267332702875137,-15.009204581845552,-14.18302195891738,-14.742602207697928,-15.003020947333425,-15.776605146471411,-15.487560451962054,-16.21258778963238,-16.498009791132063,-15.576063230633736,-16.119280012790114,-16.505411378107965,-16.43447481514886,-16.894956530537456,-17.47174318647012,-18.412086541298777,-18.84245316358283,-18.873695392161608,-19.28443006053567,-20.164138168562204,-19.883918250910938,-19.26726258220151,-19.132392696104944,-19.404714134521782,-18.66391760390252,-19.2374440706335,-18.61388794798404,-17.74739904794842,-17.03747176611796,-17.107948599848896,-16.880691081751138,-17.833884083665907,-18.3492560419254,-17.70161702297628,-16.749059149995446,-17.026259641628712,-17.984537300653756,-17.09672759566456,-16.873674643225968,-16.603179927915335,-16.17376970453188,-16.50189985986799,-16.80945383850485,-16.826834013219923,-16.35929221706465,-15.58496869634837,-16.021108985878527,-16.098702982068062,-16.572459830436856,-17.17721903976053,-17.4010567702353,-16.855204025749117,-17.412470183800906,-17.35260236589238,-17.770004475023597,-18.05219056364149,-18.695046512410045,-17.749431723263115,-17.857038668356836,-16.990513005759567,-16.923155901022255,-16.874399659223855,-16.708587425295264,-16.83468939876184,-16.103345330338925,-15.220596944913268,-16.043341948650777,-15.400418981909752,-15.082938310690224,-14.916741965338588,-14.284869295079261,-14.89084477769211,-13.89311454538256,-12.904132236726582,-12.661063692066818,-12.25905854254961,-12.392226962838322,-11.489843476563692,-10.809733032714576,-10.164548268541694,-9.511738900095224,-9.819378087762743,-10.653063332661986,-11.367199519183487,-11.321709903888404,-12.318664139602333,-11.38881525490433,-10.65882884291932,-9.983118454925716,-10.414704495575279,-11.286640502046794,-11.466400682926178,-11.321981077548116,-12.16677811741829,-12.141663318034261,-12.221423613838851,-11.289149841759354,-11.883839841000736,-11.155007862951607,-10.811634921468794,-10.297582995146513,-11.00747751770541,-11.821149477735162,-11.637381522916257,-12.226366647519171,-12.06868210947141,-11.692433387041092,-12.247979952022433,-11.804175165016204,-11.395510011352599,-11.816652836743742,-12.282560337334871,-11.403879357501864,-12.283233691938221,-12.068603138905019,-11.39206768060103,-12.074844719842076,-12.889000174123794,-13.159619238227606,-12.557094939984381,-13.521950820926577,-13.619980165734887,-13.325923712924123,-13.121204632800072,-13.235898636747152,-12.752897206693888,-12.8376827808097,-12.02068576682359,-12.61531390203163,-12.877473903819919,-13.017191905528307,-14.00568424910307,-14.263008651789278,-15.094956594519317,-15.866708944551647,-15.857126988936216,-16.338643352966756,-16.261956655420363,-16.305941838771105,-15.442049147561193,-15.191397223621607,-14.293908901512623,-13.817345016170293,-12.966562809422612,-12.206398686859757,-13.000199546571821,-13.127767017111182,-13.268215611577034,-13.672867455519736,-13.507739127613604,-13.432706684805453,-14.002004947513342,-13.351265913806856,-12.948257240466774,-13.636978742200881,-13.780762733891606,-12.920262695290148,-13.013049290515482,-13.178378936834633,-13.906451831571758,-14.007303731516004,-13.632596340030432,-13.094584576319903,-14.044130802154541,-14.136468006297946,-13.75173211703077,-12.798307738266885,-12.001352172810584,-11.214899750892073,-11.302621493581682,-11.957344894297421,-12.067965681664646,-11.244064992759377,-11.760259883943945,-11.791363884229213,-11.704558776691556,-12.338016580790281,-11.355157237034291,-11.268882328178734,-10.636587804183364,-9.709661197848618,-10.38905143365264,-9.676116814371198,-10.59652666375041,-10.67337706265971,-11.560814301948994,-12.151888243854046,-11.483520914334804,-11.735788833349943,-11.683362897485495,-12.050065227784216,-12.650894496589899,-13.615429786033928,-12.780671143438667,-12.831112100742757,-13.431965876370668,-12.876740025356412,-12.282892117276788,-11.402226503938437,-11.448806336615235,-11.883120840415359,-12.234531891997904,-11.940645567607135,-11.142665748018771,-10.841443536337465,-10.9941306556575,-10.767626033630222,-10.402848605066538,-11.197371327318251,-11.883972541894764,-12.825154598802328,-13.250757480971515,-12.835024558007717,-12.358280310872942,-12.74816341791302,-12.4032255965285,-12.881527935154736,-13.021661456674337,-12.33558926731348,-13.329552337061614,-13.207849960774183,-14.086166490335017,-13.245041215326637,-12.370425566099584,-12.434536396060139,-12.638195543549955,-13.630118325352669,-14.504984114784747,-13.51617752853781,-12.777068642433733,-13.445812464226037,-14.385133661795408,-13.538057926110923,-12.839695509988815,-12.93370723631233,-13.138793418183923,-13.477284544147551,-13.874586111400276,-13.648711882997304,-13.353724155575037,-13.09526768233627,-12.55221746256575,-12.767566203139722,-13.523353145923465,-14.372002196498215,-14.816450357437134,-15.448099942877889,-15.92648645117879,-16.516450247727334,-15.890195218846202,-15.526265996042639,-15.984378676861525,-15.391751538962126,-15.22543680248782,-15.890846217982471,-16.65442405315116,-16.163518120534718,-16.5083658718504,-15.958347571082413,-16.798188359942287,-16.146711244713515,-16.66374717094004,-16.960889416281134,-16.335273714270443,-15.885741607286036,-15.859382732771337,-16.19980074837804,-16.91337860142812,-17.00303048407659,-16.260620101355016,-17.24028531741351,-16.402116298675537,-16.30277831060812,-16.77057380275801,-16.49755137739703,-15.608377288095653,-16.527952081523836,-16.809730553533882,-17.646333761978894,-17.585334604606032,-18.19503453793004,-19.139138678554446,-18.257593103684485,-19.037455952726305,-19.09393203817308,-18.396139927208424,-19.09138770075515,-18.353507584892213,-18.962308520451188,-19.42514573596418,-19.783568000420928,-20.623330622445792,-19.632472097873688,-20.47851720964536,-21.286908364854753,-21.559646437410265,-21.521034475415945,-20.947791108395904,-20.377485625445843,-20.413856487721205,-20.647166167385876,-20.39109938358888,-19.756182979326695,-19.80358872935176,-19.518908629193902,-19.520757630467415,-19.79066667240113,-20.548976002726704,-20.37937348941341,-21.044890319462866,-21.068242769688368,-20.159972820430994,-19.523549976292998,-18.64699657028541,-19.24693831661716,-19.087366292718798,-19.6313391122967,-18.939392197411507,-19.761097252368927,-19.462860657367855,-19.296865010634065,-19.010596949607134,-18.27412905311212,-18.073458041995764,-17.180792967788875,-18.15317645808682,-18.487673304975033,-18.96845005545765,-19.33803614322096,-19.978619679342955,-19.135886997450143,-19.031779092736542,-19.568041501566768,-18.639149901922792,-18.200910217128694,-18.954307349398732,-19.333775100298226,-19.951643322128803,-20.436203538440168,-19.44153820676729,-19.280780332162976,-19.968429083470255,-20.88374970201403,-20.633771591819823,-20.634442463051528,-20.600822889711708,-20.729632173199207,-21.291133145801723,-21.061568463686854,-21.459758282639086,-21.207358823623508,-20.336360395886004,-21.009265340398997,-20.2719474285841,-19.434730507433414,-18.863409269135445,-17.938714460935444,-17.09665452502668,-17.506892645265907,-17.58536833198741,-18.209145467728376,-19.11284779710695,-19.167050635442138,-19.15066321287304,-20.146280177868903,-21.03562401328236,-21.27617562515661,-21.398208437487483,-20.455341863445938,-20.39448809577152,-20.184419439639896,-19.24165816931054,-18.611990430392325,-18.64040457131341,-18.16327148117125,-17.38365193642676,-18.098621260374784,-17.633623550180346,-18.226589287631214,-18.730270804371685,-19.575725696980953,-20.270047168713063,-21.028780803084373,-20.39146703388542,-20.106860311701894,-20.374500525649637,-19.437040984630585,-19.111951279919595,-18.35022732289508,-19.068804380483925,-19.640024698805064,-20.012561885174364,-20.138473650440574,-19.168436502106488,-18.877297991421074,-19.86082215094939,-20.258940331172198,-20.669833009131253,-20.008286241907626,-19.681435177568346,-19.99509429372847,-20.855496127158403,-20.32184086414054,-20.73849237943068,-20.40967483492568,-20.35607384238392,-19.917852475307882,-20.062555943615735,-19.829034394584596,-19.97439515357837,-20.89116887655109,-20.930428239051253,-20.88153210375458,-19.984519236255437,-19.779707624576986,-20.28239812143147,-20.144506950862706,-20.144099509809166,-20.014128286857158,-20.63042769348249,-20.169606977608055,-20.709968806244433,-21.16037542792037,-21.388541786000133,-21.291348153259605,-22.224151552654803,-22.587889994494617,-23.405819453299046,-22.843892770353705,-23.41470462922007,-22.996832727920264,-23.252367422450334,-23.214791576378047,-22.88066633651033,-23.15182068850845,-23.38657819153741,-23.74098268058151,-24.604066937230527,-23.993597545661032,-23.273422530852258,-24.172026379965246,-23.395890417974442,-22.66998988762498,-23.377450252417475,-23.592801448423415,-23.230966097209603,-22.233010600786656,-22.50197978876531,-22.87036168668419,-22.41961392154917,-22.742777738254517,-23.521153326146305,-23.56920216465369,-23.50185272283852,-23.69412078661844,-24.64594926405698,-24.316189480945468,-23.32324662199244,-23.876176992896944,-23.30641819164157,-23.133748929947615,-22.234490926843137,-22.416434664744884,-23.13491735747084,-23.54875952191651,-22.583382721990347,-22.91333647398278,-23.06119255675003,-22.331862452905625,-22.401761658024043,-21.65413133520633,-22.351766952779144,-21.5813184985891,-20.71697004046291,-20.22384713217616,-21.00322687253356,-21.8496903590858,-20.870334399398416,-21.82208912819624,-21.733184701763093,-22.15444685611874,-21.616971771232784,-21.814693309832364,-21.5652219587937,-21.219475529156625,-21.000723695382476,-20.86782334698364,-20.520987320691347,-20.669907180126756,-21.511227859184146,-22.460646324791014,-22.5749109685421,-23.08253911556676,-22.268951766192913,-21.839636601507664,-22.81289972597733,-23.22141338000074,-22.349760930985212,-21.6444153948687,-20.859101441688836,-21.10726963309571,-20.56853566551581,-19.905394781846553,-20.40831442316994,-21.31990390177816,-20.663625905290246,-20.250893536023796,-20.41047587338835,-20.678519250825047,-20.95225022500381,-20.809287793003023,-21.438068077899516,-20.67818312998861,-21.477032775059342,-21.761133638210595,-21.62575330771506,-20.81248396448791,-21.073556854389608,-20.290472196415067,-20.850086304359138,-21.553746841847897,-21.406910170800984,-20.796679401770234,-20.67096848646179,-20.2037883955054,-20.818253479897976,-21.409040527883917,-21.268561884760857,-21.97699520085007,-22.937664720229805,-23.75328142615035,-23.834128624759614,-24.18970554182306,-25.050762293860316,-25.389258584473282,-26.0618478753604,-26.89007801329717,-26.79035175824538,-27.071170339360833,-26.576559172477573,-26.45635797455907,-25.64528532512486,-25.456754446029663,-25.927674870938063,-25.40383673273027,-25.061727151740342,-25.82710322411731,-26.338986677117646,-25.845541272312403,-26.766128291375935,-26.7325256774202,-26.29876199364662,-27.142512934748083,-26.974820117931813,-27.869184598326683,-28.19525019871071,-28.16665444150567,-27.9813660280779,-27.2969421595335,-26.72884611831978,-26.466706096660346,-27.287918562535197,-27.175618507433683,-27.975484966300428,-27.12810015818104,-26.178376604337245,-25.830208242870867,-25.331583867780864,-26.17874961765483,-26.316924368496984,-25.413556885905564,-25.576320270542055,-25.811612654011697,-26.339464583434165,-25.577559128403664,-26.274385147262365,-26.529394903685898,-25.571497277822345,-25.507175326813012,-26.309628416784108,-25.395437685307115,-25.025510800536722,-25.883946529123932,-26.589636696968228,-27.299523848108947,-27.073244004044682,-26.331116429530084,-27.055678360164165,-26.485159181058407,-26.637749240268022,-25.95562293753028,-25.803350107744336,-26.37907115276903,-25.41680556209758,-24.474891623016447,-25.043056921102107,-24.56279838271439,-24.48889284627512,-24.829286132007837,-24.168048098683357,-24.771277480758727,-24.552624059375376,-24.546483629848808,-25.307216497138143,-25.081040844786912,-26.078271506819874,-26.113121618982404,-26.854624154046178,-27.41840397939086,-26.459998406469822,-26.446996436454356,-26.591017009690404,-27.513948800507933,-26.931308065075427,-26.295630478300154,-25.36481759045273,-25.841078836470842,-26.273573368322104,-25.589394682087004,-26.257968738675117,-25.282288221642375,-25.315436301287264,-24.692810048814863,-25.356824435293674,-24.445713539607823,-24.80765731818974,-25.43180498573929,-24.65415063407272,-24.500433557201177,-25.461135719437152,-25.97608518972993,-26.19040795881301,-26.66317598661408,-25.956160122994334,-25.800032753497362,-25.0688657136634,-25.552743006963283,-26.399239826016128,-25.996255069971085,-26.093937295023352,-25.585374272428453,-24.910380796995014,-25.784784802701324,-25.95718132983893,-26.136494900099933,-25.90229929657653,-26.781884585972875,-27.565678836777806,-27.285571994725615,-26.420839143916965,-26.61750282300636,-26.83425359800458,-27.0636033276096,-27.31796868145466,-27.391814331524074,-27.85916978865862,-27.066164834890515,-27.385525365825742,-28.366842231247574,-28.291783598717302,-28.24433779437095,-27.466641060542315,-28.20390792377293,-29.080946943257004,-29.503563107457012,-29.496008701622486,-29.889122834894806,-29.880354105494916,-29.146114824339747,-28.449449999723583,-29.4323568562977,-29.99784970516339,-30.38050260208547,-30.499685599002987,-30.23013938125223,-29.2636824878864,-29.474473455455154,-28.657884354237467,-29.288887625560164,-28.347593942191452,-28.228696489240974,-28.57828854257241,-28.81896061031148,-29.3782268576324,-30.314135239459574,-31.23580914689228,-31.78296080045402,-32.375462990254164,-33.31706631090492,-32.65508839394897,-32.326527615543455,-31.890794403851032,-30.957999143283814,-30.269430322106928,-30.41627396736294,-29.73261671466753,-28.828961589373648,-28.00285418331623,-27.392673671711236,-27.96268148580566,-28.002977394964546,-27.311622818000615,-27.437074485234916,-27.751424569636583,-26.97092023352161,-26.91359954047948,-27.853383485227823,-28.20082340342924,-28.591729999519885,-27.622590414714068,-27.05339929414913,-26.721258491277695,-27.340444239787757,-28.325449953321368,-29.156406863126904,-28.593010776676238,-28.632371915969998,-28.123853942845017,-27.87236309563741,-28.7582266330719,-29.601295531261712,-29.296400907449424,-29.702707742340863,-29.763041347730905,-30.20256041456014,-30.593276333995163,-29.597243937663734,-30.526518094353378,-29.59448824636638,-28.718937845900655,-28.80196667695418,-28.838870476465672,-29.540257814805955,-30.473915498238057,-30.88161377608776,-31.861049046739936,-30.878141671419144,-30.881088742055,-30.813120550941676,-31.63716798881069,-31.123004713561386,-31.424766461830586,-31.596975927706808,-31.027390745468438,-31.18743957206607,-31.34736553300172,-31.720033241435885,-31.241537868976593,-30.613333392888308,-31.044687849469483,-30.712719711475074,-31.15125065855682,-31.841727305669338,-31.07770555280149,-30.784712404944003,-30.752213194034994,-31.6399538340047,-31.742601425852627,-31.227616185788065,-30.9530479144305,-30.67219647485763,-30.76695156469941,-31.273445075377822,-31.006438673473895,-31.439735524356365,-31.33380590006709,-31.2278460576199,-30.398535702377558,-31.261696444358677,-31.799063390120864,-32.4674431765452,-32.64661997416988,-32.39604924246669,-31.84235463477671,-31.973071793094277,-31.562996136955917,-30.85714406752959,-31.43645756551996,-30.855200953781605,-30.338115498423576,-30.488898277748376,-30.20619243849069,-30.4504722119309,-30.75261661829427,-30.60495635215193,-30.820142181124538,-30.922726212069392,-31.209469528868794,-31.38877140218392,-30.99178055487573,-30.145187652669847,-29.77421468310058,-30.121566678397357,-30.630423641297966,-31.454268546774983,-30.950629914179444,-30.53281007753685,-31.37253082357347,-32.053401534911245,-31.43520508799702,-30.553140189964324,-30.89915164327249,-31.447108664084226,-32.37726715486497,-32.98421551287174,-33.42219989281148,-32.99744207132608,-32.11211491143331,-31.786402287427336,-31.78306894702837,-31.157382883131504,-30.703759013209492,-30.39959429204464,-29.444854706525803,-29.702911446336657,-30.643801057245582,-31.366908527445048,-30.922708362340927,-31.83494889223948,-31.16218166006729,-30.483460964169353,-29.707029276061803,-30.47085846448317,-30.746236285660416,-29.9785709050484,-30.42005714541301,-30.32288587698713,-29.745159142185003,-29.13921069027856,-28.373229332268238,-27.412201705388725,-27.77773240674287,-27.000814475119114,-27.96418627956882,-28.248016763012856,-28.148885981179774,-27.914147643372416,-28.02684339368716,-28.978483077604324,-28.21538947429508,-28.446040976792574,-29.046789071988314,-29.688525597564876,-29.034985805861652,-28.239044113550335,-28.520085538271815,-27.654920105356723,-27.657015637028962,-27.76381708914414,-28.579350769985467,-28.997224933002144,-29.633356648497283,-28.94298212742433,-28.605335517786443,-28.01573450770229,-28.298617400228977,-27.631007976830006,-26.819493701681495,-25.999709677882493,-25.034686733968556,-24.179768183734268,-24.22470742603764,-25.18990909215063,-24.419096702709794,-23.896419941447675,-23.90360397659242,-23.042731813155115,-23.909818886313587,-23.614479429088533,-23.165533155668527,-22.597092741634697,-23.56737548066303,-23.96106948237866,-23.12354582780972,-24.027095053344965,-24.76895349798724,-24.656410912051797,-24.58949267026037,-25.015748460311443,-24.80073233647272,-25.728037246968597,-25.43652829527855,-25.514342727139592,-26.375280048698187,-26.691775208804756,-25.91157874604687,-26.25539121311158,-25.976819488219917,-26.338454904500395,-25.55012563057244,-26.258159044198692,-25.45945477951318,-26.234307487960905,-26.710306818131357,-26.081777334678918,-26.15502919210121,-25.425862920936197,-26.165334256831557,-25.83242662390694,-25.23617923166603,-25.187378196511418,-25.97040928946808,-25.946694917976856,-25.803035320714116,-26.50250681163743,-25.562605532817543,-26.08358366182074,-25.933669158257544,-25.123171565588564,-25.627732585184276,-26.606333289761096,-27.24725205730647,-27.512574623338878,-26.543366882484406,-25.80741666117683,-26.03291920479387,-25.95298517169431,-26.898272772785276,-27.466335404664278,-26.497831339482218,-26.81895038438961,-27.36511893151328,-28.10880664223805,-28.730879796203226,-28.456527916248888,-28.376049116719514,-28.432033011689782,-27.996763525065035,-27.13874512538314,-26.660090202931315,-26.042358295526356,-26.694155612029135,-27.309753429610282,-27.666177252773196,-27.9366777963005,-28.559497255366296,-27.6535383798182,-28.135351767297834,-28.696660188026726,-29.12973973946646,-28.311386549845338,-28.217654838692397,-27.895799220073968,-27.380516806151718,-27.868326626252383,-27.12870167242363,-27.89494272088632,-28.25352128269151,-28.60504855075851,-29.191715978085995,-29.508760007098317,-29.90282905753702,-29.339411945082247,-29.80927855661139,-30.60622955299914,-31.34981600800529,-32.08057277230546,-32.71340446919203,-32.03810921916738,-31.880568036343902,-30.922339943237603,-31.30760487727821,-32.01211241539568,-32.77895664284006,-32.57235864363611,-32.18619360728189,-32.19565357733518,-32.850948608480394,-32.20163266453892,-32.83487350307405,-32.357588451355696,-33.33376762410626,-32.74969672365114,-32.00868050009012,-31.8417185023427,-32.40048063592985,-32.403775757644325,-31.408931551966816,-30.781355356331915,-31.26914840610698,-31.6567881857045,-31.262205089908093,-31.5042268759571,-30.917800691444427,-31.428767594508827,-30.787641572300345,-29.803524216637015,-28.852678646799177,-29.12678971607238,-29.17345355497673,-28.18540110439062,-27.623015290591866,-27.059391191694885,-27.404856241773814,-27.509387073572725,-27.908817818388343,-28.437452872749418,-28.16183561179787,-27.233284985646605,-27.73954180860892,-28.20327232638374,-28.955962053500116,-28.961009877268225,-28.941930806729943,-28.307822954840958,-29.170333838555962,-29.175444662570953,-29.68062721239403,-29.951171277090907,-30.4070750689134,-30.457940708380193,-30.939624722581357,-31.691836991813034,-32.317829138133675,-32.29028849164024,-31.492026902269572,-31.6801291606389,-31.66450403816998,-31.723590212874115,-30.84429362276569,-30.55366066424176,-31.204383187461644,-30.28497335780412,-30.576499505899847,-31.125647246837616,-30.525008126161993,-30.403491159901023,-29.968519588466734,-30.340643820818514,-30.655793756246567,-31.604071923531592,-31.19760879408568,-32.15286143636331,-32.46152141876519,-33.26168477162719,-33.009971984196454,-32.700251176953316,-31.77098469249904,-30.9577600476332,-31.733988758642226,-31.13686633342877,-32.093744109384716,-32.73078335355967,-33.01205049827695,-32.1016141991131,-31.186682851519436,-32.07979450142011,-32.0705085513182,-33.04678197577596,-32.182536909822375,-32.35497331339866,-31.95370092941448,-31.067706460133195,-31.212808021344244,-31.81728858500719,-32.155743037350476,-33.080452335532755,-32.585658910218626,-32.83355609001592,-33.31989155849442,-32.60403819940984,-32.48392776213586,-32.776477510109544,-32.40855082590133,-33.38895439496264,-33.13870490528643,-34.11830683099106,-34.90692949760705,-35.03446642542258,-34.38506559561938,-35.131744167301804,-36.10349028464407,-35.93755174148828,-34.98197519313544,-35.35812765266746,-34.54124433780089,-34.68818079959601,-34.626702778972685,-34.57989441603422,-35.001107573509216,-35.16114108636975,-35.67375639360398,-35.602544714231044,-36.442954695317894,-36.2402210785076,-36.690286754630506,-37.492263856343925,-37.95707389805466,-37.752266177907586,-38.28040564758703,-38.30798293137923,-37.84833835577592,-38.30615665856749,-38.48656104924157,-37.9468353218399,-38.51317905634642,-38.35790498601273,-38.03270957339555,-38.863728606142104,-39.04553259629756,-38.13137400243431,-38.69815860083327,-38.87001075502485,-39.451598294079304,-40.102429774124175,-40.250442856922746,-40.067869272083044,-40.468174634967,-40.74479761812836,-41.08181844744831,-40.84208234399557,-40.57392769353464,-40.46345260599628,-40.36944103939459,-40.54099384974688,-39.85157552920282,-39.33504858240485,-38.34931310452521,-38.39495419105515,-38.08449414931238,-37.2930060797371,-38.119376299437135,-38.16416791500524,-37.57285723555833,-36.9349874695763,-36.93589581223205,-36.336432087700814,-37.30539425089955,-38.144706193357706,-39.079228846821934,-38.96842280216515,-39.211741673760116,-38.29746982874349,-38.27781229792163,-37.63338278140873,-38.31319838762283,-39.09937983704731,-39.66257740231231,-40.397519138175994,-40.33835162688047,-39.79890462337062,-39.76040037535131,-39.71438465733081,-40.6616994603537,-40.65304562402889,-39.664415799081326,-40.16370077105239,-40.436326791998,-39.89530637906864,-39.669053772464395,-39.805943810380995,-40.334771720226854,-41.07448089681566,-41.35516156535596,-41.33445590501651,-40.453565610572696,-40.34086635056883,-39.69224009057507,-39.66312993131578,-39.61563358316198,-39.086330716498196,-39.31725477753207,-40.23996518366039,-40.74100500997156,-40.69427812099457,-40.573005543556064,-39.766631407197565,-39.21657484071329,-39.14897494483739,-38.193106580059975,-37.844714084640145,-37.82758470997214,-37.65214721020311,-38.06476371875033,-38.88814988033846,-39.507473410107195,-40.04302458977327,-39.75440464075655,-40.63953405292705,-40.26173378480598,-40.883369237184525,-40.67113887798041,-41.261019258294255,-41.04667250113562,-41.58992752246559,-42.484078641049564,-42.01414186367765,-42.24590300070122,-42.02372349333018,-42.87657212186605,-41.89894255483523,-41.48995048785582,-41.27553518349305,-40.40243754442781,-40.85974499210715,-40.481801056303084,-40.31827259901911,-39.405567832291126,-39.380456996150315,-38.90432971622795,-39.28226451203227,-39.15309932641685,-38.425184471998364,-38.172472283709794,-38.962160519789904,-38.649893888272345,-38.574252124875784,-39.15801658201963,-39.65105174668133,-39.772319146897644,-39.154587879776955,-39.67569501651451,-39.95780407683924,-40.94135044934228,-41.03703165333718,-41.53452778747305,-41.80708032846451,-41.83680714573711,-41.78211125917733,-41.721912298351526,-42.09900667518377,-42.35666646109894,-43.164337653666735,-42.65293121570721,-42.46062638889998,-42.469379847403616,-42.21838365960866,-42.6247120173648,-41.69720312068239,-41.0629104077816,-40.98139695916325,-40.16651457641274,-39.23695710906759,-39.39793322328478,-39.4251291048713,-38.861582905985415,-37.93455366184935,-37.490280190482736,-36.795559936668724,-36.09717980818823,-36.382926364894956,-36.79072013683617,-36.190161084756255,-36.54009027313441,-37.44424187252298,-38.124859515577555,-38.8767354413867,-38.163761782925576,-38.66327487304807,-38.76554806297645,-37.77819292945787,-37.294341216329485,-36.752527999226004,-36.20359682524577,-36.61762711731717,-37.01328551629558,-37.25576776172966,-36.45094486931339,-35.92520858673379,-35.18930241186172,-36.06415404379368,-36.45861805602908,-35.78510323166847,-35.74841699376702,-35.93622576026246,-36.78242947626859,-36.598080466501415,-36.600207624491304,-35.72705054655671,-36.2774709854275,-35.769345158711076,-36.57662850106135,-36.747866780497134,-36.77227975754067,-36.20481503708288,-36.714361149817705,-37.091114026494324,-36.485578204505146,-36.31808332260698,-35.42203155532479,-35.37450886145234,-35.812180345878005,-36.17690960643813,-36.676229684613645,-37.08323352690786,-38.04911257373169,-38.56083813216537,-37.879383720457554,-38.33324779197574,-39.10340409958735,-38.846342952456325,-37.85048763034865,-37.41669772658497,-38.367427663411945,-37.757131438702345,-37.476549714803696,-37.09728963626549,-37.7385937012732,-37.14486411726102,-36.45458974689245,-35.562334320507944,-36.014484979212284,-36.13700323086232,-36.757500120438635,-36.64111477229744,-36.5696803429164,-37.39469938259572,-38.36378154763952,-39.0838782931678,-38.747346580028534,-38.61994216404855,-39.21822408679873,-39.69845607597381,-40.51860574539751,-40.534224793780595,-40.31498041283339,-40.53598334081471,-40.63068459322676,-40.82233859691769,-40.66247387463227,-40.31521484302357,-39.413089610636234,-38.543434899766,-37.734906079247594,-37.281219558790326,-36.4375873086974,-37.177847776561975,-36.98553705820814,-37.43851457675919,-36.885205808561295,-37.51462023705244,-38.43972429027781,-38.01740611484274,-37.48115621134639,-36.79711927846074,-36.885610102675855,-36.023374264128506,-36.153328623622656,-35.63513336656615,-35.43707161117345,-34.87366908509284,-34.46529356809333,-35.08978887926787,-34.45892222318798,-34.768048306461424,-34.88883693469688,-34.95795469917357,-35.84621962485835,-36.402968507725745,-37.11565178539604,-36.67220024904236,-36.495956278406084,-36.18299725325778,-36.07549894275144,-35.96144111501053,-35.017920556943864,-34.996755892876536,-35.72935388656333,-35.25693866657093,-36.25188493449241,-35.64007377112284,-35.36078290594742,-36.03041670890525,-35.27428932860494,-35.075646717101336,-35.225202039349824,-35.52603264246136,-36.00936786318198,-36.11835542367771,-37.02861498715356,-37.26237596385181,-37.508157095406204,-37.40609893063083,-37.9039198202081,-38.29821113916114,-38.38653111644089,-39.19162384606898,-39.34348554071039,-38.9350562132895,-38.491659794934094,-37.943135760724545,-37.82651543850079,-37.80655698105693,-38.558983695693314,-38.65963373892009,-37.970975045114756,-37.80980250891298,-38.716615562327206,-38.60908904718235,-38.238311676774174,-37.377034433186054,-37.09635278536007,-37.306100968737155,-37.66109476890415,-38.50041675334796,-38.5798401478678,-38.8516635093838,-39.61728670494631,-40.55535560240969,-41.14863036759198,-41.220000186469406,-41.09523067018017,-40.81392968678847,-41.11783698294312,-40.398387962952256,-40.8783884071745,-41.05140248313546,-41.309569912962615,-40.94101608544588,-41.13406140496954,-40.66199992457405,-40.691618986427784,-41.30641601746902,-41.9639328927733,-42.1061525917612,-42.564658991992474,-42.92674355348572,-43.19628170132637,-43.693039077334106,-43.06828000443056,-42.65351234795526,-41.9515372980386,-41.0528469174169,-40.892459153197706,-40.95861026318744,-40.43923346884549,-39.882711465936154,-39.00067802006379,-39.28773044142872,-39.37279739277437,-38.942121705040336,-38.00768473511562,-37.27418842166662,-37.87133002281189,-38.76493068924174,-38.247323241550475,-38.758866084273905,-37.77355206431821,-37.39720735093579,-38.26531662233174,-37.267615128308535,-37.98782794596627,-38.49387462018058,-39.25043642381206,-39.59443947765976,-40.443434664048254,-39.48491488583386,-39.50433902721852,-40.36254047974944,-39.88384510483593,-39.68809375120327,-39.50416836095974,-39.924249400850385,-40.72568495199084,-41.50323920091614,-41.355373749509454,-40.44096250552684,-41.14843071717769,-40.812105687800795,-40.97233262984082,-41.12082833889872,-40.72282646270469,-40.02978617558256,-40.21408788766712,-39.38836949458346,-38.82601721212268,-38.58802558109164,-38.220535767264664,-37.986914166714996,-37.69326317962259,-37.21600515721366,-36.671219620388,-36.09540864638984,-36.91412095259875,-37.72825142880902,-37.02051931479946,-36.455662310589105,-37.305248549673706,-38.2182831899263,-37.402367492206395,-38.39263394661248,-38.8155229925178,-38.02221554284915,-37.36945109581575,-37.43155604833737,-38.29164380952716,-37.53646904043853,-38.14379847748205,-37.48169657960534,-37.38905876362696,-37.94168883562088,-37.24169042613357,-36.90029870159924,-37.34481526724994,-37.26543077360839,-37.44219908909872,-37.04127408284694,-36.802067142911255,-37.275654044467956,-36.35662314714864,-36.49717234401032,-35.79498078068718,-36.78568506613374,-35.84087061882019,-36.02537322277203,-35.87424647016451,-35.72874621441588,-36.04822841146961,-36.2764380001463,-35.389511577785015,-35.40460860496387,-34.80369390407577,-35.71268642600626,-36.03615636471659,-36.18713664403185,-35.58167626848444,-35.90391103550792,-36.23859067913145,-37.01994834141806,-37.43132966989651,-38.38944459799677,-38.51505043590441,-38.87742280866951,-38.49459060514346,-37.64593338826671,-38.371019032783806,-38.79729330400005,-39.413632304407656,-38.71369506372139,-37.975579268764704,-38.19302030000836,-38.906378923449665,-39.7068274570629,-39.833185334224254,-40.053642119746655,-40.89979692036286,-40.94619885832071,-40.016342104412615,-39.285386191215366,-39.62955866847187,-39.03214094880968,-39.134011649526656,-38.29620718117803,-38.24343204451725,-37.90891784802079,-37.41778384195641,-38.20623944001272,-38.44525460479781,-39.034182648640126,-38.75922240363434,-39.38091186154634,-40.290788013488054,-40.27958041522652,-39.62937396252528,-38.69176204781979,-39.46603447012603,-39.00154659152031,-39.40238332655281,-38.717219062615186,-38.171882352326065,-38.196454347111285,-38.063620874192566,-37.956775796134025,-38.91655428474769,-39.44523370359093,-39.133293541148305,-38.44512345874682,-38.792739561758935,-38.683769857976586,-38.495211026165634,-37.57809436554089,-37.72731668315828,-38.67202923307195,-37.96363400435075,-38.4174712379463,-38.85009243991226,-37.85751027427614,-37.534991095773876,-36.68932460946962,-37.02878182195127,-37.49649195000529,-37.84597104135901,-37.4161844975315,-37.56009333161637,-36.76758243283257,-36.50457529304549,-36.959927164483815,-37.74084484577179,-38.59312340989709,-37.810947448480874,-38.59229432744905,-37.89424215257168,-37.278434176929295,-38.12508137244731,-37.40197106171399,-38.20913275843486,-37.42307282239199,-36.72129652230069,-35.91887697717175,-35.694293837063015,-34.93916499847546,-35.39823621464893,-35.532155360560864,-34.71619041822851,-33.82954024337232,-33.033742907457054,-33.29640811542049,-33.905850931536406,-34.50746742635965,-35.08276160573587,-35.06116842944175,-34.11861036904156,-34.68571798177436,-34.61858353484422,-34.26040558377281,-33.463484233245254,-34.20460426574573,-33.88023228943348,-33.357987604569644,-34.10399449709803,-34.3078956711106,-34.38351764250547,-34.8251919853501,-34.376309268176556,-34.36755116842687,-34.406779195182025,-34.54270910518244,-35.20514170080423,-36.06565386848524,-35.64440206205472,-34.99226126866415,-34.275785939302295,-33.573516487143934,-34.41400363575667,-35.367017548531294,-34.43537983438,-33.47076022066176,-32.48674415610731,-31.691964950412512,-30.731514463201165,-30.62737251073122,-31.594878191594034,-32.473315057344735,-32.137922938447446,-31.990934214554727,-31.512701441068202,-31.68037783820182,-32.359207009430975,-31.912347354460508,-31.686553921550512,-31.724142308346927,-32.6719686165452,-33.072726847138256,-32.82925267610699,-31.968026913702488,-31.462298398837447,-31.685340873431414,-32.425850122235715,-33.420233600307256,-33.353853923268616,-34.06651249574497,-33.25258845416829,-32.5402383483015,-32.856771972961724,-33.515156771522015,-34.236231015995145,-34.47257062094286,-34.89018156239763,-34.31243115616962,-33.92323572328314,-33.394535108003765,-33.97425511851907,-34.960955381859094,-35.23553837183863,-35.633974915370345,-34.638125931378454,-34.029989949893206,-34.59036363940686,-34.122359823901206,-33.43392342887819,-33.18950163433328,-33.22394087398425,-33.55833715572953,-33.295037443283945,-33.18135806825012,-32.8729169908911,-32.504240807611495,-32.393602868542075,-32.58018833771348,-32.03626585379243,-31.97709758207202,-32.80554317496717,-31.85353873670101,-31.56041767122224,-32.28507339395583,-33.178674198221415,-32.92438889015466,-32.527674317825586,-33.301899016369134,-32.60888197179884,-32.25974845001474,-32.35079630417749,-32.747446743771434,-32.17724360944703,-32.569078902713954,-33.193427462596446,-33.43255817843601,-34.050693914759904,-33.398815172724426,-34.34485544404015,-33.95446942187846,-33.53437367640436,-34.36602119728923,-33.56441155495122,-32.8427372132428,-32.76633876608685,-31.882071828469634,-31.69317161804065,-31.98508467944339,-31.282023994252086,-32.08551517687738,-32.387616460677236,-31.45036601414904,-30.877712037414312,-30.87546924315393,-30.640842974185944,-29.75032691890374,-29.69120673276484,-30.10539474990219,-29.57678614463657,-30.261488634627312,-30.004786225501448,-29.03629489755258,-28.256397183053195,-29.036550452467054,-29.5818207655102,-29.336157999932766,-28.707355565857142,-29.54308114340529,-29.01042390568182,-29.768587864004076,-29.255430791527033,-28.725607029162347,-28.615599534474313,-28.085799837950617,-27.63769157929346,-27.155165903735906,-27.677180937491357,-27.367289572954178,-27.481330500449985,-27.238991234451532,-26.608784209936857,-27.26194715173915,-26.34689028887078,-26.354065566323698,-25.75684536108747,-25.323056323453784,-25.816436836495996,-26.374755759257823,-26.31612266274169,-27.25001259194687,-27.928453583735973,-28.597197390161455,-29.375676232390106,-30.062223413959146,-29.50102320080623,-29.287243217695504,-28.793914009816945,-28.749804059509188,-28.803688413929194,-28.536769659724087,-29.19238046184182,-28.660692071542144,-28.197335803881288,-27.634931469336152,-28.218450355809182,-28.99863479612395,-29.413855099584907,-29.57026760140434,-29.727921260055155,-29.96560823917389,-30.656512992456555,-30.41515699448064,-30.464365573599935,-29.523963725659996,-28.812931034248322,-28.907327360473573,-28.374093362130225,-28.05969452019781,-28.700379241257906,-27.79842172609642,-27.599816574715078,-27.427097629755735,-27.88594571594149,-26.9344785627909,-26.829991922713816,-26.400530667975545,-25.637926894705743,-26.12095823092386,-25.344517686404288,-26.1108849523589,-26.049760974943638,-26.540825872216374,-25.845749711152166,-26.489403495099396,-25.755695580039173,-26.717393400147557,-26.706732254009694,-26.72793754329905,-26.706431795377284,-26.6279428396374,-27.508706379681826,-27.30091528594494,-26.49683470884338,-27.144077584613115,-27.002281604800373,-27.814442759379745,-27.423918140586466,-27.54096145508811,-26.594032232183963,-25.908729386515915,-25.643011634703726,-25.192166714463383,-25.868190075736493,-26.62332574138418,-27.511324312072247,-27.415855686180294,-26.43708284664899,-25.724871484097093,-25.33688837941736,-25.000012084841728,-25.327660192735493,-26.279847013764083,-27.143210218753666,-26.348855085205287,-27.195226415991783,-27.339386271778494,-26.361214404460043,-27.086692974437028,-26.193456472363323,-26.761958870105445,-27.599213434848934,-27.21408725529909,-27.761272319126874,-28.030589585658163,-28.00342650199309,-28.3273614263162,-27.86080275522545,-28.253529095090926,-27.29496647696942,-27.983164105098695,-27.304903937038034,-26.711648164782673,-25.730987676419318,-26.27533979481086,-26.962244788650423,-27.435983839910477,-27.279234108049423,-27.42289017746225,-26.613106057979167,-25.73003305355087,-25.432550551835448,-25.8658587760292,-25.965375349391252,-26.147530743852258,-25.32309571886435,-24.58505007252097,-24.998262414243072,-24.607459055259824,-25.334492923226207,-25.585658104158938,-25.39530448615551,-25.02691340027377,-24.632662535179406,-23.845443557947874,-24.070709112565964,-23.85055797221139,-24.685585847124457,-24.94125479925424,-25.766629547812045,-24.770175431855023,-23.955076256301254,-23.03063829150051,-22.6907879114151,-22.627260204404593,-23.192967197857797,-22.77465677401051,-23.405393954366446,-22.93879870744422,-22.61929591745138,-23.523780598305166,-23.78285570582375,-23.940996320918202,-24.368718879763037,-24.498888488393277,-24.915304529014975,-25.57586925616488,-26.546543958131224,-26.474840198643506,-26.60671856207773,-27.261081147007644,-27.799361625686288,-27.271268159151077,-27.588913891464472,-27.500046307221055,-26.984325998928398,-27.3992405179888,-26.52959235571325,-26.167608585674316,-25.939347968436778,-25.125415845774114,-25.472193682566285,-25.535094492137432,-26.472244526725262,-27.259337222203612,-27.2843103883788,-27.73807115200907,-27.623118952382356,-27.556370480451733,-27.37550223991275,-26.95128802070394,-27.276931163389236,-28.000570453237742,-28.30380079569295,-27.907925268169492,-27.75521270232275,-28.29946745513007,-28.715711968485266,-28.06198364077136,-28.968640994746238,-29.316463702823967,-29.258801287505776,-29.283481433987617,-28.452649501617998,-28.861914398614317,-28.136479028034955,-28.179395634215325,-29.146229673642665,-28.372069124598056,-28.368984134867787,-28.528401628136635,-29.315523867029697,-29.091618936974555,-29.443235151004046,-29.318456303793937,-30.267151980660856,-30.285334057174623,-29.378510144073516,-29.089156058616936,-29.43726604525,-28.626967248506844,-28.077297273091972,-27.83184643043205,-28.339842494111508,-27.624364843126386,-27.096999344881624,-27.087022718973458,-27.776887860149145,-28.29341835109517,-27.44293844792992,-27.151172494050115,-26.414781781844795,-25.8513840646483,-26.150658352766186,-26.585015492979437,-25.720865179318935,-25.06424225261435,-24.630172474309802,-24.88538997573778,-23.960511394310743,-23.917310607619584,-22.926231395453215,-23.2698123161681,-22.684517011977732,-22.81209684209898,-23.310326701961458,-23.903436527587473,-23.220437851268798,-22.52352431882173,-21.788383219391108,-21.43932685535401,-20.57424383284524,-20.14178111264482,-19.304963960777968,-19.95062087289989,-19.090169914998114,-18.893471411895007,-19.463910173624754,-19.90697971219197,-20.261493869591504,-20.124698858708143,-20.417305383831263,-20.557338240090758,-20.017477112822235,-20.67248716019094,-20.677924568764865,-21.405639672651887,-20.554986762814224,-19.642770369537175,-18.684151850175112,-19.01272486941889,-19.45246100658551,-18.810964197851717,-19.13638196978718,-18.405109779909253,-18.17345545766875,-19.01030221255496,-19.77056147251278,-19.081515117082745,-18.484355099033564,-19.23298614518717,-19.150479041039944,-19.642803247552365,-20.364072700496763,-19.798519922886044,-19.473077511880547,-18.592154625803232,-18.476414268370718,-18.351691292598844,-17.84921739483252,-17.094715944025666,-16.1349462820217,-16.823570868000388,-17.271846225485206,-17.72588409529999,-18.588317062705755,-18.59161306079477,-18.880201281048357,-19.86849903780967,-19.992283168714494,-20.727423077449203,-21.473643182311207,-22.437873769085854,-21.79524526046589,-21.871570493560284,-21.359310295432806,-20.646588587667793,-19.931152157951146,-20.527319751679897,-20.67346487985924,-20.005706031341106,-19.204934212379158,-19.61336729163304,-19.015456648077816,-18.24705219641328,-18.762782846577466,-17.958979861345142,-18.247870084363967,-19.181047093123198,-18.606325787492096,-19.449405380059034,-20.421060921624303,-20.190813098102808,-20.1121189375408,-19.162560624536127,-19.72240105178207,-19.310854302719235,-18.432022670283914,-17.656581540592015,-17.66004970576614,-16.846216095611453,-17.17717880802229,-17.697501578833908,-17.650180763565004,-16.84142234735191,-17.46714483620599,-17.22570150438696,-18.14175418810919,-18.62233171099797,-17.980579510331154,-17.68042009184137,-16.84330489486456,-17.272603878751397,-17.447800981346518,-17.411559066735208,-17.09560563741252,-16.973111462313682,-16.037930784281343,-16.201349699869752,-15.432708174455911,-15.287040736991912,-16.12683703750372,-16.908448844682425,-17.03819359606132,-17.31283489521593,-17.36112855328247,-16.52642171550542,-17.522031091619283,-17.50156616140157,-16.651282034348696,-17.092338890302926,-17.20041986554861,-17.80798675213009,-16.965143860317767,-16.230174068827182,-17.16755589004606,-17.449155905283988,-17.969769542571157,-17.59779094439,-17.163275646045804,-16.792116601020098,-17.47452730825171,-17.59679673379287,-18.401801336556673,-17.418085756711662,-16.918373589403927,-17.53995006531477,-18.039724556263536,-17.904015889391303,-17.534180578310043,-18.51522674690932,-18.808006964623928,-18.027729623019695,-18.480470567941666,-19.356945745181292,-19.732028359547257,-18.904749223031104,-19.22106714406982,-19.99332956923172,-20.081543025095016,-20.411018980201334,-20.767451036721468,-20.051316583994776,-20.45824722154066,-19.541495549492538,-18.995819586329162,-18.60511654475704,-18.117775367572904,-17.248176285997033,-16.56739974208176,-16.522023687139153,-16.83762689959258,-16.189588059671223,-16.327503674663603,-16.768455387093127,-16.478038711007684,-16.757391465827823,-16.430690254084766,-15.999248195439577,-15.553071019705385,-14.84128705598414,-15.687641257885844,-15.714607866480947,-16.407286803238094,-17.164150872267783,-16.779526305850595,-16.409540791530162,-17.129709612578154,-17.391523498110473,-16.521970911417156,-15.581150280311704,-15.25126066012308,-15.380621251650155,-15.661317206453532,-16.626464791595936,-17.159544692840427,-17.59522798564285,-17.44778243266046,-18.003886613529176,-18.488776727579534,-19.40677630342543,-20.175602581817657,-19.530442698393017,-19.419062153901905,-20.404093673452735,-19.535169814247638,-19.488176522776484,-18.522550577297807,-18.969465642236173,-18.105056285392493,-18.560426753479987,-18.48863543337211,-19.031622467562556,-19.482696340885013,-20.2042940328829,-21.076228629797697,-20.24349696468562,-19.3001887681894,-19.80177759146318,-19.00297368085012,-18.391224992461503,-19.20844287518412,-19.99235323863104,-20.926034378353506,-20.317531351465732,-21.169030248187482,-21.00659217638895,-21.19001759076491,-21.15895247971639,-20.68051263364032,-20.099893228150904,-20.398942404426634,-20.539370849728584,-21.262035767547786,-22.098427087068558,-22.265536298509687,-21.65777050657198,-21.32960500800982,-21.539400053676218,-20.55495584476739,-20.978366706054658,-20.577650296501815,-21.164268131833524,-21.071523802820593,-20.62566128745675,-20.964234001468867,-20.016474209260195,-20.00133733265102,-19.808781531639397,-19.077969086822122,-18.226111099589616,-18.220459623262286,-17.991193431895226,-18.432617992628366,-18.66970569686964,-18.992526355665177,-19.55553995165974,-19.500381625257432,-18.746826455928385,-19.35928367637098,-19.754009010270238,-19.792172331362963,-20.43958967970684,-20.311373251955956,-19.53588302480057,-19.75143765565008,-19.66414201306179,-19.879650893621147,-19.42534359265119,-20.121703999117017,-19.545098794158548,-20.30241165822372,-19.810246715787798,-18.95593813061714,-18.147080240771174,-18.245993040967733,-18.414360692724586,-19.216327981557697,-18.885646146722138,-18.13535259803757,-17.73212647717446,-17.08158661518246,-16.35432435479015,-17.268955734558403,-17.66437609679997,-17.93631500704214,-17.191993420477957,-17.369892614427954,-16.969486282672733,-17.579492098186165,-17.092321729287505,-17.39510928373784,-17.39153495291248,-17.217808882705867,-16.834127850830555,-16.548482940066606,-16.94673827989027,-16.248734660912305,-16.451207801233977,-15.899626776576042,-15.674047471024096,-15.086130624171346,-16.032580867875367,-16.5616881782189,-16.328299435786903,-17.265072687063366,-17.509636708535254,-18.275799577590078,-18.401929049752653,-17.434687889181077,-18.14197657490149,-19.062230301555246,-19.911499693524092,-20.276888703461736,-19.74900632351637,-20.64611634798348,-21.259885678533465,-22.00679610762745,-22.724389878101647,-23.440492674242705,-24.136609215289354,-24.191272168420255,-23.59659956721589,-23.247158075217158,-22.428261170629412,-22.636443495284766,-22.459427028428763,-22.660217987839133,-23.302992300596088,-23.93151890533045,-23.405639064963907,-23.97150978120044,-23.95164142968133,-23.217392857652158,-23.846955506596714,-23.375393661204726,-23.605922827497125,-23.28830924257636,-23.24870636081323,-24.01745928125456,-23.221139502711594,-23.602521516382694,-22.73015732690692,-21.972934084944427,-21.544721982907504,-22.225944203324616,-22.717560708057135,-22.86874926229939,-22.76314386446029,-23.408149687107652,-22.833674404304475,-23.018748128321022,-22.468030076939613,-22.212811775505543,-21.326975964941084,-21.360479828435928,-20.614755631424487,-21.073919515591115,-20.226960641797632,-20.534832754638046,-20.473555542062968,-20.778610752895474,-20.38571405922994,-20.897961440030485,-21.222458105999976,-21.197222363669425,-21.902219378389418,-21.048863438423723,-21.358312022406608,-20.72969752876088,-20.006279633380473,-20.305902597494423,-21.213412173558027,-21.175928736571223,-20.5466469489038,-21.065045058261603,-20.586265387479216,-19.861942008137703,-20.55421935301274,-19.941748201847076,-19.585872226394713,-20.375391961075366,-19.616572173777968,-20.38217599503696,-20.96972738392651,-21.92164553469047,-20.928228695876896,-20.012112034950405,-19.24911617068574,-19.57705530896783,-19.93966665584594,-19.54705078713596,-19.023073175456375,-18.036268127616495,-17.35267280973494,-18.03871789947152,-17.215713882353157,-16.72421181667596,-16.387420975603163,-15.703880734276026,-14.929882317315787,-14.040800974704325,-14.256345671601593,-15.209776551928371,-15.676973942201585,-16.160907146986574,-16.387076746672392,-16.249612491577864,-16.62064116075635,-17.42815076513216,-16.49373787920922,-16.55396174453199,-16.275603984016925,-16.988370896782726,-17.880309448111802,-17.26230173697695,-16.779107137117535,-16.252166545018554,-16.55882400693372,-16.647137332707644,-17.571742922533303,-18.036689267959446,-17.076837183441967,-17.02288457378745,-17.257274226285517,-17.88139210920781,-18.055350868962705,-17.168896962422878,-17.776003937236965,-18.18295799707994,-18.26672777486965,-17.498560710810125,-18.059606685768813,-18.855855990666896,-18.962171362247318,-19.214024405926466,-19.3102035112679,-19.617863886989653,-19.13739056698978,-18.81768102897331,-17.98435307946056,-18.76723061967641,-18.157605725340545,-18.355739755090326,-18.642654951196164,-19.028104485478252,-19.977122934535146,-20.802118697203696,-21.601841393858194,-21.266677137464285,-20.587269348092377,-20.908695015590638,-21.454749315977097,-21.108270375523716,-20.38736575935036,-21.35079536959529,-22.195001584477723,-23.105602650903165,-23.98550727730617,-24.927185751497746,-24.51807129383087,-25.38561686920002,-25.187659891787916,-25.034207760356367,-25.047400433570147,-25.675945763476193,-26.10882107540965,-26.26130210282281,-25.397247150540352,-26.141655787825584,-26.24074264615774,-25.880476360209286,-25.188401074614376,-26.01938766008243,-26.160751938819885,-26.863036993891,-26.970890452619642,-27.013538205064833,-27.83149211294949,-28.315406487323344,-28.168339799158275,-28.816906820982695,-29.7973994333297,-29.032796513754874,-29.838503587991,-29.173263714648783,-29.270748938899487,-29.49202910484746,-29.632298223674297,-29.575928994454443,-29.13039720710367,-28.235818532295525,-28.004535539075732,-28.39527701679617,-29.303637308068573,-28.39673835132271,-29.10628002602607,-28.963214689400047,-29.909788421355188,-30.262545275036246,-31.1822749665007,-32.12139793392271,-31.2526446566917,-31.277559186331928,-32.0678878785111,-31.606235051061958,-30.991348686162382,-30.406660048291087,-30.851897600106895,-30.90610732184723,-31.384050809778273,-31.261866244953126,-31.10852752905339,-30.35515051940456,-29.881616621743888,-29.91009730938822,-28.930054021067917,-28.546970527153462,-29.24075362086296,-28.43337663821876,-29.364552770741284,-29.800299229100347,-30.13717439211905,-30.427315379027277,-29.58277427777648,-29.43981991056353,-28.914453841280192,-28.568592951633036,-27.99496569717303,-27.031223121564835,-26.930076393764466,-27.03424121811986,-27.366505822632462,-27.60859501035884,-28.01393447071314,-28.968152328394353,-29.280780161730945,-29.823260280303657,-28.976113753393292,-28.97184474254027,-28.50259329099208,-27.803387850522995,-27.538767226971686,-27.584553961642087,-27.84378306660801,-28.43106494564563,-27.749016754794866,-27.162074958905578,-27.641093200538307,-27.477910443674773,-27.845244409050792,-28.34604659024626,-27.667449430096895,-27.615552383009344,-27.689658884890378,-27.046830728650093,-27.63722524791956,-26.756932214833796,-26.361440527718514,-27.253759497310966,-26.274510599672794,-26.25571695389226,-25.512580460403115,-26.48729949258268,-26.21954216202721,-25.664124794770032,-25.67704833112657,-24.70023678475991,-24.95253863884136,-25.575816526077688,-24.867264496628195,-23.99996435130015,-24.970404557418078,-25.10872714780271,-24.222405232023448,-23.709121011197567,-23.380481684580445,-23.132482731249183,-23.17887223418802,-23.335911910049617,-23.612399998120964,-23.336838010698557,-24.250957342330366,-23.677545273210853,-23.53030002489686,-22.809515619184822,-22.263940930832177,-21.57855060370639,-21.874750464688987,-22.026378129143268,-21.08669598819688,-20.752568474970758,-21.292024387512356,-20.61506257019937,-21.204240586142987,-20.55840644845739,-20.84947478212416,-21.779343092348427,-22.28262678021565,-23.034341033548117,-22.261171959806234,-22.041014469228685,-22.486627370584756,-22.255995135288686,-22.022823051083833,-21.295747852884233,-22.13603806681931,-22.40966214146465,-23.22509466484189,-24.10841672634706,-23.15498867025599,-22.208748388569802,-23.05326764518395,-22.298407468013465,-21.496321891900152,-21.016256875824183,-21.802536410745233,-21.408308593090624,-22.321308349259198,-21.582656372338533,-21.954143517650664,-21.301068337634206,-21.280355426482856,-21.29341613361612,-21.532828678376973,-22.23323805211112,-23.122227585874498,-22.16397917084396,-21.9466534499079,-22.347635400481522,-22.545249160844833,-21.638253186829388,-22.546597593463957,-22.858529964927584,-21.99313632072881,-21.608541663270444,-22.566466050222516,-22.0343948751688,-21.946268434170634,-21.47694189986214,-21.43076836131513,-22.13119355496019,-22.685161619912833,-23.257838575635105,-23.7253794092685,-22.82960693538189,-22.11127170966938,-22.953118024859577,-22.727702910546213,-22.30056308489293,-22.264621486421674,-21.831199192442,-21.033403028268367,-22.02713433979079,-22.85991475172341,-22.720129520632327,-23.474368673749268,-22.80582298245281,-22.75611278694123,-23.292470330372453,-22.498622484505177,-22.954913393594325,-23.951345128007233,-23.237192927394062,-22.933704741299152,-23.462903318926692,-23.919498045463115,-23.54610831895843,-22.83654838660732,-22.21627141814679,-21.648646073881537,-22.62242206512019,-23.501532859168947,-24.4537113183178,-24.684072849340737,-24.141034316737205,-24.892952383495867,-24.64238361734897,-23.8932375703007,-23.80521820578724,-24.400441854726523,-23.732719059102237,-23.11262051947415,-22.73839415423572,-22.344540122896433,-21.97351148026064,-21.356434318702668,-22.316658801864833,-22.611729226075113,-22.132364018820226,-21.353513011708856,-21.49939955258742,-22.077382784336805,-22.428054275922477,-22.506334392819554,-22.01566031575203,-22.74344504857436,-21.889934120234102,-21.832368597388268,-22.683658027090132,-23.50964522594586,-22.858699195552617,-22.712017280980945,-22.3991764257662,-22.819771589245647,-23.30300410836935,-23.55397724499926,-23.055843743495643,-22.498265031259507,-22.426079159602523,-21.481545669492334,-20.938513254746795,-21.28782570688054,-20.35139937978238,-20.043175912927836,-20.59613985195756,-19.987735472619534,-19.790612034033984,-18.800803563091904,-18.70318429823965,-18.255386922508478,-17.519358404912055,-16.619873309973627,-16.324138014111668,-15.818685992620885,-16.216409253887832,-16.35698471078649,-16.094331910833716,-16.780875097960234,-16.866955243516713,-17.150161710567772,-18.06605522474274,-17.558234031312168,-18.466681622434407,-18.607140713371336,-19.374019941780716,-18.50620166445151,-18.16311329882592,-18.79592937603593,-19.442883488256484,-19.284126084297895,-19.000711027067155,-19.762607039883733,-18.955096426885575,-19.711999611463398,-19.92146021965891,-19.062921037897468,-19.941359751392156,-20.291944265831262,-20.709446932189167,-20.685924681369215,-19.970009790267795,-19.887198762968183,-19.475089228712022,-19.179907107260078,-18.456998685374856,-18.180472569540143,-18.35154794016853,-18.17893730290234,-18.544430155307055,-19.474733436014503,-19.16964203538373,-18.232152715791017,-17.85224612057209,-17.960846219211817,-18.226203282829374,-17.233461286406964,-16.697709708474576,-17.582201189827174,-17.452746860682964,-17.250435958150774,-18.186191636603326,-18.059986907988787,-17.998126237187535,-17.781877773813903,-17.69004680030048,-18.469415153376758,-19.33644410362467,-18.83479857025668,-18.47130482690409,-19.30205332254991,-18.56501656351611,-19.37487122649327,-19.344152028206736,-18.431672188919038,-19.04084509331733,-18.080014269798994,-17.169931697193533,-16.737684934400022,-17.569543222431093,-17.97654286166653,-17.774014213122427,-17.751676459331065,-17.015385878272355,-16.264079571235925,-15.877755174878985,-16.466010078787804,-15.791642857715487,-16.439072427339852,-17.410102689173073,-17.658385565970093,-17.07180534955114,-17.761927841696888,-17.541070234496146,-16.764077485073358,-17.239147772546858,-17.368146759923548,-17.603776917792857,-16.867202854249626,-17.529900913126767,-17.128993886057287,-16.190261067356914,-15.973932166118175,-16.965231065638363,-17.18874118477106,-16.73805281613022,-17.66159056033939,-18.623108146712184,-18.94701647758484,-19.7508132327348,-18.868867326527834,-19.25665204366669,-19.878047436941415,-20.379479736089706,-19.521989170461893,-19.21963285561651,-20.212720904964954,-19.676246453542262,-18.686937443446368,-18.429522910155356,-18.886715228203684,-19.44413721561432,-19.171405564062297,-20.007086341269314,-20.01657993765548,-20.14007306145504,-20.44999197870493,-19.64462333964184,-20.319191064685583,-21.053279733285308,-20.186374723445624,-20.682503073941916,-20.18930139299482,-19.958216187078506,-19.72281813621521,-19.029883539304137,-18.90007710084319,-18.669571737293154,-17.77992420271039,-17.73376935115084,-18.363666825462133,-17.901572783011943,-17.082376692909747,-17.595780631061643,-17.05720974644646,-17.962064027320594,-18.704537173733115,-18.46761675318703,-19.003104623872787,-18.340902771335095,-17.711487190797925,-17.76412334665656,-18.166244545951486,-17.569218888878822,-17.94389892788604,-17.325959185138345,-17.113857044372708,-16.697906385175884,-17.511315550655127,-16.780812139622867,-17.470924485474825,-17.51381695922464,-16.785386591684073,-16.793287623673677,-17.44863888202235,-17.177432434633374,-17.244030323810875,-17.134851132985204,-16.926009010523558,-17.741378508973867,-17.697603192646056,-17.369661913253367,-17.675363536458462,-16.78752878634259,-15.843690376263112,-15.042606973554939,-15.415977587457746,-15.628275163471699,-14.866743638645858,-14.511282498948276,-13.797489454504102,-13.017844554036856,-13.020078091416508,-12.74918520450592,-12.051271087024361,-12.920320156030357,-13.602737799286842,-13.043302688281983,-13.198204783722758,-13.375248359050602,-14.26280845189467,-13.584733796771616,-14.358575226739049,-14.752688648179173,-14.088430650532246,-14.044094065669924,-14.408226821105927,-13.44206163380295,-13.333440117537975,-12.349468998610973,-12.937975964974612,-13.016146984882653,-12.188226197846234,-11.59591196430847,-11.677635880652815,-11.622230580076575,-11.784845165442675,-12.245756739750504,-13.105757196899503,-13.419301743153483,-12.465389925055206,-11.995346272364259,-11.148914569523185,-11.66756161255762,-11.494745170231909,-12.475494165439159,-12.210409575607628,-11.800261141732335,-12.657833364326507,-12.503344239667058,-12.365219661965966,-12.127346441615373,-12.345229867845774,-12.117343974299729,-12.435977524612099,-12.209064485970885,-12.378914532251656,-12.323395805899054,-12.727447987068444,-13.552389924880117,-13.865358032751828,-14.729365714360029,-15.275295529980212,-15.152110585011542,-14.676907151006162,-14.299433913081884,-14.710802371613681,-15.041982928756624,-15.53255865862593,-15.197313267737627,-15.610340085346252,-15.61739125708118,-15.549648095853627,-16.155506677925587,-15.291778618004173,-15.211094772443175,-15.892481317743659,-15.395147343631834,-16.3404274568893,-16.522093262989074,-16.63963545160368,-16.0023788260296,-16.100780930370092,-15.387984659522772,-14.548623556736857,-13.725663765799254,-14.106900325976312,-13.527964496519417,-13.250244877301157,-12.534033148083836,-12.900355169083923,-13.183357670903206,-13.59960971167311,-13.829226984642446,-13.271360970567912,-13.51339560886845,-12.77438103267923,-12.059158429969102,-12.343324519693851,-11.918879307806492,-12.819093753118068,-12.298600492998958,-12.73040011478588,-13.690168868750334,-13.93593479366973,-13.461454336065799,-12.961945252493024,-12.728953909594566,-11.735111504793167,-12.596261065453291,-12.564325164072216,-12.898182180244476,-12.589942174963653,-11.987424673046917,-11.129625381436199,-11.571204076521099,-11.09808908822015,-10.864764848724008,-11.769006195478141,-11.613930819090456,-11.398747300263494,-12.35134328296408,-11.99637583643198,-11.33895139908418,-10.707918436266482,-10.835350122768432,-10.263793041463941,-9.482001698575914,-10.322666444350034,-10.339967540465295,-10.410789748188108,-9.462059993296862,-10.303129639476538,-9.848795168567449,-9.56326311873272,-9.582742523401976,-10.32646822789684,-11.025831886567175,-11.147520097438246,-11.713810719083995,-11.703531644772738,-11.807721474673599,-11.786216920707375,-11.277033097110689,-10.548202186822891,-10.998197020962834,-10.092303581070155,-9.867668683174998,-10.607678895816207,-9.941477527841926,-10.038156126160175,-9.546520377509296,-9.7866335446015,-10.537654547020793,-10.256110849790275,-10.799690218642354,-10.336425227113068,-9.590048199985176,-9.615950880106539,-8.735637238714844,-8.020890886429697,-7.89036547858268,-8.21375751355663,-9.14674983965233,-9.133509058970958,-9.641212491318583,-9.771334747318178,-9.630398823413998,-9.191481356974691,-10.141446745488793,-9.501711353193969,-9.38659202028066,-10.357177341356874,-10.576714522205293,-9.85324199590832,-10.714015955571085,-9.841825671959668,-9.163185931742191,-8.861541115678847,-8.280144819058478,-9.270363532472402,-9.060176733415574,-8.72262483369559,-9.19132574275136,-9.63177342293784,-9.894217771477997,-8.981059292331338,-8.584368846844882,-8.953037363942713,-8.257663620635867,-8.076733511406928,-8.118313630577177,-8.364362018182874,-8.179768630769104,-8.979135108180344,-8.905571602284908,-9.768739082850516,-10.30809246422723,-10.447599835693836,-11.112444708589464,-11.245532043278217,-12.11759489402175,-12.615639993455261,-13.600687334313989,-14.321230842266232,-14.973450005985796,-14.465698853135109,-14.056344495154917,-13.905895497184247,-13.565028505399823,-12.867085750680417,-12.683856989722699,-13.328473491128534,-13.592669303528965,-14.312760102562606,-14.87067770306021,-15.785454358439893,-16.495518300216645,-15.811765589285642,-16.130968076642603,-16.27843626914546,-15.884177492465824,-16.541708153206855,-16.42483947565779,-15.686934158671647,-14.998075598850846,-14.738842396531254,-14.52783877030015,-14.584616602864116,-15.446028821635991,-14.451346336863935,-14.116116766352206,-13.708215990103781,-14.41271729907021,-15.290314708836377,-16.1921746567823,-15.862632393371314,-16.8429235778749,-16.90058160852641,-15.988987630233169,-15.799905327614397,-15.489585407543927,-14.804562363773584,-15.089840610977262,-15.269731296692044,-15.578622329048812,-15.784685374237597,-15.723155229818076,-14.942526838742197,-15.73304436262697,-16.674716545268893,-16.98608886776492,-17.221351112704724,-16.537412610370666,-16.292946436908096,-16.73078996548429,-16.112703362479806,-15.38071007700637,-15.827261774800718,-15.341346530709416,-15.399240983650088,-16.307131067849696,-17.038663376588374,-18.035168370697647,-17.804394072387367,-17.076557714957744,-16.36305141588673,-15.729520209599286,-16.391855573281646,-16.35825417516753,-17.300135239958763,-17.863925982732326,-18.842479979619384,-19.450318686664104,-19.335381355136633,-19.24886304186657,-19.720949322450906,-19.739464193582535,-19.31416712049395,-19.820736069232225,-20.416137935593724,-19.867535125929862,-20.859041118994355,-20.988101853057742,-20.028135223314166,-21.008689877111465,-21.03212663764134,-20.825692284386605,-20.340755545999855,-21.296858171466738,-20.844012077897787,-19.876869435887784,-20.582565599586815,-20.718581724446267,-20.324395530391484,-19.69527783151716,-19.979438844602555,-19.311649701558053,-20.199065388180315,-20.248331205919385,-19.999341023620218,-20.81457000458613,-20.173851255793124,-19.595200655516237,-19.68937825364992,-18.840565194841474,-18.166219842620194,-17.902440189383924,-18.464485935866833,-18.48138124635443,-19.12186729721725,-18.143391742371023,-17.654443740379065,-17.807411475107074,-17.977745161391795,-17.814455332234502,-17.144006232265383,-16.420422364026308,-15.451452880632132,-16.42513717710972,-16.62135756202042,-16.741642055567354,-17.256072528660297,-17.820570268668234,-17.249539595562965,-17.845095748081803,-17.101749151479453,-17.95663574617356,-18.45644972519949,-17.862763166893274,-16.918587333522737,-17.537368453107774,-16.642477119807154,-16.235125384759158,-15.513168975710869,-16.4075843882747,-17.32404067646712,-16.838609284255654,-17.23668561456725,-17.9319341708906,-17.269631349947304,-16.631874359678477,-17.028849220834672,-16.409072663635015,-16.339609830174595,-16.309419185854495,-15.366168525069952,-15.680447744205594,-15.555182135198265,-15.224464361555874,-15.396050580311567,-16.23793251439929,-17.22072653286159,-17.82887112116441,-16.994196529965848,-16.222855518572032,-17.003571895416826,-16.829741195309907,-17.59318588208407,-17.255250247661024,-16.29141374863684,-15.812202675733715,-16.582411822397262,-16.611948848702013,-17.291479733772576,-17.799058871809393,-17.084705155342817,-16.506701643113047,-16.53167536202818,-16.002569226548076,-15.226672361139208,-14.24159422237426,-13.692067423835397,-13.043004968669266,-13.139932807069272,-12.816233762074262,-11.883532933425158,-11.997405644506216,-11.340355167165399,-11.741729165427387,-11.919226227793843,-12.666691653896123,-11.679647328332067,-10.746228917967528,-10.193976779002696,-10.01749888760969,-9.951117656659335,-9.061498879920691,-9.990672778338194,-9.84943838045001,-10.800099858548492,-11.499455442186445,-10.928734491113573,-10.454491022974253,-10.857878148090094,-11.044633507262915,-11.678291337098926,-12.027201611083001,-12.261015237309039,-12.016166885383427,-12.680768775753677,-12.827457909937948,-13.28882661042735,-12.493496108800173,-11.842760902829468,-11.42997953016311,-11.089535492938012,-10.973706491757184,-10.702683166135103,-11.49818580597639,-11.854887324851006,-12.671762039419264,-12.723872902337462,-11.830010921694338,-11.878490665461868,-12.867562126368284,-13.41505289124325,-12.619959445670247,-13.135155988391489,-12.819254892878234,-12.751465436536819,-13.118840889073908,-12.207156019285321,-11.882098926231265,-11.327662438619882,-11.40163913462311,-10.803685696329921,-11.031549312639982,-10.472911233082414,-10.856701742392033,-11.353438466787338,-10.860151757020503,-10.835089411120862,-11.354354195762426,-12.24235292011872,-11.56596054136753,-11.052793624810874,-11.437590894754976,-11.774423195514828,-10.99622449092567,-10.143065459094942,-10.523372053634375,-10.646540421526879,-11.174494915176183,-11.720353758428246,-12.17365529667586,-11.278846475761384,-11.922370023094118,-12.594862849917263,-11.983542296569794,-11.116369390394539,-11.205305359791964,-11.788540762849152,-11.365835417527705,-12.18000806029886,-12.21760776732117,-12.966279447544366,-13.728795024566352,-14.197948668617755,-14.462178749032319,-14.185216127429157,-14.908777355682105,-14.695141844917089,-15.684553740546107,-16.34367348998785,-16.64275655662641,-16.324600817635655,-15.397662724368274,-14.692502623889595,-15.07960382476449,-14.29922361811623,-14.979108354542404,-14.890280353836715,-15.813487337436527,-15.698161884676665,-15.423482018522918,-16.316231043543667,-15.60634507285431,-16.274548347108066,-16.97386980941519,-16.963602798525244,-17.49373608827591,-17.636918605305254,-18.067950746044517,-17.232725540641695,-16.646746583282948,-16.85124163236469,-17.50507210753858,-16.73665925860405,-17.217520150355995,-16.95688815880567,-17.934775157365948,-18.75557092903182,-19.470601354259998,-20.021541606634855,-20.02251050900668,-19.27507771551609,-18.572260117623955,-18.5199550059624,-18.557591521181166,-18.909628958441317,-18.53658650163561,-19.255932881962508,-19.52948867995292,-19.952713511884212,-19.647462225984782,-19.064648926258087,-19.784629489760846,-19.505713232327253,-20.43508685892448,-20.063711506314576,-20.767668302170932,-21.00076859490946,-21.753847658168525,-22.738147498108447,-22.790717501658946,-22.152416914701462,-21.926529100630432,-21.47210064996034,-21.27840613713488,-20.4968861467205,-20.05414518713951,-20.084732845425606,-20.87678572628647,-19.92645421810448,-20.398860373999923,-21.022377904038876,-21.719054356217384,-21.31519456487149,-21.456394268665463,-22.00543084088713,-22.601629918441176,-22.372131815180182,-21.4889297131449,-21.684352005366236,-21.255221279803663,-21.27654887828976,-21.491826386656612,-22.467524016741663,-22.44581480231136,-22.69821699336171,-23.375889798626304,-22.99872610345483,-22.334020879119635,-22.573440919164568,-22.0538846058771,-21.169399202335626,-21.902977952733636,-22.102804184891284,-21.922962524928153,-21.953556278254837,-21.67747942917049,-22.617493295110762,-23.047088081482798,-23.415373208001256,-23.976601832080632,-23.4681963538751,-22.607440068386495,-22.948871904518455,-23.229183652438223,-22.52495594182983,-22.92152444878593,-22.22571980766952,-21.496950190979987,-22.339867676608264,-23.208140180446208,-22.523495721630752,-22.846644846256822,-22.952514819800854,-23.47006567660719,-22.80140696372837,-22.944580153096467,-22.607321098912507,-22.253582559525967,-21.467147185932845,-21.435257941950113,-21.071739038452506,-21.85169336432591,-21.025555178988725,-21.404419577680528,-21.823950259014964,-21.09169075684622,-20.74357105186209,-20.528200939297676,-20.807582816574723,-20.724010702688247,-21.26548151485622,-21.863932175561786,-21.36938992375508,-21.303122443147004,-20.42432015761733,-21.375430347863585,-21.058127336669713,-21.38225722173229,-21.59449282893911,-22.558187505230308,-21.603816063608974,-21.037359938025475,-21.748535714577883,-20.785423452034593,-20.400154951028526,-19.975582731422037,-19.790194193366915,-18.824793805368245,-18.986105984076858,-19.042488993611187,-18.4401800269261,-18.67164700385183,-18.77093939529732,-18.811912345699966,-18.779713940341026,-18.437354385852814,-17.98638317314908,-18.34959856700152,-18.10647209128365,-17.758487006183714,-17.08388356026262,-16.30071244062856,-15.96971711749211,-16.866380274761468,-16.849819029215723,-16.89326157933101,-17.54732892056927,-17.65246563218534,-16.874478908255696,-16.51726286811754,-16.080394390504807,-15.76304306415841,-14.893512319307774,-14.764402482658625,-14.059933916199952,-13.071192493662238,-13.287057558540255,-14.014324435964227,-14.741766171529889,-15.259335603564978,-16.249646089505404,-16.411829413380474,-16.37791371019557,-16.622607486788183,-17.478798863012344,-17.41279740119353,-16.66044536512345,-17.519090506248176,-17.296722032129765,-17.72587452828884,-16.875648360699415,-16.155397271737456,-15.309859850909561,-15.177021310664713,-15.676303626038134,-15.330410051625222,-16.089589239563793,-15.950250144582242,-16.477345898281783,-16.237130974885076,-15.88054335443303,-16.189274780917913,-15.653687155805528,-15.161285070702434,-14.346863490529358,-14.41257920814678,-14.610063797328621,-13.828845644369721,-13.859222336672246,-13.53441625321284,-14.17364689707756,-14.83858454041183,-13.839627326466143,-14.501789322122931,-15.463904533535242,-15.647341705858707,-15.94526255549863,-15.53294993750751,-16.33025794615969,-16.264485092833638,-15.724567238707095,-15.452423089649528,-15.690588479861617,-15.746774973347783,-15.734157789032906,-15.749038094189018,-16.38466579094529,-15.705297871027142,-15.796277021989226,-15.731875371653587,-16.384450326673687,-16.541052727028728,-17.31794766196981,-18.11005255114287,-17.838320535141975,-16.876731600612402,-16.658000082708895,-16.426070554181933,-15.872653214726597,-15.3978355769068,-15.988332938868552,-15.595347869675606,-15.254960825666785,-15.92286305129528,-15.409327978268266,-15.53761752229184,-15.063569207675755,-15.317221724428236,-14.966434999369085,-14.152467948850244,-13.360971871763468,-13.806414012331516,-13.770310648716986,-14.22255750792101,-14.904109975788742,-14.357743518427014,-14.19586091907695,-13.692237553186715,-12.952546264976263,-13.308849785942584,-14.304391300305724,-15.05396014591679,-15.726281224749982,-16.18406304065138,-17.030046745203435,-17.30228132288903,-17.49200038658455,-18.027600118424743,-17.790420616976917,-18.607535859104246,-18.10335508454591,-17.558842504397035,-17.474551217630506,-18.29562416765839,-18.59799419157207,-19.55760729452595,-19.4092278922908,-19.122270935680717,-18.42499028518796,-19.210769642610103,-18.683845147956163,-18.605439517647028,-19.07175608444959,-19.23455738136545,-18.545821629930288,-19.23063803743571,-19.601763669401407,-19.7966476874426,-18.893633858766407,-17.959579178597778,-18.46737892413512,-19.085648672655225,-19.002519228029996,-19.805292821489275,-20.4580686413683,-20.745943351648748,-21.0601276345551,-21.083558917976916,-21.230310326442122,-20.907354874536395,-21.722292894497514,-20.898548708297312,-21.56599044147879,-21.356900873128325,-20.64724640408531,-21.212047805078328,-20.77114439755678,-19.809702698141336,-18.814076520036906,-19.297668483108282,-19.297538820188493,-19.305924559012055,-18.404598786961287,-19.343704934231937,-18.87577875657007,-18.267205642536283,-17.885496569797397,-18.812058630399406,-19.442319977562875,-19.424042430706322,-19.566148188430816,-20.319557963870466,-20.223844996187836,-19.877732679247856,-20.066000141203403,-20.149010681081563,-19.713183547835797,-19.268820139113814,-20.158107918221503,-20.0941660432145,-20.952194060198963,-20.119589975103736,-20.35697907023132,-20.895971496589482,-20.438330757431686,-20.875486611388624,-20.00519803352654,-20.028247819747776,-20.323974543251097,-20.116842814721167,-19.857358722016215,-20.228923524264246,-19.725790365599096,-20.162758409511298,-20.120671608950943,-20.759804519359022,-21.326793032232672,-21.240393007174134,-21.414847909472883,-20.816417183727026,-21.36858544452116,-21.145344990771264,-20.36320285219699,-21.053102541249245,-21.898891160730273,-22.526091816835105,-21.987620340660214,-22.968063101172447,-21.974857582710683,-20.98613159544766,-21.169507869053632,-21.042635928373784,-20.98150522261858,-20.315368909854442,-21.255759860388935,-20.716951727867126,-20.049970051273704,-20.25682859774679,-20.946955311112106,-20.152665875852108,-19.215301494579762,-18.912588422652334,-18.209705783054233,-17.51915885042399,-18.496122173499316,-18.904938012361526,-18.46038238890469,-17.712357567623258,-18.567410733550787,-17.812284806277603,-18.636603546794504,-19.06193128367886,-19.60501385619864,-19.550935571081936,-20.087230547331274,-19.88305504946038,-19.68356749555096,-20.381929137278348,-21.350410932675004,-22.09712643036619,-21.791165763977915,-21.53696293151006,-21.024567445274442,-20.410128937102854,-21.236883631907403,-20.765694383066148,-21.423008685931563,-21.230036472901702,-22.215444915927947,-22.640480443369597,-22.597184733953327,-22.72426638426259,-22.454433451406658,-22.90467371745035,-23.875649931374937,-24.045253913849592,-23.69364206213504,-23.283855159766972,-22.418435958679765,-21.87487653363496,-21.427719387225807,-21.517125997226685,-22.35743575170636,-23.3139183903113,-24.152659095823765,-24.91813693381846,-25.43541709566489,-24.55106477206573,-24.35037014912814,-23.637889636680484,-23.530758027452976,-23.813141273800284,-24.334179650992155,-24.691040327772498,-25.58856964390725,-25.01666006585583,-24.312593972310424,-24.17240826319903,-24.036699418909848,-24.328098129015416,-24.36713886447251,-23.595686790533364,-23.667118530720472,-23.42468298599124,-22.830207861494273,-23.157008782960474,-23.022227177862078,-22.913686925545335,-23.674303768202662,-24.19966517109424,-23.967034878209233,-24.577593239489943,-23.665257612243295,-22.806967847049236,-23.456998745910823,-23.132179531734437,-23.099576738663018,-22.468104316387326,-21.49173714639619,-20.76153312623501,-19.7953593400307,-19.98331561498344,-19.024234710261226,-19.332039604429156,-19.222965012770146,-19.54389469465241,-19.091449183411896,-19.926193729508668,-19.10670798458159,-19.778416134417057,-18.873709466308355,-18.004139642231166,-18.663683994673193,-19.25297278771177,-19.41579717071727,-19.394683512859046,-20.08085175184533,-20.88828844251111,-21.48343448387459,-20.52417060919106,-19.6887060534209,-19.65756534738466,-20.463537964969873,-20.39948828611523,-20.226154138799757,-20.605710320174694,-21.45459188427776,-21.979241653811187,-21.637054981198162,-21.205954161006957,-21.73535282863304,-22.43830179190263,-22.120738391764462,-22.226576564833522,-21.258769197389483,-21.628325474914163,-22.25834720907733,-22.279921816661954,-22.588352903258055,-23.432039523031563,-24.040915014687926,-24.729489125777036,-24.96950881788507,-24.93427917174995,-23.940042493864894,-23.877216733060777,-24.423643568065017,-23.736117660533637,-24.316987909842283,-25.126750484108925,-24.151972034480423,-23.646335808560252,-23.282314985524863,-23.090980489738286,-23.3201955659315,-23.340028354898095,-22.891668510157615,-23.115466099232435,-22.8918921421282,-22.42962745577097,-21.75823991931975,-21.064371433574706,-20.27555144391954,-20.767804495990276,-20.588304849807173,-21.096921195741743,-21.98941256571561,-22.80987483682111,-22.124816949479282,-22.170928221195936,-22.90233591105789,-23.37542881956324,-22.55058596562594,-22.356749382801354,-21.64638908347115,-21.537324514240026,-22.514058152679354,-23.173778492491692,-23.77750793006271,-23.170270293485373,-22.47092376323417,-22.896669736132026,-22.546206764876842,-23.249888388905674,-22.612067410722375,-23.590683600399643,-22.783599860500544,-21.854624554514885,-22.237026209011674,-22.912316377274692,-22.26908245915547,-23.0533480909653,-22.328141148667783,-22.08247659308836,-21.577067399397492,-22.015413443092257,-21.163180312141776,-21.303250724915415,-21.753287171013653,-22.58996383752674,-22.274451793171465,-22.61732577905059,-21.983651304617524,-21.865872752852738,-22.19510559970513,-21.387078929692507,-22.104435036424547,-22.21944699343294,-21.904958002269268,-21.41039265645668,-22.197259267326444,-21.890638534445316,-22.820159520488232,-22.87158912140876,-23.318023731466383,-24.26851251348853,-24.759726710617542,-25.71823026658967,-26.13738511595875,-25.743888007011265,-24.771761721000075,-25.331522683613002,-25.033239308279008,-25.134694644249976,-25.266023874748498,-25.50263687269762,-25.505255363881588,-25.356930036097765,-24.49250005930662,-24.718273227568716,-23.87071221927181,-23.89258815255016,-23.318048611283302,-23.03009455371648,-23.950041028670967,-23.61977553507313,-23.454350375570357,-23.683881416451186,-22.93698961334303,-23.663595034275204,-23.34293479193002,-22.502248912118375,-21.8700863532722,-21.542925641406327,-22.024667128454894,-22.326819073874503,-22.324218512512743,-22.621393160428852,-23.45322627853602,-22.971135654486716,-22.119281779509038,-21.156554527580738,-21.30910794949159,-21.01502182567492,-20.898823209106922,-21.318364220671356,-21.325482345651835,-21.1336383135058,-20.670835002791137,-20.393364129122347,-21.38428188767284,-22.08931697718799,-21.899315677117556,-21.214974119793624,-20.536368063185364,-21.40091424342245,-20.823887701611966,-21.09499048581347,-21.752378122415394,-21.359220705460757,-20.899041956756264,-21.01644994597882,-21.433208500035107,-20.995959141291678,-21.937831469345838,-22.644688787404448,-22.223630177322775,-22.238663584459573,-23.09232626017183,-23.952669331338257,-24.389805717393756,-25.310139391105622,-25.561052727978677,-25.378520935308188,-25.99333601538092,-26.020004160236567,-26.310136540792882,-27.30366208963096,-26.731645680963993,-26.0683879731223,-25.925878304988146,-26.14412439847365,-26.15417591156438,-26.041243182960898,-26.08291099127382,-26.83555263094604,-27.690604539588094,-27.80860540503636,-28.31339172134176,-28.636541259475052,-29.551221328787506,-28.599927013274282,-28.486644859891385,-27.544119350612164,-27.947745656594634,-27.0969250141643,-26.593502392992377,-25.850878111552447,-26.054943246766925,-26.09631944540888,-25.14675548579544,-24.48318688198924,-23.534416877664626,-23.43346709245816,-23.544968307949603,-24.132366386707872,-23.3739170669578,-23.45362613303587,-22.620726922526956,-22.788047819864005,-22.401786570902914,-23.07111752172932,-23.46443524118513,-24.088656964711845,-24.758097403217107,-25.203355120960623,-25.232635945547372,-24.980272686108947,-24.761816115584224,-25.70505167823285,-25.105758813675493,-25.643650418613106,-25.253086179029197,-24.90974305011332,-25.22691861074418,-24.813754471950233,-24.332948507741094,-24.51844727806747,-25.46821895428002,-24.468517826870084,-24.68055715598166,-23.685186872724444,-23.81620533950627,-24.356160340830684,-23.76943999994546,-22.988652075640857,-22.228828988038003,-22.57636420847848,-21.949277421925217,-21.674085742328316,-21.762226110789925,-21.302045810502023,-20.89388291956857,-19.89855812676251,-19.70348234521225,-20.60979874851182,-20.03749175928533,-20.72780211083591,-21.044446950778365,-21.798777176998556,-21.448399364948273,-20.725158276967704,-21.142842217348516,-21.921749606262892,-22.55996418837458,-22.92888454766944,-23.21730030933395,-22.766182295046747,-22.283417651895434,-22.055439041927457,-21.121004845481366,-21.1477764188312,-21.1657734666951,-20.528894981369376,-20.072663367260247,-19.26390395220369,-18.609436195343733,-17.706210809294134,-17.51120924530551,-16.675135197583586,-15.913074450567365,-16.411109347827733,-17.054531522095203,-16.436772413086146,-16.127299564890563,-16.183161076623946,-16.879647543653846,-16.8974145995453,-17.758006751537323,-18.002939199563116,-18.68488885369152,-18.687072199769318,-19.450595733709633,-20.34715952165425,-19.708845381624997,-19.56829690746963,-18.840541649144143,-19.280423326883465,-18.642853188328445,-18.056451150216162,-17.767563549336046,-18.47506417846307,-18.805849683471024,-19.23926438577473,-20.239024424459785,-20.966436816379428,-20.719036668073386,-20.76465645665303,-20.84924452053383,-21.452823921106756,-22.211207867134362,-22.23916978063062,-21.830816953908652,-22.397950537037104,-21.795750326942652,-21.7091775261797,-21.920843680854887,-21.869235462974757,-22.02838262869045,-22.896902548149228,-23.790979478508234,-22.975479905027896,-22.291734729427844,-21.816767977550626,-20.958254641853273,-20.53949414147064,-20.41004665894434,-19.973358006682247,-20.420528099872172,-20.08764475211501,-20.940300340298563,-21.172557478770614,-20.236855837516487,-20.352031289599836,-19.639878700021654,-19.10089348582551,-18.254131589550525,-18.845188955310732,-18.12436332879588,-18.452096997294575,-18.029229449573904,-18.949729511979967,-19.692140843719244,-19.76201645610854,-19.96059353230521,-20.189032229594886,-19.204284553881735,-18.759481565561146,-18.913863560650498,-18.212183440569788,-17.307000309228897,-17.839048850350082,-18.113537755329162,-17.118344326037914,-17.58914194209501,-18.475368686020374,-18.446675254032016,-19.1714710094966,-18.256233877502382,-18.15730481594801,-17.584916307590902,-17.944734623655677,-17.046313429716974,-16.072922945488244,-16.41734121926129,-17.211989394389093,-16.826112417969853,-16.82009154232219,-15.92827581288293,-16.310296300332993,-15.743375359103084,-16.594755357131362,-17.124572483357042,-16.408889200538397,-15.9308255976066,-16.777272887527943,-17.483267745468765,-16.768312579020858,-17.320168217644095,-17.877608221955597,-17.52456395328045,-16.793533800169826,-16.294184878468513,-17.282978429924697,-17.270623620133847,-17.725172461476177,-17.373157950118184,-17.06136025581509,-16.23494110070169,-16.42201936012134,-15.446308472659439,-15.716740580275655,-15.90002039540559,-15.676354106515646,-15.360717329196632,-15.814448572695255,-16.041667088400573,-15.933923543896526,-16.91402014810592,-16.343025772832334,-16.511717873625457,-15.865836365614086,-14.928609387949109,-14.100310467649251,-13.716603490058333,-13.333612516056746,-13.85401046462357,-13.969927003141493,-13.161510315258056,-13.964470587205142,-14.25529603799805,-14.787147656083107,-15.038158286828548,-14.843939110636711,-15.05208117607981,-15.386226519942284,-14.555416912771761,-15.14177830144763,-15.043021632358432,-16.0336105809547,-16.21191272092983,-16.399931150022894,-16.34758824016899,-15.949283858761191,-16.87846899777651,-17.20774031803012,-17.683115363121033,-16.695364247541875,-15.816556682344526,-16.53781392145902,-17.281192282680422,-17.58117011655122,-17.487689533736557,-17.635555554647,-17.941008345223963,-17.776995226275176,-18.216751274187118,-17.66189586278051,-17.982532868161798,-17.92922642407939,-18.666930350940675,-19.097851989790797,-18.745122517924756,-19.14041957212612,-18.142649931833148,-17.245690138079226,-16.984516081865877,-17.900461382698268,-18.01545518403873,-17.026118598412722,-17.766845473088324,-17.0157947614789,-17.038157576695085,-17.245015379972756,-17.577986305579543,-18.253335767425597,-18.99415069213137,-19.930819815490395,-20.265317953191698,-19.5106164785102,-20.1033357353881,-19.516778704244643,-20.04120393982157,-19.324172387365252,-20.078424506355077,-19.98776562931016,-20.079259557183832,-19.960061194375157,-20.323178243357688,-19.674163211602718,-20.496485280804336,-21.193962085526437,-20.843938935548067,-21.78644847171381,-21.815593192819506,-22.298457100521773,-23.076316243503243,-22.504175995476544,-21.877482616342604,-22.59381283679977,-23.284376110415906,-23.200126871000975,-23.713581236079335,-23.312606484163553,-23.084166483487934,-24.01241078460589,-24.213222965598106,-25.201311871875077,-25.786916655953974,-24.98199291387573,-25.579822950530797,-25.929580368101597,-26.753983575850725,-26.784543132409453,-26.055498859845102,-26.641670879442245,-26.68571499688551,-26.76061459397897,-26.88380143698305,-25.898652902338654,-26.164401636458933,-26.213449208065867,-27.129510247614235,-27.02631555683911,-26.263671985361725,-26.75328042730689,-26.845865139737725,-27.623466227203608,-28.12216599471867,-27.159721629694104,-26.346347585320473,-26.460575677920133,-27.4135903227143,-28.412263276055455,-29.194409212097526,-28.38892652373761,-27.878699074033648,-28.214396604336798,-29.024666947778314,-28.070631507318467,-27.09872313775122,-27.759115413296968,-27.194383015856147,-27.489161981269717,-28.150232664775103,-29.14318065904081,-30.044104179833084,-30.06982216378674,-30.100747162476182,-29.598954617977142,-28.63438608078286,-28.484252324327826,-28.90442335791886,-28.054368808865547,-27.40187678253278,-27.334253334905952,-27.330318377818912,-26.3932827655226,-25.65974325221032,-25.497113325167447,-25.69881771178916,-25.977513982448727,-26.429855595342815,-26.18085297057405,-25.59798634890467,-25.06739908736199,-25.230280249845237,-24.54385701334104,-25.482272332999855,-25.43140482204035,-25.58832543436438,-24.639387637842447,-25.526497412007302,-26.23606198746711,-27.04129502410069,-27.65888434043154,-27.226919407956302,-27.457683231681585,-26.92217439133674,-27.490746926981956,-27.960395039524883,-28.793579717166722,-28.712426230311394,-29.24586186883971,-30.087806419469416,-30.943562890402973,-31.15396378794685,-30.371475303545594,-30.563372938428074,-30.99341226555407,-30.66444518370554,-30.5142554147169,-29.60181540902704,-30.05636316491291,-30.476460681296885,-30.493248459417373,-30.035461010877043,-30.399185351096094,-29.696583526208997,-30.34646205417812,-31.117641175631434,-31.000530722085387,-31.16025596577674,-30.201833027414978,-29.496151950210333,-28.770021662581712,-29.176861952524632,-28.591564661823213,-29.32513243611902,-28.78795894049108,-28.36650379979983,-28.025652749929577,-28.831915891729295,-28.676148533355445,-29.465424160007387,-29.301848497707397,-28.335108044557273,-29.2542399992235,-29.642432297114283,-28.90588916419074,-29.49160998687148,-29.463429297320545,-29.70449493592605,-30.222365283872932,-30.445927186403424,-31.32534763775766,-30.916214349213988,-30.314837102312595,-30.908325746655464,-30.60164489597082,-30.151655162218958,-29.962826825212687,-29.253450371325016,-28.559758826624602,-29.276954866945744,-28.718138004653156,-28.12755318917334,-28.564860854763538,-29.110676703043282,-28.586714786011726,-27.76246856711805,-27.233270335476846,-26.962619290221483,-27.87479807669297,-28.76312096370384,-28.70058369357139,-29.082822141237557,-29.56982901226729,-30.355073872487992,-30.354786376003176,-30.151194711215794,-29.46360530378297,-29.91615277621895,-29.42325627943501,-30.210145792923868,-30.760435261763632,-29.788301567547023,-29.63178299088031,-29.903810237534344,-30.884757441934198,-31.560128855984658,-31.09876580769196,-31.417258542962372,-31.520129971206188,-32.41786566469818,-32.904529246967286,-32.03788667591289,-31.795168084092438,-30.818957965821028,-30.39010674227029,-30.362962670158595,-30.887357621919364,-31.09557708678767,-30.81178642809391,-31.628023399040103,-30.84006613586098,-30.571622763760388,-30.149777837097645,-29.25269784219563,-29.45396126061678,-28.9555018809624,-29.492296044249088,-28.566532612312585,-27.84215160086751,-27.421050489880145,-27.165021197870374,-26.793761370237917,-25.977455949410796,-26.31267597246915,-27.10818242840469,-26.95102929137647,-27.839256008621305,-27.69231710024178,-26.92346281465143,-27.722301637288183,-27.97169343754649,-27.444720117375255,-26.66520909080282,-27.660240856930614,-28.512307527009398,-29.47707107104361,-30.031794340349734,-29.323247374035418,-29.942038378678262,-29.21104156319052,-29.610252372454852,-29.402347462251782,-29.447430182714015,-29.826917661353946,-29.30532134929672,-28.57323392527178,-28.657156945671886,-29.415793939493597,-29.2433748296462,-28.509951300919056,-29.04893826134503,-29.595561231020838,-29.658753932453692,-29.85479637980461,-29.118664377834648,-29.275925007648766,-29.008726527914405,-28.48771860357374,-27.779600706882775,-28.194466437678784,-28.592817084863782,-28.663244447205216,-28.957400579936802,-29.740528526250273,-28.963089373894036,-28.522642304189503,-28.994080238975585,-29.951728920452297,-30.38349096570164,-30.660215594340116,-30.63122925069183,-31.522118204273283,-30.694135192316025,-30.102539150509983,-29.862332281656563,-29.489562665577978,-30.439574105665088,-30.98077752441168,-30.736645991448313,-30.003058823291212,-29.77417988097295,-30.373730826657265,-29.406239521689713,-28.54844631627202,-27.698135867714882,-27.084572080522776,-27.15749046066776,-27.726017739623785,-26.87095203762874,-27.05540519254282,-27.088435747660697,-27.68477174360305,-27.0954805072397,-26.932842754293233,-26.053525814786553,-26.020160438492894,-26.52648753905669,-27.029330528341234,-26.35338494554162,-26.19063193909824,-26.418667806778103,-25.930991287808865,-26.06978268409148,-25.996113194152713,-25.796353006269783,-25.835990173276514,-25.038211757782847,-24.28738133981824,-25.122672447934747,-25.314710831269622,-24.44151457445696,-23.703336196485907,-24.25681483792141,-23.360613002441823,-22.400195489171892,-21.729806242510676,-21.970026570372283,-21.621063728351146,-20.765544454567134,-20.1170845287852,-20.889883959665895,-21.15662208199501,-22.065711869392544,-22.537164949811995,-22.416935198940337,-21.788316985126585,-22.590597386471927,-21.626157641410828,-22.574580979533494,-23.245996229816228,-22.313974305056036,-21.732209880370647,-21.29130612919107,-21.955262523144484,-22.514205714687705,-23.105944197624922,-22.85421196743846,-23.580994117539376,-24.394592895172536,-24.856199181172997,-24.124670231249183,-24.83714314410463,-25.551952505018562,-25.570717830210924,-25.055340697523206,-24.326178709510714,-25.32326658628881,-25.035629957914352,-25.078882462345064,-25.638291401788592,-24.92047072155401,-24.111838885117322,-24.957880232017487,-25.887334446422756,-25.973030635155737,-25.137465104926378,-24.373579839244485,-24.278882048558444,-24.5994072961621,-24.77423514286056,-25.76470538927242,-24.87001900654286,-24.82794746477157,-25.16888875886798,-25.257708719931543,-24.37543258909136,-23.810334890615195,-24.71864710189402,-24.207862976938486,-25.137079968117177,-25.660127357579768,-25.74570750258863,-24.93000853806734,-25.31094095017761,-25.061731038615108,-25.89240501122549,-25.124572524335235,-25.360070801805705,-24.982633052859455,-24.373758141417056,-24.547526760026813,-23.719419308938086,-23.48322763107717,-23.284769045189023,-23.660534989088774,-23.490495819132775,-23.10035667847842,-23.57249197596684,-23.29198284773156,-23.7893402162008,-23.105245198123157,-22.43026372883469,-22.81359535874799,-23.171278746798635,-22.196074937004596,-21.734158184845,-21.562941463664174,-22.230192405637354,-21.65967000136152,-21.376517694443464,-20.569738787598908,-20.03981667291373,-19.44156710896641,-18.537426457274705,-18.796600099187344,-18.471711139194667,-18.63330637756735,-19.451970177702606,-19.044948702678084,-18.18762492435053,-18.376228244509548,-18.328695682808757,-18.725133589934558,-19.185419789981097,-19.255924990400672,-18.725015599280596,-19.29373019794002,-18.364883974194527,-18.370413396973163,-19.309371961746365,-19.05861228145659,-18.61605765996501,-19.44677203334868,-20.11600730754435,-20.09763538185507,-20.305356176570058,-19.33873997302726,-18.697587893810123,-18.047177172731608,-18.040993625298142,-17.50076939817518,-17.389149721246213,-17.689692547079176,-17.064927369356155,-17.224662789609283,-17.4229589169845,-17.842174566350877,-18.445020225830376,-18.6140888328664,-19.077971503138542,-20.037411272060126,-20.30542411375791,-20.097979090642184,-20.170135866850615,-20.042820199858397,-20.207621439825743,-20.092967038508505,-20.589404842350632,-21.195904682390392,-21.46920346142724,-21.474216495174915,-21.17208848055452,-20.516238876152784,-20.266578304581344,-20.340929845348,-19.935801105108112,-19.74040735187009,-18.854371715337038,-19.025282954331487,-18.705032783560455,-18.14581406209618,-17.761837981641293,-18.688383046071976,-18.892088915221393,-18.872506998479366,-18.45199333783239,-18.312135555315763,-18.358141123782843,-17.990968871861696,-17.512858253903687,-17.673567838966846,-17.816092943772674,-18.66129013011232,-18.436549405101687,-17.55905516864732,-18.347457118798047,-17.61991080408916,-18.04050781344995,-18.365526338573545,-19.2991653252393,-19.287614881061018,-18.86140296701342,-18.500363464467227,-19.403102315962315,-20.36384227545932,-20.069810416083783,-20.391665619798005,-20.496802111156285,-20.247448217589408,-19.324485058430582,-18.38012030860409,-18.670855989214033,-18.546793796122074,-19.2846689382568,-19.955938293598592,-19.430877718143165,-18.910883146338165,-19.41160625219345,-18.553168250713497,-18.942267860285938,-18.17922772699967,-18.413159837946296,-19.207350317388773,-19.990431886166334,-19.567826836835593,-19.69521229946986,-20.50550372246653,-19.55112126097083,-20.346365661825985,-21.19252483919263,-21.520354576408863,-20.82281744852662,-21.757432037964463,-20.975086585618556,-20.79488523490727,-21.40410163300112,-21.285762364044785,-21.64413506211713,-21.57458559796214,-21.597661728039384,-21.533697770908475,-21.52197629585862,-21.815440711565316,-21.43693045573309,-22.039747692644596,-21.21739606047049,-21.196956823579967,-21.055567220319062,-20.730116211343557,-21.0385560314171,-21.31512846518308,-21.183318000286818,-20.804313816595823,-20.39979582792148,-19.628480091691017,-18.793149089906365,-18.846225613728166,-18.48549045762047,-18.32763996021822,-17.388434870634228,-16.632573561742902,-15.68695620028302,-15.288727512117475,-15.74246288323775,-15.713666052557528,-16.366602165158838,-16.341240183915943,-15.439032913651317,-14.702558110002428,-14.325178934726864,-14.100373207125813,-13.89246364030987,-13.878862349316478,-14.505575990770012,-15.100586316548288,-14.841869244351983,-15.727507896721363,-16.119465879164636,-16.577773776836693,-16.413522268645465,-16.30566245596856,-15.88621300458908,-15.4225805522874,-15.778092470020056,-15.97554528946057,-15.541930024977773,-16.46677938569337,-16.839736430440098,-16.047034624498338,-15.85202559409663,-15.674988236278296,-15.497062743641436,-15.334333075676113,-15.985644630622119,-15.14886977057904,-14.822697673458606,-14.695574594661593,-15.077074494678527,-15.257414813619107,-16.19211496692151,-16.978603155352175,-17.53699631243944,-16.57469220692292,-15.810274356044829,-15.27682514861226,-15.89057183964178,-16.19473824976012,-15.707497759256512,-15.156752910465002,-15.167886997573078,-14.279121113475412,-15.02871349081397,-14.760784084443003,-14.339113790076226,-14.468465458136052,-14.571088455617428,-15.12837455701083,-14.881558315828443,-14.620660950429738,-15.341864428017288,-14.767045936081558,-14.809608255978674,-15.670113305095583,-15.75991301285103,-15.025272308383137,-15.190086414571851,-15.067260365467519,-14.651930041145533,-14.620540931355208,-14.654811881948262,-14.480589813552797,-15.217153001576662,-15.304756276775151,-14.907700019422919,-15.439246353693306,-16.292229220736772,-16.381616501603276,-16.745251869782805,-16.2109863483347,-16.33603171305731,-15.37415581336245,-15.4740504110232,-14.712764635682106,-15.16642597084865,-14.631152943708003,-14.772367512341589,-14.557984293904155,-15.492740691639483,-14.50088367657736,-14.002967411186546,-14.781306392978877,-15.060693546198308,-14.404276684857905,-14.223106699995697,-14.000262182205915,-14.334801991004497,-14.79060235619545,-14.752815666608512,-14.607165007852018,-14.670698821544647,-15.505661469418555,-14.875312669668347,-14.25366394687444,-15.168128916528076,-14.727534578181803,-15.71786827314645,-15.656296803150326,-14.713745099958032,-14.800620630383492,-15.126240962650627,-14.438918970525265,-14.419740140903741,-14.471055134665221,-15.026410142891109,-15.364243693649769,-15.821930617559701,-14.868463373742998,-15.221808046102524,-14.994439281057566,-14.01376223191619,-14.901524013839662,-15.700172092299908,-15.304691253229976,-16.146946078632027,-16.816297591198236,-17.76858838228509,-18.64656210364774,-18.96250595897436,-19.713839708361775,-20.23757725628093,-19.464493825100362,-19.759109288919717,-19.448782758787274,-19.195591646712273,-20.106954738963395,-19.253172274678946,-19.259926307480782,-19.383439463097602,-20.317475751508027,-19.876220531761646,-20.58731587184593,-20.03649613633752,-19.652593187056482,-19.510675644502044,-18.647664551157504,-19.37983339605853,-18.719356467481703,-18.43777654878795,-18.852282417938113,-18.777888390235603,-18.779052020050585,-19.71063411096111,-20.255141978152096,-21.016898743342608,-20.396665263921022,-19.827211750205606,-20.447681670542806,-19.460055663716048,-19.372937235981226,-19.601364797912538,-18.929182649124414,-18.515685164369643,-18.12890194542706,-17.73028411855921,-17.57780996710062,-17.47933273622766,-16.48487921943888,-16.791425118688494,-17.280481457244605,-18.042049924377352,-18.50133712729439,-18.51038789143786,-19.131577563937753,-19.44827343057841,-19.11990998731926,-19.824625838082284,-19.088531039189547,-18.09736522845924,-18.513251267839223,-18.591979295946658,-19.342993462458253,-20.149127609096467,-19.695788910612464,-20.356875428929925,-19.688364507164806,-19.613064097240567,-20.165186868049204,-20.22431365121156,-20.286709851119667,-20.392831398639828,-19.912410205230117,-20.46891754074022,-20.227503606118262,-19.293036707211286,-18.923160749021918,-18.818431809544563,-17.918932549655437,-18.298553962260485,-19.096164054702967,-19.582786372397095,-19.25997065892443,-18.297362270765007,-18.6233078436926,-17.649901704862714,-18.352888618595898,-17.863681125920266,-17.82944579841569,-18.330316113308072,-18.409748415928334,-18.193460082635283,-18.38761123875156,-18.422229413408786,-18.877877135761082,-18.202335975598544,-18.145223793108016,-18.918257115408778,-18.258029862307012,-18.22195776272565,-18.873726363759488,-18.89286490250379,-19.495457330718637,-19.18649636907503,-18.94745427276939,-18.65565395075828,-19.582087411079556,-18.607806699350476,-18.89416990429163,-19.34804741293192,-18.372775960713625,-17.910375997424126,-17.568502556998283,-17.258027652278543,-16.939108307939023,-17.222692717798054,-17.246968596242368,-18.23277347581461,-18.409901822917163,-19.205948534887284,-19.671390055213124,-20.035101507790387,-19.688031452242285,-19.45597473392263,-19.16223782300949,-18.43357853963971,-18.372662853449583,-18.351482825819403,-19.15296509070322,-19.376770618837327,-18.77431510342285,-18.4660468660295,-18.667771239299327,-17.986868204083294,-17.34976982465014,-16.47752656461671,-15.721479703206569,-15.093825785443187,-15.858543832786381,-16.062052241060883,-15.520389380399138,-14.807502313982695,-14.225613745395094,-14.888841919600964,-15.386875540018082,-16.201776119414717,-16.17713787779212,-15.262218920048326,-14.307741256896406,-14.05573163786903,-13.981992410495877,-14.79638264188543,-14.32076639123261,-14.265862613450736,-14.78973505180329,-15.221558840945363,-14.592951072379947,-14.857916075270623,-15.251696501392871,-14.921298479195684,-14.8245904808864,-14.060515529941767,-14.669557840563357,-13.816668370738626,-13.402889142744243,-13.35075776418671,-13.314611399080604,-14.27926621073857,-14.82226307829842,-14.965331299230456,-14.60277939401567,-14.94423627667129,-15.702647749334574,-15.599858030676842,-16.23801522143185,-15.822176460176706,-16.141596040688455,-16.329635680653155,-16.505314671900123,-17.01811212254688,-16.129658952821046,-16.349784017540514,-17.30718751763925,-17.362445576116443,-17.00039518624544,-17.788380179088563,-18.39852363243699,-18.0166685776785,-17.031261612661183,-16.354687887709588,-16.100554989185184,-15.444618892855942,-14.859050314407796,-14.819601113442332,-15.019014237448573,-14.18421083688736,-14.3257798361592,-13.953748964704573,-14.097204450052232,-14.85585790593177,-13.889232642482966,-13.305219309870154,-12.472988182678819,-12.97126282285899,-12.49922775477171,-11.545928976964206,-11.980888199061155,-12.424155792687088,-12.441579607315361,-11.810377791523933,-12.141904472373426,-12.454583378508687,-13.137764752376825,-13.600702061317861,-14.233759431634098,-15.008342613931745,-15.701755139511079,-16.36346083879471,-16.843233888037503,-16.69216446019709,-16.28783057909459,-15.562367107253522,-16.366984574124217,-15.650647177360952,-15.477718958165497,-14.609930106438696,-14.169200837612152,-13.972815790213645,-13.993878377135843,-13.233270129188895,-12.23969808453694,-12.724735198542476,-12.144040579441935,-12.358914272394031,-12.838012590073049,-12.723015691619366,-12.212527033872902,-13.209872305393219,-13.092207700014114,-12.436874131672084,-12.377370444592088,-12.64225559681654,-11.711532111745328,-12.473889855667949,-12.337033874355257,-12.337748918682337,-12.16671244520694,-13.078227660618722,-13.222321917768568,-13.696325897239149,-12.872553501278162,-12.072393072769046,-12.473120373673737,-12.725246097892523,-13.468736984301358,-14.297030293382704,-14.00362848630175,-14.145449627190828,-14.829408911522478,-14.149578476790339,-14.291362932417542,-13.647280410863459,-14.15588165121153,-14.572159811388701,-13.989156305324286,-14.809545375406742,-14.214692197740078,-14.547853092197329,-14.02083365386352,-13.919241815339774,-14.199986418243498,-15.020198988728225,-14.432421646080911,-14.27528369706124,-14.086240884847939,-13.34267011238262,-14.076213523279876,-13.497701862826943,-13.519240176770836,-13.089932570233941,-12.503843836020678,-12.220953486859798,-12.181440515443683,-12.897305458318442,-13.805884411558509,-13.731310008093715,-12.998956154100597,-12.619047799613327,-12.994517263025045,-13.804108324926347,-13.70254671992734,-13.230342090129852,-12.866291991900653,-13.783034925349057,-13.836359257344157,-13.31371558830142,-13.990551550406963,-13.414485236629844,-13.355461474973708,-12.53165807807818,-13.163747085724026,-12.35158829530701,-11.931322518270463,-12.437498648185283,-11.864100563339889,-11.901488951407373,-11.995346575044096,-12.782319427933544,-12.774951372295618,-13.423714862205088,-13.773088501300663,-13.154062864836305,-12.306336896959692,-12.148783502634615,-11.361268560402095,-12.060605003498495,-11.330158091615885,-11.20669345697388,-11.333577143028378,-10.702711632475257,-11.430182329844683,-11.446211468428373,-12.085263688582927,-12.529358617495745,-11.983305674046278,-12.803089638706297,-13.358004814013839,-14.191551699768752,-14.46633078251034,-13.814624418504536,-13.270186961162835,-14.167385914828628,-13.725047683808953,-13.19959674589336,-12.719040953554213,-13.270018790848553,-13.611224741209298,-13.5879707778804,-12.741836520843208,-12.545399931725115,-12.677788998000324,-13.572970435023308,-14.294017779175192,-13.323634637519717,-12.872021042741835,-13.278845068067312,-12.325821967795491,-12.474778330419213,-12.341830119490623,-12.063841843046248,-11.33242807770148,-11.327332146465778,-11.709899187553674,-11.420456729829311,-12.340113542973995,-13.22304041357711,-14.172035468742251,-14.139072429854423,-14.309958298224956,-13.368041783571243,-13.798776338342577,-12.961066472809762,-13.960611044429243,-13.96507243765518,-13.240526945330203,-13.417498166207224,-14.072675460018218,-14.124698176980019,-14.345172657165676,-14.579111110419035,-14.752434179186821,-15.039763140957803,-14.732330228202045,-14.338394823018461,-13.45173583459109,-12.93835264397785,-13.54319962579757,-14.080321953166276,-14.224628638010472,-13.734986247960478,-13.235322690103203,-13.222230980638415,-13.945645770989358,-13.246330400928855,-13.301354140974581,-12.781822268851101,-13.51827020617202,-13.39355173939839,-13.294398377183825,-12.807630051393062,-12.643012796994299,-13.262181213591248,-14.223675268236548,-13.64583537587896,-14.190505370032042,-15.085102880839258,-14.64130819728598,-15.324969727545977,-15.444585320539773,-14.948635410051793,-14.444528402294964,-14.639181143604219,-15.209796071052551,-15.488004621583968,-14.593395580537617,-15.235735214315355,-14.959088173229247,-14.792650138959289,-15.576856561470777,-16.5689560896717,-16.494622465688735,-16.704403192270547,-16.609142082743347,-16.14525275537744,-15.64268728485331,-14.726634877733886,-15.136421058792621,-15.376488738693297,-15.487662012223154,-15.669084349181503,-15.100460770074278,-15.586438664700836,-14.84984068851918,-15.25519417738542,-15.039136729668826,-15.676780920941383,-15.251849625259638,-15.857263893354684,-15.129982127808034,-15.832567882258445,-16.05364215373993,-16.05114407883957,-16.62467863364145,-16.636825549881905,-16.93325411528349,-16.801179743371904,-16.66286933189258,-17.123980646021664,-17.408667820040137,-17.958269784227014,-17.678948825225234,-16.924033084884286,-16.999457352329046,-16.852364191785455,-16.088308316189796,-16.90668377513066,-16.903023704420775,-16.66172062419355,-15.872263731434941,-15.03723886795342,-14.634682554285973,-14.131950736511499,-13.271586604882032,-13.432117941323668,-12.679643032606691,-13.584105696063489,-12.61556787416339,-13.589550532400608,-13.38946331012994,-13.733522702008486,-13.145487838890404,-12.674105613026768,-12.170104783959687,-11.897183620370924,-12.719518492929637,-11.845357857644558,-12.131242203060538,-12.895754653029144,-12.811076946556568,-11.911789359990507,-11.8585707237944,-12.276842065155506,-13.2748599415645,-13.61292526870966,-13.628659099340439,-14.322193745523691,-13.517881728708744,-14.043125652242452,-14.396505950950086,-14.456355029717088,-15.358813198283315,-15.989595462102443,-16.113645346369594,-15.929289573337883,-14.933959336485714,-15.002171884290874,-14.769083378370851,-14.404221872799098,-14.812985098920763,-15.097088636830449,-15.028271382208914,-14.462388342712075,-13.887763603590429,-12.979383343365043,-12.830275692977011,-12.095403766259551,-12.244887604843825,-11.708117893896997,-12.340546182822436,-11.406320814974606,-11.658875417429954,-11.324996649753302,-11.390247436240315,-11.894588123075664,-11.483971246983856,-11.761949449777603,-10.79844399029389,-10.154102561995387,-10.307194470893592,-9.808545348234475,-10.656963064800948,-9.705357597209513,-8.856073808856308,-9.501593212597072,-10.299344601109624,-10.17291006539017,-11.063731657806784,-11.76440352667123,-12.38658802723512,-12.65434945980087,-13.202599640469998,-13.906310296617448,-13.407149956561625,-13.368757931515574,-13.972226626705378,-13.102113546803594,-12.429334875196218,-11.976389538962394,-11.68589375121519,-11.908542961347848,-11.122113032266498,-11.016868191305548,-11.588772738352418,-11.552922860719264,-11.016677297186106,-10.448457150254399,-10.138309639878571,-10.972056854516268,-10.945342930499464,-11.897341871168464,-12.487832360900939,-11.872069555334747,-11.073218412697315,-10.610901141539216,-10.305864658206701,-10.838739417027682,-10.17229821998626,-10.994834828656167,-11.616220330819488,-11.377135195303708,-11.544202416203916,-11.16544782789424,-10.442793487105519,-11.260740654077381,-10.350403144489974,-9.715487293433398,-10.153817002661526,-10.302181809209287,-10.046629736665636,-9.408354825340211,-9.466621413361281,-9.166857642121613,-8.238573061302304,-8.9755256366916,-8.910315984394401,-8.78865302959457,-8.040834846440703,-8.23810524540022,-9.037498445715755,-8.704631155356765,-8.149223843123764,-8.93845300655812,-9.603950889315456,-10.373702749144286,-10.179473902098835,-11.147260280326009,-10.890892843715847,-10.728500839322805,-11.087831671815366,-11.281030615326017,-10.75022587692365,-10.771655583754182,-10.16201540036127,-11.101292409934103,-11.556036991532892,-10.610058699734509,-11.298871586099267,-11.707439216785133,-12.608477148227394,-11.937621785327792,-11.662984101101756,-11.375685164704919,-11.076730142813176,-11.131948079913855,-10.25060173124075,-10.60862255981192,-11.282765206880867,-11.486640184186399,-11.41087895957753,-12.131445593200624,-11.584017134271562,-10.68995574535802,-9.924728532321751,-9.728981879074126,-10.147933529224247,-10.861644709017128,-10.000250328332186,-10.331313979346305,-10.440605241339654,-10.629298927262425,-10.359648771118373,-10.813033610582352,-11.437308173161,-10.69081715354696,-11.235666231717914,-10.810142543166876,-10.31759513868019,-10.898804477415979,-10.04273543227464,-10.14820471033454,-10.072521332651377,-9.257550772745162,-9.676414362154901,-9.022218119818717,-9.914168051909655,-8.991996994707733,-9.2656329581514,-9.115454070270061,-9.29272460239008,-8.732884504832327,-8.018770945258439,-7.925236904062331,-7.364276375621557,-6.660669303033501,-7.639370444696397,-7.154999129939824,-6.437628359999508,-7.191039743367583,-8.153792835772038,-7.1945924502797425,-6.777862748596817,-7.293359573930502,-7.679860396310687,-8.560576706193388,-9.234738966450095,-8.788857192266732,-8.54361873678863,-8.850395569112152,-9.500666541978717,-9.65994034986943,-10.3879260327667,-11.133254090789706,-10.160755987744778,-9.24395425664261,-9.64833314018324,-10.226254839915782,-11.190087929368019,-11.15842948667705,-11.103087013587356,-11.996321831364185,-12.358144531492144,-12.53267682949081,-11.796077747363597,-11.72518615052104,-11.187163457274437,-10.26459983177483,-9.695776090957224,-9.002879525534809,-8.745112539734691,-9.449060668703169,-8.944953890051693,-9.12060569692403,-8.638977156486362,-7.759632634930313,-8.711596336215734,-9.5226113894023,-9.044473597314209,-9.455188414081931,-9.83646885259077,-9.235728553496301,-8.41193698020652,-8.009259881451726,-7.4679683172144,-6.7515307064168155,-7.0959590170532465,-8.048375478480011,-7.135423482395709,-8.078013662714511,-7.89537348318845,-6.938956138212234,-7.4205396440811455,-8.417342416476458,-8.896180391777307,-8.592739758081734,-9.355253492482007,-10.13309682905674,-9.907649667467922,-10.298939280211926,-9.952855438925326,-9.186888832598925,-8.421089409850538,-7.883020177017897,-8.779398108366877,-8.35450233751908,-8.231122455559671,-8.03375377971679,-8.916665392927825,-9.392345352564007,-8.407338418997824,-7.426368640735745,-7.539021511096507,-8.446948131080717,-8.852500051259995,-8.302561172284186,-8.2372777024284,-8.759508915245533,-8.028148457873613,-7.090543620288372,-7.024955066852272,-6.896592130418867,-7.489699579775333,-7.698717101011425,-7.52964774472639,-7.058581179007888,-6.385175594128668,-5.760663428809494,-6.437137387227267,-7.352965178433806,-8.089765526354313,-8.129686182830483,-7.816952642053366,-8.66570026986301,-9.36154020857066,-10.000872718635947,-9.26051853876561,-9.092026160564274,-8.724512952379882,-9.575033064931631,-10.305839199572802,-9.788045867346227,-10.743863030336797,-10.686252797022462,-11.665417563170195,-11.83038928732276,-11.340597702655941,-11.045050533488393,-11.322879900690168,-10.685075629502535,-10.722428389359266,-10.163736114744097,-10.634816953446716,-10.89647493744269,-11.53584981430322,-11.037200222723186,-11.898542472627014,-11.636918131262064,-12.592372897081077,-12.488774793222547,-12.993058964144439,-12.918911057990044,-13.48055974394083,-13.157280434388667,-12.340715000871569,-12.581255713943392,-13.195567462127656,-14.113129912875593,-13.637872199062258,-14.053358568344265,-14.805055523756891,-14.57064804667607,-13.958885786589235,-12.968257119413465,-12.437446360476315,-12.032398709096014,-11.28219628566876,-10.522430489771068,-9.74938150215894,-9.218662928324193,-10.1464260132052,-9.59805879695341,-9.856200979556888,-10.078455236274749,-9.808506845962256,-10.676699617877603,-10.399995957966894,-9.617926062550396,-9.21640888787806,-10.185605878010392,-10.415897677652538,-11.023355294018984,-10.515714935027063,-11.400463262107223,-11.798019856680185,-12.501030307263136,-13.498009112663567,-14.09547196701169,-14.657976207789034,-14.168497810605913,-13.566632552072406,-14.359266182407737,-14.711043521296233,-13.915665065869689,-13.082380022387952,-12.52819686429575,-11.941210479475558,-11.604747949168086,-12.44852821296081,-12.942029890138656,-13.72638695128262,-14.497011133935302,-13.598860235884786,-14.10796957090497,-13.821439993102103,-14.43395254155621,-14.29993236111477,-14.924760130699724,-14.130092178005725,-14.24145595729351,-13.74459552532062,-13.880736018065363,-13.463444286491722,-13.709338447544724,-14.098030602093786,-13.153193697333336,-13.072459606453776,-13.566758107859641,-14.200727090705186,-13.658294852823019,-13.345302274916321,-13.066032333765179,-13.3532105688937,-12.619201366323978,-12.65394180547446,-13.599754923488945,-13.21983877569437,-12.571513229981065,-11.69224031502381,-11.244168954901397,-11.543889136053622,-11.584546444471925,-11.940658424049616,-11.539616455789655,-12.082034803926945,-12.960557928308845,-13.301985714118928,-13.081634316593409,-12.81088989181444,-13.334691863972694,-13.275810952764004,-14.191145611926913,-13.634809934534132,-14.043046067468822,-14.183381819631904,-13.961649049073458,-14.594690986908972,-14.730013696476817,-14.806914338842034,-15.262257657945156,-16.012475580442697,-15.329929751809686,-16.13438168959692,-15.294552277307957,-14.42968989117071,-13.480849403422326,-13.464960111770779,-12.534279105253518,-12.443565384950489,-11.956307857297361,-11.76867807796225,-11.419480974785984,-10.582203685306013,-11.339370298665017,-11.72857999196276,-12.644706810824573,-12.119259695988148,-11.392679174430668,-10.605408005882055,-10.385562342591584,-10.766380458138883,-10.984555371105671,-10.62496940093115,-9.67023069318384,-8.971346547827125,-9.347191339824349,-9.497093542478979,-10.342337184585631,-9.967805518768728,-9.541143453679979,-10.10431208834052,-9.620827200822532,-9.278878254815936,-9.441613505128771,-9.637383976951241,-9.828885920811445,-10.54103956464678,-11.41806522803381,-11.244998667389154,-11.482445162720978,-10.633549354504794,-10.65613458212465,-11.06295518251136,-10.198581209406257,-9.564671782776713,-10.461264728102833,-10.29082248173654,-9.769621541723609,-9.620159237179905,-10.467615493107587,-10.423426791094244,-9.661043806467205,-9.662708243355155,-8.701624272856861,-8.529697811696678,-9.346396734472364,-9.592452607117593,-9.050695234909654,-8.414882342796773,-8.148921548388898,-8.58490221388638,-7.86990084964782,-8.51229266775772,-8.585291211493313,-8.31685795309022,-8.415445790160447,-7.549520359374583,-7.932454050518572,-8.693012038711458,-8.06889648269862,-8.330645572859794,-8.057506820652634,-8.132993223611265,-7.515684233047068,-7.87707237014547,-8.247323437593877,-8.938583668787032,-8.717708688694984,-8.277083490975201,-8.284346842207015,-8.299739216454327,-9.002503393217921,-8.332331089302897,-8.528287140186876,-9.080647835042328,-8.618668431881815,-8.014068513642997,-7.47063677245751,-7.604368960950524,-6.821275855414569,-7.775664402171969,-8.461772739887238,-8.265786469914019,-7.606217543128878,-8.249709802214056,-7.3516245651990175,-7.042792358901352,-7.905446429736912,-7.469391338527203,-7.420515246223658,-7.122126719914377,-7.534665323328227,-8.43782357359305,-7.854679575189948,-8.37657762086019,-7.881413926836103,-8.1599205955863,-7.99370462493971,-8.30884710373357,-8.528805335052311,-9.345728009473532,-9.717355317436159,-9.942150353919715,-9.23950870335102,-9.030042937491089,-8.987494174391031,-9.307370642665774,-8.53655112022534,-8.68608719483018,-9.457200586330146,-9.871169936377555,-10.26434736745432,-10.061868537217379,-9.629028696101159,-10.2484723883681,-11.048319626133889,-10.695252032019198,-11.602861993946135,-12.054892285726964,-12.409603111445904,-13.052888680249453,-13.226111713796854,-12.632785157300532,-12.147944614756852,-13.128147945273668,-12.38542636251077,-11.470010799821466,-10.881705415435135,-10.56699241604656,-11.556313196662813,-12.245284997858107,-13.0699940090999,-12.193209459539503,-12.511749200057238,-13.004584725946188,-12.088385063689202,-11.343098192941397,-11.854565146844834,-12.52915339404717,-11.98814231948927,-12.906443199608475,-13.8860854790546,-14.767390267457813,-15.49693610984832,-15.462557582184672,-15.218248052988201,-14.732031202875078,-15.356955723837018,-14.75869256304577,-14.8182055298239,-15.440964167937636,-15.611801083665341,-16.266645221039653,-16.70050639566034,-15.701233147643507,-15.50020052306354,-15.385466766078025,-16.320931727532297,-16.805599331855774,-17.33539662975818,-16.474140333011746,-16.852489851415157,-16.86824047099799,-16.57642431743443,-16.828852488659322,-16.47893548803404,-15.5866615655832,-15.68492296198383,-16.441104773897678,-17.31954990653321,-16.7382142143324,-15.826396635733545,-15.156044204253703,-15.364133834838867,-14.426989808212966,-14.436961859930307,-14.019432588480413,-13.31238798238337,-13.557136136107147,-14.063058038707823,-14.254788657650352,-13.982383706606925,-13.701240550726652,-14.124038781039417,-13.305264530237764,-13.851531451102346,-13.62443433329463,-12.964667920488864,-12.20918345125392,-12.964579176623374,-13.769531272351742,-13.909313004929572,-14.178663522470742,-14.436477666255087,-13.824648508336395,-13.166294352151453,-13.219994857441634,-13.740206913556904,-13.879868471529335,-13.889073762577027,-14.178879830986261,-13.675381548702717,-12.857819740194827,-12.972295719664544,-12.230251726228744,-11.272662851028144,-10.940635310485959,-11.411353909876198,-11.95155578525737,-12.104837832506746,-12.733912407886237,-13.710413014050573,-13.342991488985717,-14.217323770280927,-14.21493807155639,-13.716760124079883,-14.715056440792978,-15.403816495090723,-14.478365061338991,-13.547697785776109,-14.203527614008635,-14.409742264077067,-14.732578585855663,-14.198597719427198,-14.753349826205522,-15.159220057539642,-16.07630355283618,-16.136959847062826,-16.26542993588373,-15.2697514584288,-15.958649097010493,-15.590576013084501,-15.167846338357776,-14.98520673951134,-15.268831834662706,-14.47192480461672,-13.946972524281591,-14.404455397743732,-14.731846462003887,-14.465001417323947,-14.094470193609595,-13.78404652979225,-13.35883324360475,-13.51803126418963,-13.563732772599906,-13.402962353546172,-13.409472125116736,-13.166439182125032,-13.086059029679745,-12.720979456789792,-11.86804678849876,-12.380920639727265,-11.983263824600726,-11.483825892210007,-11.045255332719535,-11.441182144917548,-11.67782369395718,-10.882811435498297,-10.28932816721499,-10.64190248819068,-11.275432380381972,-10.944692915771157,-10.699092471972108,-10.196019091177732,-9.580751842353493,-9.057507365942001,-9.605205626226962,-9.018471618182957,-9.989548692014068,-9.642151745036244,-10.009786518290639,-10.510233534965664,-9.986771781928837,-9.983889698982239,-9.637613131199032,-10.392959862481803,-10.59807810653001,-10.938305173069239,-10.442286622244865,-10.759240574669093,-9.963060965295881,-10.616446402389556,-10.961885389871895,-10.698437945917249,-11.030242041219026,-11.712878377176821,-11.767722519580275,-12.050873135682195,-12.7769731618464,-12.77448275173083,-13.103416176512837,-13.341125776059926,-13.856930350419134,-13.08612802438438,-12.74275328963995,-13.334062958136201,-13.419478804338723,-14.328450944740325,-13.542278933804482,-13.447540962602943,-13.898520805407315,-13.07167707523331,-12.170657748356462,-11.68129143724218,-11.1017348584719,-11.879260568413883,-11.494596069213003,-11.465357226319611,-12.322146373800933,-11.57966424478218,-12.543115068692714,-12.187896539922804,-11.707210956141353,-12.490249494090676,-12.366233775392175,-11.722176086623222,-11.543174467049539,-11.944651344325393,-11.69542911555618,-11.306295338552445,-11.420365817844868,-11.498662060126662,-10.505214204080403,-9.593389373738319,-9.270678306464106,-9.492272658739239,-10.174941834062338,-9.951888755429536,-10.254329945892096,-9.416015175171196,-8.660929857287556,-9.584533674176782,-10.493191267363727,-9.78685612604022,-8.920974645297974,-9.130753156263381,-8.694401198066771,-8.75417405879125,-9.07274210266769,-9.860868594609201,-9.905005137901753,-10.88625264633447,-10.594558767508715,-10.466133862733841,-11.171148751396686,-10.320229624863714,-9.492491830140352,-9.419258669950068,-9.834396393503994,-9.600277653895319,-8.884642077609897,-9.523104941938072,-9.808005438186228,-10.665679516270757,-10.49706673854962,-11.430973717477173,-10.870603071060032,-10.229589994996786,-9.480153792072088,-10.277207889128476,-9.300416038837284,-10.294991316273808,-9.820242436602712,-10.425436984281987,-10.171952101867646,-10.578894779551774,-10.212341483216733,-9.34989665960893,-9.15011245617643,-9.374832642264664,-9.25936155486852,-8.425334037281573,-8.800701479893178,-7.884829847607762,-7.925069494638592,-8.286335015203804,-7.681671746540815,-7.390221542678773,-7.360674464143813,-6.411498582921922,-6.6517420136369765,-6.4123250702396035,-7.231226688250899,-7.8276057336479425,-7.182013208977878,-6.989684171974659,-6.371427673846483,-5.427335990127176,-6.038308530114591,-6.3465238297358155,-5.6755150384269655,-4.892501161899418,-4.890252739656717,-4.1124264555983245,-4.309698344673961,-4.279679587110877,-5.105275757145137,-4.772449995856732,-4.533569363877177,-3.65744021628052,-3.399520364124328,-4.202572818379849,-4.548120276071131,-5.274117774795741,-5.914104026276618,-6.6496363203041255,-7.286979345139116,-6.992683177348226,-7.243370886426419,-6.2779949167743325,-6.085167612414807,-5.520048792473972,-6.053066844586283,-5.9463957459665835,-6.440533253364265,-7.103918761014938,-7.5189877627417445,-6.833512159530073,-7.018470894079655,-7.52394130686298,-6.803178055677563,-6.75694789364934,-6.968333509285003,-6.2680406756699085,-7.165317501872778,-6.648749313317239,-6.523018229752779,-7.434177569113672,-7.391635282896459,-7.589814597275108,-7.922544083558023,-7.078648555558175,-7.202760122250766,-6.419560601003468,-5.782755559775978,-5.119093489833176,-4.653620050754398,-5.287152583710849,-5.290978007018566,-5.459581893868744,-5.074849518015981,-4.601918050087988,-5.193117911927402,-5.320591622497886,-6.269565414171666,-6.335404370911419,-6.281265091150999,-5.370900033507496,-6.290236852131784,-6.237708588130772,-6.986539219040424,-7.92188548669219,-7.953089622780681,-7.802779949270189,-7.8254548707045615,-8.508765658829361,-8.897678122855723,-8.285341570153832,-8.717750949319452,-8.845122779719532,-8.891468870453537,-9.03551815962419,-8.399774795398116,-7.714218731503934,-7.181556157302111,-7.3404576680622995,-7.501909815240651,-8.086831353604794,-8.989292991813272,-8.597547736018896,-9.299918053671718,-8.787342986091971,-9.4881058675237,-9.745434981305152,-9.051479757763445,-9.239843628369272,-9.397278034128249,-8.74243951169774,-8.171512318309397,-7.875993891153485,-7.402467357460409,-7.583744861185551,-6.854017665609717,-6.913351117633283,-7.426932342350483,-6.954282414633781,-7.259712765458971,-7.6686502187512815,-7.582456416450441,-8.182048376183957,-7.7868466936051846,-8.473840622231364,-8.226691134739667,-7.905756895896047,-7.105302517302334,-6.5787215596064925,-5.85432780534029,-5.661247040145099,-6.601563480682671,-7.523168900515884,-8.007920644711703,-7.671511164866388,-7.359223037958145,-6.912026995327324,-7.750487340148538,-7.390583951957524,-7.030451199505478,-7.088770839385688,-6.746160064358264,-7.077786612790078,-7.771477422211319,-6.86708002910018,-5.940091840457171,-6.332730083260685,-5.592303240671754,-5.345347432419658,-5.905439560301602,-6.581765213049948,-6.725315049756318,-6.513438014313579,-6.596847748849541,-6.430404904298484,-6.749548655003309,-6.261698112357408,-5.8921152194961905,-6.070114794652909,-5.620796350762248,-5.118522591888905,-5.041116436943412,-4.980783553794026,-5.0762281669303775,-5.769457181915641,-6.362130924593657,-5.832909680902958,-5.229961023665965,-5.429938503075391,-6.128968058153987,-6.326081048697233,-5.871608394663781,-5.630695950239897,-5.4501637243665755,-4.769948723260313,-4.698645233176649,-5.311756873968989,-6.276203007437289,-7.071010479703546,-6.635782452300191,-5.835636592004448,-5.138484795112163,-5.578651021234691,-4.707298137713224,-5.389850046951324,-4.886887762695551,-5.32957696961239,-4.984599630814046,-4.30802418384701,-3.572938672732562,-3.863511649891734,-2.8912774748168886,-2.9172173109836876,-3.4434470129199326,-3.9272732618264854,-4.174293235410005,-3.851567556615919,-4.332443374209106,-5.272227319888771,-4.818290736991912,-5.441266709938645,-5.365204397123307,-6.295937035232782,-6.248481484595686,-6.416216677520424,-6.783103215508163,-6.9919194602407515,-6.6113491440191865,-5.764722601510584,-4.91388635430485,-5.04518493777141,-4.96080620540306,-4.606183698866516,-5.3729730960913,-5.135180567391217,-4.189145997632295,-3.1999696125276387,-3.142377382609993,-2.4204689199104905,-3.4190771807916462,-4.324612385593355,-3.9687780803069472,-4.256719670724124,-3.5559682734310627,-2.7618525330908597,-2.563898814842105,-2.670783698093146,-2.1398863871581852,-1.987665151245892,-2.4174843900837004,-1.8452740972861648,-2.7004962814971805,-3.6366668343544006,-4.403550728689879,-4.5680239223875105,-4.891928189899772,-4.511269642971456,-4.241563488729298,-4.680377794895321,-4.176579107996076,-3.912405484355986,-3.282816271763295,-3.8386770845390856,-4.566478335764259,-3.941806839313358,-3.3293211115524173,-3.447915210854262,-3.51669481350109,-3.5119835902005434,-3.6417395449243486,-4.101594049017876,-3.477557570207864,-4.06725242966786,-4.265404765959829,-4.382967262994498,-4.617254009470344,-4.7320675840601325,-3.9445021906867623,-4.520737072452903,-5.508802485186607,-6.0524255111813545,-6.669638318940997,-7.47841480653733,-7.207405515015125,-8.128845979459584,-8.389452771283686,-8.531427626963705,-9.19759408896789,-9.12448521796614,-9.081530363764614,-9.087749778293073,-9.75430799741298,-9.861631084699184,-9.327945682685822,-9.286693455651402,-9.740107683930546,-8.868977796286345,-8.462392041925341,-7.651344761252403,-6.80268329102546,-6.0680108815431595,-5.891106870491058,-6.869317899923772,-6.004141407087445,-6.488958584610373,-6.476962853688747,-5.683518730569631,-5.716199725866318,-4.992271007038653,-5.562682766932994,-5.394746298901737,-5.732236403040588,-5.071392373647541,-5.014268435537815,-4.04679382732138,-3.4574583671055734,-3.1917548277415335,-3.6420873566530645,-3.0628642314113677,-3.3060510349459946,-2.3368624201975763,-1.4582299860194325,-2.1133079058490694,-1.2304798834957182,-1.1189130139537156,-0.18874188885092735,-0.787803650368005,-0.13087262772023678,-1.0529732061550021,-1.6619239170104265,-0.9715148429386318,-1.0566465556621552,-0.7760286959819496,-1.602432630956173,-1.9327621096745133,-0.9527892866171896,-1.8006364055909216,-2.635157283395529,-3.3989286376163363,-2.9191143247298896,-2.534728487022221,-2.5512879053130746,-2.3984489287249744,-1.866854336578399,-1.7190249683335423,-1.421990767121315,-1.916296707931906,-1.0786327421665192,-1.7044760324060917,-2.2881268132478,-1.4436212345026433,-2.113619035575539,-1.9457898722030222,-2.5510796634480357,-3.489310497418046,-3.749406083021313,-2.858032563701272,-3.2379000945948064,-2.6833895472809672,-1.9281805520877242,-1.1711674639955163,-1.0935448021627963,-0.7937706168740988,-0.4310463685542345,-1.181874515954405,-0.955281755886972,-0.4565358394756913,-0.790437794290483,-1.276536816265434,-1.3095181682147086,-0.9683200707659125,-1.6040828214026988,-0.8419884596951306,-0.4444549367763102,-1.054155832156539,-0.3066253447905183,-1.266661923378706,-1.9985846332274377,-2.9002407332882285,-2.874061363283545,-2.1621929313987494,-1.4772668527439237,-0.9986557574011385,-0.7315657762810588,-1.1837735353037715,-1.6776560600847006,-0.687779700383544,-0.3214524216018617,-0.9916604957543314,-0.9993308857083321,-0.05220930930227041,-0.039582124911248684,-0.5412774640135467,-0.7043708870187402,-0.6823480920866132,0.20885844714939594,-0.5356337395496666,-0.2528579868376255,-0.18983888207003474,-0.20019638910889626,-0.8171823425218463,-0.2876922804862261,-0.3573128506541252,0.49742934852838516,-0.212634420953691,0.17452960787341,0.9798009619116783,1.3819347298704088,1.4462779085151851,1.9727126029320061,1.2759798527695239,1.717659031972289,1.0752299870364368,0.13939772872254252,0.6606636880896986,1.446929688565433,1.6372731681913137,2.126238560769707,1.769630582537502,2.314446792472154,2.880330005194992,3.660811372101307,4.403880853205919,4.238938056398183,4.535612805746496,4.159828862641007,3.6284222188405693,3.6098029958084226,4.530976803041995,5.344728499185294,4.9386421968229115,5.800524451304227,6.064938883762807,6.931515955366194,6.381684482563287,7.322165260557085,6.646737145259976,6.095838322304189,6.895607124082744,6.227597099263221,5.921521103475243,6.533607285004109,7.480871950741857,8.327733143232763,8.801661510020494,9.011963507626206,9.279582254588604,8.833078742492944,9.585460731759667,9.447073682677,10.387045974843204,10.14192723017186,9.71013621846214,9.510547854471952,9.126232266891748,9.242478402331471,10.044822540599853,10.516139058861881,10.652592743746936,11.48181225778535,11.213364517781883,10.971421893686056,10.934044057037681,11.209836865775287,10.900948760099709,11.731311102863401,12.675846254453063,12.521552025340497,12.798509907443076,13.493849215563387,14.151781362947077,14.442506658378989,14.16404126631096,14.66411598585546,14.548219615593553,14.648149590939283,14.106925370171666,14.17142693977803,14.49354444257915,13.55169876711443,13.938637498300523,14.607589213643223,14.636732614133507,14.043428535107523,14.022759954445064,13.169588987249881,14.12299188459292,14.829153889324516,14.41834930703044,13.836230109911412,14.280274451244622,14.136402437929064,14.22781250718981,14.000054353382438,14.074671470094472,13.850337971467525,14.044535923283547,14.910583679564297,14.055066656321287,14.221468226984143,13.405542821623385,12.721358142793179,13.596282032318413,12.621046170592308,12.357651694212109,12.440496540628374,13.101767833344638,13.325073804706335,12.604149132966995,13.318513335194439,12.624739050399512,12.657060045748949,12.29208299703896,12.390105968341231,11.645729733165354,11.89414338953793,12.04331811517477,11.743897431064397,10.868942614179105,11.791578222066164,11.634606264997274,12.123379822820425,12.850026078522205,13.324445656035095,12.940453394781798,13.598854486830533,14.411064102314413,14.81585750123486,13.850698898080736,14.527117331046611,14.536623273976147,15.275836746674031,14.42987555405125,13.807818454224616,13.824695685878396,13.341895018704236,13.768709647934884,13.189368850085884,14.026948063168675,13.14753035781905,13.648096065036952,12.765883426181972,12.95724136615172,13.044642687775195,12.13070724438876,11.72217266401276,10.819138938561082,10.097249744459987,10.596014292445034,10.025840662885457,9.563659668434411,9.941541014704853,9.332031240221113,10.161195076070726,9.400188757572323,9.788454876746982,9.094699308276176,9.625719281379133,10.582312596496195,10.086049893405288,10.988667916040868,11.838260786607862,12.517061266116798,12.420584443956614,13.022313877940178,12.596484130248427,13.14366283500567,13.701425429433584,13.154836794827133,12.88188950298354,13.526862199883908,13.720332512166351,14.414858493488282,13.713694057893008,12.738680664915591,12.186543617863208,12.291176560334861,12.928649879060686,12.056847743690014,11.891718913801014,12.634960905183107,13.189469405449927,13.110925294924527,12.23034248361364,11.710736706387252,11.885855271946639,11.794297409709543,11.269919246900827,10.665976266842335,9.78863402409479,10.514070553239435,10.129037071485072,9.160650345496833,8.868048999924213,8.174820576328784,8.717555535025895,7.720354950986803,7.335557002574205,7.5137026170268655,7.474964806810021,6.909205412026495,7.247418254613876,7.3156362739391625,8.224330203607678,7.738341524731368,8.20919276215136,7.763571202754974,7.814698187634349,6.927891076076776,7.138666921760887,8.056910360231996,7.11470005614683,6.1164710582233965,7.112639099359512,6.427802485413849,7.138416481669992,6.258078742772341,5.994709077756852,6.483857925981283,5.994026354514062,5.0431265267543495,4.412716522812843,4.545714741572738,3.710454201325774,4.057125971652567,3.287412043195218,3.3315185732208192,2.3396739596500993,1.6244974229484797,0.6775684989988804,0.12957064108923078,0.20637711230665445,0.2059906991198659,0.0716125974431634,-0.1635054973885417,-0.14857444260269403,0.7853707168251276,0.5727599374949932,0.8032339094206691,0.46382997930049896,1.381784237921238,1.4141857749782503,0.9089495721273124,0.4665190139785409,-0.38588502537459135,-1.2575067030265927,-0.6690870998427272,0.0680132769048214,-0.8801284576766193,-1.0996603472158313,-0.49488192331045866,-0.7005226304754615,-0.09083949541673064,-0.5019799992442131,-0.7730859098955989,-1.634987040888518,-1.9863846465013921,-2.0265968777239323,-1.7691046567633748,-2.007103759329766,-2.255650398787111,-2.6542906584218144,-3.020625573117286,-3.3318428276106715,-3.929162848740816,-3.046300809830427,-2.2376073612831533,-2.0729401083663106,-1.305764751508832,-0.35181238502264023,-1.3383507765829563,-1.4504275964573026,-2.2874635704793036,-1.7372197415679693,-2.697791582904756,-1.7087979367934167,-2.1645654034800828,-2.87225669529289,-2.60905768815428,-3.0880801654420793,-3.339519176632166,-3.047587709967047,-3.2379049817100167,-3.920394524000585,-4.361391518265009,-3.706170728430152,-2.748675962910056,-2.7048002621158957,-2.743959127459675,-2.600307945627719,-2.998203702736646,-2.3792280671186745,-2.576374159194529,-2.53658435260877,-2.2312675025314093,-1.8980459282174706,-2.847747321706265,-2.5333155156113207,-2.890713505912572,-3.8829460199922323,-3.205084541346878,-4.091523663140833,-4.076504437252879,-4.1431009960360825,-3.856200687587261,-4.01009579282254,-4.198644928634167,-4.480195298790932,-3.657192879356444,-4.398864559829235,-3.4071965562179685,-2.5384861808270216,-2.831810522824526,-3.1126516135409474,-4.00187722640112,-4.858680899254978,-4.120831809006631,-5.1112721473909914,-4.620566266123205,-5.039757599122822,-5.4669910706579685,-4.806988100986928,-4.687442135065794,-4.919991406612098,-4.2175661865621805,-3.3193511362187564,-3.647017300594598,-4.10696559632197,-3.2949842722155154,-4.241105493158102,-3.7376072644256055,-3.1420700903981924,-3.470901976339519,-3.1429897234775126,-2.581645400263369,-3.092021368909627,-2.38875517481938,-2.920545785687864,-2.956152818631381,-3.711598872207105,-2.853116028010845,-2.882457757368684,-3.705740009434521,-3.007739898748696,-3.357070087455213,-3.1169102708809078,-3.6292677563615143,-4.016431912779808,-4.070980257820338,-4.072426994796842,-4.896963552571833,-5.158208385575563,-4.573426397051662,-5.231823505833745,-4.589783001225442,-3.8535737050697207,-2.9192870440892875,-2.313914016354829,-2.810535319149494,-2.7594192544929683,-3.4247687528841197,-3.382514022756368,-3.092153545934707,-2.471678094007075,-3.458928022533655,-3.034973557572812,-3.839485247153789,-4.259714717511088,-3.698332383763045,-3.3266247217543423,-2.9528908361680806,-3.2714906125329435,-2.2898156722076237,-1.9100636164657772,-1.2412997358478606,-1.6115099117159843,-1.9942401321604848,-2.2209974750876427,-1.3254346027970314,-2.0192929352633655,-1.8408342278562486,-1.2832097285427153,-1.7297043930739164,-1.3870487045496702,-0.6947194342501462,-1.564239270053804,-2.0436580232344568,-1.5955690732225776,-0.6622995906509459,-0.39259066293016076,-0.6402949211187661,-0.5940175261348486,-0.4884622120298445,-0.4905998343601823,-0.1014212085865438,-0.9001877005212009,-0.021679424680769444,0.4305621525272727,-0.5262613752856851,-0.1917944699525833,0.3380919797345996,0.27367565082386136,-0.5757521907798946,-0.20745819993317127,-0.16427924018353224,0.3821429340168834,1.3077426948584616,2.253136921674013,2.774830227252096,2.392649828456342,1.6956108156591654,0.9400275037623942,0.31613235361874104,0.5835185605101287,0.3628606158308685,0.8375646588392556,-0.11370684672147036,0.818301425781101,0.4061742532067001,-0.18409049836918712,-0.33524082973599434,0.656631579156965,0.5581127246841788,0.6731581799685955,1.4677066560834646,1.3162549631670117,1.4065548926591873,0.5885859527625144,0.9942894452251494,1.6163466954603791,2.463440699968487,1.845029931049794,2.274361303076148,2.304063681513071,2.4378807679750025,3.328859739471227,2.85386900883168,3.1152389785274863,2.61777688190341,2.5011927634477615,2.360326435882598,1.5672936728224158,1.0025571114383638,1.6665063765831292,1.4266383945941925,1.963432113174349,1.3879249324090779,0.7945300913415849,0.023275803308933973,-0.5055815791711211,0.3352530621923506,1.145686600357294,1.5012474618852139,1.8257881980389357,2.4107864345423877,2.415576595813036,1.8590885200537741,2.120470578316599,2.7830895171500742,3.0877018314786255,2.9690843005664647,3.618962550070137,3.8377397512085736,3.7611289150081575,2.882874958217144,3.22018117364496,2.7233110670931637,2.8113354458473623,3.0603331164456904,4.051766138523817,4.415180984418839,5.023758352268487,5.619215189944953,6.343234610743821,5.456630437169224,4.652275988366455,4.566109523642808,4.513259542174637,4.756249763071537,5.751760128419846,5.657034623902291,5.396224211901426,5.021670168731362,4.072984728962183,4.536230450961739,5.268338891677558,4.63174399221316,4.780258579645306,5.401983272284269,4.788570154923946,4.477088369894773,4.77952724089846,4.591469592414796,3.7417701026424766,3.118345371913165,2.120719618629664,1.3754530707374215,0.6295283087529242,-0.19316827319562435,-0.9070139676332474,-1.285939217545092,-1.6033147843554616,-2.378382361959666,-3.14906411152333,-3.7492694654501975,-2.860914065502584,-2.928365005645901,-3.678373408038169,-4.632526258006692,-4.222276812884957,-3.2387763136066496,-3.3034681398421526,-3.5515062790364027,-3.390953022055328,-4.231265033129603,-5.194626071490347,-5.272427874151617,-5.6441778019070625,-5.729300704784691,-6.173749750945717,-7.011805430520326,-7.53800232289359,-8.196772904135287,-7.952699027489871,-7.870751961134374,-8.755242044571787,-8.137908052653074,-7.750914932694286,-7.966070374939591,-7.951259337365627,-8.042501910123974,-8.675374336540699,-7.899027953855693,-7.0919397310353816,-6.392821227200329,-6.049201538786292,-5.666955183260143,-6.126754914876074,-6.543177261017263,-7.062767737079412,-7.834498006850481,-6.879198755603284,-6.537699652835727,-6.725338388700038,-6.573594079352915,-7.037370857782662,-6.934092735406011,-6.396607152186334,-6.019039788283408,-6.005193057935685,-6.21478853141889,-6.101542331278324,-6.387583520729095,-6.084147508721799,-6.9929572669789195,-6.105365593452007,-5.34052324667573,-5.446511393412948,-6.230319632682949,-5.480869040358812,-6.108640710823238,-6.452181752305478,-7.349714033771306,-6.954334824346006,-6.557374876923859,-6.432076213881373,-7.406563849188387,-6.774495481047779,-6.369630354922265,-7.044275741092861,-7.360412825830281,-7.811368708033115,-7.1112355487421155,-7.266877735964954,-6.740422724280506,-7.106696656905115,-7.579011155292392,-7.4906318401917815,-7.1351765831932425,-7.744301249738783,-7.8713315753266215,-8.026240998879075,-8.459163935855031,-8.159812240395695,-8.902392977382988,-7.9788442137651145,-8.275583415757865,-9.213597587309778,-9.749606283381581,-10.430809118784964,-10.086577497422695,-9.22090777894482,-9.750404770951718,-10.237178214360029,-10.37436080398038,-9.532415776979178,-8.677258248906583,-7.7556922803632915,-7.675823177210987,-8.201372526586056,-8.789012712426484,-9.681832257192582,-9.70022537978366,-10.54225309053436,-11.064341431017965,-10.289219175465405,-10.511632076930255,-10.299786532763392,-9.70905369380489,-8.829144700430334,-8.144626294728369,-7.882661897689104,-8.721965634264052,-8.07616593549028,-7.561240554321557,-7.674529361072928,-7.196302676573396,-6.642403981182724,-6.690080599393696,-7.481153376866132,-6.515663621947169,-6.808128009084612,-6.244493176694959,-6.613190081436187,-6.009877983480692,-5.265424035023898,-4.730261884629726,-4.929200780112296,-5.64833163889125,-4.6491182735189795,-4.270024001598358,-3.3850977923721075,-2.389175657182932,-1.5608378774486482,-1.8877700152806938,-1.9959178040735424,-1.8619446926750243,-1.8954553506337106,-1.4900525216944516,-2.1709949015639722,-2.997062725480646,-2.635291265323758,-1.8455153396353126,-0.8630079440772533,-1.0010831695981324,-0.745904338080436,0.15570569317787886,0.7002609218470752,0.694562332239002,1.1234830133616924,1.2549234325997531,1.7308779526501894,2.5685966736637056,3.3986085057258606,2.797407907899469,3.5412860680371523,3.365653496235609,3.4987852587364614,3.5663361861370504,2.849222418386489,2.0513464473187923,3.048707716166973,2.1602334110066295,2.7013352694921196,2.105715436860919,1.8022252158261836,0.874169266782701,0.7487371549941599,1.5203175488859415,1.5938773164525628,1.650611985474825,1.2189577501267195,1.7224445398896933,1.9621606771834195,2.1015153429470956,1.3277355832979083,1.917532370891422,2.7486980301328003,3.1011212044395506,3.6809136918745935,3.0092080663889647,3.252024727407843,2.3731319438666105,2.7198758888989687,2.085472157690674,2.800527953542769,2.9991506822407246,3.026707525830716,3.1583694336004555,3.305835274513811,4.073027534876019,4.151706248987466,4.604172229766846,4.528353335335851,5.264274224638939,4.761448689736426,5.617955452296883,6.139855021610856,6.574522654525936,7.344063125550747,6.763793359976262,7.64068374177441,6.864966653287411,7.710329717956483,7.768962120171636,8.382293958682567,8.80086285667494,9.24201899021864,8.728390566073358,9.354218684602529,9.7552575962618,9.748597279191017,9.114297948312014,8.531653480604291,8.338456653058529,8.764273453503847,8.93772016838193,9.133372087962925,8.323243987746537,8.665865892078727,9.354340709745884,9.762362227775156,9.256375380326062,9.999353221151978,9.46764755481854,9.934450736735016,10.67799114016816,10.399944639299065,10.69527942687273,10.808577787131071,11.006094142794609,10.200808491557837,10.498591502662748,11.269822231959552,11.940506390295923,12.908925283234566,13.032620795071125,13.200002138968557,12.242074435111135,11.574767629615963,12.47977093840018,12.021259089466184,12.785129994153976,11.881381126586348,11.578905334696174,11.595069739501923,12.085756817366928,11.648961652070284,11.592720361892134,10.994003923609853,11.113538605161011,10.244883599225432,10.052724862936884,9.704524162691087,10.524371769744903,11.02488895598799,10.114069419447333,10.651386081241071,10.723669331986457,9.839448641054332,8.872030665632337,8.942131135147065,8.934733490459621,8.734175575897098,8.786650453228503,9.250525093637407,8.784456295426935,8.759922021999955,8.732167393434793,7.76996641792357,8.47453255718574,8.565445051528513,8.289587447885424,7.85324586648494,7.841329413000494,8.497640492394567,8.782383049838245,8.73938353965059,7.9482496115379035,8.690196886193007,9.364639536943287,9.74263061862439,8.74313915334642,8.841232486534864,8.139995738863945,7.737788648810238,6.922905786894262,6.70076643768698,7.362237668596208,7.522957806009799,7.08074347814545,6.205137700308114,7.164289121050388,7.50081549026072,8.320835128426552,9.299874458927661,9.800315246451646,9.186966949608177,9.745043232571334,9.353469694033265,10.088325541932136,9.297043619211763,9.952952845953405,10.476510877721012,10.006022974848747,9.449879594612867,9.910043476615101,9.869984114542603,10.16767236078158,9.258827027864754,9.664949500001967,10.396560247056186,10.927587087731808,10.888350675813854,10.614280409179628,10.420774007216096,11.22756124753505,11.532963217236102,10.711116495542228,10.498079967219383,9.835301670711488,10.497093703132123,11.19907992426306,11.830091120209545,11.848645188380033,12.31141106504947,11.37120069982484,10.372136618476361,9.97552251117304,9.13744284491986,9.017352365888655,9.540185312740505,9.016123032197356,9.828834736254066,9.069365651812404,8.620176899246871,9.289287214167416,9.120661142282188,9.451632963027805,8.715364350471646,9.094543157611042,9.50446594087407,9.215601533651352,9.121405088342726,9.468705048318952,8.82267520390451,9.337307306937873,9.176013450603932,10.052822818048298,9.863353955559433,10.600053327623755,10.299913633614779,9.836870645638555,10.827894982416183,11.092763778753579,11.06520263152197,11.075607188977301,11.745960830245167,12.272803159896284,13.164562992285937,13.94691152125597,13.235036910045892,12.98653379548341,12.664122474845499,13.385703895706683,13.321271516382694,13.119470352306962,13.84326204797253,12.94985977653414,13.566064464859664,12.965353129897267,13.134315001778305,12.698465498629957,13.505161153152585,13.730040011927485,14.062955049332231,14.330146552063525,15.149445816874504,14.387807389721274,14.16012537945062,14.24039532802999,15.064053732901812,16.01065931515768,15.668008872773498,15.41381375072524,15.965071380138397,15.451137261465192,16.353859396651387,15.435490425676107,16.338974152691662,16.466272859368473,15.482761416584253,14.602548860013485,13.669613152276725,12.885010114405304,12.197797053027898,13.17078484594822,12.291270858142525,13.280774480197579,13.78846487775445,13.954502686392516,14.605336573440582,14.315947799943388,14.29084133496508,14.382279749494046,13.821157523896545,13.772969824261963,13.005369040183723,13.900919661391526,13.606805067509413,13.962045112159103,14.56792554166168,13.871116887778044,14.275817360728979,14.55948213301599,14.839178564958274,14.271629173774272,13.494367041159421,14.293928551021963,15.051071824971586,15.016971296165138,14.14696954516694,14.795166826341301,15.269637773744762,14.717014689464122,15.388664656318724,16.218339586630464,16.050759066827595,16.864982566796243,16.894121250137687,17.533561042509973,16.99677874194458,16.174133972730488,17.087009949143976,17.45064839394763,18.27516066050157,17.741379082668573,16.863704836927354,17.496204080525786,18.310231565963477,18.25026697712019,17.473752174992114,16.577450906857848,17.108820305671543,16.640977260656655,16.60676315566525,17.59171925019473,16.638527983333915,16.431490840390325,15.435514243785292,16.354559369850904,15.66242588404566,14.811260022688657,15.512910408899188,14.86921264603734,14.289086009841412,14.945858681574464,13.956191269680858,13.721967932768166,13.357128595001996,12.763583043590188,12.69984272774309,13.161833855323493,12.83586603589356,12.11087141185999,12.802661570254713,11.874140742234886,11.052037130109966,11.511636028066278,11.892603329382837,10.915671471040696,11.382789759896696,12.305552028585225,13.129515632987022,12.665569082368165,12.533071120735258,13.32265892252326,13.639113324228674,13.569827971514314,14.011699881404638,14.926339675672352,14.475300658494234,15.018475028220564,15.18866936955601,14.58120413729921,13.61004206771031,14.379786887671798,13.506644031964242,14.047215395607054,14.117419225629419,13.958728710189462,14.438445098232478,14.265429773833603,13.811129859182984,14.551130590960383,14.490431282203645,14.73433972010389,15.390698957722634,15.714314771816134,15.682254516985267,15.381107949186116,15.117095075547695,15.80594412703067,14.871861127670854,14.85434442339465,15.251706720329821,14.857080549933016,15.036073994357139,15.649595952127129,16.014430636540055,15.075332771986723,15.154145474079996,15.962698774877936,16.802126136608422,16.49184595560655,16.76062080124393,17.599931947421283,16.93890733225271,16.626823913305998,16.341509249527007,15.372235388495028,15.678131008055061,14.763359135016799,14.257184441201389,13.692051753867418,13.589786987286061,14.030373645015061,14.51177107077092,14.451085911132395,14.633789042942226,13.712759096641093,13.320009385235608,12.642805194947869,12.708608388435096,13.383010659832507,13.379420029465109,13.451538667548448,12.724540100898594,13.275323960464448,12.388310021255165,12.329679769463837,11.386741656810045,11.989149707835168,11.19143929425627,11.160860631149262,11.314984226133674,11.975575113203377,11.002608347684145,11.123698126059026,10.703368810471147,9.804204656276852,10.366155057679862,10.141468589194119,9.604342682752758,9.119169563055038,9.130986558739096,8.44445845298469,8.626715247053653,8.339065392967314,8.275178578682244,8.232245929073542,7.430736416019499,6.985814691521227,7.1345192501321435,6.422633977606893,5.551287504378706,5.505875181406736,6.107400336768478,5.719521320424974,5.2670455649495125,5.099846466444433,4.803094381932169,5.1295585837215185,5.375502485316247,6.072809140197933,6.277772962115705,5.978061910253018,6.50516375945881,6.779327136464417,7.746855171397328,8.121698172297329,7.6553995446302,8.22395204892382,8.605429514776915,7.718978041782975,8.435852006077766,9.290957087650895,9.034606907051057,9.447058304678649,9.947487175930291,9.153187565971166,10.121242120396346,10.144469539169222,9.226503792218864,8.598344513680786,8.43956237891689,9.314086766447872,9.506419559940696,9.73605867754668,9.282918891869485,8.752384094521403,9.106364139355719,10.068771572317928,9.573081120382994,10.468265884555876,9.956798452418298,9.92662512557581,10.846551235299557,10.791300403885543,10.07712301146239,10.469910103827715,10.886086158454418,11.608872365672141,10.81780341686681,9.94602607563138,9.124798535369337,9.192840908188373,9.899425263982266,9.07122586807236,8.835588089190423,8.18504770565778,7.552745639812201,7.794822326861322,8.291931638959795,7.792364244349301,7.202831688337028,7.832064958754927,7.336335692554712,7.0600031754001975,6.588453246746212,7.134048938285559,7.857131046708673,8.235205780249089,9.175546108745039,9.78255494730547,9.782424693461508,9.067693245597184,8.318378331605345,8.797021925449371,7.81682941224426,8.114542527589947,7.21986019751057,7.792248652782291,7.981568595394492,7.039702707901597,6.529855742584914,5.699917260091752,5.71225326647982,6.650476228445768,6.868380272295326,7.023463604040444,7.507111732382327,7.689399819355458,7.809855651110411,7.616780776064843,7.173987586051226,7.981063268147409,8.361403175164014,9.06295136641711,8.384226820897311,9.10365183185786,8.903316046111286,9.33318882342428,10.002040278632194,9.062163235154003,9.825738810468465,9.845133754890412,9.312350201420486,9.799601800739765,10.605372692458332,10.383754331618547,10.817762773483992,10.34309202991426,10.614353239070624,11.032706379890442,11.490801468491554,11.123215976171196,11.833746319171041,11.419070780277252,11.157164841424674,10.621226361952722,9.782208108808845,10.676416751928627,10.829309058841318,11.80837214877829,11.31115294713527,12.044891234487295,11.74055044585839,12.715666447766125,12.817130073904991,13.331161020789295,13.893934888765216,14.186171275563538,14.319476542063057,14.252219236455858,15.088037362787873,15.838785327970982,16.07578104408458,15.787289921194315,16.370895580854267,16.064962980803102,16.87133552832529,16.545410586055368,16.642133058048785,16.442784196231514,17.30436688521877,17.290380930062383,16.772101811598986,16.263840915169567,16.891059783287346,15.953055248595774,16.06699690874666,15.590027164667845,14.673381910193712,14.575218067504466,15.318573917727917,15.47271806979552,16.208374006673694,16.97631818242371,17.864266113378108,17.474785006139427,17.01146183675155,17.640517827123404,17.787416451610625,18.257039031479508,17.618722833227366,17.355333509854972,17.88858732674271,17.997454227413982,18.861106721218675,17.87484638998285,17.59789012838155,17.619097062386572,18.08323473064229,18.248789181932807,19.236955084372312,19.333451617509127,20.090802209917456,20.847480217460543,21.464055927935988,20.680600055493414,20.983456903137267,21.747086607851088,21.391322980169207,21.71425951970741,22.507162515074015,22.010239978786558,22.359632226172835,21.449900010135025,22.28968900302425,23.120676005724818,23.11190271982923,22.476600030437112,23.116425610613078,23.219772404059768,23.05103487847373,23.94817784568295,23.557040232699364,22.608122599311173,23.251072499901056,22.648242021910846,22.2061813515611,21.48201326141134,21.271522813942283,20.585949479602277,20.23977688839659,21.101025372743607,22.030507349409163,22.299476544372737,22.2568021658808,22.684154727030545,22.439881283324212,22.971209215000272,23.69870278565213,24.109476486220956,25.0845080409199,25.938441598322242,25.845064251683652,25.431264420971274,24.889569983817637,25.84583521587774,25.417911381460726,25.868156844284385,25.23438702756539,24.30684647988528,24.959048804827034,25.73007399123162,26.392599197570235,25.976233672350645,26.597032465040684,27.575880809221417,26.9578844755888,27.888114416971803,28.484352042898536,28.67686980869621,28.373999637551606,27.769033786840737,28.13681875821203,28.59572436939925,29.452496903948486,30.315299097448587,30.208026309497654,30.364629940595478,30.905072109773755,31.798832760192454,31.264279201161116,31.327535662334412,31.628207423258573,31.933780749794096,31.31837045075372,30.884284894913435,30.51533574052155,30.752576041966677,30.277395735494792,31.134606211446226,30.570457572117448,29.789338435512036,28.855463750194758,29.707046230789274,28.946370464749634,28.009930753149092,28.148291068151593,27.62206912273541,28.46972457692027,28.28593256510794,27.436844810377806,28.35556862456724,29.060615807771683,28.839642068836838,29.040255886502564,28.7261494663544,28.391966810449958,27.736159569583833,27.629780331160873,27.90176409855485,27.713180711958557,28.18224106170237,28.0691408845596,29.05211277352646,28.41129136364907,29.077470135875046,29.589141895528883,29.699003499466926,30.63886757614091,30.402950633317232,29.40449113259092,30.31441883649677,30.9927109782584,31.417938463389874,31.090089838951826,30.99053149437532,31.81952676549554,32.23522791545838,31.76824247231707,31.606390279717743,31.372775787487626,31.085650788620114,31.518517639953643,31.100811713840812,31.22799941431731,31.196697474457324,30.3065847158432,30.502160169184208,31.2429514573887,30.5237071714364,29.733662754297256,30.642131723929197,29.867245031520724,29.835519956890494,29.270242754369974,29.836552052758634,30.633035918697715,31.484845929779112,31.908596687950194,31.93417976051569,32.02171270083636,31.1931514008902,30.283409691415727,29.377243167255074,29.3795910240151,29.260782092809677,28.381560517009348,28.171063397079706,27.716906370595098,26.778832232113928,26.77308304887265,26.15009032236412,26.715833811089396,26.989783430937678,26.511324343271554,26.64958601258695,26.650637056678534,27.455045446753502,27.99082179227844,28.308563262224197,29.2402762346901,28.508751671295613,27.881188936065882,27.50379958190024,26.957131072413176,26.991191347595304,27.558111313264817,27.867350831162184,27.401351624168456,26.710602981504053,26.561534929089248,25.672907659318298,26.646625967230648,25.697042507119477,26.386567377019674,26.46137418737635,26.812280893791467,26.042965804226696,25.509626331739128,24.538716077338904,24.272801672574133,23.487772224470973,22.724079055711627,23.620724018197507,22.801797446329147,23.07194206910208,23.37020674534142,23.40474765142426,22.545339131262153,21.63178205722943,21.544817531947047,20.693666581530124,21.03467481629923,21.855365100316703,22.21664006728679,23.12687362683937,22.24204494152218,21.76784625975415,22.318135452456772,22.36520683998242,22.670809698291123,21.86109235789627,22.135417075827718,22.277611423749477,23.177402013912797,22.56312101194635,23.100088011007756,22.867441905662417,21.8744816374965,22.08036169083789,21.5506348060444,22.369217277504504,21.402931293006986,21.98823125800118,21.424012921284884,20.977271111216396,21.8060238561593,21.54270262317732,21.45356841525063,20.847594822291285,21.16453260788694,20.793729262892157,21.514156497549266,22.49396121222526,22.87686462327838,22.197714461479336,22.559014232363552,22.583452230785042,22.649372425861657,23.261255702469498,22.691563756670803,23.447506823111326,24.270075815264136,25.222203468438238,24.460761744063348,25.086379155050963,25.63821371877566,24.68782170023769,24.34686332102865,23.86442646337673,23.346652349457145,23.54159615188837,22.940366732422262,23.591464463155717,23.529433873016387,23.683055358938873,24.564329554792494,24.51923822518438,24.604004266671836,25.415087783243507,25.91206322936341,24.933967106509954,25.08223671838641,24.665216064080596,24.633613985963166,24.144180399831384,23.249783378560096,23.595330722630024,22.98245804477483,22.541449959389865,22.33245075168088,21.64160952810198,21.366915237158537,20.484690956771374,20.85473301494494,21.49147792207077,20.531582691706717,20.220505330711603,19.308482779655606,20.280886173713952,19.620935281272978,20.051394881214947,20.70613480731845,21.053710081148893,20.326843531336635,21.151915641967207,21.867104347795248,21.9224426667206,22.451297127176076,21.89758653426543,22.06051763612777,23.0096174092032,22.829262289684266,23.383804988116026,23.578694330062717,23.550244849175215,24.233814673498273,25.11264449218288,25.34460472408682,25.134900650009513,25.585061028134078,25.332350245211273,24.74183752387762,25.300245655234903,25.126817217562348,25.21963670756668,25.571424367371947,24.655298267956823,23.66552835283801,24.263255569618195,23.9196013151668,23.89152255654335,23.900595192797482,24.67833390738815,25.41834535356611,26.08444145321846,26.90770182805136,26.771066438406706,25.92682794854045,25.124516697134823,24.81236006412655,25.06176211964339,25.60502611240372,26.36814863048494,26.66419812850654,26.280380786396563,27.12895678449422,26.930614484474063,26.67119350237772,26.83969487156719,25.853418082930148,26.801932532340288,26.057421199046075,27.038333481177688,26.73167951218784,26.61524975625798,26.419739816337824,26.469639390707016,26.781640552915633,27.226538616698235,27.14092963701114,26.590791761875153,25.769370721187443,26.445952102541924,25.528115932364017,25.895788630470634,25.378293653950095,24.570072412956506,25.196991715114564,24.678334212396294,25.181194240693003,25.888060218654573,26.307764558121562,25.46732086641714,26.040993319358677,26.528658379800618,27.188979850150645,28.051269070710987,28.869575784076005,28.153125513810664,28.339465907774866,29.24813575623557,28.867941703181714,28.071736114565283,28.92889368906617,29.266326964832842,30.143805109430104,29.664323919452727,29.756674233358353,30.56145267235115,30.377341472543776,29.39660244155675,29.381828025449067,29.82954838545993,30.217977430671453,31.108438343741,31.09558521118015,32.067746243905276,32.78550405986607,32.777090043760836,32.59803878562525,32.61552379047498,31.653066863305867,32.629836295265704,31.898671915754676,32.864372052717954,32.37203182652593,31.800888084806502,31.929172889795154,31.36222089175135,31.33952677762136,31.33491731947288,31.36570141557604,30.397049919702113,30.81374704791233,30.585863928776234,30.8460422931239,29.869992218911648,29.424410499166697,28.927352570462972,28.459633162245154,29.08560066483915,29.59135956177488,29.405467323493212,28.63586539775133,28.214935596100986,28.72843615943566,28.699514508713037,28.804557523224503,29.0697885225527,28.933599106036127,29.531277841422707,28.780882809776813,28.033452541101724,28.565068549476564,29.12694282690063,29.450758021324873,28.61026947805658,28.03960303775966,28.489468016661704,28.393939020112157,28.10292741516605,27.889738528057933,28.06191322254017,27.5079110073857,28.207672455813736,28.04399505117908,27.396747041493654,27.507946003228426,28.482760357204825,27.580942963715643,27.6891554184258,26.992697501089424,27.876667936798185,28.300713483709842,28.44878632761538,28.726117241196334,28.04279228905216,27.317993980366737,27.93443585326895,27.073756266385317,27.16550989355892,26.8371988623403,27.185963398311287,26.656596744433045,26.68859908916056,26.3357898555696,26.718073515221477,27.363278734497726,28.106664867140353,28.367602423299104,27.531941993162036,27.307963288854808,26.44835667591542,26.2808781536296,26.478952640667558,26.69280802225694,27.67618345282972,26.764840538613498,26.674704623874277,26.910556234885007,27.71768836164847,26.804499190766364,25.921399985905737,25.393413306679577,24.75721878465265,24.896136184688658,25.138991319108754,24.43640683311969,25.215368130244315,25.299109985120595,26.043578749056906,26.6137028420344,26.58934678742662,27.17188780196011,26.655442539136857,25.793105971068144,26.126564209349453,26.913301909342408,27.72349741216749,27.068554253783077,26.64433973049745,26.9129230636172,26.26468698354438,26.572906136512756,25.907737412955612,26.077997537329793,26.260157799813896,25.78539867978543,25.228071758523583,25.234028359875083,24.56531390827149,25.255405311472714,24.334824732504785,25.00215377751738,25.840579583775252,26.81114583509043,26.244840596802533,26.828141569159925,27.291834017727524,27.649900826159865,27.848333980422467,26.956174076534808,26.763739483896643,27.173906312789768,26.21210779901594,25.215874736197293,26.130789617076516,26.6983998157084,27.078431682661176,27.82680396689102,27.715949402190745,27.830942158587277,27.514615470077842,27.63826006418094,26.865832206327468,27.358039615210146,27.048948230221868,27.92191022494808,26.938972464762628,27.47766937687993,27.399134704843163,27.0361931999214,26.37770177796483,26.926951031200588,26.18920830730349,26.512134889606386,26.7924034120515,25.94041514210403,24.984104885719717,25.61803103936836,25.185337877832353,25.441096189897507,25.435135265346617,25.97018290590495,26.115749802440405,25.211007373407483,25.851435152813792,26.7399374502711,26.385878722649068,27.27175873471424,28.048170725349337,28.931330115534365,28.23841566639021,27.715270082466304,27.528055464383215,26.892724320292473,26.172321118880063,26.824874934740365,26.3142388635315,26.98061916977167,27.748007882386446,28.310589522588998,28.867018026299775,28.30018036160618,27.898133475799114,27.238573893904686,26.257554929237813,26.619029192253947,26.82585902744904,26.124907173216343,26.584130899980664,25.67271626694128,26.646781382150948,25.654552108142525,26.191438854206353,25.935038740281016,26.924885138403624,27.57840751670301,27.63147109700367,28.21980770304799,27.370710611809045,27.37092945817858,26.807042391970754,27.43511027051136,26.63436556374654,27.112666889559478,28.037122238893062,27.558257148601115,27.314852939452976,27.22780506964773,26.63936546165496,25.74733163183555,25.00926155457273,25.643106342293322,26.298332136124372,25.514535882044584,24.806733740959316,25.210748231969774,25.640767415054142,25.60844474239275,25.916099978610873,25.827329961117357,25.575903597753495,25.851412260439247,26.36582730244845,25.603840921074152,26.464628850109875,25.6743459738791,25.858644197694957,25.551139327697456,25.99110930087045,26.39578980905935,26.353706296999007,26.49296893272549,25.833959167357534,25.372209451161325,24.409809028729796,23.892652865033597,23.775647392030805,23.236236193683,22.275789404753596,21.949863923247904,21.135453475173563,22.117427429184318,22.579875083640218,23.52411562530324,24.04358257725835,23.766026770230383,24.372163464780897,24.00000353716314,24.9658352159895,24.77159262774512,24.210565216839314,24.776153684128076,24.483542136847973,24.999777589924634,25.582350322045386,25.002246216405183,24.05958817107603,23.165548246819526,22.340047309175134,21.612023732624948,22.01032076496631,22.269978874363005,23.13584526348859,23.740206270944327,23.156521098688245,22.74320179130882,22.04795409506187,21.2808518265374,20.58152645966038,20.772980710025877,21.421868175268173,20.546984503977,21.43612292036414,21.100071654189378,21.57791475718841,21.35663354676217,21.271666220389307,21.493952678050846,21.42856837809086,20.823868640698493,20.808525948319584,20.059455396607518,20.377789005171508,19.96306307381019,20.46113430848345,19.866285589989275,20.69603402307257,20.34255797928199,21.151895372197032,21.38312521483749,20.96577534545213,21.653525157365948,22.030954720452428,21.538428185041994,21.480382569599897,21.3494961601682,21.397451936732978,20.68584568053484,21.481439172290266,21.627582533285022,21.87676834082231,21.09585272660479,21.453569299541414,22.2630263781175,22.714806143194437,22.782048893161118,23.54890818428248,23.761243090964854,23.775438136886805,23.862892696168274,23.353120889514685,24.003308326005936,24.69970471598208,24.93320884089917,24.424985205754638,23.785097007174045,24.590983748435974,23.79671783419326,23.966190066188574,24.191940293181688,24.49517074925825,23.791765159461647,23.305626313667744,22.90974160982296,23.646072449628264,23.64100132510066,23.747339399531484,24.522751597687602,24.737601726781577,24.29251180542633,24.65345557173714,24.956883495673537,24.131057335063815,24.8792304713279,24.682118946686387,24.85715238470584,25.06791749270633,25.12502368586138,24.965728744398803,25.525259882211685,24.767241862602532,23.885430235415697,23.486481755506247,24.113843908999115,24.884366455022246,25.37213955912739,25.19232359295711,25.506669461727142,24.747047966346145,25.435597740579396,25.397410167381167,25.508687482215464,24.79414062621072,24.459473224822432,24.98149115080014,24.05681036459282,24.871754745021462,24.57538724783808,24.862939100246876,24.334655847866088,24.81934449961409,24.556529158726335,24.269856385421008,24.00244765728712,24.905880029313266,24.928217611275613,25.34222553856671,25.25983015447855,25.283921969123185,25.203161537181586,24.239563542418182,24.47525975899771,24.141240934841335,24.87240667268634,25.209158495999873,24.439366340171546,25.20606308290735,24.272938548587263,23.79573092330247,24.375163335818797,25.224634494632483,24.774136057123542,25.005978748667985,24.45237202383578,24.69955736445263,25.541892922483385,25.41181636787951,26.39859640179202,27.050875053275377,26.360384757630527,26.34416195936501,25.762431730516255,25.593339544255286,24.78813852928579,25.732896191533655,26.16978303529322,25.940726784523576,25.767657371703535,25.53432889841497,24.723627408966422,25.6614970411174,26.13206625217572,25.693809474352747,25.234483066014946,25.74382451409474,24.782085492741317,24.947480408474803,23.961169871967286,23.543425841722637,24.0800872691907,24.015436803456396,23.26114320056513,22.82567600067705,23.211918713059276,23.13522906182334,22.964886378962547,22.105429890565574,22.537068472709507,21.648268948774785,21.8981042066589,22.828188268933445,22.754285267088562,22.949626405723393,23.467011764179915,23.85774667141959,22.90739520592615,23.55040160752833,24.14009081432596,24.01313949516043,24.649339117575437,24.058312382549047,23.191695778165013,22.944077972788364,22.93313050735742,22.325510622933507,22.983107263222337,22.78452157229185,22.35257443320006,22.445208213757724,23.348364277277142,23.46751488186419,24.39851718628779,25.25210291799158,24.97173102479428,24.47544596111402,24.122534508816898,24.549222481437027,25.294510770123452,24.799464158248156,25.63946271315217,26.157239973079413,26.504454724490643,26.41355875786394,27.284964489284903,26.404268354643136,26.51904547493905,27.334469000343233,27.00386930257082,27.25763174984604,27.491794995963573,26.674530420918018,26.020687306299806,26.914077592547983,27.545320845674723,28.375815116334707,27.38618230354041,27.78239952819422,28.193651816342026,27.233259493485093,27.07382913865149,27.344984431751072,26.94753439584747,27.246405594050884,28.208112840075046,29.03013221733272,29.877340280916542,29.91948595037684,29.802275094669312,29.407863141503185,29.622528512962162,30.172838487662375,30.734936914406717,30.72169343754649,29.99940880620852,30.745422965846956,30.453977326862514,30.742563588544726,30.90313391480595,30.173088727518916,29.607951305340976,29.49821595614776,28.963758195750415,29.36352677969262,30.25139531912282,30.215686212759465,30.18533844407648,29.307016433682293,29.043998079840094,29.775575804989785,29.221137343905866,30.073151418939233,29.33061561686918,29.6679104315117,29.07968555856496,28.925051943864673,29.479409981518984,28.89537332346663,28.093424168415368,27.830732841044664,27.52621341496706,27.725955446250737,26.98390618339181,26.337631939910352,25.968572806101292,25.144223015755415,24.51951619097963,24.528475082013756,25.19342620531097,25.711320121772587,25.683295615483075,24.715585134923458,24.04830821696669,23.85729715274647,23.458256070502102,24.08993394114077,23.821186342742294,24.338195617776364,23.872131884098053,23.131778314244002,22.53872953215614,22.800251465756446,22.42884198576212,22.520646926015615,22.000574551988393,22.85529835615307,23.3867047871463,22.81888939300552,22.36234138906002,22.158448841422796,21.21982708061114,20.75988998124376,20.77434337325394,21.736736292485148,22.53424011915922,23.442042149603367,22.5773324794136,21.583649965003133,21.792804397642612,22.142233554739505,22.291777124162763,21.9234086452052,22.91888750437647,23.61086755571887,23.25261050928384,22.49694428546354,22.161593846976757,22.159920263569802,21.384222434833646,21.158816788811237,20.461224069353193,21.195143424905837,21.427198086399585,21.181968928780407,20.597885457333177,21.022990652825683,21.234276349656284,20.47106968378648,21.010911560151726,20.623561992309988,20.74944937089458,21.54703190829605,21.131646799854934,21.445198674220592,20.704113883897662,21.547914363909513,21.09714239835739,21.152882980648428,20.327558948658407,21.03138902876526,21.670698741916567,21.55786795169115,20.73594459053129,20.830075843725353,20.867620381060988,21.745497865602374,22.597931133117527,23.423453575465828,23.1572023187764,23.495221049990505,23.17862112959847,22.2468615421094,21.9509208034724,22.636429626028985,23.05326947150752,23.746159774251282,24.2579437722452,25.203976186923683,25.339959086850286,25.087349043227732,24.778170060832053,23.89337775995955,23.067604492418468,22.35495354840532,22.78016160381958,22.525722645688802,22.128611908759922,23.111213217955083,23.677555539645255,24.60697805462405,24.253738459199667,23.565447263419628,23.456059087533504,22.804239604156464,21.982330397237092,22.39177453983575,23.135505034122616,23.080340074375272,23.191368216648698,22.895231092814356,23.459832119755447,23.291188285220414,23.007837234064937,23.338428791146725,22.491408310830593,22.21497285598889,22.28145407512784,22.063401573803276,21.360194531735033,21.59445404773578,22.417488172650337,22.733470181934536,23.52382001047954,23.984242719132453,24.0941707752645,24.7370961480774,24.470573062077165,24.616467762738466,25.05333107057959,24.059982167556882,23.203705691732466,23.14323412673548,22.969143939670175,23.846778982318938,24.319621653761715,24.635051804594696,25.55994480382651,25.754485484212637,25.39973752014339,25.263178371358663,25.789224746171385,26.5215283902362,25.699575224891305,26.572134173475206,27.4924567961134,28.255434416234493,28.297219482716173,28.768607263918966,27.906511259265244,26.935332196298987,26.059484224766493,25.583445973228663,24.705804484896362,25.291488168295473,24.75284014409408,23.943293838296086,23.8182737599127,23.96566083934158,23.222699026577175,23.9462727336213,23.082107117865235,23.46360916411504,22.799004340544343,22.038951608818024,22.32220006501302,22.713625501375645,22.650135890115052,23.211663890164346,23.77335338620469,24.03458858607337,23.664717917796224,23.79382594395429,24.287874509114772,24.709119541570544,25.506057988852262,24.63810304366052,24.38115123519674,23.39974869368598,22.807202600408345,23.76681745517999,24.150455889757723,23.763477633241564,23.430080364923924,24.23764227842912,23.968854039441794,24.369046973995864,24.759460262954235,24.795730501879007,24.907383082434535,24.94209429761395,25.890797422267497,26.233003261499107,26.322867470327765,26.225140012335032,25.291251739952713,26.19225960969925,26.568764619063586,27.309974257368594,27.54044116428122,27.446373670827597,27.38055657641962,27.472386123146862,26.653704057913274,27.200620664749295,26.856647628359497,26.791415272746235,26.40409970236942,26.63593678129837,26.454334226902574,26.261198338586837,25.904362042900175,24.953944473527372,25.603845223784447,26.49934255052358,25.823936666361988,25.272174182813615,25.105038810521364,25.30071425344795,25.351300908718258,26.241366552654654,25.50504688732326,25.27915399009362,24.897106951568276,24.039236673153937,23.837114691268653,24.72463673632592,24.08829461131245,25.004641092848033,25.64623184269294,25.510945152956992,26.162612608168274,25.403602255508304,25.17354006320238,25.21610664203763,25.2607251573354,25.523674064781517,24.549856727011502,24.229336109943688,23.622682355809957,23.232321813236922,23.38018879527226,22.667356948833913,22.716344057116657,22.544040753040463,22.930641836952418,23.601651383098215,23.145763392094523,22.713438521604985,23.600819715298712,23.394741549622267,22.960283485706896,23.460829534567893,24.074481256771833,23.721304124221206,23.300033610779792,22.848007580265403,22.035067258402705,21.652806354686618,21.52724577859044,20.721655132248998,20.32709829043597,21.107570129912347,21.50192851247266,21.669139459263533,20.958786227274686,21.429025850258768,21.36592640215531,22.318664034828544,22.994375620037317,22.385146810673177,22.1744257430546,21.533073576632887,22.38208851777017,22.68648560345173,23.09075889410451,22.146380287595093,22.039695112966,22.33486444503069,21.471937741152942,20.981905014719814,21.825167017057538,21.236160164233297,21.228484756778926,21.585604964289814,22.47572617791593,22.62805171078071,22.70871927868575,23.199091806076467,23.64555111527443,24.27949431957677,24.006671726703644,24.076673810835928,24.974765808787197,25.734413290861994,25.211943726986647,24.709573781583458,24.700952770654112,25.11772125447169,24.655762147158384,23.9745538122952,23.46720430860296,24.464125693775713,24.890164798125625,25.013447143137455,24.120728728361428,24.637987398542464,23.99291978403926,23.50543973967433,23.540667900349945,23.05652148788795,22.834942856337875,23.49083728250116,22.834438575897366,23.232530060224235,23.970128699671477,23.55394541285932,23.94266608124599,23.425833179149777,23.812156923115253,24.266678004525602,24.963307906873524,24.510736254043877,24.575391875579953,23.629214141517878,24.509143177885562,23.564731643535197,23.426962250377983,24.217984811402857,24.9402007390745,23.978941805660725,23.015625934582204,22.058834430295974,21.185596071649343,21.2738538547419,21.15328508336097,21.930424832738936,21.111790704075247,21.83479088637978,21.79895289381966,20.92315645609051,21.470772807020694,22.46432744944468,21.906795287970454,21.387895810883492,20.725295098964125,19.82337111979723,19.904063522350043,19.433733164332807,20.380395337939262,20.593539017252624,21.4297663285397,21.93926230026409,22.923483812250197,23.867374998517334,23.58115873625502,23.5019190502353,24.500467913225293,24.246567393187433,24.85054534347728,25.015874298289418,24.13390333391726,24.25528515735641,25.04743811674416,24.272149092983454,24.92107705026865,24.846068668179214,24.76119848852977,25.031764234416187,25.128200087696314,25.31760440627113,26.193998910486698,26.417805682867765,26.34217809746042,26.299305067397654,26.116278680507094,26.072467987425625,25.123063025064766,25.008498535025865,24.43047788599506,24.088029594626278,24.532311280258,25.338405753020197,26.01883843773976,25.82447163341567,25.404012211598456,24.459908118005842,23.993196674622595,23.925671638920903,24.173634422011673,24.3480378924869,25.24697869597003,24.72317908005789,25.552615602035075,25.742877945769578,26.336472782306373,25.865976984146982,25.19316022982821,24.38741068728268,24.20649824431166,24.59403468342498,23.74760947143659,23.336075712926686,23.651761091779917,22.712540031410754,23.30481587862596,23.192770873662084,22.78634108416736,23.180556155275553,22.32357559306547,21.96134142903611,21.5070351078175,21.279607633128762,21.419034256599844,21.98386166198179,22.84985281806439,23.567847203928977,23.02428802708164,23.387480159290135,23.72182045551017,24.416765074711293,23.68442608229816,23.69793082587421,22.84060245938599,22.12873369222507,21.467551826965064,21.18126835534349,20.81149649899453,20.697282020002604,19.810185441281646,19.70380722731352,19.28072804119438,19.316317721270025,19.362194740679115,19.94227989949286,19.247065658215433,19.487628209404647,19.717830194160342,19.545124637894332,19.633600246161222,18.75202587991953,18.44466584548354,19.242841320112348,18.823076635133475,19.73196668550372,20.648091228678823,19.967894657049328,20.31321990536526,20.41035374486819,20.36072476627305,20.076888151466846,20.862909331917763,19.931067717261612,19.071074013132602,19.419885244686157,19.210776993073523,19.688537657726556,18.68874191120267,17.924060449004173,18.636805708520114,18.851936894468963,18.113059376366436,18.99529374530539,19.618383578024805,19.73828394478187,20.45799819380045,19.890256554353982,19.793170753400773,19.01980858994648,18.820069306064397,18.934702574275434,19.556697061285377,19.191241414286196,19.25030788173899,19.093579979613423,18.865771404933184,19.271128055173904,19.3925413726829,19.638937555253506,19.71467377897352,20.38157894136384,21.295204654801637,21.824636143166572,21.465803035069257,20.47689219005406,20.308834191877395,20.032303270883858,19.30905202962458,19.186100494582206,19.80258349981159,19.154115334618837,19.182954213116318,18.459445022046566,19.31974267028272,18.34021346224472,18.702303024940193,18.060160563793033,17.757495291065425,18.295763222500682,19.01771746808663,19.34968998702243,18.77754784282297,18.95109323831275,19.017589807044715,19.59062069095671,19.117552369832993,19.498844095971435,19.48760147485882,20.095244464930147,19.231090243905783,19.50076841423288,18.99778098333627,18.440045562572777,18.39627820486203,17.896043872460723,17.114178503863513,17.105055473279208,16.482036211527884,16.68988759117201,17.280556445010006,16.780037248507142,15.78506211237982,16.14363040961325,15.241679210681468,16.206118593923748,16.65910375583917,17.359480851329863,16.674463391769677,16.508834768086672,15.535385510884225,15.858012098819017,16.033413445111364,16.318854654207826,17.152876363135874,17.72184680402279,17.040335909929127,16.899608452804387,17.291893725283444,18.236348174978048,19.171456969343126,18.56572671700269,18.316768059972674,18.50599392177537,18.03055304288864,18.028573544695973,17.06808558665216,16.63649188587442,15.786837586667389,16.305039084982127,17.069149907212704,16.871028859633952,17.626887659542263,17.50766484858468,18.120718386024237,18.492972949519753,19.437725928612053,18.908240891993046,19.56827030936256,19.56231159111485,19.498351965565234,20.415733392350376,20.351634375285357,19.711007420439273,20.10591454990208,19.655604845378548,19.252239678055048,18.370025015436113,18.225535347126424,17.793071957305074,17.072462540585548,18.006747277919203,18.648402309510857,19.30505946977064,18.89903174387291,18.68222140101716,19.215695551596582,19.32274317415431,19.293636145535856,18.641980739310384,19.10509488871321,18.319241817574948,18.961410362273455,18.13201562780887,18.151997726410627,18.73771543847397,18.15181742841378,17.89443964092061,18.281390930060297,18.73817817727104,18.669657011516392,18.711055509280413,17.920716791879386,18.444049841258675,18.72298883041367,18.759028767235577,19.65619548270479,19.17720952210948,18.425697351340204,19.25168126123026,19.30688128620386,20.13750962447375,19.656203143764287,19.718334609642625,19.305377550888807,18.94880901230499,19.77347369864583,18.811337801162153,19.243784157559276,19.126523331273347,19.59079168178141,19.791325219906867,19.05987349851057,18.867201697081327,19.321555096190423,19.248695905320346,18.645874514244497,18.853248799219728,19.27096055774018,19.71689598215744,19.831322808749974,20.023436706047505,19.68737164605409,20.203565870411694,19.777965704444796,19.560286229941994,19.519598324783146,20.39127262402326,20.829972067847848,20.376772677525878,21.342704689130187,20.535486828070134,19.992104617878795,19.512506923172623,19.967280238866806,20.812322882935405,20.150414489209652,20.374003550969064,19.79220908600837,19.560240526217967,19.102454958949238,18.53103505820036,17.60918964864686,17.72110631642863,18.337025554850698,18.345631572883576,18.355560917872936,17.397725044749677,17.16681804554537,17.3084272085689,16.631371448747814,15.874480261933059,15.03867512056604,15.054981901310384,14.381685813888907,13.931830396875739,14.827574506402016,13.927196537610143,14.115129639860243,13.657408518251032,14.41780191194266,15.249683327507228,14.61872816644609,13.644072597380728,12.77043093321845,13.409336582291871,13.432759025599808,13.689469485078007,13.945735819637775,14.244947631843388,13.403451144695282,12.78411673894152,12.505779390688986,13.444034648593515,12.939549890346825,13.024567298591137,12.399360571522266,12.208645276259631,12.01517276931554,12.756835794076324,12.652427875436842,12.068513501435518,11.52782994415611,11.538394257426262,12.420910287182778,12.71168156620115,12.591076712589711,12.478455839678645,12.626338068861514,11.990824548061937,11.87888768222183,12.324367094319314,12.588181055616587,12.120103269815445,12.11516922712326,11.594332316890359,12.435811351053417,12.406751818489283,12.684532799292356,11.877787207718939,12.84415503591299,11.934822133276612,12.662159078288823,12.735600635409355,13.3200285253115,13.06437777960673,12.134596190880984,11.874793519731611,11.270731759723276,10.935835530050099,11.761720848735422,12.102747795637697,12.686180075630546,13.571140067651868,14.16094143409282,13.739500215277076,14.250350526534021,13.787486518267542,13.19177447585389,12.461036215070635,13.060925471130759,12.510076139122248,12.89614798920229,13.88763218652457,13.017934889066964,12.939806679263711,12.429270069580525,12.304455888923258,11.547499421518296,11.065111468080431,11.015538767911494,10.521026997361332,11.424511200282723,11.583087326493114,12.436427319422364,12.63448755769059,12.242529917974025,11.927226320840418,12.471090259030461,12.657841274514794,13.023211002815515,13.296091251540929,12.404926412273198,12.7143938196823,12.533632589969784,12.125989600550383,11.710812826175243,12.511387928854674,12.945821856614202,12.298125599510968,12.754388405941427,13.338186191394925,13.408568813931197,12.756754772737622,13.017329078167677,13.125493879429996,12.16559108858928,11.374271236360073,11.235540649853647,11.17103505320847,10.26506086345762,10.594446409493685,9.977431034203619,9.568500999826938,8.888575770892203,9.338383372873068,8.877515678759664,8.99459579680115,9.648529898840934,10.273198724258691,9.672813426703215,10.650904829148203,11.09584890305996,10.402973561082035,9.751559369266033,10.699425090104342,9.95481074275449,10.585914277471602,11.002330498304218,10.385608253534883,10.47497390396893,10.17288467893377,10.122572247404605,10.79312996705994,9.856331900227815,9.315605634823442,10.248128803446889,9.805464605800807,9.630221264436841,9.276533812750131,9.461191867943853,8.761878374498338,9.537111137062311,9.26852701511234,9.579071243759245,9.844550918787718,8.871804336551577,7.878957665525377,7.079864696133882,6.923413733486086,6.119584579952061,5.484766466077417,5.112666371278465,4.339104328304529,4.709740107879043,4.7368113663978875,5.349320607725531,4.6972573241218925,4.339174207765609,5.075514977797866,5.451991049107164,5.049109071493149,4.985608579590917,4.637749023735523,4.068763628602028,4.015682241413742,3.0889108651317656,2.2559659746475518,2.3435826753266156,2.3426643824204803,3.2904813583008945,4.170124184340239,4.030399943236262,4.535023017320782,4.142813361249864,4.680623373482376,3.9315929603762925,3.482196219265461,4.143492781557143,5.109658770263195,4.6911646369844675,5.33456911938265,4.393042914103717,3.5669609028846025,3.4665273651480675,2.9109164155088365,2.2468683514744043,1.470613113604486,1.0903311292640865,0.8741812868975103,1.8723059250041842,2.5239716288633645,3.371985181234777,3.1236871229484677,2.620568132493645,3.532237479928881,2.5582361621782184,2.1932427482679486,2.5749613191001117,2.7679789373651147,3.475221876055002,3.4974338514730334,4.12216574465856,3.9965577707625926,3.3902209433726966,4.377051006536931,4.444231835659593,4.521831530611962,4.409809669945389,5.013378897216171,4.575090934988111,5.564735176973045,5.318270022980869,5.272033362649381,4.359352120198309,4.0633354196324944,4.672038699500263,3.6850654669106007,4.505390575155616,4.260304426774383,4.14358612941578,4.203688086010516,5.055186538025737,5.387421684805304,4.8119601514190435,5.140248217154294,5.447790289763361,6.012758132070303,5.130184118170291,5.140796255785972,5.236097101587802,4.91038377257064,5.663714890368283,5.830975205171853,5.806166317779571,6.360151779837906,5.485973173752427,5.984033698681742,5.216206143610179,4.261598828714341,5.135993728879839,4.718878919258714,5.489633743651211,6.233778367750347,5.611055550165474,4.7677619573660195,5.146112616173923,5.403300352394581,4.907311073504388,5.432235051877797,4.562972936313599,5.163128790911287,5.682276496198028,4.687015772331506,4.142389302607626,3.511337481904775,2.8509452249854803,2.0549826081842184,2.7234247592277825,1.9755093893036246,1.5005471887998283,0.9932059156708419,1.039650886785239,0.2246527737006545,0.34162149438634515,1.3036717413924634,0.6076447549276054,1.6051910249516368,1.7539725266397,2.494737322907895,1.9254715805873275,1.6674690218642354,2.147411933168769,2.8876165142282844,2.512901457492262,2.091629146132618,1.6853551641106606,2.676583462394774,2.3317149044014513,2.945879415143281,3.803595856297761,4.4142761901021,3.934200240764767,4.187903210520744,4.016665323171765,3.2532569053582847,3.79817167064175,3.122652055695653,3.604907243512571,2.6554332501254976,3.27581060025841,2.9376728488132358,3.0488817212171853,2.4199128025211394,2.8624506779015064,2.445378361735493,2.6343429358676076,3.595573933329433,3.017491692211479,2.5455636363476515,1.6195590626448393,2.5900327139534056,2.7572306874208152,3.3969228034839034,4.001557094976306,4.215516134630889,3.480595009867102,3.031704592052847,2.0914905443787575,2.450060507748276,3.0853860303759575,2.9709270391613245,2.189550383016467,3.1873913784511387,3.66627259273082,3.0164408423006535,3.2344755865633488,3.5216076960787177,2.8364067901857197,3.6086628464981914,3.413873010315001,3.546171625610441,3.270510143134743,3.319079342763871,3.508234675973654,3.680828135460615,3.0182946766726673,2.271520915441215,2.4194254484027624,2.060031929053366,2.2597998059354722,1.4697846132330596,1.499341699294746,0.8576477807946503,1.829511831048876,2.5784218893386424,3.0200604000128806,2.082578504923731,2.725271220318973,3.6319972197525203,4.416615774855018,5.307271419093013,5.548435813747346,5.910567017737776,6.216467152349651,5.393804306630045,5.197647429537028,4.346719306427985,3.4678293131291866,4.323966804426163,3.4958887440152466,2.9350725421682,3.2596236946992576,2.7341550905257463,3.1137197543866932,2.6304669338278472,1.886073213070631,1.6544537656009197,2.278139275498688,1.7228251970373094,0.7977861487306654,1.6695670979097486,1.6661636643111706,1.2855848954059184,0.38971738051623106,0.8851419636048377,1.147807165980339,1.3458393882028759,1.0741864987649024,1.9491104921326041,2.853000158444047,1.8997961063869298,1.8071894044987857,1.8178585842251778,2.3213654584251344,3.0339663079939783,3.0231276997365057,3.4113471880555153,3.283913966268301,4.2512067328207195,4.662310337182134,5.495415805373341,4.834933421108872,4.790019198320806,5.616382869891822,4.962724003009498,5.634031391236931,5.946949161123484,6.923296168912202,7.249498398508877,6.676179131027311,6.3108674748800695,6.0832592523656785,7.061985235195607,7.755006113555282,7.946760549675673,7.786159751471132,8.063968285452574,9.003555179573596,9.366340206936002,8.788824648130685,8.389089775271714,8.581967032980174,8.543365867808461,7.663830708246678,8.482911334373057,8.876732734963298,9.369398498907685,9.376328142359853,9.29366708593443,9.546563709154725,9.212472578510642,9.739383568055928,10.348013864364475,10.695766502991319,10.929790597874671,11.91361274709925,11.283279007766396,10.399316017981619,10.874556666705757,11.476418966893107,11.40103969629854,12.252789968624711,13.128666257020086,12.231605745386332,11.70951483445242,10.943231347482651,11.907802565023303,11.49153845058754,12.048201966099441,11.620416911318898,10.697428559884429,9.704082733020186,8.783513477537781,9.252358943223953,10.104526196140796,9.768133931327611,9.715500622987747,9.885738023556769,10.8317058859393,11.430998969823122,11.974239550996572,12.30155766569078,12.593880652450025,13.144418820738792,13.127700550016016,13.106350371614099,12.146301842294633,12.19597569014877,11.818216487299651,12.14301991974935,11.978969714604318,11.30365067627281,11.884178122971207,11.412518669851124,11.936073734425008,12.886635315604508,11.968079439364374,11.961612878832966,11.777325700968504,11.859219371341169,10.945770080201328,10.45954504981637,10.427800819277763,11.104257765691727,11.296298871282488,12.26589930942282,12.630037674680352,12.194151085335761,11.59980208054185,10.887868777383119,9.928249326068908,8.99384498083964,9.45400095358491,9.54007765604183,10.17378295166418,9.981466338969767,10.233187986072153,9.237064697314054,8.715722021646798,8.300559620838612,7.591629924718291,6.761379086878151,7.48838166706264,7.292840789072216,7.810536494478583,7.974389462266117,7.119453559163958,6.510106218978763,5.686935118865222,5.615805328357965,5.154382216744125,5.895453867968172,4.914614629000425,4.653379111550748,5.346295911818743,4.606038019061089,4.420481143519282,5.120668492745608,5.710130576044321,6.629474490880966,7.446011803112924,6.551220691297203,7.257927531376481,6.982349216006696,6.315255489200354,5.933448114898056,4.940205571707338,5.296906361356378,6.00835322169587,6.355742326471955,6.727297259494662,5.759093890432268,5.892386462073773,6.392930649686605,6.600874175783247,7.516027227975428,8.24991535115987,7.533125262707472,6.638880954589695,7.556180964689702,7.4322460275143385,8.173635772895068,8.540014694910496,8.175279127433896,7.890705110505223,8.799774296116084,9.01418370846659,8.11025937460363,8.189629877917469,9.010141822509468,8.916157790925354,9.106652965769172,10.06027517747134,10.756315388251096,10.624847510829568,10.727085269521922,9.858620733954012,8.92998569784686,8.449229990132153,9.300105919130147,10.142552589066327,10.148991252295673,11.119071424938738,11.032053393311799,11.161186635959893,11.608944855164737,11.427848061081022,11.776280579157174,11.542556372471154,11.850964774843305,12.092090614140034,11.339747995138168,10.78859408153221,9.967361653689295,10.950740745756775,11.056470163166523,10.99638826912269,11.408374733757228,10.813303030561656,11.28561030048877,10.422630364540964,10.617932335007936,10.31746111670509,9.872169147711247,9.667112298309803,9.763329777866602,9.505099931266159,9.291919562965631,10.01635909313336,10.850210415199399,10.763132207561284,11.337046182248741,11.089694469701499,11.90619572531432,12.508746374864131,11.903723063413054,12.698799645993859,11.845576109364629,12.402215186972171,12.038257474079728,11.55338688287884,11.737216540146619,11.063026930671185,11.020096866413951,11.01769248303026,12.01029815711081,12.645463329274207,12.353775966446847,11.65117803402245,11.033762806095183,11.10505790496245,11.852645135018975,11.24662701645866,11.034339787438512,11.745168277062476,11.4755146401003,12.407174023799598,12.024998710490763,11.791274884715676,12.028394354041666,12.169008949305862,11.341504529118538,10.727063291240484,10.755596774164587,11.107477201614529,10.50009505590424,10.638327875174582,10.96729942644015,11.620559254661202,12.456299458630383,12.323560898657888,13.134450369514525,12.17340190988034,12.290073269978166,12.495509065221995,13.478759435936809,13.838073290884495,13.153101429808885,13.675376065075397,14.54461776604876,13.65427606459707,13.46760190371424,14.375903645996004,14.794035985600203,14.615196233149618,14.32480553817004,14.73102061310783,14.668972942978144,14.499815053772181,14.594597878865898,13.695604593958706,13.310670684091747,13.267683302052319,12.706406730227172,11.88623898057267,12.41824755165726,12.759115550667048,11.9421775508672,12.226065265014768,13.173212095629424,12.296439555473626,11.900551313534379,12.828521725255996,12.97557898517698,13.02694823173806,13.474254650063813,12.788956771139055,12.027938184794039,12.005963784642518,11.200386469252408,11.090088868048042,11.131126242689788,11.308080945163965,12.124559430871159,12.680985499639064,13.06470220349729,13.004314011894166,13.8936962261796,14.723020778037608,14.303947560023516,14.48542532371357,15.309763621538877,15.906784475781024,16.311098217964172,16.16030550049618,15.352743424475193,16.055387155152857,15.228766944259405,15.519266375806183,16.423176342155784,16.549007387366146,16.683885952457786,17.54808802716434,17.360682994127274,17.519290112424642,17.201266685966402,17.544026144314557,18.021034551784396,17.118053175043315,16.36963983718306,16.90635526459664,16.525590035133064,17.497472994960845,16.757081522140652,17.464757627341896,17.106302336324006,16.154632889665663,16.81024308409542,15.911999279167503,15.552595099434257,16.509047016501427,16.94239298114553,16.239969540387392,16.731958798132837,17.58427638420835,18.49375272449106,19.456364589277655,20.293738243170083,19.856726746074855,20.539682438597083,21.2898026634939,21.304842008743435,21.43603667523712,21.37368703680113,20.390967762097716,21.0782402548939,21.70816043810919,22.384050691500306,23.35696783941239,23.401192841585726,23.357640522532165,24.33637510985136,24.211258723866194,24.68020132696256,23.796167072840035,23.028018054086715,23.13922021817416,24.034425588790327,24.222490632440895,23.914907256141305,24.753893441986293,24.981353341136128,24.695486152078956,25.4511422640644,26.280196725856513,26.729615601710975,25.998669729102403,26.523844055831432,26.437013824936002,25.951066642068326,26.24593945592642,26.622141017578542,26.8687177230604,26.257125921547413,27.08570708381012,26.70736778806895,27.294896363280714,26.97491473844275,27.201142411213368,26.975438219495118,26.768909182865173,27.70036570681259,27.41162838228047,26.547355280723423,25.781669591087848,26.681549707893282,27.448886081110686,26.69818707741797,27.619856256525964,27.124535360839218,27.357845516409725,28.051493552979082,28.443648328073323,27.876625339966267,28.14904536632821,27.587037267163396,27.874264877289534,27.140445763245225,27.508431046269834,28.115465932060033,28.878904476296157,28.432104277890176,28.945027940906584,28.973435005173087,29.735346178524196,29.46565368352458,29.203947664704174,28.56162529019639,29.034199328627437,28.63515285681933,29.606102942489088,29.753507698420435,30.08630647463724,29.44989868393168,29.14125556126237,29.08639182941988,29.87041047634557,30.093451627064496,29.35149639286101,28.969671001657844,29.449836330488324,29.184666935820132,29.49972199741751,29.424155086744577,29.384651872329414,29.998908549081534,29.112226485274732,29.88944626087323,29.239713451825082,29.11988970078528,29.52798996074125,30.150075897108763,30.353721300140023,30.626449250616133,31.59110461594537,32.075814000330865,32.58643366768956,32.71873992821202,32.64465403323993,31.952712611760944,32.39313109079376,33.32358621433377,32.52996151521802,33.19913196004927,33.885380872525275,34.24109220551327,34.04808059008792,34.1497730887495,33.7059248550795,34.57148930802941,34.06100084958598,33.157457936089486,32.84444845607504,33.02509402204305,33.7149293217808,33.81539296731353,33.610230195801705,33.36041356949136,32.795838149730116,32.945213318336755,32.32965068053454,31.608906398527324,32.28264141548425,31.8651979486458,32.32204416068271,31.359981635585427,30.799937484320253,30.96646681521088,30.61520402925089,30.343604455236346,30.380585052073002,30.249799307901412,30.06469448748976,30.220371170900762,30.71036239527166,30.462114945985377,31.369305903557688,31.86714787175879,31.78200640482828,31.09984592627734,31.1408604006283,30.97378388233483,30.651765702757984,29.867606716696173,28.92904406413436,28.145211588125676,27.749490248039365,27.835422257892787,27.800393511541188,27.76793623249978,27.251064320560545,27.108513604383916,26.787666090764105,26.427571364678442,26.824381068814546,26.735913219396025,26.88389778137207,25.91837516706437,26.39987545553595,25.761293295305222,25.65767987491563,25.81961752101779,25.063413138501346,25.317145181354135,24.843884346075356,24.840998625848442,23.882490378338844,23.05386693123728,22.20621092338115,21.669502472039312,20.873118050862104,21.295702705159783,20.765449417755008,21.266795316245407,21.043710289057344,20.31640376895666,19.514685325324535,18.53177271038294,18.55648007662967,18.604801211040467,17.890630765352398,18.375055504962802,19.18966749869287,18.7678659055382,18.825609237886965,19.194887412246317,19.024416546337306,18.861284935381263,18.81027130642906,19.545096608810127,18.646847884636372,17.972576027270406,17.630136518739164,17.075451510958374,17.390107926446944,16.456042335834354,16.526933853514493,17.01640003034845,17.43240625085309,17.524799573700875,16.725118442904204,17.00825861096382,17.634038735181093,18.44269041204825,18.249671081546694,18.396950841881335,18.535677475389093,19.294614515732974,19.574031208641827,18.667480340227485,19.362786793150008,19.457243340089917,19.514910091180354,19.78557520871982,20.407576411496848,20.804063191637397,20.975075114052743,21.154254907742143,20.216098747216165,19.68868404487148,18.88501724926755,19.419865740463138,18.45760220522061,18.445020062848926,18.815467631909996,19.074090295936912,18.83360043168068,19.75126242171973,19.721177712548524,19.45541865983978,20.314816189929843,20.195973398629576,20.676410235464573,20.536087970249355,20.710194283165038,20.882586403749883,21.21868534805253,21.987879427615553,22.23716617980972,22.220211404841393,22.1523028598167,21.60182074131444,22.054557270836085,22.948591596912593,23.266750499606133,23.0641458183527,23.541057165246457,23.77142211375758,24.588348331861198,24.952594252303243,24.598222316708416,24.03713916707784,24.466911115217954,25.00967186782509,24.859878513030708,24.52832761593163,24.350536048877984,24.944195416755974,25.322910545393825,24.708099163137376,24.515293834730983,24.652993615251034,25.206481775268912,24.83285705279559,25.1051605748944,25.121300695464015,25.767326983157545,25.337706424295902,25.352855322882533,26.315582868643105,26.365422409493476,26.264545085839927,25.469045979436487,26.24833335634321,26.649735967628658,26.856896600220352,26.15344212250784,25.73185145808384,24.841521420516074,23.88289051502943,24.282680680975318,23.48177030077204,23.921729404479265,24.82306246086955,24.28554143384099,24.46216087648645,24.485099466517568,24.546761717181653,24.266807770822197,23.499345660675317,24.260777524206787,24.155534273013473,23.677437454927713,23.580727689433843,23.09346213657409,23.41494900221005,23.791444537229836,23.33790358901024,23.634766316972673,23.139974016696215,22.40144559321925,22.351517168805003,22.814570086542517,23.56643171561882,22.89757415605709,22.548016420099884,21.625285409390926,22.559001796413213,23.307257660664618,23.790645553264767,23.25639445381239,23.313181836158037,24.26014558924362,24.688373239710927,24.100354789290577,25.044936183374375,24.14534396957606,24.07956767641008,23.72816450148821,23.997644943650812,24.536854890175164,23.942801990546286,24.627807289361954,24.768875545822084,25.73062496446073,24.956923991907388,25.253147336654365,25.930575381964445,25.60450051771477,26.490223810076714,27.410642967093736,28.069970976095647,28.511075017042458,27.6970264618285,27.01053335191682,26.625162734650075,25.759488945826888,25.767226395662874,25.218884938862175,25.53139356104657,25.182531121186912,24.96750889578834,24.925207126885653,24.164279592689127,24.98400929570198,25.518667028285563,24.853542260359973,25.21546712005511,24.325569023843855,25.154811462387443,25.830480334814638,25.947364679537714,25.98317656526342,25.027791646309197,24.083628471475095,24.75408160686493,25.054191926959902,24.784161172807217,23.806231176946312,24.78617584751919,25.758521443232894,26.61100583616644,26.60416132537648,25.804979692213237,25.013583065010607,24.495476718526334,23.4979850333184,23.834610672667623,23.722110056318343,23.912251941859722,24.714496158994734,25.488508954178542,25.522077977657318,24.56378118507564,24.45822124974802,25.24773970991373,25.592454503756016,25.522121080197394,26.19691867660731,26.26824392657727,25.304795358795673,25.883280833717436,26.53062797151506,26.798038799781352,26.684781034942716,26.871732333675027,27.81978523498401,28.25919751310721,28.968952967319638,28.668188339099288,28.16603511571884,28.599079011939466,28.67029971582815,28.990281581413,28.13333232793957,29.006795736029744,29.765376845374703,30.260867384728044,30.543237274046987,30.8913736785762,31.580821744631976,32.355518721044064,32.45489021576941,32.83072859281674,33.68578432779759,33.69004013389349,32.75883162301034,32.75468715233728,33.044215047731996,32.04996481956914,31.500857199076563,32.27194002922624,32.07293968740851,31.81684252154082,31.93978650122881,32.10505183786154,32.82647111918777,33.371483594644815,34.26055895304307,33.418054888024926,33.91062299720943,33.20360534824431,33.3075751834549,32.86995772877708,32.44079476688057,33.14856612822041,32.774262313731015,32.063612944446504,31.507059992291033,31.46073917625472,30.98682486778125,30.757457550615072,29.836472779978067,29.81897023692727,30.530189173296094,30.519145533442497,30.386078564915806,30.329491020180285,30.713973929174244,30.410457817837596,30.000888962764293,29.860731601249427,29.243991885799915,30.22944847168401,29.84727169200778,29.05329227587208,29.855624217540026,30.411389815621078,30.934886022936553,30.172449567820877,29.20333302160725,28.291569729335606,27.293902231380343,27.93792584259063,28.44771466543898,28.361574050970376,29.216349822003394,28.68628948694095,29.33830829197541,29.490068761631846,29.007229568436742,28.9709701272659,28.495743403211236,28.07804887648672,27.467891806270927,26.616337215527892,25.741841387934983,25.96437821863219,25.26848094165325,25.98321498511359,25.003198123071343,25.35851027490571,25.41760428575799,24.816281581763178,23.834871454164386,23.80275424895808,24.008592921774834,24.32158998446539,24.008972636424005,24.494044101797044,24.947333564981818,25.683141150977463,26.57125549344346,26.276636118534952,25.722635636106133,25.030646367464215,24.390038643497974,24.640725459437817,25.16345379780978,24.75880981562659,25.16855927137658,24.45566810062155,24.77557259518653,24.06439851410687,23.88366781268269,22.901029305532575,23.52905614953488,24.18871608003974,23.65081888437271,23.400003811810166,22.421487981453538,21.70795858837664,22.149467274080962,22.59405937604606,22.59372037043795,21.80671134358272,22.198338796384633,22.978419799357653,23.37621051259339,23.912483184598386,24.441955387592316,24.881964321248233,23.90968957124278,23.574024928733706,23.224181140773,22.581347786355764,22.18019579630345,23.174731350969523,23.71464961534366,22.92142267851159,23.84316734224558,24.743207266554236,24.630411283113062,25.256223385687917,25.498008192516863,25.951836549676955,25.82813040120527,26.45863406546414,27.33668346563354,27.173492718022317,28.108734510373324,28.670019772835076,28.79269724432379,28.724276625551283,29.620532332919538,29.563160062301904,28.711834523826838,27.855886191129684,28.851933357771486,27.88947214698419,28.209880338050425,29.16857590340078,28.791792613454163,27.809504500124604,28.304646148812026,27.821960099507123,28.3873144085519,28.458105145487934,28.69093143614009,27.844460550229996,28.21039202157408,28.563184031751007,29.059228425379843,29.574836463667452,30.011112575419247,29.664461666718125,29.38181567331776,29.977820480708033,29.849815998226404,29.58145969826728,29.591446116100997,30.373724198900163,29.384338999167085,29.82606664346531,30.763869549613446,31.732528442982584,32.17483701976016,31.546370015945286,32.25559764634818,31.992225748952478,31.133245640899986,32.0526173026301,31.314797898288816,31.975238645914942,32.352093148976564,32.888395306654274,32.811996643431485,32.73824230581522,32.40965509554371,31.87267865240574,32.48306663148105,33.42292727576569,32.90046858927235,31.950185888446867,32.6539190299809,32.31971138250083,33.17065937444568,32.381396621931344,31.64395389566198,32.001120681874454,31.76957306591794,31.547273819334805,31.332320587243885,31.31377885118127,30.420441043563187,29.936400062870234,29.377655799966305,28.6784634036012,28.71093574911356,29.54066652338952,30.38690974889323,30.07010576222092,29.30182371241972,28.752185463439673,29.31105294218287,29.742523006163538,30.543895855545998,29.900544877629727,29.33951575914398,28.852083219215274,29.038874082267284,29.357902007177472,28.600787573028356,29.217605530284345,29.646544358227402,29.697046394925565,29.915357305668294,30.645823309198022,29.76898970734328,30.263775878120214,29.581972930580378,28.770098412409425,29.686002052389085,29.18832892505452,28.707519692368805,28.444557107053697,28.19869578955695,28.431116562802345,28.484458714723587,27.645868378691375,27.25353775313124,27.839517610613257,27.178160831332207,27.557963114697486,27.78912387508899,27.87390067614615,28.167091433890164,28.33162019541487,27.41261938866228,27.735715929418802,27.905028658453375,27.123975123744458,27.944760690443218,28.056779786478728,27.765100561548024,28.50751332566142,29.29584080306813,28.35461286874488,29.045517120976,29.883802126627415,29.68962691538036,30.582917186431587,31.35618623532355,30.93764490587637,30.93875223165378,31.154464666731656,31.177157228812575,31.286621201317757,31.126902948133647,30.466665940359235,30.158752566669136,30.986032425891608,30.2029094141908,30.777815819252282,30.654583572410047,31.160985617898405,31.022747280076146,30.75893725687638,30.968906096182764,30.35511757666245,30.568546102847904,30.120555407367647,29.53967597009614,28.86468683881685,29.816931962501258,29.442484385333955,28.50158462440595,27.994172607082874,28.9712317539379,28.406416867394,28.34372232388705,27.927692271769047,27.944770478643477,28.9430814050138,29.474813355132937,28.930314817931503,29.4401613320224,28.88490385422483,27.98531093634665,28.66435701958835,29.65591883426532,29.33199785463512,29.552078364416957,29.30573800066486,29.806823648046702,29.93673967104405,29.9207344641909,30.33664025645703,30.066995547153056,29.649080858565867,29.661674013826996,29.102011275012046,28.36790060484782,28.899235479999334,29.14249164890498,28.91267194831744,29.67125821346417,29.075824241619557,29.50433319993317,29.504795579705387,28.588927038479596,28.58467183727771,28.282782699912786,28.965787888504565,28.701925994828343,28.316535245161504,28.681366038508713,28.351905547082424,28.204606482293457,29.011474383994937,29.11338834511116,29.023220324423164,29.536729999352247,29.26165069732815,29.8505247393623,30.73644284438342,31.177563992794603,30.477741891052574,30.983606869354844,31.717272967565805,32.52305852249265,31.779408620670438,31.072893506847322,31.764702369458973,32.655842940323055,33.21229331381619,34.113391851540655,34.0057462984696,34.10602184571326,34.518092384561896,33.90909413713962,34.22862660698593,35.01751729659736,35.40348043013364,34.604707507416606,34.56854056706652,33.82366676302627,34.81327150715515,35.63548443233594,35.30015593068674,35.46279090503231,35.82907162886113,35.3637365186587,35.96014411887154,35.22621317906305,35.45612663589418,35.11446335632354,34.3027077219449,34.17157838353887,34.369800918735564,34.77326678438112,35.30439062928781,34.639254027977586,35.20005156844854,36.048172066453844,35.992262846790254,35.00259388098493,35.623772089835256,36.40953689580783,35.95736219128594,36.50404125545174,36.64779126876965,35.916582884732634,36.85639072954655,36.41881432104856,36.07199781946838,35.56771052675322,35.63126919185743,34.74814394908026,35.17523238854483,35.10239879274741,35.8864675918594,34.9730556816794,35.22199639445171,36.001402731984854,36.431764114648104,35.72727701533586,36.46020172070712,36.846886795945466,35.857095691375434,36.794503457378596,36.46876442665234,35.86843454185873,36.75688311737031,37.70387368183583,38.665016311686486,37.987193258013576,37.068693307228386,37.16390905017033,37.0271015833132,37.71956064039841,38.522076272871345,38.230934634339064,37.57166373496875,37.93059689179063,38.49989595869556,39.42643879679963,39.414116663858294,38.55490736896172,38.21368702268228,38.11065105069429,38.28908524941653,38.0174601865001,38.8543082815595,39.36862022615969,39.28601594688371,39.73660437623039,40.37579386914149,40.20235960185528,39.26943346764892,40.266557931900024,40.96896418975666,40.54207954974845,40.21923886658624,40.21492570033297,39.737452341709286,39.6322475252673,39.57933504926041,39.900681383442134,39.473498126491904,39.46317940577865,40.4572570011951,41.18480127118528,40.22499345522374,40.72850384609774,40.226707658264786,39.46174610359594,39.306268776301295,38.71753467898816,39.00485972547904,39.60842266958207,39.95772459451109,40.305214618798345,39.95831926399842,39.503046540077776,39.593736581504345,39.62649207515642,40.21795959910378,39.512550664134324,39.389536754228175,39.6695667761378,40.15639932313934,40.03990012500435,39.842027018778026,39.920791706070304,40.88297594292089,41.74969449872151,41.3836226426065,41.07214713888243,40.6800764487125,40.50500434776768,40.33697787905112,39.889817245304585,40.32667353423312,41.32395672146231,40.37732908781618,39.77215971099213,39.793076616711915,40.12792416429147,40.415000728331506,39.65159262670204,40.26859976770356,39.794351250864565,40.47518604854122,41.09482268290594,41.978219834621996,42.29293414205313,43.16325126821175,43.72021782025695,43.27059885021299,43.4021375128068,44.29319181200117,45.17745610978454,46.138878513127565,46.656291734892875,45.68758786236867,45.54969690879807,44.76856265962124,44.95869878819212,44.98832078278065,44.871351272799075,45.862793896347284,46.1817236575298,46.95498564885929,47.58032058598474,48.081649536732584,47.60481382906437,47.39878791384399,47.84697435051203,48.36743594938889,48.65484385052696,48.833266731817275,48.50299964565784,48.92192628886551,48.74762182449922,48.609876436181366,47.95528407022357,47.48611928150058,48.25459787575528,49.09567942097783,48.82927304133773,48.50758485496044,48.41577703459188,47.75948767736554,47.49454074725509,47.90696023078635,48.61183265410364,48.337526319082826,48.01142970472574,48.59799805562943,48.5023351428099,47.757750443182886,46.933650757186115,46.32377062086016,45.43774376763031,44.67811087472364,45.225304402410984,44.58598226075992,45.510231082327664,45.13978055678308,45.25240029161796,44.28525658277795,43.633435640484095,44.473588610999286,43.50128049263731,43.63691589143127,43.52102165762335,43.90082257427275,43.298326259013265,43.05515345092863,43.901331609115005,42.964049828238785,43.46402126410976,43.98035799525678,43.566521792672575,44.26569459633902,43.951141759287566,44.496350292582065,45.08075517648831,45.008669921197,45.79760401463136,45.610383537597954,44.73876132396981,45.57699765311554,44.926121490076184,45.32945574214682,46.16494481777772,45.81438042735681,45.74160296935588,45.445543526206166,46.106510241981596,45.16892006248236,46.030076055787504,46.74573892960325,46.60828332416713,46.225906278472394,47.053653941489756,48.00837168749422,47.168377610854805,48.04712504660711,47.17303743911907,46.98975897487253,47.80819342331961,48.59815753158182,48.40667678974569,47.61399012990296,47.825220548547804,48.59444820927456,48.54919367516413,48.02847090177238,47.99661490228027,47.51795413158834,48.15059383632615,48.33899707067758,48.87658795155585,48.73666814947501,48.59323604404926,48.44598305178806,48.64587553590536,48.2326250015758,48.45266846334562,48.97025052504614,48.145380646921694,47.979394271969795,48.22334073064849,48.829779480118304,48.20932693546638,47.43266881676391,47.73971624718979,47.814335205126554,47.30178208742291,47.38403418334201,47.74372922349721,47.541505546774715,46.78216775460169,46.920252297539264,47.22427636850625,46.72533018188551,46.59052802901715,47.48288331227377,48.20930869039148,48.6047444534488,48.25052033504471,48.98307469347492,49.32646455336362,49.797777514439076,49.42535458318889,49.91077198507264,50.619803755078465,51.052831747569144,50.9390233582817,50.64615256385878,50.74611576087773,51.15660891123116,50.268890829291195,49.62312725558877,49.435324982274324,49.04117396613583,48.42847606912255,47.808497896417975,47.20888777077198,47.703065753914416,46.749652311671525,46.40098104998469,46.64847589749843,46.582259610295296,46.702393454965204,46.284333107527345,47.14111107541248,47.866262131370604,46.89424406317994,46.074702568817884,46.36896032700315,45.41632674075663,44.59182263026014,45.0936913988553,45.98828713968396,45.504456888418645,44.93628452671692,44.78742034453899,44.0342598981224,44.404951266013086,43.717470849398524,44.105579554103315,43.816185182426125,42.96553644677624,43.34042250318453,43.66086818696931,44.209090194664896,44.395141104236245,45.07996714813635,45.25505815399811,45.83805142296478,45.4741184595041,46.33997957222164,46.39226490678266,45.4493203451857,46.33522344660014,46.35980319418013,46.39629217796028,46.31614927435294,45.36911563342437,44.920213599689305,45.85020107217133,46.73963807383552,46.2324406132102,47.13173535093665,47.579917940311134,48.45827704668045,48.470893155783415,48.59727109177038,49.38828952470794,49.461266733240336,49.03031070064753,49.28205023892224,50.04680113866925,50.063696487341076,50.38512090733275,49.63421375537291,49.61229224782437,50.12202845001593,49.86509033059701,49.42362236883491,49.27598998649046,49.44896357366815,49.08485374040902,48.44757087063044,47.765745827928185,47.713414177298546,46.793839558027685,46.01026146346703,46.857505353633314,46.57894209725782,47.545364887453616,48.26585676614195,48.97273614536971,48.50654792226851,48.954657562077045,48.637936257291585,47.68617741391063,48.527400678023696,48.08282629074529,48.03147869929671,47.94542951975018,47.9224524544552,48.27814547345042,48.99120006011799,48.268065558280796,48.565626265946776,49.48828590614721,49.717556565999985,50.67110366281122,51.00282517680898,50.252805079799145,50.887606382369995,50.25315801380202,49.79406930413097,49.42343406425789,50.39660652121529,49.54399183392525,49.3839798248373,49.658782771322876,49.81368823163211,49.17592837428674,49.69565515918657,48.88018309744075,48.47109017847106,48.254819276276976,49.085259766317904,49.83313338737935,49.46863849181682,48.68384463712573,48.65511873178184,49.25265365233645,49.052455079741776,48.69732360774651,48.15197155857459,48.72452884213999,48.58738690428436,47.92726617725566,47.263550131581724,47.11347872996703,47.87866954738274,47.461746126413345,46.67829832108691,45.75162894651294,45.76947411522269,45.36505226511508,44.76853188127279,44.96177460066974,44.22520220139995,44.47115762345493,45.45029838383198,45.520354059990495,46.162181741558015,45.40923690516502,45.3547691013664,45.63595426874235,45.477283902000636,46.12317299377173,45.27466513076797,45.4523617811501,46.075529584195465,45.24116230150685,45.18220978975296,45.935342736076564,46.31183174997568,46.4971443018876,45.52805533213541,45.096423362381756,44.43077748734504,43.821120113134384,43.6244319989346,44.26927190693095,43.69861388672143,43.11753598181531,43.831802730914205,44.119937502313405,44.98238153383136,44.89471779577434,44.738168351352215,45.41752765979618,45.20417795795947,45.839978704229,46.253704329486936,46.266544613521546,46.062424240168184,45.18262762343511,45.871708976104856,45.328804841730744,45.68602751940489,44.711446954868734,44.734847746789455,44.58893379569054,45.30845787329599,45.80372980097309,45.616796114016324,45.59051029616967,45.65528398891911,46.48575872881338,45.87555428314954,45.05666869552806,45.73271726118401,45.42622490413487,45.630902864038944,45.61576213687658,46.176492349710315,45.93061200529337,46.22082871198654,46.58005598932505,46.40335464384407,45.4197141113691,45.33062838250771,44.51605009660125,44.04078986402601,44.01501116203144,43.24979882873595,43.947919183410704,43.77345571247861,43.759600308258086,44.015687251929194,44.245082097593695,43.720662446226925,43.25230817263946,42.45342770870775,42.88893820019439,42.933640516363084,42.38643553759903,41.88355187000707,41.61281193420291,40.73654372896999,40.25921508483589,39.38231090595946,39.7767448797822,38.97160592395812,39.70023970399052,39.771110753994435,39.84238465130329,39.518224199302495,40.37651483109221,40.48883981490508,40.86119727790356,41.789430192671716,41.93946202052757,42.33931425213814,42.25530432583764,42.320190981496125,42.2351547353901,41.52596238721162,41.33210982615128,41.43864909512922,42.187300477642566,41.98254601191729,42.33550727274269,42.24161349935457,42.10454904707149,41.85556560149416,40.87330176308751,40.47930319420993,39.517746170051396,39.50508318701759,40.283651588484645,40.884330259636045,40.42489752871916,39.788952955044806,39.801498205401,39.1576701332815,39.26066208444536,38.77759055746719,37.99553908640519,38.18469166988507,37.205893862526864,36.40807890286669,36.45280226552859,37.074874334502965,38.06730799609795,38.57937338622287,39.06700267177075,39.61232392117381,38.95432641124353,39.82987673068419,38.87640249123797,39.52322197658941,39.48894137563184,39.19865282159299,39.789496218785644,39.40391158964485,39.256798847112805,38.85475365864113,39.20400327583775,39.17646111827344,39.432717223186046,39.33795287646353,38.998715159948915,39.862611113116145,40.02974315965548,39.260043900925666,38.583929877728224,37.83390464587137,38.45492023322731,38.84847196517512,39.629125508479774,40.11967871012166,39.32216489966959,39.88044649595395,38.91885847551748,39.51902635535225,39.00816171662882,38.84103630436584,38.88856945000589,38.00549178523943,38.55622441088781,38.85259413719177,38.49922825861722,38.401391870342195,38.1671853880398,38.10243986919522,39.04795986087993,39.22198285814375,39.846348942257464,39.00890604220331,39.457803677301854,40.30982163362205,40.81497627403587,40.427106889896095,39.497626229189336,38.98723978083581,38.40253566298634,38.324364583939314,39.083125525619835,38.45783081371337,38.54337614309043,38.26622868934646,38.59963232092559,39.186195912305266,38.77151719480753,39.46542750298977,40.44385914830491,40.195299197454005,39.60848096711561,40.23039629030973,41.090034587774426,40.91122018219903,41.333719920832664,41.6988132619299,41.26103257294744,42.21289648115635,41.28057851828635,42.09057855093852,42.35412278678268,43.07066449755803,43.20792135829106,42.91893842210993,42.047638232819736,42.789416438899934,42.03311110800132,42.766277394257486,42.71229744935408,42.267404191661626,42.45787730906159,42.05009057605639,42.561827345285565,42.191087721847,42.17566189588979,42.59316634060815,42.132618374656886,43.11010813387111,43.418636043556035,42.947123758960515,42.756230875849724,42.63267866661772,42.0892620338127,41.94522726116702,41.4387741163373,41.40739810001105,40.585133279208094,41.56003047991544,41.21858963230625,41.40400523878634,41.490217422600836,41.01181663852185,41.22888145130128,40.33354449039325,39.44811589689925,39.48893372574821,40.33260704996064,39.75728131271899,40.23079924704507,40.480303052812815,41.21359548624605,40.269277951680124,39.475787590723485,39.95364942913875,38.9916105591692,38.75548152625561,39.39320911979303,40.161181127186865,41.087292096577585,41.23829002864659,41.49976227572188,42.26286810077727,42.37524204701185,43.00104579003528,42.3701453381218,41.687593994662166,41.896370517555624,41.00251840474084,40.251707557123154,39.80701486673206,40.02834134036675,40.74701157677919,39.74993272405118,40.67256764974445,40.44040274480358,41.4269997687079,42.326871836557984,41.52105980692431,41.28450682479888,42.18272300576791,41.6822579591535,41.18459359416738,41.646911113057286,42.047024784609675,42.566039403900504,43.05875832121819,43.16006393264979,42.71907218405977,43.56856248015538,43.96677636122331,43.84663641825318,43.569603487383574,44.43576030712575,44.21233125263825,44.81065123202279,45.3513742685318,46.33442912949249,47.209986912086606,46.5749681876041,46.95799112832174,46.53305417764932,46.78623428661376,46.78562216460705,47.45445595122874,47.652412835508585,47.792914680205286,46.85301826428622,46.045543449465185,45.72748709330335,45.13342994498089,44.537972525693476,43.66978087509051,44.46074795117602,44.42096097860485,44.85639785695821,45.588603479322046,45.44306586543098,45.70481903292239,46.62197237787768,47.47022647690028,48.367000392172486,48.87993811396882,49.47434532409534,50.36031487863511,51.300162881147116,50.66020222613588,50.72771414043382,51.15647742850706,51.538444858044386,50.90411592135206,51.496128471102566,51.01661381917074,51.91686411295086,51.210438466165215,50.5057956748642,50.470623197034,50.985814701300114,50.524559867568314,51.4392529069446,51.78411041805521,52.0314647401683,52.49309235159308,52.21701559238136,51.819147006608546,52.22655467083678,51.65397031791508,50.988216787111014,50.72319647204131,51.16707278275862,51.00387461623177,51.80071540689096,52.31290834909305,53.19716558884829,52.777270005550236,51.95044491160661,51.738611687906086,51.85153274331242,52.47476095193997,53.060247004032135,53.650931040756404,53.65778947295621,53.61807611119002,53.24683354329318,53.2117294697091,53.96919615380466,53.49777604686096,53.86200641095638,54.079754629638046,53.69080886710435,54.06665177643299,54.61169542837888,54.135352802462876,54.37263531330973,54.160211781505495,53.41748421359807,52.451724521350116,52.17195417732,52.139777649194,51.92568892985582,51.78718112781644,51.23345652921125,50.63419133098796,51.496523555833846,51.97854516888037,52.56121383048594,52.003628958482295,52.840104137547314,52.365712272468954,53.3256456325762,53.15493783308193,53.61676125973463,53.86982331890613,53.284876368474215,52.89673382276669,53.52173805376515,54.224718395620584,55.105846650432795,55.97325355745852,55.74575344007462,55.25388719839975,55.078078852035105,55.83272847998887,56.08875222643837,55.97308713616803,55.20771640818566,54.64398181810975,55.600490561686456,54.66555812722072,54.79758101515472,54.14090431807563,54.27451644092798,54.617405047640204,54.204549252055585,54.19187197694555,55.1566436807625,55.82918144483119,56.434746217448264,57.09009215654805,57.506646047346294,57.89321720600128,58.83133938815445,58.58584003010765,59.39345753984526,60.20464951777831,59.956980167888105,59.23921942478046,59.139579088427126,59.25914708711207,59.58684512414038,60.16020973119885,61.08584890561178,60.6897364621982,60.08920093951747,59.542752163950354,58.572013556491584,58.22395876329392,58.93803440686315,59.01854818454012,59.524428501259536,60.309706567786634,61.20345889450982,60.89404319319874,61.41729627503082,61.72048525791615,62.5297569623217,63.464549902360886,62.591742020566016,61.68267762195319,62.579041766002774,61.941958740353584,62.46327260648832,63.44679343700409,63.99553312873468,64.38185834791511,63.813473934307694,62.89313609106466,62.53517190506682,62.87490679277107,62.76763043506071,63.50219164369628,63.26817086804658,63.93535529123619,62.95383774116635,62.08068775665015,62.61883775983006,63.58486232161522,63.513132117688656,63.40579661773518,64.04598097270355,64.9768746769987,65.0538463788107,65.51448091678321,65.84927925933152,65.81806921726093,66.53946791030467,66.91890511615202,66.37718399893492,66.55936151277274,65.70221219584346,65.86255448823795,66.705306452699,65.71066187880933,65.83284210041165,64.99786958098412,65.54294235631824,65.03740044124424,64.39968253858387,64.6880633556284,64.4055029572919,64.13077770220116,65.1053477441892,64.1184269967489,63.24104847712442,63.80443497002125,63.4601569455117,63.084036169108,62.88713316619396,62.76938405446708,62.756864324677736,63.508212922140956,62.841363850981,62.995665438938886,62.22533967811614,61.2812701058574,60.30250618234277,59.405579924117774,59.72599958162755,59.67570412904024,59.006639234256,59.65730824414641,60.568476957734674,60.3594249333255,60.46646475000307,60.79326719697565,60.65228766016662,61.597462952602655,60.9221233157441,61.01261799223721,60.905834173318,61.40913821011782,60.84122856426984,61.03000264335424,60.40464728977531,60.472434645053,60.82772581325844,59.89067442016676,59.706396381836385,60.0114246760495,59.716328968293965,60.047402281779796,60.92467768723145,60.232019077055156,60.40976813016459,61.38551750872284,61.571523955557495,61.27055314136669,62.24809867748991,61.823767917230725,62.59057927457616,62.146858223713934,61.58351557701826,61.149650340899825,60.78401088202372,60.54533122899011,60.00526620261371,59.78755358746275,59.09338657464832,59.18724860064685,59.614807279314846,60.0683156340383,60.252823874820024,60.96188306622207,60.67875289544463,59.86275575077161,59.47536222450435,59.22139893844724,60.217724626883864,60.61636788677424,60.78653190890327,60.112730962224305,60.14852514816448,60.66356797097251,60.90625971928239,61.093413781840354,60.67734529962763,60.508287793491036,60.2966866302304,61.20710595557466,62.11218251474202,62.80827482836321,62.990272623021156,62.093564866576344,62.58982616988942,62.4994614305906,63.49182285601273,64.47372948052362,64.9121475648135,64.621556696482,65.60183273581788,65.45317232143134,65.05104761570692,64.97198151098564,65.12069611763582,64.95204856712371,64.01319153048098,63.68284821463749,62.9745747721754,63.714452932588756,64.4797292361036,65.13110661879182,65.26222218479961,64.4900120026432,65.453607278876,66.03994687553495,66.43691374873742,66.3614653176628,66.01373109640554,66.86897276109084,66.21710248757154,67.0042804479599,67.46665094606578,67.73285752860829,68.14772282121703,67.51225107954815,68.32569101918489,69.05082450341433,69.22858863417059,68.5939218471758,68.83589226240292,68.70691787311807,69.16672865021974,70.090658436995,69.11221282603219,68.75843391288072,69.56830568797886,70.5253573176451,71.30003852723166,70.54197779949754,70.7504347381182,70.24994371365756,70.55387641582638,71.14972236845642,71.5261914092116,70.88325196690857,70.87360183754936,71.69208338018507,71.9014900913462,72.04155366448686,71.39838990056887,71.24311937997118,71.12528126686811,71.40195602783933,70.68680317839608,71.0666398643516,71.36451972555369,70.87752286950126,71.3095125593245,70.57214835472405,70.48778290580958,71.47726451139897,72.41864791233093,73.03757365979254,72.222883886192,71.26640959689394,71.58154882816598,70.88503866828978,70.89469457697123,70.43868634663522,70.51406606845558,71.09619854111224,71.9749837894924,72.47921781940386,73.06931111728773,73.91910478891805,74.21381165552884,73.60625568730757,74.16182794980705,74.92621264699847,75.61304420232773,74.74850552761927,75.17632571747527,74.55930005013943,74.58085062447935,73.78388532064855,73.138985613361,72.35336669255048,72.34491881495342,72.78800347167999,73.05808414984494,72.87424357794225,72.73725342936814,72.77330081909895,72.01865419419482,72.46598149091005,72.06147625017911,72.33260944811627,72.73066374240443,73.30927058961242,72.42012750310823,72.39101996924728,72.0097079272382,72.42800923623145,72.90148911159486,72.92897503031418,72.22236968204379,71.50626573478803,71.69945290731266,72.42774337949231,71.9700174164027,72.35102570708841,73.3074885723181,72.36054101260379,71.54827896226197,72.18500809371471,72.53091880632564,72.36305617215112,72.05404985137284,72.62195708462968,73.23113725800067,73.31094644451514,73.58403232460842,73.66789307165891,74.62272611213848,75.45371756562963,74.70665590791032,73.79696221556515,73.39176367223263,73.59344474552199,73.36783081619069,73.47775154653937,73.88461183942854,73.97181049641222,73.96772233536467,74.05037196399644,74.01537638809532,74.20986117655411,74.20492508495227,74.44196793297306,74.36158920824528,74.49527415074408,74.95469556283206,74.58536712033674,74.93058449029922,74.1756419558078,74.54760018875822,75.1267628306523,75.36261423444375,75.59677552105859,74.89741391967982,75.24019285850227,74.38737710285932,73.90336161432788,73.55769954295829,73.25886305235326,74.11907545849681,74.57527350028977,75.30600859597325,74.61584648489952,74.04140397440642,74.59877476235852,74.33506631851196,74.13892587320879,74.08994979504496,74.10219760844484,73.16987665044144,73.61833630409092,73.45722304005176,73.8052589087747,74.30218508886173,73.79976383410394,73.79005599115044,72.96484277164564,72.12599250255153,72.97273292951286,72.48244522884488,72.44111370062456,72.55880633881316,71.7878131349571,71.92961456300691,71.75816336134449,71.72308752685785,72.08293832791969,72.28615710232407,72.63045389577746,71.90847440389916,71.16493296902627,72.02645348245278,71.7719515869394,72.71629845397547,73.70867217797786,74.31582782883197,73.47369557246566,73.4222736787051,72.76841963408515,71.92160513205454,71.68647093186155,72.3502624342218,72.36392156453803,73.02174418000504,73.32539270538837,73.48274099035189,72.78299120161682,73.05882033193484,72.75054867286235,72.15106062684208,71.78730487916619,71.08672781148925,70.47272562608123,70.86777929542586,69.92780545121059,69.06874529784545,69.82315282523632,70.09694272000343,70.21902456972748,69.80871806154028,69.77655678847805,69.79892679490149,70.0448191696778,70.03716957103461,69.29680745815858,68.383867259603,67.50540725886822,66.93115725927055,66.97362254466861,66.0879969401285,66.97964470693842,66.68290013074875,67.60618218453601,67.64002460986376,66.64687190391123,67.42695085611194,67.42026948696002,67.51911745360121,67.42092564422637,66.45817466406152,65.575953733176,66.18813544791192,65.95987811125815,65.48274005530402,65.36038211220875,64.73592654708773,63.91616613045335,64.82117102760822,65.61406263103709,66.09133769059554,65.47498823469505,64.90738633088768,64.1190654989332,64.43623522249982,65.27969504287466,64.71529791783541,65.47552417078987,65.38414725009352,65.0591872241348,64.1274026161991,63.161023303866386,62.451980751007795,62.16851201513782,62.14249115390703,62.24378705397248,62.2160440729931,62.07692671241239,61.15789622673765,60.700375706423074,61.253592459950596,60.866139312740415,60.971823923289776,61.10318307811394,61.356870654504746,61.00784241501242,61.79353632032871,61.80407035164535,61.28506308142096,61.74485582485795,61.811488972976804,62.3803295660764,61.90465406049043,62.556803402956575,62.325873909983784,63.31270763045177,64.26725933980197,63.72747914120555,64.47034439910203,64.60669954540208,64.03618935029954,63.33517591096461,62.78415837883949,62.209785263985395,61.73254722589627,62.1086120698601,61.416231219191104,60.59396219113842,61.235991694033146,61.06315269274637,61.541210245806724,61.031662301626056,61.24511473765597,61.695844219997525,60.7101374855265,60.058866302948445,59.585597230587155,59.66222449019551,60.414325387682766,61.10371449543163,60.38106708461419,61.2130009974353,61.77475798455998,62.65863589430228,63.56073627760634,63.65832653315738,62.80150327878073,61.887880420312285,62.22341322619468,62.01222181040794,62.23874862678349,61.64928787294775,62.443439576774836,62.88517953129485,62.95860746409744,62.135225667152554,62.44540649931878,62.22646898403764,63.147151857148856,63.98202598327771,63.20408593118191,64.15701289149001,64.12269358243793,64.38163079693913,64.06441154237837,63.81060888757929,64.70172433694825,63.94185091787949,64.53245957614854,64.95103943580762,64.43929730635136,65.38456462882459,65.53430657228455,65.50454730540514,66.22574927983806,66.57118108030409,66.2294198917225,66.17693946743384,67.15398101089522,67.06119731999934,67.05672965710983,66.84238029737025,67.44969739485532,67.23837984120473,66.46372470539063,66.62351650791243,67.3215444763191,68.22319760732353,68.56510301819071,68.45905580278486,69.40467645740137,69.6489251665771,69.8755334536545,69.00623308354989,68.6237895488739,68.66986735770479,68.00954449316487,67.80568170547485,66.89218483678997,67.7929014051333,67.03666930040345,66.38730264734477,66.99615301936865,66.09851574152708,66.446348994039,66.97476440900937,66.77039720350876,66.87431253073737,67.34203645726666,66.88206169800833,67.54875953635201,67.78570561576635,68.28745184093714,67.43256040429696,67.8612045305781,68.37836957117543,68.56521735014394,68.44463120680302,68.42164227785543,68.63462645048276,67.70235922886059,66.71825177548453,67.12114733923227,66.95813121087849,67.14377636369318,66.7057806761004,67.7056679003872,68.46952883386984,68.73285041144118,69.54838239727542,70.43424139171839,70.9512731693685,69.95682621514425,70.74284219415858,69.77147669391707,70.49119179369882,71.26016669813544,70.8156722234562,69.86132257105783,70.1301495670341,70.69867992773652,69.87515346566215,69.1395014161244,69.29091116599739,69.65691053587943,69.73603181447834,70.28396642720327,69.80036340327933,69.87557640532032,70.0816806750372,70.93570387782529,71.03296542959288,70.66615911806002,71.27237614803016,70.78403584193438,69.94350803270936,69.97364593250677,70.95698596350849,70.02758045867085,69.92003259807825,69.32492888346314,69.68502733018249,70.11793978326023,69.18807877134532,69.97131461231038,70.33979062922299,70.71458188211545,70.9247572417371,70.0228447006084,70.90355320973322,70.11533996136859,71.03944138763472,70.47488904045895,70.9072856339626,71.1863028188236,70.92564038513228,70.01295835943893,70.94671332882717,71.29622305836529,72.19023169018328,71.77115876181051,71.69591075927019,72.34287239518017,73.32272224593908,73.10506001114845,73.19507816061378,73.91670533455908,74.1664121649228,73.75597491208464,74.40112767089158,73.78749489178881,74.49578414624557,74.41859101410955,74.27578556491062,73.48531028395519,73.74486769502982,74.5978974411264,75.45081977918744,76.30735989194363,76.07340252725407,76.47412577271461,76.08941810950637,75.88122542668134,76.29861100483686,76.1029076948762,76.2289166636765,76.69984163949266,77.38723707292229,76.75543139735237,77.72248062351719,77.55810529971495,78.109897329472,78.87160295760259,78.45674610044807,78.95216532796621,78.08234041230753,77.37341632181779,77.42135580768809,78.1953595308587,78.84512045653537,79.29351360257715,79.41760360775515,80.22452284116298,80.38141557527706,80.96239832835272,81.89613822894171,82.34908436983824,81.95567747345194,81.44308804208413,81.34668955300003,81.54642250295728,80.82177807064727,80.89030027762055,81.53200649796054,80.59547970723361,80.48113045841455,80.22112015262246,80.97506569791585,81.40541900554672,81.39315654197708,82.13654362317175,81.92828060174361,82.85309253679588,82.29221124434844,81.80445677507669,81.29742537997663,80.604989817366,81.03665154008195,80.55114359222353,80.362399879843,79.91952199442312,79.52783172344789,78.7496193968691,77.94347877940163,78.61148060625419,79.1251118616201,79.87491515511647,80.26427045743912,80.34872975526378,80.05190160963684,80.13126484537497,80.36196994176134,80.11488387268037,80.0499006784521,80.71707023167983,80.85269141150638,81.52557133324444,81.24977442296222,81.58380252495408,81.44807026628405,81.24718966940418,80.44233104586601,80.74401717633009,79.80016279034317,79.26884751021862,79.40347209013999,79.91877167345956,80.18486596131697,79.57960482733324,79.59528125682846,78.80376030690968,78.22271403577179,77.84763393271714,78.71536129806191,78.33123032469302,79.18165706843138,79.86189267737791,80.43007395137101,79.78712214995176,80.03076607454568,79.50955249601975,79.67483064625412,79.76248417282477,80.23134439531714,80.07032616203651,79.61134112486616,80.42131402622908,80.96602839184925,80.58554777037352,80.35432765726,80.76778027042747,79.92013730993494,79.17267343541607,79.33742862986401,79.58150783646852,79.51288058236241,79.263450241182,78.74186508730054,78.56373087968677,78.12982252426445,78.07233740435913,77.65429998235777,77.69555403850973,78.47189236665145,78.48912322195247,79.14243529364467,78.30519175110385,77.42187355458736,78.20734680304304,77.77239186316729,78.44152251677588,78.715544460807,77.72108027106151,78.1393000036478,78.2359132389538,78.97853090940043,79.46375626139343,78.82729714922607,78.28285908326507,78.0683697569184,78.57408139528707,77.70152091048658,77.03945728205144,77.67593888239935,78.27413234300911,78.07364033348858,77.73941452009603,78.6711893985048,78.88795212702826,78.26130721345544,77.69387580547482,76.90210873726755,76.38257996877655,76.3915980742313,76.41415040940046,76.83255258342251,77.40942477667704,77.93234385037795,76.94727551750839,77.50027890922502,78.00524334795773,77.36736206430942,78.28381170518696,78.51883628265932,78.29539189161733,79.286610099487,80.18114500446245,80.49845443572849,80.30027810996398,80.83554039290175,80.43582924548537,80.73691811552271,79.77595933387056,79.29225001251325,78.49816446239129,78.63079239847139,77.93809507275,77.43010259000584,78.14852450229228,78.07781575899571,78.06863942509517,78.19286330463365,77.4466159385629,78.20670389477164,78.87082891399041,78.21067548869178,77.29082393320277,76.83179852273315,76.1385098635219,75.36877396609634,74.86851062253118,74.81557479314506,75.08790565468371,75.32693582167849,75.03461124422029,74.7898319195956,75.35956196254119,75.5019419612363,75.99555910704657,76.69773725327104,76.16739908931777,75.33221204997972,75.53463131608441,75.98408407438546,76.70969641394913,76.07851371308789,75.8644458213821,75.15613008057699,74.31129702972248,74.24683440569788,74.257372435648,74.47108037071303,74.37770299846306,75.14007882261649,75.31101080728695,75.73152992222458,75.0687409080565,75.36834893375635,75.10649537248537,75.35743522038683,75.1096546575427,74.46229525981471,75.3706094417721,76.3104747547768,75.44756785687059,75.69365767808631,76.67893117573112,76.68537954380736,77.00958345737308,77.75846812780946,77.43763594608754,77.14639777923003,76.58252552291378,76.39923221804202,77.08527664234862,76.18692479329184,76.22314947051927,77.19538219086826,76.31954749301076,76.21783522330225,76.98810254409909,76.05260218912736,77.01600377541035,77.9190956861712,77.68304440565407,77.19949879543856,76.9713903972879,77.60911716613919,77.67620762018487,78.06263612536713,77.85674744285643,78.20815048879012,78.12044980050996,78.9191138097085,79.39760721847415,80.04574500955641,79.12098508281633,78.55591326346621,77.95049079414457,78.20217712596059,78.32831862336025,77.83839998394251,77.9371183635667,76.99003288289532,76.86018634121865,77.21868809964508,77.36564528848976,77.33279223088175,76.94494508486241,76.13773146318272,75.445899926126,74.75522078061476,75.31429174775258,75.87474619131535,75.17929594730958,75.23347977735102,75.18913713796064,75.30064278421924,74.52283255755901,73.86422769678757,73.84323598118499,73.44937638333067,74.35831083729863,74.252184511628,74.36204793862998,74.12014920590445,73.12528116442263,73.92021410446614,73.4855324625969,74.44338818453252,74.58769824169576,75.21291906572878,74.89019490219653,75.13059383863583,74.21882507344708,74.11577392416075,73.90908090071753,74.88966913707554,75.60306467255577,74.82314229151234,73.96021090866998,74.900681712199,74.1012765550986,74.6568626826629,74.45859636506066,74.86563075892627,73.97542613279074,74.20301060145721,74.67720103031024,75.46267690882087,75.9811393567361,75.20647746464238,75.55837780050933,75.32894569123164,75.4599934592843,76.40856156265363,76.38836879981682,77.33176813274622,76.54474134836346,77.13014496630058,77.36585563980043,76.84016610402614,77.05812831688672,77.81447496498004,77.6518908389844,77.54890487669036,77.50716144032776,76.8307560030371,77.79712480539456,78.05632885266095,78.94054841902107,79.50552076846361,78.87277381494641,79.63191046006978,78.63547305064276,79.63142427662387,79.92099866922945,80.61633055051789,79.97690785955638,80.93193732202053,81.36723360233009,81.12386501021683,80.60239954246208,80.53380255354568,80.47172242077067,79.70417514396831,80.34305313229561,79.56459980551153,80.02368358150125,79.55795217957348,79.42855688603595,79.43650781316683,80.26951989531517,80.3205793374218,80.5428781020455,81.07142189657316,80.19274277752265,80.45015620440245,80.6018505175598,79.65555738657713,79.63816495845094,80.424172392115,81.17103248648345,81.57972263824195,81.79321642406285,81.40971504012123,80.95849102316424,80.02922454942018,79.51664123358205,80.06970110954717,79.09169578086585,78.83419796451926,77.94303721096367,78.33287832094356,78.22759060421959,78.09906388213858,78.6000137575902,78.53330119838938,78.92092025838792,79.27170282648876,79.63418689835817,80.31872099684551,79.84505154984072,80.00595361320302,80.45350499264896,81.13476659916341,81.0371453599073,81.4816455738619,82.43992774840444,81.70675684930757,81.17600887035951,81.88283811835572,81.89618607796729,82.21420986531302,82.70324122812599,83.30588266626,82.88649169355631,82.90113214403391,83.69850251404569,83.07527377316728,82.51847746176645,82.05205887602642,81.44348300527781,81.31470953254029,81.23806887911633,80.68109469441697,80.70956642040983,81.03738582832739,81.86279653804377,81.95148889347911,82.78578123543411,82.70248825661838,82.16511514503509,83.00851080706343,83.56417787959799,83.90683282306418,84.78270063502714,85.53552650287747,86.00811974192038,85.023429593537,85.29106723656878,86.12141930311918,86.14172131801024,86.62599301058799,85.73444719612598,86.48485433496535,87.3112726835534,86.79441583901644,85.99669497413561,85.64122798200697,85.23139226203784,85.76430664025247,85.23119743913412,85.28903641086072,85.60765103902668,85.5952341100201,85.41976748872548,85.33646523859352,86.24311026092619,86.99084216589108,86.33368294266984,87.20994071941823,86.41272986447439,86.87864370085299,87.66890561208129,87.56707102525979,87.82187069114298,88.13376528630033,88.21106973988935,88.99311211891472,88.06508781621233,88.38390418328345,88.06508194701746,87.21695002960041,86.83221430052072,86.08411911409348,86.51456242846325,86.31054904358461,85.72633902169764,86.26360073126853,86.42184322979301,86.40286771254614,85.72130654752254,84.86198116652668,85.37880136910826,85.31380726210773,85.28988050390035,84.75357071356848,84.99552081152797,84.40190627705306,84.0394229432568,84.87455892236903,85.7955026817508,86.6607639011927,85.90857833856717,86.87870468292385,86.69728130148724,86.69536786759272,87.45116135524586,87.93677029386163,87.3592441463843,86.90746407816187,86.89217325858772,86.99316812353209,86.00900308229029,86.12761069415137,85.7703206539154,86.32074536383152,86.08712420426309,85.16639993758872,84.68296405114233,84.96633208310232,83.99935622233897,83.87885536486283,84.06796614220366,83.90963669773191,83.17208569357172,82.47791929310188,81.96582167036831,81.15428005950525,80.4223772874102,80.5592378792353,80.94944523647428,81.1919239400886,80.3443684047088,80.61967281997204,80.87196750706062,79.92210763460025,79.52122460585088,79.32445940095931,78.46726199937984,78.60378265660256,78.77199030201882,78.14223669655621,78.26289896853268,77.27765167877078,77.08434568624943,77.61561719002202,78.00601646769792,77.68254539184272,76.80624050600454,77.52553796814755,77.97287452872843,78.3577367439866,77.92087010946125,77.37225731275976,76.62227394897491,76.28505467902869,77.17314577894285,76.9586081453599,76.73560534417629,76.69344955543056,75.84179410105571,75.65972797060385,76.19614349072799,75.37982200924307,75.46754624461755,74.97112291865051,74.57909304788336,73.90831499919295,73.46606499888003,73.05950651597232,73.08994210185483,73.71248735534027,74.50991515023634,73.65970665123314,73.64385179243982,74.41620653355494,74.53060930175707,74.38417608197778,74.2584461090155,74.72820732044056,75.22137786773965,75.44056260352954,76.41161902528256,76.52224124921486,77.38247862271965,77.76048287097365,77.79914699029177,77.904561560601,77.50751530472189,77.68779427232221,78.55700145848095,78.72597588552162,77.85909526329488,77.0504209799692,76.2390421424061,76.20626489911228,76.32476467080414,76.82900919625536,76.62533914903179,76.4093087199144,76.58019769564271,76.49134441185743,76.06010291026905,75.54838934447616,74.70588426291943,74.63786618830636,73.91622706223279,74.22293455060571,74.90158543828875,74.0856016757898,73.10754431132227,72.93186981137842,73.1730039701797,72.22114757495001,72.84416531631723,73.15732100047171,72.6068232008256,72.98627424892038,72.22333777183667,71.24618660798296,71.94766902597621,72.47081779036671,72.70071566291153,72.19177195755765,71.35165675496683,70.98547057248652,70.13533247215673,69.69317212468013,70.36647593555972,71.00739499507472,71.99204867146909,71.24558964697644,70.39444248424843,70.37052340060472,71.20724721625447,70.54096814850345,71.3388465247117,71.2762294197455,70.35079088201746,69.44469450507313,69.65032049454749,70.20662880176678,70.34987537795678,70.8012316939421,71.23629044322297,71.22691858187318,70.76947405748069,70.8801158349961,70.39766438072547,70.4409378292039,71.09440413722768,70.32028998015448,69.78852015873417,70.39449856197461,71.11988874245435,71.55308104632422,70.82994134770706,69.83614908903837,69.80132184782997,69.75549920136109,70.31162044312805,71.26571435621008,70.5918895197101,71.08827570034191,70.66436353791505,70.3108185636811,70.59024172462523,71.05981178581715,71.65315161086619,71.261779114604,71.2787148328498,70.32659926498309,69.8486887589097,69.53577508358285,70.23770385421813,70.29356148466468,69.40631496487185,70.30094460351393,69.98473213613033,69.67181967711076,69.00672351615503,69.77612494770437,69.45688028540462,68.69820278510451,68.76227305876091,68.87186358170584,69.69273916305974,68.78898521559313,68.56188743468374,68.28593769855797,69.20684032235295,69.61654616938904,70.0465992144309,70.47043396765366,70.73764045536518,70.26541273668408,69.8016441189684,68.96037806058303,68.91368815442547,69.6637825164944,70.65692061046138,71.04350916435942,71.32914168993011,70.43238896876574,70.64368399977684,71.19274008506909,71.41341968113557,72.14809339586645,72.4844597778283,71.80971098830923,72.55736238602549,73.48091143043712,73.48398317676038,73.94892411492765,73.71097587468103,74.67814396508038,74.95206869766116,74.30418831389397,75.04062742181122,74.73555577127263,74.1077370159328,73.71547329798341,73.01056858338416,73.57365348702297,73.06330160377547,73.79629370197654,72.88465204741806,73.33297663461417,73.64293396379799,72.84086053585634,73.4803148061037,73.90836161840707,73.23914419254288,74.19300400000066,73.32168057607487,74.18426686618477,74.84939849702641,75.65947370463982,76.30503714829683,76.69115166598931,76.84971041511744,76.13282144488767,76.3633259688504,76.28585614869371,76.04307419015095,75.27033253898844,75.28276891773567,75.74889641348273,74.95277372514829,75.37543601728976,75.95967174693942,75.47528252145275,74.57948975078762,75.07045725779608,75.08436855953187,75.67397653637454,74.77281644381583,74.30749868880957,74.98584000160918,74.39879538817331,74.01728211296722,73.74257941590622,73.45586099801585,73.01267888955772,72.0590449264273,71.84491325123236,71.83436898328364,72.38972479663789,72.77267670724541,73.55548237590119,73.21043786499649,73.40862887725234,73.91846972098574,73.47919168369845,73.70097619667649,73.351191398222,73.39653187384829,73.599803481251,73.57388249784708,73.74351589381695,73.1831240747124,74.03291136026382,73.87161022005603,74.38979206653312,74.22682654391974,73.23412417946383,73.86082329787314,74.4488540221937,73.5428850762546,74.09202658385038,75.03506165323779,75.89192070951685,76.47296336619183,76.87799802375957,77.03937859134749,78.00979821803048,77.46438662102446,77.15412913495675,77.06794933788478,76.64618266094476,77.63697137590498,77.83241287851706,78.54356843885034,78.76638533128425,79.56857920857146,79.9216270702891,80.73592747421935,80.06140321539715,79.73690831335261,78.85787238180637,78.54423154424876,78.03939656727016,78.2294528791681,77.91179869230837,78.57403330411762,78.11335257161409,77.26479710545391,78.1790343360044,78.93668305734172,79.7896529152058,78.97012256458402,79.37344536976889,79.71555613493547,80.3349574697204,80.6250662356615,79.94594415323809,80.21816863585263,81.05286550242454,80.85807005083188,80.16381227737293,79.59512344188988,80.36298036994413,79.49624559516087,79.53946417476982,80.18799447454512,80.92340449849144,80.30124913621694,79.37944407155737,80.31053070956841,79.83741463068873,79.29506298713386,80.07137454254553,80.53271885868162,80.46725983032957,81.03491738438606,80.79218795895576,80.50047212420031,80.41317292256281,79.90506098885089,80.65257575502619,79.92932500876486,79.19311533402652,79.75122455880046,79.51709112664685,78.68055346095935,78.28578090015799,77.49068689765409,76.72968583228067,77.08393446495757,76.57211714377627,76.13464819639921,77.05597330164164,76.32655975362286,76.33105320017785,77.2025391436182,77.66283183451742,77.8058137842454,77.93614806514233,78.66662576468661,78.11617678357288,77.87180819036439,78.14762221183628,78.10659468034282,77.80062223877758,76.8041061181575,76.14696543011814,76.63185161212459,76.07248938130215,76.74307523947209,77.27604939369485,77.74850176461041,78.45871114684269,78.57227795151994,78.30480925692245,77.79574564192444,78.67433034908026,78.89852820243686,79.6508079469204,79.55768315773457,79.43938590725884,78.88708778517321,79.28354295808822,78.55238854233176,77.9154120143503,78.55449617141858,78.8269513156265,79.51998233934864,79.31261199666187,79.82269715797156,79.90729985572398,79.14703406859189,80.08688814612105,79.43715644907206,78.80581945506856,78.50703173456714,78.31497256178409,77.51704862387851,76.94572998769581,77.33814665628597,76.99361554253846,76.16053824638948,76.87758461898193,76.9892663275823,77.14687323663384,77.44565890030935,78.12086311588064,78.68521125707775,78.09540839772671,79.00879964604974,78.74728714069352,77.81468680268154,77.39534308435395,78.13442360376939,77.9416915322654,78.1174530913122,77.14758054213598,76.90550762973726,77.03025725251064,76.29425041005015,75.73561708070338,75.66213787673041,76.13469154480845,76.7805225290358,77.40960241202265,77.65316647803411,77.36489853262901,77.95157272508368,77.54719710350037,77.52372174849734,76.88044353248551,77.85286780493334,77.15147450426593,77.13617782946676,77.23646945040673,76.71907054213807,77.4894703454338,77.26730387844145,76.65916910301894,77.23129479633644,76.82178906071931,77.016269558575,77.74933492019773,77.37597065092996,76.68777198903263,77.66451669763774,76.95378581248224,77.04233019892126,77.10938821127638,78.07242983067408,78.25077180285007,77.93816129118204,77.6375590832904,78.01446627639234,78.73052864195779,79.24066116008908,79.06795552000403,79.13995551690459,78.95978631963953,78.69675808958709,79.17435094760731,78.57482440955937,77.99650998460129,77.87874102080241,78.54017566377297,79.33158219093457,80.21510762767866,79.78184458473697,79.53295256569982,80.2925864001736,79.95351710775867,80.87939284415916,80.34260330395773,81.10623464174569,81.52315605664626,80.87165278103203,80.47037316206843,81.29811284411699,81.47150546917692,80.81144176889211,80.5350416074507,79.75359619455412,79.97866709716618,79.13067336007953,79.29393230751157,79.88043568143621,79.4129126300104,80.22613954171538,80.5886659771204,80.40720850229263,80.40523752290756,81.12422849889845,81.26061893394217,80.89572577504441,80.15771979419515,79.67153389798477,80.6474427934736,79.70147905126214,80.3092157561332,80.33269544458017,79.50073094526306,80.14379599643871,80.34639866836369,79.52616687258705,79.06784733990207,78.41557095618919,78.27552859578282,77.99371006898582,78.36420228797942,78.47263073781505,78.27267050603405,78.83598463702947,78.46425277087837,78.67962488345802,78.50349090434611,79.46608655760065,79.97283899551257,80.61335256509483,80.60724338609725,80.84375695558265,81.62283824011683,81.05047564394772,81.16758628329262,82.15297962212935,82.62623062636703,83.26696286676452,82.53247166331857,82.33627340849489,83.10740645648912,82.27472884627059,81.31959389615804,82.16587909450755,81.46663932641968,82.25955795869231,83.0618709451519,83.46787447761744,83.78633617935702,83.73026127414778,83.29353732755408,82.73606183333322,83.33565061260015,83.4292442984879,83.96756549784914,84.62472735904157,84.96743836486712,84.85324388090521,85.57202273933217,84.82721320865676,85.39870403287932,85.2081289999187,84.33806630177423,85.01439932035282,85.99186027841642,85.81838524108753,86.54324458446354,86.31345124030486,86.14709896035492,86.68556238524616,86.23705862089992,87.22857389366254,88.15811888035387,88.28608781844378,87.9016802161932,87.10818956978619,86.83780638687313,87.71571893757209,88.64647276420146,87.68203425966203,86.87863095477223,86.86071456084028,87.53408096870407,87.18402836751193,87.31672171596438,87.57513345172629,87.95512257143855,88.54536330187693,87.62817170191556,87.73758094804361,87.61727459309623,87.10492247948423,86.78741788538173,86.32402465166524,87.313471743837,86.95274379383773,86.36051994562149,85.85495493700728,86.27288761967793,86.99027006933466,86.1731742778793,85.46961257327348,85.92517104698345,85.9864765284583,85.01558284042403,85.97898750100285,85.04698981810361,85.03308386541903,84.66300744982436,84.04016519384459,83.22394572757185,84.04492744477466,84.56603044830263,85.29589002393186,85.6550959944725,85.19978137407452,84.29821143252775,83.80040010996163,84.68634335556999,83.71673772251233,84.02811184292659,84.65477393893525,84.53033035015687,84.07804595679045,83.49075379734859,83.29206592822447,84.19531320407987,84.1981182815507,85.05487857805565,85.3300661649555,85.16193735552952,84.64171299478039,83.7418846343644,83.10887883324176,83.56298970710486,83.82924663741142,84.19488856336102,83.64993289252743,83.95155887166038,83.44266931107268,84.13344006752595,84.6605422096327,84.9890781105496,84.73656032048166,85.07173166004941,84.97769144363701,85.49214390665293,85.63022133754566,85.92720337025821,86.62023499654606,87.58745333040133,87.38790081208572,87.633267424535,88.15910985926166,87.60782786691561,87.47557699400932,87.51587941683829,87.35720719024539,87.85588085604832,87.03116984246299,87.04696414899081,87.88358559086919,88.29121599160135,87.53774308878928,88.05148499878123,88.80079037044197,88.54989292519167,88.85052650747821,89.27506218384951,89.1006437591277,89.77179789170623,90.58284299448133,91.43915764754638,90.50749717466533,90.77257686806843,90.63625024212524,90.15873566782102,89.33122415607795,88.97014607861638,88.64005095418543,88.6656999187544,89.31736226798967,89.27895467821509,90.20280046435073,89.63143758103251,89.60898381657898,90.482706008479,89.65557352313772,89.35411556996405,89.90141862770543,89.48625814542174,88.74500028043985,89.58483798196539,89.71852381201461,89.75700197648257,89.34763233596459,90.06030529318377,90.69528594519943,91.30931533360854,91.73087577102706,92.42756183259189,92.05945187993348,91.43845182610676,91.43296019127592,90.4586646608077,90.26545656425878,90.77943950146437,90.2557501969859,90.45628364291042,91.04720026953146,90.28682559775189,90.41478788061067,90.36700325459242,89.48848991375417,88.8531269384548,89.35030983528122,88.57688409369439,88.65562535403296,88.34243431594223,88.86271302960813,89.83089404040948,90.08867768663913,90.67114165984094,90.36702271690592,91.30715804314241,92.29840244306251,92.54092629021034,91.9255417115055,91.80478656990454,91.7361193955876,92.01496556820348,91.32956076832488,90.44054453400895,89.95043934788555,89.79212619317695,90.14273750083521,89.47287251800299,88.80636450182647,88.47165456227958,88.98812714684755,88.07938133971766,88.72304917080328,88.47677207691595,87.84320647269487,86.91357567394152,86.94883037544787,86.19704932998866,86.90555794583634,87.75990251637995,87.5205447440967,86.85114321531728,87.4356046738103,86.73904345324263,87.36160936532542,87.30750698409975,86.95800890913233,86.34598229592666,86.56689933128655,87.45628166152164,86.47657156642526,87.07031638687477,86.13890131888911,85.22144547989592,84.29294707532972,84.31446745246649,84.6598551380448,84.8435085597448,84.97198586072773,83.98845221847296,84.93440586142242,84.38292328035459,84.87221032520756,84.72333312034607,84.63528175232932,83.6680347151123,84.47233873885125,83.61094361497089,82.84586503962055,83.36206748662516,82.8928711344488,82.03632185654715,83.00826595770195,83.05875459918752,83.79290856095031,83.6985689830035,83.33157231099904,84.14795324904844,84.34010006999597,84.00731926877052,84.3254406126216,84.30136431707069,84.28387422440574,84.31011695647612,84.7960916114971,84.3685504659079,84.37699394440278,83.42420608829707,84.02296177390963,83.11387939797714,84.09046090580523,83.8435413883999,83.40324730006978,82.52822559466586,82.02008305396885,81.92660980625078,82.06758886342868,81.5647002812475,80.82892518863082,80.1301156389527,81.10974537860602,81.54080831864849,81.92650210671127,82.0646727704443,82.46233625570312,83.12867951160297,83.81184034096077,83.50726664159447,83.04945031320676,83.76968812337145,83.6857889816165,82.81950780376792,83.47245739167556,83.38041747547686,82.87121948553249,82.37882155319676,81.50118120852858,81.23571795318276,81.328207784798,80.52907903166488,80.99696095427498,81.91305375797674,82.80212892405689,83.50019907392561,83.45227034203708,83.82095635682344,83.66974471649155,83.63135425234213,84.60649318480864,84.60690127173439,84.8525977334939,85.42634189734235,84.84047316620126,85.18741119885817,86.11244661966339,85.25606573745608,85.36612956225872,84.39507909677923,83.8725237310864,84.1219010935165,84.54124289564788,85.3906124625355,85.84550921572372,85.30573732126504,84.64035616349429,84.1978004523553,84.69247125042602,84.17231133906171,84.74567497475073,85.07762325694785,85.80261320387945,85.56122392695397,85.89035526756197,86.72510350635275,86.67970097856596,86.30807557189837,87.19643543288112,87.11178896576166,87.49237896129489,88.05623522819951,89.01363138528541,88.9788255658932,89.6481649321504,89.19263146817684,88.32546072127298,87.42642583278939,87.56105896364897,88.28096227254719,88.86451245425269,88.20704052923247,88.48006791062653,89.41745207225904,88.9749767309986,88.8388214581646,89.66707231802866,90.63296537706628,91.14507287321612,91.76492649503052,90.94249515561387,91.07787427073345,90.54780125431716,90.76779512409121,90.19070896459743,91.02178932307288,91.87020654184744,92.52183721214533,92.18220281461254,91.3386168377474,91.73499872302637,92.22539789648727,91.93718128465116,92.9141097906977,93.57231956813484,93.83548748865724,94.25722985481843,94.46299500670284,93.84960606414825,93.69245639909059,94.18963714316487,93.81627265643328,93.13706278475001,93.5156181785278,93.59449568064883,93.98215493140742,93.55326083023101,93.90455266507342,93.45588038582355,92.59188926545903,93.39017853327096,92.59641622751951,92.5549241793342,93.41281636338681,93.067586729303,93.64698371989653,94.1240426171571,94.90088657382876,95.38143039494753,96.21011219313368,95.91802872437984,95.66546230623499,96.06761364545673,96.55898823728785,95.85626725526527,96.84041010960937,96.12010991340503,96.1645073001273,96.6749459207058,96.9520303811878,96.31972676701844,96.24587152153254,96.17721359757707,95.72490183450282,96.49470727005973,97.41219008760527,96.49778961297125,97.28425968904048,96.28826862573624,95.42373707983643,94.85154497018084,94.50460991775617,94.5620189588517,94.94315451709554,94.20323205832392,94.84649352123961,94.85883501823992,95.23334526317194,95.22066185902804,94.61451252736151,94.38831949140877,94.08741437550634,94.00062584457919,93.88815244613215,92.93854463100433,93.81462487112731,94.64084531832486,94.70527446363121,94.56870720442384,95.1044524172321,94.97304649511352,94.86747572012246,94.889521678444,95.11287781083956,94.85770939150825,95.34895441727713,94.8794576455839,93.90072507038713,94.34854881418869,95.19516594242305,94.42049045069143,94.8224823884666,95.66910282382742,96.24349635094404,96.38030714308843,97.12552315508947,97.09522748971358,96.4047474404797,96.3415279854089,96.94308027299121,96.40297207515687,97.13206105493009,96.2973819160834,96.53933822363615,95.5860566450283,95.57183143589646,95.5294323922135,95.37921672221273,95.87545601744205,95.99269827408716,95.03645969554782,95.52559624705464,95.59622796298936,96.03164897672832,96.57759895687923,95.93156386818737,95.07703335490078,94.88404746213928,95.87093054689467,96.74295004084706,97.6733277598396,96.95951430452988,96.0141521547921,95.05997289577499,94.91620985651389,94.91082728654146,94.18787621241063,94.53567222179845,95.1211184640415,94.27084961067885,93.93547997064888,94.8845893945545,94.55878710141405,94.53013877337798,95.34678813442588,95.30689659575,94.73172065196559,95.27190955309197,94.30954959848896,94.49469936732203,95.1776328086853,95.27458953484893,94.99956628121436,94.67413038155064,95.31164262443781,94.57957372581586,94.63091630907729,95.26378777856007,94.65807213494554,94.6471128417179,94.3824875340797,94.02605795487761,93.08023852622136,92.6077330536209,93.36148129263893,93.71631683316082,93.04094700049609,93.31638991087675,93.52324593812227,93.99910329375416,94.4746066168882,93.76731902360916,94.6932034776546,95.38950168620795,94.96168911410496,95.86121686082333,95.81489239726216,95.95197061123326,95.50878232112154,95.60344611667097,94.71676337812096,95.47951757581905,94.81003493443131,94.11217551119626,93.6652517542243,93.1772909401916,92.30280206073076,91.69399606622756,92.29637551447377,91.89865014795214,91.97533918032423,91.34630714403465,90.68304927228019,90.7794643738307,90.77435156749561,90.63481079461053,91.01719322940335,90.06117397779599,89.66031168401241,89.9794030347839,90.71556053776294,91.33633368741721,92.08312533982098,91.27478167880327,92.2239550203085,92.21897848881781,92.73310380475596,93.70965138217434,92.77196626039222,92.93998050736263,92.47835897561163,93.27258598571643,92.80801259400323,93.39557790057734,93.90213759569451,94.26368639850989,93.38021234236658,93.46586561016738,94.39848027890548,93.96130449557677,93.77190133556724,94.64808217342943,94.93703775899485,94.08102332567796,93.43803437286988,94.23658272484317,94.57733609620482,94.48279665457085,95.20948004862294,95.51087965536863,96.04477823060006,96.57900607213378,95.69960439298302,95.73468212690204,95.65396399982274,96.65373141644523,95.93186160223559,95.85616875905544,95.59519608179107,95.20988724427298,95.67597054690123,96.16106786951423,95.76953848125413,95.81964593939483,94.89659960148856,94.73911158367991,95.3469372256659,95.64995589945465,95.09794829925522,94.44526989851147,94.14057542104274,93.40532282320783,94.1372138322331,94.30356895830482,95.04694613954052,94.22707854863256,93.85271762032062,93.10262833489105,93.31449221726507,93.57345060864463,94.35000745626166,95.0149575327523,94.65079720178619,94.10178595827892,93.4520333209075,92.95658967178315,93.17839703010395,93.57125536259264,92.76343166828156,93.64924777019769,93.8657725197263,93.5528773306869,93.94578095665202,94.73317252099514,94.94397581275553,95.92875599395484,96.67675154004246,97.39952925592661,96.64426304632798,96.63140332978219,95.64213990746066,95.37418413255364,95.8170413072221,95.42561500100419,94.63037048652768,94.09076475910842,94.67639103299007,95.64857566077262,94.95995029993355,95.78493995638564,95.45129197696224,94.78971233125776,94.34957928676158,94.10577268060297,94.03263405431062,94.11375768249854,94.50050942227244,95.39388049021363,95.22389083635062,94.70487201027572,95.55063727684319,95.39659243123606,95.90880397846922,95.72058233525604,95.97038633236662,95.12061830144376,95.0823883083649,95.0491535034962,94.80591492448002,94.32491526287049,93.88241178588942,94.41379510657862,95.27808931423351,94.94130651047453,95.45191230624914,95.10157068772241,95.89151353668422,95.71248431969434,96.6534627485089,97.22276308806613,97.15112622594461,97.51047757221386,97.00219964422286,96.51327726989985,95.59184068953618,96.15377322304994,95.66853918833658,95.55442418996245,95.76239244500175,95.80150853749365,96.20591962244362,95.63675738591701,94.93083476694301,95.11903079971671,95.24271306348965,95.88871300872415,95.23046945035458,94.48602833459154,95.10307599091902,94.3805593852885,94.68383382027969,95.33030527131632,95.91886600712314,95.76228611730039,96.46136608440429,95.99125991854817,95.64001531200483,95.80268931854516,96.26878082286566,96.02069801976904,96.17693473678082,95.47034866781905,95.9684361112304,96.8926381203346,97.6350155537948,97.82620432879776,97.66686975955963,97.2480756402947,96.7593919406645,96.05878762621433,95.53220213856548,94.6179866520688,94.16291063791141,93.35277803149074,93.09134782198817,92.53486832464114,92.69035472301766,92.9248842028901,93.45369006413966,92.53292825864628,92.62386309634894,92.44115001522005,92.58793850662187,91.8222206486389,91.41821169573814,91.83658966049552,91.55053333891556,90.98843097081408,91.24481008946896,91.62690723501146,91.50168994581327,92.17928115371615,91.32544547738507,91.53780150786042,91.23948850668967,91.12434491841123,90.25969326635823,90.19329976849258,90.78554001543671,89.94922205200419,90.32000765297562,89.43002241430804,90.14015227649361,90.33677326980978,91.21156809478998,90.92773748887703,91.14127826830372,91.64008117606863,91.80305875372142,92.7871153629385,93.00241304282099,92.49316184362397,91.61892440589145,92.36200603796169,91.77919177291915,92.69577413517982,93.39758219663054,94.16475612297654,93.45345153938979,93.71291780564934,93.3254598742351,93.41506223240867,94.25814107432961,94.05549195362255,93.90743152052164,94.49186158552766,94.20644999248907,94.55118544446304,94.00887165218592,94.73319743014872,95.48259921232238,95.88824238907546,94.98246839409694,95.85864792112261,96.01116694742814,96.51593041140586,96.05925760883838,96.05606419220567,95.93471614224836,95.9476493014954,95.98156540980563,96.4823407321237,97.24160755099729,97.76083188131452,96.99762783525512,96.54912918247283,96.66795404162258,96.36158995237201,95.62024406436831,96.19582707621157,96.25798058509827,96.62151650711894,95.98981170961633,96.96372393937781,97.23604709701613,98.23447973793373,98.58684258535504,98.80890188878402,98.14220884861425,97.82866791868582,98.59924192447215,98.32232356118038,98.26255817525089,98.58166202064604,97.94493258884177,97.58522085566074,96.66161022568122,96.91310907900333,96.64200740586966,97.57460458902642,97.96106439316645,97.16068086447194,96.53208497492597,97.33804112533107,97.68815470067784,96.98694107681513,97.8378450544551,97.70283372094855,97.75615074904636,97.22665610862896,96.77926846360788,97.59048079373315,96.98021558579057,96.45296793384477,96.98392793722451,96.98343434883282,97.44602161599323,97.4348068726249,97.50243822019547,96.65832677204162,96.72280994383618,97.01135462801903,97.19079072820023,97.14328825566918,96.37171125831082,95.71923415968195,95.73251270549372,96.21632005739957,95.27635301090777,94.81692616315559,94.39288746844977,94.55141244083643,95.05971247935668,94.39690617378801,94.84360021911561,95.03350153611973,95.93122860928997,95.07723831571639,94.32467008987442,93.672248265706,93.32607135549188,93.41576126543805,92.96914657950401,92.13705795677379,91.4631393039599,90.98516288679093,90.85757635906339,90.64603955019265,90.63433128036559,91.08846290316433,90.24323638435453,89.41910904413089,90.22140876064077,89.60963953426108,89.18772373022512,89.33428734680638,88.78573657060042,87.8377547422424,87.92200324777514,87.23129578959197,86.91389479348436,86.04871122539043,85.12347432691604,84.8965235510841,84.70436111930758,84.86265284009278,84.33187269419432,84.67333369888365,84.28433017898351,84.13708221307024,84.9185299128294,83.96639763051644,83.35300313401967,82.69640180002898,82.03566537005827,81.5690414486453,82.25256413221359,81.35171532863751,80.71453355392441,80.38472117716447,80.33508677547798,81.1301497137174,81.2298384536989,81.4675974859856,81.5331543176435,81.7145374729298,81.10998338460922,80.2531965826638,80.59616586845368,80.28483167476952,81.06082701589912,80.64361619763076,81.32413063943386,80.97772596077994,80.4123665113002,80.22544999234378,81.13255941402167,81.863478905987,81.22366078058258,80.88077207189053,80.72516783419997,79.75998431770131,79.70750369457528,80.56718667875975,81.0695155793801,81.83289280999452,82.22066839598119,82.89635219797492,83.31676703225821,84.3104874487035,83.64248286280781,83.91274622315541,83.2253973307088,82.83910678280517,82.52275563497096,82.76610712520778,83.32295582722872,83.51471307175234,83.58136732457206,83.75010586436838,84.64986283658072,84.07427418930456,84.68323407368734,85.49206359451637,86.259874291718,86.72045757807791,86.40907103614882,86.83508057892323,87.66171541297808,87.94511070754379,88.1724259913899,88.14574100030586,87.37084540119395,87.79307736130431,87.18086989829317,87.58952710637823,87.32782538468018,87.00890601845458,86.01393660297617,85.10109110269696,85.81025451188907,85.88416789239272,86.72744889184833,86.33791156578809,87.1789271091111,86.49765142425895,85.65037859324366,85.81985565787181,86.74235882470384,87.40645435173064,88.27412497950718,89.00033055292442,89.3731335196644,89.10802115313709,89.02345770224929,88.23143328772858,88.35123605653644,87.44294858817011,86.84352723136544,85.84395346837118,86.70145414629951,86.58347002463415,87.13548092031851,87.34381107240915,87.70385698135942,88.54556801682338,87.66517145885155,87.48510413290933,87.20353267202154,86.75008022971451,86.574545935262,87.3294529193081,87.51759096886963,87.43340769223869,88.03060127561912,87.65737349633127,87.37152936030179,88.10706816380844,88.70205769315362,88.60955247841775,87.7601403016597,87.99750224035233,88.44784058490768,88.91862946934998,89.80579434521496,90.74584929598495,89.83752401312813,89.01090658642352,88.87837035115808,88.31950394250453,88.94902528543025,88.50370387174189,89.15581177733839,88.47255686717108,88.01162846619263,88.31337455427274,89.27547665825114,88.61530918627977,88.55753243621439,88.59757299814373,88.37770480848849,88.38482169155031,87.91167458659038,87.88483747048303,87.1865066550672,86.52501830458641,87.47689598752186,86.67530926829204,86.66894208127633,86.54447417799383,86.0264684879221,86.26207247143611,85.34520838968456,85.4976388644427,84.71643695514649,83.89692866289988,83.71373201021925,82.71824192395434,83.43096423801035,84.23445090651512,84.05638330429792,83.57293858472258,83.63665174366906,83.67576667713001,84.21041359892115,83.66180416243151,83.7433955729939,83.56213003816083,82.67375876847655,83.23419015388936,83.3502917108126,83.71731518069282,84.53518260177225,85.21109617408365,85.58851399319246,85.12609362555668,85.72589472588152,86.60608745040372,85.95708871306852,86.63003418687731,86.3566323085688,85.86525066150352,86.38139314670116,87.05615697847679,87.19216508604586,86.24695757217705,85.85285865049809,86.1551868817769,86.72950336989015,86.43619443010539,87.21858606720343,87.79335055546835,87.49277623835951,88.04127740161493,87.9352798499167,87.3485744278878,87.28638228680938,86.93143839482218,86.16494358377531,86.9948964677751,87.10013105114922,86.12470921920612,85.32274910062551,84.47184469783679,84.14133367547765,83.89462071610615,83.47657781559974,84.03986399667338,83.36462224647403,84.22488425066695,84.3443424156867,84.03184197098017,83.72116705449298,84.54970075190067,85.25912403548136,86.12555062910542,87.02365643298253,87.36559522943571,86.60572762042284,86.32285172725096,85.9968027882278,85.91276403376833,86.31125486362725,86.73472254816443,87.19869886478409,87.56727284472436,88.31374043086544,87.3268124954775,87.362006011419,87.61751817306504,87.67408064752817,87.68898590793833,88.14455928979442,87.71705605275929,88.5179679361172,88.56169145321473,88.12677524005994,88.14916357723996,87.82720667077228,88.27704451279715,88.79434912931174,89.06733751529828,88.89856757503003,89.42799358349293,89.02335612569004,88.14810079336166,89.10595200490206,89.19101119274274,88.66047761263326,88.14469479070976,87.49716865131631,86.57050239248201,87.1524179126136,86.95627891784534,87.3379826573655,87.95669338433072,88.93367510242388,89.56284733396024,88.57081015780568,87.92146355146542,87.66622910927981,88.05281314626336,88.28547396371141,89.22850164072588,90.17674455465749,90.44701232714579,90.40436544595286,91.16119184345007,91.02194060897455,90.92684735823423,91.33044794527814,90.98379150079563,91.26008014148101,90.54554418521002,91.34327878197655,90.36388051277027,90.38215637207031,91.1863985969685,90.76735416147858,90.65310868201777,91.2104447283782,91.16920231841505,90.90409004082903,91.56263185059652,92.43925124593079,93.12405025307089,92.20087676960975,92.47654769523069,92.40480968775228,92.5681515140459,92.64835121762007,91.67058671917766,92.66281199641526,92.97843645140529,92.17317601758987,91.29534993879497,91.52161875227466,91.52723598992452,91.85350820515305,91.76567796012387,91.85894267540425,91.5396936936304,91.03722890652716,90.5334657151252,89.9342234856449,89.84431825578213,89.33323143515736,89.59047868195921,90.18045197660103,91.12591810058802,90.74772280873731,90.91298801638186,90.75266137858853,89.98861097777262,89.43814536789432,90.02060198271647,90.8100546663627,90.65191716095433,91.16867710929364,90.22874063672498,90.7255033957772,89.84349208790809,90.03012791601941,89.92883970728144,90.38232769770548,89.94044132251292,89.40246381703764,88.51276790071279,88.77445835340768,88.65490867663175,87.81374876247719,86.89741941168904,87.80020861234516,88.04779605381191,87.73710137046874,86.76918448600918,85.97448543878272,86.39703696453944,86.0967991668731,86.68102513859048,87.01014111377299,86.3137684063986,85.34958717692643,85.01028590882197,84.95437407307327,84.3460573349148,84.38378913747147,84.9970340966247,84.37944024382159,83.78734347317368,84.43305623810738,85.09309361223131,84.48427610239014,84.59195900103077,85.38789987144992,86.0659737419337,86.72876682784408,87.27843998838216,87.68656957196072,86.71775418333709,86.66357547463849,87.33655812917277,87.0670072818175,87.6044076308608,88.57986441301182,88.83867887267843,89.07578845275566,88.63202363951132,88.09232940943912,88.90650049876422,89.38610877748579,90.21024354128167,90.44142104545608,91.00607839040458,91.36891559651121,90.43691919278353,90.80471850605682,91.79327250691131,92.60131089854985,93.43343830108643,94.35755206970498,94.3877855152823,95.27319622552022,95.36935000633821,94.46248607616872,93.52557089878246,94.15802050055936,94.45339335035533,94.2765533789061,94.9161053118296,95.06473411433399,94.95541793387383,94.53669622167945,95.49377059703693,96.3061410067603,97.27881485363469,97.7455575237982,97.15588595112786,97.78542671957985,97.5170196578838,97.58659205352888,97.90910315513611,98.11043801577762,97.64662716025487,98.42601674655452,97.84882032126188,98.82926427992061,97.88440342480317,96.90229950891808,97.37373413145542,97.65351379523054,97.55281870113686,98.5068105426617,99.21584161603823,98.23270705062896,98.6666331011802,99.53145675593987,99.25376183120534,98.75427077198401,98.75197126250714,99.43338983133435,98.55620543519035,99.44592159893364,99.0416936762631,98.29053598316386,97.40381628740579,97.26179518131539,96.67420389689505,97.52683257171884,97.54329909617081,98.25052373670042,99.14331926964223,98.94258878473192,98.24506270512938,98.91802948527038,98.04675198812038,98.67343620909378,99.53662986773998,100.07927204249427,99.99806683277711,100.0717266141437,100.32708761235699,99.91132265143096,99.40385626256466,99.55316791776568,99.05611350294203,98.84405779931694,98.83664821553975,98.38289044843987,98.40816101571545,98.20837361784652,98.31536198034883,97.90919527085498,97.00886208470911,96.33615866303444,95.5911147245206,94.9610839872621,94.63426479324698,94.84188965382054,94.61735107144341,95.06459085876122,94.72907855641097,94.07479668036103,93.36866213846952,93.47035600990057,94.11389769474044,95.09505156893283,94.74696944793686,94.42868707422167,94.08151467703283,94.81761463498697,94.42167428741232,94.54890364501625,95.20999660016969,96.11006563389674,95.30208964645863,95.73111157026142,95.27368282200769,95.94370630104095,96.89144131541252,97.28574249334633,96.85264329612255,96.60092525882646,95.62075864523649,95.77330019883811,96.68167965393513,97.06555617973208,96.44321874855086,97.40605231141672,98.06195202143863,97.6265927082859,97.54995078733191,98.44822403742,98.03538365010172,98.81636484898627,98.66704598348588,97.7267638812773,97.01652196003124,97.03491576202214,97.62464065710083,98.53620730806142,97.65799850411713,97.80071533052251,96.88390807900578,97.7300961073488,97.93564188247547,97.53615988697857,98.21907286765054,97.54512363765389,98.46788104483858,98.50379943754524,99.0096106142737,98.5600080313161,98.4814317971468,99.09457831270993,98.98322822153568,99.50474499398842,100.17331390455365,99.37571277329698,99.12533922074363,99.27134570665658,99.13412258168682,98.64893279783428,99.29483283683658,99.12503356207162,99.69732374092564,99.03660139860585,99.90793112572283,99.07874514628202,99.23927700286731,99.59758170647547,99.52291359566152,98.77454018080607,99.48332318710163,99.48753914842382,99.89499934343621,99.28377381525934,98.34199401270598,97.54348339978606,96.79877312015742,96.96817006962374,97.34055227274075,96.7121184207499,96.77460648072883,96.86271131038666,97.7540507777594,97.03780782874674,97.91371958097443,98.00795225799084,97.02858693664894,97.23486792901531,98.1104290401563,98.11713357036933,98.7463597021997,99.22256770171225,99.56854469841346,100.30431804200634,101.02242412231863,101.76939358888194,101.32818271452561,100.59929613117129,100.92255750484765,101.05581083428115,100.25306471111253,100.962756998837,101.62306082434952,101.96560170641169,101.30416206875816,100.83262024866417,101.77892338111997,102.006004197523,102.97101523820311,102.4507937640883,101.61020245309919,102.55409425636753,102.36075957864523,101.89119037473574,101.92382474523038,101.17145765246823,101.48129289085045,100.88279031543061,101.01964854961261,100.16194081539288,100.4285525935702,100.71332694869488,101.17686452670023,100.85469413362443,100.38432539906353,100.99745203973725,101.89009692100808,102.80846762703732,102.91623517032713,102.00622419407591,101.82742273621261,101.91729394160211,101.53391807852313,101.65104135684669,100.73723986046389,99.99980865744874,100.03532720869407,100.0409994176589,99.41220110887662,99.01500838575885,98.91203990485519,98.0349171445705,97.81564336502925,98.32539963535964,98.41023924853653,98.4870659969747,97.85559374280274,98.69808678748086,98.49385366169736,99.15618484281003,98.43151397863403,98.8447331879288,98.57847880013287,97.98913829727098,98.88849003147334,99.06824779184535,99.57602243218571,100.51572777470574,100.03831536369398,99.13366062100977,99.8344628396444,99.52474444359541,100.03893188945949,99.46068238187581,99.89288334921002,100.11862422479317,101.08580517582595,101.12945737922564,100.6628973800689,100.83265289850533,100.4030137672089,100.81966030644253,101.48045774642378,100.93829048564658,101.30905116675422,102.18776992568746,102.95811772113666,103.94878879282624,104.94651758531108,104.26145974872634,104.9099331065081,104.7948469594121,105.11824573203921,105.70264039188623,106.62567564705387,107.35318773752078,108.09686774760485,108.86502266768366,109.85119416145608,109.30401193117723,109.02853221725672,109.98829067312181,109.30277782166377,110.01333221839741,110.7623710068874,111.71487002354115,110.81772210774943,110.05236442759633,109.20684478245676,110.0798276704736,110.03300863178447,109.09852673765272,109.95750069152564,110.61495395377278,110.17413241462782,109.40226278733462,108.77934473846108,108.37332512950525,108.00294009363279,107.89192889258265,108.53417489398271,107.8302702922374,108.74349661869928,109.27319999132305,109.45847692666575,109.20494472794235,109.07398582343012,108.2996851070784,107.94485683692619,108.74153698887676,109.25771354837343,109.06088369479403,108.74959928914905,108.8675393378362,109.83322736807168,109.30600560735911,110.08966279448941,109.61726721050218,109.50080937938765,109.07770152157173,109.31417272938415,109.80624325107783,109.89915136992931,109.62965321913362,110.04621622292325,109.67770827468485,110.21903131669387,110.4759314651601,111.09852085635066,110.93774513574317,111.76781879924238,111.45482025342062,111.55086637567729,111.63675910653546,111.99799751956016,111.72350160079077,112.20106307091191,112.85787304723635,112.49572493135929,112.60570443188772,113.49311480578035,112.66206965735182,112.96717777103186,112.67512814281508,112.33605545666069,113.03627371136099,113.8987444206141,114.33072782075033,114.77363738231361,115.25910657364875,115.34779166802764,114.9402071624063,115.50107669876888,116.16345635801554,116.9885557834059,117.23470585374162,118.18669723672792,118.52685805596411,119.38529243227094,119.57043942110613,119.79096741275862,120.07058630138636,120.9067358407192,120.99492425983772,120.94184167124331,121.45885941991583,120.70795513316989,121.60997343016788,122.06101590208709,121.73561083897948,122.6244922587648,121.70446821302176,121.44537054374814,120.98964684689417,121.13973511988297,121.09313246561214,121.95661664800718,121.71771815419197,120.81365625280887,120.95825788984075,120.45153086818755,121.20344186015427,120.4685231926851,119.92759601725265,119.38745292648673,120.20049928082153,119.76222295407206,120.46144723845646,120.42140419455245,121.09877833910286,121.21706727705896,121.7304498096928,121.23630309803411,121.33092992892489,122.2668538056314,122.07038381090388,122.40970562165603,121.4449382936582,121.65990069927648,121.50453592836857,120.84829368907958,121.05092433840036,121.14712152723223,121.3974951854907,121.89232210349292,121.56972018163651,121.34912357153371,120.58134824363515,119.78825335530564,118.95165459439158,118.14705871185288,118.6020188825205,119.44528994848952,120.41070713847876,120.25671937316656,120.43061732687056,120.36172654572874,120.02222073636949,119.65334858186543,119.94610759103671,119.34548516152427,118.58667870610952,119.04033269826323,118.41919694002718,119.11036328459159,118.92550353240222,119.1029831552878,118.99510389007628,119.9485076656565,119.1765930717811,118.37232162710279,117.98761849617586,117.50360208190978,118.05312169436365,118.5901353918016,117.60456210840493,117.4955643475987,116.7166240895167,116.58200307609513,115.91074076900259,116.76393742021173,115.95921604614705,115.9041600539349,115.06969483802095,115.9689260320738,115.66035153809935,114.70212362660095,115.53627459984273,115.26172454375774,114.48479095706716,114.12693897914141,113.37793304119259,113.62568572582677,114.08422035630792,114.5360467066057,114.46921292226762,114.52289170213044,114.37810821132734,113.64094188297167,112.77499286271632,112.82521034963429,111.85278465878218,111.35892284568399,110.70728985173628,111.08897516597062,110.37197167193517,109.74409586237743,110.67219352349639,109.87210380332544,109.46468209568411,108.51308928104118,107.68536561960354,107.83096316084266,108.11379160359502,107.48993099480867,108.13521931506693,108.98464162787423,109.11501895170659,109.30005885474384,109.97365838708356,109.56258951174095,110.01793763181195,110.85618412215263,111.25344729376957,110.87534241238609,110.78090985864401,110.8274727538228,110.9058129247278,110.17737563233823,109.65465709986165,110.01244659675285,110.45186741370708,111.36017862707376,110.82131153624505,109.9248777423054,110.68789900932461,109.85310057224706,109.53561709728092,110.06172782881185,110.29494506167248,110.32423312682658,109.36503798142076,109.82466366374865,109.83670599013567,108.86617769440636,108.38026592740789,108.07519762031734,108.59767554048449,107.76457828329876,108.74540092656389,108.1309667029418,108.64098708005622,109.04253116436303,109.09618800226599,109.96761267445982,110.84815505892038,110.51936178002506,110.33783407416195,111.12125814985484,111.56393265677616,110.99005578784272,111.19569814577699,111.33278821827844,110.74664428364486,110.82468210393563,110.78459293488413,110.42758975783363,109.47131055919454,108.63618386909366,108.48725932696834,108.20829332433641,108.99653978645802,108.09182781400159,108.95497818896547,109.77012943755835,110.65502002602443,111.42628757981583,110.61088387016207,111.17440061783418,111.52567005297169,111.57655614055693,110.92832117481157,111.82073089061305,111.67097992543131,111.96135231712833,111.82870984403417,112.14808919513598,112.7149891355075,112.6934568961151,112.07920794887468,111.88169502979144,111.41100666718557,110.83436568453908,110.20672184042633,109.59890533657745,109.93334244983271,109.16731850570068,108.75268500344828,108.09238035511225,109.06003121379763,110.04515107581392,109.1430977191776,108.42524024099112,109.36722589749843,109.8226088276133,109.33172662323341],"z":[0.23359898524358869,1.1204755436629057,0.5311603876762092,-0.27844766480848193,0.37581116473302245,-0.05377223854884505,-0.13677217159420252,0.46023728232830763,0.6748665072955191,0.1745856199413538,0.5989196612499654,0.5129140350036323,1.1538235670886934,0.8856737297028303,0.10335096996277571,0.6085456847213209,0.5381542700342834,0.9427244397811592,0.11163973622024059,0.7844193708151579,1.6295174206607044,1.7379777492024004,0.9208845091052353,0.9151397775858641,1.8119190530851483,2.0165840587578714,2.794557083863765,3.21686294907704,4.070077913347632,4.4601679015904665,4.7147668791003525,4.579069982748479,5.259697400033474,4.933893306646496,5.505887934472412,5.082345454022288,5.832996219396591,5.5355309182778,6.310045207384974,5.637952565215528,4.883876488544047,4.917024285532534,5.329235213808715,5.5509009240195155,4.564214486628771,5.335036410018802,6.176425216719508,7.024676910135895,6.176194845233113,5.342910052742809,4.770627120509744,5.296502911485732,4.3153394930996,3.58863697713241,4.405044965911657,5.19911470497027,5.765412543900311,6.373686737846583,5.441154083237052,6.3991213738918304,6.900117432232946,6.29155840491876,6.028371065389365,5.766010927967727,5.337830104865134,5.9369184877723455,5.9172071516513824,5.518478832673281,4.606900344137102,4.795956838410348,4.737044163048267,4.313947877846658,4.308741496875882,4.709075222257525,5.491835989523679,4.7629876038990915,5.067910119425505,5.63090443611145,6.517532997298986,5.864126834087074,4.8863185667432845,4.862983231432736,5.15854529151693,4.840445761103183,4.399520606268197,5.096745171118528,4.53352159075439,4.71248595090583,4.253689939621836,5.187355179805309,6.102033822797239,5.858946016058326,5.123916933313012,4.167518335860223,4.674418800044805,4.899210921954364,4.857522096019238,5.376280532684177,5.25328937266022,4.435708716977388,5.077600271906704,4.143218548502773,4.373604302760214,4.63739826483652,3.7179695181548595,4.313412560615689,5.043447867501527,5.513694963417947,4.752494934946299,3.8377054766751826,4.429261034820229,3.6536218472756445,4.428397499490529,3.8665214837528765,3.7446335814893246,3.2078842339105904,2.437364076729864,1.63548275642097,1.1330842664465308,2.117158134933561,1.2674086578190327,0.628859962336719,0.6620531985536218,0.22516783000901341,1.175879708956927,0.4646838242188096,0.8232775451615453,0.0982905738055706,-0.5977794616483152,-0.014468187466263771,0.2559845536015928,0.1549624213948846,-0.4506682208739221,0.22193760983645916,0.7917587901465595,1.6455619665794075,1.1065093870274723,1.3578665596432984,1.6298254099674523,1.6209094789810479,2.387713212519884,1.871650090906769,0.9069081135094166,0.9687617113813758,1.0860344031825662,0.41395986592397094,0.7027672939002514,-0.2572471695020795,0.01986537780612707,-0.16303534107282758,-0.17383848782628775,0.11788068013265729,0.45959654496982694,0.45775002893060446,-0.18494379613548517,-0.23803496966138482,-0.2996662794612348,0.21130772912874818,1.0683846822939813,0.8827557195909321,1.4108265745453537,0.8855474549345672,1.7862895466387272,2.4982915711589158,1.6305999523028731,2.245402819942683,1.2604307099245489,2.1268300521187484,1.5290528209879994,1.8234726609662175,1.2265420001931489,1.1755940918810666,1.5511473272927105,1.9444889165461063,2.0387297365814447,2.9412993667647243,3.7986753354780376,4.303442146163434,4.929676083382219,5.179587234277278,6.176331642549485,6.312347831670195,5.5161629961803555,6.3176019145175815,7.055683088488877,8.018020967487246,7.233685664832592,7.3881731745786965,6.394134792499244,5.938340300228447,6.46915947785601,6.205912199337035,7.049661649391055,7.955003265757114,7.711198475211859,8.579797054175287,8.485342129133642,8.969850403256714,8.82535741245374,8.897385144140571,9.278023696504533,8.62933592312038,7.924447645433247,7.500340429600328,7.133002260699868,6.6758550689555705,7.118199854157865,6.801812726538628,7.0256588640622795,7.892854906618595,8.592777487356216,9.105242691002786,8.66615812247619,8.592087415978312,9.191676885820925,9.190776502713561,8.822598855942488,8.847028535790741,9.032071300316602,8.772528651170433,8.457686668727547,9.36605965346098,8.52903395704925,9.392543248366565,9.95416910154745,9.669166156090796,9.917055911384523,9.367170756682754,10.035334286279976,10.529963474255055,9.83592249872163,9.447551346383989,9.393040686380118,9.108458334114403,9.01602546684444,8.774140583351254,8.147583416197449,8.166006103157997,7.359948438592255,7.939035727642477,8.629464661702514,8.372393700294197,7.779386514797807,7.848427755292505,7.856788294855505,7.456807982176542,7.96018384816125,8.946520251221955,7.951635414734483,8.604495915584266,7.877030329313129,8.23844800144434,8.49272296950221,8.411872690543532,8.305435946211219,8.540139831602573,7.558439493644983,8.239487490151078,9.020720217376947,9.187944408506155,9.78947333432734,9.30140447570011,8.699203256051987,8.838999989908189,8.676702851429582,9.313130998052657,9.727369864005595,9.78227451769635,9.528304358944297,8.691482244059443,9.368707404006273,8.626510451547801,7.688497233670205,6.701652986928821,7.438359420746565,8.027934892103076,8.894073753617704,9.275936496909708,9.204726727679372,9.993510022759438,9.640237842686474,10.257304060738534,10.85331610031426,11.554534615017474,12.170978851150721,12.564963664859533,13.358567668125033,13.956615502946079,13.747099186759442,12.817909859586507,12.286975644528866,12.205295167397708,11.452573935035616,10.758255388587713,10.84170472342521,11.32002798654139,11.71756222518161,11.827543372754008,12.622233677189797,12.10540105169639,12.168525001965463,11.624224415048957,10.703468739520758,11.118612311780453,11.272560564801097,11.81443227501586,12.232276214752346,12.07756167743355,11.707198583055288,11.931175942532718,12.040564443916082,11.27592785237357,10.548705932684243,10.016831918619573,10.386521552689373,9.398751055356115,9.557845980860293,8.654720371589065,8.658328795805573,8.226635271683335,8.343543546739966,9.300338695757091,9.719481563195586,9.207340833730996,9.914798346813768,10.414759060367942,10.961763572413474,11.625524549279362,11.809025474824011,12.730011845007539,13.120128857437521,13.268901141360402,13.354483795817941,14.22036039782688,13.803009346593171,13.602827218361199,13.358059459831566,13.932619512081146,13.972261135466397,13.200776123907417,12.653003085404634,12.241116133052856,13.156322708819062,14.156153453979641,13.661743309348822,13.97798600513488,14.087385474238545,13.271310734562576,13.845752083230764,14.750851416494697,15.428553264122456,14.748752815183252,13.939020096324384,14.87709729745984,13.941607143729925,13.825570312328637,13.022187300026417,12.982375697698444,13.014715194702148,13.03620145842433,12.167685091495514,11.400595203973353,12.011134594678879,11.588125826325268,11.124546965118498,11.701745663303882,12.616639771964401,13.508852452039719,13.07669325452298,13.384092357940972,14.106497830711305,14.87874041358009,15.557345286477357,16.402017884887755,15.968510755337775,15.886552489362657,16.40466858027503,16.870608993340284,16.145128863397986,16.427277455106378,16.696663663722575,16.36325538624078,16.857082397211343,16.057736651506275,16.95728257112205,17.820465764496475,17.799881684593856,18.35937785357237,18.485645121429116,17.80018207989633,17.811829891055822,17.315573604777455,16.507324677426368,15.761439489200711,16.038327867165208,16.298351702280343,15.661276353523135,15.553579573519528,16.15765255643055,15.465254923794419,15.35052180243656,14.36402293248102,13.762067465111613,14.326907678041607,14.990294466726482,15.086450130678713,14.9684903267771,15.48387867724523,15.253292117733508,14.393002965953201,14.019635179080069,13.136237567756325,12.488087888807058,13.473315937910229,13.427748437970877,13.681701717432588,12.743906144052744,12.361559370998293,11.62265896704048,11.426640082150698,11.647043475881219,11.327653393615037,12.29021614510566,11.483822347130626,11.11155791580677,10.404952293261886,11.220585184637457,11.905685889534652,11.384483848232776,10.662632957100868,9.806203485000879,9.404742740094662,10.284648326225579,9.302148988470435,8.389394181780517,7.686478127725422,6.716367655433714,6.108542415313423,6.332418818026781,6.786233054473996,7.290588330477476,7.403079682495445,7.498086344450712,7.074642598628998,6.9377856235951185,6.4354408057406545,7.322499758563936,6.715217612218112,6.178470503073186,6.395864217542112,6.796446322463453,6.313813565764576,6.7114299880340695,7.644676220137626,7.055784130003303,7.769692088011652,8.131377282552421,7.555088225752115,6.7598123690113425,6.598127497825772,6.956361705437303,7.411547387484461,7.378986025694758,7.1686692871153355,6.176348582375795,6.271683439146727,7.09191455738619,7.846388034522533,7.271390927024186,6.900352672208101,7.020384971983731,6.9920576717704535,7.862605537753552,7.566081791184843,6.7620191988535225,7.554997301660478,8.428625987842679,7.530073182657361,6.815974451135844,6.524016686249524,5.564820787869394,5.123409421183169,4.161475395783782,4.966176121030003,4.550854249391705,4.418481259141117,4.011750645004213,4.798281476367265,4.292668235488236,3.704325240571052,4.511005244217813,4.941732491366565,4.891962132882327,4.448763868771493,5.339792517013848,5.417411281261593,5.900800948031247,6.70067332778126,6.005337719805539,5.624604483600706,4.814419068861753,5.072775055188686,5.186846539378166,4.780567559413612,4.584960859734565,3.7089346987195313,4.219195089768618,4.055381276644766,3.267090817913413,3.2197037683799863,4.126288224477321,5.060378919355571,5.683582372497767,5.731985978316516,4.909859445877373,4.376798175740987,3.526346104219556,3.1150487614795566,2.285717166028917,1.633662200998515,1.313547596335411,0.8263217937201262,0.14228305034339428,0.36042430996894836,0.37013612408190966,-0.2535487860441208,0.6086323144845665,1.057395844720304,0.33602327248081565,1.3178041554056108,1.7478165794163942,1.557449881453067,0.9396135327406228,0.20183547073975205,-0.26504609640687704,0.5921510979533195,1.1146333566866815,0.9604897969402373,0.6399384648539126,1.5082093011587858,0.6193102644756436,-0.1399604813195765,-0.15932477917522192,-0.4332511271350086,-0.7043911796063185,-1.289949159603566,-0.9992131823673844,-1.3737994581460953,-0.8137279637157917,-1.1685274704359472,-0.5558252837508917,-0.28554394748061895,0.4543380681425333,0.7039047172293067,0.973661049734801,1.7822519727051258,2.5760932876728475,2.0980804399587214,3.0484786084853113,3.3000517142936587,3.8361653848551214,3.4120393600314856,3.1743305842392147,4.076471587177366,4.976048897020519,5.002434799913317,4.694874901324511,4.883884695358574,4.920663045253605,4.574027925729752,4.283019539434463,3.7657872550189495,3.7136810864321887,4.620617202483118,4.940245598554611,4.214583261869848,4.2818813300691545,3.3235895805992186,3.214106995612383,3.1382480189204216,3.5436045271344483,3.319850852712989,3.6074502277188003,2.6937775244005024,2.8201403110288084,3.739853016566485,4.004064893815666,4.681802682578564,4.862758820410818,4.276615632232279,3.369672774337232,3.047794974874705,3.7155673764646053,3.1432267162017524,2.2521391678601503,3.208285216242075,3.2219526576809585,3.317108941730112,2.660754624288529,3.235520277172327,3.2291751615703106,2.329880732111633,2.114361895713955,2.2547013447619975,2.648562151938677,3.207512210123241,3.1560459984466434,2.309885324444622,2.585255947895348,3.19863983662799,3.7382128522731364,3.199997736606747,2.4253980848006904,1.6371614751406014,0.8287550709210336,1.6729968888685107,2.622530330438167,3.2446575430221856,3.7036934453062713,3.9550998331978917,4.062905453611165,4.0671992427669466,3.530109659768641,4.439085406716913,5.433454348240048,6.088849556166679,6.956868921406567,7.523102917242795,8.021511881612241,7.136889618355781,6.754953094758093,7.283163858111948,7.730802081525326,8.662764517590404,9.2534751733765,9.514318438712507,9.377803368959576,8.970695357769728,9.63572101527825,10.093220505863428,10.558999387081712,9.779172861017287,10.283952270168811,10.797189996112138,11.400000050198287,11.137706163804978,10.948908283840865,11.542847817298025,11.699167243670672,11.34990098560229,11.068293614313006,11.42772655794397,12.293424673378468,13.12719692941755,13.961615988053381,13.263285564258695,14.22517499467358,13.753515237476677,13.48191544180736,14.396635110490024,14.759917187038809,14.803010275121778,14.874422862194479,15.28057496342808,14.81574974860996,14.40665372973308,14.363566663581878,15.306879572570324,14.834972043056041,15.537971704266965,15.754823140334338,14.797489246353507,15.060682359617203,14.64377694670111,15.097678718622774,14.139352353755385,13.279182006139308,14.199854671023786,14.699139187578112,15.316136830486357,15.442114265169948,16.059333079494536,15.360035942867398,15.234940079972148,16.132463372312486,16.88878550985828,16.970394339878112,16.33081574132666,17.13283546315506,17.656982843298465,18.039300810545683,17.944386003073305,18.37959829159081,19.02527852077037,18.212154091801494,18.957339421845973,19.04445476597175,19.39050488965586,19.916815320961177,20.63451520120725,21.07923182938248,21.957388013135642,22.143702271860093,21.824643971398473,22.119739409536123,22.839009769260883,23.423555712215602,23.567863065749407,23.173524104990065,23.966993081383407,24.554646965581924,24.850801713299006,24.16295356443152,25.06226810347289,25.955904337577522,26.581756809260696,26.821693764068186,26.43765994021669,26.250507537275553,26.031421246007085,26.021972042508423,25.17059594905004,24.82529081683606,25.39392088027671,25.793498700018972,24.96833369974047,24.009624945465475,24.234841865487397,23.548336462583393,23.92362808668986,23.584787487983704,24.511323779355735,24.76909818034619,23.801468189340085,24.609563398640603,23.881645690649748,23.44206300424412,24.409942884463817,24.96880976203829,25.301798198372126,24.96253728028387,25.430813702289015,25.388863612897694,24.391677817795426,24.11346801649779,24.658651484176517,23.928854261990637,22.9537764810957,23.849948233459145,24.101517328526825,23.132454368751496,23.021656750701368,22.468921639490873,22.58176426589489,23.25363150285557,23.291778589133173,23.71003055246547,24.282129384577274,23.781639877706766,23.432790194172412,23.649972261860967,23.530559402890503,24.099061565939337,24.9317111345008,25.723192872479558,26.31108573032543,26.052165415603667,25.338571534026414,25.276619594544172,24.69124836428091,24.31780356960371,24.931858717929572,25.105131375603378,25.863137575797737,26.48774235555902,27.250342847779393,26.627828428987414,26.973502795677632,27.363348414655775,27.028607055544853,27.075215570628643,27.177805710118264,26.24930746620521,25.67627510568127,25.32506598578766,25.06557122990489,25.71776054566726,25.965412185061723,26.264551099855453,25.893979327287525,26.787920997012407,26.557661190163344,27.187257540412247,27.627554967068136,27.633863802067935,27.483110883273184,27.731168115045875,27.623114195186645,26.82723863888532,26.35631622094661,27.343697955831885,27.181102879345417,27.172646368388087,26.204006326384842,26.552645444404334,25.611134032253176,26.277529527898878,25.364809298422188,24.61936664953828,23.948843581601977,24.555525647476315,23.725472849793732,23.04689623694867,22.10802163835615,23.0465663340874,23.768916834145784,22.96346405148506,22.216078107710928,21.603200520388782,21.903777563013136,21.50724255759269,21.74784404831007,21.210016099736094,21.94293969683349,21.077933599241078,22.062352150678635,22.45398160768673,23.126260669436306,23.40836402308196,23.49036022881046,22.957717769313604,23.769680771045387,24.12864490505308,25.03206824231893,24.591642243321985,25.14125441433862,25.701166118029505,26.194902856834233,26.736546750180423,26.333779244683683,25.622600459959358,24.77348775975406,24.19576122239232,24.19605816854164,24.28143814066425,24.865476379171014,25.597077218815684,26.169178631156683,26.11250961571932,25.937063054181635,25.029573084786534,25.068151596467942,25.48204598436132,25.05098611768335,25.833233554381877,25.427339302375913,25.302184768021107,26.13977182470262,25.218434744980186,25.78832051390782,25.359070364385843,26.11756816925481,26.725154908373952,25.87959383102134,26.699035730212927,26.404366626404226,26.135239300783724,25.15267891343683,25.88376197265461,25.81621895870194,26.4699769099243,25.52122152922675,26.12111469823867,26.325750783551484,25.665861655492336,26.486503140069544,25.664117858279496,26.364681384526193,26.750000225845724,26.209790733642876,27.07766781374812,26.103847317397594,26.61330110859126,27.560927774291486,27.751801995560527,27.04109528567642,26.561089936178178,25.718321297783405,25.307008042465895,26.192085519898683,25.392252440564334,25.3291413965635,25.93020893726498,26.90198228089139,27.31756346905604,27.251703038811684,27.873285965062678,28.314153003506362,28.53484297869727,28.259485574439168,28.520844576414675,28.047175526618958,27.830507542937994,28.494576829485595,27.70009809266776,27.70982759585604,27.458104578778148,27.84979458991438,27.65053731808439,27.359820025973022,27.31886054109782,26.960287946276367,27.256796104833484,26.94385324465111,26.509837571065873,26.56102741882205,27.390440864488482,27.2465861113742,27.34737634798512,27.40497272880748,28.3416764610447,28.09087248472497,27.247292677871883,27.700397056993097,26.741496707778424,26.108507763128728,25.895587736275047,25.837253799661994,26.07633113535121,26.24819170543924,26.453019271139055,26.984529925510287,26.363421802874655,26.169937504455447,25.92270254623145,26.71475837053731,25.755827294196934,24.81955760344863,24.678932066541165,23.80803917441517,24.739562623668462,24.961430554743856,23.973964801523834,23.483309037517756,23.809701916296035,24.358153706416488,24.450578681193292,24.16244983812794,23.35143425082788,22.848349562380463,22.575061179697514,22.939765457529575,22.419315143488348,21.759591180365533,21.024735835846514,20.68292733328417,20.022187780123204,19.416726267896593,19.593751632142812,20.350803763605654,19.84881759947166,19.303946974221617,20.190967723727226,20.792915834579617,20.718145206570625,21.029517031274736,21.930528038181365,21.317404848057777,20.781736348289996,20.413115025963634,20.6760466680862,21.64618743211031,22.293799076694995,22.229961002711207,21.37999424431473,20.54083748627454,19.60200681583956,19.175739316735417,20.10141629166901,20.57212817762047,21.2527381144464,21.53203121619299,21.867677080910653,22.211540800053626,22.543426221236587,22.483557457104325,22.10754317510873,22.513916922267526,22.092601059470326,21.964984013233334,22.365473783575,21.480940527282655,21.2638420346193,21.213767080567777,20.555683980695903,20.833563993219286,21.007431100588292,20.530624487437308,20.28111748956144,20.980887924786657,20.752728661056608,20.66243950696662,19.942635622806847,20.419509291183203,21.295604232233018,21.762559577357024,22.39900262048468,21.448238300625235,21.532480805180967,21.941950392443687,21.964068533387035,22.818750486243516,23.594356081914157,24.570831274148077,25.003933606669307,24.95777754485607,24.369698928669095,24.122325345873833,23.671590306330472,22.755255807191133,22.38671553786844,21.40271302498877,20.945419601164758,20.330467817373574,20.042000421788543,19.074388714507222,19.08274223934859,19.80903407698497,19.721268916036934,20.279696634039283,20.57346662832424,20.618641085457057,20.77023762371391,20.0286418274045,19.051550052128732,18.162612705491483,18.931804162915796,18.206892139744014,19.181097354739904,18.382129036821425,19.009690530132502,18.29632262280211,19.097745698411018,19.595700378529727,19.76790040312335,20.314595323987305,19.792145308107138,20.537204309366643,21.432621022686362,21.23121460340917,21.612328135874122,22.458236400503665,22.2369751422666,23.116290404461324,23.522097652312368,23.851492961402982,24.653218161314726,25.234468936920166,25.19214976299554,25.14971248153597,24.76890586083755,25.738466812763363,25.565460143145174,25.318321533035487,24.895280016586185,24.97434111731127,25.16945086279884,25.121441817842424,25.451124946586788,25.764047097414732,25.946540722623467,25.858421692159027,26.80586604354903,27.70647232979536,28.456492386292666,27.823057713452727,28.469296547584236,29.06583570409566,29.58531314972788,29.861540065146983,29.729174783919007,29.304352035280317,28.818131752312183,29.242950334213674,28.2872811332345,28.415355104021728,28.922874943818897,28.991181769873947,29.5421140845865,30.183564002159983,29.193738692440093,29.232078512664884,29.484703194815665,28.660507744178176,28.787951743230224,27.991954394150525,27.744312833994627,26.83352170139551,27.697365914005786,27.134030123706907,27.496969943400472,28.022733924444765,27.05275767482817,27.02036881353706,27.6343959053047,28.33109132386744,27.708635120652616,27.404814115259796,26.550816682633013,27.316121702548116,27.993489634711295,27.485109365079552,28.12504869978875,28.354701573960483,27.90632907813415,27.075883771758527,26.16580280708149,26.0735631599091,26.399180740118027,27.129020935855806,27.5214234017767,28.3322337330319,27.995867252349854,27.692723437212408,26.956307858694345,27.058205544017255,27.47779112495482,28.146042668260634,27.2763900202699,27.493953025899827,27.455899953376502,28.394549006130546,28.02960990741849,27.542877778876573,27.756611045915633,27.319212436210364,26.342288308776915,25.771912229713053,25.146933530457318,24.74605481373146,24.788486442528665,23.79293200466782,23.986575533635914,23.72963142534718,23.657823101617396,22.67302062548697,22.1718463646248,21.17660448793322,20.249939925502986,20.899674069602042,21.809653289150447,21.89559233793989,21.57127041881904,22.37068163184449,21.65237720264122,22.320360287558287,22.633584622759372,23.041380662936717,22.075484736356884,21.124213818926364,20.201079059857875,20.568994564935565,20.675295618828386,21.137266834732145,20.557110539171845,19.94598090974614,20.661233864258975,20.085914192255586,19.205554837360978,19.46861419081688,20.23014939110726,20.0655076475814,19.07883483916521,18.910408239345998,19.420254442840815,19.6482638833113,20.341428717132658,19.55516939004883,20.132784065324813,19.64176959497854,18.756937469821423,18.501347154844552,18.114037834573537,18.55358592234552,18.652490028645843,18.928530379664153,19.09176273830235,18.59116211067885,19.07720040436834,18.428167349658906,19.150732247158885,19.667293982580304,18.764776900876313,19.057602493092418,19.878955997526646,20.043231355492026,20.27882347581908,20.536685255356133,19.72931488091126,19.498221498914063,18.701353152282536,18.552709080278873,18.908310604747385,19.149193168617785,18.30912507371977,19.29705015476793,19.505284834187478,19.73777070082724,20.678117724135518,20.376110615208745,20.16692698467523,21.06073554744944,21.742971277795732,21.07210818026215,22.028615694958717,22.16335795307532,22.456048808526248,22.69106707116589,23.313027491327375,24.22627454297617,24.87429433176294,24.93896033987403,25.347576302476227,25.522109216544777,24.817641023080796,25.189964914228767,25.752937632147223,25.648109403904527,26.232532712630928,25.353582098148763,26.06880155345425,26.19987208582461,26.748265873640776,27.153467568103224,27.300523275043815,28.01165779074654,28.06020810455084,28.55680587561801,28.8534299666062,28.424832975957543,27.90766676561907,27.216514472849667,27.439411034807563,27.287204193416983,26.60736286593601,26.38705059327185,26.659097543917596,27.104193854611367,28.040761328302324,27.919256799854338,27.585175494663417,27.694658061489463,27.08362649474293,26.9185268743895,27.32435479341075,27.614653249736875,28.166080376598984,28.880842801649123,28.93965954007581,27.949429146945477,28.401919247116894,28.38397827465087,27.83144878130406,28.075968923512846,28.993162258528173,28.31240145675838,28.020854280795902,28.744170470163226,29.001583099830896,29.15785488532856,29.848432873841375,29.974252658896148,30.362776067107916,30.125745680648834,31.000259198248386,30.558437495026737,30.98765935515985,31.72567626880482,31.52838428458199,31.31410173466429,31.747756864875555,31.69595265062526,30.988004569895566,30.647652398329228,31.46679332666099,32.10727589065209,31.41779421083629,30.769018839113414,31.36419200943783,31.38042946625501,30.79204619769007,30.157780771609396,29.886039168573916,30.469440908171237,31.2896738499403,31.865110877901316,32.65910133207217,32.18675313331187,32.54819026682526,32.73582571931183,32.98122609453276,32.37517716176808,32.42127658659592,32.65179349062964,32.2044695103541,32.769518037792295,33.379626360256225,33.622424472123384,33.90934378514066,34.736983799841255,33.988549971953034,33.30628760205582,33.52957768877968,33.26979299169034,33.9051808193326,33.10293946694583,32.211024588905275,32.75106736784801,32.28934900695458,31.894438948482275,32.408075189217925,32.89392314804718,33.30241867294535,33.446999887004495,33.201170166023076,34.0744791040197,34.47501396667212,34.71270132390782,35.61432898463681,36.118584170006216,36.517257739789784,36.28639141609892,36.7353694611229,36.16486995574087,37.02880406472832,36.85635192319751,37.47450209595263,36.71613089926541,37.397648447193205,38.15598351461813,38.27346554584801,37.74318506754935,38.36443314794451,39.29786562686786,39.96824977872893,40.550677716732025,41.0784616577439,41.05572944600135,41.47889109747484,42.07384322816506,42.613910724408925,41.67476768838242,42.476832885760814,43.125794425141066,43.6721821045503,43.58651029551402,44.03246251726523,44.00756261777133,43.48768007522449,42.89392537903041,43.770779305603355,44.12510895822197,43.25386297143996,44.091743065509945,44.35350864753127,43.38568286085501,43.482649648562074,42.80832655588165,42.22866613371298,42.79971107468009,42.42244825139642,42.47422044351697,43.018135882448405,43.37815045239404,42.4327970193699,43.12667711870745,43.785615193191916,43.84273334220052,44.64876509504393,44.379767660517246,44.70765494555235,44.76390589075163,45.67443466093391,45.896713415160775,46.62830130523071,46.71404271014035,45.871277374681085,45.71167860599235,46.37783408910036,45.801061721052974,45.51533778849989,45.286449322942644,44.53274366771802,43.641849908512086,43.92674854164943,43.289421337191015,43.54691797820851,43.49156107567251,43.572501360438764,43.28900440223515,42.83826853148639,41.856285435613245,42.41432197159156,42.013922398909926,42.970558708533645,43.91451719449833,43.90414720447734,44.43493308592588,44.0874860198237,44.04874908272177,44.92242640024051,44.619224715512246,44.773780243936926,45.199512178543955,45.10277338512242,44.72529324935749,44.19629041105509,44.37058364553377,43.550008536316454,43.5440459381789,42.57327423384413,42.962505081668496,43.01221827138215,42.442622867412865,41.46047901548445,42.15110374754295,41.99340368621051,41.76972222980112,41.65521175088361,41.66412281198427,40.787007317412645,40.49883479019627,41.31815995555371,41.053220686502755,41.04032492591068,41.477935779839754,42.027283534407616,41.34325648006052,40.486375842709094,40.71386591065675,40.37073198147118,39.86035441607237,39.05366707406938,39.288056085817516,39.35207525873557,39.77450660523027,40.588711800053716,39.84127228008583,40.547684136312455,40.11988461110741,39.42234397865832,39.53096889145672,39.57797389384359,38.69477834785357,38.2090812465176,38.075661710463464,38.494773857761174,38.11453781835735,37.92519607208669,38.65428043808788,38.791628579143435,39.14705812325701,38.76204683165997,39.518024887889624,40.3251386298798,39.77930698636919,38.9583765421994,38.73993113357574,39.24453035648912,38.70284800278023,39.19681994616985,39.18973692972213,39.911047112662345,40.21303265634924,40.117382335010916,40.24723144527525,39.89302991889417,40.55248113721609,41.260469920467585,41.768800855614245,40.88602139893919,41.44764474360272,40.85642981156707,40.004384936764836,40.930372431408614,40.45336918160319,40.64562209369615,39.84496945049614,39.761829741764814,39.823294889647514,38.98829972324893,39.01725754374638,38.760507244151086,38.82573215663433,38.21192434197292,39.10961261484772,38.86160745890811,39.22917735343799,38.31578275049105,38.6279032737948,39.577678420580924,39.971252410672605,39.94152683299035,39.766492813359946,40.39405702194199,40.15131981950253,41.072930227499455,40.87814921466634,41.24776338879019,41.89158395631239,40.99367634160444,41.75776985567063,41.37642065016553,41.35174911795184,42.04807483032346,42.85211814800277,43.5186748127453,43.83514577616006,43.98839527135715,44.96964968461543,45.92500182753429,45.86364121455699,45.261557187419385,46.06264587305486,46.05233957618475,46.89161459542811,47.87818603171036,48.289538314100355,48.160981722641736,48.43953065900132,47.760674809105694,47.5937883881852,46.65892001520842,46.21959227696061,46.23458316922188,46.83361096959561,46.632061501033604,45.994834129698575,46.608946537133306,46.49822516227141,47.32123826816678,47.18756662728265,46.20947052445263,46.837446046527475,47.799614139832556,46.92973683355376,47.76438553631306,48.05071373004466,48.815352900885046,48.077659408561885,48.45980352908373,49.27688740985468,48.72784991143271,48.58560610935092,48.55205174628645,47.762934365775436,47.43079932406545,47.334062572102994,47.663057680241764,47.35572037519887,47.63006988633424,47.10809692973271,47.06088762311265,47.06269574118778,46.21699569327757,46.101185656152666,46.171177530661225,46.84845560789108,46.91952885268256,47.0214424058795,46.27484521642327,45.417717238888144,46.08473502518609,46.29684831108898,46.49288421263918,45.588619008194655,45.631875641644,46.479917159769684,45.54418479092419,45.71593915997073,45.042012728750706,45.85344162769616,46.33765914198011,46.21139036118984,46.13483305461705,46.539449158124626,46.75408498290926,47.75168070103973,46.9254804844968,47.920065111946315,48.15315673686564,48.50571053754538,48.15348387602717,47.43528668070212,47.16994761209935,48.05798505991697,47.78114748140797,47.14419364836067,46.44157861266285,46.539763282518834,46.29888444626704,47.246285270899534,47.94077053386718,47.88899084413424,48.315011374186724,48.248226629104465,49.06036941241473,49.262625283095986,48.38468224275857,49.29986669588834,49.252664748579264,48.423954863566905,48.85976726561785,49.65337503468618,50.57339989813045,50.72863515652716,50.97697334270924,51.69632087089121,51.72740567289293,51.06936818640679,50.61412027385086,50.42079366184771,49.827504659071565,49.02917561493814,48.71500788303092,48.33896978991106,48.02057045465335,47.029866612982005,48.02829318633303,48.544913383200765,48.72488709632307,47.96186370542273,47.94143624370918,47.252986333332956,47.587021633051336,48.48256180016324,47.97189795784652,47.1523164678365,46.605558718554676,46.25832235161215,46.641767943277955,46.77263711299747,46.78812781581655,47.65745151555166,47.126643125433475,47.778772003017366,47.71897710720077,47.37805567961186,47.49646007735282,48.48165195342153,48.23333418229595,47.56515005743131,48.47303720051423,47.5841946429573,47.66061364999041,46.695289640687406,46.491315422579646,47.088498048018664,47.850559192709625,47.39085302455351,46.64548328798264,46.55313356267288,46.35096936719492,46.04852975299582,45.34638073248789,45.858056851662695,45.850496583618224,46.02436126722023,46.69597482867539,47.65476561849937,48.25699433591217,47.60837597446516,47.99192129354924,47.32896360429004,48.216938390396535,48.706396791152656,48.526258401572704,47.6057507917285,48.116319897118956,47.51492873812094,47.15667413175106,46.1974725658074,47.12319364445284,47.89034584630281,48.57912827562541,48.71950779436156,49.52665409864858,48.96757963532582,48.571697905194014,49.14213002985343,48.38292932230979,49.0325815170072,48.608451515901834,48.233222941402346,47.73519152076915,47.25106328818947,46.73097790684551,46.0754003287293,45.93265982531011,46.32755531463772,46.364680640399456,45.88211972313002,45.30184132652357,45.19228072185069,45.12944340566173,45.258453618735075,44.52078522974625,45.361117464490235,44.968093123752624,44.1820765719749,44.889159966260195,44.10793077200651,44.7050345223397,45.614523918833584,45.87159124435857,46.508359102066606,46.67065765662119,46.24618606828153,46.334629335440695,45.65834255144,45.89989293506369,45.41297378251329,46.011490842327476,46.42510834801942,45.57038689078763,45.78925116546452,46.09575991332531,46.98926350334659,47.4467715639621,47.20909054437652,46.975049135275185,46.537361830472946,46.07736945897341,46.45334987714887,45.89959584409371,45.327768666204065,45.267357408069074,44.47283026250079,44.7695237537846,44.98478263290599,45.83212834969163,45.18661366542801,45.68893839837983,46.157752649858594,46.8686131904833,47.86160151055083,47.74227666296065,47.98874054849148,47.688473135232925,47.05233666067943,47.36437669210136,46.5977471456863,46.94737785914913,46.147358289919794,45.54749571159482,46.21500873519108,46.57542264973745,46.46423416910693,45.87659252760932,45.337611296679825,44.99192320974544,44.12568805878982,43.27449154853821,44.13757977914065,43.725098092108965,44.32908337004483,43.822132505942136,43.29798183403909,43.897649959195405,43.09415662055835,42.19149321177974,42.94995959568769,43.15182591788471,42.64105796022341,41.77091912087053,42.15113581484184,42.992173679638654,43.18511734344065,42.83305795211345,41.90181504469365,41.265697572845966,41.28103995183483,41.531765756662935,42.46632783673704,42.259154342114925,41.82922433456406,41.89602774614468,41.17435031523928,40.510257741902024,40.965516799129546,41.778335333336145,42.526067439932376,42.12492708489299,41.25186014873907,41.59326034132391,42.321244834922254,41.47502853209153,41.29917595721781,40.99991553975269,40.22016358654946,39.88892933540046,40.28071865066886,40.844207076355815,40.66045464714989,39.998304524924606,39.56595857720822,39.624997592996806,39.87013805517927,39.06600126065314,38.95454557752237,39.78126109018922,39.20503789000213,39.337087320163846,38.34063044935465,39.24150176346302,38.705433637369424,39.378585803322494,39.87337503954768,39.23284587310627,39.5783227821812,39.53886126354337,39.49779632454738,38.77852214779705,39.286193502601236,39.93371858494356,39.74335901066661,40.72763902042061,41.23280031979084,40.327287280000746,41.165155700873584,40.392806936986744,40.461351363454014,41.32641671504825,41.908949981443584,41.06698972173035,41.51231024926528,41.67062880843878,40.96378603996709,40.32879438297823,41.25954962335527,41.602753764018416,40.863122151233256,40.5521611222066,40.60834439564496,39.986074795015156,39.753166175913066,39.560542243532836,40.25142249232158,41.16122098593041,40.36968489410356,39.966497217305005,39.28017820464447,38.367800620850176,37.431140488013625,37.49967746529728,37.81807964248583,36.82785925315693,35.95400386303663,36.0792995756492,35.184700241312385,35.70543498592451,36.545358126051724,36.04654033156112,36.76786280982196,37.57954612188041,37.65705863945186,37.11527985474095,38.007485593203455,38.39384117675945,37.86185267474502,38.10138527024537,37.86224747309461,37.6617054855451,37.72601772099733,37.0102299535647,36.64608485996723,36.990119765512645,37.397839811164886,37.63610782939941,36.890704286284745,37.35108876042068,36.455224725883454,37.068700584582984,36.52247557416558,35.54399992246181,35.93682625377551,36.50684250937775,37.31906130397692,38.05502685951069,38.07949095079675,39.01597526902333,38.85331730125472,38.19422519626096,38.14368519326672,38.38342664344236,38.83182076783851,38.6929776230827,38.20608731918037,38.64720943477005,37.810141490306705,37.575613625813276,38.00843891873956,38.02289444813505,38.9008482596837,39.776755686383694,39.73135741753504,40.54130572732538,39.92823138879612,39.90040330309421,39.34959568455815,38.639715743251145,37.7395823947154,37.51407795958221,37.853009642101824,37.21269638231024,36.593241699039936,35.8040288137272,35.32289336808026,36.284457919187844,37.02237432030961,37.93008933123201,37.05577172199264,36.54913887102157,36.30211101286113,36.357116783969104,36.531924350652844,35.98500678548589,36.14327975222841,35.2178631098941,35.05581304850057,34.11198530718684,34.08228428522125,34.80985666671768,35.57010626792908,34.628235501702875,33.98597624246031,34.61056579742581,35.236654507461935,35.3249999708496,35.29010935733095,35.44116935087368,35.175046707037836,36.03897468233481,35.815639349631965,35.26498818164691,36.141721699852496,35.207890916615725,35.96360681578517,35.43173956917599,35.69411555817351,35.19658734835684,34.30284729320556,33.635585165116936,33.28656434966251,32.44987838808447,31.86443910561502,30.918604528531432,30.8121181265451,31.145570331718773,30.76778422575444,30.046503362245858,29.679081889800727,29.484155519865453,29.715260847937316,28.82381861610338,29.470073864795268,28.923528880346566,29.78655415168032,29.115152982529253,29.80942536937073,29.887420020531863,29.37058730982244,29.44436933659017,29.68811433110386,30.008252169471234,29.654008025769144,29.752698516938835,30.72292432235554,30.339885904919356,29.926871026400477,29.75446432735771,29.4903573282063,28.815353442449123,28.65355299040675,27.74199194693938,27.623767291661352,26.69893985055387,27.099861771799624,26.57320028124377,26.088290486484766,26.4238090836443,26.358142426237464,26.096180249471217,26.970534931402653,27.678373119793832,28.107738563790917,28.189956658519804,29.15091113280505,28.183593038469553,27.677847165614367,27.812520578037947,28.511535895522684,28.600575709249824,28.41243776725605,28.187665991019458,28.811058251652867,28.59172388771549,28.682660285383463,28.318251128308475,28.822551916353405,29.365204652771354,29.242379560600966,29.73731758026406,29.989684581756592,29.08166850777343,29.676345056388527,29.90120694739744,30.763244456145912,30.443087375722826,30.745673390105367,30.48987342743203,30.33120554406196,30.569264044519514,30.69479063153267,31.261082144919783,31.38990633841604,31.87904387060553,31.330792097374797,32.31979933241382,31.34318219171837,31.00135068455711,31.085982461925596,31.086224199272692,32.0673588947393,31.208553049713373,31.597023419104517,32.579870517365634,31.709155907388777,31.780922981910408,31.926197902765125,30.963491818401963,31.263314018957317,31.251499603502452,31.88593198172748,32.664666248019785,32.90427982574329,33.62858833419159,33.14406081195921,33.944315624888986,34.15190143696964,34.356819335371256,34.08050469541922,33.9077097857371,33.566706356592476,34.331037648022175,34.698929549660534,33.716569166164845,34.14937728224322,33.70724963536486,33.1900724763982,33.6146387597546,33.01813352294266,33.401962264906615,33.353980048093945,34.27311385655776,34.62150988681242,35.133746983483434,34.16394035425037,34.81881542224437,35.50086665386334,36.38902675360441,35.70771306473762,36.39628789387643,35.9137051301077,36.88361125672236,36.86040474055335,36.77233063103631,36.30420818272978,35.55944866454229,35.31439173500985,34.39180013211444,33.451474014203995,34.046180774923414,34.384921845048666,34.720227135811,35.64416851475835,35.58353832550347,35.605294675100595,35.7551006404683,34.91261676698923,34.48132956819609,34.9528415161185,34.24417652096599,34.84280145028606,34.32621034653857,33.505682210903615,33.22280593216419,33.96679780539125,33.308662552852184,33.60607114713639,33.53970412351191,33.18579366803169,32.233776167500764,31.496535489801317,32.088545181788504,33.043326794635504,33.361310640349984,34.33698644582182,34.98774766502902,34.48994563380256,35.322315969504416,36.19485775241628,36.137869452591985,36.9033328499645,36.77237022249028,35.786505561787635,35.51838584942743,34.595414847601205,34.485024087596685,35.10834934655577,34.79691601265222,34.46616522409022,34.321104551665485,34.85131435608491,35.71804347494617,36.0178723433055,35.61928734695539,35.84665833367035,36.77995001524687,37.19723008712754,37.11105170287192,36.621975322254,36.71380876051262,37.37195990746841,37.25295197404921,38.03300544247031,37.650331049691886,37.36606369307265,38.01213931199163,38.11416039802134,39.036180451046675,39.54620505962521,38.957239718176425,39.136665935628116,38.530132298357785,37.60395933268592,37.15387271903455,37.71286599384621,38.620472974609584,39.00347300665453,38.58927123621106,38.177084965165704,37.49470030609518,37.58676239522174,37.0410937089473,36.77258500829339,36.832463453989476,37.323361097835004,38.132710710633546,37.346632852219045,38.03247781237587,38.27467962214723,38.67828158149496,39.036991889588535,39.999593045096844,40.65613239072263,40.91224570013583,41.20751733472571,41.098401543684304,40.905860115308315,40.6625262638554,39.90061347279698,39.16845976142213,40.03075506538153,39.032180360052735,38.66790918027982,39.13426248775795,39.515957390889525,39.81026325747371,39.272647872101516,39.688678808975965,39.72676243446767,40.232137464452535,40.38506534555927,40.02103143418208,39.319408629555255,38.50619971239939,38.64259208086878,38.65521639864892,39.622941399458796,38.751794531941414,39.1643430176191,38.990637683309615,38.16280808439478,38.88942245859653,37.952006271108985,37.151698159985244,37.93668789975345,37.01502733537927,37.7457546624355,37.89140926301479,38.67805056460202,38.86790040321648,38.423805261496454,37.898532901424915,38.39658563910052,39.37479283101857,40.19993254216388,39.795289190951735,40.51251083845273,40.19400195637718,39.52588559826836,39.64677396742627,39.743223926983774,39.08512570336461,40.06232079444453,39.9292737999931,39.35985374357551,39.58838052675128,38.95020519429818,38.09057312970981,37.15640642400831,36.77942432835698,36.371535278856754,36.9453861406073,37.42244940344244,37.408657875843346,37.815564003773034,38.24581910902634,37.431102569215,38.28896368807182,39.07480489322916,38.92733874777332,38.311978563666344,37.67856263462454,36.772148858290166,37.37683659326285,37.73982335347682,37.188326690346,36.68249805783853,37.22502798214555,36.58812619931996,36.020289649255574,35.70153890363872,35.50121021736413,34.727570064365864,34.30185143277049,34.00744636170566,33.32682821853086,34.2101643406786,33.59183188341558,32.76291453652084,33.40030999761075,33.0326474593021,32.732282222248614,32.68491893541068,32.54766371054575,32.93647806812078,32.148996248375624,31.684095092583448,32.08450415264815,31.26601724792272,30.5812200573273,30.92774032941088,30.1949481992051,30.57392301224172,30.976459817029536,31.269800091162324,31.66623066412285,31.453544115182012,30.92481667920947,30.555608874186873,30.1783939008601,30.183126789983362,29.73020163271576,29.068011976778507,29.38631215551868,29.535850958433002,29.76332127628848,30.024609489832073,29.65480961278081,29.20182314980775,29.770792544819415,29.06614152621478,29.89144184300676,29.242925281170756,30.063437870703638,29.393898117356002,28.487090443260968,29.175755446311086,29.68998377537355,30.1769997170195,30.055243286304176,29.77142283320427,29.48424166580662,29.160112495999783,28.626568738836795,29.34157163091004,29.756839373148978,30.410994300153106,29.92048704670742,29.758220514748245,30.11893648141995,30.031230364460498,30.879977377597243,30.233262797351927,29.949229411315173,30.831917652860284,30.53264083294198,31.25034291902557,31.118931861128658,31.12987476075068,30.868765149265528,31.80982161127031,31.47906274953857,31.48115847958252,32.21088483231142,32.80949990032241,32.943596275988966,32.96558857522905,33.19735818263143,33.34431009180844,34.05896432418376,34.60507049923763,33.88074792083353,32.929449138231575,33.131782562006265,32.450134489219636,31.923989971634,31.181324613280594,30.792496420443058,31.080298002343625,31.721656053327024,31.062767694238573,31.73189888847992,31.626544618979096,30.988848517648876,30.940504466649145,31.150177338626236,31.21599420765415,30.73734281444922,30.604804965667427,30.40548798115924,31.155221008695662,30.47333693271503,31.44294469896704,31.92448907904327,32.24765894981101,33.15724008670077,32.59082604711875,32.16473017493263,32.634972573723644,32.49982919590548,31.977484854403883,31.285490695852786,31.09150523506105,30.933530883397907,30.539807851891965,30.521180109586567,29.8364043449983,30.411500265821815,29.99790285108611,30.917508867103606,31.313891452737153,30.862253316212445,31.66048420732841,32.43739420874044,32.0960203721188,32.465653310064226,32.02085359022021,32.589671935886145,32.94005552818999,33.4757996709086,34.414440772496164,34.461282164789736,35.15621069679037,35.880013732239604,36.37735526682809,37.2748432722874,36.97712703188881,37.884041531942785,38.39925333624706,39.22058036457747,40.09891843702644,41.098568603396416,42.067487076856196,41.90515917632729,41.53741068067029,42.177003098186105,41.59931007446721,41.081098357215524,41.693060990422964,42.28104312252253,42.12975942809135,42.894229042343795,43.379427559208125,44.224166912492365,43.48428542446345,43.90214198594913,44.33760570548475,43.786453957203776,42.929033995140344,42.27119313227013,41.79847464337945,40.983591245952994,41.54879373777658,40.95949560822919,41.501351717393845,41.26465127011761,40.930204269010574,41.041602885350585,40.70122694922611,39.816617438104004,39.962957384996116,39.7402804302983,40.26218614028767,40.619160901755095,41.38664159504697,40.780512049328536,41.49225419340655,41.26456553675234,40.70540583692491,41.58682558173314,42.42699723690748,42.808056517038494,42.38463712949306,41.76004005596042,41.30114472750574,41.50148641318083,41.81919280439615,42.75000456627458,42.57837420376018,42.892817579209805,41.94489803118631,41.93849187111482,40.9714823178947,41.640225760638714,41.939193847589195,41.46656906418502,41.906003419775516,41.19584208447486,41.865575324743986,41.00760089745745,40.671301980968565,41.20221141818911,40.31362600950524,40.65777213918045,41.492131432984024,40.92289380915463,40.91038480354473,40.902728950604796,40.79890277609229,41.01554270274937,40.815410742070526,40.28210555203259,39.32833903795108,39.66688576200977,39.352894708979875,39.7642286978662,39.442437826190144,38.679061437025666,38.912673831917346,39.81385134765878,39.23005990264937,38.65593693172559,39.52079568197951,40.07996377721429,39.92467785999179,40.3148600445129,40.55495041050017,40.60761005431414,40.60358768841252,40.71603171667084,41.48955418495461,41.63757485570386,42.23651053197682,41.83500536298379,42.13470948766917,42.107096733059734,41.991154823452234,42.12493283627555,41.883246642071754,41.69598482688889,42.133374262135476,41.3799967803061,40.439269641414285,41.12510531116277,40.313750066794455,39.59161654300988,38.65219924878329,38.059009592514485,37.80720209609717,38.52838654117659,38.85418764594942,38.393415212165564,39.29869277076796,38.91867619752884,39.68325724033639,39.51545266713947,39.98773520812392,39.798532779328525,39.000809714663774,38.3455877029337,37.38234973093495,36.82653362536803,36.54512686282396,36.59458977309987,36.263796892017126,37.230802443344146,37.0708905858919,37.616475391667336,38.509949531406164,38.724565035663545,39.48971633799374,40.19391580345109,40.07993755536154,40.67878708941862,39.70288484310731,39.671118250116706,39.41691455245018,39.15980719868094,38.7154252580367,39.25490640057251,39.08971291966736,39.73940597753972,40.02661219518632,39.324337946716696,39.11937753343955,40.04380263062194,39.837077596690506,39.754248534329236,39.85867033153772,40.301865364890546,39.68867591675371,40.39431392773986,40.39728929894045,40.825659095775336,40.80325820995495,40.211240235716105,39.65019958233461,39.68094927677885,40.27072951430455,39.84753032959998,38.87855295930058,38.0698033045046,38.14136975212023,37.85356692224741,37.3432044624351,36.74456589156762,37.415319779422134,38.33444172423333,37.36715617403388,37.281280919443816,37.090988824144006,36.26781387301162,35.5059579750523,35.15488700289279,34.726118152495474,35.29477629996836,34.98634027596563,34.20020337123424,33.77380832936615,34.509987961966544,34.233001310843974,34.54214097792283,34.24450041120872,33.515194351319224,32.69786327285692,31.860808772500604,31.087642196100205,31.781913111452013,32.55678264750168,32.324073679279536,32.05782154761255,31.18232040805742,31.763250378426164,31.944703206885606,32.24672583350912,32.41963982209563,33.129495662637055,33.39404222788289,33.122850318904966,32.154407115187496,31.95109263807535,31.36230874247849,30.59051362099126,30.255768705159426,29.486960103735328,29.204233210068196,29.2584773930721,28.34365687612444,27.734654035419226,28.191128742415458,28.447671043220907,28.7504702382721,29.633152793627232,29.767539182677865,28.950682840310037,29.67459807638079,29.22046906594187,28.484597409609705,28.676773870829493,29.349345562513918,30.277514609042555,30.52359528047964,31.485891808755696,32.16972906794399,32.965092888101935,32.79635213781148,33.019217137712985,32.14800620265305,32.25747747067362,32.480045072268695,31.994782243855298,31.470950837247074,31.17996911611408,31.14012729236856,31.226590326055884,31.615296750795096,31.409359738696367,32.26704523945227,31.648651579394937,32.054530487861484,32.81257163826376,33.44477708032355,32.55087613128126,31.679581397213042,31.70922124478966,31.665629576426,31.890431694686413,31.93506796984002,32.71318882284686,32.053210080135614,32.42185262078419,32.62095903465524,32.92216489650309,33.28486156417057,33.06864332733676,32.818430378101766,33.81383743695915,33.331575287505984,33.10071509703994,33.983714923262596,34.564938297029585,34.70649070199579,34.842894681263715,33.845739691052586,33.236463787499815,33.710143223404884,33.38976320391521,33.4744562972337,33.03954757377505,32.777881072834134,32.710198626387864,32.02006704127416,32.83347176760435,32.56004345277324,32.73247960628942,33.43430748209357,33.57189638633281,32.91969250515103,33.097284329589456,33.33618023991585,33.47651245305315,34.00727432826534,33.89344051619992,33.269187153317034,34.14843340124935,35.10236287256703,35.23011304810643,34.718770595267415,35.18986853212118,34.26747510116547,35.04609331674874,34.07758316677064,34.335657441057265,34.299003964755684,34.6726706023328,35.5639069234021,34.90570968715474,34.326901990920305,33.552377183921635,32.960229088552296,32.526698355562985,33.1536696087569,34.060153879690915,33.772457014769316,34.439734517131,33.905112370382994,33.10303008602932,32.487191531807184,31.542991756927222,32.25966890109703,33.00675632990897,33.690030159428716,34.404306965880096,35.29597935313359,35.030964905396104,34.8361766259186,33.97098612273112,34.657514261547476,33.8819381929934,33.49080611905083,32.88255481934175,33.37754295114428,32.92331639677286,33.101587008684874,32.95321086561307,32.245334054809064,32.76718619372696,32.31968232430518,31.77795035066083,31.09089051373303,31.525331414770335,32.033223954960704,31.08495900267735,30.49464600160718,30.15459803584963,29.649476646911353,30.082347904797643,29.644537824206054,29.741207478567958,29.56234036758542,28.652481655124575,28.669750750996172,29.389288518112153,29.90934387408197,30.869983003474772,30.406795316841453,30.652465257328004,30.836698656901717,30.463824923615903,29.761534521356225,29.639519023243338,29.27782769408077,30.093699485994875,29.25240340316668,28.494692120235413,27.50548641057685,28.144912387244403,28.053994993213564,27.113747095223516,27.462811950594187,27.075733453966677,27.022866767365485,26.21781603153795,25.81978783896193,25.849683043081313,26.136776458472013,25.13901239214465,25.633310155011714,26.037420401815325,25.151787381619215,26.042074871249497,25.232388234697282,24.89826956158504,24.084951541386545,23.917036892846227,24.18467671610415,24.979719255119562,24.494209742173553,24.460430478211492,24.851816394831985,24.71555092278868,25.277784088160843,25.230733692646027,25.413497184868902,24.921565687749535,24.2112484886311,23.342069264966995,22.517958318814635,21.63026090990752,22.381500623188913,21.642017162404954,20.86641591275111,20.528129185084254,19.912059551570565,20.090269254520535,20.182563457638025,20.87443904625252,20.219927970319986,20.324055017437786,20.45084814541042,19.755601310171187,19.31137035647407,18.4075197679922,18.65891951881349,19.1755439536646,19.168048708233982,19.58883730787784,19.976755145937204,19.967138454318047,19.61145255342126,20.243038842454553,20.581697353627533,21.199995948001742,20.320022761821747,20.080785353202373,19.787039482034743,20.133183664176613,20.98315528128296,21.57788104331121,22.00644342089072,22.5633252710104,23.552969546988606,22.670527107082307,23.017087195068598,22.864670213777572,22.63129112776369,23.412125666625798,22.866498603485525,22.575679961126298,22.70824905158952,21.919081680011004,22.234513672534376,21.446906267665327,22.30364812258631,21.72053869534284,21.52536425134167,21.334090361837298,20.981450986582786,20.62330164993182,21.145956905558705,22.08186313509941,22.635352627839893,23.130314426496625,23.311032066121697,22.522570915985852,22.146419167052954,22.898883261717856,23.747109991963953,23.433511276729405,22.59835463343188,21.67898492142558,20.846719671040773,19.879880954045802,19.00088548893109,19.29674991965294,18.4676417671144,17.658831623382866,16.842375997453928,17.63355342671275,18.201645066030324,17.207375791389495,17.688433112576604,18.659826843068004,18.71102643245831,17.83153513353318,18.02557677216828,18.33929543942213,18.781750894151628,18.053749155718833,17.409602801781148,17.556219563353807,18.337661422323436,18.267982604913414,18.344663580413908,19.16108713950962,19.348195664118975,20.297394421417266,20.579681621864438,20.864909919910133,20.27825314225629,20.16724142851308,20.56322599342093,20.234037523623556,20.03474917355925,19.951632516924292,19.755383936688304,19.089814376085997,19.51468543615192,19.017965469509363,18.849642916116863,18.14367448212579,17.232188088353723,17.652433330193162,16.675695651210845,16.334155030548573,15.521174759138376,15.10748970741406,14.90015740506351,14.702884015627205,15.365880264900625,15.462902843020856,14.92924111476168,15.805573156569153,15.454345277976245,14.86104511283338,14.650716037489474,15.129248349461704,15.165059101767838,14.471990966238081,13.592127969488502,14.506209571380168,14.40220417547971,13.974695364944637,14.015079762786627,14.978974852710962,15.006136772222817,14.021964916028082,13.267773275729269,13.008474683389068,12.32269907835871,11.366143529303372,12.19853582372889,11.78776066051796,12.601408590562642,11.745740231592208,11.180167500860989,10.236281053163111,10.27944621630013,10.98172650206834,10.829289597459137,10.687298551667482,10.295839863829315,10.472635658923537,10.300461936742067,10.024877750780433,9.237600959837437,9.808090336620808,9.424245632253587,10.087080036755651,9.104788239113986,8.861877229530364,8.032511370256543,7.05477104941383,6.085385138168931,6.494374958332628,6.762298533227295,6.179052449762821,6.1508448561653495,5.3287961659953,5.180209056008607,5.999827440828085,6.191735610831529,6.8739316067658365,7.485514470376074,6.548761409241706,7.147813437972218,6.908652906306088,7.562014953698963,8.526373057626188,8.257700484246016,8.894678589887917,9.179813778493553,8.332175690215081,8.562827104702592,8.221474705263972,7.317692760378122,6.479452647734433,6.8404911905527115,6.270438247360289,5.4164453144185245,5.146073239855468,4.260146785061806,4.088132963050157,4.427475577220321,4.325336830690503,4.881722159218043,4.4013555883429945,5.291617379523814,4.804851653054357,4.183804486878216,4.106733781285584,4.977756050880998,5.923302347771823,6.541062423959374,6.974116876721382,6.727200239431113,7.12228243611753,7.614651288837194,8.56688266992569,8.619590951595455,8.77540935575962,7.82210247637704,8.094410633668303,8.9327887208201,8.591272454708815,9.159114109352231,9.381007609888911,8.582355681341141,8.310915374662727,8.666347737889737,7.714649822097272,7.238245434127748,7.459700139705092,6.497946701012552,6.398971908725798,7.148821386508644,6.514364615548402,6.447815088555217,5.500520472880453,5.324465714395046,5.805536066647619,6.330009917728603,5.365188335534185,5.127220014575869,4.5991327916271985,4.022976772394031,3.1767520401626825,3.1393812065944076,3.8209882876835763,4.517784739844501,5.070236396975815,4.103585209231824,3.813282231334597,4.674769560340792,5.183663496281952,4.805991977918893,4.923401451669633,4.049569363705814,4.369006258901209,4.049951198045164,3.834677761886269,3.3522485876455903,3.424717001616955,4.110756836365908,5.005465508438647,5.511863750871271,4.947301321197301,4.448565396945924,5.196121294051409,4.651726505719125,4.388375528156757,4.639130441471934,4.949516212567687,5.39143737219274,4.77780087897554,4.360509965568781,3.7286378322169185,3.6844582953490317,4.034102324396372,4.162086263298988,4.205921571236104,5.117886395193636,4.182825148571283,4.015952101908624,3.5120584135875106,3.28978468850255,3.0062309550121427,2.7604011511430144,1.8118211776018143,1.3351612738333642,0.9845272153615952,1.4408619282767177,2.0646430207416415,2.6081826854497194,3.0850113732740283,2.3755308906547725,2.084179195109755,1.783878993242979,1.708072829991579,1.6295803822577,2.526947582606226,1.9433715110644698,2.0827511195093393,1.1983414669521153,0.7122351657599211,0.9558642478659749,1.9141816655173898,2.8643943606875837,2.487506133969873,3.1535007511265576,2.753853877540678,1.993828039150685,2.2873922386206686,3.018203008454293,3.667522900737822,2.735796374734491,2.4809673875570297,2.4815076855011284,2.224727012682706,1.282351371832192,1.5524502717889845,1.2979671433568,1.251595374662429,0.8424009303562343,0.20838671689853072,1.0794118400663137,0.2688708328641951,1.2321461038663983,1.3420555363409221,1.9417736451141536,0.988510821480304,1.5169213893823326,2.4222957524470985,1.594730690587312,2.0458751167170703,2.8974065934307873,3.1242597703821957,3.3623014017939568,2.5463758297264576,2.6320541789755225,3.0587249603122473,3.225206410046667,2.7940007192082703,2.740294904448092,2.2090981057845056,2.069532976485789,1.3150516194291413,2.1950832777656615,2.2159106503240764,1.9930419903248549,1.894627652131021,1.722637275699526,1.6113578593358397,0.8576661683619022,0.7083228747360408,0.9634196921251714,0.26667618518695235,0.44247831171378493,-0.26205385802313685,0.6999713224358857,1.4667895031161606,1.8607783168554306,1.0023430669680238,0.034382034093141556,-0.03425157954916358,0.10505544114857912,0.8379634888842702,1.8256937693804502,1.8560060481540859,2.0066072498448193,2.8759833658114076,3.2699885121546686,2.354547726921737,2.482620197813958,2.329927788116038,1.8485668408684433,2.7108660293743014,3.0976017070934176,3.3619664022699,2.7052526059560478,2.0630186940543354,2.902226963080466,2.457366322632879,2.2329276585951447,3.0617228760384023,3.3640829334035516,4.104183165822178,5.055029725655913,4.294136026408523,4.446642607450485,5.291796548292041,4.892933163791895,4.3614119864068925,4.7131355297751725,3.830181004013866,3.4132297900505364,3.949240902904421,3.8163206055760384,3.7122861919924617,2.783002714626491,3.7089839172549546,3.2209950517863035,3.6995607637800276,3.9067075569182634,3.686095682438463,3.5938102384097874,4.0800327132456005,4.298356729093939,5.176685317419469,4.464804313145578,4.621593867428601,4.057255204766989,4.256370769813657,3.6168212573975325,4.524450877215713,3.738545217551291,3.649838021490723,3.946261843200773,4.899475358426571,5.506000015884638,5.770737276878208,6.135322528891265,6.593167813960463,6.299928749445826,6.8413565759547055,7.02999288123101,6.435155214741826,7.007670476567,6.711115871556103,6.401888715103269,7.320378051605076,7.361886051017791,7.691960438154638,8.247723474632949,9.191640560515225,9.173795098438859,8.411147982347757,8.547693855594844,8.334142121020705,7.676435507833958,8.226662695873529,7.42409030161798,6.88170770695433,6.172291208058596,5.9739881423301995,6.369390371721238,5.704281852114946,5.933612369466573,5.955911404453218,6.95212138723582,6.813071853015572,6.5381104606203735,5.845710737630725,5.605819631833583,4.784427211154252,4.892253701109439,3.9717890550382435,4.589040283113718,5.281387469731271,4.696922019589692,5.2085287207737565,5.521154701244086,5.814889829605818,6.07202236354351,6.466520605608821,7.36477782484144,7.267871900927275,7.800162765197456,8.377234684769064,7.987023595254868,8.041809585411102,7.793927469290793,7.527537594549358,6.62902376241982,7.616839819122106,7.330316418316215,6.614185101818293,7.037303131073713,6.724407717585564,6.006898720283061,5.785173308569938,4.847471445333213,4.534708766732365,3.7914542593061924,3.340237656608224,3.9483912494033575,4.902640807908028,5.8714030254632235,5.728326319716871,5.019228489603847,5.34624163294211,4.838809686712921,4.955949338153005,4.170282525476068,4.161134792957455,3.8299421407282352,3.2916583851911128,4.119343288242817,4.02237814757973,4.7805387154221535,4.420395088847727,4.088157596997917,4.307837174274027,3.5682709459215403,2.67672650096938,3.571704327594489,3.1834174101240933,3.0704147880896926,3.7507472722791135,2.9977435506880283,3.543407349847257,4.119881900027394,3.686867719050497,4.143674063496292,4.081144442781806,3.7718814676627517,4.315175389871001,4.094211011193693,4.533696469385177,3.5383181856013834,3.198580860160291,3.6688892617821693,4.654133563861251,4.30387870175764,4.0900197783485055,4.65619388082996,5.354762273840606,4.664059068541974,4.728242271114141,5.44481409015134,6.238436617422849,6.329030311200768,7.148676817305386,7.821695471648127,7.155852526891977,6.645772191230208,6.084972648881376,6.788395259063691,5.989910736680031,5.486709255725145,5.138861103449017,4.411956132855266,4.433482609689236,3.4417728087864816,3.656394574791193,4.025380484294146,4.09406141191721,4.127561416011304,4.205306293442845,4.036724133882672,3.5620245952159166,3.7358275428414345,3.919768327847123,4.8694667355157435,4.697395028080791,4.793725234922022,4.8901878711767495,5.771085012704134,5.641378961969167,4.825915893074125,5.042757286224514,5.88917441572994,5.454107203055173,5.350369595456868,5.197349043563008,4.611269547604024,5.33880167407915,5.091024286113679,4.524151565972716,3.6415796214714646,4.423171181697398,3.8609523018822074,4.505599080584943,5.43376252008602,5.483301329426467,5.995747902430594,5.049010146409273,4.993092270102352,5.503505501430482,5.761874330230057,5.902186528779566,6.1312663475982845,5.717915383633226,6.677573901135474,6.002286328934133,5.584385309834033,6.118907670956105,5.76700473530218,6.5604226514697075,7.168113672640175,8.09975377516821,8.006916292477399,8.056938962545246,8.42441259790212,8.285731382668018,8.31796782836318,8.473718410823494,7.491524905897677,7.6222245544195175,8.017522882204503,7.925595858599991,8.899481486529112,8.013200675603002,8.436763504520059,8.492343274410814,7.930419796146452,7.099517511669546,7.922795462422073,8.120547021273524,8.29193807952106,8.670782515779138,9.086813875939697,9.875941330567002,10.74797555943951,10.850347335916013,11.479649998247623,11.844880201853812,10.847967815585434,9.912333097774535,9.777908112853765,9.705397531855851,9.96817872999236,10.74489119881764,9.941059270873666,10.215607560705394,10.589379074983299,10.227713270578533,10.457397719845176,10.688585367519408,10.22754979180172,11.19763059541583,11.806884922552854,12.15009004343301,12.370593269821256,13.095348013099283,12.928478731773794,12.195791179314256,11.500757755246013,11.555900582112372,11.575014383532107,12.156634501181543,12.816210600081831,11.834045190364122,11.805423628538847,10.861267168074846,11.18127692118287,11.21587785333395,11.305195488967001,11.769885473884642,10.814849758986384,11.67090842872858,12.523231490980834,13.294073180761188,12.920522226952016,12.563417055178434,12.967847988940775,12.976516381837428,13.489979774691164,13.14672796241939,13.258756774012,12.493433339521289,13.427300329785794,13.421693630516529,13.598486518021673,14.11559378169477,14.046076883096248,13.050953321158886,12.899374050088227,11.972165561281145,11.038214966654778,11.071244956925511,10.573868494480848,10.042534480337054,10.85645305691287,10.83082899870351,11.27019181009382,11.951765244826674,11.948271017055959,12.240929256659001,11.78096490027383,10.971195981837809,11.835463150870055,12.003330556675792,11.632263058796525,12.601781699806452,12.35867968108505,11.787562479730695,12.24093510210514,13.141395188402385,12.246550179086626,11.814047983847558,10.93410017946735,11.382190252188593,11.099466296844184,10.647677981760353,10.33787314593792,10.097707292996347,10.43494660500437,10.264238773379475,10.531305396929383,9.933189838659018,10.480932062026113,9.58944830391556,9.431250127963722,8.615448534488678,8.09980225423351,7.64516809862107,8.50701477471739,7.931346106808633,7.066264586523175,8.016664791852236,8.177503906656057,7.96655336022377,8.446580691728741,8.192700671497732,8.439675722271204,7.647767141461372,6.760167518630624,6.640564505476505,5.7139265621080995,6.0170647711493075,5.8741476885043085,6.17130399402231,5.75583058828488,4.851075121667236,4.192269124556333,4.287426081020385,5.043333052191883,4.197509676683694,4.474810185842216,5.37974635977298,5.147746493108571,5.569635491352528,5.605927847325802,5.544615979772061,5.025403813458979,5.011790727265179,5.473500126507133,5.912300264462829,5.173834661953151,5.150383877567947,5.567904366645962,5.318673606030643,5.006022831425071,4.163801725488156,4.815574163105339,4.629568535834551,4.45870515005663,4.5531029286794364,4.904556525871158,4.875158524140716,4.179571843706071,4.955266896635294,4.021644077729434,3.054626358207315,3.6310382089577615,2.8872039653360844,2.9709565085358918,2.9344454067759216,2.802766633220017,3.4804406920447946,2.9579725204966962,2.7108283448033035,3.23610041057691,2.3358890465460718,2.6800564010627568,3.5399182974360883,3.3478572531603277,2.9084555697627366,3.835872777272016,4.401906833052635,4.388775167986751,4.237444085069001,4.7342424034141,4.994643916375935,5.252577556297183,6.020352759864181,6.433899958617985,6.3632779056206346,5.489281539339572,5.331240544095635,5.515259730629623,4.54816447198391,4.707016109954566,5.6876512612216175,5.562512853182852,4.865515033248812,4.574603035580367,5.386986772529781,5.798104098532349,6.443049896974117,7.061594496946782,6.233797788619995,6.105028299149126,5.5879660015925765,5.037940161302686,5.506596550345421,5.133110896684229,5.362541726324707,4.366856712847948,3.649520088918507,2.961451770272106,2.223346997052431,1.3725618510507047,2.0908751590177417,1.5077756689861417,0.9559543700888753,0.6901854020543396,-0.22715742187574506,-1.1043724683113396,-1.5120522314682603,-2.3496640445664525,-1.3747575324960053,-1.6311973319388926,-1.7489205528981984,-2.4813835667446256,-2.145372297614813,-2.4720614231191576,-2.943540387786925,-2.00051903212443,-1.2643503448925912,-0.3280846285633743,0.19594451412558556,0.6914234408177435,0.14541076170280576,-0.2659403788857162,0.010558015666902065,-0.08832007646560669,-0.3081048699095845,0.22204387979581952,1.204578475560993,0.7000319194048643,0.16324202762916684,0.47137493919581175,0.21936329640448093,0.21258469996973872,0.19054300570860505,-0.6073819408193231,-1.4647367894649506,-0.9128074799664319,-0.2377886213362217,-0.22534630354493856,-1.0469407364726067,-0.3794021303765476,0.32966427272185683,1.1181897688657045,1.425532900262624,1.736032294575125,1.6477481694892049,1.8066988098435104,2.556894842069596,1.6751795285381377,1.0489048417657614,0.4192774761468172,0.3799773221835494,-0.46496022399514914,-1.0734230042435229,-1.1829775758087635,-0.601074303034693,-0.31275452906265855,0.42799178464338183,-0.18594404216855764,-1.1747702807188034,-0.2062941938638687,-1.1887208204716444,-1.8959685456939042,-0.8986562211066484,-0.8324243659153581,0.1078502805903554,0.04319761274382472,0.09422023082152009,-0.8684775494039059,-1.1752799432724714,-0.650393265299499,-0.37216512113809586,-0.21699213981628418,-0.7080175629816949,-0.9763180911540985,-0.6082244957797229,-1.146017583552748,-1.7014542380347848,-2.2303638514131308,-1.8938488317653537,-1.8349493886344135,-2.1034283000044525,-1.7067963569425046,-0.835435904096812,-0.805917355697602,-0.19742309302091599,-0.07137848297134042,0.18777057621628046,-0.3106937021948397,-0.9741290556266904,-0.5790930846706033,-0.30959074664860964,-0.31216507125645876,-1.2513431846164167,-2.2085820357315242,-2.3586619775742292,-1.7535163285210729,-1.5670991367660463,-2.4213488632813096,-2.742577807046473,-2.7038640244863927,-1.934307740535587,-2.6189786684699357,-3.4830325678922236,-3.147074011620134,-2.229014619253576,-2.136046416591853,-1.9695867830887437,-1.11901928903535,-0.913661845959723,-1.768426513299346,-2.295997761655599,-2.7534367656335235,-2.068601537961513,-1.32728479988873,-1.2351466254331172,-1.5846389490179718,-1.1469846381805837,-0.33638826245442033,0.2014655964449048,0.854223090223968,0.3161288253031671,0.22831388982012868,0.431183738168329,-0.3525859019719064,0.4453597944229841,0.9430483118630946,1.3913513231091201,0.978015820030123,0.6817156234756112,1.6398722035810351,0.7563721616752446,0.9831584999337792,1.4988313638605177,2.1725125862285495,1.454228023532778,0.9496113322675228,0.2571101658977568,-0.3695054529234767,0.20387061592191458,0.0394557723775506,-0.33542315382510424,-0.24944816483184695,-0.0390591979958117,-0.690507432911545,-1.5439615668728948,-1.5353241646662354,-0.6540619279257953,0.006095529533922672,0.13019106583669782,0.943882710300386,0.1646123956888914,-0.7458133702166378,-0.2288346062414348,0.6600460559129715,-0.27060734666883945,-0.6184925548732281,-1.4022133513353765,-1.589436954818666,-1.983502327464521,-2.9044401478022337,-3.525329095311463,-3.8398677464574575,-3.0533689209260046,-2.711065549403429,-1.9006197857670486,-1.496949817519635,-1.9483304885216057,-1.6127730710431933,-1.2836679061874747,-1.9809175445698202,-1.6597208003513515,-2.571246563922614,-2.5993183008395135,-3.206964405719191,-2.7065242854878306,-3.149628972169012,-3.132915369234979,-2.992050149012357,-3.2506407131440938,-2.488373728003353,-2.8552760733291507,-2.580508369486779,-1.928898538928479,-0.9649636284448206,-0.6994016021490097,0.27024963311851025,0.26922572450712323,1.0952997542917728,1.2937451261095703,1.8448534375056624,1.5265812571160495,0.5450881831347942,1.3347018491476774,2.2032718253321946,2.8669196870177984,3.674645619932562,4.494160872884095,4.58028609957546,4.087213207036257,4.753070999402553,5.063995433971286,4.418422008864582,4.1429491033777595,3.172023964114487,3.671648077201098,3.254445023369044,3.3181091211736202,3.720172049012035,3.7254399065859616,3.865057293791324,3.5226276200264692,4.34584402712062,4.571741373278201,4.344531790353358,5.319748632144183,5.282973570283502,4.41336554242298,3.96396223269403,4.180436273571104,5.126756731886417,4.995232868473977,5.793670540675521,6.316723383963108,6.960091345012188,6.622823736164719,6.6511537646874785,5.66041628876701,6.384041945915669,5.636037971824408,4.901384397409856,4.7652972475625575,5.096670436672866,5.094969557598233,4.915841788519174,5.785653077997267,5.83646183507517,5.705075363628566,6.328932684380561,5.8744459031149745,5.301385392434895,6.060997255612165,5.4988893158733845,5.3477217415347695,4.8930491101928055,4.742024717852473,5.432918704114854,5.288297170307487,5.082354004494846,4.332521080039442,3.914915003348142,3.7781015490181744,4.663484715856612,5.155353772919625,4.711435538250953,3.7396752471104264,3.0383734852075577,2.268927396275103,1.5961278462782502,1.0856340774334967,0.6787450155243278,1.440755221992731,2.008669222239405,2.7524353503249586,2.404967173933983,3.152071158401668,4.068705921061337,3.4367262152954936,2.9135391577146947,3.4930434050038457,3.8845225828699768,3.090912082698196,2.5790928225032985,2.5720978383906186,3.4134999848902225,3.702500340063125,4.4164728238247335,5.339406754821539,5.4187211389653385,5.58447108278051,4.823086820542812,5.620447775349021,6.500725635327399,6.57282029138878,5.66042360290885,5.235504237469286,5.280900787096471,4.821492066606879,5.135610065422952,4.167293678037822,4.798953381367028,4.9674770650453866,4.7005061293020844,5.067401442676783,5.097919184714556,5.578217142727226,5.5515401302836835,5.141990796197206,4.288018227554858,3.499714735429734,2.506790447514504,2.335331271402538,3.1032036151736975,2.1190348458476365,2.9581497199833393,2.4584478619508445,3.0675407364033163,2.5682061975821853,2.515285126399249,2.9253294207155704,2.9549101372249424,3.041459401603788,3.9309466504491866,4.8718549674376845,5.244350987952203,4.89852585690096,5.780501713976264,6.611681506503373,6.018365778960288,5.718867821618915,5.279467080254108,4.690512796398252,5.354145555291325,4.8485766858793795,3.989821296185255,3.7500094794668257,4.100965111516416,3.956121084280312,4.225330325309187,4.718854775186628,4.864761650096625,4.990796211641282,4.406304096803069,3.465444440022111,2.809774164110422,3.185241680126637,3.3771747974678874,3.2875593546777964,3.339877958409488,3.315381485968828,3.7094852584414184,4.168506629765034,3.1981960590928793,4.1250701188109815,4.863556257914752,5.589492337778211,6.168131738435477,5.274144735187292,4.647008911240846,4.683703219983727,5.27384262252599,5.346670021302998,4.534930806141347,4.966137275565416,5.103676068596542,5.350545250810683,4.811735966708511,4.965475273318589,5.568229074124247,5.15381295979023,4.2922277161851525,4.110983771272004,3.8769763498567045,3.635585817042738,3.8146885405294597,3.037333115004003,3.808213021606207,3.8036990142427385,3.7302349056117237,3.0069747595116496,2.472169858869165,1.8599360645748675,1.8056528130546212,1.0691991508938372,0.26780458772554994,0.119060262106359,-0.4470421182923019,-0.47889718832448125,-1.4036545734852552,-0.805922370404005,-1.4383332966826856,-1.6807420458644629,-2.3143530911765993,-1.5865124729461968,-1.234622999560088,-1.9706725920550525,-1.0834703887812793,-1.069847039412707,-1.8523151664994657,-1.6195277241058648,-1.5727805541828275,-1.6995502933859825,-2.589873642195016,-2.7207334763370454,-2.9008955652825534,-2.375294143334031,-2.1450043325312436,-2.9104604073800147,-3.715548417530954,-3.3208830831572413,-2.4572682310827076,-3.0113043249584734,-3.6619585207663476,-3.3535255664028227,-3.096602483652532,-3.3130129049532115,-2.3291243971325457,-2.063476434443146,-1.985912139993161,-2.9075393322855234,-3.8735827766358852,-4.806081089191139,-4.684365927241743,-5.069983793888241,-5.237448808737099,-6.1769960559904575,-6.358917871955782,-6.79463497037068,-6.786819542758167,-6.00314730219543,-5.224992529023439,-4.611097629647702,-3.918209206778556,-3.5403312048874795,-2.7850259291008115,-2.755180607549846,-1.9509449978359044,-2.0931572606787086,-1.1703015570528805,-1.4494892177172005,-1.1357951713725924,-1.6584507781080902,-1.9490463733673096,-2.6941193444654346,-1.9620987349189818,-2.6669569187797606,-3.338450356386602,-4.059718487318605,-4.596275667194277,-4.443341047503054,-4.161681978497654,-4.312377217691392,-4.860726407729089,-4.905590214766562,-4.641988506540656,-3.671373981051147,-4.127980261109769,-3.4414088963530958,-3.195180817041546,-3.5127043942920864,-3.943550089839846,-4.666452761739492,-5.6044303346425295,-5.883419483434409,-5.289199563674629,-4.868937253486365,-4.470300443936139,-4.393406007438898,-4.122922591865063,-3.259884813800454,-3.060081318486482,-3.8714778032153845,-3.5268077505752444,-4.1323423739522696,-3.641732261981815,-2.7111953208222985,-3.2619390515610576,-3.971996276639402,-4.383771989028901,-4.728198177181184,-4.303749138023704,-3.7662330181337893,-4.481691835913807,-3.544542318675667,-2.7530984869226813,-3.709003266412765,-4.544490393251181,-3.579893476795405,-3.1259979913011193,-3.389433934353292,-3.1070644250139594,-4.043448503129184,-3.779283213429153,-2.96478237118572,-2.9539730809628963,-3.765683709643781,-3.9028371647000313,-4.153481170069426,-3.5664103417657316,-4.546566453296691,-3.6822768272832036,-3.9422895149327815,-4.852858144789934,-4.330789724830538,-4.8102611298672855,-5.032098960597068,-5.0149587681517005,-4.7710930104367435,-5.257579593453556,-5.788618788588792,-5.649968071375042,-5.7044635862112045,-5.662719137966633,-6.516319187358022,-6.693152430467308,-6.855094983242452,-7.120162821374834,-7.089613397140056,-6.314456901978701,-6.083201349712908,-5.649339998606592,-5.749248428735882,-5.82169769378379,-5.419023789931089,-5.178384013008326,-6.152685353066772,-6.759957881644368,-6.663790120277554,-6.984112868551165,-7.300132213626057,-7.683179408777505,-8.170320127159357,-8.876214017160237,-7.994594587944448,-8.328611306846142,-8.572355086449534,-9.323402415495366,-8.542713137343526,-9.26336077414453,-9.209092933684587,-8.784991114400327,-8.880031382665038,-8.452011612709612,-9.411120033822954,-9.239223934244365,-8.48801947478205,-8.057353284209967,-7.307407682295889,-8.253070527222008,-8.506028423085809,-7.860394960734993,-7.714336710516363,-8.139008256141096,-9.018181640654802,-8.773212016094476,-9.038601642940193,-8.96338893705979,-8.602645564824343,-7.7770054172724485,-8.596887234598398,-8.336364109069109,-7.88351676473394,-8.54311715811491,-8.474374164361507,-8.734347546473145,-9.573630433529615,-10.206365653779358,-10.042060329578817,-10.416306120809168,-10.211235988419503,-9.624563769437373,-9.126128353644162,-8.546543614473194,-9.407558842562139,-10.006066387053579,-9.8364946260117,-9.491740556899458,-9.975600976496935,-9.507898379582912,-9.42400083458051,-8.668354287277907,-9.072499126195908,-9.37440694309771,-8.92628235463053,-8.200671012047678,-8.492008604109287,-8.180252546910197,-8.007745712529868,-8.050644752569497,-8.112386838532984,-7.714095776434988,-7.951979916077107,-8.484097888227552,-7.525541928596795,-7.377052164170891,-6.718779570888728,-7.470904609654099,-6.918804320972413,-7.721848703920841,-8.38625173131004,-8.051951853558421,-8.979352820198983,-8.750679508317262,-8.225645382422954,-7.93479925673455,-8.881890225224197,-8.59788242308423,-8.217171913944185,-7.52908275090158,-6.889260550960898,-6.608748653437942,-6.661625361070037,-7.111295300070196,-6.898653763812035,-6.215821088757366,-6.186832734849304,-6.039103636983782,-6.8236788106150925,-6.206200794316828,-6.202341570984572,-6.001326983328909,-6.9218025035224855,-7.511329328641295,-6.574569531250745,-5.891598861664534,-5.188368259463459,-4.963457549922168,-4.533434985205531,-4.213411309756339,-3.6090854220092297,-3.424125434830785,-2.77708536433056,-2.0780768962576985,-1.6145210452377796,-1.2601141855120659,-2.1342104435898364,-1.8062603236176074,-2.0109438127838075,-1.913002211600542,-1.1611842885613441,-0.728124569170177,-0.9913564124144614,0.005865004844963551,-0.3513251072727144,-0.46561401803046465,-1.1396284555085003,-1.7500088615342975,-0.9674633499234915,-1.5870036887936294,-1.4576346054673195,-1.2160797156393528,-0.26717083947733045,0.13999524526298046,-0.5522769666276872,-0.9827700173482299,-0.1060497066937387,0.6519046667963266,1.4384121680632234,1.8802143572829664,1.397563618607819,0.5479104435071349,-0.4066529837436974,-1.2133621452376246,-1.63308458449319,-0.925743960775435,-0.6107501201331615,-0.3926861030049622,-0.027205464895814657,0.7224048697389662,0.3168316404335201,0.45891822688281536,0.23176382575184107,1.1614777618087828,0.33608782244846225,-0.19381918851286173,0.1832319563254714,0.4630527291446924,0.9676030790433288,0.12574862828478217,0.22424178710207343,0.2517076530493796,-0.2616797387599945,0.0008423011749982834,0.5082427840679884,0.4503401876427233,0.42205389542505145,0.9470210010185838,1.8188643530011177,1.5581904677674174,1.7378736874088645,1.1525828707963228,1.2804828099906445,0.8466145321726799,0.25932198436930776,0.28552966890856624,0.6041221376508474,0.046346746385097504,-0.2151388293132186,-0.43403987120836973,-1.2939054197631776,-1.2268627360463142,-0.613430212251842,-0.3175144656561315,0.5650307778269053,0.49756041914224625,1.360539535060525,2.270718322135508,1.4520778306759894,1.7627767007797956,1.4280554591678083,1.2719632340595126,1.1894090687856078,1.6142553687095642,2.3951019840314984,2.4921599654480815,2.8934459630399942,3.0628844262100756,3.534515465144068,3.648939455393702,2.729455040767789,1.776733664330095,0.9989450611174107,0.2886543986387551,-0.3540187864564359,-0.2741452846676111,0.6218578391708434,1.4700991385616362,1.9887089468538761,2.050759544596076,2.659121427219361,2.5319961276836693,1.6409192774444818,1.2556203622370958,1.001253034453839,0.8905686368234456,1.7894644709303975,2.156139424536377,2.4137404300272465,3.2587596918456256,3.9117159717716277,4.385252234525979,4.49128932505846,4.75946536147967,3.771192173473537,4.348715656902641,3.6530634104274213,3.940477231051773,3.3267798139713705,4.01240203063935,4.116396002471447,3.3680344503372908,3.695170471444726,4.546644423622638,5.125873961020261,4.7620345782488585,4.843809579499066,5.051583535503596,5.611074397340417,6.430581477470696,6.065776773262769,6.621775866486132,7.218633708078414,6.994444715324789,6.715493632946163,6.072289213072509,6.9184300932101905,7.219895544461906,7.624160960782319,7.034163297154009,7.812961562536657,8.511662229895592,8.721880840137601,7.826461597345769,7.56845254637301,7.926469235680997,7.854805720504373,7.458325826562941,6.733051256742328,7.581798173487186,8.369640126824379,9.124219356570393,9.711842739023268,10.381127087865025,9.93615062488243,10.469798469915986,9.487347594927996,9.18352723075077,9.040517659392208,8.844741270877421,8.743957937229425,8.945086549967527,8.611209723167121,8.322421520482749,8.923530803993344,9.267528729978949,10.118574848864228,10.677490105386823,10.223742872942239,9.586024310439825,8.626450179610401,7.851147977635264,8.437642290256917,8.25085515063256,7.715949965175241,8.223124980460852,7.94552214955911,8.148627778980881,7.936845598742366,7.963722915854305,7.137430862523615,8.051732955966145,7.166031693574041,7.343085478525609,8.269530909601599,8.352218846324831,8.45892399456352,7.539953649509698,7.347225515637547,8.24283318175003,7.885535130742937,8.352538973558694,8.856051543261856,9.708221716340631,9.093003981746733,9.576432882808149,9.493254631757736,10.086537251714617,9.855124725960195,9.037770678289235,9.264413313940167,10.232402632944286,11.111463720910251,10.432423472870141,10.269587766379118,9.563766738399863,9.763191270176321,8.99744544364512,9.676533239893615,10.516491611022502,9.779442913364619,9.60770922433585,9.106264852453023,8.507011706009507,8.138149483129382,7.653278946876526,8.365381920244545,8.536842219997197,9.32110162684694,10.015462205279619,9.591002128086984,10.146751714404672,9.240725477226079,8.318096286151558,7.946848863735795,8.724855799227953,9.639243551064283,10.13206886081025,9.879323543515056,9.499610179103911,9.162097372114658,9.827275089919567,9.440246555488557,9.312374501489103,9.340235320385545,10.310624098870903,9.464546227362007,9.657215917482972,10.580630730837584,10.211300509981811,9.581512115895748,9.228045218158513,9.345049360767007,9.358721621800214,9.525092238094658,9.839072824455798,10.547103750519454,9.763442551717162,10.595073596574366,11.27846125466749,11.315768402535468,11.722408387809992,11.152290582191199,12.151093770749867,12.04944647056982,12.259574279654771,12.952972686383873,11.979312890209258,12.903039915021509,13.125654771458358,13.116688861045986,13.431888546328992,13.780916260555387,13.360328536946326,13.614571254234761,13.201519640162587,13.661061115562916,12.662626590579748,13.489852552767843,12.617296745534986,12.958841113373637,12.48385310638696,11.813856214750558,10.896243698894978,11.842840502038598,12.447839682921767,12.290592522360384,11.573737167287618,12.134113545529544,12.920332255307585,13.064622301608324,12.69063206249848,11.810418605338782,12.496246906928718,12.67328558024019,11.717726523522288,10.872210841160268,10.79267857503146,10.684382978826761,11.427446798887104,12.054933231323957,12.737320957239717,13.076874317135662,13.436079227365553,13.694132426287979,14.244482691399753,14.409149241633713,14.542291187681258,15.444899240508676,16.40835520159453,16.311290884390473,17.03733693715185,17.64905615290627,17.308054597117007,18.136009332258254,17.719417944550514,16.77754152007401,15.931938984896988,16.68013616790995,17.456863042432815,16.626380235888064,16.686212975531816,16.472208491992205,17.049661146011204,16.233609623275697,16.286271772813052,16.635570402257144,17.311757343821228,17.548030496109277,17.19549849163741,16.19735118933022,16.643486406188458,16.94410329591483,16.00635957485065,16.8533055963926,17.492017147131264,16.99105248786509,17.199042938649654,17.201444112230092,17.24637118866667,17.634313221555203,17.108837177976966,16.285085341427475,16.959147861227393,16.6934229102917,17.136102019343525,16.930893807206303,17.466980073601007,17.517685605213046,17.937075725290924,18.91323500778526,19.017286768183112,20.007469781674445,19.33073589298874,18.818254786543548,19.33447352796793,19.783414424862713,19.867473986931145,19.810177713166922,19.286744667682797,19.959205106366426,19.211225440725684,18.334483648650348,18.896492815576494,19.41415909770876,20.080272083170712,19.86936187092215,20.054175563622266,20.597548339515924,20.039814174640924,19.257024526130408,19.095299788750708,19.321105409879237,18.56357932370156,19.499072907026857,19.191662949044257,20.174503276590258,20.36950704548508,19.987455105409026,19.776470464654267,19.987075539305806,20.7392720002681,19.974027657415718,19.397138847969472,18.679470653180033,19.334258120972663,20.025148490909487,19.159750991966575,18.92935703508556,19.77942933747545,19.89862340502441,20.867963598575443,20.19796416349709,20.999303605873138,20.724659404717386,21.00731142796576,20.74233405292034,20.719923394732177,19.851141626480967,20.45992088643834,21.338997231330723,20.437715316656977,19.870874606072903,20.177902601659298,21.144742770586163,21.506090091075748,21.816378166433424,21.924654342234135,21.15930149750784,20.89178689289838,21.651530916802585,20.735318418126553,20.907188260462135,21.61592625407502,21.387685418128967,20.768350776750594,20.010085006710142,20.012231132015586,20.18078352836892,20.506621786858886,21.174500507768244,20.998463203199208,20.91303018387407,21.030303800478578,20.40042638592422,20.945066585671157,21.07728815684095,21.61075390642509,21.740505814086646,22.00723106134683,21.905077510047704,22.283583504147828,22.056356141809374,21.668299010023475,21.864728780929,22.76050654007122,21.988740557804704,22.49909276003018,21.536304152105004,22.517782841809094,22.022053838241845,22.29274736251682,23.191204091068357,23.93618369754404,23.640231564641,23.35705033969134,23.99052814953029,23.91181023651734,24.032902770210057,23.494109853636473,23.926844810601324,24.403122609946877,24.45045676873997,24.27890409855172,23.71188337728381,23.744838091079146,23.221886347047985,23.934185482095927,23.987801413051784,23.057144611608237,23.563089779112488,24.233017687685788,24.587987387087196,24.508711060043424,24.227228028699756,24.842791857663542,25.673519707284868,26.612046657130122,26.210895765107125,26.20203724084422,26.336209908127785,26.876043471042067,27.620000836905092,28.236696595326066,29.18749977229163,28.59483431559056,29.07086725672707,28.606904827058315,28.576555266045034,29.438976215198636,30.140416521579027,29.89307298604399,28.907354205846786,28.35807058075443,28.544396372977644,27.970454202964902,27.83094317279756,27.556774655357003,27.281296314205974,27.395936095621437,28.047780889552087,28.794828165788203,29.706845226697624,29.127292630262673,28.892201059963554,28.599855000153184,28.107858154922724,28.238312986213714,27.602331643924117,27.38267596345395,28.30886501306668,28.57485363120213,29.09831418702379,29.385287183802575,30.09173470037058,30.316298975609243,30.6804402875714,30.654458285775036,31.423333800863475,31.769686667248607,32.46754339011386,32.61022354569286,31.900414237752557,31.703059315215796,30.765136379748583,30.41863455530256,30.173599768895656,30.540363043081015,30.146473481785506,30.896942276507616,30.014988887123764,30.829025785438716,31.231014512944967,31.064912433270365,30.79719194676727,30.04262606287375,29.13201598962769,28.852322613820434,29.28452965989709,29.85352107649669,28.978385800495744,28.404792905785143,29.05945775983855,29.48086848296225,30.440812583081424,29.83045844361186,28.87492931075394,28.56762569071725,29.317945613525808,30.21987490588799,30.884644037578255,31.252266297116876,31.60777968587354,32.600862683262676,33.383310311473906,34.11411337228492,33.3197591137141,32.906885851640254,32.69579902244732,31.853894234169275,32.3741155564785,31.67031630128622,31.626997323241085,31.156404269393533,30.970389324240386,30.18884475203231,29.606665431521833,29.771432754117996,30.41423756768927,29.414850078057498,29.634804219007492,29.63118043076247,29.151259267237037,28.96090385131538,29.06719846976921,29.24852885119617,29.368094256147742,28.85812774905935,28.74058623611927,28.211343619972467,27.90871075587347,28.196704672649503,28.237454402260482,27.87631547311321,28.36372601892799,27.395723905880004,27.51534085161984,27.475630490574986,27.82345384079963,27.049232968129218,26.186493513640016,26.867862597107887,27.47354713920504,27.432097744196653,27.311501508578658,26.538193272892386,26.529050728306174,26.525376599747688,25.849735278170556,25.3427765481174,25.486979018896818,26.341062667313963,26.423974143341184,26.580809292849153,26.729547605849802,26.601611467078328,26.653050187509507,26.796057224739343,25.9107798053883,25.239010808523744,25.463158167898655,26.074456891976297,26.56219311384484,26.208416651468724,26.803505457006395,26.269573198631406,26.28540569031611,25.664952157530934,25.917255374602973,25.751107453368604,26.61257722740993,27.16483756620437,27.502439184114337,28.299315182026476,27.579195491503924,27.720329293515533,28.256849881261587,27.904071545694023,26.99309863243252,26.899468111339957,26.848288702778518,27.475966361816972,27.05516956280917,26.99498830549419,26.437475631013513,26.638351718429476,27.016414240002632,26.666529102250934,26.819354763720185,26.10081571014598,25.999256725423038,25.380353540182114,25.233525208197534,24.24478583643213,24.490565575659275,25.351296172011644,26.14523348584771,26.822170032188296,27.353327383752912,26.359910405240953,26.939421439077705,26.31788443820551,26.202216641046107,27.17512120725587,26.58698239037767,26.484267289284617,26.715962541289628,26.913125354796648,27.58333689207211,27.483457724563777,27.380549785215408,27.719477669801563,27.454946303274482,26.73185036657378,26.335126497317106,26.51807415066287,26.57911991653964,26.637631298508495,26.067658892367035,25.658281726762652,25.552331652492285,26.082376729231328,26.75306922895834,27.220496359281242,27.1894642226398,28.034937956836075,28.860744276549667,29.766979054547846,30.665886951610446,30.156674857251346,29.38303793594241,29.524048290681094,30.36208580620587,30.794310938101262,30.96056549064815,31.140581914689392,30.932573575992137,30.35638841567561,30.297529843170196,30.054558848496526,29.989482634235173,29.022842158563435,29.96850088611245,29.095192729961127,29.562197574879974,30.21328892512247,29.86986028868705,29.628451889846474,30.59735722793266,30.767966367769986,30.53316894173622,30.65294334711507,30.119639435317367,30.401023649144918,29.604592712130398,29.868121210485697,30.73244158597663,31.221869479864836,30.61068961629644,31.02445960883051,31.885327633935958,32.73142925044522,32.173598213121295,31.729334856849164,31.9240103517659,32.755083811469376,33.13998467940837,33.913413672707975,34.37937674438581,34.619005450513214,34.248264805879444,34.20799981337041,35.0823839912191,35.058079711627215,35.597747864667326,35.03516968898475,35.65521317627281,36.57518195360899,37.213086349423975,37.025236282963306,37.168401828967035,37.031353934668005,36.69623494707048,37.503811402246356,37.97548511158675,38.051176509819925,37.67265947489068,38.115052098874,38.233785931486636,38.2886405182071,38.831763301976025,37.93489978834987,37.28951032226905,36.98870256729424,37.09614068036899,37.60473786527291,37.3972948724404,37.557459224015474,37.71662935614586,37.11326041677967,37.74272163910791,37.35972030600533,37.073939501307905,38.02530619036406,37.07955957110971,36.80776123376563,37.09195486269891,36.25571554899216,36.06901649013162,35.84730338584632,36.564311862923205,36.37141450634226,35.98349574767053,34.99740966362879,35.51166461361572,36.078345716930926,36.585108454339206,36.98852134309709,37.14309185743332,36.986601499374956,37.63842073502019,38.38053916255012,39.19396781735122,39.41820030240342,39.70844627311453,40.58245506789535,40.35174968885258,41.327842597384006,41.61337893316522,42.15228328760713,42.21070122299716,42.29968480579555,42.742119608446956,42.41211055079475,42.75371522596106,43.712029188871384,43.83101181918755,43.552699823863804,43.29219297505915,43.90095800394192,43.03006854187697,43.16091984556988,43.520690185483545,43.13871285691857,43.61914291791618,43.65342492191121,42.81060601724312,43.22049661166966,42.95734980981797,43.883059590589255,44.610857067629695,44.79438442736864,44.76061729295179,43.93327421369031,43.40691068768501,43.06649939995259,42.44871989591047,41.84245017590001,41.7474168734625,41.188289208803326,41.029642971698195,40.50537302484736,40.905605994164944,40.094569409731776,40.01520704803988,39.54749710485339,39.75600926671177,40.363892619498074,39.86775667592883,39.32440871279687,39.33695769542828,38.62817994737998,39.60079091787338,39.621084751561284,38.98041617264971,39.235178801231086,40.20245720120147,40.09216745197773,40.10625424422324,41.08672893978655,41.06323732389137,40.31140603963286,39.928333739284426,39.91834983229637,40.25732892844826,39.648804772645235,40.577762202359736,39.88495171489194,40.84113947022706,41.56577902752906,41.12391303433105,40.97941474756226,41.5561216911301,41.66405751928687,41.80659913085401,42.678271376527846,42.056724234484136,42.55256362911314,42.864939890336245,43.40800417447463,43.61704291077331,42.630406884942204,42.16745649697259,41.39373582508415,42.15078089479357,41.66839336557314,40.815927031915635,41.709862186573446,42.094518951140344,42.572905994951725,43.15461097238585,42.26317804912105,41.54291833238676,40.82478644186631,41.62773127760738,42.62386083975434,41.8227346111089,41.84198593022302,41.82921589259058,41.74482353357598,42.680348149035126,43.450502487365156,42.666043038945645,43.22292588092387,43.857701173983514,43.98348449030891,44.07086824160069,44.03850127896294,43.33459933521226,42.8915553772822,42.18404806172475,42.27660228963941,42.45869051851332,42.419296827632934,42.127616848330945,42.43839328875765,42.37940937746316,41.41992378933355,42.00706559419632,42.6891997451894,42.20106019685045,41.39201663900167,40.4678416447714,39.883225195109844,39.11867079883814,38.41992258653045,39.28925282182172,39.28361549647525,39.201648170594126,39.196848711464554,39.302069758065045,39.227991580963135,39.785738233011216,39.94411643547937,39.856417695991695,39.654028644319624,39.83899256493896,39.15450072940439,38.836379065178335,39.04625743534416,39.254959638696164,39.11779505526647,38.88305688695982,39.639260437339544,38.7926149549894,38.90662883128971,39.431596839334816,38.91615576995537,39.719614756293595,39.73334066197276,39.31079395348206,38.33345971163362,38.539737646467984,39.28041506698355,39.0382957207039,38.717345520853996,38.43157400470227,38.11829177336767,37.88857559347525,38.1022536624223,38.04112050170079,38.43986666901037,37.77964125433937,38.67685392219573,39.09017428010702,38.52853959519416,39.470108825247735,39.95128168631345,39.846694559790194,40.0973189403303,39.24041590280831,40.06028949515894,40.055112628266215,39.35518600186333,38.846498833969235,38.61330067180097,38.36792750842869,38.53074490837753,37.65748120844364,38.099723322782665,38.41948479320854,39.38320727692917,40.295145839918405,40.69486569613218,41.2328923093155,42.196377641521394,42.9417779892683,43.342380731832236,44.28187516471371,43.59111943654716,43.584823954850435,44.45252297678962,45.23442881414667,46.070262470748276,46.68109693704173,45.896552512887865,45.60056613618508,44.638632701244205,45.27332974039018,44.320243218913674,45.17484207311645,45.80308224167675,46.470740232151,46.41591149196029,46.37921851873398,46.88628364820033,47.752633734140545,47.816645334940404,48.41860569734126,48.060446050949395,48.27886676089838,48.544672176707536,49.47241435665637,50.35819587018341,50.03698883485049,49.7650367859751,50.31838949723169,49.58962396904826,50.3901372035034,50.72968754218891,51.09199735475704,51.163183918688446,51.265406475402415,50.3949258220382,50.54985734121874,50.53709968086332,51.38862448465079,52.25005346117541,52.462032625451684,52.557439216878265,53.454132080543786,53.43265740899369,52.69502290384844,52.31312405271456,52.42288886010647,51.94583065062761,52.18830738775432,51.27297855960205,51.057655576150864,51.57627053838223,52.56540596392006,53.4676962280646,52.86826678737998,52.41338370461017,52.89413872733712,52.42068146727979,52.317289772909135,52.50209880806506,52.067719703074545,52.71582815796137,53.50331492861733,53.32232881290838,53.08016268722713,52.56728437310085,53.39830980822444,54.192663953173906,54.67805221443996,54.44051943672821,53.507979235611856,52.61628346145153,53.01014524558559,52.74027013685554,51.80775157175958,52.52640120172873,52.43599568028003,52.24913784302771,51.595542434137315,52.14966219989583,51.59676853241399,51.853016996290535,52.04915093816817,51.76792589155957,51.622852231841534,50.772943798452616,50.519627718254924,51.314532939810306,50.454945570323616,51.17969860043377,50.84430502774194,50.954833338502795,51.68022888340056,51.92717872839421,52.45081825973466,53.018281378317624,53.76066194334999,53.19587400648743,53.783139860257506,54.4697075644508,54.46045966632664,53.65186177846044,54.52558582555503,53.6234564660117,53.839512448292226,53.689904254861176,53.86225595232099,54.662447973154485,53.75944256875664,54.07952560624108,53.21997367637232,52.38046739110723,51.821464468725026,51.36599447391927,51.144567555282265,51.99026841390878,51.587419180665165,51.75677315611392,50.80600185226649,51.340478899888694,51.1249548853375,50.93367952853441,51.20343079790473,51.040787724778056,51.66460411576554,52.55037499405444,52.710360523313284,52.36141751566902,52.0084282560274,52.821304134093225,52.450307353399694,52.30130396410823,52.97904265858233,53.16607801569626,52.22941107302904,52.453905276954174,52.261424167081714,51.87005953816697,52.50566748389974,53.06896367575973,52.509461644571275,52.242655707057565,52.92327665956691,52.18879340728745,52.26838675700128,52.70597998192534,52.03037671511993,51.98903570557013,51.19863371504471,51.32137104868889,51.45909192273393,51.045783622190356,50.69819911522791,49.70153394155204,50.13075380027294,49.805089607834816,50.453571745194495,50.393538056407124,50.674281721003354,50.71067866683006,51.22902488382533,50.33019434846938,49.602375365328044,49.540674414951354,48.779724730644375,49.2451852443628,48.57992344908416,48.93380557000637,47.93990693194792,47.481697083450854,47.24637287389487,47.2117096753791,48.09933135798201,48.37454867269844,47.42926307860762,47.60174844088033,47.963079664856195,47.76750582968816,48.14744149846956,48.73681872105226,48.71025254344568,49.46670832950622,50.438173523172736,49.82420519320294,49.481616493314505,49.45637293579057,50.28604747494683,50.55060230754316,50.03126950748265,50.51250631548464,50.82747491449118,51.63979823421687,51.425490013789386,52.01791230170056,51.97965662088245,51.61316858557984,51.72330610034987,51.16262983949855,50.30478689400479,49.51654367195442,48.59007625980303,47.990054284222424,47.96301898639649,47.539797303732485,48.02283894456923,47.065202538855374,47.6042441399768,46.7265833998099,45.86836386239156,46.76868304796517,46.44109382806346,47.11745540704578,47.54691640427336,46.643829487264156,46.9567089183256,46.87621363205835,46.138600806705654,46.321155032143,46.17823436437175,46.70064998837188,46.907951675821096,46.368012639228255,47.244615495204926,46.50471276137978,47.263090923428535,47.21973761310801,47.03628858458251,47.44225197006017,46.67261580284685,47.26489764172584,48.12621738575399,47.372475628741086,46.37512197392061,45.46346709411591,44.97481927089393,44.400883006397635,43.96251101931557,44.300007588695735,43.82483440777287,43.934139092452824,44.757432216312736,45.64689028915018,45.40650811092928,46.029233942739666,45.039377245120704,44.28160049254075,44.093475591391325,44.51440918026492,43.78496142383665,44.3220460829325,43.341217909008265,43.23756474070251,42.251021115109324,41.962606847751886,41.47520100325346,40.51222565257922,40.459637586027384,40.437751785852015,40.298970135860145,39.5087521946989,40.130962473805994,40.27788811502978,39.40181181812659,39.04425529809669,39.90702389692888,39.438233780208975,40.33149952581152,41.217519871424884,41.52368838246912,42.11132914433256,42.87478425912559,42.57021007081494,42.246448850724846,41.58567079110071,41.396955587435514,41.823553677648306,41.36111436923966,40.94093359122053,41.44512509414926,41.5829591518268,42.56703264405951,42.6388686443679,42.749083346221596,42.22926600277424,41.6617543711327,42.2932548657991,42.39355087140575,43.26852440042421,44.20371789112687,44.99270307458937,44.26073870668188,44.116472081281245,44.108273984864354,45.0659812274389,45.06064077001065,44.725797238294035,45.138108864892274,45.82420997554436,45.22253392357379,44.260838254820555,43.98656047601253,43.14634114317596,43.55029215523973,43.484272236935794,43.198406965471804,42.55000217817724,42.4556938437745,42.68652450758964,43.62098856177181,43.218226473312825,43.55694117303938,44.551976243034005,43.756750190164894,43.69735962431878,44.49855218594894,45.103597627487034,44.752806265838444,44.32711540535092,44.704643103294075,44.495985344052315,44.42578639136627,44.59866176173091,43.60777006112039,42.98816787311807,42.22128852410242,42.83652832079679,43.00760244484991,43.30681223561987,43.90599945746362,44.33375081745908,44.567734121810645,44.01579001452774,43.222600006032735,43.4719355981797,44.07843238674104,44.14506949298084,43.16373939439654,43.42423455324024,43.298837390728295,43.32449260400608,42.69609977398068,42.85587370255962,43.73578929807991,43.81316951010376,43.87203026562929,44.02612284431234,43.89200298720971,43.98114041890949,43.8904356895946,43.399047455750406,43.64290182385594,43.75233736867085,43.22344343364239,43.156024363823235,43.57042986853048,42.84830068005249,43.275982200633734,42.37362447846681,41.74590406101197,41.495901154819876,40.820745434612036,40.87447911547497,39.95149901509285,40.71460440987721,40.97514053341001,40.989805257413536,41.83927890844643,41.17023313930258,40.445727886166424,39.82953509548679,39.84497209917754,39.857803844846785,40.52394345123321,40.25616743275896,40.66485941503197,40.58234961470589,40.42059204308316,41.08476962009445,41.23617045767605,41.495828591287136,41.162553353235126,41.62484544562176,40.9437758019194,41.30026562837884,41.88179043587297,42.146371878217906,41.59077800437808,42.27999691525474,41.617957272101194,41.01972759189084,40.94927480025217,41.71232658578083,40.9939633612521,40.958625263534486,41.62550467485562,40.80641688965261,40.23102896846831,40.71243664715439,40.01357237249613,39.01644886517897,39.93625010596588,40.67173561267555,40.45088918879628,40.16851419210434,39.959007791709155,40.10444443626329,41.064499345608056,41.622007058002055,41.40487831644714,40.94254709221423,41.91679356666282,42.153219947591424,41.589757345151156,41.43002406368032,41.88243091991171,42.58028366556391,41.78500135615468,41.35514407791197,41.85787428217009,41.73199685802683,40.77694024564698,40.74679531669244,40.014780793804675,40.74417727487162,41.68401106260717,41.53723252611235,41.52342736022547,42.37482621381059,41.45674229133874,40.999527947511524,41.18416000762954,41.99628767510876,42.55907329497859,43.41055178409442,44.32252129353583,44.1167254508473,43.19695091387257,42.74898301810026,42.229882271494716,42.07978911418468,41.38070885511115,41.10249295644462,41.48813545051962,40.92692033294588,41.91107458854094,42.271237563341856,41.578110145404935,40.60031097056344,39.879153026267886,40.87210663873702,41.15582505427301,40.71445898106322,40.78228961629793,40.29270897153765,41.28633521683514,41.04945349972695,41.095569969620556,40.283267467748374,39.98429476702586,40.7444103336893,39.840913648717105,40.26018816884607,40.296429477632046,39.807198808994144,39.61701879929751,40.14496182417497,39.7110484787263,39.948836151044816,39.18611927609891,40.117415125947446,39.664454453159124,39.51369104254991,38.78362937923521,38.51831457298249,37.59736166521907,37.70404745824635,37.27983807353303,36.394378857221454,36.63601425150409,37.1406210726127,36.49146941397339,36.542082003783435,36.57602356700227,37.12643334502354,36.7537434711121,35.81368712009862,36.66678724857047,36.50008535385132,36.958256476093084,37.705576214473695,37.298554349225014,38.17990099219605,38.942803006153554,38.87755131814629,38.666083300020546,38.08944673277438,38.028728840406984,37.856535661034286,38.834255936555564,38.10336562432349,37.915311987511814,37.51947612455115,37.064352579880506,37.820287292823195,37.464175215922296,38.1053212126717,37.24778990773484,36.581570205744356,35.92454366525635,36.53457816597074,36.3269995120354,36.54287130292505,37.28200776036829,37.38463066890836,37.78882302995771,38.038536850363016,37.25452351709828,37.012714055832475,36.639016828965396,37.16951327258721,36.676469401456416,35.899427980184555,36.29277270426974,35.55413248902187,35.700107044074684,34.744798610918224,34.08057382842526,33.09970942605287,34.09669880056754,34.88792958436534,34.66530718328431,33.69717067014426,33.98602242907509,33.11569007812068,32.55546896206215,32.56228393455967,32.24297887971625,32.007510813418776,32.75762003939599,32.801264461595565,33.19566393783316,33.10879010381177,33.151774464175105,33.49187932908535,34.25830076728016,34.22367234667763,33.81333308201283,34.75283736130223,34.888089071493596,35.179165969602764,35.454148770775646,34.86783779831603,34.81562562845647,34.399477689992636,35.1301150880754,34.81921176193282,34.138023246545345,33.869989164639264,33.63573252223432,33.84539778716862,34.07725890772417,33.913329259026796,33.479649781715125,33.00966075761244,33.97380900941789,34.27602444589138,34.00003966316581,33.32243033358827,32.845215746201575,33.47263023490086,34.103488258086145,34.52553051430732,33.865066435653716,33.69171528099105,33.81536614429206,33.41352148912847,32.6331893177703,32.831273100338876,32.47227285802364,33.05312598310411,33.907897289376706,33.74176920950413,33.416585561819375,32.66473939595744,32.96780683286488,33.58635693183169,33.48566222982481,33.72072629723698,32.7781336591579,31.87206561351195,31.403707837685943,30.740733827929944,30.192264284472913,31.186494678258896,32.12348118331283,31.20980999059975,31.97134196339175,31.693544934038073,30.978531734552234,30.37071995390579,29.867860039696097,29.932320055551827,29.474932352546602,30.24634843552485,29.70796817354858,28.74091242533177,29.048722930718213,28.455075909849256,28.28423387836665,28.682705382350832,29.082832785323262,29.86707109445706,29.350942288525403,30.15554848825559,29.931899892631918,29.62202013330534,29.867327958811074,29.62308684596792,29.727773079648614,29.060958384070545,30.028408037964255,30.420119476038963,30.963614428881556,30.604456707369536,30.79009426664561,30.498576025478542,31.365253072232008,31.70945324189961,31.517940419726074,32.189305108971894,32.86124499049038,33.554527833126485,33.77801886713132,34.39780312264338,34.10776958987117,35.081541549414396,34.21161933243275,33.73527282429859,33.21587361488491,32.69948534667492,33.420476372819394,33.03499370580539,33.21204575849697,32.839320013299584,33.17502195481211,34.002641847822815,34.14017634326592,34.35915516456589,35.13127552671358,34.75740405032411,35.03265921166167,34.78070561727509,34.92786047561094,35.279242620803416,34.32765857409686,34.95961113413796,35.0653641927056,34.38701185910031,34.796400650404394,33.83357077091932,34.332219215575606,34.598728314973414,34.89265118306503,34.0365054635331,34.908464138396084,34.31646988121793,33.810934889130294,33.03710505599156,32.74147880496457,32.88073187926784,32.967555003706366,32.07593319006264,32.287219274789095,32.1926219263114,32.52381075685844,33.31942107900977,33.27303568366915,32.29397504962981,32.4158881213516,32.69615917606279,32.844057973474264,33.7720351703465,33.540837332606316,34.53512042155489,33.53763336315751,33.87341354135424,34.87253827042878,34.982048431411386,35.824715841095895,35.5175040429458,35.32931193290278,35.232833647634834,35.776212732773274,35.524380976799875,35.6396939791739,36.59385112859309,35.942777153104544,35.92950949864462,35.39409304596484,34.71619030414149,35.274275661911815,34.6493891235441,35.2993536433205,35.074078507721424,35.01870683627203,34.73126483988017,34.00829924410209,34.43694347841665,35.23388014687225,35.563828623853624,34.66921764565632,34.16123134829104,34.85332932136953,35.22873302269727,35.00764069985598,34.93480603257194,35.07989318203181,34.38980678236112,34.619024278596044,33.79886264912784,33.921840589959174,33.308988763950765,34.20261315302923,33.62067548604682,33.73784557590261,33.70818908885121,32.990924938581884,33.521055712364614,34.312662886921316,35.14859529025853,35.31003601429984,35.93008872726932,36.338077982887626,36.83962134132162,35.87671744916588,36.61229000147432,36.69071464706212,37.10075648827478,37.185389885213226,37.799134065397084,38.27663475414738,37.414277117699385,37.38599782483652,37.47941211704165,36.98377526178956,36.03040463477373,35.88254348747432,35.36060623312369,35.72452220041305,36.46842219447717,35.96691303374246,36.636909905355424,36.995577059686184,36.45110490452498,36.24907816853374,36.96818363433704,36.669947429560125,37.48180881049484,38.084416064899415,38.65734011353925,39.260437154211104,39.01795131294057,38.307046534027904,38.91919268714264,38.86322438903153,38.706430073827505,38.83856044523418,38.61457970086485,39.11514023737982,38.28378472616896,38.09238079376519,38.33511471003294,38.23020133282989,37.72750596050173,37.55568538047373,36.839751980733126,35.98598248325288,36.22908864216879,35.245042108464986,34.975317413918674,34.09055330744013,33.271480354014784,33.22315136762336,33.90484173595905,33.616154273506254,34.42217472847551,35.2861374639906,34.96988079417497,35.63129240041599,35.61494096694514,35.737899938132614,36.50080276466906,35.73053655587137,34.98918095231056,34.124028571881354,34.06394288642332,33.63410782488063,33.81366627570242,34.78246925910935,34.138506550807506,33.633904641028494,32.99358868505806,32.212155723012984,32.177377093583345,32.77113273879513,32.72193029522896,31.79265738464892,32.19996620854363,32.951870107557625,32.612046911846846,32.0569992181845,31.975250028073788,32.46163892233744,33.15550846513361,32.67189434822649,32.329367369413376,31.44769478403032,31.663151786662638,32.213194503448904,32.328794569242746,33.18940492346883,32.88106931373477,33.06827153498307,33.64168990822509,34.31084116501734,34.814273124560714,35.664099549409,35.657510998658836,35.22751769144088,35.67670508939773,35.40774335199967,35.23253995506093,34.66354239964858,34.375788962934166,34.59757238114253,34.577285785693675,35.01546934526414,35.70917298970744,35.45785682601854,35.95821722969413,35.24268187768757,34.33605576585978,34.135682891123,33.830144089180976,34.43974237097427,34.20490838540718,33.223120427224785,32.52825874835253,32.285031544510275,33.177440385799855,33.03023340087384,33.164695773273706,33.79838449321687,34.18201698968187,33.73103027464822,32.92905579134822,32.57680150354281,31.906453074887395,31.359823097940534,31.963732896838337,32.42783962143585,33.266410700045526,33.82320518558845,34.66480823326856,33.83881811751053,34.37272395566106,33.484670154284686,33.56960177142173,32.83866136521101,32.267483392730355,32.91121890489012,33.24339880840853,33.43338979315013,33.03518403787166,33.04876358900219,33.538676938042045,34.06087354850024,34.369409003295004,34.939373477362096,35.10545864794403,34.35059366514906,35.141590130049735,34.962180227041245,35.71911265095696,34.90733053628355,35.07602897658944,34.20651727449149,34.69431446911767,33.717844476457685,34.518149707466364,34.174529388546944,34.28047290770337,33.6245825313963,34.512786662671715,35.338825311977416,34.76391812413931,34.33792736707255,33.41150684747845,32.77171781845391,32.96235872525722,33.855891950428486,33.1085940124467,33.55935714952648,34.15259472839534,34.50804768828675,33.55970126576722,32.9777333191596,32.6601402759552,33.023996078874916,33.3519191890955,32.3791864044033,31.959362581837922,31.376747329719365,31.03815268864855,31.337857805658132,30.838213133625686,30.555761606432498,31.10605593305081,31.43085221713409,31.82286207843572,32.46000091964379,31.65452896943316,30.955508741084486,31.71291988249868,32.60108678275719,31.777666833717376,31.73864608677104,32.00640042638406,32.418997996952385,33.184547810815275,34.095922897104174,33.562474751845,33.09369484242052,33.023125717416406,32.71327758766711,32.58686466747895,32.95059843221679,33.306227582506835,34.293918209616095,34.94864650070667,35.40900215599686,36.37248494243249,35.551148168276995,34.992604919243604,34.28217602940276,33.55780939711258,33.87130217300728,33.5787445474416,32.97963276458904,33.22058265423402,33.534136394038796,34.308776361402124,35.25229542888701,34.35927408421412,34.25716258911416,34.680341398343444,33.924777233973145,34.62790383864194,35.458276766352355,35.85621870402247,35.99801731668413,36.649777341634035,37.41135499859229,36.59988730261102,37.555282443761826,38.30468456679955,39.199255847372115,39.878148695454,40.81936078192666,40.8580541475676,41.49735733354464,41.046186697203666,40.60081895813346,41.360578225925565,40.5084719825536,40.972618208732456,40.19286649953574,40.09391930419952,39.889478561934084,40.40774185676128,41.32803443260491,40.847662708722055,40.06143265403807,39.59952868381515,38.76872970769182,38.32004629075527,39.06598962564021,38.26712239347398,38.097283381503075,38.220853064674884,37.64879001257941,38.0656349780038,37.504251923877746,38.231885691173375,37.241471068933606,36.305338537320495,36.90463050547987,37.136496749706566,36.871904651168734,35.896879483014345,35.99324397696182,35.4914172347635,36.43194760335609,36.150838571600616,36.58490519504994,36.217593748122454,36.34993470972404,37.060709331184626,37.40628573903814,37.89227381814271,37.96336601162329,37.11335731856525,37.166567290667444,36.23882009694353,36.332984304986894,36.217949686571956,35.82184807257727,34.98141957866028,35.431591427884996,35.763379868585616,36.615667030680925,36.61189394677058,35.96126411808655,36.26754374569282,36.19491851888597,36.914637204725295,37.089911688584834,36.39491319935769,35.94680872000754,35.11782101588324,34.94309468194842,35.556881146505475,35.323723018635064,35.56511448090896,35.10366836935282,34.180472085718066,34.55410917149857,34.5994350137189,34.44167652260512,34.31872532563284,34.91304101282731,35.780133611522615,34.99956369865686,34.513752582948655,33.7939906003885,34.51707523362711,33.546769242268056,33.04995744302869,32.36371494224295,31.879439969547093,32.87605678429827,33.43874015659094,33.094001898076385,32.33401610190049,31.91053550830111,32.201913360040635,32.30794233689085,31.554700593464077,31.25736006582156,30.77883069217205,31.68887246446684,31.25998671585694,30.516993368044496,29.719274581875652,30.212760557886213,29.357567963190377,28.74441722407937,28.39433236559853,28.445391666609794,28.94080688105896,29.276871827896684,28.972934135701507,29.25452600978315,30.16431013168767,29.718655337113887,29.496596830897033,29.177398193627596,28.84713258361444,29.031769906170666,28.30722564086318,28.64408143842593,29.51309858681634,30.254025114700198,30.91822022711858,31.188853891566396,30.390649335458875,31.35919380793348,32.32116013113409,31.517062184866518,31.469504522159696,30.582986812572926,30.545054868794978,29.949784063268453,30.40473235445097,31.38492331467569,31.60110367415473,30.774266228079796,30.10358502296731,30.504719983786345,29.975888301152736,29.48195708403364,29.984170218463987,30.735248394776136,29.783984281122684,30.02299500675872,30.040736564435065,30.99132533557713,30.734626482706517,30.12646685540676,29.77686420502141,30.518629315774888,30.87870744848624,31.190770192537457,30.433225054759532,29.563960060011595,30.476891576312482,30.824140465818346,30.990840764250606,30.70094122318551,31.275571886915714,31.82961307745427,32.45511099183932,32.19319639867172,31.98185348138213,32.41716085700318,32.54696895740926,31.918060231022537,31.684916945174336,32.07667967164889,31.990002426318824,32.89452802808955,33.14988753758371,33.687469489872456,33.62194807268679,34.26418315852061,34.332262019626796,34.25521612446755,33.975611806381494,34.62266994500533,34.01433459110558,33.629518813919276,33.300963127054274,33.14065473014489,33.41461917664856,32.577999397180974,32.99430834548548,32.53117725532502,32.89851317089051,33.76550365798175,33.988752668723464,34.46691962052137,33.488804975990206,33.607862275559455,32.83088215254247,32.57752640033141,33.47969908174127,34.21619868185371,34.03184932656586,34.09750823723152,34.4028171566315,34.760274574160576,34.69570421008393,34.99449659511447,34.680418813135475,34.666663395706564,35.24570748070255,36.14654772961512,35.663312351796776,35.94543616194278,35.932390491012484,35.69254910387099,36.600207317154855,36.70109152654186,37.34905603667721,37.17965676635504,37.415247751865536,38.254966251086444,38.98445069277659,39.09611670533195,39.12454142747447,40.01306534698233,40.95567372115329,40.69171489728615,41.57637202553451,40.92083646217361,39.983241942711174,40.47340278793126,39.81558144977316,38.85417486075312,38.29473678767681,38.048958542756736,39.002051286865026,39.12944626202807,38.409433639608324,38.28265906404704,37.683090227190405,38.567243865225464,37.84870640747249,37.80158478394151,38.47951524844393,38.05415674392134,37.661554616410285,36.72988836467266,36.49212178075686,37.13203199394047,37.867596469353884,37.19117694860324,36.83865484595299,36.174087112769485,35.31944584380835,35.34871945017949,35.19157303171232,34.34763822378591,34.91473551094532,34.541584324557334,35.281270291190594,36.00972089357674,35.89059933135286,35.86000500572845,34.86419704090804,34.89772981638089,35.12870187358931,35.802553601097316,35.20458919694647,35.99165217904374,35.13683909131214,34.64790427405387,35.24402098823339,34.262998605147004,33.92363198194653,33.05824392661452,32.53420513821766,32.442682137247175,32.67212575068697,33.02161784749478,33.946772028226405,33.75689069367945,32.80420895945281,32.722999840043485,31.805320066865534,31.09507615119219,31.656516834162176,32.58635511063039,33.398873541504145,32.51033387100324,33.11625895649195,33.31444926653057,33.85817403998226,34.14060573466122,34.65298908576369,33.787375735118985,34.06242518033832,34.55743605270982,34.49652299052104,35.07696679420769,34.87348945857957,33.98775758733973,34.386150987353176,34.39293346274644,34.11071548704058,34.58155011339113,34.53631389839575,34.77807811368257,34.19006516924128,33.5455320160836,32.55130352731794,33.409093242604285,33.14656984806061,34.09179756231606,33.85017224447802,34.607926541008055,34.085437442641705,33.17800007108599,33.94700425863266,33.27128758840263,33.20174521859735,33.33560806885362,32.60157969919965,32.86195154907182,32.90387811604887,33.87658269004896,34.266840062104166,35.027715272735804,34.18405362498015,34.62270746193826,35.59049406927079,35.03770421957597,34.33948994707316,34.431897123809904,34.50406203465536,34.67424451839179,35.56892999494448,36.46607063058764,36.836833633482456,36.26925453869626,36.85198154626414,36.0353779499419,36.654039059299976,36.90514743234962,37.44044080469757,36.72254185983911,36.96135461097583,37.11203344585374,36.16519385250285,35.16564159374684,34.50952000496909,34.308633618522435,34.06742326775566,33.331218622624874,32.82758432161063,32.01424825657159,32.21685475669801,33.138458208180964,32.32534033898264,33.018182206433266,32.11053674528375,32.07829725695774,31.655815424397588,32.50819071009755,32.58743756636977,33.3485316298902,34.34480110602453,34.97461375314742,34.73354042461142,34.55567660415545,33.84198577608913,33.080530596431345,32.092758829239756,31.28858803305775,30.382265425287187,30.37448216462508,29.612309879623353,30.41660920716822,31.347918729297817,31.095701677259058,30.2344891121611,30.24897654214874,29.920803067740053,29.248978707473725,28.935731410514563,29.16812653001398,28.666201781481504,28.335001707077026,28.852317701559514,28.45666162483394,28.345010112039745,28.701733904425055,29.027011965867132,28.15650449320674,28.724119045305997,27.884678369387984,27.71720548160374,26.83568520564586,27.290252179373056,26.64588501676917,26.238913102075458,25.752857038751245,25.149503539316356,24.551110967528075,24.95012809149921,25.70533571066335,25.955506486352533,25.278015799820423,25.138926854357123,24.723968054633588,23.962418535724282,23.997741859871894,23.227561651263386,23.67331744171679,23.11808084184304,23.86295135645196,23.089884886983782,22.14916329132393,21.373791145626456,20.807186347898096,20.864992645103484,20.745194353163242,21.426513179205358,20.744898398406804,20.142255428247154,21.135614064056426,21.43165717367083,20.635903852060437,20.44291439652443,20.197768254205585,21.055971567053348,21.27652199473232,20.567983001470566,19.888917771168053,19.906234048306942,20.430404223967344,20.556223385967314,20.249480677768588,20.035361094400287,21.008361361920834,21.6760686757043,22.589345424436033,23.48935490520671,23.19895120849833,23.74066476058215,23.966727442108095,23.293156046420336,23.657910453621298,23.235359776765108,23.51786440052092,23.297437930945307,23.350131381303072,22.405108702369034,22.029143166728318,21.70634230505675,21.017801066860557,20.091380226891488,19.77361033251509,20.7491198903881,21.129201270639896,21.134765390772372,21.28487055003643,21.34845574107021,20.446483582258224,20.539706856943667,19.80476493993774,19.17111194273457,18.462186958640814,17.543270997703075,17.567136980127543,18.379105501342565,17.754705180879682,17.34682397497818,17.211741659790277,16.687534160446376,17.569900481030345,18.432470586150885,17.938371391501278,17.455342847388238,16.684250056743622,17.383378663565964,17.6870717802085,16.920511341653764,17.089316927827895,18.05887395888567,18.778975437860936,19.4323136433959,19.740799861960113,19.915763209573925,19.976933137513697,20.59788051666692,21.184283242095262,21.85048750322312,21.664374550338835,21.871726419311017,21.9133683280088,21.40821947157383,21.76905876258388,20.787781409919262,21.630443499889225,21.21852772589773,22.151392017491162,21.564973167143762,21.079640419688076,21.68613033881411,21.495661950670183,20.950695160310715,21.212438815739006,21.237575804814696,21.876482358202338,22.212985711637884,21.318834028672427,21.5515806642361,22.28225588798523,22.515959438402206,23.33978378213942,24.222042746376246,23.795568428002298,23.4709188118577,23.387479533907026,23.72551052365452,23.693293652497232,23.381107761058956,24.24355977633968,25.004808421246707,25.17882158840075,24.50269466312602,25.137510573025793,24.26831535389647,24.91161399241537,25.24849407374859,25.45252389041707,25.646054732147604,25.972152676433325,26.90473550138995,26.094366465695202,26.071732820942998,25.940021546557546,25.319835489150137,26.03779627662152,26.74520019395277,27.730471298564225,28.216154966969043,28.438881994225085,27.681036178953946,27.85349951358512,26.876204712782055,26.38089535618201,26.112292787991464,25.87976063741371,26.302581856027246,26.872284354642034,27.247082963585854,26.320814305450767,26.3648230843246,26.73786055110395,26.401119424495846,27.23627477698028,27.442121205385774,26.957385406363755,27.69249460566789,27.755684087984264,27.476165792439133,26.862792670726776,27.636795175727457,27.17096532229334,27.32660498516634,26.372952391859144,26.27550989156589,25.425068757496774,25.85483495425433,26.308601481840014,26.077872518915683,26.817443596664816,25.989719373639673,26.026664209086448,25.563110060989857,26.454704224597663,25.817260328680277,25.014434652402997,24.160699638538063,24.71749441837892,24.70841222908348,24.518749557901174,24.377965232357383,24.277542483992875,24.21285075834021,23.387894798070192,23.18144282931462,22.240365552715957,22.619528748560697,22.0755406874232,23.033773210365325,23.704690722282976,23.414920151699334,22.72600205708295,21.949566638097167,22.462038746569306,22.320212895981967,23.02211186150089,22.21549257868901,21.339789111632854,22.317445035092533,21.318826178088784,21.91834658337757,22.898890171200037,22.164298444986343,23.11975947394967,22.590282475110143,22.21589112840593,23.147140266839415,23.980729563627392,23.44886912126094,22.804692863486707,23.794812000356615,23.65805432246998,24.156414651777595,23.40775542706251,23.439215389080346,23.553426171652973,22.757554435636848,23.651290418580174,22.90138687333092,22.136356658302248,21.96069040708244,21.770148382987827,22.169685278087854,22.77982293954119,22.272388293407857,21.323453217279166,21.01783415628597,20.25955180171877,20.672300499863923,21.50585003895685,21.297321141697466,20.7458044430241,21.19309558114037,21.193115452304482,22.124096516519785,22.538327089510858,22.542677043005824,22.60443293582648,21.63965279702097,21.308287857100368,21.125013743527234,21.747854935005307,22.501498338766396,22.514515751507133,21.943890635389835,22.5845281383954,23.347131518647075,23.86168150836602,23.283114138059318,23.009589266963303,23.095217074733227,22.377205582801253,22.69167466694489,23.53419035114348,24.174295768141747,24.963424979243428,25.827406413387507,26.494180300273,26.707419152371585,27.610664297826588,28.422040663659573,28.740699213929474,29.215889165643603,28.30990019068122,28.243442279752344,28.821026928257197,28.51016002241522,27.68264142703265,27.234000598546118,26.58302766131237,26.186023721005768,25.811115534510463,26.444726265966892,26.59006385039538,26.533122760243714,26.722235499881208,27.191842786502093,28.08870545681566,27.515371083281934,28.477182277012616,29.194537519477308,28.40731065860018,28.084248093888164,27.755973304621875,26.778843259904534,25.960899166297168,26.00933184614405,25.844091644510627,25.42338041169569,24.811729735694826,24.295497390907258,25.156223820056766,24.698797879740596,24.563238875940442,23.909689402207732,22.938153129070997,22.117855038959533,22.77298041852191,22.20500122429803,22.06657935678959,21.474043387919664,22.186979765072465,22.227079410105944,21.59115542843938,22.260859444271773,21.533096752595156,22.390825227368623,22.730118521954864,23.55341513361782,24.08059058431536,24.075847861822695,24.113511966075748,23.45488254306838,22.716781390830874,23.21757675660774,22.434530598577112,23.409798008855432,23.96246576262638,23.68008743179962,22.974640018772334,22.780642500147223,22.357105277013034,23.286217390559614,23.075139151420444,22.25779842073098,21.835470728576183,22.81274533038959,22.042204241268337,22.2932595112361,21.60995152639225,20.74771037371829,21.182252700440586,21.5224727448076,20.868769419379532,20.178085609339178,19.44078948069364,18.773661619983613,17.822687505744398,17.31900935480371,16.85950525244698,17.049515010789037,17.93697684025392,17.46212172927335,17.058355177752674,16.78715061629191,16.048740805592388,15.86719186604023,16.70205125492066,16.41628596233204,15.632774681784213,15.050203840248287,14.74558956315741,14.149557601194829,15.080626002978534,15.170350124593824,16.084649161901325,16.66270349919796,17.288448848761618,17.983676929958165,17.840884101577103,17.975880278274417,18.087734202388674,18.092090577818453,17.66550301760435,17.14655879791826,16.72531978553161,16.94773641228676,16.767067632172257,16.213163033127785,17.109381430316716,17.14507574122399,16.640750595368445,16.112910975236446,17.10113353189081,17.479405904188752,17.024180775508285,16.37442127149552,16.35865668253973,17.102820281870663,16.580814938992262,15.962084840517491,15.605055295862257,14.875428409781307,14.525095386896282,14.763553407974541,15.752883756533265,16.072469864971936,16.73385991109535,16.091861757449806,15.702738425228745,15.959640318993479,15.507926302962005,15.330373126547784,14.808728679548949,15.012530726380646,15.03622730402276,14.140892314258963,14.498383474070579,13.858415747061372,13.83269827440381,13.548135849181563,12.556260796263814,12.95403078943491,13.383111258037388,13.824999888893217,14.445917506236583,14.375892580486834,14.614238230045885,14.918248755391687,14.771696498151869,14.205094096716493,14.433060613460839,15.260350497905165,15.853374531958252,15.234034174121916,16.06031806115061,15.201138646807522,15.078205041121691,14.324365789536387,14.522649235557765,14.244703550357372,14.394800573587418,14.662500937003642,15.514363599941134,15.942267153412104,16.035467106848955,15.88378184242174,14.928541635163128,15.454747412819415,15.488410158548504,15.046211143955588,14.251270339358598,14.764589687809348,14.80270772613585,15.740591563750058,15.488436244893819,16.310233801603317,16.661634847521782,17.4806129289791,18.182739352807403,17.678689235821366,18.031452511437237,18.235920410603285,17.520071460865438,17.43389247264713,16.873266897629946,17.406474421266466,17.052340363617986,17.514437422621995,18.200987878255546,17.25440645078197,18.174096799921244,18.460002278909087,19.441170741338283,19.548057486768812,19.58611221658066,19.966404034756124,19.446899065747857,20.230809037107974,19.519105742219836,18.71624547522515,18.54821373289451,17.680503652896732,17.220568754710257,16.41263013659045,15.947996724862605,15.365060026757419,15.676293422933668,15.703469208441675,15.966500525828451,15.8783890591003,16.542359797284007,16.53195465914905,15.713477296754718,16.23781168181449,16.12668789597228,16.524251916911453,15.725091570522636,15.027817544527352,14.865269348025322,14.714720512740314,15.479769058991224,14.94194259447977,14.80103908572346,15.459132568445057,15.621420554816723,15.417311214841902,15.94216010114178,15.322602482512593,14.43384930351749,15.222587675787508,15.298912846948951,14.681519812438637,14.821728841401637,15.115421570837498,15.61955857090652,16.54030907060951,15.957786143757403,16.82896616263315,17.229068861342967,17.103348379954696,16.708384020254016,17.694106854032725,17.381754911970347,16.438780807424337,16.28594794590026,15.989989981986582,16.987938306760043,17.76195437507704,16.83067854028195,15.86977221723646,16.171651936136186,15.177213167306036,14.799836799036711,14.806181827560067,13.842817580793053,14.769733444787562,14.591844045557082,15.545274869538844,16.011227409821004,15.27035691542551,15.799557548481971,15.30543255340308,15.195824885740876,14.326318784616888,14.033133863471448,14.737244637683034,14.315040288493037,13.71593111846596,13.984958549030125,13.521647543646395,13.273157326504588,12.48654552968219,12.509151185397059,12.989890241529793,13.154836948029697,12.877165990881622,13.201113336253911,12.264338087756187,12.534655112307519,12.330889179371297,11.578760863747448,11.746084992773831,12.584106870461255,11.977287132292986,11.955401589628309,12.457516191061586,11.459644288290292,11.594397492706776,12.473356754053384,12.558836556971073,13.125181037001312,12.195619496051222,11.906444168183953,12.887193355243653,12.710642353631556,12.71545562101528,13.325109517667443,13.604685885831714,13.189307391643524,13.262631949037313,13.325931578408927,13.11172215314582,13.676579392049462,12.899987436365336,13.709856373257935,14.503924579359591,13.542187099345028,13.153928239829838,12.572810357436538,12.833562719170004,13.148093928582966,12.454971793107688,12.330657663289458,12.337191816419363,12.370027511380613,11.613693063613027,10.98061470221728,11.899122347589582,11.002254110760987,10.110497201792896,10.313519940711558,11.144192350562662,10.181318439543247,11.169121521990746,11.341344012878835,11.033839587587863,10.400241072755307,11.228577810805291,12.118297983892262,11.887481714598835,11.429429069627076,12.229811745230108,11.947824961971492,11.227627336978912,11.770925688091666,12.465353806503117,12.880576983559877,13.439609082881361,14.171094899065793,15.16308023640886,14.688427329529077,13.731378653552383,13.393863501027226,12.775757905561477,12.76398500520736,12.188281302340329,12.408368514850736,12.959498949348927,13.135493848007172,12.804179030936211,13.10041945334524,12.162358929403126,12.582731011789292,12.550841537304223,12.321011315565556,12.462609446141869,12.556073977146298,12.560208546929061,12.037654929794371,13.023317183367908,13.973338943440467,13.826089791487902,13.294111089780927,12.663067862391472,13.020777197554708,13.714669100940228,13.477439382113516,12.512182173784822,13.076717836316675,12.432760074734688,11.568590962328017,10.671284711919725,10.823657689150423,11.05543308146298,11.42881567729637,11.749789952300489,12.647740308195353,12.819674798287451,11.976179994177073,11.357331583276391,12.186596849467605,11.221694766543806,10.658184689935297,10.006219524424523,10.752065371256322,11.133161963429302,11.741720532998443,10.943764097522944,11.671908187214285,11.805115861818194,11.844311446882784,11.068869089707732,10.324284921400249,10.124450410250574,9.970457713585347,9.739089408889413,10.6087985932827,9.656394849997014,8.785816546995193,8.4592498652637,7.920641828328371,8.670841189101338,7.7786830281838775,7.708581555634737,8.656534353736788,7.974447374697775,8.956778552848846,8.921927221119404,8.609689867123961,8.568132598884404,8.879004407674074,8.36787670571357,8.259036361705512,7.984318939503282,8.022401124238968,8.513134601060301,9.410549173597246,8.429673514328897,7.471566176041961,8.220813828054816,8.674116023350507,9.367464458569884,9.00621218373999,8.213936353102326,8.58392456220463,8.404952939599752,8.79468671651557,8.558064225129783,8.662660307716578,8.284422230906785,8.657275161705911,8.689067871309817,8.475185297895223,7.870651238132268,7.3255920321680605,6.750401017721742,7.606182538438588,6.902504884637892,7.684497802052647,7.286278693936765,6.536733452230692,5.655832139309496,5.087429195642471,5.953222758602351,5.41063763666898,5.402075191959739,5.019922738429159,4.315859029069543,4.492719926871359,5.4092946336604655,5.911330848000944,6.211098867934197,5.63895995542407,5.271690495312214,5.739721050485969,5.424642344005406,5.436902586836368,4.458730331156403,4.801131922751665,4.435491035692394,5.084181774407625,5.4433843600563705,6.190038932021707,6.921077378094196,6.247726262547076,6.634537678677589,5.682981342077255,6.236760552041233,7.078004481736571,6.539288109634072,5.638277065008879,5.671194714959711,5.66556043131277,5.029184584971517,5.563439826481044,5.10080866003409,5.691682527307421,6.074372702278197,5.82150750933215,5.7962838392704725,6.401938270777464,5.710685250815004,5.3279728763736784,6.1553305317647755,6.938255407381803,7.892847724724561,6.932224927935749,6.849457628559321,6.965229935478419,7.105511277914047,7.784708496183157,8.677150597330183,7.895461659878492,8.183451965916902,9.088578829076141,9.814874541945755,9.332605846691877,9.082063761539757,8.761822456493974,8.665590984281152,9.23753895284608,9.060479460749775,8.703440330456942,7.861318451818079,7.865846540313214,7.438850867561996,8.207038614433259,8.924734205938876,8.351784699596465,8.847703168168664,8.992594855371863,8.467261974234134,8.237296245526522,7.459531517699361,6.601902695838362,7.434705483727157,6.75062261056155,6.022282559424639,6.579444460570812,7.490498369093984,7.342276242561638,7.377152715809643,6.6352675864472985,6.679199810139835,7.22535720653832,7.285694147925824,7.928500042762607,8.305706587154418,7.69506478914991,8.53365433588624,8.307066330686212,8.238444340415299,9.175457138102502,8.298367235343903,7.355600738432258,7.383607187308371,6.564113954082131,6.9432688425295055,7.255181583575904,8.114488465245813,8.371110756881535,8.260089397896081,8.741501576732844,9.525186320301145,9.649389014579356,9.704561038408428,9.976799637079239,9.409504434559494,8.41379800485447,7.458133058156818,7.439695798326284,6.703197886236012,6.846190344076604,5.9734276328235865,6.2210402665659785,7.0683170594275,6.498896196484566,6.298840491101146,7.199230050202459,6.8389998520724475,7.657017050310969,7.17479217145592,6.777486989274621,6.600331385154277,6.50367352552712,6.784863349050283,7.3219508794136345,6.322112460620701,6.702330422587693,7.163776448462158,6.838772329036146,7.1122228554449975,6.264190039597452,6.200072660576552,5.776812033727765,5.01924591884017,4.334690725430846,4.964005211368203,4.234751276206225,4.407204331364483,3.781021415721625,3.0862802639603615,3.78541884990409,3.656400336883962,4.295073778368533,3.6889355261810124,3.3731893352232873,2.376945628784597,3.038283885922283,3.296929656062275,4.194140819832683,4.029109648428857,4.92708909092471,4.966117215808481,4.692737933713943,4.59399813041091,4.959859075490385,5.8518653539940715,5.444272766821086,4.684163690079004,5.618115425575525,5.674877241253853,5.001737837214023,5.216656151227653,4.475001546088606,4.994427689816803,4.136951914988458,3.2155498526990414,3.9952139547094703,4.609538106247783,5.266565071884543,6.255488775204867,7.1945616765879095,6.712136134039611,7.673885923344642,7.62104903254658,7.231191997881979,8.095757171977311,7.357588426209986,8.20784274302423,7.39098549541086,6.47625551186502,6.898658677004278,6.328042306005955,5.881344321649522,5.892837945371866,6.034311406314373,5.503486408852041,6.261684034951031,6.373079614713788,7.355881119146943,7.761689756531268,6.802582004107535,7.359149062540382,7.223452091217041,6.333477737847716,6.862156931776553,6.503461414016783,6.5242641097866,6.906654965598136,7.546570508740842,6.68923052912578,6.917478970717639,7.237764100544155,6.879801215138286,7.294235155452043,7.547286517452449,7.044949467759579,7.607396688777953,8.28028169553727,7.593343033455312,8.418284446466714,9.380539933685213,9.003293546382338,9.565318726468831,8.774589100852609,9.631486437283456,9.98867828026414,9.12676417035982,10.092269509099424,10.876365449279547,10.320720352698117,10.784339559730142,9.92421832960099,9.280610249843448,8.960755399428308,8.268496789503843,8.20277806604281,7.850537535734475,7.413880500476807,6.630746249575168,6.373211221769452,5.533187530469149,5.511163730639964,5.188028078060597,5.4831991461105645,4.5423951875418425,5.534688868559897,6.236595656257123,5.853178751654923,6.607057296205312,6.019196590874344,6.747634165454656,6.913654538337141,7.504468727391213,7.898295670747757,8.231263293884695,7.971944977995008,7.666733323130757,6.933227672241628,7.291228969581425,6.675184529274702,6.515186872333288,6.597959250677377,6.267102225217968,6.0780838169157505,6.167672600131482,6.996328687295318,6.294462640304118,7.178691326640546,7.876187216024846,8.847746220882982,8.412790826056153,7.709900400135666,8.251489569433033,8.826016175094992,8.95968558313325,9.506709261331707,8.905296814627945,8.112248993944377,7.237368051428348,7.362743138335645,7.637707290705293,6.757801511790603,6.016950917430222,6.26011162949726,6.539935036096722,6.149271108210087,6.346645534504205,6.741795941721648,6.534960696008056,6.542329404037446,6.2596884607337415,5.41176024498418,5.080243557691574,4.514979860279709,3.8587731909938157,3.5214466364122927,4.197104756254703,4.309217733796686,5.171524481847882,5.323679644614458,4.408299753908068,4.14175636228174,4.085963539313525,3.966647306922823,3.72386676305905,2.7915045670233667,3.171504432335496,2.3875070363283157,1.8373164399527013,2.699767648242414,1.8127180095762014,1.5490606678649783,1.946246883366257,2.6331519056111574,1.9217433780431747,2.6163687417283654,2.175101909786463,3.012336629908532,3.312711061909795,3.864010141696781,3.879240741021931,3.8239072668366134,3.8852200796827674,3.3139284937642515,4.125167491845787,4.307447531726211,4.961765022482723,5.537848126143217,5.803923052735627,5.253411404788494,5.744795703794807,5.208758685737848,5.483501935377717,4.91156021784991,4.735636546742171,5.458781307563186,4.9892464079894125,5.812963908538222,5.622274158988148,6.118449531495571,6.925743013620377,6.184039821382612,7.047039742581546,7.6543734185397625,7.224343610461801,7.136962726712227,6.630826416891068,6.170879564713687,6.718795581720769,7.589774064719677,7.767193408217281,7.980041720438749,7.96431605424732,8.129543515853584,7.224348199553788,6.629286008421332,6.144659097772092,5.948663502000272,5.4862646739929914,5.618648418225348,4.67791990051046,5.354397266637534,6.338257270865142,6.678804378490895,7.471387217286974,6.9244170831516385,6.3502035941928625,6.416780800558627,7.216388494707644,7.035618698224425,7.885115314275026,8.284851262811571,8.770428446587175,7.885275616776198,7.401423931121826,7.29685324896127,8.035976584535092,8.427678973879665,7.752114301081747,7.8682814026251435,7.0655950689688325,6.2629768345505,6.2588961948640645,6.946292275097221,6.975449005607516,6.412417771760374,5.51245922408998,5.928822581190616,6.617061759345233,6.810056854970753,7.529619981534779,7.985052394680679,8.073543831706047,7.2523762243799865,7.804000914096832,8.445108271669596,9.25861290935427,9.925353800412267,9.893165181390941,8.912994223181158,8.692405581939965,8.931836694013327,9.664616056252271,9.089631171431392,8.423468236811459,9.32476932555437,8.86140086594969,9.840369523037225,9.516712459269911,9.823567766696215,9.150669533759356,8.649382970295846,9.590440769679844,10.094761163927615,10.169181135483086,10.69531505415216,11.134641548153013,11.198095203377306,11.566174475010484,12.433070174884051,12.659138874150813,12.84520208556205,12.486908910330385,12.380645324476063,13.036907858215272,12.321761717554182,12.215444153174758,11.341120656579733,11.626331869047135,11.275096345692873,10.841003467794508,10.5020678373985,10.443632889539003,10.646099681034684,9.969067196827382,9.327209807466716,8.35904094344005,8.607740311417729,9.59983697719872,9.637296624481678,9.88970490731299,10.170323873404413,9.919752932153642,9.543687191326171,9.461728210095316,9.633892012760043,8.680124188773334,8.419459536671638,9.36604262329638,8.648150874301791,8.005600784439594,8.603400710970163,8.1418068530038,9.02885267790407,8.135126269422472,8.533028821460903,8.313656232785434,8.170641694683582,7.675365459173918,8.400592108722776,7.678466374985874,7.511192712932825,8.227109380066395,8.501190550625324,8.488013364840299,8.782226238865405,8.58804588764906,8.933146051131189,8.781870211008936,8.22021153010428,8.278187995776534,7.390329561196268,6.897553284652531,7.178480863105506,6.934103654231876,6.043118875473738,5.586734346114099,6.267308334354311,6.511689485516399,6.230570247862488,6.162845716346055,6.763017006684095,6.645526892971247,5.915329906158149,6.3945870725438,5.493416218552738,5.47778513841331,4.640327274333686,5.492327011656016,5.426404799800366,5.997256090398878,5.1706964978948236,4.379421512130648,4.728792613837868,4.027161198202521,4.702705982141197,4.958598890341818,4.079350761603564,4.054634194355458,4.832823659293354,3.833255031146109,4.8015430718660355,5.594272064045072,4.7154580731876194,4.448635883629322,4.6200946336612105,3.99462892441079,3.4886457384563982,2.5342721375636756,1.7761463751085103,2.5640332070179284,1.876725250389427,1.7696945969946682,1.5613028383813798,2.1506425570696592,2.820787703152746,3.0891762543469667,3.9089999073185027,3.7047439459711313,3.013045769650489,2.48987278342247,2.9102113456465304,2.959893508348614,2.300598450936377,3.2181615522131324,4.157793055288494,4.692680305335671,3.7500079213641584,3.4889094182290137,4.153386496938765,3.156370223965496,2.3559041772969067,1.8523854496888816,2.2805759548209608,1.532766011543572,2.4427523617632687,2.361987094860524,2.897769954521209,3.081760748755187,2.15761330537498,2.5036007235758007,2.0185080571100116,2.3989181253127754,1.6965895472094417,0.9797911215573549,1.3917874810285866,0.8645831695757806,1.4846704015508294,2.048922908026725,2.446792423725128,2.5852846102789044,2.7918644538149238,2.416704597417265,2.504355509299785,1.5131373065523803,1.9077844265848398,2.704627483151853,2.378383258357644,1.4549083868041635,2.2245437842793763,2.009684693533927,2.2463109525851905,2.003465178888291,2.9931101207621396,2.0721424520015717,1.598949790932238,1.0886091426946223,1.0826174882240593,0.8740627663210034,0.3065598518587649,0.7564933528192341,0.1289192158728838,-0.4361820751801133,0.19970030477270484,0.5851627206429839,0.42580860294401646,0.8543338389135897,-0.00846416037529707,0.23320395266637206,1.0387245905585587,1.3737201085314155,0.7277070670388639,1.3685603542253375,1.536013884935528,2.2069629789330065,2.4060189402662218,1.8792671794071794,1.586561115924269,0.6685760500840843,0.2534464099444449,0.9268080098554492,1.5103517761453986,1.1599709172733128,2.0211953571997583,2.2845084806904197,1.6898630959913135,1.322994182817638,0.6502122576348484,1.561035942286253,2.5549652078188956,1.700483689084649,2.2183131207711995,2.0580202019773424,2.743195672519505,3.6946261785924435,4.641767525114119,4.200838298536837,3.576194282155484,3.434916527941823,4.177099481690675,4.425979301333427,4.357137516140938,3.8018607045523822,3.88242674106732,3.0240592253394425,3.004842466209084,2.1149784522131085,1.7360188285820186,2.308490368537605,2.571770659647882,2.9743831176310778,2.3453550483100116,2.663087752647698,2.4086965755559504,2.231519548688084,2.499464466702193,3.313864418771118,2.4583896356634796,3.1352230235934258,2.562155056744814,2.9417810854502022,2.8034568200819194,3.0907730869948864,2.404230600222945,2.722593007143587,3.16231282800436,3.150129629764706,3.1737426426261663,3.864058063365519,3.824656800366938,2.860175575129688,1.9051918336190283,1.0359035558067262,1.325357289519161,2.003742217551917,2.9725456102751195,2.683572751004249,3.099746886640787,4.0933315572328866,3.578872258774936,3.346831346396357,3.1906978860497475,2.242502886801958,2.307862631045282,2.8879415155388415,2.446653360966593,1.96995366550982,2.788380732294172,3.3606720031239092,2.690765905659646,3.3897833828814328,4.059925507288426,3.1353025888092816,3.6745316591113806,3.209285116288811,2.29282585112378,1.6262674760073423,1.7752895895391703,2.497169100213796,3.0116371931508183,2.2182426769286394,2.0524550592526793,2.8263406939804554,2.8924603606574237,2.5037152455188334,3.4528202321380377,4.3516485542058945,3.6219372348859906,4.416541134007275,5.3717891736887395,5.462592115160078,6.145928046200424,5.386147243436426,6.2389841615222394,6.429711347445846,7.1256747376173735,6.840127676725388,7.6358361495658755,8.541130941361189,9.411802055314183,8.478614238556474,8.727381656877697,8.229440322611481,7.583402174059302,7.690525392536074,8.454191036056727,8.488572466187179,8.814822956454009,9.785478175152093,9.126383102498949,9.466600448824465,8.896557713858783,8.789167086128145,8.318897645454854,8.058075281791389,7.91093933628872,8.157377185765654,8.744573037140071,9.274369612336159,9.583336763083935,10.155315939802676,10.3136156052351,11.110300837084651,11.616126076318324,11.150982764549553,10.269571504555643,9.62016208237037,9.163036097306758,8.796939426101744,9.683148660231382,9.84180242754519,9.499592252541333,10.424119865056127,11.389373230747879,10.64475021418184,11.00373120000586,11.67774016270414,11.451055004261434,12.125259567517787,11.537088583689183,10.701068944297731,11.513896077405661,11.784959135111421,11.931374093517661,11.378387917298824,12.245622493792325,12.056615112815052,11.659970378037542,11.085576384793967,11.383678987622261,11.611311310436577,11.786474760156125,11.086625705007464,11.2377340500243,11.81233363552019,12.288210426457226,13.210029941983521,13.16123181488365,12.430441029835492,12.229344485327601,12.178821386303753,12.848432555329055,12.24123199377209,13.056396821513772,12.926361606922,13.31247035972774,12.665332738310099,12.462634375784546,12.29498168360442,12.929618509020656,11.958614769391716,11.534798208158463,10.546892061829567,10.418950212653726,10.476238042581826,10.58360169781372,10.16162063460797,10.908930546138436,10.063695587683469,10.376029036939144,9.836066683754325,10.783458925317973,10.135172749869525,10.216509097721428,9.81674683559686,10.743489453569055,11.265412282198668,12.028523518238217,11.067165991291404,10.891911804676056,10.624294263776392,11.560263947118074,10.725499171297997,11.276998701039702,10.409410171676427,10.640843439847231,10.997441882733256,10.027183078229427,9.938922799192369,9.333027942106128,10.02479154476896,10.099911072757095,9.629684634506702,10.228728283196688,10.930391753092408,10.685013839043677,11.397232119459659,11.312273109331727,10.657185764051974,11.249077853281051,12.08594944467768,11.860788446851075,12.817369047552347,12.456256866455078,11.833295875694603,11.456682343035936,10.673561584204435,10.482085103169084,10.338722231332213,10.339856615755707,11.060852917842567,12.053707652259618,12.616447894833982,12.704090239014477,13.320845383219421,13.017611105926335,13.879181579686701,12.891552560962737,13.092547717504203,13.294575652573258,12.828492489643395,13.01449932018295,13.880179640837014,14.754819706082344,14.25901239272207,14.555626133456826,14.320503374561667,13.940473407506943,13.272233243100345,13.760134825948626,14.251489389222115,14.125453103333712,14.728725040797144,15.463190933223814,16.10005784453824,16.141824792139232,15.738113722298294,15.411579463630915,15.575894481968135,15.429639539215714,14.799731927458197,15.098893344867975,15.770070570986718,16.51727422652766,17.464466457720846,16.91042818315327,16.262514957226813,16.911014574579895,16.956461346242577,17.13914432702586,17.383708361070603,18.31919306749478,18.20323758944869,18.893671319354326,18.56688460940495,18.439328017178923,17.79013869492337,17.115616915281862,17.79424070380628,17.11476334137842,16.42297349497676,15.54428034601733,16.325168968643993,15.991751597262919,16.873347036074847,17.385016207117587,17.996823877096176,18.145286979619414,18.57883532717824,19.53922195127234,19.829427596647292,20.708166365046054,21.02703512273729,20.358185562305152,20.993548111990094,20.937943311408162,20.940544401761144,21.246517015155405,22.007259478326887,22.715165005996823,23.142742584925145,22.696799610741436,22.987773410975933,22.7427664170973,23.593031212687492,24.507665209006518,24.584785466548055,24.38873816980049,25.206760736647993,25.26688503753394,24.323301480151713,25.09433082025498,25.90617007529363,25.22017740039155,25.941110901534557,26.52896272856742,26.026202421169728,25.282109927851707,25.669303336180747,26.25195696298033,26.192600320093334,25.87518000882119,26.115522190462798,26.583760073408484,27.007923158816993,26.65464397612959,25.8506049211137,26.072299882769585,26.94309876160696,26.61665669688955,25.646585979498923,24.66171566117555,24.390677112154663,24.983586398884654,25.60160844027996,25.819504475221038,25.94933488406241,26.65318355942145,25.9713280252181,26.504981832113117,26.172297209035605,25.341420927084982,26.141636508516967,27.015878698788583,26.08209533849731,26.3722375924699,27.28761203866452,26.543158867862076,25.83076671604067,25.15870378119871,24.31861735600978,23.469882513862103,23.65138821443543,22.736711757723242,22.5043242899701,21.645269653294235,21.595312635879964,20.976270915940404,21.22137674782425,21.29083347832784,21.633555660489947,21.88834817428142,21.394144099205732,21.09478203440085,20.883196915499866,21.538918124511838,20.57998693967238,21.507041729986668,20.744506603106856,20.178323942236602,19.321931216865778,19.97463021054864,19.66651454428211,18.93310667341575,19.630920440889895,20.611842276528478,21.43892100546509,20.774036194197834,20.053537057712674,20.692242383491248,21.240365312434733,21.851136018056422,21.117980473209172,21.421979242470115,21.452919562347233,21.70972174499184,22.629678754135966,22.629837611690164,21.955576565116644,22.119194970466197,22.179664268624038,21.774781598709524,20.97232599183917,21.909065069630742,21.355088071897626,22.041682355105877,22.675754085648805,23.27782495273277,22.670376379042864,21.679156187921762,22.03960024518892,22.321439229883254,22.501850849948823,22.51360018691048,22.112457690760493,22.420050681568682,23.269998327363282,22.782804302405566,23.624222901184112,24.59117173962295,24.8040759335272,25.044653140939772,25.849995760712773,26.60717449663207,26.659952610731125,25.889295598026365,25.516761112958193,25.29958082549274,26.00051302742213,25.897981545887887,26.51722496189177,27.077321169897914,26.61856149509549,26.15216075722128,25.869987689889967,26.136918942909688,26.596712450496852,26.421332615893334,26.29855924518779,26.099374475423247,26.918187259230763,27.8146633207798,28.379881771747023,28.67267987271771,28.162859256844968,28.988439448643476,28.445563326589763,28.910234136972576,29.767100983299315,30.224990951362997,31.17728578718379,31.235638601705432,31.06544620357454,31.84723438322544,31.685745971743017,32.13632247876376,32.50636467151344,31.70151901477948,31.852306277956814,32.719371729530394,32.93831482576206,32.872755005490035,32.784382079262286,32.567459158133715,32.30962626542896,32.01099056750536,31.793648629449308,31.992041119839996,31.76748654153198,31.988228693138808,32.72506730258465,33.53727653250098,33.97399812377989,34.65605188021436,34.3310114312917,33.424489627126604,32.72753499913961,32.0243231439963,32.43283847859129,32.73912489507347,31.893163537606597,32.441194507759064,31.583239233586937,31.499294931069016,30.8891732217744,31.50073704821989,30.73536050831899,30.503294750116765,30.896876121871173,30.447480810340494,29.715698046144098,29.413661322090775,29.346523020416498,28.654746307991445,28.471106994897127,28.506596265826374,28.93881460139528,28.821169692091644,27.874887502752244,28.676122720818967,28.01504704216495,28.018444687128067,28.432117354590446,27.542363330256194,26.746285365894437,26.410776437725872,27.051077361684293,26.93194115627557,26.78795686829835,26.45380018791184,26.860178978182375,27.17124737938866,27.57491519441828,26.815082867164165,26.824140075128525,26.537992779631168,25.80980785889551,25.59376131091267,26.330934775061905,26.151759633794427,26.738618951756507,27.04250180674717,27.254766904748976,27.408780375495553,28.109875805675983,28.37996325455606,28.921574756037444,29.637554915156215,30.253127614036202,30.015235447324812,30.820972854737192,31.260410429444164,30.661989052779973,30.99496108200401,30.318171462975442,29.644522551447153,29.5874384958297,29.808033269830048,30.133496060501784,29.868111149407923,30.46724097430706,30.303228833246976,29.99023106088862,30.118730419315398,31.069255522917956,30.579791385214776,30.578597574029118,30.714252192992717,30.172142637427896,29.82595681073144,29.210348202846944,28.83335016295314,28.62890222342685,27.880280014593154,28.82279312144965,28.134497612249106,27.65036889212206,26.975732705555856,26.45729489205405,25.9010526612401,25.08922548685223,25.337099004536867,25.27223417395726,25.513202390633523,26.317264492623508,25.3955334876664,24.979052062612027,24.726105578243732,25.54414157010615,25.666262397076935,25.565209861844778,26.19528452400118,25.505618907976896,25.216501497663558,26.03607223695144,25.86848607333377,25.50612843921408,26.129015221260488,26.742179738823324,26.054466531146318,26.06926622055471,27.033308239188045,26.49359827581793,25.945223145652562,25.850549173075706,24.95117144100368,25.896532295737416,26.281094181817025,26.87527764448896,26.46530623268336,26.44722579140216,26.29058626666665,26.826323239598423,26.755346996709704,27.357478868681937,26.904455547221005,26.166859336197376,25.819824083708227,26.268721154425293,26.65394665999338,27.265817907638848,26.575791674666107,25.75767278857529,25.24084210023284,24.715981827117503,24.311400040518492,24.671922781970352,24.460984259378165,24.651723328977823,25.20416290871799,24.994001746643335,24.39879857422784,23.614053525030613,23.211894072126597,22.636533566284925,22.821325857192278,21.86834152135998,21.22593432944268,21.741414510644972,21.81234591640532,22.035583516582847,21.822808487340808,22.363889238797128,22.223059974145144,21.904973432421684,20.938196558970958,20.424933119211346,20.508315657731146,21.480679999571294,20.663387686945498,20.379605093039572,20.267560279462487,19.39666723785922,18.79791765473783,18.174385275691748,17.582462459336966,17.120686217211187,17.975784009322524,17.34997369721532,17.59637273615226,17.4778727251105,17.625176331959665,17.539477099198848,17.783941567875445,17.20934279076755,17.343524458352476,17.517897901125252,16.929204002022743,17.092876065522432,16.705141921527684,17.071547684725374,17.08190282713622,17.920833928976208,17.257662633433938,17.11981413559988,16.159527210518718,16.061522962525487,16.948848631232977,17.082595160696656,17.061644442845136,16.133756139315665,17.12879308871925,16.99456715863198,16.071720082312822,15.115035410039127,15.617148780729622,16.52643934264779,16.48744782852009,15.967368587851524,15.818265615962446,16.03021795442328,15.252688922919333,14.945132191292942,14.49657854065299,13.719237081240863,13.207312565296888,13.191068720072508,12.670542851090431,12.833009611349553,12.149096520151943,11.365838245488703,10.478966339956969,11.378861885983497,11.904621187597513,12.368957456201315,11.910315740853548,12.63076378684491,13.265545232687145,13.002487330697477,13.777042551897466,13.259389906655997,13.146950150374323,12.795663779135793,13.534504156559706,13.589904650114477,13.354006827343255,12.82586054643616,12.388269716873765,13.229112883098423,13.344419906381518,12.86442217277363,13.74361974047497,12.785043424461037,13.581924902740866,12.663859639782459,11.668030024506152,12.665723752230406,12.477849928662181,12.981575262732804,13.534311185590923,14.447566962335259,13.831470729317516,13.081563581246883,14.052441738080233,13.452760559041053,13.796171733178198,12.974235002417117,12.297540892846882,12.851625693030655,12.04090622253716,12.53076145844534,12.262265781871974,12.046024884097278,11.786445620004088,12.482668658718467,13.075052707921714,12.934272081591189,12.374546523671597,12.312536377925426,13.071032761130482,13.69513509888202,12.907931543886662,12.680561161600053,12.9108123537153,12.510872249025851,12.18123253248632,11.21952087758109,10.917051418218762,10.247559146024287,10.965800451580435,10.747083650901914,10.927793828304857,10.086239327676594,10.541956233326346,9.791362477932125,9.122724948916584,9.867243947926909,8.889917267952114,8.870637838728726,9.850336993578821,10.632754573598504,10.833683555014431,10.493836938403547,9.9651891104877,9.300623965915293,9.232109036762267,9.80001930007711,9.211598379537463,8.627460045740008,9.436400128528476,9.055993565358222,8.623750751372427,8.916915677022189,9.81123842857778,9.174902352038771,8.49892412731424,7.886541495565325,7.282613897230476,6.426782394293696,6.490831402596086,6.953851802740246,6.11647036485374,6.045569979585707,6.551311402115971,6.794467766303569,6.74429060285911,7.010511888656765,6.049798944033682,6.9365444434806705,7.589653828646988,7.376865765545517,6.667348045855761,7.279762252699584,6.880055679474026,6.87718961853534,6.06551910797134,5.951619657687843,5.330739656463265,6.025239998009056,6.950771633069962,6.163199578877538,5.257334776222706,5.584585356991738,6.336051434278488,6.434874064754695,7.346755502745509,8.243484142236412,9.006849810481071,8.699185122735798,8.569856686051935,9.252341066021472,9.33429809845984,9.20490175159648,8.692754386924207,9.0590332262218,10.017428871244192,10.436527601908892,11.062303494662046,11.38852983340621,11.023476155940443,11.847669826354831,12.28291968954727,12.326390662230551,12.871944145299494,12.284146815072745,11.520998432300985,11.65608973801136,11.91441020136699,12.554416777100414,12.117463527712971,11.64314588624984,12.628078977577388,13.134080564137548,13.95280120242387,13.705725855659693,13.612078157719225,13.731857197359204,14.031954648904502,13.28312452416867,13.704967831261456,13.03488194430247,13.725530967582017,13.781265173107386,14.10891454294324,14.663934061303735,15.074966298416257,15.766860811971128,16.626888938248158,16.725936082191765,16.457464100327343,16.897375878877938,16.626247523818165,15.723083153367043,15.454235926736146,15.109134241007268,14.780605389736593,14.251211641356349,13.440540760289878,13.211932950187474,13.807011622935534,13.637538030743599,12.844196639955044,12.218486399389803,12.545105197932571,13.132045566104352,13.240684268530458,13.967170037329197,14.689273795112967,14.075613295193762,14.57995886914432,15.528517566621304,14.62619237229228,14.362236362416297,14.29817941505462,13.772768322378397,13.26561021246016,13.908667726442218,14.080922093708068,13.936796834692359,14.808532281778753,15.106213014572859,15.837007783353329,15.366351586766541,15.619372981600463,15.897252913564444,16.576338227372617,15.735912804491818,14.7788773807697,14.964728866703808,15.837931490503252,15.560055134352297,16.33113989047706,17.302437368780375,17.349208515603095,18.226640264037997,18.20230083493516,18.730376936960965,19.357370399404317,18.936002353671938,18.46208644285798,18.75060772849247,17.78868169290945,17.76246823463589,18.565238000359386,18.937097524292767,19.42938072932884,19.821176126599312,19.18502686638385,18.69784440472722,19.03609040658921,19.89137987885624,18.91452918900177,19.67302777385339,20.66103480802849,20.663588248658925,19.690351653378457,20.490302665159106,19.503244017716497,19.885613694321364,19.16715039126575,19.49390686256811,19.5993437692523,20.085297553334385,20.552304702810943,20.72581448080018,20.861544069368392,21.151679345406592,21.326451460365206,21.2944149132818,21.615523174405098,21.979609194211662,22.70501935435459,22.93580114468932,23.137991815339774,23.96222828095779,23.180360336788,22.344952101353556,22.48110593808815,23.154055446386337,22.50898275570944,22.81754325563088,23.509833546355367,23.488726754672825,23.434374269098043,22.568470316473395,22.801023042295128,23.668946500401944,24.655904294922948,24.692054564598948,24.775187467690557,25.251541113946587,26.208490826189518,26.14847390446812,26.66534260381013,26.472633198834956,26.027951958589256,26.429662002250552,26.544561255723238,26.84607422631234,26.074791317805648,26.402805589605123,27.002207540906966,26.933277503121644,26.807820154353976,26.524525568354875,27.369897891767323,26.957780422642827,27.506039808038622,26.54005560046062,25.994909984525293,26.877011271659285,27.17435759259388,27.314110449980944,27.264910418074578,26.764933336526155,26.772822316735983,25.92262153699994,26.06512563629076,25.857652359176427,25.88064804393798,26.01138420123607,26.293043865356594,25.6252420861274,26.464817385654896,27.450241478625685,27.221731188707054,26.955422810278833,26.826591580174863,27.406946999952197,27.65556936431676,28.021535395644605,27.264330924488604,27.914845555555075,28.71390331024304,29.212240654509515,28.452134285122156,27.62413267651573,26.815556600689888,27.666883076075464,28.029363118112087,28.71110439999029,27.8972446504049,28.11934929806739,28.406308894511312,27.88285065256059,26.909271141514182,26.596703600604087,27.41444636741653,26.430370350833982,26.072492654435337,25.54807225894183,24.95502733439207,25.17610743828118,24.718907076399773,25.452186095062643,25.154610306490213,25.074258886743337,24.356356711126864,23.77675413247198,23.04384284093976,22.571320284623653,21.81834949599579,22.150858651380986,22.606844447553158,21.778231993317604,21.517003883142024,21.093707314226776,20.22609690343961,20.99383722571656,21.47620200412348,20.67322982242331,20.440752144437283,20.229096193797886,21.110985874198377,21.89253678964451,22.69337764941156,23.5966979120858,23.847868584562093,24.7566348426044,24.494309465866536,24.17081394745037,23.245362846646458,23.08109354181215,23.367173401638865,22.644063553772867,22.697051347233355,22.633852265775204,22.200217319652438,23.113611778710037,22.714522490277886,22.907027644105256,22.437534797005355,21.561261140741408,21.867414119653404,21.39031567098573,20.611374530941248,21.219005504157394,20.5029456759803,20.17027759552002,20.852856868412346,20.307861032430083,19.54176522186026,18.576327750459313,18.534130418207496,17.547490761149675,17.86791368527338,17.628597184084356,16.69371031364426,17.239495254587382,18.190806583035737,19.17585375206545,18.40782302757725,17.552166214678437,17.24348747683689,16.502792234998196,16.703107484150678,17.538358841557056,18.520537726581097,17.847223320044577,17.09698021551594,16.444893583655357,16.826787443831563,17.19271111022681,17.26759593654424,18.222882985603064,17.37951701786369,17.513741017319262,18.299044463783503,17.915576128289104,17.85960995219648,17.11143853003159,17.539892309810966,17.87814173148945,16.89651268022135,17.084062229376286,17.452690966427326,17.289566305000335,17.75966749433428,17.36533691873774,17.6776822200045,18.288639769889414,19.034775075502694,19.119181908201426,18.709073394536972,17.982544457074255,17.52483938029036,17.112818443216383,17.716293912846595,17.82368006883189,17.474469034466892,16.856035070493817,16.227491705678403,16.233376998454332,15.56868486572057,15.684405258856714,14.70223674038425,15.363653999287635,15.516716203652322,15.85865357844159,15.930255222599953,16.053472019266337,15.1507158591412,15.93764759413898,16.085841868072748,16.691562169697136,16.784821952693164,17.150284812320024,16.90246171783656,15.912189959548414,16.24750284012407,16.246781352441758,16.373337638098747,16.496468379162252,17.391816711984575,18.0517178918235,18.255000652745366,18.0383309032768,17.161592508666217,17.581406590994447,18.189607815817,17.716652114875615,17.900517431087792,17.650335538201034,17.566530250478536,17.498191820457578,18.111599138006568,18.64601937821135,18.757711122743785,17.922996976412833,18.468956226482987,18.098679896444082,17.79708263138309,18.204636325128376,19.088613192085177,18.499604169279337,18.70061508193612,19.475522523745894,18.72461842233315,18.943825244903564,18.61560735711828,18.520169538911432,19.502243004273623,20.07455316791311,20.521506687626243,21.14218129729852,21.988684305455536,21.99832382053137,21.337127599865198,21.856744792778045,22.165037950966507,22.937147794291377,23.33013468189165,24.263916951604187,25.08770145988092,25.389961760956794,24.60224029282108,23.609196852892637,24.097657694946975,23.603521278128028,22.936497346498072,22.83717538136989,23.51675456482917,22.6676204521209,22.56963549228385,21.99201759835705,21.68299874709919,22.093772974796593,21.33732589520514,21.63369018305093,21.789972280617803,20.880393779370934,20.473719167523086,20.90699978498742,21.509414556901902,21.951658077072352,21.82626626128331,21.12426308589056,20.56019048858434,20.9292011577636,21.50813211593777,21.056210848502815,21.564850305207074,20.826502747368068,20.890508491080254,21.6190819228068,21.001813496463,21.828989670146257,22.67721389932558,22.909016904886812,23.747213061433285,23.92216544598341,23.70088020619005,24.673189977183938,24.932554688770324,24.59745661029592,25.009970682207495,24.036986891180277,23.463096384424716,22.986939661670476,22.837428615428507,21.878475447651,22.528253874741495,22.624044818338007,23.435137680266052,24.41946618910879,23.761839370708913,23.078702986240387,22.522475329227746,22.545881860423833,21.593633071519434,22.163892049808055,21.64546554442495,22.02916762791574,21.209221510682255,21.10377593105659,21.633187209721655,21.020560540724546,21.918343673460186,21.260066021233797,20.476352051831782,21.016533786896616,21.810791903641075,22.783169037196785,21.800068583805114,22.165497723501176,21.49133673775941,22.066497353371233,22.93927496066317,23.589300099294633,24.555286679882556,25.490536518394947,26.40266559412703,26.134724657516927,26.299122002441436,25.608314210083336,25.7330378042534,26.627948882058263,26.46631294116378,27.05780620407313,27.14472886454314,27.00733563490212,27.401067414786667,26.658176106400788,26.64164628321305,27.11766055598855,27.54029970150441,27.076552412938327,27.522097358945757,26.636661727912724,25.673955258913338,25.424418716691434,25.05569746810943,25.626582704950124,24.696602889802307,25.38687356049195,26.296409818343818,25.49056915892288,24.708336122334003,25.020178247243166,24.431824161671102,23.790853327605873,23.41912675788626,24.31729745818302,25.24514046916738,26.20606854883954,25.468234471511096,24.6282218513079,24.78704451629892,25.527591972611845,26.113094665575773,26.96687587024644,27.01560808112845,26.631497129332274,27.562750374898314,26.702633738983423,26.78750328719616,27.779244325123727,26.969023359473795,26.410789981950074,25.74701551301405,25.56826356984675,25.393812171183527,25.519609436392784,25.68066272791475,25.109517693519592,25.922484912443906,25.982274428475648,25.57028154609725,25.651293985545635,25.585771079640836,25.625382529571652,25.481899144127965,26.174198044463992,26.307511515449733,26.42677163844928,25.758816183544695,26.657399266958237,25.818549549672753,26.069601231254637,25.311596960760653,24.898917914368212,24.709661862347275,23.778739114291966,23.89805152453482,23.031201206613332,23.72835606429726,24.154571418184787,23.211965966038406,23.44099788973108,23.418346859980375,22.8298253971152,23.797027735039592,24.6362667940557,24.390798626467586,23.45959311723709,23.2261908701621,23.564141037873924,23.26781945116818,24.05286476854235,23.11785352602601,23.005002363584936,23.799802125431597,23.662043899297714,24.252085169777274,24.690291543956846,24.274213768541813,24.683154471218586,23.905372984241694,23.69793104985729,23.279915019869804,22.673648855183274,22.438830585218966,23.406389676500112,23.16783994762227,22.980954879894853,22.802185346838087,22.273474459536374,23.203860198613256,23.242750856094062,23.79406012268737,23.708591785747558,23.7347313137725,22.886977202724665,22.14430856704712,21.627792530693114,21.70796697679907,21.770893146749586,22.387765627820045,21.517406963277608,21.4445422552526,20.57572508836165,21.113490511197597,20.703219052404165,21.5313724251464,21.875030091032386,21.226655488368124,20.336382533423603,19.886820435989648,19.562811446841806,20.45478739636019,20.797483520116657,21.787987497635186,22.155793506652117,22.789468923117965,23.240462977904826,23.125493357423693,23.373433334752917,22.880164091475308,22.20274510141462,21.206936394795775,20.475862893275917,19.830318244174123,20.75161660090089,20.41677693137899,20.954160219524056,21.24586966726929,21.247539026662707,21.087937160860747,20.9428699221462,21.626928998157382,21.974347834941,21.745397383812815,21.975683260709047,22.470652061514556,22.87786616384983,22.94825072027743,23.42406853241846,23.918786941096187,23.773613861761987,24.225477169267833,23.368592967744917,22.48101372597739,22.496509054210037,21.630237112753093,21.34555938700214,21.102952970191836,21.48511493531987,21.72550362488255,21.873837403021753,21.02213151426986,20.459176576696336,19.520110404118896,19.90382709586993,20.5169302043505,20.588929468765855,20.178705354221165,19.219869632273912,19.582403120119125,19.99062796961516,20.756216847803444,19.95925791049376,20.04295753221959,20.992059411481023,21.363296483643353,21.397870493121445,20.60921264672652,19.80339926155284,19.85186408739537,20.25404729275033,20.2675026464276,20.53578035812825,20.031765984371305,19.821109001059085,19.93329097563401,19.553950311150402,20.474454360082746,19.82590857706964,20.57295931596309,19.62108148029074,20.577875638846308,20.724862035829574,21.226040048524737,21.86498330393806,22.660784794017673,23.020669686142355,23.313405534252524,23.35853318683803,22.740480004809797,22.511904847808182,21.641966071445495,21.435962788295,22.164148902054876,21.805064500775188,21.399624013807625,21.809195357374847,21.47478893212974,22.378678967244923,23.202457246370614,22.731978876981884,22.299640101846308,22.609826917760074,22.18751110183075,22.195527642033994,23.14215046353638,22.706848514266312,21.768972392659634,21.31242766370997,22.276285228785127,22.87040797667578,22.571411391720176,23.019797469023615,22.776993271894753,23.005334184505045,22.31648924900219,23.03548752423376,22.841623491141945,23.01436249911785,23.7787040383555,24.133962521329522,23.43437472358346,22.570564252790064,22.633435301482677,22.83653357764706,22.51829123403877,23.483394905459136,23.180415290407836,23.11180136119947,22.282560859341174,21.30230177147314,22.069630324840546,22.29421839118004,22.264266642276198,22.461006262805313,21.653748939745128,22.10193599248305,22.13722414523363,21.84075978724286,22.13496595667675,22.262264515738934,21.375042483676225,22.127402813639492,22.746350375004113,23.216675982344896,22.92022084770724,23.20341428834945,23.765991354826838,23.53928594617173,22.72460656799376,22.489275294356048,22.286192128434777,22.3278739140369,22.40175608219579,21.53230493608862,21.356330527924,22.155685561243445,22.33165667578578,22.983306281268597,22.980327281169593,23.884738007560372,23.8637585057877,24.213504806160927,24.827434088569134,24.914369110949337,24.227620165795088,23.423248471226543,23.06938394997269,23.253039394505322,23.8047867519781,23.419418511446565,22.433629943057895,22.186867074109614,21.872087336611003,21.4136254331097,20.928554374724627,21.203365235123783,20.72753815772012,20.422934242058545,20.828489389736205,21.751477607060224,21.999159559607506,21.146300291642547,21.984394690953195,22.735740516800433,21.868596248794347,20.99185698432848,20.5208154655993,21.409861173015088,21.232473893556744,20.707196979783475,20.60399947874248,20.217207031790167,20.98671916127205,20.475469533819705,20.024536645039916,20.367633901070803,19.570962834637612,19.32368488330394,18.356442709919065,18.02128305612132,18.77676071645692,19.352428609505296,19.506156689021736,20.227095713838935,20.31144782109186,19.4304182943888,20.174783097114414,19.35800807317719,19.98828865075484,19.008148685563356,18.426836577709764,19.28228776389733,18.97455342207104,18.08747354336083,17.105292323045433,17.39685722766444,17.22516437480226,17.371184236370027,16.688625575508922,16.7980813998729,16.066273239441216,15.540664811152965,14.612878292798996,15.56693840585649,16.010251795407385,16.355740361846983,16.19718591403216,16.05508702620864,15.144246755167842,14.738941268529743,14.186109567526728,14.27919072424993,14.313757852185518,15.044144304934889,15.478037488181144,16.04500450985506,16.70136635703966,17.364895025268197,18.080070068128407,18.4917953023687,18.40597693156451,19.39307588338852,19.289054665714502,19.48374005453661,19.727078915107995,19.43717827089131,20.08915032632649,20.21935137035325,20.99020460760221,21.47505072457716,22.365280409809202,23.28070482891053,23.453626294620335,24.37529517756775,25.154027332551777,24.986631924752146,25.00418008165434,24.08598460908979,24.353727587033063,24.443941371049732,24.64173351833597,25.18247998598963,24.992513921577483,24.78539994172752,25.777478157542646,25.248074336908758,24.32325297826901,24.03207630291581,23.27970103919506,22.426331551279873,21.858039617538452,22.06155640585348,22.718913330230862,23.22550531476736,22.795692631509155,22.69358141673729,23.50678003858775,23.204580430407077,24.164079654961824,24.875668419059366,25.08986922353506,25.837338022422045,25.157485305331647,25.738511393312365,25.654752952046692,24.7124181012623,24.54254253907129,24.911941844038665,25.7011043173261,26.39660472376272,26.543781927321106,27.025839826557785,27.31879434082657,26.427269614301622,26.950143690686673,27.544445695355535,27.08163038175553,27.44471004465595,26.755082583986223,26.014069837983698,25.824401653837413,26.66719040554017,27.48006370756775,27.80008677020669,27.62193559203297,27.271367595996708,26.776313696987927,26.17574397381395,26.050642528105527,25.18242843868211,25.6236390392296,24.654985290952027,24.98993417667225,25.240373151376843,25.12532042618841,25.614048121031374,26.348815036937594,27.20342805190012,26.27620989503339,27.093869634903967,27.621286044828594,27.48786505497992,27.185297654476017,26.300683901645243,26.264502577949315,27.159293852746487,28.003936398774385,27.949752799700946,27.699865755159408,28.49110380653292,27.67175328824669,27.157666731160134,26.49912518169731,27.183549858164042,27.705018790904433,27.446701573207974,27.507356009911746,27.76766599016264,28.54615333909169,28.109226054511964,27.7556218826212,28.28284389572218,27.637926670722663,26.75701580196619,27.015645975247025,26.501170864794403,25.658126494847238,26.358624261338264,26.069274045992643,26.025258417706937,25.99642281839624,25.155365777667612,26.08448135992512,26.5501252040267,26.51328000985086,27.315744725987315,27.230122791137546,26.300229237880558,25.459450464695692,26.15983829833567,26.888368004933,26.6357758869417,27.364078455604613,28.29765726532787,28.575933177489787,28.313929924275726,28.60469993762672,28.673704428132623,29.558872879482806,28.822075124364346,28.25742638250813,27.591527985408902,27.921290394850075,27.53863998875022,26.659888739697635,27.141308473888785,27.445002713706344,27.11924431519583,26.273701845668256,26.663651725742966,26.589711107313633,25.61950820730999,25.522146658040583,25.889774728100747,26.294871690683067,25.914791164454073,26.914287120103836,26.747938856016845,27.214973077178,27.633388800080866,27.69121188344434,28.309862427413464,28.74860415654257,29.474497043527663,29.505811552517116,28.562952356878668,29.334272919688374,28.372036556713283,28.662185817491263,28.862032750155777,27.864483875222504,26.8978331387043,26.94303783774376,27.481709606479853,28.221284377854317,27.420735644176602,27.67468496784568,27.74854498822242,28.308785997331142,27.73974373890087,28.64004319254309,27.651118144392967,28.553386782761663,29.223137840628624,28.516474025323987,28.611571948509663,27.737289790064096,27.419888668693602,27.03076174063608,27.552606467623264,27.226622432935983,27.303431359119713,28.0425001680851,27.085678251460195,26.55864675855264,26.931521240156144,26.135594630613923,25.400639818049967,24.45943266293034,24.271095890551805,23.754466298036277,23.879774319007993,24.325077967718244,23.847934586927295,23.14359112875536,23.627374173142016,23.201203824486583,22.310142430476844,22.068698845338076,22.260333582293242,22.112670185044408,22.64914113841951,23.255744729656726,22.304972953163087,21.579763695131987,21.044713584240526,20.57161532342434,20.91712055495009,20.335298486519605,20.148405066225678,20.08218522882089,20.752944846171886,20.758141046389937,20.281621335074306,21.180118062533438,20.26350930146873,19.559699381235987,19.338481799233705,18.603835709393024,19.042047292925417,19.234255445655435,18.783296594861895,19.323769334238023,19.657657869160175,20.244098966475576,20.63523497618735,21.070359588135034,20.08934751385823,20.04131520492956,19.053190593142062,18.26273446669802,17.365377152338624,18.176613168790936,18.188277463894337,17.906380199361593,17.705870650243014,16.800779666751623,16.771920959465206,17.03030481003225,16.04689097357914,16.65806704480201,16.742592609487474,17.525924451183528,17.867188807576895,17.180915717501193,17.590842901729047,16.942740379832685,15.958633578848094,16.00246022408828,16.168861450161785,16.550018890295178,15.65608391398564,14.76187743479386,15.513026604894549,16.22173671424389,16.04990447498858,16.496657140552998,17.03460620995611,17.924798996187747,18.43943800032139,18.00405618874356,17.782449764199555,17.398520476184785,17.3550945809111,17.925468059722334,17.944545283913612,18.941732729319483,19.299377461429685,19.40436257654801,18.97054840112105,19.05692984117195,18.987147079315037,18.12707607401535,17.982411655131727,17.686535415239632,16.91475718282163,17.09327718941495,17.15067648794502,16.295883886516094,16.80449455883354,15.938943929038942,15.096498261205852,15.595645791850984,16.45467803394422,17.213961045257747,18.091297019273043,19.010559999383986,18.081176259554923,17.79289138223976,17.76107842102647,18.69476889166981,18.339717240538448,18.03614477114752,18.202235952485353,18.708294820506126,18.9166922098957,19.88506963197142,19.563117427751422,18.713882415089756,18.707364367786795,18.2540795779787,18.513919596094638,17.948161089792848,18.53909053374082,19.159986576531082,19.04116344731301,18.90848561329767,19.723999575246125,20.547376347705722,21.46692349947989,21.262415974400938,22.210515053011477,21.274007187224925,20.916736194398254,20.65103174513206,20.739668160211295,21.061585918068886,20.84292037272826,20.0582062038593,19.35423749918118,20.074347171466798,21.05181729188189,21.753425774164498,21.664280175231397,21.116440562531352,20.241526930127293,20.25974612450227,20.131838403176516,20.0146779762581,19.86141986399889,20.266054391860962,21.071035478729755,21.183668788522482,21.909366438165307,22.744818275794387,23.44328415207565,24.206414804328233,23.757477045059204,23.039461045060307,22.682027363218367,22.455563119612634,21.778348851483315,21.601170489098877,21.86066168639809,21.31415782030672,22.204028230626136,23.021050286013633,23.497321904171258,22.887935927603394,23.302674507256597,24.166209331713617,24.944810573011637,25.59949285769835,25.2452439526096,24.99481879454106,25.62960009323433,24.85500000230968,25.26123446924612,25.927987943869084,25.714126631617546,25.49521739501506,26.395583672914654,26.43969100806862,27.329751988407224,27.062097744550556,26.496211241930723,25.87920036772266,25.67644310183823,26.229056518059224,27.14153644349426,27.979357857257128,28.463943170849234,29.255894212052226,28.83504993468523,29.78266046755016,30.146979622077197,31.036413395777345,30.415744504891336,30.596153365448117,31.53644928475842,31.044978539459407,31.722935263998806,30.919356257189065,31.035222799517214,30.461386173497885,30.000573374330997,29.341252406593412,29.040309538133442,29.657677884679288,29.48960600513965,29.52260157186538,29.566799150779843,29.644036605022848,30.027171088848263,30.8162070219405,30.093978670425713,30.235256801359355,29.310661027673632,30.1719984090887,29.8876412846148,29.56990818725899,28.764324293937534,29.171214990783483,28.421100990381092,28.927255269140005,29.07568804686889,29.771940665785223,29.411680080462247,30.355899149551988,30.746171959210187,31.64274970255792,31.087855448015034,30.921054952777922,31.79749621031806,32.0385518791154,33.02642372343689,32.621333349496126,31.965818358119577,32.11412016116083,31.315303966403008,32.208692067768425,33.09446827787906,32.940008704550564,33.375600532628596,34.0912422738038,34.02612762246281,34.28535925690085,34.95225822692737,35.02441324014217,34.2037389408797,33.81799151469022,34.414426155388355,34.52104895655066,34.04125801101327,34.045285895932466,34.26440562913194,33.40962169179693,34.27644569892436,35.0557832964696,34.65689808130264,34.713906408753246,34.817670243792236,34.175565507262945,33.427757031749934,32.99900185922161,33.98760284297168,33.89486003667116,33.074546311981976,32.48260811343789,32.900443458464,32.19079633895308,32.99966324912384,32.4668143754825,32.51527565903962,33.007276460528374,32.14063484640792,32.18571936711669,32.66953938128427,31.772459207102656,30.88082366855815,30.622847327496856,31.435296051204205,31.35754511365667,32.185167307499796,31.224127053283155,31.72639324469492,31.214785795658827,32.19282459560782,31.451364966575056,31.4166903286241,31.213988435454667,31.613416898064315,31.274024991318583,31.56971720047295,31.1206137672998,31.76681463373825,31.157153938896954,32.06786498334259,32.46035160077736,31.62059645075351,32.11809037765488,32.00636005401611,31.524563759099692,31.803736709523946,31.876991068478674,31.583826498128474,31.919755931943655,31.97535118414089,32.86140828533098,33.166069611907005,32.80941359512508,31.811161004938185,32.451825161930174,32.147884861100465,31.339741673320532,31.33457699464634,30.564928938169032,30.495484999381006,30.862110676709563,30.767172751016915,29.767596727702767,29.705703516025096,29.40593640366569,29.114433014765382,29.69226694572717,29.476472243200988,28.620755773968995,28.009150768630207,28.38176081655547,28.448810855858028,27.75859531061724,28.114929642062634,27.988566028419882,28.178241894580424,28.094767418224365,29.041428486350924,28.33032195502892,28.857239034492522,28.463636500760913,28.587433657608926,27.63275100244209,27.98358314158395,28.748507431242615,29.567869493272156,29.33543651876971,29.455618798732758,28.955316689796746,28.735678736586124,29.099429538939148,28.111067589838058,27.461872197687626,27.33486060379073,26.518426740542054,26.9902024557814,27.974194991402328,27.410028270911425,26.93976494949311,27.80353799974546,27.863379518967122,27.35953904967755,27.48160752095282,26.960008374881,27.69892031280324,26.741138180717826,26.404761832673103,26.07940863072872,25.640752023551613,26.130618246737868,26.382197473663837,26.491910726763308,27.05388778820634,26.17999593541026,26.399738000705838,25.401637402828783,24.616980045568198,23.970480979420245,24.83040303271264,23.949641361366957,23.076799363829195,22.211290349718183,22.63627323647961,22.29984650015831,22.496092895045877,22.12597595434636,23.031707440968603,24.016029559541494,24.085138238966465,24.966429050080478,25.662092175334692,25.258787624537945,25.00314397737384,25.716206326615065,25.64132050331682,26.488358746282756,26.25848367996514,25.576527070254087,26.21370473736897,26.97645416483283,26.896731328219175,27.429272542707622,26.495741137303412,27.310990694444627,27.718090639915317,28.294468296226114,29.01582413446158,29.855689308140427,30.81252560392022,31.60361798852682,32.309008886571974,33.07900093961507,33.09328889939934,33.28735950682312,32.714078567456454,32.805888610892,32.589389596600085,32.13372832303867,32.86691767210141,32.50388999795541,33.44673544308171,32.867960191797465,31.982498653698713,31.894389905501157,32.20665055559948,31.98000666173175,31.39717043051496,31.329533436801285,31.38968759542331,30.50737240863964,30.11273951176554,30.90286010550335,29.971583392936736,30.173697589430958,29.766935607418418,29.099950440227985,29.81713021034375,30.251645557116717,29.45663512777537,29.586267658043653,29.580167218577117,29.19455483648926,28.275239487178624,28.736967112869024,29.000358623452485,28.691179596353322,28.227025405038148,27.60617181751877,28.106114781461656,28.83122694399208,29.07717134198174,28.595677964854985,29.39428955409676,28.95457220217213,28.53915779851377,28.325452567078173,28.195849826559424,27.931316333357245,28.704309365246445,29.62171316333115,28.845723030157387,29.74963260674849,29.228939972817898,30.0048099742271,29.35184710426256,30.28147450927645,29.69962456356734,29.922352818306535,30.497393833473325,30.529509101528674,30.627655424643308,30.903785795439035,30.23549046786502,29.58939096610993,30.479159365408123,30.261299463920295,29.978874526452273,30.47920995671302,29.637122726999223,29.26081564463675,29.275283340830356,29.675614199135453,29.41239294409752,28.729532157536596,28.09221497969702,27.221345245372504,27.250813563354313,27.13103227270767,26.332486083731055,25.434561101254076,25.377641041297466,25.79478462599218,26.038996141403913,25.207991370931268,25.886527960188687,25.905563417822123,25.38962438609451,26.0481866504997,26.639923247043043,26.195668380707502,27.020140243694186,26.084878486115485,25.232455531600863,26.152535665780306,26.923459277953953,27.449095788877457,27.808074440807104,27.01569170411676,27.663137970026582,27.43317601410672,27.13847286766395,27.817462163046002,28.52673138678074,28.78466147556901,29.230709268245846,29.77790718851611,30.24539478076622,30.903742879629135,31.083624853752553,32.005729611963034,32.90368335181847,32.0962447989732,31.248440940864384,30.496149412356317,29.501280344091356,29.196674221660942,29.04984419234097,28.27973601501435,28.552874663844705,29.436130221467465,30.226270318496972,30.2327231913805,30.692990963812917,30.491792793385684,31.179073638282716,30.238037652801722,29.49273589812219,28.564068933948874,29.53198066400364,29.231077054981142,29.809574962593615,29.91122322017327,30.329533812589943,30.645312742330134,30.162482662126422,30.057474564295262,31.02416763175279,32.01670952094719,32.031455383170396,32.811267246026546,32.98767956905067,32.37503244634718,31.43295907601714,31.93471040856093,32.36345128249377,31.924756210763007,31.212268494535238,31.562688951846212,31.554262427147478,32.14206813601777,31.404580148868263,31.746433509513736,31.23082270892337,30.512462435290217,29.968109864275903,29.154258320573717,29.0118661490269,29.730501198675483,29.694551940076053,30.06728980783373,29.461215629708022,29.517866083420813,29.273933759890497,29.082749009598047,29.89514912944287,29.26856271037832,29.98950237594545,30.900172492023557,29.967881699092686,30.678249950986356,31.258780962321907,31.503367328085005,31.366736229509115,30.57963317586109,30.885902823414654,31.334999781101942,31.598623778205365,31.273037046194077,31.275833426974714,31.11109555652365,30.3629581136629,30.347020427696407,29.524294747971,30.26267003826797,29.602299544028938,30.017817347776145,29.10379337426275,28.23197646951303,27.658431491814554,26.795599636156112,26.699188793078065,26.410492011811584,26.899127130396664,26.301069002598524,25.917903592344373,25.422193981707096,25.276043973863125,26.058363622054458,25.21679625241086,25.129160039592534,25.859713088255376,26.858879454433918,26.159574758727103,25.173622083384544,25.503812918439507,26.425560121424496,26.122545844875276,25.288922067265958,26.131790376268327,25.292127087712288,25.798684870358557,25.083510254044086,24.356604961678386,23.419271818827838,23.368605869822204,22.862333610188216,22.62297724466771,22.813293538987637,21.978795784059912,22.87460884451866,23.39982050517574,23.98201288143173,24.320372289977968,23.42064616130665,22.929140905849636,22.00200193421915,22.866081196349114,22.829758849926293,23.823051534593105,23.830252326559275,24.76609848998487,25.29729383159429,25.091270003002137,25.419204513076693,24.897522763814777,25.7430586759001,26.236691553145647,26.655150485690683,26.11107683274895,26.824942791834474,26.079044885002077,26.438476206734776,26.124123965390027,26.506335627287626,26.48369426606223,26.833349650725722,26.355130364652723,26.036833522841334,25.042640572413802,25.13232208462432,25.798982499632984,25.628840452060103,24.997583639342338,25.702708072494715,26.421291813254356,26.558730892837048,25.57084351684898,25.473423813469708,26.44955098675564,26.758132209535688,27.032967003062367,27.295518796425313,27.310437173116952,27.19611873663962,27.244850176386535,27.725131848827004,27.765614982694387,27.870894882827997,27.397250219248235,26.91919082449749,26.403286804445088,25.69509628089145,25.62090531969443,25.30416259728372,25.656669817399234,25.49364590505138,25.565183377824724,26.321926242206246,26.656880747992545,26.45119447214529,25.880664609838277,26.610566132236272,27.31288964347914,28.239461418241262,27.933338813483715,27.97300523100421,27.846859068144113,28.70916817197576,28.642798596061766,28.31409693742171,28.46144638955593,28.170927279163152,28.567404897883534,29.081646733451635,29.982885621022433,29.20524936262518,28.91899195034057,28.53969697188586,27.836062873713672,28.05635915417224,28.393466119188815,28.313309985678643,29.171134484466165,28.96293708262965,28.59388954518363,28.661380694713444,28.073139078449458,28.769047148060054,28.155848412774503,27.3983453521505,27.33112222328782,27.60179090546444,28.202763317152858,27.673785084858537,27.03975748596713,28.01763750379905,27.74083393625915,28.040918977931142,28.832630736287683,28.240780268330127,27.75009026005864,27.368438784964383,27.50455917045474,26.627456538379192,26.837040765676647,27.038146754726768,27.101213979534805,27.987892681267112,28.77309835422784,28.584234470967203,28.941115436609834,29.46561337960884,30.093843961600214,29.53855729987845,28.961307810153812,27.965631968341768,28.41548482235521,28.00954604288563,27.549141025636345,26.790754325222224,26.454576562158763,25.817261528223753,25.120903307106346,25.83379994612187,24.98051190050319,24.4161790702492,24.59439895255491,25.38732223631814,25.42161935614422,26.318683091085404,26.817168581299484,25.96384722366929,25.971079520415515,25.038154512643814,24.94447546545416,25.796860311646014,25.89685193169862,25.472438965924084,25.958763386122882,26.091725826263428,25.85916551295668,26.16972048068419,27.14442919753492,28.018846874125302,27.659549455624074,27.086121084634215,27.16515969345346,27.631958234589547,26.67940371390432,27.298937998712063,27.06473944382742,26.478782575111836,25.592915827874094,26.422205973416567,25.776306768879294,25.660819807555526,26.106574854813516,25.678094565868378,25.223682584241033,25.127845028415322,24.861485947389156,25.23746741656214,25.6353269550018,26.430646164808422,25.827769729308784,25.763253331184387,25.622909788042307,25.53749358514324,25.815851993858814,24.889139759819955,24.36130700400099,23.964223239105195,23.62890119291842,23.312718592118472,24.2746906215325,23.551233574282378,23.929669197183102,23.092769336421043,22.800341410096735,23.194250386673957,22.917007992975414,23.48750221915543,23.26831189217046,24.252671570982784,23.71528293006122,24.082065966911614,24.647292076144367,24.147997483145446,23.486871355678886,23.798371501732618,24.456944163888693,23.8512320863083,23.013307405635715,23.73707702057436,24.703027109615505,23.960397992283106,24.501421733293682,23.714437888003886,22.949635334778577,22.47326055029407,22.054538369178772,21.410657038446516,20.4522518645972,20.24938294151798,20.773370374459773,20.360968053806573,20.656029184814543,21.430176550522447,20.539160093758255,20.04588233632967,19.751276419963688,19.228065941948444,20.2063656183891,20.530538549646735,20.077938014175743,19.27299315063283,18.552781923208386,18.47424682416022,19.204596674069762,19.226840124931186,18.54274087678641,19.524266560561955,18.547290003392845,18.975387956015766,18.102292973548174,17.598030757158995,16.599291427992284,16.017635818570852,15.124687540810555,15.89637942519039,15.211166142020375,14.498578090686351,14.747227855492383,15.518324891105294,15.647905712481588,16.449243831448257,16.217314461246133,15.925068956799805,15.902849648613483,16.82720071496442,16.824651710689068,16.078069924842566,16.618633845821023,16.814499187283218,17.09126203134656,16.402837889734656,16.225013113580644,16.705106458626688,15.84482054412365,16.74093094980344,17.652499445248395,17.36692026630044,16.89063952676952,17.19868036545813,17.821663870941848,17.78351143654436,16.792441572528332,17.51173171401024,17.793876394163817,17.494731737300754,17.372652594931424,17.225805054418743,18.046615161001682,18.30118394922465,17.887025860138237,17.264634261839092,17.952029168605804,17.175995551981032,17.968352125957608,17.139587371144444,17.686148687731475,18.435471093747765,17.825495827943087,18.67624745843932,19.221113837789744,18.31771890958771,17.854699524585158,17.875066046603024,18.388935946393758,19.326129250694066,20.31328744161874,19.980047228280455,19.31020509498194,19.360553425271064,19.625932504422963,19.315312856808305,19.619951157364994,19.761930126696825,18.937661378178746,19.24706762796268,19.155552418902516,18.21666507096961,18.0828053583391,18.206851582042873,17.375330140814185,17.056869597174227,16.307656763121486,16.18351569166407,15.39988044463098,15.3477130131796,16.06562850717455,15.249754582997411,15.820907039567828,16.63961567915976,16.19433432817459,17.189435828011483,16.962315794080496,17.115867330227047,16.253412585239857,16.231669699773192,16.679979326203465,17.122490954119712,17.36882425751537,17.69067977881059,18.014662956353277,17.828121496364474,18.51661602128297,19.049683302640915,19.934480969328433,19.178053895011544,19.565933727193624,19.244391380809247,19.999279758892953,19.929165991488844,20.11030321707949,20.993437917437404,21.52407193556428,20.60021462989971,20.93684507207945,20.545410771854222,21.4053287464194,21.536205280106515,22.341361582279205,21.793701365590096,21.3004531795159,21.47143071051687,21.194337736815214,21.626715429592878,21.75281463842839,21.376826642546803,20.84052531933412,20.821711118798703,20.5655769999139,21.336444553453475,21.868960447609425,21.943977613002062,22.686391196213663,21.987407110165805,22.31091727456078,21.39415754796937,21.91906319046393,21.949843720067292,21.59492467995733,21.500013274606317,22.310857428237796,21.973285058978945,22.706367422826588,21.901557446923107,22.375503103714436,21.873519499786198,21.759654791560024,22.14773189369589,22.47799475491047,22.57438867352903,21.73298689024523,21.493917615152895,21.73212052648887,21.664586854632944,21.43773507187143,21.67503649974242,22.29072279902175,22.685157577507198,22.188873160164803,22.719351559411734,23.10966247925535,23.381277536507696,23.29657300328836,23.222155422437936,23.52009763615206,23.353692366741598,24.217449565418065,23.54822543542832,23.137179683428258,22.94721215311438,23.71106598386541,23.372400076594204,23.505561335477978,22.65607843035832,22.181598292663693,21.2399978954345,20.4626717409119,20.260545576922596,20.25832219235599,21.18579045822844,20.510622481815517,21.03091741260141,20.56393946427852,20.586631825193763,20.943115120287985,21.05299187405035,21.498161673545837,20.539758453611284,21.019125542603433,21.462416652124375,20.7403736198321,20.256296446546912,20.57201769016683,21.302789468783885,21.43705554306507,20.70807172683999,19.72543498221785,19.014265012927353,19.88389321556315,19.012441733386368,18.034826638177037,17.22350147087127,17.81603528279811,18.73128261603415,19.097447821404785,18.7610066793859,18.03677215287462,17.77669180650264,18.02517588948831,18.480234141927212,18.810321706347167,18.927923590876162,18.828247539233416,17.982396356295794,18.56358328461647,19.265932392328978,19.468096093740314,19.63103002961725,19.340134422294796,18.847884045448154,19.552945364266634,20.021315265912563,20.565903865732253,21.53092199889943,21.0897467834875,20.92620634427294,21.440337277483195,21.32419897383079,21.619465065188706,22.370567359030247,22.417706057894975,23.399887785315514,23.890801418572664,23.640942530240864,23.80357298301533,24.03919566422701,24.196256997529417,23.834093933925033,24.443964812904596,23.61601248709485,23.242126503959298,23.157223739661276,22.37584093492478,21.63023944897577,21.125989300198853,21.003977581392974,20.828355080913752,20.579118772409856,21.229619964491576,21.34141463181004,21.447486642282456,21.722231392748654,20.833364163525403,20.738517216872424,20.806986006442457,21.62878811592236,22.616973381023854,23.32118122978136,22.373919317498803,21.769976552110165,22.241603611037135,22.081406677141786,22.731550111901015,22.301092095207423,22.539199194405228,22.010585027746856,22.45012062927708,22.000620174221694,21.206318251788616,21.61332036415115,21.76124897878617,22.317978797480464,21.796223502140492,20.840264319907874,20.10568148922175,20.595422339159995,21.15622769156471,20.411800713744015,19.53860935755074,20.0553825693205,20.793247330002487,21.388282984960824,22.17620204249397,22.404793705325574,21.579062986187637,22.048940520267934,22.337320156395435,21.57010112889111,22.530687438324094,21.690907432697713,21.90582981519401,22.101204068865627,22.36386579507962,23.27343350276351,23.404167614411563,23.467837211675942,23.732186927460134,24.052363721188158,24.442162956111133,24.67849646648392,25.22846863977611,25.003740392625332,25.098774816840887,25.89566136803478,25.20245631877333,25.642722440883517,25.676988213788718,26.322968805674464,27.10653441492468,26.62437321431935,26.361270753201097,26.02090745884925,25.495948347263038,25.77841786155477,25.482491790317,25.23030820162967,25.94809555960819,25.102706770412624,24.627987605985254,25.534531408920884,26.488384744152427,26.07497223513201,26.18319930881262,25.915697428863496,25.189459922723472,25.23811119282618,25.355623471084982,25.119483805727214,24.863198566716164,25.835127697791904,25.686715337447822,25.904591533355415,25.415370816830546,24.837544274982065,25.70083110081032,24.973975220229477,24.59598197788,24.34518410032615,25.059967130422592,25.205625187139958,25.139285549521446,25.85511737316847,26.603911246638745,26.984790770336986,26.081517375074327,25.261106096208096,24.680195436812937,25.321991857606918,25.921174242626876,26.628716545179486,26.094520341604948,26.66596391564235,26.4895579055883,27.1118993870914,27.3687641620636,26.610632637981325,26.14580791350454,26.52992833312601,25.983997496776283,26.390316491946578,26.383401232305914,26.67353231040761,26.484583283308893,26.620922503061593,27.318224143236876,26.78542924579233,26.739697684999555,26.870381835848093,26.8510531084612,27.2225157241337,27.580053884536028,26.643743301276118,25.89703853148967,24.97192000458017,24.91039067413658,24.935418808367103,25.794511458370835,25.805654815398157,26.69816681649536,27.102354088332504,27.954267425928265,28.93739047413692,29.508590013254434,29.551108254585415,30.262698078993708,31.192196362186223,30.22212398611009,30.500140376389027,31.446613188367337,30.47036194894463,29.80918276356533,30.0314294048585,30.319319264497608,29.559894908219576,29.603529940824956,29.735857632476836,30.373874852899462,30.489981103222817,30.378865981008857,29.8324678177014,29.404945658985525,29.262049804907292,28.699275558348745,27.741108944173902,27.35142481746152,28.264522685669363,29.09980267472565,29.372585503850132,30.09558922657743,30.206420110538602,31.088343635201454,31.884219836909324,31.252694758586586,32.00611857371405,32.69477035989985,32.60355193866417,33.248996026813984,33.11932556191459,33.041460109874606,33.04055929649621,32.24940791539848,31.38275291118771,31.49094781000167,31.35455800453201,30.44918261980638,30.135318029671907,30.354220302775502,30.74535813741386,31.29006129875779,30.599131064489484,30.75562624912709,31.39638982573524,31.90036227926612,31.91362045845017,31.6655158046633,31.33385340217501,31.332010116893798,31.42570998566225,30.764426824171096,30.571284134406596,29.71158438315615,29.098617721814662,30.02187546575442,29.071121935267,28.669590362347662,28.034808072261512,28.72409681789577,27.76749804057181,27.84675099235028,27.813423504587263,27.78444222221151,27.83121436322108,28.317777527030557,28.094004874117672,28.53437696956098,29.259203573688865,29.217890501488,29.494880018755794,29.94628734746948,30.355313749983907,29.560624150559306,29.031805707141757,29.09065602440387,29.655053860507905,29.85732587845996,30.664541203528643,30.40424150787294,30.96960027096793,31.387847727164626,31.653661358635873,31.92887071100995,31.555533084552735,32.15053879423067,31.486479685176164,32.03265599254519,31.3145264191553,32.020546950399876,32.34203961212188,31.57263517798856,31.059331287629902,31.78692128090188,32.24200736312196,32.33350919838995,33.25904720136896,33.76923232479021,34.56170720560476,35.081551177892834,34.542295372113585,34.17189196916297,33.62791837565601,34.45194296725094,34.87371911201626,35.825451895128936,35.92675114469603,36.89515068428591,37.257429694291204,37.758549058809876,37.514944202732295,36.92187291383743,36.57066618883982,37.4955824543722,37.92046297341585,37.597654465120286,38.10208738176152,38.43264932511374,37.442215104121715,38.25695649115369,38.34477489627898,38.81343236984685,39.69266629032791,39.014143188949674,38.30122356163338,37.479351981543005,37.37333513889462,37.71471336111426,37.08864228287712,37.74129850650206,37.72524582175538,37.7491106595844,38.105798123870045,37.119923788588494,38.05566741945222,38.22280964907259,37.61290821433067,38.090265159029514,38.859666399192065,38.74383014719933,39.62272176798433,39.21382422046736,40.07924214377999,39.593679616227746,39.40447940770537,38.94281326048076,39.562689737882465,40.36436890391633,40.75081503810361,41.02203332679346,40.68512654909864,40.792410222347826,41.343805889599025,41.348983564879745,42.00953509937972,42.033299983944744,41.89471840625629,42.1689221826382,42.35430314484984,42.70008492982015,41.86765988403931,41.14584527024999,41.75594354746863,42.53086061403155,42.129582973662764,41.54784171143547,42.51891172584146,41.567389329429716,41.11100901477039,41.06565139675513,41.17472642567009,42.06058637145907,42.4697238127701,42.956465946510434,42.86166357062757,43.21004925342277,42.7411398710683,43.0550615824759,42.7714921887964,43.73387066042051,43.59567226562649,42.77011137222871,41.85607030801475,42.39527275087312,42.18185994308442,42.20666813477874,41.55901398463175,40.857380863744766,41.263733975589275,41.61139832576737,41.71436692867428,40.7296503521502,40.264499072916806,41.17274004407227,40.294019997585565,39.837054243311286,39.819333873689175,40.5911431745626,40.4706520633772,39.48547773435712,39.322055536322296,38.42323276354,38.88997068721801,37.949074781965464,38.91921370802447,39.37745466129854,39.46987629728392,38.61083365045488,39.560894917696714,40.39053300442174,40.828715009149164,39.903662795200944,39.12982836877927,39.28100919537246,39.29467137111351,38.49400428542867,38.74780513951555,38.02755847806111,38.76218836102635,38.781252118293196,38.14374607428908,37.291516518220305,37.000124908518046,36.92009864933789,37.772150644566864,38.75011904211715,37.77543283673003,36.977950875647366,36.93298654584214,36.059574575163424,35.35826844908297,34.73741766065359,35.24852291774005,34.821276254951954,34.047970961313695,34.28154553147033,33.41403623577207,33.14835359714925,33.05738759180531,33.8359411181882,34.46969767799601,34.25041558407247,34.707782241050154,34.75149200577289,35.009486365132034,35.717711127363145,36.06739979842678,36.014797180425376,35.97745189955458,35.317922056652606,34.32930936757475,33.8673417144455,34.65772477304563,35.18107450241223,35.107107310555875,35.48901274288073,35.83923891931772,35.43630810221657,34.84578022360802,34.28530511399731,34.71027453010902,34.465060888789594,35.4078079694882,35.607644909992814,36.283668940886855,36.621998033020645,37.003853427711874,37.15016067773104,36.6084367078729,36.8087672800757,37.12636130023748,38.05528668826446,37.09168587764725,37.38075664732605,37.53107898356393,37.04317015456036,36.49523740680888,37.47263904567808,37.845339814201,37.81972523825243,38.51652140542865,38.72654693201184,38.018883859273046,37.772649792488664,37.478082281537354,37.849651442375034,37.61020424030721,37.66809308109805,37.86573135200888,37.808766862377524,37.646234795451164,37.29706112481654,37.485562867019325,37.490654414054006,36.908888208679855,37.30035831686109,38.128087010700256,38.785438425373286,39.52033212501556,38.75675991829485,39.35343014448881,38.41671837121248,39.1633727978915,38.17902746004984,37.54063245141879,36.634966189973056,36.651488840114325,35.75222899345681,36.55606072861701,37.13938457146287,37.5159520348534,38.17667238693684,38.58781204232946,37.83830985520035,37.74678754620254,37.94017068576068,37.84252721630037,38.36380431475118,38.50253270473331,39.47771335672587,39.04414243949577,39.58480805018917,40.392828192561865,41.07641000114381,40.6197975310497,40.271865248680115,40.60876214178279,39.962061155587435,39.61910902103409,39.828361842315644,38.88244404364377,38.817961018998176,38.45762792555615,37.50575206615031,37.93290152074769,37.89773114211857,36.943632900714874,36.53456413093954,36.15433312486857,35.92319547291845,36.144812155514956,37.07528758235276,36.153678799048066,35.34979317197576,34.78929631737992,34.104915940668434,33.37283129291609,33.439718182664365,33.73142048576847,33.498035674449056,32.99665067298338,32.89004207029939,32.77547509595752,33.29851523833349,32.763419076800346,33.4625900038518,33.77582475170493,33.15591592853889,32.192200942430645,32.19136570720002,32.1316366288811,31.676666209474206,32.54310449864715,33.09184396825731,33.459033304825425,32.554705078247935,33.389416760765016,32.845978723838925,33.751421090215445,32.82927585253492,33.24712772574276,33.272390901111066,33.96380608389154,34.77498066984117,33.95235439017415,34.86834190925583,34.41375476354733,35.01448219176382,35.60060688527301,36.277622983790934,36.998186455108225,37.887254980858415,37.19427657686174,37.37640040135011,36.62408037111163,36.439094136003405,37.15759098948911,37.00741761829704,37.2782514533028,36.95077356044203,36.73101818980649,37.01904073450714,36.42504656082019,37.08860097033903,36.14761139033362,37.117195177357644,36.64216205989942,36.70617263391614,35.88423408335075,35.60550307715312,34.63362767826766,34.22515989933163,34.32882363116369,35.140048360452056,35.2424252894707,34.83124285005033,33.97589274542406,33.70377353951335,34.38516440894455,33.980346938129514,33.52315700100735,33.834715844132006,33.20786380721256,32.362103811465204,32.9361666305922,32.68928545201197,31.944100779946893,31.73327606031671,31.667194415349513,30.974460031371564,30.4063128833659,31.17402646364644,30.436269965488464,29.472363437060267,30.202015483751893,29.955700798891485,29.495652992744,29.359949508216232,29.20722427451983,28.465175246354192,28.833944860380143,29.35416538408026,30.27341077150777,30.34437869535759,30.508461041841656,31.286516717169434,30.871832894161344,29.948237977921963,29.046672174707055,28.484392313752323,29.482447484508157,29.04623090196401,29.558180667459965,29.092524588108063,29.794384533539414,30.571507973130792,29.98553125280887,29.034065349027514,28.766214333474636,28.35933835292235,27.7448216159828,28.707002732437104,28.645696402527392,29.3507617469877,28.61840436095372,28.271367757115513,27.521584547124803,28.424208370037377,28.259965962730348,29.186796561349183,28.864697587210685,29.70350606786087,30.201958598103374,30.700309085659683,31.236628409009427,30.348476667888463,29.817892648745328,29.63316768594086,29.953888502903283,30.43460281006992,30.96235968498513,31.18952393718064,31.02621493022889,30.77731504989788,30.157809004653245,30.795085730031133,31.499723953194916,32.364714306779206,31.612686184234917,30.998764311429113,30.252294286619872,30.186881077475846,29.57650851411745,29.79356349306181,30.111984490882605,29.63406656915322,29.905688798986375,29.616399847902358,28.918993611820042,28.278626339510083,28.68792208423838,27.78714092215523,28.41381151555106,28.964895883575082,29.438843325246125,28.532546686939895,27.658287815749645,26.737853832542896,27.098509463015944,27.80965474108234,28.538505194708705,28.24603118095547,28.308059258852154,27.91600630013272,27.77646419359371,27.915845680981874,28.649507527705282,29.048690646886826,28.67959224805236,29.39587122388184,28.935922611504793,28.9729120451957,28.19675572263077,28.189268737565726,27.97108561731875,27.050602878443897,26.203288309276104,25.745671570301056,26.24364233156666,25.86866374546662,26.611281062476337,27.361438813619316,27.339689839165658,26.629886294715106,27.03237900417298,27.99304448487237,28.659980038180947,29.5894877477549,28.656166618689895,28.615575121250004,28.366906160023063,29.053754693828523,28.94770356779918,29.937256697099656,30.840513207949698,30.59192771790549,31.049364788923413,32.042554592713714,32.82598032755777,32.86563598085195,32.58718818333,32.97308749053627,32.15349548961967,32.321319533046335,31.937173487618566,31.304655391257256,31.587087478954345,32.47472190251574,33.253526729065925,33.889126871712506,33.749143531080335,33.05076597770676,34.00629381509498,34.6257941192016,35.52618547389284,36.33273500856012,37.17392416251823,37.08105136780068,37.50979131413624,36.848925271071494,35.898564390372485,35.38677227916196,34.56136893760413,34.08960050530732,34.74138496723026,34.02894953964278,34.73983577685431,34.52105568861589,34.698322840966284,34.86755552049726,34.027578155044466,33.195930457208306,32.81605485267937,32.34020006330684,32.53494858369231,32.5119922766462,32.85181376663968,33.71343009499833,33.84685163805261,34.432648080866784,33.55180551065132,33.796412989962846,32.86537989927456,32.82620418025181,32.0422635730356,31.19432708946988,31.682730873581022,30.815728678368032,31.08925186889246,31.921672612894326,31.126330980099738,31.801250204909593,32.23761294130236,32.63258760096505,32.28738475078717,32.316063690930605,32.94614379433915,32.99743826454505,32.94829853484407,33.48403626866639,33.228594025131315,33.02295058872551,33.765912141650915,33.63774576969445,33.624778209254146,33.2994136903435,34.061727568972856,35.02674309257418,35.09334990940988,35.88287269230932,36.5366767346859,36.644086230080575,37.33560164179653,37.680275024380535,37.23796671861783,37.94236451666802,37.96294955397025,37.62220693938434,36.71807239856571,36.048284240067005,35.22199077997357,34.58175178570673,33.866490255109966,33.5251301843673,32.907187522388995,32.62999062659219,33.10241076676175,33.19717209413648,32.44925261801109,32.60860226349905,33.493475439958274,32.633446893654764,32.31601451896131,31.35100149177015,31.8700084653683,31.787543258164078,31.79012604150921,30.927294534165412,31.661582910455763,31.237513853237033,31.434488949365914,32.24815507233143,31.71977776987478,31.276130279060453,32.2268303418532,31.656067952048033,31.947216658852994,31.717079049907625,31.606993496418,30.948658942244947,30.904502604156733,31.096747673582286,30.36400404572487,29.63143178401515,30.278266831301153,30.953033046331257,31.61821603262797,32.538137507624924,31.666398353409022,32.382650337181985,31.560521265491843,30.758809484075755,31.284691613633186,30.29576672753319,30.839501473587006,31.328114146366715,31.862400986254215,32.00722048152238,31.08056671731174,31.582445403095335,31.303339590784162,30.7668541893363,30.097216264344752,29.840024086181074,30.77603209298104,31.30178401619196,31.14763568667695,30.522921200841665,31.01362059963867,30.435993722174317,30.534652666188776,31.050189012195915,30.83767456607893,31.309465222992003,30.851773548405617,29.88453741883859,30.551719509530813,31.463113073725253,30.598243275191635,31.097709552384913,31.757573153357953,31.91870860243216,32.59486823994666,32.14302601944655,31.43532053939998,31.948678982444108,31.31136019807309,30.786672743503004,31.171940420288593,30.481524378061295,30.14279081625864,30.25149075873196,29.828880155924708,28.97665946185589,28.65091733681038,28.108170059975237,28.506566817872226,27.675640385597944,26.83307628845796,27.243992019910365,28.150805928744376,27.25819039484486,27.243147919420153,27.62362046772614,26.969821584410965,27.11467194883153,27.573521037120372,27.632708550430834,27.243389757350087,27.571339789777994,26.88303223438561,27.464675868861377,27.095095227472484,27.769873776473105,27.646687949541956,28.25047047343105,28.98483805730939,28.519575492013246,28.246740308124572,27.844298793934286,28.482198394834995,28.317198120523244,28.94513078732416,28.97526571014896,28.75623460439965,29.395625980570912,29.691428266931325,30.316481065470725,29.523957661818713,29.0589088187553,29.50616210186854,29.731570589821786,30.309885812923312,29.551622732542455,30.21835307823494,30.554427241440862,30.153023324441165,30.548940651118755,29.771148799918592,29.747116265818477,30.601049715653062,30.905551911331713,31.486064438242465,31.38836776232347,30.48649316513911,30.888552631251514,31.857074953615665,31.89988658344373,32.720112229231745,33.6156778507866,34.44071029825136,34.038011943455786,34.30106924427673,33.987311698962,33.8942191824317,33.186880390159786,32.51380792353302,33.39334045955911,32.730304000433534,33.09933083318174,34.03420401364565,34.005048491992056,33.7541847047396,34.039299712050706,33.20676104351878,33.482307362835854,33.6380870831199,33.428197886329144,33.73620164440945,33.97710492601618,33.5818186099641,34.52764334715903,33.92049023415893,34.13190730847418,34.0890646581538,33.513761141803116,33.49411920411512,33.31350946985185,33.72471356252208,34.06420425930992,34.27382429083809,34.66467131767422,33.96762009244412,34.661550963297486,35.3834851118736,34.87806123960763,33.96736457431689,33.264740645419806,32.73331581009552,32.79621620476246,33.53713148506358,33.07146116020158,32.498502797912806,31.779119407292455,31.748545847367495,31.364484999794513,31.652063861489296,32.169982319232076,32.33757362002507,32.225662319455296,31.93141192337498,32.58413060661405,32.73312549572438,32.39561731321737,32.52376832300797,33.28605637792498,33.274016288109124,33.755033103283495,33.451228256803006,33.17499270895496,32.745691194199026,33.155263871885836,33.077821373939514,32.75116756884381,32.26279762946069,31.416089521255344,30.553443713579327,31.2168670152314,31.726060433778912,31.65598369902,32.00411287043244,32.284830783028156,32.62759536365047,32.944001683965325,33.38742289924994,33.045951039996,32.67270174995065,33.57293034624308,33.202816270291805,33.60561993904412,33.516175689641386,33.5540056261234,33.92158553330228,33.390604032203555,33.33964265976101,33.991398935671896,34.60495924344286,35.28580723097548,35.65259321220219,34.877368652727455,34.58717389963567,35.5386183205992,35.04385463241488,34.50242133438587,34.9839525395073,34.95501083787531,35.5018430785276,36.34468201501295,35.56426218338311,35.262917312793434,35.14031261857599,35.244713843334466,34.630220791790634,35.11377220740542,35.71498471964151,36.00984889874235,36.9188941065222,37.78503488609567,37.323631033767015,38.12189564015716,37.86051223566756,37.286513783503324,36.801832562778145,36.94034996628761,36.633727714885026,35.88413420878351,36.54922737041488,36.222524602897465,36.82108857529238,37.74855631310493,37.081082268152386,36.52620741864666,37.37881001876667,37.351026211399585,36.8561474122107,37.26380240544677,37.82049470860511,38.60300323460251,38.543229221366346,38.71066741226241,39.30539947329089,39.71357761416584,39.80755530484021,40.21013317955658,40.06163841113448,40.46540734032169,41.21348251309246,40.22347962111235,40.33432121388614,39.654388221446425,40.163115752860904,39.17872573295608,38.68833271879703,38.669060443062335,39.50861791335046,39.56979178264737,38.99960881052539,39.242551463190466,40.06581664690748,39.95138894300908,39.61530484678224,39.192810447420925,38.31916246050969,39.009251970332116,38.62105121044442,38.485185507219285,37.719562312122434,37.772479890845716,36.943735339678824,36.939768137875944,37.648978234734386,38.603184110019356,38.812992725055665,38.97288331808522,38.89862144505605,39.20268322248012,38.96187470853329,38.204197206534445,37.51334181474522,37.229356565047055,37.280379032716155,37.873082688543946,38.48543585650623,39.19785377709195,38.43917833361775,39.18513523740694,39.61619130522013,38.955314732622355,39.459088161587715,40.10525787062943,39.66157622123137,39.47816414665431,39.22781900689006,38.42864752700552,39.24455998465419,38.27841469831765,39.044748459011316,39.18295044451952,39.00562648056075,38.505454800557345,38.65936403814703,38.4230283764191,38.86559689603746,39.33145888661966,38.93453229311854,38.45703716436401,38.36557751800865,38.79027451109141,38.96565298689529,39.69598797056824,40.53603405691683,40.578930127900094,39.76705297641456,39.92401996534318,39.81357217486948,39.22772732237354,38.99864170094952,38.00535113969818,37.8324063224718,36.90821343846619,37.24177842773497,38.03237108886242,38.54824370983988,38.53139191027731,39.13593979040161,39.630087974481285,39.304941601119936,39.2812425470911,38.85532313073054,38.61526737688109,38.41876063589007,38.33649420598522,38.710584255866706,39.310976452194154,39.15531342010945,39.23428245307878,39.309718953445554,39.91672068461776,39.13669360987842,39.12985462928191,39.489819664973766,38.636492455843836,38.47068226290867,38.384071320295334,37.59336101030931,37.30669918842614,36.49166603013873,36.57799925049767,37.4158742018044,37.62124262144789,37.543663401622325,38.15997451217845,37.933142575901,38.85853975545615,38.21946723526344,37.43785776337609,36.93711671931669,36.3579457369633,35.570005257148296,34.87552921799943,35.24787514843047,35.39912455389276,35.079136645421386,35.91349415760487,35.40742811607197,34.51546272216365,33.77122461423278,33.370604229625314,33.99686901597306,33.74481769185513,33.26046082796529,34.194700631313026,33.322043846827,33.22309437347576,33.231156731490046,33.53240891965106,32.656000109855086,32.90835905028507,32.02827453054488,31.98399346647784,31.61634389590472,31.295536315068603,32.10256949393079,32.048390306998044,32.4670523959212,32.20823982544243,31.712562601082027,31.50870509399101,31.3073641336523,30.39006178546697,30.382812519557774,30.697175371460617,31.507086620200425,32.20565704163164,31.278902118559927,31.13979115569964,30.238137605134398,30.93573386594653,30.867491939570755,30.687186513561755,29.990773438010365,30.020890530198812,29.958035595715046,30.139476655516773,30.669383481144905,31.074099362362176,30.726194072980434,29.841411632485688,29.282152053900063,29.649228824768215,28.68830852676183,29.11587225133553,29.445330689661205,29.0762845040299,28.40010762354359,28.24263592576608,29.19202901283279,29.276537847705185,28.748374026734382,28.669881684239954,29.453621444758028,29.885229900013655,29.086833904962987,28.25532881869003,27.52436071820557,26.660968934651464,25.812557162716985,25.534064177423716,25.47722434764728,25.992180961649865,25.01003226917237,25.151698565576226,26.016251080669463,26.92619043076411,27.336982778273523,27.350629386492074,27.96193864941597,28.193122243974358,28.984172980301082,29.143013402353972,28.58469559205696,28.941847656853497,29.783902807161212,29.02975198952481,28.972451312467456,28.392805612646043,28.529512363951653,28.58589100651443,28.43315192544833,29.306948132347316,30.056391002610326,29.23015391267836,28.420190408825874,28.559988623019308,28.73868957068771,28.457175234798342,29.317484964616597,30.295336093287915,30.69263428542763,29.804613629821688,30.17706094449386,30.397157634608448,31.293910303153098,31.535237587057054,32.22456851275638,32.45109690912068,31.921272234991193,32.612849487923086,32.20645384164527,32.16344162169844,31.635968034621328,31.55694941431284,31.186660680919886,31.35557785909623,32.062064316589385,31.957449515350163,32.254708104301244,32.70838378183544,33.31790572125465,33.677802715450525,32.841749344952404,32.52349098911509,31.89831604063511,32.57992368936539,33.131164299324155,32.787757978308946,33.06144638871774,33.3821767908521,33.068027399946004,33.483511828351766,34.03436175407842,33.45802285987884,33.216167686041445,33.72843820089474,33.921170205809176,34.09119586320594,33.27343318006024,33.928670852445066,34.627506618388,35.5551090631634,35.647958383429796,35.46613902086392,35.58339792769402,36.28273443225771,36.446819172240794,36.469047780148685,36.04524307558313,35.25294523080811,35.78829548228532,35.73249241663143,36.400311454199255,36.963007260579616,37.47020696150139,37.76548350881785,37.284175522625446,36.7333466000855,36.71205220464617,37.52883656602353,36.680840741377324,36.989375594537705,36.4896622071974,36.00118443323299,35.868461361154914,36.33232851838693,36.140542411245406,36.370944750029594,35.65585407987237,36.453482729848474,37.31820736499503,36.64569003880024,37.40335464198142,36.84802281251177,37.381606893613935,38.36758056934923,39.26167361298576,39.445619815494865,38.72638146998361,39.31303921621293,38.90901404386386,39.51825479371473,38.735290102194995,37.8613726622425,38.48553509963676,38.968247402925044,39.17704305564985,38.504208425525576,38.77885850192979,39.085875956341624,38.82565120700747,37.84720817254856,36.978595023974776,37.42401502933353,37.14697164809331,37.33403690205887,36.940118968486786,36.112288759090006,36.57077749585733,37.056591250468045,37.930771947372705,38.696920816320926,39.15571594517678,38.24126526014879,38.48706762352958,39.037064590491354,38.2009618896991,37.931985003873706,38.262059167958796,38.25530925998464,37.93183885375038,37.117445547599345,36.96877112518996,37.945263161789626,38.79649622924626,38.258829570841044,38.29620583122596,39.102187032811344,38.84908909536898,39.8370277043432,39.322760480456054,39.595767728518695,39.36127374554053,39.910290886648,39.438487976789474,40.13529843091965,40.13914992986247,39.978075842838734,40.686435053590685,41.33027639891952,41.19751089671627,40.98000433249399,40.278421954251826,39.86138317314908,39.06039041792974,39.00323387142271,38.88131515542045,38.82449446246028,38.34825961338356,39.31180633092299,38.33035054244101,39.16154884360731,38.656187675427645,38.251171936281025,38.09479621844366,38.04121167305857,37.14818423986435,37.22580005181953,36.76031995844096,36.152915322221816,35.36003229720518,36.29145664582029,36.22524019982666,35.3261568848975,35.09609996294603,34.944161891937256,35.84613999025896,35.283130552154034,35.0885817152448,34.24979849625379,33.63609270239249,33.96472284803167,33.19555427040905,32.49688743008301,31.541277319192886,31.789724056608975,32.46149228932336,31.729524565394968,31.456188415642828,32.38319489499554,32.777975568547845,33.086354525759816,33.840993044897914,34.023039164952934,33.538878608029336,32.9008781388402,33.717715120408684,32.99524598149583,33.736479283776134,33.06723750103265,32.89416213193908,32.24221253953874,32.23509298078716,32.4763738354668,32.154223922640085,32.60979563323781,31.77248057210818,31.949128345120698,32.72693002130836,31.875947744119912,31.441468076314777,31.148246332537383,31.300224841572344,31.02340339589864,30.145749941002578,29.66010070638731,30.126626536715776,30.361091968603432,29.769367584958673,30.26591468974948,31.071698246523738,31.212895567528903,31.479369728360325,32.28274526493624,32.783631302416325,32.31655460083857,32.0101794549264,31.604499182198197,31.920538116246462,32.536216002423316,32.42535772640258,33.06242129346356,32.147796703502536,31.214903980027884,31.589541680645198,31.869357865769416,32.49963411781937,32.807459528557956,32.789598632603884,32.590929014608264,33.24590897327289,34.07701577898115,33.09148998511955,32.69157002400607,32.23833330674097,32.64134464552626,31.68559200456366,31.57437788369134,31.435526348650455,31.30069600371644,31.054222244769335,31.60593975102529,31.245718807913363,31.69764938391745,31.95545110385865,32.703398363199085,32.267214701510966,32.640095262788236,31.66966858226806,31.59021696448326,31.507250648457557,32.06155049148947,32.332286027725786,32.63018669234589,32.63385146204382,31.802701494656503,32.240798477083445,32.260106842033565,32.60089978855103,32.752212352119386,32.04924041591585,31.085850711446255,30.853174208197743,30.84450591215864,31.63209087913856,32.565605035983026,31.89720341283828,31.465782057959586,32.085391376167536,33.05721942940727,32.835855743382126,32.91146852914244,31.939712625462562,31.09564974019304,30.340041964314878,29.975521284155548,29.416721092537045,29.38143532956019,30.16909389104694,30.83764503803104,30.409825526643544,30.081629193387926,29.338240803219378,29.159147154074162,29.545221330132335,29.359094919636846,29.929290789645165,29.711639691144228,29.604186835233122,29.036005930043757,28.577507224399596,29.324831161182374,28.357323059346527,27.965032461564988,28.393401431385428,28.442075316328555,29.312513837590814,28.6486654500477,29.226538398768753,29.160245095845312,28.264904501847923,27.4547362010926,26.981426182668656,26.34210509993136,26.891180718317628,26.45748322457075,26.781429023947567,26.434324983041734,26.970311236567795,26.638641849160194,26.676373347174376,26.041890930384398,25.266980280168355,24.911288316827267,25.32353155594319,24.944915428757668,24.19092007400468,25.152338543441147,25.596527051646262,26.533375940285623,26.653107811231166,26.080938716884702,26.882886016275734,26.273314328864217,25.933229268994182,26.477883123792708,26.281308465637267,26.46526345424354,25.992190644610673,26.011114820372313,25.994866077322513,25.64891259931028,26.011419280432165,26.454444305039942,27.36984487902373,27.5359212863259,27.031572956591845,26.733493875712156,26.42043568333611,25.52569440053776,24.528593285009265,24.864022097550333,25.333113897126168,24.485575722530484,24.50927966600284,23.621816661208868,24.415878547821194,23.705634041689336,24.6942848470062,24.978641675785184,25.37407160596922,25.726018187124282,26.495371575001627,27.034291123971343,26.80427220184356,26.76500241132453,26.498013709671795,26.058853841852397,25.195605508517474,25.361512714531273,26.283640678972006,25.423252530395985,24.49911572225392,24.27916566794738,24.0638938350603,24.71653462573886,24.976571942679584,24.499583509750664,24.616947897709906,25.258643958717585,26.06604378344491,26.48971589654684,26.013890539761633,26.287555054295808,25.387180238496512,26.076354750897735,25.91722776275128,25.388995707966387,25.224999542348087,25.037145890295506,25.282401564065367,25.140332856681198,25.265885868109763,24.62674304936081,25.482085620518774,26.43455704720691,25.844362801406533,26.59262538421899,26.73060602042824,27.225429483223706,27.76132004475221,27.81056548608467,28.22351263742894,27.300719532184303,26.84002248523757,26.723766369279474,26.6411728519015,25.89008265733719,25.095452738460153,25.517751182429492,25.202561197336763,25.64935733610764,26.538118700496852,26.6489314311184,25.888835493009537,26.584915755316615,26.072151204571128,25.98805480124429,26.594560453202575,27.563200148753822,27.961942459922284,27.812261406797916,26.9188244799152,26.613153642974794,26.88767033815384,26.29167236201465,26.63237908948213,27.38346475409344,27.337250456679612,26.589911287650466,25.88913114229217,25.997178675606847,26.76594107085839,26.001671920530498,26.524624309502542,26.139204590581357,25.303996216505766,25.867850803770125,24.94326343247667,24.92918795812875,25.54515642207116,25.38156534032896,25.149096596520394,25.455414011143148,25.037712992168963,25.703099695499986,25.91037217574194,26.433607335202396,26.33006055606529,25.55934310052544,25.542022056411952,24.986648831050843,24.12498018424958,24.318524652626365,23.861572668422014,24.563921578228474,24.68687264760956,24.760955611243844,25.741569509729743,26.104577020276338,26.547188045922667,27.41932663321495,27.998629157897085,28.286226648371667,28.1344195259735,28.286591454409063,27.690486676059663,27.02712066937238,27.144226477947086,27.239534695167094,27.897242574952543,27.787939082831144,26.832176968455315,25.95720727322623,25.565193394664675,25.978491076268256,26.79098603129387,27.65738762449473,28.314268926158547,28.749874831177294,27.88225311320275,28.57939633820206,28.895215983036906,28.235329327639192,28.96752982120961,28.530567567795515,29.338081244379282,30.266816526651382,30.352821176405996,30.482014964334667,31.10274770669639,31.657783905044198,32.44777102814987,32.36655910033733,32.67653487622738,32.89667665073648,32.54104491882026,32.64484337950125,31.860303920693696,32.6276280162856,32.91466940753162,32.37653689691797,33.11560906469822,33.07934496179223,33.497260755859315,33.79291410371661,32.89590294426307,32.83657956728712,32.080467303749174,32.99807002488524,33.336594393942505,32.477014584001154,33.07067979965359,32.988821123261005,33.87482664082199,34.237349688541144,34.92297563748434,34.91394714033231,34.04859041329473,33.97139436658472,34.09218148002401,34.75341440131888,35.14864133344963,34.39833349175751,34.54773521237075,33.70361159183085,33.68075800407678,33.22040343238041,33.44675933429971,34.02382685057819,34.818634025752544,34.20693101780489,35.19247411377728,36.160224633291364,35.65112229157239,36.49399986304343,37.08245108509436,36.40773544320837,35.799622286111116,35.89831477869302,36.05425222450867,35.84446290927008,35.88847768632695,36.862419658806175,37.470768426544964,36.65256389928982,36.40779380593449,35.95946248760447,35.25018193107098,35.89024472050369,36.470533314626664,37.33329070080072,37.206576625816524,38.19201762787998,37.80816650995985,37.446571432985365,36.53667803714052,37.07751147262752,38.04302034340799,37.94387373328209,37.43140700785443,37.79879071190953,37.88245535129681,38.48886452848092,38.30516086053103,38.923680214677006,39.11686315294355,39.53427396714687,38.95564339030534,38.02223908016458,37.20229702349752,37.18769018538296,37.9360694764182,38.07104005943984,38.641704187728465,39.46006159391254,40.45027560554445,40.255772640928626,39.50082785030827,39.172555844299495,38.74735851632431,39.40659139491618,39.934428334236145,39.2533276733011,39.12346632499248,39.674542964436114,39.80334939993918,39.623102604877204,39.08576782094315,38.869021050632,37.960590010508895,38.60444751335308,38.269286105409265,38.470819083508104,38.408115854952484,39.399156684055924,38.94273177534342,38.85322244139388,38.38849000725895,39.1922208131291,38.42289449321106,38.205169504042715,38.899285204708576,38.1680230665952,38.152848253492266,38.64982761442661,38.06547466851771,38.81114750681445,38.338942998088896,38.02062833076343,38.16410984843969,38.65853691007942,39.230175057891756,38.85205897130072,39.21456360211596,38.596276328433305,38.76523709855974,39.65217970823869,40.104561400134116,39.34431996848434,39.453005483374,40.02491259947419,39.38688970124349,40.02019384270534,40.811823840253055,40.50570357264951,40.726620813366026,40.04973296960816,39.225896978285164,38.92662241542712,38.090454580727965,37.765663894824684,37.1577593581751,36.93487670691684,37.179366930853575,36.83592821517959,37.620768688153476,38.02312893094495,38.244524204172194,39.21672841673717,40.067777790129185,39.470807591453195,39.7096614879556,40.47546818153933,39.67875445866957,39.939484748989344,40.648500559385866,40.76828991388902,40.8237574682571,41.30907924938947,41.90118589904159,42.76604863489047,43.291134607978165,42.81019142270088,42.49182846862823,41.559485188219696,41.34448213735595,41.04003819543868,41.62979408912361,40.64099258603528,39.77121042879298,40.62370309513062,40.50900101289153,40.049847366753966,40.707576259505004,40.09880504757166,40.72699522646144,40.503400947898626,40.4877994437702,40.03125599678606,39.84807854145765,39.23285840637982,40.10892926109955,40.41270004957914,39.825124476570636,39.65851743519306,39.40432881889865,39.445407926570624,39.527480367105454,38.810300644952804,39.70850222604349,40.57813699170947,41.37083567446098,40.75437212968245,40.36286049243063,41.20513275824487,41.81175267742947,42.38550806697458,42.12029373925179,43.03064886294305,43.66416404675692,43.955982693936676,44.77019606158137,45.451468345243484,46.32357191853225,46.62866346538067,46.328494269866496,46.39326134650037,46.52797757321969,45.854336622171104,44.866420244798064,45.411540812347084,45.95549080846831,45.01951149245724,45.92937403405085,46.57495703315362,46.69993952754885,47.1999923074618,46.22590896859765,45.77348147891462,45.646938083693385,45.854788439814,46.65713751781732,46.24933939334005,46.22544052125886,46.028146259021014,45.53750149253756,45.187457244843245,44.95988028822467,44.95727973198518,45.13030521571636,44.86817279132083,45.75656301761046,46.1755378767848,47.09380914596841,46.25062941154465,46.116925263777375,46.68893732270226,45.90875265514478,45.12865555891767,45.79708715295419,45.378593045752496,45.36854629497975,46.05816788226366,47.020812863018364,46.71845459518954,46.016127977054566,46.03864689683542,46.073564778547734,45.549735869280994,46.04282783064991,46.135177068412304,46.44844346959144,46.9511667303741,46.33890507556498,46.074302875902504,46.14297334384173,45.711605187505484,45.80135463178158,46.596916497219354,46.120528272818774,46.62783081782982,46.12101553287357,47.00055872416124,47.28128534555435,47.00597729859874,47.07531334692612,47.004851878620684,46.17943878704682,46.29026146745309,45.482649684883654,45.94525800226256,45.290656477212906,44.67364198435098,44.2165875537321,45.08931411476806,44.87992036994547,43.93911817437038,43.400029389187694,42.83315856708214,43.020285485778004,42.305006691254675,41.7318689241074,41.031791500747204,41.032760994974524,40.23582666227594,40.526523291133344,40.1010924205184,39.24433670891449,38.49034640053287,38.08506667660549,37.43910026876256,37.65569961350411,38.376541305333376,38.06712022423744,37.743410295806825,38.063297868706286,38.14393867738545,37.81854121107608,37.11419714149088,36.509108864702284,36.060916285030544,36.92090844549239,35.97559619601816,35.56047298433259,36.349734055344015,36.18347000563517,37.01856044586748,36.632342538796365,36.38477865140885,36.87859056564048,37.157988547347486,36.76570131862536,37.05385049479082,36.72946184827015,35.81439172150567,36.685101619921625,36.49999341042712,35.91534346807748,36.25856122840196,36.32350119482726,36.62018544180319,36.33388751093298,36.08783560059965,36.66155117098242,35.72656061453745,36.457478031516075,36.23650851333514,36.60309740109369,35.77965836925432,35.47576017677784,34.53102427488193,35.39310059789568,34.43711242033169,34.277903974521905,33.83230633288622,33.624935432337224,33.4966569817625,32.68650165060535,32.96956487791613,33.101121617946774,32.6206619781442,32.07708121044561,31.853914419654757,31.464890685863793,31.60510056698695,31.98353962926194,32.50055817980319,32.25332183763385,31.440944069530815,31.772739646956325,32.183566430117935,31.392076276708394,32.26191958039999,33.183727965224534,32.5688116569072,32.31365669518709,31.33862874470651,31.818347558844835,32.72801349544898,32.40621277457103,31.5878700283356,30.960920018609613,30.891305186320096,31.8759555965662,32.14582638209686,32.26573769375682,32.51010600011796,33.4712420203723,32.66982782771811,32.18226653058082,31.274484309833497,31.241194643545896,30.78719960199669,31.301034953445196,30.61514639761299,31.235391274560243,31.14245984517038,30.736152741126716,31.50007299380377,30.834226451814175,31.634833400137722,30.943615632131696,31.239108989946544,30.873767281882465,31.812338328920305,30.977056569885463,31.62457543844357,31.283991556614637,32.25417099753395,33.18378608673811,33.88722213404253,34.79144698753953,34.69323328323662,34.625418696086854,35.339800452347845,35.25807191757485,34.87054807227105,34.756937126629055,35.46628325479105,35.24528795853257,35.66593192983419,36.30661349231377,36.841073161922395,35.90306553291157,34.92057917499915,34.317428693175316,35.21635465975851,36.20753946201876,35.82913564192131,34.879953080788255,34.52960545150563,35.523981670383364,35.30495762685314,35.270217599347234,35.849886481650174,36.563915291801095,36.306391212623566,36.611673993524164,36.63236886775121,36.685242355335504,37.2920228401199,37.6256715413183,36.97405873192474,37.85828998405486,38.486325012054294,37.62598519586027,37.273634208831936,38.261004376690835,37.52890767576173,38.1189319929108,37.685069353319705,36.85602102102712,36.70646199584007,36.959514449350536,37.548665896989405,37.28544274577871,37.58907711179927,37.96222312608734,38.807515447959304,38.4359100102447,38.73682275880128,38.366251253988594,38.609997616149485,39.5353928944096,38.73853391269222,38.31333915842697,38.91210342757404,39.84411140345037,40.720121293794364,41.58887268928811,42.57547610392794,41.91046994552016,42.06246618460864,41.41352539509535,41.83040722645819,42.155677841510624,42.40093827992678,43.37151721306145,43.61496915342286,42.914461471140385,42.83852895582095,41.95235933922231,42.837556982878596,42.19921677932143,43.10580443171784,42.370971427764744,42.9604920996353,43.56841835565865,44.563317467458546,43.615793833043426,42.835237173363566,42.38923426531255,42.065013758372515,41.98289605230093,41.93232595035806,41.949378684628755,41.18803915474564,40.82907335786149,41.31232542032376,40.546725500840694,40.78247185796499,41.377422789577395,42.30297453701496,41.545746906194836,42.21078645437956,42.14920309605077,41.3262489954941,40.964376776944846,41.52831474784762,42.10738725401461,42.23386367317289,41.4773954320699,40.798929296433926,40.21630224213004,40.87875577202067,41.69518822012469,41.02661677217111,41.07774961832911,40.078447700012475,39.38282859092578,38.5135634848848,38.70194132812321,39.13912323024124,38.39005602244288,38.65765452384949,38.17533277720213,39.16626634588465,38.602258797269315,38.317457436583936,38.85854452289641,38.82493192376569,38.88413194799796,38.004410749301314,38.41945584304631,38.75359820621088,39.422859251499176,39.74704181030393,38.897890673950315,39.66372014954686,40.32600989518687,40.88630977226421,40.51535020209849,40.46608087094501,40.03969783522189,39.18471745355055,38.503138491883874,38.404256384354085,38.538595399819314,38.80917647853494,38.188962143380195,38.478362588211894,37.77442293101922,38.51636760216206,38.39924923796207,38.31134052015841,37.378375365398824,37.62360314326361,38.56045304564759,39.210100351367146,38.69681387860328,38.28512565372512,38.98089052317664,39.50911151338369,39.648830755613744,40.32551836967468,40.407043419312686,39.8910363628529,39.98033050773665,39.5617976100184,39.52578228805214,39.47928335657343,39.17160332901403,38.52024791762233,39.04471511859447,38.990879863966256,39.1819901089184,39.651961226481944,40.21191012347117,39.849808488972485,39.91440816735849,40.19352140137926,40.025123783852905,40.88643673527986,40.72047218633816,40.41255430690944,40.06559267314151,41.05521327024326,41.84895868226886,42.49153773672879,42.67528585949913,42.99222754314542,42.79723635176197,42.65478328708559,42.02779573434964,42.389775678981096,41.73652172135189,42.16899875178933,41.971304405946285,42.89299562713131,42.83653830457479,43.77630842709914,42.8025749376975,42.551127889193594,42.04394145542756,42.22854274371639,41.22860904969275,41.807813360355794,42.24498858023435,42.15228566061705,43.04858812736347,42.1836120239459,42.21630754787475,42.40596002480015,43.32925311289728,43.752866773400456,43.418509918730706,43.86194303771481,42.941427431069314,42.14562360662967,42.98600966203958,43.18142834957689,42.505081437993795,41.67266460414976,42.31625160900876,43.1923071234487,42.7014643936418,42.039485876914114,42.60204104427248,41.93312556762248,42.380641106981784,41.94177850522101,41.01777352625504,40.693175240419805,40.26734645338729,40.83180160680786,40.12949932040647,39.617623787373304,39.74301763391122,40.226224867627025,39.61279238015413,39.16761237755418,38.50107701867819,38.878972199745476,39.82694770954549,39.007644411642104,39.80459012184292,39.30511301103979,39.3114474946633,38.31778385816142,38.87691449653357,38.13256774004549,37.73246407601982,38.55788005748764,37.9677131427452,38.1701394924894,38.08051238209009,37.53601252613589,37.0488247172907,37.4761689263396,37.5718860886991,38.379043489694595,37.89410550240427,37.95348435128108,38.9295866410248,39.67356365872547,40.28687784355134,39.33373911306262,39.98255374934524,39.980989654548466,40.16892883274704,39.460548331961036,39.2945522274822,38.565484343562275,38.8592501222156,38.319902760442346,37.87966803833842,38.44566208543256,38.51781589863822,39.06322889216244,39.723536217585206,40.63620914937928,40.92511742236093,41.01249780599028,41.26394611177966,41.67839355347678,41.863405955024064,40.993744475301355,41.76329696038738,41.86812399793416,41.22036125836894,41.41567331459373,41.95737011870369,42.668824307154864,41.72356497589499,41.49433448165655,42.197893898934126,42.26195160113275,43.09750920534134,42.852181907743216,42.79847876401618,42.50307746557519,42.79504830017686,43.563128139823675,44.54295393079519,44.33876491431147,44.185792681761086,44.97261601360515,45.186400789767504,44.31400489946827,43.75038129277527,43.94393747206777,44.43257300555706,44.75518519524485,44.53485837439075,45.4092108188197,44.49711077706888,45.12594031589106,45.17228436656296,44.40317631792277,43.93759170360863,44.04694999195635,44.09628752991557,43.414077932946384,43.599111444316804,43.84273968311027,44.05167687544599,44.5099759157747,44.56891432357952,45.127889822237194,44.97553496994078,44.03619149001315,44.21398260584101,44.45328533556312,44.29252222087234,44.255630392581224,43.25847507221624,42.324224777985364,42.72013759519905,42.05051230546087,42.72540367534384,43.60371901234612,42.93439203687012,43.3583082142286,43.97181791719049,44.02444024384022,44.54618812631816,43.73544899513945,43.49256867170334,42.820698546245694,43.18783428519964,43.67431988567114,44.09471082827076,43.68793387012556,44.23899050289765,44.4507408645004,43.92736346554011,43.93643240490928,44.31028436869383,43.45419088890776,42.5649488302879,42.027741404715925,42.87633708445355,43.249416747596115,43.03743560425937,43.03662623418495,42.3463000501506,42.610473815817386,41.9855688251555,42.66631039744243,42.49276338331401,41.66694567352533,41.037543188780546,42.00938461301848,42.9045790694654,43.73794889077544,42.909803167916834,42.21034600911662,42.95704882172868,43.89840034209192,43.427648949902505,44.08632634580135,43.72031389037147,44.38661515247077,44.61313880002126,43.68317515170202,43.287406637798995,42.6869618059136,41.87484294688329,41.78464538836852,41.56026548426598,41.57271605124697,40.993318303488195,41.048599247355014,41.03608734579757,41.33740384830162,40.701522739138454,40.02078718226403,40.85421312926337,41.63356625055894,40.649534032680094,40.069509368855506,39.68468730524182,39.66290838830173,40.64340791804716,40.532075610011816,40.19517834065482,39.76544929249212,39.32174371602014,40.14294258877635,40.85276502138004,39.98071194021031,40.56185598671436,39.665769423823804,40.09219223540276,40.92991091683507,40.69738639565185,39.90870258258656,39.28159987460822,38.473003923427314,39.01580294594169,39.12110142922029,40.09827379928902,40.16192693449557,40.87656743498519,40.56577826105058,40.16596522228792,40.384894414339215,39.543223046697676,39.32012525945902,39.81827058130875,39.32857570145279,39.747955918777734,38.90756860002875,38.88640282023698,38.28129878314212,38.82508145272732,39.82447452098131,39.13090381352231,39.44954436831176,39.44051783531904,39.0656726998277,38.46197303337976,39.35025319457054,38.41809022799134,39.12495467439294,38.95862376363948,39.83561741979793,39.65747994277626,39.10434404714033,38.21004426339641,39.01207337062806,39.299455265980214,40.22999096522108,40.29612236330286,39.84011056693271,39.61142539046705,40.112810004036874,39.780353190843016,39.330175222828984,38.70170464925468,38.290371236391366,39.022912117186934,39.13189307693392,38.6271317563951,38.450863456353545,39.04969432996586,38.1506629223004,38.51852521626279,39.497878682333976,40.196238877717406,41.16066669579595,42.077727728988975,41.489882150199264,41.82548882625997,41.637465086299926,42.481460622977465,43.1405653222464,42.849299466237426,43.69020860269666,43.61809254344553,42.82431289367378,42.53515010885894,42.95592837082222,43.3706536302343,42.94811639050022,42.654534184373915,43.52098856633529,44.45763522665948,43.6050730147399,44.21795371407643,44.08944023074582,43.820076659321785,42.83865852188319,43.73703363630921,43.06907079135999,42.230899380054325,42.45608826354146,43.288023468572646,43.60046950029209,42.911389087792486,43.85839889245108,43.03579463995993,42.50118657806888,42.94247695663944,43.89064238220453,43.20386768551543,42.821298277471215,42.565590674988925,42.65950214397162,43.05947200674564,42.44648430775851,43.00346645992249,43.89917139755562,44.52722685504705,43.603943444322795,43.62770803179592,44.24497603578493,44.092095711734146,44.876907252240926,45.019302315078676,44.800222190562636,45.7882870528847,45.44784136209637,45.12079415330663,45.87838036054745,46.613735635299236,46.99762046756223,47.267197514884174,47.306850688997656,46.842035993002355,46.28565517812967,46.44428146770224,45.699774835724384,44.827304732985795,44.542343088425696,44.250009865965694,44.62784963985905,44.27429720200598,43.38690326735377,43.73551707342267,43.717213054187596,43.2808378986083,43.008962945546955,43.136285573244095,43.9552256250754,43.09137543430552,42.86796118365601,43.781441680155694,44.45693543134257,43.75871882587671,44.5263290903531,45.105687064584345,44.323752883356065,43.46496541472152,43.05489823408425,43.18594857957214,42.993844117969275,43.14307168358937,42.41869535809383,43.13029949879274,43.92562421085313,44.226453797891736,43.7575061339885,44.09140112251043,43.633379539940506,43.462921906262636,43.40621292172,42.85434353677556,42.066700893454254,42.76443965919316,43.183648767415434,43.40438095154241,44.24204329773784,45.21213784720749,46.14531363779679,46.24330157600343,45.34413600480184,45.58968853484839,45.48192605469376,46.442500999663025,46.625278510153294,47.36138329189271,47.4739321609959,48.136461910791695,48.23884182609618,49.094313419424,49.74787914333865,49.60993293719366,48.699165591504425,48.30026816064492,49.03279117774218,49.482954430393875,48.64834582712501,48.35295977629721,48.0173361627385,48.758134526666254,47.84729803074151,48.28950883075595,48.844606606289744,47.977412103675306,47.89322937373072,48.74383876658976,48.4129384229891,47.43659141706303,47.1634571752511,47.08268137509003,47.84481748659164,47.056427356321365,46.702535409945995,46.05230300221592,45.31850641220808,45.264532059431076,45.08385837869719,45.951283348724246,45.46781952679157,44.586528417654335,45.02260139584541,45.38487407006323,45.82521617459133,46.73935187468305,46.236285615712404,46.52832710603252,46.11988884862512,46.85957512911409,47.07908802200109,46.925272955559194,46.63737674057484,47.16772354114801,46.22370560653508,46.827217487152666,46.14738733554259,45.902759986463934,46.76171611761674,47.753427401185036,48.448644642718136,47.46611966425553,47.22583454148844,47.923170164227486,48.90817998489365,49.33739631250501,49.706797315739095,50.056996973231435,50.0699739693664,49.821755703072995,50.51925040828064,49.726245721802115,49.98580646608025,49.566084584221244,48.775674181059,48.6844584941864,49.27035944443196,48.62030145339668,49.13018265506253,48.856476202607155,49.59330653306097,50.4418470421806,49.62921177316457,49.00652306014672,48.123147435020655,48.11585091473535,47.53423334937543,46.948160763364285,46.92529765190557,46.10073372675106,45.221652486827224,44.7351702330634,44.05171265732497,43.70482552004978,44.40880099777132,44.092836286872625,44.59611420845613,43.88190491870046,43.14117647334933,42.435910280328244,42.429675018880516,43.00630234647542,42.06154471216723,42.18916728068143,41.95520474622026,42.03336361749098,42.82670720200986,41.86276790499687,41.442947323899716,40.47562950756401,41.2133837309666,40.349618647713214,41.34465678362176,41.939266664907336,41.082969159353524,41.63248442765325,40.97233733441681,41.60358105879277,41.50545635493472,41.68424979923293,40.68465254595503,40.70515805343166,40.05107956007123,39.34767317492515,39.01828106120229,39.87520057428628,39.56596913328394,38.955505998805165,39.87722875410691,39.50549667049199,39.441533035133034,39.35885848524049,38.72070426726714,37.896016931161284,37.10394848976284,37.664196122437716,37.189062987454236,37.8934724368155,38.846602549310774,39.33415500540286,39.136223966255784,38.187867301981896,38.12242450611666,39.10824825940654,39.721044812351465,40.52966027287766,40.17012985283509,40.662180428858846,40.87608293816447,40.846256841905415,40.23105437029153,40.92080790549517,40.60410884767771,40.52533847419545,40.00534767471254,39.97270979266614,40.85742936050519,41.39325376506895,41.86522237351164,42.81475372100249,43.14823170658201,42.498740069102496,42.549171873833984,43.25071721151471,43.56545037822798,43.75141240702942,43.70269390149042,43.12095225881785,43.312763039488345,43.115265938453376,43.26088563911617,44.253386763855815,44.17054472351447,43.20044660801068,42.58697588695213,42.11857581278309,42.78471027081832,41.96779766958207,41.29438227461651,41.87354730302468,41.58295191405341,42.518208956345916,42.00491010863334,42.306406339630485,41.9735756739974,41.35392957506701,41.293886337894946,42.0309745115228,42.89704220183194,42.43853926798329,41.67067548353225,41.943598637823015,41.249194900970906,41.51956742722541,41.32302702544257,40.538400107529014,41.225593333132565,40.9652679101564,40.793353114742786,40.49242191622034,40.952094406820834,41.46476304763928,42.310403322800994,43.11808292102069,42.9360645134002,42.111763942055404,42.87951833801344,42.5695551908575,42.3301819935441,42.02424370450899,42.407908419147134,42.27099616546184,43.015724080614746,42.46436705579981,42.24643676029518,41.56651534046978,42.11865544086322,42.14175825752318,41.434138470795006,42.31774583412334,41.701393601018935,40.975100480020046,40.92897300608456,41.53452842356637,41.01103537809104,42.00931924954057,41.37043772730976,41.935272783041,42.92799935536459,42.10887405928224,42.2654531057924,42.73140652384609,43.45825477410108,43.84625966148451,44.77254686690867,44.42377602215856,45.3964278283529,45.86115416465327,46.3021527659148,45.65071611152962,45.46873546158895,45.11992998700589,44.47805858356878,45.14761308161542,44.43641488533467,44.085447002667934,44.67449318431318,44.916702155955136,44.88972118170932,44.19934060797095,43.887038476765156,42.927886937279254,43.31270864745602,43.96033933153376,43.90187091846019,43.77094111358747,44.666191168595105,44.06264145672321,43.342210290022194,43.85252543492243,43.691867030225694,44.682250482961535,44.14318127557635,43.410267057362944,44.03589382674545,43.67977721942589,44.654705754481256,44.8140265326947,43.89952539233491,44.85052758920938,45.26383274933323,44.86983324540779,45.08368923980743,45.260322243440896,45.237398566212505,45.39549742080271,44.89408280653879,45.46220571594313,45.49426327319816,45.06833721045405,44.2584836659953,44.62209664424881,43.87442906526849,44.47318726871163,45.38001918280497,45.1814460339956,44.685263596940786,45.510176989249885,46.31728598754853,45.32371794199571,46.223460336681455,45.799867055844516,46.0520154312253,45.191703016869724,45.905900607351214,46.67394881974906,46.68691236525774,46.37460026796907,46.73818065226078,46.769693868700415,46.01086456049234,45.40705371694639,46.247273130342364,46.704435523133725,46.89933256711811,47.47725033853203,46.674605432897806,46.67288583237678,45.813964248634875,45.27724029868841,46.107341178227216,45.67527165822685,45.38711619609967,45.90891137672588,46.83516995375976,46.76917519653216,47.400161320809275,47.48152836272493,48.17501923954114,48.8430961095728,49.74294796725735,49.271649706643075,49.530072623863816,48.95699374610558,49.74940544134006,48.955924046225846,49.724134215619415,50.02315232902765,49.35162185924128,50.065190196502954,49.72745348094031,49.9817009116523,50.866293844766915,50.55846281442791,50.12358551751822,50.73586885957047,49.85500872833654,49.904487553052604,50.294683039654046,49.812896956223994,50.618032335769385,51.24353450443596,52.0458744536154,52.62593501852825,52.97360870614648,52.748996486421674,52.05287246406078,51.2715441393666,51.906026407144964,52.38803972583264,51.41805608989671,50.65263028582558,51.19862774666399,50.72799166943878,51.54037941712886,52.06719208089635,51.3716354095377,51.12169520230964,52.007242393214256,52.0811399044469,51.73528624139726,52.731812371406704,52.592681067064404,51.67478246195242,50.875722273252904,50.43698242958635,50.914190547540784,51.44119486166164,51.40969996806234,51.182465440128,51.29615917103365,52.24305194616318,52.83610921353102,53.14268288947642,52.85124036669731,52.399387328885496,51.67143514147028,51.33522600028664,51.02405310142785,51.711017878726125,51.6054013511166,51.89122114889324,52.70643037231639,52.33625917416066,52.97700997674838,52.26190794026479,52.310230186674744,52.04956109914929,52.606265608686954,52.08877022424713,52.77859580330551,51.99626348959282,52.514858974609524,51.68710046913475,50.77716916054487,49.80382244894281,50.14538787351921,50.6150661399588,50.481723732780665,50.486255748197436,51.28013411629945,50.38330074073747,50.9666357007809,51.785279172006994,52.10471273120493,52.85475193709135,52.84535898268223,53.56787119247019,54.2651422098279,54.05060385586694,53.94141714833677,53.11249850038439,53.18805392784998,53.20402461895719,53.2914783465676,53.80975769041106,53.535003662109375,54.318414421286434,55.104807822965086,56.10218158084899,55.45932343322784,54.96055717486888,55.3708391757682,55.218248426448554,54.60218424210325,53.62450090050697,54.38719966914505,54.455855996813625,54.43351873848587,54.48460674518719,54.67859223531559,54.17156629031524,55.058386070653796,54.865540778730065,55.517420466057956,55.61598280305043,55.47197475191206,55.85114691359922,55.295771536417305,54.73430308839306,54.47769425623119,54.514190192334354,54.959342532325536,54.19465199066326,53.60903707286343,54.52862484520301,55.12884703744203,55.37071265093982,55.907423741184175,56.263972353655845,56.834772295784205,55.99189565470442,55.72219190420583,56.417239111382514,57.38169321324676,57.254524467047304,57.15752851497382,57.97996480576694,58.08333683991805,57.714683670550585,57.807473827153444,58.1534840175882,57.637003413867205,57.36454810900614,56.701306571718305,55.85669346060604,56.84246451454237,57.125913482159376,56.561992480419576,56.736787827219814,56.56098549393937,56.42191771790385,56.986223488580436,56.00966350128874,55.76098100375384,55.949536989443004,55.94031688943505,56.59754233062267,56.95509713655338,57.24952897243202,56.29568497883156,56.357661943882704,57.19641320127994,57.038729117717594,57.204086240381,56.24827793193981,56.761340231169015,57.57647310150787,56.83718808647245,56.19790456444025,57.15630224952474,57.192207095213234,56.371139370370656,55.72547577228397,55.53962212149054,55.67991359671578,55.42867421079427,56.2262728959322,55.368584238924086,54.48616211814806,54.02466656593606,53.2798378826119,52.91040854435414,52.74177505122498,52.63366207713261,51.82479548454285,52.201723884325475,52.90021949261427,52.46714270254597,51.940749982371926,51.98100720625371,52.89418922364712,52.242878262419254,52.997182360850275,53.75297171622515,53.66328232502565,52.7340882611461,52.38136633532122,53.07529401127249,52.823295197915286,53.2390398895368,53.3122999118641,53.658821125514805,53.79971800139174,53.62770229391754,53.96208143653348,54.159737502690405,53.9546547816135,53.90450506750494,54.28746649157256,53.692819820251316,53.719942909665406,53.9557554544881,54.08693143352866,54.555970939807594,55.14219689462334,54.32665290404111,53.44626910658553,54.12253416515887,53.347581544891,53.7163897966966,54.10093669826165,53.929154033306986,53.72136187693104,53.11329755419865,52.77809737762436,53.40102119045332,54.26369847357273,54.040934646036476,54.699426795355976,53.86138687096536,54.290875017177314,55.04985202848911,55.115697409026325,54.78052029572427,54.893665361218154,55.82368796924129,54.90872789826244,54.189179211854935,53.85495809838176,53.1278564510867,52.54021379491314,52.23387662600726,53.227660819422454,52.78489758493379,52.41966769378632,51.74880335992202,51.00779184745625,50.70741310529411,51.54456986812875,51.23725197231397,52.052880130242556,52.19335215818137,52.72809119382873,53.45097183203325,53.82244724361226,53.73714898340404,53.55700985947624,53.204036564566195,54.114792194683105,54.152264427859336,53.73583328491077,53.74355976935476,53.87505586165935,53.8473681290634,54.4975308123976,54.17195536289364,54.46299061411992,53.9104771297425,54.239922082051635,54.76634174864739,55.54640099592507,55.510100656189024,54.521268975920975,54.21673262352124,54.83673643833026,53.96375762624666,53.27460137149319,53.52669953787699,53.81261023180559,53.555178481619805,52.994644206017256,52.90599437523633,53.27360747894272,53.28723315754905,52.69323163526133,53.486277915071696,53.20737987756729,52.92314364248887,52.553367159329355,53.208257160149515,53.88351582363248,53.482401572633535,52.66392891900614,53.02242292603478,52.85401804279536,52.655406773556024,52.74054796807468,51.96605845261365,51.952791426330805,52.26910334546119,52.31051416322589,52.87261679256335,52.26410483755171,52.56342376722023,53.23938759090379,54.217278386000544,53.32208558777347,53.93664615182206,54.5544385551475,53.91268421523273,52.95788487745449,53.041460391599685,52.41027061268687,52.001172193326056,51.6309853894636,51.143793982453644,51.02802104642615,50.2144072111696,50.93104476528242,51.64465051703155,51.763853746932,52.65308950049803,52.63961267238483,51.86967642698437,52.28795194718987,52.850380265153944,53.12165010580793,53.137779529672116,53.717609111219645,53.14391792938113,52.19716696860269,51.48877225490287,51.323407019954175,51.85138025926426,52.17431470286101,52.78160221874714,53.16974983830005,53.00272487150505,53.87082593142986,53.569262688048184,54.201970293652266,54.17110211215913,55.071440543048084,54.42010564170778,55.14310705149546,55.87416074844077,56.02995900949463,55.988480023574084,56.08008538559079,55.64909871760756,56.10272162454203,56.77791582373902,57.31609813636169,57.55836419481784,57.93164584552869,57.437263016588986,57.17833311762661,58.047080968972296,57.41460240539163,56.69632410956547,57.56148737156764,58.32958475779742,58.104470724239945,58.37163973599672,57.65720049710944,58.0082545732148,57.53524524951354,57.56744870217517,58.514624857809395,58.45792102953419,59.28883703285828,59.30489903641865,58.389326298143715,58.23751259641722,58.58329493412748,57.630654295906425,57.331567899324,57.163477981463075,56.74271202273667,57.142263889778405,56.31303071277216,56.80435036635026,56.02794538857415,56.875689945649356,56.80069029936567,56.6444023065269,57.09222004888579,57.888600163627416,58.62239598110318,58.87454137112945,58.46177978627384,58.38554557599127,58.3122940515168,57.39257546514273,57.38105932017788,57.748621091712266,57.9880234785378,57.11339912516996,58.105929059907794,57.3463040003553,57.2573281917721,57.68996866373345,57.70402118097991,56.716600206214935,57.220327239949256,57.03037216514349,56.36166152637452,55.6979047334753,56.00485665583983,56.99898623628542,57.79194387933239,57.654982841573656,58.31617309898138,59.034964899066836,58.97103695338592,58.03791692201048,57.9083593217656,57.08269126014784,57.490496173966676,57.80071075074375,58.76603297702968,59.279795764479786,59.80436197621748,59.79349164618179,60.42545139789581,60.04543816950172,60.67261243518442,60.48758522095159,61.38649100949988,60.55649004597217,60.42613343754783,59.8811925444752,59.909037741832435,59.5120965866372,59.86311927298084,60.26029855571687,60.84106592135504,59.933702243026346,60.27454855106771,60.46292970050126,59.917113915551454,60.30338062113151,60.862377072218806,60.83057168126106,61.54645629506558,61.23492190754041,62.233161659445614,63.21598270442337,63.66740004904568,63.42782142665237,62.935862159822136,63.56024090806022,62.5876424848102,61.86909254221246,61.89192435098812,62.61996220005676,63.373259264510125,64.1739269066602,64.88837116956711,64.58754131337628,63.79054727032781,64.13106601592153,65.02196162287146,64.33752406015992,63.69686569785699,64.0549815390259,63.20445904415101,62.76030949084088,62.80790095590055,62.65346527239308,63.538752301130444,63.513837604783475,64.25419100793079,64.80078005837277,65.06024404196069,64.8889019577764,64.37941069016233,63.41111656790599,64.1833942886442,63.26325631234795,62.63658786891028,63.008095018565655,63.14749128045514,62.53002755576745,62.8925216360949,63.10280159628019,62.90996674867347,63.53477658750489,62.683840996585786,62.98896339535713,63.29506445908919,63.85776001308113,63.14183521270752,63.87670092051849,64.61189106944948,63.818500795867294,63.36212400672957,64.14378901943564,65.10644300701097,65.33020474156365,65.45030284207314,64.62391649233177,65.0560486712493,64.80378173151985,63.98195556458086,64.35187005996704,65.00366372149438,65.28289631800726,65.6128866514191,66.40208835666999,66.83229189738631,67.56556692067534,67.55358200985938,67.04047208605334,67.76154777267948,68.40733965067193,67.81968716811389,66.85744562139735,66.56439665006474,65.93550842674449,65.43745813146234,65.25229945592582,65.49450376955792,65.51561951311305,66.0504195149988,66.89735161699355,67.02923989901319,66.41056339023635,66.83748577721417,67.65507771633565,67.0061750933528,66.84062855923548,65.91668522078544,66.30648752534762,66.61893083667383,67.07852144958451,67.46399045595899,67.67419236991554,67.8096112604253,67.25193271134049,67.16386224934831,66.9854571330361,67.1645401455462,66.21842411905527,65.87116985302418,65.3507523983717,65.87171752098948,66.19455660460517,66.48062182031572,66.43960680766031,66.72972089704126,65.98294342961162,66.76278552040458,65.82725846441463,65.14763076230884,65.02482700999826,64.92226134799421,64.90865538129583,65.64815184101462,65.26385810505599,65.87454485008493,66.86372401285917,66.65990569395944,67.12237552320585,66.65494592906907,67.30696214875206,68.1118837222457,68.61861382005736,69.55633086943999,70.30254075862467,71.28766613034531,70.4305902980268,70.20285031525418,69.39600595133379,68.5674958997406,69.45647809933871,69.99327059742063,70.48298590723425,70.60591893456876,69.6090247835964,69.02911640005186,69.16141741396859,69.21207974525169,68.30021721217781,67.74723499594256,67.6865249760449,66.87139175087214,66.16263627074659,66.95322342170402,66.22061032429338,65.5870337462984,65.23279119515792,65.89038586616516,64.98228504322469,65.00737614231184,65.44255580333993,65.78521954640746,65.75528591265902,65.27257362101227,64.76013356959447,64.54858935857192,63.64766341494396,63.137817608658224,63.62477236054838,64.40194485755637,65.18944511469454,64.69792841095477,65.6201198794879,64.66171225253493,64.5204408178106,64.98782358272001,65.40320027153939,65.22987916972488,64.93156650755554,64.80449061375111,64.33942838013172,64.14348046993837,64.17203366197646,63.515658042393625,63.75014166999608,62.93445701338351,62.928661335259676,63.17704444704577,63.61277020908892,62.797406546771526,63.275740244891495,64.16705219075084,63.49132098723203,62.74270942714065,63.52075338084251,63.27722623338923,62.756205496843904,62.035718663129956,61.86572591867298,61.03935245424509,61.356806403025985,62.308916956651956,61.31985744368285,60.822647225577384,61.7580130151473,61.43169161910191,60.61652390612289,59.69986643502489,59.30097005981952,60.28202382940799,60.060170063748956,59.273855559527874,58.988370469771326,58.91724492004141,59.45618607709184,58.79243354825303,59.02500356640667,59.578361404594034,58.81880912138149,57.92133870488033,58.784942262806,57.9229082739912,57.45010436652228,57.16384410718456,57.29660065751523,56.87406949931756,55.99577636551112,56.47141812136397,56.32090558577329,55.39324703300372,56.23062750417739,55.45717171020806,56.34538506483659,55.757330257911235,55.503797703422606,56.19156167982146,56.83631702326238,56.64614095259458,56.39233314758167,56.947498423047364,56.80007461132482,56.21208464447409,55.39483641739935,55.45316088758409,56.359116648789495,56.74847844848409,56.97229209449142,56.058894756715745,55.26425781659782,55.53556280070916,55.362916285637766,54.462997674476355,55.28737944411114,55.68844051938504,55.700705057475716,55.18300644075498,54.51623602071777,55.42287751380354,55.946420912630856,56.93521818937734,56.83273391099647,57.16861065477133,56.68074537999928,57.34583836654201,56.571997749153525,56.0566999418661,56.74978799838573,56.75946419360116,56.71268542204052,55.7343876035884,55.9722779141739,56.959685997106135,56.65920759458095,56.47049782704562,55.74128857953474,54.88014438841492,54.67667237482965,54.50772974314168,55.418921450618654,55.51886151172221,54.62783475872129,54.25457882555202,53.87555025378242,52.978463899344206,52.89269010769203,52.41271171532571,51.92058029631153,52.46259942045435,52.797867339570075,52.5578571385704,51.96398168290034,52.5637225038372,52.406592175830156,52.46728235995397,52.37952544121072,51.7592880371958,51.680439066141844,51.30009090015665,51.58431181125343,51.59869010606781,52.581352727953345,51.651028922759,52.21166567271575,52.6949657429941,53.6331952130422,54.237617515493184,53.73512866999954,54.396670629270375,54.297663752920926,53.77885148394853,52.82986406143755,52.47143081948161,51.72604051977396,51.08443833095953,51.91126759024337,51.490689053200185,52.47368352301419,52.98351884819567,53.14358433801681,53.73922574380413,54.167892480734736,54.539506072644144,54.14019120763987,54.30850022053346,53.47033371636644,54.26800211239606,54.70397340459749,54.47391290124506,53.49445878760889,52.6312240511179,52.04771891236305,52.49912309506908,52.0158790005371,51.606809709221125,51.7227838258259,51.65022894041613,51.379764358047396,51.99948068941012,51.19261856097728,52.17421709280461,51.81219466216862,52.51979342335835,52.8730633277446,52.097959669306874,51.47620567493141,51.165846838615835,50.306793031748384,50.138471538200974,49.455556192435324,49.282941905315965,48.56916058156639,49.230412581469864,49.92077815532684,49.02470112033188,48.61752058239654,47.77774793142453,47.37237509386614,47.91723385686055,46.99946298869327,46.21827186550945,45.26768334908411,44.683848889544606,44.63681407645345,44.96847816230729,45.39807446114719,44.54861782025546,44.37149492278695,44.81913424376398,44.795629997737706,44.65981781762093,44.35279546584934,44.35625598113984,44.83803938701749,44.724426629487425,44.21596765797585,43.640581344254315,44.59644591296092,45.281538548413664,46.076300744432956,45.124589540064335,45.83803546614945,45.83368740323931,44.99616049788892,45.70009738719091,46.19197891978547,45.42011007713154,44.54454347118735,45.03486113389954,45.29385345010087,45.408446765039116,46.35295476904139,45.48624430317432,44.50597819359973,44.36785497656092,43.9028175980784,43.589529040269554,43.97296298574656,44.107216865289956,44.96479858132079,44.34864007215947,43.771637357305735,43.278603225480765,43.47560731880367,42.92160463007167,42.97513575293124,43.06450522597879,43.322365002240986,42.530800578184426,41.79707184853032,42.082626610063016,42.186652396805584,42.43722869688645,43.292684176471084,42.79855085676536,41.890536821912974,41.58833898929879,41.49942687526345,40.72925107134506,40.59075293364003,41.50098337372765,41.10404700040817,40.43999974569306,40.447349089197814,41.02675799978897,41.48394709592685,40.67826341744512,41.34352573612705,40.419036279432476,41.26776410220191,41.91861889185384,41.06356818974018,40.12998583028093,41.100740558467805,41.2617872338742,41.10341588919982,40.838936949614435,41.72047767275944,42.341859431471676,42.28172380151227,41.970632654149085,42.130319197662175,41.86558546079323,41.144760674797,40.1734757758677,40.31003227736801,41.16213728999719,41.41465194243938,40.958712881896645,41.405336825642735,40.681344006210566,41.20391597878188,41.64177792845294,41.19103427790105,40.69785639923066,41.519069124013186,40.84965658048168,40.883159645367414,40.08993057068437,41.00266107264906,40.26568030240014,40.1660066251643,40.390665472019464,40.81470115389675,40.6857464578934,39.69649151386693,38.78893672442064,38.55128834955394,39.051577143371105,38.257895298767835,38.736163209658116,38.20717277331278,38.880270324181765,39.3453105147928,38.642660192679614,38.66638691071421,38.19705435400829,38.828907310497016,39.304470864124596,39.79340807674453,39.76472852518782,39.287629435770214,39.99626977555454,39.33653340814635,39.13558992603794,40.099415708798915,39.55187086574733,39.14822659641504,39.882663319353014,39.836268118117005,40.026254053693265,40.18564509274438,39.46736727049574,39.38867132039741,39.95262645743787,40.228946457151324,40.54783081077039,39.87633228674531,39.500485511031,39.03196341637522,39.097469315864146,39.16284377500415,39.29535026336089,38.37500773789361,38.917049101088196,39.133418320678174,39.094644918106496,38.376102964859456,38.66059606336057,37.76677934313193,38.164857514202595,38.235748670529574,37.567242787685245,37.132520727813244,37.14474499132484,37.003673571161926,36.33821962121874,36.06705351360142,36.315811530221254,36.84780214820057,37.07182136364281,37.14178947126493,37.33902154583484,37.91569979675114,37.519621305167675,38.43840073002502,37.75227477448061,37.59650601213798,38.14650839148089,37.775155840441585,37.27013742318377,36.313859599642456,37.31068542227149,37.11554196663201,36.54954387433827,35.635058622807264,36.20174177829176,37.127450957894325,37.23685603123158,36.76010578498244,37.215348738245666,38.05696397088468,38.20903891324997,38.830028971191496,38.38735355110839,39.07971775671467,38.84999763732776,39.03805793542415,38.521498104091734,38.874911030288786,37.92702765297145,38.60875601414591,38.07110402267426,38.19446262251586,38.82656778814271,38.81412717374042,39.04027364309877,38.601485688239336,38.63141018571332,38.37461095303297,39.27766058873385,39.83111163415015,39.525891550816596,40.3261135481298,39.91767974290997,40.51231300691143,40.00680889794603,40.7658297107555,40.08130023209378,40.617399162147194,40.8893882650882,41.60199454659596,41.10830575460568,41.595741391181946,41.069570856168866,41.41826537344605,40.443998189177364,41.148839259985834,41.65208296338096,41.66780926659703,40.693299890030175,41.08074897248298,40.396353332325816,41.34073229832575,40.586741485632956,40.521865773014724,40.638975255191326,41.0863789380528,41.305236677639186,41.07241359166801,41.102756498381495,40.43033591005951,40.95460693957284,40.750968472566456,40.16861438890919,39.60850628931075,40.214742165990174,41.195112011861056,41.35135363554582,42.00144192157313,41.23822606308386,41.433960519731045,40.78059027949348,41.51090782508254,40.86535647092387,41.28460785979405,42.17169916862622,42.28264893172309,42.64930258039385,42.60325141483918,43.171055728103966,43.75035561528057,44.13759118504822,44.94518282869831,44.31123477872461,43.41121478239074,43.890654020011425,44.09781599463895,44.673263603355736,44.79810561938211,45.49420158518478,45.39550954988226,44.8879086994566,44.78444739896804,44.22925210930407,45.01222971500829,44.10954157495871,44.44338297843933,43.54539487324655,43.137338479515165,42.50884038535878,42.16317789256573,42.573605474084616,43.17017317004502,42.931542832870036,43.56919799838215,43.21327262790874,42.44601941341534,42.21774531388655,41.81333553465083,42.20045408559963,42.72949236584827,41.90305961295962,41.388103970792145,41.87823990965262,42.089197766035795,43.086647087708116,42.952907090540975,43.26024383166805,44.09736901242286,44.872433041688055,45.84741429798305,46.83524405909702,47.162161922547966,46.26672699023038,45.92092062532902,46.8563486658968,45.94857205450535,46.502237532287836,46.03476320486516,46.82607643818483,46.26258869282901,46.199993992224336,46.378542637918144,45.58639838825911,46.0367336361669,46.30928329471499,46.612127425614744,46.330054864287376,45.869427755475044,45.470680221449584,44.814031812828034,44.635604050476104,44.07041592244059,43.80230646952987,44.196050628088415,44.789967419579625,44.75861747935414,44.517288038507104,43.627072311006486,43.95017572911456,43.5855256379582,42.98209819290787,42.319826007355005,43.30455212760717,44.16368631506339,44.150843613781035,44.411052991170436,44.721614226698875,44.24390087649226,44.07581606414169,43.132118510548025,43.15128671377897,42.92790770623833,42.70384655147791,41.92430992377922,42.89747057529166,43.29894958809018,43.75966306915507,42.78643509466201,42.55767732206732,43.06974336411804,42.47832836210728,41.97821569163352,41.909777264576405,41.34224930591881,40.54977235104889,39.854743673000485,40.572490621358156,41.31595782143995,40.527159662451595,40.816845485940576,41.18515624990687,41.03373399190605,41.54102850984782,41.76527694007382,40.875291602220386,40.75558901252225,41.37847317894921,42.18271520873532,41.689191980753094,40.7947231689468,40.68061045743525,40.27848032070324,40.318625854793936,41.0524770822376,41.37956479564309,40.56201822729781,40.53223840659484,39.54886484099552,39.599503016564995,40.01673802686855,40.11884427582845,39.34921846771613,38.964469079859555,39.64010311104357,39.50022450927645,39.991190921515226,39.963722380809486,40.47766239801422,40.0272928327322,39.8841456300579,38.99699120782316,38.064730572514236,37.71182008692995,38.25211166590452,38.115392602514476,38.6730259465985,38.813402141910046,39.442579973489046,38.8075206130743,38.529157537035644,37.562606004066765,37.97605803934857,38.952080614864826,39.49483882263303,39.797781898640096,38.940075173508376,38.48048203904182,38.197052848059684,37.5446923263371,38.11552984872833,38.664563501719385,38.24752676440403,38.86380124185234,38.58157633198425,39.07878917036578,39.487349634990096,40.17776342527941,41.06104653375223,41.29304709890857,40.41863716207445,40.60852727852762,40.26298400014639,39.644182715564966,40.47728879284114,40.450662477407604,41.26281175669283,40.26599609898403,39.79282207181677,39.17600004794076,38.558921557851136,38.62028472358361,39.10213979892433,38.7009885632433,38.25088878022507,39.125939179211855,39.28312330972403,39.46300841215998,38.87023615511134,38.78232949413359,37.99217805499211,37.83055347390473,37.20212585385889,37.89618799695745,38.62433796841651,38.7377263312228,38.1881511923857,38.55840686429292,38.557858700398356,38.57497140718624,37.86660943599418,37.62244769698009,36.7185725918971,37.212326899170876,37.66794942924753,38.1254875427112,37.419065431226045,36.767153011634946,36.35959717351943,35.98121554451063,36.32463648496196,36.12592771369964,36.642989312298596,37.58434916008264,37.68684668792412,37.184844131581485,36.955354823265225,36.536452672444284,37.23719154391438,36.97856938606128,37.41554041253403,37.64891045540571,37.368246181402355,36.528805720154196,36.045608911663294,36.88014239212498,35.9772318569012,35.85413589468226,35.83145316876471,35.3586988649331,35.94036138802767,35.79284219676629,35.60694767581299,36.38161731837317,36.28362135356292,35.329443528782576,34.600409626960754,35.247036282438785,36.20066548418254,36.24464446352795,35.321498423814774,35.938540684990585,35.69005345180631,35.44702427322045,35.71540118474513,35.92132122255862,36.279031907673925,35.979423047509044,35.821182128507644,36.67257536901161,36.01691066753119,35.89788051508367,36.13327069906518,37.13227497367188,38.07472181040794,37.796481527388096,37.73793408088386,37.78154853079468,37.817716049496084,38.75375771103427,38.84601969411597,38.08150079473853,38.86074351146817,37.91789300274104,37.35723041463643,36.706635129172355,37.68478881381452,38.297379944473505,39.04066572431475,38.55190340569243,37.660322981420904,37.07104836497456,36.89606495760381,37.537437837570906,36.771368177607656,36.0991585701704,36.140011358074844,35.729377426207066,34.844198482111096,34.03910216642544,33.860961278900504,32.93335513351485,33.62094380753115,34.04661723366007,33.905543028377,34.48180468194187,34.388657193630934,33.52991322660819,33.1553795253858,33.73230927065015,34.66174534941092,33.864287306088954,33.034052815288305,32.581043019890785,31.64840830070898,32.3784739007242,32.17958665639162,31.9826455055736,31.66491779917851,31.15521799447015,32.02736739395186,32.73569123260677,32.318897935096174,33.29381137341261,32.830200446303934,32.16428456734866,31.989587171468884,31.095943100284785,30.590999357867986,30.004908150061965,29.60062877368182,29.466151866596192,29.939545650035143,30.450962588191032,29.9812636859715,30.961686841212213,30.665214703883976,30.326285552233458,30.842298521194607,30.987562084104866,30.52568075619638,30.05215561343357,30.63648328790441,29.95215270947665,29.562354813795537,30.221608996391296,29.486441729590297,29.874363653361797,30.741359644103795,29.954529041890055,29.066593043971807,28.39365950366482,28.564077228307724,28.612032189965248,28.03158738045022,28.281043691094965,28.208342540077865,28.834914401639253,29.20631707739085,29.588381744455546,30.359660000540316,31.25639801705256,31.43695880146697,31.740742351859808,30.75467990152538,31.717434387654066,30.949318633414805,30.93493864359334,30.55764690414071,30.229060425423086,30.226269226521254,30.513191915117204,31.246766315307468,30.453315823804587,29.569076696876436,28.827806804794818,29.357145653106272,28.777385290246457,29.06852952670306,29.768777776975185,30.540490043815225,30.756838534493,30.066299114376307,29.63393448246643,30.51586081739515,29.5800634608604,29.318510320503265,28.89508425211534,28.074139651842415,28.934314105659723,29.460603477433324,30.169786441605538,29.484090845566243,28.49971532309428,27.566897524986416,27.88286152528599,27.52234685467556,28.09408390149474,28.246151284314692,29.212521134410053,28.79835383919999,29.023683124687523,28.45897632604465,28.675659592729062,28.696107149589807,27.72277715569362,26.818595335818827,26.399696566630155,25.903502548113465,24.946965547744185,24.164018566254526,23.48225953616202,23.484443190973252,24.351446248590946,25.021037127822638,24.629861841443926,25.011848538648337,25.68362391507253,24.70091862650588,24.988784346729517,23.991421518381685,24.661338376346976,25.314590299036354,26.087111291941255,26.96515619615093,27.74583755992353,28.459846413694322,28.41604948369786,29.264570547267795,29.752350711729378,29.668237696401775,30.322897574864328,30.493350092787296,29.653832676820457,30.631514338310808,29.739326394163072,30.522801142185926,30.809491878841072,31.432176033500582,30.64300529845059,29.855492557398975,28.973504009656608,29.355617475230247,29.68241565162316,29.12036570906639,28.15899364138022,28.87918765237555,28.039696131367236,27.83233442530036,27.068401991855353,26.202079680282623,25.953849084675312,25.487095315475017,25.010422373190522,24.955970608163625,25.012323946226388,24.203408085741103,24.165910395793617,24.074838703032583,24.784214823972434,25.117246261797845,24.522395103238523,25.418416547589004,25.99001210089773,25.2851841901429,26.01076658302918,25.315333324018866,25.383823403622955,25.046771749854088,25.51352870091796,26.388990312814713,27.053236871026456,26.093507048208266,25.292245350778103,25.321706763468683,24.838660372886807,24.489270374644548,23.77385766385123,23.294361098203808,22.74425981612876,23.575421418994665,23.8575204978697,24.305782592389733,23.31080831680447,22.90338120283559,22.906198165845126,22.078268619719893,21.133686549495906,21.47215691115707,21.083391638938338,20.738962650764734,20.55054125143215,21.136006412561983,22.03768686996773,22.892598901409656,23.15810482716188,22.427976828534156,22.486005150247365,21.688278559129685,21.455029300879687,22.242458084598184,22.430365820415318,21.631223203614354,20.734032440930605,21.5177671154961,21.825727362651378,21.79519214341417,21.208587095607072,21.93402537330985,22.00845501665026,21.314602044876665,20.84279648726806,19.863193402066827,18.989101003855467,18.960007860325277,19.1434654048644,20.105837419629097,20.51441742386669,21.41397668654099,21.012040141038597,20.01893550157547,19.415995665360242,20.086622523143888,20.559052149299532,20.193716149311513,21.16124053299427,20.869160633534193,21.055398795288056,21.305281055159867,22.20427389955148,22.857904736418277,22.8137786379084,21.973579006735235,22.91964414343238,23.00466685043648,22.400206827092916,21.87952356552705,22.4936999399215,21.58921249723062,21.97462518652901,21.30539678176865,20.421559827402234,20.748681579716504,21.00173121970147,20.013649038039148,20.61122828675434,21.04176978394389,21.695648767985404,22.423863360658288,23.005543574225157,23.696544093545526,24.6445425003767,23.667630838230252,24.35180815309286,24.775760018266737,25.680339865852147,26.491704721469432,26.452365417499095,26.876354119274765,27.803461492992938,28.612118417862803,28.05801112484187,28.417281094007194,27.486246350686997,27.688014592975378,26.994369967840612,27.89028909802437,28.593207894358784,29.276322858873755,29.076132694724947,28.44090243196115,28.86881760554388,29.169140483252704,29.00695060333237,29.093320947606117,28.740470035932958,28.19578663026914,29.039206535555422,29.390042477287352,29.19068982452154,29.85724965063855,29.953905327245593,29.952115118969232,29.377132114954293,29.89607664430514,30.2505447329022,30.447200732305646,30.665570233017206,31.400281955488026,31.43086168123409,31.6786622912623,32.42244299734011,32.547064296435565,33.32654328504577,33.16035704128444,33.421504389028996,33.36397546576336,33.33079223660752,33.25334578519687,33.106706521473825,32.76504043210298,32.54437565198168,31.807262369431555,31.68177528027445,32.654118936974555,32.513623773120344,31.957468468230218,32.61863402323797,32.753796103876084,33.034340656362474,33.87912266282365,34.28191398223862,34.23472045082599,33.61713383626193,34.52499249204993,33.782433740329,34.23333097156137,35.108746190555394,36.04824186582118,35.416650051716715,35.76316924998537,35.94468949921429,36.937101831659675,36.09513246174902,36.612058392725885,36.084895878564566,36.36101110931486,36.89796890784055,37.05210070358589,37.02310419268906,36.08424293715507,35.28156550275162,34.525676345452666,33.716437383554876,34.181290831416845,34.159912906587124,34.33912507025525,33.36224566446617,32.898265139665455,32.66475924709812,31.85845149308443,32.78933777613565,32.717174474615604,33.28755639959127,32.85809009335935,33.21603821311146,33.51938894903287,33.98685750225559,33.49913397990167,33.00098871579394,33.693191551137716,34.677126644644886,33.8489806316793,33.921883611008525,33.253108892124146,34.24185773404315,35.13967997394502,36.02767775999382,36.48042507329956,36.00223784940317,35.60917799733579,35.27614740654826,35.349301238544285,35.21213526837528,35.548902148380876,34.783948462456465,34.449582951143384,35.27240524813533,35.721180935855955,36.444537779316306,36.41808922262862,36.89518828550354,36.38732984056696,36.36836636532098,36.68130804505199,36.91032883571461,37.88699065241963,37.19460872979835,38.16132855694741,38.75226277532056,37.83610768523067,36.884747966658324,37.800811275839806,37.68481120094657,38.63396423123777,39.2572171036154,39.985251187346876,39.30174739705399,38.95220068283379,38.278866537380964,38.21063190931454,38.94221099372953,39.68078058771789,38.984263204503804,38.60968068661168,38.50154522852972,38.210276609286666,37.2992532402277,37.13117146026343,37.527818619739264,36.86368487076834,35.878366561606526,35.16774303186685,34.80659786332399,35.364750287961215,36.25119272386655,35.72377421986312,36.38096276996657,35.95142850885168,36.04468606505543,36.425446063280106,36.78582426253706,37.22502233507112,36.793651341460645,36.71700802864507,37.37791027361527,37.51086477097124,36.593421334866434,35.77296389313415,35.502111131791025,36.38026339979842,35.62666596425697,36.602912495378405,36.0078967907466,36.314785150345415,36.48376483703032,36.01956238504499,36.35394874261692,37.2357266433537,37.44365767808631,37.991075282450765,37.590213142335415,38.21531543182209,39.06260909931734,39.91407158272341,40.35890128277242,40.57043978665024,41.01292562438175,40.5126530919224,41.50166575051844,41.04987517464906,40.99602294852957,41.31979000614956,40.70874757133424,40.293756400235,41.20208479324356,41.87568771233782,41.6738491570577,41.65410976158455,41.065609893761575,41.53383430605754,42.1091980105266,41.93617659714073,42.295163807459176,41.58787603629753,42.04810757515952,41.27654425101355,42.101884964853525,41.259801409672946,40.38123362604529,39.701975708361715,40.287148103583604,40.633742733392864,41.5640308666043,41.135508517734706,40.7282629692927,41.57556154252961,41.0492338584736,40.170914435293525,39.804335362277925,39.216449562460184,39.55048063676804,39.27388577070087,39.87105673644692,39.352924570441246,38.579677533358335,38.86750250868499,39.75923720281571,39.360848986078054,38.78525761188939,39.67027252074331,38.98454069485888,39.51386454561725,39.18843080289662,40.00528838764876,40.50804937304929,41.35567490151152,41.014732053503394,40.718329143710434,41.269051011651754,41.0114737553522,40.026621783617884,40.466733461711556,41.2761288555339,41.59082452021539,41.83272881433368,41.91292005171999,41.51589507935569,42.460960529744625,42.94463556353003,42.768278401810676,43.267329251393676,42.50305392919108,43.30251908907667,43.16900883382186,42.91872463142499,43.64479457354173,43.79996952274814,43.51158264838159,44.15641810884699,43.36000270769,44.1401170627214,44.764570394996554,45.57377589913085,44.745878665242344,43.789525725878775,44.01956873899326,43.58529967395589,43.262706929817796,44.227036038879305,43.78147511044517,44.67144571430981,44.32646477082744,44.755855809897184,44.25999677553773,44.45282880961895,45.279171373695135,45.74887530412525,46.64371297694743,46.272415896877646,45.658087933436036,46.33407677477226,47.19695726549253,47.063137226272374,47.25545006850734,47.08523192536086,46.76637596823275,47.09555366681889,47.656055303290486,47.353986624162644,47.79228930268437,47.933803220745176,48.33954779943451,47.47983222361654,47.89487905660644,46.91150214802474,46.91202893247828,46.3564792368561,47.002384977880865,47.95009440043941,47.239586665295064,47.23177406610921,47.6373807862401,48.471322467084974,48.251503366045654,49.06423050630838,48.605949997436255,49.465810623019934,49.293393971864134,49.312619554810226,48.993541836738586,49.40119403740391,48.82115540513769,49.2946920003742,49.957975627854466,49.73280129767954,50.45603211596608,51.279014041181654,50.40152555145323,50.185193022713065,49.325004058890045,49.42068370198831,49.40633439598605,49.985520703718066,49.43398759467527,48.897388878744096,49.72347934031859,49.312419935595244,49.041347454767674,48.17476344015449,47.211567860562354,46.84172750264406,47.354654154740274,47.14905064366758,46.56292600883171,47.17717782361433,46.44780579349026,46.729101676959544,46.39323825202882,47.29762000404298,46.513375498820096,47.4517669910565,46.715208359993994,47.204223300796,48.094312455970794,47.97359250159934,47.19976132409647,47.97565322602168,47.55611121887341,48.45585339143872,48.55294515565038,48.04002503212541,47.47130701690912,47.7980234855786,48.49101451365277,48.83841485576704,48.88131071673706,49.340458542108536,48.77883542701602,48.08121433341876,48.94591561006382,48.85020647291094,48.07087376108393,48.479426864068955,48.10564138647169,48.70572756929323,48.01150810858235,47.54524834221229,48.197485317941755,49.17104996414855,49.78137674322352,50.42074648058042,50.509189592674375,49.752586206421256,48.831425624899566,49.596086748410016,50.321448942646384,50.111908201128244,49.19532537879422,48.72215586621314,48.73129105893895,48.23528106044978,48.46416643122211,49.03708687610924,48.794753277208656,48.75050001591444,48.92702155234292,48.562174539547414,48.32852480746806,49.32434755889699,48.77045146841556,48.32247755024582,48.551796826999635,47.70556851569563,47.061177207157016,47.23084941133857,47.894769141916186,47.10735764587298,46.626845406368375,47.1281258254312,46.13203738583252,45.75647908542305,44.91403223294765,44.844832519069314,45.629596585873514,45.34060889296234,46.17625145800412,45.294770885724574,45.24054883047938,46.106079664546996,45.52884237933904,46.281616288702935,45.98037009872496,46.5320378113538,46.10335192922503,46.55386698199436,46.24912377167493,47.12498346110806,47.79754848591983,48.331973319873214,48.64754210691899,49.05414346745238,49.23201419506222,48.569443099200726,49.331570928450674,50.04345462284982,50.800540040712804,50.3692133994773,49.58430888643488,49.93451005220413,50.025905357673764,50.971725549548864,51.217469970695674,50.34922546846792,49.96478398144245,50.43463657703251,50.09271239396185,50.504782281350344,51.3234799830243,50.67697420390323,50.78966628899798,51.73686363128945,50.848425841424614,50.63667532010004,50.68295682128519,51.03096635174006,51.81239988235757,52.51634677592665,52.75522485002875,52.71732872817665,52.8525723265484,52.83832117496058,53.50443763099611,54.29819102259353,53.769537474028766,54.35323137557134,54.99058223562315,54.951826374512166,54.076740209944546,54.69144818093628,55.44470991799608,56.182225439697504,56.045548209454864,56.88694893149659,56.939494392834604,57.758876191452146,58.61910878447816,57.74836200894788,57.36630984861404,57.80355669092387,56.90432616043836,57.54879030864686,58.35652617318556,59.309078264050186,58.89725845074281,58.2563959704712,57.760803293436766,57.86435294337571,57.56757304817438,57.89176437351853,57.81124702701345,57.04025653144345,56.4514292916283,56.70796149969101,56.87884245906025,57.05598418833688,57.6508014742285,58.011696299072355,57.81075438344851,57.25859105819836,57.318964903242886,58.25158408656716,57.77197014633566,56.82614750461653,56.12061338685453,56.39488375606015,55.5811245883815,55.94560838164762,56.015865090768784,56.08532907208428,55.29624078935012,54.79393300320953,55.32426399551332,55.95873366808519,56.348775300662965,55.47340209176764,56.11285305209458,56.162195092998445,55.444419778417796,56.37391074001789,56.824970092158765,57.75926826102659,57.01788968266919,56.52576988609508,55.664017679169774,55.39563278714195,54.91432638512924,55.43952754326165,54.62317825388163,55.539290693588555,55.80852008378133,56.49383844481781,55.49461563816294,54.91696944274008,55.10285700624809,54.39206212386489,54.51933794980869,54.8206874281168,54.25108009716496,53.576331096701324,53.95027758460492,53.86441893083975,53.240572571288794,52.728303235024214,53.34115370316431,54.1864921702072,53.66369857918471,53.01155495643616,53.43577907513827,54.221858685370535,53.34726509032771,53.34699927363545,52.92600342165679,52.69829647708684,52.79095907649025,52.208587722387165,52.74405605625361,53.0691014546901,53.546954456251115,53.62348424177617,52.984354969114065,53.820945587940514,53.98491847561672,54.15755510190502,55.14680281840265,55.751651586033404,56.7113018441014,56.35321362875402,57.259046940132976,57.33785670856014,57.70925174513832,56.94237294793129,57.301881849300116,57.45825906377286,57.85386346280575,58.23887504916638,58.45247894991189,59.43518620310351,58.725147131830454,58.24541821703315,58.21595876850188,57.6701237577945,56.74013789743185,55.999466496985406,56.905021387152374,57.216210421174765,57.79621759662405,57.54433603724465,57.35104101896286,57.62141013890505,57.57430566474795,58.37613454833627,58.64369245991111,58.51671773614362,58.5788846462965,58.514833642635494,58.69230877188966,59.52062136447057,58.821130267344415,58.988028154242784,58.27115528192371,58.11794248968363,57.12252834578976,56.31718320120126,55.424079705029726,54.51645901193842,53.65422363067046,54.19624216295779,55.01382629526779,55.19522164994851,55.03763800673187,54.69331348268315,54.105906151700765,54.9698292426765,54.415444078389555,54.64629747252911,55.57677731150761,54.88429073104635,55.50126112997532,56.15901249507442,56.828265574295074,56.54228597320616,55.770164149813354,56.2074673473835,56.45431254757568,55.55443984316662,56.50144981686026,56.027376032434404,55.51112812245265,55.43442915985361,55.687650276347995,55.33188092103228,55.899027954787016,55.44977672211826,55.918711754027754,56.60923756798729,56.09336334001273,56.60076065454632,57.169741238001734,57.73538211546838,57.571102923713624,56.998216080944985,57.27059237565845,57.58422043872997,57.23004604084417,57.97287226608023,57.98168876254931,58.848050619941205,57.97015399765223,57.75286026718095,57.76333439163864,57.66360474471003,58.12786859413609,57.61786441411823,58.3581502805464,57.55791941238567,57.417580005247146,57.65441352548078,57.715266772545874,58.670375153422356,59.36137878568843,59.57240437855944,59.552053103689104,60.35402049589902,60.89391793962568,60.823816526681185,60.362823956180364,59.53793611098081,60.10711314668879,59.468801472336054,60.35490463813767,59.91696247039363,59.91101895971224,60.688311762176454,61.43875319045037,62.11453806841746,62.99145127600059,63.283833069726825,63.17280789744109,63.6920775542967,64.15443581249565,64.06910846196115,64.93193644052371,65.92072362918407,65.44321103906259,66.0758099546656,66.838647400029,67.75683170370758,67.14972386648878,67.96078743366525,68.54028063546866,68.310220093932,68.85807209089398,68.74088544072583,69.29814094956964,69.45594638818875,69.49469582410529,69.53619167208672,69.44610116630793,69.64527878025547,69.42848956119269,69.81876796903089,69.08910860354081,69.46559495525435,70.01820386294276,69.40844476595521,69.84754319023341,70.64248147048056,70.57541999220848,69.95518611790612,69.78993083257228,69.96074275299907,70.46847116108984,69.9698585467413,69.21200037235394,69.27159637352452,70.07121321838349,69.43038272252306,68.88485152646899,68.19142616167665,67.59496060805395,67.92033636011183,68.76091034384444,68.26735362969339,67.87081248685718,67.01861248910427,66.08329620677978,66.69071714067832,67.09160655736923,66.9707252709195,66.23446710873395,67.11629187455401,67.38895284896716,67.292498965282,67.15535070421174,67.32873415201902,66.96259391726926,66.05069266352803,65.25443591317162,64.5077920849435,63.646888348739594,63.26335583161563,63.351888567674905,62.81089834263548,63.02458306076005,63.45705794496462,64.30271516693756,63.648797906469554,62.672449954319745,61.97209274023771,61.03434449713677,61.52320429030806,61.76261943299323,61.571386717725545,61.52507318602875,61.26631308393553,60.94537372933701,61.64433247456327,61.49393493914977,61.74120717449114,61.12802880862728,61.23187516909093,62.01703864848241,62.35605202661827,63.29903518408537,63.77189488010481,64.36859118146822,64.37672007689252,63.86900304397568,64.17965423827991,64.08953076181933,64.73513526795432,63.84098654659465,63.320810914970934,63.60323948273435,62.671528588049114,62.44540034560487,61.82163996156305,62.07815228868276,62.39246920030564,61.560464169830084,60.88675551768392,61.49241679767147,62.13590259756893,62.488770921714604,62.360104276798666,63.25960750784725,63.025012659374624,62.31690163211897,61.834496079944074,61.181109878234565,60.45871289074421,61.292021898087114,62.1975966100581,62.37843296909705,61.81085839914158,62.21915264381096,62.91161170601845,62.73804353084415,62.3255483773537,61.739031021948904,61.10624913405627,61.77465784968808,61.31144586065784,61.349719303660095,61.127073131967336,60.928356263786554,61.632295101415366,61.36833851085976,62.24550614412874,61.362067904789,60.437723541632295,60.13255664007738,59.78164312709123,60.4322352334857,59.8631321513094,59.85245765699074,59.990848819725215,59.190413552802056,59.11099971225485,59.44900462636724,58.996882578358054,58.14401761442423,59.09426243696362,59.836045624222606,60.82538208551705,61.03337409906089,60.59832401154563,60.13178586773574,59.64628520375118,59.64151946315542,59.573400494642556,60.28788645705208,60.15645880019292,60.11939458269626,60.06626766407862,59.332426213193685,59.50957261584699,58.6255203303881,58.580772446934134,59.12497807107866,59.132258392404765,59.20262562343851,59.84038328798488,59.0886447802186,59.52146381512284,59.86911920271814,59.618644738569856,59.46733691217378,59.37524090334773,60.359392148442566,60.89888707129285,60.456456205807626,60.32999684475362,60.81733177555725,61.19432482589036,60.2094269702211,60.07387037947774,60.36110028298572,59.89994171913713,59.967108635697514,60.653681634459645,60.17966841859743,59.23359040776268,58.53656811034307,59.44179187808186,59.67694654408842,60.62799729965627,60.84193209186196,61.33180728787556,60.597583593335,60.03020471241325,59.42808320233598,58.52423087833449,58.54522637184709,58.00928204739466,57.41516798082739,57.19512255862355,57.624735065270215,57.52698174351826,57.8812723569572,57.41136469272897,57.44814094156027,57.89642108930275,57.86448106309399,57.99109841091558,58.97968454705551,59.80947207659483,59.554500134661794,59.478168804664165,59.673355526290834,59.415170279331505,59.051434859167784,59.58557347673923,60.17031414946541,59.50624363915995,58.891461986582726,59.789149245712906,59.2497930387035,59.631516062188894,59.44404247496277,59.7363984179683,59.02637947816402,58.66656150482595,58.96289931423962,59.956463895272464,60.44126480957493,60.24032132839784,59.59106706175953,60.2285861200653,59.261455627623945,59.06583837931976,59.57262101629749,58.86239715013653,59.71465842984617,59.61135213961825,59.30679407948628,59.67097015073523,60.62865244504064,60.66850986517966,60.94819766236469,59.99003055645153,60.48881648294628,61.29365164414048,61.01042268704623,60.361051600426435,60.53391868202016,60.322464916389436,60.159121674951166,59.95997461816296,59.90252216765657,60.49789583357051,60.9673250564374,61.07277968060225,61.93043501442298,62.39432483538985,63.08496649377048,62.35277477791533,62.076902106404305,62.64487785473466,63.46501957438886,63.86670991592109,63.5512341237627,63.61078321561217,63.27622953336686,63.475253912154585,63.51227334747091,63.59658570680767,63.79210763797164,63.102786406408995,63.44647077936679,62.957806245889515,63.6870891158469,63.102625268511474,62.484333872795105,61.83512351801619,61.59963949257508,60.60718510905281,61.211616271641105,61.841020284220576,61.147718203254044,61.68087994027883,61.061609896831214,61.01242938730866,60.73625553632155,60.8681136937812,61.05792015325278,60.8438687575981,61.28786736447364,60.84731171838939,61.35958634177223,60.76922677224502,61.710628441534936,61.3885285705328,62.3077830192633,61.87648849375546,62.4132773373276,62.55522880004719,62.01107188034803,62.08920773956925,61.212963747791946,60.76355365244672,59.78281567199156,60.11067221080884,60.815453693736345,59.948824448976666,59.176410949323326,59.054960548877716,59.847273665480316,59.52094750339165,58.70044282544404,59.66757514607161,60.562685639131814,60.92016695160419,60.69665155000985,60.96625052392483,60.233121188823134,60.29964780341834,59.676869520917535,59.09451658092439,60.03877991484478,60.66854765545577,60.78864580253139,60.60694976570085,61.03359136171639,60.34655041247606,61.070930077694356,60.68983987811953,59.80391665408388,59.62059441534802,60.30280602443963,60.08710684487596,59.71025092666969,60.02541858050972,60.73138780798763,61.31199270347133,60.55021285684779,59.95313638728112,60.39945922093466,60.38058903161436,60.12407314218581,60.93245110148564,61.017057391349226,60.257636507507414,59.55274963285774,59.641325048636645,58.882178069557995,59.099957341793925,59.145777098834515,58.652244007214904,58.10151254897937,57.6860323487781,58.465740429703146,59.39034909475595,59.30343552492559,59.885763821192086,60.86529950518161,61.03089304501191,61.59310821862891,61.492920495569706,61.43492521578446,60.80877524148673,60.84259670088068,61.59966590022668,61.811699212528765,61.966420381329954,61.91814438579604,62.15516571095213,61.7519884002395,61.47748206555843,62.251761202700436,63.2355269100517,63.15211602719501,62.24614567775279,62.867211184464395,63.35820973943919,64.14897737465799,63.801478889305145,63.78965739812702,64.47170025901869,63.5229466361925,64.0961460727267,63.50824532052502,63.25076903356239,62.93498129397631,62.69031109055504,62.446297051385045,62.296735542826355,62.55260202148929,62.7952985917218,62.812012244947255,61.9989351821132,61.955052230507135,61.91597256343812,61.92088307021186,61.31443695118651,60.97342325048521,61.14475491363555,60.53734570555389,60.026281132828444,60.36494670342654,60.746976419817656,60.39184202020988,59.568338269367814,59.856637871358544,60.75387121224776,60.71792528545484,59.958433544728905,60.14737261040136,59.75541911832988,59.59518438950181,58.84425773145631,59.49354602023959,60.39244495937601,60.59276765724644,60.13672717893496,60.26102325785905,60.95098215993494,60.85686001833528,59.970460971817374,59.42881119158119,58.905265795532614,58.56792724085972,57.85453914385289,58.35629873909056,59.189745717681944,59.8712291829288,58.98591097723693,59.04274484794587,59.966968331020325,59.863724041264504,60.38746570330113,59.71287757623941,59.54618294816464,59.298621740657836,58.853826583363116,59.77904685493559,60.644276277627796,61.32145505165681,60.459576157387346,59.673391302116215,59.58713763486594,59.76764032244682,59.14548904821277,59.979471378959715,59.095169082749635,58.56253930181265,59.14921839162707,60.032602589111775,60.83447891427204,60.5293041812256,60.25000026775524,60.712153853382915,60.65980409272015,59.96579437283799,59.77510700421408,59.56851865397766,58.97150200093165,59.90012131119147,59.1597997341305,58.88617698382586,58.27875376539305,57.43065708549693,57.194624276831746,57.12683422444388,56.752977720461786,57.63355057826266,58.614601383917034,58.14645146811381,58.96555335307494,58.44213945418596,59.09166312450543,59.44171461509541,58.571191594935954,59.41014435747638,58.44044922012836,57.724945610854775,58.14968466665596,58.51969041628763,58.08286050101742,57.250222814735025,57.20709436945617,57.828901797067374,58.308677246794105,57.816337905824184,58.47564045805484,57.53539723157883,56.6680661207065,56.194384866859764,56.89203585172072,57.555572181008756,56.78908052761108,56.46958776935935,56.954015797935426,55.9643285353668,56.66763939568773,56.41808821680024,56.65939682722092,57.37787247123197,58.16379619948566,59.071301428135484,59.17132160207257,59.305519791319966,59.9519261168316,60.39478786289692,60.96670735580847,61.32436648430303,60.40013698441908,61.15806590951979,60.42373439390212,59.738961439114064,58.77955535845831,58.0142391724512,59.01338781416416,59.479073085822165,58.82849810319021,59.545520237181336,59.233160383068025,58.42625329038128,58.66341017419472,58.97480771224946,59.28761633532122,58.45393956499174,58.8782135094516,58.89052678318694,57.93702095281333,58.70613274816424,59.62880678474903,60.452284085564315,60.51054976694286,61.4181162440218,61.45858733961359,62.37718626623973,63.368897719774395,62.72757009090856,62.740577993914485,63.194486886262894,63.771537584252656,63.72681174380705,63.474076330661774,64.35955529334024,64.49018806032836,63.98728429758921,63.89718809351325,64.02093994244933,63.903555194847286,63.13254306698218,64.0815794467926,63.96789899794385,64.4616423570551,63.771256713196635,63.56470535043627,62.790767004713416,63.27886466495693,63.88737015379593,63.82636506203562,63.70894323615357,63.94864156655967,64.80862278770655,65.20661461493,64.76465611020103,64.28123346529901,64.86683575157076,65.813833381515,65.73359764646739,65.22681146394461,65.34387046983466,66.25425994768739,66.96069939574227,66.59385072533041,66.4603729667142,65.67835774738342,66.29295623349026,66.6986496578902,66.04501059744507,66.55664610909298,66.91978030791506,66.7577540227212,67.71005783136934,67.65454914513975,67.17582456860691,67.92392680654302,68.56542706117034,69.5194904464297,69.44317661924288,68.87949257111177,69.65889739105478,68.82976817479357,69.8230784740299,69.10613016085699,68.3122388375923,69.00704936822876,68.99596416996792,68.54733079299331,68.00263190781698,68.37934421282262,67.80476639140397,66.87616571458057,67.19745775125921,66.76955217914656,66.86704305699095,67.46495800185949,68.35806170944124,68.10793147142977,68.08026630198583,67.69813021784648,68.54129407275468,68.85202191444114,68.33068872895092,68.70429014321417,68.93250831216574,69.57299769949168,69.83936580875888,70.0229284693487,69.87526341713965,69.80833463184536,69.87340503232554,69.22836495563388,69.36052988795564,69.24896775884554,69.32221138942987,68.33359013590962,68.32875149138272,67.9807539419271,67.62034876225516,67.74896360421553,68.35311680659652,68.82046069949865,67.90131249139085,67.2908697980456,67.12923189951107,66.38487011566758,65.39259229646996,66.16308609070256,66.87271353648975,67.09575643995777,67.94431432010606,67.46565731847659,68.05413643177599,68.38231727015227,68.79336945526302,69.52009283332154,69.0492553547956,68.20116286398843,68.58071118267253,68.56645531393588,68.96834624744952,68.38556109415367,69.34795071557164,69.24308943003416,68.83840679237619,69.17521294765174,69.92840078286827,69.06952168652788,69.48870224552229,69.21288314787671,68.61702403286472,69.11544971168041,68.63585494970903,69.30641610221937,70.2200030228123,70.05940557690337,69.41996857803315,69.16766750253737,69.45214684074745,69.63054222706705,69.80231942422688,70.033001429867,69.63885778794065,69.3849643417634,69.35882448824123,69.2968730237335,68.95516520179808,69.2037116647698,69.526254104916,68.90770313050598,68.92694345954806,69.8805561712943,70.8703396958299,71.42351448303089,70.90125443134457,69.93571123154834,70.76713330857456,71.72411056468263,70.87632947415113,70.56344682909548,70.66663300059736,71.18790215952322,71.04099446628243,70.74609840475023,71.04721516883001,70.33338933764026,70.38687054952607,70.51998581038788,69.67826286610216,68.88068483630195,69.44112530024722,69.05787436151877,69.71430132910609,68.93496509594843,68.13353699585423,68.81152199395001,68.2071527116932,68.81170424306765,67.91608116775751,68.8473944766447,68.47621280280873,67.51938437623903,66.77713117096573,67.73459516046569,67.72238175431266,68.59064899757504,69.3888490353711,70.11610551783815,69.79937604628503,69.5599021348171,70.30561661347747,70.9908458320424,70.43459035269916,71.31617354322225,70.31879355292767,70.23106707260013,70.5209444691427,70.62812448013574,71.01308759814128,71.99464182090014,72.81560982903466,73.64102806895971,73.86201615212485,74.36241481779143,75.09982047695667,74.41141708660871,75.34136799257249,75.25164063367993,75.66201990516856,76.56341093871742,76.59777911286801,76.55930434912443,75.9403663277626,76.35271083517,75.9263996919617,76.62903992272913,77.26494482858106,77.73454964067787,77.32524210354313,77.91201107390225,77.00665272306651,76.69906730949879,77.09890010626987,78.02517244732007,78.70481062214822,79.19388846261427,79.11255594482645,79.62676772847772,79.64301898051053,79.26507769105956,79.13310665683821,80.11466561444104,79.38565500080585,79.30433941818774,79.03052777377889,80.02832035161555,80.49404149223119,81.48298540897667,80.67561318119988,80.70917199645191,80.80936974240467,79.90310117555782,79.59949065977708,78.92361201019958,78.03086529206485,77.27048778999597,77.58871240820736,77.27501855324954,76.81568155949935,76.43132215924561,77.02542378567159,76.5777922985144,75.82857458526269,76.1144573003985,75.2869402631186,74.63161299284548,74.6928448243998,73.9738001911901,74.72194934030995,75.34674173872918,75.8565956861712,75.71051197033376,76.68139830743894,76.74374877894297,77.36053911270574,77.4607313121669,77.4610564862378,76.49872089130804,76.34944865247235,76.0368274524808,75.41846723668277,75.17961295833811,75.8331785639748,75.7987060630694,76.11491635069251,76.35403591161594,75.6235913974233,76.33016605395824,77.18538990337402,76.86675766017288,77.02704124106094,76.80469789169729,76.04269539192319,75.46303577814251,75.8270842297934,75.45566236926243,76.24163280427456,76.61319731967524,75.81883312528953,75.32318457681686,76.143639982678,75.73868601582944,76.55777483759448,75.64779984392226,75.52041807258502,76.11798982415348,75.16564758168533,74.51999553246424,73.749902470503,72.98799387319013,73.63791935984045,72.65510299568996,72.66486874688417,72.1917373239994,73.07578061940148,72.78666301397607,73.08811729075387,72.35398981440812,72.74239859171212,73.46759672369808,74.27039901120588,75.01878485782072,74.51196914259344,73.65247914521024,73.78878164803609,74.43308148439974,74.92860435787588,74.23258685087785,73.53281807433814,73.00774562498555,72.08022739132866,72.93233464099467,73.45367171848193,74.12692843424156,73.5934667289257,73.83024085266516,74.55066607845947,74.08028220478445,74.31348795397207,74.00089569669217,73.16736252838746,73.70111520495266,74.59118356276304,74.31432098010555,74.80416410788894,74.9137260443531,74.97019416140392,75.13089082203805,74.23254125006497,74.7381178275682,75.66655535250902,76.53691182518378,76.81813122564927,76.15159559808671,76.93997519928962,76.13009259896353,76.51968432683498,76.17974404897541,75.86183318449184,75.84815666405484,75.2572684334591,74.32722472399473,73.53179251169786,73.00828650174662,73.12634309893474,73.2991360751912,74.26048086863011,73.53470748662949,73.75077741220593,73.68893919233233,72.99478242918849,72.92532304348424,72.72463306644931,73.7132192500867,73.649028735701,73.19944807887077,72.27019579103217,73.15561545779929,74.15423866873607,73.7193499673158,74.00219589751214,73.82092556916177,73.40228165406734,73.1306381803006,73.7236319524236,73.26072717923671,72.38886150019243,72.20243709161878,72.88580973818898,73.20587751595303,72.26427498180419,73.15642489679158,73.724960942287,72.8049581409432,71.90457887435332,71.2800475130789,70.47297029895708,71.27820707578212,71.00156054226682,70.4180531478487,70.00482486188412,69.50133217638358,70.15126151451841,70.1672595385462,69.93925558496267,69.17701614275575,69.62822346854955,69.2179965628311,69.31446404196322,70.23186059342697,70.38564617047086,69.65631814394146,69.89836013736203,69.82923004496843,69.87532660225406,69.73374744085595,69.2270041690208,68.51282975077629,68.08018597448245,67.89873222773895,68.76661287201568,67.81431897403672,68.1273842677474,69.04523839149624,69.25044053047895,68.98404086427763,69.24373636674136,69.45263240020722,70.3843226050958,70.66154920030385,71.16252448782325,70.30467639910057,70.07996185962111,70.23262075334787,70.26855170540512,69.27914181444794,69.24220232060179,69.83875435730442,70.68921167915687,70.98301961179823,70.8194534596987,70.67316613905132,69.67820413224399,68.80410426203161,68.62806702405214,69.61462190374732,68.9833729933016,69.21124575193971,69.11975290486589,69.14049544325098,68.45314138149843,68.82733164960518,68.08760235738009,67.9917588159442,67.1982357390225,66.9341082200408,66.21191309392452,66.0072822002694,65.11479226825759,65.88371794391423,65.44708527857438,65.94988073781133,65.91745696682483,64.92822562716901,65.10842560557649,65.30374989984557,64.61853900551796,64.95406861510128,64.52748600486666,63.82084755320102,62.921980066690594,63.42663625907153,62.60160804493353,62.43897126149386,62.92598380614072,62.56542352354154,62.55561373895034,62.94515831070021,63.944226533640176,63.294750010594726,62.327304147183895,62.677466270979494,61.956947850994766,61.21071788202971,61.44757948629558,60.5767208901234,59.797882152255625,59.1980677661486,59.3586373408325,58.903606079984456,58.00658714957535,57.82866900740191,57.31734080892056,57.23001737613231,57.694708556868136,56.99831782979891,56.61918148258701,55.98986104922369,55.701623864937574,55.2232883987017,54.83831953909248,54.96654285257682,54.80954705318436,53.817235328257084,54.23844927130267,53.830898373853415,54.53887949651107,53.94356586225331,54.255982959177345,53.31079433392733,53.787254840601236,53.46631362661719,52.675109948497266,52.92161266179755,53.29212839482352,53.54383348394185,52.599105432629585,52.533737575635314,51.913533735089004,52.35859982529655,52.5651764953509,51.56539546884596,51.36176625126973,50.45816351659596,49.74589720647782,49.643756930716336,49.19739200407639,48.72137319855392,49.158959082793444,48.19865839462727,48.25610047299415,48.52918136958033,48.132964841555804,48.22819261997938,49.120995852164924,49.40676973061636,48.97332326276228,49.03069998556748,49.98850096296519,49.729659248609096,50.39735901867971,49.62541942857206,50.45734718255699,50.933379560709,50.06087079597637,49.19314741156995,48.75749806733802,49.51771926693618,48.834580027963966,48.84429964283481,48.35098281642422,48.458216674625874,48.82193362945691,49.481656508520246,48.96945167798549,49.59144251327962,49.16931527946144,50.0267075849697,50.273835342843086,50.093572575598955,50.37094504432753,50.856570408213884,51.648301946464926,51.53570170188323,50.76997558353469,49.88388655334711,50.70063784858212,51.69890709687024,50.86112719774246,51.27626371989027,50.45431440975517,51.00335810892284,50.22763844113797,49.3837170782499,48.786861976608634,48.684825097210705,49.58226238377392,49.77462131297216,50.525459638331085,51.184221977368,51.1962153329514,52.10408955812454,51.808815819211304,51.926488038152456,51.66321561113,51.17238324414939,51.42165432823822,50.859261757694185,50.84714499535039,51.765943489503115,50.94300922891125,50.6412176983431,50.44581355387345,49.67277947301045,50.06344040622935,50.141701630782336,49.759475697763264,50.54404008947313,50.89931516069919,49.976436144672334,50.887577815447,51.027773259207606,51.497904918622226,52.20859080506489,52.73994993418455,52.13428221689537,51.26789241191,51.70934973563999,52.45710742846131,51.492506076116115,52.06810522824526,52.610364572610706,53.59746015397832,52.73432101169601,52.06221203971654,52.01158095197752,52.832601860165596,53.818525621667504,54.431372409220785,53.80429625790566,54.01381693594158,54.54825538676232,54.59096253803,55.44731055898592,56.37779110716656,55.64925461448729,55.13389270287007,55.33003571815789,55.24937663413584,55.006332410965115,54.7162343529053,54.19918393716216,53.53040381055325,54.33497310522944,54.99340811930597,54.328935727942735,53.79344956204295,54.786662094295025,54.517589926254004,53.92606444936246,53.14976705191657,52.713199213612825,53.141764264088124,53.814159942325205,54.431644236668944,53.92353314347565,53.89819851377979,54.81824444094673,54.724808549974114,54.0631984830834,53.23453244287521,52.579221301246434,52.09518383210525,51.280498082283884,51.74737979006022,52.10688473843038,51.69576533557847,51.90509410202503,52.28831249149516,52.29152989340946,53.25005749287084,52.47181463474408,51.56987601146102,51.75106118340045,51.1270460318774,51.93310289969668,52.20909527130425,51.429625512100756,52.152018554508686,51.56328262295574,50.64072584826499,51.111634274479,51.44421475427225,50.60145601071417,50.80248196143657,50.74189845379442,50.06967313401401,49.9368973178789,49.88841464696452,49.69355824030936,48.912501505576074,48.10910040792078,47.155006129294634,46.580380365718156,46.68279310828075,47.641626538708806,47.07312668999657,46.782574380747974,47.53765403712168,46.5692389998585,46.49175334023312,46.45740117318928,46.421779974363744,46.78469338314608,45.983688092790544,46.56269217096269,47.20192677248269,48.060039716772735,48.81793202040717,48.956932086497545,49.94581592688337,49.94812255492434,50.42597390105948,49.898964307270944,49.732360910158604,49.278319327160716,48.282770154066384,47.376775809563696,46.41232029115781,46.48800454242155,45.99639065936208,46.4578296164982,47.22227757005021,48.217335663270205,47.39648853940889,46.93636694084853,46.949144653975964,46.01239824201912,45.67391319107264,44.730846751946956,45.067064135335386,44.64384671347216,44.306501128710806,44.0099120773375,44.11513829184696,43.77292190445587,44.60820798994973,43.70680173672736,43.2935136416927,42.37244063196704,43.25027419952676,43.8675058814697,44.08807593025267,44.32246334012598,43.80630302615464,44.32083139475435,43.55195390898734,43.909391353372484,43.43823987757787,43.69166204473004,42.888165704440325,42.44833462731913,42.43742610234767,43.17183730984107,43.088609667960554,43.885744807776064,43.546231768094,42.54832632327452,42.746125515084714,43.162020885851234,43.5690827248618,42.805068110115826,43.083612135611475,43.44244846422225,43.66386885382235,43.293233225122094,43.222865379881114,43.55775342788547,43.710478315129876,42.874542808160186,42.852247956208885,43.022362522315234,43.48359671700746,42.686646865680814,43.67426179163158,44.51681878976524,43.81890116725117,43.885923858266324,43.918090297840536,43.24485938670114,44.23989295121282,45.18784757936373,45.11800882732496,44.30901355156675,43.863471932243556,43.53185578016564,42.95305873127654,42.72684931335971,41.91687652328983,41.15752514684573,40.839340480044484,41.02481017354876,40.98704750696197,41.409350343979895,40.69422590220347,40.88496971363202,40.814309261739254,40.46877875877544,40.608267864678055,40.76782387215644,41.511010378133506,42.312302159145474,41.76216525025666,42.336094757542014,42.20992182241753,43.07774179102853,43.19827987020835,43.107560098171234,42.52190572954714,42.72555244760588,42.651681484188884,43.514954306185246,42.90199712244794,42.30245725763962,42.49046092526987,43.401404281146824,43.60401360364631,43.11307465750724,43.747961981687695,43.876017259433866,44.09097565850243,44.67032127408311,45.44988753926009,46.087414510548115,45.383138039615005,44.455051857512444,44.40494708716869,44.85501657379791,44.14720203913748,43.58629028778523,42.97169842803851,43.2816927973181,43.49777056649327,43.303519383538514,43.731178218498826,43.48056693095714,44.30469918856397,45.18663237756118,44.75668409978971,44.30569989839569,44.274341482203454,44.072983453050256,43.222054184414446,42.496498296037316,42.69269659323618,41.727222334593534,40.77999365469441,41.62092487560585,42.35440517263487,42.08386106835678,41.479701408185065,40.63104151701555,39.92967080697417,39.31412733346224,39.26000338699669,40.15628754766658,39.51151713728905,39.237013455014676,39.93933705659583,39.61961564235389,39.80897987494245,39.64811070403084,39.16903039626777,39.33777398336679,39.63077827170491,40.29211020376533,40.36588134150952,40.309038357343525,39.43444215320051,40.31454160809517,39.946418741717935,39.42428862117231,39.3709674756974,38.77027251711115,38.27797757321969,37.85762285627425,36.868993216659874,36.405229813884944,37.26447000261396,36.291297539137304,36.734243331477046,36.51832477329299,36.56640941509977,37.49657866824418,38.248110885731876,37.39791574748233,36.89645276637748,37.39783050864935,37.31757931271568,36.77904230263084,35.97365445131436,35.73226732434705,34.7488478529267,34.9990770383738,34.90313987573609,35.25419550994411,34.47250238712877,35.05802532378584,35.21217840304598,35.13173225522041,34.58907741121948,34.77445412892848,34.673287289217114,34.15681719733402,34.96815590187907,35.276958955451846,34.44387092627585,33.452136914245784,34.37278599664569,35.0614881683141,35.84040229069069,35.905799557920545,35.31077068625018,34.928520870860666,34.83605142077431,34.77303936192766,34.00482635060325,34.97516333917156,34.93026409810409,35.17626801459119,34.85240127751604,34.90068290056661,35.65392884146422,35.40776713518426,36.32684655347839,35.69582600472495,35.22837770683691,35.098139118403196,34.167096592951566,33.74358043028042,33.26236608158797,32.663839764893055,32.74944964097813,32.83165977150202,32.46986982738599,33.279809825122356,32.29648383427411,31.943413060624152,31.515239456202835,31.094777275342494,31.215385855641216,31.19369908515364,30.70586049510166,30.793531729839742,29.83992262929678,30.731578179635108,30.70650584762916,31.095420117024332,30.453814532607794,30.562056984752417,31.086179507430643,31.28094713576138,31.305995719507337,31.129290274810046,31.322410395834595,30.63189161475748,30.73122749570757,29.85103613929823,29.118478481657803,28.390216218307614,29.25984753994271,30.17024094192311,29.458272407297045,29.733196318615228,28.830052444711328,28.164118921849877,27.564938840456307,27.5663270954974,27.847159129567444,28.509669720660895,28.701329668983817,29.325197546277195,30.09283063421026,30.52960568573326,30.55176442908123,30.428320864681154,31.00430966494605,30.736345724202693,30.929452192038298,31.68829807266593,32.14992061443627,31.38528967741877,30.393256539013237,30.911564248148352,31.035976023878902,31.778056917712092,30.91590135777369,31.275561537593603,30.783596688415855,30.510899854358286,29.88040154846385,29.669666627421975,29.844486156478524,30.75266721798107,31.473749900236726,31.292559805326164,30.909754301887006,30.43224974302575,29.65517867775634,29.28940692683682,28.976189032197,28.712341534905136,27.893898153677583,28.380796354729682,29.37582659861073,28.966151130385697,28.46162973344326,27.539977916050702,26.76155807916075,26.47362358868122,26.855822515673935,27.616218770854175,26.816449700389057,27.30369281815365,27.94599799392745,27.208357657771558,27.77335070585832,28.19158400548622,28.154611443635076,27.675247492734343,28.370548044331372,29.15116729727015,29.086621119175106,28.564757581800222,28.223237759433687,28.787407373078167,29.65243422985077,30.201720306649804,30.403377145994455,30.672304044943303,30.607145114336163,31.41590303881094,30.62114131776616,30.8340060133487,31.66117913182825,32.073255660012364,32.72490257816389,32.45799917448312,32.67673299694434,32.0793836992234,32.21113214083016,31.77955661388114,31.117571936920285,30.426052293740213,30.174673669040203,29.59473263192922,29.28297829022631,29.079393664374948,28.981803053990006,28.77007980272174,29.710493199061602,29.82247602660209,29.15174171794206,29.336703319568187,29.807633399497718,30.17974316747859,29.228934289421886,29.42941935174167,29.342051239684224,28.49822555668652,27.95458804955706,27.105913274921477,27.262077168095857,27.256701382808387,28.09150280430913,28.43580346694216,28.975352432578802,28.717896963004023,27.841363187413663,28.605319179594517,29.045922216493636,28.56863274751231,28.95638105738908,28.380898527801037,27.78298118337989,28.74513795459643,29.28387892153114,29.182094710413367,28.227160731330514,29.209967700298876,28.365570657886565,29.248330450616777,29.418258777819574,29.098011050838977,28.739862432703376,27.999653470236808,27.737236476968974,27.44743140693754,26.969154268037528,26.370359277818352,27.269235076382756,26.575839361641556,26.319610605482012,26.8821161352098,27.482184456195682,27.13116159243509,27.899346437305212,27.61345121311024,28.503936159424484,28.63610255997628,28.653359617572278,27.975372368469834,27.726478471420705,28.384144308511168,27.49948089569807,27.27058029314503,28.153582802973688,28.329142042435706,28.900479393079877,29.506252913270146,30.495758229866624,29.808046695310622,30.46021033404395,30.28204164793715,30.26999819278717,29.634733483195305,28.952353947795928,28.54312314884737,27.994540985208005,27.214299054350704,27.19492934131995,26.867007808294147,26.815590449608862,26.938170516397804,26.58333097398281,26.07817021291703,25.600631141569465,26.525392684154212,27.09612116124481,27.032361119054258,27.350582611281425,27.882822240702808,27.30292205279693,27.423234531655908,26.501491979230195,26.545021657366306,26.11229185666889,26.72753331437707,26.162654622923583,26.07996720029041,25.768938582390547,25.244243905413896,26.115355891175568,26.60289858561009,26.74326869053766,26.22153822146356,25.752065668813884,26.052511842455715,25.653517802245915,26.06204978423193,25.65133273974061,24.809231672436,24.3085642112419,24.90715077565983,25.29094089102,24.900309992954135,25.25419262656942,25.23621954070404,25.065948458388448,24.933623416814953,24.990034645888954,25.67094028973952,25.81639904016629,25.247007195372134,25.985511814709753,25.812475559301674,25.911927957553416,25.660818514879793,25.688738521188498,26.646276213228703,27.111536420881748,27.924307737965137,27.57211967371404,26.682974837720394,25.950849710498005,25.50455324165523,25.002151926979423,25.061149219982326,25.87732194364071,25.45231823157519,25.42412342131138,25.208910706453025,26.202289251144975,25.503471996169537,25.98629109095782,26.025859375484288,26.54176113475114,25.910917985718697,26.896746275015175,26.984118577558547,27.32950698537752,28.150081666652113,27.737474261783063,28.25160015327856,29.23187355650589,30.161154138389975,30.227622320875525,29.65478474786505,29.185909000691026,29.36897389171645,30.17521587619558,30.666306640952826,30.599617718718946,31.044848098885268,30.590407649055123,31.376922143623233,31.46733638457954,31.493505348917097,30.77366315247491,31.08653908735141,31.661022764164954,31.930456744506955,31.12764476099983,31.303113371133804,30.576471243053675,30.6068548806943,31.47779398597777,31.70789361651987,32.61347003467381,33.370912498794496,33.951963843312114,32.9927137279883,32.50392695236951,33.37053622305393,33.69591578934342,33.142476446926594,33.20948823681101,33.80634919926524,32.95806419337168,32.43929148232564,33.035577522125095,32.760462060105056,33.713654598686844,34.67502194317058,33.870027725584805,33.642509766388685,33.38009713217616,33.61750433687121,34.21357617340982,33.510478293988854,33.16249104542658,33.19986584736034,33.89988569403067,34.309505090583116,34.07326309988275,33.69491750234738,33.089528013486415,32.16166524775326,32.199976115021855,31.483067471999675,31.77707413258031,31.33690840471536,30.913333642296493,31.801172212231904,32.179039911367,31.750605375971645,31.619480004534125,32.356068150606006,32.10861260211095,31.72884033061564,32.56365357618779,32.58984754700214,31.853143617510796,32.213688550982624,32.72174866264686,33.20612403936684,33.69918618351221,33.571050027851015,34.19205997744575,34.239578406792134,34.52979903342202,34.792969240341336,35.36222795583308,34.57394447363913,35.105474030599,34.86310241743922,34.15873692603782,33.59736821753904,33.93836150597781,34.78883571410552,35.05825798865408,35.589597136713564,34.9778177193366,34.278374791610986,34.48476074356586,34.67914269398898,34.10806750925258,34.26649232255295,33.920975017827004,33.26749814208597,32.268792803864926,32.44749017013237,31.898287434130907,31.681476830039173,31.708740468602628,31.750503305811435,32.56631861999631,32.8338374835439,32.67604109738022,31.867988655809313,32.822532256599516,33.11082170205191,33.844118643086404,34.14278407488018,33.89532989123836,33.96267166733742,33.00511019676924,33.738307321444154,33.97045743325725,33.14174942020327,33.48256255313754,32.615362274926156,32.92937624640763,32.49743454810232,32.787778828293085,32.282554120756686,33.11868221964687,32.49757901672274,32.407998881768435,32.75161602534354,32.00629192125052,32.87756012240425,33.18733034841716,32.828461447265,32.32932748226449,32.03323488077149,31.715769874397665,32.628833200316876,33.02242076629773,32.55236722761765,33.14048618450761,33.2601589593105,33.9147671116516,33.233919761609286,33.19477550778538,32.84571336442605,33.792581643443555,33.926635993644595,34.58875034749508,33.65906393248588,33.634699972346425,33.85114054009318,34.83382899546996,35.326051076408476,35.96835956722498,35.3521247995086,35.37639968143776,36.3571377042681,36.60286260256544,36.90149957453832,37.68226704187691,37.97995778732002,37.279749740846455,36.492554927710444,35.92197000142187,35.531767253763974,35.86317002819851,36.8076064302586,37.21167867258191,36.81675394484773,35.93990326859057,36.919137705117464,37.228602997493,36.353889802936465,35.97554301144555,36.32371185394004,35.575255423784256,36.49920145049691,36.69912842847407,37.59467867575586,37.17504169791937,37.43008914031088,38.40493594435975,38.49017409607768,38.21282745851204,37.777039802633226,38.41158562339842,38.48996102344245,38.15231767715886,38.76963237347081,38.832742885220796,38.75839275866747,39.2849256452173,39.801716721616685,39.211677762214094,39.931156921666116,40.094726195093244,40.976084975060076,40.528716328553855,40.580175107344985,39.79601563932374,39.80292333988473,40.681397437117994,39.73941361438483,39.0803985632956,38.33351724548265,38.971938075032085,38.34132134076208,39.177967412397265,39.906565837562084,40.76018182374537,40.47331778332591,41.41298737609759,42.24909387435764,42.023405987769365,42.36864181375131,42.66008719103411,41.989577608183026,42.911244271323085,43.03970992891118,43.96539945807308,43.850721024908125,43.228590118233114,43.35250092903152,43.14851834764704,43.315404284745455,43.44617052702233,44.39086511172354,43.40923691820353,43.59885475365445,43.92857461841777,44.65263405395672,44.967650403268635,45.17103844927624,45.13723999261856,44.400546298362315,44.73368454305455,44.12830869015306,43.614875165279955,43.27054933132604,43.978645948227495,43.12397548602894,43.46203352510929,43.465105086099356,42.805698026902974,42.490130143240094,42.954593437723815,42.101568900514394,41.83935279306024,40.89838755270466,41.0864980397746,40.952008691616356,41.32019919808954,41.391990875825286,41.89684902271256,41.84492481406778,42.47859720746055,42.46204746467993,41.52063190424815,42.01512660551816,41.52679309528321,41.91875611850992,41.87261105142534,42.38193270470947,41.41790943266824,41.193582601845264,41.00035037146881,41.11165795568377,40.73010116862133,40.20656229229644,40.54209006624296,41.363719049375504,41.567156394477934,40.82814184157178,41.552900878712535,42.4311086256057,41.50319055886939,42.28531604819,43.119846696034074,42.30845866166055,42.26297438330948,42.80878789443523,43.75606872746721,44.30108170770109,43.57464660331607,43.40471732011065,43.87550094444305,43.68142890697345,43.07107509020716,43.06990924337879,43.35158042795956,43.68329662736505,42.97620444698259,42.86097423126921,43.18806299008429,42.5232840096578,42.196258081588894,42.05504938587546,42.233864817768335,41.611357156187296,41.5393013083376,41.84652558481321,41.82513345964253,42.412282451521605,41.93222187273204,41.38717729272321,41.20246740942821,42.005081694573164,41.674591032322496,40.93927669804543,40.039442578330636,40.896185227669775,41.240231848787516,40.88654388859868,40.035558440722525,40.07212385721505,40.37391845881939,41.3727404740639,42.12793254107237,42.64253530558199,42.8739170585759,43.33463812433183,43.26393610378727,42.323296362534165,41.75611650198698,41.34668574016541,41.0507378410548,41.53304858226329,40.74488594569266,39.80922393640503,39.286785824690014,38.323724418412894,38.504446478094906,38.23363121552393,38.22458559134975,38.495747468899935,38.86612193332985,39.73004126641899,40.04386993544176,39.98345402954146,40.370448290836066,39.84399455040693,39.94976662937552,40.15283003915101,40.71909766970202,40.92430635262281,40.26964638289064,40.84848718577996,41.17408453533426,40.7724070972763,40.22062039282173,39.23096561152488,38.59664127836004,37.86735195154324,38.236031657550484,38.185538253281265,38.61638707714155,38.82650156412274,38.70144040044397,38.60406994028017,38.086735364515334,38.05141276214272,37.43494198890403,36.6562434877269,36.93842206336558,36.59514125203714,36.55944742588326,36.707603689748794,36.0178003530018,35.49010282102972,35.860249747056514,34.95365038653836,34.114608026109636,34.45779152773321,34.8896344602108,34.28453028341755,35.14203504519537,35.149527294095606,35.65326450346038,36.59332688525319,36.30929842591286,35.607594165951014,35.36355767771602,34.65660959202796,33.90691552730277,34.24694528011605,35.05862702662125,35.72065848391503,35.62724133906886,36.41982966288924,35.75156236346811,34.92826869152486,34.893344106152654,35.036257597152144,35.24870812706649,35.5334259015508,35.48159140441567,35.1109395599924,34.95571873150766,34.58809993509203,33.606494709383696,34.114606445189565,33.88147895457223,34.026284052059054,34.35736676957458,34.414177189115435,34.2705239248462,35.117868294008076,34.27809203835204,34.18703331472352,34.880379892885685,35.13033887511119,34.24218222219497,34.5311334785074,33.79025032930076,34.22884012572467,34.386315741576254,35.26955898338929,34.80719992611557,35.60418095998466,36.57234405120835,35.83955454034731,36.57909096684307,36.90329422149807,37.648781795054674,36.90441835206002,36.648484320845455,37.11930002970621,36.911786317359656,37.03722626809031,37.40528374444693,37.53085840307176,38.338575335685164,37.388901917263865,37.36196399061009,38.185270983260125,37.84868828812614,38.38709581270814,38.891876394394785,38.6004009116441,39.39099703589454,38.60991347162053,38.12285930942744,38.25284021580592,37.749441736377776,36.82282819645479,35.8517006454058,35.12938664481044,34.27714035613462,34.82098172977567,35.4377619586885,35.45224858215079,34.58980249008164,35.57768926024437,36.12086954852566,35.38615229073912,34.563069947995245,35.051763472147286,34.6489935927093,34.09949138388038,33.88966278452426,33.41167692281306,32.42204228974879,31.815193966496736,31.79012579936534,32.148815426044166,31.620242120232433,31.138878656551242,30.88038984220475,30.20809606462717,29.86993824550882,29.611360906623304,30.171372215729207,31.047774939332157,31.024328499566764,31.943102053832263,31.224317038897425,31.534496581181884,31.985157121438533,31.941888679284602,31.965002242475748,31.11933474102989,31.641680902335793,32.232474233955145,33.02005261648446,33.790009192656726,33.79253692319617,33.545121510047466,32.898720113094896,33.04056825162843,32.284084256738424,32.219369067344815,31.788737304974347,30.82197190169245,31.805173499975353,32.55084554105997,32.682073306292295,32.42967995768413,33.38304473366588,33.18354107905179,32.83646883163601,33.44267571810633,33.73633026750758,34.13662038650364,33.486666216515005,33.74705630168319,32.96890706708655,33.87782046291977,33.45890778442845,34.12664237478748,33.453945636283606,34.361465433612466,34.358064361382276,34.74425735138357,35.1208695913665,35.66387455211952,35.43715415056795,35.99907397851348,36.158416386693716,35.974833864718676,35.149205608759075,34.54545879876241,35.12772300094366,36.121126448735595,35.62041898164898,35.38746763020754,34.67537058657035,33.72727050958201,34.205337250605226,34.72469195444137,34.02510516298935,33.04341070074588,33.75473521044478,33.048735968302935,33.823697003535926,33.66345761017874,33.47499269712716,34.38912029704079,33.894216211512685,33.88282456621528,34.87418875936419,34.97588206734508,35.973211522214115,36.75439421553165,36.1936676283367,36.38031551707536,36.61177274910733,37.13077847613022,37.7154507949017,36.78752157790586,36.64520116476342,36.9511507852003,37.202630144078285,36.92967583145946,37.172378996387124,37.89562027156353,37.34258099319413,37.82838131254539,38.3320061606355,37.53639374440536,37.23440529638901,36.822248199023306,36.7650494184345,35.959441968705505,35.30479783564806,35.18211044743657,35.4259411781095,34.58825997309759,33.609055085107684,32.81789952237159,32.019667407963425,32.149371817708015,32.3849529158324,31.9214330133982,31.763608377426863,31.480121225118637,31.80804508086294,32.001433877740055,31.34160753292963,31.804564516525716,32.229111548513174,33.17146536661312,33.75368780363351,34.65897982660681,34.549650580622256,33.91644803574309,34.741929712705314,34.526915980968624,34.540697280783206,33.80568151734769,34.21359167760238,33.5039478065446,33.771472489926964,33.01275280350819,33.4811888365075,32.720577869564295,33.02720901137218,32.55295325117186,32.06979314610362,32.14648663578555,33.0824668337591,33.16063639102504,33.47649781825021,32.85030754422769,33.23925157496706,33.78870908264071,32.965114863123745,32.21443930314854,31.958225204609334,31.43795622140169,31.959138149395585,31.192409708164632,30.65270750457421,30.468867873307317,29.749163032975048,30.06142162019387,29.26760817039758,29.707834646105766,30.590143205597997,30.23725035134703,30.8137162826024,30.770019114483148,31.463972476311028,31.661318794824183,32.24414466973394,32.487253019586205,33.1171100884676,32.17305005947128,31.612595970742404,31.549478526227176,32.388942311517894,33.29176320321858,33.15682643977925,33.52736915135756,34.477814711630344,34.603556691203266,34.211020808666945,34.38537223543972,34.43515540473163,34.21107092592865,34.7125107771717,35.2471224735491,36.06919263722375,35.850170836783946,36.362143992912024,37.17633019108325,37.426057253498584,37.283608849626034,36.39002807857469,36.311210601590574,36.779774533584714,37.36904217163101,37.97262775339186,37.97098112618551,38.970749121624976,38.5566849289462,39.307621464598924,39.08386116428301,38.87928691599518,38.97249811142683,38.66663837200031,38.17479391396046,38.841413035523146,38.99417697591707,39.603654169943184,38.81502786837518,39.27869969373569,38.70284359296784,38.607108492869884,38.14120912598446,38.033927619922906,37.76437587989494,36.985666800290346,36.5397260687314,35.7233204417862,34.86496418854222,35.339768203441054,35.10613413993269,34.9150893711485,35.39691775245592,35.99177508475259,35.152968803886324,35.35208080755547,35.374714222270995,34.663780752103776,35.312587758526206,35.66948935389519,34.74333450617269,33.88559776637703,34.18417706107721,34.51981560373679,35.30767241772264,35.486013604328036,35.75127050979063,35.75461910152808,35.364670812152326,34.62725999765098,35.45924863219261,35.65803015045822,36.057399704586715,35.474506786093116,34.855787944979966,34.378127046860754,34.605618621688336,34.9162444351241,34.499487046618015,34.12324084620923,33.526556723285466,32.71156355878338,33.60695624072105,34.1715248725377,34.63553094025701,34.65769060794264,35.073803905863315,34.82998948311433,35.49350504949689,35.441175227984786,36.1970636183396,35.452628527767956,34.48967227945104,34.951148617547005,34.013561526313424,33.696173292119056,34.5920405392535,35.58572090603411,34.596835049800575,34.986830862704664,35.42908890917897,36.16950189974159,35.711807269603014,35.96306581469253,35.601987400092185,36.04362298734486,35.66191802266985,34.668006057385355,34.50128159439191,33.60088709834963,33.624526617117226,33.879663441795856,34.683085885830224,35.55354033596814,34.72787808673456,35.04257807461545,34.39524558046833,34.702489386778325,33.96928804880008,33.500938155222684,34.03896946553141,33.585789205972105,32.891757318750024,32.24562772316858,33.01977146184072,32.77248401660472,32.16255632089451,31.565766411833465,31.603655077517033,32.05565441260114,32.3381659029983,31.48690344998613,30.493433544412255,31.001355280168355,30.15036195423454,30.038925838656723,30.657449680846184,30.763384939171374,31.57203777274117,32.14680121373385,33.01136308303103,32.15766372857615,33.0663098776713,33.887310517486185,33.80339905433357,34.32177158491686,34.06404539057985,34.26227529114112,34.88252982031554,35.66998518630862,36.63885157369077,35.88270220346749,34.985422753263265,35.792642504908144,35.8790577147156,35.9287455980666,36.33619443932548,35.46160483499989,35.72733127651736,35.805303955450654,36.16777521464974,36.05625650379807,35.272127417847514,35.169984875712544,35.195187588222325,35.792826822493225,36.32475906936452,36.61767516750842,35.76833752030507,36.691781658213586,36.782488227356225,36.02399906143546,35.36655224347487,34.77409369824454,34.191129197366536,33.85598987713456,34.113954356871545,33.97073027910665,33.8905959026888,34.01835090620443,34.27221057517454,33.778406388126314,33.8462664806284,33.60313703818247,33.42804257478565,33.248826113995165,33.19832832645625,32.62869376549497,32.24989246344194,32.67413115873933,33.64672953542322,34.42443960066885,34.02163553517312,34.49616251513362,33.97944898623973,32.97984882583842,32.92306783143431,33.430345898494124,33.29451239714399,33.44408402731642,32.74979180563241,33.014280368573964,33.934372522868216,32.94265806302428,32.58632806362584,32.130142893176526,33.012196116149426,33.0654891631566,32.92695909179747,33.62291859323159,34.16035237908363,34.931954925879836,35.41436673561111,34.511427090037614,34.487350191920996,34.67888006893918,34.353556546382606,33.50365525484085,33.64042513817549,33.856229454278946,34.761212673038244,34.31642027711496,35.17703601019457,35.32166844094172,35.38969114655629,34.43424802552909,34.08169919112697,34.542612803634256,34.223698111251,33.48156346566975,33.02710273535922,32.625285321846604,31.82697862247005,32.766924693249166,32.9001018689014,33.07876747101545,32.51384681742638,33.12118164077401,32.56828232156113,32.52244901750237,31.782649609725922,32.49624945130199,31.640291408635676,30.946604445576668,30.083360847551376,30.428192283026874,30.33932255068794,29.40769804082811,28.47099518124014,27.637351331301033,28.58508861158043,29.453976010438055,29.143536324612796,29.206607942003757,29.449599333573133,30.200638914946467,30.562302842270583,31.07020089868456,31.131481975317,31.252264177892357,31.36383758066222,31.76808685483411,32.66442860616371,32.41330736828968,32.20114082656801,31.49335011932999,30.56719235237688,30.503093868959695,29.983937262557447,30.373677977360785,30.772439015563577,31.19541784795001,31.09535840107128,31.918946189805865,31.60526666138321,32.062634114176035,31.331706802360713,32.038554553408176,31.45077803917229,32.1575264679268,31.906552055850625,31.41197157651186,30.550791735295206,30.837220115121454,31.13935900479555,31.937081820797175,32.9298598007299,32.319198162294924,33.14287219243124,32.96978902583942,32.102907827124,31.89824878424406,31.13631844241172,31.728750518057495,32.29844708181918,33.18365361727774,32.21781018888578,31.60234079649672,31.715404093265533,32.48311372892931,31.764306536875665,32.15298909321427,32.26226779539138,33.25668296497315,33.91177653009072,34.41624262183905,34.72058109380305,35.72032241337001,34.92856345418841,34.54608096182346,35.08609606791288,34.38681064033881,33.750559182837605,32.80779009219259,33.805240804795176,33.926903660874814,33.447042901068926,34.12903479440138,34.22754290373996,33.99442275241017,33.74740972230211,34.4309695083648,33.55668818671256,33.15166371455416,33.63809831440449,33.031557785812765,33.65460965735838,33.0548844775185,32.51817666180432,32.925146526657045,32.81920945644379,32.27905009081587,31.67426676256582,31.748950111679733,31.940563841722906,32.829287469387054,33.74098929716274,33.81160865211859,33.757367794401944,34.174522993620485,33.84587986022234,34.119244212750345,34.48993027023971,34.59586525009945,35.42565916990861,35.395336750429124,35.14108504727483,35.746249929536134,35.49561601923779,35.18907322594896,36.11622577160597,35.31146873207763,34.91165997181088,34.63283654022962,35.06497631082311,35.40113348001614,35.031251007691026,34.68437090795487,34.03795341681689,33.58358893590048,33.815460310317576,33.75625416636467,34.01707175467163,33.891717130783945,32.98849714593962,32.22623968264088,32.93624993506819,32.961203234735876,33.66899738740176,34.18114534299821,35.095023459754884,34.33226407598704,34.98999553313479,35.01416347455233,34.08171379379928,33.74782228143886,33.912671172525734,33.162350825965405,33.53527628676966,34.495233356021345,35.35376235144213,36.01313746534288,36.90769131947309,37.17504481738433,36.38707632943988,36.94599885540083,36.008179331198335,35.551810511387885,36.32073162076995,36.91934013180435,36.041268554050475,35.20221281750128,35.236072620376945,35.28709400165826,35.1071411347948,34.26546790683642,33.719804347958416,33.14936568075791,33.677531831432134,33.70447076158598,34.16465645702556,33.72786491457373,33.995853944681585,34.836920362431556,34.308790671639144,34.88026406662539,35.05462795030326,34.565547809936106,35.491182308644056,35.18142806598917,36.10122988931835,35.82140363380313,36.543618304189295,36.155220623128116,36.92241358291358,36.17304684733972,35.84528137464076,35.46554350992665,34.63047395925969,34.91346147470176,34.879717845935374,35.21755993459374,34.68518433533609,35.59414494084194,35.561533937230706,36.53475730633363,36.65008904458955,35.938438922166824,36.08679521037266,36.56321974284947,36.56061476795003,36.77082645939663,37.6959965005517,38.05825010826811,37.74344225414097,37.51132559962571,38.23713919427246,38.61324356030673,39.4595236252062,38.7862980812788,38.21515843644738,38.00469103688374,37.45854852255434,36.997803568374366,37.575670117046684,37.26845389325172,37.79145212098956,36.919242531992495,36.398489865940064,36.92574104014784,36.619043176062405,36.90390306012705,36.71929752966389,35.89412819687277,35.36314370203763,34.49070896441117,34.38946395274252,33.69425587076694,34.455685717985034,33.87348050670698,32.889063000679016,32.31233239546418,33.049776044208556,32.69723620405421,33.174349633045495,33.330538406036794,33.15766110084951,32.160160574130714,32.05166478827596,32.03504365310073,32.04414524510503,31.488792394287884,31.100446586031467,32.0606392538175,31.46021872991696,32.31463169166818,31.86162658035755,31.000284282956272,30.789536111522466,31.704825246706605,31.024394685402513,30.751449816394597,31.29700170364231,31.1546003036201,32.071314682718366,31.102059309836477,30.83689309982583,31.679808185901493,32.05888681532815,32.46285657631233,32.658499826677144,32.4310527597554,33.11461934028193,33.41578135360032,32.83541836729273,32.90780657622963,32.63828774448484,31.74875519517809,32.2478455058299,32.658928700722754,32.241667442023754,32.298774764407426,33.01770493853837,32.64129236340523,32.48236340330914,32.51449692249298,31.65840470744297,31.34498775517568,30.91867449041456,30.06162787368521,29.0742419809103,29.185230042785406,29.97986827744171,30.790411930065602,30.184309992939234,30.974714242387563,31.23808510461822,31.134435501880944,30.738363755866885,30.436624980997294,30.19577975384891,31.17264215881005,31.553546878043562,31.265726851299405,32.02160842111334,32.16584486654028,32.892724136821926,33.86598155926913,33.825773131567985,34.668173622805625,35.06072354130447,34.63768472755328,34.53546387515962,34.32096308097243,33.891829601023346,33.681660127826035,33.77136712567881,34.28765598637983,33.33671473758295,33.57301768613979,32.727936757262796,33.44034151127562,33.19165124697611,33.993450183887035,34.30136785004288,33.34080487815663,33.05912338895723,32.439238079823554,33.34339953865856,33.16324868006632,33.108062121551484,33.87713800370693,34.15780390845612,33.5329428515397,33.8831680691801,33.49017865816131,33.28622882254422,32.6632169499062,33.01484992681071,32.79595796903595,33.13059929013252,32.55504074273631,32.45322805317119,32.36264933552593,31.615414498373866,32.55310903536156,31.82514856895432,32.415548304561526,32.354646942112595,32.550711965188384,32.63852317491546,32.8051290740259,31.852293191943318,30.97085533896461,30.70841501140967,30.844889625441283,30.24783599609509,29.320370696485043,29.214348196983337,29.234391307923943,28.919688366819173,29.72146120481193,30.497614071238786,30.985850202385336,31.119732974562794,30.920832136645913,31.453624811954796,31.328812192659825,30.83184942929074,31.540627391077578,30.58735568402335,31.119800864718854,30.29647468170151,30.149579991586506,30.30074084829539,31.16671152599156,31.018275226466358,30.908594927750528,31.54840241232887,31.273554786108434,32.10502259852365,32.90069711068645,32.43629872985184,32.32705393573269,31.83026653714478,31.535238057374954,32.29661887604743,31.600411849096417,31.5231869565323,31.7152327648364,31.081256065052003,30.82124722469598,30.262453863862902,30.866249536629766,30.92831335309893,31.89904289273545,31.56270764116198,32.325981420930475,31.391836129594594,32.14147855434567,32.25688016973436,32.35441179620102,31.789276419673115,31.209572759456933,31.89680050034076,31.7395771141164,32.36614448716864,32.15769896609709,31.767964282538742,31.253523397259414,31.27367337560281,30.51860500779003,29.862156111747026,30.38857000041753,30.918367236386985,30.466888720635325,31.438781689386815,30.855617611669004,30.98583198711276,31.591467196121812,31.251337847672403,30.87740139523521,30.017215117812157,30.25568726565689,30.83711418323219,30.323638291098177,29.837279667146504,29.012022062204778,28.290723503101617,28.81470362842083,28.859394738450646,28.880300343502313,28.149276142008603,27.37801261479035,27.292325604707003,27.796513793990016,26.80250133574009,26.774576917290688,27.03795962780714,26.91611968493089,27.623806439805776,26.996470795944333,27.22965166112408,27.90685075521469,27.163247124291956,27.18584587983787,27.309653447009623,26.948253620881587,26.321699132677168,27.033440768253058,26.417398588731885,25.42370633361861,25.958261447027326,26.69984671426937,27.436863496433944,26.742981154005975,26.839738287962973,26.33399422140792,26.747356893494725,27.64665774302557,27.210901211947203,27.685927607119083,26.829018556978554,25.95970735140145,26.23734243772924,26.57565200701356,26.363791382405907,26.949096660595387,26.141913337633014,25.606759616173804,26.325850090011954,25.915583107154816,25.453781246673316,25.855967421084642,25.15842941356823,24.723839125130326,24.39428004808724,23.683687850367278,22.715299922507256,22.350642417557538,22.60719071747735,22.44552744133398,22.73279347270727,23.449751850683242,23.522978705354035,22.94618433713913,22.41386835090816,23.038972001057118,22.771021058317274,23.683338329195976,23.815320851746947,23.172640966717154,22.180182395968586,21.959235477261245,21.188709094189107,20.74892017012462,21.207486444618553,20.31391582917422,20.693398972507566,21.006105221342295,20.94579639006406,20.77206567162648,20.314261538907886,20.7159156287089,20.5995070990175,20.179865387734026,19.405779007356614,18.896712328772992,19.192696997895837,19.874241063836962,19.703337558545172,19.842202625237405,19.500866244081408,19.50654343375936,20.13224626518786,20.032033732626587,20.53917561052367,21.129609276540577,20.426729867700487,20.85060097463429,20.97541577462107,20.006437443662435,20.678455911111087,21.10065060062334,20.91411757050082,20.995883862953633,21.565825002733618,20.858959106728435,20.718367184046656,20.909704882185906,21.283028726466,21.390779693145305,21.593763577286154,21.885009414050728,22.580892451573163,21.968422706704587,21.0978698390536,21.08867706079036,20.67372214049101,21.2871004329063,21.17555755795911,20.440660221967846,20.069189575500786,20.75191782042384,20.335933605674654,20.717658436391503,21.346230052411556,20.94841101532802,20.644001711159945,20.924343951046467,20.395041082520038,19.433320057578385,18.955904653761536,19.593228712212294,19.714360639918596,20.070007343776524,19.912250945344567,20.303678057622164,21.090690586250275,21.53560531977564,20.860509283374995,20.197339011356235,20.667633233126253,21.459033526480198,21.35447381529957,20.858608413487673,21.065657516941428,21.998186701443046,21.23212495818734,22.014519753400236,21.26741942949593,22.25048687355593,22.84981486806646,22.031993030570447,22.925521495286375,22.970413151197135,23.22040501050651,22.9098055572249,22.434739413205534,22.648372161202133,22.139206521213055,22.956923212856054,23.772424962371588,23.668215356301516,23.139953542035073,22.34782246593386,22.74580618320033,21.75879252376035,20.945693405810744,20.554949187207967,20.348219794221222,19.868454254232347,19.34891197923571,18.829461040440947,18.542739257216454,19.308815650641918,18.40091879153624,18.732848519925028,19.320644755847752,18.509731957223266,17.579106939490885,17.97451529232785,17.549408295191824,17.616763710509986,18.266323233488947,17.380667695775628,18.06723860092461,17.529060686938465,18.45519099989906,19.203170052263886,18.455483610276133,18.192460602149367,17.440195372793823,18.43801995832473,19.37166415899992,19.94617580063641,20.922765518538654,21.194330279249698,21.690150067210197,21.530789143871516,22.090042599476874,21.263973215129226,20.767944859806448,20.769229260273278,20.980645918287337,20.15494696656242,19.642430978361517,18.763145894743502,18.991651794873178,18.011593303643167,18.66637568268925,19.040226876735687,19.302610775921494,19.35134135419503,18.996455742046237,18.690392011310905,19.55367222102359,19.856808313168585,19.78487465903163,19.834912084508687,20.504904960747808,19.79556314693764,19.63906600838527,19.350482060573995,19.73294553067535,19.222522567026317,19.82013788074255,19.390860052313656,19.480660893023014,20.331752724014223,19.34987144684419,19.697918329387903,18.808512145187706,17.811470455955714,17.678652976173908,18.191654560621828,18.667866381350905,18.780597270466387,19.313514908775687,18.47206071158871,18.873633915558457,18.461459996644408,18.76650497596711,18.840901254676282,19.389411964919418,19.996763756033033,19.98086721962318,19.28632703376934,19.959806498605758,20.340892821084708,20.188688770402223,19.6928688948974,19.459704352542758,20.43091563973576,19.504881712142378,19.04824542021379,18.345754098147154,18.305845219641924,18.884430456906557,18.67842190945521,18.80922507122159,17.988372564781457,18.614290927071124,17.786334434058517,17.04500039992854,17.737603982444853,16.783524447586387,16.14219166105613,15.251304851379246,14.776656893081963,15.101973943877965,14.966649062931538,14.858455549925566,15.086912670638412,15.10075177391991,15.509267854038626,16.49053809605539,16.14152872702107,16.25932255713269,16.079234812408686,16.723147857934237,16.20788490353152,16.515204592607915,16.1470677270554,15.60621779365465,16.374409798532724,15.855138689279556,15.45184305915609,15.336936173960567,14.34588641859591,14.853204949758947,14.533076539635658,13.630016381386667,13.708387624938041,13.242424054536968,14.088159577921033,14.008524345234036,13.447599411476403,13.622454293537885,12.675133901182562,12.980685722548515,13.426452374085784,12.769516137894243,13.698107009287924,14.357986356131732,14.051182457711548,14.257675691042095,14.485218109562993,14.343263626098633,15.232621953822672,16.131878240965307,16.061908117029816,15.698939216323197,16.606303941924125,16.583710675127804,16.071259462740272,16.95156279625371,16.317690501455218,16.255893876310438,15.589025630615652,16.586334021762013,15.664945804979652,15.335032792761922,15.41706657409668,15.36233241762966,15.348726345226169,16.004940460436046,15.946984606795013,16.286645946558565,15.575774933677167,15.280912815127522,14.436982796993107,14.947122714482248,14.346507161390036,14.919643302448094,14.294823891483247,14.826043624896556,13.855069695506245,14.181034937966615,13.60889973770827,13.037912598345429,12.588711391203105,11.697228913661093,11.827416456770152,11.784842009656131,12.609133034944534,13.255649027880281,13.711451633367687,13.928922041784972,14.875018267892301,15.807426842860878,16.781679729465395,16.78800361091271,16.882411814760417,16.506631010677665,16.35801721084863,17.08186838310212,16.74154427787289,16.25700211012736,15.416647150646895,14.919353616423905,14.735568339005113,15.549807731993496,15.364498100243509,14.796470747329295,14.037953974213451,14.329961499199271,14.957096359226853,14.461348288692534,14.045225861947984,13.498342464212328,12.814441342838109,12.109700084663928,12.7122558709234,11.96385502582416,12.534557898063213,13.311680922284722,13.960290441289544,14.53870915947482,14.18597617233172,14.052925994154066,13.51411544997245,13.689845866989344,14.090179979335517,14.045946984551847,13.863263437524438,14.824728379026055,15.407963103614748,16.053702261298895,16.21463998546824,15.454426552634686,15.932828151620924,15.266626715194434,16.260038347914815,15.682327246759087,16.31738502625376,16.62866387143731,16.353174844756722,15.689236039761454,16.106244339607656,16.83623656257987,16.338982969522476,17.173131920862943,17.866104366257787,17.5835480093956,17.256142133381218,18.01938572432846,18.573092200327665,18.526024964172393,17.86681041540578,17.73480948060751,17.591272816061974,17.09579575434327,16.80472904443741,17.067670431453735,17.853075293358415,18.70201022643596,19.28886551130563,19.51120979618281,20.244362007360905,20.202322555705905,20.961474389769137,20.541250047739595,21.346657616086304,20.93860438792035,21.525853757280856,21.768591267056763,21.901177124120295,21.990627688355744,21.72227769251913,21.926214151550084,21.201657282654196,20.576156198978424,20.748775117099285,20.81990412948653,20.11827738629654,19.889449583832175,20.779624538961798,19.835150592960417,20.151120712049305,20.472653176169842,19.70022005494684,19.18703825585544,18.355233589187264,17.679160037543625,16.777302448637784,17.558531851507723,18.396683691535145,19.169268389698118,18.828805999364704,18.566968728322536,18.229991169646382,17.63956187898293,16.789596293121576,17.758133293129504,17.686494873370975,18.167102247010916,18.768017008900642,18.709999105893075,19.653256659395993,20.34174037631601,21.09743778547272,20.8348078452982,20.086908337194473,19.46235449705273,19.16203618608415,19.754570679739118,20.379029298201203,20.7116562416777,19.945250051561743,19.876649615820497,19.5530260829255,20.061155152972788,19.86833725310862,19.37444608611986,20.017911574803293,20.779488760977983,20.93325990997255,20.2699185567908,20.28504729643464,19.803622140083462,20.464072912931442,20.021573822945356,20.90636976668611,21.458077816758305,21.34791939612478,22.010156102944165,21.40314235864207,20.695102273952216,20.352120448835194,20.830562943592668,20.23635770753026,21.211248781066388,21.593280037865043,20.66297768941149,19.89310341887176,19.23311601066962,19.990905581973493,20.01582666952163,19.465599433518946,18.493871999904513,19.13780425209552,19.77989007020369,18.910496276803315,18.92286861129105,19.737661074846983,19.686985595617443,18.88989088498056,19.812459555920213,19.021463849581778,18.27434847690165,18.62181078689173,17.81916806101799,16.99507570080459,17.011373760178685,16.75196734862402,16.593688698485494,16.744873819407076,16.658252582419664,16.707765236031264,16.217773881275207,15.847638459410518,16.573374846950173,15.966229214798659,15.194607536774129,14.513408387545496,14.27278537582606,14.754649668931961,15.393628730904311,16.28812467167154,17.046194333117455,16.254974752664566,16.446727863978595,15.536552913952619,14.737764697056264,15.36538163991645,14.37341942684725,14.435451155994087,15.294754147529602,15.822900073602796,15.534096159040928,15.510187198407948,15.859808335080743,15.033204597886652,14.255038941744715,15.031934673897922,14.984166038222611,15.657057476695627,15.301941122394055,15.893841661512852,15.12591656576842,15.30477481521666,14.996884332038462,14.717297512106597,14.181440082378685,14.23232108913362,14.93873445643112,15.20386066287756,14.5406539933756,13.582353945821524,14.474924989975989,14.75709507195279,14.095358739607036,13.1544503509067,13.529652008786798,12.71020883321762,12.593455281574279,11.921136592980474,12.308891749940813,12.885547752026469,12.528664478100836,12.410736406221986,11.817428143694997,10.912092636339366,10.315856739878654,9.365916040260345,9.607192018069327,8.958837099839002,9.814042101614177,9.284302149433643,10.254003667272627,10.993542070034891,10.454858579672873,11.424565894063562,10.578027360141277,11.394710891880095,11.782356744166464,11.536869070958346,12.394211259204894,11.953505697660148,11.301316641736776,10.666642824653536,9.87186755053699,9.125801395159215,8.903310160152614,9.203260879497975,8.389939493034035,8.008116161450744,8.348481150344014,8.374425089452416,7.724872692022473,7.466754224617034,7.453236817382276,6.933846445288509,7.79052227223292,8.54681300278753,7.758564297575504,7.611298648640513,8.210705675650388,7.5953958122991025,7.7724065142683685,7.174669019412249,7.7206523874774575,7.0475767105817795,7.243847795762122,6.706703376956284,7.258740596938878,6.365336621180177,6.302861845120788,5.602951576001942,6.447663312777877,5.883632834535092,5.852404388133436,6.030812378041446,5.329767189454287,4.9245041366666555,4.1566054546274245,3.985892368480563,3.564146012533456,3.239825443830341,2.344312726520002,2.788141679484397,2.1233670953661203,1.9746809853240848,2.902840838767588,3.3557114866562188,2.7406089385040104,2.721610089763999,3.313322047702968,3.627963430713862,3.324770322535187,4.126872214023024,3.849778665229678,4.012896604835987,4.036585019901395,3.0990665247663856,2.6831506877206266,2.0109388907440007,1.6413967064581811,1.6280034757219255,2.206646050326526,1.5998270292766392,1.9487392585724592,2.3193565029650927,1.7317981398664415,1.989675389137119,2.0611962913535535,1.1272554267197847,1.5614405390806496,1.1295666047371924,1.9346182011067867,2.1965892971493304,3.178104321472347,2.2190385023131967,1.7247728765942156,2.3267363533377647,2.2911394839175045,2.406248372979462,2.4408577643334866,2.58195182075724,3.3565365984104574,2.5195281920023263,3.137161049526185,4.090055047534406,4.34291213657707,4.574876847676933,4.049004997592419,3.2046089726500213,2.317458333913237,1.4713612021878362,1.7628852776251733,2.557348449714482,1.7547160759568214,2.5667836368083954,3.099398865364492,3.7923130160197616,3.9018608103506267,3.2031984934583306,3.5900775212794542,3.8853197074495256,4.144856418948621,4.445420526433736,4.88391104247421,5.133240608964115,5.1964215859770775,6.053451628424227,7.044958995655179,7.36860190751031,7.006558043882251,6.980014319065958,7.292765383142978,6.38855287572369,6.445435993839055,5.474356634076685,4.7573135872371495,5.367421886883676,5.091365527827293,4.465422041714191,5.262597276363522,5.3123586950823665,4.320293303113431,5.310603024438024,5.918715374544263,6.188764490652829,6.951051596552134,7.837565157562494,6.863281306345016,7.7645806316286325,7.215920884627849,7.760670051909983,8.31818315712735,7.627713487949222,7.708035446237773,6.928953941911459,6.18549905763939,6.971192358061671,7.438625747337937,7.154107380658388,7.209083576221019,7.853408406954259,7.905987219884992,8.32299593044445,8.309486306738108,8.694722350221127,9.644378823693842,8.816016104537994,9.180370670277625,8.399514061864465,7.774413027334958,7.50593905383721,7.825962306465954,7.36454291222617,6.480329979676753,7.263744472991675,8.106455333996564,9.037948600016534,9.222567067947239,9.394472821149975,8.578934545628726,8.311059907078743,8.878067032899708,9.693045996129513,9.832333146128803,10.718614155426621,11.06192044261843,11.180592940188944,11.951925040222704,11.366666004993021,12.006366794463247,12.107703292742372,11.54669706709683,10.766963333357126,10.757325422484428,10.388919373508543,9.546566837932914,10.250792855396867,9.62092510657385,9.89098443230614,10.555019772145897,10.82760700210929,10.887761548161507,11.307352625299245,12.13419483276084,11.511268080212176,12.11208105320111,12.974329221993685,12.758603800088167,13.171300827991217,13.391764086205512,13.225738934706897,13.040651563555002,13.77491078991443,14.03882928006351,14.774034524802119,14.268802086822689,14.285175958648324,13.89870043285191,13.373077655676752,13.63546929974109,13.047312494833022,13.475570538081229,13.60609483672306,13.391561610624194,12.78777263360098,13.465935548767447,13.520085121504962,12.585278723854572,12.600070256739855,13.554320836439729,13.936243070289493,14.553502465132624,14.035705003421754,14.442345562856644,15.136647094041109,15.661521782632917,16.337413555476815,16.138857477344573,16.839583846274763,16.33738559950143,15.603639103006572,15.730378115084022,15.47872062260285,14.829843061044812,15.342701605521142,15.540954117663205,14.911360485479236,14.089872960932553,14.81293895561248,14.9218068420887,15.689403928816319,16.517377487383783,16.76093411166221,16.651894538197666,15.689141239505261,15.421218132600188,14.55564275989309,13.673636518418789,13.930062322411686,14.808201475068927,15.482350503560156,16.193625835236162,15.413561461959034,15.869775001425296,16.834950134158134,17.14868341665715,16.464958407450467,17.316779461223632,17.0403597895056,16.18108530016616,16.797228707000613,16.08426231937483,15.3450613534078,16.12937054177746,16.613543255720288,16.428716787602752,16.677370022516698,16.001974635757506,16.311419114936143,16.820300992578268,17.459875860251486,17.99457632796839,18.925812769681215,17.940143080893904,17.821023932658136,17.229286729358137,17.19591109547764,16.830622499343008,17.523602068889886,18.095803486648947,18.73337826319039,19.135450020898134,18.79838908696547,18.29990091966465,18.26572882803157,18.517801938112825,19.41992911277339,19.175255743786693,20.119905337691307,20.380231850314885,20.84015995450318,19.977524576243013,19.99262591963634,19.172202877234668,18.26906271604821,17.866653035394847,18.242333711124957,19.13342947792262,18.811597153544426,18.911006110720336,19.897902838420123,20.87164042517543,20.364157494157553,20.5662505668588,20.77898584958166,21.539683304727077,21.650616195052862,22.463964270427823,22.248234163038433,21.996917055919766,21.54316989192739,20.77594164153561,20.63104045111686,20.58762980811298,19.952592115383595,19.2723182416521,18.813328825868666,18.229290595743805,17.90764948958531,18.764425576664507,18.037967438343912,18.287049538921565,18.638692617416382,19.1493977480568,20.13409869838506,20.143613850697875,20.24761432548985,19.85606995318085,20.566015056800097,20.78752012597397,21.37284340383485,22.235726402606815,22.636494332924485,22.17188008921221,21.897109435405582,22.002252847421914,21.17928074952215,21.618390725925565,21.3177767614834,21.80439829081297,21.13899851916358,21.062353909946978,21.834911425597966,22.05777306575328,23.038148699328303,22.078383590560406,22.69529044162482,22.112692087888718,21.32400411600247,21.73132534790784,22.659480324946344,21.967706787399948,22.77565914671868,22.12730218283832,23.010857854038477,22.779699024744332,22.475960113108158,23.30988521827385,23.17008452443406,22.2844924852252,22.980290887877345,23.874641883186996,24.386094585061073,25.06267069140449,25.96456325193867,26.25426604785025,26.939110185485333,27.87256326060742,27.11018802318722,27.39050762495026,26.983312049880624,26.133070370182395,25.62687674118206,25.115039073862135,24.422140498179942,25.010700625367463,25.15086766332388,24.544646261725575,24.06003878545016,24.442556696478277,24.44705190183595,23.697547214105725,23.14076815592125,23.692372643388808,23.924235918093473,24.499071494676173,24.748874607030302,23.759343147277832,23.18714108131826,22.679528552107513,22.418039289768785,23.160235496237874,22.85680508473888,23.377933957614005,23.996026979759336,24.861132383346558,25.486083135474473,24.639683817513287,24.910230216104537,25.56191936461255,24.858463018666953,25.08192515000701,24.102425284683704,23.535639530979097,23.403049907181412,23.225795718841255,23.630375501699746,23.7272478165105,24.2623776094988,24.53302284842357,25.216068619396538,24.661823321133852,23.988355392590165,23.79021356580779,24.342349629849195,23.372672833967954,22.41727234981954,22.26386122405529,22.324741711374372,21.5770917753689,20.676132487133145,19.939048361964524,19.74467112403363,20.647314444649965,20.088239207398146,19.573909122962505,19.506927541922778,19.374970796052366,18.49963065702468,17.945620586164296,17.808004149235785,18.10954677220434,18.056944456882775,17.900676691904664,17.07640158291906,16.500625604297966,16.724858701229095,17.596803936176002,18.52554414793849,17.834755323361605,17.565479731652886,16.85521844960749,16.919687947724015,17.71806320361793,17.381721349898726,17.71360964421183,17.774028414860368,17.23810634808615,16.921068124007434,16.19533282611519,16.654175117611885,17.148464728612453,16.57470631506294,16.63580953842029,16.77961311675608,16.228226356208324,17.028583175502717,17.03120089508593,16.22358824359253,15.344598730560392,14.997434298042208,14.989124875050038,14.000127312727273,13.69567893864587,13.660080153960735,13.302641556598246,13.32382694678381,12.778893014416099,13.084930420387536,13.692599127069116,14.067630572244525,14.479183169081807,14.666407950222492,13.94964071456343,13.088211831171066,13.93540480080992,14.150714750401676,13.418602818157524,12.613781125750393,12.684725697152317,13.136527172289789,13.244520438835025,12.359785425011069,11.808814686257392,12.793530866038054,13.222503773868084,13.2648481936194,12.70860879868269,13.506852897349745,13.476217123214155,12.476697602309287,12.830971283838153,13.597182848025113,13.108072157017887,13.915742401964962,14.86467415932566,14.705846179276705,15.391381054650992,14.54795790137723,14.994289124384522,14.773746554739773,15.694908179342747,16.169765774160624,15.876797020435333,16.4455892033875,15.826533030718565,15.151169958990067,15.362750777974725,16.223284270148724,15.975831166375428,15.419923860114068,15.421992883086205,15.320762885268778,15.41929117264226,15.49884308874607,15.677027224563062,14.840156627818942,15.261115048546344,14.404428608249873,14.731812798418105,14.84959560353309,14.098213288933039,13.472315148450434,13.990229426883161,13.82384186796844,13.99189222138375,13.746015661861748,13.204352037515491,12.621507106814533,12.809071260504425,11.897308395709842,12.818518386688083,13.352151165250689,13.666929481551051,13.747463125735521,13.107171657960862,13.13819398265332,14.131452306173742,13.304890018422157,12.459517516195774,13.18963583279401,13.385420602746308,13.979564963374287,13.15986345615238,12.188995785545558,13.120946660172194,12.488299187738448,11.875196231529117,12.461788278073072,12.33631817670539,11.524505347479135,10.604992123320699,11.25654120882973,11.286102781072259,10.61677959235385,10.672157225199044,9.793486187234521,9.71203693607822,10.516356187406927,9.61482444126159,9.344230855815113,8.499759157188237,9.142826908733696,9.907743762247264,10.046112000476569,10.455232178792357,10.645517766475677,11.336262179538608,10.932416771072894,10.333129535894841,11.156419600825757,11.038776041008532,11.97391799511388,12.432541172020137,12.506626335438341,12.306274048052728,12.347569356206805,12.629093425814062,12.50763135496527,13.108414033893496,14.036654708441347,15.036245751660317,14.187333216890693,15.113492707256228,15.421401053667068,14.62285622349009,14.875033172313124,15.659446601290256,16.280368032399565,17.263941111508757,16.40345585346222,16.1110617518425,16.292152705136687,15.86322591546923,16.790390531066805,16.462166134733707,17.107052016537637,16.616369961760938,17.60201081307605,17.045658028218895,16.609910246916115,16.796969269867986,17.177866995800287,16.7569865193218,16.95740405563265,16.54028051858768,16.61766544310376,16.01285025337711,15.498058007564396,14.758159163873643,13.85378680517897,14.368511670269072,14.01777961757034,14.673616368789226,15.289877394679934,14.985907598398626,14.470442386344075,14.948363971430808,15.294210141524673,15.03669336764142,14.57145700743422,14.564037235919386,14.171705397311598,14.099458621349186,13.862124939449131,14.463074676226825,14.098123190458864,15.037464178167284,14.713331803679466,14.248999630566686,13.532652604859322,12.559370981063694,13.511148470453918,12.976318249478936,12.07163607282564,12.721668040379882,12.521989515516907,13.21660478040576,13.775441659148782,14.210479953326285,13.762404733803123,14.56986741302535,15.297275978606194,14.531320875044912,15.055271611083299,14.548385905101895,13.830558208748698,14.782476393505931,15.264949362259358,16.03086932748556,15.281078803353012,16.09933637594804,16.252069091890007,15.57965455017984,16.076409434899688,17.039271777961403,17.338249786756933,17.312325291335583,17.433509037364274,18.41521426755935,18.84774631122127,17.93202211195603,18.423119735904038,18.479376836679876,18.607039307709783,19.255911231506616,18.823157336562872,19.74262028746307,20.21771812485531,20.048269807361066,19.109132238663733,19.713528380263597,20.103421219158918,19.519218638073653,19.561805695295334,18.731584542430937,19.123931953217834,19.638831508345902,18.75930955214426,19.639893709216267,19.568845997564495,18.850118605885655,19.00211512716487,18.93912429129705,18.451756090391427,18.24735002266243,18.02861771825701,18.066569728776813,17.4536897521466,16.61750684166327,16.955852467101067,16.684664990287274,16.243762051220983,15.282318729441613,14.98126736562699,14.12055201549083,14.450363629963249,13.664690849371254,13.675536287017167,12.976369053591043,13.954756419174373,13.547596843447536,12.960788081400096,13.630397248081863,13.981069589499384,14.399419145192951,15.152027591131628,14.64106701221317,14.13440142897889,14.959829129744321,14.303058103658259,14.617628090083599,15.606293393298984,14.797491854522377,14.97868275269866,14.040667838882655,13.150851690210402,13.617588304448873,13.319393774494529,13.395168827380985,14.220046535599977,15.19121861550957,14.679284060373902,14.582873777952045,14.802867715712637,14.288868222851306,14.916425223462284,14.458294929005206,14.540453922469169,14.866284949705005,14.450363688636571,13.972423755563796,13.887573980726302,14.029970753472298,14.773981007747352,15.00964018329978,15.755196255631745,16.236032149288803,16.241998090408742,16.481460561044514,16.173537661787122,15.611032078973949,15.955535804852843,16.442819346673787,16.485640360508114,16.491460123099387,16.967379338573664,17.385702040977776,17.553384630475193,17.699541297741234,17.52553884871304,17.499973371624947,17.635817429516464,17.780853232834488,16.962935591116548,16.056194021832198,15.823061453178525,16.356184164993465,16.4639026299119,15.81813000002876,15.653031950816512,15.012910265941173,15.891170866787434,15.358699506614357,14.95471660559997,15.515419881790876,16.331722244154662,15.895360181573778,15.064880780410022,15.277075632009655,16.16614957759157,16.426069465931505,16.50923429057002,15.665947494562715,16.310863073449582,16.75921425735578,16.759012223687023,16.64810403250158,17.145398230757564,16.571379550732672,17.19789242045954,17.327491689939052,16.819507831241935,17.284142724703997,17.687139480840415,17.636111311148852,18.242576049175113,18.03642627876252,17.065123253967613,17.695529249031097,17.561161924619228,18.559101484250277,17.69077573204413,17.89493164885789,18.70841138670221,19.08958758506924,18.355522371828556,18.712343798018992,19.545288330875337,19.725543512497097,19.591823385097086,19.134378142654896,18.960814523044974,18.96431910386309,19.828054229263216,20.0901162289083,20.068373603280634,20.869899994693696,21.732225388288498,21.153531377669424,20.69121631560847,21.2988590891473,20.417263163253665,19.4464353621006,20.089288644958287,20.812830530572683,21.44325641077012,20.552956738043576,20.261218646075577,19.628670013975352,18.911377024371177,19.73746047820896,19.456110700033605,19.267287149094045,18.46869237907231,17.813317751977593,17.693380476441234,17.406287228688598,17.16824101563543,17.972699554637074,17.68593604909256,18.55475993687287,18.461354119237512,18.001227052416652,17.37759853573516,18.33949757600203,18.52457816293463,18.951774352695793,19.191587397828698,19.609104631002992,18.75939595978707,18.207249464001507,17.46172872092575,17.645084110554308,18.388788800220937,18.47411938663572,17.60682623507455,17.29902714677155,17.19908874994144,17.38196069886908,17.895276128780097,17.218961115460843,16.688234099186957,16.6841172715649,17.406350906938314,17.37758304970339,17.962001317180693,17.098532622680068,17.15145496511832,17.46309398394078,17.367553974036127,18.156704906839877,17.74826369713992,16.870292203035206,16.193778824061155,16.29669387359172,15.727480573114008,15.991088117472827,16.322828834876418,16.529494698159397,17.164504073560238,17.70005529606715,18.49088925914839,18.714732725173235,18.268640868365765,18.625592026859522,18.93338889768347,18.738044993020594,17.869646046310663,18.645422514062375,18.924767347518355,18.26310031628236,17.559547742363065,17.923846785910428,18.469057030044496,18.827415004838258,19.009854138828814,18.937667903490365,19.244934897404164,19.724220035597682,19.28095647878945,19.331111022736877,19.119148610625416,18.683368899859488,18.641070026438683,18.24964455794543,17.44555196724832,18.399507885798812,17.531313384883106,17.923326957039535,18.39641734212637,18.31819506920874,18.84085952024907,17.859035592060536,18.01082097692415,18.792392927687615,17.792794537264854,16.986797181423753,15.994914893526584,16.86155533976853,16.5557345636189,16.507423172239214,16.839274506550282,17.40685272263363,17.92197646247223,18.38635801896453,19.023215391207486,19.958819220773876,19.987251282203943,19.310034689493477,18.357609395403415,18.062321382109076,17.914502014406025,17.514403618872166,17.179421642795205,16.201897472608835,15.529702223837376,16.08086052443832,15.613368635531515,15.912697274703532,15.298685458488762,16.230417776387185,16.68361465772614,17.414795281831175,17.98272638581693,18.547022544778883,17.802237190771848,17.690823765471578,16.901315670460463,17.46984581789002,17.361863700672984,18.03407581197098,18.973172545433044,18.84782169247046,18.320513541344553,17.683298224583268,17.69884334411472,17.98605617089197,17.628972991835326,18.427645281888545,17.826718573458493,16.97012882679701,16.64801765838638,17.19309294503182,17.900513026863337,18.138590421061963,18.628653148189187,18.024915085639805,17.90038479724899,17.35948733612895,17.820199813693762,18.77478193351999,18.02226078370586,17.47546622250229,18.189065697602928,18.442788804881275,19.016942201647907,19.969425740651786,20.393322271760553,21.07370989723131,20.75889678345993,20.94713437091559,21.452789823524654,20.93969784025103,20.808745184447616,20.940665223635733,20.30484284972772,20.794088223017752,20.521682664752007,20.359268747270107,20.450868293642998,20.365703539457172,21.013883455190808,21.187107044272125,21.672019954305142,21.407699258066714,21.899278960190713,21.58130117272958,21.746254177764058,21.73254742100835,20.8380333725363,20.604826748371124,20.139026847667992,20.65323548996821,20.840058327652514,21.674882230348885,22.053359220270067,21.663444998208433,21.80227174470201,22.170647468417883,23.09822227060795,22.117664576973766,21.703972520772368,22.561601511668414,22.693314933218062,23.67332274047658,24.40441485447809,24.49007053207606,23.5411244337447,24.313117186073214,24.888070811517537,24.0729312133044,23.593823259696364,23.289433979429305,24.125681889709085,23.963296950329095,24.37830269522965,24.805779653135687,24.76526551740244,23.849506431259215,24.627290453296155,24.413486156146973,24.673905225470662,24.280074252281338,24.23520128848031,23.7988477377221,23.152369481977075,23.65626631025225,24.32400767225772,23.89664220251143,24.020082250703126,23.444211261346936,22.468251938465983,23.088763494975865,23.920381549745798,23.939800360705703,24.024479716084898,23.079676948022097,23.306675455532968,24.207781778648496,24.75348184350878,25.331571622751653,24.782500925008208,25.658206266816705,25.48387575522065,25.479025200009346,25.783486011903733,25.667666903696954,25.384431139566004,26.280943117570132,26.27396278595552,25.322867343667895,25.276794421952218,24.785750022623688,24.584459073841572,24.547620231751353,23.716649784706533,24.169920433312654,24.81723054824397,24.996401058975607,25.70881927665323,25.46001174300909,26.26222698390484,26.70806245645508,27.590601719915867,27.724792123772204,26.998964299913496,26.405558180995286,27.269511801190674,26.313995042815804,25.398448346648365,24.99213891942054,25.14482466224581,25.873605686239898,26.13089763885364,25.279747779946774,25.274133178871125,24.77701628440991,25.497663845773786,25.250828348100185,25.858724777121097,26.848982981871814,26.961505985353142,27.79037599125877,27.83978731557727,27.296829050872475,26.343260299880058,27.203367054462433,28.13968294300139,28.2283599646762,28.505246438086033,28.031718800310045,27.082983593456447,27.336784329265356,27.25928561296314,28.248472067527473,28.150445064064115,28.652968474663794,28.943437117151916,28.94712450169027,28.310872884001583,29.269754174165428,29.29007654823363,30.12205456569791,30.912663808092475,30.05787800718099,30.091192497406155,30.48357770172879,30.2786796358414,29.883510190527886,30.222696996759623,30.57759786536917,31.06666632881388,31.503508415073156,30.654724190477282,30.77364408504218,31.557177086360753,31.347462099976838,31.264545837882906,31.857700256165117,32.478852255269885,32.93268686719239,33.33929110085592,34.106529026757926,33.94590457575396,34.678215014282614,35.04606496496126,35.679205507505685,36.33760297577828,37.09550662431866,36.307199428323656,36.669361762702465,36.355541001074016,36.07183551089838,36.84058516426012,37.06879125814885,38.04861616529524,37.45773882512003,36.64464535424486,36.170566552784294,35.248699225019664,35.523159593809396,34.71083906153217,34.847471052315086,35.1079240180552,35.731672088615596,35.92628835467622,36.72433566348627,36.69798266561702,36.81995008792728,37.31910802703351,37.46890512946993,36.658739359118044,36.122238555923104,36.67539731319994,37.63296302082017,38.19387455796823,38.081383478827775,37.164203201420605,37.943328094203025,37.04960454814136,36.638463746290654,36.83935603220016,35.947968755383044,36.38435869757086,36.54840750107542,35.64904093090445,35.50469624204561,34.83480066107586,35.07253894628957,34.19692047173157,35.04745958466083,34.961852873209864,35.90815876517445,34.962413512635976,34.850998006761074,34.96606082236394,34.83758553350344,35.129048011731356,35.254087480250746,35.75679259374738,34.91188555723056,35.290330327581614,35.05423321761191,34.35509271826595,34.209961781743914,34.01439628843218,34.933319442905486,35.02941146912053,35.16778199467808,35.464692691806704,34.956290462985635,34.704275771509856,34.624956546816975,34.65166338486597,34.82050253730267,35.61258996836841,35.961668039206415,36.34385269507766,36.17980078142136,36.553395095746964,35.65201515844092,36.29916768474504,37.146279704757035,36.401358203962445,36.187622658442706,35.858463742770255,36.07273939391598,35.40091518126428,35.80780989630148,36.01958657614887,35.071174539625645,35.33390039205551,34.51727719977498,33.67676606308669,34.07616440532729,33.89611642481759,32.94165977463126,33.38815281307325,32.9944295915775,33.857640847563744,33.993119730148464,34.41016243910417,35.024857541080564,34.66490412596613,34.56995240552351,33.664690419565886,32.76601528003812,31.77005631895736,32.40901577891782,33.067789196036756,32.70871206698939,32.597274250816554,32.02339460281655,31.500794620718807,31.262722957413644,30.29504102608189,29.650360842701048,28.78470185957849,28.53541358327493,27.83158734580502,27.388942044693977,28.114527535624802,27.363162534777075,27.54643662692979,27.97878961171955,27.833904881495982,27.757297774311155,28.052035831846297,27.69093637727201,28.228863404132426,28.232310235500336,27.421841281466186,27.572586726862937,26.69149617291987,25.769555132370442,26.21432063030079,26.967228138353676,27.47491872915998,27.635806610807776,27.32634755037725,27.06072991155088,27.39834050508216,28.01215502154082,27.056028965860605,27.76641669217497,27.121145165525377,27.58475507190451,26.84958208259195,26.095024780835956,26.619211808312684,26.423782831523567,27.379196423105896,26.91857215575874,27.403943124692887,26.8186816428788,26.221050010994077,26.956746376119554,26.333902862854302,25.427026989404112,25.498277929611504,25.44317409209907,24.949091877322644,24.562183890957385,24.235645421780646,24.38421672489494,23.544062798377126,24.45019945129752,24.848084891214967,25.046918673440814,24.84190997760743,25.814063165336847,26.600245979614556,27.132114025298506,26.7812754441984,27.194805888924748,27.479948960710317,26.850624514278024,26.845020616427064,27.49197635333985,28.279570448212326,28.573077947366983,28.31643173051998,27.75251590879634,27.671042925212532,26.693831793032587,26.355634487699717,26.50550756882876,27.139138229656965,26.478390083648264,25.68796521052718,25.552585510071367,26.47285182774067,27.224961205851287,27.457935397978872,27.15355131449178,26.577086661942303,25.658501302357763,25.75315813953057,26.48154100542888,26.48643151856959,25.775364704895765,25.166815045755357,25.56938859540969,25.969491116702557,25.266712714917958,24.774544160813093,24.638801457360387,24.709698130376637,23.795627374667674,23.948126709554344,24.47677304642275,23.755770000163466,23.96484312461689,24.29418846964836,23.47572707151994,23.91235971916467,24.025130133144557,23.61625748220831,24.34535340126604,23.97152507537976,24.62670011166483,25.240023308899254,24.83372108126059,24.233007310424,24.150663618929684,23.185512552037835,22.96225782763213,22.33452386735007,22.33934985799715,22.52341181319207,22.205859197769314,23.052707454189658,22.835734067484736,22.292092009447515,21.976191979832947,21.16670895833522,21.835483937058598,21.28026174241677,21.081984654534608,21.108006544876844,20.27426982484758,19.469834418501705,19.218255730345845,19.614845769945532,20.06091028591618,20.479421705473214,20.577454699203372,20.467485152650625,20.102451506070793,19.498768943361938,18.598320016171783,19.177330570761114,18.913578047882766,18.397735508158803,18.744390975218266,18.23585705505684,18.872827174607664,19.488180079497397,18.536798879969865,17.54404024221003,18.209032610990107,18.423511342145503,18.92005231557414,19.696116403210908,18.99801213061437,18.0329841254279,19.00206624995917,18.17874624952674,18.1694717425853,18.597055597230792,19.325621008407325,18.91401668312028,18.05901703843847,18.242420197930187,18.479737021494657,17.633619575295597,17.06120902346447,16.289597217924893,15.879631821531802,16.403775725048035,16.584620223846287,15.89883701177314,16.181261631660163,15.186865194234997,14.888140023685992,15.802992404438555,15.370356633327901,15.209813416469842,14.286219055298716,14.292037055827677,14.043380328919739,14.837319268845022,14.590262818150222,13.829023204743862,14.828433119226247,13.89762917580083,13.99765478540212,13.143022127915174,12.360420439392328,12.585598684847355,12.711140358820558,13.649635922629386,14.093002963345498,13.149907796178013,13.613636671099812,14.146775193978101,14.004087241832167,13.150006791576743,12.556964990217239,13.130913449916989,12.647598159965128,11.779683033935726,12.150176831521094,12.857720041647553,12.576711047906429,12.411952220834792,11.562826487235725,11.519554656464607,11.619051426183432,11.944622931536287,11.091672963928431,11.149828497786075,10.408524064347148,10.046102117747068,9.965878794435412,10.211623045615852,9.983807793352753,10.06694708392024,9.487884904723614,10.172964411322027,10.948030030820519,10.746312695089728,10.59877830510959,10.17300264397636,10.949987414758652,11.426052012015134,10.913241111673415,11.58423148933798,10.873639103025198,11.158687877468765,10.45870775775984,11.025353400968015,10.367939845658839,9.794991040136665,9.72288709692657,8.83374984189868,8.021372900810093,8.075895713176578,8.078539360314608,8.424443748313934,8.518606184981763,9.452341379597783,10.024101447314024,9.499041403178126,10.143075217027217,10.741918505635113,9.791930225212127,10.485579266678542,10.422925073187798,11.40503359399736,11.223348940256983,11.671836222987622,12.519173415843397,11.948217993602157,12.811306508723646,12.272680915426463,11.694763994775712,11.12257410120219,11.529846217483282,11.1069342084229,11.013611806556582,11.118388226721436,10.351011040154845,9.811724226456136,10.024491869378835,9.957041499670595,9.204949967097491,8.480154077988118,9.47174648847431,9.622547468636185,9.584999818354845,9.614848568569869,9.05834552552551,9.510752585716546,9.727892314083874,10.067387366201729,10.445341484621167,10.162882002070546,9.36911755381152,9.442449959460646,9.63360206829384,9.142836439423263,8.830005423631519,8.232029230799526,8.97791801718995,9.850845436565578,9.75987996486947,9.951832797378302,10.159185086376965,10.809850804042071,10.174590499605983,10.449111130088568,10.358645085711032,9.51944875298068,10.322428761981428,10.348466024268419,11.30235300771892,12.027617475017905,11.386419587768614,10.817931057419628,9.85509498976171,10.128195189405233,10.472624512389302,11.249545060098171,11.46283352933824,11.456377010792494,11.901226228103042,11.013394866138697,11.144513470120728,11.684179111383855,12.180581618100405,12.804426626767963,12.92240797355771,12.424309194553643,12.546075662132353,11.625900340732187,12.093152198940516,11.276049819309264,10.813391549512744,10.942196018528193,11.5919752670452,11.36265020351857,11.925751993898302,12.400912657380104,12.849740712437779,12.928523547947407,13.385154092684388,13.995881733018905,14.456144704017788,14.304166893474758,15.209091630298644,15.212700657080859,16.142187142279,16.582628079224378,17.03223171737045,16.941128668840975,17.70648531243205,17.226135657168925,18.125608254689723,18.984839695040137,19.65583498729393,19.040691243018955,19.147502709180117,18.78245348157361,19.73369632102549,19.234040154144168,18.492070564534515,17.514474959578365,17.88441582908854,18.268297768197954,17.94690034771338,18.31795508414507,18.980818069074303,18.368879561312497,18.940636641345918,17.978084765840322,17.51474528061226,16.87481388822198,16.65883373329416,17.504132808651775,16.741442716214806,15.800581328570843,15.71218549599871,15.838965599890798,16.389071074780077,17.34726754622534,18.106371908914298,18.800460484810174,18.50751285813749,17.574901973363012,16.857665719930083,16.15710020950064,17.138775570783764,17.10303197009489,17.273906715679914,17.044639185536653,16.135019153822213,16.870734171941876,16.139290392864496,15.981226277537644,16.0009134975262,15.480241117067635,16.32835414726287,17.159397896379232,16.40617245482281,16.54279549093917,16.41342468885705,16.208729392383248,15.653091678861529,16.0932076103054,16.149181615095586,16.458189162425697,15.870807862840593,15.392311729490757,15.605835584923625,15.452726505231112,14.752351130358875,14.8438691906631,15.026577736251056,14.987868935335428,15.498581250198185,15.769804949406534,16.4224235820584,16.866732596885413,16.059210557024926,15.41038888366893,15.759924344718456,15.170706117525697,14.57274332549423,13.731510022189468,12.873336137272418,13.743415397126228,13.705646832007915,14.517412709072232,13.834170915652066,14.617782650981098,13.639175145421177,14.247327896766365,14.007868077140301,13.177616235800087,14.093314326368272,15.088905002456158,14.11701958347112,13.72152546979487,13.24307794868946,13.78712053457275,12.99240916967392,12.598169427830726,12.780927930492908,13.407294656615704,14.331721043214202,14.624158453196287,15.38914545532316,14.559923266991973,14.947511416394264,15.627612266689539,15.879132825881243,16.070053009316325,16.302203783765435,17.000241627451032,16.183001433499157,17.039917799644172,17.39336949866265,17.390942808706313,16.888673515990376,15.96337499981746,15.107811131514609,14.936246297787875,15.498131860047579,15.703155473805964,15.526916198432446,15.268088585697114,15.822930910624564,14.870616222266108,14.674325147643685,14.67778252903372,14.790456757415086,14.382885301019996,13.811638144310564,13.355968637857586,13.646091430913657,13.748826693277806,14.009725300129503,14.302704904228449,13.826393408235162,14.143143014516681,15.047453992068768,15.115097037516534,15.518313148524612,15.997683190740645,16.824297762010247,17.269948474131525,18.065337783191353,17.60086731147021,17.770016559399664,16.982835670933127,16.59424041863531,16.23282030550763,16.134260274469852,16.51244554389268,15.837544965092093,15.799543858505785,15.905800283420831,16.535509740933776,16.322376167867333,16.34410274028778,15.39859206834808,15.671370415017009,14.898609777912498,15.806996989995241,15.57855645334348,14.737435852177441,15.231592735275626,15.847827838268131,15.23333697207272,14.994875993113965,14.088953046128154,13.155130144674331,13.923293732106686,13.76863239100203,13.7963659260422,14.063017517328262,13.698490413837135,12.751248722430319,13.346264874562621,13.643337442073971,14.103192802984267,14.27782451780513,13.917750977911055,14.254361373372376,15.248458160553128,16.23544477391988,16.380257519427687,15.400237107649446,14.71405567927286,15.668494989629835,15.311188564170152,15.162094514351338,16.027450455818325,15.458758217748255,15.687399080954492,16.58097663288936,17.06681693624705,17.427224264014512,18.12278274865821,18.33526528906077,19.1144416667521,18.391699608415365,17.83575648861006,17.92880974896252,17.19063502084464,17.697545232716948,17.050811159424484,16.515396773349494,16.825835348572582,15.848181732930243,16.051869971212,15.391749056056142,14.49708088580519,15.441259522922337,15.864237181842327,16.613195701036602,15.993325465358794,16.75262585375458,15.921273563522846,15.709155046381056,15.499527548905462,15.770773521624506,15.743548387195915,16.274160054977983,17.23779005277902,16.30888430867344,15.448305755387992,15.166008444968611,15.663818925619125,14.810033819172531,14.807056623045355,14.805341927800328,15.29573597945273,14.651887274812907,14.439498405437917,14.661483844742179,13.750322570092976,14.447139436844736,13.585429620929062,13.487214289605618,12.817891653627157,12.468226302415133,12.340670699253678,13.093189212493598,13.543115571606904,13.715490026399493,13.69888940313831,12.975642912555486,13.839290724135935,13.16533706523478,12.948478360660374,13.789649392478168,13.167265586555004,13.039759767707437,13.0146027142182,12.270883572753519,11.778936782386154,11.368176489137113,10.798854736145586,10.937828760128468,9.965661481022835,10.802066606003791,10.531966457609087,10.657434100750834,10.736615924630314,11.716785963624716,11.122278180439025,10.406755590811372,9.840173438191414,10.500783492811024,10.14527438255027,9.242766704875976,10.0743264593184,9.266669029835612,9.911201055627316,10.656576388515532,9.966137366369367,8.975214609876275,9.369169158861041,8.601641229819506,7.865155456122011,8.818265079054981,9.196784630883485,8.846757852472365,7.898088954854757,7.06900294451043,6.949149314314127,7.379511572886258,6.778183171525598,5.786132588516921,6.542266446631402,5.856379117351025,4.856568911112845,5.658977889455855,5.589763202704489,5.587868261151016,5.806206410750747,6.692164517939091,7.4446483659558,6.748396771028638,6.008370636962354,5.578524468932301,5.304503433406353,5.617279736790806,5.923238204792142,5.911688023246825,4.957733739167452,4.648777703754604,4.290656422264874,4.133125441148877,4.909541504923254,4.61740920227021,3.882925962097943,3.015985338948667,3.7964483215473592,3.939832670148462,4.586644754279405,3.723021232523024,4.410834662150592,4.469023838639259,4.028512825258076,4.012689079158008,3.6979116341099143,2.965530855115503,2.8453023489564657,2.016778394114226,2.8335521616972983,2.2726817205548286,2.959811299107969,3.6600150582380593,3.084202534519136,3.0885998304001987,2.348142575006932,1.5136306467466056,1.281369642354548,1.0349812442436814,0.8374943491071463,-0.06724829506129026,0.4812777382321656,0.6537822936661541,-0.007174492813646793,0.7768885549157858,0.18459862004965544,0.47974688140675426,0.933405211661011,1.1068070251494646,0.3735434073023498,-0.6092610163614154,0.0716482624411583,0.5326083884574473,1.242354259826243,1.9247064744122326,1.2416726755909622,0.769674691837281,0.7988059939816594,1.0750512918457389,0.5241427943110466,0.8844343097880483,-0.023983506951481104,0.6307622478343546,0.8868157342076302,1.2225954071618617,1.5175435077399015,2.3019112860783935,1.4861406371928751,0.538622323423624,1.3080450119450688,1.0636146175675094,0.765560049097985,0.9989326419308782,1.199669954366982,1.8079354506917298,2.1210667113773525,2.382446087896824,3.094275184441358,2.8648606780916452,2.153299978468567,2.087239674758166,1.4555399557575583,1.6290512848645449,2.342656252440065,2.2548776967450976,2.060659032780677,1.3850778173655272,1.741582547314465,1.8613908891566098,2.7442685500718653,3.2081192047335207,2.451460923999548,1.8430577665567398,1.1010060631670058,1.0962573196738958,1.4046776830218732,1.4598733116872609,2.147941925097257,2.4649175093509257,2.3390160547569394,2.255215435754508,1.56665820768103,2.1232211920432746,1.6108131371438503,1.89543342217803,1.9903768990188837,2.345595640130341,2.7553642229177058,2.2193841584958136,2.6724357437342405,2.22012109356001,1.3718651398085058,2.0982618937268853,1.2981810322962701,0.5036403187550604,1.44171450054273,0.46264934772625566,-0.4770532976835966,0.06253442261368036,0.0837987344712019,0.8140445379540324,0.23007051926106215,1.0492668459191918,1.533537520095706,2.0585406622849405,1.5694462088868022,2.32726740045473,1.5166112552396953,2.4756823489442468,2.576491890940815,2.5028437417931855,1.5475498526357114,0.7811868833377957,-0.0848991684615612,0.35025165462866426,-0.1239592032507062,-0.8921424834989011,-1.250706419814378,-1.4936569398269057,-1.2130641415715218,-1.0761167355813086,-1.6366706090047956,-1.1437402796000242,-0.9479369954206049,0.021288099233061075,-0.9719962729141116,-0.7407294833101332,-1.4464192450977862,-1.7239432488568127,-1.5251726466231048,-1.134484136942774,-0.956162266433239,-0.9191218898631632,-0.4356990111991763,-1.248325910884887,-1.580289185512811,-1.2932026297785342,-1.9779177336022258,-1.2613934865221381,-0.9623747710138559,-0.3564935945905745,0.34984540985897183,-0.05141431698575616,-0.7313608354888856,-0.12471085088327527,0.7197383954189718,1.4944427530281246,1.716109219007194,1.3861068622209132,1.3768413737416267,1.8904406265355647,1.9154441743157804,2.7866985932923853,1.9075597315095365,2.54977045673877,2.510331444442272,3.2955574467778206,2.788798814173788,3.1980910333804786,3.4621927831321955,2.625599278137088,1.80155264493078,1.2535821730270982,0.40368689270690084,0.41970596043393016,0.492952988948673,0.30648714350536466,-0.6857813806273043,-0.9948256085626781,-0.44299731962382793,-0.975354764610529,-1.1801702911034226,-0.42431983491405845,-0.24313698057085276,-0.5861484836786985,-1.0312816114164889,-1.9943923745304346,-1.914693885948509,-1.6456207814626396,-0.8634136253967881,-1.066574510652572,-1.478880574926734,-2.3310744613409042,-2.2033601445145905,-2.8792296769097447,-3.2351416498422623,-3.2474512849003077,-2.7806870485655963,-2.060281807091087,-1.9123630039393902,-2.0279233437031507,-2.137599795125425,-2.009530622046441,-2.1463718484155834,-1.7937958906404674,-1.3091840669512749,-2.1460135863162577,-1.3113968754187226,-0.884890029206872,-1.493238864466548,-1.3321541245095432,-2.015721376053989,-1.7579811834730208,-2.7255246238783,-3.367014451418072,-4.132696815300733,-4.753158311359584,-3.969699276611209,-4.178661304526031,-4.262980039231479,-3.491964288521558,-3.047275857999921,-2.597752597182989,-2.5290127783082426,-1.5373308579437435,-0.6760080689564347,-0.9235750674270093,-0.28759614238515496,0.6251842342317104,0.4929870502091944,0.779152063652873,0.7020226418972015,1.428303049877286,0.6877494524233043,0.864638761151582,0.805734577588737,1.6826805374585092,1.4357831603847444,1.5947439642623067,0.8608551872894168,1.855700050946325,2.3232070351950824,2.056910114828497,2.1029115971177816,1.3731171879917383,1.224404586944729,1.1361890360713005,1.3105755113065243,0.5053483666852117,0.2806171244010329,0.3105786475352943,1.196025122422725,1.665754281450063,2.2774281767196953,2.9339197957888246,3.4147204319015145,3.1236324100755155,3.428247565869242,2.9948241622187197,2.731859420891851,2.659881690982729,3.3991367425769567,4.194357130676508,4.163574995007366,3.2942113764584064,4.290204156190157,5.023210152052343,4.1351699167862535,4.899156776256859,4.545846540015191,3.667748972773552,3.5146899530664086,3.4537124885246158,3.803492229897529,3.478750477079302,3.261346578132361,3.1506826165132225,3.478853433392942,2.9804932079277933,2.4092672071419656,2.7940428317524493,3.0563434045761824,2.6321435547433794,1.9462799532338977,1.0436552916653454,0.2686987640336156,0.503678610548377,1.3155433894135058,1.133846600074321,0.6813545147888362,0.7435412365011871,1.692129874136299,0.9473321116529405,1.559220366179943,1.8426398425363004,2.225869989488274,2.046267895027995,2.6645524883642793,2.5548917641863227,2.994271856267005,3.754985091276467,3.249846496153623,4.198946599382907,3.2764869169332087,3.353137686382979,3.743946813978255,3.9599369005300105,4.737430678214878,5.453578748740256,4.649568773806095,4.143055231310427,4.5332588870078325,3.756069973576814,3.7088618143461645,4.245588714722544,4.8606306300498545,5.260915244463831,4.770604128949344,5.292943526990712,4.833951229695231,5.601563757751137,4.87792781740427,5.825253135059029,5.8387996894307435,5.571020535659045,4.996893541421741,4.197137298993766,3.955415308009833,3.7418895759619772,4.704188191331923,3.8504516915418208,4.820581823587418,4.712756441440433,4.3762507871724665,4.705067027825862,5.27952285297215,4.855717033147812,4.41990786511451,4.416724089998752,4.979114300571382,4.7086303774267435,4.536650791764259,4.307153882458806,3.6781045994721353,2.9038822846487164,3.7849068795330822,3.036494081839919,2.727733456995338,2.198417184408754,2.4639347405172884,2.625834399368614,2.0212586848065257,1.176303202752024,0.43676672223955393,-0.4017692585475743,0.05074190208688378,0.10101527255028486,-0.42346319928765297,-0.9313871529884636,-0.7848035688512027,-0.6814140356145799,-1.4759436869062483],"type":"scatter3d"},{"customdata":[["2024-07-25T11:35:06.010000"],["2024-07-25T11:35:07.010000"],["2024-07-25T11:35:08.010000"],["2024-07-25T11:35:09.010000"],["2024-07-25T11:35:10.010000"],["2024-07-25T11:35:11.010000"],["2024-07-25T11:35:12.010000"],["2024-07-25T11:35:13.010000"],["2024-07-25T11:35:14.010000"],["2024-07-25T11:35:15.010000"],["2024-07-25T11:35:16.010000"],["2024-07-25T11:35:17.010000"],["2024-07-25T11:35:18.010000"],["2024-07-25T11:35:19.010000"],["2024-07-25T11:35:20.010000"],["2024-07-25T11:35:21.010000"],["2024-07-25T11:35:22.010000"],["2024-07-25T11:35:23.010000"],["2024-07-25T11:35:24.010000"],["2024-07-25T11:35:25.010000"],["2024-07-25T11:35:26.010000"],["2024-07-25T11:35:27.010000"],["2024-07-25T11:35:28.010000"],["2024-07-25T11:35:29.010000"],["2024-07-25T11:35:30.010000"],["2024-07-25T11:35:31.010000"],["2024-07-25T11:35:32.010000"],["2024-07-25T11:35:33.010000"],["2024-07-25T11:35:34.010000"],["2024-07-25T11:35:35.010000"],["2024-07-25T11:35:36.010000"],["2024-07-25T11:35:37.010000"],["2024-07-25T11:35:38.010000"],["2024-07-25T11:35:39.010000"],["2024-07-25T11:35:40.010000"],["2024-07-25T11:35:41.010000"],["2024-07-25T11:35:42.010000"],["2024-07-25T11:35:43.010000"],["2024-07-25T11:35:44.010000"],["2024-07-25T11:35:45.010000"],["2024-07-25T11:35:46.010000"],["2024-07-25T11:35:47.010000"],["2024-07-25T11:35:48.010000"],["2024-07-25T11:35:49.010000"],["2024-07-25T11:35:50.010000"],["2024-07-25T11:35:51.010000"],["2024-07-25T11:35:52.010000"],["2024-07-25T11:35:53.010000"],["2024-07-25T11:35:54.010000"],["2024-07-25T11:35:55.010000"],["2024-07-25T11:35:56.010000"],["2024-07-25T11:35:57.010000"],["2024-07-25T11:35:58.010000"],["2024-07-25T11:35:59.010000"],["2024-07-25T11:36:00.010000"],["2024-07-25T11:36:01.010000"],["2024-07-25T11:36:02.010000"],["2024-07-25T11:36:03.010000"],["2024-07-25T11:36:04.010000"],["2024-07-25T11:36:05.010000"],["2024-07-25T11:36:06.010000"],["2024-07-25T11:36:07.010000"],["2024-07-25T11:36:08.010000"],["2024-07-25T11:36:09.010000"],["2024-07-25T11:36:10.010000"],["2024-07-25T11:36:11.010000"],["2024-07-25T11:36:12.010000"],["2024-07-25T11:36:13.010000"],["2024-07-25T11:36:14.010000"],["2024-07-25T11:36:15.010000"],["2024-07-25T11:36:16.010000"],["2024-07-25T11:36:17.010000"],["2024-07-25T11:36:18.010000"],["2024-07-25T11:36:19.010000"],["2024-07-25T11:36:20.010000"],["2024-07-25T11:36:21.010000"],["2024-07-25T11:36:22.010000"],["2024-07-25T11:36:23.010000"],["2024-07-25T11:36:24.010000"],["2024-07-25T11:36:25.010000"],["2024-07-25T11:36:26.010000"],["2024-07-25T11:36:27.010000"],["2024-07-25T11:36:28.010000"],["2024-07-25T11:36:29.010000"],["2024-07-25T11:36:30.010000"],["2024-07-25T11:36:31.010000"],["2024-07-25T11:36:32.010000"],["2024-07-25T11:36:33.010000"],["2024-07-25T11:36:34.010000"],["2024-07-25T11:36:35.010000"],["2024-07-25T11:36:36.010000"],["2024-07-25T11:36:37.010000"],["2024-07-25T11:36:38.010000"],["2024-07-25T11:36:39.010000"],["2024-07-25T11:36:40.010000"],["2024-07-25T11:36:41.010000"],["2024-07-25T11:36:42.010000"],["2024-07-25T11:36:43.010000"],["2024-07-25T11:36:44.010000"],["2024-07-25T11:36:45.010000"],["2024-07-25T11:36:46.010000"],["2024-07-25T11:36:47.010000"],["2024-07-25T11:36:48.010000"],["2024-07-25T11:36:49.010000"],["2024-07-25T11:36:50.010000"],["2024-07-25T11:36:51.010000"],["2024-07-25T11:36:52.010000"],["2024-07-25T11:36:53.010000"],["2024-07-25T11:36:54.010000"],["2024-07-25T11:36:55.010000"],["2024-07-25T11:36:56.010000"],["2024-07-25T11:36:57.010000"],["2024-07-25T11:36:58.010000"],["2024-07-25T11:36:59.010000"],["2024-07-25T11:37:00.010000"],["2024-07-25T11:37:01.010000"],["2024-07-25T11:37:02.010000"],["2024-07-25T11:37:03.010000"],["2024-07-25T11:37:04.010000"],["2024-07-25T11:37:05.010000"],["2024-07-25T11:37:06.010000"],["2024-07-25T11:37:07.010000"],["2024-07-25T11:37:08.010000"],["2024-07-25T11:37:09.010000"],["2024-07-25T11:37:10.010000"],["2024-07-25T11:37:11.010000"],["2024-07-25T11:37:12.010000"],["2024-07-25T11:37:13.010000"],["2024-07-25T11:37:14.010000"],["2024-07-25T11:37:15.010000"],["2024-07-25T11:37:16.010000"],["2024-07-25T11:37:17.010000"],["2024-07-25T11:37:18.010000"],["2024-07-25T11:37:19.010000"],["2024-07-25T11:37:20.010000"],["2024-07-25T11:37:21.010000"],["2024-07-25T11:37:22.010000"],["2024-07-25T11:37:23.010000"],["2024-07-25T11:37:24.010000"],["2024-07-25T11:37:25.010000"],["2024-07-25T11:37:26.010000"],["2024-07-25T11:37:27.010000"],["2024-07-25T11:37:28.010000"],["2024-07-25T11:37:29.010000"],["2024-07-25T11:37:30.010000"],["2024-07-25T11:37:31.010000"],["2024-07-25T11:37:32.010000"],["2024-07-25T11:37:33.010000"],["2024-07-25T11:37:34.010000"],["2024-07-25T11:37:35.010000"],["2024-07-25T11:37:36.010000"],["2024-07-25T11:37:37.010000"],["2024-07-25T11:37:38.010000"],["2024-07-25T11:37:39.010000"],["2024-07-25T11:37:40.010000"],["2024-07-25T11:37:41.010000"],["2024-07-25T11:37:42.010000"],["2024-07-25T11:37:43.010000"],["2024-07-25T11:37:44.010000"],["2024-07-25T11:37:45.010000"],["2024-07-25T11:37:46.010000"],["2024-07-25T11:37:47.010000"],["2024-07-25T11:37:48.010000"],["2024-07-25T11:37:49.010000"],["2024-07-25T11:37:50.010000"],["2024-07-25T11:37:51.010000"],["2024-07-25T11:37:52.010000"],["2024-07-25T11:37:53.010000"],["2024-07-25T11:37:54.010000"],["2024-07-25T11:37:55.010000"],["2024-07-25T11:37:56.010000"],["2024-07-25T11:37:57.010000"],["2024-07-25T11:37:58.010000"],["2024-07-25T11:37:59.010000"],["2024-07-25T11:38:00.010000"],["2024-07-25T11:38:01.010000"],["2024-07-25T11:38:02.010000"],["2024-07-25T11:38:03.010000"],["2024-07-25T11:38:04.010000"],["2024-07-25T11:38:05.010000"],["2024-07-25T11:38:06.010000"],["2024-07-25T11:38:07.010000"],["2024-07-25T11:38:08.010000"],["2024-07-25T11:38:09.010000"],["2024-07-25T11:38:10.010000"],["2024-07-25T11:38:11.010000"],["2024-07-25T11:38:12.010000"],["2024-07-25T11:38:13.010000"],["2024-07-25T11:38:14.010000"],["2024-07-25T11:38:15.010000"],["2024-07-25T11:38:16.010000"],["2024-07-25T11:38:17.010000"],["2024-07-25T11:38:18.010000"],["2024-07-25T11:38:19.010000"],["2024-07-25T11:38:20.010000"],["2024-07-25T11:38:21.010000"],["2024-07-25T11:38:22.010000"],["2024-07-25T11:38:23.010000"],["2024-07-25T11:38:24.010000"],["2024-07-25T11:38:25.010000"],["2024-07-25T11:38:26.010000"],["2024-07-25T11:38:27.010000"],["2024-07-25T11:38:28.010000"],["2024-07-25T11:38:29.010000"],["2024-07-25T11:38:30.010000"],["2024-07-25T11:38:31.010000"],["2024-07-25T11:38:32.010000"],["2024-07-25T11:38:33.010000"],["2024-07-25T11:38:34.010000"],["2024-07-25T11:38:35.010000"],["2024-07-25T11:38:36.010000"],["2024-07-25T11:38:37.010000"],["2024-07-25T11:38:38.010000"],["2024-07-25T11:38:39.010000"],["2024-07-25T11:38:40.010000"],["2024-07-25T11:38:41.010000"],["2024-07-25T11:38:42.010000"],["2024-07-25T11:38:43.010000"],["2024-07-25T11:38:44.010000"],["2024-07-25T11:38:45.010000"],["2024-07-25T11:38:46.010000"],["2024-07-25T11:38:47.010000"],["2024-07-25T11:38:48.010000"],["2024-07-25T11:38:49.010000"],["2024-07-25T11:38:50.010000"],["2024-07-25T11:38:51.010000"],["2024-07-25T11:38:52.010000"],["2024-07-25T11:38:53.010000"],["2024-07-25T11:38:54.010000"],["2024-07-25T11:38:55.010000"],["2024-07-25T11:38:56.010000"],["2024-07-25T11:38:57.010000"],["2024-07-25T11:38:58.010000"],["2024-07-25T11:38:59.010000"],["2024-07-25T11:39:00.010000"],["2024-07-25T11:39:01.010000"],["2024-07-25T11:39:02.010000"],["2024-07-25T11:39:03.010000"],["2024-07-25T11:39:04.010000"],["2024-07-25T11:39:05.010000"],["2024-07-25T11:39:06.010000"],["2024-07-25T11:39:07.010000"],["2024-07-25T11:39:08.010000"],["2024-07-25T11:39:09.010000"],["2024-07-25T11:39:10.010000"],["2024-07-25T11:39:11.010000"],["2024-07-25T11:39:12.010000"],["2024-07-25T11:39:13.010000"],["2024-07-25T11:39:14.010000"],["2024-07-25T11:39:15.010000"],["2024-07-25T11:39:16.010000"],["2024-07-25T11:39:17.010000"],["2024-07-25T11:39:18.010000"],["2024-07-25T11:39:19.010000"],["2024-07-25T11:39:20.010000"],["2024-07-25T11:39:21.010000"],["2024-07-25T11:39:22.010000"],["2024-07-25T11:39:23.010000"],["2024-07-25T11:39:24.010000"],["2024-07-25T11:39:25.010000"],["2024-07-25T11:39:26.010000"],["2024-07-25T11:39:27.010000"],["2024-07-25T11:39:28.010000"],["2024-07-25T11:39:29.010000"],["2024-07-25T11:39:30.010000"],["2024-07-25T11:39:31.010000"],["2024-07-25T11:39:32.010000"],["2024-07-25T11:39:33.010000"],["2024-07-25T11:39:34.010000"],["2024-07-25T11:39:35.010000"],["2024-07-25T11:39:36.010000"],["2024-07-25T11:39:37.010000"],["2024-07-25T11:39:38.010000"],["2024-07-25T11:39:39.010000"],["2024-07-25T11:39:40.010000"],["2024-07-25T11:39:41.010000"],["2024-07-25T11:39:42.010000"],["2024-07-25T11:39:43.010000"],["2024-07-25T11:39:44.010000"],["2024-07-25T11:39:45.010000"],["2024-07-25T11:39:46.010000"],["2024-07-25T11:39:47.010000"],["2024-07-25T11:39:48.010000"],["2024-07-25T11:39:49.010000"],["2024-07-25T11:39:50.010000"],["2024-07-25T11:39:51.010000"],["2024-07-25T11:39:52.010000"],["2024-07-25T11:39:53.010000"],["2024-07-25T11:39:54.010000"],["2024-07-25T11:39:55.010000"],["2024-07-25T11:39:56.010000"],["2024-07-25T11:39:57.010000"],["2024-07-25T11:39:58.010000"],["2024-07-25T11:39:59.010000"],["2024-07-25T11:40:00.010000"],["2024-07-25T11:40:01.010000"],["2024-07-25T11:40:02.010000"],["2024-07-25T11:40:03.010000"],["2024-07-25T11:40:04.010000"],["2024-07-25T11:40:05.010000"],["2024-07-25T11:40:06.010000"],["2024-07-25T11:40:07.010000"],["2024-07-25T11:40:08.010000"],["2024-07-25T11:40:09.010000"],["2024-07-25T11:40:10.010000"],["2024-07-25T11:40:11.010000"],["2024-07-25T11:40:12.010000"],["2024-07-25T11:40:13.010000"],["2024-07-25T11:40:14.010000"],["2024-07-25T11:40:15.010000"],["2024-07-25T11:40:16.010000"],["2024-07-25T11:40:17.010000"],["2024-07-25T11:40:18.010000"],["2024-07-25T11:40:19.010000"],["2024-07-25T11:40:20.010000"],["2024-07-25T11:40:21.010000"],["2024-07-25T11:40:22.010000"],["2024-07-25T11:40:23.010000"],["2024-07-25T11:40:24.010000"],["2024-07-25T11:40:25.010000"],["2024-07-25T11:40:26.010000"],["2024-07-25T11:40:27.010000"],["2024-07-25T11:40:28.010000"],["2024-07-25T11:40:29.010000"],["2024-07-25T11:40:30.010000"],["2024-07-25T11:40:31.010000"],["2024-07-25T11:40:32.010000"],["2024-07-25T11:40:33.010000"],["2024-07-25T11:40:34.010000"],["2024-07-25T11:40:35.010000"],["2024-07-25T11:40:36.010000"],["2024-07-25T11:40:37.010000"],["2024-07-25T11:40:38.010000"],["2024-07-25T11:40:39.010000"],["2024-07-25T11:40:40.010000"],["2024-07-25T11:40:41.010000"],["2024-07-25T11:40:42.010000"],["2024-07-25T11:40:43.010000"],["2024-07-25T11:40:44.010000"],["2024-07-25T11:40:45.010000"],["2024-07-25T11:40:46.010000"],["2024-07-25T11:40:47.010000"],["2024-07-25T11:40:48.010000"],["2024-07-25T11:40:49.010000"],["2024-07-25T11:40:50.010000"],["2024-07-25T11:40:51.010000"],["2024-07-25T11:40:52.010000"],["2024-07-25T11:40:53.010000"],["2024-07-25T11:40:54.010000"],["2024-07-25T11:40:55.010000"],["2024-07-25T11:40:56.010000"],["2024-07-25T11:40:57.010000"],["2024-07-25T11:40:58.010000"],["2024-07-25T11:40:59.010000"],["2024-07-25T11:41:00.010000"],["2024-07-25T11:41:01.010000"],["2024-07-25T11:41:02.010000"],["2024-07-25T11:41:03.010000"],["2024-07-25T11:41:04.010000"],["2024-07-25T11:41:05.010000"],["2024-07-25T11:41:06.010000"],["2024-07-25T11:41:07.010000"],["2024-07-25T11:41:08.010000"],["2024-07-25T11:41:09.010000"],["2024-07-25T11:41:10.010000"],["2024-07-25T11:41:11.010000"],["2024-07-25T11:41:12.010000"],["2024-07-25T11:41:13.010000"],["2024-07-25T11:41:14.010000"],["2024-07-25T11:41:15.010000"],["2024-07-25T11:41:16.010000"],["2024-07-25T11:41:17.010000"],["2024-07-25T11:41:18.010000"],["2024-07-25T11:41:19.010000"],["2024-07-25T11:41:20.010000"],["2024-07-25T11:41:21.010000"],["2024-07-25T11:41:22.010000"],["2024-07-25T11:41:23.010000"],["2024-07-25T11:41:24.010000"],["2024-07-25T11:41:25.010000"],["2024-07-25T11:41:26.010000"],["2024-07-25T11:41:27.010000"],["2024-07-25T11:41:28.010000"],["2024-07-25T11:41:29.010000"],["2024-07-25T11:41:30.010000"],["2024-07-25T11:41:31.010000"],["2024-07-25T11:41:32.010000"],["2024-07-25T11:41:33.010000"],["2024-07-25T11:41:34.010000"],["2024-07-25T11:41:35.010000"],["2024-07-25T11:41:36.010000"],["2024-07-25T11:41:37.010000"],["2024-07-25T11:41:38.010000"],["2024-07-25T11:41:39.010000"],["2024-07-25T11:41:40.010000"],["2024-07-25T11:41:41.010000"],["2024-07-25T11:41:42.010000"],["2024-07-25T11:41:43.010000"],["2024-07-25T11:41:44.010000"],["2024-07-25T11:41:45.010000"],["2024-07-25T11:41:46.010000"],["2024-07-25T11:41:47.010000"],["2024-07-25T11:41:48.010000"],["2024-07-25T11:41:49.010000"],["2024-07-25T11:41:50.010000"],["2024-07-25T11:41:51.010000"],["2024-07-25T11:41:52.010000"],["2024-07-25T11:41:53.010000"],["2024-07-25T11:41:54.010000"],["2024-07-25T11:41:55.010000"],["2024-07-25T11:41:56.010000"],["2024-07-25T11:41:57.010000"],["2024-07-25T11:41:58.010000"],["2024-07-25T11:41:59.010000"],["2024-07-25T11:42:00.010000"],["2024-07-25T11:42:01.010000"],["2024-07-25T11:42:02.010000"],["2024-07-25T11:42:03.010000"],["2024-07-25T11:42:04.010000"],["2024-07-25T11:42:05.010000"],["2024-07-25T11:42:06.010000"],["2024-07-25T11:42:07.010000"],["2024-07-25T11:42:08.010000"],["2024-07-25T11:42:09.010000"],["2024-07-25T11:42:10.010000"],["2024-07-25T11:42:11.010000"],["2024-07-25T11:42:12.010000"],["2024-07-25T11:42:13.010000"],["2024-07-25T11:42:14.010000"],["2024-07-25T11:42:15.010000"],["2024-07-25T11:42:16.010000"],["2024-07-25T11:42:17.010000"],["2024-07-25T11:42:18.010000"],["2024-07-25T11:42:19.010000"],["2024-07-25T11:42:20.010000"],["2024-07-25T11:42:21.010000"],["2024-07-25T11:42:22.010000"],["2024-07-25T11:42:23.010000"],["2024-07-25T11:42:24.010000"],["2024-07-25T11:42:25.010000"],["2024-07-25T11:42:26.010000"],["2024-07-25T11:42:27.010000"],["2024-07-25T11:42:28.010000"],["2024-07-25T11:42:29.010000"],["2024-07-25T11:42:30.010000"],["2024-07-25T11:42:31.010000"],["2024-07-25T11:42:32.010000"],["2024-07-25T11:42:33.010000"],["2024-07-25T11:42:34.010000"],["2024-07-25T11:42:35.010000"],["2024-07-25T11:42:36.010000"],["2024-07-25T11:42:37.010000"],["2024-07-25T11:42:38.010000"],["2024-07-25T11:42:39.010000"],["2024-07-25T11:42:40.010000"],["2024-07-25T11:42:41.010000"],["2024-07-25T11:42:42.010000"],["2024-07-25T11:42:43.010000"],["2024-07-25T11:42:44.010000"],["2024-07-25T11:42:45.010000"],["2024-07-25T11:42:46.010000"],["2024-07-25T11:42:47.010000"],["2024-07-25T11:42:48.010000"],["2024-07-25T11:42:49.010000"],["2024-07-25T11:42:50.010000"],["2024-07-25T11:42:51.010000"],["2024-07-25T11:42:52.010000"],["2024-07-25T11:42:53.010000"],["2024-07-25T11:42:54.010000"],["2024-07-25T11:42:55.010000"],["2024-07-25T11:42:56.010000"],["2024-07-25T11:42:57.010000"],["2024-07-25T11:42:58.010000"],["2024-07-25T11:42:59.010000"],["2024-07-25T11:43:00.010000"],["2024-07-25T11:43:01.010000"],["2024-07-25T11:43:02.010000"],["2024-07-25T11:43:03.010000"],["2024-07-25T11:43:04.010000"],["2024-07-25T11:43:05.010000"],["2024-07-25T11:43:06.010000"],["2024-07-25T11:43:07.010000"],["2024-07-25T11:43:08.010000"],["2024-07-25T11:43:09.010000"],["2024-07-25T11:43:10.010000"],["2024-07-25T11:43:11.010000"],["2024-07-25T11:43:12.010000"],["2024-07-25T11:43:13.010000"],["2024-07-25T11:43:14.010000"],["2024-07-25T11:43:15.010000"],["2024-07-25T11:43:16.010000"],["2024-07-25T11:43:17.010000"],["2024-07-25T11:43:18.010000"],["2024-07-25T11:43:19.010000"],["2024-07-25T11:43:20.010000"],["2024-07-25T11:43:21.010000"],["2024-07-25T11:43:22.010000"],["2024-07-25T11:43:23.010000"],["2024-07-25T11:43:24.010000"],["2024-07-25T11:43:25.010000"],["2024-07-25T11:43:26.010000"],["2024-07-25T11:43:27.010000"],["2024-07-25T11:43:28.010000"],["2024-07-25T11:43:29.010000"],["2024-07-25T11:43:30.010000"],["2024-07-25T11:43:31.010000"],["2024-07-25T11:43:32.010000"],["2024-07-25T11:43:33.010000"],["2024-07-25T11:43:34.010000"],["2024-07-25T11:43:35.010000"],["2024-07-25T11:43:36.010000"],["2024-07-25T11:43:37.010000"],["2024-07-25T11:43:38.010000"],["2024-07-25T11:43:39.010000"],["2024-07-25T11:43:40.010000"],["2024-07-25T11:43:41.010000"],["2024-07-25T11:43:42.010000"],["2024-07-25T11:43:43.010000"],["2024-07-25T11:43:44.010000"],["2024-07-25T11:43:45.010000"],["2024-07-25T11:43:46.010000"],["2024-07-25T11:43:47.010000"],["2024-07-25T11:43:48.010000"],["2024-07-25T11:43:49.010000"],["2024-07-25T11:43:50.010000"],["2024-07-25T11:43:51.010000"],["2024-07-25T11:43:52.010000"],["2024-07-25T11:43:53.010000"],["2024-07-25T11:43:54.010000"],["2024-07-25T11:43:55.010000"],["2024-07-25T11:43:56.010000"],["2024-07-25T11:43:57.010000"],["2024-07-25T11:43:58.010000"],["2024-07-25T11:43:59.010000"],["2024-07-25T11:44:00.010000"],["2024-07-25T11:44:01.010000"],["2024-07-25T11:44:02.010000"],["2024-07-25T11:44:03.010000"],["2024-07-25T11:44:04.010000"],["2024-07-25T11:44:05.010000"],["2024-07-25T11:44:06.010000"],["2024-07-25T11:44:07.010000"],["2024-07-25T11:44:08.010000"],["2024-07-25T11:44:09.010000"],["2024-07-25T11:44:10.010000"],["2024-07-25T11:44:11.010000"],["2024-07-25T11:44:12.010000"],["2024-07-25T11:44:13.010000"],["2024-07-25T11:44:14.010000"],["2024-07-25T11:44:15.010000"],["2024-07-25T11:44:16.010000"],["2024-07-25T11:44:17.010000"],["2024-07-25T11:44:18.010000"],["2024-07-25T11:44:19.010000"],["2024-07-25T11:44:20.010000"],["2024-07-25T11:44:21.010000"],["2024-07-25T11:44:22.010000"],["2024-07-25T11:44:23.010000"],["2024-07-25T11:44:24.010000"],["2024-07-25T11:44:25.010000"],["2024-07-25T11:44:26.010000"],["2024-07-25T11:44:27.010000"],["2024-07-25T11:44:28.010000"],["2024-07-25T11:44:29.010000"],["2024-07-25T11:44:30.010000"],["2024-07-25T11:44:31.010000"],["2024-07-25T11:44:32.010000"],["2024-07-25T11:44:33.010000"],["2024-07-25T11:44:34.010000"],["2024-07-25T11:44:35.010000"],["2024-07-25T11:44:36.010000"],["2024-07-25T11:44:37.010000"],["2024-07-25T11:44:38.010000"],["2024-07-25T11:44:39.010000"],["2024-07-25T11:44:40.010000"],["2024-07-25T11:44:41.010000"],["2024-07-25T11:44:42.010000"],["2024-07-25T11:44:43.010000"],["2024-07-25T11:44:44.010000"],["2024-07-25T11:44:45.010000"],["2024-07-25T11:44:46.010000"],["2024-07-25T11:44:47.010000"],["2024-07-25T11:44:48.010000"],["2024-07-25T11:44:49.010000"],["2024-07-25T11:44:50.010000"],["2024-07-25T11:44:51.010000"],["2024-07-25T11:44:52.010000"],["2024-07-25T11:44:53.010000"],["2024-07-25T11:44:54.010000"],["2024-07-25T11:44:55.010000"],["2024-07-25T11:44:56.010000"],["2024-07-25T11:44:57.010000"],["2024-07-25T11:44:58.010000"],["2024-07-25T11:44:59.010000"],["2024-07-25T11:45:00.010000"],["2024-07-25T11:45:01.010000"],["2024-07-25T11:45:02.010000"],["2024-07-25T11:45:03.010000"],["2024-07-25T11:45:04.010000"],["2024-07-25T11:45:05.010000"],["2024-07-25T11:45:06.010000"],["2024-07-25T11:45:07.010000"],["2024-07-25T11:45:08.010000"],["2024-07-25T11:45:09.010000"],["2024-07-25T11:45:10.010000"],["2024-07-25T11:45:11.010000"],["2024-07-25T11:45:12.010000"],["2024-07-25T11:45:13.010000"],["2024-07-25T11:45:14.010000"],["2024-07-25T11:45:15.010000"],["2024-07-25T11:45:16.010000"],["2024-07-25T11:45:17.010000"],["2024-07-25T11:45:18.010000"],["2024-07-25T11:45:19.010000"],["2024-07-25T11:45:20.010000"],["2024-07-25T11:45:21.010000"],["2024-07-25T11:45:22.010000"],["2024-07-25T11:45:23.010000"],["2024-07-25T11:45:24.010000"],["2024-07-25T11:45:25.010000"],["2024-07-25T11:45:26.010000"],["2024-07-25T11:45:27.010000"],["2024-07-25T11:45:28.010000"],["2024-07-25T11:45:29.010000"],["2024-07-25T11:45:30.010000"],["2024-07-25T11:45:31.010000"],["2024-07-25T11:45:32.010000"],["2024-07-25T11:45:33.010000"],["2024-07-25T11:45:34.010000"],["2024-07-25T11:45:35.010000"],["2024-07-25T11:45:36.010000"],["2024-07-25T11:45:37.010000"],["2024-07-25T11:45:38.010000"],["2024-07-25T11:45:39.010000"],["2024-07-25T11:45:40.010000"],["2024-07-25T11:45:41.010000"],["2024-07-25T11:45:42.010000"],["2024-07-25T11:45:43.010000"],["2024-07-25T11:45:44.010000"],["2024-07-25T11:45:45.010000"],["2024-07-25T11:45:46.010000"],["2024-07-25T11:45:47.010000"],["2024-07-25T11:45:48.010000"],["2024-07-25T11:45:49.010000"],["2024-07-25T11:45:50.010000"],["2024-07-25T11:45:51.010000"],["2024-07-25T11:45:52.010000"],["2024-07-25T11:45:53.010000"],["2024-07-25T11:45:54.010000"],["2024-07-25T11:45:55.010000"],["2024-07-25T11:45:56.010000"],["2024-07-25T11:45:57.010000"],["2024-07-25T11:45:58.010000"],["2024-07-25T11:45:59.010000"],["2024-07-25T11:46:00.010000"],["2024-07-25T11:46:01.010000"],["2024-07-25T11:46:02.010000"],["2024-07-25T11:46:03.010000"],["2024-07-25T11:46:04.010000"],["2024-07-25T11:46:05.010000"],["2024-07-25T11:46:06.010000"],["2024-07-25T11:46:07.010000"],["2024-07-25T11:46:08.010000"],["2024-07-25T11:46:09.010000"],["2024-07-25T11:46:10.010000"],["2024-07-25T11:46:11.010000"],["2024-07-25T11:46:12.010000"],["2024-07-25T11:46:13.010000"],["2024-07-25T11:46:14.010000"],["2024-07-25T11:46:15.010000"],["2024-07-25T11:46:16.010000"],["2024-07-25T11:46:17.010000"],["2024-07-25T11:46:18.010000"],["2024-07-25T11:46:19.010000"],["2024-07-25T11:46:20.010000"],["2024-07-25T11:46:21.010000"],["2024-07-25T11:46:22.010000"],["2024-07-25T11:46:23.010000"],["2024-07-25T11:46:24.010000"],["2024-07-25T11:46:25.010000"],["2024-07-25T11:46:26.010000"],["2024-07-25T11:46:27.010000"],["2024-07-25T11:46:28.010000"],["2024-07-25T11:46:29.010000"],["2024-07-25T11:46:30.010000"],["2024-07-25T11:46:31.010000"],["2024-07-25T11:46:32.010000"],["2024-07-25T11:46:33.010000"],["2024-07-25T11:46:34.010000"],["2024-07-25T11:46:35.010000"],["2024-07-25T11:46:36.010000"],["2024-07-25T11:46:37.010000"],["2024-07-25T11:46:38.010000"],["2024-07-25T11:46:39.010000"],["2024-07-25T11:46:40.010000"],["2024-07-25T11:46:41.010000"],["2024-07-25T11:46:42.010000"],["2024-07-25T11:46:43.010000"],["2024-07-25T11:46:44.010000"],["2024-07-25T11:46:45.010000"],["2024-07-25T11:46:46.010000"],["2024-07-25T11:46:47.010000"],["2024-07-25T11:46:48.010000"],["2024-07-25T11:46:49.010000"],["2024-07-25T11:46:50.010000"],["2024-07-25T11:46:51.010000"],["2024-07-25T11:46:52.010000"],["2024-07-25T11:46:53.010000"],["2024-07-25T11:46:54.010000"],["2024-07-25T11:46:55.010000"],["2024-07-25T11:46:56.010000"],["2024-07-25T11:46:57.010000"],["2024-07-25T11:46:58.010000"],["2024-07-25T11:46:59.010000"],["2024-07-25T11:47:00.010000"],["2024-07-25T11:47:01.010000"],["2024-07-25T11:47:02.010000"],["2024-07-25T11:47:03.010000"],["2024-07-25T11:47:04.010000"],["2024-07-25T11:47:05.010000"],["2024-07-25T11:47:06.010000"],["2024-07-25T11:47:07.010000"],["2024-07-25T11:47:08.010000"],["2024-07-25T11:47:09.010000"],["2024-07-25T11:47:10.010000"],["2024-07-25T11:47:11.010000"],["2024-07-25T11:47:12.010000"],["2024-07-25T11:47:13.010000"],["2024-07-25T11:47:14.010000"],["2024-07-25T11:47:15.010000"],["2024-07-25T11:47:16.010000"],["2024-07-25T11:47:17.010000"],["2024-07-25T11:47:18.010000"],["2024-07-25T11:47:19.010000"],["2024-07-25T11:47:20.010000"],["2024-07-25T11:47:21.010000"],["2024-07-25T11:47:22.010000"],["2024-07-25T11:47:23.010000"],["2024-07-25T11:47:24.010000"],["2024-07-25T11:47:25.010000"],["2024-07-25T11:47:26.010000"],["2024-07-25T11:47:27.010000"],["2024-07-25T11:47:28.010000"],["2024-07-25T11:47:29.010000"],["2024-07-25T11:47:30.010000"],["2024-07-25T11:47:31.010000"],["2024-07-25T11:47:32.010000"],["2024-07-25T11:47:33.010000"],["2024-07-25T11:47:34.010000"],["2024-07-25T11:47:35.010000"],["2024-07-25T11:47:36.010000"],["2024-07-25T11:47:37.010000"],["2024-07-25T11:47:38.010000"],["2024-07-25T11:47:39.010000"],["2024-07-25T11:47:40.010000"],["2024-07-25T11:47:41.010000"],["2024-07-25T11:47:42.010000"],["2024-07-25T11:47:43.010000"],["2024-07-25T11:47:44.010000"],["2024-07-25T11:47:45.010000"],["2024-07-25T11:47:46.010000"],["2024-07-25T11:47:47.010000"],["2024-07-25T11:47:48.010000"],["2024-07-25T11:47:49.010000"],["2024-07-25T11:47:50.010000"],["2024-07-25T11:47:51.010000"],["2024-07-25T11:47:52.010000"],["2024-07-25T11:47:53.010000"],["2024-07-25T11:47:54.010000"],["2024-07-25T11:47:55.010000"],["2024-07-25T11:47:56.010000"],["2024-07-25T11:47:57.010000"],["2024-07-25T11:47:58.010000"],["2024-07-25T11:47:59.010000"],["2024-07-25T11:48:00.010000"],["2024-07-25T11:48:01.010000"],["2024-07-25T11:48:02.010000"],["2024-07-25T11:48:03.010000"],["2024-07-25T11:48:04.010000"],["2024-07-25T11:48:05.010000"],["2024-07-25T11:48:06.010000"],["2024-07-25T11:48:07.010000"],["2024-07-25T11:48:08.010000"],["2024-07-25T11:48:09.010000"],["2024-07-25T11:48:10.010000"],["2024-07-25T11:48:11.010000"],["2024-07-25T11:48:12.010000"],["2024-07-25T11:48:13.010000"],["2024-07-25T11:48:14.010000"],["2024-07-25T11:48:15.010000"],["2024-07-25T11:48:16.010000"],["2024-07-25T11:48:17.010000"],["2024-07-25T11:48:18.010000"],["2024-07-25T11:48:19.010000"],["2024-07-25T11:48:20.010000"],["2024-07-25T11:48:21.010000"],["2024-07-25T11:48:22.010000"],["2024-07-25T11:48:23.010000"],["2024-07-25T11:48:24.010000"],["2024-07-25T11:48:25.010000"],["2024-07-25T11:48:26.010000"],["2024-07-25T11:48:27.010000"],["2024-07-25T11:48:28.010000"],["2024-07-25T11:48:29.010000"],["2024-07-25T11:48:30.010000"],["2024-07-25T11:48:31.010000"],["2024-07-25T11:48:32.010000"],["2024-07-25T11:48:33.010000"],["2024-07-25T11:48:34.010000"],["2024-07-25T11:48:35.010000"],["2024-07-25T11:48:36.010000"],["2024-07-25T11:48:37.010000"],["2024-07-25T11:48:38.010000"],["2024-07-25T11:48:39.010000"],["2024-07-25T11:48:40.010000"],["2024-07-25T11:48:41.010000"],["2024-07-25T11:48:42.010000"],["2024-07-25T11:48:43.010000"],["2024-07-25T11:48:44.010000"],["2024-07-25T11:48:45.010000"],["2024-07-25T11:48:46.010000"],["2024-07-25T11:48:47.010000"],["2024-07-25T11:48:48.010000"],["2024-07-25T11:48:49.010000"],["2024-07-25T11:48:50.010000"],["2024-07-25T11:48:51.010000"],["2024-07-25T11:48:52.010000"],["2024-07-25T11:48:53.010000"],["2024-07-25T11:48:54.010000"],["2024-07-25T11:48:55.010000"],["2024-07-25T11:48:56.010000"],["2024-07-25T11:48:57.010000"],["2024-07-25T11:48:58.010000"],["2024-07-25T11:48:59.010000"],["2024-07-25T11:49:00.010000"],["2024-07-25T11:49:01.010000"],["2024-07-25T11:49:02.010000"],["2024-07-25T11:49:03.010000"],["2024-07-25T11:49:04.010000"],["2024-07-25T11:49:05.010000"],["2024-07-25T11:49:06.010000"],["2024-07-25T11:49:07.010000"],["2024-07-25T11:49:08.010000"],["2024-07-25T11:49:09.010000"],["2024-07-25T11:49:10.010000"],["2024-07-25T11:49:11.010000"],["2024-07-25T11:49:12.010000"],["2024-07-25T11:49:13.010000"],["2024-07-25T11:49:14.010000"],["2024-07-25T11:49:15.010000"],["2024-07-25T11:49:16.010000"],["2024-07-25T11:49:17.010000"],["2024-07-25T11:49:18.010000"],["2024-07-25T11:49:19.010000"],["2024-07-25T11:49:20.010000"],["2024-07-25T11:49:21.010000"],["2024-07-25T11:49:22.010000"],["2024-07-25T11:49:23.010000"],["2024-07-25T11:49:24.010000"],["2024-07-25T11:49:25.010000"],["2024-07-25T11:49:26.010000"],["2024-07-25T11:49:27.010000"],["2024-07-25T11:49:28.010000"],["2024-07-25T11:49:29.010000"],["2024-07-25T11:49:30.010000"],["2024-07-25T11:49:31.010000"],["2024-07-25T11:49:32.010000"],["2024-07-25T11:49:33.010000"],["2024-07-25T11:49:34.010000"],["2024-07-25T11:49:35.010000"],["2024-07-25T11:49:36.010000"],["2024-07-25T11:49:37.010000"],["2024-07-25T11:49:38.010000"],["2024-07-25T11:49:39.010000"],["2024-07-25T11:49:40.010000"],["2024-07-25T11:49:41.010000"],["2024-07-25T11:49:42.010000"],["2024-07-25T11:49:43.010000"],["2024-07-25T11:49:44.010000"],["2024-07-25T11:49:45.010000"],["2024-07-25T11:49:46.010000"],["2024-07-25T11:49:47.010000"],["2024-07-25T11:49:48.010000"],["2024-07-25T11:49:49.010000"],["2024-07-25T11:49:50.010000"],["2024-07-25T11:49:51.010000"],["2024-07-25T11:49:52.010000"],["2024-07-25T11:49:53.010000"],["2024-07-25T11:49:54.010000"],["2024-07-25T11:49:55.010000"],["2024-07-25T11:49:56.010000"],["2024-07-25T11:49:57.010000"],["2024-07-25T11:49:58.010000"],["2024-07-25T11:49:59.010000"],["2024-07-25T11:50:00.010000"],["2024-07-25T11:50:01.010000"],["2024-07-25T11:50:02.010000"],["2024-07-25T11:50:03.010000"],["2024-07-25T11:50:04.010000"],["2024-07-25T11:50:05.010000"],["2024-07-25T11:50:06.010000"],["2024-07-25T11:50:07.010000"],["2024-07-25T11:50:08.010000"],["2024-07-25T11:50:09.010000"],["2024-07-25T11:50:10.010000"],["2024-07-25T11:50:11.010000"],["2024-07-25T11:50:12.010000"],["2024-07-25T11:50:13.010000"],["2024-07-25T11:50:14.010000"],["2024-07-25T11:50:15.010000"],["2024-07-25T11:50:16.010000"],["2024-07-25T11:50:17.010000"],["2024-07-25T11:50:18.010000"],["2024-07-25T11:50:19.010000"],["2024-07-25T11:50:20.010000"],["2024-07-25T11:50:21.010000"],["2024-07-25T11:50:22.010000"],["2024-07-25T11:50:23.010000"],["2024-07-25T11:50:24.010000"],["2024-07-25T11:50:25.010000"],["2024-07-25T11:50:26.010000"],["2024-07-25T11:50:27.010000"],["2024-07-25T11:50:28.010000"],["2024-07-25T11:50:29.010000"],["2024-07-25T11:50:30.010000"],["2024-07-25T11:50:31.010000"],["2024-07-25T11:50:32.010000"],["2024-07-25T11:50:33.010000"],["2024-07-25T11:50:34.010000"],["2024-07-25T11:50:35.010000"],["2024-07-25T11:50:36.010000"],["2024-07-25T11:50:37.010000"],["2024-07-25T11:50:38.010000"],["2024-07-25T11:50:39.010000"],["2024-07-25T11:50:40.010000"],["2024-07-25T11:50:41.010000"],["2024-07-25T11:50:42.010000"],["2024-07-25T11:50:43.010000"],["2024-07-25T11:50:44.010000"],["2024-07-25T11:50:45.010000"],["2024-07-25T11:50:46.010000"],["2024-07-25T11:50:47.010000"],["2024-07-25T11:50:48.010000"],["2024-07-25T11:50:49.010000"],["2024-07-25T11:50:50.010000"],["2024-07-25T11:50:51.010000"],["2024-07-25T11:50:52.010000"],["2024-07-25T11:50:53.010000"],["2024-07-25T11:50:54.010000"],["2024-07-25T11:50:55.010000"],["2024-07-25T11:50:56.010000"],["2024-07-25T11:50:57.010000"],["2024-07-25T11:50:58.010000"],["2024-07-25T11:50:59.010000"],["2024-07-25T11:51:00.010000"],["2024-07-25T11:51:01.010000"],["2024-07-25T11:51:02.010000"],["2024-07-25T11:51:03.010000"],["2024-07-25T11:51:04.010000"],["2024-07-25T11:51:05.010000"],["2024-07-25T11:51:06.010000"],["2024-07-25T11:51:07.010000"],["2024-07-25T11:51:08.010000"],["2024-07-25T11:51:09.010000"],["2024-07-25T11:51:10.010000"],["2024-07-25T11:51:11.010000"],["2024-07-25T11:51:12.010000"],["2024-07-25T11:51:13.010000"],["2024-07-25T11:51:14.010000"],["2024-07-25T11:51:15.010000"],["2024-07-25T11:51:16.010000"],["2024-07-25T11:51:17.010000"],["2024-07-25T11:51:18.010000"],["2024-07-25T11:51:19.010000"],["2024-07-25T11:51:20.010000"],["2024-07-25T11:51:21.010000"],["2024-07-25T11:51:22.010000"],["2024-07-25T11:51:23.010000"],["2024-07-25T11:51:24.010000"],["2024-07-25T11:51:25.010000"],["2024-07-25T11:51:26.010000"],["2024-07-25T11:51:27.010000"],["2024-07-25T11:51:28.010000"],["2024-07-25T11:51:29.010000"],["2024-07-25T11:51:30.010000"],["2024-07-25T11:51:31.010000"],["2024-07-25T11:51:32.010000"],["2024-07-25T11:51:33.010000"],["2024-07-25T11:51:34.010000"],["2024-07-25T11:51:35.010000"],["2024-07-25T11:51:36.010000"],["2024-07-25T11:51:37.010000"],["2024-07-25T11:51:38.010000"],["2024-07-25T11:51:39.010000"],["2024-07-25T11:51:40.010000"],["2024-07-25T11:51:41.010000"],["2024-07-25T11:51:42.010000"],["2024-07-25T11:51:43.010000"],["2024-07-25T11:51:44.010000"],["2024-07-25T11:51:45.010000"],["2024-07-25T11:51:46.010000"],["2024-07-25T11:51:47.010000"],["2024-07-25T11:51:48.010000"],["2024-07-25T11:51:49.010000"],["2024-07-25T11:51:50.010000"],["2024-07-25T11:51:51.010000"],["2024-07-25T11:51:52.010000"],["2024-07-25T11:51:53.010000"],["2024-07-25T11:51:54.010000"],["2024-07-25T11:51:55.010000"],["2024-07-25T11:51:56.010000"],["2024-07-25T11:51:57.010000"],["2024-07-25T11:51:58.010000"],["2024-07-25T11:51:59.010000"],["2024-07-25T11:52:00.010000"],["2024-07-25T11:52:01.010000"],["2024-07-25T11:52:02.010000"],["2024-07-25T11:52:03.010000"],["2024-07-25T11:52:04.010000"],["2024-07-25T11:52:05.010000"],["2024-07-25T11:52:06.010000"],["2024-07-25T11:52:07.010000"],["2024-07-25T11:52:08.010000"],["2024-07-25T11:52:09.010000"],["2024-07-25T11:52:10.010000"],["2024-07-25T11:52:11.010000"],["2024-07-25T11:52:12.010000"],["2024-07-25T11:52:13.010000"],["2024-07-25T11:52:14.010000"],["2024-07-25T11:52:15.010000"],["2024-07-25T11:52:16.010000"],["2024-07-25T11:52:17.010000"],["2024-07-25T11:52:18.010000"],["2024-07-25T11:52:19.010000"],["2024-07-25T11:52:20.010000"],["2024-07-25T11:52:21.010000"],["2024-07-25T11:52:22.010000"],["2024-07-25T11:52:23.010000"],["2024-07-25T11:52:24.010000"],["2024-07-25T11:52:25.010000"],["2024-07-25T11:52:26.010000"],["2024-07-25T11:52:27.010000"],["2024-07-25T11:52:28.010000"],["2024-07-25T11:52:29.010000"],["2024-07-25T11:52:30.010000"],["2024-07-25T11:52:31.010000"],["2024-07-25T11:52:32.010000"],["2024-07-25T11:52:33.010000"],["2024-07-25T11:52:34.010000"],["2024-07-25T11:52:35.010000"],["2024-07-25T11:52:36.010000"],["2024-07-25T11:52:37.010000"],["2024-07-25T11:52:38.010000"],["2024-07-25T11:52:39.010000"],["2024-07-25T11:52:40.010000"],["2024-07-25T11:52:41.010000"],["2024-07-25T11:52:42.010000"],["2024-07-25T11:52:43.010000"],["2024-07-25T11:52:44.010000"],["2024-07-25T11:52:45.010000"],["2024-07-25T11:52:46.010000"],["2024-07-25T11:52:47.010000"],["2024-07-25T11:52:48.010000"],["2024-07-25T11:52:49.010000"],["2024-07-25T11:52:50.010000"],["2024-07-25T11:52:51.010000"],["2024-07-25T11:52:52.010000"],["2024-07-25T11:52:53.010000"],["2024-07-25T11:52:54.010000"],["2024-07-25T11:52:55.010000"],["2024-07-25T11:52:56.010000"],["2024-07-25T11:52:57.010000"],["2024-07-25T11:52:58.010000"],["2024-07-25T11:52:59.010000"],["2024-07-25T11:53:00.010000"],["2024-07-25T11:53:01.010000"],["2024-07-25T11:53:02.010000"],["2024-07-25T11:53:03.010000"],["2024-07-25T11:53:04.010000"],["2024-07-25T11:53:05.010000"],["2024-07-25T11:53:06.010000"],["2024-07-25T11:53:07.010000"],["2024-07-25T11:53:08.010000"],["2024-07-25T11:53:09.010000"],["2024-07-25T11:53:10.010000"],["2024-07-25T11:53:11.010000"],["2024-07-25T11:53:12.010000"],["2024-07-25T11:53:13.010000"],["2024-07-25T11:53:14.010000"],["2024-07-25T11:53:15.010000"],["2024-07-25T11:53:16.010000"],["2024-07-25T11:53:17.010000"],["2024-07-25T11:53:18.010000"],["2024-07-25T11:53:19.010000"],["2024-07-25T11:53:20.010000"],["2024-07-25T11:53:21.010000"],["2024-07-25T11:53:22.010000"],["2024-07-25T11:53:23.010000"],["2024-07-25T11:53:24.010000"],["2024-07-25T11:53:25.010000"],["2024-07-25T11:53:26.010000"],["2024-07-25T11:53:27.010000"],["2024-07-25T11:53:28.010000"],["2024-07-25T11:53:29.010000"],["2024-07-25T11:53:30.010000"],["2024-07-25T11:53:31.010000"],["2024-07-25T11:53:32.010000"],["2024-07-25T11:53:33.010000"],["2024-07-25T11:53:34.010000"],["2024-07-25T11:53:35.010000"],["2024-07-25T11:53:36.010000"],["2024-07-25T11:53:37.010000"],["2024-07-25T11:53:38.010000"],["2024-07-25T11:53:39.010000"],["2024-07-25T11:53:40.010000"],["2024-07-25T11:53:41.010000"],["2024-07-25T11:53:42.010000"],["2024-07-25T11:53:43.010000"],["2024-07-25T11:53:44.010000"],["2024-07-25T11:53:45.010000"],["2024-07-25T11:53:46.010000"],["2024-07-25T11:53:47.010000"],["2024-07-25T11:53:48.010000"],["2024-07-25T11:53:49.010000"],["2024-07-25T11:53:50.010000"],["2024-07-25T11:53:51.010000"],["2024-07-25T11:53:52.010000"],["2024-07-25T11:53:53.010000"],["2024-07-25T11:53:54.010000"],["2024-07-25T11:53:55.010000"],["2024-07-25T11:53:56.010000"],["2024-07-25T11:53:57.010000"],["2024-07-25T11:53:58.010000"],["2024-07-25T11:53:59.010000"],["2024-07-25T11:54:00.010000"],["2024-07-25T11:54:01.010000"],["2024-07-25T11:54:02.010000"],["2024-07-25T11:54:03.010000"],["2024-07-25T11:54:04.010000"],["2024-07-25T11:54:05.010000"],["2024-07-25T11:54:06.010000"],["2024-07-25T11:54:07.010000"],["2024-07-25T11:54:08.010000"],["2024-07-25T11:54:09.010000"],["2024-07-25T11:54:10.010000"],["2024-07-25T11:54:11.010000"],["2024-07-25T11:54:12.010000"],["2024-07-25T11:54:13.010000"],["2024-07-25T11:54:14.010000"],["2024-07-25T11:54:15.010000"],["2024-07-25T11:54:16.010000"],["2024-07-25T11:54:17.010000"],["2024-07-25T11:54:18.010000"],["2024-07-25T11:54:19.010000"],["2024-07-25T11:54:20.010000"],["2024-07-25T11:54:21.010000"],["2024-07-25T11:54:22.010000"],["2024-07-25T11:54:23.010000"],["2024-07-25T11:54:24.010000"],["2024-07-25T11:54:25.010000"],["2024-07-25T11:54:26.010000"],["2024-07-25T11:54:27.010000"],["2024-07-25T11:54:28.010000"],["2024-07-25T11:54:29.010000"],["2024-07-25T11:54:30.010000"],["2024-07-25T11:54:31.010000"],["2024-07-25T11:54:32.010000"],["2024-07-25T11:54:33.010000"],["2024-07-25T11:54:34.010000"],["2024-07-25T11:54:35.010000"],["2024-07-25T11:54:36.010000"],["2024-07-25T11:54:37.010000"],["2024-07-25T11:54:38.010000"],["2024-07-25T11:54:39.010000"],["2024-07-25T11:54:40.010000"],["2024-07-25T11:54:41.010000"],["2024-07-25T11:54:42.010000"],["2024-07-25T11:54:43.010000"],["2024-07-25T11:54:44.010000"],["2024-07-25T11:54:45.010000"],["2024-07-25T11:54:46.010000"],["2024-07-25T11:54:47.010000"],["2024-07-25T11:54:48.010000"],["2024-07-25T11:54:49.010000"],["2024-07-25T11:54:50.010000"],["2024-07-25T11:54:51.010000"],["2024-07-25T11:54:52.010000"],["2024-07-25T11:54:53.010000"],["2024-07-25T11:54:54.010000"],["2024-07-25T11:54:55.010000"],["2024-07-25T11:54:56.010000"],["2024-07-25T11:54:57.010000"],["2024-07-25T11:54:58.010000"],["2024-07-25T11:54:59.010000"],["2024-07-25T11:55:00.010000"],["2024-07-25T11:55:01.010000"],["2024-07-25T11:55:02.010000"],["2024-07-25T11:55:03.010000"],["2024-07-25T11:55:04.010000"],["2024-07-25T11:55:05.010000"],["2024-07-25T11:55:06.010000"],["2024-07-25T11:55:07.010000"],["2024-07-25T11:55:08.010000"],["2024-07-25T11:55:09.010000"],["2024-07-25T11:55:10.010000"],["2024-07-25T11:55:11.010000"],["2024-07-25T11:55:12.010000"],["2024-07-25T11:55:13.010000"],["2024-07-25T11:55:14.010000"],["2024-07-25T11:55:15.010000"],["2024-07-25T11:55:16.010000"],["2024-07-25T11:55:17.010000"],["2024-07-25T11:55:18.010000"],["2024-07-25T11:55:19.010000"],["2024-07-25T11:55:20.010000"],["2024-07-25T11:55:21.010000"],["2024-07-25T11:55:22.010000"],["2024-07-25T11:55:23.010000"],["2024-07-25T11:55:24.010000"],["2024-07-25T11:55:25.010000"],["2024-07-25T11:55:26.010000"],["2024-07-25T11:55:27.010000"],["2024-07-25T11:55:28.010000"],["2024-07-25T11:55:29.010000"],["2024-07-25T11:55:30.010000"],["2024-07-25T11:55:31.010000"],["2024-07-25T11:55:32.010000"],["2024-07-25T11:55:33.010000"],["2024-07-25T11:55:34.010000"],["2024-07-25T11:55:35.010000"],["2024-07-25T11:55:36.010000"],["2024-07-25T11:55:37.010000"],["2024-07-25T11:55:38.010000"],["2024-07-25T11:55:39.010000"],["2024-07-25T11:55:40.010000"],["2024-07-25T11:55:41.010000"],["2024-07-25T11:55:42.010000"],["2024-07-25T11:55:43.010000"],["2024-07-25T11:55:44.010000"],["2024-07-25T11:55:45.010000"],["2024-07-25T11:55:46.010000"],["2024-07-25T11:55:47.010000"],["2024-07-25T11:55:48.010000"],["2024-07-25T11:55:49.010000"],["2024-07-25T11:55:50.010000"],["2024-07-25T11:55:51.010000"],["2024-07-25T11:55:52.010000"],["2024-07-25T11:55:53.010000"],["2024-07-25T11:55:54.010000"],["2024-07-25T11:55:55.010000"],["2024-07-25T11:55:56.010000"],["2024-07-25T11:55:57.010000"],["2024-07-25T11:55:58.010000"],["2024-07-25T11:55:59.010000"],["2024-07-25T11:56:00.010000"],["2024-07-25T11:56:01.010000"],["2024-07-25T11:56:02.010000"],["2024-07-25T11:56:03.010000"],["2024-07-25T11:56:04.010000"],["2024-07-25T11:56:05.010000"],["2024-07-25T11:56:06.010000"],["2024-07-25T11:56:07.010000"],["2024-07-25T11:56:08.010000"],["2024-07-25T11:56:09.010000"],["2024-07-25T11:56:10.010000"],["2024-07-25T11:56:11.010000"],["2024-07-25T11:56:12.010000"],["2024-07-25T11:56:13.010000"],["2024-07-25T11:56:14.010000"],["2024-07-25T11:56:15.010000"],["2024-07-25T11:56:16.010000"],["2024-07-25T11:56:17.010000"],["2024-07-25T11:56:18.010000"],["2024-07-25T11:56:19.010000"],["2024-07-25T11:56:20.010000"],["2024-07-25T11:56:21.010000"],["2024-07-25T11:56:22.010000"],["2024-07-25T11:56:23.010000"],["2024-07-25T11:56:24.010000"],["2024-07-25T11:56:25.010000"],["2024-07-25T11:56:26.010000"],["2024-07-25T11:56:27.010000"],["2024-07-25T11:56:28.010000"],["2024-07-25T11:56:29.010000"],["2024-07-25T11:56:30.010000"],["2024-07-25T11:56:31.010000"],["2024-07-25T11:56:32.010000"],["2024-07-25T11:56:33.010000"],["2024-07-25T11:56:34.010000"],["2024-07-25T11:56:35.010000"],["2024-07-25T11:56:36.010000"],["2024-07-25T11:56:37.010000"],["2024-07-25T11:56:38.010000"],["2024-07-25T11:56:39.010000"],["2024-07-25T11:56:40.010000"],["2024-07-25T11:56:41.010000"],["2024-07-25T11:56:42.010000"],["2024-07-25T11:56:43.010000"],["2024-07-25T11:56:44.010000"],["2024-07-25T11:56:45.010000"],["2024-07-25T11:56:46.010000"],["2024-07-25T11:56:47.010000"],["2024-07-25T11:56:48.010000"],["2024-07-25T11:56:49.010000"],["2024-07-25T11:56:50.010000"],["2024-07-25T11:56:51.010000"],["2024-07-25T11:56:52.010000"],["2024-07-25T11:56:53.010000"],["2024-07-25T11:56:54.010000"],["2024-07-25T11:56:55.010000"],["2024-07-25T11:56:56.010000"],["2024-07-25T11:56:57.010000"],["2024-07-25T11:56:58.010000"],["2024-07-25T11:56:59.010000"],["2024-07-25T11:57:00.010000"],["2024-07-25T11:57:01.010000"],["2024-07-25T11:57:02.010000"],["2024-07-25T11:57:03.010000"],["2024-07-25T11:57:04.010000"],["2024-07-25T11:57:05.010000"],["2024-07-25T11:57:06.010000"],["2024-07-25T11:57:07.010000"],["2024-07-25T11:57:08.010000"],["2024-07-25T11:57:09.010000"],["2024-07-25T11:57:10.010000"],["2024-07-25T11:57:11.010000"],["2024-07-25T11:57:12.010000"],["2024-07-25T11:57:13.010000"],["2024-07-25T11:57:14.010000"],["2024-07-25T11:57:15.010000"],["2024-07-25T11:57:16.010000"],["2024-07-25T11:57:17.010000"],["2024-07-25T11:57:18.010000"],["2024-07-25T11:57:19.010000"],["2024-07-25T11:57:20.010000"],["2024-07-25T11:57:21.010000"],["2024-07-25T11:57:22.010000"],["2024-07-25T11:57:23.010000"],["2024-07-25T11:57:24.010000"],["2024-07-25T11:57:25.010000"],["2024-07-25T11:57:26.010000"],["2024-07-25T11:57:27.010000"],["2024-07-25T11:57:28.010000"],["2024-07-25T11:57:29.010000"],["2024-07-25T11:57:30.010000"],["2024-07-25T11:57:31.010000"],["2024-07-25T11:57:32.010000"],["2024-07-25T11:57:33.010000"],["2024-07-25T11:57:34.010000"],["2024-07-25T11:57:35.010000"],["2024-07-25T11:57:36.010000"],["2024-07-25T11:57:37.010000"],["2024-07-25T11:57:38.010000"],["2024-07-25T11:57:39.010000"],["2024-07-25T11:57:40.010000"],["2024-07-25T11:57:41.010000"],["2024-07-25T11:57:42.010000"],["2024-07-25T11:57:43.010000"],["2024-07-25T11:57:44.010000"],["2024-07-25T11:57:45.010000"],["2024-07-25T11:57:46.010000"],["2024-07-25T11:57:47.010000"],["2024-07-25T11:57:48.010000"],["2024-07-25T11:57:49.010000"],["2024-07-25T11:57:50.010000"],["2024-07-25T11:57:51.010000"],["2024-07-25T11:57:52.010000"],["2024-07-25T11:57:53.010000"],["2024-07-25T11:57:54.010000"],["2024-07-25T11:57:55.010000"],["2024-07-25T11:57:56.010000"],["2024-07-25T11:57:57.010000"],["2024-07-25T11:57:58.010000"],["2024-07-25T11:57:59.010000"],["2024-07-25T11:58:00.010000"],["2024-07-25T11:58:01.010000"],["2024-07-25T11:58:02.010000"],["2024-07-25T11:58:03.010000"],["2024-07-25T11:58:04.010000"],["2024-07-25T11:58:05.010000"],["2024-07-25T11:58:06.010000"],["2024-07-25T11:58:07.010000"],["2024-07-25T11:58:08.010000"],["2024-07-25T11:58:09.010000"],["2024-07-25T11:58:10.010000"],["2024-07-25T11:58:11.010000"],["2024-07-25T11:58:12.010000"],["2024-07-25T11:58:13.010000"],["2024-07-25T11:58:14.010000"],["2024-07-25T11:58:15.010000"],["2024-07-25T11:58:16.010000"],["2024-07-25T11:58:17.010000"],["2024-07-25T11:58:18.010000"],["2024-07-25T11:58:19.010000"],["2024-07-25T11:58:20.010000"],["2024-07-25T11:58:21.010000"],["2024-07-25T11:58:22.010000"],["2024-07-25T11:58:23.010000"],["2024-07-25T11:58:24.010000"],["2024-07-25T11:58:25.010000"],["2024-07-25T11:58:26.010000"],["2024-07-25T11:58:27.010000"],["2024-07-25T11:58:28.010000"],["2024-07-25T11:58:29.010000"],["2024-07-25T11:58:30.010000"],["2024-07-25T11:58:31.010000"],["2024-07-25T11:58:32.010000"],["2024-07-25T11:58:33.010000"],["2024-07-25T11:58:34.010000"],["2024-07-25T11:58:35.010000"],["2024-07-25T11:58:36.010000"],["2024-07-25T11:58:37.010000"],["2024-07-25T11:58:38.010000"],["2024-07-25T11:58:39.010000"],["2024-07-25T11:58:40.010000"],["2024-07-25T11:58:41.010000"],["2024-07-25T11:58:42.010000"],["2024-07-25T11:58:43.010000"],["2024-07-25T11:58:44.010000"],["2024-07-25T11:58:45.010000"],["2024-07-25T11:58:46.010000"],["2024-07-25T11:58:47.010000"],["2024-07-25T11:58:48.010000"],["2024-07-25T11:58:49.010000"],["2024-07-25T11:58:50.010000"],["2024-07-25T11:58:51.010000"],["2024-07-25T11:58:52.010000"],["2024-07-25T11:58:53.010000"],["2024-07-25T11:58:54.010000"],["2024-07-25T11:58:55.010000"],["2024-07-25T11:58:56.010000"],["2024-07-25T11:58:57.010000"],["2024-07-25T11:58:58.010000"],["2024-07-25T11:58:59.010000"],["2024-07-25T11:59:00.010000"],["2024-07-25T11:59:01.010000"],["2024-07-25T11:59:02.010000"],["2024-07-25T11:59:03.010000"],["2024-07-25T11:59:04.010000"],["2024-07-25T11:59:05.010000"],["2024-07-25T11:59:06.010000"],["2024-07-25T11:59:07.010000"],["2024-07-25T11:59:08.010000"],["2024-07-25T11:59:09.010000"],["2024-07-25T11:59:10.010000"],["2024-07-25T11:59:11.010000"],["2024-07-25T11:59:12.010000"],["2024-07-25T11:59:13.010000"],["2024-07-25T11:59:14.010000"],["2024-07-25T11:59:15.010000"],["2024-07-25T11:59:16.010000"],["2024-07-25T11:59:17.010000"],["2024-07-25T11:59:18.010000"],["2024-07-25T11:59:19.010000"],["2024-07-25T11:59:20.010000"],["2024-07-25T11:59:21.010000"],["2024-07-25T11:59:22.010000"],["2024-07-25T11:59:23.010000"],["2024-07-25T11:59:24.010000"],["2024-07-25T11:59:25.010000"],["2024-07-25T11:59:26.010000"],["2024-07-25T11:59:27.010000"],["2024-07-25T11:59:28.010000"],["2024-07-25T11:59:29.010000"],["2024-07-25T11:59:30.010000"],["2024-07-25T11:59:31.010000"],["2024-07-25T11:59:32.010000"],["2024-07-25T11:59:33.010000"],["2024-07-25T11:59:34.010000"],["2024-07-25T11:59:35.010000"],["2024-07-25T11:59:36.010000"],["2024-07-25T11:59:37.010000"],["2024-07-25T11:59:38.010000"],["2024-07-25T11:59:39.010000"],["2024-07-25T11:59:40.010000"],["2024-07-25T11:59:41.010000"],["2024-07-25T11:59:42.010000"],["2024-07-25T11:59:43.010000"],["2024-07-25T11:59:44.010000"],["2024-07-25T11:59:45.010000"],["2024-07-25T11:59:46.010000"],["2024-07-25T11:59:47.010000"],["2024-07-25T11:59:48.010000"],["2024-07-25T11:59:49.010000"],["2024-07-25T11:59:50.010000"],["2024-07-25T11:59:51.010000"],["2024-07-25T11:59:52.010000"],["2024-07-25T11:59:53.010000"],["2024-07-25T11:59:54.010000"],["2024-07-25T11:59:55.010000"],["2024-07-25T11:59:56.010000"],["2024-07-25T11:59:57.010000"],["2024-07-25T11:59:58.010000"],["2024-07-25T11:59:59.010000"],["2024-07-25T12:00:00.010000"],["2024-07-25T12:00:01.010000"],["2024-07-25T12:00:02.010000"],["2024-07-25T12:00:03.010000"],["2024-07-25T12:00:04.010000"],["2024-07-25T12:00:05.010000"],["2024-07-25T12:00:06.010000"],["2024-07-25T12:00:07.010000"],["2024-07-25T12:00:08.010000"],["2024-07-25T12:00:09.010000"],["2024-07-25T12:00:10.010000"],["2024-07-25T12:00:11.010000"],["2024-07-25T12:00:12.010000"],["2024-07-25T12:00:13.010000"],["2024-07-25T12:00:14.010000"],["2024-07-25T12:00:15.010000"],["2024-07-25T12:00:16.010000"],["2024-07-25T12:00:17.010000"],["2024-07-25T12:00:18.010000"],["2024-07-25T12:00:19.010000"],["2024-07-25T12:00:20.010000"],["2024-07-25T12:00:21.010000"],["2024-07-25T12:00:22.010000"],["2024-07-25T12:00:23.010000"],["2024-07-25T12:00:24.010000"],["2024-07-25T12:00:25.010000"],["2024-07-25T12:00:26.010000"],["2024-07-25T12:00:27.010000"],["2024-07-25T12:00:28.010000"],["2024-07-25T12:00:29.010000"],["2024-07-25T12:00:30.010000"],["2024-07-25T12:00:31.010000"],["2024-07-25T12:00:32.010000"],["2024-07-25T12:00:33.010000"],["2024-07-25T12:00:34.010000"],["2024-07-25T12:00:35.010000"],["2024-07-25T12:00:36.010000"],["2024-07-25T12:00:37.010000"],["2024-07-25T12:00:38.010000"],["2024-07-25T12:00:39.010000"],["2024-07-25T12:00:40.010000"],["2024-07-25T12:00:41.010000"],["2024-07-25T12:00:42.010000"],["2024-07-25T12:00:43.010000"],["2024-07-25T12:00:44.010000"],["2024-07-25T12:00:45.010000"],["2024-07-25T12:00:46.010000"],["2024-07-25T12:00:47.010000"],["2024-07-25T12:00:48.010000"],["2024-07-25T12:00:49.010000"],["2024-07-25T12:00:50.010000"],["2024-07-25T12:00:51.010000"],["2024-07-25T12:00:52.010000"],["2024-07-25T12:00:53.010000"],["2024-07-25T12:00:54.010000"],["2024-07-25T12:00:55.010000"],["2024-07-25T12:00:56.010000"],["2024-07-25T12:00:57.010000"],["2024-07-25T12:00:58.010000"],["2024-07-25T12:00:59.010000"],["2024-07-25T12:01:00.010000"],["2024-07-25T12:01:01.010000"],["2024-07-25T12:01:02.010000"],["2024-07-25T12:01:03.010000"],["2024-07-25T12:01:04.010000"],["2024-07-25T12:01:05.010000"],["2024-07-25T12:01:06.010000"],["2024-07-25T12:01:07.010000"],["2024-07-25T12:01:08.010000"],["2024-07-25T12:01:09.010000"],["2024-07-25T12:01:10.010000"],["2024-07-25T12:01:11.010000"],["2024-07-25T12:01:12.010000"],["2024-07-25T12:01:13.010000"],["2024-07-25T12:01:14.010000"],["2024-07-25T12:01:15.010000"],["2024-07-25T12:01:16.010000"],["2024-07-25T12:01:17.010000"],["2024-07-25T12:01:18.010000"],["2024-07-25T12:01:19.010000"],["2024-07-25T12:01:20.010000"],["2024-07-25T12:01:21.010000"],["2024-07-25T12:01:22.010000"],["2024-07-25T12:01:23.010000"],["2024-07-25T12:01:24.010000"],["2024-07-25T12:01:25.010000"],["2024-07-25T12:01:26.010000"],["2024-07-25T12:01:27.010000"],["2024-07-25T12:01:28.010000"],["2024-07-25T12:01:29.010000"],["2024-07-25T12:01:30.010000"],["2024-07-25T12:01:31.010000"],["2024-07-25T12:01:32.010000"],["2024-07-25T12:01:33.010000"],["2024-07-25T12:01:34.010000"],["2024-07-25T12:01:35.010000"],["2024-07-25T12:01:36.010000"],["2024-07-25T12:01:37.010000"],["2024-07-25T12:01:38.010000"],["2024-07-25T12:01:39.010000"],["2024-07-25T12:01:40.010000"],["2024-07-25T12:01:41.010000"],["2024-07-25T12:01:42.010000"],["2024-07-25T12:01:43.010000"],["2024-07-25T12:01:44.010000"],["2024-07-25T12:01:45.010000"],["2024-07-25T12:01:46.010000"],["2024-07-25T12:01:47.010000"],["2024-07-25T12:01:48.010000"],["2024-07-25T12:01:49.010000"],["2024-07-25T12:01:50.010000"],["2024-07-25T12:01:51.010000"],["2024-07-25T12:01:52.010000"],["2024-07-25T12:01:53.010000"],["2024-07-25T12:01:54.010000"],["2024-07-25T12:01:55.010000"],["2024-07-25T12:01:56.010000"],["2024-07-25T12:01:57.010000"],["2024-07-25T12:01:58.010000"],["2024-07-25T12:01:59.010000"],["2024-07-25T12:02:00.010000"],["2024-07-25T12:02:01.010000"],["2024-07-25T12:02:02.010000"],["2024-07-25T12:02:03.010000"],["2024-07-25T12:02:04.010000"],["2024-07-25T12:02:05.010000"],["2024-07-25T12:02:06.010000"],["2024-07-25T12:02:07.010000"],["2024-07-25T12:02:08.010000"],["2024-07-25T12:02:09.010000"],["2024-07-25T12:02:10.010000"],["2024-07-25T12:02:11.010000"],["2024-07-25T12:02:12.010000"],["2024-07-25T12:02:13.010000"],["2024-07-25T12:02:14.010000"],["2024-07-25T12:02:15.010000"],["2024-07-25T12:02:16.010000"],["2024-07-25T12:02:17.010000"],["2024-07-25T12:02:18.010000"],["2024-07-25T12:02:19.010000"],["2024-07-25T12:02:20.010000"],["2024-07-25T12:02:21.010000"],["2024-07-25T12:02:22.010000"],["2024-07-25T12:02:23.010000"],["2024-07-25T12:02:24.010000"],["2024-07-25T12:02:25.010000"],["2024-07-25T12:02:26.010000"],["2024-07-25T12:02:27.010000"],["2024-07-25T12:02:28.010000"],["2024-07-25T12:02:29.010000"],["2024-07-25T12:02:30.010000"],["2024-07-25T12:02:31.010000"],["2024-07-25T12:02:32.010000"],["2024-07-25T12:02:33.010000"],["2024-07-25T12:02:34.010000"],["2024-07-25T12:02:35.010000"],["2024-07-25T12:02:36.010000"],["2024-07-25T12:02:37.010000"],["2024-07-25T12:02:38.010000"],["2024-07-25T12:02:39.010000"],["2024-07-25T12:02:40.010000"],["2024-07-25T12:02:41.010000"],["2024-07-25T12:02:42.010000"],["2024-07-25T12:02:43.010000"],["2024-07-25T12:02:44.010000"],["2024-07-25T12:02:45.010000"],["2024-07-25T12:02:46.010000"],["2024-07-25T12:02:47.010000"],["2024-07-25T12:02:48.010000"],["2024-07-25T12:02:49.010000"],["2024-07-25T12:02:50.010000"],["2024-07-25T12:02:51.010000"],["2024-07-25T12:02:52.010000"],["2024-07-25T12:02:53.010000"],["2024-07-25T12:02:54.010000"],["2024-07-25T12:02:55.010000"],["2024-07-25T12:02:56.010000"],["2024-07-25T12:02:57.010000"],["2024-07-25T12:02:58.010000"],["2024-07-25T12:02:59.010000"],["2024-07-25T12:03:00.010000"],["2024-07-25T12:03:01.010000"],["2024-07-25T12:03:02.010000"],["2024-07-25T12:03:03.010000"],["2024-07-25T12:03:04.010000"],["2024-07-25T12:03:05.010000"],["2024-07-25T12:03:06.010000"],["2024-07-25T12:03:07.010000"],["2024-07-25T12:03:08.010000"],["2024-07-25T12:03:09.010000"],["2024-07-25T12:03:10.010000"],["2024-07-25T12:03:11.010000"],["2024-07-25T12:03:12.010000"],["2024-07-25T12:03:13.010000"],["2024-07-25T12:03:14.010000"],["2024-07-25T12:03:15.010000"],["2024-07-25T12:03:16.010000"],["2024-07-25T12:03:17.010000"],["2024-07-25T12:03:18.010000"],["2024-07-25T12:03:19.010000"],["2024-07-25T12:03:20.010000"],["2024-07-25T12:03:21.010000"],["2024-07-25T12:03:22.010000"],["2024-07-25T12:03:23.010000"],["2024-07-25T12:03:24.010000"],["2024-07-25T12:03:25.010000"],["2024-07-25T12:03:26.010000"],["2024-07-25T12:03:27.010000"],["2024-07-25T12:03:28.010000"],["2024-07-25T12:03:29.010000"],["2024-07-25T12:03:30.010000"],["2024-07-25T12:03:31.010000"],["2024-07-25T12:03:32.010000"],["2024-07-25T12:03:33.010000"],["2024-07-25T12:03:34.010000"],["2024-07-25T12:03:35.010000"],["2024-07-25T12:03:36.010000"],["2024-07-25T12:03:37.010000"],["2024-07-25T12:03:38.010000"],["2024-07-25T12:03:39.010000"],["2024-07-25T12:03:40.010000"],["2024-07-25T12:03:41.010000"],["2024-07-25T12:03:42.010000"],["2024-07-25T12:03:43.010000"],["2024-07-25T12:03:44.010000"],["2024-07-25T12:03:45.010000"],["2024-07-25T12:03:46.010000"],["2024-07-25T12:03:47.010000"],["2024-07-25T12:03:48.010000"],["2024-07-25T12:03:49.010000"],["2024-07-25T12:03:50.010000"],["2024-07-25T12:03:51.010000"],["2024-07-25T12:03:52.010000"],["2024-07-25T12:03:53.010000"],["2024-07-25T12:03:54.010000"],["2024-07-25T12:03:55.010000"],["2024-07-25T12:03:56.010000"],["2024-07-25T12:03:57.010000"],["2024-07-25T12:03:58.010000"],["2024-07-25T12:03:59.010000"],["2024-07-25T12:04:00.010000"],["2024-07-25T12:04:01.010000"],["2024-07-25T12:04:02.010000"],["2024-07-25T12:04:03.010000"],["2024-07-25T12:04:04.010000"],["2024-07-25T12:04:05.010000"],["2024-07-25T12:04:06.010000"],["2024-07-25T12:04:07.010000"],["2024-07-25T12:04:08.010000"],["2024-07-25T12:04:09.010000"],["2024-07-25T12:04:10.010000"],["2024-07-25T12:04:11.010000"],["2024-07-25T12:04:12.010000"],["2024-07-25T12:04:13.010000"],["2024-07-25T12:04:14.010000"],["2024-07-25T12:04:15.010000"],["2024-07-25T12:04:16.010000"],["2024-07-25T12:04:17.010000"],["2024-07-25T12:04:18.010000"],["2024-07-25T12:04:19.010000"],["2024-07-25T12:04:20.010000"],["2024-07-25T12:04:21.010000"],["2024-07-25T12:04:22.010000"],["2024-07-25T12:04:23.010000"],["2024-07-25T12:04:24.010000"],["2024-07-25T12:04:25.010000"],["2024-07-25T12:04:26.010000"],["2024-07-25T12:04:27.010000"],["2024-07-25T12:04:28.010000"],["2024-07-25T12:04:29.010000"],["2024-07-25T12:04:30.010000"],["2024-07-25T12:04:31.010000"],["2024-07-25T12:04:32.010000"],["2024-07-25T12:04:33.010000"],["2024-07-25T12:04:34.010000"],["2024-07-25T12:04:35.010000"],["2024-07-25T12:04:36.010000"],["2024-07-25T12:04:37.010000"],["2024-07-25T12:04:38.010000"],["2024-07-25T12:04:39.010000"],["2024-07-25T12:04:40.010000"],["2024-07-25T12:04:41.010000"],["2024-07-25T12:04:42.010000"],["2024-07-25T12:04:43.010000"],["2024-07-25T12:04:44.010000"],["2024-07-25T12:04:45.010000"],["2024-07-25T12:04:46.010000"],["2024-07-25T12:04:47.010000"],["2024-07-25T12:04:48.010000"],["2024-07-25T12:04:49.010000"],["2024-07-25T12:04:50.010000"],["2024-07-25T12:04:51.010000"],["2024-07-25T12:04:52.010000"],["2024-07-25T12:04:53.010000"],["2024-07-25T12:04:54.010000"],["2024-07-25T12:04:55.010000"],["2024-07-25T12:04:56.010000"],["2024-07-25T12:04:57.010000"],["2024-07-25T12:04:58.010000"],["2024-07-25T12:04:59.010000"],["2024-07-25T12:05:00.010000"],["2024-07-25T12:05:01.010000"],["2024-07-25T12:05:02.010000"],["2024-07-25T12:05:03.010000"],["2024-07-25T12:05:04.010000"],["2024-07-25T12:05:05.010000"],["2024-07-25T12:05:06.010000"],["2024-07-25T12:05:07.010000"],["2024-07-25T12:05:08.010000"],["2024-07-25T12:05:09.010000"],["2024-07-25T12:05:10.010000"],["2024-07-25T12:05:11.010000"],["2024-07-25T12:05:12.010000"],["2024-07-25T12:05:13.010000"],["2024-07-25T12:05:14.010000"],["2024-07-25T12:05:15.010000"],["2024-07-25T12:05:16.010000"],["2024-07-25T12:05:17.010000"],["2024-07-25T12:05:18.010000"],["2024-07-25T12:05:19.010000"],["2024-07-25T12:05:20.010000"],["2024-07-25T12:05:21.010000"],["2024-07-25T12:05:22.010000"],["2024-07-25T12:05:23.010000"],["2024-07-25T12:05:24.010000"],["2024-07-25T12:05:25.010000"],["2024-07-25T12:05:26.010000"],["2024-07-25T12:05:27.010000"],["2024-07-25T12:05:28.010000"],["2024-07-25T12:05:29.010000"],["2024-07-25T12:05:30.010000"],["2024-07-25T12:05:31.010000"],["2024-07-25T12:05:32.010000"],["2024-07-25T12:05:33.010000"],["2024-07-25T12:05:34.010000"],["2024-07-25T12:05:35.010000"],["2024-07-25T12:05:36.010000"],["2024-07-25T12:05:37.010000"],["2024-07-25T12:05:38.010000"],["2024-07-25T12:05:39.010000"],["2024-07-25T12:05:40.010000"],["2024-07-25T12:05:41.010000"],["2024-07-25T12:05:42.010000"],["2024-07-25T12:05:43.010000"],["2024-07-25T12:05:44.010000"],["2024-07-25T12:05:45.010000"],["2024-07-25T12:05:46.010000"],["2024-07-25T12:05:47.010000"],["2024-07-25T12:05:48.010000"],["2024-07-25T12:05:49.010000"],["2024-07-25T12:05:50.010000"],["2024-07-25T12:05:51.010000"],["2024-07-25T12:05:52.010000"],["2024-07-25T12:05:53.010000"],["2024-07-25T12:05:54.010000"],["2024-07-25T12:05:55.010000"],["2024-07-25T12:05:56.010000"],["2024-07-25T12:05:57.010000"],["2024-07-25T12:05:58.010000"],["2024-07-25T12:05:59.010000"],["2024-07-25T12:06:00.010000"],["2024-07-25T12:06:01.010000"],["2024-07-25T12:06:02.010000"],["2024-07-25T12:06:03.010000"],["2024-07-25T12:06:04.010000"],["2024-07-25T12:06:05.010000"],["2024-07-25T12:06:06.010000"],["2024-07-25T12:06:07.010000"],["2024-07-25T12:06:08.010000"],["2024-07-25T12:06:09.010000"],["2024-07-25T12:06:10.010000"],["2024-07-25T12:06:11.010000"],["2024-07-25T12:06:12.010000"],["2024-07-25T12:06:13.010000"],["2024-07-25T12:06:14.010000"],["2024-07-25T12:06:15.010000"],["2024-07-25T12:06:16.010000"],["2024-07-25T12:06:17.010000"],["2024-07-25T12:06:18.010000"],["2024-07-25T12:06:19.010000"],["2024-07-25T12:06:20.010000"],["2024-07-25T12:06:21.010000"],["2024-07-25T12:06:22.010000"],["2024-07-25T12:06:23.010000"],["2024-07-25T12:06:24.010000"],["2024-07-25T12:06:25.010000"],["2024-07-25T12:06:26.010000"],["2024-07-25T12:06:27.010000"],["2024-07-25T12:06:28.010000"],["2024-07-25T12:06:29.010000"],["2024-07-25T12:06:30.010000"],["2024-07-25T12:06:31.010000"],["2024-07-25T12:06:32.010000"],["2024-07-25T12:06:33.010000"],["2024-07-25T12:06:34.010000"],["2024-07-25T12:06:35.010000"],["2024-07-25T12:06:36.010000"],["2024-07-25T12:06:37.010000"],["2024-07-25T12:06:38.010000"],["2024-07-25T12:06:39.010000"],["2024-07-25T12:06:40.010000"],["2024-07-25T12:06:41.010000"],["2024-07-25T12:06:42.010000"],["2024-07-25T12:06:43.010000"],["2024-07-25T12:06:44.010000"],["2024-07-25T12:06:45.010000"],["2024-07-25T12:06:46.010000"],["2024-07-25T12:06:47.010000"],["2024-07-25T12:06:48.010000"],["2024-07-25T12:06:49.010000"],["2024-07-25T12:06:50.010000"],["2024-07-25T12:06:51.010000"],["2024-07-25T12:06:52.010000"],["2024-07-25T12:06:53.010000"],["2024-07-25T12:06:54.010000"],["2024-07-25T12:06:55.010000"],["2024-07-25T12:06:56.010000"],["2024-07-25T12:06:57.010000"],["2024-07-25T12:06:58.010000"],["2024-07-25T12:06:59.010000"],["2024-07-25T12:07:00.010000"],["2024-07-25T12:07:01.010000"],["2024-07-25T12:07:02.010000"],["2024-07-25T12:07:03.010000"],["2024-07-25T12:07:04.010000"],["2024-07-25T12:07:05.010000"],["2024-07-25T12:07:06.010000"],["2024-07-25T12:07:07.010000"],["2024-07-25T12:07:08.010000"],["2024-07-25T12:07:09.010000"],["2024-07-25T12:07:10.010000"],["2024-07-25T12:07:11.010000"],["2024-07-25T12:07:12.010000"],["2024-07-25T12:07:13.010000"],["2024-07-25T12:07:14.010000"],["2024-07-25T12:07:15.010000"],["2024-07-25T12:07:16.010000"],["2024-07-25T12:07:17.010000"],["2024-07-25T12:07:18.010000"],["2024-07-25T12:07:19.010000"],["2024-07-25T12:07:20.010000"],["2024-07-25T12:07:21.010000"],["2024-07-25T12:07:22.010000"],["2024-07-25T12:07:23.010000"],["2024-07-25T12:07:24.010000"],["2024-07-25T12:07:25.010000"],["2024-07-25T12:07:26.010000"],["2024-07-25T12:07:27.010000"],["2024-07-25T12:07:28.010000"],["2024-07-25T12:07:29.010000"],["2024-07-25T12:07:30.010000"],["2024-07-25T12:07:31.010000"],["2024-07-25T12:07:32.010000"],["2024-07-25T12:07:33.010000"],["2024-07-25T12:07:34.010000"],["2024-07-25T12:07:35.010000"],["2024-07-25T12:07:36.010000"],["2024-07-25T12:07:37.010000"],["2024-07-25T12:07:38.010000"],["2024-07-25T12:07:39.010000"],["2024-07-25T12:07:40.010000"],["2024-07-25T12:07:41.010000"],["2024-07-25T12:07:42.010000"],["2024-07-25T12:07:43.010000"],["2024-07-25T12:07:44.010000"],["2024-07-25T12:07:45.010000"],["2024-07-25T12:07:46.010000"],["2024-07-25T12:07:47.010000"],["2024-07-25T12:07:48.010000"],["2024-07-25T12:07:49.010000"],["2024-07-25T12:07:50.010000"],["2024-07-25T12:07:51.010000"],["2024-07-25T12:07:52.010000"],["2024-07-25T12:07:53.010000"],["2024-07-25T12:07:54.010000"],["2024-07-25T12:07:55.010000"],["2024-07-25T12:07:56.010000"],["2024-07-25T12:07:57.010000"],["2024-07-25T12:07:58.010000"],["2024-07-25T12:07:59.010000"],["2024-07-25T12:08:00.010000"],["2024-07-25T12:08:01.010000"],["2024-07-25T12:08:02.010000"],["2024-07-25T12:08:03.010000"],["2024-07-25T12:08:04.010000"],["2024-07-25T12:08:05.010000"],["2024-07-25T12:08:06.010000"],["2024-07-25T12:08:07.010000"],["2024-07-25T12:08:08.010000"],["2024-07-25T12:08:09.010000"],["2024-07-25T12:08:10.010000"],["2024-07-25T12:08:11.010000"],["2024-07-25T12:08:12.010000"],["2024-07-25T12:08:13.010000"],["2024-07-25T12:08:14.010000"],["2024-07-25T12:08:15.010000"],["2024-07-25T12:08:16.010000"],["2024-07-25T12:08:17.010000"],["2024-07-25T12:08:18.010000"],["2024-07-25T12:08:19.010000"],["2024-07-25T12:08:20.010000"],["2024-07-25T12:08:21.010000"],["2024-07-25T12:08:22.010000"],["2024-07-25T12:08:23.010000"],["2024-07-25T12:08:24.010000"],["2024-07-25T12:08:25.010000"],["2024-07-25T12:08:26.010000"],["2024-07-25T12:08:27.010000"],["2024-07-25T12:08:28.010000"],["2024-07-25T12:08:29.010000"],["2024-07-25T12:08:30.010000"],["2024-07-25T12:08:31.010000"],["2024-07-25T12:08:32.010000"],["2024-07-25T12:08:33.010000"],["2024-07-25T12:08:34.010000"],["2024-07-25T12:08:35.010000"],["2024-07-25T12:08:36.010000"],["2024-07-25T12:08:37.010000"],["2024-07-25T12:08:38.010000"],["2024-07-25T12:08:39.010000"],["2024-07-25T12:08:40.010000"],["2024-07-25T12:08:41.010000"],["2024-07-25T12:08:42.010000"],["2024-07-25T12:08:43.010000"],["2024-07-25T12:08:44.010000"],["2024-07-25T12:08:45.010000"],["2024-07-25T12:08:46.010000"],["2024-07-25T12:08:47.010000"],["2024-07-25T12:08:48.010000"],["2024-07-25T12:08:49.010000"],["2024-07-25T12:08:50.010000"],["2024-07-25T12:08:51.010000"],["2024-07-25T12:08:52.010000"],["2024-07-25T12:08:53.010000"],["2024-07-25T12:08:54.010000"],["2024-07-25T12:08:55.010000"],["2024-07-25T12:08:56.010000"],["2024-07-25T12:08:57.010000"],["2024-07-25T12:08:58.010000"],["2024-07-25T12:08:59.010000"],["2024-07-25T12:09:00.010000"],["2024-07-25T12:09:01.010000"],["2024-07-25T12:09:02.010000"],["2024-07-25T12:09:03.010000"],["2024-07-25T12:09:04.010000"],["2024-07-25T12:09:05.010000"],["2024-07-25T12:09:06.010000"],["2024-07-25T12:09:07.010000"],["2024-07-25T12:09:08.010000"],["2024-07-25T12:09:09.010000"],["2024-07-25T12:09:10.010000"],["2024-07-25T12:09:11.010000"],["2024-07-25T12:09:12.010000"],["2024-07-25T12:09:13.010000"],["2024-07-25T12:09:14.010000"],["2024-07-25T12:09:15.010000"],["2024-07-25T12:09:16.010000"],["2024-07-25T12:09:17.010000"],["2024-07-25T12:09:18.010000"],["2024-07-25T12:09:19.010000"],["2024-07-25T12:09:20.010000"],["2024-07-25T12:09:21.010000"],["2024-07-25T12:09:22.010000"],["2024-07-25T12:09:23.010000"],["2024-07-25T12:09:24.010000"],["2024-07-25T12:09:25.010000"],["2024-07-25T12:09:26.010000"],["2024-07-25T12:09:27.010000"],["2024-07-25T12:09:28.010000"],["2024-07-25T12:09:29.010000"],["2024-07-25T12:09:30.010000"],["2024-07-25T12:09:31.010000"],["2024-07-25T12:09:32.010000"],["2024-07-25T12:09:33.010000"],["2024-07-25T12:09:34.010000"],["2024-07-25T12:09:35.010000"],["2024-07-25T12:09:36.010000"],["2024-07-25T12:09:37.010000"],["2024-07-25T12:09:38.010000"],["2024-07-25T12:09:39.010000"],["2024-07-25T12:09:40.010000"],["2024-07-25T12:09:41.010000"],["2024-07-25T12:09:42.010000"],["2024-07-25T12:09:43.010000"],["2024-07-25T12:09:44.010000"],["2024-07-25T12:09:45.010000"],["2024-07-25T12:09:46.010000"],["2024-07-25T12:09:47.010000"],["2024-07-25T12:09:48.010000"],["2024-07-25T12:09:49.010000"],["2024-07-25T12:09:50.010000"],["2024-07-25T12:09:51.010000"],["2024-07-25T12:09:52.010000"],["2024-07-25T12:09:53.010000"],["2024-07-25T12:09:54.010000"],["2024-07-25T12:09:55.010000"],["2024-07-25T12:09:56.010000"],["2024-07-25T12:09:57.010000"],["2024-07-25T12:09:58.010000"],["2024-07-25T12:09:59.010000"],["2024-07-25T12:10:00.010000"],["2024-07-25T12:10:01.010000"],["2024-07-25T12:10:02.010000"],["2024-07-25T12:10:03.010000"],["2024-07-25T12:10:04.010000"],["2024-07-25T12:10:05.010000"],["2024-07-25T12:10:06.010000"],["2024-07-25T12:10:07.010000"],["2024-07-25T12:10:08.010000"],["2024-07-25T12:10:09.010000"],["2024-07-25T12:10:10.010000"],["2024-07-25T12:10:11.010000"],["2024-07-25T12:10:12.010000"],["2024-07-25T12:10:13.010000"],["2024-07-25T12:10:14.010000"],["2024-07-25T12:10:15.010000"],["2024-07-25T12:10:16.010000"],["2024-07-25T12:10:17.010000"],["2024-07-25T12:10:18.010000"],["2024-07-25T12:10:19.010000"],["2024-07-25T12:10:20.010000"],["2024-07-25T12:10:21.010000"],["2024-07-25T12:10:22.010000"],["2024-07-25T12:10:23.010000"],["2024-07-25T12:10:24.010000"],["2024-07-25T12:10:25.010000"],["2024-07-25T12:10:26.010000"],["2024-07-25T12:10:27.010000"],["2024-07-25T12:10:28.010000"],["2024-07-25T12:10:29.010000"],["2024-07-25T12:10:30.010000"],["2024-07-25T12:10:31.010000"],["2024-07-25T12:10:32.010000"],["2024-07-25T12:10:33.010000"],["2024-07-25T12:10:34.010000"],["2024-07-25T12:10:35.010000"],["2024-07-25T12:10:36.010000"],["2024-07-25T12:10:37.010000"],["2024-07-25T12:10:38.010000"],["2024-07-25T12:10:39.010000"],["2024-07-25T12:10:40.010000"],["2024-07-25T12:10:41.010000"],["2024-07-25T12:10:42.010000"],["2024-07-25T12:10:43.010000"],["2024-07-25T12:10:44.010000"],["2024-07-25T12:10:45.010000"],["2024-07-25T12:10:46.010000"],["2024-07-25T12:10:47.010000"],["2024-07-25T12:10:48.010000"],["2024-07-25T12:10:49.010000"],["2024-07-25T12:10:50.010000"],["2024-07-25T12:10:51.010000"],["2024-07-25T12:10:52.010000"],["2024-07-25T12:10:53.010000"],["2024-07-25T12:10:54.010000"],["2024-07-25T12:10:55.010000"],["2024-07-25T12:10:56.010000"],["2024-07-25T12:10:57.010000"],["2024-07-25T12:10:58.010000"],["2024-07-25T12:10:59.010000"],["2024-07-25T12:11:00.010000"],["2024-07-25T12:11:01.010000"],["2024-07-25T12:11:02.010000"],["2024-07-25T12:11:03.010000"],["2024-07-25T12:11:04.010000"],["2024-07-25T12:11:05.010000"],["2024-07-25T12:11:06.010000"],["2024-07-25T12:11:07.010000"],["2024-07-25T12:11:08.010000"],["2024-07-25T12:11:09.010000"],["2024-07-25T12:11:10.010000"],["2024-07-25T12:11:11.010000"],["2024-07-25T12:11:12.010000"],["2024-07-25T12:11:13.010000"],["2024-07-25T12:11:14.010000"],["2024-07-25T12:11:15.010000"],["2024-07-25T12:11:16.010000"],["2024-07-25T12:11:17.010000"],["2024-07-25T12:11:18.010000"],["2024-07-25T12:11:19.010000"],["2024-07-25T12:11:20.010000"],["2024-07-25T12:11:21.010000"],["2024-07-25T12:11:22.010000"],["2024-07-25T12:11:23.010000"],["2024-07-25T12:11:24.010000"],["2024-07-25T12:11:25.010000"],["2024-07-25T12:11:26.010000"],["2024-07-25T12:11:27.010000"],["2024-07-25T12:11:28.010000"],["2024-07-25T12:11:29.010000"],["2024-07-25T12:11:30.010000"],["2024-07-25T12:11:31.010000"],["2024-07-25T12:11:32.010000"],["2024-07-25T12:11:33.010000"],["2024-07-25T12:11:34.010000"],["2024-07-25T12:11:35.010000"],["2024-07-25T12:11:36.010000"],["2024-07-25T12:11:37.010000"],["2024-07-25T12:11:38.010000"],["2024-07-25T12:11:39.010000"],["2024-07-25T12:11:40.010000"],["2024-07-25T12:11:41.010000"],["2024-07-25T12:11:42.010000"],["2024-07-25T12:11:43.010000"],["2024-07-25T12:11:44.010000"],["2024-07-25T12:11:45.010000"],["2024-07-25T12:11:46.010000"],["2024-07-25T12:11:47.010000"],["2024-07-25T12:11:48.010000"],["2024-07-25T12:11:49.010000"],["2024-07-25T12:11:50.010000"],["2024-07-25T12:11:51.010000"],["2024-07-25T12:11:52.010000"],["2024-07-25T12:11:53.010000"],["2024-07-25T12:11:54.010000"],["2024-07-25T12:11:55.010000"],["2024-07-25T12:11:56.010000"],["2024-07-25T12:11:57.010000"],["2024-07-25T12:11:58.010000"],["2024-07-25T12:11:59.010000"],["2024-07-25T12:12:00.010000"],["2024-07-25T12:12:01.010000"],["2024-07-25T12:12:02.010000"],["2024-07-25T12:12:03.010000"],["2024-07-25T12:12:04.010000"],["2024-07-25T12:12:05.010000"],["2024-07-25T12:12:06.010000"],["2024-07-25T12:12:07.010000"],["2024-07-25T12:12:08.010000"],["2024-07-25T12:12:09.010000"],["2024-07-25T12:12:10.010000"],["2024-07-25T12:12:11.010000"],["2024-07-25T12:12:12.010000"],["2024-07-25T12:12:13.010000"],["2024-07-25T12:12:14.010000"],["2024-07-25T12:12:15.010000"],["2024-07-25T12:12:16.010000"],["2024-07-25T12:12:17.010000"],["2024-07-25T12:12:18.010000"],["2024-07-25T12:12:19.010000"],["2024-07-25T12:12:20.010000"],["2024-07-25T12:12:21.010000"],["2024-07-25T12:12:22.010000"],["2024-07-25T12:12:23.010000"],["2024-07-25T12:12:24.010000"],["2024-07-25T12:12:25.010000"],["2024-07-25T12:12:26.010000"],["2024-07-25T12:12:27.010000"],["2024-07-25T12:12:28.010000"],["2024-07-25T12:12:29.010000"],["2024-07-25T12:12:30.010000"],["2024-07-25T12:12:31.010000"],["2024-07-25T12:12:32.010000"],["2024-07-25T12:12:33.010000"],["2024-07-25T12:12:34.010000"],["2024-07-25T12:12:35.010000"],["2024-07-25T12:12:36.010000"],["2024-07-25T12:12:37.010000"],["2024-07-25T12:12:38.010000"],["2024-07-25T12:12:39.010000"],["2024-07-25T12:12:40.010000"],["2024-07-25T12:12:41.010000"],["2024-07-25T12:12:42.010000"],["2024-07-25T12:12:43.010000"],["2024-07-25T12:12:44.010000"],["2024-07-25T12:12:45.010000"],["2024-07-25T12:12:46.010000"],["2024-07-25T12:12:47.010000"],["2024-07-25T12:12:48.010000"],["2024-07-25T12:12:49.010000"],["2024-07-25T12:12:50.010000"],["2024-07-25T12:12:51.010000"],["2024-07-25T12:12:52.010000"],["2024-07-25T12:12:53.010000"],["2024-07-25T12:12:54.010000"],["2024-07-25T12:12:55.010000"],["2024-07-25T12:12:56.010000"],["2024-07-25T12:12:57.010000"],["2024-07-25T12:12:58.010000"],["2024-07-25T12:12:59.010000"],["2024-07-25T12:13:00.010000"],["2024-07-25T12:13:01.010000"],["2024-07-25T12:13:02.010000"],["2024-07-25T12:13:03.010000"],["2024-07-25T12:13:04.010000"],["2024-07-25T12:13:05.010000"],["2024-07-25T12:13:06.010000"],["2024-07-25T12:13:07.010000"],["2024-07-25T12:13:08.010000"],["2024-07-25T12:13:09.010000"],["2024-07-25T12:13:10.010000"],["2024-07-25T12:13:11.010000"],["2024-07-25T12:13:12.010000"],["2024-07-25T12:13:13.010000"],["2024-07-25T12:13:14.010000"],["2024-07-25T12:13:15.010000"],["2024-07-25T12:13:16.010000"],["2024-07-25T12:13:17.010000"],["2024-07-25T12:13:18.010000"],["2024-07-25T12:13:19.010000"],["2024-07-25T12:13:20.010000"],["2024-07-25T12:13:21.010000"],["2024-07-25T12:13:22.010000"],["2024-07-25T12:13:23.010000"],["2024-07-25T12:13:24.010000"],["2024-07-25T12:13:25.010000"],["2024-07-25T12:13:26.010000"],["2024-07-25T12:13:27.010000"],["2024-07-25T12:13:28.010000"],["2024-07-25T12:13:29.010000"],["2024-07-25T12:13:30.010000"],["2024-07-25T12:13:31.010000"],["2024-07-25T12:13:32.010000"],["2024-07-25T12:13:33.010000"],["2024-07-25T12:13:34.010000"],["2024-07-25T12:13:35.010000"],["2024-07-25T12:13:36.010000"],["2024-07-25T12:13:37.010000"],["2024-07-25T12:13:38.010000"],["2024-07-25T12:13:39.010000"],["2024-07-25T12:13:40.010000"],["2024-07-25T12:13:41.010000"],["2024-07-25T12:13:42.010000"],["2024-07-25T12:13:43.010000"],["2024-07-25T12:13:44.010000"],["2024-07-25T12:13:45.010000"],["2024-07-25T12:13:46.010000"],["2024-07-25T12:13:47.010000"],["2024-07-25T12:13:48.010000"],["2024-07-25T12:13:49.010000"],["2024-07-25T12:13:50.010000"],["2024-07-25T12:13:51.010000"],["2024-07-25T12:13:52.010000"],["2024-07-25T12:13:53.010000"],["2024-07-25T12:13:54.010000"],["2024-07-25T12:13:55.010000"],["2024-07-25T12:13:56.010000"],["2024-07-25T12:13:57.010000"],["2024-07-25T12:13:58.010000"],["2024-07-25T12:13:59.010000"],["2024-07-25T12:14:00.010000"],["2024-07-25T12:14:01.010000"],["2024-07-25T12:14:02.010000"],["2024-07-25T12:14:03.010000"],["2024-07-25T12:14:04.010000"],["2024-07-25T12:14:05.010000"],["2024-07-25T12:14:06.010000"],["2024-07-25T12:14:07.010000"],["2024-07-25T12:14:08.010000"],["2024-07-25T12:14:09.010000"],["2024-07-25T12:14:10.010000"],["2024-07-25T12:14:11.010000"],["2024-07-25T12:14:12.010000"],["2024-07-25T12:14:13.010000"],["2024-07-25T12:14:14.010000"],["2024-07-25T12:14:15.010000"],["2024-07-25T12:14:16.010000"],["2024-07-25T12:14:17.010000"],["2024-07-25T12:14:18.010000"],["2024-07-25T12:14:19.010000"],["2024-07-25T12:14:20.010000"],["2024-07-25T12:14:21.010000"],["2024-07-25T12:14:22.010000"],["2024-07-25T12:14:23.010000"],["2024-07-25T12:14:24.010000"],["2024-07-25T12:14:25.010000"],["2024-07-25T12:14:26.010000"],["2024-07-25T12:14:27.010000"],["2024-07-25T12:14:28.010000"],["2024-07-25T12:14:29.010000"],["2024-07-25T12:14:30.010000"],["2024-07-25T12:14:31.010000"],["2024-07-25T12:14:32.010000"],["2024-07-25T12:14:33.010000"],["2024-07-25T12:14:34.010000"],["2024-07-25T12:14:35.010000"],["2024-07-25T12:14:36.010000"],["2024-07-25T12:14:37.010000"],["2024-07-25T12:14:38.010000"],["2024-07-25T12:14:39.010000"],["2024-07-25T12:14:40.010000"],["2024-07-25T12:14:41.010000"],["2024-07-25T12:14:42.010000"],["2024-07-25T12:14:43.010000"],["2024-07-25T12:14:44.010000"],["2024-07-25T12:14:45.010000"],["2024-07-25T12:14:46.010000"],["2024-07-25T12:14:47.010000"],["2024-07-25T12:14:48.010000"],["2024-07-25T12:14:49.010000"],["2024-07-25T12:14:50.010000"],["2024-07-25T12:14:51.010000"],["2024-07-25T12:14:52.010000"],["2024-07-25T12:14:53.010000"],["2024-07-25T12:14:54.010000"],["2024-07-25T12:14:55.010000"],["2024-07-25T12:14:56.010000"],["2024-07-25T12:14:57.010000"],["2024-07-25T12:14:58.010000"],["2024-07-25T12:14:59.010000"],["2024-07-25T12:15:00.010000"],["2024-07-25T12:15:01.010000"],["2024-07-25T12:15:02.010000"],["2024-07-25T12:15:03.010000"],["2024-07-25T12:15:04.010000"],["2024-07-25T12:15:05.010000"],["2024-07-25T12:15:06.010000"],["2024-07-25T12:15:07.010000"],["2024-07-25T12:15:08.010000"],["2024-07-25T12:15:09.010000"],["2024-07-25T12:15:10.010000"],["2024-07-25T12:15:11.010000"],["2024-07-25T12:15:12.010000"],["2024-07-25T12:15:13.010000"],["2024-07-25T12:15:14.010000"],["2024-07-25T12:15:15.010000"],["2024-07-25T12:15:16.010000"],["2024-07-25T12:15:17.010000"],["2024-07-25T12:15:18.010000"],["2024-07-25T12:15:19.010000"],["2024-07-25T12:15:20.010000"],["2024-07-25T12:15:21.010000"],["2024-07-25T12:15:22.010000"],["2024-07-25T12:15:23.010000"],["2024-07-25T12:15:24.010000"],["2024-07-25T12:15:25.010000"],["2024-07-25T12:15:26.010000"],["2024-07-25T12:15:27.010000"],["2024-07-25T12:15:28.010000"],["2024-07-25T12:15:29.010000"],["2024-07-25T12:15:30.010000"],["2024-07-25T12:15:31.010000"],["2024-07-25T12:15:32.010000"],["2024-07-25T12:15:33.010000"],["2024-07-25T12:15:34.010000"],["2024-07-25T12:15:35.010000"],["2024-07-25T12:15:36.010000"],["2024-07-25T12:15:37.010000"],["2024-07-25T12:15:38.010000"],["2024-07-25T12:15:39.010000"],["2024-07-25T12:15:40.010000"],["2024-07-25T12:15:41.010000"],["2024-07-25T12:15:42.010000"],["2024-07-25T12:15:43.010000"],["2024-07-25T12:15:44.010000"],["2024-07-25T12:15:45.010000"],["2024-07-25T12:15:46.010000"],["2024-07-25T12:15:47.010000"],["2024-07-25T12:15:48.010000"],["2024-07-25T12:15:49.010000"],["2024-07-25T12:15:50.010000"],["2024-07-25T12:15:51.010000"],["2024-07-25T12:15:52.010000"],["2024-07-25T12:15:53.010000"],["2024-07-25T12:15:54.010000"],["2024-07-25T12:15:55.010000"],["2024-07-25T12:15:56.010000"],["2024-07-25T12:15:57.010000"],["2024-07-25T12:15:58.010000"],["2024-07-25T12:15:59.010000"],["2024-07-25T12:16:00.010000"],["2024-07-25T12:16:01.010000"],["2024-07-25T12:16:02.010000"],["2024-07-25T12:16:03.010000"],["2024-07-25T12:16:04.010000"],["2024-07-25T12:16:05.010000"],["2024-07-25T12:16:06.010000"],["2024-07-25T12:16:07.010000"],["2024-07-25T12:16:08.010000"],["2024-07-25T12:16:09.010000"],["2024-07-25T12:16:10.010000"],["2024-07-25T12:16:11.010000"],["2024-07-25T12:16:12.010000"],["2024-07-25T12:16:13.010000"],["2024-07-25T12:16:14.010000"],["2024-07-25T12:16:15.010000"],["2024-07-25T12:16:16.010000"],["2024-07-25T12:16:17.010000"],["2024-07-25T12:16:18.010000"],["2024-07-25T12:16:19.010000"],["2024-07-25T12:16:20.010000"],["2024-07-25T12:16:21.010000"],["2024-07-25T12:16:22.010000"],["2024-07-25T12:16:23.010000"],["2024-07-25T12:16:24.010000"],["2024-07-25T12:16:25.010000"],["2024-07-25T12:16:26.010000"],["2024-07-25T12:16:27.010000"],["2024-07-25T12:16:28.010000"],["2024-07-25T12:16:29.010000"],["2024-07-25T12:16:30.010000"],["2024-07-25T12:16:31.010000"],["2024-07-25T12:16:32.010000"],["2024-07-25T12:16:33.010000"],["2024-07-25T12:16:34.010000"],["2024-07-25T12:16:35.010000"],["2024-07-25T12:16:36.010000"],["2024-07-25T12:16:37.010000"],["2024-07-25T12:16:38.010000"],["2024-07-25T12:16:39.010000"],["2024-07-25T12:16:40.010000"],["2024-07-25T12:16:41.010000"],["2024-07-25T12:16:42.010000"],["2024-07-25T12:16:43.010000"],["2024-07-25T12:16:44.010000"],["2024-07-25T12:16:45.010000"],["2024-07-25T12:16:46.010000"],["2024-07-25T12:16:47.010000"],["2024-07-25T12:16:48.010000"],["2024-07-25T12:16:49.010000"],["2024-07-25T12:16:50.010000"],["2024-07-25T12:16:51.010000"],["2024-07-25T12:16:52.010000"],["2024-07-25T12:16:53.010000"],["2024-07-25T12:16:54.010000"],["2024-07-25T12:16:55.010000"],["2024-07-25T12:16:56.010000"],["2024-07-25T12:16:57.010000"],["2024-07-25T12:16:58.010000"],["2024-07-25T12:16:59.010000"],["2024-07-25T12:17:00.010000"],["2024-07-25T12:17:01.010000"],["2024-07-25T12:17:02.010000"],["2024-07-25T12:17:03.010000"],["2024-07-25T12:17:04.010000"],["2024-07-25T12:17:05.010000"],["2024-07-25T12:17:06.010000"],["2024-07-25T12:17:07.010000"],["2024-07-25T12:17:08.010000"],["2024-07-25T12:17:09.010000"],["2024-07-25T12:17:10.010000"],["2024-07-25T12:17:11.010000"],["2024-07-25T12:17:12.010000"],["2024-07-25T12:17:13.010000"],["2024-07-25T12:17:14.010000"],["2024-07-25T12:17:15.010000"],["2024-07-25T12:17:16.010000"],["2024-07-25T12:17:17.010000"],["2024-07-25T12:17:18.010000"],["2024-07-25T12:17:19.010000"],["2024-07-25T12:17:20.010000"],["2024-07-25T12:17:21.010000"],["2024-07-25T12:17:22.010000"],["2024-07-25T12:17:23.010000"],["2024-07-25T12:17:24.010000"],["2024-07-25T12:17:25.010000"],["2024-07-25T12:17:26.010000"],["2024-07-25T12:17:27.010000"],["2024-07-25T12:17:28.010000"],["2024-07-25T12:17:29.010000"],["2024-07-25T12:17:30.010000"],["2024-07-25T12:17:31.010000"],["2024-07-25T12:17:32.010000"],["2024-07-25T12:17:33.010000"],["2024-07-25T12:17:34.010000"],["2024-07-25T12:17:35.010000"],["2024-07-25T12:17:36.010000"],["2024-07-25T12:17:37.010000"],["2024-07-25T12:17:38.010000"],["2024-07-25T12:17:39.010000"],["2024-07-25T12:17:40.010000"],["2024-07-25T12:17:41.010000"],["2024-07-25T12:17:42.010000"],["2024-07-25T12:17:43.010000"],["2024-07-25T12:17:44.010000"],["2024-07-25T12:17:45.010000"],["2024-07-25T12:17:46.010000"],["2024-07-25T12:17:47.010000"],["2024-07-25T12:17:48.010000"],["2024-07-25T12:17:49.010000"],["2024-07-25T12:17:50.010000"],["2024-07-25T12:17:51.010000"],["2024-07-25T12:17:52.010000"],["2024-07-25T12:17:53.010000"],["2024-07-25T12:17:54.010000"],["2024-07-25T12:17:55.010000"],["2024-07-25T12:17:56.010000"],["2024-07-25T12:17:57.010000"],["2024-07-25T12:17:58.010000"],["2024-07-25T12:17:59.010000"],["2024-07-25T12:18:00.010000"],["2024-07-25T12:18:01.010000"],["2024-07-25T12:18:02.010000"],["2024-07-25T12:18:03.010000"],["2024-07-25T12:18:04.010000"],["2024-07-25T12:18:05.010000"],["2024-07-25T12:18:06.010000"],["2024-07-25T12:18:07.010000"],["2024-07-25T12:18:08.010000"],["2024-07-25T12:18:09.010000"],["2024-07-25T12:18:10.010000"],["2024-07-25T12:18:11.010000"],["2024-07-25T12:18:12.010000"],["2024-07-25T12:18:13.010000"],["2024-07-25T12:18:14.010000"],["2024-07-25T12:18:15.010000"],["2024-07-25T12:18:16.010000"],["2024-07-25T12:18:17.010000"],["2024-07-25T12:18:18.010000"],["2024-07-25T12:18:19.010000"],["2024-07-25T12:18:20.010000"],["2024-07-25T12:18:21.010000"],["2024-07-25T12:18:22.010000"],["2024-07-25T12:18:23.010000"],["2024-07-25T12:18:24.010000"],["2024-07-25T12:18:25.010000"],["2024-07-25T12:18:26.010000"],["2024-07-25T12:18:27.010000"],["2024-07-25T12:18:28.010000"],["2024-07-25T12:18:29.010000"],["2024-07-25T12:18:30.010000"],["2024-07-25T12:18:31.010000"],["2024-07-25T12:18:32.010000"],["2024-07-25T12:18:33.010000"],["2024-07-25T12:18:34.010000"],["2024-07-25T12:18:35.010000"],["2024-07-25T12:18:36.010000"],["2024-07-25T12:18:37.010000"],["2024-07-25T12:18:38.010000"],["2024-07-25T12:18:39.010000"],["2024-07-25T12:18:40.010000"],["2024-07-25T12:18:41.010000"],["2024-07-25T12:18:42.010000"],["2024-07-25T12:18:43.010000"],["2024-07-25T12:18:44.010000"],["2024-07-25T12:18:45.010000"],["2024-07-25T12:18:46.010000"],["2024-07-25T12:18:47.010000"],["2024-07-25T12:18:48.010000"],["2024-07-25T12:18:49.010000"],["2024-07-25T12:18:50.010000"],["2024-07-25T12:18:51.010000"],["2024-07-25T12:18:52.010000"],["2024-07-25T12:18:53.010000"],["2024-07-25T12:18:54.010000"],["2024-07-25T12:18:55.010000"],["2024-07-25T12:18:56.010000"],["2024-07-25T12:18:57.010000"],["2024-07-25T12:18:58.010000"],["2024-07-25T12:18:59.010000"],["2024-07-25T12:19:00.010000"],["2024-07-25T12:19:01.010000"],["2024-07-25T12:19:02.010000"],["2024-07-25T12:19:03.010000"],["2024-07-25T12:19:04.010000"],["2024-07-25T12:19:05.010000"],["2024-07-25T12:19:06.010000"],["2024-07-25T12:19:07.010000"],["2024-07-25T12:19:08.010000"],["2024-07-25T12:19:09.010000"],["2024-07-25T12:19:10.010000"],["2024-07-25T12:19:11.010000"],["2024-07-25T12:19:12.010000"],["2024-07-25T12:19:13.010000"],["2024-07-25T12:19:14.010000"],["2024-07-25T12:19:15.010000"],["2024-07-25T12:19:16.010000"],["2024-07-25T12:19:17.010000"],["2024-07-25T12:19:18.010000"],["2024-07-25T12:19:19.010000"],["2024-07-25T12:19:20.010000"],["2024-07-25T12:19:21.010000"],["2024-07-25T12:19:22.010000"],["2024-07-25T12:19:23.010000"],["2024-07-25T12:19:24.010000"],["2024-07-25T12:19:25.010000"],["2024-07-25T12:19:26.010000"],["2024-07-25T12:19:27.010000"],["2024-07-25T12:19:28.010000"],["2024-07-25T12:19:29.010000"],["2024-07-25T12:19:30.010000"],["2024-07-25T12:19:31.010000"],["2024-07-25T12:19:32.010000"],["2024-07-25T12:19:33.010000"],["2024-07-25T12:19:34.010000"],["2024-07-25T12:19:35.010000"],["2024-07-25T12:19:36.010000"],["2024-07-25T12:19:37.010000"],["2024-07-25T12:19:38.010000"],["2024-07-25T12:19:39.010000"],["2024-07-25T12:19:40.010000"],["2024-07-25T12:19:41.010000"],["2024-07-25T12:19:42.010000"],["2024-07-25T12:19:43.010000"],["2024-07-25T12:19:44.010000"],["2024-07-25T12:19:45.010000"],["2024-07-25T12:19:46.010000"],["2024-07-25T12:19:47.010000"],["2024-07-25T12:19:48.010000"],["2024-07-25T12:19:49.010000"],["2024-07-25T12:19:50.010000"],["2024-07-25T12:19:51.010000"],["2024-07-25T12:19:52.010000"],["2024-07-25T12:19:53.010000"],["2024-07-25T12:19:54.010000"],["2024-07-25T12:19:55.010000"],["2024-07-25T12:19:56.010000"],["2024-07-25T12:19:57.010000"],["2024-07-25T12:19:58.010000"],["2024-07-25T12:19:59.010000"],["2024-07-25T12:20:00.010000"],["2024-07-25T12:20:01.010000"],["2024-07-25T12:20:02.010000"],["2024-07-25T12:20:03.010000"],["2024-07-25T12:20:04.010000"],["2024-07-25T12:20:05.010000"],["2024-07-25T12:20:06.010000"],["2024-07-25T12:20:07.010000"],["2024-07-25T12:20:08.010000"],["2024-07-25T12:20:09.010000"],["2024-07-25T12:20:10.010000"],["2024-07-25T12:20:11.010000"],["2024-07-25T12:20:12.010000"],["2024-07-25T12:20:13.010000"],["2024-07-25T12:20:14.010000"],["2024-07-25T12:20:15.010000"],["2024-07-25T12:20:16.010000"],["2024-07-25T12:20:17.010000"],["2024-07-25T12:20:18.010000"],["2024-07-25T12:20:19.010000"],["2024-07-25T12:20:20.010000"],["2024-07-25T12:20:21.010000"],["2024-07-25T12:20:22.010000"],["2024-07-25T12:20:23.010000"],["2024-07-25T12:20:24.010000"],["2024-07-25T12:20:25.010000"],["2024-07-25T12:20:26.010000"],["2024-07-25T12:20:27.010000"],["2024-07-25T12:20:28.010000"],["2024-07-25T12:20:29.010000"],["2024-07-25T12:20:30.010000"],["2024-07-25T12:20:31.010000"],["2024-07-25T12:20:32.010000"],["2024-07-25T12:20:33.010000"],["2024-07-25T12:20:34.010000"],["2024-07-25T12:20:35.010000"],["2024-07-25T12:20:36.010000"],["2024-07-25T12:20:37.010000"],["2024-07-25T12:20:38.010000"],["2024-07-25T12:20:39.010000"],["2024-07-25T12:20:40.010000"],["2024-07-25T12:20:41.010000"],["2024-07-25T12:20:42.010000"],["2024-07-25T12:20:43.010000"],["2024-07-25T12:20:44.010000"],["2024-07-25T12:20:45.010000"],["2024-07-25T12:20:46.010000"],["2024-07-25T12:20:47.010000"],["2024-07-25T12:20:48.010000"],["2024-07-25T12:20:49.010000"],["2024-07-25T12:20:50.010000"],["2024-07-25T12:20:51.010000"],["2024-07-25T12:20:52.010000"],["2024-07-25T12:20:53.010000"],["2024-07-25T12:20:54.010000"],["2024-07-25T12:20:55.010000"],["2024-07-25T12:20:56.010000"],["2024-07-25T12:20:57.010000"],["2024-07-25T12:20:58.010000"],["2024-07-25T12:20:59.010000"],["2024-07-25T12:21:00.010000"],["2024-07-25T12:21:01.010000"],["2024-07-25T12:21:02.010000"],["2024-07-25T12:21:03.010000"],["2024-07-25T12:21:04.010000"],["2024-07-25T12:21:05.010000"],["2024-07-25T12:21:06.010000"],["2024-07-25T12:21:07.010000"],["2024-07-25T12:21:08.010000"],["2024-07-25T12:21:09.010000"],["2024-07-25T12:21:10.010000"],["2024-07-25T12:21:11.010000"],["2024-07-25T12:21:12.010000"],["2024-07-25T12:21:13.010000"],["2024-07-25T12:21:14.010000"],["2024-07-25T12:21:15.010000"],["2024-07-25T12:21:16.010000"],["2024-07-25T12:21:17.010000"],["2024-07-25T12:21:18.010000"],["2024-07-25T12:21:19.010000"],["2024-07-25T12:21:20.010000"],["2024-07-25T12:21:21.010000"],["2024-07-25T12:21:22.010000"],["2024-07-25T12:21:23.010000"],["2024-07-25T12:21:24.010000"],["2024-07-25T12:21:25.010000"],["2024-07-25T12:21:26.010000"],["2024-07-25T12:21:27.010000"],["2024-07-25T12:21:28.010000"],["2024-07-25T12:21:29.010000"],["2024-07-25T12:21:30.010000"],["2024-07-25T12:21:31.010000"],["2024-07-25T12:21:32.010000"],["2024-07-25T12:21:33.010000"],["2024-07-25T12:21:34.010000"],["2024-07-25T12:21:35.010000"],["2024-07-25T12:21:36.010000"],["2024-07-25T12:21:37.010000"],["2024-07-25T12:21:38.010000"],["2024-07-25T12:21:39.010000"],["2024-07-25T12:21:40.010000"],["2024-07-25T12:21:41.010000"],["2024-07-25T12:21:42.010000"],["2024-07-25T12:21:43.010000"],["2024-07-25T12:21:44.010000"],["2024-07-25T12:21:45.010000"],["2024-07-25T12:21:46.010000"],["2024-07-25T12:21:47.010000"],["2024-07-25T12:21:48.010000"],["2024-07-25T12:21:49.010000"],["2024-07-25T12:21:50.010000"],["2024-07-25T12:21:51.010000"],["2024-07-25T12:21:52.010000"],["2024-07-25T12:21:53.010000"],["2024-07-25T12:21:54.010000"],["2024-07-25T12:21:55.010000"],["2024-07-25T12:21:56.010000"],["2024-07-25T12:21:57.010000"],["2024-07-25T12:21:58.010000"],["2024-07-25T12:21:59.010000"],["2024-07-25T12:22:00.010000"],["2024-07-25T12:22:01.010000"],["2024-07-25T12:22:02.010000"],["2024-07-25T12:22:03.010000"],["2024-07-25T12:22:04.010000"],["2024-07-25T12:22:05.010000"],["2024-07-25T12:22:06.010000"],["2024-07-25T12:22:07.010000"],["2024-07-25T12:22:08.010000"],["2024-07-25T12:22:09.010000"],["2024-07-25T12:22:10.010000"],["2024-07-25T12:22:11.010000"],["2024-07-25T12:22:12.010000"],["2024-07-25T12:22:13.010000"],["2024-07-25T12:22:14.010000"],["2024-07-25T12:22:15.010000"],["2024-07-25T12:22:16.010000"],["2024-07-25T12:22:17.010000"],["2024-07-25T12:22:18.010000"],["2024-07-25T12:22:19.010000"],["2024-07-25T12:22:20.010000"],["2024-07-25T12:22:21.010000"],["2024-07-25T12:22:22.010000"],["2024-07-25T12:22:23.010000"],["2024-07-25T12:22:24.010000"],["2024-07-25T12:22:25.010000"],["2024-07-25T12:22:26.010000"],["2024-07-25T12:22:27.010000"],["2024-07-25T12:22:28.010000"],["2024-07-25T12:22:29.010000"],["2024-07-25T12:22:30.010000"],["2024-07-25T12:22:31.010000"],["2024-07-25T12:22:32.010000"],["2024-07-25T12:22:33.010000"],["2024-07-25T12:22:34.010000"],["2024-07-25T12:22:35.010000"],["2024-07-25T12:22:36.010000"],["2024-07-25T12:22:37.010000"],["2024-07-25T12:22:38.010000"],["2024-07-25T12:22:39.010000"],["2024-07-25T12:22:40.010000"],["2024-07-25T12:22:41.010000"],["2024-07-25T12:22:42.010000"],["2024-07-25T12:22:43.010000"],["2024-07-25T12:22:44.010000"],["2024-07-25T12:22:45.010000"],["2024-07-25T12:22:46.010000"],["2024-07-25T12:22:47.010000"],["2024-07-25T12:22:48.010000"],["2024-07-25T12:22:49.010000"],["2024-07-25T12:22:50.010000"],["2024-07-25T12:22:51.010000"],["2024-07-25T12:22:52.010000"],["2024-07-25T12:22:53.010000"],["2024-07-25T12:22:54.010000"],["2024-07-25T12:22:55.010000"],["2024-07-25T12:22:56.010000"],["2024-07-25T12:22:57.010000"],["2024-07-25T12:22:58.010000"],["2024-07-25T12:22:59.010000"],["2024-07-25T12:23:00.010000"],["2024-07-25T12:23:01.010000"],["2024-07-25T12:23:02.010000"],["2024-07-25T12:23:03.010000"],["2024-07-25T12:23:04.010000"],["2024-07-25T12:23:05.010000"],["2024-07-25T12:23:06.010000"],["2024-07-25T12:23:07.010000"],["2024-07-25T12:23:08.010000"],["2024-07-25T12:23:09.010000"],["2024-07-25T12:23:10.010000"],["2024-07-25T12:23:11.010000"],["2024-07-25T12:23:12.010000"],["2024-07-25T12:23:13.010000"],["2024-07-25T12:23:14.010000"],["2024-07-25T12:23:15.010000"],["2024-07-25T12:23:16.010000"],["2024-07-25T12:23:17.010000"],["2024-07-25T12:23:18.010000"],["2024-07-25T12:23:19.010000"],["2024-07-25T12:23:20.010000"],["2024-07-25T12:23:21.010000"],["2024-07-25T12:23:22.010000"],["2024-07-25T12:23:23.010000"],["2024-07-25T12:23:24.010000"],["2024-07-25T12:23:25.010000"],["2024-07-25T12:23:26.010000"],["2024-07-25T12:23:27.010000"],["2024-07-25T12:23:28.010000"],["2024-07-25T12:23:29.010000"],["2024-07-25T12:23:30.010000"],["2024-07-25T12:23:31.010000"],["2024-07-25T12:23:32.010000"],["2024-07-25T12:23:33.010000"],["2024-07-25T12:23:34.010000"],["2024-07-25T12:23:35.010000"],["2024-07-25T12:23:36.010000"],["2024-07-25T12:23:37.010000"],["2024-07-25T12:23:38.010000"],["2024-07-25T12:23:39.010000"],["2024-07-25T12:23:40.010000"],["2024-07-25T12:23:41.010000"],["2024-07-25T12:23:42.010000"],["2024-07-25T12:23:43.010000"],["2024-07-25T12:23:44.010000"],["2024-07-25T12:23:45.010000"],["2024-07-25T12:23:46.010000"],["2024-07-25T12:23:47.010000"],["2024-07-25T12:23:48.010000"],["2024-07-25T12:23:49.010000"],["2024-07-25T12:23:50.010000"],["2024-07-25T12:23:51.010000"],["2024-07-25T12:23:52.010000"],["2024-07-25T12:23:53.010000"],["2024-07-25T12:23:54.010000"],["2024-07-25T12:23:55.010000"],["2024-07-25T12:23:56.010000"],["2024-07-25T12:23:57.010000"],["2024-07-25T12:23:58.010000"],["2024-07-25T12:23:59.010000"],["2024-07-25T12:24:00.010000"],["2024-07-25T12:24:01.010000"],["2024-07-25T12:24:02.010000"],["2024-07-25T12:24:03.010000"],["2024-07-25T12:24:04.010000"],["2024-07-25T12:24:05.010000"],["2024-07-25T12:24:06.010000"],["2024-07-25T12:24:07.010000"],["2024-07-25T12:24:08.010000"],["2024-07-25T12:24:09.010000"],["2024-07-25T12:24:10.010000"],["2024-07-25T12:24:11.010000"],["2024-07-25T12:24:12.010000"],["2024-07-25T12:24:13.010000"],["2024-07-25T12:24:14.010000"],["2024-07-25T12:24:15.010000"],["2024-07-25T12:24:16.010000"],["2024-07-25T12:24:17.010000"],["2024-07-25T12:24:18.010000"],["2024-07-25T12:24:19.010000"],["2024-07-25T12:24:20.010000"],["2024-07-25T12:24:21.010000"],["2024-07-25T12:24:22.010000"],["2024-07-25T12:24:23.010000"],["2024-07-25T12:24:24.010000"],["2024-07-25T12:24:25.010000"],["2024-07-25T12:24:26.010000"],["2024-07-25T12:24:27.010000"],["2024-07-25T12:24:28.010000"],["2024-07-25T12:24:29.010000"],["2024-07-25T12:24:30.010000"],["2024-07-25T12:24:31.010000"],["2024-07-25T12:24:32.010000"],["2024-07-25T12:24:33.010000"],["2024-07-25T12:24:34.010000"],["2024-07-25T12:24:35.010000"],["2024-07-25T12:24:36.010000"],["2024-07-25T12:24:37.010000"],["2024-07-25T12:24:38.010000"],["2024-07-25T12:24:39.010000"],["2024-07-25T12:24:40.010000"],["2024-07-25T12:24:41.010000"],["2024-07-25T12:24:42.010000"],["2024-07-25T12:24:43.010000"],["2024-07-25T12:24:44.010000"],["2024-07-25T12:24:45.010000"],["2024-07-25T12:24:46.010000"],["2024-07-25T12:24:47.010000"],["2024-07-25T12:24:48.010000"],["2024-07-25T12:24:49.010000"],["2024-07-25T12:24:50.010000"],["2024-07-25T12:24:51.010000"],["2024-07-25T12:24:52.010000"],["2024-07-25T12:24:53.010000"],["2024-07-25T12:24:54.010000"],["2024-07-25T12:24:55.010000"],["2024-07-25T12:24:56.010000"],["2024-07-25T12:24:57.010000"],["2024-07-25T12:24:58.010000"],["2024-07-25T12:24:59.010000"],["2024-07-25T12:25:00.010000"],["2024-07-25T12:25:01.010000"],["2024-07-25T12:25:02.010000"],["2024-07-25T12:25:03.010000"],["2024-07-25T12:25:04.010000"],["2024-07-25T12:25:05.010000"],["2024-07-25T12:25:06.010000"],["2024-07-25T12:25:07.010000"],["2024-07-25T12:25:08.010000"],["2024-07-25T12:25:09.010000"],["2024-07-25T12:25:10.010000"],["2024-07-25T12:25:11.010000"],["2024-07-25T12:25:12.010000"],["2024-07-25T12:25:13.010000"],["2024-07-25T12:25:14.010000"],["2024-07-25T12:25:15.010000"],["2024-07-25T12:25:16.010000"],["2024-07-25T12:25:17.010000"],["2024-07-25T12:25:18.010000"],["2024-07-25T12:25:19.010000"],["2024-07-25T12:25:20.010000"],["2024-07-25T12:25:21.010000"],["2024-07-25T12:25:22.010000"],["2024-07-25T12:25:23.010000"],["2024-07-25T12:25:24.010000"],["2024-07-25T12:25:25.010000"],["2024-07-25T12:25:26.010000"],["2024-07-25T12:25:27.010000"],["2024-07-25T12:25:28.010000"],["2024-07-25T12:25:29.010000"],["2024-07-25T12:25:30.010000"],["2024-07-25T12:25:31.010000"],["2024-07-25T12:25:32.010000"],["2024-07-25T12:25:33.010000"],["2024-07-25T12:25:34.010000"],["2024-07-25T12:25:35.010000"],["2024-07-25T12:25:36.010000"],["2024-07-25T12:25:37.010000"],["2024-07-25T12:25:38.010000"],["2024-07-25T12:25:39.010000"],["2024-07-25T12:25:40.010000"],["2024-07-25T12:25:41.010000"],["2024-07-25T12:25:42.010000"],["2024-07-25T12:25:43.010000"],["2024-07-25T12:25:44.010000"],["2024-07-25T12:25:45.010000"],["2024-07-25T12:25:46.010000"],["2024-07-25T12:25:47.010000"],["2024-07-25T12:25:48.010000"],["2024-07-25T12:25:49.010000"],["2024-07-25T12:25:50.010000"],["2024-07-25T12:25:51.010000"],["2024-07-25T12:25:52.010000"],["2024-07-25T12:25:53.010000"],["2024-07-25T12:25:54.010000"],["2024-07-25T12:25:55.010000"],["2024-07-25T12:25:56.010000"],["2024-07-25T12:25:57.010000"],["2024-07-25T12:25:58.010000"],["2024-07-25T12:25:59.010000"],["2024-07-25T12:26:00.010000"],["2024-07-25T12:26:01.010000"],["2024-07-25T12:26:02.010000"],["2024-07-25T12:26:03.010000"],["2024-07-25T12:26:04.010000"],["2024-07-25T12:26:05.010000"],["2024-07-25T12:26:06.010000"],["2024-07-25T12:26:07.010000"],["2024-07-25T12:26:08.010000"],["2024-07-25T12:26:09.010000"],["2024-07-25T12:26:10.010000"],["2024-07-25T12:26:11.010000"],["2024-07-25T12:26:12.010000"],["2024-07-25T12:26:13.010000"],["2024-07-25T12:26:14.010000"],["2024-07-25T12:26:15.010000"],["2024-07-25T12:26:16.010000"],["2024-07-25T12:26:17.010000"],["2024-07-25T12:26:18.010000"],["2024-07-25T12:26:19.010000"],["2024-07-25T12:26:20.010000"],["2024-07-25T12:26:21.010000"],["2024-07-25T12:26:22.010000"],["2024-07-25T12:26:23.010000"],["2024-07-25T12:26:24.010000"],["2024-07-25T12:26:25.010000"],["2024-07-25T12:26:26.010000"],["2024-07-25T12:26:27.010000"],["2024-07-25T12:26:28.010000"],["2024-07-25T12:26:29.010000"],["2024-07-25T12:26:30.010000"],["2024-07-25T12:26:31.010000"],["2024-07-25T12:26:32.010000"],["2024-07-25T12:26:33.010000"],["2024-07-25T12:26:34.010000"],["2024-07-25T12:26:35.010000"],["2024-07-25T12:26:36.010000"],["2024-07-25T12:26:37.010000"],["2024-07-25T12:26:38.010000"],["2024-07-25T12:26:39.010000"],["2024-07-25T12:26:40.010000"],["2024-07-25T12:26:41.010000"],["2024-07-25T12:26:42.010000"],["2024-07-25T12:26:43.010000"],["2024-07-25T12:26:44.010000"],["2024-07-25T12:26:45.010000"],["2024-07-25T12:26:46.010000"],["2024-07-25T12:26:47.010000"],["2024-07-25T12:26:48.010000"],["2024-07-25T12:26:49.010000"],["2024-07-25T12:26:50.010000"],["2024-07-25T12:26:51.010000"],["2024-07-25T12:26:52.010000"],["2024-07-25T12:26:53.010000"],["2024-07-25T12:26:54.010000"],["2024-07-25T12:26:55.010000"],["2024-07-25T12:26:56.010000"],["2024-07-25T12:26:57.010000"],["2024-07-25T12:26:58.010000"],["2024-07-25T12:26:59.010000"],["2024-07-25T12:27:00.010000"],["2024-07-25T12:27:01.010000"],["2024-07-25T12:27:02.010000"],["2024-07-25T12:27:03.010000"],["2024-07-25T12:27:04.010000"],["2024-07-25T12:27:05.010000"],["2024-07-25T12:27:06.010000"],["2024-07-25T12:27:07.010000"],["2024-07-25T12:27:08.010000"],["2024-07-25T12:27:09.010000"],["2024-07-25T12:27:10.010000"],["2024-07-25T12:27:11.010000"],["2024-07-25T12:27:12.010000"],["2024-07-25T12:27:13.010000"],["2024-07-25T12:27:14.010000"],["2024-07-25T12:27:15.010000"],["2024-07-25T12:27:16.010000"],["2024-07-25T12:27:17.010000"],["2024-07-25T12:27:18.010000"],["2024-07-25T12:27:19.010000"],["2024-07-25T12:27:20.010000"],["2024-07-25T12:27:21.010000"],["2024-07-25T12:27:22.010000"],["2024-07-25T12:27:23.010000"],["2024-07-25T12:27:24.010000"],["2024-07-25T12:27:25.010000"],["2024-07-25T12:27:26.010000"],["2024-07-25T12:27:27.010000"],["2024-07-25T12:27:28.010000"],["2024-07-25T12:27:29.010000"],["2024-07-25T12:27:30.010000"],["2024-07-25T12:27:31.010000"],["2024-07-25T12:27:32.010000"],["2024-07-25T12:27:33.010000"],["2024-07-25T12:27:34.010000"],["2024-07-25T12:27:35.010000"],["2024-07-25T12:27:36.010000"],["2024-07-25T12:27:37.010000"],["2024-07-25T12:27:38.010000"],["2024-07-25T12:27:39.010000"],["2024-07-25T12:27:40.010000"],["2024-07-25T12:27:41.010000"],["2024-07-25T12:27:42.010000"],["2024-07-25T12:27:43.010000"],["2024-07-25T12:27:44.010000"],["2024-07-25T12:27:45.010000"],["2024-07-25T12:27:46.010000"],["2024-07-25T12:27:47.010000"],["2024-07-25T12:27:48.010000"],["2024-07-25T12:27:49.010000"],["2024-07-25T12:27:50.010000"],["2024-07-25T12:27:51.010000"],["2024-07-25T12:27:52.010000"],["2024-07-25T12:27:53.010000"],["2024-07-25T12:27:54.010000"],["2024-07-25T12:27:55.010000"],["2024-07-25T12:27:56.010000"],["2024-07-25T12:27:57.010000"],["2024-07-25T12:27:58.010000"],["2024-07-25T12:27:59.010000"],["2024-07-25T12:28:00.010000"],["2024-07-25T12:28:01.010000"],["2024-07-25T12:28:02.010000"],["2024-07-25T12:28:03.010000"],["2024-07-25T12:28:04.010000"],["2024-07-25T12:28:05.010000"],["2024-07-25T12:28:06.010000"],["2024-07-25T12:28:07.010000"],["2024-07-25T12:28:08.010000"],["2024-07-25T12:28:09.010000"],["2024-07-25T12:28:10.010000"],["2024-07-25T12:28:11.010000"],["2024-07-25T12:28:12.010000"],["2024-07-25T12:28:13.010000"],["2024-07-25T12:28:14.010000"],["2024-07-25T12:28:15.010000"],["2024-07-25T12:28:16.010000"],["2024-07-25T12:28:17.010000"],["2024-07-25T12:28:18.010000"],["2024-07-25T12:28:19.010000"],["2024-07-25T12:28:20.010000"],["2024-07-25T12:28:21.010000"],["2024-07-25T12:28:22.010000"],["2024-07-25T12:28:23.010000"],["2024-07-25T12:28:24.010000"],["2024-07-25T12:28:25.010000"],["2024-07-25T12:28:26.010000"],["2024-07-25T12:28:27.010000"],["2024-07-25T12:28:28.010000"],["2024-07-25T12:28:29.010000"],["2024-07-25T12:28:30.010000"],["2024-07-25T12:28:31.010000"],["2024-07-25T12:28:32.010000"],["2024-07-25T12:28:33.010000"],["2024-07-25T12:28:34.010000"],["2024-07-25T12:28:35.010000"],["2024-07-25T12:28:36.010000"],["2024-07-25T12:28:37.010000"],["2024-07-25T12:28:38.010000"],["2024-07-25T12:28:39.010000"],["2024-07-25T12:28:40.010000"],["2024-07-25T12:28:41.010000"],["2024-07-25T12:28:42.010000"],["2024-07-25T12:28:43.010000"],["2024-07-25T12:28:44.010000"],["2024-07-25T12:28:45.010000"],["2024-07-25T12:28:46.010000"],["2024-07-25T12:28:47.010000"],["2024-07-25T12:28:48.010000"],["2024-07-25T12:28:49.010000"],["2024-07-25T12:28:50.010000"],["2024-07-25T12:28:51.010000"],["2024-07-25T12:28:52.010000"],["2024-07-25T12:28:53.010000"],["2024-07-25T12:28:54.010000"],["2024-07-25T12:28:55.010000"],["2024-07-25T12:28:56.010000"],["2024-07-25T12:28:57.010000"],["2024-07-25T12:28:58.010000"],["2024-07-25T12:28:59.010000"],["2024-07-25T12:29:00.010000"],["2024-07-25T12:29:01.010000"],["2024-07-25T12:29:02.010000"],["2024-07-25T12:29:03.010000"],["2024-07-25T12:29:04.010000"],["2024-07-25T12:29:05.010000"],["2024-07-25T12:29:06.010000"],["2024-07-25T12:29:07.010000"],["2024-07-25T12:29:08.010000"],["2024-07-25T12:29:09.010000"],["2024-07-25T12:29:10.010000"],["2024-07-25T12:29:11.010000"],["2024-07-25T12:29:12.010000"],["2024-07-25T12:29:13.010000"],["2024-07-25T12:29:14.010000"],["2024-07-25T12:29:15.010000"],["2024-07-25T12:29:16.010000"],["2024-07-25T12:29:17.010000"],["2024-07-25T12:29:18.010000"],["2024-07-25T12:29:19.010000"],["2024-07-25T12:29:20.010000"],["2024-07-25T12:29:21.010000"],["2024-07-25T12:29:22.010000"],["2024-07-25T12:29:23.010000"],["2024-07-25T12:29:24.010000"],["2024-07-25T12:29:25.010000"],["2024-07-25T12:29:26.010000"],["2024-07-25T12:29:27.010000"],["2024-07-25T12:29:28.010000"],["2024-07-25T12:29:29.010000"],["2024-07-25T12:29:30.010000"],["2024-07-25T12:29:31.010000"],["2024-07-25T12:29:32.010000"],["2024-07-25T12:29:33.010000"],["2024-07-25T12:29:34.010000"],["2024-07-25T12:29:35.010000"],["2024-07-25T12:29:36.010000"],["2024-07-25T12:29:37.010000"],["2024-07-25T12:29:38.010000"],["2024-07-25T12:29:39.010000"],["2024-07-25T12:29:40.010000"],["2024-07-25T12:29:41.010000"],["2024-07-25T12:29:42.010000"],["2024-07-25T12:29:43.010000"],["2024-07-25T12:29:44.010000"],["2024-07-25T12:29:45.010000"],["2024-07-25T12:29:46.010000"],["2024-07-25T12:29:47.010000"],["2024-07-25T12:29:48.010000"],["2024-07-25T12:29:49.010000"],["2024-07-25T12:29:50.010000"],["2024-07-25T12:29:51.010000"],["2024-07-25T12:29:52.010000"],["2024-07-25T12:29:53.010000"],["2024-07-25T12:29:54.010000"],["2024-07-25T12:29:55.010000"],["2024-07-25T12:29:56.010000"],["2024-07-25T12:29:57.010000"],["2024-07-25T12:29:58.010000"],["2024-07-25T12:29:59.010000"],["2024-07-25T12:30:00.010000"],["2024-07-25T12:30:01.010000"],["2024-07-25T12:30:02.010000"],["2024-07-25T12:30:03.010000"],["2024-07-25T12:30:04.010000"],["2024-07-25T12:30:05.010000"],["2024-07-25T12:30:06.010000"],["2024-07-25T12:30:07.010000"],["2024-07-25T12:30:08.010000"],["2024-07-25T12:30:09.010000"],["2024-07-25T12:30:10.010000"],["2024-07-25T12:30:11.010000"],["2024-07-25T12:30:12.010000"],["2024-07-25T12:30:13.010000"],["2024-07-25T12:30:14.010000"],["2024-07-25T12:30:15.010000"],["2024-07-25T12:30:16.010000"],["2024-07-25T12:30:17.010000"],["2024-07-25T12:30:18.010000"],["2024-07-25T12:30:19.010000"],["2024-07-25T12:30:20.010000"],["2024-07-25T12:30:21.010000"],["2024-07-25T12:30:22.010000"],["2024-07-25T12:30:23.010000"],["2024-07-25T12:30:24.010000"],["2024-07-25T12:30:25.010000"],["2024-07-25T12:30:26.010000"],["2024-07-25T12:30:27.010000"],["2024-07-25T12:30:28.010000"],["2024-07-25T12:30:29.010000"],["2024-07-25T12:30:30.010000"],["2024-07-25T12:30:31.010000"],["2024-07-25T12:30:32.010000"],["2024-07-25T12:30:33.010000"],["2024-07-25T12:30:34.010000"],["2024-07-25T12:30:35.010000"],["2024-07-25T12:30:36.010000"],["2024-07-25T12:30:37.010000"],["2024-07-25T12:30:38.010000"],["2024-07-25T12:30:39.010000"],["2024-07-25T12:30:40.010000"],["2024-07-25T12:30:41.010000"],["2024-07-25T12:30:42.010000"],["2024-07-25T12:30:43.010000"],["2024-07-25T12:30:44.010000"],["2024-07-25T12:30:45.010000"],["2024-07-25T12:30:46.010000"],["2024-07-25T12:30:47.010000"],["2024-07-25T12:30:48.010000"],["2024-07-25T12:30:49.010000"],["2024-07-25T12:30:50.010000"],["2024-07-25T12:30:51.010000"],["2024-07-25T12:30:52.010000"],["2024-07-25T12:30:53.010000"],["2024-07-25T12:30:54.010000"],["2024-07-25T12:30:55.010000"],["2024-07-25T12:30:56.010000"],["2024-07-25T12:30:57.010000"],["2024-07-25T12:30:58.010000"],["2024-07-25T12:30:59.010000"],["2024-07-25T12:31:00.010000"],["2024-07-25T12:31:01.010000"],["2024-07-25T12:31:02.010000"],["2024-07-25T12:31:03.010000"],["2024-07-25T12:31:04.010000"],["2024-07-25T12:31:05.010000"],["2024-07-25T12:31:06.010000"],["2024-07-25T12:31:07.010000"],["2024-07-25T12:31:08.010000"],["2024-07-25T12:31:09.010000"],["2024-07-25T12:31:10.010000"],["2024-07-25T12:31:11.010000"],["2024-07-25T12:31:12.010000"],["2024-07-25T12:31:13.010000"],["2024-07-25T12:31:14.010000"],["2024-07-25T12:31:15.010000"],["2024-07-25T12:31:16.010000"],["2024-07-25T12:31:17.010000"],["2024-07-25T12:31:18.010000"],["2024-07-25T12:31:19.010000"],["2024-07-25T12:31:20.010000"],["2024-07-25T12:31:21.010000"],["2024-07-25T12:31:22.010000"],["2024-07-25T12:31:23.010000"],["2024-07-25T12:31:24.010000"],["2024-07-25T12:31:25.010000"],["2024-07-25T12:31:26.010000"],["2024-07-25T12:31:27.010000"],["2024-07-25T12:31:28.010000"],["2024-07-25T12:31:29.010000"],["2024-07-25T12:31:30.010000"],["2024-07-25T12:31:31.010000"],["2024-07-25T12:31:32.010000"],["2024-07-25T12:31:33.010000"],["2024-07-25T12:31:34.010000"],["2024-07-25T12:31:35.010000"],["2024-07-25T12:31:36.010000"],["2024-07-25T12:31:37.010000"],["2024-07-25T12:31:38.010000"],["2024-07-25T12:31:39.010000"],["2024-07-25T12:31:40.010000"],["2024-07-25T12:31:41.010000"],["2024-07-25T12:31:42.010000"],["2024-07-25T12:31:43.010000"],["2024-07-25T12:31:44.010000"],["2024-07-25T12:31:45.010000"],["2024-07-25T12:31:46.010000"],["2024-07-25T12:31:47.010000"],["2024-07-25T12:31:48.010000"],["2024-07-25T12:31:49.010000"],["2024-07-25T12:31:50.010000"],["2024-07-25T12:31:51.010000"],["2024-07-25T12:31:52.010000"],["2024-07-25T12:31:53.010000"],["2024-07-25T12:31:54.010000"],["2024-07-25T12:31:55.010000"],["2024-07-25T12:31:56.010000"],["2024-07-25T12:31:57.010000"],["2024-07-25T12:31:58.010000"],["2024-07-25T12:31:59.010000"],["2024-07-25T12:32:00.010000"],["2024-07-25T12:32:01.010000"],["2024-07-25T12:32:02.010000"],["2024-07-25T12:32:03.010000"],["2024-07-25T12:32:04.010000"],["2024-07-25T12:32:05.010000"],["2024-07-25T12:32:06.010000"],["2024-07-25T12:32:07.010000"],["2024-07-25T12:32:08.010000"],["2024-07-25T12:32:09.010000"],["2024-07-25T12:32:10.010000"],["2024-07-25T12:32:11.010000"],["2024-07-25T12:32:12.010000"],["2024-07-25T12:32:13.010000"],["2024-07-25T12:32:14.010000"],["2024-07-25T12:32:15.010000"],["2024-07-25T12:32:16.010000"],["2024-07-25T12:32:17.010000"],["2024-07-25T12:32:18.010000"],["2024-07-25T12:32:19.010000"],["2024-07-25T12:32:20.010000"],["2024-07-25T12:32:21.010000"],["2024-07-25T12:32:22.010000"],["2024-07-25T12:32:23.010000"],["2024-07-25T12:32:24.010000"],["2024-07-25T12:32:25.010000"],["2024-07-25T12:32:26.010000"],["2024-07-25T12:32:27.010000"],["2024-07-25T12:32:28.010000"],["2024-07-25T12:32:29.010000"],["2024-07-25T12:32:30.010000"],["2024-07-25T12:32:31.010000"],["2024-07-25T12:32:32.010000"],["2024-07-25T12:32:33.010000"],["2024-07-25T12:32:34.010000"],["2024-07-25T12:32:35.010000"],["2024-07-25T12:32:36.010000"],["2024-07-25T12:32:37.010000"],["2024-07-25T12:32:38.010000"],["2024-07-25T12:32:39.010000"],["2024-07-25T12:32:40.010000"],["2024-07-25T12:32:41.010000"],["2024-07-25T12:32:42.010000"],["2024-07-25T12:32:43.010000"],["2024-07-25T12:32:44.010000"],["2024-07-25T12:32:45.010000"],["2024-07-25T12:32:46.010000"],["2024-07-25T12:32:47.010000"],["2024-07-25T12:32:48.010000"],["2024-07-25T12:32:49.010000"],["2024-07-25T12:32:50.010000"],["2024-07-25T12:32:51.010000"],["2024-07-25T12:32:52.010000"],["2024-07-25T12:32:53.010000"],["2024-07-25T12:32:54.010000"],["2024-07-25T12:32:55.010000"],["2024-07-25T12:32:56.010000"],["2024-07-25T12:32:57.010000"],["2024-07-25T12:32:58.010000"],["2024-07-25T12:32:59.010000"],["2024-07-25T12:33:00.010000"],["2024-07-25T12:33:01.010000"],["2024-07-25T12:33:02.010000"],["2024-07-25T12:33:03.010000"],["2024-07-25T12:33:04.010000"],["2024-07-25T12:33:05.010000"],["2024-07-25T12:33:06.010000"],["2024-07-25T12:33:07.010000"],["2024-07-25T12:33:08.010000"],["2024-07-25T12:33:09.010000"],["2024-07-25T12:33:10.010000"],["2024-07-25T12:33:11.010000"],["2024-07-25T12:33:12.010000"],["2024-07-25T12:33:13.010000"],["2024-07-25T12:33:14.010000"],["2024-07-25T12:33:15.010000"],["2024-07-25T12:33:16.010000"],["2024-07-25T12:33:17.010000"],["2024-07-25T12:33:18.010000"],["2024-07-25T12:33:19.010000"],["2024-07-25T12:33:20.010000"],["2024-07-25T12:33:21.010000"],["2024-07-25T12:33:22.010000"],["2024-07-25T12:33:23.010000"],["2024-07-25T12:33:24.010000"],["2024-07-25T12:33:25.010000"],["2024-07-25T12:33:26.010000"],["2024-07-25T12:33:27.010000"],["2024-07-25T12:33:28.010000"],["2024-07-25T12:33:29.010000"],["2024-07-25T12:33:30.010000"],["2024-07-25T12:33:31.010000"],["2024-07-25T12:33:32.010000"],["2024-07-25T12:33:33.010000"],["2024-07-25T12:33:34.010000"],["2024-07-25T12:33:35.010000"],["2024-07-25T12:33:36.010000"],["2024-07-25T12:33:37.010000"],["2024-07-25T12:33:38.010000"],["2024-07-25T12:33:39.010000"],["2024-07-25T12:33:40.010000"],["2024-07-25T12:33:41.010000"],["2024-07-25T12:33:42.010000"],["2024-07-25T12:33:43.010000"],["2024-07-25T12:33:44.010000"],["2024-07-25T12:33:45.010000"],["2024-07-25T12:33:46.010000"],["2024-07-25T12:33:47.010000"],["2024-07-25T12:33:48.010000"],["2024-07-25T12:33:49.010000"],["2024-07-25T12:33:50.010000"],["2024-07-25T12:33:51.010000"],["2024-07-25T12:33:52.010000"],["2024-07-25T12:33:53.010000"],["2024-07-25T12:33:54.010000"],["2024-07-25T12:33:55.010000"],["2024-07-25T12:33:56.010000"],["2024-07-25T12:33:57.010000"],["2024-07-25T12:33:58.010000"],["2024-07-25T12:33:59.010000"],["2024-07-25T12:34:00.010000"],["2024-07-25T12:34:01.010000"],["2024-07-25T12:34:02.010000"],["2024-07-25T12:34:03.010000"],["2024-07-25T12:34:04.010000"],["2024-07-25T12:34:05.010000"],["2024-07-25T12:34:06.010000"],["2024-07-25T12:34:07.010000"],["2024-07-25T12:34:08.010000"],["2024-07-25T12:34:09.010000"],["2024-07-25T12:34:10.010000"],["2024-07-25T12:34:11.010000"],["2024-07-25T12:34:12.010000"],["2024-07-25T12:34:13.010000"],["2024-07-25T12:34:14.010000"],["2024-07-25T12:34:15.010000"],["2024-07-25T12:34:16.010000"],["2024-07-25T12:34:17.010000"],["2024-07-25T12:34:18.010000"],["2024-07-25T12:34:19.010000"],["2024-07-25T12:34:20.010000"],["2024-07-25T12:34:21.010000"],["2024-07-25T12:34:22.010000"],["2024-07-25T12:34:23.010000"],["2024-07-25T12:34:24.010000"],["2024-07-25T12:34:25.010000"],["2024-07-25T12:34:26.010000"],["2024-07-25T12:34:27.010000"],["2024-07-25T12:34:28.010000"],["2024-07-25T12:34:29.010000"],["2024-07-25T12:34:30.010000"],["2024-07-25T12:34:31.010000"],["2024-07-25T12:34:32.010000"],["2024-07-25T12:34:33.010000"],["2024-07-25T12:34:34.010000"],["2024-07-25T12:34:35.010000"],["2024-07-25T12:34:36.010000"],["2024-07-25T12:34:37.010000"],["2024-07-25T12:34:38.010000"],["2024-07-25T12:34:39.010000"],["2024-07-25T12:34:40.010000"],["2024-07-25T12:34:41.010000"],["2024-07-25T12:34:42.010000"],["2024-07-25T12:34:43.010000"],["2024-07-25T12:34:44.010000"],["2024-07-25T12:34:45.010000"],["2024-07-25T12:34:46.010000"],["2024-07-25T12:34:47.010000"],["2024-07-25T12:34:48.010000"],["2024-07-25T12:34:49.010000"],["2024-07-25T12:34:50.010000"],["2024-07-25T12:34:51.010000"],["2024-07-25T12:34:52.010000"],["2024-07-25T12:34:53.010000"],["2024-07-25T12:34:54.010000"],["2024-07-25T12:34:55.010000"],["2024-07-25T12:34:56.010000"],["2024-07-25T12:34:57.010000"],["2024-07-25T12:34:58.010000"],["2024-07-25T12:34:59.010000"],["2024-07-25T12:35:00.010000"],["2024-07-25T12:35:01.010000"],["2024-07-25T12:35:02.010000"],["2024-07-25T12:35:03.010000"],["2024-07-25T12:35:04.010000"],["2024-07-25T12:35:05.010000"],["2024-07-25T12:35:06.010000"],["2024-07-25T12:35:07.010000"],["2024-07-25T12:35:08.010000"],["2024-07-25T12:35:09.010000"],["2024-07-25T12:35:10.010000"],["2024-07-25T12:35:11.010000"],["2024-07-25T12:35:12.010000"],["2024-07-25T12:35:13.010000"],["2024-07-25T12:35:14.010000"],["2024-07-25T12:35:15.010000"],["2024-07-25T12:35:16.010000"],["2024-07-25T12:35:17.010000"],["2024-07-25T12:35:18.010000"],["2024-07-25T12:35:19.010000"],["2024-07-25T12:35:20.010000"],["2024-07-25T12:35:21.010000"],["2024-07-25T12:35:22.010000"],["2024-07-25T12:35:23.010000"],["2024-07-25T12:35:24.010000"],["2024-07-25T12:35:25.010000"],["2024-07-25T12:35:26.010000"],["2024-07-25T12:35:27.010000"],["2024-07-25T12:35:28.010000"],["2024-07-25T12:35:29.010000"],["2024-07-25T12:35:30.010000"],["2024-07-25T12:35:31.010000"],["2024-07-25T12:35:32.010000"],["2024-07-25T12:35:33.010000"],["2024-07-25T12:35:34.010000"],["2024-07-25T12:35:35.010000"],["2024-07-25T12:35:36.010000"],["2024-07-25T12:35:37.010000"],["2024-07-25T12:35:38.010000"],["2024-07-25T12:35:39.010000"],["2024-07-25T12:35:40.010000"],["2024-07-25T12:35:41.010000"],["2024-07-25T12:35:42.010000"],["2024-07-25T12:35:43.010000"],["2024-07-25T12:35:44.010000"],["2024-07-25T12:35:45.010000"],["2024-07-25T12:35:46.010000"],["2024-07-25T12:35:47.010000"],["2024-07-25T12:35:48.010000"],["2024-07-25T12:35:49.010000"],["2024-07-25T12:35:50.010000"],["2024-07-25T12:35:51.010000"],["2024-07-25T12:35:52.010000"],["2024-07-25T12:35:53.010000"],["2024-07-25T12:35:54.010000"],["2024-07-25T12:35:55.010000"],["2024-07-25T12:35:56.010000"],["2024-07-25T12:35:57.010000"],["2024-07-25T12:35:58.010000"],["2024-07-25T12:35:59.010000"],["2024-07-25T12:36:00.010000"],["2024-07-25T12:36:01.010000"],["2024-07-25T12:36:02.010000"],["2024-07-25T12:36:03.010000"],["2024-07-25T12:36:04.010000"],["2024-07-25T12:36:05.010000"],["2024-07-25T12:36:06.010000"],["2024-07-25T12:36:07.010000"],["2024-07-25T12:36:08.010000"],["2024-07-25T12:36:09.010000"],["2024-07-25T12:36:10.010000"],["2024-07-25T12:36:11.010000"],["2024-07-25T12:36:12.010000"],["2024-07-25T12:36:13.010000"],["2024-07-25T12:36:14.010000"],["2024-07-25T12:36:15.010000"],["2024-07-25T12:36:16.010000"],["2024-07-25T12:36:17.010000"],["2024-07-25T12:36:18.010000"],["2024-07-25T12:36:19.010000"],["2024-07-25T12:36:20.010000"],["2024-07-25T12:36:21.010000"],["2024-07-25T12:36:22.010000"],["2024-07-25T12:36:23.010000"],["2024-07-25T12:36:24.010000"],["2024-07-25T12:36:25.010000"],["2024-07-25T12:36:26.010000"],["2024-07-25T12:36:27.010000"],["2024-07-25T12:36:28.010000"],["2024-07-25T12:36:29.010000"],["2024-07-25T12:36:30.010000"],["2024-07-25T12:36:31.010000"],["2024-07-25T12:36:32.010000"],["2024-07-25T12:36:33.010000"],["2024-07-25T12:36:34.010000"],["2024-07-25T12:36:35.010000"],["2024-07-25T12:36:36.010000"],["2024-07-25T12:36:37.010000"],["2024-07-25T12:36:38.010000"],["2024-07-25T12:36:39.010000"],["2024-07-25T12:36:40.010000"],["2024-07-25T12:36:41.010000"],["2024-07-25T12:36:42.010000"],["2024-07-25T12:36:43.010000"],["2024-07-25T12:36:44.010000"],["2024-07-25T12:36:45.010000"],["2024-07-25T12:36:46.010000"],["2024-07-25T12:36:47.010000"],["2024-07-25T12:36:48.010000"],["2024-07-25T12:36:49.010000"],["2024-07-25T12:36:50.010000"],["2024-07-25T12:36:51.010000"],["2024-07-25T12:36:52.010000"],["2024-07-25T12:36:53.010000"],["2024-07-25T12:36:54.010000"],["2024-07-25T12:36:55.010000"],["2024-07-25T12:36:56.010000"],["2024-07-25T12:36:57.010000"],["2024-07-25T12:36:58.010000"],["2024-07-25T12:36:59.010000"],["2024-07-25T12:37:00.010000"],["2024-07-25T12:37:01.010000"],["2024-07-25T12:37:02.010000"],["2024-07-25T12:37:03.010000"],["2024-07-25T12:37:04.010000"],["2024-07-25T12:37:05.010000"],["2024-07-25T12:37:06.010000"],["2024-07-25T12:37:07.010000"],["2024-07-25T12:37:08.010000"],["2024-07-25T12:37:09.010000"],["2024-07-25T12:37:10.010000"],["2024-07-25T12:37:11.010000"],["2024-07-25T12:37:12.010000"],["2024-07-25T12:37:13.010000"],["2024-07-25T12:37:14.010000"],["2024-07-25T12:37:15.010000"],["2024-07-25T12:37:16.010000"],["2024-07-25T12:37:17.010000"],["2024-07-25T12:37:18.010000"],["2024-07-25T12:37:19.010000"],["2024-07-25T12:37:20.010000"],["2024-07-25T12:37:21.010000"],["2024-07-25T12:37:22.010000"],["2024-07-25T12:37:23.010000"],["2024-07-25T12:37:24.010000"],["2024-07-25T12:37:25.010000"],["2024-07-25T12:37:26.010000"],["2024-07-25T12:37:27.010000"],["2024-07-25T12:37:28.010000"],["2024-07-25T12:37:29.010000"],["2024-07-25T12:37:30.010000"],["2024-07-25T12:37:31.010000"],["2024-07-25T12:37:32.010000"],["2024-07-25T12:37:33.010000"],["2024-07-25T12:37:34.010000"],["2024-07-25T12:37:35.010000"],["2024-07-25T12:37:36.010000"],["2024-07-25T12:37:37.010000"],["2024-07-25T12:37:38.010000"],["2024-07-25T12:37:39.010000"],["2024-07-25T12:37:40.010000"],["2024-07-25T12:37:41.010000"],["2024-07-25T12:37:42.010000"],["2024-07-25T12:37:43.010000"],["2024-07-25T12:37:44.010000"],["2024-07-25T12:37:45.010000"],["2024-07-25T12:37:46.010000"],["2024-07-25T12:37:47.010000"],["2024-07-25T12:37:48.010000"],["2024-07-25T12:37:49.010000"],["2024-07-25T12:37:50.010000"],["2024-07-25T12:37:51.010000"],["2024-07-25T12:37:52.010000"],["2024-07-25T12:37:53.010000"],["2024-07-25T12:37:54.010000"],["2024-07-25T12:37:55.010000"],["2024-07-25T12:37:56.010000"],["2024-07-25T12:37:57.010000"],["2024-07-25T12:37:58.010000"],["2024-07-25T12:37:59.010000"],["2024-07-25T12:38:00.010000"],["2024-07-25T12:38:01.010000"],["2024-07-25T12:38:02.010000"],["2024-07-25T12:38:03.010000"],["2024-07-25T12:38:04.010000"],["2024-07-25T12:38:05.010000"],["2024-07-25T12:38:06.010000"],["2024-07-25T12:38:07.010000"],["2024-07-25T12:38:08.010000"],["2024-07-25T12:38:09.010000"],["2024-07-25T12:38:10.010000"],["2024-07-25T12:38:11.010000"],["2024-07-25T12:38:12.010000"],["2024-07-25T12:38:13.010000"],["2024-07-25T12:38:14.010000"],["2024-07-25T12:38:15.010000"],["2024-07-25T12:38:16.010000"],["2024-07-25T12:38:17.010000"],["2024-07-25T12:38:18.010000"],["2024-07-25T12:38:19.010000"],["2024-07-25T12:38:20.010000"],["2024-07-25T12:38:21.010000"],["2024-07-25T12:38:22.010000"],["2024-07-25T12:38:23.010000"],["2024-07-25T12:38:24.010000"],["2024-07-25T12:38:25.010000"],["2024-07-25T12:38:26.010000"],["2024-07-25T12:38:27.010000"],["2024-07-25T12:38:28.010000"],["2024-07-25T12:38:29.010000"],["2024-07-25T12:38:30.010000"],["2024-07-25T12:38:31.010000"],["2024-07-25T12:38:32.010000"],["2024-07-25T12:38:33.010000"],["2024-07-25T12:38:34.010000"],["2024-07-25T12:38:35.010000"],["2024-07-25T12:38:36.010000"],["2024-07-25T12:38:37.010000"],["2024-07-25T12:38:38.010000"],["2024-07-25T12:38:39.010000"],["2024-07-25T12:38:40.010000"],["2024-07-25T12:38:41.010000"],["2024-07-25T12:38:42.010000"],["2024-07-25T12:38:43.010000"],["2024-07-25T12:38:44.010000"],["2024-07-25T12:38:45.010000"],["2024-07-25T12:38:46.010000"],["2024-07-25T12:38:47.010000"],["2024-07-25T12:38:48.010000"],["2024-07-25T12:38:49.010000"],["2024-07-25T12:38:50.010000"],["2024-07-25T12:38:51.010000"],["2024-07-25T12:38:52.010000"],["2024-07-25T12:38:53.010000"],["2024-07-25T12:38:54.010000"],["2024-07-25T12:38:55.010000"],["2024-07-25T12:38:56.010000"],["2024-07-25T12:38:57.010000"],["2024-07-25T12:38:58.010000"],["2024-07-25T12:38:59.010000"],["2024-07-25T12:39:00.010000"],["2024-07-25T12:39:01.010000"],["2024-07-25T12:39:02.010000"],["2024-07-25T12:39:03.010000"],["2024-07-25T12:39:04.010000"],["2024-07-25T12:39:05.010000"],["2024-07-25T12:39:06.010000"],["2024-07-25T12:39:07.010000"],["2024-07-25T12:39:08.010000"],["2024-07-25T12:39:09.010000"],["2024-07-25T12:39:10.010000"],["2024-07-25T12:39:11.010000"],["2024-07-25T12:39:12.010000"],["2024-07-25T12:39:13.010000"],["2024-07-25T12:39:14.010000"],["2024-07-25T12:39:15.010000"],["2024-07-25T12:39:16.010000"],["2024-07-25T12:39:17.010000"],["2024-07-25T12:39:18.010000"],["2024-07-25T12:39:19.010000"],["2024-07-25T12:39:20.010000"],["2024-07-25T12:39:21.010000"],["2024-07-25T12:39:22.010000"],["2024-07-25T12:39:23.010000"],["2024-07-25T12:39:24.010000"],["2024-07-25T12:39:25.010000"],["2024-07-25T12:39:26.010000"],["2024-07-25T12:39:27.010000"],["2024-07-25T12:39:28.010000"],["2024-07-25T12:39:29.010000"],["2024-07-25T12:39:30.010000"],["2024-07-25T12:39:31.010000"],["2024-07-25T12:39:32.010000"],["2024-07-25T12:39:33.010000"],["2024-07-25T12:39:34.010000"],["2024-07-25T12:39:35.010000"],["2024-07-25T12:39:36.010000"],["2024-07-25T12:39:37.010000"],["2024-07-25T12:39:38.010000"],["2024-07-25T12:39:39.010000"],["2024-07-25T12:39:40.010000"],["2024-07-25T12:39:41.010000"],["2024-07-25T12:39:42.010000"],["2024-07-25T12:39:43.010000"],["2024-07-25T12:39:44.010000"],["2024-07-25T12:39:45.010000"],["2024-07-25T12:39:46.010000"],["2024-07-25T12:39:47.010000"],["2024-07-25T12:39:48.010000"],["2024-07-25T12:39:49.010000"],["2024-07-25T12:39:50.010000"],["2024-07-25T12:39:51.010000"],["2024-07-25T12:39:52.010000"],["2024-07-25T12:39:53.010000"],["2024-07-25T12:39:54.010000"],["2024-07-25T12:39:55.010000"],["2024-07-25T12:39:56.010000"],["2024-07-25T12:39:57.010000"],["2024-07-25T12:39:58.010000"],["2024-07-25T12:39:59.010000"],["2024-07-25T12:40:00.010000"],["2024-07-25T12:40:01.010000"],["2024-07-25T12:40:02.010000"],["2024-07-25T12:40:03.010000"],["2024-07-25T12:40:04.010000"],["2024-07-25T12:40:05.010000"],["2024-07-25T12:40:06.010000"],["2024-07-25T12:40:07.010000"],["2024-07-25T12:40:08.010000"],["2024-07-25T12:40:09.010000"],["2024-07-25T12:40:10.010000"],["2024-07-25T12:40:11.010000"],["2024-07-25T12:40:12.010000"],["2024-07-25T12:40:13.010000"],["2024-07-25T12:40:14.010000"],["2024-07-25T12:40:15.010000"],["2024-07-25T12:40:16.010000"],["2024-07-25T12:40:17.010000"],["2024-07-25T12:40:18.010000"],["2024-07-25T12:40:19.010000"],["2024-07-25T12:40:20.010000"],["2024-07-25T12:40:21.010000"],["2024-07-25T12:40:22.010000"],["2024-07-25T12:40:23.010000"],["2024-07-25T12:40:24.010000"],["2024-07-25T12:40:25.010000"],["2024-07-25T12:40:26.010000"],["2024-07-25T12:40:27.010000"],["2024-07-25T12:40:28.010000"],["2024-07-25T12:40:29.010000"],["2024-07-25T12:40:30.010000"],["2024-07-25T12:40:31.010000"],["2024-07-25T12:40:32.010000"],["2024-07-25T12:40:33.010000"],["2024-07-25T12:40:34.010000"],["2024-07-25T12:40:35.010000"],["2024-07-25T12:40:36.010000"],["2024-07-25T12:40:37.010000"],["2024-07-25T12:40:38.010000"],["2024-07-25T12:40:39.010000"],["2024-07-25T12:40:40.010000"],["2024-07-25T12:40:41.010000"],["2024-07-25T12:40:42.010000"],["2024-07-25T12:40:43.010000"],["2024-07-25T12:40:44.010000"],["2024-07-25T12:40:45.010000"],["2024-07-25T12:40:46.010000"],["2024-07-25T12:40:47.010000"],["2024-07-25T12:40:48.010000"],["2024-07-25T12:40:49.010000"],["2024-07-25T12:40:50.010000"],["2024-07-25T12:40:51.010000"],["2024-07-25T12:40:52.010000"],["2024-07-25T12:40:53.010000"],["2024-07-25T12:40:54.010000"],["2024-07-25T12:40:55.010000"],["2024-07-25T12:40:56.010000"],["2024-07-25T12:40:57.010000"],["2024-07-25T12:40:58.010000"],["2024-07-25T12:40:59.010000"],["2024-07-25T12:41:00.010000"],["2024-07-25T12:41:01.010000"],["2024-07-25T12:41:02.010000"],["2024-07-25T12:41:03.010000"],["2024-07-25T12:41:04.010000"],["2024-07-25T12:41:05.010000"],["2024-07-25T12:41:06.010000"],["2024-07-25T12:41:07.010000"],["2024-07-25T12:41:08.010000"],["2024-07-25T12:41:09.010000"],["2024-07-25T12:41:10.010000"],["2024-07-25T12:41:11.010000"],["2024-07-25T12:41:12.010000"],["2024-07-25T12:41:13.010000"],["2024-07-25T12:41:14.010000"],["2024-07-25T12:41:15.010000"],["2024-07-25T12:41:16.010000"],["2024-07-25T12:41:17.010000"],["2024-07-25T12:41:18.010000"],["2024-07-25T12:41:19.010000"],["2024-07-25T12:41:20.010000"],["2024-07-25T12:41:21.010000"],["2024-07-25T12:41:22.010000"],["2024-07-25T12:41:23.010000"],["2024-07-25T12:41:24.010000"],["2024-07-25T12:41:25.010000"],["2024-07-25T12:41:26.010000"],["2024-07-25T12:41:27.010000"],["2024-07-25T12:41:28.010000"],["2024-07-25T12:41:29.010000"],["2024-07-25T12:41:30.010000"],["2024-07-25T12:41:31.010000"],["2024-07-25T12:41:32.010000"],["2024-07-25T12:41:33.010000"],["2024-07-25T12:41:34.010000"],["2024-07-25T12:41:35.010000"],["2024-07-25T12:41:36.010000"],["2024-07-25T12:41:37.010000"],["2024-07-25T12:41:38.010000"],["2024-07-25T12:41:39.010000"],["2024-07-25T12:41:40.010000"],["2024-07-25T12:41:41.010000"],["2024-07-25T12:41:42.010000"],["2024-07-25T12:41:43.010000"],["2024-07-25T12:41:44.010000"],["2024-07-25T12:41:45.010000"],["2024-07-25T12:41:46.010000"],["2024-07-25T12:41:47.010000"],["2024-07-25T12:41:48.010000"],["2024-07-25T12:41:49.010000"],["2024-07-25T12:41:50.010000"],["2024-07-25T12:41:51.010000"],["2024-07-25T12:41:52.010000"],["2024-07-25T12:41:53.010000"],["2024-07-25T12:41:54.010000"],["2024-07-25T12:41:55.010000"],["2024-07-25T12:41:56.010000"],["2024-07-25T12:41:57.010000"],["2024-07-25T12:41:58.010000"],["2024-07-25T12:41:59.010000"],["2024-07-25T12:42:00.010000"],["2024-07-25T12:42:01.010000"],["2024-07-25T12:42:02.010000"],["2024-07-25T12:42:03.010000"],["2024-07-25T12:42:04.010000"],["2024-07-25T12:42:05.010000"],["2024-07-25T12:42:06.010000"],["2024-07-25T12:42:07.010000"],["2024-07-25T12:42:08.010000"],["2024-07-25T12:42:09.010000"],["2024-07-25T12:42:10.010000"],["2024-07-25T12:42:11.010000"],["2024-07-25T12:42:12.010000"],["2024-07-25T12:42:13.010000"],["2024-07-25T12:42:14.010000"],["2024-07-25T12:42:15.010000"],["2024-07-25T12:42:16.010000"],["2024-07-25T12:42:17.010000"],["2024-07-25T12:42:18.010000"],["2024-07-25T12:42:19.010000"],["2024-07-25T12:42:20.010000"],["2024-07-25T12:42:21.010000"],["2024-07-25T12:42:22.010000"],["2024-07-25T12:42:23.010000"],["2024-07-25T12:42:24.010000"],["2024-07-25T12:42:25.010000"],["2024-07-25T12:42:26.010000"],["2024-07-25T12:42:27.010000"],["2024-07-25T12:42:28.010000"],["2024-07-25T12:42:29.010000"],["2024-07-25T12:42:30.010000"],["2024-07-25T12:42:31.010000"],["2024-07-25T12:42:32.010000"],["2024-07-25T12:42:33.010000"],["2024-07-25T12:42:34.010000"],["2024-07-25T12:42:35.010000"],["2024-07-25T12:42:36.010000"],["2024-07-25T12:42:37.010000"],["2024-07-25T12:42:38.010000"],["2024-07-25T12:42:39.010000"],["2024-07-25T12:42:40.010000"],["2024-07-25T12:42:41.010000"],["2024-07-25T12:42:42.010000"],["2024-07-25T12:42:43.010000"],["2024-07-25T12:42:44.010000"],["2024-07-25T12:42:45.010000"],["2024-07-25T12:42:46.010000"],["2024-07-25T12:42:47.010000"],["2024-07-25T12:42:48.010000"],["2024-07-25T12:42:49.010000"],["2024-07-25T12:42:50.010000"],["2024-07-25T12:42:51.010000"],["2024-07-25T12:42:52.010000"],["2024-07-25T12:42:53.010000"],["2024-07-25T12:42:54.010000"],["2024-07-25T12:42:55.010000"],["2024-07-25T12:42:56.010000"],["2024-07-25T12:42:57.010000"],["2024-07-25T12:42:58.010000"],["2024-07-25T12:42:59.010000"],["2024-07-25T12:43:00.010000"],["2024-07-25T12:43:01.010000"],["2024-07-25T12:43:02.010000"],["2024-07-25T12:43:03.010000"],["2024-07-25T12:43:04.010000"],["2024-07-25T12:43:05.010000"],["2024-07-25T12:43:06.010000"],["2024-07-25T12:43:07.010000"],["2024-07-25T12:43:08.010000"],["2024-07-25T12:43:09.010000"],["2024-07-25T12:43:10.010000"],["2024-07-25T12:43:11.010000"],["2024-07-25T12:43:12.010000"],["2024-07-25T12:43:13.010000"],["2024-07-25T12:43:14.010000"],["2024-07-25T12:43:15.010000"],["2024-07-25T12:43:16.010000"],["2024-07-25T12:43:17.010000"],["2024-07-25T12:43:18.010000"],["2024-07-25T12:43:19.010000"],["2024-07-25T12:43:20.010000"],["2024-07-25T12:43:21.010000"],["2024-07-25T12:43:22.010000"],["2024-07-25T12:43:23.010000"],["2024-07-25T12:43:24.010000"],["2024-07-25T12:43:25.010000"],["2024-07-25T12:43:26.010000"],["2024-07-25T12:43:27.010000"],["2024-07-25T12:43:28.010000"],["2024-07-25T12:43:29.010000"],["2024-07-25T12:43:30.010000"],["2024-07-25T12:43:31.010000"],["2024-07-25T12:43:32.010000"],["2024-07-25T12:43:33.010000"],["2024-07-25T12:43:34.010000"],["2024-07-25T12:43:35.010000"],["2024-07-25T12:43:36.010000"],["2024-07-25T12:43:37.010000"],["2024-07-25T12:43:38.010000"],["2024-07-25T12:43:39.010000"],["2024-07-25T12:43:40.010000"],["2024-07-25T12:43:41.010000"],["2024-07-25T12:43:42.010000"],["2024-07-25T12:43:43.010000"],["2024-07-25T12:43:44.010000"],["2024-07-25T12:43:45.010000"],["2024-07-25T12:43:46.010000"],["2024-07-25T12:43:47.010000"],["2024-07-25T12:43:48.010000"],["2024-07-25T12:43:49.010000"],["2024-07-25T12:43:50.010000"],["2024-07-25T12:43:51.010000"],["2024-07-25T12:43:52.010000"],["2024-07-25T12:43:53.010000"],["2024-07-25T12:43:54.010000"],["2024-07-25T12:43:55.010000"],["2024-07-25T12:43:56.010000"],["2024-07-25T12:43:57.010000"],["2024-07-25T12:43:58.010000"],["2024-07-25T12:43:59.010000"],["2024-07-25T12:44:00.010000"],["2024-07-25T12:44:01.010000"],["2024-07-25T12:44:02.010000"],["2024-07-25T12:44:03.010000"],["2024-07-25T12:44:04.010000"],["2024-07-25T12:44:05.010000"],["2024-07-25T12:44:06.010000"],["2024-07-25T12:44:07.010000"],["2024-07-25T12:44:08.010000"],["2024-07-25T12:44:09.010000"],["2024-07-25T12:44:10.010000"],["2024-07-25T12:44:11.010000"],["2024-07-25T12:44:12.010000"],["2024-07-25T12:44:13.010000"],["2024-07-25T12:44:14.010000"],["2024-07-25T12:44:15.010000"],["2024-07-25T12:44:16.010000"],["2024-07-25T12:44:17.010000"],["2024-07-25T12:44:18.010000"],["2024-07-25T12:44:19.010000"],["2024-07-25T12:44:20.010000"],["2024-07-25T12:44:21.010000"],["2024-07-25T12:44:22.010000"],["2024-07-25T12:44:23.010000"],["2024-07-25T12:44:24.010000"],["2024-07-25T12:44:25.010000"],["2024-07-25T12:44:26.010000"],["2024-07-25T12:44:27.010000"],["2024-07-25T12:44:28.010000"],["2024-07-25T12:44:29.010000"],["2024-07-25T12:44:30.010000"],["2024-07-25T12:44:31.010000"],["2024-07-25T12:44:32.010000"],["2024-07-25T12:44:33.010000"],["2024-07-25T12:44:34.010000"],["2024-07-25T12:44:35.010000"],["2024-07-25T12:44:36.010000"],["2024-07-25T12:44:37.010000"],["2024-07-25T12:44:38.010000"],["2024-07-25T12:44:39.010000"],["2024-07-25T12:44:40.010000"],["2024-07-25T12:44:41.010000"],["2024-07-25T12:44:42.010000"],["2024-07-25T12:44:43.010000"],["2024-07-25T12:44:44.010000"],["2024-07-25T12:44:45.010000"],["2024-07-25T12:44:46.010000"],["2024-07-25T12:44:47.010000"],["2024-07-25T12:44:48.010000"],["2024-07-25T12:44:49.010000"],["2024-07-25T12:44:50.010000"],["2024-07-25T12:44:51.010000"],["2024-07-25T12:44:52.010000"],["2024-07-25T12:44:53.010000"],["2024-07-25T12:44:54.010000"],["2024-07-25T12:44:55.010000"],["2024-07-25T12:44:56.010000"],["2024-07-25T12:44:57.010000"],["2024-07-25T12:44:58.010000"],["2024-07-25T12:44:59.010000"],["2024-07-25T12:45:00.010000"],["2024-07-25T12:45:01.010000"],["2024-07-25T12:45:02.010000"],["2024-07-25T12:45:03.010000"],["2024-07-25T12:45:04.010000"],["2024-07-25T12:45:05.010000"],["2024-07-25T12:45:06.010000"],["2024-07-25T12:45:07.010000"],["2024-07-25T12:45:08.010000"],["2024-07-25T12:45:09.010000"],["2024-07-25T12:45:10.010000"],["2024-07-25T12:45:11.010000"],["2024-07-25T12:45:12.010000"],["2024-07-25T12:45:13.010000"],["2024-07-25T12:45:14.010000"],["2024-07-25T12:45:15.010000"],["2024-07-25T12:45:16.010000"],["2024-07-25T12:45:17.010000"],["2024-07-25T12:45:18.010000"],["2024-07-25T12:45:19.010000"],["2024-07-25T12:45:20.010000"],["2024-07-25T12:45:21.010000"],["2024-07-25T12:45:22.010000"],["2024-07-25T12:45:23.010000"],["2024-07-25T12:45:24.010000"],["2024-07-25T12:45:25.010000"],["2024-07-25T12:45:26.010000"],["2024-07-25T12:45:27.010000"],["2024-07-25T12:45:28.010000"],["2024-07-25T12:45:29.010000"],["2024-07-25T12:45:30.010000"],["2024-07-25T12:45:31.010000"],["2024-07-25T12:45:32.010000"],["2024-07-25T12:45:33.010000"],["2024-07-25T12:45:34.010000"],["2024-07-25T12:45:35.010000"],["2024-07-25T12:45:36.010000"],["2024-07-25T12:45:37.010000"],["2024-07-25T12:45:38.010000"],["2024-07-25T12:45:39.010000"],["2024-07-25T12:45:40.010000"],["2024-07-25T12:45:41.010000"],["2024-07-25T12:45:42.010000"],["2024-07-25T12:45:43.010000"],["2024-07-25T12:45:44.010000"],["2024-07-25T12:45:45.010000"],["2024-07-25T12:45:46.010000"],["2024-07-25T12:45:47.010000"],["2024-07-25T12:45:48.010000"],["2024-07-25T12:45:49.010000"],["2024-07-25T12:45:50.010000"],["2024-07-25T12:45:51.010000"],["2024-07-25T12:45:52.010000"],["2024-07-25T12:45:53.010000"],["2024-07-25T12:45:54.010000"],["2024-07-25T12:45:55.010000"],["2024-07-25T12:45:56.010000"],["2024-07-25T12:45:57.010000"],["2024-07-25T12:45:58.010000"],["2024-07-25T12:45:59.010000"],["2024-07-25T12:46:00.010000"],["2024-07-25T12:46:01.010000"],["2024-07-25T12:46:02.010000"],["2024-07-25T12:46:03.010000"],["2024-07-25T12:46:04.010000"],["2024-07-25T12:46:05.010000"],["2024-07-25T12:46:06.010000"],["2024-07-25T12:46:07.010000"],["2024-07-25T12:46:08.010000"],["2024-07-25T12:46:09.010000"],["2024-07-25T12:46:10.010000"],["2024-07-25T12:46:11.010000"],["2024-07-25T12:46:12.010000"],["2024-07-25T12:46:13.010000"],["2024-07-25T12:46:14.010000"],["2024-07-25T12:46:15.010000"],["2024-07-25T12:46:16.010000"],["2024-07-25T12:46:17.010000"],["2024-07-25T12:46:18.010000"],["2024-07-25T12:46:19.010000"],["2024-07-25T12:46:20.010000"],["2024-07-25T12:46:21.010000"],["2024-07-25T12:46:22.010000"],["2024-07-25T12:46:23.010000"],["2024-07-25T12:46:24.010000"],["2024-07-25T12:46:25.010000"],["2024-07-25T12:46:26.010000"],["2024-07-25T12:46:27.010000"],["2024-07-25T12:46:28.010000"],["2024-07-25T12:46:29.010000"],["2024-07-25T12:46:30.010000"],["2024-07-25T12:46:31.010000"],["2024-07-25T12:46:32.010000"],["2024-07-25T12:46:33.010000"],["2024-07-25T12:46:34.010000"],["2024-07-25T12:46:35.010000"],["2024-07-25T12:46:36.010000"],["2024-07-25T12:46:37.010000"],["2024-07-25T12:46:38.010000"],["2024-07-25T12:46:39.010000"],["2024-07-25T12:46:40.010000"],["2024-07-25T12:46:41.010000"],["2024-07-25T12:46:42.010000"],["2024-07-25T12:46:43.010000"],["2024-07-25T12:46:44.010000"],["2024-07-25T12:46:45.010000"],["2024-07-25T12:46:46.010000"],["2024-07-25T12:46:47.010000"],["2024-07-25T12:46:48.010000"],["2024-07-25T12:46:49.010000"],["2024-07-25T12:46:50.010000"],["2024-07-25T12:46:51.010000"],["2024-07-25T12:46:52.010000"],["2024-07-25T12:46:53.010000"],["2024-07-25T12:46:54.010000"],["2024-07-25T12:46:55.010000"],["2024-07-25T12:46:56.010000"],["2024-07-25T12:46:57.010000"],["2024-07-25T12:46:58.010000"],["2024-07-25T12:46:59.010000"],["2024-07-25T12:47:00.010000"],["2024-07-25T12:47:01.010000"],["2024-07-25T12:47:02.010000"],["2024-07-25T12:47:03.010000"],["2024-07-25T12:47:04.010000"],["2024-07-25T12:47:05.010000"],["2024-07-25T12:47:06.010000"],["2024-07-25T12:47:07.010000"],["2024-07-25T12:47:08.010000"],["2024-07-25T12:47:09.010000"],["2024-07-25T12:47:10.010000"],["2024-07-25T12:47:11.010000"],["2024-07-25T12:47:12.010000"],["2024-07-25T12:47:13.010000"],["2024-07-25T12:47:14.010000"],["2024-07-25T12:47:15.010000"],["2024-07-25T12:47:16.010000"],["2024-07-25T12:47:17.010000"],["2024-07-25T12:47:18.010000"],["2024-07-25T12:47:19.010000"],["2024-07-25T12:47:20.010000"],["2024-07-25T12:47:21.010000"],["2024-07-25T12:47:22.010000"],["2024-07-25T12:47:23.010000"],["2024-07-25T12:47:24.010000"],["2024-07-25T12:47:25.010000"],["2024-07-25T12:47:26.010000"],["2024-07-25T12:47:27.010000"],["2024-07-25T12:47:28.010000"],["2024-07-25T12:47:29.010000"],["2024-07-25T12:47:30.010000"],["2024-07-25T12:47:31.010000"],["2024-07-25T12:47:32.010000"],["2024-07-25T12:47:33.010000"],["2024-07-25T12:47:34.010000"],["2024-07-25T12:47:35.010000"],["2024-07-25T12:47:36.010000"],["2024-07-25T12:47:37.010000"],["2024-07-25T12:47:38.010000"],["2024-07-25T12:47:39.010000"],["2024-07-25T12:47:40.010000"],["2024-07-25T12:47:41.010000"],["2024-07-25T12:47:42.010000"],["2024-07-25T12:47:43.010000"],["2024-07-25T12:47:44.010000"],["2024-07-25T12:47:45.010000"],["2024-07-25T12:47:46.010000"],["2024-07-25T12:47:47.010000"],["2024-07-25T12:47:48.010000"],["2024-07-25T12:47:49.010000"],["2024-07-25T12:47:50.010000"],["2024-07-25T12:47:51.010000"],["2024-07-25T12:47:52.010000"],["2024-07-25T12:47:53.010000"],["2024-07-25T12:47:54.010000"],["2024-07-25T12:47:55.010000"],["2024-07-25T12:47:56.010000"],["2024-07-25T12:47:57.010000"],["2024-07-25T12:47:58.010000"],["2024-07-25T12:47:59.010000"],["2024-07-25T12:48:00.010000"],["2024-07-25T12:48:01.010000"],["2024-07-25T12:48:02.010000"],["2024-07-25T12:48:03.010000"],["2024-07-25T12:48:04.010000"],["2024-07-25T12:48:05.010000"],["2024-07-25T12:48:06.010000"],["2024-07-25T12:48:07.010000"],["2024-07-25T12:48:08.010000"],["2024-07-25T12:48:09.010000"],["2024-07-25T12:48:10.010000"],["2024-07-25T12:48:11.010000"],["2024-07-25T12:48:12.010000"],["2024-07-25T12:48:13.010000"],["2024-07-25T12:48:14.010000"],["2024-07-25T12:48:15.010000"],["2024-07-25T12:48:16.010000"],["2024-07-25T12:48:17.010000"],["2024-07-25T12:48:18.010000"],["2024-07-25T12:48:19.010000"],["2024-07-25T12:48:20.010000"],["2024-07-25T12:48:21.010000"],["2024-07-25T12:48:22.010000"],["2024-07-25T12:48:23.010000"],["2024-07-25T12:48:24.010000"],["2024-07-25T12:48:25.010000"],["2024-07-25T12:48:26.010000"],["2024-07-25T12:48:27.010000"],["2024-07-25T12:48:28.010000"],["2024-07-25T12:48:29.010000"],["2024-07-25T12:48:30.010000"],["2024-07-25T12:48:31.010000"],["2024-07-25T12:48:32.010000"],["2024-07-25T12:48:33.010000"],["2024-07-25T12:48:34.010000"],["2024-07-25T12:48:35.010000"],["2024-07-25T12:48:36.010000"],["2024-07-25T12:48:37.010000"],["2024-07-25T12:48:38.010000"],["2024-07-25T12:48:39.010000"],["2024-07-25T12:48:40.010000"],["2024-07-25T12:48:41.010000"],["2024-07-25T12:48:42.010000"],["2024-07-25T12:48:43.010000"],["2024-07-25T12:48:44.010000"],["2024-07-25T12:48:45.010000"],["2024-07-25T12:48:46.010000"],["2024-07-25T12:48:47.010000"],["2024-07-25T12:48:48.010000"],["2024-07-25T12:48:49.010000"],["2024-07-25T12:48:50.010000"],["2024-07-25T12:48:51.010000"],["2024-07-25T12:48:52.010000"],["2024-07-25T12:48:53.010000"],["2024-07-25T12:48:54.010000"],["2024-07-25T12:48:55.010000"],["2024-07-25T12:48:56.010000"],["2024-07-25T12:48:57.010000"],["2024-07-25T12:48:58.010000"],["2024-07-25T12:48:59.010000"],["2024-07-25T12:49:00.010000"],["2024-07-25T12:49:01.010000"],["2024-07-25T12:49:02.010000"],["2024-07-25T12:49:03.010000"],["2024-07-25T12:49:04.010000"],["2024-07-25T12:49:05.010000"],["2024-07-25T12:49:06.010000"],["2024-07-25T12:49:07.010000"],["2024-07-25T12:49:08.010000"],["2024-07-25T12:49:09.010000"],["2024-07-25T12:49:10.010000"],["2024-07-25T12:49:11.010000"],["2024-07-25T12:49:12.010000"],["2024-07-25T12:49:13.010000"],["2024-07-25T12:49:14.010000"],["2024-07-25T12:49:15.010000"],["2024-07-25T12:49:16.010000"],["2024-07-25T12:49:17.010000"],["2024-07-25T12:49:18.010000"],["2024-07-25T12:49:19.010000"],["2024-07-25T12:49:20.010000"],["2024-07-25T12:49:21.010000"],["2024-07-25T12:49:22.010000"],["2024-07-25T12:49:23.010000"],["2024-07-25T12:49:24.010000"],["2024-07-25T12:49:25.010000"],["2024-07-25T12:49:26.010000"],["2024-07-25T12:49:27.010000"],["2024-07-25T12:49:28.010000"],["2024-07-25T12:49:29.010000"],["2024-07-25T12:49:30.010000"],["2024-07-25T12:49:31.010000"],["2024-07-25T12:49:32.010000"],["2024-07-25T12:49:33.010000"],["2024-07-25T12:49:34.010000"],["2024-07-25T12:49:35.010000"],["2024-07-25T12:49:36.010000"],["2024-07-25T12:49:37.010000"],["2024-07-25T12:49:38.010000"],["2024-07-25T12:49:39.010000"],["2024-07-25T12:49:40.010000"],["2024-07-25T12:49:41.010000"],["2024-07-25T12:49:42.010000"],["2024-07-25T12:49:43.010000"],["2024-07-25T12:49:44.010000"],["2024-07-25T12:49:45.010000"],["2024-07-25T12:49:46.010000"],["2024-07-25T12:49:47.010000"],["2024-07-25T12:49:48.010000"],["2024-07-25T12:49:49.010000"],["2024-07-25T12:49:50.010000"],["2024-07-25T12:49:51.010000"],["2024-07-25T12:49:52.010000"],["2024-07-25T12:49:53.010000"],["2024-07-25T12:49:54.010000"],["2024-07-25T12:49:55.010000"],["2024-07-25T12:49:56.010000"],["2024-07-25T12:49:57.010000"],["2024-07-25T12:49:58.010000"],["2024-07-25T12:49:59.010000"],["2024-07-25T12:50:00.010000"],["2024-07-25T12:50:01.010000"],["2024-07-25T12:50:02.010000"],["2024-07-25T12:50:03.010000"],["2024-07-25T12:50:04.010000"],["2024-07-25T12:50:05.010000"],["2024-07-25T12:50:06.010000"],["2024-07-25T12:50:07.010000"],["2024-07-25T12:50:08.010000"],["2024-07-25T12:50:09.010000"],["2024-07-25T12:50:10.010000"],["2024-07-25T12:50:11.010000"],["2024-07-25T12:50:12.010000"],["2024-07-25T12:50:13.010000"],["2024-07-25T12:50:14.010000"],["2024-07-25T12:50:15.010000"],["2024-07-25T12:50:16.010000"],["2024-07-25T12:50:17.010000"],["2024-07-25T12:50:18.010000"],["2024-07-25T12:50:19.010000"],["2024-07-25T12:50:20.010000"],["2024-07-25T12:50:21.010000"],["2024-07-25T12:50:22.010000"],["2024-07-25T12:50:23.010000"],["2024-07-25T12:50:24.010000"],["2024-07-25T12:50:25.010000"],["2024-07-25T12:50:26.010000"],["2024-07-25T12:50:27.010000"],["2024-07-25T12:50:28.010000"],["2024-07-25T12:50:29.010000"],["2024-07-25T12:50:30.010000"],["2024-07-25T12:50:31.010000"],["2024-07-25T12:50:32.010000"],["2024-07-25T12:50:33.010000"],["2024-07-25T12:50:34.010000"],["2024-07-25T12:50:35.010000"],["2024-07-25T12:50:36.010000"],["2024-07-25T12:50:37.010000"],["2024-07-25T12:50:38.010000"],["2024-07-25T12:50:39.010000"],["2024-07-25T12:50:40.010000"],["2024-07-25T12:50:41.010000"],["2024-07-25T12:50:42.010000"],["2024-07-25T12:50:43.010000"],["2024-07-25T12:50:44.010000"],["2024-07-25T12:50:45.010000"],["2024-07-25T12:50:46.010000"],["2024-07-25T12:50:47.010000"],["2024-07-25T12:50:48.010000"],["2024-07-25T12:50:49.010000"],["2024-07-25T12:50:50.010000"],["2024-07-25T12:50:51.010000"],["2024-07-25T12:50:52.010000"],["2024-07-25T12:50:53.010000"],["2024-07-25T12:50:54.010000"],["2024-07-25T12:50:55.010000"],["2024-07-25T12:50:56.010000"],["2024-07-25T12:50:57.010000"],["2024-07-25T12:50:58.010000"],["2024-07-25T12:50:59.010000"],["2024-07-25T12:51:00.010000"],["2024-07-25T12:51:01.010000"],["2024-07-25T12:51:02.010000"],["2024-07-25T12:51:03.010000"],["2024-07-25T12:51:04.010000"],["2024-07-25T12:51:05.010000"],["2024-07-25T12:51:06.010000"],["2024-07-25T12:51:07.010000"],["2024-07-25T12:51:08.010000"],["2024-07-25T12:51:09.010000"],["2024-07-25T12:51:10.010000"],["2024-07-25T12:51:11.010000"],["2024-07-25T12:51:12.010000"],["2024-07-25T12:51:13.010000"],["2024-07-25T12:51:14.010000"],["2024-07-25T12:51:15.010000"],["2024-07-25T12:51:16.010000"],["2024-07-25T12:51:17.010000"],["2024-07-25T12:51:18.010000"],["2024-07-25T12:51:19.010000"],["2024-07-25T12:51:20.010000"],["2024-07-25T12:51:21.010000"],["2024-07-25T12:51:22.010000"],["2024-07-25T12:51:23.010000"],["2024-07-25T12:51:24.010000"],["2024-07-25T12:51:25.010000"],["2024-07-25T12:51:26.010000"],["2024-07-25T12:51:27.010000"],["2024-07-25T12:51:28.010000"],["2024-07-25T12:51:29.010000"],["2024-07-25T12:51:30.010000"],["2024-07-25T12:51:31.010000"],["2024-07-25T12:51:32.010000"],["2024-07-25T12:51:33.010000"],["2024-07-25T12:51:34.010000"],["2024-07-25T12:51:35.010000"],["2024-07-25T12:51:36.010000"],["2024-07-25T12:51:37.010000"],["2024-07-25T12:51:38.010000"],["2024-07-25T12:51:39.010000"],["2024-07-25T12:51:40.010000"],["2024-07-25T12:51:41.010000"],["2024-07-25T12:51:42.010000"],["2024-07-25T12:51:43.010000"],["2024-07-25T12:51:44.010000"],["2024-07-25T12:51:45.010000"],["2024-07-25T12:51:46.010000"],["2024-07-25T12:51:47.010000"],["2024-07-25T12:51:48.010000"],["2024-07-25T12:51:49.010000"],["2024-07-25T12:51:50.010000"],["2024-07-25T12:51:51.010000"],["2024-07-25T12:51:52.010000"],["2024-07-25T12:51:53.010000"],["2024-07-25T12:51:54.010000"],["2024-07-25T12:51:55.010000"],["2024-07-25T12:51:56.010000"],["2024-07-25T12:51:57.010000"],["2024-07-25T12:51:58.010000"],["2024-07-25T12:51:59.010000"],["2024-07-25T12:52:00.010000"],["2024-07-25T12:52:01.010000"],["2024-07-25T12:52:02.010000"],["2024-07-25T12:52:03.010000"],["2024-07-25T12:52:04.010000"],["2024-07-25T12:52:05.010000"],["2024-07-25T12:52:06.010000"],["2024-07-25T12:52:07.010000"],["2024-07-25T12:52:08.010000"],["2024-07-25T12:52:09.010000"],["2024-07-25T12:52:10.010000"],["2024-07-25T12:52:11.010000"],["2024-07-25T12:52:12.010000"],["2024-07-25T12:52:13.010000"],["2024-07-25T12:52:14.010000"],["2024-07-25T12:52:15.010000"],["2024-07-25T12:52:16.010000"],["2024-07-25T12:52:17.010000"],["2024-07-25T12:52:18.010000"],["2024-07-25T12:52:19.010000"],["2024-07-25T12:52:20.010000"],["2024-07-25T12:52:21.010000"],["2024-07-25T12:52:22.010000"],["2024-07-25T12:52:23.010000"],["2024-07-25T12:52:24.010000"],["2024-07-25T12:52:25.010000"],["2024-07-25T12:52:26.010000"],["2024-07-25T12:52:27.010000"],["2024-07-25T12:52:28.010000"],["2024-07-25T12:52:29.010000"],["2024-07-25T12:52:30.010000"],["2024-07-25T12:52:31.010000"],["2024-07-25T12:52:32.010000"],["2024-07-25T12:52:33.010000"],["2024-07-25T12:52:34.010000"],["2024-07-25T12:52:35.010000"],["2024-07-25T12:52:36.010000"],["2024-07-25T12:52:37.010000"],["2024-07-25T12:52:38.010000"],["2024-07-25T12:52:39.010000"],["2024-07-25T12:52:40.010000"],["2024-07-25T12:52:41.010000"],["2024-07-25T12:52:42.010000"],["2024-07-25T12:52:43.010000"],["2024-07-25T12:52:44.010000"],["2024-07-25T12:52:45.010000"],["2024-07-25T12:52:46.010000"],["2024-07-25T12:52:47.010000"],["2024-07-25T12:52:48.010000"],["2024-07-25T12:52:49.010000"],["2024-07-25T12:52:50.010000"],["2024-07-25T12:52:51.010000"],["2024-07-25T12:52:52.010000"],["2024-07-25T12:52:53.010000"],["2024-07-25T12:52:54.010000"],["2024-07-25T12:52:55.010000"],["2024-07-25T12:52:56.010000"],["2024-07-25T12:52:57.010000"],["2024-07-25T12:52:58.010000"],["2024-07-25T12:52:59.010000"],["2024-07-25T12:53:00.010000"],["2024-07-25T12:53:01.010000"],["2024-07-25T12:53:02.010000"],["2024-07-25T12:53:03.010000"],["2024-07-25T12:53:04.010000"],["2024-07-25T12:53:05.010000"],["2024-07-25T12:53:06.010000"],["2024-07-25T12:53:07.010000"],["2024-07-25T12:53:08.010000"],["2024-07-25T12:53:09.010000"],["2024-07-25T12:53:10.010000"],["2024-07-25T12:53:11.010000"],["2024-07-25T12:53:12.010000"],["2024-07-25T12:53:13.010000"],["2024-07-25T12:53:14.010000"],["2024-07-25T12:53:15.010000"],["2024-07-25T12:53:16.010000"],["2024-07-25T12:53:17.010000"],["2024-07-25T12:53:18.010000"],["2024-07-25T12:53:19.010000"],["2024-07-25T12:53:20.010000"],["2024-07-25T12:53:21.010000"],["2024-07-25T12:53:22.010000"],["2024-07-25T12:53:23.010000"],["2024-07-25T12:53:24.010000"],["2024-07-25T12:53:25.010000"],["2024-07-25T12:53:26.010000"],["2024-07-25T12:53:27.010000"],["2024-07-25T12:53:28.010000"],["2024-07-25T12:53:29.010000"],["2024-07-25T12:53:30.010000"],["2024-07-25T12:53:31.010000"],["2024-07-25T12:53:32.010000"],["2024-07-25T12:53:33.010000"],["2024-07-25T12:53:34.010000"],["2024-07-25T12:53:35.010000"],["2024-07-25T12:53:36.010000"],["2024-07-25T12:53:37.010000"],["2024-07-25T12:53:38.010000"],["2024-07-25T12:53:39.010000"],["2024-07-25T12:53:40.010000"],["2024-07-25T12:53:41.010000"],["2024-07-25T12:53:42.010000"],["2024-07-25T12:53:43.010000"],["2024-07-25T12:53:44.010000"],["2024-07-25T12:53:45.010000"],["2024-07-25T12:53:46.010000"],["2024-07-25T12:53:47.010000"],["2024-07-25T12:53:48.010000"],["2024-07-25T12:53:49.010000"],["2024-07-25T12:53:50.010000"],["2024-07-25T12:53:51.010000"],["2024-07-25T12:53:52.010000"],["2024-07-25T12:53:53.010000"],["2024-07-25T12:53:54.010000"],["2024-07-25T12:53:55.010000"],["2024-07-25T12:53:56.010000"],["2024-07-25T12:53:57.010000"],["2024-07-25T12:53:58.010000"],["2024-07-25T12:53:59.010000"],["2024-07-25T12:54:00.010000"],["2024-07-25T12:54:01.010000"],["2024-07-25T12:54:02.010000"],["2024-07-25T12:54:03.010000"],["2024-07-25T12:54:04.010000"],["2024-07-25T12:54:05.010000"],["2024-07-25T12:54:06.010000"],["2024-07-25T12:54:07.010000"],["2024-07-25T12:54:08.010000"],["2024-07-25T12:54:09.010000"],["2024-07-25T12:54:10.010000"],["2024-07-25T12:54:11.010000"],["2024-07-25T12:54:12.010000"],["2024-07-25T12:54:13.010000"],["2024-07-25T12:54:14.010000"],["2024-07-25T12:54:15.010000"],["2024-07-25T12:54:16.010000"],["2024-07-25T12:54:17.010000"],["2024-07-25T12:54:18.010000"],["2024-07-25T12:54:19.010000"],["2024-07-25T12:54:20.010000"],["2024-07-25T12:54:21.010000"],["2024-07-25T12:54:22.010000"],["2024-07-25T12:54:23.010000"],["2024-07-25T12:54:24.010000"],["2024-07-25T12:54:25.010000"],["2024-07-25T12:54:26.010000"],["2024-07-25T12:54:27.010000"],["2024-07-25T12:54:28.010000"],["2024-07-25T12:54:29.010000"],["2024-07-25T12:54:30.010000"],["2024-07-25T12:54:31.010000"],["2024-07-25T12:54:32.010000"],["2024-07-25T12:54:33.010000"],["2024-07-25T12:54:34.010000"],["2024-07-25T12:54:35.010000"],["2024-07-25T12:54:36.010000"],["2024-07-25T12:54:37.010000"],["2024-07-25T12:54:38.010000"],["2024-07-25T12:54:39.010000"],["2024-07-25T12:54:40.010000"],["2024-07-25T12:54:41.010000"],["2024-07-25T12:54:42.010000"],["2024-07-25T12:54:43.010000"],["2024-07-25T12:54:44.010000"],["2024-07-25T12:54:45.010000"],["2024-07-25T12:54:46.010000"],["2024-07-25T12:54:47.010000"],["2024-07-25T12:54:48.010000"],["2024-07-25T12:54:49.010000"],["2024-07-25T12:54:50.010000"],["2024-07-25T12:54:51.010000"],["2024-07-25T12:54:52.010000"],["2024-07-25T12:54:53.010000"],["2024-07-25T12:54:54.010000"],["2024-07-25T12:54:55.010000"],["2024-07-25T12:54:56.010000"],["2024-07-25T12:54:57.010000"],["2024-07-25T12:54:58.010000"],["2024-07-25T12:54:59.010000"],["2024-07-25T12:55:00.010000"],["2024-07-25T12:55:01.010000"],["2024-07-25T12:55:02.010000"],["2024-07-25T12:55:03.010000"],["2024-07-25T12:55:04.010000"],["2024-07-25T12:55:05.010000"],["2024-07-25T12:55:06.010000"],["2024-07-25T12:55:07.010000"],["2024-07-25T12:55:08.010000"],["2024-07-25T12:55:09.010000"],["2024-07-25T12:55:10.010000"],["2024-07-25T12:55:11.010000"],["2024-07-25T12:55:12.010000"],["2024-07-25T12:55:13.010000"],["2024-07-25T12:55:14.010000"],["2024-07-25T12:55:15.010000"],["2024-07-25T12:55:16.010000"],["2024-07-25T12:55:17.010000"],["2024-07-25T12:55:18.010000"],["2024-07-25T12:55:19.010000"],["2024-07-25T12:55:20.010000"],["2024-07-25T12:55:21.010000"],["2024-07-25T12:55:22.010000"],["2024-07-25T12:55:23.010000"],["2024-07-25T12:55:24.010000"],["2024-07-25T12:55:25.010000"],["2024-07-25T12:55:26.010000"],["2024-07-25T12:55:27.010000"],["2024-07-25T12:55:28.010000"],["2024-07-25T12:55:29.010000"],["2024-07-25T12:55:30.010000"],["2024-07-25T12:55:31.010000"],["2024-07-25T12:55:32.010000"],["2024-07-25T12:55:33.010000"],["2024-07-25T12:55:34.010000"],["2024-07-25T12:55:35.010000"],["2024-07-25T12:55:36.010000"],["2024-07-25T12:55:37.010000"],["2024-07-25T12:55:38.010000"],["2024-07-25T12:55:39.010000"],["2024-07-25T12:55:40.010000"],["2024-07-25T12:55:41.010000"],["2024-07-25T12:55:42.010000"],["2024-07-25T12:55:43.010000"],["2024-07-25T12:55:44.010000"],["2024-07-25T12:55:45.010000"],["2024-07-25T12:55:46.010000"],["2024-07-25T12:55:47.010000"],["2024-07-25T12:55:48.010000"],["2024-07-25T12:55:49.010000"],["2024-07-25T12:55:50.010000"],["2024-07-25T12:55:51.010000"],["2024-07-25T12:55:52.010000"],["2024-07-25T12:55:53.010000"],["2024-07-25T12:55:54.010000"],["2024-07-25T12:55:55.010000"],["2024-07-25T12:55:56.010000"],["2024-07-25T12:55:57.010000"],["2024-07-25T12:55:58.010000"],["2024-07-25T12:55:59.010000"],["2024-07-25T12:56:00.010000"],["2024-07-25T12:56:01.010000"],["2024-07-25T12:56:02.010000"],["2024-07-25T12:56:03.010000"],["2024-07-25T12:56:04.010000"],["2024-07-25T12:56:05.010000"],["2024-07-25T12:56:06.010000"],["2024-07-25T12:56:07.010000"],["2024-07-25T12:56:08.010000"],["2024-07-25T12:56:09.010000"],["2024-07-25T12:56:10.010000"],["2024-07-25T12:56:11.010000"],["2024-07-25T12:56:12.010000"],["2024-07-25T12:56:13.010000"],["2024-07-25T12:56:14.010000"],["2024-07-25T12:56:15.010000"],["2024-07-25T12:56:16.010000"],["2024-07-25T12:56:17.010000"],["2024-07-25T12:56:18.010000"],["2024-07-25T12:56:19.010000"],["2024-07-25T12:56:20.010000"],["2024-07-25T12:56:21.010000"],["2024-07-25T12:56:22.010000"],["2024-07-25T12:56:23.010000"],["2024-07-25T12:56:24.010000"],["2024-07-25T12:56:25.010000"],["2024-07-25T12:56:26.010000"],["2024-07-25T12:56:27.010000"],["2024-07-25T12:56:28.010000"],["2024-07-25T12:56:29.010000"],["2024-07-25T12:56:30.010000"],["2024-07-25T12:56:31.010000"],["2024-07-25T12:56:32.010000"],["2024-07-25T12:56:33.010000"],["2024-07-25T12:56:34.010000"],["2024-07-25T12:56:35.010000"],["2024-07-25T12:56:36.010000"],["2024-07-25T12:56:37.010000"],["2024-07-25T12:56:38.010000"],["2024-07-25T12:56:39.010000"],["2024-07-25T12:56:40.010000"],["2024-07-25T12:56:41.010000"],["2024-07-25T12:56:42.010000"],["2024-07-25T12:56:43.010000"],["2024-07-25T12:56:44.010000"],["2024-07-25T12:56:45.010000"],["2024-07-25T12:56:46.010000"],["2024-07-25T12:56:47.010000"],["2024-07-25T12:56:48.010000"],["2024-07-25T12:56:49.010000"],["2024-07-25T12:56:50.010000"],["2024-07-25T12:56:51.010000"],["2024-07-25T12:56:52.010000"],["2024-07-25T12:56:53.010000"],["2024-07-25T12:56:54.010000"],["2024-07-25T12:56:55.010000"],["2024-07-25T12:56:56.010000"],["2024-07-25T12:56:57.010000"],["2024-07-25T12:56:58.010000"],["2024-07-25T12:56:59.010000"],["2024-07-25T12:57:00.010000"],["2024-07-25T12:57:01.010000"],["2024-07-25T12:57:02.010000"],["2024-07-25T12:57:03.010000"],["2024-07-25T12:57:04.010000"],["2024-07-25T12:57:05.010000"],["2024-07-25T12:57:06.010000"],["2024-07-25T12:57:07.010000"],["2024-07-25T12:57:08.010000"],["2024-07-25T12:57:09.010000"],["2024-07-25T12:57:10.010000"],["2024-07-25T12:57:11.010000"],["2024-07-25T12:57:12.010000"],["2024-07-25T12:57:13.010000"],["2024-07-25T12:57:14.010000"],["2024-07-25T12:57:15.010000"],["2024-07-25T12:57:16.010000"],["2024-07-25T12:57:17.010000"],["2024-07-25T12:57:18.010000"],["2024-07-25T12:57:19.010000"],["2024-07-25T12:57:20.010000"],["2024-07-25T12:57:21.010000"],["2024-07-25T12:57:22.010000"],["2024-07-25T12:57:23.010000"],["2024-07-25T12:57:24.010000"],["2024-07-25T12:57:25.010000"],["2024-07-25T12:57:26.010000"],["2024-07-25T12:57:27.010000"],["2024-07-25T12:57:28.010000"],["2024-07-25T12:57:29.010000"],["2024-07-25T12:57:30.010000"],["2024-07-25T12:57:31.010000"],["2024-07-25T12:57:32.010000"],["2024-07-25T12:57:33.010000"],["2024-07-25T12:57:34.010000"],["2024-07-25T12:57:35.010000"],["2024-07-25T12:57:36.010000"],["2024-07-25T12:57:37.010000"],["2024-07-25T12:57:38.010000"],["2024-07-25T12:57:39.010000"],["2024-07-25T12:57:40.010000"],["2024-07-25T12:57:41.010000"],["2024-07-25T12:57:42.010000"],["2024-07-25T12:57:43.010000"],["2024-07-25T12:57:44.010000"],["2024-07-25T12:57:45.010000"],["2024-07-25T12:57:46.010000"],["2024-07-25T12:57:47.010000"],["2024-07-25T12:57:48.010000"],["2024-07-25T12:57:49.010000"],["2024-07-25T12:57:50.010000"],["2024-07-25T12:57:51.010000"],["2024-07-25T12:57:52.010000"],["2024-07-25T12:57:53.010000"],["2024-07-25T12:57:54.010000"],["2024-07-25T12:57:55.010000"],["2024-07-25T12:57:56.010000"],["2024-07-25T12:57:57.010000"],["2024-07-25T12:57:58.010000"],["2024-07-25T12:57:59.010000"],["2024-07-25T12:58:00.010000"],["2024-07-25T12:58:01.010000"],["2024-07-25T12:58:02.010000"],["2024-07-25T12:58:03.010000"],["2024-07-25T12:58:04.010000"],["2024-07-25T12:58:05.010000"],["2024-07-25T12:58:06.010000"],["2024-07-25T12:58:07.010000"],["2024-07-25T12:58:08.010000"],["2024-07-25T12:58:09.010000"],["2024-07-25T12:58:10.010000"],["2024-07-25T12:58:11.010000"],["2024-07-25T12:58:12.010000"],["2024-07-25T12:58:13.010000"],["2024-07-25T12:58:14.010000"],["2024-07-25T12:58:15.010000"],["2024-07-25T12:58:16.010000"],["2024-07-25T12:58:17.010000"],["2024-07-25T12:58:18.010000"],["2024-07-25T12:58:19.010000"],["2024-07-25T12:58:20.010000"],["2024-07-25T12:58:21.010000"],["2024-07-25T12:58:22.010000"],["2024-07-25T12:58:23.010000"],["2024-07-25T12:58:24.010000"],["2024-07-25T12:58:25.010000"],["2024-07-25T12:58:26.010000"],["2024-07-25T12:58:27.010000"],["2024-07-25T12:58:28.010000"],["2024-07-25T12:58:29.010000"],["2024-07-25T12:58:30.010000"],["2024-07-25T12:58:31.010000"],["2024-07-25T12:58:32.010000"],["2024-07-25T12:58:33.010000"],["2024-07-25T12:58:34.010000"],["2024-07-25T12:58:35.010000"],["2024-07-25T12:58:36.010000"],["2024-07-25T12:58:37.010000"],["2024-07-25T12:58:38.010000"],["2024-07-25T12:58:39.010000"],["2024-07-25T12:58:40.010000"],["2024-07-25T12:58:41.010000"],["2024-07-25T12:58:42.010000"],["2024-07-25T12:58:43.010000"],["2024-07-25T12:58:44.010000"],["2024-07-25T12:58:45.010000"],["2024-07-25T12:58:46.010000"],["2024-07-25T12:58:47.010000"],["2024-07-25T12:58:48.010000"],["2024-07-25T12:58:49.010000"],["2024-07-25T12:58:50.010000"],["2024-07-25T12:58:51.010000"],["2024-07-25T12:58:52.010000"],["2024-07-25T12:58:53.010000"],["2024-07-25T12:58:54.010000"],["2024-07-25T12:58:55.010000"],["2024-07-25T12:58:56.010000"],["2024-07-25T12:58:57.010000"],["2024-07-25T12:58:58.010000"],["2024-07-25T12:58:59.010000"],["2024-07-25T12:59:00.010000"],["2024-07-25T12:59:01.010000"],["2024-07-25T12:59:02.010000"],["2024-07-25T12:59:03.010000"],["2024-07-25T12:59:04.010000"],["2024-07-25T12:59:05.010000"],["2024-07-25T12:59:06.010000"],["2024-07-25T12:59:07.010000"],["2024-07-25T12:59:08.010000"],["2024-07-25T12:59:09.010000"],["2024-07-25T12:59:10.010000"],["2024-07-25T12:59:11.010000"],["2024-07-25T12:59:12.010000"],["2024-07-25T12:59:13.010000"],["2024-07-25T12:59:14.010000"],["2024-07-25T12:59:15.010000"],["2024-07-25T12:59:16.010000"],["2024-07-25T12:59:17.010000"],["2024-07-25T12:59:18.010000"],["2024-07-25T12:59:19.010000"],["2024-07-25T12:59:20.010000"],["2024-07-25T12:59:21.010000"],["2024-07-25T12:59:22.010000"],["2024-07-25T12:59:23.010000"],["2024-07-25T12:59:24.010000"],["2024-07-25T12:59:25.010000"],["2024-07-25T12:59:26.010000"],["2024-07-25T12:59:27.010000"],["2024-07-25T12:59:28.010000"],["2024-07-25T12:59:29.010000"],["2024-07-25T12:59:30.010000"],["2024-07-25T12:59:31.010000"],["2024-07-25T12:59:32.010000"],["2024-07-25T12:59:33.010000"],["2024-07-25T12:59:34.010000"],["2024-07-25T12:59:35.010000"],["2024-07-25T12:59:36.010000"],["2024-07-25T12:59:37.010000"],["2024-07-25T12:59:38.010000"],["2024-07-25T12:59:39.010000"],["2024-07-25T12:59:40.010000"],["2024-07-25T12:59:41.010000"],["2024-07-25T12:59:42.010000"],["2024-07-25T12:59:43.010000"],["2024-07-25T12:59:44.010000"],["2024-07-25T12:59:45.010000"],["2024-07-25T12:59:46.010000"],["2024-07-25T12:59:47.010000"],["2024-07-25T12:59:48.010000"],["2024-07-25T12:59:49.010000"],["2024-07-25T12:59:50.010000"],["2024-07-25T12:59:51.010000"],["2024-07-25T12:59:52.010000"],["2024-07-25T12:59:53.010000"],["2024-07-25T12:59:54.010000"],["2024-07-25T12:59:55.010000"],["2024-07-25T12:59:56.010000"],["2024-07-25T12:59:57.010000"],["2024-07-25T12:59:58.010000"],["2024-07-25T12:59:59.010000"],["2024-07-25T13:00:00.010000"],["2024-07-25T13:00:01.010000"],["2024-07-25T13:00:02.010000"],["2024-07-25T13:00:03.010000"],["2024-07-25T13:00:04.010000"],["2024-07-25T13:00:05.010000"],["2024-07-25T13:00:06.010000"],["2024-07-25T13:00:07.010000"],["2024-07-25T13:00:08.010000"],["2024-07-25T13:00:09.010000"],["2024-07-25T13:00:10.010000"],["2024-07-25T13:00:11.010000"],["2024-07-25T13:00:12.010000"],["2024-07-25T13:00:13.010000"],["2024-07-25T13:00:14.010000"],["2024-07-25T13:00:15.010000"],["2024-07-25T13:00:16.010000"],["2024-07-25T13:00:17.010000"],["2024-07-25T13:00:18.010000"],["2024-07-25T13:00:19.010000"],["2024-07-25T13:00:20.010000"],["2024-07-25T13:00:21.010000"],["2024-07-25T13:00:22.010000"],["2024-07-25T13:00:23.010000"],["2024-07-25T13:00:24.010000"],["2024-07-25T13:00:25.010000"],["2024-07-25T13:00:26.010000"],["2024-07-25T13:00:27.010000"],["2024-07-25T13:00:28.010000"],["2024-07-25T13:00:29.010000"],["2024-07-25T13:00:30.010000"],["2024-07-25T13:00:31.010000"],["2024-07-25T13:00:32.010000"],["2024-07-25T13:00:33.010000"],["2024-07-25T13:00:34.010000"],["2024-07-25T13:00:35.010000"],["2024-07-25T13:00:36.010000"],["2024-07-25T13:00:37.010000"],["2024-07-25T13:00:38.010000"],["2024-07-25T13:00:39.010000"],["2024-07-25T13:00:40.010000"],["2024-07-25T13:00:41.010000"],["2024-07-25T13:00:42.010000"],["2024-07-25T13:00:43.010000"],["2024-07-25T13:00:44.010000"],["2024-07-25T13:00:45.010000"],["2024-07-25T13:00:46.010000"],["2024-07-25T13:00:47.010000"],["2024-07-25T13:00:48.010000"],["2024-07-25T13:00:49.010000"],["2024-07-25T13:00:50.010000"],["2024-07-25T13:00:51.010000"],["2024-07-25T13:00:52.010000"],["2024-07-25T13:00:53.010000"],["2024-07-25T13:00:54.010000"],["2024-07-25T13:00:55.010000"],["2024-07-25T13:00:56.010000"],["2024-07-25T13:00:57.010000"],["2024-07-25T13:00:58.010000"],["2024-07-25T13:00:59.010000"],["2024-07-25T13:01:00.010000"],["2024-07-25T13:01:01.010000"],["2024-07-25T13:01:02.010000"],["2024-07-25T13:01:03.010000"],["2024-07-25T13:01:04.010000"],["2024-07-25T13:01:05.010000"],["2024-07-25T13:01:06.010000"],["2024-07-25T13:01:07.010000"],["2024-07-25T13:01:08.010000"],["2024-07-25T13:01:09.010000"],["2024-07-25T13:01:10.010000"],["2024-07-25T13:01:11.010000"],["2024-07-25T13:01:12.010000"],["2024-07-25T13:01:13.010000"],["2024-07-25T13:01:14.010000"],["2024-07-25T13:01:15.010000"],["2024-07-25T13:01:16.010000"],["2024-07-25T13:01:17.010000"],["2024-07-25T13:01:18.010000"],["2024-07-25T13:01:19.010000"],["2024-07-25T13:01:20.010000"],["2024-07-25T13:01:21.010000"],["2024-07-25T13:01:22.010000"],["2024-07-25T13:01:23.010000"],["2024-07-25T13:01:24.010000"],["2024-07-25T13:01:25.010000"],["2024-07-25T13:01:26.010000"],["2024-07-25T13:01:27.010000"],["2024-07-25T13:01:28.010000"],["2024-07-25T13:01:29.010000"],["2024-07-25T13:01:30.010000"],["2024-07-25T13:01:31.010000"],["2024-07-25T13:01:32.010000"],["2024-07-25T13:01:33.010000"],["2024-07-25T13:01:34.010000"],["2024-07-25T13:01:35.010000"],["2024-07-25T13:01:36.010000"],["2024-07-25T13:01:37.010000"],["2024-07-25T13:01:38.010000"],["2024-07-25T13:01:39.010000"],["2024-07-25T13:01:40.010000"],["2024-07-25T13:01:41.010000"],["2024-07-25T13:01:42.010000"],["2024-07-25T13:01:43.010000"],["2024-07-25T13:01:44.010000"],["2024-07-25T13:01:45.010000"],["2024-07-25T13:01:46.010000"],["2024-07-25T13:01:47.010000"],["2024-07-25T13:01:48.010000"],["2024-07-25T13:01:49.010000"],["2024-07-25T13:01:50.010000"],["2024-07-25T13:01:51.010000"],["2024-07-25T13:01:52.010000"],["2024-07-25T13:01:53.010000"],["2024-07-25T13:01:54.010000"],["2024-07-25T13:01:55.010000"],["2024-07-25T13:01:56.010000"],["2024-07-25T13:01:57.010000"],["2024-07-25T13:01:58.010000"],["2024-07-25T13:01:59.010000"],["2024-07-25T13:02:00.010000"],["2024-07-25T13:02:01.010000"],["2024-07-25T13:02:02.010000"],["2024-07-25T13:02:03.010000"],["2024-07-25T13:02:04.010000"],["2024-07-25T13:02:05.010000"],["2024-07-25T13:02:06.010000"],["2024-07-25T13:02:07.010000"],["2024-07-25T13:02:08.010000"],["2024-07-25T13:02:09.010000"],["2024-07-25T13:02:10.010000"],["2024-07-25T13:02:11.010000"],["2024-07-25T13:02:12.010000"],["2024-07-25T13:02:13.010000"],["2024-07-25T13:02:14.010000"],["2024-07-25T13:02:15.010000"],["2024-07-25T13:02:16.010000"],["2024-07-25T13:02:17.010000"],["2024-07-25T13:02:18.010000"],["2024-07-25T13:02:19.010000"],["2024-07-25T13:02:20.010000"],["2024-07-25T13:02:21.010000"],["2024-07-25T13:02:22.010000"],["2024-07-25T13:02:23.010000"],["2024-07-25T13:02:24.010000"],["2024-07-25T13:02:25.010000"],["2024-07-25T13:02:26.010000"],["2024-07-25T13:02:27.010000"],["2024-07-25T13:02:28.010000"],["2024-07-25T13:02:29.010000"],["2024-07-25T13:02:30.010000"],["2024-07-25T13:02:31.010000"],["2024-07-25T13:02:32.010000"],["2024-07-25T13:02:33.010000"],["2024-07-25T13:02:34.010000"],["2024-07-25T13:02:35.010000"],["2024-07-25T13:02:36.010000"],["2024-07-25T13:02:37.010000"],["2024-07-25T13:02:38.010000"],["2024-07-25T13:02:39.010000"],["2024-07-25T13:02:40.010000"],["2024-07-25T13:02:41.010000"],["2024-07-25T13:02:42.010000"],["2024-07-25T13:02:43.010000"],["2024-07-25T13:02:44.010000"],["2024-07-25T13:02:45.010000"],["2024-07-25T13:02:46.010000"],["2024-07-25T13:02:47.010000"],["2024-07-25T13:02:48.010000"],["2024-07-25T13:02:49.010000"],["2024-07-25T13:02:50.010000"],["2024-07-25T13:02:51.010000"],["2024-07-25T13:02:52.010000"],["2024-07-25T13:02:53.010000"],["2024-07-25T13:02:54.010000"],["2024-07-25T13:02:55.010000"],["2024-07-25T13:02:56.010000"],["2024-07-25T13:02:57.010000"],["2024-07-25T13:02:58.010000"],["2024-07-25T13:02:59.010000"],["2024-07-25T13:03:00.010000"],["2024-07-25T13:03:01.010000"],["2024-07-25T13:03:02.010000"],["2024-07-25T13:03:03.010000"],["2024-07-25T13:03:04.010000"],["2024-07-25T13:03:05.010000"],["2024-07-25T13:03:06.010000"],["2024-07-25T13:03:07.010000"],["2024-07-25T13:03:08.010000"],["2024-07-25T13:03:09.010000"],["2024-07-25T13:03:10.010000"],["2024-07-25T13:03:11.010000"],["2024-07-25T13:03:12.010000"],["2024-07-25T13:03:13.010000"],["2024-07-25T13:03:14.010000"],["2024-07-25T13:03:15.010000"],["2024-07-25T13:03:16.010000"],["2024-07-25T13:03:17.010000"],["2024-07-25T13:03:18.010000"],["2024-07-25T13:03:19.010000"],["2024-07-25T13:03:20.010000"],["2024-07-25T13:03:21.010000"],["2024-07-25T13:03:22.010000"],["2024-07-25T13:03:23.010000"],["2024-07-25T13:03:24.010000"],["2024-07-25T13:03:25.010000"],["2024-07-25T13:03:26.010000"],["2024-07-25T13:03:27.010000"],["2024-07-25T13:03:28.010000"],["2024-07-25T13:03:29.010000"],["2024-07-25T13:03:30.010000"],["2024-07-25T13:03:31.010000"],["2024-07-25T13:03:32.010000"],["2024-07-25T13:03:33.010000"],["2024-07-25T13:03:34.010000"],["2024-07-25T13:03:35.010000"],["2024-07-25T13:03:36.010000"],["2024-07-25T13:03:37.010000"],["2024-07-25T13:03:38.010000"],["2024-07-25T13:03:39.010000"],["2024-07-25T13:03:40.010000"],["2024-07-25T13:03:41.010000"],["2024-07-25T13:03:42.010000"],["2024-07-25T13:03:43.010000"],["2024-07-25T13:03:44.010000"],["2024-07-25T13:03:45.010000"],["2024-07-25T13:03:46.010000"],["2024-07-25T13:03:47.010000"],["2024-07-25T13:03:48.010000"],["2024-07-25T13:03:49.010000"],["2024-07-25T13:03:50.010000"],["2024-07-25T13:03:51.010000"],["2024-07-25T13:03:52.010000"],["2024-07-25T13:03:53.010000"],["2024-07-25T13:03:54.010000"],["2024-07-25T13:03:55.010000"],["2024-07-25T13:03:56.010000"],["2024-07-25T13:03:57.010000"],["2024-07-25T13:03:58.010000"],["2024-07-25T13:03:59.010000"],["2024-07-25T13:04:00.010000"],["2024-07-25T13:04:01.010000"],["2024-07-25T13:04:02.010000"],["2024-07-25T13:04:03.010000"],["2024-07-25T13:04:04.010000"],["2024-07-25T13:04:05.010000"],["2024-07-25T13:04:06.010000"],["2024-07-25T13:04:07.010000"],["2024-07-25T13:04:08.010000"],["2024-07-25T13:04:09.010000"],["2024-07-25T13:04:10.010000"],["2024-07-25T13:04:11.010000"],["2024-07-25T13:04:12.010000"],["2024-07-25T13:04:13.010000"],["2024-07-25T13:04:14.010000"],["2024-07-25T13:04:15.010000"],["2024-07-25T13:04:16.010000"],["2024-07-25T13:04:17.010000"],["2024-07-25T13:04:18.010000"],["2024-07-25T13:04:19.010000"],["2024-07-25T13:04:20.010000"],["2024-07-25T13:04:21.010000"],["2024-07-25T13:04:22.010000"],["2024-07-25T13:04:23.010000"],["2024-07-25T13:04:24.010000"],["2024-07-25T13:04:25.010000"],["2024-07-25T13:04:26.010000"],["2024-07-25T13:04:27.010000"],["2024-07-25T13:04:28.010000"],["2024-07-25T13:04:29.010000"],["2024-07-25T13:04:30.010000"],["2024-07-25T13:04:31.010000"],["2024-07-25T13:04:32.010000"],["2024-07-25T13:04:33.010000"],["2024-07-25T13:04:34.010000"],["2024-07-25T13:04:35.010000"],["2024-07-25T13:04:36.010000"],["2024-07-25T13:04:37.010000"],["2024-07-25T13:04:38.010000"],["2024-07-25T13:04:39.010000"],["2024-07-25T13:04:40.010000"],["2024-07-25T13:04:41.010000"],["2024-07-25T13:04:42.010000"],["2024-07-25T13:04:43.010000"],["2024-07-25T13:04:44.010000"],["2024-07-25T13:04:45.010000"],["2024-07-25T13:04:46.010000"],["2024-07-25T13:04:47.010000"],["2024-07-25T13:04:48.010000"],["2024-07-25T13:04:49.010000"],["2024-07-25T13:04:50.010000"],["2024-07-25T13:04:51.010000"],["2024-07-25T13:04:52.010000"],["2024-07-25T13:04:53.010000"],["2024-07-25T13:04:54.010000"],["2024-07-25T13:04:55.010000"],["2024-07-25T13:04:56.010000"],["2024-07-25T13:04:57.010000"],["2024-07-25T13:04:58.010000"],["2024-07-25T13:04:59.010000"],["2024-07-25T13:05:00.010000"],["2024-07-25T13:05:01.010000"],["2024-07-25T13:05:02.010000"],["2024-07-25T13:05:03.010000"],["2024-07-25T13:05:04.010000"],["2024-07-25T13:05:05.010000"],["2024-07-25T13:05:06.010000"],["2024-07-25T13:05:07.010000"],["2024-07-25T13:05:08.010000"],["2024-07-25T13:05:09.010000"],["2024-07-25T13:05:10.010000"],["2024-07-25T13:05:11.010000"],["2024-07-25T13:05:12.010000"],["2024-07-25T13:05:13.010000"],["2024-07-25T13:05:14.010000"],["2024-07-25T13:05:15.010000"],["2024-07-25T13:05:16.010000"],["2024-07-25T13:05:17.010000"],["2024-07-25T13:05:18.010000"],["2024-07-25T13:05:19.010000"],["2024-07-25T13:05:20.010000"],["2024-07-25T13:05:21.010000"],["2024-07-25T13:05:22.010000"],["2024-07-25T13:05:23.010000"],["2024-07-25T13:05:24.010000"],["2024-07-25T13:05:25.010000"],["2024-07-25T13:05:26.010000"],["2024-07-25T13:05:27.010000"],["2024-07-25T13:05:28.010000"],["2024-07-25T13:05:29.010000"],["2024-07-25T13:05:30.010000"],["2024-07-25T13:05:31.010000"],["2024-07-25T13:05:32.010000"],["2024-07-25T13:05:33.010000"],["2024-07-25T13:05:34.010000"],["2024-07-25T13:05:35.010000"],["2024-07-25T13:05:36.010000"],["2024-07-25T13:05:37.010000"],["2024-07-25T13:05:38.010000"],["2024-07-25T13:05:39.010000"],["2024-07-25T13:05:40.010000"],["2024-07-25T13:05:41.010000"],["2024-07-25T13:05:42.010000"],["2024-07-25T13:05:43.010000"],["2024-07-25T13:05:44.010000"],["2024-07-25T13:05:45.010000"],["2024-07-25T13:05:46.010000"],["2024-07-25T13:05:47.010000"],["2024-07-25T13:05:48.010000"],["2024-07-25T13:05:49.010000"],["2024-07-25T13:05:50.010000"],["2024-07-25T13:05:51.010000"],["2024-07-25T13:05:52.010000"],["2024-07-25T13:05:53.010000"],["2024-07-25T13:05:54.010000"],["2024-07-25T13:05:55.010000"],["2024-07-25T13:05:56.010000"],["2024-07-25T13:05:57.010000"],["2024-07-25T13:05:58.010000"],["2024-07-25T13:05:59.010000"],["2024-07-25T13:06:00.010000"],["2024-07-25T13:06:01.010000"],["2024-07-25T13:06:02.010000"],["2024-07-25T13:06:03.010000"],["2024-07-25T13:06:04.010000"],["2024-07-25T13:06:05.010000"],["2024-07-25T13:06:06.010000"],["2024-07-25T13:06:07.010000"],["2024-07-25T13:06:08.010000"],["2024-07-25T13:06:09.010000"],["2024-07-25T13:06:10.010000"],["2024-07-25T13:06:11.010000"],["2024-07-25T13:06:12.010000"],["2024-07-25T13:06:13.010000"],["2024-07-25T13:06:14.010000"],["2024-07-25T13:06:15.010000"],["2024-07-25T13:06:16.010000"],["2024-07-25T13:06:17.010000"],["2024-07-25T13:06:18.010000"],["2024-07-25T13:06:19.010000"],["2024-07-25T13:06:20.010000"],["2024-07-25T13:06:21.010000"],["2024-07-25T13:06:22.010000"],["2024-07-25T13:06:23.010000"],["2024-07-25T13:06:24.010000"],["2024-07-25T13:06:25.010000"],["2024-07-25T13:06:26.010000"],["2024-07-25T13:06:27.010000"],["2024-07-25T13:06:28.010000"],["2024-07-25T13:06:29.010000"],["2024-07-25T13:06:30.010000"],["2024-07-25T13:06:31.010000"],["2024-07-25T13:06:32.010000"],["2024-07-25T13:06:33.010000"],["2024-07-25T13:06:34.010000"],["2024-07-25T13:06:35.010000"],["2024-07-25T13:06:36.010000"],["2024-07-25T13:06:37.010000"],["2024-07-25T13:06:38.010000"],["2024-07-25T13:06:39.010000"],["2024-07-25T13:06:40.010000"],["2024-07-25T13:06:41.010000"],["2024-07-25T13:06:42.010000"],["2024-07-25T13:06:43.010000"],["2024-07-25T13:06:44.010000"],["2024-07-25T13:06:45.010000"],["2024-07-25T13:06:46.010000"],["2024-07-25T13:06:47.010000"],["2024-07-25T13:06:48.010000"],["2024-07-25T13:06:49.010000"],["2024-07-25T13:06:50.010000"],["2024-07-25T13:06:51.010000"],["2024-07-25T13:06:52.010000"],["2024-07-25T13:06:53.010000"],["2024-07-25T13:06:54.010000"],["2024-07-25T13:06:55.010000"],["2024-07-25T13:06:56.010000"],["2024-07-25T13:06:57.010000"],["2024-07-25T13:06:58.010000"],["2024-07-25T13:06:59.010000"],["2024-07-25T13:07:00.010000"],["2024-07-25T13:07:01.010000"],["2024-07-25T13:07:02.010000"],["2024-07-25T13:07:03.010000"],["2024-07-25T13:07:04.010000"],["2024-07-25T13:07:05.010000"],["2024-07-25T13:07:06.010000"],["2024-07-25T13:07:07.010000"],["2024-07-25T13:07:08.010000"],["2024-07-25T13:07:09.010000"],["2024-07-25T13:07:10.010000"],["2024-07-25T13:07:11.010000"],["2024-07-25T13:07:12.010000"],["2024-07-25T13:07:13.010000"],["2024-07-25T13:07:14.010000"],["2024-07-25T13:07:15.010000"],["2024-07-25T13:07:16.010000"],["2024-07-25T13:07:17.010000"],["2024-07-25T13:07:18.010000"],["2024-07-25T13:07:19.010000"],["2024-07-25T13:07:20.010000"],["2024-07-25T13:07:21.010000"],["2024-07-25T13:07:22.010000"],["2024-07-25T13:07:23.010000"],["2024-07-25T13:07:24.010000"],["2024-07-25T13:07:25.010000"],["2024-07-25T13:07:26.010000"],["2024-07-25T13:07:27.010000"],["2024-07-25T13:07:28.010000"],["2024-07-25T13:07:29.010000"],["2024-07-25T13:07:30.010000"],["2024-07-25T13:07:31.010000"],["2024-07-25T13:07:32.010000"],["2024-07-25T13:07:33.010000"],["2024-07-25T13:07:34.010000"],["2024-07-25T13:07:35.010000"],["2024-07-25T13:07:36.010000"],["2024-07-25T13:07:37.010000"],["2024-07-25T13:07:38.010000"],["2024-07-25T13:07:39.010000"],["2024-07-25T13:07:40.010000"],["2024-07-25T13:07:41.010000"],["2024-07-25T13:07:42.010000"],["2024-07-25T13:07:43.010000"],["2024-07-25T13:07:44.010000"],["2024-07-25T13:07:45.010000"],["2024-07-25T13:07:46.010000"],["2024-07-25T13:07:47.010000"],["2024-07-25T13:07:48.010000"],["2024-07-25T13:07:49.010000"],["2024-07-25T13:07:50.010000"],["2024-07-25T13:07:51.010000"],["2024-07-25T13:07:52.010000"],["2024-07-25T13:07:53.010000"],["2024-07-25T13:07:54.010000"],["2024-07-25T13:07:55.010000"],["2024-07-25T13:07:56.010000"],["2024-07-25T13:07:57.010000"],["2024-07-25T13:07:58.010000"],["2024-07-25T13:07:59.010000"],["2024-07-25T13:08:00.010000"],["2024-07-25T13:08:01.010000"],["2024-07-25T13:08:02.010000"],["2024-07-25T13:08:03.010000"],["2024-07-25T13:08:04.010000"],["2024-07-25T13:08:05.010000"],["2024-07-25T13:08:06.010000"],["2024-07-25T13:08:07.010000"],["2024-07-25T13:08:08.010000"],["2024-07-25T13:08:09.010000"],["2024-07-25T13:08:10.010000"],["2024-07-25T13:08:11.010000"],["2024-07-25T13:08:12.010000"],["2024-07-25T13:08:13.010000"],["2024-07-25T13:08:14.010000"],["2024-07-25T13:08:15.010000"],["2024-07-25T13:08:16.010000"],["2024-07-25T13:08:17.010000"],["2024-07-25T13:08:18.010000"],["2024-07-25T13:08:19.010000"],["2024-07-25T13:08:20.010000"],["2024-07-25T13:08:21.010000"],["2024-07-25T13:08:22.010000"],["2024-07-25T13:08:23.010000"],["2024-07-25T13:08:24.010000"],["2024-07-25T13:08:25.010000"],["2024-07-25T13:08:26.010000"],["2024-07-25T13:08:27.010000"],["2024-07-25T13:08:28.010000"],["2024-07-25T13:08:29.010000"],["2024-07-25T13:08:30.010000"],["2024-07-25T13:08:31.010000"],["2024-07-25T13:08:32.010000"],["2024-07-25T13:08:33.010000"],["2024-07-25T13:08:34.010000"],["2024-07-25T13:08:35.010000"],["2024-07-25T13:08:36.010000"],["2024-07-25T13:08:37.010000"],["2024-07-25T13:08:38.010000"],["2024-07-25T13:08:39.010000"],["2024-07-25T13:08:40.010000"],["2024-07-25T13:08:41.010000"],["2024-07-25T13:08:42.010000"],["2024-07-25T13:08:43.010000"],["2024-07-25T13:08:44.010000"],["2024-07-25T13:08:45.010000"],["2024-07-25T13:08:46.010000"],["2024-07-25T13:08:47.010000"],["2024-07-25T13:08:48.010000"],["2024-07-25T13:08:49.010000"],["2024-07-25T13:08:50.010000"],["2024-07-25T13:08:51.010000"],["2024-07-25T13:08:52.010000"],["2024-07-25T13:08:53.010000"],["2024-07-25T13:08:54.010000"],["2024-07-25T13:08:55.010000"],["2024-07-25T13:08:56.010000"],["2024-07-25T13:08:57.010000"],["2024-07-25T13:08:58.010000"],["2024-07-25T13:08:59.010000"],["2024-07-25T13:09:00.010000"],["2024-07-25T13:09:01.010000"],["2024-07-25T13:09:02.010000"],["2024-07-25T13:09:03.010000"],["2024-07-25T13:09:04.010000"],["2024-07-25T13:09:05.010000"],["2024-07-25T13:09:06.010000"],["2024-07-25T13:09:07.010000"],["2024-07-25T13:09:08.010000"],["2024-07-25T13:09:09.010000"],["2024-07-25T13:09:10.010000"],["2024-07-25T13:09:11.010000"],["2024-07-25T13:09:12.010000"],["2024-07-25T13:09:13.010000"],["2024-07-25T13:09:14.010000"],["2024-07-25T13:09:15.010000"],["2024-07-25T13:09:16.010000"],["2024-07-25T13:09:17.010000"],["2024-07-25T13:09:18.010000"],["2024-07-25T13:09:19.010000"],["2024-07-25T13:09:20.010000"],["2024-07-25T13:09:21.010000"],["2024-07-25T13:09:22.010000"],["2024-07-25T13:09:23.010000"],["2024-07-25T13:09:24.010000"],["2024-07-25T13:09:25.010000"],["2024-07-25T13:09:26.010000"],["2024-07-25T13:09:27.010000"],["2024-07-25T13:09:28.010000"],["2024-07-25T13:09:29.010000"],["2024-07-25T13:09:30.010000"],["2024-07-25T13:09:31.010000"],["2024-07-25T13:09:32.010000"],["2024-07-25T13:09:33.010000"],["2024-07-25T13:09:34.010000"],["2024-07-25T13:09:35.010000"],["2024-07-25T13:09:36.010000"],["2024-07-25T13:09:37.010000"],["2024-07-25T13:09:38.010000"],["2024-07-25T13:09:39.010000"],["2024-07-25T13:09:40.010000"],["2024-07-25T13:09:41.010000"],["2024-07-25T13:09:42.010000"],["2024-07-25T13:09:43.010000"],["2024-07-25T13:09:44.010000"],["2024-07-25T13:09:45.010000"],["2024-07-25T13:09:46.010000"],["2024-07-25T13:09:47.010000"],["2024-07-25T13:09:48.010000"],["2024-07-25T13:09:49.010000"],["2024-07-25T13:09:50.010000"],["2024-07-25T13:09:51.010000"],["2024-07-25T13:09:52.010000"],["2024-07-25T13:09:53.010000"],["2024-07-25T13:09:54.010000"],["2024-07-25T13:09:55.010000"],["2024-07-25T13:09:56.010000"],["2024-07-25T13:09:57.010000"],["2024-07-25T13:09:58.010000"],["2024-07-25T13:09:59.010000"],["2024-07-25T13:10:00.010000"],["2024-07-25T13:10:01.010000"],["2024-07-25T13:10:02.010000"],["2024-07-25T13:10:03.010000"],["2024-07-25T13:10:04.010000"],["2024-07-25T13:10:05.010000"],["2024-07-25T13:10:06.010000"],["2024-07-25T13:10:07.010000"],["2024-07-25T13:10:08.010000"],["2024-07-25T13:10:09.010000"],["2024-07-25T13:10:10.010000"],["2024-07-25T13:10:11.010000"],["2024-07-25T13:10:12.010000"],["2024-07-25T13:10:13.010000"],["2024-07-25T13:10:14.010000"],["2024-07-25T13:10:15.010000"],["2024-07-25T13:10:16.010000"],["2024-07-25T13:10:17.010000"],["2024-07-25T13:10:18.010000"],["2024-07-25T13:10:19.010000"],["2024-07-25T13:10:20.010000"],["2024-07-25T13:10:21.010000"],["2024-07-25T13:10:22.010000"],["2024-07-25T13:10:23.010000"],["2024-07-25T13:10:24.010000"],["2024-07-25T13:10:25.010000"],["2024-07-25T13:10:26.010000"],["2024-07-25T13:10:27.010000"],["2024-07-25T13:10:28.010000"],["2024-07-25T13:10:29.010000"],["2024-07-25T13:10:30.010000"],["2024-07-25T13:10:31.010000"],["2024-07-25T13:10:32.010000"],["2024-07-25T13:10:33.010000"],["2024-07-25T13:10:34.010000"],["2024-07-25T13:10:35.010000"],["2024-07-25T13:10:36.010000"],["2024-07-25T13:10:37.010000"],["2024-07-25T13:10:38.010000"],["2024-07-25T13:10:39.010000"],["2024-07-25T13:10:40.010000"],["2024-07-25T13:10:41.010000"],["2024-07-25T13:10:42.010000"],["2024-07-25T13:10:43.010000"],["2024-07-25T13:10:44.010000"],["2024-07-25T13:10:45.010000"],["2024-07-25T13:10:46.010000"],["2024-07-25T13:10:47.010000"],["2024-07-25T13:10:48.010000"],["2024-07-25T13:10:49.010000"],["2024-07-25T13:10:50.010000"],["2024-07-25T13:10:51.010000"],["2024-07-25T13:10:52.010000"],["2024-07-25T13:10:53.010000"],["2024-07-25T13:10:54.010000"],["2024-07-25T13:10:55.010000"],["2024-07-25T13:10:56.010000"],["2024-07-25T13:10:57.010000"],["2024-07-25T13:10:58.010000"],["2024-07-25T13:10:59.010000"],["2024-07-25T13:11:00.010000"],["2024-07-25T13:11:01.010000"],["2024-07-25T13:11:02.010000"],["2024-07-25T13:11:03.010000"],["2024-07-25T13:11:04.010000"],["2024-07-25T13:11:05.010000"],["2024-07-25T13:11:06.010000"],["2024-07-25T13:11:07.010000"],["2024-07-25T13:11:08.010000"],["2024-07-25T13:11:09.010000"],["2024-07-25T13:11:10.010000"],["2024-07-25T13:11:11.010000"],["2024-07-25T13:11:12.010000"],["2024-07-25T13:11:13.010000"],["2024-07-25T13:11:14.010000"],["2024-07-25T13:11:15.010000"],["2024-07-25T13:11:16.010000"],["2024-07-25T13:11:17.010000"],["2024-07-25T13:11:18.010000"],["2024-07-25T13:11:19.010000"],["2024-07-25T13:11:20.010000"],["2024-07-25T13:11:21.010000"],["2024-07-25T13:11:22.010000"],["2024-07-25T13:11:23.010000"],["2024-07-25T13:11:24.010000"],["2024-07-25T13:11:25.010000"],["2024-07-25T13:11:26.010000"],["2024-07-25T13:11:27.010000"],["2024-07-25T13:11:28.010000"],["2024-07-25T13:11:29.010000"],["2024-07-25T13:11:30.010000"],["2024-07-25T13:11:31.010000"],["2024-07-25T13:11:32.010000"],["2024-07-25T13:11:33.010000"],["2024-07-25T13:11:34.010000"],["2024-07-25T13:11:35.010000"],["2024-07-25T13:11:36.010000"],["2024-07-25T13:11:37.010000"],["2024-07-25T13:11:38.010000"],["2024-07-25T13:11:39.010000"],["2024-07-25T13:11:40.010000"],["2024-07-25T13:11:41.010000"],["2024-07-25T13:11:42.010000"],["2024-07-25T13:11:43.010000"],["2024-07-25T13:11:44.010000"],["2024-07-25T13:11:45.010000"],["2024-07-25T13:11:46.010000"],["2024-07-25T13:11:47.010000"],["2024-07-25T13:11:48.010000"],["2024-07-25T13:11:49.010000"],["2024-07-25T13:11:50.010000"],["2024-07-25T13:11:51.010000"],["2024-07-25T13:11:52.010000"],["2024-07-25T13:11:53.010000"],["2024-07-25T13:11:54.010000"],["2024-07-25T13:11:55.010000"],["2024-07-25T13:11:56.010000"],["2024-07-25T13:11:57.010000"],["2024-07-25T13:11:58.010000"],["2024-07-25T13:11:59.010000"],["2024-07-25T13:12:00.010000"],["2024-07-25T13:12:01.010000"],["2024-07-25T13:12:02.010000"],["2024-07-25T13:12:03.010000"],["2024-07-25T13:12:04.010000"],["2024-07-25T13:12:05.010000"],["2024-07-25T13:12:06.010000"],["2024-07-25T13:12:07.010000"],["2024-07-25T13:12:08.010000"],["2024-07-25T13:12:09.010000"],["2024-07-25T13:12:10.010000"],["2024-07-25T13:12:11.010000"],["2024-07-25T13:12:12.010000"],["2024-07-25T13:12:13.010000"],["2024-07-25T13:12:14.010000"],["2024-07-25T13:12:15.010000"],["2024-07-25T13:12:16.010000"],["2024-07-25T13:12:17.010000"],["2024-07-25T13:12:18.010000"],["2024-07-25T13:12:19.010000"],["2024-07-25T13:12:20.010000"],["2024-07-25T13:12:21.010000"],["2024-07-25T13:12:22.010000"],["2024-07-25T13:12:23.010000"],["2024-07-25T13:12:24.010000"],["2024-07-25T13:12:25.010000"],["2024-07-25T13:12:26.010000"],["2024-07-25T13:12:27.010000"],["2024-07-25T13:12:28.010000"],["2024-07-25T13:12:29.010000"],["2024-07-25T13:12:30.010000"],["2024-07-25T13:12:31.010000"],["2024-07-25T13:12:32.010000"],["2024-07-25T13:12:33.010000"],["2024-07-25T13:12:34.010000"],["2024-07-25T13:12:35.010000"],["2024-07-25T13:12:36.010000"],["2024-07-25T13:12:37.010000"],["2024-07-25T13:12:38.010000"],["2024-07-25T13:12:39.010000"],["2024-07-25T13:12:40.010000"],["2024-07-25T13:12:41.010000"],["2024-07-25T13:12:42.010000"],["2024-07-25T13:12:43.010000"],["2024-07-25T13:12:44.010000"],["2024-07-25T13:12:45.010000"],["2024-07-25T13:12:46.010000"],["2024-07-25T13:12:47.010000"],["2024-07-25T13:12:48.010000"],["2024-07-25T13:12:49.010000"],["2024-07-25T13:12:50.010000"],["2024-07-25T13:12:51.010000"],["2024-07-25T13:12:52.010000"],["2024-07-25T13:12:53.010000"],["2024-07-25T13:12:54.010000"],["2024-07-25T13:12:55.010000"],["2024-07-25T13:12:56.010000"],["2024-07-25T13:12:57.010000"],["2024-07-25T13:12:58.010000"],["2024-07-25T13:12:59.010000"],["2024-07-25T13:13:00.010000"],["2024-07-25T13:13:01.010000"],["2024-07-25T13:13:02.010000"],["2024-07-25T13:13:03.010000"],["2024-07-25T13:13:04.010000"],["2024-07-25T13:13:05.010000"],["2024-07-25T13:13:06.010000"],["2024-07-25T13:13:07.010000"],["2024-07-25T13:13:08.010000"],["2024-07-25T13:13:09.010000"],["2024-07-25T13:13:10.010000"],["2024-07-25T13:13:11.010000"],["2024-07-25T13:13:12.010000"],["2024-07-25T13:13:13.010000"],["2024-07-25T13:13:14.010000"],["2024-07-25T13:13:15.010000"],["2024-07-25T13:13:16.010000"],["2024-07-25T13:13:17.010000"],["2024-07-25T13:13:18.010000"],["2024-07-25T13:13:19.010000"],["2024-07-25T13:13:20.010000"],["2024-07-25T13:13:21.010000"],["2024-07-25T13:13:22.010000"],["2024-07-25T13:13:23.010000"],["2024-07-25T13:13:24.010000"],["2024-07-25T13:13:25.010000"],["2024-07-25T13:13:26.010000"],["2024-07-25T13:13:27.010000"],["2024-07-25T13:13:28.010000"],["2024-07-25T13:13:29.010000"],["2024-07-25T13:13:30.010000"],["2024-07-25T13:13:31.010000"],["2024-07-25T13:13:32.010000"],["2024-07-25T13:13:33.010000"],["2024-07-25T13:13:34.010000"],["2024-07-25T13:13:35.010000"],["2024-07-25T13:13:36.010000"],["2024-07-25T13:13:37.010000"],["2024-07-25T13:13:38.010000"],["2024-07-25T13:13:39.010000"],["2024-07-25T13:13:40.010000"],["2024-07-25T13:13:41.010000"],["2024-07-25T13:13:42.010000"],["2024-07-25T13:13:43.010000"],["2024-07-25T13:13:44.010000"],["2024-07-25T13:13:45.010000"],["2024-07-25T13:13:46.010000"],["2024-07-25T13:13:47.010000"],["2024-07-25T13:13:48.010000"],["2024-07-25T13:13:49.010000"],["2024-07-25T13:13:50.010000"],["2024-07-25T13:13:51.010000"],["2024-07-25T13:13:52.010000"],["2024-07-25T13:13:53.010000"],["2024-07-25T13:13:54.010000"],["2024-07-25T13:13:55.010000"],["2024-07-25T13:13:56.010000"],["2024-07-25T13:13:57.010000"],["2024-07-25T13:13:58.010000"],["2024-07-25T13:13:59.010000"],["2024-07-25T13:14:00.010000"],["2024-07-25T13:14:01.010000"],["2024-07-25T13:14:02.010000"],["2024-07-25T13:14:03.010000"],["2024-07-25T13:14:04.010000"],["2024-07-25T13:14:05.010000"],["2024-07-25T13:14:06.010000"],["2024-07-25T13:14:07.010000"],["2024-07-25T13:14:08.010000"],["2024-07-25T13:14:09.010000"],["2024-07-25T13:14:10.010000"],["2024-07-25T13:14:11.010000"],["2024-07-25T13:14:12.010000"],["2024-07-25T13:14:13.010000"],["2024-07-25T13:14:14.010000"],["2024-07-25T13:14:15.010000"],["2024-07-25T13:14:16.010000"],["2024-07-25T13:14:17.010000"],["2024-07-25T13:14:18.010000"],["2024-07-25T13:14:19.010000"],["2024-07-25T13:14:20.010000"],["2024-07-25T13:14:21.010000"],["2024-07-25T13:14:22.010000"],["2024-07-25T13:14:23.010000"],["2024-07-25T13:14:24.010000"],["2024-07-25T13:14:25.010000"],["2024-07-25T13:14:26.010000"],["2024-07-25T13:14:27.010000"],["2024-07-25T13:14:28.010000"],["2024-07-25T13:14:29.010000"],["2024-07-25T13:14:30.010000"],["2024-07-25T13:14:31.010000"],["2024-07-25T13:14:32.010000"],["2024-07-25T13:14:33.010000"],["2024-07-25T13:14:34.010000"],["2024-07-25T13:14:35.010000"],["2024-07-25T13:14:36.010000"],["2024-07-25T13:14:37.010000"],["2024-07-25T13:14:38.010000"],["2024-07-25T13:14:39.010000"],["2024-07-25T13:14:40.010000"],["2024-07-25T13:14:41.010000"],["2024-07-25T13:14:42.010000"],["2024-07-25T13:14:43.010000"],["2024-07-25T13:14:44.010000"],["2024-07-25T13:14:45.010000"],["2024-07-25T13:14:46.010000"],["2024-07-25T13:14:47.010000"],["2024-07-25T13:14:48.010000"],["2024-07-25T13:14:49.010000"],["2024-07-25T13:14:50.010000"],["2024-07-25T13:14:51.010000"],["2024-07-25T13:14:52.010000"],["2024-07-25T13:14:53.010000"],["2024-07-25T13:14:54.010000"],["2024-07-25T13:14:55.010000"],["2024-07-25T13:14:56.010000"],["2024-07-25T13:14:57.010000"],["2024-07-25T13:14:58.010000"],["2024-07-25T13:14:59.010000"],["2024-07-25T13:15:00.010000"],["2024-07-25T13:15:01.010000"],["2024-07-25T13:15:02.010000"],["2024-07-25T13:15:03.010000"],["2024-07-25T13:15:04.010000"],["2024-07-25T13:15:05.010000"],["2024-07-25T13:15:06.010000"],["2024-07-25T13:15:07.010000"],["2024-07-25T13:15:08.010000"],["2024-07-25T13:15:09.010000"],["2024-07-25T13:15:10.010000"],["2024-07-25T13:15:11.010000"],["2024-07-25T13:15:12.010000"],["2024-07-25T13:15:13.010000"],["2024-07-25T13:15:14.010000"],["2024-07-25T13:15:15.010000"],["2024-07-25T13:15:16.010000"],["2024-07-25T13:15:17.010000"],["2024-07-25T13:15:18.010000"],["2024-07-25T13:15:19.010000"],["2024-07-25T13:15:20.010000"],["2024-07-25T13:15:21.010000"],["2024-07-25T13:15:22.010000"],["2024-07-25T13:15:23.010000"],["2024-07-25T13:15:24.010000"],["2024-07-25T13:15:25.010000"],["2024-07-25T13:15:26.010000"],["2024-07-25T13:15:27.010000"],["2024-07-25T13:15:28.010000"],["2024-07-25T13:15:29.010000"],["2024-07-25T13:15:30.010000"],["2024-07-25T13:15:31.010000"],["2024-07-25T13:15:32.010000"],["2024-07-25T13:15:33.010000"],["2024-07-25T13:15:34.010000"],["2024-07-25T13:15:35.010000"],["2024-07-25T13:15:36.010000"],["2024-07-25T13:15:37.010000"],["2024-07-25T13:15:38.010000"],["2024-07-25T13:15:39.010000"],["2024-07-25T13:15:40.010000"],["2024-07-25T13:15:41.010000"],["2024-07-25T13:15:42.010000"],["2024-07-25T13:15:43.010000"],["2024-07-25T13:15:44.010000"],["2024-07-25T13:15:45.010000"],["2024-07-25T13:15:46.010000"],["2024-07-25T13:15:47.010000"],["2024-07-25T13:15:48.010000"],["2024-07-25T13:15:49.010000"],["2024-07-25T13:15:50.010000"],["2024-07-25T13:15:51.010000"],["2024-07-25T13:15:52.010000"],["2024-07-25T13:15:53.010000"],["2024-07-25T13:15:54.010000"],["2024-07-25T13:15:55.010000"],["2024-07-25T13:15:56.010000"],["2024-07-25T13:15:57.010000"],["2024-07-25T13:15:58.010000"],["2024-07-25T13:15:59.010000"],["2024-07-25T13:16:00.010000"],["2024-07-25T13:16:01.010000"],["2024-07-25T13:16:02.010000"],["2024-07-25T13:16:03.010000"],["2024-07-25T13:16:04.010000"],["2024-07-25T13:16:05.010000"],["2024-07-25T13:16:06.010000"],["2024-07-25T13:16:07.010000"],["2024-07-25T13:16:08.010000"],["2024-07-25T13:16:09.010000"],["2024-07-25T13:16:10.010000"],["2024-07-25T13:16:11.010000"],["2024-07-25T13:16:12.010000"],["2024-07-25T13:16:13.010000"],["2024-07-25T13:16:14.010000"],["2024-07-25T13:16:15.010000"],["2024-07-25T13:16:16.010000"],["2024-07-25T13:16:17.010000"],["2024-07-25T13:16:18.010000"],["2024-07-25T13:16:19.010000"],["2024-07-25T13:16:20.010000"],["2024-07-25T13:16:21.010000"],["2024-07-25T13:16:22.010000"],["2024-07-25T13:16:23.010000"],["2024-07-25T13:16:24.010000"],["2024-07-25T13:16:25.010000"],["2024-07-25T13:16:26.010000"],["2024-07-25T13:16:27.010000"],["2024-07-25T13:16:28.010000"],["2024-07-25T13:16:29.010000"],["2024-07-25T13:16:30.010000"],["2024-07-25T13:16:31.010000"],["2024-07-25T13:16:32.010000"],["2024-07-25T13:16:33.010000"],["2024-07-25T13:16:34.010000"],["2024-07-25T13:16:35.010000"],["2024-07-25T13:16:36.010000"],["2024-07-25T13:16:37.010000"],["2024-07-25T13:16:38.010000"],["2024-07-25T13:16:39.010000"],["2024-07-25T13:16:40.010000"],["2024-07-25T13:16:41.010000"],["2024-07-25T13:16:42.010000"],["2024-07-25T13:16:43.010000"],["2024-07-25T13:16:44.010000"],["2024-07-25T13:16:45.010000"],["2024-07-25T13:16:46.010000"],["2024-07-25T13:16:47.010000"],["2024-07-25T13:16:48.010000"],["2024-07-25T13:16:49.010000"],["2024-07-25T13:16:50.010000"],["2024-07-25T13:16:51.010000"],["2024-07-25T13:16:52.010000"],["2024-07-25T13:16:53.010000"],["2024-07-25T13:16:54.010000"],["2024-07-25T13:16:55.010000"],["2024-07-25T13:16:56.010000"],["2024-07-25T13:16:57.010000"],["2024-07-25T13:16:58.010000"],["2024-07-25T13:16:59.010000"],["2024-07-25T13:17:00.010000"],["2024-07-25T13:17:01.010000"],["2024-07-25T13:17:02.010000"],["2024-07-25T13:17:03.010000"],["2024-07-25T13:17:04.010000"],["2024-07-25T13:17:05.010000"],["2024-07-25T13:17:06.010000"],["2024-07-25T13:17:07.010000"],["2024-07-25T13:17:08.010000"],["2024-07-25T13:17:09.010000"],["2024-07-25T13:17:10.010000"],["2024-07-25T13:17:11.010000"],["2024-07-25T13:17:12.010000"],["2024-07-25T13:17:13.010000"],["2024-07-25T13:17:14.010000"],["2024-07-25T13:17:15.010000"],["2024-07-25T13:17:16.010000"],["2024-07-25T13:17:17.010000"],["2024-07-25T13:17:18.010000"],["2024-07-25T13:17:19.010000"],["2024-07-25T13:17:20.010000"],["2024-07-25T13:17:21.010000"],["2024-07-25T13:17:22.010000"],["2024-07-25T13:17:23.010000"],["2024-07-25T13:17:24.010000"],["2024-07-25T13:17:25.010000"],["2024-07-25T13:17:26.010000"],["2024-07-25T13:17:27.010000"],["2024-07-25T13:17:28.010000"],["2024-07-25T13:17:29.010000"],["2024-07-25T13:17:30.010000"],["2024-07-25T13:17:31.010000"],["2024-07-25T13:17:32.010000"],["2024-07-25T13:17:33.010000"],["2024-07-25T13:17:34.010000"],["2024-07-25T13:17:35.010000"],["2024-07-25T13:17:36.010000"],["2024-07-25T13:17:37.010000"],["2024-07-25T13:17:38.010000"],["2024-07-25T13:17:39.010000"],["2024-07-25T13:17:40.010000"],["2024-07-25T13:17:41.010000"],["2024-07-25T13:17:42.010000"],["2024-07-25T13:17:43.010000"],["2024-07-25T13:17:44.010000"],["2024-07-25T13:17:45.010000"],["2024-07-25T13:17:46.010000"],["2024-07-25T13:17:47.010000"],["2024-07-25T13:17:48.010000"],["2024-07-25T13:17:49.010000"],["2024-07-25T13:17:50.010000"],["2024-07-25T13:17:51.010000"],["2024-07-25T13:17:52.010000"],["2024-07-25T13:17:53.010000"],["2024-07-25T13:17:54.010000"],["2024-07-25T13:17:55.010000"],["2024-07-25T13:17:56.010000"],["2024-07-25T13:17:57.010000"],["2024-07-25T13:17:58.010000"],["2024-07-25T13:17:59.010000"],["2024-07-25T13:18:00.010000"],["2024-07-25T13:18:01.010000"],["2024-07-25T13:18:02.010000"],["2024-07-25T13:18:03.010000"],["2024-07-25T13:18:04.010000"],["2024-07-25T13:18:05.010000"],["2024-07-25T13:18:06.010000"],["2024-07-25T13:18:07.010000"],["2024-07-25T13:18:08.010000"],["2024-07-25T13:18:09.010000"],["2024-07-25T13:18:10.010000"],["2024-07-25T13:18:11.010000"],["2024-07-25T13:18:12.010000"],["2024-07-25T13:18:13.010000"],["2024-07-25T13:18:14.010000"],["2024-07-25T13:18:15.010000"],["2024-07-25T13:18:16.010000"],["2024-07-25T13:18:17.010000"],["2024-07-25T13:18:18.010000"],["2024-07-25T13:18:19.010000"],["2024-07-25T13:18:20.010000"],["2024-07-25T13:18:21.010000"],["2024-07-25T13:18:22.010000"],["2024-07-25T13:18:23.010000"],["2024-07-25T13:18:24.010000"],["2024-07-25T13:18:25.010000"],["2024-07-25T13:18:26.010000"],["2024-07-25T13:18:27.010000"],["2024-07-25T13:18:28.010000"],["2024-07-25T13:18:29.010000"],["2024-07-25T13:18:30.010000"],["2024-07-25T13:18:31.010000"],["2024-07-25T13:18:32.010000"],["2024-07-25T13:18:33.010000"],["2024-07-25T13:18:34.010000"],["2024-07-25T13:18:35.010000"],["2024-07-25T13:18:36.010000"],["2024-07-25T13:18:37.010000"],["2024-07-25T13:18:38.010000"],["2024-07-25T13:18:39.010000"],["2024-07-25T13:18:40.010000"],["2024-07-25T13:18:41.010000"],["2024-07-25T13:18:42.010000"],["2024-07-25T13:18:43.010000"],["2024-07-25T13:18:44.010000"],["2024-07-25T13:18:45.010000"],["2024-07-25T13:18:46.010000"],["2024-07-25T13:18:47.010000"],["2024-07-25T13:18:48.010000"],["2024-07-25T13:18:49.010000"],["2024-07-25T13:18:50.010000"],["2024-07-25T13:18:51.010000"],["2024-07-25T13:18:52.010000"],["2024-07-25T13:18:53.010000"],["2024-07-25T13:18:54.010000"],["2024-07-25T13:18:55.010000"],["2024-07-25T13:18:56.010000"],["2024-07-25T13:18:57.010000"],["2024-07-25T13:18:58.010000"],["2024-07-25T13:18:59.010000"],["2024-07-25T13:19:00.010000"],["2024-07-25T13:19:01.010000"],["2024-07-25T13:19:02.010000"],["2024-07-25T13:19:03.010000"],["2024-07-25T13:19:04.010000"],["2024-07-25T13:19:05.010000"],["2024-07-25T13:19:06.010000"],["2024-07-25T13:19:07.010000"],["2024-07-25T13:19:08.010000"],["2024-07-25T13:19:09.010000"],["2024-07-25T13:19:10.010000"],["2024-07-25T13:19:11.010000"],["2024-07-25T13:19:12.010000"],["2024-07-25T13:19:13.010000"],["2024-07-25T13:19:14.010000"],["2024-07-25T13:19:15.010000"],["2024-07-25T13:19:16.010000"],["2024-07-25T13:19:17.010000"],["2024-07-25T13:19:18.010000"],["2024-07-25T13:19:19.010000"],["2024-07-25T13:19:20.010000"],["2024-07-25T13:19:21.010000"],["2024-07-25T13:19:22.010000"],["2024-07-25T13:19:23.010000"],["2024-07-25T13:19:24.010000"],["2024-07-25T13:19:25.010000"],["2024-07-25T13:19:26.010000"],["2024-07-25T13:19:27.010000"],["2024-07-25T13:19:28.010000"],["2024-07-25T13:19:29.010000"],["2024-07-25T13:19:30.010000"],["2024-07-25T13:19:31.010000"],["2024-07-25T13:19:32.010000"],["2024-07-25T13:19:33.010000"],["2024-07-25T13:19:34.010000"],["2024-07-25T13:19:35.010000"],["2024-07-25T13:19:36.010000"],["2024-07-25T13:19:37.010000"],["2024-07-25T13:19:38.010000"],["2024-07-25T13:19:39.010000"],["2024-07-25T13:19:40.010000"],["2024-07-25T13:19:41.010000"],["2024-07-25T13:19:42.010000"],["2024-07-25T13:19:43.010000"],["2024-07-25T13:19:44.010000"],["2024-07-25T13:19:45.010000"],["2024-07-25T13:19:46.010000"],["2024-07-25T13:19:47.010000"],["2024-07-25T13:19:48.010000"],["2024-07-25T13:19:49.010000"],["2024-07-25T13:19:50.010000"],["2024-07-25T13:19:51.010000"],["2024-07-25T13:19:52.010000"],["2024-07-25T13:19:53.010000"],["2024-07-25T13:19:54.010000"],["2024-07-25T13:19:55.010000"],["2024-07-25T13:19:56.010000"],["2024-07-25T13:19:57.010000"],["2024-07-25T13:19:58.010000"],["2024-07-25T13:19:59.010000"],["2024-07-25T13:20:00.010000"],["2024-07-25T13:20:01.010000"],["2024-07-25T13:20:02.010000"],["2024-07-25T13:20:03.010000"],["2024-07-25T13:20:04.010000"],["2024-07-25T13:20:05.010000"],["2024-07-25T13:20:06.010000"],["2024-07-25T13:20:07.010000"],["2024-07-25T13:20:08.010000"],["2024-07-25T13:20:09.010000"],["2024-07-25T13:20:10.010000"],["2024-07-25T13:20:11.010000"],["2024-07-25T13:20:12.010000"],["2024-07-25T13:20:13.010000"],["2024-07-25T13:20:14.010000"],["2024-07-25T13:20:15.010000"],["2024-07-25T13:20:16.010000"],["2024-07-25T13:20:17.010000"],["2024-07-25T13:20:18.010000"],["2024-07-25T13:20:19.010000"],["2024-07-25T13:20:20.010000"],["2024-07-25T13:20:21.010000"],["2024-07-25T13:20:22.010000"],["2024-07-25T13:20:23.010000"],["2024-07-25T13:20:24.010000"],["2024-07-25T13:20:25.010000"],["2024-07-25T13:20:26.010000"],["2024-07-25T13:20:27.010000"],["2024-07-25T13:20:28.010000"],["2024-07-25T13:20:29.010000"],["2024-07-25T13:20:30.010000"],["2024-07-25T13:20:31.010000"],["2024-07-25T13:20:32.010000"],["2024-07-25T13:20:33.010000"],["2024-07-25T13:20:34.010000"],["2024-07-25T13:20:35.010000"],["2024-07-25T13:20:36.010000"],["2024-07-25T13:20:37.010000"],["2024-07-25T13:20:38.010000"],["2024-07-25T13:20:39.010000"],["2024-07-25T13:20:40.010000"],["2024-07-25T13:20:41.010000"],["2024-07-25T13:20:42.010000"],["2024-07-25T13:20:43.010000"],["2024-07-25T13:20:44.010000"],["2024-07-25T13:20:45.010000"],["2024-07-25T13:20:46.010000"],["2024-07-25T13:20:47.010000"],["2024-07-25T13:20:48.010000"],["2024-07-25T13:20:49.010000"],["2024-07-25T13:20:50.010000"],["2024-07-25T13:20:51.010000"],["2024-07-25T13:20:52.010000"],["2024-07-25T13:20:53.010000"],["2024-07-25T13:20:54.010000"],["2024-07-25T13:20:55.010000"],["2024-07-25T13:20:56.010000"],["2024-07-25T13:20:57.010000"],["2024-07-25T13:20:58.010000"],["2024-07-25T13:20:59.010000"],["2024-07-25T13:21:00.010000"],["2024-07-25T13:21:01.010000"],["2024-07-25T13:21:02.010000"],["2024-07-25T13:21:03.010000"],["2024-07-25T13:21:04.010000"],["2024-07-25T13:21:05.010000"],["2024-07-25T13:21:06.010000"],["2024-07-25T13:21:07.010000"],["2024-07-25T13:21:08.010000"],["2024-07-25T13:21:09.010000"],["2024-07-25T13:21:10.010000"],["2024-07-25T13:21:11.010000"],["2024-07-25T13:21:12.010000"],["2024-07-25T13:21:13.010000"],["2024-07-25T13:21:14.010000"],["2024-07-25T13:21:15.010000"],["2024-07-25T13:21:16.010000"],["2024-07-25T13:21:17.010000"],["2024-07-25T13:21:18.010000"],["2024-07-25T13:21:19.010000"],["2024-07-25T13:21:20.010000"],["2024-07-25T13:21:21.010000"],["2024-07-25T13:21:22.010000"],["2024-07-25T13:21:23.010000"],["2024-07-25T13:21:24.010000"],["2024-07-25T13:21:25.010000"],["2024-07-25T13:21:26.010000"],["2024-07-25T13:21:27.010000"],["2024-07-25T13:21:28.010000"],["2024-07-25T13:21:29.010000"],["2024-07-25T13:21:30.010000"],["2024-07-25T13:21:31.010000"],["2024-07-25T13:21:32.010000"],["2024-07-25T13:21:33.010000"],["2024-07-25T13:21:34.010000"],["2024-07-25T13:21:35.010000"],["2024-07-25T13:21:36.010000"],["2024-07-25T13:21:37.010000"],["2024-07-25T13:21:38.010000"],["2024-07-25T13:21:39.010000"],["2024-07-25T13:21:40.010000"],["2024-07-25T13:21:41.010000"],["2024-07-25T13:21:42.010000"],["2024-07-25T13:21:43.010000"],["2024-07-25T13:21:44.010000"],["2024-07-25T13:21:45.010000"],["2024-07-25T13:21:46.010000"],["2024-07-25T13:21:47.010000"],["2024-07-25T13:21:48.010000"],["2024-07-25T13:21:49.010000"],["2024-07-25T13:21:50.010000"],["2024-07-25T13:21:51.010000"],["2024-07-25T13:21:52.010000"],["2024-07-25T13:21:53.010000"],["2024-07-25T13:21:54.010000"],["2024-07-25T13:21:55.010000"],["2024-07-25T13:21:56.010000"],["2024-07-25T13:21:57.010000"],["2024-07-25T13:21:58.010000"],["2024-07-25T13:21:59.010000"],["2024-07-25T13:22:00.010000"],["2024-07-25T13:22:01.010000"],["2024-07-25T13:22:02.010000"],["2024-07-25T13:22:03.010000"],["2024-07-25T13:22:04.010000"],["2024-07-25T13:22:05.010000"],["2024-07-25T13:22:06.010000"],["2024-07-25T13:22:07.010000"],["2024-07-25T13:22:08.010000"],["2024-07-25T13:22:09.010000"],["2024-07-25T13:22:10.010000"],["2024-07-25T13:22:11.010000"],["2024-07-25T13:22:12.010000"],["2024-07-25T13:22:13.010000"],["2024-07-25T13:22:14.010000"],["2024-07-25T13:22:15.010000"],["2024-07-25T13:22:16.010000"],["2024-07-25T13:22:17.010000"],["2024-07-25T13:22:18.010000"],["2024-07-25T13:22:19.010000"],["2024-07-25T13:22:20.010000"],["2024-07-25T13:22:21.010000"],["2024-07-25T13:22:22.010000"],["2024-07-25T13:22:23.010000"],["2024-07-25T13:22:24.010000"],["2024-07-25T13:22:25.010000"],["2024-07-25T13:22:26.010000"],["2024-07-25T13:22:27.010000"],["2024-07-25T13:22:28.010000"],["2024-07-25T13:22:29.010000"],["2024-07-25T13:22:30.010000"],["2024-07-25T13:22:31.010000"],["2024-07-25T13:22:32.010000"],["2024-07-25T13:22:33.010000"],["2024-07-25T13:22:34.010000"],["2024-07-25T13:22:35.010000"],["2024-07-25T13:22:36.010000"],["2024-07-25T13:22:37.010000"],["2024-07-25T13:22:38.010000"],["2024-07-25T13:22:39.010000"],["2024-07-25T13:22:40.010000"],["2024-07-25T13:22:41.010000"],["2024-07-25T13:22:42.010000"],["2024-07-25T13:22:43.010000"],["2024-07-25T13:22:44.010000"],["2024-07-25T13:22:45.010000"],["2024-07-25T13:22:46.010000"],["2024-07-25T13:22:47.010000"],["2024-07-25T13:22:48.010000"],["2024-07-25T13:22:49.010000"],["2024-07-25T13:22:50.010000"],["2024-07-25T13:22:51.010000"],["2024-07-25T13:22:52.010000"],["2024-07-25T13:22:53.010000"],["2024-07-25T13:22:54.010000"],["2024-07-25T13:22:55.010000"],["2024-07-25T13:22:56.010000"],["2024-07-25T13:22:57.010000"],["2024-07-25T13:22:58.010000"],["2024-07-25T13:22:59.010000"],["2024-07-25T13:23:00.010000"],["2024-07-25T13:23:01.010000"],["2024-07-25T13:23:02.010000"],["2024-07-25T13:23:03.010000"],["2024-07-25T13:23:04.010000"],["2024-07-25T13:23:05.010000"],["2024-07-25T13:23:06.010000"],["2024-07-25T13:23:07.010000"],["2024-07-25T13:23:08.010000"],["2024-07-25T13:23:09.010000"],["2024-07-25T13:23:10.010000"],["2024-07-25T13:23:11.010000"],["2024-07-25T13:23:12.010000"],["2024-07-25T13:23:13.010000"],["2024-07-25T13:23:14.010000"],["2024-07-25T13:23:15.010000"],["2024-07-25T13:23:16.010000"],["2024-07-25T13:23:17.010000"],["2024-07-25T13:23:18.010000"],["2024-07-25T13:23:19.010000"],["2024-07-25T13:23:20.010000"],["2024-07-25T13:23:21.010000"],["2024-07-25T13:23:22.010000"],["2024-07-25T13:23:23.010000"],["2024-07-25T13:23:24.010000"],["2024-07-25T13:23:25.010000"],["2024-07-25T13:23:26.010000"],["2024-07-25T13:23:27.010000"],["2024-07-25T13:23:28.010000"],["2024-07-25T13:23:29.010000"],["2024-07-25T13:23:30.010000"],["2024-07-25T13:23:31.010000"],["2024-07-25T13:23:32.010000"],["2024-07-25T13:23:33.010000"],["2024-07-25T13:23:34.010000"],["2024-07-25T13:23:35.010000"],["2024-07-25T13:23:36.010000"],["2024-07-25T13:23:37.010000"],["2024-07-25T13:23:38.010000"],["2024-07-25T13:23:39.010000"],["2024-07-25T13:23:40.010000"],["2024-07-25T13:23:41.010000"],["2024-07-25T13:23:42.010000"],["2024-07-25T13:23:43.010000"],["2024-07-25T13:23:44.010000"],["2024-07-25T13:23:45.010000"],["2024-07-25T13:23:46.010000"],["2024-07-25T13:23:47.010000"],["2024-07-25T13:23:48.010000"],["2024-07-25T13:23:49.010000"],["2024-07-25T13:23:50.010000"],["2024-07-25T13:23:51.010000"],["2024-07-25T13:23:52.010000"],["2024-07-25T13:23:53.010000"],["2024-07-25T13:23:54.010000"],["2024-07-25T13:23:55.010000"],["2024-07-25T13:23:56.010000"],["2024-07-25T13:23:57.010000"],["2024-07-25T13:23:58.010000"],["2024-07-25T13:23:59.010000"],["2024-07-25T13:24:00.010000"],["2024-07-25T13:24:01.010000"],["2024-07-25T13:24:02.010000"],["2024-07-25T13:24:03.010000"],["2024-07-25T13:24:04.010000"],["2024-07-25T13:24:05.010000"],["2024-07-25T13:24:06.010000"],["2024-07-25T13:24:07.010000"],["2024-07-25T13:24:08.010000"],["2024-07-25T13:24:09.010000"],["2024-07-25T13:24:10.010000"],["2024-07-25T13:24:11.010000"],["2024-07-25T13:24:12.010000"],["2024-07-25T13:24:13.010000"],["2024-07-25T13:24:14.010000"],["2024-07-25T13:24:15.010000"],["2024-07-25T13:24:16.010000"],["2024-07-25T13:24:17.010000"],["2024-07-25T13:24:18.010000"],["2024-07-25T13:24:19.010000"],["2024-07-25T13:24:20.010000"],["2024-07-25T13:24:21.010000"],["2024-07-25T13:24:22.010000"],["2024-07-25T13:24:23.010000"],["2024-07-25T13:24:24.010000"],["2024-07-25T13:24:25.010000"],["2024-07-25T13:24:26.010000"],["2024-07-25T13:24:27.010000"],["2024-07-25T13:24:28.010000"],["2024-07-25T13:24:29.010000"],["2024-07-25T13:24:30.010000"],["2024-07-25T13:24:31.010000"],["2024-07-25T13:24:32.010000"],["2024-07-25T13:24:33.010000"],["2024-07-25T13:24:34.010000"],["2024-07-25T13:24:35.010000"],["2024-07-25T13:24:36.010000"],["2024-07-25T13:24:37.010000"],["2024-07-25T13:24:38.010000"],["2024-07-25T13:24:39.010000"],["2024-07-25T13:24:40.010000"],["2024-07-25T13:24:41.010000"],["2024-07-25T13:24:42.010000"],["2024-07-25T13:24:43.010000"],["2024-07-25T13:24:44.010000"],["2024-07-25T13:24:45.010000"],["2024-07-25T13:24:46.010000"],["2024-07-25T13:24:47.010000"],["2024-07-25T13:24:48.010000"],["2024-07-25T13:24:49.010000"],["2024-07-25T13:24:50.010000"],["2024-07-25T13:24:51.010000"],["2024-07-25T13:24:52.010000"],["2024-07-25T13:24:53.010000"],["2024-07-25T13:24:54.010000"],["2024-07-25T13:24:55.010000"],["2024-07-25T13:24:56.010000"],["2024-07-25T13:24:57.010000"],["2024-07-25T13:24:58.010000"],["2024-07-25T13:24:59.010000"],["2024-07-25T13:25:00.010000"],["2024-07-25T13:25:01.010000"],["2024-07-25T13:25:02.010000"],["2024-07-25T13:25:03.010000"],["2024-07-25T13:25:04.010000"],["2024-07-25T13:25:05.010000"],["2024-07-25T13:25:06.010000"],["2024-07-25T13:25:07.010000"],["2024-07-25T13:25:08.010000"],["2024-07-25T13:25:09.010000"],["2024-07-25T13:25:10.010000"],["2024-07-25T13:25:11.010000"],["2024-07-25T13:25:12.010000"],["2024-07-25T13:25:13.010000"],["2024-07-25T13:25:14.010000"],["2024-07-25T13:25:15.010000"],["2024-07-25T13:25:16.010000"],["2024-07-25T13:25:17.010000"],["2024-07-25T13:25:18.010000"],["2024-07-25T13:25:19.010000"],["2024-07-25T13:25:20.010000"],["2024-07-25T13:25:21.010000"],["2024-07-25T13:25:22.010000"],["2024-07-25T13:25:23.010000"],["2024-07-25T13:25:24.010000"],["2024-07-25T13:25:25.010000"],["2024-07-25T13:25:26.010000"],["2024-07-25T13:25:27.010000"],["2024-07-25T13:25:28.010000"],["2024-07-25T13:25:29.010000"],["2024-07-25T13:25:30.010000"],["2024-07-25T13:25:31.010000"],["2024-07-25T13:25:32.010000"],["2024-07-25T13:25:33.010000"],["2024-07-25T13:25:34.010000"],["2024-07-25T13:25:35.010000"],["2024-07-25T13:25:36.010000"],["2024-07-25T13:25:37.010000"],["2024-07-25T13:25:38.010000"],["2024-07-25T13:25:39.010000"],["2024-07-25T13:25:40.010000"],["2024-07-25T13:25:41.010000"],["2024-07-25T13:25:42.010000"],["2024-07-25T13:25:43.010000"],["2024-07-25T13:25:44.010000"],["2024-07-25T13:25:45.010000"],["2024-07-25T13:25:46.010000"],["2024-07-25T13:25:47.010000"],["2024-07-25T13:25:48.010000"],["2024-07-25T13:25:49.010000"],["2024-07-25T13:25:50.010000"],["2024-07-25T13:25:51.010000"],["2024-07-25T13:25:52.010000"],["2024-07-25T13:25:53.010000"],["2024-07-25T13:25:54.010000"],["2024-07-25T13:25:55.010000"],["2024-07-25T13:25:56.010000"],["2024-07-25T13:25:57.010000"],["2024-07-25T13:25:58.010000"],["2024-07-25T13:25:59.010000"],["2024-07-25T13:26:00.010000"],["2024-07-25T13:26:01.010000"],["2024-07-25T13:26:02.010000"],["2024-07-25T13:26:03.010000"],["2024-07-25T13:26:04.010000"],["2024-07-25T13:26:05.010000"],["2024-07-25T13:26:06.010000"],["2024-07-25T13:26:07.010000"],["2024-07-25T13:26:08.010000"],["2024-07-25T13:26:09.010000"],["2024-07-25T13:26:10.010000"],["2024-07-25T13:26:11.010000"],["2024-07-25T13:26:12.010000"],["2024-07-25T13:26:13.010000"],["2024-07-25T13:26:14.010000"],["2024-07-25T13:26:15.010000"],["2024-07-25T13:26:16.010000"],["2024-07-25T13:26:17.010000"],["2024-07-25T13:26:18.010000"],["2024-07-25T13:26:19.010000"],["2024-07-25T13:26:20.010000"],["2024-07-25T13:26:21.010000"],["2024-07-25T13:26:22.010000"],["2024-07-25T13:26:23.010000"],["2024-07-25T13:26:24.010000"],["2024-07-25T13:26:25.010000"],["2024-07-25T13:26:26.010000"],["2024-07-25T13:26:27.010000"],["2024-07-25T13:26:28.010000"],["2024-07-25T13:26:29.010000"],["2024-07-25T13:26:30.010000"],["2024-07-25T13:26:31.010000"],["2024-07-25T13:26:32.010000"],["2024-07-25T13:26:33.010000"],["2024-07-25T13:26:34.010000"],["2024-07-25T13:26:35.010000"],["2024-07-25T13:26:36.010000"],["2024-07-25T13:26:37.010000"],["2024-07-25T13:26:38.010000"],["2024-07-25T13:26:39.010000"],["2024-07-25T13:26:40.010000"],["2024-07-25T13:26:41.010000"],["2024-07-25T13:26:42.010000"],["2024-07-25T13:26:43.010000"],["2024-07-25T13:26:44.010000"],["2024-07-25T13:26:45.010000"],["2024-07-25T13:26:46.010000"],["2024-07-25T13:26:47.010000"],["2024-07-25T13:26:48.010000"],["2024-07-25T13:26:49.010000"],["2024-07-25T13:26:50.010000"],["2024-07-25T13:26:51.010000"],["2024-07-25T13:26:52.010000"],["2024-07-25T13:26:53.010000"],["2024-07-25T13:26:54.010000"],["2024-07-25T13:26:55.010000"],["2024-07-25T13:26:56.010000"],["2024-07-25T13:26:57.010000"],["2024-07-25T13:26:58.010000"],["2024-07-25T13:26:59.010000"],["2024-07-25T13:27:00.010000"],["2024-07-25T13:27:01.010000"],["2024-07-25T13:27:02.010000"],["2024-07-25T13:27:03.010000"],["2024-07-25T13:27:04.010000"],["2024-07-25T13:27:05.010000"],["2024-07-25T13:27:06.010000"],["2024-07-25T13:27:07.010000"],["2024-07-25T13:27:08.010000"],["2024-07-25T13:27:09.010000"],["2024-07-25T13:27:10.010000"],["2024-07-25T13:27:11.010000"],["2024-07-25T13:27:12.010000"],["2024-07-25T13:27:13.010000"],["2024-07-25T13:27:14.010000"],["2024-07-25T13:27:15.010000"],["2024-07-25T13:27:16.010000"],["2024-07-25T13:27:17.010000"],["2024-07-25T13:27:18.010000"],["2024-07-25T13:27:19.010000"],["2024-07-25T13:27:20.010000"],["2024-07-25T13:27:21.010000"],["2024-07-25T13:27:22.010000"],["2024-07-25T13:27:23.010000"],["2024-07-25T13:27:24.010000"],["2024-07-25T13:27:25.010000"],["2024-07-25T13:27:26.010000"],["2024-07-25T13:27:27.010000"],["2024-07-25T13:27:28.010000"],["2024-07-25T13:27:29.010000"],["2024-07-25T13:27:30.010000"],["2024-07-25T13:27:31.010000"],["2024-07-25T13:27:32.010000"],["2024-07-25T13:27:33.010000"],["2024-07-25T13:27:34.010000"],["2024-07-25T13:27:35.010000"],["2024-07-25T13:27:36.010000"],["2024-07-25T13:27:37.010000"],["2024-07-25T13:27:38.010000"],["2024-07-25T13:27:39.010000"],["2024-07-25T13:27:40.010000"],["2024-07-25T13:27:41.010000"],["2024-07-25T13:27:42.010000"],["2024-07-25T13:27:43.010000"],["2024-07-25T13:27:44.010000"],["2024-07-25T13:27:45.010000"],["2024-07-25T13:27:46.010000"],["2024-07-25T13:27:47.010000"],["2024-07-25T13:27:48.010000"],["2024-07-25T13:27:49.010000"],["2024-07-25T13:27:50.010000"],["2024-07-25T13:27:51.010000"],["2024-07-25T13:27:52.010000"],["2024-07-25T13:27:53.010000"],["2024-07-25T13:27:54.010000"],["2024-07-25T13:27:55.010000"],["2024-07-25T13:27:56.010000"],["2024-07-25T13:27:57.010000"],["2024-07-25T13:27:58.010000"],["2024-07-25T13:27:59.010000"],["2024-07-25T13:28:00.010000"],["2024-07-25T13:28:01.010000"],["2024-07-25T13:28:02.010000"],["2024-07-25T13:28:03.010000"],["2024-07-25T13:28:04.010000"],["2024-07-25T13:28:05.010000"],["2024-07-25T13:28:06.010000"],["2024-07-25T13:28:07.010000"],["2024-07-25T13:28:08.010000"],["2024-07-25T13:28:09.010000"],["2024-07-25T13:28:10.010000"],["2024-07-25T13:28:11.010000"],["2024-07-25T13:28:12.010000"],["2024-07-25T13:28:13.010000"],["2024-07-25T13:28:14.010000"],["2024-07-25T13:28:15.010000"],["2024-07-25T13:28:16.010000"],["2024-07-25T13:28:17.010000"],["2024-07-25T13:28:18.010000"],["2024-07-25T13:28:19.010000"],["2024-07-25T13:28:20.010000"],["2024-07-25T13:28:21.010000"],["2024-07-25T13:28:22.010000"],["2024-07-25T13:28:23.010000"],["2024-07-25T13:28:24.010000"],["2024-07-25T13:28:25.010000"],["2024-07-25T13:28:26.010000"],["2024-07-25T13:28:27.010000"],["2024-07-25T13:28:28.010000"],["2024-07-25T13:28:29.010000"],["2024-07-25T13:28:30.010000"],["2024-07-25T13:28:31.010000"],["2024-07-25T13:28:32.010000"],["2024-07-25T13:28:33.010000"],["2024-07-25T13:28:34.010000"],["2024-07-25T13:28:35.010000"],["2024-07-25T13:28:36.010000"],["2024-07-25T13:28:37.010000"],["2024-07-25T13:28:38.010000"],["2024-07-25T13:28:39.010000"],["2024-07-25T13:28:40.010000"],["2024-07-25T13:28:41.010000"],["2024-07-25T13:28:42.010000"],["2024-07-25T13:28:43.010000"],["2024-07-25T13:28:44.010000"],["2024-07-25T13:28:45.010000"],["2024-07-25T13:28:46.010000"],["2024-07-25T13:28:47.010000"],["2024-07-25T13:28:48.010000"],["2024-07-25T13:28:49.010000"],["2024-07-25T13:28:50.010000"],["2024-07-25T13:28:51.010000"],["2024-07-25T13:28:52.010000"],["2024-07-25T13:28:53.010000"],["2024-07-25T13:28:54.010000"],["2024-07-25T13:28:55.010000"],["2024-07-25T13:28:56.010000"],["2024-07-25T13:28:57.010000"],["2024-07-25T13:28:58.010000"],["2024-07-25T13:28:59.010000"],["2024-07-25T13:29:00.010000"],["2024-07-25T13:29:01.010000"],["2024-07-25T13:29:02.010000"],["2024-07-25T13:29:03.010000"],["2024-07-25T13:29:04.010000"],["2024-07-25T13:29:05.010000"],["2024-07-25T13:29:06.010000"],["2024-07-25T13:29:07.010000"],["2024-07-25T13:29:08.010000"],["2024-07-25T13:29:09.010000"],["2024-07-25T13:29:10.010000"],["2024-07-25T13:29:11.010000"],["2024-07-25T13:29:12.010000"],["2024-07-25T13:29:13.010000"],["2024-07-25T13:29:14.010000"],["2024-07-25T13:29:15.010000"],["2024-07-25T13:29:16.010000"],["2024-07-25T13:29:17.010000"],["2024-07-25T13:29:18.010000"],["2024-07-25T13:29:19.010000"],["2024-07-25T13:29:20.010000"],["2024-07-25T13:29:21.010000"],["2024-07-25T13:29:22.010000"],["2024-07-25T13:29:23.010000"],["2024-07-25T13:29:24.010000"],["2024-07-25T13:29:25.010000"],["2024-07-25T13:29:26.010000"],["2024-07-25T13:29:27.010000"],["2024-07-25T13:29:28.010000"],["2024-07-25T13:29:29.010000"],["2024-07-25T13:29:30.010000"],["2024-07-25T13:29:31.010000"],["2024-07-25T13:29:32.010000"],["2024-07-25T13:29:33.010000"],["2024-07-25T13:29:34.010000"],["2024-07-25T13:29:35.010000"],["2024-07-25T13:29:36.010000"],["2024-07-25T13:29:37.010000"],["2024-07-25T13:29:38.010000"],["2024-07-25T13:29:39.010000"],["2024-07-25T13:29:40.010000"],["2024-07-25T13:29:41.010000"],["2024-07-25T13:29:42.010000"],["2024-07-25T13:29:43.010000"],["2024-07-25T13:29:44.010000"],["2024-07-25T13:29:45.010000"],["2024-07-25T13:29:46.010000"],["2024-07-25T13:29:47.010000"],["2024-07-25T13:29:48.010000"],["2024-07-25T13:29:49.010000"],["2024-07-25T13:29:50.010000"],["2024-07-25T13:29:51.010000"],["2024-07-25T13:29:52.010000"],["2024-07-25T13:29:53.010000"],["2024-07-25T13:29:54.010000"],["2024-07-25T13:29:55.010000"],["2024-07-25T13:29:56.010000"],["2024-07-25T13:29:57.010000"],["2024-07-25T13:29:58.010000"],["2024-07-25T13:29:59.010000"],["2024-07-25T13:30:00.010000"],["2024-07-25T13:30:01.010000"],["2024-07-25T13:30:02.010000"],["2024-07-25T13:30:03.010000"],["2024-07-25T13:30:04.010000"],["2024-07-25T13:30:05.010000"],["2024-07-25T13:30:06.010000"],["2024-07-25T13:30:07.010000"],["2024-07-25T13:30:08.010000"],["2024-07-25T13:30:09.010000"],["2024-07-25T13:30:10.010000"],["2024-07-25T13:30:11.010000"],["2024-07-25T13:30:12.010000"],["2024-07-25T13:30:13.010000"],["2024-07-25T13:30:14.010000"],["2024-07-25T13:30:15.010000"],["2024-07-25T13:30:16.010000"],["2024-07-25T13:30:17.010000"],["2024-07-25T13:30:18.010000"],["2024-07-25T13:30:19.010000"],["2024-07-25T13:30:20.010000"],["2024-07-25T13:30:21.010000"],["2024-07-25T13:30:22.010000"],["2024-07-25T13:30:23.010000"],["2024-07-25T13:30:24.010000"],["2024-07-25T13:30:25.010000"],["2024-07-25T13:30:26.010000"],["2024-07-25T13:30:27.010000"],["2024-07-25T13:30:28.010000"],["2024-07-25T13:30:29.010000"],["2024-07-25T13:30:30.010000"],["2024-07-25T13:30:31.010000"],["2024-07-25T13:30:32.010000"],["2024-07-25T13:30:33.010000"],["2024-07-25T13:30:34.010000"],["2024-07-25T13:30:35.010000"],["2024-07-25T13:30:36.010000"],["2024-07-25T13:30:37.010000"],["2024-07-25T13:30:38.010000"],["2024-07-25T13:30:39.010000"],["2024-07-25T13:30:40.010000"],["2024-07-25T13:30:41.010000"],["2024-07-25T13:30:42.010000"],["2024-07-25T13:30:43.010000"],["2024-07-25T13:30:44.010000"],["2024-07-25T13:30:45.010000"],["2024-07-25T13:30:46.010000"],["2024-07-25T13:30:47.010000"],["2024-07-25T13:30:48.010000"],["2024-07-25T13:30:49.010000"],["2024-07-25T13:30:50.010000"],["2024-07-25T13:30:51.010000"],["2024-07-25T13:30:52.010000"],["2024-07-25T13:30:53.010000"],["2024-07-25T13:30:54.010000"],["2024-07-25T13:30:55.010000"],["2024-07-25T13:30:56.010000"],["2024-07-25T13:30:57.010000"],["2024-07-25T13:30:58.010000"],["2024-07-25T13:30:59.010000"],["2024-07-25T13:31:00.010000"],["2024-07-25T13:31:01.010000"],["2024-07-25T13:31:02.010000"],["2024-07-25T13:31:03.010000"],["2024-07-25T13:31:04.010000"],["2024-07-25T13:31:05.010000"],["2024-07-25T13:31:06.010000"],["2024-07-25T13:31:07.010000"],["2024-07-25T13:31:08.010000"],["2024-07-25T13:31:09.010000"],["2024-07-25T13:31:10.010000"],["2024-07-25T13:31:11.010000"],["2024-07-25T13:31:12.010000"],["2024-07-25T13:31:13.010000"],["2024-07-25T13:31:14.010000"],["2024-07-25T13:31:15.010000"],["2024-07-25T13:31:16.010000"],["2024-07-25T13:31:17.010000"],["2024-07-25T13:31:18.010000"],["2024-07-25T13:31:19.010000"],["2024-07-25T13:31:20.010000"],["2024-07-25T13:31:21.010000"],["2024-07-25T13:31:22.010000"],["2024-07-25T13:31:23.010000"],["2024-07-25T13:31:24.010000"],["2024-07-25T13:31:25.010000"],["2024-07-25T13:31:26.010000"],["2024-07-25T13:31:27.010000"],["2024-07-25T13:31:28.010000"],["2024-07-25T13:31:29.010000"],["2024-07-25T13:31:30.010000"],["2024-07-25T13:31:31.010000"],["2024-07-25T13:31:32.010000"],["2024-07-25T13:31:33.010000"],["2024-07-25T13:31:34.010000"],["2024-07-25T13:31:35.010000"],["2024-07-25T13:31:36.010000"],["2024-07-25T13:31:37.010000"],["2024-07-25T13:31:38.010000"],["2024-07-25T13:31:39.010000"],["2024-07-25T13:31:40.010000"],["2024-07-25T13:31:41.010000"],["2024-07-25T13:31:42.010000"],["2024-07-25T13:31:43.010000"],["2024-07-25T13:31:44.010000"],["2024-07-25T13:31:45.010000"],["2024-07-25T13:31:46.010000"],["2024-07-25T13:31:47.010000"],["2024-07-25T13:31:48.010000"],["2024-07-25T13:31:49.010000"],["2024-07-25T13:31:50.010000"],["2024-07-25T13:31:51.010000"],["2024-07-25T13:31:52.010000"],["2024-07-25T13:31:53.010000"],["2024-07-25T13:31:54.010000"],["2024-07-25T13:31:55.010000"],["2024-07-25T13:31:56.010000"],["2024-07-25T13:31:57.010000"],["2024-07-25T13:31:58.010000"],["2024-07-25T13:31:59.010000"],["2024-07-25T13:32:00.010000"],["2024-07-25T13:32:01.010000"],["2024-07-25T13:32:02.010000"],["2024-07-25T13:32:03.010000"],["2024-07-25T13:32:04.010000"],["2024-07-25T13:32:05.010000"],["2024-07-25T13:32:06.010000"],["2024-07-25T13:32:07.010000"],["2024-07-25T13:32:08.010000"],["2024-07-25T13:32:09.010000"],["2024-07-25T13:32:10.010000"],["2024-07-25T13:32:11.010000"],["2024-07-25T13:32:12.010000"],["2024-07-25T13:32:13.010000"],["2024-07-25T13:32:14.010000"],["2024-07-25T13:32:15.010000"],["2024-07-25T13:32:16.010000"],["2024-07-25T13:32:17.010000"],["2024-07-25T13:32:18.010000"],["2024-07-25T13:32:19.010000"],["2024-07-25T13:32:20.010000"],["2024-07-25T13:32:21.010000"],["2024-07-25T13:32:22.010000"],["2024-07-25T13:32:23.010000"],["2024-07-25T13:32:24.010000"],["2024-07-25T13:32:25.010000"],["2024-07-25T13:32:26.010000"],["2024-07-25T13:32:27.010000"],["2024-07-25T13:32:28.010000"],["2024-07-25T13:32:29.010000"],["2024-07-25T13:32:30.010000"],["2024-07-25T13:32:31.010000"],["2024-07-25T13:32:32.010000"],["2024-07-25T13:32:33.010000"],["2024-07-25T13:32:34.010000"],["2024-07-25T13:32:35.010000"],["2024-07-25T13:32:36.010000"],["2024-07-25T13:32:37.010000"],["2024-07-25T13:32:38.010000"],["2024-07-25T13:32:39.010000"],["2024-07-25T13:32:40.010000"],["2024-07-25T13:32:41.010000"],["2024-07-25T13:32:42.010000"],["2024-07-25T13:32:43.010000"],["2024-07-25T13:32:44.010000"],["2024-07-25T13:32:45.010000"],["2024-07-25T13:32:46.010000"],["2024-07-25T13:32:47.010000"],["2024-07-25T13:32:48.010000"],["2024-07-25T13:32:49.010000"],["2024-07-25T13:32:50.010000"],["2024-07-25T13:32:51.010000"],["2024-07-25T13:32:52.010000"],["2024-07-25T13:32:53.010000"],["2024-07-25T13:32:54.010000"],["2024-07-25T13:32:55.010000"],["2024-07-25T13:32:56.010000"],["2024-07-25T13:32:57.010000"],["2024-07-25T13:32:58.010000"],["2024-07-25T13:32:59.010000"],["2024-07-25T13:33:00.010000"],["2024-07-25T13:33:01.010000"],["2024-07-25T13:33:02.010000"],["2024-07-25T13:33:03.010000"],["2024-07-25T13:33:04.010000"],["2024-07-25T13:33:05.010000"],["2024-07-25T13:33:06.010000"],["2024-07-25T13:33:07.010000"],["2024-07-25T13:33:08.010000"],["2024-07-25T13:33:09.010000"],["2024-07-25T13:33:10.010000"],["2024-07-25T13:33:11.010000"],["2024-07-25T13:33:12.010000"],["2024-07-25T13:33:13.010000"],["2024-07-25T13:33:14.010000"],["2024-07-25T13:33:15.010000"],["2024-07-25T13:33:16.010000"],["2024-07-25T13:33:17.010000"],["2024-07-25T13:33:18.010000"],["2024-07-25T13:33:19.010000"],["2024-07-25T13:33:20.010000"],["2024-07-25T13:33:21.010000"],["2024-07-25T13:33:22.010000"],["2024-07-25T13:33:23.010000"],["2024-07-25T13:33:24.010000"],["2024-07-25T13:33:25.010000"],["2024-07-25T13:33:26.010000"],["2024-07-25T13:33:27.010000"],["2024-07-25T13:33:28.010000"],["2024-07-25T13:33:29.010000"],["2024-07-25T13:33:30.010000"],["2024-07-25T13:33:31.010000"],["2024-07-25T13:33:32.010000"],["2024-07-25T13:33:33.010000"],["2024-07-25T13:33:34.010000"],["2024-07-25T13:33:35.010000"],["2024-07-25T13:33:36.010000"],["2024-07-25T13:33:37.010000"],["2024-07-25T13:33:38.010000"],["2024-07-25T13:33:39.010000"],["2024-07-25T13:33:40.010000"],["2024-07-25T13:33:41.010000"],["2024-07-25T13:33:42.010000"],["2024-07-25T13:33:43.010000"],["2024-07-25T13:33:44.010000"],["2024-07-25T13:33:45.010000"],["2024-07-25T13:33:46.010000"],["2024-07-25T13:33:47.010000"],["2024-07-25T13:33:48.010000"],["2024-07-25T13:33:49.010000"],["2024-07-25T13:33:50.010000"],["2024-07-25T13:33:51.010000"],["2024-07-25T13:33:52.010000"],["2024-07-25T13:33:53.010000"],["2024-07-25T13:33:54.010000"],["2024-07-25T13:33:55.010000"],["2024-07-25T13:33:56.010000"],["2024-07-25T13:33:57.010000"],["2024-07-25T13:33:58.010000"],["2024-07-25T13:33:59.010000"],["2024-07-25T13:34:00.010000"],["2024-07-25T13:34:01.010000"],["2024-07-25T13:34:02.010000"],["2024-07-25T13:34:03.010000"],["2024-07-25T13:34:04.010000"],["2024-07-25T13:34:05.010000"],["2024-07-25T13:34:06.010000"],["2024-07-25T13:34:07.010000"],["2024-07-25T13:34:08.010000"],["2024-07-25T13:34:09.010000"],["2024-07-25T13:34:10.010000"],["2024-07-25T13:34:11.010000"],["2024-07-25T13:34:12.010000"],["2024-07-25T13:34:13.010000"],["2024-07-25T13:34:14.010000"],["2024-07-25T13:34:15.010000"],["2024-07-25T13:34:16.010000"],["2024-07-25T13:34:17.010000"],["2024-07-25T13:34:18.010000"],["2024-07-25T13:34:19.010000"],["2024-07-25T13:34:20.010000"],["2024-07-25T13:34:21.010000"],["2024-07-25T13:34:22.010000"],["2024-07-25T13:34:23.010000"],["2024-07-25T13:34:24.010000"],["2024-07-25T13:34:25.010000"],["2024-07-25T13:34:26.010000"],["2024-07-25T13:34:27.010000"],["2024-07-25T13:34:28.010000"],["2024-07-25T13:34:29.010000"],["2024-07-25T13:34:30.010000"],["2024-07-25T13:34:31.010000"],["2024-07-25T13:34:32.010000"],["2024-07-25T13:34:33.010000"],["2024-07-25T13:34:34.010000"],["2024-07-25T13:34:35.010000"],["2024-07-25T13:34:36.010000"],["2024-07-25T13:34:37.010000"],["2024-07-25T13:34:38.010000"],["2024-07-25T13:34:39.010000"],["2024-07-25T13:34:40.010000"],["2024-07-25T13:34:41.010000"],["2024-07-25T13:34:42.010000"],["2024-07-25T13:34:43.010000"],["2024-07-25T13:34:44.010000"],["2024-07-25T13:34:45.010000"],["2024-07-25T13:34:46.010000"],["2024-07-25T13:34:47.010000"],["2024-07-25T13:34:48.010000"],["2024-07-25T13:34:49.010000"],["2024-07-25T13:34:50.010000"],["2024-07-25T13:34:51.010000"],["2024-07-25T13:34:52.010000"],["2024-07-25T13:34:53.010000"],["2024-07-25T13:34:54.010000"],["2024-07-25T13:34:55.010000"],["2024-07-25T13:34:56.010000"],["2024-07-25T13:34:57.010000"],["2024-07-25T13:34:58.010000"],["2024-07-25T13:34:59.010000"],["2024-07-25T13:35:00.010000"],["2024-07-25T13:35:01.010000"],["2024-07-25T13:35:02.010000"],["2024-07-25T13:35:03.010000"],["2024-07-25T13:35:04.010000"],["2024-07-25T13:35:05.010000"],["2024-07-25T13:35:06.010000"],["2024-07-25T13:35:07.010000"],["2024-07-25T13:35:08.010000"],["2024-07-25T13:35:09.010000"],["2024-07-25T13:35:10.010000"],["2024-07-25T13:35:11.010000"],["2024-07-25T13:35:12.010000"],["2024-07-25T13:35:13.010000"],["2024-07-25T13:35:14.010000"],["2024-07-25T13:35:15.010000"],["2024-07-25T13:35:16.010000"],["2024-07-25T13:35:17.010000"],["2024-07-25T13:35:18.010000"],["2024-07-25T13:35:19.010000"],["2024-07-25T13:35:20.010000"],["2024-07-25T13:35:21.010000"],["2024-07-25T13:35:22.010000"],["2024-07-25T13:35:23.010000"],["2024-07-25T13:35:24.010000"],["2024-07-25T13:35:25.010000"],["2024-07-25T13:35:26.010000"],["2024-07-25T13:35:27.010000"],["2024-07-25T13:35:28.010000"],["2024-07-25T13:35:29.010000"],["2024-07-25T13:35:30.010000"],["2024-07-25T13:35:31.010000"],["2024-07-25T13:35:32.010000"],["2024-07-25T13:35:33.010000"],["2024-07-25T13:35:34.010000"],["2024-07-25T13:35:35.010000"],["2024-07-25T13:35:36.010000"],["2024-07-25T13:35:37.010000"],["2024-07-25T13:35:38.010000"],["2024-07-25T13:35:39.010000"],["2024-07-25T13:35:40.010000"],["2024-07-25T13:35:41.010000"],["2024-07-25T13:35:42.010000"],["2024-07-25T13:35:43.010000"],["2024-07-25T13:35:44.010000"],["2024-07-25T13:35:45.010000"],["2024-07-25T13:35:46.010000"],["2024-07-25T13:35:47.010000"],["2024-07-25T13:35:48.010000"],["2024-07-25T13:35:49.010000"],["2024-07-25T13:35:50.010000"],["2024-07-25T13:35:51.010000"],["2024-07-25T13:35:52.010000"],["2024-07-25T13:35:53.010000"],["2024-07-25T13:35:54.010000"],["2024-07-25T13:35:55.010000"],["2024-07-25T13:35:56.010000"],["2024-07-25T13:35:57.010000"],["2024-07-25T13:35:58.010000"],["2024-07-25T13:35:59.010000"],["2024-07-25T13:36:00.010000"],["2024-07-25T13:36:01.010000"],["2024-07-25T13:36:02.010000"],["2024-07-25T13:36:03.010000"],["2024-07-25T13:36:04.010000"],["2024-07-25T13:36:05.010000"],["2024-07-25T13:36:06.010000"],["2024-07-25T13:36:07.010000"],["2024-07-25T13:36:08.010000"],["2024-07-25T13:36:09.010000"],["2024-07-25T13:36:10.010000"],["2024-07-25T13:36:11.010000"],["2024-07-25T13:36:12.010000"],["2024-07-25T13:36:13.010000"],["2024-07-25T13:36:14.010000"],["2024-07-25T13:36:15.010000"],["2024-07-25T13:36:16.010000"],["2024-07-25T13:36:17.010000"],["2024-07-25T13:36:18.010000"],["2024-07-25T13:36:19.010000"],["2024-07-25T13:36:20.010000"],["2024-07-25T13:36:21.010000"],["2024-07-25T13:36:22.010000"],["2024-07-25T13:36:23.010000"],["2024-07-25T13:36:24.010000"],["2024-07-25T13:36:25.010000"],["2024-07-25T13:36:26.010000"],["2024-07-25T13:36:27.010000"],["2024-07-25T13:36:28.010000"],["2024-07-25T13:36:29.010000"],["2024-07-25T13:36:30.010000"],["2024-07-25T13:36:31.010000"],["2024-07-25T13:36:32.010000"],["2024-07-25T13:36:33.010000"],["2024-07-25T13:36:34.010000"],["2024-07-25T13:36:35.010000"],["2024-07-25T13:36:36.010000"],["2024-07-25T13:36:37.010000"],["2024-07-25T13:36:38.010000"],["2024-07-25T13:36:39.010000"],["2024-07-25T13:36:40.010000"],["2024-07-25T13:36:41.010000"],["2024-07-25T13:36:42.010000"],["2024-07-25T13:36:43.010000"],["2024-07-25T13:36:44.010000"],["2024-07-25T13:36:45.010000"],["2024-07-25T13:36:46.010000"],["2024-07-25T13:36:47.010000"],["2024-07-25T13:36:48.010000"],["2024-07-25T13:36:49.010000"],["2024-07-25T13:36:50.010000"],["2024-07-25T13:36:51.010000"],["2024-07-25T13:36:52.010000"],["2024-07-25T13:36:53.010000"],["2024-07-25T13:36:54.010000"],["2024-07-25T13:36:55.010000"],["2024-07-25T13:36:56.010000"],["2024-07-25T13:36:57.010000"],["2024-07-25T13:36:58.010000"],["2024-07-25T13:36:59.010000"],["2024-07-25T13:37:00.010000"],["2024-07-25T13:37:01.010000"],["2024-07-25T13:37:02.010000"],["2024-07-25T13:37:03.010000"],["2024-07-25T13:37:04.010000"],["2024-07-25T13:37:05.010000"],["2024-07-25T13:37:06.010000"],["2024-07-25T13:37:07.010000"],["2024-07-25T13:37:08.010000"],["2024-07-25T13:37:09.010000"],["2024-07-25T13:37:10.010000"],["2024-07-25T13:37:11.010000"],["2024-07-25T13:37:12.010000"],["2024-07-25T13:37:13.010000"],["2024-07-25T13:37:14.010000"],["2024-07-25T13:37:15.010000"],["2024-07-25T13:37:16.010000"],["2024-07-25T13:37:17.010000"],["2024-07-25T13:37:18.010000"],["2024-07-25T13:37:19.010000"],["2024-07-25T13:37:20.010000"],["2024-07-25T13:37:21.010000"],["2024-07-25T13:37:22.010000"],["2024-07-25T13:37:23.010000"],["2024-07-25T13:37:24.010000"],["2024-07-25T13:37:25.010000"],["2024-07-25T13:37:26.010000"],["2024-07-25T13:37:27.010000"],["2024-07-25T13:37:28.010000"],["2024-07-25T13:37:29.010000"],["2024-07-25T13:37:30.010000"],["2024-07-25T13:37:31.010000"],["2024-07-25T13:37:32.010000"],["2024-07-25T13:37:33.010000"],["2024-07-25T13:37:34.010000"],["2024-07-25T13:37:35.010000"],["2024-07-25T13:37:36.010000"],["2024-07-25T13:37:37.010000"],["2024-07-25T13:37:38.010000"],["2024-07-25T13:37:39.010000"],["2024-07-25T13:37:40.010000"],["2024-07-25T13:37:41.010000"],["2024-07-25T13:37:42.010000"],["2024-07-25T13:37:43.010000"],["2024-07-25T13:37:44.010000"],["2024-07-25T13:37:45.010000"],["2024-07-25T13:37:46.010000"],["2024-07-25T13:37:47.010000"],["2024-07-25T13:37:48.010000"],["2024-07-25T13:37:49.010000"],["2024-07-25T13:37:50.010000"],["2024-07-25T13:37:51.010000"],["2024-07-25T13:37:52.010000"],["2024-07-25T13:37:53.010000"],["2024-07-25T13:37:54.010000"],["2024-07-25T13:37:55.010000"],["2024-07-25T13:37:56.010000"],["2024-07-25T13:37:57.010000"],["2024-07-25T13:37:58.010000"],["2024-07-25T13:37:59.010000"],["2024-07-25T13:38:00.010000"],["2024-07-25T13:38:01.010000"],["2024-07-25T13:38:02.010000"],["2024-07-25T13:38:03.010000"],["2024-07-25T13:38:04.010000"],["2024-07-25T13:38:05.010000"],["2024-07-25T13:38:06.010000"],["2024-07-25T13:38:07.010000"],["2024-07-25T13:38:08.010000"],["2024-07-25T13:38:09.010000"],["2024-07-25T13:38:10.010000"],["2024-07-25T13:38:11.010000"],["2024-07-25T13:38:12.010000"],["2024-07-25T13:38:13.010000"],["2024-07-25T13:38:14.010000"],["2024-07-25T13:38:15.010000"],["2024-07-25T13:38:16.010000"],["2024-07-25T13:38:17.010000"],["2024-07-25T13:38:18.010000"],["2024-07-25T13:38:19.010000"],["2024-07-25T13:38:20.010000"],["2024-07-25T13:38:21.010000"],["2024-07-25T13:38:22.010000"],["2024-07-25T13:38:23.010000"],["2024-07-25T13:38:24.010000"],["2024-07-25T13:38:25.010000"],["2024-07-25T13:38:26.010000"],["2024-07-25T13:38:27.010000"],["2024-07-25T13:38:28.010000"],["2024-07-25T13:38:29.010000"],["2024-07-25T13:38:30.010000"],["2024-07-25T13:38:31.010000"],["2024-07-25T13:38:32.010000"],["2024-07-25T13:38:33.010000"],["2024-07-25T13:38:34.010000"],["2024-07-25T13:38:35.010000"],["2024-07-25T13:38:36.010000"],["2024-07-25T13:38:37.010000"],["2024-07-25T13:38:38.010000"],["2024-07-25T13:38:39.010000"],["2024-07-25T13:38:40.010000"],["2024-07-25T13:38:41.010000"],["2024-07-25T13:38:42.010000"],["2024-07-25T13:38:43.010000"],["2024-07-25T13:38:44.010000"],["2024-07-25T13:38:45.010000"],["2024-07-25T13:38:46.010000"],["2024-07-25T13:38:47.010000"],["2024-07-25T13:38:48.010000"],["2024-07-25T13:38:49.010000"],["2024-07-25T13:38:50.010000"],["2024-07-25T13:38:51.010000"],["2024-07-25T13:38:52.010000"],["2024-07-25T13:38:53.010000"],["2024-07-25T13:38:54.010000"],["2024-07-25T13:38:55.010000"],["2024-07-25T13:38:56.010000"],["2024-07-25T13:38:57.010000"],["2024-07-25T13:38:58.010000"],["2024-07-25T13:38:59.010000"],["2024-07-25T13:39:00.010000"],["2024-07-25T13:39:01.010000"],["2024-07-25T13:39:02.010000"],["2024-07-25T13:39:03.010000"],["2024-07-25T13:39:04.010000"],["2024-07-25T13:39:05.010000"],["2024-07-25T13:39:06.010000"],["2024-07-25T13:39:07.010000"],["2024-07-25T13:39:08.010000"],["2024-07-25T13:39:09.010000"],["2024-07-25T13:39:10.010000"],["2024-07-25T13:39:11.010000"],["2024-07-25T13:39:12.010000"],["2024-07-25T13:39:13.010000"],["2024-07-25T13:39:14.010000"],["2024-07-25T13:39:15.010000"],["2024-07-25T13:39:16.010000"],["2024-07-25T13:39:17.010000"],["2024-07-25T13:39:18.010000"],["2024-07-25T13:39:19.010000"],["2024-07-25T13:39:20.010000"],["2024-07-25T13:39:21.010000"],["2024-07-25T13:39:22.010000"],["2024-07-25T13:39:23.010000"],["2024-07-25T13:39:24.010000"],["2024-07-25T13:39:25.010000"],["2024-07-25T13:39:26.010000"],["2024-07-25T13:39:27.010000"],["2024-07-25T13:39:28.010000"],["2024-07-25T13:39:29.010000"],["2024-07-25T13:39:30.010000"],["2024-07-25T13:39:31.010000"],["2024-07-25T13:39:32.010000"],["2024-07-25T13:39:33.010000"],["2024-07-25T13:39:34.010000"],["2024-07-25T13:39:35.010000"],["2024-07-25T13:39:36.010000"],["2024-07-25T13:39:37.010000"],["2024-07-25T13:39:38.010000"],["2024-07-25T13:39:39.010000"],["2024-07-25T13:39:40.010000"],["2024-07-25T13:39:41.010000"],["2024-07-25T13:39:42.010000"],["2024-07-25T13:39:43.010000"],["2024-07-25T13:39:44.010000"],["2024-07-25T13:39:45.010000"],["2024-07-25T13:39:46.010000"],["2024-07-25T13:39:47.010000"],["2024-07-25T13:39:48.010000"],["2024-07-25T13:39:49.010000"],["2024-07-25T13:39:50.010000"],["2024-07-25T13:39:51.010000"],["2024-07-25T13:39:52.010000"],["2024-07-25T13:39:53.010000"],["2024-07-25T13:39:54.010000"],["2024-07-25T13:39:55.010000"],["2024-07-25T13:39:56.010000"],["2024-07-25T13:39:57.010000"],["2024-07-25T13:39:58.010000"],["2024-07-25T13:39:59.010000"],["2024-07-25T13:40:00.010000"],["2024-07-25T13:40:01.010000"],["2024-07-25T13:40:02.010000"],["2024-07-25T13:40:03.010000"],["2024-07-25T13:40:04.010000"],["2024-07-25T13:40:05.010000"],["2024-07-25T13:40:06.010000"],["2024-07-25T13:40:07.010000"],["2024-07-25T13:40:08.010000"],["2024-07-25T13:40:09.010000"],["2024-07-25T13:40:10.010000"],["2024-07-25T13:40:11.010000"],["2024-07-25T13:40:12.010000"],["2024-07-25T13:40:13.010000"],["2024-07-25T13:40:14.010000"],["2024-07-25T13:40:15.010000"],["2024-07-25T13:40:16.010000"],["2024-07-25T13:40:17.010000"],["2024-07-25T13:40:18.010000"],["2024-07-25T13:40:19.010000"],["2024-07-25T13:40:20.010000"],["2024-07-25T13:40:21.010000"],["2024-07-25T13:40:22.010000"],["2024-07-25T13:40:23.010000"],["2024-07-25T13:40:24.010000"],["2024-07-25T13:40:25.010000"],["2024-07-25T13:40:26.010000"],["2024-07-25T13:40:27.010000"],["2024-07-25T13:40:28.010000"],["2024-07-25T13:40:29.010000"],["2024-07-25T13:40:30.010000"],["2024-07-25T13:40:31.010000"],["2024-07-25T13:40:32.010000"],["2024-07-25T13:40:33.010000"],["2024-07-25T13:40:34.010000"],["2024-07-25T13:40:35.010000"],["2024-07-25T13:40:36.010000"],["2024-07-25T13:40:37.010000"],["2024-07-25T13:40:38.010000"],["2024-07-25T13:40:39.010000"],["2024-07-25T13:40:40.010000"],["2024-07-25T13:40:41.010000"],["2024-07-25T13:40:42.010000"],["2024-07-25T13:40:43.010000"],["2024-07-25T13:40:44.010000"],["2024-07-25T13:40:45.010000"],["2024-07-25T13:40:46.010000"],["2024-07-25T13:40:47.010000"],["2024-07-25T13:40:48.010000"],["2024-07-25T13:40:49.010000"],["2024-07-25T13:40:50.010000"],["2024-07-25T13:40:51.010000"],["2024-07-25T13:40:52.010000"],["2024-07-25T13:40:53.010000"],["2024-07-25T13:40:54.010000"],["2024-07-25T13:40:55.010000"],["2024-07-25T13:40:56.010000"],["2024-07-25T13:40:57.010000"],["2024-07-25T13:40:58.010000"],["2024-07-25T13:40:59.010000"],["2024-07-25T13:41:00.010000"],["2024-07-25T13:41:01.010000"],["2024-07-25T13:41:02.010000"],["2024-07-25T13:41:03.010000"],["2024-07-25T13:41:04.010000"],["2024-07-25T13:41:05.010000"],["2024-07-25T13:41:06.010000"],["2024-07-25T13:41:07.010000"],["2024-07-25T13:41:08.010000"],["2024-07-25T13:41:09.010000"],["2024-07-25T13:41:10.010000"],["2024-07-25T13:41:11.010000"],["2024-07-25T13:41:12.010000"],["2024-07-25T13:41:13.010000"],["2024-07-25T13:41:14.010000"],["2024-07-25T13:41:15.010000"],["2024-07-25T13:41:16.010000"],["2024-07-25T13:41:17.010000"],["2024-07-25T13:41:18.010000"],["2024-07-25T13:41:19.010000"],["2024-07-25T13:41:20.010000"],["2024-07-25T13:41:21.010000"],["2024-07-25T13:41:22.010000"],["2024-07-25T13:41:23.010000"],["2024-07-25T13:41:24.010000"],["2024-07-25T13:41:25.010000"],["2024-07-25T13:41:26.010000"],["2024-07-25T13:41:27.010000"],["2024-07-25T13:41:28.010000"],["2024-07-25T13:41:29.010000"],["2024-07-25T13:41:30.010000"],["2024-07-25T13:41:31.010000"],["2024-07-25T13:41:32.010000"],["2024-07-25T13:41:33.010000"],["2024-07-25T13:41:34.010000"],["2024-07-25T13:41:35.010000"],["2024-07-25T13:41:36.010000"],["2024-07-25T13:41:37.010000"],["2024-07-25T13:41:38.010000"],["2024-07-25T13:41:39.010000"],["2024-07-25T13:41:40.010000"],["2024-07-25T13:41:41.010000"],["2024-07-25T13:41:42.010000"],["2024-07-25T13:41:43.010000"],["2024-07-25T13:41:44.010000"],["2024-07-25T13:41:45.010000"],["2024-07-25T13:41:46.010000"],["2024-07-25T13:41:47.010000"],["2024-07-25T13:41:48.010000"],["2024-07-25T13:41:49.010000"],["2024-07-25T13:41:50.010000"],["2024-07-25T13:41:51.010000"],["2024-07-25T13:41:52.010000"],["2024-07-25T13:41:53.010000"],["2024-07-25T13:41:54.010000"],["2024-07-25T13:41:55.010000"],["2024-07-25T13:41:56.010000"],["2024-07-25T13:41:57.010000"],["2024-07-25T13:41:58.010000"],["2024-07-25T13:41:59.010000"],["2024-07-25T13:42:00.010000"],["2024-07-25T13:42:01.010000"],["2024-07-25T13:42:02.010000"],["2024-07-25T13:42:03.010000"],["2024-07-25T13:42:04.010000"],["2024-07-25T13:42:05.010000"],["2024-07-25T13:42:06.010000"],["2024-07-25T13:42:07.010000"],["2024-07-25T13:42:08.010000"],["2024-07-25T13:42:09.010000"],["2024-07-25T13:42:10.010000"],["2024-07-25T13:42:11.010000"],["2024-07-25T13:42:12.010000"],["2024-07-25T13:42:13.010000"],["2024-07-25T13:42:14.010000"],["2024-07-25T13:42:15.010000"],["2024-07-25T13:42:16.010000"],["2024-07-25T13:42:17.010000"],["2024-07-25T13:42:18.010000"],["2024-07-25T13:42:19.010000"],["2024-07-25T13:42:20.010000"],["2024-07-25T13:42:21.010000"],["2024-07-25T13:42:22.010000"],["2024-07-25T13:42:23.010000"],["2024-07-25T13:42:24.010000"],["2024-07-25T13:42:25.010000"],["2024-07-25T13:42:26.010000"],["2024-07-25T13:42:27.010000"],["2024-07-25T13:42:28.010000"],["2024-07-25T13:42:29.010000"],["2024-07-25T13:42:30.010000"],["2024-07-25T13:42:31.010000"],["2024-07-25T13:42:32.010000"],["2024-07-25T13:42:33.010000"],["2024-07-25T13:42:34.010000"],["2024-07-25T13:42:35.010000"],["2024-07-25T13:42:36.010000"],["2024-07-25T13:42:37.010000"],["2024-07-25T13:42:38.010000"],["2024-07-25T13:42:39.010000"],["2024-07-25T13:42:40.010000"],["2024-07-25T13:42:41.010000"],["2024-07-25T13:42:42.010000"],["2024-07-25T13:42:43.010000"],["2024-07-25T13:42:44.010000"],["2024-07-25T13:42:45.010000"],["2024-07-25T13:42:46.010000"],["2024-07-25T13:42:47.010000"],["2024-07-25T13:42:48.010000"],["2024-07-25T13:42:49.010000"],["2024-07-25T13:42:50.010000"],["2024-07-25T13:42:51.010000"],["2024-07-25T13:42:52.010000"],["2024-07-25T13:42:53.010000"],["2024-07-25T13:42:54.010000"],["2024-07-25T13:42:55.010000"],["2024-07-25T13:42:56.010000"],["2024-07-25T13:42:57.010000"],["2024-07-25T13:42:58.010000"],["2024-07-25T13:42:59.010000"],["2024-07-25T13:43:00.010000"],["2024-07-25T13:43:01.010000"],["2024-07-25T13:43:02.010000"],["2024-07-25T13:43:03.010000"],["2024-07-25T13:43:04.010000"],["2024-07-25T13:43:05.010000"],["2024-07-25T13:43:06.010000"],["2024-07-25T13:43:07.010000"],["2024-07-25T13:43:08.010000"],["2024-07-25T13:43:09.010000"],["2024-07-25T13:43:10.010000"],["2024-07-25T13:43:11.010000"],["2024-07-25T13:43:12.010000"],["2024-07-25T13:43:13.010000"],["2024-07-25T13:43:14.010000"],["2024-07-25T13:43:15.010000"],["2024-07-25T13:43:16.010000"],["2024-07-25T13:43:17.010000"],["2024-07-25T13:43:18.010000"],["2024-07-25T13:43:19.010000"],["2024-07-25T13:43:20.010000"],["2024-07-25T13:43:21.010000"],["2024-07-25T13:43:22.010000"],["2024-07-25T13:43:23.010000"],["2024-07-25T13:43:24.010000"],["2024-07-25T13:43:25.010000"],["2024-07-25T13:43:26.010000"],["2024-07-25T13:43:27.010000"],["2024-07-25T13:43:28.010000"],["2024-07-25T13:43:29.010000"],["2024-07-25T13:43:30.010000"],["2024-07-25T13:43:31.010000"],["2024-07-25T13:43:32.010000"],["2024-07-25T13:43:33.010000"],["2024-07-25T13:43:34.010000"],["2024-07-25T13:43:35.010000"],["2024-07-25T13:43:36.010000"],["2024-07-25T13:43:37.010000"],["2024-07-25T13:43:38.010000"],["2024-07-25T13:43:39.010000"],["2024-07-25T13:43:40.010000"],["2024-07-25T13:43:41.010000"],["2024-07-25T13:43:42.010000"],["2024-07-25T13:43:43.010000"],["2024-07-25T13:43:44.010000"],["2024-07-25T13:43:45.010000"],["2024-07-25T13:43:46.010000"],["2024-07-25T13:43:47.010000"],["2024-07-25T13:43:48.010000"],["2024-07-25T13:43:49.010000"],["2024-07-25T13:43:50.010000"],["2024-07-25T13:43:51.010000"],["2024-07-25T13:43:52.010000"],["2024-07-25T13:43:53.010000"],["2024-07-25T13:43:54.010000"],["2024-07-25T13:43:55.010000"],["2024-07-25T13:43:56.010000"],["2024-07-25T13:43:57.010000"],["2024-07-25T13:43:58.010000"],["2024-07-25T13:43:59.010000"],["2024-07-25T13:44:00.010000"],["2024-07-25T13:44:01.010000"],["2024-07-25T13:44:02.010000"],["2024-07-25T13:44:03.010000"],["2024-07-25T13:44:04.010000"],["2024-07-25T13:44:05.010000"],["2024-07-25T13:44:06.010000"],["2024-07-25T13:44:07.010000"],["2024-07-25T13:44:08.010000"],["2024-07-25T13:44:09.010000"],["2024-07-25T13:44:10.010000"],["2024-07-25T13:44:11.010000"],["2024-07-25T13:44:12.010000"],["2024-07-25T13:44:13.010000"],["2024-07-25T13:44:14.010000"],["2024-07-25T13:44:15.010000"],["2024-07-25T13:44:16.010000"],["2024-07-25T13:44:17.010000"],["2024-07-25T13:44:18.010000"],["2024-07-25T13:44:19.010000"],["2024-07-25T13:44:20.010000"],["2024-07-25T13:44:21.010000"],["2024-07-25T13:44:22.010000"],["2024-07-25T13:44:23.010000"],["2024-07-25T13:44:24.010000"],["2024-07-25T13:44:25.010000"],["2024-07-25T13:44:26.010000"],["2024-07-25T13:44:27.010000"],["2024-07-25T13:44:28.010000"],["2024-07-25T13:44:29.010000"],["2024-07-25T13:44:30.010000"],["2024-07-25T13:44:31.010000"],["2024-07-25T13:44:32.010000"],["2024-07-25T13:44:33.010000"],["2024-07-25T13:44:34.010000"],["2024-07-25T13:44:35.010000"],["2024-07-25T13:44:36.010000"],["2024-07-25T13:44:37.010000"],["2024-07-25T13:44:38.010000"],["2024-07-25T13:44:39.010000"],["2024-07-25T13:44:40.010000"],["2024-07-25T13:44:41.010000"],["2024-07-25T13:44:42.010000"],["2024-07-25T13:44:43.010000"],["2024-07-25T13:44:44.010000"],["2024-07-25T13:44:45.010000"],["2024-07-25T13:44:46.010000"],["2024-07-25T13:44:47.010000"],["2024-07-25T13:44:48.010000"],["2024-07-25T13:44:49.010000"],["2024-07-25T13:44:50.010000"],["2024-07-25T13:44:51.010000"],["2024-07-25T13:44:52.010000"],["2024-07-25T13:44:53.010000"],["2024-07-25T13:44:54.010000"],["2024-07-25T13:44:55.010000"],["2024-07-25T13:44:56.010000"],["2024-07-25T13:44:57.010000"],["2024-07-25T13:44:58.010000"],["2024-07-25T13:44:59.010000"],["2024-07-25T13:45:00.010000"],["2024-07-25T13:45:01.010000"],["2024-07-25T13:45:02.010000"],["2024-07-25T13:45:03.010000"],["2024-07-25T13:45:04.010000"],["2024-07-25T13:45:05.010000"],["2024-07-25T13:45:06.010000"],["2024-07-25T13:45:07.010000"],["2024-07-25T13:45:08.010000"],["2024-07-25T13:45:09.010000"],["2024-07-25T13:45:10.010000"],["2024-07-25T13:45:11.010000"],["2024-07-25T13:45:12.010000"],["2024-07-25T13:45:13.010000"],["2024-07-25T13:45:14.010000"],["2024-07-25T13:45:15.010000"],["2024-07-25T13:45:16.010000"],["2024-07-25T13:45:17.010000"],["2024-07-25T13:45:18.010000"],["2024-07-25T13:45:19.010000"],["2024-07-25T13:45:20.010000"],["2024-07-25T13:45:21.010000"],["2024-07-25T13:45:22.010000"],["2024-07-25T13:45:23.010000"],["2024-07-25T13:45:24.010000"],["2024-07-25T13:45:25.010000"],["2024-07-25T13:45:26.010000"],["2024-07-25T13:45:27.010000"],["2024-07-25T13:45:28.010000"],["2024-07-25T13:45:29.010000"],["2024-07-25T13:45:30.010000"],["2024-07-25T13:45:31.010000"],["2024-07-25T13:45:32.010000"],["2024-07-25T13:45:33.010000"],["2024-07-25T13:45:34.010000"],["2024-07-25T13:45:35.010000"],["2024-07-25T13:45:36.010000"],["2024-07-25T13:45:37.010000"],["2024-07-25T13:45:38.010000"],["2024-07-25T13:45:39.010000"],["2024-07-25T13:45:40.010000"],["2024-07-25T13:45:41.010000"],["2024-07-25T13:45:42.010000"],["2024-07-25T13:45:43.010000"],["2024-07-25T13:45:44.010000"],["2024-07-25T13:45:45.010000"],["2024-07-25T13:45:46.010000"],["2024-07-25T13:45:47.010000"],["2024-07-25T13:45:48.010000"],["2024-07-25T13:45:49.010000"],["2024-07-25T13:45:50.010000"],["2024-07-25T13:45:51.010000"],["2024-07-25T13:45:52.010000"],["2024-07-25T13:45:53.010000"],["2024-07-25T13:45:54.010000"],["2024-07-25T13:45:55.010000"],["2024-07-25T13:45:56.010000"],["2024-07-25T13:45:57.010000"],["2024-07-25T13:45:58.010000"],["2024-07-25T13:45:59.010000"],["2024-07-25T13:46:00.010000"],["2024-07-25T13:46:01.010000"],["2024-07-25T13:46:02.010000"],["2024-07-25T13:46:03.010000"],["2024-07-25T13:46:04.010000"],["2024-07-25T13:46:05.010000"],["2024-07-25T13:46:06.010000"],["2024-07-25T13:46:07.010000"],["2024-07-25T13:46:08.010000"],["2024-07-25T13:46:09.010000"],["2024-07-25T13:46:10.010000"],["2024-07-25T13:46:11.010000"],["2024-07-25T13:46:12.010000"],["2024-07-25T13:46:13.010000"],["2024-07-25T13:46:14.010000"],["2024-07-25T13:46:15.010000"],["2024-07-25T13:46:16.010000"],["2024-07-25T13:46:17.010000"],["2024-07-25T13:46:18.010000"],["2024-07-25T13:46:19.010000"],["2024-07-25T13:46:20.010000"],["2024-07-25T13:46:21.010000"],["2024-07-25T13:46:22.010000"],["2024-07-25T13:46:23.010000"],["2024-07-25T13:46:24.010000"],["2024-07-25T13:46:25.010000"],["2024-07-25T13:46:26.010000"],["2024-07-25T13:46:27.010000"],["2024-07-25T13:46:28.010000"],["2024-07-25T13:46:29.010000"],["2024-07-25T13:46:30.010000"],["2024-07-25T13:46:31.010000"],["2024-07-25T13:46:32.010000"],["2024-07-25T13:46:33.010000"],["2024-07-25T13:46:34.010000"],["2024-07-25T13:46:35.010000"],["2024-07-25T13:46:36.010000"],["2024-07-25T13:46:37.010000"],["2024-07-25T13:46:38.010000"],["2024-07-25T13:46:39.010000"],["2024-07-25T13:46:40.010000"],["2024-07-25T13:46:41.010000"],["2024-07-25T13:46:42.010000"],["2024-07-25T13:46:43.010000"],["2024-07-25T13:46:44.010000"],["2024-07-25T13:46:45.010000"],["2024-07-25T13:46:46.010000"],["2024-07-25T13:46:47.010000"],["2024-07-25T13:46:48.010000"],["2024-07-25T13:46:49.010000"],["2024-07-25T13:46:50.010000"],["2024-07-25T13:46:51.010000"],["2024-07-25T13:46:52.010000"],["2024-07-25T13:46:53.010000"],["2024-07-25T13:46:54.010000"],["2024-07-25T13:46:55.010000"],["2024-07-25T13:46:56.010000"],["2024-07-25T13:46:57.010000"],["2024-07-25T13:46:58.010000"],["2024-07-25T13:46:59.010000"],["2024-07-25T13:47:00.010000"],["2024-07-25T13:47:01.010000"],["2024-07-25T13:47:02.010000"],["2024-07-25T13:47:03.010000"],["2024-07-25T13:47:04.010000"],["2024-07-25T13:47:05.010000"],["2024-07-25T13:47:06.010000"],["2024-07-25T13:47:07.010000"],["2024-07-25T13:47:08.010000"],["2024-07-25T13:47:09.010000"],["2024-07-25T13:47:10.010000"],["2024-07-25T13:47:11.010000"],["2024-07-25T13:47:12.010000"],["2024-07-25T13:47:13.010000"],["2024-07-25T13:47:14.010000"],["2024-07-25T13:47:15.010000"],["2024-07-25T13:47:16.010000"],["2024-07-25T13:47:17.010000"],["2024-07-25T13:47:18.010000"],["2024-07-25T13:47:19.010000"],["2024-07-25T13:47:20.010000"],["2024-07-25T13:47:21.010000"],["2024-07-25T13:47:22.010000"],["2024-07-25T13:47:23.010000"],["2024-07-25T13:47:24.010000"],["2024-07-25T13:47:25.010000"],["2024-07-25T13:47:26.010000"],["2024-07-25T13:47:27.010000"],["2024-07-25T13:47:28.010000"],["2024-07-25T13:47:29.010000"],["2024-07-25T13:47:30.010000"],["2024-07-25T13:47:31.010000"],["2024-07-25T13:47:32.010000"],["2024-07-25T13:47:33.010000"],["2024-07-25T13:47:34.010000"],["2024-07-25T13:47:35.010000"],["2024-07-25T13:47:36.010000"],["2024-07-25T13:47:37.010000"],["2024-07-25T13:47:38.010000"],["2024-07-25T13:47:39.010000"],["2024-07-25T13:47:40.010000"],["2024-07-25T13:47:41.010000"],["2024-07-25T13:47:42.010000"],["2024-07-25T13:47:43.010000"],["2024-07-25T13:47:44.010000"],["2024-07-25T13:47:45.010000"],["2024-07-25T13:47:46.010000"],["2024-07-25T13:47:47.010000"],["2024-07-25T13:47:48.010000"],["2024-07-25T13:47:49.010000"],["2024-07-25T13:47:50.010000"],["2024-07-25T13:47:51.010000"],["2024-07-25T13:47:52.010000"],["2024-07-25T13:47:53.010000"],["2024-07-25T13:47:54.010000"],["2024-07-25T13:47:55.010000"],["2024-07-25T13:47:56.010000"],["2024-07-25T13:47:57.010000"],["2024-07-25T13:47:58.010000"],["2024-07-25T13:47:59.010000"],["2024-07-25T13:48:00.010000"],["2024-07-25T13:48:01.010000"],["2024-07-25T13:48:02.010000"],["2024-07-25T13:48:03.010000"],["2024-07-25T13:48:04.010000"],["2024-07-25T13:48:05.010000"],["2024-07-25T13:48:06.010000"],["2024-07-25T13:48:07.010000"],["2024-07-25T13:48:08.010000"],["2024-07-25T13:48:09.010000"],["2024-07-25T13:48:10.010000"],["2024-07-25T13:48:11.010000"],["2024-07-25T13:48:12.010000"],["2024-07-25T13:48:13.010000"],["2024-07-25T13:48:14.010000"],["2024-07-25T13:48:15.010000"],["2024-07-25T13:48:16.010000"],["2024-07-25T13:48:17.010000"],["2024-07-25T13:48:18.010000"],["2024-07-25T13:48:19.010000"],["2024-07-25T13:48:20.010000"],["2024-07-25T13:48:21.010000"],["2024-07-25T13:48:22.010000"],["2024-07-25T13:48:23.010000"],["2024-07-25T13:48:24.010000"],["2024-07-25T13:48:25.010000"],["2024-07-25T13:48:26.010000"],["2024-07-25T13:48:27.010000"],["2024-07-25T13:48:28.010000"],["2024-07-25T13:48:29.010000"],["2024-07-25T13:48:30.010000"],["2024-07-25T13:48:31.010000"],["2024-07-25T13:48:32.010000"],["2024-07-25T13:48:33.010000"],["2024-07-25T13:48:34.010000"],["2024-07-25T13:48:35.010000"],["2024-07-25T13:48:36.010000"],["2024-07-25T13:48:37.010000"],["2024-07-25T13:48:38.010000"],["2024-07-25T13:48:39.010000"],["2024-07-25T13:48:40.010000"],["2024-07-25T13:48:41.010000"],["2024-07-25T13:48:42.010000"],["2024-07-25T13:48:43.010000"],["2024-07-25T13:48:44.010000"],["2024-07-25T13:48:45.010000"],["2024-07-25T13:48:46.010000"],["2024-07-25T13:48:47.010000"],["2024-07-25T13:48:48.010000"],["2024-07-25T13:48:49.010000"],["2024-07-25T13:48:50.010000"],["2024-07-25T13:48:51.010000"],["2024-07-25T13:48:52.010000"],["2024-07-25T13:48:53.010000"],["2024-07-25T13:48:54.010000"],["2024-07-25T13:48:55.010000"],["2024-07-25T13:48:56.010000"],["2024-07-25T13:48:57.010000"],["2024-07-25T13:48:58.010000"],["2024-07-25T13:48:59.010000"],["2024-07-25T13:49:00.010000"],["2024-07-25T13:49:01.010000"],["2024-07-25T13:49:02.010000"],["2024-07-25T13:49:03.010000"],["2024-07-25T13:49:04.010000"],["2024-07-25T13:49:05.010000"],["2024-07-25T13:49:06.010000"],["2024-07-25T13:49:07.010000"],["2024-07-25T13:49:08.010000"],["2024-07-25T13:49:09.010000"],["2024-07-25T13:49:10.010000"],["2024-07-25T13:49:11.010000"],["2024-07-25T13:49:12.010000"],["2024-07-25T13:49:13.010000"],["2024-07-25T13:49:14.010000"],["2024-07-25T13:49:15.010000"],["2024-07-25T13:49:16.010000"],["2024-07-25T13:49:17.010000"],["2024-07-25T13:49:18.010000"],["2024-07-25T13:49:19.010000"],["2024-07-25T13:49:20.010000"],["2024-07-25T13:49:21.010000"],["2024-07-25T13:49:22.010000"],["2024-07-25T13:49:23.010000"],["2024-07-25T13:49:24.010000"],["2024-07-25T13:49:25.010000"],["2024-07-25T13:49:26.010000"],["2024-07-25T13:49:27.010000"],["2024-07-25T13:49:28.010000"],["2024-07-25T13:49:29.010000"],["2024-07-25T13:49:30.010000"],["2024-07-25T13:49:31.010000"],["2024-07-25T13:49:32.010000"],["2024-07-25T13:49:33.010000"],["2024-07-25T13:49:34.010000"],["2024-07-25T13:49:35.010000"],["2024-07-25T13:49:36.010000"],["2024-07-25T13:49:37.010000"],["2024-07-25T13:49:38.010000"],["2024-07-25T13:49:39.010000"],["2024-07-25T13:49:40.010000"],["2024-07-25T13:49:41.010000"],["2024-07-25T13:49:42.010000"],["2024-07-25T13:49:43.010000"],["2024-07-25T13:49:44.010000"],["2024-07-25T13:49:45.010000"],["2024-07-25T13:49:46.010000"],["2024-07-25T13:49:47.010000"],["2024-07-25T13:49:48.010000"],["2024-07-25T13:49:49.010000"],["2024-07-25T13:49:50.010000"],["2024-07-25T13:49:51.010000"],["2024-07-25T13:49:52.010000"],["2024-07-25T13:49:53.010000"],["2024-07-25T13:49:54.010000"],["2024-07-25T13:49:55.010000"],["2024-07-25T13:49:56.010000"],["2024-07-25T13:49:57.010000"],["2024-07-25T13:49:58.010000"],["2024-07-25T13:49:59.010000"],["2024-07-25T13:50:00.010000"],["2024-07-25T13:50:01.010000"],["2024-07-25T13:50:02.010000"],["2024-07-25T13:50:03.010000"],["2024-07-25T13:50:04.010000"],["2024-07-25T13:50:05.010000"],["2024-07-25T13:50:06.010000"],["2024-07-25T13:50:07.010000"],["2024-07-25T13:50:08.010000"],["2024-07-25T13:50:09.010000"],["2024-07-25T13:50:10.010000"],["2024-07-25T13:50:11.010000"],["2024-07-25T13:50:12.010000"],["2024-07-25T13:50:13.010000"],["2024-07-25T13:50:14.010000"],["2024-07-25T13:50:15.010000"],["2024-07-25T13:50:16.010000"],["2024-07-25T13:50:17.010000"],["2024-07-25T13:50:18.010000"],["2024-07-25T13:50:19.010000"],["2024-07-25T13:50:20.010000"],["2024-07-25T13:50:21.010000"],["2024-07-25T13:50:22.010000"],["2024-07-25T13:50:23.010000"],["2024-07-25T13:50:24.010000"],["2024-07-25T13:50:25.010000"],["2024-07-25T13:50:26.010000"],["2024-07-25T13:50:27.010000"],["2024-07-25T13:50:28.010000"],["2024-07-25T13:50:29.010000"],["2024-07-25T13:50:30.010000"],["2024-07-25T13:50:31.010000"],["2024-07-25T13:50:32.010000"],["2024-07-25T13:50:33.010000"],["2024-07-25T13:50:34.010000"],["2024-07-25T13:50:35.010000"],["2024-07-25T13:50:36.010000"],["2024-07-25T13:50:37.010000"],["2024-07-25T13:50:38.010000"],["2024-07-25T13:50:39.010000"],["2024-07-25T13:50:40.010000"],["2024-07-25T13:50:41.010000"],["2024-07-25T13:50:42.010000"],["2024-07-25T13:50:43.010000"],["2024-07-25T13:50:44.010000"],["2024-07-25T13:50:45.010000"],["2024-07-25T13:50:46.010000"],["2024-07-25T13:50:47.010000"],["2024-07-25T13:50:48.010000"],["2024-07-25T13:50:49.010000"],["2024-07-25T13:50:50.010000"],["2024-07-25T13:50:51.010000"],["2024-07-25T13:50:52.010000"],["2024-07-25T13:50:53.010000"],["2024-07-25T13:50:54.010000"],["2024-07-25T13:50:55.010000"],["2024-07-25T13:50:56.010000"],["2024-07-25T13:50:57.010000"],["2024-07-25T13:50:58.010000"],["2024-07-25T13:50:59.010000"],["2024-07-25T13:51:00.010000"],["2024-07-25T13:51:01.010000"],["2024-07-25T13:51:02.010000"],["2024-07-25T13:51:03.010000"],["2024-07-25T13:51:04.010000"],["2024-07-25T13:51:05.010000"],["2024-07-25T13:51:06.010000"],["2024-07-25T13:51:07.010000"],["2024-07-25T13:51:08.010000"],["2024-07-25T13:51:09.010000"],["2024-07-25T13:51:10.010000"],["2024-07-25T13:51:11.010000"],["2024-07-25T13:51:12.010000"],["2024-07-25T13:51:13.010000"],["2024-07-25T13:51:14.010000"],["2024-07-25T13:51:15.010000"],["2024-07-25T13:51:16.010000"],["2024-07-25T13:51:17.010000"],["2024-07-25T13:51:18.010000"],["2024-07-25T13:51:19.010000"],["2024-07-25T13:51:20.010000"],["2024-07-25T13:51:21.010000"],["2024-07-25T13:51:22.010000"],["2024-07-25T13:51:23.010000"],["2024-07-25T13:51:24.010000"],["2024-07-25T13:51:25.010000"],["2024-07-25T13:51:26.010000"],["2024-07-25T13:51:27.010000"],["2024-07-25T13:51:28.010000"],["2024-07-25T13:51:29.010000"],["2024-07-25T13:51:30.010000"],["2024-07-25T13:51:31.010000"],["2024-07-25T13:51:32.010000"],["2024-07-25T13:51:33.010000"],["2024-07-25T13:51:34.010000"],["2024-07-25T13:51:35.010000"],["2024-07-25T13:51:36.010000"],["2024-07-25T13:51:37.010000"],["2024-07-25T13:51:38.010000"],["2024-07-25T13:51:39.010000"],["2024-07-25T13:51:40.010000"],["2024-07-25T13:51:41.010000"],["2024-07-25T13:51:42.010000"],["2024-07-25T13:51:43.010000"],["2024-07-25T13:51:44.010000"],["2024-07-25T13:51:45.010000"],["2024-07-25T13:51:46.010000"],["2024-07-25T13:51:47.010000"],["2024-07-25T13:51:48.010000"],["2024-07-25T13:51:49.010000"],["2024-07-25T13:51:50.010000"],["2024-07-25T13:51:51.010000"],["2024-07-25T13:51:52.010000"],["2024-07-25T13:51:53.010000"],["2024-07-25T13:51:54.010000"],["2024-07-25T13:51:55.010000"],["2024-07-25T13:51:56.010000"],["2024-07-25T13:51:57.010000"],["2024-07-25T13:51:58.010000"],["2024-07-25T13:51:59.010000"],["2024-07-25T13:52:00.010000"],["2024-07-25T13:52:01.010000"],["2024-07-25T13:52:02.010000"],["2024-07-25T13:52:03.010000"],["2024-07-25T13:52:04.010000"],["2024-07-25T13:52:05.010000"],["2024-07-25T13:52:06.010000"],["2024-07-25T13:52:07.010000"],["2024-07-25T13:52:08.010000"],["2024-07-25T13:52:09.010000"],["2024-07-25T13:52:10.010000"],["2024-07-25T13:52:11.010000"],["2024-07-25T13:52:12.010000"],["2024-07-25T13:52:13.010000"],["2024-07-25T13:52:14.010000"],["2024-07-25T13:52:15.010000"],["2024-07-25T13:52:16.010000"],["2024-07-25T13:52:17.010000"],["2024-07-25T13:52:18.010000"],["2024-07-25T13:52:19.010000"],["2024-07-25T13:52:20.010000"],["2024-07-25T13:52:21.010000"],["2024-07-25T13:52:22.010000"],["2024-07-25T13:52:23.010000"],["2024-07-25T13:52:24.010000"],["2024-07-25T13:52:25.010000"],["2024-07-25T13:52:26.010000"],["2024-07-25T13:52:27.010000"],["2024-07-25T13:52:28.010000"],["2024-07-25T13:52:29.010000"],["2024-07-25T13:52:30.010000"],["2024-07-25T13:52:31.010000"],["2024-07-25T13:52:32.010000"],["2024-07-25T13:52:33.010000"],["2024-07-25T13:52:34.010000"],["2024-07-25T13:52:35.010000"],["2024-07-25T13:52:36.010000"],["2024-07-25T13:52:37.010000"],["2024-07-25T13:52:38.010000"],["2024-07-25T13:52:39.010000"],["2024-07-25T13:52:40.010000"],["2024-07-25T13:52:41.010000"],["2024-07-25T13:52:42.010000"],["2024-07-25T13:52:43.010000"],["2024-07-25T13:52:44.010000"],["2024-07-25T13:52:45.010000"],["2024-07-25T13:52:46.010000"],["2024-07-25T13:52:47.010000"],["2024-07-25T13:52:48.010000"],["2024-07-25T13:52:49.010000"],["2024-07-25T13:52:50.010000"],["2024-07-25T13:52:51.010000"],["2024-07-25T13:52:52.010000"],["2024-07-25T13:52:53.010000"],["2024-07-25T13:52:54.010000"],["2024-07-25T13:52:55.010000"],["2024-07-25T13:52:56.010000"],["2024-07-25T13:52:57.010000"],["2024-07-25T13:52:58.010000"],["2024-07-25T13:52:59.010000"],["2024-07-25T13:53:00.010000"],["2024-07-25T13:53:01.010000"],["2024-07-25T13:53:02.010000"],["2024-07-25T13:53:03.010000"],["2024-07-25T13:53:04.010000"],["2024-07-25T13:53:05.010000"],["2024-07-25T13:53:06.010000"],["2024-07-25T13:53:07.010000"],["2024-07-25T13:53:08.010000"],["2024-07-25T13:53:09.010000"],["2024-07-25T13:53:10.010000"],["2024-07-25T13:53:11.010000"],["2024-07-25T13:53:12.010000"],["2024-07-25T13:53:13.010000"],["2024-07-25T13:53:14.010000"],["2024-07-25T13:53:15.010000"],["2024-07-25T13:53:16.010000"],["2024-07-25T13:53:17.010000"],["2024-07-25T13:53:18.010000"],["2024-07-25T13:53:19.010000"],["2024-07-25T13:53:20.010000"],["2024-07-25T13:53:21.010000"],["2024-07-25T13:53:22.010000"],["2024-07-25T13:53:23.010000"],["2024-07-25T13:53:24.010000"],["2024-07-25T13:53:25.010000"],["2024-07-25T13:53:26.010000"],["2024-07-25T13:53:27.010000"],["2024-07-25T13:53:28.010000"],["2024-07-25T13:53:29.010000"],["2024-07-25T13:53:30.010000"],["2024-07-25T13:53:31.010000"],["2024-07-25T13:53:32.010000"],["2024-07-25T13:53:33.010000"],["2024-07-25T13:53:34.010000"],["2024-07-25T13:53:35.010000"],["2024-07-25T13:53:36.010000"],["2024-07-25T13:53:37.010000"],["2024-07-25T13:53:38.010000"],["2024-07-25T13:53:39.010000"],["2024-07-25T13:53:40.010000"],["2024-07-25T13:53:41.010000"],["2024-07-25T13:53:42.010000"],["2024-07-25T13:53:43.010000"],["2024-07-25T13:53:44.010000"],["2024-07-25T13:53:45.010000"],["2024-07-25T13:53:46.010000"],["2024-07-25T13:53:47.010000"],["2024-07-25T13:53:48.010000"],["2024-07-25T13:53:49.010000"],["2024-07-25T13:53:50.010000"],["2024-07-25T13:53:51.010000"],["2024-07-25T13:53:52.010000"],["2024-07-25T13:53:53.010000"],["2024-07-25T13:53:54.010000"],["2024-07-25T13:53:55.010000"],["2024-07-25T13:53:56.010000"],["2024-07-25T13:53:57.010000"],["2024-07-25T13:53:58.010000"],["2024-07-25T13:53:59.010000"],["2024-07-25T13:54:00.010000"],["2024-07-25T13:54:01.010000"],["2024-07-25T13:54:02.010000"],["2024-07-25T13:54:03.010000"],["2024-07-25T13:54:04.010000"],["2024-07-25T13:54:05.010000"],["2024-07-25T13:54:06.010000"],["2024-07-25T13:54:07.010000"],["2024-07-25T13:54:08.010000"],["2024-07-25T13:54:09.010000"],["2024-07-25T13:54:10.010000"],["2024-07-25T13:54:11.010000"],["2024-07-25T13:54:12.010000"],["2024-07-25T13:54:13.010000"],["2024-07-25T13:54:14.010000"],["2024-07-25T13:54:15.010000"],["2024-07-25T13:54:16.010000"],["2024-07-25T13:54:17.010000"],["2024-07-25T13:54:18.010000"],["2024-07-25T13:54:19.010000"],["2024-07-25T13:54:20.010000"],["2024-07-25T13:54:21.010000"],["2024-07-25T13:54:22.010000"],["2024-07-25T13:54:23.010000"],["2024-07-25T13:54:24.010000"],["2024-07-25T13:54:25.010000"],["2024-07-25T13:54:26.010000"],["2024-07-25T13:54:27.010000"],["2024-07-25T13:54:28.010000"],["2024-07-25T13:54:29.010000"],["2024-07-25T13:54:30.010000"],["2024-07-25T13:54:31.010000"],["2024-07-25T13:54:32.010000"],["2024-07-25T13:54:33.010000"],["2024-07-25T13:54:34.010000"],["2024-07-25T13:54:35.010000"],["2024-07-25T13:54:36.010000"],["2024-07-25T13:54:37.010000"],["2024-07-25T13:54:38.010000"],["2024-07-25T13:54:39.010000"],["2024-07-25T13:54:40.010000"],["2024-07-25T13:54:41.010000"],["2024-07-25T13:54:42.010000"],["2024-07-25T13:54:43.010000"],["2024-07-25T13:54:44.010000"],["2024-07-25T13:54:45.010000"],["2024-07-25T13:54:46.010000"],["2024-07-25T13:54:47.010000"],["2024-07-25T13:54:48.010000"],["2024-07-25T13:54:49.010000"],["2024-07-25T13:54:50.010000"],["2024-07-25T13:54:51.010000"],["2024-07-25T13:54:52.010000"],["2024-07-25T13:54:53.010000"],["2024-07-25T13:54:54.010000"],["2024-07-25T13:54:55.010000"],["2024-07-25T13:54:56.010000"],["2024-07-25T13:54:57.010000"],["2024-07-25T13:54:58.010000"],["2024-07-25T13:54:59.010000"],["2024-07-25T13:55:00.010000"],["2024-07-25T13:55:01.010000"],["2024-07-25T13:55:02.010000"],["2024-07-25T13:55:03.010000"],["2024-07-25T13:55:04.010000"],["2024-07-25T13:55:05.010000"],["2024-07-25T13:55:06.010000"],["2024-07-25T13:55:07.010000"],["2024-07-25T13:55:08.010000"],["2024-07-25T13:55:09.010000"],["2024-07-25T13:55:10.010000"],["2024-07-25T13:55:11.010000"],["2024-07-25T13:55:12.010000"],["2024-07-25T13:55:13.010000"],["2024-07-25T13:55:14.010000"],["2024-07-25T13:55:15.010000"],["2024-07-25T13:55:16.010000"],["2024-07-25T13:55:17.010000"],["2024-07-25T13:55:18.010000"],["2024-07-25T13:55:19.010000"],["2024-07-25T13:55:20.010000"],["2024-07-25T13:55:21.010000"],["2024-07-25T13:55:22.010000"],["2024-07-25T13:55:23.010000"],["2024-07-25T13:55:24.010000"],["2024-07-25T13:55:25.010000"],["2024-07-25T13:55:26.010000"],["2024-07-25T13:55:27.010000"],["2024-07-25T13:55:28.010000"],["2024-07-25T13:55:29.010000"],["2024-07-25T13:55:30.010000"],["2024-07-25T13:55:31.010000"],["2024-07-25T13:55:32.010000"],["2024-07-25T13:55:33.010000"],["2024-07-25T13:55:34.010000"],["2024-07-25T13:55:35.010000"],["2024-07-25T13:55:36.010000"],["2024-07-25T13:55:37.010000"],["2024-07-25T13:55:38.010000"],["2024-07-25T13:55:39.010000"],["2024-07-25T13:55:40.010000"],["2024-07-25T13:55:41.010000"],["2024-07-25T13:55:42.010000"],["2024-07-25T13:55:43.010000"],["2024-07-25T13:55:44.010000"],["2024-07-25T13:55:45.010000"],["2024-07-25T13:55:46.010000"],["2024-07-25T13:55:47.010000"],["2024-07-25T13:55:48.010000"],["2024-07-25T13:55:49.010000"],["2024-07-25T13:55:50.010000"],["2024-07-25T13:55:51.010000"],["2024-07-25T13:55:52.010000"],["2024-07-25T13:55:53.010000"],["2024-07-25T13:55:54.010000"],["2024-07-25T13:55:55.010000"],["2024-07-25T13:55:56.010000"],["2024-07-25T13:55:57.010000"],["2024-07-25T13:55:58.010000"],["2024-07-25T13:55:59.010000"],["2024-07-25T13:56:00.010000"],["2024-07-25T13:56:01.010000"],["2024-07-25T13:56:02.010000"],["2024-07-25T13:56:03.010000"],["2024-07-25T13:56:04.010000"],["2024-07-25T13:56:05.010000"],["2024-07-25T13:56:06.010000"],["2024-07-25T13:56:07.010000"],["2024-07-25T13:56:08.010000"],["2024-07-25T13:56:09.010000"],["2024-07-25T13:56:10.010000"],["2024-07-25T13:56:11.010000"],["2024-07-25T13:56:12.010000"],["2024-07-25T13:56:13.010000"],["2024-07-25T13:56:14.010000"],["2024-07-25T13:56:15.010000"],["2024-07-25T13:56:16.010000"],["2024-07-25T13:56:17.010000"],["2024-07-25T13:56:18.010000"],["2024-07-25T13:56:19.010000"],["2024-07-25T13:56:20.010000"],["2024-07-25T13:56:21.010000"],["2024-07-25T13:56:22.010000"],["2024-07-25T13:56:23.010000"],["2024-07-25T13:56:24.010000"],["2024-07-25T13:56:25.010000"],["2024-07-25T13:56:26.010000"],["2024-07-25T13:56:27.010000"],["2024-07-25T13:56:28.010000"],["2024-07-25T13:56:29.010000"],["2024-07-25T13:56:30.010000"],["2024-07-25T13:56:31.010000"],["2024-07-25T13:56:32.010000"],["2024-07-25T13:56:33.010000"],["2024-07-25T13:56:34.010000"],["2024-07-25T13:56:35.010000"],["2024-07-25T13:56:36.010000"],["2024-07-25T13:56:37.010000"],["2024-07-25T13:56:38.010000"],["2024-07-25T13:56:39.010000"],["2024-07-25T13:56:40.010000"],["2024-07-25T13:56:41.010000"],["2024-07-25T13:56:42.010000"],["2024-07-25T13:56:43.010000"],["2024-07-25T13:56:44.010000"],["2024-07-25T13:56:45.010000"],["2024-07-25T13:56:46.010000"],["2024-07-25T13:56:47.010000"],["2024-07-25T13:56:48.010000"],["2024-07-25T13:56:49.010000"],["2024-07-25T13:56:50.010000"],["2024-07-25T13:56:51.010000"],["2024-07-25T13:56:52.010000"],["2024-07-25T13:56:53.010000"],["2024-07-25T13:56:54.010000"],["2024-07-25T13:56:55.010000"],["2024-07-25T13:56:56.010000"],["2024-07-25T13:56:57.010000"],["2024-07-25T13:56:58.010000"],["2024-07-25T13:56:59.010000"],["2024-07-25T13:57:00.010000"],["2024-07-25T13:57:01.010000"],["2024-07-25T13:57:02.010000"],["2024-07-25T13:57:03.010000"],["2024-07-25T13:57:04.010000"],["2024-07-25T13:57:05.010000"],["2024-07-25T13:57:06.010000"],["2024-07-25T13:57:07.010000"],["2024-07-25T13:57:08.010000"],["2024-07-25T13:57:09.010000"],["2024-07-25T13:57:10.010000"],["2024-07-25T13:57:11.010000"],["2024-07-25T13:57:12.010000"],["2024-07-25T13:57:13.010000"],["2024-07-25T13:57:14.010000"],["2024-07-25T13:57:15.010000"],["2024-07-25T13:57:16.010000"],["2024-07-25T13:57:17.010000"],["2024-07-25T13:57:18.010000"],["2024-07-25T13:57:19.010000"],["2024-07-25T13:57:20.010000"],["2024-07-25T13:57:21.010000"],["2024-07-25T13:57:22.010000"],["2024-07-25T13:57:23.010000"],["2024-07-25T13:57:24.010000"],["2024-07-25T13:57:25.010000"],["2024-07-25T13:57:26.010000"],["2024-07-25T13:57:27.010000"],["2024-07-25T13:57:28.010000"],["2024-07-25T13:57:29.010000"],["2024-07-25T13:57:30.010000"],["2024-07-25T13:57:31.010000"],["2024-07-25T13:57:32.010000"],["2024-07-25T13:57:33.010000"],["2024-07-25T13:57:34.010000"],["2024-07-25T13:57:35.010000"],["2024-07-25T13:57:36.010000"],["2024-07-25T13:57:37.010000"],["2024-07-25T13:57:38.010000"],["2024-07-25T13:57:39.010000"],["2024-07-25T13:57:40.010000"],["2024-07-25T13:57:41.010000"],["2024-07-25T13:57:42.010000"],["2024-07-25T13:57:43.010000"],["2024-07-25T13:57:44.010000"],["2024-07-25T13:57:45.010000"],["2024-07-25T13:57:46.010000"],["2024-07-25T13:57:47.010000"],["2024-07-25T13:57:48.010000"],["2024-07-25T13:57:49.010000"],["2024-07-25T13:57:50.010000"],["2024-07-25T13:57:51.010000"],["2024-07-25T13:57:52.010000"],["2024-07-25T13:57:53.010000"],["2024-07-25T13:57:54.010000"],["2024-07-25T13:57:55.010000"],["2024-07-25T13:57:56.010000"],["2024-07-25T13:57:57.010000"],["2024-07-25T13:57:58.010000"],["2024-07-25T13:57:59.010000"],["2024-07-25T13:58:00.010000"],["2024-07-25T13:58:01.010000"],["2024-07-25T13:58:02.010000"],["2024-07-25T13:58:03.010000"],["2024-07-25T13:58:04.010000"],["2024-07-25T13:58:05.010000"],["2024-07-25T13:58:06.010000"],["2024-07-25T13:58:07.010000"],["2024-07-25T13:58:08.010000"],["2024-07-25T13:58:09.010000"],["2024-07-25T13:58:10.010000"],["2024-07-25T13:58:11.010000"],["2024-07-25T13:58:12.010000"],["2024-07-25T13:58:13.010000"],["2024-07-25T13:58:14.010000"],["2024-07-25T13:58:15.010000"],["2024-07-25T13:58:16.010000"],["2024-07-25T13:58:17.010000"],["2024-07-25T13:58:18.010000"],["2024-07-25T13:58:19.010000"],["2024-07-25T13:58:20.010000"],["2024-07-25T13:58:21.010000"],["2024-07-25T13:58:22.010000"],["2024-07-25T13:58:23.010000"],["2024-07-25T13:58:24.010000"],["2024-07-25T13:58:25.010000"],["2024-07-25T13:58:26.010000"],["2024-07-25T13:58:27.010000"],["2024-07-25T13:58:28.010000"],["2024-07-25T13:58:29.010000"],["2024-07-25T13:58:30.010000"],["2024-07-25T13:58:31.010000"],["2024-07-25T13:58:32.010000"],["2024-07-25T13:58:33.010000"],["2024-07-25T13:58:34.010000"],["2024-07-25T13:58:35.010000"],["2024-07-25T13:58:36.010000"],["2024-07-25T13:58:37.010000"],["2024-07-25T13:58:38.010000"],["2024-07-25T13:58:39.010000"],["2024-07-25T13:58:40.010000"],["2024-07-25T13:58:41.010000"],["2024-07-25T13:58:42.010000"],["2024-07-25T13:58:43.010000"],["2024-07-25T13:58:44.010000"],["2024-07-25T13:58:45.010000"],["2024-07-25T13:58:46.010000"],["2024-07-25T13:58:47.010000"],["2024-07-25T13:58:48.010000"],["2024-07-25T13:58:49.010000"],["2024-07-25T13:58:50.010000"],["2024-07-25T13:58:51.010000"],["2024-07-25T13:58:52.010000"],["2024-07-25T13:58:53.010000"],["2024-07-25T13:58:54.010000"],["2024-07-25T13:58:55.010000"],["2024-07-25T13:58:56.010000"],["2024-07-25T13:58:57.010000"],["2024-07-25T13:58:58.010000"],["2024-07-25T13:58:59.010000"],["2024-07-25T13:59:00.010000"],["2024-07-25T13:59:01.010000"],["2024-07-25T13:59:02.010000"],["2024-07-25T13:59:03.010000"],["2024-07-25T13:59:04.010000"],["2024-07-25T13:59:05.010000"],["2024-07-25T13:59:06.010000"],["2024-07-25T13:59:07.010000"],["2024-07-25T13:59:08.010000"],["2024-07-25T13:59:09.010000"],["2024-07-25T13:59:10.010000"],["2024-07-25T13:59:11.010000"],["2024-07-25T13:59:12.010000"],["2024-07-25T13:59:13.010000"],["2024-07-25T13:59:14.010000"],["2024-07-25T13:59:15.010000"],["2024-07-25T13:59:16.010000"],["2024-07-25T13:59:17.010000"],["2024-07-25T13:59:18.010000"],["2024-07-25T13:59:19.010000"],["2024-07-25T13:59:20.010000"],["2024-07-25T13:59:21.010000"],["2024-07-25T13:59:22.010000"],["2024-07-25T13:59:23.010000"],["2024-07-25T13:59:24.010000"],["2024-07-25T13:59:25.010000"],["2024-07-25T13:59:26.010000"],["2024-07-25T13:59:27.010000"],["2024-07-25T13:59:28.010000"],["2024-07-25T13:59:29.010000"],["2024-07-25T13:59:30.010000"],["2024-07-25T13:59:31.010000"],["2024-07-25T13:59:32.010000"],["2024-07-25T13:59:33.010000"],["2024-07-25T13:59:34.010000"],["2024-07-25T13:59:35.010000"],["2024-07-25T13:59:36.010000"],["2024-07-25T13:59:37.010000"],["2024-07-25T13:59:38.010000"],["2024-07-25T13:59:39.010000"],["2024-07-25T13:59:40.010000"],["2024-07-25T13:59:41.010000"],["2024-07-25T13:59:42.010000"],["2024-07-25T13:59:43.010000"],["2024-07-25T13:59:44.010000"],["2024-07-25T13:59:45.010000"],["2024-07-25T13:59:46.010000"],["2024-07-25T13:59:47.010000"],["2024-07-25T13:59:48.010000"],["2024-07-25T13:59:49.010000"],["2024-07-25T13:59:50.010000"],["2024-07-25T13:59:51.010000"],["2024-07-25T13:59:52.010000"],["2024-07-25T13:59:53.010000"],["2024-07-25T13:59:54.010000"],["2024-07-25T13:59:55.010000"],["2024-07-25T13:59:56.010000"],["2024-07-25T13:59:57.010000"],["2024-07-25T13:59:58.010000"],["2024-07-25T13:59:59.010000"],["2024-07-25T14:00:00.010000"],["2024-07-25T14:00:01.010000"],["2024-07-25T14:00:02.010000"],["2024-07-25T14:00:03.010000"],["2024-07-25T14:00:04.010000"],["2024-07-25T14:00:05.010000"],["2024-07-25T14:00:06.010000"],["2024-07-25T14:00:07.010000"],["2024-07-25T14:00:08.010000"],["2024-07-25T14:00:09.010000"],["2024-07-25T14:00:10.010000"],["2024-07-25T14:00:11.010000"],["2024-07-25T14:00:12.010000"],["2024-07-25T14:00:13.010000"],["2024-07-25T14:00:14.010000"],["2024-07-25T14:00:15.010000"],["2024-07-25T14:00:16.010000"],["2024-07-25T14:00:17.010000"],["2024-07-25T14:00:18.010000"],["2024-07-25T14:00:19.010000"],["2024-07-25T14:00:20.010000"],["2024-07-25T14:00:21.010000"],["2024-07-25T14:00:22.010000"],["2024-07-25T14:00:23.010000"],["2024-07-25T14:00:24.010000"],["2024-07-25T14:00:25.010000"],["2024-07-25T14:00:26.010000"],["2024-07-25T14:00:27.010000"],["2024-07-25T14:00:28.010000"],["2024-07-25T14:00:29.010000"],["2024-07-25T14:00:30.010000"],["2024-07-25T14:00:31.010000"],["2024-07-25T14:00:32.010000"],["2024-07-25T14:00:33.010000"],["2024-07-25T14:00:34.010000"],["2024-07-25T14:00:35.010000"],["2024-07-25T14:00:36.010000"],["2024-07-25T14:00:37.010000"],["2024-07-25T14:00:38.010000"],["2024-07-25T14:00:39.010000"],["2024-07-25T14:00:40.010000"],["2024-07-25T14:00:41.010000"],["2024-07-25T14:00:42.010000"],["2024-07-25T14:00:43.010000"],["2024-07-25T14:00:44.010000"],["2024-07-25T14:00:45.010000"],["2024-07-25T14:00:46.010000"],["2024-07-25T14:00:47.010000"],["2024-07-25T14:00:48.010000"],["2024-07-25T14:00:49.010000"],["2024-07-25T14:00:50.010000"],["2024-07-25T14:00:51.010000"],["2024-07-25T14:00:52.010000"],["2024-07-25T14:00:53.010000"],["2024-07-25T14:00:54.010000"],["2024-07-25T14:00:55.010000"],["2024-07-25T14:00:56.010000"],["2024-07-25T14:00:57.010000"],["2024-07-25T14:00:58.010000"],["2024-07-25T14:00:59.010000"],["2024-07-25T14:01:00.010000"],["2024-07-25T14:01:01.010000"],["2024-07-25T14:01:02.010000"],["2024-07-25T14:01:03.010000"],["2024-07-25T14:01:04.010000"],["2024-07-25T14:01:05.010000"],["2024-07-25T14:01:06.010000"],["2024-07-25T14:01:07.010000"],["2024-07-25T14:01:08.010000"],["2024-07-25T14:01:09.010000"],["2024-07-25T14:01:10.010000"],["2024-07-25T14:01:11.010000"],["2024-07-25T14:01:12.010000"],["2024-07-25T14:01:13.010000"],["2024-07-25T14:01:14.010000"],["2024-07-25T14:01:15.010000"],["2024-07-25T14:01:16.010000"],["2024-07-25T14:01:17.010000"],["2024-07-25T14:01:18.010000"],["2024-07-25T14:01:19.010000"],["2024-07-25T14:01:20.010000"],["2024-07-25T14:01:21.010000"],["2024-07-25T14:01:22.010000"],["2024-07-25T14:01:23.010000"],["2024-07-25T14:01:24.010000"],["2024-07-25T14:01:25.010000"],["2024-07-25T14:01:26.010000"],["2024-07-25T14:01:27.010000"],["2024-07-25T14:01:28.010000"],["2024-07-25T14:01:29.010000"],["2024-07-25T14:01:30.010000"],["2024-07-25T14:01:31.010000"],["2024-07-25T14:01:32.010000"],["2024-07-25T14:01:33.010000"],["2024-07-25T14:01:34.010000"],["2024-07-25T14:01:35.010000"],["2024-07-25T14:01:36.010000"],["2024-07-25T14:01:37.010000"],["2024-07-25T14:01:38.010000"],["2024-07-25T14:01:39.010000"],["2024-07-25T14:01:40.010000"],["2024-07-25T14:01:41.010000"],["2024-07-25T14:01:42.010000"],["2024-07-25T14:01:43.010000"],["2024-07-25T14:01:44.010000"],["2024-07-25T14:01:45.010000"],["2024-07-25T14:01:46.010000"],["2024-07-25T14:01:47.010000"],["2024-07-25T14:01:48.010000"],["2024-07-25T14:01:49.010000"],["2024-07-25T14:01:50.010000"],["2024-07-25T14:01:51.010000"],["2024-07-25T14:01:52.010000"],["2024-07-25T14:01:53.010000"],["2024-07-25T14:01:54.010000"],["2024-07-25T14:01:55.010000"],["2024-07-25T14:01:56.010000"],["2024-07-25T14:01:57.010000"],["2024-07-25T14:01:58.010000"],["2024-07-25T14:01:59.010000"],["2024-07-25T14:02:00.010000"],["2024-07-25T14:02:01.010000"],["2024-07-25T14:02:02.010000"],["2024-07-25T14:02:03.010000"],["2024-07-25T14:02:04.010000"],["2024-07-25T14:02:05.010000"],["2024-07-25T14:02:06.010000"],["2024-07-25T14:02:07.010000"],["2024-07-25T14:02:08.010000"],["2024-07-25T14:02:09.010000"],["2024-07-25T14:02:10.010000"],["2024-07-25T14:02:11.010000"],["2024-07-25T14:02:12.010000"],["2024-07-25T14:02:13.010000"],["2024-07-25T14:02:14.010000"],["2024-07-25T14:02:15.010000"],["2024-07-25T14:02:16.010000"],["2024-07-25T14:02:17.010000"],["2024-07-25T14:02:18.010000"],["2024-07-25T14:02:19.010000"],["2024-07-25T14:02:20.010000"],["2024-07-25T14:02:21.010000"],["2024-07-25T14:02:22.010000"],["2024-07-25T14:02:23.010000"],["2024-07-25T14:02:24.010000"],["2024-07-25T14:02:25.010000"],["2024-07-25T14:02:26.010000"],["2024-07-25T14:02:27.010000"],["2024-07-25T14:02:28.010000"],["2024-07-25T14:02:29.010000"],["2024-07-25T14:02:30.010000"],["2024-07-25T14:02:31.010000"],["2024-07-25T14:02:32.010000"],["2024-07-25T14:02:33.010000"],["2024-07-25T14:02:34.010000"],["2024-07-25T14:02:35.010000"],["2024-07-25T14:02:36.010000"],["2024-07-25T14:02:37.010000"],["2024-07-25T14:02:38.010000"],["2024-07-25T14:02:39.010000"],["2024-07-25T14:02:40.010000"],["2024-07-25T14:02:41.010000"],["2024-07-25T14:02:42.010000"],["2024-07-25T14:02:43.010000"],["2024-07-25T14:02:44.010000"],["2024-07-25T14:02:45.010000"],["2024-07-25T14:02:46.010000"],["2024-07-25T14:02:47.010000"],["2024-07-25T14:02:48.010000"],["2024-07-25T14:02:49.010000"],["2024-07-25T14:02:50.010000"],["2024-07-25T14:02:51.010000"],["2024-07-25T14:02:52.010000"],["2024-07-25T14:02:53.010000"],["2024-07-25T14:02:54.010000"],["2024-07-25T14:02:55.010000"],["2024-07-25T14:02:56.010000"],["2024-07-25T14:02:57.010000"],["2024-07-25T14:02:58.010000"],["2024-07-25T14:02:59.010000"],["2024-07-25T14:03:00.010000"],["2024-07-25T14:03:01.010000"],["2024-07-25T14:03:02.010000"],["2024-07-25T14:03:03.010000"],["2024-07-25T14:03:04.010000"],["2024-07-25T14:03:05.010000"],["2024-07-25T14:03:06.010000"],["2024-07-25T14:03:07.010000"],["2024-07-25T14:03:08.010000"],["2024-07-25T14:03:09.010000"],["2024-07-25T14:03:10.010000"],["2024-07-25T14:03:11.010000"],["2024-07-25T14:03:12.010000"],["2024-07-25T14:03:13.010000"],["2024-07-25T14:03:14.010000"],["2024-07-25T14:03:15.010000"],["2024-07-25T14:03:16.010000"],["2024-07-25T14:03:17.010000"],["2024-07-25T14:03:18.010000"],["2024-07-25T14:03:19.010000"],["2024-07-25T14:03:20.010000"],["2024-07-25T14:03:21.010000"],["2024-07-25T14:03:22.010000"],["2024-07-25T14:03:23.010000"],["2024-07-25T14:03:24.010000"],["2024-07-25T14:03:25.010000"],["2024-07-25T14:03:26.010000"],["2024-07-25T14:03:27.010000"],["2024-07-25T14:03:28.010000"],["2024-07-25T14:03:29.010000"],["2024-07-25T14:03:30.010000"],["2024-07-25T14:03:31.010000"],["2024-07-25T14:03:32.010000"],["2024-07-25T14:03:33.010000"],["2024-07-25T14:03:34.010000"],["2024-07-25T14:03:35.010000"],["2024-07-25T14:03:36.010000"],["2024-07-25T14:03:37.010000"],["2024-07-25T14:03:38.010000"],["2024-07-25T14:03:39.010000"],["2024-07-25T14:03:40.010000"],["2024-07-25T14:03:41.010000"],["2024-07-25T14:03:42.010000"],["2024-07-25T14:03:43.010000"],["2024-07-25T14:03:44.010000"],["2024-07-25T14:03:45.010000"],["2024-07-25T14:03:46.010000"],["2024-07-25T14:03:47.010000"],["2024-07-25T14:03:48.010000"],["2024-07-25T14:03:49.010000"],["2024-07-25T14:03:50.010000"],["2024-07-25T14:03:51.010000"],["2024-07-25T14:03:52.010000"],["2024-07-25T14:03:53.010000"],["2024-07-25T14:03:54.010000"],["2024-07-25T14:03:55.010000"],["2024-07-25T14:03:56.010000"],["2024-07-25T14:03:57.010000"],["2024-07-25T14:03:58.010000"],["2024-07-25T14:03:59.010000"],["2024-07-25T14:04:00.010000"],["2024-07-25T14:04:01.010000"],["2024-07-25T14:04:02.010000"],["2024-07-25T14:04:03.010000"],["2024-07-25T14:04:04.010000"],["2024-07-25T14:04:05.010000"],["2024-07-25T14:04:06.010000"],["2024-07-25T14:04:07.010000"],["2024-07-25T14:04:08.010000"],["2024-07-25T14:04:09.010000"],["2024-07-25T14:04:10.010000"],["2024-07-25T14:04:11.010000"],["2024-07-25T14:04:12.010000"],["2024-07-25T14:04:13.010000"],["2024-07-25T14:04:14.010000"],["2024-07-25T14:04:15.010000"],["2024-07-25T14:04:16.010000"],["2024-07-25T14:04:17.010000"],["2024-07-25T14:04:18.010000"],["2024-07-25T14:04:19.010000"],["2024-07-25T14:04:20.010000"],["2024-07-25T14:04:21.010000"],["2024-07-25T14:04:22.010000"],["2024-07-25T14:04:23.010000"],["2024-07-25T14:04:24.010000"],["2024-07-25T14:04:25.010000"],["2024-07-25T14:04:26.010000"],["2024-07-25T14:04:27.010000"],["2024-07-25T14:04:28.010000"],["2024-07-25T14:04:29.010000"],["2024-07-25T14:04:30.010000"],["2024-07-25T14:04:31.010000"],["2024-07-25T14:04:32.010000"],["2024-07-25T14:04:33.010000"],["2024-07-25T14:04:34.010000"],["2024-07-25T14:04:35.010000"],["2024-07-25T14:04:36.010000"],["2024-07-25T14:04:37.010000"],["2024-07-25T14:04:38.010000"],["2024-07-25T14:04:39.010000"],["2024-07-25T14:04:40.010000"],["2024-07-25T14:04:41.010000"],["2024-07-25T14:04:42.010000"],["2024-07-25T14:04:43.010000"],["2024-07-25T14:04:44.010000"],["2024-07-25T14:04:45.010000"],["2024-07-25T14:04:46.010000"],["2024-07-25T14:04:47.010000"],["2024-07-25T14:04:48.010000"],["2024-07-25T14:04:49.010000"],["2024-07-25T14:04:50.010000"],["2024-07-25T14:04:51.010000"],["2024-07-25T14:04:52.010000"],["2024-07-25T14:04:53.010000"],["2024-07-25T14:04:54.010000"],["2024-07-25T14:04:55.010000"],["2024-07-25T14:04:56.010000"],["2024-07-25T14:04:57.010000"],["2024-07-25T14:04:58.010000"],["2024-07-25T14:04:59.010000"],["2024-07-25T14:05:00.010000"],["2024-07-25T14:05:01.010000"],["2024-07-25T14:05:02.010000"],["2024-07-25T14:05:03.010000"],["2024-07-25T14:05:04.010000"],["2024-07-25T14:05:05.010000"],["2024-07-25T14:05:06.010000"],["2024-07-25T14:05:07.010000"],["2024-07-25T14:05:08.010000"],["2024-07-25T14:05:09.010000"],["2024-07-25T14:05:10.010000"],["2024-07-25T14:05:11.010000"],["2024-07-25T14:05:12.010000"],["2024-07-25T14:05:13.010000"],["2024-07-25T14:05:14.010000"],["2024-07-25T14:05:15.010000"],["2024-07-25T14:05:16.010000"],["2024-07-25T14:05:17.010000"],["2024-07-25T14:05:18.010000"],["2024-07-25T14:05:19.010000"],["2024-07-25T14:05:20.010000"],["2024-07-25T14:05:21.010000"],["2024-07-25T14:05:22.010000"],["2024-07-25T14:05:23.010000"],["2024-07-25T14:05:24.010000"],["2024-07-25T14:05:25.010000"],["2024-07-25T14:05:26.010000"],["2024-07-25T14:05:27.010000"],["2024-07-25T14:05:28.010000"],["2024-07-25T14:05:29.010000"],["2024-07-25T14:05:30.010000"],["2024-07-25T14:05:31.010000"],["2024-07-25T14:05:32.010000"],["2024-07-25T14:05:33.010000"],["2024-07-25T14:05:34.010000"],["2024-07-25T14:05:35.010000"],["2024-07-25T14:05:36.010000"],["2024-07-25T14:05:37.010000"],["2024-07-25T14:05:38.010000"],["2024-07-25T14:05:39.010000"],["2024-07-25T14:05:40.010000"],["2024-07-25T14:05:41.010000"],["2024-07-25T14:05:42.010000"],["2024-07-25T14:05:43.010000"],["2024-07-25T14:05:44.010000"],["2024-07-25T14:05:45.010000"],["2024-07-25T14:05:46.010000"],["2024-07-25T14:05:47.010000"],["2024-07-25T14:05:48.010000"],["2024-07-25T14:05:49.010000"],["2024-07-25T14:05:50.010000"],["2024-07-25T14:05:51.010000"],["2024-07-25T14:05:52.010000"],["2024-07-25T14:05:53.010000"],["2024-07-25T14:05:54.010000"],["2024-07-25T14:05:55.010000"],["2024-07-25T14:05:56.010000"],["2024-07-25T14:05:57.010000"],["2024-07-25T14:05:58.010000"],["2024-07-25T14:05:59.010000"],["2024-07-25T14:06:00.010000"],["2024-07-25T14:06:01.010000"],["2024-07-25T14:06:02.010000"],["2024-07-25T14:06:03.010000"],["2024-07-25T14:06:04.010000"],["2024-07-25T14:06:05.010000"],["2024-07-25T14:06:06.010000"],["2024-07-25T14:06:07.010000"],["2024-07-25T14:06:08.010000"],["2024-07-25T14:06:09.010000"],["2024-07-25T14:06:10.010000"],["2024-07-25T14:06:11.010000"],["2024-07-25T14:06:12.010000"],["2024-07-25T14:06:13.010000"],["2024-07-25T14:06:14.010000"],["2024-07-25T14:06:15.010000"],["2024-07-25T14:06:16.010000"],["2024-07-25T14:06:17.010000"],["2024-07-25T14:06:18.010000"],["2024-07-25T14:06:19.010000"],["2024-07-25T14:06:20.010000"],["2024-07-25T14:06:21.010000"],["2024-07-25T14:06:22.010000"],["2024-07-25T14:06:23.010000"],["2024-07-25T14:06:24.010000"],["2024-07-25T14:06:25.010000"],["2024-07-25T14:06:26.010000"],["2024-07-25T14:06:27.010000"],["2024-07-25T14:06:28.010000"],["2024-07-25T14:06:29.010000"],["2024-07-25T14:06:30.010000"],["2024-07-25T14:06:31.010000"],["2024-07-25T14:06:32.010000"],["2024-07-25T14:06:33.010000"],["2024-07-25T14:06:34.010000"],["2024-07-25T14:06:35.010000"],["2024-07-25T14:06:36.010000"],["2024-07-25T14:06:37.010000"],["2024-07-25T14:06:38.010000"],["2024-07-25T14:06:39.010000"],["2024-07-25T14:06:40.010000"],["2024-07-25T14:06:41.010000"],["2024-07-25T14:06:42.010000"],["2024-07-25T14:06:43.010000"],["2024-07-25T14:06:44.010000"],["2024-07-25T14:06:45.010000"],["2024-07-25T14:06:46.010000"],["2024-07-25T14:06:47.010000"],["2024-07-25T14:06:48.010000"],["2024-07-25T14:06:49.010000"],["2024-07-25T14:06:50.010000"],["2024-07-25T14:06:51.010000"],["2024-07-25T14:06:52.010000"],["2024-07-25T14:06:53.010000"],["2024-07-25T14:06:54.010000"],["2024-07-25T14:06:55.010000"],["2024-07-25T14:06:56.010000"],["2024-07-25T14:06:57.010000"],["2024-07-25T14:06:58.010000"],["2024-07-25T14:06:59.010000"],["2024-07-25T14:07:00.010000"],["2024-07-25T14:07:01.010000"],["2024-07-25T14:07:02.010000"],["2024-07-25T14:07:03.010000"],["2024-07-25T14:07:04.010000"],["2024-07-25T14:07:05.010000"],["2024-07-25T14:07:06.010000"],["2024-07-25T14:07:07.010000"],["2024-07-25T14:07:08.010000"],["2024-07-25T14:07:09.010000"],["2024-07-25T14:07:10.010000"],["2024-07-25T14:07:11.010000"],["2024-07-25T14:07:12.010000"],["2024-07-25T14:07:13.010000"],["2024-07-25T14:07:14.010000"],["2024-07-25T14:07:15.010000"],["2024-07-25T14:07:16.010000"],["2024-07-25T14:07:17.010000"],["2024-07-25T14:07:18.010000"],["2024-07-25T14:07:19.010000"],["2024-07-25T14:07:20.010000"],["2024-07-25T14:07:21.010000"],["2024-07-25T14:07:22.010000"],["2024-07-25T14:07:23.010000"],["2024-07-25T14:07:24.010000"],["2024-07-25T14:07:25.010000"],["2024-07-25T14:07:26.010000"],["2024-07-25T14:07:27.010000"],["2024-07-25T14:07:28.010000"],["2024-07-25T14:07:29.010000"],["2024-07-25T14:07:30.010000"],["2024-07-25T14:07:31.010000"],["2024-07-25T14:07:32.010000"],["2024-07-25T14:07:33.010000"],["2024-07-25T14:07:34.010000"],["2024-07-25T14:07:35.010000"],["2024-07-25T14:07:36.010000"],["2024-07-25T14:07:37.010000"],["2024-07-25T14:07:38.010000"],["2024-07-25T14:07:39.010000"],["2024-07-25T14:07:40.010000"],["2024-07-25T14:07:41.010000"],["2024-07-25T14:07:42.010000"],["2024-07-25T14:07:43.010000"],["2024-07-25T14:07:44.010000"],["2024-07-25T14:07:45.010000"],["2024-07-25T14:07:46.010000"],["2024-07-25T14:07:47.010000"],["2024-07-25T14:07:48.010000"],["2024-07-25T14:07:49.010000"],["2024-07-25T14:07:50.010000"],["2024-07-25T14:07:51.010000"],["2024-07-25T14:07:52.010000"],["2024-07-25T14:07:53.010000"],["2024-07-25T14:07:54.010000"],["2024-07-25T14:07:55.010000"],["2024-07-25T14:07:56.010000"],["2024-07-25T14:07:57.010000"],["2024-07-25T14:07:58.010000"],["2024-07-25T14:07:59.010000"],["2024-07-25T14:08:00.010000"],["2024-07-25T14:08:01.010000"],["2024-07-25T14:08:02.010000"],["2024-07-25T14:08:03.010000"],["2024-07-25T14:08:04.010000"],["2024-07-25T14:08:05.010000"],["2024-07-25T14:08:06.010000"],["2024-07-25T14:08:07.010000"],["2024-07-25T14:08:08.010000"],["2024-07-25T14:08:09.010000"],["2024-07-25T14:08:10.010000"],["2024-07-25T14:08:11.010000"],["2024-07-25T14:08:12.010000"],["2024-07-25T14:08:13.010000"],["2024-07-25T14:08:14.010000"],["2024-07-25T14:08:15.010000"],["2024-07-25T14:08:16.010000"],["2024-07-25T14:08:17.010000"],["2024-07-25T14:08:18.010000"],["2024-07-25T14:08:19.010000"],["2024-07-25T14:08:20.010000"],["2024-07-25T14:08:21.010000"],["2024-07-25T14:08:22.010000"],["2024-07-25T14:08:23.010000"],["2024-07-25T14:08:24.010000"],["2024-07-25T14:08:25.010000"],["2024-07-25T14:08:26.010000"],["2024-07-25T14:08:27.010000"],["2024-07-25T14:08:28.010000"],["2024-07-25T14:08:29.010000"],["2024-07-25T14:08:30.010000"],["2024-07-25T14:08:31.010000"],["2024-07-25T14:08:32.010000"],["2024-07-25T14:08:33.010000"],["2024-07-25T14:08:34.010000"],["2024-07-25T14:08:35.010000"],["2024-07-25T14:08:36.010000"],["2024-07-25T14:08:37.010000"],["2024-07-25T14:08:38.010000"],["2024-07-25T14:08:39.010000"],["2024-07-25T14:08:40.010000"],["2024-07-25T14:08:41.010000"],["2024-07-25T14:08:42.010000"],["2024-07-25T14:08:43.010000"],["2024-07-25T14:08:44.010000"],["2024-07-25T14:08:45.010000"],["2024-07-25T14:08:46.010000"],["2024-07-25T14:08:47.010000"],["2024-07-25T14:08:48.010000"],["2024-07-25T14:08:49.010000"],["2024-07-25T14:08:50.010000"],["2024-07-25T14:08:51.010000"],["2024-07-25T14:08:52.010000"],["2024-07-25T14:08:53.010000"],["2024-07-25T14:08:54.010000"],["2024-07-25T14:08:55.010000"],["2024-07-25T14:08:56.010000"],["2024-07-25T14:08:57.010000"],["2024-07-25T14:08:58.010000"],["2024-07-25T14:08:59.010000"],["2024-07-25T14:09:00.010000"],["2024-07-25T14:09:01.010000"],["2024-07-25T14:09:02.010000"],["2024-07-25T14:09:03.010000"],["2024-07-25T14:09:04.010000"],["2024-07-25T14:09:05.010000"],["2024-07-25T14:09:06.010000"],["2024-07-25T14:09:07.010000"],["2024-07-25T14:09:08.010000"],["2024-07-25T14:09:09.010000"],["2024-07-25T14:09:10.010000"],["2024-07-25T14:09:11.010000"],["2024-07-25T14:09:12.010000"],["2024-07-25T14:09:13.010000"],["2024-07-25T14:09:14.010000"],["2024-07-25T14:09:15.010000"],["2024-07-25T14:09:16.010000"],["2024-07-25T14:09:17.010000"],["2024-07-25T14:09:18.010000"],["2024-07-25T14:09:19.010000"],["2024-07-25T14:09:20.010000"],["2024-07-25T14:09:21.010000"],["2024-07-25T14:09:22.010000"],["2024-07-25T14:09:23.010000"],["2024-07-25T14:09:24.010000"],["2024-07-25T14:09:25.010000"],["2024-07-25T14:09:26.010000"],["2024-07-25T14:09:27.010000"],["2024-07-25T14:09:28.010000"],["2024-07-25T14:09:29.010000"],["2024-07-25T14:09:30.010000"],["2024-07-25T14:09:31.010000"],["2024-07-25T14:09:32.010000"],["2024-07-25T14:09:33.010000"],["2024-07-25T14:09:34.010000"],["2024-07-25T14:09:35.010000"],["2024-07-25T14:09:36.010000"],["2024-07-25T14:09:37.010000"],["2024-07-25T14:09:38.010000"],["2024-07-25T14:09:39.010000"],["2024-07-25T14:09:40.010000"],["2024-07-25T14:09:41.010000"],["2024-07-25T14:09:42.010000"],["2024-07-25T14:09:43.010000"],["2024-07-25T14:09:44.010000"],["2024-07-25T14:09:45.010000"],["2024-07-25T14:09:46.010000"],["2024-07-25T14:09:47.010000"],["2024-07-25T14:09:48.010000"],["2024-07-25T14:09:49.010000"],["2024-07-25T14:09:50.010000"],["2024-07-25T14:09:51.010000"],["2024-07-25T14:09:52.010000"],["2024-07-25T14:09:53.010000"],["2024-07-25T14:09:54.010000"],["2024-07-25T14:09:55.010000"],["2024-07-25T14:09:56.010000"],["2024-07-25T14:09:57.010000"],["2024-07-25T14:09:58.010000"],["2024-07-25T14:09:59.010000"],["2024-07-25T14:10:00.010000"],["2024-07-25T14:10:01.010000"],["2024-07-25T14:10:02.010000"],["2024-07-25T14:10:03.010000"],["2024-07-25T14:10:04.010000"],["2024-07-25T14:10:05.010000"],["2024-07-25T14:10:06.010000"],["2024-07-25T14:10:07.010000"],["2024-07-25T14:10:08.010000"],["2024-07-25T14:10:09.010000"],["2024-07-25T14:10:10.010000"],["2024-07-25T14:10:11.010000"],["2024-07-25T14:10:12.010000"],["2024-07-25T14:10:13.010000"],["2024-07-25T14:10:14.010000"],["2024-07-25T14:10:15.010000"],["2024-07-25T14:10:16.010000"],["2024-07-25T14:10:17.010000"],["2024-07-25T14:10:18.010000"],["2024-07-25T14:10:19.010000"],["2024-07-25T14:10:20.010000"],["2024-07-25T14:10:21.010000"],["2024-07-25T14:10:22.010000"],["2024-07-25T14:10:23.010000"],["2024-07-25T14:10:24.010000"],["2024-07-25T14:10:25.010000"],["2024-07-25T14:10:26.010000"],["2024-07-25T14:10:27.010000"],["2024-07-25T14:10:28.010000"],["2024-07-25T14:10:29.010000"],["2024-07-25T14:10:30.010000"],["2024-07-25T14:10:31.010000"],["2024-07-25T14:10:32.010000"],["2024-07-25T14:10:33.010000"],["2024-07-25T14:10:34.010000"],["2024-07-25T14:10:35.010000"],["2024-07-25T14:10:36.010000"],["2024-07-25T14:10:37.010000"],["2024-07-25T14:10:38.010000"],["2024-07-25T14:10:39.010000"],["2024-07-25T14:10:40.010000"],["2024-07-25T14:10:41.010000"],["2024-07-25T14:10:42.010000"],["2024-07-25T14:10:43.010000"],["2024-07-25T14:10:44.010000"],["2024-07-25T14:10:45.010000"],["2024-07-25T14:10:46.010000"],["2024-07-25T14:10:47.010000"],["2024-07-25T14:10:48.010000"],["2024-07-25T14:10:49.010000"],["2024-07-25T14:10:50.010000"],["2024-07-25T14:10:51.010000"],["2024-07-25T14:10:52.010000"],["2024-07-25T14:10:53.010000"],["2024-07-25T14:10:54.010000"],["2024-07-25T14:10:55.010000"],["2024-07-25T14:10:56.010000"],["2024-07-25T14:10:57.010000"],["2024-07-25T14:10:58.010000"],["2024-07-25T14:10:59.010000"],["2024-07-25T14:11:00.010000"],["2024-07-25T14:11:01.010000"],["2024-07-25T14:11:02.010000"],["2024-07-25T14:11:03.010000"],["2024-07-25T14:11:04.010000"],["2024-07-25T14:11:05.010000"],["2024-07-25T14:11:06.010000"],["2024-07-25T14:11:07.010000"],["2024-07-25T14:11:08.010000"],["2024-07-25T14:11:09.010000"],["2024-07-25T14:11:10.010000"],["2024-07-25T14:11:11.010000"],["2024-07-25T14:11:12.010000"],["2024-07-25T14:11:13.010000"],["2024-07-25T14:11:14.010000"],["2024-07-25T14:11:15.010000"],["2024-07-25T14:11:16.010000"],["2024-07-25T14:11:17.010000"],["2024-07-25T14:11:18.010000"],["2024-07-25T14:11:19.010000"],["2024-07-25T14:11:20.010000"],["2024-07-25T14:11:21.010000"],["2024-07-25T14:11:22.010000"],["2024-07-25T14:11:23.010000"],["2024-07-25T14:11:24.010000"],["2024-07-25T14:11:25.010000"],["2024-07-25T14:11:26.010000"],["2024-07-25T14:11:27.010000"],["2024-07-25T14:11:28.010000"],["2024-07-25T14:11:29.010000"],["2024-07-25T14:11:30.010000"],["2024-07-25T14:11:31.010000"],["2024-07-25T14:11:32.010000"],["2024-07-25T14:11:33.010000"],["2024-07-25T14:11:34.010000"],["2024-07-25T14:11:35.010000"],["2024-07-25T14:11:36.010000"],["2024-07-25T14:11:37.010000"],["2024-07-25T14:11:38.010000"],["2024-07-25T14:11:39.010000"],["2024-07-25T14:11:40.010000"],["2024-07-25T14:11:41.010000"],["2024-07-25T14:11:42.010000"],["2024-07-25T14:11:43.010000"],["2024-07-25T14:11:44.010000"],["2024-07-25T14:11:45.010000"],["2024-07-25T14:11:46.010000"],["2024-07-25T14:11:47.010000"],["2024-07-25T14:11:48.010000"],["2024-07-25T14:11:49.010000"],["2024-07-25T14:11:50.010000"],["2024-07-25T14:11:51.010000"],["2024-07-25T14:11:52.010000"],["2024-07-25T14:11:53.010000"],["2024-07-25T14:11:54.010000"],["2024-07-25T14:11:55.010000"],["2024-07-25T14:11:56.010000"],["2024-07-25T14:11:57.010000"],["2024-07-25T14:11:58.010000"],["2024-07-25T14:11:59.010000"],["2024-07-25T14:12:00.010000"],["2024-07-25T14:12:01.010000"],["2024-07-25T14:12:02.010000"],["2024-07-25T14:12:03.010000"],["2024-07-25T14:12:04.010000"],["2024-07-25T14:12:05.010000"],["2024-07-25T14:12:06.010000"],["2024-07-25T14:12:07.010000"],["2024-07-25T14:12:08.010000"],["2024-07-25T14:12:09.010000"],["2024-07-25T14:12:10.010000"],["2024-07-25T14:12:11.010000"],["2024-07-25T14:12:12.010000"],["2024-07-25T14:12:13.010000"],["2024-07-25T14:12:14.010000"],["2024-07-25T14:12:15.010000"],["2024-07-25T14:12:16.010000"],["2024-07-25T14:12:17.010000"],["2024-07-25T14:12:18.010000"],["2024-07-25T14:12:19.010000"],["2024-07-25T14:12:20.010000"],["2024-07-25T14:12:21.010000"],["2024-07-25T14:12:22.010000"],["2024-07-25T14:12:23.010000"],["2024-07-25T14:12:24.010000"],["2024-07-25T14:12:25.010000"],["2024-07-25T14:12:26.010000"],["2024-07-25T14:12:27.010000"],["2024-07-25T14:12:28.010000"],["2024-07-25T14:12:29.010000"],["2024-07-25T14:12:30.010000"],["2024-07-25T14:12:31.010000"],["2024-07-25T14:12:32.010000"],["2024-07-25T14:12:33.010000"],["2024-07-25T14:12:34.010000"],["2024-07-25T14:12:35.010000"],["2024-07-25T14:12:36.010000"],["2024-07-25T14:12:37.010000"],["2024-07-25T14:12:38.010000"],["2024-07-25T14:12:39.010000"],["2024-07-25T14:12:40.010000"],["2024-07-25T14:12:41.010000"],["2024-07-25T14:12:42.010000"],["2024-07-25T14:12:43.010000"],["2024-07-25T14:12:44.010000"],["2024-07-25T14:12:45.010000"],["2024-07-25T14:12:46.010000"],["2024-07-25T14:12:47.010000"],["2024-07-25T14:12:48.010000"],["2024-07-25T14:12:49.010000"],["2024-07-25T14:12:50.010000"],["2024-07-25T14:12:51.010000"],["2024-07-25T14:12:52.010000"],["2024-07-25T14:12:53.010000"],["2024-07-25T14:12:54.010000"],["2024-07-25T14:12:55.010000"],["2024-07-25T14:12:56.010000"],["2024-07-25T14:12:57.010000"],["2024-07-25T14:12:58.010000"],["2024-07-25T14:12:59.010000"],["2024-07-25T14:13:00.010000"],["2024-07-25T14:13:01.010000"],["2024-07-25T14:13:02.010000"],["2024-07-25T14:13:03.010000"],["2024-07-25T14:13:04.010000"],["2024-07-25T14:13:05.010000"],["2024-07-25T14:13:06.010000"],["2024-07-25T14:13:07.010000"],["2024-07-25T14:13:08.010000"],["2024-07-25T14:13:09.010000"],["2024-07-25T14:13:10.010000"],["2024-07-25T14:13:11.010000"],["2024-07-25T14:13:12.010000"],["2024-07-25T14:13:13.010000"],["2024-07-25T14:13:14.010000"],["2024-07-25T14:13:15.010000"],["2024-07-25T14:13:16.010000"],["2024-07-25T14:13:17.010000"],["2024-07-25T14:13:18.010000"],["2024-07-25T14:13:19.010000"],["2024-07-25T14:13:20.010000"],["2024-07-25T14:13:21.010000"],["2024-07-25T14:13:22.010000"],["2024-07-25T14:13:23.010000"],["2024-07-25T14:13:24.010000"],["2024-07-25T14:13:25.010000"],["2024-07-25T14:13:26.010000"],["2024-07-25T14:13:27.010000"],["2024-07-25T14:13:28.010000"],["2024-07-25T14:13:29.010000"],["2024-07-25T14:13:30.010000"],["2024-07-25T14:13:31.010000"],["2024-07-25T14:13:32.010000"],["2024-07-25T14:13:33.010000"],["2024-07-25T14:13:34.010000"],["2024-07-25T14:13:35.010000"],["2024-07-25T14:13:36.010000"],["2024-07-25T14:13:37.010000"],["2024-07-25T14:13:38.010000"],["2024-07-25T14:13:39.010000"],["2024-07-25T14:13:40.010000"],["2024-07-25T14:13:41.010000"],["2024-07-25T14:13:42.010000"],["2024-07-25T14:13:43.010000"],["2024-07-25T14:13:44.010000"],["2024-07-25T14:13:45.010000"],["2024-07-25T14:13:46.010000"],["2024-07-25T14:13:47.010000"],["2024-07-25T14:13:48.010000"],["2024-07-25T14:13:49.010000"],["2024-07-25T14:13:50.010000"],["2024-07-25T14:13:51.010000"],["2024-07-25T14:13:52.010000"],["2024-07-25T14:13:53.010000"],["2024-07-25T14:13:54.010000"],["2024-07-25T14:13:55.010000"],["2024-07-25T14:13:56.010000"],["2024-07-25T14:13:57.010000"],["2024-07-25T14:13:58.010000"],["2024-07-25T14:13:59.010000"],["2024-07-25T14:14:00.010000"],["2024-07-25T14:14:01.010000"],["2024-07-25T14:14:02.010000"],["2024-07-25T14:14:03.010000"],["2024-07-25T14:14:04.010000"],["2024-07-25T14:14:05.010000"],["2024-07-25T14:14:06.010000"],["2024-07-25T14:14:07.010000"],["2024-07-25T14:14:08.010000"],["2024-07-25T14:14:09.010000"],["2024-07-25T14:14:10.010000"],["2024-07-25T14:14:11.010000"],["2024-07-25T14:14:12.010000"],["2024-07-25T14:14:13.010000"],["2024-07-25T14:14:14.010000"],["2024-07-25T14:14:15.010000"],["2024-07-25T14:14:16.010000"],["2024-07-25T14:14:17.010000"],["2024-07-25T14:14:18.010000"],["2024-07-25T14:14:19.010000"],["2024-07-25T14:14:20.010000"],["2024-07-25T14:14:21.010000"],["2024-07-25T14:14:22.010000"],["2024-07-25T14:14:23.010000"],["2024-07-25T14:14:24.010000"],["2024-07-25T14:14:25.010000"],["2024-07-25T14:14:26.010000"],["2024-07-25T14:14:27.010000"],["2024-07-25T14:14:28.010000"],["2024-07-25T14:14:29.010000"],["2024-07-25T14:14:30.010000"],["2024-07-25T14:14:31.010000"],["2024-07-25T14:14:32.010000"],["2024-07-25T14:14:33.010000"],["2024-07-25T14:14:34.010000"],["2024-07-25T14:14:35.010000"],["2024-07-25T14:14:36.010000"],["2024-07-25T14:14:37.010000"],["2024-07-25T14:14:38.010000"],["2024-07-25T14:14:39.010000"],["2024-07-25T14:14:40.010000"],["2024-07-25T14:14:41.010000"],["2024-07-25T14:14:42.010000"],["2024-07-25T14:14:43.010000"],["2024-07-25T14:14:44.010000"],["2024-07-25T14:14:45.010000"],["2024-07-25T14:14:46.010000"],["2024-07-25T14:14:47.010000"],["2024-07-25T14:14:48.010000"],["2024-07-25T14:14:49.010000"],["2024-07-25T14:14:50.010000"],["2024-07-25T14:14:51.010000"],["2024-07-25T14:14:52.010000"],["2024-07-25T14:14:53.010000"],["2024-07-25T14:14:54.010000"],["2024-07-25T14:14:55.010000"],["2024-07-25T14:14:56.010000"],["2024-07-25T14:14:57.010000"],["2024-07-25T14:14:58.010000"],["2024-07-25T14:14:59.010000"],["2024-07-25T14:15:00.010000"],["2024-07-25T14:15:01.010000"],["2024-07-25T14:15:02.010000"],["2024-07-25T14:15:03.010000"],["2024-07-25T14:15:04.010000"],["2024-07-25T14:15:05.010000"],["2024-07-25T14:15:06.010000"],["2024-07-25T14:15:07.010000"],["2024-07-25T14:15:08.010000"],["2024-07-25T14:15:09.010000"],["2024-07-25T14:15:10.010000"],["2024-07-25T14:15:11.010000"],["2024-07-25T14:15:12.010000"],["2024-07-25T14:15:13.010000"],["2024-07-25T14:15:14.010000"],["2024-07-25T14:15:15.010000"],["2024-07-25T14:15:16.010000"],["2024-07-25T14:15:17.010000"],["2024-07-25T14:15:18.010000"],["2024-07-25T14:15:19.010000"],["2024-07-25T14:15:20.010000"],["2024-07-25T14:15:21.010000"],["2024-07-25T14:15:22.010000"],["2024-07-25T14:15:23.010000"],["2024-07-25T14:15:24.010000"],["2024-07-25T14:15:25.010000"],["2024-07-25T14:15:26.010000"],["2024-07-25T14:15:27.010000"],["2024-07-25T14:15:28.010000"],["2024-07-25T14:15:29.010000"],["2024-07-25T14:15:30.010000"],["2024-07-25T14:15:31.010000"],["2024-07-25T14:15:32.010000"],["2024-07-25T14:15:33.010000"],["2024-07-25T14:15:34.010000"],["2024-07-25T14:15:35.010000"],["2024-07-25T14:15:36.010000"],["2024-07-25T14:15:37.010000"],["2024-07-25T14:15:38.010000"],["2024-07-25T14:15:39.010000"],["2024-07-25T14:15:40.010000"],["2024-07-25T14:15:41.010000"],["2024-07-25T14:15:42.010000"],["2024-07-25T14:15:43.010000"],["2024-07-25T14:15:44.010000"],["2024-07-25T14:15:45.010000"],["2024-07-25T14:15:46.010000"],["2024-07-25T14:15:47.010000"],["2024-07-25T14:15:48.010000"],["2024-07-25T14:15:49.010000"],["2024-07-25T14:15:50.010000"],["2024-07-25T14:15:51.010000"],["2024-07-25T14:15:52.010000"],["2024-07-25T14:15:53.010000"],["2024-07-25T14:15:54.010000"],["2024-07-25T14:15:55.010000"],["2024-07-25T14:15:56.010000"],["2024-07-25T14:15:57.010000"],["2024-07-25T14:15:58.010000"],["2024-07-25T14:15:59.010000"],["2024-07-25T14:16:00.010000"],["2024-07-25T14:16:01.010000"],["2024-07-25T14:16:02.010000"],["2024-07-25T14:16:03.010000"],["2024-07-25T14:16:04.010000"],["2024-07-25T14:16:05.010000"],["2024-07-25T14:16:06.010000"],["2024-07-25T14:16:07.010000"],["2024-07-25T14:16:08.010000"],["2024-07-25T14:16:09.010000"],["2024-07-25T14:16:10.010000"],["2024-07-25T14:16:11.010000"],["2024-07-25T14:16:12.010000"],["2024-07-25T14:16:13.010000"],["2024-07-25T14:16:14.010000"],["2024-07-25T14:16:15.010000"],["2024-07-25T14:16:16.010000"],["2024-07-25T14:16:17.010000"],["2024-07-25T14:16:18.010000"],["2024-07-25T14:16:19.010000"],["2024-07-25T14:16:20.010000"],["2024-07-25T14:16:21.010000"],["2024-07-25T14:16:22.010000"],["2024-07-25T14:16:23.010000"],["2024-07-25T14:16:24.010000"],["2024-07-25T14:16:25.010000"],["2024-07-25T14:16:26.010000"],["2024-07-25T14:16:27.010000"],["2024-07-25T14:16:28.010000"],["2024-07-25T14:16:29.010000"],["2024-07-25T14:16:30.010000"],["2024-07-25T14:16:31.010000"],["2024-07-25T14:16:32.010000"],["2024-07-25T14:16:33.010000"],["2024-07-25T14:16:34.010000"],["2024-07-25T14:16:35.010000"],["2024-07-25T14:16:36.010000"],["2024-07-25T14:16:37.010000"],["2024-07-25T14:16:38.010000"],["2024-07-25T14:16:39.010000"],["2024-07-25T14:16:40.010000"],["2024-07-25T14:16:41.010000"],["2024-07-25T14:16:42.010000"],["2024-07-25T14:16:43.010000"],["2024-07-25T14:16:44.010000"],["2024-07-25T14:16:45.010000"],["2024-07-25T14:16:46.010000"],["2024-07-25T14:16:47.010000"],["2024-07-25T14:16:48.010000"],["2024-07-25T14:16:49.010000"],["2024-07-25T14:16:50.010000"],["2024-07-25T14:16:51.010000"],["2024-07-25T14:16:52.010000"],["2024-07-25T14:16:53.010000"],["2024-07-25T14:16:54.010000"],["2024-07-25T14:16:55.010000"],["2024-07-25T14:16:56.010000"],["2024-07-25T14:16:57.010000"],["2024-07-25T14:16:58.010000"],["2024-07-25T14:16:59.010000"],["2024-07-25T14:17:00.010000"],["2024-07-25T14:17:01.010000"],["2024-07-25T14:17:02.010000"],["2024-07-25T14:17:03.010000"],["2024-07-25T14:17:04.010000"],["2024-07-25T14:17:05.010000"],["2024-07-25T14:17:06.010000"],["2024-07-25T14:17:07.010000"],["2024-07-25T14:17:08.010000"],["2024-07-25T14:17:09.010000"],["2024-07-25T14:17:10.010000"],["2024-07-25T14:17:11.010000"],["2024-07-25T14:17:12.010000"],["2024-07-25T14:17:13.010000"],["2024-07-25T14:17:14.010000"],["2024-07-25T14:17:15.010000"],["2024-07-25T14:17:16.010000"],["2024-07-25T14:17:17.010000"],["2024-07-25T14:17:18.010000"],["2024-07-25T14:17:19.010000"],["2024-07-25T14:17:20.010000"],["2024-07-25T14:17:21.010000"],["2024-07-25T14:17:22.010000"],["2024-07-25T14:17:23.010000"],["2024-07-25T14:17:24.010000"],["2024-07-25T14:17:25.010000"],["2024-07-25T14:17:26.010000"],["2024-07-25T14:17:27.010000"],["2024-07-25T14:17:28.010000"],["2024-07-25T14:17:29.010000"],["2024-07-25T14:17:30.010000"],["2024-07-25T14:17:31.010000"],["2024-07-25T14:17:32.010000"],["2024-07-25T14:17:33.010000"],["2024-07-25T14:17:34.010000"],["2024-07-25T14:17:35.010000"],["2024-07-25T14:17:36.010000"],["2024-07-25T14:17:37.010000"],["2024-07-25T14:17:38.010000"],["2024-07-25T14:17:39.010000"],["2024-07-25T14:17:40.010000"],["2024-07-25T14:17:41.010000"],["2024-07-25T14:17:42.010000"],["2024-07-25T14:17:43.010000"],["2024-07-25T14:17:44.010000"],["2024-07-25T14:17:45.010000"],["2024-07-25T14:17:46.010000"],["2024-07-25T14:17:47.010000"],["2024-07-25T14:17:48.010000"],["2024-07-25T14:17:49.010000"],["2024-07-25T14:17:50.010000"],["2024-07-25T14:17:51.010000"],["2024-07-25T14:17:52.010000"],["2024-07-25T14:17:53.010000"],["2024-07-25T14:17:54.010000"],["2024-07-25T14:17:55.010000"],["2024-07-25T14:17:56.010000"],["2024-07-25T14:17:57.010000"],["2024-07-25T14:17:58.010000"],["2024-07-25T14:17:59.010000"],["2024-07-25T14:18:00.010000"],["2024-07-25T14:18:01.010000"],["2024-07-25T14:18:02.010000"],["2024-07-25T14:18:03.010000"],["2024-07-25T14:18:04.010000"],["2024-07-25T14:18:05.010000"],["2024-07-25T14:18:06.010000"],["2024-07-25T14:18:07.010000"],["2024-07-25T14:18:08.010000"],["2024-07-25T14:18:09.010000"],["2024-07-25T14:18:10.010000"],["2024-07-25T14:18:11.010000"],["2024-07-25T14:18:12.010000"],["2024-07-25T14:18:13.010000"],["2024-07-25T14:18:14.010000"],["2024-07-25T14:18:15.010000"],["2024-07-25T14:18:16.010000"],["2024-07-25T14:18:17.010000"],["2024-07-25T14:18:18.010000"],["2024-07-25T14:18:19.010000"],["2024-07-25T14:18:20.010000"],["2024-07-25T14:18:21.010000"],["2024-07-25T14:18:22.010000"],["2024-07-25T14:18:23.010000"],["2024-07-25T14:18:24.010000"],["2024-07-25T14:18:25.010000"],["2024-07-25T14:18:26.010000"],["2024-07-25T14:18:27.010000"],["2024-07-25T14:18:28.010000"],["2024-07-25T14:18:29.010000"],["2024-07-25T14:18:30.010000"],["2024-07-25T14:18:31.010000"],["2024-07-25T14:18:32.010000"],["2024-07-25T14:18:33.010000"],["2024-07-25T14:18:34.010000"],["2024-07-25T14:18:35.010000"],["2024-07-25T14:18:36.010000"],["2024-07-25T14:18:37.010000"],["2024-07-25T14:18:38.010000"],["2024-07-25T14:18:39.010000"],["2024-07-25T14:18:40.010000"],["2024-07-25T14:18:41.010000"],["2024-07-25T14:18:42.010000"],["2024-07-25T14:18:43.010000"],["2024-07-25T14:18:44.010000"],["2024-07-25T14:18:45.010000"],["2024-07-25T14:18:46.010000"],["2024-07-25T14:18:47.010000"],["2024-07-25T14:18:48.010000"],["2024-07-25T14:18:49.010000"],["2024-07-25T14:18:50.010000"],["2024-07-25T14:18:51.010000"],["2024-07-25T14:18:52.010000"],["2024-07-25T14:18:53.010000"],["2024-07-25T14:18:54.010000"],["2024-07-25T14:18:55.010000"],["2024-07-25T14:18:56.010000"],["2024-07-25T14:18:57.010000"],["2024-07-25T14:18:58.010000"],["2024-07-25T14:18:59.010000"],["2024-07-25T14:19:00.010000"],["2024-07-25T14:19:01.010000"],["2024-07-25T14:19:02.010000"],["2024-07-25T14:19:03.010000"],["2024-07-25T14:19:04.010000"],["2024-07-25T14:19:05.010000"],["2024-07-25T14:19:06.010000"],["2024-07-25T14:19:07.010000"],["2024-07-25T14:19:08.010000"],["2024-07-25T14:19:09.010000"],["2024-07-25T14:19:10.010000"],["2024-07-25T14:19:11.010000"],["2024-07-25T14:19:12.010000"],["2024-07-25T14:19:13.010000"],["2024-07-25T14:19:14.010000"],["2024-07-25T14:19:15.010000"],["2024-07-25T14:19:16.010000"],["2024-07-25T14:19:17.010000"],["2024-07-25T14:19:18.010000"],["2024-07-25T14:19:19.010000"],["2024-07-25T14:19:20.010000"],["2024-07-25T14:19:21.010000"],["2024-07-25T14:19:22.010000"],["2024-07-25T14:19:23.010000"],["2024-07-25T14:19:24.010000"],["2024-07-25T14:19:25.010000"],["2024-07-25T14:19:26.010000"],["2024-07-25T14:19:27.010000"],["2024-07-25T14:19:28.010000"],["2024-07-25T14:19:29.010000"],["2024-07-25T14:19:30.010000"],["2024-07-25T14:19:31.010000"],["2024-07-25T14:19:32.010000"],["2024-07-25T14:19:33.010000"],["2024-07-25T14:19:34.010000"],["2024-07-25T14:19:35.010000"],["2024-07-25T14:19:36.010000"],["2024-07-25T14:19:37.010000"],["2024-07-25T14:19:38.010000"],["2024-07-25T14:19:39.010000"],["2024-07-25T14:19:40.010000"],["2024-07-25T14:19:41.010000"],["2024-07-25T14:19:42.010000"],["2024-07-25T14:19:43.010000"],["2024-07-25T14:19:44.010000"],["2024-07-25T14:19:45.010000"],["2024-07-25T14:19:46.010000"],["2024-07-25T14:19:47.010000"],["2024-07-25T14:19:48.010000"],["2024-07-25T14:19:49.010000"],["2024-07-25T14:19:50.010000"],["2024-07-25T14:19:51.010000"],["2024-07-25T14:19:52.010000"],["2024-07-25T14:19:53.010000"],["2024-07-25T14:19:54.010000"],["2024-07-25T14:19:55.010000"],["2024-07-25T14:19:56.010000"],["2024-07-25T14:19:57.010000"],["2024-07-25T14:19:58.010000"],["2024-07-25T14:19:59.010000"],["2024-07-25T14:20:00.010000"],["2024-07-25T14:20:01.010000"],["2024-07-25T14:20:02.010000"],["2024-07-25T14:20:03.010000"],["2024-07-25T14:20:04.010000"],["2024-07-25T14:20:05.010000"],["2024-07-25T14:20:06.010000"],["2024-07-25T14:20:07.010000"],["2024-07-25T14:20:08.010000"],["2024-07-25T14:20:09.010000"],["2024-07-25T14:20:10.010000"],["2024-07-25T14:20:11.010000"],["2024-07-25T14:20:12.010000"],["2024-07-25T14:20:13.010000"],["2024-07-25T14:20:14.010000"],["2024-07-25T14:20:15.010000"],["2024-07-25T14:20:16.010000"],["2024-07-25T14:20:17.010000"],["2024-07-25T14:20:18.010000"],["2024-07-25T14:20:19.010000"],["2024-07-25T14:20:20.010000"],["2024-07-25T14:20:21.010000"],["2024-07-25T14:20:22.010000"],["2024-07-25T14:20:23.010000"],["2024-07-25T14:20:24.010000"],["2024-07-25T14:20:25.010000"],["2024-07-25T14:20:26.010000"],["2024-07-25T14:20:27.010000"],["2024-07-25T14:20:28.010000"],["2024-07-25T14:20:29.010000"],["2024-07-25T14:20:30.010000"],["2024-07-25T14:20:31.010000"],["2024-07-25T14:20:32.010000"],["2024-07-25T14:20:33.010000"],["2024-07-25T14:20:34.010000"],["2024-07-25T14:20:35.010000"],["2024-07-25T14:20:36.010000"],["2024-07-25T14:20:37.010000"],["2024-07-25T14:20:38.010000"],["2024-07-25T14:20:39.010000"],["2024-07-25T14:20:40.010000"],["2024-07-25T14:20:41.010000"],["2024-07-25T14:20:42.010000"],["2024-07-25T14:20:43.010000"],["2024-07-25T14:20:44.010000"],["2024-07-25T14:20:45.010000"],["2024-07-25T14:20:46.010000"],["2024-07-25T14:20:47.010000"],["2024-07-25T14:20:48.010000"],["2024-07-25T14:20:49.010000"],["2024-07-25T14:20:50.010000"],["2024-07-25T14:20:51.010000"],["2024-07-25T14:20:52.010000"],["2024-07-25T14:20:53.010000"],["2024-07-25T14:20:54.010000"],["2024-07-25T14:20:55.010000"],["2024-07-25T14:20:56.010000"],["2024-07-25T14:20:57.010000"],["2024-07-25T14:20:58.010000"],["2024-07-25T14:20:59.010000"],["2024-07-25T14:21:00.010000"],["2024-07-25T14:21:01.010000"],["2024-07-25T14:21:02.010000"],["2024-07-25T14:21:03.010000"],["2024-07-25T14:21:04.010000"],["2024-07-25T14:21:05.010000"],["2024-07-25T14:21:06.010000"],["2024-07-25T14:21:07.010000"],["2024-07-25T14:21:08.010000"],["2024-07-25T14:21:09.010000"],["2024-07-25T14:21:10.010000"],["2024-07-25T14:21:11.010000"],["2024-07-25T14:21:12.010000"],["2024-07-25T14:21:13.010000"],["2024-07-25T14:21:14.010000"],["2024-07-25T14:21:15.010000"],["2024-07-25T14:21:16.010000"],["2024-07-25T14:21:17.010000"],["2024-07-25T14:21:18.010000"],["2024-07-25T14:21:19.010000"],["2024-07-25T14:21:20.010000"],["2024-07-25T14:21:21.010000"],["2024-07-25T14:21:22.010000"],["2024-07-25T14:21:23.010000"],["2024-07-25T14:21:24.010000"],["2024-07-25T14:21:25.010000"],["2024-07-25T14:21:26.010000"],["2024-07-25T14:21:27.010000"],["2024-07-25T14:21:28.010000"],["2024-07-25T14:21:29.010000"],["2024-07-25T14:21:30.010000"],["2024-07-25T14:21:31.010000"],["2024-07-25T14:21:32.010000"],["2024-07-25T14:21:33.010000"],["2024-07-25T14:21:34.010000"],["2024-07-25T14:21:35.010000"],["2024-07-25T14:21:36.010000"],["2024-07-25T14:21:37.010000"],["2024-07-25T14:21:38.010000"],["2024-07-25T14:21:39.010000"],["2024-07-25T14:21:40.010000"],["2024-07-25T14:21:41.010000"],["2024-07-25T14:21:42.010000"],["2024-07-25T14:21:43.010000"],["2024-07-25T14:21:44.010000"],["2024-07-25T14:21:45.010000"],["2024-07-25T14:21:46.010000"],["2024-07-25T14:21:47.010000"],["2024-07-25T14:21:48.010000"],["2024-07-25T14:21:49.010000"],["2024-07-25T14:21:50.010000"],["2024-07-25T14:21:51.010000"],["2024-07-25T14:21:52.010000"],["2024-07-25T14:21:53.010000"],["2024-07-25T14:21:54.010000"],["2024-07-25T14:21:55.010000"],["2024-07-25T14:21:56.010000"],["2024-07-25T14:21:57.010000"],["2024-07-25T14:21:58.010000"],["2024-07-25T14:21:59.010000"],["2024-07-25T14:22:00.010000"],["2024-07-25T14:22:01.010000"],["2024-07-25T14:22:02.010000"],["2024-07-25T14:22:03.010000"],["2024-07-25T14:22:04.010000"],["2024-07-25T14:22:05.010000"],["2024-07-25T14:22:06.010000"],["2024-07-25T14:22:07.010000"],["2024-07-25T14:22:08.010000"],["2024-07-25T14:22:09.010000"],["2024-07-25T14:22:10.010000"],["2024-07-25T14:22:11.010000"],["2024-07-25T14:22:12.010000"],["2024-07-25T14:22:13.010000"],["2024-07-25T14:22:14.010000"],["2024-07-25T14:22:15.010000"],["2024-07-25T14:22:16.010000"],["2024-07-25T14:22:17.010000"],["2024-07-25T14:22:18.010000"],["2024-07-25T14:22:19.010000"],["2024-07-25T14:22:20.010000"],["2024-07-25T14:22:21.010000"],["2024-07-25T14:22:22.010000"],["2024-07-25T14:22:23.010000"],["2024-07-25T14:22:24.010000"],["2024-07-25T14:22:25.010000"],["2024-07-25T14:22:26.010000"],["2024-07-25T14:22:27.010000"],["2024-07-25T14:22:28.010000"],["2024-07-25T14:22:29.010000"],["2024-07-25T14:22:30.010000"],["2024-07-25T14:22:31.010000"],["2024-07-25T14:22:32.010000"],["2024-07-25T14:22:33.010000"],["2024-07-25T14:22:34.010000"],["2024-07-25T14:22:35.010000"],["2024-07-25T14:22:36.010000"],["2024-07-25T14:22:37.010000"],["2024-07-25T14:22:38.010000"],["2024-07-25T14:22:39.010000"],["2024-07-25T14:22:40.010000"],["2024-07-25T14:22:41.010000"],["2024-07-25T14:22:42.010000"],["2024-07-25T14:22:43.010000"],["2024-07-25T14:22:44.010000"],["2024-07-25T14:22:45.010000"],["2024-07-25T14:22:46.010000"],["2024-07-25T14:22:47.010000"],["2024-07-25T14:22:48.010000"],["2024-07-25T14:22:49.010000"],["2024-07-25T14:22:50.010000"],["2024-07-25T14:22:51.010000"],["2024-07-25T14:22:52.010000"],["2024-07-25T14:22:53.010000"],["2024-07-25T14:22:54.010000"],["2024-07-25T14:22:55.010000"],["2024-07-25T14:22:56.010000"],["2024-07-25T14:22:57.010000"],["2024-07-25T14:22:58.010000"],["2024-07-25T14:22:59.010000"],["2024-07-25T14:23:00.010000"],["2024-07-25T14:23:01.010000"],["2024-07-25T14:23:02.010000"],["2024-07-25T14:23:03.010000"],["2024-07-25T14:23:04.010000"],["2024-07-25T14:23:05.010000"],["2024-07-25T14:23:06.010000"],["2024-07-25T14:23:07.010000"],["2024-07-25T14:23:08.010000"],["2024-07-25T14:23:09.010000"],["2024-07-25T14:23:10.010000"],["2024-07-25T14:23:11.010000"],["2024-07-25T14:23:12.010000"],["2024-07-25T14:23:13.010000"],["2024-07-25T14:23:14.010000"],["2024-07-25T14:23:15.010000"],["2024-07-25T14:23:16.010000"],["2024-07-25T14:23:17.010000"],["2024-07-25T14:23:18.010000"],["2024-07-25T14:23:19.010000"],["2024-07-25T14:23:20.010000"],["2024-07-25T14:23:21.010000"],["2024-07-25T14:23:22.010000"],["2024-07-25T14:23:23.010000"],["2024-07-25T14:23:24.010000"],["2024-07-25T14:23:25.010000"],["2024-07-25T14:23:26.010000"],["2024-07-25T14:23:27.010000"],["2024-07-25T14:23:28.010000"],["2024-07-25T14:23:29.010000"],["2024-07-25T14:23:30.010000"],["2024-07-25T14:23:31.010000"],["2024-07-25T14:23:32.010000"],["2024-07-25T14:23:33.010000"],["2024-07-25T14:23:34.010000"],["2024-07-25T14:23:35.010000"],["2024-07-25T14:23:36.010000"],["2024-07-25T14:23:37.010000"],["2024-07-25T14:23:38.010000"],["2024-07-25T14:23:39.010000"],["2024-07-25T14:23:40.010000"],["2024-07-25T14:23:41.010000"],["2024-07-25T14:23:42.010000"],["2024-07-25T14:23:43.010000"],["2024-07-25T14:23:44.010000"],["2024-07-25T14:23:45.010000"],["2024-07-25T14:23:46.010000"],["2024-07-25T14:23:47.010000"],["2024-07-25T14:23:48.010000"],["2024-07-25T14:23:49.010000"],["2024-07-25T14:23:50.010000"],["2024-07-25T14:23:51.010000"],["2024-07-25T14:23:52.010000"],["2024-07-25T14:23:53.010000"],["2024-07-25T14:23:54.010000"],["2024-07-25T14:23:55.010000"],["2024-07-25T14:23:56.010000"],["2024-07-25T14:23:57.010000"],["2024-07-25T14:23:58.010000"],["2024-07-25T14:23:59.010000"],["2024-07-25T14:24:00.010000"],["2024-07-25T14:24:01.010000"],["2024-07-25T14:24:02.010000"],["2024-07-25T14:24:03.010000"],["2024-07-25T14:24:04.010000"],["2024-07-25T14:24:05.010000"],["2024-07-25T14:24:06.010000"],["2024-07-25T14:24:07.010000"],["2024-07-25T14:24:08.010000"],["2024-07-25T14:24:09.010000"],["2024-07-25T14:24:10.010000"],["2024-07-25T14:24:11.010000"],["2024-07-25T14:24:12.010000"],["2024-07-25T14:24:13.010000"],["2024-07-25T14:24:14.010000"],["2024-07-25T14:24:15.010000"],["2024-07-25T14:24:16.010000"],["2024-07-25T14:24:17.010000"],["2024-07-25T14:24:18.010000"],["2024-07-25T14:24:19.010000"],["2024-07-25T14:24:20.010000"],["2024-07-25T14:24:21.010000"],["2024-07-25T14:24:22.010000"],["2024-07-25T14:24:23.010000"],["2024-07-25T14:24:24.010000"],["2024-07-25T14:24:25.010000"],["2024-07-25T14:24:26.010000"],["2024-07-25T14:24:27.010000"],["2024-07-25T14:24:28.010000"],["2024-07-25T14:24:29.010000"],["2024-07-25T14:24:30.010000"],["2024-07-25T14:24:31.010000"],["2024-07-25T14:24:32.010000"],["2024-07-25T14:24:33.010000"],["2024-07-25T14:24:34.010000"],["2024-07-25T14:24:35.010000"],["2024-07-25T14:24:36.010000"],["2024-07-25T14:24:37.010000"],["2024-07-25T14:24:38.010000"],["2024-07-25T14:24:39.010000"],["2024-07-25T14:24:40.010000"],["2024-07-25T14:24:41.010000"],["2024-07-25T14:24:42.010000"],["2024-07-25T14:24:43.010000"],["2024-07-25T14:24:44.010000"],["2024-07-25T14:24:45.010000"],["2024-07-25T14:24:46.010000"],["2024-07-25T14:24:47.010000"],["2024-07-25T14:24:48.010000"],["2024-07-25T14:24:49.010000"],["2024-07-25T14:24:50.010000"],["2024-07-25T14:24:51.010000"],["2024-07-25T14:24:52.010000"],["2024-07-25T14:24:53.010000"],["2024-07-25T14:24:54.010000"],["2024-07-25T14:24:55.010000"],["2024-07-25T14:24:56.010000"],["2024-07-25T14:24:57.010000"],["2024-07-25T14:24:58.010000"],["2024-07-25T14:24:59.010000"],["2024-07-25T14:25:00.010000"],["2024-07-25T14:25:01.010000"],["2024-07-25T14:25:02.010000"],["2024-07-25T14:25:03.010000"],["2024-07-25T14:25:04.010000"],["2024-07-25T14:25:05.010000"],["2024-07-25T14:25:06.010000"],["2024-07-25T14:25:07.010000"],["2024-07-25T14:25:08.010000"],["2024-07-25T14:25:09.010000"],["2024-07-25T14:25:10.010000"],["2024-07-25T14:25:11.010000"],["2024-07-25T14:25:12.010000"],["2024-07-25T14:25:13.010000"],["2024-07-25T14:25:14.010000"],["2024-07-25T14:25:15.010000"],["2024-07-25T14:25:16.010000"],["2024-07-25T14:25:17.010000"],["2024-07-25T14:25:18.010000"],["2024-07-25T14:25:19.010000"],["2024-07-25T14:25:20.010000"],["2024-07-25T14:25:21.010000"],["2024-07-25T14:25:22.010000"],["2024-07-25T14:25:23.010000"],["2024-07-25T14:25:24.010000"],["2024-07-25T14:25:25.010000"],["2024-07-25T14:25:26.010000"],["2024-07-25T14:25:27.010000"],["2024-07-25T14:25:28.010000"],["2024-07-25T14:25:29.010000"],["2024-07-25T14:25:30.010000"],["2024-07-25T14:25:31.010000"],["2024-07-25T14:25:32.010000"],["2024-07-25T14:25:33.010000"],["2024-07-25T14:25:34.010000"],["2024-07-25T14:25:35.010000"],["2024-07-25T14:25:36.010000"],["2024-07-25T14:25:37.010000"],["2024-07-25T14:25:38.010000"],["2024-07-25T14:25:39.010000"],["2024-07-25T14:25:40.010000"],["2024-07-25T14:25:41.010000"],["2024-07-25T14:25:42.010000"],["2024-07-25T14:25:43.010000"],["2024-07-25T14:25:44.010000"],["2024-07-25T14:25:45.010000"],["2024-07-25T14:25:46.010000"],["2024-07-25T14:25:47.010000"],["2024-07-25T14:25:48.010000"],["2024-07-25T14:25:49.010000"],["2024-07-25T14:25:50.010000"],["2024-07-25T14:25:51.010000"],["2024-07-25T14:25:52.010000"],["2024-07-25T14:25:53.010000"],["2024-07-25T14:25:54.010000"],["2024-07-25T14:25:55.010000"],["2024-07-25T14:25:56.010000"],["2024-07-25T14:25:57.010000"],["2024-07-25T14:25:58.010000"],["2024-07-25T14:25:59.010000"],["2024-07-25T14:26:00.010000"],["2024-07-25T14:26:01.010000"],["2024-07-25T14:26:02.010000"],["2024-07-25T14:26:03.010000"],["2024-07-25T14:26:04.010000"],["2024-07-25T14:26:05.010000"],["2024-07-25T14:26:06.010000"],["2024-07-25T14:26:07.010000"],["2024-07-25T14:26:08.010000"],["2024-07-25T14:26:09.010000"],["2024-07-25T14:26:10.010000"],["2024-07-25T14:26:11.010000"],["2024-07-25T14:26:12.010000"],["2024-07-25T14:26:13.010000"],["2024-07-25T14:26:14.010000"],["2024-07-25T14:26:15.010000"],["2024-07-25T14:26:16.010000"],["2024-07-25T14:26:17.010000"],["2024-07-25T14:26:18.010000"],["2024-07-25T14:26:19.010000"],["2024-07-25T14:26:20.010000"],["2024-07-25T14:26:21.010000"],["2024-07-25T14:26:22.010000"],["2024-07-25T14:26:23.010000"],["2024-07-25T14:26:24.010000"],["2024-07-25T14:26:25.010000"],["2024-07-25T14:26:26.010000"],["2024-07-25T14:26:27.010000"],["2024-07-25T14:26:28.010000"],["2024-07-25T14:26:29.010000"],["2024-07-25T14:26:30.010000"],["2024-07-25T14:26:31.010000"],["2024-07-25T14:26:32.010000"],["2024-07-25T14:26:33.010000"],["2024-07-25T14:26:34.010000"],["2024-07-25T14:26:35.010000"],["2024-07-25T14:26:36.010000"],["2024-07-25T14:26:37.010000"],["2024-07-25T14:26:38.010000"],["2024-07-25T14:26:39.010000"],["2024-07-25T14:26:40.010000"],["2024-07-25T14:26:41.010000"],["2024-07-25T14:26:42.010000"],["2024-07-25T14:26:43.010000"],["2024-07-25T14:26:44.010000"],["2024-07-25T14:26:45.010000"],["2024-07-25T14:26:46.010000"],["2024-07-25T14:26:47.010000"],["2024-07-25T14:26:48.010000"],["2024-07-25T14:26:49.010000"],["2024-07-25T14:26:50.010000"],["2024-07-25T14:26:51.010000"],["2024-07-25T14:26:52.010000"],["2024-07-25T14:26:53.010000"],["2024-07-25T14:26:54.010000"],["2024-07-25T14:26:55.010000"],["2024-07-25T14:26:56.010000"],["2024-07-25T14:26:57.010000"],["2024-07-25T14:26:58.010000"],["2024-07-25T14:26:59.010000"],["2024-07-25T14:27:00.010000"],["2024-07-25T14:27:01.010000"],["2024-07-25T14:27:02.010000"],["2024-07-25T14:27:03.010000"],["2024-07-25T14:27:04.010000"],["2024-07-25T14:27:05.010000"],["2024-07-25T14:27:06.010000"],["2024-07-25T14:27:07.010000"],["2024-07-25T14:27:08.010000"],["2024-07-25T14:27:09.010000"],["2024-07-25T14:27:10.010000"],["2024-07-25T14:27:11.010000"],["2024-07-25T14:27:12.010000"],["2024-07-25T14:27:13.010000"],["2024-07-25T14:27:14.010000"],["2024-07-25T14:27:15.010000"],["2024-07-25T14:27:16.010000"],["2024-07-25T14:27:17.010000"],["2024-07-25T14:27:18.010000"],["2024-07-25T14:27:19.010000"],["2024-07-25T14:27:20.010000"],["2024-07-25T14:27:21.010000"],["2024-07-25T14:27:22.010000"],["2024-07-25T14:27:23.010000"],["2024-07-25T14:27:24.010000"],["2024-07-25T14:27:25.010000"],["2024-07-25T14:27:26.010000"],["2024-07-25T14:27:27.010000"],["2024-07-25T14:27:28.010000"],["2024-07-25T14:27:29.010000"],["2024-07-25T14:27:30.010000"],["2024-07-25T14:27:31.010000"],["2024-07-25T14:27:32.010000"],["2024-07-25T14:27:33.010000"],["2024-07-25T14:27:34.010000"],["2024-07-25T14:27:35.010000"],["2024-07-25T14:27:36.010000"],["2024-07-25T14:27:37.010000"],["2024-07-25T14:27:38.010000"],["2024-07-25T14:27:39.010000"],["2024-07-25T14:27:40.010000"],["2024-07-25T14:27:41.010000"],["2024-07-25T14:27:42.010000"],["2024-07-25T14:27:43.010000"],["2024-07-25T14:27:44.010000"],["2024-07-25T14:27:45.010000"],["2024-07-25T14:27:46.010000"],["2024-07-25T14:27:47.010000"],["2024-07-25T14:27:48.010000"],["2024-07-25T14:27:49.010000"],["2024-07-25T14:27:50.010000"],["2024-07-25T14:27:51.010000"],["2024-07-25T14:27:52.010000"],["2024-07-25T14:27:53.010000"],["2024-07-25T14:27:54.010000"],["2024-07-25T14:27:55.010000"],["2024-07-25T14:27:56.010000"],["2024-07-25T14:27:57.010000"],["2024-07-25T14:27:58.010000"],["2024-07-25T14:27:59.010000"],["2024-07-25T14:28:00.010000"],["2024-07-25T14:28:01.010000"],["2024-07-25T14:28:02.010000"],["2024-07-25T14:28:03.010000"],["2024-07-25T14:28:04.010000"],["2024-07-25T14:28:05.010000"],["2024-07-25T14:28:06.010000"],["2024-07-25T14:28:07.010000"],["2024-07-25T14:28:08.010000"],["2024-07-25T14:28:09.010000"],["2024-07-25T14:28:10.010000"],["2024-07-25T14:28:11.010000"],["2024-07-25T14:28:12.010000"],["2024-07-25T14:28:13.010000"],["2024-07-25T14:28:14.010000"],["2024-07-25T14:28:15.010000"],["2024-07-25T14:28:16.010000"],["2024-07-25T14:28:17.010000"],["2024-07-25T14:28:18.010000"],["2024-07-25T14:28:19.010000"],["2024-07-25T14:28:20.010000"],["2024-07-25T14:28:21.010000"],["2024-07-25T14:28:22.010000"],["2024-07-25T14:28:23.010000"],["2024-07-25T14:28:24.010000"],["2024-07-25T14:28:25.010000"],["2024-07-25T14:28:26.010000"],["2024-07-25T14:28:27.010000"],["2024-07-25T14:28:28.010000"],["2024-07-25T14:28:29.010000"],["2024-07-25T14:28:30.010000"],["2024-07-25T14:28:31.010000"],["2024-07-25T14:28:32.010000"],["2024-07-25T14:28:33.010000"],["2024-07-25T14:28:34.010000"],["2024-07-25T14:28:35.010000"],["2024-07-25T14:28:36.010000"],["2024-07-25T14:28:37.010000"],["2024-07-25T14:28:38.010000"],["2024-07-25T14:28:39.010000"],["2024-07-25T14:28:40.010000"],["2024-07-25T14:28:41.010000"],["2024-07-25T14:28:42.010000"],["2024-07-25T14:28:43.010000"],["2024-07-25T14:28:44.010000"],["2024-07-25T14:28:45.010000"],["2024-07-25T14:28:46.010000"],["2024-07-25T14:28:47.010000"],["2024-07-25T14:28:48.010000"],["2024-07-25T14:28:49.010000"],["2024-07-25T14:28:50.010000"],["2024-07-25T14:28:51.010000"],["2024-07-25T14:28:52.010000"],["2024-07-25T14:28:53.010000"],["2024-07-25T14:28:54.010000"],["2024-07-25T14:28:55.010000"],["2024-07-25T14:28:56.010000"],["2024-07-25T14:28:57.010000"],["2024-07-25T14:28:58.010000"],["2024-07-25T14:28:59.010000"],["2024-07-25T14:29:00.010000"],["2024-07-25T14:29:01.010000"],["2024-07-25T14:29:02.010000"],["2024-07-25T14:29:03.010000"],["2024-07-25T14:29:04.010000"],["2024-07-25T14:29:05.010000"],["2024-07-25T14:29:06.010000"],["2024-07-25T14:29:07.010000"],["2024-07-25T14:29:08.010000"],["2024-07-25T14:29:09.010000"],["2024-07-25T14:29:10.010000"],["2024-07-25T14:29:11.010000"],["2024-07-25T14:29:12.010000"],["2024-07-25T14:29:13.010000"],["2024-07-25T14:29:14.010000"],["2024-07-25T14:29:15.010000"],["2024-07-25T14:29:16.010000"],["2024-07-25T14:29:17.010000"],["2024-07-25T14:29:18.010000"],["2024-07-25T14:29:19.010000"],["2024-07-25T14:29:20.010000"],["2024-07-25T14:29:21.010000"],["2024-07-25T14:29:22.010000"],["2024-07-25T14:29:23.010000"],["2024-07-25T14:29:24.010000"],["2024-07-25T14:29:25.010000"],["2024-07-25T14:29:26.010000"],["2024-07-25T14:29:27.010000"],["2024-07-25T14:29:28.010000"],["2024-07-25T14:29:29.010000"],["2024-07-25T14:29:30.010000"],["2024-07-25T14:29:31.010000"],["2024-07-25T14:29:32.010000"],["2024-07-25T14:29:33.010000"],["2024-07-25T14:29:34.010000"],["2024-07-25T14:29:35.010000"],["2024-07-25T14:29:36.010000"],["2024-07-25T14:29:37.010000"],["2024-07-25T14:29:38.010000"],["2024-07-25T14:29:39.010000"],["2024-07-25T14:29:40.010000"],["2024-07-25T14:29:41.010000"],["2024-07-25T14:29:42.010000"],["2024-07-25T14:29:43.010000"],["2024-07-25T14:29:44.010000"],["2024-07-25T14:29:45.010000"],["2024-07-25T14:29:46.010000"],["2024-07-25T14:29:47.010000"],["2024-07-25T14:29:48.010000"],["2024-07-25T14:29:49.010000"],["2024-07-25T14:29:50.010000"],["2024-07-25T14:29:51.010000"],["2024-07-25T14:29:52.010000"],["2024-07-25T14:29:53.010000"],["2024-07-25T14:29:54.010000"],["2024-07-25T14:29:55.010000"],["2024-07-25T14:29:56.010000"],["2024-07-25T14:29:57.010000"],["2024-07-25T14:29:58.010000"],["2024-07-25T14:29:59.010000"],["2024-07-25T14:30:00.010000"],["2024-07-25T14:30:01.010000"],["2024-07-25T14:30:02.010000"],["2024-07-25T14:30:03.010000"],["2024-07-25T14:30:04.010000"],["2024-07-25T14:30:05.010000"],["2024-07-25T14:30:06.010000"],["2024-07-25T14:30:07.010000"],["2024-07-25T14:30:08.010000"],["2024-07-25T14:30:09.010000"],["2024-07-25T14:30:10.010000"],["2024-07-25T14:30:11.010000"],["2024-07-25T14:30:12.010000"],["2024-07-25T14:30:13.010000"],["2024-07-25T14:30:14.010000"],["2024-07-25T14:30:15.010000"],["2024-07-25T14:30:16.010000"],["2024-07-25T14:30:17.010000"],["2024-07-25T14:30:18.010000"],["2024-07-25T14:30:19.010000"],["2024-07-25T14:30:20.010000"],["2024-07-25T14:30:21.010000"],["2024-07-25T14:30:22.010000"],["2024-07-25T14:30:23.010000"],["2024-07-25T14:30:24.010000"],["2024-07-25T14:30:25.010000"],["2024-07-25T14:30:26.010000"],["2024-07-25T14:30:27.010000"],["2024-07-25T14:30:28.010000"],["2024-07-25T14:30:29.010000"],["2024-07-25T14:30:30.010000"],["2024-07-25T14:30:31.010000"],["2024-07-25T14:30:32.010000"],["2024-07-25T14:30:33.010000"],["2024-07-25T14:30:34.010000"],["2024-07-25T14:30:35.010000"],["2024-07-25T14:30:36.010000"],["2024-07-25T14:30:37.010000"],["2024-07-25T14:30:38.010000"],["2024-07-25T14:30:39.010000"],["2024-07-25T14:30:40.010000"],["2024-07-25T14:30:41.010000"],["2024-07-25T14:30:42.010000"],["2024-07-25T14:30:43.010000"],["2024-07-25T14:30:44.010000"],["2024-07-25T14:30:45.010000"],["2024-07-25T14:30:46.010000"],["2024-07-25T14:30:47.010000"],["2024-07-25T14:30:48.010000"],["2024-07-25T14:30:49.010000"],["2024-07-25T14:30:50.010000"],["2024-07-25T14:30:51.010000"],["2024-07-25T14:30:52.010000"],["2024-07-25T14:30:53.010000"],["2024-07-25T14:30:54.010000"],["2024-07-25T14:30:55.010000"],["2024-07-25T14:30:56.010000"],["2024-07-25T14:30:57.010000"],["2024-07-25T14:30:58.010000"],["2024-07-25T14:30:59.010000"],["2024-07-25T14:31:00.010000"],["2024-07-25T14:31:01.010000"],["2024-07-25T14:31:02.010000"],["2024-07-25T14:31:03.010000"],["2024-07-25T14:31:04.010000"],["2024-07-25T14:31:05.010000"],["2024-07-25T14:31:06.010000"],["2024-07-25T14:31:07.010000"],["2024-07-25T14:31:08.010000"],["2024-07-25T14:31:09.010000"],["2024-07-25T14:31:10.010000"],["2024-07-25T14:31:11.010000"],["2024-07-25T14:31:12.010000"],["2024-07-25T14:31:13.010000"],["2024-07-25T14:31:14.010000"],["2024-07-25T14:31:15.010000"],["2024-07-25T14:31:16.010000"],["2024-07-25T14:31:17.010000"],["2024-07-25T14:31:18.010000"],["2024-07-25T14:31:19.010000"],["2024-07-25T14:31:20.010000"],["2024-07-25T14:31:21.010000"],["2024-07-25T14:31:22.010000"],["2024-07-25T14:31:23.010000"],["2024-07-25T14:31:24.010000"],["2024-07-25T14:31:25.010000"],["2024-07-25T14:31:26.010000"],["2024-07-25T14:31:27.010000"],["2024-07-25T14:31:28.010000"],["2024-07-25T14:31:29.010000"],["2024-07-25T14:31:30.010000"],["2024-07-25T14:31:31.010000"],["2024-07-25T14:31:32.010000"],["2024-07-25T14:31:33.010000"],["2024-07-25T14:31:34.010000"],["2024-07-25T14:31:35.010000"],["2024-07-25T14:31:36.010000"],["2024-07-25T14:31:37.010000"],["2024-07-25T14:31:38.010000"],["2024-07-25T14:31:39.010000"],["2024-07-25T14:31:40.010000"],["2024-07-25T14:31:41.010000"],["2024-07-25T14:31:42.010000"],["2024-07-25T14:31:43.010000"],["2024-07-25T14:31:44.010000"],["2024-07-25T14:31:45.010000"],["2024-07-25T14:31:46.010000"],["2024-07-25T14:31:47.010000"],["2024-07-25T14:31:48.010000"],["2024-07-25T14:31:49.010000"],["2024-07-25T14:31:50.010000"],["2024-07-25T14:31:51.010000"],["2024-07-25T14:31:52.010000"],["2024-07-25T14:31:53.010000"],["2024-07-25T14:31:54.010000"],["2024-07-25T14:31:55.010000"],["2024-07-25T14:31:56.010000"],["2024-07-25T14:31:57.010000"],["2024-07-25T14:31:58.010000"],["2024-07-25T14:31:59.010000"],["2024-07-25T14:32:00.010000"],["2024-07-25T14:32:01.010000"],["2024-07-25T14:32:02.010000"],["2024-07-25T14:32:03.010000"],["2024-07-25T14:32:04.010000"],["2024-07-25T14:32:05.010000"],["2024-07-25T14:32:06.010000"],["2024-07-25T14:32:07.010000"],["2024-07-25T14:32:08.010000"],["2024-07-25T14:32:09.010000"],["2024-07-25T14:32:10.010000"],["2024-07-25T14:32:11.010000"],["2024-07-25T14:32:12.010000"],["2024-07-25T14:32:13.010000"],["2024-07-25T14:32:14.010000"],["2024-07-25T14:32:15.010000"],["2024-07-25T14:32:16.010000"],["2024-07-25T14:32:17.010000"],["2024-07-25T14:32:18.010000"],["2024-07-25T14:32:19.010000"],["2024-07-25T14:32:20.010000"],["2024-07-25T14:32:21.010000"],["2024-07-25T14:32:22.010000"],["2024-07-25T14:32:23.010000"],["2024-07-25T14:32:24.010000"],["2024-07-25T14:32:25.010000"],["2024-07-25T14:32:26.010000"],["2024-07-25T14:32:27.010000"],["2024-07-25T14:32:28.010000"],["2024-07-25T14:32:29.010000"],["2024-07-25T14:32:30.010000"],["2024-07-25T14:32:31.010000"],["2024-07-25T14:32:32.010000"],["2024-07-25T14:32:33.010000"],["2024-07-25T14:32:34.010000"],["2024-07-25T14:32:35.010000"],["2024-07-25T14:32:36.010000"],["2024-07-25T14:32:37.010000"],["2024-07-25T14:32:38.010000"],["2024-07-25T14:32:39.010000"],["2024-07-25T14:32:40.010000"],["2024-07-25T14:32:41.010000"],["2024-07-25T14:32:42.010000"],["2024-07-25T14:32:43.010000"],["2024-07-25T14:32:44.010000"],["2024-07-25T14:32:45.010000"],["2024-07-25T14:32:46.010000"],["2024-07-25T14:32:47.010000"],["2024-07-25T14:32:48.010000"],["2024-07-25T14:32:49.010000"],["2024-07-25T14:32:50.010000"],["2024-07-25T14:32:51.010000"],["2024-07-25T14:32:52.010000"],["2024-07-25T14:32:53.010000"],["2024-07-25T14:32:54.010000"],["2024-07-25T14:32:55.010000"],["2024-07-25T14:32:56.010000"],["2024-07-25T14:32:57.010000"],["2024-07-25T14:32:58.010000"],["2024-07-25T14:32:59.010000"],["2024-07-25T14:33:00.010000"],["2024-07-25T14:33:01.010000"],["2024-07-25T14:33:02.010000"],["2024-07-25T14:33:03.010000"],["2024-07-25T14:33:04.010000"],["2024-07-25T14:33:05.010000"],["2024-07-25T14:33:06.010000"],["2024-07-25T14:33:07.010000"],["2024-07-25T14:33:08.010000"],["2024-07-25T14:33:09.010000"],["2024-07-25T14:33:10.010000"],["2024-07-25T14:33:11.010000"],["2024-07-25T14:33:12.010000"],["2024-07-25T14:33:13.010000"],["2024-07-25T14:33:14.010000"],["2024-07-25T14:33:15.010000"],["2024-07-25T14:33:16.010000"],["2024-07-25T14:33:17.010000"],["2024-07-25T14:33:18.010000"],["2024-07-25T14:33:19.010000"],["2024-07-25T14:33:20.010000"],["2024-07-25T14:33:21.010000"],["2024-07-25T14:33:22.010000"],["2024-07-25T14:33:23.010000"],["2024-07-25T14:33:24.010000"],["2024-07-25T14:33:25.010000"],["2024-07-25T14:33:26.010000"],["2024-07-25T14:33:27.010000"],["2024-07-25T14:33:28.010000"],["2024-07-25T14:33:29.010000"],["2024-07-25T14:33:30.010000"],["2024-07-25T14:33:31.010000"],["2024-07-25T14:33:32.010000"],["2024-07-25T14:33:33.010000"],["2024-07-25T14:33:34.010000"],["2024-07-25T14:33:35.010000"],["2024-07-25T14:33:36.010000"],["2024-07-25T14:33:37.010000"],["2024-07-25T14:33:38.010000"],["2024-07-25T14:33:39.010000"],["2024-07-25T14:33:40.010000"],["2024-07-25T14:33:41.010000"],["2024-07-25T14:33:42.010000"],["2024-07-25T14:33:43.010000"],["2024-07-25T14:33:44.010000"],["2024-07-25T14:33:45.010000"],["2024-07-25T14:33:46.010000"],["2024-07-25T14:33:47.010000"],["2024-07-25T14:33:48.010000"],["2024-07-25T14:33:49.010000"],["2024-07-25T14:33:50.010000"],["2024-07-25T14:33:51.010000"],["2024-07-25T14:33:52.010000"],["2024-07-25T14:33:53.010000"],["2024-07-25T14:33:54.010000"],["2024-07-25T14:33:55.010000"],["2024-07-25T14:33:56.010000"],["2024-07-25T14:33:57.010000"],["2024-07-25T14:33:58.010000"],["2024-07-25T14:33:59.010000"],["2024-07-25T14:34:00.010000"],["2024-07-25T14:34:01.010000"],["2024-07-25T14:34:02.010000"],["2024-07-25T14:34:03.010000"],["2024-07-25T14:34:04.010000"],["2024-07-25T14:34:05.010000"],["2024-07-25T14:34:06.010000"],["2024-07-25T14:34:07.010000"],["2024-07-25T14:34:08.010000"],["2024-07-25T14:34:09.010000"],["2024-07-25T14:34:10.010000"],["2024-07-25T14:34:11.010000"],["2024-07-25T14:34:12.010000"],["2024-07-25T14:34:13.010000"],["2024-07-25T14:34:14.010000"],["2024-07-25T14:34:15.010000"],["2024-07-25T14:34:16.010000"],["2024-07-25T14:34:17.010000"],["2024-07-25T14:34:18.010000"],["2024-07-25T14:34:19.010000"],["2024-07-25T14:34:20.010000"],["2024-07-25T14:34:21.010000"],["2024-07-25T14:34:22.010000"],["2024-07-25T14:34:23.010000"],["2024-07-25T14:34:24.010000"],["2024-07-25T14:34:25.010000"],["2024-07-25T14:34:26.010000"],["2024-07-25T14:34:27.010000"],["2024-07-25T14:34:28.010000"],["2024-07-25T14:34:29.010000"],["2024-07-25T14:34:30.010000"],["2024-07-25T14:34:31.010000"],["2024-07-25T14:34:32.010000"],["2024-07-25T14:34:33.010000"],["2024-07-25T14:34:34.010000"],["2024-07-25T14:34:35.010000"],["2024-07-25T14:34:36.010000"],["2024-07-25T14:34:37.010000"],["2024-07-25T14:34:38.010000"],["2024-07-25T14:34:39.010000"],["2024-07-25T14:34:40.010000"],["2024-07-25T14:34:41.010000"],["2024-07-25T14:34:42.010000"],["2024-07-25T14:34:43.010000"],["2024-07-25T14:34:44.010000"],["2024-07-25T14:34:45.010000"],["2024-07-25T14:34:46.010000"],["2024-07-25T14:34:47.010000"],["2024-07-25T14:34:48.010000"],["2024-07-25T14:34:49.010000"],["2024-07-25T14:34:50.010000"],["2024-07-25T14:34:51.010000"],["2024-07-25T14:34:52.010000"],["2024-07-25T14:34:53.010000"],["2024-07-25T14:34:54.010000"],["2024-07-25T14:34:55.010000"],["2024-07-25T14:34:56.010000"],["2024-07-25T14:34:57.010000"],["2024-07-25T14:34:58.010000"],["2024-07-25T14:34:59.010000"],["2024-07-25T14:35:00.010000"],["2024-07-25T14:35:01.010000"],["2024-07-25T14:35:02.010000"],["2024-07-25T14:35:03.010000"],["2024-07-25T14:35:04.010000"],["2024-07-25T14:35:05.010000"],["2024-07-25T14:35:06.010000"],["2024-07-25T14:35:07.010000"],["2024-07-25T14:35:08.010000"],["2024-07-25T14:35:09.010000"],["2024-07-25T14:35:10.010000"],["2024-07-25T14:35:11.010000"],["2024-07-25T14:35:12.010000"],["2024-07-25T14:35:13.010000"],["2024-07-25T14:35:14.010000"],["2024-07-25T14:35:15.010000"],["2024-07-25T14:35:16.010000"],["2024-07-25T14:35:17.010000"],["2024-07-25T14:35:18.010000"],["2024-07-25T14:35:19.010000"],["2024-07-25T14:35:20.010000"],["2024-07-25T14:35:21.010000"],["2024-07-25T14:35:22.010000"],["2024-07-25T14:35:23.010000"],["2024-07-25T14:35:24.010000"],["2024-07-25T14:35:25.010000"],["2024-07-25T14:35:26.010000"],["2024-07-25T14:35:27.010000"],["2024-07-25T14:35:28.010000"],["2024-07-25T14:35:29.010000"],["2024-07-25T14:35:30.010000"],["2024-07-25T14:35:31.010000"],["2024-07-25T14:35:32.010000"],["2024-07-25T14:35:33.010000"],["2024-07-25T14:35:34.010000"],["2024-07-25T14:35:35.010000"],["2024-07-25T14:35:36.010000"],["2024-07-25T14:35:37.010000"],["2024-07-25T14:35:38.010000"],["2024-07-25T14:35:39.010000"],["2024-07-25T14:35:40.010000"],["2024-07-25T14:35:41.010000"],["2024-07-25T14:35:42.010000"],["2024-07-25T14:35:43.010000"],["2024-07-25T14:35:44.010000"],["2024-07-25T14:35:45.010000"],["2024-07-25T14:35:46.010000"],["2024-07-25T14:35:47.010000"],["2024-07-25T14:35:48.010000"],["2024-07-25T14:35:49.010000"],["2024-07-25T14:35:50.010000"],["2024-07-25T14:35:51.010000"],["2024-07-25T14:35:52.010000"],["2024-07-25T14:35:53.010000"],["2024-07-25T14:35:54.010000"],["2024-07-25T14:35:55.010000"],["2024-07-25T14:35:56.010000"],["2024-07-25T14:35:57.010000"],["2024-07-25T14:35:58.010000"],["2024-07-25T14:35:59.010000"],["2024-07-25T14:36:00.010000"],["2024-07-25T14:36:01.010000"],["2024-07-25T14:36:02.010000"],["2024-07-25T14:36:03.010000"],["2024-07-25T14:36:04.010000"],["2024-07-25T14:36:05.010000"],["2024-07-25T14:36:06.010000"],["2024-07-25T14:36:07.010000"],["2024-07-25T14:36:08.010000"],["2024-07-25T14:36:09.010000"],["2024-07-25T14:36:10.010000"],["2024-07-25T14:36:11.010000"],["2024-07-25T14:36:12.010000"],["2024-07-25T14:36:13.010000"],["2024-07-25T14:36:14.010000"],["2024-07-25T14:36:15.010000"],["2024-07-25T14:36:16.010000"],["2024-07-25T14:36:17.010000"],["2024-07-25T14:36:18.010000"],["2024-07-25T14:36:19.010000"],["2024-07-25T14:36:20.010000"],["2024-07-25T14:36:21.010000"],["2024-07-25T14:36:22.010000"],["2024-07-25T14:36:23.010000"],["2024-07-25T14:36:24.010000"],["2024-07-25T14:36:25.010000"],["2024-07-25T14:36:26.010000"],["2024-07-25T14:36:27.010000"],["2024-07-25T14:36:28.010000"],["2024-07-25T14:36:29.010000"],["2024-07-25T14:36:30.010000"],["2024-07-25T14:36:31.010000"],["2024-07-25T14:36:32.010000"],["2024-07-25T14:36:33.010000"],["2024-07-25T14:36:34.010000"],["2024-07-25T14:36:35.010000"],["2024-07-25T14:36:36.010000"],["2024-07-25T14:36:37.010000"],["2024-07-25T14:36:38.010000"],["2024-07-25T14:36:39.010000"],["2024-07-25T14:36:40.010000"],["2024-07-25T14:36:41.010000"],["2024-07-25T14:36:42.010000"],["2024-07-25T14:36:43.010000"],["2024-07-25T14:36:44.010000"],["2024-07-25T14:36:45.010000"],["2024-07-25T14:36:46.010000"],["2024-07-25T14:36:47.010000"],["2024-07-25T14:36:48.010000"],["2024-07-25T14:36:49.010000"],["2024-07-25T14:36:50.010000"],["2024-07-25T14:36:51.010000"],["2024-07-25T14:36:52.010000"],["2024-07-25T14:36:53.010000"],["2024-07-25T14:36:54.010000"],["2024-07-25T14:36:55.010000"],["2024-07-25T14:36:56.010000"],["2024-07-25T14:36:57.010000"],["2024-07-25T14:36:58.010000"],["2024-07-25T14:36:59.010000"],["2024-07-25T14:37:00.010000"],["2024-07-25T14:37:01.010000"],["2024-07-25T14:37:02.010000"],["2024-07-25T14:37:03.010000"],["2024-07-25T14:37:04.010000"],["2024-07-25T14:37:05.010000"],["2024-07-25T14:37:06.010000"],["2024-07-25T14:37:07.010000"],["2024-07-25T14:37:08.010000"],["2024-07-25T14:37:09.010000"],["2024-07-25T14:37:10.010000"],["2024-07-25T14:37:11.010000"],["2024-07-25T14:37:12.010000"],["2024-07-25T14:37:13.010000"],["2024-07-25T14:37:14.010000"],["2024-07-25T14:37:15.010000"],["2024-07-25T14:37:16.010000"],["2024-07-25T14:37:17.010000"],["2024-07-25T14:37:18.010000"],["2024-07-25T14:37:19.010000"],["2024-07-25T14:37:20.010000"],["2024-07-25T14:37:21.010000"],["2024-07-25T14:37:22.010000"],["2024-07-25T14:37:23.010000"],["2024-07-25T14:37:24.010000"],["2024-07-25T14:37:25.010000"],["2024-07-25T14:37:26.010000"],["2024-07-25T14:37:27.010000"],["2024-07-25T14:37:28.010000"],["2024-07-25T14:37:29.010000"],["2024-07-25T14:37:30.010000"],["2024-07-25T14:37:31.010000"],["2024-07-25T14:37:32.010000"],["2024-07-25T14:37:33.010000"],["2024-07-25T14:37:34.010000"],["2024-07-25T14:37:35.010000"],["2024-07-25T14:37:36.010000"],["2024-07-25T14:37:37.010000"],["2024-07-25T14:37:38.010000"],["2024-07-25T14:37:39.010000"],["2024-07-25T14:37:40.010000"],["2024-07-25T14:37:41.010000"],["2024-07-25T14:37:42.010000"],["2024-07-25T14:37:43.010000"],["2024-07-25T14:37:44.010000"],["2024-07-25T14:37:45.010000"],["2024-07-25T14:37:46.010000"],["2024-07-25T14:37:47.010000"],["2024-07-25T14:37:48.010000"],["2024-07-25T14:37:49.010000"],["2024-07-25T14:37:50.010000"],["2024-07-25T14:37:51.010000"],["2024-07-25T14:37:52.010000"],["2024-07-25T14:37:53.010000"],["2024-07-25T14:37:54.010000"],["2024-07-25T14:37:55.010000"],["2024-07-25T14:37:56.010000"],["2024-07-25T14:37:57.010000"],["2024-07-25T14:37:58.010000"],["2024-07-25T14:37:59.010000"],["2024-07-25T14:38:00.010000"],["2024-07-25T14:38:01.010000"],["2024-07-25T14:38:02.010000"],["2024-07-25T14:38:03.010000"],["2024-07-25T14:38:04.010000"],["2024-07-25T14:38:05.010000"],["2024-07-25T14:38:06.010000"],["2024-07-25T14:38:07.010000"],["2024-07-25T14:38:08.010000"],["2024-07-25T14:38:09.010000"],["2024-07-25T14:38:10.010000"],["2024-07-25T14:38:11.010000"],["2024-07-25T14:38:12.010000"],["2024-07-25T14:38:13.010000"],["2024-07-25T14:38:14.010000"],["2024-07-25T14:38:15.010000"],["2024-07-25T14:38:16.010000"],["2024-07-25T14:38:17.010000"],["2024-07-25T14:38:18.010000"],["2024-07-25T14:38:19.010000"],["2024-07-25T14:38:20.010000"],["2024-07-25T14:38:21.010000"],["2024-07-25T14:38:22.010000"],["2024-07-25T14:38:23.010000"],["2024-07-25T14:38:24.010000"],["2024-07-25T14:38:25.010000"],["2024-07-25T14:38:26.010000"],["2024-07-25T14:38:27.010000"],["2024-07-25T14:38:28.010000"],["2024-07-25T14:38:29.010000"],["2024-07-25T14:38:30.010000"],["2024-07-25T14:38:31.010000"],["2024-07-25T14:38:32.010000"],["2024-07-25T14:38:33.010000"],["2024-07-25T14:38:34.010000"],["2024-07-25T14:38:35.010000"],["2024-07-25T14:38:36.010000"],["2024-07-25T14:38:37.010000"],["2024-07-25T14:38:38.010000"],["2024-07-25T14:38:39.010000"],["2024-07-25T14:38:40.010000"],["2024-07-25T14:38:41.010000"],["2024-07-25T14:38:42.010000"],["2024-07-25T14:38:43.010000"],["2024-07-25T14:38:44.010000"],["2024-07-25T14:38:45.010000"],["2024-07-25T14:38:46.010000"],["2024-07-25T14:38:47.010000"],["2024-07-25T14:38:48.010000"],["2024-07-25T14:38:49.010000"],["2024-07-25T14:38:50.010000"],["2024-07-25T14:38:51.010000"],["2024-07-25T14:38:52.010000"],["2024-07-25T14:38:53.010000"],["2024-07-25T14:38:54.010000"],["2024-07-25T14:38:55.010000"],["2024-07-25T14:38:56.010000"],["2024-07-25T14:38:57.010000"],["2024-07-25T14:38:58.010000"],["2024-07-25T14:38:59.010000"],["2024-07-25T14:39:00.010000"],["2024-07-25T14:39:01.010000"],["2024-07-25T14:39:02.010000"],["2024-07-25T14:39:03.010000"],["2024-07-25T14:39:04.010000"],["2024-07-25T14:39:05.010000"],["2024-07-25T14:39:06.010000"],["2024-07-25T14:39:07.010000"],["2024-07-25T14:39:08.010000"],["2024-07-25T14:39:09.010000"],["2024-07-25T14:39:10.010000"],["2024-07-25T14:39:11.010000"],["2024-07-25T14:39:12.010000"],["2024-07-25T14:39:13.010000"],["2024-07-25T14:39:14.010000"],["2024-07-25T14:39:15.010000"],["2024-07-25T14:39:16.010000"],["2024-07-25T14:39:17.010000"],["2024-07-25T14:39:18.010000"],["2024-07-25T14:39:19.010000"],["2024-07-25T14:39:20.010000"],["2024-07-25T14:39:21.010000"],["2024-07-25T14:39:22.010000"],["2024-07-25T14:39:23.010000"],["2024-07-25T14:39:24.010000"],["2024-07-25T14:39:25.010000"],["2024-07-25T14:39:26.010000"],["2024-07-25T14:39:27.010000"],["2024-07-25T14:39:28.010000"],["2024-07-25T14:39:29.010000"],["2024-07-25T14:39:30.010000"],["2024-07-25T14:39:31.010000"],["2024-07-25T14:39:32.010000"],["2024-07-25T14:39:33.010000"],["2024-07-25T14:39:34.010000"],["2024-07-25T14:39:35.010000"],["2024-07-25T14:39:36.010000"],["2024-07-25T14:39:37.010000"],["2024-07-25T14:39:38.010000"],["2024-07-25T14:39:39.010000"],["2024-07-25T14:39:40.010000"],["2024-07-25T14:39:41.010000"],["2024-07-25T14:39:42.010000"],["2024-07-25T14:39:43.010000"],["2024-07-25T14:39:44.010000"],["2024-07-25T14:39:45.010000"],["2024-07-25T14:39:46.010000"],["2024-07-25T14:39:47.010000"],["2024-07-25T14:39:48.010000"],["2024-07-25T14:39:49.010000"],["2024-07-25T14:39:50.010000"],["2024-07-25T14:39:51.010000"],["2024-07-25T14:39:52.010000"],["2024-07-25T14:39:53.010000"],["2024-07-25T14:39:54.010000"],["2024-07-25T14:39:55.010000"],["2024-07-25T14:39:56.010000"],["2024-07-25T14:39:57.010000"],["2024-07-25T14:39:58.010000"],["2024-07-25T14:39:59.010000"],["2024-07-25T14:40:00.010000"],["2024-07-25T14:40:01.010000"],["2024-07-25T14:40:02.010000"],["2024-07-25T14:40:03.010000"],["2024-07-25T14:40:04.010000"],["2024-07-25T14:40:05.010000"],["2024-07-25T14:40:06.010000"],["2024-07-25T14:40:07.010000"],["2024-07-25T14:40:08.010000"],["2024-07-25T14:40:09.010000"],["2024-07-25T14:40:10.010000"],["2024-07-25T14:40:11.010000"],["2024-07-25T14:40:12.010000"],["2024-07-25T14:40:13.010000"],["2024-07-25T14:40:14.010000"],["2024-07-25T14:40:15.010000"],["2024-07-25T14:40:16.010000"],["2024-07-25T14:40:17.010000"],["2024-07-25T14:40:18.010000"],["2024-07-25T14:40:19.010000"],["2024-07-25T14:40:20.010000"],["2024-07-25T14:40:21.010000"],["2024-07-25T14:40:22.010000"],["2024-07-25T14:40:23.010000"],["2024-07-25T14:40:24.010000"],["2024-07-25T14:40:25.010000"],["2024-07-25T14:40:26.010000"],["2024-07-25T14:40:27.010000"],["2024-07-25T14:40:28.010000"],["2024-07-25T14:40:29.010000"],["2024-07-25T14:40:30.010000"],["2024-07-25T14:40:31.010000"],["2024-07-25T14:40:32.010000"],["2024-07-25T14:40:33.010000"],["2024-07-25T14:40:34.010000"],["2024-07-25T14:40:35.010000"],["2024-07-25T14:40:36.010000"],["2024-07-25T14:40:37.010000"],["2024-07-25T14:40:38.010000"],["2024-07-25T14:40:39.010000"],["2024-07-25T14:40:40.010000"],["2024-07-25T14:40:41.010000"],["2024-07-25T14:40:42.010000"],["2024-07-25T14:40:43.010000"],["2024-07-25T14:40:44.010000"],["2024-07-25T14:40:45.010000"],["2024-07-25T14:40:46.010000"],["2024-07-25T14:40:47.010000"],["2024-07-25T14:40:48.010000"],["2024-07-25T14:40:49.010000"],["2024-07-25T14:40:50.010000"],["2024-07-25T14:40:51.010000"],["2024-07-25T14:40:52.010000"],["2024-07-25T14:40:53.010000"],["2024-07-25T14:40:54.010000"],["2024-07-25T14:40:55.010000"],["2024-07-25T14:40:56.010000"],["2024-07-25T14:40:57.010000"],["2024-07-25T14:40:58.010000"],["2024-07-25T14:40:59.010000"],["2024-07-25T14:41:00.010000"],["2024-07-25T14:41:01.010000"],["2024-07-25T14:41:02.010000"],["2024-07-25T14:41:03.010000"],["2024-07-25T14:41:04.010000"],["2024-07-25T14:41:05.010000"],["2024-07-25T14:41:06.010000"],["2024-07-25T14:41:07.010000"],["2024-07-25T14:41:08.010000"],["2024-07-25T14:41:09.010000"],["2024-07-25T14:41:10.010000"],["2024-07-25T14:41:11.010000"],["2024-07-25T14:41:12.010000"],["2024-07-25T14:41:13.010000"],["2024-07-25T14:41:14.010000"],["2024-07-25T14:41:15.010000"],["2024-07-25T14:41:16.010000"],["2024-07-25T14:41:17.010000"],["2024-07-25T14:41:18.010000"],["2024-07-25T14:41:19.010000"],["2024-07-25T14:41:20.010000"],["2024-07-25T14:41:21.010000"],["2024-07-25T14:41:22.010000"],["2024-07-25T14:41:23.010000"],["2024-07-25T14:41:24.010000"],["2024-07-25T14:41:25.010000"],["2024-07-25T14:41:26.010000"],["2024-07-25T14:41:27.010000"],["2024-07-25T14:41:28.010000"],["2024-07-25T14:41:29.010000"],["2024-07-25T14:41:30.010000"],["2024-07-25T14:41:31.010000"],["2024-07-25T14:41:32.010000"],["2024-07-25T14:41:33.010000"],["2024-07-25T14:41:34.010000"],["2024-07-25T14:41:35.010000"],["2024-07-25T14:41:36.010000"],["2024-07-25T14:41:37.010000"],["2024-07-25T14:41:38.010000"],["2024-07-25T14:41:39.010000"],["2024-07-25T14:41:40.010000"],["2024-07-25T14:41:41.010000"],["2024-07-25T14:41:42.010000"],["2024-07-25T14:41:43.010000"],["2024-07-25T14:41:44.010000"],["2024-07-25T14:41:45.010000"],["2024-07-25T14:41:46.010000"],["2024-07-25T14:41:47.010000"],["2024-07-25T14:41:48.010000"],["2024-07-25T14:41:49.010000"],["2024-07-25T14:41:50.010000"],["2024-07-25T14:41:51.010000"],["2024-07-25T14:41:52.010000"],["2024-07-25T14:41:53.010000"],["2024-07-25T14:41:54.010000"],["2024-07-25T14:41:55.010000"],["2024-07-25T14:41:56.010000"],["2024-07-25T14:41:57.010000"],["2024-07-25T14:41:58.010000"],["2024-07-25T14:41:59.010000"],["2024-07-25T14:42:00.010000"],["2024-07-25T14:42:01.010000"],["2024-07-25T14:42:02.010000"],["2024-07-25T14:42:03.010000"],["2024-07-25T14:42:04.010000"],["2024-07-25T14:42:05.010000"],["2024-07-25T14:42:06.010000"],["2024-07-25T14:42:07.010000"],["2024-07-25T14:42:08.010000"],["2024-07-25T14:42:09.010000"],["2024-07-25T14:42:10.010000"],["2024-07-25T14:42:11.010000"],["2024-07-25T14:42:12.010000"],["2024-07-25T14:42:13.010000"],["2024-07-25T14:42:14.010000"],["2024-07-25T14:42:15.010000"],["2024-07-25T14:42:16.010000"],["2024-07-25T14:42:17.010000"],["2024-07-25T14:42:18.010000"],["2024-07-25T14:42:19.010000"],["2024-07-25T14:42:20.010000"],["2024-07-25T14:42:21.010000"],["2024-07-25T14:42:22.010000"],["2024-07-25T14:42:23.010000"],["2024-07-25T14:42:24.010000"],["2024-07-25T14:42:25.010000"],["2024-07-25T14:42:26.010000"],["2024-07-25T14:42:27.010000"],["2024-07-25T14:42:28.010000"],["2024-07-25T14:42:29.010000"],["2024-07-25T14:42:30.010000"],["2024-07-25T14:42:31.010000"],["2024-07-25T14:42:32.010000"],["2024-07-25T14:42:33.010000"],["2024-07-25T14:42:34.010000"],["2024-07-25T14:42:35.010000"],["2024-07-25T14:42:36.010000"],["2024-07-25T14:42:37.010000"],["2024-07-25T14:42:38.010000"],["2024-07-25T14:42:39.010000"],["2024-07-25T14:42:40.010000"],["2024-07-25T14:42:41.010000"],["2024-07-25T14:42:42.010000"],["2024-07-25T14:42:43.010000"],["2024-07-25T14:42:44.010000"],["2024-07-25T14:42:45.010000"],["2024-07-25T14:42:46.010000"],["2024-07-25T14:42:47.010000"],["2024-07-25T14:42:48.010000"],["2024-07-25T14:42:49.010000"],["2024-07-25T14:42:50.010000"],["2024-07-25T14:42:51.010000"],["2024-07-25T14:42:52.010000"],["2024-07-25T14:42:53.010000"],["2024-07-25T14:42:54.010000"],["2024-07-25T14:42:55.010000"],["2024-07-25T14:42:56.010000"],["2024-07-25T14:42:57.010000"],["2024-07-25T14:42:58.010000"],["2024-07-25T14:42:59.010000"],["2024-07-25T14:43:00.010000"],["2024-07-25T14:43:01.010000"],["2024-07-25T14:43:02.010000"],["2024-07-25T14:43:03.010000"],["2024-07-25T14:43:04.010000"],["2024-07-25T14:43:05.010000"],["2024-07-25T14:43:06.010000"],["2024-07-25T14:43:07.010000"],["2024-07-25T14:43:08.010000"],["2024-07-25T14:43:09.010000"],["2024-07-25T14:43:10.010000"],["2024-07-25T14:43:11.010000"],["2024-07-25T14:43:12.010000"],["2024-07-25T14:43:13.010000"],["2024-07-25T14:43:14.010000"],["2024-07-25T14:43:15.010000"],["2024-07-25T14:43:16.010000"],["2024-07-25T14:43:17.010000"],["2024-07-25T14:43:18.010000"],["2024-07-25T14:43:19.010000"],["2024-07-25T14:43:20.010000"],["2024-07-25T14:43:21.010000"],["2024-07-25T14:43:22.010000"],["2024-07-25T14:43:23.010000"],["2024-07-25T14:43:24.010000"],["2024-07-25T14:43:25.010000"],["2024-07-25T14:43:26.010000"],["2024-07-25T14:43:27.010000"],["2024-07-25T14:43:28.010000"],["2024-07-25T14:43:29.010000"],["2024-07-25T14:43:30.010000"],["2024-07-25T14:43:31.010000"],["2024-07-25T14:43:32.010000"],["2024-07-25T14:43:33.010000"],["2024-07-25T14:43:34.010000"],["2024-07-25T14:43:35.010000"],["2024-07-25T14:43:36.010000"],["2024-07-25T14:43:37.010000"],["2024-07-25T14:43:38.010000"],["2024-07-25T14:43:39.010000"],["2024-07-25T14:43:40.010000"],["2024-07-25T14:43:41.010000"],["2024-07-25T14:43:42.010000"],["2024-07-25T14:43:43.010000"],["2024-07-25T14:43:44.010000"],["2024-07-25T14:43:45.010000"],["2024-07-25T14:43:46.010000"],["2024-07-25T14:43:47.010000"],["2024-07-25T14:43:48.010000"],["2024-07-25T14:43:49.010000"],["2024-07-25T14:43:50.010000"],["2024-07-25T14:43:51.010000"],["2024-07-25T14:43:52.010000"],["2024-07-25T14:43:53.010000"],["2024-07-25T14:43:54.010000"],["2024-07-25T14:43:55.010000"],["2024-07-25T14:43:56.010000"],["2024-07-25T14:43:57.010000"],["2024-07-25T14:43:58.010000"],["2024-07-25T14:43:59.010000"],["2024-07-25T14:44:00.010000"],["2024-07-25T14:44:01.010000"],["2024-07-25T14:44:02.010000"],["2024-07-25T14:44:03.010000"],["2024-07-25T14:44:04.010000"],["2024-07-25T14:44:05.010000"],["2024-07-25T14:44:06.010000"],["2024-07-25T14:44:07.010000"],["2024-07-25T14:44:08.010000"],["2024-07-25T14:44:09.010000"],["2024-07-25T14:44:10.010000"],["2024-07-25T14:44:11.010000"],["2024-07-25T14:44:12.010000"],["2024-07-25T14:44:13.010000"],["2024-07-25T14:44:14.010000"],["2024-07-25T14:44:15.010000"],["2024-07-25T14:44:16.010000"],["2024-07-25T14:44:17.010000"],["2024-07-25T14:44:18.010000"],["2024-07-25T14:44:19.010000"],["2024-07-25T14:44:20.010000"],["2024-07-25T14:44:21.010000"],["2024-07-25T14:44:22.010000"],["2024-07-25T14:44:23.010000"],["2024-07-25T14:44:24.010000"],["2024-07-25T14:44:25.010000"],["2024-07-25T14:44:26.010000"],["2024-07-25T14:44:27.010000"],["2024-07-25T14:44:28.010000"],["2024-07-25T14:44:29.010000"],["2024-07-25T14:44:30.010000"],["2024-07-25T14:44:31.010000"],["2024-07-25T14:44:32.010000"],["2024-07-25T14:44:33.010000"],["2024-07-25T14:44:34.010000"],["2024-07-25T14:44:35.010000"],["2024-07-25T14:44:36.010000"],["2024-07-25T14:44:37.010000"],["2024-07-25T14:44:38.010000"],["2024-07-25T14:44:39.010000"],["2024-07-25T14:44:40.010000"],["2024-07-25T14:44:41.010000"],["2024-07-25T14:44:42.010000"],["2024-07-25T14:44:43.010000"],["2024-07-25T14:44:44.010000"],["2024-07-25T14:44:45.010000"],["2024-07-25T14:44:46.010000"],["2024-07-25T14:44:47.010000"],["2024-07-25T14:44:48.010000"],["2024-07-25T14:44:49.010000"],["2024-07-25T14:44:50.010000"],["2024-07-25T14:44:51.010000"],["2024-07-25T14:44:52.010000"],["2024-07-25T14:44:53.010000"],["2024-07-25T14:44:54.010000"],["2024-07-25T14:44:55.010000"],["2024-07-25T14:44:56.010000"],["2024-07-25T14:44:57.010000"],["2024-07-25T14:44:58.010000"],["2024-07-25T14:44:59.010000"],["2024-07-25T14:45:00.010000"],["2024-07-25T14:45:01.010000"],["2024-07-25T14:45:02.010000"],["2024-07-25T14:45:03.010000"],["2024-07-25T14:45:04.010000"],["2024-07-25T14:45:05.010000"],["2024-07-25T14:45:06.010000"],["2024-07-25T14:45:07.010000"],["2024-07-25T14:45:08.010000"],["2024-07-25T14:45:09.010000"],["2024-07-25T14:45:10.010000"],["2024-07-25T14:45:11.010000"],["2024-07-25T14:45:12.010000"],["2024-07-25T14:45:13.010000"],["2024-07-25T14:45:14.010000"],["2024-07-25T14:45:15.010000"],["2024-07-25T14:45:16.010000"],["2024-07-25T14:45:17.010000"],["2024-07-25T14:45:18.010000"],["2024-07-25T14:45:19.010000"],["2024-07-25T14:45:20.010000"],["2024-07-25T14:45:21.010000"],["2024-07-25T14:45:22.010000"],["2024-07-25T14:45:23.010000"],["2024-07-25T14:45:24.010000"],["2024-07-25T14:45:25.010000"],["2024-07-25T14:45:26.010000"],["2024-07-25T14:45:27.010000"],["2024-07-25T14:45:28.010000"],["2024-07-25T14:45:29.010000"],["2024-07-25T14:45:30.010000"],["2024-07-25T14:45:31.010000"],["2024-07-25T14:45:32.010000"],["2024-07-25T14:45:33.010000"],["2024-07-25T14:45:34.010000"],["2024-07-25T14:45:35.010000"],["2024-07-25T14:45:36.010000"],["2024-07-25T14:45:37.010000"],["2024-07-25T14:45:38.010000"],["2024-07-25T14:45:39.010000"],["2024-07-25T14:45:40.010000"],["2024-07-25T14:45:41.010000"],["2024-07-25T14:45:42.010000"],["2024-07-25T14:45:43.010000"],["2024-07-25T14:45:44.010000"],["2024-07-25T14:45:45.010000"],["2024-07-25T14:45:46.010000"],["2024-07-25T14:45:47.010000"],["2024-07-25T14:45:48.010000"],["2024-07-25T14:45:49.010000"],["2024-07-25T14:45:50.010000"],["2024-07-25T14:45:51.010000"],["2024-07-25T14:45:52.010000"],["2024-07-25T14:45:53.010000"],["2024-07-25T14:45:54.010000"],["2024-07-25T14:45:55.010000"],["2024-07-25T14:45:56.010000"],["2024-07-25T14:45:57.010000"],["2024-07-25T14:45:58.010000"],["2024-07-25T14:45:59.010000"],["2024-07-25T14:46:00.010000"],["2024-07-25T14:46:01.010000"],["2024-07-25T14:46:02.010000"],["2024-07-25T14:46:03.010000"],["2024-07-25T14:46:04.010000"],["2024-07-25T14:46:05.010000"],["2024-07-25T14:46:06.010000"],["2024-07-25T14:46:07.010000"],["2024-07-25T14:46:08.010000"],["2024-07-25T14:46:09.010000"],["2024-07-25T14:46:10.010000"],["2024-07-25T14:46:11.010000"],["2024-07-25T14:46:12.010000"],["2024-07-25T14:46:13.010000"],["2024-07-25T14:46:14.010000"],["2024-07-25T14:46:15.010000"],["2024-07-25T14:46:16.010000"],["2024-07-25T14:46:17.010000"],["2024-07-25T14:46:18.010000"],["2024-07-25T14:46:19.010000"],["2024-07-25T14:46:20.010000"],["2024-07-25T14:46:21.010000"],["2024-07-25T14:46:22.010000"],["2024-07-25T14:46:23.010000"],["2024-07-25T14:46:24.010000"],["2024-07-25T14:46:25.010000"],["2024-07-25T14:46:26.010000"],["2024-07-25T14:46:27.010000"],["2024-07-25T14:46:28.010000"],["2024-07-25T14:46:29.010000"],["2024-07-25T14:46:30.010000"],["2024-07-25T14:46:31.010000"],["2024-07-25T14:46:32.010000"],["2024-07-25T14:46:33.010000"],["2024-07-25T14:46:34.010000"],["2024-07-25T14:46:35.010000"],["2024-07-25T14:46:36.010000"],["2024-07-25T14:46:37.010000"],["2024-07-25T14:46:38.010000"],["2024-07-25T14:46:39.010000"],["2024-07-25T14:46:40.010000"],["2024-07-25T14:46:41.010000"],["2024-07-25T14:46:42.010000"],["2024-07-25T14:46:43.010000"],["2024-07-25T14:46:44.010000"],["2024-07-25T14:46:45.010000"],["2024-07-25T14:46:46.010000"],["2024-07-25T14:46:47.010000"],["2024-07-25T14:46:48.010000"],["2024-07-25T14:46:49.010000"],["2024-07-25T14:46:50.010000"],["2024-07-25T14:46:51.010000"],["2024-07-25T14:46:52.010000"],["2024-07-25T14:46:53.010000"],["2024-07-25T14:46:54.010000"],["2024-07-25T14:46:55.010000"],["2024-07-25T14:46:56.010000"],["2024-07-25T14:46:57.010000"],["2024-07-25T14:46:58.010000"],["2024-07-25T14:46:59.010000"],["2024-07-25T14:47:00.010000"],["2024-07-25T14:47:01.010000"],["2024-07-25T14:47:02.010000"],["2024-07-25T14:47:03.010000"],["2024-07-25T14:47:04.010000"],["2024-07-25T14:47:05.010000"],["2024-07-25T14:47:06.010000"],["2024-07-25T14:47:07.010000"],["2024-07-25T14:47:08.010000"],["2024-07-25T14:47:09.010000"],["2024-07-25T14:47:10.010000"],["2024-07-25T14:47:11.010000"],["2024-07-25T14:47:12.010000"],["2024-07-25T14:47:13.010000"],["2024-07-25T14:47:14.010000"],["2024-07-25T14:47:15.010000"],["2024-07-25T14:47:16.010000"],["2024-07-25T14:47:17.010000"],["2024-07-25T14:47:18.010000"],["2024-07-25T14:47:19.010000"],["2024-07-25T14:47:20.010000"],["2024-07-25T14:47:21.010000"],["2024-07-25T14:47:22.010000"],["2024-07-25T14:47:23.010000"],["2024-07-25T14:47:24.010000"],["2024-07-25T14:47:25.010000"],["2024-07-25T14:47:26.010000"],["2024-07-25T14:47:27.010000"],["2024-07-25T14:47:28.010000"],["2024-07-25T14:47:29.010000"],["2024-07-25T14:47:30.010000"],["2024-07-25T14:47:31.010000"],["2024-07-25T14:47:32.010000"],["2024-07-25T14:47:33.010000"],["2024-07-25T14:47:34.010000"],["2024-07-25T14:47:35.010000"],["2024-07-25T14:47:36.010000"],["2024-07-25T14:47:37.010000"],["2024-07-25T14:47:38.010000"],["2024-07-25T14:47:39.010000"],["2024-07-25T14:47:40.010000"],["2024-07-25T14:47:41.010000"],["2024-07-25T14:47:42.010000"],["2024-07-25T14:47:43.010000"],["2024-07-25T14:47:44.010000"],["2024-07-25T14:47:45.010000"],["2024-07-25T14:47:46.010000"],["2024-07-25T14:47:47.010000"],["2024-07-25T14:47:48.010000"],["2024-07-25T14:47:49.010000"],["2024-07-25T14:47:50.010000"],["2024-07-25T14:47:51.010000"],["2024-07-25T14:47:52.010000"],["2024-07-25T14:47:53.010000"],["2024-07-25T14:47:54.010000"],["2024-07-25T14:47:55.010000"],["2024-07-25T14:47:56.010000"],["2024-07-25T14:47:57.010000"],["2024-07-25T14:47:58.010000"],["2024-07-25T14:47:59.010000"],["2024-07-25T14:48:00.010000"],["2024-07-25T14:48:01.010000"],["2024-07-25T14:48:02.010000"],["2024-07-25T14:48:03.010000"],["2024-07-25T14:48:04.010000"],["2024-07-25T14:48:05.010000"],["2024-07-25T14:48:06.010000"],["2024-07-25T14:48:07.010000"],["2024-07-25T14:48:08.010000"],["2024-07-25T14:48:09.010000"],["2024-07-25T14:48:10.010000"],["2024-07-25T14:48:11.010000"],["2024-07-25T14:48:12.010000"],["2024-07-25T14:48:13.010000"],["2024-07-25T14:48:14.010000"],["2024-07-25T14:48:15.010000"],["2024-07-25T14:48:16.010000"],["2024-07-25T14:48:17.010000"],["2024-07-25T14:48:18.010000"],["2024-07-25T14:48:19.010000"],["2024-07-25T14:48:20.010000"],["2024-07-25T14:48:21.010000"],["2024-07-25T14:48:22.010000"],["2024-07-25T14:48:23.010000"],["2024-07-25T14:48:24.010000"],["2024-07-25T14:48:25.010000"],["2024-07-25T14:48:26.010000"],["2024-07-25T14:48:27.010000"],["2024-07-25T14:48:28.010000"],["2024-07-25T14:48:29.010000"],["2024-07-25T14:48:30.010000"],["2024-07-25T14:48:31.010000"],["2024-07-25T14:48:32.010000"],["2024-07-25T14:48:33.010000"],["2024-07-25T14:48:34.010000"],["2024-07-25T14:48:35.010000"],["2024-07-25T14:48:36.010000"],["2024-07-25T14:48:37.010000"],["2024-07-25T14:48:38.010000"],["2024-07-25T14:48:39.010000"],["2024-07-25T14:48:40.010000"],["2024-07-25T14:48:41.010000"],["2024-07-25T14:48:42.010000"],["2024-07-25T14:48:43.010000"],["2024-07-25T14:48:44.010000"],["2024-07-25T14:48:45.010000"],["2024-07-25T14:48:46.010000"],["2024-07-25T14:48:47.010000"],["2024-07-25T14:48:48.010000"],["2024-07-25T14:48:49.010000"],["2024-07-25T14:48:50.010000"],["2024-07-25T14:48:51.010000"],["2024-07-25T14:48:52.010000"],["2024-07-25T14:48:53.010000"],["2024-07-25T14:48:54.010000"],["2024-07-25T14:48:55.010000"],["2024-07-25T14:48:56.010000"],["2024-07-25T14:48:57.010000"],["2024-07-25T14:48:58.010000"],["2024-07-25T14:48:59.010000"],["2024-07-25T14:49:00.010000"],["2024-07-25T14:49:01.010000"],["2024-07-25T14:49:02.010000"],["2024-07-25T14:49:03.010000"],["2024-07-25T14:49:04.010000"],["2024-07-25T14:49:05.010000"],["2024-07-25T14:49:06.010000"],["2024-07-25T14:49:07.010000"],["2024-07-25T14:49:08.010000"],["2024-07-25T14:49:09.010000"],["2024-07-25T14:49:10.010000"],["2024-07-25T14:49:11.010000"],["2024-07-25T14:49:12.010000"],["2024-07-25T14:49:13.010000"],["2024-07-25T14:49:14.010000"],["2024-07-25T14:49:15.010000"],["2024-07-25T14:49:16.010000"],["2024-07-25T14:49:17.010000"],["2024-07-25T14:49:18.010000"],["2024-07-25T14:49:19.010000"],["2024-07-25T14:49:20.010000"],["2024-07-25T14:49:21.010000"],["2024-07-25T14:49:22.010000"],["2024-07-25T14:49:23.010000"],["2024-07-25T14:49:24.010000"],["2024-07-25T14:49:25.010000"],["2024-07-25T14:49:26.010000"],["2024-07-25T14:49:27.010000"],["2024-07-25T14:49:28.010000"],["2024-07-25T14:49:29.010000"],["2024-07-25T14:49:30.010000"],["2024-07-25T14:49:31.010000"],["2024-07-25T14:49:32.010000"],["2024-07-25T14:49:33.010000"],["2024-07-25T14:49:34.010000"],["2024-07-25T14:49:35.010000"],["2024-07-25T14:49:36.010000"],["2024-07-25T14:49:37.010000"],["2024-07-25T14:49:38.010000"],["2024-07-25T14:49:39.010000"],["2024-07-25T14:49:40.010000"],["2024-07-25T14:49:41.010000"],["2024-07-25T14:49:42.010000"],["2024-07-25T14:49:43.010000"],["2024-07-25T14:49:44.010000"],["2024-07-25T14:49:45.010000"],["2024-07-25T14:49:46.010000"],["2024-07-25T14:49:47.010000"],["2024-07-25T14:49:48.010000"],["2024-07-25T14:49:49.010000"],["2024-07-25T14:49:50.010000"],["2024-07-25T14:49:51.010000"],["2024-07-25T14:49:52.010000"],["2024-07-25T14:49:53.010000"],["2024-07-25T14:49:54.010000"],["2024-07-25T14:49:55.010000"],["2024-07-25T14:49:56.010000"],["2024-07-25T14:49:57.010000"],["2024-07-25T14:49:58.010000"],["2024-07-25T14:49:59.010000"],["2024-07-25T14:50:00.010000"],["2024-07-25T14:50:01.010000"],["2024-07-25T14:50:02.010000"],["2024-07-25T14:50:03.010000"],["2024-07-25T14:50:04.010000"],["2024-07-25T14:50:05.010000"],["2024-07-25T14:50:06.010000"],["2024-07-25T14:50:07.010000"],["2024-07-25T14:50:08.010000"],["2024-07-25T14:50:09.010000"],["2024-07-25T14:50:10.010000"],["2024-07-25T14:50:11.010000"],["2024-07-25T14:50:12.010000"],["2024-07-25T14:50:13.010000"],["2024-07-25T14:50:14.010000"],["2024-07-25T14:50:15.010000"],["2024-07-25T14:50:16.010000"],["2024-07-25T14:50:17.010000"],["2024-07-25T14:50:18.010000"],["2024-07-25T14:50:19.010000"],["2024-07-25T14:50:20.010000"],["2024-07-25T14:50:21.010000"],["2024-07-25T14:50:22.010000"],["2024-07-25T14:50:23.010000"],["2024-07-25T14:50:24.010000"],["2024-07-25T14:50:25.010000"],["2024-07-25T14:50:26.010000"],["2024-07-25T14:50:27.010000"],["2024-07-25T14:50:28.010000"],["2024-07-25T14:50:29.010000"],["2024-07-25T14:50:30.010000"],["2024-07-25T14:50:31.010000"],["2024-07-25T14:50:32.010000"],["2024-07-25T14:50:33.010000"],["2024-07-25T14:50:34.010000"],["2024-07-25T14:50:35.010000"],["2024-07-25T14:50:36.010000"],["2024-07-25T14:50:37.010000"],["2024-07-25T14:50:38.010000"],["2024-07-25T14:50:39.010000"],["2024-07-25T14:50:40.010000"],["2024-07-25T14:50:41.010000"],["2024-07-25T14:50:42.010000"],["2024-07-25T14:50:43.010000"],["2024-07-25T14:50:44.010000"],["2024-07-25T14:50:45.010000"],["2024-07-25T14:50:46.010000"],["2024-07-25T14:50:47.010000"],["2024-07-25T14:50:48.010000"],["2024-07-25T14:50:49.010000"],["2024-07-25T14:50:50.010000"],["2024-07-25T14:50:51.010000"],["2024-07-25T14:50:52.010000"],["2024-07-25T14:50:53.010000"],["2024-07-25T14:50:54.010000"],["2024-07-25T14:50:55.010000"],["2024-07-25T14:50:56.010000"],["2024-07-25T14:50:57.010000"],["2024-07-25T14:50:58.010000"],["2024-07-25T14:50:59.010000"],["2024-07-25T14:51:00.010000"],["2024-07-25T14:51:01.010000"],["2024-07-25T14:51:02.010000"],["2024-07-25T14:51:03.010000"],["2024-07-25T14:51:04.010000"],["2024-07-25T14:51:05.010000"],["2024-07-25T14:51:06.010000"],["2024-07-25T14:51:07.010000"],["2024-07-25T14:51:08.010000"],["2024-07-25T14:51:09.010000"],["2024-07-25T14:51:10.010000"],["2024-07-25T14:51:11.010000"],["2024-07-25T14:51:12.010000"],["2024-07-25T14:51:13.010000"],["2024-07-25T14:51:14.010000"],["2024-07-25T14:51:15.010000"],["2024-07-25T14:51:16.010000"],["2024-07-25T14:51:17.010000"],["2024-07-25T14:51:18.010000"],["2024-07-25T14:51:19.010000"],["2024-07-25T14:51:20.010000"],["2024-07-25T14:51:21.010000"],["2024-07-25T14:51:22.010000"],["2024-07-25T14:51:23.010000"],["2024-07-25T14:51:24.010000"],["2024-07-25T14:51:25.010000"],["2024-07-25T14:51:26.010000"],["2024-07-25T14:51:27.010000"],["2024-07-25T14:51:28.010000"],["2024-07-25T14:51:29.010000"],["2024-07-25T14:51:30.010000"],["2024-07-25T14:51:31.010000"],["2024-07-25T14:51:32.010000"],["2024-07-25T14:51:33.010000"],["2024-07-25T14:51:34.010000"],["2024-07-25T14:51:35.010000"],["2024-07-25T14:51:36.010000"],["2024-07-25T14:51:37.010000"],["2024-07-25T14:51:38.010000"],["2024-07-25T14:51:39.010000"],["2024-07-25T14:51:40.010000"],["2024-07-25T14:51:41.010000"],["2024-07-25T14:51:42.010000"],["2024-07-25T14:51:43.010000"],["2024-07-25T14:51:44.010000"],["2024-07-25T14:51:45.010000"],["2024-07-25T14:51:46.010000"],["2024-07-25T14:51:47.010000"],["2024-07-25T14:51:48.010000"],["2024-07-25T14:51:49.010000"],["2024-07-25T14:51:50.010000"],["2024-07-25T14:51:51.010000"],["2024-07-25T14:51:52.010000"],["2024-07-25T14:51:53.010000"],["2024-07-25T14:51:54.010000"],["2024-07-25T14:51:55.010000"],["2024-07-25T14:51:56.010000"],["2024-07-25T14:51:57.010000"],["2024-07-25T14:51:58.010000"],["2024-07-25T14:51:59.010000"],["2024-07-25T14:52:00.010000"],["2024-07-25T14:52:01.010000"],["2024-07-25T14:52:02.010000"],["2024-07-25T14:52:03.010000"],["2024-07-25T14:52:04.010000"],["2024-07-25T14:52:05.010000"],["2024-07-25T14:52:06.010000"],["2024-07-25T14:52:07.010000"],["2024-07-25T14:52:08.010000"],["2024-07-25T14:52:09.010000"],["2024-07-25T14:52:10.010000"],["2024-07-25T14:52:11.010000"],["2024-07-25T14:52:12.010000"],["2024-07-25T14:52:13.010000"],["2024-07-25T14:52:14.010000"],["2024-07-25T14:52:15.010000"],["2024-07-25T14:52:16.010000"],["2024-07-25T14:52:17.010000"],["2024-07-25T14:52:18.010000"],["2024-07-25T14:52:19.010000"],["2024-07-25T14:52:20.010000"],["2024-07-25T14:52:21.010000"],["2024-07-25T14:52:22.010000"],["2024-07-25T14:52:23.010000"],["2024-07-25T14:52:24.010000"],["2024-07-25T14:52:25.010000"],["2024-07-25T14:52:26.010000"],["2024-07-25T14:52:27.010000"],["2024-07-25T14:52:28.010000"],["2024-07-25T14:52:29.010000"],["2024-07-25T14:52:30.010000"],["2024-07-25T14:52:31.010000"],["2024-07-25T14:52:32.010000"],["2024-07-25T14:52:33.010000"],["2024-07-25T14:52:34.010000"],["2024-07-25T14:52:35.010000"],["2024-07-25T14:52:36.010000"],["2024-07-25T14:52:37.010000"],["2024-07-25T14:52:38.010000"],["2024-07-25T14:52:39.010000"],["2024-07-25T14:52:40.010000"],["2024-07-25T14:52:41.010000"],["2024-07-25T14:52:42.010000"],["2024-07-25T14:52:43.010000"],["2024-07-25T14:52:44.010000"],["2024-07-25T14:52:45.010000"],["2024-07-25T14:52:46.010000"],["2024-07-25T14:52:47.010000"],["2024-07-25T14:52:48.010000"],["2024-07-25T14:52:49.010000"],["2024-07-25T14:52:50.010000"],["2024-07-25T14:52:51.010000"],["2024-07-25T14:52:52.010000"],["2024-07-25T14:52:53.010000"],["2024-07-25T14:52:54.010000"],["2024-07-25T14:52:55.010000"],["2024-07-25T14:52:56.010000"],["2024-07-25T14:52:57.010000"],["2024-07-25T14:52:58.010000"],["2024-07-25T14:52:59.010000"],["2024-07-25T14:53:00.010000"],["2024-07-25T14:53:01.010000"],["2024-07-25T14:53:02.010000"],["2024-07-25T14:53:03.010000"],["2024-07-25T14:53:04.010000"],["2024-07-25T14:53:05.010000"],["2024-07-25T14:53:06.010000"],["2024-07-25T14:53:07.010000"],["2024-07-25T14:53:08.010000"],["2024-07-25T14:53:09.010000"],["2024-07-25T14:53:10.010000"],["2024-07-25T14:53:11.010000"],["2024-07-25T14:53:12.010000"],["2024-07-25T14:53:13.010000"],["2024-07-25T14:53:14.010000"],["2024-07-25T14:53:15.010000"],["2024-07-25T14:53:16.010000"],["2024-07-25T14:53:17.010000"],["2024-07-25T14:53:18.010000"],["2024-07-25T14:53:19.010000"],["2024-07-25T14:53:20.010000"],["2024-07-25T14:53:21.010000"],["2024-07-25T14:53:22.010000"],["2024-07-25T14:53:23.010000"],["2024-07-25T14:53:24.010000"],["2024-07-25T14:53:25.010000"],["2024-07-25T14:53:26.010000"],["2024-07-25T14:53:27.010000"],["2024-07-25T14:53:28.010000"],["2024-07-25T14:53:29.010000"],["2024-07-25T14:53:30.010000"],["2024-07-25T14:53:31.010000"],["2024-07-25T14:53:32.010000"],["2024-07-25T14:53:33.010000"],["2024-07-25T14:53:34.010000"],["2024-07-25T14:53:35.010000"],["2024-07-25T14:53:36.010000"],["2024-07-25T14:53:37.010000"],["2024-07-25T14:53:38.010000"],["2024-07-25T14:53:39.010000"],["2024-07-25T14:53:40.010000"],["2024-07-25T14:53:41.010000"],["2024-07-25T14:53:42.010000"],["2024-07-25T14:53:43.010000"],["2024-07-25T14:53:44.010000"],["2024-07-25T14:53:45.010000"],["2024-07-25T14:53:46.010000"],["2024-07-25T14:53:47.010000"],["2024-07-25T14:53:48.010000"],["2024-07-25T14:53:49.010000"],["2024-07-25T14:53:50.010000"],["2024-07-25T14:53:51.010000"],["2024-07-25T14:53:52.010000"],["2024-07-25T14:53:53.010000"],["2024-07-25T14:53:54.010000"],["2024-07-25T14:53:55.010000"],["2024-07-25T14:53:56.010000"],["2024-07-25T14:53:57.010000"],["2024-07-25T14:53:58.010000"],["2024-07-25T14:53:59.010000"],["2024-07-25T14:54:00.010000"],["2024-07-25T14:54:01.010000"],["2024-07-25T14:54:02.010000"],["2024-07-25T14:54:03.010000"],["2024-07-25T14:54:04.010000"],["2024-07-25T14:54:05.010000"],["2024-07-25T14:54:06.010000"],["2024-07-25T14:54:07.010000"],["2024-07-25T14:54:08.010000"],["2024-07-25T14:54:09.010000"],["2024-07-25T14:54:10.010000"],["2024-07-25T14:54:11.010000"],["2024-07-25T14:54:12.010000"],["2024-07-25T14:54:13.010000"],["2024-07-25T14:54:14.010000"],["2024-07-25T14:54:15.010000"],["2024-07-25T14:54:16.010000"],["2024-07-25T14:54:17.010000"],["2024-07-25T14:54:18.010000"],["2024-07-25T14:54:19.010000"],["2024-07-25T14:54:20.010000"],["2024-07-25T14:54:21.010000"],["2024-07-25T14:54:22.010000"],["2024-07-25T14:54:23.010000"],["2024-07-25T14:54:24.010000"],["2024-07-25T14:54:25.010000"],["2024-07-25T14:54:26.010000"],["2024-07-25T14:54:27.010000"],["2024-07-25T14:54:28.010000"],["2024-07-25T14:54:29.010000"],["2024-07-25T14:54:30.010000"],["2024-07-25T14:54:31.010000"],["2024-07-25T14:54:32.010000"],["2024-07-25T14:54:33.010000"],["2024-07-25T14:54:34.010000"],["2024-07-25T14:54:35.010000"],["2024-07-25T14:54:36.010000"],["2024-07-25T14:54:37.010000"],["2024-07-25T14:54:38.010000"],["2024-07-25T14:54:39.010000"],["2024-07-25T14:54:40.010000"],["2024-07-25T14:54:41.010000"],["2024-07-25T14:54:42.010000"],["2024-07-25T14:54:43.010000"],["2024-07-25T14:54:44.010000"],["2024-07-25T14:54:45.010000"],["2024-07-25T14:54:46.010000"],["2024-07-25T14:54:47.010000"],["2024-07-25T14:54:48.010000"],["2024-07-25T14:54:49.010000"],["2024-07-25T14:54:50.010000"],["2024-07-25T14:54:51.010000"],["2024-07-25T14:54:52.010000"],["2024-07-25T14:54:53.010000"],["2024-07-25T14:54:54.010000"],["2024-07-25T14:54:55.010000"],["2024-07-25T14:54:56.010000"],["2024-07-25T14:54:57.010000"],["2024-07-25T14:54:58.010000"],["2024-07-25T14:54:59.010000"],["2024-07-25T14:55:00.010000"],["2024-07-25T14:55:01.010000"],["2024-07-25T14:55:02.010000"],["2024-07-25T14:55:03.010000"],["2024-07-25T14:55:04.010000"],["2024-07-25T14:55:05.010000"],["2024-07-25T14:55:06.010000"],["2024-07-25T14:55:07.010000"],["2024-07-25T14:55:08.010000"],["2024-07-25T14:55:09.010000"],["2024-07-25T14:55:10.010000"],["2024-07-25T14:55:11.010000"],["2024-07-25T14:55:12.010000"],["2024-07-25T14:55:13.010000"],["2024-07-25T14:55:14.010000"],["2024-07-25T14:55:15.010000"],["2024-07-25T14:55:16.010000"],["2024-07-25T14:55:17.010000"],["2024-07-25T14:55:18.010000"],["2024-07-25T14:55:19.010000"],["2024-07-25T14:55:20.010000"],["2024-07-25T14:55:21.010000"],["2024-07-25T14:55:22.010000"],["2024-07-25T14:55:23.010000"],["2024-07-25T14:55:24.010000"],["2024-07-25T14:55:25.010000"],["2024-07-25T14:55:26.010000"],["2024-07-25T14:55:27.010000"],["2024-07-25T14:55:28.010000"],["2024-07-25T14:55:29.010000"],["2024-07-25T14:55:30.010000"],["2024-07-25T14:55:31.010000"],["2024-07-25T14:55:32.010000"],["2024-07-25T14:55:33.010000"],["2024-07-25T14:55:34.010000"],["2024-07-25T14:55:35.010000"],["2024-07-25T14:55:36.010000"],["2024-07-25T14:55:37.010000"],["2024-07-25T14:55:38.010000"],["2024-07-25T14:55:39.010000"],["2024-07-25T14:55:40.010000"],["2024-07-25T14:55:41.010000"],["2024-07-25T14:55:42.010000"],["2024-07-25T14:55:43.010000"],["2024-07-25T14:55:44.010000"],["2024-07-25T14:55:45.010000"],["2024-07-25T14:55:46.010000"],["2024-07-25T14:55:47.010000"],["2024-07-25T14:55:48.010000"],["2024-07-25T14:55:49.010000"],["2024-07-25T14:55:50.010000"],["2024-07-25T14:55:51.010000"],["2024-07-25T14:55:52.010000"],["2024-07-25T14:55:53.010000"],["2024-07-25T14:55:54.010000"],["2024-07-25T14:55:55.010000"],["2024-07-25T14:55:56.010000"],["2024-07-25T14:55:57.010000"],["2024-07-25T14:55:58.010000"],["2024-07-25T14:55:59.010000"],["2024-07-25T14:56:00.010000"],["2024-07-25T14:56:01.010000"],["2024-07-25T14:56:02.010000"],["2024-07-25T14:56:03.010000"],["2024-07-25T14:56:04.010000"],["2024-07-25T14:56:05.010000"],["2024-07-25T14:56:06.010000"],["2024-07-25T14:56:07.010000"],["2024-07-25T14:56:08.010000"],["2024-07-25T14:56:09.010000"],["2024-07-25T14:56:10.010000"],["2024-07-25T14:56:11.010000"],["2024-07-25T14:56:12.010000"],["2024-07-25T14:56:13.010000"],["2024-07-25T14:56:14.010000"],["2024-07-25T14:56:15.010000"],["2024-07-25T14:56:16.010000"],["2024-07-25T14:56:17.010000"],["2024-07-25T14:56:18.010000"],["2024-07-25T14:56:19.010000"],["2024-07-25T14:56:20.010000"],["2024-07-25T14:56:21.010000"],["2024-07-25T14:56:22.010000"],["2024-07-25T14:56:23.010000"],["2024-07-25T14:56:24.010000"],["2024-07-25T14:56:25.010000"],["2024-07-25T14:56:26.010000"],["2024-07-25T14:56:27.010000"],["2024-07-25T14:56:28.010000"],["2024-07-25T14:56:29.010000"],["2024-07-25T14:56:30.010000"],["2024-07-25T14:56:31.010000"],["2024-07-25T14:56:32.010000"],["2024-07-25T14:56:33.010000"],["2024-07-25T14:56:34.010000"],["2024-07-25T14:56:35.010000"],["2024-07-25T14:56:36.010000"],["2024-07-25T14:56:37.010000"],["2024-07-25T14:56:38.010000"],["2024-07-25T14:56:39.010000"],["2024-07-25T14:56:40.010000"],["2024-07-25T14:56:41.010000"],["2024-07-25T14:56:42.010000"],["2024-07-25T14:56:43.010000"],["2024-07-25T14:56:44.010000"],["2024-07-25T14:56:45.010000"],["2024-07-25T14:56:46.010000"],["2024-07-25T14:56:47.010000"],["2024-07-25T14:56:48.010000"],["2024-07-25T14:56:49.010000"],["2024-07-25T14:56:50.010000"],["2024-07-25T14:56:51.010000"],["2024-07-25T14:56:52.010000"],["2024-07-25T14:56:53.010000"],["2024-07-25T14:56:54.010000"],["2024-07-25T14:56:55.010000"],["2024-07-25T14:56:56.010000"],["2024-07-25T14:56:57.010000"],["2024-07-25T14:56:58.010000"],["2024-07-25T14:56:59.010000"],["2024-07-25T14:57:00.010000"],["2024-07-25T14:57:01.010000"],["2024-07-25T14:57:02.010000"],["2024-07-25T14:57:03.010000"],["2024-07-25T14:57:04.010000"],["2024-07-25T14:57:05.010000"],["2024-07-25T14:57:06.010000"],["2024-07-25T14:57:07.010000"],["2024-07-25T14:57:08.010000"],["2024-07-25T14:57:09.010000"],["2024-07-25T14:57:10.010000"],["2024-07-25T14:57:11.010000"],["2024-07-25T14:57:12.010000"],["2024-07-25T14:57:13.010000"],["2024-07-25T14:57:14.010000"],["2024-07-25T14:57:15.010000"],["2024-07-25T14:57:16.010000"],["2024-07-25T14:57:17.010000"],["2024-07-25T14:57:18.010000"],["2024-07-25T14:57:19.010000"],["2024-07-25T14:57:20.010000"],["2024-07-25T14:57:21.010000"],["2024-07-25T14:57:22.010000"],["2024-07-25T14:57:23.010000"],["2024-07-25T14:57:24.010000"],["2024-07-25T14:57:25.010000"],["2024-07-25T14:57:26.010000"],["2024-07-25T14:57:27.010000"],["2024-07-25T14:57:28.010000"],["2024-07-25T14:57:29.010000"],["2024-07-25T14:57:30.010000"],["2024-07-25T14:57:31.010000"],["2024-07-25T14:57:32.010000"],["2024-07-25T14:57:33.010000"],["2024-07-25T14:57:34.010000"],["2024-07-25T14:57:35.010000"],["2024-07-25T14:57:36.010000"],["2024-07-25T14:57:37.010000"],["2024-07-25T14:57:38.010000"],["2024-07-25T14:57:39.010000"],["2024-07-25T14:57:40.010000"],["2024-07-25T14:57:41.010000"],["2024-07-25T14:57:42.010000"],["2024-07-25T14:57:43.010000"],["2024-07-25T14:57:44.010000"],["2024-07-25T14:57:45.010000"],["2024-07-25T14:57:46.010000"],["2024-07-25T14:57:47.010000"],["2024-07-25T14:57:48.010000"],["2024-07-25T14:57:49.010000"],["2024-07-25T14:57:50.010000"],["2024-07-25T14:57:51.010000"],["2024-07-25T14:57:52.010000"],["2024-07-25T14:57:53.010000"],["2024-07-25T14:57:54.010000"],["2024-07-25T14:57:55.010000"],["2024-07-25T14:57:56.010000"],["2024-07-25T14:57:57.010000"],["2024-07-25T14:57:58.010000"],["2024-07-25T14:57:59.010000"],["2024-07-25T14:58:00.010000"],["2024-07-25T14:58:01.010000"],["2024-07-25T14:58:02.010000"],["2024-07-25T14:58:03.010000"],["2024-07-25T14:58:04.010000"],["2024-07-25T14:58:05.010000"],["2024-07-25T14:58:06.010000"],["2024-07-25T14:58:07.010000"],["2024-07-25T14:58:08.010000"],["2024-07-25T14:58:09.010000"],["2024-07-25T14:58:10.010000"],["2024-07-25T14:58:11.010000"],["2024-07-25T14:58:12.010000"],["2024-07-25T14:58:13.010000"],["2024-07-25T14:58:14.010000"],["2024-07-25T14:58:15.010000"],["2024-07-25T14:58:16.010000"],["2024-07-25T14:58:17.010000"],["2024-07-25T14:58:18.010000"],["2024-07-25T14:58:19.010000"],["2024-07-25T14:58:20.010000"],["2024-07-25T14:58:21.010000"],["2024-07-25T14:58:22.010000"],["2024-07-25T14:58:23.010000"],["2024-07-25T14:58:24.010000"],["2024-07-25T14:58:25.010000"],["2024-07-25T14:58:26.010000"],["2024-07-25T14:58:27.010000"],["2024-07-25T14:58:28.010000"],["2024-07-25T14:58:29.010000"],["2024-07-25T14:58:30.010000"],["2024-07-25T14:58:31.010000"],["2024-07-25T14:58:32.010000"],["2024-07-25T14:58:33.010000"],["2024-07-25T14:58:34.010000"],["2024-07-25T14:58:35.010000"],["2024-07-25T14:58:36.010000"],["2024-07-25T14:58:37.010000"],["2024-07-25T14:58:38.010000"],["2024-07-25T14:58:39.010000"],["2024-07-25T14:58:40.010000"],["2024-07-25T14:58:41.010000"],["2024-07-25T14:58:42.010000"],["2024-07-25T14:58:43.010000"],["2024-07-25T14:58:44.010000"],["2024-07-25T14:58:45.010000"],["2024-07-25T14:58:46.010000"],["2024-07-25T14:58:47.010000"],["2024-07-25T14:58:48.010000"],["2024-07-25T14:58:49.010000"],["2024-07-25T14:58:50.010000"],["2024-07-25T14:58:51.010000"],["2024-07-25T14:58:52.010000"],["2024-07-25T14:58:53.010000"],["2024-07-25T14:58:54.010000"],["2024-07-25T14:58:55.010000"],["2024-07-25T14:58:56.010000"],["2024-07-25T14:58:57.010000"],["2024-07-25T14:58:58.010000"],["2024-07-25T14:58:59.010000"],["2024-07-25T14:59:00.010000"],["2024-07-25T14:59:01.010000"],["2024-07-25T14:59:02.010000"],["2024-07-25T14:59:03.010000"],["2024-07-25T14:59:04.010000"],["2024-07-25T14:59:05.010000"],["2024-07-25T14:59:06.010000"],["2024-07-25T14:59:07.010000"],["2024-07-25T14:59:08.010000"],["2024-07-25T14:59:09.010000"],["2024-07-25T14:59:10.010000"],["2024-07-25T14:59:11.010000"],["2024-07-25T14:59:12.010000"],["2024-07-25T14:59:13.010000"],["2024-07-25T14:59:14.010000"],["2024-07-25T14:59:15.010000"],["2024-07-25T14:59:16.010000"],["2024-07-25T14:59:17.010000"],["2024-07-25T14:59:18.010000"],["2024-07-25T14:59:19.010000"],["2024-07-25T14:59:20.010000"],["2024-07-25T14:59:21.010000"],["2024-07-25T14:59:22.010000"],["2024-07-25T14:59:23.010000"],["2024-07-25T14:59:24.010000"],["2024-07-25T14:59:25.010000"],["2024-07-25T14:59:26.010000"],["2024-07-25T14:59:27.010000"],["2024-07-25T14:59:28.010000"],["2024-07-25T14:59:29.010000"],["2024-07-25T14:59:30.010000"],["2024-07-25T14:59:31.010000"],["2024-07-25T14:59:32.010000"],["2024-07-25T14:59:33.010000"],["2024-07-25T14:59:34.010000"],["2024-07-25T14:59:35.010000"],["2024-07-25T14:59:36.010000"],["2024-07-25T14:59:37.010000"],["2024-07-25T14:59:38.010000"],["2024-07-25T14:59:39.010000"],["2024-07-25T14:59:40.010000"],["2024-07-25T14:59:41.010000"],["2024-07-25T14:59:42.010000"],["2024-07-25T14:59:43.010000"],["2024-07-25T14:59:44.010000"],["2024-07-25T14:59:45.010000"],["2024-07-25T14:59:46.010000"],["2024-07-25T14:59:47.010000"],["2024-07-25T14:59:48.010000"],["2024-07-25T14:59:49.010000"],["2024-07-25T14:59:50.010000"],["2024-07-25T14:59:51.010000"],["2024-07-25T14:59:52.010000"],["2024-07-25T14:59:53.010000"],["2024-07-25T14:59:54.010000"],["2024-07-25T14:59:55.010000"],["2024-07-25T14:59:56.010000"],["2024-07-25T14:59:57.010000"],["2024-07-25T14:59:58.010000"],["2024-07-25T14:59:59.010000"],["2024-07-25T15:00:00.010000"],["2024-07-25T15:00:01.010000"],["2024-07-25T15:00:02.010000"],["2024-07-25T15:00:03.010000"],["2024-07-25T15:00:04.010000"],["2024-07-25T15:00:05.010000"],["2024-07-25T15:00:06.010000"],["2024-07-25T15:00:07.010000"],["2024-07-25T15:00:08.010000"],["2024-07-25T15:00:09.010000"],["2024-07-25T15:00:10.010000"],["2024-07-25T15:00:11.010000"],["2024-07-25T15:00:12.010000"],["2024-07-25T15:00:13.010000"],["2024-07-25T15:00:14.010000"],["2024-07-25T15:00:15.010000"],["2024-07-25T15:00:16.010000"],["2024-07-25T15:00:17.010000"],["2024-07-25T15:00:18.010000"],["2024-07-25T15:00:19.010000"],["2024-07-25T15:00:20.010000"],["2024-07-25T15:00:21.010000"],["2024-07-25T15:00:22.010000"],["2024-07-25T15:00:23.010000"],["2024-07-25T15:00:24.010000"],["2024-07-25T15:00:25.010000"],["2024-07-25T15:00:26.010000"],["2024-07-25T15:00:27.010000"],["2024-07-25T15:00:28.010000"],["2024-07-25T15:00:29.010000"],["2024-07-25T15:00:30.010000"],["2024-07-25T15:00:31.010000"],["2024-07-25T15:00:32.010000"],["2024-07-25T15:00:33.010000"],["2024-07-25T15:00:34.010000"],["2024-07-25T15:00:35.010000"],["2024-07-25T15:00:36.010000"],["2024-07-25T15:00:37.010000"],["2024-07-25T15:00:38.010000"],["2024-07-25T15:00:39.010000"],["2024-07-25T15:00:40.010000"],["2024-07-25T15:00:41.010000"],["2024-07-25T15:00:42.010000"],["2024-07-25T15:00:43.010000"],["2024-07-25T15:00:44.010000"],["2024-07-25T15:00:45.010000"],["2024-07-25T15:00:46.010000"],["2024-07-25T15:00:47.010000"],["2024-07-25T15:00:48.010000"],["2024-07-25T15:00:49.010000"],["2024-07-25T15:00:50.010000"],["2024-07-25T15:00:51.010000"],["2024-07-25T15:00:52.010000"],["2024-07-25T15:00:53.010000"],["2024-07-25T15:00:54.010000"],["2024-07-25T15:00:55.010000"],["2024-07-25T15:00:56.010000"],["2024-07-25T15:00:57.010000"],["2024-07-25T15:00:58.010000"],["2024-07-25T15:00:59.010000"],["2024-07-25T15:01:00.010000"],["2024-07-25T15:01:01.010000"],["2024-07-25T15:01:02.010000"],["2024-07-25T15:01:03.010000"],["2024-07-25T15:01:04.010000"],["2024-07-25T15:01:05.010000"],["2024-07-25T15:01:06.010000"],["2024-07-25T15:01:07.010000"],["2024-07-25T15:01:08.010000"],["2024-07-25T15:01:09.010000"],["2024-07-25T15:01:10.010000"],["2024-07-25T15:01:11.010000"],["2024-07-25T15:01:12.010000"],["2024-07-25T15:01:13.010000"],["2024-07-25T15:01:14.010000"],["2024-07-25T15:01:15.010000"],["2024-07-25T15:01:16.010000"],["2024-07-25T15:01:17.010000"],["2024-07-25T15:01:18.010000"],["2024-07-25T15:01:19.010000"],["2024-07-25T15:01:20.010000"],["2024-07-25T15:01:21.010000"],["2024-07-25T15:01:22.010000"],["2024-07-25T15:01:23.010000"],["2024-07-25T15:01:24.010000"],["2024-07-25T15:01:25.010000"],["2024-07-25T15:01:26.010000"],["2024-07-25T15:01:27.010000"],["2024-07-25T15:01:28.010000"],["2024-07-25T15:01:29.010000"],["2024-07-25T15:01:30.010000"],["2024-07-25T15:01:31.010000"],["2024-07-25T15:01:32.010000"],["2024-07-25T15:01:33.010000"],["2024-07-25T15:01:34.010000"],["2024-07-25T15:01:35.010000"],["2024-07-25T15:01:36.010000"],["2024-07-25T15:01:37.010000"],["2024-07-25T15:01:38.010000"],["2024-07-25T15:01:39.010000"],["2024-07-25T15:01:40.010000"],["2024-07-25T15:01:41.010000"],["2024-07-25T15:01:42.010000"],["2024-07-25T15:01:43.010000"],["2024-07-25T15:01:44.010000"],["2024-07-25T15:01:45.010000"],["2024-07-25T15:01:46.010000"],["2024-07-25T15:01:47.010000"],["2024-07-25T15:01:48.010000"],["2024-07-25T15:01:49.010000"],["2024-07-25T15:01:50.010000"],["2024-07-25T15:01:51.010000"],["2024-07-25T15:01:52.010000"],["2024-07-25T15:01:53.010000"],["2024-07-25T15:01:54.010000"],["2024-07-25T15:01:55.010000"],["2024-07-25T15:01:56.010000"],["2024-07-25T15:01:57.010000"],["2024-07-25T15:01:58.010000"],["2024-07-25T15:01:59.010000"],["2024-07-25T15:02:00.010000"],["2024-07-25T15:02:01.010000"],["2024-07-25T15:02:02.010000"],["2024-07-25T15:02:03.010000"],["2024-07-25T15:02:04.010000"],["2024-07-25T15:02:05.010000"],["2024-07-25T15:02:06.010000"],["2024-07-25T15:02:07.010000"],["2024-07-25T15:02:08.010000"],["2024-07-25T15:02:09.010000"],["2024-07-25T15:02:10.010000"],["2024-07-25T15:02:11.010000"],["2024-07-25T15:02:12.010000"],["2024-07-25T15:02:13.010000"],["2024-07-25T15:02:14.010000"],["2024-07-25T15:02:15.010000"],["2024-07-25T15:02:16.010000"],["2024-07-25T15:02:17.010000"],["2024-07-25T15:02:18.010000"],["2024-07-25T15:02:19.010000"],["2024-07-25T15:02:20.010000"],["2024-07-25T15:02:21.010000"],["2024-07-25T15:02:22.010000"],["2024-07-25T15:02:23.010000"],["2024-07-25T15:02:24.010000"],["2024-07-25T15:02:25.010000"],["2024-07-25T15:02:26.010000"],["2024-07-25T15:02:27.010000"],["2024-07-25T15:02:28.010000"],["2024-07-25T15:02:29.010000"],["2024-07-25T15:02:30.010000"],["2024-07-25T15:02:31.010000"],["2024-07-25T15:02:32.010000"],["2024-07-25T15:02:33.010000"],["2024-07-25T15:02:34.010000"],["2024-07-25T15:02:35.010000"],["2024-07-25T15:02:36.010000"],["2024-07-25T15:02:37.010000"],["2024-07-25T15:02:38.010000"],["2024-07-25T15:02:39.010000"],["2024-07-25T15:02:40.010000"],["2024-07-25T15:02:41.010000"],["2024-07-25T15:02:42.010000"],["2024-07-25T15:02:43.010000"],["2024-07-25T15:02:44.010000"],["2024-07-25T15:02:45.010000"],["2024-07-25T15:02:46.010000"],["2024-07-25T15:02:47.010000"],["2024-07-25T15:02:48.010000"],["2024-07-25T15:02:49.010000"],["2024-07-25T15:02:50.010000"],["2024-07-25T15:02:51.010000"],["2024-07-25T15:02:52.010000"],["2024-07-25T15:02:53.010000"],["2024-07-25T15:02:54.010000"],["2024-07-25T15:02:55.010000"],["2024-07-25T15:02:56.010000"],["2024-07-25T15:02:57.010000"],["2024-07-25T15:02:58.010000"],["2024-07-25T15:02:59.010000"],["2024-07-25T15:03:00.010000"],["2024-07-25T15:03:01.010000"],["2024-07-25T15:03:02.010000"],["2024-07-25T15:03:03.010000"],["2024-07-25T15:03:04.010000"],["2024-07-25T15:03:05.010000"],["2024-07-25T15:03:06.010000"],["2024-07-25T15:03:07.010000"],["2024-07-25T15:03:08.010000"],["2024-07-25T15:03:09.010000"],["2024-07-25T15:03:10.010000"],["2024-07-25T15:03:11.010000"],["2024-07-25T15:03:12.010000"],["2024-07-25T15:03:13.010000"],["2024-07-25T15:03:14.010000"],["2024-07-25T15:03:15.010000"],["2024-07-25T15:03:16.010000"],["2024-07-25T15:03:17.010000"],["2024-07-25T15:03:18.010000"],["2024-07-25T15:03:19.010000"],["2024-07-25T15:03:20.010000"],["2024-07-25T15:03:21.010000"],["2024-07-25T15:03:22.010000"],["2024-07-25T15:03:23.010000"],["2024-07-25T15:03:24.010000"],["2024-07-25T15:03:25.010000"],["2024-07-25T15:03:26.010000"],["2024-07-25T15:03:27.010000"],["2024-07-25T15:03:28.010000"],["2024-07-25T15:03:29.010000"],["2024-07-25T15:03:30.010000"],["2024-07-25T15:03:31.010000"],["2024-07-25T15:03:32.010000"],["2024-07-25T15:03:33.010000"],["2024-07-25T15:03:34.010000"],["2024-07-25T15:03:35.010000"],["2024-07-25T15:03:36.010000"],["2024-07-25T15:03:37.010000"],["2024-07-25T15:03:38.010000"],["2024-07-25T15:03:39.010000"],["2024-07-25T15:03:40.010000"],["2024-07-25T15:03:41.010000"],["2024-07-25T15:03:42.010000"],["2024-07-25T15:03:43.010000"],["2024-07-25T15:03:44.010000"],["2024-07-25T15:03:45.010000"],["2024-07-25T15:03:46.010000"],["2024-07-25T15:03:47.010000"],["2024-07-25T15:03:48.010000"],["2024-07-25T15:03:49.010000"],["2024-07-25T15:03:50.010000"],["2024-07-25T15:03:51.010000"],["2024-07-25T15:03:52.010000"],["2024-07-25T15:03:53.010000"],["2024-07-25T15:03:54.010000"],["2024-07-25T15:03:55.010000"],["2024-07-25T15:03:56.010000"],["2024-07-25T15:03:57.010000"],["2024-07-25T15:03:58.010000"],["2024-07-25T15:03:59.010000"],["2024-07-25T15:04:00.010000"],["2024-07-25T15:04:01.010000"],["2024-07-25T15:04:02.010000"],["2024-07-25T15:04:03.010000"],["2024-07-25T15:04:04.010000"],["2024-07-25T15:04:05.010000"],["2024-07-25T15:04:06.010000"],["2024-07-25T15:04:07.010000"],["2024-07-25T15:04:08.010000"],["2024-07-25T15:04:09.010000"],["2024-07-25T15:04:10.010000"],["2024-07-25T15:04:11.010000"],["2024-07-25T15:04:12.010000"],["2024-07-25T15:04:13.010000"],["2024-07-25T15:04:14.010000"],["2024-07-25T15:04:15.010000"],["2024-07-25T15:04:16.010000"],["2024-07-25T15:04:17.010000"],["2024-07-25T15:04:18.010000"],["2024-07-25T15:04:19.010000"],["2024-07-25T15:04:20.010000"],["2024-07-25T15:04:21.010000"],["2024-07-25T15:04:22.010000"],["2024-07-25T15:04:23.010000"],["2024-07-25T15:04:24.010000"],["2024-07-25T15:04:25.010000"],["2024-07-25T15:04:26.010000"],["2024-07-25T15:04:27.010000"],["2024-07-25T15:04:28.010000"],["2024-07-25T15:04:29.010000"],["2024-07-25T15:04:30.010000"],["2024-07-25T15:04:31.010000"],["2024-07-25T15:04:32.010000"],["2024-07-25T15:04:33.010000"],["2024-07-25T15:04:34.010000"],["2024-07-25T15:04:35.010000"],["2024-07-25T15:04:36.010000"],["2024-07-25T15:04:37.010000"],["2024-07-25T15:04:38.010000"],["2024-07-25T15:04:39.010000"],["2024-07-25T15:04:40.010000"],["2024-07-25T15:04:41.010000"],["2024-07-25T15:04:42.010000"],["2024-07-25T15:04:43.010000"],["2024-07-25T15:04:44.010000"],["2024-07-25T15:04:45.010000"],["2024-07-25T15:04:46.010000"],["2024-07-25T15:04:47.010000"],["2024-07-25T15:04:48.010000"],["2024-07-25T15:04:49.010000"],["2024-07-25T15:04:50.010000"],["2024-07-25T15:04:51.010000"],["2024-07-25T15:04:52.010000"],["2024-07-25T15:04:53.010000"],["2024-07-25T15:04:54.010000"],["2024-07-25T15:04:55.010000"],["2024-07-25T15:04:56.010000"],["2024-07-25T15:04:57.010000"],["2024-07-25T15:04:58.010000"],["2024-07-25T15:04:59.010000"],["2024-07-25T15:05:00.010000"],["2024-07-25T15:05:01.010000"],["2024-07-25T15:05:02.010000"],["2024-07-25T15:05:03.010000"],["2024-07-25T15:05:04.010000"],["2024-07-25T15:05:05.010000"],["2024-07-25T15:05:06.010000"],["2024-07-25T15:05:07.010000"],["2024-07-25T15:05:08.010000"],["2024-07-25T15:05:09.010000"],["2024-07-25T15:05:10.010000"],["2024-07-25T15:05:11.010000"],["2024-07-25T15:05:12.010000"],["2024-07-25T15:05:13.010000"],["2024-07-25T15:05:14.010000"],["2024-07-25T15:05:15.010000"],["2024-07-25T15:05:16.010000"],["2024-07-25T15:05:17.010000"],["2024-07-25T15:05:18.010000"],["2024-07-25T15:05:19.010000"],["2024-07-25T15:05:20.010000"],["2024-07-25T15:05:21.010000"],["2024-07-25T15:05:22.010000"],["2024-07-25T15:05:23.010000"],["2024-07-25T15:05:24.010000"],["2024-07-25T15:05:25.010000"],["2024-07-25T15:05:26.010000"],["2024-07-25T15:05:27.010000"],["2024-07-25T15:05:28.010000"],["2024-07-25T15:05:29.010000"],["2024-07-25T15:05:30.010000"],["2024-07-25T15:05:31.010000"],["2024-07-25T15:05:32.010000"],["2024-07-25T15:05:33.010000"],["2024-07-25T15:05:34.010000"],["2024-07-25T15:05:35.010000"],["2024-07-25T15:05:36.010000"],["2024-07-25T15:05:37.010000"],["2024-07-25T15:05:38.010000"],["2024-07-25T15:05:39.010000"],["2024-07-25T15:05:40.010000"],["2024-07-25T15:05:41.010000"],["2024-07-25T15:05:42.010000"],["2024-07-25T15:05:43.010000"],["2024-07-25T15:05:44.010000"],["2024-07-25T15:05:45.010000"],["2024-07-25T15:05:46.010000"],["2024-07-25T15:05:47.010000"],["2024-07-25T15:05:48.010000"],["2024-07-25T15:05:49.010000"],["2024-07-25T15:05:50.010000"],["2024-07-25T15:05:51.010000"],["2024-07-25T15:05:52.010000"],["2024-07-25T15:05:53.010000"],["2024-07-25T15:05:54.010000"],["2024-07-25T15:05:55.010000"],["2024-07-25T15:05:56.010000"],["2024-07-25T15:05:57.010000"],["2024-07-25T15:05:58.010000"],["2024-07-25T15:05:59.010000"],["2024-07-25T15:06:00.010000"],["2024-07-25T15:06:01.010000"],["2024-07-25T15:06:02.010000"],["2024-07-25T15:06:03.010000"],["2024-07-25T15:06:04.010000"],["2024-07-25T15:06:05.010000"],["2024-07-25T15:06:06.010000"],["2024-07-25T15:06:07.010000"],["2024-07-25T15:06:08.010000"],["2024-07-25T15:06:09.010000"],["2024-07-25T15:06:10.010000"],["2024-07-25T15:06:11.010000"],["2024-07-25T15:06:12.010000"],["2024-07-25T15:06:13.010000"],["2024-07-25T15:06:14.010000"],["2024-07-25T15:06:15.010000"],["2024-07-25T15:06:16.010000"],["2024-07-25T15:06:17.010000"],["2024-07-25T15:06:18.010000"],["2024-07-25T15:06:19.010000"],["2024-07-25T15:06:20.010000"],["2024-07-25T15:06:21.010000"],["2024-07-25T15:06:22.010000"],["2024-07-25T15:06:23.010000"],["2024-07-25T15:06:24.010000"],["2024-07-25T15:06:25.010000"],["2024-07-25T15:06:26.010000"],["2024-07-25T15:06:27.010000"],["2024-07-25T15:06:28.010000"],["2024-07-25T15:06:29.010000"],["2024-07-25T15:06:30.010000"],["2024-07-25T15:06:31.010000"],["2024-07-25T15:06:32.010000"],["2024-07-25T15:06:33.010000"],["2024-07-25T15:06:34.010000"],["2024-07-25T15:06:35.010000"],["2024-07-25T15:06:36.010000"],["2024-07-25T15:06:37.010000"],["2024-07-25T15:06:38.010000"],["2024-07-25T15:06:39.010000"],["2024-07-25T15:06:40.010000"],["2024-07-25T15:06:41.010000"],["2024-07-25T15:06:42.010000"],["2024-07-25T15:06:43.010000"],["2024-07-25T15:06:44.010000"],["2024-07-25T15:06:45.010000"],["2024-07-25T15:06:46.010000"],["2024-07-25T15:06:47.010000"],["2024-07-25T15:06:48.010000"],["2024-07-25T15:06:49.010000"],["2024-07-25T15:06:50.010000"],["2024-07-25T15:06:51.010000"],["2024-07-25T15:06:52.010000"],["2024-07-25T15:06:53.010000"],["2024-07-25T15:06:54.010000"],["2024-07-25T15:06:55.010000"],["2024-07-25T15:06:56.010000"],["2024-07-25T15:06:57.010000"],["2024-07-25T15:06:58.010000"],["2024-07-25T15:06:59.010000"],["2024-07-25T15:07:00.010000"],["2024-07-25T15:07:01.010000"],["2024-07-25T15:07:02.010000"],["2024-07-25T15:07:03.010000"],["2024-07-25T15:07:04.010000"],["2024-07-25T15:07:05.010000"],["2024-07-25T15:07:06.010000"],["2024-07-25T15:07:07.010000"],["2024-07-25T15:07:08.010000"],["2024-07-25T15:07:09.010000"],["2024-07-25T15:07:10.010000"],["2024-07-25T15:07:11.010000"],["2024-07-25T15:07:12.010000"],["2024-07-25T15:07:13.010000"],["2024-07-25T15:07:14.010000"],["2024-07-25T15:07:15.010000"],["2024-07-25T15:07:16.010000"],["2024-07-25T15:07:17.010000"],["2024-07-25T15:07:18.010000"],["2024-07-25T15:07:19.010000"],["2024-07-25T15:07:20.010000"],["2024-07-25T15:07:21.010000"],["2024-07-25T15:07:22.010000"],["2024-07-25T15:07:23.010000"],["2024-07-25T15:07:24.010000"],["2024-07-25T15:07:25.010000"],["2024-07-25T15:07:26.010000"],["2024-07-25T15:07:27.010000"],["2024-07-25T15:07:28.010000"],["2024-07-25T15:07:29.010000"],["2024-07-25T15:07:30.010000"],["2024-07-25T15:07:31.010000"],["2024-07-25T15:07:32.010000"],["2024-07-25T15:07:33.010000"],["2024-07-25T15:07:34.010000"],["2024-07-25T15:07:35.010000"],["2024-07-25T15:07:36.010000"],["2024-07-25T15:07:37.010000"],["2024-07-25T15:07:38.010000"],["2024-07-25T15:07:39.010000"],["2024-07-25T15:07:40.010000"],["2024-07-25T15:07:41.010000"],["2024-07-25T15:07:42.010000"],["2024-07-25T15:07:43.010000"],["2024-07-25T15:07:44.010000"],["2024-07-25T15:07:45.010000"],["2024-07-25T15:07:46.010000"],["2024-07-25T15:07:47.010000"],["2024-07-25T15:07:48.010000"],["2024-07-25T15:07:49.010000"],["2024-07-25T15:07:50.010000"],["2024-07-25T15:07:51.010000"],["2024-07-25T15:07:52.010000"],["2024-07-25T15:07:53.010000"],["2024-07-25T15:07:54.010000"],["2024-07-25T15:07:55.010000"],["2024-07-25T15:07:56.010000"],["2024-07-25T15:07:57.010000"],["2024-07-25T15:07:58.010000"],["2024-07-25T15:07:59.010000"],["2024-07-25T15:08:00.010000"],["2024-07-25T15:08:01.010000"],["2024-07-25T15:08:02.010000"],["2024-07-25T15:08:03.010000"],["2024-07-25T15:08:04.010000"],["2024-07-25T15:08:05.010000"],["2024-07-25T15:08:06.010000"],["2024-07-25T15:08:07.010000"],["2024-07-25T15:08:08.010000"],["2024-07-25T15:08:09.010000"],["2024-07-25T15:08:10.010000"],["2024-07-25T15:08:11.010000"],["2024-07-25T15:08:12.010000"],["2024-07-25T15:08:13.010000"],["2024-07-25T15:08:14.010000"],["2024-07-25T15:08:15.010000"],["2024-07-25T15:08:16.010000"],["2024-07-25T15:08:17.010000"],["2024-07-25T15:08:18.010000"],["2024-07-25T15:08:19.010000"],["2024-07-25T15:08:20.010000"],["2024-07-25T15:08:21.010000"],["2024-07-25T15:08:22.010000"],["2024-07-25T15:08:23.010000"],["2024-07-25T15:08:24.010000"],["2024-07-25T15:08:25.010000"],["2024-07-25T15:08:26.010000"],["2024-07-25T15:08:27.010000"],["2024-07-25T15:08:28.010000"],["2024-07-25T15:08:29.010000"],["2024-07-25T15:08:30.010000"],["2024-07-25T15:08:31.010000"],["2024-07-25T15:08:32.010000"],["2024-07-25T15:08:33.010000"],["2024-07-25T15:08:34.010000"],["2024-07-25T15:08:35.010000"],["2024-07-25T15:08:36.010000"],["2024-07-25T15:08:37.010000"],["2024-07-25T15:08:38.010000"],["2024-07-25T15:08:39.010000"],["2024-07-25T15:08:40.010000"],["2024-07-25T15:08:41.010000"],["2024-07-25T15:08:42.010000"],["2024-07-25T15:08:43.010000"],["2024-07-25T15:08:44.010000"],["2024-07-25T15:08:45.010000"],["2024-07-25T15:08:46.010000"],["2024-07-25T15:08:47.010000"],["2024-07-25T15:08:48.010000"],["2024-07-25T15:08:49.010000"],["2024-07-25T15:08:50.010000"],["2024-07-25T15:08:51.010000"],["2024-07-25T15:08:52.010000"],["2024-07-25T15:08:53.010000"],["2024-07-25T15:08:54.010000"],["2024-07-25T15:08:55.010000"],["2024-07-25T15:08:56.010000"],["2024-07-25T15:08:57.010000"],["2024-07-25T15:08:58.010000"],["2024-07-25T15:08:59.010000"],["2024-07-25T15:09:00.010000"],["2024-07-25T15:09:01.010000"],["2024-07-25T15:09:02.010000"],["2024-07-25T15:09:03.010000"],["2024-07-25T15:09:04.010000"],["2024-07-25T15:09:05.010000"],["2024-07-25T15:09:06.010000"],["2024-07-25T15:09:07.010000"],["2024-07-25T15:09:08.010000"],["2024-07-25T15:09:09.010000"],["2024-07-25T15:09:10.010000"],["2024-07-25T15:09:11.010000"],["2024-07-25T15:09:12.010000"],["2024-07-25T15:09:13.010000"],["2024-07-25T15:09:14.010000"],["2024-07-25T15:09:15.010000"],["2024-07-25T15:09:16.010000"],["2024-07-25T15:09:17.010000"],["2024-07-25T15:09:18.010000"],["2024-07-25T15:09:19.010000"],["2024-07-25T15:09:20.010000"],["2024-07-25T15:09:21.010000"],["2024-07-25T15:09:22.010000"],["2024-07-25T15:09:23.010000"],["2024-07-25T15:09:24.010000"],["2024-07-25T15:09:25.010000"],["2024-07-25T15:09:26.010000"],["2024-07-25T15:09:27.010000"],["2024-07-25T15:09:28.010000"],["2024-07-25T15:09:29.010000"],["2024-07-25T15:09:30.010000"],["2024-07-25T15:09:31.010000"],["2024-07-25T15:09:32.010000"],["2024-07-25T15:09:33.010000"],["2024-07-25T15:09:34.010000"],["2024-07-25T15:09:35.010000"],["2024-07-25T15:09:36.010000"],["2024-07-25T15:09:37.010000"],["2024-07-25T15:09:38.010000"],["2024-07-25T15:09:39.010000"],["2024-07-25T15:09:40.010000"],["2024-07-25T15:09:41.010000"],["2024-07-25T15:09:42.010000"],["2024-07-25T15:09:43.010000"],["2024-07-25T15:09:44.010000"],["2024-07-25T15:09:45.010000"],["2024-07-25T15:09:46.010000"],["2024-07-25T15:09:47.010000"],["2024-07-25T15:09:48.010000"],["2024-07-25T15:09:49.010000"],["2024-07-25T15:09:50.010000"],["2024-07-25T15:09:51.010000"],["2024-07-25T15:09:52.010000"],["2024-07-25T15:09:53.010000"],["2024-07-25T15:09:54.010000"],["2024-07-25T15:09:55.010000"],["2024-07-25T15:09:56.010000"],["2024-07-25T15:09:57.010000"],["2024-07-25T15:09:58.010000"],["2024-07-25T15:09:59.010000"],["2024-07-25T15:10:00.010000"],["2024-07-25T15:10:01.010000"],["2024-07-25T15:10:02.010000"],["2024-07-25T15:10:03.010000"],["2024-07-25T15:10:04.010000"],["2024-07-25T15:10:05.010000"],["2024-07-25T15:10:06.010000"],["2024-07-25T15:10:07.010000"],["2024-07-25T15:10:08.010000"],["2024-07-25T15:10:09.010000"],["2024-07-25T15:10:10.010000"],["2024-07-25T15:10:11.010000"],["2024-07-25T15:10:12.010000"],["2024-07-25T15:10:13.010000"],["2024-07-25T15:10:14.010000"],["2024-07-25T15:10:15.010000"],["2024-07-25T15:10:16.010000"],["2024-07-25T15:10:17.010000"],["2024-07-25T15:10:18.010000"],["2024-07-25T15:10:19.010000"],["2024-07-25T15:10:20.010000"],["2024-07-25T15:10:21.010000"],["2024-07-25T15:10:22.010000"],["2024-07-25T15:10:23.010000"],["2024-07-25T15:10:24.010000"],["2024-07-25T15:10:25.010000"],["2024-07-25T15:10:26.010000"],["2024-07-25T15:10:27.010000"],["2024-07-25T15:10:28.010000"],["2024-07-25T15:10:29.010000"],["2024-07-25T15:10:30.010000"],["2024-07-25T15:10:31.010000"],["2024-07-25T15:10:32.010000"],["2024-07-25T15:10:33.010000"],["2024-07-25T15:10:34.010000"],["2024-07-25T15:10:35.010000"],["2024-07-25T15:10:36.010000"],["2024-07-25T15:10:37.010000"],["2024-07-25T15:10:38.010000"],["2024-07-25T15:10:39.010000"],["2024-07-25T15:10:40.010000"],["2024-07-25T15:10:41.010000"],["2024-07-25T15:10:42.010000"],["2024-07-25T15:10:43.010000"],["2024-07-25T15:10:44.010000"],["2024-07-25T15:10:45.010000"],["2024-07-25T15:10:46.010000"],["2024-07-25T15:10:47.010000"],["2024-07-25T15:10:48.010000"],["2024-07-25T15:10:49.010000"],["2024-07-25T15:10:50.010000"],["2024-07-25T15:10:51.010000"],["2024-07-25T15:10:52.010000"],["2024-07-25T15:10:53.010000"],["2024-07-25T15:10:54.010000"],["2024-07-25T15:10:55.010000"],["2024-07-25T15:10:56.010000"],["2024-07-25T15:10:57.010000"],["2024-07-25T15:10:58.010000"],["2024-07-25T15:10:59.010000"],["2024-07-25T15:11:00.010000"],["2024-07-25T15:11:01.010000"],["2024-07-25T15:11:02.010000"],["2024-07-25T15:11:03.010000"],["2024-07-25T15:11:04.010000"],["2024-07-25T15:11:05.010000"],["2024-07-25T15:11:06.010000"],["2024-07-25T15:11:07.010000"],["2024-07-25T15:11:08.010000"],["2024-07-25T15:11:09.010000"],["2024-07-25T15:11:10.010000"],["2024-07-25T15:11:11.010000"],["2024-07-25T15:11:12.010000"],["2024-07-25T15:11:13.010000"],["2024-07-25T15:11:14.010000"],["2024-07-25T15:11:15.010000"],["2024-07-25T15:11:16.010000"],["2024-07-25T15:11:17.010000"],["2024-07-25T15:11:18.010000"],["2024-07-25T15:11:19.010000"],["2024-07-25T15:11:20.010000"],["2024-07-25T15:11:21.010000"],["2024-07-25T15:11:22.010000"],["2024-07-25T15:11:23.010000"],["2024-07-25T15:11:24.010000"],["2024-07-25T15:11:25.010000"],["2024-07-25T15:11:26.010000"],["2024-07-25T15:11:27.010000"],["2024-07-25T15:11:28.010000"],["2024-07-25T15:11:29.010000"],["2024-07-25T15:11:30.010000"],["2024-07-25T15:11:31.010000"],["2024-07-25T15:11:32.010000"],["2024-07-25T15:11:33.010000"],["2024-07-25T15:11:34.010000"],["2024-07-25T15:11:35.010000"],["2024-07-25T15:11:36.010000"],["2024-07-25T15:11:37.010000"],["2024-07-25T15:11:38.010000"],["2024-07-25T15:11:39.010000"],["2024-07-25T15:11:40.010000"],["2024-07-25T15:11:41.010000"],["2024-07-25T15:11:42.010000"],["2024-07-25T15:11:43.010000"],["2024-07-25T15:11:44.010000"],["2024-07-25T15:11:45.010000"],["2024-07-25T15:11:46.010000"],["2024-07-25T15:11:47.010000"],["2024-07-25T15:11:48.010000"],["2024-07-25T15:11:49.010000"],["2024-07-25T15:11:50.010000"],["2024-07-25T15:11:51.010000"],["2024-07-25T15:11:52.010000"],["2024-07-25T15:11:53.010000"],["2024-07-25T15:11:54.010000"],["2024-07-25T15:11:55.010000"],["2024-07-25T15:11:56.010000"],["2024-07-25T15:11:57.010000"],["2024-07-25T15:11:58.010000"],["2024-07-25T15:11:59.010000"],["2024-07-25T15:12:00.010000"],["2024-07-25T15:12:01.010000"],["2024-07-25T15:12:02.010000"],["2024-07-25T15:12:03.010000"],["2024-07-25T15:12:04.010000"],["2024-07-25T15:12:05.010000"],["2024-07-25T15:12:06.010000"],["2024-07-25T15:12:07.010000"],["2024-07-25T15:12:08.010000"],["2024-07-25T15:12:09.010000"],["2024-07-25T15:12:10.010000"],["2024-07-25T15:12:11.010000"],["2024-07-25T15:12:12.010000"],["2024-07-25T15:12:13.010000"],["2024-07-25T15:12:14.010000"],["2024-07-25T15:12:15.010000"],["2024-07-25T15:12:16.010000"],["2024-07-25T15:12:17.010000"],["2024-07-25T15:12:18.010000"],["2024-07-25T15:12:19.010000"],["2024-07-25T15:12:20.010000"],["2024-07-25T15:12:21.010000"],["2024-07-25T15:12:22.010000"],["2024-07-25T15:12:23.010000"],["2024-07-25T15:12:24.010000"],["2024-07-25T15:12:25.010000"],["2024-07-25T15:12:26.010000"],["2024-07-25T15:12:27.010000"],["2024-07-25T15:12:28.010000"],["2024-07-25T15:12:29.010000"],["2024-07-25T15:12:30.010000"],["2024-07-25T15:12:31.010000"],["2024-07-25T15:12:32.010000"],["2024-07-25T15:12:33.010000"],["2024-07-25T15:12:34.010000"],["2024-07-25T15:12:35.010000"],["2024-07-25T15:12:36.010000"],["2024-07-25T15:12:37.010000"],["2024-07-25T15:12:38.010000"],["2024-07-25T15:12:39.010000"],["2024-07-25T15:12:40.010000"],["2024-07-25T15:12:41.010000"],["2024-07-25T15:12:42.010000"],["2024-07-25T15:12:43.010000"],["2024-07-25T15:12:44.010000"],["2024-07-25T15:12:45.010000"],["2024-07-25T15:12:46.010000"],["2024-07-25T15:12:47.010000"],["2024-07-25T15:12:48.010000"],["2024-07-25T15:12:49.010000"],["2024-07-25T15:12:50.010000"],["2024-07-25T15:12:51.010000"],["2024-07-25T15:12:52.010000"],["2024-07-25T15:12:53.010000"],["2024-07-25T15:12:54.010000"],["2024-07-25T15:12:55.010000"],["2024-07-25T15:12:56.010000"],["2024-07-25T15:12:57.010000"],["2024-07-25T15:12:58.010000"],["2024-07-25T15:12:59.010000"],["2024-07-25T15:13:00.010000"],["2024-07-25T15:13:01.010000"],["2024-07-25T15:13:02.010000"],["2024-07-25T15:13:03.010000"],["2024-07-25T15:13:04.010000"],["2024-07-25T15:13:05.010000"],["2024-07-25T15:13:06.010000"],["2024-07-25T15:13:07.010000"],["2024-07-25T15:13:08.010000"],["2024-07-25T15:13:09.010000"],["2024-07-25T15:13:10.010000"],["2024-07-25T15:13:11.010000"],["2024-07-25T15:13:12.010000"],["2024-07-25T15:13:13.010000"],["2024-07-25T15:13:14.010000"],["2024-07-25T15:13:15.010000"],["2024-07-25T15:13:16.010000"],["2024-07-25T15:13:17.010000"],["2024-07-25T15:13:18.010000"],["2024-07-25T15:13:19.010000"],["2024-07-25T15:13:20.010000"],["2024-07-25T15:13:21.010000"],["2024-07-25T15:13:22.010000"],["2024-07-25T15:13:23.010000"],["2024-07-25T15:13:24.010000"],["2024-07-25T15:13:25.010000"],["2024-07-25T15:13:26.010000"],["2024-07-25T15:13:27.010000"],["2024-07-25T15:13:28.010000"],["2024-07-25T15:13:29.010000"],["2024-07-25T15:13:30.010000"],["2024-07-25T15:13:31.010000"],["2024-07-25T15:13:32.010000"],["2024-07-25T15:13:33.010000"],["2024-07-25T15:13:34.010000"],["2024-07-25T15:13:35.010000"],["2024-07-25T15:13:36.010000"],["2024-07-25T15:13:37.010000"],["2024-07-25T15:13:38.010000"],["2024-07-25T15:13:39.010000"],["2024-07-25T15:13:40.010000"],["2024-07-25T15:13:41.010000"],["2024-07-25T15:13:42.010000"],["2024-07-25T15:13:43.010000"],["2024-07-25T15:13:44.010000"],["2024-07-25T15:13:45.010000"],["2024-07-25T15:13:46.010000"],["2024-07-25T15:13:47.010000"],["2024-07-25T15:13:48.010000"],["2024-07-25T15:13:49.010000"],["2024-07-25T15:13:50.010000"],["2024-07-25T15:13:51.010000"],["2024-07-25T15:13:52.010000"],["2024-07-25T15:13:53.010000"],["2024-07-25T15:13:54.010000"],["2024-07-25T15:13:55.010000"],["2024-07-25T15:13:56.010000"],["2024-07-25T15:13:57.010000"],["2024-07-25T15:13:58.010000"],["2024-07-25T15:13:59.010000"],["2024-07-25T15:14:00.010000"],["2024-07-25T15:14:01.010000"],["2024-07-25T15:14:02.010000"],["2024-07-25T15:14:03.010000"],["2024-07-25T15:14:04.010000"],["2024-07-25T15:14:05.010000"],["2024-07-25T15:14:06.010000"],["2024-07-25T15:14:07.010000"],["2024-07-25T15:14:08.010000"],["2024-07-25T15:14:09.010000"],["2024-07-25T15:14:10.010000"],["2024-07-25T15:14:11.010000"],["2024-07-25T15:14:12.010000"],["2024-07-25T15:14:13.010000"],["2024-07-25T15:14:14.010000"],["2024-07-25T15:14:15.010000"],["2024-07-25T15:14:16.010000"],["2024-07-25T15:14:17.010000"],["2024-07-25T15:14:18.010000"],["2024-07-25T15:14:19.010000"],["2024-07-25T15:14:20.010000"],["2024-07-25T15:14:21.010000"],["2024-07-25T15:14:22.010000"],["2024-07-25T15:14:23.010000"],["2024-07-25T15:14:24.010000"],["2024-07-25T15:14:25.010000"],["2024-07-25T15:14:26.010000"],["2024-07-25T15:14:27.010000"],["2024-07-25T15:14:28.010000"],["2024-07-25T15:14:29.010000"],["2024-07-25T15:14:30.010000"],["2024-07-25T15:14:31.010000"],["2024-07-25T15:14:32.010000"],["2024-07-25T15:14:33.010000"],["2024-07-25T15:14:34.010000"],["2024-07-25T15:14:35.010000"],["2024-07-25T15:14:36.010000"],["2024-07-25T15:14:37.010000"],["2024-07-25T15:14:38.010000"],["2024-07-25T15:14:39.010000"],["2024-07-25T15:14:40.010000"],["2024-07-25T15:14:41.010000"],["2024-07-25T15:14:42.010000"],["2024-07-25T15:14:43.010000"],["2024-07-25T15:14:44.010000"],["2024-07-25T15:14:45.010000"],["2024-07-25T15:14:46.010000"],["2024-07-25T15:14:47.010000"],["2024-07-25T15:14:48.010000"],["2024-07-25T15:14:49.010000"],["2024-07-25T15:14:50.010000"],["2024-07-25T15:14:51.010000"],["2024-07-25T15:14:52.010000"],["2024-07-25T15:14:53.010000"],["2024-07-25T15:14:54.010000"],["2024-07-25T15:14:55.010000"],["2024-07-25T15:14:56.010000"],["2024-07-25T15:14:57.010000"],["2024-07-25T15:14:58.010000"],["2024-07-25T15:14:59.010000"],["2024-07-25T15:15:00.010000"],["2024-07-25T15:15:01.010000"],["2024-07-25T15:15:02.010000"],["2024-07-25T15:15:03.010000"],["2024-07-25T15:15:04.010000"],["2024-07-25T15:15:05.010000"],["2024-07-25T15:15:06.010000"],["2024-07-25T15:15:07.010000"],["2024-07-25T15:15:08.010000"],["2024-07-25T15:15:09.010000"],["2024-07-25T15:15:10.010000"],["2024-07-25T15:15:11.010000"],["2024-07-25T15:15:12.010000"],["2024-07-25T15:15:13.010000"],["2024-07-25T15:15:14.010000"],["2024-07-25T15:15:15.010000"],["2024-07-25T15:15:16.010000"],["2024-07-25T15:15:17.010000"],["2024-07-25T15:15:18.010000"],["2024-07-25T15:15:19.010000"],["2024-07-25T15:15:20.010000"],["2024-07-25T15:15:21.010000"],["2024-07-25T15:15:22.010000"],["2024-07-25T15:15:23.010000"],["2024-07-25T15:15:24.010000"],["2024-07-25T15:15:25.010000"],["2024-07-25T15:15:26.010000"],["2024-07-25T15:15:27.010000"],["2024-07-25T15:15:28.010000"],["2024-07-25T15:15:29.010000"],["2024-07-25T15:15:30.010000"],["2024-07-25T15:15:31.010000"],["2024-07-25T15:15:32.010000"],["2024-07-25T15:15:33.010000"],["2024-07-25T15:15:34.010000"],["2024-07-25T15:15:35.010000"],["2024-07-25T15:15:36.010000"],["2024-07-25T15:15:37.010000"],["2024-07-25T15:15:38.010000"],["2024-07-25T15:15:39.010000"],["2024-07-25T15:15:40.010000"],["2024-07-25T15:15:41.010000"],["2024-07-25T15:15:42.010000"],["2024-07-25T15:15:43.010000"],["2024-07-25T15:15:44.010000"],["2024-07-25T15:15:45.010000"],["2024-07-25T15:15:46.010000"],["2024-07-25T15:15:47.010000"],["2024-07-25T15:15:48.010000"],["2024-07-25T15:15:49.010000"],["2024-07-25T15:15:50.010000"],["2024-07-25T15:15:51.010000"],["2024-07-25T15:15:52.010000"],["2024-07-25T15:15:53.010000"],["2024-07-25T15:15:54.010000"],["2024-07-25T15:15:55.010000"],["2024-07-25T15:15:56.010000"],["2024-07-25T15:15:57.010000"],["2024-07-25T15:15:58.010000"],["2024-07-25T15:15:59.010000"],["2024-07-25T15:16:00.010000"],["2024-07-25T15:16:01.010000"],["2024-07-25T15:16:02.010000"],["2024-07-25T15:16:03.010000"],["2024-07-25T15:16:04.010000"],["2024-07-25T15:16:05.010000"],["2024-07-25T15:16:06.010000"],["2024-07-25T15:16:07.010000"],["2024-07-25T15:16:08.010000"],["2024-07-25T15:16:09.010000"],["2024-07-25T15:16:10.010000"],["2024-07-25T15:16:11.010000"],["2024-07-25T15:16:12.010000"],["2024-07-25T15:16:13.010000"],["2024-07-25T15:16:14.010000"],["2024-07-25T15:16:15.010000"],["2024-07-25T15:16:16.010000"],["2024-07-25T15:16:17.010000"],["2024-07-25T15:16:18.010000"],["2024-07-25T15:16:19.010000"],["2024-07-25T15:16:20.010000"],["2024-07-25T15:16:21.010000"],["2024-07-25T15:16:22.010000"],["2024-07-25T15:16:23.010000"],["2024-07-25T15:16:24.010000"],["2024-07-25T15:16:25.010000"],["2024-07-25T15:16:26.010000"],["2024-07-25T15:16:27.010000"],["2024-07-25T15:16:28.010000"],["2024-07-25T15:16:29.010000"],["2024-07-25T15:16:30.010000"],["2024-07-25T15:16:31.010000"],["2024-07-25T15:16:32.010000"],["2024-07-25T15:16:33.010000"],["2024-07-25T15:16:34.010000"],["2024-07-25T15:16:35.010000"],["2024-07-25T15:16:36.010000"],["2024-07-25T15:16:37.010000"],["2024-07-25T15:16:38.010000"],["2024-07-25T15:16:39.010000"],["2024-07-25T15:16:40.010000"],["2024-07-25T15:16:41.010000"],["2024-07-25T15:16:42.010000"],["2024-07-25T15:16:43.010000"],["2024-07-25T15:16:44.010000"],["2024-07-25T15:16:45.010000"],["2024-07-25T15:16:46.010000"],["2024-07-25T15:16:47.010000"],["2024-07-25T15:16:48.010000"],["2024-07-25T15:16:49.010000"],["2024-07-25T15:16:50.010000"],["2024-07-25T15:16:51.010000"],["2024-07-25T15:16:52.010000"],["2024-07-25T15:16:53.010000"],["2024-07-25T15:16:54.010000"],["2024-07-25T15:16:55.010000"],["2024-07-25T15:16:56.010000"],["2024-07-25T15:16:57.010000"],["2024-07-25T15:16:58.010000"],["2024-07-25T15:16:59.010000"],["2024-07-25T15:17:00.010000"],["2024-07-25T15:17:01.010000"],["2024-07-25T15:17:02.010000"],["2024-07-25T15:17:03.010000"],["2024-07-25T15:17:04.010000"],["2024-07-25T15:17:05.010000"],["2024-07-25T15:17:06.010000"],["2024-07-25T15:17:07.010000"],["2024-07-25T15:17:08.010000"],["2024-07-25T15:17:09.010000"],["2024-07-25T15:17:10.010000"],["2024-07-25T15:17:11.010000"],["2024-07-25T15:17:12.010000"],["2024-07-25T15:17:13.010000"],["2024-07-25T15:17:14.010000"],["2024-07-25T15:17:15.010000"],["2024-07-25T15:17:16.010000"],["2024-07-25T15:17:17.010000"],["2024-07-25T15:17:18.010000"],["2024-07-25T15:17:19.010000"],["2024-07-25T15:17:20.010000"],["2024-07-25T15:17:21.010000"],["2024-07-25T15:17:22.010000"],["2024-07-25T15:17:23.010000"],["2024-07-25T15:17:24.010000"],["2024-07-25T15:17:25.010000"],["2024-07-25T15:17:26.010000"],["2024-07-25T15:17:27.010000"],["2024-07-25T15:17:28.010000"],["2024-07-25T15:17:29.010000"],["2024-07-25T15:17:30.010000"],["2024-07-25T15:17:31.010000"],["2024-07-25T15:17:32.010000"],["2024-07-25T15:17:33.010000"],["2024-07-25T15:17:34.010000"],["2024-07-25T15:17:35.010000"],["2024-07-25T15:17:36.010000"],["2024-07-25T15:17:37.010000"],["2024-07-25T15:17:38.010000"],["2024-07-25T15:17:39.010000"],["2024-07-25T15:17:40.010000"],["2024-07-25T15:17:41.010000"],["2024-07-25T15:17:42.010000"],["2024-07-25T15:17:43.010000"],["2024-07-25T15:17:44.010000"],["2024-07-25T15:17:45.010000"],["2024-07-25T15:17:46.010000"],["2024-07-25T15:17:47.010000"],["2024-07-25T15:17:48.010000"],["2024-07-25T15:17:49.010000"],["2024-07-25T15:17:50.010000"],["2024-07-25T15:17:51.010000"],["2024-07-25T15:17:52.010000"],["2024-07-25T15:17:53.010000"],["2024-07-25T15:17:54.010000"],["2024-07-25T15:17:55.010000"],["2024-07-25T15:17:56.010000"],["2024-07-25T15:17:57.010000"],["2024-07-25T15:17:58.010000"],["2024-07-25T15:17:59.010000"],["2024-07-25T15:18:00.010000"],["2024-07-25T15:18:01.010000"],["2024-07-25T15:18:02.010000"],["2024-07-25T15:18:03.010000"],["2024-07-25T15:18:04.010000"],["2024-07-25T15:18:05.010000"],["2024-07-25T15:18:06.010000"],["2024-07-25T15:18:07.010000"],["2024-07-25T15:18:08.010000"],["2024-07-25T15:18:09.010000"],["2024-07-25T15:18:10.010000"],["2024-07-25T15:18:11.010000"],["2024-07-25T15:18:12.010000"],["2024-07-25T15:18:13.010000"],["2024-07-25T15:18:14.010000"],["2024-07-25T15:18:15.010000"],["2024-07-25T15:18:16.010000"],["2024-07-25T15:18:17.010000"],["2024-07-25T15:18:18.010000"],["2024-07-25T15:18:19.010000"],["2024-07-25T15:18:20.010000"],["2024-07-25T15:18:21.010000"],["2024-07-25T15:18:22.010000"],["2024-07-25T15:18:23.010000"],["2024-07-25T15:18:24.010000"],["2024-07-25T15:18:25.010000"],["2024-07-25T15:18:26.010000"],["2024-07-25T15:18:27.010000"],["2024-07-25T15:18:28.010000"],["2024-07-25T15:18:29.010000"],["2024-07-25T15:18:30.010000"],["2024-07-25T15:18:31.010000"],["2024-07-25T15:18:32.010000"],["2024-07-25T15:18:33.010000"],["2024-07-25T15:18:34.010000"],["2024-07-25T15:18:35.010000"],["2024-07-25T15:18:36.010000"],["2024-07-25T15:18:37.010000"],["2024-07-25T15:18:38.010000"],["2024-07-25T15:18:39.010000"],["2024-07-25T15:18:40.010000"],["2024-07-25T15:18:41.010000"],["2024-07-25T15:18:42.010000"],["2024-07-25T15:18:43.010000"],["2024-07-25T15:18:44.010000"],["2024-07-25T15:18:45.010000"],["2024-07-25T15:18:46.010000"],["2024-07-25T15:18:47.010000"],["2024-07-25T15:18:48.010000"],["2024-07-25T15:18:49.010000"],["2024-07-25T15:18:50.010000"],["2024-07-25T15:18:51.010000"],["2024-07-25T15:18:52.010000"],["2024-07-25T15:18:53.010000"],["2024-07-25T15:18:54.010000"],["2024-07-25T15:18:55.010000"],["2024-07-25T15:18:56.010000"],["2024-07-25T15:18:57.010000"],["2024-07-25T15:18:58.010000"],["2024-07-25T15:18:59.010000"],["2024-07-25T15:19:00.010000"],["2024-07-25T15:19:01.010000"],["2024-07-25T15:19:02.010000"],["2024-07-25T15:19:03.010000"],["2024-07-25T15:19:04.010000"],["2024-07-25T15:19:05.010000"],["2024-07-25T15:19:06.010000"],["2024-07-25T15:19:07.010000"],["2024-07-25T15:19:08.010000"],["2024-07-25T15:19:09.010000"],["2024-07-25T15:19:10.010000"],["2024-07-25T15:19:11.010000"],["2024-07-25T15:19:12.010000"],["2024-07-25T15:19:13.010000"],["2024-07-25T15:19:14.010000"],["2024-07-25T15:19:15.010000"],["2024-07-25T15:19:16.010000"],["2024-07-25T15:19:17.010000"],["2024-07-25T15:19:18.010000"],["2024-07-25T15:19:19.010000"],["2024-07-25T15:19:20.010000"],["2024-07-25T15:19:21.010000"],["2024-07-25T15:19:22.010000"],["2024-07-25T15:19:23.010000"],["2024-07-25T15:19:24.010000"],["2024-07-25T15:19:25.010000"],["2024-07-25T15:19:26.010000"],["2024-07-25T15:19:27.010000"],["2024-07-25T15:19:28.010000"],["2024-07-25T15:19:29.010000"],["2024-07-25T15:19:30.010000"],["2024-07-25T15:19:31.010000"],["2024-07-25T15:19:32.010000"],["2024-07-25T15:19:33.010000"],["2024-07-25T15:19:34.010000"],["2024-07-25T15:19:35.010000"],["2024-07-25T15:19:36.010000"],["2024-07-25T15:19:37.010000"],["2024-07-25T15:19:38.010000"],["2024-07-25T15:19:39.010000"],["2024-07-25T15:19:40.010000"],["2024-07-25T15:19:41.010000"],["2024-07-25T15:19:42.010000"],["2024-07-25T15:19:43.010000"],["2024-07-25T15:19:44.010000"],["2024-07-25T15:19:45.010000"],["2024-07-25T15:19:46.010000"],["2024-07-25T15:19:47.010000"],["2024-07-25T15:19:48.010000"],["2024-07-25T15:19:49.010000"],["2024-07-25T15:19:50.010000"],["2024-07-25T15:19:51.010000"],["2024-07-25T15:19:52.010000"],["2024-07-25T15:19:53.010000"],["2024-07-25T15:19:54.010000"],["2024-07-25T15:19:55.010000"],["2024-07-25T15:19:56.010000"],["2024-07-25T15:19:57.010000"],["2024-07-25T15:19:58.010000"],["2024-07-25T15:19:59.010000"],["2024-07-25T15:20:00.010000"],["2024-07-25T15:20:01.010000"],["2024-07-25T15:20:02.010000"],["2024-07-25T15:20:03.010000"],["2024-07-25T15:20:04.010000"],["2024-07-25T15:20:05.010000"],["2024-07-25T15:20:06.010000"],["2024-07-25T15:20:07.010000"],["2024-07-25T15:20:08.010000"],["2024-07-25T15:20:09.010000"],["2024-07-25T15:20:10.010000"],["2024-07-25T15:20:11.010000"],["2024-07-25T15:20:12.010000"],["2024-07-25T15:20:13.010000"],["2024-07-25T15:20:14.010000"],["2024-07-25T15:20:15.010000"],["2024-07-25T15:20:16.010000"],["2024-07-25T15:20:17.010000"],["2024-07-25T15:20:18.010000"],["2024-07-25T15:20:19.010000"],["2024-07-25T15:20:20.010000"],["2024-07-25T15:20:21.010000"],["2024-07-25T15:20:22.010000"],["2024-07-25T15:20:23.010000"],["2024-07-25T15:20:24.010000"],["2024-07-25T15:20:25.010000"],["2024-07-25T15:20:26.010000"],["2024-07-25T15:20:27.010000"],["2024-07-25T15:20:28.010000"],["2024-07-25T15:20:29.010000"],["2024-07-25T15:20:30.010000"],["2024-07-25T15:20:31.010000"],["2024-07-25T15:20:32.010000"],["2024-07-25T15:20:33.010000"],["2024-07-25T15:20:34.010000"],["2024-07-25T15:20:35.010000"],["2024-07-25T15:20:36.010000"],["2024-07-25T15:20:37.010000"],["2024-07-25T15:20:38.010000"],["2024-07-25T15:20:39.010000"],["2024-07-25T15:20:40.010000"],["2024-07-25T15:20:41.010000"],["2024-07-25T15:20:42.010000"],["2024-07-25T15:20:43.010000"],["2024-07-25T15:20:44.010000"],["2024-07-25T15:20:45.010000"],["2024-07-25T15:20:46.010000"],["2024-07-25T15:20:47.010000"],["2024-07-25T15:20:48.010000"],["2024-07-25T15:20:49.010000"],["2024-07-25T15:20:50.010000"],["2024-07-25T15:20:51.010000"],["2024-07-25T15:20:52.010000"],["2024-07-25T15:20:53.010000"],["2024-07-25T15:20:54.010000"],["2024-07-25T15:20:55.010000"],["2024-07-25T15:20:56.010000"],["2024-07-25T15:20:57.010000"],["2024-07-25T15:20:58.010000"],["2024-07-25T15:20:59.010000"],["2024-07-25T15:21:00.010000"],["2024-07-25T15:21:01.010000"],["2024-07-25T15:21:02.010000"],["2024-07-25T15:21:03.010000"],["2024-07-25T15:21:04.010000"],["2024-07-25T15:21:05.010000"],["2024-07-25T15:21:06.010000"],["2024-07-25T15:21:07.010000"],["2024-07-25T15:21:08.010000"],["2024-07-25T15:21:09.010000"],["2024-07-25T15:21:10.010000"],["2024-07-25T15:21:11.010000"],["2024-07-25T15:21:12.010000"],["2024-07-25T15:21:13.010000"],["2024-07-25T15:21:14.010000"],["2024-07-25T15:21:15.010000"],["2024-07-25T15:21:16.010000"],["2024-07-25T15:21:17.010000"],["2024-07-25T15:21:18.010000"],["2024-07-25T15:21:19.010000"],["2024-07-25T15:21:20.010000"],["2024-07-25T15:21:21.010000"],["2024-07-25T15:21:22.010000"],["2024-07-25T15:21:23.010000"],["2024-07-25T15:21:24.010000"],["2024-07-25T15:21:25.010000"],["2024-07-25T15:21:26.010000"],["2024-07-25T15:21:27.010000"],["2024-07-25T15:21:28.010000"],["2024-07-25T15:21:29.010000"],["2024-07-25T15:21:30.010000"],["2024-07-25T15:21:31.010000"],["2024-07-25T15:21:32.010000"],["2024-07-25T15:21:33.010000"],["2024-07-25T15:21:34.010000"],["2024-07-25T15:21:35.010000"],["2024-07-25T15:21:36.010000"],["2024-07-25T15:21:37.010000"],["2024-07-25T15:21:38.010000"],["2024-07-25T15:21:39.010000"],["2024-07-25T15:21:40.010000"],["2024-07-25T15:21:41.010000"],["2024-07-25T15:21:42.010000"],["2024-07-25T15:21:43.010000"],["2024-07-25T15:21:44.010000"],["2024-07-25T15:21:45.010000"],["2024-07-25T15:21:46.010000"],["2024-07-25T15:21:47.010000"],["2024-07-25T15:21:48.010000"],["2024-07-25T15:21:49.010000"],["2024-07-25T15:21:50.010000"],["2024-07-25T15:21:51.010000"],["2024-07-25T15:21:52.010000"],["2024-07-25T15:21:53.010000"],["2024-07-25T15:21:54.010000"],["2024-07-25T15:21:55.010000"],["2024-07-25T15:21:56.010000"],["2024-07-25T15:21:57.010000"],["2024-07-25T15:21:58.010000"],["2024-07-25T15:21:59.010000"],["2024-07-25T15:22:00.010000"],["2024-07-25T15:22:01.010000"],["2024-07-25T15:22:02.010000"],["2024-07-25T15:22:03.010000"],["2024-07-25T15:22:04.010000"],["2024-07-25T15:22:05.010000"],["2024-07-25T15:22:06.010000"],["2024-07-25T15:22:07.010000"],["2024-07-25T15:22:08.010000"],["2024-07-25T15:22:09.010000"],["2024-07-25T15:22:10.010000"],["2024-07-25T15:22:11.010000"],["2024-07-25T15:22:12.010000"],["2024-07-25T15:22:13.010000"],["2024-07-25T15:22:14.010000"],["2024-07-25T15:22:15.010000"],["2024-07-25T15:22:16.010000"],["2024-07-25T15:22:17.010000"],["2024-07-25T15:22:18.010000"],["2024-07-25T15:22:19.010000"],["2024-07-25T15:22:20.010000"],["2024-07-25T15:22:21.010000"],["2024-07-25T15:22:22.010000"],["2024-07-25T15:22:23.010000"],["2024-07-25T15:22:24.010000"],["2024-07-25T15:22:25.010000"],["2024-07-25T15:22:26.010000"],["2024-07-25T15:22:27.010000"],["2024-07-25T15:22:28.010000"],["2024-07-25T15:22:29.010000"],["2024-07-25T15:22:30.010000"],["2024-07-25T15:22:31.010000"],["2024-07-25T15:22:32.010000"],["2024-07-25T15:22:33.010000"],["2024-07-25T15:22:34.010000"],["2024-07-25T15:22:35.010000"],["2024-07-25T15:22:36.010000"],["2024-07-25T15:22:37.010000"],["2024-07-25T15:22:38.010000"],["2024-07-25T15:22:39.010000"],["2024-07-25T15:22:40.010000"],["2024-07-25T15:22:41.010000"],["2024-07-25T15:22:42.010000"],["2024-07-25T15:22:43.010000"],["2024-07-25T15:22:44.010000"],["2024-07-25T15:22:45.010000"],["2024-07-25T15:22:46.010000"],["2024-07-25T15:22:47.010000"],["2024-07-25T15:22:48.010000"],["2024-07-25T15:22:49.010000"],["2024-07-25T15:22:50.010000"],["2024-07-25T15:22:51.010000"],["2024-07-25T15:22:52.010000"],["2024-07-25T15:22:53.010000"],["2024-07-25T15:22:54.010000"],["2024-07-25T15:22:55.010000"],["2024-07-25T15:22:56.010000"],["2024-07-25T15:22:57.010000"],["2024-07-25T15:22:58.010000"],["2024-07-25T15:22:59.010000"],["2024-07-25T15:23:00.010000"],["2024-07-25T15:23:01.010000"],["2024-07-25T15:23:02.010000"],["2024-07-25T15:23:03.010000"],["2024-07-25T15:23:04.010000"],["2024-07-25T15:23:05.010000"],["2024-07-25T15:23:06.010000"],["2024-07-25T15:23:07.010000"],["2024-07-25T15:23:08.010000"],["2024-07-25T15:23:09.010000"],["2024-07-25T15:23:10.010000"],["2024-07-25T15:23:11.010000"],["2024-07-25T15:23:12.010000"],["2024-07-25T15:23:13.010000"],["2024-07-25T15:23:14.010000"],["2024-07-25T15:23:15.010000"],["2024-07-25T15:23:16.010000"],["2024-07-25T15:23:17.010000"],["2024-07-25T15:23:18.010000"],["2024-07-25T15:23:19.010000"],["2024-07-25T15:23:20.010000"],["2024-07-25T15:23:21.010000"],["2024-07-25T15:23:22.010000"],["2024-07-25T15:23:23.010000"],["2024-07-25T15:23:24.010000"],["2024-07-25T15:23:25.010000"],["2024-07-25T15:23:26.010000"],["2024-07-25T15:23:27.010000"],["2024-07-25T15:23:28.010000"],["2024-07-25T15:23:29.010000"],["2024-07-25T15:23:30.010000"],["2024-07-25T15:23:31.010000"],["2024-07-25T15:23:32.010000"],["2024-07-25T15:23:33.010000"],["2024-07-25T15:23:34.010000"],["2024-07-25T15:23:35.010000"],["2024-07-25T15:23:36.010000"],["2024-07-25T15:23:37.010000"],["2024-07-25T15:23:38.010000"],["2024-07-25T15:23:39.010000"],["2024-07-25T15:23:40.010000"],["2024-07-25T15:23:41.010000"],["2024-07-25T15:23:42.010000"],["2024-07-25T15:23:43.010000"],["2024-07-25T15:23:44.010000"],["2024-07-25T15:23:45.010000"],["2024-07-25T15:23:46.010000"],["2024-07-25T15:23:47.010000"],["2024-07-25T15:23:48.010000"],["2024-07-25T15:23:49.010000"],["2024-07-25T15:23:50.010000"],["2024-07-25T15:23:51.010000"],["2024-07-25T15:23:52.010000"],["2024-07-25T15:23:53.010000"],["2024-07-25T15:23:54.010000"],["2024-07-25T15:23:55.010000"],["2024-07-25T15:23:56.010000"],["2024-07-25T15:23:57.010000"],["2024-07-25T15:23:58.010000"],["2024-07-25T15:23:59.010000"],["2024-07-25T15:24:00.010000"],["2024-07-25T15:24:01.010000"],["2024-07-25T15:24:02.010000"],["2024-07-25T15:24:03.010000"],["2024-07-25T15:24:04.010000"],["2024-07-25T15:24:05.010000"],["2024-07-25T15:24:06.010000"],["2024-07-25T15:24:07.010000"],["2024-07-25T15:24:08.010000"],["2024-07-25T15:24:09.010000"],["2024-07-25T15:24:10.010000"],["2024-07-25T15:24:11.010000"],["2024-07-25T15:24:12.010000"],["2024-07-25T15:24:13.010000"],["2024-07-25T15:24:14.010000"],["2024-07-25T15:24:15.010000"],["2024-07-25T15:24:16.010000"],["2024-07-25T15:24:17.010000"],["2024-07-25T15:24:18.010000"],["2024-07-25T15:24:19.010000"],["2024-07-25T15:24:20.010000"],["2024-07-25T15:24:21.010000"],["2024-07-25T15:24:22.010000"],["2024-07-25T15:24:23.010000"],["2024-07-25T15:24:24.010000"],["2024-07-25T15:24:25.010000"],["2024-07-25T15:24:26.010000"],["2024-07-25T15:24:27.010000"],["2024-07-25T15:24:28.010000"],["2024-07-25T15:24:29.010000"],["2024-07-25T15:24:30.010000"],["2024-07-25T15:24:31.010000"],["2024-07-25T15:24:32.010000"],["2024-07-25T15:24:33.010000"],["2024-07-25T15:24:34.010000"],["2024-07-25T15:24:35.010000"],["2024-07-25T15:24:36.010000"],["2024-07-25T15:24:37.010000"],["2024-07-25T15:24:38.010000"],["2024-07-25T15:24:39.010000"],["2024-07-25T15:24:40.010000"],["2024-07-25T15:24:41.010000"],["2024-07-25T15:24:42.010000"],["2024-07-25T15:24:43.010000"],["2024-07-25T15:24:44.010000"],["2024-07-25T15:24:45.010000"],["2024-07-25T15:24:46.010000"],["2024-07-25T15:24:47.010000"],["2024-07-25T15:24:48.010000"],["2024-07-25T15:24:49.010000"],["2024-07-25T15:24:50.010000"],["2024-07-25T15:24:51.010000"],["2024-07-25T15:24:52.010000"],["2024-07-25T15:24:53.010000"],["2024-07-25T15:24:54.010000"],["2024-07-25T15:24:55.010000"],["2024-07-25T15:24:56.010000"],["2024-07-25T15:24:57.010000"],["2024-07-25T15:24:58.010000"],["2024-07-25T15:24:59.010000"],["2024-07-25T15:25:00.010000"],["2024-07-25T15:25:01.010000"],["2024-07-25T15:25:02.010000"],["2024-07-25T15:25:03.010000"],["2024-07-25T15:25:04.010000"],["2024-07-25T15:25:05.010000"],["2024-07-25T15:25:06.010000"],["2024-07-25T15:25:07.010000"],["2024-07-25T15:25:08.010000"],["2024-07-25T15:25:09.010000"],["2024-07-25T15:25:10.010000"],["2024-07-25T15:25:11.010000"],["2024-07-25T15:25:12.010000"],["2024-07-25T15:25:13.010000"],["2024-07-25T15:25:14.010000"],["2024-07-25T15:25:15.010000"],["2024-07-25T15:25:16.010000"],["2024-07-25T15:25:17.010000"],["2024-07-25T15:25:18.010000"],["2024-07-25T15:25:19.010000"],["2024-07-25T15:25:20.010000"],["2024-07-25T15:25:21.010000"],["2024-07-25T15:25:22.010000"],["2024-07-25T15:25:23.010000"],["2024-07-25T15:25:24.010000"],["2024-07-25T15:25:25.010000"],["2024-07-25T15:25:26.010000"],["2024-07-25T15:25:27.010000"],["2024-07-25T15:25:28.010000"],["2024-07-25T15:25:29.010000"],["2024-07-25T15:25:30.010000"],["2024-07-25T15:25:31.010000"],["2024-07-25T15:25:32.010000"],["2024-07-25T15:25:33.010000"],["2024-07-25T15:25:34.010000"],["2024-07-25T15:25:35.010000"],["2024-07-25T15:25:36.010000"],["2024-07-25T15:25:37.010000"],["2024-07-25T15:25:38.010000"],["2024-07-25T15:25:39.010000"],["2024-07-25T15:25:40.010000"],["2024-07-25T15:25:41.010000"],["2024-07-25T15:25:42.010000"],["2024-07-25T15:25:43.010000"],["2024-07-25T15:25:44.010000"],["2024-07-25T15:25:45.010000"],["2024-07-25T15:25:46.010000"],["2024-07-25T15:25:47.010000"],["2024-07-25T15:25:48.010000"],["2024-07-25T15:25:49.010000"],["2024-07-25T15:25:50.010000"],["2024-07-25T15:25:51.010000"],["2024-07-25T15:25:52.010000"],["2024-07-25T15:25:53.010000"],["2024-07-25T15:25:54.010000"],["2024-07-25T15:25:55.010000"],["2024-07-25T15:25:56.010000"],["2024-07-25T15:25:57.010000"],["2024-07-25T15:25:58.010000"],["2024-07-25T15:25:59.010000"],["2024-07-25T15:26:00.010000"],["2024-07-25T15:26:01.010000"],["2024-07-25T15:26:02.010000"],["2024-07-25T15:26:03.010000"],["2024-07-25T15:26:04.010000"],["2024-07-25T15:26:05.010000"],["2024-07-25T15:26:06.010000"],["2024-07-25T15:26:07.010000"],["2024-07-25T15:26:08.010000"],["2024-07-25T15:26:09.010000"],["2024-07-25T15:26:10.010000"],["2024-07-25T15:26:11.010000"],["2024-07-25T15:26:12.010000"],["2024-07-25T15:26:13.010000"],["2024-07-25T15:26:14.010000"],["2024-07-25T15:26:15.010000"],["2024-07-25T15:26:16.010000"],["2024-07-25T15:26:17.010000"],["2024-07-25T15:26:18.010000"],["2024-07-25T15:26:19.010000"],["2024-07-25T15:26:20.010000"],["2024-07-25T15:26:21.010000"],["2024-07-25T15:26:22.010000"],["2024-07-25T15:26:23.010000"],["2024-07-25T15:26:24.010000"],["2024-07-25T15:26:25.010000"],["2024-07-25T15:26:26.010000"],["2024-07-25T15:26:27.010000"],["2024-07-25T15:26:28.010000"],["2024-07-25T15:26:29.010000"],["2024-07-25T15:26:30.010000"],["2024-07-25T15:26:31.010000"],["2024-07-25T15:26:32.010000"],["2024-07-25T15:26:33.010000"],["2024-07-25T15:26:34.010000"],["2024-07-25T15:26:35.010000"],["2024-07-25T15:26:36.010000"],["2024-07-25T15:26:37.010000"],["2024-07-25T15:26:38.010000"],["2024-07-25T15:26:39.010000"],["2024-07-25T15:26:40.010000"],["2024-07-25T15:26:41.010000"],["2024-07-25T15:26:42.010000"],["2024-07-25T15:26:43.010000"],["2024-07-25T15:26:44.010000"],["2024-07-25T15:26:45.010000"],["2024-07-25T15:26:46.010000"],["2024-07-25T15:26:47.010000"],["2024-07-25T15:26:48.010000"],["2024-07-25T15:26:49.010000"],["2024-07-25T15:26:50.010000"],["2024-07-25T15:26:51.010000"],["2024-07-25T15:26:52.010000"],["2024-07-25T15:26:53.010000"],["2024-07-25T15:26:54.010000"],["2024-07-25T15:26:55.010000"],["2024-07-25T15:26:56.010000"],["2024-07-25T15:26:57.010000"],["2024-07-25T15:26:58.010000"],["2024-07-25T15:26:59.010000"],["2024-07-25T15:27:00.010000"],["2024-07-25T15:27:01.010000"],["2024-07-25T15:27:02.010000"],["2024-07-25T15:27:03.010000"],["2024-07-25T15:27:04.010000"],["2024-07-25T15:27:05.010000"],["2024-07-25T15:27:06.010000"],["2024-07-25T15:27:07.010000"],["2024-07-25T15:27:08.010000"],["2024-07-25T15:27:09.010000"],["2024-07-25T15:27:10.010000"],["2024-07-25T15:27:11.010000"],["2024-07-25T15:27:12.010000"],["2024-07-25T15:27:13.010000"],["2024-07-25T15:27:14.010000"],["2024-07-25T15:27:15.010000"],["2024-07-25T15:27:16.010000"],["2024-07-25T15:27:17.010000"],["2024-07-25T15:27:18.010000"],["2024-07-25T15:27:19.010000"],["2024-07-25T15:27:20.010000"],["2024-07-25T15:27:21.010000"],["2024-07-25T15:27:22.010000"],["2024-07-25T15:27:23.010000"],["2024-07-25T15:27:24.010000"],["2024-07-25T15:27:25.010000"],["2024-07-25T15:27:26.010000"],["2024-07-25T15:27:27.010000"],["2024-07-25T15:27:28.010000"],["2024-07-25T15:27:29.010000"],["2024-07-25T15:27:30.010000"],["2024-07-25T15:27:31.010000"],["2024-07-25T15:27:32.010000"],["2024-07-25T15:27:33.010000"],["2024-07-25T15:27:34.010000"],["2024-07-25T15:27:35.010000"],["2024-07-25T15:27:36.010000"],["2024-07-25T15:27:37.010000"],["2024-07-25T15:27:38.010000"],["2024-07-25T15:27:39.010000"],["2024-07-25T15:27:40.010000"],["2024-07-25T15:27:41.010000"],["2024-07-25T15:27:42.010000"],["2024-07-25T15:27:43.010000"],["2024-07-25T15:27:44.010000"],["2024-07-25T15:27:45.010000"],["2024-07-25T15:27:46.010000"],["2024-07-25T15:27:47.010000"],["2024-07-25T15:27:48.010000"],["2024-07-25T15:27:49.010000"],["2024-07-25T15:27:50.010000"],["2024-07-25T15:27:51.010000"],["2024-07-25T15:27:52.010000"],["2024-07-25T15:27:53.010000"],["2024-07-25T15:27:54.010000"],["2024-07-25T15:27:55.010000"],["2024-07-25T15:27:56.010000"],["2024-07-25T15:27:57.010000"],["2024-07-25T15:27:58.010000"],["2024-07-25T15:27:59.010000"],["2024-07-25T15:28:00.010000"],["2024-07-25T15:28:01.010000"],["2024-07-25T15:28:02.010000"],["2024-07-25T15:28:03.010000"],["2024-07-25T15:28:04.010000"],["2024-07-25T15:28:05.010000"],["2024-07-25T15:28:06.010000"],["2024-07-25T15:28:07.010000"],["2024-07-25T15:28:08.010000"],["2024-07-25T15:28:09.010000"],["2024-07-25T15:28:10.010000"],["2024-07-25T15:28:11.010000"],["2024-07-25T15:28:12.010000"],["2024-07-25T15:28:13.010000"],["2024-07-25T15:28:14.010000"],["2024-07-25T15:28:15.010000"],["2024-07-25T15:28:16.010000"],["2024-07-25T15:28:17.010000"],["2024-07-25T15:28:18.010000"],["2024-07-25T15:28:19.010000"],["2024-07-25T15:28:20.010000"],["2024-07-25T15:28:21.010000"],["2024-07-25T15:28:22.010000"],["2024-07-25T15:28:23.010000"],["2024-07-25T15:28:24.010000"],["2024-07-25T15:28:25.010000"],["2024-07-25T15:28:26.010000"],["2024-07-25T15:28:27.010000"],["2024-07-25T15:28:28.010000"],["2024-07-25T15:28:29.010000"],["2024-07-25T15:28:30.010000"],["2024-07-25T15:28:31.010000"],["2024-07-25T15:28:32.010000"],["2024-07-25T15:28:33.010000"],["2024-07-25T15:28:34.010000"],["2024-07-25T15:28:35.010000"],["2024-07-25T15:28:36.010000"],["2024-07-25T15:28:37.010000"],["2024-07-25T15:28:38.010000"],["2024-07-25T15:28:39.010000"],["2024-07-25T15:28:40.010000"],["2024-07-25T15:28:41.010000"],["2024-07-25T15:28:42.010000"],["2024-07-25T15:28:43.010000"],["2024-07-25T15:28:44.010000"],["2024-07-25T15:28:45.010000"],["2024-07-25T15:28:46.010000"],["2024-07-25T15:28:47.010000"],["2024-07-25T15:28:48.010000"],["2024-07-25T15:28:49.010000"],["2024-07-25T15:28:50.010000"],["2024-07-25T15:28:51.010000"],["2024-07-25T15:28:52.010000"],["2024-07-25T15:28:53.010000"],["2024-07-25T15:28:54.010000"],["2024-07-25T15:28:55.010000"],["2024-07-25T15:28:56.010000"],["2024-07-25T15:28:57.010000"],["2024-07-25T15:28:58.010000"],["2024-07-25T15:28:59.010000"],["2024-07-25T15:29:00.010000"],["2024-07-25T15:29:01.010000"],["2024-07-25T15:29:02.010000"],["2024-07-25T15:29:03.010000"],["2024-07-25T15:29:04.010000"],["2024-07-25T15:29:05.010000"],["2024-07-25T15:29:06.010000"],["2024-07-25T15:29:07.010000"],["2024-07-25T15:29:08.010000"],["2024-07-25T15:29:09.010000"],["2024-07-25T15:29:10.010000"],["2024-07-25T15:29:11.010000"],["2024-07-25T15:29:12.010000"],["2024-07-25T15:29:13.010000"],["2024-07-25T15:29:14.010000"],["2024-07-25T15:29:15.010000"],["2024-07-25T15:29:16.010000"],["2024-07-25T15:29:17.010000"],["2024-07-25T15:29:18.010000"],["2024-07-25T15:29:19.010000"],["2024-07-25T15:29:20.010000"],["2024-07-25T15:29:21.010000"],["2024-07-25T15:29:22.010000"],["2024-07-25T15:29:23.010000"],["2024-07-25T15:29:24.010000"],["2024-07-25T15:29:25.010000"],["2024-07-25T15:29:26.010000"],["2024-07-25T15:29:27.010000"],["2024-07-25T15:29:28.010000"],["2024-07-25T15:29:29.010000"],["2024-07-25T15:29:30.010000"],["2024-07-25T15:29:31.010000"],["2024-07-25T15:29:32.010000"],["2024-07-25T15:29:33.010000"],["2024-07-25T15:29:34.010000"],["2024-07-25T15:29:35.010000"],["2024-07-25T15:29:36.010000"],["2024-07-25T15:29:37.010000"],["2024-07-25T15:29:38.010000"],["2024-07-25T15:29:39.010000"],["2024-07-25T15:29:40.010000"],["2024-07-25T15:29:41.010000"],["2024-07-25T15:29:42.010000"],["2024-07-25T15:29:43.010000"],["2024-07-25T15:29:44.010000"],["2024-07-25T15:29:45.010000"],["2024-07-25T15:29:46.010000"],["2024-07-25T15:29:47.010000"],["2024-07-25T15:29:48.010000"],["2024-07-25T15:29:49.010000"],["2024-07-25T15:29:50.010000"],["2024-07-25T15:29:51.010000"],["2024-07-25T15:29:52.010000"],["2024-07-25T15:29:53.010000"],["2024-07-25T15:29:54.010000"],["2024-07-25T15:29:55.010000"],["2024-07-25T15:29:56.010000"],["2024-07-25T15:29:57.010000"],["2024-07-25T15:29:58.010000"],["2024-07-25T15:29:59.010000"],["2024-07-25T15:30:00.010000"],["2024-07-25T15:30:01.010000"],["2024-07-25T15:30:02.010000"],["2024-07-25T15:30:03.010000"],["2024-07-25T15:30:04.010000"],["2024-07-25T15:30:05.010000"],["2024-07-25T15:30:06.010000"],["2024-07-25T15:30:07.010000"],["2024-07-25T15:30:08.010000"],["2024-07-25T15:30:09.010000"],["2024-07-25T15:30:10.010000"],["2024-07-25T15:30:11.010000"],["2024-07-25T15:30:12.010000"],["2024-07-25T15:30:13.010000"],["2024-07-25T15:30:14.010000"],["2024-07-25T15:30:15.010000"],["2024-07-25T15:30:16.010000"],["2024-07-25T15:30:17.010000"],["2024-07-25T15:30:18.010000"],["2024-07-25T15:30:19.010000"],["2024-07-25T15:30:20.010000"],["2024-07-25T15:30:21.010000"],["2024-07-25T15:30:22.010000"],["2024-07-25T15:30:23.010000"],["2024-07-25T15:30:24.010000"],["2024-07-25T15:30:25.010000"],["2024-07-25T15:30:26.010000"],["2024-07-25T15:30:27.010000"],["2024-07-25T15:30:28.010000"],["2024-07-25T15:30:29.010000"],["2024-07-25T15:30:30.010000"],["2024-07-25T15:30:31.010000"],["2024-07-25T15:30:32.010000"],["2024-07-25T15:30:33.010000"],["2024-07-25T15:30:34.010000"],["2024-07-25T15:30:35.010000"],["2024-07-25T15:30:36.010000"],["2024-07-25T15:30:37.010000"],["2024-07-25T15:30:38.010000"],["2024-07-25T15:30:39.010000"],["2024-07-25T15:30:40.010000"],["2024-07-25T15:30:41.010000"],["2024-07-25T15:30:42.010000"],["2024-07-25T15:30:43.010000"],["2024-07-25T15:30:44.010000"],["2024-07-25T15:30:45.010000"],["2024-07-25T15:30:46.010000"],["2024-07-25T15:30:47.010000"],["2024-07-25T15:30:48.010000"],["2024-07-25T15:30:49.010000"],["2024-07-25T15:30:50.010000"],["2024-07-25T15:30:51.010000"],["2024-07-25T15:30:52.010000"],["2024-07-25T15:30:53.010000"],["2024-07-25T15:30:54.010000"],["2024-07-25T15:30:55.010000"],["2024-07-25T15:30:56.010000"],["2024-07-25T15:30:57.010000"],["2024-07-25T15:30:58.010000"],["2024-07-25T15:30:59.010000"],["2024-07-25T15:31:00.010000"],["2024-07-25T15:31:01.010000"],["2024-07-25T15:31:02.010000"],["2024-07-25T15:31:03.010000"],["2024-07-25T15:31:04.010000"],["2024-07-25T15:31:05.010000"],["2024-07-25T15:31:06.010000"],["2024-07-25T15:31:07.010000"],["2024-07-25T15:31:08.010000"],["2024-07-25T15:31:09.010000"],["2024-07-25T15:31:10.010000"],["2024-07-25T15:31:11.010000"],["2024-07-25T15:31:12.010000"],["2024-07-25T15:31:13.010000"],["2024-07-25T15:31:14.010000"],["2024-07-25T15:31:15.010000"],["2024-07-25T15:31:16.010000"],["2024-07-25T15:31:17.010000"],["2024-07-25T15:31:18.010000"],["2024-07-25T15:31:19.010000"],["2024-07-25T15:31:20.010000"],["2024-07-25T15:31:21.010000"],["2024-07-25T15:31:22.010000"],["2024-07-25T15:31:23.010000"],["2024-07-25T15:31:24.010000"],["2024-07-25T15:31:25.010000"],["2024-07-25T15:31:26.010000"],["2024-07-25T15:31:27.010000"],["2024-07-25T15:31:28.010000"],["2024-07-25T15:31:29.010000"],["2024-07-25T15:31:30.010000"],["2024-07-25T15:31:31.010000"],["2024-07-25T15:31:32.010000"],["2024-07-25T15:31:33.010000"],["2024-07-25T15:31:34.010000"],["2024-07-25T15:31:35.010000"],["2024-07-25T15:31:36.010000"],["2024-07-25T15:31:37.010000"],["2024-07-25T15:31:38.010000"],["2024-07-25T15:31:39.010000"],["2024-07-25T15:31:40.010000"],["2024-07-25T15:31:41.010000"],["2024-07-25T15:31:42.010000"],["2024-07-25T15:31:43.010000"],["2024-07-25T15:31:44.010000"],["2024-07-25T15:31:45.010000"],["2024-07-25T15:31:46.010000"],["2024-07-25T15:31:47.010000"],["2024-07-25T15:31:48.010000"],["2024-07-25T15:31:49.010000"],["2024-07-25T15:31:50.010000"],["2024-07-25T15:31:51.010000"],["2024-07-25T15:31:52.010000"],["2024-07-25T15:31:53.010000"],["2024-07-25T15:31:54.010000"],["2024-07-25T15:31:55.010000"],["2024-07-25T15:31:56.010000"],["2024-07-25T15:31:57.010000"],["2024-07-25T15:31:58.010000"],["2024-07-25T15:31:59.010000"],["2024-07-25T15:32:00.010000"],["2024-07-25T15:32:01.010000"],["2024-07-25T15:32:02.010000"],["2024-07-25T15:32:03.010000"],["2024-07-25T15:32:04.010000"],["2024-07-25T15:32:05.010000"],["2024-07-25T15:32:06.010000"],["2024-07-25T15:32:07.010000"],["2024-07-25T15:32:08.010000"],["2024-07-25T15:32:09.010000"],["2024-07-25T15:32:10.010000"],["2024-07-25T15:32:11.010000"],["2024-07-25T15:32:12.010000"],["2024-07-25T15:32:13.010000"],["2024-07-25T15:32:14.010000"],["2024-07-25T15:32:15.010000"],["2024-07-25T15:32:16.010000"],["2024-07-25T15:32:17.010000"],["2024-07-25T15:32:18.010000"],["2024-07-25T15:32:19.010000"],["2024-07-25T15:32:20.010000"],["2024-07-25T15:32:21.010000"],["2024-07-25T15:32:22.010000"],["2024-07-25T15:32:23.010000"],["2024-07-25T15:32:24.010000"],["2024-07-25T15:32:25.010000"],["2024-07-25T15:32:26.010000"],["2024-07-25T15:32:27.010000"],["2024-07-25T15:32:28.010000"],["2024-07-25T15:32:29.010000"],["2024-07-25T15:32:30.010000"],["2024-07-25T15:32:31.010000"],["2024-07-25T15:32:32.010000"],["2024-07-25T15:32:33.010000"],["2024-07-25T15:32:34.010000"],["2024-07-25T15:32:35.010000"],["2024-07-25T15:32:36.010000"],["2024-07-25T15:32:37.010000"],["2024-07-25T15:32:38.010000"],["2024-07-25T15:32:39.010000"],["2024-07-25T15:32:40.010000"],["2024-07-25T15:32:41.010000"],["2024-07-25T15:32:42.010000"],["2024-07-25T15:32:43.010000"],["2024-07-25T15:32:44.010000"],["2024-07-25T15:32:45.010000"],["2024-07-25T15:32:46.010000"],["2024-07-25T15:32:47.010000"],["2024-07-25T15:32:48.010000"],["2024-07-25T15:32:49.010000"],["2024-07-25T15:32:50.010000"],["2024-07-25T15:32:51.010000"],["2024-07-25T15:32:52.010000"],["2024-07-25T15:32:53.010000"],["2024-07-25T15:32:54.010000"],["2024-07-25T15:32:55.010000"],["2024-07-25T15:32:56.010000"],["2024-07-25T15:32:57.010000"],["2024-07-25T15:32:58.010000"],["2024-07-25T15:32:59.010000"],["2024-07-25T15:33:00.010000"],["2024-07-25T15:33:01.010000"],["2024-07-25T15:33:02.010000"],["2024-07-25T15:33:03.010000"],["2024-07-25T15:33:04.010000"],["2024-07-25T15:33:05.010000"],["2024-07-25T15:33:06.010000"],["2024-07-25T15:33:07.010000"],["2024-07-25T15:33:08.010000"],["2024-07-25T15:33:09.010000"],["2024-07-25T15:33:10.010000"],["2024-07-25T15:33:11.010000"],["2024-07-25T15:33:12.010000"],["2024-07-25T15:33:13.010000"],["2024-07-25T15:33:14.010000"],["2024-07-25T15:33:15.010000"],["2024-07-25T15:33:16.010000"],["2024-07-25T15:33:17.010000"],["2024-07-25T15:33:18.010000"],["2024-07-25T15:33:19.010000"],["2024-07-25T15:33:20.010000"],["2024-07-25T15:33:21.010000"],["2024-07-25T15:33:22.010000"],["2024-07-25T15:33:23.010000"],["2024-07-25T15:33:24.010000"],["2024-07-25T15:33:25.010000"],["2024-07-25T15:33:26.010000"],["2024-07-25T15:33:27.010000"],["2024-07-25T15:33:28.010000"],["2024-07-25T15:33:29.010000"],["2024-07-25T15:33:30.010000"],["2024-07-25T15:33:31.010000"],["2024-07-25T15:33:32.010000"],["2024-07-25T15:33:33.010000"],["2024-07-25T15:33:34.010000"],["2024-07-25T15:33:35.010000"],["2024-07-25T15:33:36.010000"],["2024-07-25T15:33:37.010000"],["2024-07-25T15:33:38.010000"],["2024-07-25T15:33:39.010000"],["2024-07-25T15:33:40.010000"],["2024-07-25T15:33:41.010000"],["2024-07-25T15:33:42.010000"],["2024-07-25T15:33:43.010000"],["2024-07-25T15:33:44.010000"],["2024-07-25T15:33:45.010000"],["2024-07-25T15:33:46.010000"],["2024-07-25T15:33:47.010000"],["2024-07-25T15:33:48.010000"],["2024-07-25T15:33:49.010000"],["2024-07-25T15:33:50.010000"],["2024-07-25T15:33:51.010000"],["2024-07-25T15:33:52.010000"],["2024-07-25T15:33:53.010000"],["2024-07-25T15:33:54.010000"],["2024-07-25T15:33:55.010000"],["2024-07-25T15:33:56.010000"],["2024-07-25T15:33:57.010000"],["2024-07-25T15:33:58.010000"],["2024-07-25T15:33:59.010000"],["2024-07-25T15:34:00.010000"],["2024-07-25T15:34:01.010000"],["2024-07-25T15:34:02.010000"],["2024-07-25T15:34:03.010000"],["2024-07-25T15:34:04.010000"],["2024-07-25T15:34:05.010000"],["2024-07-25T15:34:06.010000"],["2024-07-25T15:34:07.010000"],["2024-07-25T15:34:08.010000"],["2024-07-25T15:34:09.010000"],["2024-07-25T15:34:10.010000"],["2024-07-25T15:34:11.010000"],["2024-07-25T15:34:12.010000"],["2024-07-25T15:34:13.010000"],["2024-07-25T15:34:14.010000"],["2024-07-25T15:34:15.010000"],["2024-07-25T15:34:16.010000"],["2024-07-25T15:34:17.010000"],["2024-07-25T15:34:18.010000"],["2024-07-25T15:34:19.010000"],["2024-07-25T15:34:20.010000"],["2024-07-25T15:34:21.010000"],["2024-07-25T15:34:22.010000"],["2024-07-25T15:34:23.010000"],["2024-07-25T15:34:24.010000"],["2024-07-25T15:34:25.010000"],["2024-07-25T15:34:26.010000"],["2024-07-25T15:34:27.010000"],["2024-07-25T15:34:28.010000"],["2024-07-25T15:34:29.010000"],["2024-07-25T15:34:30.010000"],["2024-07-25T15:34:31.010000"],["2024-07-25T15:34:32.010000"],["2024-07-25T15:34:33.010000"],["2024-07-25T15:34:34.010000"],["2024-07-25T15:34:35.010000"],["2024-07-25T15:34:36.010000"],["2024-07-25T15:34:37.010000"],["2024-07-25T15:34:38.010000"],["2024-07-25T15:34:39.010000"],["2024-07-25T15:34:40.010000"],["2024-07-25T15:34:41.010000"],["2024-07-25T15:34:42.010000"],["2024-07-25T15:34:43.010000"],["2024-07-25T15:34:44.010000"],["2024-07-25T15:34:45.010000"],["2024-07-25T15:34:46.010000"],["2024-07-25T15:34:47.010000"],["2024-07-25T15:34:48.010000"],["2024-07-25T15:34:49.010000"],["2024-07-25T15:34:50.010000"],["2024-07-25T15:34:51.010000"],["2024-07-25T15:34:52.010000"],["2024-07-25T15:34:53.010000"],["2024-07-25T15:34:54.010000"],["2024-07-25T15:34:55.010000"],["2024-07-25T15:34:56.010000"],["2024-07-25T15:34:57.010000"],["2024-07-25T15:34:58.010000"],["2024-07-25T15:34:59.010000"],["2024-07-25T15:35:00.010000"],["2024-07-25T15:35:01.010000"],["2024-07-25T15:35:02.010000"],["2024-07-25T15:35:03.010000"],["2024-07-25T15:35:04.010000"],["2024-07-25T15:35:05.010000"],["2024-07-25T15:35:06.010000"],["2024-07-25T15:35:07.010000"],["2024-07-25T15:35:08.010000"],["2024-07-25T15:35:09.010000"],["2024-07-25T15:35:10.010000"],["2024-07-25T15:35:11.010000"],["2024-07-25T15:35:12.010000"],["2024-07-25T15:35:13.010000"],["2024-07-25T15:35:14.010000"],["2024-07-25T15:35:15.010000"],["2024-07-25T15:35:16.010000"],["2024-07-25T15:35:17.010000"],["2024-07-25T15:35:18.010000"],["2024-07-25T15:35:19.010000"],["2024-07-25T15:35:20.010000"],["2024-07-25T15:35:21.010000"],["2024-07-25T15:35:22.010000"],["2024-07-25T15:35:23.010000"],["2024-07-25T15:35:24.010000"],["2024-07-25T15:35:25.010000"],["2024-07-25T15:35:26.010000"],["2024-07-25T15:35:27.010000"],["2024-07-25T15:35:28.010000"],["2024-07-25T15:35:29.010000"],["2024-07-25T15:35:30.010000"],["2024-07-25T15:35:31.010000"],["2024-07-25T15:35:32.010000"],["2024-07-25T15:35:33.010000"],["2024-07-25T15:35:34.010000"],["2024-07-25T15:35:35.010000"],["2024-07-25T15:35:36.010000"],["2024-07-25T15:35:37.010000"],["2024-07-25T15:35:38.010000"],["2024-07-25T15:35:39.010000"],["2024-07-25T15:35:40.010000"],["2024-07-25T15:35:41.010000"],["2024-07-25T15:35:42.010000"],["2024-07-25T15:35:43.010000"],["2024-07-25T15:35:44.010000"],["2024-07-25T15:35:45.010000"],["2024-07-25T15:35:46.010000"],["2024-07-25T15:35:47.010000"],["2024-07-25T15:35:48.010000"],["2024-07-25T15:35:49.010000"],["2024-07-25T15:35:50.010000"],["2024-07-25T15:35:51.010000"],["2024-07-25T15:35:52.010000"],["2024-07-25T15:35:53.010000"],["2024-07-25T15:35:54.010000"],["2024-07-25T15:35:55.010000"],["2024-07-25T15:35:56.010000"],["2024-07-25T15:35:57.010000"],["2024-07-25T15:35:58.010000"],["2024-07-25T15:35:59.010000"],["2024-07-25T15:36:00.010000"],["2024-07-25T15:36:01.010000"],["2024-07-25T15:36:02.010000"],["2024-07-25T15:36:03.010000"],["2024-07-25T15:36:04.010000"],["2024-07-25T15:36:05.010000"],["2024-07-25T15:36:06.010000"],["2024-07-25T15:36:07.010000"],["2024-07-25T15:36:08.010000"],["2024-07-25T15:36:09.010000"],["2024-07-25T15:36:10.010000"],["2024-07-25T15:36:11.010000"],["2024-07-25T15:36:12.010000"],["2024-07-25T15:36:13.010000"],["2024-07-25T15:36:14.010000"],["2024-07-25T15:36:15.010000"],["2024-07-25T15:36:16.010000"],["2024-07-25T15:36:17.010000"],["2024-07-25T15:36:18.010000"],["2024-07-25T15:36:19.010000"],["2024-07-25T15:36:20.010000"],["2024-07-25T15:36:21.010000"],["2024-07-25T15:36:22.010000"],["2024-07-25T15:36:23.010000"],["2024-07-25T15:36:24.010000"],["2024-07-25T15:36:25.010000"],["2024-07-25T15:36:26.010000"],["2024-07-25T15:36:27.010000"],["2024-07-25T15:36:28.010000"],["2024-07-25T15:36:29.010000"],["2024-07-25T15:36:30.010000"],["2024-07-25T15:36:31.010000"],["2024-07-25T15:36:32.010000"],["2024-07-25T15:36:33.010000"],["2024-07-25T15:36:34.010000"],["2024-07-25T15:36:35.010000"],["2024-07-25T15:36:36.010000"],["2024-07-25T15:36:37.010000"],["2024-07-25T15:36:38.010000"],["2024-07-25T15:36:39.010000"],["2024-07-25T15:36:40.010000"],["2024-07-25T15:36:41.010000"],["2024-07-25T15:36:42.010000"],["2024-07-25T15:36:43.010000"],["2024-07-25T15:36:44.010000"],["2024-07-25T15:36:45.010000"],["2024-07-25T15:36:46.010000"],["2024-07-25T15:36:47.010000"],["2024-07-25T15:36:48.010000"],["2024-07-25T15:36:49.010000"],["2024-07-25T15:36:50.010000"],["2024-07-25T15:36:51.010000"],["2024-07-25T15:36:52.010000"],["2024-07-25T15:36:53.010000"],["2024-07-25T15:36:54.010000"],["2024-07-25T15:36:55.010000"],["2024-07-25T15:36:56.010000"],["2024-07-25T15:36:57.010000"],["2024-07-25T15:36:58.010000"],["2024-07-25T15:36:59.010000"],["2024-07-25T15:37:00.010000"],["2024-07-25T15:37:01.010000"],["2024-07-25T15:37:02.010000"],["2024-07-25T15:37:03.010000"],["2024-07-25T15:37:04.010000"],["2024-07-25T15:37:05.010000"],["2024-07-25T15:37:06.010000"],["2024-07-25T15:37:07.010000"],["2024-07-25T15:37:08.010000"],["2024-07-25T15:37:09.010000"],["2024-07-25T15:37:10.010000"],["2024-07-25T15:37:11.010000"],["2024-07-25T15:37:12.010000"],["2024-07-25T15:37:13.010000"],["2024-07-25T15:37:14.010000"],["2024-07-25T15:37:15.010000"],["2024-07-25T15:37:16.010000"],["2024-07-25T15:37:17.010000"],["2024-07-25T15:37:18.010000"],["2024-07-25T15:37:19.010000"],["2024-07-25T15:37:20.010000"],["2024-07-25T15:37:21.010000"],["2024-07-25T15:37:22.010000"],["2024-07-25T15:37:23.010000"],["2024-07-25T15:37:24.010000"],["2024-07-25T15:37:25.010000"],["2024-07-25T15:37:26.010000"],["2024-07-25T15:37:27.010000"],["2024-07-25T15:37:28.010000"],["2024-07-25T15:37:29.010000"],["2024-07-25T15:37:30.010000"],["2024-07-25T15:37:31.010000"],["2024-07-25T15:37:32.010000"],["2024-07-25T15:37:33.010000"],["2024-07-25T15:37:34.010000"],["2024-07-25T15:37:35.010000"],["2024-07-25T15:37:36.010000"],["2024-07-25T15:37:37.010000"],["2024-07-25T15:37:38.010000"],["2024-07-25T15:37:39.010000"],["2024-07-25T15:37:40.010000"],["2024-07-25T15:37:41.010000"],["2024-07-25T15:37:42.010000"],["2024-07-25T15:37:43.010000"],["2024-07-25T15:37:44.010000"],["2024-07-25T15:37:45.010000"],["2024-07-25T15:37:46.010000"],["2024-07-25T15:37:47.010000"],["2024-07-25T15:37:48.010000"],["2024-07-25T15:37:49.010000"],["2024-07-25T15:37:50.010000"],["2024-07-25T15:37:51.010000"],["2024-07-25T15:37:52.010000"],["2024-07-25T15:37:53.010000"],["2024-07-25T15:37:54.010000"],["2024-07-25T15:37:55.010000"],["2024-07-25T15:37:56.010000"],["2024-07-25T15:37:57.010000"],["2024-07-25T15:37:58.010000"],["2024-07-25T15:37:59.010000"],["2024-07-25T15:38:00.010000"],["2024-07-25T15:38:01.010000"],["2024-07-25T15:38:02.010000"],["2024-07-25T15:38:03.010000"],["2024-07-25T15:38:04.010000"],["2024-07-25T15:38:05.010000"],["2024-07-25T15:38:06.010000"],["2024-07-25T15:38:07.010000"],["2024-07-25T15:38:08.010000"],["2024-07-25T15:38:09.010000"],["2024-07-25T15:38:10.010000"],["2024-07-25T15:38:11.010000"],["2024-07-25T15:38:12.010000"],["2024-07-25T15:38:13.010000"],["2024-07-25T15:38:14.010000"],["2024-07-25T15:38:15.010000"],["2024-07-25T15:38:16.010000"],["2024-07-25T15:38:17.010000"],["2024-07-25T15:38:18.010000"],["2024-07-25T15:38:19.010000"],["2024-07-25T15:38:20.010000"],["2024-07-25T15:38:21.010000"],["2024-07-25T15:38:22.010000"],["2024-07-25T15:38:23.010000"],["2024-07-25T15:38:24.010000"],["2024-07-25T15:38:25.010000"],["2024-07-25T15:38:26.010000"],["2024-07-25T15:38:27.010000"],["2024-07-25T15:38:28.010000"],["2024-07-25T15:38:29.010000"],["2024-07-25T15:38:30.010000"],["2024-07-25T15:38:31.010000"],["2024-07-25T15:38:32.010000"],["2024-07-25T15:38:33.010000"],["2024-07-25T15:38:34.010000"],["2024-07-25T15:38:35.010000"],["2024-07-25T15:38:36.010000"],["2024-07-25T15:38:37.010000"],["2024-07-25T15:38:38.010000"],["2024-07-25T15:38:39.010000"],["2024-07-25T15:38:40.010000"],["2024-07-25T15:38:41.010000"],["2024-07-25T15:38:42.010000"],["2024-07-25T15:38:43.010000"],["2024-07-25T15:38:44.010000"],["2024-07-25T15:38:45.010000"],["2024-07-25T15:38:46.010000"],["2024-07-25T15:38:47.010000"],["2024-07-25T15:38:48.010000"],["2024-07-25T15:38:49.010000"],["2024-07-25T15:38:50.010000"],["2024-07-25T15:38:51.010000"],["2024-07-25T15:38:52.010000"],["2024-07-25T15:38:53.010000"],["2024-07-25T15:38:54.010000"],["2024-07-25T15:38:55.010000"],["2024-07-25T15:38:56.010000"],["2024-07-25T15:38:57.010000"],["2024-07-25T15:38:58.010000"],["2024-07-25T15:38:59.010000"],["2024-07-25T15:39:00.010000"],["2024-07-25T15:39:01.010000"],["2024-07-25T15:39:02.010000"],["2024-07-25T15:39:03.010000"],["2024-07-25T15:39:04.010000"],["2024-07-25T15:39:05.010000"],["2024-07-25T15:39:06.010000"],["2024-07-25T15:39:07.010000"],["2024-07-25T15:39:08.010000"],["2024-07-25T15:39:09.010000"],["2024-07-25T15:39:10.010000"],["2024-07-25T15:39:11.010000"],["2024-07-25T15:39:12.010000"],["2024-07-25T15:39:13.010000"],["2024-07-25T15:39:14.010000"],["2024-07-25T15:39:15.010000"],["2024-07-25T15:39:16.010000"],["2024-07-25T15:39:17.010000"],["2024-07-25T15:39:18.010000"],["2024-07-25T15:39:19.010000"],["2024-07-25T15:39:20.010000"],["2024-07-25T15:39:21.010000"],["2024-07-25T15:39:22.010000"],["2024-07-25T15:39:23.010000"],["2024-07-25T15:39:24.010000"],["2024-07-25T15:39:25.010000"],["2024-07-25T15:39:26.010000"],["2024-07-25T15:39:27.010000"],["2024-07-25T15:39:28.010000"],["2024-07-25T15:39:29.010000"],["2024-07-25T15:39:30.010000"],["2024-07-25T15:39:31.010000"],["2024-07-25T15:39:32.010000"],["2024-07-25T15:39:33.010000"],["2024-07-25T15:39:34.010000"],["2024-07-25T15:39:35.010000"],["2024-07-25T15:39:36.010000"],["2024-07-25T15:39:37.010000"],["2024-07-25T15:39:38.010000"],["2024-07-25T15:39:39.010000"],["2024-07-25T15:39:40.010000"],["2024-07-25T15:39:41.010000"],["2024-07-25T15:39:42.010000"],["2024-07-25T15:39:43.010000"],["2024-07-25T15:39:44.010000"],["2024-07-25T15:39:45.010000"],["2024-07-25T15:39:46.010000"],["2024-07-25T15:39:47.010000"],["2024-07-25T15:39:48.010000"],["2024-07-25T15:39:49.010000"],["2024-07-25T15:39:50.010000"],["2024-07-25T15:39:51.010000"],["2024-07-25T15:39:52.010000"],["2024-07-25T15:39:53.010000"],["2024-07-25T15:39:54.010000"],["2024-07-25T15:39:55.010000"],["2024-07-25T15:39:56.010000"],["2024-07-25T15:39:57.010000"],["2024-07-25T15:39:58.010000"],["2024-07-25T15:39:59.010000"],["2024-07-25T15:40:00.010000"],["2024-07-25T15:40:01.010000"],["2024-07-25T15:40:02.010000"],["2024-07-25T15:40:03.010000"],["2024-07-25T15:40:04.010000"],["2024-07-25T15:40:05.010000"],["2024-07-25T15:40:06.010000"],["2024-07-25T15:40:07.010000"],["2024-07-25T15:40:08.010000"],["2024-07-25T15:40:09.010000"],["2024-07-25T15:40:10.010000"],["2024-07-25T15:40:11.010000"],["2024-07-25T15:40:12.010000"],["2024-07-25T15:40:13.010000"],["2024-07-25T15:40:14.010000"],["2024-07-25T15:40:15.010000"],["2024-07-25T15:40:16.010000"],["2024-07-25T15:40:17.010000"],["2024-07-25T15:40:18.010000"],["2024-07-25T15:40:19.010000"],["2024-07-25T15:40:20.010000"],["2024-07-25T15:40:21.010000"],["2024-07-25T15:40:22.010000"],["2024-07-25T15:40:23.010000"],["2024-07-25T15:40:24.010000"],["2024-07-25T15:40:25.010000"],["2024-07-25T15:40:26.010000"],["2024-07-25T15:40:27.010000"],["2024-07-25T15:40:28.010000"],["2024-07-25T15:40:29.010000"],["2024-07-25T15:40:30.010000"],["2024-07-25T15:40:31.010000"],["2024-07-25T15:40:32.010000"],["2024-07-25T15:40:33.010000"],["2024-07-25T15:40:34.010000"],["2024-07-25T15:40:35.010000"],["2024-07-25T15:40:36.010000"],["2024-07-25T15:40:37.010000"],["2024-07-25T15:40:38.010000"],["2024-07-25T15:40:39.010000"],["2024-07-25T15:40:40.010000"],["2024-07-25T15:40:41.010000"],["2024-07-25T15:40:42.010000"],["2024-07-25T15:40:43.010000"],["2024-07-25T15:40:44.010000"],["2024-07-25T15:40:45.010000"],["2024-07-25T15:40:46.010000"],["2024-07-25T15:40:47.010000"],["2024-07-25T15:40:48.010000"],["2024-07-25T15:40:49.010000"],["2024-07-25T15:40:50.010000"],["2024-07-25T15:40:51.010000"],["2024-07-25T15:40:52.010000"],["2024-07-25T15:40:53.010000"],["2024-07-25T15:40:54.010000"],["2024-07-25T15:40:55.010000"],["2024-07-25T15:40:56.010000"],["2024-07-25T15:40:57.010000"],["2024-07-25T15:40:58.010000"],["2024-07-25T15:40:59.010000"],["2024-07-25T15:41:00.010000"],["2024-07-25T15:41:01.010000"],["2024-07-25T15:41:02.010000"],["2024-07-25T15:41:03.010000"],["2024-07-25T15:41:04.010000"],["2024-07-25T15:41:05.010000"],["2024-07-25T15:41:06.010000"],["2024-07-25T15:41:07.010000"],["2024-07-25T15:41:08.010000"],["2024-07-25T15:41:09.010000"],["2024-07-25T15:41:10.010000"],["2024-07-25T15:41:11.010000"],["2024-07-25T15:41:12.010000"],["2024-07-25T15:41:13.010000"],["2024-07-25T15:41:14.010000"],["2024-07-25T15:41:15.010000"],["2024-07-25T15:41:16.010000"],["2024-07-25T15:41:17.010000"],["2024-07-25T15:41:18.010000"],["2024-07-25T15:41:19.010000"],["2024-07-25T15:41:20.010000"],["2024-07-25T15:41:21.010000"],["2024-07-25T15:41:22.010000"],["2024-07-25T15:41:23.010000"],["2024-07-25T15:41:24.010000"],["2024-07-25T15:41:25.010000"],["2024-07-25T15:41:26.010000"],["2024-07-25T15:41:27.010000"],["2024-07-25T15:41:28.010000"],["2024-07-25T15:41:29.010000"],["2024-07-25T15:41:30.010000"],["2024-07-25T15:41:31.010000"],["2024-07-25T15:41:32.010000"],["2024-07-25T15:41:33.010000"],["2024-07-25T15:41:34.010000"],["2024-07-25T15:41:35.010000"],["2024-07-25T15:41:36.010000"],["2024-07-25T15:41:37.010000"],["2024-07-25T15:41:38.010000"],["2024-07-25T15:41:39.010000"],["2024-07-25T15:41:40.010000"],["2024-07-25T15:41:41.010000"],["2024-07-25T15:41:42.010000"],["2024-07-25T15:41:43.010000"],["2024-07-25T15:41:44.010000"],["2024-07-25T15:41:45.010000"],["2024-07-25T15:41:46.010000"],["2024-07-25T15:41:47.010000"],["2024-07-25T15:41:48.010000"],["2024-07-25T15:41:49.010000"],["2024-07-25T15:41:50.010000"],["2024-07-25T15:41:51.010000"],["2024-07-25T15:41:52.010000"],["2024-07-25T15:41:53.010000"],["2024-07-25T15:41:54.010000"],["2024-07-25T15:41:55.010000"],["2024-07-25T15:41:56.010000"],["2024-07-25T15:41:57.010000"],["2024-07-25T15:41:58.010000"],["2024-07-25T15:41:59.010000"],["2024-07-25T15:42:00.010000"],["2024-07-25T15:42:01.010000"],["2024-07-25T15:42:02.010000"],["2024-07-25T15:42:03.010000"],["2024-07-25T15:42:04.010000"],["2024-07-25T15:42:05.010000"],["2024-07-25T15:42:06.010000"],["2024-07-25T15:42:07.010000"],["2024-07-25T15:42:08.010000"],["2024-07-25T15:42:09.010000"],["2024-07-25T15:42:10.010000"],["2024-07-25T15:42:11.010000"],["2024-07-25T15:42:12.010000"],["2024-07-25T15:42:13.010000"],["2024-07-25T15:42:14.010000"],["2024-07-25T15:42:15.010000"],["2024-07-25T15:42:16.010000"],["2024-07-25T15:42:17.010000"],["2024-07-25T15:42:18.010000"],["2024-07-25T15:42:19.010000"],["2024-07-25T15:42:20.010000"],["2024-07-25T15:42:21.010000"],["2024-07-25T15:42:22.010000"],["2024-07-25T15:42:23.010000"],["2024-07-25T15:42:24.010000"],["2024-07-25T15:42:25.010000"],["2024-07-25T15:42:26.010000"],["2024-07-25T15:42:27.010000"],["2024-07-25T15:42:28.010000"],["2024-07-25T15:42:29.010000"],["2024-07-25T15:42:30.010000"],["2024-07-25T15:42:31.010000"],["2024-07-25T15:42:32.010000"],["2024-07-25T15:42:33.010000"],["2024-07-25T15:42:34.010000"],["2024-07-25T15:42:35.010000"],["2024-07-25T15:42:36.010000"],["2024-07-25T15:42:37.010000"],["2024-07-25T15:42:38.010000"],["2024-07-25T15:42:39.010000"],["2024-07-25T15:42:40.010000"],["2024-07-25T15:42:41.010000"],["2024-07-25T15:42:42.010000"],["2024-07-25T15:42:43.010000"],["2024-07-25T15:42:44.010000"],["2024-07-25T15:42:45.010000"],["2024-07-25T15:42:46.010000"],["2024-07-25T15:42:47.010000"],["2024-07-25T15:42:48.010000"],["2024-07-25T15:42:49.010000"],["2024-07-25T15:42:50.010000"],["2024-07-25T15:42:51.010000"],["2024-07-25T15:42:52.010000"],["2024-07-25T15:42:53.010000"],["2024-07-25T15:42:54.010000"],["2024-07-25T15:42:55.010000"],["2024-07-25T15:42:56.010000"],["2024-07-25T15:42:57.010000"],["2024-07-25T15:42:58.010000"],["2024-07-25T15:42:59.010000"],["2024-07-25T15:43:00.010000"],["2024-07-25T15:43:01.010000"],["2024-07-25T15:43:02.010000"],["2024-07-25T15:43:03.010000"],["2024-07-25T15:43:04.010000"],["2024-07-25T15:43:05.010000"],["2024-07-25T15:43:06.010000"],["2024-07-25T15:43:07.010000"],["2024-07-25T15:43:08.010000"],["2024-07-25T15:43:09.010000"],["2024-07-25T15:43:10.010000"],["2024-07-25T15:43:11.010000"],["2024-07-25T15:43:12.010000"],["2024-07-25T15:43:13.010000"],["2024-07-25T15:43:14.010000"],["2024-07-25T15:43:15.010000"],["2024-07-25T15:43:16.010000"],["2024-07-25T15:43:17.010000"],["2024-07-25T15:43:18.010000"],["2024-07-25T15:43:19.010000"],["2024-07-25T15:43:20.010000"],["2024-07-25T15:43:21.010000"],["2024-07-25T15:43:22.010000"],["2024-07-25T15:43:23.010000"],["2024-07-25T15:43:24.010000"],["2024-07-25T15:43:25.010000"],["2024-07-25T15:43:26.010000"],["2024-07-25T15:43:27.010000"],["2024-07-25T15:43:28.010000"],["2024-07-25T15:43:29.010000"],["2024-07-25T15:43:30.010000"],["2024-07-25T15:43:31.010000"],["2024-07-25T15:43:32.010000"],["2024-07-25T15:43:33.010000"],["2024-07-25T15:43:34.010000"],["2024-07-25T15:43:35.010000"],["2024-07-25T15:43:36.010000"],["2024-07-25T15:43:37.010000"],["2024-07-25T15:43:38.010000"],["2024-07-25T15:43:39.010000"],["2024-07-25T15:43:40.010000"],["2024-07-25T15:43:41.010000"],["2024-07-25T15:43:42.010000"],["2024-07-25T15:43:43.010000"],["2024-07-25T15:43:44.010000"],["2024-07-25T15:43:45.010000"],["2024-07-25T15:43:46.010000"],["2024-07-25T15:43:47.010000"],["2024-07-25T15:43:48.010000"],["2024-07-25T15:43:49.010000"],["2024-07-25T15:43:50.010000"],["2024-07-25T15:43:51.010000"],["2024-07-25T15:43:52.010000"],["2024-07-25T15:43:53.010000"],["2024-07-25T15:43:54.010000"],["2024-07-25T15:43:55.010000"],["2024-07-25T15:43:56.010000"],["2024-07-25T15:43:57.010000"],["2024-07-25T15:43:58.010000"],["2024-07-25T15:43:59.010000"],["2024-07-25T15:44:00.010000"],["2024-07-25T15:44:01.010000"],["2024-07-25T15:44:02.010000"],["2024-07-25T15:44:03.010000"],["2024-07-25T15:44:04.010000"],["2024-07-25T15:44:05.010000"],["2024-07-25T15:44:06.010000"],["2024-07-25T15:44:07.010000"],["2024-07-25T15:44:08.010000"],["2024-07-25T15:44:09.010000"],["2024-07-25T15:44:10.010000"],["2024-07-25T15:44:11.010000"],["2024-07-25T15:44:12.010000"],["2024-07-25T15:44:13.010000"],["2024-07-25T15:44:14.010000"],["2024-07-25T15:44:15.010000"],["2024-07-25T15:44:16.010000"],["2024-07-25T15:44:17.010000"],["2024-07-25T15:44:18.010000"],["2024-07-25T15:44:19.010000"],["2024-07-25T15:44:20.010000"],["2024-07-25T15:44:21.010000"],["2024-07-25T15:44:22.010000"],["2024-07-25T15:44:23.010000"],["2024-07-25T15:44:24.010000"],["2024-07-25T15:44:25.010000"],["2024-07-25T15:44:26.010000"],["2024-07-25T15:44:27.010000"],["2024-07-25T15:44:28.010000"],["2024-07-25T15:44:29.010000"],["2024-07-25T15:44:30.010000"],["2024-07-25T15:44:31.010000"],["2024-07-25T15:44:32.010000"],["2024-07-25T15:44:33.010000"],["2024-07-25T15:44:34.010000"],["2024-07-25T15:44:35.010000"],["2024-07-25T15:44:36.010000"],["2024-07-25T15:44:37.010000"],["2024-07-25T15:44:38.010000"],["2024-07-25T15:44:39.010000"],["2024-07-25T15:44:40.010000"],["2024-07-25T15:44:41.010000"],["2024-07-25T15:44:42.010000"],["2024-07-25T15:44:43.010000"],["2024-07-25T15:44:44.010000"],["2024-07-25T15:44:45.010000"],["2024-07-25T15:44:46.010000"],["2024-07-25T15:44:47.010000"],["2024-07-25T15:44:48.010000"],["2024-07-25T15:44:49.010000"],["2024-07-25T15:44:50.010000"],["2024-07-25T15:44:51.010000"],["2024-07-25T15:44:52.010000"],["2024-07-25T15:44:53.010000"],["2024-07-25T15:44:54.010000"],["2024-07-25T15:44:55.010000"],["2024-07-25T15:44:56.010000"],["2024-07-25T15:44:57.010000"],["2024-07-25T15:44:58.010000"],["2024-07-25T15:44:59.010000"],["2024-07-25T15:45:00.010000"],["2024-07-25T15:45:01.010000"],["2024-07-25T15:45:02.010000"],["2024-07-25T15:45:03.010000"],["2024-07-25T15:45:04.010000"],["2024-07-25T15:45:05.010000"],["2024-07-25T15:45:06.010000"],["2024-07-25T15:45:07.010000"],["2024-07-25T15:45:08.010000"],["2024-07-25T15:45:09.010000"],["2024-07-25T15:45:10.010000"],["2024-07-25T15:45:11.010000"],["2024-07-25T15:45:12.010000"],["2024-07-25T15:45:13.010000"],["2024-07-25T15:45:14.010000"],["2024-07-25T15:45:15.010000"],["2024-07-25T15:45:16.010000"],["2024-07-25T15:45:17.010000"],["2024-07-25T15:45:18.010000"],["2024-07-25T15:45:19.010000"],["2024-07-25T15:45:20.010000"],["2024-07-25T15:45:21.010000"],["2024-07-25T15:45:22.010000"],["2024-07-25T15:45:23.010000"],["2024-07-25T15:45:24.010000"],["2024-07-25T15:45:25.010000"],["2024-07-25T15:45:26.010000"],["2024-07-25T15:45:27.010000"],["2024-07-25T15:45:28.010000"],["2024-07-25T15:45:29.010000"],["2024-07-25T15:45:30.010000"],["2024-07-25T15:45:31.010000"],["2024-07-25T15:45:32.010000"],["2024-07-25T15:45:33.010000"],["2024-07-25T15:45:34.010000"],["2024-07-25T15:45:35.010000"],["2024-07-25T15:45:36.010000"],["2024-07-25T15:45:37.010000"],["2024-07-25T15:45:38.010000"],["2024-07-25T15:45:39.010000"],["2024-07-25T15:45:40.010000"],["2024-07-25T15:45:41.010000"],["2024-07-25T15:45:42.010000"],["2024-07-25T15:45:43.010000"],["2024-07-25T15:45:44.010000"],["2024-07-25T15:45:45.010000"],["2024-07-25T15:45:46.010000"],["2024-07-25T15:45:47.010000"],["2024-07-25T15:45:48.010000"],["2024-07-25T15:45:49.010000"],["2024-07-25T15:45:50.010000"],["2024-07-25T15:45:51.010000"],["2024-07-25T15:45:52.010000"],["2024-07-25T15:45:53.010000"],["2024-07-25T15:45:54.010000"],["2024-07-25T15:45:55.010000"],["2024-07-25T15:45:56.010000"],["2024-07-25T15:45:57.010000"],["2024-07-25T15:45:58.010000"],["2024-07-25T15:45:59.010000"],["2024-07-25T15:46:00.010000"],["2024-07-25T15:46:01.010000"],["2024-07-25T15:46:02.010000"],["2024-07-25T15:46:03.010000"],["2024-07-25T15:46:04.010000"],["2024-07-25T15:46:05.010000"],["2024-07-25T15:46:06.010000"],["2024-07-25T15:46:07.010000"],["2024-07-25T15:46:08.010000"],["2024-07-25T15:46:09.010000"],["2024-07-25T15:46:10.010000"],["2024-07-25T15:46:11.010000"],["2024-07-25T15:46:12.010000"],["2024-07-25T15:46:13.010000"],["2024-07-25T15:46:14.010000"],["2024-07-25T15:46:15.010000"],["2024-07-25T15:46:16.010000"],["2024-07-25T15:46:17.010000"],["2024-07-25T15:46:18.010000"],["2024-07-25T15:46:19.010000"],["2024-07-25T15:46:20.010000"],["2024-07-25T15:46:21.010000"],["2024-07-25T15:46:22.010000"],["2024-07-25T15:46:23.010000"],["2024-07-25T15:46:24.010000"],["2024-07-25T15:46:25.010000"],["2024-07-25T15:46:26.010000"],["2024-07-25T15:46:27.010000"],["2024-07-25T15:46:28.010000"],["2024-07-25T15:46:29.010000"],["2024-07-25T15:46:30.010000"],["2024-07-25T15:46:31.010000"],["2024-07-25T15:46:32.010000"],["2024-07-25T15:46:33.010000"],["2024-07-25T15:46:34.010000"],["2024-07-25T15:46:35.010000"],["2024-07-25T15:46:36.010000"],["2024-07-25T15:46:37.010000"],["2024-07-25T15:46:38.010000"],["2024-07-25T15:46:39.010000"],["2024-07-25T15:46:40.010000"],["2024-07-25T15:46:41.010000"],["2024-07-25T15:46:42.010000"],["2024-07-25T15:46:43.010000"],["2024-07-25T15:46:44.010000"],["2024-07-25T15:46:45.010000"],["2024-07-25T15:46:46.010000"],["2024-07-25T15:46:47.010000"],["2024-07-25T15:46:48.010000"],["2024-07-25T15:46:49.010000"],["2024-07-25T15:46:50.010000"],["2024-07-25T15:46:51.010000"],["2024-07-25T15:46:52.010000"],["2024-07-25T15:46:53.010000"],["2024-07-25T15:46:54.010000"],["2024-07-25T15:46:55.010000"],["2024-07-25T15:46:56.010000"],["2024-07-25T15:46:57.010000"],["2024-07-25T15:46:58.010000"],["2024-07-25T15:46:59.010000"],["2024-07-25T15:47:00.010000"],["2024-07-25T15:47:01.010000"],["2024-07-25T15:47:02.010000"],["2024-07-25T15:47:03.010000"],["2024-07-25T15:47:04.010000"],["2024-07-25T15:47:05.010000"],["2024-07-25T15:47:06.010000"],["2024-07-25T15:47:07.010000"],["2024-07-25T15:47:08.010000"],["2024-07-25T15:47:09.010000"],["2024-07-25T15:47:10.010000"],["2024-07-25T15:47:11.010000"],["2024-07-25T15:47:12.010000"],["2024-07-25T15:47:13.010000"],["2024-07-25T15:47:14.010000"],["2024-07-25T15:47:15.010000"],["2024-07-25T15:47:16.010000"],["2024-07-25T15:47:17.010000"],["2024-07-25T15:47:18.010000"],["2024-07-25T15:47:19.010000"],["2024-07-25T15:47:20.010000"],["2024-07-25T15:47:21.010000"],["2024-07-25T15:47:22.010000"],["2024-07-25T15:47:23.010000"],["2024-07-25T15:47:24.010000"],["2024-07-25T15:47:25.010000"],["2024-07-25T15:47:26.010000"],["2024-07-25T15:47:27.010000"],["2024-07-25T15:47:28.010000"],["2024-07-25T15:47:29.010000"],["2024-07-25T15:47:30.010000"],["2024-07-25T15:47:31.010000"],["2024-07-25T15:47:32.010000"],["2024-07-25T15:47:33.010000"],["2024-07-25T15:47:34.010000"],["2024-07-25T15:47:35.010000"],["2024-07-25T15:47:36.010000"],["2024-07-25T15:47:37.010000"],["2024-07-25T15:47:38.010000"],["2024-07-25T15:47:39.010000"],["2024-07-25T15:47:40.010000"],["2024-07-25T15:47:41.010000"],["2024-07-25T15:47:42.010000"],["2024-07-25T15:47:43.010000"],["2024-07-25T15:47:44.010000"],["2024-07-25T15:47:45.010000"],["2024-07-25T15:47:46.010000"],["2024-07-25T15:47:47.010000"],["2024-07-25T15:47:48.010000"],["2024-07-25T15:47:49.010000"],["2024-07-25T15:47:50.010000"],["2024-07-25T15:47:51.010000"],["2024-07-25T15:47:52.010000"],["2024-07-25T15:47:53.010000"],["2024-07-25T15:47:54.010000"],["2024-07-25T15:47:55.010000"],["2024-07-25T15:47:56.010000"],["2024-07-25T15:47:57.010000"],["2024-07-25T15:47:58.010000"],["2024-07-25T15:47:59.010000"],["2024-07-25T15:48:00.010000"],["2024-07-25T15:48:01.010000"],["2024-07-25T15:48:02.010000"],["2024-07-25T15:48:03.010000"],["2024-07-25T15:48:04.010000"],["2024-07-25T15:48:05.010000"],["2024-07-25T15:48:06.010000"],["2024-07-25T15:48:07.010000"],["2024-07-25T15:48:08.010000"],["2024-07-25T15:48:09.010000"],["2024-07-25T15:48:10.010000"],["2024-07-25T15:48:11.010000"],["2024-07-25T15:48:12.010000"],["2024-07-25T15:48:13.010000"],["2024-07-25T15:48:14.010000"],["2024-07-25T15:48:15.010000"],["2024-07-25T15:48:16.010000"],["2024-07-25T15:48:17.010000"],["2024-07-25T15:48:18.010000"],["2024-07-25T15:48:19.010000"],["2024-07-25T15:48:20.010000"],["2024-07-25T15:48:21.010000"],["2024-07-25T15:48:22.010000"],["2024-07-25T15:48:23.010000"],["2024-07-25T15:48:24.010000"],["2024-07-25T15:48:25.010000"],["2024-07-25T15:48:26.010000"],["2024-07-25T15:48:27.010000"],["2024-07-25T15:48:28.010000"],["2024-07-25T15:48:29.010000"],["2024-07-25T15:48:30.010000"],["2024-07-25T15:48:31.010000"],["2024-07-25T15:48:32.010000"],["2024-07-25T15:48:33.010000"],["2024-07-25T15:48:34.010000"],["2024-07-25T15:48:35.010000"],["2024-07-25T15:48:36.010000"],["2024-07-25T15:48:37.010000"],["2024-07-25T15:48:38.010000"],["2024-07-25T15:48:39.010000"],["2024-07-25T15:48:40.010000"],["2024-07-25T15:48:41.010000"],["2024-07-25T15:48:42.010000"],["2024-07-25T15:48:43.010000"],["2024-07-25T15:48:44.010000"],["2024-07-25T15:48:45.010000"],["2024-07-25T15:48:46.010000"],["2024-07-25T15:48:47.010000"],["2024-07-25T15:48:48.010000"],["2024-07-25T15:48:49.010000"],["2024-07-25T15:48:50.010000"],["2024-07-25T15:48:51.010000"],["2024-07-25T15:48:52.010000"],["2024-07-25T15:48:53.010000"],["2024-07-25T15:48:54.010000"],["2024-07-25T15:48:55.010000"],["2024-07-25T15:48:56.010000"],["2024-07-25T15:48:57.010000"],["2024-07-25T15:48:58.010000"],["2024-07-25T15:48:59.010000"],["2024-07-25T15:49:00.010000"],["2024-07-25T15:49:01.010000"],["2024-07-25T15:49:02.010000"],["2024-07-25T15:49:03.010000"],["2024-07-25T15:49:04.010000"],["2024-07-25T15:49:05.010000"],["2024-07-25T15:49:06.010000"],["2024-07-25T15:49:07.010000"],["2024-07-25T15:49:08.010000"],["2024-07-25T15:49:09.010000"],["2024-07-25T15:49:10.010000"],["2024-07-25T15:49:11.010000"],["2024-07-25T15:49:12.010000"],["2024-07-25T15:49:13.010000"],["2024-07-25T15:49:14.010000"],["2024-07-25T15:49:15.010000"],["2024-07-25T15:49:16.010000"],["2024-07-25T15:49:17.010000"],["2024-07-25T15:49:18.010000"],["2024-07-25T15:49:19.010000"],["2024-07-25T15:49:20.010000"],["2024-07-25T15:49:21.010000"],["2024-07-25T15:49:22.010000"],["2024-07-25T15:49:23.010000"],["2024-07-25T15:49:24.010000"],["2024-07-25T15:49:25.010000"],["2024-07-25T15:49:26.010000"],["2024-07-25T15:49:27.010000"],["2024-07-25T15:49:28.010000"],["2024-07-25T15:49:29.010000"],["2024-07-25T15:49:30.010000"],["2024-07-25T15:49:31.010000"],["2024-07-25T15:49:32.010000"],["2024-07-25T15:49:33.010000"],["2024-07-25T15:49:34.010000"],["2024-07-25T15:49:35.010000"],["2024-07-25T15:49:36.010000"],["2024-07-25T15:49:37.010000"],["2024-07-25T15:49:38.010000"],["2024-07-25T15:49:39.010000"],["2024-07-25T15:49:40.010000"],["2024-07-25T15:49:41.010000"],["2024-07-25T15:49:42.010000"],["2024-07-25T15:49:43.010000"],["2024-07-25T15:49:44.010000"],["2024-07-25T15:49:45.010000"],["2024-07-25T15:49:46.010000"],["2024-07-25T15:49:47.010000"],["2024-07-25T15:49:48.010000"],["2024-07-25T15:49:49.010000"],["2024-07-25T15:49:50.010000"],["2024-07-25T15:49:51.010000"],["2024-07-25T15:49:52.010000"],["2024-07-25T15:49:53.010000"],["2024-07-25T15:49:54.010000"],["2024-07-25T15:49:55.010000"],["2024-07-25T15:49:56.010000"],["2024-07-25T15:49:57.010000"],["2024-07-25T15:49:58.010000"],["2024-07-25T15:49:59.010000"],["2024-07-25T15:50:00.010000"],["2024-07-25T15:50:01.010000"],["2024-07-25T15:50:02.010000"],["2024-07-25T15:50:03.010000"],["2024-07-25T15:50:04.010000"],["2024-07-25T15:50:05.010000"],["2024-07-25T15:50:06.010000"],["2024-07-25T15:50:07.010000"],["2024-07-25T15:50:08.010000"],["2024-07-25T15:50:09.010000"],["2024-07-25T15:50:10.010000"],["2024-07-25T15:50:11.010000"],["2024-07-25T15:50:12.010000"],["2024-07-25T15:50:13.010000"],["2024-07-25T15:50:14.010000"],["2024-07-25T15:50:15.010000"],["2024-07-25T15:50:16.010000"],["2024-07-25T15:50:17.010000"],["2024-07-25T15:50:18.010000"],["2024-07-25T15:50:19.010000"],["2024-07-25T15:50:20.010000"],["2024-07-25T15:50:21.010000"],["2024-07-25T15:50:22.010000"],["2024-07-25T15:50:23.010000"],["2024-07-25T15:50:24.010000"],["2024-07-25T15:50:25.010000"],["2024-07-25T15:50:26.010000"],["2024-07-25T15:50:27.010000"],["2024-07-25T15:50:28.010000"],["2024-07-25T15:50:29.010000"],["2024-07-25T15:50:30.010000"],["2024-07-25T15:50:31.010000"],["2024-07-25T15:50:32.010000"],["2024-07-25T15:50:33.010000"],["2024-07-25T15:50:34.010000"],["2024-07-25T15:50:35.010000"],["2024-07-25T15:50:36.010000"],["2024-07-25T15:50:37.010000"],["2024-07-25T15:50:38.010000"],["2024-07-25T15:50:39.010000"],["2024-07-25T15:50:40.010000"],["2024-07-25T15:50:41.010000"],["2024-07-25T15:50:42.010000"],["2024-07-25T15:50:43.010000"],["2024-07-25T15:50:44.010000"],["2024-07-25T15:50:45.010000"],["2024-07-25T15:50:46.010000"],["2024-07-25T15:50:47.010000"],["2024-07-25T15:50:48.010000"],["2024-07-25T15:50:49.010000"],["2024-07-25T15:50:50.010000"],["2024-07-25T15:50:51.010000"],["2024-07-25T15:50:52.010000"],["2024-07-25T15:50:53.010000"],["2024-07-25T15:50:54.010000"],["2024-07-25T15:50:55.010000"],["2024-07-25T15:50:56.010000"],["2024-07-25T15:50:57.010000"],["2024-07-25T15:50:58.010000"],["2024-07-25T15:50:59.010000"],["2024-07-25T15:51:00.010000"],["2024-07-25T15:51:01.010000"],["2024-07-25T15:51:02.010000"],["2024-07-25T15:51:03.010000"],["2024-07-25T15:51:04.010000"],["2024-07-25T15:51:05.010000"],["2024-07-25T15:51:06.010000"],["2024-07-25T15:51:07.010000"],["2024-07-25T15:51:08.010000"],["2024-07-25T15:51:09.010000"],["2024-07-25T15:51:10.010000"],["2024-07-25T15:51:11.010000"],["2024-07-25T15:51:12.010000"],["2024-07-25T15:51:13.010000"],["2024-07-25T15:51:14.010000"],["2024-07-25T15:51:15.010000"],["2024-07-25T15:51:16.010000"],["2024-07-25T15:51:17.010000"],["2024-07-25T15:51:18.010000"],["2024-07-25T15:51:19.010000"],["2024-07-25T15:51:20.010000"],["2024-07-25T15:51:21.010000"],["2024-07-25T15:51:22.010000"],["2024-07-25T15:51:23.010000"],["2024-07-25T15:51:24.010000"],["2024-07-25T15:51:25.010000"],["2024-07-25T15:51:26.010000"],["2024-07-25T15:51:27.010000"],["2024-07-25T15:51:28.010000"],["2024-07-25T15:51:29.010000"],["2024-07-25T15:51:30.010000"],["2024-07-25T15:51:31.010000"],["2024-07-25T15:51:32.010000"],["2024-07-25T15:51:33.010000"],["2024-07-25T15:51:34.010000"],["2024-07-25T15:51:35.010000"],["2024-07-25T15:51:36.010000"],["2024-07-25T15:51:37.010000"],["2024-07-25T15:51:38.010000"],["2024-07-25T15:51:39.010000"],["2024-07-25T15:51:40.010000"],["2024-07-25T15:51:41.010000"],["2024-07-25T15:51:42.010000"],["2024-07-25T15:51:43.010000"],["2024-07-25T15:51:44.010000"],["2024-07-25T15:51:45.010000"],["2024-07-25T15:51:46.010000"],["2024-07-25T15:51:47.010000"],["2024-07-25T15:51:48.010000"],["2024-07-25T15:51:49.010000"],["2024-07-25T15:51:50.010000"],["2024-07-25T15:51:51.010000"],["2024-07-25T15:51:52.010000"],["2024-07-25T15:51:53.010000"],["2024-07-25T15:51:54.010000"],["2024-07-25T15:51:55.010000"],["2024-07-25T15:51:56.010000"],["2024-07-25T15:51:57.010000"],["2024-07-25T15:51:58.010000"],["2024-07-25T15:51:59.010000"],["2024-07-25T15:52:00.010000"],["2024-07-25T15:52:01.010000"],["2024-07-25T15:52:02.010000"],["2024-07-25T15:52:03.010000"],["2024-07-25T15:52:04.010000"],["2024-07-25T15:52:05.010000"],["2024-07-25T15:52:06.010000"],["2024-07-25T15:52:07.010000"],["2024-07-25T15:52:08.010000"],["2024-07-25T15:52:09.010000"],["2024-07-25T15:52:10.010000"],["2024-07-25T15:52:11.010000"],["2024-07-25T15:52:12.010000"],["2024-07-25T15:52:13.010000"],["2024-07-25T15:52:14.010000"],["2024-07-25T15:52:15.010000"],["2024-07-25T15:52:16.010000"],["2024-07-25T15:52:17.010000"],["2024-07-25T15:52:18.010000"],["2024-07-25T15:52:19.010000"],["2024-07-25T15:52:20.010000"],["2024-07-25T15:52:21.010000"],["2024-07-25T15:52:22.010000"],["2024-07-25T15:52:23.010000"],["2024-07-25T15:52:24.010000"],["2024-07-25T15:52:25.010000"],["2024-07-25T15:52:26.010000"],["2024-07-25T15:52:27.010000"],["2024-07-25T15:52:28.010000"],["2024-07-25T15:52:29.010000"],["2024-07-25T15:52:30.010000"],["2024-07-25T15:52:31.010000"],["2024-07-25T15:52:32.010000"],["2024-07-25T15:52:33.010000"],["2024-07-25T15:52:34.010000"],["2024-07-25T15:52:35.010000"],["2024-07-25T15:52:36.010000"],["2024-07-25T15:52:37.010000"],["2024-07-25T15:52:38.010000"],["2024-07-25T15:52:39.010000"],["2024-07-25T15:52:40.010000"],["2024-07-25T15:52:41.010000"],["2024-07-25T15:52:42.010000"],["2024-07-25T15:52:43.010000"],["2024-07-25T15:52:44.010000"],["2024-07-25T15:52:45.010000"],["2024-07-25T15:52:46.010000"],["2024-07-25T15:52:47.010000"],["2024-07-25T15:52:48.010000"],["2024-07-25T15:52:49.010000"],["2024-07-25T15:52:50.010000"],["2024-07-25T15:52:51.010000"],["2024-07-25T15:52:52.010000"],["2024-07-25T15:52:53.010000"],["2024-07-25T15:52:54.010000"],["2024-07-25T15:52:55.010000"],["2024-07-25T15:52:56.010000"],["2024-07-25T15:52:57.010000"],["2024-07-25T15:52:58.010000"],["2024-07-25T15:52:59.010000"],["2024-07-25T15:53:00.010000"],["2024-07-25T15:53:01.010000"],["2024-07-25T15:53:02.010000"],["2024-07-25T15:53:03.010000"],["2024-07-25T15:53:04.010000"],["2024-07-25T15:53:05.010000"],["2024-07-25T15:53:06.010000"],["2024-07-25T15:53:07.010000"],["2024-07-25T15:53:08.010000"],["2024-07-25T15:53:09.010000"],["2024-07-25T15:53:10.010000"],["2024-07-25T15:53:11.010000"],["2024-07-25T15:53:12.010000"],["2024-07-25T15:53:13.010000"],["2024-07-25T15:53:14.010000"],["2024-07-25T15:53:15.010000"],["2024-07-25T15:53:16.010000"],["2024-07-25T15:53:17.010000"],["2024-07-25T15:53:18.010000"],["2024-07-25T15:53:19.010000"],["2024-07-25T15:53:20.010000"],["2024-07-25T15:53:21.010000"],["2024-07-25T15:53:22.010000"],["2024-07-25T15:53:23.010000"],["2024-07-25T15:53:24.010000"],["2024-07-25T15:53:25.010000"],["2024-07-25T15:53:26.010000"],["2024-07-25T15:53:27.010000"],["2024-07-25T15:53:28.010000"],["2024-07-25T15:53:29.010000"],["2024-07-25T15:53:30.010000"],["2024-07-25T15:53:31.010000"],["2024-07-25T15:53:32.010000"],["2024-07-25T15:53:33.010000"],["2024-07-25T15:53:34.010000"],["2024-07-25T15:53:35.010000"],["2024-07-25T15:53:36.010000"],["2024-07-25T15:53:37.010000"],["2024-07-25T15:53:38.010000"],["2024-07-25T15:53:39.010000"],["2024-07-25T15:53:40.010000"],["2024-07-25T15:53:41.010000"],["2024-07-25T15:53:42.010000"],["2024-07-25T15:53:43.010000"],["2024-07-25T15:53:44.010000"],["2024-07-25T15:53:45.010000"],["2024-07-25T15:53:46.010000"],["2024-07-25T15:53:47.010000"],["2024-07-25T15:53:48.010000"],["2024-07-25T15:53:49.010000"],["2024-07-25T15:53:50.010000"],["2024-07-25T15:53:51.010000"],["2024-07-25T15:53:52.010000"],["2024-07-25T15:53:53.010000"],["2024-07-25T15:53:54.010000"],["2024-07-25T15:53:55.010000"],["2024-07-25T15:53:56.010000"],["2024-07-25T15:53:57.010000"],["2024-07-25T15:53:58.010000"],["2024-07-25T15:53:59.010000"],["2024-07-25T15:54:00.010000"],["2024-07-25T15:54:01.010000"],["2024-07-25T15:54:02.010000"],["2024-07-25T15:54:03.010000"],["2024-07-25T15:54:04.010000"],["2024-07-25T15:54:05.010000"],["2024-07-25T15:54:06.010000"],["2024-07-25T15:54:07.010000"],["2024-07-25T15:54:08.010000"],["2024-07-25T15:54:09.010000"],["2024-07-25T15:54:10.010000"],["2024-07-25T15:54:11.010000"],["2024-07-25T15:54:12.010000"],["2024-07-25T15:54:13.010000"],["2024-07-25T15:54:14.010000"],["2024-07-25T15:54:15.010000"],["2024-07-25T15:54:16.010000"],["2024-07-25T15:54:17.010000"],["2024-07-25T15:54:18.010000"],["2024-07-25T15:54:19.010000"],["2024-07-25T15:54:20.010000"],["2024-07-25T15:54:21.010000"],["2024-07-25T15:54:22.010000"],["2024-07-25T15:54:23.010000"],["2024-07-25T15:54:24.010000"],["2024-07-25T15:54:25.010000"],["2024-07-25T15:54:26.010000"],["2024-07-25T15:54:27.010000"],["2024-07-25T15:54:28.010000"],["2024-07-25T15:54:29.010000"],["2024-07-25T15:54:30.010000"],["2024-07-25T15:54:31.010000"],["2024-07-25T15:54:32.010000"],["2024-07-25T15:54:33.010000"],["2024-07-25T15:54:34.010000"],["2024-07-25T15:54:35.010000"],["2024-07-25T15:54:36.010000"],["2024-07-25T15:54:37.010000"],["2024-07-25T15:54:38.010000"],["2024-07-25T15:54:39.010000"],["2024-07-25T15:54:40.010000"],["2024-07-25T15:54:41.010000"],["2024-07-25T15:54:42.010000"],["2024-07-25T15:54:43.010000"],["2024-07-25T15:54:44.010000"],["2024-07-25T15:54:45.010000"],["2024-07-25T15:54:46.010000"],["2024-07-25T15:54:47.010000"],["2024-07-25T15:54:48.010000"],["2024-07-25T15:54:49.010000"],["2024-07-25T15:54:50.010000"],["2024-07-25T15:54:51.010000"],["2024-07-25T15:54:52.010000"],["2024-07-25T15:54:53.010000"],["2024-07-25T15:54:54.010000"],["2024-07-25T15:54:55.010000"],["2024-07-25T15:54:56.010000"],["2024-07-25T15:54:57.010000"],["2024-07-25T15:54:58.010000"],["2024-07-25T15:54:59.010000"],["2024-07-25T15:55:00.010000"],["2024-07-25T15:55:01.010000"],["2024-07-25T15:55:02.010000"],["2024-07-25T15:55:03.010000"],["2024-07-25T15:55:04.010000"],["2024-07-25T15:55:05.010000"],["2024-07-25T15:55:06.010000"],["2024-07-25T15:55:07.010000"],["2024-07-25T15:55:08.010000"],["2024-07-25T15:55:09.010000"],["2024-07-25T15:55:10.010000"],["2024-07-25T15:55:11.010000"],["2024-07-25T15:55:12.010000"],["2024-07-25T15:55:13.010000"],["2024-07-25T15:55:14.010000"],["2024-07-25T15:55:15.010000"],["2024-07-25T15:55:16.010000"],["2024-07-25T15:55:17.010000"],["2024-07-25T15:55:18.010000"],["2024-07-25T15:55:19.010000"],["2024-07-25T15:55:20.010000"],["2024-07-25T15:55:21.010000"],["2024-07-25T15:55:22.010000"],["2024-07-25T15:55:23.010000"],["2024-07-25T15:55:24.010000"],["2024-07-25T15:55:25.010000"],["2024-07-25T15:55:26.010000"],["2024-07-25T15:55:27.010000"],["2024-07-25T15:55:28.010000"],["2024-07-25T15:55:29.010000"],["2024-07-25T15:55:30.010000"],["2024-07-25T15:55:31.010000"],["2024-07-25T15:55:32.010000"],["2024-07-25T15:55:33.010000"],["2024-07-25T15:55:34.010000"],["2024-07-25T15:55:35.010000"],["2024-07-25T15:55:36.010000"],["2024-07-25T15:55:37.010000"],["2024-07-25T15:55:38.010000"],["2024-07-25T15:55:39.010000"],["2024-07-25T15:55:40.010000"],["2024-07-25T15:55:41.010000"],["2024-07-25T15:55:42.010000"],["2024-07-25T15:55:43.010000"],["2024-07-25T15:55:44.010000"],["2024-07-25T15:55:45.010000"],["2024-07-25T15:55:46.010000"],["2024-07-25T15:55:47.010000"],["2024-07-25T15:55:48.010000"],["2024-07-25T15:55:49.010000"],["2024-07-25T15:55:50.010000"],["2024-07-25T15:55:51.010000"],["2024-07-25T15:55:52.010000"],["2024-07-25T15:55:53.010000"],["2024-07-25T15:55:54.010000"],["2024-07-25T15:55:55.010000"],["2024-07-25T15:55:56.010000"],["2024-07-25T15:55:57.010000"],["2024-07-25T15:55:58.010000"],["2024-07-25T15:55:59.010000"],["2024-07-25T15:56:00.010000"],["2024-07-25T15:56:01.010000"],["2024-07-25T15:56:02.010000"],["2024-07-25T15:56:03.010000"],["2024-07-25T15:56:04.010000"],["2024-07-25T15:56:05.010000"],["2024-07-25T15:56:06.010000"],["2024-07-25T15:56:07.010000"],["2024-07-25T15:56:08.010000"],["2024-07-25T15:56:09.010000"],["2024-07-25T15:56:10.010000"],["2024-07-25T15:56:11.010000"],["2024-07-25T15:56:12.010000"],["2024-07-25T15:56:13.010000"],["2024-07-25T15:56:14.010000"],["2024-07-25T15:56:15.010000"],["2024-07-25T15:56:16.010000"],["2024-07-25T15:56:17.010000"],["2024-07-25T15:56:18.010000"],["2024-07-25T15:56:19.010000"],["2024-07-25T15:56:20.010000"],["2024-07-25T15:56:21.010000"],["2024-07-25T15:56:22.010000"],["2024-07-25T15:56:23.010000"],["2024-07-25T15:56:24.010000"],["2024-07-25T15:56:25.010000"],["2024-07-25T15:56:26.010000"],["2024-07-25T15:56:27.010000"],["2024-07-25T15:56:28.010000"],["2024-07-25T15:56:29.010000"],["2024-07-25T15:56:30.010000"],["2024-07-25T15:56:31.010000"],["2024-07-25T15:56:32.010000"],["2024-07-25T15:56:33.010000"],["2024-07-25T15:56:34.010000"],["2024-07-25T15:56:35.010000"],["2024-07-25T15:56:36.010000"],["2024-07-25T15:56:37.010000"],["2024-07-25T15:56:38.010000"],["2024-07-25T15:56:39.010000"],["2024-07-25T15:56:40.010000"],["2024-07-25T15:56:41.010000"],["2024-07-25T15:56:42.010000"],["2024-07-25T15:56:43.010000"],["2024-07-25T15:56:44.010000"],["2024-07-25T15:56:45.010000"],["2024-07-25T15:56:46.010000"],["2024-07-25T15:56:47.010000"],["2024-07-25T15:56:48.010000"],["2024-07-25T15:56:49.010000"],["2024-07-25T15:56:50.010000"],["2024-07-25T15:56:51.010000"],["2024-07-25T15:56:52.010000"],["2024-07-25T15:56:53.010000"],["2024-07-25T15:56:54.010000"],["2024-07-25T15:56:55.010000"],["2024-07-25T15:56:56.010000"],["2024-07-25T15:56:57.010000"],["2024-07-25T15:56:58.010000"],["2024-07-25T15:56:59.010000"],["2024-07-25T15:57:00.010000"],["2024-07-25T15:57:01.010000"],["2024-07-25T15:57:02.010000"],["2024-07-25T15:57:03.010000"],["2024-07-25T15:57:04.010000"],["2024-07-25T15:57:05.010000"],["2024-07-25T15:57:06.010000"],["2024-07-25T15:57:07.010000"],["2024-07-25T15:57:08.010000"],["2024-07-25T15:57:09.010000"],["2024-07-25T15:57:10.010000"],["2024-07-25T15:57:11.010000"],["2024-07-25T15:57:12.010000"],["2024-07-25T15:57:13.010000"],["2024-07-25T15:57:14.010000"],["2024-07-25T15:57:15.010000"],["2024-07-25T15:57:16.010000"],["2024-07-25T15:57:17.010000"],["2024-07-25T15:57:18.010000"],["2024-07-25T15:57:19.010000"],["2024-07-25T15:57:20.010000"],["2024-07-25T15:57:21.010000"],["2024-07-25T15:57:22.010000"],["2024-07-25T15:57:23.010000"],["2024-07-25T15:57:24.010000"],["2024-07-25T15:57:25.010000"],["2024-07-25T15:57:26.010000"],["2024-07-25T15:57:27.010000"],["2024-07-25T15:57:28.010000"],["2024-07-25T15:57:29.010000"],["2024-07-25T15:57:30.010000"],["2024-07-25T15:57:31.010000"],["2024-07-25T15:57:32.010000"],["2024-07-25T15:57:33.010000"],["2024-07-25T15:57:34.010000"],["2024-07-25T15:57:35.010000"],["2024-07-25T15:57:36.010000"],["2024-07-25T15:57:37.010000"],["2024-07-25T15:57:38.010000"],["2024-07-25T15:57:39.010000"],["2024-07-25T15:57:40.010000"],["2024-07-25T15:57:41.010000"],["2024-07-25T15:57:42.010000"],["2024-07-25T15:57:43.010000"],["2024-07-25T15:57:44.010000"],["2024-07-25T15:57:45.010000"],["2024-07-25T15:57:46.010000"],["2024-07-25T15:57:47.010000"],["2024-07-25T15:57:48.010000"],["2024-07-25T15:57:49.010000"],["2024-07-25T15:57:50.010000"],["2024-07-25T15:57:51.010000"],["2024-07-25T15:57:52.010000"],["2024-07-25T15:57:53.010000"],["2024-07-25T15:57:54.010000"],["2024-07-25T15:57:55.010000"],["2024-07-25T15:57:56.010000"],["2024-07-25T15:57:57.010000"],["2024-07-25T15:57:58.010000"],["2024-07-25T15:57:59.010000"],["2024-07-25T15:58:00.010000"],["2024-07-25T15:58:01.010000"],["2024-07-25T15:58:02.010000"],["2024-07-25T15:58:03.010000"],["2024-07-25T15:58:04.010000"],["2024-07-25T15:58:05.010000"],["2024-07-25T15:58:06.010000"],["2024-07-25T15:58:07.010000"],["2024-07-25T15:58:08.010000"],["2024-07-25T15:58:09.010000"],["2024-07-25T15:58:10.010000"],["2024-07-25T15:58:11.010000"],["2024-07-25T15:58:12.010000"],["2024-07-25T15:58:13.010000"],["2024-07-25T15:58:14.010000"],["2024-07-25T15:58:15.010000"],["2024-07-25T15:58:16.010000"],["2024-07-25T15:58:17.010000"],["2024-07-25T15:58:18.010000"],["2024-07-25T15:58:19.010000"],["2024-07-25T15:58:20.010000"],["2024-07-25T15:58:21.010000"],["2024-07-25T15:58:22.010000"],["2024-07-25T15:58:23.010000"],["2024-07-25T15:58:24.010000"],["2024-07-25T15:58:25.010000"],["2024-07-25T15:58:26.010000"],["2024-07-25T15:58:27.010000"],["2024-07-25T15:58:28.010000"],["2024-07-25T15:58:29.010000"],["2024-07-25T15:58:30.010000"],["2024-07-25T15:58:31.010000"],["2024-07-25T15:58:32.010000"],["2024-07-25T15:58:33.010000"],["2024-07-25T15:58:34.010000"],["2024-07-25T15:58:35.010000"],["2024-07-25T15:58:36.010000"],["2024-07-25T15:58:37.010000"],["2024-07-25T15:58:38.010000"],["2024-07-25T15:58:39.010000"],["2024-07-25T15:58:40.010000"],["2024-07-25T15:58:41.010000"],["2024-07-25T15:58:42.010000"],["2024-07-25T15:58:43.010000"],["2024-07-25T15:58:44.010000"],["2024-07-25T15:58:45.010000"],["2024-07-25T15:58:46.010000"],["2024-07-25T15:58:47.010000"],["2024-07-25T15:58:48.010000"],["2024-07-25T15:58:49.010000"],["2024-07-25T15:58:50.010000"],["2024-07-25T15:58:51.010000"],["2024-07-25T15:58:52.010000"],["2024-07-25T15:58:53.010000"],["2024-07-25T15:58:54.010000"],["2024-07-25T15:58:55.010000"],["2024-07-25T15:58:56.010000"],["2024-07-25T15:58:57.010000"],["2024-07-25T15:58:58.010000"],["2024-07-25T15:58:59.010000"],["2024-07-25T15:59:00.010000"],["2024-07-25T15:59:01.010000"],["2024-07-25T15:59:02.010000"],["2024-07-25T15:59:03.010000"],["2024-07-25T15:59:04.010000"],["2024-07-25T15:59:05.010000"],["2024-07-25T15:59:06.010000"],["2024-07-25T15:59:07.010000"],["2024-07-25T15:59:08.010000"],["2024-07-25T15:59:09.010000"],["2024-07-25T15:59:10.010000"],["2024-07-25T15:59:11.010000"],["2024-07-25T15:59:12.010000"],["2024-07-25T15:59:13.010000"],["2024-07-25T15:59:14.010000"],["2024-07-25T15:59:15.010000"],["2024-07-25T15:59:16.010000"],["2024-07-25T15:59:17.010000"],["2024-07-25T15:59:18.010000"],["2024-07-25T15:59:19.010000"],["2024-07-25T15:59:20.010000"],["2024-07-25T15:59:21.010000"],["2024-07-25T15:59:22.010000"],["2024-07-25T15:59:23.010000"],["2024-07-25T15:59:24.010000"],["2024-07-25T15:59:25.010000"],["2024-07-25T15:59:26.010000"],["2024-07-25T15:59:27.010000"],["2024-07-25T15:59:28.010000"],["2024-07-25T15:59:29.010000"],["2024-07-25T15:59:30.010000"],["2024-07-25T15:59:31.010000"],["2024-07-25T15:59:32.010000"],["2024-07-25T15:59:33.010000"],["2024-07-25T15:59:34.010000"],["2024-07-25T15:59:35.010000"],["2024-07-25T15:59:36.010000"],["2024-07-25T15:59:37.010000"],["2024-07-25T15:59:38.010000"],["2024-07-25T15:59:39.010000"],["2024-07-25T15:59:40.010000"],["2024-07-25T15:59:41.010000"],["2024-07-25T15:59:42.010000"],["2024-07-25T15:59:43.010000"],["2024-07-25T15:59:44.010000"],["2024-07-25T15:59:45.010000"],["2024-07-25T15:59:46.010000"],["2024-07-25T15:59:47.010000"],["2024-07-25T15:59:48.010000"],["2024-07-25T15:59:49.010000"],["2024-07-25T15:59:50.010000"],["2024-07-25T15:59:51.010000"],["2024-07-25T15:59:52.010000"],["2024-07-25T15:59:53.010000"],["2024-07-25T15:59:54.010000"],["2024-07-25T15:59:55.010000"],["2024-07-25T15:59:56.010000"],["2024-07-25T15:59:57.010000"],["2024-07-25T15:59:58.010000"],["2024-07-25T15:59:59.010000"],["2024-07-25T16:00:00.010000"],["2024-07-25T16:00:01.010000"],["2024-07-25T16:00:02.010000"],["2024-07-25T16:00:03.010000"],["2024-07-25T16:00:04.010000"],["2024-07-25T16:00:05.010000"],["2024-07-25T16:00:06.010000"],["2024-07-25T16:00:07.010000"],["2024-07-25T16:00:08.010000"],["2024-07-25T16:00:09.010000"],["2024-07-25T16:00:10.010000"],["2024-07-25T16:00:11.010000"],["2024-07-25T16:00:12.010000"],["2024-07-25T16:00:13.010000"],["2024-07-25T16:00:14.010000"],["2024-07-25T16:00:15.010000"],["2024-07-25T16:00:16.010000"],["2024-07-25T16:00:17.010000"],["2024-07-25T16:00:18.010000"],["2024-07-25T16:00:19.010000"],["2024-07-25T16:00:20.010000"],["2024-07-25T16:00:21.010000"],["2024-07-25T16:00:22.010000"],["2024-07-25T16:00:23.010000"],["2024-07-25T16:00:24.010000"],["2024-07-25T16:00:25.010000"],["2024-07-25T16:00:26.010000"],["2024-07-25T16:00:27.010000"],["2024-07-25T16:00:28.010000"],["2024-07-25T16:00:29.010000"],["2024-07-25T16:00:30.010000"],["2024-07-25T16:00:31.010000"],["2024-07-25T16:00:32.010000"],["2024-07-25T16:00:33.010000"],["2024-07-25T16:00:34.010000"],["2024-07-25T16:00:35.010000"],["2024-07-25T16:00:36.010000"],["2024-07-25T16:00:37.010000"],["2024-07-25T16:00:38.010000"],["2024-07-25T16:00:39.010000"],["2024-07-25T16:00:40.010000"],["2024-07-25T16:00:41.010000"],["2024-07-25T16:00:42.010000"],["2024-07-25T16:00:43.010000"],["2024-07-25T16:00:44.010000"],["2024-07-25T16:00:45.010000"],["2024-07-25T16:00:46.010000"],["2024-07-25T16:00:47.010000"],["2024-07-25T16:00:48.010000"],["2024-07-25T16:00:49.010000"],["2024-07-25T16:00:50.010000"],["2024-07-25T16:00:51.010000"],["2024-07-25T16:00:52.010000"],["2024-07-25T16:00:53.010000"],["2024-07-25T16:00:54.010000"],["2024-07-25T16:00:55.010000"],["2024-07-25T16:00:56.010000"],["2024-07-25T16:00:57.010000"],["2024-07-25T16:00:58.010000"],["2024-07-25T16:00:59.010000"],["2024-07-25T16:01:00.010000"],["2024-07-25T16:01:01.010000"],["2024-07-25T16:01:02.010000"],["2024-07-25T16:01:03.010000"],["2024-07-25T16:01:04.010000"],["2024-07-25T16:01:05.010000"],["2024-07-25T16:01:06.010000"],["2024-07-25T16:01:07.010000"],["2024-07-25T16:01:08.010000"],["2024-07-25T16:01:09.010000"],["2024-07-25T16:01:10.010000"],["2024-07-25T16:01:11.010000"],["2024-07-25T16:01:12.010000"],["2024-07-25T16:01:13.010000"],["2024-07-25T16:01:14.010000"],["2024-07-25T16:01:15.010000"],["2024-07-25T16:01:16.010000"],["2024-07-25T16:01:17.010000"],["2024-07-25T16:01:18.010000"],["2024-07-25T16:01:19.010000"],["2024-07-25T16:01:20.010000"],["2024-07-25T16:01:21.010000"],["2024-07-25T16:01:22.010000"],["2024-07-25T16:01:23.010000"],["2024-07-25T16:01:24.010000"],["2024-07-25T16:01:25.010000"],["2024-07-25T16:01:26.010000"],["2024-07-25T16:01:27.010000"],["2024-07-25T16:01:28.010000"],["2024-07-25T16:01:29.010000"],["2024-07-25T16:01:30.010000"],["2024-07-25T16:01:31.010000"],["2024-07-25T16:01:32.010000"],["2024-07-25T16:01:33.010000"],["2024-07-25T16:01:34.010000"],["2024-07-25T16:01:35.010000"],["2024-07-25T16:01:36.010000"],["2024-07-25T16:01:37.010000"],["2024-07-25T16:01:38.010000"],["2024-07-25T16:01:39.010000"],["2024-07-25T16:01:40.010000"],["2024-07-25T16:01:41.010000"],["2024-07-25T16:01:42.010000"],["2024-07-25T16:01:43.010000"],["2024-07-25T16:01:44.010000"],["2024-07-25T16:01:45.010000"],["2024-07-25T16:01:46.010000"],["2024-07-25T16:01:47.010000"],["2024-07-25T16:01:48.010000"],["2024-07-25T16:01:49.010000"],["2024-07-25T16:01:50.010000"],["2024-07-25T16:01:51.010000"],["2024-07-25T16:01:52.010000"],["2024-07-25T16:01:53.010000"],["2024-07-25T16:01:54.010000"],["2024-07-25T16:01:55.010000"],["2024-07-25T16:01:56.010000"],["2024-07-25T16:01:57.010000"],["2024-07-25T16:01:58.010000"],["2024-07-25T16:01:59.010000"],["2024-07-25T16:02:00.010000"],["2024-07-25T16:02:01.010000"],["2024-07-25T16:02:02.010000"],["2024-07-25T16:02:03.010000"],["2024-07-25T16:02:04.010000"],["2024-07-25T16:02:05.010000"],["2024-07-25T16:02:06.010000"],["2024-07-25T16:02:07.010000"],["2024-07-25T16:02:08.010000"],["2024-07-25T16:02:09.010000"],["2024-07-25T16:02:10.010000"],["2024-07-25T16:02:11.010000"],["2024-07-25T16:02:12.010000"],["2024-07-25T16:02:13.010000"],["2024-07-25T16:02:14.010000"],["2024-07-25T16:02:15.010000"],["2024-07-25T16:02:16.010000"],["2024-07-25T16:02:17.010000"],["2024-07-25T16:02:18.010000"],["2024-07-25T16:02:19.010000"],["2024-07-25T16:02:20.010000"],["2024-07-25T16:02:21.010000"],["2024-07-25T16:02:22.010000"],["2024-07-25T16:02:23.010000"],["2024-07-25T16:02:24.010000"],["2024-07-25T16:02:25.010000"],["2024-07-25T16:02:26.010000"],["2024-07-25T16:02:27.010000"],["2024-07-25T16:02:28.010000"],["2024-07-25T16:02:29.010000"],["2024-07-25T16:02:30.010000"],["2024-07-25T16:02:31.010000"],["2024-07-25T16:02:32.010000"],["2024-07-25T16:02:33.010000"],["2024-07-25T16:02:34.010000"],["2024-07-25T16:02:35.010000"],["2024-07-25T16:02:36.010000"],["2024-07-25T16:02:37.010000"],["2024-07-25T16:02:38.010000"],["2024-07-25T16:02:39.010000"],["2024-07-25T16:02:40.010000"],["2024-07-25T16:02:41.010000"],["2024-07-25T16:02:42.010000"],["2024-07-25T16:02:43.010000"],["2024-07-25T16:02:44.010000"],["2024-07-25T16:02:45.010000"],["2024-07-25T16:02:46.010000"],["2024-07-25T16:02:47.010000"],["2024-07-25T16:02:48.010000"],["2024-07-25T16:02:49.010000"],["2024-07-25T16:02:50.010000"],["2024-07-25T16:02:51.010000"],["2024-07-25T16:02:52.010000"],["2024-07-25T16:02:53.010000"],["2024-07-25T16:02:54.010000"],["2024-07-25T16:02:55.010000"],["2024-07-25T16:02:56.010000"],["2024-07-25T16:02:57.010000"],["2024-07-25T16:02:58.010000"],["2024-07-25T16:02:59.010000"],["2024-07-25T16:03:00.010000"],["2024-07-25T16:03:01.010000"],["2024-07-25T16:03:02.010000"],["2024-07-25T16:03:03.010000"],["2024-07-25T16:03:04.010000"],["2024-07-25T16:03:05.010000"],["2024-07-25T16:03:06.010000"],["2024-07-25T16:03:07.010000"],["2024-07-25T16:03:08.010000"],["2024-07-25T16:03:09.010000"],["2024-07-25T16:03:10.010000"],["2024-07-25T16:03:11.010000"],["2024-07-25T16:03:12.010000"],["2024-07-25T16:03:13.010000"],["2024-07-25T16:03:14.010000"],["2024-07-25T16:03:15.010000"],["2024-07-25T16:03:16.010000"],["2024-07-25T16:03:17.010000"],["2024-07-25T16:03:18.010000"],["2024-07-25T16:03:19.010000"],["2024-07-25T16:03:20.010000"],["2024-07-25T16:03:21.010000"],["2024-07-25T16:03:22.010000"],["2024-07-25T16:03:23.010000"],["2024-07-25T16:03:24.010000"],["2024-07-25T16:03:25.010000"],["2024-07-25T16:03:26.010000"],["2024-07-25T16:03:27.010000"],["2024-07-25T16:03:28.010000"],["2024-07-25T16:03:29.010000"],["2024-07-25T16:03:30.010000"],["2024-07-25T16:03:31.010000"],["2024-07-25T16:03:32.010000"],["2024-07-25T16:03:33.010000"],["2024-07-25T16:03:34.010000"],["2024-07-25T16:03:35.010000"],["2024-07-25T16:03:36.010000"],["2024-07-25T16:03:37.010000"],["2024-07-25T16:03:38.010000"],["2024-07-25T16:03:39.010000"],["2024-07-25T16:03:40.010000"],["2024-07-25T16:03:41.010000"],["2024-07-25T16:03:42.010000"],["2024-07-25T16:03:43.010000"],["2024-07-25T16:03:44.010000"],["2024-07-25T16:03:45.010000"],["2024-07-25T16:03:46.010000"],["2024-07-25T16:03:47.010000"],["2024-07-25T16:03:48.010000"],["2024-07-25T16:03:49.010000"],["2024-07-25T16:03:50.010000"],["2024-07-25T16:03:51.010000"],["2024-07-25T16:03:52.010000"],["2024-07-25T16:03:53.010000"],["2024-07-25T16:03:54.010000"],["2024-07-25T16:03:55.010000"],["2024-07-25T16:03:56.010000"],["2024-07-25T16:03:57.010000"],["2024-07-25T16:03:58.010000"],["2024-07-25T16:03:59.010000"],["2024-07-25T16:04:00.010000"],["2024-07-25T16:04:01.010000"],["2024-07-25T16:04:02.010000"],["2024-07-25T16:04:03.010000"],["2024-07-25T16:04:04.010000"],["2024-07-25T16:04:05.010000"],["2024-07-25T16:04:06.010000"],["2024-07-25T16:04:07.010000"],["2024-07-25T16:04:08.010000"],["2024-07-25T16:04:09.010000"],["2024-07-25T16:04:10.010000"],["2024-07-25T16:04:11.010000"],["2024-07-25T16:04:12.010000"],["2024-07-25T16:04:13.010000"],["2024-07-25T16:04:14.010000"],["2024-07-25T16:04:15.010000"],["2024-07-25T16:04:16.010000"],["2024-07-25T16:04:17.010000"],["2024-07-25T16:04:18.010000"],["2024-07-25T16:04:19.010000"],["2024-07-25T16:04:20.010000"],["2024-07-25T16:04:21.010000"],["2024-07-25T16:04:22.010000"],["2024-07-25T16:04:23.010000"],["2024-07-25T16:04:24.010000"],["2024-07-25T16:04:25.010000"],["2024-07-25T16:04:26.010000"],["2024-07-25T16:04:27.010000"],["2024-07-25T16:04:28.010000"],["2024-07-25T16:04:29.010000"],["2024-07-25T16:04:30.010000"],["2024-07-25T16:04:31.010000"],["2024-07-25T16:04:32.010000"],["2024-07-25T16:04:33.010000"],["2024-07-25T16:04:34.010000"],["2024-07-25T16:04:35.010000"],["2024-07-25T16:04:36.010000"],["2024-07-25T16:04:37.010000"],["2024-07-25T16:04:38.010000"],["2024-07-25T16:04:39.010000"],["2024-07-25T16:04:40.010000"],["2024-07-25T16:04:41.010000"],["2024-07-25T16:04:42.010000"],["2024-07-25T16:04:43.010000"],["2024-07-25T16:04:44.010000"],["2024-07-25T16:04:45.010000"],["2024-07-25T16:04:46.010000"],["2024-07-25T16:04:47.010000"],["2024-07-25T16:04:48.010000"],["2024-07-25T16:04:49.010000"],["2024-07-25T16:04:50.010000"],["2024-07-25T16:04:51.010000"],["2024-07-25T16:04:52.010000"],["2024-07-25T16:04:53.010000"],["2024-07-25T16:04:54.010000"],["2024-07-25T16:04:55.010000"],["2024-07-25T16:04:56.010000"],["2024-07-25T16:04:57.010000"],["2024-07-25T16:04:58.010000"],["2024-07-25T16:04:59.010000"],["2024-07-25T16:05:00.010000"],["2024-07-25T16:05:01.010000"],["2024-07-25T16:05:02.010000"],["2024-07-25T16:05:03.010000"],["2024-07-25T16:05:04.010000"],["2024-07-25T16:05:05.010000"],["2024-07-25T16:05:06.010000"],["2024-07-25T16:05:07.010000"],["2024-07-25T16:05:08.010000"],["2024-07-25T16:05:09.010000"],["2024-07-25T16:05:10.010000"],["2024-07-25T16:05:11.010000"],["2024-07-25T16:05:12.010000"],["2024-07-25T16:05:13.010000"],["2024-07-25T16:05:14.010000"],["2024-07-25T16:05:15.010000"],["2024-07-25T16:05:16.010000"],["2024-07-25T16:05:17.010000"],["2024-07-25T16:05:18.010000"],["2024-07-25T16:05:19.010000"],["2024-07-25T16:05:20.010000"],["2024-07-25T16:05:21.010000"],["2024-07-25T16:05:22.010000"],["2024-07-25T16:05:23.010000"],["2024-07-25T16:05:24.010000"],["2024-07-25T16:05:25.010000"],["2024-07-25T16:05:26.010000"],["2024-07-25T16:05:27.010000"],["2024-07-25T16:05:28.010000"],["2024-07-25T16:05:29.010000"],["2024-07-25T16:05:30.010000"],["2024-07-25T16:05:31.010000"],["2024-07-25T16:05:32.010000"],["2024-07-25T16:05:33.010000"],["2024-07-25T16:05:34.010000"],["2024-07-25T16:05:35.010000"],["2024-07-25T16:05:36.010000"],["2024-07-25T16:05:37.010000"],["2024-07-25T16:05:38.010000"],["2024-07-25T16:05:39.010000"],["2024-07-25T16:05:40.010000"],["2024-07-25T16:05:41.010000"],["2024-07-25T16:05:42.010000"],["2024-07-25T16:05:43.010000"],["2024-07-25T16:05:44.010000"],["2024-07-25T16:05:45.010000"],["2024-07-25T16:05:46.010000"],["2024-07-25T16:05:47.010000"],["2024-07-25T16:05:48.010000"],["2024-07-25T16:05:49.010000"],["2024-07-25T16:05:50.010000"],["2024-07-25T16:05:51.010000"],["2024-07-25T16:05:52.010000"],["2024-07-25T16:05:53.010000"],["2024-07-25T16:05:54.010000"],["2024-07-25T16:05:55.010000"],["2024-07-25T16:05:56.010000"],["2024-07-25T16:05:57.010000"],["2024-07-25T16:05:58.010000"],["2024-07-25T16:05:59.010000"],["2024-07-25T16:06:00.010000"],["2024-07-25T16:06:01.010000"],["2024-07-25T16:06:02.010000"],["2024-07-25T16:06:03.010000"],["2024-07-25T16:06:04.010000"],["2024-07-25T16:06:05.010000"],["2024-07-25T16:06:06.010000"],["2024-07-25T16:06:07.010000"],["2024-07-25T16:06:08.010000"],["2024-07-25T16:06:09.010000"],["2024-07-25T16:06:10.010000"],["2024-07-25T16:06:11.010000"],["2024-07-25T16:06:12.010000"],["2024-07-25T16:06:13.010000"],["2024-07-25T16:06:14.010000"],["2024-07-25T16:06:15.010000"],["2024-07-25T16:06:16.010000"],["2024-07-25T16:06:17.010000"],["2024-07-25T16:06:18.010000"],["2024-07-25T16:06:19.010000"],["2024-07-25T16:06:20.010000"],["2024-07-25T16:06:21.010000"],["2024-07-25T16:06:22.010000"],["2024-07-25T16:06:23.010000"],["2024-07-25T16:06:24.010000"],["2024-07-25T16:06:25.010000"],["2024-07-25T16:06:26.010000"],["2024-07-25T16:06:27.010000"],["2024-07-25T16:06:28.010000"],["2024-07-25T16:06:29.010000"],["2024-07-25T16:06:30.010000"],["2024-07-25T16:06:31.010000"],["2024-07-25T16:06:32.010000"],["2024-07-25T16:06:33.010000"],["2024-07-25T16:06:34.010000"],["2024-07-25T16:06:35.010000"],["2024-07-25T16:06:36.010000"],["2024-07-25T16:06:37.010000"],["2024-07-25T16:06:38.010000"],["2024-07-25T16:06:39.010000"],["2024-07-25T16:06:40.010000"],["2024-07-25T16:06:41.010000"],["2024-07-25T16:06:42.010000"],["2024-07-25T16:06:43.010000"],["2024-07-25T16:06:44.010000"],["2024-07-25T16:06:45.010000"],["2024-07-25T16:06:46.010000"],["2024-07-25T16:06:47.010000"],["2024-07-25T16:06:48.010000"],["2024-07-25T16:06:49.010000"],["2024-07-25T16:06:50.010000"],["2024-07-25T16:06:51.010000"],["2024-07-25T16:06:52.010000"],["2024-07-25T16:06:53.010000"],["2024-07-25T16:06:54.010000"],["2024-07-25T16:06:55.010000"],["2024-07-25T16:06:56.010000"],["2024-07-25T16:06:57.010000"],["2024-07-25T16:06:58.010000"],["2024-07-25T16:06:59.010000"],["2024-07-25T16:07:00.010000"],["2024-07-25T16:07:01.010000"],["2024-07-25T16:07:02.010000"],["2024-07-25T16:07:03.010000"],["2024-07-25T16:07:04.010000"],["2024-07-25T16:07:05.010000"],["2024-07-25T16:07:06.010000"],["2024-07-25T16:07:07.010000"],["2024-07-25T16:07:08.010000"],["2024-07-25T16:07:09.010000"],["2024-07-25T16:07:10.010000"],["2024-07-25T16:07:11.010000"],["2024-07-25T16:07:12.010000"],["2024-07-25T16:07:13.010000"],["2024-07-25T16:07:14.010000"],["2024-07-25T16:07:15.010000"],["2024-07-25T16:07:16.010000"],["2024-07-25T16:07:17.010000"],["2024-07-25T16:07:18.010000"],["2024-07-25T16:07:19.010000"],["2024-07-25T16:07:20.010000"],["2024-07-25T16:07:21.010000"],["2024-07-25T16:07:22.010000"],["2024-07-25T16:07:23.010000"],["2024-07-25T16:07:24.010000"],["2024-07-25T16:07:25.010000"],["2024-07-25T16:07:26.010000"],["2024-07-25T16:07:27.010000"],["2024-07-25T16:07:28.010000"],["2024-07-25T16:07:29.010000"],["2024-07-25T16:07:30.010000"],["2024-07-25T16:07:31.010000"],["2024-07-25T16:07:32.010000"],["2024-07-25T16:07:33.010000"],["2024-07-25T16:07:34.010000"],["2024-07-25T16:07:35.010000"],["2024-07-25T16:07:36.010000"],["2024-07-25T16:07:37.010000"],["2024-07-25T16:07:38.010000"],["2024-07-25T16:07:39.010000"],["2024-07-25T16:07:40.010000"],["2024-07-25T16:07:41.010000"],["2024-07-25T16:07:42.010000"],["2024-07-25T16:07:43.010000"],["2024-07-25T16:07:44.010000"],["2024-07-25T16:07:45.010000"],["2024-07-25T16:07:46.010000"],["2024-07-25T16:07:47.010000"],["2024-07-25T16:07:48.010000"],["2024-07-25T16:07:49.010000"],["2024-07-25T16:07:50.010000"],["2024-07-25T16:07:51.010000"],["2024-07-25T16:07:52.010000"],["2024-07-25T16:07:53.010000"],["2024-07-25T16:07:54.010000"],["2024-07-25T16:07:55.010000"],["2024-07-25T16:07:56.010000"],["2024-07-25T16:07:57.010000"],["2024-07-25T16:07:58.010000"],["2024-07-25T16:07:59.010000"],["2024-07-25T16:08:00.010000"],["2024-07-25T16:08:01.010000"],["2024-07-25T16:08:02.010000"],["2024-07-25T16:08:03.010000"],["2024-07-25T16:08:04.010000"],["2024-07-25T16:08:05.010000"],["2024-07-25T16:08:06.010000"],["2024-07-25T16:08:07.010000"],["2024-07-25T16:08:08.010000"],["2024-07-25T16:08:09.010000"],["2024-07-25T16:08:10.010000"],["2024-07-25T16:08:11.010000"],["2024-07-25T16:08:12.010000"],["2024-07-25T16:08:13.010000"],["2024-07-25T16:08:14.010000"],["2024-07-25T16:08:15.010000"],["2024-07-25T16:08:16.010000"],["2024-07-25T16:08:17.010000"],["2024-07-25T16:08:18.010000"],["2024-07-25T16:08:19.010000"],["2024-07-25T16:08:20.010000"],["2024-07-25T16:08:21.010000"],["2024-07-25T16:08:22.010000"],["2024-07-25T16:08:23.010000"],["2024-07-25T16:08:24.010000"],["2024-07-25T16:08:25.010000"],["2024-07-25T16:08:26.010000"],["2024-07-25T16:08:27.010000"],["2024-07-25T16:08:28.010000"],["2024-07-25T16:08:29.010000"],["2024-07-25T16:08:30.010000"],["2024-07-25T16:08:31.010000"],["2024-07-25T16:08:32.010000"],["2024-07-25T16:08:33.010000"],["2024-07-25T16:08:34.010000"],["2024-07-25T16:08:35.010000"],["2024-07-25T16:08:36.010000"],["2024-07-25T16:08:37.010000"],["2024-07-25T16:08:38.010000"],["2024-07-25T16:08:39.010000"],["2024-07-25T16:08:40.010000"],["2024-07-25T16:08:41.010000"],["2024-07-25T16:08:42.010000"],["2024-07-25T16:08:43.010000"],["2024-07-25T16:08:44.010000"],["2024-07-25T16:08:45.010000"],["2024-07-25T16:08:46.010000"],["2024-07-25T16:08:47.010000"],["2024-07-25T16:08:48.010000"],["2024-07-25T16:08:49.010000"],["2024-07-25T16:08:50.010000"],["2024-07-25T16:08:51.010000"],["2024-07-25T16:08:52.010000"],["2024-07-25T16:08:53.010000"],["2024-07-25T16:08:54.010000"],["2024-07-25T16:08:55.010000"],["2024-07-25T16:08:56.010000"],["2024-07-25T16:08:57.010000"],["2024-07-25T16:08:58.010000"],["2024-07-25T16:08:59.010000"],["2024-07-25T16:09:00.010000"],["2024-07-25T16:09:01.010000"],["2024-07-25T16:09:02.010000"],["2024-07-25T16:09:03.010000"],["2024-07-25T16:09:04.010000"],["2024-07-25T16:09:05.010000"],["2024-07-25T16:09:06.010000"],["2024-07-25T16:09:07.010000"],["2024-07-25T16:09:08.010000"],["2024-07-25T16:09:09.010000"],["2024-07-25T16:09:10.010000"],["2024-07-25T16:09:11.010000"],["2024-07-25T16:09:12.010000"],["2024-07-25T16:09:13.010000"],["2024-07-25T16:09:14.010000"],["2024-07-25T16:09:15.010000"],["2024-07-25T16:09:16.010000"],["2024-07-25T16:09:17.010000"],["2024-07-25T16:09:18.010000"],["2024-07-25T16:09:19.010000"],["2024-07-25T16:09:20.010000"],["2024-07-25T16:09:21.010000"],["2024-07-25T16:09:22.010000"],["2024-07-25T16:09:23.010000"],["2024-07-25T16:09:24.010000"],["2024-07-25T16:09:25.010000"],["2024-07-25T16:09:26.010000"],["2024-07-25T16:09:27.010000"],["2024-07-25T16:09:28.010000"],["2024-07-25T16:09:29.010000"],["2024-07-25T16:09:30.010000"],["2024-07-25T16:09:31.010000"],["2024-07-25T16:09:32.010000"],["2024-07-25T16:09:33.010000"],["2024-07-25T16:09:34.010000"],["2024-07-25T16:09:35.010000"],["2024-07-25T16:09:36.010000"],["2024-07-25T16:09:37.010000"],["2024-07-25T16:09:38.010000"],["2024-07-25T16:09:39.010000"],["2024-07-25T16:09:40.010000"],["2024-07-25T16:09:41.010000"],["2024-07-25T16:09:42.010000"],["2024-07-25T16:09:43.010000"],["2024-07-25T16:09:44.010000"],["2024-07-25T16:09:45.010000"],["2024-07-25T16:09:46.010000"],["2024-07-25T16:09:47.010000"],["2024-07-25T16:09:48.010000"],["2024-07-25T16:09:49.010000"],["2024-07-25T16:09:50.010000"],["2024-07-25T16:09:51.010000"],["2024-07-25T16:09:52.010000"],["2024-07-25T16:09:53.010000"],["2024-07-25T16:09:54.010000"],["2024-07-25T16:09:55.010000"],["2024-07-25T16:09:56.010000"],["2024-07-25T16:09:57.010000"],["2024-07-25T16:09:58.010000"],["2024-07-25T16:09:59.010000"],["2024-07-25T16:10:00.010000"],["2024-07-25T16:10:01.010000"],["2024-07-25T16:10:02.010000"],["2024-07-25T16:10:03.010000"],["2024-07-25T16:10:04.010000"],["2024-07-25T16:10:05.010000"],["2024-07-25T16:10:06.010000"],["2024-07-25T16:10:07.010000"],["2024-07-25T16:10:08.010000"],["2024-07-25T16:10:09.010000"],["2024-07-25T16:10:10.010000"],["2024-07-25T16:10:11.010000"],["2024-07-25T16:10:12.010000"],["2024-07-25T16:10:13.010000"],["2024-07-25T16:10:14.010000"],["2024-07-25T16:10:15.010000"],["2024-07-25T16:10:16.010000"],["2024-07-25T16:10:17.010000"],["2024-07-25T16:10:18.010000"],["2024-07-25T16:10:19.010000"],["2024-07-25T16:10:20.010000"],["2024-07-25T16:10:21.010000"],["2024-07-25T16:10:22.010000"],["2024-07-25T16:10:23.010000"],["2024-07-25T16:10:24.010000"],["2024-07-25T16:10:25.010000"],["2024-07-25T16:10:26.010000"],["2024-07-25T16:10:27.010000"],["2024-07-25T16:10:28.010000"],["2024-07-25T16:10:29.010000"],["2024-07-25T16:10:30.010000"],["2024-07-25T16:10:31.010000"],["2024-07-25T16:10:32.010000"],["2024-07-25T16:10:33.010000"],["2024-07-25T16:10:34.010000"],["2024-07-25T16:10:35.010000"],["2024-07-25T16:10:36.010000"],["2024-07-25T16:10:37.010000"],["2024-07-25T16:10:38.010000"],["2024-07-25T16:10:39.010000"],["2024-07-25T16:10:40.010000"],["2024-07-25T16:10:41.010000"],["2024-07-25T16:10:42.010000"],["2024-07-25T16:10:43.010000"],["2024-07-25T16:10:44.010000"],["2024-07-25T16:10:45.010000"],["2024-07-25T16:10:46.010000"],["2024-07-25T16:10:47.010000"],["2024-07-25T16:10:48.010000"],["2024-07-25T16:10:49.010000"],["2024-07-25T16:10:50.010000"],["2024-07-25T16:10:51.010000"],["2024-07-25T16:10:52.010000"],["2024-07-25T16:10:53.010000"],["2024-07-25T16:10:54.010000"],["2024-07-25T16:10:55.010000"],["2024-07-25T16:10:56.010000"],["2024-07-25T16:10:57.010000"],["2024-07-25T16:10:58.010000"],["2024-07-25T16:10:59.010000"],["2024-07-25T16:11:00.010000"],["2024-07-25T16:11:01.010000"],["2024-07-25T16:11:02.010000"],["2024-07-25T16:11:03.010000"],["2024-07-25T16:11:04.010000"],["2024-07-25T16:11:05.010000"],["2024-07-25T16:11:06.010000"],["2024-07-25T16:11:07.010000"],["2024-07-25T16:11:08.010000"],["2024-07-25T16:11:09.010000"],["2024-07-25T16:11:10.010000"],["2024-07-25T16:11:11.010000"],["2024-07-25T16:11:12.010000"],["2024-07-25T16:11:13.010000"],["2024-07-25T16:11:14.010000"],["2024-07-25T16:11:15.010000"],["2024-07-25T16:11:16.010000"],["2024-07-25T16:11:17.010000"],["2024-07-25T16:11:18.010000"],["2024-07-25T16:11:19.010000"],["2024-07-25T16:11:20.010000"],["2024-07-25T16:11:21.010000"],["2024-07-25T16:11:22.010000"],["2024-07-25T16:11:23.010000"],["2024-07-25T16:11:24.010000"],["2024-07-25T16:11:25.010000"],["2024-07-25T16:11:26.010000"],["2024-07-25T16:11:27.010000"],["2024-07-25T16:11:28.010000"],["2024-07-25T16:11:29.010000"],["2024-07-25T16:11:30.010000"],["2024-07-25T16:11:31.010000"],["2024-07-25T16:11:32.010000"],["2024-07-25T16:11:33.010000"],["2024-07-25T16:11:34.010000"],["2024-07-25T16:11:35.010000"],["2024-07-25T16:11:36.010000"],["2024-07-25T16:11:37.010000"],["2024-07-25T16:11:38.010000"],["2024-07-25T16:11:39.010000"],["2024-07-25T16:11:40.010000"],["2024-07-25T16:11:41.010000"],["2024-07-25T16:11:42.010000"],["2024-07-25T16:11:43.010000"],["2024-07-25T16:11:44.010000"],["2024-07-25T16:11:45.010000"],["2024-07-25T16:11:46.010000"],["2024-07-25T16:11:47.010000"],["2024-07-25T16:11:48.010000"],["2024-07-25T16:11:49.010000"],["2024-07-25T16:11:50.010000"],["2024-07-25T16:11:51.010000"],["2024-07-25T16:11:52.010000"],["2024-07-25T16:11:53.010000"],["2024-07-25T16:11:54.010000"],["2024-07-25T16:11:55.010000"],["2024-07-25T16:11:56.010000"],["2024-07-25T16:11:57.010000"],["2024-07-25T16:11:58.010000"],["2024-07-25T16:11:59.010000"],["2024-07-25T16:12:00.010000"],["2024-07-25T16:12:01.010000"],["2024-07-25T16:12:02.010000"],["2024-07-25T16:12:03.010000"],["2024-07-25T16:12:04.010000"],["2024-07-25T16:12:05.010000"],["2024-07-25T16:12:06.010000"],["2024-07-25T16:12:07.010000"],["2024-07-25T16:12:08.010000"],["2024-07-25T16:12:09.010000"],["2024-07-25T16:12:10.010000"],["2024-07-25T16:12:11.010000"],["2024-07-25T16:12:12.010000"],["2024-07-25T16:12:13.010000"],["2024-07-25T16:12:14.010000"],["2024-07-25T16:12:15.010000"],["2024-07-25T16:12:16.010000"],["2024-07-25T16:12:17.010000"],["2024-07-25T16:12:18.010000"],["2024-07-25T16:12:19.010000"],["2024-07-25T16:12:20.010000"],["2024-07-25T16:12:21.010000"],["2024-07-25T16:12:22.010000"],["2024-07-25T16:12:23.010000"],["2024-07-25T16:12:24.010000"],["2024-07-25T16:12:25.010000"],["2024-07-25T16:12:26.010000"],["2024-07-25T16:12:27.010000"],["2024-07-25T16:12:28.010000"],["2024-07-25T16:12:29.010000"],["2024-07-25T16:12:30.010000"],["2024-07-25T16:12:31.010000"],["2024-07-25T16:12:32.010000"],["2024-07-25T16:12:33.010000"],["2024-07-25T16:12:34.010000"],["2024-07-25T16:12:35.010000"],["2024-07-25T16:12:36.010000"],["2024-07-25T16:12:37.010000"],["2024-07-25T16:12:38.010000"],["2024-07-25T16:12:39.010000"],["2024-07-25T16:12:40.010000"],["2024-07-25T16:12:41.010000"],["2024-07-25T16:12:42.010000"],["2024-07-25T16:12:43.010000"],["2024-07-25T16:12:44.010000"],["2024-07-25T16:12:45.010000"],["2024-07-25T16:12:46.010000"],["2024-07-25T16:12:47.010000"],["2024-07-25T16:12:48.010000"],["2024-07-25T16:12:49.010000"],["2024-07-25T16:12:50.010000"],["2024-07-25T16:12:51.010000"],["2024-07-25T16:12:52.010000"],["2024-07-25T16:12:53.010000"],["2024-07-25T16:12:54.010000"],["2024-07-25T16:12:55.010000"],["2024-07-25T16:12:56.010000"],["2024-07-25T16:12:57.010000"],["2024-07-25T16:12:58.010000"],["2024-07-25T16:12:59.010000"],["2024-07-25T16:13:00.010000"],["2024-07-25T16:13:01.010000"],["2024-07-25T16:13:02.010000"],["2024-07-25T16:13:03.010000"],["2024-07-25T16:13:04.010000"],["2024-07-25T16:13:05.010000"],["2024-07-25T16:13:06.010000"],["2024-07-25T16:13:07.010000"],["2024-07-25T16:13:08.010000"],["2024-07-25T16:13:09.010000"],["2024-07-25T16:13:10.010000"],["2024-07-25T16:13:11.010000"],["2024-07-25T16:13:12.010000"],["2024-07-25T16:13:13.010000"],["2024-07-25T16:13:14.010000"],["2024-07-25T16:13:15.010000"],["2024-07-25T16:13:16.010000"],["2024-07-25T16:13:17.010000"],["2024-07-25T16:13:18.010000"],["2024-07-25T16:13:19.010000"],["2024-07-25T16:13:20.010000"],["2024-07-25T16:13:21.010000"],["2024-07-25T16:13:22.010000"],["2024-07-25T16:13:23.010000"],["2024-07-25T16:13:24.010000"],["2024-07-25T16:13:25.010000"],["2024-07-25T16:13:26.010000"],["2024-07-25T16:13:27.010000"],["2024-07-25T16:13:28.010000"],["2024-07-25T16:13:29.010000"],["2024-07-25T16:13:30.010000"],["2024-07-25T16:13:31.010000"],["2024-07-25T16:13:32.010000"],["2024-07-25T16:13:33.010000"],["2024-07-25T16:13:34.010000"],["2024-07-25T16:13:35.010000"],["2024-07-25T16:13:36.010000"],["2024-07-25T16:13:37.010000"],["2024-07-25T16:13:38.010000"],["2024-07-25T16:13:39.010000"],["2024-07-25T16:13:40.010000"],["2024-07-25T16:13:41.010000"],["2024-07-25T16:13:42.010000"],["2024-07-25T16:13:43.010000"],["2024-07-25T16:13:44.010000"],["2024-07-25T16:13:45.010000"],["2024-07-25T16:13:46.010000"],["2024-07-25T16:13:47.010000"],["2024-07-25T16:13:48.010000"],["2024-07-25T16:13:49.010000"],["2024-07-25T16:13:50.010000"],["2024-07-25T16:13:51.010000"],["2024-07-25T16:13:52.010000"],["2024-07-25T16:13:53.010000"],["2024-07-25T16:13:54.010000"],["2024-07-25T16:13:55.010000"],["2024-07-25T16:13:56.010000"],["2024-07-25T16:13:57.010000"],["2024-07-25T16:13:58.010000"],["2024-07-25T16:13:59.010000"],["2024-07-25T16:14:00.010000"],["2024-07-25T16:14:01.010000"],["2024-07-25T16:14:02.010000"],["2024-07-25T16:14:03.010000"],["2024-07-25T16:14:04.010000"],["2024-07-25T16:14:05.010000"],["2024-07-25T16:14:06.010000"],["2024-07-25T16:14:07.010000"],["2024-07-25T16:14:08.010000"],["2024-07-25T16:14:09.010000"],["2024-07-25T16:14:10.010000"],["2024-07-25T16:14:11.010000"],["2024-07-25T16:14:12.010000"],["2024-07-25T16:14:13.010000"],["2024-07-25T16:14:14.010000"],["2024-07-25T16:14:15.010000"],["2024-07-25T16:14:16.010000"],["2024-07-25T16:14:17.010000"],["2024-07-25T16:14:18.010000"],["2024-07-25T16:14:19.010000"],["2024-07-25T16:14:20.010000"],["2024-07-25T16:14:21.010000"],["2024-07-25T16:14:22.010000"],["2024-07-25T16:14:23.010000"],["2024-07-25T16:14:24.010000"],["2024-07-25T16:14:25.010000"],["2024-07-25T16:14:26.010000"],["2024-07-25T16:14:27.010000"],["2024-07-25T16:14:28.010000"],["2024-07-25T16:14:29.010000"],["2024-07-25T16:14:30.010000"],["2024-07-25T16:14:31.010000"],["2024-07-25T16:14:32.010000"],["2024-07-25T16:14:33.010000"],["2024-07-25T16:14:34.010000"],["2024-07-25T16:14:35.010000"],["2024-07-25T16:14:36.010000"],["2024-07-25T16:14:37.010000"],["2024-07-25T16:14:38.010000"],["2024-07-25T16:14:39.010000"],["2024-07-25T16:14:40.010000"],["2024-07-25T16:14:41.010000"],["2024-07-25T16:14:42.010000"],["2024-07-25T16:14:43.010000"],["2024-07-25T16:14:44.010000"],["2024-07-25T16:14:45.010000"],["2024-07-25T16:14:46.010000"],["2024-07-25T16:14:47.010000"],["2024-07-25T16:14:48.010000"],["2024-07-25T16:14:49.010000"],["2024-07-25T16:14:50.010000"],["2024-07-25T16:14:51.010000"],["2024-07-25T16:14:52.010000"],["2024-07-25T16:14:53.010000"],["2024-07-25T16:14:54.010000"],["2024-07-25T16:14:55.010000"],["2024-07-25T16:14:56.010000"],["2024-07-25T16:14:57.010000"],["2024-07-25T16:14:58.010000"],["2024-07-25T16:14:59.010000"],["2024-07-25T16:15:00.010000"],["2024-07-25T16:15:01.010000"],["2024-07-25T16:15:02.010000"],["2024-07-25T16:15:03.010000"],["2024-07-25T16:15:04.010000"],["2024-07-25T16:15:05.010000"],["2024-07-25T16:15:06.010000"],["2024-07-25T16:15:07.010000"],["2024-07-25T16:15:08.010000"],["2024-07-25T16:15:09.010000"],["2024-07-25T16:15:10.010000"],["2024-07-25T16:15:11.010000"],["2024-07-25T16:15:12.010000"],["2024-07-25T16:15:13.010000"],["2024-07-25T16:15:14.010000"],["2024-07-25T16:15:15.010000"],["2024-07-25T16:15:16.010000"],["2024-07-25T16:15:17.010000"],["2024-07-25T16:15:18.010000"],["2024-07-25T16:15:19.010000"],["2024-07-25T16:15:20.010000"],["2024-07-25T16:15:21.010000"],["2024-07-25T16:15:22.010000"],["2024-07-25T16:15:23.010000"],["2024-07-25T16:15:24.010000"],["2024-07-25T16:15:25.010000"],["2024-07-25T16:15:26.010000"],["2024-07-25T16:15:27.010000"],["2024-07-25T16:15:28.010000"],["2024-07-25T16:15:29.010000"],["2024-07-25T16:15:30.010000"],["2024-07-25T16:15:31.010000"],["2024-07-25T16:15:32.010000"],["2024-07-25T16:15:33.010000"],["2024-07-25T16:15:34.010000"],["2024-07-25T16:15:35.010000"],["2024-07-25T16:15:36.010000"],["2024-07-25T16:15:37.010000"],["2024-07-25T16:15:38.010000"],["2024-07-25T16:15:39.010000"],["2024-07-25T16:15:40.010000"],["2024-07-25T16:15:41.010000"],["2024-07-25T16:15:42.010000"],["2024-07-25T16:15:43.010000"],["2024-07-25T16:15:44.010000"],["2024-07-25T16:15:45.010000"],["2024-07-25T16:15:46.010000"],["2024-07-25T16:15:47.010000"],["2024-07-25T16:15:48.010000"],["2024-07-25T16:15:49.010000"],["2024-07-25T16:15:50.010000"],["2024-07-25T16:15:51.010000"],["2024-07-25T16:15:52.010000"],["2024-07-25T16:15:53.010000"],["2024-07-25T16:15:54.010000"],["2024-07-25T16:15:55.010000"],["2024-07-25T16:15:56.010000"],["2024-07-25T16:15:57.010000"],["2024-07-25T16:15:58.010000"],["2024-07-25T16:15:59.010000"],["2024-07-25T16:16:00.010000"],["2024-07-25T16:16:01.010000"],["2024-07-25T16:16:02.010000"],["2024-07-25T16:16:03.010000"],["2024-07-25T16:16:04.010000"],["2024-07-25T16:16:05.010000"],["2024-07-25T16:16:06.010000"],["2024-07-25T16:16:07.010000"],["2024-07-25T16:16:08.010000"],["2024-07-25T16:16:09.010000"],["2024-07-25T16:16:10.010000"],["2024-07-25T16:16:11.010000"],["2024-07-25T16:16:12.010000"],["2024-07-25T16:16:13.010000"],["2024-07-25T16:16:14.010000"],["2024-07-25T16:16:15.010000"],["2024-07-25T16:16:16.010000"],["2024-07-25T16:16:17.010000"],["2024-07-25T16:16:18.010000"],["2024-07-25T16:16:19.010000"],["2024-07-25T16:16:20.010000"],["2024-07-25T16:16:21.010000"],["2024-07-25T16:16:22.010000"],["2024-07-25T16:16:23.010000"],["2024-07-25T16:16:24.010000"],["2024-07-25T16:16:25.010000"],["2024-07-25T16:16:26.010000"],["2024-07-25T16:16:27.010000"],["2024-07-25T16:16:28.010000"],["2024-07-25T16:16:29.010000"],["2024-07-25T16:16:30.010000"],["2024-07-25T16:16:31.010000"],["2024-07-25T16:16:32.010000"],["2024-07-25T16:16:33.010000"],["2024-07-25T16:16:34.010000"],["2024-07-25T16:16:35.010000"],["2024-07-25T16:16:36.010000"],["2024-07-25T16:16:37.010000"],["2024-07-25T16:16:38.010000"],["2024-07-25T16:16:39.010000"],["2024-07-25T16:16:40.010000"],["2024-07-25T16:16:41.010000"],["2024-07-25T16:16:42.010000"],["2024-07-25T16:16:43.010000"],["2024-07-25T16:16:44.010000"],["2024-07-25T16:16:45.010000"],["2024-07-25T16:16:46.010000"],["2024-07-25T16:16:47.010000"],["2024-07-25T16:16:48.010000"],["2024-07-25T16:16:49.010000"],["2024-07-25T16:16:50.010000"],["2024-07-25T16:16:51.010000"],["2024-07-25T16:16:52.010000"],["2024-07-25T16:16:53.010000"],["2024-07-25T16:16:54.010000"],["2024-07-25T16:16:55.010000"],["2024-07-25T16:16:56.010000"],["2024-07-25T16:16:57.010000"],["2024-07-25T16:16:58.010000"],["2024-07-25T16:16:59.010000"],["2024-07-25T16:17:00.010000"],["2024-07-25T16:17:01.010000"],["2024-07-25T16:17:02.010000"],["2024-07-25T16:17:03.010000"],["2024-07-25T16:17:04.010000"],["2024-07-25T16:17:05.010000"],["2024-07-25T16:17:06.010000"],["2024-07-25T16:17:07.010000"],["2024-07-25T16:17:08.010000"],["2024-07-25T16:17:09.010000"],["2024-07-25T16:17:10.010000"],["2024-07-25T16:17:11.010000"],["2024-07-25T16:17:12.010000"],["2024-07-25T16:17:13.010000"],["2024-07-25T16:17:14.010000"],["2024-07-25T16:17:15.010000"],["2024-07-25T16:17:16.010000"],["2024-07-25T16:17:17.010000"],["2024-07-25T16:17:18.010000"],["2024-07-25T16:17:19.010000"],["2024-07-25T16:17:20.010000"],["2024-07-25T16:17:21.010000"],["2024-07-25T16:17:22.010000"],["2024-07-25T16:17:23.010000"],["2024-07-25T16:17:24.010000"],["2024-07-25T16:17:25.010000"],["2024-07-25T16:17:26.010000"],["2024-07-25T16:17:27.010000"],["2024-07-25T16:17:28.010000"],["2024-07-25T16:17:29.010000"],["2024-07-25T16:17:30.010000"],["2024-07-25T16:17:31.010000"],["2024-07-25T16:17:32.010000"],["2024-07-25T16:17:33.010000"],["2024-07-25T16:17:34.010000"],["2024-07-25T16:17:35.010000"],["2024-07-25T16:17:36.010000"],["2024-07-25T16:17:37.010000"],["2024-07-25T16:17:38.010000"],["2024-07-25T16:17:39.010000"],["2024-07-25T16:17:40.010000"],["2024-07-25T16:17:41.010000"],["2024-07-25T16:17:42.010000"],["2024-07-25T16:17:43.010000"],["2024-07-25T16:17:44.010000"],["2024-07-25T16:17:45.010000"],["2024-07-25T16:17:46.010000"],["2024-07-25T16:17:47.010000"],["2024-07-25T16:17:48.010000"],["2024-07-25T16:17:49.010000"],["2024-07-25T16:17:50.010000"],["2024-07-25T16:17:51.010000"],["2024-07-25T16:17:52.010000"],["2024-07-25T16:17:53.010000"],["2024-07-25T16:17:54.010000"],["2024-07-25T16:17:55.010000"],["2024-07-25T16:17:56.010000"],["2024-07-25T16:17:57.010000"],["2024-07-25T16:17:58.010000"],["2024-07-25T16:17:59.010000"],["2024-07-25T16:18:00.010000"],["2024-07-25T16:18:01.010000"],["2024-07-25T16:18:02.010000"],["2024-07-25T16:18:03.010000"],["2024-07-25T16:18:04.010000"],["2024-07-25T16:18:05.010000"],["2024-07-25T16:18:06.010000"],["2024-07-25T16:18:07.010000"],["2024-07-25T16:18:08.010000"],["2024-07-25T16:18:09.010000"],["2024-07-25T16:18:10.010000"],["2024-07-25T16:18:11.010000"],["2024-07-25T16:18:12.010000"],["2024-07-25T16:18:13.010000"],["2024-07-25T16:18:14.010000"],["2024-07-25T16:18:15.010000"],["2024-07-25T16:18:16.010000"],["2024-07-25T16:18:17.010000"],["2024-07-25T16:18:18.010000"],["2024-07-25T16:18:19.010000"],["2024-07-25T16:18:20.010000"],["2024-07-25T16:18:21.010000"],["2024-07-25T16:18:22.010000"],["2024-07-25T16:18:23.010000"],["2024-07-25T16:18:24.010000"],["2024-07-25T16:18:25.010000"],["2024-07-25T16:18:26.010000"],["2024-07-25T16:18:27.010000"],["2024-07-25T16:18:28.010000"],["2024-07-25T16:18:29.010000"],["2024-07-25T16:18:30.010000"],["2024-07-25T16:18:31.010000"],["2024-07-25T16:18:32.010000"],["2024-07-25T16:18:33.010000"],["2024-07-25T16:18:34.010000"],["2024-07-25T16:18:35.010000"],["2024-07-25T16:18:36.010000"],["2024-07-25T16:18:37.010000"],["2024-07-25T16:18:38.010000"],["2024-07-25T16:18:39.010000"],["2024-07-25T16:18:40.010000"],["2024-07-25T16:18:41.010000"],["2024-07-25T16:18:42.010000"],["2024-07-25T16:18:43.010000"],["2024-07-25T16:18:44.010000"],["2024-07-25T16:18:45.010000"],["2024-07-25T16:18:46.010000"],["2024-07-25T16:18:47.010000"],["2024-07-25T16:18:48.010000"],["2024-07-25T16:18:49.010000"],["2024-07-25T16:18:50.010000"],["2024-07-25T16:18:51.010000"],["2024-07-25T16:18:52.010000"],["2024-07-25T16:18:53.010000"],["2024-07-25T16:18:54.010000"],["2024-07-25T16:18:55.010000"],["2024-07-25T16:18:56.010000"],["2024-07-25T16:18:57.010000"],["2024-07-25T16:18:58.010000"],["2024-07-25T16:18:59.010000"],["2024-07-25T16:19:00.010000"],["2024-07-25T16:19:01.010000"],["2024-07-25T16:19:02.010000"],["2024-07-25T16:19:03.010000"],["2024-07-25T16:19:04.010000"],["2024-07-25T16:19:05.010000"],["2024-07-25T16:19:06.010000"],["2024-07-25T16:19:07.010000"],["2024-07-25T16:19:08.010000"],["2024-07-25T16:19:09.010000"],["2024-07-25T16:19:10.010000"],["2024-07-25T16:19:11.010000"],["2024-07-25T16:19:12.010000"],["2024-07-25T16:19:13.010000"],["2024-07-25T16:19:14.010000"],["2024-07-25T16:19:15.010000"],["2024-07-25T16:19:16.010000"],["2024-07-25T16:19:17.010000"],["2024-07-25T16:19:18.010000"],["2024-07-25T16:19:19.010000"],["2024-07-25T16:19:20.010000"],["2024-07-25T16:19:21.010000"],["2024-07-25T16:19:22.010000"],["2024-07-25T16:19:23.010000"],["2024-07-25T16:19:24.010000"],["2024-07-25T16:19:25.010000"],["2024-07-25T16:19:26.010000"],["2024-07-25T16:19:27.010000"],["2024-07-25T16:19:28.010000"],["2024-07-25T16:19:29.010000"],["2024-07-25T16:19:30.010000"],["2024-07-25T16:19:31.010000"],["2024-07-25T16:19:32.010000"],["2024-07-25T16:19:33.010000"],["2024-07-25T16:19:34.010000"],["2024-07-25T16:19:35.010000"],["2024-07-25T16:19:36.010000"],["2024-07-25T16:19:37.010000"],["2024-07-25T16:19:38.010000"],["2024-07-25T16:19:39.010000"],["2024-07-25T16:19:40.010000"],["2024-07-25T16:19:41.010000"],["2024-07-25T16:19:42.010000"],["2024-07-25T16:19:43.010000"],["2024-07-25T16:19:44.010000"],["2024-07-25T16:19:45.010000"],["2024-07-25T16:19:46.010000"],["2024-07-25T16:19:47.010000"],["2024-07-25T16:19:48.010000"],["2024-07-25T16:19:49.010000"],["2024-07-25T16:19:50.010000"],["2024-07-25T16:19:51.010000"],["2024-07-25T16:19:52.010000"],["2024-07-25T16:19:53.010000"],["2024-07-25T16:19:54.010000"],["2024-07-25T16:19:55.010000"],["2024-07-25T16:19:56.010000"],["2024-07-25T16:19:57.010000"],["2024-07-25T16:19:58.010000"],["2024-07-25T16:19:59.010000"],["2024-07-25T16:20:00.010000"],["2024-07-25T16:20:01.010000"],["2024-07-25T16:20:02.010000"],["2024-07-25T16:20:03.010000"],["2024-07-25T16:20:04.010000"],["2024-07-25T16:20:05.010000"],["2024-07-25T16:20:06.010000"],["2024-07-25T16:20:07.010000"],["2024-07-25T16:20:08.010000"],["2024-07-25T16:20:09.010000"],["2024-07-25T16:20:10.010000"],["2024-07-25T16:20:11.010000"],["2024-07-25T16:20:12.010000"],["2024-07-25T16:20:13.010000"],["2024-07-25T16:20:14.010000"],["2024-07-25T16:20:15.010000"],["2024-07-25T16:20:16.010000"],["2024-07-25T16:20:17.010000"],["2024-07-25T16:20:18.010000"],["2024-07-25T16:20:19.010000"],["2024-07-25T16:20:20.010000"],["2024-07-25T16:20:21.010000"],["2024-07-25T16:20:22.010000"],["2024-07-25T16:20:23.010000"],["2024-07-25T16:20:24.010000"],["2024-07-25T16:20:25.010000"],["2024-07-25T16:20:26.010000"],["2024-07-25T16:20:27.010000"],["2024-07-25T16:20:28.010000"],["2024-07-25T16:20:29.010000"],["2024-07-25T16:20:30.010000"],["2024-07-25T16:20:31.010000"],["2024-07-25T16:20:32.010000"],["2024-07-25T16:20:33.010000"],["2024-07-25T16:20:34.010000"],["2024-07-25T16:20:35.010000"],["2024-07-25T16:20:36.010000"],["2024-07-25T16:20:37.010000"],["2024-07-25T16:20:38.010000"],["2024-07-25T16:20:39.010000"],["2024-07-25T16:20:40.010000"],["2024-07-25T16:20:41.010000"],["2024-07-25T16:20:42.010000"],["2024-07-25T16:20:43.010000"],["2024-07-25T16:20:44.010000"],["2024-07-25T16:20:45.010000"],["2024-07-25T16:20:46.010000"],["2024-07-25T16:20:47.010000"],["2024-07-25T16:20:48.010000"],["2024-07-25T16:20:49.010000"],["2024-07-25T16:20:50.010000"],["2024-07-25T16:20:51.010000"],["2024-07-25T16:20:52.010000"],["2024-07-25T16:20:53.010000"],["2024-07-25T16:20:54.010000"],["2024-07-25T16:20:55.010000"],["2024-07-25T16:20:56.010000"],["2024-07-25T16:20:57.010000"],["2024-07-25T16:20:58.010000"],["2024-07-25T16:20:59.010000"],["2024-07-25T16:21:00.010000"],["2024-07-25T16:21:01.010000"],["2024-07-25T16:21:02.010000"],["2024-07-25T16:21:03.010000"],["2024-07-25T16:21:04.010000"],["2024-07-25T16:21:05.010000"],["2024-07-25T16:21:06.010000"],["2024-07-25T16:21:07.010000"],["2024-07-25T16:21:08.010000"],["2024-07-25T16:21:09.010000"],["2024-07-25T16:21:10.010000"],["2024-07-25T16:21:11.010000"],["2024-07-25T16:21:12.010000"],["2024-07-25T16:21:13.010000"],["2024-07-25T16:21:14.010000"],["2024-07-25T16:21:15.010000"],["2024-07-25T16:21:16.010000"],["2024-07-25T16:21:17.010000"],["2024-07-25T16:21:18.010000"],["2024-07-25T16:21:19.010000"],["2024-07-25T16:21:20.010000"],["2024-07-25T16:21:21.010000"],["2024-07-25T16:21:22.010000"],["2024-07-25T16:21:23.010000"],["2024-07-25T16:21:24.010000"],["2024-07-25T16:21:25.010000"],["2024-07-25T16:21:26.010000"],["2024-07-25T16:21:27.010000"],["2024-07-25T16:21:28.010000"],["2024-07-25T16:21:29.010000"],["2024-07-25T16:21:30.010000"],["2024-07-25T16:21:31.010000"],["2024-07-25T16:21:32.010000"],["2024-07-25T16:21:33.010000"],["2024-07-25T16:21:34.010000"],["2024-07-25T16:21:35.010000"],["2024-07-25T16:21:36.010000"],["2024-07-25T16:21:37.010000"],["2024-07-25T16:21:38.010000"],["2024-07-25T16:21:39.010000"],["2024-07-25T16:21:40.010000"],["2024-07-25T16:21:41.010000"],["2024-07-25T16:21:42.010000"],["2024-07-25T16:21:43.010000"],["2024-07-25T16:21:44.010000"],["2024-07-25T16:21:45.010000"],["2024-07-25T16:21:46.010000"],["2024-07-25T16:21:47.010000"],["2024-07-25T16:21:48.010000"],["2024-07-25T16:21:49.010000"],["2024-07-25T16:21:50.010000"],["2024-07-25T16:21:51.010000"],["2024-07-25T16:21:52.010000"],["2024-07-25T16:21:53.010000"],["2024-07-25T16:21:54.010000"],["2024-07-25T16:21:55.010000"],["2024-07-25T16:21:56.010000"],["2024-07-25T16:21:57.010000"],["2024-07-25T16:21:58.010000"],["2024-07-25T16:21:59.010000"],["2024-07-25T16:22:00.010000"],["2024-07-25T16:22:01.010000"],["2024-07-25T16:22:02.010000"],["2024-07-25T16:22:03.010000"],["2024-07-25T16:22:04.010000"],["2024-07-25T16:22:05.010000"],["2024-07-25T16:22:06.010000"],["2024-07-25T16:22:07.010000"],["2024-07-25T16:22:08.010000"],["2024-07-25T16:22:09.010000"],["2024-07-25T16:22:10.010000"],["2024-07-25T16:22:11.010000"],["2024-07-25T16:22:12.010000"],["2024-07-25T16:22:13.010000"],["2024-07-25T16:22:14.010000"],["2024-07-25T16:22:15.010000"],["2024-07-25T16:22:16.010000"],["2024-07-25T16:22:17.010000"],["2024-07-25T16:22:18.010000"],["2024-07-25T16:22:19.010000"],["2024-07-25T16:22:20.010000"],["2024-07-25T16:22:21.010000"],["2024-07-25T16:22:22.010000"],["2024-07-25T16:22:23.010000"],["2024-07-25T16:22:24.010000"],["2024-07-25T16:22:25.010000"],["2024-07-25T16:22:26.010000"],["2024-07-25T16:22:27.010000"],["2024-07-25T16:22:28.010000"],["2024-07-25T16:22:29.010000"],["2024-07-25T16:22:30.010000"],["2024-07-25T16:22:31.010000"],["2024-07-25T16:22:32.010000"],["2024-07-25T16:22:33.010000"],["2024-07-25T16:22:34.010000"],["2024-07-25T16:22:35.010000"],["2024-07-25T16:22:36.010000"],["2024-07-25T16:22:37.010000"],["2024-07-25T16:22:38.010000"],["2024-07-25T16:22:39.010000"],["2024-07-25T16:22:40.010000"],["2024-07-25T16:22:41.010000"],["2024-07-25T16:22:42.010000"],["2024-07-25T16:22:43.010000"],["2024-07-25T16:22:44.010000"],["2024-07-25T16:22:45.010000"],["2024-07-25T16:22:46.010000"],["2024-07-25T16:22:47.010000"],["2024-07-25T16:22:48.010000"],["2024-07-25T16:22:49.010000"],["2024-07-25T16:22:50.010000"],["2024-07-25T16:22:51.010000"],["2024-07-25T16:22:52.010000"],["2024-07-25T16:22:53.010000"],["2024-07-25T16:22:54.010000"],["2024-07-25T16:22:55.010000"],["2024-07-25T16:22:56.010000"],["2024-07-25T16:22:57.010000"],["2024-07-25T16:22:58.010000"],["2024-07-25T16:22:59.010000"],["2024-07-25T16:23:00.010000"],["2024-07-25T16:23:01.010000"],["2024-07-25T16:23:02.010000"],["2024-07-25T16:23:03.010000"],["2024-07-25T16:23:04.010000"],["2024-07-25T16:23:05.010000"],["2024-07-25T16:23:06.010000"],["2024-07-25T16:23:07.010000"],["2024-07-25T16:23:08.010000"],["2024-07-25T16:23:09.010000"],["2024-07-25T16:23:10.010000"],["2024-07-25T16:23:11.010000"],["2024-07-25T16:23:12.010000"],["2024-07-25T16:23:13.010000"],["2024-07-25T16:23:14.010000"],["2024-07-25T16:23:15.010000"],["2024-07-25T16:23:16.010000"],["2024-07-25T16:23:17.010000"],["2024-07-25T16:23:18.010000"],["2024-07-25T16:23:19.010000"],["2024-07-25T16:23:20.010000"],["2024-07-25T16:23:21.010000"],["2024-07-25T16:23:22.010000"],["2024-07-25T16:23:23.010000"],["2024-07-25T16:23:24.010000"],["2024-07-25T16:23:25.010000"],["2024-07-25T16:23:26.010000"],["2024-07-25T16:23:27.010000"],["2024-07-25T16:23:28.010000"],["2024-07-25T16:23:29.010000"],["2024-07-25T16:23:30.010000"],["2024-07-25T16:23:31.010000"],["2024-07-25T16:23:32.010000"],["2024-07-25T16:23:33.010000"],["2024-07-25T16:23:34.010000"],["2024-07-25T16:23:35.010000"],["2024-07-25T16:23:36.010000"],["2024-07-25T16:23:37.010000"],["2024-07-25T16:23:38.010000"],["2024-07-25T16:23:39.010000"],["2024-07-25T16:23:40.010000"],["2024-07-25T16:23:41.010000"],["2024-07-25T16:23:42.010000"],["2024-07-25T16:23:43.010000"],["2024-07-25T16:23:44.010000"],["2024-07-25T16:23:45.010000"],["2024-07-25T16:23:46.010000"],["2024-07-25T16:23:47.010000"],["2024-07-25T16:23:48.010000"],["2024-07-25T16:23:49.010000"],["2024-07-25T16:23:50.010000"],["2024-07-25T16:23:51.010000"],["2024-07-25T16:23:52.010000"],["2024-07-25T16:23:53.010000"],["2024-07-25T16:23:54.010000"],["2024-07-25T16:23:55.010000"],["2024-07-25T16:23:56.010000"],["2024-07-25T16:23:57.010000"],["2024-07-25T16:23:58.010000"],["2024-07-25T16:23:59.010000"],["2024-07-25T16:24:00.010000"],["2024-07-25T16:24:01.010000"],["2024-07-25T16:24:02.010000"],["2024-07-25T16:24:03.010000"],["2024-07-25T16:24:04.010000"],["2024-07-25T16:24:05.010000"],["2024-07-25T16:24:06.010000"],["2024-07-25T16:24:07.010000"],["2024-07-25T16:24:08.010000"],["2024-07-25T16:24:09.010000"],["2024-07-25T16:24:10.010000"],["2024-07-25T16:24:11.010000"],["2024-07-25T16:24:12.010000"],["2024-07-25T16:24:13.010000"],["2024-07-25T16:24:14.010000"],["2024-07-25T16:24:15.010000"],["2024-07-25T16:24:16.010000"],["2024-07-25T16:24:17.010000"],["2024-07-25T16:24:18.010000"],["2024-07-25T16:24:19.010000"],["2024-07-25T16:24:20.010000"],["2024-07-25T16:24:21.010000"],["2024-07-25T16:24:22.010000"],["2024-07-25T16:24:23.010000"],["2024-07-25T16:24:24.010000"],["2024-07-25T16:24:25.010000"],["2024-07-25T16:24:26.010000"],["2024-07-25T16:24:27.010000"],["2024-07-25T16:24:28.010000"],["2024-07-25T16:24:29.010000"],["2024-07-25T16:24:30.010000"],["2024-07-25T16:24:31.010000"],["2024-07-25T16:24:32.010000"],["2024-07-25T16:24:33.010000"],["2024-07-25T16:24:34.010000"],["2024-07-25T16:24:35.010000"],["2024-07-25T16:24:36.010000"],["2024-07-25T16:24:37.010000"],["2024-07-25T16:24:38.010000"],["2024-07-25T16:24:39.010000"],["2024-07-25T16:24:40.010000"],["2024-07-25T16:24:41.010000"],["2024-07-25T16:24:42.010000"],["2024-07-25T16:24:43.010000"],["2024-07-25T16:24:44.010000"],["2024-07-25T16:24:45.010000"],["2024-07-25T16:24:46.010000"],["2024-07-25T16:24:47.010000"],["2024-07-25T16:24:48.010000"],["2024-07-25T16:24:49.010000"],["2024-07-25T16:24:50.010000"],["2024-07-25T16:24:51.010000"],["2024-07-25T16:24:52.010000"],["2024-07-25T16:24:53.010000"],["2024-07-25T16:24:54.010000"],["2024-07-25T16:24:55.010000"],["2024-07-25T16:24:56.010000"],["2024-07-25T16:24:57.010000"],["2024-07-25T16:24:58.010000"],["2024-07-25T16:24:59.010000"],["2024-07-25T16:25:00.010000"],["2024-07-25T16:25:01.010000"],["2024-07-25T16:25:02.010000"],["2024-07-25T16:25:03.010000"],["2024-07-25T16:25:04.010000"],["2024-07-25T16:25:05.010000"],["2024-07-25T16:25:06.010000"],["2024-07-25T16:25:07.010000"],["2024-07-25T16:25:08.010000"],["2024-07-25T16:25:09.010000"],["2024-07-25T16:25:10.010000"],["2024-07-25T16:25:11.010000"],["2024-07-25T16:25:12.010000"],["2024-07-25T16:25:13.010000"],["2024-07-25T16:25:14.010000"],["2024-07-25T16:25:15.010000"],["2024-07-25T16:25:16.010000"],["2024-07-25T16:25:17.010000"],["2024-07-25T16:25:18.010000"],["2024-07-25T16:25:19.010000"],["2024-07-25T16:25:20.010000"],["2024-07-25T16:25:21.010000"],["2024-07-25T16:25:22.010000"],["2024-07-25T16:25:23.010000"],["2024-07-25T16:25:24.010000"],["2024-07-25T16:25:25.010000"],["2024-07-25T16:25:26.010000"],["2024-07-25T16:25:27.010000"],["2024-07-25T16:25:28.010000"],["2024-07-25T16:25:29.010000"],["2024-07-25T16:25:30.010000"],["2024-07-25T16:25:31.010000"],["2024-07-25T16:25:32.010000"],["2024-07-25T16:25:33.010000"],["2024-07-25T16:25:34.010000"],["2024-07-25T16:25:35.010000"],["2024-07-25T16:25:36.010000"],["2024-07-25T16:25:37.010000"],["2024-07-25T16:25:38.010000"],["2024-07-25T16:25:39.010000"],["2024-07-25T16:25:40.010000"],["2024-07-25T16:25:41.010000"],["2024-07-25T16:25:42.010000"],["2024-07-25T16:25:43.010000"],["2024-07-25T16:25:44.010000"],["2024-07-25T16:25:45.010000"],["2024-07-25T16:25:46.010000"],["2024-07-25T16:25:47.010000"],["2024-07-25T16:25:48.010000"],["2024-07-25T16:25:49.010000"],["2024-07-25T16:25:50.010000"],["2024-07-25T16:25:51.010000"],["2024-07-25T16:25:52.010000"],["2024-07-25T16:25:53.010000"],["2024-07-25T16:25:54.010000"],["2024-07-25T16:25:55.010000"],["2024-07-25T16:25:56.010000"],["2024-07-25T16:25:57.010000"],["2024-07-25T16:25:58.010000"],["2024-07-25T16:25:59.010000"],["2024-07-25T16:26:00.010000"],["2024-07-25T16:26:01.010000"],["2024-07-25T16:26:02.010000"],["2024-07-25T16:26:03.010000"],["2024-07-25T16:26:04.010000"],["2024-07-25T16:26:05.010000"],["2024-07-25T16:26:06.010000"],["2024-07-25T16:26:07.010000"],["2024-07-25T16:26:08.010000"],["2024-07-25T16:26:09.010000"],["2024-07-25T16:26:10.010000"],["2024-07-25T16:26:11.010000"],["2024-07-25T16:26:12.010000"],["2024-07-25T16:26:13.010000"],["2024-07-25T16:26:14.010000"],["2024-07-25T16:26:15.010000"],["2024-07-25T16:26:16.010000"],["2024-07-25T16:26:17.010000"],["2024-07-25T16:26:18.010000"],["2024-07-25T16:26:19.010000"],["2024-07-25T16:26:20.010000"],["2024-07-25T16:26:21.010000"],["2024-07-25T16:26:22.010000"],["2024-07-25T16:26:23.010000"],["2024-07-25T16:26:24.010000"],["2024-07-25T16:26:25.010000"],["2024-07-25T16:26:26.010000"],["2024-07-25T16:26:27.010000"],["2024-07-25T16:26:28.010000"],["2024-07-25T16:26:29.010000"],["2024-07-25T16:26:30.010000"],["2024-07-25T16:26:31.010000"],["2024-07-25T16:26:32.010000"],["2024-07-25T16:26:33.010000"],["2024-07-25T16:26:34.010000"],["2024-07-25T16:26:35.010000"],["2024-07-25T16:26:36.010000"],["2024-07-25T16:26:37.010000"],["2024-07-25T16:26:38.010000"],["2024-07-25T16:26:39.010000"],["2024-07-25T16:26:40.010000"],["2024-07-25T16:26:41.010000"],["2024-07-25T16:26:42.010000"],["2024-07-25T16:26:43.010000"],["2024-07-25T16:26:44.010000"],["2024-07-25T16:26:45.010000"],["2024-07-25T16:26:46.010000"],["2024-07-25T16:26:47.010000"],["2024-07-25T16:26:48.010000"],["2024-07-25T16:26:49.010000"],["2024-07-25T16:26:50.010000"],["2024-07-25T16:26:51.010000"],["2024-07-25T16:26:52.010000"],["2024-07-25T16:26:53.010000"],["2024-07-25T16:26:54.010000"],["2024-07-25T16:26:55.010000"],["2024-07-25T16:26:56.010000"],["2024-07-25T16:26:57.010000"],["2024-07-25T16:26:58.010000"],["2024-07-25T16:26:59.010000"],["2024-07-25T16:27:00.010000"],["2024-07-25T16:27:01.010000"],["2024-07-25T16:27:02.010000"],["2024-07-25T16:27:03.010000"],["2024-07-25T16:27:04.010000"],["2024-07-25T16:27:05.010000"],["2024-07-25T16:27:06.010000"],["2024-07-25T16:27:07.010000"],["2024-07-25T16:27:08.010000"],["2024-07-25T16:27:09.010000"],["2024-07-25T16:27:10.010000"],["2024-07-25T16:27:11.010000"],["2024-07-25T16:27:12.010000"],["2024-07-25T16:27:13.010000"],["2024-07-25T16:27:14.010000"],["2024-07-25T16:27:15.010000"],["2024-07-25T16:27:16.010000"],["2024-07-25T16:27:17.010000"],["2024-07-25T16:27:18.010000"],["2024-07-25T16:27:19.010000"],["2024-07-25T16:27:20.010000"],["2024-07-25T16:27:21.010000"],["2024-07-25T16:27:22.010000"],["2024-07-25T16:27:23.010000"],["2024-07-25T16:27:24.010000"],["2024-07-25T16:27:25.010000"],["2024-07-25T16:27:26.010000"],["2024-07-25T16:27:27.010000"],["2024-07-25T16:27:28.010000"],["2024-07-25T16:27:29.010000"],["2024-07-25T16:27:30.010000"],["2024-07-25T16:27:31.010000"],["2024-07-25T16:27:32.010000"],["2024-07-25T16:27:33.010000"],["2024-07-25T16:27:34.010000"],["2024-07-25T16:27:35.010000"],["2024-07-25T16:27:36.010000"],["2024-07-25T16:27:37.010000"],["2024-07-25T16:27:38.010000"],["2024-07-25T16:27:39.010000"],["2024-07-25T16:27:40.010000"],["2024-07-25T16:27:41.010000"],["2024-07-25T16:27:42.010000"],["2024-07-25T16:27:43.010000"],["2024-07-25T16:27:44.010000"],["2024-07-25T16:27:45.010000"],["2024-07-25T16:27:46.010000"],["2024-07-25T16:27:47.010000"],["2024-07-25T16:27:48.010000"],["2024-07-25T16:27:49.010000"],["2024-07-25T16:27:50.010000"],["2024-07-25T16:27:51.010000"],["2024-07-25T16:27:52.010000"],["2024-07-25T16:27:53.010000"],["2024-07-25T16:27:54.010000"],["2024-07-25T16:27:55.010000"],["2024-07-25T16:27:56.010000"],["2024-07-25T16:27:57.010000"],["2024-07-25T16:27:58.010000"],["2024-07-25T16:27:59.010000"],["2024-07-25T16:28:00.010000"],["2024-07-25T16:28:01.010000"],["2024-07-25T16:28:02.010000"],["2024-07-25T16:28:03.010000"],["2024-07-25T16:28:04.010000"],["2024-07-25T16:28:05.010000"],["2024-07-25T16:28:06.010000"],["2024-07-25T16:28:07.010000"],["2024-07-25T16:28:08.010000"],["2024-07-25T16:28:09.010000"],["2024-07-25T16:28:10.010000"],["2024-07-25T16:28:11.010000"],["2024-07-25T16:28:12.010000"],["2024-07-25T16:28:13.010000"],["2024-07-25T16:28:14.010000"],["2024-07-25T16:28:15.010000"],["2024-07-25T16:28:16.010000"],["2024-07-25T16:28:17.010000"],["2024-07-25T16:28:18.010000"],["2024-07-25T16:28:19.010000"],["2024-07-25T16:28:20.010000"],["2024-07-25T16:28:21.010000"],["2024-07-25T16:28:22.010000"],["2024-07-25T16:28:23.010000"],["2024-07-25T16:28:24.010000"],["2024-07-25T16:28:25.010000"],["2024-07-25T16:28:26.010000"],["2024-07-25T16:28:27.010000"],["2024-07-25T16:28:28.010000"],["2024-07-25T16:28:29.010000"],["2024-07-25T16:28:30.010000"],["2024-07-25T16:28:31.010000"],["2024-07-25T16:28:32.010000"],["2024-07-25T16:28:33.010000"],["2024-07-25T16:28:34.010000"],["2024-07-25T16:28:35.010000"],["2024-07-25T16:28:36.010000"],["2024-07-25T16:28:37.010000"],["2024-07-25T16:28:38.010000"],["2024-07-25T16:28:39.010000"],["2024-07-25T16:28:40.010000"],["2024-07-25T16:28:41.010000"],["2024-07-25T16:28:42.010000"],["2024-07-25T16:28:43.010000"],["2024-07-25T16:28:44.010000"],["2024-07-25T16:28:45.010000"],["2024-07-25T16:28:46.010000"],["2024-07-25T16:28:47.010000"],["2024-07-25T16:28:48.010000"],["2024-07-25T16:28:49.010000"],["2024-07-25T16:28:50.010000"],["2024-07-25T16:28:51.010000"],["2024-07-25T16:28:52.010000"],["2024-07-25T16:28:53.010000"],["2024-07-25T16:28:54.010000"],["2024-07-25T16:28:55.010000"],["2024-07-25T16:28:56.010000"],["2024-07-25T16:28:57.010000"],["2024-07-25T16:28:58.010000"],["2024-07-25T16:28:59.010000"],["2024-07-25T16:29:00.010000"],["2024-07-25T16:29:01.010000"],["2024-07-25T16:29:02.010000"],["2024-07-25T16:29:03.010000"],["2024-07-25T16:29:04.010000"],["2024-07-25T16:29:05.010000"],["2024-07-25T16:29:06.010000"],["2024-07-25T16:29:07.010000"],["2024-07-25T16:29:08.010000"],["2024-07-25T16:29:09.010000"],["2024-07-25T16:29:10.010000"],["2024-07-25T16:29:11.010000"],["2024-07-25T16:29:12.010000"],["2024-07-25T16:29:13.010000"],["2024-07-25T16:29:14.010000"],["2024-07-25T16:29:15.010000"],["2024-07-25T16:29:16.010000"],["2024-07-25T16:29:17.010000"],["2024-07-25T16:29:18.010000"],["2024-07-25T16:29:19.010000"],["2024-07-25T16:29:20.010000"],["2024-07-25T16:29:21.010000"],["2024-07-25T16:29:22.010000"],["2024-07-25T16:29:23.010000"],["2024-07-25T16:29:24.010000"],["2024-07-25T16:29:25.010000"],["2024-07-25T16:29:26.010000"],["2024-07-25T16:29:27.010000"],["2024-07-25T16:29:28.010000"],["2024-07-25T16:29:29.010000"],["2024-07-25T16:29:30.010000"],["2024-07-25T16:29:31.010000"],["2024-07-25T16:29:32.010000"],["2024-07-25T16:29:33.010000"],["2024-07-25T16:29:34.010000"],["2024-07-25T16:29:35.010000"],["2024-07-25T16:29:36.010000"],["2024-07-25T16:29:37.010000"],["2024-07-25T16:29:38.010000"],["2024-07-25T16:29:39.010000"],["2024-07-25T16:29:40.010000"],["2024-07-25T16:29:41.010000"],["2024-07-25T16:29:42.010000"],["2024-07-25T16:29:43.010000"],["2024-07-25T16:29:44.010000"],["2024-07-25T16:29:45.010000"],["2024-07-25T16:29:46.010000"],["2024-07-25T16:29:47.010000"],["2024-07-25T16:29:48.010000"],["2024-07-25T16:29:49.010000"],["2024-07-25T16:29:50.010000"],["2024-07-25T16:29:51.010000"],["2024-07-25T16:29:52.010000"],["2024-07-25T16:29:53.010000"],["2024-07-25T16:29:54.010000"],["2024-07-25T16:29:55.010000"],["2024-07-25T16:29:56.010000"],["2024-07-25T16:29:57.010000"],["2024-07-25T16:29:58.010000"],["2024-07-25T16:29:59.010000"],["2024-07-25T16:30:00.010000"],["2024-07-25T16:30:01.010000"],["2024-07-25T16:30:02.010000"],["2024-07-25T16:30:03.010000"],["2024-07-25T16:30:04.010000"],["2024-07-25T16:30:05.010000"],["2024-07-25T16:30:06.010000"],["2024-07-25T16:30:07.010000"],["2024-07-25T16:30:08.010000"],["2024-07-25T16:30:09.010000"],["2024-07-25T16:30:10.010000"],["2024-07-25T16:30:11.010000"],["2024-07-25T16:30:12.010000"],["2024-07-25T16:30:13.010000"],["2024-07-25T16:30:14.010000"],["2024-07-25T16:30:15.010000"],["2024-07-25T16:30:16.010000"],["2024-07-25T16:30:17.010000"],["2024-07-25T16:30:18.010000"],["2024-07-25T16:30:19.010000"],["2024-07-25T16:30:20.010000"],["2024-07-25T16:30:21.010000"],["2024-07-25T16:30:22.010000"],["2024-07-25T16:30:23.010000"],["2024-07-25T16:30:24.010000"],["2024-07-25T16:30:25.010000"],["2024-07-25T16:30:26.010000"],["2024-07-25T16:30:27.010000"],["2024-07-25T16:30:28.010000"],["2024-07-25T16:30:29.010000"],["2024-07-25T16:30:30.010000"],["2024-07-25T16:30:31.010000"],["2024-07-25T16:30:32.010000"],["2024-07-25T16:30:33.010000"],["2024-07-25T16:30:34.010000"],["2024-07-25T16:30:35.010000"],["2024-07-25T16:30:36.010000"],["2024-07-25T16:30:37.010000"],["2024-07-25T16:30:38.010000"],["2024-07-25T16:30:39.010000"],["2024-07-25T16:30:40.010000"],["2024-07-25T16:30:41.010000"],["2024-07-25T16:30:42.010000"],["2024-07-25T16:30:43.010000"],["2024-07-25T16:30:44.010000"],["2024-07-25T16:30:45.010000"],["2024-07-25T16:30:46.010000"],["2024-07-25T16:30:47.010000"],["2024-07-25T16:30:48.010000"],["2024-07-25T16:30:49.010000"],["2024-07-25T16:30:50.010000"],["2024-07-25T16:30:51.010000"],["2024-07-25T16:30:52.010000"],["2024-07-25T16:30:53.010000"],["2024-07-25T16:30:54.010000"],["2024-07-25T16:30:55.010000"],["2024-07-25T16:30:56.010000"],["2024-07-25T16:30:57.010000"],["2024-07-25T16:30:58.010000"],["2024-07-25T16:30:59.010000"],["2024-07-25T16:31:00.010000"],["2024-07-25T16:31:01.010000"],["2024-07-25T16:31:02.010000"],["2024-07-25T16:31:03.010000"],["2024-07-25T16:31:04.010000"],["2024-07-25T16:31:05.010000"],["2024-07-25T16:31:06.010000"],["2024-07-25T16:31:07.010000"],["2024-07-25T16:31:08.010000"],["2024-07-25T16:31:09.010000"],["2024-07-25T16:31:10.010000"],["2024-07-25T16:31:11.010000"],["2024-07-25T16:31:12.010000"],["2024-07-25T16:31:13.010000"],["2024-07-25T16:31:14.010000"],["2024-07-25T16:31:15.010000"],["2024-07-25T16:31:16.010000"],["2024-07-25T16:31:17.010000"],["2024-07-25T16:31:18.010000"],["2024-07-25T16:31:19.010000"],["2024-07-25T16:31:20.010000"],["2024-07-25T16:31:21.010000"],["2024-07-25T16:31:22.010000"],["2024-07-25T16:31:23.010000"],["2024-07-25T16:31:24.010000"],["2024-07-25T16:31:25.010000"],["2024-07-25T16:31:26.010000"],["2024-07-25T16:31:27.010000"],["2024-07-25T16:31:28.010000"],["2024-07-25T16:31:29.010000"],["2024-07-25T16:31:30.010000"],["2024-07-25T16:31:31.010000"],["2024-07-25T16:31:32.010000"],["2024-07-25T16:31:33.010000"],["2024-07-25T16:31:34.010000"],["2024-07-25T16:31:35.010000"],["2024-07-25T16:31:36.010000"],["2024-07-25T16:31:37.010000"],["2024-07-25T16:31:38.010000"],["2024-07-25T16:31:39.010000"],["2024-07-25T16:31:40.010000"],["2024-07-25T16:31:41.010000"],["2024-07-25T16:31:42.010000"],["2024-07-25T16:31:43.010000"],["2024-07-25T16:31:44.010000"],["2024-07-25T16:31:45.010000"],["2024-07-25T16:31:46.010000"],["2024-07-25T16:31:47.010000"],["2024-07-25T16:31:48.010000"],["2024-07-25T16:31:49.010000"],["2024-07-25T16:31:50.010000"],["2024-07-25T16:31:51.010000"],["2024-07-25T16:31:52.010000"],["2024-07-25T16:31:53.010000"],["2024-07-25T16:31:54.010000"],["2024-07-25T16:31:55.010000"],["2024-07-25T16:31:56.010000"],["2024-07-25T16:31:57.010000"],["2024-07-25T16:31:58.010000"],["2024-07-25T16:31:59.010000"],["2024-07-25T16:32:00.010000"],["2024-07-25T16:32:01.010000"],["2024-07-25T16:32:02.010000"],["2024-07-25T16:32:03.010000"],["2024-07-25T16:32:04.010000"],["2024-07-25T16:32:05.010000"],["2024-07-25T16:32:06.010000"],["2024-07-25T16:32:07.010000"],["2024-07-25T16:32:08.010000"],["2024-07-25T16:32:09.010000"],["2024-07-25T16:32:10.010000"],["2024-07-25T16:32:11.010000"],["2024-07-25T16:32:12.010000"],["2024-07-25T16:32:13.010000"],["2024-07-25T16:32:14.010000"],["2024-07-25T16:32:15.010000"],["2024-07-25T16:32:16.010000"],["2024-07-25T16:32:17.010000"],["2024-07-25T16:32:18.010000"],["2024-07-25T16:32:19.010000"],["2024-07-25T16:32:20.010000"],["2024-07-25T16:32:21.010000"],["2024-07-25T16:32:22.010000"],["2024-07-25T16:32:23.010000"],["2024-07-25T16:32:24.010000"],["2024-07-25T16:32:25.010000"],["2024-07-25T16:32:26.010000"],["2024-07-25T16:32:27.010000"],["2024-07-25T16:32:28.010000"],["2024-07-25T16:32:29.010000"],["2024-07-25T16:32:30.010000"],["2024-07-25T16:32:31.010000"],["2024-07-25T16:32:32.010000"],["2024-07-25T16:32:33.010000"],["2024-07-25T16:32:34.010000"],["2024-07-25T16:32:35.010000"],["2024-07-25T16:32:36.010000"],["2024-07-25T16:32:37.010000"],["2024-07-25T16:32:38.010000"],["2024-07-25T16:32:39.010000"],["2024-07-25T16:32:40.010000"],["2024-07-25T16:32:41.010000"],["2024-07-25T16:32:42.010000"],["2024-07-25T16:32:43.010000"],["2024-07-25T16:32:44.010000"],["2024-07-25T16:32:45.010000"],["2024-07-25T16:32:46.010000"],["2024-07-25T16:32:47.010000"],["2024-07-25T16:32:48.010000"],["2024-07-25T16:32:49.010000"],["2024-07-25T16:32:50.010000"],["2024-07-25T16:32:51.010000"],["2024-07-25T16:32:52.010000"],["2024-07-25T16:32:53.010000"],["2024-07-25T16:32:54.010000"],["2024-07-25T16:32:55.010000"],["2024-07-25T16:32:56.010000"],["2024-07-25T16:32:57.010000"],["2024-07-25T16:32:58.010000"],["2024-07-25T16:32:59.010000"],["2024-07-25T16:33:00.010000"],["2024-07-25T16:33:01.010000"],["2024-07-25T16:33:02.010000"],["2024-07-25T16:33:03.010000"],["2024-07-25T16:33:04.010000"],["2024-07-25T16:33:05.010000"],["2024-07-25T16:33:06.010000"],["2024-07-25T16:33:07.010000"],["2024-07-25T16:33:08.010000"],["2024-07-25T16:33:09.010000"],["2024-07-25T16:33:10.010000"],["2024-07-25T16:33:11.010000"],["2024-07-25T16:33:12.010000"],["2024-07-25T16:33:13.010000"],["2024-07-25T16:33:14.010000"],["2024-07-25T16:33:15.010000"],["2024-07-25T16:33:16.010000"],["2024-07-25T16:33:17.010000"],["2024-07-25T16:33:18.010000"],["2024-07-25T16:33:19.010000"],["2024-07-25T16:33:20.010000"],["2024-07-25T16:33:21.010000"],["2024-07-25T16:33:22.010000"],["2024-07-25T16:33:23.010000"],["2024-07-25T16:33:24.010000"],["2024-07-25T16:33:25.010000"],["2024-07-25T16:33:26.010000"],["2024-07-25T16:33:27.010000"],["2024-07-25T16:33:28.010000"],["2024-07-25T16:33:29.010000"],["2024-07-25T16:33:30.010000"],["2024-07-25T16:33:31.010000"],["2024-07-25T16:33:32.010000"],["2024-07-25T16:33:33.010000"],["2024-07-25T16:33:34.010000"],["2024-07-25T16:33:35.010000"],["2024-07-25T16:33:36.010000"],["2024-07-25T16:33:37.010000"],["2024-07-25T16:33:38.010000"],["2024-07-25T16:33:39.010000"],["2024-07-25T16:33:40.010000"],["2024-07-25T16:33:41.010000"],["2024-07-25T16:33:42.010000"],["2024-07-25T16:33:43.010000"],["2024-07-25T16:33:44.010000"],["2024-07-25T16:33:45.010000"],["2024-07-25T16:33:46.010000"],["2024-07-25T16:33:47.010000"],["2024-07-25T16:33:48.010000"],["2024-07-25T16:33:49.010000"],["2024-07-25T16:33:50.010000"],["2024-07-25T16:33:51.010000"],["2024-07-25T16:33:52.010000"],["2024-07-25T16:33:53.010000"],["2024-07-25T16:33:54.010000"],["2024-07-25T16:33:55.010000"],["2024-07-25T16:33:56.010000"],["2024-07-25T16:33:57.010000"],["2024-07-25T16:33:58.010000"],["2024-07-25T16:33:59.010000"],["2024-07-25T16:34:00.010000"],["2024-07-25T16:34:01.010000"],["2024-07-25T16:34:02.010000"],["2024-07-25T16:34:03.010000"],["2024-07-25T16:34:04.010000"],["2024-07-25T16:34:05.010000"],["2024-07-25T16:34:06.010000"],["2024-07-25T16:34:07.010000"],["2024-07-25T16:34:08.010000"],["2024-07-25T16:34:09.010000"],["2024-07-25T16:34:10.010000"],["2024-07-25T16:34:11.010000"],["2024-07-25T16:34:12.010000"],["2024-07-25T16:34:13.010000"],["2024-07-25T16:34:14.010000"],["2024-07-25T16:34:15.010000"],["2024-07-25T16:34:16.010000"],["2024-07-25T16:34:17.010000"],["2024-07-25T16:34:18.010000"],["2024-07-25T16:34:19.010000"],["2024-07-25T16:34:20.010000"],["2024-07-25T16:34:21.010000"],["2024-07-25T16:34:22.010000"],["2024-07-25T16:34:23.010000"],["2024-07-25T16:34:24.010000"],["2024-07-25T16:34:25.010000"],["2024-07-25T16:34:26.010000"],["2024-07-25T16:34:27.010000"],["2024-07-25T16:34:28.010000"],["2024-07-25T16:34:29.010000"],["2024-07-25T16:34:30.010000"],["2024-07-25T16:34:31.010000"],["2024-07-25T16:34:32.010000"],["2024-07-25T16:34:33.010000"],["2024-07-25T16:34:34.010000"],["2024-07-25T16:34:35.010000"],["2024-07-25T16:34:36.010000"],["2024-07-25T16:34:37.010000"],["2024-07-25T16:34:38.010000"],["2024-07-25T16:34:39.010000"],["2024-07-25T16:34:40.010000"],["2024-07-25T16:34:41.010000"],["2024-07-25T16:34:42.010000"],["2024-07-25T16:34:43.010000"],["2024-07-25T16:34:44.010000"],["2024-07-25T16:34:45.010000"],["2024-07-25T16:34:46.010000"],["2024-07-25T16:34:47.010000"],["2024-07-25T16:34:48.010000"],["2024-07-25T16:34:49.010000"],["2024-07-25T16:34:50.010000"],["2024-07-25T16:34:51.010000"],["2024-07-25T16:34:52.010000"],["2024-07-25T16:34:53.010000"],["2024-07-25T16:34:54.010000"],["2024-07-25T16:34:55.010000"],["2024-07-25T16:34:56.010000"],["2024-07-25T16:34:57.010000"],["2024-07-25T16:34:58.010000"],["2024-07-25T16:34:59.010000"],["2024-07-25T16:35:00.010000"],["2024-07-25T16:35:01.010000"],["2024-07-25T16:35:02.010000"],["2024-07-25T16:35:03.010000"],["2024-07-25T16:35:04.010000"],["2024-07-25T16:35:05.010000"],["2024-07-25T16:35:06.010000"],["2024-07-25T16:35:07.010000"],["2024-07-25T16:35:08.010000"],["2024-07-25T16:35:09.010000"],["2024-07-25T16:35:10.010000"],["2024-07-25T16:35:11.010000"],["2024-07-25T16:35:12.010000"],["2024-07-25T16:35:13.010000"],["2024-07-25T16:35:14.010000"],["2024-07-25T16:35:15.010000"],["2024-07-25T16:35:16.010000"],["2024-07-25T16:35:17.010000"],["2024-07-25T16:35:18.010000"],["2024-07-25T16:35:19.010000"],["2024-07-25T16:35:20.010000"],["2024-07-25T16:35:21.010000"],["2024-07-25T16:35:22.010000"],["2024-07-25T16:35:23.010000"],["2024-07-25T16:35:24.010000"],["2024-07-25T16:35:25.010000"],["2024-07-25T16:35:26.010000"],["2024-07-25T16:35:27.010000"],["2024-07-25T16:35:28.010000"],["2024-07-25T16:35:29.010000"],["2024-07-25T16:35:30.010000"],["2024-07-25T16:35:31.010000"],["2024-07-25T16:35:32.010000"],["2024-07-25T16:35:33.010000"],["2024-07-25T16:35:34.010000"],["2024-07-25T16:35:35.010000"],["2024-07-25T16:35:36.010000"],["2024-07-25T16:35:37.010000"],["2024-07-25T16:35:38.010000"],["2024-07-25T16:35:39.010000"],["2024-07-25T16:35:40.010000"],["2024-07-25T16:35:41.010000"],["2024-07-25T16:35:42.010000"],["2024-07-25T16:35:43.010000"],["2024-07-25T16:35:44.010000"],["2024-07-25T16:35:45.010000"],["2024-07-25T16:35:46.010000"],["2024-07-25T16:35:47.010000"],["2024-07-25T16:35:48.010000"],["2024-07-25T16:35:49.010000"],["2024-07-25T16:35:50.010000"],["2024-07-25T16:35:51.010000"],["2024-07-25T16:35:52.010000"],["2024-07-25T16:35:53.010000"],["2024-07-25T16:35:54.010000"],["2024-07-25T16:35:55.010000"],["2024-07-25T16:35:56.010000"],["2024-07-25T16:35:57.010000"],["2024-07-25T16:35:58.010000"],["2024-07-25T16:35:59.010000"],["2024-07-25T16:36:00.010000"],["2024-07-25T16:36:01.010000"],["2024-07-25T16:36:02.010000"],["2024-07-25T16:36:03.010000"],["2024-07-25T16:36:04.010000"],["2024-07-25T16:36:05.010000"],["2024-07-25T16:36:06.010000"],["2024-07-25T16:36:07.010000"],["2024-07-25T16:36:08.010000"],["2024-07-25T16:36:09.010000"],["2024-07-25T16:36:10.010000"],["2024-07-25T16:36:11.010000"],["2024-07-25T16:36:12.010000"],["2024-07-25T16:36:13.010000"],["2024-07-25T16:36:14.010000"],["2024-07-25T16:36:15.010000"],["2024-07-25T16:36:16.010000"],["2024-07-25T16:36:17.010000"],["2024-07-25T16:36:18.010000"],["2024-07-25T16:36:19.010000"],["2024-07-25T16:36:20.010000"],["2024-07-25T16:36:21.010000"],["2024-07-25T16:36:22.010000"],["2024-07-25T16:36:23.010000"],["2024-07-25T16:36:24.010000"],["2024-07-25T16:36:25.010000"],["2024-07-25T16:36:26.010000"],["2024-07-25T16:36:27.010000"],["2024-07-25T16:36:28.010000"],["2024-07-25T16:36:29.010000"],["2024-07-25T16:36:30.010000"],["2024-07-25T16:36:31.010000"],["2024-07-25T16:36:32.010000"],["2024-07-25T16:36:33.010000"],["2024-07-25T16:36:34.010000"],["2024-07-25T16:36:35.010000"],["2024-07-25T16:36:36.010000"],["2024-07-25T16:36:37.010000"],["2024-07-25T16:36:38.010000"],["2024-07-25T16:36:39.010000"],["2024-07-25T16:36:40.010000"],["2024-07-25T16:36:41.010000"],["2024-07-25T16:36:42.010000"],["2024-07-25T16:36:43.010000"],["2024-07-25T16:36:44.010000"],["2024-07-25T16:36:45.010000"],["2024-07-25T16:36:46.010000"],["2024-07-25T16:36:47.010000"],["2024-07-25T16:36:48.010000"],["2024-07-25T16:36:49.010000"],["2024-07-25T16:36:50.010000"],["2024-07-25T16:36:51.010000"],["2024-07-25T16:36:52.010000"],["2024-07-25T16:36:53.010000"],["2024-07-25T16:36:54.010000"],["2024-07-25T16:36:55.010000"],["2024-07-25T16:36:56.010000"],["2024-07-25T16:36:57.010000"],["2024-07-25T16:36:58.010000"],["2024-07-25T16:36:59.010000"],["2024-07-25T16:37:00.010000"],["2024-07-25T16:37:01.010000"],["2024-07-25T16:37:02.010000"],["2024-07-25T16:37:03.010000"],["2024-07-25T16:37:04.010000"],["2024-07-25T16:37:05.010000"],["2024-07-25T16:37:06.010000"],["2024-07-25T16:37:07.010000"],["2024-07-25T16:37:08.010000"],["2024-07-25T16:37:09.010000"],["2024-07-25T16:37:10.010000"],["2024-07-25T16:37:11.010000"],["2024-07-25T16:37:12.010000"],["2024-07-25T16:37:13.010000"],["2024-07-25T16:37:14.010000"],["2024-07-25T16:37:15.010000"],["2024-07-25T16:37:16.010000"],["2024-07-25T16:37:17.010000"],["2024-07-25T16:37:18.010000"],["2024-07-25T16:37:19.010000"],["2024-07-25T16:37:20.010000"],["2024-07-25T16:37:21.010000"],["2024-07-25T16:37:22.010000"],["2024-07-25T16:37:23.010000"],["2024-07-25T16:37:24.010000"],["2024-07-25T16:37:25.010000"],["2024-07-25T16:37:26.010000"],["2024-07-25T16:37:27.010000"],["2024-07-25T16:37:28.010000"],["2024-07-25T16:37:29.010000"],["2024-07-25T16:37:30.010000"],["2024-07-25T16:37:31.010000"],["2024-07-25T16:37:32.010000"],["2024-07-25T16:37:33.010000"],["2024-07-25T16:37:34.010000"],["2024-07-25T16:37:35.010000"],["2024-07-25T16:37:36.010000"],["2024-07-25T16:37:37.010000"],["2024-07-25T16:37:38.010000"],["2024-07-25T16:37:39.010000"],["2024-07-25T16:37:40.010000"],["2024-07-25T16:37:41.010000"],["2024-07-25T16:37:42.010000"],["2024-07-25T16:37:43.010000"],["2024-07-25T16:37:44.010000"],["2024-07-25T16:37:45.010000"],["2024-07-25T16:37:46.010000"],["2024-07-25T16:37:47.010000"],["2024-07-25T16:37:48.010000"],["2024-07-25T16:37:49.010000"],["2024-07-25T16:37:50.010000"],["2024-07-25T16:37:51.010000"],["2024-07-25T16:37:52.010000"],["2024-07-25T16:37:53.010000"],["2024-07-25T16:37:54.010000"],["2024-07-25T16:37:55.010000"],["2024-07-25T16:37:56.010000"],["2024-07-25T16:37:57.010000"],["2024-07-25T16:37:58.010000"],["2024-07-25T16:37:59.010000"],["2024-07-25T16:38:00.010000"],["2024-07-25T16:38:01.010000"],["2024-07-25T16:38:02.010000"],["2024-07-25T16:38:03.010000"],["2024-07-25T16:38:04.010000"],["2024-07-25T16:38:05.010000"],["2024-07-25T16:38:06.010000"],["2024-07-25T16:38:07.010000"],["2024-07-25T16:38:08.010000"],["2024-07-25T16:38:09.010000"],["2024-07-25T16:38:10.010000"],["2024-07-25T16:38:11.010000"],["2024-07-25T16:38:12.010000"],["2024-07-25T16:38:13.010000"],["2024-07-25T16:38:14.010000"],["2024-07-25T16:38:15.010000"],["2024-07-25T16:38:16.010000"],["2024-07-25T16:38:17.010000"],["2024-07-25T16:38:18.010000"],["2024-07-25T16:38:19.010000"],["2024-07-25T16:38:20.010000"],["2024-07-25T16:38:21.010000"],["2024-07-25T16:38:22.010000"],["2024-07-25T16:38:23.010000"],["2024-07-25T16:38:24.010000"],["2024-07-25T16:38:25.010000"],["2024-07-25T16:38:26.010000"],["2024-07-25T16:38:27.010000"],["2024-07-25T16:38:28.010000"],["2024-07-25T16:38:29.010000"],["2024-07-25T16:38:30.010000"],["2024-07-25T16:38:31.010000"],["2024-07-25T16:38:32.010000"],["2024-07-25T16:38:33.010000"],["2024-07-25T16:38:34.010000"],["2024-07-25T16:38:35.010000"],["2024-07-25T16:38:36.010000"],["2024-07-25T16:38:37.010000"],["2024-07-25T16:38:38.010000"],["2024-07-25T16:38:39.010000"],["2024-07-25T16:38:40.010000"],["2024-07-25T16:38:41.010000"],["2024-07-25T16:38:42.010000"],["2024-07-25T16:38:43.010000"],["2024-07-25T16:38:44.010000"],["2024-07-25T16:38:45.010000"],["2024-07-25T16:38:46.010000"],["2024-07-25T16:38:47.010000"],["2024-07-25T16:38:48.010000"],["2024-07-25T16:38:49.010000"],["2024-07-25T16:38:50.010000"],["2024-07-25T16:38:51.010000"],["2024-07-25T16:38:52.010000"],["2024-07-25T16:38:53.010000"],["2024-07-25T16:38:54.010000"],["2024-07-25T16:38:55.010000"],["2024-07-25T16:38:56.010000"],["2024-07-25T16:38:57.010000"],["2024-07-25T16:38:58.010000"],["2024-07-25T16:38:59.010000"],["2024-07-25T16:39:00.010000"],["2024-07-25T16:39:01.010000"],["2024-07-25T16:39:02.010000"],["2024-07-25T16:39:03.010000"],["2024-07-25T16:39:04.010000"],["2024-07-25T16:39:05.010000"],["2024-07-25T16:39:06.010000"],["2024-07-25T16:39:07.010000"],["2024-07-25T16:39:08.010000"],["2024-07-25T16:39:09.010000"],["2024-07-25T16:39:10.010000"],["2024-07-25T16:39:11.010000"],["2024-07-25T16:39:12.010000"],["2024-07-25T16:39:13.010000"],["2024-07-25T16:39:14.010000"],["2024-07-25T16:39:15.010000"],["2024-07-25T16:39:16.010000"],["2024-07-25T16:39:17.010000"],["2024-07-25T16:39:18.010000"],["2024-07-25T16:39:19.010000"],["2024-07-25T16:39:20.010000"],["2024-07-25T16:39:21.010000"],["2024-07-25T16:39:22.010000"],["2024-07-25T16:39:23.010000"],["2024-07-25T16:39:24.010000"],["2024-07-25T16:39:25.010000"],["2024-07-25T16:39:26.010000"],["2024-07-25T16:39:27.010000"],["2024-07-25T16:39:28.010000"],["2024-07-25T16:39:29.010000"],["2024-07-25T16:39:30.010000"],["2024-07-25T16:39:31.010000"],["2024-07-25T16:39:32.010000"],["2024-07-25T16:39:33.010000"],["2024-07-25T16:39:34.010000"],["2024-07-25T16:39:35.010000"],["2024-07-25T16:39:36.010000"],["2024-07-25T16:39:37.010000"],["2024-07-25T16:39:38.010000"],["2024-07-25T16:39:39.010000"],["2024-07-25T16:39:40.010000"],["2024-07-25T16:39:41.010000"],["2024-07-25T16:39:42.010000"],["2024-07-25T16:39:43.010000"],["2024-07-25T16:39:44.010000"],["2024-07-25T16:39:45.010000"],["2024-07-25T16:39:46.010000"],["2024-07-25T16:39:47.010000"],["2024-07-25T16:39:48.010000"],["2024-07-25T16:39:49.010000"],["2024-07-25T16:39:50.010000"],["2024-07-25T16:39:51.010000"],["2024-07-25T16:39:52.010000"],["2024-07-25T16:39:53.010000"],["2024-07-25T16:39:54.010000"],["2024-07-25T16:39:55.010000"],["2024-07-25T16:39:56.010000"],["2024-07-25T16:39:57.010000"],["2024-07-25T16:39:58.010000"],["2024-07-25T16:39:59.010000"],["2024-07-25T16:40:00.010000"],["2024-07-25T16:40:01.010000"],["2024-07-25T16:40:02.010000"],["2024-07-25T16:40:03.010000"],["2024-07-25T16:40:04.010000"],["2024-07-25T16:40:05.010000"],["2024-07-25T16:40:06.010000"],["2024-07-25T16:40:07.010000"],["2024-07-25T16:40:08.010000"],["2024-07-25T16:40:09.010000"],["2024-07-25T16:40:10.010000"],["2024-07-25T16:40:11.010000"],["2024-07-25T16:40:12.010000"],["2024-07-25T16:40:13.010000"],["2024-07-25T16:40:14.010000"],["2024-07-25T16:40:15.010000"],["2024-07-25T16:40:16.010000"],["2024-07-25T16:40:17.010000"],["2024-07-25T16:40:18.010000"],["2024-07-25T16:40:19.010000"],["2024-07-25T16:40:20.010000"],["2024-07-25T16:40:21.010000"],["2024-07-25T16:40:22.010000"],["2024-07-25T16:40:23.010000"],["2024-07-25T16:40:24.010000"],["2024-07-25T16:40:25.010000"],["2024-07-25T16:40:26.010000"],["2024-07-25T16:40:27.010000"],["2024-07-25T16:40:28.010000"],["2024-07-25T16:40:29.010000"],["2024-07-25T16:40:30.010000"],["2024-07-25T16:40:31.010000"],["2024-07-25T16:40:32.010000"],["2024-07-25T16:40:33.010000"],["2024-07-25T16:40:34.010000"],["2024-07-25T16:40:35.010000"],["2024-07-25T16:40:36.010000"],["2024-07-25T16:40:37.010000"],["2024-07-25T16:40:38.010000"],["2024-07-25T16:40:39.010000"],["2024-07-25T16:40:40.010000"],["2024-07-25T16:40:41.010000"],["2024-07-25T16:40:42.010000"],["2024-07-25T16:40:43.010000"],["2024-07-25T16:40:44.010000"],["2024-07-25T16:40:45.010000"],["2024-07-25T16:40:46.010000"],["2024-07-25T16:40:47.010000"],["2024-07-25T16:40:48.010000"],["2024-07-25T16:40:49.010000"],["2024-07-25T16:40:50.010000"],["2024-07-25T16:40:51.010000"],["2024-07-25T16:40:52.010000"],["2024-07-25T16:40:53.010000"],["2024-07-25T16:40:54.010000"],["2024-07-25T16:40:55.010000"],["2024-07-25T16:40:56.010000"],["2024-07-25T16:40:57.010000"],["2024-07-25T16:40:58.010000"],["2024-07-25T16:40:59.010000"],["2024-07-25T16:41:00.010000"],["2024-07-25T16:41:01.010000"],["2024-07-25T16:41:02.010000"],["2024-07-25T16:41:03.010000"],["2024-07-25T16:41:04.010000"],["2024-07-25T16:41:05.010000"],["2024-07-25T16:41:06.010000"],["2024-07-25T16:41:07.010000"],["2024-07-25T16:41:08.010000"],["2024-07-25T16:41:09.010000"],["2024-07-25T16:41:10.010000"],["2024-07-25T16:41:11.010000"],["2024-07-25T16:41:12.010000"],["2024-07-25T16:41:13.010000"],["2024-07-25T16:41:14.010000"],["2024-07-25T16:41:15.010000"],["2024-07-25T16:41:16.010000"],["2024-07-25T16:41:17.010000"],["2024-07-25T16:41:18.010000"],["2024-07-25T16:41:19.010000"],["2024-07-25T16:41:20.010000"],["2024-07-25T16:41:21.010000"],["2024-07-25T16:41:22.010000"],["2024-07-25T16:41:23.010000"],["2024-07-25T16:41:24.010000"],["2024-07-25T16:41:25.010000"],["2024-07-25T16:41:26.010000"],["2024-07-25T16:41:27.010000"],["2024-07-25T16:41:28.010000"],["2024-07-25T16:41:29.010000"],["2024-07-25T16:41:30.010000"],["2024-07-25T16:41:31.010000"],["2024-07-25T16:41:32.010000"],["2024-07-25T16:41:33.010000"],["2024-07-25T16:41:34.010000"],["2024-07-25T16:41:35.010000"],["2024-07-25T16:41:36.010000"],["2024-07-25T16:41:37.010000"],["2024-07-25T16:41:38.010000"],["2024-07-25T16:41:39.010000"],["2024-07-25T16:41:40.010000"],["2024-07-25T16:41:41.010000"],["2024-07-25T16:41:42.010000"],["2024-07-25T16:41:43.010000"],["2024-07-25T16:41:44.010000"],["2024-07-25T16:41:45.010000"],["2024-07-25T16:41:46.010000"],["2024-07-25T16:41:47.010000"],["2024-07-25T16:41:48.010000"],["2024-07-25T16:41:49.010000"],["2024-07-25T16:41:50.010000"],["2024-07-25T16:41:51.010000"],["2024-07-25T16:41:52.010000"],["2024-07-25T16:41:53.010000"],["2024-07-25T16:41:54.010000"],["2024-07-25T16:41:55.010000"],["2024-07-25T16:41:56.010000"],["2024-07-25T16:41:57.010000"],["2024-07-25T16:41:58.010000"],["2024-07-25T16:41:59.010000"],["2024-07-25T16:42:00.010000"],["2024-07-25T16:42:01.010000"],["2024-07-25T16:42:02.010000"],["2024-07-25T16:42:03.010000"],["2024-07-25T16:42:04.010000"],["2024-07-25T16:42:05.010000"],["2024-07-25T16:42:06.010000"],["2024-07-25T16:42:07.010000"],["2024-07-25T16:42:08.010000"],["2024-07-25T16:42:09.010000"],["2024-07-25T16:42:10.010000"],["2024-07-25T16:42:11.010000"],["2024-07-25T16:42:12.010000"],["2024-07-25T16:42:13.010000"],["2024-07-25T16:42:14.010000"],["2024-07-25T16:42:15.010000"],["2024-07-25T16:42:16.010000"],["2024-07-25T16:42:17.010000"],["2024-07-25T16:42:18.010000"],["2024-07-25T16:42:19.010000"],["2024-07-25T16:42:20.010000"],["2024-07-25T16:42:21.010000"],["2024-07-25T16:42:22.010000"],["2024-07-25T16:42:23.010000"],["2024-07-25T16:42:24.010000"],["2024-07-25T16:42:25.010000"],["2024-07-25T16:42:26.010000"],["2024-07-25T16:42:27.010000"],["2024-07-25T16:42:28.010000"],["2024-07-25T16:42:29.010000"],["2024-07-25T16:42:30.010000"],["2024-07-25T16:42:31.010000"],["2024-07-25T16:42:32.010000"],["2024-07-25T16:42:33.010000"],["2024-07-25T16:42:34.010000"],["2024-07-25T16:42:35.010000"],["2024-07-25T16:42:36.010000"],["2024-07-25T16:42:37.010000"],["2024-07-25T16:42:38.010000"],["2024-07-25T16:42:39.010000"],["2024-07-25T16:42:40.010000"],["2024-07-25T16:42:41.010000"],["2024-07-25T16:42:42.010000"],["2024-07-25T16:42:43.010000"],["2024-07-25T16:42:44.010000"],["2024-07-25T16:42:45.010000"],["2024-07-25T16:42:46.010000"],["2024-07-25T16:42:47.010000"],["2024-07-25T16:42:48.010000"],["2024-07-25T16:42:49.010000"],["2024-07-25T16:42:50.010000"],["2024-07-25T16:42:51.010000"],["2024-07-25T16:42:52.010000"],["2024-07-25T16:42:53.010000"],["2024-07-25T16:42:54.010000"],["2024-07-25T16:42:55.010000"],["2024-07-25T16:42:56.010000"],["2024-07-25T16:42:57.010000"],["2024-07-25T16:42:58.010000"],["2024-07-25T16:42:59.010000"],["2024-07-25T16:43:00.010000"],["2024-07-25T16:43:01.010000"],["2024-07-25T16:43:02.010000"],["2024-07-25T16:43:03.010000"],["2024-07-25T16:43:04.010000"],["2024-07-25T16:43:05.010000"],["2024-07-25T16:43:06.010000"],["2024-07-25T16:43:07.010000"],["2024-07-25T16:43:08.010000"],["2024-07-25T16:43:09.010000"],["2024-07-25T16:43:10.010000"],["2024-07-25T16:43:11.010000"],["2024-07-25T16:43:12.010000"],["2024-07-25T16:43:13.010000"],["2024-07-25T16:43:14.010000"],["2024-07-25T16:43:15.010000"],["2024-07-25T16:43:16.010000"],["2024-07-25T16:43:17.010000"],["2024-07-25T16:43:18.010000"],["2024-07-25T16:43:19.010000"],["2024-07-25T16:43:20.010000"],["2024-07-25T16:43:21.010000"],["2024-07-25T16:43:22.010000"],["2024-07-25T16:43:23.010000"],["2024-07-25T16:43:24.010000"],["2024-07-25T16:43:25.010000"],["2024-07-25T16:43:26.010000"],["2024-07-25T16:43:27.010000"],["2024-07-25T16:43:28.010000"],["2024-07-25T16:43:29.010000"],["2024-07-25T16:43:30.010000"],["2024-07-25T16:43:31.010000"],["2024-07-25T16:43:32.010000"],["2024-07-25T16:43:33.010000"],["2024-07-25T16:43:34.010000"],["2024-07-25T16:43:35.010000"],["2024-07-25T16:43:36.010000"],["2024-07-25T16:43:37.010000"],["2024-07-25T16:43:38.010000"],["2024-07-25T16:43:39.010000"],["2024-07-25T16:43:40.010000"],["2024-07-25T16:43:41.010000"],["2024-07-25T16:43:42.010000"],["2024-07-25T16:43:43.010000"],["2024-07-25T16:43:44.010000"],["2024-07-25T16:43:45.010000"],["2024-07-25T16:43:46.010000"],["2024-07-25T16:43:47.010000"],["2024-07-25T16:43:48.010000"],["2024-07-25T16:43:49.010000"],["2024-07-25T16:43:50.010000"],["2024-07-25T16:43:51.010000"],["2024-07-25T16:43:52.010000"],["2024-07-25T16:43:53.010000"],["2024-07-25T16:43:54.010000"],["2024-07-25T16:43:55.010000"],["2024-07-25T16:43:56.010000"],["2024-07-25T16:43:57.010000"],["2024-07-25T16:43:58.010000"],["2024-07-25T16:43:59.010000"],["2024-07-25T16:44:00.010000"],["2024-07-25T16:44:01.010000"],["2024-07-25T16:44:02.010000"],["2024-07-25T16:44:03.010000"],["2024-07-25T16:44:04.010000"],["2024-07-25T16:44:05.010000"],["2024-07-25T16:44:06.010000"],["2024-07-25T16:44:07.010000"],["2024-07-25T16:44:08.010000"],["2024-07-25T16:44:09.010000"],["2024-07-25T16:44:10.010000"],["2024-07-25T16:44:11.010000"],["2024-07-25T16:44:12.010000"],["2024-07-25T16:44:13.010000"],["2024-07-25T16:44:14.010000"],["2024-07-25T16:44:15.010000"],["2024-07-25T16:44:16.010000"],["2024-07-25T16:44:17.010000"],["2024-07-25T16:44:18.010000"],["2024-07-25T16:44:19.010000"],["2024-07-25T16:44:20.010000"],["2024-07-25T16:44:21.010000"],["2024-07-25T16:44:22.010000"],["2024-07-25T16:44:23.010000"],["2024-07-25T16:44:24.010000"],["2024-07-25T16:44:25.010000"],["2024-07-25T16:44:26.010000"],["2024-07-25T16:44:27.010000"],["2024-07-25T16:44:28.010000"],["2024-07-25T16:44:29.010000"],["2024-07-25T16:44:30.010000"],["2024-07-25T16:44:31.010000"],["2024-07-25T16:44:32.010000"],["2024-07-25T16:44:33.010000"],["2024-07-25T16:44:34.010000"],["2024-07-25T16:44:35.010000"],["2024-07-25T16:44:36.010000"],["2024-07-25T16:44:37.010000"],["2024-07-25T16:44:38.010000"],["2024-07-25T16:44:39.010000"],["2024-07-25T16:44:40.010000"],["2024-07-25T16:44:41.010000"],["2024-07-25T16:44:42.010000"],["2024-07-25T16:44:43.010000"],["2024-07-25T16:44:44.010000"],["2024-07-25T16:44:45.010000"],["2024-07-25T16:44:46.010000"],["2024-07-25T16:44:47.010000"],["2024-07-25T16:44:48.010000"],["2024-07-25T16:44:49.010000"],["2024-07-25T16:44:50.010000"],["2024-07-25T16:44:51.010000"],["2024-07-25T16:44:52.010000"],["2024-07-25T16:44:53.010000"],["2024-07-25T16:44:54.010000"],["2024-07-25T16:44:55.010000"],["2024-07-25T16:44:56.010000"],["2024-07-25T16:44:57.010000"],["2024-07-25T16:44:58.010000"],["2024-07-25T16:44:59.010000"],["2024-07-25T16:45:00.010000"],["2024-07-25T16:45:01.010000"],["2024-07-25T16:45:02.010000"],["2024-07-25T16:45:03.010000"],["2024-07-25T16:45:04.010000"],["2024-07-25T16:45:05.010000"],["2024-07-25T16:45:06.010000"],["2024-07-25T16:45:07.010000"],["2024-07-25T16:45:08.010000"],["2024-07-25T16:45:09.010000"],["2024-07-25T16:45:10.010000"],["2024-07-25T16:45:11.010000"],["2024-07-25T16:45:12.010000"],["2024-07-25T16:45:13.010000"],["2024-07-25T16:45:14.010000"],["2024-07-25T16:45:15.010000"],["2024-07-25T16:45:16.010000"],["2024-07-25T16:45:17.010000"],["2024-07-25T16:45:18.010000"],["2024-07-25T16:45:19.010000"],["2024-07-25T16:45:20.010000"],["2024-07-25T16:45:21.010000"],["2024-07-25T16:45:22.010000"],["2024-07-25T16:45:23.010000"],["2024-07-25T16:45:24.010000"],["2024-07-25T16:45:25.010000"],["2024-07-25T16:45:26.010000"],["2024-07-25T16:45:27.010000"],["2024-07-25T16:45:28.010000"],["2024-07-25T16:45:29.010000"],["2024-07-25T16:45:30.010000"],["2024-07-25T16:45:31.010000"],["2024-07-25T16:45:32.010000"],["2024-07-25T16:45:33.010000"],["2024-07-25T16:45:34.010000"],["2024-07-25T16:45:35.010000"],["2024-07-25T16:45:36.010000"],["2024-07-25T16:45:37.010000"],["2024-07-25T16:45:38.010000"],["2024-07-25T16:45:39.010000"],["2024-07-25T16:45:40.010000"],["2024-07-25T16:45:41.010000"],["2024-07-25T16:45:42.010000"],["2024-07-25T16:45:43.010000"],["2024-07-25T16:45:44.010000"],["2024-07-25T16:45:45.010000"],["2024-07-25T16:45:46.010000"],["2024-07-25T16:45:47.010000"],["2024-07-25T16:45:48.010000"],["2024-07-25T16:45:49.010000"],["2024-07-25T16:45:50.010000"],["2024-07-25T16:45:51.010000"],["2024-07-25T16:45:52.010000"],["2024-07-25T16:45:53.010000"],["2024-07-25T16:45:54.010000"],["2024-07-25T16:45:55.010000"],["2024-07-25T16:45:56.010000"],["2024-07-25T16:45:57.010000"],["2024-07-25T16:45:58.010000"],["2024-07-25T16:45:59.010000"],["2024-07-25T16:46:00.010000"],["2024-07-25T16:46:01.010000"],["2024-07-25T16:46:02.010000"],["2024-07-25T16:46:03.010000"],["2024-07-25T16:46:04.010000"],["2024-07-25T16:46:05.010000"],["2024-07-25T16:46:06.010000"],["2024-07-25T16:46:07.010000"],["2024-07-25T16:46:08.010000"],["2024-07-25T16:46:09.010000"],["2024-07-25T16:46:10.010000"],["2024-07-25T16:46:11.010000"],["2024-07-25T16:46:12.010000"],["2024-07-25T16:46:13.010000"],["2024-07-25T16:46:14.010000"],["2024-07-25T16:46:15.010000"],["2024-07-25T16:46:16.010000"],["2024-07-25T16:46:17.010000"],["2024-07-25T16:46:18.010000"],["2024-07-25T16:46:19.010000"],["2024-07-25T16:46:20.010000"],["2024-07-25T16:46:21.010000"],["2024-07-25T16:46:22.010000"],["2024-07-25T16:46:23.010000"],["2024-07-25T16:46:24.010000"],["2024-07-25T16:46:25.010000"],["2024-07-25T16:46:26.010000"],["2024-07-25T16:46:27.010000"],["2024-07-25T16:46:28.010000"],["2024-07-25T16:46:29.010000"],["2024-07-25T16:46:30.010000"],["2024-07-25T16:46:31.010000"],["2024-07-25T16:46:32.010000"],["2024-07-25T16:46:33.010000"],["2024-07-25T16:46:34.010000"],["2024-07-25T16:46:35.010000"],["2024-07-25T16:46:36.010000"],["2024-07-25T16:46:37.010000"],["2024-07-25T16:46:38.010000"],["2024-07-25T16:46:39.010000"],["2024-07-25T16:46:40.010000"],["2024-07-25T16:46:41.010000"],["2024-07-25T16:46:42.010000"],["2024-07-25T16:46:43.010000"],["2024-07-25T16:46:44.010000"],["2024-07-25T16:46:45.010000"],["2024-07-25T16:46:46.010000"],["2024-07-25T16:46:47.010000"],["2024-07-25T16:46:48.010000"],["2024-07-25T16:46:49.010000"],["2024-07-25T16:46:50.010000"],["2024-07-25T16:46:51.010000"],["2024-07-25T16:46:52.010000"],["2024-07-25T16:46:53.010000"],["2024-07-25T16:46:54.010000"],["2024-07-25T16:46:55.010000"],["2024-07-25T16:46:56.010000"],["2024-07-25T16:46:57.010000"],["2024-07-25T16:46:58.010000"],["2024-07-25T16:46:59.010000"],["2024-07-25T16:47:00.010000"],["2024-07-25T16:47:01.010000"],["2024-07-25T16:47:02.010000"],["2024-07-25T16:47:03.010000"],["2024-07-25T16:47:04.010000"],["2024-07-25T16:47:05.010000"],["2024-07-25T16:47:06.010000"],["2024-07-25T16:47:07.010000"],["2024-07-25T16:47:08.010000"],["2024-07-25T16:47:09.010000"],["2024-07-25T16:47:10.010000"],["2024-07-25T16:47:11.010000"],["2024-07-25T16:47:12.010000"],["2024-07-25T16:47:13.010000"],["2024-07-25T16:47:14.010000"],["2024-07-25T16:47:15.010000"],["2024-07-25T16:47:16.010000"],["2024-07-25T16:47:17.010000"],["2024-07-25T16:47:18.010000"],["2024-07-25T16:47:19.010000"],["2024-07-25T16:47:20.010000"],["2024-07-25T16:47:21.010000"],["2024-07-25T16:47:22.010000"],["2024-07-25T16:47:23.010000"],["2024-07-25T16:47:24.010000"],["2024-07-25T16:47:25.010000"],["2024-07-25T16:47:26.010000"],["2024-07-25T16:47:27.010000"],["2024-07-25T16:47:28.010000"],["2024-07-25T16:47:29.010000"],["2024-07-25T16:47:30.010000"],["2024-07-25T16:47:31.010000"],["2024-07-25T16:47:32.010000"],["2024-07-25T16:47:33.010000"],["2024-07-25T16:47:34.010000"],["2024-07-25T16:47:35.010000"],["2024-07-25T16:47:36.010000"],["2024-07-25T16:47:37.010000"],["2024-07-25T16:47:38.010000"],["2024-07-25T16:47:39.010000"],["2024-07-25T16:47:40.010000"],["2024-07-25T16:47:41.010000"],["2024-07-25T16:47:42.010000"],["2024-07-25T16:47:43.010000"],["2024-07-25T16:47:44.010000"],["2024-07-25T16:47:45.010000"],["2024-07-25T16:47:46.010000"],["2024-07-25T16:47:47.010000"],["2024-07-25T16:47:48.010000"],["2024-07-25T16:47:49.010000"],["2024-07-25T16:47:50.010000"],["2024-07-25T16:47:51.010000"],["2024-07-25T16:47:52.010000"],["2024-07-25T16:47:53.010000"],["2024-07-25T16:47:54.010000"],["2024-07-25T16:47:55.010000"],["2024-07-25T16:47:56.010000"],["2024-07-25T16:47:57.010000"],["2024-07-25T16:47:58.010000"],["2024-07-25T16:47:59.010000"],["2024-07-25T16:48:00.010000"],["2024-07-25T16:48:01.010000"],["2024-07-25T16:48:02.010000"],["2024-07-25T16:48:03.010000"],["2024-07-25T16:48:04.010000"],["2024-07-25T16:48:05.010000"],["2024-07-25T16:48:06.010000"],["2024-07-25T16:48:07.010000"],["2024-07-25T16:48:08.010000"],["2024-07-25T16:48:09.010000"],["2024-07-25T16:48:10.010000"],["2024-07-25T16:48:11.010000"],["2024-07-25T16:48:12.010000"],["2024-07-25T16:48:13.010000"],["2024-07-25T16:48:14.010000"],["2024-07-25T16:48:15.010000"],["2024-07-25T16:48:16.010000"],["2024-07-25T16:48:17.010000"],["2024-07-25T16:48:18.010000"],["2024-07-25T16:48:19.010000"],["2024-07-25T16:48:20.010000"],["2024-07-25T16:48:21.010000"],["2024-07-25T16:48:22.010000"],["2024-07-25T16:48:23.010000"],["2024-07-25T16:48:24.010000"],["2024-07-25T16:48:25.010000"],["2024-07-25T16:48:26.010000"],["2024-07-25T16:48:27.010000"],["2024-07-25T16:48:28.010000"],["2024-07-25T16:48:29.010000"],["2024-07-25T16:48:30.010000"],["2024-07-25T16:48:31.010000"],["2024-07-25T16:48:32.010000"],["2024-07-25T16:48:33.010000"],["2024-07-25T16:48:34.010000"],["2024-07-25T16:48:35.010000"],["2024-07-25T16:48:36.010000"],["2024-07-25T16:48:37.010000"],["2024-07-25T16:48:38.010000"],["2024-07-25T16:48:39.010000"],["2024-07-25T16:48:40.010000"],["2024-07-25T16:48:41.010000"],["2024-07-25T16:48:42.010000"],["2024-07-25T16:48:43.010000"],["2024-07-25T16:48:44.010000"],["2024-07-25T16:48:45.010000"],["2024-07-25T16:48:46.010000"],["2024-07-25T16:48:47.010000"],["2024-07-25T16:48:48.010000"],["2024-07-25T16:48:49.010000"],["2024-07-25T16:48:50.010000"],["2024-07-25T16:48:51.010000"],["2024-07-25T16:48:52.010000"],["2024-07-25T16:48:53.010000"],["2024-07-25T16:48:54.010000"],["2024-07-25T16:48:55.010000"],["2024-07-25T16:48:56.010000"],["2024-07-25T16:48:57.010000"],["2024-07-25T16:48:58.010000"],["2024-07-25T16:48:59.010000"],["2024-07-25T16:49:00.010000"],["2024-07-25T16:49:01.010000"],["2024-07-25T16:49:02.010000"],["2024-07-25T16:49:03.010000"],["2024-07-25T16:49:04.010000"],["2024-07-25T16:49:05.010000"],["2024-07-25T16:49:06.010000"],["2024-07-25T16:49:07.010000"],["2024-07-25T16:49:08.010000"],["2024-07-25T16:49:09.010000"],["2024-07-25T16:49:10.010000"],["2024-07-25T16:49:11.010000"],["2024-07-25T16:49:12.010000"],["2024-07-25T16:49:13.010000"],["2024-07-25T16:49:14.010000"],["2024-07-25T16:49:15.010000"],["2024-07-25T16:49:16.010000"],["2024-07-25T16:49:17.010000"],["2024-07-25T16:49:18.010000"],["2024-07-25T16:49:19.010000"],["2024-07-25T16:49:20.010000"],["2024-07-25T16:49:21.010000"],["2024-07-25T16:49:22.010000"],["2024-07-25T16:49:23.010000"],["2024-07-25T16:49:24.010000"],["2024-07-25T16:49:25.010000"],["2024-07-25T16:49:26.010000"],["2024-07-25T16:49:27.010000"],["2024-07-25T16:49:28.010000"],["2024-07-25T16:49:29.010000"],["2024-07-25T16:49:30.010000"],["2024-07-25T16:49:31.010000"],["2024-07-25T16:49:32.010000"],["2024-07-25T16:49:33.010000"],["2024-07-25T16:49:34.010000"],["2024-07-25T16:49:35.010000"],["2024-07-25T16:49:36.010000"],["2024-07-25T16:49:37.010000"],["2024-07-25T16:49:38.010000"],["2024-07-25T16:49:39.010000"],["2024-07-25T16:49:40.010000"],["2024-07-25T16:49:41.010000"],["2024-07-25T16:49:42.010000"],["2024-07-25T16:49:43.010000"],["2024-07-25T16:49:44.010000"],["2024-07-25T16:49:45.010000"],["2024-07-25T16:49:46.010000"],["2024-07-25T16:49:47.010000"],["2024-07-25T16:49:48.010000"],["2024-07-25T16:49:49.010000"],["2024-07-25T16:49:50.010000"],["2024-07-25T16:49:51.010000"],["2024-07-25T16:49:52.010000"],["2024-07-25T16:49:53.010000"],["2024-07-25T16:49:54.010000"],["2024-07-25T16:49:55.010000"],["2024-07-25T16:49:56.010000"],["2024-07-25T16:49:57.010000"],["2024-07-25T16:49:58.010000"],["2024-07-25T16:49:59.010000"],["2024-07-25T16:50:00.010000"],["2024-07-25T16:50:01.010000"],["2024-07-25T16:50:02.010000"],["2024-07-25T16:50:03.010000"],["2024-07-25T16:50:04.010000"],["2024-07-25T16:50:05.010000"],["2024-07-25T16:50:06.010000"],["2024-07-25T16:50:07.010000"],["2024-07-25T16:50:08.010000"],["2024-07-25T16:50:09.010000"],["2024-07-25T16:50:10.010000"],["2024-07-25T16:50:11.010000"],["2024-07-25T16:50:12.010000"],["2024-07-25T16:50:13.010000"],["2024-07-25T16:50:14.010000"],["2024-07-25T16:50:15.010000"],["2024-07-25T16:50:16.010000"],["2024-07-25T16:50:17.010000"],["2024-07-25T16:50:18.010000"],["2024-07-25T16:50:19.010000"],["2024-07-25T16:50:20.010000"],["2024-07-25T16:50:21.010000"],["2024-07-25T16:50:22.010000"],["2024-07-25T16:50:23.010000"],["2024-07-25T16:50:24.010000"],["2024-07-25T16:50:25.010000"],["2024-07-25T16:50:26.010000"],["2024-07-25T16:50:27.010000"],["2024-07-25T16:50:28.010000"],["2024-07-25T16:50:29.010000"],["2024-07-25T16:50:30.010000"],["2024-07-25T16:50:31.010000"],["2024-07-25T16:50:32.010000"],["2024-07-25T16:50:33.010000"],["2024-07-25T16:50:34.010000"],["2024-07-25T16:50:35.010000"],["2024-07-25T16:50:36.010000"],["2024-07-25T16:50:37.010000"],["2024-07-25T16:50:38.010000"],["2024-07-25T16:50:39.010000"],["2024-07-25T16:50:40.010000"],["2024-07-25T16:50:41.010000"],["2024-07-25T16:50:42.010000"],["2024-07-25T16:50:43.010000"],["2024-07-25T16:50:44.010000"],["2024-07-25T16:50:45.010000"],["2024-07-25T16:50:46.010000"],["2024-07-25T16:50:47.010000"],["2024-07-25T16:50:48.010000"],["2024-07-25T16:50:49.010000"],["2024-07-25T16:50:50.010000"],["2024-07-25T16:50:51.010000"],["2024-07-25T16:50:52.010000"],["2024-07-25T16:50:53.010000"],["2024-07-25T16:50:54.010000"],["2024-07-25T16:50:55.010000"],["2024-07-25T16:50:56.010000"],["2024-07-25T16:50:57.010000"],["2024-07-25T16:50:58.010000"],["2024-07-25T16:50:59.010000"],["2024-07-25T16:51:00.010000"],["2024-07-25T16:51:01.010000"],["2024-07-25T16:51:02.010000"],["2024-07-25T16:51:03.010000"],["2024-07-25T16:51:04.010000"],["2024-07-25T16:51:05.010000"],["2024-07-25T16:51:06.010000"],["2024-07-25T16:51:07.010000"],["2024-07-25T16:51:08.010000"],["2024-07-25T16:51:09.010000"],["2024-07-25T16:51:10.010000"],["2024-07-25T16:51:11.010000"],["2024-07-25T16:51:12.010000"],["2024-07-25T16:51:13.010000"],["2024-07-25T16:51:14.010000"],["2024-07-25T16:51:15.010000"],["2024-07-25T16:51:16.010000"],["2024-07-25T16:51:17.010000"],["2024-07-25T16:51:18.010000"],["2024-07-25T16:51:19.010000"],["2024-07-25T16:51:20.010000"],["2024-07-25T16:51:21.010000"],["2024-07-25T16:51:22.010000"],["2024-07-25T16:51:23.010000"],["2024-07-25T16:51:24.010000"],["2024-07-25T16:51:25.010000"],["2024-07-25T16:51:26.010000"],["2024-07-25T16:51:27.010000"],["2024-07-25T16:51:28.010000"],["2024-07-25T16:51:29.010000"],["2024-07-25T16:51:30.010000"],["2024-07-25T16:51:31.010000"],["2024-07-25T16:51:32.010000"],["2024-07-25T16:51:33.010000"],["2024-07-25T16:51:34.010000"],["2024-07-25T16:51:35.010000"],["2024-07-25T16:51:36.010000"],["2024-07-25T16:51:37.010000"],["2024-07-25T16:51:38.010000"],["2024-07-25T16:51:39.010000"],["2024-07-25T16:51:40.010000"],["2024-07-25T16:51:41.010000"],["2024-07-25T16:51:42.010000"],["2024-07-25T16:51:43.010000"],["2024-07-25T16:51:44.010000"],["2024-07-25T16:51:45.010000"],["2024-07-25T16:51:46.010000"],["2024-07-25T16:51:47.010000"],["2024-07-25T16:51:48.010000"],["2024-07-25T16:51:49.010000"],["2024-07-25T16:51:50.010000"],["2024-07-25T16:51:51.010000"],["2024-07-25T16:51:52.010000"],["2024-07-25T16:51:53.010000"],["2024-07-25T16:51:54.010000"],["2024-07-25T16:51:55.010000"],["2024-07-25T16:51:56.010000"],["2024-07-25T16:51:57.010000"],["2024-07-25T16:51:58.010000"],["2024-07-25T16:51:59.010000"],["2024-07-25T16:52:00.010000"],["2024-07-25T16:52:01.010000"],["2024-07-25T16:52:02.010000"],["2024-07-25T16:52:03.010000"],["2024-07-25T16:52:04.010000"],["2024-07-25T16:52:05.010000"],["2024-07-25T16:52:06.010000"],["2024-07-25T16:52:07.010000"],["2024-07-25T16:52:08.010000"],["2024-07-25T16:52:09.010000"],["2024-07-25T16:52:10.010000"],["2024-07-25T16:52:11.010000"],["2024-07-25T16:52:12.010000"],["2024-07-25T16:52:13.010000"],["2024-07-25T16:52:14.010000"],["2024-07-25T16:52:15.010000"],["2024-07-25T16:52:16.010000"],["2024-07-25T16:52:17.010000"],["2024-07-25T16:52:18.010000"],["2024-07-25T16:52:19.010000"],["2024-07-25T16:52:20.010000"],["2024-07-25T16:52:21.010000"],["2024-07-25T16:52:22.010000"],["2024-07-25T16:52:23.010000"],["2024-07-25T16:52:24.010000"],["2024-07-25T16:52:25.010000"],["2024-07-25T16:52:26.010000"],["2024-07-25T16:52:27.010000"],["2024-07-25T16:52:28.010000"],["2024-07-25T16:52:29.010000"],["2024-07-25T16:52:30.010000"],["2024-07-25T16:52:31.010000"],["2024-07-25T16:52:32.010000"],["2024-07-25T16:52:33.010000"],["2024-07-25T16:52:34.010000"],["2024-07-25T16:52:35.010000"],["2024-07-25T16:52:36.010000"],["2024-07-25T16:52:37.010000"],["2024-07-25T16:52:38.010000"],["2024-07-25T16:52:39.010000"],["2024-07-25T16:52:40.010000"],["2024-07-25T16:52:41.010000"],["2024-07-25T16:52:42.010000"],["2024-07-25T16:52:43.010000"],["2024-07-25T16:52:44.010000"],["2024-07-25T16:52:45.010000"],["2024-07-25T16:52:46.010000"],["2024-07-25T16:52:47.010000"],["2024-07-25T16:52:48.010000"],["2024-07-25T16:52:49.010000"],["2024-07-25T16:52:50.010000"],["2024-07-25T16:52:51.010000"],["2024-07-25T16:52:52.010000"],["2024-07-25T16:52:53.010000"],["2024-07-25T16:52:54.010000"],["2024-07-25T16:52:55.010000"],["2024-07-25T16:52:56.010000"],["2024-07-25T16:52:57.010000"],["2024-07-25T16:52:58.010000"],["2024-07-25T16:52:59.010000"],["2024-07-25T16:53:00.010000"],["2024-07-25T16:53:01.010000"],["2024-07-25T16:53:02.010000"],["2024-07-25T16:53:03.010000"],["2024-07-25T16:53:04.010000"],["2024-07-25T16:53:05.010000"],["2024-07-25T16:53:06.010000"],["2024-07-25T16:53:07.010000"],["2024-07-25T16:53:08.010000"],["2024-07-25T16:53:09.010000"],["2024-07-25T16:53:10.010000"],["2024-07-25T16:53:11.010000"],["2024-07-25T16:53:12.010000"],["2024-07-25T16:53:13.010000"],["2024-07-25T16:53:14.010000"],["2024-07-25T16:53:15.010000"],["2024-07-25T16:53:16.010000"],["2024-07-25T16:53:17.010000"],["2024-07-25T16:53:18.010000"],["2024-07-25T16:53:19.010000"],["2024-07-25T16:53:20.010000"],["2024-07-25T16:53:21.010000"],["2024-07-25T16:53:22.010000"],["2024-07-25T16:53:23.010000"],["2024-07-25T16:53:24.010000"],["2024-07-25T16:53:25.010000"],["2024-07-25T16:53:26.010000"],["2024-07-25T16:53:27.010000"],["2024-07-25T16:53:28.010000"],["2024-07-25T16:53:29.010000"],["2024-07-25T16:53:30.010000"],["2024-07-25T16:53:31.010000"],["2024-07-25T16:53:32.010000"],["2024-07-25T16:53:33.010000"],["2024-07-25T16:53:34.010000"],["2024-07-25T16:53:35.010000"],["2024-07-25T16:53:36.010000"],["2024-07-25T16:53:37.010000"],["2024-07-25T16:53:38.010000"],["2024-07-25T16:53:39.010000"],["2024-07-25T16:53:40.010000"],["2024-07-25T16:53:41.010000"],["2024-07-25T16:53:42.010000"],["2024-07-25T16:53:43.010000"],["2024-07-25T16:53:44.010000"],["2024-07-25T16:53:45.010000"],["2024-07-25T16:53:46.010000"],["2024-07-25T16:53:47.010000"],["2024-07-25T16:53:48.010000"],["2024-07-25T16:53:49.010000"],["2024-07-25T16:53:50.010000"],["2024-07-25T16:53:51.010000"],["2024-07-25T16:53:52.010000"],["2024-07-25T16:53:53.010000"],["2024-07-25T16:53:54.010000"],["2024-07-25T16:53:55.010000"],["2024-07-25T16:53:56.010000"],["2024-07-25T16:53:57.010000"],["2024-07-25T16:53:58.010000"],["2024-07-25T16:53:59.010000"],["2024-07-25T16:54:00.010000"],["2024-07-25T16:54:01.010000"],["2024-07-25T16:54:02.010000"],["2024-07-25T16:54:03.010000"],["2024-07-25T16:54:04.010000"],["2024-07-25T16:54:05.010000"],["2024-07-25T16:54:06.010000"],["2024-07-25T16:54:07.010000"],["2024-07-25T16:54:08.010000"],["2024-07-25T16:54:09.010000"],["2024-07-25T16:54:10.010000"],["2024-07-25T16:54:11.010000"],["2024-07-25T16:54:12.010000"],["2024-07-25T16:54:13.010000"],["2024-07-25T16:54:14.010000"],["2024-07-25T16:54:15.010000"],["2024-07-25T16:54:16.010000"],["2024-07-25T16:54:17.010000"],["2024-07-25T16:54:18.010000"],["2024-07-25T16:54:19.010000"],["2024-07-25T16:54:20.010000"],["2024-07-25T16:54:21.010000"],["2024-07-25T16:54:22.010000"],["2024-07-25T16:54:23.010000"],["2024-07-25T16:54:24.010000"],["2024-07-25T16:54:25.010000"],["2024-07-25T16:54:26.010000"],["2024-07-25T16:54:27.010000"],["2024-07-25T16:54:28.010000"],["2024-07-25T16:54:29.010000"],["2024-07-25T16:54:30.010000"],["2024-07-25T16:54:31.010000"],["2024-07-25T16:54:32.010000"],["2024-07-25T16:54:33.010000"],["2024-07-25T16:54:34.010000"],["2024-07-25T16:54:35.010000"],["2024-07-25T16:54:36.010000"],["2024-07-25T16:54:37.010000"],["2024-07-25T16:54:38.010000"],["2024-07-25T16:54:39.010000"],["2024-07-25T16:54:40.010000"],["2024-07-25T16:54:41.010000"],["2024-07-25T16:54:42.010000"],["2024-07-25T16:54:43.010000"],["2024-07-25T16:54:44.010000"],["2024-07-25T16:54:45.010000"],["2024-07-25T16:54:46.010000"],["2024-07-25T16:54:47.010000"],["2024-07-25T16:54:48.010000"],["2024-07-25T16:54:49.010000"],["2024-07-25T16:54:50.010000"],["2024-07-25T16:54:51.010000"],["2024-07-25T16:54:52.010000"],["2024-07-25T16:54:53.010000"],["2024-07-25T16:54:54.010000"],["2024-07-25T16:54:55.010000"],["2024-07-25T16:54:56.010000"],["2024-07-25T16:54:57.010000"],["2024-07-25T16:54:58.010000"],["2024-07-25T16:54:59.010000"],["2024-07-25T16:55:00.010000"],["2024-07-25T16:55:01.010000"],["2024-07-25T16:55:02.010000"],["2024-07-25T16:55:03.010000"],["2024-07-25T16:55:04.010000"],["2024-07-25T16:55:05.010000"],["2024-07-25T16:55:06.010000"],["2024-07-25T16:55:07.010000"],["2024-07-25T16:55:08.010000"],["2024-07-25T16:55:09.010000"],["2024-07-25T16:55:10.010000"],["2024-07-25T16:55:11.010000"],["2024-07-25T16:55:12.010000"],["2024-07-25T16:55:13.010000"],["2024-07-25T16:55:14.010000"],["2024-07-25T16:55:15.010000"],["2024-07-25T16:55:16.010000"],["2024-07-25T16:55:17.010000"],["2024-07-25T16:55:18.010000"],["2024-07-25T16:55:19.010000"],["2024-07-25T16:55:20.010000"],["2024-07-25T16:55:21.010000"],["2024-07-25T16:55:22.010000"],["2024-07-25T16:55:23.010000"],["2024-07-25T16:55:24.010000"],["2024-07-25T16:55:25.010000"],["2024-07-25T16:55:26.010000"],["2024-07-25T16:55:27.010000"],["2024-07-25T16:55:28.010000"],["2024-07-25T16:55:29.010000"],["2024-07-25T16:55:30.010000"],["2024-07-25T16:55:31.010000"],["2024-07-25T16:55:32.010000"],["2024-07-25T16:55:33.010000"],["2024-07-25T16:55:34.010000"],["2024-07-25T16:55:35.010000"],["2024-07-25T16:55:36.010000"],["2024-07-25T16:55:37.010000"],["2024-07-25T16:55:38.010000"],["2024-07-25T16:55:39.010000"],["2024-07-25T16:55:40.010000"],["2024-07-25T16:55:41.010000"],["2024-07-25T16:55:42.010000"],["2024-07-25T16:55:43.010000"],["2024-07-25T16:55:44.010000"],["2024-07-25T16:55:45.010000"],["2024-07-25T16:55:46.010000"],["2024-07-25T16:55:47.010000"],["2024-07-25T16:55:48.010000"],["2024-07-25T16:55:49.010000"],["2024-07-25T16:55:50.010000"],["2024-07-25T16:55:51.010000"],["2024-07-25T16:55:52.010000"],["2024-07-25T16:55:53.010000"],["2024-07-25T16:55:54.010000"],["2024-07-25T16:55:55.010000"],["2024-07-25T16:55:56.010000"],["2024-07-25T16:55:57.010000"],["2024-07-25T16:55:58.010000"],["2024-07-25T16:55:59.010000"],["2024-07-25T16:56:00.010000"],["2024-07-25T16:56:01.010000"],["2024-07-25T16:56:02.010000"],["2024-07-25T16:56:03.010000"],["2024-07-25T16:56:04.010000"],["2024-07-25T16:56:05.010000"],["2024-07-25T16:56:06.010000"],["2024-07-25T16:56:07.010000"],["2024-07-25T16:56:08.010000"],["2024-07-25T16:56:09.010000"],["2024-07-25T16:56:10.010000"],["2024-07-25T16:56:11.010000"],["2024-07-25T16:56:12.010000"],["2024-07-25T16:56:13.010000"],["2024-07-25T16:56:14.010000"],["2024-07-25T16:56:15.010000"],["2024-07-25T16:56:16.010000"],["2024-07-25T16:56:17.010000"],["2024-07-25T16:56:18.010000"],["2024-07-25T16:56:19.010000"],["2024-07-25T16:56:20.010000"],["2024-07-25T16:56:21.010000"],["2024-07-25T16:56:22.010000"],["2024-07-25T16:56:23.010000"],["2024-07-25T16:56:24.010000"],["2024-07-25T16:56:25.010000"],["2024-07-25T16:56:26.010000"],["2024-07-25T16:56:27.010000"],["2024-07-25T16:56:28.010000"],["2024-07-25T16:56:29.010000"],["2024-07-25T16:56:30.010000"],["2024-07-25T16:56:31.010000"],["2024-07-25T16:56:32.010000"],["2024-07-25T16:56:33.010000"],["2024-07-25T16:56:34.010000"],["2024-07-25T16:56:35.010000"],["2024-07-25T16:56:36.010000"],["2024-07-25T16:56:37.010000"],["2024-07-25T16:56:38.010000"],["2024-07-25T16:56:39.010000"],["2024-07-25T16:56:40.010000"],["2024-07-25T16:56:41.010000"],["2024-07-25T16:56:42.010000"],["2024-07-25T16:56:43.010000"],["2024-07-25T16:56:44.010000"],["2024-07-25T16:56:45.010000"],["2024-07-25T16:56:46.010000"],["2024-07-25T16:56:47.010000"],["2024-07-25T16:56:48.010000"],["2024-07-25T16:56:49.010000"],["2024-07-25T16:56:50.010000"],["2024-07-25T16:56:51.010000"],["2024-07-25T16:56:52.010000"],["2024-07-25T16:56:53.010000"],["2024-07-25T16:56:54.010000"],["2024-07-25T16:56:55.010000"],["2024-07-25T16:56:56.010000"],["2024-07-25T16:56:57.010000"],["2024-07-25T16:56:58.010000"],["2024-07-25T16:56:59.010000"],["2024-07-25T16:57:00.010000"],["2024-07-25T16:57:01.010000"],["2024-07-25T16:57:02.010000"],["2024-07-25T16:57:03.010000"],["2024-07-25T16:57:04.010000"],["2024-07-25T16:57:05.010000"],["2024-07-25T16:57:06.010000"],["2024-07-25T16:57:07.010000"],["2024-07-25T16:57:08.010000"],["2024-07-25T16:57:09.010000"],["2024-07-25T16:57:10.010000"],["2024-07-25T16:57:11.010000"],["2024-07-25T16:57:12.010000"],["2024-07-25T16:57:13.010000"],["2024-07-25T16:57:14.010000"],["2024-07-25T16:57:15.010000"],["2024-07-25T16:57:16.010000"],["2024-07-25T16:57:17.010000"],["2024-07-25T16:57:18.010000"],["2024-07-25T16:57:19.010000"],["2024-07-25T16:57:20.010000"],["2024-07-25T16:57:21.010000"],["2024-07-25T16:57:22.010000"],["2024-07-25T16:57:23.010000"],["2024-07-25T16:57:24.010000"],["2024-07-25T16:57:25.010000"],["2024-07-25T16:57:26.010000"],["2024-07-25T16:57:27.010000"],["2024-07-25T16:57:28.010000"],["2024-07-25T16:57:29.010000"],["2024-07-25T16:57:30.010000"],["2024-07-25T16:57:31.010000"],["2024-07-25T16:57:32.010000"],["2024-07-25T16:57:33.010000"],["2024-07-25T16:57:34.010000"],["2024-07-25T16:57:35.010000"],["2024-07-25T16:57:36.010000"],["2024-07-25T16:57:37.010000"],["2024-07-25T16:57:38.010000"],["2024-07-25T16:57:39.010000"],["2024-07-25T16:57:40.010000"],["2024-07-25T16:57:41.010000"],["2024-07-25T16:57:42.010000"],["2024-07-25T16:57:43.010000"],["2024-07-25T16:57:44.010000"],["2024-07-25T16:57:45.010000"],["2024-07-25T16:57:46.010000"],["2024-07-25T16:57:47.010000"],["2024-07-25T16:57:48.010000"],["2024-07-25T16:57:49.010000"],["2024-07-25T16:57:50.010000"],["2024-07-25T16:57:51.010000"],["2024-07-25T16:57:52.010000"],["2024-07-25T16:57:53.010000"],["2024-07-25T16:57:54.010000"],["2024-07-25T16:57:55.010000"],["2024-07-25T16:57:56.010000"],["2024-07-25T16:57:57.010000"],["2024-07-25T16:57:58.010000"],["2024-07-25T16:57:59.010000"],["2024-07-25T16:58:00.010000"],["2024-07-25T16:58:01.010000"],["2024-07-25T16:58:02.010000"],["2024-07-25T16:58:03.010000"],["2024-07-25T16:58:04.010000"],["2024-07-25T16:58:05.010000"],["2024-07-25T16:58:06.010000"],["2024-07-25T16:58:07.010000"],["2024-07-25T16:58:08.010000"],["2024-07-25T16:58:09.010000"],["2024-07-25T16:58:10.010000"],["2024-07-25T16:58:11.010000"],["2024-07-25T16:58:12.010000"],["2024-07-25T16:58:13.010000"],["2024-07-25T16:58:14.010000"],["2024-07-25T16:58:15.010000"],["2024-07-25T16:58:16.010000"],["2024-07-25T16:58:17.010000"],["2024-07-25T16:58:18.010000"],["2024-07-25T16:58:19.010000"],["2024-07-25T16:58:20.010000"],["2024-07-25T16:58:21.010000"],["2024-07-25T16:58:22.010000"],["2024-07-25T16:58:23.010000"],["2024-07-25T16:58:24.010000"],["2024-07-25T16:58:25.010000"],["2024-07-25T16:58:26.010000"],["2024-07-25T16:58:27.010000"],["2024-07-25T16:58:28.010000"],["2024-07-25T16:58:29.010000"],["2024-07-25T16:58:30.010000"],["2024-07-25T16:58:31.010000"],["2024-07-25T16:58:32.010000"],["2024-07-25T16:58:33.010000"],["2024-07-25T16:58:34.010000"],["2024-07-25T16:58:35.010000"],["2024-07-25T16:58:36.010000"],["2024-07-25T16:58:37.010000"],["2024-07-25T16:58:38.010000"],["2024-07-25T16:58:39.010000"],["2024-07-25T16:58:40.010000"],["2024-07-25T16:58:41.010000"],["2024-07-25T16:58:42.010000"],["2024-07-25T16:58:43.010000"],["2024-07-25T16:58:44.010000"],["2024-07-25T16:58:45.010000"],["2024-07-25T16:58:46.010000"],["2024-07-25T16:58:47.010000"],["2024-07-25T16:58:48.010000"],["2024-07-25T16:58:49.010000"],["2024-07-25T16:58:50.010000"],["2024-07-25T16:58:51.010000"],["2024-07-25T16:58:52.010000"],["2024-07-25T16:58:53.010000"],["2024-07-25T16:58:54.010000"],["2024-07-25T16:58:55.010000"],["2024-07-25T16:58:56.010000"],["2024-07-25T16:58:57.010000"],["2024-07-25T16:58:58.010000"],["2024-07-25T16:58:59.010000"],["2024-07-25T16:59:00.010000"],["2024-07-25T16:59:01.010000"],["2024-07-25T16:59:02.010000"],["2024-07-25T16:59:03.010000"],["2024-07-25T16:59:04.010000"],["2024-07-25T16:59:05.010000"],["2024-07-25T16:59:06.010000"],["2024-07-25T16:59:07.010000"],["2024-07-25T16:59:08.010000"],["2024-07-25T16:59:09.010000"],["2024-07-25T16:59:10.010000"],["2024-07-25T16:59:11.010000"],["2024-07-25T16:59:12.010000"],["2024-07-25T16:59:13.010000"],["2024-07-25T16:59:14.010000"],["2024-07-25T16:59:15.010000"],["2024-07-25T16:59:16.010000"],["2024-07-25T16:59:17.010000"],["2024-07-25T16:59:18.010000"],["2024-07-25T16:59:19.010000"],["2024-07-25T16:59:20.010000"],["2024-07-25T16:59:21.010000"],["2024-07-25T16:59:22.010000"],["2024-07-25T16:59:23.010000"],["2024-07-25T16:59:24.010000"],["2024-07-25T16:59:25.010000"],["2024-07-25T16:59:26.010000"],["2024-07-25T16:59:27.010000"],["2024-07-25T16:59:28.010000"],["2024-07-25T16:59:29.010000"],["2024-07-25T16:59:30.010000"],["2024-07-25T16:59:31.010000"],["2024-07-25T16:59:32.010000"],["2024-07-25T16:59:33.010000"],["2024-07-25T16:59:34.010000"],["2024-07-25T16:59:35.010000"],["2024-07-25T16:59:36.010000"],["2024-07-25T16:59:37.010000"],["2024-07-25T16:59:38.010000"],["2024-07-25T16:59:39.010000"],["2024-07-25T16:59:40.010000"],["2024-07-25T16:59:41.010000"],["2024-07-25T16:59:42.010000"],["2024-07-25T16:59:43.010000"],["2024-07-25T16:59:44.010000"],["2024-07-25T16:59:45.010000"],["2024-07-25T16:59:46.010000"],["2024-07-25T16:59:47.010000"],["2024-07-25T16:59:48.010000"],["2024-07-25T16:59:49.010000"],["2024-07-25T16:59:50.010000"],["2024-07-25T16:59:51.010000"],["2024-07-25T16:59:52.010000"],["2024-07-25T16:59:53.010000"],["2024-07-25T16:59:54.010000"],["2024-07-25T16:59:55.010000"],["2024-07-25T16:59:56.010000"],["2024-07-25T16:59:57.010000"],["2024-07-25T16:59:58.010000"],["2024-07-25T16:59:59.010000"],["2024-07-25T17:00:00.010000"],["2024-07-25T17:00:01.010000"],["2024-07-25T17:00:02.010000"],["2024-07-25T17:00:03.010000"],["2024-07-25T17:00:04.010000"],["2024-07-25T17:00:05.010000"],["2024-07-25T17:00:06.010000"],["2024-07-25T17:00:07.010000"],["2024-07-25T17:00:08.010000"],["2024-07-25T17:00:09.010000"],["2024-07-25T17:00:10.010000"],["2024-07-25T17:00:11.010000"],["2024-07-25T17:00:12.010000"],["2024-07-25T17:00:13.010000"],["2024-07-25T17:00:14.010000"],["2024-07-25T17:00:15.010000"],["2024-07-25T17:00:16.010000"],["2024-07-25T17:00:17.010000"],["2024-07-25T17:00:18.010000"],["2024-07-25T17:00:19.010000"],["2024-07-25T17:00:20.010000"],["2024-07-25T17:00:21.010000"],["2024-07-25T17:00:22.010000"],["2024-07-25T17:00:23.010000"],["2024-07-25T17:00:24.010000"],["2024-07-25T17:00:25.010000"],["2024-07-25T17:00:26.010000"],["2024-07-25T17:00:27.010000"],["2024-07-25T17:00:28.010000"],["2024-07-25T17:00:29.010000"],["2024-07-25T17:00:30.010000"],["2024-07-25T17:00:31.010000"],["2024-07-25T17:00:32.010000"],["2024-07-25T17:00:33.010000"],["2024-07-25T17:00:34.010000"],["2024-07-25T17:00:35.010000"],["2024-07-25T17:00:36.010000"],["2024-07-25T17:00:37.010000"],["2024-07-25T17:00:38.010000"],["2024-07-25T17:00:39.010000"],["2024-07-25T17:00:40.010000"],["2024-07-25T17:00:41.010000"],["2024-07-25T17:00:42.010000"],["2024-07-25T17:00:43.010000"],["2024-07-25T17:00:44.010000"],["2024-07-25T17:00:45.010000"],["2024-07-25T17:00:46.010000"],["2024-07-25T17:00:47.010000"],["2024-07-25T17:00:48.010000"],["2024-07-25T17:00:49.010000"],["2024-07-25T17:00:50.010000"],["2024-07-25T17:00:51.010000"],["2024-07-25T17:00:52.010000"],["2024-07-25T17:00:53.010000"],["2024-07-25T17:00:54.010000"],["2024-07-25T17:00:55.010000"],["2024-07-25T17:00:56.010000"],["2024-07-25T17:00:57.010000"],["2024-07-25T17:00:58.010000"],["2024-07-25T17:00:59.010000"],["2024-07-25T17:01:00.010000"],["2024-07-25T17:01:01.010000"],["2024-07-25T17:01:02.010000"],["2024-07-25T17:01:03.010000"],["2024-07-25T17:01:04.010000"],["2024-07-25T17:01:05.010000"],["2024-07-25T17:01:06.010000"],["2024-07-25T17:01:07.010000"],["2024-07-25T17:01:08.010000"],["2024-07-25T17:01:09.010000"],["2024-07-25T17:01:10.010000"],["2024-07-25T17:01:11.010000"],["2024-07-25T17:01:12.010000"],["2024-07-25T17:01:13.010000"],["2024-07-25T17:01:14.010000"],["2024-07-25T17:01:15.010000"],["2024-07-25T17:01:16.010000"],["2024-07-25T17:01:17.010000"],["2024-07-25T17:01:18.010000"],["2024-07-25T17:01:19.010000"],["2024-07-25T17:01:20.010000"],["2024-07-25T17:01:21.010000"],["2024-07-25T17:01:22.010000"],["2024-07-25T17:01:23.010000"],["2024-07-25T17:01:24.010000"],["2024-07-25T17:01:25.010000"],["2024-07-25T17:01:26.010000"],["2024-07-25T17:01:27.010000"],["2024-07-25T17:01:28.010000"],["2024-07-25T17:01:29.010000"],["2024-07-25T17:01:30.010000"],["2024-07-25T17:01:31.010000"],["2024-07-25T17:01:32.010000"],["2024-07-25T17:01:33.010000"],["2024-07-25T17:01:34.010000"],["2024-07-25T17:01:35.010000"],["2024-07-25T17:01:36.010000"],["2024-07-25T17:01:37.010000"],["2024-07-25T17:01:38.010000"],["2024-07-25T17:01:39.010000"],["2024-07-25T17:01:40.010000"],["2024-07-25T17:01:41.010000"],["2024-07-25T17:01:42.010000"],["2024-07-25T17:01:43.010000"],["2024-07-25T17:01:44.010000"],["2024-07-25T17:01:45.010000"],["2024-07-25T17:01:46.010000"],["2024-07-25T17:01:47.010000"],["2024-07-25T17:01:48.010000"],["2024-07-25T17:01:49.010000"],["2024-07-25T17:01:50.010000"],["2024-07-25T17:01:51.010000"],["2024-07-25T17:01:52.010000"],["2024-07-25T17:01:53.010000"],["2024-07-25T17:01:54.010000"],["2024-07-25T17:01:55.010000"],["2024-07-25T17:01:56.010000"],["2024-07-25T17:01:57.010000"],["2024-07-25T17:01:58.010000"],["2024-07-25T17:01:59.010000"],["2024-07-25T17:02:00.010000"],["2024-07-25T17:02:01.010000"],["2024-07-25T17:02:02.010000"],["2024-07-25T17:02:03.010000"],["2024-07-25T17:02:04.010000"],["2024-07-25T17:02:05.010000"],["2024-07-25T17:02:06.010000"],["2024-07-25T17:02:07.010000"],["2024-07-25T17:02:08.010000"],["2024-07-25T17:02:09.010000"],["2024-07-25T17:02:10.010000"],["2024-07-25T17:02:11.010000"],["2024-07-25T17:02:12.010000"],["2024-07-25T17:02:13.010000"],["2024-07-25T17:02:14.010000"],["2024-07-25T17:02:15.010000"],["2024-07-25T17:02:16.010000"],["2024-07-25T17:02:17.010000"],["2024-07-25T17:02:18.010000"],["2024-07-25T17:02:19.010000"],["2024-07-25T17:02:20.010000"],["2024-07-25T17:02:21.010000"],["2024-07-25T17:02:22.010000"],["2024-07-25T17:02:23.010000"],["2024-07-25T17:02:24.010000"],["2024-07-25T17:02:25.010000"],["2024-07-25T17:02:26.010000"],["2024-07-25T17:02:27.010000"],["2024-07-25T17:02:28.010000"],["2024-07-25T17:02:29.010000"],["2024-07-25T17:02:30.010000"],["2024-07-25T17:02:31.010000"],["2024-07-25T17:02:32.010000"],["2024-07-25T17:02:33.010000"],["2024-07-25T17:02:34.010000"],["2024-07-25T17:02:35.010000"],["2024-07-25T17:02:36.010000"],["2024-07-25T17:02:37.010000"],["2024-07-25T17:02:38.010000"],["2024-07-25T17:02:39.010000"],["2024-07-25T17:02:40.010000"],["2024-07-25T17:02:41.010000"],["2024-07-25T17:02:42.010000"],["2024-07-25T17:02:43.010000"],["2024-07-25T17:02:44.010000"],["2024-07-25T17:02:45.010000"],["2024-07-25T17:02:46.010000"],["2024-07-25T17:02:47.010000"],["2024-07-25T17:02:48.010000"],["2024-07-25T17:02:49.010000"],["2024-07-25T17:02:50.010000"],["2024-07-25T17:02:51.010000"],["2024-07-25T17:02:52.010000"],["2024-07-25T17:02:53.010000"],["2024-07-25T17:02:54.010000"],["2024-07-25T17:02:55.010000"],["2024-07-25T17:02:56.010000"],["2024-07-25T17:02:57.010000"],["2024-07-25T17:02:58.010000"],["2024-07-25T17:02:59.010000"],["2024-07-25T17:03:00.010000"],["2024-07-25T17:03:01.010000"],["2024-07-25T17:03:02.010000"],["2024-07-25T17:03:03.010000"],["2024-07-25T17:03:04.010000"],["2024-07-25T17:03:05.010000"],["2024-07-25T17:03:06.010000"],["2024-07-25T17:03:07.010000"],["2024-07-25T17:03:08.010000"],["2024-07-25T17:03:09.010000"],["2024-07-25T17:03:10.010000"],["2024-07-25T17:03:11.010000"],["2024-07-25T17:03:12.010000"],["2024-07-25T17:03:13.010000"],["2024-07-25T17:03:14.010000"],["2024-07-25T17:03:15.010000"],["2024-07-25T17:03:16.010000"],["2024-07-25T17:03:17.010000"],["2024-07-25T17:03:18.010000"],["2024-07-25T17:03:19.010000"],["2024-07-25T17:03:20.010000"],["2024-07-25T17:03:21.010000"],["2024-07-25T17:03:22.010000"],["2024-07-25T17:03:23.010000"],["2024-07-25T17:03:24.010000"],["2024-07-25T17:03:25.010000"],["2024-07-25T17:03:26.010000"],["2024-07-25T17:03:27.010000"],["2024-07-25T17:03:28.010000"],["2024-07-25T17:03:29.010000"],["2024-07-25T17:03:30.010000"],["2024-07-25T17:03:31.010000"],["2024-07-25T17:03:32.010000"],["2024-07-25T17:03:33.010000"],["2024-07-25T17:03:34.010000"],["2024-07-25T17:03:35.010000"],["2024-07-25T17:03:36.010000"],["2024-07-25T17:03:37.010000"],["2024-07-25T17:03:38.010000"],["2024-07-25T17:03:39.010000"],["2024-07-25T17:03:40.010000"],["2024-07-25T17:03:41.010000"],["2024-07-25T17:03:42.010000"],["2024-07-25T17:03:43.010000"],["2024-07-25T17:03:44.010000"],["2024-07-25T17:03:45.010000"],["2024-07-25T17:03:46.010000"],["2024-07-25T17:03:47.010000"],["2024-07-25T17:03:48.010000"],["2024-07-25T17:03:49.010000"],["2024-07-25T17:03:50.010000"],["2024-07-25T17:03:51.010000"],["2024-07-25T17:03:52.010000"],["2024-07-25T17:03:53.010000"],["2024-07-25T17:03:54.010000"],["2024-07-25T17:03:55.010000"],["2024-07-25T17:03:56.010000"],["2024-07-25T17:03:57.010000"],["2024-07-25T17:03:58.010000"],["2024-07-25T17:03:59.010000"],["2024-07-25T17:04:00.010000"],["2024-07-25T17:04:01.010000"],["2024-07-25T17:04:02.010000"],["2024-07-25T17:04:03.010000"],["2024-07-25T17:04:04.010000"],["2024-07-25T17:04:05.010000"],["2024-07-25T17:04:06.010000"],["2024-07-25T17:04:07.010000"],["2024-07-25T17:04:08.010000"],["2024-07-25T17:04:09.010000"],["2024-07-25T17:04:10.010000"],["2024-07-25T17:04:11.010000"],["2024-07-25T17:04:12.010000"],["2024-07-25T17:04:13.010000"],["2024-07-25T17:04:14.010000"],["2024-07-25T17:04:15.010000"],["2024-07-25T17:04:16.010000"],["2024-07-25T17:04:17.010000"],["2024-07-25T17:04:18.010000"],["2024-07-25T17:04:19.010000"],["2024-07-25T17:04:20.010000"],["2024-07-25T17:04:21.010000"],["2024-07-25T17:04:22.010000"],["2024-07-25T17:04:23.010000"],["2024-07-25T17:04:24.010000"],["2024-07-25T17:04:25.010000"],["2024-07-25T17:04:26.010000"],["2024-07-25T17:04:27.010000"],["2024-07-25T17:04:28.010000"],["2024-07-25T17:04:29.010000"],["2024-07-25T17:04:30.010000"],["2024-07-25T17:04:31.010000"],["2024-07-25T17:04:32.010000"],["2024-07-25T17:04:33.010000"],["2024-07-25T17:04:34.010000"],["2024-07-25T17:04:35.010000"],["2024-07-25T17:04:36.010000"],["2024-07-25T17:04:37.010000"],["2024-07-25T17:04:38.010000"],["2024-07-25T17:04:39.010000"],["2024-07-25T17:04:40.010000"],["2024-07-25T17:04:41.010000"],["2024-07-25T17:04:42.010000"],["2024-07-25T17:04:43.010000"],["2024-07-25T17:04:44.010000"],["2024-07-25T17:04:45.010000"],["2024-07-25T17:04:46.010000"],["2024-07-25T17:04:47.010000"],["2024-07-25T17:04:48.010000"],["2024-07-25T17:04:49.010000"],["2024-07-25T17:04:50.010000"],["2024-07-25T17:04:51.010000"],["2024-07-25T17:04:52.010000"],["2024-07-25T17:04:53.010000"],["2024-07-25T17:04:54.010000"],["2024-07-25T17:04:55.010000"],["2024-07-25T17:04:56.010000"],["2024-07-25T17:04:57.010000"],["2024-07-25T17:04:58.010000"],["2024-07-25T17:04:59.010000"],["2024-07-25T17:05:00.010000"],["2024-07-25T17:05:01.010000"],["2024-07-25T17:05:02.010000"],["2024-07-25T17:05:03.010000"],["2024-07-25T17:05:04.010000"],["2024-07-25T17:05:05.010000"],["2024-07-25T17:05:06.010000"],["2024-07-25T17:05:07.010000"],["2024-07-25T17:05:08.010000"],["2024-07-25T17:05:09.010000"],["2024-07-25T17:05:10.010000"],["2024-07-25T17:05:11.010000"],["2024-07-25T17:05:12.010000"],["2024-07-25T17:05:13.010000"],["2024-07-25T17:05:14.010000"],["2024-07-25T17:05:15.010000"],["2024-07-25T17:05:16.010000"],["2024-07-25T17:05:17.010000"],["2024-07-25T17:05:18.010000"],["2024-07-25T17:05:19.010000"],["2024-07-25T17:05:20.010000"],["2024-07-25T17:05:21.010000"],["2024-07-25T17:05:22.010000"],["2024-07-25T17:05:23.010000"],["2024-07-25T17:05:24.010000"],["2024-07-25T17:05:25.010000"],["2024-07-25T17:05:26.010000"],["2024-07-25T17:05:27.010000"],["2024-07-25T17:05:28.010000"],["2024-07-25T17:05:29.010000"],["2024-07-25T17:05:30.010000"],["2024-07-25T17:05:31.010000"],["2024-07-25T17:05:32.010000"],["2024-07-25T17:05:33.010000"],["2024-07-25T17:05:34.010000"],["2024-07-25T17:05:35.010000"],["2024-07-25T17:05:36.010000"],["2024-07-25T17:05:37.010000"],["2024-07-25T17:05:38.010000"],["2024-07-25T17:05:39.010000"],["2024-07-25T17:05:40.010000"],["2024-07-25T17:05:41.010000"],["2024-07-25T17:05:42.010000"],["2024-07-25T17:05:43.010000"],["2024-07-25T17:05:44.010000"],["2024-07-25T17:05:45.010000"],["2024-07-25T17:05:46.010000"],["2024-07-25T17:05:47.010000"],["2024-07-25T17:05:48.010000"],["2024-07-25T17:05:49.010000"],["2024-07-25T17:05:50.010000"],["2024-07-25T17:05:51.010000"],["2024-07-25T17:05:52.010000"],["2024-07-25T17:05:53.010000"],["2024-07-25T17:05:54.010000"],["2024-07-25T17:05:55.010000"],["2024-07-25T17:05:56.010000"],["2024-07-25T17:05:57.010000"],["2024-07-25T17:05:58.010000"],["2024-07-25T17:05:59.010000"],["2024-07-25T17:06:00.010000"],["2024-07-25T17:06:01.010000"],["2024-07-25T17:06:02.010000"],["2024-07-25T17:06:03.010000"],["2024-07-25T17:06:04.010000"],["2024-07-25T17:06:05.010000"],["2024-07-25T17:06:06.010000"],["2024-07-25T17:06:07.010000"],["2024-07-25T17:06:08.010000"],["2024-07-25T17:06:09.010000"],["2024-07-25T17:06:10.010000"],["2024-07-25T17:06:11.010000"],["2024-07-25T17:06:12.010000"],["2024-07-25T17:06:13.010000"],["2024-07-25T17:06:14.010000"],["2024-07-25T17:06:15.010000"],["2024-07-25T17:06:16.010000"],["2024-07-25T17:06:17.010000"],["2024-07-25T17:06:18.010000"],["2024-07-25T17:06:19.010000"],["2024-07-25T17:06:20.010000"],["2024-07-25T17:06:21.010000"],["2024-07-25T17:06:22.010000"],["2024-07-25T17:06:23.010000"],["2024-07-25T17:06:24.010000"],["2024-07-25T17:06:25.010000"],["2024-07-25T17:06:26.010000"],["2024-07-25T17:06:27.010000"],["2024-07-25T17:06:28.010000"],["2024-07-25T17:06:29.010000"],["2024-07-25T17:06:30.010000"],["2024-07-25T17:06:31.010000"],["2024-07-25T17:06:32.010000"],["2024-07-25T17:06:33.010000"],["2024-07-25T17:06:34.010000"],["2024-07-25T17:06:35.010000"],["2024-07-25T17:06:36.010000"],["2024-07-25T17:06:37.010000"],["2024-07-25T17:06:38.010000"],["2024-07-25T17:06:39.010000"],["2024-07-25T17:06:40.010000"],["2024-07-25T17:06:41.010000"],["2024-07-25T17:06:42.010000"],["2024-07-25T17:06:43.010000"],["2024-07-25T17:06:44.010000"],["2024-07-25T17:06:45.010000"],["2024-07-25T17:06:46.010000"],["2024-07-25T17:06:47.010000"],["2024-07-25T17:06:48.010000"],["2024-07-25T17:06:49.010000"],["2024-07-25T17:06:50.010000"],["2024-07-25T17:06:51.010000"],["2024-07-25T17:06:52.010000"],["2024-07-25T17:06:53.010000"],["2024-07-25T17:06:54.010000"],["2024-07-25T17:06:55.010000"],["2024-07-25T17:06:56.010000"],["2024-07-25T17:06:57.010000"],["2024-07-25T17:06:58.010000"],["2024-07-25T17:06:59.010000"],["2024-07-25T17:07:00.010000"],["2024-07-25T17:07:01.010000"],["2024-07-25T17:07:02.010000"],["2024-07-25T17:07:03.010000"],["2024-07-25T17:07:04.010000"],["2024-07-25T17:07:05.010000"],["2024-07-25T17:07:06.010000"],["2024-07-25T17:07:07.010000"],["2024-07-25T17:07:08.010000"],["2024-07-25T17:07:09.010000"],["2024-07-25T17:07:10.010000"],["2024-07-25T17:07:11.010000"],["2024-07-25T17:07:12.010000"],["2024-07-25T17:07:13.010000"],["2024-07-25T17:07:14.010000"],["2024-07-25T17:07:15.010000"],["2024-07-25T17:07:16.010000"],["2024-07-25T17:07:17.010000"],["2024-07-25T17:07:18.010000"],["2024-07-25T17:07:19.010000"],["2024-07-25T17:07:20.010000"],["2024-07-25T17:07:21.010000"],["2024-07-25T17:07:22.010000"],["2024-07-25T17:07:23.010000"],["2024-07-25T17:07:24.010000"],["2024-07-25T17:07:25.010000"],["2024-07-25T17:07:26.010000"],["2024-07-25T17:07:27.010000"],["2024-07-25T17:07:28.010000"],["2024-07-25T17:07:29.010000"],["2024-07-25T17:07:30.010000"],["2024-07-25T17:07:31.010000"],["2024-07-25T17:07:32.010000"],["2024-07-25T17:07:33.010000"],["2024-07-25T17:07:34.010000"],["2024-07-25T17:07:35.010000"],["2024-07-25T17:07:36.010000"],["2024-07-25T17:07:37.010000"],["2024-07-25T17:07:38.010000"],["2024-07-25T17:07:39.010000"],["2024-07-25T17:07:40.010000"],["2024-07-25T17:07:41.010000"],["2024-07-25T17:07:42.010000"],["2024-07-25T17:07:43.010000"],["2024-07-25T17:07:44.010000"],["2024-07-25T17:07:45.010000"],["2024-07-25T17:07:46.010000"],["2024-07-25T17:07:47.010000"],["2024-07-25T17:07:48.010000"],["2024-07-25T17:07:49.010000"],["2024-07-25T17:07:50.010000"],["2024-07-25T17:07:51.010000"],["2024-07-25T17:07:52.010000"],["2024-07-25T17:07:53.010000"],["2024-07-25T17:07:54.010000"],["2024-07-25T17:07:55.010000"],["2024-07-25T17:07:56.010000"],["2024-07-25T17:07:57.010000"],["2024-07-25T17:07:58.010000"],["2024-07-25T17:07:59.010000"],["2024-07-25T17:08:00.010000"],["2024-07-25T17:08:01.010000"],["2024-07-25T17:08:02.010000"],["2024-07-25T17:08:03.010000"],["2024-07-25T17:08:04.010000"],["2024-07-25T17:08:05.010000"],["2024-07-25T17:08:06.010000"],["2024-07-25T17:08:07.010000"],["2024-07-25T17:08:08.010000"],["2024-07-25T17:08:09.010000"],["2024-07-25T17:08:10.010000"],["2024-07-25T17:08:11.010000"],["2024-07-25T17:08:12.010000"],["2024-07-25T17:08:13.010000"],["2024-07-25T17:08:14.010000"],["2024-07-25T17:08:15.010000"],["2024-07-25T17:08:16.010000"],["2024-07-25T17:08:17.010000"],["2024-07-25T17:08:18.010000"],["2024-07-25T17:08:19.010000"],["2024-07-25T17:08:20.010000"],["2024-07-25T17:08:21.010000"],["2024-07-25T17:08:22.010000"],["2024-07-25T17:08:23.010000"],["2024-07-25T17:08:24.010000"],["2024-07-25T17:08:25.010000"],["2024-07-25T17:08:26.010000"],["2024-07-25T17:08:27.010000"],["2024-07-25T17:08:28.010000"],["2024-07-25T17:08:29.010000"],["2024-07-25T17:08:30.010000"],["2024-07-25T17:08:31.010000"],["2024-07-25T17:08:32.010000"],["2024-07-25T17:08:33.010000"],["2024-07-25T17:08:34.010000"],["2024-07-25T17:08:35.010000"],["2024-07-25T17:08:36.010000"],["2024-07-25T17:08:37.010000"],["2024-07-25T17:08:38.010000"],["2024-07-25T17:08:39.010000"],["2024-07-25T17:08:40.010000"],["2024-07-25T17:08:41.010000"],["2024-07-25T17:08:42.010000"],["2024-07-25T17:08:43.010000"],["2024-07-25T17:08:44.010000"],["2024-07-25T17:08:45.010000"],["2024-07-25T17:08:46.010000"],["2024-07-25T17:08:47.010000"],["2024-07-25T17:08:48.010000"],["2024-07-25T17:08:49.010000"],["2024-07-25T17:08:50.010000"],["2024-07-25T17:08:51.010000"],["2024-07-25T17:08:52.010000"],["2024-07-25T17:08:53.010000"],["2024-07-25T17:08:54.010000"],["2024-07-25T17:08:55.010000"],["2024-07-25T17:08:56.010000"],["2024-07-25T17:08:57.010000"],["2024-07-25T17:08:58.010000"],["2024-07-25T17:08:59.010000"],["2024-07-25T17:09:00.010000"],["2024-07-25T17:09:01.010000"],["2024-07-25T17:09:02.010000"],["2024-07-25T17:09:03.010000"],["2024-07-25T17:09:04.010000"],["2024-07-25T17:09:05.010000"],["2024-07-25T17:09:06.010000"],["2024-07-25T17:09:07.010000"],["2024-07-25T17:09:08.010000"],["2024-07-25T17:09:09.010000"],["2024-07-25T17:09:10.010000"],["2024-07-25T17:09:11.010000"],["2024-07-25T17:09:12.010000"],["2024-07-25T17:09:13.010000"],["2024-07-25T17:09:14.010000"],["2024-07-25T17:09:15.010000"],["2024-07-25T17:09:16.010000"],["2024-07-25T17:09:17.010000"],["2024-07-25T17:09:18.010000"],["2024-07-25T17:09:19.010000"],["2024-07-25T17:09:20.010000"],["2024-07-25T17:09:21.010000"],["2024-07-25T17:09:22.010000"],["2024-07-25T17:09:23.010000"],["2024-07-25T17:09:24.010000"],["2024-07-25T17:09:25.010000"],["2024-07-25T17:09:26.010000"],["2024-07-25T17:09:27.010000"],["2024-07-25T17:09:28.010000"],["2024-07-25T17:09:29.010000"],["2024-07-25T17:09:30.010000"],["2024-07-25T17:09:31.010000"],["2024-07-25T17:09:32.010000"],["2024-07-25T17:09:33.010000"],["2024-07-25T17:09:34.010000"],["2024-07-25T17:09:35.010000"],["2024-07-25T17:09:36.010000"],["2024-07-25T17:09:37.010000"],["2024-07-25T17:09:38.010000"],["2024-07-25T17:09:39.010000"],["2024-07-25T17:09:40.010000"],["2024-07-25T17:09:41.010000"],["2024-07-25T17:09:42.010000"],["2024-07-25T17:09:43.010000"],["2024-07-25T17:09:44.010000"],["2024-07-25T17:09:45.010000"],["2024-07-25T17:09:46.010000"],["2024-07-25T17:09:47.010000"],["2024-07-25T17:09:48.010000"],["2024-07-25T17:09:49.010000"],["2024-07-25T17:09:50.010000"],["2024-07-25T17:09:51.010000"],["2024-07-25T17:09:52.010000"],["2024-07-25T17:09:53.010000"],["2024-07-25T17:09:54.010000"],["2024-07-25T17:09:55.010000"],["2024-07-25T17:09:56.010000"],["2024-07-25T17:09:57.010000"],["2024-07-25T17:09:58.010000"],["2024-07-25T17:09:59.010000"],["2024-07-25T17:10:00.010000"],["2024-07-25T17:10:01.010000"],["2024-07-25T17:10:02.010000"],["2024-07-25T17:10:03.010000"],["2024-07-25T17:10:04.010000"],["2024-07-25T17:10:05.010000"],["2024-07-25T17:10:06.010000"],["2024-07-25T17:10:07.010000"],["2024-07-25T17:10:08.010000"],["2024-07-25T17:10:09.010000"],["2024-07-25T17:10:10.010000"],["2024-07-25T17:10:11.010000"],["2024-07-25T17:10:12.010000"],["2024-07-25T17:10:13.010000"],["2024-07-25T17:10:14.010000"],["2024-07-25T17:10:15.010000"],["2024-07-25T17:10:16.010000"],["2024-07-25T17:10:17.010000"],["2024-07-25T17:10:18.010000"],["2024-07-25T17:10:19.010000"],["2024-07-25T17:10:20.010000"],["2024-07-25T17:10:21.010000"],["2024-07-25T17:10:22.010000"],["2024-07-25T17:10:23.010000"],["2024-07-25T17:10:24.010000"],["2024-07-25T17:10:25.010000"],["2024-07-25T17:10:26.010000"],["2024-07-25T17:10:27.010000"],["2024-07-25T17:10:28.010000"],["2024-07-25T17:10:29.010000"],["2024-07-25T17:10:30.010000"],["2024-07-25T17:10:31.010000"],["2024-07-25T17:10:32.010000"],["2024-07-25T17:10:33.010000"],["2024-07-25T17:10:34.010000"],["2024-07-25T17:10:35.010000"],["2024-07-25T17:10:36.010000"],["2024-07-25T17:10:37.010000"],["2024-07-25T17:10:38.010000"],["2024-07-25T17:10:39.010000"],["2024-07-25T17:10:40.010000"],["2024-07-25T17:10:41.010000"],["2024-07-25T17:10:42.010000"],["2024-07-25T17:10:43.010000"],["2024-07-25T17:10:44.010000"],["2024-07-25T17:10:45.010000"],["2024-07-25T17:10:46.010000"],["2024-07-25T17:10:47.010000"],["2024-07-25T17:10:48.010000"],["2024-07-25T17:10:49.010000"],["2024-07-25T17:10:50.010000"],["2024-07-25T17:10:51.010000"],["2024-07-25T17:10:52.010000"],["2024-07-25T17:10:53.010000"],["2024-07-25T17:10:54.010000"],["2024-07-25T17:10:55.010000"],["2024-07-25T17:10:56.010000"],["2024-07-25T17:10:57.010000"],["2024-07-25T17:10:58.010000"],["2024-07-25T17:10:59.010000"],["2024-07-25T17:11:00.010000"],["2024-07-25T17:11:01.010000"],["2024-07-25T17:11:02.010000"],["2024-07-25T17:11:03.010000"],["2024-07-25T17:11:04.010000"],["2024-07-25T17:11:05.010000"],["2024-07-25T17:11:06.010000"],["2024-07-25T17:11:07.010000"],["2024-07-25T17:11:08.010000"],["2024-07-25T17:11:09.010000"],["2024-07-25T17:11:10.010000"],["2024-07-25T17:11:11.010000"],["2024-07-25T17:11:12.010000"],["2024-07-25T17:11:13.010000"],["2024-07-25T17:11:14.010000"],["2024-07-25T17:11:15.010000"],["2024-07-25T17:11:16.010000"],["2024-07-25T17:11:17.010000"],["2024-07-25T17:11:18.010000"],["2024-07-25T17:11:19.010000"],["2024-07-25T17:11:20.010000"],["2024-07-25T17:11:21.010000"],["2024-07-25T17:11:22.010000"],["2024-07-25T17:11:23.010000"],["2024-07-25T17:11:24.010000"],["2024-07-25T17:11:25.010000"],["2024-07-25T17:11:26.010000"],["2024-07-25T17:11:27.010000"],["2024-07-25T17:11:28.010000"],["2024-07-25T17:11:29.010000"],["2024-07-25T17:11:30.010000"],["2024-07-25T17:11:31.010000"],["2024-07-25T17:11:32.010000"],["2024-07-25T17:11:33.010000"],["2024-07-25T17:11:34.010000"],["2024-07-25T17:11:35.010000"],["2024-07-25T17:11:36.010000"],["2024-07-25T17:11:37.010000"],["2024-07-25T17:11:38.010000"],["2024-07-25T17:11:39.010000"],["2024-07-25T17:11:40.010000"],["2024-07-25T17:11:41.010000"],["2024-07-25T17:11:42.010000"],["2024-07-25T17:11:43.010000"],["2024-07-25T17:11:44.010000"],["2024-07-25T17:11:45.010000"],["2024-07-25T17:11:46.010000"],["2024-07-25T17:11:47.010000"],["2024-07-25T17:11:48.010000"],["2024-07-25T17:11:49.010000"],["2024-07-25T17:11:50.010000"],["2024-07-25T17:11:51.010000"],["2024-07-25T17:11:52.010000"],["2024-07-25T17:11:53.010000"],["2024-07-25T17:11:54.010000"],["2024-07-25T17:11:55.010000"],["2024-07-25T17:11:56.010000"],["2024-07-25T17:11:57.010000"],["2024-07-25T17:11:58.010000"],["2024-07-25T17:11:59.010000"],["2024-07-25T17:12:00.010000"],["2024-07-25T17:12:01.010000"],["2024-07-25T17:12:02.010000"],["2024-07-25T17:12:03.010000"],["2024-07-25T17:12:04.010000"],["2024-07-25T17:12:05.010000"],["2024-07-25T17:12:06.010000"],["2024-07-25T17:12:07.010000"],["2024-07-25T17:12:08.010000"],["2024-07-25T17:12:09.010000"],["2024-07-25T17:12:10.010000"],["2024-07-25T17:12:11.010000"],["2024-07-25T17:12:12.010000"],["2024-07-25T17:12:13.010000"],["2024-07-25T17:12:14.010000"],["2024-07-25T17:12:15.010000"],["2024-07-25T17:12:16.010000"],["2024-07-25T17:12:17.010000"],["2024-07-25T17:12:18.010000"],["2024-07-25T17:12:19.010000"],["2024-07-25T17:12:20.010000"],["2024-07-25T17:12:21.010000"],["2024-07-25T17:12:22.010000"],["2024-07-25T17:12:23.010000"],["2024-07-25T17:12:24.010000"],["2024-07-25T17:12:25.010000"],["2024-07-25T17:12:26.010000"],["2024-07-25T17:12:27.010000"],["2024-07-25T17:12:28.010000"],["2024-07-25T17:12:29.010000"],["2024-07-25T17:12:30.010000"],["2024-07-25T17:12:31.010000"],["2024-07-25T17:12:32.010000"],["2024-07-25T17:12:33.010000"],["2024-07-25T17:12:34.010000"],["2024-07-25T17:12:35.010000"],["2024-07-25T17:12:36.010000"],["2024-07-25T17:12:37.010000"],["2024-07-25T17:12:38.010000"],["2024-07-25T17:12:39.010000"],["2024-07-25T17:12:40.010000"],["2024-07-25T17:12:41.010000"],["2024-07-25T17:12:42.010000"],["2024-07-25T17:12:43.010000"],["2024-07-25T17:12:44.010000"],["2024-07-25T17:12:45.010000"],["2024-07-25T17:12:46.010000"],["2024-07-25T17:12:47.010000"],["2024-07-25T17:12:48.010000"],["2024-07-25T17:12:49.010000"],["2024-07-25T17:12:50.010000"],["2024-07-25T17:12:51.010000"],["2024-07-25T17:12:52.010000"],["2024-07-25T17:12:53.010000"],["2024-07-25T17:12:54.010000"],["2024-07-25T17:12:55.010000"],["2024-07-25T17:12:56.010000"],["2024-07-25T17:12:57.010000"],["2024-07-25T17:12:58.010000"],["2024-07-25T17:12:59.010000"],["2024-07-25T17:13:00.010000"],["2024-07-25T17:13:01.010000"],["2024-07-25T17:13:02.010000"],["2024-07-25T17:13:03.010000"],["2024-07-25T17:13:04.010000"],["2024-07-25T17:13:05.010000"],["2024-07-25T17:13:06.010000"],["2024-07-25T17:13:07.010000"],["2024-07-25T17:13:08.010000"],["2024-07-25T17:13:09.010000"],["2024-07-25T17:13:10.010000"],["2024-07-25T17:13:11.010000"],["2024-07-25T17:13:12.010000"],["2024-07-25T17:13:13.010000"],["2024-07-25T17:13:14.010000"],["2024-07-25T17:13:15.010000"],["2024-07-25T17:13:16.010000"],["2024-07-25T17:13:17.010000"],["2024-07-25T17:13:18.010000"],["2024-07-25T17:13:19.010000"],["2024-07-25T17:13:20.010000"],["2024-07-25T17:13:21.010000"],["2024-07-25T17:13:22.010000"],["2024-07-25T17:13:23.010000"],["2024-07-25T17:13:24.010000"],["2024-07-25T17:13:25.010000"],["2024-07-25T17:13:26.010000"],["2024-07-25T17:13:27.010000"],["2024-07-25T17:13:28.010000"],["2024-07-25T17:13:29.010000"],["2024-07-25T17:13:30.010000"],["2024-07-25T17:13:31.010000"],["2024-07-25T17:13:32.010000"],["2024-07-25T17:13:33.010000"],["2024-07-25T17:13:34.010000"],["2024-07-25T17:13:35.010000"],["2024-07-25T17:13:36.010000"],["2024-07-25T17:13:37.010000"],["2024-07-25T17:13:38.010000"],["2024-07-25T17:13:39.010000"],["2024-07-25T17:13:40.010000"],["2024-07-25T17:13:41.010000"],["2024-07-25T17:13:42.010000"],["2024-07-25T17:13:43.010000"],["2024-07-25T17:13:44.010000"],["2024-07-25T17:13:45.010000"],["2024-07-25T17:13:46.010000"],["2024-07-25T17:13:47.010000"],["2024-07-25T17:13:48.010000"],["2024-07-25T17:13:49.010000"],["2024-07-25T17:13:50.010000"],["2024-07-25T17:13:51.010000"],["2024-07-25T17:13:52.010000"],["2024-07-25T17:13:53.010000"],["2024-07-25T17:13:54.010000"],["2024-07-25T17:13:55.010000"],["2024-07-25T17:13:56.010000"],["2024-07-25T17:13:57.010000"],["2024-07-25T17:13:58.010000"],["2024-07-25T17:13:59.010000"],["2024-07-25T17:14:00.010000"],["2024-07-25T17:14:01.010000"],["2024-07-25T17:14:02.010000"],["2024-07-25T17:14:03.010000"],["2024-07-25T17:14:04.010000"],["2024-07-25T17:14:05.010000"],["2024-07-25T17:14:06.010000"],["2024-07-25T17:14:07.010000"],["2024-07-25T17:14:08.010000"],["2024-07-25T17:14:09.010000"],["2024-07-25T17:14:10.010000"],["2024-07-25T17:14:11.010000"],["2024-07-25T17:14:12.010000"],["2024-07-25T17:14:13.010000"],["2024-07-25T17:14:14.010000"],["2024-07-25T17:14:15.010000"],["2024-07-25T17:14:16.010000"],["2024-07-25T17:14:17.010000"],["2024-07-25T17:14:18.010000"],["2024-07-25T17:14:19.010000"],["2024-07-25T17:14:20.010000"],["2024-07-25T17:14:21.010000"],["2024-07-25T17:14:22.010000"],["2024-07-25T17:14:23.010000"],["2024-07-25T17:14:24.010000"],["2024-07-25T17:14:25.010000"],["2024-07-25T17:14:26.010000"],["2024-07-25T17:14:27.010000"],["2024-07-25T17:14:28.010000"],["2024-07-25T17:14:29.010000"],["2024-07-25T17:14:30.010000"],["2024-07-25T17:14:31.010000"],["2024-07-25T17:14:32.010000"],["2024-07-25T17:14:33.010000"],["2024-07-25T17:14:34.010000"],["2024-07-25T17:14:35.010000"],["2024-07-25T17:14:36.010000"],["2024-07-25T17:14:37.010000"],["2024-07-25T17:14:38.010000"],["2024-07-25T17:14:39.010000"],["2024-07-25T17:14:40.010000"],["2024-07-25T17:14:41.010000"],["2024-07-25T17:14:42.010000"],["2024-07-25T17:14:43.010000"],["2024-07-25T17:14:44.010000"],["2024-07-25T17:14:45.010000"],["2024-07-25T17:14:46.010000"],["2024-07-25T17:14:47.010000"],["2024-07-25T17:14:48.010000"],["2024-07-25T17:14:49.010000"],["2024-07-25T17:14:50.010000"],["2024-07-25T17:14:51.010000"],["2024-07-25T17:14:52.010000"],["2024-07-25T17:14:53.010000"],["2024-07-25T17:14:54.010000"],["2024-07-25T17:14:55.010000"],["2024-07-25T17:14:56.010000"],["2024-07-25T17:14:57.010000"],["2024-07-25T17:14:58.010000"],["2024-07-25T17:14:59.010000"],["2024-07-25T17:15:00.010000"],["2024-07-25T17:15:01.010000"],["2024-07-25T17:15:02.010000"],["2024-07-25T17:15:03.010000"],["2024-07-25T17:15:04.010000"],["2024-07-25T17:15:05.010000"],["2024-07-25T17:15:06.010000"],["2024-07-25T17:15:07.010000"],["2024-07-25T17:15:08.010000"],["2024-07-25T17:15:09.010000"],["2024-07-25T17:15:10.010000"],["2024-07-25T17:15:11.010000"],["2024-07-25T17:15:12.010000"],["2024-07-25T17:15:13.010000"],["2024-07-25T17:15:14.010000"],["2024-07-25T17:15:15.010000"],["2024-07-25T17:15:16.010000"],["2024-07-25T17:15:17.010000"],["2024-07-25T17:15:18.010000"],["2024-07-25T17:15:19.010000"],["2024-07-25T17:15:20.010000"],["2024-07-25T17:15:21.010000"],["2024-07-25T17:15:22.010000"],["2024-07-25T17:15:23.010000"],["2024-07-25T17:15:24.010000"],["2024-07-25T17:15:25.010000"],["2024-07-25T17:15:26.010000"],["2024-07-25T17:15:27.010000"],["2024-07-25T17:15:28.010000"],["2024-07-25T17:15:29.010000"],["2024-07-25T17:15:30.010000"],["2024-07-25T17:15:31.010000"],["2024-07-25T17:15:32.010000"],["2024-07-25T17:15:33.010000"],["2024-07-25T17:15:34.010000"],["2024-07-25T17:15:35.010000"],["2024-07-25T17:15:36.010000"],["2024-07-25T17:15:37.010000"],["2024-07-25T17:15:38.010000"],["2024-07-25T17:15:39.010000"],["2024-07-25T17:15:40.010000"],["2024-07-25T17:15:41.010000"],["2024-07-25T17:15:42.010000"],["2024-07-25T17:15:43.010000"],["2024-07-25T17:15:44.010000"],["2024-07-25T17:15:45.010000"],["2024-07-25T17:15:46.010000"],["2024-07-25T17:15:47.010000"],["2024-07-25T17:15:48.010000"],["2024-07-25T17:15:49.010000"],["2024-07-25T17:15:50.010000"],["2024-07-25T17:15:51.010000"],["2024-07-25T17:15:52.010000"],["2024-07-25T17:15:53.010000"],["2024-07-25T17:15:54.010000"],["2024-07-25T17:15:55.010000"],["2024-07-25T17:15:56.010000"],["2024-07-25T17:15:57.010000"],["2024-07-25T17:15:58.010000"],["2024-07-25T17:15:59.010000"],["2024-07-25T17:16:00.010000"],["2024-07-25T17:16:01.010000"],["2024-07-25T17:16:02.010000"],["2024-07-25T17:16:03.010000"],["2024-07-25T17:16:04.010000"],["2024-07-25T17:16:05.010000"],["2024-07-25T17:16:06.010000"],["2024-07-25T17:16:07.010000"],["2024-07-25T17:16:08.010000"],["2024-07-25T17:16:09.010000"],["2024-07-25T17:16:10.010000"],["2024-07-25T17:16:11.010000"],["2024-07-25T17:16:12.010000"],["2024-07-25T17:16:13.010000"],["2024-07-25T17:16:14.010000"],["2024-07-25T17:16:15.010000"],["2024-07-25T17:16:16.010000"],["2024-07-25T17:16:17.010000"],["2024-07-25T17:16:18.010000"],["2024-07-25T17:16:19.010000"],["2024-07-25T17:16:20.010000"],["2024-07-25T17:16:21.010000"],["2024-07-25T17:16:22.010000"],["2024-07-25T17:16:23.010000"],["2024-07-25T17:16:24.010000"],["2024-07-25T17:16:25.010000"],["2024-07-25T17:16:26.010000"],["2024-07-25T17:16:27.010000"],["2024-07-25T17:16:28.010000"],["2024-07-25T17:16:29.010000"],["2024-07-25T17:16:30.010000"],["2024-07-25T17:16:31.010000"],["2024-07-25T17:16:32.010000"],["2024-07-25T17:16:33.010000"],["2024-07-25T17:16:34.010000"],["2024-07-25T17:16:35.010000"],["2024-07-25T17:16:36.010000"],["2024-07-25T17:16:37.010000"],["2024-07-25T17:16:38.010000"],["2024-07-25T17:16:39.010000"],["2024-07-25T17:16:40.010000"],["2024-07-25T17:16:41.010000"],["2024-07-25T17:16:42.010000"],["2024-07-25T17:16:43.010000"],["2024-07-25T17:16:44.010000"],["2024-07-25T17:16:45.010000"],["2024-07-25T17:16:46.010000"],["2024-07-25T17:16:47.010000"],["2024-07-25T17:16:48.010000"],["2024-07-25T17:16:49.010000"],["2024-07-25T17:16:50.010000"],["2024-07-25T17:16:51.010000"],["2024-07-25T17:16:52.010000"],["2024-07-25T17:16:53.010000"],["2024-07-25T17:16:54.010000"],["2024-07-25T17:16:55.010000"],["2024-07-25T17:16:56.010000"],["2024-07-25T17:16:57.010000"],["2024-07-25T17:16:58.010000"],["2024-07-25T17:16:59.010000"],["2024-07-25T17:17:00.010000"],["2024-07-25T17:17:01.010000"],["2024-07-25T17:17:02.010000"],["2024-07-25T17:17:03.010000"],["2024-07-25T17:17:04.010000"],["2024-07-25T17:17:05.010000"],["2024-07-25T17:17:06.010000"],["2024-07-25T17:17:07.010000"],["2024-07-25T17:17:08.010000"],["2024-07-25T17:17:09.010000"],["2024-07-25T17:17:10.010000"],["2024-07-25T17:17:11.010000"],["2024-07-25T17:17:12.010000"],["2024-07-25T17:17:13.010000"],["2024-07-25T17:17:14.010000"],["2024-07-25T17:17:15.010000"],["2024-07-25T17:17:16.010000"],["2024-07-25T17:17:17.010000"],["2024-07-25T17:17:18.010000"],["2024-07-25T17:17:19.010000"],["2024-07-25T17:17:20.010000"],["2024-07-25T17:17:21.010000"],["2024-07-25T17:17:22.010000"],["2024-07-25T17:17:23.010000"],["2024-07-25T17:17:24.010000"],["2024-07-25T17:17:25.010000"],["2024-07-25T17:17:26.010000"],["2024-07-25T17:17:27.010000"],["2024-07-25T17:17:28.010000"],["2024-07-25T17:17:29.010000"],["2024-07-25T17:17:30.010000"],["2024-07-25T17:17:31.010000"],["2024-07-25T17:17:32.010000"],["2024-07-25T17:17:33.010000"],["2024-07-25T17:17:34.010000"],["2024-07-25T17:17:35.010000"],["2024-07-25T17:17:36.010000"],["2024-07-25T17:17:37.010000"],["2024-07-25T17:17:38.010000"],["2024-07-25T17:17:39.010000"],["2024-07-25T17:17:40.010000"],["2024-07-25T17:17:41.010000"],["2024-07-25T17:17:42.010000"],["2024-07-25T17:17:43.010000"],["2024-07-25T17:17:44.010000"],["2024-07-25T17:17:45.010000"],["2024-07-25T17:17:46.010000"],["2024-07-25T17:17:47.010000"],["2024-07-25T17:17:48.010000"],["2024-07-25T17:17:49.010000"],["2024-07-25T17:17:50.010000"],["2024-07-25T17:17:51.010000"],["2024-07-25T17:17:52.010000"],["2024-07-25T17:17:53.010000"],["2024-07-25T17:17:54.010000"],["2024-07-25T17:17:55.010000"],["2024-07-25T17:17:56.010000"],["2024-07-25T17:17:57.010000"],["2024-07-25T17:17:58.010000"],["2024-07-25T17:17:59.010000"],["2024-07-25T17:18:00.010000"],["2024-07-25T17:18:01.010000"],["2024-07-25T17:18:02.010000"],["2024-07-25T17:18:03.010000"],["2024-07-25T17:18:04.010000"],["2024-07-25T17:18:05.010000"],["2024-07-25T17:18:06.010000"],["2024-07-25T17:18:07.010000"],["2024-07-25T17:18:08.010000"],["2024-07-25T17:18:09.010000"],["2024-07-25T17:18:10.010000"],["2024-07-25T17:18:11.010000"],["2024-07-25T17:18:12.010000"],["2024-07-25T17:18:13.010000"],["2024-07-25T17:18:14.010000"],["2024-07-25T17:18:15.010000"],["2024-07-25T17:18:16.010000"],["2024-07-25T17:18:17.010000"],["2024-07-25T17:18:18.010000"],["2024-07-25T17:18:19.010000"],["2024-07-25T17:18:20.010000"],["2024-07-25T17:18:21.010000"],["2024-07-25T17:18:22.010000"],["2024-07-25T17:18:23.010000"],["2024-07-25T17:18:24.010000"],["2024-07-25T17:18:25.010000"],["2024-07-25T17:18:26.010000"],["2024-07-25T17:18:27.010000"],["2024-07-25T17:18:28.010000"],["2024-07-25T17:18:29.010000"],["2024-07-25T17:18:30.010000"],["2024-07-25T17:18:31.010000"],["2024-07-25T17:18:32.010000"],["2024-07-25T17:18:33.010000"],["2024-07-25T17:18:34.010000"],["2024-07-25T17:18:35.010000"],["2024-07-25T17:18:36.010000"],["2024-07-25T17:18:37.010000"],["2024-07-25T17:18:38.010000"],["2024-07-25T17:18:39.010000"],["2024-07-25T17:18:40.010000"],["2024-07-25T17:18:41.010000"],["2024-07-25T17:18:42.010000"],["2024-07-25T17:18:43.010000"],["2024-07-25T17:18:44.010000"],["2024-07-25T17:18:45.010000"],["2024-07-25T17:18:46.010000"],["2024-07-25T17:18:47.010000"],["2024-07-25T17:18:48.010000"],["2024-07-25T17:18:49.010000"],["2024-07-25T17:18:50.010000"],["2024-07-25T17:18:51.010000"],["2024-07-25T17:18:52.010000"],["2024-07-25T17:18:53.010000"],["2024-07-25T17:18:54.010000"],["2024-07-25T17:18:55.010000"],["2024-07-25T17:18:56.010000"],["2024-07-25T17:18:57.010000"],["2024-07-25T17:18:58.010000"],["2024-07-25T17:18:59.010000"],["2024-07-25T17:19:00.010000"],["2024-07-25T17:19:01.010000"],["2024-07-25T17:19:02.010000"],["2024-07-25T17:19:03.010000"],["2024-07-25T17:19:04.010000"],["2024-07-25T17:19:05.010000"],["2024-07-25T17:19:06.010000"],["2024-07-25T17:19:07.010000"],["2024-07-25T17:19:08.010000"],["2024-07-25T17:19:09.010000"],["2024-07-25T17:19:10.010000"],["2024-07-25T17:19:11.010000"],["2024-07-25T17:19:12.010000"],["2024-07-25T17:19:13.010000"],["2024-07-25T17:19:14.010000"],["2024-07-25T17:19:15.010000"],["2024-07-25T17:19:16.010000"],["2024-07-25T17:19:17.010000"],["2024-07-25T17:19:18.010000"],["2024-07-25T17:19:19.010000"],["2024-07-25T17:19:20.010000"],["2024-07-25T17:19:21.010000"],["2024-07-25T17:19:22.010000"],["2024-07-25T17:19:23.010000"],["2024-07-25T17:19:24.010000"],["2024-07-25T17:19:25.010000"],["2024-07-25T17:19:26.010000"],["2024-07-25T17:19:27.010000"],["2024-07-25T17:19:28.010000"],["2024-07-25T17:19:29.010000"],["2024-07-25T17:19:30.010000"],["2024-07-25T17:19:31.010000"],["2024-07-25T17:19:32.010000"],["2024-07-25T17:19:33.010000"],["2024-07-25T17:19:34.010000"],["2024-07-25T17:19:35.010000"],["2024-07-25T17:19:36.010000"],["2024-07-25T17:19:37.010000"],["2024-07-25T17:19:38.010000"],["2024-07-25T17:19:39.010000"],["2024-07-25T17:19:40.010000"],["2024-07-25T17:19:41.010000"],["2024-07-25T17:19:42.010000"],["2024-07-25T17:19:43.010000"],["2024-07-25T17:19:44.010000"],["2024-07-25T17:19:45.010000"],["2024-07-25T17:19:46.010000"],["2024-07-25T17:19:47.010000"],["2024-07-25T17:19:48.010000"],["2024-07-25T17:19:49.010000"],["2024-07-25T17:19:50.010000"],["2024-07-25T17:19:51.010000"],["2024-07-25T17:19:52.010000"],["2024-07-25T17:19:53.010000"],["2024-07-25T17:19:54.010000"],["2024-07-25T17:19:55.010000"],["2024-07-25T17:19:56.010000"],["2024-07-25T17:19:57.010000"],["2024-07-25T17:19:58.010000"],["2024-07-25T17:19:59.010000"],["2024-07-25T17:20:00.010000"],["2024-07-25T17:20:01.010000"],["2024-07-25T17:20:02.010000"],["2024-07-25T17:20:03.010000"],["2024-07-25T17:20:04.010000"],["2024-07-25T17:20:05.010000"],["2024-07-25T17:20:06.010000"],["2024-07-25T17:20:07.010000"],["2024-07-25T17:20:08.010000"],["2024-07-25T17:20:09.010000"],["2024-07-25T17:20:10.010000"],["2024-07-25T17:20:11.010000"],["2024-07-25T17:20:12.010000"],["2024-07-25T17:20:13.010000"],["2024-07-25T17:20:14.010000"],["2024-07-25T17:20:15.010000"],["2024-07-25T17:20:16.010000"],["2024-07-25T17:20:17.010000"],["2024-07-25T17:20:18.010000"],["2024-07-25T17:20:19.010000"],["2024-07-25T17:20:20.010000"],["2024-07-25T17:20:21.010000"],["2024-07-25T17:20:22.010000"],["2024-07-25T17:20:23.010000"],["2024-07-25T17:20:24.010000"],["2024-07-25T17:20:25.010000"],["2024-07-25T17:20:26.010000"],["2024-07-25T17:20:27.010000"],["2024-07-25T17:20:28.010000"],["2024-07-25T17:20:29.010000"],["2024-07-25T17:20:30.010000"],["2024-07-25T17:20:31.010000"],["2024-07-25T17:20:32.010000"],["2024-07-25T17:20:33.010000"],["2024-07-25T17:20:34.010000"],["2024-07-25T17:20:35.010000"],["2024-07-25T17:20:36.010000"],["2024-07-25T17:20:37.010000"],["2024-07-25T17:20:38.010000"],["2024-07-25T17:20:39.010000"],["2024-07-25T17:20:40.010000"],["2024-07-25T17:20:41.010000"],["2024-07-25T17:20:42.010000"],["2024-07-25T17:20:43.010000"],["2024-07-25T17:20:44.010000"],["2024-07-25T17:20:45.010000"],["2024-07-25T17:20:46.010000"],["2024-07-25T17:20:47.010000"],["2024-07-25T17:20:48.010000"],["2024-07-25T17:20:49.010000"],["2024-07-25T17:20:50.010000"],["2024-07-25T17:20:51.010000"],["2024-07-25T17:20:52.010000"],["2024-07-25T17:20:53.010000"],["2024-07-25T17:20:54.010000"],["2024-07-25T17:20:55.010000"],["2024-07-25T17:20:56.010000"],["2024-07-25T17:20:57.010000"],["2024-07-25T17:20:58.010000"],["2024-07-25T17:20:59.010000"],["2024-07-25T17:21:00.010000"],["2024-07-25T17:21:01.010000"],["2024-07-25T17:21:02.010000"],["2024-07-25T17:21:03.010000"],["2024-07-25T17:21:04.010000"],["2024-07-25T17:21:05.010000"],["2024-07-25T17:21:06.010000"],["2024-07-25T17:21:07.010000"],["2024-07-25T17:21:08.010000"],["2024-07-25T17:21:09.010000"],["2024-07-25T17:21:10.010000"],["2024-07-25T17:21:11.010000"],["2024-07-25T17:21:12.010000"],["2024-07-25T17:21:13.010000"],["2024-07-25T17:21:14.010000"],["2024-07-25T17:21:15.010000"],["2024-07-25T17:21:16.010000"],["2024-07-25T17:21:17.010000"],["2024-07-25T17:21:18.010000"],["2024-07-25T17:21:19.010000"],["2024-07-25T17:21:20.010000"],["2024-07-25T17:21:21.010000"],["2024-07-25T17:21:22.010000"],["2024-07-25T17:21:23.010000"],["2024-07-25T17:21:24.010000"],["2024-07-25T17:21:25.010000"],["2024-07-25T17:21:26.010000"],["2024-07-25T17:21:27.010000"],["2024-07-25T17:21:28.010000"],["2024-07-25T17:21:29.010000"],["2024-07-25T17:21:30.010000"],["2024-07-25T17:21:31.010000"],["2024-07-25T17:21:32.010000"],["2024-07-25T17:21:33.010000"],["2024-07-25T17:21:34.010000"],["2024-07-25T17:21:35.010000"],["2024-07-25T17:21:36.010000"],["2024-07-25T17:21:37.010000"],["2024-07-25T17:21:38.010000"],["2024-07-25T17:21:39.010000"],["2024-07-25T17:21:40.010000"],["2024-07-25T17:21:41.010000"],["2024-07-25T17:21:42.010000"],["2024-07-25T17:21:43.010000"],["2024-07-25T17:21:44.010000"],["2024-07-25T17:21:45.010000"],["2024-07-25T17:21:46.010000"],["2024-07-25T17:21:47.010000"],["2024-07-25T17:21:48.010000"],["2024-07-25T17:21:49.010000"],["2024-07-25T17:21:50.010000"],["2024-07-25T17:21:51.010000"],["2024-07-25T17:21:52.010000"],["2024-07-25T17:21:53.010000"],["2024-07-25T17:21:54.010000"],["2024-07-25T17:21:55.010000"],["2024-07-25T17:21:56.010000"],["2024-07-25T17:21:57.010000"],["2024-07-25T17:21:58.010000"],["2024-07-25T17:21:59.010000"],["2024-07-25T17:22:00.010000"],["2024-07-25T17:22:01.010000"],["2024-07-25T17:22:02.010000"],["2024-07-25T17:22:03.010000"],["2024-07-25T17:22:04.010000"],["2024-07-25T17:22:05.010000"],["2024-07-25T17:22:06.010000"],["2024-07-25T17:22:07.010000"],["2024-07-25T17:22:08.010000"],["2024-07-25T17:22:09.010000"],["2024-07-25T17:22:10.010000"],["2024-07-25T17:22:11.010000"],["2024-07-25T17:22:12.010000"],["2024-07-25T17:22:13.010000"],["2024-07-25T17:22:14.010000"],["2024-07-25T17:22:15.010000"],["2024-07-25T17:22:16.010000"],["2024-07-25T17:22:17.010000"],["2024-07-25T17:22:18.010000"],["2024-07-25T17:22:19.010000"],["2024-07-25T17:22:20.010000"],["2024-07-25T17:22:21.010000"],["2024-07-25T17:22:22.010000"],["2024-07-25T17:22:23.010000"],["2024-07-25T17:22:24.010000"],["2024-07-25T17:22:25.010000"],["2024-07-25T17:22:26.010000"],["2024-07-25T17:22:27.010000"],["2024-07-25T17:22:28.010000"],["2024-07-25T17:22:29.010000"],["2024-07-25T17:22:30.010000"],["2024-07-25T17:22:31.010000"],["2024-07-25T17:22:32.010000"],["2024-07-25T17:22:33.010000"],["2024-07-25T17:22:34.010000"],["2024-07-25T17:22:35.010000"],["2024-07-25T17:22:36.010000"],["2024-07-25T17:22:37.010000"],["2024-07-25T17:22:38.010000"],["2024-07-25T17:22:39.010000"],["2024-07-25T17:22:40.010000"],["2024-07-25T17:22:41.010000"],["2024-07-25T17:22:42.010000"],["2024-07-25T17:22:43.010000"],["2024-07-25T17:22:44.010000"],["2024-07-25T17:22:45.010000"],["2024-07-25T17:22:46.010000"],["2024-07-25T17:22:47.010000"],["2024-07-25T17:22:48.010000"],["2024-07-25T17:22:49.010000"],["2024-07-25T17:22:50.010000"],["2024-07-25T17:22:51.010000"],["2024-07-25T17:22:52.010000"],["2024-07-25T17:22:53.010000"],["2024-07-25T17:22:54.010000"],["2024-07-25T17:22:55.010000"],["2024-07-25T17:22:56.010000"],["2024-07-25T17:22:57.010000"],["2024-07-25T17:22:58.010000"],["2024-07-25T17:22:59.010000"],["2024-07-25T17:23:00.010000"],["2024-07-25T17:23:01.010000"],["2024-07-25T17:23:02.010000"],["2024-07-25T17:23:03.010000"],["2024-07-25T17:23:04.010000"],["2024-07-25T17:23:05.010000"],["2024-07-25T17:23:06.010000"],["2024-07-25T17:23:07.010000"],["2024-07-25T17:23:08.010000"],["2024-07-25T17:23:09.010000"],["2024-07-25T17:23:10.010000"],["2024-07-25T17:23:11.010000"],["2024-07-25T17:23:12.010000"],["2024-07-25T17:23:13.010000"],["2024-07-25T17:23:14.010000"],["2024-07-25T17:23:15.010000"],["2024-07-25T17:23:16.010000"],["2024-07-25T17:23:17.010000"],["2024-07-25T17:23:18.010000"],["2024-07-25T17:23:19.010000"],["2024-07-25T17:23:20.010000"],["2024-07-25T17:23:21.010000"],["2024-07-25T17:23:22.010000"],["2024-07-25T17:23:23.010000"],["2024-07-25T17:23:24.010000"],["2024-07-25T17:23:25.010000"],["2024-07-25T17:23:26.010000"],["2024-07-25T17:23:27.010000"],["2024-07-25T17:23:28.010000"],["2024-07-25T17:23:29.010000"],["2024-07-25T17:23:30.010000"],["2024-07-25T17:23:31.010000"],["2024-07-25T17:23:32.010000"],["2024-07-25T17:23:33.010000"],["2024-07-25T17:23:34.010000"],["2024-07-25T17:23:35.010000"],["2024-07-25T17:23:36.010000"],["2024-07-25T17:23:37.010000"],["2024-07-25T17:23:38.010000"],["2024-07-25T17:23:39.010000"],["2024-07-25T17:23:40.010000"],["2024-07-25T17:23:41.010000"],["2024-07-25T17:23:42.010000"],["2024-07-25T17:23:43.010000"],["2024-07-25T17:23:44.010000"],["2024-07-25T17:23:45.010000"],["2024-07-25T17:23:46.010000"],["2024-07-25T17:23:47.010000"],["2024-07-25T17:23:48.010000"],["2024-07-25T17:23:49.010000"],["2024-07-25T17:23:50.010000"],["2024-07-25T17:23:51.010000"],["2024-07-25T17:23:52.010000"],["2024-07-25T17:23:53.010000"],["2024-07-25T17:23:54.010000"],["2024-07-25T17:23:55.010000"],["2024-07-25T17:23:56.010000"],["2024-07-25T17:23:57.010000"],["2024-07-25T17:23:58.010000"],["2024-07-25T17:23:59.010000"],["2024-07-25T17:24:00.010000"],["2024-07-25T17:24:01.010000"],["2024-07-25T17:24:02.010000"],["2024-07-25T17:24:03.010000"],["2024-07-25T17:24:04.010000"],["2024-07-25T17:24:05.010000"],["2024-07-25T17:24:06.010000"],["2024-07-25T17:24:07.010000"],["2024-07-25T17:24:08.010000"],["2024-07-25T17:24:09.010000"],["2024-07-25T17:24:10.010000"],["2024-07-25T17:24:11.010000"],["2024-07-25T17:24:12.010000"],["2024-07-25T17:24:13.010000"],["2024-07-25T17:24:14.010000"],["2024-07-25T17:24:15.010000"],["2024-07-25T17:24:16.010000"],["2024-07-25T17:24:17.010000"],["2024-07-25T17:24:18.010000"],["2024-07-25T17:24:19.010000"],["2024-07-25T17:24:20.010000"],["2024-07-25T17:24:21.010000"],["2024-07-25T17:24:22.010000"],["2024-07-25T17:24:23.010000"],["2024-07-25T17:24:24.010000"],["2024-07-25T17:24:25.010000"],["2024-07-25T17:24:26.010000"],["2024-07-25T17:24:27.010000"],["2024-07-25T17:24:28.010000"],["2024-07-25T17:24:29.010000"],["2024-07-25T17:24:30.010000"],["2024-07-25T17:24:31.010000"],["2024-07-25T17:24:32.010000"],["2024-07-25T17:24:33.010000"],["2024-07-25T17:24:34.010000"],["2024-07-25T17:24:35.010000"],["2024-07-25T17:24:36.010000"],["2024-07-25T17:24:37.010000"],["2024-07-25T17:24:38.010000"],["2024-07-25T17:24:39.010000"],["2024-07-25T17:24:40.010000"],["2024-07-25T17:24:41.010000"],["2024-07-25T17:24:42.010000"],["2024-07-25T17:24:43.010000"],["2024-07-25T17:24:44.010000"],["2024-07-25T17:24:45.010000"],["2024-07-25T17:24:46.010000"],["2024-07-25T17:24:47.010000"],["2024-07-25T17:24:48.010000"],["2024-07-25T17:24:49.010000"],["2024-07-25T17:24:50.010000"],["2024-07-25T17:24:51.010000"],["2024-07-25T17:24:52.010000"],["2024-07-25T17:24:53.010000"],["2024-07-25T17:24:54.010000"],["2024-07-25T17:24:55.010000"],["2024-07-25T17:24:56.010000"],["2024-07-25T17:24:57.010000"],["2024-07-25T17:24:58.010000"],["2024-07-25T17:24:59.010000"],["2024-07-25T17:25:00.010000"],["2024-07-25T17:25:01.010000"],["2024-07-25T17:25:02.010000"],["2024-07-25T17:25:03.010000"],["2024-07-25T17:25:04.010000"],["2024-07-25T17:25:05.010000"],["2024-07-25T17:25:06.010000"],["2024-07-25T17:25:07.010000"],["2024-07-25T17:25:08.010000"],["2024-07-25T17:25:09.010000"],["2024-07-25T17:25:10.010000"],["2024-07-25T17:25:11.010000"],["2024-07-25T17:25:12.010000"],["2024-07-25T17:25:13.010000"],["2024-07-25T17:25:14.010000"],["2024-07-25T17:25:15.010000"],["2024-07-25T17:25:16.010000"],["2024-07-25T17:25:17.010000"],["2024-07-25T17:25:18.010000"],["2024-07-25T17:25:19.010000"],["2024-07-25T17:25:20.010000"],["2024-07-25T17:25:21.010000"],["2024-07-25T17:25:22.010000"],["2024-07-25T17:25:23.010000"],["2024-07-25T17:25:24.010000"],["2024-07-25T17:25:25.010000"],["2024-07-25T17:25:26.010000"],["2024-07-25T17:25:27.010000"],["2024-07-25T17:25:28.010000"],["2024-07-25T17:25:29.010000"],["2024-07-25T17:25:30.010000"],["2024-07-25T17:25:31.010000"],["2024-07-25T17:25:32.010000"],["2024-07-25T17:25:33.010000"],["2024-07-25T17:25:34.010000"],["2024-07-25T17:25:35.010000"],["2024-07-25T17:25:36.010000"],["2024-07-25T17:25:37.010000"],["2024-07-25T17:25:38.010000"],["2024-07-25T17:25:39.010000"],["2024-07-25T17:25:40.010000"],["2024-07-25T17:25:41.010000"],["2024-07-25T17:25:42.010000"],["2024-07-25T17:25:43.010000"],["2024-07-25T17:25:44.010000"],["2024-07-25T17:25:45.010000"],["2024-07-25T17:25:46.010000"],["2024-07-25T17:25:47.010000"],["2024-07-25T17:25:48.010000"],["2024-07-25T17:25:49.010000"],["2024-07-25T17:25:50.010000"],["2024-07-25T17:25:51.010000"],["2024-07-25T17:25:52.010000"],["2024-07-25T17:25:53.010000"],["2024-07-25T17:25:54.010000"],["2024-07-25T17:25:55.010000"],["2024-07-25T17:25:56.010000"],["2024-07-25T17:25:57.010000"],["2024-07-25T17:25:58.010000"],["2024-07-25T17:25:59.010000"],["2024-07-25T17:26:00.010000"],["2024-07-25T17:26:01.010000"],["2024-07-25T17:26:02.010000"],["2024-07-25T17:26:03.010000"],["2024-07-25T17:26:04.010000"],["2024-07-25T17:26:05.010000"],["2024-07-25T17:26:06.010000"],["2024-07-25T17:26:07.010000"],["2024-07-25T17:26:08.010000"],["2024-07-25T17:26:09.010000"],["2024-07-25T17:26:10.010000"],["2024-07-25T17:26:11.010000"],["2024-07-25T17:26:12.010000"],["2024-07-25T17:26:13.010000"],["2024-07-25T17:26:14.010000"],["2024-07-25T17:26:15.010000"],["2024-07-25T17:26:16.010000"],["2024-07-25T17:26:17.010000"],["2024-07-25T17:26:18.010000"],["2024-07-25T17:26:19.010000"],["2024-07-25T17:26:20.010000"],["2024-07-25T17:26:21.010000"],["2024-07-25T17:26:22.010000"],["2024-07-25T17:26:23.010000"],["2024-07-25T17:26:24.010000"],["2024-07-25T17:26:25.010000"],["2024-07-25T17:26:26.010000"],["2024-07-25T17:26:27.010000"],["2024-07-25T17:26:28.010000"],["2024-07-25T17:26:29.010000"],["2024-07-25T17:26:30.010000"],["2024-07-25T17:26:31.010000"],["2024-07-25T17:26:32.010000"],["2024-07-25T17:26:33.010000"],["2024-07-25T17:26:34.010000"],["2024-07-25T17:26:35.010000"],["2024-07-25T17:26:36.010000"],["2024-07-25T17:26:37.010000"],["2024-07-25T17:26:38.010000"],["2024-07-25T17:26:39.010000"],["2024-07-25T17:26:40.010000"],["2024-07-25T17:26:41.010000"],["2024-07-25T17:26:42.010000"],["2024-07-25T17:26:43.010000"],["2024-07-25T17:26:44.010000"],["2024-07-25T17:26:45.010000"],["2024-07-25T17:26:46.010000"],["2024-07-25T17:26:47.010000"],["2024-07-25T17:26:48.010000"],["2024-07-25T17:26:49.010000"],["2024-07-25T17:26:50.010000"],["2024-07-25T17:26:51.010000"],["2024-07-25T17:26:52.010000"],["2024-07-25T17:26:53.010000"],["2024-07-25T17:26:54.010000"],["2024-07-25T17:26:55.010000"],["2024-07-25T17:26:56.010000"],["2024-07-25T17:26:57.010000"],["2024-07-25T17:26:58.010000"],["2024-07-25T17:26:59.010000"],["2024-07-25T17:27:00.010000"],["2024-07-25T17:27:01.010000"],["2024-07-25T17:27:02.010000"],["2024-07-25T17:27:03.010000"],["2024-07-25T17:27:04.010000"],["2024-07-25T17:27:05.010000"],["2024-07-25T17:27:06.010000"],["2024-07-25T17:27:07.010000"],["2024-07-25T17:27:08.010000"],["2024-07-25T17:27:09.010000"],["2024-07-25T17:27:10.010000"],["2024-07-25T17:27:11.010000"],["2024-07-25T17:27:12.010000"],["2024-07-25T17:27:13.010000"],["2024-07-25T17:27:14.010000"],["2024-07-25T17:27:15.010000"],["2024-07-25T17:27:16.010000"],["2024-07-25T17:27:17.010000"],["2024-07-25T17:27:18.010000"],["2024-07-25T17:27:19.010000"],["2024-07-25T17:27:20.010000"],["2024-07-25T17:27:21.010000"],["2024-07-25T17:27:22.010000"],["2024-07-25T17:27:23.010000"],["2024-07-25T17:27:24.010000"],["2024-07-25T17:27:25.010000"],["2024-07-25T17:27:26.010000"],["2024-07-25T17:27:27.010000"],["2024-07-25T17:27:28.010000"],["2024-07-25T17:27:29.010000"],["2024-07-25T17:27:30.010000"],["2024-07-25T17:27:31.010000"],["2024-07-25T17:27:32.010000"],["2024-07-25T17:27:33.010000"],["2024-07-25T17:27:34.010000"],["2024-07-25T17:27:35.010000"],["2024-07-25T17:27:36.010000"],["2024-07-25T17:27:37.010000"],["2024-07-25T17:27:38.010000"],["2024-07-25T17:27:39.010000"],["2024-07-25T17:27:40.010000"],["2024-07-25T17:27:41.010000"],["2024-07-25T17:27:42.010000"],["2024-07-25T17:27:43.010000"],["2024-07-25T17:27:44.010000"],["2024-07-25T17:27:45.010000"],["2024-07-25T17:27:46.010000"],["2024-07-25T17:27:47.010000"],["2024-07-25T17:27:48.010000"],["2024-07-25T17:27:49.010000"],["2024-07-25T17:27:50.010000"],["2024-07-25T17:27:51.010000"],["2024-07-25T17:27:52.010000"],["2024-07-25T17:27:53.010000"],["2024-07-25T17:27:54.010000"],["2024-07-25T17:27:55.010000"],["2024-07-25T17:27:56.010000"],["2024-07-25T17:27:57.010000"],["2024-07-25T17:27:58.010000"],["2024-07-25T17:27:59.010000"],["2024-07-25T17:28:00.010000"],["2024-07-25T17:28:01.010000"],["2024-07-25T17:28:02.010000"],["2024-07-25T17:28:03.010000"],["2024-07-25T17:28:04.010000"],["2024-07-25T17:28:05.010000"],["2024-07-25T17:28:06.010000"],["2024-07-25T17:28:07.010000"],["2024-07-25T17:28:08.010000"],["2024-07-25T17:28:09.010000"],["2024-07-25T17:28:10.010000"],["2024-07-25T17:28:11.010000"],["2024-07-25T17:28:12.010000"],["2024-07-25T17:28:13.010000"],["2024-07-25T17:28:14.010000"],["2024-07-25T17:28:15.010000"],["2024-07-25T17:28:16.010000"],["2024-07-25T17:28:17.010000"],["2024-07-25T17:28:18.010000"],["2024-07-25T17:28:19.010000"],["2024-07-25T17:28:20.010000"],["2024-07-25T17:28:21.010000"],["2024-07-25T17:28:22.010000"],["2024-07-25T17:28:23.010000"],["2024-07-25T17:28:24.010000"],["2024-07-25T17:28:25.010000"],["2024-07-25T17:28:26.010000"],["2024-07-25T17:28:27.010000"],["2024-07-25T17:28:28.010000"],["2024-07-25T17:28:29.010000"],["2024-07-25T17:28:30.010000"],["2024-07-25T17:28:31.010000"],["2024-07-25T17:28:32.010000"],["2024-07-25T17:28:33.010000"],["2024-07-25T17:28:34.010000"],["2024-07-25T17:28:35.010000"],["2024-07-25T17:28:36.010000"],["2024-07-25T17:28:37.010000"],["2024-07-25T17:28:38.010000"],["2024-07-25T17:28:39.010000"],["2024-07-25T17:28:40.010000"],["2024-07-25T17:28:41.010000"],["2024-07-25T17:28:42.010000"],["2024-07-25T17:28:43.010000"],["2024-07-25T17:28:44.010000"],["2024-07-25T17:28:45.010000"],["2024-07-25T17:28:46.010000"],["2024-07-25T17:28:47.010000"],["2024-07-25T17:28:48.010000"],["2024-07-25T17:28:49.010000"],["2024-07-25T17:28:50.010000"],["2024-07-25T17:28:51.010000"],["2024-07-25T17:28:52.010000"],["2024-07-25T17:28:53.010000"],["2024-07-25T17:28:54.010000"],["2024-07-25T17:28:55.010000"],["2024-07-25T17:28:56.010000"],["2024-07-25T17:28:57.010000"],["2024-07-25T17:28:58.010000"],["2024-07-25T17:28:59.010000"],["2024-07-25T17:29:00.010000"],["2024-07-25T17:29:01.010000"],["2024-07-25T17:29:02.010000"],["2024-07-25T17:29:03.010000"],["2024-07-25T17:29:04.010000"],["2024-07-25T17:29:05.010000"],["2024-07-25T17:29:06.010000"],["2024-07-25T17:29:07.010000"],["2024-07-25T17:29:08.010000"],["2024-07-25T17:29:09.010000"],["2024-07-25T17:29:10.010000"],["2024-07-25T17:29:11.010000"],["2024-07-25T17:29:12.010000"],["2024-07-25T17:29:13.010000"],["2024-07-25T17:29:14.010000"],["2024-07-25T17:29:15.010000"],["2024-07-25T17:29:16.010000"],["2024-07-25T17:29:17.010000"],["2024-07-25T17:29:18.010000"],["2024-07-25T17:29:19.010000"],["2024-07-25T17:29:20.010000"],["2024-07-25T17:29:21.010000"],["2024-07-25T17:29:22.010000"],["2024-07-25T17:29:23.010000"],["2024-07-25T17:29:24.010000"],["2024-07-25T17:29:25.010000"],["2024-07-25T17:29:26.010000"],["2024-07-25T17:29:27.010000"],["2024-07-25T17:29:28.010000"],["2024-07-25T17:29:29.010000"],["2024-07-25T17:29:30.010000"],["2024-07-25T17:29:31.010000"],["2024-07-25T17:29:32.010000"],["2024-07-25T17:29:33.010000"],["2024-07-25T17:29:34.010000"],["2024-07-25T17:29:35.010000"],["2024-07-25T17:29:36.010000"],["2024-07-25T17:29:37.010000"],["2024-07-25T17:29:38.010000"],["2024-07-25T17:29:39.010000"],["2024-07-25T17:29:40.010000"],["2024-07-25T17:29:41.010000"],["2024-07-25T17:29:42.010000"],["2024-07-25T17:29:43.010000"],["2024-07-25T17:29:44.010000"],["2024-07-25T17:29:45.010000"],["2024-07-25T17:29:46.010000"],["2024-07-25T17:29:47.010000"],["2024-07-25T17:29:48.010000"],["2024-07-25T17:29:49.010000"],["2024-07-25T17:29:50.010000"],["2024-07-25T17:29:51.010000"],["2024-07-25T17:29:52.010000"],["2024-07-25T17:29:53.010000"],["2024-07-25T17:29:54.010000"],["2024-07-25T17:29:55.010000"],["2024-07-25T17:29:56.010000"],["2024-07-25T17:29:57.010000"],["2024-07-25T17:29:58.010000"],["2024-07-25T17:29:59.010000"],["2024-07-25T17:30:00.010000"],["2024-07-25T17:30:01.010000"],["2024-07-25T17:30:02.010000"],["2024-07-25T17:30:03.010000"],["2024-07-25T17:30:04.010000"],["2024-07-25T17:30:05.010000"],["2024-07-25T17:30:06.010000"],["2024-07-25T17:30:07.010000"],["2024-07-25T17:30:08.010000"],["2024-07-25T17:30:09.010000"],["2024-07-25T17:30:10.010000"],["2024-07-25T17:30:11.010000"],["2024-07-25T17:30:12.010000"],["2024-07-25T17:30:13.010000"],["2024-07-25T17:30:14.010000"],["2024-07-25T17:30:15.010000"],["2024-07-25T17:30:16.010000"],["2024-07-25T17:30:17.010000"],["2024-07-25T17:30:18.010000"],["2024-07-25T17:30:19.010000"],["2024-07-25T17:30:20.010000"],["2024-07-25T17:30:21.010000"],["2024-07-25T17:30:22.010000"],["2024-07-25T17:30:23.010000"],["2024-07-25T17:30:24.010000"],["2024-07-25T17:30:25.010000"],["2024-07-25T17:30:26.010000"],["2024-07-25T17:30:27.010000"],["2024-07-25T17:30:28.010000"],["2024-07-25T17:30:29.010000"],["2024-07-25T17:30:30.010000"],["2024-07-25T17:30:31.010000"],["2024-07-25T17:30:32.010000"],["2024-07-25T17:30:33.010000"],["2024-07-25T17:30:34.010000"],["2024-07-25T17:30:35.010000"],["2024-07-25T17:30:36.010000"],["2024-07-25T17:30:37.010000"],["2024-07-25T17:30:38.010000"],["2024-07-25T17:30:39.010000"],["2024-07-25T17:30:40.010000"],["2024-07-25T17:30:41.010000"],["2024-07-25T17:30:42.010000"],["2024-07-25T17:30:43.010000"],["2024-07-25T17:30:44.010000"],["2024-07-25T17:30:45.010000"],["2024-07-25T17:30:46.010000"],["2024-07-25T17:30:47.010000"],["2024-07-25T17:30:48.010000"],["2024-07-25T17:30:49.010000"],["2024-07-25T17:30:50.010000"],["2024-07-25T17:30:51.010000"],["2024-07-25T17:30:52.010000"],["2024-07-25T17:30:53.010000"],["2024-07-25T17:30:54.010000"],["2024-07-25T17:30:55.010000"],["2024-07-25T17:30:56.010000"],["2024-07-25T17:30:57.010000"],["2024-07-25T17:30:58.010000"],["2024-07-25T17:30:59.010000"],["2024-07-25T17:31:00.010000"],["2024-07-25T17:31:01.010000"],["2024-07-25T17:31:02.010000"],["2024-07-25T17:31:03.010000"],["2024-07-25T17:31:04.010000"],["2024-07-25T17:31:05.010000"],["2024-07-25T17:31:06.010000"],["2024-07-25T17:31:07.010000"],["2024-07-25T17:31:08.010000"],["2024-07-25T17:31:09.010000"],["2024-07-25T17:31:10.010000"],["2024-07-25T17:31:11.010000"],["2024-07-25T17:31:12.010000"],["2024-07-25T17:31:13.010000"],["2024-07-25T17:31:14.010000"],["2024-07-25T17:31:15.010000"],["2024-07-25T17:31:16.010000"],["2024-07-25T17:31:17.010000"],["2024-07-25T17:31:18.010000"],["2024-07-25T17:31:19.010000"],["2024-07-25T17:31:20.010000"],["2024-07-25T17:31:21.010000"],["2024-07-25T17:31:22.010000"],["2024-07-25T17:31:23.010000"],["2024-07-25T17:31:24.010000"],["2024-07-25T17:31:25.010000"],["2024-07-25T17:31:26.010000"],["2024-07-25T17:31:27.010000"],["2024-07-25T17:31:28.010000"],["2024-07-25T17:31:29.010000"],["2024-07-25T17:31:30.010000"],["2024-07-25T17:31:31.010000"],["2024-07-25T17:31:32.010000"],["2024-07-25T17:31:33.010000"],["2024-07-25T17:31:34.010000"],["2024-07-25T17:31:35.010000"],["2024-07-25T17:31:36.010000"],["2024-07-25T17:31:37.010000"],["2024-07-25T17:31:38.010000"],["2024-07-25T17:31:39.010000"],["2024-07-25T17:31:40.010000"],["2024-07-25T17:31:41.010000"],["2024-07-25T17:31:42.010000"],["2024-07-25T17:31:43.010000"],["2024-07-25T17:31:44.010000"],["2024-07-25T17:31:45.010000"],["2024-07-25T17:31:46.010000"],["2024-07-25T17:31:47.010000"],["2024-07-25T17:31:48.010000"],["2024-07-25T17:31:49.010000"],["2024-07-25T17:31:50.010000"],["2024-07-25T17:31:51.010000"],["2024-07-25T17:31:52.010000"],["2024-07-25T17:31:53.010000"],["2024-07-25T17:31:54.010000"],["2024-07-25T17:31:55.010000"],["2024-07-25T17:31:56.010000"],["2024-07-25T17:31:57.010000"],["2024-07-25T17:31:58.010000"],["2024-07-25T17:31:59.010000"],["2024-07-25T17:32:00.010000"],["2024-07-25T17:32:01.010000"],["2024-07-25T17:32:02.010000"],["2024-07-25T17:32:03.010000"],["2024-07-25T17:32:04.010000"],["2024-07-25T17:32:05.010000"],["2024-07-25T17:32:06.010000"],["2024-07-25T17:32:07.010000"],["2024-07-25T17:32:08.010000"],["2024-07-25T17:32:09.010000"],["2024-07-25T17:32:10.010000"],["2024-07-25T17:32:11.010000"],["2024-07-25T17:32:12.010000"],["2024-07-25T17:32:13.010000"],["2024-07-25T17:32:14.010000"],["2024-07-25T17:32:15.010000"],["2024-07-25T17:32:16.010000"],["2024-07-25T17:32:17.010000"],["2024-07-25T17:32:18.010000"],["2024-07-25T17:32:19.010000"],["2024-07-25T17:32:20.010000"],["2024-07-25T17:32:21.010000"],["2024-07-25T17:32:22.010000"],["2024-07-25T17:32:23.010000"],["2024-07-25T17:32:24.010000"],["2024-07-25T17:32:25.010000"],["2024-07-25T17:32:26.010000"],["2024-07-25T17:32:27.010000"],["2024-07-25T17:32:28.010000"],["2024-07-25T17:32:29.010000"],["2024-07-25T17:32:30.010000"],["2024-07-25T17:32:31.010000"],["2024-07-25T17:32:32.010000"],["2024-07-25T17:32:33.010000"],["2024-07-25T17:32:34.010000"],["2024-07-25T17:32:35.010000"],["2024-07-25T17:32:36.010000"],["2024-07-25T17:32:37.010000"],["2024-07-25T17:32:38.010000"],["2024-07-25T17:32:39.010000"],["2024-07-25T17:32:40.010000"],["2024-07-25T17:32:41.010000"],["2024-07-25T17:32:42.010000"],["2024-07-25T17:32:43.010000"],["2024-07-25T17:32:44.010000"],["2024-07-25T17:32:45.010000"],["2024-07-25T17:32:46.010000"],["2024-07-25T17:32:47.010000"],["2024-07-25T17:32:48.010000"],["2024-07-25T17:32:49.010000"],["2024-07-25T17:32:50.010000"],["2024-07-25T17:32:51.010000"],["2024-07-25T17:32:52.010000"],["2024-07-25T17:32:53.010000"],["2024-07-25T17:32:54.010000"],["2024-07-25T17:32:55.010000"],["2024-07-25T17:32:56.010000"],["2024-07-25T17:32:57.010000"],["2024-07-25T17:32:58.010000"],["2024-07-25T17:32:59.010000"],["2024-07-25T17:33:00.010000"],["2024-07-25T17:33:01.010000"],["2024-07-25T17:33:02.010000"],["2024-07-25T17:33:03.010000"],["2024-07-25T17:33:04.010000"],["2024-07-25T17:33:05.010000"],["2024-07-25T17:33:06.010000"],["2024-07-25T17:33:07.010000"],["2024-07-25T17:33:08.010000"],["2024-07-25T17:33:09.010000"],["2024-07-25T17:33:10.010000"],["2024-07-25T17:33:11.010000"],["2024-07-25T17:33:12.010000"],["2024-07-25T17:33:13.010000"],["2024-07-25T17:33:14.010000"],["2024-07-25T17:33:15.010000"],["2024-07-25T17:33:16.010000"],["2024-07-25T17:33:17.010000"],["2024-07-25T17:33:18.010000"],["2024-07-25T17:33:19.010000"],["2024-07-25T17:33:20.010000"],["2024-07-25T17:33:21.010000"],["2024-07-25T17:33:22.010000"],["2024-07-25T17:33:23.010000"],["2024-07-25T17:33:24.010000"],["2024-07-25T17:33:25.010000"],["2024-07-25T17:33:26.010000"],["2024-07-25T17:33:27.010000"],["2024-07-25T17:33:28.010000"],["2024-07-25T17:33:29.010000"],["2024-07-25T17:33:30.010000"],["2024-07-25T17:33:31.010000"],["2024-07-25T17:33:32.010000"],["2024-07-25T17:33:33.010000"],["2024-07-25T17:33:34.010000"],["2024-07-25T17:33:35.010000"],["2024-07-25T17:33:36.010000"],["2024-07-25T17:33:37.010000"],["2024-07-25T17:33:38.010000"],["2024-07-25T17:33:39.010000"],["2024-07-25T17:33:40.010000"],["2024-07-25T17:33:41.010000"],["2024-07-25T17:33:42.010000"],["2024-07-25T17:33:43.010000"],["2024-07-25T17:33:44.010000"],["2024-07-25T17:33:45.010000"],["2024-07-25T17:33:46.010000"],["2024-07-25T17:33:47.010000"],["2024-07-25T17:33:48.010000"],["2024-07-25T17:33:49.010000"],["2024-07-25T17:33:50.010000"],["2024-07-25T17:33:51.010000"],["2024-07-25T17:33:52.010000"],["2024-07-25T17:33:53.010000"],["2024-07-25T17:33:54.010000"],["2024-07-25T17:33:55.010000"],["2024-07-25T17:33:56.010000"],["2024-07-25T17:33:57.010000"],["2024-07-25T17:33:58.010000"],["2024-07-25T17:33:59.010000"],["2024-07-25T17:34:00.010000"],["2024-07-25T17:34:01.010000"],["2024-07-25T17:34:02.010000"],["2024-07-25T17:34:03.010000"],["2024-07-25T17:34:04.010000"],["2024-07-25T17:34:05.010000"],["2024-07-25T17:34:06.010000"],["2024-07-25T17:34:07.010000"],["2024-07-25T17:34:08.010000"],["2024-07-25T17:34:09.010000"],["2024-07-25T17:34:10.010000"],["2024-07-25T17:34:11.010000"],["2024-07-25T17:34:12.010000"],["2024-07-25T17:34:13.010000"],["2024-07-25T17:34:14.010000"],["2024-07-25T17:34:15.010000"],["2024-07-25T17:34:16.010000"],["2024-07-25T17:34:17.010000"],["2024-07-25T17:34:18.010000"],["2024-07-25T17:34:19.010000"],["2024-07-25T17:34:20.010000"],["2024-07-25T17:34:21.010000"],["2024-07-25T17:34:22.010000"],["2024-07-25T17:34:23.010000"],["2024-07-25T17:34:24.010000"],["2024-07-25T17:34:25.010000"],["2024-07-25T17:34:26.010000"],["2024-07-25T17:34:27.010000"],["2024-07-25T17:34:28.010000"],["2024-07-25T17:34:29.010000"],["2024-07-25T17:34:30.010000"],["2024-07-25T17:34:31.010000"],["2024-07-25T17:34:32.010000"],["2024-07-25T17:34:33.010000"],["2024-07-25T17:34:34.010000"],["2024-07-25T17:34:35.010000"],["2024-07-25T17:34:36.010000"],["2024-07-25T17:34:37.010000"],["2024-07-25T17:34:38.010000"],["2024-07-25T17:34:39.010000"],["2024-07-25T17:34:40.010000"],["2024-07-25T17:34:41.010000"],["2024-07-25T17:34:42.010000"],["2024-07-25T17:34:43.010000"],["2024-07-25T17:34:44.010000"],["2024-07-25T17:34:45.010000"],["2024-07-25T17:34:46.010000"],["2024-07-25T17:34:47.010000"],["2024-07-25T17:34:48.010000"],["2024-07-25T17:34:49.010000"],["2024-07-25T17:34:50.010000"],["2024-07-25T17:34:51.010000"],["2024-07-25T17:34:52.010000"],["2024-07-25T17:34:53.010000"],["2024-07-25T17:34:54.010000"],["2024-07-25T17:34:55.010000"],["2024-07-25T17:34:56.010000"],["2024-07-25T17:34:57.010000"],["2024-07-25T17:34:58.010000"],["2024-07-25T17:34:59.010000"],["2024-07-25T17:35:00.010000"],["2024-07-25T17:35:01.010000"],["2024-07-25T17:35:02.010000"],["2024-07-25T17:35:03.010000"],["2024-07-25T17:35:04.010000"],["2024-07-25T17:35:05.010000"]],"hovertemplate":"color=6\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"6","line":{"color":"#FF6692","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"6","scene":"scene","showlegend":true,"x":[295.2489115325734,294.5683055277914,294.05016480525956,293.8184319008142,294.4729614434764,294.39762346213683,294.3384884460829,295.28512408491224,295.98131415853277,296.1061659264378,296.2864613067359,295.5531347678043,296.18854276882485,296.5330636249855,296.7723230905831,296.3530188864097,296.69014900689945,296.6737408582121,296.9245143691078,296.65410306630656,297.64033521385863,297.57705212337896,297.89572233101353,296.9880893044174,296.26609671115875,296.97461829707026,296.8266980238259,297.07151284767315,296.4977386328392,297.0320880631916,297.6158699062653,297.3570652254857,297.18444098951295,296.3431147444062,296.53646680992097,297.3238275987096,298.07734586205333,297.6804323163815,297.9466005647555,298.3104372131638,298.44400407001376,299.2536605158821,299.6038135890849,300.09312898339704,299.95888065267354,299.438064401038,299.9369777399115,300.7601086627692,300.04749305546284,299.9598385072313,299.1021699332632,298.3804244273342,298.78009946271777,299.0467940317467,299.6269678520039,298.74855086160824,298.8803654606454,299.3880138252862,300.29220764664933,299.47574084671214,298.76530611747876,298.7150733098388,299.457819850184,299.2222219812684,298.2998404148966,297.4071425618604,297.3420882113278,298.08933724230155,299.07751590106636,298.45396196842194,297.6031730235554,298.49288442824036,297.83261173404753,298.2724265749566,299.14731613965705,299.28357475437224,299.91587920021266,300.57143125729635,301.0108742406592,301.4394314372912,300.6341679217294,300.2816830431111,300.07191216759384,300.63475755462423,300.5922238631174,300.8178963167593,300.8426177529618,300.26378991035745,299.52870629541576,299.7584143499844,300.1575468117371,300.23788242042065,300.94556934712455,300.819540402852,300.39392277784646,299.4076542519033,299.06328574800864,299.09218400204554,299.9882096303627,299.85911509161815,300.5565788880922,300.47155230585486,299.5467352569103,299.58729212218896,299.7642197078094,299.97652780264616,300.4078972907737,300.4808861766942,299.7725248662755,299.8281615264714,299.313417670317,300.0394497215748,299.7155495285988,298.7902069184929,299.53711106302217,299.4938357025385,298.75120237935334,298.9101062482223,299.7378792804666,300.60205776197836,300.3272091955878,299.5715622124262,298.8149066409096,298.72993678506464,298.8871576935053,299.6406423333101,298.6867436533794,299.00060838693753,298.8001052783802,298.4126185053028,297.92565287742764,298.5902975597419,299.41525862319395,300.059730169829,300.95711363106966,301.9006280656904,302.73534703534096,302.97419326519594,302.5685527739115,302.0268397019245,302.45131633989513,303.40037254523486,302.5739498133771,303.2825632849708,304.27582468185574,304.4601024221629,304.07998922886327,304.01372862188146,304.19592726882547,304.71626824652776,304.3064204403199,304.96229463722557,305.4466183115728,305.1687137912959,304.668143956922,305.0935665438883,304.6688849744387,303.7309142933227,304.28613998321816,304.0425746734254,304.0227058022283,304.68986187689006,304.999757793732,304.81292058201507,303.95040989108384,303.77559809805825,304.4293853449635,303.55159593140706,303.01595774525777,303.0625726962462,303.7619781238027,303.3114685649052,302.4073416707106,302.9743506577797,302.0679990053177,303.05816823011264,302.3582591600716,303.1290804836899,302.17157897818834,302.4127355008386,303.19453063234687,303.35642989957705,303.11087489966303,303.536629750859,304.21730354009196,304.31933824159205,303.8065147222951,304.06496611749753,303.83648614026606,303.39417046913877,302.68194312462583,303.28729207627475,302.73604909330606,301.9739251867868,301.3655919688754,302.34424841962755,301.6948768142611,301.09248923836276,301.46057519037277,302.0500284349546,302.58202529745176,301.6204536878504,302.5392633145675,302.17768874717876,302.2337689520791,302.7577251959592,303.2789750993252,303.17026924714446,302.3624689052813,301.8834315100685,301.2194707687013,301.45603199116886,301.47383424127474,301.5028493832797,301.0109968795441,300.19606397720054,299.97719647502527,299.83147622365505,299.16007055249065,299.08158172061667,298.7690602662042,299.5200245096348,300.0330384760164,300.88877456681803,301.14116408489645,301.6936389990151,301.3738142256625,300.60400038585067,300.87800791999325,301.0701592583209,300.8537189713679,300.1397323044948,299.56205370416865,299.17438704520464,299.1165467374958,299.87195514747873,299.45415196567774,298.8399537457153,298.44278499810025,297.47096005128697,296.7867955067195,296.8938015550375,296.8501964597963,297.70454963622615,297.2707346798852,297.34583854163066,297.4419541922398,297.5196792720817,297.79132067086175,298.5819115303457,298.6758258859627,297.876177880913,298.113324848935,297.79598889127374,297.5312838880345,296.7825600267388,296.83024898311123,296.93671194138005,297.07718456164,296.1865803366527,295.4036308438517,295.61975533980876,295.84242829633877,296.6853221990168,295.8103151922114,295.7743336558342,294.7813219712116,295.54652686882764,294.7271423912607,293.75140336947516,293.60922427661717,293.75730342557654,294.1576487002894,293.4841274819337,292.9600304723717,293.743111690972,293.1553263491951,293.694788263645,293.9822168168612,294.15924863377586,295.0686462172307,295.4708926216699,295.08523824997246,295.64907765807584,294.8958057309501,294.75795069988817,294.2056678282097,294.2790625197813,295.13807760132477,294.3626723885536,295.04737013718113,295.86770967720076,296.0893863402307,295.26638372428715,295.5320679419674,296.52560226386413,296.74377741105855,297.21507117478177,297.3652119124308,297.26402740273625,296.7495492468588,297.0519252275117,296.95903901103884,296.82971185306087,297.66012638201937,296.9921000842005,297.12180155934766,297.15512290084735,297.7981916088611,298.45515405153856,298.55387414898723,297.8528752475977,297.7112570279278,298.24085070658475,298.53153618844226,298.74511363217607,299.062338759657,299.7223997847177,300.515486441087,300.97738764761016,301.7525841319002,301.2089059231803,300.8523551193066,300.5895756985992,300.4852032721974,300.44370466284454,300.887380595319,301.84897753736004,301.1457710098475,300.8509500459768,300.4460666170344,299.48409508680925,299.80257011624053,299.88859636476263,300.5898775453679,299.95472199842334,300.76501282304525,300.9254017090425,301.70558201288804,301.55616247141734,301.8710442110896,301.35983441211283,300.82834235578775,301.69352670991793,301.57309713121504,301.63612231519073,302.5864975694567,303.2968937186524,303.491461048834,303.25462915562093,304.232588512823,303.73651871224865,302.78030008776113,302.7355251228437,303.14620689628646,302.80723455082625,301.8787684869021,301.25607281411067,301.952360839583,301.0695816180669,301.5856994553469,300.63427592162043,300.09837777912617,299.4280512458645,298.5962707721628,298.2040456645191,298.5355477114208,298.3072864501737,298.54509333427995,298.82801335211843,299.4789891433902,299.6583907776512,300.1724379071966,300.55690759141,299.68125885538757,298.7458371501416,298.5185054242611,297.91650328598917,297.54150465503335,296.90986638190225,296.7692656768486,296.6168654477224,297.3797431923449,297.08094955654815,297.9938104278408,298.9622726091184,299.74750546040013,298.90111683588475,298.01332872454077,298.3976250686683,298.72798942169175,298.08520206063986,297.19267715513706,297.97982102120295,298.9728147191927,299.3155112126842,299.8114441893995,300.2745995055884,300.09266701946035,300.04775628773496,299.9360752720386,300.79411847144365,301.6675479095429,300.98721295176074,300.3437654385343,299.94729647319764,300.6532606948167,300.5463393321261,301.4831066140905,302.18923887843266,302.9999881586991,302.6796297891997,303.41695300582796,302.5327947642654,302.08776734862477,302.2279076082632,301.59958465816453,301.192852624692,300.28208477282897,300.02846392896026,299.9068844555877,299.5720572825521,299.6569696511142,299.5454821451567,300.30695786420256,301.22309417370707,300.9853595653549,301.3096526558511,301.19681661808863,301.2808230188675,300.54586440930143,301.4125860990025,301.423834992107,301.7036307724193,301.28303452255204,300.535839991644,301.3054868513718,300.68165825819597,300.6137812570669,300.8215321600437,300.44289402104914,300.3156496710144,300.817793217022,299.84605962317437,298.94272512895986,298.42703685024753,299.03175750002265,299.0944657176733,298.7092154705897,298.3488516281359,298.68948728311807,298.6791408951394,298.30131908971816,298.1429827725515,297.20744763687253,297.8447246318683,298.2213016762398,298.8890653196722,297.8899341514334,298.37754149967805,297.51459733210504,298.1354958396405,298.9577075843699,299.01873668516055,299.90943437209353,300.07598234619945,300.6570598636754,300.5363742788322,301.29925280064344,301.3323606052436,301.853529795073,301.73216981301084,301.5542173841968,302.2189269270748,302.8486854489893,301.8789400891401,302.22403531568125,302.50901640346274,303.06636933470145,302.262049512472,302.4083758178167,302.7299379147589,301.8977819927968,301.31102227047086,301.62878690939397,301.23723047971725,301.831837602891,301.5782948299311,300.7717706798576,300.35929301194847,301.1901354403235,301.76072592893615,301.93074065912515,301.9931242861785,302.1657454506494,302.39497112855315,301.8525809184648,300.916198277846,300.75516275223345,300.48905309755355,300.290223241318,301.09830131940544,301.16303404513747,300.53901782492176,300.33155044866726,300.4796016556211,299.9673175844364,299.90300279669464,299.4036717149429,298.4340972187929,297.54472916200757,297.1921631307341,298.0002011228353,298.824153566733,298.496175725013,298.6519946041517,298.9592850911431,298.6220904341899,298.89562937198207,299.54864185256884,298.83817981835455,299.7588941967115,299.65395029308274,299.90758866490796,299.4581047152169,298.49738267203793,298.10727395117283,298.73684980906546,297.88201296376064,298.72562600811943,299.5982472030446,300.5852169226855,300.8692296911031,301.6758058150299,300.67817613389343,300.890754816588,301.37802240997553,302.2804572964087,302.04105169698596,302.4685752969235,301.8206608509645,302.69029505969957,301.80471525527537,301.4614236620255,301.2971491259523,300.60776252439246,301.1234139781445,301.4808021793142,301.889263484627,302.882103308104,302.5113880210556,302.36357359122485,303.283406260889,303.89398379297927,303.25349519215524,303.0164813147858,302.48442089930177,303.3678658339195,303.3143269456923,303.10730686970055,303.18963453453034,302.89475742308423,303.52260599378496,303.78050132095814,304.1506839017384,304.6600750889629,305.01535465940833,305.17807882558554,305.4414529618807,305.21105767041445,304.53074450371787,305.02976899500936,304.8521194350906,304.2900499664247,304.0155133162625,304.52764839399606,305.0207463679835,305.25638202764094,304.4544742447324,304.7431105533615,305.2265649661422,305.97407089034095,306.5801437944174,307.4247553218156,307.36967772152275,307.97205206146464,308.0564552815631,307.6723261876032,307.2380320876837,307.2213996401988,306.5013289754279,306.2842193855904,305.9166312846355,306.22454431746155,307.0278755482286,307.41571212839335,306.7223345437087,306.2014671363868,305.76081353612244,305.6969563635066,305.71071783080697,306.5673795742914,305.57585483882576,305.0466629108414,305.29874652950093,305.98749676160514,305.8482414036989,305.1665909802541,304.3776313131675,305.21661270596087,305.24067904939875,304.478307697922,304.58610843122005,305.53602217230946,305.32444756431505,306.1849520052783,306.82945710001513,307.29991641268134,306.924573964905,306.03107307013124,305.70488499011844,305.33468265878037,304.34146491857246,305.2572001214139,304.86128665180877,304.45974061172456,304.9295203946531,305.4020066726953,305.64344991371036,306.2748666219413,305.4225662187673,304.60074447421357,304.37662564590573,303.7601911542006,303.2384790177457,302.4093969943933,302.7500978317112,302.9572219741531,302.15427926694974,301.86088291043416,302.2403659392148,302.1554829282686,302.6989607475698,303.21077135251835,302.77043796889484,303.54218993522227,304.36877657985315,304.417120330967,304.61639262968674,304.8672918640077,304.82853328296915,305.09541922528297,305.01609918056056,304.4229496740736,304.97097296081483,305.061442295555,305.36087259231135,305.1300363969058,304.9798341291025,305.1905026785098,305.1054631602019,304.7913391077891,305.64823917485774,305.00791412917897,305.76250619161874,305.13223710563034,304.64540149690583,303.915960279759,304.08831277582794,304.3200617618859,303.72211185097694,303.06603047437966,302.1157189141959,302.12591884844005,302.0778218600899,301.476685794536,301.42580696800724,302.2567219133489,302.0130495224148,302.17484761355445,302.25627114763483,301.93316644243896,302.69490168755874,302.67921179998666,302.2164849047549,303.02970963157713,303.5302063534036,303.877580427099,303.7690665414557,304.058546686545,303.7444869019091,303.5866572908126,303.38352329144254,303.2135532377288,302.39763219607994,303.1604177216068,304.01674205390736,304.23598251631483,303.4884554799646,304.1876131640747,304.3704895488918,303.4502063547261,303.2784382435493,302.3939859298989,302.8183744456619,302.26026848331094,302.52379870275036,303.4155290960334,303.21329441946,302.8795765945688,302.52543112589046,303.44722200743854,303.83226251089945,304.1479275561869,304.1326650204137,303.1797259557061,303.8812393792905,303.7611790183,304.4741726233624,303.5478716841899,303.3279608776793,303.61220432817936,304.31954840105027,304.141438068822,303.72949375072494,302.773665541783,302.53321486571804,302.6514191473834,303.2703099953942,303.19836350297555,303.56384205212817,303.35336451325566,302.831265501678,303.1386796012521,303.4660847289488,303.47874231124297,302.8773315246217,302.41032662801445,302.5867527057417,302.4386476664804,301.5384943904355,302.00647890241817,302.43068246589974,302.7349959476851,303.37745600845665,303.50433322042227,303.5489270845428,303.0439830161631,302.79411712801084,303.7664968986064,303.2537540877238,302.69601198658347,302.6380308554508,302.35521780047566,303.25160682806745,303.2966434895061,302.795140161179,302.5378130269237,301.6201995057054,301.8951870976016,301.03118290612474,301.5569416373037,300.9324893737212,301.20662886602804,300.75448742089793,301.25023972196504,301.5576333133504,301.7814583652653,302.7733840527944,302.0387492259033,301.0389846037142,300.88066528970376,299.8958197510801,299.5165810850449,299.67322061257437,300.0755384764634,300.28048548847437,300.4823690862395,300.3516712570563,300.3863328075968,300.19233693694696,300.70643336651847,300.0333398869261,299.4136738348752,299.8364410661161,299.8921526130289,300.6108412896283,300.3218989451416,299.73533458216116,298.93055171053857,299.1001432579942,299.8026454807259,300.7252476657741,300.3422378031537,300.8438388579525,301.02808604575694,301.17451327247545,301.2317735888064,301.0294229350984,301.05273969843984,301.076095148921,301.4500635229051,300.7768341694027,299.7920772363432,300.0634531513788,299.3188055171631,298.5182446548715,298.153542409651,297.3582573495805,297.4653333555907,296.8756728209555,297.7153569557704,297.84955840883777,298.3323751334101,297.379632584285,296.4193933280185,296.823844388593,296.8423598273657,297.8050848804414,297.1002525961958,296.51822294667363,296.36780585721135,296.40587359201163,297.22906716540456,296.2688093101606,296.4621777161956,296.5735997464508,295.7109692795202,295.021519230213,294.238418687135,295.1700185495429,295.73534414405003,296.3022446157411,295.33521036664024,295.95753326360136,295.9029451040551,295.59145518019795,294.79506414942443,295.5884146350436,294.8987790956162,295.49523557396606,295.5003626984544,294.7617590124719,293.78606410557404,293.41511645074934,293.40252722939476,293.77200689259917,294.4713081745431,293.8965713526122,293.30224584788084,293.6897416608408,292.7066106945276,292.2240337813273,292.87619137065485,292.8825587183237,291.98003363609314,292.74188936222345,293.5758940060623,293.6352737881243,293.95068774046376,294.75150932511315,294.58433301374316,294.521673718933,295.172612933442,294.82436942122877,294.8614746904932,294.1534092593938,293.2425118498504,293.1162644950673,293.7622092249803,294.3917021295056,295.3360236193985,295.7682627174072,295.330885683652,294.6250861804001,295.43021690798923,296.0875416826457,295.4476283704862,295.75900157075375,295.65572975203395,294.7941816020757,295.2354854741134,294.64461576752365,294.56307778926566,295.0909641413018,295.04780512396246,294.1620303164236,293.5532645699568,293.69568458851427,293.88720557419583,293.7101664287038,292.9804232814349,292.670117970556,293.4907489195466,293.342714027036,293.58679419755936,293.5010134545155,293.7457688655704,293.0932359546423,293.32801402779296,292.340379585512,292.8587823952548,293.18445500871167,292.51760377176106,292.343626818154,292.6115896808915,293.2418310949579,293.55150579242036,293.8756632679142,293.7864027051255,293.49888109369203,292.5269100628793,293.3830939522013,292.41699400777,292.69923445302993,293.4601787831634,293.1062028151937,294.0728874602355,294.5062860380858,295.18057807628065,294.85779608087614,294.3084498359822,294.84553644200787,294.09572676196694,294.39652495784685,295.315281344112,294.62938064010814,295.4324834984727,294.7362912921235,295.55276126554236,296.0433620372787,295.18976662354544,294.4676184724085,294.22079632012174,293.60010084090754,294.51073529431596,294.8296170462854,295.7044146787375,295.5726005807519,296.35000976594165,297.1300755189732,297.1313520814292,298.0239766249433,298.7880753008649,298.11520016985014,298.23348170891404,298.7346015931107,298.9896028107032,299.53315597074106,298.8464019144885,298.1978343334049,299.0477628572844,298.9216315066442,298.4119939194061,298.3756713247858,298.50390649493784,297.5751005541533,297.9247943209484,297.76864335266873,296.8868262595497,297.8424746231176,298.5201057661325,297.5760077573359,297.18764996761456,296.6882842099294,297.67154277302325,296.87650284171104,297.62036160193384,297.0075957765803,296.0142901390791,296.18591558374465,295.4034178922884,295.570270487573,295.57623216789216,296.11729695415124,295.15732744010165,295.23316362081096,295.6127485088073,296.594902606681,297.3186405687593,297.93949783500284,298.60639662714675,298.1807771027088,298.199850007426,298.2612309460528,298.63378245104104,298.70135740190744,298.4665014054626,298.8734809374437,298.7285630023107,297.9138412736356,297.1120696249418,298.0578349805437,297.66004238370806,297.78477887483314,296.94578792946413,296.73140907939523,297.4877339634113,297.11215161299333,296.5955139431171,297.18569995928556,297.49880502419546,297.41631215717643,296.8990851556882,296.80228028493,295.8775176592171,295.14481544168666,295.6507852682844,295.1895760917105,294.1953325881623,293.41504517477006,294.2529654521495,294.08163898671046,294.68967600446194,294.4363752901554,294.3260400844738,295.22602415876463,295.0861437325366,295.14502603467554,294.7384106856771,294.67283722618595,293.695419493597,293.6129358774051,292.7262044129893,292.5459759957157,293.0478235189803,293.30312101263553,293.59697748254985,293.67745593423024,294.04258620692417,293.7877941913903,294.58911715168506,295.4909455641173,296.1422041882761,295.58988308208063,295.6678385557607,294.8892399449833,294.7189800962806,294.12895761197433,294.5992454160005,295.4550033612177,295.41566226258874,294.86390226194635,294.1534660672769,294.97853681910783,294.54178231582046,294.6875605448149,294.1902126627974,294.8699660548009,294.0779716335237,293.1577281989157,294.1420940430835,293.8898247317411,293.3654307471588,293.6351506970823,293.49117944482714,293.06758784363046,292.6680360059254,293.3297785683535,293.95945424959064,293.72690913314,292.73420831467956,293.5180528871715,293.47088776389137,293.6817711740732,293.85140402801335,293.35458898963407,293.98161104600877,293.8750347327441,292.9057920896448,293.765921943821,294.12759887892753,294.4563093134202,294.4270778307691,294.33389857644215,294.0046374145895,293.81389635568485,294.217577165924,294.0491042849608,294.7325214156881,294.7915422078222,295.47797658573836,295.3713014931418,294.6717081819661,295.3039093404077,294.692862064112,294.038592630066,293.08928990829736,293.067397353705,292.15238466626033,293.0945843528025,292.8482479439117,293.72712079202756,294.41645426955074,294.0281457025558,294.6206093719229,294.6487110638991,295.1305561210029,295.6758243571967,295.27494382159784,295.7694647577591,294.8520350018516,294.58495978079736,294.704402721487,293.87653816025704,292.92834395356476,293.6643150122836,293.47591121168807,293.03029299806803,292.83143338095397,293.31882847705856,292.3982469313778,292.4098384305835,292.4237753325142,292.10073197446764,291.2504782662727,291.64552675466985,291.24965249421075,290.41394513845444,290.23159201676026,290.53458494786173,289.97464570915326,290.89463216392323,290.30851762369275,290.2605010839179,290.35679934360087,291.18263341346756,290.78930728090927,291.20048002153635,291.2059075180441,291.40345629956573,291.01415992481634,290.72837171982974,290.6341507215984,291.3623490771279,290.4434643695131,291.12639787839726,291.1751676965505,291.61488630529493,291.92677216092125,292.33448044676334,291.67196180392057,291.53150272741914,291.31037711631507,291.57362629147246,291.4443876557052,291.803809995763,291.6312223491259,291.46435151575133,291.51028884295374,290.82834539888427,290.4353243568912,291.02501215366647,290.6779798967764,291.08538057794794,290.1914272485301,289.92811431363225,289.14467618754134,288.9375084619969,289.35162491491064,289.72735120682046,290.1475751711987,290.41297384537756,290.5184548976831,290.80118799675256,291.2015793300234,291.23296332592145,291.8112870142795,291.3282418786548,291.8732918505557,292.1301571307704,291.38241108413786,290.4086375525221,290.03876250470057,290.23151748161763,289.52252793870866,289.41288703493774,288.9748303126544,289.4990872698836,288.6885984111577,287.8400375721976,287.0566942980513,288.01826018933207,288.9606217946857,289.4653988657519,289.4346855636686,290.33344550197944,289.78742690896615,289.91460143448785,290.7421523327939,290.31677174707875,290.8743437854573,290.13016297249123,289.45812754752114,290.37924413057044,291.12777269398794,290.8701036493294,290.3252818323672,289.3863024106249,290.19814216624945,290.6759716225788,291.5453640553169,292.2598136286251,291.70247586723417,291.55226699309424,290.5679947785102,290.3481551320292,289.429957119748,288.88901847600937,288.3453495223075,289.1468625939451,289.04467203002423,289.11714801657945,288.206008377485,288.5486266659573,288.81985796196386,288.7426779610105,287.91608681809157,287.6499117249623,287.0857763388194,286.8304867767729,285.95174573082477,286.80225906148553,286.03000007243827,286.55587876820937,285.8876134385355,286.4902984430082,286.56613856879994,286.08469519624487,286.99060833780095,287.8599652601406,287.6234826464206,287.58011943334714,287.77099929284304,288.183887403924,288.5442551020533,288.74437869526446,289.43884797766805,289.5202564485371,290.38257619552314,290.7181294988841,290.0601550512947,289.36883545666933,289.25750183453783,289.6054738503881,289.6527985255234,290.45392974372953,289.7844669902697,289.49283991614357,290.06624133558944,290.9063325286843,290.5310910050757,289.89228339958936,290.57009049737826,290.669711377006,291.3733384902589,291.47639817139134,291.483243024908,290.4956097523682,290.36817984236404,291.0001954147592,290.95024105440825,290.2649438707158,290.2949851229787,290.1202594661154,289.53555312613025,290.1978291552514,290.9452934153378,291.8012204072438,292.55527798226103,292.5631741993129,291.94873526040465,292.7710195891559,293.4440842811018,293.93998525477946,293.0595230301842,293.33685017516837,293.41849302034825,292.51445192145184,291.72484789881855,291.62035956652835,290.73273688787594,289.83891199622303,290.4467198578641,291.42334826057777,291.59678451903164,292.3744447599165,292.9161814292893,293.46475245431066,293.19736787769943,292.5099288215861,292.3081346536055,291.8899779962376,291.28915758244693,291.6589905861765,291.6056414744817,290.6745725153014,291.15079252654687,290.7761753741652,290.06178166903555,289.806106231641,290.44606515951455,290.6042012278922,291.2539592166431,291.49455064954236,290.54566442780197,289.7091905879788,289.6209837794304,289.2760852300562,288.3949932833202,287.59925954137,288.02389576425776,288.8177703493275,289.6458657607436,290.4770691767335,289.90381950652227,290.1323411189951,290.80079092876986,290.6425442188047,291.61550623970106,291.5290743233636,292.1111620115116,291.5451374826953,291.4147137547843,290.5824950649403,291.0089426180348,290.5420870902017,291.0791214602068,291.3925093137659,291.94174827076495,292.09349735220894,292.83071113424376,291.93620837759227,292.6475427746773,293.0453950976953,293.90393337234855,293.24203155376017,293.17100116750225,292.3284840150736,291.7533129551448,291.8733495664783,292.0058876336552,291.6376246805303,292.03225904190913,291.82673263177276,290.93303197575733,291.0066866497509,291.15770942438394,291.4338946621865,291.0899435915053,291.27101786388084,291.38645129138604,291.2711266791448,290.9816541718319,291.8070551282726,292.6239064550027,293.00094314757735,292.3171851937659,291.46728363400325,291.03589689033106,291.37432004045695,291.6578542860225,292.5924529954791,292.22614998556674,292.7086303336546,293.3047838974744,293.84967554872856,294.7646164842881,293.8193629938178,293.03031856380403,292.68821290601045,292.57733960961923,293.0872473032214,293.02789627201855,293.50279956823215,293.4015695829876,293.21345568355173,292.42168679088354,293.31194324046373,293.07214031601325,293.306893135421,292.5744698769413,293.0754366382025,292.1481536515057,292.2443954786286,291.313690002542,292.30149675067514,292.9706527646631,292.19419739814475,292.168383567594,292.85873944917694,292.9334419830702,291.95529266214,292.31392024317756,292.4722504816018,291.532476732973,290.62972809839994,289.9173180437647,289.3990208511241,289.90944053651765,290.0249344217591,289.9164084219374,288.93042706511915,289.21059861732647,288.98669035499915,289.16041939286515,288.90371757606044,289.5675174575299,289.2106467182748,288.988110258244,288.7441822872497,288.30987889599055,288.0679700933397,288.918501092121,288.81740373931825,289.5310957515612,289.94841967197135,289.2079626591876,289.4328527627513,290.400110588409,291.26874573808163,291.4127066703513,291.75209927139804,290.87454802682623,290.33576374547556,291.2755691059865,290.61588256945834,290.0324995354749,289.83087444351986,289.0023400182836,288.5914808623493,289.04286020295694,288.78884493745863,287.8016139543615,287.4854068160057,288.22242376953363,289.20933408336714,289.7827197248116,290.7210828345269,291.0622287467122,291.23289200617,290.5289893085137,291.3108070185408,290.86400573840365,290.3827394936234,291.02356769749895,291.46309803333133,292.19228460546583,291.4444913887419,290.524260383565,290.8045660536736,290.5296599739231,291.00069696456194,290.0273712235503,290.13084784476086,290.1624964606017,291.08452807785943,291.8124175760895,291.27082904288545,292.16076656477526,291.1612967918627,291.6010456327349,291.4108154149726,290.80776807293296,291.23811771767214,290.9188361032866,290.7768812356517,289.8386654020287,290.72227212646976,291.5179607067257,291.70552450791,292.4104253021069,293.3646809551865,293.316751440987,292.8699301336892,292.9079396999441,292.4783477303572,292.28194681880996,291.79764617886394,291.872349048499,291.9672498125583,292.2628879668191,292.5427265353501,291.6757867736742,291.11871074698865,290.22486343001947,290.42235040292144,290.19715958926827,289.6697944914922,288.8162196255289,289.4787308773957,289.39154268056154,289.92340136738494,289.7304825009778,290.13874590490013,289.2734686709009,289.54239298636094,290.3821818716824,289.56393862655386,289.53231461998075,288.66591389337555,288.9534590160474,287.99580461066216,288.3964572073892,287.5990554881282,288.5629611336626,288.390272077173,287.7720081266016,286.8594899913296,287.0987173868343,286.7633964009583,286.74706082837656,287.52387056080624,287.392165676225,287.4903877726756,287.47413600888103,287.57697705645114,287.37123575853184,287.46225658943877,287.9802966499701,288.4803264308721,287.7456374471076,288.6846856777556,287.8165519167669,287.5513549367897,287.02158341929317,287.1710692681372,286.5025040144101,286.66033623274416,285.80108047416434,284.99510221136734,284.42551685031503,285.17586161289364,284.7189866262488,284.7980494094081,284.01781256776303,284.13428320595995,284.61230642395094,284.09127669315785,284.2154601053335,283.729330859147,284.6943255085498,284.18883228488266,285.11304858746007,284.39765315596014,284.30400248244405,284.0038851941936,284.6990610472858,284.60967235127464,284.55832811351866,283.69070720719174,282.92352424841374,283.4961821255274,283.0904030846432,282.2863389845006,281.703399119433,282.5877026398666,282.24781083408743,283.0728784590028,282.1728599690832,281.6937782773748,281.73836102802306,281.51029407046735,281.2607574448921,282.1102427095175,282.60590142477304,281.93820266472176,282.19445352908224,281.616378787905,282.05582131119445,281.1627946626395,280.52333924360573,280.8835664060898,281.6562913423404,281.655174496118,281.57993415091187,280.6891774912365,280.17407504003495,279.8335238988511,279.34460185002536,279.606642476283,280.3409447958693,280.00403898442164,279.5702715073712,280.5415496667847,279.91939501976594,280.69194771768525,279.85018504131585,279.02939191740006,278.3768819826655,278.5319351037033,279.4104238161817,279.3389549427666,278.549741609022,279.0006829225458,279.749823697377,280.3425014046952,279.8330905777402,279.3727792846039,279.01397619675845,279.7248309403658,280.35393919656053,279.5256542484276,279.7301023453474,278.80566537566483,279.0745772072114,279.0850455756299,279.3135096929036,279.85009887069464,279.45570576097816,278.6330525428057,277.8750966154039,278.17711570253596,277.9747096984647,277.50240297755226,276.5412447671406,275.94965468207374,275.26166400220245,274.5639828653075,274.8876304421574,275.1618571127765,275.93619616981596,275.21657188795507,275.46945741632953,275.14507670979947,274.7437071907334,274.28286551497877,274.8036080864258,274.1847995775752,273.23230728367344,272.61503099184483,271.61586299492046,272.1509411390871,273.0392512581311,272.89031521603465,273.74980507884175,274.5754144927487,273.9653310882859,273.08500121021643,273.12679231725633,273.4095979882404,273.62593891844153,273.1872453405522,272.4454155806452,272.74264040216804,272.65510847140104,271.90066392021254,271.29884206177667,270.9468009592965,271.0776316355914,271.5150513299741,270.61991895455867,270.7705467874184,271.1748324818909,271.57356532663107,272.18119614897296,271.9600688791834,272.8364001060836,273.28646375238895,273.60984602291137,274.18793391622603,274.017073682975,274.1524024736136,274.94064101204276,274.53010016400367,274.1680240519345,274.4820740525611,275.2135276347399,275.8956108200364,276.2084523909725,275.31567555107176,275.03161319578066,274.1046018968336,273.7705399072729,274.38513020286337,274.2149232295342,274.5157557874918,274.12108400277793,274.335093782749,274.3184547042474,274.56591844698414,274.7954627033323,274.8022965406999,274.7351173250936,274.54963886132464,274.6378706814721,274.6781325186603,273.9682139544748,274.59375163307413,273.9857083936222,274.9033654485829,275.25057980325073,276.2428644541651,275.65492251096293,276.0770725389011,276.9490172169171,276.0568010103889,275.5939549631439,276.4149424182251,275.99373057018965,276.0430957758799,276.22246839897707,275.69049608008936,275.303761604242,275.07704046647996,274.8687719362788,275.1516266949475,275.0764041743241,274.0912977079861,274.7208934966475,275.696693724487,275.30256210966036,275.99339118087664,276.3015143806115,275.7294708015397,276.32087963074446,275.4314696956426,274.70620338758454,275.51200693286955,275.53753766510636,274.7314470587298,273.9780766181648,274.8536452539265,274.27315874863416,274.83850221009925,274.3151331944391,273.92166108684614,274.3265538793057,275.2252512280829,274.596913207788,274.759626718238,274.70798473618925,274.23846008162946,273.7719718227163,274.11203887173906,274.15566861024126,273.44884516252205,273.2292416137643,273.22668174514547,272.2391018681228,271.4650988136418,271.57216104725376,271.49705098662525,271.27378825005144,270.54325531143695,270.4835544684902,271.2086362852715,271.27331647323444,270.3585791592486,270.1619943487458,269.9980853870511,270.10234957560897,270.17192506510764,269.966843362432,269.7252079779282,270.6424569375813,271.08674626844004,270.94408158399165,271.8225201391615,270.8907143352553,270.04047305556014,270.9944575438276,270.2032117829658,271.1212089546025,271.96735172718763,271.6180849666707,271.35380726633593,271.73831429099664,271.7746734940447,272.615301030688,272.4543214836158,271.4565199003555,271.394690154586,271.6713016196154,272.65593952080235,272.93169178580865,273.3629991719499,272.8795285555534,273.73790601221845,273.58341807127,274.4543960406445,274.2454476938583,274.6542464578524,274.94333801511675,275.11042412370443,274.9913192964159,274.5338608752936,273.6872117491439,273.11634486028925,272.79591722181067,272.8566070506349,273.1114868959412,272.7913827816956,273.4937995355576,274.3202661429532,273.9884857223369,274.5241670892574,274.04922062391415,273.18759011803195,273.3046450088732,272.39093804033473,273.38536721421406,272.5486015868373,272.5167197729461,272.1263424558565,271.526115111541,270.76507615018636,270.270099604968,269.60059049678966,269.35014300467446,269.1759355235845,268.4486388559453,268.4246125300415,267.8414789601229,267.6189973084256,267.0523122418672,266.3523782142438,266.61207721941173,265.9374629999511,266.3118422450498,267.1880481527187,267.7834062241018,268.18556339479983,269.01632094569504,268.96771577512845,269.3439442096278,268.7414172561839,269.384320915211,269.20231405086815,269.98762712441385,269.0840906840749,268.82658714288846,269.2487713219598,268.2892001676373,268.167239703238,268.5982970944606,269.0268770698458,269.5987017657608,269.01362637476996,269.2965254620649,268.9550130739808,269.568253621459,268.94190603867173,268.77251113485545,268.2312631220557,267.5245371251367,268.3071087426506,268.5725789857097,267.9771978012286,268.21439267508686,267.88422582950443,267.2371910973452,266.83118194388226,267.6243779626675,267.66003581508994,267.3434668518603,268.26613122643903,268.845482875593,269.11385707044974,269.8037768555805,270.0848006368615,270.1830063187517,269.24247026257217,268.7798806387,269.5909944875166,269.0359618659131,269.35379886906594,269.20966609800234,269.40652661724016,269.813454605639,269.44158708816394,269.9489339017309,270.8928111442365,271.10404447605833,270.5785780288279,270.07398069277406,270.1928998255171,270.05381195712835,269.8865216043778,269.0111138308421,269.47392340702936,269.95799919450656,269.0118177551776,268.9042763542384,268.56894793733954,268.8580600898713,268.646437946707,269.00414440827444,268.84515025792643,268.1649976829067,267.61800194950774,268.07151716807857,267.5285195456818,267.0863023228012,268.0419345377013,268.907999756746,269.1873371023685,269.2429869133048,268.9439234682359,268.20104390149936,268.9531890982762,269.1977144139819,269.6051804679446,270.4764766981825,270.65931424871087,270.52649305807427,271.2047470496036,270.8900229264982,270.3090843548998,269.81705368775874,269.1493681599386,269.179990651086,270.03490500478074,269.6040880982764,269.3815265945159,270.13962096814066,270.8599070152268,271.5093970946036,271.5979960076511,272.1337085883133,271.9770374954678,272.3121416186914,271.3631740901619,272.1519941901788,272.4005942577496,272.5863140677102,273.27103440556675,273.5048194839619,273.7947617126629,273.38930510217324,274.1085110097192,274.8085489580408,274.27772189630195,273.80723687354475,273.708038976416,273.1204338148236,272.6622873581946,272.3644027393311,272.4020395176485,271.7807919033803,270.81266170507297,271.4927516304888,271.6565278219059,272.64569831779227,272.5285922824405,273.4033907270059,274.0745889074169,273.7293556961231,273.033535159193,272.7865200410597,273.5401435266249,273.57397557841614,273.4967330880463,273.5041553094052,272.63693909859285,273.5922681945376,273.51259298529476,273.53561833221465,273.185214816127,272.74015505611897,272.8630308895372,272.6461574942805,272.3476356510073,273.07646050304174,272.8736088559963,272.00552047928795,272.9790345863439,272.90092954877764,272.4915639241226,273.15280518867075,273.7898510051891,274.42671455442905,274.41766602825373,274.66208375198767,274.45214870013297,274.07585092494264,273.86856373166665,274.4836519025266,274.32719576125965,274.2465553153306,274.42835834110156,275.05087321065366,274.29485534178093,275.1846183389425,275.2601893376559,276.1186240045354,275.6167331296019,275.1784871602431,275.90796620957553,274.9357415190898,274.57027367316186,275.46507595619187,275.97754231700674,275.6492664953694,275.14552404219285,276.07356974622235,276.26375689776614,276.5172235118225,275.6276136529632,274.80473129078746,275.0649183029309,275.987886717543,275.65203403215855,274.97096820455045,275.8412322765216,275.0053676753305,275.1443062964827,275.7038129493594,274.7974235774018,275.22964768484235,275.71102976892143,276.56746982596815,276.93335005035624,276.09912245115265,276.6194239887409,276.7139448309317,277.39033009065315,277.4127638647333,277.8776077334769,277.7790475138463,276.91206717072055,277.47007025778294,277.9782581808977,278.29112966544926,277.55230187112466,276.7895905333571,276.9708389798179,277.04184796102345,276.8352067852393,275.84809721261263,276.58591392822564,276.78033325774595,277.77521083829924,278.76277355803177,278.9223810872063,279.82613189378753,279.3783064032905,278.62240417534485,278.57240711990744,278.0673431553878,278.60992291243747,278.49065202707425,278.99519877741113,279.56822974281386,279.3890621168539,278.82664896920323,278.2262077657506,277.6712063513696,277.0180612183176,277.87853016424924,277.9015254457481,277.74690274707973,278.55801484407857,279.0714198513888,278.2813559756614,278.1784595195204,278.5234117535874,277.9973161141388,278.06657399144024,277.5439967857674,277.1772569748573,277.2967728287913,276.55997179308906,276.140695319511,276.4938035598025,276.25618791999295,275.8257437758148,276.13080020528287,275.52445712452754,275.0975091806613,275.81919005466625,275.13543275604025,274.397028314881,273.430413167458,274.29594032652676,273.67587908077985,273.5699859135784,273.45094142016023,273.8961164280772,273.99948737956583,274.857148504816,275.0178359076381,275.84929310623556,275.3025391418487,275.27468665270135,276.1393891144544,275.39175143651664,275.2116243997589,274.65867671137676,274.1141292289831,273.3274489669129,274.091634681914,274.3550495072268,275.0723084816709,275.75201410474256,274.9007912212983,274.61059778230265,275.1723982146941,274.88946618372574,274.37325505167246,274.56629426172003,274.128916148562,274.19473224831745,274.15035246592015,273.7331567327492,274.21428898954764,273.50450663035735,273.8094119168818,273.6266732662916,272.74169904273003,272.99507345072925,272.6274502715096,272.99257649760693,273.7405702229589,273.5138908396475,274.1614599907771,273.42098043859005,272.4903817954473,273.04407973913476,272.94021475920454,273.43311396148056,272.832260182593,272.14295091247186,271.7581250676885,270.9076558104716,270.3255413263105,270.71161816688254,269.7834725524299,270.52499729488045,269.53830026229843,269.7926214840263,269.5512990304269,268.8743906035088,269.4593472648412,269.7428724616766,270.2612131536007,270.8673567138612,271.4304400268011,271.76947452453896,271.28819836769253,271.65368155995384,271.6183567624539,271.00360427843407,270.123611043673,269.9822583300993,270.11830774508417,270.2019599536434,270.7708046627231,271.55220603663474,272.1303641088307,272.73476311424747,272.9054097100161,272.35936540784314,273.2481454545632,272.7341276779771,273.3130713994615,272.46119908289984,272.190942551475,271.8708319757134,271.3027630499564,271.08885163161904,270.68851307826117,270.7157425349578,271.5810923972167,271.90556099871174,272.6856359979138,272.5406066435389,272.6790145980194,273.42877327278256,272.96092588594183,272.3912062109448,272.2725126943551,271.589074568823,271.6230392837897,272.0355221913196,271.82321556145325,271.9761648164131,272.6995958634652,272.5528430673294,271.76788649335504,272.235235135071,272.279533599969,273.00525911478326,273.6035696072504,273.47378931520507,273.681241506245,273.54154632845894,274.53302629990503,275.1872633784078,274.4774995162152,274.6163220102899,275.57920067571104,276.34926505945623,276.96250488748774,276.2578666303307,275.6552303447388,274.89277048315853,275.55099039291963,275.41301860194653,275.9214974939823,276.3532444550656,276.0056275948882,275.0172319863923,275.1831852286123,275.8038648106158,275.7903184532188,275.5457966737449,274.840411555022,273.9296175930649,273.37030304037035,274.25960282888263,274.1735174357891,274.87353780912235,274.43757670372725,274.9456709502265,274.6112611303106,273.87648080056533,273.5760675240308,273.5195410568267,273.4074179925956,272.94666300015524,272.2616292354651,273.1639207783155,273.2547634248622,273.2442215750925,274.1488568498753,274.6926405681297,274.4037042609416,274.3683060579933,274.7869705702178,273.9371222178452,274.5737277176231,275.08238174393773,275.10558856790885,274.8783266195096,275.0853509278968,274.628868940752,274.17193241231143,273.68470128485933,273.00659511378035,272.3098252513446,272.4123865738511,273.23788176616654,272.81606939202175,273.7648639460094,274.5398124475032,274.2875140523538,273.9158872864209,272.97050369298086,272.71205464657396,272.9631143081933,273.2072021747008,272.5187812563963,272.02487405668944,271.7765876702033,271.66037344001234,270.92838447727263,271.55073109734803,272.486533196643,272.11996007477865,271.54475333867595,270.91743951058015,270.68716987269,270.1614302271046,270.2689843107946,270.72826802171767,271.41772284032777,271.2134860381484,271.3961607818492,271.1541662160307,271.24124226067215,270.51182589819655,270.5893626254983,269.8242116714828,269.359136773739,270.2836384186521,269.39807467954233,269.64995267195627,270.4242883217521,270.94018433010206,271.73158029280603,271.5177496150136,271.0188625813462,271.82020990969613,272.6909157517366,271.99256214592606,272.74402349535376,271.75129695935175,272.4922543480061,272.2826043125242,272.5450566364452,273.3888712571934,273.752041422762,273.37215614598244,273.5192329669371,273.90385646000504,273.26340352976695,273.96421162225306,274.1754800295457,273.56883473228663,273.106906728819,273.9063471471891,274.43623920250684,273.80108071956784,274.5667873863131,274.06944959796965,274.2837475799024,273.8625383200124,273.5842442442663,273.8652028888464,273.75969759142026,272.8238037470728,273.2492406531237,273.2909478545189,272.80093252751976,273.27904444234446,272.55469520622864,271.7891087164171,271.56278227828443,272.00921588530764,272.9311222303659,273.3900785725564,273.35824245400727,273.42404667288065,273.20490603754297,273.19852151256055,273.8542928304523,273.92774132452905,274.06786173023283,274.7231663945131,274.9144627517089,275.34748877352104,275.38215449638665,274.7562914970331,275.37213051039726,274.44208280788735,274.004948859103,273.8082823823206,273.73991323495284,273.311290321406,272.55736076366156,272.77627587877214,273.62451882706955,273.20916034653783,272.3314166837372,271.3501666644588,270.64168842555955,270.1739749838598,269.5710484930314,270.5533633059822,270.4616244821809,270.69667515391484,271.33220929978415,270.9037763713859,270.53492092480883,270.72804535506293,270.4162879707292,269.6285679345019,268.6713435961865,269.6077947113663,268.9490564065054,268.27680156053975,268.617977776099,267.69394581997767,267.2548380359076,267.49466627649963,266.99384119967,267.4652040558867,268.0832518241368,267.27000151295215,267.7487759627402,268.0889215692878,267.92338885646313,268.26231824746355,268.9801013241522,268.9934925660491,268.8522270885296,268.51747755520046,268.24766164040193,267.25730192661285,266.54653817089275,267.3579558003694,267.93707235716283,267.5119947218336,266.99727302370593,267.1397764598951,266.7019894211553,265.81487245764583,265.96387176634744,266.1885102270171,266.8572933981195,267.8063924834132,268.3447901378386,267.50046669412404,268.1491774977185,268.0104469070211,268.7467262810096,269.40917614195496,269.1294166492298,269.24199201352894,269.6376898922026,268.73766828142107,269.1514098169282,268.65042478917167,269.33697665156797,268.7901198938489,267.8284460073337,267.11111818859354,266.3153807995841,265.3672311194241,266.0527231171727,265.30784419504926,264.70441990718246,263.7650043591857,264.6926708454266,264.08898310316727,264.3430383312516,264.5926631516777,263.600440338254,264.48255308764055,264.65913333324715,264.18744598468766,263.2499579852447,263.43210197007284,263.1566632981412,264.0928705818951,263.14376796828583,262.5797764416784,261.746039474383,261.02794366981834,260.1020945040509,260.5416796943173,261.4709400651045,261.3613960952498,262.2550366912037,262.13964143488556,262.96195355430245,262.66931916680187,262.4359498489648,262.7926173824817,262.06420971406624,261.3567323065363,261.2776908813976,261.24989943858236,261.1315097217448,260.5904030185193,260.1716901534237,259.78204168984666,260.03913803445175,260.1412374493666,260.98177401628345,260.08331539900973,260.0438546994701,259.941860624589,260.8164353594184,260.0548411482014,260.69438683846965,261.3010472934693,261.7643407797441,262.28050467185676,263.0068785091862,263.8235491607338,263.15072100702673,262.58877550670877,263.4892883808352,263.41513221757486,263.8642861577682,264.7435426907614,264.2044837307185,264.6718721096404,264.89109600288793,264.00874645775184,264.975965611171,264.5708927134983,264.5460780044086,264.9225827748887,265.2625752291642,265.57614238001406,265.94891342846677,265.72142423596233,265.81849690387025,265.78224189253524,265.64370721019804,264.71711064269766,264.78558035194874,265.54531013872474,266.34664350608364,267.1654381295666,268.13421900290996,267.35796011891216,267.37996357213706,267.8090901034884,268.52663900889456,268.81586912460625,269.78857098380104,270.03548791771755,270.8691470557824,271.4879619926214,271.3474663980305,270.6373545518145,269.82705614482984,268.9474926511757,268.75488474033773,268.8498904653825,269.7752718711272,270.0567575106397,270.27633610228077,270.1172880665399,270.8799586594105,270.2121536084451,270.1554554672912,270.4226368307136,269.88337711943313,269.69626770867035,270.64074711035937,269.9676570626907,269.3350407392718,268.62025453476235,268.40617223316804,267.569654898718,266.75708917621523,265.85019145393744,265.4317810339853,266.34887650283054,265.65473355026916,264.8202650542371,264.93550532124937,265.57499858457595,266.01767952693626,266.30817253747955,266.25451813125983,266.1838842066936,265.9183837464079,265.0557219935581,264.1216812725179,264.49108450254425,264.69613712187856,265.54513119813055,265.489163513761,264.79958000406623,265.23285464849323,265.57263748766854,265.9501713309437,265.8573457710445,265.78389151301235,266.41782367182896,267.25438556587324,267.4649748262018,266.8950680713169,266.9857915188186,266.1797373346053,266.60510989511386,267.16823827754706,267.2261499413289,267.572002351284,267.66408952418715,267.4527523801662,267.1048902645707,266.5236230408773,267.3238690160215,267.55586596159264,267.27094422560185,268.24064720096067,268.9414619556628,269.14628220163286,268.72489217016846,268.6611557994038,268.81675272388384,269.06361968489364,269.54816234717146,270.45479042315856,271.1040342785418,270.56761994306,270.9678567564115,270.7575272745453,271.4782491037622,271.67378395656124,272.6352484053932,273.04134874464944,273.80620498536155,273.86559641268104,273.7474645799957,273.13989543775097,273.2303786762059,273.07048919051886,274.0146795944311,273.6191512197256,274.3046351214871,273.43599109817296,273.38193144556135,273.5072491792962,274.18958133272827,273.2234475268051,272.53035225719213,273.0062853824347,272.77811023872346,271.8329871292226,271.9311684672721,272.17673165444285,272.6634134957567,273.1746178092435,272.8224188624881,273.6664508054964,274.30996643938124,275.2474835184403,274.6918397792615,274.8556276788004,274.5785949649289,274.0476829125546,274.75203604623675,273.81618875591084,274.8000546353869,274.57617430156097,275.54542757803574,276.11221740487963,276.7721923496574,277.351675611455,276.3977215886116,275.73375593079254,276.2820129371248,276.83212036592886,277.41098465165123,277.36958405794576,277.7654873933643,278.03882326139137,277.8225464276038,276.9958191313781,276.2412373092957,277.1984064760618,276.85649303812534,277.1280945241451,276.83274307707325,276.09369603032246,276.5899323965423,276.7594917113893,277.63805057294667,278.2661890918389,279.0417077951133,279.3595494800247,278.7962475279346,278.2665439597331,278.2649549371563,279.1286861775443,278.62069935537875,278.9661677405238,279.10958673339337,279.45290650753304,280.38928595371544,280.28801873279735,280.0047277761623,280.65552374441177,280.55070480983704,279.85713486233726,279.9324839236215,279.76445032050833,279.58764632605016,279.20303642749786,279.17538695409894,279.6201247922145,279.37952193710953,280.2707520611584,280.24045624770224,280.984249395784,281.4367410792038,281.3579865992069,281.36934363283217,282.357581934426,281.48813461279497,280.5960880005732,279.9731422350742,279.04423333797604,280.0124631198123,279.34901431109756,279.39504249347374,279.54710318753496,280.18888263357803,280.0667673731223,279.6561483377591,278.9922157684341,279.95127388229594,279.784581203945,280.0308595257811,279.4378732703626,279.42749980231747,278.5908790496178,279.33091118140146,279.7483986010775,279.055649892427,279.9496097555384,280.1009377017617,279.5548100974411,279.44352346193045,278.8240336300805,279.5969374626875,279.42403203621507,278.6459347298369,279.53076536627486,279.47362781176344,278.8106756429188,278.1142747090198,277.5962347332388,277.25282077817246,276.31658820668235,276.6908200895414,276.10800169268623,275.20471935439855,274.46886647539213,273.7740993159823,274.6639877278358,274.0941290133633,274.39545518765226,273.4553861930035,272.80172247998416,272.2328773913905,272.4897483321838,272.764826701954,273.4303068649024,274.25412679230794,273.27832396747544,272.8786182240583,273.15656409645453,273.55991708952934,272.64323345571756,271.749776693061,270.85908787418157,270.55589731782675,270.73151819221675,271.52240511449054,271.28430329822004,271.91527279885486,271.1971499877982,270.4153917944059,271.33287398098037,270.8369949865155,271.6954809296876,272.54966062353924,273.015423131641,273.4582218956202,272.9254495166242,273.72835949156433,274.05600147135556,274.9054918824695,274.06427712971345,273.41356952209026,273.9391576908529,274.223490325734,273.26795937353745,273.2392308022827,273.9013998233713,274.22879498871043,274.7517909575254,275.16205367073417,274.3375334162265,274.06227336404845,273.5758640174754,273.6332248826511,273.9709561858326,273.0516606909223,273.5098130479455,273.5927780070342,273.58423466421664,274.085038815625,273.9156669531949,273.68995989114046,273.2409445364028,272.71248195599765,273.4979130369611,273.58848910499364,274.54092831583694,275.4761325875297,275.7043020548299,276.15885665873066,276.41109187947586,277.13913670228794,277.90537461452186,277.03683114331216,276.8243172070943,276.69615133013576,276.672893258743,277.1696505425498,276.68362930370495,275.983592168428,275.30549832759425,276.1035839910619,276.3297876184806,277.1243045218289,277.5240053650923,278.07217008573934,278.1034480840899,277.86446021078154,277.2332915267907,277.8872721269727,278.6965258689597,279.42520649405196,278.6113536753692,279.2422537417151,279.3093566382304,278.44012521393597,278.80286531103775,279.1400475939736,279.27169268298894,278.8210756643675,279.2129026427865,279.90309756901115,279.67451041098684,280.4533618646674,281.3722997154109,281.57239248091355,281.11787186702713,281.64705422287807,281.69233834184706,281.17925111344084,280.76778054609895,280.57284792652354,280.1085240119137,280.9165848470293,280.83409915165976,280.6048162127845,280.9422946930863,281.63814925123006,281.95677886065096,282.28413173696026,282.3096346659586,282.0752246826887,282.54265759466216,282.2564133233391,283.05830747354776,283.6446272339672,284.10761896474287,283.38421698240563,283.8123789462261,283.93849592097104,283.21920955507085,282.6618527714163,283.12632517749444,283.77233577892184,284.4426117693074,285.26236535049975,285.2826787121594,286.1803169287741,286.7043531029485,286.08937238901854,285.4517582524568,286.34583637909964,285.9850959177129,286.94398180162534,287.9310152307153,288.0890174387023,288.4091194709763,287.4615408042446,288.03140861866996,288.6792476461269,288.5679925340228,288.3001874820329,288.12102003907785,288.7835532054305,289.08354283869267,289.73631192324683,289.45737660489976,289.29644801467657,289.2806644337252,288.97692538425326,289.0957733672112,288.6387464059517,288.0179881439544,288.9811108126305,288.5437648962252,287.6153013580479,286.89731442462653,286.03523483267054,285.26912252698094,284.8623520084657,284.45812519593164,284.791095900815,285.0285335225053,285.64788067061454,285.629300899338,285.5273977033794,286.43803846882656,286.58317895652726,287.2619085125625,287.2920139003545,287.6873444542289,286.9336841092445,287.43683589063585,287.2674023248255,287.4986324305646,287.0706662046723,287.06941279489547,287.60063563566655,288.19410826824605,288.19930798886344,287.7059324956499,287.30862159188837,286.8206760529429,286.8607794614509,286.82244683336467,286.501311453525,286.62170788645744,286.83166837785393,287.14610506687313,287.5714204791002,286.9724089214578,287.74543291796,287.4031529505737,288.3780598929152,287.7575318478048,287.32996883802116,287.77800632826984,287.7658227966167,287.3797764671035,286.7371937590651,286.9164590872824,287.58506221696734,286.6219530454837,286.88306511286646,286.44656219379976,286.69780514761806,287.3704643463716,287.2841459377669,286.59601869247854,287.1943364934996,286.6227233982645,287.3227957622148,287.05772481812164,287.3153518359177,287.5388150284998,287.859455417376,288.3979824562557,288.9049336561002,288.47547698719427,289.0269512915984,288.1305079064332,289.1173289255239,288.7332295901142,288.40214410889894,289.00682294089347,289.6274577905424,290.0716846473515,289.7304499601014,289.7254749601707,289.98254069313407,289.94989391602576,289.55192698631436,289.07451450638473,289.81883726408705,290.52798405336216,291.3927665296942,290.7681427085772,290.95063919899985,291.2440365846269,291.3588744131848,291.4986141519621,291.0232160608284,291.4954292248003,291.3143592970446,292.1845906339586,291.8460289025679,291.89591271430254,291.8433255404234,290.858049901668,291.27444523992017,291.1999480649829,292.01878612907603,291.78986572055146,292.2799147586338,292.1556676160544,291.85938672628254,290.8866169801913,291.3294353312813,292.03153257863596,292.85918385954574,293.1836885083467,294.02539176819846,293.308898718562,294.14675159426406,295.00701052322984,295.61286861496046,296.2690315498039,297.2423385460861,296.3732322137803,296.5765212015249,297.4955705301836,298.08534880774096,298.89091498823836,299.5620792307891,300.1151645369828,299.2654610699974,299.4790863543749,300.32287302520126,300.65097661456093,300.7176181846298,299.9412537990138,300.7047293675132,300.9176952308044,300.3877985482104,299.60750537738204,299.88797476142645,299.02397668594494,298.92452013585716,299.39636241598055,299.6446156455204,300.64160120952874,300.32500994810835,300.47518326807767,300.3771086852066,300.38000116916373,300.4591206954792,299.9714944427833,300.7090751170181,299.9032576517202,300.528361861594,300.2660108031705,300.98568049026653,301.23077617539093,302.1004238878377,301.17013313714415,301.64043297898024,301.42390533396974,300.5797714777291,299.93684207554907,300.3625518772751,300.04617046331987,300.6486538015306,300.7996942186728,300.07906365953386,299.37213306548074,298.7532760137692,299.3129272805527,298.35623161587864,297.6402735593729,297.5046624210663,296.92212812788785,296.9631834505126,297.07583376020193,296.20822089351714,296.44224685058,295.63904630439356,294.92037496343255,294.7911747167818,295.5364880543202,294.59518121834844,293.9235075991601,293.946831244044,294.15522216726094,294.6776831103489,295.3091078312136,294.54074861621484,295.0397690483369,294.6585135036148,293.8474425813183,293.3260638229549,293.5945599414408,293.21754829073325,292.4429789027199,293.1562794987112,293.9407383110374,294.6693864101544,294.0583551656455,293.2346049961634,293.7788754883222,293.48968824138865,292.9995954055339,292.5054950360209,293.43259253166616,293.33039003657177,293.94034804869443,293.07025936292484,292.3820333275944,291.39111533388495,292.2279819487594,292.8809845279902,293.23160615656525,292.8598175132647,292.14189023384824,292.48905600234866,292.31048637861386,292.9798760586418,292.86611874820665,292.7262338278815,292.16806030320004,291.5259818248451,292.2506165909581,291.73196735139936,291.1121906777844,291.0868344679475,290.8905390528962,290.4476861907169,290.4801076343283,289.9910482177511,290.7482569916174,290.8159967456013,291.2796606356278,290.53006075136364,290.99686143081635,290.9253021739423,291.5794952097349,291.3358239806257,290.3389412960969,290.86912201484665,291.6020773607306,291.2158085941337,291.55218466417864,290.83947225660086,290.31600920204073,291.0415060087107,290.64338022470474,291.47933454532176,290.90544307930395,291.2108069099486,291.9351442810148,291.78521871799603,292.2484844052233,291.70415265019983,291.0718924868852,290.193598379381,289.73343548504636,289.25475557427853,288.9266530745663,289.1232954785228,289.66495363553986,289.3098501916975,288.41394406789914,288.88398464908823,289.0921196253039,288.3159944191575,287.5171367148869,286.5574083607644,285.5799584100023,286.3905737120658,286.99356274912134,286.54538051597774,286.62520350981504,287.42865585675463,287.24165523797274,286.68049298832193,287.14452600246295,286.25994761195034,285.85835907049477,285.7002734732814,285.82435658201575,286.25255981320515,287.0736774406396,286.4692831649445,285.4962454033084,286.10764365596697,286.17962878057733,286.3067229324952,285.59892975492403,286.0105860289186,285.73995944019407,284.7698479713872,285.02058406174183,285.10716465394944,286.0234642731957,286.2929981360212,285.6084085130133,285.5028910166584,285.1331759337336,286.07431975053623,286.527482802514,286.81347718834877,286.0893612219952,286.182491378393,285.4165351833217,285.13549632625654,285.14588004816324,284.5828473526053,283.9782275776379,283.66349232709035,283.25815244205296,282.52827284950763,282.3960572294891,282.23454137099907,281.5074540763162,281.2579977205023,281.87209591967985,281.9382533375174,281.0380738545209,280.80560536589473,280.4483215371147,279.6216531782411,279.7347361445427,279.09070694772527,279.3625373682007,278.64021267555654,278.96230216603726,279.6721804034896,280.24189340136945,280.2873834730126,279.311598662287,279.67633687797934,280.3272351338528,279.5103269754909,280.3845755555667,280.96583850542083,279.9762036083266,279.6818518121727,280.34653065074235,280.55295409448445,280.78315159352496,281.23643051460385,282.110589007847,281.80260182125494,282.674612110015,283.399323547259,282.5153027703054,283.07827122323215,282.7094850856811,283.2810007929802,283.53989335987717,282.831925610546,281.86251020710915,281.38740639947355,282.057012878824,282.4069690858014,282.8681139135733,281.93207969516516,281.0328928842209,280.23203867673874,281.0029526515864,281.9674076260999,281.2163625857793,281.8151223100722,281.6456127986312,281.33109709015116,281.4440278830007,281.44944467721507,280.57562811113894,279.7832091348246,279.6037582838908,279.1714301407337,279.3398029450327,279.18295612512156,279.3039040439762,279.8176305955276,279.34447789750993,280.13419303204864,279.86019257223234,279.1467130263336,279.10889797564596,279.17520360834897,280.01129427505657,279.98549170279875,280.5879645170644,280.49799249041826,280.05841005872935,280.68624399602413,281.4736948492937,281.7945480234921,281.29424112616107,281.21565653849393,281.9405937716365,281.9941774769686,281.8370631686412,281.5085970549844,282.3578685019165,282.9102818085812,281.93102164240554,282.37358370702714,281.50738170789555,282.047184758354,282.60503999656066,283.1553421947174,283.9826514287852,283.9131970149465,283.70821664109826,284.3709882888943,284.08681798446923,283.8769965195097,284.44893756788224,283.9388835206628,284.3284680484794,285.12836830643937,284.56105380365625,284.7817760617472,285.05470268800855,284.2801644206047,283.691848970484,284.363176018931,284.79466377059,284.3656515730545,283.52470579044893,282.6348568703979,281.88382865116,281.73443835321814,281.98682274948806,281.8523968900554,282.55355404131114,282.40508967172354,281.66760928276926,281.10269323317334,281.1046144827269,281.3301308811642,280.6169389048591,280.9815494325012,281.82596182636917,282.3384540309198,281.45751990703866,280.5682410248555,280.52332906378433,280.14345986489207,280.3604457466863,280.0110895750113,280.7128450847231,279.9033364299685,280.06330265663564,279.3671458638273,278.8947542659007,278.7826676261611,279.06969354022294,278.23190410388634,279.1558070606552,279.44073768286034,279.8056251150556,278.917812243104,279.6613757107407,280.0001231995411,280.89876203099266,281.7499930872582,281.1479353508912,280.7226283363998,281.0594958169386,280.5942412111908,281.04061182867736,281.9399518324062,282.2495005023666,282.46342346817255,282.6279948023148,282.17575626214966,281.8179800915532,280.9972802363336,281.5332142901607,281.68891107616946,281.22272154921666,282.0857314262539,281.13734159013256,281.7844134545885,282.388072071597,282.3668407103978,281.8050083015114,282.0538328331895,283.0002331803553,283.9926549773663,284.471724930685,283.8218841170892,283.18380304193124,283.7285256558098,282.7563221156597,282.7399694719352,282.8755416520871,283.6445704754442,283.86159688653424,284.442198778037,284.84724221145734,285.8171598883346,285.5168519867584,284.8631456750445,284.7761748949997,284.8798515005037,285.71245977887884,285.75599849876016,286.71190736675635,285.97932876320556,286.9766842639074,286.6507345638238,285.72008073236793,286.09660893538967,286.22037148987874,285.8729411396198,285.5149909257889,285.17060885299,285.3156767738983,285.4476035214029,286.43807981861755,286.51217816909775,287.0195929943584,287.6272215163335,287.29824735596776,288.03329667495564,288.8883898486383,288.3986829770729,288.5314171682112,287.5539625440724,287.408716424834,288.2352970074862,288.0167551902123,287.9299209578894,287.3299881904386,287.16580787999555,287.3618954690173,287.5701940343715,288.1928330967203,288.654559138231,289.1794156753458,288.93524063704535,288.62129858741537,288.80690947547555,289.0077239247039,289.65490429895,290.20035174069926,290.53260573465377,290.4709939863533,289.97965743904933,289.4099105997011,290.3228842522949,289.3919671885669,288.7458704258315,288.94264819007367,289.65138224326074,290.1356333559379,289.6811575568281,289.16608843626454,289.8569410224445,290.4485421385616,291.23829173343256,291.51726150140166,291.09341704752296,290.5222703451291,291.4575487524271,291.1236478788778,291.68201840436086,290.7346489150077,289.98391179181635,290.59119881875813,290.4000689391978,291.1971563589759,291.6951333624311,292.5628435080871,292.89171809889376,292.0916469581425,291.43003485770896,291.9633749634959,291.75393242994323,290.7573663825169,290.14808592852205,289.89568210579455,290.71417377283797,291.54898617370054,291.63265894027427,291.2372364285402,291.5826668269001,291.0682602855377,291.93107441673055,291.52241171803325,290.8548071119003,290.1812511035241,290.49659418454394,290.9676520284265,290.5197601709515,290.55842651892453,290.9501273832284,291.686168785207,291.2096950863488,291.61679927818477,291.3000555150211,291.52332710288465,290.89124502101913,291.37019093427807,292.040501923766,292.8627408882603,293.61629190435633,293.26060721604154,293.68387807533145,293.2802994772792,293.390012355987,293.3908641682938,292.7763308142312,292.2028718460351,291.41005048993975,291.79773968923837,290.94084576750174,291.24106610100716,290.8953146743588,290.8090854571201,290.2072402089834,290.00254148757085,289.7916154456325,289.6996383727528,289.3092660163529,288.61764518450946,288.2891847169958,288.2063071290031,287.59570159064606,288.48407949181274,288.13764379685745,287.56934860209003,287.961372429505,288.80929443705827,288.9999835714698,289.378199568484,289.9798312843777,290.3414764003828,289.3883009981364,289.4936339566484,289.09993367129937,289.4886540318839,289.50514672044665,289.162596069742,289.2864328995347,289.8744718255475,289.19866361794993,290.11563339689746,291.0725038032979,291.64856475545093,291.3260528878309,291.5202206391841,291.75663930457085,291.9564360580407,291.52740376535803,291.55883470969275,292.1561253038235,291.4618261982687,292.19149522762746,291.2654450344853,290.4232068932615,289.533141637221,289.1972076399252,288.66579320142046,289.55065389256924,289.56915435474366,289.708383128047,290.5907862535678,290.90557603817433,290.51435758080333,290.9509355649352,291.66567782405764,292.58433236554265,292.92466672090814,292.46569884801283,293.16644470905885,292.56277979630977,293.268907237798,293.3330712770112,293.31826631119475,294.2416828428395,293.9681936749257,293.77031733002514,294.27858642628416,293.3899404122494,293.84003007691354,292.90474954852834,293.8502399851568,293.8615825911984,294.0668995589949,293.95585260540247,294.0736224511638,293.51881295163184,294.431327837985,295.3871072665788,295.01279740640894,295.6846458292566,295.2099380134605,295.47643364034593,295.8966737720184,296.31312785996124,295.49475613143295,295.7211227682419,296.424125331454,296.1489216084592,295.33831138862297,295.9576724250801,295.99131743982434,295.6995749217458,296.035827962216,296.1117470096797,295.4800347308628,296.36494006961584,295.8603164884262,295.05792204802856,295.79737058421597,296.45979007612914,295.8629760160111,295.09258073568344,294.22763109812513,295.0247715781443,294.5818674210459,295.4884829977527,295.047036989592,294.1260824436322,294.4863054375164,295.0432342248969,295.47705747326836,294.5521050966345,294.63950477633625,293.76472262106836,293.3872476713732,292.6505174250342,292.7454329142347,292.76838310202584,292.19372958224267,292.51442237291485,292.6748216301203,293.5068694418296,293.22316036652774,292.719972350169,292.09351354744285,292.799022027757,292.8425164804794,292.84944695048034,293.3784810695797,292.43082917435095,292.31700015533715,291.62408642238006,291.20300061814487,290.782092501875,291.3970656162128,291.575329456944,291.3785620802082,291.1314710890874,291.9274579593912,292.3112823171541,293.0911137778312,293.7665732614696,294.54113354953006,295.38451693812385,294.4214726970531,294.48819679627195,295.244135373272,294.88842936372384,294.3401579130441,295.2409626026638,295.7595945377834,295.49196118162945,294.5827856529504,294.01658890070394,294.46034551784396,295.29677051631734,294.6951249544509,294.9411748740822,293.9777622804977,292.9931759382598,293.15969546698034,293.1024447097443,292.79189829947427,293.36442682892084,293.93787949951366,292.95663335639983,292.32626498118043,291.6621283562854,291.98594579286873,292.02081984933466,291.51167152496055,291.6475956309587,290.80665596807376,291.0791978528723,291.8158384356648,291.4882141542621,292.3902185112238,292.15445021074265,291.85118801612407,291.59896133607253,290.7638093326241,291.22190949786454,291.23418508609757,291.53135554585606,292.47903332300484,292.59902294678614,293.58470136858523,294.2497794642113,293.3235142258927,294.1848675333895,294.5965036726557,295.10504413954914,295.865819635801,295.5128521695733,295.0883774724789,294.5142396967858,294.85936701018363,295.5881324466318,296.06816764874384,295.6003415999003,294.7966116447933,294.16243138862774,294.67142213042825,294.7520047673024,294.33823150768876,294.5203714403324,294.99209414282814,294.7518346584402,295.6199625688605,295.58659441769123,295.7761080991477,295.7586000524461,294.86933734826744,293.99458358902484,294.21149215474725,294.55287729017437,294.23309396393597,293.7230839515105,293.24780855188146,292.6617946890183,292.0741628459655,291.7902072323486,290.85367256961763,290.2071104310453,289.27658200543374,289.77516418881714,288.7807252369821,289.7276157559827,290.1439873534255,290.6331976731308,290.957710464485,290.2961549325846,289.6744423820637,290.39897741610184,291.313611142803,290.674635946285,291.39604584965855,291.2348895468749,290.2419308293611,289.44207489676774,289.33147862227634,289.8096621898003,290.01159581542015,289.4677446903661,289.62661475734785,290.1630580765195,289.41630170075223,289.7520062979311,289.22059066593647,290.0527976350859,290.82199636939913,290.0395089574158,290.8848679908551,291.38439820194617,290.98134962981567,290.7549814134836,291.7166806887835,292.1834618751891,293.1376318796538,292.88138133473694,293.8465949469246,294.15463879471645,294.30963301844895,294.97814199654385,295.8120196685195,295.26840098854154,295.2359852963127,295.832960402593,294.98281780350953,294.0855356515385,293.1337140472606,292.17886284319684,291.43046550499275,292.0145957171917,291.82674624491483,291.5066345622763,291.66948305396363,292.1961242053658,292.02275006845593,292.27041575079784,292.2495150594041,292.67927060090005,292.5099165523425,292.77322940155864,293.00678426399827,293.1905832681805,292.5008341614157,293.0467628254555,292.7391931549646,293.02081281412393,292.33718275185674,293.0024845190346,292.37206843309104,291.77601398015395,292.5920720277354,292.8480006242171,293.74388893321157,293.44544353568926,293.7576669882983,293.74000958167017,293.40393683547154,294.02461710199714,293.1973786451854,292.92041919985786,292.5313245737925,291.92804999789223,291.47783889761195,291.1281283199787,290.47432931885123,289.62835986353457,289.477102429606,289.09801845951006,289.0987840485759,290.07372085843235,289.81835680129007,289.2854442950338,288.4535628249869,288.70498852524906,288.2081222543493,287.21025209128857,286.3934626416303,285.82568052457646,286.5841265912168,286.66470733331516,286.43684230884537,285.4932325151749,285.51018353924155,286.00488770520315,285.277367901057,285.4272371334955,285.6824530758895,285.8548230836168,285.5235565328039,284.89754373952746,285.3556777667254,284.51865597162396,284.3256506831385,284.2423039795831,284.79378337971866,285.64934129687026,284.87876043468714,283.91068314481527,283.7864553295076,283.8614470362663,284.1437681154348,284.2572237434797,283.5427994085476,283.03530504880473,282.8200077121146,283.41891173506156,283.16013709874824,282.65206431411207,282.08642927138135,282.97783240582794,283.2977443714626,284.0951449642889,284.64913783129305,284.7873323308304,285.4417053172365,284.78197957528755,284.0875229043886,283.5037875082344,282.51634959643707,281.7058302941732,282.0100180101581,281.64306344790384,281.23413090547547,280.9594094287604,281.3684894554317,281.64147084159777,281.91324040386826,282.7740348270163,282.3138617137447,281.81679892819375,282.390261745546,283.0442728931084,283.32905628113076,283.44018114032224,283.36824879422784,282.5593724749051,281.84675882710144,282.8354822252877,283.220353808254,282.5697212833911,282.70957048470154,282.07695120293647,282.9455129732378,283.8137714480981,283.8325509731658,284.00258871912956,283.08765564858913,283.07237567193806,283.4895664458163,283.1505003441125,283.36783459736034,283.41017541475594,282.5430045975372,282.2160208686255,282.55227739503607,282.8027912080288,283.40832003438845,283.3354904646985,283.75831486517563,283.08825264452025,283.93532542092726,282.9525798698887,283.79341947240755,284.71126595837995,285.3176561733708,284.84937380999327,284.0220708618872,284.8327315733768,285.3433688147925,285.969583531376,286.9603284243494,287.89097343664616,287.2030094927177,287.1566184684634,287.6031861458905,287.81604427844286,287.59343049675226,287.26109898649156,287.0223003802821,287.4778212388046,286.94481327943504,286.70134177524596,287.12700592027977,287.900786830578,287.89121136441827,287.6220618747175,287.18379778275266,287.93494907114655,288.57081025466323,287.88707750523463,287.30675632692873,287.8145525683649,287.6078985314816,287.52547067031264,286.59875612379983,285.99182755406946,285.3930284776725,285.34128894424066,285.0718647981994,285.46550262672827,285.1964865643531,286.10882485471666,286.8531288173981,286.2043586098589,286.16573129128665,286.5879113851115,286.112301082816,285.4407088942826,285.160918334499,285.7611867748201,286.38917972240597,287.32162885414436,287.6377572696656,288.53101844806224,289.1840079864487,289.60935545526445,290.0093325530179,290.53156690392643,291.51972713973373,292.4625842864625,291.50098097883165,291.02119975397363,291.5028346227482,291.52471673861146,292.40778318885714,292.1763487062417,292.7702782540582,291.9051056331955,290.9210059023462,290.362973948475,290.8659969610162,291.65351471630856,291.0181202366948,291.22552416147664,292.2123117907904,292.95379372732714,292.74381075100973,293.053100021556,292.9471742496826,292.1363588022068,291.8523667375557,292.4565297276713,292.1957258041948,293.0041336193681,293.9483324852772,294.3440997004509,294.16529256105423,294.46055936580524,294.68127530021593,294.2611222383566,294.49637392070144,295.25735794054344,294.61885924683884,294.92825897876173,294.67666445532814,294.36957594705746,293.467923309654,293.0258894828148,293.31142647145316,293.97066428977996,294.66500221937895,294.18423917284235,294.7711915355176,293.956445182208,293.38398901652545,292.70956507511437,293.2959051816724,293.3925490179099,294.1154689947143,295.07376529090106,294.7199927410111,295.08064950071275,294.52216730825603,294.8051591673866,295.1820097505115,295.56388707784936,295.8306689155288,296.36118038836867,297.1286986512132,297.7158586247824,297.5031610392034,297.2880736622028,297.12604680191725,297.01831659674644,297.66357202269137,298.34723122091964,298.019140441902,297.4854803853668,297.88882087450475,296.9184428183362,297.0923190074973,297.9368558358401,297.70292698126286,296.89751770254225,296.5914084999822,296.6660056193359,296.6180351637304,296.994792544283,296.1480693593621,296.94933818047866,297.05902638006955,297.8394412668422,297.4878256707452,297.07511494029313,296.5114613333717,297.15348358731717,297.51355132926255,297.94791136076674,297.225689670071,296.5242146323435,296.4106687339954,295.9656373341568,296.01080258516595,295.08625315129757,294.52880196413025,293.83890808327124,294.5068595535122,294.8414643709548,294.48610395751894,294.1974401497282,294.6453207023442,295.4354408448562,294.69044331647456,293.84465627837926,293.76556370640174,293.21831471612677,292.65326767833903,292.8071033768356,292.4805304943584,292.9037557817064,293.5481924004853,292.9971855999902,292.5295191197656,292.0967517201789,291.8806857978925,292.5727681121789,292.752183672972,291.7982937544584,292.1342449230142,291.36425078706816,292.0621315264143,291.5619008997455,291.0965825468302,291.0980894425884,291.31689697830006,291.4954482498579,290.85258476575837,290.1682487940416,291.1210943860933,290.2476301137358,290.6047554551624,289.80095071392134,290.46596737904474,291.3011989444494,292.08387014688924,291.61151720397174,292.51383345760405,292.2009608275257,292.52004428301007,292.03163748560473,292.6273965793662,291.9382970533334,291.5236727106385,291.50260914163664,292.4101886753924,293.05829689931124,293.2929444662295,294.15471628075466,294.3201687554829,294.0293884933926,293.1360924653709,293.04311221744865,294.0026346030645,293.4961148877628,293.8190326038748,293.6441823798232,293.52810850413516,292.7419255534187,293.461776830256,293.4622242129408,293.022187708877,293.33618867676705,293.467374981381,294.42832615971565,295.2749264324084,295.4508105996065,294.6610552696511,294.3700422765687,295.30799137428403,296.24497698294,295.6147352908738,294.712817708496,294.35877663549036,293.7126315566711,293.6973924790509,293.9800377432257,294.09977711131796,294.44364818139,295.38627956528217,296.0684350496158,296.8307374934666,296.58842053916305,296.3784281266853,297.0398089941591,296.3494940288365,295.859621421434,296.8085103374906,296.1832685340196,296.2600500509143,296.62406734982505,296.51275200396776,296.5486292443238,295.63962519401684,294.80136938998476,294.61865389347076,293.67646298836917,293.7458776831627,292.90876874374226,293.5754434093833,293.9284301386215,293.85825363732874,293.11574778566137,292.5842509698123,291.6169333155267,290.85876433271915,289.9566164962016,288.98255815403536,288.0320653594099,287.3211797992699,288.238889596425,287.356025648769,288.33432779833674,287.4667149079032,287.3979313960299,287.28516590362415,287.24833358684555,287.85941394697875,288.02792990906164,287.3550009080209,287.7976401410997,288.44957316480577,287.4507511709817,286.84266293235123,287.0746838469058,286.451584239956,285.67407953646034,286.26846248237416,285.3871876243502,286.28120760899037,286.9669204731472,286.8718189415522,285.96877691568807,286.96658261073753,286.8582962616347,286.135729059577,286.1953015588224,285.72842141473666,285.67597300419584,284.7561534997076,285.2381889675744,286.0874986201525,285.8844251190312,285.68687197659165,286.24890194507316,285.46567790256813,284.91120843589306,285.83176738442853,284.9303384455852,285.19623479712754,284.3894498362206,283.6241421629675,283.9670940260403,283.8777677146718,284.7217379868962,284.7513853921555,285.6389820887707,284.88168546929955,284.42757096886635,284.68800721829757,284.00020185718313,283.3007504870184,282.8944496642798,282.67538077384233,282.0336832436733,281.3274186979979,281.8109806617722,281.94099939847365,281.2896754364483,281.6566083370708,281.3942424398847,282.31603581272066,282.1528444024734,282.6679540099576,283.6657530935481,284.3283668984659,284.4024612084031,284.0319379181601,284.1393944704905,284.9573498526588,285.88571666833013,286.69741034600884,286.75283103762195,286.272893499583,285.52734573883936,286.44822751451284,287.0407693446614,286.501106638927,286.85337499529123,286.36900068772957,285.871130311396,285.22062526550144,284.9857123019174,284.61309097427875,284.7065888643265,284.79187653493136,285.7220924613066,285.11545206047595,285.5860254080035,285.27326083229855,285.70885241031647,285.2106339717284,284.23537841578946,284.28777951560915,284.28218724159524,284.5476301824674,284.7024964154698,284.1679834057577,284.4385660076514,285.2372589688748,285.75377584435046,285.0051738745533,285.6408607875928,285.5647308342159,284.7687793010846,284.7140377708711,284.1668244674802,285.0489574894309,284.79788206284866,285.1441486212425,285.9980016066693,286.87165577942505,285.94919194839895,285.272773635108,285.4422602811828,285.7721378696151,286.64002034580335,287.3708876008168,287.6691743140109,288.3161151041277,288.92132600583136,289.44389304099604,289.8726686616428,289.1059038983658,288.4654494826682,287.56396563956514,288.41210870957,288.15068252850324,288.28307275660336,287.7429421208799,288.2678717672825,288.94989860709757,288.2096604546532,289.0505497395061,289.37530581187457,289.3583860825747,288.66618172219023,287.79073773836717,287.68851570319384,287.8615368460305,287.54055566806346,287.83080184226856,287.5290374071337,286.60397236887366,286.157509686891,286.0398561106995,286.62627065274864,287.4031495153904,286.70887619256973,287.6416536322795,287.79074080940336,288.37304619606584,287.65256046829745,287.9605586975813,288.2546468744986,287.646854323335,288.03727943077683,287.20484045986086,287.9206210174598,288.50153155531734,288.5005246978253,288.79731546435505,289.40685278130695,289.29699841327965,289.6372909480706,289.1830480713397,289.88968360982835,288.9198445691727,289.1203374178149,288.4529353901744,289.2770514176227,290.1338579156436,290.1938764154911,290.6309929015115,291.5550514510833,291.8083249395713,291.3899116925895,290.512135470286,289.9483439535834,289.70968747418374,290.5006379070692,290.44196995394304,290.09150059055537,289.45085837645456,290.28417106345296,290.79574968805537,290.7322084871121,291.3267311472446,290.46467710705474,290.1304455231875,290.1770921656862,289.7484947456978,289.82151654409245,290.1734057813883,289.6025875839405,289.81237673340365,289.416643159464,289.2601273385808,289.53674001665786,289.77339917840436,289.93798522511497,289.01697467733175,288.0474391449243,288.03070771321654,287.3503718441352,287.93282051198184,287.9948296453804,287.79426932986826,287.64000581903383,288.2763641513884,288.59326472645625,288.52707596309483,287.85753663023934,288.2521477378905,289.1023228773847,289.57017082115635,289.5158352823928,288.64857455249876,288.7994641829282,289.75697967084125,289.2954741916619,290.04561770008877,289.38080515526235,289.064757656306,288.4863526369445,289.42821874888614,289.2285102503374,288.591101154685,289.45807545119897,289.71670135948807,289.5591060249135,289.10052204318345,289.0666453326121,288.95477515878156,288.79293239535764,288.54209665814415,288.2067967359908,288.56783839082345,288.5236107814126,289.031378953252,288.9104247475043,288.1608441909775,288.29949222365394,288.36809884617105,287.85343295894563,287.68159498553723,287.9622349408455,287.2493866798468,286.8865835298784,287.4794429936446,287.3640586375259,287.83264300134033,288.4298589946702,288.0403508627787,287.2657882506028,287.032860187348,287.9798114350997,287.79762290092185,288.7425963515416,289.12783415755257,288.99679900938645,289.1053223917261,290.087606057059,289.8995161270723,290.63228616304696,290.9896499575116,290.96577039174736,290.3413923555054,289.49720640666783,290.4069716143422,289.57218711823225,290.1670671245083,289.735592010431,290.6507862857543,290.7458387524821,290.58794135274366,290.81565852323547,291.2919527562335,291.78155396692455,290.9447162821889,290.6673363344744,290.65376133518293,290.65871509863064,290.01197350304574,290.4792210762389,290.9588645459153,291.48150289896876,290.7407950796187,290.5265154549852,290.1910759587772,289.3765602479689,288.49355128826573,288.45563694415614,287.5020011733286,287.8150195670314,288.00680304318666,288.8753089234233,288.0137305809185,288.18698688736185,287.20021423557773,287.20445643365383,288.10256020119414,287.7490731193684,286.9016770818271,286.372237094678,286.63005634909496,287.10578954359517,287.71446421416476,288.67833069711924,289.11510797124356,289.57113214349374,288.93219352699816,289.4284345479682,289.5184515179135,290.427183188498,289.74390639178455,289.3160927030258,288.5249368506484,288.5052870120853,289.14923607138917,288.98249271931127,289.28290148219094,288.42101645842195,288.8509146668948,289.05006118072197,288.18587190518156,288.72409215709195,288.22469677217305,287.97044546483085,287.07588447164744,287.5924783013761,287.43719963915646,288.16010790970176,287.34909789217636,286.94326266413555,286.25486186658964,285.6157954907976,285.60911276750267,285.49136797944084,286.01045334432274,286.7866891329177,286.5140389841981,287.41711633931845,287.68841152545065,288.3440882479772,289.1938374424353,289.6094756331295,290.08130427869037,291.012631803751,290.3254892420955,289.3318892503157,288.65281045250595,288.0672014062293,287.7868767869659,288.1583945774473,288.4304812317714,288.85587044339627,288.46420903736725,287.70310956286266,287.37000645603985,287.98074387246743,287.3765918216668,287.1142535870895,287.1189679140225,287.35913394764066,287.6266385940835,287.58213923173025,288.3320849421434,288.7951124338433,288.8226299355738,288.0790551020764,287.4750413419679,286.7039773003198,286.5294224671088,286.10508772497997,286.60867199813947,286.5650149532594,285.89457772439346,285.59445671970025,285.1603422034532,285.1004005991854,285.9711731849238,286.59897880023345,287.3029435593635,286.903177046217,286.1941448459402,285.2898259242065,285.5609122845344,285.738092223648,286.48072586068884,287.43650545785204,287.5229993937537,287.48579744948074,288.15006216289476,287.66662217723206,288.23479449469596,288.7890354245901,289.63894710177556,289.74714027298614,289.34175769099966,288.861210284289,288.85221366537735,289.13904955936596,288.83221776690334,289.37861397489905,289.586085960269,289.16641050670296,288.71623850800097,289.13743471959606,289.3467784416862,288.8147405125201,288.838955483865,287.86266133002937,287.14253026107326,286.25378581369296,285.5265206703916,284.5318319853395,285.25737968320027,284.80978021398187,284.63898684317246,285.55888488097116,286.43187090707943,285.9030580902472,285.56482663424686,286.2160536563024,285.6090999385342,285.4239867203869,285.1357994941063,285.247113567777,285.9426459800452,285.6689364365302,285.04653972992674,285.22030109958723,285.6078337552026,285.5491097946651,285.5458147521131,285.1743146874942,285.22914450708777,285.3486873083748,286.2064084112644,286.50466357544065,286.05506641278043,286.17298146383837,285.61382113350555,286.27699322160333,286.9305821387097,287.8505312842317,287.1745959580876,287.26362192304805,287.2546445191838,286.47155843442306,285.9034316134639,286.2224174081348,285.9326998773031,285.9204746414907,285.9478758140467,285.0321271419525,285.2402034853585,284.7079647453502,283.8439083751291,283.05644457181916,282.41854660538957,283.16479844227433,284.01940059755,283.63137759501114,284.1180403092876,284.4555099494755,283.91954760765657,284.5075870756991,284.3803734215908,285.0526776923798,285.6458563664928,286.3652062099427,285.4614311004989,286.1664497759193,285.2982314582914,284.4589074566029,283.78303049784154,283.1901776511222,283.1195855969563,283.3630169550888,284.27091335644946,284.2890758649446,283.4604008770548,283.25012160884216,283.70640293927863,282.7730172290467,283.6740261944942,282.8133496795781,283.2411791444756,282.3758911509067,281.5944199766964,282.0096505372785,282.21896771062165,282.82883639261127,282.4831205061637,282.17604333069175,281.70052867848426,280.94052137527615,280.2693266752176,280.063219897449,279.4158177492209,280.2839076858945,280.86555335111916,280.76543397130445,280.1969629009254,281.08322468213737,281.6022462854162,280.92568399058655,280.4025552123785,280.6800490603782,280.86960144201294,281.7799197314307,281.611738005653,281.73616319987923,281.29412279697135,281.73240868840367,282.16523251635954,282.08745575044304,281.1408431590535,280.7459752461873,280.9052064390853,280.5471743545495,279.74059163825586,280.7073584436439,279.9516667537391,280.1336198817007,280.7519730916247,281.39287679921836,281.2958737257868,280.71822299528867,280.75280490750447,280.6574085908942,281.4753104550764,282.46207787981257,281.5868100342341,280.65121348388493,279.98096435144544,280.15658142231405,279.43004110781476,279.6618804866448,279.8523102318868,280.203298445791,281.040944413282,281.09566552424803,280.1503463308327,280.28880809247494,280.0389562966302,279.24334537470713,279.53360441327095,279.2052032263018,278.4221358699724,279.3305560783483,278.96275001810864,279.2231838996522,279.13822868140414,279.24518169881776,278.89155606692657,278.71930120233446,278.9101079883985,277.9332098029554,277.5255549629219,277.6191390529275,277.8250356083736,277.87341177184135,277.69743108795956,277.2392082870938,277.1444209809415,277.60781343188137,277.5754016721621,276.9512773803435,276.143922353629,276.6024899976328,276.29176972666755,275.2998719299212,275.7493304400705,276.406038837973,275.6003350643441,275.14270196389407,274.3883995250799,274.01526573859155,274.2920788456686,274.72513647330925,275.51398425223306,274.9966691993177,275.7716853390448,274.84366146987304,274.60103823663667,273.86367686325684,273.96340798726305,273.7197241582908,273.40799784241244,274.063026341144,274.72176377056167,275.2805496468209,274.5219717877917,275.33118287473917,274.4605560749769,273.68843222549185,274.2172163487412,274.5273662507534,274.68679813016206,275.1550340214744,274.3031600387767,273.6958114448935,273.16262283874676,274.1139305154793,273.36162265436724,272.80957175791264,272.2469104155898,272.1118474509567,271.9501539589837,271.7581367441453,271.850170888938,272.47986657591537,273.45527610275894,272.5640913392417,273.25529739353806,273.16122181667015,272.6559720635414,273.112980466336,272.4614279544912,271.8570103812963,271.8508035908453,271.00685017183423,271.07735634362325,270.31931378273293,270.2627843488008,270.9678734135814,270.7064941385761,270.7635118709877,271.2930978140794,272.18416186608374,272.2153248251416,272.24519012635574,271.83498918032274,271.25333190569654,271.5455143065192,272.3353336676955,272.9944784049876,272.50091070123017,273.1137652117759,273.1401456701569,273.1122999372892,272.6706271781586,273.19103686884046,273.7748212143779,273.9589472152293,273.8041544877924,273.3344009271823,273.09145107585937,272.9507466442883,273.60621416708454,273.8476116620004,273.80648981500417,273.04643822228536,272.8242362863384,272.91396963689476,272.6550277178176,271.95697406027466,272.00551479449496,272.21160992607474,272.7402570443228,272.4865315682255,272.4640174661763,272.1650880109519,272.7687526354566,273.6053385781124,273.5611713049002,274.0475643207319,274.51863137679175,274.86723290989175,274.1159975286573,275.0906412154436,275.4991118814796,275.12251457897946,274.5447457754053,274.4872119757347,275.0816511907615,275.17528409464285,275.92954799486324,276.03060214594007,275.42513804044574,275.8909656768665,275.77380973892286,275.44996218848974,275.0350590152666,274.77259923983365,275.0580459246412,274.9107849765569,274.11219071689993,274.5903646759689,274.2146016913466,274.9183047809638,274.79024575743824,274.2017784207128,274.7770340577699,274.3017541933805,275.0095719783567,275.82363961962983,276.70291223889217,276.1260461336933,275.8140161135234,275.90926893567666,275.9011940085329,275.489325044211,276.36755809001625,277.0762992356904,276.24592439085245,277.1874564192258,277.6635676799342,278.59928975859657,277.61982182133943,277.694373941049,276.88504824088886,276.44678666768596,276.83446320611984,277.569540807046,278.5657269633375,279.1620646221563,280.08879252383485,280.4721646825783,279.5163866057992,279.5779598467052,278.6185496565886,279.029250618536,278.16691645560786,277.40924692247063,277.1155041749589,276.7940049502067,277.748591594398,278.33227079408243,277.5642707995139,277.58000551443547,278.4750413103029,277.6112257069908,276.7323981975205,276.4992025629617,276.371482453309,276.98925348278135,277.8869207384996,277.17542159184813,276.8606924964115,277.1334878038615,276.22587101720273,276.3056840384379,276.67601182404906,276.43932872870937,276.4455640432425,276.7149709565565,276.06938535068184,275.4718253435567,274.59233039757237,274.7643993315287,274.8475713208318,273.89587922533974,274.79573092004284,274.4837868087925,273.7626939066686,273.14079600945115,273.49072876153514,274.1174045796506,274.92632615892217,275.2209958760068,274.5367100094445,273.72689828649163,274.5568094076589,275.02940579643473,274.04153170483187,274.23880165815353,274.8674450442195,274.38147176010534,274.98847671737894,275.8297157436609,275.38777094427496,275.92444291943684,276.0142222093418,276.9658029512502,276.5239652642049,276.8740329234861,277.70052769687027,278.2830282477662,278.17149783018976,277.2955654570833,276.8437959528528,276.91894776467234,276.9465014701709,277.5472468822263,276.83816700894386,277.03800308611244,276.4813744616695,276.05138709116727,276.1283091506921,276.52088988013566,277.0667211106047,276.8711745622568,277.60842319298536,277.34168067667633,276.7105936566368,277.47772345365956,277.94994200766087,277.6809798302129,278.1894625388086,277.99470545258373,277.81023714412004,278.37662731902674,277.61700187204406,276.703638730105,277.4016426736489,278.365282246843,277.53699170798063,277.394741859287,277.0245639933273,277.6763501591049,278.4935673722066,278.40789476409554,278.74359864695,278.89193536760285,278.8216924518347,279.0989819993265,278.34163756575435,277.5942726591602,277.6978862006217,277.27989544020966,277.1231549442746,277.4464146946557,277.4104090221226,276.58817225974053,277.24180573783815,276.550408187788,276.5022783642635,277.3366585653275,278.31385580822825,278.4352919915691,279.0076960083097,278.31173711270094,277.40592861548066,276.9277101159096,277.34598335204646,276.52576120896265,276.0624917517416,276.74922774080187,275.77343101240695,275.22246200824156,275.87685721181333,274.88447484048083,275.4925946095027,274.62464740732685,274.86970157083124,274.20981464441866,273.86241827346385,274.4822299834341,274.9830782888457,274.7824107282795,273.95253879437223,273.80913961771876,273.5955774351023,273.3630127510987,274.11260404251516,273.3465444664471,273.30528751574457,274.18874816643074,274.17364303022623,273.2307684775442,272.2495823195204,271.2906150808558,271.40949198883027,270.83199312584475,271.38470442965627,272.15604690648615,271.3558248667978,271.8191994908266,272.64368756860495,273.46871198993176,273.73113088449463,272.98473547631875,273.61071654828265,274.4109843936749,275.2695239679888,275.7061713989824,276.46807622537017,275.93763990094885,275.4173231855966,275.484880044125,275.5153766660951,275.1985094533302,274.66748580429703,275.1320581380278,274.66873340588063,274.0299179293215,273.213198015932,273.1953503191471,273.7440174538642,273.2286366582848,273.7214366341941,274.3263640026562,273.88733667042106,273.9896459802985,273.8511895639822,274.22608965821564,274.5257333586924,274.78536352608353,274.504510150291,273.6397854015231,274.50784855429083,274.36001840932295,274.0163153563626,274.1155210672878,273.21231042267755,273.5175142432563,273.1430899957195,272.43973042676225,271.74525623302907,271.0000964803621,270.9137762412429,271.8279122263193,271.7125073010102,272.6097839269787,272.3868924002163,272.4390967534855,272.274944963865,273.15923403482884,272.9789421716705,272.88492212910205,273.6134023712948,273.63514133915305,273.52649448020384,274.47710808878765,275.070010359399,275.8496047160588,276.32095918711275,276.3399230474606,277.186479922384,277.83729373989627,278.8332757051103,279.81916209869087,278.9802713212557,279.4335312596522,279.5110968509689,280.1834545349702,281.1280797626823,280.8252796125598,281.09021961083636,281.65162672428414,281.47298765415326,281.7480192859657,282.64502403559163,282.2686696010642,283.0230730641633,282.12065415037796,282.63018844882026,282.646147204563,282.311630286742,282.9021020946093,282.6857224549167,283.68263590103015,284.6183592057787,284.50631546461955,284.4591735927388,283.7341090189293,283.72000913787633,283.8962020264007,284.074531623628,284.3436761959456,285.29030093131587,285.3976148343645,284.56792540615425,283.79078982491046,283.66156978113577,283.5224543949589,284.14462855877355,283.7628713375889,283.302101067733,282.93299095192924,282.6183159002103,282.1132647707127,281.9383323183283,282.7185967192054,281.9044876648113,281.98167996574193,281.7946892580949,281.51287513552234,280.8528889808804,280.6491503142752,280.20955088781193,279.9031319869682,280.8132401499897,281.22298820409924,280.49973711324856,279.77678731177,280.70793610531837,280.3069324726239,279.92834130954,280.14025619020686,280.69144201418385,280.42697411356494,279.7664938522503,280.15894064167514,281.1047429703176,280.57974812434986,280.2486843825318,281.01822815230116,281.1207522195764,280.29945588996634,280.25080217793584,279.48823339352384,279.43015808053315,280.2388378819451,279.65286950115114,278.74970430275425,279.7078758860007,280.08219018252566,279.11855193646625,279.70093789091334,278.7769392495975,278.9596908977255,278.6355194216594,279.1417659530416,278.8299165260978,277.8454987728037,277.3382219886407,277.1580623211339,277.8561785938218,277.60538900690153,276.6594325271435,276.5126587729901,276.1762433797121,276.9704051092267,276.05450081126764,276.79125771531835,275.88959008222446,275.39089610707015,276.1099711977877,276.42519756639376,277.13979918230325,276.7278440226801,277.22636854089797,276.77257010899484,276.220505873207,276.24308085115626,275.9896522136405,275.6727671120316,275.4426087993197,274.92655296158046,274.41075569577515,275.0000877981074,274.36700150044635,274.69793241424486,275.57456324948,276.12256519077346,275.34894888522103,275.9576619565487,276.30501408316195,276.3605968146585,277.0129377474077,277.51252164691687,276.64259860338643,276.0429972130805,276.1337588336319,275.14851823309436,274.49335423251614,275.3362365704961,276.20842960709706,276.7179164858535,277.55664920201525,278.50302427168936,279.0052182273939,278.37715979944915,279.19131070468575,279.57724981196225,280.1710182186216,279.39275401085615,278.5034383293241,277.62209493946284,277.65925258770585,276.85607863776386,277.17177401669323,276.3856676411815,275.7936386349611,275.39786932384595,274.8636071542278,275.52458283538,274.90426438162103,275.4307370753959,275.5717442352325,275.20540951844305,274.64374096365646,275.1512055476196,274.2986654820852,274.7478320659138,275.239635205362,276.05041337851435,276.29232446523383,275.99868077551946,275.77778586093336,275.84851745842025,275.0984016209841,275.0601362157613,274.56439916417,274.49969314597547,274.1678774054162,274.5005633938126,274.3016095776111,273.3873022622429,274.0753915878013,273.51828678231686,273.9934434541501,273.3930452722125,273.5880350349471,272.79217550577596,273.7449443503283,273.75805325014517,273.77394346147776,273.4810217390768,274.39879869297147,273.87336172070354,273.99126884993166,274.97683544130996,274.12844262830913,273.58373319823295,272.81234963191673,272.39146628649905,272.037792683579,271.92338256631047,271.9601090955548,272.6752012055367,272.99141026241705,272.18331316066906,271.80258728191257,271.6314741470851,272.04656184557825,272.4788952716626,273.43845711881295,272.8759520971216,272.4977711266838,273.2229898786172,274.1515882341191,274.3761226120405,273.8069259766489,274.65481619909406,273.81160699622706,273.63453096104786,273.94396411720663,273.6370542999357,274.5240364810452,274.7230773335323,275.24301076866686,274.9077033805661,275.31542213633657,275.83636046992615,275.6512324246578,275.0227746795863,275.43243432603776,276.04311123117805,276.0636969972402,276.6991047379561,276.1729374290444,275.50205833557993,275.8902057055384,275.61369044333696,274.8623640583828,274.5554620651528,273.60458409320563,274.071035111323,274.81144878733903,274.8210570025258,275.3020951622166,275.64563949545845,276.24502531811595,275.52130494685844,275.3246735269204,274.72888716124,273.9100751564838,274.0045299716294,274.2821895070374,274.31842360273004,273.68736861553043,273.96448588743806,274.23474239138886,273.49873250024393,274.24530830886215,273.987288184464,273.56152591481805,272.8525543999858,273.27054332755506,273.60176455182955,273.26027138205245,272.941632038448,272.1665605385788,272.0613692915067,272.13316036760807,271.6485183816403,271.76275444217026,271.0425784243271,270.64640288380906,270.77784896455705,271.5654091266915,271.081102816388,271.16572498204187,270.59966583549976,270.9647293887101,270.1297192024067,269.8783456883393,270.14739025663584,269.2506069098599,268.33390422491357,269.21893414249644,269.3759364639409,269.6551511157304,269.05327818822116,269.16876907553524,270.11786628421396,270.8060891972855,270.6959056388587,270.4390349332243,269.8168962597847,270.5444037350826,270.2401227024384,270.3559353458695,269.49450629670173,269.1172249559313,268.7050400516018,269.44372170604765,268.54358304524794,267.94444327708334,267.56843111664057,266.7389976545237,266.3875890611671,265.74679565103725,265.8025117679499,266.3870144332759,266.6865533506498,267.38252002839,267.49761640978977,267.3890317743644,267.4438789188862,266.5358336409554,266.56312053790316,265.638761326205,266.3663960425183,266.88224529568106,266.3938602767885,266.9074615226127,267.490465734154,268.44808520097286,268.22723471652716,269.22065959405154,269.0558730484918,269.5286181597039,269.4526835368015,269.2106304625049,270.1676514809951,269.45463041588664,270.25154758105054,271.1307570701465,271.27176748681813,271.61317958915606,271.9462496917695,271.53847037954256,272.21224892744794,271.55915031954646,271.2607220923528,270.700773275923,269.73499393695965,268.77311164839193,269.31217853166163,268.4808020722121,267.71023575542495,267.77248562686145,267.9501999039203,268.06809556949884,268.7849940042943,268.75929998233914,269.1415693415329,269.43829487031326,268.6767709548585,268.21127910353243,267.2222763337195,267.500270659104,268.4568054941483,268.7790442556143,268.8080573808402,268.19113271217793,268.04471966577694,268.2770343818702,268.0961199630983,267.5872609545477,268.58562514698133,268.1525892978534,267.38252469711006,268.324489439372,268.6670053815469,267.7488001245074,268.20928554981947,268.2081479090266,267.59314754232764,268.4879372389987,267.84312917431816,268.4323509838432,268.1499027214013,267.2593643167056,266.96346575114876,267.65754274930805,266.7274309238419,267.14397017192096,267.25709509989247,268.11238238122314,268.5004500760697,268.7010081205517,268.7777980109677,268.22334904549643,268.8831009492278,269.19461045833305,268.665255472064,267.9230621699244,266.9698266698979,267.8355945125222,268.36314477352425,268.7270414987579,268.7098873811774,268.899933504872,269.4707467299886,269.58527759229764,270.51587225310504,270.32606331491843,270.51240360038355,271.17541406163946,270.83555913576856,271.48696137359366,271.71923361811787,272.42104651080444,272.47269069217145,272.405551484786,272.8599560749717,273.2924310355447,273.50886618252844,273.67306136293337,272.68801954435185,272.3747328487225,272.1738275438547,272.45050968742,272.6660457588732,271.8564362274483,272.08994439663365,272.34920358704403,271.8708100793883,272.2508989814669,271.99038789002225,271.84415612369776,271.11120063625276,271.7692878842354,271.37124429177493,270.45805930159986,271.0430663181469,270.65161658776924,271.5787309934385,271.00728246057406,270.4593390994705,271.08750704070553,270.3034830936231,270.01104603148997,269.39540726924315,268.500997106079,269.47299528028816,269.0028930515982,268.1588954515755,268.4544675210491,267.8476054519415,267.63409692328423,267.4731160942465,267.9823305453174,268.97177657624707,268.84609602205455,268.9590242477134,268.62563997646794,268.72114161681384,268.492292126175,267.96989512071013,268.26136627048254,268.24689208110794,267.25837256666273,267.0577410492115,266.9111537360586,267.57952556572855,267.1556537025608,267.5255329431966,266.63139678537846,267.4099399317056,268.0560246249661,268.7175688371062,269.56792984576896,269.2548458040692,269.1484537026845,268.72684211237356,268.5844355537556,268.30872833542526,267.5298999059014,267.2685604323633,266.6078831399791,266.3961239955388,266.7194528989494,266.2888458282687,266.8993717082776,266.91234367294237,266.5723797120154,266.5996643989347,265.628368826583,265.9260391178541,265.1520659001544,265.4109262037091,265.8528189654462,265.9089089324698,265.38554234663025,266.0160403577611,266.4570902804844,266.6361570684239,267.0947156767361,266.11381398607045,266.83095668582246,267.5350754139945,267.18973470292985,267.9216193538159,267.9489915911108,268.57136293686926,267.8739644275047,267.20477452268824,267.73660099087283,267.9325256529264,267.5136441546492,267.1992050013505,267.2640978349373,267.78651074692607,268.7227753419429,269.647915976122,270.53555637504905,271.1558602210134,270.32463376643136,269.5945458295755,269.73454679967836,269.4420471834019,269.7905118530616,269.04356799274683,269.584501338657,268.6892507127486,269.0686007849872,268.8770217918791,269.511205652263,270.08040257543325,270.3578268624842,270.2191686499864,269.59714293060824,269.0582281234674,268.6773804426193,269.6086253421381,270.2902921703644,270.66673654085025,270.59594238922,270.45984151167795,269.97259785654023,270.21965131768957,269.41777442535385,269.5833014557138,269.87825968209654,270.5157313593663,271.1628291052766,271.9137441511266,271.35546472109854,271.8896268750541,270.99882842972875,270.7544320211746,269.82295228913426,270.0156735708006,269.32181940134615,268.42004570318386,269.30019563343376,268.30041308887303,268.791413388215,269.2545041302219,268.8843755531125,269.18773157708347,269.34256970882416,269.0617096382193,268.38718915963545,268.4868457955308,269.1693062246777,268.3076348626055,267.5035277083516,267.9582676636055,267.5125788478181,267.3169095586054,267.21874103695154,267.5919318040833,268.3376138061285,267.59579842118546,267.4063008488156,268.4054341991432,268.30030310107395,267.9319439763203,268.5506817419082,268.2651186310686,267.98163856146857,268.2991909086704,267.51645897421986,267.56637527700514,268.1679336768575,268.2062276089564,267.90989553788677,267.951389092952,267.4378610122949,267.9434974095784,267.72720599453896,267.8173388876021,267.2808977798559,266.4935874361545,266.6531452308409,266.8844265914522,267.4184767236002,267.9807901084423,267.80959392432123,268.4054629006423,269.26687279809266,269.3453261437826,269.5303168380633,269.224127096124,269.23578479187563,269.29568587522954,268.4059381047264,268.58453599223867,268.5580427432433,268.99561367509887,268.63467941386625,268.16395956324413,267.46312982356176,267.24222536059096,266.428676973097,265.4860994517803,264.5669525912963,265.42362112225965,265.85071458946913,266.13519740942866,266.4669732134789,265.9126934190281,265.8717515571043,265.1804281962104,265.1639381237328,265.86442933185026,265.6488623181358,264.79585183924064,264.3757969797589,263.5322781642899,263.8093763603829,263.63989020185545,263.7127501410432,264.48548207851127,264.32969325082377,264.57377985911444,264.44571577291936,263.7033449993469,264.6365610100329,264.28444059425965,263.63599088136107,263.8554780720733,263.2736978610046,263.8372779022902,263.3609532043338,262.66536510922015,262.2669412926771,263.1642005443573,262.97226889943704,263.8966051256284,264.83361218636855,264.26743570156395,263.8199137542397,264.4082698985003,263.6400822759606,263.9017213177867,263.39536553202197,263.7840223973617,264.3179868357256,263.98158982535824,263.20404382795095,262.74863826390356,262.04462005617097,261.3786694407463,260.9805359975435,261.5527994190343,262.3325733211823,261.7537301913835,260.98847877793014,261.4423485454172,260.6842800634913,260.80550934560597,260.6241489937529,260.5315850581974,259.76996092638,259.3633415652439,260.12744542583823,260.1791442614049,259.44963367516175,258.6519748279825,258.50258027389646,257.6653248765506,258.280541818589,259.2005131910555,259.94614114705473,260.34993876097724,260.46714956732467,259.65157274203375,260.5401776973158,261.4707114379853,261.5915680886246,261.26995767094195,260.7817719732411,260.37475561583415,259.4141299277544,259.6747389626689,260.11743186507374,259.91059431200847,259.8494816804305,259.1106646810658,259.05965508241206,258.76338267466053,258.10213529877365,257.91494914889336,258.1533081023954,258.06495735095814,258.3437638245523,258.478960337583,259.19695855816826,258.7398992520757,259.1177917663008,258.5329680312425,258.7930965330452,258.7218921035528,257.9192541320808,258.2742412574589,258.5435053696856,259.4192266156897,259.1383871692233,258.93580654170364,259.4464090373367,258.4777864241041,258.7957575148903,259.70631059492007,259.2548447479494,258.34868917474523,257.572180300951,256.67141425050795,256.6578950341791,256.09495852701366,255.5732077532448,254.95810697507113,255.01539047062397,255.14550516474992,255.36530047096312,254.9218645771034,255.3974012862891,255.37023338489234,254.80717976158485,254.2914414461702,255.00939916586503,255.60161853022873,255.28760115755722,255.6006398065947,256.197747963015,255.67395585775375,255.24559181928635,255.84572250489146,256.70772133301944,257.4339788244106,257.950194937177,257.252284609247,256.2718764441088,255.49860525457188,254.76481042290106,253.83690139465034,252.9442450478673,253.79336867574602,252.91461964137852,252.190076418221,251.46476557431743,251.23634909512475,252.23522185115144,251.72319473698735,252.41559873102233,251.90675057983026,252.58715751068667,252.98118091607466,253.6810548105277,253.937567605637,253.59313643351197,253.5930662206374,253.49675120878965,254.30618885345757,255.09113368252292,254.57107445271686,254.5817920700647,254.05235334066674,254.54692083597183,254.77679920755327,255.0808532112278,255.3070490024984,256.2468412411399,257.18175967689604,256.2646730961278,255.51252776850015,255.07689953083172,254.96603963710368,255.430097324308,256.0678828773089,255.341187373735,255.69992242893204,256.4729953389615,255.81867078179494,255.21391157712787,254.73713575210422,254.91763976868242,254.5653424472548,254.1041526622139,254.02960762241855,254.5767558743246,254.59625822398812,254.64944997336715,254.17844879301265,254.6853200001642,255.07222866918892,255.53791734017432,255.53702777810395,255.9775484558195,256.73945639748126,256.26018071360886,257.11113623389974,256.54701214982197,256.96530584525317,256.8233986296691,257.50306320236996,257.4309233222157,257.991860402748,258.76174463983625,259.3973123105243,260.3361813486554,260.9774861484766,260.7678355872631,261.2939124945551,260.9347008741461,260.6634105448611,260.76109797647223,259.974947554525,259.0891351532191,258.33046083524823,257.5003203093074,257.43682708917186,257.8676976673305,258.8077792143449,257.97296079900116,258.4404968363233,258.0142201236449,258.3635653783567,258.7261552065611,258.22832739632577,257.77415701327845,258.6327710119076,257.76386348344386,258.3197086364962,259.29531544912606,259.36079895403236,258.8025970454328,259.22529612854123,258.4359292113222,257.95139479544014,257.9977588295005,258.3064960921183,257.4129429208115,257.37992106284946,256.71199575299397,255.80377976596355,255.8838769304566,255.2520721545443,255.96636091684923,256.57730927085504,256.4229331323877,256.49600018467754,257.3273498560302,257.27558409096673,258.251284614671,258.62031581345946,259.5106856939383,259.7169485501945,260.118722866755,259.47486446565017,259.1663598176092,259.71039085043594,260.46789577044547,260.84453303785995,261.7991287331097,261.13455745065585,260.2051290771924,260.711619916372,260.88856819970533,260.8964658030309,261.02281188126653,260.3996180421673,260.2058195094578,260.66434715734795,260.4707988309674,261.32763810968027,261.22575463261455,262.0503627755679,262.0558005059138,261.12639130698517,261.50290688173845,260.5080762244761,259.59598380699754,260.05205663340166,259.5930701713078,260.21255296608433,260.0570538477041,259.3700332362205,259.2945993221365,259.4823603341356,260.3446631091647,260.00893591018394,260.6967686903663,261.4071895070374,261.13122983649373,261.89093249477446,262.72128218831494,261.8655241043307,262.3745884876698,262.0439353669062,261.78257146384567,262.61745707318187,261.93410448683426,261.8980255750939,262.70840603485703,262.4168722620234,261.4286660538055,261.4724686802365,260.6045804624446,260.0104075255804,260.2629841770977,260.478333753068,260.73243126180023,260.2098290924914,260.26113997166976,261.0173024022952,260.0723350937478,260.227818320971,260.62908502994105,260.2569559807889,260.77854784950614,260.68001690134406,259.8733411608264,259.73328785412014,258.8920169081539,258.290379951708,257.49088584491983,258.2716927859001,258.74769869074225,258.3926770295948,258.49949218379334,259.44273126358166,259.37619036855176,259.1315056765452,258.88514840975404,258.81752097792923,258.1030686334707,258.7965939207934,257.9110797611065,257.20251307077706,256.7293843976222,257.1031622411683,256.8699413416907,257.75559497531503,258.32344331778586,258.50012856628746,257.8515160093084,258.3431523446925,257.70199019648135,258.3719146656804,258.50170145044103,258.16727248439565,257.30539154680446,256.83606412354857,255.86771562416106,256.80263362964615,257.5479543125257,257.45616076141596,257.753154006321,257.5006700810045,257.28965539019555,256.35780898388475,255.78820916824043,255.9955927603878,255.59988390514627,256.58371221181005,256.9573386888951,257.8093213462271,257.59444826375693,257.23126005753875,257.0992997465655,257.90958259021863,257.84182933345437,258.7070912825875,258.37238019891083,258.81177651835606,258.5867443163879,259.5744004561566,260.0192831112072,260.44718959834427,260.916043008212,261.72911537857726,262.18337640399113,262.9867868255824,262.56096334336326,263.42046846449375,263.13251699786633,263.5916951135732,263.9801827361807,263.4930469286628,262.55992435943335,262.7996075521223,263.026514173951,263.2932685739361,263.8996046683751,264.4645156250335,265.0141985793598,264.74546576244757,265.0973212341778,265.49470334732905,265.38715329160914,264.9719710825011,264.89340654574335,264.5255522048101,263.5808505169116,262.68919704435393,263.6034949743189,263.4541121320799,262.5323449014686,263.20264419633895,264.04930277355015,264.91468549286947,265.369844682049,265.11823503207415,264.28440511226654,263.36297844490036,263.8809416918084,263.8570889332332,263.080169392284,262.67098032543436,261.83255776390433,262.4544366626069,263.0800576824695,263.4902038513683,263.62930501485243,262.9315953645855,263.02496977429837,262.60507225990295,263.4055827758275,264.00165746407583,263.2659256537445,263.1604978572577,264.1021514739841,263.8211089367978,263.0446491930634,263.24148094747216,263.3106101397425,263.57805792894214,262.5787047287449,263.47544391267,264.4052194277756,263.74770467961207,263.194204791449,262.8840856025927,263.0378561397083,262.9555783891119,263.47254410898313,264.01314791385084,264.94116514502093,265.2421774924733,265.2417573276907,264.72821156680584,264.81771008484066,264.8612147597596,265.14129387028515,264.95099588064477,264.13692844472826,265.09443351160735,265.79559479514137,266.4351215166971,266.7502869828604,266.42751103732735,266.41217072634026,265.94586405484006,266.55421399557963,266.71879753656685,266.6633405946195,267.0485077542253,266.9991185609251,266.7116657877341,266.9121010666713,267.036898328457,267.72775450209156,268.5653617763892,268.3432825296186,267.69919708091766,267.2322003063746,267.3102547242306,266.79941187938675,266.01916956342757,266.4450304787606,267.10973729239777,267.8196397474967,268.49416384333745,268.5883191283792,268.07820216054097,267.6788053838536,268.47399945370853,269.0771577209234,270.04506693035364,270.16425562556833,270.8902963427827,270.21949032181874,270.0161165702157,270.8937987838872,270.80600576289,270.85470582637936,269.97830902040005,269.6659365380183,269.1876795934513,269.5110455881804,270.4279985660687,271.3269705697894,271.5550509900786,271.7695916444063,272.1778303687461,272.40470960829407,272.3231543973088,272.68099734419957,271.70638875849545,272.3274519178085,273.289700133726,273.94708122033626,274.13076342921704,274.9919601450674,275.6546812406741,275.38983986200765,275.3619240014814,274.6250491524115,275.39186685020104,275.2520972508937,274.87630510888994,274.0973353795707,274.60082665644586,273.68518666923046,274.5715335677378,273.706905676052,273.1534633631818,273.33249136665836,272.71426733443514,272.4673755620606,272.4705164995976,272.1378377103247,271.74561138870195,271.88952918630093,271.2793234549463,270.63009693380445,271.3871238832362,271.15337605634704,271.50446009170264,270.64867206756026,270.54404561035335,269.58572960319,269.3952688071877,269.6231090212241,269.4459576494992,270.0221301452257,270.2141472590156,270.91592198144644,270.52783899148926,270.29901596158743,270.4071724531241,270.23287309193984,270.3274475312792,270.26168058346957,269.5707677304745,270.5218358472921,269.96203634887934,268.96891513094306,269.529326423537,269.9244612152688,270.02559485379606,269.82712651370093,269.73899504635483,270.03173682745546,269.91426717536524,270.1052522584796,269.62224572105333,270.1411478589289,269.33674538880587,269.18554976722226,269.241364303045,268.4202376184985,269.15389477973804,269.1679574865848,269.8015745426528,270.2755617746152,269.2837327462621,269.77751452755183,269.305006837938,269.5601199795492,269.047584799584,269.9868685780093,270.4646855783649,270.0498391953297,269.3099736641161,270.02968415012583,270.63917749002576,270.6158858379349,270.0592157705687,270.1762201837264,269.50741072651,269.31606041127816,268.383606587071,269.2302709543146,269.8471650383435,269.36777780158445,269.09075567359105,270.04958861740306,270.3459872016683,269.9420655211434,270.45145606668666,269.538671342656,269.2449993849732,269.9601030726917,269.9438505987637,270.4361886125989,270.52374174119905,270.73223991598934,270.0767165995203,269.3252028571442,270.13199892500415,269.65934290504083,268.7603049976751,268.18274681596085,268.67323083477095,267.9233892643824,266.9852421199903,267.41519045690075,267.1735161598772,266.71471001626924,267.6799849611707,267.73440616810694,267.3047536476515,267.856088467408,268.7213910748251,269.0868195639923,268.97987904120237,268.13107604533434,268.48874849267304,268.2191859232262,267.7054224088788,267.52439492195845,266.53777200262994,265.65281874733046,264.9774751360528,264.46318707149476,263.71508728852496,264.3926715902053,264.3636157400906,264.40022470150143,264.3245239383541,264.0524616166949,263.47386874910444,262.657093715854,262.9172022761777,262.7759157833643,263.56640725396574,262.95225411560386,263.6287823836319,263.5688512022607,263.9226086572744,263.0918391449377,262.1421307809651,262.6356535400264,261.7577850581147,262.7059704917483,263.24961243383586,263.16973440302536,262.6086749318056,262.698259931989,262.0862110266462,262.8583781043999,263.7765752542764,262.926144184079,262.86592482961714,262.1220596744679,262.30353190144524,263.2530036550015,263.66647541709244,263.90667598415166,263.71792485471815,263.34631063742563,263.50811004824936,263.9961629114114,263.8182370993309,262.87647645920515,262.5652511944063,262.64285144768655,262.17462429450825,261.58741331426427,262.57763949781656,262.6028709760867,262.9112515160814,261.99767800141126,262.47821978246793,261.9213367099874,261.4755783029832,261.00509172538295,261.0612205420621,260.45934800617397,261.43407047586516,260.937210097909,261.69250155752525,261.411397701595,261.98891154304147,262.55231086956337,261.9895510994829,261.06357193086296,260.0739310705103,259.5077617210336,260.10627822810784,259.79535836260766,260.47935456829146,259.8246615980752,260.7202588999644,259.7300407681614,258.8032073462382,259.1094642840326,258.60053464071825,257.9763438827358,257.5707300910726,257.50490911863744,257.90541709121317,258.8374124625698,259.4204889750108,259.68823266169056,260.28324693627656,259.5275741228834,259.06221551960334,258.7346956827678,258.81792893074453,258.42232585977763,258.5358372651972,257.6637053093873,257.08566431188956,258.08185092778876,257.22194955311716,256.94712635548785,256.63673089211807,257.2348714545369,258.19686133414507,258.73263969505206,257.79971715342253,258.0766659756191,258.0907657695934,257.5403801104985,257.0046281069517,256.406679360196,256.7155106458813,257.48251027287915,258.3318310608156,259.06375470245257,258.40229000197724,258.3116765622981,257.7208444108255,258.135689294897,257.38703540340066,257.57176983123645,258.4143338785507,258.689484173432,259.2288123006001,258.51928361551836,258.8463227250613,258.4277360108681,257.45506451511756,257.6952425423078,258.316473194398,257.6786394752562,257.61381463194266,257.2965315897018,256.3280579484999,257.1610065503046,256.35132877435535,256.48650736548007,257.1179220713675,257.30562405241653,257.21253163926303,256.68243546411395,256.4258187110536,255.67736218497157,256.39079322945327,256.02368739806116,255.8078731233254,255.39814250916243,255.97683809045702,255.81959691969678,255.79455368826166,255.1340231122449,254.8136068326421,254.7973427218385,255.47880594385788,255.69588733138517,255.12413898203522,254.77274993574247,255.54859535116702,256.5071847275831,257.1695922911167,257.9111583107151,258.7359793037176,259.36908745439723,259.6946344077587,259.0743919038214,259.78726924350485,259.1566009717062,259.6681967768818,260.2643694584258,259.62940713530406,259.5895885084756,259.01960025914013,259.3866381747648,259.77649322664365,259.30254253698513,259.5727369552478,259.4152693725191,259.51319902110845,260.0308677246794,259.17014005733654,260.1149702616967,259.5361987045035,259.4887355021201,259.3398678768426,258.4318947591819,257.9934021164663,258.33017518697307,258.7021427946165,259.63693365454674,258.93777925986797,259.12324677594006,259.3351566437632,259.32299716817215,258.4602564270608,258.417865274474,258.5993113568984,258.79702079389244,258.43074491480365,259.4011561125517,259.55966483522207,260.33251493703574,261.29249368049204,260.4015995459631,260.6165141039528,260.3656522813253,260.0246117603965,259.3274996452965,258.7245774171315,259.64179173856974,258.6946570738219,258.0318194143474,257.30814741691574,256.61512154433876,256.25730459205806,256.5742684151046,256.4730680156499,255.75055741518736,255.4608332887292,256.2786813592538,256.66993231792003,256.68864145083353,256.335094622802,256.12453544093296,255.4463734771125,254.9785384312272,255.3733223718591,256.27253083186224,255.97397723747417,255.52232260117307,255.39169970713556,255.7582895644009,255.3379645459354,256.01823918893933,256.19211365422234,256.4328234437853,256.33157895412296,256.52599903801456,256.9903506296687,256.77708877343684,257.51823958102614,256.6600214676,255.86192025989294,255.55074990121648,254.58103006705642,254.04211659403518,253.60120802884921,253.81398387392983,254.0352651635185,253.5565579389222,254.25553468428552,253.86145597323775,253.88641976285726,254.17195039102808,254.10266668349504,253.7407939126715,254.57056690612808,255.1344985566102,255.0843985453248,254.90105755953118,255.2762036412023,255.87051505967975,255.68561559775844,255.1102443896234,255.4298514756374,255.65346454642713,254.87623511673883,253.9987463047728,254.20264851348475,254.33009364502504,253.48440285678953,253.00094188190997,253.68311244435608,252.77356827585027,251.845281643793,252.6864028889686,252.53198846941814,252.12600284209475,252.51018132874742,252.740657646209,252.84399875393137,253.006131793838,252.56298449495807,252.88237548433244,252.0226697511971,252.18560845358297,252.9337140978314,253.533409840893,253.9511390463449,254.55879233498126,255.33051074156538,255.95237449230626,255.65932071767747,256.6552288127132,256.3567555239424,255.3675199863501,254.4622900597751,254.64921168982983,254.37456100294366,253.89042788324878,254.5872709234245,255.58252344373614,255.5150224142708,256.20484808133915,255.60623107431456,255.3697925847955,255.60067929374054,255.56630335049704,255.69596157874912,255.06126036681235,255.93353895377368,255.54975286498666,256.04171163216233,255.49985521333292,254.59303361782804,254.43074370967224,254.7669042875059,255.1146148191765,256.01336779631674,255.94329316262156,255.9544921386987,256.31940186489373,257.07472817692906,256.77597168879583,257.55585629073903,257.40569944679737,256.6923037483357,256.7416842225939,255.9336983221583,255.19048418290913,255.65118922991678,255.6640066220425,255.5153651717119,256.1237156903371,255.75571370404214,254.77189828502014,255.67301399074495,256.35306933009997,256.4839912070893,257.2908650925383,257.631451765541,257.80661730701104,257.85975180380046,257.6641516285017,257.7784027676098,257.4570866632275,258.38098993198946,257.8937779525295,258.0579215665348,257.49762815097347,258.0126837315038,257.88033463060856,257.05655298987404,256.2581233084202,255.41517190588638,254.9902607621625,255.12530384259298,255.83335543004796,256.57485091267154,257.0807523233816,257.2843954311684,257.2402269691229,257.7959218178876,258.3494355008006,257.65263063600287,257.6507260533981,256.9940951364115,256.3400979805738,256.25122906267643,255.72380149643868,255.47026545042172,254.87331493478268,254.7831839430146,254.34169104369357,254.17654054239392,254.8041170160286,254.44691994786263,254.13480343669653,254.1391719370149,254.38428417406976,253.6648639072664,254.60933748073876,254.23859814507887,254.37664369447157,254.02198147866875,253.25105983624235,253.77024864125997,252.96481300145388,253.05433885380626,253.22208127425984,252.7447251295671,251.83838682388887,252.72957055270672,253.00505935167894,252.85530578903854,253.22724765120074,253.02789873583242,253.4765023337677,253.12023959401995,253.96662506833673,253.16024521226063,252.7939309203066,252.17260658089072,252.13738337391987,252.05769745167345,251.9465349977836,251.78755121910945,250.9253169503063,250.6981578497216,251.54969780892134,251.38310214458033,252.0067354128696,252.54350185673684,253.26676661800593,253.03734963200986,252.5988398506306,252.33285785280168,251.5383967985399,251.42260184558108,251.48633360955864,251.13071067770943,251.91835892573,252.3622073912993,253.12189127830788,252.98367018485442,253.9615458594635,253.78335653524846,253.00663890503347,252.34482494741678,253.06688189134002,253.29126163758337,252.37030689185485,252.40021177008748,251.46652122261003,251.58445348357782,251.52479314478114,251.50555213401094,251.8563333209604,252.3393910229206,251.91956883389503,252.90158021030948,252.53308977372944,251.63842205377296,251.5090135592036,252.48165669618174,252.19733099499717,252.65262849396095,253.32296149991453,253.49201612593606,253.36010841885582,253.6033056313172,254.16206898307428,254.81407848512754,254.64481133036315,255.55437621241435,255.25753566157073,254.69898304576054,254.16956152347848,253.84175800951198,253.85920084174722,253.970400004182,254.53576107602566,255.3079960923642,256.0790006387979,256.447936328128,256.29317480186,255.73858118103817,255.9592443765141,255.89192005246878,255.84452586993575,256.4840538366698,257.144658615347,257.5264674643986,257.4342831899412,256.48719671647996,256.9287905469537,257.51303683500737,258.3946467307396,259.1527295736596,259.9871814334765,260.61175819439813,259.69498946890235,260.0428981310688,259.59154880978167,258.6278421576135,259.3899431684986,259.6600154773332,259.525149833411,260.33074469072744,260.15622371667996,261.0460823401809,261.849121122621,262.6360862082802,262.3988246009685,262.9404777190648,262.9674687515944,263.30235155439004,262.97184123052284,263.37618252960965,263.71483585238457,262.7842210433446,262.4836133630015,262.02883875835687,262.59548884630203,262.49858643114567,263.3207783559337,262.3441004953347,261.91586679732427,262.1178771145642,262.27345738280565,261.36754223750904,262.14038154296577,262.29875432373956,263.153250225354,263.2112170434557,262.2493214313872,261.4135262398049,260.6203803694807,259.994004777167,260.44297278719023,259.99350396636873,260.2550954516046,260.77407427923754,261.6666755201295,261.6440958525054,262.2433920809999,261.5884948237799,261.8332456089556,261.4950485373847,261.4253934570588,260.6804705513641,259.8450483470224,260.0778924631886,260.3383441721089,259.79268989712,260.0309674423188,260.1977591123432,260.82829959876835,260.3457061056979,260.7632385850884,260.7115103076212,260.0776350698434,259.9943227446638,259.4835134278983,258.59306565020233,258.8277705293149,258.78294634399936,259.52942016068846,259.88326993817464,259.42791660595685,259.33772401558235,259.8565648184158,259.01324125379324,259.3035537619144,258.7294612079859,259.29907706193626,259.43346531689167,259.88676968123764,260.58746565971524,260.4243900529109,259.6876561786048,259.35261511057615,259.0677084508352,258.8249318799935,258.9348120922223,258.6177120041102,258.9740904336795,258.6842226833105,257.7035814146511,257.10724421544,257.64074947685003,258.43477767752483,257.90572673641145,258.8462266596034,258.40256177214906,257.64601075137034,257.4328148569912,258.14824688155204,257.616144918371,257.2286554374732,256.9845626540482,256.9268248481676,257.5643263226375,258.21715866494924,258.44577729469165,257.54024831810966,258.42908138176426,259.27274277387187,259.91966669773683,259.25342624168843,258.7675163648091,258.7519273906946,259.5924303950742,258.6841907147318,258.7782817548141,259.31147971749306,259.936438804958,260.00457576522604,260.337861395441,261.21414488134906,260.82778403908014,261.56484585488215,262.47102150833234,261.9205724671483,261.0747147514485,260.6931303725578,261.38630575686693,261.45620934525505,261.39900062046945,262.0226257229224,261.75348368799314,261.49412510637194,260.98826651927084,261.04609551280737,261.00679361540824,261.73682437697425,261.2953220754862,261.9756840663031,261.963006075006,261.7661043019034,262.6002055495046,261.8348494707607,261.9211067808792,261.53041848074645,261.6153704104945,260.9233151790686,260.3041757582687,259.5405389117077,260.15424752328545,260.60820849006996,260.2706453888677,260.93582790903747,259.95869918493554,260.69168561976403,261.43450058531016,261.08086271351203,260.1205326607451,260.79470983939245,260.00863836333156,259.87912235828117,259.58830456016585,260.20945626078174,260.5845695110038,260.4543274026364,261.0487451488152,260.62830796837807,260.13842913042754,259.9850139943883,259.5346455881372,258.73092385707423,258.4993020314723,257.83109983522445,258.333880817052,257.84316602302715,258.2086264542304,258.2429238432087,257.57449930813164,256.8032567836344,256.2376333195716,256.7517268098891,257.475927548483,257.24962701741606,256.9205188304186,257.7007501218468,257.72885496215895,258.4849492199719,257.596306276042,258.03124009491876,257.4586072098464,257.27981819724664,257.5430148411542,257.6780317714438,258.04000374209136,258.0827019670978,258.10143302287906,257.5263486900367,258.51550025399774,257.6272612530738,258.37991680111736,258.78373869275674,257.99637536052614,258.79734836611897,259.49657268309966,258.94728988967836,259.13879401097074,258.8864172468893,259.82340872241184,259.8673829231411,258.99853612622246,259.48417200287804,259.48118716757745,260.02115072961897,259.44483684329316,259.71323006087914,260.23188675940037,260.00085849734023,260.8488692725077,259.94401020370424,259.9037581705488,260.46074323542416,261.1385246226564,260.3851198251359,261.2321870760061,261.6701977448538,261.57987308036536,261.2787451907061,260.2984714359045,260.743984577246,261.60232431301847,260.99615619610995,261.2604771987535,260.8196893418208,260.2124005006626,259.2556621073745,259.9237016378902,259.968347735703,259.856862872839,259.60961791547015,259.3194694649428,259.8687104117125,259.41301874723285,258.87886958708987,258.99996219482273,258.0116043901071,258.73651342233643,258.23022663779557,258.58414133498445,258.79511788580567,259.7371885268949,258.96789759164676,258.08353897184134,257.59803291223943,257.97674715006724,257.51543310284615,258.25428688619286,258.5216117971577,258.8738874597475,258.9469157536514,258.26185380108654,257.9802780500613,258.8777993354015,258.53294219681993,258.792471957393,258.48411490628496,257.81196623528376,257.58605823200196,258.100134531036,257.2240799549036,257.3056424423121,257.1939091719687,257.17463761148974,257.5862895078026,257.94509043172,258.80325203668326,258.0184485963546,257.27028879430145,258.2498018187471,257.5300734830089,257.02095315791667,257.7256540255621,258.1083498252556,258.5945209846832,259.34471613308415,258.4019767655991,257.4738752748817,257.38450025208294,257.5810261121951,258.4192735366523,257.9535807436332,257.06812423840165,257.43241270119324,257.9662144542672,257.53007035749033,256.80117614148185,257.2727398057468,258.09911870304495,258.15752219595015,258.84505094680935,257.9843356614001,256.9863832765259,256.56468958966434,256.21456954116,255.40249531855807,256.2750581074506,255.4689765581861,255.4102390781045,255.3080541207455,255.1666139708832,255.21255751000717,255.2117268932052,255.33412483008578,254.70169819658622,254.81703996751457,254.74278626590967,254.33118084119633,254.3742535901256,254.47092348942533,253.58376024849713,253.7721098260954,254.30484658945352,253.700385031756,254.04628455732018,254.74985128222033,254.4584929808043,254.97494767885655,254.05661762319505,254.10298996511847,255.09235699195415,255.85570083092898,255.86424715118483,256.6799647160806,255.96456623310223,256.08787670871243,255.80169138731435,255.05618860851973,255.56819139281288,256.5375739717856,257.2058289833367,257.2813646905124,257.6642446364276,257.0600294931792,257.01614912599325,257.64196279877797,257.4040449783206,257.10350213898346,257.289577470161,257.3544908496551,256.365625214763,257.22716554580256,256.95026172185317,256.5585766453296,256.23930464545265,255.89802066190168,256.34898589458317,257.29931998765096,257.2089916630648,256.3270106650889,255.5008152537048,255.71319395303726,254.7200098335743,255.26712498581037,256.19438569480553,257.18755932338536,256.84621600434184,256.26262041553855,256.05402335338295,256.1420643180609,255.28548020264134,255.86518799234182,256.4599849204533,257.43397525697947,257.292940647807,256.4695799872279,256.9247723277658,257.50704550230876,258.1783878346905,257.5324137075804,257.640322141815,257.71855676872656,257.52379178861156,256.5403703893535,255.79329292476177,255.77991953026503,256.5951151023619,256.04749650415033,256.2402347344905,255.55633668601513,256.0714726340957,256.5951109547168,257.4363785162568,256.5302392630838,255.87739293091,256.1821553702466,257.16912395088,256.82993961079046,256.9009979572147,257.79368869028986,256.92768645705655,256.5923795448616,255.6872795280069,255.31113834911957,254.8942029015161,254.0880264933221,253.82055525947362,254.5241622547619,254.2153050485067,253.60301282256842,253.40324532985687,253.23407415067777,253.85004614293575,254.29677508212626,254.41680866340175,253.62784203141928,254.19553284766153,255.0212587863207,255.31970757665113,255.14219107059762,255.82526510581374,255.59716242272407,255.62023571692407,255.31457607075572,255.2693030051887,255.08180749695748,255.52687105024233,256.28463439038023,255.372818834614,256.02718322817236,256.65573083842173,256.2000633450225,256.09131375327706,255.51760733965784,255.62171420827508,256.43866020580754,256.48139455728233,256.0944798816927,257.07390868337825,256.23557107523084,256.46240355074406,256.6869920520112,256.72164137195796,256.2254956467077,255.3651731396094,256.2217521141283,257.1603812421672,256.4670470864512,256.1587077062577,256.2669213148765,256.7776771392673,257.61048182751983,257.5099384072237,256.95858310814947,257.73878900846466,258.47850008122623,257.8153649219312,258.2698051072657,258.05747494706884,257.9803262911737,258.16671311855316,258.2384221618995,257.9876560624689,258.34863318130374,257.7972300699912,256.9819401348941,257.4053611061536,257.201570303645,257.72895814990625,257.9882732145488,257.8485419624485,258.75258836429566,257.86100204242393,257.1986297843978,256.44777845870703,256.102699956391,255.1726440070197,255.1159763294272,254.27871093619615,253.85491697257385,254.8491484094411,253.95748828351498,252.9974553710781,253.63783048605546,254.22553664492443,254.59147985419258,255.12178296642378,255.30779681401327,255.77012379607186,254.77032967610285,253.8850006167777,254.6679344829172,254.67273470247164,254.91390777938068,255.49456464871764,256.18769586179405,256.3839846206829,256.73736423812807,257.4083824781701,258.1543051288463,258.72728084539995,258.25077964458615,258.779988352675,258.1695900061168,259.1658113463782,259.0752014666796,258.14821953047067,257.16137908399105,257.609567662701,257.3293879828416,257.33559390343726,256.7887260648422,257.62556969281286,258.1752791372128,257.6126756812446,256.9778103195131,255.98651765892282,255.13961927546188,255.6887322277762,254.89385205414146,254.48625137098134,255.17431111028418,255.0264430893585,255.9084577304311,256.6064442615025,257.1655719913542,257.1066868766211,258.05223103333265,257.69673962378874,257.1294241207652,256.7313783010468,257.06241641240194,257.7248986652121,258.27932874299586,257.30080908350646,256.6160815046169,256.1356479646638,256.9651376456022,257.15833473438397,257.93611280759797,257.28432857245207,257.04061619658023,256.15783691452816,256.6598237683065,255.6845705229789,256.61271332064644,257.46287990687415,257.60853412467986,257.45688439765945,257.44395882915705,257.6620385609567,258.150685116183,258.2374538742006,258.6503810524009,259.14857715461403,259.33117580600083,259.7546912301332,260.6602337290533,260.4819687609561,259.8433529091999,259.3754008654505,258.74917530454695,259.71158162551,259.9824567185715,259.78667524736375,259.43756723590195,259.7067614151165,260.6857232428156,260.2244263170287,260.28171738469973,259.5655372608453,260.1682302518748,260.80280863912776,259.9143621395342,260.2566561968997,260.9476517508738,260.2923767012544,261.1599972336553,261.27100200159475,261.2409991249442,261.14408331597224,260.3242492089048,260.1566820279695,260.5878384374082,261.5688158608973,260.8672436210327,260.2469393038191,260.9948915219866,261.1589181856252,262.14752591820434,261.4752792236395,262.02789612067863,262.78939463943243,263.6524721099995,263.44289608392864,263.5534221143462,264.4748162883334,264.6232314426452,263.96973190363497,264.74091771245,264.1968469694257,264.02026777807623,263.6608148147352,263.241692494601,263.8828694806434,263.47316187107936,263.2797162006609,262.97943633189425,263.4703489076346,264.2426904938184,264.64493392873555,265.02800543792546,264.69679173082113,263.9301781668328,264.0824304954149,263.9774607261643,263.10677683679387,263.54569417983294,263.2595351692289,263.79814231256023,263.3635768047534,264.1997297834605,264.5558055122383,265.1052058059722,265.9103145003319,266.336266214028,266.637340944726,266.309317485895,265.48948468547314,265.4972572294064,265.97985225357115,266.75403327168897,267.4800245654769,267.8253375403583,267.34840696677566,268.15877435263246,268.6847614510916,267.97542275395244,267.05622649006546,267.8731845188886,267.5213286196813,267.5225576409139,267.55352824833244,267.5220910888165,267.6292729745619,268.6256966451183,267.70217458019033,266.9873581705615,266.4269767305814,266.58737356960773,266.95901196682826,266.4084216854535,267.1756870211102,266.7726004687138,267.68436701223254,267.4201239766553,266.8136883000843,267.57384561700746,268.4185628206469,268.63397476356477,268.3184106131084,268.96407838957384,268.7741594640538,268.8438301743008,269.47252201102674,270.0471420381218,269.7106252685189,269.9698046417907,270.0785232777707,269.4236878454685,270.25151521293446,269.5588224437088,269.5310696219094,270.38961790315807,270.2295395866968,270.8695299816318,271.37321733497083,271.5366721972823,271.14587548887357,270.4632340283133,270.97003399254754,270.878823059611,270.0929633304477,269.8126617106609,269.38156560529023,269.14339527953416,269.0913925888017,268.3045517783612,267.76741991424933,266.9222357869148,265.9857993382029,265.8747767456807,266.0517309671268,266.292300095316,266.1841155658476,266.0309239658527,265.9924021027982,265.1430129162036,266.1329191098921,265.7289875964634,265.0895713167265,264.6441415841691,265.2195681370795,264.5188178685494,263.65353573532775,262.72339542908594,262.4305021134205,262.6639095018618,262.61836223490536,263.53045974485576,263.9746999712661,263.2301250048913,262.6226949589327,262.12522363103926,262.5128359720111,263.3456347915344,262.8366712750867,262.27260057162493,262.41638573026285,262.5510968985036,262.0734399408102,262.98878187825903,262.72548018489033,262.7472634073347,262.3619893207215,262.7187041407451,262.09992676367983,262.5268750847317,263.4321562140249,263.1673948033713,263.82658936362714,262.8677079672925,262.5328924492933,262.5736199445091,261.9721964430064,262.57491962844506,262.7543128076941,261.8708992707543,262.66704504424706,261.76616354938596,262.6075692255981,263.50273359566927,263.2642843173817,262.67648602696136,263.3900480438024,263.4264695509337,263.8374049873091,263.94939896743745,264.0042575215921,264.62099522259086,264.53294282685965,264.44680004846305,265.1853927480988,265.3113257535733,265.62180104199797,265.6178568908945,266.50998921785504,266.2287187729962,266.5458914078772,267.3537021102384,267.285755740013,268.22588969767094,267.27066909335554,267.5335340821184,266.88651693286374,267.3808597885072,267.27088654600084,267.679367902223,268.0711253476329,267.11068642372265,267.58967611566186,267.7000047615729,267.6022006175481,267.5837867730297,267.54036778910086,267.95734653342515,268.6162938294001,269.2910790867172,268.45316951628774,267.97491196682677,267.81290034530684,266.9331106431782,267.671549776569,267.3092004270293,267.28046165406704,267.7270544827916,268.26799647463486,268.28459958545864,267.7914357893169,268.3584900442511,268.8835249193944,269.4243934112601,270.0147461737506,269.1579940249212,269.410966176074,269.6223722253926,270.58828572556376,271.2689671185799,271.5354630006477,271.28087742766365,270.32295686006546,271.05439844634384,270.8606443083845,270.4488150058314,270.1430593873374,270.2962355767377,269.6799300466664,269.09150581853464,268.2366263894364,267.59720521606505,266.9522086372599,266.833392130211,267.802563527599,268.1463365885429,268.3968774280511,267.44456447055563,267.65342164132744,266.92773264832795,267.7193919029087,267.0146999354474,267.8588618100621,267.0917803896591,268.05199009226635,268.9915315560065,269.93915182864293,270.89553143503144,271.7607543990016,271.73267878824845,271.2105373349041,270.65223092539236,270.9898151103407,270.3970222757198,269.5188628821634,268.72327572479844,269.67756942799315,269.33848313288763,269.0778287658468,269.31092626415193,270.1859599673189,269.21604708908126,269.59897400066257,268.7799334926531,267.93750511528924,268.77927615726367,268.1092467624694,267.49228129629046,267.7356966743246,267.53184670815244,267.58872347092256,267.15438137901947,267.1620963071473,267.44983936380595,266.5613975194283,265.6386497868225,264.91872204933316,263.92223216593266,264.1001927568577,264.79427120741457,264.36946614226326,263.58971514971927,263.30455402610824,263.9128715870902,264.26770929433405,263.5788002149202,264.1426741578616,264.03961359802634,263.2295875265263,263.0045156450942,262.47830059658736,262.86911485670134,263.21094755409285,262.62021646648645,262.2124074138701,262.01869435980916,262.9858511290513,262.1800059499219,262.2724715722725,261.6345732915215,260.76792175881565,260.29753511445597,260.359292186331,260.0718687050976,259.55554276145995,260.0884445598349,260.125391789712,259.2666184278205,259.54626497859135,258.6697704610415,258.88089628797024,259.0022648391314,258.5970685519278,258.21164220245555,257.34580100979656,256.39613614371046,257.27373321633786,257.6005422840826,256.8156919153407,255.94260547915474,256.5010961634107,256.7140971920453,256.8310415316373,257.53447681991383,258.3657149034552,257.67181169008836,257.12297567306086,257.4511518809013,257.6834176578559,258.66354929981753,258.9608226129785,259.58111322205514,260.23152662068605,260.1584672005847,260.42076870659366,261.3368963985704,261.2086048973724,261.01947390893474,261.1256337026134,260.97719584498554,260.14415436889976,259.34031548537314,258.4433923671022,258.45916708372533,257.46988516068086,257.2005149521865,256.24044191557914,256.223461758811,256.40787450643256,257.1955585088581,256.5635638292879,256.2344173984602,256.0625306214206,256.4161828495562,256.8725615227595,257.5003649913706,256.7004415555857,257.1841157833114,257.7482221359387,258.67516535520554,259.0913186534308,260.0249606729485,260.9260696391575,261.67716225702316,260.7679398008622,260.69340937770903,261.43471162905917,262.2533956184052,261.6343149882741,260.78187094442546,261.1895514233038,260.68570757098496,260.28926415368915,261.183086107485,260.89941125176847,260.7270120452158,260.9787309872918,261.46864167926833,261.5094020930119,261.1122006326914,261.78434040863067,261.34650864684954,262.19586553936824,263.13068277575076,263.4397343355231,262.9405048494227,262.15179938916117,262.003173308447,261.2274654135108,260.36430398048833,260.8015440539457,261.14601097255945,261.1423864061944,261.942859233357,262.704521112144,263.6004093340598,263.15516209742054,262.5133981797844,261.8922741515562,261.62404509587213,262.33151641953737,261.34798054909334,261.9990919888951,261.75484818266705,262.15742939850315,262.1423078319058,262.84373687952757,263.5566859007813,264.07373880781233,263.7870901944116,263.14930875087157,263.65308099938557,264.3170095020905,265.27769038500264,264.75737330690026,265.02486655302346,264.4484656904824,264.2484517316334,263.7204758580774,263.7585081732832,264.5492569282651,264.73366641253233,264.3310530264862,263.33840094460174,262.9817597037181,261.9901748369448,261.80819622660056,261.8162025385536,261.4544716635719,262.2800657749176,262.8542192480527,263.1709993528202,263.1773384422995,263.3618465620093,264.2653453028761,264.6295299422927,263.6325409556739,263.0714659234509,263.0902282646857,262.1643214887008,261.30634278571233,260.90206205286086,261.3981416733004,261.7044976428151,261.99689461570233,261.68732724385336,262.50921078119427,262.3865685062483,261.8584209079854,261.26596122048795,260.8259871583432,259.9805476227775,259.8101492882706,259.95053900033236,260.1834298330359,260.2352964282036,259.96566756488755,260.31502142501995,260.49357868079096,261.15920148883015,261.7292448398657,262.0487954276614,261.81330980034545,262.7352768033743,262.8997323536314,263.4626050251536,262.5131606562063,262.38998863939196,261.492644706741,262.483496687375,263.27308566728607,262.48001298867166,263.04912733566016,262.0871111783199,261.3372898232192,261.52749085146934,261.58757121441886,260.806711230427,261.73249531630427,261.1914762118831,260.4884725972079,259.7697065281682,259.21736231585965,259.2126801335253,259.54089426482096,258.6059581125155,257.9829551074654,257.7097208038904,258.13187609100714,257.6530794771388,258.2767016659491,258.6968859899789,258.4059181394987,257.8636053237133,257.45136159146205,257.4548483439721,257.3144106352702,256.55209491122514,256.4092057798989,255.61477389372885,256.0755667532794,256.4681058949791,256.0215325136669,255.66980831418186,255.44432272110134,254.75079281209037,253.7904066806659,254.22086807666346,254.95508443936706,255.90146945416927,255.06542221596465,255.02085126377642,255.76568783726543,256.7493269778788,255.94065400166437,255.49833488930017,255.15967014431953,254.9840324721299,255.42805598629639,255.50540751218796,254.68355363653973,255.59905359894037,255.6477390807122,256.15138828894123,256.29054217319936,255.37271165894344,255.7102649002336,255.66352681769058,256.2700125426054,256.7893631802872,256.28374026017264,255.77136810775846,256.00602774182335,255.64102749386802,256.6307181227021,256.4813816715032,255.93295403430238,255.0546714006923,255.98744453676045,255.77943940926343,256.7606720938347,256.00770661002025,255.01363853132352,255.53250832809135,255.7740290123038,255.79831672785804,254.81473211897537,254.67650312604383,254.75338580273092,254.58741587866098,253.8389880778268,253.0732906279154,252.94750626478344,252.87193261180073,252.64049607282504,252.83497861027718,252.94097770145163,253.0491438661702,252.1332905027084,252.33785381820053,252.49241849593818,252.41778817307204,251.6822409685701,251.0237259133719,250.85213654115796,249.93245270196348,250.81542890099809,251.19779397640377,250.2747773998417,249.7773400475271,249.3836544053629,249.43465244956315,249.2361773182638,248.9263888373971,249.30131888994947,249.22962417872623,248.76369926566258,249.5137569811195,249.37237896909937,248.93898693053052,248.86343196732923,249.55966127989814,249.7823640969582,248.7900272407569,248.5085824499838,248.0280490955338,247.99364583659917,248.4347441070713,248.255511500407,248.5863728877157,248.7411435288377,248.9651534720324,249.82340134866536,250.09962206240743,250.85961390426382,250.64243688248098,250.964151436463,250.27713908534497,250.93232076987624,250.9150280947797,250.68534313049167,250.13784839771688,249.42548836627975,248.57724134158343,247.81773394532502,247.70099811675027,246.76141255814582,246.5038778912276,246.25737429503351,246.06405568029732,246.77142934082076,245.88958023581654,246.5719229527749,247.38428702764213,247.54713214142248,246.75867477152497,246.89915058901533,246.17768741957843,246.0345852826722,246.92204261058941,247.26881018001586,247.1802955600433,247.84253911254928,247.8221443858929,247.3927267775871,247.3245225236751,247.30310844862834,247.98110450292006,248.9079591264017,249.14037996297702,249.82291537337005,250.09312326135114,249.63938233302906,249.39131382247433,249.98509812681004,250.7275449903682,250.5331872892566,250.03682661661878,250.16501519968733,250.55098899174482,250.37298288941383,251.31631752382964,251.03731383150443,250.8377174148336,250.51880283188075,250.73486874625087,251.20265863044187,250.25623370194808,250.85961935063824,251.49439238151535,252.16743846051395,252.7199485884048,252.8059402294457,253.2753496156074,253.79959827801213,252.80602844292298,252.72913118405268,253.53451303299516,252.73066842975095,253.2986608762294,252.9087030258961,253.76367909554392,253.15767909772694,253.0859109093435,253.19514513434842,254.139376220759,253.2907854001969,252.6592240263708,253.05704082129523,253.40776645485312,253.13178622163832,253.08869376499206,253.26092503452674,254.0776943480596,253.9433885901235,253.17007825197652,253.63538886932656,253.71213700948283,253.43227466521785,253.3414037702605,252.341888633091,253.2901696721092,253.61985923396423,253.86805552616715,253.33675628015772,253.37526348326355,252.48850487358868,252.54606456542388,251.54922832548618,251.99776425026357,251.70984823210165,252.18891926389188,251.44114175019786,251.64019592152908,251.32607797114179,250.6686649848707,250.87260185414925,250.3574050408788,249.7418436910957,249.58402703050524,249.4931542337872,249.0396314188838,249.9140128949657,249.75721107795835,250.16328746872023,249.6252355868928,248.8493289463222,249.82269217958674,249.74580735713243,250.00217626290396,249.49248417140916,249.07883919076994,249.8361805989407,250.45842405594885,249.705155744683,249.54739995580167,249.42750883474946,248.7507337438874,249.2342461179942,250.05430409219116,249.54583656135947,249.47328683920205,249.76587276626378,249.24356958083808,248.74329715128988,248.45776570867747,247.9071350810118,247.60046747839078,247.3648238517344,246.720205408521,246.0446843681857,246.05687970574945,245.85498699452728,245.0033140820451,244.54507301235572,244.66543999826536,243.90224991599098,243.23987384559587,243.0306154806167,242.05780257517472,241.9889882709831,242.6884622136131,242.57613371079788,242.35161915048957,241.79058410180733,241.25479092029855,241.9684004113078,242.16853224905208,241.59589814627543,241.86093826731667,242.28010197496042,241.9469083705917,242.9278368758969,242.48102573957294,241.7536556343548,241.96770041575655,241.965151025448,241.80100450199097,242.35510821733624,242.78528318740427,242.38021308835596,242.19153723493218,241.8420798741281,241.79137258650735,242.15258419327438,241.79624504875392,242.43554706452414,242.99782124022022,241.99984949128702,241.93530559865758,241.0368941910565,240.75092158047482,241.29670401057228,242.21263197762892,243.11454520514235,243.2338569094427,242.8935227538459,243.21726110577583,243.65294906729832,242.94861211627722,243.7326761051081,244.52464670455083,245.4771694955416,245.9688013792038,246.12223211908713,245.75303388247266,246.27496789954603,245.28739357972518,244.49859979236498,243.8741251169704,243.98323871660978,243.07919267378747,242.9811609997414,242.35050652641803,243.2420482360758,243.50470467098057,242.53323135292158,242.17800666298717,242.4087830875069,242.35771629819646,242.6432013688609,243.4520892975852,244.25262978952378,244.73693721927702,245.5291328318417,245.79498636582866,245.75648451410234,245.20479749841616,246.18733565928414,245.99424971314147,245.65595517121255,245.85979885607958,245.03277825796977,244.7114292792976,245.2919466481544,244.6978034954518,245.66554367681965,245.43405577307567,245.72859563538805,246.68502529803663,246.26310469396412,245.80597497010604,246.56660195346922,245.78641136968508,245.84093577088788,246.74373422609642,247.64315072773024,248.17358022369444,248.24598006298766,247.26133573241532,247.02893471391872,246.47993967030197,246.94371960218996,247.1261295368895,246.30122848646715,246.02380715170875,245.70590953389183,246.23966089775786,246.57008873531595,247.11821328289807,246.89349219528958,246.00510300230235,246.26410553697497,246.89505853923038,247.78397843195125,248.53900910867378,249.47093941550702,249.4172932608053,250.16743153566495,250.14113489212468,250.02451729634777,249.47372529562563,250.41468787100166,250.68803198402748,250.3523468915373,249.92429029615596,249.38366615073755,249.55905169760808,250.20008516823873,250.6960673034191,250.47797716315836,251.3459874233231,250.91831483598799,250.58626815723255,249.91206497047096,249.02847007568926,249.70842171646655,249.36342324502766,249.30737628275529,248.63117625564337,249.0482106367126,248.60578856244683,247.66814049100503,248.08460392383859,248.03178773261607,248.20378109812737,248.35923707764596,249.16101685445756,248.654404965695,249.0507654575631,248.83219000790268,248.30567225301638,247.88525116909295,246.94158923439682,246.68361226050183,247.28708719741553,247.3602429330349,247.6773178866133,247.41432616347447,247.71143580693752,247.90841813990846,247.33332961192355,246.3602546788752,247.3418471198529,247.80477981688455,247.27894804161042,247.68469531927258,247.07115911645815,247.7625475623645,248.03897617012262,248.16116065951064,247.5737331500277,247.01916678249836,247.35373351490125,246.5563617288135,246.646836981643,247.19375261152163,247.91512539377436,247.3409551838413,247.2667231601663,247.6978624961339,248.34671469591558,247.4213260677643,247.52581356465816,246.72484965017065,246.74796698614955,246.4263840727508,246.69018784770742,246.3476390754804,245.36130927177146,245.66772351879627,245.80783988302574,245.96687807841226,245.88386157015339,246.35522348433733,246.32560427114367,247.24367358116433,246.9838311020285,247.49861494684592,248.15296150092036,248.23853772692382,248.12747391872108,247.4036981393583,246.48359080776572,247.28166590025648,246.63562830584124,246.56639519007877,246.5681042028591,246.71069439360872,246.75991532485932,246.6486685136333,245.84535311115906,246.20757518336177,247.0192284686491,246.2614926896058,245.85053242510185,246.17892584437504,245.64273141603917,245.09720511361957,246.07830614922568,246.90697160409763,247.0266422154382,246.67163166450337,247.11224347632378,247.86106503615156,247.68090800615028,246.95702981948853,246.71643539797515,246.02862118138,245.62637591315433,245.45188999176025,245.49691768968478,244.61495478916913,244.93632794637233,244.75357948848978,245.31582639180124,245.6038506082259,246.58632708061486,247.00330243678764,246.00647190539166,246.69805556396022,246.6108752922155,247.04878835380077,247.40689033223316,246.63163319043815,246.02045847009867,246.84088948229328,247.12998192571104,246.99729381129146,247.2840376449749,248.02873535780236,247.49073359463364,247.21495648659766,246.40091302478686,246.93862288165838,247.43461927678436,248.0693214489147,248.6106247943826,248.05514979176223,247.90791674377397,247.9369823927991,248.8558875033632,248.83890705695376,247.88218384282663,247.81708525214344,247.36661394266412,246.3947024308145,246.20708783064038,246.73104775324464,247.27713144896552,248.18650845298544,248.1578980195336,248.03028155490756,247.10531875956804,246.9635955360718,245.9761215937324,245.9395860102959,246.4566436377354,246.49628559779376,246.0860417690128,245.17669429583475,246.10670400504023,245.5176074039191,244.6052135224454,245.27114625275135,245.82867613015696,244.8429177943617,244.74120827019215,244.81460476946086,244.6349571235478,244.74368043337017,245.2713926937431,245.82148367352784,244.8775106780231,245.68627996044233,245.97552900528535,245.85081447474658,246.5094541986473,247.05434085289016,247.72748749749735,246.73232932761312,246.32740011112764,245.74105950025842,246.31132422201335,246.15252937562764,246.66588656790555,246.3905862532556,245.82795250229537,245.540400960017,245.53618727251887,245.52796640293673,245.42739034350961,244.56325885746628,244.07635806128383,245.01371299801394,245.74039164884016,245.66814770689234,245.22548949951306,245.19464496010914,245.38937667524442,245.68125460203737,246.45815456612036,247.16169900493696,246.8793515455909,247.29005685076118,247.67915645521134,247.50700145587325,248.00386494537815,248.74770084908232,248.41182194603607,248.2686475883238,248.85545458598062,248.21501859417185,247.65269373496994,248.59094227524474,248.31913355365396,249.14284387789667,249.07763013476506,248.60721997637302,249.43563201325014,249.26854229718447,249.48298303922638,248.97275158995762,249.70990426419303,250.6876137633808,251.27893174765632,250.99605683330446,251.3035918707028,251.59317658888176,252.12089051911607,252.14574557403103,252.4952539196238,252.3705914085731,252.3791373441927,253.14204688603058,253.18310697143897,252.43845668714494,252.4664696874097,253.3645681864582,253.87490153545514,253.95918040908873,253.08411144372076,252.30484286881983,251.96371639845893,251.95062634721398,252.77497217757627,253.76813050406054,253.11173552973196,254.0733087467961,253.23523258697242,253.63146672630683,253.16862939298153,253.45402971468866,253.62070788815618,252.8553935000673,252.72860608017072,251.74995966255665,252.06125241704285,252.3123588822782,251.62140044895932,251.87646488845348,252.3157432875596,252.82284698914737,253.01880444493145,253.04396002506837,252.19790446804836,252.17097628256306,252.98846895527095,252.4675715318881,251.58039347222075,250.7129706456326,251.59600456384942,251.50247490219772,251.50069879507646,252.1228403756395,251.78581544850022,252.59728820854798,251.81105314008892,251.18069703737274,251.9337023240514,252.614201286342,253.57638260535896,254.20471977209672,254.00220085959882,254.74303351761773,253.94759378628805,254.47223718697205,253.9720923579298,253.14898313442245,252.91831831587479,253.2356886859052,252.89895334187895,253.44389499351382,252.87060917029157,252.02208602521569,252.40260068280622,252.81840082304552,252.27771164337173,252.95788087230176,252.47206005593762,252.4533025692217,252.5623926697299,252.06970404740423,251.41317243361846,250.6309342077002,249.92351488769054,250.8674531574361,251.03399231424555,250.2167982184328,249.73153341840953,249.2340156249702,249.9316697921604,250.0973650077358,250.84814094472677,250.55998520785943,250.7760566500947,251.06573009490967,251.01531926216558,251.58178469352424,251.32209091680124,250.57799168024212,250.1178843062371,249.8361180308275,250.1935960468836,251.02922997716814,250.71843466022983,250.32720536366105,249.48347117425874,250.15020921314135,249.81130579626188,250.15023475326598,249.82696827221662,249.99273454071954,250.55761249735951,250.43470123317093,251.18920591054484,250.92144512804225,250.65649446984753,251.01794807380065,251.59847099380568,251.6168372160755,251.50370950205252,251.80840393295512,252.3920456506312,252.14403071720153,252.0174991870299,253.0111350552179,253.92700883420184,253.38519122218713,252.81713128509,253.05208960175514,253.8597221923992,254.54648160981014,255.03097835788503,255.39932779036462,255.65151490736753,256.01012126961723,255.84023971576244,256.52484402852133,256.4983982439153,256.2426178040914,256.922363714315,256.4451473718509,255.97188018029556,256.43605317920446,256.587612606585,256.12342795636505,255.18572328193113,255.84381923731416,256.07838462339714,255.28057742211968,254.84749499848112,255.6923508294858,256.24989562341943,256.8144407728687,256.86838673520833,256.62218361813575,256.8859240296297,257.30025297170505,257.71724094916135,257.67315942794085,257.3015722418204,257.4955773325637,258.04539025807753,257.0457419641316,257.89161314209923,257.8771710693836,257.50197409652174,257.4654330848716,257.70590394642204,258.3293387675658,257.62316280882806,257.8178298752755,256.884144352749,256.92782457219437,256.2001361721195,255.80087196687236,255.9737226557918,255.01347828144208,254.1337917125784,254.00830635149032,253.39364955946803,253.8304767590016,253.35844561411068,253.91371249267831,254.47143409075215,254.9998938073404,255.029438869562,254.0376399452798,253.3619469362311,253.73786613158882,254.15760536072776,254.43664350593463,255.21475264569744,255.16819129697978,255.96316391788423,254.99460683064535,254.87374626426026,254.76244029030204,255.14605887746438,256.0017295414582,255.2171875834465,254.8312424137257,254.25922182528302,255.04040346946567,254.5708418074064,254.7985698278062,254.26112119155005,253.42517115315422,252.8862596033141,252.84444836294279,253.38872505072504,252.43241710355505,252.94563675299287,253.6166956005618,252.92894923081622,252.69154109759256,253.53822391992435,253.96883068652824,253.95171013381332,253.6583493729122,254.00200380431488,253.86009346786886,253.14826310845092,253.17378703411669,252.17847217060626,252.26466710539535,251.55017296923324,251.04181266529486,250.0869358885102,250.80088630877435,250.4097549347207,250.99386245803908,251.2087628170848,251.20970423938707,251.7868510549888,250.82377616176382,250.63162591448054,251.15158931957558,251.39308485900983,251.6457588453777,252.35307634808123,252.5059488727711,252.045108305756,251.6179737788625,252.1565258312039,252.6284916130826,252.5115867285058,252.0858970801346,252.90936952503398,253.71855986397713,252.83034640504047,251.8755188495852,252.09116832492873,251.4929830445908,252.31618975987658,252.8074831175618,252.90666134143248,252.6334238271229,253.5800742516294,252.6029261057265,252.32263512769714,252.2599577140063,252.7437779661268,252.54177257418633,252.32030328223482,251.91428094683215,251.38584079081193,251.6930020628497,251.60858519747853,250.71812855824828,251.68620838411152,250.78194451564923,250.81125171249732,250.42713553924114,250.9273046925664,251.82802077569067,252.399052771274,252.23926145676523,253.16627877624705,252.96595196425915,252.50138641893864,251.78254958754405,251.3067702795379,252.25950206676498,252.93189781950787,252.2680043829605,252.7974526383914,252.84049634821713,251.9503372637555,252.27523859823123,253.1009933501482,253.15762110147625,252.1811315990053,251.2523737163283,251.86999422125518,251.2824907307513,251.4025891693309,251.7111992756836,251.18337432201952,250.35079464269802,249.60682454751804,249.39375672722235,249.12243322934955,249.30306143080816,249.29693890409544,248.60040878038853,247.9349359208718,248.79409002233297,249.57599514815956,250.1536675626412,249.37413928331807,249.5626500057988,249.60350052872673,248.93291635392234,248.930815434549,248.43602540763095,249.38564408756793,249.24120647506788,249.02027090312913,248.37629455095157,248.17079575546086,249.10257250675932,248.34423454292119,248.77118447516114,249.136860255152,248.27649265760556,247.56632537860423,247.6458071009256,247.6296801310964,247.2016858132556,246.77978790318593,246.48157129529864,246.57571200560778,246.17368692019954,245.38989149173722,245.68373957229778,245.46054595755413,246.07588393427432,245.46568478643894,244.7367954836227,244.5854632658884,244.80348906246945,244.0257119354792,243.79530587699264,243.89862520992756,243.48845233488828,243.59757832530886,244.05892097391188,244.73352219257504,244.06061681406572,244.23908446310088,245.0657410970889,245.12679694686085,245.2620257572271,245.53999617509544,245.55643947049975,246.0230879462324,245.64050305401906,245.12636071257293,244.44217294920236,245.17163323843852,245.2191819413565,244.60004286421463,244.1119604948908,244.93080829642713,243.93969424581155,243.19620701298118,242.49908517487347,241.6646559368819,242.61926535191014,243.6182755306363,244.05749846855178,244.17749387864023,244.206370360218,243.54112983727828,242.80507803941146,243.0354438079521,243.44100296730176,243.2098786616698,243.78329259809107,243.15720017720014,243.44524787040427,243.43662135396153,244.1517999903299,244.31662199785933,243.90938352700323,243.64567563915625,244.0113539067097,244.56679808720946,244.20867090532556,243.74689774075523,242.84273676620796,243.83743944903836,244.03661881620064,243.38300764141604,243.8973686490208,243.25906267156824,242.73776166839525,243.34475845703855,243.33856595447287,244.19786127377301,244.6628130916506,244.07504466781393,243.34012209856883,242.51163428789005,243.20411523804069,244.14590475801378,244.36143474606797,245.05869279289618,245.4986010240391,245.3602917632088,246.33018533652648,246.38994666934013,245.51341247884557,246.2328130332753,246.59346318710595,246.86275712866336,246.55829945765436,246.29059945885092,246.99568043695763,247.41428174078465,248.22501473827288,248.8731810087338,249.3743618861772,248.40941479383036,248.59265252016485,248.90414829645306,249.13966951938346,249.705667947419,249.53942507086322,249.32652420550585,249.7279973407276,249.35728957131505,249.27969235787168,249.64788588695228,249.50954600516707,248.9940342134796,249.30872618826106,248.6598140252754,248.85924637224525,248.60997083270922,248.6516501889564,247.80000712862238,247.43293735897169,246.9109155451879,247.73347118869424,247.27272585779428,247.23265404626727,246.74323860788718,247.2194736553356,246.52357655810192,246.9645397332497,247.61704156920314,247.31987084355205,247.5894430410117,247.26543244207278,247.9324291893281,247.05610348843038,247.69551193807274,246.82540863193572,246.7274229726754,245.8418331257999,246.05891265161335,245.9281497709453,246.22320169955492,245.8540954864584,246.20974806556478,246.89171056821942,246.83924979856238,247.26751882582903,247.5842926390469,247.33249040646479,247.65290815662593,247.9405080517754,247.79941198509187,248.77222183858976,248.28095567971468,248.25330495880917,247.8985282224603,248.78235603682697,248.11083188699558,248.4743296788074,249.20357797155157,249.16825373703614,249.16678892960772,248.78085185214877,248.9903844166547,248.53886629454792,249.44596715644002,248.50620656693354,248.41570133389905,248.89057512488216,249.23351275920868,250.18925650743768,249.47697386937216,248.86289499886334,249.11439073830843,248.55987474275753,249.11269765207544,249.36706015700474,249.32736282236874,248.86701642535627,248.46878935815766,247.9254643972963,247.25559493806213,246.39611814636737,246.04685488296673,246.77327882871032,247.2351302281022,247.19320555077866,248.02689111279324,248.04762764647603,247.23832787200809,247.3408194994554,247.5841618143022,247.3764274166897,246.86350499186665,246.21677499031648,246.27834825217724,246.54309564642608,246.39776829676703,245.93390415189788,246.04872596962377,246.57900223974138,246.20665392605588,245.45354727935046,245.42613502964377,246.20222915476188,246.7939765737392,246.71908654086292,246.08831895282492,245.9223199300468,245.4651043987833,245.05991353746504,244.15198768489063,244.41133531136438,245.07460546400398,244.5181150911376,245.31277239928022,244.6133749242872,245.5752420607023,245.6087067546323,245.62952905800194,245.50367050990462,245.6324747763574,246.32879656925797,245.54331335565075,246.15901192324236,247.10397439822555,247.3142412067391,248.29293137975037,248.80414573242888,248.6816916288808,248.1613388583064,248.23246405133978,248.53026704490185,247.97066159080714,248.44020103476942,249.1494872304611,248.8337872135453,248.12306922161952,247.83824961772189,247.9276270493865,247.14801558991894,247.3514894777909,246.77186099765822,246.86100890673697,246.76024963567033,246.32542264880612,247.15326428739354,246.55019986722618,246.46787804178894,246.4156696172431,246.51156938262284,245.51532686082646,245.86357209924608,246.28829240053892,245.72195743815973,244.77416967693716,245.33096202509478,245.6995789995417,246.44658542610705,245.74010382778943,246.61271115625277,246.12676140572876,246.2771805957891,247.004065066576,247.8244840670377,247.85177621804178,248.29101052507758,248.61779256910086,248.01645969599485,247.4533039154485,247.38740861834958,248.07949393894523,248.31686977529898,247.97652360377833,248.85109764151275,249.51985911047086,249.49000574927777,249.58834118489176,250.36044595157728,251.30253264540806,252.26799662970006,251.6863049985841,252.2237725481391,252.1360212857835,252.8943242332898,253.59390500281006,254.58795540267602,253.6185545567423,254.2070242348127,254.12765079690143,253.81734095234424,253.0623547588475,252.4191924589686,252.52393907681108,252.60561731923372,252.86804964812472,252.6801663665101,253.14982454385608,253.6884117303416,252.86761242896318,252.84820504300296,251.95702343015,251.69105879822746,252.00327697582543,252.1936723794788,251.8113682367839,250.94538395199925,250.9821453266777,250.43997983448207,250.75568052008748,250.385467837099,250.96745418850332,251.89811333687976,251.90610369248316,251.0978415403515,251.30252783326432,250.67357752472162,250.00398491928354,250.138524023816,249.37389801815152,250.15702691394836,250.57672259118408,249.91540035931394,249.90933587076142,249.8555830689147,249.29731999803334,249.77427384490147,250.20093557517976,249.5604466437362,249.12827329011634,248.37691708514467,249.01900746580213,249.91486574849114,249.16830079536885,249.0861519239843,249.69439900340512,250.41689992090687,249.81943210028112,249.24780957726762,250.18815489206463,250.99564980342984,251.75834005977958,252.1287273829803,252.3734340276569,251.77130418131128,252.66233290778473,252.65725366631523,252.6862005922012,251.71375136263669,250.85080025810748,251.40888528106734,251.52414638129994,251.35350143257529,250.7513825893402,249.7708011046052,249.83542563812807,249.48293094336987,248.8862521830015,249.36686576111242,250.0700762765482,249.39454730646685,249.5519442227669,250.23204622929916,249.85924336174503,250.04494544817135,249.5768044493161,249.68295216420665,249.60287240240723,250.57036134554073,249.96930470131338,250.65271236281842,249.8835275536403,248.9075961438939,247.9462635437958,247.41059988271445,246.7006290331483,247.637375311926,247.87503908900544,247.82252445118502,248.53834810759872,248.7234390778467,248.1506330766715,248.87019541719928,249.45106053957716,249.44366993801668,249.0384740512818,248.11091136792675,248.0348684573546,247.19729135697708,246.251942390576,246.9112066575326,247.43370023323223,247.853476382792,247.2590912436135,246.3999431570992,246.15140949143097,245.9397206143476,246.46594583103433,247.09715599566698,247.88384601054713,248.7741819927469,249.03230825578794,249.65585386147723,248.8369178166613,249.7758315410465,250.6296675861813,250.6043879603967,250.64865475241095,251.35333681758493,252.08149681659415,252.13397494144738,251.59205162897706,252.41516228346154,251.9687452330254,251.70807800767943,252.38866619765759,253.33374214032665,253.6492535234429,253.52654384961352,253.453235801775,254.37839176133275,254.5088143539615,254.23188008088619,254.0719027542509,253.86442108033225,254.14606675459072,253.63457592995837,253.4474695166573,254.2623800537549,253.70880864188075,254.54816648969427,254.3212439478375,254.62269659526646,254.06872493354604,254.53862384334207,255.37298698537052,255.1334135364741,255.8425794225186,256.7279059626162,257.42578908475116,257.93762777140364,257.25065990909934,257.6250164899975,258.2133628530428,258.39284660480917,258.27991102682427,257.88518422236666,257.05005317088217,256.73160110227764,257.4263028795831,256.63371126540005,257.50512385973707,256.5489350259304,255.64479399705306,256.5952192693949,256.55800805054605,257.22081566322595,256.43934280751273,257.3778256587684,257.38165592448786,256.7718172064051,256.508279628586,255.5864472319372,254.6484457156621,255.0652195927687,254.54647440183908,253.7114487560466,254.4123885971494,253.81408803816885,254.59990367665887,255.36159942531958,254.99487172299996,254.14730712305754,254.99813053710386,254.60235082404688,254.30665734456852,253.31412985455245,252.4756159801036,252.74925100570545,253.32308530667797,253.66181541746482,252.67358469497412,252.58245947910473,252.34631487121806,252.59412286244333,252.35752428602427,252.55926725175232,252.99009586591274,252.13130720611662,251.47404152154922,251.4741982035339,251.44024027884007,252.165562806651,253.03718856722116,252.64808604633436,252.63250381033868,253.46346592344344,253.09003577567637,252.11047325562686,253.05265325168148,254.03752584429458,253.71219686744735,253.302620281931,253.82391268061474,253.6152621358633,252.93834797339514,252.8136478601955,253.7065172898583,253.96213116822764,254.76394416531548,255.00207782257348,255.39453962631524,255.67890118807554,255.6322100823745,256.0343365925364,255.8867010581307,254.97700202278793,254.05516748689115,254.25976920686662,254.2959035905078,255.12323314743116,255.0010566683486,255.385356483981,254.95594068570063,254.35298167541623,254.3358932887204,253.3644570922479,254.1178603535518,254.36042946157977,253.98324932623655,254.8380155293271,254.23256335500628,254.5245850677602,255.04804858844727,255.7690272401087,256.70394718041644,255.78262791829184,256.1665396327153,256.21350684110075,256.95483343536034,256.8458243086934,257.44056635396555,257.0447668605484,257.4354776283726,258.2046365365386,258.96267619822174,258.13093148358166,257.8920191070065,256.90340843005106,256.4458281453699,256.83137538516894,257.4332994846627,258.3541907048784,257.9771131784655,258.29874491877854,257.86225989926606,257.0347981178202,256.9606405165978,256.79031737614423,256.3408443182707,256.31740764388815,255.92186028137803,255.4037115070969,255.40732134180143,254.52869721548632,253.89195654448122,254.5807770686224,254.6307826549746,255.22432489925995,255.96544018760324,256.129876693245,255.88858493231237,256.6551202717237,257.28756689094007,258.19467586046085,257.2813719827682,257.5004141894169,258.06245583249256,257.6610152251087,257.38848326168954,258.3794188951142,258.39834797149524,259.24654090218246,260.0228519872762,260.43264025170356,261.0730002182536,260.63661688612774,261.41732314182445,261.81012751860544,262.377575061284,261.450022182893,262.2376401582733,262.37126715807244,261.6803871593438,261.80398948444054,261.0562914996408,261.27524765767157,261.25308569381014,261.0643300358206,260.75423747161403,260.3244938966818,260.5327524179593,260.388899859041,260.6448040767573,260.3321425993927,260.4042668864131,261.0434839213267,262.029025984928,261.27668083505705,261.3840108779259,261.5875318371691,261.49501752015203,262.3732716147788,261.8214324102737,261.6640631952323,262.29755162540823,262.35554965399206,262.5757871493697,262.8632568749599,263.72449653362855,262.93976570200175,262.22156002605334,262.785859933123,263.3309770869091,262.5132211493328,262.3400361132808,261.4603247689083,261.2365884431638,261.8694640379399,262.0800634990446,261.9404674465768,261.98888883786276,262.0357246142812,262.9601796409115,263.9428674597293,263.7022852045484,264.26103535387665,264.07118620863184,264.7715655625798,265.46849578246474,265.10183630045503,265.88172478973866,265.62467019073665,265.40974648296833,266.2204085160047,266.2462290641852,266.20264699682593,267.1043390445411,267.0526276919991,267.71127772610635,267.65888164937496,268.44889289932325,268.18990599457175,269.1079650456086,269.66919205058366,269.5443367375992,269.36017861263826,269.9774360381998,270.4604400987737,270.6584368837066,271.0771504351869,270.6328126839362,269.74743264121935,269.7050488977693,270.0832582390867,269.78812047699466,270.1769869145937,270.85585562651977,271.6980460062623,271.7701858957298,270.7931216643192,270.3258384144865,270.1346071283333,270.9324444970116,271.1823630388826,270.4037015074864,270.2576301121153,270.2299154493958,271.08760927338153,270.5418321425095,271.3394708549604,270.94041665969416,271.17288184305653,270.2945786397904,270.45197156025097,270.89038262562826,269.92173652816564,268.95580928213894,269.16647243872285,269.2808491378091,269.35013179760426,269.96143761463463,269.62161915563047,269.8132806974463,270.1919222646393,269.6395613886416,268.94784626271576,269.82864581095055,270.44789727171883,270.4162942538969,271.31959216017276,271.3438475811854,271.19779836246744,270.9191455328837,271.1620947220363,271.8529836158268,271.16226713731885,270.9185944846831,271.83864365378395,272.5207005199045,273.4902021908201,272.74063724000007,272.88795422622934,273.2975462093018,273.95702320476994,273.71326727373526,273.5096247540787,272.6877793762833,272.81586553528905,272.46134932432324,271.7940434375778,272.3373023606837,271.9457777449861,271.66084585757926,271.10270645841956,270.66530578397214,269.87246827827767,270.7236754843034,270.46868676366284,271.1739093158394,270.4005145295523,271.11312318081036,270.8852274804376,270.0476124850102,270.8888943740167,271.0785005032085,271.5530928936787,271.5311949849129,272.27801666175947,271.5953181213699,271.2908816197887,270.71662505483255,270.4280979032628,270.3196407449432,269.9280496230349,270.36911771120504,270.8830267987214,270.3824782320298,270.6641960563138,270.9084689975716,271.43161374423653,270.8068467504345,270.30562908994034,270.4716187273152,270.40329485945404,270.6611639652401,270.2950640246272,270.6181300263852,271.4545277245343,270.8679930092767,271.1831094129011,270.44186773570254,269.7280665617436,270.0022233976051,269.0090380930342,268.3525778669864,268.2240995434113,268.6263833474368,269.41093945736066,268.8740581544116,269.70881449151784,269.0055688554421,269.7306479420513,270.5080296448432,271.1348784486763,270.80452920822427,270.15117426449433,269.7316774725914,268.80577624356374,268.68359654024243,268.0249684625305,267.3469018279575,268.1570207304321,268.9310868117027,268.5768978497945,268.57034479174763,268.015361639671,268.3919804128818,269.2932641194202,268.62857334455475,268.4061539028771,268.44606429105625,267.8542000069283,267.57325230399147,267.2002200591378,266.8566030259244,267.34036456933245,266.8771450179629,265.890011198353,266.1567631154321,265.56882119877264,264.9987739371136,264.15948073379695,263.68556141946465,262.77261630957946,263.60327756777406,262.8397024171427,262.01423104899004,261.0947943464853,261.46878036577255,261.17699603084475,260.2086689155549,260.4524167776108,260.73201725957915,261.0062084426172,261.542629503645,262.4992222315632,262.0286879092455,261.9190456797369,261.74529367359355,262.30888316920027,262.6126613654196,261.7804461605847,262.6266625933349,261.9399982900359,261.86854152102023,261.9384049596265,262.4659232152626,261.81822075136006,261.49581824522465,262.12310315901414,261.4893993064761,260.76186364982277,259.8679970530793,259.10079356329516,258.77634830819443,258.3041953505017,258.5886474722065,258.5786287668161,259.50572168361396,259.0068418569863,258.4193024537526,258.17491360986605,257.1791900563985,257.94784471206367,257.8022165107541,257.74703061953187,258.2754584532231,258.9180553397164,258.4296663682908,257.76299388101324,256.8235044423491,256.20515444502234,256.369369876571,255.66086423350498,255.8739399923943,255.071362728253,254.50750718824565,255.28299895487726,254.28443250292912,253.97925372421741,253.63849000725895,254.01030246075243,254.25053513143212,253.8595083206892,254.3501228382811,254.1043421891518,254.0549111403525,254.33205939736217,253.4769623670727,252.48087994242087,251.79749394766986,252.7247292054817,252.71403233101591,252.5137147870846,252.2579258508049,252.54964204318821,253.29913708148524,252.41723303496838,253.3120733485557,252.7512929015793,253.630063442979,253.61542266607285,252.71306459978223,253.611975973472,253.2914481749758,254.28488298784941,254.74336868710816,254.3574115182273,254.158954070881,254.8676459887065,255.3373473417014,255.5627351058647,255.88178189331666,255.34007152915,256.2661473257467,256.0094594489783,255.07800480537117,255.00009860889986,255.61011827085167,255.71175972698256,256.40560199925676,255.88295779377222,256.4675890719518,256.39626204874367,256.4425150086172,256.2810030858964,255.93671164195985,256.4439249378629,256.760189270135,256.85440001124516,257.7952516148798,258.0820369948633,258.7408220632933,258.33680146187544,258.0919312131591,257.6758408001624,257.9264970761724,258.1995584620163,257.68112812098116,257.06578393653035,256.4242115756497,255.52432417264208,254.55158137204126,255.52605118835345,255.59938578866422,255.67842057859525,255.31035952130333,255.36483300151303,255.18494297889993,254.63726446358487,254.9480750206858,254.2213404364884,254.62790158530697,254.64288032893091,254.96241562999785,255.51179451774806,255.95022781612352,256.00181954773143,255.62417532037944,256.393396272324,256.42966205254197,255.5410101385787,255.79867273103446,255.36338465940207,254.6429469306022,255.27431419398636,255.10915419878438,254.2329232469201,254.46947211865336,255.20725165540352,256.2040637661703,256.9450602638535,256.7556007215753,256.44495399156585,255.86200880771503,255.29452477302402,254.4152216189541,253.57011876953766,252.5964163611643,253.11593506857753,253.860416976735,253.52312209270895,253.70136898523197,253.15727936755866,253.8420495763421,253.22076932992786,254.15804545022547,253.73520611133426,253.0655001043342,254.02979682479054,254.90347772231326,255.85135103063658,256.13099974254146,256.0744973872788,256.02647653687745,256.30392136704177,255.8355821222067,256.8342001847923,256.3256153888069,255.93151873955503,254.9739971891977,254.67515960754827,254.3626942327246,254.64251820230857,254.2669091615826,253.99896246241406,254.82672595744953,254.91758406255394,255.69521815422922,255.21639463305473,254.31733649596572,255.31234776368365,255.44622541312128,255.82575864437968,255.75028813444078,255.9454925316386,254.95757301757112,254.14948296407238,254.32606808794662,254.38646009285003,253.8313272637315,253.07612073561177,253.16328687919304,252.45374255813658,252.27745473012328,253.03176565282047,253.62440975010395,254.61431430652738,254.45945445541292,254.0123139177449,253.81211987091228,253.39551215339452,253.03746132506058,253.9109459305182,253.04757820814848,253.7466617836617,253.88212379533798,254.82987434696406,254.79646900948137,254.40637379977852,255.07152592670172,255.21427158126608,254.4494722704403,254.23919050535187,253.8074106052518,253.8974168151617,253.38714668899775,253.7051119641401,253.33417495992035,252.34551104484126,252.63575940579176,253.60469553992152,254.02886571316049,253.69638822972775,252.9709720276296,253.3629273599945,253.6659889095463,252.86134300846606,253.6004350623116,253.13127421634272,253.78765466809273,252.79899702733383,252.19265607371926,253.04630763735622,252.32251080079004,251.84280403517187,251.53857317985967,251.65671429550275,251.71364359604195,251.5429729167372,252.15995649294928,251.5130147114396,251.17684943368658,251.9535170146264,251.58734403923154,250.5959726832807,249.7973241219297,249.49144067894667,248.5886328537017,247.7496633590199,246.85745313949883,246.58824888430536,246.49677901016548,246.83639954729006,246.11208485951647,246.67874304344878,247.2195261158049,247.05076966853812,246.58691414771602,246.6763043254614,247.38895021984354,248.16906353551894,249.06780674122274,249.53979379544035,248.6220167791471,249.48186908382922,249.5393687915057,248.98869819380343,248.51490620337427,248.85499795759097,249.66533879563212,249.93646678840742,250.13312039105222,249.16952793486416,248.41788454633206,248.08241859683767,248.9484834871255,249.2633206397295,249.17785359406844,249.20968768838793,249.06073042051867,248.85014681797475,248.2658095085062,249.2122445446439,249.36416660016403,249.5475533460267,250.14373440248892,251.11046092072502,251.76774635678157,251.89361638342962,252.28581136930734,251.98369506094605,252.17405681218952,251.4240862429142,250.48548182332888,250.98435303522274,250.62717297719792,250.44320816313848,250.98207526095212,250.44715806143358,251.18739890865982,250.87024774914607,250.16521277138963,250.88330709887668,250.7825464089401,251.68082486651838,252.03480132529512,252.76765070483088,252.9699370469898,252.51988033996895,252.98614522675052,252.852642652113,252.67763243801892,253.47319688508287,252.53712620167062,253.33690616860986,252.51379844499752,251.98969594063237,251.47469791444018,251.73773899441585,250.8820432946086,250.0986793236807,249.5023958045058,249.17681471677497,248.2491248198785,247.6430834941566,248.13213678309694,248.2730250353925,248.25626922305673,248.72706162044778,248.51764339068905,249.34878020221367,248.69391875946894,248.3162978682667,247.68256261665374,248.5932742599398,248.10735136223957,248.55884247319773,248.3754441505298,248.1706421431154,247.80098307365552,247.2171896393411,246.25091887637973,245.39706190489233,244.989855339285,244.7036743601784,245.44982964964584,245.77907544374466,246.74759458610788,247.49945490295067,246.64443258894607,246.26730935275555,246.4870603303425,245.89707191754133,244.93466678727418,244.34085679752752,244.33306312235072,243.5856463010423,243.79377201152965,243.12149632023647,242.14172756811604,242.70584166422486,241.74429345224053,242.27639953047037,242.12557519646361,242.65432549500838,243.57552666869015,243.7322007548064,243.93076112912968,243.99218222685158,243.82110034720972,244.2590978150256,244.8719844422303,244.94726228015497,244.91673179809004,244.72794050583616,245.3996067615226,245.66900364821777,245.52752233762294,246.38402639096603,247.3170475079678,246.81824911013246,246.6811101664789,246.64811850665137,247.2618635543622,246.9397671893239,247.27608224377036,247.60393679561093,247.55301817134023,248.25699613243341,248.1677609179169,248.39333471143618,249.19275827659294,248.99467264860868,249.60309172561392,248.75482841394842,248.80837564496323,249.80516716605052,250.58369196299464,251.31778538459912,250.87337023904547,251.24064087308943,250.74896378815174,250.83292182348669,250.47495098691434,251.16137287253514,251.43939289730042,250.5879215109162,249.85325613245368,248.91415409371257,248.68425338249654,249.28221410838887,249.79919518204406,250.12440389906988,250.2859670687467,251.0029179523699,250.44698221422732,250.10551346559078,250.2233212068677,250.69325889926404,251.45109327230603,250.60245678573847,250.5992685398087,250.44665129156783,249.95775484666228,249.57085067918524,249.34520324133337,250.21591383358464,249.67611825512722,249.56272913562134,249.10927574522793,248.79596936842427,248.0571318329312,247.7023698957637,248.21773980138823,248.97622819337994,249.21739467978477,249.39670881442726,248.67944752890617,249.1200173823163,248.5344714722596,248.901174062863,248.0142246708274,248.78223988832906,249.03742498485371,249.77280597481877,250.21748521830887,250.5432652742602,250.71035008551553,250.63123588776216,251.61240601260215,252.28414373937994,253.16916383383796,252.7500268719159,253.48364206310362,254.2780175372027,254.6864509950392,254.87344134459272,255.72263140883297,256.43530929926783,255.847080453299,255.79505890700966,255.6191826025024,256.15208436967805,255.32622836669907,256.2560679218732,256.68988926149905,257.29915156261995,258.2961074812338,258.44347497075796,257.5482895686291,258.2703746049665,258.65889511303976,258.0692269168794,257.3657176736742,256.50980161875486,256.1906948816031,255.50411357032135,256.1354379663244,256.21707655629143,255.97931951796636,256.73856232035905,256.2738316645846,257.17667257785797,257.9363575973548,257.04342063935474,256.5205254224129,255.52767636440694,255.467408740893,256.0629546842538,255.76516243023798,255.43672870006412,256.13243149546906,256.71859139669687,256.3210269534029,257.27012974815443,257.6864989544265,258.3690682738088,258.58043331373483,258.2239288687706,258.6516664051451,257.7420467864722,257.16340380208567,257.5250336830504,257.119871372357,257.42603041464463,256.8963143299334,257.5576640726067,257.24903645925224,257.3394121536985,257.77766628051177,257.11456076195464,257.7818731549196,257.3457709043287,258.05124166654423,257.05682756891474,256.5562298223376,256.7077636877075,257.17143808305264,256.1886088545434,256.7697557657957,257.727044607047,257.32062323298305,257.8147501219064,256.92273499118164,256.80537928966805,257.66275147581473,256.8766931206919,257.4631995554082,256.9600540124811,256.0097778416239,255.85986842680722,255.5433349511586,256.48540522065014,255.60317682567984,255.63285306235775,255.52349561965093,256.42992111761123,255.55698039149866,255.5757424067706,256.24459060421214,255.86961072636768,255.44048549421132,254.936802059412,254.73111320100725,254.82938510924578,255.02990531222895,255.25887517770752,255.30439642909914,255.11210158187896,255.84000048134476,255.80422010459006,255.54288636520505,255.9898174465634,255.20190449012443,254.96574296010658,254.2875843127258,254.9428614540957,255.02937595453113,255.44341571861878,255.3199830581434,255.14092672150582,255.53674455732107,255.65546898217872,255.4917351566255,255.84283950086683,254.84641469595954,254.34722195053473,254.10617256863043,254.88900500256568,254.67140633706003,254.33750117151067,254.72769381757826,253.98686470650136,253.9474510010332,253.550966266077,252.93832465074956,252.53754421463236,252.96899843309075,252.46778200892732,252.08001933665946,251.95446899114177,251.29731435189024,252.14961448917165,251.83163419459015,252.66440497525036,252.55550055252388,252.04001850215718,252.8252968848683,253.38873736327514,254.38752180105075,254.68382685817778,253.76982428925112,254.2215087893419,254.1851928383112,253.81771922810003,253.74571742489934,252.87574804155156,253.31765748606995,253.7293618149124,254.4940197370015,253.5464050360024,253.10267805866897,252.1026957836002,252.29252174682915,252.91591210616753,252.23998351488262,253.12891785381362,252.69685698021203,253.53786457609385,253.01535885827616,253.31468843016773,253.06240412639454,254.04570025391877,254.14083063183352,254.96473593311384,254.40433377120644,254.46367280604318,255.37895405245945,254.84978062286973,254.1667459551245,254.51737549714744,255.16245301580057,254.2332794885151,253.80192415975034,253.79841783689335,254.47336479835212,253.8291475349106,253.9270151029341,253.06757072452456,253.26838770508766,253.54373079445213,254.49816558882594,254.66783562116325,253.99693249119446,253.83789996849373,254.81454112567008,254.80567621765658,254.1947867879644,253.32033320888877,253.71604808233678,253.64161729859188,253.6910558436066,254.41359642101452,253.82382759312168,254.6619419180788,254.7024069451727,254.24855374731123,254.5794687489979,254.68482244666666,254.90114191453904,254.72613751143217,254.64550105808303,253.84193382505327,253.51241788081825,254.4165372485295,254.38057693466544,254.75278406077996,255.41940916283056,255.3838652325794,255.88655640324578,255.7738632047549,256.456285928376,255.9959335741587,255.7755560129881,255.5552290007472,256.08242665370926,256.1628047078848,255.28548871306702,254.69386850390583,255.06482623098418,254.3270852235146,253.51702521461993,253.6876994241029,253.4186634402722,253.2177011067979,252.7937016808428,253.22924403101206,254.00845230882987,253.4765580049716,253.78610475407913,253.27966693323106,252.48797004576772,252.23038120986894,251.63982162531465,251.94868582719937,252.86439693253487,252.83628092193976,252.70794963743538,251.93146389489993,252.6123049808666,252.6387841925025,251.95036119688302,251.42003691615537,251.84292418370023,251.90743600623682,251.90531563479453,252.52353310678154,252.3257708339952,252.14958658860996,251.54563149483874,251.02603702014312,251.50302716856822,251.06417118012905,251.04587754188105,250.468550064601,249.78463506000116,250.50020399037749,249.7293019350618,249.6362652289681,249.32040873588994,249.08399507356808,248.84224484395236,248.35152828786522,248.25256735784933,247.9940271852538,248.2733919247985,249.14237765129656,249.36407060874626,248.60312251653522,248.2351521947421,248.68975871941075,247.9269021921791,248.2198682515882,247.74068444687873,248.0487772054039,248.68242802657187,248.88307264633477,248.37628444237635,249.245715577621,249.44552206108347,248.47544720117003,249.32333464035764,248.36303309956565,248.21166082192212,248.18313557375222,248.05312831047922,247.5077640498057,247.78935200721025,248.39892948046327,247.51598134357482,248.45180243300274,248.2587884105742,247.5448464602232,247.91097767278552,248.365669591818,248.64484377065673,248.02151801856235,247.3920431700535,247.71091214101762,248.6798063442111,248.97911706659943,249.3950709081255,249.74076073477045,250.55070282286033,250.1588579453528,249.32561077922583,248.40103154163808,247.56729601928964,248.13566467911005,247.2591481981799,246.60477821342647,246.00175951886922,245.353708143346,244.93321256898344,244.73461009003222,244.00192339345813,244.0592597099021,243.7100634612143,243.5058179940097,244.45155552122742,244.15037808427587,245.0250189350918,244.06805883161724,244.13191635720432,244.82883109152317,245.226717768237,245.2544917818159,245.63655101601034,244.998092032969,245.6260497206822,246.33775141928345,245.4480026741512,245.68047651369125,245.48569555208087,245.55963358748704,245.42699683876708,244.4376342059113,244.0094922101125,243.5410816334188,242.97871437016875,242.10265036858618,242.6204089075327,242.01926700258628,242.49491770984605,241.69103854428977,241.6205749004148,240.92760056676343,239.9612341756001,240.71218767156824,240.83019267674536,240.85067829303443,241.05592990620062,240.4817537809722,240.7573514888063,241.30991392210126,241.75532397674397,241.19711738592014,241.7121329610236,241.23318155668676,240.59854334359989,241.14397425251082,241.90294631756842,241.80992586165667,242.1456876178272,242.4236192223616,241.47023702645674,241.1466430616565,240.37282419856638,239.87396409129724,239.75963400583714,240.46617434779182,239.99078823067248,239.0869743465446,239.0823801443912,239.10958938207477,239.81186836445704,239.4326991746202,238.52467567799613,237.54470576392487,238.39225582918152,237.59086866024882,236.8390957438387,236.3442825381644,236.54804958123714,235.67611443717033,235.66408852813765,235.7001108159311,236.44611246092245,236.86296695983037,236.27317056199536,236.32138433679938,236.36431664647534,235.95609757956117,235.79648732254282,235.11394584504887,234.23295124759898,234.4708774141036,234.90375209087506,235.73054842464626,235.842898783274,236.34944515675306,235.3582365522161,234.63365768967196,234.87940505612642,235.1823063385673,234.46406594105065,233.72214300138876,234.20173450466245,234.4750404851511,234.7000281419605,235.43482034280896,235.64890532009304,235.48572306195274,235.81868105055764,234.87687333486974,235.66404219716787,236.1328515280038,236.202425615862,235.97657565772533,236.22722662752494,235.92204215796664,236.42376617901027,236.00964543549344,235.05889321817085,235.58882694365457,236.05467185843736,236.67112309858203,237.2517855805345,237.31611740030348,236.9218035005033,237.23135056439787,237.57610375387594,238.52546336781234,238.13163721794263,238.72746265027672,238.6197291323915,238.85642013698816,239.43714766111225,240.18418228486553,240.1450768406503,239.6476486804895,240.19031257880852,240.44730695756152,241.44176835287362,240.58283943170682,240.42647785972804,240.40426315320656,240.11700403457507,240.50990341277793,240.49473312264308,240.01486114226282,239.7158229779452,240.6743932790123,239.98846540553495,240.57025112817064,240.2929860376753,240.93411924596876,240.17746319342405,240.72282431228086,240.1291294307448,239.87582048401237,240.7675181981176,241.42402285989374,241.39917037356645,241.12320356443524,241.88528194697574,241.0344476760365,240.50016367109492,239.92677242076024,239.42062659794465,240.24714400526136,240.2205623118207,240.67576520936564,240.31898359116167,240.70096707344055,239.88467216398567,240.100367362611,240.17945022089407,240.01766826026142,240.70625409577042,241.37105523282662,241.20546770468354,241.6243183389306,241.28573071677238,242.15036032907665,241.31566163385287,241.87833489198238,241.25684137735516,241.94164887117222,241.63088929699734,241.41505012381822,241.67650048946962,242.67230531340465,243.64347113482654,243.60134585993364,244.2624260801822,244.53805471444502,244.05335739674047,243.75090706488118,244.06316705793142,244.12189308088273,243.56681474111974,244.22197952121496,243.2616651635617,243.7134440448135,243.45559962233528,244.1176055255346,243.76572170574218,244.0292540937662,243.1768270591274,243.5154014825821,242.80869375169277,242.2530662966892,241.55464305449277,240.9275825158693,241.21178746735677,241.46885240543634,242.2830880456604,243.20924156485125,242.60758523875847,242.78462728252634,241.83849990554154,241.27278753230348,240.46507678972557,240.69092946033925,240.53572800848633,241.52812884142622,242.21414652187377,241.48475165804848,240.95888886321336,240.18553078128025,239.40988796483725,240.21999660739675,239.6203053179197,239.01864395523444,239.50116495601833,239.58872352726758,239.39042627997696,238.92822151631117,239.63830451993272,240.55892136134207,241.47880407702178,240.6924668531865,241.66019109031186,240.99024799838662,241.26943580899388,241.10958636086434,241.09302486572415,240.62857683980837,239.863601278048,239.2032343535684,238.87245933292434,238.0447047580965,237.1788191855885,236.9435764681548,236.6021036542952,236.7489092159085,235.89298646850511,235.92257129214704,235.2739931223914,235.63879696838558,236.08473028987646,236.9924556822516,236.3100029840134,235.37720370898023,235.5291294325143,235.9635780933313,235.28629452781752,235.0367898903787,235.55494029959664,235.14245357224718,235.8101852601394,235.53255332261324,235.9229467138648,235.60894981445745,236.19502726523206,235.47813507448882,234.9204305075109,235.57899546809494,235.8087688270025,235.58167033363134,234.70570594258606,234.43498759809881,234.09259869577363,233.2012931248173,232.58248088182881,232.05050128465518,231.13480235589668,231.39726603915915,232.2062537809834,232.80636345921084,232.522987422999,232.72526423772797,231.8473159596324,232.4640568913892,231.93369215540588,232.31288721924648,232.55514274770394,232.45117960637435,231.9280004943721,232.24546301271766,231.24659621575847,232.18672369560227,231.26418269891292,230.63651864835992,231.3231619168073,230.5849751974456,229.74863012647256,229.3782819402404,229.6559787984006,229.21160264825448,228.62109142821282,227.65160759724677,226.94926429819316,227.30197693035007,228.01069145929068,228.8231057659723,229.77826595911756,230.43761055497453,229.58733462914824,228.61707978369668,228.7268226183951,229.09552363213152,229.05352402152494,229.76542315632105,230.3791443677619,230.23814853280783,229.49180121161044,229.84526956360787,230.4745906041935,230.58142350241542,229.77336220722646,229.51991509040818,229.96191831072792,230.2717357026413,230.4411052125506,231.38820138480514,232.18648406350985,232.11298365239054,231.16120978211984,230.1963418708183,229.22370927920565,228.52841762872413,228.84770608041435,229.605583852157,229.9873270886019,230.6666244068183,231.3052839417942,230.61464153416455,230.18573600426316,230.91252631973475,231.655131933745,231.97072642529383,231.2146555101499,230.37070507649332,231.2025066241622,230.8131455583498,229.89471604814753,229.7671989542432,229.96826990647241,230.82762952102348,231.16937670484185,231.30631924141198,230.75782532896847,231.7031174665317,231.39238288905472,231.21255413489416,230.8809948465787,230.2152480375953,229.97205566428602,229.45381081150845,228.67362430645153,229.5298018977046,230.2229493255727,231.0460389731452,230.57511211931705,230.6159484181553,231.3082665684633,230.3132801745087,230.81263073300943,231.65789307653904,231.85687798354775,232.10491158114746,232.0950992302969,232.91238928912207,232.96998612908646,233.27349651046097,232.64316282281652,232.18325187498704,233.01784596266225,233.02887163730338,232.6740596103482,233.54308707406744,233.469038981013,233.00601874291897,232.72114155255258,232.5066079692915,232.2793384110555,232.2215387984179,231.8057573279366,231.8848905628547,232.03448790730909,232.12590605160221,231.78763348795474,231.63205410493538,231.83899247646332,232.619293353986,232.43980053113773,232.71493448875844,232.89009410329163,233.7002048152499,234.6751900962554,234.17915145354345,234.152370757889,234.73561072954908,233.87927699973807,233.205171990674,233.75076751969755,234.72551794350147,235.2477565300651,235.76314597157761,235.04359454661608,234.0574438041076,234.8794061690569,235.67954969778657,235.254166692961,235.5435427064076,234.80214413860813,235.07380071422085,235.16903639910743,234.38726192014292,233.72996205743402,233.29545111767948,233.9414101089351,234.2640266092494,233.35308502754197,232.6555274790153,233.2582607921213,233.93387310905382,234.086026978679,234.20882959710434,234.19312116131186,233.8294556243345,233.4860060797073,232.8077642917633,233.2265896499157,233.91561332903802,234.70466621639207,233.76906920410693,233.21614001039416,232.27441495563835,231.64385941019282,232.21112277172506,231.6538239121437,231.60389282088727,230.79554708767682,230.44953059824184,229.53407009877264,230.34699356090277,231.2736139963381,231.26306934608147,230.29352464526892,230.02011590544134,229.14683739840984,229.7898578676395,230.51923559280112,230.04633953841403,229.7077229307033,230.22178787970915,229.27308757742867,229.2529157246463,229.69144742563367,228.83741655293852,229.05100455880165,228.53845660062507,228.30913153709844,228.2942415694706,228.60499957343563,228.6496042003855,227.7977219815366,228.1070379363373,229.04758352739736,228.65089291054755,228.07158673601225,227.9046017313376,228.80947664519772,228.26002018991858,228.76617896184325,227.7803557710722,228.3610890735872,228.51734447618946,227.55020831152797,227.66205853549764,228.23541822331026,227.4967994214967,226.92944915033877,226.88995020324364,225.91782057099044,226.43494542315602,226.75395825039595,226.45468380255625,226.31960309715942,225.58705379487947,225.808518382255,225.86094957776368,225.63563565490767,226.07514017168432,226.64580644434318,227.11764613026753,226.5660505327396,227.56252701301128,228.1278260066174,228.671181590762,228.26223539933562,228.9339565616101,229.46799809578806,229.80745606683195,228.8317860327661,228.06434932444245,227.98417234886438,227.99026509886608,227.60184357268736,227.23850539745763,227.89307925943285,227.3641802109778,228.05762063525617,228.707628690172,229.1831752564758,228.4075659387745,228.30983713362366,229.16707540815696,228.92351802252233,229.73839384224266,229.90268906624988,230.07357239862904,230.58324766950682,231.52415618905798,231.55319101782516,231.42517262650654,231.33750528050587,231.4615405392833,231.52028731023893,231.02632379392162,231.7217584825121,231.2797674308531,230.88645740645006,231.61889432696626,230.83746466273442,231.80373021122068,231.1379627850838,232.13191506965086,231.24160978617147,230.84479788178578,230.0401651887223,229.34795256564394,230.23027425119653,231.21360502112657,231.65399550832808,232.20717868302017,232.37128644250333,232.28464345028624,232.2075377656147,232.63145332131535,233.61542376922444,233.0357883819379,233.09020107798278,232.62880097003654,233.5155946603045,233.57692717574537,233.1188445952721,233.01813581446186,232.68872294109315,232.33464440517128,231.5456964499317,232.11482484964654,231.20486032171175,230.9742505401373,230.12460819538683,229.58153331279755,229.05837586149573,228.1641732933931,228.78895381558686,228.74296325212345,228.76571843540296,229.7490281816572,229.58017776207998,228.60179118812084,227.97139474144205,228.655580251012,228.59495089948177,229.11642754310742,228.45877487864345,227.53747223457322,226.75400091707706,226.53735577361658,226.5945752686821,227.0043361224234,226.06200527353212,226.1738268705085,226.88383567566052,227.39558438351378,228.34275505319238,228.8459043460898,229.63363208714873,229.9394890833646,229.18141845613718,228.53404641570523,229.36017145449296,229.99779807170853,230.11598941497505,229.42869847780094,228.78107875352725,229.50422698445618,228.56032642768696,228.21123816119507,228.79710185574368,228.1192703084089,227.2520481403917,227.21806396823376,227.69615446263924,228.42793449526653,229.42536315368488,228.9718107683584,228.3258619979024,229.23055528569967,230.1043920647353,229.63200354436412,229.9834223096259,230.76436351565644,230.93309201858938,230.0657630865462,229.4258569967933,229.53595132287592,230.0893349549733,229.1652727839537,228.72245051991194,229.05411509331316,229.46381330257282,229.7029260220006,230.16939053451642,229.75274666259065,229.22283008042723,228.3330378984101,228.38677329709753,229.35981310578063,229.50024563865736,230.02204907126725,229.94929781928658,229.64012509817258,229.1477766907774,228.52158363210037,227.8379724449478,228.12849626038224,228.3012825581245,227.7902650265023,228.17655215598643,227.8331774440594,227.9823845406063,228.906854191795,228.13739719428122,227.30982892820612,227.45651122182608,227.40319754183292,227.44659718917683,226.57083360478282,227.22501536644995,227.79071502014995,227.9774421211332,227.3614265951328,226.76944646099582,227.36030695308,227.80873244069517,227.12243328616023,227.89959772396833,228.2303806678392,227.8316618851386,227.35837237164378,228.03095967276022,228.59938175417483,228.44541810452938,228.10888462234288,227.6905782436952,228.05916564818472,227.40270433295518,228.2999790306203,227.46091620950028,227.1147824623622,226.73368703620508,226.73373611224815,226.14548014104366,226.03762801969424,226.24730175687,226.62079691886902,227.04941077297553,227.62960015283898,226.7096390267834,225.76917612645775,225.23300603358075,225.39927976811305,224.52467930177227,224.57207858469337,224.15563239064068,224.2920158971101,224.83034848282114,224.7980523216538,225.44005006412044,225.7347735329531,225.07319260807708,224.5190623695962,225.00729579525068,225.5009825960733,226.05750324903056,225.63217006856576,224.65904656937346,225.23778491374105,225.62210051110014,225.1814854084514,224.35422642389312,224.55420117313042,223.69595505902544,224.35831775516272,223.81233591446653,224.43839296046644,224.86352934129536,225.1557154194452,225.50157082360238,225.95149061223492,225.1602777838707,225.11057488340884,225.06881159869954,225.53242483269423,225.23272932739928,224.38658900372684,224.93820925056934,224.90022829407826,224.96832580771297,224.6331691350788,224.54611875815317,224.94131582276896,225.20978001412004,224.5454064863734,225.1209231549874,225.54841013951227,225.55477307504043,224.95860739098862,224.82960823830217,224.44867988256738,223.49062344245613,223.5230207289569,223.83429451053962,223.09271787060425,222.0955763454549,221.85832292912528,222.16345322644338,221.53307738387957,222.285144015681,221.88035692833364,221.98719980893657,222.2550125233829,222.8019306799397,223.16679246164858,222.89273956418037,223.84356465004385,224.7518545924686,224.44815471209586,223.66224280092865,223.40493573155254,224.09399696346372,224.8404880221933,225.78473746217787,226.08717224514112,226.4318906594999,225.98030070168898,226.81247270200402,225.8671198412776,225.2938954611309,224.8555456865579,224.64271392067894,223.9478703965433,223.7950963168405,223.2006441685371,223.01186571083963,223.8978002294898,223.19053117837757,224.0675157434307,224.1042585382238,223.78275928553194,223.27685285080224,224.12070021452382,223.13606551848352,222.16999201010913,221.34570219740272,221.5836055930704,221.77694175764918,221.16499298298731,221.24220968736336,222.23548971908167,223.1822828007862,223.7683954872191,223.50084651820362,223.81098987627774,224.22775602946058,223.9185014506802,224.53696594759822,223.62582597322762,223.62947344593704,222.96254482585937,223.23373039904982,223.00937029346824,222.5742798964493,221.6833229213953,222.38077250728384,222.3660033000633,221.86654010415077,221.29648544546217,221.25453424220905,220.51487347111106,220.38111778907478,219.90186481690034,220.26263150619343,219.45032886927947,219.1789574995637,219.83512174990028,219.47397999977693,219.15909877140075,219.36385938711464,218.93131647491828,219.51629445236176,219.87028561439365,218.95572452060878,218.37825131881982,218.9368617660366,219.1350612207316,219.45302625233307,219.75444546993822,218.92309804446995,218.90929868863896,219.59134773211554,220.14311398612335,219.65754459192976,220.41123282629997,221.17300338996574,220.22921843081713,219.6872311369516,219.55669361259788,218.60531334532425,218.43725198181346,219.2431735303253,220.1294657685794,220.06078239623457,219.2038988112472,218.94688264233992,219.2487885998562,219.15135680511594,219.02285806136206,219.08379415189847,218.5675919726491,219.09998611733317,218.57771055959165,218.5637390469201,218.52700690971687,218.02701396401972,217.6277870181948,216.73875790880993,217.3699249671772,217.9061584766023,218.73459222493693,218.8335966602899,217.891776796896,217.16820462839678,216.78091852366924,217.60873513296247,217.48951496975496,217.78642312064767,218.055421625264,217.0971173015423,217.38207601523027,218.02641235943884,218.3049606778659,217.7640380160883,217.34672132041305,216.93833185825497,217.13140738615766,216.17991489823908,217.0211981809698,217.62953977566212,218.40178053174168,217.7004200303927,217.52183684660122,216.80690896464512,217.70349345030263,217.30797978118062,217.47408928489313,218.41715251328424,218.2639459790662,218.13223372679204,217.2123209387064,218.12832339899614,218.20589272258803,217.29488719813526,217.0076466272585,216.32115760212764,217.0424058600329,217.92365558212623,217.72339249029756,218.6524968026206,218.88571325782686,218.50899667292833,219.3648756411858,220.28591555170715,220.52465679915622,220.28707769606262,219.63557103835046,219.94062087824568,220.60290412884206,221.5703628938645,221.19062052248046,220.37525629531592,219.73258605925366,220.6840492039919,220.81496378593147,220.07453221594915,219.43372844345868,219.03654206497595,219.68151184124872,220.07156588276848,220.43127182219177,220.51890733279288,220.9197537517175,219.95331550110132,219.4850033847615,218.96219671377912,218.37910662870854,218.85824670409784,218.40178014244884,218.35936058871448,219.1160861654207,219.3814887930639,220.11940206727013,219.55913945194334,220.3365769283846,220.1110461880453,220.73799960967153,221.5231239972636,220.76001423085108,220.75379983428866,220.8565320749767,220.10034053958952,220.274344551377,220.15648537874222,219.23159775417298,218.7157955323346,218.38333933101967,219.03166933031753,219.57903095986694,219.75190992001444,218.76254720939323,218.55007268488407,218.81952947098762,218.79251728625968,218.32685970468447,217.93218022864312,216.9835005463101,216.59071626327932,216.15314066968858,216.3759343684651,216.7461578445509,217.04398747207597,216.64868998667225,217.18953752191737,218.18522078776732,217.90458711516112,217.72022324986756,217.36521747428924,218.18954802770168,218.1381497895345,218.3764333743602,219.06278720591217,219.86770832445472,219.541852270253,218.70666839601472,217.9043391905725,218.37583011947572,218.33711666986346,217.64885780448094,216.8159092287533,216.92145308153704,216.03090399922803,215.49678267119452,216.3836793685332,215.78400932159275,214.89301724126562,215.2383435862139,214.88709553843364,215.75576817290857,215.90538043994457,216.87389826914296,217.61508813360706,217.1645399760455,217.05306958034635,216.66960544371977,216.806673086714,216.3755745352246,216.79955414962023,217.14083081297576,216.75632297992706,217.05995682114735,217.64358153101057,217.54223708808422,216.86969920014963,216.05318358773366,217.0353778465651,216.08778016176075,216.1482312832959,215.89014419494197,216.6222538757138,216.44013295462355,216.19878893019632,216.23251838423312,215.76500026555732,215.72886070562527,216.08641932345927,216.77771145990118,217.03910878580064,216.7839518012479,217.28192007401958,216.93388652522117,217.03191527538002,217.73882699292153,217.07728890748695,217.1586892567575,216.34887045249343,217.1279861801304,216.82212125277147,216.4962862888351,216.08614043239504,215.9941137759015,216.87396896630526,216.21942101279274,215.45903189620003,216.13336487300694,215.57741243159398,215.63319592317566,215.60097787622362,215.00537702580914,215.8977184756659,216.47593070566654,215.80859627202153,215.8915608418174,216.699225185439,216.58527898509055,216.83980408869684,217.37293010484427,216.96619131462649,217.04257640615106,217.0764149595052,217.25660709943622,216.52565464377403,217.23370414599776,217.34018831234425,217.03905651066452,216.76703327475116,215.8015041681938,215.21575431199744,214.22197384852916,213.6308614090085,213.79219923866913,213.16200240934268,213.90477439574897,214.0585399772972,214.2858655443415,213.4716893392615,214.20224719680846,214.8895709994249,215.00810874067247,214.25535365520045,214.39760424150154,214.72532158810645,215.0293091647327,214.98180431732908,214.48498585401103,213.98052250081673,214.34398165345192,214.60611445922405,213.97543433401734,214.71540781855583,214.44664914766327,213.67030870821327,212.81018591905013,211.9529083762318,211.34270011493936,211.11968241166323,211.5307215754874,212.38605555752292,212.31331455754116,213.0284606604837,213.6350941308774,212.89942622324452,213.45208969898522,214.26980532426387,213.5062538688071,213.1082028564997,213.9208716833964,213.03005168028176,213.82134905504063,213.33795662457123,213.8373295525089,213.91148891113698,212.98775483295321,213.3045479771681,213.01900246366858,213.2680371957831,212.85810071695596,213.66721104225144,214.55299349222332,214.70491958688945,214.87623947160318,214.16721433354542,214.12304661329836,213.4720859681256,214.37951856153086,214.51691560819745,214.8757270486094,214.31819379189983,215.20049621444196,216.17970375111327,216.3986837551929,217.32476513180882,217.97916650027037,218.17030497733504,217.22649792488664,216.55579737015069,216.7673164778389,217.2245757742785,217.43450616393238,217.6304425476119,218.34247329365462,217.8827975639142,218.0862562363036,218.96625035023317,219.02802556054667,219.87365049496293,219.68193254666403,220.19548009196296,220.18791821878403,219.7432272331789,219.27451488981023,219.70394514175132,220.47618923522532,220.56421899842098,221.1970402514562,220.77434965129942,219.87206402653828,219.54985952936113,219.72492299089208,219.7538265134208,219.6030930383131,220.27239455468953,219.54139419924468,219.00327060883865,219.78754985984415,219.4864326058887,220.41729788901284,219.70785123156384,220.67620687792078,220.22220887243748,219.44642966473475,219.059843971394,219.52741753589362,219.7572230277583,219.5239434284158,219.78822433948517,219.86098564974964,219.20413203630596,218.49111020658165,218.4220589948818,218.650413390249,219.1143103451468,218.42772652721033,219.34308057744056,219.04273999435827,219.38720750901848,220.1191952805966,219.63257930148393,220.36483880179003,220.5381194734946,220.50954299233854,219.65060700662434,219.50908858980983,218.87906154850498,218.23859295248985,218.9441662095487,219.16236789012328,219.77154493145645,219.45038216607645,219.74363517807797,219.21335287112743,218.89667577762157,218.9170305384323,219.53247083956376,218.86684794537723,218.83499807259068,219.3400932624936,218.42561797378585,218.03553208336234,217.70651563769206,217.27073289174587,216.5860593779944,217.50093016633764,217.82186659332365,217.28238034108654,216.95520897535607,216.50465178163722,215.547674913425,215.11162412259728,215.67310364171863,215.7370868078433,216.46529564959928,217.46485946141183,216.51873054960743,216.54083569906652,215.73101028753445,216.05599975632504,216.17117666546255,215.39121238701046,215.6131555303,214.72720993682742,214.1144803664647,213.93978896783665,214.2365937065333,213.9513844838366,213.37036538589746,213.11139229591936,212.59154522279277,212.34103151177987,212.82418598467484,212.06149452691898,211.95760814193636,212.6769797820598,212.36897392990068,212.24019363429397,211.83014978840947,212.27172149484977,211.5730574359186,212.4359146449715,212.1590659841895,212.5296436995268,212.1478737774305,211.56335835298523,210.6824923818931,210.83294927794486,211.26801306614652,212.11946658603847,211.55970473354682,212.46624717162922,212.82706508878618,211.84253476839513,211.95783557603136,211.63966365205124,212.19541571568698,212.2253310168162,212.95905233500525,213.75864675547928,214.25508377328515,213.94977985927835,213.6099216057919,214.0439934777096,214.32569874823093,214.63476667087525,214.5269911121577,214.26017060875893,214.6801184839569,215.26920592412353,215.9797649118118,215.9722664230503,216.0552180353552,215.47145788930357,215.62351373489946,214.9372154874727,215.6280903420411,215.35590102802962,214.75096423504874,213.8654412617907,213.9486610488966,213.68165352148935,212.8605461246334,213.48067640326917,213.6799603002146,213.6090153711848,212.647874081973,212.8112599393353,211.8191346223466,212.54607719834894,212.43478234717622,211.9137605666183,212.62417204212397,212.42175442026928,212.28325059870258,212.8819381352514,212.1079059788026,211.97138389432803,212.30503500439227,212.98796264547855,213.24116321094334,213.73368127970025,214.05831091990694,213.84098877152428,213.03808413958177,213.60920011764392,214.21415625559166,214.1000191066414,213.73607715312392,214.6134934220463,214.8702166909352,215.72141382005066,216.50231594918296,216.33452104078606,216.09177933400497,215.7375662815757,215.08189789112657,215.46041557053104,214.95599931525066,215.56749158352613,215.907707399223,216.44685426354408,215.80223512044176,216.22018505167216,216.71586100198328,216.22009792365134,216.3553232732229,216.4005994144827,215.57529888069257,216.35214003361762,215.6336559066549,215.0910693979822,214.20407345099375,214.57797192130238,213.70033574244007,214.40092986868694,215.31078835204244,214.4827103917487,213.51507965289056,213.30895479721949,213.86891274992377,213.79401318868622,213.99652444105595,213.50729575939476,212.81105448352173,213.50477990647778,213.9096906678751,214.45467266906053,213.95009746588767,214.5882383431308,215.47226530360058,214.91404965240508,215.512596514076,216.23982519377023,216.62408817745745,216.63106957776472,216.83624447137117,217.81459989072755,218.0581272910349,218.31658366927877,217.7963390527293,217.620651637204,216.91149393143132,217.02988848043606,217.4139815303497,218.1477023693733,217.33118795976043,217.1664671213366,217.71013778308406,218.13283183891326,217.86485490109771,218.7344367345795,217.97322187153623,218.60716752242297,218.4561696560122,219.37052829470485,219.91916294349357,220.48100584745407,220.76267696591094,221.4313708404079,220.52790710842237,221.37577649159357,221.45887878956273,221.00937885325402,220.12355872709304,220.43815833469853,221.2651843931526,221.41631939914078,222.11350262956694,221.1232540947385,221.291489190422,221.4869303116575,221.42446393379942,222.389820470009,222.93198588863015,223.438034419436,223.49541306961328,224.4398018256761,224.69008318847045,224.81347557995468,224.60294713266194,224.48152263555676,224.25226730061695,225.1414218209684,225.56194502254948,225.21834931476042,224.3931415770203,225.17139958357438,226.1454003895633,225.87112243985757,226.42896357364953,227.00472547113895,226.05690166680142,226.169946026057,226.9839150751941,226.24991752766073,225.7006415501237,226.13818520866334,226.0531576499343,225.34037137962878,226.13640240952373,225.2089820727706,224.52628881810233,225.1399341961369,225.4994434211403,224.72177500277758,224.30873210309073,223.87202718527988,223.004948833026,223.44332531746477,222.79847575491294,222.2814140059054,221.6207857178524,221.71680388599634,220.78065118426457,221.73618577606976,222.67654166929424,223.46405985811725,223.60428016353399,224.36519623780623,225.32595767034218,225.48667371226475,225.99729197006673,226.27230281056836,226.67894601356238,227.00023147463799,226.75057213986292,226.52941586310044,226.14304493088275,225.25996956322342,224.47525488305837,223.91194308595732,223.21955981152132,223.22608471056446,222.85304132010788,222.72480821050704,222.81954718055204,222.77563836611807,223.08897635387257,223.31411815946922,222.73482839437202,222.57457945495844,222.7302591856569,222.34925391478464,223.1892673340626,224.12748581543565,223.36269200732931,222.56601407239214,222.3265402377583,222.29746187431738,221.9674152233638,221.1999495443888,221.82746337540448,222.64231929881498,221.7846879484132,220.83660332113504,221.06166251702234,220.96285236766562,220.20457331975922,219.5888328962028,220.26883920980617,220.22599443607032,219.65598619310185,218.7298279851675,218.30193035304546,217.38130918471143,217.0477914083749,217.30297248531133,217.94500707974657,217.96992479916662,217.63606912270188,217.25830404413864,216.64398885890841,217.42040639091283,218.00276766112074,217.8771383855492,217.491532120388,218.19436667487025,217.86769999749959,218.58174924971536,218.48589623346925,218.08066306030378,219.03704902203754,219.69944508746266,220.53069824865088,219.68550908286124,219.88826026720926,219.88239542208612,220.44159471429884,219.94702376658097,219.02312629343942,219.57896918756887,220.00178215513006,219.04762874078006,218.60306785441935,218.02792695024982,217.62829621788114,217.9893371486105,217.176228643395,216.72999969823286,217.21344869025052,217.57755481358618,217.01664818217978,216.60234878351912,216.70857423730195,216.42686065100133,215.69020481593907,215.86525786016136,216.72661280911416,217.67260176176205,218.21325002610683,219.09986911248416,219.3670939449221,219.4726654132828,218.685321373865,218.5780182699673,218.76146911270916,219.36676440015435,218.88271079631522,218.29733039205894,218.17783217318356,217.88729985710233,217.99799376446754,218.26382162282243,219.05295723164454,219.12309686746448,219.66250230604783,219.39941623760387,219.48109562322497,219.2867200137116,219.18262001080438,218.32947411108762,219.03303837263957,218.32856992678717,217.77456307178363,217.8839390911162,216.99102853238583,216.35649751871824,216.8399791889824,216.4285574411042,216.29107274813578,215.86552099930122,216.33362886402756,216.86245976947248,217.02343781339005,216.44345143903047,216.2059749388136,216.02460088394582,215.66419765120372,214.80487451143563,214.2047744775191,214.96353384433314,214.22234880924225,214.6417727312073,214.06775903701782,213.88087141048163,213.31301962351426,213.68201750982553,214.2833730140701,214.7073775618337,213.9454030408524,214.36164744384587,215.25645853718743,215.87766351550817,216.34531231457368,215.61545733967796,216.05494284816086,216.11950313253328,217.04429028416052,216.1756620989181,216.5478751314804,216.47852030489594,216.28940046252683,216.212187952362,215.88031066581607,215.48022451344877,215.67132766218856,215.92138144560158,215.24856995837763,215.82943446282297,216.2894889190793,216.35459029627964,216.5996809224598,216.26942150387913,216.83886666502804,216.32313741510734,216.47566923312843,215.85084492200986,216.29374427441508,216.28968203440309,217.12529478175566,216.7952023530379,215.88906931504607,215.5928357397206,215.9724905155599,215.18332537496462,215.32298698229715,215.5048407772556,215.6755841630511,214.83780690841377,215.6438796655275,214.80609193909913,215.21906307106838,214.24363039480522,214.15280587226152,214.06019977666438,213.22208577301353,212.95922460779548,213.70095694763586,212.91133466782048,213.14753011008725,213.49432138120756,213.16739119123667,212.99678863119334,212.12231957074255,212.76624989742413,213.2169929514639,213.61985435150564,213.5763441878371,213.5440293145366,214.17632150975987,213.39665949717164,212.56533069629222,212.89982652897015,213.65727526135743,213.8575811777264,213.93870318681002,213.24948378652334,213.11796422675252,212.36811996856704,212.9107796936296,213.34685656661168,213.84993399586529,213.63996418053284,214.1519423648715,213.20264718076214,213.42810794524848,213.2645880067721,212.44692480564117,213.2415504702367,213.21583599736914,213.3003139779903,213.51329040620476,214.17204506183043,214.93716641468927,214.91429217113182,214.8108877632767,214.76685362495482,214.3681603623554,213.99392912862822,213.4626693748869,212.59244558075443,213.53643693961203,213.55059159174562,212.6232751882635,212.43867344455793,211.5061603244394,211.70545738423243,211.16644901270047,210.17209789901972,210.59579302556813,210.79037651373073,211.00757736247033,211.97551203146577,211.6795506752096,211.11979235569015,210.38852867577225,210.58381463913247,211.53788607986644,211.42802381841466,211.2515607108362,210.3901916826144,210.12543460028246,209.68508098926395,209.65041904849932,210.6018606373109,209.89278052095324,209.54098466876894,210.36830708989874,209.63531869230792,209.05465365527198,209.92427278123796,210.60190929379314,210.39529689773917,209.45003710174933,208.76039542630315,209.57319762464613,210.31819348642603,210.6394773493521,210.97904655942693,210.4354837546125,211.39042245410383,211.43982051312923,211.8333533811383,211.09581459779292,211.1743996613659,211.5848921914585,212.39020634116605,212.09184106905013,211.58253212925047,212.31487775873393,211.51135827228427,212.4349055928178,211.69695324869826,212.06715782126412,212.88609614782035,213.06682978197932,213.6153024402447,214.0541587206535,214.41372099611908,213.97403524676338,214.89108662959188,214.56204797606915,215.39429967012256,215.02773040300235,215.3833224386908,214.55538902245462,214.8084559943527,215.35667420038953,215.6184963332489,216.60653304262087,217.00170927168801,216.80614569829777,217.50351609569043,216.84543772647157,216.46665941504762,216.72605812223628,215.9030194063671,216.66559381503612,216.56285066669807,217.15560414735228,218.13142150454223,218.76343428203836,218.3074470735155,217.66090698819607,216.71528964256868,216.25634652515873,216.4410084267147,216.91951585700735,217.60325661115348,218.12327792216092,218.9372225832194,219.4524053176865,219.1893563871272,218.94393025245517,218.9717313623987,218.45682659745216,218.7455103076063,217.91070622904226,218.37741052918136,219.06859126500785,219.32569067692384,219.5100600924343,218.5805779057555,219.5202162899077,218.87706920178607,218.398413406685,219.33965976396576,220.03107246337458,220.17538378573954,220.45715898741037,219.75469654379413,220.00647712126374,219.634886583779,220.35230324510485,220.60224078316242,220.26991481147707,221.03134658839554,221.30401796894148,220.73244380252436,220.70603236276656,221.25288026453927,220.7164696934633,221.39958941936493,222.05913623981178,222.61621314054355,222.74954327987507,222.59483707183972,222.83777494030073,222.91726302402094,223.4059229507111,222.55125642102212,222.26985256001353,223.03709231084213,222.17014853376895,221.72738888021559,220.91882551135495,221.00389790069312,220.1561272391118,220.04783680057153,220.32554251607507,220.44822591682896,220.99974772660062,221.9793924773112,221.15521199814975,221.69450296787545,221.87498496146873,221.49058537418023,221.2802666691132,222.00334896566346,221.91014762595296,221.75274361716583,221.83140645222738,221.3790603694506,221.85977647360414,222.49531566165388,222.08929016906768,223.01750381011516,222.88672947278246,222.56365739414468,222.57286142231897,223.42722067050636,223.98104310920462,223.2926872591488,222.48863911814988,222.34826906351373,222.77670789370313,222.54720146767795,223.47756560519338,222.65600731549785,223.60753366118297,223.57180168433115,224.4994427971542,225.42230841470882,225.37269907817245,224.7495490955189,224.47561055701226,223.79374099476263,222.99801805149764,223.71228506602347,223.95458955457434,223.13165222574025,223.61563335126266,223.21657407004386,222.29215991171077,221.65736882248893,221.5409354204312,221.12305037816986,221.95037447288632,221.0516384197399,221.39443528233096,222.3921112557873,222.46058700792491,222.31218809029087,221.9623960661702,221.05953606171533,221.52430722629651,221.72199814440683,222.1171525111422,221.38335471320897,220.52269838377833,221.49009563028812,220.68357673007995,221.15246344776824,221.3941492573358,221.34860857808962,220.9856096454896,221.1327325347811,221.8486487180926,222.0397502463311,221.43500882945955,221.75268639298156,222.37019217247143,221.60918737994507,221.98410685826093,221.39427755400538,222.31501894816756,221.35236525628716,221.10080706886947,220.35553557658568,219.78383203176782,220.01249187346548,220.36777386907488,221.26139455707744,221.95250838296488,221.42721732053906,222.21852846536785,222.9765214608051,222.33976021036506,222.90757742431015,222.3967790249735,222.5580851198174,221.99681470217183,222.42969687469304,222.2777550034225,222.86553349997848,222.73666326887906,222.12853205483407,222.61600399715826,221.92467336077243,222.27679296862334,222.90265735518187,221.9472642657347,221.24538026936352,221.41642660461366,222.02812008745968,221.20494261896238,220.78811484528705,221.29495145054534,220.72554068407044,221.25932757370174,221.18827156350017,220.3691530576907,219.50909599196166,218.55626655276865,217.87446248764172,217.4889243580401,217.42752925818786,218.19139954494312,218.16343786241487,218.26360653946176,218.16802835743874,217.77502557216212,217.88650644058362,218.67522334260866,217.73399232747033,218.39186237286776,218.2066642078571,217.86800200818107,217.93251125048846,217.06667381245643,218.0259674480185,217.39195109019056,217.62153624743223,217.024665273726,217.99707314232364,217.28273290302604,216.7370594572276,217.474787958432,216.65311045199633,215.8442015396431,216.37111285421997,216.70887057110667,217.0533595769666,217.9610781786032,217.72475123638287,217.18834937131032,216.41663575265557,217.03054379764944,216.81986053008586,216.4161728983745,216.03701741993427,216.80404597474262,217.7018084791489,217.1968102636747,217.07933045038953,216.6745876665227,216.53066559974104,217.26526745641604,216.42019748594612,216.50637351395562,216.7914039110765,216.6773103494197,216.3909449246712,216.92428100993857,216.77847707318142,216.28510154085234,216.89580684294924,216.68839679053053,215.71026052720845,216.47184659494087,217.373014902696,216.85505082225427,217.55057851364836,218.13503045914695,217.67620277637616,218.20093974890187,217.46508829295635,217.80854930263013,218.57542295008898,217.63338209828362,218.1735210926272,217.96046821726486,218.29749898053706,217.91439559636638,218.87582243373618,218.99647841695696,218.70253231329843,219.41506480937824,219.38376488629729,218.4644720866345,217.93022273061797,218.3699137158692,217.738070379477,218.5352059500292,218.1763043780811,218.0021414202638,218.36118532111868,219.05519080767408,219.15548875555396,219.0536543140188,219.38457495719194,220.05237130215392,219.79986463766545,219.414885034319,218.8182474160567,219.19861620711163,219.56078639253974,219.38552493788302,219.77137294225395,220.39486845955253,220.6996342134662,220.79476457182318,219.9818833237514,219.0523193832487,219.01050750399008,219.5126863513142,219.7867046399042,218.87499729404226,218.69735373789445,219.62723104236647,219.84986785613,220.31825163029134,219.40188614930958,219.28320874273777,219.95879232184961,220.08004055917263,219.92671322869137,220.76914287172258,221.04154256312177,221.55418919026852,222.3577089831233,221.80822152271867,222.47409852873534,222.60286931553856,222.77154149347916,222.5793825420551,221.63000031653792,222.45082566374913,223.23390977736562,224.13017901452258,224.72531993454322,224.70334817748517,223.82717180578038,222.87384506035596,222.08795228460804,221.7641650158912,221.3189074927941,221.40667389100417,220.478392298799,219.53812212171033,219.14556288905442,218.40425179619342,218.21994229359552,218.94506371114403,218.71552028600127,218.7862533754669,218.46098435483873,218.81038688356057,219.0733792623505,219.4412945867516,219.54852948198095,218.74178733769804,218.6709138788283,219.2862749537453,219.72209224663675,220.49170547304675,220.26687355851755,219.6411647964269,220.60624140687287,219.97515061451122,219.10530852666125,218.99984806356952,218.63566641323268,218.3998989420943,218.25620562769473,219.1625734665431,218.69452406698838,217.73151095956564,217.48396953567863,216.89693539822474,217.47060854453593,217.10687585920095,217.14092476852238,217.6967568444088,218.51505434466526,219.07201457582414,218.8512914730236,219.11392238317057,219.72176490770653,219.09214788116515,218.62893760576844,219.38431670563295,219.2214376134798,219.55955871520564,219.0146683845669,219.6875397739932,220.30809571687132,220.68708842201158,221.0589896440506,220.6411202312447,221.26918837660924,221.703153825365,220.98481712676585,221.41869527986273,221.79622033191845,222.74718384025618,223.15656409831718,222.444946764037,221.73148156004027,220.8431204194203,220.38478823937476,220.2516001961194,221.048865318764,220.22030492778867,220.98298946674913,221.30014995438978,221.57149325776845,221.37979283137247,220.99909746833146,221.27112242905423,220.74382635951042,221.14793997537345,221.9571818630211,221.8847896340303,221.46324303839356,220.6271776217036,219.75659953197464,220.61612950917333,219.6299146427773,219.40101657714695,219.3514581406489,220.28058798704296,220.82849928410724,220.46727058524266,221.4667892958969,220.76201579906046,219.96115134609863,219.20325853815302,219.945980287157,219.802306400612,219.22826135298237,219.27006223145872,218.29753107763827,217.31578204827383,217.3756511225365,217.76841801172122,217.4313983549364,218.12628626078367,218.19377942895517,217.57651581102982,218.3160109152086,217.95130394631997,218.9386506183073,219.27906129369512,220.1260803109035,220.32314483867958,221.27594894217327,221.22896393295377,222.00766694638878,222.37193099455908,222.4390268670395,222.96545195486397,222.33548760553822,222.4415656933561,222.06294446485117,221.24379152990878,221.12155727110803,220.25343105010688,220.63829720811918,219.80890935193747,219.28600483713672,219.87360372720286,219.10466021345928,219.14411465171725,219.1768668773584,218.5184762943536,217.88979465747252,217.78529647970572,218.66978425253183,218.3552934504114,218.18532084813341,217.30232375347987,216.5689440909773,217.18812079820782,217.1876612342894,217.50360836507753,218.01319971727207,218.29948765225708,218.62348727695644,217.95802661590278,217.53747100941837,218.38182768365368,219.30584480753168,219.90013588033617,220.10393365332857,219.20702241221443,218.8815710018389,219.71375046111643,220.1877487259917,220.00363005883992,219.86381548037753,219.47438521496952,219.66710501117632,219.78831255901605,218.9404647401534,219.69825489260256,219.36186831071973,220.19187446776778,220.8164493269287,219.90598257724196,219.76915514236316,220.45552023267373,221.11696587642655,221.51815097173676,220.65196915948763,221.30406092107296,222.26246215356514,223.0221256087534,223.62301808502525,223.19241163227707,223.30911779403687,222.7932637743652,222.71533379424363,223.08505379455164,223.28978211898357,222.76726234983653,222.93317106552422,222.348459366709,222.68466437561437,221.85813014628366,222.32969959406182,222.4162913276814,223.05400607315823,223.87018667114899,224.41141408775002,224.39562479034066,224.9593710345216,224.3174683013931,223.60870293574408,224.55832973588258,224.9252412947826,225.2155513195321,224.43330858834088,224.88686597859487,225.82464516768232,225.65123908407986,225.09046035585925,225.5291802189313,226.0400659427978,226.93787181796506,227.78040135465562,228.77515113539994,228.30858950596303,227.479857403785,227.07456437172368,227.59245238499716,227.19973101234064,227.91613673884422,227.0129370042123,227.93974684271961,227.54791459534317,228.06327715003863,228.36871396098286,228.88549338281155,229.76183618605137,229.28861982515082,228.72032013675198,227.77591800317168,227.072281986475,226.2448172783479,226.58443909464404,225.82680688239634,225.43194769416004,226.19837556313723,226.3772637839429,225.6374105848372,225.68548130104318,225.6660116580315,225.88340255059302,225.96021886356175,226.48110934905708,226.1151986597106,226.16289777867496,227.0511299725622,226.9403826170601,226.16146412910894,225.5202680453658,224.72167603531852,224.62706056563184,225.40826028212905,225.37944981222972,225.67925678472966,225.72758653433993,225.51470967475325,225.48701585177332,225.46323099173605,226.417880772613,226.3355731368065,226.48674587486312,226.2769188596867,225.85549911111593,226.6334148789756,225.77283215196803,226.2419834798202,225.72610750840977,225.62312129605561,224.6773007856682,225.53155288705602,225.65971412649378,226.35341394972056,225.87509481282905,225.9929803479463,225.81776794418693,225.13811078248546,225.4222459536977,225.54207745194435,224.98187713697553,225.3015145342797,226.19596568588167,225.2301006386988,226.20919781783596,225.26491692801937,225.4380774339661,226.09821553202346,225.88799205468968,226.77325881645083,227.24732597079128,226.73103060713038,225.86447389191017,226.2249211263843,226.76145836617798,227.08428249834105,228.02797615760937,227.80104075185955,228.71434935601428,227.91850922023878,227.15203719725832,226.42215227149427,227.40015827771276,227.40236225910485,227.11048596911132,226.6108449390158,226.54625514009967,227.24315335787833,226.5046246042475,227.37636439222842,227.0759102688171,227.7962313806638,228.69559695059434,229.32900168234482,228.89469121582806,228.69545236742124,228.06914163054898,229.01465150294825,229.416883317288,228.92150953272358,229.58613269170746,229.77579082455486,228.866647713352,229.49249282013625,230.03617562446743,229.4151744619012,229.17934355605394,229.9937500152737,230.6234918218106,231.15613184170797,231.2308155647479,230.307908131741,230.76699480600655,231.28168834839016,231.49864301551133,231.963711428456,232.46887855650857,231.73720007529482,231.2575729433447,231.75694618932903,231.6808323515579,232.36956358281896,232.0096032214351,231.33600394800305,230.8275048956275,231.36887722089887,231.1312858350575,230.1826240355149,229.90717861661687,230.76853260025382,231.19156889617443,231.47337791044265,232.0250149029307,231.2844838788733,231.30985114583746,230.83518208330497,231.41183932079002,231.79119617305696,232.5084999995306,233.31290115555748,233.22686721011996,233.29279323015362,233.97628931934014,233.40132670057938,233.1026830417104,232.41479453258216,233.27702737040818,232.83104277728125,232.87974561564624,232.5130775384605,231.9634659178555,231.1163680846803,231.08149225777015,231.19876707019284,230.92949516093358,230.90908839413896,230.77980596246198,231.44198014447466,231.6637454740703,232.636649787426,232.9474606490694,233.30255842395127,233.02279933076352,233.99902572622523,234.8027857998386,234.4108663406223,234.7018759106286,234.34781329333782,234.98979702265933,235.30004062177613,235.9050006782636,235.07776657724753,235.81792631931603,236.12481316830963,235.70127857895568,235.9122968004085,236.65219031786546,236.5788257517852,237.56714543700218,237.0193893793039,237.74795359140262,238.3334352155216,238.8730480275117,238.32240905426443,237.70628279587254,237.17140739876777,237.9161232644692,237.64960579015315,236.90226982254535,236.96029583364725,236.3475392041728,236.93123923707753,236.365093735978,235.75189016433433,236.1078474856913,235.53935868665576,235.5847078883089,236.39270419627428,237.17347728973255,236.3103562835604,235.54449808597565,235.82305924315006,236.42671116627753,236.35075748665258,237.07481193216518,237.824809783604,238.13852281868458,237.99523999961093,237.49785334570333,237.08287750883028,236.44561000633985,237.24823277443647,237.1731398976408,236.73439519340172,236.40281441807747,236.97180931083858,237.3628206886351,236.6636715726927,236.23169461265206,236.3173636146821,235.7134933671914,236.53187822410837,236.3725034063682,236.45304610813037,237.25644385349005,237.48878245381638,237.62521769898012,236.97138712881133,236.8731561456807,236.63231997704133,235.66352534713224,235.57568989694118,236.02224732143804,235.74375152261928,235.19991234969348,234.30052548553795,234.80826726276428,235.79998741438612,235.40109789650887,236.24555290909484,236.19071834208444,235.4474370549433,236.33677989663556,235.9554427554831,235.79253106936812,236.20949382986873,236.44278217386454,236.12205276591703,235.54541068011895,236.25250094383955,236.3818043647334,236.74571996787563,237.26759516680613,236.80847179330885,236.00665890565142,235.03515283530578,235.79268641397357,236.21473539900035,235.91009196825325,235.7249813680537,236.42060436401516,237.1495768376626,237.882412284147,238.34050890477374,239.2920206314884,238.3329531964846,237.88942891312763,238.12454960029572,238.22511167265475,238.52483986038715,238.52831715531647,238.99230581289157,238.7656085062772,239.1802526237443,239.2227085325867,238.70034967549145,239.07855128357187,239.47218498867005,238.59392401576042,237.87930403323844,236.91393001331016,237.6969282850623,236.7466119597666,236.72545764688402,236.81247366173193,237.33377247815952,237.7493572686799,236.90175804728642,237.46589033072814,237.0774997472763,237.96424177708104,238.02169249532744,238.9530075644143,238.1305060540326,238.04865896236151,237.97043468849733,237.53710173955187,236.89799414016306,236.45913894707337,236.5884689828381,237.49201307818294,236.68188317352906,237.18145895609632,236.34926157118753,236.89750160789117,237.3088689316064,236.93997405236587,236.9355133762583,237.09250825177878,238.0071306815371,238.67994415247813,239.62223429884762,238.9287575436756,238.67819587048143,238.63221814250574,238.5798836038448,237.9306848864071,237.1623058943078,237.50158691499382,238.49690224369988,238.08434331510216,238.24977778922766,238.78928825631738,238.30508270533755,238.66049863304943,237.96442396380007,237.89771579019725,238.3460962306708,237.78414697526023,236.9352911026217,237.481146031525,236.55244962358847,237.24601230304688,237.11876562563702,236.51096679782495,235.53705660486594,235.9921817262657,236.812281367369,237.5280484603718,236.58850578079,235.59793192334473,235.313600523863,235.0985935390927,235.33864555694163,234.5649211658165,234.71698876610026,235.10121645359322,235.22028075205162,234.46519451169297,235.24976492021233,235.13353505404666,235.26084408955649,234.90197725314647,235.8624735614285,235.6574732530862,235.03105691680685,234.5238010645844,233.55313563346863,233.69144767848775,232.86844727071002,232.76469613611698,233.11991445627064,232.55938573367894,232.073425878305,231.28550372086465,232.26018508290872,232.9615537719801,233.71692029945552,233.94424603693187,234.76053713914007,235.20554123539478,234.47196918632835,235.32810960430652,234.79838223289698,234.17896079272032,234.54922643257305,234.36208417313173,234.92051684111357,234.07870648475364,234.94167252024636,235.58606210770085,234.99361935537308,234.86050897696987,233.98973117163405,233.00583495153114,233.64028822956607,232.92894139513373,233.8032992775552,234.30847541522235,233.93093433277681,233.80843004910275,234.00819565542042,234.13088997267187,234.76915770210326,234.65979580394924,233.66486662486568,232.7811537636444,233.56319766305387,232.84639350743964,233.7953670732677,233.63843333441764,233.5556331081316,233.3104877131991,232.3846601471305,233.00354175455868,232.51558475615457,232.58876004535705,231.65974356932566,232.5589155908674,232.16967997560278,232.0156466276385,231.4226071294397,232.2254919060506,232.55959809711203,232.5957426414825,232.12877634214237,232.07754454761744,231.40580421546474,231.4344561966136,230.49374199705198,231.38585332594812,231.77261386951432,232.30672863358632,231.44104475388303,230.49202429223806,230.49560791626573,231.01503979135305,231.87960643833503,231.73085173871368,231.46331736491993,231.19653589464724,230.9638799247332,231.3672691877,231.68647664692253,230.96091468026862,230.1661582426168,229.86510038003325,230.84105173498392,231.68986427877098,231.74765342939645,232.68755012750626,232.111512881238,232.83919683704153,232.84121836768463,233.8057889919728,234.5819068881683,234.72882520407438,234.6237039482221,234.08493082178757,234.37640455877408,235.0150444819592,235.48662255471572,236.20541219925508,236.9683432765305,237.0199160426855,237.25923917535692,236.2869051452726,235.3903132402338,235.02352511696517,235.0350367394276,234.51401418214664,234.29795053834096,234.74444647226483,233.77919748052955,234.0500126951374,233.08576869638637,232.89701984729618,232.40031806007028,232.66529237898067,233.5070397183299,232.94047730695456,232.51442419085652,231.96760487090796,231.21204419992864,230.6714844852686,231.45295192627236,231.16792445862666,231.35197866801172,230.75284124584869,230.09204982221127,229.7333465409465,230.48527100123465,229.60487802699208,229.95519768679515,229.63681331370026,229.20812648022547,228.28372259018943,229.2784366584383,228.50511873653159,228.64494829671457,229.26582835102454,228.67597251571715,228.1205200930126,228.24687992827967,228.82215954177082,229.7587837134488,229.9890918279998,230.4009301122278,230.11828895425424,229.58913503075019,228.78512124484405,228.18388709053397,228.72739343577996,228.2299292134121,227.91666668234393,228.16679649846628,228.00296411802992,227.31651858380064,227.07607812434435,227.06922365911305,227.82194371847436,226.998578554485,226.6156072812155,227.5856446470134,228.38063510647044,228.73989741690457,228.22463394515216,227.9222221467644,227.99745212495327,228.27351947966963,229.0153368501924,228.87566287862137,229.0217579593882,229.19667391572148,229.2615293371491,230.0991616412066,230.6472242739983,230.5983823616989,230.29808699060231,230.09830762445927,229.93897999217734,229.05221603717655,229.0608731843531,228.7012421223335,228.64641970209777,228.50100743724033,228.4374614576809,228.79027829458937,227.97820775210857,228.74913227371871,227.89526211982593,228.01499452721328,228.02493954682723,228.78623356064782,229.16324026463553,229.99210733408108,229.38005782477558,228.50316111836582,229.40702171670273,230.18188904738054,230.57700998103246,229.8731387834996,229.88979079946876,230.2711695060134,229.82047155685723,230.73276082752272,231.06352307694033,230.1848265612498,230.46647324832156,230.20404906757176,230.44723342731595,231.07829407881945,230.80367623036727,231.15513056563213,231.7168613136746,230.84820705093443,231.4879342885688,230.86421986855567,231.1821858473122,230.5583923542872,230.62417329428717,231.5008474290371,232.47211012337357,232.15481336135417,232.42425564257428,232.5377999949269,232.3763224268332,233.08355307998136,232.15816041408107,232.8346763253212,233.64168374286965,234.0270175221376,234.51812785910442,235.22973782708868,235.30200337758288,235.73772694496438,235.0272340667434,235.9288075407967,235.42670193128288,236.13497391855344,235.5855741626583,236.4117830102332,237.28428494697437,237.86925734160468,237.36036978149787,236.50436141574755,237.08507782313973,237.23533015418798,236.57315357867628,236.5758779984899,236.05571555206552,236.5553513513878,235.75010890420526,236.49572288943455,237.4681408694014,237.8450707118027,237.26481512421742,236.75870718061924,236.42513540759683,236.37865793518722,236.77977726515383,237.16528216470033,236.92470367159694,236.7656547287479,237.34055197658017,237.66506591904908,238.40803422871977,239.26511369412765,238.7078220588155,238.97200519265607,239.26279656216502,239.3029242651537,239.16865038499236,239.81659664632753,239.81190780131146,239.61979083530605,239.4600929529406,240.41612168680876,239.4688464840874,238.70247421925887,237.90447668125853,238.01712833251804,237.52214400749654,236.7926440332085,237.31159689556807,236.6149477143772,237.60842861048877,237.4140438819304,237.35191361699253,238.050150569994,237.366311901249,237.8097006632015,237.3611920871772,237.62767205992714,236.92502592038363,236.29682099679485,237.1949179037474,236.74205291178077,237.30018095765263,236.41755456943065,237.26842555310577,236.28560637775809,236.64047119999304,235.8972454275936,236.64538206951693,236.26821806794032,235.83406040398404,235.79749863874167,236.71261986577883,236.4813460931182,236.19524973118678,236.01155631057918,236.75661402288824,237.564280082006,238.3730287188664,237.7727904659696,238.43086099019274,239.2006088537164,239.82484065834433,239.4631851282902,238.96134567866102,239.19659597240388,239.26966262608767,238.4724279968068,238.15182157373056,238.0328714880161,237.55416174558923,236.87006195122376,237.6767227728851,238.2055618511513,238.49401216441765,239.3105648867786,239.71297173807397,238.87475704681128,238.4625924048014,239.38051285920665,240.03713994519785,241.01639108592644,240.99890101887286,240.21542903687805,240.30189786525443,241.03471121145412,241.86972881713882,241.67161257006228,240.79896152904257,239.83570212172344,239.1234783953987,240.09090224374086,239.39115531323478,238.3969644815661,237.81391158048064,237.39473518542945,236.9602288082242,236.00609182287008,236.39291934808716,235.79680510424078,235.20173478592187,234.66071796882898,233.84137716004625,234.67487664474174,234.8399462401867,234.7424348113127,234.0018326775171,233.47145032370463,234.10023648524657,233.86655338993296,234.01911685289815,234.96809138730168,235.9483494553715,236.8435597945936,236.14259006036445,235.65988228004426,234.75723524112254,234.19063431443647,234.99456712510437,235.9380746372044,236.04687710292637,235.50698810163885,234.60415177419782,234.66503061680123,233.6720161512494,233.24687667470425,233.95755406515673,234.6971472403966,234.4980732658878,235.21521003497764,234.63745110621676,234.4026546846144,233.47004932770506,234.30192486103624,234.72150298347697,235.00963983079419,234.5029279999435,234.75024901377037,234.65026024961844,234.09083806863055,233.57261242577806,232.96523443143815,233.6370207411237,233.2810229472816,232.9921448403038,233.20204885024577,232.57724365079775,231.92172162374482,232.41666209790856,232.82473356556147,232.46273976610973,231.6038115057163,231.84451986057684,231.223105289042,231.65127551089972,230.75101367384195,231.0055580502376,230.59660295024514,230.38410033332184,231.2484251842834,231.9600559459068,232.70931772561744,232.16357297822833,233.1371334567666,233.04079730436206,233.3964469754137,232.97240801574662,233.74867777712643,233.00473131751642,233.83662909734994,234.68110473407432,235.59058864368126,234.68405554210767,233.88749150699005,233.5082487189211,233.850637473166,232.87568808998913,232.1411387855187,232.6931319348514,232.8870432707481,232.69977132417262,231.9206873541698,232.36554368119687,232.01856496743858,231.44593319529667,232.09821415040642,231.98984900582582,231.1370313563384,231.56072870874777,232.08159615984187,231.11750361137092,231.6750290952623,232.40027210954577,232.82549263117835,233.1091378959827,232.28800866939127,231.57283967081457,231.44390807906166,230.88531367015094,231.03823915170506,230.72030164767057,230.6910602003336,231.6096878601238,231.7790747624822,231.90923884836957,232.7611177181825,231.83041738253087,230.91532464744523,231.5830644601956,231.36355506069958,231.95414343615994,232.58629605034366,233.23703772295266,233.72184588760138,234.61198715353385,234.72147308802232,235.3263213238679,236.02144249668345,236.48378835478798,235.92470783786848,235.27230423642322,236.22825717320666,235.90392617881298,236.8039097157307,237.2210919340141,237.70003620628268,238.29695669189095,238.41046028630808,238.50913504790515,237.61079422943294,237.4834211030975,238.1408537426032,238.55265366425738,239.023224436678,239.90166817093268,240.39385148044676,239.93341017886996,240.2501424746588,240.76196147780865,240.34494120208547,239.83303802320734,239.31979243736714,239.91539332829416,240.2397506260313,239.9405062822625,240.68515747832134,240.95310150226578,241.36939819250256,240.47680239146575,240.3263758183457,241.05048773204908,240.20151827437803,241.14957574149594,240.68817222351208,239.89146691421047,239.56267529865727,238.75076246634126,238.07177441380918,237.76293031824753,238.43609592877328,237.8322739447467,238.82929644966498,237.8886398836039,238.32409133855253,238.29020162345842,237.8934578653425,238.775129806716,239.14446488255635,239.711291144602,238.7663744050078,238.91738583054394,239.6543543743901,239.4788167993538,240.33477701665834,239.79400166636333,240.19050960801542,240.098690723069,239.6666786945425,239.660528420005,238.89425049955025,239.10068142367527,239.10491209011525,239.13030544109643,238.70339518645778,239.31139255920425,239.96296538971364,240.49627104401588,240.98306396976113,240.55783025640994,239.70392402959988,238.81766385631636,237.886350043118,236.99308429425582,236.4571781293489,235.89189010718837,235.35179168963805,236.22370983613655,236.2265097941272,237.06477216165513,236.28862674487755,235.71486811619252,235.67789696436375,234.70035273302346,235.156639106106,235.22765344707295,235.02893856540322,235.48126484127715,236.4078383515589,237.21248732227832,237.47430306393653,237.46703161625192,237.41674565756693,237.61838547466323,238.08123350748792,238.44220030400902,238.5432378258556,238.38541388791054,238.54456424945965,239.47286947676912,240.06704636383802,239.83064146572724,240.3370088264346,239.5041119288653,239.76307193096727,239.66208435967565,240.3192488779314,240.51024133479223,240.95645839488134,240.85663691395894,240.1329409070313,239.9209103602916,239.1877090842463,239.09751145681366,238.74291259935126,238.36115185683593,238.4915231578052,238.9510605749674,238.1174246785231,237.79289995366707,236.9532647128217,236.27003680821508,237.20070954831317,236.21376880491152,235.291696280241,235.6230946504511,234.9790998948738,234.23778573656455,234.1198816690594,234.16888546478003,233.2769526373595,234.11323728691787,233.15013823937625,233.55568919191137,233.50691016297787,234.366182169877,234.89256093790755,234.67551522282884,234.00582779664546,233.35479355137795,233.0031501161866,232.2967265760526,231.34378626104444,231.91186144435778,231.59749252768233,231.11812509410083,230.80452100280672,229.94474933529273,230.81465867627412,231.12289252271876,231.95632913382724,232.48247123509645,232.20386011525989,231.53557571396232,230.7361898450181,229.93661343725398,229.8216820480302,229.21526920609176,229.0484370761551,229.36341243842617,229.6093520335853,229.02605811413378,229.81266882503405,230.058133947663,229.23707689763978,229.58837367082015,229.38936373405159,229.33743451535702,229.3869221424684,228.5147828264162,228.514584349934,228.66950115421787,229.08654492534697,228.69343851367012,227.99397147120908,227.6550613627769,228.5500778676942,229.34057573881,228.6525256843306,229.50773063022643,229.98349912744015,230.6050267824903,231.01467961305752,231.3076795549132,230.9510705745779,230.87465536920354,230.40559963090345,231.2132614487782,230.35995535878465,229.83218458667397,230.52031005593017,229.54304812056944,228.6043285652995,229.07502946816385,228.92875604471192,229.16607176559046,228.25415028166026,228.3753961934708,229.24164091423154,228.9522025855258,228.82275715097785,228.74818279920146,228.1982304835692,227.621162539348,228.29647279111668,227.86120280111209,228.44532801769674,229.31234549637884,229.1217877632007,228.27630321262404,228.32608843781054,228.67660497594625,228.3305152831599,227.33683948451653,226.4796242211014,226.98271360620856,226.68810511380434,226.36193649517372,226.92320145480335,227.22789274714887,226.4405108327046,225.92147794179618,225.89227095805109,226.72316390648484,226.9659044346772,226.22922320151702,226.63639854313806,226.79373013135046,227.5545620713383,227.8853783882223,228.03919938160107,228.15066623641178,228.69392313528806,228.30794533714652,228.74404886784032,229.13197759073228,229.7804126148112,230.77056707302108,231.35315108811483,230.82628211332485,231.031839821022,230.92115359660238,231.07509316783398,231.54321604873985,230.90653684409335,230.2760210703127,230.2337451307103,229.30463029444218,229.0424317503348,229.55756810028106,229.13779864273965,228.2181567880325,227.88360227178782,228.39839664008468,228.16457460587844,227.7347789714113,227.41650992445648,227.4788858485408,226.82256199000403,227.29579767910764,228.16384598100558,228.2409082930535,228.82875496614724,228.30318526085466,228.76808034675196,229.16426730714738,228.44671922083944,228.63828658638522,228.0785249187611,227.5862267948687,227.780480095651,226.91650014556944,226.7616454246454,227.71140767354518,226.94765637815,226.87423581676558,226.54175314400345,227.053100916557,226.7797786425799,227.05166843067855,226.34060854045674,226.9303486724384,226.84788709087297,226.68459064187482,226.4560265778564,227.19641277752817,227.6893642200157,227.7643520347774,226.99991855863482,226.15184646006674,226.00536424852908,225.20524310600013,224.9867007145658,225.8075715159066,225.59777445159853,225.4610956790857,225.3578524128534,225.9351447322406,225.96428447030485,225.01033828500658,224.92688936414197,224.9378593340516,224.98083401238546,225.17750982334837,224.7123850970529,224.28090003784746,223.98481412325054,223.87354805646464,224.42822640109807,224.96085731266066,224.36937354272231,223.96057145297527,224.30236084247008,224.7709643887356,224.5045423307456,224.60438810708,225.48975634016097,225.64319863449782,225.0592065709643,224.75746503751725,224.84451036341488,224.64415166061372,225.28631942206994,226.22030467819422,226.91717776004225,225.95055740745738,225.07203989615664,225.8974645365961,226.5103613412939,225.915741159115,225.84103451343253,225.64966043038294,224.93406520178542,225.19184865197167,225.40420347824693,225.42123070219532,225.8034178665839,225.5069741453044,224.69209042657167,224.73587002744898,224.41492875106633,224.3655353244394,224.22537490492687,223.60308407852426,223.4306466570124,223.54997733281925,223.8223029100336,223.0397011502646,223.21653609722853,223.70430483017117,223.63633142597973,223.25630083167925,222.4680277663283,222.18189518153667,222.72290485631675,222.5300506944768,221.7585188257508,222.63197943056002,222.09717131592333,221.76432929420844,221.16321160458028,221.3777775238268,220.86238599242643,221.131208316423,221.2646525669843,221.07149843359366,221.8988760742359,221.07585778227076,220.6864926959388,221.10728915408254,220.9423552453518,221.00129674375057,221.85252033686265,222.59539657691494,223.0498309675604,223.8368837744929,223.0680012763478,222.09331153705716,221.3206017096527,222.25118573661894,222.92489430867136,221.92716268310323,222.32223366526887,223.07597934501246,223.83722280384973,223.9672013153322,224.24467632500455,224.57767919218168,223.73279376374558,224.13836742565036,224.20165963470936,223.8327210713178,223.14096147939563,222.17382972314954,222.26658450020477,221.90122710401192,222.16522381734103,222.39566873991862,221.96375478757545,221.6770632462576,220.9920845720917,220.39572062250227,219.41737743653357,218.71126422006637,218.64341483730823,217.8037020866759,217.52763636270538,218.3151286719367,217.31807313580066,216.52958231931552,216.4245047196746,217.27719291532412,216.8426174405031,216.98873785044998,216.84803562238812,216.04817838780582,216.36158722126856,215.63731001410633,215.07831246545538,215.2413279977627,215.22603018861264,214.8483517705463,215.52216616086662,216.23621809855103,216.77480907458812,216.21931993821636,216.80095190228894,216.70759225124493,216.68510346207768,216.9864421733655,217.90644500171766,217.7428509760648,218.12493131915107,218.86042120493948,218.32740247435868,217.50987525377423,217.5035828538239,217.52017582347617,217.13543491298333,216.85052191233262,217.42530638119206,216.97200502827764,216.9995444463566,217.6204646108672,217.4813792128116,216.78094500070438,217.6879556113854,217.65300324186683,218.39952235668898,218.98481782712042,218.65951461624354,218.23231803346425,218.18837868515402,217.69391037523746,217.46723002614453,217.86796200927347,216.91152000427246,217.71139445807785,218.35568259935826,218.56508445553482,218.47303449222818,218.1516427444294,217.55141930328682,217.8606485472992,218.03896312089637,217.98098719445989,217.46301789628342,218.26461542304605,218.6552791413851,219.10257677780464,219.23118978831917,219.5913464082405,220.49465389549732,219.8707757052034,220.8075675633736,220.42626258451492,221.42336287535727,222.0144753609784,222.94598630303517,222.60003860620782,222.36631529405713,221.75877635367215,222.28706913581118,221.65744714578614,220.74707821616903,219.9357352615334,219.77056106552482,220.01553523074836,219.89031593780965,219.59478037478402,218.8858835301362,219.45254615554586,219.53998651215807,219.87691786140203,219.28944756044075,219.88660813961178,219.54360645497218,219.92572994623333,220.1460094465874,220.1447206865996,219.70560327265412,220.69627214921638,221.55362968612462,220.89527511782944,220.11855353415012,219.76921009691432,219.64330778922886,219.65366077562794,220.33423881279305,221.19422052428126,221.37344785546884,221.92410581931472,222.34249754948542,223.07617768552154,223.01350526791066,222.7540418370627,223.64146942039952,224.2905329815112,223.3843305958435,222.51678900280967,223.05675879539922,223.7264040946029,224.4942343281582,223.73152623185888,223.00996049167588,223.0393645078875,223.5737650464289,223.14838269166648,223.44762316532433,223.72301808558404,224.4055092181079,225.10244241636246,225.1786312670447,224.57046876475215,224.7051014858298,225.28440681891516,226.07241376675665,226.63970544049516,227.31351380283013,226.33222857350484,227.22309165541083,226.50231383461505,226.45457437215373,226.1000928855501,225.44598622061312,225.60261038225144,226.16600342513993,226.76924209762365,226.55797042604536,225.6741797006689,226.47704812930897,226.94709254661575,227.67341109132394,228.02484354330227,227.0768102328293,227.48652595793828,227.12104712426662,226.71595410909504,226.47336953738704,225.50667822174728,226.4635421615094,226.53603234374896,226.21588399494067,226.67956069065258,226.14484527986497,227.11549632111564,226.38291047606617,227.06310308305547,226.4139988310635,225.74915227573365,225.35221999604255,224.5850354093127,225.04569636005908,224.08099522953853,223.97069822670892,224.24491433706135,224.254341120366,224.22468969225883,223.45383864082396,224.0687913862057,223.94975940603763,224.9096824908629,225.50001166434959,225.5990108139813,225.8714270396158,225.10752490349114,226.01310166483745,225.8494818052277,225.17716415924951,225.68631761986762,225.39912823494524,225.81963847577572,225.43220865773037,226.06233681319281,225.9542183750309,224.96858295518905,224.45509903412312,224.1494729341939,225.053295773454,224.374276782386,225.18182589206845,226.0507660107687,226.03663641726598,225.27585482038558,224.4704286684282,223.74175863154233,224.59100097091869,224.41644584899768,225.27553231082857,224.63841974828392,224.95715865446255,224.47196107450873,224.5403567054309,224.78879416827112,224.14759563747793,224.63992406614125,224.41407857183367,223.57823133142665,223.2493154304102,223.0960147678852,222.56997262127697,222.019483554177,222.7723212176934,221.88325763121247,222.22290964517742,222.64536535693333,221.78499420545995,221.60445511620492,220.722765638493,219.9638417721726,220.81943457154557,219.9373667719774,220.58859734982252,220.50681788660586,221.46640369994566,220.8469020910561,221.49996341811493,221.73710236605257,222.38272512704134,222.36933814315125,221.64309901650995,222.09343415359035,223.05573922209442,222.29479731898755,222.56202960433438,223.4393395143561,222.86299593746662,222.118765426334,221.94977955287322,221.50039689522237,222.09991225088015,221.80475075077266,220.83956601144746,220.4264190592803,220.52546137431636,220.59220644878224,221.50956696039066,222.09201484080404,222.4643957321532,223.23003787826747,222.3459199294448,221.43088963162154,220.53041797829792,221.4595570191741,221.48985438188538,222.4274045820348,222.0011051162146,222.30533555569127,223.03664240334183,223.1070253639482,223.39752529840916,223.25817310996354,222.32152784103528,222.73168850084767,222.21247089421377,222.20278439251706,221.20600061304867,222.0699010407552,221.82007703045383,222.03667519427836,221.36419279454276,222.30959432106465,222.11235137144104,222.29069904144853,221.45998484361917,221.12709954520687,220.97047988325357,220.61548374034464,220.72748980903998,219.91088970424607,219.6405238765292,219.14864138467237,218.6279919706285,217.72046550968662,218.1279703672044,218.3457194971852,217.41919806180522,217.94505132967606,217.77088177856058,217.06255479855463,217.373878096696,217.51419183565304,218.46256034029648,218.98621892556548,218.82073015486822,219.74092412786558,219.74651886103675,219.50690492475405,219.15895503386855,218.18711928278208,218.99255635868758,218.40236607473344,218.28726994153112,218.06770958425477,217.28600839618593,216.4866124172695,216.36172119621187,216.41878734668717,216.65585885988548,217.41547661274672,218.29251755448058,218.28988983668387,217.98173125926405,217.4378063720651,216.74984136456624,215.85489813471213,215.92583691095933,216.19214213779196,216.71314180782065,217.07108077546582,216.21362421708182,216.05922228936106,216.78409346053377,216.89308633934706,217.6330035654828,217.13136591902003,216.36959169292822,215.49073390383273,215.0361997508444,215.13075018068776,215.8128352961503,215.38743597874418,215.78333435440436,216.66730644600466,215.79126042174175,214.84443682292476,215.3239506254904,215.24656341038644,215.73411492211744,216.21156981913373,215.65867428807542,214.79553661122918,213.8097432712093,212.95169819891453,212.838451072108,212.10048075113446,211.30956649966538,211.7379868477583,212.7131155547686,212.707055229228,212.38939522160217,212.57219456182793,212.0799613171257,212.24270020239055,212.11404937552288,211.87547489302233,211.83658642228693,211.25807690434158,211.96355331270024,212.09653823263943,212.46929937554523,211.62619351176545,211.28449663845822,210.8243246972561,210.90590660041198,210.64229626907036,210.95161670213565,211.94046712154523,212.5403511505574,213.05463599879295,213.6092033488676,213.34529168857262,213.33948167366907,213.97283937828615,213.10480460477993,213.02345535112545,212.25638987030834,212.99280712474138,212.43052401021123,211.44934980291873,211.3181775654666,211.9879598468542,212.2459025233984,212.12156162643805,212.02039931621403,211.105628230609,211.4902061764151,212.48987538507208,211.93058016570285,212.78104413626716,213.45173942809924,213.37340498436242,212.8777522854507,213.2994712451473,213.75155353033915,214.71363085368648,215.49046945292503,215.26350912218913,214.31133144255728,215.00162118161097,214.58513955539092,213.78800582885742,213.0258117672056,212.8479174496606,213.30698830867186,213.43653572537005,212.9287502048537,212.9956406573765,212.67674259794876,212.45509798638523,211.60687561240047,212.47770489146933,211.80888369400054,211.87185202445835,211.14254308724776,211.23075268790126,211.75486623682082,212.13470547413453,212.84933174122125,213.54048656718805,213.71924796001986,213.41123446077108,213.7534339032136,213.50494127441198,212.81327750720084,211.9318966800347,211.8277683807537,211.59808213822544,210.66423376789317,211.55767594464123,211.83380800345913,211.90214518783614,211.4671323588118,211.5024270042777,211.4170040776953,211.62114932993427,210.7953212633729,210.91995461750776,209.93003312917426,209.95813104556873,210.73277257056907,211.03097643330693,210.18252068245783,211.10615509189665,211.33082123938948,210.56617480097339,209.82509976625443,210.54330371506512,210.22539857588708,210.55176310893148,211.17491066548973,210.31165375607088,211.08645385643467,210.44857350504026,210.0457283752039,210.29510796861723,210.95887584146112,210.1201020278968,210.0906854774803,210.79860764648765,209.98233790509403,210.57217965368181,210.61166195757687,210.43469706829637,211.15057648392394,210.23276884993538,210.91526259388775,210.90138995833695,210.59606101876125,210.72447391226888,210.6652311575599,210.0154565712437,209.56889516767114,210.47354832990095,209.91730757057667,210.1661773333326,210.4147575306706,210.46534983906895,210.46901304461062,209.63526734849438,209.9999412195757,210.51699704490602,211.0825560069643,212.00557041633874,212.2479286394082,212.85717749083415,212.49442370422184,211.9204190163873,211.6806237893179,212.14475984312594,212.97538548149168,213.49352986412123,213.72000943263993,213.39944541547447,213.83180216234177,214.78743347153068,215.22620944678783,215.66930801887065,216.47920364979655,216.76840471336618,216.2381664016284,216.62380588473752,215.8163043577224,214.83012817194685,215.46301837312058,214.72428971575573,215.02227266784757,214.7852863529697,214.20670615928248,213.28918783785775,212.3065978498198,212.13821106636897,211.86283390317112,211.76274300878868,211.92438611993566,212.35857579531148,212.66618202487007,212.10974277509376,212.26023699901998,212.80592723330483,213.60913519235328,214.04821335151792,215.02568155759946,215.0116069209762,215.61275279521942,215.12818800797686,215.85865916777402,216.66379602719098,216.16565939085558,215.197185525205,214.39538467302918,214.02184540824965,213.30303517449647,212.7573124258779,212.21391490008682,211.88354961015284,211.5840139607899,211.90214394032955,211.6680709044449,211.34850721713156,210.84285285742953,210.93285714508966,211.76652429811656,211.48781168693677,211.2831676886417,210.58114231890067,210.7741511859931,211.57125555863604,210.85295179206878,210.68878755811602,210.808537164703,210.18976820399985,209.36556096700951,210.08683392964303,210.33549351105466,210.72208363423124,210.27668914245442,210.4892826252617,210.8138205613941,210.20922423619777,209.6905852924101,210.2174343522638,210.66156332939863,211.1422961698845,211.78750966489315,211.33734443364665,211.80242965649813,211.65426846314222,211.42997538344935,211.88419493613765,212.76804389199242,212.99465436162427,213.6199945481494,214.10530361533165,214.50365459779277,214.36772033991292,214.95620920695364,214.99289663182572,215.39198922272772,215.55229686573148,216.49097735155374,215.85872197989374,216.35848956461996,215.46240112185478,214.54176689172164,215.21023195656016,216.03153575584292,216.31627086596563,217.13570563029498,218.10101091396064,218.68293003737926,218.78049960080534,218.96765559446067,219.08707486465573,218.55103767523542,219.11353092547506,218.35135547444224,218.44363995222375,217.51530595961958,217.7097329958342,218.3758566477336,218.37911453051493,218.30361523944885,217.30364300636575,216.98457075981423,217.28570688795298,217.74363070214167,216.76542772399262,216.56580316275358,216.0228624655865,216.51405896805227,216.87321664951742,216.52673284476623,216.73449390335009,217.60370440408587,217.82068699365482,216.823699016124,216.191582178697,215.48010383872315,215.77719598868862,216.51277854898944,215.72538319136947,216.23874924937263,216.16425736807287,215.24682027380913,215.18743680184707,214.33969663921744,213.47378956899047,213.2521735392511,212.90290764020756,213.0890926127322,212.7929775104858,211.89870967296883,210.95723486552015,210.59129389422014,210.66906220139936,210.93994044465944,211.32122287200764,212.17499219765887,212.2120392099023,211.73354027047753,211.37345505366102,210.92731195734814,211.59505656501278,212.02116159908473,212.9453809671104,212.88979160552844,213.4242909005843,213.79978295834735,214.44742358196527,213.57705097319558,213.24335501529276,212.95666885282844,212.44802918378264,211.55480577237904,211.47797272913158,210.90186849515885,211.757393038366,211.2656498956494,211.34191055828705,212.20403497479856,212.33498287154362,211.73695559194311,212.47426720894873,212.93693976802751,213.5525544732809,214.0914639388211,214.92829732596874,215.7098099826835,216.69118184177205,216.40315430192277,215.87300138082355,216.66527351783589,216.97646502684802,216.69384456658736,216.81436369009316,216.44982664473355,216.95533819450065,216.49645833251998,216.39383682329208,217.2175956312567,218.0635599354282,219.01715655718,218.8746809209697,219.49913821462542,219.05439757974818,219.3948392085731,218.85343321226537,219.71495299972594,218.9686982203275,219.63147437060252,218.9160942453891,218.72519469214603,219.52208607038483,219.45519470237195,219.16945467097685,219.49324720492586,218.975710532628,219.45830737706274,219.9150090701878,220.43385090865195,220.25193309271708,220.45924222748727,220.77623235620558,220.80305705871433,220.15218277089298,219.64050207752734,218.77806187048554,219.3124932362698,220.19284822791815,219.5056942156516,220.35640377551317,220.78113945107907,220.5790930907242,220.32634615153074,220.18195996806026,220.2189963948913,220.0371091044508,220.73705012118444,220.55239183688536,221.42477499926463,221.92109945509583,222.29074460314587,223.207191250287,222.67613705666736,223.6048768060282,223.01718999957666,222.94513724092394,222.93789461348206,223.06160832662135,222.20656069461256,221.2312306216918,220.45504985935986,220.54737220145762,220.26176081737503,221.244147637859,221.3787285014987,220.88101290771738,220.3667623763904,220.76039659092203,220.5418325960636,220.19024614663795,220.6855826387182,220.20499872928485,220.2116461088881,220.07247433811426,220.16674506943673,220.49073454830796,221.02154233818874,220.0525807379745,220.30416813166812,220.98752020392567,221.23846651613712,221.85364684136584,221.09078010264784,221.5620086537674,222.38056642003357,221.88432459533215,222.6952792373486,222.42035614466295,221.8341203178279,222.81817256752402,222.35095491772518,223.30818397691473,222.64949193410575,222.2096177013591,222.28017916437238,221.6904936102219,221.08432530751452,221.88407428422943,222.60237997118384,223.04594803741202,223.5560267609544,223.457397590857,222.80463910195976,222.147812851239,222.94932659249753,223.5481481757015,224.15599998785183,224.08436930831522,223.4624243825674,223.892464726232,224.1668203184381,224.82209171541035,224.19773493288085,224.71991715487093,223.72419242514297,224.51544747455046,224.19465583655983,223.91058597061783,223.81117686536163,224.52963304053992,224.4216511962004,224.82832705555484,224.9230636204593,225.07063339464366,225.94356606947258,226.93472411995754,226.80644359393045,226.89313847199082,226.0429248707369,225.61788028944284,225.43190337670967,226.21022307733074,225.4104030560702,224.96314915409312,225.54760456690565,225.0815524654463,225.6236785845831,225.88967284886166,224.93580089556053,224.76293185912073,224.87668932555243,225.19248411618173,224.98997065378353,224.13908748188987,223.20898385997862,222.53585842624307,221.99081652099267,222.6690331962891,223.4388367482461,223.1721568289213,222.95026222663,223.9228025902994,223.32757828524336,222.33246448729187,222.19729750650004,222.99359969701618,222.36052649468184,223.274696896784,223.7169431205839,224.0963452756405,224.65643713856116,224.1327329231426,223.58390612434596,223.07309073628858,224.04374051839113,223.83891421789303,223.8267695410177,223.60849723452702,223.57924064062536,224.50224064243957,225.45690940134227,225.57683168211952,224.81142905261368,224.14526226976886,224.25498172128573,223.42518004169688,223.5156422429718,224.4828487606719,223.74592907400802,223.94467530213296,223.6687870505266,223.9102103393525,223.1500440267846,222.50474544335157,221.6628171163611,220.97434938745573,220.48381508747116,219.61707866657525,220.03518785629421,219.8254172038287,218.89625430945307,219.61959968833253,219.1732257315889,219.66521237185225,220.4360718918033,220.2492631720379,219.77373147569597,220.02731174975634,219.1038050595671,218.27868196880445,217.38401453988627,217.48103583138436,217.76768446946517,217.69052208494395,217.04104093601927,217.64647128479555,217.4289635163732,218.29460920207202,218.7440459919162,219.3593695196323,219.56439271662384,218.63243882590905,217.76085478020832,217.22589119104668,217.98426690557972,218.228118756786,218.3467995482497,217.64180397661403,217.12528317281976,217.76590367220342,218.43060369836167,219.29769218200818,219.03981472551823,220.02325391490012,221.0196581906639,220.33266439428553,219.37736154161394,219.35879813181236,218.79602078301832,218.2401338322088,218.5960858706385,218.6020121090114,219.01107079302892,219.54392266040668,219.4710626816377,219.0568347563967,218.13389201648533,218.56110663199797,217.94674483453855,218.5394604979083,217.67372822435573,217.30107725178823,218.27303222194314,219.114191330038,218.89472859865054,218.09239297779277,217.73097255220637,217.7795944204554,217.13370171468705,216.8088122839108,216.07439708337188,217.00751356547698,216.5634821751155,215.5978608429432,215.58124879933894,215.84503421001136,215.24192300392315,214.30651987157762,214.76620108494535,214.71425203373656,214.4894474213943,215.20811411459,215.0368002797477,214.68172900611535,213.82200299901888,213.7381285848096,214.11866214126348,214.50125800352544,214.94969317037612,214.60294854734093,214.40786836156622,215.02501688711345,214.72741233883426,214.21199779910967,214.5390453748405,215.43486845772713,215.85182853182778,216.6290705599822,215.6447398280725,216.39616867294535,216.69130673632026,216.53017544187605,217.02674490353093,216.90293116262183,216.1325804470107,216.05465234210715,216.78759484970942,216.29564864793792,216.7277034749277,216.17780449148268,215.2438065316528,214.3651707530953,214.93128045555204,214.89023388316855,215.77810611575842,216.13645061803982,216.61373845022172,217.59856786672026,217.3530411394313,218.08340563019738,218.72555500362068,218.3751248731278,217.5417311801575,216.82101950235665,216.1530696428381,216.70741489948705,217.69388329191133,218.6594213647768,218.98299077618867,219.031854134053,219.02178905298933,218.90845968946815,218.05360125610605,217.4770161290653,218.2520861295052,217.29907852830365,217.12190289143473,216.63286246778443,216.73030247958377,217.04260219121352,216.27377417730168,215.78833559155464,216.39181412942708,215.4465780328028,215.1819501738064,215.96535184327513,216.8369606072083,216.6757680955343,215.75850749015808,215.43842550180852,214.90380112826824,214.0282100616023,214.85982443066314,214.06808228371665,214.5791162350215,214.53465034486726,214.4351347903721,213.71646848553792,213.72619718220085,212.82921854872257,211.9654128071852,211.118257407099,210.36247941991314,211.0754838278517,211.75118912290782,212.28650898486376,212.06444600597024,212.89558215113357,212.1006099791266,211.7959198690951,211.79046924971044,211.6527142310515,210.76570858387277,210.54739435063675,210.88756855204701,211.37882484402508,211.27359629329294,211.30951023939997,211.49889179738238,210.94616969348863,210.1719701862894,210.01521999854594,210.51725332485512,210.33126767491922,210.64885128149763,210.6921328669414,210.58993227500468,211.12156429281458,211.97487330669537,211.0996109265834,211.54317886009812,211.84601475903764,211.18887075269595,210.31101669883355,209.994249003008,209.2979950173758,210.23712933110073,210.18811156786978,209.51574074616656,210.3818315626122,209.76148645905778,209.70868370262906,209.00385787244886,209.0208305893466,209.89809167711064,209.40821056021377,209.53122811065987,209.6155558503233,209.29150484409183,210.253164680209,211.2298982408829,212.03115061903372,212.60909431939945,211.8277925294824,212.0035677086562,212.24663185235113,213.0809042728506,212.9662008159794,212.24166647111997,211.43329715868458,211.49893531342968,210.79025746090338,210.2030785055831,210.9478181572631,210.65491074323654,210.88569826446474,210.36413843929768,209.72776741394773,209.41722822654992,209.7119277608581,208.93561259051785,208.57141870213673,208.51976403268054,208.03663045540452,208.04685280518606,208.24833966745064,208.8175118472427,209.1406059609726,208.26870966190472,208.8851291979663,209.6433820715174,209.18846146482974,209.99818875361234,210.24919118732214,209.86730806482956,209.33861867617816,208.8510794006288,207.85131043661386,207.0279262457043,207.05128119001165,206.05173076922074,205.06016931822523,204.16210871003568,203.88445277838036,204.64867494115606,204.05605785176158,204.37744282744825,203.6879813466221,202.9558128649369,203.19012676738203,203.73991793580353,204.70384229253978,203.82559563405812,204.09713890729472,203.47030197782442,204.17578665120527,203.58701277151704,204.41160522587597,204.57868122961372,205.0626103351824,205.785520829726,205.8696393640712,205.74752750899643,205.3974419203587,206.01331974938512,206.63078195229173,207.3654638119042,208.1639989237301,207.95022425986826,208.67676897440106,209.50859982008114,208.94360793475062,208.0134164155461,208.62700609397143,209.60139432363212,208.95505187194794,209.22196086775512,209.31922516040504,208.50694333668798,207.9464231529273,208.15285259392112,208.47462324565277,208.0295278658159,208.10143584292382,208.3492707433179,207.35279565677047,207.16468938207254,207.06166600668803,206.38413447747007,205.79768802784383,205.52734511485323,205.21179679594934,205.4268184970133,204.7271049087867,205.2120346534066,204.23440392129123,203.47731377230957,203.66282839793712,203.50967542501166,203.37008885061368,203.8424067152664,204.57542158383876,204.68612941354513,204.2769711026922,204.7725774445571,205.7371025076136,206.29499110765755,205.83477507065982,205.82146470295265,205.12017905153334,205.88043148303404,205.85515449102968,206.65788671467453,207.40498260967433,206.45472957054153,207.41746447328478,207.09997829794884,207.97100928565487,208.3777670781128,209.2210311256349,209.1014163629152,209.90582051500678,209.54218990262598,209.83594487421215,209.38994903769344,210.26362677291036,210.13091731304303,210.12268703151494,209.5879005030729,209.5175701584667,209.8782321838662,209.02001121034846,208.54107584338635,209.4329456537962,209.22053453093395,208.33047008840367,208.7678775601089,207.85150192817673,207.89806499518454,208.0734942117706,207.88665496138856,207.99078618967906,208.04932672763243,208.74351535690948,208.06254072440788,207.96391237759963,208.24361360631883,207.99022646201774,208.03821662813425,208.13701228890568,208.7891247565858,208.35789586789906,208.11847234750167,208.4004353620112,208.78522708732635,208.4551178314723,207.60767374606803,207.5949725965038,208.03620428498834,207.078659016639,207.68899719556794,207.47975758183748,208.4522946672514,207.69116187514737,206.8089913330041,206.62265397422016,206.6478162156418,206.2677524141036,207.01290029799566,206.2251037429087,205.85975128086284,205.02233488718048,205.18167969118804,205.52076901262626,204.53398325899616,204.36093118786812,203.50041136937216,203.76714472146705,204.45603181235492,203.89812059234828,204.59608544083312,204.33480098377913,204.85013609007,204.46171926613897,204.88441765867174,204.63277567038313,204.91065542399883,204.1399530088529,204.43730662530288,203.6385005833581,203.72060582088307,203.51101422682405,204.05641092173755,204.04019001452252,203.16098864004016,203.5356550095603,203.71779122948647,203.9902726127766,203.53399033658206,204.26936789462343,204.10174209205434,203.5679799374193,203.2131104436703,202.8344085025601,203.55886841844767,204.45460369670764,203.90882910368964,204.7534385919571,205.1315654218197,204.3999406900257,205.12236667284742,204.55963080888614,203.69878620281816,204.44460327085108,203.6353801046498,204.010499663651,203.3792723719962,202.62009485438466,202.03882030630484,202.89597767824307,202.62647463288158,202.37530371453613,203.0262600160204,203.95894375583157,204.81746054254472,203.86445535346866,204.0296896249056,203.08929174160585,203.33990150270984,203.00433296896517,202.9791669435799,203.86415528459474,204.29402889497578,203.74660098413005,203.04028594866395,203.2574359313585,202.47855620272458,203.30411626026034,203.8528296481818,203.97173890518025,204.16732317442074,204.66959138028324,205.18435164215043,205.8533294745721,205.57931971922517,206.53619054425508,205.84506031917408,204.92252279026434,205.88249150058255,205.50556035526097,205.98340515512973,206.1864479696378,205.29776448989287,205.78188771521673,206.64969313982874,207.4327839477919,208.02013675589114,208.49644696945325,207.77054626122117,206.90267663355917,207.01770440442488,206.5719638573937,206.98212346853688,206.18003882048652,206.56341196224093,205.59795927908272,204.93530017882586,204.6651155720465,204.29219101555645,204.15627254359424,204.67203254206106,204.20982408942655,204.20574372448027,203.58733256021515,203.3028284930624,203.13144291331992,202.3756699319929,202.2954593989998,201.72038328507915,201.3640670371242,201.31185466516763,200.59216102445498,199.95782578689978,200.60122239077464,201.0024376125075,201.5131556224078,200.760240143165,199.79420648422092,199.0887584737502,199.96938270609826,200.24305123789236,199.6023646313697,199.41245654597878,200.27335152868181,200.42025718605146,201.3106711199507,200.6804103916511,199.78173394408077,198.93591026077047,198.66935263155028,197.9993792027235,197.84568466292694,198.04671693732962,197.3600659216754,196.71767665399238,197.45701607689261,197.11205607885495,197.09798663901165,197.35316503420472,197.6513543636538,197.4696380700916,198.20993831614032,198.1844447152689,197.3226681118831,197.53906978759915,198.36513936147094,199.02390670171008,199.64261070545763,198.75721205258742,199.11436983197927,199.67830999707803,200.00178383337334,200.22640346782282,199.40087171457708,200.31355457892641,200.65256499871612,201.43574296683073,201.24791987473145,202.15413333754987,202.48646098561585,203.3444867520593,202.99782446213067,202.21057758806273,202.23110817745328,202.14247552631423,202.05396575015038,202.04255199572071,202.14000861626118,201.58547553652897,202.3883619136177,201.66232921229675,201.83527742372826,201.5998264835216,201.87798123573884,201.5499712903984,200.9995953561738,200.7733513219282,201.60487130610272,202.55684351036325,201.63956910837442,200.8845120551996,201.82089661061764,201.90029680496082,201.93012498272583,202.09976295614615,202.28749212948605,201.3557404386811,202.14490280905738,202.39783255010843,202.26538314996287,202.56431539636105,201.86600394919515,202.12885667337105,202.2846748540178,202.38118099747226,203.2715234826319,203.5561857065186,203.65938999783248,204.15507370373234,203.72763342782855,203.26629783539101,202.72040517581627,202.4962871852331,202.09530984889716,202.42317121941596,203.1155910184607,202.34963676612824,203.21131470613182,204.1081045595929,204.5386640848592,204.68438704265282,204.71475798171014,205.16397429211065,204.61063200049102,204.69965034537017,205.28513367613778,204.7243173881434,204.2985147270374,204.5381387169473,205.33929105475545,205.09917857125401,204.39426681073382,205.0937448660843,205.3975723842159,205.88297397922724,205.19244811683893,204.4003985421732,203.44538361625746,203.43261622916907,203.73256629519165,203.33822795003653,203.2802751418203,203.56002291245386,204.04060753807425,204.47780400700867,204.28272189758718,203.2906440300867,204.2345131635666,205.05282890424132,204.5729959080927,205.45204769214615,206.4373665987514,206.57688311394304,206.32111419504508,207.2330981544219,207.3760542566888,206.7184378709644,206.05028442200273,205.4443259080872,205.53600663831457,206.5271504316479,206.9441786534153,207.79846481606364,208.58874069759622,207.87041908269748,207.38757412834093,206.6476417076774,206.61168604623526,206.1119662434794,205.82040384830907,205.57886155880988,204.9828625107184,205.95952205033973,206.8817870724015,206.6810393803753,206.7203161274083,207.09067776612937,208.00255575682968,207.58367183851078,208.5589551036246,209.40222462220117,208.7027032021433,209.48246270231903,209.12313679466024,208.40707435971126,207.44088154798374,207.7193220583722,207.17931021936238,206.69257507566363,205.9928071014583,205.42676167562604,205.9681077171117,206.86100014066324,206.08217176422477,206.96788028813899,207.3295459295623,207.51201443606988,208.4958419133909,208.03758372273296,208.67680340912193,208.02705407468602,207.58863763324916,207.19245916651562,208.09995247377083,208.29732929402962,207.6937288301997,207.04880710318685,207.85256127547473,208.1936377058737,208.94603260653093,208.46730745397508,209.42433058703318,209.84935934841633,208.94907828001305,208.33008737955242,208.60588562255725,209.17654941417277,209.00354198506102,208.6062220991589,208.62908943090588,209.20650119613856,210.10788005637005,209.17796932999045,209.62938883528113,209.0646523134783,209.31180553417653,210.10262400098145,209.3237786097452,209.63126996718347,210.2208792916499,209.78109550941736,210.4851463912055,211.45254392549396,211.44278637086973,212.2407987108454,213.18411876121536,212.87959770159796,213.874462579377,213.93996284483,213.68644970608875,214.3776316693984,213.529108769726,213.54493423271924,214.26430232310668,213.69539300259203,213.57879540417343,212.9694976042956,213.39208010490984,213.60822301218286,214.11068037571386,213.61013455642387,214.1001419131644,214.35758372582495,213.45187620818615,212.55879442906007,212.34039496118203,213.12685774406418,212.8092138567008,211.9403075259179,211.774793590419,211.1131451255642,211.71979450108483,212.32448475575075,211.3303194893524,211.78079987782985,211.6846669795923,211.06521910382435,210.37168480083346,211.28471115184948,210.2934114341624,211.06821215013042,212.06496864184737,211.59554352238774,211.64061721367761,210.7073091850616,211.0328035983257,210.51318010734394,209.65920808166265,209.595877321437,210.51282765716314,210.52232803683728,210.81023657461628,209.94797643832862,209.30160139221698,208.95031069312245,208.72307615401223,209.22348504466936,208.27000447781757,208.75512059684843,207.96757731959224,208.47213185252622,208.26677484856918,208.24235811829567,209.0721721011214,209.0921021271497,209.69166643824428,210.10195837775245,210.82491749804467,211.1857479950413,210.46760385716334,210.05328273633495,210.4517549071461,210.81216305447742,210.4763240502216,210.220361945685,210.5916328704916,210.89762323210016,211.27899118419737,210.46587804192677,210.51490460988134,210.73122248984873,210.17335824109614,210.92935713473707,211.09850418707356,210.20755491685122,209.5935921529308,208.67553501203656,207.68377408431843,207.91101763490587,208.7150553530082,207.99432104593143,208.78104459680617,208.9193959562108,209.02324409037828,208.02348397905007,207.4855896634981,206.6041915123351,205.79970090836287,205.0396586530842,205.00004880456254,205.79422169039026,204.83455137722194,205.64355867169797,205.3404692276381,204.67067706771195,205.50091771315783,204.9583077938296,205.8522087004967,205.88419274426997,205.32265694905072,205.36287705926225,204.88177264295518,205.72518842108548,205.843007045798,205.477665534243,205.8127881414257,206.2459769374691,205.49626283161342,204.66396941011772,204.00059376331046,204.49562230426818,205.38216835958883,204.75735710700974,204.40122270584106,203.5438286648132,203.90662056114525,204.5609203861095,204.08042202936485,203.54859745968133,204.11265491694212,204.3153940010816,204.69334203237668,204.5974956746213,204.1141924681142,203.1423369036056,203.9350637695752,203.6332531007938,204.5510085085407,204.66448341310024,205.59932119958103,206.38334338134155,207.20082545978948,207.0136437159963,207.9556620940566,208.3354007084854,209.05408926540986,209.23802836798131,208.85577259026468,209.3941820017062,209.03032445162535,208.1898510721512,208.83576817717403,208.0028784768656,207.97543603228405,207.26291414815933,206.91608707001433,206.95672177476808,206.10608753701672,206.20733421621844,206.1483469940722,206.24617021763697,205.64769578259438,206.09650996653363,206.55862267594784,207.12214203132316,207.25319003732875,207.7958049280569,207.42554108891636,208.37652177223936,208.082876610104,207.41465729894117,207.9342867406085,207.07506890408695,206.29818811966106,205.74477568548173,206.3589964932762,206.74811186967418,205.86215231008828,206.42270939610898,206.43789117690176,205.6753410617821,206.1093448693864,206.70058473665267,206.54347036546096,206.24036476761103,207.06380051374435,206.76159375859424,206.42711432371289,205.83195898728445,206.49216708540916,205.81771082989872,204.83997634984553,204.27104669157416,204.35107722086832,204.19194429833442,203.83147206809372,204.22391155641526,204.17277511535212,204.42296197544783,203.4981241314672,203.3830194431357,202.39216604223475,202.45104798208922,202.82670240662992,203.81775226676837,202.85331125138327,201.91440401319414,202.04355469858274,202.51199226314202,202.1562441396527,201.50892526935786,200.5572256660089,201.50725802173838,201.52316938713193,201.26250357972458,200.8894107490778,201.4286199673079,202.28655860899016,201.72913929447532,201.91892647184432,201.05004979250953,201.59218266839162,200.7556418608874,201.64564668061212,202.48307390883565,201.62060031946748,200.79110670369118,201.24612555699423,201.01648406870663,200.4319938775152,201.24449670920148,200.7602121005766,201.1779315941967,201.40238489583135,201.4662132053636,200.94944087788463,201.5987315112725,201.94223812129349,202.2392042670399,201.402800984215,201.94888645457104,201.9637326328084,202.53307098988444,203.0078922812827,202.10030745528638,202.44258205173537,203.36075640004128,202.6592279560864,203.3272473961115,203.09034581063315,203.51986586488783,204.15845974208787,203.3118217298761,203.36728871287778,203.44524502707645,202.89997429493815,203.46063553215936,202.8728851932101,203.63988026650622,204.1928132022731,204.7852480695583,204.45800520200282,203.4822168732062,204.3369521535933,203.9297841656953,203.89490968640894,204.8399652321823,204.6076867133379,203.66082263551652,202.8830593219027,203.4700876167044,203.3348889783956,202.47535571362823,203.3161895838566,203.69895455334336,204.5377693613991,203.59496921487153,203.08937766961753,203.06399127934128,203.1735733882524,203.01106153428555,202.50666049961,201.7326314379461,202.57708746008575,202.61022763280198,202.64438389241695,203.08044613944367,202.86932137794793,202.7522406866774,202.55386180151254,201.96638670470566,201.4269729522057,202.06250548828393,201.79377413215116,202.65462730638683,202.70897304080427,202.84672820288688,202.85264301206917,202.90124679729342,203.08300962671638,203.75797398155555,203.317081250716,202.7662516622804,201.8891204991378,202.6528971614316,203.10806479118764,203.33692807378247,202.40939393406734,202.58525321632624,202.61349749471992,202.562685854733,202.67403372284025,201.79326913924888,201.74091614969075,202.67446600552648,201.98223986150697,202.67751717520878,203.2257497557439,202.66296314727515,203.64402914000675,204.19639702048153,204.13850763021037,203.81721175974235,204.06742410035804,203.69431620184332,203.32838337123394,203.68732299515978,203.80921075725928,203.49288353184238,204.26234219269827,203.82014069799334,203.89308215584606,204.67400147160515,205.3418215708807,205.4967725253664,204.54848313285038,205.36406178120524,205.19890147307888,205.01578142959625,205.14353449083865,205.15778139187023,205.64822936989367,205.77586149517447,205.91148301353678,205.1969668790698,204.36357346223667,204.06786190532148,203.47400620393455,203.03425850905478,202.77548253629357,201.8363662287593,202.2238574330695,201.51222982397303,201.64340070588514,201.97739149071276,201.91557492734864,202.63658765656874,202.8627688344568,202.9593618591316,203.4111045114696,203.39342863298953,202.63356562750414,201.95099806925282,201.2827731720172,200.539910659194,201.1908693322912,201.0988931474276,201.72031763009727,200.9293634938076,201.108957731165,200.2512847231701,200.69418700039387,200.20987366512418,200.782711265143,199.8660138915293,199.02016210835427,199.8283994793892,199.78938480373472,199.1962147457525,199.03337120776996,198.98357990803197,198.76591580314562,198.53144779568538,198.48667717864737,198.5308927348815,199.40463854186237,198.78729925584048,197.86520740622655,198.63279386097565,198.86030615214258,199.84760304633528,200.48080265941098,200.00706084026024,200.33452060678974,199.48895174264908,199.5755369090475,198.7973028831184,199.21810459252447,198.4312440250069,199.39594713272527,199.80061992816627,200.79007692681625,200.62948328629136,201.43567066965625,202.10212937928736,202.78961733356118,202.0467054080218,201.74440761562437,202.21908053802326,201.29145870963112,202.155584204942,202.7286412511021,202.4000816741027,202.35657594306394,202.09985270537436,201.79300264222547,202.3693564948626,202.91542594367638,203.06778274476528,202.12593852262944,203.03029587399215,203.66719790454954,203.85007344651967,204.6685382896103,204.44634894886985,204.4220352722332,204.2537299511023,204.09639136120677,203.8044650927186,203.2547482950613,202.65199358621612,202.4447057088837,203.26838537678123,202.9212850383483,203.87348305946216,203.09687307011336,202.24272031197324,203.01321416534483,203.1311827832833,203.84012569207698,202.9060076433234,202.4657907341607,202.14731063926592,202.97144677536562,203.74588774330914,203.64496067957953,203.0967390211299,202.2841050582938,202.471912862733,201.88188143167645,202.06097928760573,202.88568666391075,202.42271282477304,203.16885192831978,202.18662815680727,201.9608026132919,202.63087752647698,202.6004092548974,201.88986862963066,202.3227847549133,202.13993809791282,202.85948468837887,203.29681111034006,203.48186184465885,203.07688154047355,203.2831679531373,203.18499595671892,203.752542774193,203.92266893899068,203.61382889421657,203.92360223969445,204.7541331751272,204.69894771883264,205.04822602216154,204.7892209305428,205.45597094437107,206.21726854052395,206.18240992398933,205.60287684295326,206.5390049368143,206.69207370094955,205.99582073045895,205.75595621299,204.90611771633849,205.07327200938016,205.98383478587493,205.66863504378125,206.6037831036374,206.16607052274048,205.47884251503274,204.93456969643012,205.50296466099098,204.7887481409125,205.48667152319103,204.83644556906074,204.51981425611302,204.89975471328944,204.40996314119548,205.31515011750162,205.96183441439644,204.97411113837734,205.48009816044942,205.6507177366875,206.23323730006814,206.92213977128267,207.3006916907616,207.34074856340885,208.20402941806242,208.70218711532652,208.43574806535617,209.15425735525787,209.1843635905534,208.63897237554193,208.49889449309558,208.23004627600312,209.10770366247743,208.13047707406804,207.19683139771223,207.564009424299,208.01122795790434,208.4422238622792,209.1424257750623,208.7896504146047,209.76878417702392,210.14608748303726,211.11871136538684,210.94076078478247,210.04437428340316,210.24853553809226,209.50449586519971,210.01312708575279,209.27159636933357,208.84151895390823,208.4717369545251,208.00172743340954,207.97151305247098,207.02941309520975,207.08220482431352,207.60314883524552,207.32176996720955,206.84726326307282,207.07827312778682,206.99106012191623,206.85546316951513,207.85033146524802,207.75341586302966,208.3897372847423,209.127106372267,209.16646491363645,208.61769560864195,208.38622052548453,209.34452827088535,209.0041149687022,209.99668710818514,210.01170155126601,210.55518216034397,209.70708045037463,209.98492828384042,209.81783284572884,210.04753949167207,209.76207315688953,210.04333856655285,210.06316368514672,210.06976336985826,210.95538837788627,211.80775130400434,211.34304171381518,211.46809819573537,211.83734601037577,212.7165953652002,212.95640558283776,212.02798477001488,212.39004264911637,211.60154963005334,211.42587699834257,212.3084575100802,212.84853135468438,213.53281368594617,214.3472648281604,213.77941265376285,213.6562447459437,212.9896188918501,212.39170417701825,213.34787348285317,213.0718592433259,213.423797220923,213.3736641681753,214.23959534429014,215.12077527632937,215.77039537904784,216.164783611428,216.47592010581866,215.73926331009716,215.00529808644205,215.28851816942915,215.82254940504208,215.8575359126553,216.309795351699,216.55483819218352,216.90098554454744,217.6198359215632,217.08744910312817,217.12109246710315,217.59703516960144,217.94452304579318,218.31834095343947,217.94268161430955,216.99365084711462,216.22065711580217,215.50419905409217,215.3900969810784,214.54634933313355,214.14688834082335,213.98682582145557,214.4426999478601,213.7075851354748,213.12810938851908,212.45225018821657,212.9946721913293,212.870905644726,213.36064481409267,213.4155083745718,212.4338566889055,212.9031806671992,211.9820480379276,211.40688899159431,211.41960360947996,212.08564449474216,211.1499859872274,210.54743333300576,209.60564024420455,210.29475547373295,210.6881681648083,211.4582909680903,212.18855521362275,212.96344290906563,212.3708191830665,211.88733971258625,212.73095780750737,212.5230050943792,212.02996480744332,211.78572002751753,211.83824109192938,211.29999624146149,210.94802737701684,211.14833218138665,211.62149814143777,212.30570019455627,213.1387094790116,212.87826487980783,212.67462738603354,213.3930827821605,212.9380290186964,213.8972008470446,213.18310211366042,214.03479165956378,213.43107879161835,214.0813192985952,213.17072811350226,212.18584521347657,212.2042620209977,211.95112410373986,212.1347866980359,211.85605046572164,211.47774991067126,210.55594469467178,210.88317197188735,209.96973601402715,209.46568220341578,209.45792183699086,210.20640877448022,209.55572939990088,209.37487464165315,209.2007698272355,209.06330217886716,208.53466735268012,209.00246411701664,209.55775462510064,209.7567435670644,210.2150202440098,210.56152626220137,209.66600114339963,209.41938746813685,209.06047242647037,208.626344664488,207.767294771038,207.08623428177088,206.81411332916468,206.05269969813526,206.89994272170588,207.10486342664808,206.5679226424545,207.1506632482633,207.61524592293426,206.77360379276797,207.77242670068517,207.022222683765,207.4552357411012,206.5031333300285,207.04240054171532,206.58193409396335,206.37970421090722,207.0928508345969,206.16939131123945,206.79594203829765,207.62772311689332,206.9574184725061,206.64121445082128,205.68194928439334,206.52007699385285,206.39262955263257,207.04133704770356,207.05334971426055,206.0553901125677,206.15845299325883,206.52915452606976,205.62898076605052,205.65940223215148,205.1447733240202,204.42726735817268,203.55132307624444,203.1237198067829,202.99199141329154,203.40013404842466,202.44277461012825,202.0592718226835,202.46641070442274,201.82624413631856,201.52502502081916,202.31955975154415,202.47999901650473,203.05483048548922,203.56774373399094,203.32291760342196,203.70243265666068,204.27722838753834,204.01896076416597,203.3263312485069,202.9385891724378,203.5587427681312,203.93480276223272,203.01506787445396,203.69308275962248,204.37058602645993,203.83051784569398,204.388594572898,203.56439681025222,203.28863004269078,202.8802092075348,201.91826662654057,202.51852158969268,201.72921793768182,201.93492235150188,202.24069507839158,201.76875293953344,201.1564349210821,200.32136550359428,200.71666434127837,200.50814301148057,200.67648868216202,199.7560113882646,198.7849241020158,198.85570741351694,198.45760660478845,199.38306556735188,200.1267631915398,200.37066480331123,199.90130359306931,200.477451285813,201.1090255472809,200.11888941237703,200.92139253905043,201.15017341449857,200.62447379529476,200.21064341673627,200.82993354648352,201.50751273799688,200.7780222306028,200.8687018044293,201.52769789053127,201.92750928364694,202.14772392250597,202.73649582266808,202.5317842978984,203.29367850534618,203.74671713262796,203.83851811522618,204.16059671947733,203.75692849652842,203.95408391673118,204.90725237643346,204.1946677826345,203.69855353748426,203.5111102820374,204.03747054282576,203.8005333901383,202.90184848895296,203.565006185323,203.22936420096084,203.1111626313068,202.90944736497477,202.57547851884738,201.70396631862968,201.43773294333369,201.03397303586826,201.34240255504847,202.02496766718104,202.1670240298845,202.72747419495136,203.37586360657588,204.3343279683031,203.88263785792515,203.968582729809,203.97796645062044,204.81961430655792,205.3496414856054,205.70816369913518,205.55403591925278,206.01863577403128,206.22388247726485,206.3266924698837,207.1919963620603,206.39728661859408,206.7377095031552,206.94567922269925,206.31251397449523,206.6706286831759,206.36027894821018,206.50186045840383,207.26144922198728,206.41612511267886,207.2444002404809,206.421748009976,206.27042628033087,205.82483721105382,206.4420056999661,207.2212192886509,206.43539315508679,206.50379582727328,206.07141774939373,205.5352780292742,205.59099287819117,205.3356259050779,206.12838434008881,205.93076677294448,205.11934525007382,205.242342595011,206.14902976248413,206.46105112461373,207.05528024584055,207.5084255868569,208.08261117059737,207.9407607917674,208.30853561498225,208.1526816552505,207.49157204059884,207.16787371132523,207.4829762717709,208.39873714465648,208.71622841712087,207.96645694738254,207.1998637309298,208.13796018157154,208.59340135473758,208.2015801947564,207.42065088870004,207.95928511954844,208.79097693553194,208.33211162500083,208.12773815682158,208.1118869110942,208.93061070377007,208.66678809840232,207.7070418340154,208.58187237521634,208.18919575959444,208.23271210258827,208.5894175390713,208.85785246407613,208.6512845060788,208.8542320681736,209.69294747151434,210.0515442425385,210.7760440511629,210.462677879259,210.6624305183068,209.87524162931368,208.91785995895043,208.1329953162931,208.91204308206216,208.99603663850576,208.35189792793244,209.1261154632084,209.09090199880302,209.85531024821103,210.25807736534625,209.8470637970604,210.6291208700277,209.78301156731322,208.79053811728954,209.55239712726325,209.29371379548684,209.33757692575455,209.80447768513113,209.79937784792855,209.82986387237906,209.57176563097164,210.18811327777803,209.70699390443042,209.03826686087996,208.69507153471932,208.85314522031695,209.2491433727555,208.68040206329897,208.47118464438245,209.3582228627056,210.1290277321823,209.61527851922438,209.50074643222615,210.4332891739905,209.83960034372285,209.7171800979413,209.95043571386486,209.6954099284485,210.055620925501,209.80644309520721,209.8289116169326,210.13310991600156,210.0195196880959,209.59680875949562,209.93801725003868,209.7517808508128,209.24432344548404,208.8989218263887,209.8280593766831,210.60635644663125,210.20777852926403,210.65114996070042,210.4890049234964,211.45531799504533,210.71582954609767,209.9208385385573,209.45310112973675,209.48152682604268,208.50486009614542,208.5735534480773,208.85754992626607,207.90284536359832,207.22937580896541,207.7880613002926,207.97376765543595,208.0678218365647,208.83332944149151,208.56494597811252,207.88458397844806,208.1017836118117,207.42636576015502,207.01882814290002,206.13885121932253,206.5472721089609,205.91993454331532,205.04117877734825,205.13502687215805,204.56607257248834,204.79209651891142,205.04024865943938,204.70998719893396,204.48030516738072,204.37703634425998,204.45190480351448,204.9305777125992,205.5269223987125,205.78204848943278,204.92341909138486,204.09538594307378,204.57501499494538,205.44298657448962,205.51885994989425,205.08518843678758,206.03639181423932,205.3135691927746,206.14524729410186,205.89450437529013,206.02710793353617,205.77488346304744,205.91522739175707,205.17657063808292,205.15425856225193,204.72316560614854,205.60623519914225,204.65088792983443,205.01280839229003,205.00230775307864,205.97345512220636,205.44292193930596,205.52186244446784,205.62928926665336,206.5752136525698,206.0363826006651,206.92611551936716,205.9475021394901,206.11594773828983,206.42543876264244,206.8565915999934,205.95305596478283,205.23373179510236,204.63262873096392,205.15727939410135,205.01901393570006,205.58810249669477,204.6040450911969,204.79966523125768,204.99402273911983,204.11690371716395,204.41988647403196,204.0377675681375,204.49757240107283,203.9201413928531,204.2343706926331,204.8277016817592,204.2450926695019,203.85065559437498,204.34479509247467,205.14711139677092,206.14031611429527,205.51847081258893,206.2747831097804,207.1200871686451,207.39427560241893,206.97494807001203,206.9308428321965,206.46648565819487,206.23408314120024,205.98774903081357,205.8791652112268,205.58355577709153,206.17827788461,206.76547474320978,207.57252307608724,207.15054334281012,207.40660617640242,206.83087553782389,207.06581456772983,207.05797193245962,206.5284743933007,207.35475467517972,207.92843096377328,208.66880953405052,208.93176341382787,209.3760462529026,209.35836088424549,208.57793040713295,208.09471735032275,207.29853158257902,207.1683704862371,207.47130862949416,206.55799866002053,205.6442014882341,206.01847179373726,205.90214810147882,205.011147539597,204.30674870079383,205.29150908393785,204.97536892537028,204.18709017941728,203.4751275605522,204.3075513439253,203.70256327465177,204.18427610863,204.1619627806358,203.36165952682495,204.2576030092314,204.18695028219372,204.5664541949518,204.09403496515006,203.50083572836593,202.661591516342,202.07293600589037,203.06992212729529,203.16780620161444,202.5243639620021,202.27624861476943,201.44085188303143,201.9961475469172,201.50038649421185,201.90220798365772,202.68993034539744,202.2795895342715,201.67227277718484,200.8319496382028,200.0910784327425,200.09724071156234,200.24740079557523,200.39047079253942,199.64366665668786,200.44100457103923,200.40186186227947,200.75637871399522,200.6875492502004,201.0475004473701,201.7302775150165,202.365857522469,202.43158005923033,202.42569078644738,202.63023207196966,202.4858905924484,202.34513074764982,201.83464390877634,202.2222272809595,202.37905182829127,202.64920749189332,203.04994338471442,203.81405478017405,203.26920632692054,203.49948931019753,202.7857768163085,202.35045028105378,201.63135753478855,201.7802698770538,202.22519062645733,201.90284640109167,201.38691338384524,200.76142588676885,201.20784268109128,201.91785440780222,201.21802445827052,202.00210321694613,202.19222531933337,202.66206952603534,202.74896234460175,203.36141063505784,203.82027232227847,204.10764803178608,203.89937810366973,202.9369728011079,202.2645254950039,202.88564402377233,203.18573580821976,202.8306060046889,203.1432489254512,202.15337462630123,202.4884990141727,201.67954049166292,202.3179916748777,202.2219870914705,202.31326503353193,201.34750639321283,201.66625835979357,200.96948196180165,201.2529287589714,201.5113679789938,202.33619268005714,202.10876758489758,201.8244186481461,202.32683489238843,201.96594447735697,202.4819482024759,202.95000342978165,203.74967865785584,203.65357898548245,202.90781262144446,202.732314101886,202.94977171346545,202.55560214910656,203.49318633880466,204.40236570546404,203.82942145643756,204.79497422417626,204.55308836465701,205.29212406976148,205.91550132306293,205.96362010156736,206.54273418197408,206.95425837440416,207.08298610756174,206.1326608210802,206.25731497537345,207.09111771266907,206.25299291079864,205.6720664948225,205.2087085340172,205.27193223545328,204.48290696321055,205.12925407662988,204.51473991805688,205.21906619798392,206.1770115485415,205.4819719903171,205.22835765220225,205.7329937829636,206.29346254467964,205.97611807426438,205.47074356721714,205.68855644529685,206.53293806826696,205.89295555232093,206.59188124351203,207.00343086291105,206.10716136125848,206.48390102293342,206.46327554993331,206.43557402538136,206.68666086765006,205.73897761525586,206.5681348303333,206.8664805823937,206.67868812056258,206.46286910166964,205.7625154494308,205.86652085511014,204.95747673138976,203.96999284951016,204.1752583263442,205.1005950239487,204.6078057847917,203.7587986686267,203.25428285449743,203.06353848427534,202.7850618227385,202.44692089501768,201.88720606872812,202.67471872456372,203.5956161939539,203.1622854345478,202.89809704152867,203.6953246332705,204.434945599176,205.17231015115976,204.20000319648534,204.16924806963652,204.5608990988694,203.979546520859,203.47748124459758,204.07568593835458,204.90856405254453,204.40376073960215,203.77575325360522,204.4637545826845,204.95667957188562,204.63631698442623,205.36869115149602,206.03776338230819,206.36921899626032,205.80028147948906,204.83913121093065,205.59632092015818,205.0092895599082,204.20632810145617,205.18140819156542,204.27347980532795,204.26136820903048,205.00331120891497,204.96320868749171,205.87830290431157,204.93176659336314,205.31562949437648,205.713498163037,206.29606883600354,207.15611593611538,206.21704075066373,206.3037396101281,207.02489627990872,206.91294026514515,205.91802911600098,206.49096734495834,205.62458405457437,205.60513331880793,206.20545637281612,205.30139246908948,205.66407514410093,205.1912406864576,204.25807967502624,203.43034884613007,204.3042819541879,203.69593455130234,204.1345361233689,203.28775280807167,203.91557287890464,203.02619171049446,203.78404197189957,203.2714444915764,203.60108112217858,202.68593775248155,202.1467119148001,202.0306848436594,201.1340357447043,200.38472473202273,199.6455302280374,199.9480478670448,200.83061184128746,200.97709712712094,201.33284413767979,200.5061675645411,199.5567911863327,198.96050776680931,199.2978602051735,200.27339963428676,201.1601934521459,201.55158733949065,201.33539622090757,202.18742186762393,202.3979916172102,202.6647613774985,203.40971752488986,203.91707291128114,203.41837170673534,203.80103239510208,203.50910727772862,204.14202313078567,205.00690484791994,204.2056458662264,204.94117072969675,204.6661820462905,205.12017076229677,204.91183681832626,205.32239213166758,205.51647338969633,206.17540389299393,206.32919502491131,206.94251976301894,207.64945685723796,207.78481698967516,207.4693512590602,207.85914870677516,206.94133091252297,206.26940868794918,206.4266597502865,206.7101700589992,207.24813115457073,207.10136607987806,206.85414528753608,206.6629264750518,207.36025271750987,207.89648592751473,206.9360288004391,207.14791633328423,207.63709544064477,206.98547777859494,206.27877182140946,206.50827365275472,207.48666007816792,208.20309191429988,208.61618074821308,208.8145640855655,208.12127385893837,209.03046317538247,208.20377071434632,207.93589095026255,207.66545533947647,207.9054098725319,208.2896399651654,208.42486314708367,209.18343882402405,209.41583773773164,209.09319967683405,208.6575323473662,208.34486534353346,207.7060286081396,207.50180742470548,207.77932444773614,207.20159132545814,207.00473094172776,206.1355806174688,205.53861803328618,206.18847882468253,206.61936758831143,207.2929622977972,207.42405284335837,207.64602334285155,208.28088776720688,207.49152644909918,207.1477220840752,206.38426674110815,206.41389735182747,207.24548472696915,208.0688453107141,207.1558542032726,207.61622131289914,206.74730696668848,206.1819426859729,205.876536318101,204.90855260193348,205.84341473551467,206.19120268663391,205.31655615800992,205.01860733423382,205.27391176763922,205.383049917873,206.16880026366562,206.95447377534583,207.62422537058592,207.89868881134316,207.82437987765297,208.3653888530098,207.78222917299718,207.64221496134996,206.91293313354254,207.81590296514332,207.8340517017059,208.41732971789315,208.90217068931088,209.29359914828092,209.92907807044685,209.29025540454313,209.73684900579974,209.6948597524315,209.9774129926227,209.50400136318058,208.53819758119062,209.4003161699511,209.24800984933972,209.38556639757007,210.29376171622425,209.3314658519812,209.55637684790418,210.19144970085472,210.51468625897542,210.36300420435145,211.16894535906613,210.98345119692385,211.5304930564016,210.9037232575938,210.28746116068214,209.85257455473766,209.11166916647926,208.48076076153666,208.72419643588364,208.2394046811387,208.63395850965753,208.37265207944438,209.20556327467784,209.6315014101565,209.69870284292847,210.6088672070764,211.05019252048805,210.52118990430608,210.85382398217916,211.7220409233123,211.78427287889645,212.4201900586486,212.2856405172497,212.22186027653515,211.56353808799759,211.81096681114286,211.91914324089885,212.36347100464627,211.53947512898594,211.39190844306722,212.24701360147446,212.29662228608504,211.5925225475803,211.73709696298465,210.7576327547431,210.79412252269685,210.61350819747895,210.58433078369126,211.02878066757694,211.4858553064987,211.11322548938915,210.78861309867352,211.03378974320367,211.63575412333012,212.19592009531334,212.46861637895927,212.57735762000084,212.96050119725987,213.94223635829985,214.43064245721325,214.8588652727194,214.63733574654907,215.26203396962956,216.02305376483127,215.87256903201342,215.09169562440366,215.32977274432778,215.34945279546082,215.48045771801844,216.47801368590444,216.22771233972162,215.79204517928883,215.40956194885075,215.46884656138718,215.6148454276845,215.99479236966,215.23366066860035,214.67541673546657,214.2321293046698,213.35617380402982,213.70926749659702,214.4363478324376,214.20649149129167,214.76000987924635,215.6102145211771,215.612619032152,214.65125459525734,214.15579667827114,214.5976487044245,214.35197591641918,215.1816277494654,215.1760600102134,214.5212132469751,215.3524223412387,214.98989266948774,214.73692405503243,214.23464102018625,214.70400411169976,214.87777107674628,214.91978399502113,214.12720446335152,214.66287645837292,215.41413591615856,215.36732067586854,215.0819434551522,215.08353405445814,214.73978324374184,215.26301546022296,215.07504488062114,215.4620999530889,214.56599570065737,215.19004640588537,214.31617757026106,215.19606306077912,214.52227202616632,215.4314010106027,214.87624190980569,215.2260433291085,216.18273306218907,216.21390081988648,215.48134199762717,215.38138516573235,214.46241105627269,215.24395439587533,214.3709616921842,214.38928111689165,213.55474291322753,214.20881066890433,214.89379254961386,213.89381574001163,213.37341663520783,214.21259925328195,213.99168082373217,213.0363711901009,212.42473337892443,213.22057389328256,213.80876467423514,213.0488415332511,213.57885568402708,214.320565817412,214.9131701318547,214.2395531204529,214.7849242738448,215.65234330203384,216.12083783280104,216.6986582535319,216.24769146135077,217.15672049066052,216.73987193172798,215.83230777923018,215.02429891424254,214.64161109179258,214.95699190767482,214.73779364442453,214.06700514722615,214.26685777446255,214.75290436064824,214.341442683246,213.38501984626055,214.35270984796807,214.6941463672556,215.5164316049777,216.33529478497803,216.3091656169854,215.76829675538465,216.18335764063522,217.07330209948123,216.90581119665876,217.22177585214376,216.41257556853816,216.08557673590258,216.9989906665869,217.6387004381977,217.35212077898905,216.59839190123603,216.52504659211263,216.06528853112832,215.9065067274496,215.338161715772,215.87020492181182,215.5403997269459,216.19790895702317,215.80725911818445,216.77667651651427,217.5640707560815,218.5020904499106,219.49876664672047,218.50494438549504,218.78399944864213,218.57580150291324,217.6726719844155,218.6516012963839,218.89869015989825,219.8819830189459,220.39721581107005,220.77097427658737,220.08319575386122,221.03925608703867,220.8476451607421,220.52207302954048,220.88851638929918,221.417256930843,220.45164573891088,220.17588299745694,219.39187913620844,219.92343186493963,219.52667068690062,220.26264028809965,220.29807554464787,219.6905394247733,220.02087795734406,220.81470498163253,220.1052935095504,219.62136650877073,219.30919253034517,219.8658446916379,219.0119492453523,218.25928311049938,217.6506626047194,217.94238435849547,218.59197037061676,218.57779217977077,219.16855329368263,219.49843088490888,219.5673346463591,218.97331531718373,219.74910881742835,219.23508803965524,218.72758171940222,219.5583134079352,219.89331012405455,220.64017655467615,219.8335198429413,219.48050247272477,219.2319817361422,218.68316552834585,219.39231075625867,219.0920780301094,219.061572318431,218.77707567997277,218.79643822321668,218.35572732333094,218.90900032734498,218.56591956643388,218.33644787454978,218.18074435414746,219.16002196772024,218.4521818589419,218.50129699148238,219.16552560124546,220.1265185647644,220.37125057866797,221.34485333506018,221.60632303683087,222.37126260716468,221.61146044917405,221.79908541636541,221.61972414003685,222.33849083073437,223.21313290018588,222.56291291397065,221.93958243913949,221.97075000125915,222.84074408793822,223.42224298371002,224.06802327279001,223.7458532624878,223.46381436567754,224.18840762460604,224.00237797107548,224.53149699419737,225.4842780106701,224.669224713929,224.96822537807748,225.2933328594081,225.1929437047802,225.92999434052035,225.42615321138874,225.3332037725486,226.02296854695305,226.71060799714178,226.70823225192726,226.73231468442827,227.45150153711438,227.69345599785447,228.34080151375383,228.93347626551986,228.05785233573988,228.01778469793499,228.6127516827546,228.2025312469341,228.53120571933687,227.88538066716865,228.2503109658137,228.8952915193513,228.9718431942165,229.27942158374935,229.12384653044865,229.71922959992662,230.50429722247645,231.47148892935365,231.29327112575993,230.96519763814285,230.34858357487246,230.72112449631095,230.81958176987246,231.5297060548328,232.2548385229893,232.22856045281515,231.78776915045455,231.76606725621969,232.25173319410533,232.7888365793042,233.5807417021133,232.85111012030393,232.45188319077715,232.68995938729495,232.92777701327577,231.95819125697017,230.99971387302503,231.59290931327268,232.53595740441233,231.78875857545063,231.36813462991267,231.15823311405256,230.2052537575364,229.34051952976733,230.1199082979001,230.93646956887096,231.65378542244434,232.00775670073926,232.78864522883669,232.32934015709907,232.7695572031662,231.8806991223246,230.95738976448774,231.1593590262346,231.54210737301037,231.66549846017733,232.05090362159535,231.31002275040373,231.68807222601026,231.73940528184175,232.4668918098323,232.4041404868476,232.24319649115205,231.83005595766008,231.79803816089407,231.71014511212707,232.1110759289004,233.00703995209187,232.9064324251376,232.13094990700483,231.66642049793154,232.5747972112149,233.49786419747397,233.67602240061387,233.45414991583675,232.71506766183302,232.75102844368666,232.4055618843995,232.40017368737608,233.01870248140767,232.4742277241312,231.88258105423301,231.9847067045048,231.07449407875538,230.7540421001613,230.87844258360565,230.75932631921023,230.58164357068017,230.15490600001067,230.0132709397003,230.54164359532297,230.65170033974573,230.5493606440723,230.27974411472678,229.79412745730951,229.39622224727646,228.83964402135462,228.72963801398873,229.34218812407926,228.7775138099678,227.94199784006923,228.20584218250588,227.348987005651,226.65543271321803,227.32773299515247,226.80351059697568,225.8407148970291,226.76040040468797,227.51974234869704,228.50432297307998,227.66838508332148,227.65035758865997,226.67428205534816,226.08314636768773,226.26892131846398,227.17528187017888,227.4417511653155,227.68844942795113,227.5517043657601,227.75240520946681,227.8751315656118,226.94203313672915,227.43511208053678,227.01958761597052,227.77653704816476,228.2102364525199,227.5636521372944,226.6820162674412,227.00749847339466,227.1240563946776,227.35972908465192,226.87554218620062,226.07856166595593,226.9064381388016,227.69391923211515,226.8931660167873,227.6836570505984,228.56148126581684,227.57608892815188,227.49183059111238,227.55928827123716,227.68204791890457,227.02880457881838,226.07422061357647,226.63723644940183,227.24436056567356,227.67713889991865,227.88961211778224,228.7655707653612,229.73398513020948,229.35578804509714,228.83024256071076,228.5471656480804,228.8676537699066,228.3730314108543,228.28719644155353,228.69373964797705,229.49548750463873,228.86316354898736,228.73783731693402,227.74099782761186,228.3048233082518,229.27369361557066,228.7605011262931,228.24966648500413,228.72483913879842,229.4021596815437,229.29272182891145,229.32561900326982,229.6263357149437,229.18155832588673,229.80250311410055,230.3794889585115,230.8669891017489,230.25754749029875,230.23197396984324,231.1550972755067,231.84751278534532,232.51549840113148,233.25115819042549,233.0916098342277,233.19077410409227,233.53791744122282,233.45134576037526,232.84451634949073,232.02953981561586,232.8013439560309,233.54895614320412,234.3723101373762,233.58829016052186,232.75477227335796,231.94835460651666,232.4740472282283,233.43742327112705,234.4111853716895,233.8904429115355,233.69732786994427,234.56484921928495,234.79643540969118,235.02310945978388,235.13816467113793,234.35654763225466,234.79965244838968,235.5682936650701,235.45551450643688,234.7811577259563,235.4031314193271,235.8219075552188,235.47011114284396,236.1431170972064,236.8121668822132,236.35460130497813,236.66683316556737,237.11321636196226,238.041929198429,238.3753520064056,238.41952935233712,239.01968205859885,239.069229665678,238.10278617590666,239.0485579771921,238.65100535238162,239.45367779117078,239.14327594544739,239.20272884191945,238.9554421105422,238.94673882005736,238.34810929372907,239.0838420810178,238.2646416798234,238.660174515564,238.05994865018874,238.61670140270144,237.78729721624404,237.55717852013186,237.2179437042214,237.21621623868123,236.47021925123408,236.20050215022638,236.00035358406603,236.73795753484592,235.91219032136723,236.28202311508358,236.84315514797345,237.7019143467769,237.89839723380283,237.94951253477484,237.57306596590206,237.14329360844567,237.16556979669258,237.78974177269265,237.03251847904176,236.6996969874017,237.2274330132641,237.7804194483906,237.23636778444052,236.99624991230667,237.31939682457596,237.0121265631169,237.72319650417194,236.8077721274458,237.0566612626426,237.67089896509424,237.09092421410605,237.93348204856738,236.98402115190402,236.4501637192443,236.95540036261082,237.56920719938353,237.9330426189117,238.2429697639309,238.54882434988394,238.30613438552245,238.9011522862129,238.71027918346226,238.8424514620565,239.19784244848415,238.6647198293358,238.81941854581237,238.73063470423222,237.96898106951267,238.07356237852946,237.59467358561233,238.09822630044073,237.55851034075022,238.1016722205095,238.19289612956345,238.10282938927412,238.25042517110705,237.30376830184832,236.72012156201527,237.0777576174587,237.70145907858387,237.5008231489919,238.35679215425625,238.71849290840328,239.2725331275724,240.1871983553283,241.09117712872103,240.5398298315704,241.45426107151434,240.75197669724002,240.53546023648232,239.71409128513187,239.65352428797632,238.75728352507576,238.4596286304295,238.88257466023788,238.32357184123248,238.76907265977934,238.37377945380285,239.28661012742668,239.75976459961385,239.73646787879989,239.84259161399677,239.85291788121685,239.31300416123122,239.89352448517457,240.37918154895306,240.08206594223157,240.6225023069419,241.55772034730762,241.09943356737494,241.98459518281743,241.290895213373,240.7847705008462,239.98169217072427,240.78539259824902,241.44680036976933,242.2677106685005,243.15998152131215,243.4772863658145,244.0906878230162,244.01313167391345,243.8987113260664,243.77341868635267,243.43147295201197,243.77997495699674,243.48753102030605,242.7930226130411,242.67933084443212,242.07944721821696,241.62185058742762,241.66486844141036,240.83709495933726,241.02161734830588,240.715225324966,241.33200579928234,240.54919141950086,241.38978196913376,241.23163835145533,242.1755136884749,242.4632039819844,242.19786456599832,242.4173452500254,242.7281935121864,242.59567602723837,243.09089062316343,243.57399115292355,244.14832915272564,244.0519277290441,244.20603549201041,243.51340288016945,244.2671344676055,244.72472480451688,243.8956764601171,244.03386451490223,244.33017792599276,244.50482949754223,243.60318910656497,243.30779826175421,243.37659861985594,243.25031022215262,243.01123309647664,243.96887194830924,243.93352604005486,243.84481448028237,243.4331364412792,243.13350921776146,242.71914286212996,242.37432477250695,242.34331768751144,243.32535066036507,243.92741677165031,243.6274313624017,243.14618080155924,242.81943084811792,242.22468352736905,241.97394121252,241.441984991543,241.21932972967625,241.68367555830628,240.86726797232404,240.193251025863,239.95053439727053,240.2978193871677,239.48782282834873,239.82579456502572,239.96563636511564,239.23866631602868,238.4488464887254,239.08377019688487,239.29993805801496,240.1018619593233,240.58756599994376,239.59267802210525,239.61567907361314,239.20616138353944,239.9891667687334,239.67202190915123,238.97146556619555,238.80566944088787,237.86287532327697,237.79294651327655,238.63618751475587,237.8609909885563,236.88446621922776,236.1012899177149,235.26747852750123,235.6218895711936,236.45716239139438,236.74464927706867,236.31945309462026,235.5823137369007,235.35431244922802,234.9489036113955,235.04972011921927,235.44364072103053,235.5124583025463,236.39292288199067,235.9291254421696,236.74767500488088,235.77463010931388,235.53414214542136,236.28527946397662,236.4576676832512,236.3229057257995,237.31212643394247,237.88480771705508,238.2588543454185,237.97001366177574,238.5577731267549,238.3341266787611,238.69103971030563,237.83819068782032,238.11815213691443,238.4311217679642,238.75899826781824,238.85401132376865,239.22034918889403,239.56558976555243,240.0992338429205,240.6185492114164,240.23032505251467,240.77138873236254,240.39908207766712,240.69453768152744,241.6798155354336,241.46570989955217,241.16794018400833,242.03128074854612,241.96288727549836,241.8143399702385,241.70322729740292,241.44093776168302,241.6079277624376,242.28269459307194,241.79656470706686,242.00206024432555,241.62019060971215,242.40142808994278,242.23343721590936,241.78856630343944,240.90386401768774,241.58148849895224,241.41608758969232,240.60966942319646,239.96705998806283,239.76566350925714,240.689436505083,240.10489625437185,240.59745740238577,240.52269438747317,239.56394611718133,238.69339370541275,238.1072838427499,238.38975081546232,239.0569074214436,239.1651268331334,239.7471399437636,239.2637536022812,239.50491293519735,238.7540736994706,238.29541541496292,238.78570965863764,238.43609183188528,238.43571032211185,238.40826567914337,237.7963477508165,238.05307205067948,237.8061673445627,237.20817034319043,236.722260679584,235.88585015712306,235.24311362486333,234.72736614756286,235.09218893386424,234.44517345773056,234.32646085508168,234.28421696461737,234.78194183995947,233.79639430809766,234.16383976582438,233.23890145868063,232.7300508217886,233.52965422021225,234.15835093474016,234.35614306898788,235.28345507988706,235.2094635888934,234.8401077245362,235.4128780332394,234.91326863551512,234.51106340670958,234.2151072830893,234.3350376971066,234.65060280263424,234.72969092661515,234.76805694866925,233.96712367609143,233.26986479898915,232.91328037623316,232.25270480429754,231.66530995303765,231.40604736516252,230.95721336826682,230.7569712512195,231.29220383474603,231.18590434035286,230.33854475896806,230.38007556693628,231.08332013431937,230.84542171936482,231.54367396468297,232.02969598723575,231.66419321810827,230.76603827159852,230.48912913165987,230.21525236638263,230.7746324785985,231.5219561145641,232.46638371236622,231.63828808022663,231.5928278081119,231.99830075725913,232.98263839818537,233.65099427569658,233.8970095217228,233.08471002522856,233.86331712361425,234.26159726502374,233.68543423665687,232.99530992284417,233.91124454140663,233.3166672680527,232.52140407590196,233.24275611247867,233.43680884269997,233.21830436075106,232.99803963769227,233.5088436882943,233.0268923714757,232.41015313845128,231.85462804464623,231.15036446368322,230.95159390894696,231.0243236985989,230.4759733285755,230.91319228475913,230.13213098794222,230.26742262300104,229.77628392912447,229.02077442454174,228.26625053910539,227.6064228755422,228.37271689996123,228.61737171839923,227.98314690450206,228.61458719847724,228.70326970657334,228.79200425790623,228.02934191422537,228.0857971990481,227.90070834802464,228.30309165269136,228.48527568997815,228.1046801568009,227.49707810301334,226.87016510916874,225.87427037395537,226.6297039319761,226.6657134257257,226.0900877271779,226.78698297962546,226.23626352706924,226.8207041886635,227.8021471966058,227.127349617891,227.57761147757992,227.93216109415516,228.0748942354694,227.43453404400498,227.25416015880182,227.88752179639414,228.4813188733533,227.62831476377323,227.4193505924195,227.0717491763644,226.86111910408363,226.0261109652929,226.14266375871375,225.4310086905025,226.28968674084172,227.23486561933532,226.86958164349198,226.1232152446173,225.3712013992481,226.32590137654915,226.39102697605267,225.6212710798718,226.47552742389962,225.58202804345638,226.28954749321565,226.0744441729039,225.11045149853453,225.0837114281021,224.11178779788315,224.11030624900013,224.55226027220488,225.22290980210528,225.45807824470103,226.01246104761958,226.69388377852738,226.85194518230855,227.43251806451008,227.7328734002076,228.6878309729509,228.3546218224801,227.56044366955757,227.40210334630683,227.88737921463326,228.05780108319595,228.55700211646035,229.19778700824827,229.54302865359932,230.27894698642194,230.76944553665817,230.30850643431768,229.89149783039466,229.29638968780637,228.35406295675784,228.53359670052305,228.72923604073003,228.60957204550505,229.3325006449595,229.2329317308031,229.30414286628366,229.02694400120527,229.6794985961169,230.3009326052852,230.85889792675152,231.25845528533682,231.54490453470498,231.87305990885943,232.563447361812,232.94238294567913,232.2385842925869,232.73586335312575,232.96364786941558,233.17043118877336,233.46944995736703,233.41425217082724,232.43515647016466,231.62201395537704,232.12551560020074,231.14487576158717,231.03043044917285,231.46126696188003,231.69003405654803,232.37334525724873,233.0189057830721,232.35225875023752,231.35671450011432,230.9356250790879,230.3256508540362,230.58706453442574,229.9436343391426,229.470247276593,229.81566896755248,230.25938042113557,229.31106821866706,228.31241757050157,227.3738141846843,227.60942328022793,227.4857617393136,227.945952326525,227.89871337544173,228.10482713533565,227.539633306209,226.9921198724769,226.19424876570702,226.71319672837853,227.61839268170297,228.07101248949766,227.9337727818638,227.60805040737614,226.79078420903534,226.5426421519369,225.8057470889762,226.58516094414517,227.08653737278655,227.82667624251917,228.65768746752292,228.3976122615859,228.98052772833034,229.3629222009331,230.1598593131639,229.58830352546647,229.92058849148452,230.64050374180079,230.90574612887576,230.85008669411764,231.57836257852614,231.16425732523203,231.36776588764042,232.1922521740198,232.6588351833634,232.26651967177168,232.50222300551832,232.63683153269812,232.82838762644678,233.27731269272044,233.56690043304116,232.83680231589824,232.958702809643,232.02375148423016,232.558689231053,231.61726211942732,231.27611109428108,230.9374615214765,231.19911739369854,231.84049654798582,231.1719918102026,231.9134381134063,232.57774026552215,233.47833755146712,234.36223049275577,235.14025496924296,234.27972140768543,234.88053301069885,234.019503780175,234.36671750666574,234.47993067186326,234.67687341105193,235.21798711176962,235.335912251845,235.17988079926,235.7330219997093,235.3081533149816,235.51777948392555,235.92862918740138,235.93411848228425,235.21383561007679,235.78735470259562,235.0464605842717,235.09370417380705,234.3248962815851,234.36980713251978,234.52682063076645,234.30155528895557,233.43316114135087,232.71964613255113,233.12212479906157,234.07504326011986,234.8998563690111,235.8993772235699,235.73785260645673,236.08332793042064,236.54402201157063,236.83894027723,237.384527342394,237.7893757140264,237.76365963742137,238.5906430608593,239.36372193228453,238.62915759067982,237.66334150871262,237.5082979341969,236.9116722457111,236.27674965932965,236.78513412782922,237.45373803656548,238.34880879474804,238.4730305466801,237.59776046592742,237.58289720211178,236.59058565227315,236.56708527635783,236.64582847571,237.02061360143125,236.8448778563179,236.76234268210828,236.64364217408001,236.75027364399284,235.91112231090665,236.76765137491748,236.88303907960653,236.96377029269934,236.0162284602411,236.843579411041,236.84156190697104,236.1187380119227,235.18158596521243,234.79702720511705,235.67298959149048,235.14645406557247,235.0444311061874,234.26988405920565,234.4453821075149,234.81608232622966,235.20746300648898,235.03650882514194,235.9722111695446,235.9647978921421,235.35389877995476,234.80604694969952,234.2473140596412,235.03164646495134,234.91780952643603,235.4545553480275,235.71670112293214,236.12165600061417,236.7244233880192,237.16364795528352,238.1295297970064,237.13378347782418,237.8397976262495,237.17470733309165,236.21404949435964,236.40512016508728,236.44235368911177,235.45746268937364,234.74216171493754,235.0296868411824,234.39494919218123,234.74082295177504,235.36691923812032,235.79588787443936,235.74630694836378,235.50936263194308,235.31243836181238,236.11374580906704,236.7350201117806,236.4001295804046,236.62256838427857,236.01684403512627,236.25930485548452,235.48415619973093,236.37670411448926,236.61658518482,237.58761137910187,237.0534676099196,236.49544543679804,237.18538199272007,236.89211650146171,237.52348322980106,237.66699027083814,236.71837259130552,236.5885964408517,235.94073695642874,236.30158922309056,235.92937955399975,235.13575408840552,235.1911433483474,234.80102991266176,234.1642523878254,233.92805574508384,233.15416396968067,232.46973320748657,231.61698653176427,231.10873730713502,231.55511377938092,231.92816746188328,231.85514357266948,231.93085216498002,232.84470381774008,231.92128723533824,231.8881035312079,231.71620769426227,231.86137017095461,232.17774400347844,231.63697490049526,231.34322591638193,232.26346839079633,231.56865513138473,232.34065055614337,231.8433656282723,231.6031546406448,230.97184466011822,230.931788736023,230.4170912518166,229.86891016364098,230.76168807130307,230.28616513404995,230.46373107796535,230.48603582428768,229.727822129149,228.85653993021697,228.49740633135661,229.0149622382596,228.0361287575215,228.21536058187485,228.83255750406533,228.0490232682787,228.78716295911,229.5974161508493,229.09822546737269,229.66000479180366,229.74106656527147,230.05054776510224,229.1785800019279,229.70729760825634,230.11369154648855,230.9303184254095,230.50296674808487,231.0680571263656,231.34563997481018,231.64401856577024,231.92735945386812,231.14805819280446,230.2500045974739,229.5168484793976,228.6337741687894,228.23675210494548,229.1228193398565,229.68155364738777,229.76946572586894,229.5227348753251,229.81671476503834,230.742203080561,230.37405713507906,230.7086015129462,229.7607803675346,229.67773943394423,230.00280752964318,229.1664244174026,228.57128199050203,228.71821360848844,229.16423531388864,229.61859986232594,230.39949226705357,230.43222449813038,230.64722125139087,231.10258848872036,230.77403844054788,231.26350619504228,230.441765722353,229.5135689447634,228.94772251090035,229.6414732071571,230.5603537382558,230.2693315516226,230.02976360637695,230.09521844657138,230.3565873396583,230.33357862615958,229.35441290261224,228.7500650798902,229.5372215132229,230.46134453592822,230.35065388632938,229.74605361325666,229.362883485388,229.58072541747242,229.5182660059072,229.82188348425552,230.69910767115653,230.1981115406379,230.46777352504432,230.86337446188554,230.4087830730714,229.6903489260003,229.3729452015832,229.2639133380726,230.14736459357664,230.11700070649385,230.74797116732225,230.4652850823477,229.71043195854872,229.25362005177885,228.75047203851864,229.0503408582881,229.78291083173826,230.76144015835598,229.98790113208815,230.69016903452575,230.27806805074215,230.930943030864,230.3449385939166,229.59204529691488,229.74778189929202,230.3206275999546,230.38568802177906,231.26746523752809,231.5817452808842,231.25216175988317,231.508746300824,231.83250240795314,232.51834956603125,232.31616192823276,233.2622910104692,233.00776682747528,233.84439290408045,234.53436247212812,234.51594806695357,233.8908468396403,233.91970294946805,234.4772924799472,233.53679125523195,234.05410021496937,233.56252127001062,234.3635020260699,233.55719128530473,233.02615415723994,233.34450756432489,233.76937913987786,233.52701304713264,233.60420991573483,233.28680953662843,233.33506584679708,232.69064260087907,232.65563890710473,232.04671772522852,232.4179879273288,232.2051890026778,231.80999614531174,231.38645342504606,231.98125041788444,232.30804175231606,231.42415083991364,230.67681525740772,229.88824667176232,229.93486602744088,229.62618115963414,229.78645925363526,230.59674976300448,229.8873728364706,230.58073308551684,230.33320682495832,229.895651768893,230.81036114366725,231.55869654146954,232.34361363295466,232.26035953639075,232.6955713746138,233.30286342464387,232.78530987072736,232.60874441079795,233.19906657375395,233.67211445281282,233.86205067299306,233.64914066391066,234.10456095263362,234.06036717165262,233.6481203478761,232.73295088578016,233.72886954806745,233.5334033127874,233.31003377074376,233.36311011994258,233.8788085905835,234.3873943327926,234.63279800163582,234.92045234469697,235.65244368417189,236.19367675762624,237.09642577869818,236.40560485841706,237.25158290099353,237.06283301580697,237.23266776278615,237.9813257404603,238.09186995401978,238.26332482183352,239.0723020345904,239.52514587901533,239.03949548164383,238.64589544013143,239.15901729790494,238.29634789004922,237.44840440200642,238.19668143382296,237.5592495193705,238.18841064395383,237.30529701476917,238.1770362094976,237.38861203938723,237.01592978322878,237.8005041014403,237.1610533152707,236.58237197482958,237.0854503819719,237.38769011572003,238.29462554352358,238.8441006639041,239.38245578948408,239.74306798027828,239.8897253125906,239.7035229811445,240.35184300597757,239.35597261646762,238.40258799027652,237.9205224714242,238.69606147287413,238.3424170310609,237.3871563510038,237.50586638133973,236.82065542740747,237.50043584685773,237.1864622514695,236.9490657960996,235.97264430532232,235.3556307577528,235.17987706325948,234.3492171196267,234.61295948084444,234.05685173952952,234.30233705695719,233.9330988372676,234.69730127137154,234.9672940876335,235.80052681453526,234.86423137178645,235.29579415963963,235.22004718706012,236.05045272549614,236.3936535930261,235.64501281874254,236.35600884538144,235.53340010391548,235.97993036266416,236.03602979937568,236.0091459248215,235.2962667713873,235.197774998378,235.0245533902198,234.69043972948566,234.75601509120315,233.93202026886865,233.32570250378922,233.94990488747135,233.9372259536758,233.15481286821887,233.2503885552287,232.53212661854923,232.83936450630426,233.13761010114104,232.50318741379306,233.4224365958944,232.67631930438802,232.8726836699061,232.09334207931533,232.277077822946,232.39800892211497,232.7349473182112,232.6298037832603,231.861364827957,232.15515505103394,232.32268891017884,231.7525014099665,231.65018715942279,231.81958090048283,232.08168129157275,231.9412179896608,232.07507371157408,232.48454969283193,232.89330991730094,232.42715426627547,231.62024863017723,231.3925859341398,230.96387996990234,231.325130591169,231.43278585094959,232.33610004466027,232.97320010419935,233.42252111108974,233.97975194081664,234.69597466895357,233.94636973831803,234.80586996721104,234.8000145405531,235.31899350928143,236.1761636948213,236.60803784895688,236.5477183717303,235.63476849766448,236.42715056380257,236.04400620702654,236.95007958915085,237.27498808922246,237.47291423985735,236.50312871206552,236.40718838758767,236.61236088024452,235.8132297694683,235.10511231282726,234.66787961591035,234.80073254788294,233.8736282507889,233.17548550199717,232.82722988864407,233.11112506920472,233.92934109689668,234.90435128100216,235.59212828613818,235.18003714457154,234.72618324588984,234.53377919923514,233.74390435917303,233.4165794053115,233.7750138049014,232.91490164166316,232.1832748716697,231.4924825350754,230.55828369082883,231.4495370243676,232.42795454524457,232.9964882316999,232.53796768607572,232.8702621362172,233.6367785562761,234.40346682304516,233.5272030038759,233.14768862118945,232.61680952366441,231.94764883909374,232.8253926485777,232.05129073793069,232.28157460689545,232.85111680673435,231.92141262907535,231.20946937194094,230.31598523864523,231.30717900115997,231.20162204513326,230.990521740634,231.16840884787962,231.7132113701664,231.47182839130983,230.84011691669002,230.34258447727188,231.28794738370925,232.0134524521418,231.260828838218,230.4290377618745,230.64573275623843,231.61845452524722,231.77024162886664,232.01334965182468,232.52051720302552,232.29438972612843,231.8075469378382,231.36320031667128,231.28224417800084,230.71116207307205,229.94260681327432,229.72547144256532,229.25876835826784,228.59792783344164,229.0754429330118,228.78486314369366,228.46767772408202,228.32089179428294,228.02503658644855,228.43311361782253,228.97546759061515,229.20234995195642,228.527155067306,229.1150730168447,228.1449823398143,227.84762033866718,228.11385201150551,228.75592956878245,229.475529815536,229.0779148871079,229.33689637901261,229.90109339682385,229.13685962138698,228.5920052737929,227.84373759292066,227.71011501876637,226.75754813337699,227.4378296933137,227.58952281344682,226.79976422339678,226.59489038866013,227.35905584087595,227.25168270152062,227.517074494157,227.98920492827892,227.10608573863283,227.21732888370752,227.04095225362107,227.59376142267138,228.31367084011436,227.3167922864668,227.48306748829782,226.71270372439176,226.11322476901114,226.8616475421004,227.68453084258363,227.57671209424734,227.59817821811885,226.72171548893675,225.89643305633217,225.38280684826896,225.7740109586157,226.09266615612432,225.5883715711534,225.39021751843393,225.508886736352,226.42276913346723,226.4052005643025,227.1591931837611,226.37116439826787,225.90509497234598,225.80420936085284,225.41284247068688,225.91638643154874,225.42234001029283,225.31026375759393,225.4571936763823,225.84635011525825,225.0604018107988,224.55869788024575,224.09320566477254,224.17640615720302,223.941789269913,224.80713001685217,224.55309553490952,223.83560644555837,223.2758088717237,222.55084322579205,223.52064184984192,223.39637227356434,223.45454399473965,224.35070493351668,224.91807473869994,224.16468310309574,223.47278537834063,222.94248964544386,222.47522950684652,221.8859053729102,221.9224181449972,222.5101371789351,222.76977906748652,223.32410865370184,222.84426213614643,222.22332894662395,222.02709583891556,222.2221484547481,223.22181006660685,223.3228103639558,222.8735843989998,223.61242002155632,223.33965641306713,224.1389478156343,224.26344448840246,224.5551777803339,225.02607590006664,224.52707808511332,224.19227842101827,224.57165132369846,225.24409407237545,224.8008695198223,225.31219174386933,226.24077231716365,226.44868879625574,225.505971331615,224.6450888728723,225.17197513300925,225.16674540238455,225.26947993366048,225.95084239263088,226.27100264141336,225.4444031016901,226.00801798561588,226.7004923466593,226.80049736006185,227.72714803321287,227.751164724119,227.2474869079888,226.70529459230602,227.52367984084412,228.44219390442595,228.35727376909927,228.68571120640263,227.81060887454078,227.03753127763048,227.32940251892433,227.77710378915071,226.8803636673838,226.02198383584619,226.340422260575,227.23442258359864,227.0142934131436,226.83746096491814,227.76170858973637,228.56631981488317,228.64095913851634,227.8576050940901,227.86008033249527,228.3351877615787,228.06754169985652,228.42593879718333,228.03280723188072,228.2520068269223,229.1277186064981,229.39922920055687,229.27320858603343,229.40585386846215,229.461802048143,228.94247566256672,228.83224932849407,229.4221093687229,229.3752428451553,229.9614086104557,230.1862421380356,229.7230080156587,229.60886104544625,229.3429681463167,228.81626704754308,228.6020603114739,228.19751923391595,228.19283233955503,228.50469640642405,227.7136290697381,227.66288971994072,227.9389529894106,227.63054748252034,227.0705730044283,227.02497939532623,226.17730253515765,225.3351889909245,226.01735186763108,225.7454419126734,225.59729898627847,226.23755253432319,227.12494182493538,226.3803136558272,226.77917349431664,225.85685549722984,225.1039046207443,225.9127630922012,225.25977039383724,225.56742606963962,225.4882691539824,226.36809779517353,225.43443210981786,226.11465312633663,226.1570067978464,225.80875241197646,225.69201404927298,225.61343543371186,226.60558238765225,226.26475485041738,225.4499910697341,225.59472901234403,226.43940593628213,225.94282265752554,225.21852612495422,224.92750964174047,225.4336245697923,225.85846490273252,226.00523723615333,225.72605611942708,225.80102004064247,225.78531558951363,226.5618548532948,226.025136789307,225.21991826035082,224.98868392361328,224.95987828169018,224.02868566755205,224.57426780555397,224.29398299055174,223.42513896524906,222.67770456476137,222.0346769662574,221.98457129346207,222.5320219937712,221.903847028967,221.82117848703638,222.27940857131034,221.88371698278934,221.06470560887828,221.5851052873768,221.85516004171222,222.1705441311933,222.64043194940314,223.3754618279636,223.1961848763749,223.11674445541576,222.54317937837914,221.886480207555,221.547518491745,221.33900020690635,221.1071721506305,220.90778812626377,220.48532995115966,219.55273636477068,219.3697059378028,220.08341470267624,220.61503466498107,220.4526992952451,221.32770485663787,222.30864491220564,222.138097750023,222.30379120726138,222.16757725924253,221.68073129560798,221.47766504483297,220.48115729540586,220.45075405202806,220.88434974802658,220.54107699217275,220.5573606067337,221.3437463673763,221.2939296681434,221.58841909468174,221.97042999323457,222.60944358585402,222.0589182684198,221.83910637302324,220.9674349478446,220.84340414498,220.03216381650418,219.39420346403494,219.2568921232596,218.66092857858166,218.63242061529309,217.77175405807793,218.3409426487051,217.3973650583066,217.23193942476064,217.57254191720858,217.8966052159667,217.85028896760195,217.0038760798052,216.33822010457516,216.04574445588514,216.78310642531142,217.32026268308982,216.72320149699226,216.3303378126584,217.10293015930802,216.80620319303125,217.05940213706344,217.5245910892263,218.45228214468807,218.67118577519432,218.5285387551412,218.47794998064637,217.87503241701052,217.24237359780818,217.1768323504366,217.05404023639858,217.11919620679691,217.46917127631605,216.66557724261656,215.73132044402882,215.0575429573655,215.36942267604172,214.92112318845466,215.26720795733854,216.091504979413,216.32352835405618,216.85774864582345,216.23461654409766,216.41217600973323,216.28091037645936,216.82904081838205,217.05115677136928,216.578173302114,216.05820178054273,216.25392757169902,216.83582947403193,216.11721852514893,215.49951197905466,215.9409959949553,215.99838601239026,216.3238221174106,216.7900271350518,216.66459850780666,217.2637551650405,217.0797313861549,216.28984601562843,217.16736011998728,217.138351442758,217.96296799415722,218.8730139741674,219.29613573476672,220.16697623906657,219.52281444100663,218.8805640344508,218.58220400987193,218.06017059879377,218.83915431192145,219.19008138449863,219.80307439016178,219.69965678732842,219.78895116550848,220.38743206951767,221.24175558565184,221.4369657114148,220.941100936383,220.5389555040747,219.91102414857596,220.033790637739,219.10307105444372,219.4353210553527,220.02764204936102,219.20246403850615,218.6530937999487,219.3811209932901,219.6052698083222,220.390906478744,219.80927860597149,218.9658779189922,218.79901611665264,217.9071295671165,217.98308833502233,217.58305593719706,218.20131876971573,218.3835461246781,218.19997464120388,219.1321333469823,219.94741573976353,219.69170198310167,219.1670618490316,219.92726168734953,219.320383020211,219.2374256295152,219.28329211007804,220.17205395456403,219.4037169367075,220.13719137758017,220.31157613592222,221.2131363544613,221.6804036265239,222.10018304130062,222.38140414981171,221.54117522388697,222.15745302848518,222.5077321329154,222.74036711174995,223.24454503227025,224.15444991365075,224.6608581817709,225.12846997519955,225.7601839872077,226.64943203050643,226.00746547058225,225.05085181584582,225.34757537255064,226.20195445325226,225.34680128423497,226.34378468478099,226.5562613136135,225.73691903054714,225.55847264965996,225.8115882575512,225.9395834361203,226.62989271525294,227.10625815112144,227.5045543317683,228.0360330133699,228.15777495270595,228.51691106287763,229.01065368251875,229.04730670480058,229.97491911565885,230.79493680456653,230.49802719056606,231.3377646994777,231.28135069133714,230.76179787050933,231.19132935861126,230.27848865510896,230.5818649828434,230.25149488076568,230.62842896394432,231.53626736812294,232.25715794367716,233.1503573632799,233.65414248593152,233.41398540139198,232.68609913950786,232.63152511278167,233.3285002480261,233.14719795249403,232.19905955065042,232.72069084085524,232.08107418520376,231.9591645966284,232.26379425777122,233.13431093702093,232.87011495418847,232.84275411255658,232.07499583112076,231.17778782453388,232.12775461142883,232.4086011024192,233.3734954702668,233.86108718300238,233.93096762662753,233.06144700525329,233.36721337074414,233.83150616893545,233.68033426860347,233.22104760305956,233.36160588636994,232.98451955569908,232.29966905107722,231.8524697581306,231.76799045316875,231.4285764861852,231.96882899245247,232.63301203865558,231.77596574509516,231.39579548174515,231.53421627450734,231.8513346845284,232.16581891058013,232.56481035845354,232.4769669380039,233.06504805525765,233.5247242306359,234.25052143959329,234.11824069870636,233.4991246042773,234.3632858642377,235.30525210825726,236.20329758292064,236.99858140666038,237.12825201451778,237.74712152406573,238.55624274164438,239.08495750417933,239.52200163621455,239.83048724476248,239.03011714853346,239.86955782212317,240.69115246785805,240.64768349425867,241.3419338320382,240.50833059940487,240.81753787677735,241.72587633086368,241.48680464085191,241.03617124678567,241.12127523776144,241.76137570105493,242.46542584104463,242.40672555053607,241.64414823474362,240.99511352181435,241.2092020525597,240.3159900670871,239.3940982692875,239.97991561470553,239.34663787623867,238.87012721784413,238.23196367826313,238.3911560769193,238.30108426650986,237.62035673856735,237.40280797611922,237.0283690127544,236.86578410305083,235.91973781073466,236.69139998685569,237.58666142029688,238.5070745232515,238.42535239411518,238.9656783095561,239.3762480476871,240.23250962840393,241.06340287066996,241.45052971458063,240.5278147244826,241.5274459561333,242.22608098667115,243.04832713492215,243.37221265770495,242.5955298426561,242.15561513788998,242.3467343817465,241.39313401049003,240.78379221633077,239.99431919166818,240.90828430326656,241.71503677871078,242.30641680164263,241.7165244370699,242.4334164513275,242.06006629345939,242.99654129333794,242.4121569604613,241.62494220770895,241.99307890003547,241.82352319313213,241.45186432357877,241.14351111184806,241.6501750871539,241.00690301461145,240.79643388045952,240.8530042981729,241.35252901772037,241.94570888532326,242.7646070867777,243.35869649099186,244.2986196456477,244.3551449459046,243.77336998423561,244.45901103084907,245.24199344636872,246.16848863987252,245.30198912415653,245.46288401260972,246.21394561370835,245.5098861446604,244.99574116896838,244.4642068692483,245.10261447913945,245.74394370382652,246.40062786638737,247.02988117933273,246.50631464272738,245.5627310089767,245.19183374615386,244.52184984553605,243.98605137178674,244.07342331204563,244.7458631549962,244.98009226145223,245.52302755834535,246.04093643045053,245.69092570384964,245.75140797067434,245.01860228879377,244.93990167137235,245.24091018922627,246.03186957351863,245.95702258124948,245.18064591567963,245.46812331164256,246.08466223767027,246.41192233376205,246.7723472621292,246.47720367275178,246.63514620391652,246.26097157690674,246.81907151639462,247.6861391016282,247.3535431837663,246.78960156766698,247.42911404604092,247.55682553118095,248.37672254024073,248.24273644853383,249.00870508840308,248.4139644098468,249.27887618215755,250.08085064264014,250.6881786584854,250.5872589191422,251.29419451812282,250.83518434874713,251.14529611961916,251.05225927149877,251.52204022416845,250.92388160899282,250.1818283800967,249.36966965394095,248.9803027017042,249.28092205384746,248.74633058113977,248.4597570556216,249.3504434786737,248.6243481831625,248.56477659847587,249.1978608756326,248.78778697224334,248.3713330081664,248.57258513569832,248.8124723895453,249.13521475438029,249.8260352090001,249.1000630077906,249.0254188599065,248.97514600260183,248.096841332037,248.88868583925068,249.7972329882905,250.70516258804128,249.88911717617884,249.642435063608,249.18973722262308,249.55268348380923,249.65974163403735,249.45368860522285,249.1335909301415,250.0182004980743,250.5503761023283,249.64475402003154,249.9888898357749,250.2948264973238,251.20963781839237,250.85835133306682,251.3700413829647,251.49262937391177,251.36774429585785,251.17495381552726,250.98977872077376,250.40198201313615,249.4822945902124,249.89271061914042,248.9998237513937,249.2762323874049,250.24124758550897,249.81900767004117,249.9285249854438,249.30196984764189,248.8483353620395,248.81684330198914,249.7478211214766,249.35322759207338,248.36173199908808,248.75453045405447,249.7023046463728,250.25022791791707,250.26368169952184,249.5133926286362,249.81482701329514,249.5933011653833,249.19291762821376,248.71571286628023,248.79004513379186,248.21368836099282,248.50731799472123,247.69176276307553,247.09029722074047,246.31690461747348,246.6046476061456,246.7761408407241,246.93926795991138,246.9254050743766,247.05369034735486,247.29180989786983,247.1100712167099,247.22221104847267,247.4742454206571,248.20212076604366,248.38822141103446,247.88170834165066,247.8742539077066,247.09529164945707,248.09333394886926,248.90600335923955,248.8775383438915,249.62883525621146,250.10111676482484,249.83921443950385,249.5782222142443,249.5086321029812,249.51261589769274,250.10318868979812,249.88559284852818,249.70792882610112,249.1856920211576,249.86984580010176,249.05268279789016,248.43821593141183,248.50486083934084,249.43072663107887,249.74255384365097,250.21529302187264,250.05731841363013,249.09122454980388,249.07162650069222,249.57732274383307,249.56397198094055,249.57635603891686,248.67856901837513,249.63446160778403,250.34663296630606,249.8626542254351,249.68124677659944,250.21516751684248,250.5478742327541,250.57496711891145,251.29061373276636,251.39361311215907,250.7659420617856,250.3034193054773,249.7684860182926,250.06170736206695,250.36920467251912,250.4984473460354,249.85025093331933,249.6891271136701,249.37914866302162,248.58718614652753,249.0086691682227,248.02659630170092,247.85340629238635,248.8105093818158,248.34514181129634,249.11601005261764,249.1986245578155,248.70005563925952,249.42154665803537,249.30691102193668,249.25211327848956,249.9189589158632,249.37416494544595,248.69778869394213,248.32974504772574,247.35499504487962,248.09295604657382,248.51413292856887,248.4699028832838,249.017507489305,249.91413868078962,250.65756870387122,251.6414443072863,250.9029467245564,250.48560396861285,250.1806565988809,250.64708474697545,250.308206288144,251.2194313709624,251.84152370784432,251.247617285233,251.3324906527996,250.85594415757805,249.92823453992605,250.11683968640864,250.91873732861131,251.55314815416932,250.99000412086025,250.34062251262367,251.11742643732578,250.76097461441532,250.80352836614475,251.17012964515015,251.97590650664642,251.6080282740295,252.18715888401493,251.92559396941215,251.01431193808094,250.2308423006907,250.43539834814146,250.870491693262,249.8940371167846,250.31328302063048,249.72368869697675,249.38764259032905,250.31748553644866,250.9677626225166,251.53901235759258,251.80118130752817,252.4786257101223,251.49263370456174,251.11376963276416,251.7313280510716,251.1031044414267,250.76052840659395,251.00470454245806,251.94929229142144,251.73760202666745,252.19025572109967,252.5256837955676,251.80227023316547,252.11455669486895,251.29133568983525,250.98766019381583,250.2706319205463,250.78918480034918,250.79157658014446,251.5151993893087,251.4262029165402,251.070411617402,252.01359479874372,251.68610437819734,251.59472398087382,252.24976680008695,252.6525576026179,252.84221240412444,252.77982903737575,252.8315228689462,251.89094071509317,251.15919437771663,251.32933671027422,251.20451181335375,250.7462844485417,251.57416360545903,251.43324997462332,251.06477890862152,250.9080968494527,251.69673345051706,251.0502443248406,251.80199861666188,251.0970022608526,250.91795956529677,250.39857084071264,250.7461169231683,251.52769868914038,252.3455069316551,251.5711232186295,252.25674691982567,251.4362032278441,250.45504773175344,250.00033684680238,250.96378317428753,250.6820777882822,250.6511273854412,250.03984695347026,249.19373800465837,248.26325856288895,248.25735887791961,249.05482407286763,248.5318011995405,247.91938439244404,248.24238320905715,247.9046864854172,247.22790910070762,248.17196676321328,247.20031390944496,247.30760646425188,247.5540509414859,247.18068936932832,247.7178051364608,247.85540661821142,248.7346549979411,248.1383869224228,248.06131724175066,247.65012184437364,247.72505930485204,248.52748449752107,247.80471591558307,247.21780287567526,247.7408796371892,246.89527208497748,246.87265735212713,246.85985219944268,247.28648333251476,247.62858908995986,246.69970563612878,246.04268079949543,247.00201033381745,246.8775296495296,246.5766243687831,246.0039980802685,245.7594574689865,245.17013524239883,244.74650436080992,244.08995423605666,244.93718485021964,243.97970874467865,243.5687929149717,243.92154608713463,243.92976973671466,244.4930386086926,244.28916264884174,244.0068326536566,243.31914160167798,244.30108837317675,244.35909641720355,244.56537838978693,245.44976718071848,244.7211758918129,245.0489933672361,244.66003070911393,243.75556570105255,244.66189635172486,244.95231612259522,244.2737768655643,243.9666211414151,244.21037126146257,244.32454360183328,243.36669119773433,243.44205786520615,243.68748611584306,243.0569769386202,243.32419664645568,242.49083310365677,243.45408434513956,243.1037700837478,243.62387957563624,244.59773537982255,243.83414304023609,244.14241708023474,244.80486060446128,245.4648202690296,246.31255627423525,246.09903342742473,246.002102275379,245.0415475210175,244.20365408062935,243.64742177026346,242.92050982033834,242.9235328468494,243.74226696323603,243.52698341337964,243.51913238456473,243.80105015961453,243.21938980184495,242.26918232580647,242.84631691174582,242.34269760921597,242.31470058253035,241.34035617671907,241.39512511249632,240.418958671391,241.12743491120636,241.3490858473815,240.43013605382293,239.73509024688974,240.50547170452774,241.32282619085163,241.3462746203877,241.63239979324862,242.4562041158788,242.01771825458854,241.1885459255427,241.88758285390213,242.4291395698674,241.92461497988552,242.40525283385068,243.14817786915228,243.70470954151824,243.69110914040357,243.93850627634674,244.85842631710693,244.9326283717528,244.43514817254618,243.511468781624,243.52066729729995,242.916341453325,242.79391044657677,242.53360812691972,241.6282475986518,240.84234728803858,241.48943218030035,240.943862083368,240.2494149832055,241.15055988216773,241.74239365942776,241.07961101224646,240.36792479921132,240.65441688196734,239.87012306321412,239.40384269924834,240.09524610778317,240.6668014456518,240.84916182700545,241.82733321096748,241.72944972617552,240.8252932713367,240.87499140715227,240.58676125714555,239.63938557449728,239.41118260333315,239.15549012320116,239.45987421786413,239.78918088926002,239.80829485179856,240.55447015771642,240.44888595491648,240.62952652713284,240.03185313520953,239.96010761987418,240.37961571849883,240.477413746994,239.57023114338517,240.10350171476603,240.89899375010282,241.16109658963978,241.84561069542542,241.09343045111746,240.5080186733976,240.52660714648664,239.59169901395217,239.4477523607202,240.22580947587267,240.2134197857231,241.09996267501265,240.42916294978932,240.54625147441402,241.04280965356156,241.2636443306692,241.65099493553862,241.090390029829,240.27198260696605,239.96277667488903,240.4374076249078,240.59955148445442,239.9690699693747,240.8589808535762,240.29462203988805,241.05810294812545,240.50132731487975,239.8210943439044,239.58509987825528,238.775656810496,238.84108877554536,238.12400690978393,237.82464569807053,238.1047304882668,238.71645842213184,238.34994049975649,238.0908983675763,237.95845743454993,238.07405830919743,237.10823113378137,238.0143500813283,238.1968670869246,238.9208012688905,239.91406920272857,240.3876269115135,241.1587172583677,240.88627193076536,240.61721835797653,240.05572243919596,240.97801559558138,240.83914626389742,240.79633391136304,241.47865164885297,241.00085533969104,241.3355901609175,242.0175919313915,242.33424277743325,242.10943759977818,242.91733279218897,243.43317310512066,243.22163700126112,243.00286429794505,243.2014673044905,242.59474276332185,242.4392615999095,241.746690150816,241.51680647442117,241.61687773885205,241.71270170947537,242.5316840079613,243.04269103286788,243.88600064627826,243.7959320335649,243.91029577096924,243.84997403202578,244.61471262713894,244.99889297550544,244.6878326642327,244.71104363026097,245.6738085160032,245.29704052163288,245.6292587048374,245.91952781239524,246.15626060962677,246.04528063116595,245.6670595682226,245.20310101332143,245.93327139457688,245.92687504924834,245.62496243370697,245.62357183918357,246.39814565517008,245.7588128154166,245.8851454462856,245.86926627764478,246.05460418993607,245.4032210414298,246.39682043436915,246.5551924626343,246.7311203549616,247.0757090128027,247.54351702099666,247.1704036113806,247.57657563267276,246.7863045022823,245.88896278990433,245.3256314075552,246.00743064749986,246.9064185284078,246.7684647431597,246.23340746480972,245.94963156618178,245.12469167495146,245.5508234500885,246.23864306788892,245.74461588962004,246.5305644609034,246.83998137246817,246.24671558570117,245.30529676098377,244.7027272148989,244.63919513858855,244.54700564406812,244.26136112445965,243.9267956968397,242.94551223982126,242.71927789691836,242.92834285320714,243.53158737765625,242.99176954478025,242.2425554948859,242.91088275890797,241.9492399408482,242.92653515888378,242.94841514574364,242.4037925763987,242.35183357214555,242.4492358691059,243.0124620925635,242.43822412192822,241.65557092241943,241.96102010039613,242.86731080664322,242.05451346654445,242.3538477877155,241.6512475744821,240.837700355798,241.26593139301986,240.85205398174003,240.94980106828734,240.87547980062664,241.49866270506755,241.1300370064564,240.626168071758,241.1052199760452,240.5699863010086,240.76420204062015,241.37382321618497,241.74320043623447,240.7873921780847,240.04434263519943,239.54766107536852,239.26781123364344,239.44832821004093,239.09328844677657,238.26128817070276,239.2480372134596,240.18516079895198,240.2691102619283,239.91902692476287,240.7093075797893,240.23598912078887,240.860428633634,240.17050517024472,239.2043421631679,239.41894912393764,239.76917145075276,239.11376893287525,239.33991852635518,239.99449127353728,240.38960044644773,240.94022911507636,241.03607386909425,240.38100938964635,241.15979480277747,241.23477526009083,241.1457585580647,241.65064803883433,241.1999434134923,241.56331729143858,241.82627536263317,241.31824735924602,242.2305291639641,241.95995435956866,242.06179196201265,241.24293975904584,241.85860025743023,241.02877325937152,241.26866426691413,240.63943583099172,241.25573048833758,240.8344957944937,239.84689677413553,240.52034515049309,241.2241959045641,240.2772166756913,240.38680622540414,240.89397701108828,241.0217449120246,240.348705526907,240.80778262671083,240.10689449729398,240.30655037704855,239.60133002698421,239.93818448483944,239.1381998625584,239.84207158675417,239.90141437808052,239.23530930140987,239.21621523192152,240.04083392675966,240.64380113082007,240.98677399707958,241.2000388703309,240.8815687452443,241.14197455719113,240.69747388316318,241.05572039308026,241.21432590205222,242.0249780206941,242.23378773406148,241.90174856083468,242.78483440354466,243.683658586815,242.85062819393352,242.0032409504056,242.47745697246864,243.3486481369473,242.93829138949513,242.71536779263988,241.76850151782855,241.5169109487906,242.02467030612752,242.01141138514504,242.88199167884886,243.32186110224575,243.77623834181577,244.20065307058394,244.486094861757,243.56514720292762,243.2873565601185,243.51890267711133,242.6941454517655,242.08919346844777,242.6601819708012,242.68080260697752,243.08361204341054,242.830432720948,242.54849502351135,241.68728291941807,242.29965359717607,242.88869293499738,242.18961129849777,241.8738954681903,242.03430030401796,242.54887514282018,242.98779904702678,242.96697439951822,242.66720165219158,242.46754466509447,242.0670619099401,241.74203006271273,242.38798773195595,242.94517391594127,242.25899934209883,242.07112360093743,241.1485176384449,240.16752453660592,239.5717081250623,239.97927127499133,239.02512251911685,238.47036728123203,238.73547379299998,239.67406206345186,238.74270160635933,238.83480978384614,239.59551583928987,240.48858446488157,240.69103938899934,240.23276546318084,239.60152935003862,240.50779105024412,239.52610641578212,238.73685563681647,238.68998396070674,239.6867691227235,239.164186835289,240.0431777848862,240.59852915583178,241.45694180810824,242.04520214395598,241.79497797926888,241.56381752435118,242.259616272524,241.36377382837236,241.27592988638207,241.84058670559898,242.1048987363465,242.88667273102328,243.19953141640872,243.86504110693932,243.92491982644424,243.88431952660903,243.40583587391302,243.31380158709362,242.86615603091195,243.36708636581898,244.26812855526805,243.9813201278448,243.00529631087556,243.37764164060354,244.1847644704394,244.45332670398057,245.0625273627229,244.55166828772053,244.77307895058766,244.6130674830638,245.22291817236692,246.06309279054403,245.85742451250553,246.38939817529172,246.96256134612486,246.26692249486223,245.29658738570288,244.94318275898695,244.09768785024062,243.58372027706355,243.8624740280211,244.29025911260396,243.7604027246125,244.24084144784138,244.87805474968627,244.62801071815193,244.44600639725104,245.15835088165477,245.1435052426532,244.67916271695867,244.92800088133663,245.80297110881656,245.5471854028292,246.35840744851157,247.19108395231888,246.6728968960233,247.6627951823175,246.7411036598496,245.80027786269784,244.814820303116,244.24204981978983,244.20382047677413,244.2921436545439,244.5981837711297,244.36969176866114,243.43481233436614,243.60641557211056,244.07852288056165,243.7569644334726,242.907544889953,242.62108331127092,242.12276677694172,242.16051211534068,241.96091479668394,241.12550542876124,240.74888268113136,241.57245595846325,241.21387727744877,241.8497021184303,241.88884158013389,241.11916699120775,241.97798384260386,241.0577531531453,241.7221264038235,241.39153269305825,241.08890190161765,241.61604836024344,240.67061814572662,240.07277959259227,240.5715191019699,240.2135074972175,240.99303277395666,241.56550740636885,240.69768107729033,241.452133087907,240.51703120628372,240.69373271102086,240.23313952423632,240.77546610031277,241.3300158465281,241.27285694051534,241.92114784335718,242.82330640684813,243.10394074069336,243.88081193342805,244.16213845741004,244.2956383265555,243.68746391497552,244.53600033186376,244.23140532663092,245.1665271203965,245.19334220793098,244.26171643054113,243.7904372047633,244.77007755311206,244.85843376023695,244.44307020353153,244.2217957940884,244.1512532667257,244.59964138641953,244.95694238133729,245.69610467506573,246.36602725926787,245.7520833699964,246.32636255770922,246.77511229971424,246.13383283372968,245.6611259370111,245.48736090073362,245.9106594468467,245.32418079767376,245.53542880015448,245.82461795769632,245.57378265913576,245.79503290727735,245.06635531084612,244.64833855675533,245.268961221911,244.66755376476794,244.9460601536557,245.72453564638272,245.67482659127563,246.31009004218504,245.67691784212366,245.15244648838416,245.17057491652668,245.48075659619644,246.2490463219583,246.22686041798443,246.75871104327962,247.17552556702867,247.43420159071684,247.67472614208236,247.10908027226105,247.68356087245047,246.71485255938023,246.41006890544668,245.8130456544459,246.597321246285,246.25378761906177,246.55803730338812,247.3938072035089,246.98660055641085,247.58721083123237,248.2191745606251,248.66683691740036,249.01898247608915,249.85960407136008,250.4220147668384,249.54298308072612,250.3758478546515,250.06449471926317,249.50593692995608,249.6607457883656,249.44303059903905,248.67953410930932,248.29155821539462,248.5967172901146,249.1742641129531,249.09380219271407,248.53186489781365,248.63480351213366,248.0328821502626,248.58998965332285,247.8169888732955,248.74913215637207,248.0412956639193,248.3963857712224,248.57974457740784,248.75421429798007,248.58772523794323,248.91487088380381,248.9339250382036,248.6407046802342,248.93910047691315,248.3293745019473,248.9519656309858,248.32823196193203,247.93349260557443,248.46179196983576,247.81308217998594,248.27989511750638,248.79401842830703,249.65054744062945,250.29227842157707,250.60872084880248,251.22317397175357,251.51834122044966,251.5099152433686,251.4433677457273,251.30518999928609,250.33751187985763,250.9676501196809,251.0594210792333,251.34041693992913,252.1304123327136,252.37932971585542,252.31793528003618,252.93437346303836,252.62418366223574,253.4474678132683,254.13803977519274,254.8170606070198,254.60802674852312,254.6061353450641,255.13958816044033,254.73868293734267,255.34290889836848,255.74258183734491,255.69431155035272,255.91586467670277,255.9281220161356,254.95017879782245,254.00564123457298,254.1046167067252,254.03349818382412,253.37855307012796,254.0782371973619,254.17734474455938,253.50885868957266,254.32434767344967,254.54818680789322,255.38576840050519,256.057842892129,256.64261156041175,257.02199890324846,257.85257895849645,258.52973154745996,258.20702450955287,258.7254744968377,259.4929330102168,258.4947812105529,257.8996400437318,258.5079774297774,258.98017707886174,259.7250804626383,258.91448915796354,257.96416977094486,258.612548454199,258.43571500480175,257.44038870278746,257.82001252565533,257.68173039052635,258.4917934606783,258.4286080719903,257.9063866236247,258.51976808486506,257.62879606243223,258.4120295806788,257.7587686595507,258.4716744571924,259.0060750199482,258.5512918722816,258.2442906880751,258.1224378570914,258.9655249612406,258.03041476290673,257.21520015085116,257.52112982422113,257.44004535861313,258.16985649289563,258.2416734928265,258.7724137608893,258.73940229509026,259.65567025961354,259.3293776838109,259.3125435267575,260.2312594051473,260.9605365190655,261.82076572440565,262.1324335713871,261.28863259777427,262.16881701443344,262.37814353313297,262.333061510697,262.81322693498805,262.5829101772979,262.90866416087374,263.0555721921846,262.70552282826975,263.2270033606328,263.84412820916623,264.54072363115847,263.7873279810883,264.55622635781765,264.6453964198008,263.8314679362811,264.03898055199534,263.7272250941023,263.5264480202459,264.2915133032948,264.6021399265155,263.66153839882463,264.5007525370456,264.46149232797325,264.16223355708644,264.9478298141621,264.136816882994,264.9031005753204,265.7356602200307,265.3706755293533,265.010544879362,265.16903318697587,264.2076314827427,263.31223094742745,263.9224496902898,263.79357779119164,263.9904807684943,263.84879129519686,264.0689850496128,264.3274791575968,263.7026468371041,263.88454039162025,264.78423548769206,264.34321520105004,263.8202217100188,264.1228127577342,264.0486624301411,263.63584870891646,263.0655938470736,263.1319564753212,262.83577828109264,263.81478368723765,263.09704097919166,262.1195610444993,261.90452348068357,262.4536508587189,262.91858226805925,262.938890513964,263.2849101773463,264.2000516625121,263.9257191424258,264.6994206029922,265.39367387536913,265.60604893090203,264.7902548164129,263.8495946354233,263.72042962769046,262.802198569756,263.42996381781995,263.02616685209796,262.66609251126647,263.5689729345031,264.4773299349472,263.84356014896184,263.84320169640705,264.63578831311315,265.18751297332346,264.2902015373111,264.582772559952,264.1575877284631,264.62962032854557,265.4683053693734,264.70048478944227,264.6146795582026,265.40852584224194,265.23558916989714,266.09836311032996,266.3275325191207,266.1384753957391,265.45759728271514,264.52693545864895,263.76442574430257,264.39045248227194,265.0737598389387,265.4811476506293,265.9346096725203,266.5806025103666,265.83328979229555,264.88441568566486,263.95464899996296,264.68440356012434,264.0473217619583,264.07217414397746,264.7386772450991,265.15970750758424,264.9572942717932,264.9177212212235,265.81092510325834,266.3092669756152,266.7610238045454,267.2761575621553,266.55733935162425,266.96101231267676,266.651962319389,265.7515370985493,264.9516229387373,264.4702243786305,264.8053703927435,265.80300285993144,265.82410196680576,265.8677243110724,264.87394190207124,264.34595694066957,263.54602616047487,264.4377094814554,264.7836503991857,264.3186422754079,265.1944688023068,266.10426762793213,266.5362867922522,267.4558999808505,266.49168394273147,265.653234037105,265.9183095735498,266.8670622478239,266.40442003682256,266.1244499832392,267.0752794709988,266.19863431341946,266.24005170399323,266.79211794259027,267.47131392592564,267.64127175696194,267.1068702903576,266.9655406912789,267.2477705394849,266.3948901388794,266.1234821458347,266.5542687121779,266.8484817883,267.62367490213364,267.0021616057493,267.33957229880616,267.99804416811094,268.3148013455793,267.79358316911384,267.1359491809271,268.09427514253184,267.75802621617913,268.24546760553494,267.2918976494111,267.079895360861,267.27141412952915,268.0544260214083,268.0983290323056,268.07681331876665,267.54581915261224,266.61653622007,266.409305119887,266.40530409431085,265.9297448103316,265.5654237419367,264.7355422596447,264.0883517758921,263.4920955421403,263.6317166411318,264.4389838054776,264.5387027836405,263.6647627176717,263.0881470916793,264.075109960977,263.19409253494814,262.49700608244166,262.62474984070286,263.0701952315867,262.72200564527884,262.23648841213435,262.5298995836638,263.23378497501835,263.40721307275817,263.0764016015455,263.29989127395675,263.1810268606059,262.4014642932452,261.81672293366864,261.55546352406964,261.8391519677825,261.4271767088212,260.5447075050324,260.9721251851879,261.22423116117716,261.8357105720788,262.82516998331994,262.9378756452352,263.5788794979453,263.8711717585102,263.5486328564584,264.4169573257677,263.42431066557765,262.5548808807507,263.2867235667072,263.26024777442217,262.56672316463664,263.51207003276795,263.305369626265,262.612327741459,262.7731933328323,262.71759220119566,263.51371318427846,264.44088762113824,264.81726422160864,264.4575140294619,264.6345285442658,265.5207618600689,265.53797061694786,264.9714794694446,264.83965734764934,265.04579655406997,266.0078437891789,265.2177436836064,264.8973201671615,264.4481855495833,264.855831658002,264.28874587779865,265.12112437654287,265.3026793310419,265.98072686977684,266.53330315928906,266.139218527358,266.01506689889356,265.6462380271405,266.1464472836815,266.6866304166615,266.5359677709639,266.6327557922341,267.4565611979924,268.1861387123354,267.4165278975852,267.5427118479274,266.9547456819564,266.4075888013467,265.5313203949481,265.10108545795083,264.91188528062776,265.8817315218039,265.7191222300753,265.3161255675368,265.3083118419163,264.73397682467476,265.0249121710658,265.0538696856238,265.8637136584148,266.85143705504015,267.3646026980132,266.8416917719878,267.1879805997014,267.1672523440793,267.1112394002266,266.87321671983227,267.8021260816604,267.3759230286814,267.4310660827905,267.25871727010235,266.75719302659854,267.3714673705399,266.7724912413396,267.70697825821117,267.90802340069786,268.6343498611823,267.7309780167416,268.032243761234,267.37246602447703,267.1023559854366,267.74495093757287,268.0459829675965,267.25637508230284,267.3638698286377,266.47164547396824,265.96241050073877,266.1323816254735,266.44625932956114,267.0930662532337,268.0189261799678,267.3103841273114,266.51582228951156,266.2847768999636,265.6343816816807,264.94626889703795,265.60729754995555,266.1818895349279,265.3345097191632,265.85498210042715,266.1500615826808,265.405749252066,265.71414236631244,265.6547020422295,265.46450390759856,264.819219998084,264.4725465257652,265.32647219859064,264.6815246772021,265.37887629540637,264.44415164133534,264.8635168648325,265.41195110604167,265.3014072594233,266.15795375267044,266.4245095564984,265.78898563282564,265.9288957081735,265.29273173911497,264.5032571381889,264.0686110109091,263.47909939242527,263.6250560572371,263.108240863774,263.5660703741014,264.4384450633079,265.14626186713576,264.1846563187428,263.6154808518477,264.4182992419228,263.60102842003107,263.5937123335898,263.1569269183092,262.28770688408986,261.9174890187569,262.17509485268965,261.9983184761368,261.9532411219552,261.52078717621043,261.24790592258796,260.67025145329535,260.4629163094796,260.4513345826417,261.2196101122536,261.87984167411923,261.4411707781255,261.7261829650961,260.91086572688073,260.7154727168381,259.81459532212466,259.39573071710765,259.62405903451145,259.04178936686367,258.64397712238133,257.9543612683192,258.68559531122446,259.2669245149009,259.72132585337386,260.3821874312125,260.09513255860656,260.91503153089434,260.8527026735246,261.761436522007,262.592764605768,263.5388510324992,263.07271186448634,262.39135107398033,261.91329187667,262.3700335477479,262.17660702439025,262.1591302040033,263.01207201741636,262.39715762622654,262.04555140901357,261.8954334226437,262.7116392836906,261.7448299252428,261.51012982660905,262.47044765297323,262.3223608909175,261.8676349343732,262.56338539533317,261.66852784063667,261.7126993117854,261.7208836823702,261.7257679947652,262.6884957840666,263.024769147858,263.12822353001684,263.23216161783785,263.5000281855464,263.991308814846,263.4403219744563,262.6899683778174,261.7927307463251,261.34096198296174,261.31932923337445,260.3987941062078,260.9590130895376,261.1228941716254,260.57810911443084,260.2025231621228,259.9062345260754,260.8900349875912,260.6243802490644,261.52012443356216,260.68080243933946,261.4716548528522,261.70507531473413,261.4989302470349,262.0374989337288,261.8889541560784,262.42821420775726,262.41175073524937,263.24188876664266,263.5353210559115,262.70202367939055,262.826429116074,263.3880235608667,263.2202421473339,263.96678670309484,263.1543030422181,263.1944809220731,263.145002909936,263.6326636406593,264.5469935713336,264.9847088553943,265.94135110173374,265.10351629694924,264.8079924220219,265.56312417285517,264.8315025572665,265.2228169180453,265.1778252045624,264.2285944055766,263.5960867172107,263.165401882492,262.8535561012104,262.276274851989,262.1902245255187,261.50855239667,261.2519502597861,261.1478725410998,261.91607834305614,260.9610125059262,261.01249424368143,260.3884522905573,261.37801102455705,261.6279317867011,261.29284033877775,260.86678884970024,260.90093289362267,261.5512186428532,262.01414690120146,261.7489438052289,261.36199593450874,261.1776181557216,260.6495562400669,261.468353677541,261.63362957397476,261.15521006053314,261.82081582630053,262.50083113182336,263.1369804260321,262.30712925083935,262.6778601924889,262.5577304936014,262.85459788609296,262.32820459408686,262.09660593932495,262.45229329774156,262.8711619321257,262.9293609857559,263.30423815827817,264.14468742441386,264.79833491845056,264.8875652276911,265.2043279777281,265.74246042920277,265.2866109116003,265.0080600976944,264.17645571380854,263.46627540746704,263.48984860256314,263.4986265976913,263.9299646257423,263.6381124407053,262.82737201824784,262.8661544211209,263.3989689014852,263.123139673844,263.6010929183103,263.54218259966,263.85959763405845,263.8312104353681,263.68980432115495,263.4759889165871,264.2566868397407,265.215549019631,266.06799414614215,266.9675939390436,266.5076126190834,265.5737202106975,266.3144476232119,265.61062770616263,265.88053986104205,265.6317082764581,265.33212043577805,265.0515835490078,265.792511143256,266.20183751685545,266.2305804565549,266.4622869938612,266.4771153074689,267.24583864351735,267.24563944060355,266.9948263093829,266.7235235539265,266.97351517435163,267.29583559697494,266.4093304630369,265.8122351639904,266.01138411741704,266.81852485705167,266.357283170335,266.84433274529874,267.30602975096554,266.95693977037445,266.55544353090227,267.4217990026809,268.41130936238915,269.2375798509456,269.8313238127157,269.89399655582383,270.24904910009354,271.00947228306904,271.088375532534,271.37704195361584,271.8050663797185,271.45473235147074,271.61357629997656,271.8032905133441,272.12750767963007,272.0595639869571,271.6773896315135,272.1939508197829,272.6743465648033,271.72008287906647,272.22551832161844,272.184418853838,271.63865038054064,271.3354193852283,270.34453442459926,269.59180166758597,268.8393216491677,267.9696000488475,267.1813230528496,266.4943824913353,266.90703093167394,267.7870404548012,268.64809283195063,268.13352045137435,268.8151815137826,268.07816511625424,267.6080456795171,267.560741327703,267.3993301773444,267.78262622095644,268.2845829343423,267.8932420378551,267.9265461876057,268.568305473309,267.85427764151245,267.2616383661516,267.4227009806782,267.8842503409833,268.4278459646739,267.98215494770557,268.870873503387,267.9542134096846,268.8566859252751,268.1737911198288,268.5607217391953,269.3613776899874,268.70332677848637,269.20426987390965,269.0110745187849,268.336739951279,267.5115650398657,267.041795572266,266.10078429663554,265.24271021969616,265.40614164294675,265.18431156268343,264.4534077285789,264.1306944740936,264.0983033948578,264.68232612730935,264.38132919510826,264.813089448493,264.97875274764374,264.1626771246083,263.3763302746229,263.54011435015127,262.7331654266454,262.006435518153,262.89672539476305,263.8751019537449,263.44662254629657,263.0509149734862,263.332616138272,264.0036400798708,264.26690632337704,264.7707965443842,265.63533468777314,265.5718629062176,264.7209177785553,263.7218239456415,262.8482009959407,262.9501858940348,262.2168420390226,262.70885273627937,262.35747231403366,262.20135516580194,263.1986799547449,262.9008972318843,263.5332881496288,262.6119180181995,262.61600896250457,261.8526074104011,260.93063642270863,261.5151400468312,260.77881466783583,260.57857267558575,259.75029725860804,258.8586420114152,258.9463335047476,259.06133098946884,258.38883526204154,258.8053327612579,259.33088358771056,258.72426988882944,258.3213440924883,258.97411492001265,258.62311890069395,258.6253972183913,258.93548470176756,258.3131040055305,259.257290514186,259.81251914659515,260.6399527047761,261.5045505980961,262.04616955760866,262.62655122345313,263.562071158085,262.6701882495545,261.7469155313447,261.0370133947581,260.0447548991069,260.7753638429567,260.71332652447745,261.6022541052662,261.3935505808331,261.0697658578865,260.23895939439535,260.27143844170496,260.40790783660486,259.90744148241356,260.6400948059745,261.0135427294299,260.68848058814183,260.4711951832287,260.6805388564244,260.9291504402645,261.29359808238223,260.3364523984492,260.2172132008709,260.65191670367494,261.1126407068223,260.9992388309911,260.160311544314,259.39473934518173,259.95043905777857,259.473264537286,260.19851373834535,261.12077279388905,260.2862353157252,260.7310340902768,261.72527507832274,262.003847124055,262.6906995852478,261.9955324162729,261.60474219173193,262.0818346790038,261.2245677099563,260.9011377156712,261.46691957721487,261.0964691732079,260.150327866897,259.36723796185106,260.26431937702,260.4771601664834,259.7401368380524,259.810378103517,260.6158553478308,259.8554479358718,260.6470968364738,261.3928150543943,262.3323152773082,262.77310840878636,263.58672338724136,263.19543644133955,262.9517357479781,262.9472274822183,263.85390648944303,263.65181889990345,262.72290559485555,261.9048582641408,262.1757087674923,261.5100126368925,262.2181467837654,261.69556012842804,262.4342414001003,263.1656415848993,263.8844630359672,263.15085718687624,263.55455298908055,263.58713749283925,262.96437717508525,262.3334193788469,261.51103951223195,261.62620129575953,262.0748193655163,261.6826975415461,261.33508406719193,261.46575801307335,262.1303403545171,261.41063884599134,261.0607665604912,261.240832363721,261.6963985906914,261.5190657679923,262.4655939200893,262.9281087387353,263.50644027721137,263.0796313416213,262.4323944435455,262.13487885147333,262.36540982639417,263.0927261421457,262.22051138291135,263.0940087386407,263.94936715764925,264.17539515625685,263.73501204838976,264.2150430162437,263.6689720489085,263.3050228888169,263.46557063702494,264.3883882504888,264.095603057649,264.4436156526208,265.25311652291566,265.39605542924255,264.8399735451676,265.104318310041,265.3955039056018,264.6165329506621,265.1714700884186,264.7285111164674,265.68684262782335,266.41878638230264,266.9166819076054,266.13859679503366,266.04322399850935,266.6644328557886,265.7776711611077,264.81045824754983,264.72116251150146,264.0122860269621,264.29822386195883,264.0482313288376,263.6957981241867,264.2004900216125,264.8887780965306,265.2363453642465,264.2905932897702,263.32211862597615,263.5661929077469,264.2849119505845,264.6010671253316,265.2261462970637,265.34428000543267,265.21402423270047,264.75470421044156,264.59138829261065,264.9915787819773,265.13975949399173,264.89431018102914,264.4222357845865,264.4066466395743,264.6657256959006,263.76912547601387,263.3134168763645,263.9941770900041,263.8042048625648,264.0923308292404,264.19160566153005,263.9289978663437,263.92402565060183,264.7945415209979,265.18147436669096,264.76221684133634,265.09237008029595,265.35954751539975,264.38499859534204,264.4359120079316,264.7012312258594,265.5943438047543,266.25757530052215,266.91701489314437,266.9136754772626,267.1035863365978,267.5693780775182,267.4256826573983,267.5829142406583,268.0025036097504,268.56241655163467,269.3116125012748,268.70280043501407,269.2828020104207,268.94762726919726,268.55551926326007,268.21656531328335,269.2155627803877,269.64954955875874,270.1990986871533,269.4342273087241,268.69992845272645,268.0004558390938,268.5425977855921,268.5152019811794,268.563944269903,269.18457488622516,268.6946072760038,268.1259135250002,268.8698347741738,269.6794386324473,270.23807614995167,269.5710646081716,269.97939079254866,270.21507957112044,270.67686515441164,271.6101123113185,271.8741026255302,271.67575266910717,271.4305176641792,270.7815836635418,270.93864942574874,271.5854829046875,271.6633140416816,271.73690072167665,271.96642960002646,271.9013533210382,271.85778070706874,271.4235697905533,271.5136396042071,271.6271590925753,271.07716563064605,270.56741889659315,270.29703328292817,269.3848543660715,268.48491318617016,268.5444306442514,268.4844292094931,268.86220134422183,268.40156270843,268.38145108753815,269.27120190951973,268.87635731184855,268.2197821983136,267.3122889897786,267.5962100578472,266.6063181059435,265.68665601545945,265.36837073694915,265.69238594640046,265.5606338190846,265.6745671648532,265.9815356032923,266.4059481974691,267.07192298863083,266.53466721624136,266.4323710221797,266.5585643663071,266.82560868607834,266.5653096502647,267.0329583804123,267.2601379645057,267.1914060818963,267.3723757197149,267.9567067013122,267.9944551852532,268.0755486348644,267.8528465931304,268.26962280645967,269.1083928537555,268.52541166730225,267.5572441937402,267.8727994086221,267.4287900868803,266.85547913005576,267.2909879120998,266.4105811165646,267.0491247284226,267.8954185284674,267.7935485485941,267.7121124942787,267.194524532184,266.32962541189045,265.91877465927973,265.9759574052878,266.23088108561933,266.75237098895013,266.1875475249253,265.62042242567986,265.6759231062606,265.35348116233945,265.7412139708176,266.6320064305328,266.7584209609777,265.9167385660112,266.87318754103035,267.7098866533488,267.1400641677901,266.30384664656594,267.2140524224378,267.95728361513466,268.53364200377837,268.55884840898216,267.90018706722185,267.123850364238,267.32828485639766,266.48569133970886,267.1669642664492,267.372690750286,268.36951726069674,269.1889522927813,269.50056186970323,268.5138804242015,269.3996479790658,268.65919948369265,267.7522438443266,267.0412325155921,266.24331863923,265.29870173800737,265.71189954690635,266.5081275603734,266.59299428993836,266.09881485952064,265.33896298566833,264.69947718502954,264.0001222938299,263.6046991967596,264.28734683571383,264.30259165214375,264.83609626814723,264.9561815848574,265.6938807684928,266.69250887306407,266.3490322427824,266.0158706814982,266.2258695010096,266.2916232626885,266.0506902607158,265.30856033274904,265.25884017767385,265.64580752654,266.31779833324254,267.26557516725734,266.5750563372858,266.10538155026734,265.5752047523856,265.0574668738991,264.9799463939853,265.56702861422673,266.0188689529896,265.5908659673296,265.8685671677813,266.85651277331635,267.02562077715993,266.41717133065686,266.32839725818485,265.3732399479486,265.1357707292773,264.3205894064158,263.692642623093,262.94383688271046,262.45207503810525,261.9403710057959,262.2521672626026,262.6322783762589,263.3570592631586,264.060634103138,264.85613631783053,264.6248852997087,264.12497913930565,263.4520891774446,263.52022883016616,262.5519987316802,261.8426271015778,261.76686959015206,262.73986226366833,263.6920757717453,263.2691998514347,262.80678437370807,262.329344402533,261.9453794853762,261.40193305909634,261.4674623934552,260.5444941679016,261.3962200018577,261.58104003500193,262.23733538901433,262.9802145548165,262.1611057696864,261.8217088612728,262.41894632950425,262.9180674897507,262.64755315938964,262.458003311418,262.8676261440851,261.994908623863,262.4040657998994,262.1366183194332,261.51741551281884,261.13578850217164,260.3326088450849,260.9573970870115,261.0509464549832,261.36239756364375,262.35154149634764,262.3987482567318,261.9970869543031,261.39010901656,260.81936115957797,261.81552872853354,262.194165090099,263.1372865708545,262.98417118098587,263.3741597048938,263.1028726864606,263.7496490194462,262.83702025655657,262.8574227304198,263.49735141778365,263.46283915359527,262.5743894246407,262.9529626565054,262.83431539684534,263.4384994059801,264.25409841071814,264.890095718205,265.2815162781626,265.9195301490836,265.9463835400529,266.7224602145143,265.83231837535277,265.1234865258448,266.02895266748965,265.39740697899833,265.3225089740008,264.9936776170507,265.8670309702866,265.00088051939383,265.6556789483875,266.3579578413628,266.7946542003192,267.6067656693049,267.365969881881,268.1006687642075,267.56203533522785,267.5714972997084,267.7527182879858,268.73295305110514,268.82356138760224,268.3551795175299,268.13015280663967,267.88187194801867,267.6198236923665,267.1212371387519,267.3063275977038,267.4276790898293,266.69542874675244,267.0726901111193,266.4721351978369,266.0808485117741,265.6386224324815,265.8814512207173,265.03746893955395,264.2802868941799,263.6047692983411,264.56564098224044,263.8101471341215,264.06964342296124,263.8849584562704,263.9143823995255,264.2362387999892,264.26741265133023,264.99505485082045,265.0082146618515,264.89864477328956,264.94118804018945,265.68416498601437,264.8697027792223,264.2211885051802,264.2344182948582,265.22360428608954,266.21337422030047,266.27005872502923,266.79326307820156,267.1845951345749,266.4433515886776,266.8132473877631,266.58453324250877,265.86787467775866,266.1068390235305,265.24772812006995,264.53524196567014,264.27738249255344,264.45787591673434,263.9742208714597,264.42301885271445,265.3106204411015,265.6175475260243,265.9555094013922,266.4261740986258,265.60777985397726,264.63142072595656,263.81124666845426,264.695021555759,264.13456843420863,264.41471506794915,264.2510188529268,264.39676195709035,264.7925812834874,265.3943508337252,265.96908197691664,265.57428151741624,265.27990453178063,265.0438726162538,265.17323486693203,266.0313542969525,266.76334007503465,267.1463710251264,267.0758607988246,266.6381010510959,265.9420280610211,266.0380252110772,265.9108403441496,266.1141273858957,267.03085930412635,267.92348371772096,267.75021858513355,267.5695474650711,267.04609240824357,266.99950686236843,266.3036389821209,265.63819824391976,265.46800359757617,265.73805868579075,266.2066809553653,266.2000282225199,265.396067738533,265.0100626810454,264.94931574584916,264.0642813257873,264.62615728983656,265.2361158253625,265.07493928447366,264.92204176960513,264.0035779159516,264.30821045534685,264.86606693593785,264.7143405340612,265.3599634328857,264.41062473878264,264.20612397417426,264.55537920445204,264.98031479213387,265.8580746734515,265.5779190440662,266.18630247330293,266.077174408827,265.09297233633697,265.6964859748259,266.1668363395147,266.8542668377049,266.5471006813459,266.11617329344153,266.77600147854537,266.6715135490522,265.69684569118544,264.88499734643847,263.8876805282198,263.9689132831991,264.40200320538133,264.30846214760095,263.3887054142542,263.658364857547,263.001345065888,262.79065609769896,262.84989991690964,262.1870674910024,261.64824810484424,261.6794800241478,260.97929334361106,260.6062016906217,259.7374446527101,259.30615912377834,259.6753367288038,259.14940830273554,258.5447900509462,259.1970203197561,259.4776874203235,258.5983043946326,258.92063834145665,259.11601153807715,258.4821520126425,259.4666654509492,258.51836971659213,258.9862485663034,259.3759991880506,259.3970625330694,259.384687256068,259.8727923883125,259.531026431825,260.403502763249,260.5356233846396,260.980199882295,260.9426628611982,261.68627876229584,261.6046317592263,260.75180981028825,261.46101557603106,261.9629373084754,261.10285324044526,260.3237603115849,260.63823101995513,259.83523174142465,259.4100436125882,258.51843034056947,258.8110917513259,258.1107151196338,258.91245400719345,258.4699677247554,258.248697723262,258.9271758571267,258.7925611301325,258.2196802003309,257.47134775528684,256.9887481755577,256.5154282869771,257.3085371204652,257.0913095558062,256.3382494337857,257.105800089892,257.5729978992604,257.74532982800156,257.39929517079145,257.0185905494727,257.73467547865584,257.8613636684604,256.903893887531,257.4654365372844,257.7762963674031,258.02559165190905,257.66007181070745,256.8531850045547,257.01139694219455,256.0907444288023,256.7315398743376,257.6329440558329,258.0570005583577,258.7850806755014,258.6065335199237,258.7105235103518,258.49044263595715,257.56180153181776,258.14810678968206,258.9723271629773,259.72569443751127,260.25997108453885,259.93147073034197,259.3777872179635,260.3561714980751,261.3481929153204,260.9503739532083,261.8268771362491,262.42713184887543,263.0152736916207,263.86406278889626,262.9851077054627,262.60012436751276,262.94055623654276,263.02250230684876,262.263756044209,262.47115924349055,263.0168588026427,263.3279201728292,262.9964674161747,262.5833144397475,262.0966085367836,262.5311960806139,263.2613792484626,262.6722304378636,262.836309466511,262.34714100370184,262.0735844699666,262.20094294659793,261.4191061621532,260.8193011577241,261.2946069785394,261.2762880339287,261.69129281910136,261.4966279491782,261.6825194754638,260.891333532054,260.6534478762187,261.1245613009669,261.4624243644066,261.7274942821823,262.0943583990447,261.13631795626134,261.86060437513515,261.688176442869,262.31225734064355,263.1779149598442,263.82677192473784,262.8581173438579,263.5205104146153,263.55564580345526,264.2253995705396,264.2720028180629,263.6767905559391,264.0960075943731,263.2298007812351,263.7100615608506,263.6749957790598,264.27917884709314,264.16549098165706,264.7784530534409,264.563163343817,263.97405534191057,264.472699879203,264.16389303375036,264.6446263631806,264.5768347894773,264.640736870002,264.871471632272,264.2565836259164,263.84205080615357,264.1843264019117,263.9286769255996,263.41962113045156,264.32870126189664,263.7021740633063,263.7506602415815,262.76146951084957,262.2515105274506,262.5297535858117,262.6130949887447,261.7901435648091,262.5166951525025,261.64248943701386,260.95151193020865,260.04135487787426,260.9917015186511,261.9369233562611,262.60782637493685,262.1543693388812,262.8341214703396,262.72564469184726,262.4074948518537,261.5647816681303,261.0844314438291,260.73925506928936,259.7671597059816,260.12075789179653,259.3845606367104,259.48657263210043,259.00653497641906,258.72523531876504,257.96195687539876,257.2424889835529,256.93714797403663,257.25330088008195,257.6072928812355,256.68517194129527,256.1962385904044,256.2757791071199,256.3558169086464,255.93136815121397,255.6165236509405,256.3429751941003,256.85886008804664,257.2597865597345,256.3165444252081,256.61272067856044,257.3063120050356,256.3613124326803,255.79491587541997,254.88396991975605,255.82579916575924,254.98722953442484,255.9551891842857,255.35483931796625,255.12116364948452,254.83197261858732,255.05988776963204,256.0241570533253,255.48689693259075,255.85793132288381,256.18249115673825,256.92992577608675,257.54883033176884,257.7033227230422,258.64109881035984,258.0214055618271,257.22642042441294,257.5109958569519,257.53464944055304,257.1242642640136,256.228927611839,255.4650884619914,255.20069391932338,255.97500640992075,256.6981324790977,257.3577737864107,256.9357429165393,256.6218175115064,257.0104948198423,256.33909068768844,256.58050300041214,256.72990538412705,257.1864874251187,256.2409401880577,257.01446110056713,256.6834630696103,256.02376608457416,255.09829185763374,254.16754936939105,253.79473692830652,254.25945385266095,254.54233300639316,253.9481979208067,253.16408411273733,252.7540552453138,251.75579293770716,251.39763516839594,251.86219357233495,251.27842601574957,250.87816572375596,250.4647315167822,251.4263912937604,252.3778991154395,252.09910083189607,251.91388844978064,251.69565521460027,251.07706708135083,251.9035165128298,251.27927162544802,251.75365133211017,251.04007614031434,250.17843888141215,250.2278932305053,250.19498399691656,249.57611417211592,250.51804266031832,249.739236114081,248.79273928655311,248.62242028256878,249.24899688083678,248.7327624275349,249.26967604272068,249.18941940320656,250.1076553342864,249.97225359547883,248.9948038184084,249.1313449954614,249.76385926268995,249.1929345279932,248.49032845674083,248.01123674307019,248.08608507504687,248.2912917486392,248.13921354711056,247.2199425008148,247.78582971310243,247.41257143160328,246.4720196374692,246.4138198918663,247.00423012906685,246.25015961797908,245.925776258111,245.6866131797433,246.33667077682912,247.02320705354214,247.0358561137691,247.30403682868928,248.2291732588783,247.30298537574708,247.63630875758827,248.2712016236037,247.96698114462197,248.8591781752184,248.39077391661704,247.41196642117575,247.93980654608458,248.9244010625407,248.37266495404765,247.4901248300448,247.99753403803334,248.59889592044055,248.59935092413798,249.2564796875231,249.45412833523005,249.7839290718548,248.97027901373804,248.67891074949875,248.58630312001333,248.44100669771433,247.7193395346403,248.02585008414462,248.90412278054282,248.59958364022896,248.09924872545525,248.52929414855316,247.85735258786008,248.49279542127624,248.3542756983079,249.16920458618551,249.70359361544251,249.85040155379102,250.35458516236395,249.36630180757493,249.91336054867133,250.72497075423598,250.36905367160216,249.84942670632154,249.29510304704309,249.1673481571488,249.5909393178299,248.5951591185294,249.37325293431059,249.83897555340081,249.46581756416708,249.02981065912172,249.90217661252245,250.61206607846543,250.88075775653124,250.56833531102166,250.0922714099288,250.82236312655732,251.44213303131983,251.87607878260314,251.55029546609148,252.5482026715763,251.79304808704183,250.8918563630432,250.995723888278,250.77295538363978,250.20714757079259,249.89162991102785,250.2720443708822,251.15307154273614,250.3572686710395,250.90679642604664,250.46019343240187,250.74756877310574,250.9253282523714,250.3307396932505,250.5413350830786,249.76568020693958,249.0371559583582,249.42725007608533,248.4688276280649,247.85285699507222,248.77215244807303,248.65992248477414,249.1121522053145,248.60509719420224,247.84281271556392,247.06788492016494,247.3271126067266,247.56060119252652,246.69284600624815,247.00671611912549,246.5763381626457,245.86073041474447,245.70629926025867,245.27106939814985,245.4796189791523,245.15624151052907,245.78600436262786,246.54094014829025,246.34809008566663,246.0958110326901,246.72551383683458,245.96866219490767,245.13546113669872,244.5519548561424,244.05187214817852,244.0737991654314,244.21258932957426,243.80940001038834,243.87600372405723,243.76095195440575,243.89464974263683,244.05278526060283,243.7409338983707,243.17566965706646,243.46074249083176,243.4610721184872,244.1203709547408,244.1816095500253,244.12809690693393,244.34904759190977,244.91641605645418,245.64367803605273,245.69445086689666,246.436781400349,246.77405987819657,247.6471441257745,247.4334510085173,246.76062496751547,246.46604679711163,246.05533173447475,246.19686583941802,245.92200219724327,245.14457526477054,245.91613315371796,246.73443904146552,247.13059494365007,247.81650512944907,247.01002829521894,246.54433559905738,246.29074063245207,246.66554453549907,246.5970973065123,245.63458638824522,246.14721028739586],"y":[109.90353972557932,110.20336959511042,110.55134842917323,111.27840469917282,110.9977470068261,111.30381823703647,111.60349320620298,112.11508964095265,111.49853050848469,110.81605511484668,110.10476839821786,110.16846146993339,110.95348573522642,111.68749905377626,111.10899306554347,111.26328825950623,110.8741724062711,109.9111009966582,110.73416365077719,111.31219140812755,110.82499430188909,111.34223162662238,112.07017537672073,112.16215908760205,112.06826775148511,112.34589434787631,112.30880618141964,111.92399329412729,111.3008889677003,111.54731115559116,110.68437748029828,110.5748508637771,110.71896728081629,110.7970544937998,110.90507218707353,110.55591475451365,110.78094718186185,110.05746239842847,110.53740505035967,110.1455831239,110.29901341767982,109.70859613316134,110.32851212657988,111.05466624442488,110.99224089458585,111.87486806651577,112.6440009912476,113.18954962166026,113.46214048424736,114.1471328237094,113.27767330594361,114.23233028454706,114.81117676617578,113.90123009262607,113.9188008196652,113.92865949915722,114.14886261010543,113.55313356500119,113.01794154383242,113.14035726012662,112.98012012429535,113.55730911251158,113.13900791993365,113.98225149977952,114.37462960323319,115.22376901796088,115.9175347625278,116.6758837341331,117.22812575427815,116.54004742903635,116.23122557345778,115.3377723088488,114.7769578625448,114.96856630593538,114.1112718754448,113.6358391023241,113.3985028816387,113.66651372844353,112.8952938565053,112.48332662088796,113.2480131611228,113.09322259109467,113.90709120687097,114.52618055790663,114.81336855795234,114.69913668418303,113.96847067773342,113.46740261139348,113.83847122779116,113.44077370408922,113.89435181161389,113.80691355327144,114.15180549491197,113.93321379367262,114.42686126055196,114.37966332025826,115.03334847604856,115.60886479448527,115.93063334794715,116.57793422648683,116.83286043442786,116.73456613346934,117.54339502612129,116.89239859720692,117.30624318821356,117.34856258844957,118.23302750661969,119.00616157241166,119.6449136827141,120.530655418057,121.27440740680322,121.31579317618161,121.45167167158797,122.17508126841858,122.30594159057364,122.4774451428093,122.70354930730537,122.52222829172388,122.18883726466447,123.13684390578419,122.82070261519402,122.05555392056704,122.33215016871691,121.57351140258834,121.87943815952167,121.19955272274092,122.08232948929071,122.59442526148632,122.99146962212399,123.97200955078006,123.51232741540298,123.86698909429833,124.63082439731807,125.02197538409382,124.76748833991587,124.60709315072745,124.20035855704919,123.31391255324706,123.2072182376869,123.14435558207333,123.60149828204885,123.90545467566699,123.73627048823982,123.4360905108042,122.73860039794818,122.06094027217478,121.46207928471267,122.29379031993449,122.87925494136289,122.36783499829471,122.99773859651759,123.48527431953698,123.62314977543429,123.5569630637765,123.2725532897748,122.90115207573399,123.32288261316717,122.7731182333082,122.14055750425905,121.87309998553246,120.89110626513138,121.72651312267408,122.37518848897889,122.6306074927561,123.1987367933616,124.11971625080332,124.45020943833515,123.88146851910278,123.21915798820555,123.33391200145707,124.24133819853887,124.82506058877334,124.50706046354026,125.00372608192265,125.90157394530252,125.04107142006978,124.43944043153897,123.46425882168114,123.64677497278899,123.36274983501062,122.82016618875787,123.7410375252366,123.25074394745752,122.60223512584344,121.80017573712394,122.0396910244599,121.50628941645846,121.969821495004,121.79202829534188,121.13602330163121,120.28153700288385,120.21514195716009,120.16352881444618,119.61183021077886,120.32606214052066,119.97802637889981,120.72011506091803,121.6934988037683,122.15008662035689,123.02446341328323,122.53438143990934,122.8198995841667,122.19213580619544,121.98917906871065,122.25258981529623,122.83314377302304,122.25955858454108,122.03886086121202,122.02133210795,122.56949320668355,122.23507414059713,121.87046238407493,121.16958916280419,122.14401214104146,123.02677546069026,123.20763128204271,124.05138919083402,124.41718955524266,124.70575316483155,124.3653163779527,124.21688681188971,125.026415057946,124.19872168591246,124.31241570133716,125.00908362679183,125.03587144473568,125.15263449214399,126.08954218309373,126.83489493653178,126.13561131013557,125.24494124157354,125.2608613949269,125.90693266363814,125.27214706223458,125.7184191136621,125.12652094848454,125.16384708043188,126.06683627748862,125.78510112455115,126.52273381734267,125.61399878468364,126.1439732532017,125.55806092731655,126.25746581424028,125.69636180857196,126.22780112782493,126.60080640623346,126.93833787040785,127.3643137649633,126.73162836115807,126.64430516632274,126.03031193325296,126.71600078511983,125.99966278905049,126.50036646705121,125.92760448064655,126.44366279058158,127.2963045462966,126.53714116942137,126.56290137022734,127.05907644191757,126.25619532959536,125.62491693953052,126.54296415066347,127.07249275734648,127.99397032614797,128.8682603817433,129.1186646539718,128.62767986673862,129.5224083159119,128.7183392145671,129.3691583769396,128.82615801831707,128.07499067438766,127.69228505110368,128.59085210319608,128.96635986678302,129.27710092626512,128.9559342060238,128.14772292692214,129.06109642330557,129.70066563086584,129.46849409351125,130.10994621738791,129.67467061569914,129.84587143268436,130.70506555959582,131.21851995168254,130.45375018799677,130.2462158165872,129.61757080769166,129.34358118055388,129.5242526261136,129.6357750860043,130.01174431154504,130.48458425793797,131.4469617069699,131.36068729218096,131.79585940251127,131.3730898015201,131.70129853161052,131.23344193352386,132.07057327684015,132.02024895045906,132.31917598936707,132.69029608089477,132.48184273345396,131.72003872180358,131.76521826256067,132.4247379936278,132.7220460139215,132.2317527779378,131.97318628570065,131.03548416495323,130.62798039987683,131.10041680419818,131.05290216812864,131.61951654590666,131.98684057034552,131.45923577807844,131.3510169815272,131.78650013543665,132.26791031332687,133.00078171258792,133.9929609503597,134.41146783251315,134.74485965352505,134.02776504354551,133.07351077487692,133.6398133165203,134.6060605365783,135.32512236014009,135.86170656885952,135.94477308169007,135.99842587998137,135.58384185750037,135.9148686574772,136.63224016409367,136.2762777437456,136.0338558824733,136.33550993027166,135.39423479512334,135.11951960437,134.5313083571382,133.66754077840596,132.6928021456115,132.14692466612905,132.26189603284,131.40513673610985,131.83043237868696,131.34540053457022,130.93602904491127,130.78172571538016,131.05182715225965,131.18458485696465,131.8163499897346,131.86583151994273,132.7951711146161,132.43977886112407,131.96987257152796,130.97697801841423,131.59275183733553,132.15185033064336,133.01053258683532,133.72712030820549,133.58564286399633,134.4885142594576,134.04601414641365,133.32612712029368,133.44526437018067,133.9479596936144,133.26628595171496,133.49962450983003,133.70792865892872,133.48430837597698,133.2346507892944,133.5100381784141,133.68758428888395,134.23884889297187,134.9604148576036,135.43076151702553,135.913722964935,136.20991829456761,136.7428511180915,137.0981235122308,136.4743971065618,136.26708967145532,135.87359717022628,136.19567233882844,135.89116979716346,135.54651932278648,135.96519504114985,135.55047030653805,136.29591474682093,135.84855618560687,136.00035289721563,136.51760168466717,137.06352544156834,136.9138168231584,136.0438880501315,136.25727350311354,137.17991140205413,137.24149480788037,138.2017958201468,138.0152133423835,137.04681882401928,137.2171961790882,136.72607265785336,136.12560924049467,136.51603305060416,136.34277361864224,135.6118422243744,135.1641743844375,135.72137375129387,135.9289891938679,135.67342366836965,136.05704082129523,135.74566251644865,135.4035790427588,135.94165855133906,136.1061001070775,136.01480296859518,135.53022610908374,136.24543566489592,136.7243130118586,136.15706848492846,135.44429237768054,135.07638664683327,134.6950839967467,135.4161607134156,136.22145739058033,137.04175430955365,136.66005097003654,136.1454708748497,136.7755917957984,135.81804687157273,134.83699077693745,134.70961556676775,135.29456609813496,136.02368940459564,136.0821846043691,136.04850226826966,135.28935743356124,135.2440093588084,135.13885799283162,136.10960432514548,136.2897984762676,135.76709935767576,134.7954935831949,134.9567704400979,135.44239941053092,135.95466889766976,136.78930205572397,136.25484279729426,135.3000418213196,134.73496160656214,133.7660316247493,134.71548989135772,134.65321137197316,134.82424575462937,135.52201670734212,134.92118708929047,134.9707507188432,134.3846924547106,134.22966649197042,135.06899743247777,134.12735688546672,134.5908568231389,134.56870831456035,134.80292347678915,134.32897538132966,134.44242310058326,134.02668985165656,134.95608436409384,134.81435922486708,134.7189193512313,135.08264100272208,135.20462091080844,135.11388191673905,134.22238169331104,134.38716243114322,134.48908842727542,133.75201707473025,134.7065128395334,135.35383618064225,134.90399666083977,134.97699971916154,135.66482134815305,136.00396637618542,135.01046051690355,134.1079349606298,134.66292113717645,135.6512900358066,135.61653620330617,134.82088261144236,134.3676845598966,133.97147282538936,134.10185130499303,134.3020260417834,135.19937001448125,134.33508092304692,134.34283063886687,134.43575628940016,135.24202310247347,135.15548005886376,135.12883500987664,134.72262490401044,135.63298377767205,134.8440833403729,135.13627440482378,135.80249570542946,136.2977676121518,136.5168076385744,136.65827434975654,135.9465900710784,135.3578648059629,135.84976746840402,136.10209902003407,135.35779324918985,135.91746001550928,134.92929932428524,134.51204032404348,134.8782004197128,135.78605161514133,135.93258517282084,136.35562338819727,137.06496273260564,137.2946823099628,136.36539913527668,135.92157001653686,136.72838381817564,137.42332137702033,137.82105807960033,137.51929670618847,136.5602652602829,135.80805673776194,135.04347838228568,135.66073092864826,136.03833452332765,135.20959401736036,135.76893473556265,135.19659946579486,135.02170736156404,134.13858205173165,133.30052343336865,133.43656526971608,134.11332477629185,133.91987535497174,133.0530210286379,132.88553196983412,132.4318689047359,132.1876070019789,131.84314027847722,131.83699401514605,131.60051269223914,130.88656492251903,130.81795632932335,131.6781152235344,131.97610650630668,132.81889724591747,131.9630888812244,131.2165655088611,130.33139929547906,129.44092645170167,129.30527149001136,128.5678930375725,128.50630616303533,128.11740009114146,128.01935000857338,127.58299826364964,128.30771258380264,129.04502908466384,128.71603989880532,128.29086789861321,129.18493988597766,129.3766977628693,129.80529728904366,129.67080370569602,128.8634581686929,129.19699012115598,128.47849568817765,129.18306707730517,129.30787773244083,128.85405885847285,129.73725986247882,129.006872813683,129.475484051276,129.5485040959902,130.1912049483508,130.1674195653759,129.58231334015727,130.46501588867977,131.14367694035172,131.779784521088,131.6249920502305,132.173560786061,131.8886566204019,132.42575520742685,131.98464654246345,131.998188032303,131.97742089023814,132.35327565297484,131.87792590027675,132.79587976867333,133.5185045269318,133.3885539304465,132.71366365486756,133.4480343889445,132.60773011296988,133.13207016605884,132.45667529664934,131.91831238241866,132.33217966603115,131.6022404045798,130.7857615784742,130.83010545978323,130.8904574457556,129.9704073467292,130.5080086523667,130.7490508016199,131.698621484451,130.72792269848287,131.16631258418784,130.37486624298617,130.82387215737253,129.9488778137602,130.6739427507855,129.9690860020928,130.9210186651908,130.8968366184272,130.26672890316695,131.19525174982846,131.13764806464314,130.28549658553675,129.31347886426374,128.57330350158736,128.0996623216197,128.77862802660093,128.61599335679784,128.57450372399762,127.94314099894837,127.30935275647789,126.67847442021593,126.00087231118232,126.59637385653332,126.61767845926806,125.86135547794402,125.7008727453649,125.14421105524525,124.8046348169446,125.6031475411728,126.10163460252807,126.42757600964978,126.29303664900362,126.8975323275663,127.58943818416446,128.43394089350477,128.35075962683186,128.41011728346348,128.16427612956613,127.29095196118578,126.8683122578077,127.56959619559348,127.16461470536888,127.65677258558571,127.43834348069504,127.78565174061805,127.32666215021163,127.9243433540687,128.15475666429847,128.39995980076492,127.41159057617188,126.94771521026269,126.91965026268736,126.02623510267586,125.23398594092578,126.07436309149489,125.53035765979439,126.17322766780853,125.21110120136291,125.28086121147498,124.87242927635089,124.14042535563931,123.59657166292891,123.5632417309098,123.03127320855856,122.30985314678401,121.8749198676087,121.31177240144461,121.05607069423422,120.70847569825128,120.759960597381,121.36852949438617,120.69693375565112,120.56884148065001,120.77986151119694,119.84587041614577,119.4905810514465,119.55576862674206,118.79904796741903,118.88836751645431,119.1670763073489,119.3255741330795,118.8262281510979,118.04364522360265,118.35839964542538,117.98502258816734,118.75530482223257,119.50574400601909,120.26507662748918,120.34774445183575,119.92893739091232,119.41347994096577,120.04582519130781,120.10404453147203,120.19777612062171,119.28595101973042,118.54818234127015,119.05597856128588,118.49398212041706,118.58268400793895,119.2601738483645,119.93350979592651,120.75882190605626,121.14321673987433,121.64574170624837,120.90219066245481,120.29857061989605,119.90457734838128,120.12374918628484,121.1045322236605,120.40708467224613,121.34641103120521,121.05471160914749,121.83595599001274,122.58833765750751,122.48406441463158,122.81944780983031,123.15416583791375,123.02607160108164,123.9738522474654,124.93329250160605,124.43872856535017,123.70583445997909,122.9033845369704,121.95318824285641,121.25333944521844,120.73483997303993,121.52872055862099,122.11186308506876,122.82761274417862,123.79639479517937,124.43095476785675,125.18511852622032,124.38199657807127,124.69674585107714,124.16565744066611,123.61318941321224,124.03270443715155,124.58394756913185,125.4274280066602,126.16222894797102,126.49058435019106,126.7366930861026,127.07333489973098,126.13059196667746,126.7297907229513,126.15417860075831,125.83211807720363,126.01169620314613,126.9048132468015,126.09486721502617,125.54082757094875,126.43469607876614,126.22448231605813,126.24607964977622,125.57393269287422,125.17653478961438,125.88209439953789,126.37170154228806,127.35781659511849,126.58189661009237,127.32334295567125,127.964311638847,128.0286012799479,128.53549905633554,129.20928549487144,128.9011769616045,128.53086088132113,128.56709744781256,128.90977349458262,129.6704699965194,129.16246659262106,130.09774397918954,130.32721744431183,129.78619974432513,129.42313396697864,128.4396367338486,129.24452793272212,129.4953768788837,128.70405812421814,128.938334972132,129.3502086722292,129.1364780846052,128.6072787749581,129.4148520193994,128.47448802320287,128.2420982858166,128.49187076836824,127.7593679362908,127.99651025980711,127.35374015336856,127.66275295149535,126.813121158164,127.5187652320601,127.94805365940556,127.0749168000184,126.22165418276563,126.77646178985015,126.23351604212075,127.10762438364327,127.82703556865454,127.21047200448811,127.29716594936326,127.63235846534371,126.73583309818059,126.15502717951313,125.32619632361457,125.28722560405731,124.42057651933283,124.93290628492832,125.7901776265353,126.54237726610154,127.51491712778807,127.82067857077345,127.0010008472018,127.94883676199242,128.7378526306711,128.9696595738642,128.1855238941498,128.63826666632667,128.7854316313751,128.96311813220382,129.77373490622267,129.71759560937062,130.58914710534737,130.99511073715985,131.56640950543806,131.1970842028968,131.22223112685606,131.18102073017508,130.39998752763495,130.52901620278135,130.42409280035645,129.51343888044357,129.54103336203843,130.4801097777672,129.85296181729063,130.59273318341002,130.92526157479733,131.90854997280985,132.0486062807031,132.160782889463,131.6336265471764,132.16143102152273,132.88591004163027,132.9342195293866,132.3434506179765,132.08165658870712,132.8161818087101,132.52613897202536,133.3984979763627,133.42494440125301,134.35667092585936,135.34164463588968,135.573750349693,135.3933479655534,135.34609977155924,136.17105612065643,135.34405185841024,135.74804612388834,136.16758416313678,135.42118992330506,134.51798330200836,133.9191670306027,133.64480261225253,133.4781921999529,133.5622129496187,134.0799314235337,134.53347075777128,134.28112416574731,135.2177923801355,135.3275207206607,135.22062637424096,135.75302626984194,136.33046894846484,135.68069487903267,134.73666725633666,135.07203433429822,134.71502796607092,135.52977119386196,134.70433998666704,133.89430887857452,132.96055326797068,132.81901848921552,132.78668808192015,133.19179772539064,133.08534124167636,132.74493553955108,131.7991620139219,131.17222472047433,132.12789081037045,132.94174895063043,133.7414869396016,133.46786974044517,133.136475589592,133.4565046695061,133.82452784432098,133.70130127528682,133.66624411474913,134.48566638026386,133.82652846165,134.6500000935048,135.24456246197224,135.36729027098045,136.15193764073774,135.16041770670563,135.00193125149235,134.08027647901326,133.35861360654235,133.36912041250616,133.05368628399447,133.43104406865314,132.53921216260642,133.21330972202122,132.63310560397804,133.57700244011357,133.41982474084944,133.724197790958,134.3206568933092,133.6938430746086,133.81042691366747,134.4706947254017,133.70610003639013,133.71855533262715,134.05534441769123,133.1989693683572,134.03888745931908,133.57465300615877,133.67266575573012,134.4481890439056,134.67006587516516,134.60490550659597,134.229436323978,134.76819507125765,134.24385263677686,133.96912563266233,133.09263967024162,132.93765718489885,132.3498361306265,132.36094224313274,133.31907461304218,132.6794359833002,132.42794736241922,132.01340973284096,131.79779251897708,132.43843707535416,132.99596520327032,132.53043495863676,132.46100777061656,132.2499828627333,133.01383178820834,132.0336274476722,132.64503674255684,133.44242673972622,133.48851741384715,134.19116996834055,134.27050583111122,134.38829932315275,134.13882709201425,134.35780526371673,134.99877710361034,134.09173102257773,133.6370851402171,133.8958747559227,133.5201474125497,133.7276507052593,132.75258245132864,132.4786323667504,131.7283904212527,132.55436921212822,131.65860665217042,132.53964808024466,133.29406420700252,133.73693711683154,134.020407252945,134.85460536601022,134.84860776783898,134.90528238518164,134.82646249048412,134.55314604844898,134.89438159950078,135.80318392347544,135.1905961399898,135.22418130608276,135.32018359284848,135.08858105819672,134.13444747310132,133.64366023987532,133.4205617546104,133.43496361142024,133.4677818613127,132.84641151502728,133.5750942514278,133.29086546273902,133.01287564402446,132.74509351467714,133.20324716391042,133.9941825135611,133.0144885974005,133.25567724416032,134.06528821447864,133.27717487886548,134.0286813066341,134.09789482317865,134.3402937138453,134.5725957029499,134.00814033998176,134.9982590987347,134.14665264589712,133.81833783583716,133.90814932668582,133.58040346065536,133.98282394837588,134.5607227613218,135.51083967462182,135.8063156194985,136.67914258595556,137.18880134727806,138.11525921151042,138.8053670921363,139.65760995959863,139.72737852996215,139.113197802566,138.251890769694,138.5251390868798,139.42179423663765,138.71451052324846,139.4011835330166,139.19792578089982,139.27510304469615,139.21382160298526,138.9950807224959,139.3880238654092,139.8935461351648,138.9404439246282,139.2775456425734,139.03139721462503,138.15049624815583,138.8988387961872,138.94488759990782,139.63437209045514,139.6169704142958,140.18843086389825,140.1792185138911,140.43181766290218,139.50376986758783,140.08977057645097,140.5953356307,140.3081876495853,139.30936667928472,139.80920634185895,139.71661103982478,140.54236880177632,139.6292297062464,139.04175171535462,139.53065541666,139.20406633382663,139.41717134835199,139.47241244325414,140.3055426608771,140.24713898263872,139.6567928553559,139.3405988481827,140.19641508953646,139.4109515300952,140.0592490467243,139.31578521989286,139.05481401458383,139.15883915685117,138.47460404923186,138.70814718911424,139.3706644643098,139.8578837341629,139.41404638346285,139.61161274416372,139.20398151595145,138.76964957918972,138.32733633182943,138.2721410379745,139.23538408242166,138.66230108309537,138.58541605900973,139.295528201852,140.03782304096967,139.98501500627026,139.13650245172903,139.4704090906307,139.06881199032068,139.58503803424537,139.83659867476672,139.24843007232994,140.16596742905676,139.67469764314592,139.7505468199961,139.6377505878918,139.601708881557,139.74888310674578,139.64601354161277,139.47966717276722,138.57238806877285,139.39515223447233,140.3601077250205,140.80583681631833,140.28999256901443,139.33967279363424,139.7891765870154,140.44781846925616,139.7502039182,139.44597723241895,139.4445537403226,140.1384511841461,139.46715710218996,139.56758537888527,139.7442480842583,139.20217373874038,139.733589255251,140.16177574871108,140.14047523308545,140.06224664766341,140.81207824870944,141.39995513530448,141.11246548080817,140.9447092562914,140.81502931378782,140.24218551674858,139.90086352918297,140.27173279644921,141.04889053152874,141.55850971816108,141.63118746737018,141.97270224429667,141.245087638963,140.27129087178037,140.82692533591762,141.2857050918974,141.14442133437842,141.73269183328375,142.30745774274692,143.0851791682653,143.69240539008752,142.7649586778134,142.15911246882752,142.2310415036045,141.28444310231134,141.3198131727986,141.1434672246687,141.50778925139457,142.14222419494763,143.0951476227492,142.60235538333654,142.11708319280297,142.96275157807395,142.58258426887915,143.0883909240365,142.8152318354696,142.5268582017161,141.98880197806284,141.07193155121058,140.1792441480793,140.8560912758112,140.18632431933656,140.4139303471893,141.29428253043443,141.37118673324585,140.66481767455116,141.14986287383363,141.2379849855788,141.79916890291497,142.16322695231065,142.18461106112227,142.08308638026938,141.28799432655796,141.56972605083138,141.87911693379283,142.7730762641877,142.2425909745507,141.97409867774695,142.12175158550963,141.29821003600955,140.89257107954472,140.42186700273305,140.918983082287,140.92470766464248,140.7342072161846,141.71129777515307,142.33977151149884,142.23923713434488,142.70092836208642,142.65500373207033,143.4406188284047,142.74474241537973,142.00001237681136,142.33052936103195,141.3912025829777,142.2687108037062,142.91721582086757,142.60038463771343,143.33446855610237,142.94695987878367,142.51853068592027,142.21733143227175,142.88822486577556,142.76147432858124,143.54312120610848,144.13563846005127,144.76316580036655,145.6708699176088,146.44309817859903,145.65603456599638,144.93574861763045,145.56456696568057,146.3408171525225,146.92392996000126,146.1966821900569,147.0120437243022,147.66484961053357,148.54002296645194,148.47087749186903,149.3767200037837,149.82309292955324,149.93250231351703,149.51421731477603,150.23228858504444,150.60549239069223,150.8927497798577,150.41785866534337,149.78894931124523,150.48328492138535,149.85536302113906,148.89677118277177,148.02859621448442,147.34075646894053,146.40578691475093,146.68139454675838,147.36091638589278,146.8672683131881,147.16942892828956,147.4798401533626,148.17564495746046,147.74034529086202,147.47762444615364,146.68952449643984,146.7457019169815,146.7836260749027,147.54577814787626,147.6955757313408,147.51011157780886,147.29774118587375,146.76756840990856,146.09653701120988,146.11753393523395,146.34070748416707,146.5752985230647,145.921360402368,145.16765927895904,144.2098348927684,144.26370224682614,144.9689710722305,145.7253561867401,145.1617884123698,146.1428179545328,146.70560709852725,145.7660930515267,145.5693703815341,145.69778750371188,144.84356633294374,144.85136387962848,144.9695966448635,144.70081446040422,145.24166740709916,145.86011287476867,145.19608967145905,144.29195616254583,143.68662022938952,142.83228168124333,141.89751274418086,141.83034525159746,141.44941667001694,140.79548682132736,139.80040328297764,138.9705176576972,139.8745306278579,140.84062379598618,140.1077064499259,140.41998780565336,141.34856125479564,142.30800505261868,142.73293372569606,143.47451343527064,144.45228454144672,144.58416311070323,143.97247637063265,143.84119101567194,143.23484058259055,143.7884339047596,144.00430526956916,143.89368678070605,143.5989239634946,143.42992849834263,144.1411653026007,143.74855438061059,144.47192394686863,144.19347386434674,145.06566083896905,146.0439980425872,145.98162777069956,145.15802415972576,145.09581607347354,145.99496954865754,145.7266016653739,145.64471402484924,145.11384601565078,144.83793229144067,144.4356673285365,144.81700415350497,144.0806369241327,144.70635915501043,144.19834613380954,143.8629662352614,144.37360183428973,144.59641443798319,143.76331629231572,143.43398763611913,142.9234205717221,142.14679552894086,141.57384450081736,141.48960484471172,141.38909949408844,141.64218416344374,142.54273343039677,143.04043727507815,143.09513994352892,143.42550201294944,142.4861214440316,141.76812557596713,140.90688699902967,141.71422059554607,140.8000756301917,141.44927810877562,142.27093499386683,143.1084911902435,142.20364211359993,141.91662518074736,142.390261429362,142.49607729027048,143.18021427467465,144.12204462429509,144.6675304947421,144.08968187496066,144.09012025268748,144.39619513507932,144.18223329493776,144.87384205311537,144.8719951910898,144.05267377663404,143.96390667604282,143.56089109834284,144.0199630409479,144.91236806754023,145.08662749035284,145.11925863986835,145.94637890532613,146.6082206121646,146.6172116030939,146.64432618580759,147.4412018773146,148.41716196434572,149.24149646097794,149.53288040310144,149.73776981187984,150.43469516467303,150.64853731822222,149.8405984728597,149.44899947708473,149.81119957240298,150.47668053396046,150.73403321625665,150.55445284675807,150.10164895514026,150.13352872710675,150.2290652091615,150.75967517541721,150.404642354697,149.59195115603507,150.0097208591178,149.2571395416744,148.95657130004838,149.6051182532683,149.56990749016404,148.77806405117735,149.26091550663114,149.92379462253302,149.13192859850824,149.13967476971447,148.72324741538614,148.0881978222169,147.41204546997324,146.69211322907358,146.29021703032777,146.86820641811937,146.08198543870822,145.48596427496523,146.2605269276537,146.28557747090235,146.7346232687123,146.7405538028106,146.19163572322577,146.29782261466607,145.53813105076551,145.3288535089232,145.5874578873627,145.14131440361962,144.9089508820325,144.8148771203123,145.38551853364334,144.42117534019053,143.9351708726026,143.88240727689117,144.33533799415454,144.88459335500374,144.1654890566133,144.11327231582254,143.97976192412898,143.56065492331982,143.9530969634652,144.1590051986277,143.33117729378864,143.5470529999584,143.3333663479425,143.38671498792246,142.95529641397297,142.5168138393201,142.18269493756816,142.00947870966047,141.50601239828393,142.31774332281202,142.52400441421196,143.20183409610763,143.4946447238326,144.28187236003578,145.2398457895033,145.02196004381403,144.1590165491216,144.33394734095782,143.56360277393833,142.73597806040198,143.2890511006117,144.21567125432193,143.38621872663498,143.3470955947414,143.67535398947075,144.53116312576458,144.04348872229457,143.98468818841502,144.91700758878142,144.3816668158397,145.1321985637769,145.80178672913462,146.34918426116928,145.8088216483593,144.92444259114563,145.55206814128906,145.5605453220196,144.70861893892288,145.31103881727904,146.21024939697236,145.49825998721644,144.90557839535177,145.47820389131084,146.22824570909142,146.42092824541032,146.6850115209818,146.38628259906545,146.6291993726045,146.59133117087185,146.62240095669404,146.66657578246668,145.7733478602022,146.16733895009384,145.95681633846834,145.09431445552036,145.0884003941901,144.92066129436716,144.02562429616228,144.89269402250648,144.2427348624915,144.17777308775112,144.5818669195287,144.66173789650202,144.92661892157048,144.38897298276424,144.20208525797352,143.9247029926628,143.81424243049696,142.8171338266693,143.30862060375512,144.11962724197656,144.105546889361,143.45411787787452,144.08380633499473,144.15573011292145,144.17267039697617,143.7838849015534,143.7243895418942,144.28588683297858,144.26805926905945,143.43904598476365,142.95493428455666,142.46758078271523,143.4034469393082,144.15887156361714,145.01060082949698,144.67031169123948,145.48143053241074,146.15296772914007,147.04439764795825,147.8074929267168,148.29575571417809,147.56948343105614,147.2447199220769,148.20460791047662,149.13481382234022,148.61939758015797,148.2559753828682,148.14556090300903,148.0526653006673,147.1445715953596,147.81070829788223,147.44389152992517,146.8961659972556,146.61410093028098,146.15906349476427,146.90173306735232,146.83580606710166,147.51129087759182,146.70440826704726,146.63801055587828,146.924228947144,146.02369452733546,145.86904281703755,145.4400131762959,145.8646417753771,146.7937227138318,145.81457235198468,145.88464150810614,145.32793941767886,145.68691641138867,146.13283026963472,146.77471185242757,146.31262599816546,146.47662865230814,145.93571541970596,146.09720018319786,146.60201097512618,146.9316744338721,146.7094137519598,146.00606010947376,145.59221405070275,146.07103401375934,145.22648213803768,146.1559681482613,145.7787940450944,145.84044768754393,145.55361570976675,144.8447415130213,145.69165153382346,146.6226216466166,146.76630054647103,147.6822248431854,148.27896341402084,149.0432340912521,148.3391471519135,147.35491488827392,148.2741537000984,148.67257650382817,149.09494253154844,148.26171303447336,148.31985923461616,148.18613497214392,147.41528521850705,146.73116406379268,147.6174244186841,148.0912819863297,148.29089403804392,148.10060785431415,148.87661924306303,148.43748515238985,148.9161701342091,149.55066479183733,149.62790332455188,149.0970300170593,149.55570819042623,149.10629361588508,149.8737681536004,149.3829638203606,148.95916244154796,148.09019642602652,148.50733983144164,148.16405856143683,147.86496828310192,148.0211384817958,148.4429467623122,149.34844119567424,148.74293315922841,149.36143927276134,149.91492841020226,149.5054838131182,150.4275472983718,150.27721107844263,150.91533734975383,151.71390641201288,150.84729835903272,150.14718399150297,149.1953314486891,149.29953214945272,148.8224311247468,148.36871300730854,148.255250799004,149.11890916060656,149.63587502762675,148.68088690098375,149.17159276315942,148.98518948303536,148.9731832407415,149.28578045452014,148.7778902403079,148.18353378027678,148.49872811092064,147.86648084409535,147.39626810047776,146.78129363246262,147.11986930156127,148.08588597457856,149.06351734232157,148.71709105139598,148.5686251190491,149.07425354560837,149.50052150711417,149.4228707361035,149.40526766562834,149.4502942059189,150.13034136081114,149.91551401792094,149.07860234985128,149.10916607175022,148.69261011108756,147.96514248056337,147.62743858760223,148.01233350811526,147.9701266712509,148.31735525280237,147.5901415226981,146.6502781449817,147.0854272749275,147.09616255015135,147.57736094621941,147.25188127579167,147.74873704463243,148.71932147350162,148.10364837991074,148.59897598810494,149.162797562778,149.75465220026672,148.86809725686908,148.3114261943847,148.60821051569656,148.65157846733928,148.0262144561857,148.1084152199328,147.84502239292488,148.37979792896658,148.13728153845295,148.72272788966075,147.99295602738857,148.86922591365874,148.37935187621042,149.36333696404472,150.3344238679856,149.94197974307463,149.50453541986644,150.03029398061335,150.17616996821016,149.9284190009348,150.47458768822253,150.82138670468703,150.62886555027217,149.87363312998787,149.17191898357123,148.35803521517664,148.5119346147403,148.45729814795777,148.11697576195002,147.4187559853308,147.81380239035934,147.88820860767737,147.79625550378114,147.1438222527504,148.00880113756284,147.88386095222086,148.55136386398226,147.58827766682953,147.75432535493746,148.71225726325065,149.55576902534813,148.92515807505697,149.29820477915928,149.3306233258918,149.75450887624174,149.38244398636743,150.3168618855998,151.10809670994058,151.3019748115912,150.59249485470355,150.94196903612465,151.60167748155072,151.19449184508994,151.83637129422277,150.86279573384672,151.22087887255475,151.78858435712755,151.67386069335043,151.61758959572762,151.83116052811965,152.6890630396083,152.07516901148483,151.28323344234377,151.35408768150955,152.01596761494875,151.38537378422916,151.10391832748428,150.63646218040958,151.10576905170456,150.34768237685785,150.02693496504799,150.74640827206895,150.61910912720487,150.90803100168705,150.55045970715582,149.86898163100705,148.89747342281044,148.85691336775199,149.1220395048149,148.63386961678043,147.74055355414748,147.36886641196907,147.63673885772005,148.09557296801358,147.30028670234606,146.99694439442828,147.99683121452108,147.4155208999291,146.5424942765385,146.58681301632896,147.31596347643062,146.91750835999846,146.57305556442589,147.0288438089192,147.372301123105,147.90561423217878,147.08404137799516,147.86175828054547,147.76682962710038,148.52849356504157,147.9194216830656,148.39918819488958,148.91536888293922,149.02813809225336,148.03036850411445,148.24623439460993,148.22479895921424,148.95490100048482,148.2569829300046,147.2905431035906,147.21884837839752,147.6091936151497,146.76723188208416,147.0794105278328,147.0930847376585,147.0296436729841,146.18208405841142,146.9001857941039,146.40246869204566,146.18432973325253,145.19542979029939,146.0101145748049,146.765804130584,146.16326407995075,145.72892294311896,146.32134102797136,147.07138979807496,147.1242787996307,146.96139158774167,146.8868869296275,147.85973978741094,147.04718793928623,147.01060046255589,147.07881544250995,146.5643562967889,145.92019199486822,146.13371614506468,146.92930749058723,146.60354192834347,145.73591920454055,145.9013733859174,146.54835948394611,147.45280053047463,146.46309626288712,146.9346898519434,147.77460285648704,147.61295590735972,147.25699082575738,146.7874858235009,146.20289525249973,146.90406726207584,147.59296001121402,148.1097949463874,148.52731611346826,148.24677649978548,147.63267316296697,148.31309556448832,148.13564786640927,148.23105565365404,148.78053658781573,149.75700551783666,150.62390993349254,149.86266772216186,150.5245562759228,151.00902388244867,151.20825032424182,150.89167866669595,150.6481797466986,151.40965853771195,151.71235848218203,152.68929899670184,153.5921482159756,152.9373855572194,153.00014303484932,152.80785776581615,152.6344515788369,152.65880846371874,152.30050865421072,151.55301583837718,151.6432508029975,150.9504909934476,150.85209385072812,149.98083870764822,149.99523904826492,149.72863618656993,150.51492001861334,150.01786766154692,150.20212955074385,150.2665148768574,150.00107468711212,149.5971952257678,150.2236625086516,149.74059409694746,150.58022170048207,150.36376504879445,149.57194501906633,149.30223934864625,148.99721982656047,148.06987197278067,147.16369664529338,146.81072367588058,146.43941777059808,146.77487426577136,145.86233782907948,146.17712835315615,146.31058659916744,146.64275636337698,146.03182969335467,146.66303930664435,146.391853061039,145.9252726114355,145.97283972986042,146.3708347347565,146.4114949251525,145.60575928073376,145.50783678190783,145.6781612643972,146.4840101795271,147.25635459600016,147.75247929850593,147.94138546846807,148.49135184148327,149.4335302473046,149.8811597027816,149.07797605125234,149.74092881195247,149.8241782397963,149.2175296107307,149.18187096947804,149.79560816800222,149.4587969649583,149.22834079898894,149.2464857501909,149.02385532390326,149.943518191576,150.01913484418765,150.3214300093241,149.80041035730392,149.54474497912452,149.26796424668282,148.400900317356,149.04949022922665,149.75251300167292,150.27604404184967,149.99184778053313,150.47018293803558,150.26141671463847,150.44715089909732,149.52481365250424,150.23702248046175,150.40841376082972,150.6227994626388,150.40922984899953,151.1760921520181,150.35376983648166,151.05720420414582,150.641438562423,150.43173589929938,151.17710701283067,150.59793382976204,150.2016760050319,149.45618067029864,148.656781506259,148.61131137050688,148.94825106393546,149.82445602025837,149.04096194310114,148.83144864533097,147.96165287774056,147.0034494511783,147.10328545747325,147.72542020492256,148.31197904516011,148.49636508291587,148.76861835923046,147.92012162832543,147.28354916814715,147.20835428964347,146.70714044896886,146.21753539750353,145.44128919905052,144.574161444325,144.3405694393441,145.29088507266715,145.37908771820366,144.97058132011443,145.50308131147176,144.81364881899208,144.76638755062595,144.69831625605002,145.52743952255696,144.61381713300943,144.44685686007142,144.5209318776615,144.3430712642148,145.29088581446558,144.97319068852812,144.4570240834728,144.89820060692728,143.92829893855378,143.91026267781854,143.60009214887396,143.20029248064384,143.74444730207324,144.7061990024522,143.82946966215968,143.568717608694,143.05359203740954,143.22153138928115,143.05367647018284,142.221947834827,142.41813492495567,143.16850401135162,143.98402614844963,144.95928801503032,144.3017686540261,145.065872464329,145.19031355250627,145.88741859048605,145.34222569316626,144.83516792859882,144.35462794732302,143.44297763099894,144.0176704232581,143.06230640271679,142.88886553281918,143.51192982541397,142.94562280084938,142.01441208366305,141.37648298963904,140.38735888525844,140.5734127559699,141.42563445772976,141.32040321361274,141.18944042455405,140.87849444849417,141.600511635188,141.5325061273761,142.37305291602388,142.37925874534994,142.28968690428883,141.41104662651196,141.0606111320667,141.39736254280433,141.9389820084907,141.07186118420213,141.61406082240865,142.00261172978207,142.3418629746884,143.12277982430533,143.66462858580053,144.0876281694509,144.16736620711163,144.76019984530285,145.54948577005416,145.07597177987918,146.06469910778105,146.4512657201849,146.18798416061327,145.38875065697357,145.90789464116096,146.37289829878137,146.3093756022863,146.5096446000971,145.63965343218297,146.5693199322559,146.483588358853,146.1739723496139,145.4045353922993,145.94783855602145,145.16524336766452,145.56414450099692,146.17181242257357,145.73178455699235,146.7024392853491,147.54332342743874,147.3315126108937,148.24113117158413,147.66191740334034,147.59521748498082,148.1214013271965,147.18899843795225,147.18022383144125,146.2352739055641,145.75673364847898,145.2331736702472,145.11790761398152,145.81941436370835,145.60482806293294,144.66211176803336,144.11168784089386,144.16607343917713,143.29344575526193,142.39664411637932,142.32510233018547,142.98872148804367,142.2486641285941,141.94749426608905,142.82345466781408,143.7867066608742,143.52579729352146,143.225960358046,144.03000188292935,143.76312802359462,144.0877021648921,144.4531287867576,145.26130322692916,145.64092886680737,146.4326571766287,147.27487392583862,147.42844594363123,147.04215289000422,147.5937499566935,146.94251133920625,147.05968054244295,147.14965039957315,146.86990648088977,147.006569060497,146.34925242559984,146.5267589124851,146.09870283165947,145.2751035504043,145.1677731005475,145.93182123312727,146.89280650904402,147.84328979905695,147.2942387238145,146.60846452368423,147.31327066430822,146.41038801986724,146.32184755196795,146.49849753035232,147.11412649787962,147.08726553805172,147.71313452115282,148.48978609358892,149.19126925617456,149.31203503068537,149.26712747802958,150.103506592568,149.5520512969233,149.5171899064444,148.68163093645126,149.17385446978733,150.0318878106773,149.77425326313823,148.92655533365905,149.13654768560082,149.8352633411996,149.16468603350222,148.74273247411475,149.41500186081976,148.65487485332415,149.13068844238296,148.42694562813267,148.08268389245495,147.68520787125453,147.27248826390132,148.17795499740168,148.04680373705924,148.73709749383852,148.92247109301388,149.29346192255616,150.28314440976828,149.3805241426453,149.21052190475166,148.80617861123756,148.09131141984835,148.62223055632785,149.1919080382213,148.40717789018527,148.70167035562918,148.44322168268263,148.15706303995103,149.11729946546257,149.11712586693466,149.4776151040569,149.60150564461946,149.5911805150099,149.8144546141848,150.1787910228595,150.29622488003224,149.84376017795876,150.04956810595468,149.40917397802696,148.42427332745865,148.57046510232612,148.71085177268833,148.59413758432493,148.63180361222476,148.88346796436235,149.48818605113775,148.9628587346524,149.07972687203437,148.54844207968563,147.60177960945293,147.65769196022302,147.50345698650926,147.8986584818922,146.95534430770203,146.01158208353445,146.51408565184101,146.2348079783842,145.38803399866447,146.18664583656937,145.7672729594633,146.3396216421388,146.3546285419725,145.40231207804754,145.99849959928542,146.24178255256265,145.32283430127427,144.65639392426237,145.58723519789055,145.59817293146625,145.64368967199698,146.53143188823014,147.4855807009153,147.03065847419202,146.81637035962194,147.31272287666798,148.15668894257396,147.30282457079738,146.90318746771663,146.13961040321738,145.66194093972445,145.04305571923032,145.97098327660933,145.04783155443147,145.05964517220855,144.6654196237214,145.57297724857926,144.69180690543726,144.68400937365368,143.92227874603122,143.601103621535,142.77466003969312,143.4292465741746,142.65836627408862,142.09919003443792,141.5726766595617,141.62451074598357,142.18901102850214,141.59617141494527,141.07325193006545,141.7505525634624,141.89389553293586,142.57265015039593,143.1317038005218,143.36668911157176,142.77257234184071,143.50416860217229,143.19906692253426,143.4006237955764,142.8743476564996,143.03472029278055,143.52818413777277,144.1431518001482,143.2935367464088,143.9850802468136,144.24542765552178,143.84419029625133,143.57491532480344,144.45879757171497,144.00984407728538,143.3549994295463,142.74753081332892,142.62717147404328,143.28845833521336,142.54394655209035,142.07141646835953,141.71280747372657,142.12676768098027,141.67239021649584,140.96189059643075,140.77486471273005,140.4657491222024,140.53853841032833,140.02954827900976,140.2435884848237,139.6794705754146,140.50285959104076,139.65008227946237,139.0278214374557,138.90883602481335,138.93742151884362,139.0564986136742,138.53305430617183,137.9269034792669,138.41899050073698,138.88077809801325,139.01693213637918,140.0017922660336,139.2698298553005,140.1571582709439,140.22776162112132,140.96784505154938,140.6072591394186,139.91578482929617,140.72877139551565,140.59108001785353,140.79443962220103,141.23239774163812,141.76797571964562,142.70930010266602,141.97978048073128,142.43887370219454,141.69127144943923,141.80213783867657,142.7094732131809,142.94195062853396,143.72089103329927,144.42219982715324,145.0278507634066,145.32677205186337,145.82123415358365,145.5240921471268,145.37338903127238,145.60849540121853,146.09133847197518,145.60987627133727,146.3574666804634,145.6346390428953,145.71814480237663,145.7254293845035,146.440682108514,147.34346029069275,147.35822497867048,147.47155111469328,147.00076794298366,147.77771980315447,147.79870012123138,147.60060213319957,148.34116484876722,148.6800370835699,149.2639296837151,150.0877047837712,149.99424786819145,150.87682196125388,151.37511471379548,152.1547039700672,151.92163667455316,151.07720350287855,151.41210307972506,150.5191893223673,150.9995672116056,150.96419931808487,151.82239986024797,151.52015057951212,151.76092230901122,152.15952056460083,152.5457422840409,152.75325239356607,153.4607096496038,153.12484881142154,153.24317122111097,154.08706719148904,153.61581308208406,153.52372119016945,154.1127650886774,154.19002114841715,154.1811147769913,153.4551521781832,152.7261411100626,153.28588009998202,153.2385387965478,153.00619640992954,153.79335064068437,153.8281069281511,152.86503838188946,151.9109738888219,152.63183421408758,151.83679852075875,151.37106002727523,151.5668749292381,151.90438823821023,152.12736636633053,152.28472124924883,152.96744828578085,152.19629361433908,151.7546919505112,151.6283146655187,151.31450239615515,152.19200184335932,152.92687273398042,152.2064902484417,151.84303476242349,151.71764053590596,151.85462734568864,151.05369767639786,150.6499677905813,149.80628265580162,149.6706732925959,149.6677545341663,149.1808663229458,148.63984412094578,149.0215256693773,149.37410080153495,148.44707984058186,147.84435815922916,146.90353343309835,146.2749539129436,146.38331528520212,147.09041627077386,147.95104587683454,148.5699327904731,148.1295116757974,149.00272375438362,149.55564417224377,148.79900112515315,148.19190097646788,148.25555217871442,147.28688192693517,147.04459640663117,147.10062683187425,147.46949482616037,146.92944497428834,147.14146192278713,147.58856033766642,146.81495583802462,147.55360582238063,146.60412705736235,147.2171089053154,146.25738021265715,146.21822946006432,145.28369510453194,144.84472806565464,145.2093024533242,145.9329026550986,145.32765662111342,146.23393008997664,146.39747443748638,147.32228362653404,146.75347286602482,147.23743424005806,147.63439596258104,148.02499360218644,149.01405947189778,148.9371374459006,148.6649315096438,147.81769720371813,146.9480762630701,146.2019823002629,147.01130982814357,147.38845847407356,146.72496402682737,146.468351255171,147.31728997966275,146.3220039443113,147.19372372841462,147.98651638440788,147.9335107668303,147.20290573500097,146.58479385310784,146.10159365320578,146.65384374046698,147.15748402429745,146.2631593090482,146.64494561497122,147.27699893340468,147.52923581609502,147.44158679479733,147.65510335518047,148.25207767542452,148.1027584504336,149.0170662482269,149.3918018406257,149.26653819857165,149.9975906368345,149.7541444050148,150.4246887806803,150.6654506237246,150.2540720924735,149.90295217605308,148.95735644781962,149.40144336922094,148.4344567959197,149.26042277552187,149.9903601082042,149.4847535067238,149.28360653249547,148.84844971820712,149.73077700426802,150.3373102862388,149.3503350559622,149.70099128596485,148.70531759550795,148.70948777580634,148.1764228399843,148.73627251200378,149.34477827092633,149.72501888964325,150.22625233512372,150.52697351854295,150.4200205146335,150.176990958862,150.32379272626713,149.681865606457,148.86879456881434,149.81492165615782,149.6511084837839,149.2629702752456,149.7326101399958,150.2655092603527,150.36321906000376,149.57901627896354,149.24915726669133,150.18415698688477,151.01913477061316,151.05249550100416,150.49515409814194,151.23050775798038,151.81571965059265,151.77568807825446,152.25296767195687,152.66196645377204,152.7168233874254,152.8331958828494,152.40189549233764,152.87122458219528,152.13630482601002,151.57778453221545,152.3456694772467,153.226320927497,152.31170300859958,151.57989520812407,152.53268257621676,153.32835018727928,153.340136770159,153.29562338115647,153.45025119977072,153.14913959940895,152.31429758714512,152.20638604322448,151.76392240682617,152.45508484682068,152.78742255130783,153.38703712401912,154.3303142976947,154.43862252263352,155.17975572496653,155.09307353850454,156.0626523294486,155.985269759316,155.18997882679105,154.55996199557558,154.26893713325262,154.9473609798588,154.00620170403272,153.3526119478047,154.16185688832775,154.10188888339326,153.16183926397935,152.51762553071603,153.01565717393532,153.53529249783605,154.27754432335496,154.52887852862477,155.20105993608013,155.70814155600965,156.43473461270332,156.7250936147757,157.0618446744047,157.61683716531843,158.13141951709986,157.5342971519567,157.7209248789586,158.52461341535673,158.89696102170274,159.5927589503117,159.19509442755952,158.94520811131224,159.73171738395467,160.004806347657,160.39987186761573,160.3125511566177,161.29947700025514,161.22845664527267,160.7182720368728,160.5707278889604,160.70799942547455,160.2690429999493,159.99533548066393,159.25117896776646,159.56186537537724,159.4359264583327,160.31957656890154,161.13236295012757,161.6242676107213,161.47619726741686,161.93551948480308,161.94683932699263,162.76763273775578,163.24806640902534,163.66960407793522,164.65067824255675,164.0635888846591,163.33570538181812,163.37396691413596,163.68041244708002,163.79502832656726,163.00056401919574,162.26640284946188,162.18099224800244,161.94931438798085,162.8814799315296,163.1029735263437,163.56166410120204,162.89339204318821,163.6826776880771,163.62450521346182,163.01292146835476,163.24216692941263,163.8701861370355,164.54838890163228,165.2346314652823,164.3918343866244,163.46800719574094,163.03904987638816,163.02518064389005,162.30365673499182,162.4480753862299,163.26492683589458,163.2309082490392,163.61499769240618,163.7896862165071,163.57215781370178,163.850512790028,164.57570496108383,164.84146840171888,165.1725730127655,165.74263724824414,166.40794113650918,167.17203095182776,167.80203561484814,167.08642168855295,166.19481636118144,165.80127162020653,164.90990420244634,165.36697712680325,164.60432642465457,164.75041903508827,164.317507898435,164.72441077325493,165.14831375144422,164.7240753849037,165.57725638430566,165.410389397759,165.5577243277803,166.25155138364062,166.62023668456823,165.64679352054372,164.71157218376175,164.43649201840162,165.39612498879433,164.8756180028431,165.13667126651853,164.41093214601278,165.02319064550102,165.81816178094596,165.41678334400058,164.60033942665905,163.70882556354627,164.53102001408115,164.89344997610897,164.15480612171814,164.93176907952875,164.42606437485665,163.90763172181323,163.0499449991621,163.39054965693504,164.26554549578577,163.47180502675474,163.06040477845818,163.44394353358075,162.65196515154094,163.4530501589179,163.91202207608148,163.22056970186532,164.09820074914023,164.69876961689442,164.58369756955653,165.1803678702563,165.25572374416515,164.58735711406916,164.4472712557763,165.3419334301725,165.27175553515553,165.3650853894651,165.6495057940483,165.47186237294227,165.7854487420991,166.4299858910963,166.61078924266621,167.529815683607,167.69641508487985,166.7577169551514,166.43734331382439,167.0311347390525,167.71069686673582,167.36786649003625,167.21089004958048,166.2979022427462,165.758987323381,165.19314831122756,165.8035339070484,165.97704158490524,165.0922336326912,164.30278582079336,164.18433092115447,164.46797842253,164.4434330300428,164.0316774006933,164.6817791084759,164.55668708262965,164.34089734358713,163.8965168329887,162.936146419961,162.29696677997708,161.33552160905674,161.8662473349832,161.66425384022295,161.90855386387557,161.21820944175124,160.4318391061388,160.06966987717897,159.61795777268708,159.907231612131,159.567378398031,158.95232866238803,158.8903272645548,159.22923859767616,159.89524058857933,159.60268679168075,159.90555723616853,160.855368105229,161.29077463783324,160.7176801180467,161.60889572789893,161.01795863360167,161.9987304690294,161.12084716791287,161.53396883700043,160.55020763073117,161.21006836462766,161.70796261914074,161.12752243271098,160.75329531542957,160.4799595316872,161.05194628238678,161.19436879828572,161.58394997101277,160.62883036164567,161.10118722124025,160.12811418715864,160.10681730881333,161.09045895561576,161.75742835458368,160.94806022709236,160.36744768405333,160.52826391067356,161.15561121841893,161.4873797148466,162.0270160245709,161.3954124241136,161.79858822515234,162.03983286442235,163.03327059186995,163.1475500566885,163.63663776870817,163.23179171979427,163.8644283269532,164.43238087696955,164.88637018296868,165.6693926649168,166.58765652775764,165.61156801087782,164.79062725696713,164.85871625924483,164.05337878968567,164.57712455512956,164.94588496536016,164.42363130440935,164.24604330584407,164.3837022590451,163.70615745382383,164.08706743828952,163.35277868807316,162.52568170940503,161.98612820589915,161.37468392541632,161.22632612567395,160.97610116470605,161.3004465396516,161.97910038055852,161.10793852200732,161.11824829457328,160.23978512221947,160.39387613581493,160.30721737165004,159.7833586363122,160.7535594124347,161.14433588273823,160.6987093836069,160.12462988356128,159.27571108285338,159.4859476359561,158.9853598298505,158.55510002654046,159.33437311463058,159.84269855776802,160.1757798558101,159.99391192616895,159.23809133470058,159.60089661646634,160.52031112276018,160.75118895387277,160.7146695968695,160.9284513532184,161.63856199430302,160.9168400913477,160.5397202721797,160.7440973878838,160.72729757800698,160.89564636535943,160.20724161202088,160.64393997006118,161.3811075896956,162.30582930427045,162.19967041211203,163.05423332983628,162.59199672890827,162.9612206411548,162.28538843244314,162.4254517816007,163.07434229413047,163.8104386641644,163.41206810669973,162.67683592624962,162.12635069992393,161.7252465840429,160.75270849838853,159.9938455116935,160.37666903808713,160.21127131255344,161.0318108247593,161.3597059752792,161.4039609017782,160.64419431844726,160.08600933244452,160.5182873136364,159.74483084771782,159.39906868664548,160.1279679988511,160.39906020276248,159.8430849867873,159.45272189425305,160.07934464607388,159.3681605439633,158.8670965693891,158.42196463467553,158.29983555804938,159.06318117165938,159.280411073938,158.95605958253145,158.60238040145487,159.56675021257252,160.229545741342,160.8005597582087,160.17002901202068,159.75669800210744,160.5556162451394,160.11637725075707,160.78232781076804,160.42704322887585,160.12834687391296,159.93164736405015,159.74703566078097,160.50186271360144,161.29928878555074,161.1397148692049,160.87183535285294,160.4217638480477,160.0791589114815,159.26273971237242,160.2471186411567,161.00549305137247,160.169986394234,160.1445677531883,160.35320035880432,160.77498880261555,160.47555614449084,161.4326137099415,161.76039193337783,161.85406045988202,161.56267819553614,161.34397008875385,161.75348066585138,162.30609952285886,163.26880741445348,162.28757895994931,161.87946815183386,161.9220710825175,162.33623423380777,163.27888567838818,162.73905002838,161.89127751393244,161.95786847826093,162.3503553448245,162.63028345862404,162.73556708963588,162.23317120457068,161.8462025076151,161.372883239761,162.34359043790027,162.28113915445283,162.48942852392793,161.57275032438338,161.28552222717553,161.45297197857872,161.54208265570924,161.50411539711058,160.69416725682095,159.89353331783786,159.49039208423346,158.58847593376413,158.27629610151052,158.89642211981118,158.61815511621535,159.0669876402244,159.70910643506795,160.58084566844627,159.7985336673446,159.63993784366176,158.786376086995,159.46020451607183,159.33206696715206,159.69341838918626,160.12391517264768,160.04947984218597,160.44675164669752,159.87347007449716,159.2014346108772,159.38331877673045,159.284001970198,159.06213905103505,159.91573040094227,158.9280967679806,159.48015577392653,158.74336296785623,157.77675527194515,157.38037818437442,157.09996144054458,157.7148195724003,157.9574861684814,158.79389469418675,159.035244400613,158.36855160677806,158.87693378608674,158.43552687205374,158.1292120711878,158.53259313618764,158.39524826593697,157.65500550204888,157.7057766644284,158.03115485142916,157.55680097127333,156.6421418460086,157.2089557419531,158.1444753310643,157.7690939414315,158.18979069031775,158.18384543200955,157.85040781926364,158.07769894367084,157.81502946699038,157.51504491548985,156.94626096310094,156.82036491390318,157.35196994571015,157.49146440345794,158.43595278915018,158.0953351375647,159.0343161826022,158.20164411747828,157.85837798938155,158.83870037226006,159.62632439704612,160.16326214373112,160.85668819677085,161.44674141937867,161.33679043641314,160.49042291846126,160.2178692626767,159.5535274343565,160.27817246643826,161.1654444024898,162.0553811043501,162.84499362343922,162.3440164187923,161.75642906827852,162.16619625268504,161.29099724208936,160.54632046213374,160.07097935630009,160.48176815500483,161.2165758521296,161.59086080500856,162.5105026010424,162.24789362121373,162.39956355420873,163.21679909015074,162.75608183583245,162.1156189860776,162.9152829470113,162.7056446163915,163.15396633464843,162.30078410357237,161.92750454647467,162.83564563980326,161.91167535446584,161.4769038092345,161.4483526465483,160.89954527886584,160.93488938594237,160.70275991875678,161.64102179324254,161.76223505660892,162.45511930482462,161.5137570798397,161.06814324948937,160.25899730622768,160.84787438437343,159.87792357988656,159.86506390711293,159.52927842596546,160.5148904910311,160.1014840300195,159.22292857943103,159.59858916746452,159.07212737668306,158.53154980158433,158.88030603015795,158.28860780736431,157.7538625295274,158.26592430332676,158.443985784892,158.37139655835927,157.90384811209515,157.69770409585908,157.04222017992288,157.10792620899156,156.13320311252028,155.74974156403914,155.0252930726856,154.94635181687772,155.48685144772753,155.59422559803352,156.42134118266404,156.50010561337695,156.2789064962417,155.3775783078745,154.60048757493496,154.73760131234303,154.20337971812114,153.41120338859037,153.97822443721816,154.57092217821628,154.90674789296463,153.91433955170214,154.22562394151464,154.71884439326823,154.53299028147012,154.92915341025218,154.7387746628374,154.39937201701105,155.3493784996681,154.85952834412456,155.7136208708398,156.36767452722415,156.94035082915798,157.39129049284384,156.54441414168105,155.8395589021966,155.91330831730738,155.39326728368178,156.12046147463843,155.15845202608034,156.08765527792275,156.55046436330304,156.04951826343313,155.22589975222945,155.43737756321207,154.7095243590884,154.44362280191854,153.82270590635017,153.98964689997956,153.27481833426282,153.9455646011047,154.36846103612334,155.1442647925578,154.21629887772724,155.02305495971814,154.77746381657198,154.99909644387662,154.58083188533783,154.81438833102584,155.2226228043437,155.9579938314855,155.63412026083097,155.76466082874686,155.88953642407432,156.57002291781828,156.47585166385397,155.51368484459817,155.06073940265924,155.34888608148322,156.2487118365243,157.05690260371193,156.53966528503224,155.72710528876632,155.67861933773383,156.02765988186002,155.11408120347187,155.5488266912289,154.96426110342145,155.62769590551034,155.03308674134314,155.4343299055472,155.9989749691449,155.02445219503716,154.10236733406782,153.964186580386,154.53698186716065,154.82169522019103,155.20881066471338,156.0782210365869,156.71511876676232,156.16328206984326,156.4732297938317,156.4016720885411,157.184028419666,157.49333701934665,157.92240174906328,158.88526554079726,158.37393909599632,159.27834103815258,159.90365165751427,159.4793636337854,160.09049592539668,160.34878129139543,160.0281289992854,160.78536399360746,161.12552877236158,161.7130062491633,161.28409331850708,160.69808025006205,160.35944706993178,159.79287349665537,159.6517240521498,160.20211661513895,160.33803377021104,160.5517124691978,161.09016579110175,160.82680361205712,160.01971770916134,160.29496918758377,160.86366981593892,159.95251975487918,159.13384902477264,158.91668364591897,157.9841802814044,157.7536248518154,157.4937138785608,158.10391218727455,157.70684361970052,157.9498774614185,157.4225526037626,158.19872060557827,158.90046551031992,158.14371208567172,158.9793158606626,158.15497730206698,158.2346759531647,158.98596025817096,159.4198189158924,158.90942506026477,159.26377311814576,160.0723506086506,159.29010960878804,159.66239620372653,160.33109695790336,160.09591545490548,159.4026874275878,159.97574786935002,159.26398215070367,158.53850401146337,159.0739417602308,159.08539539622143,158.6548488875851,158.83529984485358,159.43681446416304,159.9675820642151,159.24194948235527,159.4422751800157,159.48589733755216,158.91468001483008,158.99812855571508,158.9230425101705,159.5285164345987,159.96876602666453,159.61306485021487,158.9924562056549,158.09094436233863,158.3706463119015,157.73213280783966,157.2597057609819,156.38766200235114,157.22773386584595,158.1428813766688,158.1853353595361,157.5937138418667,156.59837474673986,156.9277111114934,156.4127688179724,156.65668400470167,156.01091334410012,155.17205293755978,155.27931608632207,154.77527603739873,153.98327837139368,153.92946725385264,153.93560250708833,154.36368869571015,154.3153930339031,154.92876014718786,155.34463029215112,154.99143820581958,154.24025109549984,153.82089068042114,153.36190127534792,153.9251441685483,153.0243991985917,153.30486461985856,152.72444761823863,152.92901674378663,153.19620712520555,152.82015492534265,152.64424008037895,153.36174259288236,154.01486134715378,154.81297354074195,155.80320631247014,155.75561618059874,155.47341483505443,155.97325709462166,155.61358083877712,155.5917866230011,154.85338961798698,154.91787318931893,154.0117768701166,154.94007627898827,155.3907068935223,155.1399673940614,155.65787103166804,156.04158953530714,155.74327344913036,155.26093821693212,155.95303931972012,155.4703561803326,155.36837949976325,155.4018141394481,155.06734126014635,154.41785282734782,153.59306323062629,153.64342774590477,152.9299109308049,153.85203797416762,154.8197026657872,154.70349832437932,154.7455395036377,155.05539235612378,155.47183720534667,156.01188616687432,156.41058549797162,155.49700411828235,155.70112475240603,155.2581544923596,156.19648193288594,156.24385419068858,156.37919605430216,156.53275589784607,156.38635770743713,155.64726442703977,156.3172014360316,156.443051725626,156.2876786631532,156.8424432007596,156.3631662731059,157.10194233665243,156.22095160698518,157.13412844436243,157.1569643029943,157.14047790085897,157.10510417679325,157.4637854769826,158.4603642867878,158.07760864449665,157.56694381823763,157.07938966853544,157.6157478117384,158.60582297760993,158.5111819030717,158.52044969424605,157.94659018144011,158.6097797434777,158.18308506114408,158.50772645464167,158.28894351841882,157.65137070138007,156.65258738398552,157.0343088186346,156.9685623939149,156.92287136567757,156.46778633864596,155.668463957496,156.32103173527867,155.70146463532,156.41466427128762,156.4725542096421,157.25755858048797,157.4388025221415,157.3922346853651,156.44327654363587,156.0375951649621,156.81512280832976,155.93865061923862,155.0185329639353,155.39230213593692,156.20689983759075,157.18225013138726,157.7885284763761,158.29012268828228,158.82712280703709,159.7687838790007,158.99124803673476,159.6110417903401,159.79149105027318,159.12413596874103,159.29519849969074,159.59911610744894,159.33060873579234,159.03347042156383,159.61663342732936,159.1059587681666,158.29620273038745,158.77996969548985,159.52369178598747,158.68053268641233,158.32015661988407,158.57825051853433,158.58373185060918,158.8365021175705,159.27358827646822,159.20385380694643,159.2282012393698,158.53979529393837,158.3348383656703,157.7400629320182,156.8122468497604,157.61671520397067,157.55958730587736,157.74640327785164,157.1408677957952,157.9261842034757,157.72374429134652,157.12572813685983,157.72544421209022,157.35254723532125,156.7523865699768,156.62855312088504,156.0614589122124,155.31270023761317,154.35212525352836,153.43452173518017,154.01628231955692,154.39211669983342,154.59908756101504,153.76310874009505,153.90427704155445,154.33250449225307,154.78410318447277,155.21338898828253,154.76775504136458,154.88467124896124,155.37069844454527,155.0891058226116,155.4637466976419,155.58380393590778,155.4712674212642,155.99626789754257,155.0103063331917,154.3557392503135,155.22837554384023,154.69554947596043,153.81487317755818,154.5756841604598,154.76876673707739,155.70783609058708,155.88566058361903,156.4039983972907,157.27451168280095,158.0287908599712,158.42917884141207,157.8710076333955,157.27109883911908,157.18274694588035,156.81935586081818,157.62701252894476,157.0680068777874,157.21100658504292,156.5841364590451,155.82114074938,155.9046346261166,156.6623917426914,156.15254755457863,156.5801882436499,155.99741560127586,155.13974134484306,156.08119591046125,156.73424140410498,157.04728613002226,157.3510480695404,157.39555664593354,157.24483048496768,156.98748588841408,156.1403312725015,156.69679501047358,156.2198472218588,155.72378251096234,156.21921510715038,156.7799205398187,157.44471436413005,157.40367007860914,156.72075477894396,156.5705465748906,157.3721963535063,158.25010858895257,158.13460906548426,157.35054977750406,157.69089354621246,158.35202909028158,157.97180529404432,157.44669923512265,157.6964252726175,157.97071835631505,158.30068661738187,158.944090932142,158.00270957918838,158.79121416527778,159.2018453013152,158.5622395039536,157.70284906309098,158.01215724274516,158.0745396250859,158.6598845939152,158.0383166060783,157.67106268601492,158.10240359371528,158.42599858809263,157.45395928854123,156.45525531470776,155.76938826637343,156.42513322178274,156.25661524292082,155.26300663035363,155.84247864363715,155.32808672217652,155.27397632831708,154.4423981718719,154.19361203629524,153.28723459364846,153.1969689638354,152.9279989944771,152.39970487263054,153.39483674056828,154.31932659400627,154.91975650470704,154.52374015096575,154.78035066928715,154.87431124644354,155.56442429451272,156.13020533695817,156.40514524979517,156.53441405529156,156.68769109109417,156.31780730979517,155.76301048509777,156.56201824825257,157.48733268398792,158.11668555112556,157.453499303665,158.18230422399938,158.1584072522819,158.75523072807118,159.60151961818337,158.94989265687764,158.59509058389813,159.14973201975226,159.1366778118536,160.02826849138364,159.4989289622754,160.46915127476677,161.1096825711429,160.91089941374958,160.38742515305057,160.6513498215936,160.03700127778575,160.45254167169333,160.3599511841312,160.18369784019887,159.3388514406979,160.06624565739185,160.7149154972285,161.32775766402483,160.5126439067535,161.24446268985048,160.45634170249104,160.20247886423022,160.31249810336158,159.63935084594414,159.6762831429951,159.2340632127598,158.48494780808687,159.100582389161,158.96324672177434,159.51306804455817,160.40112682199106,159.81467125099152,160.1955042304471,159.3545695329085,159.15595886437222,158.21437642443925,158.0881933788769,157.18378220312297,156.48326971195638,156.15989712625742,155.6998879420571,156.0195425543934,155.27785679372028,156.10272704064846,155.84901157952845,155.81890204222873,155.9800224765204,156.62478850316256,156.05146683426574,156.3405965459533,155.97845004778355,155.6184178562835,155.22602495225146,155.76647285278887,156.5307715930976,156.46441877773032,155.5300279473886,155.49864773405716,155.99564145039767,156.96059058327228,156.43278822675347,156.62593135796487,156.87882531667128,157.7564320913516,157.25491261668503,158.04259353131056,157.49546472122893,156.70546266809106,156.58874653559178,156.99253814201802,157.15213974332437,157.24715162441134,157.51298238243908,157.26461453502998,158.2076059365645,159.18957437900826,158.63164219632745,159.3955457219854,159.92984635476023,160.75267891213298,161.0693425135687,161.6981727606617,161.18155181128532,160.9529659380205,161.40137463761494,162.3545907610096,162.09654666110873,161.1505165398121,161.87862470187247,161.15294931456447,160.17734141694382,159.25280408095568,158.82494069030508,159.154071951285,158.47693091956899,157.6233193492517,156.74901929823682,157.60698781674728,156.83568666037172,157.4871907257475,158.37813916942105,159.2407474508509,159.20246030157432,158.86016856646165,159.26545471791178,159.65894346917048,158.6730157113634,158.95670226868242,159.07103289617226,159.0731987520121,159.31506665656343,160.27752056904137,160.83354244474322,159.8476307853125,160.55911150295287,159.8652375973761,160.60939418850467,160.74537409842014,160.2553600911051,159.46097117383033,159.18915134621784,159.7207081071101,159.97295146482065,159.43183341342956,159.5587901850231,160.05677205650136,159.13280808040872,158.91240564081818,158.17390667367727,158.92386145005003,159.56547159841284,159.1222935137339,159.82291584089398,159.50099346414208,159.05043035466224,159.7622996387072,160.56480505643412,161.33265621913597,160.65639355080202,161.618515543174,161.61060565663502,161.14501190651208,160.15860502468422,159.38922737492248,159.80135738803074,160.67114637466148,161.3513783114031,161.4976069573313,161.13742422591895,161.15688910288736,161.26241538161412,160.32792535424232,161.28159380331635,160.63258405262604,160.3165776352398,160.4065054859966,160.0601750696078,160.8658650983125,161.52861443255097,162.38101840065792,162.1419277684763,162.4533932125196,162.56334553239867,161.68821603804827,162.0023641884327,162.41413953574374,163.34199957596138,164.2298988220282,163.70638949424028,163.79989274265245,163.06398558290675,163.72211216110736,164.45313865784556,165.1925474186428,164.87782216770574,164.50997447036207,164.5107975518331,163.6130301025696,164.5030372403562,164.74572413181886,165.44412848260254,166.1609009806998,166.2906603817828,165.88513297773898,165.5877369926311,165.03483250597492,165.46255773864686,165.37908803718165,165.923911429476,166.54990119673312,166.56002640817314,165.91358639579266,165.3672637939453,164.8063450125046,163.87152587948367,163.94665622944012,163.33528968691826,163.10678722243756,164.067716258578,164.86808443581685,164.33158975467086,164.695579896681,163.75900579057634,163.66799412947148,163.0297730350867,162.9732014867477,163.66017906134948,162.97892098966986,162.5167687642388,162.93068851251155,161.96396684041247,162.94799506105483,162.29222566867247,161.90950594097376,160.97161046555266,161.61183048365638,162.27982420055196,161.51094107376412,161.5451062466018,161.0056740315631,160.46854543266818,160.7822898933664,160.24942057719454,159.35773288737983,159.27909341081977,160.04278275882825,160.3106202306226,161.2919025812298,161.32898850599304,162.1885353596881,162.1900376137346,161.46613588696346,161.55503659229726,161.94062430039048,162.61526625603437,163.5488621359691,163.185666909907,163.79177382821217,163.68597120884806,163.07287291856483,163.11400024825707,162.52767905965447,162.0067113386467,162.11936360318214,163.07466624723747,163.77977672033012,164.75407888786867,164.37545314244926,164.41671710228547,164.83887986745685,165.69082685234025,165.78278159210458,165.41857122723013,165.3371241344139,166.28982024500147,167.26091804075986,166.5954927476123,166.429090897087,166.81957410788164,166.83518053172156,167.72754952358082,168.40524045657367,168.64229216473177,168.96444677561522,168.9026931580156,169.40063018538058,170.16015164135024,170.37065400835127,170.787678363733,170.87342635309324,171.64972512749955,171.53501912625507,171.06414660764858,171.58148134406656,171.74708251515403,171.81851747212932,172.52048025093973,173.4525174931623,173.5368926813826,173.6097695589997,173.71635711565614,173.01985420286655,173.91694304114208,173.9812544034794,173.88899066811427,174.3182292045094,174.4242694932036,174.66575835552067,174.4227794506587,174.52682273462415,175.13474349863827,175.74327338906005,175.53446135576814,175.4526949254796,175.84076187107712,174.90574704762548,175.89012654684484,176.37771143997088,175.88576716417447,176.78858331311494,175.98098793346435,176.21678429003805,175.98498847847804,175.09795712307096,175.55651514744386,176.4962971988134,177.37872730428353,178.31373908603564,178.5061916038394,178.32729299599305,177.77530811354518,176.79019016586244,177.58252994902432,177.23215861991048,176.3693971973844,176.54141377145424,176.68212012387812,177.18934899102896,177.38812347361818,176.4355647219345,176.72931357938796,176.2176429615356,176.41162815596908,176.18012822326273,176.85337036754936,176.3263768660836,175.42909175669774,175.3081053197384,174.9498387160711,175.55960274394602,176.26228232635185,176.70285033527762,176.07157511916012,176.32060539210215,175.54870595876127,175.39795428607613,176.1298247058876,176.94269371638075,177.10908780246973,176.27236757613719,175.44247035915032,175.01846472453326,174.3310932982713,173.41034361114725,173.9791355165653,174.31936575705186,173.98466073302552,174.52585939317942,174.76707542920485,175.33546414598823,174.58411986380816,174.75477791158482,174.77694925526157,173.82520870910957,173.91951679531485,173.5846571875736,173.47689290111884,172.51707724994048,172.89443793380633,171.95276599843055,172.530841358006,171.9814600199461,171.11495021451265,171.88278225949034,171.21107124490663,171.7050037207082,170.78212696313858,170.71290535386652,169.91700753942132,170.43153361044824,169.98610866861418,169.78596474276856,169.6692285425961,169.64507436798885,169.31340087205172,169.45274450071156,168.66622685082257,169.63748539844528,170.14321357244626,171.12610992370173,171.29038837132975,171.7696470580995,172.533403347712,172.0877077933401,172.34705544263124,172.66138081857935,173.60627079429105,173.70499382121488,174.57903456967324,174.61072087148204,175.2815555781126,175.66910228179768,175.49385152989998,176.306851033587,175.72975748265162,175.347840027418,174.8390905908309,175.78174891741946,175.6793573689647,175.41822714405134,176.27588224085048,175.34747371496633,176.147570470348,175.63009821111336,174.83981024241075,174.0598466177471,174.76641535246745,174.71464348444715,175.4037204454653,176.10317844431847,176.03414480620995,175.27571953414008,174.6663996768184,174.98453254718333,175.1237792535685,174.1502868561074,173.19400715408847,172.40387266129255,172.37659185007215,171.5926486873068,172.07517417194322,171.96460464783013,172.71595013933256,173.41348519735038,173.60280167032033,173.44246536633,173.11134183220565,173.64726614020765,173.79748030286282,173.87073826557025,173.02665462810546,172.46994715882465,171.88891075644642,172.21587400417775,172.59385359752923,172.4703772123903,172.76001340243965,172.80977540789172,172.45944396732375,171.66008119191974,171.65597789967433,171.8331512240693,171.29163976106793,171.02693238155916,170.16543992469087,171.06358890188858,171.8161985911429,171.27075056452304,170.84155024494976,169.91085639270023,169.9908380890265,169.85342135187238,169.80962934857234,169.8557381569408,168.9818169232458,167.9956453917548,168.79120178101584,168.72012704936787,169.27094548894092,168.87362231314182,168.2755277743563,167.76011747540906,167.9912252370268,168.2258035838604,168.13789492985234,167.684863823466,167.90858189528808,167.53269060933962,166.71246839128435,167.15903607103974,167.6788971531205,167.82001754641533,167.27155855624005,166.80677176313475,165.96684090886265,166.25447670090944,166.93687504157424,167.63856706023216,167.7461909861304,167.80588051117957,166.9122864017263,167.60772660840303,166.95677879126742,166.537091427017,166.37589209713042,166.12232414260507,165.7557966071181,166.6512510376051,166.1814596890472,165.81021274952218,166.2443352676928,166.86546123027802,166.76759626111016,167.0468028075993,167.6914242580533,168.5433214479126,168.8435199377127,168.88765639578924,169.34336342988536,169.15855348529294,169.498408512678,169.88936430728063,169.8355017118156,169.3796376120299,168.68851809762418,168.0625270330347,167.71383281424642,168.38787217112258,167.88631142908707,168.48734903289005,167.50458922237158,166.64586117723957,166.1121047330089,166.7974803680554,166.1879343134351,166.27254647109658,166.50154141616076,166.17195303132758,167.00818511797115,166.52947937278077,166.3318722252734,165.6331706061028,166.25454703671858,167.24278079112992,167.6639105323702,166.99634924251586,167.5118413711898,167.233344017528,166.53398072579876,166.38428180338815,166.03834292292595,166.50533663481474,167.25912715028971,168.15856469376013,169.0260641379282,169.64379543298855,168.7929268060252,169.6342750992626,170.02522396901622,170.3201239244081,169.70305945305154,170.09254048625007,170.88907866273075,170.54294608253986,170.5740856071934,169.74439520575106,169.60752539616078,170.56815696926787,169.95215026009828,170.43770727002993,170.04784576408565,169.72302379040048,170.58952827192843,171.50600751070306,171.75725262565538,171.15189615264535,171.88232155097649,172.63485499145463,173.16861403593794,172.98266772646457,173.64988985285163,173.49352281773463,173.89855488017201,173.83913166075945,174.76712806522846,175.30329962447286,175.69615877838805,176.5016928454861,176.07629490131512,176.56872908677906,176.04627955378965,175.1916661723517,174.37385171325877,174.57389019196853,175.21414174884558,174.68312601512298,174.7865482098423,175.5313127124682,175.92955320468172,176.47341213282198,176.44535519368947,176.16610786970705,176.02999934041873,175.06118782423437,174.31421617791057,173.7510555917397,173.9339536111802,174.48639614321291,173.69914339343086,172.722101747524,172.13848729804158,173.0574855604209,172.57551634777337,172.25534386374056,172.42534406716004,173.2384320939891,172.38816064829007,172.96401478070766,172.66163742402568,172.8359241024591,173.0760275046341,172.47625225456432,172.1116402959451,172.2891006381251,171.9319615000859,172.49374956078827,172.63709970843047,172.4855828434229,172.94441141095012,172.2501053600572,172.36705012107268,171.5003313207999,170.94011997478083,171.15563408471644,171.36453521763906,172.35347153339535,171.87552679190412,171.85877646738663,171.41174151888117,172.17268284922466,172.60728264553472,172.56400242866948,173.40199417015538,172.79321508295834,173.54402323625982,174.51138376398012,174.4662802903913,174.00621123146266,174.48656934220344,175.1215826254338,175.77340702991933,176.72797576151788,176.90807471051812,177.64017707761377,178.02108099637553,177.05214938614517,177.17495943931863,177.8524168874137,176.87879712926224,175.98264294536784,176.62786096706986,176.4561412949115,176.5525666344911,176.50774975586683,176.91716185677797,176.1939853830263,175.7085289414972,175.49177922913805,176.46225018706173,176.93412905046716,177.40184429986402,176.57247569411993,175.89882153924555,175.52794758835807,176.14023825712502,175.48922694195062,174.76205754466355,175.09836501441896,174.27928714407608,174.17091158870608,174.86155056813732,175.13357737474144,174.24966913973913,174.10301540838555,174.73317221412435,175.0827570860274,174.39214440900832,174.08309942064807,174.46001742081717,173.79831850901246,174.0221764673479,174.9996928316541,174.77279200777411,174.31035754922777,173.4350848258473,173.82205648021773,173.72984062414616,174.59043567068875,174.40335199283436,173.66530466964468,173.07645935332403,172.32926345104352,172.89548738580197,173.69806527998298,173.47439243737608,174.05383143248037,173.69263743516058,173.19695715419948,172.6847337675281,172.9825458531268,173.7368467124179,174.26512271072716,174.92898364551365,175.55008502025157,176.41482567740604,176.41719460859895,177.31046444224194,176.33759676618502,176.55402795551345,176.90825562737882,176.7385505931452,176.40374249592423,176.97720399312675,176.1495069214143,175.28013910492882,174.29066396132112,174.8221034943126,175.4801885872148,175.3824689029716,176.29314719559625,175.68089528288692,174.69788958178833,175.44913978036493,174.67473072139546,175.07735470263287,175.64146304968745,175.4859616002068,175.81845761137083,175.21272737905383,174.4994147256948,173.76668708911166,174.17353172181174,174.3266523280181,173.93570495396852,174.71720685902983,173.73147622914985,174.2594615854323,175.1828982224688,174.51135714584962,174.17345626372844,174.49326981930062,174.61157439090312,175.54934104997665,175.43137637991458,175.67042803345248,175.8574637393467,175.43844346050173,175.9889555759728,176.52122771646827,176.41675286274403,176.87132665375248,176.57032728055492,175.70080021303147,176.59833269007504,176.42370341578498,176.26253959909081,176.71944983210415,176.6632892554626,176.36592987086624,177.03326151240617,176.20235311612487,176.20064357155934,175.86427219351754,175.3205936285667,174.4813784379512,175.43375204550102,174.64993917010725,175.01343322452158,175.1026292820461,175.3883085544221,174.65028268797323,173.67956535238773,172.98279867926612,172.39345916826278,173.0121219828725,172.1776204505004,171.77405536640435,172.09077395126224,171.33399295294657,170.7678878433071,171.4945359681733,171.73683504387736,171.218918166589,170.29930285271257,170.87316152220592,171.03664936032146,171.4602832244709,171.47441156581044,172.36382025759667,171.54067762056366,172.22233757050708,172.0446588494815,172.21477547101676,171.49071368109435,170.62664275988936,169.90963271493092,170.35378392739221,170.17135956138372,170.84981640800834,170.88336938759312,171.12782239634544,170.36355593893677,169.95554268406704,169.40646901912987,169.8534674923867,169.6678416780196,169.0088221556507,168.11538519058377,168.52404130250216,168.3027999382466,169.25859927618876,168.57612046366557,169.1642727041617,170.06528825080022,170.6720501598902,170.0415366073139,170.5975098880008,170.68818390276283,171.41764614731073,171.97051893454045,172.85944988019764,172.91209882078692,172.30018138326705,172.29665029374883,172.8379921899177,173.08803276252002,172.81907927338034,173.1152583337389,173.7880038577132,174.77677942346781,174.08144348487258,174.739108835347,175.4967474131845,175.94859773106873,175.77484082942829,174.87715236656368,174.30140742938966,173.87356815394014,173.6576422243379,172.98758292058483,173.08426877856255,172.82250922638923,171.90017932187766,171.95089684799314,171.47698682406917,171.38185457512736,171.48723895289004,172.0340573526919,171.06814693892375,170.08866763301194,170.10814604489133,170.63874069647864,169.7686204961501,170.18260441115126,169.5524199893698,169.79075395176187,169.3268893272616,168.96182540711015,168.00846834434196,168.76630994258448,169.20513551309705,170.11104540759698,169.78752374788746,170.28992706350982,169.49514247383922,168.7793347388506,169.15621318807825,169.96067069331184,169.96623791055754,170.81113340053707,170.55056584486738,169.61934630805627,168.78606007713825,167.97852440737188,167.48143853014335,166.59756544884294,167.14596515102312,167.29580304864794,166.39908754872158,166.87319590011612,167.05816433066502,167.62911832518876,166.898102871608,166.93910437077284,166.12591119343415,165.67563450941816,164.74597262730822,164.25311390077695,164.5816446323879,164.95448512537405,164.54036923497915,163.71551985666156,163.23983111418784,164.2003884394653,165.1055529229343,166.0680302111432,166.1162991905585,166.09068976342678,167.0008441847749,166.12122924951836,165.6981311980635,164.79662580415606,164.93253190722317,164.8864648025483,165.28731780778617,165.4160927454941,165.83383168978617,164.8436272921972,164.1312209875323,163.93344368087128,164.10685506323352,165.06757878419012,164.43303022673354,163.6534430794418,164.56770797492936,165.50371106388047,164.92424811283126,165.17860845010728,165.33096844237298,164.87834288738668,165.48543189000338,164.6447614300996,163.78127701301128,164.49492909898981,163.6908735386096,164.3855764074251,164.21353571629152,164.07562239607796,164.42020084057003,164.96871286723763,164.01689220685512,164.99076437298208,165.93085882579908,165.34939762344584,165.3912885962054,165.3658000114374,166.12977689132094,165.58575032278895,166.40467300266027,166.82937108026817,167.3660147381015,166.39923306694254,166.6542417933233,166.05766383837909,166.15594927128404,165.5549242575653,165.10538162989542,164.1732699321583,163.38204092904925,163.25445169815794,163.2909384178929,162.35845876904204,161.9333845754154,162.80885564070195,163.218409744557,163.81386877363548,163.312634118367,163.71732154814526,164.23519857646897,164.5599229563959,164.76491588074714,165.57323086354882,165.4561945637688,165.3238190622069,164.84775897022337,164.42723825294524,163.76326703792438,163.13550369720906,163.95611597970128,163.9771420918405,164.48537386301905,164.76857965858653,165.47321444517002,165.62470001541078,165.19870278891176,166.17788078729063,165.6533720884472,164.9074245323427,164.99096865858883,165.0141846202314,165.41234909463674,166.0481701157987,166.5578911146149,166.59733985597268,166.06886519445106,166.58057621028274,166.6373825352639,165.74943700851873,165.79513998003677,165.99758555553854,166.95667330175638,166.63895854353905,167.42090832209215,166.62671021325514,166.47302300855517,166.62837442569435,167.16079025249928,166.89293467160314,166.14807506091893,165.27140501653776,166.09613559115678,166.55451290635392,166.95388022623956,166.1616866546683,166.2230717460625,167.21274770144373,166.66926024574786,166.07975647738203,166.92734073055908,166.74699779087678,166.5212083728984,166.01628241082653,166.39790734741837,165.70961062330753,166.37475305702537,167.14868941018358,168.08300797641277,167.65321050956845,167.03497632499784,167.09398423647508,166.97190246824175,167.80084673548117,167.89700692985207,167.94132797885686,168.32281695120037,168.98032690491527,168.65777797298506,169.3997107958421,169.25507589057088,169.68165922537446,169.1741703413427,169.14273995906115,168.28910546423867,167.8753284001723,167.74391099996865,166.99563192389905,166.39188488340005,167.2087177601643,167.44513301784173,167.54429160663858,166.92546371556818,166.99977699946612,167.83272902434692,167.58711823215708,168.2273723874241,167.42429906735197,168.37775666685775,168.89888354344293,168.0975575298071,168.7094218665734,168.14883559243754,167.98724768543616,167.67877517314628,167.35260384576395,167.44586881063879,167.01758575160056,166.0248102848418,166.78387694247067,167.2140405923128,166.43177694780752,166.17082400247455,165.56590502429754,165.85226414399222,166.56913155457005,165.7285702675581,165.426947331056,165.57730848621577,164.7882357914932,163.85549702914432,164.78517383988947,163.9893547212705,164.02120559616014,163.12773461360484,162.21528372261673,162.59479224588722,162.05416909325868,162.48014766722918,162.52580466447398,161.59399525122717,162.3827496371232,161.43093045428395,160.72493414534256,160.32305332366377,160.473247774411,160.4571183817461,160.52912064641714,159.84501259122044,159.6350470110774,158.6429572594352,159.31532127503306,158.53424365678802,159.15694157080725,159.25981841608882,159.60706834401935,159.94071386242285,159.24203896382824,159.52655452489853,160.19558703154325,160.50202123541385,159.66597429430112,159.8255827310495,160.06287561403587,160.3463387126103,159.8885898734443,159.6301323613152,160.1297298767604,161.00295468000695,161.46549798548222,160.4659510650672,160.33648683968931,160.72269548475742,160.50147709390149,160.9782911753282,161.09378407290205,161.0584720224142,160.98653743276373,160.4371145204641,160.16783385165036,160.92545374576002,161.28079836256802,162.22862184792757,162.299409519881,162.6628447426483,162.8168478347361,161.8780962890014,162.06200215918943,162.79878813028336,162.84312630724162,163.46197820222005,164.01883299602196,164.47358651505783,164.28513334784657,163.31682816892862,163.26591462595388,163.45954229589552,162.6904057157226,162.23587189195678,162.92672381550074,163.42879434861243,163.2778238025494,162.31467091990635,161.9551500128582,161.14938852423802,160.22162141511217,160.75189266493544,161.3669236395508,161.7326815435663,161.0805387319997,161.3330813711509,162.32396733853966,162.0465523665771,162.20573772490025,162.92049160599709,161.97240023501217,162.29724514530972,163.02400519046932,162.9243123596534,163.51055097021163,163.00641766842455,163.2942098090425,162.96537186391652,162.51266329549253,163.19487671740353,163.64652681164443,162.75544984871522,162.6893011997454,162.18860981008038,161.80043907649815,161.68063178518787,162.64851428335533,161.72648792807013,161.03753674589097,161.06908880919218,160.0827613826841,159.76129996497184,160.40879087569192,160.7183568291366,160.10247641801834,161.08970237663016,161.44668001728132,161.5504112187773,161.28662515897304,160.4391602263786,161.40294890478253,161.48771373461932,161.00469302525744,161.59582577180117,161.80396980326623,162.50310834636912,162.9974868139252,163.54114995431155,164.17895598709583,164.36393758421764,164.99513795040548,164.1420097835362,164.48231860343367,164.105049633421,164.5362590723671,163.5523342541419,163.5388144911267,163.56162634165958,164.22336129797623,163.4605606389232,164.0087637794204,163.91927776439115,163.757181646768,163.08444148115814,163.20406177919358,164.13911522738636,163.99285516655073,163.3240265431814,162.60047204699367,163.47999377502128,164.16443069418892,164.15618257503957,164.84407012583688,164.05716997943819,163.66131755150855,163.6293827649206,163.31711447052658,163.26389937615022,164.03082797164097,163.11891878396273,162.56965315528214,162.18586893146858,161.70748601015657,161.49420220823959,161.05143967224285,161.29567659599707,160.78979900991544,161.2806469653733,160.59248034469783,160.19033315917477,160.24373107822612,160.6647249897942,160.82916563749313,160.3934804275632,160.47663333266973,160.1508008413948,160.48836692469195,161.4785461956635,161.98003386473283,161.78545499034226,160.87912740046158,160.8052700376138,160.47086754767224,161.34165416006,161.6087982179597,162.4194337632507,162.383060017135,162.8721978534013,163.51803681906313,163.07993240421638,163.80512674013153,164.62918576737866,165.41522675659508,164.5916433003731,164.31312293093652,164.98822902701795,165.15762392478064,164.75188028765842,164.58935506409034,165.00204810360447,165.79603605577722,165.0808116849512,164.5163122760132,164.4855062654242,163.8463270906359,163.75703197252005,162.88151806034148,162.96978263789788,162.1297955350019,162.27582580922171,161.39891343005002,160.9409830411896,160.7977283927612,161.3744049584493,162.02412004303187,161.199709916953,162.17153430357575,162.93088871100917,163.1216428950429,162.13888206891716,162.03116742009297,161.62552428385243,161.21860583731905,161.7305710092187,161.55876142624766,160.67269830824807,160.17068967875093,160.53485851315781,160.6550894640386,160.09697483386844,160.77060982072726,159.86488889856264,160.73476383229718,160.38085076771677,160.0901013854891,160.2288366490975,161.07300675008446,160.54270318942145,161.53407501988113,162.03690685192123,161.60603955062106,161.7415599389933,161.24299952900037,161.8161827288568,162.62671644520015,161.87655954947695,162.1855690162629,162.34214331349358,162.1602233420126,161.52890181075782,161.5093533443287,160.86091339820996,161.85325914481655,162.43779907003045,161.780476633925,160.87330040475354,160.32291486812755,161.21174992481247,160.46804223582149,161.12650785641745,161.73983925767243,161.38996498798952,162.11443136725575,161.5129809579812,160.5937654133886,160.31474985694513,161.1723483959213,161.8378893728368,160.94864989770576,160.4759409353137,160.61919406754896,160.94626021245494,160.9913127264008,160.23669268749654,159.7321828752756,159.95497183920816,160.9129256354645,160.37279519578442,161.21043191524222,161.3543168012984,162.01399043900892,161.22034079954028,162.0642186831683,162.84465194121003,162.05547297932208,162.983451529406,162.11547288345173,162.70268159545958,161.90243861218914,162.04970965487882,162.37131909141317,162.1211905661039,163.0904604755342,162.62416659574956,162.46704326756299,162.3551090043038,162.19672769028693,162.34613399021327,163.20232333708555,162.39493809314445,162.3069702833891,161.9042721572332,162.18491713004187,161.29707616427913,161.66660369047895,162.5029277112335,162.54758825851604,161.5989662115462,160.94980292674154,160.51843298971653,161.09704435337335,160.44763937266544,161.16105791321024,161.8984464360401,161.94984967680648,161.2105813138187,161.4864949453622,161.98566283937544,162.1340089221485,161.9890838591382,161.6327867731452,162.00339683890343,161.29354404471815,162.24059282848611,163.22518331045285,163.65228701895103,164.27825973881409,164.73308182274923,164.67781747924164,164.5573380626738,164.55685385782272,163.95310232322663,163.5113859027624,162.60622973367572,163.31701670307666,163.35342097189277,163.0724753323011,163.22518698312342,162.39013848360628,161.4540508473292,161.4287315304391,161.7794886957854,161.5621639979072,161.12951141316444,161.01346566388384,160.73556526564062,159.93396053649485,160.63620984135196,160.5728541086428,161.5610170387663,162.16095358412713,162.74151457473636,162.4945093053393,162.5110570495017,163.35849085217342,162.55754479160532,163.18115734262392,163.4209172371775,163.18775213416666,163.52779393317178,164.5111895147711,164.26099745184183,163.89713206142187,162.91812402615324,162.1082989280112,163.07171039190143,162.11638799868524,161.57875075098127,162.37728985212743,161.55055147595704,161.36529865209013,162.25274636456743,162.87558584660292,163.58740836475044,163.04501880006865,163.23571572545916,162.264117537532,162.37495597545058,163.20562333147973,162.219110484235,161.5415007499978,160.71505249571055,160.42075157957152,160.1563084530644,159.29515020968392,159.3209316600114,158.439377091825,157.44451733399183,156.5219036201015,157.3780647618696,157.55153801850975,156.93810045393184,156.69900259422138,156.68746202858165,155.78914382960647,155.10006828978658,154.97074515372515,155.32897723373026,155.79715762240812,155.57969801826403,154.64519895240664,155.19297373946756,155.80643802369013,155.71489804750308,154.88103645574301,154.33944042865187,153.51126644015312,153.43214130122215,153.7422218755819,154.3289872049354,154.1888834470883,153.96270912140608,153.9861106807366,154.65588337136433,154.48299087490886,153.633027988486,153.68214051472023,153.8115321546793,154.57073910534382,154.0701668583788,154.075019441545,154.77646709838882,154.5487241144292,154.11360912118107,154.37616785010323,153.8872532057576,153.68684664182365,153.0601427233778,153.62148983310908,154.15657416637987,155.15551923401654,154.4441814403981,154.8096911017783,154.17225901503116,155.0877865497023,154.87965183099732,154.59118729876354,154.71292548347265,153.78805092861876,153.13690556539223,153.74400693690404,153.61198213649914,153.66995635675266,154.09090526076034,155.0155271338299,154.42561112064868,153.51337846182287,154.09693623054773,153.57698035659268,153.68463914422318,153.5452769859694,152.99611127981916,152.3168257055804,153.1590702664107,152.75280201714486,152.52984807034954,152.87949149124324,152.27245894726366,152.04792095255107,152.71082681184635,152.02079285029322,151.36451137252152,151.775264934171,152.13890761742368,152.50578596582636,152.04248333303258,151.99178819125518,152.53148391842842,152.9390477486886,153.91773504158482,154.4666626895778,155.18251923983917,155.55875949189067,155.38820777833462,154.44079034263268,155.18425977788866,154.63895018352196,155.0895155700855,154.97055546334013,154.27464431570843,154.89079746091738,154.70043181348592,155.08422406902537,155.15254279179499,155.1060980334878,155.34794421121478,154.76075640087947,154.69687523972243,155.5559148755856,155.14100466202945,154.29339370923117,154.7825524318032,154.2536176489666,153.91644403291866,153.7570500294678,153.67093475162983,154.45259869424626,154.3026146935299,154.62953632511199,154.37489709630609,154.48947996133938,153.69816416455433,154.55521569633856,153.78491765959188,153.6930613736622,153.6541671976447,153.45891554374248,152.73699210351333,152.86816464923322,152.4010125924833,151.5984141114168,151.68627089867368,151.2675510472618,152.01364040235057,152.59372400306165,152.78299033083022,153.75051762489602,154.5510420515202,155.3549302192405,156.10019127232954,157.05984262097627,156.16439422639087,155.2068997467868,154.40722579695284,155.22691206634045,155.14926153840497,155.39114697929472,154.4879181473516,155.02803038898855,154.75207118643448,155.5997626017779,155.08757316693664,154.41924349963665,155.30697128688917,155.0508915274404,155.73261985788122,156.29221445089206,157.16089507890865,157.98176743322983,158.52800815505907,158.89185622381046,159.669102831278,159.97090021101758,159.25469426857308,159.85578241758049,159.58267448842525,159.99866800010204,160.17614522669464,161.13957083318383,161.31346316402778,161.59449086803943,162.4326068381779,162.0086803920567,161.34377084858716,161.01348145818338,161.67770953616127,162.00959049910307,162.28709719702601,162.43385453848168,163.0005642902106,163.49233868392184,162.70160035509616,162.1674151676707,161.84810966672376,162.23574600368738,162.97540859365836,163.62593716289848,164.60410048952326,165.4339310489595,164.98145191790536,165.27966824686155,166.22214745450765,165.60943981073797,164.93998353136703,164.3062184303999,164.22852537501603,163.82042104378343,164.3650626637973,164.19071327568963,163.27606949442998,162.53437585523352,161.6182174384594,161.90306391194463,161.00996177922934,160.91620458569378,159.9674699101597,159.44080969085917,159.531893490348,158.61294526886195,159.42982269683853,160.4256889349781,159.53826135629788,160.37208624882624,160.91060588369146,161.23910437896848,160.36835368862376,160.8241587979719,160.72766711004078,160.93868094403297,161.47843768075109,161.9554175576195,161.89193607121706,162.44230947410688,163.38474046299234,163.85990175092593,164.49687060154974,164.89440739387646,165.41197365615517,164.83460568543524,164.07784063136205,163.82538598636165,163.1801348379813,163.33881895476952,164.1470214566216,163.22814856423065,162.23220747103915,161.40200875420123,160.66935177519917,160.26554355025291,160.72379917372018,160.63231907086447,160.8385699116625,161.44771819049492,161.59492811653763,162.47028848389164,163.16620495868847,163.45571264298633,164.05295686237514,163.1402809745632,162.48838700074703,162.66384894307703,162.71366767026484,161.95517772901803,162.2949318056926,161.87010204372928,161.20320353051648,161.68640739750117,160.9859948703088,161.55893083754927,161.55768046621233,161.83506368193775,160.84249315969646,161.11341798165813,161.366434332449,161.21347876498476,161.49094471149147,161.65451521612704,162.4225292368792,163.24144318467006,163.22426870511845,162.99943392770365,163.5487981555052,163.1175648770295,163.0340592400171,162.42465406097472,163.3873428707011,163.4545636503026,163.66317579802126,164.19650593446568,164.20927631342784,165.19980321452022,164.51711078174412,164.45311499154195,165.25320221390575,165.6307929744944,165.2090694224462,165.5169814224355,164.88149576960132,165.4075694079511,166.39755958970636,165.97345190867782,165.19275861792266,164.88030979176983,165.12805382814258,166.02481617080048,165.10877074860036,164.65687470370904,163.76584269898012,164.6595289716497,165.19180356245488,164.25657732458785,163.72272883867845,164.0940099800937,164.38267962820828,163.99054715689272,163.5615477208048,163.16749735781923,163.87749335169792,163.8404044243507,163.5181188005954,164.05616786144674,164.66368351271376,165.53296761633828,166.00212056050077,166.8764864061959,167.24139146367088,166.77225399622694,166.1150897028856,166.36945837223902,166.80656807124615,167.28805347997695,167.771611480508,168.42257611081004,168.5771211530082,167.73941650241613,168.57970374869183,169.48056626040488,168.50816730875522,167.88012501690537,167.65718628745526,167.10141205834225,167.3941850620322,168.06277738977224,168.34267099713907,167.5921162236482,166.89534551650286,166.04553117090836,165.04663988063112,164.33626734418795,165.049806274008,165.96006125211716,166.10655984422192,165.58347301697358,166.33013405604288,166.31149236671627,166.36250791558996,166.89479300146922,166.75736263906583,166.22287755506113,166.4528158023022,166.98369180830196,167.95389909576625,168.71542548108846,169.08588863816112,168.36004766775295,168.65629324596375,168.59459112072363,168.6767200003378,168.9545109923929,168.99011220457032,169.41892089368775,169.27615837939084,169.80398090789095,169.67144965799525,170.44057085411623,171.38203816488385,170.87434352329,171.1633265442215,170.68869369337335,170.97086722962558,169.99886627169326,169.75494176568463,168.93126777932048,168.24555764719844,169.24466729257256,169.4194203224033,170.11367691727355,169.53563634492457,169.2957077100873,168.30355583829805,168.12173459492624,168.96332455426455,168.0229309881106,167.21290149912238,167.30070538865402,168.0359645821154,167.44535251986235,167.54111741948873,166.68986355047673,167.03215070813894,166.91306645609438,167.58704948984087,168.50368837546557,168.7688261740841,169.4841895517893,169.4220269829966,169.89061827538535,170.54699521372095,170.69490362890065,170.90421290043741,171.15732940938324,171.69452669471502,172.15483039431274,171.25070923939347,171.33902744576335,172.1549690947868,172.09371068514884,172.11033741245046,171.6705584959127,172.04692047508433,171.33308572182432,171.91493461932987,172.1034154840745,172.0962773859501,172.71905297832564,173.07636144198477,173.54481365857646,173.26425647363067,172.30506828567013,173.06290407618508,173.13304439745843,173.00360711943358,172.4339012238197,173.03559592366219,173.96755742747337,173.23167271306738,173.35226548230276,172.79153542406857,172.85141012771055,173.41959740687162,173.16841907566413,174.03399947984144,174.20361174829304,174.19273851858452,174.84867323050275,174.93325698794797,175.2401994857937,176.05958646908402,176.43550902977586,176.82507628388703,176.58747294265777,177.56163013726473,177.39105795975775,178.36768489098176,179.14832946192473,178.66009273938835,178.1018546083942,178.84558221232146,179.61524912528694,179.48907716432586,178.87761184899136,179.7045657034032,180.66760269273072,181.2215934828855,181.32973185833544,180.6936585358344,180.64500649133697,179.64569612964988,180.2402029298246,180.23945012688637,181.12049402855337,181.0363220036961,180.7666538306512,181.34072590945289,182.04096055356786,181.04616340389475,181.79465961875394,182.7551008258015,182.3170811124146,182.4744618088007,182.98760407604277,183.1019545630552,182.1115226401016,181.1571060679853,182.15640519699082,181.86439027776942,182.37753772502765,181.4248572802171,180.9931464861147,181.32812340278178,180.8970995848067,181.17302256496623,180.57496866211295,179.95782509306446,179.42070153495297,179.04192068940029,178.68565154494718,178.51367231458426,178.216048005037,178.04903333447874,178.5355598614551,178.65509508550167,179.204933993984,178.7687595738098,178.9237357713282,178.930272359401,179.096056509763,179.56908835470676,179.63546921266243,180.45297909900546,180.02172276424244,179.1761443959549,179.3670173943974,180.303918490652,180.38829263253137,180.47929293941706,179.70200859056786,179.77947691548616,178.8634168165736,179.3279824173078,178.73316928278655,179.65575979929417,179.85505973454565,179.32280269963667,179.54450738755986,178.88919581053779,179.54716101428494,180.36254046671093,179.9856384024024,179.09926189808175,178.54683442041278,179.5032572443597,178.86762163834646,178.0417746361345,178.5332605498843,178.42477222392336,179.15229971474037,179.24424351612106,179.69755014497787,180.0628755078651,180.9648345792666,180.4957303488627,180.66419361671433,181.53920817980543,182.34876079950482,182.66185138653964,183.46083140885457,184.42094099521637,183.75559878069907,183.28131305146962,183.04290518164635,183.1308840829879,184.11625483678654,184.98477220349014,184.2181874900125,184.24873428232968,183.59610003232956,183.05498632322997,182.96109137497842,183.33515192754567,182.8865232351236,181.92845201538876,181.74788561463356,181.06250876374543,181.09456481132656,180.58393465261906,181.31290945783257,181.87986071640626,182.79175352631137,183.34096652967855,183.7810415616259,184.19016789691523,184.76154417870566,185.0607092892751,184.32459463179111,185.28592282766476,184.41472247475758,185.3181794625707,186.0124640064314,186.096591277048,186.34959817072377,185.98944386141375,186.89646777370945,186.23803347628564,186.03005199693143,186.46684803441167,186.47260798886418,187.0696408804506,187.58634472312406,187.00164297875017,186.3584339474328,186.48851180262864,186.5196927743964,186.7002663007006,186.5732008269988,186.96186200762168,187.62272373586893,188.6153277847916,189.60839278576896,190.36027784412727,189.62742397002876,189.76787486858666,189.928254657425,190.0160581637174,189.52324755350128,188.96089979587123,189.77826642990112,189.36640189075842,188.85242219129577,188.44563861843199,189.31571373622864,188.9090309604071,189.53974749566987,190.49707457842305,189.82519587641582,189.0920042959042,189.3202336942777,188.96868579043075,188.71925789071247,187.8347510783933,187.4812747030519,186.51965882629156,186.9296425585635,187.29009617632255,188.072965326719,187.09313740069047,187.9306574803777,187.63632707716897,188.51392415491864,188.78893642453477,188.33112009288743,188.0313601763919,188.98286317335442,189.12645088648424,189.64854210149497,188.7216346305795,189.65992367174476,189.24864972149953,189.94782955525443,190.7299080248922,189.7872937018983,188.82662806799635,188.24704764597118,187.30651677958667,188.06894593080506,187.56318526994437,187.22688950458542,186.7267299760133,186.31278791604564,187.1812131907791,186.5904029100202,185.86355043807998,185.2044998947531,185.43348097009584,185.41746552381665,184.84646950708702,184.62727927416563,184.26059110229835,183.67781159374863,183.65728501649573,183.48338321549818,183.20020073093474,182.3816825216636,183.24482721695676,183.67294449079782,183.89725488703698,184.59820452751592,183.71284411055967,183.64447773899883,182.97103183809668,182.75452526379377,182.3593782284297,181.98440197110176,181.68053797027096,181.01873302273452,181.74157782364637,181.31248633144423,182.06279962323606,181.5560131529346,182.55461883777753,182.10942063387483,183.08999270852655,183.06344763981178,182.92242900887504,183.0274841771461,183.5189008549787,182.55265686102211,183.32641511922702,183.57177921617404,183.26606572791934,182.42602095380425,181.53727671690285,181.02743113273755,180.9667147649452,181.87192667881027,182.1370183872059,182.09233394637704,181.92138718347996,182.90283202566206,183.2665996113792,183.40773461107165,183.12020547036082,183.56314369756728,183.52232280839235,183.1149502512999,182.85784853529185,182.9607288655825,182.11388299660757,182.32192830275744,181.7524135839194,182.05925164744258,182.05257573910058,181.23775188764557,180.68745132395998,180.20403871079907,180.68376407865435,180.8926571761258,181.3184690400958,182.17990153934807,182.88879391551018,183.45618960028514,183.25956052774563,182.86654415307567,183.38677934836596,184.05775599600747,184.00849165348336,184.09924776759,183.27895298460498,183.4854687959887,184.17962888581678,183.8944337759167,183.308722961694,184.2929642512463,184.55629294831306,184.80286703491583,184.57931057363749,184.9332639425993,183.9936369000934,183.83982996921986,183.68390059564263,183.7834080653265,183.89359416626394,184.56507001351565,184.80821468727663,185.71511810133234,185.3134358068928,185.4318328308873,186.0202006767504,185.27734484523535,184.89747081510723,184.17974943481386,184.77127256896347,184.24397065490484,183.49281446263194,182.6770671014674,183.17527873720974,182.88182100607082,183.87472693948075,184.5477848239243,183.74044397985563,183.69402090180665,183.01154619734734,183.93632262479514,183.34191957954317,182.86689793644473,183.55132595542818,182.63075652066618,183.3555517704226,182.6628139456734,183.16960865445435,183.6943250214681,183.49699310865253,183.62082948815078,182.9456418803893,182.59694788092747,181.97759397607297,181.2998528960161,181.96007033763453,180.98001195164397,181.32263426110148,181.05930383922532,180.97877031285316,181.51733817718923,181.74490988301113,180.80430673342198,180.04787712404504,179.2410793416202,179.26179072773084,179.0207479535602,178.39387060515583,179.2613033396192,179.7819007462822,180.65135599579662,181.03496232116595,180.0747613608837,180.1487872726284,179.9884569044225,180.87518609827384,181.2351733208634,181.9267109693028,181.41749556083232,180.50230846740305,181.37757279723883,180.9244121615775,180.42605362273753,181.35115221701562,181.4074897528626,181.43125919625163,181.98146705841646,182.10597004089504,182.86869196686894,182.72961611906067,182.89964305562899,183.88429028447717,182.9643157166429,183.6234401264228,184.56258183298633,183.6546445991844,183.7894976385869,184.76916657062247,185.15010921331123,185.9566256813705,185.19817241793498,185.05764773208648,185.55916922725737,185.32889060582966,185.26066075870767,186.0208298517391,185.7418066081591,185.67487488035113,185.66513762902468,186.25432295678183,186.22305031307042,186.7269417741336,187.4912622035481,187.23728334670886,187.60937535064295,188.30997550673783,188.3827351257205,187.6138271400705,187.0029977406375,187.12847504997626,187.52604945981875,187.28077084431425,186.98063835687935,186.49137852713466,187.41680920030922,187.22764774691314,187.83663686783984,186.92559426138178,187.3121944926679,186.35049465671182,186.69541431916878,187.08040516637266,186.76500506093726,186.08059089398012,186.9389495276846,187.37885271245614,186.66947830002755,187.08313576877117,187.8440094483085,187.10301813902333,186.26337637705728,185.8761356943287,185.94220429565758,185.80428818101063,185.3326220032759,184.46875490574166,184.8968587112613,185.56823212467134,186.5132173653692,185.6883990475908,185.053299007006,184.998835072387,184.86029073782265,183.9322766372934,182.99218462966383,182.66533319093287,182.94688896136358,182.80291175469756,182.9348353696987,181.97567678242922,181.25038729747757,181.80020513851196,182.30920027568936,181.37460918957368,181.33578115375713,182.0906546493061,183.02609346201643,183.41352936206385,183.97807166771963,184.81757788080722,185.48063356196508,186.32388244569302,185.71040284773335,186.59199715266004,186.10920447856188,185.5876800646074,185.66577796451747,185.1134484661743,184.8656005905941,184.9083927469328,184.75058379024267,185.58616077993065,185.78455185564235,186.28797863516957,186.77950890222564,186.42606842517853,185.89369580475613,185.56523916125298,185.7649493990466,185.50964703131467,185.18714105756953,184.234720768407,183.7184545872733,184.6108049103059,185.31716984603554,185.1908178012818,184.4602670413442,184.38206693623215,184.5397265725769,185.23970699263737,185.47681737784296,185.00718642398715,184.5913781505078,185.1271976600401,186.09237494831905,185.12053378578275,184.33647220162675,184.08338750666007,183.27839379012585,183.06972094345838,182.9263139925897,183.7662589098327,182.81167467404157,182.5226243082434,182.27250798977911,182.26341397501528,181.32430059229955,181.2759573967196,181.67975606396794,182.3685381114483,182.9949933681637,183.49999981792644,183.7060242309235,184.17381115537137,184.54128681356087,184.32350551197305,184.27032115217298,184.83349720854312,183.89238025946543,183.95339540066198,184.23881308594719,183.61976816505194,182.63691676035523,181.7271147100255,181.84384856931865,181.11777515755966,181.82478219270706,182.03400824172422,182.14859601436183,182.51644787704572,182.01304098777473,182.9637516089715,183.06897032540292,182.65219207433984,182.2494087163359,181.89634557208046,182.40865931659937,182.82233018847182,182.39093747222796,183.0414102342911,182.3429227131419,181.96181063074619,181.05148364417255,181.3501300290227,181.7898984607309,180.886868591886,180.7745748278685,180.6113230092451,181.37606017524377,180.71588415885344,179.9876578929834,180.6675538965501,180.49571846751496,180.44971229927614,180.2798978756182,179.30992516316473,178.88786996295676,179.52201519021764,179.5382332955487,180.11259680707008,180.3229969283566,179.59353414876387,179.65463893907145,180.32935315463692,179.66383257322013,180.48652177443728,181.3951528710313,181.59026824263856,182.2562986095436,183.03570080036297,183.4304888867773,182.8340077972971,181.95624304562807,181.6829471644014,182.65041718119755,183.0413833167404,182.83804809255525,183.72010723827407,184.6668196725659,185.3011262076907,186.10475421138108,186.2458763225004,185.969202473294,186.48436334030703,186.74067005189136,186.3613861068152,185.72878131596372,185.1326972125098,185.7183524784632,184.92300378065556,184.87388283852488,185.6190602229908,185.81471417099237,186.57257250510156,186.08978868788108,185.41573949344456,184.43803834775463,184.42318422952667,184.87383313849568,185.39768102392554,184.67101543582976,183.73588741291314,182.77044751867652,182.94214924564585,181.94435213319957,182.46166819892824,181.51960135344416,182.16080129891634,182.95171651709825,182.79368446907029,181.90573939820752,181.89036116190255,181.82503722188994,182.578135994263,183.07060147961602,182.69946148851886,183.0264430618845,182.0812848689966,183.06965521583334,183.32282272120938,184.1386039070785,183.81875402713194,183.6871409448795,183.89465194521472,184.75954659469426,184.75776786915958,184.43556292820722,184.16188667342067,183.69187297392637,183.962678801734,183.70484089991078,183.01003711670637,183.473758764565,183.7298964872025,183.12701685354114,183.34947821870446,183.3116215057671,183.71096178144217,183.4333369312808,182.59378510480747,183.31446690205485,183.45529219554737,183.86488674534485,183.08264515781775,183.14613415533677,182.54985585715622,183.4420775193721,184.24678290542215,184.39961617905647,184.7425557835959,184.25626281369478,183.9162957551889,183.3611733932048,182.4006344876252,182.05313068442047,181.9423450580798,181.6258170506917,182.33481774944812,183.22111254185438,183.9157365555875,183.34446092881262,183.9285556464456,183.22791589377448,183.2124963379465,184.18156945938244,184.64853561064228,183.88058557314798,184.8615855225362,184.57074377080426,184.4350103829056,184.27905626036227,184.43997476436198,184.45961335208267,184.74666391126812,184.4119639992714,184.77437655022368,184.5913906809874,184.62203592108563,183.84239183925092,184.5130930421874,184.519955156371,183.7660724380985,182.93866044143215,182.61017805617303,182.71660171542317,182.6027860622853,181.70990375848487,181.99408214865252,182.89119557710364,183.40942631149665,183.49643113464117,183.21599872782826,184.213050942868,184.38904716121033,184.76971716899425,184.26331715937704,183.4441776019521,184.10653554601595,184.73870695661753,184.41913773166016,183.96299574850127,184.48652000771835,184.44810879183933,183.90473057329655,183.8630191576667,183.1727799498476,183.9320383630693,182.99460711563006,182.7697794791311,182.25795377232134,181.6306768786162,182.59088078979403,182.21252599684522,181.88790256390348,182.76769319130108,183.00496962992474,183.65079385507852,183.9191259262152,184.14419069280848,184.50113247754052,185.41486337874085,184.80139913782477,184.0757811064832,184.8506304062903,185.13325291126966,185.94570172857493,185.78459462104365,186.33538620732725,186.08654899988323,185.48530231881887,185.76891930308193,184.96962373517454,184.41262134630233,183.57454367913306,183.07669796189293,183.68275445699692,183.95338914962485,184.26289555430412,183.2919110110961,182.94220104906708,182.22012199973688,182.0674816854298,182.7875261232257,181.86902706325054,181.40482763806358,182.03624812653288,181.6630880930461,182.1939061516896,182.34565533837304,182.13392997067422,182.5027858153917,182.28331562969834,183.14202515175566,182.18078831164166,181.59770242497325,180.700706734322,180.99576280266047,181.39691668283194,181.23778787162155,182.15455169044435,181.38408846454695,181.90558557817712,182.5820342055522,182.97046600840986,183.51670326013118,183.45908017270267,183.27523441938683,184.08413350302726,183.47335417103022,183.6514310790226,183.3888224028051,182.43969182483852,183.07230037311092,182.47986713098362,181.90626500733197,182.39590958412737,181.65445500193164,182.42696122126654,182.60979178827256,183.13744479650632,183.96456346008927,183.77077311463654,183.50477928156033,183.80566913168877,183.8289467585273,184.0040099178441,183.09104304248467,182.27312863618135,182.13765645213425,182.4749452122487,181.75658976705745,182.43475467758253,182.29206787096336,182.51398946903646,181.69954728800803,181.15467286016792,181.57343684509397,181.8538864236325,182.49980437057093,182.4821868087165,182.43378985440359,183.38703772239387,184.00222103158012,184.81087842956185,185.6718256343156,185.00421200459823,184.2837696368806,183.536297889892,183.74749114038423,183.62052658153698,182.99401779379696,182.24811380403116,181.33908860664815,181.15883415425196,180.4394281473942,180.54046463780105,181.18722270755097,181.38495284505188,180.7943240632303,181.75807581003755,181.86924757948145,182.17515559634194,182.02751769591123,182.054444485344,182.02578270668164,181.99726156750694,182.34801059169695,181.45853162184358,180.9338277084753,180.80791667336598,180.11761951446533,179.1958716539666,179.5987021084875,180.31024488527328,179.3554142038338,179.69379003718495,179.28989260550588,179.74520075507462,179.71027864096686,180.46164588537067,180.95759680261835,181.79527013376355,182.70495905028656,183.57034826884046,183.5298572294414,184.1850169110112,185.03441614517942,185.145665791817,185.14395626308396,185.43562321877107,185.93568855710328,185.29331961274147,184.70439094444737,185.28512871218845,184.61129668913782,185.3145443201065,186.09470325242728,186.51071029575542,187.1976333297789,188.01930477982387,187.30293254880235,186.91914079384878,186.0896531008184,186.3575413301587,185.4747510640882,186.33904848387465,186.2509967139922,186.35244924621657,185.57448511570692,184.8401922956109,184.1373526849784,183.18450962891802,184.07908291788772,184.5130204274319,185.16965463897213,184.75993773853406,185.18632918596268,184.84828989068046,185.08338512247428,184.90533249964938,185.62758838711306,185.73846230329946,185.0311691686511,185.69813219550997,185.26319146947935,185.95006907451898,186.56977763259783,187.55897819809616,187.4201792893,186.82585917785764,186.61851908825338,185.84881413681433,185.6593599836342,186.12382016936317,185.69765727315098,186.15811818372458,185.53294222895056,186.13241311814636,186.8656495185569,187.32357122795656,187.40814217412844,186.5292299571447,186.3163545257412,185.61722276639193,185.20599355502054,185.9049909277819,185.36885066144168,184.39650248829275,184.10966033441946,183.69890175154433,182.87817401904613,182.7639779546298,183.58347913622856,184.16982559347525,184.83103180490434,185.54365320783108,186.32847681595013,186.00886257877573,186.91446843370795,186.82828205358237,186.9627776904963,186.19330868078396,186.58744977600873,187.1110690999776,186.97573827579618,187.5272626033984,187.28195706335828,187.90951163275167,187.4182334872894,187.6606596922502,188.52577476482838,188.38745087897405,188.9733003336005,188.68984873127192,188.14793694904074,188.20543398568407,187.74743644194677,187.30578753445297,186.64012969611213,187.53492824034765,187.0145398331806,186.9898978821002,187.71330597577617,188.49419803265482,187.69499831506982,187.98447701754048,188.62064240360633,189.45686464942992,188.544985009823,187.97580728912726,188.0082750497386,187.8682966157794,186.90434326510876,186.93417764501646,187.46569305751473,186.81155871227384,187.55113531462848,187.7557477480732,187.68975537037477,188.09422419173643,187.5473324721679,187.41368392156437,186.4644753583707,185.8138453993015,186.25816134829074,186.44645822281018,186.11280913325027,186.78139783954248,186.17009826237336,187.11333948047832,187.81131553417072,188.3830398595892,188.81117744836956,189.3113516396843,189.33246750058606,188.8165727192536,189.1494879447855,188.85084768850356,189.36303917318583,190.1097212913446,190.8633986194618,191.5848785112612,191.5399780292064,191.75496601080522,191.09817607933655,191.9706116314046,192.40696112206206,192.3931676899083,192.18518666783348,192.22212960897014,191.4277034937404,190.64518069988117,190.10869917320088,190.21289273630828,189.36671677138656,189.85820066044107,190.22659009043127,190.98110160650685,190.76200178917497,190.4387659439817,190.0719800950028,190.06121033104137,189.44418856687844,189.39131848420948,189.14103614445776,188.7579634473659,188.3291656007059,188.0631827027537,187.47669499833137,186.99807711644098,187.536489111837,188.39837874099612,188.48754096543416,188.93856616318226,189.4108779905364,190.2112843580544,191.028486920055,191.1459536361508,191.21237379917875,190.3796902508475,189.75544394226745,190.1298221172765,189.77167447656393,189.88805244397372,190.46699426369742,190.68547849776223,190.7317571383901,191.55547303287312,191.74774281214923,191.14076687395573,191.08012711256742,191.2263361797668,192.08794436743483,191.81922832643613,191.03676566947252,191.81295765424147,191.22253860952333,191.92724470468238,191.78714828798547,192.32148695923388,192.3160506556742,192.67573634302244,192.3643742809072,191.7223345870152,190.78142559994012,190.36535119637847,190.86041501816362,190.02244580583647,189.3791348771192,190.34974319394678,189.98618994792923,190.0313675305806,189.65283308923244,189.2611508681439,188.45403067953885,188.46329889493063,187.97866248479113,187.33482935419306,186.74330975161865,187.48480766732246,187.47317268094048,187.96021598111838,187.79399387352169,187.8577555064112,187.75406859535724,187.12045033089817,187.11833620537072,186.74126633163542,186.23408866021782,185.8525212407112,186.8283770601265,187.7446910222061,188.25081504927948,188.9960438697599,189.20339869428426,188.62526150606573,187.72647186601534,187.77982750209048,188.68037956301123,188.83456201758236,188.8192011602223,189.62515264144167,189.50188565813005,190.26346388552338,190.0446941293776,189.77303090970963,189.53460105508566,189.0565196252428,188.27692756149918,188.96686629531905,188.41059721028432,187.56863062130287,188.24786320747808,187.35166736645624,187.935059978161,188.6110456129536,188.34455640241504,187.35860833339393,187.9577692016028,187.8369253766723,188.0996738160029,189.0368703538552,188.3326446255669,188.4157797745429,188.35183429159224,188.57838805112988,189.34801668906584,189.05286129983142,190.0513554303907,190.1652761735022,190.27235500793904,190.3274082886055,189.52021834487095,190.18937628017738,190.6103873695247,189.7935812328942,190.20650470582768,190.74811212299392,190.94824578706175,191.84875556454062,192.31453058728948,191.70270258607343,191.12769124191254,191.64478348614648,191.61130293877795,191.02044687094167,191.02021326962858,191.43693712353706,191.00973367365077,190.0905574937351,189.09162855613977,188.67688998533413,188.13624821184203,188.82790152030066,188.1221647108905,188.80753318686038,188.57959395134822,188.88999148644507,188.2783719417639,188.4842244372703,188.72248784452677,187.804021300748,187.07021316047758,186.56906601786613,186.41724187973887,186.99780957074836,186.72540954500437,186.9487684168853,187.59744227444753,188.182294273749,188.06871439609677,187.43699608836323,186.5200179941021,187.0277662393637,186.09289290150627,185.31381448730826,185.48264478845522,185.1867824480869,184.55204224260524,185.15298769203946,185.62443385832012,184.63500901544467,184.40785523084924,184.5348442015238,185.5082728289999,185.6772984531708,185.13783915434033,184.232618290931,183.3156424188055,182.93432180257514,183.1641566925682,183.93542114133015,183.96253796247765,183.03190936380997,183.94181980239227,184.66336823347956,184.28899793839082,184.16458206111565,185.09168521221727,185.3234396884218,184.94304125895724,185.55043329764158,185.54749858332798,185.89869786193594,186.38968406850472,187.3634083219804,186.60057230107486,185.62479765713215,184.86336520733312,185.5467868084088,184.84049910586327,183.9999863896519,183.88899332191795,184.63361723534763,184.140251589939,185.108233762905,185.97354968590662,185.150158487726,184.85474263178185,185.4535942929797,185.95793208945543,185.1470440449193,184.20727239409462,183.66191719146445,183.53770375577733,183.13675537519157,183.15289503056556,182.2543622655794,181.80119774397463,180.81627745414153,181.51900538941845,182.37246747640893,182.03291142219678,182.21730327000841,182.89431210514158,182.69720221403986,183.1431149635464,182.44718571426347,182.66676997113973,183.62123052217066,184.45556153869256,184.47864330513403,183.72806230420247,183.78553883498535,183.21433544438332,183.0025445939973,182.99452715786174,183.75587891694158,183.47933567129076,184.04428182682022,185.02397460583597,184.68274452351034,185.65091345412657,185.9089966248721,186.5596432206221,187.35528108244762,187.8329075081274,188.45691122999415,187.64620369207114,187.79761754954234,188.2901088814251,187.61320512741804,186.7860796637833,186.02108512353152,186.3597371703945,186.94267086591572,186.02179723465815,186.09237234387547,185.2132677845657,184.80367860756814,184.4988234322518,184.80994856217876,184.79886360513046,184.94925391254947,185.60971923405305,185.67394430562854,185.1832878217101,184.8985399673693,185.66163840936497,184.72957516927272,184.84837896795943,183.98056761780754,184.1889899377711,184.1784481201321,183.972310078796,184.0628933729604,183.25988543545827,183.3944309107028,183.4092646553181,184.18354586698115,185.04445025511086,185.67208781884983,186.0095930849202,186.28048873972148,185.54126144666225,184.87244006525725,185.80226814793423,185.90645830705762,185.1445694612339,184.27733229845762,185.03845544997603,185.4845040636137,186.27801219047979,185.72528151189908,185.5952173927799,184.72444401448593,185.38109286641702,186.02699077827856,186.82982522808015,186.5542051140219,185.97625694982708,186.85014323983341,186.8654783614911,186.51566573651507,187.4667581669055,188.07967314729467,187.9877836825326,188.14223057730123,188.57568208128214,188.20987639343366,187.9926668293774,188.62962984014302,188.30587367899716,188.17663539666682,188.57373560313135,189.2203459669836,189.8044752748683,189.88346011843532,189.1523351855576,189.80159392906353,189.77378040133044,189.85999803291634,189.08855972299352,190.03195481561124,190.7580009973608,190.9719859631732,190.57914286339656,191.21455847192556,190.58661737618968,191.55014812527224,192.50257525546476,193.22901217173785,193.83434195118025,193.40227221231908,192.97029809188098,193.1800874886103,192.27983151283115,191.96382313687354,191.50670984433964,192.2557209613733,192.2676244014874,193.148667067755,193.68932869192213,193.9973109276034,193.49495162814856,192.58421589573845,192.73336373316124,192.9602109771222,192.06471958290786,191.52885012654588,191.77495982404798,192.18353360844776,192.55422884598374,192.52841266663745,193.35253601288423,192.75738245574757,193.3372703017667,192.49480249220505,192.22109566023573,191.95546914404258,192.16059200372547,192.8436694587581,193.33885393384844,194.2287898217328,195.13709639804438,195.52693319506943,195.06991949817166,195.63668105378747,196.11654992680997,196.6275260974653,196.70244427537546,197.33787535363808,198.13973239343613,198.38003474893048,198.57374471612275,199.2699378025718,199.6514524682425,198.95021061319858,199.35872875666246,199.0815024957992,199.2318851556629,198.49573002709076,199.2332639633678,200.2155642970465,201.10247705876827,200.12405352760106,199.61081952648237,199.4714401019737,199.26207434013486,199.6870851921849,198.81926960218698,197.88299362594262,197.49144541006535,197.73901069210842,196.82872790796682,197.16814928501844,196.90678034629673,197.35640513850376,197.77815436478704,198.71867655217648,197.8720976333134,198.81021568877622,199.2869651648216,198.39012343343347,197.828639913816,197.00093284994364,197.6554456613958,198.45968645997345,199.0373686994426,199.99475081637502,200.82223238004372,200.02100673876703,200.13225566037,199.37212711712345,200.01237772544846,200.8170989267528,201.37697035539895,202.10126684140414,203.0467765694484,202.4668290335685,202.69065945688635,202.907831620425,202.47583171678707,201.6118533774279,201.9648184236139,201.33795436052606,201.0648162085563,200.34436662867665,200.9021238638088,200.42351184226573,199.76276966137812,199.57901398371905,199.08607712434605,199.73619595123455,200.3758068177849,200.13623620430008,200.9534370545298,201.64680183446035,202.55631259456277,202.38479842571542,202.28251839289442,201.48971538990736,201.07739955885336,200.758316101972,200.42135613551363,200.4173633493483,200.07965798024088,200.66796208638698,201.57546290243044,200.67265317495912,201.39808439137414,201.45406880276278,200.70158753311262,200.94461950752884,200.17934797285125,200.79769246513024,200.06065669795498,200.79343679267913,200.82850720640272,200.84354039654136,201.77839739760384,201.0692805396393,201.79310433659703,201.44165375363082,200.45876193000004,200.73384659457952,201.544304266572,200.78030831646174,199.8302253340371,199.9236623318866,199.82574394578114,199.83605589484796,199.022767173592,199.16372430045158,198.1663398705423,198.62193036451936,198.85638776887208,198.2604232947342,197.80314454762265,197.79606453236192,197.17043903004378,197.20824117213488,197.5567456758581,196.9928898406215,197.86201926879585,197.44609292503446,196.58989122929052,196.71607817616314,195.7951650992036,196.40958868619055,196.30808164505288,196.03400877024978,195.46586288278922,194.80206946237013,194.51821222063154,194.13248782465234,193.84860156755894,193.27383696939796,194.26830462785438,193.51947055617347,194.29168221307918,193.99109867587686,194.93301194906235,194.11528160702437,194.11504180310294,195.00137250777334,195.10729282395914,195.83314569899812,196.4056280972436,196.25266532739624,195.74753051344305,196.0223875422962,196.75185765465721,196.26541817514226,196.31812413362786,195.64314106851816,195.5447367047891,195.49242413276806,196.31997214863077,196.010045573581,196.80817321268842,197.37667530681938,198.01435940153897,197.85261504119262,198.64575251424685,199.16213614633307,199.64875567285344,199.47830032836646,198.97132886154577,198.12640302162617,197.59179404890165,198.26661782106385,199.1134615764022,198.68660617619753,198.01164350099862,197.89637442259118,198.274115270935,198.45191691443324,197.87601782707497,197.56288273772225,197.6139923078008,198.57520740991458,199.55267108557746,198.75054129678756,199.58760675461963,199.07128284173086,200.03462670184672,199.68292882107198,199.18831347627565,199.8597575360909,199.86292919469997,200.09039660496637,199.35956114064902,199.8195655681193,198.85699734976515,199.2431404623203,198.89789509074762,198.65177169302478,198.52517779218033,198.3922486291267,198.0496553881094,198.23807093780488,198.21875374624506,198.58725826442242,199.3634138358757,200.32029094640166,200.23161279037595,200.72047174768522,201.52225054753944,200.65566818369552,200.4440612778999,199.47888706019148,198.60626635421067,197.773418773897,197.44331790832803,198.0164938722737,197.6137108327821,198.12432207213715,198.44114989368245,198.79893180914223,198.41957103041932,198.43317571096122,198.20376824913546,198.53020287770778,198.84562609530985,199.76180141046643,199.32672413019463,199.320807330776,198.41149719804525,198.09759949566796,197.63184965215623,197.67298486735672,196.9431550684385,196.2550114239566,197.02691327035427,197.1836631190963,197.80369934858754,198.49098742427304,199.27237988915294,198.73712891573086,198.09746959758922,197.13824877794832,196.43725359952077,195.9869077494368,196.61709194956347,196.62234970275313,197.241811233107,197.90858926437795,196.91741230664775,196.28415374457836,196.57464187359437,197.33169003902003,197.5389163531363,197.78366699442267,198.5408525117673,198.8139286339283,198.68376930477098,198.22219419619069,198.61909820884466,199.23686039587483,198.66615378344432,199.35779743129387,198.87409467436373,198.74500042013824,198.83159193210304,199.55968231754377,200.24721898371354,200.2587260552682,199.574151951354,199.97263417905197,199.31701481482014,198.5002411925234,199.19963629217818,198.31794148357585,197.7679830826819,198.13760065101087,198.0198290818371,197.46940093114972,196.58558686310425,196.36999967880547,195.9864960871637,195.1215445511043,195.3776399679482,195.09777660714462,195.58458914933726,195.35826865350828,195.85282501811162,196.03664468042552,196.78870641766116,197.591112814378,198.24326690426096,198.35524919675663,199.07412756141275,198.28964878804982,198.84580755233765,198.75962701812387,198.19784654770046,198.59504160983488,199.4305824143812,199.09202438453212,200.08509297436103,199.43162279156968,200.21319789998233,201.08525113388896,200.97163180913776,201.82875193748623,202.1799747343175,203.08624276565388,203.69036612845957,203.529113415163,203.2752987248823,203.2399004860781,203.40483916224912,203.6873130146414,203.24732631677762,203.4829292781651,204.13288775691763,203.3604521784,203.33141984511167,203.11012854799628,203.13262343034148,204.0727081373334,203.31824006931856,203.52605552319437,203.26122872903943,203.85183935938403,204.36462096776813,204.67400197172537,204.6387704294175,204.7709653894417,204.9510765033774,204.0419538016431,204.3483513314277,204.45592088112608,205.3578779483214,204.7538947770372,205.05938610527664,204.9576359433122,204.48118904372677,205.4571578563191,204.90814114362,203.91682435199618,204.1592311905697,204.6333224819973,204.8152111824602,204.60804895404726,204.95625904761255,204.79240159969777,204.6194708896801,203.65884761326015,202.93676614016294,203.33289607521147,203.82904039183632,203.3728576786816,202.92178477486596,203.21857509063557,202.85635148361325,202.5656618452631,202.21022561192513,202.89733451139182,202.15101903118193,201.3371200170368,202.17407112196088,202.98367657745257,203.48928616661578,203.14365206100047,204.07173885125667,203.15936312638223,203.30673223594204,204.13619812345132,203.48262737039477,203.61009773332626,204.28501693857834,204.39923682250082,204.26949280127883,203.31962813157588,203.35723232058808,203.81237350776792,204.32148044230416,203.86633416172117,204.2877721907571,204.60021318728104,205.597675784491,206.3269163183868,206.1410516295582,205.3391418880783,205.9303475562483,205.15661134012043,204.2540334085934,203.8012931565754,203.0547590116039,202.99197719898075,203.93136121844873,204.63808170892298,205.19558488670737,204.93838775157928,205.57898466149345,205.86978625319898,206.103638314642,205.67006122972816,206.48208066122606,207.2721499549225,208.24328986555338,208.00952979456633,207.97620917018503,207.87414768943563,208.84587358729914,209.38438680022955,209.76732159638777,210.74884703196585,211.35125538986176,211.80962639674544,212.59279874991626,213.50016248738393,212.82253899192438,212.7267537554726,212.49557908112183,212.78461646614596,213.2375188334845,212.917179482989,212.4501547217369,212.286058510188,211.31584516679868,211.74120792932808,210.95411538844928,211.74989267298952,211.71898653078824,212.44158507045358,213.22373500745744,212.9154486055486,212.7263310169801,211.87395758600906,212.40217989031225,213.1008280273527,212.2211320423521,212.8331777122803,211.95507997786626,212.60294899251312,212.10307319834828,212.58847008971497,212.98726651677862,213.13629987183958,213.52140079252422,214.42069866275415,215.3886637869291,216.0543338456191,216.27818971173838,216.8938820301555,217.65075842663646,216.95297927735373,216.39524397114292,215.8520508715883,215.7130215843208,214.79995382856578,214.73183943517506,215.4388829874806,215.96130531886593,216.83253248874098,217.06527758343145,216.49082549614832,217.1511352872476,218.12328548822552,217.71928298287094,216.74310827907175,217.37252645008266,217.14037578226998,217.2838164861314,217.6225831671618,217.7429486811161,218.2027418119833,217.9162598871626,217.26084733800963,216.40941993519664,215.9959957418032,215.5100504271686,215.81039328034967,216.76974509377033,217.00554979639128,217.79371124086902,217.8971398374997,217.56762976199389,218.48059136420488,219.46679112361744,218.84378256928176,219.77605277625844,219.25615925341845,218.27176228165627,219.1632694187574,218.5583528149873,219.45240261079744,219.89230588730425,220.79539399640635,219.9953191112727,220.42258429108188,219.95884190080687,219.73657941445708,220.2843474256806,220.2436512936838,219.92374147707596,220.5238384567201,220.24197284318507,219.68060863157734,220.64775951299816,219.96690999064595,220.72580574918538,220.97223743610084,221.54658908117563,221.4484387296252,221.9859428917989,221.89508332125843,222.13096561981365,222.7961766985245,222.72794748097658,222.59640524489805,223.3211442134343,222.63722357107326,221.9360180539079,222.11621913686395,222.6542616263032,223.62554195523262,223.82019573170692,224.62715836707503,223.98025912093,224.95684866327792,225.37338976049796,224.43680626852438,223.94402185687795,224.47086505172774,223.8489582175389,223.64418499730527,224.12550919037312,223.13783731963485,223.07422301452607,222.46671789931133,222.28603638987988,222.129806549754,222.11072807526216,221.34840737562627,220.97916993591934,220.15613717166707,220.634470094461,221.33932452462614,220.85498718172312,220.96747852815315,221.04468384059146,221.37910104636103,221.61020231852308,222.2762169027701,223.04744199290872,222.7864257991314,222.87172165792435,222.8391837971285,223.35518535692245,223.83183518843725,224.6466441405937,224.47829911578447,224.152702963911,223.9962595636025,224.22518833214417,223.2389050316997,222.6991298547946,222.00613295612857,222.2552487757057,222.99691089382395,223.13337801210582,223.87541426112875,223.86728762788698,224.85527226515114,225.5749280420132,226.11142042418942,226.13813031325117,226.85893171466887,226.7261467804201,226.5540767838247,226.28699893923476,226.31569459708408,225.66533060511574,225.45604600338265,224.5818585655652,224.22118752496317,224.5362932588905,225.35709593677893,224.38893790636212,223.8687860723585,222.86908405879512,222.75869474187493,221.98866762174293,222.75734825758263,223.59705833671615,223.08143212925643,222.55341686028987,222.37993152346462,221.48448643647134,221.81949113914743,220.92883864231408,220.50365134049207,221.22028100397438,221.98741406342015,222.7388049447909,222.90437387675047,222.83961370121688,222.09495178610086,222.55447074677795,222.37226706231013,223.2308108326979,222.3727211295627,222.85668436530977,222.81290661823004,222.35395280318335,221.99833555566147,222.14157219277695,223.00236332928762,222.91803843155503,223.6200125780888,223.97491897223517,224.76643570279703,224.70349678117782,225.43158907443285,225.49412160972133,225.94085522927344,225.70794861065224,225.1702634175308,226.16677191993222,226.54050261573866,227.46495601627976,227.0830057663843,226.7826646999456,225.93613920966163,226.11158458329737,226.63799615716562,227.213648901321,227.43480478180572,226.7444566092454,227.53744036285207,227.31821939256042,227.94916689954698,227.1327588725835,227.8339382847771,228.3965760488063,228.35833174129948,229.1082359328866,228.65552515164018,228.79489953024313,229.7364076464437,230.49082669056952,231.22894893027842,231.68111813999712,232.52636063704267,231.7590379305184,232.71862907800823,233.41277596820146,233.3830965803936,232.7483822805807,232.60400354582816,232.10097593488172,231.67492575058714,231.75756692746654,231.08607772411779,230.6721768346615,231.62063209572807,231.9112152243033,232.79412138927728,232.27087279642,231.459997120779,230.67221341468394,231.65472364798188,231.96934251766652,232.89836835674942,233.42592191928998,234.15096417954192,233.39000042155385,232.93663029000163,233.84113491512835,233.4236058006063,233.60412222193554,233.6636345279403,233.11385541735217,233.4570241770707,232.52902382519096,232.05414890963584,232.88877180730924,232.58615765487775,232.40186521178111,231.94815448764712,231.37083367118612,230.41303427610546,231.0958661166951,231.79266891814768,232.1716393204406,231.46401436859742,231.85365172894672,231.73710193112493,231.59393322328106,231.71807789523154,231.40698729921132,231.07770407339558,230.80975112970918,230.69837988214567,231.58372143562883,230.88020026125014,231.7457164293155,232.01625979784876,232.58589562401175,232.4945706562139,231.93693797150627,232.3428110126406,231.89382359199226,232.0078353858553,231.23345659207553,231.96014394704252,232.85296460427344,233.73997020395473,233.46812683762982,233.8392181377858,234.02121141785756,234.33960666507483,234.94984468910843,235.20063811307773,235.55349544761702,235.44805077137426,235.12764912936836,235.06392883788794,235.34062514826655,235.4264198532328,234.91668453719467,235.87516601895913,236.48301870329306,236.3399941236712,235.937714708969,236.04197070607916,236.31276617432013,235.4386331657879,235.62107422063127,234.79276880063117,233.91859336476773,234.0111905070953,233.9406520468183,234.5224559698254,234.54160830238834,233.8896383936517,234.50528900930658,235.35997263155878,236.29109859699383,236.04270444763824,236.57668758975342,235.75140936346725,235.14342163456604,235.8198074195534,235.3545333170332,236.14870742382482,236.7315706810914,236.04518066020682,236.88742611277848,236.06874476000667,235.6484116478823,235.9044694402255,236.3479991252534,235.5480945641175,236.28247062209994,236.38644488947466,235.42471917998046,235.9198676412925,236.2486295499839,235.34365627542138,235.3704157890752,236.14336232328787,235.32630242640153,235.09719841135666,234.89448890509084,234.03472205018625,234.67076746420935,235.32136704027653,236.26373553462327,235.8252440262586,235.95380407804623,235.7450836179778,234.9876032588072,234.42434294056147,235.28311881469563,235.0449108448811,235.87373589584604,236.57058968488127,237.14528260193765,237.75861883629113,237.14262081775814,236.26935386052355,235.88145120628178,234.89638533256948,235.1865462209098,235.07424171175808,235.97276083845645,235.18845641147345,235.58818214200437,234.67653510672972,234.9020072366111,235.35816497402266,235.36234384216368,235.55667469929904,235.24664767552167,235.18763069901615,234.59872071119025,235.11256446130574,234.70883510774001,235.06212457315996,234.44399252999574,234.9862211504951,235.95006207516417,236.27957483567297,236.58355392329395,236.75145784113556,237.52015613485128,237.96552169555798,237.54952924326062,237.82370160892606,238.4168901820667,238.9187958096154,238.47050516074523,238.99480409547687,238.80390364676714,237.92242688313127,238.3168775481172,238.44614826375619,239.2183882263489,239.214892600663,238.96635364508256,238.77877447055653,237.81589224981144,236.97229662863538,237.88549122493714,238.25721439067274,237.4283044990152,238.37291715387255,237.55593071738258,237.0365353631787,237.5693385861814,236.95798062253743,236.59643735690042,237.57812493434176,238.56773907365277,237.66331295017153,237.73843238176778,237.66298005077988,237.7358341915533,238.2896074061282,237.81566343037412,238.3395808469504,239.0665515102446,239.71532771736383,239.08181441714987,239.8048426359892,239.10477943485603,238.9517530919984,238.1218562037684,237.74150936724618,238.01474098488688,238.1070543290116,238.46650692401454,238.07125705387443,237.14298262167722,237.52636548690498,238.08207202982157,237.56359731964767,237.61155364941806,236.9470592867583,236.09884871449322,235.7172131408006,234.8470356813632,234.91599972732365,234.97450315020978,235.64943883102387,234.6585701755248,234.8240979569964,233.83421543892473,232.85274225240573,233.55233221594244,233.76943750446662,234.25757097639143,233.80613556830212,233.88965688226745,233.85791254183277,232.92950542876497,233.35349214216694,232.7252434422262,232.77154393773526,233.19841113500297,233.25720790959895,232.69837167253718,233.24312125891447,233.60980332409963,233.46976702054963,233.55698348162696,232.60237459791824,233.4749176404439,234.21561809116974,234.0581625965424,233.10525648854673,233.17018873104826,233.1185258300975,232.50442473776639,232.9718529456295,232.67451912118122,233.13346024695784,232.23740219837055,231.4571004807949,230.73168920818716,230.3267069910653,229.63620002241805,229.63072425546125,228.81895419815555,229.51017124857754,228.56721686478704,229.48511390108615,228.99276339495555,229.01769407326356,229.81462656985968,230.59481823118404,230.52109226584435,230.84350463934243,231.0539098191075,230.31555223325267,230.82369958097115,231.54961416544393,230.56503174547106,229.90134586486965,230.70800354517996,230.10503749316558,230.81549533177167,231.4322450705804,232.19639489334077,231.51239517796785,230.86027640430257,230.58305880939588,229.73688582284376,229.28412806568667,228.76089888252318,229.22949832305312,228.58216588525102,229.29095224523917,229.1352497562766,229.9991423729807,230.9657083656639,231.9208308630623,231.41405107080936,231.60734825674444,231.28918690700084,232.00248732604086,231.46713312156498,231.59585722582415,231.88227572012693,232.2616378632374,232.6566719948314,231.7998126265593,231.89312394568697,231.40869293920696,232.18528176192194,231.55676801176742,231.88859355356544,231.5663194018416,231.8548523611389,231.2738086571917,232.22693443484604,232.41331785358489,232.88879261584952,233.59156132349744,233.2753801625222,233.79740076465532,233.49334973469377,234.08138919156045,234.76954901963472,234.5404676264152,234.1955304336734,233.2423202265054,232.38157629175112,232.96602812130004,233.2288639228791,232.96162235969678,232.44791636010632,233.15913364570588,233.5709026916884,233.83582227583975,233.50925624836236,232.83422733703628,232.2415929157287,231.27278451668099,232.0472909375094,231.65558824455366,231.30733212223276,231.25769103784114,231.91367173520848,232.13180561969057,231.30721823172644,230.3534715459682,231.1935097789392,230.81777125317603,230.87017564522102,230.70674750069156,230.10487232124433,230.12515007518232,229.90030212141573,229.13227303232998,229.1263972320594,229.30310062039644,230.2730390476063,229.5037653357722,229.6780903819017,229.20610822550952,228.6728673139587,228.74184705223888,227.86702624429017,227.92944691050798,227.78147820290178,227.27147023240104,226.76290687546134,226.38590956991538,225.59082290064543,225.509545808658,226.07363348128274,225.84758849116042,225.63295852392912,226.3342355079949,226.79688821965829,226.80607033986598,227.39335421286523,228.2771109524183,228.5763520062901,227.83784893993288,227.68160897074267,226.99268646119162,226.77850347058848,226.21244763722643,226.73634189087898,226.75875646434724,226.41865954035893,227.2973498501815,227.4278763323091,226.82028735382482,226.58784981584176,227.3498499346897,227.59318245900795,228.45799652067944,227.68416898325086,226.74951561400667,226.9987592077814,226.1428221561946,225.89688680926338,225.6502456497401,225.5739629319869,225.69738732557744,226.02207954693586,226.99632050655782,226.39531239587814,226.74380316818133,226.24888952123,225.90244997804984,226.3632670007646,227.2263448331505,227.49477522447705,227.47330980561674,227.61200536228716,226.72014680225402,226.54609446087852,226.36937211966142,225.7742661680095,226.28803547285497,225.712469431106,224.72031755372882,225.61955538997427,225.78519748616964,225.24860270507634,224.33896277844906,224.97707033343613,224.19307198515162,223.34296122612432,223.93648902326822,223.05358893377706,222.741023178678,223.55753312492743,224.55108679365367,223.80503788543865,222.81373597774655,223.1195963541977,222.66827099351212,222.7812036788091,222.17139015858993,222.5531592988409,222.6852836473845,222.93093146476895,222.38349644467235,223.0164317539893,223.84929016325623,223.07121937768534,222.93541116453707,222.06227655615658,221.24308919673786,221.56839693617076,220.96240720991045,221.02609749371186,221.17344561126083,221.74405544949695,221.1871856371872,220.62529490701854,220.06297275656834,220.90400429209694,220.86739793559536,220.68249894864857,221.42903266474605,221.0103085222654,220.74700087774545,221.68093554861844,222.22130464669317,221.79660987993702,222.49212549254298,222.21549704670906,221.24036988103762,220.61393675440922,221.58263877825812,222.07111793756485,221.11947276163846,221.18045331165195,221.48092621797696,221.40753384819254,220.60002645291388,220.40561908204108,220.90004069916904,220.37204578518867,221.1853223517537,221.56443078443408,222.18229674641043,222.18863411666825,221.9410226731561,221.37812057090923,220.5919171036221,219.6770824380219,220.52650092635304,220.7018496217206,219.8896623365581,220.70007838169113,220.35142410174012,220.92203981243074,221.0808356362395,221.19604502804577,220.69853595178574,219.77972401445732,219.40320892259479,219.95482079591602,219.48723378498107,220.05100585427135,220.74505950743333,220.03292490402237,220.3665102389641,220.4034358523786,220.4819950624369,220.6708760363981,220.42955108731985,221.41176474886015,221.71007830509916,221.8910470707342,221.555147244595,221.32799536222592,221.59909427165985,222.38156934222206,222.52295348513871,222.24578906828538,221.88250171905383,221.32935287244618,221.64267853973433,220.75709344260395,221.56068911310285,220.66291691036895,219.9974409872666,220.18466670345515,219.75017616618425,220.50022748671472,220.34210896817967,219.58458857238293,219.57453489210457,219.87550994800404,220.8149103471078,221.18070567632094,221.12896106857806,221.67502956092358,221.86268369155005,221.57821136619896,221.76502112299204,221.38885569712147,221.14112295303494,221.12161455955356,221.71108196815476,221.35426642978564,221.90266910241917,220.98746380023658,221.10585360135883,221.99619333585724,222.50795329082757,222.6188306538388,222.17666317569092,222.1578211085871,221.68128745816648,222.60786511516199,223.55095278751105,222.90928246965632,223.42000590683892,224.27047927863896,224.05045258952305,224.83963925158605,225.3350361227058,226.03817207366228,225.17515877075493,225.25938257016242,225.17403188394383,225.97042353684083,225.81990824220702,225.68990260874853,226.24489136366174,225.8385050976649,226.56524596828967,226.5788123239763,227.48013917449862,227.7453324496746,228.5111375162378,228.4816169878468,229.19909739401191,229.18127867253497,229.82877713022754,229.10351455258206,228.16937073832378,227.9211239879951,227.12284435192123,227.99337834166363,227.32327909441665,227.7677034502849,228.552772606723,227.75571844354272,227.51035256311297,226.96900538401678,226.28904714109376,225.951381648425,226.10083394218236,227.05687886895612,227.25911064539105,227.79893986182287,227.83401498990133,228.1613292680122,227.56821568636224,227.00854725018144,226.03940955363214,226.34488972602412,225.63804319687188,225.8502693567425,226.5428953645751,226.1265115845017,226.04559076670557,226.16117491712794,225.35973141668364,226.1642565666698,225.57199967978522,225.2682444541715,224.58716065157205,224.20562400855124,223.7654223316349,223.28584409179166,223.15671512158588,223.6698951101862,223.78925267746672,223.6200128030032,224.37675788300112,224.34591614082456,224.34656071988866,224.99756824830547,225.1983475764282,225.75534590240568,226.14016175689176,225.4457058981061,224.5294242533855,224.09658427303657,223.1983015742153,223.65437397593632,223.22420178819448,223.4237094973214,222.87993580196053,222.48489767313004,222.8816562271677,222.8955345475115,222.0153782828711,222.9078615680337,223.85333018098027,223.7793878177181,224.32140502566472,224.67380826734006,224.87367503158748,224.0051766820252,223.5593770495616,223.96199145261198,224.25909887766466,223.2803073846735,223.22883452055976,222.768393042963,223.1544285789132,222.32612909190357,222.8871882064268,223.50168000115082,222.80895558232442,223.373787865974,224.2047296925448,225.1065979236737,224.49247506679967,225.08737550256774,225.41580312512815,226.32824361743405,227.11900459136814,226.50302682630718,227.0882116733119,227.49547612434253,227.8438596581109,228.23208884010091,227.62903831526637,227.41960668424144,227.28435301035643,226.45295287389308,226.08192515093833,225.59948778385296,226.3781456523575,226.29201313992962,226.4369246661663,227.29186067916453,227.63223409513012,228.56413395470008,228.9769561854191,228.32329089427367,228.31163304671645,229.01080019958317,229.63325607823208,228.73886368330568,228.96127907233313,228.71269767079502,228.35147055750713,227.95546424668282,227.53802876314148,227.50024225283414,227.96328002447262,227.9242787566036,227.04882907448336,227.93402561871335,228.65868754684925,227.81022811448202,227.1785015342757,226.22278445679694,225.34961336944252,224.44694354757667,224.09276017080992,223.5154631147161,223.4310516603291,224.0827760938555,223.42823454365134,224.28228598786518,225.14502621861175,224.7277360977605,224.35516315186396,223.5554962689057,222.91786780999973,223.79729307303205,224.49242755910382,224.00583888869733,223.8443129309453,223.82603556662798,223.60517369769514,223.08406856656075,223.63728758366778,224.56406868156046,224.83987516816705,224.98012291360646,225.5318306866102,224.96800742018968,225.84189449250698,226.45485501550138,226.63503738492727,226.1635679216124,226.86173559958115,227.66319058695808,228.44547064602375,227.66834732564166,228.51720538269728,228.68500410579145,228.89413111051545,229.7247886979021,229.8499336298555,230.17899256572127,229.82171469042078,228.97895052609965,229.15100403688848,229.3118996298872,229.0757190361619,229.4167939964682,229.7942929766141,230.23702178429812,230.39700568420812,230.93967636488378,230.8225549501367,231.50410393765196,232.35248650005087,232.9629704854451,233.21959071978927,232.43496866244823,232.3751874314621,231.9879891392775,231.15590305440128,231.92394122853875,232.77276122756302,232.20160373533145,232.86849013809115,232.201529934071,231.52338881744072,231.9803988551721,232.77627106709406,231.99183510662988,231.71163967531174,230.96514747897163,231.81462525064126,231.14163894951344,231.36006495635957,230.83197313686833,230.11950066965073,230.81673945859075,230.43010870413855,230.01534299971536,229.99494035029784,230.75717198848724,230.05367943877354,230.50982351787388,229.5523844305426,230.17540729558095,230.11422477988526,230.83565786480904,231.06249603210017,230.95431595668197,231.03649666486308,230.3494593705982,231.1255487636663,230.2872837050818,229.74832605570555,230.2914131260477,230.2709182612598,229.43999814195558,229.30721013108268,228.36311972746626,228.85588930547237,228.02018937608227,227.3196903374046,227.19926545862108,227.04036219697446,227.820508944802,227.86943494249135,226.91010104771703,227.65586849534884,227.83674334781244,228.11538333259523,227.3791050463915,227.86785892397165,228.3934620982036,227.5885546687059,228.01145296450704,227.8617107612081,228.71620028279722,229.3272303584963,230.30870131915435,230.10094707319513,229.652546051424,230.6081420732662,230.79246794013306,230.27929553762078,230.91872856300324,231.0117868455127,230.100675157737,229.83973958995193,229.67407798068598,228.96013472042978,229.2059912434779,228.66001903824508,228.49613454239443,228.81010919017717,229.1911716950126,229.13743366487324,229.61038805358112,228.64498596126214,229.1251588347368,229.61758546251804,229.81799794454128,229.92111823009327,229.8611842757091,229.3310551987961,229.1976764490828,229.9840405974537,229.51499718939885,230.32974334945902,229.65305978711694,229.4075916837901,229.59164447709918,229.60318228788674,229.6139813712798,230.23786311456934,229.26935177855194,230.06863779900596,229.74853198928759,230.20418934430927,229.77409149054438,229.992188770324,229.65631456905976,230.24714662274346,229.94639149587601,230.71610215771943,229.97724557761103,229.7085785223171,229.66513173282146,229.4318219916895,229.65644306270406,228.7668531499803,228.22373909549788,227.35584576660767,227.56907158810645,226.94121259078383,226.18964134762064,227.18098125513643,226.19305506674573,226.51398063451052,225.68955198302865,226.15574749466032,225.21250701276585,224.35482723545283,225.30667495494708,224.7010602816008,224.9466593186371,225.2154870154336,225.96530687762424,225.21315864939243,224.80337432399392,224.7335294354707,224.8033674270846,224.97769157402217,224.8283986961469,224.94166926387697,224.6419465369545,224.97019729111344,224.8587781325914,224.81409367965534,224.50469404738396,223.83786844089627,223.76376148452982,223.4223171537742,223.919095588848,223.46593569684774,222.9117098278366,223.26480261562392,224.2393146813847,223.98097840650007,223.3751086113043,224.09068802464753,224.00542293395847,223.60850794566795,223.4172965036705,223.6480859508738,223.25370505731553,222.30947783589363,222.385978278704,221.85497642774135,222.34551401250064,221.55822805920616,222.07927525648847,221.57123859552667,220.9378622379154,220.67686531180516,220.84040624415502,221.10721526760608,220.25997019885108,220.23683999665082,220.1953920405358,220.0092945639044,219.7523032631725,219.1642383481376,218.91758296405897,219.69236582843587,220.44442252721637,220.1261941366829,220.98192347865552,221.7057316415012,221.06659391801804,221.61655068444088,221.406477403827,220.71636305609718,219.8727995250374,220.71222710376605,219.78557735588402,219.32798600103706,218.5967206847854,219.33036868833005,218.59192458726466,218.79692514194176,219.11703191837296,219.17089978558943,219.6957819503732,219.20689465291798,219.4157038871199,220.2062818449922,219.84962541563436,219.1807903056033,220.09093622723594,219.27690137224272,218.61687475722283,219.1881307796575,219.3950129551813,218.76942454697564,217.8118890663609,217.0660478794016,216.1170232356526,215.63383070519194,215.0011984417215,215.16983370436355,214.27516474900767,215.23741179099306,214.91691417992115,215.82875433564186,216.30816619796678,215.76923220278695,215.7564524714835,215.23062433721498,215.06234168773517,214.27118027489632,214.0966332233511,213.1346824001521,213.8209772594273,213.79873588308692,213.3220685319975,213.72308906912804,214.47553970338777,214.42568212701008,215.20642371987924,215.59309443458915,214.92372676031664,214.5140059022233,213.55324428342283,214.4293670784682,215.01163323735818,214.17263361578807,214.63507487019524,213.8387710005045,213.38175710476935,212.96294882846996,213.31184355262667,213.8724007504061,214.090765777044,214.1785972835496,214.1276599690318,214.4430990112014,214.75396947935224,213.78113968018442,214.30608023470268,213.7655850974843,214.31883953372017,214.037084789481,213.6743927486241,213.89373113121837,213.30178432539105,213.57412952650338,213.99992113979533,213.3574452404864,212.7145150108263,213.50876504788175,213.33197860373184,214.18747852602974,215.1110437582247,215.2548319492489,215.5353307109326,215.2763921841979,214.37626244686544,214.9549506381154,215.80553205031902,215.14565275609493,215.79260896285996,215.18804344674572,215.958247683011,216.7580596320331,216.9986683614552,217.0856844894588,217.0521493111737,217.5478087081574,218.20992792211473,218.92222535144538,218.4340243744664,218.62053066538647,218.64270296506584,219.16814237087965,219.0337709216401,219.68079994199798,219.72171235037968,219.6748166210018,220.30330936517566,220.95582800451666,221.51103803049773,222.24093279568478,222.66077356925234,222.30963739426807,221.55441462201998,221.55092250788584,221.66189663065597,221.70518481219187,221.8537228833884,221.6579923434183,220.75417754333466,221.53828204795718,221.34493318153545,222.29298036033288,222.77020175149664,223.4954826189205,222.50844208337367,222.0120194829069,222.80597012815997,223.35590897034854,223.752566145733,222.77884735632688,221.96514070220292,222.61644289828837,223.1582476729527,223.303560806904,224.17045925930142,225.01923566730693,225.81182026024908,226.80109878862277,227.22655974887311,226.85232929419726,227.08986138086766,226.7488690870814,226.04833318246529,225.2780912318267,225.13946808455512,225.66822886373848,226.0498320311308,225.1004938883707,225.18889113282785,224.4322941796854,223.92958437884226,224.48558783205226,224.4450541101396,224.76650660019368,224.90954918274656,224.89542712457478,224.86918914178386,224.59118204424158,223.91638709325343,224.73324625752866,224.8376470184885,223.90173800522462,223.6761115733534,222.92809525178745,222.24907674686983,222.45353174209595,221.6464734892361,220.70782508561388,221.66983114508912,222.2102462593466,221.94660203205422,221.97482998203486,221.74942089011893,221.63912492245436,220.83431172650307,220.38829486910254,220.39755854709074,219.79761017300189,219.8479130147025,219.1335653080605,219.13340043788776,219.55683334264904,220.52979664504528,221.37482298444957,221.12048218864948,220.65572113962844,221.13412723643705,222.0459423805587,222.34690095018595,222.44101762212813,221.66934063192457,221.5982686067,222.3755131936632,222.91009084926918,222.02644623210654,222.2533006928861,221.689231807366,221.71217529615387,222.30783519987017,223.22771924594417,222.97892756341025,222.94358796812594,223.76256543630734,223.674768417608,223.4737790976651,223.58841731166467,223.74357063043863,223.62395835481584,223.69964350108057,223.81539751356468,223.42305289534852,223.47760604601353,223.48753198515624,224.1117138126865,224.66654465952888,224.02729390002787,224.00599364330992,224.72781090578064,224.41795725002885,223.9739565514028,223.62326166406274,222.70091773523018,223.04276412399486,222.35769650759175,222.94867405993864,223.64251817017794,222.84287490556017,222.65480529563501,222.24963552784175,222.3813860383816,222.9562931084074,223.0213948301971,223.2400840674527,222.28687940863892,223.2172198537737,223.69761825585738,223.2672451781109,222.49196771532297,222.98964485991746,221.99259980814531,221.0755904428661,220.97616740548983,220.28620957490057,219.88418848626316,220.09450736781582,220.67784734582528,221.4512170990929,222.24723578384146,223.17800568323582,223.5271401964128,223.32976692402735,223.855029925704,224.28450829861686,224.94546969374642,224.3688598535955,223.8407205361873,223.67588583240286,222.97296853503212,222.0881199450232,221.4003251264803,221.07138018403202,220.65483390213922,221.62271476304159,220.88964350149035,219.9036017092876,219.13820375874639,219.7349429433234,220.12483412353322,219.38183983555064,219.5160252810456,220.40938879875466,220.78864767448977,221.59279993595555,222.3662485932,222.54389497917145,222.80665260273963,223.33585690008476,223.69688735017553,223.3561457521282,224.0232238364406,223.0592667348683,222.16637630853802,221.8074268391356,222.68028909619898,223.13264056714252,223.33606326626614,223.96296735061333,223.4978985786438,224.0572827165015,223.3657381637022,223.77368333376944,223.13598201796412,222.75957004493102,223.62258614832535,223.62296443851665,223.46246165363118,222.97314183833078,223.29000312881544,222.97937254281715,222.9881559489295,222.24340356420726,222.61781554156914,222.59529251419008,222.09010017383844,223.08840232295915,222.3868088745512,221.65427513374016,221.83797292178497,221.1454021539539,220.49866274697706,220.14230381138623,220.44534272700548,220.1069250162691,219.8989192075096,220.50055637443438,221.0173863172531,221.56581224314868,221.83430232433602,222.17106070835143,221.20935447933152,221.81909705791622,222.7129918038845,221.91540300194174,221.1003341982141,220.7796580651775,220.71565034566447,220.12025374360383,220.64443169673905,219.70832782844082,220.24737881170586,219.4365787343122,220.41887505631894,220.22531562345102,220.695040658582,220.2753828582354,220.88908555870876,221.15448990417644,221.42609063070267,221.47667739586905,221.25401341961697,221.7516317064874,220.8374161380343,220.81297097261995,220.19199847104028,219.70699285855517,220.35961552336812,221.23949392931536,220.6328139002435,220.20107921864837,219.2990974234417,218.56601499579847,219.27534858183935,220.1965722371824,219.60819227155298,220.03163953032345,219.93728084629402,220.86320490343496,221.82130266306922,221.54891147464514,221.16380913602188,221.0397624289617,220.67717005405575,220.48007550556213,220.78440685616806,220.63762689521536,220.0325209130533,219.9715121812187,219.55067108385265,218.8946490092203,217.89646811317652,218.85771487979218,218.46626103343442,218.6457771086134,217.75379171781242,216.99374685715884,216.139455311466,215.1762848738581,215.461417874787,216.38783337641507,215.63460480887443,214.7399738142267,215.0608519623056,214.36283484473825,213.6175182540901,214.22470655711368,214.05935265682638,213.89065148169175,214.22419292805716,214.38945897016674,214.2132331226021,213.66633885446936,213.59428807348013,213.58137484872714,213.09418166195974,213.8575839274563,212.99101380864158,213.1152774975635,213.88479329366237,213.34723545098677,213.2928030518815,212.64675053022802,212.50050595216453,211.60140263754874,212.03899334790185,211.43206758564338,211.26801654603332,211.80914166383445,212.18764900788665,212.2699235486798,212.0514897131361,212.24107103189453,213.04575282009318,213.96968106506392,213.8740720152855,213.89167100936174,213.07856813725084,212.14664290472865,212.35907043982297,213.31511699175462,212.76766410190612,212.01386150904,212.89953455142677,213.08360384078696,213.10218936670572,212.59958707727492,211.94545747246593,211.9237788952887,212.45591464452446,212.15686792414635,211.88346698135138,212.27254711836576,212.41567039256915,212.22359438287094,213.08533308748156,212.58943699439988,212.317762744613,211.80532837146893,211.41760511882603,210.5772009054199,210.37642163969576,210.85901450458914,210.52339073829353,211.0124834626913,210.22404530877247,210.66464305203408,210.29968300508335,210.2574051702395,210.27706397604197,210.31480984343216,210.44386607035995,209.57823122106493,210.31917579472065,209.49430299177766,208.61949963541701,208.6350012901239,209.20091399317607,209.36162519082427,209.8399429502897,210.0059907026589,209.09905458288267,209.94318717252463,210.17765006795526,209.8048550747335,208.8880730541423,208.58055712701753,209.16098343813792,208.17473772261292,207.45847330708057,207.24269465031102,207.4393601785414,207.6222458272241,206.75241764774546,205.9589305743575,205.97033803677186,204.9792740973644,205.6004266180098,206.21283653285354,206.38201463455334,206.31162019865587,206.44672606280074,206.2374953762628,205.9405312081799,205.7928858655505,205.7267659138888,206.5398672441952,205.90038433857262,206.68723328365013,207.673240697477,207.90409208089113,208.7905269479379,209.0672109145671,209.99882109928876,209.66568537708372,209.28252485161647,209.378799978178,209.5117276534438,210.0260799061507,210.2300623850897,210.44702363805845,209.6817967412062,209.83934715390205,210.25966017879546,210.34846261050552,209.36292595556006,209.49598947167397,208.85895918356255,208.98024744726717,209.0554008949548,208.78886587638408,207.8278397563845,207.9138868097216,207.37696406897157,207.93983091879636,208.55394542217255,208.95996141899377,209.8202295685187,210.19795437762514,210.0918393540196,209.8277360838838,209.49082256061956,210.20398646127433,209.82080092607066,210.61834339192137,210.65529326163232,211.28692652797326,211.86167301796377,210.9699541060254,210.31261782441288,209.53701464645565,209.22415610775352,208.51688000001013,208.34264001669362,209.25955089228228,208.73012621095404,208.65182243520394,207.70084680616856,207.52129081310704,207.82091072387993,208.7207425069064,208.84334760392085,209.80060078203678,209.76464091986418,209.00787833705544,208.0718265720643,207.4611519300379,207.2002122872509,208.10863808868453,207.45858891727403,207.52546097524464,207.55564400972798,207.4408792303875,208.225532961078,208.05598038993776,208.31649703113362,209.19810582045466,209.20190216368064,208.50171495461836,209.466994444374,208.93973583821207,208.7828689161688,209.10426806798205,208.27583303814754,208.1552638616413,207.8610564470291,207.13572302367538,207.01412959164008,207.23135810391977,207.15401365375146,206.2742357738316,207.01655806368217,207.7358408672735,208.1452791863121,207.8121959469281,207.44662725832313,208.11104566790164,207.97806337475777,207.59975859895349,206.75512219779193,205.9550108402036,206.27645008917898,205.59017339115962,206.28150476748124,205.72418997762725,206.29151523765177,206.50430437130854,206.39410362858325,206.5980509314686,206.3911752756685,205.9923522649333,205.35658006556332,204.50981401698664,205.23547898465768,204.47190839098766,204.55381318368018,203.9849878223613,204.67773081548512,204.6035489034839,204.63790069706738,204.0129064777866,203.1551273521036,203.7535371533595,204.68073080526665,204.74419602146372,204.07573254872113,203.18931476585567,204.16925625875592,204.45740082627162,205.07461141748354,204.7204490196891,205.4110678685829,204.84459714451805,204.65832337923348,205.08811490936205,205.02262616390362,205.542492991779,205.69966598879546,204.76495378650725,204.16282653715461,204.62906672013924,204.47063811542466,205.05032650521025,204.88212445983663,204.40573491994292,205.37850634707138,205.37057430343702,205.30632084514946,204.3811136977747,203.5190425235778,204.36778003443033,204.08250004192814,203.32357918377966,203.27085547987372,202.34196609444916,201.79659648612142,201.79478133516386,202.43085948191583,202.44241502368823,202.17592739965767,201.39308243291453,200.63826956832781,200.95307562313974,200.6775744156912,199.7748952950351,199.36442016391084,198.70412123808637,198.9227375034243,199.90087185660377,198.99499766295776,199.32392667932436,199.94884575810283,199.293020688463,198.56349554471672,199.25530156167224,199.74185903090984,199.44441653089598,200.38937516976148,201.3773147026077,201.96164402505383,202.33843605127186,202.37642236799002,203.05789284594357,202.90852922899649,202.78284980449826,203.69328125193715,204.66815472906455,204.39468956319615,205.11285406397656,204.99947063950822,205.0987026086077,204.77310611354187,203.96611166512594,203.99550604680553,203.20859445538372,204.16166798770428,203.26943891402334,202.3168692374602,202.00043439120054,201.55427442444488,202.26175908511505,202.21733581507578,202.668142283801,203.44039460876957,203.02676403522491,202.31242130557075,202.63884237408638,203.61465147929266,204.33462183875963,205.30802903370932,205.91389014292508,206.29819338815287,206.4245204324834,207.34721495676786,207.87668820098042,207.25765821756795,207.80841522058472,207.85922162793577,208.4356860909611,207.70901062292978,207.33402479812503,207.0867548827082,206.13912635995075,206.13357826508582,207.07023147540167,207.23338011279702,206.38968564150855,206.01398231321946,205.21046046726406,205.44356330297887,204.79536190489307,204.85071838181466,205.40718520479277,205.85123365465552,206.58292833529413,207.144635012839,207.3253350108862,206.3829374597408,206.59085689485073,206.8959605912678,206.6974411252886,206.41905757738277,206.52601428236812,206.70767594268546,207.2501068226993,206.6676204171963,206.19855121755973,205.60874442849308,206.6080316011794,207.03345086425543,207.3747059586458,206.69737598439679,206.71304945554584,206.11914601409808,206.1798955737613,206.82698986819014,207.55174090294167,208.4302579476498,209.0200382717885,209.12861986551434,209.91504671331495,210.27047824533656,210.90941179124638,210.88400203408673,210.56738353567198,210.13681748975068,209.95223860209808,209.40008731326088,208.55265588732436,208.13199191354215,209.1074042050168,209.43846076820046,210.23881009407341,209.97962023224682,209.7204111884348,209.29069011844695,208.79918778175488,208.16866530384868,207.48061623377725,208.01480321306735,208.5048310798593,208.8279286697507,208.3736864104867,208.0874487045221,207.32755126198754,207.6680867006071,208.03990424238145,207.93042834009975,208.01971831731498,208.6688380399719,209.04870369285345,210.00010591885075,209.00962014170364,208.9291685060598,209.10416666651145,209.67551393806934,209.19990312308073,208.8649557507597,209.4583614030853,210.12422925420105,209.38837326923385,209.27608983917162,209.7293958258815,209.090878946241,209.31946860440075,209.72665233537555,208.98240196192637,209.27968413801864,209.2563005196862,209.8222135324031,210.48536830814555,210.18378295609728,210.70239205658436,211.3852966465056,211.7008174112998,212.52766530029476,213.21363809891045,213.8970870547928,213.29935482749715,212.84404820296913,212.45532496646047,213.22026530699804,212.25813748920336,212.51632185885683,211.53141998965293,211.51344985887408,211.79516439000145,211.88069202844054,211.6658336906694,212.07917413813993,212.72140629123896,212.81345240678638,211.8843261282891,211.93436298286542,211.49692574283108,211.33096949290484,211.31414395896718,211.38638552231714,210.59465099591762,210.93581275455654,210.00179644394666,209.79491318808869,210.01918777218089,209.697884675581,210.4596614385955,210.395238396246,211.27723665628582,211.7666453854181,211.61622419720516,211.82686610193923,211.2688497742638,211.03026813501492,211.19767430936918,210.4991891956888,210.26754171401262,209.393389493227,210.36516147339717,210.44544596783817,210.74834304815158,210.02601394290105,209.032191330567,209.86628176271915,210.00450324546546,209.01184671372175,209.49129874818027,208.71316867461428,208.36079405853525,207.68878407217562,206.9118803953752,206.24743293365464,206.7164648603648,207.31289888778701,207.2978423954919,206.9048047605902,206.39821567293257,206.14958769641817,205.4439846337773,205.76897751213983,206.5222629713826,206.29217208735645,206.67090278863907,205.78622471075505,205.4526025597006,204.5061720223166,203.79947972856462,204.03606303362176,203.59394278516993,202.67472754605114,203.13286680402234,202.19396414933726,202.29868436604738,202.17378533165902,202.68575511919335,202.08788271946833,202.42087525967509,202.49876614892855,201.74823037302122,201.97459602728486,201.32612102245912,200.69686033250764,200.14952811878175,199.49717569025233,198.91268299007788,199.1556807900779,199.00496357120574,198.70136708952487,198.91374707454816,199.00457142665982,199.45104197133332,199.6335953134112,200.03302207123488,199.2088430193253,199.71483122976497,200.00856755115092,200.59447576617822,199.88805736368522,200.5187856242992,200.30006433138624,200.6019564815797,200.65808614669368,201.18040307657793,201.61533094849437,201.58210765151307,202.12601926270872,202.7324324506335,202.409262587782,202.81430793879554,203.4002450061962,202.58409875119105,203.41948603233323,203.7715072990395,202.86932352371514,202.9793788678944,202.51832907367498,201.9640925852582,201.46510611195117,200.788013309706,199.83951943693683,200.81616309238598,200.7329200990498,201.28957788273692,201.36428621271625,200.66740019619465,201.39159320108593,202.364627066534,201.98548623314127,202.0518467030488,202.72651828732342,202.1296432535164,202.68641838803887,203.41053413087502,202.5098266475834,203.14829643955454,202.31965850992128,202.22245221864432,202.45179128227755,202.83420027047396,201.97178302751854,202.05481086717919,202.9500065036118,203.03707464644685,202.98262265045196,202.72636812878773,202.92780293291435,202.3201699173078,202.65089952433482,201.8084200490266,202.3481182991527,203.1072239507921,202.75397679768503,203.3684375435114,203.7827779520303,203.12886939616874,202.29351394763216,202.17712923604995,201.25997270690277,201.08020206866786,201.79136793129146,201.54753674473614,201.14655254874378,200.173234062735,201.1600560909137,201.19510984886438,201.7628428596072,201.09043065737933,201.13847728911787,200.36541318846866,199.82246486609802,200.07689569005743,200.7876781579107,200.9152731387876,201.58946445165202,201.23521332489327,200.57361623411998,200.789663285017,201.5868683429435,201.48746766941622,201.3860993864946,201.935608537402,202.80289083858952,202.47628488996997,203.07849956629798,202.44786533666775,202.95594096835703,203.83808211470023,203.780599641148,203.09182555833831,202.9604601818137,202.93103879177943,203.54023513151333,203.2382063488476,202.72332194633782,202.85918257851154,203.32354575768113,202.52544788783416,202.13224341673777,201.31230475893244,202.14321083109826,202.85825992142782,203.70475396420807,203.0497460863553,202.66800258215517,203.5966806882061,203.38607242517173,203.3527748514898,203.67164862947538,203.8029992505908,203.19677169108763,203.05658138357103,203.12818785663694,203.24838165054098,203.11140706157312,203.91378269111738,204.02310101827607,204.44226843956858,205.40835655573756,204.44388250121847,203.4733527819626,202.60145059367642,203.2326936898753,202.71577600156888,203.12973616784438,203.4784439112991,203.04431435046718,203.02947937883437,203.01988858776167,202.40187487145886,202.63390670530498,203.31412175484002,202.4027569675818,201.684254899621,201.18968599056825,201.24525185208768,201.5658820886165,202.5389448958449,203.12053001997992,203.63706702087075,203.6867837146856,204.67532751057297,204.15461865160614,204.82876480417326,203.93102864548564,203.36601098254323,203.95414810534567,203.75381723046303,203.3203408299014,203.35113892238587,203.81748740701005,203.32509302394465,203.8473812076263,203.67891368735582,204.18986130412668,204.34301813831553,203.79355687461793,203.05912534333766,203.47004763409495,202.6545843104832,202.40234095975757,203.01591305900365,203.78060516761616,202.9364807936363,202.1184690920636,202.59121176274493,201.7685932237655,201.28893722966313,201.07677459251136,200.1140746884048,200.0402849232778,199.061867011711,198.377025897149,198.73100477363914,198.94415431842208,199.5707808341831,200.22322616167367,200.95551672624424,200.8348962017335,201.34119629953057,201.5166418752633,201.48455659253523,201.70697245327756,201.70522577036172,201.84683546610177,201.4578756042756,201.80593080352992,202.56268329778686,201.92302319221199,202.02520259609446,202.1278247232549,202.96266012266278,203.3697198643349,202.48908600676805,202.51859977655113,202.02870958810672,202.40648219408467,201.9546251092106,202.14493806939572,202.87642303621396,203.64213760988787,203.0372951249592,202.75112645793706,202.61173688573763,202.160883968696,203.01055925199762,203.63640149403363,204.55016391538084,204.1936149150133,204.50796637451276,204.9277417701669,204.87469345517457,204.59350955625996,203.59559568436816,204.08139353757724,204.33173898700625,204.2267256146297,205.1724119624123,205.33028577268124,204.60459874523804,204.31145663838834,205.03594615822658,204.83531741099432,205.11348074954003,204.2318196487613,203.4623076603748,203.73488678736612,203.93871676689014,204.15016895532608,204.38676788890734,204.7272285381332,204.1868202900514,204.33890919573605,203.5729922405444,203.5071275900118,203.44596780929714,203.86141723301262,203.51095655653626,202.87501698406413,202.95191728509963,202.28105450654402,201.8249725899659,201.8768717860803,201.29929702496156,202.26986591191962,202.79729246767238,202.24202760541812,202.54350955132395,201.6527566271834,201.34011956630275,201.37330168904737,201.6888411990367,201.56326247332618,201.43165913410485,201.97220112290233,202.92903970601037,203.92685102298856,203.35066444147378,203.700707109645,204.10085690300912,203.99230549950153,203.78810765594244,203.29618399543688,203.44888233905658,202.93945058016106,203.09565331507474,202.71386069711298,201.80653411801904,201.67884407704696,201.10716189444065,201.64408115297556,201.86978350160643,201.23261440731585,201.15784127730876,201.338547619991,201.28763990476727,201.3917275639251,201.1843674168922,200.91333896806464,200.99973376467824,201.4884890196845,202.40892203478143,202.1351396930404,202.79653755854815,202.08174249855801,202.1532391407527,202.28386238450184,201.6049440386705,200.85334184672683,199.97697900189087,199.11744601465762,198.58744909381494,199.06669390574098,199.11586945829913,199.19817664660513,199.29572890885174,198.61389023717493,198.8273974796757,198.7249056706205,199.23564782133326,198.86387358326465,198.19681109534577,198.62347252946347,198.05720999464393,198.40610845340416,198.8814864861779,198.61373696709052,199.29615151137114,200.27951183496043,199.45149557990953,198.70357443019748,199.26202169293538,200.09557207254693,200.31452175416052,200.76957157533616,201.0892389556393,201.9630832648836,202.91720154555514,203.66486909380183,203.00263922056183,202.31648315582424,202.73488085810095,202.62730669230223,202.21882481034845,202.9436374003999,203.8427899046801,204.56701575778425,203.57919531315565,203.93860777001828,204.57745675975457,203.97370494809002,204.07427705498412,204.81956132594496,203.91842758189887,204.23234429955482,203.40325025748461,203.25866159563884,203.38127308245748,202.56440447783098,202.2164283171296,201.93086829036474,202.25876933941618,201.7158086989075,201.37458070833236,201.00552555639297,200.03770271502435,200.1011694339104,200.55772092519328,201.27944760909304,201.09895000234246,200.79845191026106,201.00313041452318,200.62669538566843,201.26343818427995,202.189407880418,201.8532725875266,201.9054775419645,201.90387209923938,201.02783656679094,200.9404275584966,200.79913932457566,199.85341682378203,199.21881219837815,198.5317543456331,199.37707885866985,198.4841274614446,199.339698869735,199.17988272337243,199.9815635238774,199.22050467785448,199.81215399084613,200.308046114631,200.3845512373373,199.90231538983062,200.8041804023087,201.70199793297797,202.5644001881592,203.3573281164281,202.4889142238535,203.32010172726586,204.12964671570808,203.77178581245244,203.99198994366452,203.17620631493628,202.8807854973711,203.27617715112865,204.04418492596596,203.14295805431902,202.7165156956762,202.80668270774186,202.2375504123047,203.0343005619943,202.29126666113734,202.08699562074617,202.2742508878,203.18047835305333,203.72833084268495,204.05320693412796,203.14849047129974,203.34483958454803,204.31530546210706,204.80207286961377,205.10834926413372,205.4665556680411,206.06610099598765,206.79452520934865,205.80482713738456,205.37439298070967,206.17033857433125,205.21970700798556,206.21922572376207,206.92972642416134,207.53818429959938,207.5963859478943,208.52324246475473,209.12715248577297,208.3259855490178,207.58358515333384,207.8993856133893,207.97042657900602,208.96569912414998,209.2493233475834,209.44449062366039,210.00299332337454,210.98810342280194,210.30156119260937,209.98118493147194,209.19895099522546,208.5800699191168,207.685736882966,208.6007386352867,207.9052596236579,207.15915111964568,207.86704789241776,208.5985334138386,208.12949754390866,207.7719396268949,208.67347052926198,208.57310454035178,208.35432343557477,207.59557278174907,207.21557394461706,207.23477474041283,207.81431664014235,208.55378415063024,207.97311796667054,207.54684353480116,207.87539757974446,208.40931788552552,207.8041625120677,207.2538751065731,207.06331755127758,206.6826584180817,207.5174240381457,207.5656089875847,207.36208727629855,207.6956677348353,207.44570808159187,206.4511538296938,206.7095319502987,206.55861155269668,205.95713395206258,205.54265929060057,205.17095447517931,205.63481615530327,205.32865805597976,206.20517070498317,206.25661574676633,206.45943090179935,205.48738126037642,205.21753336070105,204.5871966755949,203.66610512975603,204.54724730923772,204.90932093048468,205.02602587640285,205.6776439459063,205.6940516945906,205.47538050403818,205.17969886260107,205.62492126366124,206.14753972087055,205.1670256680809,205.85334062809125,206.3853595512919,206.08976713754237,206.77079523727298,206.23467225488275,207.12193221319467,206.17758105276152,205.49876801110804,204.987544904463,204.44325859565288,204.56818865565583,203.93720441265032,204.2447124379687,204.6571301240474,205.24874191731215,204.79137356439605,205.04908876074478,205.22734374552965,205.86241784412414,206.33296934049577,206.2407862120308,206.2190851047635,206.99820428155363,206.23087229114026,206.61327213561162,206.6210002237931,206.02604992548004,206.1099718553014,205.99133782088757,206.03315641265363,206.63124535558745,207.17522213421762,207.11271592136472,207.1904439353384,206.2864026427269,206.1509025604464,205.23693001735955,205.8276184326969,205.4095002291724,205.98720329720527,206.80662184022367,206.83203168399632,207.6646349541843,208.08249700069427,208.3663047607988,207.76476409984753,207.0404429989867,206.09457680769265,205.92374025471509,205.1770539903082,204.72638180991635,204.18827883992344,204.41757105244324,204.27873018709943,203.64741035876796,202.82102240994573,201.9416895401664,202.81920143822208,201.98326672567055,201.85704068746418,202.71771763591096,201.9024221925065,202.42507547931746,202.35770905949175,201.59872192330658,201.19003560207784,200.8653376311995,200.10860328841954,200.62177534308285,201.21156633319333,201.6731304107234,200.9550962136127,199.96926932549104,199.39229892846197,199.547517019324,200.30714930500835,200.90075540402904,201.4203932657838,201.04711633734405,200.089700515382,200.32788772135973,200.57677051285282,199.587944611907,199.22045544581488,199.67519868724048,198.9729985804297,198.46558117773384,198.22316097887233,197.49867173703387,198.2149805482477,198.45783338462934,199.0503833340481,198.77423439873382,198.69996426953003,198.35236384579912,199.2108396710828,198.86904862336814,198.05250260047615,198.8783066123724,198.092159552034,197.39540250739083,197.0433063977398,196.70266203116626,197.23324315575883,197.5458644204773,197.3445884725079,196.77608717931435,197.28201058879495,196.50413685990497,195.7699382980354,196.75390323391184,195.94880041247234,195.04495988506824,194.81721301795915,195.29752859426662,196.1683217450045,196.41190271638334,196.16863780189306,195.6110750087537,196.2525965445675,196.6916444846429,196.1305633271113,195.6940132076852,195.35580071713775,195.00146027980372,195.10618873033673,194.86013700300828,194.0748206563294,194.21615852741525,194.26780790369958,194.63456539670005,194.26442270120606,193.28317856416106,193.08366229198873,193.4370748391375,192.4996064240113,191.72896605590358,192.1199641325511,192.76754024485126,191.90575955994427,191.83691159589216,190.91945983469486,191.50282397679985,191.83423082064837,192.07750213472173,192.725449425634,192.65483770798892,192.51918184245005,193.07197353290394,193.41683556791395,194.37600246211514,194.33200794504955,194.2168376087211,193.40882793534547,193.01243414357305,193.68504151934758,194.61559904366732,193.9238556032069,194.53073463914916,194.8491298169829,195.17654708819464,195.4294834448956,195.72353128995746,195.07571270829067,194.3561635906808,194.04868878191337,193.74507957184687,194.24912580056116,194.62899177428335,194.4207416730933,194.5290733408183,193.5614990806207,193.23986216075718,193.78124801255763,193.11137218074873,192.48794299643487,192.05427340464666,191.5459845783189,190.78877458442003,191.36535232467577,191.17445928044617,190.69050744501874,190.87449659686536,190.03999188402668,189.36507585458457,189.71172689879313,190.51463013328612,189.90697248466313,189.60599121963605,188.83088404033333,189.59881893359125,189.3201635084115,189.8615141590126,188.98544246749952,188.3456969950348,188.80616433080286,189.53014639904723,190.2323962310329,189.92885875049978,189.39265219448134,189.75850495696068,190.196607359685,189.61535079218447,190.33752979291603,189.68459516949952,189.4638583981432,189.47423176746815,189.12861749948934,189.60949555505067,190.03430423513055,190.45267030736431,189.77553703729063,189.26201185118407,188.47786724427715,189.06230050325394,188.95876710349694,188.15790271107107,187.71783925918862,187.89643420046195,187.95183270983398,188.27702966658399,187.7242290340364,188.06347786961123,187.63338078046218,187.64952494157478,187.54162618378177,186.77648998051882,187.44984953198582,187.88627107487991,188.5413787458092,187.90526849450544,188.4088041400537,188.96971043385565,188.29093057848513,187.6058516446501,188.07195893349126,188.6554894046858,189.31798426015303,189.65567584941164,190.51535803778097,190.91540708765388,191.826582652051,191.091984316241,192.0455507496372,191.14590551983565,190.64815106475726,191.04309506202117,191.91642694175243,191.39395192591473,191.72499676886946,191.3997151721269,191.54971085302532,192.05771534191445,192.02527079777792,191.18871030490845,190.49823627294973,191.36085590999573,190.4219112326391,189.72635495010763,190.24571595387533,189.29679539520293,189.23564105015248,189.0659285322763,189.20414825947955,189.74642385542393,189.7609780933708,190.6687123887241,191.09561347216368,190.94834866933525,190.70589986862615,190.219444159884,190.40653310483322,190.10422621807083,189.80190485250205,188.83185227168724,188.3661073469557,188.76124246232212,188.07244651252404,188.15924546588212,189.1557078678161,189.91888164216653,189.8405338083394,190.68514578370377,190.9778201058507,190.6299782670103,190.90184491313994,191.28929081512615,192.00646950956434,191.55808178847656,192.0334568126127,192.10724458936602,192.45781909348443,191.80454822070897,192.2759827026166,191.6288280878216,191.93243907531723,191.30898911785334,190.82693863939494,191.4587781126611,191.5033787013963,190.59200507821515,190.10377595061436,190.342077834066,190.31380879227072,190.0897792847827,190.81812652386725,190.43305305903777,191.19237837055698,190.64519856637344,190.24200581386685,190.2092894357629,191.14003264764324,191.5713380058296,191.35676645627245,191.7912590811029,191.33628113288432,190.72271375451237,190.8797953906469,190.14300991874188,189.53898933716118,190.25019534071907,190.2609755382873,190.89950121659786,191.36122921621427,191.66775513533503,190.6980221210979,191.127999342978,191.9914456163533,192.54671977134421,193.32431031996384,193.7741360878572,194.70294404122978,195.42911552404985,195.529756244272,194.5947870016098,194.78208508249372,195.72325868951157,196.57438813056797,196.82553122984245,196.0495891198516,195.203874879051,195.2961114360951,195.4135295469314,194.84122586483136,195.0182904168032,194.14672614866868,193.72454885579646,194.41990676615387,194.95549155352637,195.06916692992672,196.01084409328178,195.77241245284677,194.951259852387,195.14411506056786,195.23554209573194,196.1343398289755,195.8852814277634,195.8115784600377,196.39448706014082,197.26593487150967,196.39881734875962,195.58278984297067,196.16081549506634,195.2753132986836,195.5576451132074,196.1265123197809,195.67735919170082,195.45563817815855,195.27176670078188,195.9200519565493,196.5326979677193,196.11548204161227,196.17316994816065,196.19455931708217,196.91895529953763,197.2161337104626,197.38272236054763,197.13689845614135,196.74184455815703,196.538232173305,195.87679650634527,195.6742993616499,195.94019191293046,195.4651327971369,195.82436583703384,195.25123984646052,196.06006213417277,195.48579238681123,196.18659712839872,195.54465459566563,196.10080007091165,196.9704581545666,196.72078652773052,196.6706869197078,197.3967584418133,197.29300070740283,197.01509871706367,196.7834488018416,196.95092955371365,196.84255576506257,197.31062641274184,196.48073394596577,195.65777756925672,196.12288690404966,196.19860850460827,196.20320652192459,196.10345427552238,195.49571231054142,196.4522483497858,196.07709222240373,195.15617485763505,195.0373043315485,194.05398513935506,193.56705987080932,193.21283604111522,192.74842403735965,192.44055422767997,192.86151540186256,192.83305928250775,192.47667141631246,191.53278271201998,190.76809088233858,191.52898177411407,192.18500778917223,192.400118265301,193.03182920394465,193.2245465372689,192.99623263254762,192.57086055958644,193.34400906367227,192.90066056605428,192.30160736013204,192.95822363439947,192.68600460747257,191.76480962475762,191.88470263779163,192.40421646740288,192.2579196342267,192.32075966103002,192.42657313169912,192.58551098546013,191.6145201367326,191.63826216571033,191.54616237431765,190.81392006156966,191.5537944859825,192.00551595538855,192.92496033851057,192.27234207978472,192.86992057273164,193.6108571793884,192.7064503985457,192.62146460451186,192.75103372707963,192.44732500379905,193.13674700818956,193.6073479433544,193.3030691849999,192.487838068977,193.07372627826408,193.69659597380087,194.6765451063402,193.78035879973322,193.4571686447598,193.90650206059217,194.1207925034687,193.58154643466696,193.11543627874926,192.224218852818,192.11110269185156,191.14452543575317,190.20519882347435,189.79513229476288,188.99722224054858,188.59358844347298,189.37246306613088,189.85946895368397,190.59496212704107,190.83463154314086,191.48591277515516,191.4869074882008,191.7298826603219,191.79689548863098,192.46004140144214,192.61454698210582,191.62743874220178,191.69209970068187,192.2959482325241,192.3146688072011,192.24608311243355,192.1523313508369,192.12720717582852,192.99610654264688,192.44453582447022,192.89824015740305,192.89203676395118,192.97205870551988,193.32838386809453,194.24001783318818,195.11042002076283,195.2249692012556,194.5961314807646,194.94100641133264,194.03035902231932,193.2040536501445,193.99616158986464,194.3751778989099,194.02337939944118,194.43760847160593,194.8366516972892,194.88152949791402,194.78793697431684,194.00334627460688,194.15114971343428,193.15949456673115,192.97537640295923,192.62132947752252,192.13209672365338,191.5026829149574,190.7573865116574,191.56174689391628,191.5141908437945,191.97069880506024,192.28253764659166,193.24033678788692,193.64522048877552,194.47014421597123,193.7078380836174,193.3953493051231,192.9811079632491,193.50353046134114,192.67837990261614,192.21095691947266,191.81683032400906,191.29653150495142,191.53943852661178,192.35631208587438,193.1882081204094,194.07499709678814,194.82491958793253,195.45825114659965,194.47477308893576,194.75321061955765,194.65402584150434,194.10319569148123,193.21730316150934,192.48210179852322,192.32098809443414,192.93214263301343,192.84460496995598,192.77268754178658,191.90388537524268,192.6504379035905,193.4685282027349,193.96266734832898,194.65924362372607,193.74826287664473,194.2945245867595,194.74547029985115,194.9778722799383,195.1630906802602,194.28698544204235,193.93002658011392,194.112136867363,194.23337137978524,193.97934080380946,194.03831294039264,194.90661383001134,193.98662056121975,194.94557170849293,195.29169655032456,195.77689875802025,196.31075562676415,196.67338396282867,196.58032939117402,196.6918490654789,196.3619653088972,197.09654514864087,198.08392979670316,198.27971769683063,199.01154151326045,199.30999609362334,198.78587107686326,198.00864442205057,198.92321326211095,197.99065000424162,197.7138262190856,196.97734142746776,197.10294378036633,196.8559440043755,195.89505610335618,196.154641516041,197.01944070123136,196.16529817366973,196.09067754633725,196.52133325021714,196.52706972882152,196.52434111060575,196.166736332234,196.52675066050142,196.61288530472666,196.1063454723917,197.0992803387344,197.9450448649004,198.3431331529282,197.6785881705582,197.7427776781842,197.59561839234084,198.03342529246584,197.80127258598804,198.55428492184728,199.32627071999013,199.270054647699,199.44725859584287,198.86067967768759,198.97831752942875,199.91565415868536,199.0320018506609,199.48401586944237,200.14994983933866,199.1817457480356,199.5172891812399,198.6739727347158,199.3586292262189,198.64098207373172,197.92326020356268,198.02603643015027,197.7558233756572,197.07245808979496,196.33089225413278,197.3131939508021,198.1247438332066,198.9859280907549,199.6833030935377,200.30931955575943,200.62445680005476,200.60916581889614,201.1646899539046,200.84705677907914,200.51530595403165,200.04261404648423,200.4281884371303,199.58775017224252,198.59114309493452,198.93628993444145,199.8897978668101,200.29422262543812,201.19040913460776,202.02415580581874,202.66098419157788,201.838250560686,202.7393664107658,203.48220834787935,203.02387737948447,203.90553669584915,202.99760519433767,202.31594555359334,202.78134736604989,202.5712072052993,202.70373339531943,202.44704783149064,203.04566111648455,202.37240248546004,202.97648402582854,202.1559272427112,203.1540324613452,202.47814735304564,201.69066904392093,202.44215130992234,202.1942996350117,202.03581615071744,201.6121177347377,201.3318470865488,201.42430448532104,200.81814016913995,200.728621291928,200.26120151020586,200.2955450862646,199.65350842708722,198.81890980526805,197.94275235012174,197.09741807216778,196.86816507624462,197.3414247399196,197.87392253708094,197.0135900946334,196.59214482828975,196.88266337197274,196.08565275976434,196.51993385655805,197.2506927056238,198.13749796012416,198.51855717226863,197.51968071749434,198.1627073022537,199.04691597819328,199.37358873477206,199.9764297408983,200.76459958124906,199.9116603443399,200.77717557083815,201.26623957930133,200.33736219070852,199.66059560189024,200.04430839978158,200.75303923618048,201.40097700618207,200.87275211233646,200.22873897338286,200.34624141128734,200.97981191659346,201.35533263208345,202.32077339384705,202.40946788759902,202.1454315437004,201.2911801370792,200.9553650696762,201.95352264028043,200.97766942624003,200.45438665291294,200.18719924241304,199.747048266232,199.83690355205908,200.05343027273193,200.3206156361848,199.33647467428818,199.53880292363465,200.360392075032,200.89274307433516,200.05335244396701,200.89282767148688,201.54601824842393,200.78936452511698,201.27647212101147,201.0301884189248,200.90182127291337,201.21435483451933,201.42686302773654,201.25575829530135,201.70297991251573,200.74988749343902,201.34243200579658,202.2665855498053,202.89823406375945,203.273804243654,203.7662788243033,204.72600871510804,204.1018185466528,203.3811508435756,203.21001337794587,203.35123145533726,204.27465219888836,204.3832974974066,203.4643478943035,203.96295404806733,204.57659827312455,204.69590267445892,204.40469071874395,205.23502224730328,205.66286298353225,205.67375071253628,205.31722997827455,205.17154157347977,205.98666687635705,206.56274820771068,205.72056521987543,206.62384144309908,207.22379823355004,206.87085493840277,206.7166848941706,207.50966299371794,207.53353104693815,207.9046206609346,208.4606764097698,207.8744424493052,207.67880461597815,206.76562825450674,207.59521798836067,206.80490581598133,206.95832694647834,207.48888575518504,207.2419046307914,207.2240110798739,206.37773395562544,206.67636588169262,206.15094427904114,207.08470844337717,207.6260694297962,207.75579078076407,207.39321460854262,207.12133579608053,206.59163967333734,207.0121957268566,207.64986775349826,207.49467095313594,207.52904994785786,207.00065291812643,207.77885888935998,207.3860585866496,207.71900543244556,208.33994291815907,209.16445951070637,208.36889605922624,208.97265527723357,208.04492387222126,208.50179979903623,208.86513614095747,208.97145424690098,209.9620800241828,210.69247570587322,211.53959236014634,212.16156274545938,212.151072638575,212.01582070998847,211.21337975515053,211.73661161679775,211.0548611925915,211.98465628363192,212.45147010684013,212.28868283797055,211.45747724268585,211.44715244928375,210.54614803707227,211.50449491944164,212.0464808391407,212.23001448251307,213.02588616451249,212.16653620218858,212.3959294455126,213.29895743494853,213.83846174785867,212.88670941675082,213.85543933464214,213.27359272027388,213.22155573032796,213.90095525048673,214.89192718360573,214.20978187723085,213.25084087485448,213.96663355687633,213.92618936719373,213.769131929148,213.75307602761313,214.0303511605598,213.89134101895615,213.75990148680285,213.08167974231765,212.47834333125502,213.40440432494506,214.35581895010546,213.80524646956474,213.55870795436203,213.75407447712496,214.32818594155833,214.62789017660543,215.01474657049403,215.18127825763077,215.81370010925457,216.0748949246481,216.00843983422965,215.16683197021484,215.37545385817066,215.5560562927276,215.04814258310944,215.89235171861947,216.39032530225813,216.64327908027917,215.70584009122103,216.35339558683336,217.13173248013481,217.29839060781524,217.31626020371914,216.36853521643206,216.89881165185943,216.02859710063785,216.99949149880558,216.56885516736656,216.79932624287903,215.95254105562344,215.06439107703045,215.5677625783719,214.59082180075347,215.51225073402748,215.6862819949165,215.20137675153092,215.99953241320327,216.32712088152766,215.8117498550564,216.10066376719624,216.8943079933524,217.5559537759982,217.78233120543882,218.49114692164585,219.23354363488033,219.4087357702665,219.5642023170367,219.1138447620906,219.41356304148212,218.81786041054875,218.89661163231358,219.2322906004265,218.91491353604943,218.92957755504176,218.66952454904094,218.99114323453978,219.95043667359278,220.29040239052847,220.16081678774208,221.11580949556082,221.8215672923252,222.7448051981628,222.82237603934482,223.28960262658074,223.9207907244563,223.44479187205434,224.42330201761797,223.94770600041375,224.1915609575808,225.06576138548553,225.0314948684536,225.80580674717203,225.37839084118605,225.2513876776211,226.19354510912672,226.29471806716174,225.42765020020306,225.07146412925795,225.89948598202318,225.35080013843253,224.77609803900123,225.00904845027253,225.2138963243924,224.64343244954944,225.6119048036635,225.11292836954817,224.14473048737273,224.92401045979932,225.42155404621735,225.13939479645342,224.36286919144914,224.84885369846597,225.7648840751499,225.37613787082955,226.30559528665617,227.16103512002155,228.0936125437729,228.8837096169591,229.1095598069951,228.23492825310677,229.12489903485402,229.8977888072841,230.27619015751407,231.02152817230672,230.9763336079195,230.56263012439013,231.52287023328245,230.9018895193003,231.4368691262789,232.18609749525785,231.66848134156317,232.09272036142647,231.37943441187963,230.970683879219,230.9205014440231,231.82431061938405,232.5826828610152,233.27513374201953,232.62293375702575,232.31645734002814,232.86345298448578,233.6652705753222,233.51197182526812,233.48160710418597,232.86779138958082,233.09114227909595,233.38740313239396,233.90564488573,233.98737456463277,233.5831100968644,234.23791279410943,233.2539691706188,233.2388562061824,232.81959277624264,232.701394517906,231.71838854579255,231.80643756082281,231.29328037705272,230.33404122758657,230.73561584297568,231.15464664204046,230.19511581910774,230.3951470386237,230.59460022859275,230.82831292646006,231.47681975504383,232.04752815002576,232.13435030868277,232.49460866348818,232.62988394359127,232.94456120440736,233.60834824340418,233.9083249247633,233.06079037720338,232.5446087103337,232.04362860322,231.80961326835677,232.25561092421412,231.65997945796698,232.12370799900964,232.60963211813942,232.1179049643688,232.43389055272564,231.8035853547044,232.50533783715218,233.18398893997073,233.89648190373555,234.497642531991,233.6921706465073,234.3099589338526,233.87249926058576,234.82258465932682,235.0297273178585,235.29127230029553,234.5671930871904,234.40520735643804,233.58244463754818,234.27648261841387,233.9619367737323,233.49519362999126,234.04391314368695,233.04797256086022,232.2333180787973,231.2605745960027,230.33884117379785,230.0555316330865,230.40252339094877,229.43242481304333,229.40392170939595,228.8832308598794,228.3917673197575,227.78254492254928,227.47119993064553,228.0876821852289,228.20558857917786,228.00057378131896,228.55747291073203,228.54156871605664,228.8008820139803,228.68001515371725,227.75049086334184,226.78674544859678,226.672759889625,227.09952189400792,227.95131930941716,227.94021101202816,228.32728135725483,228.8378826188855,228.4942590398714,228.92928323335946,228.6532889539376,227.79536009486765,226.9863922232762,227.8812800361775,228.40495888981968,228.5853967918083,229.27052683150396,229.3728175261058,228.68346427800134,228.2790028071031,228.63278623949736,229.43123079789802,230.32787738228217,230.56735434243456,229.68776549352333,230.10437666531652,230.58804528834298,230.4747566091828,231.36462557967752,231.1840023752302,231.93428971990943,232.0485687367618,232.45276570273563,233.18238115217537,232.58459850400686,233.52273546811193,232.5623488239944,231.94154602102935,232.01654236437753,232.77293577464297,233.6909773722291,233.9239608598873,234.75098319957033,234.8964575221762,234.5714757712558,234.00877259718254,233.17758869286627,232.9841712168418,233.880455350969,234.53427452594042,233.56318723689765,234.49880027817562,234.89849705109373,235.48293542768806,235.70604450814426,235.91645295824856,236.78479902260005,235.8626760719344,236.7750629237853,237.11834594467655,236.5058174468577,236.1847755080089,237.14776200102642,236.96093039633706,237.95398427033797,238.67431084439158,239.50965258292854,239.38332783663645,239.87415233673528,240.5293812849559,240.03967229137197,239.92739455448464,239.78137367218733,239.59812728874385,239.51915393350646,240.0834399573505,240.5091764004901,239.92916294373572,240.02478129044175,240.54995891219005,240.76186101557687,239.96871195547283,239.01029048394412,238.2326908991672,238.90206269267946,237.94194976659492,237.94339022552595,238.19198290025815,239.1893653580919,239.55217813467607,239.72475027665496,240.1625649598427,240.33362759137526,241.06744090421125,240.157693174202,240.9854453476146,240.42430100310594,240.21982505265623,240.1735650729388,240.79780602501705,240.10741786006838,239.16425948450342,239.4471011478454,238.76687835901976,238.51362440967932,238.51506342506036,238.6111560757272,239.03225201368332,239.5657334732823,240.4188120351173,239.56658174609765,239.70285996701568,239.19349408708513,238.40944190556183,237.70834510447457,236.798887103796,236.49544276855886,237.03966351039708,236.72862162208185,236.73778670933098,237.3331252047792,237.13163433643058,237.34666990488768,236.84934354154393,236.4012132603675,235.68391630612314,235.18596592918038,234.4023220948875,233.90205441508442,233.9449703884311,234.26569862943143,234.15779137890786,233.6168061979115,234.5924481167458,234.7832743069157,233.91988603724167,233.68703086255118,232.90022893156856,233.3819982497953,234.33885046932846,234.98384592402726,234.63070498825982,234.72415680391714,235.27902095252648,236.22528387326747,235.8943182937801,236.57238323567435,235.81242888094857,236.05214239982888,237.03393145371228,237.16001766966656,236.6353013352491,235.92395388148725,235.9724064199254,235.4848742526956,235.80153495632112,234.99808025546372,234.06754752155393,234.27051921421662,234.24638847867027,234.729527677875,235.38293702853844,234.97007111134008,235.0478491736576,235.47697858791798,236.13206194341183,235.19766699010506,234.98751201014966,234.03704584063962,234.4644376388751,235.33501460310072,234.391998374369,234.99340960895643,235.24656908027828,234.39312452590093,235.2048299512826,235.99154039053246,235.71548563893884,236.57595616253093,236.67830143449828,236.0538935731165,235.6549414359033,234.84984473045915,235.3404541714117,234.69376670010388,234.1643000114709,233.99772132281214,233.8256880249828,234.47225127834827,234.9726233468391,235.87841375358403,236.06967526115477,236.67969353636727,237.44445148995146,237.23672360973433,236.82247812347487,237.00187298469245,237.9465658441186,237.03282626578584,237.19984269002452,236.95822343975306,237.5176168559119,237.39509931160137,237.44158852659166,238.15891103679314,238.8351970599033,238.5236545400694,237.66528677288443,237.7499216659926,238.0848066904582,238.9832036276348,239.68702588556334,239.58184714009985,239.49283358315006,239.3731393693015,239.60688553145155,239.71085664024577,240.3251517773606,240.03124514734372,240.7740134401247,240.01849504513666,240.49599266797304,240.41375761292875,240.06306890491396,240.42945975996554,239.99408530211076,239.96039067814127,239.629324269481,239.83294522715732,240.07745542982593,240.45281139435247,239.814579364378,240.38421128503978,240.11688651889563,240.05689994525164,240.16428137710318,240.09585256827995,240.13878041086718,240.0565629922785,240.98297968925908,240.71490641729906,241.54595469636843,240.75695379497483,240.0808051172644,241.03465932887048,241.07799356197938,240.1116606327705,239.7631551376544,240.0043485048227,239.4920610343106,238.79126911843196,239.06911227153614,238.87441821629182,239.30365633917972,238.8407945674844,238.49209741828963,238.04741829261184,238.68817084142938,237.71195813361555,237.01138379238546,236.1937331701629,235.71060531632975,235.37322886101902,235.8036485579796,234.91172883240506,234.01856913557276,234.04430224001408,234.08230904582888,234.45701349433511,234.58645699825138,235.50823477841914,236.27004887769,236.59613278554752,237.03011306049302,236.79379070643336,236.07413776544854,235.9196141641587,235.8063875241205,234.92151547595859,234.2066275831312,234.33760867919773,233.88747187750414,234.14150987239555,234.29274094011635,235.25404586084187,236.08703722059727,235.97303989576176,236.4466246291995,237.2014808715321,237.20118332421407,237.13910579215735,236.70024510566145,235.70986620616168,234.90517424605787,234.4103220514953,234.92478444473818,235.67884880350903,235.8176287007518,235.18407528148964,235.50417145015672,235.0082710729912,234.7320229522884,234.81629134994,235.21453861379996,234.6227951971814,235.1763622649014,235.64023251226172,236.4122555986978,236.3397527858615,236.35349859064445,236.2384925414808,236.59026420488954,237.05734802456573,236.12771632988006,236.42664572317153,236.06906641926616,236.07142487820238,236.1891688569449,236.36877117166296,236.4900518138893,236.6115574957803,235.6404466163367,234.92324886051938,234.26857817964628,233.85588988102973,233.15084505453706,234.02202752931044,234.43395063234493,234.26906785089523,234.56942980503663,234.36267218599096,235.19636351941153,235.84165846882388,236.8264216510579,236.5524826371111,235.60573697742075,236.11611183686182,236.64741127099842,235.75408513192087,236.02557626971975,235.66281869309023,236.11060473090038,236.63886605016887,237.60813498403877,236.74689064081758,236.39358817506582,237.0139075270854,237.81246785772964,237.53364140260965,238.1881301701069,237.65111829480156,237.6381198791787,238.19308512983844,237.31884528510273,237.1988048250787,237.22096458030865,237.02968726446852,236.28437289968133,236.0728306178935,235.1884956555441,235.56717289844528,236.09422365156934,235.64204113325104,236.03708862653002,235.92201170837507,236.18460000585765,235.79070418979973,236.34172745468095,237.13557321811095,237.13674776768312,237.153707399033,236.61458741454408,237.4388881684281,237.5840040515177,236.86330023314804,237.2207395718433,236.81882037315518,236.22329561877996,235.64027496101335,234.80354489665478,234.58428061148152,234.44094994710758,235.03001777268946,235.83824570663273,235.67610094882548,235.5621104752645,235.2395514883101,234.30675294389948,233.45242308080196,233.86925784870982,233.6638104999438,234.107794909738,234.94334330037236,234.21788431610912,234.39300555782393,234.1059417151846,233.97395481402054,233.24804836232215,232.61632686806843,231.75170611822978,231.07993703102693,231.7124509718269,231.51427158340812,231.5421191956848,231.82289817044511,231.61437473958358,231.85599560569972,231.85821263864636,232.2094329316169,233.0012419843115,232.05108711961657,231.77192059485242,231.80256450921297,231.21838642610237,230.2597897844389,230.56109014572576,230.26294760545716,231.15960556687787,231.79129267577082,231.09958937438205,230.32775098923594,229.94432905735448,230.46874082274735,230.65350473625585,230.7821219433099,231.37820881605148,232.27117920434102,231.6081592165865,232.54983445024118,232.13925240561366,231.5092500783503,230.9688960420899,231.33230298990384,230.88183769816533,231.53882725397125,231.08910428499803,230.4387462050654,229.45719411876053,228.74400518182665,228.95027700206265,228.73666082089767,228.7872336669825,228.38029350107536,228.93096736213192,229.42473301151767,228.52979017561302,228.97821614611894,229.01218214258552,228.30605328688398,227.64829043624923,226.92365921474993,227.56605849973857,228.20923928776756,228.43389050941914,228.22835030872375,227.2405163771473,226.26345769129694,226.64353167219087,226.78308181418106,226.51757287001237,226.06648282287642,225.58640340343118,224.94093600427732,224.4204138731584,224.37953715398908,224.27030619652942,224.45294870296493,225.31388180982322,224.40139690600336,224.04422169085592,223.60134148504585,224.1237578196451,224.60592712881044,223.92678344110027,224.43342860694975,224.2281605154276,224.61846229527146,224.9761636205949,224.3380471128039,225.0522032114677,224.15653337398544,223.8508695908822,223.90584444906563,223.12293365364894,223.913494492881,223.54931165091693,223.94470336847007,223.19779757363722,222.26972525985911,221.38752064108849,221.8349664020352,222.80782678816468,223.39077812759206,223.6083950563334,223.07425629673526,223.15790846664459,223.54239175841212,223.1631332365796,223.05603824742138,222.23141031851992,223.07394452951849,223.50690889172256,222.60348379798234,221.87698046909645,221.4955339152366,220.742960461881,220.05003091366962,219.05570030771196,218.85808427724987,219.8467191811651,219.14081123750657,219.88940343353897,220.7529027061537,221.20376430265605,221.73633394157514,221.64220629446208,222.62754079699516,221.97214914206415,221.2775627686642,221.09310703258961,221.4096689117141,221.26415397040546,221.762319161091,221.67954400740564,222.1617101645097,222.7981401127763,222.5530398520641,223.4658546168357,223.3293554498814,222.44021791405976,222.25081771519035,222.6948157134466,222.87258729431778,221.99014564836398,221.68225886905566,221.85609560925514,222.5414299070835,221.7125501218252,220.79454330680892,220.74722776236013,221.4834764166735,221.642436995171,221.7983821784146,220.85548573546112,221.7595789511688,221.46241564443335,221.5988434557803,221.79534872574732,222.26819126307964,222.690454128664,223.24164434848353,222.87123683840036,222.07220527809113,221.2319635488093,222.15928733628243,222.7230732133612,223.60981898149475,224.53136057266966,225.50919626513496,224.73992900690064,224.317976066377,225.04981807805598,224.7931368900463,224.12791482033208,223.69684044038877,223.56965164048597,223.05234366329387,222.66781401168555,223.56333959382027,224.03145805792883,224.25635709706694,224.49518977338448,224.18314285529777,224.68490069918334,223.7045072200708,224.10645183734596,224.0335428873077,223.4218020895496,223.58324867347255,224.55760621279478,225.0087205437012,224.5398231386207,223.622585198842,224.15765363769606,224.20032078120857,224.93286133510992,225.6946218800731,224.98629202414304,225.7208830458112,225.4177891514264,225.9877323010005,226.17002925043926,225.7085903598927,225.88915119552985,226.4627451589331,227.1494562686421,226.36346724024042,225.40917093260214,225.2090705675073,224.72789189731702,225.33862945716828,225.93390183569863,225.02239950979128,224.90373976994306,224.23724417574704,223.56077868817374,223.3909209226258,222.47245145589113,223.11595215043053,222.33478876855224,221.58247350342572,222.52199881291017,222.98554637702182,223.92220244882628,224.78349501872435,225.59006558032706,225.81968005467206,225.41952996747568,224.82748803077266,225.28572997450829,224.80591267859563,224.72140270099044,224.3309413222596,223.3929210426286,222.4858885393478,221.48846609005705,221.4715095385909,222.01562346704304,222.64781406661496,222.03766810614616,221.10052862996235,221.1842639790848,222.0544853741303,222.2409629477188,221.78855471732095,220.9120298102498,220.54752442985773,221.29572099260986,220.60299599869177,221.11081601120532,221.3083324721083,221.76971917087212,222.32208360079676,223.10953349526972,222.79740307293832,222.67417210200801,222.7489650696516,222.14791683573276,222.07699135085568,222.435120082926,223.2474156850949,222.73528537433594,223.30027550226077,223.86793582560495,224.18765995651484,223.5869585936889,223.77400312339887,224.75382818095386,224.1405422682874,224.14397345576435,224.1128033674322,224.92680412949994,224.70556241553277,224.27024340536445,223.2952071391046,223.67145780660212,224.22966090869159,223.69484278792515,223.94188014836982,223.85630129789934,224.4242585627362,223.96927969437093,223.75918379146606,223.60737275704741,223.55985475843772,222.8489822349511,223.00214478792623,223.94316398724914,223.98677877895534,223.27704212162644,222.9958153637126,223.070194080472,222.9128201478161,223.10852271784097,223.61265657516196,224.04259741911665,224.7458056206815,223.90216018352658,224.10249169031158,224.35125254187733,224.74465580051765,224.722989378497,223.99346421658993,224.95106303878129,225.50842635845765,226.05963783478364,225.3980260542594,225.85623440239578,226.05530562624335,225.14003091026098,224.99216406606138,224.08299972862005,224.00734978867695,223.83898214017972,223.7119502313435,224.00485318014398,223.9492283812724,222.99661125941202,222.30885869264603,222.16521178465337,221.32677284488454,221.90003355639055,221.44476088648662,221.4887789688073,220.58348728856072,219.857323739212,219.43956021079794,218.67496238742024,219.01451438479125,219.44690268300474,219.84379703411832,218.8819338399917,218.46724760811776,218.4795322897844,219.4270195318386,219.26087831147015,218.5887821149081,219.20218450576067,219.84347848175094,219.70367732876912,219.908652423881,219.26077165594324,220.18463815096766,220.17504681134596,220.85409097839147,220.2615756788291,221.2570503456518,220.63088320894167,221.1069878716953,221.8882622597739,222.2765945554711,222.0301494076848,221.1997024784796,222.04629863845184,221.71699265856296,222.52564514847472,222.63466199534014,222.46938893012702,221.83280353667215,221.41064659319818,222.00455853762105,221.6914809071459,221.8533252957277,221.87144291959703,222.02376683056355,221.4294079747051,221.99852768797427,222.53939556749538,221.77836878970265,221.36586667131633,221.04601758206263,221.9640031894669,222.38982501719147,223.2129770880565,223.76230759220198,223.51657966244966,224.50898350588977,224.56125632673502,224.2011712868698,224.39732235250995,223.8296495345421,224.60524122556672,224.62430325709283,225.34435264533386,225.36893310397863,225.10906422277912,225.6931246900931,225.0560216968879,224.44468863261864,224.8154988172464,224.58237068122253,224.01106450567022,223.9900859813206,223.03081757714972,222.37769561167806,223.15959942154586,223.83868379238993,223.63709970004857,223.47682079533115,222.74611145304516,222.89937691530213,223.83460948709399,223.7413343177177,223.79528411012143,224.74735937360674,224.45702762715518,225.38150818413123,225.94531013583764,225.98249610932544,226.9700108882971,227.9413218437694,226.9429852119647,227.37558491621166,227.6103457561694,227.18777554295957,226.74357377365232,226.89028044138104,226.80512354709208,226.3599093980156,226.36930656945333,227.24584990926087,226.33294988283888,225.4275885480456,225.48174612782896,226.02243703836575,225.14470531605184,225.4182480550371,225.23696688283235,225.3050891160965,224.8659439003095,225.86376496311277,225.59938730718568,226.22977016307414,226.05159135954455,225.95547105325386,226.6180561054498,227.58295191451907,227.2967633944936,226.65728126093745,226.79777416493744,227.14078732114285,227.80983948055655,228.28742986544967,227.88045613234863,226.89917789306492,226.60862931516021,225.65137575380504,225.7556253238581,226.3755746227689,227.05855711363256,226.44635470677167,226.8435224168934,225.90093234181404,225.55765459872782,225.3311759517528,226.04242932004854,225.51712978631258,225.9820227511227,225.94967904360965,225.31914756307378,225.72134012449533,225.57532116631046,226.33912543440238,226.70897535048425,226.59155723825097,227.4792232210748,227.85719257593155,227.3464691513218,226.57928230101243,227.09935959707946,226.14143905928358,226.71008178265765,225.77496470697224,225.50637599034235,225.2937362487428,225.7961290362291,226.09013352543116,226.62532133748755,226.65671822056174,225.7431249874644,225.11806863825768,225.0852579008788,224.69790364429355,224.14866471290588,223.51544977538288,223.9286388726905,223.9391536572948,224.04816580796614,225.02132083568722,225.80988941295072,225.50094534317032,225.03025738848373,224.82730971463025,224.46921596257016,225.0597205865197,224.3505163011141,225.29894031677395,225.72587013570592,224.86556165013462,224.80685089156032,224.25465464033186,225.0493234996684,224.79768628487363,225.3458615061827,224.4829149208963,224.22183095104992,223.84816890535876,223.76133900415152,223.8730280548334,224.43921842053533,223.815440999344,223.02688305126503,223.65092536620796,224.17215367080644,223.502675996162,223.80956833343953,224.1619030199945,225.16077535925433,225.4554328355007,225.83765749121085,226.77125622332096,226.53314851922914,227.2582790311426,226.34011366963387,225.8545792941004,225.2367539247498,224.435805473011,224.90604340983555,224.79901570267975,224.5317067070864,225.11204695468768,225.5630954504013,225.53128759516403,225.57999500446022,226.2570219496265,225.8991280393675,226.66812136396766,226.65938683552667,227.27437283331528,226.63831948535517,226.8483393494971,225.86922146985307,226.73735220218077,225.92165799811482,225.64721398847178,226.61471555242315,227.31296826526523,226.52090393193066,225.52327404916286,226.1700625102967,225.77602017344907,226.45801038807258,225.57996060932055,225.09437249507755,224.37342414073646,224.71083095110953,224.59236944979057,223.8490158766508,223.8822794770822,223.3840641262941,223.39330592518672,223.70323948236182,222.75522061018273,223.51636748900637,222.78544141398743,222.7404446620494,222.2157753915526,221.71112565882504,221.80452840356156,221.44147682935,222.03010837035254,221.09482192620635,220.10182558512315,219.6950555271469,219.99171395460144,220.5271641635336,220.7795110088773,220.80019361386076,220.11374285630882,219.70880506094545,219.08541003242135,218.17272496130317,218.12989526195452,217.95358019461855,217.2302602767013,217.49764314712957,218.14480488142,218.2174503528513,218.942251754459,218.64660130720586,218.2274414440617,217.7738547497429,217.45037989551201,217.9450693023391,217.27740063890815,217.14102015038952,217.22161130001768,217.74642193410546,218.6329589537345,217.87614761432633,217.6243270151317,217.2209774455987,217.62572567677125,217.71058262046427,217.52229378046468,216.86946891248226,217.1013436471112,217.5399683737196,218.34721127711236,218.999687647447,218.9019821374677,218.6304602958262,218.38489426253363,219.09250785782933,219.39061542926356,218.7249946212396,218.59748228359967,218.14416831405833,218.78232021350414,218.66558813489974,219.11313673760742,219.58050997788087,220.07148265419528,220.16353363217786,220.5946159735322,220.27764842566103,219.9915285059251,220.4871205794625,219.54718595277518,219.44501867052168,218.55609966116026,218.81104593444616,219.46948231756687,219.83161960961297,218.99601342249662,218.8062930800952,218.2825189693831,218.2035684878938,218.8149327361025,219.16986105730757,218.61625035479665,219.03639266313985,218.29955332912505,218.1051447656937,218.11755891004577,217.53430476458743,218.2929281918332,217.68874998763204,217.92405419424176,217.9906048597768,217.82400338724256,218.32004324765876,218.647022056859,217.8784230509773,218.6686542360112,219.11960682226345,218.63020173227414,218.253144309856,217.75519205303863,217.77240511169657,218.53522765869275,218.26798896677792,219.17619147710502,218.85815653437749,218.13800418796018,217.96900392509997,217.69000889128074,218.39778813533485,218.13616652414203,217.6170516209677,216.7109687998891,216.66505912411958,217.157679093536,216.99266021279618,216.361668149475,216.0304363919422,215.1146001587622,215.07482924498618,215.42992493137717,216.39209488779306,215.54336986364797,215.7049306659028,216.29544964898378,215.82291844906285,215.30047897528857,214.9036580780521,215.65654961112887,215.53411989845335,216.04505301080644,216.7237060610205,217.5074644931592,217.06771269114688,217.8894503703341,217.95582866994664,217.32174630835652,217.9175010183826,217.2995287431404,217.13064853707328,216.84747223509476,217.2449995423667,216.86276701418683,215.8702216311358,214.98784091323614,215.39673056686297,214.9259398286231,214.0943337935023,213.167259901762,212.99106845119968,212.3128361646086,211.63978703226894,212.5385791962035,213.10435735620558,213.5157414446585,213.04500589706004,213.5005122651346,213.906694018282,214.49770763656124,213.7528389026411,213.01861659204587,213.5378151317127,213.24525178875774,213.61915517086163,212.87143950350583,212.79488660162315,213.2628318737261,213.0691734761931,213.27551258727908,213.35424320353195,212.73833126714453,212.25841730087996,212.3396736816503,211.79978784546256,212.5104526760988,211.7239368786104,210.98143007839099,210.9717291565612,211.16586467670277,211.13582962285727,210.97126217698678,211.24522215453908,212.17781115602702,211.8763425401412,211.61040473310277,211.64011298120022,210.94782948400825,211.23741497006267,210.56754832249135,211.0831092535518,210.90591705404222,211.15556401666254,210.32241780264303,209.47294106753543,210.12606178456917,209.26335285604,209.89967775857076,209.26176665211096,209.0318923634477,209.21753729414195,208.8617976862006,207.89306162903085,208.4914364158176,208.91657624579966,208.3379917005077,209.0074461204931,209.48475344199687,209.55559642240405,210.43824453884736,211.23894365457818,211.27284802682698,211.25588207226247,211.20226506330073,211.75062440056354,211.2986669857055,211.39536843122914,211.57266450906172,210.72759660426527,210.13553185015917,209.20102409366518,209.9728570394218,209.13025626912713,209.67049326607957,210.32030979264528,210.1530179088004,209.49338866537437,208.85345817077905,208.125588667579,208.80621186131611,208.42462896183133,207.45718004507944,207.65679848659784,207.48529472853988,208.13243670435622,208.98489791387692,208.08361899666488,207.10413420479745,207.2636488871649,207.61149760894477,208.21517367241904,208.04817792540416,207.6491352878511,208.6394346212037,208.3991614067927,208.73569012153894,209.12481530057266,208.57594014005736,209.19547067396343,210.06699195643887,211.06275851745158,210.54239883460104,210.37007305119187,209.4469987861812,210.42279163375497,210.00033155782148,209.69060540478677,209.30346342129633,209.0239284685813,209.49003866873682,209.81531448150054,209.95940350042656,209.43443689728156,208.80906698061153,209.57489130971953,209.2157414285466,210.16957735922188,210.9983174339868,210.69500738848,211.22170411841944,210.65646948246285,209.94430458871648,210.82222283165902,210.69982523471117,211.49213861115277,210.54605657979846,210.8824424589984,210.07885860698298,210.91610018257052,210.04236364737153,209.71319467341527,210.6911214403808,210.65509685641155,211.4396906318143,211.0804286650382,210.34340859716758,209.86673060851172,209.35019604256377,209.42776758642867,209.22615338908508,209.31579792452976,209.97215850511566,210.58400749368593,210.67289110133424,210.43832743400708,211.41610347898677,212.209599732887,211.7639650348574,210.94483435945585,210.90055167488754,210.3967812731862,210.05073245987296,209.6904257684946,209.33938184566796,209.7658166717738,209.7269330821,209.24409849056974,209.54506463510916,208.90604516677558,208.0120131089352,207.05272404197603,206.4360958347097,207.25947160460055,207.83267171820626,207.36168538127095,207.49096397822723,206.5878510326147,206.72095831250772,206.52234759926796,205.98199702007696,205.2476197895594,206.17480291705579,206.2526276037097,205.4550467999652,205.8812346542254,204.8856600918807,205.653901593294,206.40506942290813,206.71165011590347,205.99915405223146,206.851191224996,206.67003810266033,206.9838028885424,206.10012869397178,206.1187450569123,206.22989646485075,206.13669272651896,205.65318672871217,205.3932203920558,204.94531831564382,204.03530506510288,203.20269489102066,202.2584498776123,203.10486910678446,203.10372687038034,203.5076691475697,202.70647226506844,202.23489132337272,202.72371008293703,202.83347359718755,202.41945769172162,203.00111667718738,203.20951765356585,202.83805585792288,202.75994399096817,202.4700626814738,202.34174413979053,202.9072545049712,203.7068645930849,203.2825302989222,203.4631630941294,203.05506862932816,202.6909727267921,202.84897155547515,202.28665687516332,202.89716030238196,202.28097259392962,202.47130495356396,203.09670151863247,203.69439052371308,203.57886742893606,203.87067131325603,202.88344363262877,202.69501696480438,203.40931695699692,203.1125338585116,203.26858748821542,203.465937809553,203.81809176830575,204.7452080170624,204.51051978720352,204.6341582746245,203.79272183263674,202.81844071485102,201.9988825377077,202.17126289755106,202.65400828514248,202.12918674061075,202.60324462596327,203.31517539685592,203.4043394974433,202.7294430299662,203.43862507212907,202.91358967171982,203.02317472174764,203.09158814093098,204.0083647677675,203.18817523354664,202.4013775815256,201.4056962048635,201.69900618679821,201.0837106849067,200.5370909422636,200.47434357227758,199.8606698703952,199.28348494088277,200.0297134872526,199.35842731175944,199.97734167892486,200.77670659683645,201.2948179244995,200.89213388040662,201.26331070205197,201.60420228308067,201.67920834198594,202.36934495763853,203.00191715965047,202.69422166747972,203.11931931972504,202.94374036090448,202.10492258425802,202.330235210713,201.56723195500672,202.10534755559638,202.14848992880434,202.10680556902662,201.1368673122488,200.67320881364867,200.34367996826768,201.17336572986096,201.89187425980344,201.44902803748846,202.00504245376214,202.9151103645563,202.31121035758406,201.65141080413014,201.56009712908417,201.96567327016965,202.0359410927631,202.54903932427987,202.9927517771721,202.0194450840354,201.96143371704966,202.52451293822378,202.0484732654877,202.59792532026768,202.14065800933167,202.96720779826865,203.37637227540836,202.91568441828713,203.12165283504874,202.19524931209162,203.0623550498858,203.08645826904103,202.83715859614313,203.08205309370533,203.43939480232075,203.52914723055437,204.4468225641176,204.10356709174812,203.98899061139673,204.72815845673904,204.9189813947305,205.01164447888732,204.71251753205433,204.275189361535,204.54168049339205,204.33073072647676,203.36117680557072,204.09609644766897,203.59261041739956,203.28672226099297,203.0004643118009,203.26541169779375,203.15563160227612,203.70988300954923,203.47200824553147,203.86759621975943,204.19933554530144,204.89737141598016,204.050955590792,203.57720848498866,203.12508451705799,203.88774135755375,204.06023550778627,204.8810046161525,204.87551555642858,204.57316690543666,205.2664423068054,205.60607528407127,205.83263175189495,204.91778323007748,204.9187216362916,204.57608138862997,205.48251543659717,205.5403370349668,204.90186413330957,204.66966959275305,204.94810712290928,204.8724149321206,203.99461743189022,204.34402053244412,204.043179564178,203.52797840256244,203.12863131333143,203.6774594532326,203.58659168332815,203.19061578530818,203.22668941970915,202.83688535448164,202.2104461742565,202.65759250801057,202.76843760581687,202.74254365824163,202.69824565621093,202.90168826235458,202.0559913488105,201.79659409401938,201.56302282121032,202.2672545639798,202.73048436595127,202.6394742759876,202.33765169093385,202.20613927394152,201.6652719420381,200.83003287529573,201.38671702053398,201.76073618093506,202.33505563205108,202.0989939784631,202.93689898448065,202.49600300192833,202.32546977279708,202.187971488107,201.6546159107238,200.97966099483892,200.59406778076664,200.03637890703976,200.53751177387312,201.14210892328992,200.7276284857653,200.19920452451333,199.68611470237374,198.91617904696614,199.02646995475516,198.92972502997145,198.06200589425862,197.14133960288018,197.7110752374865,197.61076418450102,198.38218196481466,198.4404636924155,197.83424449851736,198.1201637564227,197.56697579380125,197.24154615681618,197.17160618910566,197.67617802741006,198.2095452598296,199.07594675011933,198.4245301783085,198.8397345962003,198.26804910041392,198.70436381734908,198.61094960244372,198.62403241032735,199.22540777549148,198.410966492258,198.5589625230059,197.78248627623543,198.17786931898445,199.0015900018625,199.98254681797698,200.38024827139452,201.07456756569445,201.2613387829624,201.43174546025693,201.05513779865578,200.18238898273557,199.6363128265366,200.58047043485567,201.30698339128867,201.68871145136654,201.78366203745827,201.9037504438311,201.87404822092503,202.53770759282634,202.76873046951368,202.87420136434957,202.52875788789243,201.59448917163536,202.20935896690935,202.51826660102233,202.84183045616373,203.67379531869665,203.17752647818998,203.05412585288286,202.6739713056013,202.62026389455423,203.48665248649195,203.53963087778538,202.55445980094373,201.6777171883732,202.659344533924,203.34218941163272,202.5091848615557,203.35308835003525,202.7414742866531,202.86826269049197,202.22257302841172,202.82810068922117,202.77372732339427,203.01360633969307,203.18625257583335,203.31099288444966,204.24599386705086,203.80368070490658,203.06316276593134,203.68525734124705,203.59150344971567,202.744741526898,201.92359581403434,201.45744232926518,202.25075970310718,201.5512809320353,202.1181053351611,201.44716314366087,201.45031416835263,201.47529564239085,201.0850207079202,200.54467368964106,200.0675059678033,200.83080810168758,199.92390418378636,200.8339037131518,201.38218952016905,200.39483672520146,200.78388588828966,201.4017145927064,202.20132240047678,202.15193314291537,201.16515445290133,201.61096708942205,201.09156439313665,200.42254886357114,200.25882639735937,199.4550474905409,199.9360099430196,200.18629076704383,200.52810204867274,201.38590675080195,200.7644586772658,200.23465725732967,199.50275843497366,200.49516572616994,201.29804827366024,200.55468426086009,200.66780462907627,201.4800705416128,202.43974724970758,201.7261308664456,202.33286568475887,202.29333818797022,202.809153590817,202.06013249512762,202.88854745030403,202.43770356755704,202.5811313064769,201.81260527251288,200.9938505636528,200.5713718328625,200.56712806830183,200.402611927595,201.1304903649725,200.6279372908175,201.1289902953431,201.78394252620637,202.19959641015157,201.2442522495985,201.83598945196718,202.67325005913153,203.63284585624933,203.75328535214067,203.97796153649688,203.4618373438716,203.37585030822083,203.8173357755877,203.63567865174264,204.04330993071198,204.007021388039,203.8078066422604,204.47954085702077,204.74904990009964,204.57726522162557,204.5420747473836,205.35447110561654,205.10235865833238,205.50770971085876,206.41668603755534,206.01291586784646,206.65683079650626,207.22032169438899,206.70866558747366,206.37964797439054,207.12314014602453,207.7228326248005,207.830980877392,207.8400754169561,207.5506719672121,207.78490215353668,207.71832091826946,206.8247353467159,206.75776858069003,206.09552387241274,207.0204046247527,206.29450175492093,206.72548667807132,206.79468855448067,207.00259971478954,207.53283865423873,206.79261174425483,206.0730371386744,206.819306764286,207.39615163113922,206.96245869388804,207.80849988386035,207.1891612233594,208.16888323798776,207.49973741499707,208.39096430502832,208.17707106936723,207.4482610388659,207.85604417929426,208.17153620906174,208.02980130631477,207.10781235666946,206.17101931478828,205.39110793266445,205.8372251787223,204.99744143662974,204.19204510143027,204.10068552242592,204.92894999030977,204.4436045619659,204.45639518788084,204.85851335991174,205.19956063805148,204.96289098495618,205.09567625354975,205.73784533888102,205.98855369957164,206.0875194510445,205.75929383188486,205.47804130474105,205.40833118418232,205.14558133203536,205.03263076208532,204.7085229116492,205.4514212179929,205.03856314439327,204.96994138415903,204.63749194098637,205.37856387812644,204.5642036483623,203.93909635115415,203.46157476119697,203.26326908450574,202.85188311897218,203.80603653704748,204.5088268755935,204.80279012350366,204.62400644319132,205.09004057897255,205.32049645390362,205.19376207934693,204.74108160845935,203.8111894740723,204.5213819583878,203.5599256469868,204.30018771020696,204.68561007641256,203.94048431050032,203.07900473242626,203.2699621343054,203.23255274258554,202.4106955002062,201.93914078455418,201.69158460199833,201.38986686291173,200.77355716284364,199.85821435647085,200.54816736793146,200.18313339259475,199.665171504952,200.50555667374283,200.66278187930584,201.40057997312397,202.36580807622522,203.14959651697427,203.98709950456396,204.06011400185525,203.69498241972178,203.59314783941954,202.59554902790114,202.08821989875287,203.05861278949305,202.7371449074708,202.11645158939064,202.30703039327636,201.44622478168458,200.94503655284643,201.7358219572343,201.30600021686405,201.24048411473632,201.80360985407606,200.832972495351,200.94357352005318,200.6481767622754,201.09504304546863,201.53199482802302,201.533489739988,202.3743892405182,201.73303398257121,201.62323663849384,202.1624324945733,202.8823110833764,202.04042946454138,201.215876838658,201.43653736589476,201.48601561877877,200.6603300087154,200.25607777526602,200.2811151999049,199.75674135936424,199.66796594951302,198.86231739772484,199.33598175318912,199.23337679170072,199.59094138490036,198.8234253344126,198.67960878740996,199.558663376607,198.81056810123846,197.91598468646407,197.29220625385642,196.9261569995433,196.19800193514675,195.86696084681898,196.84772907057777,197.68999423785135,197.9157315720804,198.31315363105386,197.68338203290477,197.06078416947275,197.84390427730978,198.11577440192923,198.91507365135476,199.67266931012273,200.11364530352876,199.52699968311936,198.58514354750514,198.63794496981427,198.7197433616966,198.09055521851406,197.74897627998143,198.2726416666992,197.53448413033038,197.26623258320615,196.39884816436097,196.51892595738173,196.37786975502968,197.22979589598253,196.87691551586613,197.53783575305715,197.15247283969074,197.96255884459242,198.433103102725,197.50480501307175,198.29919064044952,197.49882540805265,196.77530224109069,197.20918500656262,197.3338851411827,196.48687081830576,196.498424874153,195.65989985642955,194.86087704170495,195.57900320366025,194.856792521663,194.73462877981365,195.5120749445632,196.5004454483278,196.99166258471087,196.5143436761573,195.97217660443857,195.47012642072514,195.6434786808677,196.23816893668845,197.19457814563066,197.56853605993092,198.12405314436182,198.55664717778563,198.428152278997,197.4625171511434,196.944874684792,196.23190064914525,195.33485101675615,195.21007843641564,195.505383674521,196.0059917215258,196.59992013080046,197.46627561887726,197.50828561652452,197.59824889339507,197.32317396160215,197.58247187640518,197.53869356168434,197.8675514627248,197.85051235975698,197.63335849437863,197.63693903712556,197.4184428481385,197.56005637068301,196.74603211181238,196.49945342494175,196.34778912272304,195.93793978914618,196.17631517443806,195.61037338431925,195.12875422416255,194.99394676927477,194.8756083380431,194.14915740210563,194.42214494105428,195.38470825040713,195.0211149631068,194.62176761589944,194.42738726362586,193.86681138863787,193.77840490546077,193.7812643959187,193.19931470276788,192.63964167283848,193.23867230815813,192.96665491070598,193.13890932360664,192.3980729044415,191.92452693497762,191.3194209523499,192.23675695434213,192.99189105583355,192.04866625461727,192.07775971200317,191.84687379887328,191.17893059318885,190.6351840151474,190.62423816602677,189.69860349642113,189.98602198297158,189.91408424824476,190.66958021232858,191.18605903862044,191.90241246670485,192.77573113003746,191.87951601669192,191.4033232028596,190.6453214287758,190.01712568383664,189.14486359152943,189.7805325933732,189.54526651836932,189.8501069867052,190.51606616843492,191.48081904510036,190.6372672934085,190.57527156593278,189.6641350891441,189.2559641925618,189.19070214405656,188.71381130069494,189.43319134460762,188.9898085393943,188.85955092916265,188.93982537277043,188.9707371974364,188.12631810922176,188.78044644696638,189.05894113285467,189.34600400924683,188.37755462154746,187.91532793734223,187.83477133652195,187.5755748921074,187.4634027290158,188.10722240014002,188.14668063633144,187.23517652554438,186.5316917267628,185.76232655905187,184.88374864589423,185.45053417189047,185.97891397494823,185.23636357532814,185.3849785006605,184.9341214648448,185.18652509897947,184.51789997378364,183.96774360025302,183.18716976838186,182.8508026623167,183.2605393230915,182.48965396825224,182.36739216558635,181.37369439424947,180.37615304347128,179.4550646468997,180.2537738904357,181.06112204072997,181.66154125658795,182.64767693914473,181.94562514172867,182.20576125988737,181.983497295063,182.52995272306725,182.38307842658833,182.7810219367966,182.48715907288715,182.9163751467131,183.31766543816775,184.16294034337625,183.99294146336615,184.05584736773744,184.57234235247597,184.57560060964897,183.95906912069768,184.91594903357327,185.75660869013518,185.52964416937903,185.79379596188664,185.72062840033323,185.79057583911344,186.15038768248633,185.69325465802103,186.49408009834588,186.43091472843662,185.93992647109553,185.0632996186614,184.53558013308793,183.91525764390826,183.37233220459893,184.0400302154012,183.10483958106488,182.24963015364483,181.34362051216885,182.09050203021616,181.09618532285094,182.07627754937857,182.4416501126252,183.11645142454654,184.05288561666384,184.32906596548855,184.5076661463827,185.4326364453882,186.33920948486775,185.63147161807865,186.38851181976497,185.9046998214908,185.8570210491307,185.69382940325886,185.99392196070403,185.62720690760761,184.9475753903389,184.37034236593172,183.69920769054443,183.33855183050036,183.1089057456702,183.71364954393357,183.60192513419315,183.26397264236584,182.6913033593446,183.23082282627,183.25200128322467,184.21779863070697,184.13029324263334,184.6097954888828,185.59231885755435,186.3757779165171,186.995282699354,187.1959930616431,186.9854321940802,187.46703072730452,186.51819601701573,186.03560252580792,186.6630439958535,186.46197180263698,187.01647968171164,187.94243043335155,186.98329789796844,187.51992866536602,186.5474773691967,186.2821961552836,186.47712222486734,186.2341565247625,186.58456494193524,186.811706291046,185.81826796662062,186.7458153758198,187.29318661475554,188.22360653383657,188.32548667350784,188.82332885358483,188.16631652554497,188.00964796030894,188.43991539161652,187.47535290941596,187.35811946354806,187.3068121559918,186.88878266653046,186.54902740987018,185.71335577545688,185.68973950948566,185.2831816370599,184.48662293422967,184.80662446469069,184.85494979191571,185.17126074433327,185.9426974146627,186.02998553868383,185.9574547857046,186.51849031075835,186.833470298443,186.88717534253374,187.18395957676694,187.33521194197237,188.0813527717255,187.73984653968364,187.37641331320629,186.51798897562549,187.27974024182186,186.3173519456759,185.84826900763437,186.74108755029738,186.85110406624153,186.0657817358151,186.25896542472765,185.65082816639915,185.66863235784695,185.18920292472467,186.05057009356096,186.7768071279861,186.4883741880767,186.76358542917296,186.40239989524707,185.75296508520842,185.51154069928452,184.91155732609332,185.06260528694838,185.90187545632944,186.54613152658567,187.5275890994817,187.09605577168986,187.54812795761973,187.6863296283409,188.46721868542954,187.59980235947296,187.59058916009963,187.9843647526577,187.74589049629867,188.5481090284884,188.31500802887604,187.57363962056115,187.108626910951,186.2256223410368,185.8068798086606,185.5382031374611,184.865643132478,185.70142105221748,185.2053739260882,186.0884326202795,186.32173918234184,187.17482031788677,187.46596628939733,187.78631009487435,188.12167840497568,188.0206916546449,187.5146917840466,188.1028093006462,187.3333947667852,186.9751184368506,187.4390891524963,187.2282844609581,187.10196135286242,186.37782523129135,186.72236495651305,186.1249857377261,186.07615171559155,185.8420913410373,184.98782965680584,184.5033400785178,184.1421463494189,183.9320954317227,183.14553176239133,183.0266291066073,183.44542507035658,184.39988731313497,185.36394604761153,186.15379706956446,186.85299512185156,187.61138077592477,187.56225314363837,187.65501227369532,186.7398202465847,185.9538844274357,185.888408430852,185.38622611295432,184.54000198422,184.02248529484496,183.27120001334697,184.19957277970389,185.09734570328146,184.46987197175622,184.89380741119385,184.24539282917976,183.39490402070805,182.65277127595618,182.37164826411754,181.71611194079742,181.84531720448285,180.96548353601247,181.63749077776447,181.41881673177704,182.40628251619637,183.40595186362043,182.98040448408574,182.7356712380424,183.58009621920064,183.90452048322186,183.35081906756386,183.7548824911937,183.5967969284393,182.88886451302096,183.24238972645253,183.69465306261554,183.91437766561285,183.48956777574494,183.11266964441165,182.72553609265015,182.48372587747872,181.48889898043126,182.05984372273088,182.65135785052553,181.65944563644007,181.85445655323565,182.02550558466464,182.72696999879554,183.05392483016476,183.06341635342687,182.7355723916553,181.77549705281854,182.33115588407964,181.53483680123463,181.55036159558222,181.94323688093573,182.67902289237827,182.77322447905317,183.42113284301013,183.91235398733988,182.92335229134187,182.4622158035636,182.89457952277735,182.16773185878992,181.29352794587612,182.13664531474933,181.89484111545607,181.0672974269837,180.09974040137604,179.7932060500607,180.17121583642438,181.05488145304844,180.70508537068963,181.32668497087434,180.57639562617987,180.6043851110153,181.4880665265955,181.67850337876007,180.86803950136527,181.49288380751386,181.19032344967127,181.63098126277328,182.2487243609503,181.51683820970356,180.83837754791602,180.00308463396505,179.82679445575923,180.55729749333113,180.61561011709273,180.41626555472612,180.66794405970722,180.26914853043854,180.9179920386523,180.27292065368965,180.40586158959195,179.5208373190835,179.90134963579476,180.0497751077637,179.6644208850339,178.71940433140844,179.60270857531577,179.7016618605703,179.21974362060428,179.23273875704035,179.89521912438795,179.92117299465463,179.28289965353906,179.6848555766046,179.06521301716566,178.7825899263844,179.1924434453249,178.34889851510525,178.8576850281097,178.9848348754458,178.05220116768032,178.4409275278449,178.513194068335,177.87518589338288,178.05087198270485,178.43463105056435,177.58330533234403,177.78591641644016,178.3888442721218,178.28069571778178,178.90640830574557,178.21374867251143,177.86587881390005,178.37954933289438,178.0220072506927,177.44196646800265,176.6800859151408,176.28877228545025,176.01066649425775,175.47819704562426,174.5537200984545,174.23490132484585,173.38995509361848,172.91591731086373,173.0452343057841,173.46450724080205,173.3260644809343,172.94753422029316,172.28325311699882,172.8732461114414,173.86393174994737,174.67761637549847,174.71416103793308,174.83706723013893,175.15335663501173,174.4928269945085,174.10123704653233,174.90954373171553,175.00188196077943,175.31165714608505,176.11205957224593,176.96230977680534,176.81695120502263,176.6285594305955,177.610057071317,176.8069209442474,176.38497667806223,175.8364150300622,176.82013119803742,177.41596746025607,176.7110876054503,176.57224628515542,177.47353325784206,177.11841187113896,177.78842635732144,177.25285991514102,177.56874445732683,177.5496921679005,177.04562135180458,176.29428578168154,176.36585116991773,176.16873406618834,176.48760562203825,175.7752217343077,175.69311949471012,176.17497126478702,175.58855577046052,174.8336639618501,174.89758966164663,174.44909565104172,174.46022496186197,175.11135892849416,176.06116354791448,176.9989721449092,177.81211664620787,178.55214198725298,178.98722770577297,179.4325417918153,179.68344753002748,179.92384159192443,179.36069811414927,180.2630915949121,179.5397221413441,179.9731681328267,180.0854754326865,180.65079717617482,180.7547400025651,180.2071480276063,179.4285818375647,180.14822451397777,181.05515016941354,180.56518138758838,181.43045646278188,180.67705055046827,180.47534204414114,180.60901324544102,179.70404772739857,180.27907697996125,179.74595832964405,180.6032040892169,181.58187421411276,181.926677481737,182.85312618967146,183.839896294754,184.52306092670187,185.26437983335927,184.54583124956116,185.36899221176282,184.60655289236456,183.69515672232956,182.89583116862923,182.90030572889373,182.9530655858107,182.37969701737165,183.18173568882048,182.48891065549105,183.1242214445956,183.25682285707444,182.62556453421712,181.68795971339568,182.3508819998242,182.91682228213176,182.0677794413641,181.8338555060327,181.32157397875562,181.0060327872634,180.4544613417238,180.5331148756668,180.9593628095463,180.39868915220723,180.13066497072577,179.87609933456406,179.96998375374824,179.03024732647464,178.7588237542659,178.4265307635069,177.46092010708526,177.42384624155238,177.33699901448563,178.18670777138323,178.92205750150606,179.50837150169536,178.85281374212354,179.0950218117796,178.91976202931255,179.5922455880791,179.41279825009406,180.19246664829552,179.5843615969643,179.04096147045493,179.76694107288495,180.6164654623717,180.50302417296916,180.45566354179755,181.0196675513871,181.11641654977575,180.86240328010172,181.2786130895838,181.37229297216982,180.94811057439074,180.42079720832407,181.1717425659299,181.7664058227092,182.3147903494537,183.18227104423568,183.75105335237458,184.2752487291582,183.72175341518596,183.23572206683457,183.5380806447938,184.2665235651657,183.64773213630542,184.63703212328255,183.9769726623781,183.09608398843557,183.22009044047445,183.25439559901133,182.39116526721045,182.0257941558957,181.4765233239159,181.60491323843598,181.44114644266665,181.57368839159608,181.4533393806778,181.22914212569594,180.92230987362564,180.3629213673994,179.9275149507448,179.15436237491667,179.7492692032829,180.73655201727524,180.5421482520178,181.47549535008147,182.40794737171382,181.52479079645127,181.27002961561084,181.45997977955267,181.93475534860045,180.9541102987714,180.55767610482872,180.407125136815,181.24449531314895,181.71233672648668,182.43724604835734,183.20113484421745,182.8694451195188,182.60001510102302,182.81191334547475,182.41546620987356,182.07651112275198,181.67550291493535,181.94870959967375,182.1326073044911,182.47062891023234,181.72433109674603,180.87336539756507,180.35997943859547,180.62702139560133,180.33668988896534,180.63414296600968,180.92891055671498,180.2487893481739,179.43648535059765,178.64337969385087,178.10306780878454,178.931324174162,179.1546164341271,178.6733564590104,179.64612091286108,180.1143267704174,180.50498684635386,181.1735035693273,180.1890971614048,180.2118958858773,180.58368410309777,180.22541076038033,180.7489306810312,180.75686926115304,180.68982236692682,181.6608294090256,181.70621093502268,181.36409539589658,181.31146957585588,181.2192706335336,181.0978378644213,182.08484026044607,182.68219589814544,183.4295625970699,184.40373319014907,183.40902135102078,183.39521479140967,183.5566575578414,184.10399037972093,184.79432115983218,185.15838650846854,185.30300263362005,186.16971570579335,185.75778183620423,186.19628293346614,186.20505825337023,186.8972924919799,187.57258332055062,188.5530653130263,188.08050283929333,187.70541842281818,187.82161771459505,187.56890646973625,187.92442985856906,187.9535839338787,188.55570464860648,187.68794885277748,187.6496251891367,188.43690343294293,189.31990252202377,189.17248318716884,190.10925402818248,190.0443190932274,190.63188489014283,190.47125323489308,189.75266952253878,190.6976218544878,190.16939220018685,190.85095008835196,190.82422010134906,191.4785713790916,192.42056786362082,192.23712582187727,192.21541163977236,192.51375240599737,192.5662708999589,192.5369645790197,193.33449327526614,194.0279872608371,194.99705793568864,195.09602720662951,194.7199870091863,193.82044712640345,194.4303558706306,194.0833994243294,194.4213708434254,195.00478934124112,194.72335384739563,194.07513349549845,194.10103122331202,194.98313611419871,195.08688099496067,195.23637236095965,194.812844987493,194.14311578776687,194.13889946229756,194.76829094206914,194.2893643709831,193.6041515916586,193.10094059165567,192.76637108251452,191.83486582152545,191.36995647242293,190.48674563644454,190.56398297054693,190.02557149576023,190.53981976537034,190.3395715765655,191.09248617757112,190.24518158612773,190.50420437706634,189.55509370798245,190.30556971905753,190.53703797608614,191.4646106059663,190.4676815685816,190.029955255799,190.52136113587767,190.3365782261826,190.7440655999817,191.459442013409,192.36245652008802,191.70020439708605,190.7637555403635,190.44125694641843,189.75088912202045,189.75650068139657,188.76622527604923,188.01960032386705,187.08479019859806,187.8552824826911,187.92408140655607,186.94535114709288,186.1479772347957,186.23015299905092,185.58305351017043,184.79564590752125,184.5015227580443,183.75893382448703,182.85247128643095,181.94025996048003,182.43492124276236,181.86266900924966,181.17408172274008,182.12359488895163,182.84901606896892,182.38570220023394,183.37303655734286,182.46666778437793,183.24122707825154,183.83781376620755,183.12001487100497,182.34638877538964,181.93444960424677,182.02459324896336,182.64856644533575,181.8745908276178,181.09673805814236,181.44398587942123,180.93768315343186,181.91094579407945,182.3846234898083,182.48380545247346,183.06583051383495,182.4373791385442,182.942092647776,182.6278774566017,183.01230309531093,183.7043831301853,182.7315873685293,182.8497395068407,182.68388184159994,183.63154298439622,183.11810039076954,182.18451452767476,183.15866505727172,183.31604273989797,184.01840801816434,183.56381478486583,184.21952851349488,185.1802525264211,185.8002731082961,185.3346449532546,185.95262637874112,185.82313606794924,186.8108708052896,187.3321231920272,187.04688238119707,187.35157711431384,186.37319870246574,185.50904251122847,186.0803494793363,185.1635086098686,186.08736212411895,185.56061624828726,185.74256971571594,185.52263946691528,185.22083609784022,185.71021721605211,185.96732902526855,185.5039100893773,184.86093219649047,184.83820646163076,184.47539280587807,184.03000149363652,184.7417082376778,184.41728219250217,184.59987812582403,185.20921936491504,184.92030813265592,184.93530701706186,184.83535266900435,184.3872807091102,184.14340855367482,183.16520296316594,182.18138089915738,183.09089179849252,183.62903250008821,183.7432890785858,184.047493301332,183.189374120906,183.62078365217894,182.92440686142072,183.86434768605977,184.56057656370103,184.4855007440783,185.2706415988505,184.62933222856373,184.05519789736718,183.55833211075515,182.63830989040434,181.89139467244968,182.13245176756755,182.98833281407133,183.15116295451298,183.67491251975298,183.63901326293126,184.54435503901914,183.85470308410004,183.99689698172733,183.93057237938046,184.24909196421504,183.3149932809174,182.76544039696455,182.3057482773438,181.63042475935072,181.9314139885828,181.31127873575315,182.14426491269842,182.82215258479118,183.14646868454292,183.69049519486725,183.48016459029168,184.1440548771061,184.6536751962267,185.4380820095539,184.5363711686805,184.26086189365014,185.20133394515142,185.39163644611835,185.49723016889766,185.92180797457695,186.27937733381987,185.90835618972778,185.6580360387452,185.1253852187656,185.64050711272284,185.03034062311053,185.02788617648184,185.9669733196497,186.90988571662456,187.33133862772956,186.65380439069122,187.46377428341657,187.21182695170864,187.80310954898596,187.88464223127812,186.9042167402804,186.0034835995175,186.1688677589409,185.61792214168236,184.84051022632048,185.5971798733808,184.91726018534973,184.80319146160036,184.12106381822377,183.94537303783,184.11667884793133,184.49223352503031,184.28369725914672,184.36581524601206,184.34400810021907,185.01696011191234,185.32256467780098,185.0219817184843,185.77660920098424,186.72842758428305,186.5091232652776,186.10595291666687,185.42113681742921,184.9897249941714,184.84988068277016,184.04239671956748,184.28991864947602,183.66230898024514,182.87128279544413,183.0865243547596,183.74341878993437,183.44066532794386,183.02769442042336,183.97216206835583,182.98661558376625,182.3981668399647,182.86415330972522,183.33525127265602,182.5414001713507,181.8832134702243,181.46259084902704,181.7162628378719,181.70933078601956,181.20105600450188,181.84054632578045,182.8379972865805,181.85300042899325,182.8275630516,182.692296333611,182.3332048295997,182.2671084124595,181.86885034432635,181.09392612427473,180.3841707482934,180.58931802166626,179.67722875112668,179.00183327682316,179.40107382601127,179.97776700975373,179.01438370207325,179.6966997710988,180.22829132480547,180.80429442971945,181.4238507822156,181.19427341362461,181.2959748604335,180.4531193752773,180.21735040890053,179.42512259911746,178.61337166419253,179.26927104778588,179.0762444920838,179.12472178880125,178.99612407386303,177.9990695072338,178.65860228938982,177.75396678783,177.12856541527435,177.96423414861783,177.76987213268876,178.0142719722353,177.51315745478496,176.93575606076047,177.6845908118412,178.0073042777367,178.15622502332553,178.57145325932652,177.9104936993681,178.5206474182196,178.61538766138256,177.90627723466605,177.83334830310196,178.69756253669038,179.37320812791586,178.41282111220062,178.55829251976684,178.9427262833342,179.7576697319746,179.8351434567012,179.39012899855152,178.6406309925951,178.04311550827697,177.69465444702655,177.3856793642044,176.68372945301235,176.52357560489327,176.82943655131385,175.85109453182667,176.2823649267666,175.5116329677403,175.65304576279595,175.3832998466678,176.16098523139954,175.44035723246634,176.1851953570731,175.31402008701116,176.15661123301834,176.8785336073488,176.32350433431566,175.3597700027749,175.23948373738676,175.78448622534052,176.62658041436225,177.18084471067414,176.92295731557533,176.80847979011014,177.38575008651242,177.2600240027532,177.0367695610039,177.73489771224558,178.39335326477885,178.78952025668696,178.0691766915843,177.20917466608807,176.64578886935487,175.83842557808384,176.59113144036382,177.18301786016673,176.2785127130337,175.95038242498413,176.49110059207305,175.930077356752,176.2527598082088,175.80444903904572,176.2650390365161,176.4881267817691,177.4675841536373,176.5386754036881,176.39211010700092,176.43025147775188,175.74550365656614,175.99165209615603,175.53386130463332,174.91266778251156,175.72378792334348,176.67425330448896,177.36903678486124,177.13709714869037,177.0368619649671,177.1163176894188,176.75066633243114,175.7814888996072,175.7490547336638,175.28115343116224,175.99830754706636,175.71748693985865,176.59736280795187,176.3433885294944,176.4275812874548,177.325884019956,177.46025924151763,177.64376229280606,178.59763237275183,178.50642825011164,178.21629649493843,178.07277594367042,177.93442336143926,177.71600808855146,177.2420949069783,176.64500942686573,175.98878894001245,175.2871421687305,175.50583601323888,174.9651949335821,175.4314548377879,175.95060968212783,176.1632958902046,176.39311258634552,175.50093306414783,176.2562779816799,176.33346884697676,177.07627105899155,176.41113077569753,177.11923712771386,176.3106612241827,177.28250198299065,177.14092720346525,178.0699256658554,178.64800819614902,178.33059452846646,178.9789634454064,178.46729976078495,177.60316145140678,177.35672142729163,177.67358995880932,177.78675406984985,176.99619817035273,177.36754140025005,177.44246884714812,177.34683046024293,178.3274084427394,179.20437491731718,178.30613454710692,178.60579471755773,178.41254220623523,178.12665212107822,177.9471014328301,178.19948382955045,178.22523916652426,178.66033922648057,178.2073287689127,178.0014066263102,178.36123459925875,178.88327381713316,178.94903041049838,178.86381690390408,179.07035307306796,179.29785213666037,179.8932911893353,180.32849724497646,180.84890440665185,181.49852322414517,180.76179043995216,180.1499399319291,179.97036434197798,179.3005102071911,179.88981706369668,180.3261806522496,179.84431060031056,179.61275071185082,179.75511627784,180.72710229828954,180.31666357303038,181.08755235327408,180.4794973284006,181.13970953971148,182.05289871059358,182.57611374137923,182.98694879189134,183.60267476271838,184.1472869925201,184.3264811038971,184.65848801936954,184.0186030943878,184.97405944019556,184.47518377238885,184.45382070401683,185.2839674409479,184.58273467700928,183.83003589324653,183.0165232848376,182.4147546654567,181.59587411861867,181.63509413274005,180.74859769269824,180.6394671886228,180.63157330127433,180.57072610175237,181.35946043487638,182.27840367751196,182.40628240257502,183.04111823253334,182.5710744773969,182.93381399288774,183.214032697957,182.5450629987754,182.1713926391676,182.52608468802646,182.7928385999985,182.35537920473143,181.80347348703071,182.467519775033,182.46378805674613,183.0732717285864,182.72183285374194,183.38990800874308,183.48270746087655,183.3007594407536,182.32663828646764,181.4267586725764,180.55526602687314,180.80397292645648,181.76657691644505,182.66859097313136,182.32732859998941,181.69400014262646,182.15504965977743,182.1390758776106,181.27512783557177,181.553112228401,181.56208331836388,180.8063948135823,181.72351769777015,182.40757488738745,181.697195278015,181.6905601620674,181.79541676258668,181.32613379880786,180.4677837244235,179.53899585688487,180.39870160957798,179.71194638125598,180.23041643528268,179.38585866009817,180.30679925251752,180.33988040033728,180.7687249793671,181.42206621635705,182.09215192124248,181.67728498438373,180.8412885228172,180.33798472443596,179.97783759096637,180.03713524760678,179.06308165099472,179.12332873931155,178.13207343406975,177.25120485806838,178.2201305986382,177.55990904336795,177.98094457527623,178.20265504298732,178.4609695202671,178.91620112070814,178.04782262956724,178.13445046078414,177.49385211709887,178.25611401163042,178.23684880137444,177.46700802538544,178.075317081064,178.80149305891246,178.83522218093276,178.23370718304068,177.34710800740868,177.5094777457416,176.5341608831659,175.69875047309324,175.647757132072,176.33489073021337,175.35472652502358,174.6902097822167,174.44070161040872,173.91338718682528,174.04111947864294,173.34202848514542,173.93186422996223,173.50450871698558,173.1148615544662,173.62101902859285,174.0136899780482,174.9635644122027,175.9148389971815,175.10379776963964,175.3920701276511,174.45792955346406,173.70561680290848,174.33119924366474,173.98275341186672,174.61328783631325,174.18194048153237,173.41705946112052,172.65600263979286,172.14636532356963,172.01465346245095,172.25212464109063,171.69637742545456,172.55333807040006,173.26678133709356,173.05402202391997,173.36064416868612,174.16780240787193,174.8563779736869,175.24352606199682,176.18834088137373,177.16036673309281,176.40522250160575,176.7219535508193,176.7245201249607,176.22447851859033,176.27413663454354,175.88829439645633,175.78380230627954,176.25149943633005,176.01101869018748,176.7806681934744,177.32681897981092,176.46028195368126,177.45026381872594,177.13427266012877,178.02598430681974,178.02374375378713,178.2625930700451,178.1158517273143,178.91539654834196,179.07961208885536,178.96114613628015,178.25916267186403,179.2185431350954,179.57809460815042,180.0820987210609,180.70348010631278,180.80747313983738,181.4036716297269,180.61324959201738,181.215560474433,181.50035546394065,181.64115521823987,182.48627382842824,183.03371140174568,182.30616400390863,181.7975799413398,182.7034721672535,182.2029911102727,182.18347399914637,183.1106182774529,183.9280389570631,184.90584364766255,185.69744544988498,184.88334207981825,183.9207869921811,183.02250209636986,182.47995895100757,182.98161210678518,182.79163830075413,182.30185807775706,182.27748830942437,181.41979191731662,181.97895596642047,182.63600136339664,181.68520525237545,181.00304732332006,181.67240782734007,182.54086449416354,182.3362066890113,183.08649231959134,183.70170583482832,183.26042439835146,182.3045294075273,181.76086853584275,181.77578131388873,182.43814560538158,181.71159401955083,181.10320276813582,181.3637810992077,180.65666778991,181.527286213357,181.07754269894212,181.39938133396208,181.76244651991874,181.41900201840326,181.05038418760523,181.3325214534998,181.37869687750936,181.69565595220774,182.28645010432228,181.56411706423387,181.7105008265935,181.32104681339115,181.48339977487922,182.2679801210761,181.94111120561138,182.92590993409976,182.41717046592385,181.91753320163116,182.78729239664972,182.2100457237102,181.4990350441076,181.76661724224687,182.45416810875759,182.4481916874647,183.30415949597955,182.7676872597076,183.7268257206306,183.485558826942,182.70425942586735,181.98713262937963,182.86776680964977,183.09250154113397,183.28931880462915,183.39724248088896,183.51399598363787,184.48301310371608,184.25323405023664,184.02881015790626,183.7799036791548,182.88499703723937,182.93115059565753,182.39067221153527,182.91579444846138,182.78644790127873,183.26378937903792,183.7447288930416,182.81811838317662,182.39204829465598,182.87837207037956,182.39200243214145,182.69307666597888,181.89588572084904,181.82625566981733,181.61992254760116,181.69769661221653,181.8889851742424,182.11988239269704,182.5171032184735,182.11109488317743,182.43976464262232,181.74377041775733,181.50422214716673,182.30919949244708,182.68425594223663,182.92986141284928,183.21423324150965,184.17992621427402,184.90675343293697,185.28444415237755,185.1478304369375,185.36088452674448,184.64142521936446,184.97123018000275,184.0106384390965,183.12287036981434,183.32848309073597,182.80073018046096,183.0797633100301,183.35017548920587,183.07707303436473,183.60238858312368,182.77560044359416,182.18420727038756,182.75876717362553,182.9975776844658,183.54385932628065,183.17028308752924,182.6000817893073,183.38622647849843,183.7527395398356,183.95256113121286,184.9204076002352,184.44596479833126,183.9302178467624,183.87644865782931,183.46942187612876,182.83857294591144,183.72874528961256,182.91206842847168,181.9805188528262,181.08612725976855,181.28772350633517,182.27163730794564,182.76741927769035,181.9515941478312,182.15987205738202,182.57152687106282,181.7217161138542,181.64792318176478,181.71370702469721,181.23787079751492,181.58282041735947,182.0995493978262,182.04348985711113,181.98770378530025,181.79670458845794,182.16620067041367,181.82107220543548,182.7941674166359,183.45391337946057,184.34146528458223,183.44212865736336,183.23326632380486,182.27109236456454,183.136924686376,183.43214675225317,182.5073362197727,181.8104896605946,181.42851903755218,181.6068496927619,182.54156740941107,182.57873990852386,182.4569615991786,182.75537306582555,183.53571592178196,182.91515160677955,183.17465259786695,184.08315806882456,183.37061178358272,182.82908653095365,181.93478304799646,182.84726250730455,182.25009969761595,182.15129192825407,181.52106513129547,181.95176677126437,182.81689362227917,182.72488460550085,182.32679098658264,181.57410023873672,182.0203731530346,182.51801458746195,182.52366212196648,183.03839632309973,183.45106295729056,182.6478069126606,182.2490441929549,181.3481532894075,181.96135832555592,181.17972738388926,181.49123079050332,180.76992347370833,180.1428522784263,179.3874185224995,179.41227623540908,180.30941467965022,180.81590176234022,181.65842998260632,180.7122952155769,181.13931434974074,182.08703588321805,181.12495885742828,181.7165856328793,182.29963945643976,181.41261993534863,181.8940505962819,182.2488608509302,181.28798080142587,182.24232884775847,182.8942491891794,183.37482976308092,183.8707804637961,183.24819373246282,183.49139160709456,183.60912040015683,183.51270104246214,183.2657653875649,183.02964036911726,183.9934827145189,184.1474931249395,184.06336012016982,184.65187872573733,183.7908156788908,184.1242887363769,183.73897608928382,184.71125058317557,185.23484573420137,186.1277737976052,186.1626678747125,186.87390342680737,186.30397021770477,186.53401556098834,186.51094372570515,185.8179205376655,186.1286107026972,185.53057001531124,186.2362770717591,186.2054453943856,186.74625419732183,186.7415089723654,187.59785956377164,187.0292539903894,186.92879365431145,187.39454111736268,187.15679326467216,186.18957950454205,186.37472778372467,186.13626347854733,186.56441154237837,186.4885280681774,185.95420707808807,185.96768049243838,185.74015906918794,185.85849794140086,186.13403568649665,185.97669051308185,185.86586891300976,185.5772467222996,185.1609989614226,184.25840757740662,183.37918744049966,183.90911925863475,183.3225118285045,183.48696278920397,182.7595637398772,183.07823623344302,182.9942298955284,182.4852883364074,182.24740657908842,183.16495587164536,183.84073488228023,183.59267121274024,183.25461418135092,184.14814968779683,184.9953398667276,184.38706604670733,185.18961030663922,186.1768476557918,186.1784497341141,185.18175906548277,184.45051070023328,183.75518095353618,183.8815795010887,184.80043846555054,185.02291134977713,184.62255641072989,183.6992819858715,183.52315365197137,183.78966505732387,183.4885887983255,183.93199552735314,183.60898937564343,183.82683418272063,184.0328319631517,183.254146149382,184.02411180874333,183.40354629373178,182.59477249719203,183.37035856954753,183.38076781574637,183.52101695165038,184.50996700441465,183.69291136832908,183.7755344035104,184.4439704180695,184.78334136260673,185.005694642663,185.51380337541923,185.54697874747217,186.5024137739092,186.60316527448595,186.2445237278007,185.93510880181566,186.10292765963823,186.8435532990843,186.4308505184017,185.8640167475678,184.89801529143006,184.60641543613747,185.26215382386,185.89663716498762,184.89854923496023,185.42372462712228,185.31834485335276,185.24608688428998,184.94142364850268,184.56174535071477,185.37041742308065,185.85168691677973,184.93168636690825,184.50215918570757,185.46293827611953,186.294168215245,186.4871391779743,186.9717140989378,186.5968564641662,186.647020409815,186.54648181656376,186.88326218305156,187.60025292402133,187.10191427497193,186.1651056050323,187.14551905356348,186.89309035474434,187.06430475227535,186.2064024056308,185.8051355741918,186.05567285325378,186.93973710481077,187.5999637763016,187.86864438885823,188.01349064614624,187.28209943510592,186.78742222720757,187.23875137604773,187.53158744378015,187.1415236936882,187.0397742590867,186.7573821558617,187.42207121150568,188.0656124157831,188.13833611737937,187.96807334478945,187.54276808537543,187.80645457748324,187.69121801061556,187.30330657027662,187.85918918345124,186.98374737193808,187.14026338839903,186.6074384925887,186.30243978602812,185.4295547781512,186.17141130613163,186.96004650974646,187.32719333842397,186.41509446315467,186.1496369089,186.32151197176427,185.7107957857661,185.90598290786147,186.0329755442217,186.95848814072087,186.9454083093442,187.51002340950072,186.59417540440336,185.90760093182325,186.08616798277944,185.90369605086744,185.8317043269053,185.29205277375877,184.31907302467152,184.0598422260955,184.65754601778463,184.38286233507097,185.35928536579013,184.56419542199,183.67146554077044,183.8318625916727,183.46591669879854,184.46227211738005,185.31863677781075,185.29757808474824,184.55747858108953,183.88392792921513,184.5219845310785,183.97251014970243,184.5286690662615,183.76765390252694,184.41000639693812,183.701767668128,184.08916633296758,184.43393268762156,184.55038798367605,184.34730870323256,184.2673114426434,184.31847890792415,184.03105632262304,183.91636053705588,184.8494266201742,184.90235327603295,185.6415847442113,184.66241284227,183.77927286038175,183.10016223415732,184.0860921018757,184.96879366599023,184.69267154717818,184.2283521532081,184.59634960256517,184.15506031364202,183.82923575583845,182.97346913674846,182.78623437928036,183.64458890166134,184.57148785097525,183.870448556263,184.55530817760155,184.39126362465322,184.7191335032694,184.97846221877262,185.5778633709997,185.8508424400352,186.37716951966286,185.74089062260464,186.1886484338902,185.99343931721523,185.31581048527732,186.31510000443086,186.16310373926535,186.9520718427375,186.0794563740492,186.98815159592777,186.6861710702069,187.37016872828826,188.17727025737986,187.790403181687,188.54819758422673,188.2144208769314,187.55108847748488,187.86513414839283,188.15202756924555,188.27964575169608,187.77138556633145,188.03150598797947,187.85789843415841,187.63714387267828,187.13728609494865,186.74327425472438,186.59166113333777,187.17847214266658,187.77164935972542,187.20882908906788,186.7268524602987,186.2460738318041,186.470971764531,187.02081866096705,186.88879174785689,187.07628446165472,187.19910387229174,187.52409602794796,186.5870385444723,185.9870925792493,186.5891781351529,185.66302938200533,186.45982253039256,187.28190049435943,187.08327116630971,186.67550257965922,185.68314596870914,185.99042909638956,185.24302466446534,184.35122192511335,183.94432951742783,184.42274992819875,183.5984652210027,184.20492629241198,184.25557769509032,183.566188974306,182.9224518891424,182.92694886727259,183.3522239793092,183.5730692143552,183.56787930754945,182.6897276272066,183.06844622502103,182.57089883927256,181.6461551291868,180.8483387362212,179.91976534714922,179.12464098865166,178.22348504094407,178.58076434582472,179.477755069267,180.0092521053739,179.27622425137088,178.30919908173382,178.99197054747492,178.7409969251603,179.39047569734976,179.33667822554708,179.94614583812654,180.05480550788343,180.7811843813397,181.09559039678425,181.6100407517515,182.23919416079298,183.2338109803386,182.4215688551776,182.01505758613348,182.20374589785933,182.88780410960317,183.34837308898568,182.42037207633257,181.94406863395125,182.4322418095544,181.6432448681444,180.84772319858894,179.9980233386159,179.3998378328979,179.7684495630674,178.92981633823365,178.75586362183094,179.09189628902823,179.640853704419,179.45706579461694,180.09134264057502,180.63568031601608,181.58916829526424,181.22695435211062,181.02752087218687,181.570036704652,182.41254678554833,181.57831711601466,181.2959077884443,180.56532749766484,180.38341645896435,179.59394069807604,179.92693503107876,179.93733059754595,180.73360363487154,179.88438002951443,180.4044992160052,179.75668697385117,178.9542339881882,179.2351766047068,178.61681176302955,178.93362407200038,179.0732701891102,179.02400033781305,179.52797617949545,179.62767762783915,180.05869798827916,179.725893501658,179.26790170324966,178.96877697343007,178.61479684337974,178.6148149650544,177.88922748574987,177.3665461470373,177.1160023715347,177.5717305392027,178.3850206094794,178.20571491168812,178.765871248208,179.42822081269696,178.83558921003714,178.61692615738139,177.7645221822895,178.70650252886117,178.43051371863112,178.85161888878793,178.01888654427603,178.3926557484083,178.7156572365202,178.1676925686188,178.6300673726946,179.28140500187874,179.53444943856448,179.39983668224886,179.8747715591453,179.5944597311318,180.26418010052294,180.6651936774142,179.84096228145063,180.054893782828,179.7848340687342,179.75907263858244,179.425259900745,179.10267653129995,178.53799555264413,179.18820175947621,178.72723271604627,178.27974197082222,178.0278920987621,178.5477738431655,179.02934067184106,179.50536445900798,179.9675880363211,180.8445417280309,180.10387541819364,180.76387565443292,180.13836593320593,180.1064702598378,181.05080951470882,180.82654678123072,180.56636989023536,180.8509211363271,181.7754735443741,181.80095925135538,182.5191557384096,183.3771691992879,184.04824567306787,184.6875574537553,185.65279782516882,184.7559752529487,184.33631611289456,184.2598567348905,185.15753851644695,184.99607787048444,184.88402925478294,184.4964534668252,184.08608172787353,184.4282748461701,183.47634510928765,182.60185112291947,183.1379470587708,184.0554395741783,184.24952317913994,184.1394579312764,185.0845517651178,184.6239417064935,184.39729549363256,184.51478730980307,183.79168570041656,184.51997917937115,184.89877767208964,185.62497013667598,185.30052289366722,184.63632941059768,183.96709102857858,184.91828004270792,184.5276726265438,184.91697457665578,184.93456171173602,185.74024787452072,186.268665402662,185.87928067008033,186.29886459885165,186.91116350796074,187.31449926272035,186.83523218985647,187.57178070070222,187.4715406545438,187.6262654447928,188.16834072768688,189.0756124239415,188.97352985991165,189.1721258284524,189.97156946733594,190.89385237637907,190.64322538580745,190.79215685650706,190.91892543574795,191.73582403128967,192.3291315510869,191.54250144632533,192.09738480858505,191.5694826748222,190.99683799548075,190.29490114049986,191.16106099216267,191.6590950046666,192.4930704170838,192.09928288077936,192.94300843635574,192.8940703026019,192.01061562029645,192.40342846466228,192.74342915415764,192.24520240351558,191.68560326704755,192.66757405828685,192.98036184208468,193.32557209720835,193.57600463042036,193.98662810400128,194.5041308091022,194.23103211959824,194.34542337199673,194.79154257290065,194.3211013483815,194.8398565351963,194.6697182818316,195.1745401234366,194.25951748201624,193.8411866631359,193.80029211333022,194.10171136446297,193.41369066527113,194.15225003985688,193.47752739069983,192.87852918263525,193.5491010658443,192.62208829214796,193.51331079239026,193.66993254655972,192.84554102178663,192.1320349923335,192.4067454249598,192.2589843017049,192.6494153495878,193.39489200292155,193.6482453434728,194.1719982540235,194.26361367758363,193.3311248193495,193.69105739239603,193.6547545613721,193.47207344789058,193.96216874336824,193.75967956054956,194.01245043845847,194.1214439100586,193.83863221667707,193.74193579237908,193.29498226055875,192.92689049709588,193.1555909118615,193.04633206501603,192.94849003199488,193.78732371749356,194.60803348291665,195.51775113632903,195.118459477555,195.24842128902674,194.26917301444337,193.9227122371085,193.70699579827487,193.27028489112854,192.51760383462533,193.40541920484975,194.13756597833708,194.355509262532,194.38735956465825,194.95017078286037,195.00035699876025,195.78056096704677,196.26552230818197,196.95803854614496,196.52053429093212,195.67487001698464,195.71130919875577,195.02854319708422,194.75077541684732,194.3417177349329,194.09692149749026,194.40343091776595,193.8203679774888,194.28853191807866,193.46833759266883,192.570529862307,192.78345878003165,193.02763598179445,192.92287918645889,191.99882093071938,191.62088467553258,192.54364946857095,193.1731537077576,194.14348664693534,194.0484317978844,194.31371001992375,193.6244693393819,194.4062649528496,193.64313516998664,193.1151490379125,192.49404554022476,192.98580776620656,192.19607100775465,192.56123790564016,192.2355799889192,191.51072078291327,192.22191148763523,191.82470931485295,192.00424534315243,191.77110406337306,192.49831213522702,192.07591520436108,191.48963087936863,191.415069446899,192.1776365013793,191.4379709791392,190.74888471374288,189.93023857753724,189.8860453874804,189.59429919114336,189.89387678261846,190.17451909650117,190.34072438580915,190.5579652506858,190.58131919894367,190.92982154805213,190.4523363672197,189.87956737866625,189.2148575480096,190.04669694323093,189.74201363371685,189.33701235381886,188.8826007945463,188.23034418188035,187.30905599985272,188.21894280798733,187.81502322293818,187.54568392643705,187.62279764888808,188.3891091714613,189.10452719172463,189.73850689362735,190.28762552840635,190.38858002331108,189.98278335528448,189.85500415647402,189.62622065562755,190.00225488003343,190.14356560632586,190.95352051174268,190.45434064697474,191.11222963174805,190.48959691356868,189.70887545356527,189.25104073947296,189.8218562756665,190.6432165345177,191.4563600360416,192.1798466895707,192.39799504633993,193.03387639578432,193.4644437143579,193.94497464923188,193.4997043646872,193.64643307123333,192.77086370205507,192.2997824596241,192.59268024982885,192.552492226474,192.43790826620534,193.41787841077894,194.07109481096268,194.95923062367365,195.68915390688926,196.3392469873652,196.4393779314123,196.62328649498522,195.8875398929231,195.50038684392348,195.60903742955998,194.65454642940313,195.2488500420004,195.10685781016946,195.8833300336264,196.09119758475572,195.47733889520168,194.9622529144399,194.40709932381287,194.21253044577315,194.38295705756173,194.92921555321664,194.24227504385635,195.03143002977595,194.28725627670065,193.95624403096735,194.8300497867167,193.83962162956595,194.30533052515239,194.8341664634645,195.66659314977005,195.48350655287504,194.56423651752993,195.55009608063847,195.86951636895537,195.63761493051425,195.7428027326241,195.53654872672632,195.14244620036334,195.71609888831154,194.74508115649223,193.86979566002265,193.69079969124869,193.2615802702494,193.3875208934769,194.12939219828695,194.44684148672968,194.83922815602273,195.46573305642232,194.99713635537773,194.323707530275,194.7658771467395,195.10188918421045,195.55043151089922,195.19994420045987,195.75047082826495,195.0291582988575,195.96161232050508,196.56586535507813,196.90820024721324,196.14804475102574,197.09476457163692,196.61095424415544,196.5935573503375,196.47312914859504,195.5622275401838,194.64521262980998,193.78810840053484,193.87682643346488,193.9575443342328,194.0387798184529,194.80026174057275,195.62683798884973,196.30422653723508,195.60712776053697,194.84407555591315,194.80076928948984,194.33456557011232,194.9970206944272,194.17578525235876,193.23207217780873,193.28441210417077,194.0040252711624,193.9898509378545,193.64868624741212,193.91545898467302,193.59778764937073,193.49472183408216,193.7459443048574,193.19411005778238,193.50448745954782,193.029357295949,193.44410707289353,194.41229898063466,194.82099550729617,194.00174939632416,193.33910144120455,193.1946466146037,194.02042857930064,193.3351037669927,193.94582855468616,193.10587661154568,193.22426377795637,193.53290384542197,193.3834104486741,192.65788767905906,193.3217900893651,193.16477695899084,193.49171167891473,192.74671722063795,191.85939663881436,191.33309060428292,190.33724356535822,190.5263374717906,190.25098254950717,190.08047406980768,190.8309943252243,191.08523669932038,191.63240193668753,190.79867594270036,191.50646337028593,191.77737324032933,191.57838795147836,191.87608677567914,192.10670070303604,192.98486391827464,193.28111173724756,192.80721315881237,191.9128297106363,191.50896751554683,192.33141794009134,191.52390742953867,192.5075830933638,193.27396109420806,192.62523492751643,193.1549985758029,192.8897724132985,193.25006492668763,192.29396279668435,192.4756514322944,191.5644599874504,192.2423303173855,192.56874372530729,192.63927254732698,192.78193157166243,193.40237461123616,193.25413258047774,193.38590296031907,192.879872713238,191.97001318261027,191.4830286228098,191.99066088255495,191.5245712227188,191.20717551652342,190.45292111858726,190.41863534227014,191.02677283994853,191.01917317742482,190.37598076742142,189.81727659516037,189.03389085410163,189.36212394107133,188.627422131598,188.95218737283722,189.22715757461265,189.5307219712995,188.5889149317518,188.76783016091213,189.00674896594137,188.68579972162843,189.0359192704782,189.15222995588556,188.81504333717749,187.92367652477697,188.73042815551162,187.93031377065927,187.54819658212364,187.99262126954272,188.80495717655867,188.3213222869672,187.7808572500944,188.60177980782464,188.96136239357293,189.38733400823548,190.23831465747207,190.96883244346827,191.07908897846937,191.42461935710162,190.7631075391546,191.4702992895618,190.74474290013313,191.0846522594802,191.06158449081704,191.0502145094797,190.15442425571382,189.77018659794703,190.62013145023957,190.517702115234,190.5197099125944,189.66116437502205,189.68923844769597,188.7842916669324,189.27815133240074,188.63173687644303,189.54903548350558,189.1112808943726,189.4460791577585,189.52528260834515,190.50257155764848,190.0724361250177,189.73998276982456,189.6770296744071,189.8279117392376,189.20860625244677,189.84550576657057,189.2801831169054,189.2655754312873,189.88631590269506,190.44866728736088,190.25369213148952,190.15811393596232,190.19342627050355,190.9771911916323,190.81368745025247,190.62432800745592,191.38247201172635,191.00320808729157,191.09574360540137,191.527179017663,192.04564508330077,192.6376659469679,192.96199942892417,192.3422265141271,191.7262992132455,192.22515863040462,191.47917095851153,191.50848907185718,191.68462978256866,191.53200853755698,190.96580698154867,190.0117536415346,189.30574948340654,188.94653275981545,189.46510429028422,188.9674262041226,189.46635887492448,188.7903740531765,187.86300890380517,188.82345249690115,188.21794398967177,188.15407556062564,187.91186825092882,188.04873951198533,188.47554739937186,189.4266718607396,189.51458657812327,189.39868074422702,189.50182525720447,189.75098232086748,188.82673636218533,189.33389881905168,189.60159180592746,188.62672001309693,188.7384865283966,187.91414731554687,187.07033402100205,186.9023328628391,186.44098559673876,186.6313175689429,185.704268516507,185.99932598834857,185.13944824272767,185.97816395759583,186.10350356949493,186.8958546523936,186.11629535397515,186.01777020748705,185.73311573266983,185.90127241518348,186.14970974624157,186.07206409890205,186.36356622120366,186.98571988614276,186.87364563485608,185.9350255895406,185.3257294241339,184.76397505868226,184.79283629683778,185.71308546653017,184.88449224829674,184.33199650701135,184.87220346322283,184.88266793452203,184.83388778800145,184.6640739296563,185.52543888194486,185.16133409366012,184.52626526309177,184.70342570822686,185.37128742644563,185.16411458328366,185.0720767811872,184.8663903181441,185.14086431683972,184.47216850938275,185.45274897664785,185.55829186132178,185.22543586883694,184.4444774002768,183.56440457515419,183.66545185539871,184.44820724613965,184.02489509014413,183.90284443786368,183.3708098377101,183.8446126561612,184.4823058862239,183.73615370457992,183.04522233922035,183.4381015044637,183.560857525561,183.7148206550628,183.97411661455408,184.82746483851224,184.17453983286396,184.57750344835222,184.9626257303171,184.23026283923537,184.22315787198022,184.31612714752555,184.96128002321348,185.7992694634013,186.7311055585742,186.2972272792831,186.83980346191674,187.44667761866003,188.4276240421459,188.9681919706054,189.46512060938403,189.3973534735851,189.66366290533915,190.09651132067665,190.13766953675076,189.45933150546625,190.1449907757342,189.65928530460224,190.62771394988522,191.40207720920444,191.25152563815936,191.01173105835915,190.06577330781147,190.02265894366428,189.73911537509412,190.37241079518571,190.1434319699183,189.2542389840819,189.70085690449923,189.754893315956,189.8948490587063,189.90150274755433,190.32484523020685,190.0464485855773,189.38525757147,189.326671120245,188.41261082468554,188.9580871257931,188.21489473897964,187.4362925621681,186.55464631970972,187.29852880444378,187.81797569431365,187.95549406902865,188.36310915276408,187.59424509480596,188.4566134964116,187.47849447280169,187.47330399183556,188.21132961055264,187.692322303541,188.58391361264512,188.69428067281842,189.03376410342753,188.44832749431953,188.42939539067447,188.44136115629226,187.9483783552423,187.3008802086115,188.06238474603742,187.32053128583357,187.08371555665508,186.78342315834016,187.76533488975838,187.77059116121382,188.01181836426258,188.44806072628126,189.1436848854646,188.98385069752112,188.84496586211026,189.5354757909663,190.41213456587866,191.00164126697928,190.53643005527556,190.76249639503658,189.95160281471908,190.10104075213894,189.3442654022947,189.5502480659634,188.7691928599961,188.4596147770062,188.1912334309891,187.22741969954222,186.56415097462013,185.7778617851436,186.15213459637016,185.35986190196127,186.25577258551493,186.54670968046412,187.3862344296649,187.18353763082996,187.26843154150993,187.02002970362082,186.35873500211164,185.62417858839035,185.24982216395438,184.61980432318524,185.09286490269005,185.86428692564368,185.37190636619925,186.02386981528252,186.50885339500383,187.24062464991584,186.98267957288772,187.21839496586472,186.88769754953682,186.82889001909643,187.52774343360215,186.59707801230252,187.49767969176173,186.58727865945548,185.6278067426756,185.86240348173305,185.0758691164665,185.61314336117357,186.33102283021435,186.66570977587253,185.98647726420313,185.36753156594932,185.65631565637887,186.33922972902656,186.19921753928065,185.4734140043147,185.92547860648483,186.67865486256778,185.89712787559256,185.24809060804546,184.58403680566698,183.7166988030076,183.8369497647509,184.57610853016376,185.32736403681338,185.89526719320565,186.45930972974747,185.84932560753077,185.28689119126648,185.5549453245476,186.19117798656225,186.85942834522575,186.39499550964683,186.0119432453066,186.57353311404586,186.5775854983367,186.30786385387182,187.14947531046346,188.03322792006657,188.9299551830627,189.70862962352112,188.92298609903082,188.37864744197577,187.69145664060488,187.8542231116444,187.43871463043615,187.78063739975914,187.22318224282935,186.74089902918786,187.22971470281482,186.71334261121228,186.31474214000627,186.79570914944634,185.92073437618092,185.04772594105452,184.48066021269187,183.59962005214766,183.72153695952147,183.6044857148081,182.69342192821205,182.1440438805148,182.73216599225998,183.34898927574977,184.2592184874229,185.13203671574593,184.81761250598356,184.39807842159644,183.67620677687228,183.81475104391575,184.3490424286574,184.21021807938814,183.58919173525646,182.75942837214097,182.07838865742087,182.66441700002179,182.21311426442116,182.39809377817437,182.56744504440576,182.26072308886796,183.1047800281085,183.08624793449417,183.3263278179802,183.46798574458808,184.42811113549396,185.0009280364029,184.96073527634144,184.88768309447914,185.4186006579548,185.33695648191497,185.98273207619786,186.58037808071822,186.71567423921078,187.68514879094437,188.27373273530975,188.8661437011324,189.44566670665517,190.0629801619798,190.59236905211583,189.97301009995863,189.93270142562687,190.28491936111823,191.07293115276843,190.41216215956956,189.698834606912,189.4289099611342,189.18645387981087,189.39721219148487,189.76185099361464,190.75235749641433,190.0022628470324,189.97769262827933,190.10251487232745,190.1621829420328,189.9742810493335,189.22980578849092,189.3625192856416,190.03082337835804,190.27976516494527,189.57046996196732,188.924260515254,188.66874823905528,189.27298065740615,188.8549472396262,189.56856942689046,189.51176081271842,189.5858833724633,190.49936747783795,190.11560209747404,190.14338510669768,190.52384947473183,190.9672354431823,190.8574591986835,191.11712260404602,190.526769220829,191.3890221635811,191.1399239776656,190.77216892363504,190.23966855555773,190.69234926300123,190.81976117100567,190.24176582321525,190.89091920293868,190.28768318518996,189.99461741140112,189.34216681215912,188.3975625168532,187.9337440910749,187.62238285737112,188.34559032600373,188.03303845925257,189.01031522499397,188.25802591908723,188.73531444650143,188.50082162115723,187.79840541491285,188.2088909316808,188.49820975633338,188.67671653302386,188.6359662329778,188.08680500648916,187.52707737125456,188.1557672196068,188.87361273076385,188.58728103945032,189.30963241728023,189.51096438569948,189.53492635674775,189.0274905138649,188.97171635366976,189.66644856100902,188.8318850644864,189.37881561322138,188.64080672664568,187.97261622501537,188.06148188281804,188.29336932534352,188.3197038806975,187.64634628407657,188.09078529756516,188.95520704705268,189.12605500454083,188.730028137099,189.58743823785335,189.44423621939495,189.2538849064149,189.3708831318654,188.4299468365498,187.8691963236779,188.64842709666118,189.35551084857434,188.51799342082813,189.48840845702216,189.3190141879022,190.2908199550584,190.8325160574168,190.58700388809666,190.81319698505104,190.77628070255741,191.32333008851856,192.30464871088043,192.95275022322312,192.47567105386406,192.38666873192415,191.94992121169344,192.04470293782651,191.26701219845563,191.52686683367938,191.13929802924395,190.747895299457,190.72722732368857,190.64552367059514,190.99290720792487,191.3778998334892,191.10425900900736,191.76515883067623,191.68666431773454,191.24912377726287,191.9621504950337,191.01355526596308,191.1729775504209,191.44391382252797,190.9118307880126,191.9110940247774,192.84623828111216,193.1449719388038,193.66298633581027,192.79076298233122,192.66460515977815,191.82089950423688,191.52409090008587,191.31461234064773,190.8920307685621,190.13890426559374,189.3304292387329,189.29311437904835,188.68157393252477,188.75128931039944,188.35469673201442,188.31853466434404,188.45228455075994,187.97131122648716,188.42079587187618,187.61233233148232,186.69667731877416,187.0247137164697,187.77439947845414,187.91911359969527,188.08828848646954,188.99983711075038,189.67501684930176,188.9077731082216,188.47227071179077,187.61381213460118,187.46022165426984,188.0214719423093,187.85221626749262,188.68073487374932,189.52640265133232,190.100963359233,189.28510483633727,190.05472627142444,189.38836817862466,189.13490104442462,189.3954587355256,190.14182652626187,189.8423764114268,189.9394929255359,189.7303234632127,190.31527872476727,189.621319077909,189.6682373615913,188.7486814232543,188.05813593324274,187.95067104883492,187.58452802803367,186.75053343176842,186.84751835931093,187.21214653924108,187.90803048806265,187.6574243842624,187.0368284038268,187.67281829752028,186.82049516728148,187.28324521286413,187.9210760993883,187.49116202816367,187.0681749889627,187.45131202833727,187.59458516398445,187.2423821450211,187.65771999349818,186.82678032666445,186.88933426328003,187.83829422062263,187.31763383792713,187.12603474594653,187.7301290598698,188.3140443698503,189.10558276623487,188.87152937753126,189.47413273807615,189.7569701289758,188.94104810385033,189.3574363226071,188.89325350290164,188.18801905913278,187.71840015705675,188.61435670778155,188.29439910827205,187.54154501855373,187.0672678486444,188.04176366887987,188.74055647291243,189.6715836278163,190.41990574169904,191.39862194703892,191.0135745140724,191.24833557894453,191.37394059309736,191.71229107584804,192.22942242957652,191.37658854713663,191.4075603960082,190.94823133852333,191.47354493942112,190.69784628832713,190.5062091173604,191.38689976138994,191.07884611887857,191.58196555636823,191.57573158526793,192.26240890612826,193.0513151967898,193.9510808228515,194.6128179472871,194.04235076066107,194.88106012204662,194.4338359045796,194.75529928598553,195.15106839453802,194.5095151043497,195.3739241999574,195.92222983855754,195.21413265913725,194.93747922684997,194.3260135347955,195.13425767235458,195.7004908225499,196.65169647382572,195.6796611729078,194.86947070946917,195.74179436499253,196.16593082714826,195.9346981891431,196.58067471859977,195.6563370297663,196.02684863703325,196.74241281859577,195.88036370649934,195.1137515483424,195.39723070710897,195.24229078693315,196.0274622910656,195.51277677575126,196.39453163044527,196.89973771804944,196.9984143646434,197.459943135269,196.57928452827036,196.83271605568007,195.98471774253994,195.91231284616515,196.48605545330793,197.28014716738835,196.9070298783481,196.1727695968002,196.36771248001605,195.42595728533342,194.9675926216878,194.2807255112566,194.438880270347,193.57910997373983,192.76187362661585,193.54682147176936,193.76439870055765,194.01333975372836,193.2645090520382,193.80446707364172,194.41033738292754,195.23907813150436,195.42917827237397,195.45992993656546,196.45480686519295,196.66450773505494,195.82602230040357,196.3068751897663,195.54709755955264,195.4215528764762,195.58062863489613,195.9077859581448,195.64587918994948,194.97015467239544,194.2279737382196,193.4704876737669,192.8784148665145,192.72366918297485,193.06896299915388,192.8796896035783,192.857383093331,193.16563702607527,193.25522428750992,193.51984116900712,193.1567900334485,193.3020406109281,194.00363493850455,193.20319318026304,193.65023476071656,194.44249102054164,193.90463816095144,194.78310920577496,194.3962092269212,193.82029266189784,193.37123341858387,194.10008773114532,193.98654849035665,194.66131610702723,193.89771590195596,194.06557327136397,193.71801580488682,193.10436475509778,192.9270675862208,192.4138238443993,192.81969814933836,193.2276919959113,194.20464662043378,194.05217548459768,193.9625890715979,193.52755866618827,192.70448293164372,192.6301422524266,191.8064406835474,190.82971275690943,190.39969045855105,190.13153548818082,190.95401982683688,190.5135448933579,190.53163392283022,191.00150878867134,190.15511420089751,190.88174012722448,190.4623894598335,191.3592425142415,191.80953562492505,192.33189999312162,191.70565864723176,191.0360359507613,191.7363902842626,192.43099216278642,193.0052056661807,193.26880256226286,193.68544708564878,193.751204832457,194.27053000032902,194.09405162278563,193.9672795748338,194.35262923967093,195.16885863710195,195.02489979052916,195.44264284335077,194.82178715709597,195.0989112057723,195.5113754621707,195.16674463124946,195.19703527912498,196.03880921471864,196.21117025148124,197.20781473536044,198.0646441099234,198.41870061680675,198.83344517555088,198.32631610520184,197.68240161798894,198.2275211205706,199.1392734204419,199.31837338209152,198.52337740454823,198.56079832930118,198.4029423701577,198.5602039708756,199.2857656693086,200.01617880584672,200.24451474193484,199.2838383228518,198.993518197909,198.22587215341628,198.64867027429864,198.19085522182286,197.27724978420883,196.6433843751438,197.3066124417819,197.21847760910168,197.14130097534508,196.59330546762794,195.67033704463392,195.6946903844364,195.8682176200673,196.06176720466465,196.66605202807114,195.78207175526768,196.18123933067545,195.64229720737785,196.43767116917297,195.82145418832079,195.7856245879084,195.68076115567237,196.2811414920725,196.97045601718128,197.20357834501192,197.00470452662557,197.16389986500144,196.29818077012897,195.45742518315092,194.58426936669275,193.97684032144025,194.71519662160426,195.41785771073774,195.59602066641673,195.08998567145318,195.59357901010662,196.52697491273284,196.6187836714089,197.32857275474817,196.43645391333848,196.63759666029364,196.10564316436648,195.19494172325358,195.81485458277166,195.18653074651957,194.46476663695648,194.19547263951972,194.1338962763548,193.27679229993373,193.93486023927107,193.28820711467415,192.93444505892694,192.24561843648553,192.25078857550398,192.00245834793895,191.11532430816442,190.79001734172925,190.55952490819618,190.09895832045004,189.82668087957427,190.57181040523574,190.37170115066692,191.1130104647018,190.59389005741104,190.6849132538773,191.00333300232887,191.84219721751288,191.13240479165688,191.67411396512762,192.04286807822064,191.3701803437434,190.65070347301662,191.58710926491767,190.6223936774768,190.91275131423026,190.15264259884134,189.72720060683787,190.24813274107873,190.4877689187415,190.09370147110894,189.64417689898983,189.31951796915382,188.38171497220173,188.64733625855297,188.71604475239292,189.36532051069662,190.17100179567933,189.783763803076,188.93305188277736,188.20368580333889,188.148226425983,188.83409366942942,189.30547108547762,189.41977753769606,188.79695885209367,188.09948230395094,188.5040334314108,188.20456978771836,188.76389327598736,189.42333329003304,188.59294432029128,188.30278529413044,187.45939388405532,186.70978118199855,186.30109574552625,186.49632130609825,186.63928434439003,186.79048356227577,185.89100459497422,186.8477923022583,185.9676756216213,186.9576648939401,187.3970978129655,187.93168149888515,187.6450465801172,187.88828901248053,187.63128379406407,187.34930131351575,186.72470987727866,186.79454264743254,186.71847423398867,186.27302743541077,186.12809806177393,185.7417915011756,186.0261904252693,186.5471040313132,185.85482791252434,186.0726520055905,186.4782298891805,185.70369389513507,185.25096922041848,186.10180707694963,186.68102057976648,187.1625032336451,187.53460750402883,187.7645227536559,187.23030242184177,187.09805353963748,187.3142213197425,186.66430884227157,186.12743359059095,185.56571084540337,185.5270119709894,185.79299284610897,185.84432341111824,185.51778097776696,185.5397726497613,184.92681694356725,184.3952148859389,183.7963326931931,184.07153941737488,184.26671580411494,185.03424135735258,184.04909892892465,183.6608310462907,183.10227034520358,182.44842680171132,183.4210212067701,184.06845051655546,184.02446706919,184.63056725542992,184.57575062802061,184.08862698357552,184.57647643052042,184.56866754498333,183.62279497785494,183.78352340031415,183.29848341923207,183.13656122609973,182.16685156011954,182.1188196260482,183.02439189050347,183.61304432107136,183.1343676247634,183.9307805672288,183.13387704547495,182.17579225311056,182.33485649805516,182.6916454336606,181.86844307975844,182.23541652178392,181.82526310905814,182.0519880815409,182.05734772142023,182.13460576999933,181.77528205281124,181.04404709860682,182.00902675371617,181.62773065641522,181.48470934061334,181.74205459468067,181.1390998964198,181.0519082089886,181.48302304837853,182.23545087315142,181.46681171422824,181.6574417706579,181.2186567299068,182.2090986375697,182.28778405161574,183.2604956026189,182.98318178858608,183.80140361422673,184.30013816151768,185.00573998037726,185.26628360012546,185.19807682558894,185.7250804118812,184.82230026321486,185.000806175638,184.798715850804,183.93594866711646,183.89453820791095,183.58974933903664,183.3550228239037,182.64450851408765,183.208350289613,183.53128838632256,183.20754296379164,183.86179694440216,183.94169290550053,184.27692136121914,185.21321482490748,185.16759571246803,186.03317799419165,185.9910713545978,185.39911869866773,184.45597195113078,185.22059120377526,185.38242962956429,186.25401551742107,186.5824419753626,187.02185262925923,187.67687233304605,186.92904614750296,186.50735211512074,186.96780993696302,186.28334895707667,185.96980812726542,186.1409301618114,187.04441350372508,186.21547837927938,186.7134412950836,185.93059804756194,185.7027247576043,184.84509012894705,184.59271659655496,185.28930353326723,186.00344418128952,185.04123566206545,185.28557231463492,184.97879615519196,184.6459467355162,184.17649244191125,184.4173975950107,183.58993622800335,183.7664905837737,184.51526471879333,184.14097645459697,183.16243595257401,183.5537459901534,182.57454000692815,182.00038044480607,181.26186689874157,181.12804941274226,180.46227950742468,181.0171399214305,182.01059091789648,182.49462967272848,182.54352496843785,183.2813932816498,183.8579374407418,182.9462720360607,183.50207630498335,184.2763875350356,184.78044224204496,184.59600974339992,185.53518400993198,185.4229738805443,185.98318067425862,185.28834406193346,185.25895090773702,186.23621058370918,185.30290306732059,185.90468587819487,186.18973484495655,185.73016877565533,185.06949593825266,184.79102604091167,185.44332966953516,186.1298319338821,185.2190999314189,185.49218199355528,186.32840361492708,187.2175448378548,186.6064625638537,185.85235616425052,185.62019380135462,185.8573817294091,186.69752020621672,186.5468398919329,187.04369830386713,187.12677510175854,186.36035446403548,187.13555331202224,186.32725144317374,186.83837959868833,187.62133884290233,186.95287022693083,187.8746589985676,186.94172311900184,186.08372453507036,186.5690564950928,187.08414496155456,187.27249610237777,187.72845302848145,188.26713771093637,188.6781664043665,189.4073477596976,188.77947941748425,188.51987649360672,187.67594780167565,187.5140081695281,187.2155513325706,187.93066944461316,187.130325042177,186.56217021401972,186.34369346639141,186.94515176163986,186.60683809174225,186.72010337375104,187.009806166403,186.7717288462445,185.83973293798044,185.05103953788057,184.7267128280364,184.16877773124725,183.30966488132253,183.35207521449775,183.33905753539875,183.5853154337965,182.7019543168135,182.54988147318363,182.65136733232066,183.05034760199487,182.80182773340493,182.70841381978244,182.7862959797494,181.86017907829955,182.52348572015762,182.88854928314686,183.42330336850137,183.36451445845887,184.2796297883615,183.8575714691542,184.78989541437477,184.519531076774,184.24478110857308,184.64607038814574,183.92470160638914,183.10188145563006,183.56959287729114,183.89184881933033,183.32162154605612,183.7325192578137,184.21210967283696,183.22954518115148,184.1002442422323,184.05534848524258,183.58405305072665,183.85124180093408,183.21419653855264,183.6804598760791,184.28777926182374,183.8308587865904,183.8650302439928,184.7551221535541,183.929003670346,183.45195231121033,183.44415918411687,182.771276619751,183.25571914063767,182.43511999910697,182.41083057923242,182.42500714585185,183.08051691530272,182.70451259939,183.54387284629047,184.49957924056798,184.46361521584913,184.84448399860412,184.16823810711503,184.55929939681664,184.35161369433627,183.59452478261665,184.3103836211376,183.35279830824584,182.3791775959544,182.15951369376853,181.37734927795827,180.7489842264913,180.38723120931536,181.08893975336105,181.87584364134818,182.8315552729182,183.4486655490473,182.77609509415925,183.63360505038872,184.50683908397332,183.80616600485519,184.6442560357973,183.71494968002662,184.28017194010317,183.47742665698752,183.35907465033233,184.31995077664033,184.02546950941905,184.88393856445327,184.86892694653943,185.14393844176084,185.92520547565073,185.68358880421147,184.92750360211357,184.96754501294345,185.82702194759622,185.52822484681383,185.22121652960777,185.88488423079252,185.93983001587912,186.12185625452548,186.8631823877804,187.83429185766727,187.76228428212926,187.21813675714657,187.87931047426537,188.19287850381806,188.0450219400227,188.9196940730326,188.2132802424021,187.3100567390211,187.9216539771296,188.274847059045,189.14893445326015,189.26373132690787,189.36429240182042,190.05374956969172,190.46348965168,189.64651270397007,190.5893197497353,191.31044913083315,191.39761784719303,191.28476014500484,190.6918404493481,190.96051183063537,191.47487067990005,191.52507015084848,191.52140242280439,191.58529353979975,190.94382813572884,191.5685716276057,192.24284189054742,191.64030496543273,192.446974191349,192.47255587857217,193.36784335039556,193.29930917639285,193.07503487961367,193.8011460006237,194.76969441678375,193.90200653672218,193.19542884966359,194.17108592530712,194.32925711432472,193.99853951483965,193.3205858352594,192.83804420242086,193.65384811302647,194.38566835736856,194.70279649691656,193.97299446957186,194.32835900364444,193.9427092075348,193.61243621213362,193.23519220855087,193.8294304893352,194.43347465712577,194.59585154382512,194.19222216308117,193.7007552641444,192.92879391089082,192.55605876771733,191.91636370075867,191.5893449326977,192.43937226990238,192.79237853502855,192.21786121092737,192.2090374021791,193.0826218626462,193.071473070886,192.85332666896284,192.40507797757164,193.11084489757195,193.2109598214738,192.90204184129834,193.64411939214915,192.9393519149162,192.07174737006426,191.82593360869214,191.22816019086167,191.41848103841767,190.6173081533052,189.7404687148519,190.50262481486425,190.29553573485464,189.94625226827338,190.1811847067438,191.07185546308756,191.00375469541177,190.04525061836466,190.77003732183948,190.66836232040077,190.84946658136323,190.9618974016048,190.4607982505113,190.88825146155432,189.9161339229904,190.57573739159852,189.7853350872174,189.97810687171295,189.92425365559757,190.1783259343356,189.2255808780901,190.19289296725765,190.91385516244918,191.38969948189333,191.75249808374792,192.36351143894717,191.88865072932094,192.4649011180736,193.25598045345396,193.6116422303021,194.55148034915328,194.7160055921413,195.3554963255301,195.00569189619273,194.14838703162968,194.2363733467646,194.57024609902874,195.26619136380032,196.0115638198331,195.17045405181125,195.63250758545473,195.59911492001265,195.0106278792955,194.12891201069579,194.54206082876772,194.51938663655892,193.89671591250226,194.83398105250672,194.3675234722905,193.48926181299612,193.8846219354309,194.40037924656644,193.42657473962754,194.07179877255112,194.84204239072278,194.30504778586328,193.72100305510685,193.7884032665752,193.30796809028834,192.7242319365032,191.8983954670839,191.95757999410853,191.61196739645675,190.95304615516216,191.11121550761163,190.86068649636582,190.8661295576021,191.1961910207756,191.46556086372584,192.2860026289709,192.87912304885685,193.70693357102573,193.2999946991913,193.99129115138203,193.45148075046018,193.08173304330558,192.4017986562103,192.57771631609648,192.97954777954146,192.22975622490048,191.6159076387994,191.8357412922196,191.18868143996224,191.98723786789924,191.88551361160353,191.5661744545214,191.41953678289428,191.20347282011062,191.5523174018599,191.9851170699112,192.8812967450358,193.37371626216918,193.11640158155933,192.63118281029165,191.86802686797455,191.69475121889263,191.77963931346312,191.94108661077917,191.5992579702288,191.7745447526686,192.55737994471565,192.53375502396375,193.2681741300039,192.37367351492867,193.1997115998529,193.65845984546468,194.49319889722392,193.88564166612923,193.70103037636727,193.03880351036787,192.2319194949232,191.88916787691414,191.0739104412496,191.95849796989933,192.55598727287725,191.76863905182108,191.87423905730247,192.20727677224204,191.32665254035965,192.05698205623776,192.77975995605811,193.3342239120975,193.36452842270955,192.52488817460835,192.026139061898,192.8818545723334,192.85137606272474,193.5974679295905,192.81162692559883,193.10941514745355,193.49799565505236,192.53730225842446,193.12988960789517,192.93963582115248,193.82715711183846,194.22233424009755,193.83218121435493,193.7386437584646,194.27045030379668,194.20574826514348,194.83023090148345,194.41029016394168,195.1437653056346,194.56314107077196,194.45235457690433,195.3753615184687,194.58857466140762,195.02904915763065,194.51893170783296,194.01884796842933,193.2723090867512,193.5612581120804,193.48632058361545,194.07865734770894,193.55691878125072,194.32073949230835,194.81078741839156,194.93420348782092,194.05172241618857,194.18123577767983,193.5534374359995,194.2167739965953,194.44933988107368,194.2824967284687,194.58342300262302,195.00468517793342,195.85447515314445,196.39734861487523,197.09006053488702,197.11855165939778,196.4908044449985,197.07702130218968,197.47570045944303,197.88689060416073,198.6163343093358,197.72646323964,198.00654791109264,197.2490060692653,197.29575684294105,197.49862187821418,197.75800798786804,198.15992641216144,198.10796917928383,197.67482545273378,196.70651933224872,197.13607603218406,197.8856435683556,198.47865315014496,197.73040545545518,197.65075280051678,196.954671993386,196.44723001215607,196.19754013465717,196.89246462471783,196.04978007636964,195.6516965390183,195.59133661398664,196.5561104309745,197.27123148040846,196.84427859354764,196.5589763848111,196.08974380791187,195.92483070818707,196.5889911800623,196.6250680447556,196.2826280533336,197.05674614431337,196.2732833181508,195.72617941116914,195.11541191721335,194.24581270013005,195.10063892416656,194.68732739798725,195.06640702625737,195.1350603941828,195.9141873382032,195.81661539711058,195.1574590220116,195.8815746330656,195.53423200082034,195.19379708124325,194.61461115581915,193.9407056979835,193.3329147733748,192.6170237287879,192.09527250286192,191.17322730924934,192.10402811178938,192.57664226694033,191.60081382468343,190.96856535691768,191.37554986262694,190.85660771653056,191.66986708296463,192.1523025003262,191.29734242800623,191.82831494137645,191.76473256899044,191.7063507293351,191.47317353403196,191.55867434991524,192.21160852722824,191.5372920613736,191.9439585315995,190.97101290617138,190.19939011428505,190.41702342499048,189.7478173878044,190.5878322729841,189.97743624728173,189.6564460140653,188.95241640228778,188.17963159875944,188.17938164202496,188.21264229342341,187.6997082279995,187.5175905986689,188.24705419968814,188.83048555487767,189.1225644419901,189.23997363448143,189.28459609672427,189.3314093099907,188.95679546426982,187.99436600739136,188.4232753883116,189.0113898711279,189.9994541881606,189.14127583196387,189.78495354158804,190.31741061573848,189.8611725824885,190.66092306375504,190.92115583224222,190.28454390307888,189.6692336150445,189.6154904179275,190.2334273988381,191.03862688643858,191.02888837223873,192.01901911292225,192.92705293511972,192.67858235025778,191.73139089765027,191.40675118053332,190.45441681239754,191.44908985635266,192.40776880690828,192.36880164500326,192.52581858821213,191.7031940286979,191.38138140412048,191.317488593515,191.72151194140315,190.80266207363456,189.9930545068346,189.8423860068433,188.9284856794402,187.96061226772144,188.24875489622355,188.06231310218573,187.48938948009163,188.35985724907368,188.02386934543028,187.33804604737088,187.723497975152,186.94371615862474,185.98165918700397,186.77154154144228,186.65080197481439,187.12194037763402,187.52237708121538,188.15456057945266,188.7387619651854,188.26784063875675,188.80589672084898,188.64776648022234,187.75677862158045,188.59957465482876,189.5345727908425,189.05725002847612,188.11296512931585,187.12475777231157,187.91486005717888,187.78811379661784,188.63961954321712,189.60577449947596,189.22621463425457,188.5636553093791,187.5776240704581,188.17273879935965,189.01183628337458,188.02765777427703,188.14842069335282,187.42569233803079,188.09590739384294,187.9930758071132,188.14558619214222,187.58098042104393,188.4244960094802,189.0558008872904,188.26489491248503,187.30677655013278,188.13454904500395,189.12758530443534,189.2603174666874,190.12641411507502,190.66063979826868,189.88953811721876,190.25745832035318,189.74844874767587,190.6007942869328,191.11679250793532,190.74761733738706,190.26858333405107,189.55789154488593,190.04434506315738,190.06833043135703,191.03087694384158,190.69855102570727,190.49867680016905,190.32868815818802,189.9063581111841,190.83895372133702,191.42099975282326,190.55428694048896,191.19349487265572,191.92971936054528,192.21608637925237,191.80776621960104,191.52516336226836,191.16232711775228,190.40391098102555,189.46186397131532,190.43833155883476,190.41146278055385,191.20828235382214,190.8883489635773,190.49739219993353,191.12894334224984,190.81291757477447,191.42536147590727,190.95847378252074,190.74412730522454,190.35500124655664,190.52033975627273,190.90256470488384,191.0080381538719,191.8244048212655,192.3340090312995,191.66062161093578,191.39184528868645,190.7723899083212,190.1478344532661,189.94315276294947,189.10450937179849,189.19582298351452,189.35634364560246,189.3573989616707,190.1826826198958,189.86144650680944,190.63688109675422,191.08733526431024,190.33905985439196,190.70080703496933,190.88631174806505,190.211806895677,189.33798695961013,189.81808795873076,189.0139773110859,189.28859651461244,188.3766840151511,188.52796318288893,187.9000510443002,186.9502001251094,187.40632057935,186.75801873812452,187.115035017021,186.31242394959554,186.8484796443954,186.76422235183418,186.82171485293657,187.0216460460797,186.78518429165706,187.69767900044098,188.03120099380612,188.47306738467887,188.3915709615685,189.11009107902646,189.08172805514187,188.26457443879917,187.97689440194517,187.67851114319637,187.13194537721574,187.80425864225253,188.3984601031989,189.26063645957038,188.8863311065361,188.45495131844655,187.5709056542255,187.96385102532804,187.35087272850797,186.36333313817158,186.83850588463247,187.6443649251014,188.62200208287686,187.63311320729554,187.0562797128223,187.22293488681316,188.22078274236992,189.09532722458243,188.11420650267974,188.61303658643737,189.27340352674946,190.13167955493554,189.60923310602084,190.12239875923842,190.07961950730532,191.06700909649953,191.63308807695284,192.26234581600875,192.4372088876553,193.42570447409526,192.83640972338617,193.1903318897821,193.27529756398872,194.05922133522108,194.21768570691347,193.795299208723,193.476251876913,193.43026445945725,193.23722812905908,192.63743694731966,193.36335492646322,192.61420546285808,193.35191666008905,193.76574369426817,194.47471566451713,193.73767129331827,193.07757991179824,194.0058970246464,194.69118280056864,195.02105581294745,194.58119098749012,194.47760105971247,193.7261129063554,194.30406999774277,194.58192694280297,194.7051637712866,195.11624122969806,194.65164181450382,194.75978995068,194.90006049117073,193.94350035861135,194.26166133536026,194.247330699116,194.87316873343661,194.14687401382253,194.73016974888742,195.07378495391458,195.8856488149613,195.11604103725404,195.19794112304226,195.5741712152958,196.48322454933077,195.86887058150023,194.9359648237005,194.23541886778548,194.09539903886616,194.7947489847429,193.97257098555565,194.27142773009837,194.27759342687204,195.02448144741356,195.94906749064103,196.10032513085753,196.4917179797776,197.45707868691534,198.2241940847598,197.88242038385943,197.59406679868698,197.30671547725797,197.26289617316797,197.3246187795885,196.5887353993021,196.25615971302614,195.28712460026145,195.85858789552003,194.98330717207864,194.21935231611133,193.65936510870233,192.82528358651325,192.32605869695544,193.1634680670686,193.78328753309324,194.74479036359116,194.7344760862179,194.2164900735952,193.51967517472804,192.94357282062992,192.23495560931042,191.51471909228712,190.60984684992582,190.31423302507028,190.47502879519016,190.2794859088026,189.62926654564217,189.87756203580648,188.9370753923431,189.78279741900042,190.0174234774895,190.7285569952801,190.4013463226147,190.95035927044228,191.2791428687051,192.09578441036865,192.8943869783543,192.0462915142998,192.02144976798445,192.39811964612454,193.05236639780924,193.0347369639203,193.97096553212032,193.74727059155703,193.7646110523492,194.75020343903452,195.58976969588548,195.7991220196709,195.8092990545556,194.896972340066,195.79700115462765,196.45761540019885,196.30588412145153,195.46928983414546,195.1791016566567,195.27669465960935,195.78688024450094,195.08887940319255,195.86731928912923,195.01918334234506,195.61709757847711,196.38946907920763,196.19223791081458,195.38928147312254,194.95158017519861,195.90179189061746,196.24914122465998,195.91781208431348,196.16627319250256,196.0502304318361,195.49236037908122,196.47070211963728,196.22695728903636,196.75686790794134,196.314255383797,195.77184261148795,195.66478999285027,196.33291277755052,196.66134306509048,197.30228488100693,197.62889585457742,197.1160471639596,196.32432958390564,196.65419492777437,197.26321587525308,197.4900086298585,197.66209944942966,198.1145567605272,197.84664101107046,196.8761471323669,196.1499171052128,196.19190554646775,195.49940248113126,195.7401825147681,196.47207312844694,195.70838742610067,196.01375912874937,195.6282073436305,195.14894027356058,194.83300040196627,194.4345996105112,195.40387229481712,194.4936761423014,194.90889816218987,194.14707005256787,194.2746631843038,193.6668711071834,193.61622200906277,192.87492964230478,192.511461191345,193.43827087664977,193.2810493707657,193.61967935366556,193.52933691767976,192.7672217641957,193.23457104573026,192.65690201101825,193.12975149741396,192.54953804798424,193.31022468488663,192.63822931144387,191.84155705431476,192.0142888710834,191.54198562912643,190.58871748065576,191.40733000915498,191.44539925083518,192.08442556578666,193.0596030736342,193.23049269942567,193.48068157723173,193.6328152450733,193.095422512386,192.29621473047882,193.12951791938394,193.96118816686794,194.41304048104212,194.45904676010832,194.57791192783043,195.37554350169376,195.28869506297633,196.11789138289168,195.76790101313964,196.17136055743322,196.0246144067496,195.69978396221995,194.70881116390228,194.2820393354632,193.44259277777746,193.1907144910656,194.0883678616956,193.5552888326347,192.7626949758269,192.78513707546517,193.45616851281375,194.39846664853394,194.9811463500373,194.9260488585569,195.61571274604648,195.30026641581208,195.93986293673515,196.3961677243933,197.24756225710735,198.13489408418536,198.37083029327914,197.90077749360353,197.86066855676472,198.0126423733309,198.41527479793876,198.02896328363568,198.06173053011298,197.2325268550776,196.43382361670956,196.61059241415933,196.549206093885,196.4077550014481,196.69672962510958,197.0160221895203,197.24864998133853,197.2651071557775,196.89456987008452,195.89631993789226,195.26608963916078,196.00383262801915,196.49154122034088,197.46330117760226,197.36178313102573,198.05218475870788,198.84272815985605,199.40616797748953,198.94823754345998,199.5583360651508,199.0129196131602,199.923197647091,199.9629186470993,199.22080217674375,199.20598051929846,199.30151725606993,199.26682825246826,198.5536890742369,198.64124198257923,198.27853413578123,197.57842045789585,197.69093575840816,197.43058768007904,198.33882851712406,198.046655905433,197.3518803725019,197.79070515558124,198.10858000908047,197.69076633499935,197.3763528028503,196.5940487999469,197.48059974377975,198.3927817963995,198.55676930956542,199.0858235610649,199.89028274454176,198.97467387653887,199.4225433440879,199.5498488782905,199.56921624718234,200.28812597086653,199.3213615640998,199.06035964144394,198.46719474112615,198.36574557702988,199.2171387146227,199.39201673632488,199.81614640541375,199.9517168723978,199.1242534168996,199.14585192967206,199.12736461637542,200.114750394132,200.8515731897205,200.57224588422105,200.26454173680395,199.64293838758022,199.70362570229918,200.0875475308858,200.9125881679356,200.4864793503657,200.8981219693087,200.23453965596855,200.57255535107106,200.2865995168686,200.7682601865381,201.19435550132766,200.4954353850335,201.242042244412,200.6748999003321,201.3179153734818,200.46769722923636,200.0302501884289,200.05697625223547,200.17772734258324,199.5967493900098,199.67877040989697,199.3364190091379,198.36967540718615,199.28387179691344,200.19600016763434,200.26211143517867,200.41984482854605,200.07583482237533,200.9872295311652,200.3570806439966,201.30876639671624,201.23680640710518,201.51118998602033,201.7701561609283,202.00613790517673,201.1273309001699,200.932952567935,200.05170010169968,200.5378323085606,199.76468012621626,198.89916198607534,197.99091968685389,198.49389904225245,197.52245286526158,197.93517713574693,198.30716145271435,197.6883588321507,197.40707760117948,196.67586641060188,196.4224213915877,196.4866647575982,196.38021185202524,195.6723318360746,194.91881296271458,195.35134180542082,195.94747478095815,195.0938245980069,194.56051870854571,193.60552088776603,194.04872293304652,193.6944574029185,193.4864760618657,194.1567508308217,194.55735856853426,194.7785820583813,194.03913552407175,194.6649554609321,194.71476029325277,193.86680696206167,194.55500995600596,194.4360044421628,194.48196866828948,193.87524705473334,193.73817075463012,193.26634074514732,193.75721770897508,193.5898082703352,193.35600115451962,192.71547964401543,192.53025552583858,193.38082128064707,193.20426561497152,192.75147334160283,193.39201326016337,192.74299160344526,193.42252297047526,193.83255826495588,192.8455054629594,192.73303296556696,192.6657098759897,192.96679352596402,192.07048770040274,192.44733592681587,192.56477065384388,193.01413525035605,192.26676362846047,192.99268230842426,192.97533395513892,192.7992990249768,192.4661112469621,192.15255832951516,191.85511242365465,191.66934690950438,192.40058572683483,192.30078661162406,191.7891689077951,191.91169627243653,192.1893501887098,193.16864178795367,193.0426938147284,193.18801577808335,193.68315983796492,193.22546573355794,193.9615262323059,193.1631704014726,192.17899781093,193.12773989886045,192.70039398409426,191.8427848299034,191.01366095384583,191.61579250125214,191.92469758167863,191.29924836056307,191.41456599533558,191.46012968709692,190.6209923303686,190.13239623326808,190.13045373512432,189.26432167273015,189.04237402044237,188.51178241940215,187.74680543970317,188.53675924567506,189.32986485445872,189.8990081353113,188.98261156398803,188.15283222682774,187.97810796555132,187.85885682003573,188.0739447399974,189.05777276027948,189.7412887918763,190.18214153964072,189.95412982767448,189.1956372181885,190.18177867121994,189.95590728707612,190.82172588212416,191.05707867443562,190.22915539052337,189.86215349240229,190.3843849170953,189.98378468723968,190.60894640209153,190.112489647232,189.18217254197225,189.87385645788163,189.23214712226763,189.73593505611643,189.61233989801258,189.5831582932733,189.85148032847792,189.01543899951503,189.5397202973254,189.21555189602077,188.80352098448202,188.23490343336016,188.24818306975067,187.61068120691925,187.04340885393322,187.78967196960002,188.42303150054067,187.44816596945748,187.49850765848532,186.67223761649802,186.17411545477808,186.45247152866796,187.42386161908507,186.98936661565676,187.25032743858173,188.20645469706506,188.61168817197904,189.1296787634492,189.92867018654943,189.06847556633875,188.69494885532185,189.0057834056206,188.13007850339636,188.25065342802554,188.78630191506818,189.73735699569806,189.24962856573984,189.14388327207416,188.4066180079244,187.79757082695141,187.24889828031883,187.897573991213,187.3866310971789,186.95112521434203,186.49289769632742,186.65400077821687,186.72178294602782,186.44521976122633,186.12991334311664,185.38752280268818,185.16830742219463,184.21822864981368,184.3584739845246,184.59342075511813,185.30451425770298,186.29610292892903,186.83866963721812,187.76408595219254,187.34156979154795,186.8478642120026,187.0483881374821,186.54478113166988,185.9872009838,186.64469226589426,186.70457426458597,186.70621424727142,186.50600228179246,186.4241085848771,186.54840449336916,186.80818101437762,186.14118549460545,185.36940068705007,184.70306451572105,184.42369116470218,185.23333898559213,184.27411066833884,184.40830980287865,184.73537805955857,183.9346304545179,184.26466062804684,184.69011850934476,185.050232835114,185.7787150517106,185.0621214765124,185.26584164705127,185.75328561803326,185.91397107765079,185.0602671620436,185.26764527801424,185.03224703436717,185.8742704540491,186.3660275703296,185.91973653109744,185.04107912955806,184.63625290384516,185.3424618728459,184.8225571392104,185.7331834854558,185.19567513512447,185.316175469663,184.96912297327071,184.78817422455177,185.3232497884892,185.69755100319162,185.4847146263346,186.21450936887413,186.04962546331808,185.9022633419372,185.39411415811628,184.56743300054222,185.33120432775468,184.88666795240715,185.766741795931,186.7611137079075,187.74481893284246,186.99863877194002,187.56597631284967,187.96370028378442,187.2625444093719,186.6237213187851,185.7453023637645,184.93862495804206,184.4734461051412,185.34496412752196,186.15446957433596,186.7239527720958,187.27622834127396,186.40515948971733,186.7252424969338,186.13091221544892,185.9542791126296,185.98249472957104,185.8909994335845,185.75010318076238,185.24526133202016,184.26336754718795,184.0634256452322,184.7295569279231,184.81764966296032,185.8072618059814,186.38549574045464,185.5637183180079,185.26304853521287,185.43026069458574,185.4420027276501,185.61910081049427,185.0187613517046,185.8927918151021,185.90548000810668,185.25135188177228,186.22434086166322,187.0174605725333,187.19841741397977,188.08952638925985,187.3612420456484,187.04882494499907,187.80789151974022,187.53799707069993,187.852354016155,187.87927235849202,188.39771195827052,188.3396313637495,188.42255667084828,188.35392618644983,187.50996976345778,187.56627744622529,188.29383256379515,188.32404264155775,187.59128288691863,186.7198456004262,186.4416135326028,186.98526435438544,187.87036301288754,188.26627834700048,188.1818079049699,188.9208023864776,188.89024936314672,188.58403571136296,188.9554565367289,189.34602503711358,189.6177958957851,188.90732239373028,189.66841962421313,189.52199101494625,189.62005821056664,189.08006987906992,188.2211209856905,188.74908228591084,189.43014546157792,189.50377847068012,189.11176260001957,189.6246476038359,189.5727215744555,190.14335608808324,189.3648227197118,189.66359009454027,188.75889555783942,189.23965847492218,190.20243081171066,190.6802059574984,191.39035255135968,190.94273289386183,191.71512153372169,190.88978593144566,190.59224671777338,190.74114366341382,191.4208898609504,191.03508421452716,191.00832392601296,190.01979765156284,189.08493336616084,189.6583009273745,190.2355689094402,190.83886376675218,191.77686748001724,191.15982105443254,190.9491317984648,191.3635892542079,191.3187531963922,192.0757876690477,192.03466806840152,192.76343662012368,193.4491664469242,193.575186742004,192.71746166516095,191.82200663350523,190.8905473467894,191.80793920019642,192.64704927895218,192.19098434224725,192.31456876080483,192.5833571339026,193.39761093258858,194.2229857663624,193.83347664400935,193.21788009814918,192.51911739539355,193.31606248021126,193.28471873048693,194.2534173373133,193.58705657813698,194.2334792735055,194.75152624351904,194.55858145700768,193.63882049079984,193.11079350439832,193.98435180773959,194.7575414152816,195.28337480546907,194.4101400412619,193.4808582388796,193.09577701799572,192.62222694372758,193.40272341575474,193.14137642038986,193.57701598480344,193.25629299972206,193.1276092864573,194.00795771786943,193.55814152862877,192.6930310339667,191.83383113658056,191.8255114699714,191.7824546173215,191.72882847487926,192.58439928293228,191.740743719507,191.57618014886975,191.71428966429085,192.5392983374186,192.45380301168188,192.44739357288927,193.26706293271855,192.8641266352497,192.719162076246,192.2086413516663,192.90750318020582,192.8832723177038,193.31627227226272,194.10326264379546,193.4283224027604,193.85781273199245,193.15391423972324,192.53900161292404,192.0335181602277,192.89066755678505,193.00522132357582,192.60160088725388,191.75313182594255,192.34884193446487,192.92488966230303,193.1997098135762,192.8532401616685,191.8657390694134,191.85479639749974,191.6216082908213,192.618022672832,192.26767520280555,191.5070416033268,191.18176342360675,190.6472329129465,189.72354978509247,190.24602198274806,190.32025274494663,190.09344168007374,189.82160303229466,189.71424715965986,190.47600897587836,190.17333506187424,190.91243896447122,189.95159232476726,189.84699249546975,188.9900390189141,189.814729669597,189.1226602019742,188.15927563328296,189.1538418759592,188.49957153387368,188.00405351258814,187.27635263558477,187.273665280547,187.2355794981122,186.45616925228387,187.11882256902754,187.27142241038382,186.83797158766538,186.47500223014504,187.25921009853482,186.98632094170898,187.01983782835305,187.01247614156455,186.7978115445003,186.31850939476863,185.77647109981626,186.35118777444586,186.32496829051524,186.61996142053977,186.22049705544487,186.78236474422738,186.72551563987508,186.9356264229864,187.1333566228859,186.6197506240569,186.8865059330128,187.0925916484557,187.35792435565963,187.8012348129414,187.4564729789272,186.61824062513188,185.96453129965812,185.51776441419497,184.59158145729452,184.36071127466857,183.454034820199,183.09299817308784,182.45537621341646,182.75268240552396,182.91170416446403,183.74491047952324,184.55393944540992,183.7032462102361,183.33875116100535,183.4637742335908,183.00845990655944,182.45889161294326,182.61109460284933,182.3218930279836,182.8375208391808,183.4212569934316,182.64686341118068,182.85406479472294,182.14935571327806,181.27326129795983,181.3410913059488,182.33499062620103,181.8272152529098,181.2709538838826,181.23857638426125,182.13101885840297,183.0643240660429,184.05561680160463,183.19635235890746,182.32507077418268,182.15197916096076,181.73295348603278,182.44334678724408,181.64704155735672,182.2202212382108,182.00231643440202,181.5011426010169,180.75644192565233,181.7256838036701,181.82317827641964,182.5631425534375,181.8555983225815,181.0790796270594,181.00554447667673,180.67471937043592,179.88355482835323,179.99106921860948,180.98541147168726,181.9481714097783,182.33318099286407,182.37115585338324,183.02469810284674,182.18374842079356,181.45489251846448,181.01278061093763,180.19339499250054,179.9587215874344,180.2596662673168,180.3715085159056,181.25005364743993,180.55268401140347,179.69818551233038,179.2843357147649,180.1440048571676,180.892901125364,180.0019470793195,179.10557664372027,178.400968155358,177.9016904006712,178.82286381535232,177.9459335040301,177.85958645539358,177.87912330357358,178.63171996874735,177.719170040451,178.3748678639531,177.44753363681957,178.122803918086,177.34807937778533,176.49016789346933,176.908663907554,177.4248592145741,177.294029019773,176.86679255589843,176.28610855294392,176.086803836748,176.92575117293745,176.26468815701082,176.0732168010436,176.86250066384673,177.80051933880895,178.40222066640854,178.543545327615,178.02976739685982,178.3055546558462,178.2034052493982,177.23765030503273,176.45475926995277,177.02882881090045,176.9985113493167,177.92278563417494,177.61148691922426,177.95171412732452,177.0419981633313,177.75017049675807,178.2533546765335,178.2612013737671,178.70031460700557,179.51066602021456,179.4947742531076,178.88845212431625,179.1496771373786,180.11636952823028,179.98892675014213,179.66851579770446,180.148383858148,179.5640978179872,178.78377622319385,179.22521248692647,180.170109141618,179.80763007560745,180.60799882700667,180.17351109487936,179.2405141191557,179.65419035498053,179.81262397905812,180.14070978807285,180.5460778591223,180.53690927056596,181.10661759134382,181.65345707908273,181.99121284065768,181.42957359878346,181.61185416625813,180.64146047877148,181.18324973015115,180.85815422423184,180.6772644626908,180.9860908682458,180.1594082233496,180.81809742655605,181.36869242275134,182.23586525022984,181.543530582916,182.1704333173111,182.4334811172448,182.21405970631167,181.6443643043749,180.93826415017247,181.19155584974214,181.78907298436388,182.499722706154,181.88742122007534,181.64263013005257,181.92230100603774,182.67249980010092,182.1542877163738,181.20728871133178,181.89799120649695,182.73047056188807,183.3407200393267,183.45392118534073,183.78399693407118,184.30513095622882,184.8935771174729,184.01956670964137,183.3575595584698,183.4517300259322,183.84262459212914,183.95577150350437,184.02684966707602,184.90990385692567,184.4845573301427,184.46066345786676,184.90303578414023,185.50344662135467,186.24289715569466,187.07518112612888,187.92002061381936,187.39696108130738,187.808787654154,188.02787351235747,188.3088747053407,188.55805090116337,187.73610950214788,187.42289872840047,187.18525283085182,187.3209684342146,187.17316010873765,187.55032574897632,187.03125637723133,187.227267394308,188.09848877368495,187.42472164984792,187.130783457309,187.95295148342848,187.741756726522,188.1046636113897,187.59800094505772,186.88371435413137,187.1351018375717,186.91644630674273,187.73012954508886,187.77726550819352,187.62700569396839,187.57378225727007,188.3673568945378,189.20404705032706,189.6096180025488,190.27872758405283,189.8612767891027,190.00112935109064,190.82475507538766,191.03650721535087,191.02668833453208,191.81964972103015,191.85191649990156,192.2229758654721,192.24187850952148,192.96481707366183,192.4935483345762,193.06654771789908,192.295454160776,193.02364811580628,192.60528068710119,193.3452011407353,192.46237642876804,191.78171803755686,191.37353735091165,191.54134603077546,191.17839790973812,191.94598632585257,192.62284402409568,192.33403246849775,191.6495633763261,191.24924765480682,191.77498571993783,190.8830251749605,190.6799889425747,190.6209667068906,190.59327382128686,190.681597690098,190.12597412290052,190.33710688026622,189.4152419534512,188.97485083853826,188.5185299348086,188.08212460344657,187.46421101363376,187.49555104412138,186.97433857386932,186.37185045937076,186.42370955552906,186.78338806703687,186.1627315809019,185.3281168313697,184.76148786069825,183.88831862527877,184.1175819132477,183.9451743871905,183.69024682464078,182.79884419124573,182.09965940192342,182.32284156791866,181.47316314978525,181.21473002713174,180.40053564868867,179.42902027629316,179.08922103466466,179.04282636055723,179.49446262279525,178.76711617596447,178.4249068107456,177.56612341478467,177.04772458178923,178.00942426454276,178.19260029867291,178.66488430835307,178.7119585936889,178.25609421776608,177.85017731925473,177.32457345770672,177.28502114582807,177.89411829737946,177.02537913247943,177.52828760817647,177.74573260406032,178.44005535775796,179.18419674271718,178.90825429558754,179.880666046869,179.32804733794183,178.76521911192685,178.11536382790655,177.56320044910535,176.88603094080463,176.30464534508064,177.26607069838792,177.4030828443356,177.16241915524006,178.14924569102004,177.65456294547766,177.70447666570544,176.82251706859097,177.04807824501768,176.60554115800187,177.04141316236928,176.9352304432541,177.6965090362355,176.76453092508018,176.82643246138468,176.2889422220178,176.67021701252088,176.12516624014825,175.46540802391246,175.36904761148617,174.501911776606,174.9250975418836,174.17385738808662,173.60676959343255,173.74662233889103,173.10537598701194,173.42986042052507,173.16337469685823,172.2537289741449,172.25638130214065,172.03199681872502,171.99474684009328,171.19850294711068,171.0470698121935,170.14245469961315,170.16790103074163,170.5555143384263,170.45750318979844,171.32601061463356,171.68792505050078,172.68389705987647,173.39341328665614,174.1237282739021,173.41308711934835,172.90485306177288,172.182013978716,172.6562590696849,173.30537631968036,174.25159286521375,174.8767951335758,173.93510098010302,174.0527664530091,174.45560958329588,173.82391813304275,174.57489603478462,175.4323475426063,175.95350615726784,175.58487259643152,176.22075221221894,176.88448273204267,176.5336666428484,175.82132262410596,175.05266301054507,174.9305852772668,175.87367851985618,175.30710786674172,174.46510456036776,174.53084056125954,174.9681791830808,174.9043397498317,175.09338888479397,174.53215646045282,173.55661021592095,172.65750497533008,172.0207376088947,172.4784923158586,173.27975553553551,172.42814274178818,173.28507445333526,173.82657724199817,173.89433285221457,173.31953927548602,172.78962695784867,173.399232854601,174.35923974821344,173.37872433569282,173.25965890893713,172.66878645913675,171.6891865376383,172.49161134660244,173.47781818220392,173.12708224495873,173.49907929543406,172.86168884905055,173.08741644909605,173.63160827569664,173.08245731843635,173.2058844207786,172.8152344916016,173.37213004752994,173.1968173738569,172.3628764343448,173.07294228253886,172.24060935387388,171.3749889950268,171.68652063887566,172.17317313700914,171.63080456387252,172.21955239819363,171.86832739505917,172.64470006059855,171.78572378400713,172.7791411774233,173.12980148009956,172.55130649963394,172.24856575625017,172.61213138885796,172.71108881896362,173.5822764215991,172.8373783333227,172.45115650771186,171.95725100208074,172.63290951540694,172.6806649933569,172.6835771901533,172.1880771704018,172.24683334166184,172.3698949860409,173.1975553301163,172.8012448977679,173.37637570453808,174.11195934191346,174.61878157034516,173.9942347453907,174.32102224091068,173.6909983465448,174.55757528962567,174.92812490370125,174.7419428252615,174.34263401757926,173.50464176619425,174.46942973928526,173.67269404325634,173.2640941273421,172.90886670118198,172.7078309073113,171.93686364591122,172.46508461469784,172.30792921083048,171.96913756756112,171.38793191546574,171.25313119404018,170.55902463616803,170.1136463265866,169.86955045163631,169.7652825312689,169.38735322887078,169.6188799869269,169.05279374076054,168.72954563004896,168.58584462385625,169.3525770190172,168.65359929855913,168.40992658399045,167.41299644764513,167.02436464186758,167.42915314203128,167.3521053842269,167.20114281680435,167.06075248867273,166.59043199149892,166.01448058662936,166.75869400426745,167.49983912333846,167.43732024822384,166.911628019996,167.56549826683477,167.61772132106125,168.04057049984112,168.29498147871345,168.9129775906913,169.66223317664117,170.29524798411876,169.66064335778356,170.30234551429749,169.391668043565,170.23676441097632,169.80387701280415,170.55888370843604,169.65851815138012,169.16129586659372,168.73533765412867,169.5740462015383,170.39682933455333,171.27493667323142,172.18920403160155,172.31478538457304,172.41980284499004,173.077978850808,173.7683194722049,173.6299114827998,173.8394383834675,174.42085066856816,174.78320372803137,174.40715953707695,174.60406033601612,174.02122112596408,174.45016482984647,174.08001859113574,173.73016548343003,174.13721010647714,175.07472278689966,175.36177833052352,175.12124917889014,174.84356323676184,173.97490046685562,173.47000339161605,173.86988101108,174.13125914521515,174.899289438501,175.24406001670286,175.08308246405795,175.01417975779623,174.41682266723365,174.9118236694485,175.1051369253546,174.47471986990422,173.92408558679745,173.1506858295761,172.48044508788735,171.84054201375693,171.55969637772068,172.04706581449136,171.2108942051418,170.76617597742006,171.54280925914645,170.81914072297513,169.8908270453103,168.91839978890494,169.13357124105096,169.1751453918405,168.78251454839483,169.3057559831068,169.57664859620854,169.44789590639994,170.00623992690817,169.17412204341963,168.54318538634107,167.90068599581718,168.27060913527384,168.86371873645112,168.39866536669433,169.15295138396323,169.61637492943555,168.9807078312151,168.82132702413946,168.08597589237615,167.84837111271918,168.66908186441287,168.43573884479702,169.03579942509532,169.1242275936529,168.46722744079307,167.50660187285393,168.4639995614998,168.37231433484703,167.4818630097434,167.73153282981366,168.71142908744514,169.378211830277,168.87166642723605,168.7880257773213,169.52122150361538,169.3488055053167,169.33621873892844,169.33924687327817,169.77570664696395,169.2391286478378,168.27367723966017,167.68085720110685,166.98793430859223,166.3645866899751,166.93902330240235,167.4542963723652,166.50141988601536,167.16385283134878,167.33686219109222,166.42572817159817,167.02605342585593,167.26807186147198,166.68466469133273,167.48057389073074,167.19606186589226,167.85764954425395,168.7026921347715,169.07867123140022,169.21208790829405,169.63921508006752,169.40171885024756,168.7666052673012,167.9787329202518,167.29229653533548,167.784564380534,168.04702729033306,168.2943981634453,168.20096448017284,167.57529167085886,167.33147557405755,167.1198333571665,168.07071403600276,167.7539241136983,167.33407206926495,166.9831833797507,166.76275524822995,166.7746272003278,166.56754235643893,167.18839810602367,166.5323040485382,166.75180606730282,166.22777178371325,166.0240439567715,165.83039067173377,166.31383855640888,165.9374083825387,166.8951634732075,167.36175949126482,166.41178602539003,166.85820607328787,166.84104669140652,166.50232377974316,167.07164493156597,167.7501949123107,167.31066354038194,167.65119454730302,166.82765582576394,167.54989191470668,168.01756588742137,168.03002055361867,168.2803800450638,167.68819935899228,167.73065338097513,167.54348629014567,167.45340882148594,166.8725501652807,166.07026095688343,165.49760185088962,164.51401901151985,165.09631041437387,165.31918360386044,166.11669979756698,165.96313997684047,165.15644866554067,165.56437047803774,165.93386136414483,165.74190236488357,165.64727556565776,165.8983320724219,165.31553113413975,165.82345994468778,165.6212459388189,166.56994513468817,166.2715547066182,166.16771812643856,166.98082275362685,166.46088572125882,167.33761495305225,166.5405367948115,166.6967509975657,166.86244194069877,167.80120030092075,168.23014762811363,168.1482608965598,169.03690418601036,169.03460455453023,169.80761845083907,169.48114244127646,169.29333128174767,169.86566566163674,170.13403650652617,169.5718795810826,170.06744244368747,170.97712229937315,170.88615361228585,170.24911684496328,171.19999311538413,170.64943082863465,170.1888185115531,169.3115250794217,169.29600593540817,168.43493861844763,169.20202649571002,169.70846726745367,169.55892650596797,168.60911309206858,169.5002433382906,169.89675396634266,169.22709698509425,170.0571211250499,170.10425508441404,170.38127730833367,169.62194382492453,169.8129638824612,169.8012332683429,169.58054722333327,169.9894983386621,169.57460666401312,169.21588750742376,168.6039265547879,168.52100419439375,168.8514277106151,169.0802714158781,169.38051001820713,168.52326777065173,168.7856925856322,168.37111870432273,168.15376699343324,168.10541181080043,167.71924004796892,168.48166859569028,169.3025672645308,168.45771880773827,169.0816770377569,168.51891471398994,168.94359661079943,168.92793969716877,169.60257300920784,168.81964201992378,168.97241302439943,168.4647746393457,168.24698622804135,167.27205202868208,167.01489368872717,166.3365669217892,165.79564184416085,164.90610703546554,165.46566452737898,164.6167175504379,164.17387530952692,164.01107436791062,163.03600413631648,162.24493859522045,161.25368758663535,160.69994769850746,160.07916661724448,160.30404967209324,159.56567318411544,159.8676120485179,160.61347666708753,159.73217118578032,160.528690403793,159.87762392964214,160.66159504232928,160.7603678200394,161.44842350808904,161.66780405212194,161.70251946430653,161.78029519878328,161.718817807734,161.2574047795497,162.01856931019574,161.7216820870526,162.5212053102441,162.00786360446364,161.6275553018786,162.4407199881971,161.5725305355154,162.45832177530974,161.52123604062945,161.7648445405066,161.80128136556596,161.75466856220737,161.91063127480447,162.01996315689757,162.85984219657257,163.31897498806939,163.56281865946949,163.02041703555733,163.79863857105374,164.58620210411027,165.54429053654894,165.1327996859327,164.84322558436543,164.5421629427001,163.94384047016501,163.00856712507084,163.16098608914763,162.3884622566402,161.60418629739434,162.2139555583708,162.59943426586688,162.55711680371314,162.92110016429797,162.689488443546,161.96044406853616,161.78887567855418,161.56755903270096,161.63800774654374,160.71798547450453,161.11406989907846,162.02200286090374,161.93635080335662,161.35052932193503,161.73610346671194,161.4449475891888,162.38756705727428,161.51593264145777,161.22264763666317,161.4808872169815,160.9166036839597,161.24386672023684,160.4977572550997,159.76460827328265,159.24188425345346,159.19625660590827,158.84799092728645,159.05222558928654,158.05695285880938,157.62384070735425,158.5328236357309,157.69927878445014,158.5024554328993,158.08351649995893,157.162937249057,156.46221143566072,156.51278571551666,157.09101216681302,157.21991360699758,158.1014477694407,158.80647506471723,159.53136922512203,159.96396513935179,159.39579772762954,159.5089585171081,160.22197131300345,160.52986267348751,159.95861296309158,159.4471708261408,159.29689185181633,158.93284991616383,159.92136450996622,160.75844752648845,161.68565588863567,161.71433037146926,162.35384198883548,161.912946135737,162.453916891478,162.0205482491292,161.64019553922117,161.45223783003166,162.19744710624218,161.507013884373,161.9232707116753,160.96243705088273,161.90847579669207,162.2466781400144,161.32071422226727,161.99603977426887,162.60083300201222,162.60748928273097,162.48155309492722,163.02805724507198,162.77735583251342,162.66117954719812,161.9295101459138,162.0976371737197,161.9487899937667,160.98993634805083,161.13702081982046,161.2458970719017,161.3600056776777,161.4211685010232,160.97483838861808,160.6001359410584,161.11446579359472,160.56898210849613,161.32234369777143,161.5262866029516,162.49563630623743,162.9856127910316,163.25882722996175,162.97113869013265,162.94642806751654,162.4699559318833,163.15402714768425,163.85104582645,163.40716294152662,164.40259524295107,164.24241100018844,164.50947725819424,164.48455653479323,165.3305426700972,165.9881825922057,166.400520038791,167.10706778755412,167.2977393269539,168.08259492367506,168.70391646260396,167.86864418443292,167.21762013575062,167.03466936014593,167.91351929167286,168.80770683242008,168.53140276810154,168.4566107322462,167.5710773305036,167.48567775869742,166.78199513908476,166.27762916404754,166.7662376500666,167.71835193410516,167.79611445078626,167.34632183238864,166.3612051899545,166.29292979743332,166.6770119103603,165.98642378719524,166.43904177565128,167.29778166301548,168.11265041446313,167.28989568306133,166.65577229857445,165.7354882271029,165.18516617640853,165.6967704896815,165.12191264610738,165.7146475855261,166.3383745243773,166.08168624574319,165.64875871501863,166.49216276453808,166.16364514548331,166.56614400912076,167.31505027180538,166.70853963121772,166.09748510690406,166.76941670384258,166.686399938073,167.36850421736017,168.05574030429125,167.72011543344706,167.85076794819906,168.37043361226097,168.09316847240552,168.91357765020803,168.72112363856286,169.62300553452224,169.97990845143795,169.08205717988312,169.45465982006863,169.9080280503258,170.41985950805247,170.20350417122245,170.01561818970367,169.80217618774623,169.89152461197227,170.46398307709023,170.9709730106406,171.26374463224784,171.6911859503016,172.26649134326726,172.27489380771294,172.21806939085945,173.2107427706942,173.85008331621066,172.85733454488218,172.26887075882405,172.40738390246406,172.18074371712282,171.84135862253606,171.68314708117396,171.62969093909487,170.86407315451652,170.6945500881411,171.53686732053757,170.76309338817373,171.2845680275932,171.3899272964336,170.48508268781006,170.8773400732316,170.3956714598462,170.6289854296483,171.48130400665104,171.706334926188,172.66672940459102,171.8520321068354,171.05651410249993,171.90268324501812,171.07614532252774,170.22463510604575,171.0277671897784,171.40589693561196,170.43353090295568,171.31697736075148,170.70095673948526,170.7072131554596,171.4399304180406,171.5317800785415,171.02385405590758,171.51742467889562,170.86971687385812,170.94596645096317,171.60655783023685,171.29552557505667,171.49671856919304,170.77213212894276,170.27150860568509,169.7112556551583,168.99078065389767,168.44908247282729,168.61050838744268,167.70436755241826,167.4590264847502,167.19896271405742,166.83789598755538,167.51912832818925,166.74706081207842,166.7481492147781,167.42028083186597,166.92019055085257,166.52702890709043,167.198652502615,167.54945728648454,167.85613945079967,168.15975699061528,167.7801469634287,167.3501529688947,167.65712863625959,167.5919807893224,166.62859902437776,165.68173719290644,164.77311877533793,165.4012642716989,165.23689949931577,165.8775281123817,165.64550465065986,165.47814503777772,165.77336680842564,166.145771141164,165.86403948441148,166.23308757366613,166.151408218313,166.06462373910472,165.32992364792153,165.39313840540126,165.95010565361008,165.92393883736804,166.50746183330193,166.6193890874274,167.58099025068805,167.5260459058918,168.3437586016953,167.37762594921514,167.08537334762514,166.62500691367313,167.5016739955172,166.8606604100205,166.18865467887372,166.03384752757847,166.14093184424564,166.33478627819568,166.56545152468607,167.40720944758505,168.24974490050226,167.73901866655797,167.84143772441894,168.81260706763715,169.3779928931035,168.75669197598472,168.925634379033,168.57904403051361,167.9325334164314,167.72399290883914,167.67164656473324,166.98278126120567,166.46008757175878,167.09338442329317,166.42929969308898,166.21941101178527,166.2683686716482,166.9234394771047,167.81029426120222,167.8812540252693,168.58325288677588,169.5373415206559,170.29476056294516,170.06289484910667,169.7335743829608,170.4335288819857,171.2819342459552,171.96563297882676,171.12064690096304,170.59415806503966,171.5304346443154,170.58117933524773,171.2574585522525,171.86432032752782,172.62402057973668,172.56944940052927,173.44497368251905,174.4400394083932,174.15074093826115,173.58854160644114,173.86326958797872,172.99701543804258,173.67069230228662,173.9239607034251,173.92457031086087,173.76393339363858,173.96955968346447,173.04020568029955,173.6880126609467,174.50744380801916,174.141443350818,173.6954873497598,174.36650103097782,174.7683284697123,174.48099420173094,173.55575063172728,173.89801573147997,174.4813136565499,174.4808224402368,174.6717479028739,175.41281041875482,175.87306378036737,176.7504460187629,177.64567897189409,177.03899010876194,177.55304698459804,176.76456982363015,176.5274341139011,176.69997594086453,176.67478408338502,177.49453776190057,177.34228987945244,178.18751749256626,178.49911552714184,177.97477108240128,177.40132438857108,177.63631882611662,178.53641792200506,178.27334545832127,178.69768514903262,178.83129352284595,179.6278898990713,179.07155893137679,178.60602470021695,179.57392122317106,179.35432888614014,179.66311085782945,179.7682587285526,179.6995678031817,179.99959605932236,179.19771378207952,178.3153278422542,177.44623424531892,176.79442001786083,177.3571301419288,177.6095143603161,176.78107573045418,175.8263734583743,175.62608915986493,175.94934944994748,175.35854066163301,176.12743544345722,176.47187521215528,176.70870473934337,176.90071056364104,177.69655230082572,177.02985316189006,176.51635679928586,175.98918088618666,176.45384869351983,176.68195313867182,177.18850073684007,177.01115311309695,176.74818345019594,176.5319153983146,176.92302119266242,177.3672679741867,178.13674978679046,178.93336546747014,178.76625082688406,178.61614627717063,178.96249301545322,179.08737971726805,178.47657113242894,177.7551299519837,178.2063631331548,177.48337480146438,177.28055927995592,176.61573030240834,176.86991645162925,177.559356583748,178.29772904934362,179.1419384512119,179.48789926804602,179.43915293877944,179.7267475798726,180.47633055131882,180.74864073004574,179.80160252237692,180.17251888941973,179.6562523273751,178.84906739881262,178.95671029249206,179.81058365898207,180.52173873689026,181.3643316118978,181.37089460575953,180.81591047672555,181.79177045356482,181.49508958496153,182.24281136179343,181.66110507491976,181.11730421194807,181.07148688659072,180.8716311287135,180.88688778178766,181.85127930622548,182.2657190472819,183.04588310793042,182.14156360644847,181.98418657900766,181.7696497803554,181.7255260865204,182.5115492339246,182.16931067826226,182.9963078573346,182.50011824211106,182.17609996022657,182.04218978853896,182.01447327574715,181.24534089351073,182.2250348282978,182.57423257734627,182.8028738917783,182.19266354758292,182.3265681057237,182.319408709649,182.77681005047634,182.33208792004734,182.5416044164449,182.71101856511086,182.34960837755352,182.78199242707342,182.39660253981128,183.3272320893593,184.12133074877784,184.6605513067916,184.4498455026187,184.5533835622482,184.67630841163918,185.1153428708203,185.504147302825,186.1018293914385,185.61339134769514,186.07771883253008,186.69526492618024,187.60178248258308,186.9866596427746,187.15833094203845,186.69417837215587,185.83351822430268,186.69445168133825,187.01108362153172,187.22973884595558,187.13524395786226,188.10661158477888,187.20321929920465,186.95750582637265,186.83702783985063,186.29142791684717,186.9583351444453,186.46201170794666,186.28005003277212,186.91245086491108,187.62477866187692,188.47913002921268,187.59650531597435,187.46341214934364,187.9551544263959,187.85266315890476,188.2892258693464,187.64041334576905,186.64575773570687,186.10012001125142,186.7289168033749,187.18487716978416,187.83808246906847,188.39328848943114,188.64493273664266,187.69253485277295,187.0545011907816,187.0439986437559,186.0582632785663,185.14967713598162,184.79654859239236,185.13720736000687,185.72906508948654,186.30466062342748,187.22028355533257,187.64666450256482,188.57388040889055,188.34768265346065,188.37119577871636,187.69318066211417,187.641901277937,188.24512725835666,188.49208090594038,188.92195826210082,189.20999981090426,189.10060854814947,188.14182256301865,188.63269526604563,188.78225348936394,189.44631191017106,189.44506755610928,188.9961169231683,189.104709434323,190.10415964992717,190.63324466720223,189.9646345912479,189.12169461883605,189.35868553584442,189.794407885056,189.2495543519035,189.75240448769182,190.076587874908,190.13207849301398,189.70712603256106,189.6899954881519,190.3594439206645,191.22303079254925,190.6347104134038,190.49336836254224,190.3757937978953,190.35431913658977,190.36499246768653,191.07541771838441,191.14853756455705,191.09993427665904,191.2156887743622,191.34047456691042,191.37289340188727,192.30915258359164,192.13936884189025,191.56612558756024,192.42804445279762,192.72705341130495,193.26662853872404,193.63929847395048,193.54798979731277,193.58801119495183,193.14240667875856,193.18879145616665,193.42399122472852,192.4584138249047,192.9864343078807,192.00320378458127,192.17025404796004,191.46034213574603,191.3882265733555,190.82091457536444,190.68829027516767,191.0078514451161,190.27940219733864,189.6991632245481,189.34770585875958,189.4271074575372,189.33643466467038,189.1944258180447,188.67897604266182,187.85598277067766,187.58614799426869,188.11636191839352,188.71153111709282,189.12522003380582,189.79769240599126,190.19717235304415,189.3851168723777,189.22057786909863,189.20958946365863,189.71059914538637,189.4114248319529,188.89036521175876,188.1693679317832,187.20881677418947,186.69206213904545,186.38777644187212,186.36673834407702,185.65702684922144,186.16518762754276,186.25607095472515,185.98497305251658,186.7628363915719,186.8883161493577,186.6080278735608,186.0374594917521,185.14781844895333,186.11813745787367,186.8241877378896,186.7164803482592,187.20246385596693,187.43344473466277,187.80867557693273,188.1969486484304,189.023723019287,189.42134944489226,190.15943657932803,190.8541284580715,190.13752858992666,189.87198716588318,190.7964717131108,190.15051148692146,190.37906625168398,190.46933321282268,190.9420454497449,191.19754477916285,190.25008812639862,190.12249334575608,189.51669049356133,188.72092863125727,187.77384552406147,188.7311952970922,189.5779715771787,189.8674642527476,189.07058724481612,189.57285443227738,190.0558314002119,189.68540879478678,189.9856839608401,190.11769174830988,190.56558579578996,191.43162852851674,191.1820435472764,190.51751895109192,190.73829049011692,190.31627615634352,190.9685238203965,190.47459572227672,190.29788774484769,190.84233521157876,190.45115919411182,190.7016557524912,191.58630824554712,191.5773961110972,190.98408553330228,191.58511863136664,190.78220383403823,191.3873314075172,191.68607905274257,192.42962822131813,193.1456149960868,193.82889874558896,193.44893412524834,192.97529618348926,192.60469083907083,191.9034187728539,192.11709321849048,191.3455209308304,191.21523862471804,191.3584214267321,191.44784763548523,191.28249943861738,191.58812850387767,191.74909636424854,192.17735220352188,192.57078768545762,192.8682231591083,193.29385541379452,193.13391425460577,192.94483596784994,193.27371743042022,193.01405774848536,192.70825118059292,191.7471369500272,191.52513995906338,191.39088048180565,190.5173332206905,190.77106434712186,190.94093496259302,190.58282106090337,190.8788542286493,191.09886866807938,190.4485373585485,190.63495916035026,191.0694368877448,190.39872415922582,190.55635112524033,189.8845473746769,190.65907244291157,191.13536061625928,191.00734074413776,190.72608942724764,190.35264029772952,189.90402744244784,190.62575729191303,190.37511122925207,189.40288674645126,190.32197654852644,190.04361113719642,189.61692295130342,190.5368120907806,190.04696673341095,190.17021502787247,189.6275311652571,189.09040036983788,189.07664765277877,189.61045610671863,188.95721759460866,188.94688081275672,189.86449681175873,189.5532280341722,189.42127590905875,188.75650109397247,188.79711942002177,189.07698210980743,188.48590473504737,188.63223904836923,189.0389452604577,188.66364482371137,188.11639054864645,187.2629415905103,186.38106823340058,186.05157364998013,185.17074614716694,184.48015183676034,183.63819040777162,183.47514217812568,183.6257767304778,184.32067672442645,184.57681491458789,183.68414978822693,184.23858051840216,183.9605055898428,184.12974258046597,183.39348883368075,182.87905586557463,183.67357383901253,184.44882983807474,185.36999790929258,185.29754828102887,185.5124437995255,184.81650989921764,184.6371839577332,183.9685253468342,184.96717981761321,184.57077689422294,183.66942322207615,183.82706464082003,183.5091496151872,182.7554552797228,183.2791650723666,183.18314997153357,183.676966259256,183.48694694181904,183.55485507380217,183.09660832723603,183.22278751479462,184.07436743518338,183.40666286787018,184.17150769475847,185.05931295081973,184.48800358595327,185.25434940354899,185.09026477625594,185.30841295188293,186.2058518170379,185.9316734848544,186.31987487757578,185.47394741419703,184.93638828583062,184.7286660950631,185.6768648540601,186.0236730929464,185.78558792173862,186.61647814977914,187.30402668379247,186.85942306788638,186.8721286477521,187.2106694811955,186.24822653876618,186.527983375825,187.22616190183908,186.96116786869243,186.42993773752823,186.39405061956495,185.47919119056314,185.2013889825903,185.82890458079055,186.03919846890494,186.35968046076596,185.96010571764782,186.60577474394813,186.44768164819106,186.9778103469871,187.86325956089422,187.97663974110037,188.43588043004274,189.03221128275618,188.628384929616,188.735363941174,189.3683865671046,189.59036796633154,189.36263301735744,189.71342305233702,189.65450996533036,189.53581435373053,188.60372912557796,187.80161779327318,188.4062367696315,188.41807359363884,187.4663342302665,187.04491690779105,187.9117735303007,188.13385771214962,187.42640069313347,187.7742945025675,187.03916786657646,186.26843691105023,185.37833447707817,184.81506530568004,184.5268420339562,184.62841155845672,185.5605717538856,186.28365165973082,185.95362023403868,186.45184196904302,186.15647269785404,185.19087266968563,185.82722037192434,185.23705889564008,184.95826663449407,185.86956379096955,185.5834753420204,186.04676988022402,186.7105550444685,186.36322770593688,186.53315888997167,186.51803287677467,187.25653887540102,188.17162960860878,188.6652553905733,189.13409122265875,188.92620588839054,189.73958418797702,190.2297476483509,189.90907376492396,190.49364051036537,191.17391561483964,191.93220842303708,191.58203686401248,192.40238576289266,192.28627079585567,191.5935994228348,190.8544175089337,190.59666419774294,190.7404864593409,190.40820908313617,190.05296274460852,189.66396965505555,189.32793028466403,189.92218798259273,189.296698898077,189.5698933028616,189.86989408824593,190.54453508229926,191.24456842523068,192.21753869159147,191.38337597530335,191.3115652636625,191.5320821767673,191.2386265406385,191.29086583200842,191.77657583123073,191.29007128579542,191.62057700147852,192.4510768223554,193.37543350225314,192.5844622491859,192.6092861914076,192.4498753626831,193.02292109839618,193.08198516909033,194.02161174733192,193.0669920113869,193.5864412500523,193.613190703094,194.51908475905657,194.72734550666064,194.6802103552036,194.4142685001716,194.25335010280833,194.57404870865867,193.6710269767791,194.46985747059807,194.9814790650271,194.55587582988665,195.02798682637513,195.68276908667758,195.9276728113182,195.69376258878037,195.9608186641708,196.5145195350051,196.75320966681466,196.9495043857023,197.71295622363687,196.74102652212605,195.76219285000116,195.52429305575788,195.47316941060126,195.5932277222164,195.50909182662144,194.88473216630518,195.53206517919898,195.44173785392195,195.6171790282242,195.89367880113423,195.68794070463628,196.3150437050499,196.39804850285873,195.41998251667246,195.57381226634607,194.8876894749701,195.55670114932582,194.57055128132924,194.651175505016,195.36718223709613,195.54505194863304,196.26065418543294,196.386503376998,196.06671931268647,196.99994455557317,197.37816066434607,197.4375148434192,197.79508404666558,197.55994693236426,198.21801176154986,199.028643890284,199.53590045543388,199.93517297320068,199.80039677442983,199.0712717329152,199.7155052414164,200.17303252359852,199.35809092968702,200.11834043636918,200.93471822701395,200.43136006221175,200.60049852961674,200.28950788872316,200.24528074916452,201.03496699687093,201.4185788598843,201.80707176076248,200.88619266357273,201.3033632277511,200.88310774881393,201.8350494117476,200.89734698738903,201.592879738193,201.70039564277977,201.22928966861218,200.36397632863373,199.72703200671822,199.50691643496975,199.67972647724673,199.24481918197125,199.67123373039067,200.6616250849329,201.3678987636231,200.8429989023134,200.38416883675382,200.71125389030203,201.19957069167867,200.26667152857408,200.28980143880472,199.92296903580427,199.3491974021308,199.45793929882348,198.82324647996575,197.92697826679796,198.56415162654594,198.05955489957705,198.38849550206214,197.53794384049252,197.45698299398646,197.80990296881646,198.1601486587897,197.42030560877174,197.43894525244832,196.84295178111643,196.4481198536232,195.77999802911654,196.3979911278002,196.39966173656285,196.98549550306052,197.92349614342675,198.13795140618458,198.60407707095146,198.72330563142896,199.11945446161553,199.08762189373374,198.56445487076417,198.08032216178253,197.88379709841684,197.64026648225263,197.48440468264744,196.94681451283395,197.91797372233123,198.35195795539767,199.2239467711188,199.22276270389557,199.5742293666117,200.4949945360422,200.89436915842816,201.68117449618876,201.7882810747251,200.85909882374108,201.22213755594566,200.4173613023013,200.72819105209783,200.88358587678522,200.0647901627235,199.84740139590576,199.7569983219728,200.5160021535121,201.5082461424172,200.94610429927707,201.12508046906441,201.95867544133216,202.92700263345614,203.6443241550587,203.41441188612953,204.10956595698372,204.35372711485252,205.03132702130824,205.35175139596686,206.02503952849656,206.4797950531356,205.83018724387512,205.65093520795926,205.60918804770336,206.03233097540215,205.69717372301966,206.28003167454153,205.76374114956707,205.62907740613446,205.15769074531272,204.3510954407975,204.12518367916346,203.32359834387898,203.6933110090904,204.3868297468871,203.65135974809527,204.28174694767222,203.3500208798796,202.69190163956955,202.65512440074235,203.5081450091675,204.35909729031846,203.56347408890724,204.07753536151722,204.80011712154374,205.7378744785674,204.99532481003553,204.40764875989407,204.76756226923317,205.6688310378231,206.35707455826923,207.16938339313492,207.40555664524436,207.7480882173404,207.93422855157405,208.16222150344402,207.91741989646107,207.38882315950468,207.79307618085295,208.18677675677463,207.54871262935922,207.41164319496602,207.14977140491828,206.4719980005175,206.22827457869425,205.843661878258,205.84725067578256,205.5758965369314,205.89819982182235,206.70296103181317,206.3057357533835,206.86808001156896,206.87576430197805,206.863784651272,206.59426290448755,207.30276649771258,208.01958005363122,208.92390153417364,208.22768299048766,208.09125002706423,207.90447749057785,207.95430259872228,207.96953941509128,207.91283316351473,208.2304180613719,208.48322337679565,209.16544767701998,209.13753110310063,208.1741181705147,208.83931976230815,209.69773566583171,209.38449293049052,210.2049912470393,209.9917371114716,209.9633107879199,209.54272597050294,209.42308878153563,210.223812376149,210.13132864516228,210.72690719133243,211.67497754096985,212.10344400070608,212.46611120412126,211.90614082850516,212.1458689062856,212.34249180089682,211.7337908949703,211.074455532711,212.0417566401884,212.91077093873173,213.74555268744007,214.0588762043044,213.62788606947288,214.5604083989747,214.84943065373227,215.4046665779315,214.90883285878226,215.47827885765582,215.66312436480075,215.37933100480586,215.41235222341493,215.85785513045266,215.03803565679118,215.3058729819022,215.59250978659838,216.08520186599344,216.18014725577086,216.00960386777297,216.86979438271374,217.7658112095669,216.84870342025533,215.94058168819174,216.88057301286608,217.1528258677572,216.69086230546236,217.3176269205287,217.39920960040763,217.1870168512687,218.18331013293937,218.47294295113534,218.56178460409865,218.47343314252794,218.88362136716023,218.0782663268037,218.54138952447101,218.77981206262484,219.42814751900733,219.74294058931991,220.07562836958095,219.50649514002725,219.45888091856614,220.42779657850042,220.07568339258432,220.11124446662143,219.36060335254297,219.68808787688613,218.78379639191553,219.33198923803866,219.32818903494626,219.65796728385612,219.90324914548546,219.41831972682849,219.89653111528605,219.34182346379384,219.5101492740214,220.17456082254648,221.10613286169246,220.3243707390502,221.25166773376986,220.90989389969036,220.80018276907504,220.70274076843634,221.1969765042886,220.37607924221084,220.05748928291723,220.44180630892515,219.99086325103417,220.16286193905398,220.53494972968474,220.9056037417613,221.55386854382232,220.7264218442142,221.1507267882116,221.6523721292615,221.51842165132985,222.27683533215895,222.77740346081555,221.78189810132608,222.01463025901467,221.3080968046561,222.29828588105738,221.51724590966478,221.81281815981492,220.86435071378946,221.4199674865231,222.15421119472012,223.06209124438465,223.07129456894472,222.36323116067797,222.23653872217983,222.48586897784844,221.90137680387124,220.96568752918392,221.8118680724874,222.72279415559024,222.6543204425834,221.99388854159042,222.19863816490397,222.55770391458645,222.99637944065034,223.96561718080193,223.8902873103507,223.13548035593703,223.46208818769082,222.93363231187686,222.9572556023486,222.3458952140063,222.94248268846422,222.3633019584231,221.57538424665108,222.32585101993755,222.65991774899885,222.4517203234136,223.41929666744545,224.40668659703806,225.12038686079904,224.25782883912325,223.72184257442132,224.28566675866023,223.67242910945788,224.35447205556557,225.34220693819225,226.2834072271362,225.71043564146385,225.2851636740379,226.191068851389,226.3964481013827,226.55049841711298,225.77275905385613,225.74292304785922,225.3854734133929,226.15247624879703,225.96319057093933,225.97452558856457,225.83877310110256,225.30411637946963,225.85207324288785,225.01423971168697,224.77111550280824,225.5600652154535,225.34816341055557,224.6546902055852,224.37802595924586,224.35715907486156,223.69893533363938,223.16986086312681,223.48600321589038,222.88829881697893,222.63790952134877,222.94287917390466,223.24180047539994,222.94109073281288,222.38123678555712,222.34499214263633,222.28554479591548,221.9459645175375,221.573873443529,222.29392888117582,223.20052714366466,222.53697431879118,222.42599051538855,221.77789812162519,221.54033476533368,220.79019601969048,220.41675587790087,221.21528975153342,220.43996598897502,220.20608868263662,221.1776191056706,221.3502640160732,221.17556778155267,221.3337642364204,221.1965825688094,221.42651452496648,220.67889295425266,220.00905003258958,220.6410357435234,220.0771723734215,219.14436673466116,218.51698271883652,218.0431844657287,217.7563096806407,217.80891759507358,217.07541308086365,216.44039521412924,215.94446303742006,215.22322936775163,214.80556191829965,215.3241168865934,215.07971047237515,216.02236014418304,216.54579013073817,216.26038838922977,216.6497857682407,216.96224151086062,216.59075522329658,216.88694651192054,216.11729360744357,216.20423884131014,215.40651855058968,214.669747678563,213.96380860358477,213.81559930415824,214.11195657448843,213.8244819417596,214.18519651750103,214.95995549857616,214.75963754858822,215.41126012895256,214.7426510094665,214.91998217627406,215.77577926777303,215.93225424503908,216.21280783694237,215.31222304422408,214.511657403782,214.47754752170295,213.62904938217252,213.68593796156347,214.3812078149058,214.6606105263345,214.54839077871293,214.35436736233532,214.92586588766426,214.19106393586844,214.7269854475744,214.20332686044276,213.76085637835786,214.4088634615764,214.40246891230345,213.97066457523033,213.23943873587996,214.00978625332937,213.83945888094604,213.7289708359167,214.7208678489551,214.43609192036092,214.5643285708502,214.16110408725217,215.0780819542706,215.38783424627036,215.74833992822096,216.30960960686207,215.69868821417913,216.5669321338646,216.63532595848665,216.83414380112663,216.77829152531922,216.2121080136858,215.32385746063665,214.6435285215266,214.29335190262645,214.74830643320456,214.75490031950176,214.96534350374714,214.7430704748258,213.8754299385473,213.07576013170183,212.96385904215276,213.50417869491503,214.06358448881656,214.3289886340499,215.13523965049535,215.49991180561483,214.92678336519748,215.21569265890867,215.26250703865662,214.420179029461,213.9376170723699,213.18918245937675,213.13201688276604,213.6930769411847,212.74904129467905,212.91418204875663,212.90825016284361,213.32753294194117,213.7329106288962,213.16327212704346,212.4473873898387,211.89699059678242,211.25355810299516,210.35742081981152,209.73284592060372,210.41092192055658,210.45821689767763,209.688220909331,209.9329532342963,210.1293676723726,210.17803335096687,209.19980574212968,209.8051751977764,210.25600445223972,210.3150909356773,210.68118294188753,210.3538698926568,210.71821101754904,210.54748690593988,210.96183816390112,211.15167181706056,211.23554219026119,212.1682955287397,211.22137774154544,211.78756446531042,211.61466634925455,211.80667816800997,212.18239018367603,212.09548163693398,211.24093508999795,211.63030614424497,211.17843160312623,210.21755281928927,210.63468596106395,210.11489373864606,211.09115412971005,210.21388543443754,210.53361552068964,211.00864042900503,211.4159189965576,211.29877189313993,210.4281134516932,210.57769446680322,210.8730631726794,210.7785698529333,210.80124506400898,211.46355263562873,211.72008867748082,212.22448252653703,212.28443761030212,211.47805861616507,210.98750370787457,210.51770614739507,210.918236262165,210.91450140904635,211.69795359950513,212.01538153830916,212.3475504554808,211.9324175361544,210.9407777749002,210.2147209350951,211.19301594188437,211.09430130617693,211.63169569335878,211.89911089045927,212.13103594398126,212.57112773833796,212.03115493245423,212.3178732395172,211.83364231092855,210.9530068305321,210.6865917337127,211.26918714446947,211.88567275647074,210.9965239544399,210.96599607076496,210.1865231595002,210.87360551208258,211.27193820197135,210.65125678665936,211.0605216929689,211.85124694136903,211.3184106447734,210.72455946868286,210.56255496758968,211.28189608454704,211.31238465150818,210.31480419356376,210.3620769153349,211.27930281264707,210.49678739951923,210.3521984461695,209.5058580529876,209.5115478928201,210.4213675451465,210.0557433879003,209.81416992098093,209.63471835944802,210.5314766750671,210.17660704813898,209.90832826960832,210.58170800516382,210.08944353461266,209.52385807270184,210.37214891565964,209.59819910209626,210.13323276862502,210.1521493755281,210.7699671499431,211.3004015092738,210.49524635635316,211.10594214918092,211.32527594873682,211.24910001829267,211.02051564771682,211.83739060303196,211.15914944699034,210.619289688766,210.53065827814862,209.86270183045417,210.77812847029418,210.1834775931202,211.10272620338947,210.71332470094785,211.13848365982994,211.33069609152153,211.1143426191993,211.87035931739956,212.38538034446537,211.47412517108023,211.40066563664004,210.9977506045252,210.49147025309503,210.79979619709775,211.59058777196333,211.28032951289788,210.66742996266112,211.62850792426616,211.2481697211042,211.8971431357786,211.3952161935158,211.44231530558318,211.6021390547976,211.61321904649958,212.387531994842,211.46200936986133,210.97438034042716,211.49884537328035,211.22882211534306,212.07413401128724,211.2808620701544,211.34688293654472,211.66722258878872,210.91372910281643,210.31049834704027,209.35851855017245,208.80594598408788,209.05693745287135,208.461659331806,208.57176683237776,209.24872185196728,208.40739618754014,208.74667019722983,208.75426097679883,207.9498810628429,207.78122619073838,208.241451760754,209.08576779533178,209.54997498821467,209.70440091425553,210.59330624248832,210.62347972020507,211.15342986769974,211.41407220391557,212.32134952535853,213.0093248616904,213.57257782062516,213.29352060798556,212.38435730244964,212.70768412435427,213.64096331596375,213.15147712128237,213.32277691364288,213.2759210965596,213.42268721060827,213.44307612255216,212.44545221701264,213.04256105888635,212.44099746504799,213.40149508509785,214.08178155263886,214.39325356669724,214.24090497707948,214.37240293622017,215.26571213454008,214.33357522636652,214.59483759384602,214.9503947403282,215.8939276309684,215.26542107993737,214.92734217224643,215.09678425313905,215.19323422107846,216.11865782737732,215.22527529112995,215.7647837321274,215.89094185037538,214.91843074606732,215.1399871846661,215.4992044060491,216.24113147938624,215.72266511479393,215.82676877407357,215.48003942798823,215.69589812820777,215.72809522319585,215.5421519698575,216.40059992205352,216.4173872792162,216.04904008703306,215.10737330513075,214.13654739176854,213.41358960140496,213.61841566860676,212.7215733928606,211.85624495567754,211.4272504816763,211.80507359234616,212.0838929573074,212.1868919627741,212.70326658617705,213.07962682610378,213.4715436589904,212.77806145511568,213.48210991406813,213.53683398105204,212.67197288712487,211.8461411818862,211.9447422591038,210.94817227637395,210.52150561241433,209.8614811366424,209.4184571863152,208.70044399192557,209.57375530386344,210.41455441294238,209.83987576002255,209.10541987139732,208.7151940241456,209.3942091492936,210.3923847465776,211.36188794858754,211.94383761426434,211.43941450677812,212.328089307528,213.10038951830938,212.43778141308576,212.4739159871824,213.22993962233886,212.2740870323032,211.55440707411617,211.38649068959057,211.9180213259533,212.7235742234625,212.48316121846437,213.18574646441266,212.2098298287019,211.35067637683824,211.73912443500012,212.69048276124522,211.7638632953167,211.7638830738142,210.88433479284868,210.99588784901425,211.95059170294553,211.15917113097385,210.27787448838353,211.03329834109172,211.3658224325627,212.2438775980845,211.91617737803608,212.77782546309754,213.4088851250708,212.58611392602324,211.90978833986446,212.13136378163472,213.11261613713577,213.43211911106482,213.23854400077835,212.44418272236362,212.20313037419692,211.3821064485237,211.76432270742953,210.81053850380704,211.73056267527863,212.46409455873072,212.5399598395452,212.60945774056017,212.7124233529903,212.95054402435198,212.42684615775943,211.96347137261182,211.7186109693721,211.07926412811503,210.77182826166973,210.52961687278003,210.47830103663728,211.03429112304002,210.73455973202363,211.0450219316408,210.38425914524123,210.4329435727559,209.57258390262723,208.60150633007288,209.36979520646855,208.76541557349265,209.32639871304855,210.30424140859395,211.04987180558965,211.75167471263558,211.92566043976694,211.46198983630165,210.92970389407128,210.21133264200762,209.65373896295205,209.53741578478366,209.38625353202224,208.43625583546236,209.20016455696896,208.63333316659555,208.8120738612488,209.80472264112905,209.98861693078652,209.87682852474973,209.005759190768,208.71317640691996,208.91296555101871,208.1516000367701,208.47301953751594,208.3251915834844,208.62610363261774,207.86795459734276,207.78916138177738,207.64008015487343,207.91036345763132,208.6319354516454,207.92528877034783,207.69978889264166,207.45997540093958,207.2014781218022,207.28876046231017,208.0172216054052,208.61495925858617,208.45408554235473,208.70953058404848,208.01751300878823,207.80466589238495,207.1246308563277,207.79756456566975,208.44644993543625,208.5890931719914,208.16341176396236,207.31335055967793,207.06685786508024,206.76042297342792,206.43522522458807,205.8073960589245,205.89751971699297,205.0702906702645,205.59916989458725,204.6569574107416,204.17728330474347,203.35663180053234,202.4242284167558,202.72590816486627,202.93379748938605,202.249261663761,201.73479077545926,201.72274330630898,200.95957572897896,200.2887928984128,201.06815235875547,201.20386239746585,201.26242982549593,200.70892485650256,200.59638056904078,200.2021545371972,199.94453985383734,200.43716186471283,200.26357793388888,199.57272456772625,199.92983898939565,200.58487405115739,201.35241618938744,201.03615635214373,201.29965329449624,201.06201743939891,200.2010798607953,200.49990016641095,200.72400688100606,200.5291133224964,200.70101275807247,201.2482120655477,201.0596658932045,201.75478466879576,202.1172616961412,202.1783674149774,201.90677138324827,202.33814870752394,202.3069280460477,202.50847805151716,202.358291039709,203.1094191642478,204.08089082455263,203.24855450121686,202.57706261985004,202.9235441335477,203.7166545521468,204.39262774167582,203.99261873262003,203.5070412904024,204.21053857775405,204.91611631773412,204.19060281012207,204.6825617835857,204.68275146465749,204.70989065989852,204.5092784455046,203.7542274966836,203.3873055265285,203.53952027950436,204.01477262936532,203.70431048749015,204.35935596004128,203.45077627664432,204.2090977882035,203.6494438382797,204.22275458322838,204.8095844532363,203.84577462356538,204.5956598785706,205.48569657932967,205.52906824741513,206.37913626385853,207.16325513552874,206.7657007239759,207.34355957712978,207.04359474172816,207.94152680784464,207.5493188383989,207.4388253558427,207.11989624612033,207.10416702739894,206.27206120174378,205.58417880441993,206.306134857703,206.82609430607408,207.00988264521584,206.97672309540212,207.5459379935637,206.89418717939407,207.14811699511483,207.74584286892787,207.8661479409784,208.3804165176116,208.15966119384393,208.5468163448386,208.55029641324654,208.95247580716386,209.29831756697968,210.1226819125004,209.1677910797298,208.19816192099825,208.86791040701792,208.22724174661562,207.8425304540433,207.9764996925369,207.8703122427687,207.07547143567353,206.33753087976947,206.06497755181044,205.9884741618298,206.43452228000388,207.1076140385121,207.75868987012655,206.78038134705275,206.6405434240587,207.26978082349524,207.82918876456097,208.0115862363018,207.6899026031606,206.90793884079903,207.592901176773,206.97279901849106,206.03126145759597,205.127828725148,205.8795071025379,206.80741232214496,206.15399703476578,205.69131361693144,204.86614611791447,205.56040504435077,204.6166410637088,205.20016774954274,204.6389789879322,203.94533908599988,203.648046517279,204.60100864525884,204.07019183272496,204.81662935530767,205.33647265378386,204.62999035418034,204.68267465243116,203.89808319415897,204.82047218084335,204.93054022826254,204.6306103770621,204.81404459523037,204.1870009000413,204.91059110173956,203.98215317353606,204.0911188623868,204.92741912137717,204.6379613992758,204.3943309453316,205.08901343820617,204.5159720745869,204.23699518153444,203.60557753685862,204.44660072494298,203.93726684851572,203.40245700394735,203.2023612265475,203.5812297044322,202.69818711467087,203.2348549766466,203.50909129576758,204.1108598378487,203.798082921654,204.77728354325518,204.52261636406183,203.76192734995857,203.23593629850075,204.21618573367596,204.38642819412053,203.6075582462363,204.49614951573312,203.89249651366845,203.05014689126983,203.1885635103099,203.20618959795684,202.89449262525886,202.2058630734682,201.70394761301577,202.06255284836516,201.439473581966,201.06717793783173,200.42613322706893,200.05158625217155,199.81048851227388,200.0328021175228,199.56461775908247,199.75218625320122,199.073761517182,199.45914771640673,199.36878730310127,198.60641598887742,198.08903083065525,198.70379292219877,199.11813913891092,199.10558309452608,199.67482714215294,200.27463060524315,200.19092555018142,201.1242273026146,201.4363813297823,201.89969381457195,202.45233995327726,201.96067938860506,201.10181546630338,201.89711492648348,202.6648924620822,203.54608866292983,203.09493733663112,202.19722954928875,202.45169327268377,203.130030952394,203.0216876338236,203.89587737433612,204.3098670495674,204.46472259238362,204.26481796847656,204.74238079274073,204.27633088780567,205.19138755230233,206.09261960629374,205.21477316925302,205.97363826725632,206.55830484814942,207.29338902933523,206.77914584847167,207.49499087501317,206.9718397501856,207.49338404880837,207.49305121833459,208.20420490624383,208.38525490881875,207.88284467719495,207.99587394297123,208.9434948922135,208.96546847000718,209.37412966508418,208.75698483828455,208.86522607319057,209.8220204669051,209.79153971280903,209.24128621816635,208.89675512723625,209.09247742360458,208.15285036712885,208.16871089441702,208.6343531915918,208.38465027604252,209.2810611203313,208.73437082534656,207.7734237490222,208.7587365033105,208.84681497421116,208.66857004258782,208.51017640531063,207.9587552221492,208.03414751123637,208.4241361664608,208.7603207011707,209.67911493498832,209.57713222736493,208.74565671524033,208.46336439438164,209.4604237275198,210.39570510247722,209.7608318789862,209.3187256627716,209.1063882065937,209.76875343406573,209.73611714877188,210.50585201010108,210.66057331394404,210.43249539798126,211.05791221093386,211.36891125468537,211.57692450517789,211.4672880838625,210.56987519469112,210.14990292256698,210.76826314581558,211.25422109803185,210.51936335628852,210.18280164292082,209.5497505464591,209.94500275654718,210.14096967456862,210.49816293735057,211.43640651088208,211.7293468308635,212.08180430531502,212.32399869989604,211.57616070238873,212.24336156249046,213.21300891507417,212.91203659772873,213.11462936876342,212.9198899497278,212.89671871392056,212.07290029199794,211.3007153091021,210.7884890777059,210.37772354390472,210.69410829572007,210.4893081332557,209.56221993314102,209.88900064723566,210.478591918014,210.2203626516275,211.01816796138883,210.27825824031606,210.44790404941887,209.5094283008948,209.29053014284,209.72837022319436,209.222824647557,209.12577604316175,209.3501197937876,209.96028994815424,210.2949089347385,209.92484662821516,209.93852734100074,210.13815027521923,210.74743468267843,210.0732052088715,210.36212356993929,209.6654261383228,209.54747160105035,209.2899731900543,208.49563344335184,207.49818474799395,207.19578849337995,206.29994603991508,205.70474997907877,205.83886797027662,204.8477808847092,204.01059015328065,204.68780298298225,203.87837538029999,203.24319184664637,203.61714161979035,202.93359195813537,203.49298693193123,202.62274801405147,201.76072839647532,202.6314867809415,201.8776594758965,201.93859711941332,202.72790965577587,202.2291265022941,201.86344864591956,201.1195990764536,200.93350406829268,201.0202336376533,200.29527856921777,201.00426646042615,200.68425327492878,200.36108629591763,201.03520647762343,200.31164362328127,200.30033702868968,200.8086339798756,200.74794522253796,200.68373409006745,200.80711434734985,200.20881962729618,199.36506676813588,198.95014517987147,198.19956745347008,198.68813225720078,198.8778210314922,199.37558785360307,198.5253190738149,198.3047491936013,199.0660266801715,199.98019452113658,200.85767044918612,201.82003263011575,201.31401218287647,201.46895310794935,201.15207392908633,202.08497942239046,201.13162331841886,200.9647722458467,201.3134481702,200.4788551563397,200.4441360491328,199.49014549562708,199.99795652972534,199.08224227279425,199.92440091911703,199.57364257844165,200.43780045490712,201.15108798071742,201.2469291165471,201.67291529197246,202.35020846920088,202.24934076191857,203.0734534561634,202.80128450132906,202.82933662785217,202.13876062631607,201.79368839319795,201.92125691380352,202.79751450521871,203.3948561977595,204.3014851422049,204.05215510120615,204.5221475935541,203.75457100011408,203.46143159177154,202.64830771135166,201.8327958835289,201.16384637216106,200.9558815085329,201.847585439682,202.57458216743544,203.0710936691612,203.4889422240667,203.13265144173056,202.35527415946126,202.07002387428656,201.43795193824917,201.2597862314433,202.20196906663477,201.73473354289308,201.58861584449187,201.64921818627045,201.56646937830374,202.54442401370034,202.95842453511432,203.34116018982604,202.39136427640915,202.56268943706527,203.304431498982,203.0511639728211,202.19441842427477,202.10054688248783,201.46427394729108,202.0791099141352,201.3880240311846,200.9422175185755,201.17524666525424,200.43408479029313,201.07808927306905,200.7210219237022,200.89033134141937,200.16655661305413,200.07735089072958,200.288912685588,201.23986180359498,201.85155690927058,201.8617662335746,202.84762278571725,203.26070472737774,203.71856346307322,203.0061082164757,202.18936317507178,201.95066634379327,201.05397262284532,200.30721026659012,199.34605545783415,199.88835935061797,200.28240722371265,199.88835417153314,199.3218084331602,198.49357662536204,198.11047457018867,198.51526340376586,199.19662788137794,199.5706155677326,198.96946261497214,198.97261518752202,197.97503905696794,198.03198404284194,198.8310963739641,199.64820646680892,199.4766127569601,199.8594591282308,199.8370130774565,199.94880989007652,199.37846638588235,199.24427394242957,198.5014833319001,199.21481094369665,199.52777384920046,200.15552558004856,199.3174481629394,199.8565380354412,199.6887811627239,200.65875085350126,201.63215066865087,200.97268031910062,200.45493475766852,201.08044648868963,200.9175565605983,201.12103548739105,200.24129680963233,199.33710104273632,198.7279399796389,197.98456233460456,198.15496168425307,197.3726705731824,197.97046373831108,198.19369358057156,198.4238515337929,198.8426089254208,198.42326074279845,197.5707491580397,197.1862763701938,196.58299194136634,196.6762312380597,197.4723783894442,197.11819646693766,197.55586710060015,196.69044160749763,197.1456747497432,196.694520724006,195.8193841446191,195.47075150720775,195.44050818262622,196.12151003815234,195.55399001808837,194.80144913773984,195.37720378115773,195.27312062494457,194.31718488410115,193.83847299031913,194.2665156261064,195.2572280387394,196.17815133417025,195.37878779647872,195.6858404823579,195.89771953504533,194.92353760357946,195.1766739943996,195.43086358020082,195.87452802667394,196.79283923190087,196.44209066964686,197.05454207211733,196.3995156758465,196.29162183310837,196.6157276229933,195.69630981003866,195.31684121396393,196.25284352060407,196.2282351423055,196.88655802467838,197.58401983091608,196.78082554228604,195.90194214787334,196.54768363619223,197.12379155866802,197.91812402708456,196.98112217057496,196.4928683200851,195.94014048716053,196.15400774311274,195.84547061519697,195.5810074042529,195.54179886728525,195.42773962998763,195.50254811439663,195.87327801669016,196.11844815220684,196.38032559631392,196.35276667261496,195.85561466496438,195.17177922604606,194.58327680872753,195.16305941715837,195.30292460415512,195.51403306657448,194.66260177269578,194.45408298494294,194.54127518553287,195.3566265949048,195.52868210105225,195.39330417104065,195.77811580849811,196.18715798994526,196.8198659461923,196.87217778153718,195.96059439284727,196.08780715754256,196.82101746089756,197.20300166029483,198.0593832489103,197.2844587075524,197.1463529029861,197.8833568058908,198.254897241015,199.03133748238906,198.67731985682622,199.46228680061176,198.5253338846378,198.14908023597673,198.53988193301484,199.2614271552302,199.51272782497108,199.38765445258468,198.6614881232381,198.38099034968764,198.3799412213266,197.98991307942197,197.51256895111874,197.06358988024294,196.86978383082896,197.4573722188361,197.18109596520662,196.738846400287,195.8159050247632,196.81304362649098,197.08116861013696,197.85821087798104,198.07261763419956,198.19090413721278,197.61847500875592,198.07451488683,197.71550364093855,198.18272486608475,197.6572767351754,196.88982858415693,196.2662716191262,195.6267494079657,194.84165206039324,195.47162606660277,196.08866349887103,196.63761008670554,196.04574534436688,196.12209351919591,196.548864223063,196.63992184074596,195.8443111255765,196.42661088472232,197.34021064732224,196.6009506112896,196.96820720052347,197.73441657423973,197.38969648210332,198.0179254929535,197.90588143886998,198.5969434021972,197.99109879368916,197.21422001114115,196.95207289000973,196.73626214731485,197.18842346873134,197.4704236346297,197.43358567776158,197.9056712607853,197.84036031272262,198.62600739719346,198.63548100646585,198.29114090651274,198.59259383520111,197.84282717155293,197.53661427414045,196.91051939781755,196.0622756346129,196.44699320476502,196.8879741905257,196.71649927971885,195.8732405793853,196.27381959138438,197.0797039042227,197.74235642841086,198.48324022674933,198.60251363320276,197.99006612645462,198.75860720779747,197.8181729693897,198.4492912311107,198.53479860024527,198.79766616085544,198.8150615268387,198.39862363226712,197.80864044139162,198.22221889859065,197.86796429613605,197.0466106426902,197.23803698504344,196.36275369860232,196.74078217614442,197.703246998135,198.30525799561292,198.34685472445562,199.19063319731504,198.87572003435344,198.74802329670638,198.50558882718906,197.82492630416527,198.65769440634176,198.49013279145584,198.17601236281916,198.50025803409517,197.92727912636474,198.07200328912586,198.66216872027144,198.804421314504,198.8660854352638,198.68731336062774,198.03881614655256,198.6593624386005,198.48883981443942,198.37597640231252,197.91603329731151,198.2588001289405,198.87119985045865,199.56830371310934,198.6784000680782,198.0154792475514,197.72130262013525,198.62458683224395,197.72987627005205,198.43305223667994,198.6936975629069,197.82209323020652,197.22764656180516,197.2406136551872,198.19149870844558,198.3114834073931,198.10411923844367,197.70625739451498,197.77830535918474,198.0074985511601,198.4650175096467,197.9400829556398,197.7861547814682,198.49452109448612,197.79088833089918,197.39467045478523,198.38098229654133,198.23336582584307,198.2494954066351,197.85643189959228,198.689904934261,198.34095038520172,198.27519307285547,197.32459828769788,196.91569762583822,197.28718750644475,198.2581708296202,198.23703676182777,197.578597758431,197.25893206708133,197.38819117564708,196.88995283748955,196.759551723022,197.4842833140865,196.999455365818,197.4687323877588,196.4835982429795,197.4038548511453,197.31212069606408,198.17839801544324,198.26396976737306,197.61016887240112,197.8683268185705,197.06570838810876,197.33152548922226,198.322983416263,198.0872576246038,197.7591326115653,197.03303255094215,196.96091672033072,196.5894078016281,196.20580174215138,196.7945588133298,196.2995406333357,195.82319484231994,196.7710590902716,196.12379830982536,196.81272453442216,195.92601554561406,195.7473817053251,194.78042484261096,194.33023508125916,193.63769746152684,193.35340061690658,193.3271745298989,194.10664490237832,194.40898262383416,193.7742099761963,192.98001973563805,193.03799781156704,193.42324542580172,193.60306367604062,192.68223797902465,192.58492683572695,191.7228586212732,192.34893417498097,192.06745295552537,192.87426830315962,193.2303393855691,192.39503985457122,193.25005954504013,194.16819118196145,194.81180317839608,194.32539054797962,193.82093746215105,194.22703323792666,194.11145863868296,194.18159170541912,193.78211545711383,194.0574066429399,194.17592445807531,193.69434468215331,192.80610217619687,192.92820452759042,193.09631070075557,194.07914707018062,194.11469209147617,193.31259819306433,193.95920764794573,194.10434868233278,194.8929585297592,194.54003553790972,193.90656232880428,193.86080342298374,193.4156812368892,194.03827115008608,193.09388824133202,193.197536688298,193.44867907557636,194.11613825988024,194.87456701463088,195.78927903203294,196.2496487093158,197.09126652451232,197.24013471463695,196.6981576080434,197.6608279417269,197.16941481037065,197.2242442537099,196.71516563463956,196.08090432779863,196.95473796548322,196.12394886882976,196.22596530709416,197.04577647102997,197.5614407346584,197.0749152819626,198.06025623576716,198.7317125624977,198.9007981196046,199.46879347972572,199.30575289204717,199.97975315200165,199.49901139223948,198.7370411735028,197.76438739756122,197.09030894888565,197.11952714901417,197.71435278700665,197.69300816999748,197.96638808585703,197.22287076385692,197.40835043881088,197.79930623061955,197.29688044590876,197.5164075596258,198.35179010266438,199.00116749247536,199.15600483352318,198.8956558261998,199.66324610216543,200.46362873213366,200.33728058682755,200.1533120982349,200.6292566359043,201.29363371245563,202.24525578925386,203.14952551852912,203.74048087606207,203.18199594225734,202.42760508833453,202.80055841989815,202.9648862783797,202.92403523344547,201.9589624251239,202.34963543340564,201.8163067959249,201.31498356023803,200.70352681260556,200.02804047986865,199.6808072323911,199.82323012966663,200.34785402333364,201.13137439498678,201.68159821629524,201.8908132375218,202.65756308007985,203.10573931364343,202.36492829024792,203.0667271069251,203.34296678053215,204.23310092277825,204.6827265280299,204.643766828347,204.8797122198157,204.90148678980768,204.73170958645642,203.75856881355867,203.80538964131847,203.5826017577201,204.1274179359898,203.48237303830683,203.9589607506059,202.97295482456684,203.79677058802918,203.45864108903334,202.88354570046067,202.54511526273564,201.999293028377,202.6449653962627,203.5801484263502,203.93285740585998,203.2986872685142,203.121471401304,202.94315000949427,201.95886200480163,201.46556567260996,201.76053444389254,201.1518129319884,200.80357977421954,200.46592888375744,200.9982138662599,200.3305739806965,199.85091119352728,199.3263347838074,199.58351939590648,198.69573914492503,197.87148676719517,198.5909066675231,199.03882844373584,200.01314992504194,199.63913044845685,199.48901405138895,200.10790272057056,199.724642818328,198.92714646132663,198.7134084450081,197.86186726717278,197.47639560047537,198.14408063236624,197.5184407089837,196.53745825588703,196.67821175651625,195.91184633178636,195.34984137536958,195.7227804241702,196.4627003413625,195.8525247061625,195.93295041145757,196.08244535839185,196.620452826377,196.87421418586746,196.93655179534107,196.6551187983714,196.02372161252424,195.1914954134263,195.89991360297427,195.54315924691036,196.16603053780273,195.70509663550183,196.32185867708176,195.81987334042788,196.55805074423552,196.89626589603722,196.7484198641032,196.45635731099173,195.6561970859766,194.99994629062712,194.06350656645373,194.66184629313648,194.57038670685142,194.5484742447734,194.81465094350278,193.93436866253614,194.00375656876713,193.3658521901816,192.38290550140664,191.81624469021335,191.94225941924378,191.02116438606754,191.5678979596123,192.567377676256,192.5868723518215,191.9237357559614,192.67612904589623,191.8440682166256,192.3012930462137,192.34761979430914,192.38851371221244,193.23460780922323,193.2498229923658,193.85316254477948,193.90366632211953,193.46418219665065,192.8954474371858,191.91739918664098,191.9366136509925,192.01723443344235,191.36320791393518,190.3989040083252,189.65051963506266,188.74450779799372,189.15551816578954,188.17038767132908,187.84320917585865,188.24755436182022,187.57442248845473,186.99808627786115,186.65064942790195,186.70872660307214,186.33706756308675,185.73025436419994,186.1520528816618,185.82726780697703,186.50208835536614,186.68362071504816,187.108247989323,187.12404846958816,187.52133561018854,186.86619660444558,187.30140393413603,187.17003315407783,187.3763442663476,188.28078683419153,188.69269669707865,188.50447499752045,187.76500853523612,186.7893399177119,187.16547480644658,187.42612009309232,186.8926665498875,187.80146205425262,188.10195370437577,188.94583081128076,188.90711905341595,188.22930976282805,188.0737977172248,188.17429588735104,187.39835140667856,187.18042218592018,186.89003107883036,187.11411262163892,187.89934922754765,188.78799234284088,189.6219537234865,188.99346560100093,188.3115126839839,189.1770838103257,189.00034127850085,189.14743844838813,189.2688663378358,189.00155739486217,188.5548877203837,188.13526218617335,188.72397775016725,187.97251752438024,188.81095625599846,188.65344623243436,188.49360963283107,188.9930333928205,188.58062351122499,189.2115522394888,189.96568222390488,189.52086597075686,188.74637932376936,187.91099475044757,187.73769830120727,187.68455261271447,187.264868513681,186.481781270355,186.15019123815,185.94760107574984,185.850956780836,186.4100464237854,185.8911812468432,186.87487266771495,185.92282958189026,185.76168589666486,185.17119177104905,185.7566284299828,184.8940540929325,185.254390490707,184.62603024439886,185.24679189827293,184.7367735998705,185.4004122009501,184.81488525215536,184.9890482914634,184.35771865863353,185.16666596010327,184.25489254761487,184.92484370153397,183.9825103408657,183.16562818689272,183.90716521488503,184.78818118339404,184.92152185318992,185.255200272426,184.28223488852382,185.09725909819826,185.83087991457433,185.41348830796778,185.60537638003007,184.78072794293985,184.92726821359247,184.20580670703202,185.1829382176511,185.29688317282125,184.74518472747877,185.1860287282616,184.39947012253106,185.37456891033798,184.83567828405648,185.5005480791442,185.04573133168742,185.27477683825418,186.27423434285447,186.30340974777937,185.91070153564215,185.55222809966654,185.8528480543755,186.1151572978124,187.10747831966728,186.50227132067084,186.04514667624608,186.05446969205514,185.2325763781555,184.37705705221742,184.126926981844,184.47331384103745,185.21223315503448,185.3374545876868,185.00895477179438,185.33363365288824,185.6771596991457,184.88977056369185,184.0233478131704,184.8862346704118,184.28989745862782,183.81973881693557,183.24504357855767,184.17708905227482,184.13938575191423,184.11923799477518,184.88467926392332,184.55742963962257,185.31294929422438,184.65955493366346,185.29952739086002,185.48626241460443,185.78883172385395,186.04482836835086,186.3313074996695,186.2784179886803,185.92533090850338,186.04578243894503,185.55682876659557,185.73867803625762,185.956669929903,185.20774791156873,185.0863958648406,185.6083568725735,184.78940127277747,184.9289546837099,185.74232505820692,185.3970000864938,186.28306714678183,185.72509872028604,186.0533171663992,185.91906747128814,186.57739358535036,186.17165204090998,186.9210881330073,187.79168688924983,187.73863360425457,187.22908776951954,187.8532617650926,187.2510282653384,186.82298783492297,187.20976540073752,187.2484563603066,186.71542306849733,187.36437929281965,186.77715253690258,186.1263083689846,185.283433905337,185.22546018101275,185.15718782087788,184.22789449756965,184.83014783263206,184.70853003161028,184.89796062745154,185.3603986823,185.56048172991723,185.01675421884283,185.57621699385345,185.12967141345143,185.5695386598818,184.59780827490613,183.90323004638776,184.5668629272841,185.45980048878118,185.68793611135334,185.03779778210446,184.5745256249793,183.62825663760304,184.4859854434617,183.8400555984117,184.05894089164212,183.08001250540838,183.35467589553446,184.26631982903928,183.5001441957429,182.57169786980376,183.53485249495134,182.59291483089328,182.23244239203632,181.23561601806432,180.92504472704604,180.15831645391881,179.61444178503007,179.67887813597918,179.01039559859782,179.4129651589319,179.96065475186333,179.1706121256575,178.68687412003055,177.88470302149653,178.30917771859095,178.73177362093702,177.94919007457793,178.35229584993795,178.52776034316048,178.5367460292764,178.04026311961934,177.08825420308858,176.35026831552386,176.5937338215299,175.61007313616574,174.8903896077536,175.49626043718308,175.5948303877376,175.07916026189923,175.58831274695694,174.75911923823878,175.16069525526837,175.00315394997597,174.7461785939522,175.51398043707013,175.4146589995362,175.61451346613467,175.72656585508958,175.09739363426343,175.2047591819428,174.2922960696742,174.01484895450994,174.37262502172962,175.17155052768067,175.57112635020167,175.10297337407246,175.76430021226406,176.25048700068146,175.35033285897225,174.46193080954254,174.87496557366103,175.859161936678,176.6390594318509,175.83574083307758,176.02220494486392,176.52834969805554,176.70763814542443,175.79701715195552,176.61625983566046,177.16059528617188,177.86326405778527,178.726376991719,178.46798775577918,178.45846585324034,179.02088224794716,178.68803577916697,179.18885136861354,179.58004797436297,179.841060441453,180.6024492420256,180.82460751011968,180.79101129760966,180.81234744424,180.0302155362442,179.4966226639226,179.1749850702472,179.8165577808395,178.99120949395,179.04447126900777,179.91963056707755,179.49742103321478,179.8264044430107,179.3670380995609,179.56098789116368,180.1669530365616,180.9718972388655,180.9450279995799,181.07289508916438,181.59474768815562,181.52840876812115,181.29527449794114,180.923104416579,180.96229392383248,181.2974323052913,181.66697988379747,180.77355517167598,180.39203690877184,180.64060504036024,181.39763917448,182.10291751567274,181.7308419556357,182.50139772426337,182.34767046757042,182.02375539857894,182.43054929561913,183.20273835165426,182.67135161487386,183.56897303834558,182.87024687230587,182.30270234309137,182.57074660761282,182.7179626035504,183.59643367910758,184.35331914620474,185.05045815790072,185.1482128049247,184.84358516335487,185.59292505215853,184.74893299629912,185.28745055245236,185.5391336348839,185.67267316021025,186.10919215995818,186.07771974382922,185.64580220216885,185.2078305548057,184.63454801030457,183.7750846813433,184.17936194501817,183.7183386841789,182.7654986702837,182.1612272146158,182.48516415013,183.3846371229738,182.84104141267017,183.12005179468542,183.72997691482306,182.96603207103908,182.79931335011497,182.69265353307128,182.348660540767,182.0142925265245,182.21549861039966,181.6991955083795,182.16609927080572,181.6990282656625,182.25964904390275,183.14318226044998,182.8628105041571,182.34134254883975,182.91985575295985,181.981903440319,182.51782306004316,182.60701677203178,182.60693357279524,182.4388266839087,183.3923080591485,184.15384143218398,184.82441109744832,185.6218615216203,186.0961770992726,186.38519047526643,186.17787242354825,186.4648683653213,186.3032389958389,186.57730255369097,186.95624627545476,186.3948265002109,185.49613864859566,184.54997106827796,185.40323772793636,185.43938464997336,186.05191950546578,186.09492876008153,186.52498424379155,186.30542022828013,186.72130939085037,186.79144598683342,187.01276084315032,187.52782212710008,187.88579702191055,186.99833127111197,186.05532991373911,185.15210019191727,184.50202540773898,184.4417510330677,184.27296513225883,184.41675812983885,184.26768977195024,184.49654931854457,184.70737288426608,184.80629202816635,184.86760939192027,185.67127505969256,184.96950721601024,185.0785516682081,184.80692482320592,185.36160916648805,185.9083714671433,185.33907590527087,186.2718663001433,186.84936183225363,186.96192527515814,187.87445345893502,187.99181872513145,188.32804822502658,187.76733130728826,187.9277274524793,188.64750556601211,189.26276667322963,188.29198525007814,187.91735005704686,187.5376749751158,187.01237829588354,187.326646131929,186.67338511254638,185.72897381149232,186.24468169221655,186.87171172676608,187.65765196830034,188.51073776977137,187.71316314442083,187.8911647964269,187.6884953523986,187.15853797551244,186.665263062343,186.66048261290416,187.49325955612585,187.82446802128106,186.93847039015964,187.02397627476603,186.2852937481366,186.4003636254929,185.84716147370636,186.74597800336778,186.44453813740984,186.25225748401135,186.8588197804056,186.78248658170924,187.32330329017714,187.17315137013793,187.2674228893593,187.5101022887975,186.80874866852537,185.86123143974692,186.81622969685122,187.79920801939443,186.9233193360269,187.05546249402687,186.2770352778025,186.4834486101754,187.27651173714548,187.4405598915182,186.44746611313894,185.8375444347039,185.54329711571336,185.77525960234925,186.36708087660372,185.50631608068943,184.86959181027487,184.38444648077711,185.0392407500185,184.20039138616994,183.27006284566596,182.38343100156635,182.183156194631,182.20231758709997,181.64895540848374,180.9548712274991,181.18817340908572,181.34462345018983,180.98344924254343,180.443355565425,179.67070632381365,179.898610830307,180.32209921162575,180.46473515080288,180.01733039459214,179.1825175471604,179.6846006764099,179.931715128012,180.77979586552829,181.45541585050523,181.1486081276089,181.22627778723836,182.03039513807744,181.62371938768774,182.1843400769867,182.5005175792612,182.82593506481498,183.12041043303907,182.63139065308496,183.21367118088529,183.20696969190612,184.0235317768529,183.36944626551121,183.48867682134733,184.44871778367087,184.89337550662458,184.3677135137841,185.15266708331183,184.58894316432998,184.5332291154191,185.3098030104302,185.85602081101388,185.47809812193736,185.00114464666694,185.28208263916895,185.28383059473708,185.509404794313,185.5416569444351,185.05653416039422,186.04306371323764,186.71580703463405,186.75382879376411,187.74793260823935,187.75844241539016,188.29703944269568,187.5487729893066,186.7519923048094,186.61194215994328,187.27338908659294,187.89937493111938,188.73981596855447,189.71094852034003,189.3375477688387,190.31839768402278,189.94842531206086,189.56901959283277,188.78565586684272,187.81102912779897,186.85289240488783,187.52361942641437,186.70624157227576,185.89241080963984],"z":[-0.5945883961394429,-1.0241054510697722,-1.135791272856295,-1.534346371423453,-1.1687114788219333,-1.622514229733497,-1.1300721964798868,-0.6519253235310316,-0.06259622797369957,-0.7543525979854167,0.005619631614536047,0.2859720755368471,0.4679478583857417,1.0443837093189359,1.9401869103312492,1.6197684123180807,2.32281873235479,1.5027325437404215,2.0302796317264438,2.4624547944404185,1.7150668185204268,1.5432848655618727,1.937678708229214,1.7258921638131142,0.7613638574257493,0.4351784288883209,1.307261147070676,2.2304263757541776,2.7257094932720065,3.1146235219202936,2.7081317882984877,2.2030813549645245,2.5440388964489102,3.176009396556765,3.3636396336369216,2.4445273517630994,2.467872818931937,2.0364286359399557,2.0977318147197366,2.384480166248977,2.290234716143459,2.7960099992342293,2.1577239586040378,2.821803736500442,3.4740214236080647,3.305137200281024,3.4389167930930853,3.9459946802817285,4.476026543416083,4.905624359380454,4.521585499867797,5.26267693657428,4.47632472962141,4.582920728251338,5.5479846321977675,5.730323860887438,5.765463026240468,6.272521480917931,7.074492235202342,6.285820618271828,6.50631576217711,6.552727913949639,7.475191558711231,7.57704256568104,8.387153886258602,9.265631874557585,10.09634146373719,10.872505749110132,10.056195846293122,9.27110303658992,9.613544134423137,10.322093803901225,9.758397835772485,9.502332543488592,9.664462554268539,10.10716044716537,11.094212837517262,10.525277683977038,9.913043330423534,10.332028292585164,10.619856089353561,11.243754400406033,11.629970052745193,11.260570637881756,10.444225231651217,10.364268814679235,10.349603205453604,9.467375817708671,8.759440106339753,9.431355636101216,9.82198310829699,9.692695894278586,10.462079145014286,9.968498540110886,10.629678081721067,9.940404686611146,9.69679824821651,9.889725827611983,10.033854910172522,9.790136825293303,9.165425667073578,10.03802461270243,10.472820849623531,10.27231359295547,9.354700305033475,9.444364015944302,9.131419191602618,9.965610701590776,10.644742819480598,9.727150678168982,8.910872770473361,8.391362939029932,8.138279157690704,7.360951774287969,6.37310632225126,5.620632228907198,6.186575350351632,6.354618365876377,5.949067582376301,6.031336592510343,5.780901997350156,5.443322164937854,4.586765401996672,4.169112510047853,3.6993540772236884,3.876752171199769,3.35084663098678,2.7802391536533833,2.4467700328677893,2.050439360551536,2.755177766084671,3.5400296468287706,2.601557433139533,1.8022633818909526,0.9092985815368593,0.8905378985218704,1.715222645085305,1.1167033556848764,0.9121898119337857,0.32666635420173407,0.5412218114361167,-0.15882718469947577,0.7063216133974493,0.7255581594072282,-0.025870763696730137,0.14086767565459013,-0.047453450970351696,0.69289928721264,-0.12672656262293458,0.610318650957197,0.47036765376105905,-0.33034171629697084,-0.41716155549511313,-0.5295517886988819,0.20561935612931848,-0.11823587818071246,-0.5511577227152884,-0.3946810341440141,-0.4664019551128149,-1.4450393309816718,-2.4236007095314562,-2.265872171148658,-1.8979332195594907,-1.3268577787093818,-2.035097765736282,-2.9323389236815274,-3.186339598149061,-2.8860913291573524,-3.424456598702818,-3.593413347378373,-2.7438021628186107,-2.7142224307172,-1.7715377393178642,-1.2815050324425101,-1.5167899644002318,-1.508815512061119,-1.3878855812363327,-2.1529736784286797,-1.2227725298143923,-1.200385544449091,-0.9209970296360552,-0.27050263714045286,0.188875213265419,-0.7488242797553539,-1.556860690470785,-1.7337725292891264,-0.9272842151112854,-0.25545808812603354,-1.230603232048452,-2.092304169666022,-2.2476106393150985,-2.0811882517300546,-1.271112444344908,-1.1946663395501673,-1.504643503576517,-0.5834120442159474,0.40587407629936934,-0.48090163618326187,-0.07103143027052283,-0.7776337498798966,-0.08514990005642176,-0.8687539449892938,-1.2542468952015042,-0.4879827927798033,-0.23553072195500135,-1.1823276043869555,-1.9452309464104474,-2.4001436941325665,-2.5978487813845277,-2.3354334635660052,-1.4463146817870438,-0.9714449313469231,-0.12712937174364924,-0.0931545295752585,-0.3190871337428689,0.16308347368612885,0.8556450712494552,1.2204256411641836,0.2984184781089425,-0.11024439055472612,-0.30995994806289673,0.39136969251558185,1.3816022360697389,2.0147982235066593,1.254827044904232,1.7238260158337653,0.767256838735193,0.20161891030147672,0.9880871083587408,0.6654668194241822,0.34265084424987435,0.46315156714990735,1.3166658650152385,1.3768220446072519,1.685494463890791,2.3393442733213305,1.617735396604985,1.144743847195059,0.7001605755649507,0.9840834527276456,0.31006136583164334,0.5298091201111674,0.6279436033219099,0.40101927472278476,-0.022714320104569197,0.724196151830256,1.2640803302638233,0.9929962786845863,0.49698056746274233,1.4413865534588695,2.0461767446249723,1.1201243186369538,1.4528048168867826,0.8555275127291679,1.6947712991386652,1.4492235374636948,0.6061758073046803,0.11974392225965858,0.7241911590099335,-0.17892808746546507,-0.34385591046884656,-1.3032459262758493,-1.3252719878219068,-0.48419735580682755,-0.9373186146840453,-0.9584737522527575,-0.5150988213717937,-0.8470441969111562,-0.23435559077188373,-0.7791894115507603,-0.6311930096708238,-1.525086454115808,-1.6922065941616893,-1.531784447375685,-1.5716965785250068,-2.1891947109252214,-2.4130748850293458,-1.8816887806169689,-2.110773975495249,-2.9827799848280847,-2.2175760390236974,-1.6059734430164099,-1.4116870081052184,-2.026134703308344,-1.5730854053981602,-2.099980629514903,-2.7901000175625086,-2.2214556732214987,-2.32947217207402,-2.8635946190916,-3.719835529103875,-3.8784688957966864,-4.683471725322306,-5.307535742875189,-5.5788642964325845,-5.745409394148737,-5.051878817379475,-5.415972604881972,-5.3156819539144635,-4.4944343394599855,-3.8471741802059114,-3.1478452375158668,-2.835654546972364,-2.7370467726141214,-2.169227551203221,-2.1462264163419604,-1.6417294833809137,-2.122382645495236,-3.070024201646447,-2.478501085191965,-1.4829474636353552,-0.4928987305611372,0.04621251579374075,-0.4652402806095779,-0.7010947149246931,0.13522473350167274,0.43154234485700727,-0.24002831801772118,0.46369285555556417,-0.18628374254330993,-0.1352606201544404,-0.2592926057986915,-0.9909894233569503,-1.0463831932283938,-1.100789317395538,-0.4992247140035033,-0.07259550550952554,0.7285670624114573,0.21625701989978552,-0.38376568304374814,0.39486240735277534,0.4039174485951662,0.3415294401347637,1.0862200525589287,0.2516974229365587,0.8694501975551248,-0.006713509559631348,0.6113968868739903,1.0804582084529102,0.6593589056283236,0.691035243216902,1.182812015991658,0.41747792484238744,0.9359823623672128,1.7410718598403037,1.164182795677334,0.8499826961196959,1.5981120220385492,0.9225497734732926,1.7728846385143697,0.9056935305707157,1.7777315196581185,1.5712540335953236,1.4074129862710834,1.6393189681693912,1.9518575612455606,2.065032478887588,2.333158079534769,3.3136180294677615,3.3264617971144617,2.441966321785003,1.8818146898411214,2.2119329567067325,3.04829612839967,2.9845247976481915,3.434059672988951,2.906450922600925,3.2709562056697905,3.7945993547327816,3.573663025163114,2.86284336540848,1.9275752292014658,2.0575237181037664,1.5501931081525981,0.9024901757948101,0.6804047259502113,1.3554505510255694,0.6749234739691019,0.4753986345604062,0.9565812731161714,1.681876857765019,1.6061658789403737,0.837109562009573,1.354750175960362,2.0683575770817697,1.8252023002132773,2.590421384666115,2.8820299711078405,3.495822098571807,4.205653152894229,4.738547527231276,4.248857766389847,3.3506088368594646,2.5327855334617198,3.5318546374328434,4.074743897654116,4.915213428903371,5.21719582285732,6.050619943998754,5.693758442997932,5.832865679170936,6.633481181226671,5.749574834946543,6.731708293315023,6.2586636040359735,6.284617820288986,5.557082435116172,4.5958139398135245,5.016216587275267,5.133327873423696,6.0049511613324285,6.442016762215644,6.312646453734487,7.203503186814487,8.008524864446372,8.933122404385358,9.045179996173829,8.957562206313014,9.537735714111477,9.157330230344087,8.829591182526201,8.657778540626168,8.275829910300672,7.860099651385099,7.893295891117305,7.328075425233692,7.709588780999184,7.170521351043135,7.089352109935135,6.521670118439943,6.62205624487251,6.851163564249873,7.4576462442055345,7.998300008010119,7.345111138187349,7.739332578144968,6.762330686673522,7.013665281701833,7.865741051733494,7.336539789568633,6.668072453700006,7.190645876340568,8.037495985161513,7.601006977725774,7.633749139029533,7.858269549906254,6.88465355662629,7.529422655701637,7.2404822167009115,7.147873910609633,6.523719013668597,5.729864329099655,6.531267716083676,6.778339785989374,6.588833266869187,7.35354214720428,6.582258134149015,5.58693041279912,4.767055585049093,4.769404991529882,5.6014132387936115,6.069744259584695,5.125579904764891,4.720960218459368,5.076524356380105,5.940353732556105,6.218157122377306,5.961155409924686,6.512794827111065,6.806057518813759,5.9762633251957595,5.404499079100788,5.895332499872893,5.821972955483943,5.69257902354002,6.192567756865174,6.55252192215994,6.451610390096903,5.939435010775924,5.845995276235044,5.050064038485289,5.475826065987349,5.466660736594349,5.175950309727341,4.458425243850797,3.9610279030166566,3.2632817146368325,3.651904192753136,3.8022259124554694,3.2341565140523016,2.9069456169381738,3.667275944724679,4.449738474097103,3.571011399384588,2.602915657684207,1.998106634709984,1.0470760883763433,0.9728515739552677,1.434214445296675,2.073937090113759,3.027931448072195,3.500448972452432,2.813821586314589,3.270284224767238,2.3488782378844917,1.4751015142537653,1.2822198709473014,2.2817611447535455,3.2069421098567545,3.4221726693212986,2.912995300721377,2.5867422856390476,1.5956073929555714,2.5662200413644314,2.6376647148281336,2.5283294222317636,3.176228851545602,2.3199310642667115,2.3220465346239507,2.2215723618865013,2.9477859707549214,3.68377443915233,3.5077989199198782,2.9127413113601506,3.708268752787262,4.540432180278003,5.493997743818909,5.803855198901147,5.557882328517735,6.521230645943433,6.864212187938392,7.317006211262196,6.83918545069173,6.457865742500871,6.181390971876681,5.986931633204222,5.227559000719339,5.065750050358474,4.097961339168251,3.1930369464680552,2.783706965856254,2.899529541376978,3.3980266363359988,2.461394281126559,1.931819059420377,1.8279642621055245,0.8559884512796998,1.6601898483932018,0.6715202196501195,0.10952267423272133,0.48617032263427973,-0.15728284185752273,-0.4447985668666661,0.3556528529152274,-0.6252202852629125,-1.2880288339219987,-1.8188820420764387,-1.2734907413832843,-1.3997240769676864,-1.0759738003835082,-2.063270444981754,-1.3453537337481976,-1.7181760179810226,-1.1692341011948884,-0.38374920608475804,-1.2460206001996994,-1.4752225284464657,-0.8417831142432988,-1.4420134858228266,-1.1994061996228993,-0.8258625036105514,-0.4870079136453569,0.3338883747346699,-0.3426168728619814,-0.5302303694188595,-0.630451369099319,0.08599975379183888,0.9705865439027548,0.9710014970041811,0.5623107580468059,1.2111397595144808,1.3443795866332948,2.176056068390608,2.245739354752004,1.6012771222740412,1.2717574615962803,1.2487371456809342,0.3039045142941177,-0.3672180389985442,0.015079402830451727,0.7902645813301206,0.6119144968688488,0.9444077606312931,1.3406187421642244,0.837932632304728,0.8258784119971097,-0.14648335939273238,0.7763858558610082,0.36642295913770795,0.09716167487204075,1.06637201923877,1.2469224822707474,1.3632020512595773,1.848582236096263,2.445968623738736,3.0387368318624794,3.8940625805407763,4.6169106950983405,4.081297155003995,3.2701067314483225,2.8989959247410297,3.1659323861822486,4.026723628398031,4.408076097723097,5.310063107404858,5.907837756443769,6.30292899068445,7.101901504676789,7.780321524944156,6.8194130547344685,5.819898050278425,6.157793568447232,6.169183898251504,7.106644915416837,8.004561820998788,7.694650510326028,7.427161962725222,7.4399843527935445,6.730230414308608,6.341660765465349,6.026390579063445,5.313966823276132,5.16302105365321,4.502896091900766,5.442396001890302,5.125646902248263,5.373956368304789,5.074458975344896,4.362691870890558,4.779256529640406,5.165574529208243,4.256994538474828,5.174234318546951,4.950692925136536,5.893190630245954,6.539169924799353,7.022018935997039,6.8474241606891155,6.749186129774898,5.766923949122429,6.447988863568753,6.867419040296227,7.77992097614333,6.894302248489112,7.884939381852746,7.28679480869323,7.216877947561443,7.498554563615471,8.182337643112987,8.535294743720442,9.122540019452572,9.116842973046005,8.952782606706023,9.312730976380408,8.353375562466681,8.739013405051082,8.262744759209454,8.201905907597393,8.945154410321265,9.685566832311451,10.112734074704349,9.823370152153075,10.305862663313746,9.850771321449429,10.090922528412193,10.165552013553679,9.694792479276657,9.506688264198601,8.880731395445764,8.166203221306205,7.734897547401488,8.560422224458307,9.028291768860072,9.321965524926782,9.842943421564996,9.937298401724547,9.105993973556906,8.455518118105829,8.792399772442877,9.679966643452644,10.491655451711267,10.258886522613466,9.696244772523642,10.417845202609897,9.659483478404582,8.682682759128511,8.279013650026172,8.662204499356449,9.619419136550277,8.947157723363489,8.286220831330866,8.631820761132985,9.564486368559301,8.80094629758969,8.595629339106381,8.426453493069857,7.589156164322048,7.527002416551113,6.823744624853134,6.255732996854931,6.744269193150103,7.32298862747848,8.057827172335237,7.6426219670102,7.257615964394063,6.785059109330177,6.871744180563837,7.1066924929618835,7.792968186549842,7.34689165186137,6.6834033629857,6.369137415196747,6.031471236143261,5.449866104871035,5.127189077436924,6.058121911250055,6.539029591716826,5.653479885775596,5.1757640657015145,6.073516025207937,6.75673818634823,6.700428393203765,6.691180517431349,7.164235937874764,6.941399780102074,6.928368871565908,7.618616969324648,8.409365500323474,8.182244404219091,7.801795342937112,7.48721365025267,8.138275453355163,7.768354045692831,7.507924366276711,7.13843046547845,7.637963617686182,6.713793162256479,7.081822059582919,7.319809861946851,8.222382459789515,8.008391806855798,8.208733509294689,8.055784339550883,7.253551110159606,7.019799806643277,7.313842508010566,7.487221968360245,6.702094858977944,7.401443260256201,6.579567169770598,6.367448124568909,6.0732652503065765,7.049566945526749,7.950496188830584,8.512394863180816,8.92499957093969,9.411529449280351,8.943830012343824,9.727086045313627,10.055888134520501,9.948281271848828,9.035380114801228,9.519467618316412,8.946542016696185,8.449388323817402,8.270298707298934,8.862710865680128,9.045853473711759,9.39973867405206,9.319239057134837,9.132155339699239,8.866946487221867,8.797011787071824,7.8026989470236,8.204298414289951,8.662522540427744,7.983683151192963,7.714042185340077,8.279411328025162,7.944007981102914,8.592488553375006,9.415149786509573,10.03810760891065,9.823586730286479,9.339652213733643,9.688183351885527,10.576043159235269,10.040876620914787,10.847680184058845,11.324465004261583,11.965478401165456,11.952854651026428,12.47967687388882,11.612193413078785,12.050499375909567,11.7429851423949,11.330503961071372,12.261791907716542,11.492225618101656,11.846468584612012,12.412045491393656,12.71002009883523,11.821846013423055,11.444874742999673,11.175271650310606,11.378704695031047,11.444603864103556,11.2781475414522,11.435485555790365,10.700136348139495,11.054349271580577,10.248971260152757,10.209128834772855,10.009825564920902,10.421842974610627,11.198478680569679,10.51827207673341,10.000025645364076,10.779218951240182,11.210078528616577,11.002164077945054,11.284668487962335,11.968895613215864,11.364207534119487,10.492355729453266,10.8164380681701,11.307259350083768,10.702412428334355,11.626109139993787,12.403734072111547,13.227776859421283,13.604567136615515,12.621293405536562,12.219777888152748,11.502142098732293,11.219430172815919,11.907493262551725,12.434369608294219,12.012536067981273,12.20972285605967,11.60147044621408,12.209058241918683,11.247832736000419,11.792561433278024,12.514197045005858,12.166895519942045,12.41000724118203,12.817701396998018,12.092759565450251,12.466168409213424,12.337193441577256,12.417386166751385,12.417360051069409,13.360274645965546,12.461184861138463,11.50777464127168,12.261505854781717,11.914792533498257,11.735103533603251,11.359237044118345,11.689731683582067,12.473046930041164,12.037863129284233,11.351643811911345,12.341928991954774,11.525309794116765,12.17825495870784,12.440122059546411,11.68039956688881,12.205917562358081,12.336613424122334,12.776433850172907,11.919939137995243,11.828991698566824,12.762968780938536,12.59247111203149,12.004636553581804,12.08404484251514,11.505320355296135,11.106687504798174,11.469010449945927,10.618625725153834,10.488195756450295,11.07901159254834,11.393956913147122,12.324701287783682,12.328815385699272,11.620759395882487,12.34598864754662,11.883868352975696,12.870376129169017,13.257498861756176,13.893856630194932,13.499349222518504,13.243740234989673,13.818524600937963,14.072110433131456,13.486551084555686,13.801246665418148,13.166130998637527,13.371641253586859,13.87920386577025,14.71598923113197,14.920317809097469,14.728665997739881,14.116956344805658,14.786604130640626,14.717690590769053,13.757294445298612,14.264148975722492,13.967515126802027,14.299945468083024,14.26399053260684,13.92796875257045,14.338018383365124,13.781615956686437,13.21266055246815,12.354032707866281,12.555216455366462,12.759688677731901,12.179800275247544,12.108957370277494,11.885458106640726,11.189053440000862,10.274560343939811,10.065691490191966,9.30799515126273,9.381322642788291,8.9920554747805,8.969123696442693,9.773944628890604,9.955011202022433,9.628899603150785,9.904985009226948,10.130497623234987,10.64680564403534,10.479584474582225,9.608970334753394,9.095115816220641,9.195483435876667,8.604732972569764,7.626329084858298,6.815150931477547,6.289732662495226,5.6085502482019365,6.545231566298753,6.2139581381343305,6.839638167526573,6.9056426752358675,7.296049238182604,7.011581493541598,6.867421833332628,6.312197090126574,7.249637988395989,6.9541524411179125,7.07910251384601,8.000822290312499,7.77031847089529,7.799296543002129,7.03797714272514,7.13243967294693,6.554916729219258,7.048812328837812,6.694947740994394,7.065047204960138,6.079853977542371,6.814447984565049,6.506491861306131,6.575640137773007,6.207054181955755,6.761591345071793,6.622041871771216,5.8754703919403255,5.5838827127590775,5.814990006387234,6.638859088998288,7.089992305729538,8.069838815368712,8.822109433356673,9.137241065967828,8.83199833612889,9.144083311315626,9.842088195495307,10.70743805821985,11.533592043444514,12.382832353003323,11.553675208706409,10.624742161016911,11.404849431011826,10.910977792926133,10.014654827769846,10.703777827322483,10.297717608511448,9.465655508916825,8.975738023407757,8.897613210137933,8.623561510816216,9.191140925977379,9.56450771028176,9.272473696153611,10.05565178161487,9.771649304777384,10.541009717155248,10.877284304704517,9.8879663082771,9.587066505104303,10.098114453721792,10.944030456710607,11.711082677356899,10.86067057820037,10.234939785674214,9.955721812322736,10.233282236848027,10.101745515596122,10.419167372398078,11.1739770215936,10.8478785851039,10.845394343603402,11.246123600751162,11.69335715379566,11.4588658856228,11.520038617774844,11.347170382272452,12.268885420635343,12.494305379223078,13.10159726254642,13.686673954129219,14.550078742206097,13.831599281169474,13.216528017539531,13.02118287468329,12.825780531391501,12.892822188790888,12.738142458721995,13.508884460199624,12.769251225981861,12.222737240605056,11.916180942207575,12.140864775516093,12.015760108828545,11.438774623908103,11.55621847556904,11.084454274736345,11.549723216332495,11.033428320661187,10.409721965435892,11.158029480837286,10.482221486978233,9.81331033213064,10.140598327387124,9.976548352278769,9.509302746970206,9.843279927037656,10.491103849373758,10.639160059858114,11.030143619515002,10.896523493807763,11.062444744631648,10.201894621830434,10.766473486553878,11.31377519108355,11.951569576282054,12.824927639681846,12.606689395848662,11.850296348333359,12.394180731847882,12.36753446282819,11.387031741905957,10.955002848058939,10.816094632726163,10.381700351368636,10.575144149363041,11.403466545045376,10.941824007313699,10.266962578520179,10.301051755901426,10.554806798696518,11.192362158559263,11.696088583674282,12.519588468130678,13.261192141566426,13.163730454165488,13.884709579870105,13.816077013965696,13.021193935535848,13.930568646639585,13.400324655231088,14.070741650648415,14.155571808107197,14.93974265968427,15.754735740832984,15.139546236488968,15.98220661142841,15.990312374662608,16.485477884300053,15.863660647999495,15.350461057852954,15.35341434367001,16.228753788396716,16.038538763299584,15.911102386657149,15.009859973099083,14.72948105307296,13.960963723715395,14.02310015866533,14.270809243898839,13.568967835046351,13.97662812191993,13.853546846657991,13.281649216543883,13.51890678703785,12.686233282554895,11.994974867906421,12.36960895638913,12.461301129311323,12.722354918718338,11.924793962854892,11.625372090842575,12.268117723055184,12.67454917402938,12.330522932577878,12.112792768515646,12.414053621236235,12.436272087972611,12.490804767701775,11.764833399560302,11.722995283082128,11.84241519169882,12.337659704498947,12.721931698732078,13.606588990893215,12.811209687031806,13.005293045192957,12.403260499238968,11.566299504600465,12.475322676822543,13.371438722126186,12.960886465385556,13.15654981508851,13.146845675539225,13.190165292937309,12.277211353182793,12.560781614854932,12.230204749386758,12.645997869316489,13.198372806422412,12.863711022771895,12.77167929103598,12.185543549247086,13.059046492911875,13.533017103094608,12.655747505370528,12.78490291442722,12.157737424597144,11.853690767660737,10.94950959738344,10.441111931111664,10.856738112401217,10.652600010391325,10.934236018452793,11.110305279958993,11.710393439978361,11.426136850379407,11.278651036322117,11.451700744684786,10.603027916513383,11.195897981524467,11.00284368218854,11.328610837925225,10.820967200677842,10.855576792731881,10.595905316527933,9.745388372335583,9.3056729468517,9.906924181152135,10.669772394932806,9.921735959593207,9.65214277477935,8.768766226712614,9.075987964402884,8.579023818019778,7.6959980968385935,8.686564952600747,8.06607266375795,8.37939831474796,8.558993670158088,7.823789458721876,8.300007325131446,7.885450512636453,7.096474600024521,6.789042089600116,5.840251658111811,5.561061553191394,6.279079310595989,7.020611908752471,7.108480248134583,6.4320943439379334,6.3764398992061615,5.511997942812741,6.346187131945044,6.795467721763998,6.918861689046025,7.012960901483893,7.620222867466509,8.052122075110674,7.298628132324666,6.893082264345139,5.986570323817432,5.861702347174287,6.394664499908686,6.436849068850279,6.440594505053014,7.02826830605045,7.918521177023649,7.175790862645954,7.574612678028643,6.585988387465477,6.278695579618216,6.881650786381215,6.873420391231775,7.365780111402273,7.967233842238784,8.816131831146777,8.183009335305542,7.815011585596949,8.468852339778095,8.222545607481152,7.850855905562639,6.872846929356456,7.760202936362475,7.581857248209417,7.990358244162053,7.06113086361438,6.201176607515663,6.126525175292045,6.098924514371902,6.117513150908053,5.854548082221299,5.64691171143204,5.962710726540536,6.07668302487582,5.540752765722573,6.448754060547799,6.5566295348107815,6.881296146195382,6.313925514928997,7.145401345100254,7.313437964301556,7.071561724878848,7.217025684192777,7.854253391735256,6.943275960627943,6.163079258520156,5.418250220362097,5.877608340699226,6.553152795881033,7.26830770354718,8.104156515561044,7.777369649615139,7.089798548258841,6.198738111648709,6.828883447218686,7.5415700394660234,8.439722866285592,7.60651235608384,8.487743516918272,7.906190078705549,7.169485775753856,6.170751136727631,5.77823671977967,4.7825323906727135,4.59997369395569,3.936860628426075,3.1146882763132453,2.873675304464996,2.8992200810462236,2.9615288875065744,2.3975016507320106,2.2710473551414907,2.1225126893259585,2.898705034982413,3.7723407708108425,3.7167385038919747,3.090664141345769,2.320214402861893,2.3372403737157583,2.2149845915846527,2.787677145563066,1.8247731034643948,1.4456885955296457,2.2304076366126537,3.0287395920604467,3.329275220166892,2.6654362971894443,2.5773458732292056,3.4270630786195397,3.737580841872841,4.234564183279872,3.7459096084348857,3.0991663495078683,2.7707521435804665,2.4010906256735325,1.747552310116589,1.7419673479162157,0.7849894813261926,1.255431548692286,2.15176151227206,1.3262347178533673,0.574509029276669,1.4166487213224173,0.5544930007308722,0.2561596445739269,0.6447001206688583,1.1781393750570714,1.0213595572859049,1.7383937882259488,2.07470631506294,1.998319171834737,2.855658780783415,1.8576485398225486,1.1195442229509354,0.1881791385821998,0.5264997477643192,0.7697749962098897,1.2780193304643035,1.905462026130408,0.943820561747998,0.3722006152383983,0.44139950815588236,-0.3087689750827849,-0.463852237444371,-0.47062131902202964,-0.016551166772842407,-0.8553513432852924,-1.7725521959364414,-0.9369677864015102,-1.9303454062901437,-2.062454662285745,-1.9566419539041817,-1.2675276878289878,-1.39790192944929,-1.1117149372585118,-0.8540791394189,-1.0359329641796649,-1.572398706804961,-1.4105677008628845,-1.1134464386850595,-1.1439839461818337,-0.35254275472834706,-0.46103163808584213,-0.6145684337243438,-1.1088644145056605,-2.107650590594858,-2.4079935252666473,-2.5159984384663403,-2.634571809787303,-2.525276627857238,-3.3131367219612002,-2.5250793281011283,-3.402317678555846,-2.6480520917102695,-3.069590102881193,-3.541011215187609,-3.8945545917376876,-3.9625207823701203,-4.826205073390156,-4.389788679312915,-3.9967326601035893,-4.347649686038494,-4.873936603311449,-4.143045010510832,-3.3223517145961523,-2.746399163734168,-2.076856946107,-1.963273054920137,-2.0619597770273685,-1.4000790580175817,-1.8089028620161116,-1.9197866721078753,-1.4226617300882936,-1.4082186706364155,-0.7605796111747622,0.23421063274145126,0.7747500254772604,1.242776256520301,1.893162532709539,2.3301484221592546,2.3309371857903898,2.372933303937316,2.4954228256829083,2.8891597548499703,2.0676795784384012,2.0455993209034204,2.919654266908765,3.8787044412456453,4.411294045858085,5.18589623644948,5.799756098538637,6.143200627528131,6.501792706083506,6.416207411326468,5.46222031256184,5.850790191441774,6.392291400581598,7.292566153220832,7.590512300375849,7.114520076196641,7.217304836027324,6.4039665488526225,5.789450408890843,5.374178420752287,5.636879114899784,4.894917509984225,5.025043321307749,5.363789213821292,6.0542829670012,5.095698193181306,4.178310406394303,4.175453983712941,3.862298156134784,3.227282968815416,2.389381429180503,2.9030529549345374,3.7788132317364216,2.782423240598291,2.1013995492830873,1.6492684562690556,2.500632803887129,3.495399691630155,3.371083647478372,3.3468717159703374,3.5171683044172823,3.163875660393387,3.71394947450608,4.662586031015962,4.4159569181501865,4.657056127674878,3.6943189636804163,4.553208991885185,5.0217768503353,4.5530043579638,4.003419466782361,3.1914940355345607,3.191305862739682,2.3633007197640836,3.121609013993293,2.7094032573513687,3.146003631874919,3.1542683173902333,2.8970692795701325,2.748528924304992,3.1252090712077916,2.5895812986418605,2.3180115832947195,1.420929011888802,2.057385405525565,1.507557078730315,2.045855104457587,1.1640766286291182,0.19336066488176584,-0.28556500794366,0.04306352697312832,0.8119699996896088,0.518777527846396,0.8388603231869638,0.651815771125257,1.1410438348539174,0.562229567207396,1.0403033196926117,1.2584417778998613,1.7519211061298847,0.918676093686372,1.0338834314607084,0.4807017343118787,-0.3133320943452418,-1.1735216500237584,-2.1265210802666843,-2.4414586038328707,-1.8334091259166598,-1.0333978403359652,-2.0189376240596175,-2.661493892315775,-3.427295245230198,-3.7350195478647947,-4.246503603179008,-4.563790133688599,-5.500732570886612,-5.892429714091122,-6.827388874255121,-5.9090666668489575,-6.23689680127427,-7.067480795551091,-6.289446958806366,-5.715824375860393,-4.889227708801627,-5.869411608204246,-6.271361355204135,-7.198346633929759,-6.822434268891811,-6.151352645363659,-5.276373927947134,-5.305059609469026,-5.642004285007715,-5.93977385899052,-5.364427539985627,-5.211036344990134,-4.36201781174168,-4.502214353531599,-5.490420537535101,-5.277178307063878,-4.890914532355964,-4.8612075378187,-4.727256055455655,-4.855789030902088,-5.488571374677122,-5.056984819937497,-4.448202492669225,-3.7892401944845915,-3.504609157331288,-4.387298260815442,-5.321885682176799,-4.503797496668994,-4.645997016690671,-3.886680102907121,-3.5688978652469814,-3.322376781143248,-3.1541577470488846,-2.626498713158071,-2.5333583084866405,-2.437785243615508,-3.427711830008775,-2.7688588201999664,-3.038107395172119,-3.5450291270390153,-3.9976227204315364,-3.8248552419245243,-3.4085205192677677,-3.329621630720794,-2.4692402272485197,-3.0968746272847056,-2.4981004116125405,-2.3361422196030617,-3.139389677438885,-3.1988826543092728,-3.1342190401628613,-3.4802081985399127,-3.5106753716245294,-2.7732452214695513,-1.9533465541899204,-1.6740744039416313,-1.4576808838173747,-0.8833837383426726,-1.1574836284853518,-0.8279285589233041,-0.7496325322426856,0.18472540797665715,0.8892893954180181,1.072751073166728,0.5818689907900989,0.014890352264046669,-0.27445730241015553,-0.6171332327648997,-1.2313720667734742,-1.4973643035627902,-1.4977035466581583,-0.9027151889167726,-0.13034965051338077,0.1922785323113203,-0.044081108178943396,0.33933259453624487,1.0741843958385289,1.4162733433768153,1.6209315173327923,2.233087440021336,1.6620002551935613,1.178111294284463,0.3486725795082748,-0.11877287924289703,0.05351263750344515,0.845447629224509,1.712036158889532,2.0441117137670517,1.5766567722894251,2.2203529528342187,2.81960254535079,3.093079668469727,2.4331652456894517,3.0765307592228055,2.1294650034978986,3.0948487729765475,2.181334345135838,2.0625372417271137,1.2757803816348314,0.9443277060054243,1.1078694639727473,2.07806838164106,2.0177840017713606,1.2848734185099602,1.6038762624375522,1.5771897928789258,2.519343910738826,3.1945460927672684,2.3817701684311032,2.552852536085993,1.851210230961442,1.1488995961844921,1.0130729265511036,1.181245039217174,1.1259653610177338,0.3819126798771322,0.869441662915051,0.14141006069257855,0.6250822436995804,1.0205637970939279,0.8818427287042141,1.775062296539545,1.4039593641646206,1.6031767446547747,2.5733326715417206,2.2297180988825858,2.4765049358829856,2.5122940139845014,2.321821365505457,1.8288872968405485,1.1125754630193114,2.0654314756393433,2.5246013035066426,2.202039860188961,1.4492930197156966,1.0482444916851819,0.5965986414812505,1.0594576834701002,0.3616382493637502,-0.1591903744265437,0.30541896587237716,0.6741371010430157,0.8786583854816854,0.14117045141756535,-0.564873244613409,-1.2237209333106875,-1.0891214925795794,-0.4569655782543123,0.048489168751984835,-0.5850915554910898,-1.1914846845902503,-0.9102986389771104,-0.7848337329924107,-0.7807488813996315,-1.7669188999570906,-0.907261888962239,-1.77901675645262,-2.7578444462269545,-3.713229443412274,-3.907048109918833,-4.24949984671548,-3.410089001059532,-3.710858219768852,-3.979024577885866,-3.458644324913621,-3.432611529249698,-4.050230514258146,-4.716890257317573,-5.182051472365856,-5.81730830995366,-5.045294435694814,-6.014537617564201,-6.65382867725566,-7.642984131816775,-8.454546700231731,-7.604580149520189,-7.3267891788855195,-6.957690438255668,-6.004993361886591,-6.954031280241907,-7.655579602345824,-7.178258358966559,-6.730449653696269,-6.916469311341643,-7.499126163776964,-6.938387401401997,-7.718263661954552,-6.936727097723633,-6.0148230833001435,-6.647730554454029,-7.412361133377999,-6.8301972625777125,-7.7622310421429574,-7.491012579295784,-7.12284359941259,-7.07753413869068,-7.551036033779383,-7.99769335007295,-8.446933169383556,-8.944080063607544,-9.485956065822393,-9.922998329158872,-9.008940019644797,-8.085386558901519,-8.423570907209069,-8.584317674860358,-9.145026518497616,-8.643511386122555,-8.201719477772713,-7.268447392154485,-6.39234759286046,-5.552527504041791,-6.375515435356647,-5.685208992566913,-6.579507017042488,-7.0106418752111495,-7.0520467790775,-6.240851267706603,-6.488399470690638,-6.705844629555941,-6.909381742123514,-6.230724047869444,-5.363607497885823,-6.34407461900264,-6.122010013554245,-6.704483177047223,-5.852885934058577,-6.558258319273591,-6.81039979821071,-6.461688387673348,-6.709559052251279,-6.674843236338347,-5.782942900899798,-6.686394822318107,-7.290226134005934,-8.264173446688801,-7.568464485928416,-8.22786633297801,-7.972961333114654,-8.901684924960136,-8.313113902229816,-8.378730566240847,-8.63076048111543,-8.839331451337785,-9.213786049280316,-8.42046288214624,-9.043733698315918,-9.509575873613358,-9.726643743924797,-9.114806482102722,-9.296481971163303,-8.322048664558679,-7.541844883002341,-7.045216546859592,-7.994884674437344,-7.369247764348984,-6.9273667968809605,-7.6635873219929636,-7.312653275672346,-7.124124047346413,-6.8406662116758525,-6.237565498799086,-7.049290309194475,-8.03462232556194,-7.636000634171069,-8.25826660124585,-8.996037031989545,-9.894778743386269,-10.67297822702676,-11.38261157181114,-11.017287655733526,-10.72937866160646,-11.673170987982303,-10.676778448279947,-11.556470319628716,-12.43583373259753,-13.373711038846523,-13.586541717406362,-13.719139077235013,-13.439993963111192,-12.655079672113061,-13.338241703808308,-13.097902990877628,-13.85123233962804,-14.082122709602118,-13.850548473186791,-13.771914039738476,-14.555357567965984,-14.894503343850374,-15.14868995686993,-14.300753772258759,-14.032149752601981,-14.823558624368161,-15.689883209299296,-14.927254755515605,-15.293392065446824,-14.826550705358386,-14.970638333354145,-15.733567415736616,-15.323378375731409,-15.368221427313983,-15.30587636679411,-15.612467919941992,-15.970695598516613,-15.550741248298436,-15.12823603162542,-15.59993618214503,-15.571188974194229,-16.39610260911286,-16.644871592521667,-16.39802073733881,-16.608670265879482,-16.906041317619383,-16.257958611939102,-17.001690657809377,-17.420622397214174,-17.240657803136855,-17.044380923267454,-16.918328788131475,-17.426242009270936,-18.369611685629934,-19.120146461296827,-19.18328217091039,-18.448958644643426,-19.44658495625481,-19.17848297394812,-18.75658470997587,-19.210653352551162,-18.94308402016759,-18.566392498556525,-18.340053825173527,-18.296003939583898,-17.77369893854484,-17.977921534795314,-17.99115871731192,-18.348752286750823,-18.548472926486284,-17.722796093206853,-18.578262703027576,-19.00879663368687,-19.93009566096589,-20.340062831528485,-20.83769496064633,-21.665106602478772,-22.128045986406505,-22.310306932777166,-22.4728415007703,-23.048089706804603,-23.855246652383357,-23.869326876476407,-24.52801965456456,-24.281987020745873,-23.912916005589068,-23.925184688530862,-24.757043764460832,-23.996948056388646,-24.69072822574526,-24.00247401278466,-24.645234354771674,-24.619796712417156,-23.76897321920842,-24.66924123140052,-24.405210901983082,-23.549096949398518,-22.99283631099388,-22.97124305786565,-23.47882700758055,-22.646403756923974,-21.754470970015973,-22.170199091546237,-21.472258598078042,-20.580546469427645,-21.220040008891374,-20.73830659268424,-21.14240532228723,-21.80971732037142,-21.147012695670128,-21.51972731994465,-22.19351561041549,-22.91516622994095,-23.53925318364054,-23.855926133692265,-23.972832933999598,-24.778913761954755,-25.41436204733327,-25.45624264422804,-25.52673801034689,-25.958981621544808,-26.908871810883284,-26.38433177303523,-25.615559071302414,-24.789633160457015,-24.66238979436457,-25.16667490126565,-26.03366759326309,-26.00135096674785,-26.18124575773254,-25.393563154619187,-24.55829580919817,-24.37476019235328,-23.938933523371816,-24.43586499383673,-24.195787492673844,-24.65396520961076,-24.0830694809556,-23.15128221316263,-22.322933624498546,-22.67150212265551,-21.785327475517988,-21.78241259092465,-21.01871233060956,-21.39890567306429,-21.334589163772762,-21.67908546794206,-22.115081988740712,-22.168275717645884,-21.928603077773005,-21.09059471776709,-20.40840282011777,-19.922495068516582,-20.835848577786237,-21.161579112056643,-21.155037857592106,-20.8205010863021,-20.84580347733572,-20.244139201939106,-21.059947591274977,-20.596641037613153,-20.03624828858301,-20.057380593847483,-19.26278725033626,-18.73117314418778,-19.12897519674152,-19.21879123803228,-18.741986308712512,-18.59587213722989,-18.492269249167293,-18.033132968470454,-17.122564608231187,-16.150095473509282,-15.994111025705934,-15.193481438793242,-15.245692167896777,-16.18318362114951,-16.830028221476823,-17.289024453610182,-17.65321190096438,-17.498240226414055,-18.23869585013017,-17.817830765154213,-17.38146699918434,-16.692620001267642,-16.74873275589198,-15.918061789590865,-16.521095952484757,-16.549990504514426,-16.490467959083617,-16.404215638991445,-16.33561446936801,-16.68672274192795,-15.78093473892659,-15.64784404495731,-15.661367138382047,-16.158142904751003,-15.75231108861044,-14.769163294695318,-15.51594714447856,-15.069154673721641,-14.9703995953314,-15.102001979481429,-14.70943704713136,-15.36797475349158,-15.863448871299624,-15.582852568477392,-15.962706648744643,-16.29751973086968,-17.114744166843593,-17.63570499792695,-18.38390690367669,-19.30871870322153,-18.78004383482039,-19.41751230834052,-18.446901687886566,-18.49743276555091,-19.442267749924213,-19.994717048946768,-19.33850250998512,-20.04295259807259,-20.070520219858736,-20.134320204146206,-20.25600288482383,-20.835127662401646,-20.26604127092287,-20.592636986169964,-20.56550483731553,-20.39889565296471,-20.16908899648115,-20.8912211433053,-20.00604610471055,-19.9304347387515,-19.720442585647106,-20.64245107304305,-19.89808253897354,-20.385138757992536,-21.065640148241073,-20.298757552634925,-19.532627979759127,-19.30535805784166,-18.78927557449788,-19.158922656439245,-18.344573265407234,-18.05004062736407,-17.385615305043757,-17.606829680968076,-16.660338081419468,-15.683307688683271,-16.553766335360706,-16.645025255158544,-17.27708077337593,-16.90669681271538,-17.181967346463352,-17.166694667190313,-17.251038687769324,-17.28741740109399,-17.287575747352093,-17.986983748618513,-17.073351505678147,-16.52245228877291,-15.697601381223649,-16.577993899118155,-17.32114157360047,-18.00153091456741,-17.702519570942968,-17.57580661494285,-17.58633192954585,-17.265112977009267,-16.499986646696925,-15.693555156700313,-16.325488298665732,-16.771543940529227,-16.933510412927717,-17.31535207433626,-16.854589794762433,-17.55269732652232,-17.40334156807512,-16.41430976660922,-16.70593343116343,-17.372940057888627,-18.153572846669704,-18.85248510260135,-19.100991108454764,-19.36242076428607,-20.172324238345027,-21.13659314159304,-21.21471263282001,-21.009054768364877,-20.040998915210366,-20.81530249863863,-20.831972344778478,-20.02187325526029,-19.996873711701483,-19.516274504363537,-19.25180447055027,-18.384833042509854,-19.140854857861996,-19.72461314452812,-20.293434662744403,-19.994844453409314,-20.106874503195286,-19.63012321293354,-19.22402725694701,-18.466449784114957,-17.685047322884202,-16.961702482774854,-16.930889123119414,-17.27503210119903,-18.051386445295066,-18.48370161699131,-18.136842253617942,-19.07494296040386,-19.769377037417144,-19.848152779508382,-20.004936989862472,-20.99481376959011,-20.79864394851029,-21.589599994476885,-22.034259175881743,-22.35915376013145,-21.7243435671553,-21.945613095536828,-22.85725326044485,-23.422203580848873,-23.975296083372086,-24.044527866411954,-24.988104240503162,-25.389140480663627,-26.35432752640918,-26.16718601481989,-26.199090914800763,-26.565266808494925,-26.828014350961894,-26.598940991796553,-26.634120719507337,-27.13429864216596,-26.809121920727193,-27.499560003634542,-28.258195279631764,-28.42215136066079,-28.22291866131127,-27.763279519509524,-28.410193797200918,-27.894310906529427,-28.740111821331084,-28.771153043489903,-29.63704509101808,-30.478124102111906,-31.28274891525507,-31.52329457597807,-32.377531406935304,-32.08593002241105,-32.62819997500628,-32.26740753091872,-33.0000104601495,-32.12667685188353,-31.892240864690393,-31.723469953984022,-31.69627114245668,-31.69288310268894,-31.16155221220106,-31.274889938533306,-30.606064957100898,-29.70275017665699,-30.277257232461125,-31.22139579243958,-30.88753549940884,-31.724964335095137,-32.70468188263476,-33.418016073293984,-33.17882708553225,-33.09673389792442,-33.99825184978545,-34.80714380228892,-34.99694708781317,-35.58238993724808,-36.03360222559422,-36.43934112554416,-35.587960444390774,-34.919120150152594,-35.20711521850899,-34.49520429316908,-35.47150225006044,-36.38285198947415,-36.120345258153975,-36.831276648677886,-36.65538693405688,-37.032698361203074,-36.80934697203338,-36.08256509853527,-37.07332974066958,-36.53010175796226,-36.661968970205635,-36.68200351251289,-37.017934317700565,-36.5083592957817,-37.43687168881297,-37.0479825087823,-37.81879656529054,-38.63299052556977,-38.032152756117284,-37.16975535172969,-37.84805267956108,-37.16223681392148,-36.4056690717116,-37.03875756589696,-37.59569965908304,-37.31670082779601,-36.81465867580846,-35.908790765330195,-36.539195160381496,-35.90974963409826,-35.15146645531058,-35.45311108371243,-35.78357009449974,-35.056515449658036,-35.76228098757565,-36.59946932271123,-37.18137232773006,-37.82882726145908,-37.86805376643315,-38.03695358801633,-38.278024872764945,-37.72661051759496,-38.08459341758862,-38.03948039095849,-37.75786494463682,-37.4387556319125,-37.971665910445154,-37.47585091087967,-38.08143407292664,-37.5885488349013,-37.94125020643696,-37.90692207729444,-38.75214936072007,-38.40864483779296,-38.398249397054315,-38.58167897583917,-38.81636246666312,-38.71089707687497,-38.16357343364507,-38.62054713163525,-38.62260629655793,-38.84931621700525,-39.15692082233727,-38.50080336490646,-37.661401433404535,-37.472085737623274,-37.48930517025292,-37.9872463773936,-38.309404673054814,-38.204287097323686,-37.5827947743237,-37.51746194856241,-36.83689748868346,-36.95762092107907,-36.939448815304786,-36.0752183473669,-36.320438348222524,-35.6015885733068,-36.038261144887656,-36.87481434177607,-37.346594288013875,-36.729657569434494,-36.938882598653436,-37.841512898914516,-37.877045194618404,-37.46749098272994,-37.646399738267064,-37.63240193016827,-37.81369603192434,-37.178760460112244,-37.14990413794294,-36.31949502788484,-36.57576707703993,-36.1847416930832,-35.604816736187786,-35.83778741117567,-36.05749164102599,-35.77608049521223,-36.720338511280715,-36.61188817117363,-35.79102738248184,-36.077077434863895,-35.16075341729447,-34.501100693363696,-34.58355125784874,-35.524808403570205,-34.710672724526376,-35.422603372018784,-35.377313289791346,-34.51229910319671,-33.91146107157692,-34.040316075086594,-34.45230793394148,-35.392632010392845,-35.92823327379301,-35.713026222772896,-36.22461945703253,-36.28276745742187,-36.987853770144284,-37.71148858452216,-38.21270195581019,-38.65523135755211,-38.39221498882398,-38.94134012795985,-39.053794347215444,-39.46371682127938,-39.6581885679625,-38.75693691149354,-39.469116143882275,-40.17316873976961,-39.91447041509673,-40.49486302258447,-40.3085039970465,-39.64576866617426,-39.94610598590225,-40.808761798311025,-41.617031522560865,-41.109742145985365,-40.66230154456571,-40.726225395686924,-40.052019311115146,-39.37908471887931,-38.817749875131994,-38.71463647251949,-39.36379696987569,-40.12879091175273,-40.789193601347506,-41.238241797778755,-42.12878475571051,-41.2562091909349,-42.19868013029918,-41.79253778234124,-40.989751232322305,-40.69785415707156,-40.114456792362034,-40.6784267667681,-41.12378358654678,-41.637803360354155,-42.17076953500509,-43.12716877833009,-42.286092159338295,-42.45565805537626,-43.33124971110374,-42.4153390256688,-42.32035829639062,-41.577089408412576,-42.55265327496454,-43.51500536734238,-43.70919830491766,-42.770710622891784,-43.54914290551096,-44.04816034156829,-43.37878961022943,-42.531728037633,-41.741090902127326,-40.821005758363754,-40.557857773732394,-39.92254943680018,-39.00208918983117,-38.36332000233233,-38.1263682032004,-38.38826743513346,-38.445308175403625,-39.04308870853856,-38.851587956771255,-39.61493671359494,-39.733078251127154,-39.929770627990365,-39.68524541473016,-39.395376161206514,-39.33061319356784,-39.357564739882946,-40.24820119328797,-40.533185901585966,-39.72653591167182,-39.28091644356027,-40.01915922900662,-39.025844692252576,-39.150144875980914,-39.27362696873024,-38.874512777198106,-39.768211929593235,-40.53306145966053,-39.97872907668352,-40.544736557174474,-41.4485193551518,-41.50108314445242,-40.54371062712744,-39.96062892116606,-40.47921460354701,-41.0753676565364,-41.04519944963977,-41.94349474273622,-41.69151037558913,-41.036188771016896,-41.365016111172736,-41.118770281318575,-40.51690081739798,-40.07706416072324,-40.38786781858653,-40.00748746749014,-39.57510793674737,-40.195101075805724,-39.83698313590139,-40.514388928655535,-39.73379193805158,-39.833423083182424,-39.61982657946646,-40.59336500521749,-40.97452487004921,-41.82536810170859,-41.088452170137316,-41.808374965097755,-41.07778948312625,-41.175851211417466,-41.622862766031176,-40.86826783651486,-40.79761003609747,-41.17436325130984,-41.56423246441409,-41.3387184292078,-41.37363177537918,-41.194104762747884,-40.20687123388052,-39.58068520529196,-39.97569911554456,-40.86858831578866,-41.48323642136529,-41.014905602671206,-40.111352591309696,-41.00921358214691,-41.69158694613725,-40.876759997569025,-41.36291724443436,-40.51346169132739,-39.86704259738326,-39.95863327616826,-39.75413899356499,-40.56386200664565,-40.748477743938565,-41.688385859597474,-41.86211615987122,-41.19857324892655,-41.49897425249219,-40.89403949165717,-41.36321824602783,-41.7331163152121,-41.03734586201608,-40.99102726345882,-40.57046626135707,-40.91963917342946,-40.503653328400105,-41.034341619350016,-40.064154798164964,-39.07740905601531,-39.99896106030792,-40.98957911413163,-40.068959443829954,-40.711927423253655,-39.84129028581083,-39.988631470128894,-40.7219012202695,-41.258326339069754,-40.728611142840236,-39.82090589823201,-39.93927707988769,-39.73872382147238,-40.16720188269392,-40.04720308305696,-39.349927198607475,-39.07631893688813,-38.936980626080185,-39.894193505868316,-40.83619584934786,-41.26282136281952,-40.816157586406916,-40.891810971777886,-40.4017379488796,-40.34515274967998,-39.875397339463234,-40.6573968809098,-39.83148726820946,-39.739237397909164,-40.37094571907073,-41.01122907130048,-41.69863904546946,-41.31241620471701,-42.25650986004621,-41.7137528792955,-42.49942721473053,-41.84275272767991,-40.99686724785715,-41.19910254096612,-40.517466080375016,-41.21458741649985,-41.36831867042929,-41.96596339112148,-41.34648278448731,-42.09315982228145,-41.16756416996941,-41.17973442655057,-41.0415335171856,-40.398805951699615,-39.6698226518929,-39.5334062455222,-40.29736188566312,-39.89885042794049,-40.19716838374734,-40.19450348103419,-40.452924645505846,-39.668856299016625,-39.90807772194967,-40.30848658271134,-40.12361290957779,-41.11173656443134,-41.27136573987082,-41.53034672047943,-40.815233727917075,-40.35308879753575,-40.5695046777837,-40.90934681892395,-41.56547522265464,-41.87007151078433,-41.89707326469943,-40.959355879575014,-41.223888786975294,-41.45505603495985,-41.384063676930964,-41.33138024201617,-41.388544735498726,-41.058097429107875,-41.21900462731719,-40.801639437209815,-40.727766865864396,-41.18811922101304,-40.32471372745931,-41.2350543118082,-40.88490674179047,-40.698052280116826,-39.99040862591937,-40.9656722182408,-40.35367763089016,-39.54949841136113,-39.73175420798361,-40.22456215182319,-40.98665823973715,-40.167782713193446,-40.43108603125438,-40.53862583870068,-39.81706018792465,-40.68550974363461,-40.040067363064736,-40.501246749423444,-40.20569735951722,-39.640898157376796,-39.099213247187436,-39.69118738686666,-39.18594794580713,-39.40977255627513,-39.94409712590277,-39.30888205114752,-39.95375456241891,-40.86746930796653,-41.59340870240703,-40.91458240384236,-41.56196652445942,-42.42124068271369,-42.988568731583655,-42.251568496692926,-41.67601105757058,-41.25954259419814,-40.37124573858455,-39.45695853885263,-39.421675133984536,-38.55325859505683,-39.22508331434801,-39.82326798327267,-38.872575875371695,-37.90397184761241,-38.22041939944029,-37.717105858493596,-37.70086254039779,-37.64142673229799,-37.811549205332994,-38.3687138883397,-39.09279941115528,-40.060532223433256,-40.65351037494838,-41.21968141756952,-41.47645604144782,-42.22876064432785,-42.64233540277928,-42.19807478506118,-41.58974110009149,-42.143277237191796,-41.158913357649,-41.72112027555704,-40.76071890676394,-40.818771209102124,-40.82932662265375,-41.58052406972274,-42.33367733238265,-41.96425923611969,-41.83988629933447,-41.43568334868178,-42.36075072642416,-42.46948623890057,-42.771845885552466,-41.98805714957416,-42.5741691631265,-42.283734610304236,-43.1523652956821,-43.090647854376584,-43.42006322555244,-42.78981951950118,-42.95144733414054,-42.336414891760796,-42.194487215485424,-42.11848509730771,-43.05386048229411,-42.61356159532443,-43.154277954716235,-42.83753818226978,-42.85220220638439,-41.97279948461801,-41.84908741898835,-41.67370451800525,-42.105416705831885,-41.70825636899099,-41.133225890342146,-41.08891793107614,-40.35176591714844,-40.58640045672655,-41.038128471933305,-40.865291168913245,-40.401836425065994,-41.221029145643115,-40.468759479001164,-41.28217326803133,-41.067679062485695,-41.688207930885255,-41.50504271546379,-42.08274993812665,-41.79912525229156,-41.89572629984468,-42.530004484113306,-42.15781073924154,-42.03319698758423,-41.285003546625376,-41.18013180466369,-40.840939801651984,-41.8389342087321,-41.23082049470395,-41.576430196873844,-41.019170159474015,-40.31891676643863,-41.11154087400064,-40.59582318458706,-41.2892031702213,-41.294712794944644,-41.283493753522635,-41.61983943125233,-41.86840573651716,-42.192925258073956,-41.97173149744049,-41.409012384712696,-40.649493974167854,-40.52527053607628,-41.39143688697368,-41.37314853677526,-41.3995256642811,-40.66556828841567,-40.20264151506126,-39.36182352202013,-39.457222217693925,-40.25219998694956,-39.31342722615227,-39.30126590793952,-38.692418618593365,-38.25720102293417,-38.366122365929186,-38.42892625601962,-39.02092865295708,-38.36652146093547,-38.24817895703018,-37.39768071612343,-37.59099196875468,-36.63299809815362,-37.241954090073705,-36.91284946817905,-37.13915478158742,-37.895940037444234,-37.9251375044696,-38.09621414961293,-37.43068163609132,-37.483117976691574,-37.15095116291195,-37.69323540525511,-37.480538338422775,-37.050941831897944,-37.60561576951295,-36.66921263653785,-37.40227673901245,-36.702142727561295,-36.264752101153135,-36.765175397507846,-36.64603655738756,-36.66357709467411,-35.88004950294271,-36.16545286681503,-36.21554536325857,-36.63365893531591,-37.61140052648261,-37.20605024229735,-36.362187372054905,-35.83335740445182,-35.685596777591854,-36.035936682950705,-35.11134497774765,-35.272196400444955,-35.830750891938806,-35.88940944196656,-35.126128868665546,-36.09334186092019,-35.822046195622534,-36.000283984001726,-36.193213931750506,-36.48026991682127,-36.8250884572044,-36.08602167898789,-35.08801947534084,-35.62257414357737,-36.55489868205041,-36.64414481725544,-36.63898369204253,-37.0603884216398,-37.288487296085805,-37.63336066855118,-38.42976210499182,-39.10586288617924,-39.24681105557829,-38.58849716326222,-38.26609708974138,-37.72946186037734,-37.26111598778516,-37.033683402463794,-37.91418028110638,-37.1461405614391,-36.7725987425074,-37.61075008101761,-37.25004704343155,-37.93682212661952,-38.678935799747705,-39.602185315452516,-39.274098590016365,-39.57032629521564,-39.01180325541645,-39.350515777245164,-38.567544092424214,-38.24340196046978,-38.382129485253245,-39.248386037535965,-38.78420472284779,-37.98183355713263,-37.889039480593055,-37.57516156602651,-36.739496239461005,-37.71079002413899,-37.5592054030858,-37.85527573665604,-37.55443221703172,-38.449847179464996,-39.11676279082894,-38.568697658367455,-38.082795212976635,-38.50775685813278,-38.05198892671615,-37.73709409823641,-37.386950282845646,-37.972019203938544,-37.451470943167806,-36.4607549267821,-35.66111406311393,-35.83064314164221,-36.10396957118064,-36.650842459406704,-35.953861735761166,-35.113947863690555,-35.4044078765437,-35.69713638210669,-36.10481322230771,-36.931869325228035,-37.570483640767634,-36.6205901610665,-36.70603263191879,-36.91557134967297,-36.35363593837246,-37.224828521255404,-37.11826257966459,-37.071282162796706,-37.483255414292216,-37.39152865251526,-36.778098836075515,-36.061617268715054,-36.37783620972186,-37.37780582904816,-37.74543482903391,-38.56245254538953,-37.66812927694991,-38.63299952773377,-37.98540739621967,-38.749397886451334,-39.15769990719855,-39.838348348625004,-40.64782428462058,-39.68134733475745,-39.63462920906022,-38.989135342184454,-39.13890498271212,-39.20782193914056,-38.309970285277814,-39.07162149855867,-38.129147585015744,-37.38428488699719,-36.729928377084434,-37.53075593570247,-37.69281699182466,-37.35485691204667,-37.51564740855247,-37.48047746019438,-36.651427330914885,-36.76494279457256,-37.245731465518475,-36.53492759447545,-36.873141563497484,-37.569745920132846,-36.97408508090302,-36.7284973282367,-37.42437619669363,-37.9201328814961,-38.856467209756374,-38.43466163799167,-39.014680492691696,-38.50857319589704,-38.42012752406299,-39.214595248922706,-40.00648960098624,-40.25251481635496,-40.80236712889746,-39.84354234114289,-39.49123154953122,-40.301985275000334,-41.218008467461914,-40.64275964349508,-39.93529446935281,-40.57340091979131,-39.610568596515805,-38.66844206256792,-39.0443737572059,-38.919913607649505,-38.13683728640899,-37.36040516151115,-38.24555698502809,-39.008844329975545,-38.724391002207994,-38.49383112043142,-38.428021129220724,-39.18080849153921,-39.312746913637966,-38.4976420737803,-37.960044907871634,-37.4684837134555,-36.879917641635984,-36.55888616060838,-36.929141968954355,-36.25815274240449,-35.509466339834034,-35.463670214638114,-34.757908017374575,-35.045378281734884,-35.11936913104728,-34.92409150348976,-34.13014481123537,-34.272937858011574,-34.78685854235664,-33.79978001723066,-33.38434733217582,-33.56791916675866,-32.60689287399873,-32.2894775220193,-32.484479538630694,-33.38387795817107,-32.519104490522295,-32.44487020140514,-31.642805160488933,-30.694138853345066,-30.265762428753078,-30.1320093232207,-30.76332408702001,-31.313686060719192,-30.742179627064615,-30.935520750004798,-31.149152079597116,-31.314384061377496,-31.210827814415097,-31.411388760898262,-31.47096158238128,-30.5921961995773,-30.917091351468116,-31.55759050976485,-30.858573510311544,-30.687899289652705,-30.367683982942253,-30.88636982580647,-30.918917092029005,-31.312289013061672,-30.378456248901784,-29.824467078316957,-29.866547087673098,-30.583224586211145,-30.78476343397051,-31.398156928364187,-31.563345349393785,-31.549791735131294,-31.386815355625004,-30.647342899348587,-30.208823177497834,-30.45805124519393,-31.376467685680836,-31.784825296141207,-31.91717838589102,-32.51330931438133,-32.979849852155894,-33.673146401531994,-34.32457781257108,-34.03849885659292,-33.915565681643784,-32.94052811479196,-33.08461093297228,-32.96739553287625,-32.532550876028836,-32.76911256229505,-32.96723039401695,-32.35326635092497,-31.385559589602053,-30.718898735474795,-31.429343377240002,-31.36864628875628,-32.23530321381986,-31.959796546492726,-32.828059332445264,-32.807174077723175,-32.732856581453234,-33.28728229738772,-33.66728819767013,-33.50644179387018,-33.3038103049621,-33.90779055887833,-34.736160886939615,-34.93539138883352,-34.06411918904632,-33.414654224645346,-32.41542123071849,-33.1048932778649,-32.94798954669386,-32.35054320190102,-32.58022214472294,-32.08891198039055,-32.126366375014186,-33.054751209914684,-33.98162788990885,-33.30716902343556,-34.144876883365214,-34.532059939112514,-33.9109136685729,-34.594719243235886,-35.410425106529146,-35.616947362199426,-34.75456792348996,-34.64344008360058,-35.09727655071765,-34.22252702014521,-34.11912376759574,-35.07543602632359,-35.58059650845826,-35.86976395873353,-35.267136285081506,-36.11980925966054,-35.732022896874696,-36.324187552090734,-35.50314842397347,-36.15251329867169,-36.490900811739266,-35.65392942447215,-35.695165222045034,-36.19831044971943,-35.34224365511909,-34.69408282870427,-34.46107533806935,-34.57512739440426,-34.32804123451933,-35.045832596253604,-35.220711768139154,-35.02414580946788,-35.30292452219874,-34.88712250441313,-34.409319845959544,-33.95162544772029,-33.732713440433145,-32.864818800240755,-33.03537263534963,-32.74872316233814,-32.61362694296986,-32.586696254555136,-33.3920772196725,-33.92559269675985,-34.05313262483105,-33.5316533758305,-34.46104754973203,-33.972346880007535,-34.112137800082564,-35.090380704030395,-34.21482628304511,-34.632379254791886,-34.83565700566396,-33.906034843064845,-34.380479401443154,-35.00551791395992,-35.833700666204095,-35.18935253890231,-35.56243277247995,-35.629356692545116,-36.15182734001428,-36.844919067341834,-36.127602794673294,-35.63501587789506,-35.09957720665261,-34.67035804782063,-33.99140335991979,-33.975416359025985,-34.744841548614204,-34.422466951888055,-34.289562047459185,-34.92962730349973,-34.304118113126606,-34.55466565582901,-34.90204755589366,-35.76717317244038,-35.22342782933265,-35.136034208349884,-35.85148379020393,-35.99252682598308,-35.355883123818785,-34.59939974267036,-34.62528810976073,-34.50631853239611,-35.23422672459856,-35.99238087143749,-36.43495512055233,-36.59374087303877,-36.32998951012269,-35.74925979832187,-35.0935100778006,-35.22639752924442,-35.885537926573306,-36.650578355416656,-37.50935197202489,-38.23835911694914,-37.699228663463145,-36.939637679141015,-36.93207234097645,-37.435644816141576,-38.02089208550751,-38.91157998889685,-38.154254400637,-38.584759160876274,-38.77343199728057,-38.64094743039459,-38.30389024177566,-38.28251964272931,-38.49397834111005,-38.54427611967549,-39.284040093421936,-38.42842626804486,-38.59349792776629,-38.936102016828954,-38.21114399144426,-37.24433709401637,-36.302933004219085,-37.12843281915411,-36.25819691084325,-36.63436473859474,-36.951148679014295,-37.624969604890794,-36.64228737773374,-35.90354479989037,-34.97263415530324,-34.09974565869197,-34.32158982986584,-33.40089882630855,-34.218529804144055,-34.44889338687062,-35.035310357343405,-35.39607977215201,-34.65391719387844,-35.48902174318209,-36.25700139719993,-37.035474366974086,-37.17580553935841,-36.331918984185904,-36.04276819573715,-35.98355722241104,-36.95361092640087,-37.93306351825595,-37.407364120241255,-38.38895371556282,-37.559712200425565,-38.152549117803574,-37.67369194375351,-37.352543042972684,-37.75982434209436,-37.294820088427514,-36.81428554886952,-37.78108492260799,-38.35257530072704,-37.59204424545169,-37.81118297530338,-37.71123371878639,-38.056629181373864,-37.945118624717,-38.86832481762394,-38.270831760019064,-38.19599657692015,-39.1135043525137,-39.062348410952836,-39.08902591699734,-39.52968117594719,-40.073736785911024,-39.59441028535366,-38.960177942644805,-39.77176003996283,-40.43798323115334,-41.085588838905096,-40.86324618011713,-41.1632707612589,-41.99330736650154,-41.29586042650044,-42.06251837546006,-41.301198778208345,-41.6090993960388,-41.31460312055424,-41.843610535841435,-42.373496822081506,-41.498083288315684,-41.89592215465382,-41.77868998097256,-42.48806220619008,-43.012250075582415,-43.21060588909313,-42.818143393844366,-43.48691852763295,-43.15921883005649,-43.731833667028695,-43.314397152513266,-43.287680653855205,-43.05526823317632,-43.74316536122933,-43.74563842173666,-44.60336185479537,-43.978355990257114,-44.54012297000736,-45.104058102704585,-45.41103585623205,-45.44984330609441,-44.68833897309378,-44.452112464699894,-44.89686748525128,-44.71724058827385,-45.06572834448889,-44.301173616200686,-44.59501088084653,-44.398559101857245,-43.53118253080174,-43.074780855793506,-43.59922214364633,-42.677892757579684,-41.70362630393356,-41.7970379400067,-41.80473840003833,-42.16131982812658,-42.966556983068585,-42.33157394081354,-42.38703330466524,-43.35884778248146,-42.46358809946105,-42.72892346885055,-43.14097818918526,-42.96939217019826,-42.52973974402994,-41.981484692543745,-42.110033297911286,-41.34295481489971,-41.54651854606345,-41.881322473753244,-42.778351437300444,-43.500338544137776,-43.38630364695564,-42.40581260481849,-42.25441904691979,-41.76555355777964,-40.97836187761277,-40.64438692620024,-40.62345984112471,-41.606330073438585,-42.51823344035074,-43.37171357637271,-43.06047312170267,-42.38370520574972,-42.24690279411152,-42.47258170647547,-41.8454599971883,-41.341523761395365,-41.740219586063176,-42.49430698901415,-42.78028888395056,-42.806555015500635,-43.71636236412451,-43.33210452739149,-42.47505550365895,-42.52697026822716,-41.903946762904525,-41.68972282670438,-40.85263485182077,-41.69675169046968,-40.97977011883631,-40.51407862547785,-41.426758045330644,-42.10620481939986,-41.17735414067283,-40.22848680336028,-39.82640206487849,-39.69416225794703,-38.85765693290159,-39.25201232731342,-39.27629659790546,-38.5915773618035,-38.52317848056555,-37.898239402100444,-36.93934040982276,-36.874945354647934,-37.73330207495019,-37.659507538657635,-37.90525833936408,-37.7706933170557,-37.48714321479201,-37.99365814123303,-38.35497467126697,-38.483354412484914,-37.54816464101896,-37.71126617770642,-37.26949736382812,-37.94581247959286,-38.24285403266549,-38.53340982878581,-38.12745826225728,-38.39316857000813,-37.875041825696826,-37.86036560451612,-38.519710952881724,-39.39887626981363,-38.95761666400358,-39.748103878926486,-39.83046863647178,-40.52418162347749,-41.04098201170564,-41.593762354925275,-41.635005318559706,-41.548472731839865,-41.89634442329407,-41.20712252473459,-42.06705027073622,-41.9620302147232,-42.81623709248379,-43.234433902893215,-42.484216663986444,-42.863924983888865,-42.55903610168025,-41.95438359444961,-41.02378032589331,-40.11241593491286,-39.60685943160206,-38.817975067999214,-39.53549239272252,-39.86301447590813,-39.65537626249716,-39.930649652611464,-39.097033821977675,-38.26242708833888,-38.39859723020345,-39.00781255401671,-38.640899332705885,-39.34272274840623,-39.7561953747645,-40.04044631868601,-40.738048892468214,-41.029554629232734,-41.79107252229005,-41.19169793976471,-41.831767085939646,-41.851637644693255,-41.865794078912586,-41.74937028856948,-41.074321834370494,-40.56366068776697,-39.70970080466941,-39.779664256144315,-40.3897017291747,-40.912079071160406,-39.99513652967289,-39.63254047418013,-40.22953984094784,-40.91388952732086,-41.41627014288679,-40.487877959851176,-40.53209720738232,-40.905322302598506,-40.70723815495148,-40.943105151411146,-41.066393041051924,-40.96780499024317,-41.11585376644507,-40.14910030178726,-40.66452107485384,-40.811125044710934,-41.25227847788483,-40.823496374767274,-41.66621372103691,-42.11376812495291,-41.72514904756099,-41.1192790903151,-40.4939190861769,-41.273217398673296,-40.60323183611035,-39.97019565617666,-40.529477966949344,-40.36443319777027,-41.06523618474603,-41.13474535709247,-41.465582638047636,-41.359481998253614,-41.208489450626075,-40.93042730726302,-41.22138930577785,-40.97608917020261,-41.444089425727725,-41.824206015560776,-40.92638410581276,-41.24491900019348,-40.35464718239382,-39.474257096648216,-39.62051933724433,-39.71809662738815,-40.13183446461335,-39.777622922323644,-39.47801279462874,-38.6230718572624,-38.0064783222042,-38.14334503328428,-38.02709741005674,-37.69945568032563,-36.861111343838274,-37.61517783720046,-37.91474064113572,-38.85559292463586,-39.071753583848476,-38.36680170753971,-38.177333247382194,-38.54554830491543,-38.773491562344134,-39.02803281834349,-38.243339410983026,-38.87696508737281,-38.21849162550643,-38.86817933758721,-39.44464890751988,-39.242812322452664,-39.120995566714555,-39.72914152778685,-38.78974215919152,-38.68902614247054,-39.45863625919446,-38.69441808992997,-37.98868306353688,-37.841966583393514,-37.84649800043553,-37.361688003875315,-37.519897288642824,-37.89982149004936,-38.32427486870438,-39.27929122233763,-38.96280165063217,-39.36506226286292,-38.55819738982245,-38.67483529355377,-39.53939854633063,-40.49160721153021,-40.36596346180886,-39.37278077239171,-38.942737005185336,-39.916388450190425,-39.97722500329837,-39.33593870699406,-39.27049004472792,-38.96373187517747,-38.46503667347133,-39.349938491825014,-38.792640667874366,-38.999378639273345,-39.38204330438748,-39.89182254113257,-40.695182371884584,-41.01456374209374,-40.75766707537696,-40.36204608390108,-41.01254259608686,-41.778533563017845,-40.99148226343095,-40.964765737298876,-40.22317334730178,-39.99945167219266,-40.02098392182961,-40.79918075352907,-40.97441114438698,-40.106739287730306,-40.67181278858334,-39.934245438780636,-39.24436351843178,-38.84271317580715,-39.34978238726035,-40.25577263906598,-40.69219403155148,-40.12269523739815,-40.60155934235081,-41.066573879215866,-41.71429243963212,-42.51803639577702,-43.17405558889732,-43.1870455048047,-42.649531366769224,-42.66994689544663,-41.95639328798279,-41.0704529536888,-40.89956029318273,-41.13591895112768,-40.49408958526328,-41.191050455439836,-41.846258288715035,-40.87638738984242,-40.71222452260554,-40.60288020782173,-39.852864081040025,-40.09957928489894,-40.8813749095425,-40.265001739840955,-39.88498954242095,-40.305542793590575,-41.24595920741558,-40.34392426395789,-40.0356911146082,-40.33891767915338,-40.52253547264263,-40.69927949178964,-41.05840991111472,-40.071806957013905,-40.34832801902667,-40.59285967005417,-40.776390734594315,-41.37793506169692,-42.13108068378642,-41.217584155034274,-40.413364686537534,-40.280511165969074,-39.45229716645554,-40.02673577982932,-39.73933381540701,-40.450423476751894,-41.18530704220757,-41.978395972866565,-42.81779674440622,-42.67478859052062,-42.00341694615781,-42.40546439541504,-42.164824878331274,-42.764320861548185,-43.63868088833988,-44.54342915629968,-43.95669708540663,-44.909682012628764,-44.02913956716657,-43.115929630585015,-43.94200163707137,-44.582697096280754,-45.50699043646455,-46.220026118680835,-45.97831331240013,-45.7895994912833,-45.34303563507274,-45.211115307640284,-45.66596543043852,-46.38223339151591,-46.702290057670325,-45.7626240788959,-46.559035246726125,-46.83175850054249,-47.61219202913344,-47.62098297663033,-47.25821679178625,-47.38876263611019,-48.27948269015178,-49.19926292076707,-49.476768522989005,-49.86156909260899,-50.459575028158724,-50.69306839071214,-50.982583184726536,-50.589108746964484,-50.34157970827073,-50.93393522873521,-50.33106258371845,-51.1135146827437,-51.90317883435637,-51.83436866104603,-51.25886950176209,-51.24789152061567,-51.87677069194615,-51.096069179009646,-50.49032633891329,-50.81556890811771,-49.9580433415249,-49.22317957226187,-49.384639241266996,-48.79731956822798,-49.313958703540266,-49.284733277279884,-48.409437153022736,-47.48530047945678,-47.05130062298849,-47.027847819495946,-46.539790771435946,-46.3595736194402,-46.628124254755676,-46.539612476248294,-46.228909846395254,-45.99944765353575,-46.003203955013305,-45.12065494572744,-44.906863543670624,-44.35588200530037,-44.60988934431225,-44.45086747407913,-44.46103113377467,-44.79887071624398,-44.34595507569611,-44.61318059684709,-45.34481734549627,-45.06170199858025,-44.701612850651145,-44.68987133260816,-44.56312948372215,-43.704185974784195,-44.03552391612902,-43.95623755035922,-43.35277343727648,-43.28941850271076,-43.275132566690445,-43.38997951615602,-43.120232846122235,-43.58914670813829,-44.21227667899802,-43.8543306440115,-43.74611418740824,-43.55716484459117,-44.199396471027285,-45.04763740301132,-44.788013129495084,-44.52997520053759,-44.91674596304074,-44.068483674898744,-44.17475081747398,-43.54177615325898,-43.377287584822625,-44.200416061561555,-43.535431924276054,-43.94780247518793,-43.661923790350556,-43.13502494990826,-43.59950886759907,-43.61662024818361,-43.776920513715595,-43.03646002942696,-42.71008380362764,-43.21490423427895,-42.51895606610924,-41.56382602266967,-40.603430392220616,-39.901708636432886,-40.131377421785146,-40.23841291293502,-39.54542979551479,-39.64385277358815,-40.15079568652436,-39.9173723673448,-39.49528239201754,-39.70801718952134,-38.7332683284767,-38.92188708530739,-39.34002183098346,-39.82285434938967,-39.607448229100555,-39.86813028668985,-39.12542588170618,-38.34036098467186,-38.561354676261544,-38.71765354368836,-38.168626096099615,-38.60329544218257,-39.2351313601248,-39.60606766073033,-39.459446218796074,-39.58080161595717,-39.33948744274676,-40.287017062772065,-40.536953574512154,-40.95552725857124,-41.43278517946601,-41.517920025624335,-42.386146671138704,-43.09479162050411,-42.51308076409623,-42.668693906161934,-42.91377477347851,-42.33456589700654,-41.50052241841331,-40.61817917972803,-41.42263514222577,-41.2756819864735,-42.10145044885576,-42.35357456514612,-41.47400693548843,-42.11535564204678,-41.964718400966376,-42.7354549667798,-42.670875461772084,-41.89658014383167,-40.9856366883032,-40.25312928017229,-40.63819607812911,-40.72978098783642,-41.05733560491353,-41.06217500427738,-42.03211764805019,-42.25750002730638,-42.47613255213946,-43.309415184892714,-43.25221900967881,-43.58477423153818,-42.94184996141121,-42.44227047264576,-43.39554302766919,-43.65460134902969,-43.534212411846966,-42.55861574085429,-41.93793031806126,-42.84945135097951,-42.78607924748212,-41.970208276063204,-42.53786776959896,-42.39454228710383,-41.497345285024494,-40.76008983515203,-40.684741935227066,-40.37151222769171,-40.631941116414964,-41.320158468559384,-40.642379568424076,-39.94174165697768,-38.98371148435399,-38.62191990809515,-38.71930051082745,-39.13090932555497,-39.14433586318046,-38.83987433323637,-39.16698161140084,-39.596345419529825,-39.23641849542037,-38.42429363774136,-37.91603872785345,-38.62894848966971,-38.325852502603084,-38.659401634242386,-38.70803338801488,-39.27457607956603,-38.668459167238325,-37.71044308459386,-38.195011116564274,-37.31468374794349,-38.268167758826166,-38.62836920842528,-38.22777056414634,-37.90023455861956,-37.51196867786348,-37.11570032034069,-37.310466622468084,-37.585664527025074,-37.23268575174734,-37.125942568294704,-37.91888407478109,-38.35466991085559,-38.42760154046118,-39.17328193085268,-39.52966276276857,-39.735552767757326,-39.706231352407485,-38.93886560341343,-39.87182155717164,-39.27990112779662,-38.68777760164812,-39.62267945241183,-40.21876364573836,-39.38591535715386,-39.087134319357574,-38.21126570133492,-37.47458192240447,-37.00593627570197,-36.693729280959815,-37.569699784275144,-36.759244222193956,-36.82366879796609,-36.11776936147362,-36.94077887851745,-36.75634777639061,-36.18172595370561,-36.295350551605225,-37.116421011742204,-37.785883851349354,-37.79843492992222,-37.28552194638178,-37.94736816547811,-38.3184019010514,-38.27471966901794,-37.46559489099309,-37.58553987648338,-37.98325337888673,-38.51803940255195,-38.987064719665796,-39.896413593087345,-38.975161243230104,-38.99842245085165,-39.6557286856696,-39.23565029259771,-38.698107216507196,-39.64898457424715,-39.85551911778748,-38.93107215920463,-38.7880273652263,-39.31443274579942,-39.472323113586754,-38.681909372098744,-37.753742524422705,-37.04344601742923,-37.78120819013566,-37.83448005607352,-37.62173471506685,-38.05116421636194,-37.21125632664189,-37.50869217701256,-38.455156774260104,-39.269476782530546,-39.84913387801498,-39.28328302549198,-39.588729582261294,-39.38342789001763,-38.56745085446164,-39.100808767136186,-40.014356933534145,-39.49351701606065,-40.01230977848172,-39.994582540821284,-40.17155567230657,-39.54922359390184,-39.686355989892036,-40.59745211806148,-40.3062434992753,-40.60502278804779,-39.95028275344521,-39.05964159965515,-39.96498006116599,-40.32968477671966,-39.424054668750614,-39.41791846090928,-39.38688186602667,-40.12596091069281,-40.32291368301958,-40.96075171791017,-40.60478302324191,-39.651529411785305,-39.757566947024316,-40.51934847747907,-41.30100753484294,-41.22417535353452,-41.70185759337619,-41.21159287262708,-40.23215496819466,-40.77976805949584,-41.39558153273538,-41.893593857530504,-42.727699890267104,-42.9430999555625,-42.196440213825554,-42.176760274451226,-43.07611804874614,-42.468539798632264,-43.24756872979924,-43.96226345282048,-44.33306329604238,-44.5745556759648,-45.080222005955875,-45.798365109134465,-46.58490760065615,-46.1785986693576,-45.25515250535682,-45.52696845540777,-45.27571595273912,-45.44533331040293,-45.760804175399244,-45.976533649489284,-46.55657214485109,-46.988836887758225,-47.33959274040535,-46.49145208718255,-45.95221658190712,-45.42114504147321,-45.55036363378167,-46.06576378503814,-47.001280000433326,-46.692997925914824,-46.956674554850906,-47.44165999209508,-47.25805822759867,-47.99626524699852,-47.04443731671199,-46.59556178422645,-46.431859706528485,-47.365836021956056,-46.43437128327787,-46.305549051146954,-46.56590544851497,-47.153190560638905,-47.403400228358805,-48.179124381858855,-47.5333043099381,-47.92950726253912,-47.41201921924949,-47.68806867673993,-47.97835092339665,-47.2596562015824,-46.48019378585741,-46.619149200152606,-46.08813640475273,-46.43345870869234,-45.925098319072276,-46.805160420015454,-47.653475425206125,-48.288064788561314,-47.7478309776634,-47.01950749522075,-47.1004916485399,-46.78749745711684,-46.55932283727452,-45.72156335413456,-45.1110627008602,-44.51943915011361,-44.9808542332612,-44.31611529365182,-43.744828740134835,-43.810789003036916,-44.50387816457078,-43.707230851985514,-43.75643031997606,-44.52000617841259,-45.289771172683686,-44.70478973956779,-44.94665072020143,-45.06917271949351,-45.87934245960787,-46.35749379079789,-46.6216881563887,-45.750765746459365,-45.09390977257863,-45.070306580048054,-44.27039996581152,-44.26487569557503,-44.961823084857315,-45.15121252182871,-46.0819483040832,-45.517085085157305,-44.994797475636005,-45.88355607446283,-46.475278788246214,-46.95102720614523,-46.64160881051794,-47.39772509224713,-46.97618555277586,-46.302157817874104,-47.12990393768996,-47.391915942076594,-47.74553390406072,-47.71406710986048,-47.62544100033119,-46.75730662513524,-46.36098696338013,-46.1465995805338,-46.918311917223036,-45.950675474945456,-46.268880628049374,-47.26765219075605,-46.894889988936484,-46.10095272958279,-46.601878612302244,-46.995677133556455,-47.06164106866345,-47.59197943517938,-48.55400284007192,-48.644480084534734,-49.12092792149633,-48.853619584813714,-49.82918398268521,-49.802713450510055,-49.095503779593855,-49.794111744035035,-49.727603605017066,-50.636745505500585,-50.185649077408016,-49.430271718185395,-49.70481452252716,-49.04424951411784,-48.58861843403429,-48.356818614993244,-49.086176122073084,-48.59138852311298,-47.65081147570163,-47.117556107230484,-47.196228459943086,-46.25208229292184,-45.68068086588755,-44.75889322720468,-44.53506103018299,-43.64378128107637,-43.640433424618095,-44.058880645781755,-43.93479857780039,-43.70000418275595,-42.991388289723545,-43.16858318494633,-42.18968264339492,-42.29432193515822,-42.9886760301888,-43.909292166586965,-43.86434981552884,-44.712046046275645,-45.4506274824962,-46.144976088777184,-46.12216574372724,-46.27841475373134,-46.09360579121858,-45.268611799925566,-44.9986849357374,-44.71612159535289,-45.00408601993695,-45.74906723247841,-44.82258595060557,-45.730207859538496,-45.304112122394145,-44.781990985386074,-43.98277796152979,-43.49545013299212,-42.52838150272146,-43.29738845163956,-43.09227528749034,-42.43228949420154,-43.225541956722736,-43.560290393885225,-43.66865926794708,-43.10111275687814,-42.354092333465815,-42.795653925742954,-43.11857486655936,-43.99476380459964,-43.67540434980765,-44.24429878173396,-43.85889916494489,-43.695648746564984,-43.48930206382647,-42.56580094341189,-43.53629765892401,-44.24873703951016,-44.191683625336736,-43.589018574915826,-44.05874016229063,-44.30447706906125,-44.34237222420052,-44.953405771870166,-44.55001598596573,-44.07032763119787,-43.44792131939903,-43.16472050640732,-43.85043421480805,-44.72090469952673,-44.90883818920702,-44.87839135574177,-44.365633122157305,-44.52518868353218,-45.37410379340872,-45.716325712390244,-46.34044087771326,-45.44511558115482,-44.80323305912316,-44.962345802690834,-45.092326149810106,-45.25093271676451,-45.107757987920195,-45.69829455437139,-46.6335099413991,-46.15902332449332,-45.688161705154926,-46.23810090217739,-46.62609761953354,-47.51060115266591,-47.51151760201901,-48.113273868802935,-48.67305519198999,-48.60212541883811,-48.70557812368497,-49.5213388716802,-48.748544516041875,-49.44178774720058,-50.22792082838714,-50.08871412370354,-50.16837155120447,-49.24027983518317,-49.99137177551165,-49.18855571420863,-48.27372537832707,-48.3634870913811,-47.734249560628086,-47.41678606066853,-47.72147775720805,-48.03266271529719,-48.452260569203645,-49.130224467255175,-48.744984589051455,-49.45543808070943,-48.53967725485563,-49.12677879584953,-49.11141177266836,-49.1330905361101,-49.37412095302716,-49.61808131588623,-50.57160794176161,-49.664395422674716,-50.59033065708354,-51.56405579391867,-51.48507803492248,-51.08586334530264,-50.15791623806581,-49.95229003159329,-50.243001956958324,-49.34722612099722,-49.3523516417481,-49.329881508369,-48.364929949399084,-47.91879466874525,-48.25951210828498,-48.097853880375624,-48.919408584944904,-49.20119943888858,-49.78207411011681,-48.95721973199397,-48.433979333378375,-48.00910774897784,-48.71031629899517,-48.61745676770806,-49.5781570780091,-50.36352213192731,-49.79738154215738,-49.97513403510675,-49.781968323048204,-49.74968455405906,-49.55773220350966,-50.42329195700586,-49.42760874237865,-49.327369569800794,-48.87345392117277,-47.90730854636058,-48.7345767444931,-48.63798878947273,-48.213433421216905,-47.81007323041558,-47.11685437057167,-47.95823611970991,-48.755386069417,-48.60453014774248,-49.07280805008486,-49.03413150925189,-49.24579726019874,-49.82848240947351,-50.35373237216845,-50.988763839472085,-50.54160056915134,-51.15415856987238,-50.9555170587264,-51.52230266015977,-51.18559018149972,-50.5812623789534,-51.36479890393093,-52.06092409417033,-51.48885343270376,-50.506997995078564,-50.898583609145135,-51.51772429840639,-50.81117731006816,-50.33978737005964,-51.05758177489042,-51.12029076879844,-50.503206721972674,-51.395797497127205,-50.823204829823226,-51.2942528068088,-51.9899593424052,-52.15146623831242,-52.246858986094594,-52.713120352476835,-52.03327036136761,-52.03083276189864,-52.210850591771305,-51.81770272552967,-51.01922598388046,-50.30343640083447,-49.7392124440521,-49.882416549604386,-50.08739884663373,-49.199117575306445,-49.344158532097936,-49.26837212732062,-49.3996150479652,-49.46585471741855,-49.02244770945981,-49.15255727665499,-49.39541595755145,-49.612516050226986,-48.931400990113616,-48.76402334868908,-49.05590448575094,-49.299447167199105,-49.629182511009276,-49.24948977120221,-49.797748011536896,-49.64198257122189,-50.45195750845596,-50.404187271837145,-51.24299980420619,-51.85553924879059,-52.434116777032614,-53.044481384567916,-52.95286578359082,-53.267053216230124,-53.65412913588807,-54.463050422724336,-54.8804646525532,-55.4608917334117,-56.278949421364814,-56.02165885595605,-55.58006451325491,-56.08323040092364,-55.9388578296639,-54.93993813591078,-55.08736992254853,-55.29983197338879,-55.18152979994193,-54.66662798728794,-55.632433890365064,-55.79011397296563,-55.5510081150569,-54.974344870541245,-54.68656067783013,-55.671137924771756,-55.544519388116896,-56.4689458203502,-55.635670834220946,-55.32798532722518,-54.41742237331346,-54.256675688549876,-54.9797571497038,-55.53723775828257,-55.74629167187959,-54.80751996068284,-54.62274193810299,-54.115516886115074,-54.61681700963527,-54.78197824396193,-53.86843672161922,-54.632264864631,-54.66480460576713,-54.088640712201595,-53.678455190267414,-53.75559695949778,-54.15336784068495,-54.88930737692863,-54.31858131010085,-55.23981929663569,-54.682246243115515,-54.99346749344841,-55.07397862151265,-55.37285293452442,-56.21506655216217,-56.8858774532564,-57.840989088173956,-58.10504680685699,-58.02099839411676,-57.73243272351101,-57.995926768984646,-57.30476587172598,-57.33299381611869,-56.88395328586921,-57.24437819281593,-56.36278531001881,-57.27955954987556,-56.93697336502373,-56.97594040539116,-56.51258858758956,-56.38182885060087,-57.352735712658614,-58.29774889815599,-57.59613436507061,-57.31456996826455,-58.19456876581535,-57.98365612886846,-57.39248183649033,-57.437763592693955,-57.22125790361315,-56.98569632647559,-57.94838752131909,-58.10874723922461,-57.40680911205709,-57.58926074579358,-56.99684345209971,-57.91021071141586,-58.21917886240408,-58.232416215818375,-57.941271875053644,-57.2584558846429,-57.547798997256905,-57.64415783947334,-57.670563279185444,-57.27406721562147,-56.89970765635371,-57.761934673879296,-57.81295818043873,-57.94486117735505,-57.867292676121,-57.32637775037438,-57.89093957748264,-57.33466153033078,-56.87844709213823,-57.135625383351,-56.4109341413714,-57.199892160948366,-56.38407778413966,-56.21806247951463,-56.43469780217856,-57.139459872152656,-56.43785045808181,-56.650742162019014,-55.73977583553642,-56.470090059097856,-55.84498497238383,-55.9485742226243,-56.529706455767155,-56.808140952605754,-56.75108131580055,-56.82835742738098,-57.47923910757527,-57.84266069997102,-58.636982787866145,-58.47842001123354,-59.35262350831181,-59.69031474599615,-59.5550653943792,-60.53064184403047,-61.47622905950993,-61.76516997721046,-62.595697270240635,-62.761557187885046,-61.91508233221248,-62.175886295270175,-63.11289340490475,-62.374700819607824,-63.22896677907556,-64.13743762299418,-63.86377811105922,-64.38179092342034,-64.50731087103486,-63.88932805042714,-63.613575119990855,-63.698604327626526,-62.860740323551,-63.00643367739394,-63.75255692191422,-63.45346662355587,-63.122373475693166,-63.9546730867587,-63.16548666078597,-63.16887244768441,-62.21210802998394,-62.93275823164731,-63.80642817495391,-62.99615515442565,-62.54818902537227,-62.85653400514275,-62.09775093337521,-61.09872268047184,-61.36499162996188,-60.88122657313943,-60.27260410832241,-60.473306871950626,-60.127190774772316,-60.951387400273234,-60.05681367171928,-60.650891927070916,-60.02254743082449,-60.3549174554646,-60.43200539750978,-61.27135981619358,-61.58866208139807,-61.949013269040734,-61.89605488488451,-62.25397178390995,-61.637454280629754,-62.62797004543245,-62.18893110053614,-61.31481453496963,-61.11984253907576,-60.31906516151503,-60.365090867038816,-59.89576085843146,-60.19486486911774,-60.52716819383204,-60.820804730057716,-59.845261758193374,-60.12283771438524,-60.5800937730819,-61.38362462539226,-60.77401110297069,-61.771832197438926,-61.69764103461057,-61.16585877351463,-61.29375798115507,-62.09372199140489,-63.088753181509674,-62.47668831329793,-62.40204326994717,-62.907844197936356,-63.502828932367265,-63.007695719599724,-62.408674203790724,-61.57009544922039,-61.51125496812165,-62.35284966463223,-61.407875096425414,-61.31602246919647,-60.94617878878489,-61.29411527700722,-61.66435139114037,-62.14348824042827,-63.10978170251474,-63.4477546736598,-63.694625708740205,-62.82571983896196,-63.686859926208854,-63.129932932555676,-63.614592102356255,-64.23158353054896,-63.4458770188503,-63.019966654945165,-63.269448895938694,-62.4059521285817,-62.46652396162972,-61.77317060250789,-61.754564022645354,-60.94052579300478,-61.022127888165414,-60.23987306794152,-60.820285491179675,-60.38894423050806,-60.595370303373784,-61.289559359662235,-61.193930928595364,-60.230257419869304,-60.4814948127605,-59.6383139626123,-59.743246919475496,-58.87693728413433,-58.85283005191013,-59.48223833506927,-59.11825037840754,-58.89445484243333,-59.50482930755243,-59.6189839662984,-60.056691989302635,-59.78219831362367,-58.97266433574259,-58.5067759254016,-58.60677889036015,-59.1558593143709,-58.80500465398654,-59.29579982953146,-59.29143317043781,-59.537185456138104,-59.07810788881034,-59.88149564852938,-60.26063579786569,-59.55479336157441,-58.98008436802775,-59.79024620447308,-60.497949994169176,-60.71191218029708,-61.360927507746965,-61.502846595365554,-61.95942850364372,-61.78220778191462,-61.626050614286214,-62.620282768737525,-63.37718099961057,-63.936772409360856,-63.370996268466115,-63.040821904782206,-63.62826652498916,-63.95481855608523,-64.88782790256664,-65.09483049297705,-65.89184963004664,-65.91179802129045,-66.7736221048981,-66.53943005856127,-66.79514865484089,-66.7651358069852,-66.19612325169146,-65.38137880759314,-64.99155759625137,-64.44846728397533,-64.34520730283111,-64.37005702918395,-64.28754293965176,-64.5505693340674,-63.692451933864504,-64.33868537377566,-64.92355628777295,-64.74670312087983,-65.14532553870231,-64.5859329435043,-64.35881084343418,-63.77996162278578,-63.056023999117315,-63.183093090076,-63.59875691263005,-64.27756155701354,-64.80889683030546,-65.17291181301698,-64.86307080462575,-64.99078163364902,-65.65054067363963,-65.8797386852093,-66.09337881812826,-65.65087959822267,-66.01135408552364,-65.1143260980025,-64.44008929887787,-63.939718884881586,-64.04075311357155,-64.78607369679958,-65.24431205587462,-65.10618343157694,-64.17606974672526,-63.51639946876094,-63.398058648221195,-64.23666612710804,-64.58716559642926,-63.846792947500944,-63.45693906955421,-62.5195942283608,-62.628875649534166,-63.095849049743265,-62.2223729272373,-62.24483307264745,-62.233690549153835,-62.84593647858128,-63.527117065154016,-63.35857772640884,-64.27209933940321,-63.52329842047766,-63.45257724588737,-64.14646411500871,-65.09758667089045,-65.94567571207881,-66.09739473555237,-66.93070673430339,-66.48301953263581,-66.29381355084479,-66.98742137849331,-67.06876306375489,-66.69119104463607,-66.45281021669507,-67.0552117167972,-66.500683340244,-66.82226708997041,-67.54365483811125,-68.18072141893208,-68.16179385129362,-67.5601206291467,-67.8293563327752,-68.79981364728883,-69.23912655189633,-70.02036080975085,-69.60375758446753,-68.83120282925665,-67.84029179206118,-68.39597878139466,-68.2452801563777,-67.91569985216483,-68.13567933579907,-68.01921950187534,-67.2788554476574,-66.95408502034843,-66.79675941867754,-66.61243305169046,-66.12490949267522,-65.86970441089943,-65.52733161440119,-65.85685189953074,-64.92041465081275,-65.04155665123835,-65.48968389164656,-65.26395954284817,-65.4672970958054,-64.70989669393748,-65.07249077828601,-64.53112568054348,-64.59688336309046,-65.24873259104788,-65.2485700356774,-65.38198179984465,-64.98254212690517,-64.10926973912865,-65.00051517225802,-64.31443656096235,-64.33953607920557,-63.898680842947215,-64.29900112980977,-63.48157124128193,-64.19671686785296,-63.29398133512586,-62.30228058015928,-62.123729003127664,-63.08083581691608,-62.87886809697375,-63.113329882733524,-62.14414933230728,-62.86857109377161,-62.0503593897447,-62.279635859653354,-61.32435346348211,-60.42434255825356,-59.79228582046926,-58.94633153406903,-59.151435227598995,-59.15090149221942,-58.99300543265417,-59.84724974445999,-60.02040251670405,-60.40741041582078,-60.80235347524285,-60.35487575922161,-60.762875725049525,-60.03837036527693,-59.0671092714183,-58.858905115164816,-58.349406940396875,-58.62996440753341,-58.847622632049024,-58.836221392732114,-59.566170782316476,-58.89526636945084,-59.38476978614926,-60.30642463453114,-59.35639999015257,-59.90970018738881,-60.66038716584444,-60.973463780246675,-60.763023836538196,-60.988599905744195,-60.38733903784305,-59.683855002745986,-59.96552219288424,-59.33740177471191,-60.21318158414215,-59.29533353820443,-59.78150111855939,-59.35392550751567,-59.25953234639019,-59.298878721892834,-58.78313711844385,-58.57018888415769,-58.149008098524064,-57.641822351608425,-56.76756157819182,-56.181279624346644,-56.2168731065467,-55.561889913864434,-56.45104380697012,-56.04678875906393,-56.54206484928727,-56.464221781585366,-55.94790254998952,-56.319201349280775,-56.400521892122924,-56.32040112745017,-56.728611493017524,-57.58224436966702,-57.6979325436987,-58.59046952985227,-58.60519435303286,-57.65054379589856,-57.050927087664604,-57.97677202615887,-57.15190781885758,-57.79006504872814,-58.00800124229863,-58.56387823307887,-57.90203683171421,-57.2245134441182,-57.43812787998468,-58.12978343991563,-58.135653676930815,-57.73237680736929,-58.18756547244266,-58.374395289458334,-58.83955398295075,-58.2455013631843,-57.68867398891598,-56.765208611264825,-56.56251466833055,-56.95787785761058,-57.144676465541124,-56.547892158385366,-55.81151574337855,-55.05524559598416,-55.85339352814481,-56.47938980674371,-56.599958460778,-55.92078528786078,-56.40848471131176,-56.483622937928885,-56.039662939962,-55.79008106375113,-55.28285187948495,-55.103873786050826,-55.912390150595456,-55.65649718884379,-56.51287362491712,-57.069263951387256,-56.11765725398436,-55.14960906282067,-55.61134971212596,-56.03818600345403,-56.671124963555485,-56.19849710725248,-55.37118253624067,-55.82680512871593,-55.20469568064436,-54.572046630550176,-54.66139263426885,-55.58611650578678,-54.9491695985198,-55.57047810172662,-54.97237909026444,-54.63052230933681,-54.19268914824352,-54.433318953961134,-54.14331470290199,-53.32477460755035,-54.11634526075795,-53.59293538145721,-52.80674415035173,-53.10345932049677,-52.8869823156856,-52.08299037208781,-51.171278438996524,-50.30890727555379,-50.508636879269034,-51.15451330784708,-50.329943967517465,-49.87614269508049,-49.75082560861483,-50.42077465169132,-50.05087543046102,-49.513641119003296,-49.09928234992549,-48.97959222039208,-49.9615338165313,-49.08010255359113,-48.20028598839417,-48.25587538490072,-48.04329788452014,-47.600079640280455,-47.92654272355139,-47.62112513463944,-48.56316134519875,-48.402168521191925,-48.130566489417106,-47.37500064820051,-48.09872474567965,-47.421687382273376,-47.618757616728544,-47.564764198847115,-48.30687919259071,-49.21855791145936,-48.86021887836978,-48.50784626696259,-47.66158982878551,-47.206599958240986,-47.25890993187204,-48.069129107985646,-48.35653229756281,-49.058863282203674,-49.52631007647142,-48.58195687411353,-48.909508978482336,-49.72375368513167,-50.615354425273836,-51.52837739279494,-51.559258956462145,-50.965713512618095,-51.35500904126093,-50.71788727398962,-51.65919174486771,-51.62296625645831,-51.48128384305164,-51.008395459502935,-50.23133441526443,-50.69605686143041,-50.22810841863975,-49.63373220618814,-49.18568999366835,-48.435803902801126,-47.439608624670655,-47.29783855844289,-46.84502311749384,-47.05220394441858,-46.763896262738854,-46.909611409530044,-47.11578555358574,-46.84798831818625,-46.38981662876904,-46.628224392421544,-45.80315162660554,-45.95322112366557,-45.845960947684944,-46.28170093521476,-45.58343153912574,-45.89836892252788,-46.7547985422425,-46.594170544762164,-46.773788331542164,-47.678234005812556,-47.42534382781014,-48.24452738650143,-47.29364413814619,-47.76461271522567,-48.658324213232845,-47.80353263858706,-48.44770528562367,-48.055115825962275,-47.84973442507908,-48.42573686968535,-48.71053543034941,-49.35984696587548,-49.64088976383209,-48.77320607099682,-48.225615116301924,-47.29844948044047,-47.70148460101336,-48.506124852690846,-48.7958576255478,-49.54371532332152,-49.65963197266683,-50.57561814785004,-49.79835438868031,-50.76819705963135,-50.5543592358008,-50.0296203577891,-49.562477100640535,-49.100782168097794,-48.57570154545829,-48.4940862194635,-47.60515614179894,-47.47465479327366,-47.829595850780606,-48.715675542131066,-49.27185207931325,-49.2147019803524,-48.96391641162336,-48.44532974995673,-48.52693436387926,-48.25359216937795,-48.00196800613776,-47.578458464704454,-47.866836823988706,-47.317153910174966,-47.409573612734675,-48.239391833078116,-47.88442992139608,-47.50973127968609,-46.85713822953403,-46.428546310868114,-47.41162373870611,-46.486026102211326,-47.108021148946136,-47.4238499943167,-47.94678320782259,-47.21478412114084,-46.87553521618247,-46.59264077898115,-46.964362991042435,-47.85471194284037,-46.893681878224015,-47.682636657729745,-47.154885524883866,-46.411459708586335,-45.90685114497319,-46.75623903935775,-47.19883241830394,-46.26828742586076,-46.20361617067829,-46.32050755806267,-45.72952846484259,-45.7617775821127,-45.35703932587057,-45.42196132428944,-46.04698281176388,-47.00859379442409,-47.155077564995736,-46.19070269493386,-46.68868082854897,-46.12166241090745,-46.969475123565644,-46.35764759173617,-45.746405243407935,-46.745742928702384,-46.38111902028322,-46.564592455048114,-46.0573397106491,-46.778849388007075,-46.1508155958727,-45.25887378398329,-44.58307289611548,-44.85625423118472,-45.24256270052865,-46.01157211558893,-45.46455094218254,-45.632885423023254,-46.384407471399754,-46.499361844267696,-45.612076743505895,-45.293502390384674,-46.17373153101653,-46.12250138446689,-46.01703169569373,-45.89147789590061,-45.33880520099774,-45.725005615502596,-46.51657721120864,-46.2512873490341,-45.54604850243777,-45.71492028655484,-45.195816330146044,-45.151592855807394,-44.503639289177954,-43.838476463686675,-43.62921936484054,-44.46110999304801,-43.992896147072315,-43.676209764089435,-43.51364684291184,-43.73581384913996,-43.78622303670272,-43.000065717380494,-42.99682350503281,-42.56492338934913,-42.28613650705665,-42.264574103057384,-42.297642847988755,-41.474361119326204,-41.623900540173054,-41.9651938341558,-41.75790000613779,-40.9060780974105,-41.89699084451422,-41.40759945195168,-41.88801850704476,-42.15217490121722,-41.9134775120765,-42.77858519228175,-42.87078008009121,-43.39121768483892,-43.03747866488993,-43.627460727933794,-42.73578592110425,-43.566305491607636,-43.74782892409712,-44.7324619917199,-44.90731261577457,-45.69435770902783,-45.187300798948854,-45.41426743939519,-45.590190350078046,-45.28719757683575,-45.91803274536505,-46.1293220105581,-47.08565197233111,-47.45196560304612,-47.18392653018236,-46.83335684519261,-47.07275791512802,-47.10291580297053,-47.57244776701555,-47.23734376532957,-46.62351310020313,-46.74829706130549,-46.40181858604774,-46.25467679928988,-46.54328188020736,-45.89031588472426,-46.06719955615699,-46.91555229946971,-46.48821998992935,-46.91399862524122,-46.72899910621345,-46.961302678100765,-46.21101257111877,-45.71134452149272,-45.083033363334835,-44.21315861400217,-43.89850813662633,-44.77064790390432,-45.716819850262254,-44.96842526597902,-45.38421626528725,-44.95312681701034,-44.9307389263995,-44.79872360872105,-44.0097160898149,-43.30106316599995,-42.634542220737785,-41.983909397386014,-41.678476113360375,-42.44216974033043,-42.80060847103596,-43.416608199011534,-43.245915551204234,-43.43851248640567,-42.834509569685906,-43.10595319326967,-43.31715818773955,-43.09794339677319,-43.96695155091584,-44.31447646673769,-44.615241257008165,-45.192170003429055,-44.347232981584966,-44.34506556997076,-43.48267555469647,-42.83178019756451,-43.75022885669023,-43.39371815416962,-42.674046953674406,-43.01764368824661,-42.48215083219111,-41.57628515129909,-41.12599063431844,-41.40708349971101,-40.734158121049404,-40.98901578085497,-41.958410028833896,-42.589389997534454,-42.44840550143272,-43.056987481191754,-42.37802689569071,-43.21697539277375,-43.308182139415294,-42.8616099874489,-43.543017329182476,-44.40297877928242,-44.22514041187242,-45.02289212774485,-44.202801569364965,-44.02568557485938,-43.69748332723975,-42.925892726518214,-42.84190239617601,-42.168942905031145,-42.413862185552716,-42.10937457391992,-42.34097097860649,-42.67343183001503,-42.475162885617465,-43.23611547378823,-42.518278748262674,-42.23133981274441,-41.25589410960674,-40.67358000623062,-40.15226758271456,-40.95222836965695,-41.92309998627752,-42.09646234288812,-42.27127497643232,-42.71924536814913,-42.70235789986327,-42.137585886288434,-41.862459905445576,-41.12967681745067,-41.75432938197628,-42.04253431363031,-42.03315793862566,-41.79728268831968,-41.90980311529711,-42.2725170487538,-41.659993689041585,-41.43920029466972,-41.853429748211056,-42.67107151681557,-42.88923026109114,-42.48223408218473,-43.203474652953446,-42.69683642266318,-42.6534419702366,-41.79133769497275,-42.05053378781304,-42.252921687439084,-42.99789658840746,-43.846681816503406,-44.641041019465774,-44.77266978845,-44.07126180827618,-45.0160472933203,-44.094855026807636,-43.169303689152,-43.67637284938246,-44.037856618408114,-44.08466351032257,-44.76898121321574,-45.22234800411388,-44.78419788368046,-44.73411994986236,-45.0516798584722,-44.736056559719145,-44.41885739425197,-44.53080368740484,-45.130729171447456,-44.49995836056769,-43.805151970125735,-44.03046424174681,-43.75544939376414,-44.22138538910076,-44.49352671066299,-43.92948734899983,-43.22077149199322,-43.02968608960509,-43.40819273004308,-43.90183117799461,-43.36220693681389,-44.00995404366404,-44.30777629977092,-43.31262118369341,-43.94334227684885,-43.41626489209011,-44.378406069241464,-43.48863292951137,-42.55292776459828,-43.102775156497955,-42.19072410045192,-42.22916600108147,-42.12483755219728,-41.1317976731807,-41.08303218567744,-40.4144349838607,-40.971345209516585,-40.146290182136,-40.69572743959725,-41.371965346857905,-41.46507398178801,-40.60056148003787,-41.53629108797759,-41.11741094989702,-42.00191716849804,-41.41945554455742,-40.819767826702446,-41.79248097259551,-41.8752455227077,-41.601681063417345,-41.05781693710014,-41.47589744767174,-41.53411251399666,-40.851197260431945,-40.98361723823473,-41.09675319585949,-41.414462563581765,-42.23624927410856,-41.32671847753227,-42.28367809765041,-42.51252012653276,-42.53498529223725,-43.11607696255669,-42.71598393237218,-43.38868936151266,-43.12692793644965,-42.31126032117754,-42.97506376123056,-42.08105073310435,-42.823076005559415,-42.734504230320454,-43.243563605472445,-42.565427577123046,-42.46522211935371,-41.66260855039582,-41.9699980658479,-42.85428867023438,-43.425696469377726,-44.18519808212295,-44.788869387470186,-45.486484427470714,-45.31437349924818,-46.22661983221769,-46.85505140759051,-46.78574698558077,-47.13427089340985,-46.8359224232845,-46.42974420776591,-47.09040407137945,-46.833326269406825,-47.5229668286629,-47.67171824257821,-47.84792975708842,-48.62032557139173,-47.66490088077262,-48.43071138067171,-48.93900378467515,-49.28764523006976,-49.04192970413715,-48.70414063381031,-48.22563783079386,-47.786613354925066,-48.237415401265025,-47.99939528713003,-48.05574529990554,-47.174769004806876,-46.46827131602913,-47.35635714093223,-47.12252863449976,-46.59582791291177,-47.03268574317917,-47.49778906535357,-48.220484083518386,-49.116561809554696,-49.13520744955167,-49.8242291524075,-50.232341651804745,-49.36151611059904,-49.602088290732354,-48.75725206779316,-49.23222155869007,-48.75099514564499,-49.6709822723642,-49.87502986891195,-50.16011122614145,-49.5470719859004,-49.91450062626973,-49.18338733445853,-49.92959510628134,-50.50767680676654,-51.35528554255143,-51.04779015900567,-50.50767958769575,-51.15256217401475,-52.02825693367049,-52.61415975028649,-53.30168761545792,-53.14637294318527,-52.63051299517974,-52.20090705901384,-52.503687805030495,-52.62413393519819,-52.683388041332364,-52.263836273923516,-52.75301118101925,-53.60661320760846,-53.569233146030456,-54.24206331465393,-54.05639195954427,-55.045418832916766,-55.70490142330527,-56.072786434553564,-56.30283495364711,-56.50825686613098,-56.13404850568622,-55.50083997473121,-55.84995129238814,-56.56911170994863,-57.08551981113851,-58.08519575325772,-58.00227279961109,-57.790852673817426,-57.66672572493553,-58.42559311399236,-57.64478118950501,-57.702401044778526,-57.61390561936423,-57.37722300365567,-57.762031075544655,-57.142090933863074,-57.533838321920484,-58.28435692470521,-59.00521157961339,-59.741052297409624,-60.249452866148204,-59.59162197681144,-58.82751899212599,-58.573747165035456,-58.749260649550706,-59.61714344425127,-60.47196495113894,-60.924258715007454,-60.95809480687603,-61.231161744333804,-61.26874526264146,-62.21612933650613,-62.76889918325469,-62.34666406875476,-63.18372800713405,-64.04402291262522,-64.70768502773717,-64.31603682925925,-63.3795100543648,-63.05143087590113,-62.436174653470516,-61.87155623128638,-61.58780866488814,-62.0664057857357,-61.167982754297554,-60.742223581299186,-61.05756473680958,-60.52635851223022,-61.44486176921055,-62.41211377084255,-63.411485232412815,-62.45636363886297,-61.84622686263174,-61.949622583109885,-61.02919859485701,-61.66087967436761,-62.46409208700061,-62.88149429298937,-62.406786132603884,-63.00553231360391,-63.78004894591868,-63.0183872259222,-62.04564692918211,-62.77958542481065,-62.835610951296985,-62.52817873703316,-62.57476278906688,-62.00183835020289,-62.49975725635886,-61.950003426056355,-61.39165155030787,-61.61550555145368,-60.66597696021199,-61.12860491964966,-61.62747240951285,-61.72481827810407,-62.34825108060613,-62.954284243285656,-63.95123553695157,-63.36428769631311,-63.416471833363175,-63.86360768508166,-63.455754892900586,-63.586657299194485,-63.41926549281925,-62.74513226561248,-62.37119327252731,-62.45689236326143,-61.7468746015802,-62.55174510739744,-61.63288740394637,-60.703815130051225,-59.92908310703933,-60.18966402113438,-59.29700383357704,-59.37206075666472,-59.19395531853661,-58.98673251597211,-58.97278787475079,-58.10797600168735,-57.25254257861525,-56.967016329523176,-56.685687047895044,-56.91537894168869,-56.03384363045916,-56.56378031987697,-55.77198008960113,-56.4001288684085,-55.87630431400612,-55.812805767171085,-55.098754338454455,-55.696771488990635,-55.431320518255234,-56.37579491920769,-55.55006011761725,-54.596580469980836,-55.428660232108086,-55.57592057995498,-55.46087964437902,-54.68298685736954,-55.09286786057055,-55.921016403473914,-55.69862443814054,-54.96682206308469,-55.59678650274873,-55.87345593655482,-55.68634592369199,-56.13632495235652,-56.09675644431263,-55.23481264477596,-54.3948164684698,-54.454727615229785,-53.593634757213295,-54.37822594633326,-55.36935164965689,-56.360368862748146,-55.59796770103276,-55.49361813347787,-55.98982495535165,-56.845446585677564,-56.87637903075665,-57.869674472138286,-57.60210906993598,-57.41661205049604,-58.254326718859375,-57.2547365212813,-57.195718770846725,-56.5662742331624,-57.47737256065011,-57.18302140105516,-56.63397577730939,-57.463299956638366,-57.804072328377515,-57.05130392173305,-56.90859221434221,-57.6455977098085,-57.5460205739364,-57.18966252123937,-57.04241575719789,-57.028111275751144,-56.05230693658814,-55.818239129614085,-56.47241583094001,-56.975789384916425,-56.87534982152283,-56.2442159592174,-57.024521238636225,-57.745821682270616,-58.35286392690614,-58.57135600224137,-58.548559756949544,-58.572362542152405,-57.86796774715185,-56.98645225632936,-56.76920819282532,-57.60869932547212,-57.59416710631922,-57.93071085214615,-57.775138726923615,-57.51223077997565,-57.68544912105426,-58.01435912773013,-58.43227680074051,-58.11601657373831,-58.34222160466015,-57.509188298135996,-57.178430025000125,-57.279042365029454,-56.51950672781095,-56.80489882873371,-57.37729845754802,-57.8926608110778,-57.29225718136877,-57.023270341102034,-56.40226685255766,-57.34414912527427,-57.01965816412121,-56.99945291643962,-56.5099686216563,-56.6686963387765,-56.88679792871699,-57.044647820759565,-57.90304227313027,-58.880443739239126,-59.406981299165636,-60.20516751194373,-59.67608650773764,-59.031716850120574,-59.536713569425046,-59.65846647974104,-59.09777827048674,-59.26277496246621,-58.95476260082796,-59.823615453206,-60.55051820212975,-60.50772243319079,-61.18641787394881,-61.76554965414107,-61.79610750358552,-62.77189083537087,-61.90161898266524,-62.78905019722879,-63.39402315625921,-62.50232674833387,-63.45891982037574,-62.68125901184976,-63.60391959408298,-64.14533195272088,-63.15745684877038,-63.96402285294607,-63.6626472780481,-63.25504236901179,-62.47853647964075,-62.30379760218784,-62.59790622163564,-62.174805665854365,-61.60162906162441,-62.03191045252606,-63.02694952953607,-63.676100661512464,-63.59191067330539,-62.86045032227412,-63.14079631213099,-63.42894639167935,-63.80128446826711,-63.05440393742174,-63.29305788176134,-63.19062761915848,-62.47875239374116,-62.88056471152231,-62.62973853060976,-62.60556648578495,-62.374436791520566,-62.61615084297955,-62.955503904726356,-63.646492164582014,-63.96316825784743,-63.919600278139114,-63.56077041011304,-63.1279174038209,-62.88009962672368,-63.68812281591818,-62.938916304614395,-63.22367950854823,-63.24659420689568,-63.8970119622536,-64.73827147204429,-65.66647993726656,-65.37452947581187,-65.9870296488516,-65.23503736080602,-65.44325275765732,-66.40166986687109,-65.47352555114776,-64.56188000319526,-63.683750653173774,-64.31373079260811,-65.27276682714,-65.47804249916226,-65.43078664503992,-65.71256051026285,-65.80607452103868,-66.05972175812349,-66.77752589341253,-67.15335624478757,-66.32757239462808,-66.4915585317649,-66.22914024442434,-65.7523519997485,-65.59703571116552,-66.13278027018532,-66.65652460977435,-66.67672193283215,-66.47256818134338,-65.7815967882052,-66.18869051383808,-66.84352794894949,-66.75304881250486,-66.97508496558294,-67.66801776224747,-67.44639153033495,-67.21296650450677,-68.11830165609717,-68.62422714428976,-68.05976271862164,-68.80358333839104,-68.00955757917836,-67.47637855727226,-66.82168059051037,-66.5728033608757,-67.08606366254389,-66.23208370385692,-65.89324010396376,-65.4527272391133,-65.15167015558109,-65.49759731581435,-64.66347670927644,-64.49948243610561,-64.13098729029298,-65.0339133720845,-65.54599296115339,-64.58721196558326,-63.9392636846751,-64.59066140605137,-63.75208609318361,-63.467993585858494,-63.65206348942593,-62.66822357196361,-62.6773723824881,-62.897273467853665,-61.998773612547666,-61.945322771556675,-62.12375049246475,-61.62989642750472,-61.29218422900885,-61.66130205010995,-61.76498491829261,-62.51396538969129,-62.01624433044344,-61.42861768277362,-61.5499726254493,-61.25827692542225,-62.07622249657288,-62.023608095012605,-62.167614991776645,-63.16220365697518,-63.66012411005795,-64.34136889129877,-64.36920020915568,-64.78334416495636,-64.51516918838024,-64.20110079227015,-64.96574179362506,-64.0261217863299,-64.05090334452689,-64.78408555826172,-64.15230509126559,-64.23851470509544,-64.51698997616768,-65.39821643102914,-65.36854479694739,-64.91419450938702,-64.48613186459988,-65.23772130487487,-65.7567454520613,-65.99206700874493,-65.01434320723638,-64.69430216634646,-65.1270576226525,-65.99404193041846,-66.6355411093682,-65.88918156316504,-65.99699528655037,-65.18404301675037,-66.02707699779421,-66.70733261434361,-65.82238832348958,-65.86802034871653,-65.4713172656484,-64.9316692003049,-65.61090145632625,-65.05971795553342,-64.11290461523458,-63.16926511051133,-62.552053393796086,-61.76862872345373,-62.70664533507079,-62.79542962834239,-62.298571546096355,-62.057977641467005,-61.291914025787264,-61.187716031912714,-60.432635099161416,-59.57644647592679,-59.18791496986523,-58.28956692805514,-58.79592691315338,-59.33913706522435,-59.44782627187669,-60.35275791864842,-61.268755331169814,-61.057456109672785,-60.91219623852521,-60.211629966273904,-59.923294603358954,-60.611127267591655,-61.29380953498185,-61.577470117248595,-60.853986656758934,-61.480966322124004,-62.4747997475788,-62.10916250618175,-61.39467547042295,-62.188506294973195,-62.56477156607434,-63.49804502632469,-64.40893027372658,-64.32600858993828,-63.576983583625406,-63.05626792414114,-62.88753479439765,-62.9726861086674,-62.60119618522003,-61.67698136810213,-62.09615566302091,-63.00070950668305,-62.609685675706714,-62.89752311911434,-62.23731816513464,-62.24238679651171,-62.207326089031994,-61.58829999528825,-62.13324677338824,-61.70092966267839,-60.77108096610755,-60.9298668964766,-60.713673857972026,-60.542275147512555,-60.511663349345326,-59.52687309961766,-60.18714057281613,-59.47278510732576,-59.14420588687062,-58.548506847117096,-58.077263777609915,-58.792859303765,-58.15692024258897,-58.400469975546,-58.10466985125095,-58.891656945459545,-59.688047317788005,-59.71659527067095,-59.75381282903254,-59.83322133915499,-59.87823968520388,-60.8518992443569,-60.4083486343734,-59.84482578514144,-60.416292634326965,-59.52226640749723,-58.89368126122281,-59.46890033222735,-59.83174518169835,-59.930985062383115,-59.48870881414041,-58.772350252605975,-57.93555712373927,-56.93721850030124,-57.80492271995172,-57.6465461095795,-56.66994481300935,-57.618656320963055,-57.76528816437349,-58.18608484370634,-57.39385307952762,-57.150958551093936,-57.20571795804426,-56.86166940163821,-56.360310232732445,-56.21284004114568,-56.04467563703656,-56.029004101175815,-56.42606345331296,-55.57979493960738,-56.001108733937144,-55.98375343391672,-55.97003035526723,-55.377738003619015,-56.354799170512706,-56.62777401646599,-55.67832484235987,-56.332671152893454,-56.39980630390346,-57.39935925602913,-56.663289308547974,-56.14400388067588,-55.89222901593894,-56.30854369327426,-56.84838794404641,-56.51968525070697,-57.51236607087776,-56.760963008739054,-56.06269959360361,-55.946876768022776,-55.11924102436751,-55.93925975356251,-56.707086933311075,-56.124238497111946,-56.076730283442885,-56.98039296641946,-56.944527798797935,-56.4502272750251,-55.61469656787813,-55.383272158913314,-54.425438766833395,-55.00774864992127,-55.23550983518362,-56.154729176312685,-56.17917914362624,-56.69419966917485,-56.73497207276523,-56.49689633632079,-55.71150737768039,-55.251023571006954,-54.594256199430674,-54.59769511362538,-53.963217698503286,-54.90017861826345,-55.557555380743,-55.40600470453501,-55.04576068138704,-55.77460378641263,-55.99211061326787,-56.210582916624844,-56.85930134868249,-57.69245224399492,-56.89398120343685,-57.10719034355134,-57.471834351774305,-56.68789789546281,-56.87622365169227,-57.22155381785706,-57.32961776526645,-57.21763980900869,-58.036655153147876,-58.92482449486852,-59.07646185858175,-58.52141461055726,-58.693835735321045,-59.112459116615355,-59.02897545835003,-59.514723639935255,-58.97726694261655,-58.11343483813107,-58.07370339985937,-58.55054455110803,-57.705602331552655,-57.6294811880216,-57.56421213084832,-57.195304384920746,-57.967239698860794,-58.300418434198946,-58.36945432657376,-58.45638248231262,-58.84111864445731,-58.368255876004696,-57.73137158062309,-57.029835500754416,-56.70500190695748,-56.50143699161708,-56.635608127340674,-55.89089202834293,-56.723496347200125,-57.35709999455139,-58.23040258092806,-57.72825364861637,-56.76545554259792,-56.90151620935649,-56.73777425382286,-56.55684859119356,-56.227745697367936,-56.148508651182055,-56.12366533000022,-56.096534504089504,-56.816851035226136,-57.33716542739421,-58.25342140067369,-58.33548423135653,-58.76477794442326,-59.46176357381046,-59.09565343847498,-59.659194903448224,-59.10745273064822,-58.63444768311456,-58.80777749978006,-58.15024223411456,-58.68328719912097,-58.66577851586044,-58.70816974481568,-58.77841111877933,-59.58863886492327,-58.93678379105404,-59.19783236877993,-60.16658925777301,-60.76434066798538,-60.37601214367896,-61.23283930076286,-60.91525677870959,-60.17323921713978,-59.674521908629686,-60.471526473294944,-60.734290529973805,-61.11138828564435,-61.048095169477165,-60.55308339325711,-59.96627987921238,-60.734461404848844,-61.17616331297904,-61.7738834451884,-62.651485779788345,-63.610291646793485,-63.457770036999136,-63.67070401692763,-63.28056418104097,-63.12786534335464,-62.25088977115229,-61.42974213277921,-62.398300209548324,-61.63287338381633,-60.792083899024874,-60.53367637749761,-61.48931851238012,-61.143720934633166,-62.111579845659435,-62.548601992893964,-63.44268378755078,-64.31956657255068,-64.6482212068513,-65.60208384785801,-65.8832573373802,-66.36568569857627,-65.96436145482585,-65.69329346250743,-66.2200320228003,-67.14321407582611,-67.00049672788009,-66.9721080022864,-66.42229418223724,-66.55297830654308,-67.20395233761519,-66.67094516661018,-65.75693291751668,-64.95276973675936,-65.75191423576325,-64.95687938807532,-65.94669096218422,-65.90874852379784,-65.49941197410226,-66.18450413318351,-66.71873530326411,-66.24040401168168,-66.78766954876482,-67.49589989427477,-68.392202666495,-68.7543376092799,-68.29870208958164,-68.16275716014206,-67.35255277110264,-68.28606500150636,-68.99948020465672,-69.89939335593954,-70.84394687181339,-70.16940771834925,-69.51001560222358,-69.97837879229337,-70.5344692566432,-70.53993353340775,-71.40971040446311,-72.31025781435892,-71.83399654459208,-70.85589446406811,-70.49450871348381,-71.3283962146379,-70.50002005137503,-69.8094048104249,-69.86458775540814,-69.9627646971494,-70.73057396383956,-70.17992988415062,-70.03486256394535,-69.94237422570586,-69.13511290214956,-69.87253414699808,-69.02018168056384,-69.39483270887285,-70.05919259646907,-69.27315413253382,-69.24395679309964,-69.12428376497701,-70.05960308387876,-70.04110184777528,-70.39266980951652,-69.64586709998548,-70.07076682569459,-70.33437363384292,-70.82625432498753,-70.8263894948177,-70.99404229037464,-70.7068326366134,-71.64333270583302,-71.58070742012933,-70.69140743743628,-70.58526600338519,-71.13023402448744,-70.7694367733784,-70.49426365364343,-70.27376474346966,-70.75732982810587,-70.10946437809616,-69.52555670076981,-68.58907619677484,-68.55632526008412,-69.23181891441345,-69.56790302041918,-68.66730516636744,-68.91353288060054,-68.40213788533583,-67.53744334587827,-67.82222955860198,-67.86102397739887,-67.71989419264719,-67.96162567613646,-68.83143900102004,-69.67122053634375,-69.30208201566711,-69.59328783163801,-70.00300624687225,-70.46283345483243,-69.77551145385951,-69.41935746837407,-69.17380351573229,-69.45921821752563,-69.12430969206616,-68.74694573832676,-69.6376523799263,-70.47322994004935,-71.40248438017443,-72.26796685904264,-71.32419447042048,-70.38755080569535,-70.6277522626333,-71.28223584964871,-72.14187446422875,-71.62166065489873,-71.03206864744425,-71.1152909360826,-70.26542109064758,-69.32858964987099,-69.62732178485021,-69.20733108138666,-70.13136286428198,-71.07739811204374,-70.83578433934599,-70.62915207725018,-71.54657172784209,-72.03470149775967,-72.75801489176229,-73.17990143364295,-73.41088443156332,-73.47294993279502,-73.41220383765176,-73.36505824048072,-73.82247472228482,-73.37046522879973,-74.14315701229498,-75.00904335128143,-75.42938819807023,-75.76521373912692,-74.98821112187579,-74.21940979687497,-74.49301830446348,-74.12702522613108,-73.38873017393053,-72.61118809878826,-73.17069971980527,-73.99319610698149,-73.12966788373888,-74.07183972606435,-73.45216328185052,-73.7033188152127,-72.71186821954325,-72.01343159610406,-72.51945158839226,-72.00798007287085,-71.57356033846736,-71.94956372771412,-71.26572136161849,-71.19166937097907,-70.20454864483327,-70.43737784400582,-71.11103923479095,-72.04553156578913,-71.19219933217391,-70.6257748240605,-71.50839807512239,-72.23962550098076,-71.89831066783518,-71.92195148998871,-71.14956978941336,-71.3934651594609,-71.33225577743724,-70.98572542797774,-70.8312263675034,-71.7364742946811,-71.49627866921946,-71.91599587770179,-72.61953372135758,-71.71432700986043,-72.21453920705244,-72.43919890234247,-72.77759218588471,-72.17445091204718,-71.467469394207,-71.85285629937425,-71.99748461600393,-72.57370602106676,-73.0936363027431,-73.24414063058794,-73.3943074089475,-73.66024399548769,-73.13575531682,-73.96819325909019,-73.22161805350333,-73.20265977317467,-73.89236938161775,-74.86541685974225,-75.82939731236547,-76.32100539002568,-75.96620547026396,-75.28487713914365,-75.01384085649624,-74.03320561442524,-73.03438747115433,-73.94605540670455,-74.36286505777389,-74.85287528997287,-74.85432878509164,-75.81884087435901,-76.04690908128396,-76.56558710569516,-76.67625732487068,-75.8444775515236,-75.13032580027357,-75.80708690453321,-75.70250856643543,-76.33131530182436,-75.89729956071824,-76.33435183623806,-76.88634399697185,-77.40829291939735,-78.30313780950382,-79.27844594372436,-79.33416676661,-80.26508101122454,-80.55382086429745,-81.22421357315034,-80.92945602536201,-81.75209322711453,-81.27741441782564,-82.07957168482244,-82.04528647148982,-81.61621981440112,-81.45233685709536,-80.8641767334193,-80.17517052125186,-79.5754216699861,-80.03806553361937,-79.71845648670569,-80.03383371606469,-79.2360681174323,-78.27257812069729,-79.25919208023697,-80.14101997436956,-80.46868098573759,-80.31212212191895,-81.1562099289149,-80.31536517851055,-81.1799112604931,-81.91726903803647,-82.61326360376552,-83.40185808762908,-83.81953949062154,-83.50914635322988,-84.29470791481435,-84.04977003391832,-83.12092847377062,-82.5323093063198,-83.05421873135492,-83.15158002870157,-84.02598382951692,-83.67899242043495,-84.33132448513061,-84.7980445981957,-84.60122533747926,-84.3517818232067,-83.35905998200178,-82.98037993256003,-82.58049441408366,-83.44124119216576,-82.61049168976024,-82.90488937823102,-82.82605020841584,-82.77506314497441,-81.96189821138978,-81.16579157393426,-81.84878730773926,-82.35861641634256,-83.25076363887638,-83.01466736290604,-82.17509896028787,-82.97674774657935,-82.72093703690916,-82.00785977486521,-82.73980822041631,-83.65260370448232,-82.7173818629235,-81.82016362482682,-82.29105717223138,-81.73835907271132,-81.36370166763663,-81.22486349521205,-81.21912826411426,-81.3819472794421,-81.42214246513322,-81.38938289321959,-81.99884319491684,-82.54888006392866,-82.69783397158608,-82.19711743155494,-81.87368408078328,-82.57926672231406,-81.92474438762292,-81.62721881223843,-80.88560842350125,-79.9485893077217,-80.51263010967523,-79.8363235029392,-79.15350988460705,-79.28336138324812,-79.61843035975471,-80.05855228472501,-80.52658529626206,-80.41738453973085,-81.07153343828395,-80.81410610303283,-79.8687180574052,-79.03838744619861,-78.94848741823807,-78.37865703832358,-77.59437347948551,-77.76813442073762,-77.33845624746755,-77.75229957373813,-77.00700410548598,-77.30741743603721,-76.91668859869242,-76.97698625270277,-76.54874762939289,-77.00833459477872,-77.12523691123351,-77.97281519137323,-78.85700696147978,-78.16013247566298,-78.98837921582162,-78.25134089495987,-78.630341604352,-79.50963559560478,-78.68866355344653,-78.22391284117475,-79.08897228958085,-79.75572572043166,-79.51439309166744,-80.43563790153712,-79.97894800035283,-79.86358566069975,-79.76631949935108,-79.0468111122027,-78.50183373736218,-79.40713290218264,-78.85714726988226,-78.71362427063286,-79.06137170363218,-79.91789286211133,-79.92578332079574,-80.31542406184599,-80.80520879570395,-81.09191823005676,-81.51811511162668,-82.18485125014558,-82.76049930043519,-83.63557717716321,-83.29134276835248,-82.48373876698315,-82.07308731554076,-81.418519242201,-82.14212659513578,-82.37964873155579,-81.71946524828672,-81.61729034036398,-81.79210368031636,-81.35307060088962,-81.91631756955758,-82.4701288761571,-81.77779116621241,-82.49288630206138,-82.13717596465722,-82.73268082831055,-83.34270247956738,-83.11829247884452,-82.64059222582728,-83.26260427385569,-82.3138576601632,-81.43223364837468,-82.06444654334337,-81.7869414780289,-81.96052282908931,-81.04796477593482,-80.26321520283818,-81.0628593689762,-80.99387501738966,-81.20349424425513,-80.66755118407309,-81.02807793626562,-80.46281170938164,-80.39468127442524,-80.80480019142851,-80.20163582498208,-81.0748704788275,-80.74553847825155,-80.95318882772699,-81.386926476378,-82.13277132529765,-81.90556838549674,-82.23543219128624,-81.48279991419986,-80.66432142723352,-80.2740667858161,-81.20159567473456,-81.70316317444667,-80.93672125833109,-80.66500986786559,-80.41044797142968,-80.95059743337333,-81.26865137601271,-81.41039040219039,-81.7638185066171,-81.90667718322948,-81.111892842222,-80.46090459171683,-81.03495197556913,-81.75228287931532,-81.95404585963115,-81.41919568227604,-81.24884433439001,-81.08676367579028,-80.45590062905103,-80.46104191616178,-79.54056960577145,-78.61832755384967,-79.37015267601237,-78.69183057779446,-77.79120699269697,-77.85267493827268,-78.73804611992091,-78.40244967443869,-77.59760110126808,-78.33948743110523,-78.22486400045455,-77.49005566490814,-77.65881500858814,-77.56711344327778,-77.35247902199626,-76.6754281767644,-77.27671228675172,-77.77425723150373,-78.29022774519399,-79.00381046999246,-78.77577063115314,-77.85674720583484,-78.38760822685435,-78.11940434807912,-78.85016100108624,-79.57127117691562,-80.21468679513782,-79.52762185130268,-78.8357700696215,-77.84575853310525,-77.4535007267259,-76.8753398261033,-77.3853914225474,-77.58544886531308,-76.99288445198908,-76.95562224602327,-76.56973317544907,-77.31134311715141,-76.40310541726649,-75.4177168677561,-74.56773361796513,-75.5008694040589,-75.81884822901338,-76.23735632328317,-75.31443787366152,-74.83369069499895,-75.54877294087783,-76.35913556301966,-77.13073736522347,-77.31490796711296,-77.1740505238995,-77.89254350680858,-78.48232485447079,-79.16747737536207,-78.69798793131486,-78.97815035795793,-79.25604164879769,-79.53685272159055,-78.6839940957725,-79.18959883460775,-80.10586243215948,-80.53509193751961,-80.92442459380254,-80.31360324658453,-79.80722524737939,-79.99243651237339,-79.39570999192074,-79.06186204543337,-78.98225901648402,-78.21705684857443,-77.22083990368992,-76.33191007561982,-76.25780799379572,-75.98797868285328,-75.16573727922514,-74.30318140191957,-74.00826889974996,-74.21197917545214,-74.29801262170076,-74.10973274381831,-74.40424967184663,-73.4339324417524,-72.63686235900968,-73.59755802946165,-73.20694241765887,-73.83414955949411,-74.314299069345,-75.09765162365511,-75.00216721417382,-74.98072005994618,-74.05217033950612,-73.4090037252754,-73.11373056750745,-73.04417944606394,-72.62179323891178,-71.63036666437984,-70.76314150728285,-70.21146363485605,-69.42552468692884,-70.12401590729132,-70.64839844452217,-71.30284140165895,-71.38018651818857,-70.48692497611046,-70.73338050814345,-70.16440004436299,-69.96152099594474,-70.93876723805442,-71.80352909071371,-71.83582318527624,-71.67040595645085,-72.64718212326989,-72.69879412325099,-73.33242059312761,-73.82676932122558,-74.78588272305205,-75.16867372440174,-74.80837244167924,-75.58545129094273,-76.28714153822511,-76.04333735257387,-76.88357180543244,-77.17307284241542,-77.47919309465215,-76.51496894378215,-75.5200554500334,-75.74079665355384,-75.04419962503016,-75.51789908390492,-74.58480359520763,-74.0439212648198,-73.25837786169723,-72.80762038147077,-72.57075771316886,-72.01161158457398,-71.48976103682071,-71.77621271228418,-71.31875958759338,-71.8614271292463,-72.02326976275072,-71.17405916983262,-70.23625834938139,-69.8799560405314,-69.17969397082925,-68.78061332181096,-68.79341597948223,-69.70034313946962,-70.516836614348,-70.88663617381826,-70.3956649294123,-70.16280849883333,-69.61871900269762,-68.81864044070244,-68.91568420873955,-68.54542191606015,-68.68905256828293,-68.29813463287428,-68.3442670297809,-68.8589787860401,-68.18739152792841,-69.14626966882497,-69.40934382239357,-68.81305136624724,-69.4540805881843,-68.74442620715126,-67.86035481235012,-68.61156637454405,-68.17913883598521,-68.84543182654306,-69.14409684203565,-69.24691571202129,-68.48841563751921,-67.60554246231914,-68.50427154498175,-67.53420992242172,-68.45636645285413,-68.90243848413229,-69.61859550187364,-69.19553853198886,-69.94064883934334,-69.18667693436146,-68.40974348597229,-68.62518142303452,-67.64151634974405,-67.67842896748334,-68.28662338713184,-68.93791102338582,-69.6381770176813,-69.08175176335499,-69.86810553306714,-69.29093447653577,-68.50987277785316,-68.40384706715122,-68.38063695887104,-68.43413750920445,-69.1723207985051,-68.83244753954932,-69.07633180357516,-69.97299480717629,-69.18320145923644,-69.37041811132804,-69.12835350632668,-68.39627809682861,-67.65486559644341,-67.86274495068938,-67.81139083439484,-67.71538881212473,-67.57985700434074,-66.7579911723733,-66.96720763342455,-67.36714136321098,-66.54336017649621,-66.30311755090952,-67.27652283199131,-68.06313756015152,-67.82637896994129,-67.6194505947642,-67.75395118258893,-67.88189249718562,-68.789163751062,-69.2305387025699,-68.29168689018115,-67.55135365808383,-68.32861230056733,-67.5364488651976,-68.2374252025038,-67.29219308495522,-67.34843393228948,-66.83997913217172,-66.47933953534812,-67.24476023484021,-66.6143752001226,-67.46480830432847,-66.82547490904108,-67.61858215322718,-68.06839425303042,-67.8849245798774,-67.60032007284462,-68.40281013865024,-67.4656112655066,-66.8000738658011,-66.51570837805048,-67.29935518791899,-66.337752698455,-67.06985197402537,-66.1621761196293,-66.84907026216388,-66.3230421692133,-66.9071409245953,-66.76761161210015,-66.96939542563632,-66.53740190016106,-66.45787669485435,-65.57839030725881,-65.22770359553397,-65.06490475544706,-66.05572445644066,-65.9099914971739,-65.02852784190327,-65.18925178796053,-65.25098021002486,-64.73518329765648,-63.81933891726658,-63.100471128709614,-62.40958393551409,-62.572288502473384,-63.39125656010583,-63.6447676634416,-63.008830051869154,-63.60434112418443,-63.491809191182256,-63.12692110333592,-63.45377729553729,-63.45244137104601,-62.70484875747934,-62.35424298746511,-62.9609103561379,-62.93720260169357,-63.17431027535349,-62.20727918762714,-62.98292859690264,-62.2713791821152,-62.58150538895279,-63.13993959315121,-63.94169043842703,-63.200991223566234,-63.573563089594245,-63.58248662436381,-63.11769044678658,-63.43700892152265,-62.67383846035227,-62.74525645002723,-62.536285682581365,-61.69119918579236,-61.76897778175771,-61.13336083153263,-61.988902224227786,-61.27416228596121,-61.5809306143783,-61.267483052331954,-61.171892509330064,-61.19611234543845,-61.612074453849345,-61.504160998389125,-61.09206776833162,-61.89659145474434,-61.71726758591831,-62.48404601030052,-62.81220995588228,-62.18996133748442,-61.508577236905694,-60.684806058648974,-60.03594509884715,-60.4011356793344,-60.810891998931766,-61.574129085522145,-61.06311914231628,-60.397576556075364,-60.193309714552015,-59.796510150656104,-60.263102219905704,-59.95285208290443,-60.844861614052206,-60.13480720669031,-61.025423576589674,-60.818527126219124,-61.253044246230274,-60.63878738693893,-59.71525883860886,-60.40081571228802,-60.54771036002785,-60.301238210406154,-60.573443478439,-59.63622398348525,-59.35407999716699,-58.68829992413521,-58.16139694862068,-58.67595076933503,-59.24178124265745,-59.31726906914264,-58.617442193906754,-57.768933018203825,-58.668157916050404,-59.56070744432509,-58.7564299935475,-57.91672080475837,-56.94908701069653,-57.71300582680851,-57.06019206624478,-56.450820001773536,-57.02080348972231,-56.69442609092221,-57.268516685348004,-58.120732580311596,-58.60198006918654,-57.99436821602285,-58.526416070759296,-58.08214660966769,-57.34021363314241,-57.46519555756822,-58.28982647461817,-57.739870925899595,-58.23096723482013,-57.523608550895005,-56.91385913779959,-56.11081638885662,-56.90290886722505,-57.27827259758487,-57.97699622903019,-57.06618488766253,-57.29979795496911,-56.882986042648554,-57.03314179927111,-56.4426450971514,-56.38514527399093,-55.736458151135594,-55.54054061649367,-55.09210892068222,-54.53908630507067,-54.27660768060014,-53.81930533563718,-53.45688466029242,-52.56880338257179,-52.521896220743656,-53.267269265372306,-54.20576563663781,-54.767396594397724,-54.61492590745911,-54.75790739431977,-55.49186323257163,-55.67671997891739,-55.342920878436416,-54.96252610348165,-55.56524895597249,-55.861550082452595,-54.931700750254095,-54.424243055749685,-54.15661690942943,-54.62960949493572,-55.337197333574295,-55.14647850766778,-54.52694657212123,-55.34758443618193,-56.29578123940155,-55.663624736946076,-55.14017275488004,-54.51464627869427,-55.050143007189035,-55.278946937061846,-54.70338157610968,-55.53931278735399,-55.60859985277057,-56.47699442645535,-57.05789485713467,-56.328579334542155,-55.71197457239032,-55.29013530211523,-56.065235612913966,-56.99577597901225,-56.949983668047935,-56.7183573693037,-56.771485241595656,-56.90669963089749,-56.45981162972748,-55.84965339396149,-55.333129884209484,-54.62210713000968,-54.74968735873699,-55.71005421830341,-56.10248523345217,-56.014271321706474,-56.35432049585506,-57.31988260475919,-57.74075170001015,-57.922223646659404,-57.838134792633355,-58.358971938025206,-57.6789693091996,-57.21529693482444,-57.12098227487877,-56.78099968051538,-56.427659585140646,-55.45828003110364,-56.0305946059525,-56.7756607667543,-57.003409697674215,-56.6572370165959,-57.06560743553564,-57.075886075850576,-56.34910885151476,-56.59259686572477,-56.81533944606781,-56.46254200860858,-55.930788659024984,-56.77737892884761,-55.99262134032324,-56.35665564239025,-56.711645178031176,-55.87455379823223,-56.43369048740715,-55.71361692762002,-55.71177111379802,-56.46752405539155,-56.15562377078459,-55.314870099537075,-54.56077669095248,-54.08381738839671,-54.872832369524986,-54.24163191439584,-54.00082760769874,-53.3838930958882,-52.4901621080935,-52.57777958270162,-52.84070721641183,-52.75719221495092,-52.704022413119674,-52.01769908517599,-52.76125396043062,-53.607913612853736,-52.91926589841023,-53.919238704722375,-54.12323078606278,-54.30104571022093,-55.14103062078357,-55.10809377487749,-55.59205388324335,-55.5721796406433,-54.88525148574263,-55.41394049767405,-56.12542671896517,-56.47451989678666,-57.467140432447195,-57.42315308377147,-57.599660319741815,-58.51084710797295,-59.43433250905946,-59.491016258019954,-58.758783015888184,-58.204148701857775,-57.99856425123289,-57.21536024240777,-57.077832056675106,-57.72828648192808,-56.89714182820171,-56.299399386160076,-55.45081038819626,-55.18422699300572,-54.622624510433525,-55.34018429927528,-55.406121803913265,-55.48795512225479,-56.4348053522408,-56.0533255757764,-56.102342831436545,-56.27795414440334,-55.62474134005606,-54.96798756532371,-54.455448154360056,-55.23487585270777,-54.98251576349139,-55.67404782306403,-54.8165604127571,-54.98559787776321,-54.16590692801401,-53.36114186095074,-52.40930702351034,-52.812401581089944,-51.895400162320584,-51.376896092202514,-50.7481766785495,-50.72984092915431,-51.43528700666502,-50.69145823363215,-50.29191267909482,-50.24317316059023,-49.687242061365396,-50.29450821643695,-51.269817671272904,-50.36146543174982,-50.26671210536733,-49.469921993557364,-48.72561664134264,-48.63726135669276,-47.789418070111424,-48.68432847270742,-48.49874599138275,-48.65108846127987,-48.27234401041642,-47.842166423331946,-46.881833504419774,-47.83218985097483,-48.62869524117559,-48.22331808693707,-48.90060306945816,-49.80001160316169,-48.818441316485405,-48.24888808559626,-49.189472584519535,-49.08017183607444,-48.820366059429944,-49.21471851458773,-49.06887454120442,-49.39685733197257,-48.82671142881736,-49.26548031391576,-48.60369116300717,-49.33855025423691,-48.98182306950912,-48.0456777731888,-48.20929331379011,-49.04388044541702,-48.99028291599825,-48.182689340319484,-47.8775460110046,-46.92419054778293,-46.04897640179843,-46.815854880958796,-45.91817376110703,-45.50222894735634,-44.942448657006025,-45.33351497212425,-44.75837634783238,-44.82944078044966,-45.71323578199372,-46.019665505737066,-45.88561527244747,-45.82084528775886,-45.92427309695631,-45.256221048068255,-45.53320098016411,-45.142679643351585,-45.6140598715283,-44.67279461817816,-44.47751982137561,-45.05099225323647,-44.70407512225211,-44.11934105493128,-43.27119740890339,-43.782996849156916,-44.40967203117907,-45.35809389920905,-44.91466942476109,-45.567016237881035,-46.0472070495598,-45.69599092146382,-46.3054354689084,-46.87911087367684,-47.790989506524056,-47.56755649158731,-47.30409932881594,-47.76092093484476,-47.202135934494436,-47.39075461868197,-47.11766217974946,-46.62468994129449,-47.417302761692554,-47.411716408561915,-46.893895203247666,-47.88531294837594,-47.561609600670636,-47.54349424643442,-48.11474290210754,-47.53123998828232,-47.483366473112255,-47.30267140129581,-46.819082646630704,-46.60762531030923,-45.860405875369906,-45.44573463173583,-45.771006951108575,-45.930159370880574,-45.858781973831356,-46.58704525884241,-47.382519078440964,-46.87891710875556,-46.4147047852166,-46.176210835110396,-45.260001574642956,-44.655676449649036,-43.70668310439214,-43.859685813076794,-43.39316761959344,-44.22104392480105,-43.284164615906775,-43.801359101198614,-44.75285415444523,-44.258046680595726,-43.5737588708289,-43.32279085693881,-42.721083401702344,-42.09117824072018,-43.01634228648618,-42.701438358053565,-43.682321701198816,-43.48474813206121,-43.56936775892973,-43.36988929286599,-42.722399898804724,-42.25262261228636,-42.5764372497797,-42.194727702997625,-41.38859851937741,-40.70765053015202,-41.12420777557418,-41.00614994997159,-40.54800979234278,-39.944915677420795,-40.21955689834431,-40.247669054195285,-40.56803306704387,-40.30161655973643,-40.2576271998696,-40.09395078709349,-40.49700599210337,-39.50347281154245,-39.26035637129098,-39.56013404484838,-40.555796653963625,-41.456489383708686,-40.58377802092582,-41.374787122011185,-40.45073913130909,-39.92214812291786,-39.37308760965243,-40.30956203909591,-40.10852509411052,-40.32340432330966,-40.17288463516161,-40.866145350039005,-40.900166677776724,-40.967790939845145,-40.410817463416606,-40.9359601251781,-40.429432983510196,-39.82930399989709,-39.42047730553895,-40.2309162938036,-40.381167453713715,-39.592753421515226,-40.562778011430055,-39.81152824126184,-38.894991723354906,-39.764235998503864,-40.11399564752355,-39.75079909898341,-38.98225397011265,-38.12566508771852,-37.94281992362812,-37.410286301746964,-37.8539978004992,-38.55329634808004,-38.02056787908077,-38.04144748020917,-37.673722015693784,-37.43617176543921,-37.23946474120021,-38.215852859895676,-38.41008696611971,-37.8050501937978,-36.838330949191004,-37.75211173761636,-38.62221997464076,-39.09098699269816,-39.615277072414756,-39.155674723908305,-38.38929489813745,-39.07155007682741,-39.49943043850362,-39.518865457270294,-39.80342269130051,-39.09913238417357,-38.53607357107103,-37.714058788027614,-37.384886665735394,-36.43544520251453,-37.002823437098414,-37.232432529330254,-37.524517379235476,-37.49121121549979,-36.97310635447502,-36.21356459381059,-35.7358627282083,-36.67232645396143,-36.83256286242977,-37.775326693896204,-38.69358724029735,-38.06664856337011,-38.10391575563699,-38.84464179817587,-38.29549692105502,-37.83755743224174,-38.73028298933059,-37.78143152873963,-37.15902443090454,-37.740104948636144,-37.12597185559571,-36.30894801300019,-36.52750096237287,-37.518420447129756,-38.051222218666226,-37.56667288066819,-38.40502914553508,-38.19042997341603,-37.33444766327739,-38.027364203706384,-38.63693864457309,-38.754843132570386,-38.36223586183041,-37.991527047008276,-37.787334530148655,-38.538846001494676,-38.723225547000766,-39.60109706316143,-39.093859835062176,-38.64497311413288,-39.19774066610262,-39.17054051719606,-39.893644891213626,-39.033682491164654,-38.76279261847958,-39.15853858739138,-39.97974156728014,-40.655062512494624,-39.98127020522952,-39.13233733177185,-38.765447344165295,-39.578368570655584,-39.463502085767686,-39.87006419245154,-39.05717033986002,-38.209347158670425,-37.57863328885287,-38.13175719138235,-37.82371058035642,-38.21412664465606,-38.35462012980133,-37.7543342015706,-37.33190674427897,-36.53646621014923,-37.099962018895894,-36.33596330694854,-37.295884740073234,-37.900628845673054,-37.560012351255864,-37.988769330549985,-38.886567189358175,-39.01381466211751,-39.040790922008455,-39.10442198626697,-38.360969946719706,-39.3468062565662,-39.16525390697643,-38.26914058905095,-37.62279811035842,-38.58396604703739,-39.10910797631368,-39.803128202911466,-40.50920886732638,-40.43297840701416,-40.71922400034964,-39.83452041307464,-39.37752375518903,-39.98478568578139,-40.6666574110277,-41.643245950806886,-42.43525064596906,-42.89680953370407,-42.97915550414473,-43.75613712705672,-43.12897828221321,-43.288538976572454,-42.388556227553636,-42.78738757269457,-42.587195944506675,-42.0544910072349,-41.36934112152085,-40.63009451376274,-40.6460540657863,-41.46829838724807,-40.56213530851528,-40.722861704882234,-40.41598218213767,-40.02908734930679,-39.78520077141002,-39.60735791223124,-39.16403147857636,-40.07166457315907,-40.59864326287061,-41.19402627367526,-40.33473587734625,-39.63129244465381,-39.89672753959894,-39.09666619170457,-39.33982036681846,-39.840681076049805,-40.38528445456177,-41.36751475604251,-40.4385152598843,-40.74513243511319,-40.79223299631849,-40.32545332983136,-41.043598785530776,-41.34837966412306,-40.64469004468992,-40.18091048114002,-40.664422654081136,-40.89432852668688,-39.981647123117,-40.684631331823766,-41.29157159011811,-40.816172445658594,-40.67336521623656,-40.23729964019731,-39.96032621804625,-40.18327413359657,-40.27983812522143,-40.32137460866943,-39.42103529628366,-38.95535886567086,-39.30691940942779,-39.45056103542447,-40.211296535562724,-39.48282569134608,-39.33627486368641,-39.633595924358815,-40.48825745796785,-41.45945980492979,-40.73554222565144,-40.89020346477628,-41.26687017828226,-40.614687509834766,-41.56683336338028,-40.890038195066154,-41.745442701969296,-41.32945148227736,-40.829232953023165,-41.754039851017296,-41.80728737683967,-42.12860062299296,-42.16378251183778,-41.860535060521215,-42.08524699322879,-42.838855089619756,-43.48823679750785,-43.6411549448967,-42.817478728014976,-42.95420896820724,-43.383591941557825,-42.4591846796684,-42.55385053344071,-42.80955158686265,-42.12733953865245,-42.939906150102615,-42.46480594528839,-43.08615596964955,-43.93833422334865,-43.91838202252984,-44.578354987315834,-44.21229988895357,-44.017537728883326,-43.51748034823686,-43.55368599621579,-43.16761563997716,-42.822908118367195,-42.80668097687885,-41.86581070674583,-42.49627089360729,-42.784118144307286,-43.43836356513202,-43.471151016652584,-44.42449599131942,-45.152941537089646,-44.326304994057864,-44.98031499842182,-44.641818365082145,-44.48449487704784,-43.652303513139486,-42.71989623364061,-42.45465218415484,-42.24868776323274,-42.59971221070737,-43.46655947249383,-44.39272337034345,-43.819546984974295,-44.2833906840533,-45.067185554187745,-44.61209192685783,-44.54438826907426,-44.177398533560336,-44.23568930383772,-43.53709704661742,-43.782096438575536,-44.65778235625476,-43.73188082780689,-43.56018611928448,-43.80766379320994,-43.19386563403532,-43.72055018413812,-43.948543313890696,-44.122632059734315,-44.160078417509794,-44.356603984255344,-45.11823129095137,-44.79114614892751,-44.249250516761094,-44.422392551321536,-43.46552067901939,-43.76568715972826,-43.17703410144895,-42.80391268944368,-42.665407557506114,-41.993864950723946,-42.52629394689575,-42.55062067415565,-41.92158138891682,-41.31261552963406,-41.19628426479176,-42.05865359771997,-41.821312706917524,-42.64656374510378,-43.10555981611833,-42.6108420798555,-42.03422036860138,-42.6970085692592,-42.19905554223806,-41.70429821871221,-41.30097674112767,-40.824449414387345,-40.63959298329428,-41.607752507552505,-42.13258658768609,-42.13416429096833,-41.84300985466689,-42.06919219670817,-41.41662575537339,-40.8842128473334,-41.580851576291025,-41.31829174794257,-41.51541786454618,-42.251281186938286,-42.04561134567484,-42.26159344706684,-41.377035435289145,-42.096465055365115,-42.79498690972105,-43.43304407503456,-42.663504185155034,-43.426569076720625,-43.07134500192478,-43.80343127762899,-44.17612795205787,-43.96562940441072,-43.62239336920902,-42.841771541163325,-42.82293465780094,-42.81684613460675,-42.17731375200674,-41.37685802159831,-40.662551478948444,-40.4512945539318,-40.04195823939517,-39.24585579754785,-39.91578616946936,-40.66184526216239,-40.271704068407416,-40.198188218753785,-41.196820047684014,-42.12812702730298,-41.23128514364362,-41.8029535934329,-41.480457826983184,-41.85404959926382,-41.35120669519529,-41.52719174558297,-42.250420125667006,-42.1539443093352,-41.60445299418643,-40.772898226976395,-41.130256165750325,-40.659641314763576,-41.504290310665965,-40.558269074652344,-41.21137368353084,-41.78176715038717,-42.75617547240108,-42.5469230460003,-41.993994403164834,-42.91425429144874,-42.72766416752711,-41.84279318107292,-40.93634602986276,-41.59566567605361,-40.6940416386351,-39.8921934934333,-39.386425657663494,-39.3864531069994,-39.786274157930166,-40.035948562435806,-40.435961917974055,-40.0165604907088,-40.13270894577727,-40.51313063735142,-39.863096959423274,-40.329899821430445,-39.722981709521264,-40.27559404959902,-40.59140137815848,-41.57966543221846,-41.552330249454826,-41.329972985666245,-41.036409229040146,-41.13667282881215,-41.228884449694306,-40.30366529524326,-39.68784267595038,-40.45694687124342,-39.7865299526602,-39.64625501912087,-39.13965865643695,-39.77809706795961,-40.31657987413928,-39.35723344469443,-39.35407167952508,-39.09336130134761,-40.07298419298604,-40.32369732065126,-39.561325882561505,-38.91004798095673,-39.85211351374164,-39.626568641047925,-40.189071144443005,-39.30081736296415,-38.971301834564656,-38.0672769905068,-38.12236766144633,-37.77574828034267,-37.25277339480817,-38.11080392403528,-38.81632559420541,-39.35286479536444,-39.58654266875237,-40.11386726750061,-40.34240006096661,-40.04358883108944,-39.97777479700744,-40.51964864274487,-41.22866816492751,-40.72695631347597,-41.176051173359156,-42.1061259591952,-43.00072536803782,-42.58674782514572,-42.687115870881826,-41.77130072377622,-41.131765983998775,-40.156741824001074,-40.79419689299539,-40.35267433291301,-40.5113426791504,-41.33663643943146,-41.411281982436776,-42.22116651618853,-41.2479352238588,-41.559738006442785,-42.21101470198482,-43.1217778227292,-42.64771501393989,-42.0184447360225,-41.4534534602426,-42.38897830620408,-43.0574616426602,-43.069504749029875,-42.163220862858,-41.92712310049683,-41.60582696367055,-42.308321334421635,-42.68308575544506,-42.681334904395044,-43.665624061599374,-42.901365723926574,-43.83150067180395,-43.55878225853667,-44.18248520698398,-44.2141278386116,-44.06144781410694,-43.0657427306287,-42.61389780603349,-42.95735311880708,-42.74965942744166,-43.35085710603744,-42.88457132875919,-42.95290073892102,-43.18660644302145,-43.37346556643024,-42.740580847952515,-42.050559863913804,-43.045471569523215,-42.27192585263401,-42.39286546362564,-41.91679864982143,-42.70160231972113,-43.56197677133605,-42.64935438334942,-42.536551262717694,-42.44147034874186,-41.85175724839792,-42.222963662818074,-41.46194837708026,-41.636044258251786,-41.59547862317413,-41.6745370044373,-41.59806891949847,-40.672798650339246,-40.88021581014618,-41.58686625631526,-40.787321894429624,-40.852750518824905,-41.184996840544045,-40.70218930626288,-40.74209644459188,-41.34221227886155,-40.634970089420676,-39.64935776684433,-39.97780697932467,-39.58763225749135,-39.16859022015706,-38.950696758925915,-38.25353117939085,-39.14817051868886,-39.34003320382908,-39.77925840904936,-40.47165233036503,-39.49419675115496,-39.13233146537095,-39.71979139884934,-39.28262294596061,-38.66084550740197,-38.29231498204172,-37.38785107713193,-37.289675483480096,-36.47191912075505,-36.672350792679936,-37.04336692718789,-37.97128942376003,-37.58020048448816,-37.8546439409256,-38.529638417065144,-38.228437825106084,-37.78437907015905,-38.529170787893236,-37.85387398255989,-36.98441488947719,-36.32302727736533,-37.16947565134615,-37.71210640994832,-37.5694622839801,-37.713014085777104,-38.430126934777945,-38.45234761713073,-39.3249653885141,-40.01736806379631,-40.73396526090801,-40.96916351187974,-40.34735789336264,-40.54202528297901,-40.42648576432839,-40.12620688555762,-40.397323774173856,-41.243716986849904,-41.05194904655218,-40.477984111290425,-40.30724847689271,-40.02373359259218,-40.6495667709969,-39.90288846055046,-40.31919294036925,-39.328757253009826,-38.45768064213917,-39.40201787324622,-40.1863845186308,-40.88510307855904,-40.03569727856666,-39.18854372994974,-39.75823264522478,-39.28736141836271,-39.151731982361525,-38.67047966923565,-38.139382529538125,-37.37834962736815,-38.20873788790777,-38.990629042033106,-38.87552414415404,-38.452618112787604,-38.178631350398064,-38.43171010259539,-39.13092943141237,-39.22210539225489,-39.99550050962716,-39.43154018558562,-38.82004531426355,-39.19243085663766,-38.99618564173579,-39.0892655341886,-38.83346937317401,-38.0915080034174,-38.788411259651184,-38.86841818317771,-38.1003087554127,-37.6600107178092,-37.815885950345546,-38.592550875619054,-38.05987484473735,-38.420570760034025,-39.07998547097668,-39.55899838032201,-39.39261771598831,-39.033945337403566,-40.02432447904721,-40.77435668930411,-39.92853275081143,-40.05372790573165,-40.6978364745155,-40.02808070043102,-39.748705360572785,-40.44514055689797,-40.70143348816782,-41.08964710496366,-40.35360621009022,-40.8649184955284,-41.75023278547451,-42.51387488422915,-42.42209826549515,-42.743992635048926,-41.964101906865835,-42.91758094029501,-43.675134029239416,-43.245183400809765,-44.19267094600946,-44.999024868477136,-44.659036725293845,-45.39880587393418,-45.91570358444005,-46.50561119802296,-46.81448653154075,-46.75597202125937,-46.118861000519246,-45.346168726217,-45.35920606460422,-46.003952119033784,-47.00367621751502,-46.24931426439434,-46.0604930408299,-46.50982882780954,-45.75852190470323,-44.906992917414755,-44.59454568428919,-44.62490550102666,-43.69877320434898,-43.58226920384914,-42.7327938512899,-42.389836474787444,-43.12544611096382,-44.0347029264085,-44.2720748540014,-43.85831164987758,-43.00097551802173,-42.318038107361645,-41.90091658057645,-42.24319903133437,-41.80548745440319,-42.27526923874393,-42.44770437153056,-42.16943557839841,-42.50252863345668,-43.03626731503755,-42.18166874209419,-41.36882230825722,-42.23609499679878,-42.8900457653217,-43.406647936906666,-42.70361029310152,-42.093882287386805,-41.47633686568588,-40.769141579046845,-40.0573914735578,-40.42662836192176,-40.57528448943049,-40.36254817806184,-40.844273667316884,-40.07390553597361,-40.228749613743275,-39.70443945378065,-39.65581061178818,-40.48222294682637,-40.71344622503966,-40.46658131433651,-40.999283988494426,-40.78303655516356,-40.30135277332738,-40.91222405759618,-40.36402965337038,-40.922496432904154,-41.50743099814281,-42.49824689840898,-43.09960071276873,-42.974962973967195,-43.67269107140601,-43.21047738427296,-43.78551279986277,-43.892950486857444,-43.55772197060287,-44.35021346434951,-44.15402492834255,-44.128942833747715,-44.54727524612099,-43.84299922408536,-43.45261670509353,-44.43861134676263,-43.53955681575462,-43.348291168920696,-44.224156990181655,-43.504395654425025,-44.3875802825205,-43.94615841563791,-44.88716415129602,-45.33215273730457,-44.58311675209552,-45.50051399413496,-44.82820269977674,-45.6645786492154,-46.464132734108716,-45.89254686329514,-46.82205776218325,-47.44236746430397,-48.25235607242212,-48.222462662961334,-48.76963247638196,-49.67984528513625,-49.371707239653915,-49.883838180452585,-49.186410882975906,-48.21611551847309,-48.69453562237322,-48.19232123810798,-49.004340685438365,-49.15425476199016,-49.92451442591846,-49.12465099012479,-49.96914851712063,-49.99839223874733,-50.69732229830697,-51.52446572249755,-51.682078334502876,-50.78347588609904,-51.78201791876927,-51.23580687260255,-52.04928959719837,-52.40084911836311,-53.06141521735117,-52.452700111083686,-52.3037467719987,-53.273810867685825,-52.27873105322942,-52.0430208183825,-52.21941808331758,-51.32285420456901,-50.61161187989637,-50.50833080802113,-50.41168760787696,-50.24724275665358,-49.7294781813398,-49.86768288491294,-50.03828708874062,-50.268790821544826,-50.52165720006451,-49.54140449035913,-49.028510661330074,-49.47531491238624,-49.04340945696458,-48.40528887929395,-47.815120392944664,-48.217692501377314,-48.96324571734294,-48.18106741597876,-47.69652406917885,-48.25473939301446,-47.92715966375545,-47.653789022006094,-47.263549072667956,-46.49956529401243,-46.16444320883602,-46.40689396858215,-46.035374076105654,-47.01644810475409,-47.224333142861724,-46.710867054760456,-47.389538960531354,-47.24036918813363,-46.97249277122319,-47.90434708772227,-48.15655787754804,-47.75185222970322,-47.392354222014546,-47.43365140352398,-47.44169200351462,-47.704614085610956,-47.96436467766762,-47.70251381676644,-47.96751064481214,-48.90985448099673,-49.236593946348876,-49.93703317595646,-50.39766845945269,-51.28663659282029,-50.35357071319595,-50.68823864823207,-51.14220738224685,-51.069133423734456,-51.14966846257448,-51.582053863443434,-52.153343370649964,-53.026049743872136,-53.144081441219896,-53.73239769367501,-53.67879292415455,-53.67564456630498,-52.72153818234801,-52.41698650922626,-51.957772496622056,-52.19096687017009,-51.39626560918987,-51.17968318145722,-51.678367444779724,-52.20321860117838,-51.6155372094363,-52.19668162846938,-52.05974177084863,-52.895053228363395,-52.06296452553943,-52.20228753751144,-52.723317962605506,-52.37124090688303,-52.8457846371457,-53.43071803357452,-52.918592866975814,-52.69177477294579,-51.77369342604652,-51.49217237671837,-50.80484737968072,-51.069778624456376,-50.996506727766246,-50.335924555547535,-49.40220033796504,-50.39975703461096,-50.45020079007372,-49.49842487741262,-50.07356365816668,-49.91060240427032,-49.709615303203464,-50.30674688285217,-50.789771663956344,-50.48981338739395,-49.67253641970456,-50.28396404674277,-50.38879721844569,-50.14254123950377,-49.590782281477004,-49.51335393823683,-48.604734991677105,-49.016797416843474,-48.256849543657154,-47.39561660960317,-47.03997218189761,-47.83636589720845,-47.10761466016993,-47.095058042090386,-46.19379436317831,-46.6567078945227,-47.58579336013645,-46.68256369559094,-46.457804911304265,-46.25286467419937,-46.96445444226265,-47.70411037839949,-47.570748480036855,-48.038012594450265,-47.72808778518811,-47.463968358468264,-48.03235919587314,-48.810949095059186,-48.5853436361067,-48.19413248915225,-47.86097368225455,-47.410336409229785,-48.40917900297791,-49.218311751727015,-49.860276042018086,-48.94302507629618,-48.82286632573232,-48.1439789426513,-48.58746834658086,-49.50510537531227,-48.92694223858416,-48.93634212994948,-48.25989041477442,-47.77305408474058,-47.86533200694248,-48.75218007992953,-48.68699969351292,-47.78034969512373,-47.64962704386562,-48.19222940923646,-47.692901440896094,-48.10516778472811,-47.14845913974568,-47.43113423557952,-47.09388961456716,-47.21654590405524,-47.98028265032917,-48.04046770371497,-48.918202876579016,-48.49867041129619,-49.021318052429706,-49.5392447267659,-48.641393644269556,-47.90835771430284,-48.767408998683095,-48.47910513402894,-48.18001213669777,-48.28118015313521,-48.73044677870348,-47.77174074947834,-47.000845381990075,-47.37489870330319,-47.824421466793865,-48.14243814535439,-47.41048202943057,-47.31453463668004,-47.77338776504621,-47.239803867414594,-47.07511472608894,-47.97802873328328,-48.46834875876084,-47.50041454331949,-46.883538585621864,-47.34840854490176,-47.62880320008844,-46.918622109573334,-47.146758907008916,-47.39706909889355,-48.26115984795615,-49.09781111031771,-49.37688494799659,-48.56883245380595,-49.471400634385645,-49.40166423842311,-49.495149766560644,-50.45588888740167,-49.48418293101713,-49.39648790284991,-50.01139521505684,-49.074439021758735,-49.38398217828944,-49.57016505813226,-49.59636295493692,-49.25813011266291,-48.59816792374477,-47.83622380020097,-47.27660627802834,-46.780314513947815,-47.678537152241915,-47.027079365216196,-47.26668791566044,-47.534254875965416,-48.0973502676934,-47.60297559853643,-48.451155656483024,-48.463748178910464,-48.925110570155084,-48.50681437412277,-48.931876350194216,-48.02363097993657,-47.94318106165156,-48.41713650058955,-47.92589083733037,-48.67709371680394,-47.94238043623045,-48.64150188583881,-48.641862221527845,-49.181536288466305,-49.08057484170422,-49.91417252877727,-50.48105470556766,-49.65508360648528,-49.842976259533316,-50.45106886420399,-50.251261084806174,-50.7338015078567,-51.01576851727441,-50.20079081738368,-49.64760576095432,-49.57473634602502,-49.7522296491079,-50.31729340692982,-50.449535633903,-51.126487515401095,-50.54538082657382,-50.15500199748203,-51.086944572627544,-50.83608546340838,-50.753332844004035,-49.815181772690266,-50.21571143530309,-50.95899567427114,-51.925236724782735,-52.35584515193477,-52.510107193142176,-52.98791922163218,-52.799000217113644,-52.00311053590849,-51.54226175416261,-51.546377680730075,-51.875483985524625,-51.838653503451496,-51.78902757912874,-51.16542757395655,-52.088309307582676,-52.470515156164765,-51.93078670511022,-51.680027447175235,-52.029074548278004,-51.614161206409335,-51.87825433816761,-51.92422352358699,-51.8702308377251,-52.41368835233152,-52.36729832692072,-52.91611572774127,-52.17260273778811,-51.628658840898424,-50.81195592414588,-51.40287130139768,-50.52007727371529,-51.26455270592123,-51.4364163056016,-50.6945760929957,-51.47839903505519,-51.21534408815205,-51.00385679397732,-51.81214065803215,-51.443999520968646,-51.670192311517894,-51.842255817726254,-51.32348759006709,-50.65750917047262,-51.53380772750825,-51.70018746890128,-52.51527113374323,-51.91254241624847,-51.13786481646821,-50.52879281248897,-50.23601954476908,-49.332716778852046,-49.023729882668704,-48.472421502228826,-48.530370619148016,-48.565391179639846,-48.867649625986814,-49.51702242810279,-48.92367917811498,-48.96424468932673,-49.61127454508096,-50.079892713576555,-50.7772868424654,-50.881180381868035,-49.974183914251626,-49.48538994695991,-49.468322940636426,-48.571823246311396,-49.44445289717987,-50.3090405180119,-49.863832471426576,-49.92657268093899,-50.377793652936816,-50.095914768986404,-49.170888636726886,-49.502615227364004,-49.014446136541665,-49.97585322801024,-49.66552273510024,-49.48578137392178,-49.263144937343895,-49.15461507299915,-49.081718020606786,-49.81719168787822,-50.25956085091457,-50.12860545143485,-50.31653312128037,-49.610073396004736,-49.30720600858331,-48.325289111584425,-49.31499536661431,-48.65541818505153,-49.28266209643334,-48.805117269046605,-47.98402490420267,-47.90569367585704,-47.84304642258212,-47.2509870165959,-46.973584765102714,-47.706475940998644,-48.2969099059701,-48.28889643447474,-48.56238935422152,-49.46754074888304,-50.171039743348956,-50.60062336130068,-50.18245158623904,-50.6620921343565,-51.03354251338169,-51.71929683582857,-51.958475538063794,-51.47360283182934,-51.54685318749398,-52.46525810053572,-53.13844397617504,-53.54217316256836,-54.42762977210805,-54.74708356009796,-54.99408834101632,-55.380188865121454,-54.70041157864034,-55.04187126131728,-54.7942979503423,-55.174802019260824,-55.941855664364994,-56.196583695709705,-57.02947570383549,-56.03286457294598,-55.205132405273616,-56.05535759590566,-55.49923777440563,-55.89724254095927,-55.50505646970123,-55.88430933281779,-56.41998963756487,-56.899185243062675,-57.487010789103806,-57.62512243911624,-58.06195758609101,-57.76809080410749,-56.92106934217736,-57.60207382310182,-57.05697220051661,-57.27749697351828,-57.17758085485548,-57.66831682622433,-57.4627193165943,-57.7630307264626,-57.59236927097663,-58.34719472192228,-59.01468385569751,-59.8292060806416,-59.037331216968596,-58.89341497793794,-59.59772997489199,-60.172477959189564,-60.81023692758754,-59.90261086681858,-59.398037791252136,-59.18973952438682,-58.64902069745585,-57.76653606258333,-57.67552542639896,-58.372783376369625,-58.7002285909839,-57.769411641173065,-58.18414895096794,-57.740645938552916,-57.165247925557196,-57.43636742467061,-57.601482877042145,-57.41325761610642,-57.16707970388234,-56.26740953978151,-55.44127142149955,-55.944274636451155,-56.90709179220721,-56.77208346221596,-57.736694504506886,-57.264893122017384,-56.95135253574699,-57.76545066246763,-58.17480606306344,-58.10559765947983,-58.996254925150424,-59.25633884733543,-60.02689116541296,-60.874604798387736,-61.05451233033091,-60.66686839796603,-60.177154797594994,-59.69492938136682,-60.22729720314965,-60.15031487541273,-61.08593556145206,-61.095863157417625,-61.30794697580859,-60.72646723827347,-60.080151424743235,-59.336809490807354,-60.22452520672232,-59.624797083903104,-60.09568122494966,-59.582599114160985,-58.96004602126777,-58.48543886980042,-58.067284542601556,-58.969776452519,-58.605932337231934,-59.602016183547676,-60.04229714162648,-59.33579700067639,-60.07960249343887,-60.020853615831584,-59.21844962053001,-58.2249537515454,-57.39382302062586,-57.46540945768356,-58.30645521776751,-57.50176374707371,-56.65091070672497,-57.019602524116635,-57.891249229200184,-58.567142507527024,-58.90511256782338,-59.05353695573285,-58.06561532104388,-58.128855142276734,-57.50158672174439,-57.214163766242564,-58.15052869170904,-58.4916335856542,-59.384521692525595,-59.38509950553998,-58.47944646701217,-58.03381089633331,-57.80773845780641,-56.95935452589765,-57.3368477136828,-57.58410239638761,-57.90355314128101,-57.28462100541219,-57.300507307983935,-57.04860803857446,-57.3154881359078,-56.386219632811844,-56.878600884228945,-57.3812209116295,-58.338379342108965,-57.747292714659125,-58.363824440632015,-57.74191735684872,-58.52981482585892,-58.82383558200672,-59.14680363982916,-58.29723834339529,-57.395620059687644,-57.06510105310008,-57.85151749430224,-58.59935849206522,-57.95145884435624,-58.56189821334556,-57.654498239047825,-58.521202894393355,-59.344243362080306,-59.48887509247288,-58.918349855113775,-58.562074358109385,-58.4810259626247,-59.171105393674225,-59.91775479633361,-59.29617947898805,-59.910723210312426,-60.14173188759014,-60.24598216218874,-60.752640339545906,-61.71126392344013,-62.18605619063601,-63.182097202632576,-63.82542247977108,-63.14162642834708,-63.473839143291116,-63.052319805603474,-63.533821573946625,-63.598403869662434,-64.043219930958,-64.85081717604771,-64.0655863233842,-63.20234776241705,-63.62023811414838,-63.10134129691869,-63.992196642793715,-63.743379559367895,-62.767383319791406,-62.856299775186926,-62.12210813630372,-61.573538281954825,-60.80518849659711,-60.69579057209194,-61.617829974740744,-61.71273223403841,-61.10815666196868,-61.11327884020284,-60.12710865912959,-60.6538911992684,-61.15956186084077,-60.704108284786344,-60.09485015878454,-60.9080243143253,-60.83876342186704,-61.713114811107516,-60.95094436733052,-60.912493518553674,-61.155228132382035,-61.66659874049947,-60.891575913876295,-60.41503999615088,-59.84251725394279,-59.062112539540976,-59.09696852508932,-58.1314483275637,-58.81033348990604,-58.750247199553996,-58.19240750791505,-57.20284865377471,-58.1486890418455,-57.27120200358331,-57.97028633346781,-56.97441243007779,-57.621097369585186,-57.98477468965575,-58.64968755142763,-57.93058857601136,-58.790867280215025,-59.68072755075991,-60.18964504823089,-60.56693659070879,-59.85255841771141,-60.16632874449715,-60.018051214981824,-60.21501059178263,-60.86831542197615,-60.42549349600449,-61.02193412696943,-60.642842564731836,-60.77371372608468,-60.87699145451188,-60.63921944517642,-60.784609886817634,-60.722496203612536,-61.46743862470612,-60.75718817906454,-61.306793216615915,-60.506758611649275,-61.31587720941752,-61.42602464556694,-61.102397171314806,-61.89266651542857,-61.23489683121443,-61.03026471007615,-61.73495241999626,-62.431814975105226,-61.58545660134405,-61.14345293911174,-61.92457318911329,-62.428242282010615,-61.67152519384399,-61.10279949288815,-62.01133913965896,-62.95470427861437,-63.30497787659988,-63.00235662702471,-63.517542083747685,-63.075892496388406,-63.92860380979255,-64.02189388079569,-64.77039730083197,-65.24671212164685,-65.65181274153292,-65.71714350627735,-66.7066620560363,-66.13806932559237,-65.63441298995167,-66.32795879570767,-66.06555280648172,-66.11906883027405,-65.14292035996914,-64.64800445642322,-64.25783021142706,-63.6352721657604,-63.3197462153621,-62.35788709577173,-61.93888428900391,-62.30816691974178,-61.58174230484292,-60.738017407711595,-60.66373725282028,-60.473499204963446,-60.10411830665544,-59.67301945434883,-59.61201337398961,-59.06698503345251,-59.00589627958834,-58.68552057445049,-58.684083350002766,-58.6566140842624,-58.573402917943895,-59.49988523218781,-60.126866213046014,-59.99759630858898,-59.779275280889124,-60.65098408702761,-60.94067795202136,-60.44352645240724,-60.903280867263675,-61.58110571047291,-62.17544961581007,-61.29134991392493,-60.3939870451577,-59.93884314689785,-60.122157253324986,-59.98597101075575,-60.972327932715416,-60.170268663205206,-60.16102627152577,-60.856145499274135,-59.95992521382868,-60.923046353738755,-61.4002314270474,-62.30782291153446,-62.75495047401637,-63.122315105982125,-63.42683381633833,-63.69783405587077,-63.43090254673734,-63.11130834883079,-62.28075235011056,-62.58455373486504,-62.526559714227915,-63.20115534448996,-63.86053338367492,-63.631923138629645,-64.11601810809225,-64.95282698376104,-64.34765383973718,-63.75001198099926,-64.51330624008551,-63.6225327886641,-63.253568016923964,-63.03902594605461,-64.00353352958336,-63.90046295989305,-64.11533801769838,-64.69823579629883,-63.82763499207795,-63.30051175458357,-64.1515352758579,-63.368390461895615,-63.22115768073127,-63.597933458629996,-63.898234045132995,-63.43963937787339,-62.51676044659689,-62.205440864898264,-61.38322520349175,-62.2521602967754,-63.011965362820774,-63.64985113451257,-63.33509239414707,-63.358172609470785,-62.58500786405057,-62.451133435592055,-62.347133008763194,-61.43357768794522,-60.44552198052406,-60.71501891873777,-61.104460860136896,-61.89681552397087,-61.94078753562644,-61.074575716629624,-60.447704314719886,-60.57621192978695,-60.64349809521809,-61.28723960276693,-61.10874608159065,-60.80305423680693,-61.02983213402331,-61.39016203675419,-62.33315185084939,-61.753119078464806,-62.007629338186234,-62.923426140099764,-62.92464373167604,-63.874869235325605,-64.71526745473966,-64.95166342705488,-65.54119510482997,-65.48790682340041,-64.61630889074877,-64.32966121099889,-64.74701533140615,-64.7084341775626,-63.76979297678918,-64.49549989588559,-63.7141286842525,-63.832331435754895,-63.75533651281148,-63.35315961483866,-63.09441957529634,-62.17504568723962,-62.37560241203755,-61.61021478008479,-61.07808575546369,-61.584618223365396,-61.880889277905226,-61.14150409726426,-62.05882829707116,-61.57307244464755,-62.268024136312306,-62.83728201687336,-62.360453211702406,-61.986747211776674,-61.3064613728784,-61.6114327753894,-62.05163560528308,-62.15833140630275,-62.44294528895989,-61.48644805001095,-61.83527902606875,-62.31553631555289,-62.95094537129626,-62.43309128051624,-62.556873267982155,-63.44211618974805,-64.24617481976748,-63.833855689968914,-63.71057336125523,-63.12425915990025,-63.22549221245572,-62.23829874722287,-61.783164852298796,-61.21730286674574,-60.64781448757276,-61.30105747608468,-60.753394353203475,-61.20740692131221,-61.99978071078658,-62.05076744360849,-61.93698678771034,-61.09779517399147,-60.84520649816841,-61.389230033848435,-62.211939331144094,-61.29165660124272,-60.31061416538432,-60.352432346437126,-60.7341295783408,-59.84272747253999,-59.54684729827568,-60.439158097375184,-60.215196856763214,-60.141526081133634,-60.238669362384826,-61.0657203970477,-60.69060663180426,-61.40740380063653,-60.48150527756661,-60.501272674649954,-60.514223316684365,-60.043237356934696,-60.56026585679501,-59.575090151280165,-59.89830878004432,-59.68550808168948,-59.911205370444804,-59.33673431398347,-59.55711902026087,-59.85709085827693,-59.397807663306594,-59.11264726566151,-59.4496212489903,-59.90625510038808,-59.13938215142116,-59.04841816937551,-59.967887869570404,-60.88870277488604,-61.10891729639843,-60.47192408749834,-59.48259069910273,-59.976255647372454,-60.00207843910903,-60.92247831309214,-60.773790835402906,-59.795755573082715,-58.832884351257235,-59.47485230723396,-59.65732542425394,-59.834200237412006,-59.33339649438858,-59.30216912133619,-58.37185903219506,-58.40552012110129,-59.18048222223297,-58.20075737545267,-58.24447855632752,-57.444260933902115,-57.20630488637835,-56.761868270114064,-56.86545618250966,-55.93025055527687,-56.84111682930961,-57.659787754528224,-57.7177585111931,-57.03860774729401,-57.06356282439083,-56.61276842560619,-57.485916826408356,-57.6776736844331,-58.37723682774231,-58.55417770380154,-58.943692001048476,-59.78305134829134,-60.20659616775811,-61.01784533634782,-60.27524971170351,-60.94413492223248,-60.782822337932885,-61.17374316370115,-61.53880671598017,-60.80550599936396,-60.71675946889445,-59.760400670580566,-60.71898610889912,-59.809303485322744,-60.724969297647476,-60.406114551238716,-60.32791419001296,-60.22240521106869,-59.65819753520191,-59.90824020514265,-59.41124943085015,-59.501789131201804,-60.367050654254854,-61.19070737622678,-60.59942931449041,-59.7783806133084,-60.453659107442945,-59.8340138127096,-60.01586629729718,-59.45386227313429,-59.334990439005196,-59.09651953680441,-59.72593479556963,-59.61258689081296,-58.88183621596545,-58.744886016473174,-59.418594281189144,-59.0702088996768,-58.851968995761126,-59.820556161459535,-60.0964835700579,-60.95491363666952,-61.532962512690574,-60.82077679876238,-61.53954483754933,-60.93502500606701,-60.28049795143306,-59.91386799281463,-60.667287182062864,-61.53842520993203,-61.550708351656795,-61.02984274877235,-60.67729970486835,-60.36289480701089,-60.819471932947636,-61.64496992295608,-61.9788777185604,-62.597316208761185,-61.76308944541961,-61.80314664542675,-61.92102558305487,-62.52215779060498,-61.81301362300292,-60.86722367396578,-61.00403859326616,-61.819139453116804,-62.408519682940096,-62.467848021537066,-62.09847518801689,-62.456876361276954,-62.60483064875007,-63.04064994631335,-62.944078660570085,-62.63849995844066,-62.84585981909186,-63.71107747964561,-62.730464761611074,-63.091543996240944,-62.993724808096886,-62.4903866937384,-61.87571057258174,-61.19694977859035,-61.55441456846893,-61.44036908401176,-61.89949305867776,-61.12240944430232,-60.70906326826662,-60.879181555937976,-61.622660246212035,-60.740039666648954,-59.78382428828627,-60.60951228206977,-60.34527375316247,-60.55356576666236,-60.687835266813636,-60.775069061201066,-61.10307851806283,-60.54358327947557,-59.99287940375507,-60.841419589705765,-59.983993406407535,-59.990020202007145,-59.532819809392095,-59.62665574206039,-60.29491751687601,-59.73226647870615,-59.990588502027094,-60.55194776877761,-59.622697732411325,-59.141356031410396,-59.98668440617621,-60.4145419546403,-60.51758087007329,-59.65978362085298,-59.528364807832986,-59.67337717395276,-59.33361633820459,-59.079438153188676,-59.20626653265208,-59.78753846837208,-59.11751594254747,-59.58700152300298,-59.28692448372021,-58.81223499169573,-58.576237202621996,-58.673030705656856,-59.374618084169924,-58.99706214945763,-59.33774573216215,-59.05258380388841,-58.71467399317771,-59.10196849470958,-59.07765235332772,-59.955040072090924,-60.44465205911547,-60.48460425110534,-60.737022859510034,-61.174567875918,-61.78435117425397,-61.627776333130896,-61.6949169379659,-61.62783589027822,-60.71757957758382,-59.72172347595915,-60.25131478346884,-60.025939114391804,-60.26702555269003,-59.9115678044036,-59.67668361123651,-59.415975047275424,-60.335777091328055,-60.08731861459091,-60.69351550284773,-59.798700438346714,-60.26225476153195,-59.94166904082522,-59.28319467930123,-58.35858303448185,-57.67647294420749,-58.46791539108381,-59.20643677096814,-59.746099091134965,-59.22866909392178,-58.83671422256157,-58.293259085621685,-58.37273308355361,-59.09818393131718,-59.15198988793418,-59.94906476326287,-60.300942894537,-60.169740004930645,-60.688031940720975,-60.66295489296317,-61.04733815090731,-61.4945233175531,-61.615527651738375,-61.85304175177589,-61.31287942593917,-60.55752124404535,-60.5220172284171,-59.93203906901181,-60.75597044825554,-61.29686091421172,-61.752665642183274,-61.84718174254522,-61.62338176416233,-61.01281009335071,-60.17173691187054,-59.30572760477662,-58.98068718286231,-59.93169852392748,-59.34039579425007,-58.67569154687226,-58.34938391670585,-58.3851954061538,-58.16299350280315,-59.03977041086182,-59.94257859233767,-59.26001422619447,-59.114299844484776,-60.01367821963504,-59.299175635911524,-60.084010439459234,-59.944690137170255,-59.291140786372125,-58.767528308555484,-58.99407914467156,-58.27045283606276,-58.38655825750902,-59.19695480586961,-60.07309767929837,-60.66434400016442,-60.021821583621204,-59.70894219726324,-59.17316332506016,-60.09244767576456,-61.03091164166108,-60.54323875764385,-59.59449669206515,-59.13691635336727,-59.41810077475384,-59.80252587329596,-60.5674435175024,-59.933890712447464,-60.30606901505962,-60.222077255602926,-60.72621829295531,-60.355124179273844,-59.59257206087932,-59.73996024206281,-59.39212944870815,-59.98739191889763,-59.693113333079964,-59.42757899360731,-59.22992965718731,-58.27758718421683,-58.84721607295796,-59.3946743956767,-60.02876045880839,-60.17796230921522,-61.0895242607221,-60.22951064631343,-60.304673263803124,-59.856603926513344,-59.70480686798692,-58.748028707224876,-59.564433354418725,-60.435685018543154,-59.811937652528286,-58.982185108121485,-59.39666952146217,-58.80218572122976,-58.72431464586407,-57.881149356719106,-58.396675650496036,-57.40474500413984,-56.86104330699891,-56.04451896203682,-56.828363571316004,-55.833399736788124,-56.705918218940496,-56.375103081110865,-56.91515210084617,-57.768217370379716,-57.24608174851164,-57.82208174094558,-58.557856161147356,-58.08602899359539,-57.90064290817827,-58.091800617054105,-58.15916242823005,-57.68258358677849,-56.990804858040065,-57.473049589432776,-57.72421391354874,-58.42592670675367,-58.261036144569516,-59.00120010180399,-58.476262936834246,-57.98312016064301,-57.73755869874731,-58.50872215023264,-58.56329127307981,-57.63648391049355,-56.71255418099463,-56.12083518970758,-56.97573472978547,-56.55628372589126,-55.863878751173615,-55.816863586660475,-54.83401573635638,-54.66618655854836,-54.095514229964465,-53.2722097132355,-53.98836849303916,-53.875122639816254,-54.50444758171216,-53.780380074400455,-54.26558033563197,-55.23692848300561,-55.34118692111224,-54.61219479329884,-54.20278117712587,-55.08666650438681,-54.72480833251029,-54.07659967895597,-53.64279899094254,-53.27626098971814,-53.66249663569033,-54.635415810626,-55.36679214751348,-55.45007813256234,-54.70804425422102,-53.89535187650472,-53.750207325443625,-52.844385573174804,-53.5267803510651,-54.037740090396255,-54.385735345538706,-55.30216010240838,-56.00809511356056,-56.18410297855735,-55.462524101138115,-55.80884239124134,-56.43059984501451,-55.86616902705282,-56.72754390724003,-57.29761331854388,-57.69038244849071,-57.978487010113895,-58.17342829471454,-57.3683821009472,-57.97062604688108,-57.181116009596735,-57.62973940605298,-57.27037839777768,-56.69224771950394,-55.86639115260914,-55.407119975890964,-54.584651675540954,-54.41761518782005,-54.891879570670426,-55.39257885608822,-55.09672988252714,-54.1363884434104,-54.963377675041556,-55.87406415026635,-55.831660733092576,-56.5583765571937,-56.0115751917474,-56.90808243630454,-57.78466846421361,-57.68393124639988,-58.104607447981834,-58.72120707761496,-58.12134037679061,-58.49321755813435,-58.14576821355149,-57.38397554541007,-57.986281434074044,-57.99033736111596,-57.50389834679663,-57.35545505024493,-57.95069058984518,-57.35791609156877,-57.76608707709238,-58.57430954743177,-59.1073351749219,-59.2616291414015,-60.139172066468745,-61.068922923412174,-61.19143551681191,-60.238900884985924,-60.032723100390285,-59.22533417819068,-60.13563470961526,-60.18209250504151,-60.659940308425575,-60.2552439365536,-60.7148591526784,-60.34732456319034,-59.422149159479886,-59.40012402180582,-58.57160755433142,-59.49220939259976,-59.65325781982392,-58.81630267063156,-59.46178855607286,-60.23260012688115,-60.57544698100537,-60.13633436290547,-59.627049810253084,-59.44794695824385,-58.9601363260299,-59.34427326358855,-59.96105551766232,-59.32554567465559,-60.16559168556705,-60.33470116602257,-60.08076981175691,-59.80478117382154,-60.05741652054712,-60.10776518797502,-59.64088715519756,-59.07277128333226,-58.248560772743076,-57.466070210095495,-57.69365220051259,-58.108672364614904,-57.34677139669657,-58.268483493011445,-58.87177418125793,-59.511543583124876,-59.465047280769795,-59.46770593104884,-60.24181436933577,-60.72285140957683,-60.60358375357464,-59.88834149297327,-59.50538572249934,-60.22277868259698,-59.78097296645865,-60.6706053907983,-61.652335070073605,-61.41526941116899,-62.05739525379613,-61.698155680671334,-61.83832785952836,-62.78634763043374,-62.77597895869985,-63.141992876306176,-62.28670976264402,-62.020039461087435,-62.17102109408006,-61.977729675360024,-61.11661472497508,-61.626030983868986,-60.73489472223446,-61.479612805414945,-60.57002653600648,-60.64563187910244,-60.12708479445428,-60.10444532241672,-60.72335604438558,-59.92239107284695,-60.26241690246388,-60.92459013918415,-61.223108587320894,-60.44712882814929,-61.17461329931393,-61.55875682923943,-61.606357163749635,-61.3768585473299,-60.42584652919322,-61.13324471563101,-60.9126744242385,-61.49918207060546,-60.5248040528968,-59.71429132577032,-59.975450185127556,-59.96669231913984,-60.60795510141179,-59.87799261743203,-59.28827362554148,-60.26675026817247,-59.665593883022666,-59.31175736989826,-59.27976678684354,-58.87164020957425,-59.47593455854803,-59.770537852775306,-60.24744598986581,-60.42237241426483,-61.126253991853446,-61.627974872943014,-60.65540762105957,-60.54056589771062,-61.0142960655503,-61.46800880227238,-60.96197815332562,-60.43396774539724,-59.904862825758755,-60.05379507225007,-59.98775988444686,-59.83349517825991,-59.788164026103914,-59.548657124396414,-60.49172480171546,-61.29539136448875,-60.942990372888744,-60.404771614819765,-61.18014807160944,-60.9644355783239,-61.545083875302225,-62.518942195922136,-62.451062738895416,-62.735566104296595,-63.498285742942244,-64.30529873725027,-63.39583909511566,-63.772205896209925,-64.5327474353835,-63.96142847510055,-64.84583300026134,-64.167256815359,-64.30519347405061,-63.772737505380064,-63.97992193652317,-64.80880766827613,-64.70542657980695,-64.03575137164444,-64.81640344299376,-65.60243355762213,-65.56807020166889,-64.91952478094026,-65.85843332996592,-65.30227144248784,-65.59148710221052,-65.25795393809676,-65.46778764296323,-65.29040810791776,-65.11974855791777,-65.80497424351051,-65.54352207481861,-64.7891799765639,-65.36239987658337,-65.27338825725019,-65.1269170306623,-65.26540666539222,-65.06850058725104,-65.93998620146886,-65.60406384058297,-65.5997467385605,-65.8613243792206,-66.23798229079694,-65.55346559453756,-64.5899873743765,-64.80793214822188,-64.02746250899509,-63.48974891891703,-64.13448987202719,-63.77246734360233,-64.37657997198403,-64.62177465111017,-63.735693788621575,-63.70788289420307,-64.57383683975786,-63.862788778264076,-63.96170712355524,-64.16861419985071,-64.89359208382666,-64.35959446011111,-64.45224243635312,-64.97535451315343,-65.1891509979032,-65.90423023048788,-66.28007968654856,-67.15911719435826,-66.76051843492314,-67.26569748017937,-67.3532900842838,-67.63858556142077,-67.84036646410823,-68.44281044602394,-67.53312368690968,-68.14925796771422,-68.27082642540336,-67.473069133237,-68.22841175785288,-68.53879280854017,-67.81389499129727,-67.14496656181291,-68.1209662463516,-67.9869974819012,-68.98122563771904,-69.18645910965279,-68.50361552694812,-68.65901371231303,-67.97834544815123,-68.97625184990466,-69.33384452899918,-69.7239053985104,-70.26745501020923,-69.52041901787743,-69.56603985000402,-70.10006245737895,-69.60591721534729,-69.5816124137491,-69.6069466280751,-70.5030591385439,-70.65031198691577,-71.13349213730544,-71.07933941343799,-70.60260239522904,-71.1656802133657,-72.03155857510865,-72.95547314267606,-72.34313035011292,-73.15827993256971,-73.16595814749599,-73.69381487974897,-74.28588071325794,-75.19760725880042,-74.49855908937752,-74.56370184803382,-73.69129991903901,-73.21645360067487,-73.9687058380805,-73.7782497513108,-74.72661261679605,-75.6083529223688,-75.42812603665516,-75.41226874804124,-74.93273732438684,-75.21371848974377,-76.03811090765521,-76.71132591273636,-76.96102615864947,-77.80091535765678,-78.13487484259531,-77.29310624254867,-78.24394502164796,-78.45778948813677,-79.10307450639084,-78.3147539710626,-78.4485536874272,-79.13010493805632,-79.78633765876293,-80.74229032732546,-81.45256748842075,-82.1780343875289,-82.28938977885991,-82.57039790600538,-82.24690431449562,-82.47684538923204,-83.13815935095772,-83.32987525081262,-82.3324114503339,-82.08575178962201,-82.54681706055999,-82.43478572322056,-81.61111541418359,-81.11605038587004,-82.02621299680322,-81.19524240074679,-80.89580973284319,-80.84174833912402,-81.65485814958811,-80.95638012699783,-81.89152343431488,-81.84313264256343,-81.69306437065825,-81.50295374682173,-80.78665202576667,-79.84571706550196,-80.76365610770881,-79.96290341205895,-80.55272747995332,-80.05222789477557,-80.32948897825554,-80.03492596046999,-79.65844161948189,-80.21919970214367,-79.5110989860259,-79.90502986125648,-79.88320844853297,-80.56856742408127,-80.83129222644493,-80.54973497753963,-80.37841125577688,-80.74188456917182,-81.420900919009,-81.66113448515534,-82.50547466985881,-81.70147310849279,-81.22411362500861,-80.46677865227684,-80.86848762771115,-80.00272896327078,-80.96570633351803,-80.72992933727801,-81.1629775930196,-80.8613100158982,-80.98087965184823,-81.54066089726985,-82.32030512299389,-81.66970482561737,-80.9613316343166,-81.95289523759857,-81.80179567728192,-81.89509355183691,-81.24450771743432,-81.3695491538383,-81.70294269453734,-81.28168633300811,-80.4646790008992,-80.77564017381519,-80.83920268388465,-81.07488012313843,-81.67024219362065,-81.41397914569825,-80.42875399580225,-79.92661564843729,-79.57136446563527,-78.84364146087319,-78.03629488870502,-78.15041745500639,-78.77005369309336,-78.80170774785802,-78.38631837209687,-78.03326806798577,-78.67188716121018,-79.47275389358401,-79.64174647815526,-80.59771101083606,-81.07087260577828,-81.31100304797292,-81.32537691388279,-81.56443828949705,-81.14304836140946,-82.0142919481732,-82.31832152418792,-83.12327144667506,-82.84140450926498,-83.79916976206005,-84.56152149196714,-84.96142705762759,-84.24495921609923,-83.84268203517422,-84.19358930690214,-84.71029901644215,-84.38873531809077,-83.4234575657174,-83.69612614391372,-83.34482457116246,-83.30895673949271,-83.45180417224765,-83.05865602428094,-82.9141118763946,-82.12018655473366,-81.2194104725495,-81.2304552597925,-80.82348702754825,-80.72846835991368,-81.18636355549097,-80.64644601289183,-81.63035937771201,-81.71836224896833,-81.00894570304081,-81.93486146116629,-82.85693000489846,-81.97615236602724,-81.85167654696852,-82.18478906108066,-82.64328997209668,-83.19470576616004,-82.44243314303458,-81.80894546443596,-81.03383452678099,-80.94882536539808,-80.00671481480822,-79.18643908714876,-78.48292197333649,-78.28059573378414,-78.83188248891383,-78.41858686646447,-77.56682717008516,-78.43265137681738,-77.61598103819415,-77.48200089484453,-77.25650892686099,-76.38124591857195,-76.5061746519059,-75.56898923730478,-75.03276042640209,-74.61997818015516,-74.51810449035838,-75.4728744532913,-76.12134307296947,-75.21649716189131,-74.26914358744398,-73.59403866203502,-73.17703538248315,-72.61023060465232,-72.09817932220176,-72.22044849582016,-72.34365441743284,-72.39906738698483,-72.2580352188088,-71.37597176898271,-71.93287412403151,-71.18261666642502,-70.64678728114814,-71.52236218517646,-72.01892363745719,-71.8865151037462,-71.80116746015847,-71.84554609283805,-72.19023274956271,-71.28430343000218,-71.69505240535364,-71.958029337693,-72.67249629739672,-73.35652054287493,-73.82808876503259,-74.07299285475165,-73.45982189057395,-72.95736211398616,-72.26007905555889,-71.813137893565,-71.37671848060563,-71.2471042862162,-71.74155912781134,-72.05593886924908,-72.45037584844977,-71.74673640914261,-72.5428732521832,-72.3428762331605,-72.74148321151733,-73.67185044987127,-74.23818165110424,-74.05308139137924,-73.61997177172452,-73.74277457688004,-73.40506684361026,-73.32604607287794,-74.03224272513762,-73.97108899941668,-74.94337383843958,-74.88491598609835,-74.24317784328014,-73.39289654465392,-72.75134097784758,-73.40614722529426,-73.44731530267745,-72.6436054627411,-72.38951435266063,-73.38474617432803,-72.62509672436863,-71.66031918488443,-70.84021923318505,-70.29817286366597,-69.73732433188707,-70.24637457728386,-69.7522436180152,-68.85996494116262,-68.55967076355591,-67.72369264019653,-68.0560002848506,-68.91660916199908,-68.61587435146794,-68.54039912112057,-69.29730229917914,-69.81389567023143,-68.8268447755836,-68.55720021668822,-69.33020791970193,-68.63693793071434,-69.04462246596813,-69.99857093347237,-70.75811772234738,-70.99238135199994,-70.23311710078269,-70.08418403100222,-70.45835396042094,-69.87643441883847,-69.50367292016745,-70.29845263063908,-71.1083747651428,-71.34125093091279,-72.29434050619602,-72.26330679329112,-71.73228893708438,-72.62126530148089,-71.63237750856206,-70.8417174522765,-71.27957012504339,-71.06396118598059,-71.3762650587596,-71.41576588945463,-70.59590193629265,-70.79655165178701,-70.26200491096824,-69.66825800249353,-69.60105685703456,-69.51021621143445,-68.87525879079476,-69.47075601061806,-68.60070511046797,-67.71659520128742,-68.44392012292519,-67.95419784309343,-68.74866725783795,-69.06199555005878,-68.4016847666353,-68.70832227589563,-68.81677073333412,-68.248399135191,-67.66908610798419,-67.22069651307538,-66.97647801600397,-66.48247026279569,-65.97895157383755,-66.60326847154647,-65.93501258967444,-66.70910159591585,-67.50696595292538,-68.122188271489,-68.03370713721961,-68.62015370465815,-69.00570292398334,-69.23636413831264,-68.28784293727949,-68.22878580959514,-68.35039056790993,-68.71292683668435,-68.9522995557636,-69.63030643109232,-70.27836638642475,-71.02040137490258,-70.27555043203756,-69.93353187805042,-69.22982163680717,-68.69938206579536,-68.6936172740534,-67.87788265012205,-67.13431272935122,-66.14140400197357,-66.8990919161588,-67.5880395672284,-66.8560635834001,-66.24575684359297,-65.5977057009004,-64.72648453479633,-64.59203758044168,-65.34638561401516,-65.07656577927992,-64.67242695391178,-64.79011043300852,-64.62269432842731,-64.86545107141137,-64.45521153090522,-65.44761715922505,-65.46480496786535,-66.42080076271668,-65.71628428297117,-66.5355406627059,-67.46209305291995,-67.52771748136729,-68.39542687125504,-67.5695360689424,-68.38246513390914,-67.70063056889921,-67.70239601191133,-67.52624359261245,-66.81173455994576,-66.40549825876951,-65.69527559261769,-65.244070161134,-64.83741905912757,-64.4354002987966,-64.57717714039609,-64.57529425993562,-65.31103789014742,-64.62361747445539,-63.69990229047835,-63.89273098204285,-63.60826950799674,-62.89040192216635,-62.94984125485644,-63.84013070585206,-62.995450554881245,-63.42210658779368,-63.56807724758983,-64.17814475623891,-63.83225831575692,-62.98075628140941,-63.22125101229176,-63.942031911574304,-64.26971457665786,-64.3370274817571,-64.11301863426343,-63.468547044787556,-64.07849653204903,-63.49193689832464,-63.72315849829465,-63.889781810343266,-63.345639031380415,-63.29124689940363,-63.06363250920549,-62.09321966255084,-61.824025969952345,-61.48572919238359,-61.33402901235968,-61.679251515772194,-61.45788803929463,-61.92408305546269,-61.86141934199259,-62.66129113966599,-63.64231614302844,-63.541305624414235,-63.30917765805498,-63.623268596827984,-64.4988532778807,-65.35021310811862,-64.62502324115485,-64.82451055943966,-64.6632284373045,-63.76648398768157,-64.02885871939361,-64.80148146813735,-65.59951315168291,-65.51091496367007,-66.25053085992113,-66.34025877946988,-66.38037556409836,-66.60885900817811,-66.31259491667151,-65.42302235355601,-66.17891150387004,-66.77186611294746,-65.78728258935735,-66.18462029565126,-66.67723576771095,-65.9574177050963,-66.59660772420466,-67.08027632860467,-67.64086006954312,-68.05475276894867,-68.11302717076614,-67.52634774334729,-68.22289697639644,-67.93596765771508,-67.89476643037051,-67.70153817208484,-67.81739812158048,-67.76989779062569,-66.99998283572495,-67.84807073231786,-67.16179152345285,-67.75055084051564,-68.51012403704226,-67.65641102660447,-67.10277691483498,-66.42428576759994,-66.47708869725466,-66.98043601820245,-67.6146096335724,-67.87867252714932,-66.88048282219097,-67.80080397194251,-67.90558197535574,-67.94740581838414,-67.98542631650344,-67.22795010125265,-67.83381801377982,-67.07387798186392,-66.47791550355032,-66.87954012490809,-67.30693987524137,-67.88916454464197,-68.45832056133077,-67.70437429891899,-66.83416396332905,-67.21231396822259,-68.1113138012588,-67.50082358950749,-67.37569627352059,-67.65205338550732,-67.81874540494755,-68.50337095372379,-68.70664326427504,-69.52503216452897,-68.52837972762063,-67.74107281072065,-67.55678368452936,-66.72531309491023,-66.58209030609578,-66.74032434541732,-66.52251069713384,-67.4964962550439,-67.74575873836875,-67.22985198441893,-66.3142545260489,-66.70984464278445,-65.89905665675178,-65.83910675020888,-65.31483531976119,-65.32504373742267,-65.99571817042306,-65.59657762898132,-64.81339292693883,-65.47551911929622,-65.38933692174032,-66.38685722462833,-67.20862894598395,-67.33769087633118,-66.61834911303595,-67.09521465701982,-66.43243929790333,-65.67969502089545,-65.05574263632298,-64.11185186821967,-64.83927935454994,-65.59979074681178,-65.88362505100667,-66.42904312955216,-67.13463329616934,-67.89146872423589,-66.99355252226815,-66.49309278978035,-66.43799666687846,-65.60546406637877,-65.10886082984507,-66.01883081719279,-66.89274215791374,-67.05768872285262,-66.87703177938238,-66.65762154851109,-66.4727879804559,-66.45072826137766,-67.38369596377015,-67.64221743959934,-67.58606480341405,-66.85975599521771,-65.97379551595077,-65.27312088245526,-66.26220989599824,-67.19458753382787,-66.83238269621506,-66.87607209663838,-67.34788872674108,-66.59113040100783,-67.29692230233923,-68.18162907427177,-67.5924201887101,-68.4819678189233,-68.73846288956702,-68.42231796495616,-68.131403490901,-67.96376416599378,-68.30935494648293,-68.19111377838999,-68.59209256246686,-68.71917158039287,-68.45193132478744,-68.73584940470755,-68.05183709505945,-67.5988162746653,-67.7588701248169,-66.77343768673018,-65.90527099790052,-66.83646557899192,-67.09368925448507,-67.95762926060706,-68.5450245840475,-69.13638666970655,-69.19551527267322,-69.98399767372757,-69.80266203731298,-68.91445907950401,-68.01386577496305,-67.77888221945614,-67.73842068947852,-67.77739114733413,-68.37450756132603,-69.18630396900699,-68.24617111729458,-68.74810381606221,-69.22230273718014,-69.39349025674164,-69.00025279633701,-68.13513354724273,-67.7534066606313,-67.34677248029038,-67.25064361607656,-67.84006769582629,-67.94205780047923,-67.2730639767833,-66.81069948710501,-65.84949651360512,-65.91070684650913,-65.26456540450454,-65.03650078969076,-64.27520335372537,-64.46091760182753,-65.09447266999632,-65.92096983036026,-65.85133980074897,-65.5610216432251,-65.35035842796788,-64.66846053674817,-63.932692346628755,-64.04118836624548,-64.86733973352239,-65.30676851281896,-64.41925828205422,-64.18303516600281,-64.34093103883788,-63.44782879948616,-62.71023676684126,-61.890497773420066,-62.78984931949526,-62.87647941755131,-62.52602018928155,-62.60313200810924,-62.778552094008774,-63.25192734366283,-63.251758441794664,-63.650456979870796,-62.74197180848569,-61.93076711380854,-62.41582386288792,-62.180759580340236,-62.92911585001275,-62.399477345868945,-63.33624706789851,-63.98499698936939,-64.14112588763237,-63.25545251742005,-62.47509360779077,-63.39532829169184,-63.01764946104959,-62.240785826928914,-63.156998325139284,-62.9677338632755,-63.395257563795894,-64.18213006854057,-63.75188099080697,-62.96136292396113,-62.65481117228046,-61.938430580776185,-61.41739286016673,-60.56484717037529,-60.86945240665227,-60.058970210608095,-60.787741024047136,-60.87648936687037,-60.04181305132806,-60.02521111629903,-60.33315384713933,-59.81777135748416,-59.469975949730724,-58.74170916993171,-57.838939644861966,-57.69665735028684,-57.086131075862795,-56.89809814048931,-56.43767448840663,-57.08311899518594,-57.020715868100524,-57.442630025558174,-57.34673368232325,-58.173741462640464,-57.44009619578719,-58.28008730337024,-58.39806731417775,-57.487226779572666,-56.71238173497841,-56.44451169576496,-55.52720187231898,-55.39432523306459,-55.03527703881264,-55.5026590093039,-55.52599024074152,-55.99132697051391,-55.631324174813926,-55.61322001833469,-56.17364026000723,-57.12231026403606,-56.74542934028432,-57.73833611840382,-57.10954059334472,-57.1450335085392,-57.804744348395616,-57.73258754517883,-58.42704867757857,-58.17716502817348,-58.47716583684087,-58.88584169046953,-59.64772762591019,-58.917499034199864,-57.99533766834065,-58.64968541637063,-58.35101469280198,-59.04035061318427,-59.88915746519342,-60.75743748387322,-61.203436938114464,-61.97726352745667,-62.63026973605156,-61.80695041688159,-62.662009028252214,-62.819270770065486,-62.5313025098294,-63.002050046343356,-62.47244996484369,-62.96521772630513,-63.130053012631834,-62.634207654278725,-63.221986992284656,-62.381119639612734,-62.42580737033859,-62.5948786213994,-62.25609879149124,-62.13824170501903,-62.71481005148962,-61.74953813711181,-62.6647804803215,-63.58690896863118,-63.46672555617988,-63.759321661200374,-63.603183050174266,-62.99460664577782,-63.86488940054551,-63.796296580228955,-64.7292806841433,-64.0038437913172,-63.261088266503066,-62.70807227073237,-62.36444554710761,-63.12857775948942,-63.35911016725004,-64.12394815124571,-63.48138038814068,-63.409880289807916,-64.39284294983372,-64.87302095722407,-64.5033875098452,-64.1373193077743,-64.52445687307045,-64.11066882684827,-64.36553858732805,-64.81130100646988,-65.41081464709714,-66.23399627162144,-65.52650375757366,-65.6644934262149,-65.11020565405488,-65.3839842514135,-65.38261437788606,-64.5743996319361,-63.613359599374235,-62.69377717748284,-63.13465454662219,-62.71249783411622,-61.79228836623952,-60.82004615711048,-60.52637004107237,-60.47048879461363,-60.89039853261784,-61.68399376049638,-61.84129236917943,-61.63175875833258,-61.426749339327216,-61.74980597710237,-61.5081392894499,-61.79635832039639,-61.432265863753855,-62.35082088178024,-61.54392953682691,-60.67434910451993,-60.31750740483403,-60.9769327994436,-60.233404881320894,-59.4612604114227,-58.841262307949364,-58.59078431362286,-58.42289656493813,-59.39339319989085,-59.791847166605294,-59.142070448957384,-59.14570644963533,-58.83729703258723,-58.737687604967505,-58.74412282463163,-57.84957158006728,-57.60983093455434,-57.521587438415736,-57.85156416380778,-58.63357797311619,-57.710313288960606,-57.283965985290706,-57.79354859702289,-57.55234766146168,-58.47528021223843,-57.531057816464454,-56.93366594007239,-57.6222158675082,-56.73808700637892,-56.47291478747502,-56.92213824251667,-56.89301268290728,-57.39071900676936,-56.69797863205895,-56.15901618031785,-56.173985958099365,-56.23819993296638,-55.41558505408466,-55.37303182808682,-55.73622170649469,-56.506566375494,-55.89212179882452,-56.70257665263489,-56.50324657699093,-56.043157077394426,-56.91727080568671,-56.82921998668462,-56.87896172190085,-56.28125258674845,-56.519278943073004,-55.59872723277658,-56.462007101625204,-55.61589605268091,-55.696713333018124,-56.49741341220215,-56.40485660079867,-56.49662661040202,-56.32669235859066,-55.53968483628705,-56.17686697980389,-56.5865036342293,-57.45169538166374,-58.141993096563965,-57.560375160072,-57.22182700270787,-56.549167197197676,-56.275462879333645,-56.015687853097916,-56.67068608198315,-57.34178769076243,-58.11092730751261,-57.28457280155271,-56.76431736489758,-57.08087505586445,-56.52427660161629,-56.672826441470534,-57.284499496687204,-56.65184093546122,-57.101014762651175,-56.970285463146865,-57.27426948118955,-56.421540066599846,-56.883523907512426,-56.2664612242952,-56.186009590514004,-55.76890030223876,-56.62245134403929,-56.07872559968382,-56.91234226291999,-57.504413162358105,-57.77125470852479,-58.34750177478418,-58.271797311492264,-57.96178371459246,-57.10346450610086,-56.4144752305001,-55.65122066391632,-55.50046809203923,-55.24690750101581,-56.21527542360127,-55.67660493589938,-54.79311971506104,-53.82309023430571,-52.938740093261,-52.8896476989612,-52.64725035103038,-53.09939321409911,-53.309237303677946,-53.91672391677275,-53.17411909112707,-54.07900014612824,-54.95868467679247,-55.53627512929961,-54.83085343334824,-54.109380662441254,-54.05425209272653,-54.693372113164514,-54.84353372780606,-54.8287020130083,-54.890481013804674,-55.20072375331074,-56.161998386029154,-56.58908403618261,-56.825596164911985,-57.65012724651024,-58.513821652159095,-57.552133234683424,-56.76942136371508,-56.4322767527774,-56.39815876726061,-56.02045559929684,-55.9894656999968,-56.629091292619705,-56.442046337295324,-57.105437067337334,-56.42470413725823,-55.535913007799536,-54.66705906810239,-54.363291369285434,-55.22708173375577,-54.7067885841243,-55.28015062538907,-55.31046759104356,-55.42865241598338,-56.24538875091821,-56.930911250412464,-56.56308585964143,-56.2121212054044,-56.342326026875526,-56.216582380700856,-56.44576795445755,-57.024000911507756,-56.63314269436523,-56.316672621294856,-55.96884061722085,-55.704202220309526,-56.64613873139024,-56.19275784492493,-55.20083594880998,-56.100463275797665,-55.179659517947584,-54.827519067097455,-54.07587307365611,-54.273746418301016,-53.85629431158304,-54.82163138361648,-54.599798598792404,-54.1273355926387,-53.57300711935386,-53.1147355879657,-52.3210349008441,-52.89517318550497,-52.32231514994055,-52.71757382666692,-52.83998511638492,-53.37317057373002,-52.49238666752353,-53.03785537555814,-53.88588424352929,-54.05701624182984,-54.195934866089374,-53.57307186257094,-54.53998213261366,-53.741094787139446,-53.00119414879009,-52.9417599439621,-52.6489104363136,-51.69484529457986,-50.81314985733479,-50.670078354422,-50.118412658106536,-50.74104816978797,-51.53550575720146,-51.39339262153953,-51.75567093631253,-52.183880565688014,-51.55434098094702,-51.874325305689126,-51.40863965963945,-51.840943065006286,-51.91261118976399,-51.45827698986977,-51.083654180169106,-50.627042294014245,-50.73232953483239,-50.08867391850799,-49.17867725715041,-49.03867612639442,-49.21840924862772,-49.25027675880119,-49.738797936122864,-49.09088408201933,-48.33899559546262,-48.25070168450475,-48.63103620707989,-48.37927886843681,-49.07998798415065,-48.41461511841044,-48.716162852942944,-48.5425791000016,-48.91844657296315,-49.528665786609054,-50.23923787102103,-50.18410965427756,-50.54699383163825,-50.715655118227005,-49.73250837670639,-49.009901360142976,-49.309660009574145,-49.08430562494323,-49.2922912533395,-49.51294369995594,-49.48957564216107,-49.48000220907852,-49.41959010763094,-50.06210773997009,-49.42325281351805,-48.94872854882851,-49.60246289521456,-50.086145414970815,-50.670293373055756,-49.82964272797108,-50.61710324184969,-50.211345716845244,-50.35928017180413,-51.12035909621045,-52.048344624228776,-52.5030970829539,-52.4475674033165,-51.58712897635996,-51.71022162400186,-50.999840379692614,-50.18078691093251,-51.084324026014656,-51.12334152683616,-51.245915750507265,-50.57962369872257,-49.86611599754542,-50.79774843296036,-50.746511683799326,-50.42398373829201,-50.968208929523826,-51.339182446245104,-52.27981493482366,-53.096522411797196,-53.25358577026054,-53.7183722355403,-54.068153189495206,-53.88103462709114,-53.64912156993523,-54.61898204591125,-54.594961278606206,-55.09050006093457,-56.07598767476156,-55.95644874498248,-55.55025017820299,-55.22303750924766,-54.947007258888334,-54.79968583351001,-54.99889976158738,-55.54520454863086,-56.37350260093808,-56.05722074722871,-55.445904817432165,-55.60287604946643,-56.09173663286492,-55.50212422432378,-56.1687771640718,-55.60604364844039,-55.19407782703638,-56.04715669481084,-55.956047024577856,-56.23377117654309,-56.17632227437571,-55.46093612862751,-56.098627359140664,-55.56770807411522,-54.84795464808121,-55.79805942485109,-54.88654660154134,-54.18874844815582,-55.03017954854295,-55.70918768225238,-55.26259801816195,-54.941753970924765,-54.69241355219856,-55.23496962012723,-56.23368700686842,-56.17701035644859,-55.67219997243956,-55.44188347272575,-55.92236932273954,-55.10735568962991,-54.26355563197285,-54.125899760983884,-53.384823991917074,-54.20808150386438,-53.716273927129805,-53.18049495853484,-53.68475537607446,-54.48892613314092,-55.38832172146067,-54.489673347678035,-54.59306644042954,-54.115192376077175,-53.89615578157827,-52.98485106276348,-52.285362652968615,-51.88527460722253,-52.650474650319666,-52.20732820313424,-52.272722428664565,-52.01091369520873,-51.02048354083672,-51.57174710230902,-52.13930501509458,-52.64692019717768,-52.399973412044346,-51.51556247519329,-50.93530416721478,-50.803389289882034,-49.94416685029864,-49.75640309276059,-49.05289120133966,-48.50443609105423,-48.18618038902059,-48.552636317908764,-48.040673236362636,-47.229581247549504,-46.84352524857968,-47.66604840848595,-47.886525040026754,-47.95943944482133,-48.24672280764207,-48.687011688016355,-48.133890024386346,-48.64371364749968,-49.169430458918214,-49.21081195957959,-48.485534665640444,-49.16638373862952,-48.653999691363424,-49.48712275410071,-49.374098354484886,-48.81307729938999,-48.835997119080275,-49.543245285283774,-50.260625563096255,-50.23172544175759,-49.26767725171521,-48.48191850492731,-47.785009865649045,-47.33958327025175,-47.122917304281145,-46.31705062324181,-46.44052605936304,-47.393965291790664,-46.50974363973364,-47.27807958284393,-47.75678573641926,-46.8212507176213,-46.068196460139006,-45.856555548962206,-46.75022369856015,-46.73240833217278,-47.71633965987712,-48.510647762566805,-48.48003278998658,-48.23721304954961,-48.37207828555256,-48.59010001132265,-47.835271805524826,-47.33948617335409,-47.67848657537252,-47.65557557391003,-47.52164989290759,-48.350620014127344,-48.635011814069,-48.386946166399866,-48.88185705151409,-49.637998562306166,-49.69029286876321,-48.867930341977626,-49.06372232735157,-49.35608042124659,-49.03787354566157,-48.56237517204136,-47.92987618967891,-47.59880316443741,-47.118348121177405,-46.320822230074555,-45.35660797264427,-44.708648891653866,-44.35325723839924,-44.25546783907339,-45.17141761723906,-45.421515439637005,-46.17652261676267,-46.38137072324753,-47.317181470338255,-46.83696102863178,-46.09376129740849,-46.746249564923346,-47.06504249526188,-46.8891215515323,-47.471530047245324,-47.908746033441275,-48.44309400347993,-49.35715251136571,-50.14092702511698,-49.84929398121312,-49.382015018723905,-49.6300056935288,-50.06273673288524,-50.463968810625374,-50.3064956124872,-50.14171807933599,-50.56628401950002,-51.392989289946854,-50.95898592565209,-50.439925209619105,-51.41061073029414,-52.141445260029286,-51.665188112296164,-51.24792560655624,-51.12530488613993,-51.214723638258874,-51.151031374465674,-51.96097391145304,-51.74805443454534,-51.002176478970796,-50.017242800910026,-49.29403460910544,-49.73560531483963,-50.429242896381766,-50.74924765340984,-50.27382879704237,-49.3612524215132,-49.163836950901896,-49.03342983825132,-48.66103590186685,-48.972568390890956,-48.843612858094275,-48.96974296681583,-49.82601091079414,-50.10280956374481,-50.363289156463,-51.34942096611485,-51.48081726813689,-52.13864201121032,-52.42822658736259,-52.37545906286687,-51.72209548205137,-51.445699382107705,-52.139282933901995,-51.91451793955639,-51.317600037902594,-50.610466815531254,-50.18542634975165,-49.71913056168705,-50.21805812232196,-50.73730720765889,-49.971353120170534,-50.57201635744423,-51.415271477773786,-50.52026656921953,-50.33129345998168,-50.77659837529063,-51.08305623335764,-51.84348561242223,-52.16942287934944,-52.06230531260371,-51.11968264076859,-50.35988351376727,-49.56314640445635,-49.07196324598044,-49.9039961816743,-49.51594108110294,-50.09426374267787,-50.33895509969443,-50.32221986958757,-50.68805262679234,-51.10625138692558,-51.354964796453714,-52.04192987456918,-51.77729965560138,-51.21674773097038,-50.49264213908464,-50.027153776958585,-50.944645777344704,-51.021629348862916,-51.320494619663805,-51.03498015739024,-50.81484621297568,-50.83293569739908,-50.9399799881503,-50.29776968667284,-50.03064689878374,-49.537976775784045,-50.38978591468185,-50.32754112733528,-50.73263322329149,-49.926735412329435,-50.706561132799834,-49.87908321944997,-49.54525770805776,-50.516629345715046,-50.72393262758851,-50.27099220082164,-50.66968376701698,-51.42510755825788,-51.74235346773639,-52.459460615646094,-51.60408050334081,-51.38984703272581,-50.424637640826404,-49.80085528222844,-49.46324251964688,-49.458826943766326,-49.392727080732584,-49.79312165034935,-48.99523663287982,-48.06111112469807,-48.01491150446236,-47.34926855377853,-47.25362994149327,-46.64830215135589,-46.50238296762109,-46.06218136800453,-46.96872156439349,-46.186024671886116,-45.43051301827654,-46.13688462134451,-46.84644414577633,-46.78037656471133,-47.26828110823408,-46.405742010101676,-45.444755320902914,-44.84987679636106,-44.68380851484835,-45.22890495369211,-45.46301939804107,-44.49340510228649,-45.14407924702391,-44.64244878152385,-44.959789065178484,-44.87590440036729,-45.13750480487943,-44.62169228680432,-45.339511286932975,-45.73487652745098,-46.42656944319606,-46.05438129696995,-46.643140356987715,-47.28978377627209,-47.42215583054349,-47.78804200468585,-46.920734321698546,-45.92778872558847,-45.429512571077794,-44.54639830859378,-44.89930982142687,-44.49265846470371,-44.69223195547238,-44.64058619271964,-43.87953192694113,-43.592476800549775,-44.21206037001684,-44.009145913645625,-43.33743616193533,-42.90072241378948,-42.691871082410216,-42.500603469554335,-42.59392904629931,-43.53567906329408,-43.77819954697043,-43.59562461217865,-43.46194314118475,-42.59060946898535,-41.99619001196697,-41.95766678266227,-41.978703069966286,-41.81886969599873,-41.79789759917185,-42.76508640963584,-42.214707697276026,-42.10822187969461,-41.910120801534504,-41.977414715569466,-41.84933835361153,-41.49075795477256,-41.75622190628201,-40.78124524652958,-41.22634166479111,-40.64349031820893,-40.09204688994214,-39.45265838317573,-39.986017347313464,-39.73680017888546,-39.65758517989889,-40.034653751179576,-39.180681203026325,-39.62646364606917,-39.136740969028324,-38.48535742331296,-38.3794867452234,-38.34497721726075,-37.40302549302578,-37.75891448603943,-37.07785116601735,-38.04643986048177,-37.16799536021426,-38.00725655211136,-37.3973477720283,-37.811932757962495,-38.36388072744012,-37.693219230975956,-37.19345032563433,-37.43981762509793,-37.02039189636707,-36.23352760449052,-35.74936055159196,-36.31988770980388,-35.90749366907403,-35.204465720802546,-35.48605626542121,-35.17032716143876,-34.393677128478885,-33.901736406609416,-33.38666738383472,-33.26743449596688,-33.69501932896674,-33.54264316242188,-34.49678553175181,-35.05192085867748,-34.57069383747876,-34.99944760650396,-35.670537784695625,-35.19867213862017,-35.205349263269454,-34.33951176190749,-33.77176077384502,-33.886562407016754,-34.43472414650023,-34.029825082048774,-33.596390017308295,-32.91450865752995,-32.43909344589338,-32.33464142354205,-32.89225153578445,-32.13256864529103,-32.039293349254876,-31.969729244243354,-31.70218027755618,-32.446347339544445,-32.837008917704225,-32.51858083810657,-33.22506252164021,-32.735485394950956,-32.65052383951843,-33.10026647616178,-32.515208886470646,-31.565427240915596,-30.866829181089997,-31.041852724272758,-31.968181163072586,-31.842743940651417,-31.994671513326466,-31.859786936547607,-32.10476245498285,-32.049683349207044,-32.012741713784635,-31.54997269017622,-32.141862843651325,-31.186958046164364,-32.11856340849772,-31.94751752121374,-31.29696016293019,-30.501897231675684,-30.57203049212694,-30.203109672293067,-30.66744469664991,-30.458253969438374,-31.220157982315868,-30.369424580596387,-30.448363681789488,-30.86931564612314,-30.844568404834718,-31.7633178755641,-32.7234031688422,-33.16169284377247,-34.12271674070507,-34.65109760919586,-34.9076382573694,-34.87923706974834,-34.645857291761786,-33.71873226761818,-34.57809239346534,-34.89974726969376,-34.50796750374138,-33.57828852161765,-33.89752976037562,-34.45553092472255,-34.71647625649348,-35.34543979447335,-35.258973808493465,-35.82254262128845,-36.209346482530236,-35.41204092558473,-35.35823275055736,-35.38455722015351,-34.44116082461551,-35.091471259947866,-34.13808297319338,-34.43479032162577,-34.92521692952141,-35.31689733499661,-34.51562169380486,-33.95682560745627,-33.27596443705261,-33.50513742212206,-33.986336818896234,-33.89063091017306,-33.87200065748766,-33.33717474061996,-32.56809859815985,-31.978284296113998,-31.807511562481523,-31.075699781998992,-31.19099244615063,-31.616342493798584,-31.366889570374042,-31.795111425220966,-31.143585523124784,-30.598306613508612,-29.74968010559678,-28.853379720821977,-29.519489463418722,-28.78948286548257,-28.38367142388597,-28.36285287840292,-28.586313179694116,-28.259661929681897,-27.296926244162023,-27.891956103034317,-28.322815041057765,-27.49533928371966,-27.13752130791545,-27.536399466451257,-27.335698710754514,-26.47323341947049,-25.81072170380503,-25.08583540422842,-25.767826843541116,-25.742010769899935,-25.721872008871287,-24.9654386844486,-25.543659993447363,-25.636395731009543,-25.39436908112839,-24.91007899073884,-24.426235284656286,-23.537584191653877,-23.58346444927156,-23.552364245522767,-23.96263440977782,-24.647600346710533,-24.901980775408447,-25.287558999843895,-24.69911961723119,-23.731139335781336,-24.34848042484373,-25.306657466571778,-24.59660522080958,-24.715470190159976,-24.329737769905478,-23.67602628003806,-24.444431845564395,-24.117626398801804,-24.844412453938276,-24.528963468503207,-25.065133115276694,-25.251499889884144,-25.570878092665225,-25.926602118182927,-26.564301592297852,-27.279449115041643,-27.83579295221716,-27.169805034529418,-27.40105428127572,-27.74914393387735,-27.879035755526274,-27.874066562391818,-27.828997436445206,-28.336759371683,-28.289995049126446,-28.97720879688859,-28.797380417585373,-28.454804125707597,-28.446353401988745,-28.673679799307138,-28.645420502405614,-29.244642190635204,-28.40956941526383,-28.30493940040469,-27.74059840803966,-27.44436842855066,-27.34045121911913,-27.85223026201129,-28.432582234963775,-27.65864911302924,-27.36273593083024,-27.752534126397222,-27.709584123454988,-28.395958443637937,-28.977305208798498,-28.220785427372903,-27.24872132577002,-27.631244395393878,-26.73812888097018,-26.946401091758162,-27.380231784190983,-26.681369843892753,-26.261267961002886,-26.24354495294392,-26.485654087737203,-26.403604662511498,-26.859815791714936,-26.7731931344606,-26.005955699365586,-25.81047736480832,-25.282506119459867,-24.309068481903523,-25.221920115407556,-25.849056627601385,-25.90830426895991,-25.07789223175496,-24.402142996434122,-24.452080581802875,-24.471338814590126,-23.97847094759345,-24.742226814385504,-24.57580763939768,-23.871718431822956,-23.139627132564783,-23.17405948927626,-22.603251582942903,-23.27220811136067,-23.256655482109636,-23.601946630049497,-24.156005720142275,-25.138461669441313,-24.160024982411414,-23.472072548698634,-24.351374729070812,-24.093767545651644,-24.804738075006753,-24.790172826033086,-23.932517861947417,-24.490204201079905,-24.481817277614027,-24.893922669347376,-25.70508103678003,-25.22235501743853,-26.073453818447888,-26.47726891329512,-27.398116540163755,-28.345948609057814,-28.858518697321415,-28.884506933856755,-28.925842811819166,-29.80744775943458,-29.730808636173606,-29.284235081635416,-28.99718554550782,-29.720861494541168,-30.477406991180032,-30.676197162363678,-30.001789059955627,-29.382872567512095,-28.735406223218888,-29.69602007837966,-30.570090527646244,-30.71885869698599,-31.37726699654013,-32.32341152988374,-32.305828134994954,-32.79219043906778,-31.869285317137837,-31.586599464993924,-32.510910301003605,-33.100905071944,-32.27013877313584,-32.97283259406686,-32.71210571844131,-32.5901810079813,-32.96124296961352,-32.61853577662259,-32.698932678904384,-32.07401309162378,-32.28220049338415,-31.427074555773288,-32.232859696261585,-32.344228277914226,-31.436573117040098,-31.386900807730854,-31.465135137550533,-30.727234317921102,-30.91532859671861,-30.187574374955148,-30.981346310582012,-30.38274410413578,-30.671756587456912,-31.410750524606556,-30.429317710455507,-30.99997059814632,-31.53603217145428,-30.816260888706893,-30.101518970448524,-30.52453656354919,-31.169501800555736,-31.881803310941905,-31.153536775615066,-31.888863750267774,-32.70579620171338,-32.577255038078874,-33.04433537553996,-32.57495865924284,-32.40221617091447,-31.640084714628756,-32.547077419701964,-32.13243116484955,-32.573782343417406,-32.21373361675069,-32.51789639191702,-32.777361813466996,-32.269988934043795,-32.425773160066456,-31.498553594574332,-31.417618243023753,-30.711440209764987,-30.769345079082996,-30.80703907692805,-31.192540887277573,-30.832975414581597,-30.653897143434733,-31.199474622495472,-32.03672426333651,-32.09114833222702,-32.07585691474378,-32.50928416196257,-32.05018685385585,-32.746929116081446,-33.58916836371645,-34.501435277052224,-33.64708392554894,-33.35428061708808,-32.963464844971895,-33.60367372818291,-32.88859139988199,-33.374651468824595,-32.90694827772677,-33.57710443018004,-33.03853779193014,-32.76152788195759,-32.6354616205208,-31.986987752839923,-32.36446554539725,-32.67730487184599,-32.2136579551734,-31.5222822772339,-31.56050966307521,-30.981302834581584,-30.421419387683272,-30.38556396961212,-29.87919298093766,-29.03936583409086,-29.686090788803995,-30.288737857248634,-29.749807335436344,-29.861602505203336,-29.06598917907104,-29.853715429548174,-29.28819406637922,-29.10680903121829,-29.09923197934404,-29.50445105601102,-29.495688311289996,-29.715887398459017,-29.394680194556713,-28.88060666806996,-29.324139419943094,-28.934154134709388,-29.239880942273885,-29.994617684278637,-29.647236548829824,-29.27966584265232,-29.520421660039574,-29.723370912019163,-30.525435329880565,-31.1289887111634,-30.599370676558465,-30.721653976477683,-29.892351284157485,-30.187340569216758,-29.695122386794537,-30.238294820766896,-30.511785297188908,-30.278789449483156,-31.137096321210265,-31.132236171048135,-30.41147537343204,-29.92042779782787,-30.297298631630838,-30.960683233570307,-30.847299561370164,-31.29840063676238,-31.683257203083485,-31.935220384504646,-32.85176861612126,-32.22462664404884,-33.088190698064864,-32.317643420770764,-32.82011148519814,-32.0305860186927,-32.08723528450355,-32.16562195075676,-31.41924757231027,-30.670272199902683,-30.445664767641574,-30.977160774637014,-31.830531541723758,-31.2966693979688,-31.715307320468128,-31.84585970081389,-31.220010270830244,-30.735756224021316,-31.595056761056185,-32.020352772437036,-32.50116686616093,-32.82612781971693,-32.862403051462024,-32.28970086853951,-32.14009827747941,-31.69123028917238,-31.541746007744223,-31.97139502223581,-32.02147614303976,-31.08697545574978,-30.294526615180075,-31.116699192207307,-30.24999132892117,-29.32219451572746,-28.520690474193543,-28.22472753887996,-28.928464636672288,-28.189409717917442,-29.177914867177606,-28.8446632665582,-27.99692827416584,-27.720836859196424,-28.312127442099154,-29.09880307968706,-28.89902584720403,-29.2224352825433,-29.49294596305117,-28.700616375543177,-28.35449338890612,-28.94586206646636,-29.05460538715124,-28.182428932748735,-28.60555109893903,-27.947664201259613,-27.25264646532014,-28.049464053474367,-28.719001159071922,-29.04083600314334,-29.120426919776946,-28.228583896066993,-28.367545587476343,-27.69769758405164,-28.031255655921996,-27.11041339673102,-26.40235055470839,-26.49875208735466,-26.37189233256504,-26.049882034771144,-26.021268548443913,-26.588324694428593,-25.646938847843558,-25.8310788590461,-25.729511709418148,-26.24220860656351,-26.786294764839113,-27.60517487488687,-26.660777783952653,-26.446695709135383,-26.929571321234107,-26.935786962509155,-27.212533716112375,-28.17053424892947,-28.840484206099063,-29.293897410854697,-29.72447666246444,-29.753776914440095,-29.802121776156127,-30.32669342122972,-30.62301242351532,-30.865516394842416,-30.36717190919444,-29.669748165179044,-29.30669215414673,-30.27456118958071,-30.18428099900484,-30.40410103695467,-29.88326761033386,-30.164959968067706,-30.090527953580022,-29.772863642312586,-30.334740347694606,-31.239629007410258,-32.06714029656723,-32.13736069248989,-32.94318771455437,-33.88628620933741,-34.70873115956783,-34.58173806546256,-34.92678875243291,-34.937274299096316,-35.56853753561154,-35.342391905840486,-34.97247063694522,-34.17827668925747,-33.34652892034501,-32.88512273365632,-32.16554927872494,-32.565755451098084,-33.17523494223133,-32.517395407892764,-33.04329444933683,-32.88323674723506,-32.82886314345524,-33.60861959774047,-33.698122987058014,-34.31679674470797,-33.940542643889785,-33.4570691511035,-33.24206504505128,-32.255577091127634,-32.29545112000778,-33.22338065318763,-32.38300982490182,-32.98099902784452,-33.63390618516132,-33.902724475599825,-33.62559729954228,-33.94953530607745,-34.24851133208722,-33.31068377243355,-32.45262931799516,-32.6497514154762,-31.98237049439922,-31.33985256170854,-30.665402644779533,-29.730342684779316,-30.484347192104906,-30.74423416843638,-30.888424545992166,-31.145341678056866,-31.775594037026167,-32.44916820060462,-33.013181620277464,-32.50015376554802,-33.46587148401886,-33.56099457014352,-32.63201822992414,-33.44524448411539,-34.12626676913351,-34.00521265016869,-33.08869462274015,-32.812332031317055,-33.737861106172204,-33.63763452321291,-34.57046183384955,-33.68202593829483,-33.628084673546255,-32.834492487832904,-33.57303133839741,-34.163020679261535,-34.39562520291656,-34.400204707402736,-33.9793035951443,-34.24404244776815,-33.31823755055666,-34.161192800849676,-34.326223716605455,-33.70568614825606,-33.23328351788223,-33.042215566616505,-33.008105005603284,-32.49607828212902,-32.012586360331625,-31.16944504203275,-30.22354044439271,-29.313599295914173,-28.98980267299339,-29.58126013027504,-30.444471492432058,-30.10870046308264,-29.86718752840534,-29.922446836717427,-30.537844970822334,-30.04392872704193,-30.803347818087786,-30.427241696976125,-29.584107146132737,-30.476768280845135,-30.378877735696733,-29.63273519463837,-29.016552769113332,-28.196726142428815,-27.534266480244696,-27.704362633172423,-28.232549293432385,-27.92770722741261,-27.91138168796897,-27.11229892121628,-27.915801593568176,-28.497919243294746,-28.759155506268144,-28.61269014282152,-27.67699300358072,-28.548787424340844,-29.11989484447986,-28.475369876716286,-27.542558309156448,-28.39259643992409,-28.38542206538841,-29.13826021179557,-28.41255759075284,-29.04657238163054,-29.371366846375167,-29.33923978358507,-29.395649610552937,-28.86860115081072,-28.74149291869253,-27.908543026074767,-27.68175896210596,-27.03464205842465,-27.776223278604448,-27.6301209628582,-27.394933411385864,-27.845499038230628,-28.21734068635851,-29.06073337746784,-28.309598988387734,-28.396326390095055,-27.566805547568947,-26.906956741120666,-25.994905036408454,-26.713333203457296,-26.433219322003424,-26.91144026769325,-26.208298163488507,-26.06328739458695,-26.33392425533384,-25.86347914300859,-24.8900317363441,-23.98604552913457,-24.823040299583226,-25.088527179788798,-25.922932918649167,-25.96242002211511,-25.385600990150124,-25.761964676436037,-24.876672450918704,-24.71796133276075,-25.29863070230931,-25.357441092375666,-25.05669725127518,-25.335403471253812,-24.416371876373887,-25.065043098758906,-24.356046124827117,-25.28592239320278,-24.762248548213392,-24.172994628548622,-24.319006426725537,-23.783856945112348,-24.78150627715513,-24.256590445991606,-23.29236474679783,-22.973040267359465,-22.6901218094863,-22.705011458601803,-22.04100316390395,-22.20871211029589,-22.36594138201326,-21.781654885038733,-22.752882918342948,-21.906798589974642,-21.069867176003754,-20.397602323442698,-20.239086806308478,-21.09829514240846,-21.796782539226115,-22.67690999759361,-22.34105710592121,-21.398507973644882,-20.441787446383387,-20.993493827991188,-20.788996560964733,-19.936573648359627,-20.743931689765304,-19.903905285988003,-19.046745816245675,-18.422618149779737,-17.797933978494257,-17.113940790761262,-16.823292181827128,-16.1511372118257,-16.68888100096956,-17.23170927911997,-16.274743725545704,-15.707373950164765,-14.945056676864624,-14.00195298017934,-13.351960003376007,-12.39549516607076,-12.857663021422923,-13.11548535944894,-13.908139671199024,-14.148206455167383,-14.894022931344807,-13.98032969608903,-14.740654930472374,-14.380856641568244,-14.374194414820522,-14.763535811565816,-14.780884973704815,-14.621971698477864,-14.340560322627425,-14.58665583608672,-13.729599349666387,-13.112258337438107,-13.871308981440961,-13.86948087438941,-13.413410827051848,-13.520872906316072,-12.898861775640398,-13.654013726860285,-12.926168168894947,-13.452218034304678,-13.600170220248401,-13.786917355842888,-13.40044426266104,-13.269135761540383,-13.34178631613031,-13.467026598285884,-14.257128663826734,-13.504490583669394,-14.090681789908558,-13.940357943996787,-13.463589852210134,-12.553136977832764,-12.238364619202912,-13.101395898964256,-13.285589194856584,-13.148096801247448,-12.261903990991414,-13.137686413247138,-13.247348319273442,-13.27794174849987,-13.526814163662493,-14.021030526142567,-14.074637881014496,-14.378361272159964,-14.019461848773062,-13.544283411931247,-13.43469410808757,-12.623931570444256,-12.032775199972093,-12.481202136259526,-12.692066440358758,-12.031750327907503,-12.188394382130355,-12.148405033163726,-12.908140378072858,-12.39683590317145,-11.506174659822136,-11.466721016447991,-10.780796798411757,-10.34796275664121,-10.935006480198354,-11.932230982929468,-12.099123608320951,-11.685530481860042,-10.754557580687106,-10.56015490135178,-9.880004293750972,-10.463730392511934,-11.248488990589976,-12.222958041355014,-12.510234063025564,-11.989670746028423,-12.496708618942648,-13.164943530224264,-13.574901771731675,-13.299407992511988,-13.428586395457387,-13.126462385524064,-13.224457122851163,-12.387299842666835,-11.907363542355597,-11.169687998946756,-11.309055852238089,-10.367007132153958,-10.39706783555448,-11.319227172527462,-11.853848719969392,-11.806016554124653,-11.788918100297451,-11.031434251461178,-10.563383274711668,-10.187275501899421,-10.937776912935078,-10.903035599272698,-11.75793026946485,-11.142932198010385,-11.727879890240729,-12.478671472053975,-12.139061195775867,-11.609085047617555,-10.689556995872408,-9.972563688177615,-8.977416982874274,-8.945750371087343,-8.847597770392895,-9.70021491497755,-10.277373515069485,-10.473213878460228,-11.010246500372887,-11.896629869472235,-12.501138808671385,-12.664555008988827,-11.81625059293583,-11.511389626655728,-10.859323585405946,-10.4239854789339,-10.60146859427914,-9.748180072754622,-8.84931951481849,-9.156364276539534,-8.875919377896935,-9.62086076149717,-9.455783731304109,-8.488935988396406,-9.073195540346205,-9.05997481616214,-9.72598016448319,-10.566190127283335,-10.966251253150403,-10.157624352257699,-9.315345416311175,-8.818339840508997,-8.393867064267397,-7.49298389442265,-8.239354732912034,-8.641438831575215,-8.838257307186723,-8.773486534133554,-8.436864810995758,-8.37661772640422,-8.077067880891263,-7.082488552201539,-7.861614273861051,-7.257519986014813,-8.0658227102831,-8.012625275645405,-8.858795971609652,-8.107355114072561,-7.329896200448275,-8.155469498597085,-8.40162826422602,-8.264028904028237,-7.8886447553522885,-7.940959624480456,-7.931371835526079,-7.387318772729486,-7.394861753564328,-7.914677281398326,-8.182339077815413,-7.302492201793939,-7.611760419793427,-8.01360680302605,-8.743572097737342,-9.51825992623344,-8.847853424027562,-8.771857750136405,-7.854150145314634,-7.4065098208375275,-6.8894995716400445,-7.8353549325838685,-7.785694257821888,-8.556255301926285,-8.731530737131834,-8.627342755906284,-9.402129251044244,-8.529969464987516,-7.858922470826656,-7.71249586250633,-8.26229928759858,-8.013237160630524,-7.461789070162922,-7.673824886325747,-6.9479985027574,-7.546353642363101,-7.587609458714724,-7.581268397159874,-8.001483413390815,-7.8884616838768125,-7.280219160951674,-6.467505693435669,-6.654624033719301,-6.704701844137162,-6.135439911391586,-7.124570835381746,-7.080280166584998,-7.255731443874538,-6.482310147490352,-7.2004510490223765,-6.948129613883793,-7.093699628487229,-6.570966901257634,-7.542562488466501,-6.607901775278151,-6.444833989720792,-5.971971094142646,-5.231489948928356,-6.015919018071145,-6.5598743269219995,-5.78908472135663,-6.366209854837507,-7.226393877062947,-6.715681427158415,-6.399486945476383,-6.830039199441671,-6.319439073558897,-6.248733057640493,-5.582799080759287,-6.109923526179045,-6.988086311146617,-7.443926943466067,-7.239552849903703,-6.578836370259523,-7.246993466280401,-6.348885847255588,-6.222170894034207,-6.288713116664439,-6.719274163246155,-7.309891550336033,-6.595661881845444,-6.5092690284363925,-7.401712914928794,-6.629893206059933,-6.086461160797626,-5.14148483145982,-4.670893617905676,-4.280268338974565,-4.378827903885394,-4.02483681961894,-3.0782336480915546,-2.941349586006254,-2.4931756434962153,-1.6599191226996481,-2.2312277583405375,-1.882180054206401,-2.0243512229062617,-2.8079555057920516,-3.667244927957654,-3.6191932279616594,-3.742883380036801,-3.9282399965450168,-4.692572496365756,-4.611294565722346,-5.527404049411416,-5.475345203187317,-6.1731584863737226,-6.544545714277774,-5.694205056875944,-5.2080869800411165,-4.89035442750901,-5.618080820888281,-6.0014660861343145,-5.767127213999629,-5.232262903358787,-5.744164087343961,-6.656758869998157,-5.798634780570865,-6.041179537307471,-6.3760565258562565,-5.514590291772038,-4.917916567996144,-4.770230141468346,-4.206667758524418,-4.37974142190069,-4.394968901760876,-3.721532840747386,-3.5207235338166356,-3.3726204675622284,-2.449319231789559,-1.5512425391934812,-1.1236390378326178,-0.7795873950235546,-0.6585957133211195,0.29411001969128847,0.3801702531054616,0.7660894161090255,1.56542160641402,2.1925892210565507,1.814157740212977,1.2019915380515158,1.093689888715744,0.2058214107528329,1.0677503193728626,0.4575019679032266,0.0334092783741653,-0.8909915229305625,-1.523141142912209,-2.1898528654128313,-2.44989519007504,-1.5383744481950998,-2.105022689793259,-3.0344182047992945,-3.825896814931184,-3.5677530602551997,-3.533544390462339,-3.921661140397191,-4.4538895837031305,-4.258289713878185,-4.397875205613673,-4.883118316996843,-4.71915025729686,-5.219395514111966,-5.1867196266539395,-4.834608610719442,-4.705910591874272,-3.9772794749587774,-4.673424455802888,-4.7012287843972445,-5.235886168666184,-4.748497440945357,-3.9843666958622634,-3.691151993814856,-4.564008600078523,-3.689970662817359,-4.37738350732252,-3.974918917287141,-3.773967871442437,-2.9736679610796273,-3.2066581076942384,-3.7119354009628296,-3.2085798741318285,-3.507963719777763,-2.6358913080766797,-3.110763906966895,-2.682062613312155,-1.7312829089350998,-0.960666845086962,-0.3126862244680524,0.13309710752218962,0.1327416175045073,0.2296639122068882,0.5762829156592488,1.1886855927295983,1.3962651216425002,0.9351690281182528,0.4643485574051738,0.3494726796634495,1.1090707969851792,0.14828888047486544,-0.1250637685880065,-0.03392117144539952,-0.3941199565306306,-1.0903991269879043,-0.7501743426546454,-1.5363400867208838,-0.5930267372168601,-0.7907973239198327,-1.39993880642578,-0.5484733073972166,-0.10301470942795277,0.5597009202465415,1.0064300796948373,1.4074239879846573,1.5211101532913744,1.6056943000294268,2.1878738119266927,3.1542835985310376,3.6818311884999275,2.7601470835506916,3.4177413540892303,3.24668449210003,3.4661765126511455,4.0443856082856655,3.172445110976696,2.7801788933575153,2.697290554177016,3.308020459022373,4.223015586845577,3.437862084712833,3.1662450176663697,2.4814380924217403,2.1291122282855213,1.6462132302112877,1.7660157745704055,1.9606862980872393,2.1819708151742816,2.887360990513116,3.8285507578402758,3.072182477917522,3.6804779269732535,4.173210777807981,3.5971720018424094,3.708246408496052,4.0970990103669465,4.754128917120397,4.7915189526975155,5.558994118124247,5.074797462206334,5.14261458767578,4.381201060954481,3.767976741772145,4.178843011148274,4.161773798987269,5.011500819586217,5.745098624844104,5.947772340383381,5.176787111908197,5.749070216435939,6.713259789161384,6.926627016160637,6.667921291664243,6.346746332012117,6.630784276407212,6.628988268785179,6.5364745846018195,7.353597171138972,6.887299565132707,5.922431611921638,6.177474171854556,6.419234907254577,7.324182657990605,7.699970040936023,6.743886046111584,6.7045962028205395,6.128554144874215,5.36158228572458,5.743534069508314,6.697049878071994,6.916929069906473,6.523349175229669,7.049607713706791,7.524049507454038,7.614052494522184,7.0696668359451,7.658355505671352,7.974883261602372,8.269433830864727,7.3495600540190935,7.452177952043712,7.509392298292369,7.396275295410305,7.824123161844909,7.05226715747267,7.961357492953539,7.952279279474169,8.435487781185657,8.939617674332112,9.399915874935687,9.2126921932213,8.72203005105257,9.56698389351368,9.546906934119761,10.51976394560188,10.66743580950424,10.073058003559709,11.072783407755196,10.912707955110818,11.756990818772465,12.719644437544048,12.417176354676485,11.929910192731768,11.765049336012453,12.198315234854817,12.584770429413766,12.062275137286633,11.593563475646079,11.618929816409945,12.286402732599527,12.561757045798004,13.433533897157758,13.585856138728559,12.868936139158905,12.449571072589606,12.696225760504603,12.163785024546087,11.294597919099033,10.41016581421718,11.068768256343901,11.069892610423267,10.383627637755126,9.57829052163288,9.741636652965099,10.30710720969364,10.149235176853836,9.47182577708736,8.708847111556679,7.790412846021354,6.890103201381862,6.822013720870018,6.4025230295956135,6.135671988595277,5.261560507118702,4.6360680651851,4.786215100437403,4.6567137581296265,4.174284989479929,4.225144203286618,4.034630951471627,3.4173506484366953,4.27562210150063,3.4960281383246183,3.3080572127364576,2.9898686250671744,3.6329755508340895,4.6103362939320505,4.914861069526523,4.493941394612193,4.495914367027581,4.315111272968352,4.709432207513601,5.006468456238508,4.757006260100752,3.9666644604876637,3.274129650555551,3.3960987916216254,2.7209124541841447,2.8456821837462485,3.332118256483227,2.813370651565492,2.3045606641098857,2.52208853000775,1.935905841179192,1.6872550044208765,1.187096653971821,0.5443450952880085,1.3014647723175585,1.7682293532416224,2.3824945855885744,1.8233123370446265,1.4904706203378737,1.6131463614292443,1.9032721598632634,1.7862890725955367,2.4738763701170683,1.9373150998726487,2.0138827078044415,1.2729305354878306,1.0714525394141674,0.6714305393397808,1.3457072163000703,1.5722513180226088,1.5286543723195791,1.4436336690559983,0.9806287623941898,1.22433941392228,0.9351429273374379,1.8016929938457906,1.4823803463950753,0.9890607949346304,0.14423372084274888,0.1325999405235052,-0.8241855977103114,-0.015849479474127293,-0.5774568887427449,-0.2290863306261599,-0.8816047259606421,-1.2867035190574825,-1.3140504332259297,-1.4730279743671417,-2.091232794802636,-2.6637488109990954,-1.7904510158114135,-1.6764926668256521,-1.1159499529749155,-0.5611160593107343,-0.12479551322758198,0.40425614546984434,0.43425721069797873,0.7366249398328364,0.6163439410738647,1.1040256367996335,1.0235812929458916,0.25104283820837736,-0.37776139192283154,0.2286551776342094,0.14204436261206865,-0.5825973572209477,0.11874948022887111,0.09132032189518213,-0.5438779136165977,0.2655798248015344,-0.25111143570393324,-0.6607051901519299,-0.32039297139272094,-0.33457613131031394,0.636868650559336,0.1441913959570229,-0.8026155517436564,-1.0914779766462743,-1.030207130126655,-1.1331817731261253,-0.9391589541919529,-1.3380779647268355,-0.9984093783423305,-1.500430610962212,-1.7107396693900228,-2.402424231171608,-2.4100563819520175,-2.710446354933083,-2.2643068190664053,-2.6621588757261634,-3.3766817366704345,-3.074714313726872,-2.3830794510431588,-1.5937345512211323,-1.4426670195534825,-1.3815864496864378,-1.3928842460736632,-1.575964406132698,-1.3212218880653381,-1.7307356181554496,-1.1668180827982724,-0.2879814268089831,0.1671650386415422,-0.7385265449993312,0.2577527859248221,0.032454697880893946,0.6516192820854485,-0.004474219400435686,-0.1453333399258554,0.3520841160789132,0.10917205642908812,-0.20557320024818182,0.1592283332720399,1.101278271060437,0.5371078089810908,0.6992744188755751,-0.062186752911657095,-0.5755529226735234,-0.33089920273050666,0.14539528964087367,0.9061241173185408,1.0543286502361298,0.44845428643748164,0.9590560481883585,0.08613799698650837,0.7032021582126617,0.4350115554407239,0.7884933608584106,1.6517514227889478,2.0152944470755756,1.9739491394720972,2.642845055554062,3.10450276453048,2.9516754555515945,3.4753225608728826,3.9991112197749317,3.955862447153777,4.136345729697496,4.250911901239306,3.5356615716591477,3.547657164745033,2.686694430653006,2.534624573774636,2.6717797606252134,1.8803620804101229,2.0146986176259816,1.9670031554996967,0.9696482555009425,1.8337007714435458,2.5167882977984846,2.1463196757249534,2.082818859256804,1.229092005174607,1.373374710790813,0.5564236352220178,0.44941585417836905,-0.4623619047924876,-1.1204891134984791,-2.064814771991223,-1.6753431130200624,-2.174596096854657,-2.7529156147502363,-2.679613607004285,-3.22469150647521,-3.0677712108008564,-2.7179931704886258,-3.412217436823994,-4.059509334620088,-3.3661767286248505,-2.9100322225131094,-3.5520016909576952,-4.180763649288565,-3.9265955318696797,-3.6125072175636888,-4.496547298971564,-4.602951046079397,-5.174716918263584,-5.221046814695001,-5.14975632308051,-5.409178537782282,-4.662107339594513,-5.582190320361406,-5.804245319683105,-6.098372501321137,-5.556346842553467,-6.439174065366387,-5.8423025901429355,-5.304622703231871,-5.9577911691740155,-6.790281962603331,-6.534967979416251,-6.731896475423127,-6.477834625635296,-7.4276508199982345,-8.142506254371256,-7.290518357884139,-7.548320952337235,-6.653587081935257,-5.6698013306595385,-5.967082671821117,-5.226724769920111,-5.087745473254472,-4.590606868267059,-4.851068736054003,-4.758354070596397,-5.129956508986652,-4.471284163650125,-4.523178375326097,-4.450755389872938,-3.7399423364549875,-3.0289571471512318,-3.5289186565205455,-3.254506097640842,-3.309324739035219,-2.5730396630242467,-3.27071903180331,-2.539251904003322,-2.59025923255831,-1.8042768612504005,-2.5015447032637894,-2.8283336074091494,-2.1520084808580577,-1.6752935899421573,-0.7652545771561563,-1.079589284490794,-1.1916722394526005,-1.1388943218626082,-1.5636557606048882,-0.8487924779765308,-0.5313666332513094,-0.01750303152948618,-0.7420738353393972,-0.4452516748569906,-1.2609469639137387,-0.7152053187601268,-1.5181617084890604,-2.3082635020837188,-1.6442050272598863,-1.4042113185860217,-1.9024595208466053,-1.129017402883619,-0.21996150445193052,0.4591299029998481,0.44382509449496865,0.41615520836785436,-0.4445431251078844,0.037641553208231926,0.41600606171414256,0.42459019320085645,0.2501232740469277,-0.45108334301039577,-0.15497485361993313,-0.8875385224819183,-1.130728155374527,-1.8366977130062878,-2.056036135647446,-1.3051291378214955,-0.4887325782328844,-0.23557687876746058,-0.07278254209086299,0.5735467649064958,0.285099689848721,-0.2339088972657919,0.4863244192674756,1.0955282314680517,1.226554796565324,0.7966073327697814,-0.051508812233805656,0.11950438749045134,0.47513316199183464,-0.31925832759588957,-1.1274524880573153,-1.1330719296820462,-1.901132692117244,-1.7610795069485903,-2.5560004110448062,-2.587923802435398,-3.260645226575434,-3.70135435461998,-2.7673408458940685,-3.2913382942788303,-2.640688464511186,-1.9673296064138412,-1.2926774080842733,-1.5144602409563959,-0.6659060223028064,-0.18935078289359808,-0.7376880161464214,-0.15562262758612633,-0.5188859151676297,-1.119875103700906,-0.2790389391593635,0.5265259887091815,0.598644298966974,-0.03359781764447689,0.040852623991668224,-0.717427721247077,-0.03271595016121864,-0.8447852246463299,-0.07410789839923382,-0.07647505542263389,-0.5467651640065014,-0.5806286567822099,-1.4526212154887617,-2.1336760288104415,-2.3469896055758,-2.9576526572927833,-3.416622079908848,-3.1404384560883045,-2.2226722659543157,-2.1567610050551593,-2.4541394584812224,-1.5904883481562138,-2.5550589566119015,-1.719957419205457,-2.688306570984423,-2.223234090488404,-1.3349148607812822,-0.5431847455911338,0.20459618465974927,1.1092326184734702,0.5151245296001434,0.5426476844586432,1.1737848329357803,0.8589657503180206,1.1883530942723155,0.2874326575547457,-0.07083575846627355,-0.0806633704341948,0.4753955123014748,1.1158327916637063,0.8306274437345564,1.728109783027321,1.878842752892524,2.7562653804197907,3.142348164692521,3.19697374291718,3.1697939094156027,3.9655909440480173,4.599350419361144,5.542318137828261,6.0247656856663525,5.298891260288656,5.943686018232256,6.1040678336285055,6.510604707058519,7.417686841450632,8.201304760761559,7.7457779361866415,8.139997149351984,8.667793904431164,9.630156660452485,9.411947427783161,8.943634010851383,8.722494250163436,8.720274662133306,9.642063071019948,10.528367413207889,11.0382134844549,10.795290667098016,11.605049573350698,12.551088988315314,12.126368666999042,11.398840008769184,12.241207970771939,12.481028314679861,13.211970361415297,12.251015676185489,11.26036852132529,12.186058145947754,12.375706436578184,11.448816222604364,11.712106321007013,12.185714824590832,13.130955689121038,12.492497716564685,12.94432609481737,13.286914503667504,13.373925962485373,13.101430552080274,12.942237105220556,12.84049506438896,12.960273119155318,12.323163180612028,13.288713674061,13.32012689858675,14.074649843852967,14.143049699719995,13.614446746185422,13.611256231088191,13.867617846466601,14.28020495455712,13.6110671563074,12.651539039798081,12.166324044112116,12.512920721899718,12.860611390788108,12.81872630212456,12.497973608318716,13.115853430237621,12.535002056974918,12.933811120223254,13.606717789545655,14.285484846681356,13.62474368698895,13.01957508129999,12.946429911535233,12.634002035018057,13.544198428746313,12.656273730564862,13.166767991147935,12.688613012433052,13.483744249213487,12.636525391601026,13.073018429800868,12.127350415103137,12.489193317014724,12.715633306652308,13.547863844782114,12.555394985247403,11.983628065790981,12.119340834207833,11.7048196378164,11.35532548930496,11.960127395112067,12.48752207076177,12.407450377941132,11.987770576495677,11.642005030065775,11.775836911052465,11.856672259513289,11.930261633358896,12.737478855066001,13.126460020896047,13.056772212032229,13.698351197876036,12.951426044106483,12.374818623065948,12.636243131477386,11.879915777593851,12.679546271916479,11.709999886341393,10.989484660327435,10.999049116391689,11.121509158518165,10.736271426081657,11.31118953321129,11.452129033394158,12.255457080435008,12.423497254960239,11.436709086876363,11.939311102963984,11.354587205685675,10.777701260056347,9.920255246106535,10.127034787088633,10.212154581677169,10.799866686109453,11.598730261437595,12.440189238637686,12.323073970619589,11.369547941721976,11.743796912487596,12.402948788832873,11.885806251317263,11.023250072263181,11.940621186979115,12.12318937573582,12.926689961925149,13.713118742685765,14.693088945467025,15.054151414427906,15.59914039587602,16.35615101456642,16.8971325783059,16.910066251643002,15.952339000534266,15.770667399745435,16.45685130590573,16.941634878516197,17.533080217894167,16.95309132989496,17.081994023174047,16.553764674812555,16.18772197747603,15.418718587141484,15.179945570416749,14.619371123146266,13.946492811199278,13.855067672673613,14.411438344977796,13.859894146677107,14.167945106048137,13.312449478078634,12.646163966041058,12.288650717120618,12.79613699298352,13.367089555598795,14.290657232515514,14.628286234103143,15.301812796387821,15.877126763574779,15.229704418219626,14.475829605944455,15.232027746271342,14.494605636689812,14.67924322327599,15.493633619509637,16.231294941157103,15.632998671848327,15.163329303264618,15.490135482978076,15.059757363051176,15.118888058234006,15.021632360294461,14.286834864877164,13.761450267862529,14.385573226958513,13.933966952841729,14.307056236080825,14.502270181197673,14.595822809729725,14.51455241534859,14.520867007318884,13.933722478337586,14.080821351148188,13.667062318418175,12.970007466617972,13.492840035352856,14.015592590905726,13.570177959278226,13.900641650892794,13.250955674797297,12.667275493498892,12.331529756542295,13.009799932595342,12.12423232756555,12.092248269356787,12.550495022907853,12.919459951110184,13.213556543923914,12.721169730182737,12.864246205892414,12.016897082794458,11.600125768687576,11.622668547555804,11.116315458435565,11.992712150327861,11.002362706232816,11.890722061973065,10.984106867108494,11.247585864271969,12.226059726439416,12.056264024693519,12.442633020691574,13.238264079205692,13.772813209332526,14.180852315854281,14.318801888264716,14.295388643629849,14.431802451610565,14.118432507384568,13.763912190683186,12.99868021113798,12.2770108981058,12.048735034186393,12.93164351535961,12.395826096180826,12.19303950574249,11.710775829385966,11.928773559629917,11.383036443032324,10.86188322911039,11.545617027208209,11.099462247919291,11.945734962355345,12.316966506186873,11.63836298044771,10.928734326735139,10.150906486436725,9.247534967493266,9.196679367683828,9.325694570783526,9.779537292663008,10.123775092419237,9.873423632234335,10.306453127413988,9.639418336097151,10.212499096058309,10.405358338728547,10.112629513721913,10.32667273748666,10.092313455883414,10.030095695517957,9.152205750346184,8.733934761956334,9.61247527692467,9.970447887666523,10.0919159934856,10.617360292002559,11.391261094715446,12.344206159003079,12.571432662196457,11.982968660537153,11.228119266685098,12.114377778023481,11.655954068060964,12.500137439928949,13.331625652965158,13.250692939851433,12.806696574669331,11.97660038433969,11.426782068330795,11.373794504906982,11.173831223510206,10.813361898995936,10.675094977021217,11.62885965546593,11.195417532231659,10.678207453340292,10.077997643034905,9.265473472420126,10.058803485706449,9.881259170826524,9.640406171791255,9.616847480647266,10.130051549524069,9.415549197234213,9.641562268603593,8.87357449857518,8.403509664349258,8.311807051766664,8.510514019057155,7.926992343273014,8.698276416864246,9.629739881958812,9.560285323299468,10.328791847452521,10.742876138538122,10.452064990065992,10.64354114420712,10.542850048281252,10.571727864444256,11.404627881012857,10.86220938153565,10.089150148909539,10.853355757892132,11.723993017338216,11.196484049782157,10.772297909483314,11.621126374229789,10.803207328077406,9.80943362787366,8.822812371421605,8.605910993181169,8.666283201891929,7.782508288510144,8.510219678748399,8.185398273635656,9.176053075119853,9.48875136487186,9.854589022696018,10.018919097725302,10.518698184285313,11.366827441379428,12.332047479692847,12.330871807411313,12.403972926083952,11.853145859204233,11.358375696465373,10.417395889759064,9.857605306431651,8.956879320088774,9.833736789878458,8.87293190928176,9.829975576605648,9.96137580042705,9.872100369539112,9.61201994214207,10.497792867943645,10.17476411163807,9.467455900739878,10.441734372172505,10.048447432462126,9.410634518601,9.92257012333721,9.212568702641875,8.874285151716322,7.978504898957908,7.060804497916251,7.281120527070016,7.526136005297303,7.816398661118001,8.123723380733281,7.99239463172853,8.967452128883451,8.143227766733617,7.94238581834361,7.264436604920775,6.755358345806599,7.494490218814462,7.910562593489885,7.12491991976276,6.558273843955249,6.514790867455304,7.328087616246194,7.0363708338700235,7.8108667228370905,7.497305900789797,8.38167407317087,9.222218158654869,9.486977697815746,8.823009573854506,9.77647713245824,10.326005992013961,10.871073138900101,11.034404144156724,10.204535868950188,10.131830925587565,9.998409591149539,9.434958623256534,9.55511681130156,10.101048693060875,10.536150822415948,11.353643944952637,11.662290952168405,11.622772752773017,11.1938271895051,11.32575313327834,10.926221352536231,11.16875780466944,11.381979051511735,10.8926632553339,11.803481823764741,12.48533499147743,12.413442709017545,12.093408056069165,12.568153426982462,12.53285631351173,12.006503455340862,12.369372330605984,11.74739217152819,12.197308430448174,11.32364475633949,11.725580237340182,12.111048617400229,11.674444264732301,11.009879738558084,11.252932074479759,12.045616601593792,12.363569470588118,13.03333745431155,13.771332574542612,13.319582416210324,12.669516471214592,12.674842236097902,12.6129555311054,11.9185064220801,11.508265085984021,11.985322722233832,11.731176555622369,11.284259835258126,10.448107323609293,10.019377558492124,10.669583809096366,10.382524657528847,10.192054994869977,10.119218143634498,10.105706527363509,9.230441770050675,8.914836665149778,9.300818747840822,9.079356365371495,9.59026190917939,8.611807047855109,9.351357102859765,8.720224106218666,8.30609081685543,7.833678254391998,8.51048056408763,9.379661856219172,9.916153954807669,9.828868481796235,10.68402162194252,9.957665263209492,10.505444136913866,9.878297962248325,10.317890022415668,10.520544690079987,10.95399048551917,10.140652434900403,10.337862318847328,10.81605637120083,11.141572873108089,11.946558933705091,12.619160814210773,12.593188259750605,13.262281874660403,12.566214212216437,12.1758664958179,12.501155927311629,11.62788154790178,12.038756299763918,11.517583157867193,11.852504929061979,12.21317215077579,12.123487249016762,12.398903831839561,12.244770953431726,12.9334134911187,12.588292292319238,11.831999960821122,12.68448601057753,11.706640108022839,11.487975062802434,11.40123689873144,11.143907436635345,10.33095398824662,9.346612034831196,9.216663219034672,10.070025217719376,9.342054422013462,8.547494288533926,9.12208748375997,9.555558220483363,9.562609825283289,9.976598543580621,10.895637998357415,11.689208213239908,11.28133279690519,12.162202124018222,12.93391620228067,13.510454564355314,13.928905764129013,13.755083683878183,12.912159598432481,12.00644018733874,12.835665947757661,13.429484236985445,12.520560430828482,12.780868004076183,12.957946857437491,13.612260690424591,13.080694470088929,13.349670984316617,12.689750434365124,11.728801847435534,11.509640946984291,11.292913796380162,11.068397395312786,10.207436558790505,10.21816189866513,10.725861197337508,10.456286305561662,9.756117429118603,8.895492596086115,9.892941699828953,8.95817720843479,8.92886627279222,9.805618385318667,9.07967461925,9.131429775152355,8.180481436196715,9.095321346074343,9.022736424580216,9.884220520500094,9.7876056721434,9.079609358683228,9.526920731645077,8.919241333846003,8.747689610812813,8.648729532957077,8.439539256505668,8.709507883526385,9.279113810975105,8.849122852552682,8.725061683449894,8.998987727798522,9.941456564702094,9.827373867388815,10.341133492998779,11.165706170257181,10.201553595717996,10.970394068397582,10.29683720646426,10.791943202726543,9.898620924446732,9.488192913588136,9.395997391082346,9.08778598997742,8.443977358285338,7.989270594902337,8.293234642129391,7.665326550602913,7.492439997382462,6.57356732012704,6.961577287875116,7.839381987694651,7.380249372217804,6.930900782812387,6.795407194178551,7.7833769069984555,7.041465411894023,6.695981496013701,7.0639504748396575,6.5810053097084165,5.6508636781945825,6.140895560849458,7.077100520487875,8.00256114313379,7.558969052508473,7.8909396370872855,7.247705498244613,6.529135627206415,5.769358882680535,4.885802621021867,4.1483132052235305,4.306936673820019,4.589226983021945,3.621382182929665,3.3922462863847613,3.8423423040658236,2.8485982259735465,1.9700383692979813,1.7373602273873985,1.8597394302487373,2.4552648845128715,3.2713950010947883,3.4316246900707483,2.457491303794086,2.032502852845937,1.7220007730647922,1.431428228970617,0.8171276426874101,1.6871635532006621,2.1709845890291035,2.6105461879633367,2.3380591734312475,2.8652373333461583,3.77210405562073,3.4925032290630043,2.9867481077089906,2.381091703195125,2.072282094974071,2.5576043827459216,2.7632455974817276,2.1633941950276494,2.9747410574927926,2.017925390508026,1.4932616958394647,1.3507760441862047,0.781141179613769,0.8289230824448168,1.203872305341065,0.42944920947775245,0.6061734752729535,-0.22702290629968047,0.0029852045699954033,-0.05287012830376625,-1.0267674457281828,-0.7788403192535043,-0.390236200299114,0.17212380655109882,-0.7221171148121357,-1.2448740294203162,-0.5497567104175687,-0.6071650669910014,-0.2900792667642236,-1.1791103784926236,-0.7390324934385717,-1.3924850774928927,-1.1527841929346323,-1.0668410710059106,-1.7080248757265508,-2.4869163031689823,-2.7953800270333886,-3.1731482739560306,-4.107969116885215,-4.280451444443315,-3.56612905068323,-3.626488802023232,-3.0142391133122146,-3.3560747671872377,-2.9300956884399056,-2.0124605684541166,-2.1229154290631413,-2.3423049012199044,-2.9738291180692613,-3.5091258087195456,-4.040743772871792,-3.046177682466805,-3.599872998893261,-4.54766846075654,-3.8975477442145348,-4.294814571272582,-4.932897795457393,-4.898998813703656,-5.327894959133118,-4.424807334318757,-5.172957935370505,-4.760070257354528,-5.651511317119002,-6.378588239662349,-7.124451931100339,-7.049093586392701,-6.469873729161918,-5.687376128509641,-5.323751452378929,-6.1883875844068825,-6.567581073846668,-6.8130672997795045,-6.316131927538663,-6.503501794766635,-7.466852167155594,-8.119975560810417,-8.602972174994648,-8.531665977090597,-7.740977242588997,-8.056643541436642,-8.448155662976205,-8.66447045141831,-7.8814966841600835,-7.412137170787901,-6.873545517679304,-5.947553433477879,-5.06237301742658,-4.554407666437328,-4.768686578143388,-3.912465922534466,-3.085746817290783,-4.0716844401322305,-4.428127313964069,-4.765130245592445,-4.540659493766725,-3.7882288163527846,-3.0263156667351723,-2.8579562180675566,-2.6165067707188427,-3.1016986342146993,-3.263635394629091,-3.930016068276018,-4.023273742292076,-3.6309564588591456,-3.275163901504129,-3.7954923221841455,-3.7400072012096643,-3.603887130971998,-3.475268052890897,-2.7638669097796082,-3.618121491279453,-2.9449640843085945,-3.4957519830204546,-4.4577477485872805,-5.01409355411306,-4.124220055993646,-3.8970898063853383,-3.767717589624226,-3.40355120645836,-2.650095956865698,-1.7835932071320713,-2.0281116869300604,-1.5449578147381544,-2.412456908263266,-3.2989467214792967,-3.2665409967303276,-2.6303650713525712,-2.7372186449356377,-1.9340931382030249,-1.5436827428638935,-1.0753260906785727,-1.3414428844116628,-1.6305525344796479,-1.5983283114619553,-1.8404232924804091,-1.4510473967529833,-1.250823002308607,-2.206880407873541,-2.853892366401851,-2.5370530486106873,-2.8265155418775976,-2.655819862615317,-1.9239524211734533,-2.6669613705016673,-1.7119775461032987,-1.3347801752388477,-0.8677076641470194,0.006081792060285807,-0.15420588804408908,0.5260038361884654,0.8905605166219175,0.47877697134390473,0.8899796982295811,1.7053553760051727,1.6858050934970379,2.664605083409697,3.621267777401954,4.309931882191449,3.6787827350199223,3.8888353426009417,3.261554859112948,3.67978744674474,3.608034497592598,3.3349795565009117,3.5703911832533777,4.409918178804219,5.38100898778066,6.293505620211363,6.949711267370731,6.242698622401804,6.349681932944804,6.503721009008586,6.852390795014799,6.8809465784579515,6.741053452715278,5.962527762167156,5.189495989121497,5.426748304627836,4.506915940437466,3.7090690918266773,2.976553611457348,2.247082704678178,2.311652686446905,1.949510175269097,1.8094094777479768,1.9208654640242457,1.6461399160325527,1.854332230053842,1.6262460448779166,0.9993177107535303,1.8985983720049262,1.9013585592620075,2.494481506291777,2.088506756350398,2.1251659970730543,1.3662713165394962,0.4941366594284773,0.8428767174482346,-0.12947698961943388,-0.4885933017358184,-0.47079296596348286,-0.6277766274288297,-1.2167204953730106,-1.2191899996250868,-0.49910986237227917,-0.3187865624204278,-0.9091164856217802,-0.3876040163449943,-0.47191251534968615,-1.4055437962524593,-0.8549761772155762,-1.0896082101389766,-1.163130515255034,-0.2719090022146702,0.6660931189544499,1.6162054520100355,1.8998006475158036,2.062546485103667,2.8265521163120866,2.5726825101301074,3.531471349298954,4.276581187266856,4.221659693401307,3.843174292240292,3.8447920638136566,4.635003010276705,3.9129367251880467,3.3454186501912773,3.223711538128555,2.571801575832069,3.205040007364005,3.350512824486941,3.0068813753314316,3.4062383915297687,3.2578966915607452,3.0687307566404343,2.2886412502266467,1.4431855911388993,1.4590022852644324,2.3016517283394933,1.7082560998387635,0.8372701145708561,1.223108047619462,2.0490589486435056,3.033225549850613,3.8721374231390655,4.331976866815239,3.6612082780338824,4.06310452753678,3.142364419065416,2.623128944542259,2.162274512462318,2.7761735543608665,2.085598529782146,2.2859681635163724,1.6350084785372019,1.48782629519701,2.015000157058239,2.7074777563102543,2.5987434769049287,2.4655779153108597,3.38497681543231,3.129946692381054,2.9832554226741195,2.151634787209332,1.2720602443441749,1.0035392912104726,0.6400005430914462,0.7922551375813782,0.48217210499569774,0.7462328472174704,0.07369373040273786,-0.19834098685532808,-0.5536603704094887,0.1818845560774207,-0.11717937374487519,-0.17518879706040025,0.23192154243588448,-0.5396947022527456,-0.9203481823205948,-0.5048070950433612,-0.77721102302894,-0.657809292897582,-1.5127116669900715,-1.0124307186342776,-0.935285450424999,-0.6915650134906173,-1.1068968852050602,-1.3070413945242763,-1.0733529846183956,-1.5750054214149714,-1.3551679365336895,-2.0935200112871826,-2.5765415960922837,-3.35026004165411,-3.255009689833969,-3.74051082925871,-3.5389332375489175,-3.802391537465155,-3.562128196004778,-3.2740090088918805,-2.669417206197977,-3.6317333448678255,-3.379914393648505,-3.0525913531892,-2.8027475560083985,-3.4422458400949836,-3.873933978844434,-3.791337131522596,-3.2283129706047475,-3.4452465530484915,-3.189665849786252,-2.993551823310554,-3.4910674141719937,-4.4781993040815,-4.29120818991214,-3.5220122784376144,-3.1897812630049884,-3.7257902501150966,-3.8846431085839868,-4.537046045064926,-4.7328840545378625,-3.8485497161746025,-4.684066535439342,-5.422674075700343,-4.724239368457347,-5.664777813013643,-6.550807370338589,-7.3968108566477895,-7.520520298276097,-6.67163294646889,-7.435041548218578,-8.378977582789958,-7.740745816845447,-8.237299522385001,-7.432231722399592,-8.167360759805888,-8.474957245402038,-8.37495128205046,-8.082204090431333,-8.071215812116861,-7.351528116967529,-8.219722464680672,-9.212465666700155,-9.17931423196569,-8.214242742862552,-8.823539912234992,-8.480336125940084,-7.8406828311271966,-7.352293797768652,-7.068570108618587,-6.561326646246016,-6.448964920360595,-7.442852856591344,-6.915006037335843,-6.487094722688198,-6.974663829896599,-6.072879607789218,-5.93821950815618,-6.342683573253453,-6.469091119710356,-6.440158587880433,-5.818912338465452,-5.638226242270321,-4.843175471294671,-4.781600534915924,-5.317618497181684,-5.913497536908835,-6.884198275394738,-7.709798590745777,-7.572372335940599,-7.472582268994302,-7.404053410515189,-7.242684402037412,-8.022252466529608,-7.381019996013492,-7.621106628328562,-6.772441098932177,-7.17742133885622,-6.2003285815007985,-6.364361939020455,-6.591915013734251,-5.783710398245603,-5.941278838552535,-6.376195763237774,-6.261803639587015,-6.071277240291238,-5.2813478098250926,-4.526061822660267,-5.21336102578789,-5.549205681774765,-6.237290825229138,-6.9106268007308245,-7.628132763784379,-7.660337869077921,-8.017886850982904,-8.859589094761759,-9.07976868795231,-8.772123008966446,-8.475979236420244,-9.094457959290594,-8.544187153689563,-9.108123139478266,-9.950726579874754,-9.592930542305112,-10.543583472259343,-10.404588272795081,-10.779332331381738,-9.864172861911356,-8.947812410537153,-8.85470997588709,-9.441492806188762,-8.949784126132727,-8.759845458902419,-8.365613019093871,-9.218518357723951,-9.548158815596253,-9.787025528494269,-10.2909388942644,-11.241922134533525,-10.97585074044764,-11.421377392485738,-11.435762626118958,-10.991892667021602,-11.660840038210154,-11.758481285534799,-11.761124547105283,-11.882411735132337,-12.595868683420122,-13.269675261341035,-13.772624494042248,-13.696512740571052,-13.171362835448235,-13.986364933196455,-14.640884717460722,-14.812699155882001,-14.039973195642233,-14.915639705490321,-14.12896468769759,-14.73089582938701,-15.5390715287067,-15.76614937838167,-15.680294449441135,-14.701130853965878,-14.739659147337079,-13.939415654167533,-14.669292067643255,-14.89701024023816,-14.344558290205896,-13.686816298402846,-13.686395818833262,-13.917718237731606,-14.70148350065574,-13.707646421156824,-14.656587702222168,-15.168589188717306,-14.721075603272766,-14.994180356152356,-15.334511808585376,-14.35765653429553,-14.504742663353682,-14.875963872298598,-14.006787036545575,-13.526184194721282,-13.431221808306873,-12.909011584240943,-13.818410440348089,-13.402674295008183,-14.076114701572806,-14.456321524921805,-15.110994811635464,-15.026836907491088,-14.127957096789032,-14.420117231085896,-14.111432731617242,-13.694699824787676,-12.992927369195968,-12.564330178778619,-11.786682862788439,-12.722482331097126,-12.304653875995427,-11.37392526352778,-11.943045699968934,-12.459477466065437,-12.180392915848643,-13.001850685104728,-12.715471285860986,-11.838823467958719,-11.874594391323626,-12.319287060759962,-12.147495310287923,-11.643176915124059,-12.164703386835754,-11.444105826318264,-10.954532952979207,-10.797023580875248,-10.137277347501367,-10.35588366817683,-11.194333867635578,-10.8263075100258,-9.98035141453147,-9.517798062413931,-8.958895287010819,-8.260596809908748,-8.373487010132521,-9.337552587967366,-10.051145744975656,-10.815564315766096,-10.352228130679578,-11.180681043770164,-11.831616207957268,-12.680748149752617,-12.365872369147837,-13.184187051374465,-12.716843318194151,-13.068893287796527,-12.414414488710463,-11.760887519456446,-11.245072778780013,-10.776755172759295,-10.642607280984521,-9.669817081652582,-9.325567743275315,-10.003256589639932,-10.542067566420883,-10.931945534888655,-10.075053789652884,-9.44191197026521,-8.600073514971882,-7.9912219531834126,-7.092016970738769,-6.708386107347906,-6.3091592993587255,-5.784345398191363,-5.480564996600151,-4.643559072166681,-5.080887114629149,-4.742438877467066,-4.755972800310701,-4.546893193386495,-5.01816641073674,-4.0351392342709005,-4.3371611456386745,-4.426957970485091,-5.13626386038959,-4.917367302346975,-5.497740167193115,-6.370495048351586,-7.334030603058636,-7.781568820122629,-7.777033429592848,-7.671488486696035,-7.180022014770657,-6.931811238639057,-7.6877013691700995,-6.91150720929727,-6.898837130982429,-6.469183551613241,-7.279035669751465,-7.53068572236225,-8.249903311952949,-8.699313051067293,-7.798939867410809,-6.989830592647195,-7.284864475019276,-8.2358608096838,-8.977520742453635,-8.37840051529929,-8.334781453944743,-7.664421533234417,-8.259945144411176,-7.542918812483549,-8.424970293883234,-9.365620190277696,-8.762985328678042,-8.560048884246498,-8.289561051409692,-7.950709355995059,-8.147421203553677,-7.426398123148829,-7.2169498754665256,-6.424047328997403,-7.412545540835708,-7.215788430534303,-6.535114740021527,-6.210181837901473,-6.50966017274186,-5.611426781397313,-6.512197765987366,-5.648410199675709,-5.383978339377791,-4.729807833209634,-4.864633202087134,-4.24076628126204,-3.2705053370445967,-3.7858890742063522,-4.254431343637407,-3.507570505142212,-3.5957018099725246,-3.6276189917698503,-2.704260226339102,-3.3774373903870583,-4.262153462041169,-3.6979977237060666,-2.8939172332175076,-3.2845430965535343,-2.569381156936288,-2.4655384407378733,-3.357621723320335,-3.84881493402645,-3.49107549386099,-3.5483673810958862,-2.6682066451758146,-2.88589424546808,-3.588975726161152,-2.7817588332109153,-3.0833903257735074,-3.319434813223779,-3.577121271751821,-3.3546384489163756,-3.279502554330975,-4.27068506879732,-5.204201954882592,-5.193368669599295,-5.554290076252073,-5.912847886793315,-5.688327227253467,-5.445348829030991,-5.953717730008066,-6.770940979011357,-7.66148178698495,-7.064971532672644,-7.348880855366588,-7.5174608626402915,-6.602188793476671,-6.503158875275403,-6.4456907995045185,-5.943766620010138,-6.861228501424193,-7.191239895299077,-7.057042739819735,-6.50130846304819,-6.044949983712286,-7.004307649098337,-7.655989076010883,-8.485832617152482,-9.462246496696025,-8.762984205503017,-9.623042560648173,-9.290069903247058,-9.9858078667894,-10.412467628717422,-10.989334410987794,-10.672561233397573,-11.29647049959749,-10.94836413813755,-10.969372905790806,-11.840421129949391,-11.40852614119649,-12.33696282748133,-12.012437578756362,-12.680229791905731,-13.18146937014535,-14.17048846790567,-14.02506896154955,-13.85939341597259,-14.580900894943625,-15.290714311413467,-15.217061046976596,-14.91577782202512,-14.740131005179137,-15.116804162971675,-15.939374900888652,-16.02455925103277,-15.62510880921036,-15.284987577237189,-16.266888458281755,-16.552185198292136,-16.963311619590968,-15.997175986878574,-15.91212204284966,-14.955652248580009,-14.107526764739305,-14.00026001734659,-14.374301415868104,-13.517018401995301,-13.671397876460105,-12.721117700450122,-13.536692801862955,-12.937994758598506,-12.878674280829728,-12.628316399641335,-11.82201430015266,-10.85744949663058,-10.423585314303637,-9.836500089615583,-9.65248093334958,-9.300468859728426,-9.944484431762248,-10.097178110852838,-10.3245740942657,-10.876336679328233,-11.810788319911808,-11.460013202391565,-12.210863773245364,-11.53514754679054,-11.567216872237623,-11.560449951793998,-11.180444835685194,-10.94153979420662,-11.64499915856868,-11.532964421901852,-10.706183725502342,-10.331544258631766,-9.652175421826541,-10.444631170947105,-10.400690966285765,-10.010923168621957,-9.127064488362521,-8.44205911597237,-8.89871461270377,-9.413445118349046,-9.695238331332803,-8.793750668410212,-9.77939455397427,-10.622700748965144,-11.231006894726306,-11.012237913440913,-10.396415778435767,-10.030990050174296,-9.585001381114125,-9.340862261131406,-9.216296690981835,-8.458955036476254,-9.37293985299766,-10.026456918101758,-10.944180977996439,-11.851518134120852,-11.453233681153506,-11.386670888401568,-10.988765707239509,-11.4410264887847,-11.348809274379164,-11.137889475096017,-10.82223550323397,-10.480333509389311,-11.195945906918496,-10.722645038738847,-10.948201596736908,-10.361156583297998,-11.214787418954074,-10.257051691878587,-10.01949303317815,-10.421275100670755,-11.40362125216052,-11.608862563967705,-10.857731186319143,-11.164927545003593,-11.810365582350641,-10.83773910626769,-9.89247637335211,-10.279111328534782,-10.309760436881334,-9.316318387165666,-8.722484152764082,-8.333717762492597,-8.564212504774332,-8.319590610917658,-8.81869995687157,-7.985656961798668,-7.943842398934066,-7.759131501428783,-8.38548101298511,-8.875200100243092,-8.054812792222947,-7.758346693124622,-8.03745326353237,-8.052513068541884,-8.592658530920744,-7.728731154464185,-8.139041924383491,-7.280542784370482,-7.235355779528618,-6.799550712574273,-7.104107367806137,-7.379258614499122,-7.462509498000145,-7.263578475918621,-6.791962374001741,-6.923194784671068,-7.913967343978584,-7.015595027245581,-7.084530798718333,-7.3021140792407095,-8.20140204578638,-8.942507690284401,-9.730068317614496,-8.949370944406837,-9.781843630596995,-9.447405040729791,-8.78966408316046,-9.667713255155832,-10.119877115357667,-10.133985385298729,-9.960424731019884,-9.34376214724034,-9.199401594232768,-9.738058791961521,-8.94581976858899,-9.067823497578502,-9.903403701260686,-9.575716955587268,-9.876288362778723,-9.616960907354951,-8.830339616630226,-9.563162413891405,-9.269162592478096,-9.164599286392331,-8.380248725879937,-9.364801276940852,-9.16401245817542,-9.780597899109125,-9.871971435844898,-10.704824305605143,-9.783869166392833,-10.445017902646214,-10.556261118967086,-10.563593270257115,-10.35949675552547,-10.687881200574338,-11.50525513291359,-10.835616067517549,-11.674477664288133,-12.524711745325476,-12.883254943881184,-12.101852004881948,-12.580867000855505,-13.545867431443185,-13.739637590013444,-14.251166207250208,-13.303339472971857,-13.265516303479671,-13.717960825189948,-14.281305154785514,-13.400922532659024,-13.391762834973633,-13.682817539665848,-12.758176896721125,-13.140755321830511,-12.19947255589068,-11.410758167970926,-10.876010558567941,-10.74251024844125,-10.19089996162802,-9.36036186804995,-9.040369101334363,-9.411120023578405,-8.52269530389458,-9.141854274086654,-8.213360338937491,-7.503945511765778,-7.287557085044682,-6.996269127354026,-6.637278086971492,-5.907684276346117,-6.571812812238932,-6.977839726954699,-7.514820717275143,-7.000010916031897,-6.805950149428099,-6.790369095746428,-6.787841256707907,-7.316977710928768,-6.977623501326889,-7.147658115718514,-6.749751650728285,-7.051443748176098,-7.798511511646211,-8.699585145805031,-8.814905754756182,-8.731806341558695,-9.530478299129754,-9.044026182498783,-8.261751930695027,-8.5657694702968,-8.196400697343051,-7.402799578849226,-6.529762916266918,-7.182598405983299,-6.507792626973242,-6.036551089026034,-6.316561801359057,-6.257353937719017,-7.256990569178015,-7.6911154561676085,-8.40078159281984,-8.785282337106764,-9.30626562377438,-9.907216404564679,-9.82482779957354,-9.192134377546608,-9.179094261489809,-8.830391711555421,-8.599400812759995,-8.378789398819208,-8.799533759709448,-8.02493107644841,-7.27691167127341,-6.861345583572984,-5.895395346451551,-5.000654489733279,-4.1272630430758,-3.9063009303063154,-4.660606084857136,-4.392013107892126,-4.641180267557502,-5.302932409569621,-4.804934645071626,-5.403669512365013,-5.917519341222942,-6.8043534103780985,-6.585025073029101,-7.111584940459579,-7.788381587713957,-8.429085039999336,-8.782865741755813,-8.60132128559053,-8.75867336243391,-9.392800330650061,-10.221485973801464,-10.026353921741247,-10.395777807105333,-9.436413165647537,-8.866717557888478,-9.609536903444678,-9.122998325154185,-8.873448295984417,-8.727255003061146,-9.691407679580152,-8.943585307803005,-9.004798999987543,-8.855679473374039,-9.2090486981906,-8.223621390294284,-8.436334577389061,-9.142023789230734,-9.485059439204633,-10.283784413710237,-11.226434935349971,-10.50916741648689,-11.012074436526746,-10.219415985513479,-9.772676757536829,-9.604894488118589,-9.677897745743394,-10.315169343259186,-9.37901575025171,-9.411988980602473,-10.26202305406332,-11.065451729111373,-12.02187935076654,-11.724806835874915,-11.469155186321586,-10.513986722100526,-10.821239943150431,-9.998940208926797,-9.77442748984322,-10.262782157864422,-10.923763025086373,-11.478175998199731,-10.794378503691405,-11.014114665333182,-10.400626364629716,-10.632400138303638,-11.562978577334434,-10.749682961031795,-11.053550998680294,-11.682814946398139,-11.94240415468812,-11.195392354391515,-10.531239876523614,-9.68427590932697,-9.240886534098536,-8.58067131927237,-8.149930285755545,-7.256518501788378,-7.939548542257398,-7.4052220759913325,-6.445269147399813,-6.627157472539693,-6.727254676632583,-6.627617668360472,-5.678372354712337,-4.698323952499777,-4.036690499167889,-4.741861408576369,-4.182118859142065,-4.5384957836940885,-3.584261900279671,-4.363078557420522,-5.290535944979638,-5.251659634988755,-4.950489290989935,-5.260552895255387,-4.504866409115493,-5.307635401841253,-5.874409814365208,-6.485065008979291,-6.388353976421058,-6.81827474758029,-7.1194262518547475,-6.329169954173267,-7.211882317904383,-6.495659004431218,-6.208601982332766,-6.485617115162313,-6.635086779017001,-6.229583718813956,-6.496209631673992,-5.963094670791179,-6.094397065229714,-5.1503088590689,-4.746516698971391,-5.611313262954354,-6.088246077299118,-5.756190033163875,-5.022154692094773,-4.709479129873216,-5.4702082350850105,-5.210853677708656,-5.654905951116234,-5.218108405824751,-5.893431639298797,-6.472020884975791,-5.8519746284000576,-5.527396011631936,-5.735618272330612,-6.078584470320493,-6.4694093451835215,-7.218925836496055,-7.006856293417513,-7.143553396686912,-7.228112631011754,-8.099952643737197,-8.587054931558669,-8.58289717650041,-7.973764532245696,-8.442791967187077,-7.718112784437835,-7.947332232724875,-7.225159710738808,-6.689514529891312,-7.316219790838659,-8.205061370041221,-8.278945717029274,-8.219724563416094,-8.966598013415933,-8.540161775425076,-8.892180126626045,-7.920231791213155,-7.261179619003087,-6.675686827860773,-6.654805117286742,-6.253304397687316,-6.213055808097124,-6.110558248590678,-6.6228437586687505,-6.963269945699722,-7.690471888985485,-8.133594740647823,-7.782339366618544,-7.515696737449616,-6.695683208294213,-7.0702366176992655,-6.9326810128986835,-7.272164392285049,-8.170186643954366,-9.140701166819781,-8.719289342407137,-8.619612658396363,-8.225093065295368,-9.210563237313181,-8.574082748033106,-8.360403357539326,-7.764843335840851,-8.664001984521747,-8.140029299538583,-8.599905505310744,-8.358743492979556,-7.813076148740947,-7.722431468311697,-8.37955206958577,-8.874104314949363,-8.494478558655828,-8.02532494161278,-7.706695378758013,-8.240823251660913,-7.751663779839873,-8.420576547272503,-9.321850814390928,-8.705811123829335,-7.851108419708908,-8.6032815403305,-8.131378002464771,-8.404893648345023,-7.473133083432913,-7.642672876827419,-7.012447096873075,-7.485157509334385,-8.308137620799243,-7.6721791019663215,-7.73476533126086,-6.877398027572781,-5.956961860880256,-4.980904406867921,-4.6400366788730025,-3.8051309078000486,-3.198368366342038,-3.4479171000421047,-3.584166284184903,-3.423130849841982,-3.414687936194241,-2.7248948831111193,-2.789971014019102,-3.7026119153015316,-4.1016123704612255,-4.1219352767802775,-4.938427256420255,-5.759638262912631,-4.7708773468621075,-4.520289369858801,-5.203104660380632,-4.642252158373594,-5.448443032801151,-6.030549091286957,-5.936651258263737,-6.589191258884966,-6.5506644691340625,-5.677074450533837,-5.3628838253207505,-5.624993295408785,-6.01912916591391,-5.475749517790973,-4.653632557950914,-4.292962033767253,-4.390640070196241,-5.069831151515245,-5.915677176788449,-6.804510527756065,-7.063519351650029,-6.802840587683022,-7.221927332691848,-7.597866137512028,-7.965614119544625,-8.961844792589545,-9.60756507050246,-9.499470452778041,-10.07126362202689,-10.318358327262104,-10.532140883617103,-10.674318826757371,-11.04837921867147,-10.795298895798624,-10.765612940303981,-11.595718564465642,-11.40568067971617,-11.450626518111676,-10.76233052322641,-10.354885549284518,-10.125682504381984,-9.40878173802048,-8.794904839247465,-8.284199270419776,-8.850107515230775,-7.915949327871203,-7.833082167431712,-8.396991214714944,-9.302029357291758,-9.87131820153445,-10.136056867428124,-10.567427676171064,-11.137984989676625,-10.86048406129703,-10.492168250959367,-10.638694277964532,-9.713291912805289,-9.559399905614555,-10.014423492364585,-10.808676874265075,-11.665349040646106,-10.875869686715305,-10.095970184076577,-9.715765626635402,-9.560232151299715,-8.732197963166982,-8.539994524791837,-9.048455568496138,-8.915980110410601,-8.495050050783902,-9.4608775828965,-9.960150806233287,-9.129457228817046,-8.607321908697486,-8.601586654782295,-7.886264152824879,-7.4186460096389055,-7.233207328710705,-7.67390263825655,-8.40106164291501,-8.740261321421713,-9.202616466674954,-9.965272886678576,-9.872322613373399,-10.38954513054341,-10.080637767445296,-10.172666581813246,-10.626215744763613,-10.133137010969222,-9.911517227534205,-10.09958886448294,-10.233274111524224,-9.479437176603824,-10.257418593391776,-9.75027419347316,-8.997868889011443,-8.303232848178595,-7.385847098659724,-6.83933067182079,-6.181586586404592,-5.920522439293563,-6.361149697098881,-5.655650915112346,-5.875339122489095,-5.594178562052548,-6.398721567820758,-7.122295622248203,-7.428144265897572,-7.763250509276986,-8.724111921153963,-7.754719246178865,-8.267267846036702,-8.325051146559417,-8.627767893020064,-8.142202401533723,-7.74635221529752,-8.259699547663331,-7.827373327221721,-8.592882012482733,-8.617787189316005,-8.405480338726193,-8.961926697287709,-9.585506776813418,-10.401595924980938,-10.850658416282386,-11.666433363221586,-12.552978907246143,-13.047884019091725,-12.815146314911544,-12.744824105873704,-12.760291501879692,-12.343688210938126,-11.401227245107293,-11.22617302602157,-12.036847871728241,-12.041746125090867,-13.00362696731463,-12.711439483333379,-12.593658451456577,-13.379101507831365,-13.576512269675732,-13.332330133300275,-12.789858998730779,-13.16165189165622,-12.917051445692778,-12.00205815769732,-12.704486512579024,-12.465547275263816,-13.389561163261533,-14.102703789714724,-14.743698244914412,-15.65498349070549,-15.392413689754903,-15.217195947188884,-15.063518234994262,-14.880033040419221,-15.709460531361401,-14.902252642903477,-14.909686343278736,-14.073146544862539,-14.648988052271307,-13.710116378962994,-13.232251186855137,-13.54351915512234,-14.439158773049712,-13.957172796595842,-13.040279071778059,-13.209362956695259,-13.783361747395247,-13.784533111844212,-13.909648479893804,-13.12704785214737,-13.658719128463417,-12.870684321504086,-12.754486646968871,-12.984338466078043,-13.961387168616056,-14.20359445316717,-13.671381190884858,-13.003658394794911,-13.22734496369958,-12.687976947519928,-13.541386308614165,-14.504467039369047,-14.467835701536387,-14.291830104310066,-14.295154348015785,-14.61169542837888,-14.173932243604213,-13.488341327756643,-13.394670370966196,-13.123956375289708,-13.00958845205605,-13.157166167162359,-14.046493615955114,-13.716999642085284,-13.375260236673057,-12.852088527288288,-11.869714078027755,-11.80985713377595,-11.97148869605735,-11.03294660616666,-10.68158778687939,-9.921792841516435,-10.006376169621944,-10.016257845330983,-9.828051292803138,-8.959971589967608,-8.86331336479634,-8.409206608776003,-7.828189104329795,-7.5608120718970895,-7.892647432163358,-8.526718085631728,-7.764114898163825,-7.732851807028055,-8.253001632168889,-7.990417494438589,-7.5586361032910645,-6.768828806933016,-6.9006141922436655,-7.664480267558247,-7.091013771481812,-6.853969209827483,-6.372531180270016,-7.345143488608301,-6.468369768001139,-7.434983091894537,-7.500082439742982,-7.699697250500321,-8.266207986976951,-7.509247046895325,-7.112309455405921,-7.206237898673862,-7.935821454040706,-6.944887889083475,-6.806693161372095,-6.527948630508035,-6.739305118564516,-6.184821092057973,-6.786705828271806,-6.000210763886571,-6.449626616667956,-5.703322576358914,-6.239528491161764,-6.510776485782117,-6.538838335778564,-7.102584041655064,-6.381370286457241,-7.255480543710291,-6.646601977292448,-7.198536796029657,-6.277092306874692,-6.722847242373973,-7.246494132094085,-8.117182653397322,-7.828827854711562,-7.947993326932192,-8.585318791214377,-8.344961955212057,-8.791367783211172,-9.06949802255258,-9.382982143666595,-8.528963753022254,-8.515820976812392,-7.980252940673381,-7.603549547959119,-7.951591316144913,-8.533174711279571,-7.646133183501661,-8.30195993417874,-7.430618941783905,-6.4826555284671485,-5.571488728746772,-5.4416368692182004,-6.410862153861672,-6.725694121327251,-7.020143182948232,-6.713464996311814,-6.913700718432665,-6.085169428493828,-6.977147020865232,-6.576794964727014,-6.944640246685594,-6.17802249500528,-5.477512169163674,-6.290654327254742,-7.012896602507681,-6.0902336980216205,-6.624805792700499,-6.564482185989618,-7.456303949467838,-7.6236389353871346,-7.467485607601702,-7.402573277708143,-7.697353344410658,-7.13037647632882,-7.716799010057002,-7.737101620528847,-8.634924163110554,-8.42901251418516,-7.558290167711675,-7.06323552923277,-7.334378354251385,-7.273974417708814,-7.827221407555044,-7.457030014600605,-7.270418682601303,-7.385286810807884,-7.313742273487151,-7.8774312967434525,-7.763605602551252,-7.754878242034465,-7.366765928454697,-7.765907277353108,-7.336552109569311,-8.096217162907124,-7.927338702604175,-8.052813476882875,-8.096759650856256,-7.783787573687732,-6.795800461433828,-6.210639011580497,-7.0395170748233795,-6.187547019217163,-6.90957070235163,-7.317816807888448,-6.884333218447864,-7.445571810007095,-8.065700849983841,-8.17919066362083,-7.657922497484833,-8.295479918364435,-7.912337175104767,-8.743795403745025,-8.34907147474587,-8.090634086169302,-7.577252028044313,-6.819649307522923,-5.945254401769489,-6.0682162791490555,-6.5081884721294045,-6.333900834433734,-6.110594485886395,-5.5582692683674395,-4.725089696235955,-4.298279933165759,-3.763300254009664,-3.228343192022294,-3.1040411852300167,-3.176129198167473,-3.4448519465513527,-3.2080665645189583,-2.753676187247038,-3.155737069901079,-2.5118874553591013,-3.235524716321379,-4.105000234674662,-4.561763821635395,-4.187551176641136,-5.017929580062628,-4.729919943958521,-4.565940162166953,-3.7468461683019996,-3.405626881867647,-3.6451674290001392,-2.972238971386105,-3.764055820647627,-4.158240746241063,-4.293624214828014,-3.425621394533664,-2.985997573006898,-3.1284566996619105,-2.8184887170791626,-3.7461682930588722,-4.032632197253406,-3.6051421114243567,-2.9322079150006175,-3.036937999073416,-2.037343497388065,-2.560068165883422,-2.2966565028764307,-2.255478587001562,-1.4359770943410695,-1.2674464113079011,-0.31089592911303043,-0.605003749486059,-0.7363895922899246,-0.47558136470615864,-1.3670913297683,-1.378558462485671,-1.244787949603051,-1.3088128734380007,-0.32229240238666534,0.19378417264670134,-0.10925222095102072,-0.5838232999667525,0.22157685086131096,0.2389277871698141,-0.24744927464053035,0.12238312605768442,-0.7895592260174453,-0.8378789280541241,-1.4266243688762188,-1.0447924542240798,-0.35324173467233777,0.2569787194952369,1.0196572337299585,0.4135571699589491,1.013568866532296,0.10260650934651494,0.7408540695905685,0.34452324779704213,-0.3084175013937056,-0.6633242149837315,-0.4762364123016596,-1.4555538473650813,-0.5325552257709205,-0.6505781444720924,-0.0768716437742114,-0.12911414867267013,0.6064920295029879,0.1369350296445191,-0.21938974130898714,-0.32170113641768694,-1.104381530545652,-1.752685955259949,-1.8663864596746862,-2.3408460803329945,-2.046291869599372,-2.6317503699101508,-3.597403174266219,-3.57523831166327,-3.9764430774375796,-3.8867585198022425,-3.9988022171892226,-4.618779733311385,-4.731265963520855,-4.216828583274037,-3.844602365978062,-3.2350449431687593,-2.6259152181446552,-2.5133748343214393,-2.079172028694302,-2.3259351295419037,-1.7041846201755106,-1.0630365991964936,-0.790540108922869,0.11201594211161137,-0.45101702911779284,-1.0629032016731799,-2.0533270351588726,-1.4838491869159043,-2.4325034990906715,-2.390413420740515,-1.5526206172071397,-1.5756318331696093,-1.886449759826064,-1.9545139749534428,-2.317480151541531,-2.824681655038148,-2.905774566810578,-2.0795383267104626,-2.813271560240537,-2.3753597252070904,-1.8868024749681354,-1.0808081957511604,-1.2138246172107756,-1.2201865399256349,-0.47140444442629814,0.3329209629446268,1.0535902604460716,1.172226698603481,0.6668549538590014,-0.1996569843031466,0.21705116098746657,0.46163953514769673,1.0726107894442976,1.8466845690272748,2.4013789128512144,1.7592100310139358,1.320560804568231,1.9224143996834755,1.8197862398810685,2.726689033675939,1.9508289596997201,2.6752463658340275,3.062684352044016,3.9972941004671156,4.3030218868516386,4.341147220227867,3.882610684260726,4.195191009901464,4.9283855012618005,5.674090356100351,5.863812966737896,5.599138407967985,5.532583063002676,5.035115127451718,4.980297832284123,4.969812012743205,5.861103448085487,5.0130982478149235,4.295611819252372,4.396196060813963,4.136840270832181,3.750043133739382,3.6191997434943914,3.2381862779147923,2.38088815798983,2.1433054213412106,1.2727517010644078,1.3131769965402782,1.64979849755764,2.553570048417896,1.994252771139145,1.8819861086085439,1.6431256998330355,1.4962238613516092,1.3511589169502258,1.4236050937324762,1.4225119459442794,0.5898499372415245,0.8800052418373525,0.30141084734350443,0.5868229283951223,-0.0808259341865778,0.043361816089600325,-0.7842257060110569,-0.5472586834803224,-1.501678348518908,-0.8058002181351185,-0.4656348885037005,0.2719612121582031,0.3988067409954965,-0.4575911075808108,-1.2998381895013154,-1.7128176437690854,-2.519325129687786,-2.4000333389267325,-2.530863725580275,-3.068979767616838,-3.57583460630849,-3.9268196295015514,-3.1286593130789697,-3.909658352844417,-4.568440653849393,-3.73985532624647,-4.368762280791998,-3.918093103915453,-3.0275053470395505,-2.396005651447922,-2.0850550257600844,-1.4566728016361594,-1.867289753165096,-2.1474237106740475,-1.224521175492555,-2.0079131606034935,-1.9951457427814603,-2.699741014279425,-3.6692562731914222,-4.34227855829522,-5.1538381688296795,-4.562462895177305,-4.3287483104504645,-3.6508145104162395,-3.597195528447628,-4.521018534433097,-4.204523193184286,-3.9146436462178826,-4.165568872354925,-4.769061531405896,-4.803146699909121,-5.378589702770114,-4.745678605046123,-4.69073322089389,-5.445932325907052,-4.849002310074866,-4.162197379861027,-4.486736325081438,-3.5506654838100076,-4.476182178128511,-5.39409954007715,-5.245539251714945,-5.759501839056611,-4.915458457078785,-4.9210667996667325,-5.0498278443701565,-4.22490588016808,-3.8090973026119173,-4.08270987868309,-3.873079447541386,-4.086499005090445,-3.1031485465355217,-3.8289921432733536,-3.7512218756601214,-4.4228882235474885,-3.6606587832793593,-3.3769741584546864,-3.2342730960808694,-3.6424122005701065,-4.144928760826588,-3.3602013951167464,-3.863656422123313,-3.366413330193609,-3.1884599211625755,-2.862632440403104,-2.932867686729878,-3.3056419719941914,-4.193609869107604,-5.142534090671688,-5.741706452798098,-5.50130654964596,-6.2335067903622985,-6.2752286568284035,-6.830521773081273,-6.000812460202724,-5.721349046565592,-6.288179399445653,-6.603314062114805,-6.372599607333541,-5.521552394609898,-5.404756968375295,-6.005847563967109,-6.988949476741254,-7.88359552109614,-8.690793183166534,-8.502987273503095,-8.224364349618554,-9.098294922616333,-8.936113535892218,-9.157035269308835,-8.34860929613933,-9.098962034564465,-8.448622870724648,-7.551887370646,-6.593932333402336,-6.383303432259709,-6.0937125398777425,-5.449686430860311,-5.496041029226035,-6.403274977579713,-5.725849933922291,-6.6027255691587925,-7.156905001960695,-6.623335147276521,-6.200804345309734,-6.2437039953656495,-5.566139243077487,-4.825885443482548,-4.479452325962484,-4.789209435228258,-4.757739200256765,-5.258737729862332,-4.552004816010594,-4.121236523613334,-4.18699596542865,-3.697907228022814,-3.482772537507117,-3.268234256654978,-2.579788787756115,-3.5572347873821855,-3.1781240147538483,-2.1820462155155838,-1.2778312717564404,-1.743079018779099,-2.586905090138316,-3.352259572595358,-3.0231766789220273,-3.673537571914494,-2.681659105233848,-2.3436174048110843,-2.1422909717075527,-1.4819730375893414,-0.8481925325468183,0.10104116471484303,0.8741734167560935,1.4463472119532526,1.0044356035068631,1.2447690172120929,1.6570336264558136,1.67767677269876,0.8923224108293653,0.8151230262592435,0.24858565302565694,0.8033016128465533,0.7029142081737518,-0.01638117805123329,0.8976719323545694,1.7802587738260627,2.109608913771808,2.3231017142534256,2.4461558973416686,1.876409885007888,1.8518813848495483,1.9172560316510499,1.210635397117585,0.5222625224851072,1.0762814390473068,0.15799285750836134,0.6928325858898461,0.3054530508816242,0.9344403971917927,0.3826709580607712,1.0154421054758132,1.481672037858516,1.3926488161087036,1.0070763607509434,0.547058914322406,0.8711538347415626,0.777174158487469,0.2971203252673149,0.6332117239944637,1.201835853047669,2.145459837280214,1.8912334069609642,1.4531232174485922,1.957378783263266,2.2694713128730655,2.2138606454245746,2.159804252907634,1.5525049306452274,1.3783264132216573,0.5623444062657654,0.9640871565788984,0.8997546099126339,1.0933522121049464,1.7571693547070026,1.7415247336030006,1.5716524706222117,0.6852276981808245,0.6317200418561697,1.2392871174961329,1.652256317436695,2.321882148273289,2.145901366136968,1.6570791681297123,1.4537621438503265,0.9327180781401694,1.7167864050716162,1.5063185743056238,2.3309361203573644,2.764118136372417,3.1057070097886026,3.7848193272948265,4.388381572440267,4.159475481603295,4.417011012788862,4.196275342255831,3.514467371162027,4.15053551690653,4.028228463139385,4.095980896148831,3.64793707896024,3.0584990843199193,2.821041715797037,2.1170978574082255,2.7606723555363715,2.490314938593656,2.6613530819304287,2.9769608196802437,3.2841716348193586,2.76912448881194,2.923893339931965,2.5825400836765766,2.6941583454608917,1.7092450647614896,2.000540612731129,1.6918833311647177,2.628547024913132,3.2268975088372827,2.290122421924025,1.731169621925801,1.8915067445486784,1.9255352970212698,1.0261463560163975,1.9789768662303686,2.2251694914884865,2.0122177163138986,1.6796373864635825,0.709451362490654,0.7345137600786984,1.0265647652558982,1.7889733803458512,2.758073953911662,2.506138637661934,1.565314286854118,2.0379435564391315,2.6394876688718796,1.832503798417747,1.663987597450614,2.3576958337798715,2.793060273863375,3.123392823152244,2.2487932997755706,1.4517900627106428,0.8760420349426568,0.7585043455474079,0.16572521533817053,-0.6302317851223052,-0.5671584918163717,-1.52753017982468,-2.507174499798566,-1.5090467436239123,-1.206364514771849,-0.210903478320688,0.33866591984406114,0.01691722683608532,-0.6431246772408485,0.3082864345051348,0.774494846817106,1.258236418478191,0.2865623361431062,-0.4636445245705545,-0.6079578837379813,0.07917068991810083,-0.17769070202484727,0.5879360223188996,0.7044368358328938,0.3370077586732805,0.6292126970365644,1.5156669127754867,1.8677691351622343,2.1516759749501944,1.2541111423633993,1.9249661243520677,2.057397413533181,2.987014989834279,2.884308088570833,3.0681106676347554,2.2397775747813284,3.0380564192309976,3.2446382492780685,3.4838661532849073,3.2474055271595716,3.1371759879402816,3.4109562719240785,3.4458797383122146,3.928782577160746,3.859701093751937,4.828072522766888,4.934013352263719,4.303010834846646,4.908429373521358,4.824370966292918,5.003052837681025,5.6969223618507385,6.0246551698073745,6.016452733892947,6.81984360748902,7.031977083999664,7.948369801975787,7.704173443838954,6.777012936305255,6.374341965187341,5.903824509587139,6.312127104029059,6.640852061100304,7.593018104787916,6.696464919950813,6.42472017230466,7.242456599604338,6.656895510852337,6.210753933992237,6.612219432834536,5.857824295759201,5.4553938042372465,5.350861786864698,6.1150216539390385,6.230572439730167,6.255301794502884,6.748357615899295,6.257439472246915,5.866940772626549,4.969628936145455,4.418205888476223,4.975096940994263,5.128820075653493,5.567225857172161,4.905292596668005,4.243295704945922,4.855917433742434,5.236103300470859,4.537186249624938,4.030038905330002,4.603322530630976,4.641729010269046,4.94823309360072,5.607477718498558,6.189353134017438,5.801440216135234,5.955816288944334,5.319375842809677,4.8446807018481195,4.597099714912474,4.333629467058927,3.7516633309423923,3.291086366865784,3.6231558211147785,2.7040551900863647,3.3241873919032514,2.9046614239923656,3.8166757845319808,3.169868335593492,3.421410375274718,3.564789725933224,4.265477149281651,4.404880941845477,4.663580758497119,3.901103957090527,4.1541265291161835,4.026623849757016,3.760741668753326,3.445124712307006,3.4160717031918466,2.8606797670945525,2.266887504607439,2.7652754853479564,2.7753227474167943,2.5615796870552003,3.0850286283530295,3.4462055121548474,2.99377767322585,3.918063808698207,3.5936304917559028,4.114205031655729,3.1338354726321995,3.88461342966184,3.5555922496132553,2.7448657201603055,2.787762774154544,3.378986562602222,2.586670862045139,2.7682565939612687,3.450022194068879,2.927957416512072,3.661101147532463,4.493988983333111,4.387864377815276,4.785179000347853,4.227312637958676,4.671070760581642,5.547410831786692,6.424500095658004,5.774125086609274,5.281709630507976,5.402187118306756,6.009999082889408,6.01434276252985,6.070924530271441,5.87859481619671,4.886900228448212,5.7967947432771325,6.709499690216035,7.219160438980907,7.284941129386425,8.157008645124733,8.362294611055404,9.018384218681604,8.749802582897246,9.569152454845607,10.366701246239245,9.813615085557103,10.231240345165133,10.911452970467508,10.948703163303435,11.138499458320439,10.91249661706388,11.592648264020681,12.02921335073188,12.45254092803225,12.039213882759213,12.658612984232605,12.680472007021308,12.344917451031506,11.776290494948626,12.220493438653648,12.010860180016607,11.550104052294046,11.311159883625805,10.4641152061522,9.658195909578353,9.305646258406341,9.319521246477962,9.889636973384768,9.120513191446662,9.386116146109998,9.173615412320942,8.700757754035294,8.569593826308846,7.597293744795024,8.238552367780358,8.814414809923619,9.63541295658797,9.476073394995183,9.953278813511133,9.487960644531995,9.25083223450929,8.660504025407135,8.747486618813127,8.663854443468153,8.784837591927499,8.437449247576296,7.542438165284693,7.684864034876227,8.245596442837268,7.590513618197292,8.316980369854718,9.205965518020093,9.289815003052354,9.392056713346392,9.68781956937164,8.889342521782964,9.510254323948175,10.451879063155502,11.035662826616317,11.556613447144628,10.687981160357594,9.709872802719474,8.93391479877755,9.460327501408756,9.782266929745674,10.3615678739734,11.113776135724038,11.07344429846853,10.142799049150199,9.33733241725713,9.810288947075605,9.67477789428085,10.297349894884974,10.610035181976855,9.815336671192199,10.269710544031113,9.625285449437797,9.09646989684552,9.354990780819207,8.412716259248555,8.06936726346612,8.872740336693823,9.481399272102863,8.683943048585206,8.704708808567375,8.57111680554226,7.588331873528659,7.186080467887223,7.156885262578726,7.534061272628605,7.856894978322089,7.43980682361871,6.900930660776794,6.880123442970216,6.382236567791551,6.951299116946757,6.391089471057057,7.122067306190729,7.319423526525497,7.426888481713831,7.827240041922778,7.2636334439739585,8.221068535931408,7.6397979711182415,7.52536680502817,7.708044031634927,8.502095541451126,8.190499167889357,9.168264238163829,8.671204556245357,9.65195626532659,8.836985108908266,8.963711185380816,9.584314914420247,9.77224606461823,9.880252673756331,9.451948698144406,9.075104531366378,10.044156729709357,9.23180733108893,8.689635693561286,7.866720053832978,7.815014791209251,8.234072745777667,8.527325381990522,8.03018967807293,8.40946615068242,7.789904110133648,8.184702542610466,8.954274970572442,9.349511635955423,8.769366718363017,8.985001129098237,9.025993456598371,8.381216577254236,9.13207723479718,9.641901464667171,9.27063515689224,9.445744153577834,9.314423981122673,9.95667636860162,9.167184865102172,9.817210841923952,9.526107169222087,10.173001016955823,9.326818972826004,9.26977190002799,10.222205641213804,10.563171129208058,10.537441692780703,11.453395240474492,10.905941517557949,11.037149840500206,11.631959807127714,12.575432073324919,12.625641401857138,12.878362718503922,12.840262356214225,13.400261992122978,13.673482576850802,14.009586164262146,14.257879116106778,14.819081730209291,15.478051871992648,15.882905024569482,15.09931771736592,14.153355434071273,13.877876593265682,13.259395430330187,13.751841369550675,13.506996502168477,14.041721255052835,13.622042485978454,13.157606527674943,12.233070131391287,12.46414706716314,12.565228957217187,12.018252569250762,12.9994907961227,12.135655651334673,13.11730866972357,12.470056692138314,11.880161667708308,12.811331005766988,12.076555114705116,11.62217043992132,11.472199700772762,10.897677709814161,11.277123653329909,11.67053109779954,12.141388542484492,11.89969306299463,12.507208555936813,13.487116500269622,14.079989954829216,13.207075885962695,13.884087489452213,14.697531131096184,15.256633061915636,15.855057051870972,15.926916142459959,16.512911616824567,17.28652975941077,18.20197333022952,18.993775344453752,18.088438216596842,17.59950398793444,18.19958960218355,18.183633961249143,17.92360799293965,18.02182703651488,18.15368347801268,18.66267858725041,17.852140164468437,17.21917441766709,17.237436004914343,17.75812138710171,17.51250729430467,16.68585898913443,16.039842967875302,15.932149291969836,16.280924112070352,16.36818655859679,15.562389106489718,15.4161370662041,16.191124964971095,16.8592706262134,17.710960612632334,18.1720385029912,17.572658161632717,16.84987561078742,16.729183348361403,16.868494169786572,16.311340007465333,15.780295983422548,15.654859419446439,14.90099441446364,14.22904071956873,13.719661672599614,12.950287305284292,12.982870945706964,13.259507305920124,12.960214525461197,13.346513045486063,13.02805531444028,12.75554376328364,12.614450745750219,11.870031766127795,11.579939540941268,11.850925865583122,11.817234111018479,12.413718739524484,12.630141627043486,13.235373738687485,12.568585439119488,13.323294391389936,12.941159319132566,13.758437615353614,14.490882949437946,14.10928057692945,13.755043000448495,14.067245857324451,13.2965017571114,14.01470865495503,13.02191144041717,13.401167951524258,13.21966354129836,13.556431015022099,12.951221067924052,12.158795749302953,13.074562453199178,12.733976942952722,13.140509875956923,12.763183178845793,13.336611617356539,12.797522114124149,13.26943282643333,13.372569902334362,12.701445461250842,13.194843933917582,12.300895398948342,13.24142116960138,12.871264406014234,12.617905997671187,12.424489468336105,11.846355396788567,11.12444672593847,10.37749569490552,10.38086882699281,10.320760766044259,10.17545513715595,9.898803976830095,9.39973188797012,9.477042219601572,8.49773784307763,8.482385071925819,7.9738821517676115,8.68528982438147,8.911306989379227,9.530965602491051,9.493824874516577,9.798303126357496,10.524089952930808,10.567355412058532,10.43849404528737,11.27517353836447,12.005672322120517,11.98697882797569,11.868403108324856,11.827879429794848,12.212742605712265,12.409973539877683,12.987002175766975,13.29458478698507,14.042290231212974,13.169989263638854,13.844600054435432,13.729970697313547,14.676686169113964,14.089512508828193,14.098072357941419,13.804384863004088,13.093990294262767,13.608605599030852,13.053813064936548,12.472903503570706,12.505174431949854,12.249094972852618,11.55851673707366,12.107850670348853,11.738504572305828,11.606239067856222,11.373406891245395,10.618702956475317,10.109066175762564,10.191993108950555,9.890635673422366,8.999105888418853,9.167915009893477,8.415696940384805,9.232683699578047,9.23798882914707,9.38006387045607,9.144520228728652,10.02828775998205,10.221137845423073,11.144402833189815,11.596608453895897,11.937892518471926,11.632792525924742,12.072200890630484,12.813309198711067,13.1705341078341,13.578535647597164,14.007625994738191,13.583805334754288,13.004277466330677,12.030717335175723,12.095212979707867,11.993506821338087,11.939151001162827,11.670599025208503,12.369933750014752,12.598256716504693,11.614512530621141,12.403386356774718,12.261998435482383,11.550044955220073,11.204781466629356,11.197261560242623,12.106959282886237,11.545775914564729,11.773810136597604,11.517514012753963,11.483659473713487,10.54696862027049,10.516345719341189,11.262115723453462,10.327591724693775,11.170629950705916,10.20004071900621,11.111435603350401,10.86789154401049,10.13495143642649,10.652647557202727,11.184895210899413,11.889907128177583,11.753944389522076,12.356297155376524,11.779918144457042,12.226538646034896,12.461226988583803,13.006138244178146,13.359327836427838,14.253991851583123,14.304171131923795,13.8736188178882,14.188328142277896,13.377439088653773,14.041901888791472,14.03010534774512,13.698473087046295,13.272666933014989,13.869369951076806,14.13990510487929,14.004578456282616,14.827607557643205,13.915144691709429,12.97353388229385,13.261273504700512,13.007229199633002,13.082978500053287,13.334853867534548,13.05376002844423,13.424643159843981,13.240790229290724,13.865414399188012,14.151726754382253,13.89089932711795,13.490888690575957,13.43641276564449,13.007159165106714,12.387762738391757,12.708385821897537,12.387702612672001,11.760278725530952,10.969590681605041,10.606366254389286,9.917798983398825,9.866910808719695,9.07574714627117,8.27270449558273,8.490090663079172,8.281554239802063,9.21477372944355,8.881669868249446,9.108943810686469,8.28272076509893,7.480168254580349,8.221575426403433,8.59837764268741,8.144107951782644,8.428408995270729,8.662503813859075,9.192429436836392,9.881295890081674,9.267808195203543,9.58793542906642,9.843502384610474,10.253032713662833,10.745394434314221,11.358117094729096,11.933436478022486,12.426937328185886,11.897940683644265,12.387734146323055,13.129267844837159,12.589211716782302,12.622941373381764,13.491236220113933,14.162793101742864,14.514327184297144,13.769297760911286,13.347992291208357,12.54795352043584,12.156644784845412,11.872249672189355,12.62458085641265,12.910355686675757,13.322509054094553,13.924737608991563,14.471495241392404,13.536290264222771,14.526867371518165,15.336774999275804,15.748749563470483,14.992560418788344,14.064851123839617,14.717453985940665,13.755248816683888,14.409369429573417,14.045355083420873,13.96635677292943,13.458776725456119,13.556743870023638,14.114335122518241,13.40813017450273,14.12194451643154,14.002161944750696,13.299919297918677,13.754620745778084,12.881711402907968,12.78126473678276,13.168253484647721,14.09724883781746,13.477227852679789,13.042938797269017,12.58353044372052,13.461465012282133,13.767269133590162,14.050697623752058,13.447511272970587,12.960601147729903,12.491707645822316,13.427628467790782,12.784718470647931,13.3735511880368,13.483136948663741,12.698094835039228,13.268713222816586,13.931479738093913,14.504621713422239,15.337014377117157,15.252421034965664,14.682844783179462,14.530587861780077,13.993812297936529,13.67282596277073,13.517045916058123,12.562318191863596,12.188000950962305,12.60648601828143,13.48328375350684,13.805598907638341,14.117485416587442,13.474710195325315,12.684897467959672,12.42261102469638,11.64531507063657,11.229172011837363,11.348123899661005,12.033926970791072,11.816811742261052,12.45961599983275,12.191581419669092,12.12805137783289,11.146402186714113,10.976770081091672,10.73392196977511,10.070761790964752,10.269487613812089,10.382016885560006,9.831186589319259,9.564113593194634,9.404093712568283,9.459974459838122,9.016264606267214,8.57219205191359,7.588792776688933,7.449609387665987,6.713369679171592,6.467439896427095,6.481671731453389,7.0394486784935,6.976788908243179,7.249719901476055,7.5981857515871525,6.92290005274117,6.138670199085027,5.981032304465771,6.378532557748258,6.830145318526775,7.212257624138147,7.084151431918144,7.678542150650173,8.1682338421233,7.286159468349069,6.937516161706299,7.749942366499454,8.106452659703791,8.377447788137943,9.32754854671657,9.247972926590592,9.834023547824472,9.30129453027621,9.943922178819776,10.798835659399629,10.462218460161239,10.362332622986287,9.576497030444443,9.921991575974971,10.14039537217468,9.200351145118475,9.494358173571527,10.294810273684561,9.896690442226827,10.285724801942706,9.495235758367926,8.924241987522691,8.498405142687261,7.88738019997254,8.603317622561008,8.007440874818712,7.0590263665653765,6.489253293257207,6.739640575833619,7.4893052582629025,6.958484556991607,7.709935286547989,8.26704900758341,7.6373976352624595,7.28748181136325,8.268869776278734,7.7432569693773985,8.600397761911154,8.48581595160067,9.347342158202082,9.094936666544527,9.722741747740656,9.331215004436672,8.737233674619347,9.114238714799285,10.112103807274252,10.132163929753006,9.736460448708385,10.451906981412321,10.838945434894413,11.031172278802842,10.053568419069052,10.720444701146334,10.181204505264759,10.32428144197911,11.152394991833717,11.69399212487042,11.946203279774636,11.838574821129441,11.06428905762732,10.793154732324183,10.775333208963275,11.704524479340762,11.247791345696896,11.231385058257729,11.914651544764638,11.200791166163981,10.992559200618416,10.842339943628758,11.183685017749667,11.833134608343244,11.26873648352921,11.558454574551433,12.338491229806095,12.439563375432044,13.06553621776402,13.68223023088649,14.081534334924072,14.056048923637718,13.666512096300721,13.030368206556886,12.982637823559344,13.131879251915962,12.414765044581145,13.273084816988558,13.882601822726429,14.680298623163253,13.987240818794817,13.471231951378286,14.105706612579525,14.912683664821088,14.888089679647237,15.120781739708036,15.015442389529198,15.76502847718075,16.650626993738115,16.03126314561814,16.064871728420258,16.906931322533637,17.829062956850976,17.857154625002295,18.202656285837293,17.577835347503424,17.106605514418334,17.441795562393963,17.270127926021814,16.81634612660855,17.345458121038973,17.024038224946707,17.122156566008925,16.89009722461924,16.554858713410795,15.95275368122384,15.623190195765346,15.001819118857384,14.966592723038048,14.31064671697095,13.98798499442637,14.30335404817015,14.896828209515661,14.981958588585258,14.409712459892035,14.121830460615456,13.158361583482474,12.777796720154583,13.662553870119154,12.753676402848214,12.702645536512136,13.571873540990055,13.11150061013177,13.302113226614892,13.584723172709346,13.783434015698731,13.418931499123573,13.864837041590363,13.173399163410068,13.878474285826087,13.560525749344379,12.57047462137416,12.15225680777803,12.794349333737046,12.495831790845841,12.82457175385207,12.329079696442932,12.138971977867186,12.658082974143326,12.34023696416989,12.908620134461671,12.82937014568597,12.256094489246607,12.6194326877594,12.83259340096265,12.206793894059956,11.86488019535318,11.72340040979907,11.963495156727731,12.016103956382722,11.060969701502472,11.175331999082118,10.207014864310622,10.057229989673942,10.620912244077772,10.20003789383918,10.014503770507872,9.902926851529628,9.074780149385333,8.12030684016645,8.59892278816551,8.05029081646353,8.628103996627033,8.867642489261925,8.140235961880535,8.43393916497007,8.495111786294729,7.72841768572107,6.944065830204636,7.349701480008662,7.502909583970904,7.189278495498002,7.531898466870189,6.979167132638395,6.1004545064643025,6.658971126191318,7.191768976394087,7.921020284295082,8.582497388590127,9.456104148644954,10.315612117294222,9.889234500937164,10.386889017187059,10.592830046080053,11.291757419705391,12.206951806787401,12.79796596430242,13.179760831873864,12.97705449955538,13.200913157314062,12.28377693425864,11.84372275415808,12.82123572519049,11.949030592571944,11.353210330475122,11.899457866791636,11.02929386170581,10.265020388178527,11.145067450590432,10.841404153499752,11.132986895740032,10.832489582709968,11.814322835765779,10.994901047553867,11.531471647322178,11.052044953685254,10.932636610697955,10.412388331256807,10.451134487986565,11.164847777690738,11.618436655495316,12.460989530198276,12.507876044604927,12.234546296298504,12.112867072690278,12.629665911197662,13.50768025405705,12.800984325818717,13.591081511694938,13.315601922571659,13.55754621932283,12.701274220831692,12.410094134509563,11.504354980774224,10.61958215245977,11.467548554297537,10.81769287167117,9.966308287344873,10.598239568062127,10.306377671193331,9.537864818703383,8.593522403389215,8.087999966461211,8.485442349687219,9.167957841418684,9.761576207820326,10.206535454839468,9.938990768045187,9.301652543246746,9.972061712294817,9.470071158837527,8.534143580123782,8.484725907910615,7.71939405426383,7.130667726043612,7.810622751712799,7.743141890969127,8.317585663869977,8.903525209985673,8.100015205796808,8.076099098660052,8.571239185985178,9.473689938429743,9.051446669735014,9.650079123675823,10.319382325746119,9.675716454628855,9.933493670076132,9.474883979652077,10.194247569423169,10.01857815310359,9.616103742737323,9.017802378628403,9.336072545032948,8.456484728958458,8.471384570468217,7.887689456343651,8.162664670497179,8.438860084395856,8.579254406969994,8.885065239388496,9.535533202812076,10.357191673479974,10.847960117738694,10.489013350568712,11.190884760580957,11.26735966745764,11.328610901720822,10.445955346804112,10.934613353107125,11.040918170940131,11.452038454823196,11.747164796572179,11.161690128035843,11.262851011008024,12.124355700798333,11.658182766288519,11.008367733098567,11.62667473545298,11.340463667176664,10.62456380855292,11.24720607465133,11.364919785410166,11.954619672615081,11.768212595488876,11.859360428526998,12.008785165846348,12.634753026999533,13.319638430140913,13.41880649421364,13.8785923239775,14.817848479840904,13.972809626255184,13.612535810563713,12.730536076705903,13.22579376352951,14.212666579056531,13.914639682043344,13.128646511118859,13.029951539356261,13.927279388066381,14.310658061876893,15.068533349782228,15.506258349865675,14.823872113600373,15.3023127252236,14.404948653187603,14.26865668874234,13.669418461620808,13.132132634986192,12.164822228718549,11.301783103030175,11.315048085991293,11.156690798699856,11.692860919982195,10.97879881458357,10.255221750587225,9.888955247588456,10.100326044950634,10.266093430109322,10.095865104813129,10.050641334149987,10.71654091682285,11.665537324734032,11.92493673460558,12.118628514464945,12.592820537276566,12.91514293383807,13.504075372125953,14.479427060578018,13.60717749223113,13.74753486039117,13.526059214025736,14.111161490436643,13.669571479782462,14.144145511090755,13.85730514023453,14.06916525727138,13.524221824947745,14.391754063777626,15.333977821748704,15.453983633313328,14.723096350673586,15.228095963131636,15.501705348491669,15.70038781920448,14.883585555944592,14.433076297864318,13.930128758307546,14.194274029228836,14.299869439564645,14.161630256101489,13.403517976868898,12.458732563070953,11.501672757789493,11.984432737343013,11.132760977838188,11.323690145742148,11.955947378650308,12.262748796958476,11.974020360503346,12.297721814829856,11.374868507962674,10.793070315383375,10.29279666300863,9.989339450839907,8.995588270481676,9.24458850780502,8.362877355888486,7.804605298209935,8.362490386236459,7.9294460117816925,7.903359057381749,8.77250214992091,8.285582412965596,7.681877915747464,7.1243604542687535,6.802829918451607,7.740471627563238,7.453609779011458,7.437641221098602,8.341148690320551,7.970178791321814,8.518224170897156,8.35762440925464,8.808867045212537,8.60295556904748,8.090980838052928,8.044961476698518,7.181570691987872,7.549223532900214,7.117120513226837,6.924730604980141,6.740425368770957,6.43175926245749,6.210130083374679,5.360460642259568,4.428203214425594,5.3523920904845,5.902963607106358,6.5773629560135305,6.482946972362697,6.388338132761419,6.042005140800029,6.108915732242167,5.765697491820902,6.013306090608239,7.003799812402576,6.751879880670458,6.612308791372925,6.586668492294848,6.949582080822438,7.297096231020987,6.82719212025404,6.772769664879888,6.7320344196632504,7.054965424351394,6.237492280546576,6.874187388923019,6.3131866729818285,6.707046204712242,7.597472368273884,7.435939461458474,7.120065871160477,6.173209931701422,5.445672723930329,5.951067402493209,5.199884068686515,4.7536408649757504,3.8638188098557293,2.9444559714756906,2.3136632116511464,3.1619512885808945,3.8275808906182647,3.8064080788753927,3.364892890676856,3.520408176817,2.760587202385068,2.297891192138195,2.0104706450365484,1.7875780896283686,2.2423382084816694,1.431042461656034,2.1850528568029404,2.817282263189554,1.8571798857301474,2.3581816852092743,1.8949351026676595,1.8786706808023155,2.7663929876871407,3.5685619353316724,4.134689035825431,3.7453095000237226,3.08250375604257,2.1973862322047353,3.062986447941512,2.6902341921813786,1.8706597853451967,1.8408245095051825,1.3115826449356973,1.4488734547048807,1.26105731818825,1.1820860365405679,1.121895701624453,2.013625764288008,2.7469212315045297,2.4025907148607075,2.2446455084718764,2.959963997360319,1.978928904980421,1.5530886123888195,1.5450477940030396,1.949598014820367,1.0296120983548462,2.0223123747855425,1.5015648668631911,1.460530100390315,2.3630012455396354,3.3109045140445232,3.826910034753382,4.095744529273361,3.470743621699512,2.577712815720588,2.2408948368392885,3.233706731814891,2.5238211709074676,1.9270034478977323,2.3068893342278898,1.8216620981693268,0.9488312983885407,1.1706871585920453,0.8985425033606589,1.3247613655403256,1.1706231753341854,1.5422019409015775,0.7114548543468118,0.47018960770219564,1.398695272859186,1.169496951624751,0.8935126843862236,-0.07148802001029253,-0.9056474701501429,-1.0719141447916627,-0.9990395992062986,-1.0641485750675201,-0.12001215014606714,0.1775910798460245,-0.011962878983467817,-0.8839962519705296,-1.784161499235779,-0.94871522532776,-0.6379070179536939,0.26688063563778996,1.177901791408658,0.8090109522454441,1.237570988945663,2.2350846640765667,2.6923819929361343,3.3160892268642783,3.6534160198643804,3.419952934142202,2.6762966639362276,3.584190064575523,4.00353893591091,4.187815567478538,3.970946622081101,4.685163883026689,5.344336420763284,5.918203380890191,6.4836767627857625,5.850814943667501,5.840145158581436,4.852148175705224,5.0056517464108765,5.265590639784932,4.458125558681786,5.199284037575126,4.499732405412942,3.9883724679239094,3.152138128876686,3.6822199593298137,3.023216187953949,2.560674545355141,1.6966757862828672,0.804392920807004,0.2588061816059053,1.1557604661211371,1.437785321380943,1.4203718393109739,2.2804108541458845,2.7293040147051215,2.7105242242105305,2.479073303285986,1.5935859810560942,1.3569988049566746,1.6455359947867692,0.7020962378010154,0.9974195430986583,0.5108280670829117,0.703484296798706,0.14231575094163418,0.2346272519789636,0.6743518384173512,0.5148064126260579,0.24811773747205734,0.7577177281491458,1.681294505018741,2.4333313782699406,2.401114304084331,3.0582326874136925,3.8286307086236775,4.157930536661297,3.689947103150189,3.153477529063821,2.366580788977444,2.2935223327949643,2.213522329926491,3.0835664714686573,3.9534881063736975,3.071524896658957,3.351496262010187,3.2133496990427375,3.3159172241576016,4.2672396139241755,4.731103877071291,4.2508796118199825,3.6671628286130726,2.8212502552196383,2.1329950783401728,1.746886681765318,2.0613660113886,2.4445099122822285,2.534612267743796,3.2390105053782463,3.8961688857525587,2.916352757252753,2.7242897688411176,3.357880452182144,3.2274134531617165,3.0791663648560643,3.121050411835313,3.373136675450951,2.9850332508794963,2.650553110986948,2.045142635703087,1.14423908572644,0.7032360471785069,0.6481625931337476,-0.23733650101348758,-0.5214416137896478,0.2603360554203391,0.4684134037233889,-0.08500590454787016,0.5298215700313449,0.7436859714798629,0.31459169927984476,0.6816319236531854,0.1921002147719264,-0.026048941537737846,0.21460867766290903,0.8800938297063112,0.1596597610041499,-0.47921219002455473,-0.755432574544102,-0.905580376740545,-0.8435276574455202,-1.644653305877,-1.8961806963197887,-1.2321456628851593,-0.36623816518113017,0.025541841983795166,0.9842684422619641,1.9678789153695107,1.1958912033587694,0.6050264914520085,-0.002903678920120001,0.9044121950864792,0.300768265966326,-0.2911682450212538,-1.0216609830968082,-1.8770185257308185,-1.4879625220783055,-0.7402461902238429,0.11588696017861366,-0.39774909894913435,-0.10390179045498371,-0.8747491058893502,-0.1476357253268361,0.4218833572231233,0.619996964931488,0.12889669835567474,0.5596215804107487,1.138292602263391,1.9821639428846538,2.6514095361344516,2.0633022054098547,1.3019034243188798,1.242118006106466,0.6470750477164984,1.0788043458014727,0.5864029196090996,1.3132073790766299,0.49675184674561024,-0.304841429926455,-0.3814548649825156,0.29168017068877816,1.1060286043211818,1.0028370511718094,0.6950939879752696,1.5446197791025043,1.5886261966079473,1.6832953058183193,2.5144427539780736,2.3021407485939562,3.0502819367684424,2.6516732638701797,2.7093334943056107,2.9633616120554507,3.65643736673519,3.7436958719044924,3.7286133356392384,4.511735775042325,3.8435958200134337,4.443485962692648,5.237730193417519,4.320792763028294,4.6824747496284544,5.24294696142897,5.700977324042469,5.998571951407939,6.736567947547883,7.338863162789494,8.013749798294157,8.523099231068045,9.242860523518175,9.747593122068793,9.537675162777305,9.880843561608344,9.890204204712063,10.479619164019823,10.132170101162046,10.647138663101941,10.05163069954142,9.09007724095136,9.70990907214582,10.652132426854223,10.712218334432691,10.876733170822263,11.339392696507275,11.357345329131931,10.587064343970269,9.919921886175871,9.856953416019678,10.609881351701915,10.891932368278503,11.18719169916585,10.679559690412134,9.887610751204193,9.476318369153887,10.038432388566434,9.82924611447379,10.82483233883977,11.535368271172047,10.600482769310474,10.863283711485565,11.840618188958615,12.623031150083989,12.320077989250422,11.834716301877052,10.964272536337376,10.387606216594577,9.462445887736976,8.635139619000256,9.065729097928852,8.394325986038893,8.845008450560272,9.838551223743707,9.922700874507427,9.107270086184144,9.447608190122992,10.408766040112823,9.71015160297975,9.531839308794588,8.844948958139867,8.587224753573537,9.244540856219828,8.349646741058677,8.187469211407006,8.110546613577753,7.964508176781237,8.577884983737022,8.461082038469613,8.529082037042826,8.133382800966501,7.371847982052714,7.225187877658755,7.848734624218196,7.195558793377131,6.801417692098767,6.746626555453986,6.338324365671724,5.706466817297041,6.281433199997991,5.662090895231813,5.532703193370253,4.686382792424411,4.493881446309388,3.526827727910131,3.340835158713162,2.5878919013775885,2.187836283352226,2.16504516126588,1.3247141148895025,2.1264189640060067,2.662802384234965,2.7705593602731824,3.5240227105095983,4.47867320664227,3.4804463642649353,2.7737736008130014,2.7545648170635104,2.4147024983540177,1.7365208021365106,2.383383425883949,2.9208171549253166,2.405542596243322,2.2938293595798314,2.1567618353292346,2.7808750877156854,3.637398541904986,3.105397298466414,3.6013441402465105,2.7536370055750012,3.670134818647057,3.298130076378584,2.840878274757415,2.6828802889212966,1.794058500789106,1.919119113124907,1.4306696029379964,1.9523314349353313,2.5716089364141226,2.832196907605976,2.2172854989767075,1.9138404615223408,1.4833957459777594,1.5664708325639367,1.6818515313789248,1.4205265021882951,1.553028151858598,1.8944045803509653,2.0155629036016762,2.779768832027912,3.5550333843566477,4.380484236869961,5.030107960570604,4.616081355605274,4.68307276442647,5.441389340907335,4.926065010949969,5.137235532514751,4.278226957190782,4.002841003239155,4.07309203594923,3.1769808367826045,3.7300779400393367,4.259718839544803,5.073288369458169,4.6744011095725,5.6323162778280675,5.36710662022233,5.559284057468176,5.02738467277959,4.6065230392850935,5.098914868198335,4.2346741277724504,3.851473500020802,3.968357956968248,4.315887640696019,3.4373980700038373,2.8414571434259415,2.293774255551398,2.356306749396026,2.4219672312028706,2.227809130679816,2.157449417281896,1.782813013996929,1.0210982668213546,1.9684909461066127,2.840805534273386,2.111233797855675,2.472633996512741,2.081590193323791,1.1440638774074614,0.381251550745219,0.9805304231122136,1.1793519956991076,0.7020501173101366,1.1722388076595962,0.32754353107884526,0.4429686861112714,1.0770295015536249,1.5423856587149203,2.147489573340863,1.9718878655694425,1.2912693228572607,1.0193967698141932,1.2829442131333053,0.7479511392302811,1.6169632710516453,2.611117213498801,3.596450828947127,3.164015017915517,3.5526712825521827,4.496776765212417,4.337846834212542,5.228823005221784,4.260963698383421,4.868620757944882,5.4634285741485655,5.207540535833687,4.94931567274034,4.320587447378784,3.416810544207692,3.017808636650443,3.120404985267669,2.435334808193147,3.071683171670884,2.891239910852164,3.569960583001375,4.349609713535756,3.8630006285384297,3.857470904942602,3.5040154648013413,4.0663608512841165,3.971102545503527,3.377350968774408,4.371523243840784,5.3288539736531675,5.468412706628442,5.982929459307343,5.1768629853613675,4.377152974717319,3.907601713668555,3.8522764267399907,3.2383891097269952,3.0064425482414663,2.4708831515163183,2.3015752462670207,3.2259810995310545,3.1687256256118417,3.3335039503872395,3.812016532290727,3.2913382588885725,3.6470936159603298,3.872392433229834,3.5636412519961596,3.4286888306960464,3.069556095637381,3.6797602460719645,2.97100424580276,2.930286309681833,3.2244209116324782,3.644981841556728,4.514975673984736,4.8640319826081395,4.524019717238843,4.248606969136745,4.10697853192687,3.9052292513661087,3.9415266788564622,4.279474191367626,5.037861136253923,5.497877671383321,5.966959599405527,6.837877987883985,6.980898603796959,7.873981523327529,7.065034730359912,7.347938961349428,7.375253384001553,7.053340068086982,6.354701343923807,6.983613741584122,7.917590253986418,7.674617788754404,7.681975826155394,6.756322095170617,5.866979690268636,4.927789776120335,4.596172860823572,4.125663316808641,3.8737342562526464,4.119925336912274,4.455662665423006,3.9539494207128882,3.586950157303363,4.139512643683702,3.6752041331492364,3.608900895807892,3.230292138643563,3.6943256142549217,3.9392882348038256,3.7773849023506045,4.298073025885969,3.337966177612543,3.3972598537802696,2.5614349083043635,3.3425223818048835,4.231716896407306,3.2740289475768805,2.3768653934821486,2.3483398808166385,2.430626760236919,3.426124269142747,3.3763630958274007,3.603800402022898,4.588493331801146,5.152599077206105,5.169450780842453,5.824574613943696,6.439782839734107,6.0377323823049664,5.555104524828494,4.9757147608324885,5.82094857422635,5.304606907069683,4.787837966345251,4.726343658287078,5.339931295253336,4.455108038615435,4.762448193971068,5.25465968856588,4.5280447374098,4.811012272257358,5.558115782681853,6.522528903093189,6.410684287548065,5.453429785557091,6.25996088096872,6.987195843830705,7.948796471580863,7.288880946580321,7.37898903246969,6.754147727508098,6.780015635304153,6.575814678799361,6.593739038333297,6.064581883139908,5.440889981109649,4.464906507637352,3.917622017208487,4.080070293974131,4.475508050527424,4.7517886706627905,5.1158317984081805,4.964497330598533,4.461522742174566,4.813823498785496,4.909389701206237,5.612838784698397,5.13221661420539,4.465615377761424,4.725644201505929,4.027439365629107,4.762125276494771,4.94580953521654,5.098504020832479,5.977139793802053,6.653549754992127,6.998122604098171,6.302409770898521,5.4703907687217,6.054503601044416,5.95278785051778,5.6824342156760395,5.237139896955341,5.4734396785497665,6.316787477582693,6.838381342589855,6.333139074034989,5.743481814395636,5.132664555218071,5.723712475039065,6.104381717741489,5.191809952259064,6.0247095404192805,5.3769657257944345,5.353551101870835,5.426220419816673,4.6856543412432075,4.5906049008481205,3.9384571867994964,4.310675251763314,4.680962641257793,5.343107478227466,4.553303880151361,4.916011159308255,5.596483951900154,5.787123983725905,4.978598308749497,5.724060961510986,6.678383325226605,7.464741437230259,7.680059025529772,6.81780840177089,6.412950323428959,5.438242250587791,4.789174314588308,5.394606712739915,6.23040932090953,6.828672682400793,6.64810330606997,7.557232713326812,7.843379421625286,7.064154180698097,6.492504618130624,5.8544673612341285,6.282360607292503,5.363332999870181,4.92915158951655,4.711648300290108,4.6058903289958835,4.981524169445038,4.637702330946922,4.5530937584117055,4.872303989250213,5.84517039405182,5.139275636058301,4.482435757294297,5.387549776118249,4.831235178280622,3.9965477068908513,3.365917113609612,2.910859112162143,3.7673976342193782,3.6560593666508794,3.3702449668198824,2.8018113784492016,1.86531896982342,2.074593252968043,2.8419185359962285,2.5985646406188607,2.732262150850147,3.0916293282061815,4.03413693420589,3.713860599324107,2.974068919662386,2.872845945879817,2.4615297471173108,1.91053176112473,1.8930904786102474,1.3718558987602592,1.3975028460845351,1.4179304246790707,2.214794527273625,2.6109779863618314,1.8541283146478236,1.8402820378541946,1.8054959457367659,1.7958937399089336,0.8430125927552581,0.8943640049546957,1.8427647044882178,2.8276000251062214,3.3615714432671666,3.6182613731361926,3.3907940802164376,3.4929003161378205,3.8093807990662754,3.763979139737785,3.8194379950873554,4.097931653726846,4.989480164367706,4.26202455163002,3.4715558867901564,2.5916120670735836,3.4063411550596356,2.4689897722564638,2.9292753068730235,3.646444523707032,2.8412836557254195,1.9524118434637785,1.83416582737118,2.0029280446469784,2.7179403896443546,3.105974481906742,3.1422687061131,2.312329018022865,1.5104951816610992,1.3161063408479095,0.659899765625596,0.6247233897447586,-0.10930164624005556,0.7166141774505377,1.6128980540670455,1.611697489861399,1.8270110692828894,1.552919670008123,1.8363211336545646,1.1024060193449259,0.35475245118141174,0.5666616014204919,0.37443969398736954,0.4722314798273146,-0.01594741689041257,0.9683762839995325,0.14294393360614777,0.1933109639212489,0.19131688494235277,-0.46328269550576806,0.2550607966259122,1.0475797918625176,0.22279208898544312,-0.6270323703065515,-0.7307537477463484,-1.0296793119050562,-0.8106842739507556,-0.4859100175090134,0.35107681853696704,0.12214254261925817,-0.32909217244014144,0.4911963320337236,0.5546317482367158,0.9586502085439861,0.8190180766396224,0.7211698559112847,-0.008438131306320429,0.5583684542216361,1.1843330725096166,1.1162608009763062,0.5582279902882874,-0.2930026836693287,-0.14908211585134268,-0.8229102166369557,-0.27620413713157177,0.49623193265870214,-0.03335864841938019,-0.5007231058552861,-1.0258238348178566,-1.0231040632352233,-1.5507842586375773,-2.021277607884258,-1.6806828971020877,-2.0534117589704692,-2.229433627333492,-3.1944801067002118,-3.998651127330959,-3.7560586258769035,-3.1156834992580116,-3.0552672832272947,-2.2074890164658427,-1.6294286041520536,-0.9294635076075792,-1.9101488259620965,-2.5437781997025013,-3.1684544035233557,-2.2855279548093677,-1.5284816483035684,-2.1389129869639874,-2.6275907829403877,-1.969812324270606,-2.8412561509758234,-2.9066330115310848,-2.528303997591138,-2.0217581070028245,-1.9895128491334617,-2.853735073003918,-3.6312141749076545,-3.0088530420325696,-3.084921376314014,-2.882601252757013,-3.7557320934720337,-3.0868278755806386,-3.232432189397514,-2.308310399763286,-2.3959178822115064,-2.5856351680122316,-2.6973437098786235,-3.05852218111977,-3.6145865921862423,-2.6966104018501937,-2.672135502099991,-3.059570563491434,-2.9447708348743618,-3.2794817625544965,-4.272060204297304,-3.4877280620858073,-2.7937071439810097,-1.7994950958527625,-1.9051041193306446,-1.3084147120825946,-1.821520306635648,-2.720729487016797,-3.1364752682857215,-2.555401078425348,-2.704109034501016,-2.8004900445230305,-2.8372122580185533,-2.1747766504995525,-2.058164103887975,-3.0030200891196728,-2.2856695568189025,-2.003216796554625,-1.5573802790604532,-1.496059060562402,-1.4983404050581157,-0.6128747533075511,-0.2196306912228465,-0.8303536716848612,-0.19535170402377844,0.4896128331311047,1.1068518687970936,0.7044921359047294,0.8298795367591083,0.5351803563535213,1.268772482406348,1.2592868488281965,0.40900050615891814,-0.19083787873387337,0.5552233136259019,-0.17897146847099066,0.1302366442978382,-0.557969527784735,-0.8864863431081176,0.10028474126011133,-0.23637581802904606,-0.8799897134304047,-0.32416291208937764,-0.00830838643014431,0.3740722048096359,1.0633966522291303,0.24199923919513822,0.6671834974549711,1.1731735756620765,1.1921396544203162,0.3127718693576753,0.35167154483497143,0.75446647265926,0.11608194233849645,0.1922222189605236,0.9536506528966129,1.827268173918128,2.482477445155382,2.4804302686825395,2.4204462761990726,2.6316314176656306,3.254919367376715,3.434800600167364,3.2418465889059007,2.663974151480943,1.7013386990875006,2.6379659944213927,1.723248568829149,2.3232085248455405,2.2959113027900457,2.067580256611109,2.8998433258384466,3.6350183030590415,4.489479208365083,3.5628607110120356,3.449418463744223,4.376924199052155,4.471080443356186,5.457350614480674,5.055039222352207,5.962907316163182,6.7053479719907045,5.8435954777523875,5.694279201794416,5.418841591104865,4.422001784667373,4.390092322602868,4.170341173186898,4.377200431190431,3.9645186285488307,4.516083482187241,5.004100225865841,5.181149492971599,5.70352876605466,6.194844360463321,6.423614003229886,5.726855056826025,5.830934051424265,6.101655159145594,6.633432517759502,6.354637607932091,6.627187320031226,5.704889543354511,5.607654060702771,5.616424711886793,4.804531672038138,5.651420993730426,5.914992288220674,6.410685353446752,7.391831630375236,7.828302620444447,7.029082677792758,6.568591103423387,7.1087582795880735,7.007647781167179,6.905137478373945,6.282142181415111,7.188606281764805,7.802099481690675,7.615046501625329,7.753490125760436,7.421514745801687,8.37689155433327,7.857413430698216,7.9953284175135195,8.805518785025924,8.273017023224384,7.742245812900364,7.729662043042481,8.162829376757145,7.188718541525304,7.223027483560145,6.442129262723029,5.95946541428566,6.014916332438588,6.7753474758937955,5.931508121546358,6.331328551284969,6.196730158757418,7.012182353530079,7.254558588378131,7.881219252478331,8.548738984856755,8.571919029112905,8.791703558992594,9.2243722085841,8.567352599930018,8.749063342344016,8.192306054290384,7.2681266982108355,7.526157380081713,7.261938038282096,6.919757436960936,6.723646001890302,6.829127244651318,6.160455205943435,5.3654601611196995,5.287858541123569,5.315584497991949,6.229727797675878,6.940043237991631,6.972191218286753,7.017913391813636,7.401730821002275,7.336619223002344,7.791576860006899,8.549377135466784,9.398472184315324,9.28009743988514,10.108943786937743,10.816343345213681,10.415803538169712,10.178686864674091,9.789190281648189,10.432662917301059,10.652391590178013,10.297751565463841,11.242004052735865,11.061338381376117,11.545672700274736,11.106645880267024,10.672012233175337,10.722941936459392,10.768274743575603,11.309583748690784,11.509224635083228,11.99432779662311,11.865538543555886,11.176280409563333,11.638507477007806,11.945991022977978,12.388729675207287,12.362480096518993,11.625783537048846,11.481656569987535,11.003614709246904,10.337740734219551,9.823738135397434,9.931916793808341,8.947192376479506,9.016300173010677,9.681421189103276,9.90063659986481,10.797505302354693,9.916919730138034,9.321410010568798,9.707746816799045,8.903904816601425,9.39270863449201,9.100890084635466,8.259329457767308,8.409692468121648,7.898930741474032,7.361175049562007,8.339485278818756,7.839440451003611,7.681493295822293,8.06017584586516,7.476104559376836,7.153116531204432,6.5828703586012125,5.928028200287372,5.803773806896061,4.91259528696537,4.350440409500152,3.814893562812358,3.020114262588322,3.83530037291348,3.3061881265603006,3.1112586241215467,3.315557681489736,3.377294596284628,3.372311741579324,2.624562256038189,2.419695065356791,2.5042292336001992,2.646414226386696,3.2513169874437153,3.076795775908977,2.127579860854894,1.6104605640284717,1.4505769172683358,0.8013641382567585,1.1649880055338144,1.676250351127237,0.9910168298520148,0.0010095029138028622,-0.07600647443905473,-0.5791798308491707,-0.8878450053744018,-0.01698806555941701,0.5012225965037942,-0.4796148273162544,-0.825778809376061,-0.14845461258664727,-1.1210922338068485,-1.2809300967492163,-1.0029299836605787,-1.176591877359897,-0.885305839125067,-1.7484452822245657,-2.061537996865809,-1.1929304753430188,-1.4716648124158382,-1.4132518167607486,-1.297294755000621,-2.1290421378798783,-2.3348095435649157,-1.6243950882926583,-1.2092246185056865,-1.2920085401274264,-0.8327778759412467,-1.3851889087818563,-1.1437550000846386,-0.34614962758496404,-1.1480447319336236,-0.45619471929967403,-0.24115537572652102,0.24831038061529398,1.2424168209545314,1.0801648306660354,1.2495235074311495,2.0954161304980516,1.2751433784142137,0.7102767108008265,1.0540611282922328,1.0979652437381446,0.8796329251490533,0.4972121985629201,-0.3313407590612769,0.20954865170642734,-0.7391975377686322,-0.026543299201875925,-0.7870760019868612,-1.1687298975884914,-1.4694012887775898,-1.3207310969009995,-1.3404789087362587,-0.38881664955988526,0.5880562583915889,-0.17350272834300995,0.14964928850531578,0.2505480442196131,-0.7087865346111357,-0.9735961914993823,-1.1313407737761736,-1.957249958999455,-2.8629794693551958,-3.763435496017337,-3.5198389939032495,-4.337009743321687,-4.783984205685556,-3.8275591623969376,-3.516712946817279,-3.735105528961867,-3.1935904710553586,-3.2313076467253268,-2.488896375056356,-2.6940289861522615,-3.335402945522219,-3.3053947743028402,-3.5128943067975342,-2.69268945325166,-2.4020852693356574,-1.9985055401921272,-1.2295611342415214,-0.780479630921036,-0.01400509150698781,-0.4914426291361451,-0.9676366494968534,-1.2157750693149865,-1.528889752458781,-2.0835553002543747,-1.8525019967928529,-1.5997383017092943,-2.5128034125082195,-3.308578994125128,-2.3505336064845324,-3.1177334431558847,-3.0247793653979897,-2.877898317296058,-2.9641402289271355,-3.064560336060822,-3.36291458690539,-3.3813044764101505,-3.048711000010371,-3.3936474095098674,-3.629670502152294,-3.0118339671753347,-3.3917463677935302,-3.7511477218940854,-4.490856143645942,-3.4972578352317214,-3.764298152644187,-2.78259195946157,-2.8488152222707868,-3.2964669074863195,-3.4272240730933845,-2.445613701827824,-2.7533276230096817,-1.9586932929232717,-1.866000348702073,-1.6602808977477252,-1.781279990915209,-2.3589670890942216,-3.0960545470006764,-2.432653239928186,-3.1241874103434384,-2.5342541388235986,-2.6655215402133763,-1.8616736866533756,-2.568979776930064,-2.3811262901872396,-3.123836560174823,-3.7660613348707557,-3.7904814244247973,-4.621071714442223,-4.814252038951963,-5.135756745003164,-4.239742179401219,-4.940434941090643,-4.197575008962303,-3.8537697941064835,-3.3942007208243012,-3.744208838790655,-3.5885343640111387,-3.8393803276121616,-3.3353394507430494,-3.2659943248145282,-3.8597085936926305,-3.639916414860636,-4.475172656122595,-3.786931990645826,-3.192552713677287,-3.6135036339983344,-4.2078017820604146,-3.8513940032571554,-4.819575514178723,-5.211703146807849,-4.524945978540927,-4.476901262067258,-5.317842531949282,-5.885003357194364,-6.604011482093483,-7.076847858261317,-7.079795174300671,-7.860671788454056,-8.819568754639477,-8.25744010368362,-8.769693702459335,-7.854381229262799,-7.590408080257475,-6.700818754732609,-6.4300530781038105,-6.867139432579279,-6.1398436753079295,-6.338180377613753,-6.709591508843005,-6.354579691309482,-6.36803320562467,-6.368758624885231,-6.563339725602418,-6.416000704746693,-5.975097358692437,-6.81409724149853,-6.804065273143351,-7.44600092060864,-8.391401218250394,-9.378187374211848,-8.742731269914657,-8.930099400691688,-8.227229519747198,-7.456906218081713,-7.1572752124629915,-7.981977738440037,-8.314903552178293,-9.228112941607833,-8.612257574684918,-9.288367835339159,-10.13402007939294,-9.62005269806832,-10.356620536651462,-9.867641646414995,-10.554302472621202,-10.144480265676975,-9.420446848962456,-8.689286916516721,-8.250259545166045,-8.745955196209252,-9.738977609202266,-10.651251170318574,-10.099718333687633,-10.60575080383569,-10.1981658693403,-10.284495022147894,-9.845605300739408,-8.917704228311777,-9.34414408216253,-9.194001680705696,-10.149188223760575,-9.195969368331134,-8.665490872692317,-9.11823348654434,-9.610414644237608,-8.926023101899773,-9.051320833154023,-8.426152834668756,-7.946493941824883,-7.36253886250779,-8.22396667394787,-8.207164444494992,-8.463265693280846,-8.618045831564814,-8.384013291914016,-7.495586049277335,-7.437393354717642,-7.182659327518195,-6.747139138635248,-7.287601162679493,-7.775179530959576,-7.435908137820661,-7.516804694663733,-7.647072136867791,-6.8045898755081,-7.343180174939334,-7.90011480031535,-7.226433920674026,-7.396445100195706,-6.657627952285111,-7.026178230065852,-6.59247526852414,-7.453396623488516,-6.738784099929035,-6.043353505432606,-6.569537305738777,-7.122327317018062,-7.783580956980586,-7.642730992287397,-7.9831234803423285,-8.917828355915844,-8.35018042800948,-7.544565495103598,-7.85464081633836,-7.683699507731944,-6.926965268794447,-7.810712179169059,-8.362601434346288,-9.231016394682229,-8.644310727715492,-9.329066934995353,-9.44687408208847,-8.63078262610361,-8.370796125382185,-9.235614597797394,-8.486803327221423,-8.581262925174087,-9.37897445447743,-9.054103722330183,-8.907197096385062,-8.904087449423969,-7.963852939661592,-7.354997679591179,-7.5882948795333505,-8.484646643977612,-9.467928347643465,-10.393210692796856,-11.170042268931866,-10.890299004502594,-10.181836111471057,-9.91971492394805,-10.690939293242991,-10.808510655537248,-10.910833651665598,-10.442990022245795,-10.643189893104136,-10.238865293562412,-10.10928110498935,-10.35661547863856,-10.514878424350172,-11.417011346668005,-11.036225771065801,-11.088243474252522,-10.49264612281695,-10.71591915609315,-11.543282988946885,-11.696294191293418,-12.469587740022689,-12.371740392409265,-12.587314829230309,-13.38290097983554,-14.363661860115826,-14.391469952184707,-13.82686228537932,-13.249985232017934,-14.150032687466592,-13.914340142626315,-13.410828856285661,-13.619655495043844,-13.457603177521378,-14.241989745758474,-14.557200139388442,-14.40819962322712,-14.088025004137307,-13.102499530185014,-13.292970571666956,-13.636076268739998,-14.465546992141753,-14.505905946716666,-13.89369564410299,-12.907284109853208,-13.661155524197966,-14.276514690369368,-14.859589081257582,-15.107155385427177,-16.08793903561309,-16.664366567507386,-16.51155528705567,-15.853499664459378,-16.064904543105513,-15.104569806251675,-14.60642085596919,-15.403805819805712,-14.812137504573911,-15.083323628641665,-14.337184655945748,-14.78015114273876,-14.081897082738578,-13.961960943881422,-14.020387547556311,-13.812971321865916,-14.192551572807133,-13.212734547443688,-12.785374484490603,-12.795481149572879,-13.25011211913079,-12.778948411811143,-13.542749830055982,-14.34509734204039,-13.743821253534406,-13.974359491840005,-13.084657209459692,-13.835157684516162,-12.986516286619008,-12.354234916623682,-13.096488879062235,-13.917257627472281,-14.477604487445205,-14.440379404462874,-14.305676760151982,-13.657601492945105,-13.93602169957012,-14.830112293828279,-14.497234681621194,-13.912710208911449,-13.91014398029074,-14.847986762877554,-14.827054928056896,-14.475867103785276,-14.35071915248409,-13.878204894252121,-13.561046454124153,-14.212602742016315,-14.768718155566603,-14.506485605612397,-15.246821747161448,-14.390191957354546,-14.88587049394846,-14.584116779267788,-15.45196335669607,-15.675110660493374,-15.279296023305506,-15.383590887766331,-14.385802507400513,-13.82321127364412,-14.398334860801697,-13.5402367641218,-13.320654101204127,-12.379574546590447,-12.44407597091049,-11.51412571175024,-11.364518822636455,-10.948337361682206,-11.464249070268124,-11.614029021002352,-12.42606581794098,-11.917519943788648,-11.4408580805175,-11.473088483791798,-11.665133035741746,-10.760273418854922,-10.599964561872184,-10.592851120512933,-11.379272846970707,-11.596593187190592,-11.918514545075595,-12.668066191952676,-11.756192123051733,-10.847272753249854,-11.275757493451238,-12.231147362850606,-11.424522087909281,-12.209084835834801,-12.830664907116443,-13.7866256297566,-13.526234774850309,-14.152555590961128,-15.072761382907629,-15.363676156383008,-16.169131578411907,-16.39286213275045,-15.559339598286897,-15.060691959690303,-14.696688289288431,-13.911744447425008,-14.906499444972724,-14.781348193995655,-13.953499993309379,-13.509020728990436,-14.328512670472264,-13.828511488623917,-14.200071472674608,-13.977592547424138,-14.65957618970424,-13.88554235175252,-13.574154637753963,-13.97563846455887,-14.951374217867851,-14.92496226914227,-14.244001391343772,-14.413800816517323,-14.94247453706339,-14.484978241380304,-15.21337714837864,-14.895186303183436,-14.636575346346945,-15.264391753356904,-15.576666329521686,-14.706998660694808,-14.021879954263568,-14.89329537190497,-14.44479290721938,-14.537539303768426,-13.834356819745153,-14.5872129262425,-15.354685131460428,-16.019111621193588,-15.260187766514719,-15.094452728051692,-15.533809868618846,-16.203642221167684,-17.202143647708,-17.34247346315533,-17.068087586201727,-16.623279037419707,-16.465239178854972,-16.02654166612774,-15.181008634157479,-16.066262466832995,-15.567600176669657,-15.074797267559916,-15.941752551589161,-15.445311058778316,-16.32297874893993,-17.319531402550638,-17.783022565301508,-18.006935669109225,-17.580867768265307,-17.695601139217615,-17.213400434236974,-17.30834048613906,-16.734461887273937,-15.865272081457078,-16.227562385145575,-16.838451214600354,-16.26197251258418,-15.5926876491867,-15.260024266317487,-16.204090418294072,-15.425944558344781,-16.339617393445224,-17.160887418314815,-18.030424780212343,-18.72028505196795,-19.463159494567662,-19.444224301259965,-20.425230342894793,-20.33238600799814,-19.453475966118276,-18.67064466420561,-19.008640109095722,-19.25943454913795,-18.80169390095398,-19.45646985573694,-18.50827590469271,-17.864243521355093,-17.474810927174985,-18.251078058499843,-17.917849719990045,-18.116314163897187,-17.305346644949168,-16.54489180725068,-16.102039200253785,-15.347926574293524,-16.332488923333585,-17.111313350964338,-16.316219919826835,-16.723261187784374,-15.999895703978837,-16.359060832299292,-16.027570922393352,-16.81932515837252,-16.86185914091766,-16.95276210922748,-16.094728793483227,-16.980781335383654,-16.245146729052067,-15.725713392719626,-15.363460827153176,-15.762452438939363,-16.50298337964341,-15.98588055698201,-16.205564320087433,-16.026361149270087,-16.092263067606837,-16.42721070535481,-17.23181358119473,-16.908002534881234,-15.91292591067031,-16.789231336675584,-17.641009932383895,-18.038422975689173,-17.55672598723322,-17.25821429491043,-16.40344559168443,-16.544823247473687,-16.041359380818903,-15.129110545385629,-15.737240895163268,-16.03361983783543,-15.924359088297933,-14.986885673366487,-15.893214368261397,-16.213929939083755,-16.30009323824197,-17.263036627322435,-16.772923048119992,-16.663476165849715,-15.893039080314338,-15.792927905917168,-15.58948679966852,-16.166906708851457,-16.225607892964035,-16.330946520436555,-16.86397010833025,-16.810580105055124,-17.507405090611428,-18.11747034592554,-18.967915383633226,-19.364477856550366,-20.003689250908792,-19.46635464206338,-19.665423051454127,-19.749608100391924,-18.99069717619568,-18.919909914955497,-18.670759243890643,-18.82052450068295,-18.832756721414626,-17.978572603780776,-17.919644345063716,-16.925662418827415,-17.42879719287157,-16.685050005558878,-17.56092551117763,-17.020291396882385,-16.739330267068,-17.604455284308642,-17.092606021557003,-17.156406471971422,-17.50375571846962,-18.005917417816818,-17.933513456955552,-18.76834991807118,-18.78370409272611,-19.528842156287283,-20.52244217414409,-20.527369504328817,-20.99667399842292,-21.257751839235425,-21.203122013714164,-20.77267395146191,-19.802661790978163,-20.742304959334433,-19.991274328436702,-19.903196293860674,-19.95218149665743,-19.537105375435203,-19.456163288559765,-19.916316642891616,-19.9958671675995,-19.12876781076193,-18.593508423306048,-18.491809776518494,-18.69146965071559,-19.137612712569535,-18.739069008734077,-18.752072772942483,-18.78465663921088,-18.868576866108924,-19.14571099728346,-18.260089851915836,-19.096902784891427,-18.9530312824063,-18.07350835064426,-18.081241859588772,-17.157688105478883,-17.136055030394346,-17.074259749613702,-16.9204023568891,-16.93429355416447,-17.8118040622212,-17.078609084244817,-16.981799634639174,-16.216191025916487,-16.134938267525285,-15.381418575532734,-15.930861227214336,-15.250892153941095,-15.953514120541513,-16.825653818435967,-16.82685853447765,-16.770807322580367,-16.863170142751187,-15.894423300866038,-15.22826284263283,-15.24115910474211,-14.441408035811037,-13.897650674916804,-14.836270147003233,-14.522553728427738,-14.168989544268698,-13.201342552900314,-13.335160146001726,-12.445183366071433,-12.23681739391759,-11.582890185993165,-11.357259979937226,-11.581828327849507,-11.132758784107864,-12.03237680066377,-12.581187939736992,-11.777952990494668,-11.42348509747535,-12.261880671605468,-11.84912042086944,-12.21219410840422,-12.447370167355984,-12.444628058932722,-12.250215247739106,-12.048100607004017,-12.802167277317494,-12.803984768688679,-13.615260598715395,-12.6687245904468,-11.952163899317384,-12.562079964671284,-12.07461735419929,-12.800122678279877,-13.425940946675837,-14.348171966616064,-13.480770891997963,-13.7856205413118,-14.290502676740289,-13.891466518864036,-12.92692097183317,-13.183554214891046,-13.641657166182995,-14.516486127860844,-13.555964449420571,-13.745143822394311,-12.78605598025024,-13.58490090770647,-14.354240195825696,-14.503324096556753,-14.208824082277715,-14.143832484260201,-13.302630683872849,-12.534530749544501,-11.592608541250229,-12.039369425270706,-11.712024416774511,-10.90354459779337,-10.838283823337406,-11.667143416125327,-11.935115590691566,-12.363010564818978,-12.888995006214827,-12.550997040234506,-12.93082432076335,-13.722297633066773,-14.43023065244779,-14.094359409995377,-14.060868842992932,-14.83311924058944,-14.56809060042724,-15.021436111535877,-15.256492989137769,-14.47479091398418,-13.484000746626407,-14.374236908741295,-13.520302541553974,-13.152284423355013,-12.404901568312198,-11.76535510038957,-11.690799950622022,-11.939270720817149,-11.982169043272734,-12.201186964288354,-12.269439584109932,-12.629755085334182,-13.112607951741666,-13.53988725040108,-13.453827507793903,-14.067095472011715,-13.123288779053837,-13.661416527815163,-13.348607347346842,-14.075671289581805,-14.318937151692808,-14.539117196574807,-15.067900645546615,-15.994095291476697,-16.329850749112666,-16.331211555749178,-16.99093709466979,-16.68493553623557,-17.103869986254722,-16.226832251995802,-16.452227073255926,-17.057797962334007,-17.26381531590596,-16.529798455070704,-17.324956889264286,-16.41218168195337,-15.922023543622345,-14.938708802685142,-15.416042609605938,-15.212446133140475,-15.11466715671122,-15.018712205812335,-15.603709982242435,-15.108448011334985,-14.380425975192338,-14.4489406067878,-14.466791609767824,-13.836870234459639,-14.148823896422982,-15.135840290226042,-15.658964386675507,-15.6556091401726,-16.007490896154195,-15.447046275716275,-16.438189522828907,-16.757611548528075,-17.62630097940564,-17.172831588424742,-17.342785639688373,-17.066381411161274,-18.057029026560485,-17.861015386879444,-18.530625925399363,-19.391053416300565,-19.741532638203353,-20.72463161405176,-20.360769904218614,-20.986975287552923,-21.784606516826898,-21.552467393688858,-22.067679446656257,-22.955003862269223,-23.60807356238365,-22.67511857440695,-22.407597496174276,-23.045527955982834,-23.876940651331097,-24.76990536181256,-25.167671019677073,-26.11213741870597,-26.49449916742742,-26.32588493777439,-26.99012489290908,-27.9312985339202,-28.842630587983876,-28.936561475042254,-29.175000426825136,-28.942246896680444,-29.892864192370325,-29.932062406092882,-30.29512932850048,-29.59523887000978,-29.47860169922933,-30.19115435052663,-29.7016718108207,-29.88413083413616,-29.370135414414108,-29.43198291864246,-29.13234223984182,-29.22762738680467,-28.736563278827816,-28.62261626170948,-28.81500112777576,-28.812834108714014,-29.026136227417737,-28.474825351964682,-29.465025634970516,-28.570520591922104,-27.764074531383812,-28.645276506897062,-28.84747873665765,-29.436293823178858,-30.012148078065366,-29.513914857059717,-29.399745367467403,-28.878521302714944,-29.366432414390147,-30.35718609020114,-30.840236471500248,-30.126959801185876,-30.932459066156298,-31.70971979573369,-30.7613058029674,-29.977176752872765,-30.27033010823652,-30.28418632503599,-30.985109408851713,-30.275681974366307,-31.165746787097305,-31.279931634664536,-30.37133495369926,-31.18644977081567,-31.29178690398112,-31.34385446831584,-31.46334484498948,-31.235117379575968,-31.946968260686845,-32.22165052825585,-32.06554258055985,-31.31000862456858,-32.19101513829082,-32.59554565511644,-32.86019133683294,-33.48122238367796,-33.442969667259604,-32.64385452307761,-31.96492815995589,-32.08523963810876,-31.747006988618523,-31.76632385700941,-31.814645325299352,-30.897178147453815,-31.05819014646113,-31.87258613947779,-31.651481844950467,-31.635230265092105,-30.986851690337062,-30.12201694911346,-29.3304202882573,-28.883026231080294,-28.12694270303473,-29.074522635433823,-29.404603880364448,-28.906209260690957,-28.10613372642547,-28.012112744618207,-28.21327855763957,-28.126259609125555,-28.883006684482098,-29.014369287062436,-28.983572092838585,-29.80969294346869,-30.549510409589857,-30.77742391685024,-30.563800502102822,-30.29574790550396,-29.98127070395276,-30.102130034007132,-30.947556698229164,-30.208170167636126,-29.357321687508374,-29.265229132026434,-28.630419412162155,-29.609132554847747,-29.548995329998434,-30.151391190011054,-29.89686254132539,-29.676390091888607,-28.88662462681532,-29.661494090221822,-30.11236733943224,-30.775559353176504,-30.39219955401495,-30.614928090013564,-29.976497925352305,-29.8124953340739,-29.263392272870988,-28.278585377149284,-27.970691910013556,-27.883323325775564,-28.490681171882898,-27.747213490772992,-26.818657304625958,-27.389149176422507,-27.901693397201598,-27.31985803041607,-27.9817066565156,-27.889962789602578,-27.291505318600684,-27.813596257008612,-28.20956619270146,-27.574486665427685,-28.539770817384124,-27.594538270961493,-27.71393276564777,-28.385052025318146,-28.934714948758483,-27.97650681855157,-28.841713650152087,-29.227053350303322,-30.103602555114776,-30.09266581805423,-29.89109527785331,-30.504157489631325,-30.97677944973111,-30.4101565242745,-30.53522729733959,-30.721639818046242,-31.243060739710927,-31.13355498947203,-31.601202285848558,-31.3206368656829,-30.445770264603198,-29.620216814801097,-28.652155784424394,-27.857921241316944,-27.889502298552543,-27.491818207781762,-28.3932169592008,-28.769725830759853,-28.406629625707865,-27.6831916840747,-28.53543353965506,-27.8049663961865,-27.6889009042643,-28.451855250634253,-28.983313591685146,-29.870148196350783,-29.31696938397363,-30.230516000650823,-29.27899944037199,-30.242291057948023,-31.23014651890844,-30.315978709142655,-29.344090272672474,-28.58135520014912,-29.016050037462264,-29.660202017519623,-29.33847332559526,-30.031931419856846,-29.288364592939615,-29.87194724753499,-30.593083736486733,-30.156121142674237,-29.163887943606824,-29.26148139918223,-30.000958683434874,-29.94657945074141,-30.364299401640892,-31.044704201631248,-31.768853785004467,-31.503516216296703,-31.807711619883776,-32.533740828279406,-32.28247361024842,-31.598056549672037,-31.247577634174377,-31.183364624157548,-30.20373924076557,-30.4644995033741,-31.147921110037714,-31.417876351624727,-31.803519427776337,-31.680726563557982,-30.742978379596025,-30.125268544536084,-30.74176303530112,-31.72525554196909,-31.95875003794208,-32.403893457725644,-32.46410323958844,-33.19010663079098,-32.27052979171276,-33.0426425030455,-32.12926371162757,-31.339708988554776,-32.26087939273566,-31.949969329871237,-32.93481375463307,-32.838260144460946,-33.37249592039734,-33.126038345042616,-33.73136650118977,-34.39545800164342,-35.0347043313086,-34.46331166429445,-35.446146621368825,-34.72583655547351,-34.26121643837541,-33.44949853094295,-33.705502431839705,-33.37062899908051,-34.19617996830493,-33.741988881491125,-33.03524777106941,-33.85468186251819,-34.478934234939516,-34.17492586188018,-34.691362525802106,-34.51046342588961,-35.179424283094704,-34.33949639741331,-34.31472041690722,-34.66628895653412,-35.211731675080955,-35.5270059723407,-35.667129174340516,-36.11026155715808,-36.04006027011201,-35.31696841586381,-36.087610428687185,-35.19689749227837,-35.218454386573285,-34.997169143520296,-35.50456188758835,-35.74183034431189,-35.35901584336534,-34.67378539452329,-34.663783117197454,-35.13063348503783,-34.49700440233573,-34.096509877126664,-34.579217911697924,-34.341459434479475,-33.97028892673552,-33.48963078390807,-33.23000731412321,-33.48968284856528,-33.49438871536404,-33.73058652179316,-34.2968692635186,-34.72749629197642,-34.11125883227214,-34.09395303344354,-33.4723267769441,-33.08400638913736,-34.0795031953603,-34.55197394499555,-35.15167785901576,-35.65976346982643,-35.82181721692905,-35.47728887060657,-35.56858258321881,-35.23402236727998,-34.400416838005185,-35.25907122902572,-35.58643310284242,-35.07182032056153,-34.19635492702946,-34.70372809236869,-33.96177411125973,-33.81418448314071,-32.98045150283724,-32.01737049780786,-31.369949582964182,-30.438938116189092,-31.012016887776554,-31.086276195012033,-30.2378333164379,-29.6288450518623,-29.468417089432478,-29.949234504252672,-29.264224567916244,-28.698312836699188,-28.718811846803874,-29.047163200564682,-28.26393940160051,-28.373658016324043,-27.762856284622103,-27.87579210102558,-28.348322578705847,-29.114183742552996,-28.671495055779815,-29.582865891046822,-30.243037153035402,-30.835638971999288,-30.322981658391654,-29.805775257758796,-29.40986796049401,-28.79341042228043,-29.117936462629586,-29.576182866934687,-30.45649750577286,-30.82494296459481,-30.62496217666194,-31.380336159374565,-30.52372397435829,-31.48078079568222,-30.97506991494447,-31.191712512169033,-31.996139655355364,-31.023852741345763,-30.780178675893694,-31.46543866628781,-30.966884821653366,-31.153041853103787,-30.25425667827949,-31.174817071761936,-30.596605284605175,-31.56849598744884,-31.88924714876339,-31.13949609687552,-30.14082937547937,-31.080169243272394,-31.411048077978194,-32.22489448497072,-32.47674606041983,-31.931332810316235,-32.13406657380983,-31.649853019043803,-32.16283795842901,-32.888707336969674,-33.60613988805562,-34.48158516502008,-35.16807328956202,-35.15648877574131,-35.6474645412527,-36.196552937384695,-35.43186111515388,-35.91021223273128,-36.67588640190661,-36.29308872483671,-36.473223170265555,-36.73007855378091,-37.556777954567224,-37.92449350329116,-37.11504972400144,-36.81980647984892,-37.600821680389345,-36.875212827231735,-37.85752086946741,-38.42132940236479,-38.50362463435158,-37.8048839638941,-37.055425845086575,-36.1079343338497,-36.621080689597875,-36.08124026283622,-35.187934269197285,-35.753023164346814,-36.48181559611112,-36.11071749776602,-36.430458032526076,-37.223978942260146,-37.26298032561317,-37.59572531748563,-37.39928526384756,-37.58488047262654,-38.286849504802376,-37.36335980705917,-36.67077326960862,-36.00508074229583,-36.774251927156,-35.99060623161495,-35.75287230266258,-35.66704296786338,-35.787854650989175,-35.76132084848359,-35.84980931598693,-35.024182468187064,-34.825683990027755,-34.111720812506974,-34.37477331329137,-33.728988342918456,-33.16918093757704,-32.43058831803501,-33.272219659760594,-32.46531738480553,-32.20303809968755,-32.21942226868123,-31.434287095908076,-31.780054269824177,-32.03603514889255,-32.80635359464213,-32.55316470935941,-32.164029638282955,-32.24602327356115,-32.69956630514935,-31.70055028097704,-30.75565997743979,-31.299151570070535,-32.203635247424245,-31.333581420592964,-31.743724316824228,-31.462113845627755,-30.568385577294976,-29.975057784002274,-30.468035503756255,-30.310894173104316,-31.153810454998165,-31.480434405151755,-30.586554615292698,-31.00685597443953,-30.652367148548365,-30.276918266434222,-29.946735209785402,-29.107313849497586,-29.802206492517143,-29.26396285695955,-29.87184209888801,-29.486371345818043,-29.532207250595093,-29.30755776213482,-28.80582352494821,-27.950860280543566,-27.50383155886084,-27.785481907892972,-28.100804190151393,-27.116870313417166,-27.921487904619426,-28.848037308547646,-28.09705802705139,-28.563757156953216,-27.78735241992399,-27.431608670856804,-28.026647029444575,-27.236557524185628,-26.964609111193568,-26.361747515387833,-26.37055604485795,-25.592801752500236,-25.346380008850247,-26.157568423543125,-26.277804647106677,-25.525474230293185,-25.085931004490703,-24.841391149908304,-23.948554175440222,-23.719908894971013,-24.10760495858267,-23.74082783423364,-23.585362027864903,-22.980808994267136,-22.9550301595591,-22.72528037801385,-22.862601389642805,-22.002602682914585,-21.951979878358543,-21.11368876695633,-22.063587464857846,-22.885571176651865,-23.186774670146406,-22.80286037363112,-23.240407021250576,-23.077753318939358,-22.838714113924652,-22.771990669425577,-22.118153498508036,-22.017421707045287,-22.157324553001672,-21.3756410186179,-21.63757659913972,-21.99643053719774,-22.09487425815314,-21.22008627280593,-20.628365190234035,-20.075463966000825,-20.913945271633565,-20.892093623057008,-21.21115772705525,-21.51952884392813,-20.72483405051753,-20.66175585053861,-21.369147487916052,-21.59999574860558,-21.838531993795186,-22.744377467781305,-22.34578180126846,-23.012901610229164,-23.131857235450298,-22.971153328195214,-22.8689982178621,-21.94904760690406,-21.881642583291978,-21.20514886872843,-21.08675024844706,-20.609674264211208,-21.25834439881146,-20.910033718217164,-21.216354881878942,-21.795881722588092,-21.459546441677958,-21.422580812126398,-20.721349676139653,-20.845973388757557,-20.949269842356443,-21.82742926897481,-21.4620102471672,-21.587207844480872,-20.988602985162288,-20.894670252222568,-20.591913394164294,-21.500064111314714,-21.24679924128577,-20.810599075630307,-20.3362715379335,-19.592090058140457,-18.79691515909508,-18.05823811981827,-18.94711804948747,-19.558379729278386,-20.214786629658192,-20.72651470405981,-20.045714410953224,-20.368049131706357,-19.870175027288496,-19.38782635796815,-19.603977107442915,-19.02348835906014,-19.755676082801074,-19.28834907663986,-20.024079131893814,-19.87655457481742,-19.796064546797425,-20.69696240592748,-21.289919686038047,-21.28433406352997,-21.072773721069098,-21.70871427236125,-20.772650960832834,-20.413328886963427,-21.07697422755882,-20.215645051561296,-20.592254782561213,-21.546604328323156,-21.008334785234183,-21.97202394902706,-21.48337678750977,-21.126864651683718,-20.952603003941476,-21.381284442264587,-20.501228229142725,-19.536406742874533,-20.52018582308665,-19.669267353136092,-19.8317813873291,-18.923002381809056,-18.339277214370668,-17.38968281354755,-17.545075461268425,-16.81574567127973,-17.729551585391164,-17.84053286863491,-18.828007818199694,-19.746874047908932,-19.80823936453089,-19.839215641841292,-20.080185155384243,-19.163360740523785,-18.30316023901105,-18.259194475132972,-18.439046029467136,-19.03573224740103,-19.763421109877527,-19.312964509706944,-19.267445041332394,-19.30506076803431,-18.506717988755554,-19.127125591039658,-18.29411717876792,-19.139186672866344,-19.794392827432603,-20.768444805871695,-20.268324684817344,-20.232088206335902,-20.90956782689318,-20.39734320063144,-20.601795920636505,-20.80643896292895,-20.784174151252955,-21.276718153152615,-21.02564103435725,-20.2343019368127,-19.23943381756544,-19.405166966374964,-20.356499309185892,-19.610123033169657,-20.29875997826457,-19.766686361748725,-20.656132967676967,-20.85695680556819,-21.543774568475783,-21.836303795687854,-20.862310732714832,-20.499677585437894,-20.684735159855336,-20.486663489136845,-21.475270975381136,-21.357824149541557,-22.03449105191976,-22.206165289506316,-22.068719442468137,-22.26502916123718,-22.932746498379856,-22.245340943802148,-22.33217203943059,-22.987782172393054,-23.755903932265937,-24.104535225313157,-23.86547606671229,-23.19067277573049,-22.316032020840794,-21.557685476262122,-21.490658261347562,-20.64561385475099,-20.012413368094712,-19.14911349164322,-19.10218189796433,-18.313267536461353,-18.10383055359125,-17.702715137973428,-18.688359852414578,-18.613952120300382,-17.9717474617064,-17.922041438519955,-18.14792994875461,-18.69460683967918,-18.30191867891699,-18.4952102471143,-19.18218892533332,-19.312262154184282,-18.714065845590085,-19.39327786117792,-19.80255721975118,-20.384702072944492,-20.987298988737166,-20.609161138068885,-21.151491292752326,-21.642963516525924,-22.612444552592933,-21.73721012659371,-21.31329741049558,-22.268845598213375,-22.567037202883512,-21.75809605559334,-22.662735332734883,-22.536234606988728,-22.144568881951272,-21.939671990461648,-21.221874992828816,-20.86645918013528,-21.141508916858584,-21.08058535074815,-21.462702667806298,-21.583528934046626,-21.160828637890518,-20.89094870025292,-20.11456598341465,-20.919777910690755,-21.43467613728717,-20.49777036951855,-20.721866759471595,-21.2488808571361,-21.867512819822878,-22.33667981205508,-21.358311355579644,-21.356341450475156,-22.01991674816236,-22.48626308189705,-23.425467488821596,-22.5025694812648,-22.04743258515373,-22.016125581227243,-21.62900860887021,-21.642371924128383,-21.850433515384793,-22.754808135330677,-22.05992730287835,-22.856287027243525,-22.327426716219634,-21.922898832708597,-22.178063719999045,-22.882853392045945,-22.11580995982513,-22.914990538265556,-23.713205844629556,-23.63288054894656,-24.604393331799656,-23.9706828314811,-23.312912177760154,-24.200536148622632,-23.991550758015364,-23.827183723449707,-24.658997337333858,-23.71839766204357,-24.642007171176374,-23.902718251105398,-24.432255789171904,-24.5990151129663,-23.61032461747527,-23.562310056295246,-23.723830414470285,-23.798646494280547,-23.792043250519782,-23.62512425146997,-23.956306621432304,-23.57401646161452,-24.10142710665241,-24.89340714458376,-24.520824836101383,-23.787277748342603,-23.11742826504633,-22.35388580802828,-22.28145534079522,-22.59617945132777,-23.02669083653018,-23.878524655476213,-24.20428631734103,-24.361169158946723,-24.271662538405508,-23.9452657494694,-23.47917531663552,-23.10280773881823,-22.903142581228167,-22.58170225378126,-22.76433650497347,-23.17193666519597,-23.74429471651092,-23.975935463327914,-24.53990477696061,-23.95565222017467,-23.593561673536897,-23.425369000062346,-24.416063342709094,-24.398020338267088,-23.73648353945464,-23.709976384881884,-23.94404635904357,-24.68371743382886,-24.86372578004375,-25.15460126521066,-25.052919406443834,-25.20357972709462,-25.510174507275224,-24.676341387443244,-25.431029545143247,-25.539183851331472,-26.489781917072833,-27.080189651809633,-27.904389096889645,-28.72144919540733,-28.940365267917514,-28.012201195117086,-27.69094011373818,-27.884612783789635,-28.61838998598978,-28.2445704578422,-28.438429306726903,-29.251898881979287,-28.34518218319863,-28.4808242903091,-28.00015945918858,-28.702703830320388,-28.59157919557765,-27.90362529689446,-27.252242994960397,-27.70581659534946,-26.886144431307912,-27.33015454467386,-27.415402550715953,-28.262465951498598,-27.900880170054734,-27.37615439016372,-28.341116031631827,-27.86336224153638,-27.947395981289446,-27.993166429456323,-28.116587492171675,-28.295284822117537,-28.30534195434302,-28.79357185261324,-29.67369628092274,-30.501045886892825,-31.286128277424723,-30.448402693495154,-29.99313364038244,-30.327163119334728,-30.32908161683008,-30.484590427484363,-30.818174147978425,-30.22614581603557,-30.350095727015287,-29.504995681811124,-29.976109276525676,-29.79029053961858,-29.088555788155645,-29.176790138706565,-30.161310673691332,-29.20902797067538,-29.977027929853648,-30.871363046579063,-31.740457641892135,-31.673844492528588,-30.683807844296098,-31.368609964847565,-31.930370199028403,-32.75090128509328,-32.17617015680298,-31.21972481487319,-30.504219989292324,-29.539233691524714,-28.708535708487034,-28.092005647253245,-29.01026781881228,-28.73106899112463,-28.455721536651254,-28.850254345219582,-27.910440701059997,-28.291166472248733,-29.264146155212075,-30.05297696730122,-30.86426183115691,-31.149641877040267,-30.605478663928807,-30.224745517596602,-30.153153104241937,-29.392527622636408,-30.32700123358518,-29.644276102539152,-29.712552486918867,-29.720960475038737,-30.1469093603082,-29.653670275583863,-29.89500322053209,-29.806849991437048,-30.421514119021595,-29.508426594082266,-29.71978224394843,-30.29777720523998,-30.653878069017082,-30.17426029127091,-31.11354819079861,-31.31874034134671,-31.907955519855022,-32.526936386246234,-32.44851956656203,-32.04593441076577,-31.15903057716787,-31.552802831400186,-30.761322936508805,-31.465336185414344,-32.022282724734396,-32.2947012106888,-32.489464117214084,-33.02784914569929,-33.17059039603919,-32.471594049595296,-32.005509193986654,-32.21280999109149,-31.42899896297604,-31.70983756845817,-32.50332412449643,-32.94001269945875,-33.79285900108516,-33.19306623702869,-34.07531732739881,-34.24410744663328,-33.380143525544554,-32.462180914822966,-32.0871007591486,-32.613570312038064,-32.12713958974928,-32.49832098931074,-32.47657064255327,-32.370633953716606,-32.16622259328142,-31.65583499893546,-31.003475555218756,-31.302913915831596,-31.86310078157112,-31.790149666834623,-31.257527594920248,-30.538226244971156,-30.59794998448342,-29.74679347174242,-30.31192205287516,-30.32526476494968,-29.857481335289776,-29.641628830693662,-29.179287115111947,-29.62130382284522,-30.468580804299563,-30.5160352839157,-29.826562239788473,-29.347548376768827,-29.463614399079233,-29.5282709072344,-28.624478651210666,-29.274857039563358,-28.71782782720402,-27.7805338059552,-28.021128405816853,-28.778907427098602,-29.457679287996143,-29.738192982506007,-29.081913178320974,-29.800963176880032,-30.322467289399356,-30.025478733237833,-29.195160748437047,-29.062232196331024,-28.979149523656815,-28.10539623722434,-28.1960454643704,-28.974729331675917,-28.38456538459286,-28.90054373582825,-28.567408283241093,-28.106414627749473,-27.64955838304013,-27.38707875786349,-26.97477809106931,-27.19317123061046,-27.263755176682025,-27.579602872021496,-26.58828149130568,-27.241765732876956,-27.077273508999497,-27.134816375095397,-27.39556041266769,-27.661119618918747,-26.90317160775885,-27.763188699260354,-28.314747129566967,-28.646228223573416,-28.95578853506595,-28.93873013323173,-28.58602515840903,-28.854435191955417,-29.2254185564816,-29.391597491223365,-29.699210742488503,-29.27954625757411,-29.21413492085412,-29.10304225375876,-28.23359607718885,-27.335111090447754,-27.666044058278203,-28.290129778906703,-28.94795766286552,-28.92025154037401,-29.439725302625448,-30.257635404355824,-30.661340335849673,-31.056959475390613,-31.636995946522802,-30.857163386885077,-29.891630597878247,-29.887671447824687,-30.141245294362307,-29.50584219675511,-30.484792870935053,-30.954936154186726,-31.932270457968116,-31.0818942040205,-32.023320485372096,-33.00692973891273,-32.796815004665405,-33.175017540343106,-32.505169421900064,-31.99715694785118,-32.719320377800614,-33.162329328246415,-33.78343571536243,-33.97228798689321,-33.63212844589725,-33.21287173544988,-32.89360980596393,-33.4050596896559,-34.249070990365,-35.08994009718299,-35.00843017967418,-34.062846085987985,-34.38332058861852,-35.24357075477019,-35.922286425717175,-36.87408064445481,-37.750630548689514,-37.68869874859229,-38.65571139194071,-38.49567504879087,-38.47128645516932,-39.35470195673406,-39.285892197396606,-40.17920449702069,-40.5163352554664,-40.19633717555553,-40.850119058042765,-41.16235983557999,-41.9922900358215,-42.612724765669554,-41.63244480267167,-40.90174491237849,-40.89116737199947,-40.98415180435404,-39.9991627112031,-40.804047336336225,-39.89081352716312,-40.770127141382545,-41.41914754267782,-41.21387998247519,-40.29746153531596,-40.52409020345658,-40.100880418904126,-39.481320870574564,-39.26539583085105,-38.748564125504345,-39.617020222358406,-40.33829124132171,-39.68918864522129,-39.59552199579775,-40.571185095235705,-40.232223419006914,-39.90037648798898,-39.656755331438035,-40.62986696045846,-40.68511102627963,-39.83920195931569,-39.984741860069335,-39.13630928378552,-39.082596252672374,-38.08672368200496,-38.337777661625296,-37.40669315028936,-37.49816001811996,-36.92860892228782,-36.6205833745189,-37.51201763236895,-36.95353139936924,-36.957510670181364,-36.94593079062179,-37.14820495899767,-37.173244217876345,-36.6403306950815,-37.41400632588193,-37.304496427532285,-37.104834873229265,-37.07131864177063,-36.84244479611516,-36.59166124695912,-37.265376346651465,-37.236652148887515,-38.15125064691529,-37.42362435301766,-37.952379973605275,-37.83447735523805,-38.65659641753882,-37.71888327598572,-36.87928920937702,-37.361281536053866,-36.84331641020253,-36.85631450265646,-36.11534441774711,-35.358384805265814,-36.19838885497302,-35.4171177460812,-36.334427553694695,-36.85253088828176,-35.90264878887683,-36.50122863193974,-37.11737203085795,-36.63264335040003,-37.47334000095725,-37.675128512084484,-38.155301509890705,-37.43962595006451,-37.916477892082185,-38.88254803838208,-38.69933039229363,-39.07595149986446,-39.8679911326617,-40.16639887075871,-41.0395326949656,-41.32358859991655,-40.95399749837816,-41.52088712994009,-41.88795215683058,-42.79305926291272,-42.2472393582575,-41.82208294747397,-41.43672177521512,-41.20046989573166,-41.1328149153851,-40.67423464683816,-41.5619976175949,-40.996358492877334,-41.263830677140504,-42.204219409730285,-41.735134430229664,-41.653841802850366,-40.86753743607551,-40.63998849550262,-41.12021466111764,-41.092914055567235,-40.944864814169705,-41.084740264341235,-40.828883334528655,-40.628745686262846,-41.039033016655594,-40.49472244037315,-41.43720632651821,-42.03191069001332,-42.215923823881894,-41.90943005029112,-42.065063040703535,-42.133470149710774,-42.35164741659537,-43.102793040685356,-43.35431251022965,-42.40627790335566,-42.832888207864016,-43.77047665650025,-44.64221473271027,-45.54530088137835,-45.42493935814127,-45.403044265229255,-45.815549759194255,-46.38260583765805,-45.42600742634386,-46.19302341155708,-46.29327929625288,-45.56523404829204,-45.02771143009886,-45.80106823379174,-46.04794954089448,-45.404441559221596,-45.124110682401806,-45.53787918807939,-46.49743447126821,-47.33731019170955,-47.613103243056685,-46.873355528805405,-47.67026938032359,-47.92435299791396,-47.26495999097824,-47.900646509137005,-48.28102996153757,-48.99176133191213,-49.40348317846656,-49.56215681973845,-49.562069786246866,-49.098778455052525,-48.926020787097514,-48.921081888489425,-49.79178403830156,-49.79678112640977,-50.0794308562763,-50.874116180464625,-51.86221716972068,-52.83410778734833,-52.23825166281313,-52.0541490833275,-52.85167931672186,-53.11057859798893,-52.91169440513477,-52.5365728312172,-52.49452687660232,-51.686546265147626,-51.79667732026428,-51.19027876248583,-51.23956381622702,-51.54180363519117,-51.93520918907598,-52.434579183813184,-52.659949723631144,-52.571211350150406,-53.539910258725286,-53.271879084873945,-53.89375531766564,-53.99304607929662,-54.31637097429484,-54.45054673124105,-54.27111753029749,-54.30749245360494,-54.015339645091444,-53.09118546359241,-52.336696427781135,-51.692879281938076,-52.66852794075385,-53.250291475560516,-53.039493640419096,-53.62898635445163,-53.12856064038351,-52.180187687743455,-52.04905488016084,-52.26922059059143,-51.9556589233689,-51.24675924098119,-51.73917273012921,-51.56931531056762,-51.12021568976343,-50.755788723006845,-50.8647302063182,-50.305864464491606,-50.761185847688466,-51.44272575434297,-51.82476286124438,-51.8671277211979,-51.63132627075538,-52.13064067112282,-52.72907734895125,-53.67900776211172,-53.39206858398393,-53.02383685531095,-53.368607975076884,-53.02799551747739,-53.01783829415217,-53.60637076664716,-53.302384743932635,-53.18350660800934,-54.07546092616394,-54.477253505028784,-53.7129114815034,-53.52871567104012,-53.540041278116405,-54.45958409272134,-53.67059916537255,-54.44663702370599,-55.20075525343418,-55.61877270182595,-55.432611546013504,-55.54069685051218,-54.88848879048601,-55.25454622460529,-55.50963596999645,-54.62791289621964,-54.22297208150849,-53.65060756215826,-53.34436460584402,-54.189092417713255,-53.79474453628063,-53.76825141068548,-53.250549372285604,-53.50812845816836,-53.119684546254575,-53.51456434465945,-53.03724855650216,-52.7074106130749,-53.59903311915696,-52.89623985439539,-52.835036939010024,-51.99651247030124,-51.47075469279662,-52.419672552496195,-52.3914457350038,-53.12358180154115,-52.27469337824732,-52.647335700690746,-52.82645574957132,-52.09938018443063,-51.13633925374597,-51.93409842438996,-52.000512588303536,-51.58685180870816,-51.48472665948793,-51.476211979053915,-51.35035413270816,-51.09578207554296,-51.576127925887704,-51.768323017749935,-52.09538747789338,-53.018715722020715,-52.231014544609934,-52.41349118063226,-52.916366156190634,-52.98920064140111,-53.37893955409527,-52.405858045909554,-52.48498341580853,-53.05901424214244,-52.27458072314039,-52.47427736688405,-52.36697106203064,-53.036966955754906,-53.60009780852124,-52.8040514588356,-53.20587888127193,-53.74221059959382,-53.699373859446496,-53.95544388750568,-54.51535562193021,-54.02881607692689,-55.02263694535941,-55.63173460122198,-54.93343473877758,-55.308909237384796,-55.74722759332508,-55.82385029224679,-55.73905966291204,-56.27249740669504,-55.89446726348251,-55.65552477259189,-55.03528466448188,-55.22803561529145,-55.66109825856984,-55.57920603547245,-55.888816066551954,-55.29572275001556,-54.82874573767185,-53.990208053030074,-54.64477425022051,-54.717774962540716,-54.84889036696404,-55.61042558634654,-54.931645101867616,-55.87592624500394,-56.253689928911626,-55.520225800573826,-55.40597712341696,-56.14929670514539,-56.43274210160598,-55.96824300196022,-55.231421266216785,-55.13863817602396,-54.21105171367526,-54.02712969761342,-54.17535814270377,-53.762251201085746,-54.534110421314836,-54.79166295193136,-54.04966902406886,-54.66670404095203,-53.795588499866426,-54.12815886316821,-54.40805091848597,-53.64819361688569,-53.30003816029057,-53.621572519186884,-53.15991070307791,-53.743519694078714,-54.11316744796932,-53.704282126389444,-53.57250271970406,-52.92780357832089,-52.042496962007135,-52.796038777101785,-52.042415799573064,-51.868910604156554,-52.30580669734627,-52.9816121077165,-53.278377218171954,-54.0217467751354,-53.61705881776288,-53.23849566048011,-52.82353202672675,-53.08454916672781,-52.356157183181494,-52.78982031065971,-53.401053563226014,-53.01543928589672,-53.630655529908836,-53.05649966467172,-52.41166503727436,-51.710730619262904,-51.91197527945042,-51.57482375530526,-51.06004058942199,-50.57939634565264,-51.54232377419248,-50.90435940120369,-51.88121857168153,-52.088307215832174,-52.54877957003191,-52.63854311220348,-52.60270116943866,-51.932874449528754,-52.5415036957711,-52.193929340690374,-51.961609605234116,-51.80741492798552,-52.63430941803381,-52.33282098500058,-51.51811907393858,-50.84032847546041,-50.78261989913881,-51.5033955257386,-51.72719030221924,-51.039969723671675,-51.07687278650701,-50.87513536773622,-51.494473659433424,-52.45562391495332,-51.94522474845871,-52.25486789224669,-52.48478433350101,-52.09760867012665,-51.169541949406266,-50.58274211967364,-50.81093800533563,-50.91898167366162,-50.95245980331674,-51.61535984976217,-52.399269540794194,-52.27380335982889,-52.05451428471133,-52.96664013899863,-52.51727894600481,-52.279210907872766,-53.15929140802473,-53.521681708749384,-54.44528179196641,-55.22187267430127,-55.53479917300865,-56.22652650019154,-56.43497950118035,-55.71211533760652,-55.59713006345555,-56.29559503123164,-56.53258613590151,-56.05254668742418,-56.626525457948446,-56.01702221063897,-57.00699910055846,-56.32566638337448,-57.104516895953566,-57.43589887255803,-57.16841433942318,-56.56465635960922,-55.88891677092761,-55.857165987137705,-56.345842904411256,-55.40902653289959,-55.04672362096608,-54.86773040285334,-54.76235515996814,-54.063302320893854,-54.176201646681875,-54.936325607821345,-55.23458732338622,-54.949003658257425,-54.59774188371375,-53.9927923954092,-54.562207023147494,-53.80570184905082,-53.206933652516454,-52.32660968741402,-53.04318434884772,-53.44864637264982,-53.126417501829565,-53.49886654736474,-53.46385129261762,-52.648419237695634,-52.54670878499746,-51.79246710753068,-52.102501259185374,-52.4039281886071,-52.26874491805211,-53.107630867511034,-52.80870005208999,-53.312526213470846,-52.933615983463824,-52.128952104598284,-51.34800011385232,-50.82032897416502,-49.9060198450461,-49.60584999062121,-50.03277791151777,-50.06652240268886,-50.30909741902724,-51.28102627815679,-50.56239086249843,-51.02708435570821,-51.94652046635747,-52.542022712528706,-52.39157849596813,-52.338313134387136,-51.737067341804504,-52.265168107580394,-52.59623113181442,-52.741463887970895,-51.75160195492208,-52.7106868266128,-52.528420051559806,-52.1541221793741,-51.21555003290996,-50.374667442869395,-51.26112711755559,-51.55320645356551,-50.72125638509169,-50.78778038593009,-51.38821594323963,-51.37552242446691,-50.99942901544273,-50.85069743543863,-51.1524909469299,-51.85086453286931,-51.39463720237836,-50.516660132911056,-50.278165800496936,-50.717377794440836,-50.2393798888661,-49.37056247564033,-48.40733627555892,-48.06238249922171,-48.10950662381947,-48.39941338310018,-48.37533697858453,-47.90993532491848,-47.81642451044172,-47.11402792157605,-47.19474449381232,-48.095734886825085,-48.27549946075305,-48.218288250267506,-47.973992199171335,-48.94850569078699,-49.75772462878376,-49.15294388495386,-48.97548813605681,-48.42537700617686,-47.57956633949652,-48.34826172236353,-47.95902464026585,-47.155230045784265,-47.38565870327875,-46.910049580037594,-47.558950792998075,-48.380840010009706,-47.99697543680668,-48.49209918593988,-47.964069235138595,-48.300152002833784,-47.565011967904866,-47.37439220910892,-47.687345780897886,-48.06867656763643,-47.659012076910585,-47.424056625925004,-47.15422202972695,-47.029390398878604,-46.096714129671454,-46.07365755131468,-45.151753114536405,-45.0858310572803,-45.86058993032202,-45.64868998574093,-44.66055710334331,-44.57987693278119,-45.003575020004064,-45.39598223613575,-45.57241561776027,-44.683956175576895,-45.57317546615377,-46.548941833898425,-45.65173430601135,-45.31041342020035,-45.320656650699675,-46.3051147563383,-46.98180131055415,-47.66239262651652,-47.192437294404954,-46.22592154704034,-46.23856792226434,-47.01429332466796,-47.41998788015917,-48.02773154480383,-47.879757148213685,-48.16665835492313,-48.14206432225183,-49.102877791039646,-48.538745265919715,-48.62773700756952,-49.55811107438058,-50.5105581022799,-51.48276258492842,-52.31249136198312,-51.59072503168136,-51.94355753110722,-51.51016331417486,-51.21658100746572,-51.510309415869415,-51.085610487964004,-51.21795652061701,-51.93994810851291,-52.51103909732774,-53.25976117327809,-53.475403911899775,-53.625613851007074,-53.9165213573724,-54.46289794333279,-53.91057850327343,-53.226527699735016,-53.864327408373356,-53.01890899753198,-52.69228366622701,-53.24115463392809,-52.93565322179347,-53.31148740835488,-53.97547507332638,-54.12722426140681,-53.395013687666506,-52.886088786646724,-53.704423752147704,-53.32354637654498,-52.651636604685336,-52.291187475435436,-52.491546623408794,-51.746938361786306,-52.59089027624577,-53.14147522719577,-54.120632571633905,-53.94419019622728,-53.093391014263034,-52.94466765318066,-53.889678492210805,-53.95857706665993,-53.42915602168068,-54.20878847828135,-53.952079474925995,-54.46869890997186,-55.08607099670917,-55.07688788510859,-55.76438477775082,-56.37227245606482,-56.792238623835146,-55.949487099424005,-55.27956562349573,-56.26258640643209,-56.678491982631385,-56.791453504469246,-57.38373716361821,-57.79592886008322,-57.439606410916895,-58.13373137777671,-57.469815474469215,-58.01628544135019,-57.158262505196035,-57.74722662335262,-56.98726276215166,-57.04556007543579,-57.21176303224638,-57.645088306162506,-58.116532027255744,-58.00680517498404,-57.71328011434525,-57.53625998971984,-57.16765295853838,-57.632000780664384,-56.81400057906285,-57.46690198034048,-58.200160848908126,-59.001735262107104,-59.25346819590777,-58.31402097735554,-58.70211774809286,-58.92811043933034,-58.70973699958995,-57.963337026536465,-58.50829148525372,-58.58664490003139,-58.109382594469935,-58.70590761164203,-58.59340178826824,-58.24435413768515,-57.6861938056536,-58.44814843451604,-57.69828101294115,-57.76819985220209,-57.32447152445093,-56.56712935026735,-56.34097287990153,-55.83334306674078,-56.83333262987435,-56.001928033772856,-56.924870582763106,-56.33552594901994,-56.76400927640498,-56.64571201475337,-57.20763520011678,-57.2678191983141,-57.018042566720396,-56.94999898085371,-56.805347584653646,-56.789053946733475,-57.41144444420934,-58.05103207239881,-58.82365416921675,-58.08946648379788,-58.16072922712192,-57.66526996809989,-57.10720075899735,-57.98390779597685,-58.222986155189574,-57.83646357106045,-57.866401597391814,-57.664475763216615,-58.57079052506015,-58.57376268878579,-58.72083927644417,-58.71369707444683,-59.18040641909465,-59.443839685991406,-58.84712407924235,-58.4692882806994,-57.86247331928462,-58.190471443813294,-59.07870268030092,-58.44616096513346,-58.76322043314576,-58.36412666272372,-57.597894644830376,-57.08201932674274,-57.42743830382824,-57.20814890880138,-57.60731075378135,-57.791373687796295,-57.63744826102629,-56.705765190534294,-55.7145074242726,-54.78027174342424,-53.85661511030048,-53.515104761347175,-54.08245796896517,-54.254103118088096,-53.304482924286276,-53.44261347968131,-52.677875163499266,-51.97977198287845,-52.08097875723615,-51.50967776263133,-50.92185753071681,-51.38830744987354,-51.927645709365606,-51.635867855511606,-52.21546777756885,-51.2582279779017,-50.53673968510702,-50.687888662330806,-50.58770027663559,-50.861498205922544,-50.718522819690406,-50.71783894440159,-51.46760867536068,-51.18571188300848,-52.17415483063087,-52.98145293816924,-53.96478060586378,-53.361838256474584,-53.06671510776505,-53.379703188780695,-52.90132664190605,-52.34765030350536,-51.7063314425759,-50.94082968682051,-51.39998251479119,-51.56925259716809,-52.47426310554147,-53.060273714363575,-53.22989917220548,-52.88622206868604,-52.809124142397195,-52.39770392421633,-51.53093286603689,-50.97138312552124,-51.854670508764684,-52.37368718208745,-53.3187988162972,-54.284423595294356,-54.48557586083189,-55.39813314797357,-56.213211954105645,-56.55887954682112,-56.139560303650796,-56.73992505669594,-57.64490336831659,-57.32107352046296,-56.992548984475434,-57.13339402759448,-58.091948851943016,-57.99069623928517,-57.86937105609104,-58.594154299702495,-58.21181338140741,-57.50626166071743,-57.20739553356543,-58.11510512791574,-57.418206934351474,-57.25506115332246,-57.70143541600555,-57.37606046721339,-57.71803094120696,-58.42614871589467,-57.71158636594191,-57.56984424823895,-56.72749646380544,-56.15622155647725,-55.391927210148424,-55.411035364028066,-54.46978535829112,-55.38005882035941,-55.90141945052892,-56.41854083864018,-55.73213159199804,-55.4659187970683,-55.41030335286632,-54.8359654052183,-55.018632281105965,-55.506230199709535,-54.823888453654945,-54.422264222986996,-54.7447493695654,-53.944087989162654,-54.26487138029188,-54.2802014821209,-54.67672904441133,-54.25431417487562,-53.33190280199051,-54.20292421244085,-54.10323335370049,-54.55471293441951,-54.852389932610095,-54.28530845604837,-53.67324141552672,-53.093540052417666,-52.208095888607204,-53.10708925779909,-52.596311705652624,-51.84649011678994,-51.41311785299331,-50.64582426706329,-51.063325033988804,-50.86056975321844,-50.494171677622944,-49.56826007505879,-50.40553029300645,-49.458864574320614,-49.50597556773573,-49.00517682498321,-48.99891242291778,-48.92851252760738,-48.956692094914615,-48.797503530513495,-47.826635928824544,-47.764918718487024,-48.14882228104398,-49.079348201397806,-48.92781281191856,-47.990424904972315,-48.32730122376233,-49.309979047160596,-49.69774871459231,-50.67650333838537,-50.225565179716796,-50.52216972829774,-51.23099508835003,-51.84538723016158,-52.44389374367893,-52.008510519750416,-52.575287089683115,-53.462952251546085,-52.68456293735653,-53.133759905118495,-53.417334793135524,-52.91086951410398,-52.566059520002455,-52.66694648284465,-53.02765342593193,-52.51371913449839,-51.897788144182414,-52.720242373179644,-52.966978922020644,-53.15039132256061,-53.70336467307061,-53.32253491319716,-53.957932989578694,-53.12775599770248,-52.45895407535136,-52.852715983986855,-53.33643702417612,-53.25273068016395,-54.18463608901948,-54.27454732218757,-54.41444768477231,-54.43965856451541,-54.55634140083566,-55.01066267117858,-54.32706245966256,-54.4115340472199,-53.603123385924846,-53.03114131418988,-52.04788016108796,-52.677768893539906,-52.102784083690494,-51.190735197626054,-50.55784867005423,-50.93698143167421,-50.89002317562699,-50.43814695579931,-49.542127759195864,-50.030919555108994,-50.11090236250311,-49.16439752280712,-49.04766702186316,-48.53995886258781,-49.318039977923036,-48.3740909723565,-49.05068255821243,-48.8808928001672,-49.56057206168771,-49.737805294338614,-49.46129716699943,-49.83602700661868,-50.3225434650667,-49.36632412811741,-50.281466234941036,-49.478568967897445,-50.12247117003426,-49.15658508008346,-48.1716563552618,-48.64372832886875,-48.56843943474814,-48.126147067174315,-48.0017991354689,-47.200299363583326,-46.90338257467374,-46.91927041998133,-47.4840940143913,-47.8382201208733,-47.541458553634584,-46.913464786019176,-47.71041815681383,-47.74435496004298,-47.448634104803205,-47.3858405505307,-47.40428185882047,-46.70145515911281,-46.23547949548811,-45.499896119814366,-44.5838214145042,-45.043582126963884,-45.54664158076048,-45.02311671990901,-44.781722540967166,-45.661243645474315,-46.306599657051265,-45.503584179561585,-44.60045893723145,-44.595515940804034,-45.219082850031555,-45.108379412442446,-46.10744090517983,-45.496691156644374,-46.21207620110363,-45.31477280147374,-45.256799787282944,-45.85491123236716,-45.20469789719209,-45.89476367086172,-46.87638966739178,-47.06485471315682,-47.27546219620854,-47.03095849044621,-47.38255193270743,-47.55690581165254,-47.805044481065124,-47.7662553275004,-48.204575130250305,-47.225431841332465,-46.93961750715971,-46.62598817748949,-45.65844274684787,-45.97352514183149,-46.5163915194571,-47.31340227276087,-47.30433913460001,-47.60494639631361,-47.27936749532819,-48.12993164360523,-48.76217147894204,-48.209767560474575,-47.46440258156508,-48.39247019961476,-48.49229391524568,-48.987565664574504,-49.75128871342167,-49.170657880138606,-49.26751288911328,-49.53885233076289,-50.26867038337514,-50.693831040058285,-50.13134329719469,-50.65912415692583,-51.34908798802644,-51.92445890232921,-52.555789983365685,-53.44292958639562,-53.62888389732689,-53.033217444084585,-52.5180632150732,-52.510015967302024,-53.462335374206305,-53.8022944512777,-52.9718244378455,-52.39364268956706,-52.836122593376786,-52.63478682935238,-53.30146813439205,-53.38329238118604,-53.105100167449564,-53.753303423989564,-54.73014377756044,-55.36398872360587,-55.251445438247174,-54.966055577620864,-55.11119403503835,-55.91452735476196,-56.88519527250901,-56.3435219717212,-55.612634813878685,-55.304167471360415,-55.23494146205485,-56.07313267420977,-55.76034448714927,-56.22748836968094,-56.43242780212313,-55.6777611784637,-55.77994459634647,-55.23174485005438,-54.958909150213,-54.54372529499233,-54.057717558927834,-54.10609533125535,-53.74495296739042,-53.00481083616614,-52.04846741538495,-52.399456553626806,-52.68797558173537,-53.54451278457418,-53.24456010852009,-53.57617824617773,-52.893687847070396,-52.44840801693499,-52.14421865809709,-51.321119060739875,-51.370111553464085,-51.790617868769914,-52.751776828896254,-52.308152929414064,-51.473417738918215,-50.58164785709232,-51.509522112086415,-50.91700022760779,-50.214679293334484,-50.765465752687305,-50.659307822119445,-51.27098137605935,-51.68365740450099,-52.589652155991644,-52.176271214615554,-51.940058273263276,-52.19536646688357,-52.87622124515474,-52.04857672518119,-52.29917787434533,-52.56072556134313,-52.44384446693584,-51.90704394783825,-51.831659727264196,-52.09878890682012,-52.58589723147452,-52.33726100996137,-51.63661524327472,-51.16863091662526,-50.33240979909897,-49.82329427776858,-50.132577056996524,-51.027695204131305,-51.06998319597915,-51.215161287691444,-50.500061655882746,-51.07506890501827,-51.70205106213689,-51.923621580936015,-51.54541333485395,-50.67073309794068,-50.636087311431766,-51.17303367331624,-51.90334096737206,-51.37241312628612,-51.43712091818452,-51.26237857202068,-50.8540301672183,-50.00730812549591,-50.02968135615811,-50.812543956097215,-49.98212397703901,-50.58458052948117,-49.98854835750535,-49.984731181990355,-50.25003308756277,-50.102594073396176,-50.27650718856603,-50.39350782521069,-51.345971427392215,-50.68417260190472,-51.38744519930333,-50.96663635177538,-50.434342654421926,-51.079628551378846,-50.64046158036217,-50.08033950487152,-50.941542516928166,-51.712448936421424,-50.94436373747885,-50.655293318443,-51.121279700659215,-51.44821240613237,-51.67507291259244,-52.07767065986991,-52.28466456523165,-51.59651213698089,-52.40971262380481,-52.48921037744731,-52.394963221624494,-53.0922269965522,-53.49573467997834,-54.42584226792678,-54.90047710714862,-55.300110132899135,-55.95609026448801,-56.45583022758365,-56.875314340461046,-56.78126085130498,-56.700683208648115,-57.379017234779894,-57.38589838799089,-57.86917621921748,-58.73957890830934,-59.40512413950637,-60.044724269770086,-59.8789827786386,-60.52640515565872,-60.15744149731472,-60.21750319190323,-60.35587941017002,-59.739009249955416,-60.270648068748415,-59.525285149458796,-58.664349779486656,-58.37907086033374,-57.99674214888364,-57.416316146962345,-58.391740954481065,-57.74234425416216,-58.44074826594442,-58.93895832449198,-58.626937138382345,-58.198913945350796,-57.37276390520856,-57.51382363354787,-58.117101463489234,-58.72123334789649,-59.56690307287499,-59.907785227987915,-60.875750405248255,-61.68135334458202,-61.61384168546647,-61.455536644905806,-61.687693307641894,-62.60252711037174,-63.136250406038016,-63.31027458142489,-62.80100922845304,-63.755965061020106,-63.53256915509701,-63.16903997771442,-62.585665630642325,-62.91549476562068,-62.67908885003999,-63.070523906033486,-63.68712525162846,-63.54217316117138,-63.54847818752751,-63.97513379016891,-63.24725983617827,-63.10407913476229,-63.288510754238814,-63.48400347074494,-63.96577129792422,-64.9369467003271,-64.68174991942942,-64.2295223902911,-64.99166025454178,-65.02259383909404,-64.56977020949125,-64.54377181688324,-64.71068893093616,-64.02613452961668,-63.27955410908908,-64.16966612869874,-64.17229574779049,-64.85502622555941,-65.66108193155378,-65.47460892051458,-64.76523255882785,-65.609101254493,-65.68090948695317,-64.89856366952881,-65.53761804802343,-65.91269179666415,-66.62216001888737,-66.28082179138437,-66.28933764714748,-66.77342924661934,-67.66752795130014,-68.05700172390789,-68.35675133485347,-67.92512407293543,-67.26330015715212,-66.36214985139668,-65.41430940805003,-65.46503151627257,-64.57759331725538,-64.63214771775529,-64.11585716344416,-63.236081399954855,-62.91134970122948,-63.134527132380754,-63.66157234692946,-64.28334515402094,-64.64295551925898,-65.09357456723228,-64.23389933397993,-64.2255173730664,-63.660999117884785,-62.98895335709676,-63.4860970294103,-63.32511020638049,-63.102199538145214,-62.86400659196079,-63.59496640507132,-63.07527723163366,-63.01264559291303,-62.60480108112097,-63.438489763531834,-62.766273067798465,-63.41214504605159,-63.90392352081835,-64.56784772407264,-64.90301261143759,-64.74991243937984,-64.82950874045491,-65.19089824007824,-65.72565159806982,-66.01591375935823,-66.23002250725403,-66.92248913785443,-66.0081365709193,-66.91865782020614,-66.25964514445513,-66.47971499105915,-67.28406226309016,-66.53232701122761,-66.61809124657884,-66.68336089001969,-66.34092841437086,-65.63225568737835,-64.9630186879076,-65.71043082512915,-65.4020643546246,-65.8836027616635,-65.0472702132538,-65.45882905600592,-64.78050542809069,-65.53214140655473,-64.89375218283385,-65.34345949348062,-65.68019421864301,-66.0808233176358,-65.59731162246317,-66.17135587707162,-65.44130086433142,-64.66721851937473,-64.91039248090237,-64.43129112478346,-64.96947182388976,-65.73856118926778,-65.10866646375507,-65.48079422069713,-64.98870355030522,-65.66028490755707,-64.71913498919457,-65.71182190114632,-65.5883017051965,-64.7348030502908,-65.08230800693855,-64.42255467968062,-65.14520621020347,-65.39810990775004,-65.33885870501399,-65.28605405520648,-64.99282490555197,-64.78433738835156,-64.9717403082177,-65.88860853062943,-66.45054528024048,-66.94954641023651,-67.14287153957412,-66.21918408386409,-67.20120227430016,-68.0288479719311,-68.24323224835098,-68.7532958202064,-68.65234749438241,-67.8109457148239,-68.63674778398126,-68.92987408256158,-68.09147419082001,-68.59617363521829,-69.26096469908953,-68.84859557310119,-68.79430099017918,-68.99923164211214,-68.35507584596053,-69.18169380631298,-68.92027937574312,-67.95044197002426,-67.464020781219,-68.12706709979102,-68.19244495080784,-68.12788055930287,-67.38614348461851,-67.95226353639737,-67.60814162436873,-67.83251061430201,-67.811064616777,-68.75352939171717,-69.53879624931142,-69.1920425137505,-68.73576438846067,-68.97205118788406,-69.91508704330772,-69.36903561279178,-69.04031341569498,-69.67594485264271,-70.12880762852728,-69.53701428836212,-68.71155275264755,-68.04159421520308,-67.45010826736689,-67.60290891863406,-66.69159481208771,-66.66135582327843,-67.56261468864977,-66.88456663955003,-66.09598038578406,-65.4708182993345,-66.11624649027362,-65.16436265455559,-66.14336616545916,-66.70392577908933,-67.19687130395323,-66.52296417485923,-66.91605448862538,-67.2702277614735,-67.16128274193034,-66.37142169848084,-65.53973403712735,-64.83669459680095,-64.63061146484688,-65.46025694627315,-65.67370378598571,-65.97399994824082,-65.7407195949927,-65.8309209276922,-65.4367331508547,-65.22551841801032,-64.5314141754061,-65.33839164767414,-65.22566874045879,-65.77280437806621,-66.70703741814941,-67.27971933875233,-66.4313941099681,-65.78270958177745,-65.50712557788938,-65.17305058334023,-64.4683658410795,-64.71367347287014,-64.94398649735376,-64.76840190403163,-64.88638016488403,-64.86389687145129,-64.9745754734613,-65.35444707795978,-64.95697115827352,-64.99545557657257,-65.97166327014565,-66.85240749176592,-66.03057721583173,-66.62262107757851,-66.44073619414121,-67.26298031629995,-67.56534982658923,-67.97181762568653,-67.47112096613273,-67.5690321335569,-67.2654710514471,-66.96085619786754,-66.00967594515532,-66.32409937214106,-65.448145581875,-66.25882941810414,-65.94364692270756,-66.52599787106737,-65.75666098063812,-65.81975389271975,-65.86644516326487,-65.98909738333896,-66.89148016087711,-66.50357477692887,-66.99667401285842,-66.23262431146577,-66.77380769047886,-66.2219010759145,-66.19990959065035,-65.71538239717484,-66.0153274605982,-66.46305183554068,-66.51461688661948,-65.97798768104985,-64.98551933886483,-64.20180241018534,-63.22418732242659,-63.04554868210107,-62.85896681062877,-62.366740418132395,-62.979636437259614,-63.14100588578731,-63.131741052959114,-62.97061055107042,-63.04685231577605,-62.91708250204101,-63.913008387200534,-63.630056938156486,-63.21292431559414,-62.22228748584166,-62.56704847654328,-62.06497875833884,-61.93793714977801,-62.2160963229835,-62.72561074886471,-61.83510415581986,-61.28020180622116,-61.431501258630306,-62.331129170022905,-63.08331270236522,-64.06116984132677,-63.574897463899106,-62.7917293519713,-62.045409112237394,-61.343447572086006,-62.07824909873307,-61.56990953581408,-60.996294473763555,-60.40891536232084,-60.85826866328716,-60.48202867619693,-60.23973352229223,-61.164580860640854,-61.80110672675073,-62.763550023082644,-62.836697498802096,-62.71689977264032,-63.622122642118484,-64.37526312237605,-64.44756977818906,-64.98636436508968,-65.37560038128868,-64.55681152269244,-65.17472643917426,-64.81031500734389,-64.95857575396076,-65.18474550778046,-65.01803629240021,-64.75438011763617,-64.27001188369468,-64.7877513631247,-65.4286295925267,-65.75192093802616,-65.5045570190996,-65.4431852386333,-64.5806021890603,-63.645147839561105,-64.43344616144896,-64.99334538448602,-65.67625400517136,-66.60519083729014,-66.81402296107262,-67.34208030579612,-68.1395725584589,-67.75229092221707,-67.64173511276022,-66.66996874287724,-67.06324341893196,-68.0561619172804,-68.54825760610402,-69.43141176179051,-68.61159684183076,-68.04268493922427,-68.6738114785403,-68.51007243944332,-67.63929387601092,-66.71499407896772,-67.51960564637557,-66.673104878515,-65.88775403099135,-65.97480484563857,-66.95985412830487,-67.35005581285805,-67.92021678108722,-68.64957986027002,-69.64028800325468,-69.85538937710226,-70.52313919877633,-70.0094278762117,-70.88616998400539,-70.92974067898467,-70.42520526750013,-70.40522638848051,-69.52280895411968,-69.54954010108486,-68.65967952879146,-68.77772736083716,-69.64305323502049,-69.82273682160303,-69.96035305131227,-70.799290004652,-71.14442559937015,-72.08247538749129,-71.55414984654635,-71.48873583972454,-72.43798385141417,-72.85831624129787,-73.44490837678313,-73.30399674735963,-72.78196181310341,-72.12718183919787,-71.68649499909952,-71.19980309996754,-71.7575754262507,-71.05388189852238,-70.3259687544778,-70.40131422970444,-69.45382002973929,-70.41319892462343,-69.53749269247055,-70.08143392391503,-69.44633365795016,-69.07471542758867,-69.05701467720792,-69.84924707189202,-70.24922382785007,-71.185151160229,-71.91572578251362,-72.32293156487867,-71.89578893128783,-72.1010335823521,-72.20872023096308,-72.92109295818955,-73.4355308120139,-72.67833100166172,-72.26150291599333,-72.96706159692258,-73.34555553318933,-73.98775540525094,-73.1972287343815,-73.69009448541328,-73.95439048251137,-73.50945559237152,-74.423893423751,-74.160087345168,-74.12419951474294,-74.29747138777748,-74.43764629215002,-73.99536530673504,-73.85592883266509,-73.0232524164021,-73.68204698059708,-72.76145229814574,-72.64636505069211,-72.24938133591786,-72.5733041241765,-73.50147983105853,-73.14176673488691,-72.56064767949283,-71.86615621903911,-71.41428691660985,-72.40930179925635,-72.94616287061945,-73.64964455645531,-72.80826153466478,-71.98709063511342,-72.21858681086451,-72.83878798782825,-72.73648978816345,-72.21703922469169,-72.16522863600403,-71.2373214266263,-70.7834009625949,-70.40842202119529,-69.44583279220387,-70.13435010844842,-69.87426697090268,-69.77229338791221,-70.205239394214,-69.44710333831608,-70.40434994548559,-69.91563738090917,-69.2170280488208,-68.82617758307606,-68.96497627347708,-68.58249115617946,-67.90308790374547,-68.82964667771012,-69.61138842627406,-68.83398753637448,-69.26983310701326,-68.6372607825324,-68.52917384635657,-68.0028370139189,-68.5404187454842,-68.6825142079033,-67.97479932708666,-68.54804079886526,-69.41301481798291,-68.81585312727839,-69.20909981383011,-68.21157058840618,-67.85399489710107,-68.45161152118817,-68.4453770276159,-68.07958413194865,-67.17489091400057,-67.36378686130047,-66.5974963400513,-66.28508955985308,-66.2567048529163,-66.23562780441716,-65.28508456517011,-65.38910730648786,-64.58581719826907,-65.45817844057456,-65.05183088593185,-65.8902402264066,-66.68014291254804,-66.89351115934551,-66.25799124548212,-66.20707246428356,-65.65033651702106,-66.50316205481067,-66.66294091427699,-67.63538589328527,-68.52948819193989,-69.34916811482981,-70.30892912950367,-69.33110023057088,-68.61488628340885,-67.90208516502753,-67.54748445330188,-67.45508729666471,-67.93736467370763,-67.5750467334874,-68.4203723045066,-68.09748248849064,-68.12198486365378,-68.27668232657015,-69.02905089361593,-68.77227871865034,-69.698698497843,-69.49797161808237,-68.95360193355009,-68.14783658040687,-68.64525266364217,-68.73398312553763,-68.83974321605638,-69.82475492125377,-69.35844225110486,-68.51547583332285,-67.61991199012846,-68.25535366032273,-69.05387342954054,-69.37226213468239,-70.14290960039943,-70.56702677626163,-71.4858347796835,-70.54095921898261,-71.29880341887474,-70.99242510693148,-71.56611272972077,-70.78671382181346,-71.62108387704939,-71.93608967540786,-71.24876795103773,-72.1642376924865,-71.76348802028224,-71.76866893842816,-72.62793543469161,-73.35108388634399,-73.68179171252996,-72.98747131181881,-73.6618085433729,-74.2625933745876,-73.50984810199589,-72.79911068221554,-72.93962775170803,-73.06320757977664,-73.94226186303422,-73.14452471351251,-72.88436089735478,-72.2674516774714,-71.78127211751416,-72.56696924380958,-73.22535872785375,-72.4699063054286,-72.47145111719146,-71.96078911190853,-71.26577928336337,-71.38936890847981,-70.59927653567865,-70.7379131373018,-71.05007171723992,-70.13026516698301,-69.35266243526712,-68.5346772801131,-67.82713109673932,-67.57822370156646,-67.90353176509961,-67.3176112039946,-67.05515803489834,-67.36730747204274,-68.28983951779082,-67.5816921973601,-67.65668376674876,-66.96102018048987,-67.712261186447,-67.65993133094162,-68.60740775568411,-68.41333675617352,-68.89293697569519,-68.89069950021803,-68.19568874128163,-68.770203826949,-69.33523355796933,-68.47764776833355,-67.7430172576569,-67.34778989991173,-67.48929720325395,-67.51080267690122,-68.06033129664138,-68.70830174349248,-69.12994624255225,-69.50022096466273,-68.56293451180682,-68.83987713279203,-68.26591644063592,-68.53604859067127,-68.48569634184241,-67.85011391015723,-68.56010269932449,-68.67377528455108,-68.81655658222735,-69.50942676793784,-69.25419213995337,-68.95621227612719,-68.9294848437421,-69.4804474953562,-69.38747169682756,-69.50350615940988,-69.56099258130416,-69.83306450163946,-69.60427082097158,-70.29826294351369,-69.70872331410646,-69.43355003092438,-69.25159091688693,-68.76543308002874,-68.40225263126194,-68.01396579341963,-68.79676554119214,-68.2115028933622,-68.07171094790101,-68.69101491989568,-69.26445385627449,-69.53832619125023,-69.67676190473139,-69.85686808871105,-70.77232839493081,-71.2475714115426,-71.61532427510247,-72.25208330433816,-72.15325687965378,-72.01486874744296,-71.1645060251467,-72.0198645167984,-72.08052502851933,-72.32390562165529,-72.4799053533934,-72.1811052756384,-71.19921936374158,-71.54161797603592,-71.03809546865523,-71.77599906828254,-72.35007207468152,-72.23381889984012,-73.06741120340303,-72.27129492722452,-72.68827440962195,-72.6997985187918,-72.54513335460797,-71.97149001248181,-72.7744698273018,-72.350390560925,-72.6671006763354,-73.16814640257508,-72.52042047353461,-71.78437906038016,-71.22788197221234,-70.24699422437698,-70.04966613510624,-69.45586018636823,-68.7422497952357,-68.66169979423285,-68.97102548135445,-69.7583929891698,-70.5993963056244,-71.37327364413068,-71.50915581686422,-71.94377380842343,-71.15481238579378,-71.98906508367509,-71.76573605136946,-71.20382203580812,-71.2128995154053,-71.25782827846706,-72.2518472475931,-73.08289575111121,-73.51827632356435,-73.83524161856622,-74.61275498056784,-73.84262283844873,-74.77497444720939,-75.1369115402922,-75.5777566456236,-75.66329862503335,-75.62723427312449,-76.5816186638549,-76.6051390003413,-76.17461721366271,-75.21323264203966,-74.69519456708804,-73.74484527949244,-74.63911613728851,-73.85276009840891,-72.88651464832947,-73.49432659614831,-72.93033911241218,-73.32967708539218,-74.1839207764715,-73.5496825571172,-72.59357868740335,-72.21909599285573,-71.3183574648574,-70.35994130186737,-69.49647600064054,-69.24181460682303,-68.62910340586677,-69.46374019328505,-69.98809789773077,-69.46255710814148,-68.98527622641996,-68.88697212841362,-69.14994195476174,-68.16521730367094,-69.03785276133567,-68.73645245051011,-68.59508424345404,-68.6971734976396,-68.38201661035419,-68.10291281482205,-67.51690623397008,-67.572969653178,-67.73475916590542,-68.70361832994968,-68.6230912366882,-68.60835379688069,-69.51138402614743,-70.32573346793652,-69.32759395474568,-69.22566432598978,-69.47911166772246,-69.67657086672261,-70.097600963898,-70.17916072579101,-70.23908568220213,-70.91313843848184,-71.57390488218516,-71.53803380159661,-70.62669106805697,-70.60694729629904,-70.77936255279928,-71.1403498747386,-71.34260688349605,-72.13746836641803,-73.06127313291654,-73.96815774217248,-74.61982160713524,-73.6303469282575,-72.96256214147434,-72.59532888699323,-72.09818978281692,-73.0784376761876,-72.16701189009473,-73.01723500620574,-72.39621200412512,-71.6208937340416,-70.79276175424457,-71.2235507001169,-70.54056358151138,-71.24999535782263,-71.24822437530383,-72.14020837377757,-72.28970452165231,-72.0748287239112,-72.11102574132383,-71.52157466253266,-71.43324263114482,-71.53763045975938,-72.48731125658378,-71.9593786150217,-72.2440066584386,-72.47882800083607,-72.8469864744693,-73.07416586764157,-73.15522321732715,-72.93878326797858,-73.56537517393008,-73.43553849728778,-73.41959186689928,-74.13804237591103,-73.70565088884905,-73.96804668335244,-73.40070576872677,-73.24603379052132,-73.01552552962676,-73.70301946159452,-74.33501680707559,-75.08372626174241,-75.5128049980849,-74.7750949934125,-74.7900603110902,-74.64986214088276,-75.41352601815015,-76.17757912026718,-75.84804188087583,-75.06994606275111,-75.46071696700528,-75.76170141389593,-75.31280887080356,-75.8136248937808,-76.65569151286036,-76.35912995645776,-75.87173263821751,-75.55225753970444,-75.41128522902727,-74.43947549862787,-74.62196507211775,-74.86532558407634,-74.33873026445508,-74.097536733374,-73.9774717465043,-73.00882029673085,-72.5067807175219,-72.2822373919189,-72.73189293919131,-72.85426086839288,-72.45701811602339,-73.02605081349611,-73.33176443120465,-73.41622295090929,-74.27779754810035,-75.23975429590791,-74.74322130531073,-75.64681578194723,-76.29446674976498,-76.11172444513068,-75.55867364583537,-76.10353423561901,-75.65703267557546,-75.62938723294064,-74.9661428052932,-75.2481976649724,-74.68044605804607,-75.40807480411604,-74.97117644548416,-75.20362758822739,-74.79081725981086,-75.20093437796459,-75.0907252272591,-74.45256622228771,-74.88385117286816,-74.56257100217044,-75.20853053638712,-74.6452842853032,-75.59312004735693,-76.34904238721356,-77.28737769974396,-77.2034700983204,-76.62094066012651,-77.14957396080717,-77.85135347722098,-77.14806884154677,-76.83722065249458,-77.66137898014858,-77.04903977550566,-76.67608449608088,-76.86280095856637,-76.30821804143488,-76.71369622927159,-76.42166835302487,-76.99316678149626,-76.90519032580778,-76.67057377006859,-76.39581124437973,-76.33451310172677,-75.48506879853085,-74.75288193486631,-73.84270953852683,-73.52662742557004,-73.91100595332682,-72.9730785060674,-73.62662450829521,-74.07694632560015,-73.83860250143334,-73.70648157922551,-72.77161422511563,-72.70429078210145,-73.61385937267914,-73.13897173246369,-72.90095139667392,-73.0512389568612,-74.02537121810019,-73.73655294347554,-72.80449029337615,-72.46744614792988,-72.8613594379276,-72.25065210042521,-72.4650651733391,-72.52776933228597,-72.74906458612531,-72.91337497811764,-73.08143239701167,-73.02971550216898,-72.93542009638622,-72.85191429406404,-73.49385848874226,-74.24753092695028,-73.72548097930849,-73.67512482916936,-73.22172678587958,-73.24303823662922,-72.46332964440808,-71.97545624291524,-71.68319165566936,-71.71138193504885,-71.8892585420981,-71.04785803286359,-71.9851357457228,-71.26271721534431,-71.71643431903794,-72.27025753306225,-72.96339265303686,-72.99642651854083,-72.00125838257372,-72.3090346059762,-73.13975098310038,-72.80721913930029,-73.74897686298937,-72.95017315959558,-71.98254048917443,-71.30798101145774,-70.61255736975,-71.28137311339378,-70.50336740165949,-71.41157838935032,-70.61924332100898,-71.2243191874586,-70.47858455311507,-70.68970173364505,-70.34881624160334,-69.59213133109733,-69.81194296525791,-70.73640376748517,-69.80833312124014,-70.08760322909802,-70.4037110246718,-70.38810585672036,-71.18996581388637,-71.1957576405257,-71.4984069345519,-72.00448238523677,-72.77826705295593,-73.28736584400758,-74.23739257687703,-74.666608620435,-74.35013342509046,-74.12572886003181,-73.85497923567891,-73.74085271218792,-74.49950148630887,-74.57157994620502,-75.00389127060771,-74.64757321216166,-73.68265430815518,-73.76166072068736,-74.21847751131281,-74.68901037657633,-73.950414262712,-73.30131259234622,-73.67990778526291,-74.12071066722274,-74.50259743211791,-74.02034880034626,-73.91408802010119,-73.39112085057423,-73.39271005429327,-72.65650426317006,-73.58174080541357,-73.10395533498377,-72.21680961828679,-72.1341624269262,-71.87283690599725,-71.12539215013385,-71.54613781999797,-70.69022396346554,-70.68885962991044,-69.74672427400947,-69.00876679737121,-69.7123114024289,-70.00858247838914,-70.26993859373033,-70.07261765561998,-69.5832593953237,-69.21783539559692,-69.93729540985078,-70.07435277616605,-69.43424645671621,-69.32493548141792,-69.36862487345934,-69.38921624189243,-70.12439118418843,-70.14211858948693,-69.829892271664,-69.81079127872363,-70.73822164861485,-71.420915779192,-70.4783597313799,-71.00584976933897,-71.62747023440897,-72.46118604345247,-72.34686332382262,-71.9744270737283,-72.46353467786685,-72.86982936551794,-72.9236485301517,-72.11746438872069,-72.16526373289526,-72.87014938890934,-73.68223489355296,-72.6856647990644,-72.85521025210619,-72.50594640616328,-72.42935737827793,-72.8647757708095,-72.06531832134351,-72.41404891991988,-73.2570039187558,-74.05166532518342,-74.7854525106959,-74.73766934964806,-74.12967929057777,-74.10827213944867,-74.7988529377617,-74.14872752223164,-73.68080679466948,-73.02416103333235,-72.08032401418313,-71.66707641119137,-71.4178261635825,-70.7694878578186,-70.20854060724378,-70.5869205375202,-71.18606276530772,-70.82416339032352,-69.84731103712693,-69.40108542796224,-70.21378868119791,-69.39628485077992,-70.21429086709395,-70.43224329641089,-69.68469118745998,-68.82960932701826,-69.51152555085719,-70.40108501631767,-71.04197233449668,-71.10050603887066,-71.76208329573274,-71.74332842836156,-71.42912506125867,-71.6922909449786,-72.43111419025809,-72.60438387142494,-71.68999314680696,-72.36769141815603,-73.05734878452495,-72.38486963696778,-72.0814742418006,-71.3276985893026,-71.85456331865862,-71.65020058862865,-71.49543796665967,-71.96114923525602,-72.1498220958747,-71.5570608433336,-72.19683103915304,-73.09431871632114,-72.62099493807182,-72.40570665616542,-72.54951044591144,-71.80236986139789,-72.54173059668392,-72.71791970403865,-73.06396629987285,-72.19153247913346,-71.52426069835201,-72.3189564505592,-73.23415018245578,-73.07107827346772,-73.49558945931494,-73.51590676233172,-72.6632444751449,-73.54383389092982,-73.35668757744133,-72.78553947713226,-73.69773606490344,-73.47065491508693,-73.30444614728913,-72.93211697414517,-72.2772741401568,-72.31758985528722,-72.5743258134462,-72.88613550318405,-72.13759930804372,-72.69926118012518,-71.94634536700323,-71.00807508733124,-70.383664178662,-70.06355499196798,-69.7035999558866,-70.17934409994632,-69.59442378534004,-69.82407406298444,-69.12543573183939,-68.95963155198842,-68.68206418212503,-69.19910918315873,-69.76548616960645,-70.38400978315622,-69.73395237326622,-70.19949616724625,-71.01611704425886,-71.48230328969657,-70.73634857079014,-70.69276810949668,-70.79055187804624,-71.26165366126224,-70.84939724346623,-70.93875405052677,-71.17692977609113,-71.05544284405187,-71.31479687569663,-70.87618824047968,-71.3096095523797,-70.99483090499416,-71.77268477948382,-71.79245628556237,-72.0723242033273,-72.98271944699809,-72.26246246462688,-71.6314244135283,-71.28253749525174,-71.35346111608669,-71.20414414256811,-72.16835159529,-71.33678720192984,-71.64882033038884,-72.3078925893642,-71.53109412593767,-72.19574367348105,-72.02742355875671,-72.0455128615722,-72.58079026732594,-73.22279028920457,-72.93793026870117,-72.16225260216743,-72.945203602314,-72.87014371529222,-72.29673142684624,-71.98540203599259,-71.20399924460799,-71.15430300822482,-71.49370663845912,-71.1090605254285,-70.34639818686992,-71.09054111270234,-72.09018873469904,-72.13490248238668,-72.60100622661412,-72.15766219235957,-72.44505761610344,-71.54228643933311,-71.40169826243073,-70.54001539107412,-70.70517937652767,-71.67599665792659,-72.34092786582187,-72.37556625297293,-72.312528451439,-73.30630948022008,-72.53720766073093,-72.7605058727786,-73.50796694913879,-73.4754625717178,-74.00376089382917,-73.55242210486904,-74.48784585017711,-74.70107097690925,-75.64126093126833,-74.96703808568418,-75.22894892003387,-74.53443850995973,-74.77756872912869,-74.31439315434545,-74.71634957520291,-74.4931017528288,-74.45683905296028,-73.60650561517105,-73.99300282960758,-73.33425123011693,-73.52738454658538,-73.04257151205093,-72.12288231821731,-72.65434008371085,-72.84375495510176,-72.92394280061126,-71.93882085150108,-72.82071224274114,-72.54241772834212,-73.50325124291703,-72.6135695236735,-73.32085835374892,-74.2838492100127,-74.6279703383334,-75.6054663755931,-75.78921265760437,-76.42178284469992,-76.19379501277581,-75.98398942267522,-75.3694024188444,-76.18083710502833,-75.32527798134834,-75.10609654989094,-74.69973851973191,-73.85314900707453,-73.74641227349639,-72.93770451517776,-72.84726494178176,-72.04582052864134,-71.9888166137971,-71.39563608262688,-71.07750787911937,-71.32809659047052,-71.99638626491651,-71.966304670088,-71.03187270462513,-70.25204404583201,-71.19654440041631,-71.0458164261654,-70.73618348874152,-70.24291572533548,-69.92399426037446,-70.0755605516024,-69.36939416872337,-68.4136552028358,-68.38516045873985,-68.67811044864357,-68.77001896966249,-69.58670568652451,-69.12965995259583,-69.94309890037403,-69.70743255270645,-69.05890067992732,-69.44678701693192,-68.70149665884674,-68.83224700624123,-69.2504595736973,-68.46896931529045,-67.9085469385609,-67.34181808773428,-66.43939202511683,-66.56609033234417,-66.88784344634041,-66.17325425846502,-66.38206612085924,-66.72360811987892,-65.99574285792187,-65.3113327245228,-66.18390474328771,-67.05730264307931,-66.72383538307622,-67.39899680716917,-67.57191253267229,-68.53918029088527,-68.63683488313109,-69.1717132339254,-69.92244748398662,-70.32494621584192,-69.99501781677827,-69.99563384335488,-70.95759188896045,-71.15138420602307,-71.53276593470946,-70.92020195769146,-71.06329940399155,-71.35169032542035,-72.22312067449093,-72.00186524959281,-72.49948990531266,-72.3780403509736,-72.19104757718742,-73.11117057083175,-72.99802916077897,-73.53749259700999,-73.58398733381182,-74.01248519355431,-73.50613904790953,-73.44030857319012,-72.96323023876175,-73.83439050149173,-74.03128484403715,-73.33588933153078,-73.66532291471958,-73.01698519522324,-73.8186930725351,-74.81328369770199,-74.81202668091282,-74.85071834735572,-75.17755720904097,-75.92109653819352,-75.36043587233871,-74.41416842723265,-74.77765631163493,-74.54840682586655,-75.19754029763862,-75.64814930316061,-75.69991930155084,-75.20863379351795,-76.16457014530897,-75.99363331636414,-76.97951543936506,-77.19049375411123,-77.31400930555537,-77.9676445024088,-78.62060987111181,-78.9665519176051,-79.6746847606264,-79.1762282140553,-79.19952735770494,-79.37909234315157,-79.40750547405332,-78.97151902830228,-78.81308830995113,-79.11476551555097,-79.38980237673968,-78.48790446249768,-78.06011980352923,-78.55194248817861,-79.1507280850783,-78.41530183283612,-77.66117589361966,-76.71695628063753,-76.92561474442482,-76.37248915107921,-76.1416679485701,-77.05416331067681,-76.11402169475332,-76.96272184187546,-77.73311983747408,-77.34115552622825,-76.45234192395583,-75.67347855120897,-76.43829874275252,-77.29127429286018,-77.1918719895184,-76.27280322276056,-76.90003458363935,-77.58062039269134,-77.58276973944157,-77.42031926754862,-77.06446571508422,-77.9181936676614,-78.70307359425351,-79.13267724728212,-79.4230169611983,-80.32697129901499,-79.81900644628331,-79.11713788099587,-79.54989394638687,-80.01469122851267,-80.05012014135718,-80.35002711322159,-80.62999622849748,-81.28998439433053,-82.03498057788238,-81.05656445492059,-81.26703341165558,-80.78032623790205,-80.46052557928488,-81.33629728248343,-82.28826037142426,-81.61987807461992,-81.0134444530122,-80.4927446609363,-81.26339343329892,-81.89703088533133,-82.27877378929406,-82.88861018093303,-82.37559443386272,-81.82967975595966,-82.63127081701532,-81.8480427749455,-82.07518815202639,-81.44285012641922,-81.57105081435293,-81.56881038751453,-81.96081985812634,-82.4175658733584,-82.03157988144085,-81.965557790827,-82.91341384593397,-82.66440461948514,-83.31803563144058,-82.78671190701425,-82.35912714572623,-83.34368571825325,-84.00004024012014,-84.28579370258376,-85.16060766903684,-85.30019135819748,-84.3857897259295,-84.93498231610283,-85.27453702967614,-84.55205178866163,-84.2359561715275,-84.13254099199548,-84.55656135315076,-83.61690054601058,-84.53818096080795,-85.29340759525076,-86.2385019287467,-86.82358318381011,-86.05834867851809,-86.09187338175252,-85.22294831089675,-84.26261528255418,-84.8396426178515,-84.9797183694318,-84.26395650301129,-84.17695151316002,-83.86602664878592,-83.35480376332998,-84.06067930487916,-84.21881957957521,-84.65546214301139,-84.36687267385423,-83.7575512942858,-83.56279085669667,-83.28806925099343,-82.50249281106517,-82.31514404108748,-83.14119175868109,-82.46873653354123,-82.63419532356784,-81.91413793200627,-82.61203897884116,-83.02271164301783,-82.15651452355087,-82.46670293109491,-82.21983456006274,-82.4941603098996,-82.87146843643859,-83.75812925118953,-82.79965584632009,-83.1732268948108,-82.5262687979266,-83.10610939795151,-83.42241570632905,-84.19730767095461,-84.49771991651505,-84.36329234018922,-84.38375695655122,-84.46972396364436,-83.56369137391448,-84.39367202250287,-83.55256841471419,-84.12176234461367,-83.19518631277606,-82.63483710540459,-82.68426581053063,-81.85224191565067,-81.22912808181718,-80.52951041888446,-79.85416295891628,-80.4573232322,-79.54861285863444,-79.63142405683175,-79.46770680043846,-78.9326812303625,-79.0845109578222,-79.77300314139575,-80.03604522207752,-80.49776071822271,-79.96838724194095,-80.95350550254807,-80.35268369922414,-80.47294370317832,-79.66108284518123,-79.93367939768359,-79.246812264435,-79.75608194526285,-79.78394420538098,-78.91260857088491,-79.68562366859987,-78.78661234350875,-79.3023416781798,-78.37944122264162,-77.93970484333113,-77.03084954153746,-76.09860474569723,-75.45581321138889,-75.92268489301205,-76.8675638739951,-76.66126886894926,-76.64386751968414,-76.61015992844477,-77.58669367153198,-77.22274548048154,-77.63397597847506,-78.4407077813521,-77.97810549475253,-77.21579079143703,-77.7062653992325,-77.91642733756453,-77.43333536013961,-76.99093535728753,-76.02925114054233,-75.8093700259924,-74.99354079039767,-74.44535502046347,-73.91016622725874,-73.28884769044816,-72.59428531909361,-72.19614547351375,-72.30082637723535,-72.61323349783197,-71.88060374371707,-71.18177786422893,-70.44526946963742,-71.34371845936403,-72.23041378054768,-72.55492197163403,-72.48660039808601,-71.95020145969465,-71.77133558504283,-72.19106453564018,-72.31900148605928,-71.43615154968575,-71.57660724315792,-71.8204295327887,-72.12470107153058,-71.2172022331506,-71.61036243196577,-72.21977277100086,-72.90578122949228,-71.91244692867622,-72.33312872424722,-71.94262583367527,-71.9785328716971,-72.74496723897755,-73.11633268091828,-73.19064629357308,-73.2281823172234,-73.79934371355921,-73.56715266266838,-73.54880803218111,-72.93092655623332,-73.8427467783913,-74.74069654196501,-73.92778480192646,-74.44655690714717,-75.43585485778749,-75.04692390747368,-74.3651559241116,-74.63536559278145,-74.04315873701125,-74.41731594968587,-73.70174616668373,-73.09891671221703,-73.69528166856617,-74.560337995179,-73.61230895342305,-73.08254727814347,-72.7877181652002,-72.47431122278795,-71.51340853935108,-70.8440364152193,-70.63862037705258,-70.18664537137374,-69.71350871864706,-69.17050676466897,-68.26089103193954,-67.53441596450284,-67.63669025991112,-66.68478656327352,-67.18851828156039,-67.06263897148892,-67.51643509510905,-67.34873505588621,-67.4225232838653,-66.53614999167621,-67.12792755663395,-67.03870618762448,-67.85123909916729,-68.71216104738414,-69.65141300437972,-70.03578227339312,-69.64617365412414,-69.13211396569386,-68.19331558048725,-67.7930989600718,-67.89214078243822,-68.87642724160105,-68.44484858214855,-67.77603036817163,-67.31405601697043,-68.10896977502853,-67.91594112617895,-67.22516594780609,-66.93903870601207,-67.72564115654677,-66.91711819916964,-66.91376790357754,-67.44643068872392,-67.055316333659,-66.72883946401998,-66.71128162136301,-66.45780648989603,-66.41869843425229,-65.77130402578041,-65.80088184867054,-64.95819828752428,-64.71104646334425,-64.26049821591005,-64.94980405597016,-65.0846529752016,-65.25473593221977,-64.82147941784933,-64.35250988276675,-64.57089965464547,-65.48704795679078,-65.58536027977243,-65.24092956865206,-65.03966286918148,-65.55471218982711,-64.89710106188431,-64.86655880138278,-64.4139466281049,-63.779001282993704,-64.60091096535325,-65.30543489847332,-65.5783531893976,-65.17235259898007,-64.61269047483802,-64.58658485440537,-63.98322231788188,-63.82882293034345,-64.72274985024706,-64.07652649655938,-64.52924546925351,-63.53161999164149,-63.05089906603098,-63.45183788286522,-62.87299405876547,-63.456793176941574,-63.9418424628675,-64.23869101051241,-64.56773891160265,-64.16962171066552,-63.61757694417611,-63.15369318984449,-63.2641270798631,-63.131225960329175,-64.05025727907196,-63.35238661337644,-64.00908239046112,-64.82488708011806,-64.05423330934718,-63.53700270084664,-63.33684065984562,-63.30420054355636,-63.97738443873823,-64.75723130116239,-65.13794956868514,-66.10223911236972,-66.99862943356857,-66.62861493742093,-67.18236216297373,-67.28904195083305,-67.55448067281395,-67.95358899561688,-67.42728362418711,-67.95408496400341,-67.717155973427,-67.81331844441593,-67.02172699058428,-67.32101926580071,-68.27485780464485,-67.55502642504871,-68.11237440397963,-67.19756334926933,-66.72140858415514,-66.50651233457029,-65.9952931497246,-66.86044465657324,-66.44296004669741,-65.83606920950115,-65.68118666205555,-66.1338628581725,-66.47211707662791,-67.40967038553208,-67.2706719217822,-66.27380929188803,-66.2066793772392,-66.66826084069908,-66.00206780899316,-65.09006477147341,-65.1886112447828,-64.2996365991421,-65.23164885398,-66.02132957894355,-65.35565063497052,-65.0907058478333,-64.95976772392169,-65.4767842036672,-64.90236823866144,-65.3175586652942,-64.59759621229023,-63.73220854392275,-63.0291058216244,-63.06802543671802,-63.35279815271497,-63.18565173074603,-62.24563176417723,-62.972193088848144,-62.994373242836446,-63.67462247982621,-63.75765373557806,-63.88051250204444],"type":"scatter3d"},{"customdata":[["2024-07-25T17:35:06.010000"],["2024-07-25T17:35:07.010000"],["2024-07-25T17:35:08.010000"],["2024-07-25T17:35:09.010000"],["2024-07-25T17:35:10.010000"],["2024-07-25T17:35:11.010000"],["2024-07-25T17:35:12.010000"],["2024-07-25T17:35:13.010000"],["2024-07-25T17:35:14.010000"],["2024-07-25T17:35:15.010000"],["2024-07-25T17:35:16.010000"],["2024-07-25T17:35:17.010000"],["2024-07-25T17:35:18.010000"],["2024-07-25T17:35:19.010000"],["2024-07-25T17:35:20.010000"],["2024-07-25T17:35:21.010000"],["2024-07-25T17:35:22.010000"],["2024-07-25T17:35:23.010000"],["2024-07-25T17:35:24.010000"],["2024-07-25T17:35:25.010000"],["2024-07-25T17:35:26.010000"],["2024-07-25T17:35:27.010000"],["2024-07-25T17:35:28.010000"],["2024-07-25T17:35:29.010000"],["2024-07-25T17:35:30.010000"],["2024-07-25T17:35:31.010000"],["2024-07-25T17:35:32.010000"],["2024-07-25T17:35:33.010000"],["2024-07-25T17:35:34.010000"],["2024-07-25T17:35:35.010000"],["2024-07-25T17:35:36.010000"],["2024-07-25T17:35:37.010000"],["2024-07-25T17:35:38.010000"],["2024-07-25T17:35:39.010000"],["2024-07-25T17:35:40.010000"],["2024-07-25T17:35:41.010000"],["2024-07-25T17:35:42.010000"],["2024-07-25T17:35:43.010000"],["2024-07-25T17:35:44.010000"],["2024-07-25T17:35:45.010000"],["2024-07-25T17:35:46.010000"],["2024-07-25T17:35:47.010000"],["2024-07-25T17:35:48.010000"],["2024-07-25T17:35:49.010000"],["2024-07-25T17:35:50.010000"],["2024-07-25T17:35:51.010000"],["2024-07-25T17:35:52.010000"],["2024-07-25T17:35:53.010000"],["2024-07-25T17:35:54.010000"],["2024-07-25T17:35:55.010000"],["2024-07-25T17:35:56.010000"],["2024-07-25T17:35:57.010000"],["2024-07-25T17:35:58.010000"],["2024-07-25T17:35:59.010000"],["2024-07-25T17:36:00.010000"],["2024-07-25T17:36:01.010000"],["2024-07-25T17:36:02.010000"],["2024-07-25T17:36:03.010000"],["2024-07-25T17:36:04.010000"],["2024-07-25T17:36:05.010000"],["2024-07-25T17:36:06.010000"],["2024-07-25T17:36:07.010000"],["2024-07-25T17:36:08.010000"],["2024-07-25T17:36:09.010000"],["2024-07-25T17:36:10.010000"],["2024-07-25T17:36:11.010000"],["2024-07-25T17:36:12.010000"],["2024-07-25T17:36:13.010000"],["2024-07-25T17:36:14.010000"],["2024-07-25T17:36:15.010000"],["2024-07-25T17:36:16.010000"],["2024-07-25T17:36:17.010000"],["2024-07-25T17:36:18.010000"],["2024-07-25T17:36:19.010000"],["2024-07-25T17:36:20.010000"],["2024-07-25T17:36:21.010000"],["2024-07-25T17:36:22.010000"],["2024-07-25T17:36:23.010000"],["2024-07-25T17:36:24.010000"],["2024-07-25T17:36:25.010000"],["2024-07-25T17:36:26.010000"],["2024-07-25T17:36:27.010000"],["2024-07-25T17:36:28.010000"],["2024-07-25T17:36:29.010000"],["2024-07-25T17:36:30.010000"],["2024-07-25T17:36:31.010000"],["2024-07-25T17:36:32.010000"],["2024-07-25T17:36:33.010000"],["2024-07-25T17:36:34.010000"],["2024-07-25T17:36:35.010000"],["2024-07-25T17:36:36.010000"],["2024-07-25T17:36:37.010000"],["2024-07-25T17:36:38.010000"],["2024-07-25T17:36:39.010000"],["2024-07-25T17:36:40.010000"],["2024-07-25T17:36:41.010000"],["2024-07-25T17:36:42.010000"],["2024-07-25T17:36:43.010000"],["2024-07-25T17:36:44.010000"],["2024-07-25T17:36:45.010000"],["2024-07-25T17:36:46.010000"],["2024-07-25T17:36:47.010000"],["2024-07-25T17:36:48.010000"],["2024-07-25T17:36:49.010000"],["2024-07-25T17:36:50.010000"],["2024-07-25T17:36:51.010000"],["2024-07-25T17:36:52.010000"],["2024-07-25T17:36:53.010000"],["2024-07-25T17:36:54.010000"],["2024-07-25T17:36:55.010000"],["2024-07-25T17:36:56.010000"],["2024-07-25T17:36:57.010000"],["2024-07-25T17:36:58.010000"],["2024-07-25T17:36:59.010000"],["2024-07-25T17:37:00.010000"],["2024-07-25T17:37:01.010000"],["2024-07-25T17:37:02.010000"],["2024-07-25T17:37:03.010000"],["2024-07-25T17:37:04.010000"],["2024-07-25T17:37:05.010000"],["2024-07-25T17:37:06.010000"],["2024-07-25T17:37:07.010000"],["2024-07-25T17:37:08.010000"],["2024-07-25T17:37:09.010000"],["2024-07-25T17:37:10.010000"],["2024-07-25T17:37:11.010000"],["2024-07-25T17:37:12.010000"],["2024-07-25T17:37:13.010000"],["2024-07-25T17:37:14.010000"],["2024-07-25T17:37:15.010000"],["2024-07-25T17:37:16.010000"],["2024-07-25T17:37:17.010000"],["2024-07-25T17:37:18.010000"],["2024-07-25T17:37:19.010000"],["2024-07-25T17:37:20.010000"],["2024-07-25T17:37:21.010000"],["2024-07-25T17:37:22.010000"],["2024-07-25T17:37:23.010000"],["2024-07-25T17:37:24.010000"],["2024-07-25T17:37:25.010000"],["2024-07-25T17:37:26.010000"],["2024-07-25T17:37:27.010000"],["2024-07-25T17:37:28.010000"],["2024-07-25T17:37:29.010000"],["2024-07-25T17:37:30.010000"],["2024-07-25T17:37:31.010000"],["2024-07-25T17:37:32.010000"],["2024-07-25T17:37:33.010000"],["2024-07-25T17:37:34.010000"],["2024-07-25T17:37:35.010000"],["2024-07-25T17:37:36.010000"],["2024-07-25T17:37:37.010000"],["2024-07-25T17:37:38.010000"],["2024-07-25T17:37:39.010000"],["2024-07-25T17:37:40.010000"],["2024-07-25T17:37:41.010000"],["2024-07-25T17:37:42.010000"],["2024-07-25T17:37:43.010000"],["2024-07-25T17:37:44.010000"],["2024-07-25T17:37:45.010000"],["2024-07-25T17:37:46.010000"],["2024-07-25T17:37:47.010000"],["2024-07-25T17:37:48.010000"],["2024-07-25T17:37:49.010000"],["2024-07-25T17:37:50.010000"],["2024-07-25T17:37:51.010000"],["2024-07-25T17:37:52.010000"],["2024-07-25T17:37:53.010000"],["2024-07-25T17:37:54.010000"],["2024-07-25T17:37:55.010000"],["2024-07-25T17:37:56.010000"],["2024-07-25T17:37:57.010000"],["2024-07-25T17:37:58.010000"],["2024-07-25T17:37:59.010000"],["2024-07-25T17:38:00.010000"],["2024-07-25T17:38:01.010000"],["2024-07-25T17:38:02.010000"],["2024-07-25T17:38:03.010000"],["2024-07-25T17:38:04.010000"],["2024-07-25T17:38:05.010000"],["2024-07-25T17:38:06.010000"],["2024-07-25T17:38:07.010000"],["2024-07-25T17:38:08.010000"],["2024-07-25T17:38:09.010000"],["2024-07-25T17:38:10.010000"],["2024-07-25T17:38:11.010000"],["2024-07-25T17:38:12.010000"],["2024-07-25T17:38:13.010000"],["2024-07-25T17:38:14.010000"],["2024-07-25T17:38:15.010000"],["2024-07-25T17:38:16.010000"],["2024-07-25T17:38:17.010000"],["2024-07-25T17:38:18.010000"],["2024-07-25T17:38:19.010000"],["2024-07-25T17:38:20.010000"],["2024-07-25T17:38:21.010000"],["2024-07-25T17:38:22.010000"],["2024-07-25T17:38:23.010000"],["2024-07-25T17:38:24.010000"],["2024-07-25T17:38:25.010000"],["2024-07-25T17:38:26.010000"],["2024-07-25T17:38:27.010000"],["2024-07-25T17:38:28.010000"],["2024-07-25T17:38:29.010000"],["2024-07-25T17:38:30.010000"],["2024-07-25T17:38:31.010000"],["2024-07-25T17:38:32.010000"],["2024-07-25T17:38:33.010000"],["2024-07-25T17:38:34.010000"],["2024-07-25T17:38:35.010000"],["2024-07-25T17:38:36.010000"],["2024-07-25T17:38:37.010000"],["2024-07-25T17:38:38.010000"],["2024-07-25T17:38:39.010000"],["2024-07-25T17:38:40.010000"],["2024-07-25T17:38:41.010000"],["2024-07-25T17:38:42.010000"],["2024-07-25T17:38:43.010000"],["2024-07-25T17:38:44.010000"],["2024-07-25T17:38:45.010000"],["2024-07-25T17:38:46.010000"],["2024-07-25T17:38:47.010000"],["2024-07-25T17:38:48.010000"],["2024-07-25T17:38:49.010000"],["2024-07-25T17:38:50.010000"],["2024-07-25T17:38:51.010000"],["2024-07-25T17:38:52.010000"],["2024-07-25T17:38:53.010000"],["2024-07-25T17:38:54.010000"],["2024-07-25T17:38:55.010000"],["2024-07-25T17:38:56.010000"],["2024-07-25T17:38:57.010000"],["2024-07-25T17:38:58.010000"],["2024-07-25T17:38:59.010000"],["2024-07-25T17:39:00.010000"],["2024-07-25T17:39:01.010000"],["2024-07-25T17:39:02.010000"],["2024-07-25T17:39:03.010000"],["2024-07-25T17:39:04.010000"],["2024-07-25T17:39:05.010000"],["2024-07-25T17:39:06.010000"],["2024-07-25T17:39:07.010000"],["2024-07-25T17:39:08.010000"],["2024-07-25T17:39:09.010000"],["2024-07-25T17:39:10.010000"],["2024-07-25T17:39:11.010000"],["2024-07-25T17:39:12.010000"],["2024-07-25T17:39:13.010000"],["2024-07-25T17:39:14.010000"],["2024-07-25T17:39:15.010000"],["2024-07-25T17:39:16.010000"],["2024-07-25T17:39:17.010000"],["2024-07-25T17:39:18.010000"],["2024-07-25T17:39:19.010000"],["2024-07-25T17:39:20.010000"],["2024-07-25T17:39:21.010000"],["2024-07-25T17:39:22.010000"],["2024-07-25T17:39:23.010000"],["2024-07-25T17:39:24.010000"],["2024-07-25T17:39:25.010000"],["2024-07-25T17:39:26.010000"],["2024-07-25T17:39:27.010000"],["2024-07-25T17:39:28.010000"],["2024-07-25T17:39:29.010000"],["2024-07-25T17:39:30.010000"],["2024-07-25T17:39:31.010000"],["2024-07-25T17:39:32.010000"],["2024-07-25T17:39:33.010000"],["2024-07-25T17:39:34.010000"],["2024-07-25T17:39:35.010000"],["2024-07-25T17:39:36.010000"],["2024-07-25T17:39:37.010000"],["2024-07-25T17:39:38.010000"],["2024-07-25T17:39:39.010000"],["2024-07-25T17:39:40.010000"],["2024-07-25T17:39:41.010000"],["2024-07-25T17:39:42.010000"],["2024-07-25T17:39:43.010000"],["2024-07-25T17:39:44.010000"],["2024-07-25T17:39:45.010000"],["2024-07-25T17:39:46.010000"],["2024-07-25T17:39:47.010000"],["2024-07-25T17:39:48.010000"],["2024-07-25T17:39:49.010000"],["2024-07-25T17:39:50.010000"],["2024-07-25T17:39:51.010000"],["2024-07-25T17:39:52.010000"],["2024-07-25T17:39:53.010000"],["2024-07-25T17:39:54.010000"],["2024-07-25T17:39:55.010000"],["2024-07-25T17:39:56.010000"],["2024-07-25T17:39:57.010000"],["2024-07-25T17:39:58.010000"],["2024-07-25T17:39:59.010000"],["2024-07-25T17:40:00.010000"],["2024-07-25T17:40:01.010000"],["2024-07-25T17:40:02.010000"],["2024-07-25T17:40:03.010000"],["2024-07-25T17:40:04.010000"],["2024-07-25T17:40:05.010000"],["2024-07-25T17:40:06.010000"],["2024-07-25T17:40:07.010000"],["2024-07-25T17:40:08.010000"],["2024-07-25T17:40:09.010000"],["2024-07-25T17:40:10.010000"],["2024-07-25T17:40:11.010000"],["2024-07-25T17:40:12.010000"],["2024-07-25T17:40:13.010000"],["2024-07-25T17:40:14.010000"],["2024-07-25T17:40:15.010000"],["2024-07-25T17:40:16.010000"],["2024-07-25T17:40:17.010000"],["2024-07-25T17:40:18.010000"],["2024-07-25T17:40:19.010000"],["2024-07-25T17:40:20.010000"],["2024-07-25T17:40:21.010000"],["2024-07-25T17:40:22.010000"],["2024-07-25T17:40:23.010000"],["2024-07-25T17:40:24.010000"],["2024-07-25T17:40:25.010000"],["2024-07-25T17:40:26.010000"],["2024-07-25T17:40:27.010000"],["2024-07-25T17:40:28.010000"],["2024-07-25T17:40:29.010000"],["2024-07-25T17:40:30.010000"],["2024-07-25T17:40:31.010000"],["2024-07-25T17:40:32.010000"],["2024-07-25T17:40:33.010000"],["2024-07-25T17:40:34.010000"],["2024-07-25T17:40:35.010000"],["2024-07-25T17:40:36.010000"],["2024-07-25T17:40:37.010000"],["2024-07-25T17:40:38.010000"],["2024-07-25T17:40:39.010000"],["2024-07-25T17:40:40.010000"],["2024-07-25T17:40:41.010000"],["2024-07-25T17:40:42.010000"],["2024-07-25T17:40:43.010000"],["2024-07-25T17:40:44.010000"],["2024-07-25T17:40:45.010000"],["2024-07-25T17:40:46.010000"],["2024-07-25T17:40:47.010000"],["2024-07-25T17:40:48.010000"],["2024-07-25T17:40:49.010000"],["2024-07-25T17:40:50.010000"],["2024-07-25T17:40:51.010000"],["2024-07-25T17:40:52.010000"],["2024-07-25T17:40:53.010000"],["2024-07-25T17:40:54.010000"],["2024-07-25T17:40:55.010000"],["2024-07-25T17:40:56.010000"],["2024-07-25T17:40:57.010000"],["2024-07-25T17:40:58.010000"],["2024-07-25T17:40:59.010000"],["2024-07-25T17:41:00.010000"],["2024-07-25T17:41:01.010000"],["2024-07-25T17:41:02.010000"],["2024-07-25T17:41:03.010000"],["2024-07-25T17:41:04.010000"],["2024-07-25T17:41:05.010000"],["2024-07-25T17:41:06.010000"],["2024-07-25T17:41:07.010000"],["2024-07-25T17:41:08.010000"],["2024-07-25T17:41:09.010000"],["2024-07-25T17:41:10.010000"],["2024-07-25T17:41:11.010000"],["2024-07-25T17:41:12.010000"],["2024-07-25T17:41:13.010000"],["2024-07-25T17:41:14.010000"],["2024-07-25T17:41:15.010000"],["2024-07-25T17:41:16.010000"],["2024-07-25T17:41:17.010000"],["2024-07-25T17:41:18.010000"],["2024-07-25T17:41:19.010000"],["2024-07-25T17:41:20.010000"],["2024-07-25T17:41:21.010000"],["2024-07-25T17:41:22.010000"],["2024-07-25T17:41:23.010000"],["2024-07-25T17:41:24.010000"],["2024-07-25T17:41:25.010000"],["2024-07-25T17:41:26.010000"],["2024-07-25T17:41:27.010000"],["2024-07-25T17:41:28.010000"],["2024-07-25T17:41:29.010000"],["2024-07-25T17:41:30.010000"],["2024-07-25T17:41:31.010000"],["2024-07-25T17:41:32.010000"],["2024-07-25T17:41:33.010000"],["2024-07-25T17:41:34.010000"],["2024-07-25T17:41:35.010000"],["2024-07-25T17:41:36.010000"],["2024-07-25T17:41:37.010000"],["2024-07-25T17:41:38.010000"],["2024-07-25T17:41:39.010000"],["2024-07-25T17:41:40.010000"],["2024-07-25T17:41:41.010000"],["2024-07-25T17:41:42.010000"],["2024-07-25T17:41:43.010000"],["2024-07-25T17:41:44.010000"],["2024-07-25T17:41:45.010000"],["2024-07-25T17:41:46.010000"],["2024-07-25T17:41:47.010000"],["2024-07-25T17:41:48.010000"],["2024-07-25T17:41:49.010000"],["2024-07-25T17:41:50.010000"],["2024-07-25T17:41:51.010000"],["2024-07-25T17:41:52.010000"],["2024-07-25T17:41:53.010000"],["2024-07-25T17:41:54.010000"],["2024-07-25T17:41:55.010000"],["2024-07-25T17:41:56.010000"],["2024-07-25T17:41:57.010000"],["2024-07-25T17:41:58.010000"],["2024-07-25T17:41:59.010000"],["2024-07-25T17:42:00.010000"],["2024-07-25T17:42:01.010000"],["2024-07-25T17:42:02.010000"],["2024-07-25T17:42:03.010000"],["2024-07-25T17:42:04.010000"],["2024-07-25T17:42:05.010000"],["2024-07-25T17:42:06.010000"],["2024-07-25T17:42:07.010000"],["2024-07-25T17:42:08.010000"],["2024-07-25T17:42:09.010000"],["2024-07-25T17:42:10.010000"],["2024-07-25T17:42:11.010000"],["2024-07-25T17:42:12.010000"],["2024-07-25T17:42:13.010000"],["2024-07-25T17:42:14.010000"],["2024-07-25T17:42:15.010000"],["2024-07-25T17:42:16.010000"],["2024-07-25T17:42:17.010000"],["2024-07-25T17:42:18.010000"],["2024-07-25T17:42:19.010000"],["2024-07-25T17:42:20.010000"],["2024-07-25T17:42:21.010000"],["2024-07-25T17:42:22.010000"],["2024-07-25T17:42:23.010000"],["2024-07-25T17:42:24.010000"],["2024-07-25T17:42:25.010000"],["2024-07-25T17:42:26.010000"],["2024-07-25T17:42:27.010000"],["2024-07-25T17:42:28.010000"],["2024-07-25T17:42:29.010000"],["2024-07-25T17:42:30.010000"],["2024-07-25T17:42:31.010000"],["2024-07-25T17:42:32.010000"],["2024-07-25T17:42:33.010000"],["2024-07-25T17:42:34.010000"],["2024-07-25T17:42:35.010000"],["2024-07-25T17:42:36.010000"],["2024-07-25T17:42:37.010000"],["2024-07-25T17:42:38.010000"],["2024-07-25T17:42:39.010000"],["2024-07-25T17:42:40.010000"],["2024-07-25T17:42:41.010000"],["2024-07-25T17:42:42.010000"],["2024-07-25T17:42:43.010000"],["2024-07-25T17:42:44.010000"],["2024-07-25T17:42:45.010000"],["2024-07-25T17:42:46.010000"],["2024-07-25T17:42:47.010000"],["2024-07-25T17:42:48.010000"],["2024-07-25T17:42:49.010000"],["2024-07-25T17:42:50.010000"],["2024-07-25T17:42:51.010000"],["2024-07-25T17:42:52.010000"],["2024-07-25T17:42:53.010000"],["2024-07-25T17:42:54.010000"],["2024-07-25T17:42:55.010000"],["2024-07-25T17:42:56.010000"],["2024-07-25T17:42:57.010000"],["2024-07-25T17:42:58.010000"],["2024-07-25T17:42:59.010000"],["2024-07-25T17:43:00.010000"],["2024-07-25T17:43:01.010000"],["2024-07-25T17:43:02.010000"],["2024-07-25T17:43:03.010000"],["2024-07-25T17:43:04.010000"],["2024-07-25T17:43:05.010000"],["2024-07-25T17:43:06.010000"],["2024-07-25T17:43:07.010000"],["2024-07-25T17:43:08.010000"],["2024-07-25T17:43:09.010000"],["2024-07-25T17:43:10.010000"],["2024-07-25T17:43:11.010000"],["2024-07-25T17:43:12.010000"],["2024-07-25T17:43:13.010000"],["2024-07-25T17:43:14.010000"],["2024-07-25T17:43:15.010000"],["2024-07-25T17:43:16.010000"],["2024-07-25T17:43:17.010000"],["2024-07-25T17:43:18.010000"],["2024-07-25T17:43:19.010000"],["2024-07-25T17:43:20.010000"],["2024-07-25T17:43:21.010000"],["2024-07-25T17:43:22.010000"],["2024-07-25T17:43:23.010000"],["2024-07-25T17:43:24.010000"],["2024-07-25T17:43:25.010000"],["2024-07-25T17:43:26.010000"],["2024-07-25T17:43:27.010000"],["2024-07-25T17:43:28.010000"],["2024-07-25T17:43:29.010000"],["2024-07-25T17:43:30.010000"],["2024-07-25T17:43:31.010000"],["2024-07-25T17:43:32.010000"],["2024-07-25T17:43:33.010000"],["2024-07-25T17:43:34.010000"],["2024-07-25T17:43:35.010000"],["2024-07-25T17:43:36.010000"],["2024-07-25T17:43:37.010000"],["2024-07-25T17:43:38.010000"],["2024-07-25T17:43:39.010000"],["2024-07-25T17:43:40.010000"],["2024-07-25T17:43:41.010000"],["2024-07-25T17:43:42.010000"],["2024-07-25T17:43:43.010000"],["2024-07-25T17:43:44.010000"],["2024-07-25T17:43:45.010000"],["2024-07-25T17:43:46.010000"],["2024-07-25T17:43:47.010000"],["2024-07-25T17:43:48.010000"],["2024-07-25T17:43:49.010000"],["2024-07-25T17:43:50.010000"],["2024-07-25T17:43:51.010000"],["2024-07-25T17:43:52.010000"],["2024-07-25T17:43:53.010000"],["2024-07-25T17:43:54.010000"],["2024-07-25T17:43:55.010000"],["2024-07-25T17:43:56.010000"],["2024-07-25T17:43:57.010000"],["2024-07-25T17:43:58.010000"],["2024-07-25T17:43:59.010000"],["2024-07-25T17:44:00.010000"],["2024-07-25T17:44:01.010000"],["2024-07-25T17:44:02.010000"],["2024-07-25T17:44:03.010000"],["2024-07-25T17:44:04.010000"],["2024-07-25T17:44:05.010000"],["2024-07-25T17:44:06.010000"],["2024-07-25T17:44:07.010000"],["2024-07-25T17:44:08.010000"],["2024-07-25T17:44:09.010000"],["2024-07-25T17:44:10.010000"],["2024-07-25T17:44:11.010000"],["2024-07-25T17:44:12.010000"],["2024-07-25T17:44:13.010000"],["2024-07-25T17:44:14.010000"],["2024-07-25T17:44:15.010000"],["2024-07-25T17:44:16.010000"],["2024-07-25T17:44:17.010000"],["2024-07-25T17:44:18.010000"],["2024-07-25T17:44:19.010000"],["2024-07-25T17:44:20.010000"],["2024-07-25T17:44:21.010000"],["2024-07-25T17:44:22.010000"],["2024-07-25T17:44:23.010000"],["2024-07-25T17:44:24.010000"],["2024-07-25T17:44:25.010000"],["2024-07-25T17:44:26.010000"],["2024-07-25T17:44:27.010000"],["2024-07-25T17:44:28.010000"],["2024-07-25T17:44:29.010000"],["2024-07-25T17:44:30.010000"],["2024-07-25T17:44:31.010000"],["2024-07-25T17:44:32.010000"],["2024-07-25T17:44:33.010000"],["2024-07-25T17:44:34.010000"],["2024-07-25T17:44:35.010000"],["2024-07-25T17:44:36.010000"],["2024-07-25T17:44:37.010000"],["2024-07-25T17:44:38.010000"],["2024-07-25T17:44:39.010000"],["2024-07-25T17:44:40.010000"],["2024-07-25T17:44:41.010000"],["2024-07-25T17:44:42.010000"],["2024-07-25T17:44:43.010000"],["2024-07-25T17:44:44.010000"],["2024-07-25T17:44:45.010000"],["2024-07-25T17:44:46.010000"],["2024-07-25T17:44:47.010000"],["2024-07-25T17:44:48.010000"],["2024-07-25T17:44:49.010000"],["2024-07-25T17:44:50.010000"],["2024-07-25T17:44:51.010000"],["2024-07-25T17:44:52.010000"],["2024-07-25T17:44:53.010000"],["2024-07-25T17:44:54.010000"],["2024-07-25T17:44:55.010000"],["2024-07-25T17:44:56.010000"],["2024-07-25T17:44:57.010000"],["2024-07-25T17:44:58.010000"],["2024-07-25T17:44:59.010000"],["2024-07-25T17:45:00.010000"],["2024-07-25T17:45:01.010000"],["2024-07-25T17:45:02.010000"],["2024-07-25T17:45:03.010000"],["2024-07-25T17:45:04.010000"],["2024-07-25T17:45:05.010000"],["2024-07-25T17:45:06.010000"],["2024-07-25T17:45:07.010000"],["2024-07-25T17:45:08.010000"],["2024-07-25T17:45:09.010000"],["2024-07-25T17:45:10.010000"],["2024-07-25T17:45:11.010000"],["2024-07-25T17:45:12.010000"],["2024-07-25T17:45:13.010000"],["2024-07-25T17:45:14.010000"],["2024-07-25T17:45:15.010000"],["2024-07-25T17:45:16.010000"],["2024-07-25T17:45:17.010000"],["2024-07-25T17:45:18.010000"],["2024-07-25T17:45:19.010000"],["2024-07-25T17:45:20.010000"],["2024-07-25T17:45:21.010000"],["2024-07-25T17:45:22.010000"],["2024-07-25T17:45:23.010000"],["2024-07-25T17:45:24.010000"],["2024-07-25T17:45:25.010000"],["2024-07-25T17:45:26.010000"],["2024-07-25T17:45:27.010000"],["2024-07-25T17:45:28.010000"],["2024-07-25T17:45:29.010000"],["2024-07-25T17:45:30.010000"],["2024-07-25T17:45:31.010000"],["2024-07-25T17:45:32.010000"],["2024-07-25T17:45:33.010000"],["2024-07-25T17:45:34.010000"],["2024-07-25T17:45:35.010000"],["2024-07-25T17:45:36.010000"],["2024-07-25T17:45:37.010000"],["2024-07-25T17:45:38.010000"],["2024-07-25T17:45:39.010000"],["2024-07-25T17:45:40.010000"],["2024-07-25T17:45:41.010000"],["2024-07-25T17:45:42.010000"],["2024-07-25T17:45:43.010000"],["2024-07-25T17:45:44.010000"],["2024-07-25T17:45:45.010000"],["2024-07-25T17:45:46.010000"],["2024-07-25T17:45:47.010000"],["2024-07-25T17:45:48.010000"],["2024-07-25T17:45:49.010000"],["2024-07-25T17:45:50.010000"],["2024-07-25T17:45:51.010000"],["2024-07-25T17:45:52.010000"],["2024-07-25T17:45:53.010000"],["2024-07-25T17:45:54.010000"],["2024-07-25T17:45:55.010000"],["2024-07-25T17:45:56.010000"],["2024-07-25T17:45:57.010000"],["2024-07-25T17:45:58.010000"],["2024-07-25T17:45:59.010000"],["2024-07-25T17:46:00.010000"],["2024-07-25T17:46:01.010000"],["2024-07-25T17:46:02.010000"],["2024-07-25T17:46:03.010000"],["2024-07-25T17:46:04.010000"],["2024-07-25T17:46:05.010000"],["2024-07-25T17:46:06.010000"],["2024-07-25T17:46:07.010000"],["2024-07-25T17:46:08.010000"],["2024-07-25T17:46:09.010000"],["2024-07-25T17:46:10.010000"],["2024-07-25T17:46:11.010000"],["2024-07-25T17:46:12.010000"],["2024-07-25T17:46:13.010000"],["2024-07-25T17:46:14.010000"],["2024-07-25T17:46:15.010000"],["2024-07-25T17:46:16.010000"],["2024-07-25T17:46:17.010000"],["2024-07-25T17:46:18.010000"],["2024-07-25T17:46:19.010000"],["2024-07-25T17:46:20.010000"],["2024-07-25T17:46:21.010000"],["2024-07-25T17:46:22.010000"],["2024-07-25T17:46:23.010000"],["2024-07-25T17:46:24.010000"],["2024-07-25T17:46:25.010000"],["2024-07-25T17:46:26.010000"],["2024-07-25T17:46:27.010000"],["2024-07-25T17:46:28.010000"],["2024-07-25T17:46:29.010000"],["2024-07-25T17:46:30.010000"],["2024-07-25T17:46:31.010000"],["2024-07-25T17:46:32.010000"],["2024-07-25T17:46:33.010000"],["2024-07-25T17:46:34.010000"],["2024-07-25T17:46:35.010000"],["2024-07-25T17:46:36.010000"],["2024-07-25T17:46:37.010000"],["2024-07-25T17:46:38.010000"],["2024-07-25T17:46:39.010000"],["2024-07-25T17:46:40.010000"],["2024-07-25T17:46:41.010000"],["2024-07-25T17:46:42.010000"],["2024-07-25T17:46:43.010000"],["2024-07-25T17:46:44.010000"],["2024-07-25T17:46:45.010000"],["2024-07-25T17:46:46.010000"],["2024-07-25T17:46:47.010000"],["2024-07-25T17:46:48.010000"],["2024-07-25T17:46:49.010000"],["2024-07-25T17:46:50.010000"],["2024-07-25T17:46:51.010000"],["2024-07-25T17:46:52.010000"],["2024-07-25T17:46:53.010000"],["2024-07-25T17:46:54.010000"],["2024-07-25T17:46:55.010000"],["2024-07-25T17:46:56.010000"],["2024-07-25T17:46:57.010000"],["2024-07-25T17:46:58.010000"],["2024-07-25T17:46:59.010000"],["2024-07-25T17:47:00.010000"],["2024-07-25T17:47:01.010000"],["2024-07-25T17:47:02.010000"],["2024-07-25T17:47:03.010000"],["2024-07-25T17:47:04.010000"],["2024-07-25T17:47:05.010000"],["2024-07-25T17:47:06.010000"],["2024-07-25T17:47:07.010000"],["2024-07-25T17:47:08.010000"],["2024-07-25T17:47:09.010000"],["2024-07-25T17:47:10.010000"],["2024-07-25T17:47:11.010000"],["2024-07-25T17:47:12.010000"],["2024-07-25T17:47:13.010000"],["2024-07-25T17:47:14.010000"],["2024-07-25T17:47:15.010000"],["2024-07-25T17:47:16.010000"],["2024-07-25T17:47:17.010000"],["2024-07-25T17:47:18.010000"],["2024-07-25T17:47:19.010000"],["2024-07-25T17:47:20.010000"],["2024-07-25T17:47:21.010000"],["2024-07-25T17:47:22.010000"],["2024-07-25T17:47:23.010000"],["2024-07-25T17:47:24.010000"],["2024-07-25T17:47:25.010000"],["2024-07-25T17:47:26.010000"],["2024-07-25T17:47:27.010000"],["2024-07-25T17:47:28.010000"],["2024-07-25T17:47:29.010000"],["2024-07-25T17:47:30.010000"],["2024-07-25T17:47:31.010000"],["2024-07-25T17:47:32.010000"],["2024-07-25T17:47:33.010000"],["2024-07-25T17:47:34.010000"],["2024-07-25T17:47:35.010000"],["2024-07-25T17:47:36.010000"],["2024-07-25T17:47:37.010000"],["2024-07-25T17:47:38.010000"],["2024-07-25T17:47:39.010000"],["2024-07-25T17:47:40.010000"],["2024-07-25T17:47:41.010000"],["2024-07-25T17:47:42.010000"],["2024-07-25T17:47:43.010000"],["2024-07-25T17:47:44.010000"],["2024-07-25T17:47:45.010000"],["2024-07-25T17:47:46.010000"],["2024-07-25T17:47:47.010000"],["2024-07-25T17:47:48.010000"],["2024-07-25T17:47:49.010000"],["2024-07-25T17:47:50.010000"],["2024-07-25T17:47:51.010000"],["2024-07-25T17:47:52.010000"],["2024-07-25T17:47:53.010000"],["2024-07-25T17:47:54.010000"],["2024-07-25T17:47:55.010000"],["2024-07-25T17:47:56.010000"],["2024-07-25T17:47:57.010000"],["2024-07-25T17:47:58.010000"],["2024-07-25T17:47:59.010000"],["2024-07-25T17:48:00.010000"],["2024-07-25T17:48:01.010000"],["2024-07-25T17:48:02.010000"],["2024-07-25T17:48:03.010000"],["2024-07-25T17:48:04.010000"],["2024-07-25T17:48:05.010000"],["2024-07-25T17:48:06.010000"],["2024-07-25T17:48:07.010000"],["2024-07-25T17:48:08.010000"],["2024-07-25T17:48:09.010000"],["2024-07-25T17:48:10.010000"],["2024-07-25T17:48:11.010000"],["2024-07-25T17:48:12.010000"],["2024-07-25T17:48:13.010000"],["2024-07-25T17:48:14.010000"],["2024-07-25T17:48:15.010000"],["2024-07-25T17:48:16.010000"],["2024-07-25T17:48:17.010000"],["2024-07-25T17:48:18.010000"],["2024-07-25T17:48:19.010000"],["2024-07-25T17:48:20.010000"],["2024-07-25T17:48:21.010000"],["2024-07-25T17:48:22.010000"],["2024-07-25T17:48:23.010000"],["2024-07-25T17:48:24.010000"],["2024-07-25T17:48:25.010000"],["2024-07-25T17:48:26.010000"],["2024-07-25T17:48:27.010000"],["2024-07-25T17:48:28.010000"],["2024-07-25T17:48:29.010000"],["2024-07-25T17:48:30.010000"],["2024-07-25T17:48:31.010000"],["2024-07-25T17:48:32.010000"],["2024-07-25T17:48:33.010000"],["2024-07-25T17:48:34.010000"],["2024-07-25T17:48:35.010000"],["2024-07-25T17:48:36.010000"],["2024-07-25T17:48:37.010000"],["2024-07-25T17:48:38.010000"],["2024-07-25T17:48:39.010000"],["2024-07-25T17:48:40.010000"],["2024-07-25T17:48:41.010000"],["2024-07-25T17:48:42.010000"],["2024-07-25T17:48:43.010000"],["2024-07-25T17:48:44.010000"],["2024-07-25T17:48:45.010000"],["2024-07-25T17:48:46.010000"],["2024-07-25T17:48:47.010000"],["2024-07-25T17:48:48.010000"],["2024-07-25T17:48:49.010000"],["2024-07-25T17:48:50.010000"],["2024-07-25T17:48:51.010000"],["2024-07-25T17:48:52.010000"],["2024-07-25T17:48:53.010000"],["2024-07-25T17:48:54.010000"],["2024-07-25T17:48:55.010000"],["2024-07-25T17:48:56.010000"],["2024-07-25T17:48:57.010000"],["2024-07-25T17:48:58.010000"],["2024-07-25T17:48:59.010000"],["2024-07-25T17:49:00.010000"],["2024-07-25T17:49:01.010000"],["2024-07-25T17:49:02.010000"],["2024-07-25T17:49:03.010000"],["2024-07-25T17:49:04.010000"],["2024-07-25T17:49:05.010000"],["2024-07-25T17:49:06.010000"],["2024-07-25T17:49:07.010000"],["2024-07-25T17:49:08.010000"],["2024-07-25T17:49:09.010000"],["2024-07-25T17:49:10.010000"],["2024-07-25T17:49:11.010000"],["2024-07-25T17:49:12.010000"],["2024-07-25T17:49:13.010000"],["2024-07-25T17:49:14.010000"],["2024-07-25T17:49:15.010000"],["2024-07-25T17:49:16.010000"],["2024-07-25T17:49:17.010000"],["2024-07-25T17:49:18.010000"],["2024-07-25T17:49:19.010000"],["2024-07-25T17:49:20.010000"],["2024-07-25T17:49:21.010000"],["2024-07-25T17:49:22.010000"],["2024-07-25T17:49:23.010000"],["2024-07-25T17:49:24.010000"],["2024-07-25T17:49:25.010000"],["2024-07-25T17:49:26.010000"],["2024-07-25T17:49:27.010000"],["2024-07-25T17:49:28.010000"],["2024-07-25T17:49:29.010000"],["2024-07-25T17:49:30.010000"],["2024-07-25T17:49:31.010000"],["2024-07-25T17:49:32.010000"],["2024-07-25T17:49:33.010000"],["2024-07-25T17:49:34.010000"],["2024-07-25T17:49:35.010000"],["2024-07-25T17:49:36.010000"],["2024-07-25T17:49:37.010000"],["2024-07-25T17:49:38.010000"],["2024-07-25T17:49:39.010000"],["2024-07-25T17:49:40.010000"],["2024-07-25T17:49:41.010000"],["2024-07-25T17:49:42.010000"],["2024-07-25T17:49:43.010000"],["2024-07-25T17:49:44.010000"],["2024-07-25T17:49:45.010000"],["2024-07-25T17:49:46.010000"],["2024-07-25T17:49:47.010000"],["2024-07-25T17:49:48.010000"],["2024-07-25T17:49:49.010000"],["2024-07-25T17:49:50.010000"],["2024-07-25T17:49:51.010000"],["2024-07-25T17:49:52.010000"],["2024-07-25T17:49:53.010000"],["2024-07-25T17:49:54.010000"],["2024-07-25T17:49:55.010000"],["2024-07-25T17:49:56.010000"],["2024-07-25T17:49:57.010000"],["2024-07-25T17:49:58.010000"],["2024-07-25T17:49:59.010000"],["2024-07-25T17:50:00.010000"],["2024-07-25T17:50:01.010000"],["2024-07-25T17:50:02.010000"],["2024-07-25T17:50:03.010000"],["2024-07-25T17:50:04.010000"],["2024-07-25T17:50:05.010000"],["2024-07-25T17:50:06.010000"],["2024-07-25T17:50:07.010000"],["2024-07-25T17:50:08.010000"],["2024-07-25T17:50:09.010000"],["2024-07-25T17:50:10.010000"],["2024-07-25T17:50:11.010000"],["2024-07-25T17:50:12.010000"],["2024-07-25T17:50:13.010000"],["2024-07-25T17:50:14.010000"],["2024-07-25T17:50:15.010000"],["2024-07-25T17:50:16.010000"],["2024-07-25T17:50:17.010000"],["2024-07-25T17:50:18.010000"],["2024-07-25T17:50:19.010000"],["2024-07-25T17:50:20.010000"],["2024-07-25T17:50:21.010000"],["2024-07-25T17:50:22.010000"],["2024-07-25T17:50:23.010000"],["2024-07-25T17:50:24.010000"],["2024-07-25T17:50:25.010000"],["2024-07-25T17:50:26.010000"],["2024-07-25T17:50:27.010000"],["2024-07-25T17:50:28.010000"],["2024-07-25T17:50:29.010000"],["2024-07-25T17:50:30.010000"],["2024-07-25T17:50:31.010000"],["2024-07-25T17:50:32.010000"],["2024-07-25T17:50:33.010000"],["2024-07-25T17:50:34.010000"],["2024-07-25T17:50:35.010000"],["2024-07-25T17:50:36.010000"],["2024-07-25T17:50:37.010000"],["2024-07-25T17:50:38.010000"],["2024-07-25T17:50:39.010000"],["2024-07-25T17:50:40.010000"],["2024-07-25T17:50:41.010000"],["2024-07-25T17:50:42.010000"],["2024-07-25T17:50:43.010000"],["2024-07-25T17:50:44.010000"],["2024-07-25T17:50:45.010000"],["2024-07-25T17:50:46.010000"],["2024-07-25T17:50:47.010000"],["2024-07-25T17:50:48.010000"],["2024-07-25T17:50:49.010000"],["2024-07-25T17:50:50.010000"],["2024-07-25T17:50:51.010000"],["2024-07-25T17:50:52.010000"],["2024-07-25T17:50:53.010000"],["2024-07-25T17:50:54.010000"],["2024-07-25T17:50:55.010000"],["2024-07-25T17:50:56.010000"],["2024-07-25T17:50:57.010000"],["2024-07-25T17:50:58.010000"],["2024-07-25T17:50:59.010000"],["2024-07-25T17:51:00.010000"],["2024-07-25T17:51:01.010000"],["2024-07-25T17:51:02.010000"],["2024-07-25T17:51:03.010000"],["2024-07-25T17:51:04.010000"],["2024-07-25T17:51:05.010000"],["2024-07-25T17:51:06.010000"],["2024-07-25T17:51:07.010000"],["2024-07-25T17:51:08.010000"],["2024-07-25T17:51:09.010000"],["2024-07-25T17:51:10.010000"],["2024-07-25T17:51:11.010000"],["2024-07-25T17:51:12.010000"],["2024-07-25T17:51:13.010000"],["2024-07-25T17:51:14.010000"],["2024-07-25T17:51:15.010000"],["2024-07-25T17:51:16.010000"],["2024-07-25T17:51:17.010000"],["2024-07-25T17:51:18.010000"],["2024-07-25T17:51:19.010000"],["2024-07-25T17:51:20.010000"],["2024-07-25T17:51:21.010000"],["2024-07-25T17:51:22.010000"],["2024-07-25T17:51:23.010000"],["2024-07-25T17:51:24.010000"],["2024-07-25T17:51:25.010000"],["2024-07-25T17:51:26.010000"],["2024-07-25T17:51:27.010000"],["2024-07-25T17:51:28.010000"],["2024-07-25T17:51:29.010000"],["2024-07-25T17:51:30.010000"],["2024-07-25T17:51:31.010000"],["2024-07-25T17:51:32.010000"],["2024-07-25T17:51:33.010000"],["2024-07-25T17:51:34.010000"],["2024-07-25T17:51:35.010000"],["2024-07-25T17:51:36.010000"],["2024-07-25T17:51:37.010000"],["2024-07-25T17:51:38.010000"],["2024-07-25T17:51:39.010000"],["2024-07-25T17:51:40.010000"],["2024-07-25T17:51:41.010000"],["2024-07-25T17:51:42.010000"],["2024-07-25T17:51:43.010000"],["2024-07-25T17:51:44.010000"],["2024-07-25T17:51:45.010000"],["2024-07-25T17:51:46.010000"],["2024-07-25T17:51:47.010000"],["2024-07-25T17:51:48.010000"],["2024-07-25T17:51:49.010000"],["2024-07-25T17:51:50.010000"],["2024-07-25T17:51:51.010000"],["2024-07-25T17:51:52.010000"],["2024-07-25T17:51:53.010000"],["2024-07-25T17:51:54.010000"],["2024-07-25T17:51:55.010000"],["2024-07-25T17:51:56.010000"],["2024-07-25T17:51:57.010000"],["2024-07-25T17:51:58.010000"],["2024-07-25T17:51:59.010000"],["2024-07-25T17:52:00.010000"],["2024-07-25T17:52:01.010000"],["2024-07-25T17:52:02.010000"],["2024-07-25T17:52:03.010000"],["2024-07-25T17:52:04.010000"],["2024-07-25T17:52:05.010000"],["2024-07-25T17:52:06.010000"],["2024-07-25T17:52:07.010000"],["2024-07-25T17:52:08.010000"],["2024-07-25T17:52:09.010000"],["2024-07-25T17:52:10.010000"],["2024-07-25T17:52:11.010000"],["2024-07-25T17:52:12.010000"],["2024-07-25T17:52:13.010000"],["2024-07-25T17:52:14.010000"],["2024-07-25T17:52:15.010000"],["2024-07-25T17:52:16.010000"],["2024-07-25T17:52:17.010000"],["2024-07-25T17:52:18.010000"],["2024-07-25T17:52:19.010000"],["2024-07-25T17:52:20.010000"],["2024-07-25T17:52:21.010000"],["2024-07-25T17:52:22.010000"],["2024-07-25T17:52:23.010000"],["2024-07-25T17:52:24.010000"],["2024-07-25T17:52:25.010000"],["2024-07-25T17:52:26.010000"],["2024-07-25T17:52:27.010000"],["2024-07-25T17:52:28.010000"],["2024-07-25T17:52:29.010000"],["2024-07-25T17:52:30.010000"],["2024-07-25T17:52:31.010000"],["2024-07-25T17:52:32.010000"],["2024-07-25T17:52:33.010000"],["2024-07-25T17:52:34.010000"],["2024-07-25T17:52:35.010000"],["2024-07-25T17:52:36.010000"],["2024-07-25T17:52:37.010000"],["2024-07-25T17:52:38.010000"],["2024-07-25T17:52:39.010000"],["2024-07-25T17:52:40.010000"],["2024-07-25T17:52:41.010000"],["2024-07-25T17:52:42.010000"],["2024-07-25T17:52:43.010000"],["2024-07-25T17:52:44.010000"],["2024-07-25T17:52:45.010000"],["2024-07-25T17:52:46.010000"],["2024-07-25T17:52:47.010000"],["2024-07-25T17:52:48.010000"],["2024-07-25T17:52:49.010000"],["2024-07-25T17:52:50.010000"],["2024-07-25T17:52:51.010000"],["2024-07-25T17:52:52.010000"],["2024-07-25T17:52:53.010000"],["2024-07-25T17:52:54.010000"],["2024-07-25T17:52:55.010000"],["2024-07-25T17:52:56.010000"],["2024-07-25T17:52:57.010000"],["2024-07-25T17:52:58.010000"],["2024-07-25T17:52:59.010000"],["2024-07-25T17:53:00.010000"],["2024-07-25T17:53:01.010000"],["2024-07-25T17:53:02.010000"],["2024-07-25T17:53:03.010000"],["2024-07-25T17:53:04.010000"],["2024-07-25T17:53:05.010000"],["2024-07-25T17:53:06.010000"],["2024-07-25T17:53:07.010000"],["2024-07-25T17:53:08.010000"],["2024-07-25T17:53:09.010000"],["2024-07-25T17:53:10.010000"],["2024-07-25T17:53:11.010000"],["2024-07-25T17:53:12.010000"],["2024-07-25T17:53:13.010000"],["2024-07-25T17:53:14.010000"],["2024-07-25T17:53:15.010000"],["2024-07-25T17:53:16.010000"],["2024-07-25T17:53:17.010000"],["2024-07-25T17:53:18.010000"],["2024-07-25T17:53:19.010000"],["2024-07-25T17:53:20.010000"],["2024-07-25T17:53:21.010000"],["2024-07-25T17:53:22.010000"],["2024-07-25T17:53:23.010000"],["2024-07-25T17:53:24.010000"],["2024-07-25T17:53:25.010000"],["2024-07-25T17:53:26.010000"],["2024-07-25T17:53:27.010000"],["2024-07-25T17:53:28.010000"],["2024-07-25T17:53:29.010000"],["2024-07-25T17:53:30.010000"],["2024-07-25T17:53:31.010000"],["2024-07-25T17:53:32.010000"],["2024-07-25T17:53:33.010000"],["2024-07-25T17:53:34.010000"],["2024-07-25T17:53:35.010000"],["2024-07-25T17:53:36.010000"],["2024-07-25T17:53:37.010000"],["2024-07-25T17:53:38.010000"],["2024-07-25T17:53:39.010000"],["2024-07-25T17:53:40.010000"],["2024-07-25T17:53:41.010000"],["2024-07-25T17:53:42.010000"],["2024-07-25T17:53:43.010000"],["2024-07-25T17:53:44.010000"],["2024-07-25T17:53:45.010000"],["2024-07-25T17:53:46.010000"],["2024-07-25T17:53:47.010000"],["2024-07-25T17:53:48.010000"],["2024-07-25T17:53:49.010000"],["2024-07-25T17:53:50.010000"],["2024-07-25T17:53:51.010000"],["2024-07-25T17:53:52.010000"],["2024-07-25T17:53:53.010000"],["2024-07-25T17:53:54.010000"],["2024-07-25T17:53:55.010000"],["2024-07-25T17:53:56.010000"],["2024-07-25T17:53:57.010000"],["2024-07-25T17:53:58.010000"],["2024-07-25T17:53:59.010000"],["2024-07-25T17:54:00.010000"],["2024-07-25T17:54:01.010000"],["2024-07-25T17:54:02.010000"],["2024-07-25T17:54:03.010000"],["2024-07-25T17:54:04.010000"],["2024-07-25T17:54:05.010000"],["2024-07-25T17:54:06.010000"],["2024-07-25T17:54:07.010000"],["2024-07-25T17:54:08.010000"],["2024-07-25T17:54:09.010000"],["2024-07-25T17:54:10.010000"],["2024-07-25T17:54:11.010000"],["2024-07-25T17:54:12.010000"],["2024-07-25T17:54:13.010000"],["2024-07-25T17:54:14.010000"],["2024-07-25T17:54:15.010000"],["2024-07-25T17:54:16.010000"],["2024-07-25T17:54:17.010000"],["2024-07-25T17:54:18.010000"],["2024-07-25T17:54:19.010000"],["2024-07-25T17:54:20.010000"],["2024-07-25T17:54:21.010000"],["2024-07-25T17:54:22.010000"],["2024-07-25T17:54:23.010000"],["2024-07-25T17:54:24.010000"],["2024-07-25T17:54:25.010000"],["2024-07-25T17:54:26.010000"],["2024-07-25T17:54:27.010000"],["2024-07-25T17:54:28.010000"],["2024-07-25T17:54:29.010000"],["2024-07-25T17:54:30.010000"],["2024-07-25T17:54:31.010000"],["2024-07-25T17:54:32.010000"],["2024-07-25T17:54:33.010000"],["2024-07-25T17:54:34.010000"],["2024-07-25T17:54:35.010000"],["2024-07-25T17:54:36.010000"],["2024-07-25T17:54:37.010000"],["2024-07-25T17:54:38.010000"],["2024-07-25T17:54:39.010000"],["2024-07-25T17:54:40.010000"],["2024-07-25T17:54:41.010000"],["2024-07-25T17:54:42.010000"],["2024-07-25T17:54:43.010000"],["2024-07-25T17:54:44.010000"],["2024-07-25T17:54:45.010000"],["2024-07-25T17:54:46.010000"],["2024-07-25T17:54:47.010000"],["2024-07-25T17:54:48.010000"],["2024-07-25T17:54:49.010000"],["2024-07-25T17:54:50.010000"],["2024-07-25T17:54:51.010000"],["2024-07-25T17:54:52.010000"],["2024-07-25T17:54:53.010000"],["2024-07-25T17:54:54.010000"],["2024-07-25T17:54:55.010000"],["2024-07-25T17:54:56.010000"],["2024-07-25T17:54:57.010000"],["2024-07-25T17:54:58.010000"],["2024-07-25T17:54:59.010000"],["2024-07-25T17:55:00.010000"],["2024-07-25T17:55:01.010000"],["2024-07-25T17:55:02.010000"],["2024-07-25T17:55:03.010000"],["2024-07-25T17:55:04.010000"],["2024-07-25T17:55:05.010000"],["2024-07-25T17:55:06.010000"],["2024-07-25T17:55:07.010000"],["2024-07-25T17:55:08.010000"],["2024-07-25T17:55:09.010000"],["2024-07-25T17:55:10.010000"],["2024-07-25T17:55:11.010000"],["2024-07-25T17:55:12.010000"],["2024-07-25T17:55:13.010000"],["2024-07-25T17:55:14.010000"],["2024-07-25T17:55:15.010000"],["2024-07-25T17:55:16.010000"],["2024-07-25T17:55:17.010000"],["2024-07-25T17:55:18.010000"],["2024-07-25T17:55:19.010000"],["2024-07-25T17:55:20.010000"],["2024-07-25T17:55:21.010000"],["2024-07-25T17:55:22.010000"],["2024-07-25T17:55:23.010000"],["2024-07-25T17:55:24.010000"],["2024-07-25T17:55:25.010000"],["2024-07-25T17:55:26.010000"],["2024-07-25T17:55:27.010000"],["2024-07-25T17:55:28.010000"],["2024-07-25T17:55:29.010000"],["2024-07-25T17:55:30.010000"],["2024-07-25T17:55:31.010000"],["2024-07-25T17:55:32.010000"],["2024-07-25T17:55:33.010000"],["2024-07-25T17:55:34.010000"],["2024-07-25T17:55:35.010000"],["2024-07-25T17:55:36.010000"],["2024-07-25T17:55:37.010000"],["2024-07-25T17:55:38.010000"],["2024-07-25T17:55:39.010000"],["2024-07-25T17:55:40.010000"],["2024-07-25T17:55:41.010000"],["2024-07-25T17:55:42.010000"],["2024-07-25T17:55:43.010000"],["2024-07-25T17:55:44.010000"],["2024-07-25T17:55:45.010000"],["2024-07-25T17:55:46.010000"],["2024-07-25T17:55:47.010000"],["2024-07-25T17:55:48.010000"],["2024-07-25T17:55:49.010000"],["2024-07-25T17:55:50.010000"],["2024-07-25T17:55:51.010000"],["2024-07-25T17:55:52.010000"],["2024-07-25T17:55:53.010000"],["2024-07-25T17:55:54.010000"],["2024-07-25T17:55:55.010000"],["2024-07-25T17:55:56.010000"],["2024-07-25T17:55:57.010000"],["2024-07-25T17:55:58.010000"],["2024-07-25T17:55:59.010000"],["2024-07-25T17:56:00.010000"],["2024-07-25T17:56:01.010000"],["2024-07-25T17:56:02.010000"],["2024-07-25T17:56:03.010000"],["2024-07-25T17:56:04.010000"],["2024-07-25T17:56:05.010000"],["2024-07-25T17:56:06.010000"],["2024-07-25T17:56:07.010000"],["2024-07-25T17:56:08.010000"],["2024-07-25T17:56:09.010000"],["2024-07-25T17:56:10.010000"],["2024-07-25T17:56:11.010000"],["2024-07-25T17:56:12.010000"],["2024-07-25T17:56:13.010000"],["2024-07-25T17:56:14.010000"],["2024-07-25T17:56:15.010000"],["2024-07-25T17:56:16.010000"],["2024-07-25T17:56:17.010000"],["2024-07-25T17:56:18.010000"],["2024-07-25T17:56:19.010000"],["2024-07-25T17:56:20.010000"],["2024-07-25T17:56:21.010000"],["2024-07-25T17:56:22.010000"],["2024-07-25T17:56:23.010000"],["2024-07-25T17:56:24.010000"],["2024-07-25T17:56:25.010000"],["2024-07-25T17:56:26.010000"],["2024-07-25T17:56:27.010000"],["2024-07-25T17:56:28.010000"],["2024-07-25T17:56:29.010000"],["2024-07-25T17:56:30.010000"],["2024-07-25T17:56:31.010000"],["2024-07-25T17:56:32.010000"],["2024-07-25T17:56:33.010000"],["2024-07-25T17:56:34.010000"],["2024-07-25T17:56:35.010000"],["2024-07-25T17:56:36.010000"],["2024-07-25T17:56:37.010000"],["2024-07-25T17:56:38.010000"],["2024-07-25T17:56:39.010000"],["2024-07-25T17:56:40.010000"],["2024-07-25T17:56:41.010000"],["2024-07-25T17:56:42.010000"],["2024-07-25T17:56:43.010000"],["2024-07-25T17:56:44.010000"],["2024-07-25T17:56:45.010000"],["2024-07-25T17:56:46.010000"],["2024-07-25T17:56:47.010000"],["2024-07-25T17:56:48.010000"],["2024-07-25T17:56:49.010000"],["2024-07-25T17:56:50.010000"],["2024-07-25T17:56:51.010000"],["2024-07-25T17:56:52.010000"],["2024-07-25T17:56:53.010000"],["2024-07-25T17:56:54.010000"],["2024-07-25T17:56:55.010000"],["2024-07-25T17:56:56.010000"],["2024-07-25T17:56:57.010000"],["2024-07-25T17:56:58.010000"],["2024-07-25T17:56:59.010000"],["2024-07-25T17:57:00.010000"],["2024-07-25T17:57:01.010000"],["2024-07-25T17:57:02.010000"],["2024-07-25T17:57:03.010000"],["2024-07-25T17:57:04.010000"],["2024-07-25T17:57:05.010000"],["2024-07-25T17:57:06.010000"],["2024-07-25T17:57:07.010000"],["2024-07-25T17:57:08.010000"],["2024-07-25T17:57:09.010000"],["2024-07-25T17:57:10.010000"],["2024-07-25T17:57:11.010000"],["2024-07-25T17:57:12.010000"],["2024-07-25T17:57:13.010000"],["2024-07-25T17:57:14.010000"],["2024-07-25T17:57:15.010000"],["2024-07-25T17:57:16.010000"],["2024-07-25T17:57:17.010000"],["2024-07-25T17:57:18.010000"],["2024-07-25T17:57:19.010000"],["2024-07-25T17:57:20.010000"],["2024-07-25T17:57:21.010000"],["2024-07-25T17:57:22.010000"],["2024-07-25T17:57:23.010000"],["2024-07-25T17:57:24.010000"],["2024-07-25T17:57:25.010000"],["2024-07-25T17:57:26.010000"],["2024-07-25T17:57:27.010000"],["2024-07-25T17:57:28.010000"],["2024-07-25T17:57:29.010000"],["2024-07-25T17:57:30.010000"],["2024-07-25T17:57:31.010000"],["2024-07-25T17:57:32.010000"],["2024-07-25T17:57:33.010000"],["2024-07-25T17:57:34.010000"],["2024-07-25T17:57:35.010000"],["2024-07-25T17:57:36.010000"],["2024-07-25T17:57:37.010000"],["2024-07-25T17:57:38.010000"],["2024-07-25T17:57:39.010000"],["2024-07-25T17:57:40.010000"],["2024-07-25T17:57:41.010000"],["2024-07-25T17:57:42.010000"],["2024-07-25T17:57:43.010000"],["2024-07-25T17:57:44.010000"],["2024-07-25T17:57:45.010000"],["2024-07-25T17:57:46.010000"],["2024-07-25T17:57:47.010000"],["2024-07-25T17:57:48.010000"],["2024-07-25T17:57:49.010000"],["2024-07-25T17:57:50.010000"],["2024-07-25T17:57:51.010000"],["2024-07-25T17:57:52.010000"],["2024-07-25T17:57:53.010000"],["2024-07-25T17:57:54.010000"],["2024-07-25T17:57:55.010000"],["2024-07-25T17:57:56.010000"],["2024-07-25T17:57:57.010000"],["2024-07-25T17:57:58.010000"],["2024-07-25T17:57:59.010000"],["2024-07-25T17:58:00.010000"],["2024-07-25T17:58:01.010000"],["2024-07-25T17:58:02.010000"],["2024-07-25T17:58:03.010000"],["2024-07-25T17:58:04.010000"],["2024-07-25T17:58:05.010000"],["2024-07-25T17:58:06.010000"],["2024-07-25T17:58:07.010000"],["2024-07-25T17:58:08.010000"],["2024-07-25T17:58:09.010000"],["2024-07-25T17:58:10.010000"],["2024-07-25T17:58:11.010000"],["2024-07-25T17:58:12.010000"],["2024-07-25T17:58:13.010000"],["2024-07-25T17:58:14.010000"],["2024-07-25T17:58:15.010000"],["2024-07-25T17:58:16.010000"],["2024-07-25T17:58:17.010000"],["2024-07-25T17:58:18.010000"],["2024-07-25T17:58:19.010000"],["2024-07-25T17:58:20.010000"],["2024-07-25T17:58:21.010000"],["2024-07-25T17:58:22.010000"],["2024-07-25T17:58:23.010000"],["2024-07-25T17:58:24.010000"],["2024-07-25T17:58:25.010000"],["2024-07-25T17:58:26.010000"],["2024-07-25T17:58:27.010000"],["2024-07-25T17:58:28.010000"],["2024-07-25T17:58:29.010000"],["2024-07-25T17:58:30.010000"],["2024-07-25T17:58:31.010000"],["2024-07-25T17:58:32.010000"],["2024-07-25T17:58:33.010000"],["2024-07-25T17:58:34.010000"],["2024-07-25T17:58:35.010000"],["2024-07-25T17:58:36.010000"],["2024-07-25T17:58:37.010000"],["2024-07-25T17:58:38.010000"],["2024-07-25T17:58:39.010000"],["2024-07-25T17:58:40.010000"],["2024-07-25T17:58:41.010000"],["2024-07-25T17:58:42.010000"],["2024-07-25T17:58:43.010000"],["2024-07-25T17:58:44.010000"],["2024-07-25T17:58:45.010000"],["2024-07-25T17:58:46.010000"],["2024-07-25T17:58:47.010000"],["2024-07-25T17:58:48.010000"],["2024-07-25T17:58:49.010000"],["2024-07-25T17:58:50.010000"],["2024-07-25T17:58:51.010000"],["2024-07-25T17:58:52.010000"],["2024-07-25T17:58:53.010000"],["2024-07-25T17:58:54.010000"],["2024-07-25T17:58:55.010000"],["2024-07-25T17:58:56.010000"],["2024-07-25T17:58:57.010000"],["2024-07-25T17:58:58.010000"],["2024-07-25T17:58:59.010000"],["2024-07-25T17:59:00.010000"],["2024-07-25T17:59:01.010000"],["2024-07-25T17:59:02.010000"],["2024-07-25T17:59:03.010000"],["2024-07-25T17:59:04.010000"],["2024-07-25T17:59:05.010000"],["2024-07-25T17:59:06.010000"],["2024-07-25T17:59:07.010000"],["2024-07-25T17:59:08.010000"],["2024-07-25T17:59:09.010000"],["2024-07-25T17:59:10.010000"],["2024-07-25T17:59:11.010000"],["2024-07-25T17:59:12.010000"],["2024-07-25T17:59:13.010000"],["2024-07-25T17:59:14.010000"],["2024-07-25T17:59:15.010000"],["2024-07-25T17:59:16.010000"],["2024-07-25T17:59:17.010000"],["2024-07-25T17:59:18.010000"],["2024-07-25T17:59:19.010000"],["2024-07-25T17:59:20.010000"],["2024-07-25T17:59:21.010000"],["2024-07-25T17:59:22.010000"],["2024-07-25T17:59:23.010000"],["2024-07-25T17:59:24.010000"],["2024-07-25T17:59:25.010000"],["2024-07-25T17:59:26.010000"],["2024-07-25T17:59:27.010000"],["2024-07-25T17:59:28.010000"],["2024-07-25T17:59:29.010000"],["2024-07-25T17:59:30.010000"],["2024-07-25T17:59:31.010000"],["2024-07-25T17:59:32.010000"],["2024-07-25T17:59:33.010000"],["2024-07-25T17:59:34.010000"],["2024-07-25T17:59:35.010000"],["2024-07-25T17:59:36.010000"],["2024-07-25T17:59:37.010000"],["2024-07-25T17:59:38.010000"],["2024-07-25T17:59:39.010000"],["2024-07-25T17:59:40.010000"],["2024-07-25T17:59:41.010000"],["2024-07-25T17:59:42.010000"],["2024-07-25T17:59:43.010000"],["2024-07-25T17:59:44.010000"],["2024-07-25T17:59:45.010000"],["2024-07-25T17:59:46.010000"],["2024-07-25T17:59:47.010000"],["2024-07-25T17:59:48.010000"],["2024-07-25T17:59:49.010000"],["2024-07-25T17:59:50.010000"],["2024-07-25T17:59:51.010000"],["2024-07-25T17:59:52.010000"],["2024-07-25T17:59:53.010000"],["2024-07-25T17:59:54.010000"],["2024-07-25T17:59:55.010000"],["2024-07-25T17:59:56.010000"],["2024-07-25T17:59:57.010000"],["2024-07-25T17:59:58.010000"],["2024-07-25T17:59:59.010000"],["2024-07-25T18:00:00.010000"],["2024-07-25T18:00:01.010000"],["2024-07-25T18:00:02.010000"],["2024-07-25T18:00:03.010000"],["2024-07-25T18:00:04.010000"],["2024-07-25T18:00:05.010000"],["2024-07-25T18:00:06.010000"],["2024-07-25T18:00:07.010000"],["2024-07-25T18:00:08.010000"],["2024-07-25T18:00:09.010000"],["2024-07-25T18:00:10.010000"],["2024-07-25T18:00:11.010000"],["2024-07-25T18:00:12.010000"],["2024-07-25T18:00:13.010000"],["2024-07-25T18:00:14.010000"],["2024-07-25T18:00:15.010000"],["2024-07-25T18:00:16.010000"],["2024-07-25T18:00:17.010000"],["2024-07-25T18:00:18.010000"],["2024-07-25T18:00:19.010000"],["2024-07-25T18:00:20.010000"],["2024-07-25T18:00:21.010000"],["2024-07-25T18:00:22.010000"],["2024-07-25T18:00:23.010000"],["2024-07-25T18:00:24.010000"],["2024-07-25T18:00:25.010000"],["2024-07-25T18:00:26.010000"],["2024-07-25T18:00:27.010000"],["2024-07-25T18:00:28.010000"],["2024-07-25T18:00:29.010000"],["2024-07-25T18:00:30.010000"],["2024-07-25T18:00:31.010000"],["2024-07-25T18:00:32.010000"],["2024-07-25T18:00:33.010000"],["2024-07-25T18:00:34.010000"],["2024-07-25T18:00:35.010000"],["2024-07-25T18:00:36.010000"],["2024-07-25T18:00:37.010000"],["2024-07-25T18:00:38.010000"],["2024-07-25T18:00:39.010000"],["2024-07-25T18:00:40.010000"],["2024-07-25T18:00:41.010000"],["2024-07-25T18:00:42.010000"],["2024-07-25T18:00:43.010000"],["2024-07-25T18:00:44.010000"],["2024-07-25T18:00:45.010000"],["2024-07-25T18:00:46.010000"],["2024-07-25T18:00:47.010000"],["2024-07-25T18:00:48.010000"],["2024-07-25T18:00:49.010000"],["2024-07-25T18:00:50.010000"],["2024-07-25T18:00:51.010000"],["2024-07-25T18:00:52.010000"],["2024-07-25T18:00:53.010000"],["2024-07-25T18:00:54.010000"],["2024-07-25T18:00:55.010000"],["2024-07-25T18:00:56.010000"],["2024-07-25T18:00:57.010000"],["2024-07-25T18:00:58.010000"],["2024-07-25T18:00:59.010000"],["2024-07-25T18:01:00.010000"],["2024-07-25T18:01:01.010000"],["2024-07-25T18:01:02.010000"],["2024-07-25T18:01:03.010000"],["2024-07-25T18:01:04.010000"],["2024-07-25T18:01:05.010000"],["2024-07-25T18:01:06.010000"],["2024-07-25T18:01:07.010000"],["2024-07-25T18:01:08.010000"],["2024-07-25T18:01:09.010000"],["2024-07-25T18:01:10.010000"],["2024-07-25T18:01:11.010000"],["2024-07-25T18:01:12.010000"],["2024-07-25T18:01:13.010000"],["2024-07-25T18:01:14.010000"],["2024-07-25T18:01:15.010000"],["2024-07-25T18:01:16.010000"],["2024-07-25T18:01:17.010000"],["2024-07-25T18:01:18.010000"],["2024-07-25T18:01:19.010000"],["2024-07-25T18:01:20.010000"],["2024-07-25T18:01:21.010000"],["2024-07-25T18:01:22.010000"],["2024-07-25T18:01:23.010000"],["2024-07-25T18:01:24.010000"],["2024-07-25T18:01:25.010000"],["2024-07-25T18:01:26.010000"],["2024-07-25T18:01:27.010000"],["2024-07-25T18:01:28.010000"],["2024-07-25T18:01:29.010000"],["2024-07-25T18:01:30.010000"],["2024-07-25T18:01:31.010000"],["2024-07-25T18:01:32.010000"],["2024-07-25T18:01:33.010000"],["2024-07-25T18:01:34.010000"],["2024-07-25T18:01:35.010000"],["2024-07-25T18:01:36.010000"],["2024-07-25T18:01:37.010000"],["2024-07-25T18:01:38.010000"],["2024-07-25T18:01:39.010000"],["2024-07-25T18:01:40.010000"],["2024-07-25T18:01:41.010000"],["2024-07-25T18:01:42.010000"],["2024-07-25T18:01:43.010000"],["2024-07-25T18:01:44.010000"],["2024-07-25T18:01:45.010000"],["2024-07-25T18:01:46.010000"],["2024-07-25T18:01:47.010000"],["2024-07-25T18:01:48.010000"],["2024-07-25T18:01:49.010000"],["2024-07-25T18:01:50.010000"],["2024-07-25T18:01:51.010000"],["2024-07-25T18:01:52.010000"],["2024-07-25T18:01:53.010000"],["2024-07-25T18:01:54.010000"],["2024-07-25T18:01:55.010000"],["2024-07-25T18:01:56.010000"],["2024-07-25T18:01:57.010000"],["2024-07-25T18:01:58.010000"],["2024-07-25T18:01:59.010000"],["2024-07-25T18:02:00.010000"],["2024-07-25T18:02:01.010000"],["2024-07-25T18:02:02.010000"],["2024-07-25T18:02:03.010000"],["2024-07-25T18:02:04.010000"],["2024-07-25T18:02:05.010000"],["2024-07-25T18:02:06.010000"],["2024-07-25T18:02:07.010000"],["2024-07-25T18:02:08.010000"],["2024-07-25T18:02:09.010000"],["2024-07-25T18:02:10.010000"],["2024-07-25T18:02:11.010000"],["2024-07-25T18:02:12.010000"],["2024-07-25T18:02:13.010000"],["2024-07-25T18:02:14.010000"],["2024-07-25T18:02:15.010000"],["2024-07-25T18:02:16.010000"],["2024-07-25T18:02:17.010000"],["2024-07-25T18:02:18.010000"],["2024-07-25T18:02:19.010000"],["2024-07-25T18:02:20.010000"],["2024-07-25T18:02:21.010000"],["2024-07-25T18:02:22.010000"],["2024-07-25T18:02:23.010000"],["2024-07-25T18:02:24.010000"],["2024-07-25T18:02:25.010000"],["2024-07-25T18:02:26.010000"],["2024-07-25T18:02:27.010000"],["2024-07-25T18:02:28.010000"],["2024-07-25T18:02:29.010000"],["2024-07-25T18:02:30.010000"],["2024-07-25T18:02:31.010000"],["2024-07-25T18:02:32.010000"],["2024-07-25T18:02:33.010000"],["2024-07-25T18:02:34.010000"],["2024-07-25T18:02:35.010000"],["2024-07-25T18:02:36.010000"],["2024-07-25T18:02:37.010000"],["2024-07-25T18:02:38.010000"],["2024-07-25T18:02:39.010000"],["2024-07-25T18:02:40.010000"],["2024-07-25T18:02:41.010000"],["2024-07-25T18:02:42.010000"],["2024-07-25T18:02:43.010000"],["2024-07-25T18:02:44.010000"],["2024-07-25T18:02:45.010000"],["2024-07-25T18:02:46.010000"],["2024-07-25T18:02:47.010000"],["2024-07-25T18:02:48.010000"],["2024-07-25T18:02:49.010000"],["2024-07-25T18:02:50.010000"],["2024-07-25T18:02:51.010000"],["2024-07-25T18:02:52.010000"],["2024-07-25T18:02:53.010000"],["2024-07-25T18:02:54.010000"],["2024-07-25T18:02:55.010000"],["2024-07-25T18:02:56.010000"],["2024-07-25T18:02:57.010000"],["2024-07-25T18:02:58.010000"],["2024-07-25T18:02:59.010000"],["2024-07-25T18:03:00.010000"],["2024-07-25T18:03:01.010000"],["2024-07-25T18:03:02.010000"],["2024-07-25T18:03:03.010000"],["2024-07-25T18:03:04.010000"],["2024-07-25T18:03:05.010000"],["2024-07-25T18:03:06.010000"],["2024-07-25T18:03:07.010000"],["2024-07-25T18:03:08.010000"],["2024-07-25T18:03:09.010000"],["2024-07-25T18:03:10.010000"],["2024-07-25T18:03:11.010000"],["2024-07-25T18:03:12.010000"],["2024-07-25T18:03:13.010000"],["2024-07-25T18:03:14.010000"],["2024-07-25T18:03:15.010000"],["2024-07-25T18:03:16.010000"],["2024-07-25T18:03:17.010000"],["2024-07-25T18:03:18.010000"],["2024-07-25T18:03:19.010000"],["2024-07-25T18:03:20.010000"],["2024-07-25T18:03:21.010000"],["2024-07-25T18:03:22.010000"],["2024-07-25T18:03:23.010000"],["2024-07-25T18:03:24.010000"],["2024-07-25T18:03:25.010000"],["2024-07-25T18:03:26.010000"],["2024-07-25T18:03:27.010000"],["2024-07-25T18:03:28.010000"],["2024-07-25T18:03:29.010000"],["2024-07-25T18:03:30.010000"],["2024-07-25T18:03:31.010000"],["2024-07-25T18:03:32.010000"],["2024-07-25T18:03:33.010000"],["2024-07-25T18:03:34.010000"],["2024-07-25T18:03:35.010000"],["2024-07-25T18:03:36.010000"],["2024-07-25T18:03:37.010000"],["2024-07-25T18:03:38.010000"],["2024-07-25T18:03:39.010000"],["2024-07-25T18:03:40.010000"],["2024-07-25T18:03:41.010000"],["2024-07-25T18:03:42.010000"],["2024-07-25T18:03:43.010000"],["2024-07-25T18:03:44.010000"],["2024-07-25T18:03:45.010000"],["2024-07-25T18:03:46.010000"],["2024-07-25T18:03:47.010000"],["2024-07-25T18:03:48.010000"],["2024-07-25T18:03:49.010000"],["2024-07-25T18:03:50.010000"],["2024-07-25T18:03:51.010000"],["2024-07-25T18:03:52.010000"],["2024-07-25T18:03:53.010000"],["2024-07-25T18:03:54.010000"],["2024-07-25T18:03:55.010000"],["2024-07-25T18:03:56.010000"],["2024-07-25T18:03:57.010000"],["2024-07-25T18:03:58.010000"],["2024-07-25T18:03:59.010000"],["2024-07-25T18:04:00.010000"],["2024-07-25T18:04:01.010000"],["2024-07-25T18:04:02.010000"],["2024-07-25T18:04:03.010000"],["2024-07-25T18:04:04.010000"],["2024-07-25T18:04:05.010000"],["2024-07-25T18:04:06.010000"],["2024-07-25T18:04:07.010000"],["2024-07-25T18:04:08.010000"],["2024-07-25T18:04:09.010000"],["2024-07-25T18:04:10.010000"],["2024-07-25T18:04:11.010000"],["2024-07-25T18:04:12.010000"],["2024-07-25T18:04:13.010000"],["2024-07-25T18:04:14.010000"],["2024-07-25T18:04:15.010000"],["2024-07-25T18:04:16.010000"],["2024-07-25T18:04:17.010000"],["2024-07-25T18:04:18.010000"],["2024-07-25T18:04:19.010000"],["2024-07-25T18:04:20.010000"],["2024-07-25T18:04:21.010000"],["2024-07-25T18:04:22.010000"],["2024-07-25T18:04:23.010000"],["2024-07-25T18:04:24.010000"],["2024-07-25T18:04:25.010000"],["2024-07-25T18:04:26.010000"],["2024-07-25T18:04:27.010000"],["2024-07-25T18:04:28.010000"],["2024-07-25T18:04:29.010000"],["2024-07-25T18:04:30.010000"],["2024-07-25T18:04:31.010000"],["2024-07-25T18:04:32.010000"],["2024-07-25T18:04:33.010000"],["2024-07-25T18:04:34.010000"],["2024-07-25T18:04:35.010000"],["2024-07-25T18:04:36.010000"],["2024-07-25T18:04:37.010000"],["2024-07-25T18:04:38.010000"],["2024-07-25T18:04:39.010000"],["2024-07-25T18:04:40.010000"],["2024-07-25T18:04:41.010000"],["2024-07-25T18:04:42.010000"],["2024-07-25T18:04:43.010000"],["2024-07-25T18:04:44.010000"],["2024-07-25T18:04:45.010000"],["2024-07-25T18:04:46.010000"],["2024-07-25T18:04:47.010000"],["2024-07-25T18:04:48.010000"],["2024-07-25T18:04:49.010000"],["2024-07-25T18:04:50.010000"],["2024-07-25T18:04:51.010000"],["2024-07-25T18:04:52.010000"],["2024-07-25T18:04:53.010000"],["2024-07-25T18:04:54.010000"],["2024-07-25T18:04:55.010000"],["2024-07-25T18:04:56.010000"],["2024-07-25T18:04:57.010000"],["2024-07-25T18:04:58.010000"],["2024-07-25T18:04:59.010000"],["2024-07-25T18:05:00.010000"],["2024-07-25T18:05:01.010000"],["2024-07-25T18:05:02.010000"],["2024-07-25T18:05:03.010000"],["2024-07-25T18:05:04.010000"],["2024-07-25T18:05:05.010000"],["2024-07-25T18:05:06.010000"],["2024-07-25T18:05:07.010000"],["2024-07-25T18:05:08.010000"],["2024-07-25T18:05:09.010000"],["2024-07-25T18:05:10.010000"],["2024-07-25T18:05:11.010000"],["2024-07-25T18:05:12.010000"],["2024-07-25T18:05:13.010000"],["2024-07-25T18:05:14.010000"],["2024-07-25T18:05:15.010000"],["2024-07-25T18:05:16.010000"],["2024-07-25T18:05:17.010000"],["2024-07-25T18:05:18.010000"],["2024-07-25T18:05:19.010000"],["2024-07-25T18:05:20.010000"],["2024-07-25T18:05:21.010000"],["2024-07-25T18:05:22.010000"],["2024-07-25T18:05:23.010000"],["2024-07-25T18:05:24.010000"],["2024-07-25T18:05:25.010000"],["2024-07-25T18:05:26.010000"],["2024-07-25T18:05:27.010000"],["2024-07-25T18:05:28.010000"],["2024-07-25T18:05:29.010000"],["2024-07-25T18:05:30.010000"],["2024-07-25T18:05:31.010000"],["2024-07-25T18:05:32.010000"],["2024-07-25T18:05:33.010000"],["2024-07-25T18:05:34.010000"],["2024-07-25T18:05:35.010000"],["2024-07-25T18:05:36.010000"],["2024-07-25T18:05:37.010000"],["2024-07-25T18:05:38.010000"],["2024-07-25T18:05:39.010000"],["2024-07-25T18:05:40.010000"],["2024-07-25T18:05:41.010000"],["2024-07-25T18:05:42.010000"],["2024-07-25T18:05:43.010000"],["2024-07-25T18:05:44.010000"],["2024-07-25T18:05:45.010000"],["2024-07-25T18:05:46.010000"],["2024-07-25T18:05:47.010000"],["2024-07-25T18:05:48.010000"],["2024-07-25T18:05:49.010000"],["2024-07-25T18:05:50.010000"],["2024-07-25T18:05:51.010000"],["2024-07-25T18:05:52.010000"],["2024-07-25T18:05:53.010000"],["2024-07-25T18:05:54.010000"],["2024-07-25T18:05:55.010000"],["2024-07-25T18:05:56.010000"],["2024-07-25T18:05:57.010000"],["2024-07-25T18:05:58.010000"],["2024-07-25T18:05:59.010000"],["2024-07-25T18:06:00.010000"],["2024-07-25T18:06:01.010000"],["2024-07-25T18:06:02.010000"],["2024-07-25T18:06:03.010000"],["2024-07-25T18:06:04.010000"],["2024-07-25T18:06:05.010000"],["2024-07-25T18:06:06.010000"],["2024-07-25T18:06:07.010000"],["2024-07-25T18:06:08.010000"],["2024-07-25T18:06:09.010000"],["2024-07-25T18:06:10.010000"],["2024-07-25T18:06:11.010000"],["2024-07-25T18:06:12.010000"],["2024-07-25T18:06:13.010000"],["2024-07-25T18:06:14.010000"],["2024-07-25T18:06:15.010000"],["2024-07-25T18:06:16.010000"],["2024-07-25T18:06:17.010000"],["2024-07-25T18:06:18.010000"],["2024-07-25T18:06:19.010000"],["2024-07-25T18:06:20.010000"],["2024-07-25T18:06:21.010000"],["2024-07-25T18:06:22.010000"],["2024-07-25T18:06:23.010000"],["2024-07-25T18:06:24.010000"],["2024-07-25T18:06:25.010000"],["2024-07-25T18:06:26.010000"],["2024-07-25T18:06:27.010000"],["2024-07-25T18:06:28.010000"],["2024-07-25T18:06:29.010000"],["2024-07-25T18:06:30.010000"],["2024-07-25T18:06:31.010000"],["2024-07-25T18:06:32.010000"],["2024-07-25T18:06:33.010000"],["2024-07-25T18:06:34.010000"],["2024-07-25T18:06:35.010000"],["2024-07-25T18:06:36.010000"],["2024-07-25T18:06:37.010000"],["2024-07-25T18:06:38.010000"],["2024-07-25T18:06:39.010000"],["2024-07-25T18:06:40.010000"],["2024-07-25T18:06:41.010000"],["2024-07-25T18:06:42.010000"],["2024-07-25T18:06:43.010000"],["2024-07-25T18:06:44.010000"],["2024-07-25T18:06:45.010000"],["2024-07-25T18:06:46.010000"],["2024-07-25T18:06:47.010000"],["2024-07-25T18:06:48.010000"],["2024-07-25T18:06:49.010000"],["2024-07-25T18:06:50.010000"],["2024-07-25T18:06:51.010000"],["2024-07-25T18:06:52.010000"],["2024-07-25T18:06:53.010000"],["2024-07-25T18:06:54.010000"],["2024-07-25T18:06:55.010000"],["2024-07-25T18:06:56.010000"],["2024-07-25T18:06:57.010000"],["2024-07-25T18:06:58.010000"],["2024-07-25T18:06:59.010000"],["2024-07-25T18:07:00.010000"],["2024-07-25T18:07:01.010000"],["2024-07-25T18:07:02.010000"],["2024-07-25T18:07:03.010000"],["2024-07-25T18:07:04.010000"],["2024-07-25T18:07:05.010000"],["2024-07-25T18:07:06.010000"],["2024-07-25T18:07:07.010000"],["2024-07-25T18:07:08.010000"],["2024-07-25T18:07:09.010000"],["2024-07-25T18:07:10.010000"],["2024-07-25T18:07:11.010000"],["2024-07-25T18:07:12.010000"],["2024-07-25T18:07:13.010000"],["2024-07-25T18:07:14.010000"],["2024-07-25T18:07:15.010000"],["2024-07-25T18:07:16.010000"],["2024-07-25T18:07:17.010000"],["2024-07-25T18:07:18.010000"],["2024-07-25T18:07:19.010000"],["2024-07-25T18:07:20.010000"],["2024-07-25T18:07:21.010000"],["2024-07-25T18:07:22.010000"],["2024-07-25T18:07:23.010000"],["2024-07-25T18:07:24.010000"],["2024-07-25T18:07:25.010000"],["2024-07-25T18:07:26.010000"],["2024-07-25T18:07:27.010000"],["2024-07-25T18:07:28.010000"],["2024-07-25T18:07:29.010000"],["2024-07-25T18:07:30.010000"],["2024-07-25T18:07:31.010000"],["2024-07-25T18:07:32.010000"],["2024-07-25T18:07:33.010000"],["2024-07-25T18:07:34.010000"],["2024-07-25T18:07:35.010000"],["2024-07-25T18:07:36.010000"],["2024-07-25T18:07:37.010000"],["2024-07-25T18:07:38.010000"],["2024-07-25T18:07:39.010000"],["2024-07-25T18:07:40.010000"],["2024-07-25T18:07:41.010000"],["2024-07-25T18:07:42.010000"],["2024-07-25T18:07:43.010000"],["2024-07-25T18:07:44.010000"],["2024-07-25T18:07:45.010000"],["2024-07-25T18:07:46.010000"],["2024-07-25T18:07:47.010000"],["2024-07-25T18:07:48.010000"],["2024-07-25T18:07:49.010000"],["2024-07-25T18:07:50.010000"],["2024-07-25T18:07:51.010000"],["2024-07-25T18:07:52.010000"],["2024-07-25T18:07:53.010000"],["2024-07-25T18:07:54.010000"],["2024-07-25T18:07:55.010000"],["2024-07-25T18:07:56.010000"],["2024-07-25T18:07:57.010000"],["2024-07-25T18:07:58.010000"],["2024-07-25T18:07:59.010000"],["2024-07-25T18:08:00.010000"],["2024-07-25T18:08:01.010000"],["2024-07-25T18:08:02.010000"],["2024-07-25T18:08:03.010000"],["2024-07-25T18:08:04.010000"],["2024-07-25T18:08:05.010000"],["2024-07-25T18:08:06.010000"],["2024-07-25T18:08:07.010000"],["2024-07-25T18:08:08.010000"],["2024-07-25T18:08:09.010000"],["2024-07-25T18:08:10.010000"],["2024-07-25T18:08:11.010000"],["2024-07-25T18:08:12.010000"],["2024-07-25T18:08:13.010000"],["2024-07-25T18:08:14.010000"],["2024-07-25T18:08:15.010000"],["2024-07-25T18:08:16.010000"],["2024-07-25T18:08:17.010000"],["2024-07-25T18:08:18.010000"],["2024-07-25T18:08:19.010000"],["2024-07-25T18:08:20.010000"],["2024-07-25T18:08:21.010000"],["2024-07-25T18:08:22.010000"],["2024-07-25T18:08:23.010000"],["2024-07-25T18:08:24.010000"],["2024-07-25T18:08:25.010000"],["2024-07-25T18:08:26.010000"],["2024-07-25T18:08:27.010000"],["2024-07-25T18:08:28.010000"],["2024-07-25T18:08:29.010000"],["2024-07-25T18:08:30.010000"],["2024-07-25T18:08:31.010000"],["2024-07-25T18:08:32.010000"],["2024-07-25T18:08:33.010000"],["2024-07-25T18:08:34.010000"],["2024-07-25T18:08:35.010000"],["2024-07-25T18:08:36.010000"],["2024-07-25T18:08:37.010000"],["2024-07-25T18:08:38.010000"],["2024-07-25T18:08:39.010000"],["2024-07-25T18:08:40.010000"],["2024-07-25T18:08:41.010000"],["2024-07-25T18:08:42.010000"],["2024-07-25T18:08:43.010000"],["2024-07-25T18:08:44.010000"],["2024-07-25T18:08:45.010000"],["2024-07-25T18:08:46.010000"],["2024-07-25T18:08:47.010000"],["2024-07-25T18:08:48.010000"],["2024-07-25T18:08:49.010000"],["2024-07-25T18:08:50.010000"],["2024-07-25T18:08:51.010000"],["2024-07-25T18:08:52.010000"],["2024-07-25T18:08:53.010000"],["2024-07-25T18:08:54.010000"],["2024-07-25T18:08:55.010000"],["2024-07-25T18:08:56.010000"],["2024-07-25T18:08:57.010000"],["2024-07-25T18:08:58.010000"],["2024-07-25T18:08:59.010000"],["2024-07-25T18:09:00.010000"],["2024-07-25T18:09:01.010000"],["2024-07-25T18:09:02.010000"],["2024-07-25T18:09:03.010000"],["2024-07-25T18:09:04.010000"],["2024-07-25T18:09:05.010000"],["2024-07-25T18:09:06.010000"],["2024-07-25T18:09:07.010000"],["2024-07-25T18:09:08.010000"],["2024-07-25T18:09:09.010000"],["2024-07-25T18:09:10.010000"],["2024-07-25T18:09:11.010000"],["2024-07-25T18:09:12.010000"],["2024-07-25T18:09:13.010000"],["2024-07-25T18:09:14.010000"],["2024-07-25T18:09:15.010000"],["2024-07-25T18:09:16.010000"],["2024-07-25T18:09:17.010000"],["2024-07-25T18:09:18.010000"],["2024-07-25T18:09:19.010000"],["2024-07-25T18:09:20.010000"],["2024-07-25T18:09:21.010000"],["2024-07-25T18:09:22.010000"],["2024-07-25T18:09:23.010000"],["2024-07-25T18:09:24.010000"],["2024-07-25T18:09:25.010000"],["2024-07-25T18:09:26.010000"],["2024-07-25T18:09:27.010000"],["2024-07-25T18:09:28.010000"],["2024-07-25T18:09:29.010000"],["2024-07-25T18:09:30.010000"],["2024-07-25T18:09:31.010000"],["2024-07-25T18:09:32.010000"],["2024-07-25T18:09:33.010000"],["2024-07-25T18:09:34.010000"],["2024-07-25T18:09:35.010000"],["2024-07-25T18:09:36.010000"],["2024-07-25T18:09:37.010000"],["2024-07-25T18:09:38.010000"],["2024-07-25T18:09:39.010000"],["2024-07-25T18:09:40.010000"],["2024-07-25T18:09:41.010000"],["2024-07-25T18:09:42.010000"],["2024-07-25T18:09:43.010000"],["2024-07-25T18:09:44.010000"],["2024-07-25T18:09:45.010000"],["2024-07-25T18:09:46.010000"],["2024-07-25T18:09:47.010000"],["2024-07-25T18:09:48.010000"],["2024-07-25T18:09:49.010000"],["2024-07-25T18:09:50.010000"],["2024-07-25T18:09:51.010000"],["2024-07-25T18:09:52.010000"],["2024-07-25T18:09:53.010000"],["2024-07-25T18:09:54.010000"],["2024-07-25T18:09:55.010000"],["2024-07-25T18:09:56.010000"],["2024-07-25T18:09:57.010000"],["2024-07-25T18:09:58.010000"],["2024-07-25T18:09:59.010000"],["2024-07-25T18:10:00.010000"],["2024-07-25T18:10:01.010000"],["2024-07-25T18:10:02.010000"],["2024-07-25T18:10:03.010000"],["2024-07-25T18:10:04.010000"],["2024-07-25T18:10:05.010000"],["2024-07-25T18:10:06.010000"],["2024-07-25T18:10:07.010000"],["2024-07-25T18:10:08.010000"],["2024-07-25T18:10:09.010000"],["2024-07-25T18:10:10.010000"],["2024-07-25T18:10:11.010000"],["2024-07-25T18:10:12.010000"],["2024-07-25T18:10:13.010000"],["2024-07-25T18:10:14.010000"],["2024-07-25T18:10:15.010000"],["2024-07-25T18:10:16.010000"],["2024-07-25T18:10:17.010000"],["2024-07-25T18:10:18.010000"],["2024-07-25T18:10:19.010000"],["2024-07-25T18:10:20.010000"],["2024-07-25T18:10:21.010000"],["2024-07-25T18:10:22.010000"],["2024-07-25T18:10:23.010000"],["2024-07-25T18:10:24.010000"],["2024-07-25T18:10:25.010000"],["2024-07-25T18:10:26.010000"],["2024-07-25T18:10:27.010000"],["2024-07-25T18:10:28.010000"],["2024-07-25T18:10:29.010000"],["2024-07-25T18:10:30.010000"],["2024-07-25T18:10:31.010000"],["2024-07-25T18:10:32.010000"],["2024-07-25T18:10:33.010000"],["2024-07-25T18:10:34.010000"],["2024-07-25T18:10:35.010000"],["2024-07-25T18:10:36.010000"],["2024-07-25T18:10:37.010000"],["2024-07-25T18:10:38.010000"],["2024-07-25T18:10:39.010000"],["2024-07-25T18:10:40.010000"],["2024-07-25T18:10:41.010000"],["2024-07-25T18:10:42.010000"],["2024-07-25T18:10:43.010000"],["2024-07-25T18:10:44.010000"],["2024-07-25T18:10:45.010000"],["2024-07-25T18:10:46.010000"],["2024-07-25T18:10:47.010000"],["2024-07-25T18:10:48.010000"],["2024-07-25T18:10:49.010000"],["2024-07-25T18:10:50.010000"],["2024-07-25T18:10:51.010000"],["2024-07-25T18:10:52.010000"],["2024-07-25T18:10:53.010000"],["2024-07-25T18:10:54.010000"],["2024-07-25T18:10:55.010000"],["2024-07-25T18:10:56.010000"],["2024-07-25T18:10:57.010000"],["2024-07-25T18:10:58.010000"],["2024-07-25T18:10:59.010000"],["2024-07-25T18:11:00.010000"],["2024-07-25T18:11:01.010000"],["2024-07-25T18:11:02.010000"],["2024-07-25T18:11:03.010000"],["2024-07-25T18:11:04.010000"],["2024-07-25T18:11:05.010000"],["2024-07-25T18:11:06.010000"],["2024-07-25T18:11:07.010000"],["2024-07-25T18:11:08.010000"],["2024-07-25T18:11:09.010000"],["2024-07-25T18:11:10.010000"],["2024-07-25T18:11:11.010000"],["2024-07-25T18:11:12.010000"],["2024-07-25T18:11:13.010000"],["2024-07-25T18:11:14.010000"],["2024-07-25T18:11:15.010000"],["2024-07-25T18:11:16.010000"],["2024-07-25T18:11:17.010000"],["2024-07-25T18:11:18.010000"],["2024-07-25T18:11:19.010000"],["2024-07-25T18:11:20.010000"],["2024-07-25T18:11:21.010000"],["2024-07-25T18:11:22.010000"],["2024-07-25T18:11:23.010000"],["2024-07-25T18:11:24.010000"],["2024-07-25T18:11:25.010000"],["2024-07-25T18:11:26.010000"],["2024-07-25T18:11:27.010000"],["2024-07-25T18:11:28.010000"],["2024-07-25T18:11:29.010000"],["2024-07-25T18:11:30.010000"],["2024-07-25T18:11:31.010000"],["2024-07-25T18:11:32.010000"],["2024-07-25T18:11:33.010000"],["2024-07-25T18:11:34.010000"],["2024-07-25T18:11:35.010000"],["2024-07-25T18:11:36.010000"],["2024-07-25T18:11:37.010000"],["2024-07-25T18:11:38.010000"],["2024-07-25T18:11:39.010000"],["2024-07-25T18:11:40.010000"],["2024-07-25T18:11:41.010000"],["2024-07-25T18:11:42.010000"],["2024-07-25T18:11:43.010000"],["2024-07-25T18:11:44.010000"],["2024-07-25T18:11:45.010000"],["2024-07-25T18:11:46.010000"],["2024-07-25T18:11:47.010000"],["2024-07-25T18:11:48.010000"],["2024-07-25T18:11:49.010000"],["2024-07-25T18:11:50.010000"],["2024-07-25T18:11:51.010000"],["2024-07-25T18:11:52.010000"],["2024-07-25T18:11:53.010000"],["2024-07-25T18:11:54.010000"],["2024-07-25T18:11:55.010000"],["2024-07-25T18:11:56.010000"],["2024-07-25T18:11:57.010000"],["2024-07-25T18:11:58.010000"],["2024-07-25T18:11:59.010000"],["2024-07-25T18:12:00.010000"],["2024-07-25T18:12:01.010000"],["2024-07-25T18:12:02.010000"],["2024-07-25T18:12:03.010000"],["2024-07-25T18:12:04.010000"],["2024-07-25T18:12:05.010000"],["2024-07-25T18:12:06.010000"],["2024-07-25T18:12:07.010000"],["2024-07-25T18:12:08.010000"],["2024-07-25T18:12:09.010000"],["2024-07-25T18:12:10.010000"],["2024-07-25T18:12:11.010000"],["2024-07-25T18:12:12.010000"],["2024-07-25T18:12:13.010000"],["2024-07-25T18:12:14.010000"],["2024-07-25T18:12:15.010000"],["2024-07-25T18:12:16.010000"],["2024-07-25T18:12:17.010000"],["2024-07-25T18:12:18.010000"],["2024-07-25T18:12:19.010000"],["2024-07-25T18:12:20.010000"],["2024-07-25T18:12:21.010000"],["2024-07-25T18:12:22.010000"],["2024-07-25T18:12:23.010000"],["2024-07-25T18:12:24.010000"],["2024-07-25T18:12:25.010000"],["2024-07-25T18:12:26.010000"],["2024-07-25T18:12:27.010000"],["2024-07-25T18:12:28.010000"],["2024-07-25T18:12:29.010000"],["2024-07-25T18:12:30.010000"],["2024-07-25T18:12:31.010000"],["2024-07-25T18:12:32.010000"],["2024-07-25T18:12:33.010000"],["2024-07-25T18:12:34.010000"],["2024-07-25T18:12:35.010000"],["2024-07-25T18:12:36.010000"],["2024-07-25T18:12:37.010000"],["2024-07-25T18:12:38.010000"],["2024-07-25T18:12:39.010000"],["2024-07-25T18:12:40.010000"],["2024-07-25T18:12:41.010000"],["2024-07-25T18:12:42.010000"],["2024-07-25T18:12:43.010000"],["2024-07-25T18:12:44.010000"],["2024-07-25T18:12:45.010000"],["2024-07-25T18:12:46.010000"],["2024-07-25T18:12:47.010000"],["2024-07-25T18:12:48.010000"],["2024-07-25T18:12:49.010000"],["2024-07-25T18:12:50.010000"],["2024-07-25T18:12:51.010000"],["2024-07-25T18:12:52.010000"],["2024-07-25T18:12:53.010000"],["2024-07-25T18:12:54.010000"],["2024-07-25T18:12:55.010000"],["2024-07-25T18:12:56.010000"],["2024-07-25T18:12:57.010000"],["2024-07-25T18:12:58.010000"],["2024-07-25T18:12:59.010000"],["2024-07-25T18:13:00.010000"],["2024-07-25T18:13:01.010000"],["2024-07-25T18:13:02.010000"],["2024-07-25T18:13:03.010000"],["2024-07-25T18:13:04.010000"],["2024-07-25T18:13:05.010000"],["2024-07-25T18:13:06.010000"],["2024-07-25T18:13:07.010000"],["2024-07-25T18:13:08.010000"],["2024-07-25T18:13:09.010000"],["2024-07-25T18:13:10.010000"],["2024-07-25T18:13:11.010000"],["2024-07-25T18:13:12.010000"],["2024-07-25T18:13:13.010000"],["2024-07-25T18:13:14.010000"],["2024-07-25T18:13:15.010000"],["2024-07-25T18:13:16.010000"],["2024-07-25T18:13:17.010000"],["2024-07-25T18:13:18.010000"],["2024-07-25T18:13:19.010000"],["2024-07-25T18:13:20.010000"],["2024-07-25T18:13:21.010000"],["2024-07-25T18:13:22.010000"],["2024-07-25T18:13:23.010000"],["2024-07-25T18:13:24.010000"],["2024-07-25T18:13:25.010000"],["2024-07-25T18:13:26.010000"],["2024-07-25T18:13:27.010000"],["2024-07-25T18:13:28.010000"],["2024-07-25T18:13:29.010000"],["2024-07-25T18:13:30.010000"],["2024-07-25T18:13:31.010000"],["2024-07-25T18:13:32.010000"],["2024-07-25T18:13:33.010000"],["2024-07-25T18:13:34.010000"],["2024-07-25T18:13:35.010000"],["2024-07-25T18:13:36.010000"],["2024-07-25T18:13:37.010000"],["2024-07-25T18:13:38.010000"],["2024-07-25T18:13:39.010000"],["2024-07-25T18:13:40.010000"],["2024-07-25T18:13:41.010000"],["2024-07-25T18:13:42.010000"],["2024-07-25T18:13:43.010000"],["2024-07-25T18:13:44.010000"],["2024-07-25T18:13:45.010000"],["2024-07-25T18:13:46.010000"],["2024-07-25T18:13:47.010000"],["2024-07-25T18:13:48.010000"],["2024-07-25T18:13:49.010000"],["2024-07-25T18:13:50.010000"],["2024-07-25T18:13:51.010000"],["2024-07-25T18:13:52.010000"],["2024-07-25T18:13:53.010000"],["2024-07-25T18:13:54.010000"],["2024-07-25T18:13:55.010000"],["2024-07-25T18:13:56.010000"],["2024-07-25T18:13:57.010000"],["2024-07-25T18:13:58.010000"],["2024-07-25T18:13:59.010000"],["2024-07-25T18:14:00.010000"],["2024-07-25T18:14:01.010000"],["2024-07-25T18:14:02.010000"],["2024-07-25T18:14:03.010000"],["2024-07-25T18:14:04.010000"],["2024-07-25T18:14:05.010000"],["2024-07-25T18:14:06.010000"],["2024-07-25T18:14:07.010000"],["2024-07-25T18:14:08.010000"],["2024-07-25T18:14:09.010000"],["2024-07-25T18:14:10.010000"],["2024-07-25T18:14:11.010000"],["2024-07-25T18:14:12.010000"],["2024-07-25T18:14:13.010000"],["2024-07-25T18:14:14.010000"],["2024-07-25T18:14:15.010000"],["2024-07-25T18:14:16.010000"],["2024-07-25T18:14:17.010000"],["2024-07-25T18:14:18.010000"],["2024-07-25T18:14:19.010000"],["2024-07-25T18:14:20.010000"],["2024-07-25T18:14:21.010000"],["2024-07-25T18:14:22.010000"],["2024-07-25T18:14:23.010000"],["2024-07-25T18:14:24.010000"],["2024-07-25T18:14:25.010000"],["2024-07-25T18:14:26.010000"],["2024-07-25T18:14:27.010000"],["2024-07-25T18:14:28.010000"],["2024-07-25T18:14:29.010000"],["2024-07-25T18:14:30.010000"],["2024-07-25T18:14:31.010000"],["2024-07-25T18:14:32.010000"],["2024-07-25T18:14:33.010000"],["2024-07-25T18:14:34.010000"],["2024-07-25T18:14:35.010000"],["2024-07-25T18:14:36.010000"],["2024-07-25T18:14:37.010000"],["2024-07-25T18:14:38.010000"],["2024-07-25T18:14:39.010000"],["2024-07-25T18:14:40.010000"],["2024-07-25T18:14:41.010000"],["2024-07-25T18:14:42.010000"],["2024-07-25T18:14:43.010000"],["2024-07-25T18:14:44.010000"],["2024-07-25T18:14:45.010000"],["2024-07-25T18:14:46.010000"],["2024-07-25T18:14:47.010000"],["2024-07-25T18:14:48.010000"],["2024-07-25T18:14:49.010000"],["2024-07-25T18:14:50.010000"],["2024-07-25T18:14:51.010000"],["2024-07-25T18:14:52.010000"],["2024-07-25T18:14:53.010000"],["2024-07-25T18:14:54.010000"],["2024-07-25T18:14:55.010000"],["2024-07-25T18:14:56.010000"],["2024-07-25T18:14:57.010000"],["2024-07-25T18:14:58.010000"],["2024-07-25T18:14:59.010000"],["2024-07-25T18:15:00.010000"],["2024-07-25T18:15:01.010000"],["2024-07-25T18:15:02.010000"],["2024-07-25T18:15:03.010000"],["2024-07-25T18:15:04.010000"],["2024-07-25T18:15:05.010000"],["2024-07-25T18:15:06.010000"],["2024-07-25T18:15:07.010000"],["2024-07-25T18:15:08.010000"],["2024-07-25T18:15:09.010000"],["2024-07-25T18:15:10.010000"],["2024-07-25T18:15:11.010000"],["2024-07-25T18:15:12.010000"],["2024-07-25T18:15:13.010000"],["2024-07-25T18:15:14.010000"],["2024-07-25T18:15:15.010000"],["2024-07-25T18:15:16.010000"],["2024-07-25T18:15:17.010000"],["2024-07-25T18:15:18.010000"],["2024-07-25T18:15:19.010000"],["2024-07-25T18:15:20.010000"],["2024-07-25T18:15:21.010000"],["2024-07-25T18:15:22.010000"],["2024-07-25T18:15:23.010000"],["2024-07-25T18:15:24.010000"],["2024-07-25T18:15:25.010000"],["2024-07-25T18:15:26.010000"],["2024-07-25T18:15:27.010000"],["2024-07-25T18:15:28.010000"],["2024-07-25T18:15:29.010000"],["2024-07-25T18:15:30.010000"],["2024-07-25T18:15:31.010000"],["2024-07-25T18:15:32.010000"],["2024-07-25T18:15:33.010000"],["2024-07-25T18:15:34.010000"],["2024-07-25T18:15:35.010000"],["2024-07-25T18:15:36.010000"],["2024-07-25T18:15:37.010000"],["2024-07-25T18:15:38.010000"],["2024-07-25T18:15:39.010000"],["2024-07-25T18:15:40.010000"],["2024-07-25T18:15:41.010000"],["2024-07-25T18:15:42.010000"],["2024-07-25T18:15:43.010000"],["2024-07-25T18:15:44.010000"],["2024-07-25T18:15:45.010000"],["2024-07-25T18:15:46.010000"],["2024-07-25T18:15:47.010000"],["2024-07-25T18:15:48.010000"],["2024-07-25T18:15:49.010000"],["2024-07-25T18:15:50.010000"],["2024-07-25T18:15:51.010000"],["2024-07-25T18:15:52.010000"],["2024-07-25T18:15:53.010000"],["2024-07-25T18:15:54.010000"],["2024-07-25T18:15:55.010000"],["2024-07-25T18:15:56.010000"],["2024-07-25T18:15:57.010000"],["2024-07-25T18:15:58.010000"],["2024-07-25T18:15:59.010000"],["2024-07-25T18:16:00.010000"],["2024-07-25T18:16:01.010000"],["2024-07-25T18:16:02.010000"],["2024-07-25T18:16:03.010000"],["2024-07-25T18:16:04.010000"],["2024-07-25T18:16:05.010000"],["2024-07-25T18:16:06.010000"],["2024-07-25T18:16:07.010000"],["2024-07-25T18:16:08.010000"],["2024-07-25T18:16:09.010000"],["2024-07-25T18:16:10.010000"],["2024-07-25T18:16:11.010000"],["2024-07-25T18:16:12.010000"],["2024-07-25T18:16:13.010000"],["2024-07-25T18:16:14.010000"],["2024-07-25T18:16:15.010000"],["2024-07-25T18:16:16.010000"],["2024-07-25T18:16:17.010000"],["2024-07-25T18:16:18.010000"],["2024-07-25T18:16:19.010000"],["2024-07-25T18:16:20.010000"],["2024-07-25T18:16:21.010000"],["2024-07-25T18:16:22.010000"],["2024-07-25T18:16:23.010000"],["2024-07-25T18:16:24.010000"],["2024-07-25T18:16:25.010000"],["2024-07-25T18:16:26.010000"],["2024-07-25T18:16:27.010000"],["2024-07-25T18:16:28.010000"],["2024-07-25T18:16:29.010000"],["2024-07-25T18:16:30.010000"],["2024-07-25T18:16:31.010000"],["2024-07-25T18:16:32.010000"],["2024-07-25T18:16:33.010000"],["2024-07-25T18:16:34.010000"],["2024-07-25T18:16:35.010000"],["2024-07-25T18:16:36.010000"],["2024-07-25T18:16:37.010000"],["2024-07-25T18:16:38.010000"],["2024-07-25T18:16:39.010000"],["2024-07-25T18:16:40.010000"],["2024-07-25T18:16:41.010000"],["2024-07-25T18:16:42.010000"],["2024-07-25T18:16:43.010000"],["2024-07-25T18:16:44.010000"],["2024-07-25T18:16:45.010000"],["2024-07-25T18:16:46.010000"],["2024-07-25T18:16:47.010000"],["2024-07-25T18:16:48.010000"],["2024-07-25T18:16:49.010000"],["2024-07-25T18:16:50.010000"],["2024-07-25T18:16:51.010000"],["2024-07-25T18:16:52.010000"],["2024-07-25T18:16:53.010000"],["2024-07-25T18:16:54.010000"],["2024-07-25T18:16:55.010000"],["2024-07-25T18:16:56.010000"],["2024-07-25T18:16:57.010000"],["2024-07-25T18:16:58.010000"],["2024-07-25T18:16:59.010000"],["2024-07-25T18:17:00.010000"],["2024-07-25T18:17:01.010000"],["2024-07-25T18:17:02.010000"],["2024-07-25T18:17:03.010000"],["2024-07-25T18:17:04.010000"],["2024-07-25T18:17:05.010000"],["2024-07-25T18:17:06.010000"],["2024-07-25T18:17:07.010000"],["2024-07-25T18:17:08.010000"],["2024-07-25T18:17:09.010000"],["2024-07-25T18:17:10.010000"],["2024-07-25T18:17:11.010000"],["2024-07-25T18:17:12.010000"],["2024-07-25T18:17:13.010000"],["2024-07-25T18:17:14.010000"],["2024-07-25T18:17:15.010000"],["2024-07-25T18:17:16.010000"],["2024-07-25T18:17:17.010000"],["2024-07-25T18:17:18.010000"],["2024-07-25T18:17:19.010000"],["2024-07-25T18:17:20.010000"],["2024-07-25T18:17:21.010000"],["2024-07-25T18:17:22.010000"],["2024-07-25T18:17:23.010000"],["2024-07-25T18:17:24.010000"],["2024-07-25T18:17:25.010000"],["2024-07-25T18:17:26.010000"],["2024-07-25T18:17:27.010000"],["2024-07-25T18:17:28.010000"],["2024-07-25T18:17:29.010000"],["2024-07-25T18:17:30.010000"],["2024-07-25T18:17:31.010000"],["2024-07-25T18:17:32.010000"],["2024-07-25T18:17:33.010000"],["2024-07-25T18:17:34.010000"],["2024-07-25T18:17:35.010000"],["2024-07-25T18:17:36.010000"],["2024-07-25T18:17:37.010000"],["2024-07-25T18:17:38.010000"],["2024-07-25T18:17:39.010000"],["2024-07-25T18:17:40.010000"],["2024-07-25T18:17:41.010000"],["2024-07-25T18:17:42.010000"],["2024-07-25T18:17:43.010000"],["2024-07-25T18:17:44.010000"],["2024-07-25T18:17:45.010000"],["2024-07-25T18:17:46.010000"],["2024-07-25T18:17:47.010000"],["2024-07-25T18:17:48.010000"],["2024-07-25T18:17:49.010000"],["2024-07-25T18:17:50.010000"],["2024-07-25T18:17:51.010000"],["2024-07-25T18:17:52.010000"],["2024-07-25T18:17:53.010000"],["2024-07-25T18:17:54.010000"],["2024-07-25T18:17:55.010000"],["2024-07-25T18:17:56.010000"],["2024-07-25T18:17:57.010000"],["2024-07-25T18:17:58.010000"],["2024-07-25T18:17:59.010000"],["2024-07-25T18:18:00.010000"],["2024-07-25T18:18:01.010000"],["2024-07-25T18:18:02.010000"],["2024-07-25T18:18:03.010000"],["2024-07-25T18:18:04.010000"],["2024-07-25T18:18:05.010000"],["2024-07-25T18:18:06.010000"],["2024-07-25T18:18:07.010000"],["2024-07-25T18:18:08.010000"],["2024-07-25T18:18:09.010000"],["2024-07-25T18:18:10.010000"],["2024-07-25T18:18:11.010000"],["2024-07-25T18:18:12.010000"],["2024-07-25T18:18:13.010000"],["2024-07-25T18:18:14.010000"],["2024-07-25T18:18:15.010000"],["2024-07-25T18:18:16.010000"],["2024-07-25T18:18:17.010000"],["2024-07-25T18:18:18.010000"],["2024-07-25T18:18:19.010000"],["2024-07-25T18:18:20.010000"],["2024-07-25T18:18:21.010000"],["2024-07-25T18:18:22.010000"],["2024-07-25T18:18:23.010000"],["2024-07-25T18:18:24.010000"],["2024-07-25T18:18:25.010000"],["2024-07-25T18:18:26.010000"],["2024-07-25T18:18:27.010000"],["2024-07-25T18:18:28.010000"],["2024-07-25T18:18:29.010000"],["2024-07-25T18:18:30.010000"],["2024-07-25T18:18:31.010000"],["2024-07-25T18:18:32.010000"],["2024-07-25T18:18:33.010000"],["2024-07-25T18:18:34.010000"],["2024-07-25T18:18:35.010000"],["2024-07-25T18:18:36.010000"],["2024-07-25T18:18:37.010000"],["2024-07-25T18:18:38.010000"],["2024-07-25T18:18:39.010000"],["2024-07-25T18:18:40.010000"],["2024-07-25T18:18:41.010000"],["2024-07-25T18:18:42.010000"],["2024-07-25T18:18:43.010000"],["2024-07-25T18:18:44.010000"],["2024-07-25T18:18:45.010000"],["2024-07-25T18:18:46.010000"],["2024-07-25T18:18:47.010000"],["2024-07-25T18:18:48.010000"],["2024-07-25T18:18:49.010000"],["2024-07-25T18:18:50.010000"],["2024-07-25T18:18:51.010000"],["2024-07-25T18:18:52.010000"],["2024-07-25T18:18:53.010000"],["2024-07-25T18:18:54.010000"],["2024-07-25T18:18:55.010000"],["2024-07-25T18:18:56.010000"],["2024-07-25T18:18:57.010000"],["2024-07-25T18:18:58.010000"],["2024-07-25T18:18:59.010000"],["2024-07-25T18:19:00.010000"],["2024-07-25T18:19:01.010000"],["2024-07-25T18:19:02.010000"],["2024-07-25T18:19:03.010000"],["2024-07-25T18:19:04.010000"],["2024-07-25T18:19:05.010000"],["2024-07-25T18:19:06.010000"],["2024-07-25T18:19:07.010000"],["2024-07-25T18:19:08.010000"],["2024-07-25T18:19:09.010000"],["2024-07-25T18:19:10.010000"],["2024-07-25T18:19:11.010000"],["2024-07-25T18:19:12.010000"],["2024-07-25T18:19:13.010000"],["2024-07-25T18:19:14.010000"],["2024-07-25T18:19:15.010000"],["2024-07-25T18:19:16.010000"],["2024-07-25T18:19:17.010000"],["2024-07-25T18:19:18.010000"],["2024-07-25T18:19:19.010000"],["2024-07-25T18:19:20.010000"],["2024-07-25T18:19:21.010000"],["2024-07-25T18:19:22.010000"],["2024-07-25T18:19:23.010000"],["2024-07-25T18:19:24.010000"],["2024-07-25T18:19:25.010000"],["2024-07-25T18:19:26.010000"],["2024-07-25T18:19:27.010000"],["2024-07-25T18:19:28.010000"],["2024-07-25T18:19:29.010000"],["2024-07-25T18:19:30.010000"],["2024-07-25T18:19:31.010000"],["2024-07-25T18:19:32.010000"],["2024-07-25T18:19:33.010000"],["2024-07-25T18:19:34.010000"],["2024-07-25T18:19:35.010000"],["2024-07-25T18:19:36.010000"],["2024-07-25T18:19:37.010000"],["2024-07-25T18:19:38.010000"],["2024-07-25T18:19:39.010000"],["2024-07-25T18:19:40.010000"],["2024-07-25T18:19:41.010000"],["2024-07-25T18:19:42.010000"],["2024-07-25T18:19:43.010000"],["2024-07-25T18:19:44.010000"],["2024-07-25T18:19:45.010000"],["2024-07-25T18:19:46.010000"],["2024-07-25T18:19:47.010000"],["2024-07-25T18:19:48.010000"],["2024-07-25T18:19:49.010000"],["2024-07-25T18:19:50.010000"],["2024-07-25T18:19:51.010000"],["2024-07-25T18:19:52.010000"],["2024-07-25T18:19:53.010000"],["2024-07-25T18:19:54.010000"],["2024-07-25T18:19:55.010000"],["2024-07-25T18:19:56.010000"],["2024-07-25T18:19:57.010000"],["2024-07-25T18:19:58.010000"],["2024-07-25T18:19:59.010000"],["2024-07-25T18:20:00.010000"],["2024-07-25T18:20:01.010000"],["2024-07-25T18:20:02.010000"],["2024-07-25T18:20:03.010000"],["2024-07-25T18:20:04.010000"],["2024-07-25T18:20:05.010000"],["2024-07-25T18:20:06.010000"],["2024-07-25T18:20:07.010000"],["2024-07-25T18:20:08.010000"],["2024-07-25T18:20:09.010000"],["2024-07-25T18:20:10.010000"],["2024-07-25T18:20:11.010000"],["2024-07-25T18:20:12.010000"],["2024-07-25T18:20:13.010000"],["2024-07-25T18:20:14.010000"],["2024-07-25T18:20:15.010000"],["2024-07-25T18:20:16.010000"],["2024-07-25T18:20:17.010000"],["2024-07-25T18:20:18.010000"],["2024-07-25T18:20:19.010000"],["2024-07-25T18:20:20.010000"],["2024-07-25T18:20:21.010000"],["2024-07-25T18:20:22.010000"],["2024-07-25T18:20:23.010000"],["2024-07-25T18:20:24.010000"],["2024-07-25T18:20:25.010000"],["2024-07-25T18:20:26.010000"],["2024-07-25T18:20:27.010000"],["2024-07-25T18:20:28.010000"],["2024-07-25T18:20:29.010000"],["2024-07-25T18:20:30.010000"],["2024-07-25T18:20:31.010000"],["2024-07-25T18:20:32.010000"],["2024-07-25T18:20:33.010000"],["2024-07-25T18:20:34.010000"],["2024-07-25T18:20:35.010000"],["2024-07-25T18:20:36.010000"],["2024-07-25T18:20:37.010000"],["2024-07-25T18:20:38.010000"],["2024-07-25T18:20:39.010000"],["2024-07-25T18:20:40.010000"],["2024-07-25T18:20:41.010000"],["2024-07-25T18:20:42.010000"],["2024-07-25T18:20:43.010000"],["2024-07-25T18:20:44.010000"],["2024-07-25T18:20:45.010000"],["2024-07-25T18:20:46.010000"],["2024-07-25T18:20:47.010000"],["2024-07-25T18:20:48.010000"],["2024-07-25T18:20:49.010000"],["2024-07-25T18:20:50.010000"],["2024-07-25T18:20:51.010000"],["2024-07-25T18:20:52.010000"],["2024-07-25T18:20:53.010000"],["2024-07-25T18:20:54.010000"],["2024-07-25T18:20:55.010000"],["2024-07-25T18:20:56.010000"],["2024-07-25T18:20:57.010000"],["2024-07-25T18:20:58.010000"],["2024-07-25T18:20:59.010000"],["2024-07-25T18:21:00.010000"],["2024-07-25T18:21:01.010000"],["2024-07-25T18:21:02.010000"],["2024-07-25T18:21:03.010000"],["2024-07-25T18:21:04.010000"],["2024-07-25T18:21:05.010000"],["2024-07-25T18:21:06.010000"],["2024-07-25T18:21:07.010000"],["2024-07-25T18:21:08.010000"],["2024-07-25T18:21:09.010000"],["2024-07-25T18:21:10.010000"],["2024-07-25T18:21:11.010000"],["2024-07-25T18:21:12.010000"],["2024-07-25T18:21:13.010000"],["2024-07-25T18:21:14.010000"],["2024-07-25T18:21:15.010000"],["2024-07-25T18:21:16.010000"],["2024-07-25T18:21:17.010000"],["2024-07-25T18:21:18.010000"],["2024-07-25T18:21:19.010000"],["2024-07-25T18:21:20.010000"],["2024-07-25T18:21:21.010000"],["2024-07-25T18:21:22.010000"],["2024-07-25T18:21:23.010000"],["2024-07-25T18:21:24.010000"],["2024-07-25T18:21:25.010000"],["2024-07-25T18:21:26.010000"],["2024-07-25T18:21:27.010000"],["2024-07-25T18:21:28.010000"],["2024-07-25T18:21:29.010000"],["2024-07-25T18:21:30.010000"],["2024-07-25T18:21:31.010000"],["2024-07-25T18:21:32.010000"],["2024-07-25T18:21:33.010000"],["2024-07-25T18:21:34.010000"],["2024-07-25T18:21:35.010000"],["2024-07-25T18:21:36.010000"],["2024-07-25T18:21:37.010000"],["2024-07-25T18:21:38.010000"],["2024-07-25T18:21:39.010000"],["2024-07-25T18:21:40.010000"],["2024-07-25T18:21:41.010000"],["2024-07-25T18:21:42.010000"],["2024-07-25T18:21:43.010000"],["2024-07-25T18:21:44.010000"],["2024-07-25T18:21:45.010000"],["2024-07-25T18:21:46.010000"],["2024-07-25T18:21:47.010000"],["2024-07-25T18:21:48.010000"],["2024-07-25T18:21:49.010000"],["2024-07-25T18:21:50.010000"],["2024-07-25T18:21:51.010000"],["2024-07-25T18:21:52.010000"],["2024-07-25T18:21:53.010000"],["2024-07-25T18:21:54.010000"],["2024-07-25T18:21:55.010000"],["2024-07-25T18:21:56.010000"],["2024-07-25T18:21:57.010000"],["2024-07-25T18:21:58.010000"],["2024-07-25T18:21:59.010000"],["2024-07-25T18:22:00.010000"],["2024-07-25T18:22:01.010000"],["2024-07-25T18:22:02.010000"],["2024-07-25T18:22:03.010000"],["2024-07-25T18:22:04.010000"],["2024-07-25T18:22:05.010000"],["2024-07-25T18:22:06.010000"],["2024-07-25T18:22:07.010000"],["2024-07-25T18:22:08.010000"],["2024-07-25T18:22:09.010000"],["2024-07-25T18:22:10.010000"],["2024-07-25T18:22:11.010000"],["2024-07-25T18:22:12.010000"],["2024-07-25T18:22:13.010000"],["2024-07-25T18:22:14.010000"],["2024-07-25T18:22:15.010000"],["2024-07-25T18:22:16.010000"],["2024-07-25T18:22:17.010000"],["2024-07-25T18:22:18.010000"],["2024-07-25T18:22:19.010000"],["2024-07-25T18:22:20.010000"],["2024-07-25T18:22:21.010000"],["2024-07-25T18:22:22.010000"],["2024-07-25T18:22:23.010000"],["2024-07-25T18:22:24.010000"],["2024-07-25T18:22:25.010000"],["2024-07-25T18:22:26.010000"],["2024-07-25T18:22:27.010000"],["2024-07-25T18:22:28.010000"],["2024-07-25T18:22:29.010000"],["2024-07-25T18:22:30.010000"],["2024-07-25T18:22:31.010000"],["2024-07-25T18:22:32.010000"],["2024-07-25T18:22:33.010000"],["2024-07-25T18:22:34.010000"],["2024-07-25T18:22:35.010000"],["2024-07-25T18:22:36.010000"],["2024-07-25T18:22:37.010000"],["2024-07-25T18:22:38.010000"],["2024-07-25T18:22:39.010000"],["2024-07-25T18:22:40.010000"],["2024-07-25T18:22:41.010000"],["2024-07-25T18:22:42.010000"],["2024-07-25T18:22:43.010000"],["2024-07-25T18:22:44.010000"],["2024-07-25T18:22:45.010000"],["2024-07-25T18:22:46.010000"],["2024-07-25T18:22:47.010000"],["2024-07-25T18:22:48.010000"],["2024-07-25T18:22:49.010000"],["2024-07-25T18:22:50.010000"],["2024-07-25T18:22:51.010000"],["2024-07-25T18:22:52.010000"],["2024-07-25T18:22:53.010000"],["2024-07-25T18:22:54.010000"],["2024-07-25T18:22:55.010000"],["2024-07-25T18:22:56.010000"],["2024-07-25T18:22:57.010000"],["2024-07-25T18:22:58.010000"],["2024-07-25T18:22:59.010000"],["2024-07-25T18:23:00.010000"],["2024-07-25T18:23:01.010000"],["2024-07-25T18:23:02.010000"],["2024-07-25T18:23:03.010000"],["2024-07-25T18:23:04.010000"],["2024-07-25T18:23:05.010000"],["2024-07-25T18:23:06.010000"],["2024-07-25T18:23:07.010000"],["2024-07-25T18:23:08.010000"],["2024-07-25T18:23:09.010000"],["2024-07-25T18:23:10.010000"],["2024-07-25T18:23:11.010000"],["2024-07-25T18:23:12.010000"],["2024-07-25T18:23:13.010000"],["2024-07-25T18:23:14.010000"],["2024-07-25T18:23:15.010000"],["2024-07-25T18:23:16.010000"],["2024-07-25T18:23:17.010000"],["2024-07-25T18:23:18.010000"],["2024-07-25T18:23:19.010000"],["2024-07-25T18:23:20.010000"],["2024-07-25T18:23:21.010000"],["2024-07-25T18:23:22.010000"],["2024-07-25T18:23:23.010000"],["2024-07-25T18:23:24.010000"],["2024-07-25T18:23:25.010000"],["2024-07-25T18:23:26.010000"],["2024-07-25T18:23:27.010000"],["2024-07-25T18:23:28.010000"],["2024-07-25T18:23:29.010000"],["2024-07-25T18:23:30.010000"],["2024-07-25T18:23:31.010000"],["2024-07-25T18:23:32.010000"],["2024-07-25T18:23:33.010000"],["2024-07-25T18:23:34.010000"],["2024-07-25T18:23:35.010000"],["2024-07-25T18:23:36.010000"],["2024-07-25T18:23:37.010000"],["2024-07-25T18:23:38.010000"],["2024-07-25T18:23:39.010000"],["2024-07-25T18:23:40.010000"],["2024-07-25T18:23:41.010000"],["2024-07-25T18:23:42.010000"],["2024-07-25T18:23:43.010000"],["2024-07-25T18:23:44.010000"],["2024-07-25T18:23:45.010000"],["2024-07-25T18:23:46.010000"],["2024-07-25T18:23:47.010000"],["2024-07-25T18:23:48.010000"],["2024-07-25T18:23:49.010000"],["2024-07-25T18:23:50.010000"],["2024-07-25T18:23:51.010000"],["2024-07-25T18:23:52.010000"],["2024-07-25T18:23:53.010000"],["2024-07-25T18:23:54.010000"],["2024-07-25T18:23:55.010000"],["2024-07-25T18:23:56.010000"],["2024-07-25T18:23:57.010000"],["2024-07-25T18:23:58.010000"],["2024-07-25T18:23:59.010000"],["2024-07-25T18:24:00.010000"],["2024-07-25T18:24:01.010000"],["2024-07-25T18:24:02.010000"],["2024-07-25T18:24:03.010000"],["2024-07-25T18:24:04.010000"],["2024-07-25T18:24:05.010000"],["2024-07-25T18:24:06.010000"],["2024-07-25T18:24:07.010000"],["2024-07-25T18:24:08.010000"],["2024-07-25T18:24:09.010000"],["2024-07-25T18:24:10.010000"],["2024-07-25T18:24:11.010000"],["2024-07-25T18:24:12.010000"],["2024-07-25T18:24:13.010000"],["2024-07-25T18:24:14.010000"],["2024-07-25T18:24:15.010000"],["2024-07-25T18:24:16.010000"],["2024-07-25T18:24:17.010000"],["2024-07-25T18:24:18.010000"],["2024-07-25T18:24:19.010000"],["2024-07-25T18:24:20.010000"],["2024-07-25T18:24:21.010000"],["2024-07-25T18:24:22.010000"],["2024-07-25T18:24:23.010000"],["2024-07-25T18:24:24.010000"],["2024-07-25T18:24:25.010000"],["2024-07-25T18:24:26.010000"],["2024-07-25T18:24:27.010000"],["2024-07-25T18:24:28.010000"],["2024-07-25T18:24:29.010000"],["2024-07-25T18:24:30.010000"],["2024-07-25T18:24:31.010000"],["2024-07-25T18:24:32.010000"],["2024-07-25T18:24:33.010000"],["2024-07-25T18:24:34.010000"],["2024-07-25T18:24:35.010000"],["2024-07-25T18:24:36.010000"],["2024-07-25T18:24:37.010000"],["2024-07-25T18:24:38.010000"],["2024-07-25T18:24:39.010000"],["2024-07-25T18:24:40.010000"],["2024-07-25T18:24:41.010000"],["2024-07-25T18:24:42.010000"],["2024-07-25T18:24:43.010000"],["2024-07-25T18:24:44.010000"],["2024-07-25T18:24:45.010000"],["2024-07-25T18:24:46.010000"],["2024-07-25T18:24:47.010000"],["2024-07-25T18:24:48.010000"],["2024-07-25T18:24:49.010000"],["2024-07-25T18:24:50.010000"],["2024-07-25T18:24:51.010000"],["2024-07-25T18:24:52.010000"],["2024-07-25T18:24:53.010000"],["2024-07-25T18:24:54.010000"],["2024-07-25T18:24:55.010000"],["2024-07-25T18:24:56.010000"],["2024-07-25T18:24:57.010000"],["2024-07-25T18:24:58.010000"],["2024-07-25T18:24:59.010000"],["2024-07-25T18:25:00.010000"],["2024-07-25T18:25:01.010000"],["2024-07-25T18:25:02.010000"],["2024-07-25T18:25:03.010000"],["2024-07-25T18:25:04.010000"],["2024-07-25T18:25:05.010000"],["2024-07-25T18:25:06.010000"],["2024-07-25T18:25:07.010000"],["2024-07-25T18:25:08.010000"],["2024-07-25T18:25:09.010000"],["2024-07-25T18:25:10.010000"],["2024-07-25T18:25:11.010000"],["2024-07-25T18:25:12.010000"],["2024-07-25T18:25:13.010000"],["2024-07-25T18:25:14.010000"],["2024-07-25T18:25:15.010000"],["2024-07-25T18:25:16.010000"],["2024-07-25T18:25:17.010000"],["2024-07-25T18:25:18.010000"],["2024-07-25T18:25:19.010000"],["2024-07-25T18:25:20.010000"],["2024-07-25T18:25:21.010000"],["2024-07-25T18:25:22.010000"],["2024-07-25T18:25:23.010000"],["2024-07-25T18:25:24.010000"],["2024-07-25T18:25:25.010000"],["2024-07-25T18:25:26.010000"],["2024-07-25T18:25:27.010000"],["2024-07-25T18:25:28.010000"],["2024-07-25T18:25:29.010000"],["2024-07-25T18:25:30.010000"],["2024-07-25T18:25:31.010000"],["2024-07-25T18:25:32.010000"],["2024-07-25T18:25:33.010000"],["2024-07-25T18:25:34.010000"],["2024-07-25T18:25:35.010000"],["2024-07-25T18:25:36.010000"],["2024-07-25T18:25:37.010000"],["2024-07-25T18:25:38.010000"],["2024-07-25T18:25:39.010000"],["2024-07-25T18:25:40.010000"],["2024-07-25T18:25:41.010000"],["2024-07-25T18:25:42.010000"],["2024-07-25T18:25:43.010000"],["2024-07-25T18:25:44.010000"],["2024-07-25T18:25:45.010000"],["2024-07-25T18:25:46.010000"],["2024-07-25T18:25:47.010000"],["2024-07-25T18:25:48.010000"],["2024-07-25T18:25:49.010000"],["2024-07-25T18:25:50.010000"],["2024-07-25T18:25:51.010000"],["2024-07-25T18:25:52.010000"],["2024-07-25T18:25:53.010000"],["2024-07-25T18:25:54.010000"],["2024-07-25T18:25:55.010000"],["2024-07-25T18:25:56.010000"],["2024-07-25T18:25:57.010000"],["2024-07-25T18:25:58.010000"],["2024-07-25T18:25:59.010000"],["2024-07-25T18:26:00.010000"],["2024-07-25T18:26:01.010000"],["2024-07-25T18:26:02.010000"],["2024-07-25T18:26:03.010000"],["2024-07-25T18:26:04.010000"],["2024-07-25T18:26:05.010000"],["2024-07-25T18:26:06.010000"],["2024-07-25T18:26:07.010000"],["2024-07-25T18:26:08.010000"],["2024-07-25T18:26:09.010000"],["2024-07-25T18:26:10.010000"],["2024-07-25T18:26:11.010000"],["2024-07-25T18:26:12.010000"],["2024-07-25T18:26:13.010000"],["2024-07-25T18:26:14.010000"],["2024-07-25T18:26:15.010000"],["2024-07-25T18:26:16.010000"],["2024-07-25T18:26:17.010000"],["2024-07-25T18:26:18.010000"],["2024-07-25T18:26:19.010000"],["2024-07-25T18:26:20.010000"],["2024-07-25T18:26:21.010000"],["2024-07-25T18:26:22.010000"],["2024-07-25T18:26:23.010000"],["2024-07-25T18:26:24.010000"],["2024-07-25T18:26:25.010000"],["2024-07-25T18:26:26.010000"],["2024-07-25T18:26:27.010000"],["2024-07-25T18:26:28.010000"],["2024-07-25T18:26:29.010000"],["2024-07-25T18:26:30.010000"],["2024-07-25T18:26:31.010000"],["2024-07-25T18:26:32.010000"],["2024-07-25T18:26:33.010000"],["2024-07-25T18:26:34.010000"],["2024-07-25T18:26:35.010000"],["2024-07-25T18:26:36.010000"],["2024-07-25T18:26:37.010000"],["2024-07-25T18:26:38.010000"],["2024-07-25T18:26:39.010000"],["2024-07-25T18:26:40.010000"],["2024-07-25T18:26:41.010000"],["2024-07-25T18:26:42.010000"],["2024-07-25T18:26:43.010000"],["2024-07-25T18:26:44.010000"],["2024-07-25T18:26:45.010000"],["2024-07-25T18:26:46.010000"],["2024-07-25T18:26:47.010000"],["2024-07-25T18:26:48.010000"],["2024-07-25T18:26:49.010000"],["2024-07-25T18:26:50.010000"],["2024-07-25T18:26:51.010000"],["2024-07-25T18:26:52.010000"],["2024-07-25T18:26:53.010000"],["2024-07-25T18:26:54.010000"],["2024-07-25T18:26:55.010000"],["2024-07-25T18:26:56.010000"],["2024-07-25T18:26:57.010000"],["2024-07-25T18:26:58.010000"],["2024-07-25T18:26:59.010000"],["2024-07-25T18:27:00.010000"],["2024-07-25T18:27:01.010000"],["2024-07-25T18:27:02.010000"],["2024-07-25T18:27:03.010000"],["2024-07-25T18:27:04.010000"],["2024-07-25T18:27:05.010000"],["2024-07-25T18:27:06.010000"],["2024-07-25T18:27:07.010000"],["2024-07-25T18:27:08.010000"],["2024-07-25T18:27:09.010000"],["2024-07-25T18:27:10.010000"],["2024-07-25T18:27:11.010000"],["2024-07-25T18:27:12.010000"],["2024-07-25T18:27:13.010000"],["2024-07-25T18:27:14.010000"],["2024-07-25T18:27:15.010000"],["2024-07-25T18:27:16.010000"],["2024-07-25T18:27:17.010000"],["2024-07-25T18:27:18.010000"],["2024-07-25T18:27:19.010000"],["2024-07-25T18:27:20.010000"],["2024-07-25T18:27:21.010000"],["2024-07-25T18:27:22.010000"],["2024-07-25T18:27:23.010000"],["2024-07-25T18:27:24.010000"],["2024-07-25T18:27:25.010000"],["2024-07-25T18:27:26.010000"],["2024-07-25T18:27:27.010000"],["2024-07-25T18:27:28.010000"],["2024-07-25T18:27:29.010000"],["2024-07-25T18:27:30.010000"],["2024-07-25T18:27:31.010000"],["2024-07-25T18:27:32.010000"],["2024-07-25T18:27:33.010000"],["2024-07-25T18:27:34.010000"],["2024-07-25T18:27:35.010000"],["2024-07-25T18:27:36.010000"],["2024-07-25T18:27:37.010000"],["2024-07-25T18:27:38.010000"],["2024-07-25T18:27:39.010000"],["2024-07-25T18:27:40.010000"],["2024-07-25T18:27:41.010000"],["2024-07-25T18:27:42.010000"],["2024-07-25T18:27:43.010000"],["2024-07-25T18:27:44.010000"],["2024-07-25T18:27:45.010000"],["2024-07-25T18:27:46.010000"],["2024-07-25T18:27:47.010000"],["2024-07-25T18:27:48.010000"],["2024-07-25T18:27:49.010000"],["2024-07-25T18:27:50.010000"],["2024-07-25T18:27:51.010000"],["2024-07-25T18:27:52.010000"],["2024-07-25T18:27:53.010000"],["2024-07-25T18:27:54.010000"],["2024-07-25T18:27:55.010000"],["2024-07-25T18:27:56.010000"],["2024-07-25T18:27:57.010000"],["2024-07-25T18:27:58.010000"],["2024-07-25T18:27:59.010000"],["2024-07-25T18:28:00.010000"],["2024-07-25T18:28:01.010000"],["2024-07-25T18:28:02.010000"],["2024-07-25T18:28:03.010000"],["2024-07-25T18:28:04.010000"],["2024-07-25T18:28:05.010000"],["2024-07-25T18:28:06.010000"],["2024-07-25T18:28:07.010000"],["2024-07-25T18:28:08.010000"],["2024-07-25T18:28:09.010000"],["2024-07-25T18:28:10.010000"],["2024-07-25T18:28:11.010000"],["2024-07-25T18:28:12.010000"],["2024-07-25T18:28:13.010000"],["2024-07-25T18:28:14.010000"],["2024-07-25T18:28:15.010000"],["2024-07-25T18:28:16.010000"],["2024-07-25T18:28:17.010000"],["2024-07-25T18:28:18.010000"],["2024-07-25T18:28:19.010000"],["2024-07-25T18:28:20.010000"],["2024-07-25T18:28:21.010000"],["2024-07-25T18:28:22.010000"],["2024-07-25T18:28:23.010000"],["2024-07-25T18:28:24.010000"],["2024-07-25T18:28:25.010000"],["2024-07-25T18:28:26.010000"],["2024-07-25T18:28:27.010000"],["2024-07-25T18:28:28.010000"],["2024-07-25T18:28:29.010000"],["2024-07-25T18:28:30.010000"],["2024-07-25T18:28:31.010000"],["2024-07-25T18:28:32.010000"],["2024-07-25T18:28:33.010000"],["2024-07-25T18:28:34.010000"],["2024-07-25T18:28:35.010000"],["2024-07-25T18:28:36.010000"],["2024-07-25T18:28:37.010000"],["2024-07-25T18:28:38.010000"],["2024-07-25T18:28:39.010000"],["2024-07-25T18:28:40.010000"],["2024-07-25T18:28:41.010000"],["2024-07-25T18:28:42.010000"],["2024-07-25T18:28:43.010000"],["2024-07-25T18:28:44.010000"],["2024-07-25T18:28:45.010000"],["2024-07-25T18:28:46.010000"],["2024-07-25T18:28:47.010000"],["2024-07-25T18:28:48.010000"],["2024-07-25T18:28:49.010000"],["2024-07-25T18:28:50.010000"],["2024-07-25T18:28:51.010000"],["2024-07-25T18:28:52.010000"],["2024-07-25T18:28:53.010000"],["2024-07-25T18:28:54.010000"],["2024-07-25T18:28:55.010000"],["2024-07-25T18:28:56.010000"],["2024-07-25T18:28:57.010000"],["2024-07-25T18:28:58.010000"],["2024-07-25T18:28:59.010000"],["2024-07-25T18:29:00.010000"],["2024-07-25T18:29:01.010000"],["2024-07-25T18:29:02.010000"],["2024-07-25T18:29:03.010000"],["2024-07-25T18:29:04.010000"],["2024-07-25T18:29:05.010000"],["2024-07-25T18:29:06.010000"],["2024-07-25T18:29:07.010000"],["2024-07-25T18:29:08.010000"],["2024-07-25T18:29:09.010000"],["2024-07-25T18:29:10.010000"],["2024-07-25T18:29:11.010000"],["2024-07-25T18:29:12.010000"],["2024-07-25T18:29:13.010000"],["2024-07-25T18:29:14.010000"],["2024-07-25T18:29:15.010000"],["2024-07-25T18:29:16.010000"],["2024-07-25T18:29:17.010000"],["2024-07-25T18:29:18.010000"],["2024-07-25T18:29:19.010000"],["2024-07-25T18:29:20.010000"],["2024-07-25T18:29:21.010000"],["2024-07-25T18:29:22.010000"],["2024-07-25T18:29:23.010000"],["2024-07-25T18:29:24.010000"],["2024-07-25T18:29:25.010000"],["2024-07-25T18:29:26.010000"],["2024-07-25T18:29:27.010000"],["2024-07-25T18:29:28.010000"],["2024-07-25T18:29:29.010000"],["2024-07-25T18:29:30.010000"],["2024-07-25T18:29:31.010000"],["2024-07-25T18:29:32.010000"],["2024-07-25T18:29:33.010000"],["2024-07-25T18:29:34.010000"],["2024-07-25T18:29:35.010000"],["2024-07-25T18:29:36.010000"],["2024-07-25T18:29:37.010000"],["2024-07-25T18:29:38.010000"],["2024-07-25T18:29:39.010000"],["2024-07-25T18:29:40.010000"],["2024-07-25T18:29:41.010000"],["2024-07-25T18:29:42.010000"],["2024-07-25T18:29:43.010000"],["2024-07-25T18:29:44.010000"],["2024-07-25T18:29:45.010000"],["2024-07-25T18:29:46.010000"],["2024-07-25T18:29:47.010000"],["2024-07-25T18:29:48.010000"],["2024-07-25T18:29:49.010000"],["2024-07-25T18:29:50.010000"],["2024-07-25T18:29:51.010000"],["2024-07-25T18:29:52.010000"],["2024-07-25T18:29:53.010000"],["2024-07-25T18:29:54.010000"],["2024-07-25T18:29:55.010000"],["2024-07-25T18:29:56.010000"],["2024-07-25T18:29:57.010000"],["2024-07-25T18:29:58.010000"],["2024-07-25T18:29:59.010000"],["2024-07-25T18:30:00.010000"],["2024-07-25T18:30:01.010000"],["2024-07-25T18:30:02.010000"],["2024-07-25T18:30:03.010000"],["2024-07-25T18:30:04.010000"],["2024-07-25T18:30:05.010000"],["2024-07-25T18:30:06.010000"],["2024-07-25T18:30:07.010000"],["2024-07-25T18:30:08.010000"],["2024-07-25T18:30:09.010000"],["2024-07-25T18:30:10.010000"],["2024-07-25T18:30:11.010000"],["2024-07-25T18:30:12.010000"],["2024-07-25T18:30:13.010000"],["2024-07-25T18:30:14.010000"],["2024-07-25T18:30:15.010000"],["2024-07-25T18:30:16.010000"],["2024-07-25T18:30:17.010000"],["2024-07-25T18:30:18.010000"],["2024-07-25T18:30:19.010000"],["2024-07-25T18:30:20.010000"],["2024-07-25T18:30:21.010000"],["2024-07-25T18:30:22.010000"],["2024-07-25T18:30:23.010000"],["2024-07-25T18:30:24.010000"],["2024-07-25T18:30:25.010000"],["2024-07-25T18:30:26.010000"],["2024-07-25T18:30:27.010000"],["2024-07-25T18:30:28.010000"],["2024-07-25T18:30:29.010000"],["2024-07-25T18:30:30.010000"],["2024-07-25T18:30:31.010000"],["2024-07-25T18:30:32.010000"],["2024-07-25T18:30:33.010000"],["2024-07-25T18:30:34.010000"],["2024-07-25T18:30:35.010000"],["2024-07-25T18:30:36.010000"],["2024-07-25T18:30:37.010000"],["2024-07-25T18:30:38.010000"],["2024-07-25T18:30:39.010000"],["2024-07-25T18:30:40.010000"],["2024-07-25T18:30:41.010000"],["2024-07-25T18:30:42.010000"],["2024-07-25T18:30:43.010000"],["2024-07-25T18:30:44.010000"],["2024-07-25T18:30:45.010000"],["2024-07-25T18:30:46.010000"],["2024-07-25T18:30:47.010000"],["2024-07-25T18:30:48.010000"],["2024-07-25T18:30:49.010000"],["2024-07-25T18:30:50.010000"],["2024-07-25T18:30:51.010000"],["2024-07-25T18:30:52.010000"],["2024-07-25T18:30:53.010000"],["2024-07-25T18:30:54.010000"],["2024-07-25T18:30:55.010000"],["2024-07-25T18:30:56.010000"],["2024-07-25T18:30:57.010000"],["2024-07-25T18:30:58.010000"],["2024-07-25T18:30:59.010000"],["2024-07-25T18:31:00.010000"],["2024-07-25T18:31:01.010000"],["2024-07-25T18:31:02.010000"],["2024-07-25T18:31:03.010000"],["2024-07-25T18:31:04.010000"],["2024-07-25T18:31:05.010000"],["2024-07-25T18:31:06.010000"],["2024-07-25T18:31:07.010000"],["2024-07-25T18:31:08.010000"],["2024-07-25T18:31:09.010000"],["2024-07-25T18:31:10.010000"],["2024-07-25T18:31:11.010000"],["2024-07-25T18:31:12.010000"],["2024-07-25T18:31:13.010000"],["2024-07-25T18:31:14.010000"],["2024-07-25T18:31:15.010000"],["2024-07-25T18:31:16.010000"],["2024-07-25T18:31:17.010000"],["2024-07-25T18:31:18.010000"],["2024-07-25T18:31:19.010000"],["2024-07-25T18:31:20.010000"],["2024-07-25T18:31:21.010000"],["2024-07-25T18:31:22.010000"],["2024-07-25T18:31:23.010000"],["2024-07-25T18:31:24.010000"],["2024-07-25T18:31:25.010000"],["2024-07-25T18:31:26.010000"],["2024-07-25T18:31:27.010000"],["2024-07-25T18:31:28.010000"],["2024-07-25T18:31:29.010000"],["2024-07-25T18:31:30.010000"],["2024-07-25T18:31:31.010000"],["2024-07-25T18:31:32.010000"],["2024-07-25T18:31:33.010000"],["2024-07-25T18:31:34.010000"],["2024-07-25T18:31:35.010000"],["2024-07-25T18:31:36.010000"],["2024-07-25T18:31:37.010000"],["2024-07-25T18:31:38.010000"],["2024-07-25T18:31:39.010000"],["2024-07-25T18:31:40.010000"],["2024-07-25T18:31:41.010000"],["2024-07-25T18:31:42.010000"],["2024-07-25T18:31:43.010000"],["2024-07-25T18:31:44.010000"],["2024-07-25T18:31:45.010000"],["2024-07-25T18:31:46.010000"],["2024-07-25T18:31:47.010000"],["2024-07-25T18:31:48.010000"],["2024-07-25T18:31:49.010000"],["2024-07-25T18:31:50.010000"],["2024-07-25T18:31:51.010000"],["2024-07-25T18:31:52.010000"],["2024-07-25T18:31:53.010000"],["2024-07-25T18:31:54.010000"],["2024-07-25T18:31:55.010000"],["2024-07-25T18:31:56.010000"],["2024-07-25T18:31:57.010000"],["2024-07-25T18:31:58.010000"],["2024-07-25T18:31:59.010000"],["2024-07-25T18:32:00.010000"],["2024-07-25T18:32:01.010000"],["2024-07-25T18:32:02.010000"],["2024-07-25T18:32:03.010000"],["2024-07-25T18:32:04.010000"],["2024-07-25T18:32:05.010000"],["2024-07-25T18:32:06.010000"],["2024-07-25T18:32:07.010000"],["2024-07-25T18:32:08.010000"],["2024-07-25T18:32:09.010000"],["2024-07-25T18:32:10.010000"],["2024-07-25T18:32:11.010000"],["2024-07-25T18:32:12.010000"],["2024-07-25T18:32:13.010000"],["2024-07-25T18:32:14.010000"],["2024-07-25T18:32:15.010000"],["2024-07-25T18:32:16.010000"],["2024-07-25T18:32:17.010000"],["2024-07-25T18:32:18.010000"],["2024-07-25T18:32:19.010000"],["2024-07-25T18:32:20.010000"],["2024-07-25T18:32:21.010000"],["2024-07-25T18:32:22.010000"],["2024-07-25T18:32:23.010000"],["2024-07-25T18:32:24.010000"],["2024-07-25T18:32:25.010000"],["2024-07-25T18:32:26.010000"],["2024-07-25T18:32:27.010000"],["2024-07-25T18:32:28.010000"],["2024-07-25T18:32:29.010000"],["2024-07-25T18:32:30.010000"],["2024-07-25T18:32:31.010000"],["2024-07-25T18:32:32.010000"],["2024-07-25T18:32:33.010000"],["2024-07-25T18:32:34.010000"],["2024-07-25T18:32:35.010000"],["2024-07-25T18:32:36.010000"],["2024-07-25T18:32:37.010000"],["2024-07-25T18:32:38.010000"],["2024-07-25T18:32:39.010000"],["2024-07-25T18:32:40.010000"],["2024-07-25T18:32:41.010000"],["2024-07-25T18:32:42.010000"],["2024-07-25T18:32:43.010000"],["2024-07-25T18:32:44.010000"],["2024-07-25T18:32:45.010000"],["2024-07-25T18:32:46.010000"],["2024-07-25T18:32:47.010000"],["2024-07-25T18:32:48.010000"],["2024-07-25T18:32:49.010000"],["2024-07-25T18:32:50.010000"],["2024-07-25T18:32:51.010000"],["2024-07-25T18:32:52.010000"],["2024-07-25T18:32:53.010000"],["2024-07-25T18:32:54.010000"],["2024-07-25T18:32:55.010000"],["2024-07-25T18:32:56.010000"],["2024-07-25T18:32:57.010000"],["2024-07-25T18:32:58.010000"],["2024-07-25T18:32:59.010000"],["2024-07-25T18:33:00.010000"],["2024-07-25T18:33:01.010000"],["2024-07-25T18:33:02.010000"],["2024-07-25T18:33:03.010000"],["2024-07-25T18:33:04.010000"],["2024-07-25T18:33:05.010000"],["2024-07-25T18:33:06.010000"],["2024-07-25T18:33:07.010000"],["2024-07-25T18:33:08.010000"],["2024-07-25T18:33:09.010000"],["2024-07-25T18:33:10.010000"],["2024-07-25T18:33:11.010000"],["2024-07-25T18:33:12.010000"],["2024-07-25T18:33:13.010000"],["2024-07-25T18:33:14.010000"],["2024-07-25T18:33:15.010000"],["2024-07-25T18:33:16.010000"],["2024-07-25T18:33:17.010000"],["2024-07-25T18:33:18.010000"],["2024-07-25T18:33:19.010000"],["2024-07-25T18:33:20.010000"],["2024-07-25T18:33:21.010000"],["2024-07-25T18:33:22.010000"],["2024-07-25T18:33:23.010000"],["2024-07-25T18:33:24.010000"],["2024-07-25T18:33:25.010000"],["2024-07-25T18:33:26.010000"],["2024-07-25T18:33:27.010000"],["2024-07-25T18:33:28.010000"],["2024-07-25T18:33:29.010000"],["2024-07-25T18:33:30.010000"],["2024-07-25T18:33:31.010000"],["2024-07-25T18:33:32.010000"],["2024-07-25T18:33:33.010000"],["2024-07-25T18:33:34.010000"],["2024-07-25T18:33:35.010000"],["2024-07-25T18:33:36.010000"],["2024-07-25T18:33:37.010000"],["2024-07-25T18:33:38.010000"],["2024-07-25T18:33:39.010000"],["2024-07-25T18:33:40.010000"],["2024-07-25T18:33:41.010000"],["2024-07-25T18:33:42.010000"],["2024-07-25T18:33:43.010000"],["2024-07-25T18:33:44.010000"],["2024-07-25T18:33:45.010000"],["2024-07-25T18:33:46.010000"],["2024-07-25T18:33:47.010000"],["2024-07-25T18:33:48.010000"],["2024-07-25T18:33:49.010000"],["2024-07-25T18:33:50.010000"],["2024-07-25T18:33:51.010000"],["2024-07-25T18:33:52.010000"],["2024-07-25T18:33:53.010000"],["2024-07-25T18:33:54.010000"],["2024-07-25T18:33:55.010000"],["2024-07-25T18:33:56.010000"],["2024-07-25T18:33:57.010000"],["2024-07-25T18:33:58.010000"],["2024-07-25T18:33:59.010000"],["2024-07-25T18:34:00.010000"],["2024-07-25T18:34:01.010000"],["2024-07-25T18:34:02.010000"],["2024-07-25T18:34:03.010000"],["2024-07-25T18:34:04.010000"],["2024-07-25T18:34:05.010000"],["2024-07-25T18:34:06.010000"],["2024-07-25T18:34:07.010000"],["2024-07-25T18:34:08.010000"],["2024-07-25T18:34:09.010000"],["2024-07-25T18:34:10.010000"],["2024-07-25T18:34:11.010000"],["2024-07-25T18:34:12.010000"],["2024-07-25T18:34:13.010000"],["2024-07-25T18:34:14.010000"],["2024-07-25T18:34:15.010000"],["2024-07-25T18:34:16.010000"],["2024-07-25T18:34:17.010000"],["2024-07-25T18:34:18.010000"],["2024-07-25T18:34:19.010000"],["2024-07-25T18:34:20.010000"],["2024-07-25T18:34:21.010000"],["2024-07-25T18:34:22.010000"],["2024-07-25T18:34:23.010000"],["2024-07-25T18:34:24.010000"],["2024-07-25T18:34:25.010000"],["2024-07-25T18:34:26.010000"],["2024-07-25T18:34:27.010000"],["2024-07-25T18:34:28.010000"],["2024-07-25T18:34:29.010000"],["2024-07-25T18:34:30.010000"],["2024-07-25T18:34:31.010000"],["2024-07-25T18:34:32.010000"],["2024-07-25T18:34:33.010000"],["2024-07-25T18:34:34.010000"],["2024-07-25T18:34:35.010000"],["2024-07-25T18:34:36.010000"],["2024-07-25T18:34:37.010000"],["2024-07-25T18:34:38.010000"],["2024-07-25T18:34:39.010000"],["2024-07-25T18:34:40.010000"],["2024-07-25T18:34:41.010000"],["2024-07-25T18:34:42.010000"],["2024-07-25T18:34:43.010000"],["2024-07-25T18:34:44.010000"],["2024-07-25T18:34:45.010000"],["2024-07-25T18:34:46.010000"],["2024-07-25T18:34:47.010000"],["2024-07-25T18:34:48.010000"],["2024-07-25T18:34:49.010000"],["2024-07-25T18:34:50.010000"],["2024-07-25T18:34:51.010000"],["2024-07-25T18:34:52.010000"],["2024-07-25T18:34:53.010000"],["2024-07-25T18:34:54.010000"],["2024-07-25T18:34:55.010000"],["2024-07-25T18:34:56.010000"],["2024-07-25T18:34:57.010000"],["2024-07-25T18:34:58.010000"],["2024-07-25T18:34:59.010000"],["2024-07-25T18:35:00.010000"],["2024-07-25T18:35:01.010000"],["2024-07-25T18:35:02.010000"],["2024-07-25T18:35:03.010000"],["2024-07-25T18:35:04.010000"],["2024-07-25T18:35:05.010000"],["2024-07-25T18:35:06.010000"],["2024-07-25T18:35:07.010000"],["2024-07-25T18:35:08.010000"],["2024-07-25T18:35:09.010000"],["2024-07-25T18:35:10.010000"],["2024-07-25T18:35:11.010000"],["2024-07-25T18:35:12.010000"],["2024-07-25T18:35:13.010000"],["2024-07-25T18:35:14.010000"],["2024-07-25T18:35:15.010000"],["2024-07-25T18:35:16.010000"],["2024-07-25T18:35:17.010000"],["2024-07-25T18:35:18.010000"],["2024-07-25T18:35:19.010000"],["2024-07-25T18:35:20.010000"],["2024-07-25T18:35:21.010000"],["2024-07-25T18:35:22.010000"],["2024-07-25T18:35:23.010000"],["2024-07-25T18:35:24.010000"],["2024-07-25T18:35:25.010000"],["2024-07-25T18:35:26.010000"],["2024-07-25T18:35:27.010000"],["2024-07-25T18:35:28.010000"],["2024-07-25T18:35:29.010000"],["2024-07-25T18:35:30.010000"],["2024-07-25T18:35:31.010000"],["2024-07-25T18:35:32.010000"],["2024-07-25T18:35:33.010000"],["2024-07-25T18:35:34.010000"],["2024-07-25T18:35:35.010000"],["2024-07-25T18:35:36.010000"],["2024-07-25T18:35:37.010000"],["2024-07-25T18:35:38.010000"],["2024-07-25T18:35:39.010000"],["2024-07-25T18:35:40.010000"],["2024-07-25T18:35:41.010000"],["2024-07-25T18:35:42.010000"],["2024-07-25T18:35:43.010000"],["2024-07-25T18:35:44.010000"],["2024-07-25T18:35:45.010000"],["2024-07-25T18:35:46.010000"],["2024-07-25T18:35:47.010000"],["2024-07-25T18:35:48.010000"],["2024-07-25T18:35:49.010000"],["2024-07-25T18:35:50.010000"],["2024-07-25T18:35:51.010000"],["2024-07-25T18:35:52.010000"],["2024-07-25T18:35:53.010000"],["2024-07-25T18:35:54.010000"],["2024-07-25T18:35:55.010000"],["2024-07-25T18:35:56.010000"],["2024-07-25T18:35:57.010000"],["2024-07-25T18:35:58.010000"],["2024-07-25T18:35:59.010000"],["2024-07-25T18:36:00.010000"],["2024-07-25T18:36:01.010000"],["2024-07-25T18:36:02.010000"],["2024-07-25T18:36:03.010000"],["2024-07-25T18:36:04.010000"],["2024-07-25T18:36:05.010000"],["2024-07-25T18:36:06.010000"],["2024-07-25T18:36:07.010000"],["2024-07-25T18:36:08.010000"],["2024-07-25T18:36:09.010000"],["2024-07-25T18:36:10.010000"],["2024-07-25T18:36:11.010000"],["2024-07-25T18:36:12.010000"],["2024-07-25T18:36:13.010000"],["2024-07-25T18:36:14.010000"],["2024-07-25T18:36:15.010000"],["2024-07-25T18:36:16.010000"],["2024-07-25T18:36:17.010000"],["2024-07-25T18:36:18.010000"],["2024-07-25T18:36:19.010000"],["2024-07-25T18:36:20.010000"],["2024-07-25T18:36:21.010000"],["2024-07-25T18:36:22.010000"],["2024-07-25T18:36:23.010000"],["2024-07-25T18:36:24.010000"],["2024-07-25T18:36:25.010000"],["2024-07-25T18:36:26.010000"],["2024-07-25T18:36:27.010000"],["2024-07-25T18:36:28.010000"],["2024-07-25T18:36:29.010000"],["2024-07-25T18:36:30.010000"],["2024-07-25T18:36:31.010000"],["2024-07-25T18:36:32.010000"],["2024-07-25T18:36:33.010000"],["2024-07-25T18:36:34.010000"],["2024-07-25T18:36:35.010000"],["2024-07-25T18:36:36.010000"],["2024-07-25T18:36:37.010000"],["2024-07-25T18:36:38.010000"],["2024-07-25T18:36:39.010000"],["2024-07-25T18:36:40.010000"],["2024-07-25T18:36:41.010000"],["2024-07-25T18:36:42.010000"],["2024-07-25T18:36:43.010000"],["2024-07-25T18:36:44.010000"],["2024-07-25T18:36:45.010000"],["2024-07-25T18:36:46.010000"],["2024-07-25T18:36:47.010000"],["2024-07-25T18:36:48.010000"],["2024-07-25T18:36:49.010000"],["2024-07-25T18:36:50.010000"],["2024-07-25T18:36:51.010000"],["2024-07-25T18:36:52.010000"],["2024-07-25T18:36:53.010000"],["2024-07-25T18:36:54.010000"],["2024-07-25T18:36:55.010000"],["2024-07-25T18:36:56.010000"],["2024-07-25T18:36:57.010000"],["2024-07-25T18:36:58.010000"],["2024-07-25T18:36:59.010000"],["2024-07-25T18:37:00.010000"],["2024-07-25T18:37:01.010000"],["2024-07-25T18:37:02.010000"],["2024-07-25T18:37:03.010000"],["2024-07-25T18:37:04.010000"],["2024-07-25T18:37:05.010000"],["2024-07-25T18:37:06.010000"],["2024-07-25T18:37:07.010000"],["2024-07-25T18:37:08.010000"],["2024-07-25T18:37:09.010000"],["2024-07-25T18:37:10.010000"],["2024-07-25T18:37:11.010000"],["2024-07-25T18:37:12.010000"],["2024-07-25T18:37:13.010000"],["2024-07-25T18:37:14.010000"],["2024-07-25T18:37:15.010000"],["2024-07-25T18:37:16.010000"],["2024-07-25T18:37:17.010000"],["2024-07-25T18:37:18.010000"],["2024-07-25T18:37:19.010000"],["2024-07-25T18:37:20.010000"],["2024-07-25T18:37:21.010000"],["2024-07-25T18:37:22.010000"],["2024-07-25T18:37:23.010000"],["2024-07-25T18:37:24.010000"],["2024-07-25T18:37:25.010000"],["2024-07-25T18:37:26.010000"],["2024-07-25T18:37:27.010000"],["2024-07-25T18:37:28.010000"],["2024-07-25T18:37:29.010000"],["2024-07-25T18:37:30.010000"],["2024-07-25T18:37:31.010000"],["2024-07-25T18:37:32.010000"],["2024-07-25T18:37:33.010000"],["2024-07-25T18:37:34.010000"],["2024-07-25T18:37:35.010000"],["2024-07-25T18:37:36.010000"],["2024-07-25T18:37:37.010000"],["2024-07-25T18:37:38.010000"],["2024-07-25T18:37:39.010000"],["2024-07-25T18:37:40.010000"],["2024-07-25T18:37:41.010000"],["2024-07-25T18:37:42.010000"],["2024-07-25T18:37:43.010000"],["2024-07-25T18:37:44.010000"],["2024-07-25T18:37:45.010000"],["2024-07-25T18:37:46.010000"],["2024-07-25T18:37:47.010000"],["2024-07-25T18:37:48.010000"],["2024-07-25T18:37:49.010000"],["2024-07-25T18:37:50.010000"],["2024-07-25T18:37:51.010000"],["2024-07-25T18:37:52.010000"],["2024-07-25T18:37:53.010000"],["2024-07-25T18:37:54.010000"],["2024-07-25T18:37:55.010000"],["2024-07-25T18:37:56.010000"],["2024-07-25T18:37:57.010000"],["2024-07-25T18:37:58.010000"],["2024-07-25T18:37:59.010000"],["2024-07-25T18:38:00.010000"],["2024-07-25T18:38:01.010000"],["2024-07-25T18:38:02.010000"],["2024-07-25T18:38:03.010000"],["2024-07-25T18:38:04.010000"],["2024-07-25T18:38:05.010000"],["2024-07-25T18:38:06.010000"],["2024-07-25T18:38:07.010000"],["2024-07-25T18:38:08.010000"],["2024-07-25T18:38:09.010000"],["2024-07-25T18:38:10.010000"],["2024-07-25T18:38:11.010000"],["2024-07-25T18:38:12.010000"],["2024-07-25T18:38:13.010000"],["2024-07-25T18:38:14.010000"],["2024-07-25T18:38:15.010000"],["2024-07-25T18:38:16.010000"],["2024-07-25T18:38:17.010000"],["2024-07-25T18:38:18.010000"],["2024-07-25T18:38:19.010000"],["2024-07-25T18:38:20.010000"],["2024-07-25T18:38:21.010000"],["2024-07-25T18:38:22.010000"],["2024-07-25T18:38:23.010000"],["2024-07-25T18:38:24.010000"],["2024-07-25T18:38:25.010000"],["2024-07-25T18:38:26.010000"],["2024-07-25T18:38:27.010000"],["2024-07-25T18:38:28.010000"],["2024-07-25T18:38:29.010000"],["2024-07-25T18:38:30.010000"],["2024-07-25T18:38:31.010000"],["2024-07-25T18:38:32.010000"],["2024-07-25T18:38:33.010000"],["2024-07-25T18:38:34.010000"],["2024-07-25T18:38:35.010000"],["2024-07-25T18:38:36.010000"],["2024-07-25T18:38:37.010000"],["2024-07-25T18:38:38.010000"],["2024-07-25T18:38:39.010000"],["2024-07-25T18:38:40.010000"],["2024-07-25T18:38:41.010000"],["2024-07-25T18:38:42.010000"],["2024-07-25T18:38:43.010000"],["2024-07-25T18:38:44.010000"],["2024-07-25T18:38:45.010000"],["2024-07-25T18:38:46.010000"],["2024-07-25T18:38:47.010000"],["2024-07-25T18:38:48.010000"],["2024-07-25T18:38:49.010000"],["2024-07-25T18:38:50.010000"],["2024-07-25T18:38:51.010000"],["2024-07-25T18:38:52.010000"],["2024-07-25T18:38:53.010000"],["2024-07-25T18:38:54.010000"],["2024-07-25T18:38:55.010000"],["2024-07-25T18:38:56.010000"],["2024-07-25T18:38:57.010000"],["2024-07-25T18:38:58.010000"],["2024-07-25T18:38:59.010000"],["2024-07-25T18:39:00.010000"],["2024-07-25T18:39:01.010000"],["2024-07-25T18:39:02.010000"],["2024-07-25T18:39:03.010000"],["2024-07-25T18:39:04.010000"],["2024-07-25T18:39:05.010000"],["2024-07-25T18:39:06.010000"],["2024-07-25T18:39:07.010000"],["2024-07-25T18:39:08.010000"],["2024-07-25T18:39:09.010000"],["2024-07-25T18:39:10.010000"],["2024-07-25T18:39:11.010000"],["2024-07-25T18:39:12.010000"],["2024-07-25T18:39:13.010000"],["2024-07-25T18:39:14.010000"],["2024-07-25T18:39:15.010000"],["2024-07-25T18:39:16.010000"],["2024-07-25T18:39:17.010000"],["2024-07-25T18:39:18.010000"],["2024-07-25T18:39:19.010000"],["2024-07-25T18:39:20.010000"],["2024-07-25T18:39:21.010000"],["2024-07-25T18:39:22.010000"],["2024-07-25T18:39:23.010000"],["2024-07-25T18:39:24.010000"],["2024-07-25T18:39:25.010000"],["2024-07-25T18:39:26.010000"],["2024-07-25T18:39:27.010000"],["2024-07-25T18:39:28.010000"],["2024-07-25T18:39:29.010000"],["2024-07-25T18:39:30.010000"],["2024-07-25T18:39:31.010000"],["2024-07-25T18:39:32.010000"],["2024-07-25T18:39:33.010000"],["2024-07-25T18:39:34.010000"],["2024-07-25T18:39:35.010000"],["2024-07-25T18:39:36.010000"],["2024-07-25T18:39:37.010000"],["2024-07-25T18:39:38.010000"],["2024-07-25T18:39:39.010000"],["2024-07-25T18:39:40.010000"],["2024-07-25T18:39:41.010000"],["2024-07-25T18:39:42.010000"],["2024-07-25T18:39:43.010000"],["2024-07-25T18:39:44.010000"],["2024-07-25T18:39:45.010000"],["2024-07-25T18:39:46.010000"],["2024-07-25T18:39:47.010000"],["2024-07-25T18:39:48.010000"],["2024-07-25T18:39:49.010000"],["2024-07-25T18:39:50.010000"],["2024-07-25T18:39:51.010000"],["2024-07-25T18:39:52.010000"],["2024-07-25T18:39:53.010000"],["2024-07-25T18:39:54.010000"],["2024-07-25T18:39:55.010000"],["2024-07-25T18:39:56.010000"],["2024-07-25T18:39:57.010000"],["2024-07-25T18:39:58.010000"],["2024-07-25T18:39:59.010000"],["2024-07-25T18:40:00.010000"],["2024-07-25T18:40:01.010000"],["2024-07-25T18:40:02.010000"],["2024-07-25T18:40:03.010000"],["2024-07-25T18:40:04.010000"],["2024-07-25T18:40:05.010000"],["2024-07-25T18:40:06.010000"],["2024-07-25T18:40:07.010000"],["2024-07-25T18:40:08.010000"],["2024-07-25T18:40:09.010000"],["2024-07-25T18:40:10.010000"],["2024-07-25T18:40:11.010000"],["2024-07-25T18:40:12.010000"],["2024-07-25T18:40:13.010000"],["2024-07-25T18:40:14.010000"],["2024-07-25T18:40:15.010000"],["2024-07-25T18:40:16.010000"],["2024-07-25T18:40:17.010000"],["2024-07-25T18:40:18.010000"],["2024-07-25T18:40:19.010000"],["2024-07-25T18:40:20.010000"],["2024-07-25T18:40:21.010000"],["2024-07-25T18:40:22.010000"],["2024-07-25T18:40:23.010000"],["2024-07-25T18:40:24.010000"],["2024-07-25T18:40:25.010000"],["2024-07-25T18:40:26.010000"],["2024-07-25T18:40:27.010000"],["2024-07-25T18:40:28.010000"],["2024-07-25T18:40:29.010000"],["2024-07-25T18:40:30.010000"],["2024-07-25T18:40:31.010000"],["2024-07-25T18:40:32.010000"],["2024-07-25T18:40:33.010000"],["2024-07-25T18:40:34.010000"],["2024-07-25T18:40:35.010000"],["2024-07-25T18:40:36.010000"],["2024-07-25T18:40:37.010000"],["2024-07-25T18:40:38.010000"],["2024-07-25T18:40:39.010000"],["2024-07-25T18:40:40.010000"],["2024-07-25T18:40:41.010000"],["2024-07-25T18:40:42.010000"],["2024-07-25T18:40:43.010000"],["2024-07-25T18:40:44.010000"],["2024-07-25T18:40:45.010000"],["2024-07-25T18:40:46.010000"],["2024-07-25T18:40:47.010000"],["2024-07-25T18:40:48.010000"],["2024-07-25T18:40:49.010000"],["2024-07-25T18:40:50.010000"],["2024-07-25T18:40:51.010000"],["2024-07-25T18:40:52.010000"],["2024-07-25T18:40:53.010000"],["2024-07-25T18:40:54.010000"],["2024-07-25T18:40:55.010000"],["2024-07-25T18:40:56.010000"],["2024-07-25T18:40:57.010000"],["2024-07-25T18:40:58.010000"],["2024-07-25T18:40:59.010000"],["2024-07-25T18:41:00.010000"],["2024-07-25T18:41:01.010000"],["2024-07-25T18:41:02.010000"],["2024-07-25T18:41:03.010000"],["2024-07-25T18:41:04.010000"],["2024-07-25T18:41:05.010000"],["2024-07-25T18:41:06.010000"],["2024-07-25T18:41:07.010000"],["2024-07-25T18:41:08.010000"],["2024-07-25T18:41:09.010000"],["2024-07-25T18:41:10.010000"],["2024-07-25T18:41:11.010000"],["2024-07-25T18:41:12.010000"],["2024-07-25T18:41:13.010000"],["2024-07-25T18:41:14.010000"],["2024-07-25T18:41:15.010000"],["2024-07-25T18:41:16.010000"],["2024-07-25T18:41:17.010000"],["2024-07-25T18:41:18.010000"],["2024-07-25T18:41:19.010000"],["2024-07-25T18:41:20.010000"],["2024-07-25T18:41:21.010000"],["2024-07-25T18:41:22.010000"],["2024-07-25T18:41:23.010000"],["2024-07-25T18:41:24.010000"],["2024-07-25T18:41:25.010000"],["2024-07-25T18:41:26.010000"],["2024-07-25T18:41:27.010000"],["2024-07-25T18:41:28.010000"],["2024-07-25T18:41:29.010000"],["2024-07-25T18:41:30.010000"],["2024-07-25T18:41:31.010000"],["2024-07-25T18:41:32.010000"],["2024-07-25T18:41:33.010000"],["2024-07-25T18:41:34.010000"],["2024-07-25T18:41:35.010000"],["2024-07-25T18:41:36.010000"],["2024-07-25T18:41:37.010000"],["2024-07-25T18:41:38.010000"],["2024-07-25T18:41:39.010000"],["2024-07-25T18:41:40.010000"],["2024-07-25T18:41:41.010000"],["2024-07-25T18:41:42.010000"],["2024-07-25T18:41:43.010000"],["2024-07-25T18:41:44.010000"],["2024-07-25T18:41:45.010000"],["2024-07-25T18:41:46.010000"],["2024-07-25T18:41:47.010000"],["2024-07-25T18:41:48.010000"],["2024-07-25T18:41:49.010000"],["2024-07-25T18:41:50.010000"],["2024-07-25T18:41:51.010000"],["2024-07-25T18:41:52.010000"],["2024-07-25T18:41:53.010000"],["2024-07-25T18:41:54.010000"],["2024-07-25T18:41:55.010000"],["2024-07-25T18:41:56.010000"],["2024-07-25T18:41:57.010000"],["2024-07-25T18:41:58.010000"],["2024-07-25T18:41:59.010000"],["2024-07-25T18:42:00.010000"],["2024-07-25T18:42:01.010000"],["2024-07-25T18:42:02.010000"],["2024-07-25T18:42:03.010000"],["2024-07-25T18:42:04.010000"],["2024-07-25T18:42:05.010000"],["2024-07-25T18:42:06.010000"],["2024-07-25T18:42:07.010000"],["2024-07-25T18:42:08.010000"],["2024-07-25T18:42:09.010000"],["2024-07-25T18:42:10.010000"],["2024-07-25T18:42:11.010000"],["2024-07-25T18:42:12.010000"],["2024-07-25T18:42:13.010000"],["2024-07-25T18:42:14.010000"],["2024-07-25T18:42:15.010000"],["2024-07-25T18:42:16.010000"],["2024-07-25T18:42:17.010000"],["2024-07-25T18:42:18.010000"],["2024-07-25T18:42:19.010000"],["2024-07-25T18:42:20.010000"],["2024-07-25T18:42:21.010000"],["2024-07-25T18:42:22.010000"],["2024-07-25T18:42:23.010000"],["2024-07-25T18:42:24.010000"],["2024-07-25T18:42:25.010000"],["2024-07-25T18:42:26.010000"],["2024-07-25T18:42:27.010000"],["2024-07-25T18:42:28.010000"],["2024-07-25T18:42:29.010000"],["2024-07-25T18:42:30.010000"],["2024-07-25T18:42:31.010000"],["2024-07-25T18:42:32.010000"],["2024-07-25T18:42:33.010000"],["2024-07-25T18:42:34.010000"],["2024-07-25T18:42:35.010000"],["2024-07-25T18:42:36.010000"],["2024-07-25T18:42:37.010000"],["2024-07-25T18:42:38.010000"],["2024-07-25T18:42:39.010000"],["2024-07-25T18:42:40.010000"],["2024-07-25T18:42:41.010000"],["2024-07-25T18:42:42.010000"],["2024-07-25T18:42:43.010000"],["2024-07-25T18:42:44.010000"],["2024-07-25T18:42:45.010000"],["2024-07-25T18:42:46.010000"],["2024-07-25T18:42:47.010000"],["2024-07-25T18:42:48.010000"],["2024-07-25T18:42:49.010000"],["2024-07-25T18:42:50.010000"],["2024-07-25T18:42:51.010000"],["2024-07-25T18:42:52.010000"],["2024-07-25T18:42:53.010000"],["2024-07-25T18:42:54.010000"],["2024-07-25T18:42:55.010000"],["2024-07-25T18:42:56.010000"],["2024-07-25T18:42:57.010000"],["2024-07-25T18:42:58.010000"],["2024-07-25T18:42:59.010000"],["2024-07-25T18:43:00.010000"],["2024-07-25T18:43:01.010000"],["2024-07-25T18:43:02.010000"],["2024-07-25T18:43:03.010000"],["2024-07-25T18:43:04.010000"],["2024-07-25T18:43:05.010000"],["2024-07-25T18:43:06.010000"],["2024-07-25T18:43:07.010000"],["2024-07-25T18:43:08.010000"],["2024-07-25T18:43:09.010000"],["2024-07-25T18:43:10.010000"],["2024-07-25T18:43:11.010000"],["2024-07-25T18:43:12.010000"],["2024-07-25T18:43:13.010000"],["2024-07-25T18:43:14.010000"],["2024-07-25T18:43:15.010000"],["2024-07-25T18:43:16.010000"],["2024-07-25T18:43:17.010000"],["2024-07-25T18:43:18.010000"],["2024-07-25T18:43:19.010000"],["2024-07-25T18:43:20.010000"],["2024-07-25T18:43:21.010000"],["2024-07-25T18:43:22.010000"],["2024-07-25T18:43:23.010000"],["2024-07-25T18:43:24.010000"],["2024-07-25T18:43:25.010000"],["2024-07-25T18:43:26.010000"],["2024-07-25T18:43:27.010000"],["2024-07-25T18:43:28.010000"],["2024-07-25T18:43:29.010000"],["2024-07-25T18:43:30.010000"],["2024-07-25T18:43:31.010000"],["2024-07-25T18:43:32.010000"],["2024-07-25T18:43:33.010000"],["2024-07-25T18:43:34.010000"],["2024-07-25T18:43:35.010000"],["2024-07-25T18:43:36.010000"],["2024-07-25T18:43:37.010000"],["2024-07-25T18:43:38.010000"],["2024-07-25T18:43:39.010000"],["2024-07-25T18:43:40.010000"],["2024-07-25T18:43:41.010000"],["2024-07-25T18:43:42.010000"],["2024-07-25T18:43:43.010000"],["2024-07-25T18:43:44.010000"],["2024-07-25T18:43:45.010000"],["2024-07-25T18:43:46.010000"],["2024-07-25T18:43:47.010000"],["2024-07-25T18:43:48.010000"],["2024-07-25T18:43:49.010000"],["2024-07-25T18:43:50.010000"],["2024-07-25T18:43:51.010000"],["2024-07-25T18:43:52.010000"],["2024-07-25T18:43:53.010000"],["2024-07-25T18:43:54.010000"],["2024-07-25T18:43:55.010000"],["2024-07-25T18:43:56.010000"],["2024-07-25T18:43:57.010000"],["2024-07-25T18:43:58.010000"],["2024-07-25T18:43:59.010000"],["2024-07-25T18:44:00.010000"],["2024-07-25T18:44:01.010000"],["2024-07-25T18:44:02.010000"],["2024-07-25T18:44:03.010000"],["2024-07-25T18:44:04.010000"],["2024-07-25T18:44:05.010000"],["2024-07-25T18:44:06.010000"],["2024-07-25T18:44:07.010000"],["2024-07-25T18:44:08.010000"],["2024-07-25T18:44:09.010000"],["2024-07-25T18:44:10.010000"],["2024-07-25T18:44:11.010000"],["2024-07-25T18:44:12.010000"],["2024-07-25T18:44:13.010000"],["2024-07-25T18:44:14.010000"],["2024-07-25T18:44:15.010000"],["2024-07-25T18:44:16.010000"],["2024-07-25T18:44:17.010000"],["2024-07-25T18:44:18.010000"],["2024-07-25T18:44:19.010000"],["2024-07-25T18:44:20.010000"],["2024-07-25T18:44:21.010000"],["2024-07-25T18:44:22.010000"],["2024-07-25T18:44:23.010000"],["2024-07-25T18:44:24.010000"],["2024-07-25T18:44:25.010000"],["2024-07-25T18:44:26.010000"],["2024-07-25T18:44:27.010000"],["2024-07-25T18:44:28.010000"],["2024-07-25T18:44:29.010000"],["2024-07-25T18:44:30.010000"],["2024-07-25T18:44:31.010000"],["2024-07-25T18:44:32.010000"],["2024-07-25T18:44:33.010000"],["2024-07-25T18:44:34.010000"],["2024-07-25T18:44:35.010000"],["2024-07-25T18:44:36.010000"],["2024-07-25T18:44:37.010000"],["2024-07-25T18:44:38.010000"],["2024-07-25T18:44:39.010000"],["2024-07-25T18:44:40.010000"],["2024-07-25T18:44:41.010000"],["2024-07-25T18:44:42.010000"],["2024-07-25T18:44:43.010000"],["2024-07-25T18:44:44.010000"],["2024-07-25T18:44:45.010000"],["2024-07-25T18:44:46.010000"],["2024-07-25T18:44:47.010000"],["2024-07-25T18:44:48.010000"],["2024-07-25T18:44:49.010000"],["2024-07-25T18:44:50.010000"],["2024-07-25T18:44:51.010000"],["2024-07-25T18:44:52.010000"],["2024-07-25T18:44:53.010000"],["2024-07-25T18:44:54.010000"],["2024-07-25T18:44:55.010000"],["2024-07-25T18:44:56.010000"],["2024-07-25T18:44:57.010000"],["2024-07-25T18:44:58.010000"],["2024-07-25T18:44:59.010000"],["2024-07-25T18:45:00.010000"],["2024-07-25T18:45:01.010000"],["2024-07-25T18:45:02.010000"],["2024-07-25T18:45:03.010000"],["2024-07-25T18:45:04.010000"],["2024-07-25T18:45:05.010000"],["2024-07-25T18:45:06.010000"],["2024-07-25T18:45:07.010000"],["2024-07-25T18:45:08.010000"],["2024-07-25T18:45:09.010000"],["2024-07-25T18:45:10.010000"],["2024-07-25T18:45:11.010000"],["2024-07-25T18:45:12.010000"],["2024-07-25T18:45:13.010000"],["2024-07-25T18:45:14.010000"],["2024-07-25T18:45:15.010000"],["2024-07-25T18:45:16.010000"],["2024-07-25T18:45:17.010000"],["2024-07-25T18:45:18.010000"],["2024-07-25T18:45:19.010000"],["2024-07-25T18:45:20.010000"],["2024-07-25T18:45:21.010000"],["2024-07-25T18:45:22.010000"],["2024-07-25T18:45:23.010000"],["2024-07-25T18:45:24.010000"],["2024-07-25T18:45:25.010000"],["2024-07-25T18:45:26.010000"],["2024-07-25T18:45:27.010000"],["2024-07-25T18:45:28.010000"],["2024-07-25T18:45:29.010000"],["2024-07-25T18:45:30.010000"],["2024-07-25T18:45:31.010000"],["2024-07-25T18:45:32.010000"],["2024-07-25T18:45:33.010000"],["2024-07-25T18:45:34.010000"],["2024-07-25T18:45:35.010000"],["2024-07-25T18:45:36.010000"],["2024-07-25T18:45:37.010000"],["2024-07-25T18:45:38.010000"],["2024-07-25T18:45:39.010000"],["2024-07-25T18:45:40.010000"],["2024-07-25T18:45:41.010000"],["2024-07-25T18:45:42.010000"],["2024-07-25T18:45:43.010000"],["2024-07-25T18:45:44.010000"],["2024-07-25T18:45:45.010000"],["2024-07-25T18:45:46.010000"],["2024-07-25T18:45:47.010000"],["2024-07-25T18:45:48.010000"],["2024-07-25T18:45:49.010000"],["2024-07-25T18:45:50.010000"],["2024-07-25T18:45:51.010000"],["2024-07-25T18:45:52.010000"],["2024-07-25T18:45:53.010000"],["2024-07-25T18:45:54.010000"],["2024-07-25T18:45:55.010000"],["2024-07-25T18:45:56.010000"],["2024-07-25T18:45:57.010000"],["2024-07-25T18:45:58.010000"],["2024-07-25T18:45:59.010000"],["2024-07-25T18:46:00.010000"],["2024-07-25T18:46:01.010000"],["2024-07-25T18:46:02.010000"],["2024-07-25T18:46:03.010000"],["2024-07-25T18:46:04.010000"],["2024-07-25T18:46:05.010000"],["2024-07-25T18:46:06.010000"],["2024-07-25T18:46:07.010000"],["2024-07-25T18:46:08.010000"],["2024-07-25T18:46:09.010000"],["2024-07-25T18:46:10.010000"],["2024-07-25T18:46:11.010000"],["2024-07-25T18:46:12.010000"],["2024-07-25T18:46:13.010000"],["2024-07-25T18:46:14.010000"],["2024-07-25T18:46:15.010000"],["2024-07-25T18:46:16.010000"],["2024-07-25T18:46:17.010000"],["2024-07-25T18:46:18.010000"],["2024-07-25T18:46:19.010000"],["2024-07-25T18:46:20.010000"],["2024-07-25T18:46:21.010000"],["2024-07-25T18:46:22.010000"],["2024-07-25T18:46:23.010000"],["2024-07-25T18:46:24.010000"],["2024-07-25T18:46:25.010000"],["2024-07-25T18:46:26.010000"],["2024-07-25T18:46:27.010000"],["2024-07-25T18:46:28.010000"],["2024-07-25T18:46:29.010000"],["2024-07-25T18:46:30.010000"],["2024-07-25T18:46:31.010000"],["2024-07-25T18:46:32.010000"],["2024-07-25T18:46:33.010000"],["2024-07-25T18:46:34.010000"],["2024-07-25T18:46:35.010000"],["2024-07-25T18:46:36.010000"],["2024-07-25T18:46:37.010000"],["2024-07-25T18:46:38.010000"],["2024-07-25T18:46:39.010000"],["2024-07-25T18:46:40.010000"],["2024-07-25T18:46:41.010000"],["2024-07-25T18:46:42.010000"],["2024-07-25T18:46:43.010000"],["2024-07-25T18:46:44.010000"],["2024-07-25T18:46:45.010000"],["2024-07-25T18:46:46.010000"],["2024-07-25T18:46:47.010000"],["2024-07-25T18:46:48.010000"],["2024-07-25T18:46:49.010000"],["2024-07-25T18:46:50.010000"],["2024-07-25T18:46:51.010000"],["2024-07-25T18:46:52.010000"],["2024-07-25T18:46:53.010000"],["2024-07-25T18:46:54.010000"],["2024-07-25T18:46:55.010000"],["2024-07-25T18:46:56.010000"],["2024-07-25T18:46:57.010000"],["2024-07-25T18:46:58.010000"],["2024-07-25T18:46:59.010000"],["2024-07-25T18:47:00.010000"],["2024-07-25T18:47:01.010000"],["2024-07-25T18:47:02.010000"],["2024-07-25T18:47:03.010000"],["2024-07-25T18:47:04.010000"],["2024-07-25T18:47:05.010000"],["2024-07-25T18:47:06.010000"],["2024-07-25T18:47:07.010000"],["2024-07-25T18:47:08.010000"],["2024-07-25T18:47:09.010000"],["2024-07-25T18:47:10.010000"],["2024-07-25T18:47:11.010000"],["2024-07-25T18:47:12.010000"],["2024-07-25T18:47:13.010000"],["2024-07-25T18:47:14.010000"],["2024-07-25T18:47:15.010000"],["2024-07-25T18:47:16.010000"],["2024-07-25T18:47:17.010000"],["2024-07-25T18:47:18.010000"],["2024-07-25T18:47:19.010000"],["2024-07-25T18:47:20.010000"],["2024-07-25T18:47:21.010000"],["2024-07-25T18:47:22.010000"],["2024-07-25T18:47:23.010000"],["2024-07-25T18:47:24.010000"],["2024-07-25T18:47:25.010000"],["2024-07-25T18:47:26.010000"],["2024-07-25T18:47:27.010000"],["2024-07-25T18:47:28.010000"],["2024-07-25T18:47:29.010000"],["2024-07-25T18:47:30.010000"],["2024-07-25T18:47:31.010000"],["2024-07-25T18:47:32.010000"],["2024-07-25T18:47:33.010000"],["2024-07-25T18:47:34.010000"],["2024-07-25T18:47:35.010000"],["2024-07-25T18:47:36.010000"],["2024-07-25T18:47:37.010000"],["2024-07-25T18:47:38.010000"],["2024-07-25T18:47:39.010000"],["2024-07-25T18:47:40.010000"],["2024-07-25T18:47:41.010000"],["2024-07-25T18:47:42.010000"],["2024-07-25T18:47:43.010000"],["2024-07-25T18:47:44.010000"],["2024-07-25T18:47:45.010000"],["2024-07-25T18:47:46.010000"],["2024-07-25T18:47:47.010000"],["2024-07-25T18:47:48.010000"],["2024-07-25T18:47:49.010000"],["2024-07-25T18:47:50.010000"],["2024-07-25T18:47:51.010000"],["2024-07-25T18:47:52.010000"],["2024-07-25T18:47:53.010000"],["2024-07-25T18:47:54.010000"],["2024-07-25T18:47:55.010000"],["2024-07-25T18:47:56.010000"],["2024-07-25T18:47:57.010000"],["2024-07-25T18:47:58.010000"],["2024-07-25T18:47:59.010000"],["2024-07-25T18:48:00.010000"],["2024-07-25T18:48:01.010000"],["2024-07-25T18:48:02.010000"],["2024-07-25T18:48:03.010000"],["2024-07-25T18:48:04.010000"],["2024-07-25T18:48:05.010000"],["2024-07-25T18:48:06.010000"],["2024-07-25T18:48:07.010000"],["2024-07-25T18:48:08.010000"],["2024-07-25T18:48:09.010000"],["2024-07-25T18:48:10.010000"],["2024-07-25T18:48:11.010000"],["2024-07-25T18:48:12.010000"],["2024-07-25T18:48:13.010000"],["2024-07-25T18:48:14.010000"],["2024-07-25T18:48:15.010000"],["2024-07-25T18:48:16.010000"],["2024-07-25T18:48:17.010000"],["2024-07-25T18:48:18.010000"],["2024-07-25T18:48:19.010000"],["2024-07-25T18:48:20.010000"],["2024-07-25T18:48:21.010000"],["2024-07-25T18:48:22.010000"],["2024-07-25T18:48:23.010000"],["2024-07-25T18:48:24.010000"],["2024-07-25T18:48:25.010000"],["2024-07-25T18:48:26.010000"],["2024-07-25T18:48:27.010000"],["2024-07-25T18:48:28.010000"],["2024-07-25T18:48:29.010000"],["2024-07-25T18:48:30.010000"],["2024-07-25T18:48:31.010000"],["2024-07-25T18:48:32.010000"],["2024-07-25T18:48:33.010000"],["2024-07-25T18:48:34.010000"],["2024-07-25T18:48:35.010000"],["2024-07-25T18:48:36.010000"],["2024-07-25T18:48:37.010000"],["2024-07-25T18:48:38.010000"],["2024-07-25T18:48:39.010000"],["2024-07-25T18:48:40.010000"],["2024-07-25T18:48:41.010000"],["2024-07-25T18:48:42.010000"],["2024-07-25T18:48:43.010000"],["2024-07-25T18:48:44.010000"],["2024-07-25T18:48:45.010000"],["2024-07-25T18:48:46.010000"],["2024-07-25T18:48:47.010000"],["2024-07-25T18:48:48.010000"],["2024-07-25T18:48:49.010000"],["2024-07-25T18:48:50.010000"],["2024-07-25T18:48:51.010000"],["2024-07-25T18:48:52.010000"],["2024-07-25T18:48:53.010000"],["2024-07-25T18:48:54.010000"],["2024-07-25T18:48:55.010000"],["2024-07-25T18:48:56.010000"],["2024-07-25T18:48:57.010000"],["2024-07-25T18:48:58.010000"],["2024-07-25T18:48:59.010000"],["2024-07-25T18:49:00.010000"],["2024-07-25T18:49:01.010000"],["2024-07-25T18:49:02.010000"],["2024-07-25T18:49:03.010000"],["2024-07-25T18:49:04.010000"],["2024-07-25T18:49:05.010000"],["2024-07-25T18:49:06.010000"],["2024-07-25T18:49:07.010000"],["2024-07-25T18:49:08.010000"],["2024-07-25T18:49:09.010000"],["2024-07-25T18:49:10.010000"],["2024-07-25T18:49:11.010000"],["2024-07-25T18:49:12.010000"],["2024-07-25T18:49:13.010000"],["2024-07-25T18:49:14.010000"],["2024-07-25T18:49:15.010000"],["2024-07-25T18:49:16.010000"],["2024-07-25T18:49:17.010000"],["2024-07-25T18:49:18.010000"],["2024-07-25T18:49:19.010000"],["2024-07-25T18:49:20.010000"],["2024-07-25T18:49:21.010000"],["2024-07-25T18:49:22.010000"],["2024-07-25T18:49:23.010000"],["2024-07-25T18:49:24.010000"],["2024-07-25T18:49:25.010000"],["2024-07-25T18:49:26.010000"],["2024-07-25T18:49:27.010000"],["2024-07-25T18:49:28.010000"],["2024-07-25T18:49:29.010000"],["2024-07-25T18:49:30.010000"],["2024-07-25T18:49:31.010000"],["2024-07-25T18:49:32.010000"],["2024-07-25T18:49:33.010000"],["2024-07-25T18:49:34.010000"],["2024-07-25T18:49:35.010000"],["2024-07-25T18:49:36.010000"],["2024-07-25T18:49:37.010000"],["2024-07-25T18:49:38.010000"],["2024-07-25T18:49:39.010000"],["2024-07-25T18:49:40.010000"],["2024-07-25T18:49:41.010000"],["2024-07-25T18:49:42.010000"],["2024-07-25T18:49:43.010000"],["2024-07-25T18:49:44.010000"],["2024-07-25T18:49:45.010000"],["2024-07-25T18:49:46.010000"],["2024-07-25T18:49:47.010000"],["2024-07-25T18:49:48.010000"],["2024-07-25T18:49:49.010000"],["2024-07-25T18:49:50.010000"],["2024-07-25T18:49:51.010000"],["2024-07-25T18:49:52.010000"],["2024-07-25T18:49:53.010000"],["2024-07-25T18:49:54.010000"],["2024-07-25T18:49:55.010000"],["2024-07-25T18:49:56.010000"],["2024-07-25T18:49:57.010000"],["2024-07-25T18:49:58.010000"],["2024-07-25T18:49:59.010000"],["2024-07-25T18:50:00.010000"],["2024-07-25T18:50:01.010000"],["2024-07-25T18:50:02.010000"],["2024-07-25T18:50:03.010000"],["2024-07-25T18:50:04.010000"],["2024-07-25T18:50:05.010000"],["2024-07-25T18:50:06.010000"],["2024-07-25T18:50:07.010000"],["2024-07-25T18:50:08.010000"],["2024-07-25T18:50:09.010000"],["2024-07-25T18:50:10.010000"],["2024-07-25T18:50:11.010000"],["2024-07-25T18:50:12.010000"],["2024-07-25T18:50:13.010000"],["2024-07-25T18:50:14.010000"],["2024-07-25T18:50:15.010000"],["2024-07-25T18:50:16.010000"],["2024-07-25T18:50:17.010000"],["2024-07-25T18:50:18.010000"],["2024-07-25T18:50:19.010000"],["2024-07-25T18:50:20.010000"],["2024-07-25T18:50:21.010000"],["2024-07-25T18:50:22.010000"],["2024-07-25T18:50:23.010000"],["2024-07-25T18:50:24.010000"],["2024-07-25T18:50:25.010000"],["2024-07-25T18:50:26.010000"],["2024-07-25T18:50:27.010000"],["2024-07-25T18:50:28.010000"],["2024-07-25T18:50:29.010000"],["2024-07-25T18:50:30.010000"],["2024-07-25T18:50:31.010000"],["2024-07-25T18:50:32.010000"],["2024-07-25T18:50:33.010000"],["2024-07-25T18:50:34.010000"],["2024-07-25T18:50:35.010000"],["2024-07-25T18:50:36.010000"],["2024-07-25T18:50:37.010000"],["2024-07-25T18:50:38.010000"],["2024-07-25T18:50:39.010000"],["2024-07-25T18:50:40.010000"],["2024-07-25T18:50:41.010000"],["2024-07-25T18:50:42.010000"],["2024-07-25T18:50:43.010000"],["2024-07-25T18:50:44.010000"],["2024-07-25T18:50:45.010000"],["2024-07-25T18:50:46.010000"],["2024-07-25T18:50:47.010000"],["2024-07-25T18:50:48.010000"],["2024-07-25T18:50:49.010000"],["2024-07-25T18:50:50.010000"],["2024-07-25T18:50:51.010000"],["2024-07-25T18:50:52.010000"],["2024-07-25T18:50:53.010000"],["2024-07-25T18:50:54.010000"],["2024-07-25T18:50:55.010000"],["2024-07-25T18:50:56.010000"],["2024-07-25T18:50:57.010000"],["2024-07-25T18:50:58.010000"],["2024-07-25T18:50:59.010000"],["2024-07-25T18:51:00.010000"],["2024-07-25T18:51:01.010000"],["2024-07-25T18:51:02.010000"],["2024-07-25T18:51:03.010000"],["2024-07-25T18:51:04.010000"],["2024-07-25T18:51:05.010000"],["2024-07-25T18:51:06.010000"],["2024-07-25T18:51:07.010000"],["2024-07-25T18:51:08.010000"],["2024-07-25T18:51:09.010000"],["2024-07-25T18:51:10.010000"],["2024-07-25T18:51:11.010000"],["2024-07-25T18:51:12.010000"],["2024-07-25T18:51:13.010000"],["2024-07-25T18:51:14.010000"],["2024-07-25T18:51:15.010000"],["2024-07-25T18:51:16.010000"],["2024-07-25T18:51:17.010000"],["2024-07-25T18:51:18.010000"],["2024-07-25T18:51:19.010000"],["2024-07-25T18:51:20.010000"],["2024-07-25T18:51:21.010000"],["2024-07-25T18:51:22.010000"],["2024-07-25T18:51:23.010000"],["2024-07-25T18:51:24.010000"],["2024-07-25T18:51:25.010000"],["2024-07-25T18:51:26.010000"],["2024-07-25T18:51:27.010000"],["2024-07-25T18:51:28.010000"],["2024-07-25T18:51:29.010000"],["2024-07-25T18:51:30.010000"],["2024-07-25T18:51:31.010000"],["2024-07-25T18:51:32.010000"],["2024-07-25T18:51:33.010000"],["2024-07-25T18:51:34.010000"],["2024-07-25T18:51:35.010000"],["2024-07-25T18:51:36.010000"],["2024-07-25T18:51:37.010000"],["2024-07-25T18:51:38.010000"],["2024-07-25T18:51:39.010000"],["2024-07-25T18:51:40.010000"],["2024-07-25T18:51:41.010000"],["2024-07-25T18:51:42.010000"],["2024-07-25T18:51:43.010000"],["2024-07-25T18:51:44.010000"],["2024-07-25T18:51:45.010000"],["2024-07-25T18:51:46.010000"],["2024-07-25T18:51:47.010000"],["2024-07-25T18:51:48.010000"],["2024-07-25T18:51:49.010000"],["2024-07-25T18:51:50.010000"],["2024-07-25T18:51:51.010000"],["2024-07-25T18:51:52.010000"],["2024-07-25T18:51:53.010000"],["2024-07-25T18:51:54.010000"],["2024-07-25T18:51:55.010000"],["2024-07-25T18:51:56.010000"],["2024-07-25T18:51:57.010000"],["2024-07-25T18:51:58.010000"],["2024-07-25T18:51:59.010000"],["2024-07-25T18:52:00.010000"],["2024-07-25T18:52:01.010000"],["2024-07-25T18:52:02.010000"],["2024-07-25T18:52:03.010000"],["2024-07-25T18:52:04.010000"],["2024-07-25T18:52:05.010000"],["2024-07-25T18:52:06.010000"],["2024-07-25T18:52:07.010000"],["2024-07-25T18:52:08.010000"],["2024-07-25T18:52:09.010000"],["2024-07-25T18:52:10.010000"],["2024-07-25T18:52:11.010000"],["2024-07-25T18:52:12.010000"],["2024-07-25T18:52:13.010000"],["2024-07-25T18:52:14.010000"],["2024-07-25T18:52:15.010000"],["2024-07-25T18:52:16.010000"],["2024-07-25T18:52:17.010000"],["2024-07-25T18:52:18.010000"],["2024-07-25T18:52:19.010000"],["2024-07-25T18:52:20.010000"],["2024-07-25T18:52:21.010000"],["2024-07-25T18:52:22.010000"],["2024-07-25T18:52:23.010000"],["2024-07-25T18:52:24.010000"],["2024-07-25T18:52:25.010000"],["2024-07-25T18:52:26.010000"],["2024-07-25T18:52:27.010000"],["2024-07-25T18:52:28.010000"],["2024-07-25T18:52:29.010000"],["2024-07-25T18:52:30.010000"],["2024-07-25T18:52:31.010000"],["2024-07-25T18:52:32.010000"],["2024-07-25T18:52:33.010000"],["2024-07-25T18:52:34.010000"],["2024-07-25T18:52:35.010000"],["2024-07-25T18:52:36.010000"],["2024-07-25T18:52:37.010000"],["2024-07-25T18:52:38.010000"],["2024-07-25T18:52:39.010000"],["2024-07-25T18:52:40.010000"],["2024-07-25T18:52:41.010000"],["2024-07-25T18:52:42.010000"],["2024-07-25T18:52:43.010000"],["2024-07-25T18:52:44.010000"],["2024-07-25T18:52:45.010000"],["2024-07-25T18:52:46.010000"],["2024-07-25T18:52:47.010000"],["2024-07-25T18:52:48.010000"],["2024-07-25T18:52:49.010000"],["2024-07-25T18:52:50.010000"],["2024-07-25T18:52:51.010000"],["2024-07-25T18:52:52.010000"],["2024-07-25T18:52:53.010000"],["2024-07-25T18:52:54.010000"],["2024-07-25T18:52:55.010000"],["2024-07-25T18:52:56.010000"],["2024-07-25T18:52:57.010000"],["2024-07-25T18:52:58.010000"],["2024-07-25T18:52:59.010000"],["2024-07-25T18:53:00.010000"],["2024-07-25T18:53:01.010000"],["2024-07-25T18:53:02.010000"],["2024-07-25T18:53:03.010000"],["2024-07-25T18:53:04.010000"],["2024-07-25T18:53:05.010000"],["2024-07-25T18:53:06.010000"],["2024-07-25T18:53:07.010000"],["2024-07-25T18:53:08.010000"],["2024-07-25T18:53:09.010000"],["2024-07-25T18:53:10.010000"],["2024-07-25T18:53:11.010000"],["2024-07-25T18:53:12.010000"],["2024-07-25T18:53:13.010000"],["2024-07-25T18:53:14.010000"],["2024-07-25T18:53:15.010000"],["2024-07-25T18:53:16.010000"],["2024-07-25T18:53:17.010000"],["2024-07-25T18:53:18.010000"],["2024-07-25T18:53:19.010000"],["2024-07-25T18:53:20.010000"],["2024-07-25T18:53:21.010000"],["2024-07-25T18:53:22.010000"],["2024-07-25T18:53:23.010000"],["2024-07-25T18:53:24.010000"],["2024-07-25T18:53:25.010000"],["2024-07-25T18:53:26.010000"],["2024-07-25T18:53:27.010000"],["2024-07-25T18:53:28.010000"],["2024-07-25T18:53:29.010000"],["2024-07-25T18:53:30.010000"],["2024-07-25T18:53:31.010000"],["2024-07-25T18:53:32.010000"],["2024-07-25T18:53:33.010000"],["2024-07-25T18:53:34.010000"],["2024-07-25T18:53:35.010000"],["2024-07-25T18:53:36.010000"],["2024-07-25T18:53:37.010000"],["2024-07-25T18:53:38.010000"],["2024-07-25T18:53:39.010000"],["2024-07-25T18:53:40.010000"],["2024-07-25T18:53:41.010000"],["2024-07-25T18:53:42.010000"],["2024-07-25T18:53:43.010000"],["2024-07-25T18:53:44.010000"],["2024-07-25T18:53:45.010000"],["2024-07-25T18:53:46.010000"],["2024-07-25T18:53:47.010000"],["2024-07-25T18:53:48.010000"],["2024-07-25T18:53:49.010000"],["2024-07-25T18:53:50.010000"],["2024-07-25T18:53:51.010000"],["2024-07-25T18:53:52.010000"],["2024-07-25T18:53:53.010000"],["2024-07-25T18:53:54.010000"],["2024-07-25T18:53:55.010000"],["2024-07-25T18:53:56.010000"],["2024-07-25T18:53:57.010000"],["2024-07-25T18:53:58.010000"],["2024-07-25T18:53:59.010000"],["2024-07-25T18:54:00.010000"],["2024-07-25T18:54:01.010000"],["2024-07-25T18:54:02.010000"],["2024-07-25T18:54:03.010000"],["2024-07-25T18:54:04.010000"],["2024-07-25T18:54:05.010000"],["2024-07-25T18:54:06.010000"],["2024-07-25T18:54:07.010000"],["2024-07-25T18:54:08.010000"],["2024-07-25T18:54:09.010000"],["2024-07-25T18:54:10.010000"],["2024-07-25T18:54:11.010000"],["2024-07-25T18:54:12.010000"],["2024-07-25T18:54:13.010000"],["2024-07-25T18:54:14.010000"],["2024-07-25T18:54:15.010000"],["2024-07-25T18:54:16.010000"],["2024-07-25T18:54:17.010000"],["2024-07-25T18:54:18.010000"],["2024-07-25T18:54:19.010000"],["2024-07-25T18:54:20.010000"],["2024-07-25T18:54:21.010000"],["2024-07-25T18:54:22.010000"],["2024-07-25T18:54:23.010000"],["2024-07-25T18:54:24.010000"],["2024-07-25T18:54:25.010000"],["2024-07-25T18:54:26.010000"],["2024-07-25T18:54:27.010000"],["2024-07-25T18:54:28.010000"],["2024-07-25T18:54:29.010000"],["2024-07-25T18:54:30.010000"],["2024-07-25T18:54:31.010000"],["2024-07-25T18:54:32.010000"],["2024-07-25T18:54:33.010000"],["2024-07-25T18:54:34.010000"],["2024-07-25T18:54:35.010000"],["2024-07-25T18:54:36.010000"],["2024-07-25T18:54:37.010000"],["2024-07-25T18:54:38.010000"],["2024-07-25T18:54:39.010000"],["2024-07-25T18:54:40.010000"],["2024-07-25T18:54:41.010000"],["2024-07-25T18:54:42.010000"],["2024-07-25T18:54:43.010000"],["2024-07-25T18:54:44.010000"],["2024-07-25T18:54:45.010000"],["2024-07-25T18:54:46.010000"],["2024-07-25T18:54:47.010000"],["2024-07-25T18:54:48.010000"],["2024-07-25T18:54:49.010000"],["2024-07-25T18:54:50.010000"],["2024-07-25T18:54:51.010000"],["2024-07-25T18:54:52.010000"],["2024-07-25T18:54:53.010000"],["2024-07-25T18:54:54.010000"],["2024-07-25T18:54:55.010000"],["2024-07-25T18:54:56.010000"],["2024-07-25T18:54:57.010000"],["2024-07-25T18:54:58.010000"],["2024-07-25T18:54:59.010000"],["2024-07-25T18:55:00.010000"],["2024-07-25T18:55:01.010000"],["2024-07-25T18:55:02.010000"],["2024-07-25T18:55:03.010000"],["2024-07-25T18:55:04.010000"],["2024-07-25T18:55:05.010000"],["2024-07-25T18:55:06.010000"],["2024-07-25T18:55:07.010000"],["2024-07-25T18:55:08.010000"],["2024-07-25T18:55:09.010000"],["2024-07-25T18:55:10.010000"],["2024-07-25T18:55:11.010000"],["2024-07-25T18:55:12.010000"],["2024-07-25T18:55:13.010000"],["2024-07-25T18:55:14.010000"],["2024-07-25T18:55:15.010000"],["2024-07-25T18:55:16.010000"],["2024-07-25T18:55:17.010000"],["2024-07-25T18:55:18.010000"],["2024-07-25T18:55:19.010000"],["2024-07-25T18:55:20.010000"],["2024-07-25T18:55:21.010000"],["2024-07-25T18:55:22.010000"],["2024-07-25T18:55:23.010000"],["2024-07-25T18:55:24.010000"],["2024-07-25T18:55:25.010000"],["2024-07-25T18:55:26.010000"],["2024-07-25T18:55:27.010000"],["2024-07-25T18:55:28.010000"],["2024-07-25T18:55:29.010000"],["2024-07-25T18:55:30.010000"],["2024-07-25T18:55:31.010000"],["2024-07-25T18:55:32.010000"],["2024-07-25T18:55:33.010000"],["2024-07-25T18:55:34.010000"],["2024-07-25T18:55:35.010000"],["2024-07-25T18:55:36.010000"],["2024-07-25T18:55:37.010000"],["2024-07-25T18:55:38.010000"],["2024-07-25T18:55:39.010000"],["2024-07-25T18:55:40.010000"],["2024-07-25T18:55:41.010000"],["2024-07-25T18:55:42.010000"],["2024-07-25T18:55:43.010000"],["2024-07-25T18:55:44.010000"],["2024-07-25T18:55:45.010000"],["2024-07-25T18:55:46.010000"],["2024-07-25T18:55:47.010000"],["2024-07-25T18:55:48.010000"],["2024-07-25T18:55:49.010000"],["2024-07-25T18:55:50.010000"],["2024-07-25T18:55:51.010000"],["2024-07-25T18:55:52.010000"],["2024-07-25T18:55:53.010000"],["2024-07-25T18:55:54.010000"],["2024-07-25T18:55:55.010000"],["2024-07-25T18:55:56.010000"],["2024-07-25T18:55:57.010000"],["2024-07-25T18:55:58.010000"],["2024-07-25T18:55:59.010000"],["2024-07-25T18:56:00.010000"],["2024-07-25T18:56:01.010000"],["2024-07-25T18:56:02.010000"],["2024-07-25T18:56:03.010000"],["2024-07-25T18:56:04.010000"],["2024-07-25T18:56:05.010000"],["2024-07-25T18:56:06.010000"],["2024-07-25T18:56:07.010000"],["2024-07-25T18:56:08.010000"],["2024-07-25T18:56:09.010000"],["2024-07-25T18:56:10.010000"],["2024-07-25T18:56:11.010000"],["2024-07-25T18:56:12.010000"],["2024-07-25T18:56:13.010000"],["2024-07-25T18:56:14.010000"],["2024-07-25T18:56:15.010000"],["2024-07-25T18:56:16.010000"],["2024-07-25T18:56:17.010000"],["2024-07-25T18:56:18.010000"],["2024-07-25T18:56:19.010000"],["2024-07-25T18:56:20.010000"],["2024-07-25T18:56:21.010000"],["2024-07-25T18:56:22.010000"],["2024-07-25T18:56:23.010000"],["2024-07-25T18:56:24.010000"],["2024-07-25T18:56:25.010000"],["2024-07-25T18:56:26.010000"],["2024-07-25T18:56:27.010000"],["2024-07-25T18:56:28.010000"],["2024-07-25T18:56:29.010000"],["2024-07-25T18:56:30.010000"],["2024-07-25T18:56:31.010000"],["2024-07-25T18:56:32.010000"],["2024-07-25T18:56:33.010000"],["2024-07-25T18:56:34.010000"],["2024-07-25T18:56:35.010000"],["2024-07-25T18:56:36.010000"],["2024-07-25T18:56:37.010000"],["2024-07-25T18:56:38.010000"],["2024-07-25T18:56:39.010000"],["2024-07-25T18:56:40.010000"],["2024-07-25T18:56:41.010000"],["2024-07-25T18:56:42.010000"],["2024-07-25T18:56:43.010000"],["2024-07-25T18:56:44.010000"],["2024-07-25T18:56:45.010000"],["2024-07-25T18:56:46.010000"],["2024-07-25T18:56:47.010000"],["2024-07-25T18:56:48.010000"],["2024-07-25T18:56:49.010000"],["2024-07-25T18:56:50.010000"],["2024-07-25T18:56:51.010000"],["2024-07-25T18:56:52.010000"],["2024-07-25T18:56:53.010000"],["2024-07-25T18:56:54.010000"],["2024-07-25T18:56:55.010000"],["2024-07-25T18:56:56.010000"],["2024-07-25T18:56:57.010000"],["2024-07-25T18:56:58.010000"],["2024-07-25T18:56:59.010000"],["2024-07-25T18:57:00.010000"],["2024-07-25T18:57:01.010000"],["2024-07-25T18:57:02.010000"],["2024-07-25T18:57:03.010000"],["2024-07-25T18:57:04.010000"],["2024-07-25T18:57:05.010000"],["2024-07-25T18:57:06.010000"],["2024-07-25T18:57:07.010000"],["2024-07-25T18:57:08.010000"],["2024-07-25T18:57:09.010000"],["2024-07-25T18:57:10.010000"],["2024-07-25T18:57:11.010000"],["2024-07-25T18:57:12.010000"],["2024-07-25T18:57:13.010000"],["2024-07-25T18:57:14.010000"],["2024-07-25T18:57:15.010000"],["2024-07-25T18:57:16.010000"],["2024-07-25T18:57:17.010000"],["2024-07-25T18:57:18.010000"],["2024-07-25T18:57:19.010000"],["2024-07-25T18:57:20.010000"],["2024-07-25T18:57:21.010000"],["2024-07-25T18:57:22.010000"],["2024-07-25T18:57:23.010000"],["2024-07-25T18:57:24.010000"],["2024-07-25T18:57:25.010000"],["2024-07-25T18:57:26.010000"],["2024-07-25T18:57:27.010000"],["2024-07-25T18:57:28.010000"],["2024-07-25T18:57:29.010000"],["2024-07-25T18:57:30.010000"],["2024-07-25T18:57:31.010000"],["2024-07-25T18:57:32.010000"],["2024-07-25T18:57:33.010000"],["2024-07-25T18:57:34.010000"],["2024-07-25T18:57:35.010000"],["2024-07-25T18:57:36.010000"],["2024-07-25T18:57:37.010000"],["2024-07-25T18:57:38.010000"],["2024-07-25T18:57:39.010000"],["2024-07-25T18:57:40.010000"],["2024-07-25T18:57:41.010000"],["2024-07-25T18:57:42.010000"],["2024-07-25T18:57:43.010000"],["2024-07-25T18:57:44.010000"],["2024-07-25T18:57:45.010000"],["2024-07-25T18:57:46.010000"],["2024-07-25T18:57:47.010000"],["2024-07-25T18:57:48.010000"],["2024-07-25T18:57:49.010000"],["2024-07-25T18:57:50.010000"],["2024-07-25T18:57:51.010000"],["2024-07-25T18:57:52.010000"],["2024-07-25T18:57:53.010000"],["2024-07-25T18:57:54.010000"],["2024-07-25T18:57:55.010000"],["2024-07-25T18:57:56.010000"],["2024-07-25T18:57:57.010000"],["2024-07-25T18:57:58.010000"],["2024-07-25T18:57:59.010000"],["2024-07-25T18:58:00.010000"],["2024-07-25T18:58:01.010000"],["2024-07-25T18:58:02.010000"],["2024-07-25T18:58:03.010000"],["2024-07-25T18:58:04.010000"],["2024-07-25T18:58:05.010000"],["2024-07-25T18:58:06.010000"],["2024-07-25T18:58:07.010000"],["2024-07-25T18:58:08.010000"],["2024-07-25T18:58:09.010000"],["2024-07-25T18:58:10.010000"],["2024-07-25T18:58:11.010000"],["2024-07-25T18:58:12.010000"],["2024-07-25T18:58:13.010000"],["2024-07-25T18:58:14.010000"],["2024-07-25T18:58:15.010000"],["2024-07-25T18:58:16.010000"],["2024-07-25T18:58:17.010000"],["2024-07-25T18:58:18.010000"],["2024-07-25T18:58:19.010000"],["2024-07-25T18:58:20.010000"],["2024-07-25T18:58:21.010000"],["2024-07-25T18:58:22.010000"],["2024-07-25T18:58:23.010000"],["2024-07-25T18:58:24.010000"],["2024-07-25T18:58:25.010000"],["2024-07-25T18:58:26.010000"],["2024-07-25T18:58:27.010000"],["2024-07-25T18:58:28.010000"],["2024-07-25T18:58:29.010000"],["2024-07-25T18:58:30.010000"],["2024-07-25T18:58:31.010000"],["2024-07-25T18:58:32.010000"],["2024-07-25T18:58:33.010000"],["2024-07-25T18:58:34.010000"],["2024-07-25T18:58:35.010000"],["2024-07-25T18:58:36.010000"],["2024-07-25T18:58:37.010000"],["2024-07-25T18:58:38.010000"],["2024-07-25T18:58:39.010000"],["2024-07-25T18:58:40.010000"],["2024-07-25T18:58:41.010000"],["2024-07-25T18:58:42.010000"],["2024-07-25T18:58:43.010000"],["2024-07-25T18:58:44.010000"],["2024-07-25T18:58:45.010000"],["2024-07-25T18:58:46.010000"],["2024-07-25T18:58:47.010000"],["2024-07-25T18:58:48.010000"],["2024-07-25T18:58:49.010000"],["2024-07-25T18:58:50.010000"],["2024-07-25T18:58:51.010000"],["2024-07-25T18:58:52.010000"],["2024-07-25T18:58:53.010000"],["2024-07-25T18:58:54.010000"],["2024-07-25T18:58:55.010000"],["2024-07-25T18:58:56.010000"],["2024-07-25T18:58:57.010000"],["2024-07-25T18:58:58.010000"],["2024-07-25T18:58:59.010000"],["2024-07-25T18:59:00.010000"],["2024-07-25T18:59:01.010000"],["2024-07-25T18:59:02.010000"],["2024-07-25T18:59:03.010000"],["2024-07-25T18:59:04.010000"],["2024-07-25T18:59:05.010000"],["2024-07-25T18:59:06.010000"],["2024-07-25T18:59:07.010000"],["2024-07-25T18:59:08.010000"],["2024-07-25T18:59:09.010000"],["2024-07-25T18:59:10.010000"],["2024-07-25T18:59:11.010000"],["2024-07-25T18:59:12.010000"],["2024-07-25T18:59:13.010000"],["2024-07-25T18:59:14.010000"],["2024-07-25T18:59:15.010000"],["2024-07-25T18:59:16.010000"],["2024-07-25T18:59:17.010000"],["2024-07-25T18:59:18.010000"],["2024-07-25T18:59:19.010000"],["2024-07-25T18:59:20.010000"],["2024-07-25T18:59:21.010000"],["2024-07-25T18:59:22.010000"],["2024-07-25T18:59:23.010000"],["2024-07-25T18:59:24.010000"],["2024-07-25T18:59:25.010000"],["2024-07-25T18:59:26.010000"],["2024-07-25T18:59:27.010000"],["2024-07-25T18:59:28.010000"],["2024-07-25T18:59:29.010000"],["2024-07-25T18:59:30.010000"],["2024-07-25T18:59:31.010000"],["2024-07-25T18:59:32.010000"],["2024-07-25T18:59:33.010000"],["2024-07-25T18:59:34.010000"],["2024-07-25T18:59:35.010000"],["2024-07-25T18:59:36.010000"],["2024-07-25T18:59:37.010000"],["2024-07-25T18:59:38.010000"],["2024-07-25T18:59:39.010000"],["2024-07-25T18:59:40.010000"],["2024-07-25T18:59:41.010000"],["2024-07-25T18:59:42.010000"],["2024-07-25T18:59:43.010000"],["2024-07-25T18:59:44.010000"],["2024-07-25T18:59:45.010000"],["2024-07-25T18:59:46.010000"],["2024-07-25T18:59:47.010000"],["2024-07-25T18:59:48.010000"],["2024-07-25T18:59:49.010000"],["2024-07-25T18:59:50.010000"],["2024-07-25T18:59:51.010000"],["2024-07-25T18:59:52.010000"],["2024-07-25T18:59:53.010000"],["2024-07-25T18:59:54.010000"],["2024-07-25T18:59:55.010000"],["2024-07-25T18:59:56.010000"],["2024-07-25T18:59:57.010000"],["2024-07-25T18:59:58.010000"],["2024-07-25T18:59:59.010000"],["2024-07-25T19:00:00.010000"],["2024-07-25T19:00:01.010000"],["2024-07-25T19:00:02.010000"],["2024-07-25T19:00:03.010000"],["2024-07-25T19:00:04.010000"],["2024-07-25T19:00:05.010000"],["2024-07-25T19:00:06.010000"],["2024-07-25T19:00:07.010000"],["2024-07-25T19:00:08.010000"],["2024-07-25T19:00:09.010000"],["2024-07-25T19:00:10.010000"],["2024-07-25T19:00:11.010000"],["2024-07-25T19:00:12.010000"],["2024-07-25T19:00:13.010000"],["2024-07-25T19:00:14.010000"],["2024-07-25T19:00:15.010000"],["2024-07-25T19:00:16.010000"],["2024-07-25T19:00:17.010000"],["2024-07-25T19:00:18.010000"],["2024-07-25T19:00:19.010000"],["2024-07-25T19:00:20.010000"],["2024-07-25T19:00:21.010000"],["2024-07-25T19:00:22.010000"],["2024-07-25T19:00:23.010000"],["2024-07-25T19:00:24.010000"],["2024-07-25T19:00:25.010000"],["2024-07-25T19:00:26.010000"],["2024-07-25T19:00:27.010000"],["2024-07-25T19:00:28.010000"],["2024-07-25T19:00:29.010000"],["2024-07-25T19:00:30.010000"],["2024-07-25T19:00:31.010000"],["2024-07-25T19:00:32.010000"],["2024-07-25T19:00:33.010000"],["2024-07-25T19:00:34.010000"],["2024-07-25T19:00:35.010000"],["2024-07-25T19:00:36.010000"],["2024-07-25T19:00:37.010000"],["2024-07-25T19:00:38.010000"],["2024-07-25T19:00:39.010000"],["2024-07-25T19:00:40.010000"],["2024-07-25T19:00:41.010000"],["2024-07-25T19:00:42.010000"],["2024-07-25T19:00:43.010000"],["2024-07-25T19:00:44.010000"],["2024-07-25T19:00:45.010000"],["2024-07-25T19:00:46.010000"],["2024-07-25T19:00:47.010000"],["2024-07-25T19:00:48.010000"],["2024-07-25T19:00:49.010000"],["2024-07-25T19:00:50.010000"],["2024-07-25T19:00:51.010000"],["2024-07-25T19:00:52.010000"],["2024-07-25T19:00:53.010000"],["2024-07-25T19:00:54.010000"],["2024-07-25T19:00:55.010000"],["2024-07-25T19:00:56.010000"],["2024-07-25T19:00:57.010000"],["2024-07-25T19:00:58.010000"],["2024-07-25T19:00:59.010000"],["2024-07-25T19:01:00.010000"],["2024-07-25T19:01:01.010000"],["2024-07-25T19:01:02.010000"],["2024-07-25T19:01:03.010000"],["2024-07-25T19:01:04.010000"],["2024-07-25T19:01:05.010000"],["2024-07-25T19:01:06.010000"],["2024-07-25T19:01:07.010000"],["2024-07-25T19:01:08.010000"],["2024-07-25T19:01:09.010000"],["2024-07-25T19:01:10.010000"],["2024-07-25T19:01:11.010000"],["2024-07-25T19:01:12.010000"],["2024-07-25T19:01:13.010000"],["2024-07-25T19:01:14.010000"],["2024-07-25T19:01:15.010000"],["2024-07-25T19:01:16.010000"],["2024-07-25T19:01:17.010000"],["2024-07-25T19:01:18.010000"],["2024-07-25T19:01:19.010000"],["2024-07-25T19:01:20.010000"],["2024-07-25T19:01:21.010000"],["2024-07-25T19:01:22.010000"],["2024-07-25T19:01:23.010000"],["2024-07-25T19:01:24.010000"],["2024-07-25T19:01:25.010000"],["2024-07-25T19:01:26.010000"],["2024-07-25T19:01:27.010000"],["2024-07-25T19:01:28.010000"],["2024-07-25T19:01:29.010000"],["2024-07-25T19:01:30.010000"],["2024-07-25T19:01:31.010000"],["2024-07-25T19:01:32.010000"],["2024-07-25T19:01:33.010000"],["2024-07-25T19:01:34.010000"],["2024-07-25T19:01:35.010000"],["2024-07-25T19:01:36.010000"],["2024-07-25T19:01:37.010000"],["2024-07-25T19:01:38.010000"],["2024-07-25T19:01:39.010000"],["2024-07-25T19:01:40.010000"],["2024-07-25T19:01:41.010000"],["2024-07-25T19:01:42.010000"],["2024-07-25T19:01:43.010000"],["2024-07-25T19:01:44.010000"],["2024-07-25T19:01:45.010000"],["2024-07-25T19:01:46.010000"],["2024-07-25T19:01:47.010000"],["2024-07-25T19:01:48.010000"],["2024-07-25T19:01:49.010000"],["2024-07-25T19:01:50.010000"],["2024-07-25T19:01:51.010000"],["2024-07-25T19:01:52.010000"],["2024-07-25T19:01:53.010000"],["2024-07-25T19:01:54.010000"],["2024-07-25T19:01:55.010000"],["2024-07-25T19:01:56.010000"],["2024-07-25T19:01:57.010000"],["2024-07-25T19:01:58.010000"],["2024-07-25T19:01:59.010000"],["2024-07-25T19:02:00.010000"],["2024-07-25T19:02:01.010000"],["2024-07-25T19:02:02.010000"],["2024-07-25T19:02:03.010000"],["2024-07-25T19:02:04.010000"],["2024-07-25T19:02:05.010000"],["2024-07-25T19:02:06.010000"],["2024-07-25T19:02:07.010000"],["2024-07-25T19:02:08.010000"],["2024-07-25T19:02:09.010000"],["2024-07-25T19:02:10.010000"],["2024-07-25T19:02:11.010000"],["2024-07-25T19:02:12.010000"],["2024-07-25T19:02:13.010000"],["2024-07-25T19:02:14.010000"],["2024-07-25T19:02:15.010000"],["2024-07-25T19:02:16.010000"],["2024-07-25T19:02:17.010000"],["2024-07-25T19:02:18.010000"],["2024-07-25T19:02:19.010000"],["2024-07-25T19:02:20.010000"],["2024-07-25T19:02:21.010000"],["2024-07-25T19:02:22.010000"],["2024-07-25T19:02:23.010000"],["2024-07-25T19:02:24.010000"],["2024-07-25T19:02:25.010000"],["2024-07-25T19:02:26.010000"],["2024-07-25T19:02:27.010000"],["2024-07-25T19:02:28.010000"],["2024-07-25T19:02:29.010000"],["2024-07-25T19:02:30.010000"],["2024-07-25T19:02:31.010000"],["2024-07-25T19:02:32.010000"],["2024-07-25T19:02:33.010000"],["2024-07-25T19:02:34.010000"],["2024-07-25T19:02:35.010000"],["2024-07-25T19:02:36.010000"],["2024-07-25T19:02:37.010000"],["2024-07-25T19:02:38.010000"],["2024-07-25T19:02:39.010000"],["2024-07-25T19:02:40.010000"],["2024-07-25T19:02:41.010000"],["2024-07-25T19:02:42.010000"],["2024-07-25T19:02:43.010000"],["2024-07-25T19:02:44.010000"],["2024-07-25T19:02:45.010000"],["2024-07-25T19:02:46.010000"],["2024-07-25T19:02:47.010000"],["2024-07-25T19:02:48.010000"],["2024-07-25T19:02:49.010000"],["2024-07-25T19:02:50.010000"],["2024-07-25T19:02:51.010000"],["2024-07-25T19:02:52.010000"],["2024-07-25T19:02:53.010000"],["2024-07-25T19:02:54.010000"],["2024-07-25T19:02:55.010000"],["2024-07-25T19:02:56.010000"],["2024-07-25T19:02:57.010000"],["2024-07-25T19:02:58.010000"],["2024-07-25T19:02:59.010000"],["2024-07-25T19:03:00.010000"],["2024-07-25T19:03:01.010000"],["2024-07-25T19:03:02.010000"],["2024-07-25T19:03:03.010000"],["2024-07-25T19:03:04.010000"],["2024-07-25T19:03:05.010000"],["2024-07-25T19:03:06.010000"],["2024-07-25T19:03:07.010000"],["2024-07-25T19:03:08.010000"],["2024-07-25T19:03:09.010000"],["2024-07-25T19:03:10.010000"],["2024-07-25T19:03:11.010000"],["2024-07-25T19:03:12.010000"],["2024-07-25T19:03:13.010000"],["2024-07-25T19:03:14.010000"],["2024-07-25T19:03:15.010000"],["2024-07-25T19:03:16.010000"],["2024-07-25T19:03:17.010000"],["2024-07-25T19:03:18.010000"],["2024-07-25T19:03:19.010000"],["2024-07-25T19:03:20.010000"],["2024-07-25T19:03:21.010000"],["2024-07-25T19:03:22.010000"],["2024-07-25T19:03:23.010000"],["2024-07-25T19:03:24.010000"],["2024-07-25T19:03:25.010000"],["2024-07-25T19:03:26.010000"],["2024-07-25T19:03:27.010000"],["2024-07-25T19:03:28.010000"],["2024-07-25T19:03:29.010000"],["2024-07-25T19:03:30.010000"],["2024-07-25T19:03:31.010000"],["2024-07-25T19:03:32.010000"],["2024-07-25T19:03:33.010000"],["2024-07-25T19:03:34.010000"],["2024-07-25T19:03:35.010000"],["2024-07-25T19:03:36.010000"],["2024-07-25T19:03:37.010000"],["2024-07-25T19:03:38.010000"],["2024-07-25T19:03:39.010000"],["2024-07-25T19:03:40.010000"],["2024-07-25T19:03:41.010000"],["2024-07-25T19:03:42.010000"],["2024-07-25T19:03:43.010000"],["2024-07-25T19:03:44.010000"],["2024-07-25T19:03:45.010000"],["2024-07-25T19:03:46.010000"],["2024-07-25T19:03:47.010000"],["2024-07-25T19:03:48.010000"],["2024-07-25T19:03:49.010000"],["2024-07-25T19:03:50.010000"],["2024-07-25T19:03:51.010000"],["2024-07-25T19:03:52.010000"],["2024-07-25T19:03:53.010000"],["2024-07-25T19:03:54.010000"],["2024-07-25T19:03:55.010000"],["2024-07-25T19:03:56.010000"],["2024-07-25T19:03:57.010000"],["2024-07-25T19:03:58.010000"],["2024-07-25T19:03:59.010000"],["2024-07-25T19:04:00.010000"],["2024-07-25T19:04:01.010000"],["2024-07-25T19:04:02.010000"],["2024-07-25T19:04:03.010000"],["2024-07-25T19:04:04.010000"],["2024-07-25T19:04:05.010000"],["2024-07-25T19:04:06.010000"],["2024-07-25T19:04:07.010000"],["2024-07-25T19:04:08.010000"],["2024-07-25T19:04:09.010000"],["2024-07-25T19:04:10.010000"],["2024-07-25T19:04:11.010000"],["2024-07-25T19:04:12.010000"],["2024-07-25T19:04:13.010000"],["2024-07-25T19:04:14.010000"],["2024-07-25T19:04:15.010000"],["2024-07-25T19:04:16.010000"],["2024-07-25T19:04:17.010000"],["2024-07-25T19:04:18.010000"],["2024-07-25T19:04:19.010000"],["2024-07-25T19:04:20.010000"],["2024-07-25T19:04:21.010000"],["2024-07-25T19:04:22.010000"],["2024-07-25T19:04:23.010000"],["2024-07-25T19:04:24.010000"],["2024-07-25T19:04:25.010000"],["2024-07-25T19:04:26.010000"],["2024-07-25T19:04:27.010000"],["2024-07-25T19:04:28.010000"],["2024-07-25T19:04:29.010000"],["2024-07-25T19:04:30.010000"],["2024-07-25T19:04:31.010000"],["2024-07-25T19:04:32.010000"],["2024-07-25T19:04:33.010000"],["2024-07-25T19:04:34.010000"],["2024-07-25T19:04:35.010000"],["2024-07-25T19:04:36.010000"],["2024-07-25T19:04:37.010000"],["2024-07-25T19:04:38.010000"],["2024-07-25T19:04:39.010000"],["2024-07-25T19:04:40.010000"],["2024-07-25T19:04:41.010000"],["2024-07-25T19:04:42.010000"],["2024-07-25T19:04:43.010000"],["2024-07-25T19:04:44.010000"],["2024-07-25T19:04:45.010000"],["2024-07-25T19:04:46.010000"],["2024-07-25T19:04:47.010000"],["2024-07-25T19:04:48.010000"],["2024-07-25T19:04:49.010000"],["2024-07-25T19:04:50.010000"],["2024-07-25T19:04:51.010000"],["2024-07-25T19:04:52.010000"],["2024-07-25T19:04:53.010000"],["2024-07-25T19:04:54.010000"],["2024-07-25T19:04:55.010000"],["2024-07-25T19:04:56.010000"],["2024-07-25T19:04:57.010000"],["2024-07-25T19:04:58.010000"],["2024-07-25T19:04:59.010000"],["2024-07-25T19:05:00.010000"],["2024-07-25T19:05:01.010000"],["2024-07-25T19:05:02.010000"],["2024-07-25T19:05:03.010000"],["2024-07-25T19:05:04.010000"],["2024-07-25T19:05:05.010000"],["2024-07-25T19:05:06.010000"],["2024-07-25T19:05:07.010000"],["2024-07-25T19:05:08.010000"],["2024-07-25T19:05:09.010000"],["2024-07-25T19:05:10.010000"],["2024-07-25T19:05:11.010000"],["2024-07-25T19:05:12.010000"],["2024-07-25T19:05:13.010000"],["2024-07-25T19:05:14.010000"],["2024-07-25T19:05:15.010000"],["2024-07-25T19:05:16.010000"],["2024-07-25T19:05:17.010000"],["2024-07-25T19:05:18.010000"],["2024-07-25T19:05:19.010000"],["2024-07-25T19:05:20.010000"],["2024-07-25T19:05:21.010000"],["2024-07-25T19:05:22.010000"],["2024-07-25T19:05:23.010000"],["2024-07-25T19:05:24.010000"],["2024-07-25T19:05:25.010000"],["2024-07-25T19:05:26.010000"],["2024-07-25T19:05:27.010000"],["2024-07-25T19:05:28.010000"],["2024-07-25T19:05:29.010000"],["2024-07-25T19:05:30.010000"],["2024-07-25T19:05:31.010000"],["2024-07-25T19:05:32.010000"],["2024-07-25T19:05:33.010000"],["2024-07-25T19:05:34.010000"],["2024-07-25T19:05:35.010000"],["2024-07-25T19:05:36.010000"],["2024-07-25T19:05:37.010000"],["2024-07-25T19:05:38.010000"],["2024-07-25T19:05:39.010000"],["2024-07-25T19:05:40.010000"],["2024-07-25T19:05:41.010000"],["2024-07-25T19:05:42.010000"],["2024-07-25T19:05:43.010000"],["2024-07-25T19:05:44.010000"],["2024-07-25T19:05:45.010000"],["2024-07-25T19:05:46.010000"],["2024-07-25T19:05:47.010000"],["2024-07-25T19:05:48.010000"],["2024-07-25T19:05:49.010000"],["2024-07-25T19:05:50.010000"],["2024-07-25T19:05:51.010000"],["2024-07-25T19:05:52.010000"],["2024-07-25T19:05:53.010000"],["2024-07-25T19:05:54.010000"],["2024-07-25T19:05:55.010000"],["2024-07-25T19:05:56.010000"],["2024-07-25T19:05:57.010000"],["2024-07-25T19:05:58.010000"],["2024-07-25T19:05:59.010000"],["2024-07-25T19:06:00.010000"],["2024-07-25T19:06:01.010000"],["2024-07-25T19:06:02.010000"],["2024-07-25T19:06:03.010000"],["2024-07-25T19:06:04.010000"],["2024-07-25T19:06:05.010000"],["2024-07-25T19:06:06.010000"],["2024-07-25T19:06:07.010000"],["2024-07-25T19:06:08.010000"],["2024-07-25T19:06:09.010000"],["2024-07-25T19:06:10.010000"],["2024-07-25T19:06:11.010000"],["2024-07-25T19:06:12.010000"],["2024-07-25T19:06:13.010000"],["2024-07-25T19:06:14.010000"],["2024-07-25T19:06:15.010000"],["2024-07-25T19:06:16.010000"],["2024-07-25T19:06:17.010000"],["2024-07-25T19:06:18.010000"],["2024-07-25T19:06:19.010000"],["2024-07-25T19:06:20.010000"],["2024-07-25T19:06:21.010000"],["2024-07-25T19:06:22.010000"],["2024-07-25T19:06:23.010000"],["2024-07-25T19:06:24.010000"],["2024-07-25T19:06:25.010000"],["2024-07-25T19:06:26.010000"],["2024-07-25T19:06:27.010000"],["2024-07-25T19:06:28.010000"],["2024-07-25T19:06:29.010000"],["2024-07-25T19:06:30.010000"],["2024-07-25T19:06:31.010000"],["2024-07-25T19:06:32.010000"],["2024-07-25T19:06:33.010000"],["2024-07-25T19:06:34.010000"],["2024-07-25T19:06:35.010000"],["2024-07-25T19:06:36.010000"],["2024-07-25T19:06:37.010000"],["2024-07-25T19:06:38.010000"],["2024-07-25T19:06:39.010000"],["2024-07-25T19:06:40.010000"],["2024-07-25T19:06:41.010000"],["2024-07-25T19:06:42.010000"],["2024-07-25T19:06:43.010000"],["2024-07-25T19:06:44.010000"],["2024-07-25T19:06:45.010000"],["2024-07-25T19:06:46.010000"],["2024-07-25T19:06:47.010000"],["2024-07-25T19:06:48.010000"],["2024-07-25T19:06:49.010000"],["2024-07-25T19:06:50.010000"],["2024-07-25T19:06:51.010000"],["2024-07-25T19:06:52.010000"],["2024-07-25T19:06:53.010000"],["2024-07-25T19:06:54.010000"],["2024-07-25T19:06:55.010000"],["2024-07-25T19:06:56.010000"],["2024-07-25T19:06:57.010000"],["2024-07-25T19:06:58.010000"],["2024-07-25T19:06:59.010000"],["2024-07-25T19:07:00.010000"],["2024-07-25T19:07:01.010000"],["2024-07-25T19:07:02.010000"],["2024-07-25T19:07:03.010000"],["2024-07-25T19:07:04.010000"],["2024-07-25T19:07:05.010000"],["2024-07-25T19:07:06.010000"],["2024-07-25T19:07:07.010000"],["2024-07-25T19:07:08.010000"],["2024-07-25T19:07:09.010000"],["2024-07-25T19:07:10.010000"],["2024-07-25T19:07:11.010000"],["2024-07-25T19:07:12.010000"],["2024-07-25T19:07:13.010000"],["2024-07-25T19:07:14.010000"],["2024-07-25T19:07:15.010000"],["2024-07-25T19:07:16.010000"],["2024-07-25T19:07:17.010000"],["2024-07-25T19:07:18.010000"],["2024-07-25T19:07:19.010000"],["2024-07-25T19:07:20.010000"],["2024-07-25T19:07:21.010000"],["2024-07-25T19:07:22.010000"],["2024-07-25T19:07:23.010000"],["2024-07-25T19:07:24.010000"],["2024-07-25T19:07:25.010000"],["2024-07-25T19:07:26.010000"],["2024-07-25T19:07:27.010000"],["2024-07-25T19:07:28.010000"],["2024-07-25T19:07:29.010000"],["2024-07-25T19:07:30.010000"],["2024-07-25T19:07:31.010000"],["2024-07-25T19:07:32.010000"],["2024-07-25T19:07:33.010000"],["2024-07-25T19:07:34.010000"],["2024-07-25T19:07:35.010000"],["2024-07-25T19:07:36.010000"],["2024-07-25T19:07:37.010000"],["2024-07-25T19:07:38.010000"],["2024-07-25T19:07:39.010000"],["2024-07-25T19:07:40.010000"],["2024-07-25T19:07:41.010000"],["2024-07-25T19:07:42.010000"],["2024-07-25T19:07:43.010000"],["2024-07-25T19:07:44.010000"],["2024-07-25T19:07:45.010000"],["2024-07-25T19:07:46.010000"],["2024-07-25T19:07:47.010000"],["2024-07-25T19:07:48.010000"],["2024-07-25T19:07:49.010000"],["2024-07-25T19:07:50.010000"],["2024-07-25T19:07:51.010000"],["2024-07-25T19:07:52.010000"],["2024-07-25T19:07:53.010000"],["2024-07-25T19:07:54.010000"],["2024-07-25T19:07:55.010000"],["2024-07-25T19:07:56.010000"],["2024-07-25T19:07:57.010000"],["2024-07-25T19:07:58.010000"],["2024-07-25T19:07:59.010000"],["2024-07-25T19:08:00.010000"],["2024-07-25T19:08:01.010000"],["2024-07-25T19:08:02.010000"],["2024-07-25T19:08:03.010000"],["2024-07-25T19:08:04.010000"],["2024-07-25T19:08:05.010000"],["2024-07-25T19:08:06.010000"],["2024-07-25T19:08:07.010000"],["2024-07-25T19:08:08.010000"],["2024-07-25T19:08:09.010000"],["2024-07-25T19:08:10.010000"],["2024-07-25T19:08:11.010000"],["2024-07-25T19:08:12.010000"],["2024-07-25T19:08:13.010000"],["2024-07-25T19:08:14.010000"],["2024-07-25T19:08:15.010000"],["2024-07-25T19:08:16.010000"],["2024-07-25T19:08:17.010000"],["2024-07-25T19:08:18.010000"],["2024-07-25T19:08:19.010000"],["2024-07-25T19:08:20.010000"],["2024-07-25T19:08:21.010000"],["2024-07-25T19:08:22.010000"],["2024-07-25T19:08:23.010000"],["2024-07-25T19:08:24.010000"],["2024-07-25T19:08:25.010000"],["2024-07-25T19:08:26.010000"],["2024-07-25T19:08:27.010000"],["2024-07-25T19:08:28.010000"],["2024-07-25T19:08:29.010000"],["2024-07-25T19:08:30.010000"],["2024-07-25T19:08:31.010000"],["2024-07-25T19:08:32.010000"],["2024-07-25T19:08:33.010000"],["2024-07-25T19:08:34.010000"],["2024-07-25T19:08:35.010000"],["2024-07-25T19:08:36.010000"],["2024-07-25T19:08:37.010000"],["2024-07-25T19:08:38.010000"],["2024-07-25T19:08:39.010000"],["2024-07-25T19:08:40.010000"],["2024-07-25T19:08:41.010000"],["2024-07-25T19:08:42.010000"],["2024-07-25T19:08:43.010000"],["2024-07-25T19:08:44.010000"],["2024-07-25T19:08:45.010000"],["2024-07-25T19:08:46.010000"],["2024-07-25T19:08:47.010000"],["2024-07-25T19:08:48.010000"],["2024-07-25T19:08:49.010000"],["2024-07-25T19:08:50.010000"],["2024-07-25T19:08:51.010000"],["2024-07-25T19:08:52.010000"],["2024-07-25T19:08:53.010000"],["2024-07-25T19:08:54.010000"],["2024-07-25T19:08:55.010000"],["2024-07-25T19:08:56.010000"],["2024-07-25T19:08:57.010000"],["2024-07-25T19:08:58.010000"],["2024-07-25T19:08:59.010000"],["2024-07-25T19:09:00.010000"],["2024-07-25T19:09:01.010000"],["2024-07-25T19:09:02.010000"],["2024-07-25T19:09:03.010000"],["2024-07-25T19:09:04.010000"],["2024-07-25T19:09:05.010000"],["2024-07-25T19:09:06.010000"],["2024-07-25T19:09:07.010000"],["2024-07-25T19:09:08.010000"],["2024-07-25T19:09:09.010000"],["2024-07-25T19:09:10.010000"],["2024-07-25T19:09:11.010000"],["2024-07-25T19:09:12.010000"],["2024-07-25T19:09:13.010000"],["2024-07-25T19:09:14.010000"],["2024-07-25T19:09:15.010000"],["2024-07-25T19:09:16.010000"],["2024-07-25T19:09:17.010000"],["2024-07-25T19:09:18.010000"],["2024-07-25T19:09:19.010000"],["2024-07-25T19:09:20.010000"],["2024-07-25T19:09:21.010000"],["2024-07-25T19:09:22.010000"],["2024-07-25T19:09:23.010000"],["2024-07-25T19:09:24.010000"],["2024-07-25T19:09:25.010000"],["2024-07-25T19:09:26.010000"],["2024-07-25T19:09:27.010000"],["2024-07-25T19:09:28.010000"],["2024-07-25T19:09:29.010000"],["2024-07-25T19:09:30.010000"],["2024-07-25T19:09:31.010000"],["2024-07-25T19:09:32.010000"],["2024-07-25T19:09:33.010000"],["2024-07-25T19:09:34.010000"],["2024-07-25T19:09:35.010000"],["2024-07-25T19:09:36.010000"],["2024-07-25T19:09:37.010000"],["2024-07-25T19:09:38.010000"],["2024-07-25T19:09:39.010000"],["2024-07-25T19:09:40.010000"],["2024-07-25T19:09:41.010000"],["2024-07-25T19:09:42.010000"],["2024-07-25T19:09:43.010000"],["2024-07-25T19:09:44.010000"],["2024-07-25T19:09:45.010000"],["2024-07-25T19:09:46.010000"],["2024-07-25T19:09:47.010000"],["2024-07-25T19:09:48.010000"],["2024-07-25T19:09:49.010000"],["2024-07-25T19:09:50.010000"],["2024-07-25T19:09:51.010000"],["2024-07-25T19:09:52.010000"],["2024-07-25T19:09:53.010000"],["2024-07-25T19:09:54.010000"],["2024-07-25T19:09:55.010000"],["2024-07-25T19:09:56.010000"],["2024-07-25T19:09:57.010000"],["2024-07-25T19:09:58.010000"],["2024-07-25T19:09:59.010000"],["2024-07-25T19:10:00.010000"],["2024-07-25T19:10:01.010000"],["2024-07-25T19:10:02.010000"],["2024-07-25T19:10:03.010000"],["2024-07-25T19:10:04.010000"],["2024-07-25T19:10:05.010000"],["2024-07-25T19:10:06.010000"],["2024-07-25T19:10:07.010000"],["2024-07-25T19:10:08.010000"],["2024-07-25T19:10:09.010000"],["2024-07-25T19:10:10.010000"],["2024-07-25T19:10:11.010000"],["2024-07-25T19:10:12.010000"],["2024-07-25T19:10:13.010000"],["2024-07-25T19:10:14.010000"],["2024-07-25T19:10:15.010000"],["2024-07-25T19:10:16.010000"],["2024-07-25T19:10:17.010000"],["2024-07-25T19:10:18.010000"],["2024-07-25T19:10:19.010000"],["2024-07-25T19:10:20.010000"],["2024-07-25T19:10:21.010000"],["2024-07-25T19:10:22.010000"],["2024-07-25T19:10:23.010000"],["2024-07-25T19:10:24.010000"],["2024-07-25T19:10:25.010000"],["2024-07-25T19:10:26.010000"],["2024-07-25T19:10:27.010000"],["2024-07-25T19:10:28.010000"],["2024-07-25T19:10:29.010000"],["2024-07-25T19:10:30.010000"],["2024-07-25T19:10:31.010000"],["2024-07-25T19:10:32.010000"],["2024-07-25T19:10:33.010000"],["2024-07-25T19:10:34.010000"],["2024-07-25T19:10:35.010000"],["2024-07-25T19:10:36.010000"],["2024-07-25T19:10:37.010000"],["2024-07-25T19:10:38.010000"],["2024-07-25T19:10:39.010000"],["2024-07-25T19:10:40.010000"],["2024-07-25T19:10:41.010000"],["2024-07-25T19:10:42.010000"],["2024-07-25T19:10:43.010000"],["2024-07-25T19:10:44.010000"],["2024-07-25T19:10:45.010000"],["2024-07-25T19:10:46.010000"],["2024-07-25T19:10:47.010000"],["2024-07-25T19:10:48.010000"],["2024-07-25T19:10:49.010000"],["2024-07-25T19:10:50.010000"],["2024-07-25T19:10:51.010000"],["2024-07-25T19:10:52.010000"],["2024-07-25T19:10:53.010000"],["2024-07-25T19:10:54.010000"],["2024-07-25T19:10:55.010000"],["2024-07-25T19:10:56.010000"],["2024-07-25T19:10:57.010000"],["2024-07-25T19:10:58.010000"],["2024-07-25T19:10:59.010000"],["2024-07-25T19:11:00.010000"],["2024-07-25T19:11:01.010000"],["2024-07-25T19:11:02.010000"],["2024-07-25T19:11:03.010000"],["2024-07-25T19:11:04.010000"],["2024-07-25T19:11:05.010000"],["2024-07-25T19:11:06.010000"],["2024-07-25T19:11:07.010000"],["2024-07-25T19:11:08.010000"],["2024-07-25T19:11:09.010000"],["2024-07-25T19:11:10.010000"],["2024-07-25T19:11:11.010000"],["2024-07-25T19:11:12.010000"],["2024-07-25T19:11:13.010000"],["2024-07-25T19:11:14.010000"],["2024-07-25T19:11:15.010000"],["2024-07-25T19:11:16.010000"],["2024-07-25T19:11:17.010000"],["2024-07-25T19:11:18.010000"],["2024-07-25T19:11:19.010000"],["2024-07-25T19:11:20.010000"],["2024-07-25T19:11:21.010000"],["2024-07-25T19:11:22.010000"],["2024-07-25T19:11:23.010000"],["2024-07-25T19:11:24.010000"],["2024-07-25T19:11:25.010000"],["2024-07-25T19:11:26.010000"],["2024-07-25T19:11:27.010000"],["2024-07-25T19:11:28.010000"],["2024-07-25T19:11:29.010000"],["2024-07-25T19:11:30.010000"],["2024-07-25T19:11:31.010000"],["2024-07-25T19:11:32.010000"],["2024-07-25T19:11:33.010000"],["2024-07-25T19:11:34.010000"],["2024-07-25T19:11:35.010000"],["2024-07-25T19:11:36.010000"],["2024-07-25T19:11:37.010000"],["2024-07-25T19:11:38.010000"],["2024-07-25T19:11:39.010000"],["2024-07-25T19:11:40.010000"],["2024-07-25T19:11:41.010000"],["2024-07-25T19:11:42.010000"],["2024-07-25T19:11:43.010000"],["2024-07-25T19:11:44.010000"],["2024-07-25T19:11:45.010000"],["2024-07-25T19:11:46.010000"],["2024-07-25T19:11:47.010000"],["2024-07-25T19:11:48.010000"],["2024-07-25T19:11:49.010000"],["2024-07-25T19:11:50.010000"],["2024-07-25T19:11:51.010000"],["2024-07-25T19:11:52.010000"],["2024-07-25T19:11:53.010000"],["2024-07-25T19:11:54.010000"],["2024-07-25T19:11:55.010000"],["2024-07-25T19:11:56.010000"],["2024-07-25T19:11:57.010000"],["2024-07-25T19:11:58.010000"],["2024-07-25T19:11:59.010000"],["2024-07-25T19:12:00.010000"],["2024-07-25T19:12:01.010000"],["2024-07-25T19:12:02.010000"],["2024-07-25T19:12:03.010000"],["2024-07-25T19:12:04.010000"],["2024-07-25T19:12:05.010000"],["2024-07-25T19:12:06.010000"],["2024-07-25T19:12:07.010000"],["2024-07-25T19:12:08.010000"],["2024-07-25T19:12:09.010000"],["2024-07-25T19:12:10.010000"],["2024-07-25T19:12:11.010000"],["2024-07-25T19:12:12.010000"],["2024-07-25T19:12:13.010000"],["2024-07-25T19:12:14.010000"],["2024-07-25T19:12:15.010000"],["2024-07-25T19:12:16.010000"],["2024-07-25T19:12:17.010000"],["2024-07-25T19:12:18.010000"],["2024-07-25T19:12:19.010000"],["2024-07-25T19:12:20.010000"],["2024-07-25T19:12:21.010000"],["2024-07-25T19:12:22.010000"],["2024-07-25T19:12:23.010000"],["2024-07-25T19:12:24.010000"],["2024-07-25T19:12:25.010000"],["2024-07-25T19:12:26.010000"],["2024-07-25T19:12:27.010000"],["2024-07-25T19:12:28.010000"],["2024-07-25T19:12:29.010000"],["2024-07-25T19:12:30.010000"],["2024-07-25T19:12:31.010000"],["2024-07-25T19:12:32.010000"],["2024-07-25T19:12:33.010000"],["2024-07-25T19:12:34.010000"],["2024-07-25T19:12:35.010000"],["2024-07-25T19:12:36.010000"],["2024-07-25T19:12:37.010000"],["2024-07-25T19:12:38.010000"],["2024-07-25T19:12:39.010000"],["2024-07-25T19:12:40.010000"],["2024-07-25T19:12:41.010000"],["2024-07-25T19:12:42.010000"],["2024-07-25T19:12:43.010000"],["2024-07-25T19:12:44.010000"],["2024-07-25T19:12:45.010000"],["2024-07-25T19:12:46.010000"],["2024-07-25T19:12:47.010000"],["2024-07-25T19:12:48.010000"],["2024-07-25T19:12:49.010000"],["2024-07-25T19:12:50.010000"],["2024-07-25T19:12:51.010000"],["2024-07-25T19:12:52.010000"],["2024-07-25T19:12:53.010000"],["2024-07-25T19:12:54.010000"],["2024-07-25T19:12:55.010000"],["2024-07-25T19:12:56.010000"],["2024-07-25T19:12:57.010000"],["2024-07-25T19:12:58.010000"],["2024-07-25T19:12:59.010000"],["2024-07-25T19:13:00.010000"],["2024-07-25T19:13:01.010000"],["2024-07-25T19:13:02.010000"],["2024-07-25T19:13:03.010000"],["2024-07-25T19:13:04.010000"],["2024-07-25T19:13:05.010000"],["2024-07-25T19:13:06.010000"],["2024-07-25T19:13:07.010000"],["2024-07-25T19:13:08.010000"],["2024-07-25T19:13:09.010000"],["2024-07-25T19:13:10.010000"],["2024-07-25T19:13:11.010000"],["2024-07-25T19:13:12.010000"],["2024-07-25T19:13:13.010000"],["2024-07-25T19:13:14.010000"],["2024-07-25T19:13:15.010000"],["2024-07-25T19:13:16.010000"],["2024-07-25T19:13:17.010000"],["2024-07-25T19:13:18.010000"],["2024-07-25T19:13:19.010000"],["2024-07-25T19:13:20.010000"],["2024-07-25T19:13:21.010000"],["2024-07-25T19:13:22.010000"],["2024-07-25T19:13:23.010000"],["2024-07-25T19:13:24.010000"],["2024-07-25T19:13:25.010000"],["2024-07-25T19:13:26.010000"],["2024-07-25T19:13:27.010000"],["2024-07-25T19:13:28.010000"],["2024-07-25T19:13:29.010000"],["2024-07-25T19:13:30.010000"],["2024-07-25T19:13:31.010000"],["2024-07-25T19:13:32.010000"],["2024-07-25T19:13:33.010000"],["2024-07-25T19:13:34.010000"],["2024-07-25T19:13:35.010000"],["2024-07-25T19:13:36.010000"],["2024-07-25T19:13:37.010000"],["2024-07-25T19:13:38.010000"],["2024-07-25T19:13:39.010000"],["2024-07-25T19:13:40.010000"],["2024-07-25T19:13:41.010000"],["2024-07-25T19:13:42.010000"],["2024-07-25T19:13:43.010000"],["2024-07-25T19:13:44.010000"],["2024-07-25T19:13:45.010000"],["2024-07-25T19:13:46.010000"],["2024-07-25T19:13:47.010000"],["2024-07-25T19:13:48.010000"],["2024-07-25T19:13:49.010000"],["2024-07-25T19:13:50.010000"],["2024-07-25T19:13:51.010000"],["2024-07-25T19:13:52.010000"],["2024-07-25T19:13:53.010000"],["2024-07-25T19:13:54.010000"],["2024-07-25T19:13:55.010000"],["2024-07-25T19:13:56.010000"],["2024-07-25T19:13:57.010000"],["2024-07-25T19:13:58.010000"],["2024-07-25T19:13:59.010000"],["2024-07-25T19:14:00.010000"],["2024-07-25T19:14:01.010000"],["2024-07-25T19:14:02.010000"],["2024-07-25T19:14:03.010000"],["2024-07-25T19:14:04.010000"],["2024-07-25T19:14:05.010000"],["2024-07-25T19:14:06.010000"],["2024-07-25T19:14:07.010000"],["2024-07-25T19:14:08.010000"],["2024-07-25T19:14:09.010000"],["2024-07-25T19:14:10.010000"],["2024-07-25T19:14:11.010000"],["2024-07-25T19:14:12.010000"],["2024-07-25T19:14:13.010000"],["2024-07-25T19:14:14.010000"],["2024-07-25T19:14:15.010000"],["2024-07-25T19:14:16.010000"],["2024-07-25T19:14:17.010000"],["2024-07-25T19:14:18.010000"],["2024-07-25T19:14:19.010000"],["2024-07-25T19:14:20.010000"],["2024-07-25T19:14:21.010000"],["2024-07-25T19:14:22.010000"],["2024-07-25T19:14:23.010000"],["2024-07-25T19:14:24.010000"],["2024-07-25T19:14:25.010000"],["2024-07-25T19:14:26.010000"],["2024-07-25T19:14:27.010000"],["2024-07-25T19:14:28.010000"],["2024-07-25T19:14:29.010000"],["2024-07-25T19:14:30.010000"],["2024-07-25T19:14:31.010000"],["2024-07-25T19:14:32.010000"],["2024-07-25T19:14:33.010000"],["2024-07-25T19:14:34.010000"],["2024-07-25T19:14:35.010000"],["2024-07-25T19:14:36.010000"],["2024-07-25T19:14:37.010000"],["2024-07-25T19:14:38.010000"],["2024-07-25T19:14:39.010000"],["2024-07-25T19:14:40.010000"],["2024-07-25T19:14:41.010000"],["2024-07-25T19:14:42.010000"],["2024-07-25T19:14:43.010000"],["2024-07-25T19:14:44.010000"],["2024-07-25T19:14:45.010000"],["2024-07-25T19:14:46.010000"],["2024-07-25T19:14:47.010000"],["2024-07-25T19:14:48.010000"],["2024-07-25T19:14:49.010000"],["2024-07-25T19:14:50.010000"],["2024-07-25T19:14:51.010000"],["2024-07-25T19:14:52.010000"],["2024-07-25T19:14:53.010000"],["2024-07-25T19:14:54.010000"],["2024-07-25T19:14:55.010000"],["2024-07-25T19:14:56.010000"],["2024-07-25T19:14:57.010000"],["2024-07-25T19:14:58.010000"],["2024-07-25T19:14:59.010000"],["2024-07-25T19:15:00.010000"],["2024-07-25T19:15:01.010000"],["2024-07-25T19:15:02.010000"],["2024-07-25T19:15:03.010000"],["2024-07-25T19:15:04.010000"],["2024-07-25T19:15:05.010000"],["2024-07-25T19:15:06.010000"],["2024-07-25T19:15:07.010000"],["2024-07-25T19:15:08.010000"],["2024-07-25T19:15:09.010000"],["2024-07-25T19:15:10.010000"],["2024-07-25T19:15:11.010000"],["2024-07-25T19:15:12.010000"],["2024-07-25T19:15:13.010000"],["2024-07-25T19:15:14.010000"],["2024-07-25T19:15:15.010000"],["2024-07-25T19:15:16.010000"],["2024-07-25T19:15:17.010000"],["2024-07-25T19:15:18.010000"],["2024-07-25T19:15:19.010000"],["2024-07-25T19:15:20.010000"],["2024-07-25T19:15:21.010000"],["2024-07-25T19:15:22.010000"],["2024-07-25T19:15:23.010000"],["2024-07-25T19:15:24.010000"],["2024-07-25T19:15:25.010000"],["2024-07-25T19:15:26.010000"],["2024-07-25T19:15:27.010000"],["2024-07-25T19:15:28.010000"],["2024-07-25T19:15:29.010000"],["2024-07-25T19:15:30.010000"],["2024-07-25T19:15:31.010000"],["2024-07-25T19:15:32.010000"],["2024-07-25T19:15:33.010000"],["2024-07-25T19:15:34.010000"],["2024-07-25T19:15:35.010000"],["2024-07-25T19:15:36.010000"],["2024-07-25T19:15:37.010000"],["2024-07-25T19:15:38.010000"],["2024-07-25T19:15:39.010000"],["2024-07-25T19:15:40.010000"],["2024-07-25T19:15:41.010000"],["2024-07-25T19:15:42.010000"],["2024-07-25T19:15:43.010000"],["2024-07-25T19:15:44.010000"],["2024-07-25T19:15:45.010000"],["2024-07-25T19:15:46.010000"],["2024-07-25T19:15:47.010000"],["2024-07-25T19:15:48.010000"],["2024-07-25T19:15:49.010000"],["2024-07-25T19:15:50.010000"],["2024-07-25T19:15:51.010000"],["2024-07-25T19:15:52.010000"],["2024-07-25T19:15:53.010000"],["2024-07-25T19:15:54.010000"],["2024-07-25T19:15:55.010000"],["2024-07-25T19:15:56.010000"],["2024-07-25T19:15:57.010000"],["2024-07-25T19:15:58.010000"],["2024-07-25T19:15:59.010000"],["2024-07-25T19:16:00.010000"],["2024-07-25T19:16:01.010000"],["2024-07-25T19:16:02.010000"],["2024-07-25T19:16:03.010000"],["2024-07-25T19:16:04.010000"],["2024-07-25T19:16:05.010000"],["2024-07-25T19:16:06.010000"],["2024-07-25T19:16:07.010000"],["2024-07-25T19:16:08.010000"],["2024-07-25T19:16:09.010000"],["2024-07-25T19:16:10.010000"],["2024-07-25T19:16:11.010000"],["2024-07-25T19:16:12.010000"],["2024-07-25T19:16:13.010000"],["2024-07-25T19:16:14.010000"],["2024-07-25T19:16:15.010000"],["2024-07-25T19:16:16.010000"],["2024-07-25T19:16:17.010000"],["2024-07-25T19:16:18.010000"],["2024-07-25T19:16:19.010000"],["2024-07-25T19:16:20.010000"],["2024-07-25T19:16:21.010000"],["2024-07-25T19:16:22.010000"],["2024-07-25T19:16:23.010000"],["2024-07-25T19:16:24.010000"],["2024-07-25T19:16:25.010000"],["2024-07-25T19:16:26.010000"],["2024-07-25T19:16:27.010000"],["2024-07-25T19:16:28.010000"],["2024-07-25T19:16:29.010000"],["2024-07-25T19:16:30.010000"],["2024-07-25T19:16:31.010000"],["2024-07-25T19:16:32.010000"],["2024-07-25T19:16:33.010000"],["2024-07-25T19:16:34.010000"],["2024-07-25T19:16:35.010000"],["2024-07-25T19:16:36.010000"],["2024-07-25T19:16:37.010000"],["2024-07-25T19:16:38.010000"],["2024-07-25T19:16:39.010000"],["2024-07-25T19:16:40.010000"],["2024-07-25T19:16:41.010000"],["2024-07-25T19:16:42.010000"],["2024-07-25T19:16:43.010000"],["2024-07-25T19:16:44.010000"],["2024-07-25T19:16:45.010000"],["2024-07-25T19:16:46.010000"],["2024-07-25T19:16:47.010000"],["2024-07-25T19:16:48.010000"],["2024-07-25T19:16:49.010000"],["2024-07-25T19:16:50.010000"],["2024-07-25T19:16:51.010000"],["2024-07-25T19:16:52.010000"],["2024-07-25T19:16:53.010000"],["2024-07-25T19:16:54.010000"],["2024-07-25T19:16:55.010000"],["2024-07-25T19:16:56.010000"],["2024-07-25T19:16:57.010000"],["2024-07-25T19:16:58.010000"],["2024-07-25T19:16:59.010000"],["2024-07-25T19:17:00.010000"],["2024-07-25T19:17:01.010000"],["2024-07-25T19:17:02.010000"],["2024-07-25T19:17:03.010000"],["2024-07-25T19:17:04.010000"],["2024-07-25T19:17:05.010000"],["2024-07-25T19:17:06.010000"],["2024-07-25T19:17:07.010000"],["2024-07-25T19:17:08.010000"],["2024-07-25T19:17:09.010000"],["2024-07-25T19:17:10.010000"],["2024-07-25T19:17:11.010000"],["2024-07-25T19:17:12.010000"],["2024-07-25T19:17:13.010000"],["2024-07-25T19:17:14.010000"],["2024-07-25T19:17:15.010000"],["2024-07-25T19:17:16.010000"],["2024-07-25T19:17:17.010000"],["2024-07-25T19:17:18.010000"],["2024-07-25T19:17:19.010000"],["2024-07-25T19:17:20.010000"],["2024-07-25T19:17:21.010000"],["2024-07-25T19:17:22.010000"],["2024-07-25T19:17:23.010000"],["2024-07-25T19:17:24.010000"],["2024-07-25T19:17:25.010000"],["2024-07-25T19:17:26.010000"],["2024-07-25T19:17:27.010000"],["2024-07-25T19:17:28.010000"],["2024-07-25T19:17:29.010000"],["2024-07-25T19:17:30.010000"],["2024-07-25T19:17:31.010000"],["2024-07-25T19:17:32.010000"],["2024-07-25T19:17:33.010000"],["2024-07-25T19:17:34.010000"],["2024-07-25T19:17:35.010000"],["2024-07-25T19:17:36.010000"],["2024-07-25T19:17:37.010000"],["2024-07-25T19:17:38.010000"],["2024-07-25T19:17:39.010000"],["2024-07-25T19:17:40.010000"],["2024-07-25T19:17:41.010000"],["2024-07-25T19:17:42.010000"],["2024-07-25T19:17:43.010000"],["2024-07-25T19:17:44.010000"],["2024-07-25T19:17:45.010000"],["2024-07-25T19:17:46.010000"],["2024-07-25T19:17:47.010000"],["2024-07-25T19:17:48.010000"],["2024-07-25T19:17:49.010000"],["2024-07-25T19:17:50.010000"],["2024-07-25T19:17:51.010000"],["2024-07-25T19:17:52.010000"],["2024-07-25T19:17:53.010000"],["2024-07-25T19:17:54.010000"],["2024-07-25T19:17:55.010000"],["2024-07-25T19:17:56.010000"],["2024-07-25T19:17:57.010000"],["2024-07-25T19:17:58.010000"],["2024-07-25T19:17:59.010000"],["2024-07-25T19:18:00.010000"],["2024-07-25T19:18:01.010000"],["2024-07-25T19:18:02.010000"],["2024-07-25T19:18:03.010000"],["2024-07-25T19:18:04.010000"],["2024-07-25T19:18:05.010000"],["2024-07-25T19:18:06.010000"],["2024-07-25T19:18:07.010000"],["2024-07-25T19:18:08.010000"],["2024-07-25T19:18:09.010000"],["2024-07-25T19:18:10.010000"],["2024-07-25T19:18:11.010000"],["2024-07-25T19:18:12.010000"],["2024-07-25T19:18:13.010000"],["2024-07-25T19:18:14.010000"],["2024-07-25T19:18:15.010000"],["2024-07-25T19:18:16.010000"],["2024-07-25T19:18:17.010000"],["2024-07-25T19:18:18.010000"],["2024-07-25T19:18:19.010000"],["2024-07-25T19:18:20.010000"],["2024-07-25T19:18:21.010000"],["2024-07-25T19:18:22.010000"],["2024-07-25T19:18:23.010000"],["2024-07-25T19:18:24.010000"],["2024-07-25T19:18:25.010000"],["2024-07-25T19:18:26.010000"],["2024-07-25T19:18:27.010000"],["2024-07-25T19:18:28.010000"],["2024-07-25T19:18:29.010000"],["2024-07-25T19:18:30.010000"],["2024-07-25T19:18:31.010000"],["2024-07-25T19:18:32.010000"],["2024-07-25T19:18:33.010000"],["2024-07-25T19:18:34.010000"],["2024-07-25T19:18:35.010000"],["2024-07-25T19:18:36.010000"],["2024-07-25T19:18:37.010000"],["2024-07-25T19:18:38.010000"],["2024-07-25T19:18:39.010000"],["2024-07-25T19:18:40.010000"],["2024-07-25T19:18:41.010000"],["2024-07-25T19:18:42.010000"],["2024-07-25T19:18:43.010000"],["2024-07-25T19:18:44.010000"],["2024-07-25T19:18:45.010000"],["2024-07-25T19:18:46.010000"],["2024-07-25T19:18:47.010000"],["2024-07-25T19:18:48.010000"],["2024-07-25T19:18:49.010000"],["2024-07-25T19:18:50.010000"],["2024-07-25T19:18:51.010000"],["2024-07-25T19:18:52.010000"],["2024-07-25T19:18:53.010000"],["2024-07-25T19:18:54.010000"],["2024-07-25T19:18:55.010000"],["2024-07-25T19:18:56.010000"],["2024-07-25T19:18:57.010000"],["2024-07-25T19:18:58.010000"],["2024-07-25T19:18:59.010000"],["2024-07-25T19:19:00.010000"],["2024-07-25T19:19:01.010000"],["2024-07-25T19:19:02.010000"],["2024-07-25T19:19:03.010000"],["2024-07-25T19:19:04.010000"],["2024-07-25T19:19:05.010000"],["2024-07-25T19:19:06.010000"],["2024-07-25T19:19:07.010000"],["2024-07-25T19:19:08.010000"],["2024-07-25T19:19:09.010000"],["2024-07-25T19:19:10.010000"],["2024-07-25T19:19:11.010000"],["2024-07-25T19:19:12.010000"],["2024-07-25T19:19:13.010000"],["2024-07-25T19:19:14.010000"],["2024-07-25T19:19:15.010000"],["2024-07-25T19:19:16.010000"],["2024-07-25T19:19:17.010000"],["2024-07-25T19:19:18.010000"],["2024-07-25T19:19:19.010000"],["2024-07-25T19:19:20.010000"],["2024-07-25T19:19:21.010000"],["2024-07-25T19:19:22.010000"],["2024-07-25T19:19:23.010000"],["2024-07-25T19:19:24.010000"],["2024-07-25T19:19:25.010000"],["2024-07-25T19:19:26.010000"],["2024-07-25T19:19:27.010000"],["2024-07-25T19:19:28.010000"],["2024-07-25T19:19:29.010000"],["2024-07-25T19:19:30.010000"],["2024-07-25T19:19:31.010000"],["2024-07-25T19:19:32.010000"],["2024-07-25T19:19:33.010000"],["2024-07-25T19:19:34.010000"],["2024-07-25T19:19:35.010000"],["2024-07-25T19:19:36.010000"],["2024-07-25T19:19:37.010000"],["2024-07-25T19:19:38.010000"],["2024-07-25T19:19:39.010000"],["2024-07-25T19:19:40.010000"],["2024-07-25T19:19:41.010000"],["2024-07-25T19:19:42.010000"],["2024-07-25T19:19:43.010000"],["2024-07-25T19:19:44.010000"],["2024-07-25T19:19:45.010000"],["2024-07-25T19:19:46.010000"],["2024-07-25T19:19:47.010000"],["2024-07-25T19:19:48.010000"],["2024-07-25T19:19:49.010000"],["2024-07-25T19:19:50.010000"],["2024-07-25T19:19:51.010000"],["2024-07-25T19:19:52.010000"],["2024-07-25T19:19:53.010000"],["2024-07-25T19:19:54.010000"],["2024-07-25T19:19:55.010000"],["2024-07-25T19:19:56.010000"],["2024-07-25T19:19:57.010000"],["2024-07-25T19:19:58.010000"],["2024-07-25T19:19:59.010000"],["2024-07-25T19:20:00.010000"],["2024-07-25T19:20:01.010000"],["2024-07-25T19:20:02.010000"],["2024-07-25T19:20:03.010000"],["2024-07-25T19:20:04.010000"],["2024-07-25T19:20:05.010000"],["2024-07-25T19:20:06.010000"],["2024-07-25T19:20:07.010000"],["2024-07-25T19:20:08.010000"],["2024-07-25T19:20:09.010000"],["2024-07-25T19:20:10.010000"],["2024-07-25T19:20:11.010000"],["2024-07-25T19:20:12.010000"],["2024-07-25T19:20:13.010000"],["2024-07-25T19:20:14.010000"],["2024-07-25T19:20:15.010000"],["2024-07-25T19:20:16.010000"],["2024-07-25T19:20:17.010000"],["2024-07-25T19:20:18.010000"],["2024-07-25T19:20:19.010000"],["2024-07-25T19:20:20.010000"],["2024-07-25T19:20:21.010000"],["2024-07-25T19:20:22.010000"],["2024-07-25T19:20:23.010000"],["2024-07-25T19:20:24.010000"],["2024-07-25T19:20:25.010000"],["2024-07-25T19:20:26.010000"],["2024-07-25T19:20:27.010000"],["2024-07-25T19:20:28.010000"],["2024-07-25T19:20:29.010000"],["2024-07-25T19:20:30.010000"],["2024-07-25T19:20:31.010000"],["2024-07-25T19:20:32.010000"],["2024-07-25T19:20:33.010000"],["2024-07-25T19:20:34.010000"],["2024-07-25T19:20:35.010000"],["2024-07-25T19:20:36.010000"],["2024-07-25T19:20:37.010000"],["2024-07-25T19:20:38.010000"],["2024-07-25T19:20:39.010000"],["2024-07-25T19:20:40.010000"],["2024-07-25T19:20:41.010000"],["2024-07-25T19:20:42.010000"],["2024-07-25T19:20:43.010000"],["2024-07-25T19:20:44.010000"],["2024-07-25T19:20:45.010000"],["2024-07-25T19:20:46.010000"],["2024-07-25T19:20:47.010000"],["2024-07-25T19:20:48.010000"],["2024-07-25T19:20:49.010000"],["2024-07-25T19:20:50.010000"],["2024-07-25T19:20:51.010000"],["2024-07-25T19:20:52.010000"],["2024-07-25T19:20:53.010000"],["2024-07-25T19:20:54.010000"],["2024-07-25T19:20:55.010000"],["2024-07-25T19:20:56.010000"],["2024-07-25T19:20:57.010000"],["2024-07-25T19:20:58.010000"],["2024-07-25T19:20:59.010000"],["2024-07-25T19:21:00.010000"],["2024-07-25T19:21:01.010000"],["2024-07-25T19:21:02.010000"],["2024-07-25T19:21:03.010000"],["2024-07-25T19:21:04.010000"],["2024-07-25T19:21:05.010000"],["2024-07-25T19:21:06.010000"],["2024-07-25T19:21:07.010000"],["2024-07-25T19:21:08.010000"],["2024-07-25T19:21:09.010000"],["2024-07-25T19:21:10.010000"],["2024-07-25T19:21:11.010000"],["2024-07-25T19:21:12.010000"],["2024-07-25T19:21:13.010000"],["2024-07-25T19:21:14.010000"],["2024-07-25T19:21:15.010000"],["2024-07-25T19:21:16.010000"],["2024-07-25T19:21:17.010000"],["2024-07-25T19:21:18.010000"],["2024-07-25T19:21:19.010000"],["2024-07-25T19:21:20.010000"],["2024-07-25T19:21:21.010000"],["2024-07-25T19:21:22.010000"],["2024-07-25T19:21:23.010000"],["2024-07-25T19:21:24.010000"],["2024-07-25T19:21:25.010000"],["2024-07-25T19:21:26.010000"],["2024-07-25T19:21:27.010000"],["2024-07-25T19:21:28.010000"],["2024-07-25T19:21:29.010000"],["2024-07-25T19:21:30.010000"],["2024-07-25T19:21:31.010000"],["2024-07-25T19:21:32.010000"],["2024-07-25T19:21:33.010000"],["2024-07-25T19:21:34.010000"],["2024-07-25T19:21:35.010000"],["2024-07-25T19:21:36.010000"],["2024-07-25T19:21:37.010000"],["2024-07-25T19:21:38.010000"],["2024-07-25T19:21:39.010000"],["2024-07-25T19:21:40.010000"],["2024-07-25T19:21:41.010000"],["2024-07-25T19:21:42.010000"],["2024-07-25T19:21:43.010000"],["2024-07-25T19:21:44.010000"],["2024-07-25T19:21:45.010000"],["2024-07-25T19:21:46.010000"],["2024-07-25T19:21:47.010000"],["2024-07-25T19:21:48.010000"],["2024-07-25T19:21:49.010000"],["2024-07-25T19:21:50.010000"],["2024-07-25T19:21:51.010000"],["2024-07-25T19:21:52.010000"],["2024-07-25T19:21:53.010000"],["2024-07-25T19:21:54.010000"],["2024-07-25T19:21:55.010000"],["2024-07-25T19:21:56.010000"],["2024-07-25T19:21:57.010000"],["2024-07-25T19:21:58.010000"],["2024-07-25T19:21:59.010000"],["2024-07-25T19:22:00.010000"],["2024-07-25T19:22:01.010000"],["2024-07-25T19:22:02.010000"],["2024-07-25T19:22:03.010000"],["2024-07-25T19:22:04.010000"],["2024-07-25T19:22:05.010000"],["2024-07-25T19:22:06.010000"],["2024-07-25T19:22:07.010000"],["2024-07-25T19:22:08.010000"],["2024-07-25T19:22:09.010000"],["2024-07-25T19:22:10.010000"],["2024-07-25T19:22:11.010000"],["2024-07-25T19:22:12.010000"],["2024-07-25T19:22:13.010000"],["2024-07-25T19:22:14.010000"],["2024-07-25T19:22:15.010000"],["2024-07-25T19:22:16.010000"],["2024-07-25T19:22:17.010000"],["2024-07-25T19:22:18.010000"],["2024-07-25T19:22:19.010000"],["2024-07-25T19:22:20.010000"],["2024-07-25T19:22:21.010000"],["2024-07-25T19:22:22.010000"],["2024-07-25T19:22:23.010000"],["2024-07-25T19:22:24.010000"],["2024-07-25T19:22:25.010000"],["2024-07-25T19:22:26.010000"],["2024-07-25T19:22:27.010000"],["2024-07-25T19:22:28.010000"],["2024-07-25T19:22:29.010000"],["2024-07-25T19:22:30.010000"],["2024-07-25T19:22:31.010000"],["2024-07-25T19:22:32.010000"],["2024-07-25T19:22:33.010000"],["2024-07-25T19:22:34.010000"],["2024-07-25T19:22:35.010000"],["2024-07-25T19:22:36.010000"],["2024-07-25T19:22:37.010000"],["2024-07-25T19:22:38.010000"],["2024-07-25T19:22:39.010000"],["2024-07-25T19:22:40.010000"],["2024-07-25T19:22:41.010000"],["2024-07-25T19:22:42.010000"],["2024-07-25T19:22:43.010000"],["2024-07-25T19:22:44.010000"],["2024-07-25T19:22:45.010000"],["2024-07-25T19:22:46.010000"],["2024-07-25T19:22:47.010000"],["2024-07-25T19:22:48.010000"],["2024-07-25T19:22:49.010000"],["2024-07-25T19:22:50.010000"],["2024-07-25T19:22:51.010000"],["2024-07-25T19:22:52.010000"],["2024-07-25T19:22:53.010000"],["2024-07-25T19:22:54.010000"],["2024-07-25T19:22:55.010000"],["2024-07-25T19:22:56.010000"],["2024-07-25T19:22:57.010000"],["2024-07-25T19:22:58.010000"],["2024-07-25T19:22:59.010000"],["2024-07-25T19:23:00.010000"],["2024-07-25T19:23:01.010000"],["2024-07-25T19:23:02.010000"],["2024-07-25T19:23:03.010000"],["2024-07-25T19:23:04.010000"],["2024-07-25T19:23:05.010000"],["2024-07-25T19:23:06.010000"],["2024-07-25T19:23:07.010000"],["2024-07-25T19:23:08.010000"],["2024-07-25T19:23:09.010000"],["2024-07-25T19:23:10.010000"],["2024-07-25T19:23:11.010000"],["2024-07-25T19:23:12.010000"],["2024-07-25T19:23:13.010000"],["2024-07-25T19:23:14.010000"],["2024-07-25T19:23:15.010000"],["2024-07-25T19:23:16.010000"],["2024-07-25T19:23:17.010000"],["2024-07-25T19:23:18.010000"],["2024-07-25T19:23:19.010000"],["2024-07-25T19:23:20.010000"],["2024-07-25T19:23:21.010000"],["2024-07-25T19:23:22.010000"],["2024-07-25T19:23:23.010000"],["2024-07-25T19:23:24.010000"],["2024-07-25T19:23:25.010000"],["2024-07-25T19:23:26.010000"],["2024-07-25T19:23:27.010000"],["2024-07-25T19:23:28.010000"],["2024-07-25T19:23:29.010000"],["2024-07-25T19:23:30.010000"],["2024-07-25T19:23:31.010000"],["2024-07-25T19:23:32.010000"],["2024-07-25T19:23:33.010000"],["2024-07-25T19:23:34.010000"],["2024-07-25T19:23:35.010000"],["2024-07-25T19:23:36.010000"],["2024-07-25T19:23:37.010000"],["2024-07-25T19:23:38.010000"],["2024-07-25T19:23:39.010000"],["2024-07-25T19:23:40.010000"],["2024-07-25T19:23:41.010000"],["2024-07-25T19:23:42.010000"],["2024-07-25T19:23:43.010000"],["2024-07-25T19:23:44.010000"],["2024-07-25T19:23:45.010000"],["2024-07-25T19:23:46.010000"],["2024-07-25T19:23:47.010000"],["2024-07-25T19:23:48.010000"],["2024-07-25T19:23:49.010000"],["2024-07-25T19:23:50.010000"],["2024-07-25T19:23:51.010000"],["2024-07-25T19:23:52.010000"],["2024-07-25T19:23:53.010000"],["2024-07-25T19:23:54.010000"],["2024-07-25T19:23:55.010000"],["2024-07-25T19:23:56.010000"],["2024-07-25T19:23:57.010000"],["2024-07-25T19:23:58.010000"],["2024-07-25T19:23:59.010000"],["2024-07-25T19:24:00.010000"],["2024-07-25T19:24:01.010000"],["2024-07-25T19:24:02.010000"],["2024-07-25T19:24:03.010000"],["2024-07-25T19:24:04.010000"],["2024-07-25T19:24:05.010000"],["2024-07-25T19:24:06.010000"],["2024-07-25T19:24:07.010000"],["2024-07-25T19:24:08.010000"],["2024-07-25T19:24:09.010000"],["2024-07-25T19:24:10.010000"],["2024-07-25T19:24:11.010000"],["2024-07-25T19:24:12.010000"],["2024-07-25T19:24:13.010000"],["2024-07-25T19:24:14.010000"],["2024-07-25T19:24:15.010000"],["2024-07-25T19:24:16.010000"],["2024-07-25T19:24:17.010000"],["2024-07-25T19:24:18.010000"],["2024-07-25T19:24:19.010000"],["2024-07-25T19:24:20.010000"],["2024-07-25T19:24:21.010000"],["2024-07-25T19:24:22.010000"],["2024-07-25T19:24:23.010000"],["2024-07-25T19:24:24.010000"],["2024-07-25T19:24:25.010000"],["2024-07-25T19:24:26.010000"],["2024-07-25T19:24:27.010000"],["2024-07-25T19:24:28.010000"],["2024-07-25T19:24:29.010000"],["2024-07-25T19:24:30.010000"],["2024-07-25T19:24:31.010000"],["2024-07-25T19:24:32.010000"],["2024-07-25T19:24:33.010000"],["2024-07-25T19:24:34.010000"],["2024-07-25T19:24:35.010000"],["2024-07-25T19:24:36.010000"],["2024-07-25T19:24:37.010000"],["2024-07-25T19:24:38.010000"],["2024-07-25T19:24:39.010000"],["2024-07-25T19:24:40.010000"],["2024-07-25T19:24:41.010000"],["2024-07-25T19:24:42.010000"],["2024-07-25T19:24:43.010000"],["2024-07-25T19:24:44.010000"],["2024-07-25T19:24:45.010000"],["2024-07-25T19:24:46.010000"],["2024-07-25T19:24:47.010000"],["2024-07-25T19:24:48.010000"],["2024-07-25T19:24:49.010000"],["2024-07-25T19:24:50.010000"],["2024-07-25T19:24:51.010000"],["2024-07-25T19:24:52.010000"],["2024-07-25T19:24:53.010000"],["2024-07-25T19:24:54.010000"],["2024-07-25T19:24:55.010000"],["2024-07-25T19:24:56.010000"],["2024-07-25T19:24:57.010000"],["2024-07-25T19:24:58.010000"],["2024-07-25T19:24:59.010000"],["2024-07-25T19:25:00.010000"],["2024-07-25T19:25:01.010000"],["2024-07-25T19:25:02.010000"],["2024-07-25T19:25:03.010000"],["2024-07-25T19:25:04.010000"],["2024-07-25T19:25:05.010000"],["2024-07-25T19:25:06.010000"],["2024-07-25T19:25:07.010000"],["2024-07-25T19:25:08.010000"],["2024-07-25T19:25:09.010000"],["2024-07-25T19:25:10.010000"],["2024-07-25T19:25:11.010000"],["2024-07-25T19:25:12.010000"],["2024-07-25T19:25:13.010000"],["2024-07-25T19:25:14.010000"],["2024-07-25T19:25:15.010000"],["2024-07-25T19:25:16.010000"],["2024-07-25T19:25:17.010000"],["2024-07-25T19:25:18.010000"],["2024-07-25T19:25:19.010000"],["2024-07-25T19:25:20.010000"],["2024-07-25T19:25:21.010000"],["2024-07-25T19:25:22.010000"],["2024-07-25T19:25:23.010000"],["2024-07-25T19:25:24.010000"],["2024-07-25T19:25:25.010000"],["2024-07-25T19:25:26.010000"],["2024-07-25T19:25:27.010000"],["2024-07-25T19:25:28.010000"],["2024-07-25T19:25:29.010000"],["2024-07-25T19:25:30.010000"],["2024-07-25T19:25:31.010000"],["2024-07-25T19:25:32.010000"],["2024-07-25T19:25:33.010000"],["2024-07-25T19:25:34.010000"],["2024-07-25T19:25:35.010000"],["2024-07-25T19:25:36.010000"],["2024-07-25T19:25:37.010000"],["2024-07-25T19:25:38.010000"],["2024-07-25T19:25:39.010000"],["2024-07-25T19:25:40.010000"],["2024-07-25T19:25:41.010000"],["2024-07-25T19:25:42.010000"],["2024-07-25T19:25:43.010000"],["2024-07-25T19:25:44.010000"],["2024-07-25T19:25:45.010000"],["2024-07-25T19:25:46.010000"],["2024-07-25T19:25:47.010000"],["2024-07-25T19:25:48.010000"],["2024-07-25T19:25:49.010000"],["2024-07-25T19:25:50.010000"],["2024-07-25T19:25:51.010000"],["2024-07-25T19:25:52.010000"],["2024-07-25T19:25:53.010000"],["2024-07-25T19:25:54.010000"],["2024-07-25T19:25:55.010000"],["2024-07-25T19:25:56.010000"],["2024-07-25T19:25:57.010000"],["2024-07-25T19:25:58.010000"],["2024-07-25T19:25:59.010000"],["2024-07-25T19:26:00.010000"],["2024-07-25T19:26:01.010000"],["2024-07-25T19:26:02.010000"],["2024-07-25T19:26:03.010000"],["2024-07-25T19:26:04.010000"],["2024-07-25T19:26:05.010000"],["2024-07-25T19:26:06.010000"],["2024-07-25T19:26:07.010000"],["2024-07-25T19:26:08.010000"],["2024-07-25T19:26:09.010000"],["2024-07-25T19:26:10.010000"],["2024-07-25T19:26:11.010000"],["2024-07-25T19:26:12.010000"],["2024-07-25T19:26:13.010000"],["2024-07-25T19:26:14.010000"],["2024-07-25T19:26:15.010000"],["2024-07-25T19:26:16.010000"],["2024-07-25T19:26:17.010000"],["2024-07-25T19:26:18.010000"],["2024-07-25T19:26:19.010000"],["2024-07-25T19:26:20.010000"],["2024-07-25T19:26:21.010000"],["2024-07-25T19:26:22.010000"],["2024-07-25T19:26:23.010000"],["2024-07-25T19:26:24.010000"],["2024-07-25T19:26:25.010000"],["2024-07-25T19:26:26.010000"],["2024-07-25T19:26:27.010000"],["2024-07-25T19:26:28.010000"],["2024-07-25T19:26:29.010000"],["2024-07-25T19:26:30.010000"],["2024-07-25T19:26:31.010000"],["2024-07-25T19:26:32.010000"],["2024-07-25T19:26:33.010000"],["2024-07-25T19:26:34.010000"],["2024-07-25T19:26:35.010000"],["2024-07-25T19:26:36.010000"],["2024-07-25T19:26:37.010000"],["2024-07-25T19:26:38.010000"],["2024-07-25T19:26:39.010000"],["2024-07-25T19:26:40.010000"],["2024-07-25T19:26:41.010000"],["2024-07-25T19:26:42.010000"],["2024-07-25T19:26:43.010000"],["2024-07-25T19:26:44.010000"],["2024-07-25T19:26:45.010000"],["2024-07-25T19:26:46.010000"],["2024-07-25T19:26:47.010000"],["2024-07-25T19:26:48.010000"],["2024-07-25T19:26:49.010000"],["2024-07-25T19:26:50.010000"],["2024-07-25T19:26:51.010000"],["2024-07-25T19:26:52.010000"],["2024-07-25T19:26:53.010000"],["2024-07-25T19:26:54.010000"],["2024-07-25T19:26:55.010000"],["2024-07-25T19:26:56.010000"],["2024-07-25T19:26:57.010000"],["2024-07-25T19:26:58.010000"],["2024-07-25T19:26:59.010000"],["2024-07-25T19:27:00.010000"],["2024-07-25T19:27:01.010000"],["2024-07-25T19:27:02.010000"],["2024-07-25T19:27:03.010000"],["2024-07-25T19:27:04.010000"],["2024-07-25T19:27:05.010000"],["2024-07-25T19:27:06.010000"],["2024-07-25T19:27:07.010000"],["2024-07-25T19:27:08.010000"],["2024-07-25T19:27:09.010000"],["2024-07-25T19:27:10.010000"],["2024-07-25T19:27:11.010000"],["2024-07-25T19:27:12.010000"],["2024-07-25T19:27:13.010000"],["2024-07-25T19:27:14.010000"],["2024-07-25T19:27:15.010000"],["2024-07-25T19:27:16.010000"],["2024-07-25T19:27:17.010000"],["2024-07-25T19:27:18.010000"],["2024-07-25T19:27:19.010000"],["2024-07-25T19:27:20.010000"],["2024-07-25T19:27:21.010000"],["2024-07-25T19:27:22.010000"],["2024-07-25T19:27:23.010000"],["2024-07-25T19:27:24.010000"],["2024-07-25T19:27:25.010000"],["2024-07-25T19:27:26.010000"],["2024-07-25T19:27:27.010000"],["2024-07-25T19:27:28.010000"],["2024-07-25T19:27:29.010000"],["2024-07-25T19:27:30.010000"],["2024-07-25T19:27:31.010000"],["2024-07-25T19:27:32.010000"],["2024-07-25T19:27:33.010000"],["2024-07-25T19:27:34.010000"],["2024-07-25T19:27:35.010000"],["2024-07-25T19:27:36.010000"],["2024-07-25T19:27:37.010000"],["2024-07-25T19:27:38.010000"],["2024-07-25T19:27:39.010000"],["2024-07-25T19:27:40.010000"],["2024-07-25T19:27:41.010000"],["2024-07-25T19:27:42.010000"],["2024-07-25T19:27:43.010000"],["2024-07-25T19:27:44.010000"],["2024-07-25T19:27:45.010000"],["2024-07-25T19:27:46.010000"],["2024-07-25T19:27:47.010000"],["2024-07-25T19:27:48.010000"],["2024-07-25T19:27:49.010000"],["2024-07-25T19:27:50.010000"],["2024-07-25T19:27:51.010000"],["2024-07-25T19:27:52.010000"],["2024-07-25T19:27:53.010000"],["2024-07-25T19:27:54.010000"],["2024-07-25T19:27:55.010000"],["2024-07-25T19:27:56.010000"],["2024-07-25T19:27:57.010000"],["2024-07-25T19:27:58.010000"],["2024-07-25T19:27:59.010000"],["2024-07-25T19:28:00.010000"],["2024-07-25T19:28:01.010000"],["2024-07-25T19:28:02.010000"],["2024-07-25T19:28:03.010000"],["2024-07-25T19:28:04.010000"],["2024-07-25T19:28:05.010000"],["2024-07-25T19:28:06.010000"],["2024-07-25T19:28:07.010000"],["2024-07-25T19:28:08.010000"],["2024-07-25T19:28:09.010000"],["2024-07-25T19:28:10.010000"],["2024-07-25T19:28:11.010000"],["2024-07-25T19:28:12.010000"],["2024-07-25T19:28:13.010000"],["2024-07-25T19:28:14.010000"],["2024-07-25T19:28:15.010000"],["2024-07-25T19:28:16.010000"],["2024-07-25T19:28:17.010000"],["2024-07-25T19:28:18.010000"],["2024-07-25T19:28:19.010000"],["2024-07-25T19:28:20.010000"],["2024-07-25T19:28:21.010000"],["2024-07-25T19:28:22.010000"],["2024-07-25T19:28:23.010000"],["2024-07-25T19:28:24.010000"],["2024-07-25T19:28:25.010000"],["2024-07-25T19:28:26.010000"],["2024-07-25T19:28:27.010000"],["2024-07-25T19:28:28.010000"],["2024-07-25T19:28:29.010000"],["2024-07-25T19:28:30.010000"],["2024-07-25T19:28:31.010000"],["2024-07-25T19:28:32.010000"],["2024-07-25T19:28:33.010000"],["2024-07-25T19:28:34.010000"],["2024-07-25T19:28:35.010000"],["2024-07-25T19:28:36.010000"],["2024-07-25T19:28:37.010000"],["2024-07-25T19:28:38.010000"],["2024-07-25T19:28:39.010000"],["2024-07-25T19:28:40.010000"],["2024-07-25T19:28:41.010000"],["2024-07-25T19:28:42.010000"],["2024-07-25T19:28:43.010000"],["2024-07-25T19:28:44.010000"],["2024-07-25T19:28:45.010000"],["2024-07-25T19:28:46.010000"],["2024-07-25T19:28:47.010000"],["2024-07-25T19:28:48.010000"],["2024-07-25T19:28:49.010000"],["2024-07-25T19:28:50.010000"],["2024-07-25T19:28:51.010000"],["2024-07-25T19:28:52.010000"],["2024-07-25T19:28:53.010000"],["2024-07-25T19:28:54.010000"],["2024-07-25T19:28:55.010000"],["2024-07-25T19:28:56.010000"],["2024-07-25T19:28:57.010000"],["2024-07-25T19:28:58.010000"],["2024-07-25T19:28:59.010000"],["2024-07-25T19:29:00.010000"],["2024-07-25T19:29:01.010000"],["2024-07-25T19:29:02.010000"],["2024-07-25T19:29:03.010000"],["2024-07-25T19:29:04.010000"],["2024-07-25T19:29:05.010000"],["2024-07-25T19:29:06.010000"],["2024-07-25T19:29:07.010000"],["2024-07-25T19:29:08.010000"],["2024-07-25T19:29:09.010000"],["2024-07-25T19:29:10.010000"],["2024-07-25T19:29:11.010000"],["2024-07-25T19:29:12.010000"],["2024-07-25T19:29:13.010000"],["2024-07-25T19:29:14.010000"],["2024-07-25T19:29:15.010000"],["2024-07-25T19:29:16.010000"],["2024-07-25T19:29:17.010000"],["2024-07-25T19:29:18.010000"],["2024-07-25T19:29:19.010000"],["2024-07-25T19:29:20.010000"],["2024-07-25T19:29:21.010000"],["2024-07-25T19:29:22.010000"],["2024-07-25T19:29:23.010000"],["2024-07-25T19:29:24.010000"],["2024-07-25T19:29:25.010000"],["2024-07-25T19:29:26.010000"],["2024-07-25T19:29:27.010000"],["2024-07-25T19:29:28.010000"],["2024-07-25T19:29:29.010000"],["2024-07-25T19:29:30.010000"],["2024-07-25T19:29:31.010000"],["2024-07-25T19:29:32.010000"],["2024-07-25T19:29:33.010000"],["2024-07-25T19:29:34.010000"],["2024-07-25T19:29:35.010000"],["2024-07-25T19:29:36.010000"],["2024-07-25T19:29:37.010000"],["2024-07-25T19:29:38.010000"],["2024-07-25T19:29:39.010000"],["2024-07-25T19:29:40.010000"],["2024-07-25T19:29:41.010000"],["2024-07-25T19:29:42.010000"],["2024-07-25T19:29:43.010000"],["2024-07-25T19:29:44.010000"],["2024-07-25T19:29:45.010000"],["2024-07-25T19:29:46.010000"],["2024-07-25T19:29:47.010000"],["2024-07-25T19:29:48.010000"],["2024-07-25T19:29:49.010000"],["2024-07-25T19:29:50.010000"],["2024-07-25T19:29:51.010000"],["2024-07-25T19:29:52.010000"],["2024-07-25T19:29:53.010000"],["2024-07-25T19:29:54.010000"],["2024-07-25T19:29:55.010000"],["2024-07-25T19:29:56.010000"],["2024-07-25T19:29:57.010000"],["2024-07-25T19:29:58.010000"],["2024-07-25T19:29:59.010000"],["2024-07-25T19:30:00.010000"],["2024-07-25T19:30:01.010000"],["2024-07-25T19:30:02.010000"],["2024-07-25T19:30:03.010000"],["2024-07-25T19:30:04.010000"],["2024-07-25T19:30:05.010000"],["2024-07-25T19:30:06.010000"],["2024-07-25T19:30:07.010000"],["2024-07-25T19:30:08.010000"],["2024-07-25T19:30:09.010000"],["2024-07-25T19:30:10.010000"],["2024-07-25T19:30:11.010000"],["2024-07-25T19:30:12.010000"],["2024-07-25T19:30:13.010000"],["2024-07-25T19:30:14.010000"],["2024-07-25T19:30:15.010000"],["2024-07-25T19:30:16.010000"],["2024-07-25T19:30:17.010000"],["2024-07-25T19:30:18.010000"],["2024-07-25T19:30:19.010000"],["2024-07-25T19:30:20.010000"],["2024-07-25T19:30:21.010000"],["2024-07-25T19:30:22.010000"],["2024-07-25T19:30:23.010000"],["2024-07-25T19:30:24.010000"],["2024-07-25T19:30:25.010000"],["2024-07-25T19:30:26.010000"],["2024-07-25T19:30:27.010000"],["2024-07-25T19:30:28.010000"],["2024-07-25T19:30:29.010000"],["2024-07-25T19:30:30.010000"],["2024-07-25T19:30:31.010000"],["2024-07-25T19:30:32.010000"],["2024-07-25T19:30:33.010000"],["2024-07-25T19:30:34.010000"],["2024-07-25T19:30:35.010000"],["2024-07-25T19:30:36.010000"],["2024-07-25T19:30:37.010000"],["2024-07-25T19:30:38.010000"],["2024-07-25T19:30:39.010000"],["2024-07-25T19:30:40.010000"],["2024-07-25T19:30:41.010000"],["2024-07-25T19:30:42.010000"],["2024-07-25T19:30:43.010000"],["2024-07-25T19:30:44.010000"],["2024-07-25T19:30:45.010000"],["2024-07-25T19:30:46.010000"],["2024-07-25T19:30:47.010000"],["2024-07-25T19:30:48.010000"],["2024-07-25T19:30:49.010000"],["2024-07-25T19:30:50.010000"],["2024-07-25T19:30:51.010000"],["2024-07-25T19:30:52.010000"],["2024-07-25T19:30:53.010000"],["2024-07-25T19:30:54.010000"],["2024-07-25T19:30:55.010000"],["2024-07-25T19:30:56.010000"],["2024-07-25T19:30:57.010000"],["2024-07-25T19:30:58.010000"],["2024-07-25T19:30:59.010000"],["2024-07-25T19:31:00.010000"],["2024-07-25T19:31:01.010000"],["2024-07-25T19:31:02.010000"],["2024-07-25T19:31:03.010000"],["2024-07-25T19:31:04.010000"],["2024-07-25T19:31:05.010000"],["2024-07-25T19:31:06.010000"],["2024-07-25T19:31:07.010000"],["2024-07-25T19:31:08.010000"],["2024-07-25T19:31:09.010000"],["2024-07-25T19:31:10.010000"],["2024-07-25T19:31:11.010000"],["2024-07-25T19:31:12.010000"],["2024-07-25T19:31:13.010000"],["2024-07-25T19:31:14.010000"],["2024-07-25T19:31:15.010000"],["2024-07-25T19:31:16.010000"],["2024-07-25T19:31:17.010000"],["2024-07-25T19:31:18.010000"],["2024-07-25T19:31:19.010000"],["2024-07-25T19:31:20.010000"],["2024-07-25T19:31:21.010000"],["2024-07-25T19:31:22.010000"],["2024-07-25T19:31:23.010000"],["2024-07-25T19:31:24.010000"],["2024-07-25T19:31:25.010000"],["2024-07-25T19:31:26.010000"],["2024-07-25T19:31:27.010000"],["2024-07-25T19:31:28.010000"],["2024-07-25T19:31:29.010000"],["2024-07-25T19:31:30.010000"],["2024-07-25T19:31:31.010000"],["2024-07-25T19:31:32.010000"],["2024-07-25T19:31:33.010000"],["2024-07-25T19:31:34.010000"],["2024-07-25T19:31:35.010000"],["2024-07-25T19:31:36.010000"],["2024-07-25T19:31:37.010000"],["2024-07-25T19:31:38.010000"],["2024-07-25T19:31:39.010000"],["2024-07-25T19:31:40.010000"],["2024-07-25T19:31:41.010000"],["2024-07-25T19:31:42.010000"],["2024-07-25T19:31:43.010000"],["2024-07-25T19:31:44.010000"],["2024-07-25T19:31:45.010000"],["2024-07-25T19:31:46.010000"],["2024-07-25T19:31:47.010000"],["2024-07-25T19:31:48.010000"],["2024-07-25T19:31:49.010000"],["2024-07-25T19:31:50.010000"],["2024-07-25T19:31:51.010000"],["2024-07-25T19:31:52.010000"],["2024-07-25T19:31:53.010000"],["2024-07-25T19:31:54.010000"],["2024-07-25T19:31:55.010000"],["2024-07-25T19:31:56.010000"],["2024-07-25T19:31:57.010000"],["2024-07-25T19:31:58.010000"],["2024-07-25T19:31:59.010000"],["2024-07-25T19:32:00.010000"],["2024-07-25T19:32:01.010000"],["2024-07-25T19:32:02.010000"],["2024-07-25T19:32:03.010000"],["2024-07-25T19:32:04.010000"],["2024-07-25T19:32:05.010000"],["2024-07-25T19:32:06.010000"],["2024-07-25T19:32:07.010000"],["2024-07-25T19:32:08.010000"],["2024-07-25T19:32:09.010000"],["2024-07-25T19:32:10.010000"],["2024-07-25T19:32:11.010000"],["2024-07-25T19:32:12.010000"],["2024-07-25T19:32:13.010000"],["2024-07-25T19:32:14.010000"],["2024-07-25T19:32:15.010000"],["2024-07-25T19:32:16.010000"],["2024-07-25T19:32:17.010000"],["2024-07-25T19:32:18.010000"],["2024-07-25T19:32:19.010000"],["2024-07-25T19:32:20.010000"],["2024-07-25T19:32:21.010000"],["2024-07-25T19:32:22.010000"],["2024-07-25T19:32:23.010000"],["2024-07-25T19:32:24.010000"],["2024-07-25T19:32:25.010000"],["2024-07-25T19:32:26.010000"],["2024-07-25T19:32:27.010000"],["2024-07-25T19:32:28.010000"],["2024-07-25T19:32:29.010000"],["2024-07-25T19:32:30.010000"],["2024-07-25T19:32:31.010000"],["2024-07-25T19:32:32.010000"],["2024-07-25T19:32:33.010000"],["2024-07-25T19:32:34.010000"],["2024-07-25T19:32:35.010000"],["2024-07-25T19:32:36.010000"],["2024-07-25T19:32:37.010000"],["2024-07-25T19:32:38.010000"],["2024-07-25T19:32:39.010000"],["2024-07-25T19:32:40.010000"],["2024-07-25T19:32:41.010000"],["2024-07-25T19:32:42.010000"],["2024-07-25T19:32:43.010000"],["2024-07-25T19:32:44.010000"],["2024-07-25T19:32:45.010000"],["2024-07-25T19:32:46.010000"],["2024-07-25T19:32:47.010000"],["2024-07-25T19:32:48.010000"],["2024-07-25T19:32:49.010000"],["2024-07-25T19:32:50.010000"],["2024-07-25T19:32:51.010000"],["2024-07-25T19:32:52.010000"],["2024-07-25T19:32:53.010000"],["2024-07-25T19:32:54.010000"],["2024-07-25T19:32:55.010000"],["2024-07-25T19:32:56.010000"],["2024-07-25T19:32:57.010000"],["2024-07-25T19:32:58.010000"],["2024-07-25T19:32:59.010000"],["2024-07-25T19:33:00.010000"],["2024-07-25T19:33:01.010000"],["2024-07-25T19:33:02.010000"],["2024-07-25T19:33:03.010000"],["2024-07-25T19:33:04.010000"],["2024-07-25T19:33:05.010000"],["2024-07-25T19:33:06.010000"],["2024-07-25T19:33:07.010000"],["2024-07-25T19:33:08.010000"],["2024-07-25T19:33:09.010000"],["2024-07-25T19:33:10.010000"],["2024-07-25T19:33:11.010000"],["2024-07-25T19:33:12.010000"],["2024-07-25T19:33:13.010000"],["2024-07-25T19:33:14.010000"],["2024-07-25T19:33:15.010000"],["2024-07-25T19:33:16.010000"],["2024-07-25T19:33:17.010000"],["2024-07-25T19:33:18.010000"],["2024-07-25T19:33:19.010000"],["2024-07-25T19:33:20.010000"],["2024-07-25T19:33:21.010000"],["2024-07-25T19:33:22.010000"],["2024-07-25T19:33:23.010000"],["2024-07-25T19:33:24.010000"],["2024-07-25T19:33:25.010000"],["2024-07-25T19:33:26.010000"],["2024-07-25T19:33:27.010000"],["2024-07-25T19:33:28.010000"],["2024-07-25T19:33:29.010000"],["2024-07-25T19:33:30.010000"],["2024-07-25T19:33:31.010000"],["2024-07-25T19:33:32.010000"],["2024-07-25T19:33:33.010000"],["2024-07-25T19:33:34.010000"],["2024-07-25T19:33:35.010000"],["2024-07-25T19:33:36.010000"],["2024-07-25T19:33:37.010000"],["2024-07-25T19:33:38.010000"],["2024-07-25T19:33:39.010000"],["2024-07-25T19:33:40.010000"],["2024-07-25T19:33:41.010000"],["2024-07-25T19:33:42.010000"],["2024-07-25T19:33:43.010000"],["2024-07-25T19:33:44.010000"],["2024-07-25T19:33:45.010000"],["2024-07-25T19:33:46.010000"],["2024-07-25T19:33:47.010000"],["2024-07-25T19:33:48.010000"],["2024-07-25T19:33:49.010000"],["2024-07-25T19:33:50.010000"],["2024-07-25T19:33:51.010000"],["2024-07-25T19:33:52.010000"],["2024-07-25T19:33:53.010000"],["2024-07-25T19:33:54.010000"],["2024-07-25T19:33:55.010000"],["2024-07-25T19:33:56.010000"],["2024-07-25T19:33:57.010000"],["2024-07-25T19:33:58.010000"],["2024-07-25T19:33:59.010000"],["2024-07-25T19:34:00.010000"],["2024-07-25T19:34:01.010000"],["2024-07-25T19:34:02.010000"],["2024-07-25T19:34:03.010000"],["2024-07-25T19:34:04.010000"],["2024-07-25T19:34:05.010000"],["2024-07-25T19:34:06.010000"],["2024-07-25T19:34:07.010000"],["2024-07-25T19:34:08.010000"],["2024-07-25T19:34:09.010000"],["2024-07-25T19:34:10.010000"],["2024-07-25T19:34:11.010000"],["2024-07-25T19:34:12.010000"],["2024-07-25T19:34:13.010000"],["2024-07-25T19:34:14.010000"],["2024-07-25T19:34:15.010000"],["2024-07-25T19:34:16.010000"],["2024-07-25T19:34:17.010000"],["2024-07-25T19:34:18.010000"],["2024-07-25T19:34:19.010000"],["2024-07-25T19:34:20.010000"],["2024-07-25T19:34:21.010000"],["2024-07-25T19:34:22.010000"],["2024-07-25T19:34:23.010000"],["2024-07-25T19:34:24.010000"],["2024-07-25T19:34:25.010000"],["2024-07-25T19:34:26.010000"],["2024-07-25T19:34:27.010000"],["2024-07-25T19:34:28.010000"],["2024-07-25T19:34:29.010000"],["2024-07-25T19:34:30.010000"],["2024-07-25T19:34:31.010000"],["2024-07-25T19:34:32.010000"],["2024-07-25T19:34:33.010000"],["2024-07-25T19:34:34.010000"],["2024-07-25T19:34:35.010000"],["2024-07-25T19:34:36.010000"],["2024-07-25T19:34:37.010000"],["2024-07-25T19:34:38.010000"],["2024-07-25T19:34:39.010000"],["2024-07-25T19:34:40.010000"],["2024-07-25T19:34:41.010000"],["2024-07-25T19:34:42.010000"],["2024-07-25T19:34:43.010000"],["2024-07-25T19:34:44.010000"],["2024-07-25T19:34:45.010000"],["2024-07-25T19:34:46.010000"],["2024-07-25T19:34:47.010000"],["2024-07-25T19:34:48.010000"],["2024-07-25T19:34:49.010000"],["2024-07-25T19:34:50.010000"],["2024-07-25T19:34:51.010000"],["2024-07-25T19:34:52.010000"],["2024-07-25T19:34:53.010000"],["2024-07-25T19:34:54.010000"],["2024-07-25T19:34:55.010000"],["2024-07-25T19:34:56.010000"],["2024-07-25T19:34:57.010000"],["2024-07-25T19:34:58.010000"],["2024-07-25T19:34:59.010000"],["2024-07-25T19:35:00.010000"],["2024-07-25T19:35:01.010000"],["2024-07-25T19:35:02.010000"],["2024-07-25T19:35:03.010000"],["2024-07-25T19:35:04.010000"],["2024-07-25T19:35:05.010000"],["2024-07-25T19:35:06.010000"],["2024-07-25T19:35:07.010000"],["2024-07-25T19:35:08.010000"],["2024-07-25T19:35:09.010000"],["2024-07-25T19:35:10.010000"],["2024-07-25T19:35:11.010000"],["2024-07-25T19:35:12.010000"],["2024-07-25T19:35:13.010000"],["2024-07-25T19:35:14.010000"],["2024-07-25T19:35:15.010000"],["2024-07-25T19:35:16.010000"],["2024-07-25T19:35:17.010000"],["2024-07-25T19:35:18.010000"],["2024-07-25T19:35:19.010000"],["2024-07-25T19:35:20.010000"],["2024-07-25T19:35:21.010000"],["2024-07-25T19:35:22.010000"],["2024-07-25T19:35:23.010000"],["2024-07-25T19:35:24.010000"],["2024-07-25T19:35:25.010000"],["2024-07-25T19:35:26.010000"],["2024-07-25T19:35:27.010000"],["2024-07-25T19:35:28.010000"],["2024-07-25T19:35:29.010000"],["2024-07-25T19:35:30.010000"],["2024-07-25T19:35:31.010000"],["2024-07-25T19:35:32.010000"],["2024-07-25T19:35:33.010000"],["2024-07-25T19:35:34.010000"],["2024-07-25T19:35:35.010000"],["2024-07-25T19:35:36.010000"],["2024-07-25T19:35:37.010000"],["2024-07-25T19:35:38.010000"],["2024-07-25T19:35:39.010000"],["2024-07-25T19:35:40.010000"],["2024-07-25T19:35:41.010000"],["2024-07-25T19:35:42.010000"],["2024-07-25T19:35:43.010000"],["2024-07-25T19:35:44.010000"],["2024-07-25T19:35:45.010000"],["2024-07-25T19:35:46.010000"],["2024-07-25T19:35:47.010000"],["2024-07-25T19:35:48.010000"],["2024-07-25T19:35:49.010000"],["2024-07-25T19:35:50.010000"],["2024-07-25T19:35:51.010000"],["2024-07-25T19:35:52.010000"],["2024-07-25T19:35:53.010000"],["2024-07-25T19:35:54.010000"],["2024-07-25T19:35:55.010000"],["2024-07-25T19:35:56.010000"],["2024-07-25T19:35:57.010000"],["2024-07-25T19:35:58.010000"],["2024-07-25T19:35:59.010000"],["2024-07-25T19:36:00.010000"],["2024-07-25T19:36:01.010000"],["2024-07-25T19:36:02.010000"],["2024-07-25T19:36:03.010000"],["2024-07-25T19:36:04.010000"],["2024-07-25T19:36:05.010000"],["2024-07-25T19:36:06.010000"],["2024-07-25T19:36:07.010000"],["2024-07-25T19:36:08.010000"],["2024-07-25T19:36:09.010000"],["2024-07-25T19:36:10.010000"],["2024-07-25T19:36:11.010000"],["2024-07-25T19:36:12.010000"],["2024-07-25T19:36:13.010000"],["2024-07-25T19:36:14.010000"],["2024-07-25T19:36:15.010000"],["2024-07-25T19:36:16.010000"],["2024-07-25T19:36:17.010000"],["2024-07-25T19:36:18.010000"],["2024-07-25T19:36:19.010000"],["2024-07-25T19:36:20.010000"],["2024-07-25T19:36:21.010000"],["2024-07-25T19:36:22.010000"],["2024-07-25T19:36:23.010000"],["2024-07-25T19:36:24.010000"],["2024-07-25T19:36:25.010000"],["2024-07-25T19:36:26.010000"],["2024-07-25T19:36:27.010000"],["2024-07-25T19:36:28.010000"],["2024-07-25T19:36:29.010000"],["2024-07-25T19:36:30.010000"],["2024-07-25T19:36:31.010000"],["2024-07-25T19:36:32.010000"],["2024-07-25T19:36:33.010000"],["2024-07-25T19:36:34.010000"],["2024-07-25T19:36:35.010000"],["2024-07-25T19:36:36.010000"],["2024-07-25T19:36:37.010000"],["2024-07-25T19:36:38.010000"],["2024-07-25T19:36:39.010000"],["2024-07-25T19:36:40.010000"],["2024-07-25T19:36:41.010000"],["2024-07-25T19:36:42.010000"],["2024-07-25T19:36:43.010000"],["2024-07-25T19:36:44.010000"],["2024-07-25T19:36:45.010000"],["2024-07-25T19:36:46.010000"],["2024-07-25T19:36:47.010000"],["2024-07-25T19:36:48.010000"],["2024-07-25T19:36:49.010000"],["2024-07-25T19:36:50.010000"],["2024-07-25T19:36:51.010000"],["2024-07-25T19:36:52.010000"],["2024-07-25T19:36:53.010000"],["2024-07-25T19:36:54.010000"],["2024-07-25T19:36:55.010000"],["2024-07-25T19:36:56.010000"],["2024-07-25T19:36:57.010000"],["2024-07-25T19:36:58.010000"],["2024-07-25T19:36:59.010000"],["2024-07-25T19:37:00.010000"],["2024-07-25T19:37:01.010000"],["2024-07-25T19:37:02.010000"],["2024-07-25T19:37:03.010000"],["2024-07-25T19:37:04.010000"],["2024-07-25T19:37:05.010000"],["2024-07-25T19:37:06.010000"],["2024-07-25T19:37:07.010000"],["2024-07-25T19:37:08.010000"],["2024-07-25T19:37:09.010000"],["2024-07-25T19:37:10.010000"],["2024-07-25T19:37:11.010000"],["2024-07-25T19:37:12.010000"],["2024-07-25T19:37:13.010000"],["2024-07-25T19:37:14.010000"],["2024-07-25T19:37:15.010000"],["2024-07-25T19:37:16.010000"],["2024-07-25T19:37:17.010000"],["2024-07-25T19:37:18.010000"],["2024-07-25T19:37:19.010000"],["2024-07-25T19:37:20.010000"],["2024-07-25T19:37:21.010000"],["2024-07-25T19:37:22.010000"],["2024-07-25T19:37:23.010000"],["2024-07-25T19:37:24.010000"],["2024-07-25T19:37:25.010000"],["2024-07-25T19:37:26.010000"],["2024-07-25T19:37:27.010000"],["2024-07-25T19:37:28.010000"],["2024-07-25T19:37:29.010000"],["2024-07-25T19:37:30.010000"],["2024-07-25T19:37:31.010000"],["2024-07-25T19:37:32.010000"],["2024-07-25T19:37:33.010000"],["2024-07-25T19:37:34.010000"],["2024-07-25T19:37:35.010000"],["2024-07-25T19:37:36.010000"],["2024-07-25T19:37:37.010000"],["2024-07-25T19:37:38.010000"],["2024-07-25T19:37:39.010000"],["2024-07-25T19:37:40.010000"],["2024-07-25T19:37:41.010000"],["2024-07-25T19:37:42.010000"],["2024-07-25T19:37:43.010000"],["2024-07-25T19:37:44.010000"],["2024-07-25T19:37:45.010000"],["2024-07-25T19:37:46.010000"],["2024-07-25T19:37:47.010000"],["2024-07-25T19:37:48.010000"],["2024-07-25T19:37:49.010000"],["2024-07-25T19:37:50.010000"],["2024-07-25T19:37:51.010000"],["2024-07-25T19:37:52.010000"],["2024-07-25T19:37:53.010000"],["2024-07-25T19:37:54.010000"],["2024-07-25T19:37:55.010000"],["2024-07-25T19:37:56.010000"],["2024-07-25T19:37:57.010000"],["2024-07-25T19:37:58.010000"],["2024-07-25T19:37:59.010000"],["2024-07-25T19:38:00.010000"],["2024-07-25T19:38:01.010000"],["2024-07-25T19:38:02.010000"],["2024-07-25T19:38:03.010000"],["2024-07-25T19:38:04.010000"],["2024-07-25T19:38:05.010000"],["2024-07-25T19:38:06.010000"],["2024-07-25T19:38:07.010000"],["2024-07-25T19:38:08.010000"],["2024-07-25T19:38:09.010000"],["2024-07-25T19:38:10.010000"],["2024-07-25T19:38:11.010000"],["2024-07-25T19:38:12.010000"],["2024-07-25T19:38:13.010000"],["2024-07-25T19:38:14.010000"],["2024-07-25T19:38:15.010000"],["2024-07-25T19:38:16.010000"],["2024-07-25T19:38:17.010000"],["2024-07-25T19:38:18.010000"],["2024-07-25T19:38:19.010000"],["2024-07-25T19:38:20.010000"],["2024-07-25T19:38:21.010000"],["2024-07-25T19:38:22.010000"],["2024-07-25T19:38:23.010000"],["2024-07-25T19:38:24.010000"],["2024-07-25T19:38:25.010000"],["2024-07-25T19:38:26.010000"],["2024-07-25T19:38:27.010000"],["2024-07-25T19:38:28.010000"],["2024-07-25T19:38:29.010000"],["2024-07-25T19:38:30.010000"],["2024-07-25T19:38:31.010000"],["2024-07-25T19:38:32.010000"],["2024-07-25T19:38:33.010000"],["2024-07-25T19:38:34.010000"],["2024-07-25T19:38:35.010000"],["2024-07-25T19:38:36.010000"],["2024-07-25T19:38:37.010000"],["2024-07-25T19:38:38.010000"],["2024-07-25T19:38:39.010000"],["2024-07-25T19:38:40.010000"],["2024-07-25T19:38:41.010000"],["2024-07-25T19:38:42.010000"],["2024-07-25T19:38:43.010000"],["2024-07-25T19:38:44.010000"],["2024-07-25T19:38:45.010000"],["2024-07-25T19:38:46.010000"],["2024-07-25T19:38:47.010000"],["2024-07-25T19:38:48.010000"],["2024-07-25T19:38:49.010000"],["2024-07-25T19:38:50.010000"],["2024-07-25T19:38:51.010000"],["2024-07-25T19:38:52.010000"],["2024-07-25T19:38:53.010000"],["2024-07-25T19:38:54.010000"],["2024-07-25T19:38:55.010000"],["2024-07-25T19:38:56.010000"],["2024-07-25T19:38:57.010000"],["2024-07-25T19:38:58.010000"],["2024-07-25T19:38:59.010000"],["2024-07-25T19:39:00.010000"],["2024-07-25T19:39:01.010000"],["2024-07-25T19:39:02.010000"],["2024-07-25T19:39:03.010000"],["2024-07-25T19:39:04.010000"],["2024-07-25T19:39:05.010000"],["2024-07-25T19:39:06.010000"],["2024-07-25T19:39:07.010000"],["2024-07-25T19:39:08.010000"],["2024-07-25T19:39:09.010000"],["2024-07-25T19:39:10.010000"],["2024-07-25T19:39:11.010000"],["2024-07-25T19:39:12.010000"],["2024-07-25T19:39:13.010000"],["2024-07-25T19:39:14.010000"],["2024-07-25T19:39:15.010000"],["2024-07-25T19:39:16.010000"],["2024-07-25T19:39:17.010000"],["2024-07-25T19:39:18.010000"],["2024-07-25T19:39:19.010000"],["2024-07-25T19:39:20.010000"],["2024-07-25T19:39:21.010000"],["2024-07-25T19:39:22.010000"],["2024-07-25T19:39:23.010000"],["2024-07-25T19:39:24.010000"],["2024-07-25T19:39:25.010000"],["2024-07-25T19:39:26.010000"],["2024-07-25T19:39:27.010000"],["2024-07-25T19:39:28.010000"],["2024-07-25T19:39:29.010000"],["2024-07-25T19:39:30.010000"],["2024-07-25T19:39:31.010000"],["2024-07-25T19:39:32.010000"],["2024-07-25T19:39:33.010000"],["2024-07-25T19:39:34.010000"],["2024-07-25T19:39:35.010000"],["2024-07-25T19:39:36.010000"],["2024-07-25T19:39:37.010000"],["2024-07-25T19:39:38.010000"],["2024-07-25T19:39:39.010000"],["2024-07-25T19:39:40.010000"],["2024-07-25T19:39:41.010000"],["2024-07-25T19:39:42.010000"],["2024-07-25T19:39:43.010000"],["2024-07-25T19:39:44.010000"],["2024-07-25T19:39:45.010000"],["2024-07-25T19:39:46.010000"],["2024-07-25T19:39:47.010000"],["2024-07-25T19:39:48.010000"],["2024-07-25T19:39:49.010000"],["2024-07-25T19:39:50.010000"],["2024-07-25T19:39:51.010000"],["2024-07-25T19:39:52.010000"],["2024-07-25T19:39:53.010000"],["2024-07-25T19:39:54.010000"],["2024-07-25T19:39:55.010000"],["2024-07-25T19:39:56.010000"],["2024-07-25T19:39:57.010000"],["2024-07-25T19:39:58.010000"],["2024-07-25T19:39:59.010000"],["2024-07-25T19:40:00.010000"],["2024-07-25T19:40:01.010000"],["2024-07-25T19:40:02.010000"],["2024-07-25T19:40:03.010000"],["2024-07-25T19:40:04.010000"],["2024-07-25T19:40:05.010000"],["2024-07-25T19:40:06.010000"],["2024-07-25T19:40:07.010000"],["2024-07-25T19:40:08.010000"],["2024-07-25T19:40:09.010000"],["2024-07-25T19:40:10.010000"],["2024-07-25T19:40:11.010000"],["2024-07-25T19:40:12.010000"],["2024-07-25T19:40:13.010000"],["2024-07-25T19:40:14.010000"],["2024-07-25T19:40:15.010000"],["2024-07-25T19:40:16.010000"],["2024-07-25T19:40:17.010000"],["2024-07-25T19:40:18.010000"],["2024-07-25T19:40:19.010000"],["2024-07-25T19:40:20.010000"],["2024-07-25T19:40:21.010000"],["2024-07-25T19:40:22.010000"],["2024-07-25T19:40:23.010000"],["2024-07-25T19:40:24.010000"],["2024-07-25T19:40:25.010000"],["2024-07-25T19:40:26.010000"],["2024-07-25T19:40:27.010000"],["2024-07-25T19:40:28.010000"],["2024-07-25T19:40:29.010000"],["2024-07-25T19:40:30.010000"],["2024-07-25T19:40:31.010000"],["2024-07-25T19:40:32.010000"],["2024-07-25T19:40:33.010000"],["2024-07-25T19:40:34.010000"],["2024-07-25T19:40:35.010000"],["2024-07-25T19:40:36.010000"],["2024-07-25T19:40:37.010000"],["2024-07-25T19:40:38.010000"],["2024-07-25T19:40:39.010000"],["2024-07-25T19:40:40.010000"],["2024-07-25T19:40:41.010000"],["2024-07-25T19:40:42.010000"],["2024-07-25T19:40:43.010000"],["2024-07-25T19:40:44.010000"],["2024-07-25T19:40:45.010000"],["2024-07-25T19:40:46.010000"],["2024-07-25T19:40:47.010000"],["2024-07-25T19:40:48.010000"],["2024-07-25T19:40:49.010000"],["2024-07-25T19:40:50.010000"],["2024-07-25T19:40:51.010000"],["2024-07-25T19:40:52.010000"],["2024-07-25T19:40:53.010000"],["2024-07-25T19:40:54.010000"],["2024-07-25T19:40:55.010000"],["2024-07-25T19:40:56.010000"],["2024-07-25T19:40:57.010000"],["2024-07-25T19:40:58.010000"],["2024-07-25T19:40:59.010000"],["2024-07-25T19:41:00.010000"],["2024-07-25T19:41:01.010000"],["2024-07-25T19:41:02.010000"],["2024-07-25T19:41:03.010000"],["2024-07-25T19:41:04.010000"],["2024-07-25T19:41:05.010000"],["2024-07-25T19:41:06.010000"],["2024-07-25T19:41:07.010000"],["2024-07-25T19:41:08.010000"],["2024-07-25T19:41:09.010000"],["2024-07-25T19:41:10.010000"],["2024-07-25T19:41:11.010000"],["2024-07-25T19:41:12.010000"],["2024-07-25T19:41:13.010000"],["2024-07-25T19:41:14.010000"],["2024-07-25T19:41:15.010000"],["2024-07-25T19:41:16.010000"],["2024-07-25T19:41:17.010000"],["2024-07-25T19:41:18.010000"],["2024-07-25T19:41:19.010000"],["2024-07-25T19:41:20.010000"],["2024-07-25T19:41:21.010000"],["2024-07-25T19:41:22.010000"],["2024-07-25T19:41:23.010000"],["2024-07-25T19:41:24.010000"],["2024-07-25T19:41:25.010000"],["2024-07-25T19:41:26.010000"],["2024-07-25T19:41:27.010000"],["2024-07-25T19:41:28.010000"],["2024-07-25T19:41:29.010000"],["2024-07-25T19:41:30.010000"],["2024-07-25T19:41:31.010000"],["2024-07-25T19:41:32.010000"],["2024-07-25T19:41:33.010000"],["2024-07-25T19:41:34.010000"],["2024-07-25T19:41:35.010000"],["2024-07-25T19:41:36.010000"],["2024-07-25T19:41:37.010000"],["2024-07-25T19:41:38.010000"],["2024-07-25T19:41:39.010000"],["2024-07-25T19:41:40.010000"],["2024-07-25T19:41:41.010000"],["2024-07-25T19:41:42.010000"],["2024-07-25T19:41:43.010000"],["2024-07-25T19:41:44.010000"],["2024-07-25T19:41:45.010000"],["2024-07-25T19:41:46.010000"],["2024-07-25T19:41:47.010000"],["2024-07-25T19:41:48.010000"],["2024-07-25T19:41:49.010000"],["2024-07-25T19:41:50.010000"],["2024-07-25T19:41:51.010000"],["2024-07-25T19:41:52.010000"],["2024-07-25T19:41:53.010000"],["2024-07-25T19:41:54.010000"],["2024-07-25T19:41:55.010000"],["2024-07-25T19:41:56.010000"],["2024-07-25T19:41:57.010000"],["2024-07-25T19:41:58.010000"],["2024-07-25T19:41:59.010000"],["2024-07-25T19:42:00.010000"],["2024-07-25T19:42:01.010000"],["2024-07-25T19:42:02.010000"],["2024-07-25T19:42:03.010000"],["2024-07-25T19:42:04.010000"],["2024-07-25T19:42:05.010000"],["2024-07-25T19:42:06.010000"],["2024-07-25T19:42:07.010000"],["2024-07-25T19:42:08.010000"],["2024-07-25T19:42:09.010000"],["2024-07-25T19:42:10.010000"],["2024-07-25T19:42:11.010000"],["2024-07-25T19:42:12.010000"],["2024-07-25T19:42:13.010000"],["2024-07-25T19:42:14.010000"],["2024-07-25T19:42:15.010000"],["2024-07-25T19:42:16.010000"],["2024-07-25T19:42:17.010000"],["2024-07-25T19:42:18.010000"],["2024-07-25T19:42:19.010000"],["2024-07-25T19:42:20.010000"],["2024-07-25T19:42:21.010000"],["2024-07-25T19:42:22.010000"],["2024-07-25T19:42:23.010000"],["2024-07-25T19:42:24.010000"],["2024-07-25T19:42:25.010000"],["2024-07-25T19:42:26.010000"],["2024-07-25T19:42:27.010000"],["2024-07-25T19:42:28.010000"],["2024-07-25T19:42:29.010000"],["2024-07-25T19:42:30.010000"],["2024-07-25T19:42:31.010000"],["2024-07-25T19:42:32.010000"],["2024-07-25T19:42:33.010000"],["2024-07-25T19:42:34.010000"],["2024-07-25T19:42:35.010000"],["2024-07-25T19:42:36.010000"],["2024-07-25T19:42:37.010000"],["2024-07-25T19:42:38.010000"],["2024-07-25T19:42:39.010000"],["2024-07-25T19:42:40.010000"],["2024-07-25T19:42:41.010000"],["2024-07-25T19:42:42.010000"],["2024-07-25T19:42:43.010000"],["2024-07-25T19:42:44.010000"],["2024-07-25T19:42:45.010000"],["2024-07-25T19:42:46.010000"],["2024-07-25T19:42:47.010000"],["2024-07-25T19:42:48.010000"],["2024-07-25T19:42:49.010000"],["2024-07-25T19:42:50.010000"],["2024-07-25T19:42:51.010000"],["2024-07-25T19:42:52.010000"],["2024-07-25T19:42:53.010000"],["2024-07-25T19:42:54.010000"],["2024-07-25T19:42:55.010000"],["2024-07-25T19:42:56.010000"],["2024-07-25T19:42:57.010000"],["2024-07-25T19:42:58.010000"],["2024-07-25T19:42:59.010000"],["2024-07-25T19:43:00.010000"],["2024-07-25T19:43:01.010000"],["2024-07-25T19:43:02.010000"],["2024-07-25T19:43:03.010000"],["2024-07-25T19:43:04.010000"],["2024-07-25T19:43:05.010000"],["2024-07-25T19:43:06.010000"],["2024-07-25T19:43:07.010000"],["2024-07-25T19:43:08.010000"],["2024-07-25T19:43:09.010000"],["2024-07-25T19:43:10.010000"],["2024-07-25T19:43:11.010000"],["2024-07-25T19:43:12.010000"],["2024-07-25T19:43:13.010000"],["2024-07-25T19:43:14.010000"],["2024-07-25T19:43:15.010000"],["2024-07-25T19:43:16.010000"],["2024-07-25T19:43:17.010000"],["2024-07-25T19:43:18.010000"],["2024-07-25T19:43:19.010000"],["2024-07-25T19:43:20.010000"],["2024-07-25T19:43:21.010000"],["2024-07-25T19:43:22.010000"],["2024-07-25T19:43:23.010000"],["2024-07-25T19:43:24.010000"],["2024-07-25T19:43:25.010000"],["2024-07-25T19:43:26.010000"],["2024-07-25T19:43:27.010000"],["2024-07-25T19:43:28.010000"],["2024-07-25T19:43:29.010000"],["2024-07-25T19:43:30.010000"],["2024-07-25T19:43:31.010000"],["2024-07-25T19:43:32.010000"],["2024-07-25T19:43:33.010000"],["2024-07-25T19:43:34.010000"],["2024-07-25T19:43:35.010000"],["2024-07-25T19:43:36.010000"],["2024-07-25T19:43:37.010000"],["2024-07-25T19:43:38.010000"],["2024-07-25T19:43:39.010000"],["2024-07-25T19:43:40.010000"],["2024-07-25T19:43:41.010000"],["2024-07-25T19:43:42.010000"],["2024-07-25T19:43:43.010000"],["2024-07-25T19:43:44.010000"],["2024-07-25T19:43:45.010000"],["2024-07-25T19:43:46.010000"],["2024-07-25T19:43:47.010000"],["2024-07-25T19:43:48.010000"],["2024-07-25T19:43:49.010000"],["2024-07-25T19:43:50.010000"],["2024-07-25T19:43:51.010000"],["2024-07-25T19:43:52.010000"],["2024-07-25T19:43:53.010000"],["2024-07-25T19:43:54.010000"],["2024-07-25T19:43:55.010000"],["2024-07-25T19:43:56.010000"],["2024-07-25T19:43:57.010000"],["2024-07-25T19:43:58.010000"],["2024-07-25T19:43:59.010000"],["2024-07-25T19:44:00.010000"],["2024-07-25T19:44:01.010000"],["2024-07-25T19:44:02.010000"],["2024-07-25T19:44:03.010000"],["2024-07-25T19:44:04.010000"],["2024-07-25T19:44:05.010000"],["2024-07-25T19:44:06.010000"],["2024-07-25T19:44:07.010000"],["2024-07-25T19:44:08.010000"],["2024-07-25T19:44:09.010000"],["2024-07-25T19:44:10.010000"],["2024-07-25T19:44:11.010000"],["2024-07-25T19:44:12.010000"],["2024-07-25T19:44:13.010000"],["2024-07-25T19:44:14.010000"],["2024-07-25T19:44:15.010000"],["2024-07-25T19:44:16.010000"],["2024-07-25T19:44:17.010000"],["2024-07-25T19:44:18.010000"],["2024-07-25T19:44:19.010000"],["2024-07-25T19:44:20.010000"],["2024-07-25T19:44:21.010000"],["2024-07-25T19:44:22.010000"],["2024-07-25T19:44:23.010000"],["2024-07-25T19:44:24.010000"],["2024-07-25T19:44:25.010000"],["2024-07-25T19:44:26.010000"],["2024-07-25T19:44:27.010000"],["2024-07-25T19:44:28.010000"],["2024-07-25T19:44:29.010000"],["2024-07-25T19:44:30.010000"],["2024-07-25T19:44:31.010000"],["2024-07-25T19:44:32.010000"],["2024-07-25T19:44:33.010000"],["2024-07-25T19:44:34.010000"],["2024-07-25T19:44:35.010000"],["2024-07-25T19:44:36.010000"],["2024-07-25T19:44:37.010000"],["2024-07-25T19:44:38.010000"],["2024-07-25T19:44:39.010000"],["2024-07-25T19:44:40.010000"],["2024-07-25T19:44:41.010000"],["2024-07-25T19:44:42.010000"],["2024-07-25T19:44:43.010000"],["2024-07-25T19:44:44.010000"],["2024-07-25T19:44:45.010000"],["2024-07-25T19:44:46.010000"],["2024-07-25T19:44:47.010000"],["2024-07-25T19:44:48.010000"],["2024-07-25T19:44:49.010000"],["2024-07-25T19:44:50.010000"],["2024-07-25T19:44:51.010000"],["2024-07-25T19:44:52.010000"],["2024-07-25T19:44:53.010000"],["2024-07-25T19:44:54.010000"],["2024-07-25T19:44:55.010000"],["2024-07-25T19:44:56.010000"],["2024-07-25T19:44:57.010000"],["2024-07-25T19:44:58.010000"],["2024-07-25T19:44:59.010000"],["2024-07-25T19:45:00.010000"],["2024-07-25T19:45:01.010000"],["2024-07-25T19:45:02.010000"],["2024-07-25T19:45:03.010000"],["2024-07-25T19:45:04.010000"],["2024-07-25T19:45:05.010000"],["2024-07-25T19:45:06.010000"],["2024-07-25T19:45:07.010000"],["2024-07-25T19:45:08.010000"],["2024-07-25T19:45:09.010000"],["2024-07-25T19:45:10.010000"],["2024-07-25T19:45:11.010000"],["2024-07-25T19:45:12.010000"],["2024-07-25T19:45:13.010000"],["2024-07-25T19:45:14.010000"],["2024-07-25T19:45:15.010000"],["2024-07-25T19:45:16.010000"],["2024-07-25T19:45:17.010000"],["2024-07-25T19:45:18.010000"],["2024-07-25T19:45:19.010000"],["2024-07-25T19:45:20.010000"],["2024-07-25T19:45:21.010000"],["2024-07-25T19:45:22.010000"],["2024-07-25T19:45:23.010000"],["2024-07-25T19:45:24.010000"],["2024-07-25T19:45:25.010000"],["2024-07-25T19:45:26.010000"],["2024-07-25T19:45:27.010000"],["2024-07-25T19:45:28.010000"],["2024-07-25T19:45:29.010000"],["2024-07-25T19:45:30.010000"],["2024-07-25T19:45:31.010000"],["2024-07-25T19:45:32.010000"],["2024-07-25T19:45:33.010000"],["2024-07-25T19:45:34.010000"],["2024-07-25T19:45:35.010000"],["2024-07-25T19:45:36.010000"],["2024-07-25T19:45:37.010000"],["2024-07-25T19:45:38.010000"],["2024-07-25T19:45:39.010000"],["2024-07-25T19:45:40.010000"],["2024-07-25T19:45:41.010000"],["2024-07-25T19:45:42.010000"],["2024-07-25T19:45:43.010000"],["2024-07-25T19:45:44.010000"],["2024-07-25T19:45:45.010000"],["2024-07-25T19:45:46.010000"],["2024-07-25T19:45:47.010000"],["2024-07-25T19:45:48.010000"],["2024-07-25T19:45:49.010000"],["2024-07-25T19:45:50.010000"],["2024-07-25T19:45:51.010000"],["2024-07-25T19:45:52.010000"],["2024-07-25T19:45:53.010000"],["2024-07-25T19:45:54.010000"],["2024-07-25T19:45:55.010000"],["2024-07-25T19:45:56.010000"],["2024-07-25T19:45:57.010000"],["2024-07-25T19:45:58.010000"],["2024-07-25T19:45:59.010000"],["2024-07-25T19:46:00.010000"],["2024-07-25T19:46:01.010000"],["2024-07-25T19:46:02.010000"],["2024-07-25T19:46:03.010000"],["2024-07-25T19:46:04.010000"],["2024-07-25T19:46:05.010000"],["2024-07-25T19:46:06.010000"],["2024-07-25T19:46:07.010000"],["2024-07-25T19:46:08.010000"],["2024-07-25T19:46:09.010000"],["2024-07-25T19:46:10.010000"],["2024-07-25T19:46:11.010000"],["2024-07-25T19:46:12.010000"],["2024-07-25T19:46:13.010000"],["2024-07-25T19:46:14.010000"],["2024-07-25T19:46:15.010000"],["2024-07-25T19:46:16.010000"],["2024-07-25T19:46:17.010000"],["2024-07-25T19:46:18.010000"],["2024-07-25T19:46:19.010000"],["2024-07-25T19:46:20.010000"],["2024-07-25T19:46:21.010000"],["2024-07-25T19:46:22.010000"],["2024-07-25T19:46:23.010000"],["2024-07-25T19:46:24.010000"],["2024-07-25T19:46:25.010000"],["2024-07-25T19:46:26.010000"],["2024-07-25T19:46:27.010000"],["2024-07-25T19:46:28.010000"],["2024-07-25T19:46:29.010000"],["2024-07-25T19:46:30.010000"],["2024-07-25T19:46:31.010000"],["2024-07-25T19:46:32.010000"],["2024-07-25T19:46:33.010000"],["2024-07-25T19:46:34.010000"],["2024-07-25T19:46:35.010000"],["2024-07-25T19:46:36.010000"],["2024-07-25T19:46:37.010000"],["2024-07-25T19:46:38.010000"],["2024-07-25T19:46:39.010000"],["2024-07-25T19:46:40.010000"],["2024-07-25T19:46:41.010000"],["2024-07-25T19:46:42.010000"],["2024-07-25T19:46:43.010000"],["2024-07-25T19:46:44.010000"],["2024-07-25T19:46:45.010000"],["2024-07-25T19:46:46.010000"],["2024-07-25T19:46:47.010000"],["2024-07-25T19:46:48.010000"],["2024-07-25T19:46:49.010000"],["2024-07-25T19:46:50.010000"],["2024-07-25T19:46:51.010000"],["2024-07-25T19:46:52.010000"],["2024-07-25T19:46:53.010000"],["2024-07-25T19:46:54.010000"],["2024-07-25T19:46:55.010000"],["2024-07-25T19:46:56.010000"],["2024-07-25T19:46:57.010000"],["2024-07-25T19:46:58.010000"],["2024-07-25T19:46:59.010000"],["2024-07-25T19:47:00.010000"],["2024-07-25T19:47:01.010000"],["2024-07-25T19:47:02.010000"],["2024-07-25T19:47:03.010000"],["2024-07-25T19:47:04.010000"],["2024-07-25T19:47:05.010000"],["2024-07-25T19:47:06.010000"],["2024-07-25T19:47:07.010000"],["2024-07-25T19:47:08.010000"],["2024-07-25T19:47:09.010000"],["2024-07-25T19:47:10.010000"],["2024-07-25T19:47:11.010000"],["2024-07-25T19:47:12.010000"],["2024-07-25T19:47:13.010000"],["2024-07-25T19:47:14.010000"],["2024-07-25T19:47:15.010000"],["2024-07-25T19:47:16.010000"],["2024-07-25T19:47:17.010000"],["2024-07-25T19:47:18.010000"],["2024-07-25T19:47:19.010000"],["2024-07-25T19:47:20.010000"],["2024-07-25T19:47:21.010000"],["2024-07-25T19:47:22.010000"],["2024-07-25T19:47:23.010000"],["2024-07-25T19:47:24.010000"],["2024-07-25T19:47:25.010000"],["2024-07-25T19:47:26.010000"],["2024-07-25T19:47:27.010000"],["2024-07-25T19:47:28.010000"],["2024-07-25T19:47:29.010000"],["2024-07-25T19:47:30.010000"],["2024-07-25T19:47:31.010000"],["2024-07-25T19:47:32.010000"],["2024-07-25T19:47:33.010000"],["2024-07-25T19:47:34.010000"],["2024-07-25T19:47:35.010000"],["2024-07-25T19:47:36.010000"],["2024-07-25T19:47:37.010000"],["2024-07-25T19:47:38.010000"],["2024-07-25T19:47:39.010000"],["2024-07-25T19:47:40.010000"],["2024-07-25T19:47:41.010000"],["2024-07-25T19:47:42.010000"],["2024-07-25T19:47:43.010000"],["2024-07-25T19:47:44.010000"],["2024-07-25T19:47:45.010000"],["2024-07-25T19:47:46.010000"],["2024-07-25T19:47:47.010000"],["2024-07-25T19:47:48.010000"],["2024-07-25T19:47:49.010000"],["2024-07-25T19:47:50.010000"],["2024-07-25T19:47:51.010000"],["2024-07-25T19:47:52.010000"],["2024-07-25T19:47:53.010000"],["2024-07-25T19:47:54.010000"],["2024-07-25T19:47:55.010000"],["2024-07-25T19:47:56.010000"],["2024-07-25T19:47:57.010000"],["2024-07-25T19:47:58.010000"],["2024-07-25T19:47:59.010000"],["2024-07-25T19:48:00.010000"],["2024-07-25T19:48:01.010000"],["2024-07-25T19:48:02.010000"],["2024-07-25T19:48:03.010000"],["2024-07-25T19:48:04.010000"],["2024-07-25T19:48:05.010000"],["2024-07-25T19:48:06.010000"],["2024-07-25T19:48:07.010000"],["2024-07-25T19:48:08.010000"],["2024-07-25T19:48:09.010000"],["2024-07-25T19:48:10.010000"],["2024-07-25T19:48:11.010000"],["2024-07-25T19:48:12.010000"],["2024-07-25T19:48:13.010000"],["2024-07-25T19:48:14.010000"],["2024-07-25T19:48:15.010000"],["2024-07-25T19:48:16.010000"],["2024-07-25T19:48:17.010000"],["2024-07-25T19:48:18.010000"],["2024-07-25T19:48:19.010000"],["2024-07-25T19:48:20.010000"],["2024-07-25T19:48:21.010000"],["2024-07-25T19:48:22.010000"],["2024-07-25T19:48:23.010000"],["2024-07-25T19:48:24.010000"],["2024-07-25T19:48:25.010000"],["2024-07-25T19:48:26.010000"],["2024-07-25T19:48:27.010000"],["2024-07-25T19:48:28.010000"],["2024-07-25T19:48:29.010000"],["2024-07-25T19:48:30.010000"],["2024-07-25T19:48:31.010000"],["2024-07-25T19:48:32.010000"],["2024-07-25T19:48:33.010000"],["2024-07-25T19:48:34.010000"],["2024-07-25T19:48:35.010000"],["2024-07-25T19:48:36.010000"],["2024-07-25T19:48:37.010000"],["2024-07-25T19:48:38.010000"],["2024-07-25T19:48:39.010000"],["2024-07-25T19:48:40.010000"],["2024-07-25T19:48:41.010000"],["2024-07-25T19:48:42.010000"],["2024-07-25T19:48:43.010000"],["2024-07-25T19:48:44.010000"],["2024-07-25T19:48:45.010000"],["2024-07-25T19:48:46.010000"],["2024-07-25T19:48:47.010000"],["2024-07-25T19:48:48.010000"],["2024-07-25T19:48:49.010000"],["2024-07-25T19:48:50.010000"],["2024-07-25T19:48:51.010000"],["2024-07-25T19:48:52.010000"],["2024-07-25T19:48:53.010000"],["2024-07-25T19:48:54.010000"],["2024-07-25T19:48:55.010000"],["2024-07-25T19:48:56.010000"],["2024-07-25T19:48:57.010000"],["2024-07-25T19:48:58.010000"],["2024-07-25T19:48:59.010000"],["2024-07-25T19:49:00.010000"],["2024-07-25T19:49:01.010000"],["2024-07-25T19:49:02.010000"],["2024-07-25T19:49:03.010000"],["2024-07-25T19:49:04.010000"],["2024-07-25T19:49:05.010000"],["2024-07-25T19:49:06.010000"],["2024-07-25T19:49:07.010000"],["2024-07-25T19:49:08.010000"],["2024-07-25T19:49:09.010000"],["2024-07-25T19:49:10.010000"],["2024-07-25T19:49:11.010000"],["2024-07-25T19:49:12.010000"],["2024-07-25T19:49:13.010000"],["2024-07-25T19:49:14.010000"],["2024-07-25T19:49:15.010000"],["2024-07-25T19:49:16.010000"],["2024-07-25T19:49:17.010000"],["2024-07-25T19:49:18.010000"],["2024-07-25T19:49:19.010000"],["2024-07-25T19:49:20.010000"],["2024-07-25T19:49:21.010000"],["2024-07-25T19:49:22.010000"],["2024-07-25T19:49:23.010000"],["2024-07-25T19:49:24.010000"],["2024-07-25T19:49:25.010000"],["2024-07-25T19:49:26.010000"],["2024-07-25T19:49:27.010000"],["2024-07-25T19:49:28.010000"],["2024-07-25T19:49:29.010000"],["2024-07-25T19:49:30.010000"],["2024-07-25T19:49:31.010000"],["2024-07-25T19:49:32.010000"],["2024-07-25T19:49:33.010000"],["2024-07-25T19:49:34.010000"],["2024-07-25T19:49:35.010000"],["2024-07-25T19:49:36.010000"],["2024-07-25T19:49:37.010000"],["2024-07-25T19:49:38.010000"],["2024-07-25T19:49:39.010000"],["2024-07-25T19:49:40.010000"],["2024-07-25T19:49:41.010000"],["2024-07-25T19:49:42.010000"],["2024-07-25T19:49:43.010000"],["2024-07-25T19:49:44.010000"],["2024-07-25T19:49:45.010000"],["2024-07-25T19:49:46.010000"],["2024-07-25T19:49:47.010000"],["2024-07-25T19:49:48.010000"],["2024-07-25T19:49:49.010000"],["2024-07-25T19:49:50.010000"],["2024-07-25T19:49:51.010000"],["2024-07-25T19:49:52.010000"],["2024-07-25T19:49:53.010000"],["2024-07-25T19:49:54.010000"],["2024-07-25T19:49:55.010000"],["2024-07-25T19:49:56.010000"],["2024-07-25T19:49:57.010000"],["2024-07-25T19:49:58.010000"],["2024-07-25T19:49:59.010000"],["2024-07-25T19:50:00.010000"],["2024-07-25T19:50:01.010000"],["2024-07-25T19:50:02.010000"],["2024-07-25T19:50:03.010000"],["2024-07-25T19:50:04.010000"],["2024-07-25T19:50:05.010000"],["2024-07-25T19:50:06.010000"],["2024-07-25T19:50:07.010000"],["2024-07-25T19:50:08.010000"],["2024-07-25T19:50:09.010000"],["2024-07-25T19:50:10.010000"],["2024-07-25T19:50:11.010000"],["2024-07-25T19:50:12.010000"],["2024-07-25T19:50:13.010000"],["2024-07-25T19:50:14.010000"],["2024-07-25T19:50:15.010000"],["2024-07-25T19:50:16.010000"],["2024-07-25T19:50:17.010000"],["2024-07-25T19:50:18.010000"],["2024-07-25T19:50:19.010000"],["2024-07-25T19:50:20.010000"],["2024-07-25T19:50:21.010000"],["2024-07-25T19:50:22.010000"],["2024-07-25T19:50:23.010000"],["2024-07-25T19:50:24.010000"],["2024-07-25T19:50:25.010000"],["2024-07-25T19:50:26.010000"],["2024-07-25T19:50:27.010000"],["2024-07-25T19:50:28.010000"],["2024-07-25T19:50:29.010000"],["2024-07-25T19:50:30.010000"],["2024-07-25T19:50:31.010000"],["2024-07-25T19:50:32.010000"],["2024-07-25T19:50:33.010000"],["2024-07-25T19:50:34.010000"],["2024-07-25T19:50:35.010000"],["2024-07-25T19:50:36.010000"],["2024-07-25T19:50:37.010000"],["2024-07-25T19:50:38.010000"],["2024-07-25T19:50:39.010000"],["2024-07-25T19:50:40.010000"],["2024-07-25T19:50:41.010000"],["2024-07-25T19:50:42.010000"],["2024-07-25T19:50:43.010000"],["2024-07-25T19:50:44.010000"],["2024-07-25T19:50:45.010000"],["2024-07-25T19:50:46.010000"],["2024-07-25T19:50:47.010000"],["2024-07-25T19:50:48.010000"],["2024-07-25T19:50:49.010000"],["2024-07-25T19:50:50.010000"],["2024-07-25T19:50:51.010000"],["2024-07-25T19:50:52.010000"],["2024-07-25T19:50:53.010000"],["2024-07-25T19:50:54.010000"],["2024-07-25T19:50:55.010000"],["2024-07-25T19:50:56.010000"],["2024-07-25T19:50:57.010000"],["2024-07-25T19:50:58.010000"],["2024-07-25T19:50:59.010000"],["2024-07-25T19:51:00.010000"],["2024-07-25T19:51:01.010000"],["2024-07-25T19:51:02.010000"],["2024-07-25T19:51:03.010000"],["2024-07-25T19:51:04.010000"],["2024-07-25T19:51:05.010000"],["2024-07-25T19:51:06.010000"],["2024-07-25T19:51:07.010000"],["2024-07-25T19:51:08.010000"],["2024-07-25T19:51:09.010000"],["2024-07-25T19:51:10.010000"],["2024-07-25T19:51:11.010000"],["2024-07-25T19:51:12.010000"],["2024-07-25T19:51:13.010000"],["2024-07-25T19:51:14.010000"],["2024-07-25T19:51:15.010000"],["2024-07-25T19:51:16.010000"],["2024-07-25T19:51:17.010000"],["2024-07-25T19:51:18.010000"],["2024-07-25T19:51:19.010000"],["2024-07-25T19:51:20.010000"],["2024-07-25T19:51:21.010000"],["2024-07-25T19:51:22.010000"],["2024-07-25T19:51:23.010000"],["2024-07-25T19:51:24.010000"],["2024-07-25T19:51:25.010000"],["2024-07-25T19:51:26.010000"],["2024-07-25T19:51:27.010000"],["2024-07-25T19:51:28.010000"],["2024-07-25T19:51:29.010000"],["2024-07-25T19:51:30.010000"],["2024-07-25T19:51:31.010000"],["2024-07-25T19:51:32.010000"],["2024-07-25T19:51:33.010000"],["2024-07-25T19:51:34.010000"],["2024-07-25T19:51:35.010000"],["2024-07-25T19:51:36.010000"],["2024-07-25T19:51:37.010000"],["2024-07-25T19:51:38.010000"],["2024-07-25T19:51:39.010000"],["2024-07-25T19:51:40.010000"],["2024-07-25T19:51:41.010000"],["2024-07-25T19:51:42.010000"],["2024-07-25T19:51:43.010000"],["2024-07-25T19:51:44.010000"],["2024-07-25T19:51:45.010000"],["2024-07-25T19:51:46.010000"],["2024-07-25T19:51:47.010000"],["2024-07-25T19:51:48.010000"],["2024-07-25T19:51:49.010000"],["2024-07-25T19:51:50.010000"],["2024-07-25T19:51:51.010000"],["2024-07-25T19:51:52.010000"],["2024-07-25T19:51:53.010000"],["2024-07-25T19:51:54.010000"],["2024-07-25T19:51:55.010000"],["2024-07-25T19:51:56.010000"],["2024-07-25T19:51:57.010000"],["2024-07-25T19:51:58.010000"],["2024-07-25T19:51:59.010000"],["2024-07-25T19:52:00.010000"],["2024-07-25T19:52:01.010000"],["2024-07-25T19:52:02.010000"],["2024-07-25T19:52:03.010000"],["2024-07-25T19:52:04.010000"],["2024-07-25T19:52:05.010000"],["2024-07-25T19:52:06.010000"],["2024-07-25T19:52:07.010000"],["2024-07-25T19:52:08.010000"],["2024-07-25T19:52:09.010000"],["2024-07-25T19:52:10.010000"],["2024-07-25T19:52:11.010000"],["2024-07-25T19:52:12.010000"],["2024-07-25T19:52:13.010000"],["2024-07-25T19:52:14.010000"],["2024-07-25T19:52:15.010000"],["2024-07-25T19:52:16.010000"],["2024-07-25T19:52:17.010000"],["2024-07-25T19:52:18.010000"],["2024-07-25T19:52:19.010000"],["2024-07-25T19:52:20.010000"],["2024-07-25T19:52:21.010000"],["2024-07-25T19:52:22.010000"],["2024-07-25T19:52:23.010000"],["2024-07-25T19:52:24.010000"],["2024-07-25T19:52:25.010000"],["2024-07-25T19:52:26.010000"],["2024-07-25T19:52:27.010000"],["2024-07-25T19:52:28.010000"],["2024-07-25T19:52:29.010000"],["2024-07-25T19:52:30.010000"],["2024-07-25T19:52:31.010000"],["2024-07-25T19:52:32.010000"],["2024-07-25T19:52:33.010000"],["2024-07-25T19:52:34.010000"],["2024-07-25T19:52:35.010000"],["2024-07-25T19:52:36.010000"],["2024-07-25T19:52:37.010000"],["2024-07-25T19:52:38.010000"],["2024-07-25T19:52:39.010000"],["2024-07-25T19:52:40.010000"],["2024-07-25T19:52:41.010000"],["2024-07-25T19:52:42.010000"],["2024-07-25T19:52:43.010000"],["2024-07-25T19:52:44.010000"],["2024-07-25T19:52:45.010000"],["2024-07-25T19:52:46.010000"],["2024-07-25T19:52:47.010000"],["2024-07-25T19:52:48.010000"],["2024-07-25T19:52:49.010000"],["2024-07-25T19:52:50.010000"],["2024-07-25T19:52:51.010000"],["2024-07-25T19:52:52.010000"],["2024-07-25T19:52:53.010000"],["2024-07-25T19:52:54.010000"],["2024-07-25T19:52:55.010000"],["2024-07-25T19:52:56.010000"],["2024-07-25T19:52:57.010000"],["2024-07-25T19:52:58.010000"],["2024-07-25T19:52:59.010000"],["2024-07-25T19:53:00.010000"],["2024-07-25T19:53:01.010000"],["2024-07-25T19:53:02.010000"],["2024-07-25T19:53:03.010000"],["2024-07-25T19:53:04.010000"],["2024-07-25T19:53:05.010000"],["2024-07-25T19:53:06.010000"],["2024-07-25T19:53:07.010000"],["2024-07-25T19:53:08.010000"],["2024-07-25T19:53:09.010000"],["2024-07-25T19:53:10.010000"],["2024-07-25T19:53:11.010000"],["2024-07-25T19:53:12.010000"],["2024-07-25T19:53:13.010000"],["2024-07-25T19:53:14.010000"],["2024-07-25T19:53:15.010000"],["2024-07-25T19:53:16.010000"],["2024-07-25T19:53:17.010000"],["2024-07-25T19:53:18.010000"],["2024-07-25T19:53:19.010000"],["2024-07-25T19:53:20.010000"],["2024-07-25T19:53:21.010000"],["2024-07-25T19:53:22.010000"],["2024-07-25T19:53:23.010000"],["2024-07-25T19:53:24.010000"],["2024-07-25T19:53:25.010000"],["2024-07-25T19:53:26.010000"],["2024-07-25T19:53:27.010000"],["2024-07-25T19:53:28.010000"],["2024-07-25T19:53:29.010000"],["2024-07-25T19:53:30.010000"],["2024-07-25T19:53:31.010000"],["2024-07-25T19:53:32.010000"],["2024-07-25T19:53:33.010000"],["2024-07-25T19:53:34.010000"],["2024-07-25T19:53:35.010000"],["2024-07-25T19:53:36.010000"],["2024-07-25T19:53:37.010000"],["2024-07-25T19:53:38.010000"],["2024-07-25T19:53:39.010000"],["2024-07-25T19:53:40.010000"],["2024-07-25T19:53:41.010000"],["2024-07-25T19:53:42.010000"],["2024-07-25T19:53:43.010000"],["2024-07-25T19:53:44.010000"],["2024-07-25T19:53:45.010000"],["2024-07-25T19:53:46.010000"],["2024-07-25T19:53:47.010000"],["2024-07-25T19:53:48.010000"],["2024-07-25T19:53:49.010000"],["2024-07-25T19:53:50.010000"],["2024-07-25T19:53:51.010000"],["2024-07-25T19:53:52.010000"],["2024-07-25T19:53:53.010000"],["2024-07-25T19:53:54.010000"],["2024-07-25T19:53:55.010000"],["2024-07-25T19:53:56.010000"],["2024-07-25T19:53:57.010000"],["2024-07-25T19:53:58.010000"],["2024-07-25T19:53:59.010000"],["2024-07-25T19:54:00.010000"],["2024-07-25T19:54:01.010000"],["2024-07-25T19:54:02.010000"],["2024-07-25T19:54:03.010000"],["2024-07-25T19:54:04.010000"],["2024-07-25T19:54:05.010000"],["2024-07-25T19:54:06.010000"],["2024-07-25T19:54:07.010000"],["2024-07-25T19:54:08.010000"],["2024-07-25T19:54:09.010000"],["2024-07-25T19:54:10.010000"],["2024-07-25T19:54:11.010000"],["2024-07-25T19:54:12.010000"],["2024-07-25T19:54:13.010000"],["2024-07-25T19:54:14.010000"],["2024-07-25T19:54:15.010000"],["2024-07-25T19:54:16.010000"],["2024-07-25T19:54:17.010000"],["2024-07-25T19:54:18.010000"],["2024-07-25T19:54:19.010000"],["2024-07-25T19:54:20.010000"],["2024-07-25T19:54:21.010000"],["2024-07-25T19:54:22.010000"],["2024-07-25T19:54:23.010000"],["2024-07-25T19:54:24.010000"],["2024-07-25T19:54:25.010000"],["2024-07-25T19:54:26.010000"],["2024-07-25T19:54:27.010000"],["2024-07-25T19:54:28.010000"],["2024-07-25T19:54:29.010000"],["2024-07-25T19:54:30.010000"],["2024-07-25T19:54:31.010000"],["2024-07-25T19:54:32.010000"],["2024-07-25T19:54:33.010000"],["2024-07-25T19:54:34.010000"],["2024-07-25T19:54:35.010000"],["2024-07-25T19:54:36.010000"],["2024-07-25T19:54:37.010000"],["2024-07-25T19:54:38.010000"],["2024-07-25T19:54:39.010000"],["2024-07-25T19:54:40.010000"],["2024-07-25T19:54:41.010000"],["2024-07-25T19:54:42.010000"],["2024-07-25T19:54:43.010000"],["2024-07-25T19:54:44.010000"],["2024-07-25T19:54:45.010000"],["2024-07-25T19:54:46.010000"],["2024-07-25T19:54:47.010000"],["2024-07-25T19:54:48.010000"],["2024-07-25T19:54:49.010000"],["2024-07-25T19:54:50.010000"],["2024-07-25T19:54:51.010000"],["2024-07-25T19:54:52.010000"],["2024-07-25T19:54:53.010000"],["2024-07-25T19:54:54.010000"],["2024-07-25T19:54:55.010000"],["2024-07-25T19:54:56.010000"],["2024-07-25T19:54:57.010000"],["2024-07-25T19:54:58.010000"],["2024-07-25T19:54:59.010000"],["2024-07-25T19:55:00.010000"],["2024-07-25T19:55:01.010000"],["2024-07-25T19:55:02.010000"],["2024-07-25T19:55:03.010000"],["2024-07-25T19:55:04.010000"],["2024-07-25T19:55:05.010000"],["2024-07-25T19:55:06.010000"],["2024-07-25T19:55:07.010000"],["2024-07-25T19:55:08.010000"],["2024-07-25T19:55:09.010000"],["2024-07-25T19:55:10.010000"],["2024-07-25T19:55:11.010000"],["2024-07-25T19:55:12.010000"],["2024-07-25T19:55:13.010000"],["2024-07-25T19:55:14.010000"],["2024-07-25T19:55:15.010000"],["2024-07-25T19:55:16.010000"],["2024-07-25T19:55:17.010000"],["2024-07-25T19:55:18.010000"],["2024-07-25T19:55:19.010000"],["2024-07-25T19:55:20.010000"],["2024-07-25T19:55:21.010000"],["2024-07-25T19:55:22.010000"],["2024-07-25T19:55:23.010000"],["2024-07-25T19:55:24.010000"],["2024-07-25T19:55:25.010000"],["2024-07-25T19:55:26.010000"],["2024-07-25T19:55:27.010000"],["2024-07-25T19:55:28.010000"],["2024-07-25T19:55:29.010000"],["2024-07-25T19:55:30.010000"],["2024-07-25T19:55:31.010000"],["2024-07-25T19:55:32.010000"],["2024-07-25T19:55:33.010000"],["2024-07-25T19:55:34.010000"],["2024-07-25T19:55:35.010000"],["2024-07-25T19:55:36.010000"],["2024-07-25T19:55:37.010000"],["2024-07-25T19:55:38.010000"],["2024-07-25T19:55:39.010000"],["2024-07-25T19:55:40.010000"],["2024-07-25T19:55:41.010000"],["2024-07-25T19:55:42.010000"],["2024-07-25T19:55:43.010000"],["2024-07-25T19:55:44.010000"],["2024-07-25T19:55:45.010000"],["2024-07-25T19:55:46.010000"],["2024-07-25T19:55:47.010000"],["2024-07-25T19:55:48.010000"],["2024-07-25T19:55:49.010000"],["2024-07-25T19:55:50.010000"],["2024-07-25T19:55:51.010000"],["2024-07-25T19:55:52.010000"],["2024-07-25T19:55:53.010000"],["2024-07-25T19:55:54.010000"],["2024-07-25T19:55:55.010000"],["2024-07-25T19:55:56.010000"],["2024-07-25T19:55:57.010000"],["2024-07-25T19:55:58.010000"],["2024-07-25T19:55:59.010000"],["2024-07-25T19:56:00.010000"],["2024-07-25T19:56:01.010000"],["2024-07-25T19:56:02.010000"],["2024-07-25T19:56:03.010000"],["2024-07-25T19:56:04.010000"],["2024-07-25T19:56:05.010000"],["2024-07-25T19:56:06.010000"],["2024-07-25T19:56:07.010000"],["2024-07-25T19:56:08.010000"],["2024-07-25T19:56:09.010000"],["2024-07-25T19:56:10.010000"],["2024-07-25T19:56:11.010000"],["2024-07-25T19:56:12.010000"],["2024-07-25T19:56:13.010000"],["2024-07-25T19:56:14.010000"],["2024-07-25T19:56:15.010000"],["2024-07-25T19:56:16.010000"],["2024-07-25T19:56:17.010000"],["2024-07-25T19:56:18.010000"],["2024-07-25T19:56:19.010000"],["2024-07-25T19:56:20.010000"],["2024-07-25T19:56:21.010000"],["2024-07-25T19:56:22.010000"],["2024-07-25T19:56:23.010000"],["2024-07-25T19:56:24.010000"],["2024-07-25T19:56:25.010000"],["2024-07-25T19:56:26.010000"],["2024-07-25T19:56:27.010000"],["2024-07-25T19:56:28.010000"],["2024-07-25T19:56:29.010000"],["2024-07-25T19:56:30.010000"],["2024-07-25T19:56:31.010000"],["2024-07-25T19:56:32.010000"],["2024-07-25T19:56:33.010000"],["2024-07-25T19:56:34.010000"],["2024-07-25T19:56:35.010000"],["2024-07-25T19:56:36.010000"],["2024-07-25T19:56:37.010000"],["2024-07-25T19:56:38.010000"],["2024-07-25T19:56:39.010000"],["2024-07-25T19:56:40.010000"],["2024-07-25T19:56:41.010000"],["2024-07-25T19:56:42.010000"],["2024-07-25T19:56:43.010000"],["2024-07-25T19:56:44.010000"],["2024-07-25T19:56:45.010000"],["2024-07-25T19:56:46.010000"],["2024-07-25T19:56:47.010000"],["2024-07-25T19:56:48.010000"],["2024-07-25T19:56:49.010000"],["2024-07-25T19:56:50.010000"],["2024-07-25T19:56:51.010000"],["2024-07-25T19:56:52.010000"],["2024-07-25T19:56:53.010000"],["2024-07-25T19:56:54.010000"],["2024-07-25T19:56:55.010000"],["2024-07-25T19:56:56.010000"],["2024-07-25T19:56:57.010000"],["2024-07-25T19:56:58.010000"],["2024-07-25T19:56:59.010000"],["2024-07-25T19:57:00.010000"],["2024-07-25T19:57:01.010000"],["2024-07-25T19:57:02.010000"],["2024-07-25T19:57:03.010000"],["2024-07-25T19:57:04.010000"],["2024-07-25T19:57:05.010000"],["2024-07-25T19:57:06.010000"],["2024-07-25T19:57:07.010000"],["2024-07-25T19:57:08.010000"],["2024-07-25T19:57:09.010000"],["2024-07-25T19:57:10.010000"],["2024-07-25T19:57:11.010000"],["2024-07-25T19:57:12.010000"],["2024-07-25T19:57:13.010000"],["2024-07-25T19:57:14.010000"],["2024-07-25T19:57:15.010000"],["2024-07-25T19:57:16.010000"],["2024-07-25T19:57:17.010000"],["2024-07-25T19:57:18.010000"],["2024-07-25T19:57:19.010000"],["2024-07-25T19:57:20.010000"],["2024-07-25T19:57:21.010000"],["2024-07-25T19:57:22.010000"],["2024-07-25T19:57:23.010000"],["2024-07-25T19:57:24.010000"],["2024-07-25T19:57:25.010000"],["2024-07-25T19:57:26.010000"],["2024-07-25T19:57:27.010000"],["2024-07-25T19:57:28.010000"],["2024-07-25T19:57:29.010000"],["2024-07-25T19:57:30.010000"],["2024-07-25T19:57:31.010000"],["2024-07-25T19:57:32.010000"],["2024-07-25T19:57:33.010000"],["2024-07-25T19:57:34.010000"],["2024-07-25T19:57:35.010000"],["2024-07-25T19:57:36.010000"],["2024-07-25T19:57:37.010000"],["2024-07-25T19:57:38.010000"],["2024-07-25T19:57:39.010000"],["2024-07-25T19:57:40.010000"],["2024-07-25T19:57:41.010000"],["2024-07-25T19:57:42.010000"],["2024-07-25T19:57:43.010000"],["2024-07-25T19:57:44.010000"],["2024-07-25T19:57:45.010000"],["2024-07-25T19:57:46.010000"],["2024-07-25T19:57:47.010000"],["2024-07-25T19:57:48.010000"],["2024-07-25T19:57:49.010000"],["2024-07-25T19:57:50.010000"],["2024-07-25T19:57:51.010000"],["2024-07-25T19:57:52.010000"],["2024-07-25T19:57:53.010000"],["2024-07-25T19:57:54.010000"],["2024-07-25T19:57:55.010000"],["2024-07-25T19:57:56.010000"],["2024-07-25T19:57:57.010000"],["2024-07-25T19:57:58.010000"],["2024-07-25T19:57:59.010000"],["2024-07-25T19:58:00.010000"],["2024-07-25T19:58:01.010000"],["2024-07-25T19:58:02.010000"],["2024-07-25T19:58:03.010000"],["2024-07-25T19:58:04.010000"],["2024-07-25T19:58:05.010000"],["2024-07-25T19:58:06.010000"],["2024-07-25T19:58:07.010000"],["2024-07-25T19:58:08.010000"],["2024-07-25T19:58:09.010000"],["2024-07-25T19:58:10.010000"],["2024-07-25T19:58:11.010000"],["2024-07-25T19:58:12.010000"],["2024-07-25T19:58:13.010000"],["2024-07-25T19:58:14.010000"],["2024-07-25T19:58:15.010000"],["2024-07-25T19:58:16.010000"],["2024-07-25T19:58:17.010000"],["2024-07-25T19:58:18.010000"],["2024-07-25T19:58:19.010000"],["2024-07-25T19:58:20.010000"],["2024-07-25T19:58:21.010000"],["2024-07-25T19:58:22.010000"],["2024-07-25T19:58:23.010000"],["2024-07-25T19:58:24.010000"],["2024-07-25T19:58:25.010000"],["2024-07-25T19:58:26.010000"],["2024-07-25T19:58:27.010000"],["2024-07-25T19:58:28.010000"],["2024-07-25T19:58:29.010000"],["2024-07-25T19:58:30.010000"],["2024-07-25T19:58:31.010000"],["2024-07-25T19:58:32.010000"],["2024-07-25T19:58:33.010000"],["2024-07-25T19:58:34.010000"],["2024-07-25T19:58:35.010000"],["2024-07-25T19:58:36.010000"],["2024-07-25T19:58:37.010000"],["2024-07-25T19:58:38.010000"],["2024-07-25T19:58:39.010000"],["2024-07-25T19:58:40.010000"],["2024-07-25T19:58:41.010000"],["2024-07-25T19:58:42.010000"],["2024-07-25T19:58:43.010000"],["2024-07-25T19:58:44.010000"],["2024-07-25T19:58:45.010000"],["2024-07-25T19:58:46.010000"],["2024-07-25T19:58:47.010000"],["2024-07-25T19:58:48.010000"],["2024-07-25T19:58:49.010000"],["2024-07-25T19:58:50.010000"],["2024-07-25T19:58:51.010000"],["2024-07-25T19:58:52.010000"],["2024-07-25T19:58:53.010000"],["2024-07-25T19:58:54.010000"],["2024-07-25T19:58:55.010000"],["2024-07-25T19:58:56.010000"],["2024-07-25T19:58:57.010000"],["2024-07-25T19:58:58.010000"],["2024-07-25T19:58:59.010000"],["2024-07-25T19:59:00.010000"],["2024-07-25T19:59:01.010000"],["2024-07-25T19:59:02.010000"],["2024-07-25T19:59:03.010000"],["2024-07-25T19:59:04.010000"],["2024-07-25T19:59:05.010000"],["2024-07-25T19:59:06.010000"],["2024-07-25T19:59:07.010000"],["2024-07-25T19:59:08.010000"],["2024-07-25T19:59:09.010000"],["2024-07-25T19:59:10.010000"],["2024-07-25T19:59:11.010000"],["2024-07-25T19:59:12.010000"],["2024-07-25T19:59:13.010000"],["2024-07-25T19:59:14.010000"],["2024-07-25T19:59:15.010000"],["2024-07-25T19:59:16.010000"],["2024-07-25T19:59:17.010000"],["2024-07-25T19:59:18.010000"],["2024-07-25T19:59:19.010000"],["2024-07-25T19:59:20.010000"],["2024-07-25T19:59:21.010000"],["2024-07-25T19:59:22.010000"],["2024-07-25T19:59:23.010000"],["2024-07-25T19:59:24.010000"],["2024-07-25T19:59:25.010000"],["2024-07-25T19:59:26.010000"],["2024-07-25T19:59:27.010000"],["2024-07-25T19:59:28.010000"],["2024-07-25T19:59:29.010000"],["2024-07-25T19:59:30.010000"],["2024-07-25T19:59:31.010000"],["2024-07-25T19:59:32.010000"],["2024-07-25T19:59:33.010000"],["2024-07-25T19:59:34.010000"],["2024-07-25T19:59:35.010000"],["2024-07-25T19:59:36.010000"],["2024-07-25T19:59:37.010000"],["2024-07-25T19:59:38.010000"],["2024-07-25T19:59:39.010000"],["2024-07-25T19:59:40.010000"],["2024-07-25T19:59:41.010000"],["2024-07-25T19:59:42.010000"],["2024-07-25T19:59:43.010000"],["2024-07-25T19:59:44.010000"],["2024-07-25T19:59:45.010000"],["2024-07-25T19:59:46.010000"],["2024-07-25T19:59:47.010000"],["2024-07-25T19:59:48.010000"],["2024-07-25T19:59:49.010000"],["2024-07-25T19:59:50.010000"],["2024-07-25T19:59:51.010000"],["2024-07-25T19:59:52.010000"],["2024-07-25T19:59:53.010000"],["2024-07-25T19:59:54.010000"],["2024-07-25T19:59:55.010000"],["2024-07-25T19:59:56.010000"],["2024-07-25T19:59:57.010000"],["2024-07-25T19:59:58.010000"],["2024-07-25T19:59:59.010000"],["2024-07-25T20:00:00.010000"],["2024-07-25T20:00:01.010000"],["2024-07-25T20:00:02.010000"],["2024-07-25T20:00:03.010000"],["2024-07-25T20:00:04.010000"],["2024-07-25T20:00:05.010000"],["2024-07-25T20:00:06.010000"],["2024-07-25T20:00:07.010000"],["2024-07-25T20:00:08.010000"],["2024-07-25T20:00:09.010000"],["2024-07-25T20:00:10.010000"],["2024-07-25T20:00:11.010000"],["2024-07-25T20:00:12.010000"],["2024-07-25T20:00:13.010000"],["2024-07-25T20:00:14.010000"],["2024-07-25T20:00:15.010000"],["2024-07-25T20:00:16.010000"],["2024-07-25T20:00:17.010000"],["2024-07-25T20:00:18.010000"],["2024-07-25T20:00:19.010000"],["2024-07-25T20:00:20.010000"],["2024-07-25T20:00:21.010000"],["2024-07-25T20:00:22.010000"],["2024-07-25T20:00:23.010000"],["2024-07-25T20:00:24.010000"],["2024-07-25T20:00:25.010000"],["2024-07-25T20:00:26.010000"],["2024-07-25T20:00:27.010000"],["2024-07-25T20:00:28.010000"],["2024-07-25T20:00:29.010000"],["2024-07-25T20:00:30.010000"],["2024-07-25T20:00:31.010000"],["2024-07-25T20:00:32.010000"],["2024-07-25T20:00:33.010000"],["2024-07-25T20:00:34.010000"],["2024-07-25T20:00:35.010000"],["2024-07-25T20:00:36.010000"],["2024-07-25T20:00:37.010000"],["2024-07-25T20:00:38.010000"],["2024-07-25T20:00:39.010000"],["2024-07-25T20:00:40.010000"],["2024-07-25T20:00:41.010000"],["2024-07-25T20:00:42.010000"],["2024-07-25T20:00:43.010000"],["2024-07-25T20:00:44.010000"],["2024-07-25T20:00:45.010000"],["2024-07-25T20:00:46.010000"],["2024-07-25T20:00:47.010000"],["2024-07-25T20:00:48.010000"],["2024-07-25T20:00:49.010000"],["2024-07-25T20:00:50.010000"],["2024-07-25T20:00:51.010000"],["2024-07-25T20:00:52.010000"],["2024-07-25T20:00:53.010000"],["2024-07-25T20:00:54.010000"],["2024-07-25T20:00:55.010000"],["2024-07-25T20:00:56.010000"],["2024-07-25T20:00:57.010000"],["2024-07-25T20:00:58.010000"],["2024-07-25T20:00:59.010000"],["2024-07-25T20:01:00.010000"],["2024-07-25T20:01:01.010000"],["2024-07-25T20:01:02.010000"],["2024-07-25T20:01:03.010000"],["2024-07-25T20:01:04.010000"],["2024-07-25T20:01:05.010000"],["2024-07-25T20:01:06.010000"],["2024-07-25T20:01:07.010000"],["2024-07-25T20:01:08.010000"],["2024-07-25T20:01:09.010000"],["2024-07-25T20:01:10.010000"],["2024-07-25T20:01:11.010000"],["2024-07-25T20:01:12.010000"],["2024-07-25T20:01:13.010000"],["2024-07-25T20:01:14.010000"],["2024-07-25T20:01:15.010000"],["2024-07-25T20:01:16.010000"],["2024-07-25T20:01:17.010000"],["2024-07-25T20:01:18.010000"],["2024-07-25T20:01:19.010000"],["2024-07-25T20:01:20.010000"],["2024-07-25T20:01:21.010000"],["2024-07-25T20:01:22.010000"],["2024-07-25T20:01:23.010000"],["2024-07-25T20:01:24.010000"],["2024-07-25T20:01:25.010000"],["2024-07-25T20:01:26.010000"],["2024-07-25T20:01:27.010000"],["2024-07-25T20:01:28.010000"],["2024-07-25T20:01:29.010000"],["2024-07-25T20:01:30.010000"],["2024-07-25T20:01:31.010000"],["2024-07-25T20:01:32.010000"],["2024-07-25T20:01:33.010000"],["2024-07-25T20:01:34.010000"],["2024-07-25T20:01:35.010000"],["2024-07-25T20:01:36.010000"],["2024-07-25T20:01:37.010000"],["2024-07-25T20:01:38.010000"],["2024-07-25T20:01:39.010000"],["2024-07-25T20:01:40.010000"],["2024-07-25T20:01:41.010000"],["2024-07-25T20:01:42.010000"],["2024-07-25T20:01:43.010000"],["2024-07-25T20:01:44.010000"],["2024-07-25T20:01:45.010000"],["2024-07-25T20:01:46.010000"],["2024-07-25T20:01:47.010000"],["2024-07-25T20:01:48.010000"],["2024-07-25T20:01:49.010000"],["2024-07-25T20:01:50.010000"],["2024-07-25T20:01:51.010000"],["2024-07-25T20:01:52.010000"],["2024-07-25T20:01:53.010000"],["2024-07-25T20:01:54.010000"],["2024-07-25T20:01:55.010000"],["2024-07-25T20:01:56.010000"],["2024-07-25T20:01:57.010000"],["2024-07-25T20:01:58.010000"],["2024-07-25T20:01:59.010000"],["2024-07-25T20:02:00.010000"],["2024-07-25T20:02:01.010000"],["2024-07-25T20:02:02.010000"],["2024-07-25T20:02:03.010000"],["2024-07-25T20:02:04.010000"],["2024-07-25T20:02:05.010000"],["2024-07-25T20:02:06.010000"],["2024-07-25T20:02:07.010000"],["2024-07-25T20:02:08.010000"],["2024-07-25T20:02:09.010000"],["2024-07-25T20:02:10.010000"],["2024-07-25T20:02:11.010000"],["2024-07-25T20:02:12.010000"],["2024-07-25T20:02:13.010000"],["2024-07-25T20:02:14.010000"],["2024-07-25T20:02:15.010000"],["2024-07-25T20:02:16.010000"],["2024-07-25T20:02:17.010000"],["2024-07-25T20:02:18.010000"],["2024-07-25T20:02:19.010000"],["2024-07-25T20:02:20.010000"],["2024-07-25T20:02:21.010000"],["2024-07-25T20:02:22.010000"],["2024-07-25T20:02:23.010000"],["2024-07-25T20:02:24.010000"],["2024-07-25T20:02:25.010000"],["2024-07-25T20:02:26.010000"],["2024-07-25T20:02:27.010000"],["2024-07-25T20:02:28.010000"],["2024-07-25T20:02:29.010000"],["2024-07-25T20:02:30.010000"],["2024-07-25T20:02:31.010000"],["2024-07-25T20:02:32.010000"],["2024-07-25T20:02:33.010000"],["2024-07-25T20:02:34.010000"],["2024-07-25T20:02:35.010000"],["2024-07-25T20:02:36.010000"],["2024-07-25T20:02:37.010000"],["2024-07-25T20:02:38.010000"],["2024-07-25T20:02:39.010000"],["2024-07-25T20:02:40.010000"],["2024-07-25T20:02:41.010000"],["2024-07-25T20:02:42.010000"],["2024-07-25T20:02:43.010000"],["2024-07-25T20:02:44.010000"],["2024-07-25T20:02:45.010000"],["2024-07-25T20:02:46.010000"],["2024-07-25T20:02:47.010000"],["2024-07-25T20:02:48.010000"],["2024-07-25T20:02:49.010000"],["2024-07-25T20:02:50.010000"],["2024-07-25T20:02:51.010000"],["2024-07-25T20:02:52.010000"],["2024-07-25T20:02:53.010000"],["2024-07-25T20:02:54.010000"],["2024-07-25T20:02:55.010000"],["2024-07-25T20:02:56.010000"],["2024-07-25T20:02:57.010000"],["2024-07-25T20:02:58.010000"],["2024-07-25T20:02:59.010000"],["2024-07-25T20:03:00.010000"],["2024-07-25T20:03:01.010000"],["2024-07-25T20:03:02.010000"],["2024-07-25T20:03:03.010000"],["2024-07-25T20:03:04.010000"],["2024-07-25T20:03:05.010000"],["2024-07-25T20:03:06.010000"],["2024-07-25T20:03:07.010000"],["2024-07-25T20:03:08.010000"],["2024-07-25T20:03:09.010000"],["2024-07-25T20:03:10.010000"],["2024-07-25T20:03:11.010000"],["2024-07-25T20:03:12.010000"],["2024-07-25T20:03:13.010000"],["2024-07-25T20:03:14.010000"],["2024-07-25T20:03:15.010000"],["2024-07-25T20:03:16.010000"],["2024-07-25T20:03:17.010000"],["2024-07-25T20:03:18.010000"],["2024-07-25T20:03:19.010000"],["2024-07-25T20:03:20.010000"],["2024-07-25T20:03:21.010000"],["2024-07-25T20:03:22.010000"],["2024-07-25T20:03:23.010000"],["2024-07-25T20:03:24.010000"],["2024-07-25T20:03:25.010000"],["2024-07-25T20:03:26.010000"],["2024-07-25T20:03:27.010000"],["2024-07-25T20:03:28.010000"],["2024-07-25T20:03:29.010000"],["2024-07-25T20:03:30.010000"],["2024-07-25T20:03:31.010000"],["2024-07-25T20:03:32.010000"],["2024-07-25T20:03:33.010000"],["2024-07-25T20:03:34.010000"],["2024-07-25T20:03:35.010000"],["2024-07-25T20:03:36.010000"],["2024-07-25T20:03:37.010000"],["2024-07-25T20:03:38.010000"],["2024-07-25T20:03:39.010000"],["2024-07-25T20:03:40.010000"],["2024-07-25T20:03:41.010000"],["2024-07-25T20:03:42.010000"],["2024-07-25T20:03:43.010000"],["2024-07-25T20:03:44.010000"],["2024-07-25T20:03:45.010000"],["2024-07-25T20:03:46.010000"],["2024-07-25T20:03:47.010000"],["2024-07-25T20:03:48.010000"],["2024-07-25T20:03:49.010000"],["2024-07-25T20:03:50.010000"],["2024-07-25T20:03:51.010000"],["2024-07-25T20:03:52.010000"],["2024-07-25T20:03:53.010000"],["2024-07-25T20:03:54.010000"],["2024-07-25T20:03:55.010000"],["2024-07-25T20:03:56.010000"],["2024-07-25T20:03:57.010000"],["2024-07-25T20:03:58.010000"],["2024-07-25T20:03:59.010000"],["2024-07-25T20:04:00.010000"],["2024-07-25T20:04:01.010000"],["2024-07-25T20:04:02.010000"],["2024-07-25T20:04:03.010000"],["2024-07-25T20:04:04.010000"],["2024-07-25T20:04:05.010000"],["2024-07-25T20:04:06.010000"],["2024-07-25T20:04:07.010000"],["2024-07-25T20:04:08.010000"],["2024-07-25T20:04:09.010000"],["2024-07-25T20:04:10.010000"],["2024-07-25T20:04:11.010000"],["2024-07-25T20:04:12.010000"],["2024-07-25T20:04:13.010000"],["2024-07-25T20:04:14.010000"],["2024-07-25T20:04:15.010000"],["2024-07-25T20:04:16.010000"],["2024-07-25T20:04:17.010000"],["2024-07-25T20:04:18.010000"],["2024-07-25T20:04:19.010000"],["2024-07-25T20:04:20.010000"],["2024-07-25T20:04:21.010000"],["2024-07-25T20:04:22.010000"],["2024-07-25T20:04:23.010000"],["2024-07-25T20:04:24.010000"],["2024-07-25T20:04:25.010000"],["2024-07-25T20:04:26.010000"],["2024-07-25T20:04:27.010000"],["2024-07-25T20:04:28.010000"],["2024-07-25T20:04:29.010000"],["2024-07-25T20:04:30.010000"],["2024-07-25T20:04:31.010000"],["2024-07-25T20:04:32.010000"],["2024-07-25T20:04:33.010000"],["2024-07-25T20:04:34.010000"],["2024-07-25T20:04:35.010000"],["2024-07-25T20:04:36.010000"],["2024-07-25T20:04:37.010000"],["2024-07-25T20:04:38.010000"],["2024-07-25T20:04:39.010000"],["2024-07-25T20:04:40.010000"],["2024-07-25T20:04:41.010000"],["2024-07-25T20:04:42.010000"],["2024-07-25T20:04:43.010000"],["2024-07-25T20:04:44.010000"],["2024-07-25T20:04:45.010000"],["2024-07-25T20:04:46.010000"],["2024-07-25T20:04:47.010000"],["2024-07-25T20:04:48.010000"],["2024-07-25T20:04:49.010000"],["2024-07-25T20:04:50.010000"],["2024-07-25T20:04:51.010000"],["2024-07-25T20:04:52.010000"],["2024-07-25T20:04:53.010000"],["2024-07-25T20:04:54.010000"],["2024-07-25T20:04:55.010000"],["2024-07-25T20:04:56.010000"],["2024-07-25T20:04:57.010000"],["2024-07-25T20:04:58.010000"],["2024-07-25T20:04:59.010000"],["2024-07-25T20:05:00.010000"],["2024-07-25T20:05:01.010000"],["2024-07-25T20:05:02.010000"],["2024-07-25T20:05:03.010000"],["2024-07-25T20:05:04.010000"],["2024-07-25T20:05:05.010000"],["2024-07-25T20:05:06.010000"],["2024-07-25T20:05:07.010000"],["2024-07-25T20:05:08.010000"],["2024-07-25T20:05:09.010000"],["2024-07-25T20:05:10.010000"],["2024-07-25T20:05:11.010000"],["2024-07-25T20:05:12.010000"],["2024-07-25T20:05:13.010000"],["2024-07-25T20:05:14.010000"],["2024-07-25T20:05:15.010000"],["2024-07-25T20:05:16.010000"],["2024-07-25T20:05:17.010000"],["2024-07-25T20:05:18.010000"],["2024-07-25T20:05:19.010000"],["2024-07-25T20:05:20.010000"],["2024-07-25T20:05:21.010000"],["2024-07-25T20:05:22.010000"],["2024-07-25T20:05:23.010000"],["2024-07-25T20:05:24.010000"],["2024-07-25T20:05:25.010000"],["2024-07-25T20:05:26.010000"],["2024-07-25T20:05:27.010000"],["2024-07-25T20:05:28.010000"],["2024-07-25T20:05:29.010000"],["2024-07-25T20:05:30.010000"],["2024-07-25T20:05:31.010000"],["2024-07-25T20:05:32.010000"],["2024-07-25T20:05:33.010000"],["2024-07-25T20:05:34.010000"],["2024-07-25T20:05:35.010000"],["2024-07-25T20:05:36.010000"],["2024-07-25T20:05:37.010000"],["2024-07-25T20:05:38.010000"],["2024-07-25T20:05:39.010000"],["2024-07-25T20:05:40.010000"],["2024-07-25T20:05:41.010000"],["2024-07-25T20:05:42.010000"],["2024-07-25T20:05:43.010000"],["2024-07-25T20:05:44.010000"],["2024-07-25T20:05:45.010000"],["2024-07-25T20:05:46.010000"],["2024-07-25T20:05:47.010000"],["2024-07-25T20:05:48.010000"],["2024-07-25T20:05:49.010000"],["2024-07-25T20:05:50.010000"],["2024-07-25T20:05:51.010000"],["2024-07-25T20:05:52.010000"],["2024-07-25T20:05:53.010000"],["2024-07-25T20:05:54.010000"],["2024-07-25T20:05:55.010000"],["2024-07-25T20:05:56.010000"],["2024-07-25T20:05:57.010000"],["2024-07-25T20:05:58.010000"],["2024-07-25T20:05:59.010000"],["2024-07-25T20:06:00.010000"],["2024-07-25T20:06:01.010000"],["2024-07-25T20:06:02.010000"],["2024-07-25T20:06:03.010000"],["2024-07-25T20:06:04.010000"],["2024-07-25T20:06:05.010000"],["2024-07-25T20:06:06.010000"],["2024-07-25T20:06:07.010000"],["2024-07-25T20:06:08.010000"],["2024-07-25T20:06:09.010000"],["2024-07-25T20:06:10.010000"],["2024-07-25T20:06:11.010000"],["2024-07-25T20:06:12.010000"],["2024-07-25T20:06:13.010000"],["2024-07-25T20:06:14.010000"],["2024-07-25T20:06:15.010000"],["2024-07-25T20:06:16.010000"],["2024-07-25T20:06:17.010000"],["2024-07-25T20:06:18.010000"],["2024-07-25T20:06:19.010000"],["2024-07-25T20:06:20.010000"],["2024-07-25T20:06:21.010000"],["2024-07-25T20:06:22.010000"],["2024-07-25T20:06:23.010000"],["2024-07-25T20:06:24.010000"],["2024-07-25T20:06:25.010000"],["2024-07-25T20:06:26.010000"],["2024-07-25T20:06:27.010000"],["2024-07-25T20:06:28.010000"],["2024-07-25T20:06:29.010000"],["2024-07-25T20:06:30.010000"],["2024-07-25T20:06:31.010000"],["2024-07-25T20:06:32.010000"],["2024-07-25T20:06:33.010000"],["2024-07-25T20:06:34.010000"],["2024-07-25T20:06:35.010000"],["2024-07-25T20:06:36.010000"],["2024-07-25T20:06:37.010000"],["2024-07-25T20:06:38.010000"],["2024-07-25T20:06:39.010000"],["2024-07-25T20:06:40.010000"],["2024-07-25T20:06:41.010000"],["2024-07-25T20:06:42.010000"],["2024-07-25T20:06:43.010000"],["2024-07-25T20:06:44.010000"],["2024-07-25T20:06:45.010000"],["2024-07-25T20:06:46.010000"],["2024-07-25T20:06:47.010000"],["2024-07-25T20:06:48.010000"],["2024-07-25T20:06:49.010000"],["2024-07-25T20:06:50.010000"],["2024-07-25T20:06:51.010000"],["2024-07-25T20:06:52.010000"],["2024-07-25T20:06:53.010000"],["2024-07-25T20:06:54.010000"],["2024-07-25T20:06:55.010000"],["2024-07-25T20:06:56.010000"],["2024-07-25T20:06:57.010000"],["2024-07-25T20:06:58.010000"],["2024-07-25T20:06:59.010000"],["2024-07-25T20:07:00.010000"],["2024-07-25T20:07:01.010000"],["2024-07-25T20:07:02.010000"],["2024-07-25T20:07:03.010000"],["2024-07-25T20:07:04.010000"],["2024-07-25T20:07:05.010000"],["2024-07-25T20:07:06.010000"],["2024-07-25T20:07:07.010000"],["2024-07-25T20:07:08.010000"],["2024-07-25T20:07:09.010000"],["2024-07-25T20:07:10.010000"],["2024-07-25T20:07:11.010000"],["2024-07-25T20:07:12.010000"],["2024-07-25T20:07:13.010000"],["2024-07-25T20:07:14.010000"],["2024-07-25T20:07:15.010000"],["2024-07-25T20:07:16.010000"],["2024-07-25T20:07:17.010000"],["2024-07-25T20:07:18.010000"],["2024-07-25T20:07:19.010000"],["2024-07-25T20:07:20.010000"],["2024-07-25T20:07:21.010000"],["2024-07-25T20:07:22.010000"],["2024-07-25T20:07:23.010000"],["2024-07-25T20:07:24.010000"],["2024-07-25T20:07:25.010000"],["2024-07-25T20:07:26.010000"],["2024-07-25T20:07:27.010000"],["2024-07-25T20:07:28.010000"],["2024-07-25T20:07:29.010000"],["2024-07-25T20:07:30.010000"],["2024-07-25T20:07:31.010000"],["2024-07-25T20:07:32.010000"],["2024-07-25T20:07:33.010000"],["2024-07-25T20:07:34.010000"],["2024-07-25T20:07:35.010000"],["2024-07-25T20:07:36.010000"],["2024-07-25T20:07:37.010000"],["2024-07-25T20:07:38.010000"],["2024-07-25T20:07:39.010000"],["2024-07-25T20:07:40.010000"],["2024-07-25T20:07:41.010000"],["2024-07-25T20:07:42.010000"],["2024-07-25T20:07:43.010000"],["2024-07-25T20:07:44.010000"],["2024-07-25T20:07:45.010000"],["2024-07-25T20:07:46.010000"],["2024-07-25T20:07:47.010000"],["2024-07-25T20:07:48.010000"],["2024-07-25T20:07:49.010000"],["2024-07-25T20:07:50.010000"],["2024-07-25T20:07:51.010000"],["2024-07-25T20:07:52.010000"],["2024-07-25T20:07:53.010000"],["2024-07-25T20:07:54.010000"],["2024-07-25T20:07:55.010000"],["2024-07-25T20:07:56.010000"],["2024-07-25T20:07:57.010000"],["2024-07-25T20:07:58.010000"],["2024-07-25T20:07:59.010000"],["2024-07-25T20:08:00.010000"],["2024-07-25T20:08:01.010000"],["2024-07-25T20:08:02.010000"],["2024-07-25T20:08:03.010000"],["2024-07-25T20:08:04.010000"],["2024-07-25T20:08:05.010000"],["2024-07-25T20:08:06.010000"],["2024-07-25T20:08:07.010000"],["2024-07-25T20:08:08.010000"],["2024-07-25T20:08:09.010000"],["2024-07-25T20:08:10.010000"],["2024-07-25T20:08:11.010000"],["2024-07-25T20:08:12.010000"],["2024-07-25T20:08:13.010000"],["2024-07-25T20:08:14.010000"],["2024-07-25T20:08:15.010000"],["2024-07-25T20:08:16.010000"],["2024-07-25T20:08:17.010000"],["2024-07-25T20:08:18.010000"],["2024-07-25T20:08:19.010000"],["2024-07-25T20:08:20.010000"],["2024-07-25T20:08:21.010000"],["2024-07-25T20:08:22.010000"],["2024-07-25T20:08:23.010000"],["2024-07-25T20:08:24.010000"],["2024-07-25T20:08:25.010000"],["2024-07-25T20:08:26.010000"],["2024-07-25T20:08:27.010000"],["2024-07-25T20:08:28.010000"],["2024-07-25T20:08:29.010000"],["2024-07-25T20:08:30.010000"],["2024-07-25T20:08:31.010000"],["2024-07-25T20:08:32.010000"],["2024-07-25T20:08:33.010000"],["2024-07-25T20:08:34.010000"],["2024-07-25T20:08:35.010000"],["2024-07-25T20:08:36.010000"],["2024-07-25T20:08:37.010000"],["2024-07-25T20:08:38.010000"],["2024-07-25T20:08:39.010000"],["2024-07-25T20:08:40.010000"],["2024-07-25T20:08:41.010000"],["2024-07-25T20:08:42.010000"],["2024-07-25T20:08:43.010000"],["2024-07-25T20:08:44.010000"],["2024-07-25T20:08:45.010000"],["2024-07-25T20:08:46.010000"],["2024-07-25T20:08:47.010000"],["2024-07-25T20:08:48.010000"],["2024-07-25T20:08:49.010000"],["2024-07-25T20:08:50.010000"],["2024-07-25T20:08:51.010000"],["2024-07-25T20:08:52.010000"],["2024-07-25T20:08:53.010000"],["2024-07-25T20:08:54.010000"],["2024-07-25T20:08:55.010000"],["2024-07-25T20:08:56.010000"],["2024-07-25T20:08:57.010000"],["2024-07-25T20:08:58.010000"],["2024-07-25T20:08:59.010000"],["2024-07-25T20:09:00.010000"],["2024-07-25T20:09:01.010000"],["2024-07-25T20:09:02.010000"],["2024-07-25T20:09:03.010000"],["2024-07-25T20:09:04.010000"],["2024-07-25T20:09:05.010000"],["2024-07-25T20:09:06.010000"],["2024-07-25T20:09:07.010000"],["2024-07-25T20:09:08.010000"],["2024-07-25T20:09:09.010000"],["2024-07-25T20:09:10.010000"],["2024-07-25T20:09:11.010000"],["2024-07-25T20:09:12.010000"],["2024-07-25T20:09:13.010000"],["2024-07-25T20:09:14.010000"],["2024-07-25T20:09:15.010000"],["2024-07-25T20:09:16.010000"],["2024-07-25T20:09:17.010000"],["2024-07-25T20:09:18.010000"],["2024-07-25T20:09:19.010000"],["2024-07-25T20:09:20.010000"],["2024-07-25T20:09:21.010000"],["2024-07-25T20:09:22.010000"],["2024-07-25T20:09:23.010000"],["2024-07-25T20:09:24.010000"],["2024-07-25T20:09:25.010000"],["2024-07-25T20:09:26.010000"],["2024-07-25T20:09:27.010000"],["2024-07-25T20:09:28.010000"],["2024-07-25T20:09:29.010000"],["2024-07-25T20:09:30.010000"],["2024-07-25T20:09:31.010000"],["2024-07-25T20:09:32.010000"],["2024-07-25T20:09:33.010000"],["2024-07-25T20:09:34.010000"],["2024-07-25T20:09:35.010000"],["2024-07-25T20:09:36.010000"],["2024-07-25T20:09:37.010000"],["2024-07-25T20:09:38.010000"],["2024-07-25T20:09:39.010000"],["2024-07-25T20:09:40.010000"],["2024-07-25T20:09:41.010000"],["2024-07-25T20:09:42.010000"],["2024-07-25T20:09:43.010000"],["2024-07-25T20:09:44.010000"],["2024-07-25T20:09:45.010000"],["2024-07-25T20:09:46.010000"],["2024-07-25T20:09:47.010000"],["2024-07-25T20:09:48.010000"],["2024-07-25T20:09:49.010000"],["2024-07-25T20:09:50.010000"],["2024-07-25T20:09:51.010000"],["2024-07-25T20:09:52.010000"],["2024-07-25T20:09:53.010000"],["2024-07-25T20:09:54.010000"],["2024-07-25T20:09:55.010000"],["2024-07-25T20:09:56.010000"],["2024-07-25T20:09:57.010000"],["2024-07-25T20:09:58.010000"],["2024-07-25T20:09:59.010000"],["2024-07-25T20:10:00.010000"],["2024-07-25T20:10:01.010000"],["2024-07-25T20:10:02.010000"],["2024-07-25T20:10:03.010000"],["2024-07-25T20:10:04.010000"],["2024-07-25T20:10:05.010000"],["2024-07-25T20:10:06.010000"],["2024-07-25T20:10:07.010000"],["2024-07-25T20:10:08.010000"],["2024-07-25T20:10:09.010000"],["2024-07-25T20:10:10.010000"],["2024-07-25T20:10:11.010000"],["2024-07-25T20:10:12.010000"],["2024-07-25T20:10:13.010000"],["2024-07-25T20:10:14.010000"],["2024-07-25T20:10:15.010000"],["2024-07-25T20:10:16.010000"],["2024-07-25T20:10:17.010000"],["2024-07-25T20:10:18.010000"],["2024-07-25T20:10:19.010000"],["2024-07-25T20:10:20.010000"],["2024-07-25T20:10:21.010000"],["2024-07-25T20:10:22.010000"],["2024-07-25T20:10:23.010000"],["2024-07-25T20:10:24.010000"],["2024-07-25T20:10:25.010000"],["2024-07-25T20:10:26.010000"],["2024-07-25T20:10:27.010000"],["2024-07-25T20:10:28.010000"],["2024-07-25T20:10:29.010000"],["2024-07-25T20:10:30.010000"],["2024-07-25T20:10:31.010000"],["2024-07-25T20:10:32.010000"],["2024-07-25T20:10:33.010000"],["2024-07-25T20:10:34.010000"],["2024-07-25T20:10:35.010000"],["2024-07-25T20:10:36.010000"],["2024-07-25T20:10:37.010000"],["2024-07-25T20:10:38.010000"],["2024-07-25T20:10:39.010000"],["2024-07-25T20:10:40.010000"],["2024-07-25T20:10:41.010000"],["2024-07-25T20:10:42.010000"],["2024-07-25T20:10:43.010000"],["2024-07-25T20:10:44.010000"],["2024-07-25T20:10:45.010000"],["2024-07-25T20:10:46.010000"],["2024-07-25T20:10:47.010000"],["2024-07-25T20:10:48.010000"],["2024-07-25T20:10:49.010000"],["2024-07-25T20:10:50.010000"],["2024-07-25T20:10:51.010000"],["2024-07-25T20:10:52.010000"],["2024-07-25T20:10:53.010000"],["2024-07-25T20:10:54.010000"],["2024-07-25T20:10:55.010000"],["2024-07-25T20:10:56.010000"],["2024-07-25T20:10:57.010000"],["2024-07-25T20:10:58.010000"],["2024-07-25T20:10:59.010000"],["2024-07-25T20:11:00.010000"],["2024-07-25T20:11:01.010000"],["2024-07-25T20:11:02.010000"],["2024-07-25T20:11:03.010000"],["2024-07-25T20:11:04.010000"],["2024-07-25T20:11:05.010000"],["2024-07-25T20:11:06.010000"],["2024-07-25T20:11:07.010000"],["2024-07-25T20:11:08.010000"],["2024-07-25T20:11:09.010000"],["2024-07-25T20:11:10.010000"],["2024-07-25T20:11:11.010000"],["2024-07-25T20:11:12.010000"],["2024-07-25T20:11:13.010000"],["2024-07-25T20:11:14.010000"],["2024-07-25T20:11:15.010000"],["2024-07-25T20:11:16.010000"],["2024-07-25T20:11:17.010000"],["2024-07-25T20:11:18.010000"],["2024-07-25T20:11:19.010000"],["2024-07-25T20:11:20.010000"],["2024-07-25T20:11:21.010000"],["2024-07-25T20:11:22.010000"],["2024-07-25T20:11:23.010000"],["2024-07-25T20:11:24.010000"],["2024-07-25T20:11:25.010000"],["2024-07-25T20:11:26.010000"],["2024-07-25T20:11:27.010000"],["2024-07-25T20:11:28.010000"],["2024-07-25T20:11:29.010000"],["2024-07-25T20:11:30.010000"],["2024-07-25T20:11:31.010000"],["2024-07-25T20:11:32.010000"],["2024-07-25T20:11:33.010000"],["2024-07-25T20:11:34.010000"],["2024-07-25T20:11:35.010000"],["2024-07-25T20:11:36.010000"],["2024-07-25T20:11:37.010000"],["2024-07-25T20:11:38.010000"],["2024-07-25T20:11:39.010000"],["2024-07-25T20:11:40.010000"],["2024-07-25T20:11:41.010000"],["2024-07-25T20:11:42.010000"],["2024-07-25T20:11:43.010000"],["2024-07-25T20:11:44.010000"],["2024-07-25T20:11:45.010000"],["2024-07-25T20:11:46.010000"],["2024-07-25T20:11:47.010000"],["2024-07-25T20:11:48.010000"],["2024-07-25T20:11:49.010000"],["2024-07-25T20:11:50.010000"],["2024-07-25T20:11:51.010000"],["2024-07-25T20:11:52.010000"],["2024-07-25T20:11:53.010000"],["2024-07-25T20:11:54.010000"],["2024-07-25T20:11:55.010000"],["2024-07-25T20:11:56.010000"],["2024-07-25T20:11:57.010000"],["2024-07-25T20:11:58.010000"],["2024-07-25T20:11:59.010000"],["2024-07-25T20:12:00.010000"],["2024-07-25T20:12:01.010000"],["2024-07-25T20:12:02.010000"],["2024-07-25T20:12:03.010000"],["2024-07-25T20:12:04.010000"],["2024-07-25T20:12:05.010000"],["2024-07-25T20:12:06.010000"],["2024-07-25T20:12:07.010000"],["2024-07-25T20:12:08.010000"],["2024-07-25T20:12:09.010000"],["2024-07-25T20:12:10.010000"],["2024-07-25T20:12:11.010000"],["2024-07-25T20:12:12.010000"],["2024-07-25T20:12:13.010000"],["2024-07-25T20:12:14.010000"],["2024-07-25T20:12:15.010000"],["2024-07-25T20:12:16.010000"],["2024-07-25T20:12:17.010000"],["2024-07-25T20:12:18.010000"],["2024-07-25T20:12:19.010000"],["2024-07-25T20:12:20.010000"],["2024-07-25T20:12:21.010000"],["2024-07-25T20:12:22.010000"],["2024-07-25T20:12:23.010000"],["2024-07-25T20:12:24.010000"],["2024-07-25T20:12:25.010000"],["2024-07-25T20:12:26.010000"],["2024-07-25T20:12:27.010000"],["2024-07-25T20:12:28.010000"],["2024-07-25T20:12:29.010000"],["2024-07-25T20:12:30.010000"],["2024-07-25T20:12:31.010000"],["2024-07-25T20:12:32.010000"],["2024-07-25T20:12:33.010000"],["2024-07-25T20:12:34.010000"],["2024-07-25T20:12:35.010000"],["2024-07-25T20:12:36.010000"],["2024-07-25T20:12:37.010000"],["2024-07-25T20:12:38.010000"],["2024-07-25T20:12:39.010000"],["2024-07-25T20:12:40.010000"],["2024-07-25T20:12:41.010000"],["2024-07-25T20:12:42.010000"],["2024-07-25T20:12:43.010000"],["2024-07-25T20:12:44.010000"],["2024-07-25T20:12:45.010000"],["2024-07-25T20:12:46.010000"],["2024-07-25T20:12:47.010000"],["2024-07-25T20:12:48.010000"],["2024-07-25T20:12:49.010000"],["2024-07-25T20:12:50.010000"],["2024-07-25T20:12:51.010000"],["2024-07-25T20:12:52.010000"],["2024-07-25T20:12:53.010000"],["2024-07-25T20:12:54.010000"],["2024-07-25T20:12:55.010000"],["2024-07-25T20:12:56.010000"],["2024-07-25T20:12:57.010000"],["2024-07-25T20:12:58.010000"],["2024-07-25T20:12:59.010000"],["2024-07-25T20:13:00.010000"],["2024-07-25T20:13:01.010000"],["2024-07-25T20:13:02.010000"],["2024-07-25T20:13:03.010000"],["2024-07-25T20:13:04.010000"],["2024-07-25T20:13:05.010000"],["2024-07-25T20:13:06.010000"],["2024-07-25T20:13:07.010000"],["2024-07-25T20:13:08.010000"],["2024-07-25T20:13:09.010000"],["2024-07-25T20:13:10.010000"],["2024-07-25T20:13:11.010000"],["2024-07-25T20:13:12.010000"],["2024-07-25T20:13:13.010000"],["2024-07-25T20:13:14.010000"],["2024-07-25T20:13:15.010000"],["2024-07-25T20:13:16.010000"],["2024-07-25T20:13:17.010000"],["2024-07-25T20:13:18.010000"],["2024-07-25T20:13:19.010000"],["2024-07-25T20:13:20.010000"],["2024-07-25T20:13:21.010000"],["2024-07-25T20:13:22.010000"],["2024-07-25T20:13:23.010000"],["2024-07-25T20:13:24.010000"],["2024-07-25T20:13:25.010000"],["2024-07-25T20:13:26.010000"],["2024-07-25T20:13:27.010000"],["2024-07-25T20:13:28.010000"],["2024-07-25T20:13:29.010000"],["2024-07-25T20:13:30.010000"],["2024-07-25T20:13:31.010000"],["2024-07-25T20:13:32.010000"],["2024-07-25T20:13:33.010000"],["2024-07-25T20:13:34.010000"],["2024-07-25T20:13:35.010000"],["2024-07-25T20:13:36.010000"],["2024-07-25T20:13:37.010000"],["2024-07-25T20:13:38.010000"],["2024-07-25T20:13:39.010000"],["2024-07-25T20:13:40.010000"],["2024-07-25T20:13:41.010000"],["2024-07-25T20:13:42.010000"],["2024-07-25T20:13:43.010000"],["2024-07-25T20:13:44.010000"],["2024-07-25T20:13:45.010000"],["2024-07-25T20:13:46.010000"],["2024-07-25T20:13:47.010000"],["2024-07-25T20:13:48.010000"],["2024-07-25T20:13:49.010000"],["2024-07-25T20:13:50.010000"],["2024-07-25T20:13:51.010000"],["2024-07-25T20:13:52.010000"],["2024-07-25T20:13:53.010000"],["2024-07-25T20:13:54.010000"],["2024-07-25T20:13:55.010000"],["2024-07-25T20:13:56.010000"],["2024-07-25T20:13:57.010000"],["2024-07-25T20:13:58.010000"],["2024-07-25T20:13:59.010000"],["2024-07-25T20:14:00.010000"],["2024-07-25T20:14:01.010000"],["2024-07-25T20:14:02.010000"],["2024-07-25T20:14:03.010000"],["2024-07-25T20:14:04.010000"],["2024-07-25T20:14:05.010000"],["2024-07-25T20:14:06.010000"],["2024-07-25T20:14:07.010000"],["2024-07-25T20:14:08.010000"],["2024-07-25T20:14:09.010000"],["2024-07-25T20:14:10.010000"],["2024-07-25T20:14:11.010000"],["2024-07-25T20:14:12.010000"],["2024-07-25T20:14:13.010000"],["2024-07-25T20:14:14.010000"],["2024-07-25T20:14:15.010000"],["2024-07-25T20:14:16.010000"],["2024-07-25T20:14:17.010000"],["2024-07-25T20:14:18.010000"],["2024-07-25T20:14:19.010000"],["2024-07-25T20:14:20.010000"],["2024-07-25T20:14:21.010000"],["2024-07-25T20:14:22.010000"],["2024-07-25T20:14:23.010000"],["2024-07-25T20:14:24.010000"],["2024-07-25T20:14:25.010000"],["2024-07-25T20:14:26.010000"],["2024-07-25T20:14:27.010000"],["2024-07-25T20:14:28.010000"],["2024-07-25T20:14:29.010000"],["2024-07-25T20:14:30.010000"],["2024-07-25T20:14:31.010000"],["2024-07-25T20:14:32.010000"],["2024-07-25T20:14:33.010000"],["2024-07-25T20:14:34.010000"],["2024-07-25T20:14:35.010000"],["2024-07-25T20:14:36.010000"],["2024-07-25T20:14:37.010000"],["2024-07-25T20:14:38.010000"],["2024-07-25T20:14:39.010000"],["2024-07-25T20:14:40.010000"],["2024-07-25T20:14:41.010000"],["2024-07-25T20:14:42.010000"],["2024-07-25T20:14:43.010000"],["2024-07-25T20:14:44.010000"],["2024-07-25T20:14:45.010000"],["2024-07-25T20:14:46.010000"],["2024-07-25T20:14:47.010000"],["2024-07-25T20:14:48.010000"],["2024-07-25T20:14:49.010000"],["2024-07-25T20:14:50.010000"],["2024-07-25T20:14:51.010000"],["2024-07-25T20:14:52.010000"],["2024-07-25T20:14:53.010000"],["2024-07-25T20:14:54.010000"],["2024-07-25T20:14:55.010000"],["2024-07-25T20:14:56.010000"],["2024-07-25T20:14:57.010000"],["2024-07-25T20:14:58.010000"],["2024-07-25T20:14:59.010000"],["2024-07-25T20:15:00.010000"],["2024-07-25T20:15:01.010000"],["2024-07-25T20:15:02.010000"],["2024-07-25T20:15:03.010000"],["2024-07-25T20:15:04.010000"],["2024-07-25T20:15:05.010000"],["2024-07-25T20:15:06.010000"],["2024-07-25T20:15:07.010000"],["2024-07-25T20:15:08.010000"],["2024-07-25T20:15:09.010000"],["2024-07-25T20:15:10.010000"],["2024-07-25T20:15:11.010000"],["2024-07-25T20:15:12.010000"],["2024-07-25T20:15:13.010000"],["2024-07-25T20:15:14.010000"],["2024-07-25T20:15:15.010000"],["2024-07-25T20:15:16.010000"],["2024-07-25T20:15:17.010000"],["2024-07-25T20:15:18.010000"],["2024-07-25T20:15:19.010000"],["2024-07-25T20:15:20.010000"],["2024-07-25T20:15:21.010000"],["2024-07-25T20:15:22.010000"],["2024-07-25T20:15:23.010000"],["2024-07-25T20:15:24.010000"],["2024-07-25T20:15:25.010000"],["2024-07-25T20:15:26.010000"],["2024-07-25T20:15:27.010000"],["2024-07-25T20:15:28.010000"],["2024-07-25T20:15:29.010000"],["2024-07-25T20:15:30.010000"],["2024-07-25T20:15:31.010000"],["2024-07-25T20:15:32.010000"],["2024-07-25T20:15:33.010000"],["2024-07-25T20:15:34.010000"],["2024-07-25T20:15:35.010000"],["2024-07-25T20:15:36.010000"],["2024-07-25T20:15:37.010000"],["2024-07-25T20:15:38.010000"],["2024-07-25T20:15:39.010000"],["2024-07-25T20:15:40.010000"],["2024-07-25T20:15:41.010000"],["2024-07-25T20:15:42.010000"],["2024-07-25T20:15:43.010000"],["2024-07-25T20:15:44.010000"],["2024-07-25T20:15:45.010000"],["2024-07-25T20:15:46.010000"],["2024-07-25T20:15:47.010000"],["2024-07-25T20:15:48.010000"],["2024-07-25T20:15:49.010000"],["2024-07-25T20:15:50.010000"],["2024-07-25T20:15:51.010000"],["2024-07-25T20:15:52.010000"],["2024-07-25T20:15:53.010000"],["2024-07-25T20:15:54.010000"],["2024-07-25T20:15:55.010000"],["2024-07-25T20:15:56.010000"],["2024-07-25T20:15:57.010000"],["2024-07-25T20:15:58.010000"],["2024-07-25T20:15:59.010000"],["2024-07-25T20:16:00.010000"],["2024-07-25T20:16:01.010000"],["2024-07-25T20:16:02.010000"],["2024-07-25T20:16:03.010000"],["2024-07-25T20:16:04.010000"],["2024-07-25T20:16:05.010000"],["2024-07-25T20:16:06.010000"],["2024-07-25T20:16:07.010000"],["2024-07-25T20:16:08.010000"],["2024-07-25T20:16:09.010000"],["2024-07-25T20:16:10.010000"],["2024-07-25T20:16:11.010000"],["2024-07-25T20:16:12.010000"],["2024-07-25T20:16:13.010000"],["2024-07-25T20:16:14.010000"],["2024-07-25T20:16:15.010000"],["2024-07-25T20:16:16.010000"],["2024-07-25T20:16:17.010000"],["2024-07-25T20:16:18.010000"],["2024-07-25T20:16:19.010000"],["2024-07-25T20:16:20.010000"],["2024-07-25T20:16:21.010000"],["2024-07-25T20:16:22.010000"],["2024-07-25T20:16:23.010000"],["2024-07-25T20:16:24.010000"],["2024-07-25T20:16:25.010000"],["2024-07-25T20:16:26.010000"],["2024-07-25T20:16:27.010000"],["2024-07-25T20:16:28.010000"],["2024-07-25T20:16:29.010000"],["2024-07-25T20:16:30.010000"],["2024-07-25T20:16:31.010000"],["2024-07-25T20:16:32.010000"],["2024-07-25T20:16:33.010000"],["2024-07-25T20:16:34.010000"],["2024-07-25T20:16:35.010000"],["2024-07-25T20:16:36.010000"],["2024-07-25T20:16:37.010000"],["2024-07-25T20:16:38.010000"],["2024-07-25T20:16:39.010000"],["2024-07-25T20:16:40.010000"],["2024-07-25T20:16:41.010000"],["2024-07-25T20:16:42.010000"],["2024-07-25T20:16:43.010000"],["2024-07-25T20:16:44.010000"],["2024-07-25T20:16:45.010000"],["2024-07-25T20:16:46.010000"],["2024-07-25T20:16:47.010000"],["2024-07-25T20:16:48.010000"],["2024-07-25T20:16:49.010000"],["2024-07-25T20:16:50.010000"],["2024-07-25T20:16:51.010000"],["2024-07-25T20:16:52.010000"],["2024-07-25T20:16:53.010000"],["2024-07-25T20:16:54.010000"],["2024-07-25T20:16:55.010000"],["2024-07-25T20:16:56.010000"],["2024-07-25T20:16:57.010000"],["2024-07-25T20:16:58.010000"],["2024-07-25T20:16:59.010000"],["2024-07-25T20:17:00.010000"],["2024-07-25T20:17:01.010000"],["2024-07-25T20:17:02.010000"],["2024-07-25T20:17:03.010000"],["2024-07-25T20:17:04.010000"],["2024-07-25T20:17:05.010000"],["2024-07-25T20:17:06.010000"],["2024-07-25T20:17:07.010000"],["2024-07-25T20:17:08.010000"],["2024-07-25T20:17:09.010000"],["2024-07-25T20:17:10.010000"],["2024-07-25T20:17:11.010000"],["2024-07-25T20:17:12.010000"],["2024-07-25T20:17:13.010000"],["2024-07-25T20:17:14.010000"],["2024-07-25T20:17:15.010000"],["2024-07-25T20:17:16.010000"],["2024-07-25T20:17:17.010000"],["2024-07-25T20:17:18.010000"],["2024-07-25T20:17:19.010000"],["2024-07-25T20:17:20.010000"],["2024-07-25T20:17:21.010000"],["2024-07-25T20:17:22.010000"],["2024-07-25T20:17:23.010000"],["2024-07-25T20:17:24.010000"],["2024-07-25T20:17:25.010000"],["2024-07-25T20:17:26.010000"],["2024-07-25T20:17:27.010000"],["2024-07-25T20:17:28.010000"],["2024-07-25T20:17:29.010000"],["2024-07-25T20:17:30.010000"],["2024-07-25T20:17:31.010000"],["2024-07-25T20:17:32.010000"],["2024-07-25T20:17:33.010000"],["2024-07-25T20:17:34.010000"],["2024-07-25T20:17:35.010000"],["2024-07-25T20:17:36.010000"],["2024-07-25T20:17:37.010000"],["2024-07-25T20:17:38.010000"],["2024-07-25T20:17:39.010000"],["2024-07-25T20:17:40.010000"],["2024-07-25T20:17:41.010000"],["2024-07-25T20:17:42.010000"],["2024-07-25T20:17:43.010000"],["2024-07-25T20:17:44.010000"],["2024-07-25T20:17:45.010000"],["2024-07-25T20:17:46.010000"],["2024-07-25T20:17:47.010000"],["2024-07-25T20:17:48.010000"],["2024-07-25T20:17:49.010000"],["2024-07-25T20:17:50.010000"],["2024-07-25T20:17:51.010000"],["2024-07-25T20:17:52.010000"],["2024-07-25T20:17:53.010000"],["2024-07-25T20:17:54.010000"],["2024-07-25T20:17:55.010000"],["2024-07-25T20:17:56.010000"],["2024-07-25T20:17:57.010000"],["2024-07-25T20:17:58.010000"],["2024-07-25T20:17:59.010000"],["2024-07-25T20:18:00.010000"],["2024-07-25T20:18:01.010000"],["2024-07-25T20:18:02.010000"],["2024-07-25T20:18:03.010000"],["2024-07-25T20:18:04.010000"],["2024-07-25T20:18:05.010000"],["2024-07-25T20:18:06.010000"],["2024-07-25T20:18:07.010000"],["2024-07-25T20:18:08.010000"],["2024-07-25T20:18:09.010000"],["2024-07-25T20:18:10.010000"],["2024-07-25T20:18:11.010000"],["2024-07-25T20:18:12.010000"],["2024-07-25T20:18:13.010000"],["2024-07-25T20:18:14.010000"],["2024-07-25T20:18:15.010000"],["2024-07-25T20:18:16.010000"],["2024-07-25T20:18:17.010000"],["2024-07-25T20:18:18.010000"],["2024-07-25T20:18:19.010000"],["2024-07-25T20:18:20.010000"],["2024-07-25T20:18:21.010000"],["2024-07-25T20:18:22.010000"],["2024-07-25T20:18:23.010000"],["2024-07-25T20:18:24.010000"],["2024-07-25T20:18:25.010000"],["2024-07-25T20:18:26.010000"],["2024-07-25T20:18:27.010000"],["2024-07-25T20:18:28.010000"],["2024-07-25T20:18:29.010000"],["2024-07-25T20:18:30.010000"],["2024-07-25T20:18:31.010000"],["2024-07-25T20:18:32.010000"],["2024-07-25T20:18:33.010000"],["2024-07-25T20:18:34.010000"],["2024-07-25T20:18:35.010000"],["2024-07-25T20:18:36.010000"],["2024-07-25T20:18:37.010000"],["2024-07-25T20:18:38.010000"],["2024-07-25T20:18:39.010000"],["2024-07-25T20:18:40.010000"],["2024-07-25T20:18:41.010000"],["2024-07-25T20:18:42.010000"],["2024-07-25T20:18:43.010000"],["2024-07-25T20:18:44.010000"],["2024-07-25T20:18:45.010000"],["2024-07-25T20:18:46.010000"],["2024-07-25T20:18:47.010000"],["2024-07-25T20:18:48.010000"],["2024-07-25T20:18:49.010000"],["2024-07-25T20:18:50.010000"],["2024-07-25T20:18:51.010000"],["2024-07-25T20:18:52.010000"],["2024-07-25T20:18:53.010000"],["2024-07-25T20:18:54.010000"],["2024-07-25T20:18:55.010000"],["2024-07-25T20:18:56.010000"],["2024-07-25T20:18:57.010000"],["2024-07-25T20:18:58.010000"],["2024-07-25T20:18:59.010000"],["2024-07-25T20:19:00.010000"],["2024-07-25T20:19:01.010000"],["2024-07-25T20:19:02.010000"],["2024-07-25T20:19:03.010000"],["2024-07-25T20:19:04.010000"],["2024-07-25T20:19:05.010000"],["2024-07-25T20:19:06.010000"],["2024-07-25T20:19:07.010000"],["2024-07-25T20:19:08.010000"],["2024-07-25T20:19:09.010000"],["2024-07-25T20:19:10.010000"],["2024-07-25T20:19:11.010000"],["2024-07-25T20:19:12.010000"],["2024-07-25T20:19:13.010000"],["2024-07-25T20:19:14.010000"],["2024-07-25T20:19:15.010000"],["2024-07-25T20:19:16.010000"],["2024-07-25T20:19:17.010000"],["2024-07-25T20:19:18.010000"],["2024-07-25T20:19:19.010000"],["2024-07-25T20:19:20.010000"],["2024-07-25T20:19:21.010000"],["2024-07-25T20:19:22.010000"],["2024-07-25T20:19:23.010000"],["2024-07-25T20:19:24.010000"],["2024-07-25T20:19:25.010000"],["2024-07-25T20:19:26.010000"],["2024-07-25T20:19:27.010000"],["2024-07-25T20:19:28.010000"],["2024-07-25T20:19:29.010000"],["2024-07-25T20:19:30.010000"],["2024-07-25T20:19:31.010000"],["2024-07-25T20:19:32.010000"],["2024-07-25T20:19:33.010000"],["2024-07-25T20:19:34.010000"],["2024-07-25T20:19:35.010000"],["2024-07-25T20:19:36.010000"],["2024-07-25T20:19:37.010000"],["2024-07-25T20:19:38.010000"],["2024-07-25T20:19:39.010000"],["2024-07-25T20:19:40.010000"],["2024-07-25T20:19:41.010000"],["2024-07-25T20:19:42.010000"],["2024-07-25T20:19:43.010000"],["2024-07-25T20:19:44.010000"],["2024-07-25T20:19:45.010000"],["2024-07-25T20:19:46.010000"],["2024-07-25T20:19:47.010000"],["2024-07-25T20:19:48.010000"],["2024-07-25T20:19:49.010000"],["2024-07-25T20:19:50.010000"],["2024-07-25T20:19:51.010000"],["2024-07-25T20:19:52.010000"],["2024-07-25T20:19:53.010000"],["2024-07-25T20:19:54.010000"],["2024-07-25T20:19:55.010000"],["2024-07-25T20:19:56.010000"],["2024-07-25T20:19:57.010000"],["2024-07-25T20:19:58.010000"],["2024-07-25T20:19:59.010000"],["2024-07-25T20:20:00.010000"],["2024-07-25T20:20:01.010000"],["2024-07-25T20:20:02.010000"],["2024-07-25T20:20:03.010000"],["2024-07-25T20:20:04.010000"],["2024-07-25T20:20:05.010000"],["2024-07-25T20:20:06.010000"],["2024-07-25T20:20:07.010000"],["2024-07-25T20:20:08.010000"],["2024-07-25T20:20:09.010000"],["2024-07-25T20:20:10.010000"],["2024-07-25T20:20:11.010000"],["2024-07-25T20:20:12.010000"],["2024-07-25T20:20:13.010000"],["2024-07-25T20:20:14.010000"],["2024-07-25T20:20:15.010000"],["2024-07-25T20:20:16.010000"],["2024-07-25T20:20:17.010000"],["2024-07-25T20:20:18.010000"],["2024-07-25T20:20:19.010000"],["2024-07-25T20:20:20.010000"],["2024-07-25T20:20:21.010000"],["2024-07-25T20:20:22.010000"],["2024-07-25T20:20:23.010000"],["2024-07-25T20:20:24.010000"],["2024-07-25T20:20:25.010000"],["2024-07-25T20:20:26.010000"],["2024-07-25T20:20:27.010000"],["2024-07-25T20:20:28.010000"],["2024-07-25T20:20:29.010000"],["2024-07-25T20:20:30.010000"],["2024-07-25T20:20:31.010000"],["2024-07-25T20:20:32.010000"],["2024-07-25T20:20:33.010000"],["2024-07-25T20:20:34.010000"],["2024-07-25T20:20:35.010000"],["2024-07-25T20:20:36.010000"],["2024-07-25T20:20:37.010000"],["2024-07-25T20:20:38.010000"],["2024-07-25T20:20:39.010000"],["2024-07-25T20:20:40.010000"],["2024-07-25T20:20:41.010000"],["2024-07-25T20:20:42.010000"],["2024-07-25T20:20:43.010000"],["2024-07-25T20:20:44.010000"],["2024-07-25T20:20:45.010000"],["2024-07-25T20:20:46.010000"],["2024-07-25T20:20:47.010000"],["2024-07-25T20:20:48.010000"],["2024-07-25T20:20:49.010000"],["2024-07-25T20:20:50.010000"],["2024-07-25T20:20:51.010000"],["2024-07-25T20:20:52.010000"],["2024-07-25T20:20:53.010000"],["2024-07-25T20:20:54.010000"],["2024-07-25T20:20:55.010000"],["2024-07-25T20:20:56.010000"],["2024-07-25T20:20:57.010000"],["2024-07-25T20:20:58.010000"],["2024-07-25T20:20:59.010000"],["2024-07-25T20:21:00.010000"],["2024-07-25T20:21:01.010000"],["2024-07-25T20:21:02.010000"],["2024-07-25T20:21:03.010000"],["2024-07-25T20:21:04.010000"],["2024-07-25T20:21:05.010000"],["2024-07-25T20:21:06.010000"],["2024-07-25T20:21:07.010000"],["2024-07-25T20:21:08.010000"],["2024-07-25T20:21:09.010000"],["2024-07-25T20:21:10.010000"],["2024-07-25T20:21:11.010000"],["2024-07-25T20:21:12.010000"],["2024-07-25T20:21:13.010000"],["2024-07-25T20:21:14.010000"],["2024-07-25T20:21:15.010000"],["2024-07-25T20:21:16.010000"],["2024-07-25T20:21:17.010000"],["2024-07-25T20:21:18.010000"],["2024-07-25T20:21:19.010000"],["2024-07-25T20:21:20.010000"],["2024-07-25T20:21:21.010000"],["2024-07-25T20:21:22.010000"],["2024-07-25T20:21:23.010000"],["2024-07-25T20:21:24.010000"],["2024-07-25T20:21:25.010000"],["2024-07-25T20:21:26.010000"],["2024-07-25T20:21:27.010000"],["2024-07-25T20:21:28.010000"],["2024-07-25T20:21:29.010000"],["2024-07-25T20:21:30.010000"],["2024-07-25T20:21:31.010000"],["2024-07-25T20:21:32.010000"],["2024-07-25T20:21:33.010000"],["2024-07-25T20:21:34.010000"],["2024-07-25T20:21:35.010000"],["2024-07-25T20:21:36.010000"],["2024-07-25T20:21:37.010000"],["2024-07-25T20:21:38.010000"],["2024-07-25T20:21:39.010000"],["2024-07-25T20:21:40.010000"],["2024-07-25T20:21:41.010000"],["2024-07-25T20:21:42.010000"],["2024-07-25T20:21:43.010000"],["2024-07-25T20:21:44.010000"],["2024-07-25T20:21:45.010000"],["2024-07-25T20:21:46.010000"],["2024-07-25T20:21:47.010000"],["2024-07-25T20:21:48.010000"],["2024-07-25T20:21:49.010000"],["2024-07-25T20:21:50.010000"],["2024-07-25T20:21:51.010000"],["2024-07-25T20:21:52.010000"],["2024-07-25T20:21:53.010000"],["2024-07-25T20:21:54.010000"],["2024-07-25T20:21:55.010000"],["2024-07-25T20:21:56.010000"],["2024-07-25T20:21:57.010000"],["2024-07-25T20:21:58.010000"],["2024-07-25T20:21:59.010000"],["2024-07-25T20:22:00.010000"],["2024-07-25T20:22:01.010000"],["2024-07-25T20:22:02.010000"],["2024-07-25T20:22:03.010000"],["2024-07-25T20:22:04.010000"],["2024-07-25T20:22:05.010000"],["2024-07-25T20:22:06.010000"],["2024-07-25T20:22:07.010000"],["2024-07-25T20:22:08.010000"],["2024-07-25T20:22:09.010000"],["2024-07-25T20:22:10.010000"],["2024-07-25T20:22:11.010000"],["2024-07-25T20:22:12.010000"],["2024-07-25T20:22:13.010000"],["2024-07-25T20:22:14.010000"],["2024-07-25T20:22:15.010000"],["2024-07-25T20:22:16.010000"],["2024-07-25T20:22:17.010000"],["2024-07-25T20:22:18.010000"],["2024-07-25T20:22:19.010000"],["2024-07-25T20:22:20.010000"],["2024-07-25T20:22:21.010000"],["2024-07-25T20:22:22.010000"],["2024-07-25T20:22:23.010000"],["2024-07-25T20:22:24.010000"],["2024-07-25T20:22:25.010000"],["2024-07-25T20:22:26.010000"],["2024-07-25T20:22:27.010000"],["2024-07-25T20:22:28.010000"],["2024-07-25T20:22:29.010000"],["2024-07-25T20:22:30.010000"],["2024-07-25T20:22:31.010000"],["2024-07-25T20:22:32.010000"],["2024-07-25T20:22:33.010000"],["2024-07-25T20:22:34.010000"],["2024-07-25T20:22:35.010000"],["2024-07-25T20:22:36.010000"],["2024-07-25T20:22:37.010000"],["2024-07-25T20:22:38.010000"],["2024-07-25T20:22:39.010000"],["2024-07-25T20:22:40.010000"],["2024-07-25T20:22:41.010000"],["2024-07-25T20:22:42.010000"],["2024-07-25T20:22:43.010000"],["2024-07-25T20:22:44.010000"],["2024-07-25T20:22:45.010000"],["2024-07-25T20:22:46.010000"],["2024-07-25T20:22:47.010000"],["2024-07-25T20:22:48.010000"],["2024-07-25T20:22:49.010000"],["2024-07-25T20:22:50.010000"],["2024-07-25T20:22:51.010000"],["2024-07-25T20:22:52.010000"],["2024-07-25T20:22:53.010000"],["2024-07-25T20:22:54.010000"],["2024-07-25T20:22:55.010000"],["2024-07-25T20:22:56.010000"],["2024-07-25T20:22:57.010000"],["2024-07-25T20:22:58.010000"],["2024-07-25T20:22:59.010000"],["2024-07-25T20:23:00.010000"],["2024-07-25T20:23:01.010000"],["2024-07-25T20:23:02.010000"],["2024-07-25T20:23:03.010000"],["2024-07-25T20:23:04.010000"],["2024-07-25T20:23:05.010000"],["2024-07-25T20:23:06.010000"],["2024-07-25T20:23:07.010000"],["2024-07-25T20:23:08.010000"],["2024-07-25T20:23:09.010000"],["2024-07-25T20:23:10.010000"],["2024-07-25T20:23:11.010000"],["2024-07-25T20:23:12.010000"],["2024-07-25T20:23:13.010000"],["2024-07-25T20:23:14.010000"],["2024-07-25T20:23:15.010000"],["2024-07-25T20:23:16.010000"],["2024-07-25T20:23:17.010000"],["2024-07-25T20:23:18.010000"],["2024-07-25T20:23:19.010000"],["2024-07-25T20:23:20.010000"],["2024-07-25T20:23:21.010000"],["2024-07-25T20:23:22.010000"],["2024-07-25T20:23:23.010000"],["2024-07-25T20:23:24.010000"],["2024-07-25T20:23:25.010000"],["2024-07-25T20:23:26.010000"],["2024-07-25T20:23:27.010000"],["2024-07-25T20:23:28.010000"],["2024-07-25T20:23:29.010000"],["2024-07-25T20:23:30.010000"],["2024-07-25T20:23:31.010000"],["2024-07-25T20:23:32.010000"],["2024-07-25T20:23:33.010000"],["2024-07-25T20:23:34.010000"],["2024-07-25T20:23:35.010000"],["2024-07-25T20:23:36.010000"],["2024-07-25T20:23:37.010000"],["2024-07-25T20:23:38.010000"],["2024-07-25T20:23:39.010000"],["2024-07-25T20:23:40.010000"],["2024-07-25T20:23:41.010000"],["2024-07-25T20:23:42.010000"],["2024-07-25T20:23:43.010000"],["2024-07-25T20:23:44.010000"],["2024-07-25T20:23:45.010000"],["2024-07-25T20:23:46.010000"],["2024-07-25T20:23:47.010000"],["2024-07-25T20:23:48.010000"],["2024-07-25T20:23:49.010000"],["2024-07-25T20:23:50.010000"],["2024-07-25T20:23:51.010000"],["2024-07-25T20:23:52.010000"],["2024-07-25T20:23:53.010000"],["2024-07-25T20:23:54.010000"],["2024-07-25T20:23:55.010000"],["2024-07-25T20:23:56.010000"],["2024-07-25T20:23:57.010000"],["2024-07-25T20:23:58.010000"],["2024-07-25T20:23:59.010000"],["2024-07-25T20:24:00.010000"],["2024-07-25T20:24:01.010000"],["2024-07-25T20:24:02.010000"],["2024-07-25T20:24:03.010000"],["2024-07-25T20:24:04.010000"],["2024-07-25T20:24:05.010000"],["2024-07-25T20:24:06.010000"],["2024-07-25T20:24:07.010000"],["2024-07-25T20:24:08.010000"],["2024-07-25T20:24:09.010000"],["2024-07-25T20:24:10.010000"],["2024-07-25T20:24:11.010000"],["2024-07-25T20:24:12.010000"],["2024-07-25T20:24:13.010000"],["2024-07-25T20:24:14.010000"],["2024-07-25T20:24:15.010000"],["2024-07-25T20:24:16.010000"],["2024-07-25T20:24:17.010000"],["2024-07-25T20:24:18.010000"],["2024-07-25T20:24:19.010000"],["2024-07-25T20:24:20.010000"],["2024-07-25T20:24:21.010000"],["2024-07-25T20:24:22.010000"],["2024-07-25T20:24:23.010000"],["2024-07-25T20:24:24.010000"],["2024-07-25T20:24:25.010000"],["2024-07-25T20:24:26.010000"],["2024-07-25T20:24:27.010000"],["2024-07-25T20:24:28.010000"],["2024-07-25T20:24:29.010000"],["2024-07-25T20:24:30.010000"],["2024-07-25T20:24:31.010000"],["2024-07-25T20:24:32.010000"],["2024-07-25T20:24:33.010000"],["2024-07-25T20:24:34.010000"],["2024-07-25T20:24:35.010000"],["2024-07-25T20:24:36.010000"],["2024-07-25T20:24:37.010000"],["2024-07-25T20:24:38.010000"],["2024-07-25T20:24:39.010000"],["2024-07-25T20:24:40.010000"],["2024-07-25T20:24:41.010000"],["2024-07-25T20:24:42.010000"],["2024-07-25T20:24:43.010000"],["2024-07-25T20:24:44.010000"],["2024-07-25T20:24:45.010000"],["2024-07-25T20:24:46.010000"],["2024-07-25T20:24:47.010000"],["2024-07-25T20:24:48.010000"],["2024-07-25T20:24:49.010000"],["2024-07-25T20:24:50.010000"],["2024-07-25T20:24:51.010000"],["2024-07-25T20:24:52.010000"],["2024-07-25T20:24:53.010000"],["2024-07-25T20:24:54.010000"],["2024-07-25T20:24:55.010000"],["2024-07-25T20:24:56.010000"],["2024-07-25T20:24:57.010000"],["2024-07-25T20:24:58.010000"],["2024-07-25T20:24:59.010000"],["2024-07-25T20:25:00.010000"],["2024-07-25T20:25:01.010000"],["2024-07-25T20:25:02.010000"],["2024-07-25T20:25:03.010000"],["2024-07-25T20:25:04.010000"],["2024-07-25T20:25:05.010000"],["2024-07-25T20:25:06.010000"],["2024-07-25T20:25:07.010000"],["2024-07-25T20:25:08.010000"],["2024-07-25T20:25:09.010000"],["2024-07-25T20:25:10.010000"],["2024-07-25T20:25:11.010000"],["2024-07-25T20:25:12.010000"],["2024-07-25T20:25:13.010000"],["2024-07-25T20:25:14.010000"],["2024-07-25T20:25:15.010000"],["2024-07-25T20:25:16.010000"],["2024-07-25T20:25:17.010000"],["2024-07-25T20:25:18.010000"],["2024-07-25T20:25:19.010000"],["2024-07-25T20:25:20.010000"],["2024-07-25T20:25:21.010000"],["2024-07-25T20:25:22.010000"],["2024-07-25T20:25:23.010000"],["2024-07-25T20:25:24.010000"],["2024-07-25T20:25:25.010000"],["2024-07-25T20:25:26.010000"],["2024-07-25T20:25:27.010000"],["2024-07-25T20:25:28.010000"],["2024-07-25T20:25:29.010000"],["2024-07-25T20:25:30.010000"],["2024-07-25T20:25:31.010000"],["2024-07-25T20:25:32.010000"],["2024-07-25T20:25:33.010000"],["2024-07-25T20:25:34.010000"],["2024-07-25T20:25:35.010000"],["2024-07-25T20:25:36.010000"],["2024-07-25T20:25:37.010000"],["2024-07-25T20:25:38.010000"],["2024-07-25T20:25:39.010000"],["2024-07-25T20:25:40.010000"],["2024-07-25T20:25:41.010000"],["2024-07-25T20:25:42.010000"],["2024-07-25T20:25:43.010000"],["2024-07-25T20:25:44.010000"],["2024-07-25T20:25:45.010000"],["2024-07-25T20:25:46.010000"],["2024-07-25T20:25:47.010000"],["2024-07-25T20:25:48.010000"],["2024-07-25T20:25:49.010000"],["2024-07-25T20:25:50.010000"],["2024-07-25T20:25:51.010000"],["2024-07-25T20:25:52.010000"],["2024-07-25T20:25:53.010000"],["2024-07-25T20:25:54.010000"],["2024-07-25T20:25:55.010000"],["2024-07-25T20:25:56.010000"],["2024-07-25T20:25:57.010000"],["2024-07-25T20:25:58.010000"],["2024-07-25T20:25:59.010000"],["2024-07-25T20:26:00.010000"],["2024-07-25T20:26:01.010000"],["2024-07-25T20:26:02.010000"],["2024-07-25T20:26:03.010000"],["2024-07-25T20:26:04.010000"],["2024-07-25T20:26:05.010000"],["2024-07-25T20:26:06.010000"],["2024-07-25T20:26:07.010000"],["2024-07-25T20:26:08.010000"],["2024-07-25T20:26:09.010000"],["2024-07-25T20:26:10.010000"],["2024-07-25T20:26:11.010000"],["2024-07-25T20:26:12.010000"],["2024-07-25T20:26:13.010000"],["2024-07-25T20:26:14.010000"],["2024-07-25T20:26:15.010000"],["2024-07-25T20:26:16.010000"],["2024-07-25T20:26:17.010000"],["2024-07-25T20:26:18.010000"],["2024-07-25T20:26:19.010000"],["2024-07-25T20:26:20.010000"],["2024-07-25T20:26:21.010000"],["2024-07-25T20:26:22.010000"],["2024-07-25T20:26:23.010000"],["2024-07-25T20:26:24.010000"],["2024-07-25T20:26:25.010000"],["2024-07-25T20:26:26.010000"],["2024-07-25T20:26:27.010000"],["2024-07-25T20:26:28.010000"],["2024-07-25T20:26:29.010000"],["2024-07-25T20:26:30.010000"],["2024-07-25T20:26:31.010000"],["2024-07-25T20:26:32.010000"],["2024-07-25T20:26:33.010000"],["2024-07-25T20:26:34.010000"],["2024-07-25T20:26:35.010000"],["2024-07-25T20:26:36.010000"],["2024-07-25T20:26:37.010000"],["2024-07-25T20:26:38.010000"],["2024-07-25T20:26:39.010000"],["2024-07-25T20:26:40.010000"],["2024-07-25T20:26:41.010000"],["2024-07-25T20:26:42.010000"],["2024-07-25T20:26:43.010000"],["2024-07-25T20:26:44.010000"],["2024-07-25T20:26:45.010000"],["2024-07-25T20:26:46.010000"],["2024-07-25T20:26:47.010000"],["2024-07-25T20:26:48.010000"],["2024-07-25T20:26:49.010000"],["2024-07-25T20:26:50.010000"],["2024-07-25T20:26:51.010000"],["2024-07-25T20:26:52.010000"],["2024-07-25T20:26:53.010000"],["2024-07-25T20:26:54.010000"],["2024-07-25T20:26:55.010000"],["2024-07-25T20:26:56.010000"],["2024-07-25T20:26:57.010000"],["2024-07-25T20:26:58.010000"],["2024-07-25T20:26:59.010000"],["2024-07-25T20:27:00.010000"],["2024-07-25T20:27:01.010000"],["2024-07-25T20:27:02.010000"],["2024-07-25T20:27:03.010000"],["2024-07-25T20:27:04.010000"],["2024-07-25T20:27:05.010000"],["2024-07-25T20:27:06.010000"],["2024-07-25T20:27:07.010000"],["2024-07-25T20:27:08.010000"],["2024-07-25T20:27:09.010000"],["2024-07-25T20:27:10.010000"],["2024-07-25T20:27:11.010000"],["2024-07-25T20:27:12.010000"],["2024-07-25T20:27:13.010000"],["2024-07-25T20:27:14.010000"],["2024-07-25T20:27:15.010000"],["2024-07-25T20:27:16.010000"],["2024-07-25T20:27:17.010000"],["2024-07-25T20:27:18.010000"],["2024-07-25T20:27:19.010000"],["2024-07-25T20:27:20.010000"],["2024-07-25T20:27:21.010000"],["2024-07-25T20:27:22.010000"],["2024-07-25T20:27:23.010000"],["2024-07-25T20:27:24.010000"],["2024-07-25T20:27:25.010000"],["2024-07-25T20:27:26.010000"],["2024-07-25T20:27:27.010000"],["2024-07-25T20:27:28.010000"],["2024-07-25T20:27:29.010000"],["2024-07-25T20:27:30.010000"],["2024-07-25T20:27:31.010000"],["2024-07-25T20:27:32.010000"],["2024-07-25T20:27:33.010000"],["2024-07-25T20:27:34.010000"],["2024-07-25T20:27:35.010000"],["2024-07-25T20:27:36.010000"],["2024-07-25T20:27:37.010000"],["2024-07-25T20:27:38.010000"],["2024-07-25T20:27:39.010000"],["2024-07-25T20:27:40.010000"],["2024-07-25T20:27:41.010000"],["2024-07-25T20:27:42.010000"],["2024-07-25T20:27:43.010000"],["2024-07-25T20:27:44.010000"],["2024-07-25T20:27:45.010000"],["2024-07-25T20:27:46.010000"],["2024-07-25T20:27:47.010000"],["2024-07-25T20:27:48.010000"],["2024-07-25T20:27:49.010000"],["2024-07-25T20:27:50.010000"],["2024-07-25T20:27:51.010000"],["2024-07-25T20:27:52.010000"],["2024-07-25T20:27:53.010000"],["2024-07-25T20:27:54.010000"],["2024-07-25T20:27:55.010000"],["2024-07-25T20:27:56.010000"],["2024-07-25T20:27:57.010000"],["2024-07-25T20:27:58.010000"],["2024-07-25T20:27:59.010000"],["2024-07-25T20:28:00.010000"],["2024-07-25T20:28:01.010000"],["2024-07-25T20:28:02.010000"],["2024-07-25T20:28:03.010000"],["2024-07-25T20:28:04.010000"],["2024-07-25T20:28:05.010000"],["2024-07-25T20:28:06.010000"],["2024-07-25T20:28:07.010000"],["2024-07-25T20:28:08.010000"],["2024-07-25T20:28:09.010000"],["2024-07-25T20:28:10.010000"],["2024-07-25T20:28:11.010000"],["2024-07-25T20:28:12.010000"],["2024-07-25T20:28:13.010000"],["2024-07-25T20:28:14.010000"],["2024-07-25T20:28:15.010000"],["2024-07-25T20:28:16.010000"],["2024-07-25T20:28:17.010000"],["2024-07-25T20:28:18.010000"],["2024-07-25T20:28:19.010000"],["2024-07-25T20:28:20.010000"],["2024-07-25T20:28:21.010000"],["2024-07-25T20:28:22.010000"],["2024-07-25T20:28:23.010000"],["2024-07-25T20:28:24.010000"],["2024-07-25T20:28:25.010000"],["2024-07-25T20:28:26.010000"],["2024-07-25T20:28:27.010000"],["2024-07-25T20:28:28.010000"],["2024-07-25T20:28:29.010000"],["2024-07-25T20:28:30.010000"],["2024-07-25T20:28:31.010000"],["2024-07-25T20:28:32.010000"],["2024-07-25T20:28:33.010000"],["2024-07-25T20:28:34.010000"],["2024-07-25T20:28:35.010000"],["2024-07-25T20:28:36.010000"],["2024-07-25T20:28:37.010000"],["2024-07-25T20:28:38.010000"],["2024-07-25T20:28:39.010000"],["2024-07-25T20:28:40.010000"],["2024-07-25T20:28:41.010000"],["2024-07-25T20:28:42.010000"],["2024-07-25T20:28:43.010000"],["2024-07-25T20:28:44.010000"],["2024-07-25T20:28:45.010000"],["2024-07-25T20:28:46.010000"],["2024-07-25T20:28:47.010000"],["2024-07-25T20:28:48.010000"],["2024-07-25T20:28:49.010000"],["2024-07-25T20:28:50.010000"],["2024-07-25T20:28:51.010000"],["2024-07-25T20:28:52.010000"],["2024-07-25T20:28:53.010000"],["2024-07-25T20:28:54.010000"],["2024-07-25T20:28:55.010000"],["2024-07-25T20:28:56.010000"],["2024-07-25T20:28:57.010000"],["2024-07-25T20:28:58.010000"],["2024-07-25T20:28:59.010000"],["2024-07-25T20:29:00.010000"],["2024-07-25T20:29:01.010000"],["2024-07-25T20:29:02.010000"],["2024-07-25T20:29:03.010000"],["2024-07-25T20:29:04.010000"],["2024-07-25T20:29:05.010000"],["2024-07-25T20:29:06.010000"],["2024-07-25T20:29:07.010000"],["2024-07-25T20:29:08.010000"],["2024-07-25T20:29:09.010000"],["2024-07-25T20:29:10.010000"],["2024-07-25T20:29:11.010000"],["2024-07-25T20:29:12.010000"],["2024-07-25T20:29:13.010000"],["2024-07-25T20:29:14.010000"],["2024-07-25T20:29:15.010000"],["2024-07-25T20:29:16.010000"],["2024-07-25T20:29:17.010000"],["2024-07-25T20:29:18.010000"],["2024-07-25T20:29:19.010000"],["2024-07-25T20:29:20.010000"],["2024-07-25T20:29:21.010000"],["2024-07-25T20:29:22.010000"],["2024-07-25T20:29:23.010000"],["2024-07-25T20:29:24.010000"],["2024-07-25T20:29:25.010000"],["2024-07-25T20:29:26.010000"],["2024-07-25T20:29:27.010000"],["2024-07-25T20:29:28.010000"],["2024-07-25T20:29:29.010000"],["2024-07-25T20:29:30.010000"],["2024-07-25T20:29:31.010000"],["2024-07-25T20:29:32.010000"],["2024-07-25T20:29:33.010000"],["2024-07-25T20:29:34.010000"],["2024-07-25T20:29:35.010000"],["2024-07-25T20:29:36.010000"],["2024-07-25T20:29:37.010000"],["2024-07-25T20:29:38.010000"],["2024-07-25T20:29:39.010000"],["2024-07-25T20:29:40.010000"],["2024-07-25T20:29:41.010000"],["2024-07-25T20:29:42.010000"],["2024-07-25T20:29:43.010000"],["2024-07-25T20:29:44.010000"],["2024-07-25T20:29:45.010000"],["2024-07-25T20:29:46.010000"],["2024-07-25T20:29:47.010000"],["2024-07-25T20:29:48.010000"],["2024-07-25T20:29:49.010000"],["2024-07-25T20:29:50.010000"],["2024-07-25T20:29:51.010000"],["2024-07-25T20:29:52.010000"],["2024-07-25T20:29:53.010000"],["2024-07-25T20:29:54.010000"],["2024-07-25T20:29:55.010000"],["2024-07-25T20:29:56.010000"],["2024-07-25T20:29:57.010000"],["2024-07-25T20:29:58.010000"],["2024-07-25T20:29:59.010000"],["2024-07-25T20:30:00.010000"],["2024-07-25T20:30:01.010000"],["2024-07-25T20:30:02.010000"],["2024-07-25T20:30:03.010000"],["2024-07-25T20:30:04.010000"],["2024-07-25T20:30:05.010000"],["2024-07-25T20:30:06.010000"],["2024-07-25T20:30:07.010000"],["2024-07-25T20:30:08.010000"],["2024-07-25T20:30:09.010000"],["2024-07-25T20:30:10.010000"],["2024-07-25T20:30:11.010000"],["2024-07-25T20:30:12.010000"],["2024-07-25T20:30:13.010000"],["2024-07-25T20:30:14.010000"],["2024-07-25T20:30:15.010000"],["2024-07-25T20:30:16.010000"],["2024-07-25T20:30:17.010000"],["2024-07-25T20:30:18.010000"],["2024-07-25T20:30:19.010000"],["2024-07-25T20:30:20.010000"],["2024-07-25T20:30:21.010000"],["2024-07-25T20:30:22.010000"],["2024-07-25T20:30:23.010000"],["2024-07-25T20:30:24.010000"],["2024-07-25T20:30:25.010000"],["2024-07-25T20:30:26.010000"],["2024-07-25T20:30:27.010000"],["2024-07-25T20:30:28.010000"],["2024-07-25T20:30:29.010000"],["2024-07-25T20:30:30.010000"],["2024-07-25T20:30:31.010000"],["2024-07-25T20:30:32.010000"],["2024-07-25T20:30:33.010000"],["2024-07-25T20:30:34.010000"],["2024-07-25T20:30:35.010000"],["2024-07-25T20:30:36.010000"],["2024-07-25T20:30:37.010000"],["2024-07-25T20:30:38.010000"],["2024-07-25T20:30:39.010000"],["2024-07-25T20:30:40.010000"],["2024-07-25T20:30:41.010000"],["2024-07-25T20:30:42.010000"],["2024-07-25T20:30:43.010000"],["2024-07-25T20:30:44.010000"],["2024-07-25T20:30:45.010000"],["2024-07-25T20:30:46.010000"],["2024-07-25T20:30:47.010000"],["2024-07-25T20:30:48.010000"],["2024-07-25T20:30:49.010000"],["2024-07-25T20:30:50.010000"],["2024-07-25T20:30:51.010000"],["2024-07-25T20:30:52.010000"],["2024-07-25T20:30:53.010000"],["2024-07-25T20:30:54.010000"],["2024-07-25T20:30:55.010000"],["2024-07-25T20:30:56.010000"],["2024-07-25T20:30:57.010000"],["2024-07-25T20:30:58.010000"],["2024-07-25T20:30:59.010000"],["2024-07-25T20:31:00.010000"],["2024-07-25T20:31:01.010000"],["2024-07-25T20:31:02.010000"],["2024-07-25T20:31:03.010000"],["2024-07-25T20:31:04.010000"],["2024-07-25T20:31:05.010000"],["2024-07-25T20:31:06.010000"],["2024-07-25T20:31:07.010000"],["2024-07-25T20:31:08.010000"],["2024-07-25T20:31:09.010000"],["2024-07-25T20:31:10.010000"],["2024-07-25T20:31:11.010000"],["2024-07-25T20:31:12.010000"],["2024-07-25T20:31:13.010000"],["2024-07-25T20:31:14.010000"],["2024-07-25T20:31:15.010000"],["2024-07-25T20:31:16.010000"],["2024-07-25T20:31:17.010000"],["2024-07-25T20:31:18.010000"],["2024-07-25T20:31:19.010000"],["2024-07-25T20:31:20.010000"],["2024-07-25T20:31:21.010000"],["2024-07-25T20:31:22.010000"],["2024-07-25T20:31:23.010000"],["2024-07-25T20:31:24.010000"],["2024-07-25T20:31:25.010000"],["2024-07-25T20:31:26.010000"],["2024-07-25T20:31:27.010000"],["2024-07-25T20:31:28.010000"],["2024-07-25T20:31:29.010000"],["2024-07-25T20:31:30.010000"],["2024-07-25T20:31:31.010000"],["2024-07-25T20:31:32.010000"],["2024-07-25T20:31:33.010000"],["2024-07-25T20:31:34.010000"],["2024-07-25T20:31:35.010000"],["2024-07-25T20:31:36.010000"],["2024-07-25T20:31:37.010000"],["2024-07-25T20:31:38.010000"],["2024-07-25T20:31:39.010000"],["2024-07-25T20:31:40.010000"],["2024-07-25T20:31:41.010000"],["2024-07-25T20:31:42.010000"],["2024-07-25T20:31:43.010000"],["2024-07-25T20:31:44.010000"],["2024-07-25T20:31:45.010000"],["2024-07-25T20:31:46.010000"],["2024-07-25T20:31:47.010000"],["2024-07-25T20:31:48.010000"],["2024-07-25T20:31:49.010000"],["2024-07-25T20:31:50.010000"],["2024-07-25T20:31:51.010000"],["2024-07-25T20:31:52.010000"],["2024-07-25T20:31:53.010000"],["2024-07-25T20:31:54.010000"],["2024-07-25T20:31:55.010000"],["2024-07-25T20:31:56.010000"],["2024-07-25T20:31:57.010000"],["2024-07-25T20:31:58.010000"],["2024-07-25T20:31:59.010000"],["2024-07-25T20:32:00.010000"],["2024-07-25T20:32:01.010000"],["2024-07-25T20:32:02.010000"],["2024-07-25T20:32:03.010000"],["2024-07-25T20:32:04.010000"],["2024-07-25T20:32:05.010000"],["2024-07-25T20:32:06.010000"],["2024-07-25T20:32:07.010000"],["2024-07-25T20:32:08.010000"],["2024-07-25T20:32:09.010000"],["2024-07-25T20:32:10.010000"],["2024-07-25T20:32:11.010000"],["2024-07-25T20:32:12.010000"],["2024-07-25T20:32:13.010000"],["2024-07-25T20:32:14.010000"],["2024-07-25T20:32:15.010000"],["2024-07-25T20:32:16.010000"],["2024-07-25T20:32:17.010000"],["2024-07-25T20:32:18.010000"],["2024-07-25T20:32:19.010000"],["2024-07-25T20:32:20.010000"],["2024-07-25T20:32:21.010000"],["2024-07-25T20:32:22.010000"],["2024-07-25T20:32:23.010000"],["2024-07-25T20:32:24.010000"],["2024-07-25T20:32:25.010000"],["2024-07-25T20:32:26.010000"],["2024-07-25T20:32:27.010000"],["2024-07-25T20:32:28.010000"],["2024-07-25T20:32:29.010000"],["2024-07-25T20:32:30.010000"],["2024-07-25T20:32:31.010000"],["2024-07-25T20:32:32.010000"],["2024-07-25T20:32:33.010000"],["2024-07-25T20:32:34.010000"],["2024-07-25T20:32:35.010000"],["2024-07-25T20:32:36.010000"],["2024-07-25T20:32:37.010000"],["2024-07-25T20:32:38.010000"],["2024-07-25T20:32:39.010000"],["2024-07-25T20:32:40.010000"],["2024-07-25T20:32:41.010000"],["2024-07-25T20:32:42.010000"],["2024-07-25T20:32:43.010000"],["2024-07-25T20:32:44.010000"],["2024-07-25T20:32:45.010000"],["2024-07-25T20:32:46.010000"],["2024-07-25T20:32:47.010000"],["2024-07-25T20:32:48.010000"],["2024-07-25T20:32:49.010000"],["2024-07-25T20:32:50.010000"],["2024-07-25T20:32:51.010000"],["2024-07-25T20:32:52.010000"],["2024-07-25T20:32:53.010000"],["2024-07-25T20:32:54.010000"],["2024-07-25T20:32:55.010000"],["2024-07-25T20:32:56.010000"],["2024-07-25T20:32:57.010000"],["2024-07-25T20:32:58.010000"],["2024-07-25T20:32:59.010000"],["2024-07-25T20:33:00.010000"],["2024-07-25T20:33:01.010000"],["2024-07-25T20:33:02.010000"],["2024-07-25T20:33:03.010000"],["2024-07-25T20:33:04.010000"],["2024-07-25T20:33:05.010000"],["2024-07-25T20:33:06.010000"],["2024-07-25T20:33:07.010000"],["2024-07-25T20:33:08.010000"],["2024-07-25T20:33:09.010000"],["2024-07-25T20:33:10.010000"],["2024-07-25T20:33:11.010000"],["2024-07-25T20:33:12.010000"],["2024-07-25T20:33:13.010000"],["2024-07-25T20:33:14.010000"],["2024-07-25T20:33:15.010000"],["2024-07-25T20:33:16.010000"],["2024-07-25T20:33:17.010000"],["2024-07-25T20:33:18.010000"],["2024-07-25T20:33:19.010000"],["2024-07-25T20:33:20.010000"],["2024-07-25T20:33:21.010000"],["2024-07-25T20:33:22.010000"],["2024-07-25T20:33:23.010000"],["2024-07-25T20:33:24.010000"],["2024-07-25T20:33:25.010000"],["2024-07-25T20:33:26.010000"],["2024-07-25T20:33:27.010000"],["2024-07-25T20:33:28.010000"],["2024-07-25T20:33:29.010000"],["2024-07-25T20:33:30.010000"],["2024-07-25T20:33:31.010000"],["2024-07-25T20:33:32.010000"],["2024-07-25T20:33:33.010000"],["2024-07-25T20:33:34.010000"],["2024-07-25T20:33:35.010000"],["2024-07-25T20:33:36.010000"],["2024-07-25T20:33:37.010000"],["2024-07-25T20:33:38.010000"],["2024-07-25T20:33:39.010000"],["2024-07-25T20:33:40.010000"],["2024-07-25T20:33:41.010000"],["2024-07-25T20:33:42.010000"],["2024-07-25T20:33:43.010000"],["2024-07-25T20:33:44.010000"],["2024-07-25T20:33:45.010000"],["2024-07-25T20:33:46.010000"],["2024-07-25T20:33:47.010000"],["2024-07-25T20:33:48.010000"],["2024-07-25T20:33:49.010000"],["2024-07-25T20:33:50.010000"],["2024-07-25T20:33:51.010000"],["2024-07-25T20:33:52.010000"],["2024-07-25T20:33:53.010000"],["2024-07-25T20:33:54.010000"],["2024-07-25T20:33:55.010000"],["2024-07-25T20:33:56.010000"],["2024-07-25T20:33:57.010000"],["2024-07-25T20:33:58.010000"],["2024-07-25T20:33:59.010000"],["2024-07-25T20:34:00.010000"],["2024-07-25T20:34:01.010000"],["2024-07-25T20:34:02.010000"],["2024-07-25T20:34:03.010000"],["2024-07-25T20:34:04.010000"],["2024-07-25T20:34:05.010000"],["2024-07-25T20:34:06.010000"],["2024-07-25T20:34:07.010000"],["2024-07-25T20:34:08.010000"],["2024-07-25T20:34:09.010000"],["2024-07-25T20:34:10.010000"],["2024-07-25T20:34:11.010000"],["2024-07-25T20:34:12.010000"],["2024-07-25T20:34:13.010000"],["2024-07-25T20:34:14.010000"],["2024-07-25T20:34:15.010000"],["2024-07-25T20:34:16.010000"],["2024-07-25T20:34:17.010000"],["2024-07-25T20:34:18.010000"],["2024-07-25T20:34:19.010000"],["2024-07-25T20:34:20.010000"],["2024-07-25T20:34:21.010000"],["2024-07-25T20:34:22.010000"],["2024-07-25T20:34:23.010000"],["2024-07-25T20:34:24.010000"],["2024-07-25T20:34:25.010000"],["2024-07-25T20:34:26.010000"],["2024-07-25T20:34:27.010000"],["2024-07-25T20:34:28.010000"],["2024-07-25T20:34:29.010000"],["2024-07-25T20:34:30.010000"],["2024-07-25T20:34:31.010000"],["2024-07-25T20:34:32.010000"],["2024-07-25T20:34:33.010000"],["2024-07-25T20:34:34.010000"],["2024-07-25T20:34:35.010000"],["2024-07-25T20:34:36.010000"],["2024-07-25T20:34:37.010000"],["2024-07-25T20:34:38.010000"],["2024-07-25T20:34:39.010000"],["2024-07-25T20:34:40.010000"],["2024-07-25T20:34:41.010000"],["2024-07-25T20:34:42.010000"],["2024-07-25T20:34:43.010000"],["2024-07-25T20:34:44.010000"],["2024-07-25T20:34:45.010000"],["2024-07-25T20:34:46.010000"],["2024-07-25T20:34:47.010000"],["2024-07-25T20:34:48.010000"],["2024-07-25T20:34:49.010000"],["2024-07-25T20:34:50.010000"],["2024-07-25T20:34:51.010000"],["2024-07-25T20:34:52.010000"],["2024-07-25T20:34:53.010000"],["2024-07-25T20:34:54.010000"],["2024-07-25T20:34:55.010000"],["2024-07-25T20:34:56.010000"],["2024-07-25T20:34:57.010000"],["2024-07-25T20:34:58.010000"],["2024-07-25T20:34:59.010000"],["2024-07-25T20:35:00.010000"],["2024-07-25T20:35:01.010000"],["2024-07-25T20:35:02.010000"],["2024-07-25T20:35:03.010000"],["2024-07-25T20:35:04.010000"],["2024-07-25T20:35:05.010000"],["2024-07-25T20:35:06.010000"],["2024-07-25T20:35:07.010000"],["2024-07-25T20:35:08.010000"],["2024-07-25T20:35:09.010000"],["2024-07-25T20:35:10.010000"],["2024-07-25T20:35:11.010000"],["2024-07-25T20:35:12.010000"],["2024-07-25T20:35:13.010000"],["2024-07-25T20:35:14.010000"],["2024-07-25T20:35:15.010000"],["2024-07-25T20:35:16.010000"],["2024-07-25T20:35:17.010000"],["2024-07-25T20:35:18.010000"],["2024-07-25T20:35:19.010000"],["2024-07-25T20:35:20.010000"],["2024-07-25T20:35:21.010000"],["2024-07-25T20:35:22.010000"],["2024-07-25T20:35:23.010000"],["2024-07-25T20:35:24.010000"],["2024-07-25T20:35:25.010000"],["2024-07-25T20:35:26.010000"],["2024-07-25T20:35:27.010000"],["2024-07-25T20:35:28.010000"],["2024-07-25T20:35:29.010000"],["2024-07-25T20:35:30.010000"],["2024-07-25T20:35:31.010000"],["2024-07-25T20:35:32.010000"],["2024-07-25T20:35:33.010000"],["2024-07-25T20:35:34.010000"],["2024-07-25T20:35:35.010000"],["2024-07-25T20:35:36.010000"],["2024-07-25T20:35:37.010000"],["2024-07-25T20:35:38.010000"],["2024-07-25T20:35:39.010000"],["2024-07-25T20:35:40.010000"],["2024-07-25T20:35:41.010000"],["2024-07-25T20:35:42.010000"],["2024-07-25T20:35:43.010000"],["2024-07-25T20:35:44.010000"],["2024-07-25T20:35:45.010000"],["2024-07-25T20:35:46.010000"],["2024-07-25T20:35:47.010000"],["2024-07-25T20:35:48.010000"],["2024-07-25T20:35:49.010000"],["2024-07-25T20:35:50.010000"],["2024-07-25T20:35:51.010000"],["2024-07-25T20:35:52.010000"],["2024-07-25T20:35:53.010000"],["2024-07-25T20:35:54.010000"],["2024-07-25T20:35:55.010000"],["2024-07-25T20:35:56.010000"],["2024-07-25T20:35:57.010000"],["2024-07-25T20:35:58.010000"],["2024-07-25T20:35:59.010000"],["2024-07-25T20:36:00.010000"],["2024-07-25T20:36:01.010000"],["2024-07-25T20:36:02.010000"],["2024-07-25T20:36:03.010000"],["2024-07-25T20:36:04.010000"],["2024-07-25T20:36:05.010000"],["2024-07-25T20:36:06.010000"],["2024-07-25T20:36:07.010000"],["2024-07-25T20:36:08.010000"],["2024-07-25T20:36:09.010000"],["2024-07-25T20:36:10.010000"],["2024-07-25T20:36:11.010000"],["2024-07-25T20:36:12.010000"],["2024-07-25T20:36:13.010000"],["2024-07-25T20:36:14.010000"],["2024-07-25T20:36:15.010000"],["2024-07-25T20:36:16.010000"],["2024-07-25T20:36:17.010000"],["2024-07-25T20:36:18.010000"],["2024-07-25T20:36:19.010000"],["2024-07-25T20:36:20.010000"],["2024-07-25T20:36:21.010000"],["2024-07-25T20:36:22.010000"],["2024-07-25T20:36:23.010000"],["2024-07-25T20:36:24.010000"],["2024-07-25T20:36:25.010000"],["2024-07-25T20:36:26.010000"],["2024-07-25T20:36:27.010000"],["2024-07-25T20:36:28.010000"],["2024-07-25T20:36:29.010000"],["2024-07-25T20:36:30.010000"],["2024-07-25T20:36:31.010000"],["2024-07-25T20:36:32.010000"],["2024-07-25T20:36:33.010000"],["2024-07-25T20:36:34.010000"],["2024-07-25T20:36:35.010000"],["2024-07-25T20:36:36.010000"],["2024-07-25T20:36:37.010000"],["2024-07-25T20:36:38.010000"],["2024-07-25T20:36:39.010000"],["2024-07-25T20:36:40.010000"],["2024-07-25T20:36:41.010000"],["2024-07-25T20:36:42.010000"],["2024-07-25T20:36:43.010000"],["2024-07-25T20:36:44.010000"],["2024-07-25T20:36:45.010000"],["2024-07-25T20:36:46.010000"],["2024-07-25T20:36:47.010000"],["2024-07-25T20:36:48.010000"],["2024-07-25T20:36:49.010000"],["2024-07-25T20:36:50.010000"],["2024-07-25T20:36:51.010000"],["2024-07-25T20:36:52.010000"],["2024-07-25T20:36:53.010000"],["2024-07-25T20:36:54.010000"],["2024-07-25T20:36:55.010000"],["2024-07-25T20:36:56.010000"],["2024-07-25T20:36:57.010000"],["2024-07-25T20:36:58.010000"],["2024-07-25T20:36:59.010000"],["2024-07-25T20:37:00.010000"],["2024-07-25T20:37:01.010000"],["2024-07-25T20:37:02.010000"],["2024-07-25T20:37:03.010000"],["2024-07-25T20:37:04.010000"],["2024-07-25T20:37:05.010000"],["2024-07-25T20:37:06.010000"],["2024-07-25T20:37:07.010000"],["2024-07-25T20:37:08.010000"],["2024-07-25T20:37:09.010000"],["2024-07-25T20:37:10.010000"],["2024-07-25T20:37:11.010000"],["2024-07-25T20:37:12.010000"],["2024-07-25T20:37:13.010000"],["2024-07-25T20:37:14.010000"],["2024-07-25T20:37:15.010000"],["2024-07-25T20:37:16.010000"],["2024-07-25T20:37:17.010000"],["2024-07-25T20:37:18.010000"],["2024-07-25T20:37:19.010000"],["2024-07-25T20:37:20.010000"],["2024-07-25T20:37:21.010000"],["2024-07-25T20:37:22.010000"],["2024-07-25T20:37:23.010000"],["2024-07-25T20:37:24.010000"],["2024-07-25T20:37:25.010000"],["2024-07-25T20:37:26.010000"],["2024-07-25T20:37:27.010000"],["2024-07-25T20:37:28.010000"],["2024-07-25T20:37:29.010000"],["2024-07-25T20:37:30.010000"],["2024-07-25T20:37:31.010000"],["2024-07-25T20:37:32.010000"],["2024-07-25T20:37:33.010000"],["2024-07-25T20:37:34.010000"],["2024-07-25T20:37:35.010000"],["2024-07-25T20:37:36.010000"],["2024-07-25T20:37:37.010000"],["2024-07-25T20:37:38.010000"],["2024-07-25T20:37:39.010000"],["2024-07-25T20:37:40.010000"],["2024-07-25T20:37:41.010000"],["2024-07-25T20:37:42.010000"],["2024-07-25T20:37:43.010000"],["2024-07-25T20:37:44.010000"],["2024-07-25T20:37:45.010000"],["2024-07-25T20:37:46.010000"],["2024-07-25T20:37:47.010000"],["2024-07-25T20:37:48.010000"],["2024-07-25T20:37:49.010000"],["2024-07-25T20:37:50.010000"],["2024-07-25T20:37:51.010000"],["2024-07-25T20:37:52.010000"],["2024-07-25T20:37:53.010000"],["2024-07-25T20:37:54.010000"],["2024-07-25T20:37:55.010000"],["2024-07-25T20:37:56.010000"],["2024-07-25T20:37:57.010000"],["2024-07-25T20:37:58.010000"],["2024-07-25T20:37:59.010000"],["2024-07-25T20:38:00.010000"],["2024-07-25T20:38:01.010000"],["2024-07-25T20:38:02.010000"],["2024-07-25T20:38:03.010000"],["2024-07-25T20:38:04.010000"],["2024-07-25T20:38:05.010000"],["2024-07-25T20:38:06.010000"],["2024-07-25T20:38:07.010000"],["2024-07-25T20:38:08.010000"],["2024-07-25T20:38:09.010000"],["2024-07-25T20:38:10.010000"],["2024-07-25T20:38:11.010000"],["2024-07-25T20:38:12.010000"],["2024-07-25T20:38:13.010000"],["2024-07-25T20:38:14.010000"],["2024-07-25T20:38:15.010000"],["2024-07-25T20:38:16.010000"],["2024-07-25T20:38:17.010000"],["2024-07-25T20:38:18.010000"],["2024-07-25T20:38:19.010000"],["2024-07-25T20:38:20.010000"],["2024-07-25T20:38:21.010000"],["2024-07-25T20:38:22.010000"],["2024-07-25T20:38:23.010000"],["2024-07-25T20:38:24.010000"],["2024-07-25T20:38:25.010000"],["2024-07-25T20:38:26.010000"],["2024-07-25T20:38:27.010000"],["2024-07-25T20:38:28.010000"],["2024-07-25T20:38:29.010000"],["2024-07-25T20:38:30.010000"],["2024-07-25T20:38:31.010000"],["2024-07-25T20:38:32.010000"],["2024-07-25T20:38:33.010000"],["2024-07-25T20:38:34.010000"],["2024-07-25T20:38:35.010000"],["2024-07-25T20:38:36.010000"],["2024-07-25T20:38:37.010000"],["2024-07-25T20:38:38.010000"],["2024-07-25T20:38:39.010000"],["2024-07-25T20:38:40.010000"],["2024-07-25T20:38:41.010000"],["2024-07-25T20:38:42.010000"],["2024-07-25T20:38:43.010000"],["2024-07-25T20:38:44.010000"],["2024-07-25T20:38:45.010000"],["2024-07-25T20:38:46.010000"],["2024-07-25T20:38:47.010000"],["2024-07-25T20:38:48.010000"],["2024-07-25T20:38:49.010000"],["2024-07-25T20:38:50.010000"],["2024-07-25T20:38:51.010000"],["2024-07-25T20:38:52.010000"],["2024-07-25T20:38:53.010000"],["2024-07-25T20:38:54.010000"],["2024-07-25T20:38:55.010000"],["2024-07-25T20:38:56.010000"],["2024-07-25T20:38:57.010000"],["2024-07-25T20:38:58.010000"],["2024-07-25T20:38:59.010000"],["2024-07-25T20:39:00.010000"],["2024-07-25T20:39:01.010000"],["2024-07-25T20:39:02.010000"],["2024-07-25T20:39:03.010000"],["2024-07-25T20:39:04.010000"],["2024-07-25T20:39:05.010000"],["2024-07-25T20:39:06.010000"],["2024-07-25T20:39:07.010000"],["2024-07-25T20:39:08.010000"],["2024-07-25T20:39:09.010000"],["2024-07-25T20:39:10.010000"],["2024-07-25T20:39:11.010000"],["2024-07-25T20:39:12.010000"],["2024-07-25T20:39:13.010000"],["2024-07-25T20:39:14.010000"],["2024-07-25T20:39:15.010000"],["2024-07-25T20:39:16.010000"],["2024-07-25T20:39:17.010000"],["2024-07-25T20:39:18.010000"],["2024-07-25T20:39:19.010000"],["2024-07-25T20:39:20.010000"],["2024-07-25T20:39:21.010000"],["2024-07-25T20:39:22.010000"],["2024-07-25T20:39:23.010000"],["2024-07-25T20:39:24.010000"],["2024-07-25T20:39:25.010000"],["2024-07-25T20:39:26.010000"],["2024-07-25T20:39:27.010000"],["2024-07-25T20:39:28.010000"],["2024-07-25T20:39:29.010000"],["2024-07-25T20:39:30.010000"],["2024-07-25T20:39:31.010000"],["2024-07-25T20:39:32.010000"],["2024-07-25T20:39:33.010000"],["2024-07-25T20:39:34.010000"],["2024-07-25T20:39:35.010000"],["2024-07-25T20:39:36.010000"],["2024-07-25T20:39:37.010000"],["2024-07-25T20:39:38.010000"],["2024-07-25T20:39:39.010000"],["2024-07-25T20:39:40.010000"],["2024-07-25T20:39:41.010000"],["2024-07-25T20:39:42.010000"],["2024-07-25T20:39:43.010000"],["2024-07-25T20:39:44.010000"],["2024-07-25T20:39:45.010000"],["2024-07-25T20:39:46.010000"],["2024-07-25T20:39:47.010000"],["2024-07-25T20:39:48.010000"],["2024-07-25T20:39:49.010000"],["2024-07-25T20:39:50.010000"],["2024-07-25T20:39:51.010000"],["2024-07-25T20:39:52.010000"],["2024-07-25T20:39:53.010000"],["2024-07-25T20:39:54.010000"],["2024-07-25T20:39:55.010000"],["2024-07-25T20:39:56.010000"],["2024-07-25T20:39:57.010000"],["2024-07-25T20:39:58.010000"],["2024-07-25T20:39:59.010000"],["2024-07-25T20:40:00.010000"],["2024-07-25T20:40:01.010000"],["2024-07-25T20:40:02.010000"],["2024-07-25T20:40:03.010000"],["2024-07-25T20:40:04.010000"],["2024-07-25T20:40:05.010000"],["2024-07-25T20:40:06.010000"],["2024-07-25T20:40:07.010000"],["2024-07-25T20:40:08.010000"],["2024-07-25T20:40:09.010000"],["2024-07-25T20:40:10.010000"],["2024-07-25T20:40:11.010000"],["2024-07-25T20:40:12.010000"],["2024-07-25T20:40:13.010000"],["2024-07-25T20:40:14.010000"],["2024-07-25T20:40:15.010000"],["2024-07-25T20:40:16.010000"],["2024-07-25T20:40:17.010000"],["2024-07-25T20:40:18.010000"],["2024-07-25T20:40:19.010000"],["2024-07-25T20:40:20.010000"],["2024-07-25T20:40:21.010000"],["2024-07-25T20:40:22.010000"],["2024-07-25T20:40:23.010000"],["2024-07-25T20:40:24.010000"],["2024-07-25T20:40:25.010000"],["2024-07-25T20:40:26.010000"],["2024-07-25T20:40:27.010000"],["2024-07-25T20:40:28.010000"],["2024-07-25T20:40:29.010000"],["2024-07-25T20:40:30.010000"],["2024-07-25T20:40:31.010000"],["2024-07-25T20:40:32.010000"],["2024-07-25T20:40:33.010000"],["2024-07-25T20:40:34.010000"],["2024-07-25T20:40:35.010000"],["2024-07-25T20:40:36.010000"],["2024-07-25T20:40:37.010000"],["2024-07-25T20:40:38.010000"],["2024-07-25T20:40:39.010000"],["2024-07-25T20:40:40.010000"],["2024-07-25T20:40:41.010000"],["2024-07-25T20:40:42.010000"],["2024-07-25T20:40:43.010000"],["2024-07-25T20:40:44.010000"],["2024-07-25T20:40:45.010000"],["2024-07-25T20:40:46.010000"],["2024-07-25T20:40:47.010000"],["2024-07-25T20:40:48.010000"],["2024-07-25T20:40:49.010000"],["2024-07-25T20:40:50.010000"],["2024-07-25T20:40:51.010000"],["2024-07-25T20:40:52.010000"],["2024-07-25T20:40:53.010000"],["2024-07-25T20:40:54.010000"],["2024-07-25T20:40:55.010000"],["2024-07-25T20:40:56.010000"],["2024-07-25T20:40:57.010000"],["2024-07-25T20:40:58.010000"],["2024-07-25T20:40:59.010000"],["2024-07-25T20:41:00.010000"],["2024-07-25T20:41:01.010000"],["2024-07-25T20:41:02.010000"],["2024-07-25T20:41:03.010000"],["2024-07-25T20:41:04.010000"],["2024-07-25T20:41:05.010000"],["2024-07-25T20:41:06.010000"],["2024-07-25T20:41:07.010000"],["2024-07-25T20:41:08.010000"],["2024-07-25T20:41:09.010000"],["2024-07-25T20:41:10.010000"],["2024-07-25T20:41:11.010000"],["2024-07-25T20:41:12.010000"],["2024-07-25T20:41:13.010000"],["2024-07-25T20:41:14.010000"],["2024-07-25T20:41:15.010000"],["2024-07-25T20:41:16.010000"],["2024-07-25T20:41:17.010000"],["2024-07-25T20:41:18.010000"],["2024-07-25T20:41:19.010000"],["2024-07-25T20:41:20.010000"],["2024-07-25T20:41:21.010000"],["2024-07-25T20:41:22.010000"],["2024-07-25T20:41:23.010000"],["2024-07-25T20:41:24.010000"],["2024-07-25T20:41:25.010000"],["2024-07-25T20:41:26.010000"],["2024-07-25T20:41:27.010000"],["2024-07-25T20:41:28.010000"],["2024-07-25T20:41:29.010000"],["2024-07-25T20:41:30.010000"],["2024-07-25T20:41:31.010000"],["2024-07-25T20:41:32.010000"],["2024-07-25T20:41:33.010000"],["2024-07-25T20:41:34.010000"],["2024-07-25T20:41:35.010000"],["2024-07-25T20:41:36.010000"],["2024-07-25T20:41:37.010000"],["2024-07-25T20:41:38.010000"],["2024-07-25T20:41:39.010000"],["2024-07-25T20:41:40.010000"],["2024-07-25T20:41:41.010000"],["2024-07-25T20:41:42.010000"],["2024-07-25T20:41:43.010000"],["2024-07-25T20:41:44.010000"],["2024-07-25T20:41:45.010000"],["2024-07-25T20:41:46.010000"],["2024-07-25T20:41:47.010000"],["2024-07-25T20:41:48.010000"],["2024-07-25T20:41:49.010000"],["2024-07-25T20:41:50.010000"],["2024-07-25T20:41:51.010000"],["2024-07-25T20:41:52.010000"],["2024-07-25T20:41:53.010000"],["2024-07-25T20:41:54.010000"],["2024-07-25T20:41:55.010000"],["2024-07-25T20:41:56.010000"],["2024-07-25T20:41:57.010000"],["2024-07-25T20:41:58.010000"],["2024-07-25T20:41:59.010000"],["2024-07-25T20:42:00.010000"],["2024-07-25T20:42:01.010000"],["2024-07-25T20:42:02.010000"],["2024-07-25T20:42:03.010000"],["2024-07-25T20:42:04.010000"],["2024-07-25T20:42:05.010000"],["2024-07-25T20:42:06.010000"],["2024-07-25T20:42:07.010000"],["2024-07-25T20:42:08.010000"],["2024-07-25T20:42:09.010000"],["2024-07-25T20:42:10.010000"],["2024-07-25T20:42:11.010000"],["2024-07-25T20:42:12.010000"],["2024-07-25T20:42:13.010000"],["2024-07-25T20:42:14.010000"],["2024-07-25T20:42:15.010000"],["2024-07-25T20:42:16.010000"],["2024-07-25T20:42:17.010000"],["2024-07-25T20:42:18.010000"],["2024-07-25T20:42:19.010000"],["2024-07-25T20:42:20.010000"],["2024-07-25T20:42:21.010000"],["2024-07-25T20:42:22.010000"],["2024-07-25T20:42:23.010000"],["2024-07-25T20:42:24.010000"],["2024-07-25T20:42:25.010000"],["2024-07-25T20:42:26.010000"],["2024-07-25T20:42:27.010000"],["2024-07-25T20:42:28.010000"],["2024-07-25T20:42:29.010000"],["2024-07-25T20:42:30.010000"],["2024-07-25T20:42:31.010000"],["2024-07-25T20:42:32.010000"],["2024-07-25T20:42:33.010000"],["2024-07-25T20:42:34.010000"],["2024-07-25T20:42:35.010000"],["2024-07-25T20:42:36.010000"],["2024-07-25T20:42:37.010000"],["2024-07-25T20:42:38.010000"],["2024-07-25T20:42:39.010000"],["2024-07-25T20:42:40.010000"],["2024-07-25T20:42:41.010000"],["2024-07-25T20:42:42.010000"],["2024-07-25T20:42:43.010000"],["2024-07-25T20:42:44.010000"],["2024-07-25T20:42:45.010000"],["2024-07-25T20:42:46.010000"],["2024-07-25T20:42:47.010000"],["2024-07-25T20:42:48.010000"],["2024-07-25T20:42:49.010000"],["2024-07-25T20:42:50.010000"],["2024-07-25T20:42:51.010000"],["2024-07-25T20:42:52.010000"],["2024-07-25T20:42:53.010000"],["2024-07-25T20:42:54.010000"],["2024-07-25T20:42:55.010000"],["2024-07-25T20:42:56.010000"],["2024-07-25T20:42:57.010000"],["2024-07-25T20:42:58.010000"],["2024-07-25T20:42:59.010000"],["2024-07-25T20:43:00.010000"],["2024-07-25T20:43:01.010000"],["2024-07-25T20:43:02.010000"],["2024-07-25T20:43:03.010000"],["2024-07-25T20:43:04.010000"],["2024-07-25T20:43:05.010000"],["2024-07-25T20:43:06.010000"],["2024-07-25T20:43:07.010000"],["2024-07-25T20:43:08.010000"],["2024-07-25T20:43:09.010000"],["2024-07-25T20:43:10.010000"],["2024-07-25T20:43:11.010000"],["2024-07-25T20:43:12.010000"],["2024-07-25T20:43:13.010000"],["2024-07-25T20:43:14.010000"],["2024-07-25T20:43:15.010000"],["2024-07-25T20:43:16.010000"],["2024-07-25T20:43:17.010000"],["2024-07-25T20:43:18.010000"],["2024-07-25T20:43:19.010000"],["2024-07-25T20:43:20.010000"],["2024-07-25T20:43:21.010000"],["2024-07-25T20:43:22.010000"],["2024-07-25T20:43:23.010000"],["2024-07-25T20:43:24.010000"],["2024-07-25T20:43:25.010000"],["2024-07-25T20:43:26.010000"],["2024-07-25T20:43:27.010000"],["2024-07-25T20:43:28.010000"],["2024-07-25T20:43:29.010000"],["2024-07-25T20:43:30.010000"],["2024-07-25T20:43:31.010000"],["2024-07-25T20:43:32.010000"],["2024-07-25T20:43:33.010000"],["2024-07-25T20:43:34.010000"],["2024-07-25T20:43:35.010000"],["2024-07-25T20:43:36.010000"],["2024-07-25T20:43:37.010000"],["2024-07-25T20:43:38.010000"],["2024-07-25T20:43:39.010000"],["2024-07-25T20:43:40.010000"],["2024-07-25T20:43:41.010000"],["2024-07-25T20:43:42.010000"],["2024-07-25T20:43:43.010000"],["2024-07-25T20:43:44.010000"],["2024-07-25T20:43:45.010000"],["2024-07-25T20:43:46.010000"],["2024-07-25T20:43:47.010000"],["2024-07-25T20:43:48.010000"],["2024-07-25T20:43:49.010000"],["2024-07-25T20:43:50.010000"],["2024-07-25T20:43:51.010000"],["2024-07-25T20:43:52.010000"],["2024-07-25T20:43:53.010000"],["2024-07-25T20:43:54.010000"],["2024-07-25T20:43:55.010000"],["2024-07-25T20:43:56.010000"],["2024-07-25T20:43:57.010000"],["2024-07-25T20:43:58.010000"],["2024-07-25T20:43:59.010000"],["2024-07-25T20:44:00.010000"],["2024-07-25T20:44:01.010000"],["2024-07-25T20:44:02.010000"],["2024-07-25T20:44:03.010000"],["2024-07-25T20:44:04.010000"],["2024-07-25T20:44:05.010000"],["2024-07-25T20:44:06.010000"],["2024-07-25T20:44:07.010000"],["2024-07-25T20:44:08.010000"],["2024-07-25T20:44:09.010000"],["2024-07-25T20:44:10.010000"],["2024-07-25T20:44:11.010000"],["2024-07-25T20:44:12.010000"],["2024-07-25T20:44:13.010000"],["2024-07-25T20:44:14.010000"],["2024-07-25T20:44:15.010000"],["2024-07-25T20:44:16.010000"],["2024-07-25T20:44:17.010000"],["2024-07-25T20:44:18.010000"],["2024-07-25T20:44:19.010000"],["2024-07-25T20:44:20.010000"],["2024-07-25T20:44:21.010000"],["2024-07-25T20:44:22.010000"],["2024-07-25T20:44:23.010000"],["2024-07-25T20:44:24.010000"],["2024-07-25T20:44:25.010000"],["2024-07-25T20:44:26.010000"],["2024-07-25T20:44:27.010000"],["2024-07-25T20:44:28.010000"],["2024-07-25T20:44:29.010000"],["2024-07-25T20:44:30.010000"],["2024-07-25T20:44:31.010000"],["2024-07-25T20:44:32.010000"],["2024-07-25T20:44:33.010000"],["2024-07-25T20:44:34.010000"],["2024-07-25T20:44:35.010000"],["2024-07-25T20:44:36.010000"],["2024-07-25T20:44:37.010000"],["2024-07-25T20:44:38.010000"],["2024-07-25T20:44:39.010000"],["2024-07-25T20:44:40.010000"],["2024-07-25T20:44:41.010000"],["2024-07-25T20:44:42.010000"],["2024-07-25T20:44:43.010000"],["2024-07-25T20:44:44.010000"],["2024-07-25T20:44:45.010000"],["2024-07-25T20:44:46.010000"],["2024-07-25T20:44:47.010000"],["2024-07-25T20:44:48.010000"],["2024-07-25T20:44:49.010000"],["2024-07-25T20:44:50.010000"],["2024-07-25T20:44:51.010000"],["2024-07-25T20:44:52.010000"],["2024-07-25T20:44:53.010000"],["2024-07-25T20:44:54.010000"],["2024-07-25T20:44:55.010000"],["2024-07-25T20:44:56.010000"],["2024-07-25T20:44:57.010000"],["2024-07-25T20:44:58.010000"],["2024-07-25T20:44:59.010000"],["2024-07-25T20:45:00.010000"],["2024-07-25T20:45:01.010000"],["2024-07-25T20:45:02.010000"],["2024-07-25T20:45:03.010000"],["2024-07-25T20:45:04.010000"],["2024-07-25T20:45:05.010000"],["2024-07-25T20:45:06.010000"],["2024-07-25T20:45:07.010000"],["2024-07-25T20:45:08.010000"],["2024-07-25T20:45:09.010000"],["2024-07-25T20:45:10.010000"],["2024-07-25T20:45:11.010000"],["2024-07-25T20:45:12.010000"],["2024-07-25T20:45:13.010000"],["2024-07-25T20:45:14.010000"],["2024-07-25T20:45:15.010000"],["2024-07-25T20:45:16.010000"],["2024-07-25T20:45:17.010000"],["2024-07-25T20:45:18.010000"],["2024-07-25T20:45:19.010000"],["2024-07-25T20:45:20.010000"],["2024-07-25T20:45:21.010000"],["2024-07-25T20:45:22.010000"],["2024-07-25T20:45:23.010000"],["2024-07-25T20:45:24.010000"],["2024-07-25T20:45:25.010000"],["2024-07-25T20:45:26.010000"],["2024-07-25T20:45:27.010000"],["2024-07-25T20:45:28.010000"],["2024-07-25T20:45:29.010000"],["2024-07-25T20:45:30.010000"],["2024-07-25T20:45:31.010000"],["2024-07-25T20:45:32.010000"],["2024-07-25T20:45:33.010000"],["2024-07-25T20:45:34.010000"],["2024-07-25T20:45:35.010000"],["2024-07-25T20:45:36.010000"],["2024-07-25T20:45:37.010000"],["2024-07-25T20:45:38.010000"],["2024-07-25T20:45:39.010000"],["2024-07-25T20:45:40.010000"],["2024-07-25T20:45:41.010000"],["2024-07-25T20:45:42.010000"],["2024-07-25T20:45:43.010000"],["2024-07-25T20:45:44.010000"],["2024-07-25T20:45:45.010000"],["2024-07-25T20:45:46.010000"],["2024-07-25T20:45:47.010000"],["2024-07-25T20:45:48.010000"],["2024-07-25T20:45:49.010000"],["2024-07-25T20:45:50.010000"],["2024-07-25T20:45:51.010000"],["2024-07-25T20:45:52.010000"],["2024-07-25T20:45:53.010000"],["2024-07-25T20:45:54.010000"],["2024-07-25T20:45:55.010000"],["2024-07-25T20:45:56.010000"],["2024-07-25T20:45:57.010000"],["2024-07-25T20:45:58.010000"],["2024-07-25T20:45:59.010000"],["2024-07-25T20:46:00.010000"],["2024-07-25T20:46:01.010000"],["2024-07-25T20:46:02.010000"],["2024-07-25T20:46:03.010000"],["2024-07-25T20:46:04.010000"],["2024-07-25T20:46:05.010000"],["2024-07-25T20:46:06.010000"],["2024-07-25T20:46:07.010000"],["2024-07-25T20:46:08.010000"],["2024-07-25T20:46:09.010000"],["2024-07-25T20:46:10.010000"],["2024-07-25T20:46:11.010000"],["2024-07-25T20:46:12.010000"],["2024-07-25T20:46:13.010000"],["2024-07-25T20:46:14.010000"],["2024-07-25T20:46:15.010000"],["2024-07-25T20:46:16.010000"],["2024-07-25T20:46:17.010000"],["2024-07-25T20:46:18.010000"],["2024-07-25T20:46:19.010000"],["2024-07-25T20:46:20.010000"],["2024-07-25T20:46:21.010000"],["2024-07-25T20:46:22.010000"],["2024-07-25T20:46:23.010000"],["2024-07-25T20:46:24.010000"],["2024-07-25T20:46:25.010000"],["2024-07-25T20:46:26.010000"],["2024-07-25T20:46:27.010000"],["2024-07-25T20:46:28.010000"],["2024-07-25T20:46:29.010000"],["2024-07-25T20:46:30.010000"],["2024-07-25T20:46:31.010000"],["2024-07-25T20:46:32.010000"],["2024-07-25T20:46:33.010000"],["2024-07-25T20:46:34.010000"],["2024-07-25T20:46:35.010000"],["2024-07-25T20:46:36.010000"],["2024-07-25T20:46:37.010000"],["2024-07-25T20:46:38.010000"],["2024-07-25T20:46:39.010000"],["2024-07-25T20:46:40.010000"],["2024-07-25T20:46:41.010000"],["2024-07-25T20:46:42.010000"],["2024-07-25T20:46:43.010000"],["2024-07-25T20:46:44.010000"],["2024-07-25T20:46:45.010000"],["2024-07-25T20:46:46.010000"],["2024-07-25T20:46:47.010000"],["2024-07-25T20:46:48.010000"],["2024-07-25T20:46:49.010000"],["2024-07-25T20:46:50.010000"],["2024-07-25T20:46:51.010000"],["2024-07-25T20:46:52.010000"],["2024-07-25T20:46:53.010000"],["2024-07-25T20:46:54.010000"],["2024-07-25T20:46:55.010000"],["2024-07-25T20:46:56.010000"],["2024-07-25T20:46:57.010000"],["2024-07-25T20:46:58.010000"],["2024-07-25T20:46:59.010000"],["2024-07-25T20:47:00.010000"],["2024-07-25T20:47:01.010000"],["2024-07-25T20:47:02.010000"],["2024-07-25T20:47:03.010000"],["2024-07-25T20:47:04.010000"],["2024-07-25T20:47:05.010000"],["2024-07-25T20:47:06.010000"],["2024-07-25T20:47:07.010000"],["2024-07-25T20:47:08.010000"],["2024-07-25T20:47:09.010000"],["2024-07-25T20:47:10.010000"],["2024-07-25T20:47:11.010000"],["2024-07-25T20:47:12.010000"],["2024-07-25T20:47:13.010000"],["2024-07-25T20:47:14.010000"],["2024-07-25T20:47:15.010000"],["2024-07-25T20:47:16.010000"],["2024-07-25T20:47:17.010000"],["2024-07-25T20:47:18.010000"],["2024-07-25T20:47:19.010000"],["2024-07-25T20:47:20.010000"],["2024-07-25T20:47:21.010000"],["2024-07-25T20:47:22.010000"],["2024-07-25T20:47:23.010000"],["2024-07-25T20:47:24.010000"],["2024-07-25T20:47:25.010000"],["2024-07-25T20:47:26.010000"],["2024-07-25T20:47:27.010000"],["2024-07-25T20:47:28.010000"],["2024-07-25T20:47:29.010000"],["2024-07-25T20:47:30.010000"],["2024-07-25T20:47:31.010000"],["2024-07-25T20:47:32.010000"],["2024-07-25T20:47:33.010000"],["2024-07-25T20:47:34.010000"],["2024-07-25T20:47:35.010000"],["2024-07-25T20:47:36.010000"],["2024-07-25T20:47:37.010000"],["2024-07-25T20:47:38.010000"],["2024-07-25T20:47:39.010000"],["2024-07-25T20:47:40.010000"],["2024-07-25T20:47:41.010000"],["2024-07-25T20:47:42.010000"],["2024-07-25T20:47:43.010000"],["2024-07-25T20:47:44.010000"],["2024-07-25T20:47:45.010000"],["2024-07-25T20:47:46.010000"],["2024-07-25T20:47:47.010000"],["2024-07-25T20:47:48.010000"],["2024-07-25T20:47:49.010000"],["2024-07-25T20:47:50.010000"],["2024-07-25T20:47:51.010000"],["2024-07-25T20:47:52.010000"],["2024-07-25T20:47:53.010000"],["2024-07-25T20:47:54.010000"],["2024-07-25T20:47:55.010000"],["2024-07-25T20:47:56.010000"],["2024-07-25T20:47:57.010000"],["2024-07-25T20:47:58.010000"],["2024-07-25T20:47:59.010000"],["2024-07-25T20:48:00.010000"],["2024-07-25T20:48:01.010000"],["2024-07-25T20:48:02.010000"],["2024-07-25T20:48:03.010000"],["2024-07-25T20:48:04.010000"],["2024-07-25T20:48:05.010000"],["2024-07-25T20:48:06.010000"],["2024-07-25T20:48:07.010000"],["2024-07-25T20:48:08.010000"],["2024-07-25T20:48:09.010000"],["2024-07-25T20:48:10.010000"],["2024-07-25T20:48:11.010000"],["2024-07-25T20:48:12.010000"],["2024-07-25T20:48:13.010000"],["2024-07-25T20:48:14.010000"],["2024-07-25T20:48:15.010000"],["2024-07-25T20:48:16.010000"],["2024-07-25T20:48:17.010000"],["2024-07-25T20:48:18.010000"],["2024-07-25T20:48:19.010000"],["2024-07-25T20:48:20.010000"],["2024-07-25T20:48:21.010000"],["2024-07-25T20:48:22.010000"],["2024-07-25T20:48:23.010000"],["2024-07-25T20:48:24.010000"],["2024-07-25T20:48:25.010000"],["2024-07-25T20:48:26.010000"],["2024-07-25T20:48:27.010000"],["2024-07-25T20:48:28.010000"],["2024-07-25T20:48:29.010000"],["2024-07-25T20:48:30.010000"],["2024-07-25T20:48:31.010000"],["2024-07-25T20:48:32.010000"],["2024-07-25T20:48:33.010000"],["2024-07-25T20:48:34.010000"],["2024-07-25T20:48:35.010000"],["2024-07-25T20:48:36.010000"],["2024-07-25T20:48:37.010000"],["2024-07-25T20:48:38.010000"],["2024-07-25T20:48:39.010000"],["2024-07-25T20:48:40.010000"],["2024-07-25T20:48:41.010000"],["2024-07-25T20:48:42.010000"],["2024-07-25T20:48:43.010000"],["2024-07-25T20:48:44.010000"],["2024-07-25T20:48:45.010000"],["2024-07-25T20:48:46.010000"],["2024-07-25T20:48:47.010000"],["2024-07-25T20:48:48.010000"],["2024-07-25T20:48:49.010000"],["2024-07-25T20:48:50.010000"],["2024-07-25T20:48:51.010000"],["2024-07-25T20:48:52.010000"],["2024-07-25T20:48:53.010000"],["2024-07-25T20:48:54.010000"],["2024-07-25T20:48:55.010000"],["2024-07-25T20:48:56.010000"],["2024-07-25T20:48:57.010000"],["2024-07-25T20:48:58.010000"],["2024-07-25T20:48:59.010000"],["2024-07-25T20:49:00.010000"],["2024-07-25T20:49:01.010000"],["2024-07-25T20:49:02.010000"],["2024-07-25T20:49:03.010000"],["2024-07-25T20:49:04.010000"],["2024-07-25T20:49:05.010000"],["2024-07-25T20:49:06.010000"],["2024-07-25T20:49:07.010000"],["2024-07-25T20:49:08.010000"],["2024-07-25T20:49:09.010000"],["2024-07-25T20:49:10.010000"],["2024-07-25T20:49:11.010000"],["2024-07-25T20:49:12.010000"],["2024-07-25T20:49:13.010000"],["2024-07-25T20:49:14.010000"],["2024-07-25T20:49:15.010000"],["2024-07-25T20:49:16.010000"],["2024-07-25T20:49:17.010000"],["2024-07-25T20:49:18.010000"],["2024-07-25T20:49:19.010000"],["2024-07-25T20:49:20.010000"],["2024-07-25T20:49:21.010000"],["2024-07-25T20:49:22.010000"],["2024-07-25T20:49:23.010000"],["2024-07-25T20:49:24.010000"],["2024-07-25T20:49:25.010000"],["2024-07-25T20:49:26.010000"],["2024-07-25T20:49:27.010000"],["2024-07-25T20:49:28.010000"],["2024-07-25T20:49:29.010000"],["2024-07-25T20:49:30.010000"],["2024-07-25T20:49:31.010000"],["2024-07-25T20:49:32.010000"],["2024-07-25T20:49:33.010000"],["2024-07-25T20:49:34.010000"],["2024-07-25T20:49:35.010000"],["2024-07-25T20:49:36.010000"],["2024-07-25T20:49:37.010000"],["2024-07-25T20:49:38.010000"],["2024-07-25T20:49:39.010000"],["2024-07-25T20:49:40.010000"],["2024-07-25T20:49:41.010000"],["2024-07-25T20:49:42.010000"],["2024-07-25T20:49:43.010000"],["2024-07-25T20:49:44.010000"],["2024-07-25T20:49:45.010000"],["2024-07-25T20:49:46.010000"],["2024-07-25T20:49:47.010000"],["2024-07-25T20:49:48.010000"],["2024-07-25T20:49:49.010000"],["2024-07-25T20:49:50.010000"],["2024-07-25T20:49:51.010000"],["2024-07-25T20:49:52.010000"],["2024-07-25T20:49:53.010000"],["2024-07-25T20:49:54.010000"],["2024-07-25T20:49:55.010000"],["2024-07-25T20:49:56.010000"],["2024-07-25T20:49:57.010000"],["2024-07-25T20:49:58.010000"],["2024-07-25T20:49:59.010000"],["2024-07-25T20:50:00.010000"],["2024-07-25T20:50:01.010000"],["2024-07-25T20:50:02.010000"],["2024-07-25T20:50:03.010000"],["2024-07-25T20:50:04.010000"],["2024-07-25T20:50:05.010000"],["2024-07-25T20:50:06.010000"],["2024-07-25T20:50:07.010000"],["2024-07-25T20:50:08.010000"],["2024-07-25T20:50:09.010000"],["2024-07-25T20:50:10.010000"],["2024-07-25T20:50:11.010000"],["2024-07-25T20:50:12.010000"],["2024-07-25T20:50:13.010000"],["2024-07-25T20:50:14.010000"],["2024-07-25T20:50:15.010000"],["2024-07-25T20:50:16.010000"],["2024-07-25T20:50:17.010000"],["2024-07-25T20:50:18.010000"],["2024-07-25T20:50:19.010000"],["2024-07-25T20:50:20.010000"],["2024-07-25T20:50:21.010000"],["2024-07-25T20:50:22.010000"],["2024-07-25T20:50:23.010000"],["2024-07-25T20:50:24.010000"],["2024-07-25T20:50:25.010000"],["2024-07-25T20:50:26.010000"],["2024-07-25T20:50:27.010000"],["2024-07-25T20:50:28.010000"],["2024-07-25T20:50:29.010000"],["2024-07-25T20:50:30.010000"],["2024-07-25T20:50:31.010000"],["2024-07-25T20:50:32.010000"],["2024-07-25T20:50:33.010000"],["2024-07-25T20:50:34.010000"],["2024-07-25T20:50:35.010000"],["2024-07-25T20:50:36.010000"],["2024-07-25T20:50:37.010000"],["2024-07-25T20:50:38.010000"],["2024-07-25T20:50:39.010000"],["2024-07-25T20:50:40.010000"],["2024-07-25T20:50:41.010000"],["2024-07-25T20:50:42.010000"],["2024-07-25T20:50:43.010000"],["2024-07-25T20:50:44.010000"],["2024-07-25T20:50:45.010000"],["2024-07-25T20:50:46.010000"],["2024-07-25T20:50:47.010000"],["2024-07-25T20:50:48.010000"],["2024-07-25T20:50:49.010000"],["2024-07-25T20:50:50.010000"],["2024-07-25T20:50:51.010000"],["2024-07-25T20:50:52.010000"],["2024-07-25T20:50:53.010000"],["2024-07-25T20:50:54.010000"],["2024-07-25T20:50:55.010000"],["2024-07-25T20:50:56.010000"],["2024-07-25T20:50:57.010000"],["2024-07-25T20:50:58.010000"],["2024-07-25T20:50:59.010000"],["2024-07-25T20:51:00.010000"],["2024-07-25T20:51:01.010000"],["2024-07-25T20:51:02.010000"],["2024-07-25T20:51:03.010000"],["2024-07-25T20:51:04.010000"],["2024-07-25T20:51:05.010000"],["2024-07-25T20:51:06.010000"],["2024-07-25T20:51:07.010000"],["2024-07-25T20:51:08.010000"],["2024-07-25T20:51:09.010000"],["2024-07-25T20:51:10.010000"],["2024-07-25T20:51:11.010000"],["2024-07-25T20:51:12.010000"],["2024-07-25T20:51:13.010000"],["2024-07-25T20:51:14.010000"],["2024-07-25T20:51:15.010000"],["2024-07-25T20:51:16.010000"],["2024-07-25T20:51:17.010000"],["2024-07-25T20:51:18.010000"],["2024-07-25T20:51:19.010000"],["2024-07-25T20:51:20.010000"],["2024-07-25T20:51:21.010000"],["2024-07-25T20:51:22.010000"],["2024-07-25T20:51:23.010000"],["2024-07-25T20:51:24.010000"],["2024-07-25T20:51:25.010000"],["2024-07-25T20:51:26.010000"],["2024-07-25T20:51:27.010000"],["2024-07-25T20:51:28.010000"],["2024-07-25T20:51:29.010000"],["2024-07-25T20:51:30.010000"],["2024-07-25T20:51:31.010000"],["2024-07-25T20:51:32.010000"],["2024-07-25T20:51:33.010000"],["2024-07-25T20:51:34.010000"],["2024-07-25T20:51:35.010000"],["2024-07-25T20:51:36.010000"],["2024-07-25T20:51:37.010000"],["2024-07-25T20:51:38.010000"],["2024-07-25T20:51:39.010000"],["2024-07-25T20:51:40.010000"],["2024-07-25T20:51:41.010000"],["2024-07-25T20:51:42.010000"],["2024-07-25T20:51:43.010000"],["2024-07-25T20:51:44.010000"],["2024-07-25T20:51:45.010000"],["2024-07-25T20:51:46.010000"],["2024-07-25T20:51:47.010000"],["2024-07-25T20:51:48.010000"],["2024-07-25T20:51:49.010000"],["2024-07-25T20:51:50.010000"],["2024-07-25T20:51:51.010000"],["2024-07-25T20:51:52.010000"],["2024-07-25T20:51:53.010000"],["2024-07-25T20:51:54.010000"],["2024-07-25T20:51:55.010000"],["2024-07-25T20:51:56.010000"],["2024-07-25T20:51:57.010000"],["2024-07-25T20:51:58.010000"],["2024-07-25T20:51:59.010000"],["2024-07-25T20:52:00.010000"],["2024-07-25T20:52:01.010000"],["2024-07-25T20:52:02.010000"],["2024-07-25T20:52:03.010000"],["2024-07-25T20:52:04.010000"],["2024-07-25T20:52:05.010000"],["2024-07-25T20:52:06.010000"],["2024-07-25T20:52:07.010000"],["2024-07-25T20:52:08.010000"],["2024-07-25T20:52:09.010000"],["2024-07-25T20:52:10.010000"],["2024-07-25T20:52:11.010000"],["2024-07-25T20:52:12.010000"],["2024-07-25T20:52:13.010000"],["2024-07-25T20:52:14.010000"],["2024-07-25T20:52:15.010000"],["2024-07-25T20:52:16.010000"],["2024-07-25T20:52:17.010000"],["2024-07-25T20:52:18.010000"],["2024-07-25T20:52:19.010000"],["2024-07-25T20:52:20.010000"],["2024-07-25T20:52:21.010000"],["2024-07-25T20:52:22.010000"],["2024-07-25T20:52:23.010000"],["2024-07-25T20:52:24.010000"],["2024-07-25T20:52:25.010000"],["2024-07-25T20:52:26.010000"],["2024-07-25T20:52:27.010000"],["2024-07-25T20:52:28.010000"],["2024-07-25T20:52:29.010000"],["2024-07-25T20:52:30.010000"],["2024-07-25T20:52:31.010000"],["2024-07-25T20:52:32.010000"],["2024-07-25T20:52:33.010000"],["2024-07-25T20:52:34.010000"],["2024-07-25T20:52:35.010000"],["2024-07-25T20:52:36.010000"],["2024-07-25T20:52:37.010000"],["2024-07-25T20:52:38.010000"],["2024-07-25T20:52:39.010000"],["2024-07-25T20:52:40.010000"],["2024-07-25T20:52:41.010000"],["2024-07-25T20:52:42.010000"],["2024-07-25T20:52:43.010000"],["2024-07-25T20:52:44.010000"],["2024-07-25T20:52:45.010000"],["2024-07-25T20:52:46.010000"],["2024-07-25T20:52:47.010000"],["2024-07-25T20:52:48.010000"],["2024-07-25T20:52:49.010000"],["2024-07-25T20:52:50.010000"],["2024-07-25T20:52:51.010000"],["2024-07-25T20:52:52.010000"],["2024-07-25T20:52:53.010000"],["2024-07-25T20:52:54.010000"],["2024-07-25T20:52:55.010000"],["2024-07-25T20:52:56.010000"],["2024-07-25T20:52:57.010000"],["2024-07-25T20:52:58.010000"],["2024-07-25T20:52:59.010000"],["2024-07-25T20:53:00.010000"],["2024-07-25T20:53:01.010000"],["2024-07-25T20:53:02.010000"],["2024-07-25T20:53:03.010000"],["2024-07-25T20:53:04.010000"],["2024-07-25T20:53:05.010000"],["2024-07-25T20:53:06.010000"],["2024-07-25T20:53:07.010000"],["2024-07-25T20:53:08.010000"],["2024-07-25T20:53:09.010000"],["2024-07-25T20:53:10.010000"],["2024-07-25T20:53:11.010000"],["2024-07-25T20:53:12.010000"],["2024-07-25T20:53:13.010000"],["2024-07-25T20:53:14.010000"],["2024-07-25T20:53:15.010000"],["2024-07-25T20:53:16.010000"],["2024-07-25T20:53:17.010000"],["2024-07-25T20:53:18.010000"],["2024-07-25T20:53:19.010000"],["2024-07-25T20:53:20.010000"],["2024-07-25T20:53:21.010000"],["2024-07-25T20:53:22.010000"],["2024-07-25T20:53:23.010000"],["2024-07-25T20:53:24.010000"],["2024-07-25T20:53:25.010000"],["2024-07-25T20:53:26.010000"],["2024-07-25T20:53:27.010000"],["2024-07-25T20:53:28.010000"],["2024-07-25T20:53:29.010000"],["2024-07-25T20:53:30.010000"],["2024-07-25T20:53:31.010000"],["2024-07-25T20:53:32.010000"],["2024-07-25T20:53:33.010000"],["2024-07-25T20:53:34.010000"],["2024-07-25T20:53:35.010000"],["2024-07-25T20:53:36.010000"],["2024-07-25T20:53:37.010000"],["2024-07-25T20:53:38.010000"],["2024-07-25T20:53:39.010000"],["2024-07-25T20:53:40.010000"],["2024-07-25T20:53:41.010000"],["2024-07-25T20:53:42.010000"],["2024-07-25T20:53:43.010000"],["2024-07-25T20:53:44.010000"],["2024-07-25T20:53:45.010000"],["2024-07-25T20:53:46.010000"],["2024-07-25T20:53:47.010000"],["2024-07-25T20:53:48.010000"],["2024-07-25T20:53:49.010000"],["2024-07-25T20:53:50.010000"],["2024-07-25T20:53:51.010000"],["2024-07-25T20:53:52.010000"],["2024-07-25T20:53:53.010000"],["2024-07-25T20:53:54.010000"],["2024-07-25T20:53:55.010000"],["2024-07-25T20:53:56.010000"],["2024-07-25T20:53:57.010000"],["2024-07-25T20:53:58.010000"],["2024-07-25T20:53:59.010000"],["2024-07-25T20:54:00.010000"],["2024-07-25T20:54:01.010000"],["2024-07-25T20:54:02.010000"],["2024-07-25T20:54:03.010000"],["2024-07-25T20:54:04.010000"],["2024-07-25T20:54:05.010000"],["2024-07-25T20:54:06.010000"],["2024-07-25T20:54:07.010000"],["2024-07-25T20:54:08.010000"],["2024-07-25T20:54:09.010000"],["2024-07-25T20:54:10.010000"],["2024-07-25T20:54:11.010000"],["2024-07-25T20:54:12.010000"],["2024-07-25T20:54:13.010000"],["2024-07-25T20:54:14.010000"],["2024-07-25T20:54:15.010000"],["2024-07-25T20:54:16.010000"],["2024-07-25T20:54:17.010000"],["2024-07-25T20:54:18.010000"],["2024-07-25T20:54:19.010000"],["2024-07-25T20:54:20.010000"],["2024-07-25T20:54:21.010000"],["2024-07-25T20:54:22.010000"],["2024-07-25T20:54:23.010000"],["2024-07-25T20:54:24.010000"],["2024-07-25T20:54:25.010000"],["2024-07-25T20:54:26.010000"],["2024-07-25T20:54:27.010000"],["2024-07-25T20:54:28.010000"],["2024-07-25T20:54:29.010000"],["2024-07-25T20:54:30.010000"],["2024-07-25T20:54:31.010000"],["2024-07-25T20:54:32.010000"],["2024-07-25T20:54:33.010000"],["2024-07-25T20:54:34.010000"],["2024-07-25T20:54:35.010000"],["2024-07-25T20:54:36.010000"],["2024-07-25T20:54:37.010000"],["2024-07-25T20:54:38.010000"],["2024-07-25T20:54:39.010000"],["2024-07-25T20:54:40.010000"],["2024-07-25T20:54:41.010000"],["2024-07-25T20:54:42.010000"],["2024-07-25T20:54:43.010000"],["2024-07-25T20:54:44.010000"],["2024-07-25T20:54:45.010000"],["2024-07-25T20:54:46.010000"],["2024-07-25T20:54:47.010000"],["2024-07-25T20:54:48.010000"],["2024-07-25T20:54:49.010000"],["2024-07-25T20:54:50.010000"],["2024-07-25T20:54:51.010000"],["2024-07-25T20:54:52.010000"],["2024-07-25T20:54:53.010000"],["2024-07-25T20:54:54.010000"],["2024-07-25T20:54:55.010000"],["2024-07-25T20:54:56.010000"],["2024-07-25T20:54:57.010000"],["2024-07-25T20:54:58.010000"],["2024-07-25T20:54:59.010000"],["2024-07-25T20:55:00.010000"],["2024-07-25T20:55:01.010000"],["2024-07-25T20:55:02.010000"],["2024-07-25T20:55:03.010000"],["2024-07-25T20:55:04.010000"],["2024-07-25T20:55:05.010000"],["2024-07-25T20:55:06.010000"],["2024-07-25T20:55:07.010000"],["2024-07-25T20:55:08.010000"],["2024-07-25T20:55:09.010000"],["2024-07-25T20:55:10.010000"],["2024-07-25T20:55:11.010000"],["2024-07-25T20:55:12.010000"],["2024-07-25T20:55:13.010000"],["2024-07-25T20:55:14.010000"],["2024-07-25T20:55:15.010000"],["2024-07-25T20:55:16.010000"],["2024-07-25T20:55:17.010000"],["2024-07-25T20:55:18.010000"],["2024-07-25T20:55:19.010000"],["2024-07-25T20:55:20.010000"],["2024-07-25T20:55:21.010000"],["2024-07-25T20:55:22.010000"],["2024-07-25T20:55:23.010000"],["2024-07-25T20:55:24.010000"],["2024-07-25T20:55:25.010000"],["2024-07-25T20:55:26.010000"],["2024-07-25T20:55:27.010000"],["2024-07-25T20:55:28.010000"],["2024-07-25T20:55:29.010000"],["2024-07-25T20:55:30.010000"],["2024-07-25T20:55:31.010000"],["2024-07-25T20:55:32.010000"],["2024-07-25T20:55:33.010000"],["2024-07-25T20:55:34.010000"],["2024-07-25T20:55:35.010000"],["2024-07-25T20:55:36.010000"],["2024-07-25T20:55:37.010000"],["2024-07-25T20:55:38.010000"],["2024-07-25T20:55:39.010000"],["2024-07-25T20:55:40.010000"],["2024-07-25T20:55:41.010000"],["2024-07-25T20:55:42.010000"],["2024-07-25T20:55:43.010000"],["2024-07-25T20:55:44.010000"],["2024-07-25T20:55:45.010000"],["2024-07-25T20:55:46.010000"],["2024-07-25T20:55:47.010000"],["2024-07-25T20:55:48.010000"],["2024-07-25T20:55:49.010000"],["2024-07-25T20:55:50.010000"],["2024-07-25T20:55:51.010000"],["2024-07-25T20:55:52.010000"],["2024-07-25T20:55:53.010000"],["2024-07-25T20:55:54.010000"],["2024-07-25T20:55:55.010000"],["2024-07-25T20:55:56.010000"],["2024-07-25T20:55:57.010000"],["2024-07-25T20:55:58.010000"],["2024-07-25T20:55:59.010000"],["2024-07-25T20:56:00.010000"],["2024-07-25T20:56:01.010000"],["2024-07-25T20:56:02.010000"],["2024-07-25T20:56:03.010000"],["2024-07-25T20:56:04.010000"],["2024-07-25T20:56:05.010000"],["2024-07-25T20:56:06.010000"],["2024-07-25T20:56:07.010000"],["2024-07-25T20:56:08.010000"],["2024-07-25T20:56:09.010000"],["2024-07-25T20:56:10.010000"],["2024-07-25T20:56:11.010000"],["2024-07-25T20:56:12.010000"],["2024-07-25T20:56:13.010000"],["2024-07-25T20:56:14.010000"],["2024-07-25T20:56:15.010000"],["2024-07-25T20:56:16.010000"],["2024-07-25T20:56:17.010000"],["2024-07-25T20:56:18.010000"],["2024-07-25T20:56:19.010000"],["2024-07-25T20:56:20.010000"],["2024-07-25T20:56:21.010000"],["2024-07-25T20:56:22.010000"],["2024-07-25T20:56:23.010000"],["2024-07-25T20:56:24.010000"],["2024-07-25T20:56:25.010000"],["2024-07-25T20:56:26.010000"],["2024-07-25T20:56:27.010000"],["2024-07-25T20:56:28.010000"],["2024-07-25T20:56:29.010000"],["2024-07-25T20:56:30.010000"],["2024-07-25T20:56:31.010000"],["2024-07-25T20:56:32.010000"],["2024-07-25T20:56:33.010000"],["2024-07-25T20:56:34.010000"],["2024-07-25T20:56:35.010000"],["2024-07-25T20:56:36.010000"],["2024-07-25T20:56:37.010000"],["2024-07-25T20:56:38.010000"],["2024-07-25T20:56:39.010000"],["2024-07-25T20:56:40.010000"],["2024-07-25T20:56:41.010000"],["2024-07-25T20:56:42.010000"],["2024-07-25T20:56:43.010000"],["2024-07-25T20:56:44.010000"],["2024-07-25T20:56:45.010000"],["2024-07-25T20:56:46.010000"],["2024-07-25T20:56:47.010000"],["2024-07-25T20:56:48.010000"],["2024-07-25T20:56:49.010000"],["2024-07-25T20:56:50.010000"],["2024-07-25T20:56:51.010000"],["2024-07-25T20:56:52.010000"],["2024-07-25T20:56:53.010000"],["2024-07-25T20:56:54.010000"],["2024-07-25T20:56:55.010000"],["2024-07-25T20:56:56.010000"],["2024-07-25T20:56:57.010000"],["2024-07-25T20:56:58.010000"],["2024-07-25T20:56:59.010000"],["2024-07-25T20:57:00.010000"],["2024-07-25T20:57:01.010000"],["2024-07-25T20:57:02.010000"],["2024-07-25T20:57:03.010000"],["2024-07-25T20:57:04.010000"],["2024-07-25T20:57:05.010000"],["2024-07-25T20:57:06.010000"],["2024-07-25T20:57:07.010000"],["2024-07-25T20:57:08.010000"],["2024-07-25T20:57:09.010000"],["2024-07-25T20:57:10.010000"],["2024-07-25T20:57:11.010000"],["2024-07-25T20:57:12.010000"],["2024-07-25T20:57:13.010000"],["2024-07-25T20:57:14.010000"],["2024-07-25T20:57:15.010000"],["2024-07-25T20:57:16.010000"],["2024-07-25T20:57:17.010000"],["2024-07-25T20:57:18.010000"],["2024-07-25T20:57:19.010000"],["2024-07-25T20:57:20.010000"],["2024-07-25T20:57:21.010000"],["2024-07-25T20:57:22.010000"],["2024-07-25T20:57:23.010000"],["2024-07-25T20:57:24.010000"],["2024-07-25T20:57:25.010000"],["2024-07-25T20:57:26.010000"],["2024-07-25T20:57:27.010000"],["2024-07-25T20:57:28.010000"],["2024-07-25T20:57:29.010000"],["2024-07-25T20:57:30.010000"],["2024-07-25T20:57:31.010000"],["2024-07-25T20:57:32.010000"],["2024-07-25T20:57:33.010000"],["2024-07-25T20:57:34.010000"],["2024-07-25T20:57:35.010000"],["2024-07-25T20:57:36.010000"],["2024-07-25T20:57:37.010000"],["2024-07-25T20:57:38.010000"],["2024-07-25T20:57:39.010000"],["2024-07-25T20:57:40.010000"],["2024-07-25T20:57:41.010000"],["2024-07-25T20:57:42.010000"],["2024-07-25T20:57:43.010000"],["2024-07-25T20:57:44.010000"],["2024-07-25T20:57:45.010000"],["2024-07-25T20:57:46.010000"],["2024-07-25T20:57:47.010000"],["2024-07-25T20:57:48.010000"],["2024-07-25T20:57:49.010000"],["2024-07-25T20:57:50.010000"],["2024-07-25T20:57:51.010000"],["2024-07-25T20:57:52.010000"],["2024-07-25T20:57:53.010000"],["2024-07-25T20:57:54.010000"],["2024-07-25T20:57:55.010000"],["2024-07-25T20:57:56.010000"],["2024-07-25T20:57:57.010000"],["2024-07-25T20:57:58.010000"],["2024-07-25T20:57:59.010000"],["2024-07-25T20:58:00.010000"],["2024-07-25T20:58:01.010000"],["2024-07-25T20:58:02.010000"],["2024-07-25T20:58:03.010000"],["2024-07-25T20:58:04.010000"],["2024-07-25T20:58:05.010000"],["2024-07-25T20:58:06.010000"],["2024-07-25T20:58:07.010000"],["2024-07-25T20:58:08.010000"],["2024-07-25T20:58:09.010000"],["2024-07-25T20:58:10.010000"],["2024-07-25T20:58:11.010000"],["2024-07-25T20:58:12.010000"],["2024-07-25T20:58:13.010000"],["2024-07-25T20:58:14.010000"],["2024-07-25T20:58:15.010000"],["2024-07-25T20:58:16.010000"],["2024-07-25T20:58:17.010000"],["2024-07-25T20:58:18.010000"],["2024-07-25T20:58:19.010000"],["2024-07-25T20:58:20.010000"],["2024-07-25T20:58:21.010000"],["2024-07-25T20:58:22.010000"],["2024-07-25T20:58:23.010000"],["2024-07-25T20:58:24.010000"],["2024-07-25T20:58:25.010000"],["2024-07-25T20:58:26.010000"],["2024-07-25T20:58:27.010000"],["2024-07-25T20:58:28.010000"],["2024-07-25T20:58:29.010000"],["2024-07-25T20:58:30.010000"],["2024-07-25T20:58:31.010000"],["2024-07-25T20:58:32.010000"],["2024-07-25T20:58:33.010000"],["2024-07-25T20:58:34.010000"],["2024-07-25T20:58:35.010000"],["2024-07-25T20:58:36.010000"],["2024-07-25T20:58:37.010000"],["2024-07-25T20:58:38.010000"],["2024-07-25T20:58:39.010000"],["2024-07-25T20:58:40.010000"],["2024-07-25T20:58:41.010000"],["2024-07-25T20:58:42.010000"],["2024-07-25T20:58:43.010000"],["2024-07-25T20:58:44.010000"],["2024-07-25T20:58:45.010000"],["2024-07-25T20:58:46.010000"],["2024-07-25T20:58:47.010000"],["2024-07-25T20:58:48.010000"],["2024-07-25T20:58:49.010000"],["2024-07-25T20:58:50.010000"],["2024-07-25T20:58:51.010000"],["2024-07-25T20:58:52.010000"],["2024-07-25T20:58:53.010000"],["2024-07-25T20:58:54.010000"],["2024-07-25T20:58:55.010000"],["2024-07-25T20:58:56.010000"],["2024-07-25T20:58:57.010000"],["2024-07-25T20:58:58.010000"],["2024-07-25T20:58:59.010000"],["2024-07-25T20:59:00.010000"],["2024-07-25T20:59:01.010000"],["2024-07-25T20:59:02.010000"],["2024-07-25T20:59:03.010000"],["2024-07-25T20:59:04.010000"],["2024-07-25T20:59:05.010000"],["2024-07-25T20:59:06.010000"],["2024-07-25T20:59:07.010000"],["2024-07-25T20:59:08.010000"],["2024-07-25T20:59:09.010000"],["2024-07-25T20:59:10.010000"],["2024-07-25T20:59:11.010000"],["2024-07-25T20:59:12.010000"],["2024-07-25T20:59:13.010000"],["2024-07-25T20:59:14.010000"],["2024-07-25T20:59:15.010000"],["2024-07-25T20:59:16.010000"],["2024-07-25T20:59:17.010000"],["2024-07-25T20:59:18.010000"],["2024-07-25T20:59:19.010000"],["2024-07-25T20:59:20.010000"],["2024-07-25T20:59:21.010000"],["2024-07-25T20:59:22.010000"],["2024-07-25T20:59:23.010000"],["2024-07-25T20:59:24.010000"],["2024-07-25T20:59:25.010000"],["2024-07-25T20:59:26.010000"],["2024-07-25T20:59:27.010000"],["2024-07-25T20:59:28.010000"],["2024-07-25T20:59:29.010000"],["2024-07-25T20:59:30.010000"],["2024-07-25T20:59:31.010000"],["2024-07-25T20:59:32.010000"],["2024-07-25T20:59:33.010000"],["2024-07-25T20:59:34.010000"],["2024-07-25T20:59:35.010000"],["2024-07-25T20:59:36.010000"],["2024-07-25T20:59:37.010000"],["2024-07-25T20:59:38.010000"],["2024-07-25T20:59:39.010000"],["2024-07-25T20:59:40.010000"],["2024-07-25T20:59:41.010000"],["2024-07-25T20:59:42.010000"],["2024-07-25T20:59:43.010000"],["2024-07-25T20:59:44.010000"],["2024-07-25T20:59:45.010000"],["2024-07-25T20:59:46.010000"],["2024-07-25T20:59:47.010000"],["2024-07-25T20:59:48.010000"],["2024-07-25T20:59:49.010000"],["2024-07-25T20:59:50.010000"],["2024-07-25T20:59:51.010000"],["2024-07-25T20:59:52.010000"],["2024-07-25T20:59:53.010000"],["2024-07-25T20:59:54.010000"],["2024-07-25T20:59:55.010000"],["2024-07-25T20:59:56.010000"],["2024-07-25T20:59:57.010000"],["2024-07-25T20:59:58.010000"],["2024-07-25T20:59:59.010000"],["2024-07-25T21:00:00.010000"],["2024-07-25T21:00:01.010000"],["2024-07-25T21:00:02.010000"],["2024-07-25T21:00:03.010000"],["2024-07-25T21:00:04.010000"],["2024-07-25T21:00:05.010000"],["2024-07-25T21:00:06.010000"],["2024-07-25T21:00:07.010000"],["2024-07-25T21:00:08.010000"],["2024-07-25T21:00:09.010000"],["2024-07-25T21:00:10.010000"],["2024-07-25T21:00:11.010000"],["2024-07-25T21:00:12.010000"],["2024-07-25T21:00:13.010000"],["2024-07-25T21:00:14.010000"],["2024-07-25T21:00:15.010000"],["2024-07-25T21:00:16.010000"],["2024-07-25T21:00:17.010000"],["2024-07-25T21:00:18.010000"],["2024-07-25T21:00:19.010000"],["2024-07-25T21:00:20.010000"],["2024-07-25T21:00:21.010000"],["2024-07-25T21:00:22.010000"],["2024-07-25T21:00:23.010000"],["2024-07-25T21:00:24.010000"],["2024-07-25T21:00:25.010000"],["2024-07-25T21:00:26.010000"],["2024-07-25T21:00:27.010000"],["2024-07-25T21:00:28.010000"],["2024-07-25T21:00:29.010000"],["2024-07-25T21:00:30.010000"],["2024-07-25T21:00:31.010000"],["2024-07-25T21:00:32.010000"],["2024-07-25T21:00:33.010000"],["2024-07-25T21:00:34.010000"],["2024-07-25T21:00:35.010000"],["2024-07-25T21:00:36.010000"],["2024-07-25T21:00:37.010000"],["2024-07-25T21:00:38.010000"],["2024-07-25T21:00:39.010000"],["2024-07-25T21:00:40.010000"],["2024-07-25T21:00:41.010000"],["2024-07-25T21:00:42.010000"],["2024-07-25T21:00:43.010000"],["2024-07-25T21:00:44.010000"],["2024-07-25T21:00:45.010000"],["2024-07-25T21:00:46.010000"],["2024-07-25T21:00:47.010000"],["2024-07-25T21:00:48.010000"],["2024-07-25T21:00:49.010000"],["2024-07-25T21:00:50.010000"],["2024-07-25T21:00:51.010000"],["2024-07-25T21:00:52.010000"],["2024-07-25T21:00:53.010000"],["2024-07-25T21:00:54.010000"],["2024-07-25T21:00:55.010000"],["2024-07-25T21:00:56.010000"],["2024-07-25T21:00:57.010000"],["2024-07-25T21:00:58.010000"],["2024-07-25T21:00:59.010000"],["2024-07-25T21:01:00.010000"],["2024-07-25T21:01:01.010000"],["2024-07-25T21:01:02.010000"],["2024-07-25T21:01:03.010000"],["2024-07-25T21:01:04.010000"],["2024-07-25T21:01:05.010000"],["2024-07-25T21:01:06.010000"],["2024-07-25T21:01:07.010000"],["2024-07-25T21:01:08.010000"],["2024-07-25T21:01:09.010000"],["2024-07-25T21:01:10.010000"],["2024-07-25T21:01:11.010000"],["2024-07-25T21:01:12.010000"],["2024-07-25T21:01:13.010000"],["2024-07-25T21:01:14.010000"],["2024-07-25T21:01:15.010000"],["2024-07-25T21:01:16.010000"],["2024-07-25T21:01:17.010000"],["2024-07-25T21:01:18.010000"],["2024-07-25T21:01:19.010000"],["2024-07-25T21:01:20.010000"],["2024-07-25T21:01:21.010000"],["2024-07-25T21:01:22.010000"],["2024-07-25T21:01:23.010000"],["2024-07-25T21:01:24.010000"],["2024-07-25T21:01:25.010000"],["2024-07-25T21:01:26.010000"],["2024-07-25T21:01:27.010000"],["2024-07-25T21:01:28.010000"],["2024-07-25T21:01:29.010000"],["2024-07-25T21:01:30.010000"],["2024-07-25T21:01:31.010000"],["2024-07-25T21:01:32.010000"],["2024-07-25T21:01:33.010000"],["2024-07-25T21:01:34.010000"],["2024-07-25T21:01:35.010000"],["2024-07-25T21:01:36.010000"],["2024-07-25T21:01:37.010000"],["2024-07-25T21:01:38.010000"],["2024-07-25T21:01:39.010000"],["2024-07-25T21:01:40.010000"],["2024-07-25T21:01:41.010000"],["2024-07-25T21:01:42.010000"],["2024-07-25T21:01:43.010000"],["2024-07-25T21:01:44.010000"],["2024-07-25T21:01:45.010000"],["2024-07-25T21:01:46.010000"],["2024-07-25T21:01:47.010000"],["2024-07-25T21:01:48.010000"],["2024-07-25T21:01:49.010000"],["2024-07-25T21:01:50.010000"],["2024-07-25T21:01:51.010000"],["2024-07-25T21:01:52.010000"],["2024-07-25T21:01:53.010000"],["2024-07-25T21:01:54.010000"],["2024-07-25T21:01:55.010000"],["2024-07-25T21:01:56.010000"],["2024-07-25T21:01:57.010000"],["2024-07-25T21:01:58.010000"],["2024-07-25T21:01:59.010000"],["2024-07-25T21:02:00.010000"],["2024-07-25T21:02:01.010000"],["2024-07-25T21:02:02.010000"],["2024-07-25T21:02:03.010000"],["2024-07-25T21:02:04.010000"],["2024-07-25T21:02:05.010000"],["2024-07-25T21:02:06.010000"],["2024-07-25T21:02:07.010000"],["2024-07-25T21:02:08.010000"],["2024-07-25T21:02:09.010000"],["2024-07-25T21:02:10.010000"],["2024-07-25T21:02:11.010000"],["2024-07-25T21:02:12.010000"],["2024-07-25T21:02:13.010000"],["2024-07-25T21:02:14.010000"],["2024-07-25T21:02:15.010000"],["2024-07-25T21:02:16.010000"],["2024-07-25T21:02:17.010000"],["2024-07-25T21:02:18.010000"],["2024-07-25T21:02:19.010000"],["2024-07-25T21:02:20.010000"],["2024-07-25T21:02:21.010000"],["2024-07-25T21:02:22.010000"],["2024-07-25T21:02:23.010000"],["2024-07-25T21:02:24.010000"],["2024-07-25T21:02:25.010000"],["2024-07-25T21:02:26.010000"],["2024-07-25T21:02:27.010000"],["2024-07-25T21:02:28.010000"],["2024-07-25T21:02:29.010000"],["2024-07-25T21:02:30.010000"],["2024-07-25T21:02:31.010000"],["2024-07-25T21:02:32.010000"],["2024-07-25T21:02:33.010000"],["2024-07-25T21:02:34.010000"],["2024-07-25T21:02:35.010000"],["2024-07-25T21:02:36.010000"],["2024-07-25T21:02:37.010000"],["2024-07-25T21:02:38.010000"],["2024-07-25T21:02:39.010000"],["2024-07-25T21:02:40.010000"],["2024-07-25T21:02:41.010000"],["2024-07-25T21:02:42.010000"],["2024-07-25T21:02:43.010000"],["2024-07-25T21:02:44.010000"],["2024-07-25T21:02:45.010000"],["2024-07-25T21:02:46.010000"],["2024-07-25T21:02:47.010000"],["2024-07-25T21:02:48.010000"],["2024-07-25T21:02:49.010000"],["2024-07-25T21:02:50.010000"],["2024-07-25T21:02:51.010000"],["2024-07-25T21:02:52.010000"],["2024-07-25T21:02:53.010000"],["2024-07-25T21:02:54.010000"],["2024-07-25T21:02:55.010000"],["2024-07-25T21:02:56.010000"],["2024-07-25T21:02:57.010000"],["2024-07-25T21:02:58.010000"],["2024-07-25T21:02:59.010000"],["2024-07-25T21:03:00.010000"],["2024-07-25T21:03:01.010000"],["2024-07-25T21:03:02.010000"],["2024-07-25T21:03:03.010000"],["2024-07-25T21:03:04.010000"],["2024-07-25T21:03:05.010000"],["2024-07-25T21:03:06.010000"],["2024-07-25T21:03:07.010000"],["2024-07-25T21:03:08.010000"],["2024-07-25T21:03:09.010000"],["2024-07-25T21:03:10.010000"],["2024-07-25T21:03:11.010000"],["2024-07-25T21:03:12.010000"],["2024-07-25T21:03:13.010000"],["2024-07-25T21:03:14.010000"],["2024-07-25T21:03:15.010000"],["2024-07-25T21:03:16.010000"],["2024-07-25T21:03:17.010000"],["2024-07-25T21:03:18.010000"],["2024-07-25T21:03:19.010000"],["2024-07-25T21:03:20.010000"],["2024-07-25T21:03:21.010000"],["2024-07-25T21:03:22.010000"],["2024-07-25T21:03:23.010000"],["2024-07-25T21:03:24.010000"],["2024-07-25T21:03:25.010000"],["2024-07-25T21:03:26.010000"],["2024-07-25T21:03:27.010000"],["2024-07-25T21:03:28.010000"],["2024-07-25T21:03:29.010000"],["2024-07-25T21:03:30.010000"],["2024-07-25T21:03:31.010000"],["2024-07-25T21:03:32.010000"],["2024-07-25T21:03:33.010000"],["2024-07-25T21:03:34.010000"],["2024-07-25T21:03:35.010000"],["2024-07-25T21:03:36.010000"],["2024-07-25T21:03:37.010000"],["2024-07-25T21:03:38.010000"],["2024-07-25T21:03:39.010000"],["2024-07-25T21:03:40.010000"],["2024-07-25T21:03:41.010000"],["2024-07-25T21:03:42.010000"],["2024-07-25T21:03:43.010000"],["2024-07-25T21:03:44.010000"],["2024-07-25T21:03:45.010000"],["2024-07-25T21:03:46.010000"],["2024-07-25T21:03:47.010000"],["2024-07-25T21:03:48.010000"],["2024-07-25T21:03:49.010000"],["2024-07-25T21:03:50.010000"],["2024-07-25T21:03:51.010000"],["2024-07-25T21:03:52.010000"],["2024-07-25T21:03:53.010000"],["2024-07-25T21:03:54.010000"],["2024-07-25T21:03:55.010000"],["2024-07-25T21:03:56.010000"],["2024-07-25T21:03:57.010000"],["2024-07-25T21:03:58.010000"],["2024-07-25T21:03:59.010000"],["2024-07-25T21:04:00.010000"],["2024-07-25T21:04:01.010000"],["2024-07-25T21:04:02.010000"],["2024-07-25T21:04:03.010000"],["2024-07-25T21:04:04.010000"],["2024-07-25T21:04:05.010000"],["2024-07-25T21:04:06.010000"],["2024-07-25T21:04:07.010000"],["2024-07-25T21:04:08.010000"],["2024-07-25T21:04:09.010000"],["2024-07-25T21:04:10.010000"],["2024-07-25T21:04:11.010000"],["2024-07-25T21:04:12.010000"],["2024-07-25T21:04:13.010000"],["2024-07-25T21:04:14.010000"],["2024-07-25T21:04:15.010000"],["2024-07-25T21:04:16.010000"],["2024-07-25T21:04:17.010000"],["2024-07-25T21:04:18.010000"],["2024-07-25T21:04:19.010000"],["2024-07-25T21:04:20.010000"],["2024-07-25T21:04:21.010000"],["2024-07-25T21:04:22.010000"],["2024-07-25T21:04:23.010000"],["2024-07-25T21:04:24.010000"],["2024-07-25T21:04:25.010000"],["2024-07-25T21:04:26.010000"],["2024-07-25T21:04:27.010000"],["2024-07-25T21:04:28.010000"],["2024-07-25T21:04:29.010000"],["2024-07-25T21:04:30.010000"],["2024-07-25T21:04:31.010000"],["2024-07-25T21:04:32.010000"],["2024-07-25T21:04:33.010000"],["2024-07-25T21:04:34.010000"],["2024-07-25T21:04:35.010000"],["2024-07-25T21:04:36.010000"],["2024-07-25T21:04:37.010000"],["2024-07-25T21:04:38.010000"],["2024-07-25T21:04:39.010000"],["2024-07-25T21:04:40.010000"],["2024-07-25T21:04:41.010000"],["2024-07-25T21:04:42.010000"],["2024-07-25T21:04:43.010000"],["2024-07-25T21:04:44.010000"],["2024-07-25T21:04:45.010000"],["2024-07-25T21:04:46.010000"],["2024-07-25T21:04:47.010000"],["2024-07-25T21:04:48.010000"],["2024-07-25T21:04:49.010000"],["2024-07-25T21:04:50.010000"],["2024-07-25T21:04:51.010000"],["2024-07-25T21:04:52.010000"],["2024-07-25T21:04:53.010000"],["2024-07-25T21:04:54.010000"],["2024-07-25T21:04:55.010000"],["2024-07-25T21:04:56.010000"],["2024-07-25T21:04:57.010000"],["2024-07-25T21:04:58.010000"],["2024-07-25T21:04:59.010000"],["2024-07-25T21:05:00.010000"],["2024-07-25T21:05:01.010000"],["2024-07-25T21:05:02.010000"],["2024-07-25T21:05:03.010000"],["2024-07-25T21:05:04.010000"],["2024-07-25T21:05:05.010000"],["2024-07-25T21:05:06.010000"],["2024-07-25T21:05:07.010000"],["2024-07-25T21:05:08.010000"],["2024-07-25T21:05:09.010000"],["2024-07-25T21:05:10.010000"],["2024-07-25T21:05:11.010000"],["2024-07-25T21:05:12.010000"],["2024-07-25T21:05:13.010000"],["2024-07-25T21:05:14.010000"],["2024-07-25T21:05:15.010000"],["2024-07-25T21:05:16.010000"],["2024-07-25T21:05:17.010000"],["2024-07-25T21:05:18.010000"],["2024-07-25T21:05:19.010000"],["2024-07-25T21:05:20.010000"],["2024-07-25T21:05:21.010000"],["2024-07-25T21:05:22.010000"],["2024-07-25T21:05:23.010000"],["2024-07-25T21:05:24.010000"],["2024-07-25T21:05:25.010000"],["2024-07-25T21:05:26.010000"],["2024-07-25T21:05:27.010000"],["2024-07-25T21:05:28.010000"],["2024-07-25T21:05:29.010000"],["2024-07-25T21:05:30.010000"],["2024-07-25T21:05:31.010000"],["2024-07-25T21:05:32.010000"],["2024-07-25T21:05:33.010000"],["2024-07-25T21:05:34.010000"],["2024-07-25T21:05:35.010000"],["2024-07-25T21:05:36.010000"],["2024-07-25T21:05:37.010000"],["2024-07-25T21:05:38.010000"],["2024-07-25T21:05:39.010000"],["2024-07-25T21:05:40.010000"],["2024-07-25T21:05:41.010000"],["2024-07-25T21:05:42.010000"],["2024-07-25T21:05:43.010000"],["2024-07-25T21:05:44.010000"],["2024-07-25T21:05:45.010000"],["2024-07-25T21:05:46.010000"],["2024-07-25T21:05:47.010000"],["2024-07-25T21:05:48.010000"],["2024-07-25T21:05:49.010000"],["2024-07-25T21:05:50.010000"],["2024-07-25T21:05:51.010000"],["2024-07-25T21:05:52.010000"],["2024-07-25T21:05:53.010000"],["2024-07-25T21:05:54.010000"],["2024-07-25T21:05:55.010000"],["2024-07-25T21:05:56.010000"],["2024-07-25T21:05:57.010000"],["2024-07-25T21:05:58.010000"],["2024-07-25T21:05:59.010000"],["2024-07-25T21:06:00.010000"],["2024-07-25T21:06:01.010000"],["2024-07-25T21:06:02.010000"],["2024-07-25T21:06:03.010000"],["2024-07-25T21:06:04.010000"],["2024-07-25T21:06:05.010000"],["2024-07-25T21:06:06.010000"],["2024-07-25T21:06:07.010000"],["2024-07-25T21:06:08.010000"],["2024-07-25T21:06:09.010000"],["2024-07-25T21:06:10.010000"],["2024-07-25T21:06:11.010000"],["2024-07-25T21:06:12.010000"],["2024-07-25T21:06:13.010000"],["2024-07-25T21:06:14.010000"],["2024-07-25T21:06:15.010000"],["2024-07-25T21:06:16.010000"],["2024-07-25T21:06:17.010000"],["2024-07-25T21:06:18.010000"],["2024-07-25T21:06:19.010000"],["2024-07-25T21:06:20.010000"],["2024-07-25T21:06:21.010000"],["2024-07-25T21:06:22.010000"],["2024-07-25T21:06:23.010000"],["2024-07-25T21:06:24.010000"],["2024-07-25T21:06:25.010000"],["2024-07-25T21:06:26.010000"],["2024-07-25T21:06:27.010000"],["2024-07-25T21:06:28.010000"],["2024-07-25T21:06:29.010000"],["2024-07-25T21:06:30.010000"],["2024-07-25T21:06:31.010000"],["2024-07-25T21:06:32.010000"],["2024-07-25T21:06:33.010000"],["2024-07-25T21:06:34.010000"],["2024-07-25T21:06:35.010000"],["2024-07-25T21:06:36.010000"],["2024-07-25T21:06:37.010000"],["2024-07-25T21:06:38.010000"],["2024-07-25T21:06:39.010000"],["2024-07-25T21:06:40.010000"],["2024-07-25T21:06:41.010000"],["2024-07-25T21:06:42.010000"],["2024-07-25T21:06:43.010000"],["2024-07-25T21:06:44.010000"],["2024-07-25T21:06:45.010000"],["2024-07-25T21:06:46.010000"],["2024-07-25T21:06:47.010000"],["2024-07-25T21:06:48.010000"],["2024-07-25T21:06:49.010000"],["2024-07-25T21:06:50.010000"],["2024-07-25T21:06:51.010000"],["2024-07-25T21:06:52.010000"],["2024-07-25T21:06:53.010000"],["2024-07-25T21:06:54.010000"],["2024-07-25T21:06:55.010000"],["2024-07-25T21:06:56.010000"],["2024-07-25T21:06:57.010000"],["2024-07-25T21:06:58.010000"],["2024-07-25T21:06:59.010000"],["2024-07-25T21:07:00.010000"],["2024-07-25T21:07:01.010000"],["2024-07-25T21:07:02.010000"],["2024-07-25T21:07:03.010000"],["2024-07-25T21:07:04.010000"],["2024-07-25T21:07:05.010000"],["2024-07-25T21:07:06.010000"],["2024-07-25T21:07:07.010000"],["2024-07-25T21:07:08.010000"],["2024-07-25T21:07:09.010000"],["2024-07-25T21:07:10.010000"],["2024-07-25T21:07:11.010000"],["2024-07-25T21:07:12.010000"],["2024-07-25T21:07:13.010000"],["2024-07-25T21:07:14.010000"],["2024-07-25T21:07:15.010000"],["2024-07-25T21:07:16.010000"],["2024-07-25T21:07:17.010000"],["2024-07-25T21:07:18.010000"],["2024-07-25T21:07:19.010000"],["2024-07-25T21:07:20.010000"],["2024-07-25T21:07:21.010000"],["2024-07-25T21:07:22.010000"],["2024-07-25T21:07:23.010000"],["2024-07-25T21:07:24.010000"],["2024-07-25T21:07:25.010000"],["2024-07-25T21:07:26.010000"],["2024-07-25T21:07:27.010000"],["2024-07-25T21:07:28.010000"],["2024-07-25T21:07:29.010000"],["2024-07-25T21:07:30.010000"],["2024-07-25T21:07:31.010000"],["2024-07-25T21:07:32.010000"],["2024-07-25T21:07:33.010000"],["2024-07-25T21:07:34.010000"],["2024-07-25T21:07:35.010000"],["2024-07-25T21:07:36.010000"],["2024-07-25T21:07:37.010000"],["2024-07-25T21:07:38.010000"],["2024-07-25T21:07:39.010000"],["2024-07-25T21:07:40.010000"],["2024-07-25T21:07:41.010000"],["2024-07-25T21:07:42.010000"],["2024-07-25T21:07:43.010000"],["2024-07-25T21:07:44.010000"],["2024-07-25T21:07:45.010000"],["2024-07-25T21:07:46.010000"],["2024-07-25T21:07:47.010000"],["2024-07-25T21:07:48.010000"],["2024-07-25T21:07:49.010000"],["2024-07-25T21:07:50.010000"],["2024-07-25T21:07:51.010000"],["2024-07-25T21:07:52.010000"],["2024-07-25T21:07:53.010000"],["2024-07-25T21:07:54.010000"],["2024-07-25T21:07:55.010000"],["2024-07-25T21:07:56.010000"],["2024-07-25T21:07:57.010000"],["2024-07-25T21:07:58.010000"],["2024-07-25T21:07:59.010000"],["2024-07-25T21:08:00.010000"],["2024-07-25T21:08:01.010000"],["2024-07-25T21:08:02.010000"],["2024-07-25T21:08:03.010000"],["2024-07-25T21:08:04.010000"],["2024-07-25T21:08:05.010000"],["2024-07-25T21:08:06.010000"],["2024-07-25T21:08:07.010000"],["2024-07-25T21:08:08.010000"],["2024-07-25T21:08:09.010000"],["2024-07-25T21:08:10.010000"],["2024-07-25T21:08:11.010000"],["2024-07-25T21:08:12.010000"],["2024-07-25T21:08:13.010000"],["2024-07-25T21:08:14.010000"],["2024-07-25T21:08:15.010000"],["2024-07-25T21:08:16.010000"],["2024-07-25T21:08:17.010000"],["2024-07-25T21:08:18.010000"],["2024-07-25T21:08:19.010000"],["2024-07-25T21:08:20.010000"],["2024-07-25T21:08:21.010000"],["2024-07-25T21:08:22.010000"],["2024-07-25T21:08:23.010000"],["2024-07-25T21:08:24.010000"],["2024-07-25T21:08:25.010000"],["2024-07-25T21:08:26.010000"],["2024-07-25T21:08:27.010000"],["2024-07-25T21:08:28.010000"],["2024-07-25T21:08:29.010000"],["2024-07-25T21:08:30.010000"],["2024-07-25T21:08:31.010000"],["2024-07-25T21:08:32.010000"],["2024-07-25T21:08:33.010000"],["2024-07-25T21:08:34.010000"],["2024-07-25T21:08:35.010000"],["2024-07-25T21:08:36.010000"],["2024-07-25T21:08:37.010000"],["2024-07-25T21:08:38.010000"],["2024-07-25T21:08:39.010000"],["2024-07-25T21:08:40.010000"],["2024-07-25T21:08:41.010000"],["2024-07-25T21:08:42.010000"],["2024-07-25T21:08:43.010000"],["2024-07-25T21:08:44.010000"],["2024-07-25T21:08:45.010000"],["2024-07-25T21:08:46.010000"],["2024-07-25T21:08:47.010000"],["2024-07-25T21:08:48.010000"],["2024-07-25T21:08:49.010000"],["2024-07-25T21:08:50.010000"],["2024-07-25T21:08:51.010000"],["2024-07-25T21:08:52.010000"],["2024-07-25T21:08:53.010000"],["2024-07-25T21:08:54.010000"],["2024-07-25T21:08:55.010000"],["2024-07-25T21:08:56.010000"],["2024-07-25T21:08:57.010000"],["2024-07-25T21:08:58.010000"],["2024-07-25T21:08:59.010000"],["2024-07-25T21:09:00.010000"],["2024-07-25T21:09:01.010000"],["2024-07-25T21:09:02.010000"],["2024-07-25T21:09:03.010000"],["2024-07-25T21:09:04.010000"],["2024-07-25T21:09:05.010000"],["2024-07-25T21:09:06.010000"],["2024-07-25T21:09:07.010000"],["2024-07-25T21:09:08.010000"],["2024-07-25T21:09:09.010000"],["2024-07-25T21:09:10.010000"],["2024-07-25T21:09:11.010000"],["2024-07-25T21:09:12.010000"],["2024-07-25T21:09:13.010000"],["2024-07-25T21:09:14.010000"],["2024-07-25T21:09:15.010000"],["2024-07-25T21:09:16.010000"],["2024-07-25T21:09:17.010000"],["2024-07-25T21:09:18.010000"],["2024-07-25T21:09:19.010000"],["2024-07-25T21:09:20.010000"],["2024-07-25T21:09:21.010000"],["2024-07-25T21:09:22.010000"],["2024-07-25T21:09:23.010000"],["2024-07-25T21:09:24.010000"],["2024-07-25T21:09:25.010000"],["2024-07-25T21:09:26.010000"],["2024-07-25T21:09:27.010000"],["2024-07-25T21:09:28.010000"],["2024-07-25T21:09:29.010000"],["2024-07-25T21:09:30.010000"],["2024-07-25T21:09:31.010000"],["2024-07-25T21:09:32.010000"],["2024-07-25T21:09:33.010000"],["2024-07-25T21:09:34.010000"],["2024-07-25T21:09:35.010000"],["2024-07-25T21:09:36.010000"],["2024-07-25T21:09:37.010000"],["2024-07-25T21:09:38.010000"],["2024-07-25T21:09:39.010000"],["2024-07-25T21:09:40.010000"],["2024-07-25T21:09:41.010000"],["2024-07-25T21:09:42.010000"],["2024-07-25T21:09:43.010000"],["2024-07-25T21:09:44.010000"],["2024-07-25T21:09:45.010000"],["2024-07-25T21:09:46.010000"],["2024-07-25T21:09:47.010000"],["2024-07-25T21:09:48.010000"],["2024-07-25T21:09:49.010000"],["2024-07-25T21:09:50.010000"],["2024-07-25T21:09:51.010000"],["2024-07-25T21:09:52.010000"],["2024-07-25T21:09:53.010000"],["2024-07-25T21:09:54.010000"],["2024-07-25T21:09:55.010000"],["2024-07-25T21:09:56.010000"],["2024-07-25T21:09:57.010000"],["2024-07-25T21:09:58.010000"],["2024-07-25T21:09:59.010000"],["2024-07-25T21:10:00.010000"],["2024-07-25T21:10:01.010000"],["2024-07-25T21:10:02.010000"],["2024-07-25T21:10:03.010000"],["2024-07-25T21:10:04.010000"],["2024-07-25T21:10:05.010000"],["2024-07-25T21:10:06.010000"],["2024-07-25T21:10:07.010000"],["2024-07-25T21:10:08.010000"],["2024-07-25T21:10:09.010000"],["2024-07-25T21:10:10.010000"],["2024-07-25T21:10:11.010000"],["2024-07-25T21:10:12.010000"],["2024-07-25T21:10:13.010000"],["2024-07-25T21:10:14.010000"],["2024-07-25T21:10:15.010000"],["2024-07-25T21:10:16.010000"],["2024-07-25T21:10:17.010000"],["2024-07-25T21:10:18.010000"],["2024-07-25T21:10:19.010000"],["2024-07-25T21:10:20.010000"],["2024-07-25T21:10:21.010000"],["2024-07-25T21:10:22.010000"],["2024-07-25T21:10:23.010000"],["2024-07-25T21:10:24.010000"],["2024-07-25T21:10:25.010000"],["2024-07-25T21:10:26.010000"],["2024-07-25T21:10:27.010000"],["2024-07-25T21:10:28.010000"],["2024-07-25T21:10:29.010000"],["2024-07-25T21:10:30.010000"],["2024-07-25T21:10:31.010000"],["2024-07-25T21:10:32.010000"],["2024-07-25T21:10:33.010000"],["2024-07-25T21:10:34.010000"],["2024-07-25T21:10:35.010000"],["2024-07-25T21:10:36.010000"],["2024-07-25T21:10:37.010000"],["2024-07-25T21:10:38.010000"],["2024-07-25T21:10:39.010000"],["2024-07-25T21:10:40.010000"],["2024-07-25T21:10:41.010000"],["2024-07-25T21:10:42.010000"],["2024-07-25T21:10:43.010000"],["2024-07-25T21:10:44.010000"],["2024-07-25T21:10:45.010000"],["2024-07-25T21:10:46.010000"],["2024-07-25T21:10:47.010000"],["2024-07-25T21:10:48.010000"],["2024-07-25T21:10:49.010000"],["2024-07-25T21:10:50.010000"],["2024-07-25T21:10:51.010000"],["2024-07-25T21:10:52.010000"],["2024-07-25T21:10:53.010000"],["2024-07-25T21:10:54.010000"],["2024-07-25T21:10:55.010000"],["2024-07-25T21:10:56.010000"],["2024-07-25T21:10:57.010000"],["2024-07-25T21:10:58.010000"],["2024-07-25T21:10:59.010000"],["2024-07-25T21:11:00.010000"],["2024-07-25T21:11:01.010000"],["2024-07-25T21:11:02.010000"],["2024-07-25T21:11:03.010000"],["2024-07-25T21:11:04.010000"],["2024-07-25T21:11:05.010000"],["2024-07-25T21:11:06.010000"],["2024-07-25T21:11:07.010000"],["2024-07-25T21:11:08.010000"],["2024-07-25T21:11:09.010000"],["2024-07-25T21:11:10.010000"],["2024-07-25T21:11:11.010000"],["2024-07-25T21:11:12.010000"],["2024-07-25T21:11:13.010000"],["2024-07-25T21:11:14.010000"],["2024-07-25T21:11:15.010000"],["2024-07-25T21:11:16.010000"],["2024-07-25T21:11:17.010000"],["2024-07-25T21:11:18.010000"],["2024-07-25T21:11:19.010000"],["2024-07-25T21:11:20.010000"],["2024-07-25T21:11:21.010000"],["2024-07-25T21:11:22.010000"],["2024-07-25T21:11:23.010000"],["2024-07-25T21:11:24.010000"],["2024-07-25T21:11:25.010000"],["2024-07-25T21:11:26.010000"],["2024-07-25T21:11:27.010000"],["2024-07-25T21:11:28.010000"],["2024-07-25T21:11:29.010000"],["2024-07-25T21:11:30.010000"],["2024-07-25T21:11:31.010000"],["2024-07-25T21:11:32.010000"],["2024-07-25T21:11:33.010000"],["2024-07-25T21:11:34.010000"],["2024-07-25T21:11:35.010000"],["2024-07-25T21:11:36.010000"],["2024-07-25T21:11:37.010000"],["2024-07-25T21:11:38.010000"],["2024-07-25T21:11:39.010000"],["2024-07-25T21:11:40.010000"],["2024-07-25T21:11:41.010000"],["2024-07-25T21:11:42.010000"],["2024-07-25T21:11:43.010000"],["2024-07-25T21:11:44.010000"],["2024-07-25T21:11:45.010000"],["2024-07-25T21:11:46.010000"],["2024-07-25T21:11:47.010000"],["2024-07-25T21:11:48.010000"],["2024-07-25T21:11:49.010000"],["2024-07-25T21:11:50.010000"],["2024-07-25T21:11:51.010000"],["2024-07-25T21:11:52.010000"],["2024-07-25T21:11:53.010000"],["2024-07-25T21:11:54.010000"],["2024-07-25T21:11:55.010000"],["2024-07-25T21:11:56.010000"],["2024-07-25T21:11:57.010000"],["2024-07-25T21:11:58.010000"],["2024-07-25T21:11:59.010000"],["2024-07-25T21:12:00.010000"],["2024-07-25T21:12:01.010000"],["2024-07-25T21:12:02.010000"],["2024-07-25T21:12:03.010000"],["2024-07-25T21:12:04.010000"],["2024-07-25T21:12:05.010000"],["2024-07-25T21:12:06.010000"],["2024-07-25T21:12:07.010000"],["2024-07-25T21:12:08.010000"],["2024-07-25T21:12:09.010000"],["2024-07-25T21:12:10.010000"],["2024-07-25T21:12:11.010000"],["2024-07-25T21:12:12.010000"],["2024-07-25T21:12:13.010000"],["2024-07-25T21:12:14.010000"],["2024-07-25T21:12:15.010000"],["2024-07-25T21:12:16.010000"],["2024-07-25T21:12:17.010000"],["2024-07-25T21:12:18.010000"],["2024-07-25T21:12:19.010000"],["2024-07-25T21:12:20.010000"],["2024-07-25T21:12:21.010000"],["2024-07-25T21:12:22.010000"],["2024-07-25T21:12:23.010000"],["2024-07-25T21:12:24.010000"],["2024-07-25T21:12:25.010000"],["2024-07-25T21:12:26.010000"],["2024-07-25T21:12:27.010000"],["2024-07-25T21:12:28.010000"],["2024-07-25T21:12:29.010000"],["2024-07-25T21:12:30.010000"],["2024-07-25T21:12:31.010000"],["2024-07-25T21:12:32.010000"],["2024-07-25T21:12:33.010000"],["2024-07-25T21:12:34.010000"],["2024-07-25T21:12:35.010000"],["2024-07-25T21:12:36.010000"],["2024-07-25T21:12:37.010000"],["2024-07-25T21:12:38.010000"],["2024-07-25T21:12:39.010000"],["2024-07-25T21:12:40.010000"],["2024-07-25T21:12:41.010000"],["2024-07-25T21:12:42.010000"],["2024-07-25T21:12:43.010000"],["2024-07-25T21:12:44.010000"],["2024-07-25T21:12:45.010000"],["2024-07-25T21:12:46.010000"],["2024-07-25T21:12:47.010000"],["2024-07-25T21:12:48.010000"],["2024-07-25T21:12:49.010000"],["2024-07-25T21:12:50.010000"],["2024-07-25T21:12:51.010000"],["2024-07-25T21:12:52.010000"],["2024-07-25T21:12:53.010000"],["2024-07-25T21:12:54.010000"],["2024-07-25T21:12:55.010000"],["2024-07-25T21:12:56.010000"],["2024-07-25T21:12:57.010000"],["2024-07-25T21:12:58.010000"],["2024-07-25T21:12:59.010000"],["2024-07-25T21:13:00.010000"],["2024-07-25T21:13:01.010000"],["2024-07-25T21:13:02.010000"],["2024-07-25T21:13:03.010000"],["2024-07-25T21:13:04.010000"],["2024-07-25T21:13:05.010000"],["2024-07-25T21:13:06.010000"],["2024-07-25T21:13:07.010000"],["2024-07-25T21:13:08.010000"],["2024-07-25T21:13:09.010000"],["2024-07-25T21:13:10.010000"],["2024-07-25T21:13:11.010000"],["2024-07-25T21:13:12.010000"],["2024-07-25T21:13:13.010000"],["2024-07-25T21:13:14.010000"],["2024-07-25T21:13:15.010000"],["2024-07-25T21:13:16.010000"],["2024-07-25T21:13:17.010000"],["2024-07-25T21:13:18.010000"],["2024-07-25T21:13:19.010000"],["2024-07-25T21:13:20.010000"],["2024-07-25T21:13:21.010000"],["2024-07-25T21:13:22.010000"],["2024-07-25T21:13:23.010000"],["2024-07-25T21:13:24.010000"],["2024-07-25T21:13:25.010000"],["2024-07-25T21:13:26.010000"],["2024-07-25T21:13:27.010000"],["2024-07-25T21:13:28.010000"],["2024-07-25T21:13:29.010000"],["2024-07-25T21:13:30.010000"],["2024-07-25T21:13:31.010000"],["2024-07-25T21:13:32.010000"],["2024-07-25T21:13:33.010000"],["2024-07-25T21:13:34.010000"],["2024-07-25T21:13:35.010000"],["2024-07-25T21:13:36.010000"],["2024-07-25T21:13:37.010000"],["2024-07-25T21:13:38.010000"],["2024-07-25T21:13:39.010000"],["2024-07-25T21:13:40.010000"],["2024-07-25T21:13:41.010000"],["2024-07-25T21:13:42.010000"],["2024-07-25T21:13:43.010000"],["2024-07-25T21:13:44.010000"],["2024-07-25T21:13:45.010000"],["2024-07-25T21:13:46.010000"],["2024-07-25T21:13:47.010000"],["2024-07-25T21:13:48.010000"],["2024-07-25T21:13:49.010000"],["2024-07-25T21:13:50.010000"],["2024-07-25T21:13:51.010000"],["2024-07-25T21:13:52.010000"],["2024-07-25T21:13:53.010000"],["2024-07-25T21:13:54.010000"],["2024-07-25T21:13:55.010000"],["2024-07-25T21:13:56.010000"],["2024-07-25T21:13:57.010000"],["2024-07-25T21:13:58.010000"],["2024-07-25T21:13:59.010000"],["2024-07-25T21:14:00.010000"],["2024-07-25T21:14:01.010000"],["2024-07-25T21:14:02.010000"],["2024-07-25T21:14:03.010000"],["2024-07-25T21:14:04.010000"],["2024-07-25T21:14:05.010000"],["2024-07-25T21:14:06.010000"],["2024-07-25T21:14:07.010000"],["2024-07-25T21:14:08.010000"],["2024-07-25T21:14:09.010000"],["2024-07-25T21:14:10.010000"],["2024-07-25T21:14:11.010000"],["2024-07-25T21:14:12.010000"],["2024-07-25T21:14:13.010000"],["2024-07-25T21:14:14.010000"],["2024-07-25T21:14:15.010000"],["2024-07-25T21:14:16.010000"],["2024-07-25T21:14:17.010000"],["2024-07-25T21:14:18.010000"],["2024-07-25T21:14:19.010000"],["2024-07-25T21:14:20.010000"],["2024-07-25T21:14:21.010000"],["2024-07-25T21:14:22.010000"],["2024-07-25T21:14:23.010000"],["2024-07-25T21:14:24.010000"],["2024-07-25T21:14:25.010000"],["2024-07-25T21:14:26.010000"],["2024-07-25T21:14:27.010000"],["2024-07-25T21:14:28.010000"],["2024-07-25T21:14:29.010000"],["2024-07-25T21:14:30.010000"],["2024-07-25T21:14:31.010000"],["2024-07-25T21:14:32.010000"],["2024-07-25T21:14:33.010000"],["2024-07-25T21:14:34.010000"],["2024-07-25T21:14:35.010000"],["2024-07-25T21:14:36.010000"],["2024-07-25T21:14:37.010000"],["2024-07-25T21:14:38.010000"],["2024-07-25T21:14:39.010000"],["2024-07-25T21:14:40.010000"],["2024-07-25T21:14:41.010000"],["2024-07-25T21:14:42.010000"],["2024-07-25T21:14:43.010000"],["2024-07-25T21:14:44.010000"],["2024-07-25T21:14:45.010000"],["2024-07-25T21:14:46.010000"],["2024-07-25T21:14:47.010000"],["2024-07-25T21:14:48.010000"],["2024-07-25T21:14:49.010000"],["2024-07-25T21:14:50.010000"],["2024-07-25T21:14:51.010000"],["2024-07-25T21:14:52.010000"],["2024-07-25T21:14:53.010000"],["2024-07-25T21:14:54.010000"],["2024-07-25T21:14:55.010000"],["2024-07-25T21:14:56.010000"],["2024-07-25T21:14:57.010000"],["2024-07-25T21:14:58.010000"],["2024-07-25T21:14:59.010000"],["2024-07-25T21:15:00.010000"],["2024-07-25T21:15:01.010000"],["2024-07-25T21:15:02.010000"],["2024-07-25T21:15:03.010000"],["2024-07-25T21:15:04.010000"],["2024-07-25T21:15:05.010000"],["2024-07-25T21:15:06.010000"],["2024-07-25T21:15:07.010000"],["2024-07-25T21:15:08.010000"],["2024-07-25T21:15:09.010000"],["2024-07-25T21:15:10.010000"],["2024-07-25T21:15:11.010000"],["2024-07-25T21:15:12.010000"],["2024-07-25T21:15:13.010000"],["2024-07-25T21:15:14.010000"],["2024-07-25T21:15:15.010000"],["2024-07-25T21:15:16.010000"],["2024-07-25T21:15:17.010000"],["2024-07-25T21:15:18.010000"],["2024-07-25T21:15:19.010000"],["2024-07-25T21:15:20.010000"],["2024-07-25T21:15:21.010000"],["2024-07-25T21:15:22.010000"],["2024-07-25T21:15:23.010000"],["2024-07-25T21:15:24.010000"],["2024-07-25T21:15:25.010000"],["2024-07-25T21:15:26.010000"],["2024-07-25T21:15:27.010000"],["2024-07-25T21:15:28.010000"],["2024-07-25T21:15:29.010000"],["2024-07-25T21:15:30.010000"],["2024-07-25T21:15:31.010000"],["2024-07-25T21:15:32.010000"],["2024-07-25T21:15:33.010000"],["2024-07-25T21:15:34.010000"],["2024-07-25T21:15:35.010000"],["2024-07-25T21:15:36.010000"],["2024-07-25T21:15:37.010000"],["2024-07-25T21:15:38.010000"],["2024-07-25T21:15:39.010000"],["2024-07-25T21:15:40.010000"],["2024-07-25T21:15:41.010000"],["2024-07-25T21:15:42.010000"],["2024-07-25T21:15:43.010000"],["2024-07-25T21:15:44.010000"],["2024-07-25T21:15:45.010000"],["2024-07-25T21:15:46.010000"],["2024-07-25T21:15:47.010000"],["2024-07-25T21:15:48.010000"],["2024-07-25T21:15:49.010000"],["2024-07-25T21:15:50.010000"],["2024-07-25T21:15:51.010000"],["2024-07-25T21:15:52.010000"],["2024-07-25T21:15:53.010000"],["2024-07-25T21:15:54.010000"],["2024-07-25T21:15:55.010000"],["2024-07-25T21:15:56.010000"],["2024-07-25T21:15:57.010000"],["2024-07-25T21:15:58.010000"],["2024-07-25T21:15:59.010000"],["2024-07-25T21:16:00.010000"],["2024-07-25T21:16:01.010000"],["2024-07-25T21:16:02.010000"],["2024-07-25T21:16:03.010000"],["2024-07-25T21:16:04.010000"],["2024-07-25T21:16:05.010000"],["2024-07-25T21:16:06.010000"],["2024-07-25T21:16:07.010000"],["2024-07-25T21:16:08.010000"],["2024-07-25T21:16:09.010000"],["2024-07-25T21:16:10.010000"],["2024-07-25T21:16:11.010000"],["2024-07-25T21:16:12.010000"],["2024-07-25T21:16:13.010000"],["2024-07-25T21:16:14.010000"],["2024-07-25T21:16:15.010000"],["2024-07-25T21:16:16.010000"],["2024-07-25T21:16:17.010000"],["2024-07-25T21:16:18.010000"],["2024-07-25T21:16:19.010000"],["2024-07-25T21:16:20.010000"],["2024-07-25T21:16:21.010000"],["2024-07-25T21:16:22.010000"],["2024-07-25T21:16:23.010000"],["2024-07-25T21:16:24.010000"],["2024-07-25T21:16:25.010000"],["2024-07-25T21:16:26.010000"],["2024-07-25T21:16:27.010000"],["2024-07-25T21:16:28.010000"],["2024-07-25T21:16:29.010000"],["2024-07-25T21:16:30.010000"],["2024-07-25T21:16:31.010000"],["2024-07-25T21:16:32.010000"],["2024-07-25T21:16:33.010000"],["2024-07-25T21:16:34.010000"],["2024-07-25T21:16:35.010000"],["2024-07-25T21:16:36.010000"],["2024-07-25T21:16:37.010000"],["2024-07-25T21:16:38.010000"],["2024-07-25T21:16:39.010000"],["2024-07-25T21:16:40.010000"],["2024-07-25T21:16:41.010000"],["2024-07-25T21:16:42.010000"],["2024-07-25T21:16:43.010000"],["2024-07-25T21:16:44.010000"],["2024-07-25T21:16:45.010000"],["2024-07-25T21:16:46.010000"],["2024-07-25T21:16:47.010000"],["2024-07-25T21:16:48.010000"],["2024-07-25T21:16:49.010000"],["2024-07-25T21:16:50.010000"],["2024-07-25T21:16:51.010000"],["2024-07-25T21:16:52.010000"],["2024-07-25T21:16:53.010000"],["2024-07-25T21:16:54.010000"],["2024-07-25T21:16:55.010000"],["2024-07-25T21:16:56.010000"],["2024-07-25T21:16:57.010000"],["2024-07-25T21:16:58.010000"],["2024-07-25T21:16:59.010000"],["2024-07-25T21:17:00.010000"],["2024-07-25T21:17:01.010000"],["2024-07-25T21:17:02.010000"],["2024-07-25T21:17:03.010000"],["2024-07-25T21:17:04.010000"],["2024-07-25T21:17:05.010000"],["2024-07-25T21:17:06.010000"],["2024-07-25T21:17:07.010000"],["2024-07-25T21:17:08.010000"],["2024-07-25T21:17:09.010000"],["2024-07-25T21:17:10.010000"],["2024-07-25T21:17:11.010000"],["2024-07-25T21:17:12.010000"],["2024-07-25T21:17:13.010000"],["2024-07-25T21:17:14.010000"],["2024-07-25T21:17:15.010000"],["2024-07-25T21:17:16.010000"],["2024-07-25T21:17:17.010000"],["2024-07-25T21:17:18.010000"],["2024-07-25T21:17:19.010000"],["2024-07-25T21:17:20.010000"],["2024-07-25T21:17:21.010000"],["2024-07-25T21:17:22.010000"],["2024-07-25T21:17:23.010000"],["2024-07-25T21:17:24.010000"],["2024-07-25T21:17:25.010000"],["2024-07-25T21:17:26.010000"],["2024-07-25T21:17:27.010000"],["2024-07-25T21:17:28.010000"],["2024-07-25T21:17:29.010000"],["2024-07-25T21:17:30.010000"],["2024-07-25T21:17:31.010000"],["2024-07-25T21:17:32.010000"],["2024-07-25T21:17:33.010000"],["2024-07-25T21:17:34.010000"],["2024-07-25T21:17:35.010000"],["2024-07-25T21:17:36.010000"],["2024-07-25T21:17:37.010000"],["2024-07-25T21:17:38.010000"],["2024-07-25T21:17:39.010000"],["2024-07-25T21:17:40.010000"],["2024-07-25T21:17:41.010000"],["2024-07-25T21:17:42.010000"],["2024-07-25T21:17:43.010000"],["2024-07-25T21:17:44.010000"],["2024-07-25T21:17:45.010000"],["2024-07-25T21:17:46.010000"],["2024-07-25T21:17:47.010000"],["2024-07-25T21:17:48.010000"],["2024-07-25T21:17:49.010000"],["2024-07-25T21:17:50.010000"],["2024-07-25T21:17:51.010000"],["2024-07-25T21:17:52.010000"],["2024-07-25T21:17:53.010000"],["2024-07-25T21:17:54.010000"],["2024-07-25T21:17:55.010000"],["2024-07-25T21:17:56.010000"],["2024-07-25T21:17:57.010000"],["2024-07-25T21:17:58.010000"],["2024-07-25T21:17:59.010000"],["2024-07-25T21:18:00.010000"],["2024-07-25T21:18:01.010000"],["2024-07-25T21:18:02.010000"],["2024-07-25T21:18:03.010000"],["2024-07-25T21:18:04.010000"],["2024-07-25T21:18:05.010000"],["2024-07-25T21:18:06.010000"],["2024-07-25T21:18:07.010000"],["2024-07-25T21:18:08.010000"],["2024-07-25T21:18:09.010000"],["2024-07-25T21:18:10.010000"],["2024-07-25T21:18:11.010000"],["2024-07-25T21:18:12.010000"],["2024-07-25T21:18:13.010000"],["2024-07-25T21:18:14.010000"],["2024-07-25T21:18:15.010000"],["2024-07-25T21:18:16.010000"],["2024-07-25T21:18:17.010000"],["2024-07-25T21:18:18.010000"],["2024-07-25T21:18:19.010000"],["2024-07-25T21:18:20.010000"],["2024-07-25T21:18:21.010000"],["2024-07-25T21:18:22.010000"],["2024-07-25T21:18:23.010000"],["2024-07-25T21:18:24.010000"],["2024-07-25T21:18:25.010000"],["2024-07-25T21:18:26.010000"],["2024-07-25T21:18:27.010000"],["2024-07-25T21:18:28.010000"],["2024-07-25T21:18:29.010000"],["2024-07-25T21:18:30.010000"],["2024-07-25T21:18:31.010000"],["2024-07-25T21:18:32.010000"],["2024-07-25T21:18:33.010000"],["2024-07-25T21:18:34.010000"],["2024-07-25T21:18:35.010000"],["2024-07-25T21:18:36.010000"],["2024-07-25T21:18:37.010000"],["2024-07-25T21:18:38.010000"],["2024-07-25T21:18:39.010000"],["2024-07-25T21:18:40.010000"],["2024-07-25T21:18:41.010000"],["2024-07-25T21:18:42.010000"],["2024-07-25T21:18:43.010000"],["2024-07-25T21:18:44.010000"],["2024-07-25T21:18:45.010000"],["2024-07-25T21:18:46.010000"],["2024-07-25T21:18:47.010000"],["2024-07-25T21:18:48.010000"],["2024-07-25T21:18:49.010000"],["2024-07-25T21:18:50.010000"],["2024-07-25T21:18:51.010000"],["2024-07-25T21:18:52.010000"],["2024-07-25T21:18:53.010000"],["2024-07-25T21:18:54.010000"],["2024-07-25T21:18:55.010000"],["2024-07-25T21:18:56.010000"],["2024-07-25T21:18:57.010000"],["2024-07-25T21:18:58.010000"],["2024-07-25T21:18:59.010000"],["2024-07-25T21:19:00.010000"],["2024-07-25T21:19:01.010000"],["2024-07-25T21:19:02.010000"],["2024-07-25T21:19:03.010000"],["2024-07-25T21:19:04.010000"],["2024-07-25T21:19:05.010000"],["2024-07-25T21:19:06.010000"],["2024-07-25T21:19:07.010000"],["2024-07-25T21:19:08.010000"],["2024-07-25T21:19:09.010000"],["2024-07-25T21:19:10.010000"],["2024-07-25T21:19:11.010000"],["2024-07-25T21:19:12.010000"],["2024-07-25T21:19:13.010000"],["2024-07-25T21:19:14.010000"],["2024-07-25T21:19:15.010000"],["2024-07-25T21:19:16.010000"],["2024-07-25T21:19:17.010000"],["2024-07-25T21:19:18.010000"],["2024-07-25T21:19:19.010000"],["2024-07-25T21:19:20.010000"],["2024-07-25T21:19:21.010000"],["2024-07-25T21:19:22.010000"],["2024-07-25T21:19:23.010000"],["2024-07-25T21:19:24.010000"],["2024-07-25T21:19:25.010000"],["2024-07-25T21:19:26.010000"],["2024-07-25T21:19:27.010000"],["2024-07-25T21:19:28.010000"],["2024-07-25T21:19:29.010000"],["2024-07-25T21:19:30.010000"],["2024-07-25T21:19:31.010000"],["2024-07-25T21:19:32.010000"],["2024-07-25T21:19:33.010000"],["2024-07-25T21:19:34.010000"],["2024-07-25T21:19:35.010000"],["2024-07-25T21:19:36.010000"],["2024-07-25T21:19:37.010000"],["2024-07-25T21:19:38.010000"],["2024-07-25T21:19:39.010000"],["2024-07-25T21:19:40.010000"],["2024-07-25T21:19:41.010000"],["2024-07-25T21:19:42.010000"],["2024-07-25T21:19:43.010000"],["2024-07-25T21:19:44.010000"],["2024-07-25T21:19:45.010000"],["2024-07-25T21:19:46.010000"],["2024-07-25T21:19:47.010000"],["2024-07-25T21:19:48.010000"],["2024-07-25T21:19:49.010000"],["2024-07-25T21:19:50.010000"],["2024-07-25T21:19:51.010000"],["2024-07-25T21:19:52.010000"],["2024-07-25T21:19:53.010000"],["2024-07-25T21:19:54.010000"],["2024-07-25T21:19:55.010000"],["2024-07-25T21:19:56.010000"],["2024-07-25T21:19:57.010000"],["2024-07-25T21:19:58.010000"],["2024-07-25T21:19:59.010000"],["2024-07-25T21:20:00.010000"],["2024-07-25T21:20:01.010000"],["2024-07-25T21:20:02.010000"],["2024-07-25T21:20:03.010000"],["2024-07-25T21:20:04.010000"],["2024-07-25T21:20:05.010000"],["2024-07-25T21:20:06.010000"],["2024-07-25T21:20:07.010000"],["2024-07-25T21:20:08.010000"],["2024-07-25T21:20:09.010000"],["2024-07-25T21:20:10.010000"],["2024-07-25T21:20:11.010000"],["2024-07-25T21:20:12.010000"],["2024-07-25T21:20:13.010000"],["2024-07-25T21:20:14.010000"],["2024-07-25T21:20:15.010000"],["2024-07-25T21:20:16.010000"],["2024-07-25T21:20:17.010000"],["2024-07-25T21:20:18.010000"],["2024-07-25T21:20:19.010000"],["2024-07-25T21:20:20.010000"],["2024-07-25T21:20:21.010000"],["2024-07-25T21:20:22.010000"],["2024-07-25T21:20:23.010000"],["2024-07-25T21:20:24.010000"],["2024-07-25T21:20:25.010000"],["2024-07-25T21:20:26.010000"],["2024-07-25T21:20:27.010000"],["2024-07-25T21:20:28.010000"],["2024-07-25T21:20:29.010000"],["2024-07-25T21:20:30.010000"],["2024-07-25T21:20:31.010000"],["2024-07-25T21:20:32.010000"],["2024-07-25T21:20:33.010000"],["2024-07-25T21:20:34.010000"],["2024-07-25T21:20:35.010000"],["2024-07-25T21:20:36.010000"],["2024-07-25T21:20:37.010000"],["2024-07-25T21:20:38.010000"],["2024-07-25T21:20:39.010000"],["2024-07-25T21:20:40.010000"],["2024-07-25T21:20:41.010000"],["2024-07-25T21:20:42.010000"],["2024-07-25T21:20:43.010000"],["2024-07-25T21:20:44.010000"],["2024-07-25T21:20:45.010000"],["2024-07-25T21:20:46.010000"],["2024-07-25T21:20:47.010000"],["2024-07-25T21:20:48.010000"],["2024-07-25T21:20:49.010000"],["2024-07-25T21:20:50.010000"],["2024-07-25T21:20:51.010000"],["2024-07-25T21:20:52.010000"],["2024-07-25T21:20:53.010000"],["2024-07-25T21:20:54.010000"],["2024-07-25T21:20:55.010000"],["2024-07-25T21:20:56.010000"],["2024-07-25T21:20:57.010000"],["2024-07-25T21:20:58.010000"],["2024-07-25T21:20:59.010000"],["2024-07-25T21:21:00.010000"],["2024-07-25T21:21:01.010000"],["2024-07-25T21:21:02.010000"],["2024-07-25T21:21:03.010000"],["2024-07-25T21:21:04.010000"],["2024-07-25T21:21:05.010000"],["2024-07-25T21:21:06.010000"],["2024-07-25T21:21:07.010000"],["2024-07-25T21:21:08.010000"],["2024-07-25T21:21:09.010000"],["2024-07-25T21:21:10.010000"],["2024-07-25T21:21:11.010000"],["2024-07-25T21:21:12.010000"],["2024-07-25T21:21:13.010000"],["2024-07-25T21:21:14.010000"],["2024-07-25T21:21:15.010000"],["2024-07-25T21:21:16.010000"],["2024-07-25T21:21:17.010000"],["2024-07-25T21:21:18.010000"],["2024-07-25T21:21:19.010000"],["2024-07-25T21:21:20.010000"],["2024-07-25T21:21:21.010000"],["2024-07-25T21:21:22.010000"],["2024-07-25T21:21:23.010000"],["2024-07-25T21:21:24.010000"],["2024-07-25T21:21:25.010000"],["2024-07-25T21:21:26.010000"],["2024-07-25T21:21:27.010000"],["2024-07-25T21:21:28.010000"],["2024-07-25T21:21:29.010000"],["2024-07-25T21:21:30.010000"],["2024-07-25T21:21:31.010000"],["2024-07-25T21:21:32.010000"],["2024-07-25T21:21:33.010000"],["2024-07-25T21:21:34.010000"],["2024-07-25T21:21:35.010000"],["2024-07-25T21:21:36.010000"],["2024-07-25T21:21:37.010000"],["2024-07-25T21:21:38.010000"],["2024-07-25T21:21:39.010000"],["2024-07-25T21:21:40.010000"],["2024-07-25T21:21:41.010000"],["2024-07-25T21:21:42.010000"],["2024-07-25T21:21:43.010000"],["2024-07-25T21:21:44.010000"],["2024-07-25T21:21:45.010000"],["2024-07-25T21:21:46.010000"],["2024-07-25T21:21:47.010000"],["2024-07-25T21:21:48.010000"],["2024-07-25T21:21:49.010000"],["2024-07-25T21:21:50.010000"],["2024-07-25T21:21:51.010000"],["2024-07-25T21:21:52.010000"],["2024-07-25T21:21:53.010000"],["2024-07-25T21:21:54.010000"],["2024-07-25T21:21:55.010000"],["2024-07-25T21:21:56.010000"],["2024-07-25T21:21:57.010000"],["2024-07-25T21:21:58.010000"],["2024-07-25T21:21:59.010000"],["2024-07-25T21:22:00.010000"],["2024-07-25T21:22:01.010000"],["2024-07-25T21:22:02.010000"],["2024-07-25T21:22:03.010000"],["2024-07-25T21:22:04.010000"],["2024-07-25T21:22:05.010000"],["2024-07-25T21:22:06.010000"],["2024-07-25T21:22:07.010000"],["2024-07-25T21:22:08.010000"],["2024-07-25T21:22:09.010000"],["2024-07-25T21:22:10.010000"],["2024-07-25T21:22:11.010000"],["2024-07-25T21:22:12.010000"],["2024-07-25T21:22:13.010000"],["2024-07-25T21:22:14.010000"],["2024-07-25T21:22:15.010000"],["2024-07-25T21:22:16.010000"],["2024-07-25T21:22:17.010000"],["2024-07-25T21:22:18.010000"],["2024-07-25T21:22:19.010000"],["2024-07-25T21:22:20.010000"],["2024-07-25T21:22:21.010000"],["2024-07-25T21:22:22.010000"],["2024-07-25T21:22:23.010000"],["2024-07-25T21:22:24.010000"],["2024-07-25T21:22:25.010000"],["2024-07-25T21:22:26.010000"],["2024-07-25T21:22:27.010000"],["2024-07-25T21:22:28.010000"],["2024-07-25T21:22:29.010000"],["2024-07-25T21:22:30.010000"],["2024-07-25T21:22:31.010000"],["2024-07-25T21:22:32.010000"],["2024-07-25T21:22:33.010000"],["2024-07-25T21:22:34.010000"],["2024-07-25T21:22:35.010000"],["2024-07-25T21:22:36.010000"],["2024-07-25T21:22:37.010000"],["2024-07-25T21:22:38.010000"],["2024-07-25T21:22:39.010000"],["2024-07-25T21:22:40.010000"],["2024-07-25T21:22:41.010000"],["2024-07-25T21:22:42.010000"],["2024-07-25T21:22:43.010000"],["2024-07-25T21:22:44.010000"],["2024-07-25T21:22:45.010000"],["2024-07-25T21:22:46.010000"],["2024-07-25T21:22:47.010000"],["2024-07-25T21:22:48.010000"],["2024-07-25T21:22:49.010000"],["2024-07-25T21:22:50.010000"],["2024-07-25T21:22:51.010000"],["2024-07-25T21:22:52.010000"],["2024-07-25T21:22:53.010000"],["2024-07-25T21:22:54.010000"],["2024-07-25T21:22:55.010000"],["2024-07-25T21:22:56.010000"],["2024-07-25T21:22:57.010000"],["2024-07-25T21:22:58.010000"],["2024-07-25T21:22:59.010000"],["2024-07-25T21:23:00.010000"],["2024-07-25T21:23:01.010000"],["2024-07-25T21:23:02.010000"],["2024-07-25T21:23:03.010000"],["2024-07-25T21:23:04.010000"],["2024-07-25T21:23:05.010000"],["2024-07-25T21:23:06.010000"],["2024-07-25T21:23:07.010000"],["2024-07-25T21:23:08.010000"],["2024-07-25T21:23:09.010000"],["2024-07-25T21:23:10.010000"],["2024-07-25T21:23:11.010000"],["2024-07-25T21:23:12.010000"],["2024-07-25T21:23:13.010000"],["2024-07-25T21:23:14.010000"],["2024-07-25T21:23:15.010000"],["2024-07-25T21:23:16.010000"],["2024-07-25T21:23:17.010000"],["2024-07-25T21:23:18.010000"],["2024-07-25T21:23:19.010000"],["2024-07-25T21:23:20.010000"],["2024-07-25T21:23:21.010000"],["2024-07-25T21:23:22.010000"],["2024-07-25T21:23:23.010000"],["2024-07-25T21:23:24.010000"],["2024-07-25T21:23:25.010000"],["2024-07-25T21:23:26.010000"],["2024-07-25T21:23:27.010000"],["2024-07-25T21:23:28.010000"],["2024-07-25T21:23:29.010000"],["2024-07-25T21:23:30.010000"],["2024-07-25T21:23:31.010000"],["2024-07-25T21:23:32.010000"],["2024-07-25T21:23:33.010000"],["2024-07-25T21:23:34.010000"],["2024-07-25T21:23:35.010000"],["2024-07-25T21:23:36.010000"],["2024-07-25T21:23:37.010000"],["2024-07-25T21:23:38.010000"],["2024-07-25T21:23:39.010000"],["2024-07-25T21:23:40.010000"],["2024-07-25T21:23:41.010000"],["2024-07-25T21:23:42.010000"],["2024-07-25T21:23:43.010000"],["2024-07-25T21:23:44.010000"],["2024-07-25T21:23:45.010000"],["2024-07-25T21:23:46.010000"],["2024-07-25T21:23:47.010000"],["2024-07-25T21:23:48.010000"],["2024-07-25T21:23:49.010000"],["2024-07-25T21:23:50.010000"],["2024-07-25T21:23:51.010000"],["2024-07-25T21:23:52.010000"],["2024-07-25T21:23:53.010000"],["2024-07-25T21:23:54.010000"],["2024-07-25T21:23:55.010000"],["2024-07-25T21:23:56.010000"],["2024-07-25T21:23:57.010000"],["2024-07-25T21:23:58.010000"],["2024-07-25T21:23:59.010000"],["2024-07-25T21:24:00.010000"],["2024-07-25T21:24:01.010000"],["2024-07-25T21:24:02.010000"],["2024-07-25T21:24:03.010000"],["2024-07-25T21:24:04.010000"],["2024-07-25T21:24:05.010000"],["2024-07-25T21:24:06.010000"],["2024-07-25T21:24:07.010000"],["2024-07-25T21:24:08.010000"],["2024-07-25T21:24:09.010000"],["2024-07-25T21:24:10.010000"],["2024-07-25T21:24:11.010000"],["2024-07-25T21:24:12.010000"],["2024-07-25T21:24:13.010000"],["2024-07-25T21:24:14.010000"],["2024-07-25T21:24:15.010000"],["2024-07-25T21:24:16.010000"],["2024-07-25T21:24:17.010000"],["2024-07-25T21:24:18.010000"],["2024-07-25T21:24:19.010000"],["2024-07-25T21:24:20.010000"],["2024-07-25T21:24:21.010000"],["2024-07-25T21:24:22.010000"],["2024-07-25T21:24:23.010000"],["2024-07-25T21:24:24.010000"],["2024-07-25T21:24:25.010000"],["2024-07-25T21:24:26.010000"],["2024-07-25T21:24:27.010000"],["2024-07-25T21:24:28.010000"],["2024-07-25T21:24:29.010000"],["2024-07-25T21:24:30.010000"],["2024-07-25T21:24:31.010000"],["2024-07-25T21:24:32.010000"],["2024-07-25T21:24:33.010000"],["2024-07-25T21:24:34.010000"],["2024-07-25T21:24:35.010000"],["2024-07-25T21:24:36.010000"],["2024-07-25T21:24:37.010000"],["2024-07-25T21:24:38.010000"],["2024-07-25T21:24:39.010000"],["2024-07-25T21:24:40.010000"],["2024-07-25T21:24:41.010000"],["2024-07-25T21:24:42.010000"],["2024-07-25T21:24:43.010000"],["2024-07-25T21:24:44.010000"],["2024-07-25T21:24:45.010000"],["2024-07-25T21:24:46.010000"],["2024-07-25T21:24:47.010000"],["2024-07-25T21:24:48.010000"],["2024-07-25T21:24:49.010000"],["2024-07-25T21:24:50.010000"],["2024-07-25T21:24:51.010000"],["2024-07-25T21:24:52.010000"],["2024-07-25T21:24:53.010000"],["2024-07-25T21:24:54.010000"],["2024-07-25T21:24:55.010000"],["2024-07-25T21:24:56.010000"],["2024-07-25T21:24:57.010000"],["2024-07-25T21:24:58.010000"],["2024-07-25T21:24:59.010000"],["2024-07-25T21:25:00.010000"],["2024-07-25T21:25:01.010000"],["2024-07-25T21:25:02.010000"],["2024-07-25T21:25:03.010000"],["2024-07-25T21:25:04.010000"],["2024-07-25T21:25:05.010000"],["2024-07-25T21:25:06.010000"],["2024-07-25T21:25:07.010000"],["2024-07-25T21:25:08.010000"],["2024-07-25T21:25:09.010000"],["2024-07-25T21:25:10.010000"],["2024-07-25T21:25:11.010000"],["2024-07-25T21:25:12.010000"],["2024-07-25T21:25:13.010000"],["2024-07-25T21:25:14.010000"],["2024-07-25T21:25:15.010000"],["2024-07-25T21:25:16.010000"],["2024-07-25T21:25:17.010000"],["2024-07-25T21:25:18.010000"],["2024-07-25T21:25:19.010000"],["2024-07-25T21:25:20.010000"],["2024-07-25T21:25:21.010000"],["2024-07-25T21:25:22.010000"],["2024-07-25T21:25:23.010000"],["2024-07-25T21:25:24.010000"],["2024-07-25T21:25:25.010000"],["2024-07-25T21:25:26.010000"],["2024-07-25T21:25:27.010000"],["2024-07-25T21:25:28.010000"],["2024-07-25T21:25:29.010000"],["2024-07-25T21:25:30.010000"],["2024-07-25T21:25:31.010000"],["2024-07-25T21:25:32.010000"],["2024-07-25T21:25:33.010000"],["2024-07-25T21:25:34.010000"],["2024-07-25T21:25:35.010000"],["2024-07-25T21:25:36.010000"],["2024-07-25T21:25:37.010000"],["2024-07-25T21:25:38.010000"],["2024-07-25T21:25:39.010000"],["2024-07-25T21:25:40.010000"],["2024-07-25T21:25:41.010000"],["2024-07-25T21:25:42.010000"],["2024-07-25T21:25:43.010000"],["2024-07-25T21:25:44.010000"],["2024-07-25T21:25:45.010000"],["2024-07-25T21:25:46.010000"],["2024-07-25T21:25:47.010000"],["2024-07-25T21:25:48.010000"],["2024-07-25T21:25:49.010000"],["2024-07-25T21:25:50.010000"],["2024-07-25T21:25:51.010000"],["2024-07-25T21:25:52.010000"],["2024-07-25T21:25:53.010000"],["2024-07-25T21:25:54.010000"],["2024-07-25T21:25:55.010000"],["2024-07-25T21:25:56.010000"],["2024-07-25T21:25:57.010000"],["2024-07-25T21:25:58.010000"],["2024-07-25T21:25:59.010000"],["2024-07-25T21:26:00.010000"],["2024-07-25T21:26:01.010000"],["2024-07-25T21:26:02.010000"],["2024-07-25T21:26:03.010000"],["2024-07-25T21:26:04.010000"],["2024-07-25T21:26:05.010000"],["2024-07-25T21:26:06.010000"],["2024-07-25T21:26:07.010000"],["2024-07-25T21:26:08.010000"],["2024-07-25T21:26:09.010000"],["2024-07-25T21:26:10.010000"],["2024-07-25T21:26:11.010000"],["2024-07-25T21:26:12.010000"],["2024-07-25T21:26:13.010000"],["2024-07-25T21:26:14.010000"],["2024-07-25T21:26:15.010000"],["2024-07-25T21:26:16.010000"],["2024-07-25T21:26:17.010000"],["2024-07-25T21:26:18.010000"],["2024-07-25T21:26:19.010000"],["2024-07-25T21:26:20.010000"],["2024-07-25T21:26:21.010000"],["2024-07-25T21:26:22.010000"],["2024-07-25T21:26:23.010000"],["2024-07-25T21:26:24.010000"],["2024-07-25T21:26:25.010000"],["2024-07-25T21:26:26.010000"],["2024-07-25T21:26:27.010000"],["2024-07-25T21:26:28.010000"],["2024-07-25T21:26:29.010000"],["2024-07-25T21:26:30.010000"],["2024-07-25T21:26:31.010000"],["2024-07-25T21:26:32.010000"],["2024-07-25T21:26:33.010000"],["2024-07-25T21:26:34.010000"],["2024-07-25T21:26:35.010000"],["2024-07-25T21:26:36.010000"],["2024-07-25T21:26:37.010000"],["2024-07-25T21:26:38.010000"],["2024-07-25T21:26:39.010000"],["2024-07-25T21:26:40.010000"],["2024-07-25T21:26:41.010000"],["2024-07-25T21:26:42.010000"],["2024-07-25T21:26:43.010000"],["2024-07-25T21:26:44.010000"],["2024-07-25T21:26:45.010000"],["2024-07-25T21:26:46.010000"],["2024-07-25T21:26:47.010000"],["2024-07-25T21:26:48.010000"],["2024-07-25T21:26:49.010000"],["2024-07-25T21:26:50.010000"],["2024-07-25T21:26:51.010000"],["2024-07-25T21:26:52.010000"],["2024-07-25T21:26:53.010000"],["2024-07-25T21:26:54.010000"],["2024-07-25T21:26:55.010000"],["2024-07-25T21:26:56.010000"],["2024-07-25T21:26:57.010000"],["2024-07-25T21:26:58.010000"],["2024-07-25T21:26:59.010000"],["2024-07-25T21:27:00.010000"],["2024-07-25T21:27:01.010000"],["2024-07-25T21:27:02.010000"],["2024-07-25T21:27:03.010000"],["2024-07-25T21:27:04.010000"],["2024-07-25T21:27:05.010000"],["2024-07-25T21:27:06.010000"],["2024-07-25T21:27:07.010000"],["2024-07-25T21:27:08.010000"],["2024-07-25T21:27:09.010000"],["2024-07-25T21:27:10.010000"],["2024-07-25T21:27:11.010000"],["2024-07-25T21:27:12.010000"],["2024-07-25T21:27:13.010000"],["2024-07-25T21:27:14.010000"],["2024-07-25T21:27:15.010000"],["2024-07-25T21:27:16.010000"],["2024-07-25T21:27:17.010000"],["2024-07-25T21:27:18.010000"],["2024-07-25T21:27:19.010000"],["2024-07-25T21:27:20.010000"],["2024-07-25T21:27:21.010000"],["2024-07-25T21:27:22.010000"],["2024-07-25T21:27:23.010000"],["2024-07-25T21:27:24.010000"],["2024-07-25T21:27:25.010000"],["2024-07-25T21:27:26.010000"],["2024-07-25T21:27:27.010000"],["2024-07-25T21:27:28.010000"],["2024-07-25T21:27:29.010000"],["2024-07-25T21:27:30.010000"],["2024-07-25T21:27:31.010000"],["2024-07-25T21:27:32.010000"],["2024-07-25T21:27:33.010000"],["2024-07-25T21:27:34.010000"],["2024-07-25T21:27:35.010000"],["2024-07-25T21:27:36.010000"],["2024-07-25T21:27:37.010000"],["2024-07-25T21:27:38.010000"],["2024-07-25T21:27:39.010000"],["2024-07-25T21:27:40.010000"],["2024-07-25T21:27:41.010000"],["2024-07-25T21:27:42.010000"],["2024-07-25T21:27:43.010000"],["2024-07-25T21:27:44.010000"],["2024-07-25T21:27:45.010000"],["2024-07-25T21:27:46.010000"],["2024-07-25T21:27:47.010000"],["2024-07-25T21:27:48.010000"],["2024-07-25T21:27:49.010000"],["2024-07-25T21:27:50.010000"],["2024-07-25T21:27:51.010000"],["2024-07-25T21:27:52.010000"],["2024-07-25T21:27:53.010000"],["2024-07-25T21:27:54.010000"],["2024-07-25T21:27:55.010000"],["2024-07-25T21:27:56.010000"],["2024-07-25T21:27:57.010000"],["2024-07-25T21:27:58.010000"],["2024-07-25T21:27:59.010000"],["2024-07-25T21:28:00.010000"],["2024-07-25T21:28:01.010000"],["2024-07-25T21:28:02.010000"],["2024-07-25T21:28:03.010000"],["2024-07-25T21:28:04.010000"],["2024-07-25T21:28:05.010000"],["2024-07-25T21:28:06.010000"],["2024-07-25T21:28:07.010000"],["2024-07-25T21:28:08.010000"],["2024-07-25T21:28:09.010000"],["2024-07-25T21:28:10.010000"],["2024-07-25T21:28:11.010000"],["2024-07-25T21:28:12.010000"],["2024-07-25T21:28:13.010000"],["2024-07-25T21:28:14.010000"],["2024-07-25T21:28:15.010000"],["2024-07-25T21:28:16.010000"],["2024-07-25T21:28:17.010000"],["2024-07-25T21:28:18.010000"],["2024-07-25T21:28:19.010000"],["2024-07-25T21:28:20.010000"],["2024-07-25T21:28:21.010000"],["2024-07-25T21:28:22.010000"],["2024-07-25T21:28:23.010000"],["2024-07-25T21:28:24.010000"],["2024-07-25T21:28:25.010000"],["2024-07-25T21:28:26.010000"],["2024-07-25T21:28:27.010000"],["2024-07-25T21:28:28.010000"],["2024-07-25T21:28:29.010000"],["2024-07-25T21:28:30.010000"],["2024-07-25T21:28:31.010000"],["2024-07-25T21:28:32.010000"],["2024-07-25T21:28:33.010000"],["2024-07-25T21:28:34.010000"],["2024-07-25T21:28:35.010000"],["2024-07-25T21:28:36.010000"],["2024-07-25T21:28:37.010000"],["2024-07-25T21:28:38.010000"],["2024-07-25T21:28:39.010000"],["2024-07-25T21:28:40.010000"],["2024-07-25T21:28:41.010000"],["2024-07-25T21:28:42.010000"],["2024-07-25T21:28:43.010000"],["2024-07-25T21:28:44.010000"],["2024-07-25T21:28:45.010000"],["2024-07-25T21:28:46.010000"],["2024-07-25T21:28:47.010000"],["2024-07-25T21:28:48.010000"],["2024-07-25T21:28:49.010000"],["2024-07-25T21:28:50.010000"],["2024-07-25T21:28:51.010000"],["2024-07-25T21:28:52.010000"],["2024-07-25T21:28:53.010000"],["2024-07-25T21:28:54.010000"],["2024-07-25T21:28:55.010000"],["2024-07-25T21:28:56.010000"],["2024-07-25T21:28:57.010000"],["2024-07-25T21:28:58.010000"],["2024-07-25T21:28:59.010000"],["2024-07-25T21:29:00.010000"],["2024-07-25T21:29:01.010000"],["2024-07-25T21:29:02.010000"],["2024-07-25T21:29:03.010000"],["2024-07-25T21:29:04.010000"],["2024-07-25T21:29:05.010000"],["2024-07-25T21:29:06.010000"],["2024-07-25T21:29:07.010000"],["2024-07-25T21:29:08.010000"],["2024-07-25T21:29:09.010000"],["2024-07-25T21:29:10.010000"],["2024-07-25T21:29:11.010000"],["2024-07-25T21:29:12.010000"],["2024-07-25T21:29:13.010000"],["2024-07-25T21:29:14.010000"],["2024-07-25T21:29:15.010000"],["2024-07-25T21:29:16.010000"],["2024-07-25T21:29:17.010000"],["2024-07-25T21:29:18.010000"],["2024-07-25T21:29:19.010000"],["2024-07-25T21:29:20.010000"],["2024-07-25T21:29:21.010000"],["2024-07-25T21:29:22.010000"],["2024-07-25T21:29:23.010000"],["2024-07-25T21:29:24.010000"],["2024-07-25T21:29:25.010000"],["2024-07-25T21:29:26.010000"],["2024-07-25T21:29:27.010000"],["2024-07-25T21:29:28.010000"],["2024-07-25T21:29:29.010000"],["2024-07-25T21:29:30.010000"],["2024-07-25T21:29:31.010000"],["2024-07-25T21:29:32.010000"],["2024-07-25T21:29:33.010000"],["2024-07-25T21:29:34.010000"],["2024-07-25T21:29:35.010000"],["2024-07-25T21:29:36.010000"],["2024-07-25T21:29:37.010000"],["2024-07-25T21:29:38.010000"],["2024-07-25T21:29:39.010000"],["2024-07-25T21:29:40.010000"],["2024-07-25T21:29:41.010000"],["2024-07-25T21:29:42.010000"],["2024-07-25T21:29:43.010000"],["2024-07-25T21:29:44.010000"],["2024-07-25T21:29:45.010000"],["2024-07-25T21:29:46.010000"],["2024-07-25T21:29:47.010000"],["2024-07-25T21:29:48.010000"],["2024-07-25T21:29:49.010000"],["2024-07-25T21:29:50.010000"],["2024-07-25T21:29:51.010000"],["2024-07-25T21:29:52.010000"],["2024-07-25T21:29:53.010000"],["2024-07-25T21:29:54.010000"],["2024-07-25T21:29:55.010000"],["2024-07-25T21:29:56.010000"],["2024-07-25T21:29:57.010000"],["2024-07-25T21:29:58.010000"],["2024-07-25T21:29:59.010000"],["2024-07-25T21:30:00.010000"],["2024-07-25T21:30:01.010000"],["2024-07-25T21:30:02.010000"],["2024-07-25T21:30:03.010000"],["2024-07-25T21:30:04.010000"],["2024-07-25T21:30:05.010000"],["2024-07-25T21:30:06.010000"],["2024-07-25T21:30:07.010000"],["2024-07-25T21:30:08.010000"],["2024-07-25T21:30:09.010000"],["2024-07-25T21:30:10.010000"],["2024-07-25T21:30:11.010000"],["2024-07-25T21:30:12.010000"],["2024-07-25T21:30:13.010000"],["2024-07-25T21:30:14.010000"],["2024-07-25T21:30:15.010000"],["2024-07-25T21:30:16.010000"],["2024-07-25T21:30:17.010000"],["2024-07-25T21:30:18.010000"],["2024-07-25T21:30:19.010000"],["2024-07-25T21:30:20.010000"],["2024-07-25T21:30:21.010000"],["2024-07-25T21:30:22.010000"],["2024-07-25T21:30:23.010000"],["2024-07-25T21:30:24.010000"],["2024-07-25T21:30:25.010000"],["2024-07-25T21:30:26.010000"],["2024-07-25T21:30:27.010000"],["2024-07-25T21:30:28.010000"],["2024-07-25T21:30:29.010000"],["2024-07-25T21:30:30.010000"],["2024-07-25T21:30:31.010000"],["2024-07-25T21:30:32.010000"],["2024-07-25T21:30:33.010000"],["2024-07-25T21:30:34.010000"],["2024-07-25T21:30:35.010000"],["2024-07-25T21:30:36.010000"],["2024-07-25T21:30:37.010000"],["2024-07-25T21:30:38.010000"],["2024-07-25T21:30:39.010000"],["2024-07-25T21:30:40.010000"],["2024-07-25T21:30:41.010000"],["2024-07-25T21:30:42.010000"],["2024-07-25T21:30:43.010000"],["2024-07-25T21:30:44.010000"],["2024-07-25T21:30:45.010000"],["2024-07-25T21:30:46.010000"],["2024-07-25T21:30:47.010000"],["2024-07-25T21:30:48.010000"],["2024-07-25T21:30:49.010000"],["2024-07-25T21:30:50.010000"],["2024-07-25T21:30:51.010000"],["2024-07-25T21:30:52.010000"],["2024-07-25T21:30:53.010000"],["2024-07-25T21:30:54.010000"],["2024-07-25T21:30:55.010000"],["2024-07-25T21:30:56.010000"],["2024-07-25T21:30:57.010000"],["2024-07-25T21:30:58.010000"],["2024-07-25T21:30:59.010000"],["2024-07-25T21:31:00.010000"],["2024-07-25T21:31:01.010000"],["2024-07-25T21:31:02.010000"],["2024-07-25T21:31:03.010000"],["2024-07-25T21:31:04.010000"],["2024-07-25T21:31:05.010000"],["2024-07-25T21:31:06.010000"],["2024-07-25T21:31:07.010000"],["2024-07-25T21:31:08.010000"],["2024-07-25T21:31:09.010000"],["2024-07-25T21:31:10.010000"],["2024-07-25T21:31:11.010000"],["2024-07-25T21:31:12.010000"],["2024-07-25T21:31:13.010000"],["2024-07-25T21:31:14.010000"],["2024-07-25T21:31:15.010000"],["2024-07-25T21:31:16.010000"],["2024-07-25T21:31:17.010000"],["2024-07-25T21:31:18.010000"],["2024-07-25T21:31:19.010000"],["2024-07-25T21:31:20.010000"],["2024-07-25T21:31:21.010000"],["2024-07-25T21:31:22.010000"],["2024-07-25T21:31:23.010000"],["2024-07-25T21:31:24.010000"],["2024-07-25T21:31:25.010000"],["2024-07-25T21:31:26.010000"],["2024-07-25T21:31:27.010000"],["2024-07-25T21:31:28.010000"],["2024-07-25T21:31:29.010000"],["2024-07-25T21:31:30.010000"],["2024-07-25T21:31:31.010000"],["2024-07-25T21:31:32.010000"],["2024-07-25T21:31:33.010000"],["2024-07-25T21:31:34.010000"],["2024-07-25T21:31:35.010000"],["2024-07-25T21:31:36.010000"],["2024-07-25T21:31:37.010000"],["2024-07-25T21:31:38.010000"],["2024-07-25T21:31:39.010000"],["2024-07-25T21:31:40.010000"],["2024-07-25T21:31:41.010000"],["2024-07-25T21:31:42.010000"],["2024-07-25T21:31:43.010000"],["2024-07-25T21:31:44.010000"],["2024-07-25T21:31:45.010000"],["2024-07-25T21:31:46.010000"],["2024-07-25T21:31:47.010000"],["2024-07-25T21:31:48.010000"],["2024-07-25T21:31:49.010000"],["2024-07-25T21:31:50.010000"],["2024-07-25T21:31:51.010000"],["2024-07-25T21:31:52.010000"],["2024-07-25T21:31:53.010000"],["2024-07-25T21:31:54.010000"],["2024-07-25T21:31:55.010000"],["2024-07-25T21:31:56.010000"],["2024-07-25T21:31:57.010000"],["2024-07-25T21:31:58.010000"],["2024-07-25T21:31:59.010000"],["2024-07-25T21:32:00.010000"],["2024-07-25T21:32:01.010000"],["2024-07-25T21:32:02.010000"],["2024-07-25T21:32:03.010000"],["2024-07-25T21:32:04.010000"],["2024-07-25T21:32:05.010000"],["2024-07-25T21:32:06.010000"],["2024-07-25T21:32:07.010000"],["2024-07-25T21:32:08.010000"],["2024-07-25T21:32:09.010000"],["2024-07-25T21:32:10.010000"],["2024-07-25T21:32:11.010000"],["2024-07-25T21:32:12.010000"],["2024-07-25T21:32:13.010000"],["2024-07-25T21:32:14.010000"],["2024-07-25T21:32:15.010000"],["2024-07-25T21:32:16.010000"],["2024-07-25T21:32:17.010000"],["2024-07-25T21:32:18.010000"],["2024-07-25T21:32:19.010000"],["2024-07-25T21:32:20.010000"],["2024-07-25T21:32:21.010000"],["2024-07-25T21:32:22.010000"],["2024-07-25T21:32:23.010000"],["2024-07-25T21:32:24.010000"],["2024-07-25T21:32:25.010000"],["2024-07-25T21:32:26.010000"],["2024-07-25T21:32:27.010000"],["2024-07-25T21:32:28.010000"],["2024-07-25T21:32:29.010000"],["2024-07-25T21:32:30.010000"],["2024-07-25T21:32:31.010000"],["2024-07-25T21:32:32.010000"],["2024-07-25T21:32:33.010000"],["2024-07-25T21:32:34.010000"],["2024-07-25T21:32:35.010000"],["2024-07-25T21:32:36.010000"],["2024-07-25T21:32:37.010000"],["2024-07-25T21:32:38.010000"],["2024-07-25T21:32:39.010000"],["2024-07-25T21:32:40.010000"],["2024-07-25T21:32:41.010000"],["2024-07-25T21:32:42.010000"],["2024-07-25T21:32:43.010000"],["2024-07-25T21:32:44.010000"],["2024-07-25T21:32:45.010000"],["2024-07-25T21:32:46.010000"],["2024-07-25T21:32:47.010000"],["2024-07-25T21:32:48.010000"],["2024-07-25T21:32:49.010000"],["2024-07-25T21:32:50.010000"],["2024-07-25T21:32:51.010000"],["2024-07-25T21:32:52.010000"],["2024-07-25T21:32:53.010000"],["2024-07-25T21:32:54.010000"],["2024-07-25T21:32:55.010000"],["2024-07-25T21:32:56.010000"],["2024-07-25T21:32:57.010000"],["2024-07-25T21:32:58.010000"],["2024-07-25T21:32:59.010000"],["2024-07-25T21:33:00.010000"],["2024-07-25T21:33:01.010000"],["2024-07-25T21:33:02.010000"],["2024-07-25T21:33:03.010000"],["2024-07-25T21:33:04.010000"],["2024-07-25T21:33:05.010000"],["2024-07-25T21:33:06.010000"],["2024-07-25T21:33:07.010000"],["2024-07-25T21:33:08.010000"],["2024-07-25T21:33:09.010000"],["2024-07-25T21:33:10.010000"],["2024-07-25T21:33:11.010000"],["2024-07-25T21:33:12.010000"],["2024-07-25T21:33:13.010000"],["2024-07-25T21:33:14.010000"],["2024-07-25T21:33:15.010000"],["2024-07-25T21:33:16.010000"],["2024-07-25T21:33:17.010000"],["2024-07-25T21:33:18.010000"],["2024-07-25T21:33:19.010000"],["2024-07-25T21:33:20.010000"],["2024-07-25T21:33:21.010000"],["2024-07-25T21:33:22.010000"],["2024-07-25T21:33:23.010000"],["2024-07-25T21:33:24.010000"],["2024-07-25T21:33:25.010000"],["2024-07-25T21:33:26.010000"],["2024-07-25T21:33:27.010000"],["2024-07-25T21:33:28.010000"],["2024-07-25T21:33:29.010000"],["2024-07-25T21:33:30.010000"],["2024-07-25T21:33:31.010000"],["2024-07-25T21:33:32.010000"],["2024-07-25T21:33:33.010000"],["2024-07-25T21:33:34.010000"],["2024-07-25T21:33:35.010000"],["2024-07-25T21:33:36.010000"],["2024-07-25T21:33:37.010000"],["2024-07-25T21:33:38.010000"],["2024-07-25T21:33:39.010000"],["2024-07-25T21:33:40.010000"],["2024-07-25T21:33:41.010000"],["2024-07-25T21:33:42.010000"],["2024-07-25T21:33:43.010000"],["2024-07-25T21:33:44.010000"],["2024-07-25T21:33:45.010000"],["2024-07-25T21:33:46.010000"],["2024-07-25T21:33:47.010000"],["2024-07-25T21:33:48.010000"],["2024-07-25T21:33:49.010000"],["2024-07-25T21:33:50.010000"],["2024-07-25T21:33:51.010000"],["2024-07-25T21:33:52.010000"],["2024-07-25T21:33:53.010000"],["2024-07-25T21:33:54.010000"],["2024-07-25T21:33:55.010000"],["2024-07-25T21:33:56.010000"],["2024-07-25T21:33:57.010000"],["2024-07-25T21:33:58.010000"],["2024-07-25T21:33:59.010000"],["2024-07-25T21:34:00.010000"],["2024-07-25T21:34:01.010000"],["2024-07-25T21:34:02.010000"],["2024-07-25T21:34:03.010000"],["2024-07-25T21:34:04.010000"],["2024-07-25T21:34:05.010000"],["2024-07-25T21:34:06.010000"],["2024-07-25T21:34:07.010000"],["2024-07-25T21:34:08.010000"],["2024-07-25T21:34:09.010000"],["2024-07-25T21:34:10.010000"],["2024-07-25T21:34:11.010000"],["2024-07-25T21:34:12.010000"],["2024-07-25T21:34:13.010000"],["2024-07-25T21:34:14.010000"],["2024-07-25T21:34:15.010000"],["2024-07-25T21:34:16.010000"],["2024-07-25T21:34:17.010000"],["2024-07-25T21:34:18.010000"],["2024-07-25T21:34:19.010000"],["2024-07-25T21:34:20.010000"],["2024-07-25T21:34:21.010000"],["2024-07-25T21:34:22.010000"],["2024-07-25T21:34:23.010000"],["2024-07-25T21:34:24.010000"],["2024-07-25T21:34:25.010000"],["2024-07-25T21:34:26.010000"],["2024-07-25T21:34:27.010000"],["2024-07-25T21:34:28.010000"],["2024-07-25T21:34:29.010000"],["2024-07-25T21:34:30.010000"],["2024-07-25T21:34:31.010000"],["2024-07-25T21:34:32.010000"],["2024-07-25T21:34:33.010000"],["2024-07-25T21:34:34.010000"],["2024-07-25T21:34:35.010000"],["2024-07-25T21:34:36.010000"],["2024-07-25T21:34:37.010000"],["2024-07-25T21:34:38.010000"],["2024-07-25T21:34:39.010000"],["2024-07-25T21:34:40.010000"],["2024-07-25T21:34:41.010000"],["2024-07-25T21:34:42.010000"],["2024-07-25T21:34:43.010000"],["2024-07-25T21:34:44.010000"],["2024-07-25T21:34:45.010000"],["2024-07-25T21:34:46.010000"],["2024-07-25T21:34:47.010000"],["2024-07-25T21:34:48.010000"],["2024-07-25T21:34:49.010000"],["2024-07-25T21:34:50.010000"],["2024-07-25T21:34:51.010000"],["2024-07-25T21:34:52.010000"],["2024-07-25T21:34:53.010000"],["2024-07-25T21:34:54.010000"],["2024-07-25T21:34:55.010000"],["2024-07-25T21:34:56.010000"],["2024-07-25T21:34:57.010000"],["2024-07-25T21:34:58.010000"],["2024-07-25T21:34:59.010000"],["2024-07-25T21:35:00.010000"],["2024-07-25T21:35:01.010000"],["2024-07-25T21:35:02.010000"],["2024-07-25T21:35:03.010000"],["2024-07-25T21:35:04.010000"],["2024-07-25T21:35:05.010000"],["2024-07-25T21:35:06.010000"],["2024-07-25T21:35:07.010000"],["2024-07-25T21:35:08.010000"],["2024-07-25T21:35:09.010000"],["2024-07-25T21:35:10.010000"],["2024-07-25T21:35:11.010000"],["2024-07-25T21:35:12.010000"],["2024-07-25T21:35:13.010000"],["2024-07-25T21:35:14.010000"],["2024-07-25T21:35:15.010000"],["2024-07-25T21:35:16.010000"],["2024-07-25T21:35:17.010000"],["2024-07-25T21:35:18.010000"],["2024-07-25T21:35:19.010000"],["2024-07-25T21:35:20.010000"],["2024-07-25T21:35:21.010000"],["2024-07-25T21:35:22.010000"],["2024-07-25T21:35:23.010000"],["2024-07-25T21:35:24.010000"],["2024-07-25T21:35:25.010000"],["2024-07-25T21:35:26.010000"],["2024-07-25T21:35:27.010000"],["2024-07-25T21:35:28.010000"],["2024-07-25T21:35:29.010000"],["2024-07-25T21:35:30.010000"],["2024-07-25T21:35:31.010000"],["2024-07-25T21:35:32.010000"],["2024-07-25T21:35:33.010000"],["2024-07-25T21:35:34.010000"],["2024-07-25T21:35:35.010000"],["2024-07-25T21:35:36.010000"],["2024-07-25T21:35:37.010000"],["2024-07-25T21:35:38.010000"],["2024-07-25T21:35:39.010000"],["2024-07-25T21:35:40.010000"],["2024-07-25T21:35:41.010000"],["2024-07-25T21:35:42.010000"],["2024-07-25T21:35:43.010000"],["2024-07-25T21:35:44.010000"],["2024-07-25T21:35:45.010000"],["2024-07-25T21:35:46.010000"],["2024-07-25T21:35:47.010000"],["2024-07-25T21:35:48.010000"],["2024-07-25T21:35:49.010000"],["2024-07-25T21:35:50.010000"],["2024-07-25T21:35:51.010000"],["2024-07-25T21:35:52.010000"],["2024-07-25T21:35:53.010000"],["2024-07-25T21:35:54.010000"],["2024-07-25T21:35:55.010000"],["2024-07-25T21:35:56.010000"],["2024-07-25T21:35:57.010000"],["2024-07-25T21:35:58.010000"],["2024-07-25T21:35:59.010000"],["2024-07-25T21:36:00.010000"],["2024-07-25T21:36:01.010000"],["2024-07-25T21:36:02.010000"],["2024-07-25T21:36:03.010000"],["2024-07-25T21:36:04.010000"],["2024-07-25T21:36:05.010000"],["2024-07-25T21:36:06.010000"],["2024-07-25T21:36:07.010000"],["2024-07-25T21:36:08.010000"],["2024-07-25T21:36:09.010000"],["2024-07-25T21:36:10.010000"],["2024-07-25T21:36:11.010000"],["2024-07-25T21:36:12.010000"],["2024-07-25T21:36:13.010000"],["2024-07-25T21:36:14.010000"],["2024-07-25T21:36:15.010000"],["2024-07-25T21:36:16.010000"],["2024-07-25T21:36:17.010000"],["2024-07-25T21:36:18.010000"],["2024-07-25T21:36:19.010000"],["2024-07-25T21:36:20.010000"],["2024-07-25T21:36:21.010000"],["2024-07-25T21:36:22.010000"],["2024-07-25T21:36:23.010000"],["2024-07-25T21:36:24.010000"],["2024-07-25T21:36:25.010000"],["2024-07-25T21:36:26.010000"],["2024-07-25T21:36:27.010000"],["2024-07-25T21:36:28.010000"],["2024-07-25T21:36:29.010000"],["2024-07-25T21:36:30.010000"],["2024-07-25T21:36:31.010000"],["2024-07-25T21:36:32.010000"],["2024-07-25T21:36:33.010000"],["2024-07-25T21:36:34.010000"],["2024-07-25T21:36:35.010000"],["2024-07-25T21:36:36.010000"],["2024-07-25T21:36:37.010000"],["2024-07-25T21:36:38.010000"],["2024-07-25T21:36:39.010000"],["2024-07-25T21:36:40.010000"],["2024-07-25T21:36:41.010000"],["2024-07-25T21:36:42.010000"],["2024-07-25T21:36:43.010000"],["2024-07-25T21:36:44.010000"],["2024-07-25T21:36:45.010000"],["2024-07-25T21:36:46.010000"],["2024-07-25T21:36:47.010000"],["2024-07-25T21:36:48.010000"],["2024-07-25T21:36:49.010000"],["2024-07-25T21:36:50.010000"],["2024-07-25T21:36:51.010000"],["2024-07-25T21:36:52.010000"],["2024-07-25T21:36:53.010000"],["2024-07-25T21:36:54.010000"],["2024-07-25T21:36:55.010000"],["2024-07-25T21:36:56.010000"],["2024-07-25T21:36:57.010000"],["2024-07-25T21:36:58.010000"],["2024-07-25T21:36:59.010000"],["2024-07-25T21:37:00.010000"],["2024-07-25T21:37:01.010000"],["2024-07-25T21:37:02.010000"],["2024-07-25T21:37:03.010000"],["2024-07-25T21:37:04.010000"],["2024-07-25T21:37:05.010000"],["2024-07-25T21:37:06.010000"],["2024-07-25T21:37:07.010000"],["2024-07-25T21:37:08.010000"],["2024-07-25T21:37:09.010000"],["2024-07-25T21:37:10.010000"],["2024-07-25T21:37:11.010000"],["2024-07-25T21:37:12.010000"],["2024-07-25T21:37:13.010000"],["2024-07-25T21:37:14.010000"],["2024-07-25T21:37:15.010000"],["2024-07-25T21:37:16.010000"],["2024-07-25T21:37:17.010000"],["2024-07-25T21:37:18.010000"],["2024-07-25T21:37:19.010000"],["2024-07-25T21:37:20.010000"],["2024-07-25T21:37:21.010000"],["2024-07-25T21:37:22.010000"],["2024-07-25T21:37:23.010000"],["2024-07-25T21:37:24.010000"],["2024-07-25T21:37:25.010000"],["2024-07-25T21:37:26.010000"],["2024-07-25T21:37:27.010000"],["2024-07-25T21:37:28.010000"],["2024-07-25T21:37:29.010000"],["2024-07-25T21:37:30.010000"],["2024-07-25T21:37:31.010000"],["2024-07-25T21:37:32.010000"],["2024-07-25T21:37:33.010000"],["2024-07-25T21:37:34.010000"],["2024-07-25T21:37:35.010000"],["2024-07-25T21:37:36.010000"],["2024-07-25T21:37:37.010000"],["2024-07-25T21:37:38.010000"],["2024-07-25T21:37:39.010000"],["2024-07-25T21:37:40.010000"],["2024-07-25T21:37:41.010000"],["2024-07-25T21:37:42.010000"],["2024-07-25T21:37:43.010000"],["2024-07-25T21:37:44.010000"],["2024-07-25T21:37:45.010000"],["2024-07-25T21:37:46.010000"],["2024-07-25T21:37:47.010000"],["2024-07-25T21:37:48.010000"],["2024-07-25T21:37:49.010000"],["2024-07-25T21:37:50.010000"],["2024-07-25T21:37:51.010000"],["2024-07-25T21:37:52.010000"],["2024-07-25T21:37:53.010000"],["2024-07-25T21:37:54.010000"],["2024-07-25T21:37:55.010000"],["2024-07-25T21:37:56.010000"],["2024-07-25T21:37:57.010000"],["2024-07-25T21:37:58.010000"],["2024-07-25T21:37:59.010000"],["2024-07-25T21:38:00.010000"],["2024-07-25T21:38:01.010000"],["2024-07-25T21:38:02.010000"],["2024-07-25T21:38:03.010000"],["2024-07-25T21:38:04.010000"],["2024-07-25T21:38:05.010000"],["2024-07-25T21:38:06.010000"],["2024-07-25T21:38:07.010000"],["2024-07-25T21:38:08.010000"],["2024-07-25T21:38:09.010000"],["2024-07-25T21:38:10.010000"],["2024-07-25T21:38:11.010000"],["2024-07-25T21:38:12.010000"],["2024-07-25T21:38:13.010000"],["2024-07-25T21:38:14.010000"],["2024-07-25T21:38:15.010000"],["2024-07-25T21:38:16.010000"],["2024-07-25T21:38:17.010000"],["2024-07-25T21:38:18.010000"],["2024-07-25T21:38:19.010000"],["2024-07-25T21:38:20.010000"],["2024-07-25T21:38:21.010000"],["2024-07-25T21:38:22.010000"],["2024-07-25T21:38:23.010000"],["2024-07-25T21:38:24.010000"],["2024-07-25T21:38:25.010000"],["2024-07-25T21:38:26.010000"],["2024-07-25T21:38:27.010000"],["2024-07-25T21:38:28.010000"],["2024-07-25T21:38:29.010000"],["2024-07-25T21:38:30.010000"],["2024-07-25T21:38:31.010000"],["2024-07-25T21:38:32.010000"],["2024-07-25T21:38:33.010000"],["2024-07-25T21:38:34.010000"],["2024-07-25T21:38:35.010000"],["2024-07-25T21:38:36.010000"],["2024-07-25T21:38:37.010000"],["2024-07-25T21:38:38.010000"],["2024-07-25T21:38:39.010000"],["2024-07-25T21:38:40.010000"],["2024-07-25T21:38:41.010000"],["2024-07-25T21:38:42.010000"],["2024-07-25T21:38:43.010000"],["2024-07-25T21:38:44.010000"],["2024-07-25T21:38:45.010000"],["2024-07-25T21:38:46.010000"],["2024-07-25T21:38:47.010000"],["2024-07-25T21:38:48.010000"],["2024-07-25T21:38:49.010000"],["2024-07-25T21:38:50.010000"],["2024-07-25T21:38:51.010000"],["2024-07-25T21:38:52.010000"],["2024-07-25T21:38:53.010000"],["2024-07-25T21:38:54.010000"],["2024-07-25T21:38:55.010000"],["2024-07-25T21:38:56.010000"],["2024-07-25T21:38:57.010000"],["2024-07-25T21:38:58.010000"],["2024-07-25T21:38:59.010000"],["2024-07-25T21:39:00.010000"],["2024-07-25T21:39:01.010000"],["2024-07-25T21:39:02.010000"],["2024-07-25T21:39:03.010000"],["2024-07-25T21:39:04.010000"],["2024-07-25T21:39:05.010000"],["2024-07-25T21:39:06.010000"],["2024-07-25T21:39:07.010000"],["2024-07-25T21:39:08.010000"],["2024-07-25T21:39:09.010000"],["2024-07-25T21:39:10.010000"],["2024-07-25T21:39:11.010000"],["2024-07-25T21:39:12.010000"],["2024-07-25T21:39:13.010000"],["2024-07-25T21:39:14.010000"],["2024-07-25T21:39:15.010000"],["2024-07-25T21:39:16.010000"],["2024-07-25T21:39:17.010000"],["2024-07-25T21:39:18.010000"],["2024-07-25T21:39:19.010000"],["2024-07-25T21:39:20.010000"],["2024-07-25T21:39:21.010000"],["2024-07-25T21:39:22.010000"],["2024-07-25T21:39:23.010000"],["2024-07-25T21:39:24.010000"],["2024-07-25T21:39:25.010000"],["2024-07-25T21:39:26.010000"],["2024-07-25T21:39:27.010000"],["2024-07-25T21:39:28.010000"],["2024-07-25T21:39:29.010000"],["2024-07-25T21:39:30.010000"],["2024-07-25T21:39:31.010000"],["2024-07-25T21:39:32.010000"],["2024-07-25T21:39:33.010000"],["2024-07-25T21:39:34.010000"],["2024-07-25T21:39:35.010000"],["2024-07-25T21:39:36.010000"],["2024-07-25T21:39:37.010000"],["2024-07-25T21:39:38.010000"],["2024-07-25T21:39:39.010000"],["2024-07-25T21:39:40.010000"],["2024-07-25T21:39:41.010000"],["2024-07-25T21:39:42.010000"],["2024-07-25T21:39:43.010000"],["2024-07-25T21:39:44.010000"],["2024-07-25T21:39:45.010000"],["2024-07-25T21:39:46.010000"],["2024-07-25T21:39:47.010000"],["2024-07-25T21:39:48.010000"],["2024-07-25T21:39:49.010000"],["2024-07-25T21:39:50.010000"],["2024-07-25T21:39:51.010000"],["2024-07-25T21:39:52.010000"],["2024-07-25T21:39:53.010000"],["2024-07-25T21:39:54.010000"],["2024-07-25T21:39:55.010000"],["2024-07-25T21:39:56.010000"],["2024-07-25T21:39:57.010000"],["2024-07-25T21:39:58.010000"],["2024-07-25T21:39:59.010000"],["2024-07-25T21:40:00.010000"],["2024-07-25T21:40:01.010000"],["2024-07-25T21:40:02.010000"],["2024-07-25T21:40:03.010000"],["2024-07-25T21:40:04.010000"],["2024-07-25T21:40:05.010000"],["2024-07-25T21:40:06.010000"],["2024-07-25T21:40:07.010000"],["2024-07-25T21:40:08.010000"],["2024-07-25T21:40:09.010000"],["2024-07-25T21:40:10.010000"],["2024-07-25T21:40:11.010000"],["2024-07-25T21:40:12.010000"],["2024-07-25T21:40:13.010000"],["2024-07-25T21:40:14.010000"],["2024-07-25T21:40:15.010000"],["2024-07-25T21:40:16.010000"],["2024-07-25T21:40:17.010000"],["2024-07-25T21:40:18.010000"],["2024-07-25T21:40:19.010000"],["2024-07-25T21:40:20.010000"],["2024-07-25T21:40:21.010000"],["2024-07-25T21:40:22.010000"],["2024-07-25T21:40:23.010000"],["2024-07-25T21:40:24.010000"],["2024-07-25T21:40:25.010000"],["2024-07-25T21:40:26.010000"],["2024-07-25T21:40:27.010000"],["2024-07-25T21:40:28.010000"],["2024-07-25T21:40:29.010000"],["2024-07-25T21:40:30.010000"],["2024-07-25T21:40:31.010000"],["2024-07-25T21:40:32.010000"],["2024-07-25T21:40:33.010000"],["2024-07-25T21:40:34.010000"],["2024-07-25T21:40:35.010000"],["2024-07-25T21:40:36.010000"],["2024-07-25T21:40:37.010000"],["2024-07-25T21:40:38.010000"],["2024-07-25T21:40:39.010000"],["2024-07-25T21:40:40.010000"],["2024-07-25T21:40:41.010000"],["2024-07-25T21:40:42.010000"],["2024-07-25T21:40:43.010000"],["2024-07-25T21:40:44.010000"],["2024-07-25T21:40:45.010000"],["2024-07-25T21:40:46.010000"],["2024-07-25T21:40:47.010000"],["2024-07-25T21:40:48.010000"],["2024-07-25T21:40:49.010000"],["2024-07-25T21:40:50.010000"],["2024-07-25T21:40:51.010000"],["2024-07-25T21:40:52.010000"],["2024-07-25T21:40:53.010000"],["2024-07-25T21:40:54.010000"],["2024-07-25T21:40:55.010000"],["2024-07-25T21:40:56.010000"],["2024-07-25T21:40:57.010000"],["2024-07-25T21:40:58.010000"],["2024-07-25T21:40:59.010000"],["2024-07-25T21:41:00.010000"],["2024-07-25T21:41:01.010000"],["2024-07-25T21:41:02.010000"],["2024-07-25T21:41:03.010000"],["2024-07-25T21:41:04.010000"],["2024-07-25T21:41:05.010000"],["2024-07-25T21:41:06.010000"],["2024-07-25T21:41:07.010000"],["2024-07-25T21:41:08.010000"],["2024-07-25T21:41:09.010000"],["2024-07-25T21:41:10.010000"],["2024-07-25T21:41:11.010000"],["2024-07-25T21:41:12.010000"],["2024-07-25T21:41:13.010000"],["2024-07-25T21:41:14.010000"],["2024-07-25T21:41:15.010000"],["2024-07-25T21:41:16.010000"],["2024-07-25T21:41:17.010000"],["2024-07-25T21:41:18.010000"],["2024-07-25T21:41:19.010000"],["2024-07-25T21:41:20.010000"],["2024-07-25T21:41:21.010000"],["2024-07-25T21:41:22.010000"],["2024-07-25T21:41:23.010000"],["2024-07-25T21:41:24.010000"],["2024-07-25T21:41:25.010000"],["2024-07-25T21:41:26.010000"],["2024-07-25T21:41:27.010000"],["2024-07-25T21:41:28.010000"],["2024-07-25T21:41:29.010000"],["2024-07-25T21:41:30.010000"],["2024-07-25T21:41:31.010000"],["2024-07-25T21:41:32.010000"],["2024-07-25T21:41:33.010000"],["2024-07-25T21:41:34.010000"],["2024-07-25T21:41:35.010000"],["2024-07-25T21:41:36.010000"],["2024-07-25T21:41:37.010000"],["2024-07-25T21:41:38.010000"],["2024-07-25T21:41:39.010000"],["2024-07-25T21:41:40.010000"],["2024-07-25T21:41:41.010000"],["2024-07-25T21:41:42.010000"],["2024-07-25T21:41:43.010000"],["2024-07-25T21:41:44.010000"],["2024-07-25T21:41:45.010000"],["2024-07-25T21:41:46.010000"],["2024-07-25T21:41:47.010000"],["2024-07-25T21:41:48.010000"],["2024-07-25T21:41:49.010000"],["2024-07-25T21:41:50.010000"],["2024-07-25T21:41:51.010000"],["2024-07-25T21:41:52.010000"],["2024-07-25T21:41:53.010000"],["2024-07-25T21:41:54.010000"],["2024-07-25T21:41:55.010000"],["2024-07-25T21:41:56.010000"],["2024-07-25T21:41:57.010000"],["2024-07-25T21:41:58.010000"],["2024-07-25T21:41:59.010000"],["2024-07-25T21:42:00.010000"],["2024-07-25T21:42:01.010000"],["2024-07-25T21:42:02.010000"],["2024-07-25T21:42:03.010000"],["2024-07-25T21:42:04.010000"],["2024-07-25T21:42:05.010000"],["2024-07-25T21:42:06.010000"],["2024-07-25T21:42:07.010000"],["2024-07-25T21:42:08.010000"],["2024-07-25T21:42:09.010000"],["2024-07-25T21:42:10.010000"],["2024-07-25T21:42:11.010000"],["2024-07-25T21:42:12.010000"],["2024-07-25T21:42:13.010000"],["2024-07-25T21:42:14.010000"],["2024-07-25T21:42:15.010000"],["2024-07-25T21:42:16.010000"],["2024-07-25T21:42:17.010000"],["2024-07-25T21:42:18.010000"],["2024-07-25T21:42:19.010000"],["2024-07-25T21:42:20.010000"],["2024-07-25T21:42:21.010000"],["2024-07-25T21:42:22.010000"],["2024-07-25T21:42:23.010000"],["2024-07-25T21:42:24.010000"],["2024-07-25T21:42:25.010000"],["2024-07-25T21:42:26.010000"],["2024-07-25T21:42:27.010000"],["2024-07-25T21:42:28.010000"],["2024-07-25T21:42:29.010000"],["2024-07-25T21:42:30.010000"],["2024-07-25T21:42:31.010000"],["2024-07-25T21:42:32.010000"],["2024-07-25T21:42:33.010000"],["2024-07-25T21:42:34.010000"],["2024-07-25T21:42:35.010000"],["2024-07-25T21:42:36.010000"],["2024-07-25T21:42:37.010000"],["2024-07-25T21:42:38.010000"],["2024-07-25T21:42:39.010000"],["2024-07-25T21:42:40.010000"],["2024-07-25T21:42:41.010000"],["2024-07-25T21:42:42.010000"],["2024-07-25T21:42:43.010000"],["2024-07-25T21:42:44.010000"],["2024-07-25T21:42:45.010000"],["2024-07-25T21:42:46.010000"],["2024-07-25T21:42:47.010000"],["2024-07-25T21:42:48.010000"],["2024-07-25T21:42:49.010000"],["2024-07-25T21:42:50.010000"],["2024-07-25T21:42:51.010000"],["2024-07-25T21:42:52.010000"],["2024-07-25T21:42:53.010000"],["2024-07-25T21:42:54.010000"],["2024-07-25T21:42:55.010000"],["2024-07-25T21:42:56.010000"],["2024-07-25T21:42:57.010000"],["2024-07-25T21:42:58.010000"],["2024-07-25T21:42:59.010000"],["2024-07-25T21:43:00.010000"],["2024-07-25T21:43:01.010000"],["2024-07-25T21:43:02.010000"],["2024-07-25T21:43:03.010000"],["2024-07-25T21:43:04.010000"],["2024-07-25T21:43:05.010000"],["2024-07-25T21:43:06.010000"],["2024-07-25T21:43:07.010000"],["2024-07-25T21:43:08.010000"],["2024-07-25T21:43:09.010000"],["2024-07-25T21:43:10.010000"],["2024-07-25T21:43:11.010000"],["2024-07-25T21:43:12.010000"],["2024-07-25T21:43:13.010000"],["2024-07-25T21:43:14.010000"],["2024-07-25T21:43:15.010000"],["2024-07-25T21:43:16.010000"],["2024-07-25T21:43:17.010000"],["2024-07-25T21:43:18.010000"],["2024-07-25T21:43:19.010000"],["2024-07-25T21:43:20.010000"],["2024-07-25T21:43:21.010000"],["2024-07-25T21:43:22.010000"],["2024-07-25T21:43:23.010000"],["2024-07-25T21:43:24.010000"],["2024-07-25T21:43:25.010000"],["2024-07-25T21:43:26.010000"],["2024-07-25T21:43:27.010000"],["2024-07-25T21:43:28.010000"],["2024-07-25T21:43:29.010000"],["2024-07-25T21:43:30.010000"],["2024-07-25T21:43:31.010000"],["2024-07-25T21:43:32.010000"],["2024-07-25T21:43:33.010000"],["2024-07-25T21:43:34.010000"],["2024-07-25T21:43:35.010000"],["2024-07-25T21:43:36.010000"],["2024-07-25T21:43:37.010000"],["2024-07-25T21:43:38.010000"],["2024-07-25T21:43:39.010000"],["2024-07-25T21:43:40.010000"],["2024-07-25T21:43:41.010000"],["2024-07-25T21:43:42.010000"],["2024-07-25T21:43:43.010000"],["2024-07-25T21:43:44.010000"],["2024-07-25T21:43:45.010000"],["2024-07-25T21:43:46.010000"],["2024-07-25T21:43:47.010000"],["2024-07-25T21:43:48.010000"],["2024-07-25T21:43:49.010000"],["2024-07-25T21:43:50.010000"],["2024-07-25T21:43:51.010000"],["2024-07-25T21:43:52.010000"],["2024-07-25T21:43:53.010000"],["2024-07-25T21:43:54.010000"],["2024-07-25T21:43:55.010000"],["2024-07-25T21:43:56.010000"],["2024-07-25T21:43:57.010000"],["2024-07-25T21:43:58.010000"],["2024-07-25T21:43:59.010000"],["2024-07-25T21:44:00.010000"],["2024-07-25T21:44:01.010000"],["2024-07-25T21:44:02.010000"],["2024-07-25T21:44:03.010000"],["2024-07-25T21:44:04.010000"],["2024-07-25T21:44:05.010000"],["2024-07-25T21:44:06.010000"],["2024-07-25T21:44:07.010000"],["2024-07-25T21:44:08.010000"],["2024-07-25T21:44:09.010000"],["2024-07-25T21:44:10.010000"],["2024-07-25T21:44:11.010000"],["2024-07-25T21:44:12.010000"],["2024-07-25T21:44:13.010000"],["2024-07-25T21:44:14.010000"],["2024-07-25T21:44:15.010000"],["2024-07-25T21:44:16.010000"],["2024-07-25T21:44:17.010000"],["2024-07-25T21:44:18.010000"],["2024-07-25T21:44:19.010000"],["2024-07-25T21:44:20.010000"],["2024-07-25T21:44:21.010000"],["2024-07-25T21:44:22.010000"],["2024-07-25T21:44:23.010000"],["2024-07-25T21:44:24.010000"],["2024-07-25T21:44:25.010000"],["2024-07-25T21:44:26.010000"],["2024-07-25T21:44:27.010000"],["2024-07-25T21:44:28.010000"],["2024-07-25T21:44:29.010000"],["2024-07-25T21:44:30.010000"],["2024-07-25T21:44:31.010000"],["2024-07-25T21:44:32.010000"],["2024-07-25T21:44:33.010000"],["2024-07-25T21:44:34.010000"],["2024-07-25T21:44:35.010000"],["2024-07-25T21:44:36.010000"],["2024-07-25T21:44:37.010000"],["2024-07-25T21:44:38.010000"],["2024-07-25T21:44:39.010000"],["2024-07-25T21:44:40.010000"],["2024-07-25T21:44:41.010000"],["2024-07-25T21:44:42.010000"],["2024-07-25T21:44:43.010000"],["2024-07-25T21:44:44.010000"],["2024-07-25T21:44:45.010000"],["2024-07-25T21:44:46.010000"],["2024-07-25T21:44:47.010000"],["2024-07-25T21:44:48.010000"],["2024-07-25T21:44:49.010000"],["2024-07-25T21:44:50.010000"],["2024-07-25T21:44:51.010000"],["2024-07-25T21:44:52.010000"],["2024-07-25T21:44:53.010000"],["2024-07-25T21:44:54.010000"],["2024-07-25T21:44:55.010000"],["2024-07-25T21:44:56.010000"],["2024-07-25T21:44:57.010000"],["2024-07-25T21:44:58.010000"],["2024-07-25T21:44:59.010000"],["2024-07-25T21:45:00.010000"],["2024-07-25T21:45:01.010000"],["2024-07-25T21:45:02.010000"],["2024-07-25T21:45:03.010000"],["2024-07-25T21:45:04.010000"],["2024-07-25T21:45:05.010000"],["2024-07-25T21:45:06.010000"],["2024-07-25T21:45:07.010000"],["2024-07-25T21:45:08.010000"],["2024-07-25T21:45:09.010000"],["2024-07-25T21:45:10.010000"],["2024-07-25T21:45:11.010000"],["2024-07-25T21:45:12.010000"],["2024-07-25T21:45:13.010000"],["2024-07-25T21:45:14.010000"],["2024-07-25T21:45:15.010000"],["2024-07-25T21:45:16.010000"],["2024-07-25T21:45:17.010000"],["2024-07-25T21:45:18.010000"],["2024-07-25T21:45:19.010000"],["2024-07-25T21:45:20.010000"],["2024-07-25T21:45:21.010000"],["2024-07-25T21:45:22.010000"],["2024-07-25T21:45:23.010000"],["2024-07-25T21:45:24.010000"],["2024-07-25T21:45:25.010000"],["2024-07-25T21:45:26.010000"],["2024-07-25T21:45:27.010000"],["2024-07-25T21:45:28.010000"],["2024-07-25T21:45:29.010000"],["2024-07-25T21:45:30.010000"],["2024-07-25T21:45:31.010000"],["2024-07-25T21:45:32.010000"],["2024-07-25T21:45:33.010000"],["2024-07-25T21:45:34.010000"],["2024-07-25T21:45:35.010000"],["2024-07-25T21:45:36.010000"],["2024-07-25T21:45:37.010000"],["2024-07-25T21:45:38.010000"],["2024-07-25T21:45:39.010000"],["2024-07-25T21:45:40.010000"],["2024-07-25T21:45:41.010000"],["2024-07-25T21:45:42.010000"],["2024-07-25T21:45:43.010000"],["2024-07-25T21:45:44.010000"],["2024-07-25T21:45:45.010000"],["2024-07-25T21:45:46.010000"],["2024-07-25T21:45:47.010000"],["2024-07-25T21:45:48.010000"],["2024-07-25T21:45:49.010000"],["2024-07-25T21:45:50.010000"],["2024-07-25T21:45:51.010000"],["2024-07-25T21:45:52.010000"],["2024-07-25T21:45:53.010000"],["2024-07-25T21:45:54.010000"],["2024-07-25T21:45:55.010000"],["2024-07-25T21:45:56.010000"],["2024-07-25T21:45:57.010000"],["2024-07-25T21:45:58.010000"],["2024-07-25T21:45:59.010000"],["2024-07-25T21:46:00.010000"],["2024-07-25T21:46:01.010000"],["2024-07-25T21:46:02.010000"],["2024-07-25T21:46:03.010000"],["2024-07-25T21:46:04.010000"],["2024-07-25T21:46:05.010000"],["2024-07-25T21:46:06.010000"],["2024-07-25T21:46:07.010000"],["2024-07-25T21:46:08.010000"],["2024-07-25T21:46:09.010000"],["2024-07-25T21:46:10.010000"],["2024-07-25T21:46:11.010000"],["2024-07-25T21:46:12.010000"],["2024-07-25T21:46:13.010000"],["2024-07-25T21:46:14.010000"],["2024-07-25T21:46:15.010000"],["2024-07-25T21:46:16.010000"],["2024-07-25T21:46:17.010000"],["2024-07-25T21:46:18.010000"],["2024-07-25T21:46:19.010000"],["2024-07-25T21:46:20.010000"],["2024-07-25T21:46:21.010000"],["2024-07-25T21:46:22.010000"],["2024-07-25T21:46:23.010000"],["2024-07-25T21:46:24.010000"],["2024-07-25T21:46:25.010000"],["2024-07-25T21:46:26.010000"],["2024-07-25T21:46:27.010000"],["2024-07-25T21:46:28.010000"],["2024-07-25T21:46:29.010000"],["2024-07-25T21:46:30.010000"],["2024-07-25T21:46:31.010000"],["2024-07-25T21:46:32.010000"],["2024-07-25T21:46:33.010000"],["2024-07-25T21:46:34.010000"],["2024-07-25T21:46:35.010000"],["2024-07-25T21:46:36.010000"],["2024-07-25T21:46:37.010000"],["2024-07-25T21:46:38.010000"],["2024-07-25T21:46:39.010000"],["2024-07-25T21:46:40.010000"],["2024-07-25T21:46:41.010000"],["2024-07-25T21:46:42.010000"],["2024-07-25T21:46:43.010000"],["2024-07-25T21:46:44.010000"],["2024-07-25T21:46:45.010000"],["2024-07-25T21:46:46.010000"],["2024-07-25T21:46:47.010000"],["2024-07-25T21:46:48.010000"],["2024-07-25T21:46:49.010000"],["2024-07-25T21:46:50.010000"],["2024-07-25T21:46:51.010000"],["2024-07-25T21:46:52.010000"],["2024-07-25T21:46:53.010000"],["2024-07-25T21:46:54.010000"],["2024-07-25T21:46:55.010000"],["2024-07-25T21:46:56.010000"],["2024-07-25T21:46:57.010000"],["2024-07-25T21:46:58.010000"],["2024-07-25T21:46:59.010000"],["2024-07-25T21:47:00.010000"],["2024-07-25T21:47:01.010000"],["2024-07-25T21:47:02.010000"],["2024-07-25T21:47:03.010000"],["2024-07-25T21:47:04.010000"],["2024-07-25T21:47:05.010000"],["2024-07-25T21:47:06.010000"],["2024-07-25T21:47:07.010000"],["2024-07-25T21:47:08.010000"],["2024-07-25T21:47:09.010000"],["2024-07-25T21:47:10.010000"],["2024-07-25T21:47:11.010000"],["2024-07-25T21:47:12.010000"],["2024-07-25T21:47:13.010000"],["2024-07-25T21:47:14.010000"],["2024-07-25T21:47:15.010000"],["2024-07-25T21:47:16.010000"],["2024-07-25T21:47:17.010000"],["2024-07-25T21:47:18.010000"],["2024-07-25T21:47:19.010000"],["2024-07-25T21:47:20.010000"],["2024-07-25T21:47:21.010000"],["2024-07-25T21:47:22.010000"],["2024-07-25T21:47:23.010000"],["2024-07-25T21:47:24.010000"],["2024-07-25T21:47:25.010000"],["2024-07-25T21:47:26.010000"],["2024-07-25T21:47:27.010000"],["2024-07-25T21:47:28.010000"],["2024-07-25T21:47:29.010000"],["2024-07-25T21:47:30.010000"],["2024-07-25T21:47:31.010000"],["2024-07-25T21:47:32.010000"],["2024-07-25T21:47:33.010000"],["2024-07-25T21:47:34.010000"],["2024-07-25T21:47:35.010000"],["2024-07-25T21:47:36.010000"],["2024-07-25T21:47:37.010000"],["2024-07-25T21:47:38.010000"],["2024-07-25T21:47:39.010000"],["2024-07-25T21:47:40.010000"],["2024-07-25T21:47:41.010000"],["2024-07-25T21:47:42.010000"],["2024-07-25T21:47:43.010000"],["2024-07-25T21:47:44.010000"],["2024-07-25T21:47:45.010000"],["2024-07-25T21:47:46.010000"],["2024-07-25T21:47:47.010000"],["2024-07-25T21:47:48.010000"],["2024-07-25T21:47:49.010000"],["2024-07-25T21:47:50.010000"],["2024-07-25T21:47:51.010000"],["2024-07-25T21:47:52.010000"],["2024-07-25T21:47:53.010000"],["2024-07-25T21:47:54.010000"],["2024-07-25T21:47:55.010000"],["2024-07-25T21:47:56.010000"],["2024-07-25T21:47:57.010000"],["2024-07-25T21:47:58.010000"],["2024-07-25T21:47:59.010000"],["2024-07-25T21:48:00.010000"],["2024-07-25T21:48:01.010000"],["2024-07-25T21:48:02.010000"],["2024-07-25T21:48:03.010000"],["2024-07-25T21:48:04.010000"],["2024-07-25T21:48:05.010000"],["2024-07-25T21:48:06.010000"],["2024-07-25T21:48:07.010000"],["2024-07-25T21:48:08.010000"],["2024-07-25T21:48:09.010000"],["2024-07-25T21:48:10.010000"],["2024-07-25T21:48:11.010000"],["2024-07-25T21:48:12.010000"],["2024-07-25T21:48:13.010000"],["2024-07-25T21:48:14.010000"],["2024-07-25T21:48:15.010000"],["2024-07-25T21:48:16.010000"],["2024-07-25T21:48:17.010000"],["2024-07-25T21:48:18.010000"],["2024-07-25T21:48:19.010000"],["2024-07-25T21:48:20.010000"],["2024-07-25T21:48:21.010000"],["2024-07-25T21:48:22.010000"],["2024-07-25T21:48:23.010000"],["2024-07-25T21:48:24.010000"],["2024-07-25T21:48:25.010000"],["2024-07-25T21:48:26.010000"],["2024-07-25T21:48:27.010000"],["2024-07-25T21:48:28.010000"],["2024-07-25T21:48:29.010000"],["2024-07-25T21:48:30.010000"],["2024-07-25T21:48:31.010000"],["2024-07-25T21:48:32.010000"],["2024-07-25T21:48:33.010000"],["2024-07-25T21:48:34.010000"],["2024-07-25T21:48:35.010000"],["2024-07-25T21:48:36.010000"],["2024-07-25T21:48:37.010000"],["2024-07-25T21:48:38.010000"],["2024-07-25T21:48:39.010000"],["2024-07-25T21:48:40.010000"],["2024-07-25T21:48:41.010000"],["2024-07-25T21:48:42.010000"],["2024-07-25T21:48:43.010000"],["2024-07-25T21:48:44.010000"],["2024-07-25T21:48:45.010000"],["2024-07-25T21:48:46.010000"],["2024-07-25T21:48:47.010000"],["2024-07-25T21:48:48.010000"],["2024-07-25T21:48:49.010000"],["2024-07-25T21:48:50.010000"],["2024-07-25T21:48:51.010000"],["2024-07-25T21:48:52.010000"],["2024-07-25T21:48:53.010000"],["2024-07-25T21:48:54.010000"],["2024-07-25T21:48:55.010000"],["2024-07-25T21:48:56.010000"],["2024-07-25T21:48:57.010000"],["2024-07-25T21:48:58.010000"],["2024-07-25T21:48:59.010000"],["2024-07-25T21:49:00.010000"],["2024-07-25T21:49:01.010000"],["2024-07-25T21:49:02.010000"],["2024-07-25T21:49:03.010000"],["2024-07-25T21:49:04.010000"],["2024-07-25T21:49:05.010000"],["2024-07-25T21:49:06.010000"],["2024-07-25T21:49:07.010000"],["2024-07-25T21:49:08.010000"],["2024-07-25T21:49:09.010000"],["2024-07-25T21:49:10.010000"],["2024-07-25T21:49:11.010000"],["2024-07-25T21:49:12.010000"],["2024-07-25T21:49:13.010000"],["2024-07-25T21:49:14.010000"],["2024-07-25T21:49:15.010000"],["2024-07-25T21:49:16.010000"],["2024-07-25T21:49:17.010000"],["2024-07-25T21:49:18.010000"],["2024-07-25T21:49:19.010000"],["2024-07-25T21:49:20.010000"],["2024-07-25T21:49:21.010000"],["2024-07-25T21:49:22.010000"],["2024-07-25T21:49:23.010000"],["2024-07-25T21:49:24.010000"],["2024-07-25T21:49:25.010000"],["2024-07-25T21:49:26.010000"],["2024-07-25T21:49:27.010000"],["2024-07-25T21:49:28.010000"],["2024-07-25T21:49:29.010000"],["2024-07-25T21:49:30.010000"],["2024-07-25T21:49:31.010000"],["2024-07-25T21:49:32.010000"],["2024-07-25T21:49:33.010000"],["2024-07-25T21:49:34.010000"],["2024-07-25T21:49:35.010000"],["2024-07-25T21:49:36.010000"],["2024-07-25T21:49:37.010000"],["2024-07-25T21:49:38.010000"],["2024-07-25T21:49:39.010000"],["2024-07-25T21:49:40.010000"],["2024-07-25T21:49:41.010000"],["2024-07-25T21:49:42.010000"],["2024-07-25T21:49:43.010000"],["2024-07-25T21:49:44.010000"],["2024-07-25T21:49:45.010000"],["2024-07-25T21:49:46.010000"],["2024-07-25T21:49:47.010000"],["2024-07-25T21:49:48.010000"],["2024-07-25T21:49:49.010000"],["2024-07-25T21:49:50.010000"],["2024-07-25T21:49:51.010000"],["2024-07-25T21:49:52.010000"],["2024-07-25T21:49:53.010000"],["2024-07-25T21:49:54.010000"],["2024-07-25T21:49:55.010000"],["2024-07-25T21:49:56.010000"],["2024-07-25T21:49:57.010000"],["2024-07-25T21:49:58.010000"],["2024-07-25T21:49:59.010000"],["2024-07-25T21:50:00.010000"],["2024-07-25T21:50:01.010000"],["2024-07-25T21:50:02.010000"],["2024-07-25T21:50:03.010000"],["2024-07-25T21:50:04.010000"],["2024-07-25T21:50:05.010000"],["2024-07-25T21:50:06.010000"],["2024-07-25T21:50:07.010000"],["2024-07-25T21:50:08.010000"],["2024-07-25T21:50:09.010000"],["2024-07-25T21:50:10.010000"],["2024-07-25T21:50:11.010000"],["2024-07-25T21:50:12.010000"],["2024-07-25T21:50:13.010000"],["2024-07-25T21:50:14.010000"],["2024-07-25T21:50:15.010000"],["2024-07-25T21:50:16.010000"],["2024-07-25T21:50:17.010000"],["2024-07-25T21:50:18.010000"],["2024-07-25T21:50:19.010000"],["2024-07-25T21:50:20.010000"],["2024-07-25T21:50:21.010000"],["2024-07-25T21:50:22.010000"],["2024-07-25T21:50:23.010000"],["2024-07-25T21:50:24.010000"],["2024-07-25T21:50:25.010000"],["2024-07-25T21:50:26.010000"],["2024-07-25T21:50:27.010000"],["2024-07-25T21:50:28.010000"],["2024-07-25T21:50:29.010000"],["2024-07-25T21:50:30.010000"],["2024-07-25T21:50:31.010000"],["2024-07-25T21:50:32.010000"],["2024-07-25T21:50:33.010000"],["2024-07-25T21:50:34.010000"],["2024-07-25T21:50:35.010000"],["2024-07-25T21:50:36.010000"],["2024-07-25T21:50:37.010000"],["2024-07-25T21:50:38.010000"],["2024-07-25T21:50:39.010000"],["2024-07-25T21:50:40.010000"],["2024-07-25T21:50:41.010000"],["2024-07-25T21:50:42.010000"],["2024-07-25T21:50:43.010000"],["2024-07-25T21:50:44.010000"],["2024-07-25T21:50:45.010000"],["2024-07-25T21:50:46.010000"],["2024-07-25T21:50:47.010000"],["2024-07-25T21:50:48.010000"],["2024-07-25T21:50:49.010000"],["2024-07-25T21:50:50.010000"],["2024-07-25T21:50:51.010000"],["2024-07-25T21:50:52.010000"],["2024-07-25T21:50:53.010000"],["2024-07-25T21:50:54.010000"],["2024-07-25T21:50:55.010000"],["2024-07-25T21:50:56.010000"],["2024-07-25T21:50:57.010000"],["2024-07-25T21:50:58.010000"],["2024-07-25T21:50:59.010000"],["2024-07-25T21:51:00.010000"],["2024-07-25T21:51:01.010000"],["2024-07-25T21:51:02.010000"],["2024-07-25T21:51:03.010000"],["2024-07-25T21:51:04.010000"],["2024-07-25T21:51:05.010000"],["2024-07-25T21:51:06.010000"],["2024-07-25T21:51:07.010000"],["2024-07-25T21:51:08.010000"],["2024-07-25T21:51:09.010000"],["2024-07-25T21:51:10.010000"],["2024-07-25T21:51:11.010000"],["2024-07-25T21:51:12.010000"],["2024-07-25T21:51:13.010000"],["2024-07-25T21:51:14.010000"],["2024-07-25T21:51:15.010000"],["2024-07-25T21:51:16.010000"],["2024-07-25T21:51:17.010000"],["2024-07-25T21:51:18.010000"],["2024-07-25T21:51:19.010000"],["2024-07-25T21:51:20.010000"],["2024-07-25T21:51:21.010000"],["2024-07-25T21:51:22.010000"],["2024-07-25T21:51:23.010000"],["2024-07-25T21:51:24.010000"],["2024-07-25T21:51:25.010000"],["2024-07-25T21:51:26.010000"],["2024-07-25T21:51:27.010000"],["2024-07-25T21:51:28.010000"],["2024-07-25T21:51:29.010000"],["2024-07-25T21:51:30.010000"],["2024-07-25T21:51:31.010000"],["2024-07-25T21:51:32.010000"],["2024-07-25T21:51:33.010000"],["2024-07-25T21:51:34.010000"],["2024-07-25T21:51:35.010000"],["2024-07-25T21:51:36.010000"],["2024-07-25T21:51:37.010000"],["2024-07-25T21:51:38.010000"],["2024-07-25T21:51:39.010000"],["2024-07-25T21:51:40.010000"],["2024-07-25T21:51:41.010000"],["2024-07-25T21:51:42.010000"],["2024-07-25T21:51:43.010000"],["2024-07-25T21:51:44.010000"],["2024-07-25T21:51:45.010000"],["2024-07-25T21:51:46.010000"],["2024-07-25T21:51:47.010000"],["2024-07-25T21:51:48.010000"],["2024-07-25T21:51:49.010000"],["2024-07-25T21:51:50.010000"],["2024-07-25T21:51:51.010000"],["2024-07-25T21:51:52.010000"],["2024-07-25T21:51:53.010000"],["2024-07-25T21:51:54.010000"],["2024-07-25T21:51:55.010000"],["2024-07-25T21:51:56.010000"],["2024-07-25T21:51:57.010000"],["2024-07-25T21:51:58.010000"],["2024-07-25T21:51:59.010000"],["2024-07-25T21:52:00.010000"],["2024-07-25T21:52:01.010000"],["2024-07-25T21:52:02.010000"],["2024-07-25T21:52:03.010000"],["2024-07-25T21:52:04.010000"],["2024-07-25T21:52:05.010000"],["2024-07-25T21:52:06.010000"],["2024-07-25T21:52:07.010000"],["2024-07-25T21:52:08.010000"],["2024-07-25T21:52:09.010000"],["2024-07-25T21:52:10.010000"],["2024-07-25T21:52:11.010000"],["2024-07-25T21:52:12.010000"],["2024-07-25T21:52:13.010000"],["2024-07-25T21:52:14.010000"],["2024-07-25T21:52:15.010000"],["2024-07-25T21:52:16.010000"],["2024-07-25T21:52:17.010000"],["2024-07-25T21:52:18.010000"],["2024-07-25T21:52:19.010000"],["2024-07-25T21:52:20.010000"],["2024-07-25T21:52:21.010000"],["2024-07-25T21:52:22.010000"],["2024-07-25T21:52:23.010000"],["2024-07-25T21:52:24.010000"],["2024-07-25T21:52:25.010000"],["2024-07-25T21:52:26.010000"],["2024-07-25T21:52:27.010000"],["2024-07-25T21:52:28.010000"],["2024-07-25T21:52:29.010000"],["2024-07-25T21:52:30.010000"],["2024-07-25T21:52:31.010000"],["2024-07-25T21:52:32.010000"],["2024-07-25T21:52:33.010000"],["2024-07-25T21:52:34.010000"],["2024-07-25T21:52:35.010000"],["2024-07-25T21:52:36.010000"],["2024-07-25T21:52:37.010000"],["2024-07-25T21:52:38.010000"],["2024-07-25T21:52:39.010000"],["2024-07-25T21:52:40.010000"],["2024-07-25T21:52:41.010000"],["2024-07-25T21:52:42.010000"],["2024-07-25T21:52:43.010000"],["2024-07-25T21:52:44.010000"],["2024-07-25T21:52:45.010000"],["2024-07-25T21:52:46.010000"],["2024-07-25T21:52:47.010000"],["2024-07-25T21:52:48.010000"],["2024-07-25T21:52:49.010000"],["2024-07-25T21:52:50.010000"],["2024-07-25T21:52:51.010000"],["2024-07-25T21:52:52.010000"],["2024-07-25T21:52:53.010000"],["2024-07-25T21:52:54.010000"],["2024-07-25T21:52:55.010000"],["2024-07-25T21:52:56.010000"],["2024-07-25T21:52:57.010000"],["2024-07-25T21:52:58.010000"],["2024-07-25T21:52:59.010000"],["2024-07-25T21:53:00.010000"],["2024-07-25T21:53:01.010000"],["2024-07-25T21:53:02.010000"],["2024-07-25T21:53:03.010000"],["2024-07-25T21:53:04.010000"],["2024-07-25T21:53:05.010000"],["2024-07-25T21:53:06.010000"],["2024-07-25T21:53:07.010000"],["2024-07-25T21:53:08.010000"],["2024-07-25T21:53:09.010000"],["2024-07-25T21:53:10.010000"],["2024-07-25T21:53:11.010000"],["2024-07-25T21:53:12.010000"],["2024-07-25T21:53:13.010000"],["2024-07-25T21:53:14.010000"],["2024-07-25T21:53:15.010000"],["2024-07-25T21:53:16.010000"],["2024-07-25T21:53:17.010000"],["2024-07-25T21:53:18.010000"],["2024-07-25T21:53:19.010000"],["2024-07-25T21:53:20.010000"],["2024-07-25T21:53:21.010000"],["2024-07-25T21:53:22.010000"],["2024-07-25T21:53:23.010000"],["2024-07-25T21:53:24.010000"],["2024-07-25T21:53:25.010000"],["2024-07-25T21:53:26.010000"],["2024-07-25T21:53:27.010000"],["2024-07-25T21:53:28.010000"],["2024-07-25T21:53:29.010000"],["2024-07-25T21:53:30.010000"],["2024-07-25T21:53:31.010000"],["2024-07-25T21:53:32.010000"],["2024-07-25T21:53:33.010000"],["2024-07-25T21:53:34.010000"],["2024-07-25T21:53:35.010000"],["2024-07-25T21:53:36.010000"],["2024-07-25T21:53:37.010000"],["2024-07-25T21:53:38.010000"],["2024-07-25T21:53:39.010000"],["2024-07-25T21:53:40.010000"],["2024-07-25T21:53:41.010000"],["2024-07-25T21:53:42.010000"],["2024-07-25T21:53:43.010000"],["2024-07-25T21:53:44.010000"],["2024-07-25T21:53:45.010000"],["2024-07-25T21:53:46.010000"],["2024-07-25T21:53:47.010000"],["2024-07-25T21:53:48.010000"],["2024-07-25T21:53:49.010000"],["2024-07-25T21:53:50.010000"],["2024-07-25T21:53:51.010000"],["2024-07-25T21:53:52.010000"],["2024-07-25T21:53:53.010000"],["2024-07-25T21:53:54.010000"],["2024-07-25T21:53:55.010000"],["2024-07-25T21:53:56.010000"],["2024-07-25T21:53:57.010000"],["2024-07-25T21:53:58.010000"],["2024-07-25T21:53:59.010000"],["2024-07-25T21:54:00.010000"],["2024-07-25T21:54:01.010000"],["2024-07-25T21:54:02.010000"],["2024-07-25T21:54:03.010000"],["2024-07-25T21:54:04.010000"],["2024-07-25T21:54:05.010000"],["2024-07-25T21:54:06.010000"],["2024-07-25T21:54:07.010000"],["2024-07-25T21:54:08.010000"],["2024-07-25T21:54:09.010000"],["2024-07-25T21:54:10.010000"],["2024-07-25T21:54:11.010000"],["2024-07-25T21:54:12.010000"],["2024-07-25T21:54:13.010000"],["2024-07-25T21:54:14.010000"],["2024-07-25T21:54:15.010000"],["2024-07-25T21:54:16.010000"],["2024-07-25T21:54:17.010000"],["2024-07-25T21:54:18.010000"],["2024-07-25T21:54:19.010000"],["2024-07-25T21:54:20.010000"],["2024-07-25T21:54:21.010000"],["2024-07-25T21:54:22.010000"],["2024-07-25T21:54:23.010000"],["2024-07-25T21:54:24.010000"],["2024-07-25T21:54:25.010000"],["2024-07-25T21:54:26.010000"],["2024-07-25T21:54:27.010000"],["2024-07-25T21:54:28.010000"],["2024-07-25T21:54:29.010000"],["2024-07-25T21:54:30.010000"],["2024-07-25T21:54:31.010000"],["2024-07-25T21:54:32.010000"],["2024-07-25T21:54:33.010000"],["2024-07-25T21:54:34.010000"],["2024-07-25T21:54:35.010000"],["2024-07-25T21:54:36.010000"],["2024-07-25T21:54:37.010000"],["2024-07-25T21:54:38.010000"],["2024-07-25T21:54:39.010000"],["2024-07-25T21:54:40.010000"],["2024-07-25T21:54:41.010000"],["2024-07-25T21:54:42.010000"],["2024-07-25T21:54:43.010000"],["2024-07-25T21:54:44.010000"],["2024-07-25T21:54:45.010000"],["2024-07-25T21:54:46.010000"],["2024-07-25T21:54:47.010000"],["2024-07-25T21:54:48.010000"],["2024-07-25T21:54:49.010000"],["2024-07-25T21:54:50.010000"],["2024-07-25T21:54:51.010000"],["2024-07-25T21:54:52.010000"],["2024-07-25T21:54:53.010000"],["2024-07-25T21:54:54.010000"],["2024-07-25T21:54:55.010000"],["2024-07-25T21:54:56.010000"],["2024-07-25T21:54:57.010000"],["2024-07-25T21:54:58.010000"],["2024-07-25T21:54:59.010000"],["2024-07-25T21:55:00.010000"],["2024-07-25T21:55:01.010000"],["2024-07-25T21:55:02.010000"],["2024-07-25T21:55:03.010000"],["2024-07-25T21:55:04.010000"],["2024-07-25T21:55:05.010000"],["2024-07-25T21:55:06.010000"],["2024-07-25T21:55:07.010000"],["2024-07-25T21:55:08.010000"],["2024-07-25T21:55:09.010000"],["2024-07-25T21:55:10.010000"],["2024-07-25T21:55:11.010000"],["2024-07-25T21:55:12.010000"],["2024-07-25T21:55:13.010000"],["2024-07-25T21:55:14.010000"],["2024-07-25T21:55:15.010000"],["2024-07-25T21:55:16.010000"],["2024-07-25T21:55:17.010000"],["2024-07-25T21:55:18.010000"],["2024-07-25T21:55:19.010000"],["2024-07-25T21:55:20.010000"],["2024-07-25T21:55:21.010000"],["2024-07-25T21:55:22.010000"],["2024-07-25T21:55:23.010000"],["2024-07-25T21:55:24.010000"],["2024-07-25T21:55:25.010000"],["2024-07-25T21:55:26.010000"],["2024-07-25T21:55:27.010000"],["2024-07-25T21:55:28.010000"],["2024-07-25T21:55:29.010000"],["2024-07-25T21:55:30.010000"],["2024-07-25T21:55:31.010000"],["2024-07-25T21:55:32.010000"],["2024-07-25T21:55:33.010000"],["2024-07-25T21:55:34.010000"],["2024-07-25T21:55:35.010000"],["2024-07-25T21:55:36.010000"],["2024-07-25T21:55:37.010000"],["2024-07-25T21:55:38.010000"],["2024-07-25T21:55:39.010000"],["2024-07-25T21:55:40.010000"],["2024-07-25T21:55:41.010000"],["2024-07-25T21:55:42.010000"],["2024-07-25T21:55:43.010000"],["2024-07-25T21:55:44.010000"],["2024-07-25T21:55:45.010000"],["2024-07-25T21:55:46.010000"],["2024-07-25T21:55:47.010000"],["2024-07-25T21:55:48.010000"],["2024-07-25T21:55:49.010000"],["2024-07-25T21:55:50.010000"],["2024-07-25T21:55:51.010000"],["2024-07-25T21:55:52.010000"],["2024-07-25T21:55:53.010000"],["2024-07-25T21:55:54.010000"],["2024-07-25T21:55:55.010000"],["2024-07-25T21:55:56.010000"],["2024-07-25T21:55:57.010000"],["2024-07-25T21:55:58.010000"],["2024-07-25T21:55:59.010000"],["2024-07-25T21:56:00.010000"],["2024-07-25T21:56:01.010000"],["2024-07-25T21:56:02.010000"],["2024-07-25T21:56:03.010000"],["2024-07-25T21:56:04.010000"],["2024-07-25T21:56:05.010000"],["2024-07-25T21:56:06.010000"],["2024-07-25T21:56:07.010000"],["2024-07-25T21:56:08.010000"],["2024-07-25T21:56:09.010000"],["2024-07-25T21:56:10.010000"],["2024-07-25T21:56:11.010000"],["2024-07-25T21:56:12.010000"],["2024-07-25T21:56:13.010000"],["2024-07-25T21:56:14.010000"],["2024-07-25T21:56:15.010000"],["2024-07-25T21:56:16.010000"],["2024-07-25T21:56:17.010000"],["2024-07-25T21:56:18.010000"],["2024-07-25T21:56:19.010000"],["2024-07-25T21:56:20.010000"],["2024-07-25T21:56:21.010000"],["2024-07-25T21:56:22.010000"],["2024-07-25T21:56:23.010000"],["2024-07-25T21:56:24.010000"],["2024-07-25T21:56:25.010000"],["2024-07-25T21:56:26.010000"],["2024-07-25T21:56:27.010000"],["2024-07-25T21:56:28.010000"],["2024-07-25T21:56:29.010000"],["2024-07-25T21:56:30.010000"],["2024-07-25T21:56:31.010000"],["2024-07-25T21:56:32.010000"],["2024-07-25T21:56:33.010000"],["2024-07-25T21:56:34.010000"],["2024-07-25T21:56:35.010000"],["2024-07-25T21:56:36.010000"],["2024-07-25T21:56:37.010000"],["2024-07-25T21:56:38.010000"],["2024-07-25T21:56:39.010000"],["2024-07-25T21:56:40.010000"],["2024-07-25T21:56:41.010000"],["2024-07-25T21:56:42.010000"],["2024-07-25T21:56:43.010000"],["2024-07-25T21:56:44.010000"],["2024-07-25T21:56:45.010000"],["2024-07-25T21:56:46.010000"],["2024-07-25T21:56:47.010000"],["2024-07-25T21:56:48.010000"],["2024-07-25T21:56:49.010000"],["2024-07-25T21:56:50.010000"],["2024-07-25T21:56:51.010000"],["2024-07-25T21:56:52.010000"],["2024-07-25T21:56:53.010000"],["2024-07-25T21:56:54.010000"],["2024-07-25T21:56:55.010000"],["2024-07-25T21:56:56.010000"],["2024-07-25T21:56:57.010000"],["2024-07-25T21:56:58.010000"],["2024-07-25T21:56:59.010000"],["2024-07-25T21:57:00.010000"],["2024-07-25T21:57:01.010000"],["2024-07-25T21:57:02.010000"],["2024-07-25T21:57:03.010000"],["2024-07-25T21:57:04.010000"],["2024-07-25T21:57:05.010000"],["2024-07-25T21:57:06.010000"],["2024-07-25T21:57:07.010000"],["2024-07-25T21:57:08.010000"],["2024-07-25T21:57:09.010000"],["2024-07-25T21:57:10.010000"],["2024-07-25T21:57:11.010000"],["2024-07-25T21:57:12.010000"],["2024-07-25T21:57:13.010000"],["2024-07-25T21:57:14.010000"],["2024-07-25T21:57:15.010000"],["2024-07-25T21:57:16.010000"],["2024-07-25T21:57:17.010000"],["2024-07-25T21:57:18.010000"],["2024-07-25T21:57:19.010000"],["2024-07-25T21:57:20.010000"],["2024-07-25T21:57:21.010000"],["2024-07-25T21:57:22.010000"],["2024-07-25T21:57:23.010000"],["2024-07-25T21:57:24.010000"],["2024-07-25T21:57:25.010000"],["2024-07-25T21:57:26.010000"],["2024-07-25T21:57:27.010000"],["2024-07-25T21:57:28.010000"],["2024-07-25T21:57:29.010000"],["2024-07-25T21:57:30.010000"],["2024-07-25T21:57:31.010000"],["2024-07-25T21:57:32.010000"],["2024-07-25T21:57:33.010000"],["2024-07-25T21:57:34.010000"],["2024-07-25T21:57:35.010000"],["2024-07-25T21:57:36.010000"],["2024-07-25T21:57:37.010000"],["2024-07-25T21:57:38.010000"],["2024-07-25T21:57:39.010000"],["2024-07-25T21:57:40.010000"],["2024-07-25T21:57:41.010000"],["2024-07-25T21:57:42.010000"],["2024-07-25T21:57:43.010000"],["2024-07-25T21:57:44.010000"],["2024-07-25T21:57:45.010000"],["2024-07-25T21:57:46.010000"],["2024-07-25T21:57:47.010000"],["2024-07-25T21:57:48.010000"],["2024-07-25T21:57:49.010000"],["2024-07-25T21:57:50.010000"],["2024-07-25T21:57:51.010000"],["2024-07-25T21:57:52.010000"],["2024-07-25T21:57:53.010000"],["2024-07-25T21:57:54.010000"],["2024-07-25T21:57:55.010000"],["2024-07-25T21:57:56.010000"],["2024-07-25T21:57:57.010000"],["2024-07-25T21:57:58.010000"],["2024-07-25T21:57:59.010000"],["2024-07-25T21:58:00.010000"],["2024-07-25T21:58:01.010000"],["2024-07-25T21:58:02.010000"],["2024-07-25T21:58:03.010000"],["2024-07-25T21:58:04.010000"],["2024-07-25T21:58:05.010000"],["2024-07-25T21:58:06.010000"],["2024-07-25T21:58:07.010000"],["2024-07-25T21:58:08.010000"],["2024-07-25T21:58:09.010000"],["2024-07-25T21:58:10.010000"],["2024-07-25T21:58:11.010000"],["2024-07-25T21:58:12.010000"],["2024-07-25T21:58:13.010000"],["2024-07-25T21:58:14.010000"],["2024-07-25T21:58:15.010000"],["2024-07-25T21:58:16.010000"],["2024-07-25T21:58:17.010000"],["2024-07-25T21:58:18.010000"],["2024-07-25T21:58:19.010000"],["2024-07-25T21:58:20.010000"],["2024-07-25T21:58:21.010000"],["2024-07-25T21:58:22.010000"],["2024-07-25T21:58:23.010000"],["2024-07-25T21:58:24.010000"],["2024-07-25T21:58:25.010000"],["2024-07-25T21:58:26.010000"],["2024-07-25T21:58:27.010000"],["2024-07-25T21:58:28.010000"],["2024-07-25T21:58:29.010000"],["2024-07-25T21:58:30.010000"],["2024-07-25T21:58:31.010000"],["2024-07-25T21:58:32.010000"],["2024-07-25T21:58:33.010000"],["2024-07-25T21:58:34.010000"],["2024-07-25T21:58:35.010000"],["2024-07-25T21:58:36.010000"],["2024-07-25T21:58:37.010000"],["2024-07-25T21:58:38.010000"],["2024-07-25T21:58:39.010000"],["2024-07-25T21:58:40.010000"],["2024-07-25T21:58:41.010000"],["2024-07-25T21:58:42.010000"],["2024-07-25T21:58:43.010000"],["2024-07-25T21:58:44.010000"],["2024-07-25T21:58:45.010000"],["2024-07-25T21:58:46.010000"],["2024-07-25T21:58:47.010000"],["2024-07-25T21:58:48.010000"],["2024-07-25T21:58:49.010000"],["2024-07-25T21:58:50.010000"],["2024-07-25T21:58:51.010000"],["2024-07-25T21:58:52.010000"],["2024-07-25T21:58:53.010000"],["2024-07-25T21:58:54.010000"],["2024-07-25T21:58:55.010000"],["2024-07-25T21:58:56.010000"],["2024-07-25T21:58:57.010000"],["2024-07-25T21:58:58.010000"],["2024-07-25T21:58:59.010000"],["2024-07-25T21:59:00.010000"],["2024-07-25T21:59:01.010000"],["2024-07-25T21:59:02.010000"],["2024-07-25T21:59:03.010000"],["2024-07-25T21:59:04.010000"],["2024-07-25T21:59:05.010000"],["2024-07-25T21:59:06.010000"],["2024-07-25T21:59:07.010000"],["2024-07-25T21:59:08.010000"],["2024-07-25T21:59:09.010000"],["2024-07-25T21:59:10.010000"],["2024-07-25T21:59:11.010000"],["2024-07-25T21:59:12.010000"],["2024-07-25T21:59:13.010000"],["2024-07-25T21:59:14.010000"],["2024-07-25T21:59:15.010000"],["2024-07-25T21:59:16.010000"],["2024-07-25T21:59:17.010000"],["2024-07-25T21:59:18.010000"],["2024-07-25T21:59:19.010000"],["2024-07-25T21:59:20.010000"],["2024-07-25T21:59:21.010000"],["2024-07-25T21:59:22.010000"],["2024-07-25T21:59:23.010000"],["2024-07-25T21:59:24.010000"],["2024-07-25T21:59:25.010000"],["2024-07-25T21:59:26.010000"],["2024-07-25T21:59:27.010000"],["2024-07-25T21:59:28.010000"],["2024-07-25T21:59:29.010000"],["2024-07-25T21:59:30.010000"],["2024-07-25T21:59:31.010000"],["2024-07-25T21:59:32.010000"],["2024-07-25T21:59:33.010000"],["2024-07-25T21:59:34.010000"],["2024-07-25T21:59:35.010000"],["2024-07-25T21:59:36.010000"],["2024-07-25T21:59:37.010000"],["2024-07-25T21:59:38.010000"],["2024-07-25T21:59:39.010000"],["2024-07-25T21:59:40.010000"],["2024-07-25T21:59:41.010000"],["2024-07-25T21:59:42.010000"],["2024-07-25T21:59:43.010000"],["2024-07-25T21:59:44.010000"],["2024-07-25T21:59:45.010000"],["2024-07-25T21:59:46.010000"],["2024-07-25T21:59:47.010000"],["2024-07-25T21:59:48.010000"],["2024-07-25T21:59:49.010000"],["2024-07-25T21:59:50.010000"],["2024-07-25T21:59:51.010000"],["2024-07-25T21:59:52.010000"],["2024-07-25T21:59:53.010000"],["2024-07-25T21:59:54.010000"],["2024-07-25T21:59:55.010000"],["2024-07-25T21:59:56.010000"],["2024-07-25T21:59:57.010000"],["2024-07-25T21:59:58.010000"],["2024-07-25T21:59:59.010000"],["2024-07-25T22:00:00.010000"],["2024-07-25T22:00:01.010000"],["2024-07-25T22:00:02.010000"],["2024-07-25T22:00:03.010000"],["2024-07-25T22:00:04.010000"],["2024-07-25T22:00:05.010000"],["2024-07-25T22:00:06.010000"],["2024-07-25T22:00:07.010000"],["2024-07-25T22:00:08.010000"],["2024-07-25T22:00:09.010000"],["2024-07-25T22:00:10.010000"],["2024-07-25T22:00:11.010000"],["2024-07-25T22:00:12.010000"],["2024-07-25T22:00:13.010000"],["2024-07-25T22:00:14.010000"],["2024-07-25T22:00:15.010000"],["2024-07-25T22:00:16.010000"],["2024-07-25T22:00:17.010000"],["2024-07-25T22:00:18.010000"],["2024-07-25T22:00:19.010000"],["2024-07-25T22:00:20.010000"],["2024-07-25T22:00:21.010000"],["2024-07-25T22:00:22.010000"],["2024-07-25T22:00:23.010000"],["2024-07-25T22:00:24.010000"],["2024-07-25T22:00:25.010000"],["2024-07-25T22:00:26.010000"],["2024-07-25T22:00:27.010000"],["2024-07-25T22:00:28.010000"],["2024-07-25T22:00:29.010000"],["2024-07-25T22:00:30.010000"],["2024-07-25T22:00:31.010000"],["2024-07-25T22:00:32.010000"],["2024-07-25T22:00:33.010000"],["2024-07-25T22:00:34.010000"],["2024-07-25T22:00:35.010000"],["2024-07-25T22:00:36.010000"],["2024-07-25T22:00:37.010000"],["2024-07-25T22:00:38.010000"],["2024-07-25T22:00:39.010000"],["2024-07-25T22:00:40.010000"],["2024-07-25T22:00:41.010000"],["2024-07-25T22:00:42.010000"],["2024-07-25T22:00:43.010000"],["2024-07-25T22:00:44.010000"],["2024-07-25T22:00:45.010000"],["2024-07-25T22:00:46.010000"],["2024-07-25T22:00:47.010000"],["2024-07-25T22:00:48.010000"],["2024-07-25T22:00:49.010000"],["2024-07-25T22:00:50.010000"],["2024-07-25T22:00:51.010000"],["2024-07-25T22:00:52.010000"],["2024-07-25T22:00:53.010000"],["2024-07-25T22:00:54.010000"],["2024-07-25T22:00:55.010000"],["2024-07-25T22:00:56.010000"],["2024-07-25T22:00:57.010000"],["2024-07-25T22:00:58.010000"],["2024-07-25T22:00:59.010000"],["2024-07-25T22:01:00.010000"],["2024-07-25T22:01:01.010000"],["2024-07-25T22:01:02.010000"],["2024-07-25T22:01:03.010000"],["2024-07-25T22:01:04.010000"],["2024-07-25T22:01:05.010000"],["2024-07-25T22:01:06.010000"],["2024-07-25T22:01:07.010000"],["2024-07-25T22:01:08.010000"],["2024-07-25T22:01:09.010000"],["2024-07-25T22:01:10.010000"],["2024-07-25T22:01:11.010000"],["2024-07-25T22:01:12.010000"],["2024-07-25T22:01:13.010000"],["2024-07-25T22:01:14.010000"],["2024-07-25T22:01:15.010000"],["2024-07-25T22:01:16.010000"],["2024-07-25T22:01:17.010000"],["2024-07-25T22:01:18.010000"],["2024-07-25T22:01:19.010000"],["2024-07-25T22:01:20.010000"],["2024-07-25T22:01:21.010000"],["2024-07-25T22:01:22.010000"],["2024-07-25T22:01:23.010000"],["2024-07-25T22:01:24.010000"],["2024-07-25T22:01:25.010000"],["2024-07-25T22:01:26.010000"],["2024-07-25T22:01:27.010000"],["2024-07-25T22:01:28.010000"],["2024-07-25T22:01:29.010000"],["2024-07-25T22:01:30.010000"],["2024-07-25T22:01:31.010000"],["2024-07-25T22:01:32.010000"],["2024-07-25T22:01:33.010000"],["2024-07-25T22:01:34.010000"],["2024-07-25T22:01:35.010000"],["2024-07-25T22:01:36.010000"],["2024-07-25T22:01:37.010000"],["2024-07-25T22:01:38.010000"],["2024-07-25T22:01:39.010000"],["2024-07-25T22:01:40.010000"],["2024-07-25T22:01:41.010000"],["2024-07-25T22:01:42.010000"],["2024-07-25T22:01:43.010000"],["2024-07-25T22:01:44.010000"],["2024-07-25T22:01:45.010000"],["2024-07-25T22:01:46.010000"],["2024-07-25T22:01:47.010000"],["2024-07-25T22:01:48.010000"],["2024-07-25T22:01:49.010000"],["2024-07-25T22:01:50.010000"],["2024-07-25T22:01:51.010000"],["2024-07-25T22:01:52.010000"],["2024-07-25T22:01:53.010000"],["2024-07-25T22:01:54.010000"],["2024-07-25T22:01:55.010000"],["2024-07-25T22:01:56.010000"],["2024-07-25T22:01:57.010000"],["2024-07-25T22:01:58.010000"],["2024-07-25T22:01:59.010000"],["2024-07-25T22:02:00.010000"],["2024-07-25T22:02:01.010000"],["2024-07-25T22:02:02.010000"],["2024-07-25T22:02:03.010000"],["2024-07-25T22:02:04.010000"],["2024-07-25T22:02:05.010000"],["2024-07-25T22:02:06.010000"],["2024-07-25T22:02:07.010000"],["2024-07-25T22:02:08.010000"],["2024-07-25T22:02:09.010000"],["2024-07-25T22:02:10.010000"],["2024-07-25T22:02:11.010000"],["2024-07-25T22:02:12.010000"],["2024-07-25T22:02:13.010000"],["2024-07-25T22:02:14.010000"],["2024-07-25T22:02:15.010000"],["2024-07-25T22:02:16.010000"],["2024-07-25T22:02:17.010000"],["2024-07-25T22:02:18.010000"],["2024-07-25T22:02:19.010000"],["2024-07-25T22:02:20.010000"],["2024-07-25T22:02:21.010000"],["2024-07-25T22:02:22.010000"],["2024-07-25T22:02:23.010000"],["2024-07-25T22:02:24.010000"],["2024-07-25T22:02:25.010000"],["2024-07-25T22:02:26.010000"],["2024-07-25T22:02:27.010000"],["2024-07-25T22:02:28.010000"],["2024-07-25T22:02:29.010000"],["2024-07-25T22:02:30.010000"],["2024-07-25T22:02:31.010000"],["2024-07-25T22:02:32.010000"],["2024-07-25T22:02:33.010000"],["2024-07-25T22:02:34.010000"],["2024-07-25T22:02:35.010000"],["2024-07-25T22:02:36.010000"],["2024-07-25T22:02:37.010000"],["2024-07-25T22:02:38.010000"],["2024-07-25T22:02:39.010000"],["2024-07-25T22:02:40.010000"],["2024-07-25T22:02:41.010000"],["2024-07-25T22:02:42.010000"],["2024-07-25T22:02:43.010000"],["2024-07-25T22:02:44.010000"],["2024-07-25T22:02:45.010000"],["2024-07-25T22:02:46.010000"],["2024-07-25T22:02:47.010000"],["2024-07-25T22:02:48.010000"],["2024-07-25T22:02:49.010000"],["2024-07-25T22:02:50.010000"],["2024-07-25T22:02:51.010000"],["2024-07-25T22:02:52.010000"],["2024-07-25T22:02:53.010000"],["2024-07-25T22:02:54.010000"],["2024-07-25T22:02:55.010000"],["2024-07-25T22:02:56.010000"],["2024-07-25T22:02:57.010000"],["2024-07-25T22:02:58.010000"],["2024-07-25T22:02:59.010000"],["2024-07-25T22:03:00.010000"],["2024-07-25T22:03:01.010000"],["2024-07-25T22:03:02.010000"],["2024-07-25T22:03:03.010000"],["2024-07-25T22:03:04.010000"],["2024-07-25T22:03:05.010000"],["2024-07-25T22:03:06.010000"],["2024-07-25T22:03:07.010000"],["2024-07-25T22:03:08.010000"],["2024-07-25T22:03:09.010000"],["2024-07-25T22:03:10.010000"],["2024-07-25T22:03:11.010000"],["2024-07-25T22:03:12.010000"],["2024-07-25T22:03:13.010000"],["2024-07-25T22:03:14.010000"],["2024-07-25T22:03:15.010000"],["2024-07-25T22:03:16.010000"],["2024-07-25T22:03:17.010000"],["2024-07-25T22:03:18.010000"],["2024-07-25T22:03:19.010000"],["2024-07-25T22:03:20.010000"],["2024-07-25T22:03:21.010000"],["2024-07-25T22:03:22.010000"],["2024-07-25T22:03:23.010000"],["2024-07-25T22:03:24.010000"],["2024-07-25T22:03:25.010000"],["2024-07-25T22:03:26.010000"],["2024-07-25T22:03:27.010000"],["2024-07-25T22:03:28.010000"],["2024-07-25T22:03:29.010000"],["2024-07-25T22:03:30.010000"],["2024-07-25T22:03:31.010000"],["2024-07-25T22:03:32.010000"],["2024-07-25T22:03:33.010000"],["2024-07-25T22:03:34.010000"],["2024-07-25T22:03:35.010000"],["2024-07-25T22:03:36.010000"],["2024-07-25T22:03:37.010000"],["2024-07-25T22:03:38.010000"],["2024-07-25T22:03:39.010000"],["2024-07-25T22:03:40.010000"],["2024-07-25T22:03:41.010000"],["2024-07-25T22:03:42.010000"],["2024-07-25T22:03:43.010000"],["2024-07-25T22:03:44.010000"],["2024-07-25T22:03:45.010000"],["2024-07-25T22:03:46.010000"],["2024-07-25T22:03:47.010000"],["2024-07-25T22:03:48.010000"],["2024-07-25T22:03:49.010000"],["2024-07-25T22:03:50.010000"],["2024-07-25T22:03:51.010000"],["2024-07-25T22:03:52.010000"],["2024-07-25T22:03:53.010000"],["2024-07-25T22:03:54.010000"],["2024-07-25T22:03:55.010000"],["2024-07-25T22:03:56.010000"],["2024-07-25T22:03:57.010000"],["2024-07-25T22:03:58.010000"],["2024-07-25T22:03:59.010000"],["2024-07-25T22:04:00.010000"],["2024-07-25T22:04:01.010000"],["2024-07-25T22:04:02.010000"],["2024-07-25T22:04:03.010000"],["2024-07-25T22:04:04.010000"],["2024-07-25T22:04:05.010000"],["2024-07-25T22:04:06.010000"],["2024-07-25T22:04:07.010000"],["2024-07-25T22:04:08.010000"],["2024-07-25T22:04:09.010000"],["2024-07-25T22:04:10.010000"],["2024-07-25T22:04:11.010000"],["2024-07-25T22:04:12.010000"],["2024-07-25T22:04:13.010000"],["2024-07-25T22:04:14.010000"],["2024-07-25T22:04:15.010000"],["2024-07-25T22:04:16.010000"],["2024-07-25T22:04:17.010000"],["2024-07-25T22:04:18.010000"],["2024-07-25T22:04:19.010000"],["2024-07-25T22:04:20.010000"],["2024-07-25T22:04:21.010000"],["2024-07-25T22:04:22.010000"],["2024-07-25T22:04:23.010000"],["2024-07-25T22:04:24.010000"],["2024-07-25T22:04:25.010000"],["2024-07-25T22:04:26.010000"],["2024-07-25T22:04:27.010000"],["2024-07-25T22:04:28.010000"],["2024-07-25T22:04:29.010000"],["2024-07-25T22:04:30.010000"],["2024-07-25T22:04:31.010000"],["2024-07-25T22:04:32.010000"],["2024-07-25T22:04:33.010000"],["2024-07-25T22:04:34.010000"],["2024-07-25T22:04:35.010000"],["2024-07-25T22:04:36.010000"],["2024-07-25T22:04:37.010000"],["2024-07-25T22:04:38.010000"],["2024-07-25T22:04:39.010000"],["2024-07-25T22:04:40.010000"],["2024-07-25T22:04:41.010000"],["2024-07-25T22:04:42.010000"],["2024-07-25T22:04:43.010000"],["2024-07-25T22:04:44.010000"],["2024-07-25T22:04:45.010000"],["2024-07-25T22:04:46.010000"],["2024-07-25T22:04:47.010000"],["2024-07-25T22:04:48.010000"],["2024-07-25T22:04:49.010000"],["2024-07-25T22:04:50.010000"],["2024-07-25T22:04:51.010000"],["2024-07-25T22:04:52.010000"],["2024-07-25T22:04:53.010000"],["2024-07-25T22:04:54.010000"],["2024-07-25T22:04:55.010000"],["2024-07-25T22:04:56.010000"],["2024-07-25T22:04:57.010000"],["2024-07-25T22:04:58.010000"],["2024-07-25T22:04:59.010000"],["2024-07-25T22:05:00.010000"],["2024-07-25T22:05:01.010000"],["2024-07-25T22:05:02.010000"],["2024-07-25T22:05:03.010000"],["2024-07-25T22:05:04.010000"],["2024-07-25T22:05:05.010000"],["2024-07-25T22:05:06.010000"],["2024-07-25T22:05:07.010000"],["2024-07-25T22:05:08.010000"],["2024-07-25T22:05:09.010000"],["2024-07-25T22:05:10.010000"],["2024-07-25T22:05:11.010000"],["2024-07-25T22:05:12.010000"],["2024-07-25T22:05:13.010000"],["2024-07-25T22:05:14.010000"],["2024-07-25T22:05:15.010000"],["2024-07-25T22:05:16.010000"],["2024-07-25T22:05:17.010000"],["2024-07-25T22:05:18.010000"],["2024-07-25T22:05:19.010000"],["2024-07-25T22:05:20.010000"],["2024-07-25T22:05:21.010000"],["2024-07-25T22:05:22.010000"],["2024-07-25T22:05:23.010000"],["2024-07-25T22:05:24.010000"],["2024-07-25T22:05:25.010000"],["2024-07-25T22:05:26.010000"],["2024-07-25T22:05:27.010000"],["2024-07-25T22:05:28.010000"],["2024-07-25T22:05:29.010000"],["2024-07-25T22:05:30.010000"],["2024-07-25T22:05:31.010000"],["2024-07-25T22:05:32.010000"],["2024-07-25T22:05:33.010000"],["2024-07-25T22:05:34.010000"],["2024-07-25T22:05:35.010000"],["2024-07-25T22:05:36.010000"],["2024-07-25T22:05:37.010000"],["2024-07-25T22:05:38.010000"],["2024-07-25T22:05:39.010000"],["2024-07-25T22:05:40.010000"],["2024-07-25T22:05:41.010000"],["2024-07-25T22:05:42.010000"],["2024-07-25T22:05:43.010000"],["2024-07-25T22:05:44.010000"],["2024-07-25T22:05:45.010000"],["2024-07-25T22:05:46.010000"],["2024-07-25T22:05:47.010000"],["2024-07-25T22:05:48.010000"],["2024-07-25T22:05:49.010000"],["2024-07-25T22:05:50.010000"],["2024-07-25T22:05:51.010000"],["2024-07-25T22:05:52.010000"],["2024-07-25T22:05:53.010000"],["2024-07-25T22:05:54.010000"],["2024-07-25T22:05:55.010000"],["2024-07-25T22:05:56.010000"],["2024-07-25T22:05:57.010000"],["2024-07-25T22:05:58.010000"],["2024-07-25T22:05:59.010000"],["2024-07-25T22:06:00.010000"],["2024-07-25T22:06:01.010000"],["2024-07-25T22:06:02.010000"],["2024-07-25T22:06:03.010000"],["2024-07-25T22:06:04.010000"],["2024-07-25T22:06:05.010000"],["2024-07-25T22:06:06.010000"],["2024-07-25T22:06:07.010000"],["2024-07-25T22:06:08.010000"],["2024-07-25T22:06:09.010000"],["2024-07-25T22:06:10.010000"],["2024-07-25T22:06:11.010000"],["2024-07-25T22:06:12.010000"],["2024-07-25T22:06:13.010000"],["2024-07-25T22:06:14.010000"],["2024-07-25T22:06:15.010000"],["2024-07-25T22:06:16.010000"],["2024-07-25T22:06:17.010000"],["2024-07-25T22:06:18.010000"],["2024-07-25T22:06:19.010000"],["2024-07-25T22:06:20.010000"],["2024-07-25T22:06:21.010000"],["2024-07-25T22:06:22.010000"],["2024-07-25T22:06:23.010000"],["2024-07-25T22:06:24.010000"],["2024-07-25T22:06:25.010000"],["2024-07-25T22:06:26.010000"],["2024-07-25T22:06:27.010000"],["2024-07-25T22:06:28.010000"],["2024-07-25T22:06:29.010000"],["2024-07-25T22:06:30.010000"],["2024-07-25T22:06:31.010000"],["2024-07-25T22:06:32.010000"],["2024-07-25T22:06:33.010000"],["2024-07-25T22:06:34.010000"],["2024-07-25T22:06:35.010000"],["2024-07-25T22:06:36.010000"],["2024-07-25T22:06:37.010000"],["2024-07-25T22:06:38.010000"],["2024-07-25T22:06:39.010000"],["2024-07-25T22:06:40.010000"],["2024-07-25T22:06:41.010000"],["2024-07-25T22:06:42.010000"],["2024-07-25T22:06:43.010000"],["2024-07-25T22:06:44.010000"],["2024-07-25T22:06:45.010000"],["2024-07-25T22:06:46.010000"],["2024-07-25T22:06:47.010000"],["2024-07-25T22:06:48.010000"],["2024-07-25T22:06:49.010000"],["2024-07-25T22:06:50.010000"],["2024-07-25T22:06:51.010000"],["2024-07-25T22:06:52.010000"],["2024-07-25T22:06:53.010000"],["2024-07-25T22:06:54.010000"],["2024-07-25T22:06:55.010000"],["2024-07-25T22:06:56.010000"],["2024-07-25T22:06:57.010000"],["2024-07-25T22:06:58.010000"],["2024-07-25T22:06:59.010000"],["2024-07-25T22:07:00.010000"],["2024-07-25T22:07:01.010000"],["2024-07-25T22:07:02.010000"],["2024-07-25T22:07:03.010000"],["2024-07-25T22:07:04.010000"],["2024-07-25T22:07:05.010000"],["2024-07-25T22:07:06.010000"],["2024-07-25T22:07:07.010000"],["2024-07-25T22:07:08.010000"],["2024-07-25T22:07:09.010000"],["2024-07-25T22:07:10.010000"],["2024-07-25T22:07:11.010000"],["2024-07-25T22:07:12.010000"],["2024-07-25T22:07:13.010000"],["2024-07-25T22:07:14.010000"],["2024-07-25T22:07:15.010000"],["2024-07-25T22:07:16.010000"],["2024-07-25T22:07:17.010000"],["2024-07-25T22:07:18.010000"],["2024-07-25T22:07:19.010000"],["2024-07-25T22:07:20.010000"],["2024-07-25T22:07:21.010000"],["2024-07-25T22:07:22.010000"],["2024-07-25T22:07:23.010000"],["2024-07-25T22:07:24.010000"],["2024-07-25T22:07:25.010000"],["2024-07-25T22:07:26.010000"],["2024-07-25T22:07:27.010000"],["2024-07-25T22:07:28.010000"],["2024-07-25T22:07:29.010000"],["2024-07-25T22:07:30.010000"],["2024-07-25T22:07:31.010000"],["2024-07-25T22:07:32.010000"],["2024-07-25T22:07:33.010000"],["2024-07-25T22:07:34.010000"],["2024-07-25T22:07:35.010000"],["2024-07-25T22:07:36.010000"],["2024-07-25T22:07:37.010000"],["2024-07-25T22:07:38.010000"],["2024-07-25T22:07:39.010000"],["2024-07-25T22:07:40.010000"],["2024-07-25T22:07:41.010000"],["2024-07-25T22:07:42.010000"],["2024-07-25T22:07:43.010000"],["2024-07-25T22:07:44.010000"],["2024-07-25T22:07:45.010000"],["2024-07-25T22:07:46.010000"],["2024-07-25T22:07:47.010000"],["2024-07-25T22:07:48.010000"],["2024-07-25T22:07:49.010000"],["2024-07-25T22:07:50.010000"],["2024-07-25T22:07:51.010000"],["2024-07-25T22:07:52.010000"],["2024-07-25T22:07:53.010000"],["2024-07-25T22:07:54.010000"],["2024-07-25T22:07:55.010000"],["2024-07-25T22:07:56.010000"],["2024-07-25T22:07:57.010000"],["2024-07-25T22:07:58.010000"],["2024-07-25T22:07:59.010000"],["2024-07-25T22:08:00.010000"],["2024-07-25T22:08:01.010000"],["2024-07-25T22:08:02.010000"],["2024-07-25T22:08:03.010000"],["2024-07-25T22:08:04.010000"],["2024-07-25T22:08:05.010000"],["2024-07-25T22:08:06.010000"],["2024-07-25T22:08:07.010000"],["2024-07-25T22:08:08.010000"],["2024-07-25T22:08:09.010000"],["2024-07-25T22:08:10.010000"],["2024-07-25T22:08:11.010000"],["2024-07-25T22:08:12.010000"],["2024-07-25T22:08:13.010000"],["2024-07-25T22:08:14.010000"],["2024-07-25T22:08:15.010000"],["2024-07-25T22:08:16.010000"],["2024-07-25T22:08:17.010000"],["2024-07-25T22:08:18.010000"],["2024-07-25T22:08:19.010000"],["2024-07-25T22:08:20.010000"],["2024-07-25T22:08:21.010000"],["2024-07-25T22:08:22.010000"],["2024-07-25T22:08:23.010000"],["2024-07-25T22:08:24.010000"],["2024-07-25T22:08:25.010000"],["2024-07-25T22:08:26.010000"],["2024-07-25T22:08:27.010000"],["2024-07-25T22:08:28.010000"],["2024-07-25T22:08:29.010000"],["2024-07-25T22:08:30.010000"],["2024-07-25T22:08:31.010000"],["2024-07-25T22:08:32.010000"],["2024-07-25T22:08:33.010000"],["2024-07-25T22:08:34.010000"],["2024-07-25T22:08:35.010000"],["2024-07-25T22:08:36.010000"],["2024-07-25T22:08:37.010000"],["2024-07-25T22:08:38.010000"],["2024-07-25T22:08:39.010000"],["2024-07-25T22:08:40.010000"],["2024-07-25T22:08:41.010000"],["2024-07-25T22:08:42.010000"],["2024-07-25T22:08:43.010000"],["2024-07-25T22:08:44.010000"],["2024-07-25T22:08:45.010000"],["2024-07-25T22:08:46.010000"],["2024-07-25T22:08:47.010000"],["2024-07-25T22:08:48.010000"],["2024-07-25T22:08:49.010000"],["2024-07-25T22:08:50.010000"],["2024-07-25T22:08:51.010000"],["2024-07-25T22:08:52.010000"],["2024-07-25T22:08:53.010000"],["2024-07-25T22:08:54.010000"],["2024-07-25T22:08:55.010000"],["2024-07-25T22:08:56.010000"],["2024-07-25T22:08:57.010000"],["2024-07-25T22:08:58.010000"],["2024-07-25T22:08:59.010000"],["2024-07-25T22:09:00.010000"],["2024-07-25T22:09:01.010000"],["2024-07-25T22:09:02.010000"],["2024-07-25T22:09:03.010000"],["2024-07-25T22:09:04.010000"],["2024-07-25T22:09:05.010000"],["2024-07-25T22:09:06.010000"],["2024-07-25T22:09:07.010000"],["2024-07-25T22:09:08.010000"],["2024-07-25T22:09:09.010000"],["2024-07-25T22:09:10.010000"],["2024-07-25T22:09:11.010000"],["2024-07-25T22:09:12.010000"],["2024-07-25T22:09:13.010000"],["2024-07-25T22:09:14.010000"],["2024-07-25T22:09:15.010000"],["2024-07-25T22:09:16.010000"],["2024-07-25T22:09:17.010000"],["2024-07-25T22:09:18.010000"],["2024-07-25T22:09:19.010000"],["2024-07-25T22:09:20.010000"],["2024-07-25T22:09:21.010000"],["2024-07-25T22:09:22.010000"],["2024-07-25T22:09:23.010000"],["2024-07-25T22:09:24.010000"],["2024-07-25T22:09:25.010000"],["2024-07-25T22:09:26.010000"],["2024-07-25T22:09:27.010000"],["2024-07-25T22:09:28.010000"],["2024-07-25T22:09:29.010000"],["2024-07-25T22:09:30.010000"],["2024-07-25T22:09:31.010000"],["2024-07-25T22:09:32.010000"],["2024-07-25T22:09:33.010000"],["2024-07-25T22:09:34.010000"],["2024-07-25T22:09:35.010000"],["2024-07-25T22:09:36.010000"],["2024-07-25T22:09:37.010000"],["2024-07-25T22:09:38.010000"],["2024-07-25T22:09:39.010000"],["2024-07-25T22:09:40.010000"],["2024-07-25T22:09:41.010000"],["2024-07-25T22:09:42.010000"],["2024-07-25T22:09:43.010000"],["2024-07-25T22:09:44.010000"],["2024-07-25T22:09:45.010000"],["2024-07-25T22:09:46.010000"],["2024-07-25T22:09:47.010000"],["2024-07-25T22:09:48.010000"],["2024-07-25T22:09:49.010000"],["2024-07-25T22:09:50.010000"],["2024-07-25T22:09:51.010000"],["2024-07-25T22:09:52.010000"],["2024-07-25T22:09:53.010000"],["2024-07-25T22:09:54.010000"],["2024-07-25T22:09:55.010000"],["2024-07-25T22:09:56.010000"],["2024-07-25T22:09:57.010000"],["2024-07-25T22:09:58.010000"],["2024-07-25T22:09:59.010000"],["2024-07-25T22:10:00.010000"],["2024-07-25T22:10:01.010000"],["2024-07-25T22:10:02.010000"],["2024-07-25T22:10:03.010000"],["2024-07-25T22:10:04.010000"],["2024-07-25T22:10:05.010000"],["2024-07-25T22:10:06.010000"],["2024-07-25T22:10:07.010000"],["2024-07-25T22:10:08.010000"],["2024-07-25T22:10:09.010000"],["2024-07-25T22:10:10.010000"],["2024-07-25T22:10:11.010000"],["2024-07-25T22:10:12.010000"],["2024-07-25T22:10:13.010000"],["2024-07-25T22:10:14.010000"],["2024-07-25T22:10:15.010000"],["2024-07-25T22:10:16.010000"],["2024-07-25T22:10:17.010000"],["2024-07-25T22:10:18.010000"],["2024-07-25T22:10:19.010000"],["2024-07-25T22:10:20.010000"],["2024-07-25T22:10:21.010000"],["2024-07-25T22:10:22.010000"],["2024-07-25T22:10:23.010000"],["2024-07-25T22:10:24.010000"],["2024-07-25T22:10:25.010000"],["2024-07-25T22:10:26.010000"],["2024-07-25T22:10:27.010000"],["2024-07-25T22:10:28.010000"],["2024-07-25T22:10:29.010000"],["2024-07-25T22:10:30.010000"],["2024-07-25T22:10:31.010000"],["2024-07-25T22:10:32.010000"],["2024-07-25T22:10:33.010000"],["2024-07-25T22:10:34.010000"],["2024-07-25T22:10:35.010000"],["2024-07-25T22:10:36.010000"],["2024-07-25T22:10:37.010000"],["2024-07-25T22:10:38.010000"],["2024-07-25T22:10:39.010000"],["2024-07-25T22:10:40.010000"],["2024-07-25T22:10:41.010000"],["2024-07-25T22:10:42.010000"],["2024-07-25T22:10:43.010000"],["2024-07-25T22:10:44.010000"],["2024-07-25T22:10:45.010000"],["2024-07-25T22:10:46.010000"],["2024-07-25T22:10:47.010000"],["2024-07-25T22:10:48.010000"],["2024-07-25T22:10:49.010000"],["2024-07-25T22:10:50.010000"],["2024-07-25T22:10:51.010000"],["2024-07-25T22:10:52.010000"],["2024-07-25T22:10:53.010000"],["2024-07-25T22:10:54.010000"],["2024-07-25T22:10:55.010000"],["2024-07-25T22:10:56.010000"],["2024-07-25T22:10:57.010000"],["2024-07-25T22:10:58.010000"],["2024-07-25T22:10:59.010000"],["2024-07-25T22:11:00.010000"],["2024-07-25T22:11:01.010000"],["2024-07-25T22:11:02.010000"],["2024-07-25T22:11:03.010000"],["2024-07-25T22:11:04.010000"],["2024-07-25T22:11:05.010000"],["2024-07-25T22:11:06.010000"],["2024-07-25T22:11:07.010000"],["2024-07-25T22:11:08.010000"],["2024-07-25T22:11:09.010000"],["2024-07-25T22:11:10.010000"],["2024-07-25T22:11:11.010000"],["2024-07-25T22:11:12.010000"],["2024-07-25T22:11:13.010000"],["2024-07-25T22:11:14.010000"],["2024-07-25T22:11:15.010000"],["2024-07-25T22:11:16.010000"],["2024-07-25T22:11:17.010000"],["2024-07-25T22:11:18.010000"],["2024-07-25T22:11:19.010000"],["2024-07-25T22:11:20.010000"],["2024-07-25T22:11:21.010000"],["2024-07-25T22:11:22.010000"],["2024-07-25T22:11:23.010000"],["2024-07-25T22:11:24.010000"],["2024-07-25T22:11:25.010000"],["2024-07-25T22:11:26.010000"],["2024-07-25T22:11:27.010000"],["2024-07-25T22:11:28.010000"],["2024-07-25T22:11:29.010000"],["2024-07-25T22:11:30.010000"],["2024-07-25T22:11:31.010000"],["2024-07-25T22:11:32.010000"],["2024-07-25T22:11:33.010000"],["2024-07-25T22:11:34.010000"],["2024-07-25T22:11:35.010000"],["2024-07-25T22:11:36.010000"],["2024-07-25T22:11:37.010000"],["2024-07-25T22:11:38.010000"],["2024-07-25T22:11:39.010000"],["2024-07-25T22:11:40.010000"],["2024-07-25T22:11:41.010000"],["2024-07-25T22:11:42.010000"],["2024-07-25T22:11:43.010000"],["2024-07-25T22:11:44.010000"],["2024-07-25T22:11:45.010000"],["2024-07-25T22:11:46.010000"],["2024-07-25T22:11:47.010000"],["2024-07-25T22:11:48.010000"],["2024-07-25T22:11:49.010000"],["2024-07-25T22:11:50.010000"],["2024-07-25T22:11:51.010000"],["2024-07-25T22:11:52.010000"],["2024-07-25T22:11:53.010000"],["2024-07-25T22:11:54.010000"],["2024-07-25T22:11:55.010000"],["2024-07-25T22:11:56.010000"],["2024-07-25T22:11:57.010000"],["2024-07-25T22:11:58.010000"],["2024-07-25T22:11:59.010000"],["2024-07-25T22:12:00.010000"],["2024-07-25T22:12:01.010000"],["2024-07-25T22:12:02.010000"],["2024-07-25T22:12:03.010000"],["2024-07-25T22:12:04.010000"],["2024-07-25T22:12:05.010000"],["2024-07-25T22:12:06.010000"],["2024-07-25T22:12:07.010000"],["2024-07-25T22:12:08.010000"],["2024-07-25T22:12:09.010000"],["2024-07-25T22:12:10.010000"],["2024-07-25T22:12:11.010000"],["2024-07-25T22:12:12.010000"],["2024-07-25T22:12:13.010000"],["2024-07-25T22:12:14.010000"],["2024-07-25T22:12:15.010000"],["2024-07-25T22:12:16.010000"],["2024-07-25T22:12:17.010000"],["2024-07-25T22:12:18.010000"],["2024-07-25T22:12:19.010000"],["2024-07-25T22:12:20.010000"],["2024-07-25T22:12:21.010000"],["2024-07-25T22:12:22.010000"],["2024-07-25T22:12:23.010000"],["2024-07-25T22:12:24.010000"],["2024-07-25T22:12:25.010000"],["2024-07-25T22:12:26.010000"],["2024-07-25T22:12:27.010000"],["2024-07-25T22:12:28.010000"],["2024-07-25T22:12:29.010000"],["2024-07-25T22:12:30.010000"],["2024-07-25T22:12:31.010000"],["2024-07-25T22:12:32.010000"],["2024-07-25T22:12:33.010000"],["2024-07-25T22:12:34.010000"],["2024-07-25T22:12:35.010000"],["2024-07-25T22:12:36.010000"],["2024-07-25T22:12:37.010000"],["2024-07-25T22:12:38.010000"],["2024-07-25T22:12:39.010000"],["2024-07-25T22:12:40.010000"],["2024-07-25T22:12:41.010000"],["2024-07-25T22:12:42.010000"],["2024-07-25T22:12:43.010000"],["2024-07-25T22:12:44.010000"],["2024-07-25T22:12:45.010000"],["2024-07-25T22:12:46.010000"],["2024-07-25T22:12:47.010000"],["2024-07-25T22:12:48.010000"],["2024-07-25T22:12:49.010000"],["2024-07-25T22:12:50.010000"],["2024-07-25T22:12:51.010000"],["2024-07-25T22:12:52.010000"],["2024-07-25T22:12:53.010000"],["2024-07-25T22:12:54.010000"],["2024-07-25T22:12:55.010000"],["2024-07-25T22:12:56.010000"],["2024-07-25T22:12:57.010000"],["2024-07-25T22:12:58.010000"],["2024-07-25T22:12:59.010000"],["2024-07-25T22:13:00.010000"],["2024-07-25T22:13:01.010000"],["2024-07-25T22:13:02.010000"],["2024-07-25T22:13:03.010000"],["2024-07-25T22:13:04.010000"],["2024-07-25T22:13:05.010000"],["2024-07-25T22:13:06.010000"],["2024-07-25T22:13:07.010000"],["2024-07-25T22:13:08.010000"],["2024-07-25T22:13:09.010000"],["2024-07-25T22:13:10.010000"],["2024-07-25T22:13:11.010000"],["2024-07-25T22:13:12.010000"],["2024-07-25T22:13:13.010000"],["2024-07-25T22:13:14.010000"],["2024-07-25T22:13:15.010000"],["2024-07-25T22:13:16.010000"],["2024-07-25T22:13:17.010000"],["2024-07-25T22:13:18.010000"],["2024-07-25T22:13:19.010000"],["2024-07-25T22:13:20.010000"],["2024-07-25T22:13:21.010000"],["2024-07-25T22:13:22.010000"],["2024-07-25T22:13:23.010000"],["2024-07-25T22:13:24.010000"],["2024-07-25T22:13:25.010000"],["2024-07-25T22:13:26.010000"],["2024-07-25T22:13:27.010000"],["2024-07-25T22:13:28.010000"],["2024-07-25T22:13:29.010000"],["2024-07-25T22:13:30.010000"],["2024-07-25T22:13:31.010000"],["2024-07-25T22:13:32.010000"],["2024-07-25T22:13:33.010000"],["2024-07-25T22:13:34.010000"],["2024-07-25T22:13:35.010000"],["2024-07-25T22:13:36.010000"],["2024-07-25T22:13:37.010000"],["2024-07-25T22:13:38.010000"],["2024-07-25T22:13:39.010000"],["2024-07-25T22:13:40.010000"],["2024-07-25T22:13:41.010000"],["2024-07-25T22:13:42.010000"],["2024-07-25T22:13:43.010000"],["2024-07-25T22:13:44.010000"],["2024-07-25T22:13:45.010000"],["2024-07-25T22:13:46.010000"],["2024-07-25T22:13:47.010000"],["2024-07-25T22:13:48.010000"],["2024-07-25T22:13:49.010000"],["2024-07-25T22:13:50.010000"],["2024-07-25T22:13:51.010000"],["2024-07-25T22:13:52.010000"],["2024-07-25T22:13:53.010000"],["2024-07-25T22:13:54.010000"],["2024-07-25T22:13:55.010000"],["2024-07-25T22:13:56.010000"],["2024-07-25T22:13:57.010000"],["2024-07-25T22:13:58.010000"],["2024-07-25T22:13:59.010000"],["2024-07-25T22:14:00.010000"],["2024-07-25T22:14:01.010000"],["2024-07-25T22:14:02.010000"],["2024-07-25T22:14:03.010000"],["2024-07-25T22:14:04.010000"],["2024-07-25T22:14:05.010000"],["2024-07-25T22:14:06.010000"],["2024-07-25T22:14:07.010000"],["2024-07-25T22:14:08.010000"],["2024-07-25T22:14:09.010000"],["2024-07-25T22:14:10.010000"],["2024-07-25T22:14:11.010000"],["2024-07-25T22:14:12.010000"],["2024-07-25T22:14:13.010000"],["2024-07-25T22:14:14.010000"],["2024-07-25T22:14:15.010000"],["2024-07-25T22:14:16.010000"],["2024-07-25T22:14:17.010000"],["2024-07-25T22:14:18.010000"],["2024-07-25T22:14:19.010000"],["2024-07-25T22:14:20.010000"],["2024-07-25T22:14:21.010000"],["2024-07-25T22:14:22.010000"],["2024-07-25T22:14:23.010000"],["2024-07-25T22:14:24.010000"],["2024-07-25T22:14:25.010000"],["2024-07-25T22:14:26.010000"],["2024-07-25T22:14:27.010000"],["2024-07-25T22:14:28.010000"],["2024-07-25T22:14:29.010000"],["2024-07-25T22:14:30.010000"],["2024-07-25T22:14:31.010000"],["2024-07-25T22:14:32.010000"],["2024-07-25T22:14:33.010000"],["2024-07-25T22:14:34.010000"],["2024-07-25T22:14:35.010000"],["2024-07-25T22:14:36.010000"],["2024-07-25T22:14:37.010000"],["2024-07-25T22:14:38.010000"],["2024-07-25T22:14:39.010000"],["2024-07-25T22:14:40.010000"],["2024-07-25T22:14:41.010000"],["2024-07-25T22:14:42.010000"],["2024-07-25T22:14:43.010000"],["2024-07-25T22:14:44.010000"],["2024-07-25T22:14:45.010000"],["2024-07-25T22:14:46.010000"],["2024-07-25T22:14:47.010000"],["2024-07-25T22:14:48.010000"],["2024-07-25T22:14:49.010000"],["2024-07-25T22:14:50.010000"],["2024-07-25T22:14:51.010000"],["2024-07-25T22:14:52.010000"],["2024-07-25T22:14:53.010000"],["2024-07-25T22:14:54.010000"],["2024-07-25T22:14:55.010000"],["2024-07-25T22:14:56.010000"],["2024-07-25T22:14:57.010000"],["2024-07-25T22:14:58.010000"],["2024-07-25T22:14:59.010000"],["2024-07-25T22:15:00.010000"],["2024-07-25T22:15:01.010000"],["2024-07-25T22:15:02.010000"],["2024-07-25T22:15:03.010000"],["2024-07-25T22:15:04.010000"],["2024-07-25T22:15:05.010000"],["2024-07-25T22:15:06.010000"],["2024-07-25T22:15:07.010000"],["2024-07-25T22:15:08.010000"],["2024-07-25T22:15:09.010000"],["2024-07-25T22:15:10.010000"],["2024-07-25T22:15:11.010000"],["2024-07-25T22:15:12.010000"],["2024-07-25T22:15:13.010000"],["2024-07-25T22:15:14.010000"],["2024-07-25T22:15:15.010000"],["2024-07-25T22:15:16.010000"],["2024-07-25T22:15:17.010000"],["2024-07-25T22:15:18.010000"],["2024-07-25T22:15:19.010000"],["2024-07-25T22:15:20.010000"],["2024-07-25T22:15:21.010000"],["2024-07-25T22:15:22.010000"],["2024-07-25T22:15:23.010000"],["2024-07-25T22:15:24.010000"],["2024-07-25T22:15:25.010000"],["2024-07-25T22:15:26.010000"],["2024-07-25T22:15:27.010000"],["2024-07-25T22:15:28.010000"],["2024-07-25T22:15:29.010000"],["2024-07-25T22:15:30.010000"],["2024-07-25T22:15:31.010000"],["2024-07-25T22:15:32.010000"],["2024-07-25T22:15:33.010000"],["2024-07-25T22:15:34.010000"],["2024-07-25T22:15:35.010000"],["2024-07-25T22:15:36.010000"],["2024-07-25T22:15:37.010000"],["2024-07-25T22:15:38.010000"],["2024-07-25T22:15:39.010000"],["2024-07-25T22:15:40.010000"],["2024-07-25T22:15:41.010000"],["2024-07-25T22:15:42.010000"],["2024-07-25T22:15:43.010000"],["2024-07-25T22:15:44.010000"],["2024-07-25T22:15:45.010000"],["2024-07-25T22:15:46.010000"],["2024-07-25T22:15:47.010000"],["2024-07-25T22:15:48.010000"],["2024-07-25T22:15:49.010000"],["2024-07-25T22:15:50.010000"],["2024-07-25T22:15:51.010000"],["2024-07-25T22:15:52.010000"],["2024-07-25T22:15:53.010000"],["2024-07-25T22:15:54.010000"],["2024-07-25T22:15:55.010000"],["2024-07-25T22:15:56.010000"],["2024-07-25T22:15:57.010000"],["2024-07-25T22:15:58.010000"],["2024-07-25T22:15:59.010000"],["2024-07-25T22:16:00.010000"],["2024-07-25T22:16:01.010000"],["2024-07-25T22:16:02.010000"],["2024-07-25T22:16:03.010000"],["2024-07-25T22:16:04.010000"],["2024-07-25T22:16:05.010000"],["2024-07-25T22:16:06.010000"],["2024-07-25T22:16:07.010000"],["2024-07-25T22:16:08.010000"],["2024-07-25T22:16:09.010000"],["2024-07-25T22:16:10.010000"],["2024-07-25T22:16:11.010000"],["2024-07-25T22:16:12.010000"],["2024-07-25T22:16:13.010000"],["2024-07-25T22:16:14.010000"],["2024-07-25T22:16:15.010000"],["2024-07-25T22:16:16.010000"],["2024-07-25T22:16:17.010000"],["2024-07-25T22:16:18.010000"],["2024-07-25T22:16:19.010000"],["2024-07-25T22:16:20.010000"],["2024-07-25T22:16:21.010000"],["2024-07-25T22:16:22.010000"],["2024-07-25T22:16:23.010000"],["2024-07-25T22:16:24.010000"],["2024-07-25T22:16:25.010000"],["2024-07-25T22:16:26.010000"],["2024-07-25T22:16:27.010000"],["2024-07-25T22:16:28.010000"],["2024-07-25T22:16:29.010000"],["2024-07-25T22:16:30.010000"],["2024-07-25T22:16:31.010000"],["2024-07-25T22:16:32.010000"],["2024-07-25T22:16:33.010000"],["2024-07-25T22:16:34.010000"],["2024-07-25T22:16:35.010000"],["2024-07-25T22:16:36.010000"],["2024-07-25T22:16:37.010000"],["2024-07-25T22:16:38.010000"],["2024-07-25T22:16:39.010000"],["2024-07-25T22:16:40.010000"],["2024-07-25T22:16:41.010000"],["2024-07-25T22:16:42.010000"],["2024-07-25T22:16:43.010000"],["2024-07-25T22:16:44.010000"],["2024-07-25T22:16:45.010000"],["2024-07-25T22:16:46.010000"],["2024-07-25T22:16:47.010000"],["2024-07-25T22:16:48.010000"],["2024-07-25T22:16:49.010000"],["2024-07-25T22:16:50.010000"],["2024-07-25T22:16:51.010000"],["2024-07-25T22:16:52.010000"],["2024-07-25T22:16:53.010000"],["2024-07-25T22:16:54.010000"],["2024-07-25T22:16:55.010000"],["2024-07-25T22:16:56.010000"],["2024-07-25T22:16:57.010000"],["2024-07-25T22:16:58.010000"],["2024-07-25T22:16:59.010000"],["2024-07-25T22:17:00.010000"],["2024-07-25T22:17:01.010000"],["2024-07-25T22:17:02.010000"],["2024-07-25T22:17:03.010000"],["2024-07-25T22:17:04.010000"],["2024-07-25T22:17:05.010000"],["2024-07-25T22:17:06.010000"],["2024-07-25T22:17:07.010000"],["2024-07-25T22:17:08.010000"],["2024-07-25T22:17:09.010000"],["2024-07-25T22:17:10.010000"],["2024-07-25T22:17:11.010000"],["2024-07-25T22:17:12.010000"],["2024-07-25T22:17:13.010000"],["2024-07-25T22:17:14.010000"],["2024-07-25T22:17:15.010000"],["2024-07-25T22:17:16.010000"],["2024-07-25T22:17:17.010000"],["2024-07-25T22:17:18.010000"],["2024-07-25T22:17:19.010000"],["2024-07-25T22:17:20.010000"],["2024-07-25T22:17:21.010000"],["2024-07-25T22:17:22.010000"],["2024-07-25T22:17:23.010000"],["2024-07-25T22:17:24.010000"],["2024-07-25T22:17:25.010000"],["2024-07-25T22:17:26.010000"],["2024-07-25T22:17:27.010000"],["2024-07-25T22:17:28.010000"],["2024-07-25T22:17:29.010000"],["2024-07-25T22:17:30.010000"],["2024-07-25T22:17:31.010000"],["2024-07-25T22:17:32.010000"],["2024-07-25T22:17:33.010000"],["2024-07-25T22:17:34.010000"],["2024-07-25T22:17:35.010000"],["2024-07-25T22:17:36.010000"],["2024-07-25T22:17:37.010000"],["2024-07-25T22:17:38.010000"],["2024-07-25T22:17:39.010000"],["2024-07-25T22:17:40.010000"],["2024-07-25T22:17:41.010000"],["2024-07-25T22:17:42.010000"],["2024-07-25T22:17:43.010000"],["2024-07-25T22:17:44.010000"],["2024-07-25T22:17:45.010000"],["2024-07-25T22:17:46.010000"],["2024-07-25T22:17:47.010000"],["2024-07-25T22:17:48.010000"],["2024-07-25T22:17:49.010000"],["2024-07-25T22:17:50.010000"],["2024-07-25T22:17:51.010000"],["2024-07-25T22:17:52.010000"],["2024-07-25T22:17:53.010000"],["2024-07-25T22:17:54.010000"],["2024-07-25T22:17:55.010000"],["2024-07-25T22:17:56.010000"],["2024-07-25T22:17:57.010000"],["2024-07-25T22:17:58.010000"],["2024-07-25T22:17:59.010000"],["2024-07-25T22:18:00.010000"],["2024-07-25T22:18:01.010000"],["2024-07-25T22:18:02.010000"],["2024-07-25T22:18:03.010000"],["2024-07-25T22:18:04.010000"],["2024-07-25T22:18:05.010000"],["2024-07-25T22:18:06.010000"],["2024-07-25T22:18:07.010000"],["2024-07-25T22:18:08.010000"],["2024-07-25T22:18:09.010000"],["2024-07-25T22:18:10.010000"],["2024-07-25T22:18:11.010000"],["2024-07-25T22:18:12.010000"],["2024-07-25T22:18:13.010000"],["2024-07-25T22:18:14.010000"],["2024-07-25T22:18:15.010000"],["2024-07-25T22:18:16.010000"],["2024-07-25T22:18:17.010000"],["2024-07-25T22:18:18.010000"],["2024-07-25T22:18:19.010000"],["2024-07-25T22:18:20.010000"],["2024-07-25T22:18:21.010000"],["2024-07-25T22:18:22.010000"],["2024-07-25T22:18:23.010000"],["2024-07-25T22:18:24.010000"],["2024-07-25T22:18:25.010000"],["2024-07-25T22:18:26.010000"],["2024-07-25T22:18:27.010000"],["2024-07-25T22:18:28.010000"],["2024-07-25T22:18:29.010000"],["2024-07-25T22:18:30.010000"],["2024-07-25T22:18:31.010000"],["2024-07-25T22:18:32.010000"],["2024-07-25T22:18:33.010000"],["2024-07-25T22:18:34.010000"],["2024-07-25T22:18:35.010000"],["2024-07-25T22:18:36.010000"],["2024-07-25T22:18:37.010000"],["2024-07-25T22:18:38.010000"],["2024-07-25T22:18:39.010000"],["2024-07-25T22:18:40.010000"],["2024-07-25T22:18:41.010000"],["2024-07-25T22:18:42.010000"],["2024-07-25T22:18:43.010000"],["2024-07-25T22:18:44.010000"],["2024-07-25T22:18:45.010000"],["2024-07-25T22:18:46.010000"],["2024-07-25T22:18:47.010000"],["2024-07-25T22:18:48.010000"],["2024-07-25T22:18:49.010000"],["2024-07-25T22:18:50.010000"],["2024-07-25T22:18:51.010000"],["2024-07-25T22:18:52.010000"],["2024-07-25T22:18:53.010000"],["2024-07-25T22:18:54.010000"],["2024-07-25T22:18:55.010000"],["2024-07-25T22:18:56.010000"],["2024-07-25T22:18:57.010000"],["2024-07-25T22:18:58.010000"],["2024-07-25T22:18:59.010000"],["2024-07-25T22:19:00.010000"],["2024-07-25T22:19:01.010000"],["2024-07-25T22:19:02.010000"],["2024-07-25T22:19:03.010000"],["2024-07-25T22:19:04.010000"],["2024-07-25T22:19:05.010000"],["2024-07-25T22:19:06.010000"],["2024-07-25T22:19:07.010000"],["2024-07-25T22:19:08.010000"],["2024-07-25T22:19:09.010000"],["2024-07-25T22:19:10.010000"],["2024-07-25T22:19:11.010000"],["2024-07-25T22:19:12.010000"],["2024-07-25T22:19:13.010000"],["2024-07-25T22:19:14.010000"],["2024-07-25T22:19:15.010000"],["2024-07-25T22:19:16.010000"],["2024-07-25T22:19:17.010000"],["2024-07-25T22:19:18.010000"],["2024-07-25T22:19:19.010000"],["2024-07-25T22:19:20.010000"],["2024-07-25T22:19:21.010000"],["2024-07-25T22:19:22.010000"],["2024-07-25T22:19:23.010000"],["2024-07-25T22:19:24.010000"],["2024-07-25T22:19:25.010000"],["2024-07-25T22:19:26.010000"],["2024-07-25T22:19:27.010000"],["2024-07-25T22:19:28.010000"],["2024-07-25T22:19:29.010000"],["2024-07-25T22:19:30.010000"],["2024-07-25T22:19:31.010000"],["2024-07-25T22:19:32.010000"],["2024-07-25T22:19:33.010000"],["2024-07-25T22:19:34.010000"],["2024-07-25T22:19:35.010000"],["2024-07-25T22:19:36.010000"],["2024-07-25T22:19:37.010000"],["2024-07-25T22:19:38.010000"],["2024-07-25T22:19:39.010000"],["2024-07-25T22:19:40.010000"],["2024-07-25T22:19:41.010000"],["2024-07-25T22:19:42.010000"],["2024-07-25T22:19:43.010000"],["2024-07-25T22:19:44.010000"],["2024-07-25T22:19:45.010000"],["2024-07-25T22:19:46.010000"],["2024-07-25T22:19:47.010000"],["2024-07-25T22:19:48.010000"],["2024-07-25T22:19:49.010000"],["2024-07-25T22:19:50.010000"],["2024-07-25T22:19:51.010000"],["2024-07-25T22:19:52.010000"],["2024-07-25T22:19:53.010000"],["2024-07-25T22:19:54.010000"],["2024-07-25T22:19:55.010000"],["2024-07-25T22:19:56.010000"],["2024-07-25T22:19:57.010000"],["2024-07-25T22:19:58.010000"],["2024-07-25T22:19:59.010000"],["2024-07-25T22:20:00.010000"],["2024-07-25T22:20:01.010000"],["2024-07-25T22:20:02.010000"],["2024-07-25T22:20:03.010000"],["2024-07-25T22:20:04.010000"],["2024-07-25T22:20:05.010000"],["2024-07-25T22:20:06.010000"],["2024-07-25T22:20:07.010000"],["2024-07-25T22:20:08.010000"],["2024-07-25T22:20:09.010000"],["2024-07-25T22:20:10.010000"],["2024-07-25T22:20:11.010000"],["2024-07-25T22:20:12.010000"],["2024-07-25T22:20:13.010000"],["2024-07-25T22:20:14.010000"],["2024-07-25T22:20:15.010000"],["2024-07-25T22:20:16.010000"],["2024-07-25T22:20:17.010000"],["2024-07-25T22:20:18.010000"],["2024-07-25T22:20:19.010000"],["2024-07-25T22:20:20.010000"],["2024-07-25T22:20:21.010000"],["2024-07-25T22:20:22.010000"],["2024-07-25T22:20:23.010000"],["2024-07-25T22:20:24.010000"],["2024-07-25T22:20:25.010000"],["2024-07-25T22:20:26.010000"],["2024-07-25T22:20:27.010000"],["2024-07-25T22:20:28.010000"],["2024-07-25T22:20:29.010000"],["2024-07-25T22:20:30.010000"],["2024-07-25T22:20:31.010000"],["2024-07-25T22:20:32.010000"],["2024-07-25T22:20:33.010000"],["2024-07-25T22:20:34.010000"],["2024-07-25T22:20:35.010000"],["2024-07-25T22:20:36.010000"],["2024-07-25T22:20:37.010000"],["2024-07-25T22:20:38.010000"],["2024-07-25T22:20:39.010000"],["2024-07-25T22:20:40.010000"],["2024-07-25T22:20:41.010000"],["2024-07-25T22:20:42.010000"],["2024-07-25T22:20:43.010000"],["2024-07-25T22:20:44.010000"],["2024-07-25T22:20:45.010000"],["2024-07-25T22:20:46.010000"],["2024-07-25T22:20:47.010000"],["2024-07-25T22:20:48.010000"],["2024-07-25T22:20:49.010000"],["2024-07-25T22:20:50.010000"],["2024-07-25T22:20:51.010000"],["2024-07-25T22:20:52.010000"],["2024-07-25T22:20:53.010000"],["2024-07-25T22:20:54.010000"],["2024-07-25T22:20:55.010000"],["2024-07-25T22:20:56.010000"],["2024-07-25T22:20:57.010000"],["2024-07-25T22:20:58.010000"],["2024-07-25T22:20:59.010000"],["2024-07-25T22:21:00.010000"],["2024-07-25T22:21:01.010000"],["2024-07-25T22:21:02.010000"],["2024-07-25T22:21:03.010000"],["2024-07-25T22:21:04.010000"],["2024-07-25T22:21:05.010000"],["2024-07-25T22:21:06.010000"],["2024-07-25T22:21:07.010000"],["2024-07-25T22:21:08.010000"],["2024-07-25T22:21:09.010000"],["2024-07-25T22:21:10.010000"],["2024-07-25T22:21:11.010000"],["2024-07-25T22:21:12.010000"],["2024-07-25T22:21:13.010000"],["2024-07-25T22:21:14.010000"],["2024-07-25T22:21:15.010000"],["2024-07-25T22:21:16.010000"],["2024-07-25T22:21:17.010000"],["2024-07-25T22:21:18.010000"],["2024-07-25T22:21:19.010000"],["2024-07-25T22:21:20.010000"],["2024-07-25T22:21:21.010000"],["2024-07-25T22:21:22.010000"],["2024-07-25T22:21:23.010000"],["2024-07-25T22:21:24.010000"],["2024-07-25T22:21:25.010000"],["2024-07-25T22:21:26.010000"],["2024-07-25T22:21:27.010000"],["2024-07-25T22:21:28.010000"],["2024-07-25T22:21:29.010000"],["2024-07-25T22:21:30.010000"],["2024-07-25T22:21:31.010000"],["2024-07-25T22:21:32.010000"],["2024-07-25T22:21:33.010000"],["2024-07-25T22:21:34.010000"],["2024-07-25T22:21:35.010000"],["2024-07-25T22:21:36.010000"],["2024-07-25T22:21:37.010000"],["2024-07-25T22:21:38.010000"],["2024-07-25T22:21:39.010000"],["2024-07-25T22:21:40.010000"],["2024-07-25T22:21:41.010000"],["2024-07-25T22:21:42.010000"],["2024-07-25T22:21:43.010000"],["2024-07-25T22:21:44.010000"],["2024-07-25T22:21:45.010000"],["2024-07-25T22:21:46.010000"],["2024-07-25T22:21:47.010000"],["2024-07-25T22:21:48.010000"],["2024-07-25T22:21:49.010000"],["2024-07-25T22:21:50.010000"],["2024-07-25T22:21:51.010000"],["2024-07-25T22:21:52.010000"],["2024-07-25T22:21:53.010000"],["2024-07-25T22:21:54.010000"],["2024-07-25T22:21:55.010000"],["2024-07-25T22:21:56.010000"],["2024-07-25T22:21:57.010000"],["2024-07-25T22:21:58.010000"],["2024-07-25T22:21:59.010000"],["2024-07-25T22:22:00.010000"],["2024-07-25T22:22:01.010000"],["2024-07-25T22:22:02.010000"],["2024-07-25T22:22:03.010000"],["2024-07-25T22:22:04.010000"],["2024-07-25T22:22:05.010000"],["2024-07-25T22:22:06.010000"],["2024-07-25T22:22:07.010000"],["2024-07-25T22:22:08.010000"],["2024-07-25T22:22:09.010000"],["2024-07-25T22:22:10.010000"],["2024-07-25T22:22:11.010000"],["2024-07-25T22:22:12.010000"],["2024-07-25T22:22:13.010000"],["2024-07-25T22:22:14.010000"],["2024-07-25T22:22:15.010000"],["2024-07-25T22:22:16.010000"],["2024-07-25T22:22:17.010000"],["2024-07-25T22:22:18.010000"],["2024-07-25T22:22:19.010000"],["2024-07-25T22:22:20.010000"],["2024-07-25T22:22:21.010000"],["2024-07-25T22:22:22.010000"],["2024-07-25T22:22:23.010000"],["2024-07-25T22:22:24.010000"],["2024-07-25T22:22:25.010000"],["2024-07-25T22:22:26.010000"],["2024-07-25T22:22:27.010000"],["2024-07-25T22:22:28.010000"],["2024-07-25T22:22:29.010000"],["2024-07-25T22:22:30.010000"],["2024-07-25T22:22:31.010000"],["2024-07-25T22:22:32.010000"],["2024-07-25T22:22:33.010000"],["2024-07-25T22:22:34.010000"],["2024-07-25T22:22:35.010000"],["2024-07-25T22:22:36.010000"],["2024-07-25T22:22:37.010000"],["2024-07-25T22:22:38.010000"],["2024-07-25T22:22:39.010000"],["2024-07-25T22:22:40.010000"],["2024-07-25T22:22:41.010000"],["2024-07-25T22:22:42.010000"],["2024-07-25T22:22:43.010000"],["2024-07-25T22:22:44.010000"],["2024-07-25T22:22:45.010000"],["2024-07-25T22:22:46.010000"],["2024-07-25T22:22:47.010000"],["2024-07-25T22:22:48.010000"],["2024-07-25T22:22:49.010000"],["2024-07-25T22:22:50.010000"],["2024-07-25T22:22:51.010000"],["2024-07-25T22:22:52.010000"],["2024-07-25T22:22:53.010000"],["2024-07-25T22:22:54.010000"],["2024-07-25T22:22:55.010000"],["2024-07-25T22:22:56.010000"],["2024-07-25T22:22:57.010000"],["2024-07-25T22:22:58.010000"],["2024-07-25T22:22:59.010000"],["2024-07-25T22:23:00.010000"],["2024-07-25T22:23:01.010000"],["2024-07-25T22:23:02.010000"],["2024-07-25T22:23:03.010000"],["2024-07-25T22:23:04.010000"],["2024-07-25T22:23:05.010000"],["2024-07-25T22:23:06.010000"],["2024-07-25T22:23:07.010000"],["2024-07-25T22:23:08.010000"],["2024-07-25T22:23:09.010000"],["2024-07-25T22:23:10.010000"],["2024-07-25T22:23:11.010000"],["2024-07-25T22:23:12.010000"],["2024-07-25T22:23:13.010000"],["2024-07-25T22:23:14.010000"],["2024-07-25T22:23:15.010000"],["2024-07-25T22:23:16.010000"],["2024-07-25T22:23:17.010000"],["2024-07-25T22:23:18.010000"],["2024-07-25T22:23:19.010000"],["2024-07-25T22:23:20.010000"],["2024-07-25T22:23:21.010000"],["2024-07-25T22:23:22.010000"],["2024-07-25T22:23:23.010000"],["2024-07-25T22:23:24.010000"],["2024-07-25T22:23:25.010000"],["2024-07-25T22:23:26.010000"],["2024-07-25T22:23:27.010000"],["2024-07-25T22:23:28.010000"],["2024-07-25T22:23:29.010000"],["2024-07-25T22:23:30.010000"],["2024-07-25T22:23:31.010000"],["2024-07-25T22:23:32.010000"],["2024-07-25T22:23:33.010000"],["2024-07-25T22:23:34.010000"],["2024-07-25T22:23:35.010000"],["2024-07-25T22:23:36.010000"],["2024-07-25T22:23:37.010000"],["2024-07-25T22:23:38.010000"],["2024-07-25T22:23:39.010000"],["2024-07-25T22:23:40.010000"],["2024-07-25T22:23:41.010000"],["2024-07-25T22:23:42.010000"],["2024-07-25T22:23:43.010000"],["2024-07-25T22:23:44.010000"],["2024-07-25T22:23:45.010000"],["2024-07-25T22:23:46.010000"],["2024-07-25T22:23:47.010000"],["2024-07-25T22:23:48.010000"],["2024-07-25T22:23:49.010000"],["2024-07-25T22:23:50.010000"],["2024-07-25T22:23:51.010000"],["2024-07-25T22:23:52.010000"],["2024-07-25T22:23:53.010000"],["2024-07-25T22:23:54.010000"],["2024-07-25T22:23:55.010000"],["2024-07-25T22:23:56.010000"],["2024-07-25T22:23:57.010000"],["2024-07-25T22:23:58.010000"],["2024-07-25T22:23:59.010000"],["2024-07-25T22:24:00.010000"],["2024-07-25T22:24:01.010000"],["2024-07-25T22:24:02.010000"],["2024-07-25T22:24:03.010000"],["2024-07-25T22:24:04.010000"],["2024-07-25T22:24:05.010000"],["2024-07-25T22:24:06.010000"],["2024-07-25T22:24:07.010000"],["2024-07-25T22:24:08.010000"],["2024-07-25T22:24:09.010000"],["2024-07-25T22:24:10.010000"],["2024-07-25T22:24:11.010000"],["2024-07-25T22:24:12.010000"],["2024-07-25T22:24:13.010000"],["2024-07-25T22:24:14.010000"],["2024-07-25T22:24:15.010000"],["2024-07-25T22:24:16.010000"],["2024-07-25T22:24:17.010000"],["2024-07-25T22:24:18.010000"],["2024-07-25T22:24:19.010000"],["2024-07-25T22:24:20.010000"],["2024-07-25T22:24:21.010000"],["2024-07-25T22:24:22.010000"],["2024-07-25T22:24:23.010000"],["2024-07-25T22:24:24.010000"],["2024-07-25T22:24:25.010000"],["2024-07-25T22:24:26.010000"],["2024-07-25T22:24:27.010000"],["2024-07-25T22:24:28.010000"],["2024-07-25T22:24:29.010000"],["2024-07-25T22:24:30.010000"],["2024-07-25T22:24:31.010000"],["2024-07-25T22:24:32.010000"],["2024-07-25T22:24:33.010000"],["2024-07-25T22:24:34.010000"],["2024-07-25T22:24:35.010000"],["2024-07-25T22:24:36.010000"],["2024-07-25T22:24:37.010000"],["2024-07-25T22:24:38.010000"],["2024-07-25T22:24:39.010000"],["2024-07-25T22:24:40.010000"],["2024-07-25T22:24:41.010000"],["2024-07-25T22:24:42.010000"],["2024-07-25T22:24:43.010000"],["2024-07-25T22:24:44.010000"],["2024-07-25T22:24:45.010000"],["2024-07-25T22:24:46.010000"],["2024-07-25T22:24:47.010000"],["2024-07-25T22:24:48.010000"],["2024-07-25T22:24:49.010000"],["2024-07-25T22:24:50.010000"],["2024-07-25T22:24:51.010000"],["2024-07-25T22:24:52.010000"],["2024-07-25T22:24:53.010000"],["2024-07-25T22:24:54.010000"],["2024-07-25T22:24:55.010000"],["2024-07-25T22:24:56.010000"],["2024-07-25T22:24:57.010000"],["2024-07-25T22:24:58.010000"],["2024-07-25T22:24:59.010000"],["2024-07-25T22:25:00.010000"],["2024-07-25T22:25:01.010000"],["2024-07-25T22:25:02.010000"],["2024-07-25T22:25:03.010000"],["2024-07-25T22:25:04.010000"],["2024-07-25T22:25:05.010000"],["2024-07-25T22:25:06.010000"],["2024-07-25T22:25:07.010000"],["2024-07-25T22:25:08.010000"],["2024-07-25T22:25:09.010000"],["2024-07-25T22:25:10.010000"],["2024-07-25T22:25:11.010000"],["2024-07-25T22:25:12.010000"],["2024-07-25T22:25:13.010000"],["2024-07-25T22:25:14.010000"],["2024-07-25T22:25:15.010000"],["2024-07-25T22:25:16.010000"],["2024-07-25T22:25:17.010000"],["2024-07-25T22:25:18.010000"],["2024-07-25T22:25:19.010000"],["2024-07-25T22:25:20.010000"],["2024-07-25T22:25:21.010000"],["2024-07-25T22:25:22.010000"],["2024-07-25T22:25:23.010000"],["2024-07-25T22:25:24.010000"],["2024-07-25T22:25:25.010000"],["2024-07-25T22:25:26.010000"],["2024-07-25T22:25:27.010000"],["2024-07-25T22:25:28.010000"],["2024-07-25T22:25:29.010000"],["2024-07-25T22:25:30.010000"],["2024-07-25T22:25:31.010000"],["2024-07-25T22:25:32.010000"],["2024-07-25T22:25:33.010000"],["2024-07-25T22:25:34.010000"],["2024-07-25T22:25:35.010000"],["2024-07-25T22:25:36.010000"],["2024-07-25T22:25:37.010000"],["2024-07-25T22:25:38.010000"],["2024-07-25T22:25:39.010000"],["2024-07-25T22:25:40.010000"],["2024-07-25T22:25:41.010000"],["2024-07-25T22:25:42.010000"],["2024-07-25T22:25:43.010000"],["2024-07-25T22:25:44.010000"],["2024-07-25T22:25:45.010000"],["2024-07-25T22:25:46.010000"],["2024-07-25T22:25:47.010000"],["2024-07-25T22:25:48.010000"],["2024-07-25T22:25:49.010000"],["2024-07-25T22:25:50.010000"],["2024-07-25T22:25:51.010000"],["2024-07-25T22:25:52.010000"],["2024-07-25T22:25:53.010000"],["2024-07-25T22:25:54.010000"],["2024-07-25T22:25:55.010000"],["2024-07-25T22:25:56.010000"],["2024-07-25T22:25:57.010000"],["2024-07-25T22:25:58.010000"],["2024-07-25T22:25:59.010000"],["2024-07-25T22:26:00.010000"],["2024-07-25T22:26:01.010000"],["2024-07-25T22:26:02.010000"],["2024-07-25T22:26:03.010000"],["2024-07-25T22:26:04.010000"],["2024-07-25T22:26:05.010000"],["2024-07-25T22:26:06.010000"],["2024-07-25T22:26:07.010000"],["2024-07-25T22:26:08.010000"],["2024-07-25T22:26:09.010000"],["2024-07-25T22:26:10.010000"],["2024-07-25T22:26:11.010000"],["2024-07-25T22:26:12.010000"],["2024-07-25T22:26:13.010000"],["2024-07-25T22:26:14.010000"],["2024-07-25T22:26:15.010000"],["2024-07-25T22:26:16.010000"],["2024-07-25T22:26:17.010000"],["2024-07-25T22:26:18.010000"],["2024-07-25T22:26:19.010000"],["2024-07-25T22:26:20.010000"],["2024-07-25T22:26:21.010000"],["2024-07-25T22:26:22.010000"],["2024-07-25T22:26:23.010000"],["2024-07-25T22:26:24.010000"],["2024-07-25T22:26:25.010000"],["2024-07-25T22:26:26.010000"],["2024-07-25T22:26:27.010000"],["2024-07-25T22:26:28.010000"],["2024-07-25T22:26:29.010000"],["2024-07-25T22:26:30.010000"],["2024-07-25T22:26:31.010000"],["2024-07-25T22:26:32.010000"],["2024-07-25T22:26:33.010000"],["2024-07-25T22:26:34.010000"],["2024-07-25T22:26:35.010000"],["2024-07-25T22:26:36.010000"],["2024-07-25T22:26:37.010000"],["2024-07-25T22:26:38.010000"],["2024-07-25T22:26:39.010000"],["2024-07-25T22:26:40.010000"],["2024-07-25T22:26:41.010000"],["2024-07-25T22:26:42.010000"],["2024-07-25T22:26:43.010000"],["2024-07-25T22:26:44.010000"],["2024-07-25T22:26:45.010000"],["2024-07-25T22:26:46.010000"],["2024-07-25T22:26:47.010000"],["2024-07-25T22:26:48.010000"],["2024-07-25T22:26:49.010000"],["2024-07-25T22:26:50.010000"],["2024-07-25T22:26:51.010000"],["2024-07-25T22:26:52.010000"],["2024-07-25T22:26:53.010000"],["2024-07-25T22:26:54.010000"],["2024-07-25T22:26:55.010000"],["2024-07-25T22:26:56.010000"],["2024-07-25T22:26:57.010000"],["2024-07-25T22:26:58.010000"],["2024-07-25T22:26:59.010000"],["2024-07-25T22:27:00.010000"],["2024-07-25T22:27:01.010000"],["2024-07-25T22:27:02.010000"],["2024-07-25T22:27:03.010000"],["2024-07-25T22:27:04.010000"],["2024-07-25T22:27:05.010000"],["2024-07-25T22:27:06.010000"],["2024-07-25T22:27:07.010000"],["2024-07-25T22:27:08.010000"],["2024-07-25T22:27:09.010000"],["2024-07-25T22:27:10.010000"],["2024-07-25T22:27:11.010000"],["2024-07-25T22:27:12.010000"],["2024-07-25T22:27:13.010000"],["2024-07-25T22:27:14.010000"],["2024-07-25T22:27:15.010000"],["2024-07-25T22:27:16.010000"],["2024-07-25T22:27:17.010000"],["2024-07-25T22:27:18.010000"],["2024-07-25T22:27:19.010000"],["2024-07-25T22:27:20.010000"],["2024-07-25T22:27:21.010000"],["2024-07-25T22:27:22.010000"],["2024-07-25T22:27:23.010000"],["2024-07-25T22:27:24.010000"],["2024-07-25T22:27:25.010000"],["2024-07-25T22:27:26.010000"],["2024-07-25T22:27:27.010000"],["2024-07-25T22:27:28.010000"],["2024-07-25T22:27:29.010000"],["2024-07-25T22:27:30.010000"],["2024-07-25T22:27:31.010000"],["2024-07-25T22:27:32.010000"],["2024-07-25T22:27:33.010000"],["2024-07-25T22:27:34.010000"],["2024-07-25T22:27:35.010000"],["2024-07-25T22:27:36.010000"],["2024-07-25T22:27:37.010000"],["2024-07-25T22:27:38.010000"],["2024-07-25T22:27:39.010000"],["2024-07-25T22:27:40.010000"],["2024-07-25T22:27:41.010000"],["2024-07-25T22:27:42.010000"],["2024-07-25T22:27:43.010000"],["2024-07-25T22:27:44.010000"],["2024-07-25T22:27:45.010000"],["2024-07-25T22:27:46.010000"],["2024-07-25T22:27:47.010000"],["2024-07-25T22:27:48.010000"],["2024-07-25T22:27:49.010000"],["2024-07-25T22:27:50.010000"],["2024-07-25T22:27:51.010000"],["2024-07-25T22:27:52.010000"],["2024-07-25T22:27:53.010000"],["2024-07-25T22:27:54.010000"],["2024-07-25T22:27:55.010000"],["2024-07-25T22:27:56.010000"],["2024-07-25T22:27:57.010000"],["2024-07-25T22:27:58.010000"],["2024-07-25T22:27:59.010000"],["2024-07-25T22:28:00.010000"],["2024-07-25T22:28:01.010000"],["2024-07-25T22:28:02.010000"],["2024-07-25T22:28:03.010000"],["2024-07-25T22:28:04.010000"],["2024-07-25T22:28:05.010000"],["2024-07-25T22:28:06.010000"],["2024-07-25T22:28:07.010000"],["2024-07-25T22:28:08.010000"],["2024-07-25T22:28:09.010000"],["2024-07-25T22:28:10.010000"],["2024-07-25T22:28:11.010000"],["2024-07-25T22:28:12.010000"],["2024-07-25T22:28:13.010000"],["2024-07-25T22:28:14.010000"],["2024-07-25T22:28:15.010000"],["2024-07-25T22:28:16.010000"],["2024-07-25T22:28:17.010000"],["2024-07-25T22:28:18.010000"],["2024-07-25T22:28:19.010000"],["2024-07-25T22:28:20.010000"],["2024-07-25T22:28:21.010000"],["2024-07-25T22:28:22.010000"],["2024-07-25T22:28:23.010000"],["2024-07-25T22:28:24.010000"],["2024-07-25T22:28:25.010000"],["2024-07-25T22:28:26.010000"],["2024-07-25T22:28:27.010000"],["2024-07-25T22:28:28.010000"],["2024-07-25T22:28:29.010000"],["2024-07-25T22:28:30.010000"],["2024-07-25T22:28:31.010000"],["2024-07-25T22:28:32.010000"],["2024-07-25T22:28:33.010000"],["2024-07-25T22:28:34.010000"],["2024-07-25T22:28:35.010000"],["2024-07-25T22:28:36.010000"],["2024-07-25T22:28:37.010000"],["2024-07-25T22:28:38.010000"],["2024-07-25T22:28:39.010000"],["2024-07-25T22:28:40.010000"],["2024-07-25T22:28:41.010000"],["2024-07-25T22:28:42.010000"],["2024-07-25T22:28:43.010000"],["2024-07-25T22:28:44.010000"],["2024-07-25T22:28:45.010000"],["2024-07-25T22:28:46.010000"],["2024-07-25T22:28:47.010000"],["2024-07-25T22:28:48.010000"],["2024-07-25T22:28:49.010000"],["2024-07-25T22:28:50.010000"],["2024-07-25T22:28:51.010000"],["2024-07-25T22:28:52.010000"],["2024-07-25T22:28:53.010000"],["2024-07-25T22:28:54.010000"],["2024-07-25T22:28:55.010000"],["2024-07-25T22:28:56.010000"],["2024-07-25T22:28:57.010000"],["2024-07-25T22:28:58.010000"],["2024-07-25T22:28:59.010000"],["2024-07-25T22:29:00.010000"],["2024-07-25T22:29:01.010000"],["2024-07-25T22:29:02.010000"],["2024-07-25T22:29:03.010000"],["2024-07-25T22:29:04.010000"],["2024-07-25T22:29:05.010000"],["2024-07-25T22:29:06.010000"],["2024-07-25T22:29:07.010000"],["2024-07-25T22:29:08.010000"],["2024-07-25T22:29:09.010000"],["2024-07-25T22:29:10.010000"],["2024-07-25T22:29:11.010000"],["2024-07-25T22:29:12.010000"],["2024-07-25T22:29:13.010000"],["2024-07-25T22:29:14.010000"],["2024-07-25T22:29:15.010000"],["2024-07-25T22:29:16.010000"],["2024-07-25T22:29:17.010000"],["2024-07-25T22:29:18.010000"],["2024-07-25T22:29:19.010000"],["2024-07-25T22:29:20.010000"],["2024-07-25T22:29:21.010000"],["2024-07-25T22:29:22.010000"],["2024-07-25T22:29:23.010000"],["2024-07-25T22:29:24.010000"],["2024-07-25T22:29:25.010000"],["2024-07-25T22:29:26.010000"],["2024-07-25T22:29:27.010000"],["2024-07-25T22:29:28.010000"],["2024-07-25T22:29:29.010000"],["2024-07-25T22:29:30.010000"],["2024-07-25T22:29:31.010000"],["2024-07-25T22:29:32.010000"],["2024-07-25T22:29:33.010000"],["2024-07-25T22:29:34.010000"],["2024-07-25T22:29:35.010000"],["2024-07-25T22:29:36.010000"],["2024-07-25T22:29:37.010000"],["2024-07-25T22:29:38.010000"],["2024-07-25T22:29:39.010000"],["2024-07-25T22:29:40.010000"],["2024-07-25T22:29:41.010000"],["2024-07-25T22:29:42.010000"],["2024-07-25T22:29:43.010000"],["2024-07-25T22:29:44.010000"],["2024-07-25T22:29:45.010000"],["2024-07-25T22:29:46.010000"],["2024-07-25T22:29:47.010000"],["2024-07-25T22:29:48.010000"],["2024-07-25T22:29:49.010000"],["2024-07-25T22:29:50.010000"],["2024-07-25T22:29:51.010000"],["2024-07-25T22:29:52.010000"],["2024-07-25T22:29:53.010000"],["2024-07-25T22:29:54.010000"],["2024-07-25T22:29:55.010000"],["2024-07-25T22:29:56.010000"],["2024-07-25T22:29:57.010000"],["2024-07-25T22:29:58.010000"],["2024-07-25T22:29:59.010000"],["2024-07-25T22:30:00.010000"],["2024-07-25T22:30:01.010000"],["2024-07-25T22:30:02.010000"],["2024-07-25T22:30:03.010000"],["2024-07-25T22:30:04.010000"],["2024-07-25T22:30:05.010000"],["2024-07-25T22:30:06.010000"],["2024-07-25T22:30:07.010000"],["2024-07-25T22:30:08.010000"],["2024-07-25T22:30:09.010000"],["2024-07-25T22:30:10.010000"],["2024-07-25T22:30:11.010000"],["2024-07-25T22:30:12.010000"],["2024-07-25T22:30:13.010000"],["2024-07-25T22:30:14.010000"],["2024-07-25T22:30:15.010000"],["2024-07-25T22:30:16.010000"],["2024-07-25T22:30:17.010000"],["2024-07-25T22:30:18.010000"],["2024-07-25T22:30:19.010000"],["2024-07-25T22:30:20.010000"],["2024-07-25T22:30:21.010000"],["2024-07-25T22:30:22.010000"],["2024-07-25T22:30:23.010000"],["2024-07-25T22:30:24.010000"],["2024-07-25T22:30:25.010000"],["2024-07-25T22:30:26.010000"],["2024-07-25T22:30:27.010000"],["2024-07-25T22:30:28.010000"],["2024-07-25T22:30:29.010000"],["2024-07-25T22:30:30.010000"],["2024-07-25T22:30:31.010000"],["2024-07-25T22:30:32.010000"],["2024-07-25T22:30:33.010000"],["2024-07-25T22:30:34.010000"],["2024-07-25T22:30:35.010000"],["2024-07-25T22:30:36.010000"],["2024-07-25T22:30:37.010000"],["2024-07-25T22:30:38.010000"],["2024-07-25T22:30:39.010000"],["2024-07-25T22:30:40.010000"],["2024-07-25T22:30:41.010000"],["2024-07-25T22:30:42.010000"],["2024-07-25T22:30:43.010000"],["2024-07-25T22:30:44.010000"],["2024-07-25T22:30:45.010000"],["2024-07-25T22:30:46.010000"],["2024-07-25T22:30:47.010000"],["2024-07-25T22:30:48.010000"],["2024-07-25T22:30:49.010000"],["2024-07-25T22:30:50.010000"],["2024-07-25T22:30:51.010000"],["2024-07-25T22:30:52.010000"],["2024-07-25T22:30:53.010000"],["2024-07-25T22:30:54.010000"],["2024-07-25T22:30:55.010000"],["2024-07-25T22:30:56.010000"],["2024-07-25T22:30:57.010000"],["2024-07-25T22:30:58.010000"],["2024-07-25T22:30:59.010000"],["2024-07-25T22:31:00.010000"],["2024-07-25T22:31:01.010000"],["2024-07-25T22:31:02.010000"],["2024-07-25T22:31:03.010000"],["2024-07-25T22:31:04.010000"],["2024-07-25T22:31:05.010000"],["2024-07-25T22:31:06.010000"],["2024-07-25T22:31:07.010000"],["2024-07-25T22:31:08.010000"],["2024-07-25T22:31:09.010000"],["2024-07-25T22:31:10.010000"],["2024-07-25T22:31:11.010000"],["2024-07-25T22:31:12.010000"],["2024-07-25T22:31:13.010000"],["2024-07-25T22:31:14.010000"],["2024-07-25T22:31:15.010000"],["2024-07-25T22:31:16.010000"],["2024-07-25T22:31:17.010000"],["2024-07-25T22:31:18.010000"],["2024-07-25T22:31:19.010000"],["2024-07-25T22:31:20.010000"],["2024-07-25T22:31:21.010000"],["2024-07-25T22:31:22.010000"],["2024-07-25T22:31:23.010000"],["2024-07-25T22:31:24.010000"],["2024-07-25T22:31:25.010000"],["2024-07-25T22:31:26.010000"],["2024-07-25T22:31:27.010000"],["2024-07-25T22:31:28.010000"],["2024-07-25T22:31:29.010000"],["2024-07-25T22:31:30.010000"],["2024-07-25T22:31:31.010000"],["2024-07-25T22:31:32.010000"],["2024-07-25T22:31:33.010000"],["2024-07-25T22:31:34.010000"],["2024-07-25T22:31:35.010000"],["2024-07-25T22:31:36.010000"],["2024-07-25T22:31:37.010000"],["2024-07-25T22:31:38.010000"],["2024-07-25T22:31:39.010000"],["2024-07-25T22:31:40.010000"],["2024-07-25T22:31:41.010000"],["2024-07-25T22:31:42.010000"],["2024-07-25T22:31:43.010000"],["2024-07-25T22:31:44.010000"],["2024-07-25T22:31:45.010000"],["2024-07-25T22:31:46.010000"],["2024-07-25T22:31:47.010000"],["2024-07-25T22:31:48.010000"],["2024-07-25T22:31:49.010000"],["2024-07-25T22:31:50.010000"],["2024-07-25T22:31:51.010000"],["2024-07-25T22:31:52.010000"],["2024-07-25T22:31:53.010000"],["2024-07-25T22:31:54.010000"],["2024-07-25T22:31:55.010000"],["2024-07-25T22:31:56.010000"],["2024-07-25T22:31:57.010000"],["2024-07-25T22:31:58.010000"],["2024-07-25T22:31:59.010000"],["2024-07-25T22:32:00.010000"],["2024-07-25T22:32:01.010000"],["2024-07-25T22:32:02.010000"],["2024-07-25T22:32:03.010000"],["2024-07-25T22:32:04.010000"],["2024-07-25T22:32:05.010000"],["2024-07-25T22:32:06.010000"],["2024-07-25T22:32:07.010000"],["2024-07-25T22:32:08.010000"],["2024-07-25T22:32:09.010000"],["2024-07-25T22:32:10.010000"],["2024-07-25T22:32:11.010000"],["2024-07-25T22:32:12.010000"],["2024-07-25T22:32:13.010000"],["2024-07-25T22:32:14.010000"],["2024-07-25T22:32:15.010000"],["2024-07-25T22:32:16.010000"],["2024-07-25T22:32:17.010000"],["2024-07-25T22:32:18.010000"],["2024-07-25T22:32:19.010000"],["2024-07-25T22:32:20.010000"],["2024-07-25T22:32:21.010000"],["2024-07-25T22:32:22.010000"],["2024-07-25T22:32:23.010000"],["2024-07-25T22:32:24.010000"],["2024-07-25T22:32:25.010000"],["2024-07-25T22:32:26.010000"],["2024-07-25T22:32:27.010000"],["2024-07-25T22:32:28.010000"],["2024-07-25T22:32:29.010000"],["2024-07-25T22:32:30.010000"],["2024-07-25T22:32:31.010000"],["2024-07-25T22:32:32.010000"],["2024-07-25T22:32:33.010000"],["2024-07-25T22:32:34.010000"],["2024-07-25T22:32:35.010000"],["2024-07-25T22:32:36.010000"],["2024-07-25T22:32:37.010000"],["2024-07-25T22:32:38.010000"],["2024-07-25T22:32:39.010000"],["2024-07-25T22:32:40.010000"],["2024-07-25T22:32:41.010000"],["2024-07-25T22:32:42.010000"],["2024-07-25T22:32:43.010000"],["2024-07-25T22:32:44.010000"],["2024-07-25T22:32:45.010000"],["2024-07-25T22:32:46.010000"],["2024-07-25T22:32:47.010000"],["2024-07-25T22:32:48.010000"],["2024-07-25T22:32:49.010000"],["2024-07-25T22:32:50.010000"],["2024-07-25T22:32:51.010000"],["2024-07-25T22:32:52.010000"],["2024-07-25T22:32:53.010000"],["2024-07-25T22:32:54.010000"],["2024-07-25T22:32:55.010000"],["2024-07-25T22:32:56.010000"],["2024-07-25T22:32:57.010000"],["2024-07-25T22:32:58.010000"],["2024-07-25T22:32:59.010000"],["2024-07-25T22:33:00.010000"],["2024-07-25T22:33:01.010000"],["2024-07-25T22:33:02.010000"],["2024-07-25T22:33:03.010000"],["2024-07-25T22:33:04.010000"],["2024-07-25T22:33:05.010000"],["2024-07-25T22:33:06.010000"],["2024-07-25T22:33:07.010000"],["2024-07-25T22:33:08.010000"],["2024-07-25T22:33:09.010000"],["2024-07-25T22:33:10.010000"],["2024-07-25T22:33:11.010000"],["2024-07-25T22:33:12.010000"],["2024-07-25T22:33:13.010000"],["2024-07-25T22:33:14.010000"],["2024-07-25T22:33:15.010000"],["2024-07-25T22:33:16.010000"],["2024-07-25T22:33:17.010000"],["2024-07-25T22:33:18.010000"],["2024-07-25T22:33:19.010000"],["2024-07-25T22:33:20.010000"],["2024-07-25T22:33:21.010000"],["2024-07-25T22:33:22.010000"],["2024-07-25T22:33:23.010000"],["2024-07-25T22:33:24.010000"],["2024-07-25T22:33:25.010000"],["2024-07-25T22:33:26.010000"],["2024-07-25T22:33:27.010000"],["2024-07-25T22:33:28.010000"],["2024-07-25T22:33:29.010000"],["2024-07-25T22:33:30.010000"],["2024-07-25T22:33:31.010000"],["2024-07-25T22:33:32.010000"],["2024-07-25T22:33:33.010000"],["2024-07-25T22:33:34.010000"],["2024-07-25T22:33:35.010000"],["2024-07-25T22:33:36.010000"],["2024-07-25T22:33:37.010000"],["2024-07-25T22:33:38.010000"],["2024-07-25T22:33:39.010000"],["2024-07-25T22:33:40.010000"],["2024-07-25T22:33:41.010000"],["2024-07-25T22:33:42.010000"],["2024-07-25T22:33:43.010000"],["2024-07-25T22:33:44.010000"],["2024-07-25T22:33:45.010000"],["2024-07-25T22:33:46.010000"],["2024-07-25T22:33:47.010000"],["2024-07-25T22:33:48.010000"],["2024-07-25T22:33:49.010000"],["2024-07-25T22:33:50.010000"],["2024-07-25T22:33:51.010000"],["2024-07-25T22:33:52.010000"],["2024-07-25T22:33:53.010000"],["2024-07-25T22:33:54.010000"],["2024-07-25T22:33:55.010000"],["2024-07-25T22:33:56.010000"],["2024-07-25T22:33:57.010000"],["2024-07-25T22:33:58.010000"],["2024-07-25T22:33:59.010000"],["2024-07-25T22:34:00.010000"],["2024-07-25T22:34:01.010000"],["2024-07-25T22:34:02.010000"],["2024-07-25T22:34:03.010000"],["2024-07-25T22:34:04.010000"],["2024-07-25T22:34:05.010000"],["2024-07-25T22:34:06.010000"],["2024-07-25T22:34:07.010000"],["2024-07-25T22:34:08.010000"],["2024-07-25T22:34:09.010000"],["2024-07-25T22:34:10.010000"],["2024-07-25T22:34:11.010000"],["2024-07-25T22:34:12.010000"],["2024-07-25T22:34:13.010000"],["2024-07-25T22:34:14.010000"],["2024-07-25T22:34:15.010000"],["2024-07-25T22:34:16.010000"],["2024-07-25T22:34:17.010000"],["2024-07-25T22:34:18.010000"],["2024-07-25T22:34:19.010000"],["2024-07-25T22:34:20.010000"],["2024-07-25T22:34:21.010000"],["2024-07-25T22:34:22.010000"],["2024-07-25T22:34:23.010000"],["2024-07-25T22:34:24.010000"],["2024-07-25T22:34:25.010000"],["2024-07-25T22:34:26.010000"],["2024-07-25T22:34:27.010000"],["2024-07-25T22:34:28.010000"],["2024-07-25T22:34:29.010000"],["2024-07-25T22:34:30.010000"],["2024-07-25T22:34:31.010000"],["2024-07-25T22:34:32.010000"],["2024-07-25T22:34:33.010000"],["2024-07-25T22:34:34.010000"],["2024-07-25T22:34:35.010000"],["2024-07-25T22:34:36.010000"],["2024-07-25T22:34:37.010000"],["2024-07-25T22:34:38.010000"],["2024-07-25T22:34:39.010000"],["2024-07-25T22:34:40.010000"],["2024-07-25T22:34:41.010000"],["2024-07-25T22:34:42.010000"],["2024-07-25T22:34:43.010000"],["2024-07-25T22:34:44.010000"],["2024-07-25T22:34:45.010000"],["2024-07-25T22:34:46.010000"],["2024-07-25T22:34:47.010000"],["2024-07-25T22:34:48.010000"],["2024-07-25T22:34:49.010000"],["2024-07-25T22:34:50.010000"],["2024-07-25T22:34:51.010000"],["2024-07-25T22:34:52.010000"],["2024-07-25T22:34:53.010000"],["2024-07-25T22:34:54.010000"],["2024-07-25T22:34:55.010000"],["2024-07-25T22:34:56.010000"],["2024-07-25T22:34:57.010000"],["2024-07-25T22:34:58.010000"],["2024-07-25T22:34:59.010000"],["2024-07-25T22:35:00.010000"],["2024-07-25T22:35:01.010000"],["2024-07-25T22:35:02.010000"],["2024-07-25T22:35:03.010000"],["2024-07-25T22:35:04.010000"],["2024-07-25T22:35:05.010000"],["2024-07-25T22:35:06.010000"],["2024-07-25T22:35:07.010000"],["2024-07-25T22:35:08.010000"],["2024-07-25T22:35:09.010000"],["2024-07-25T22:35:10.010000"],["2024-07-25T22:35:11.010000"],["2024-07-25T22:35:12.010000"],["2024-07-25T22:35:13.010000"],["2024-07-25T22:35:14.010000"],["2024-07-25T22:35:15.010000"],["2024-07-25T22:35:16.010000"],["2024-07-25T22:35:17.010000"],["2024-07-25T22:35:18.010000"],["2024-07-25T22:35:19.010000"],["2024-07-25T22:35:20.010000"],["2024-07-25T22:35:21.010000"],["2024-07-25T22:35:22.010000"],["2024-07-25T22:35:23.010000"],["2024-07-25T22:35:24.010000"],["2024-07-25T22:35:25.010000"],["2024-07-25T22:35:26.010000"],["2024-07-25T22:35:27.010000"],["2024-07-25T22:35:28.010000"],["2024-07-25T22:35:29.010000"],["2024-07-25T22:35:30.010000"],["2024-07-25T22:35:31.010000"],["2024-07-25T22:35:32.010000"],["2024-07-25T22:35:33.010000"],["2024-07-25T22:35:34.010000"],["2024-07-25T22:35:35.010000"],["2024-07-25T22:35:36.010000"],["2024-07-25T22:35:37.010000"],["2024-07-25T22:35:38.010000"],["2024-07-25T22:35:39.010000"],["2024-07-25T22:35:40.010000"],["2024-07-25T22:35:41.010000"],["2024-07-25T22:35:42.010000"],["2024-07-25T22:35:43.010000"],["2024-07-25T22:35:44.010000"],["2024-07-25T22:35:45.010000"],["2024-07-25T22:35:46.010000"],["2024-07-25T22:35:47.010000"],["2024-07-25T22:35:48.010000"],["2024-07-25T22:35:49.010000"],["2024-07-25T22:35:50.010000"],["2024-07-25T22:35:51.010000"],["2024-07-25T22:35:52.010000"],["2024-07-25T22:35:53.010000"],["2024-07-25T22:35:54.010000"],["2024-07-25T22:35:55.010000"],["2024-07-25T22:35:56.010000"],["2024-07-25T22:35:57.010000"],["2024-07-25T22:35:58.010000"],["2024-07-25T22:35:59.010000"],["2024-07-25T22:36:00.010000"],["2024-07-25T22:36:01.010000"],["2024-07-25T22:36:02.010000"],["2024-07-25T22:36:03.010000"],["2024-07-25T22:36:04.010000"],["2024-07-25T22:36:05.010000"],["2024-07-25T22:36:06.010000"],["2024-07-25T22:36:07.010000"],["2024-07-25T22:36:08.010000"],["2024-07-25T22:36:09.010000"],["2024-07-25T22:36:10.010000"],["2024-07-25T22:36:11.010000"],["2024-07-25T22:36:12.010000"],["2024-07-25T22:36:13.010000"],["2024-07-25T22:36:14.010000"],["2024-07-25T22:36:15.010000"],["2024-07-25T22:36:16.010000"],["2024-07-25T22:36:17.010000"],["2024-07-25T22:36:18.010000"],["2024-07-25T22:36:19.010000"],["2024-07-25T22:36:20.010000"],["2024-07-25T22:36:21.010000"],["2024-07-25T22:36:22.010000"],["2024-07-25T22:36:23.010000"],["2024-07-25T22:36:24.010000"],["2024-07-25T22:36:25.010000"],["2024-07-25T22:36:26.010000"],["2024-07-25T22:36:27.010000"],["2024-07-25T22:36:28.010000"],["2024-07-25T22:36:29.010000"],["2024-07-25T22:36:30.010000"],["2024-07-25T22:36:31.010000"],["2024-07-25T22:36:32.010000"],["2024-07-25T22:36:33.010000"],["2024-07-25T22:36:34.010000"],["2024-07-25T22:36:35.010000"],["2024-07-25T22:36:36.010000"],["2024-07-25T22:36:37.010000"],["2024-07-25T22:36:38.010000"],["2024-07-25T22:36:39.010000"],["2024-07-25T22:36:40.010000"],["2024-07-25T22:36:41.010000"],["2024-07-25T22:36:42.010000"],["2024-07-25T22:36:43.010000"],["2024-07-25T22:36:44.010000"],["2024-07-25T22:36:45.010000"],["2024-07-25T22:36:46.010000"],["2024-07-25T22:36:47.010000"],["2024-07-25T22:36:48.010000"],["2024-07-25T22:36:49.010000"],["2024-07-25T22:36:50.010000"],["2024-07-25T22:36:51.010000"],["2024-07-25T22:36:52.010000"],["2024-07-25T22:36:53.010000"],["2024-07-25T22:36:54.010000"],["2024-07-25T22:36:55.010000"],["2024-07-25T22:36:56.010000"],["2024-07-25T22:36:57.010000"],["2024-07-25T22:36:58.010000"],["2024-07-25T22:36:59.010000"],["2024-07-25T22:37:00.010000"],["2024-07-25T22:37:01.010000"],["2024-07-25T22:37:02.010000"],["2024-07-25T22:37:03.010000"],["2024-07-25T22:37:04.010000"],["2024-07-25T22:37:05.010000"],["2024-07-25T22:37:06.010000"],["2024-07-25T22:37:07.010000"],["2024-07-25T22:37:08.010000"],["2024-07-25T22:37:09.010000"],["2024-07-25T22:37:10.010000"],["2024-07-25T22:37:11.010000"],["2024-07-25T22:37:12.010000"],["2024-07-25T22:37:13.010000"],["2024-07-25T22:37:14.010000"],["2024-07-25T22:37:15.010000"],["2024-07-25T22:37:16.010000"],["2024-07-25T22:37:17.010000"],["2024-07-25T22:37:18.010000"],["2024-07-25T22:37:19.010000"],["2024-07-25T22:37:20.010000"],["2024-07-25T22:37:21.010000"],["2024-07-25T22:37:22.010000"],["2024-07-25T22:37:23.010000"],["2024-07-25T22:37:24.010000"],["2024-07-25T22:37:25.010000"],["2024-07-25T22:37:26.010000"],["2024-07-25T22:37:27.010000"],["2024-07-25T22:37:28.010000"],["2024-07-25T22:37:29.010000"],["2024-07-25T22:37:30.010000"],["2024-07-25T22:37:31.010000"],["2024-07-25T22:37:32.010000"],["2024-07-25T22:37:33.010000"],["2024-07-25T22:37:34.010000"],["2024-07-25T22:37:35.010000"],["2024-07-25T22:37:36.010000"],["2024-07-25T22:37:37.010000"],["2024-07-25T22:37:38.010000"],["2024-07-25T22:37:39.010000"],["2024-07-25T22:37:40.010000"],["2024-07-25T22:37:41.010000"],["2024-07-25T22:37:42.010000"],["2024-07-25T22:37:43.010000"],["2024-07-25T22:37:44.010000"],["2024-07-25T22:37:45.010000"],["2024-07-25T22:37:46.010000"],["2024-07-25T22:37:47.010000"],["2024-07-25T22:37:48.010000"],["2024-07-25T22:37:49.010000"],["2024-07-25T22:37:50.010000"],["2024-07-25T22:37:51.010000"],["2024-07-25T22:37:52.010000"],["2024-07-25T22:37:53.010000"],["2024-07-25T22:37:54.010000"],["2024-07-25T22:37:55.010000"],["2024-07-25T22:37:56.010000"],["2024-07-25T22:37:57.010000"],["2024-07-25T22:37:58.010000"],["2024-07-25T22:37:59.010000"],["2024-07-25T22:38:00.010000"],["2024-07-25T22:38:01.010000"],["2024-07-25T22:38:02.010000"],["2024-07-25T22:38:03.010000"],["2024-07-25T22:38:04.010000"],["2024-07-25T22:38:05.010000"],["2024-07-25T22:38:06.010000"],["2024-07-25T22:38:07.010000"],["2024-07-25T22:38:08.010000"],["2024-07-25T22:38:09.010000"],["2024-07-25T22:38:10.010000"],["2024-07-25T22:38:11.010000"],["2024-07-25T22:38:12.010000"],["2024-07-25T22:38:13.010000"],["2024-07-25T22:38:14.010000"],["2024-07-25T22:38:15.010000"],["2024-07-25T22:38:16.010000"],["2024-07-25T22:38:17.010000"],["2024-07-25T22:38:18.010000"],["2024-07-25T22:38:19.010000"],["2024-07-25T22:38:20.010000"],["2024-07-25T22:38:21.010000"],["2024-07-25T22:38:22.010000"],["2024-07-25T22:38:23.010000"],["2024-07-25T22:38:24.010000"],["2024-07-25T22:38:25.010000"],["2024-07-25T22:38:26.010000"],["2024-07-25T22:38:27.010000"],["2024-07-25T22:38:28.010000"],["2024-07-25T22:38:29.010000"],["2024-07-25T22:38:30.010000"],["2024-07-25T22:38:31.010000"],["2024-07-25T22:38:32.010000"],["2024-07-25T22:38:33.010000"],["2024-07-25T22:38:34.010000"],["2024-07-25T22:38:35.010000"],["2024-07-25T22:38:36.010000"],["2024-07-25T22:38:37.010000"],["2024-07-25T22:38:38.010000"],["2024-07-25T22:38:39.010000"],["2024-07-25T22:38:40.010000"],["2024-07-25T22:38:41.010000"],["2024-07-25T22:38:42.010000"],["2024-07-25T22:38:43.010000"],["2024-07-25T22:38:44.010000"],["2024-07-25T22:38:45.010000"],["2024-07-25T22:38:46.010000"],["2024-07-25T22:38:47.010000"],["2024-07-25T22:38:48.010000"],["2024-07-25T22:38:49.010000"],["2024-07-25T22:38:50.010000"],["2024-07-25T22:38:51.010000"],["2024-07-25T22:38:52.010000"],["2024-07-25T22:38:53.010000"],["2024-07-25T22:38:54.010000"],["2024-07-25T22:38:55.010000"],["2024-07-25T22:38:56.010000"],["2024-07-25T22:38:57.010000"],["2024-07-25T22:38:58.010000"],["2024-07-25T22:38:59.010000"],["2024-07-25T22:39:00.010000"],["2024-07-25T22:39:01.010000"],["2024-07-25T22:39:02.010000"],["2024-07-25T22:39:03.010000"],["2024-07-25T22:39:04.010000"],["2024-07-25T22:39:05.010000"],["2024-07-25T22:39:06.010000"],["2024-07-25T22:39:07.010000"],["2024-07-25T22:39:08.010000"],["2024-07-25T22:39:09.010000"],["2024-07-25T22:39:10.010000"],["2024-07-25T22:39:11.010000"],["2024-07-25T22:39:12.010000"],["2024-07-25T22:39:13.010000"],["2024-07-25T22:39:14.010000"],["2024-07-25T22:39:15.010000"],["2024-07-25T22:39:16.010000"],["2024-07-25T22:39:17.010000"],["2024-07-25T22:39:18.010000"],["2024-07-25T22:39:19.010000"],["2024-07-25T22:39:20.010000"],["2024-07-25T22:39:21.010000"],["2024-07-25T22:39:22.010000"],["2024-07-25T22:39:23.010000"],["2024-07-25T22:39:24.010000"],["2024-07-25T22:39:25.010000"],["2024-07-25T22:39:26.010000"],["2024-07-25T22:39:27.010000"],["2024-07-25T22:39:28.010000"],["2024-07-25T22:39:29.010000"],["2024-07-25T22:39:30.010000"],["2024-07-25T22:39:31.010000"],["2024-07-25T22:39:32.010000"],["2024-07-25T22:39:33.010000"],["2024-07-25T22:39:34.010000"],["2024-07-25T22:39:35.010000"],["2024-07-25T22:39:36.010000"],["2024-07-25T22:39:37.010000"],["2024-07-25T22:39:38.010000"],["2024-07-25T22:39:39.010000"],["2024-07-25T22:39:40.010000"],["2024-07-25T22:39:41.010000"],["2024-07-25T22:39:42.010000"],["2024-07-25T22:39:43.010000"],["2024-07-25T22:39:44.010000"],["2024-07-25T22:39:45.010000"],["2024-07-25T22:39:46.010000"],["2024-07-25T22:39:47.010000"],["2024-07-25T22:39:48.010000"],["2024-07-25T22:39:49.010000"],["2024-07-25T22:39:50.010000"],["2024-07-25T22:39:51.010000"],["2024-07-25T22:39:52.010000"],["2024-07-25T22:39:53.010000"],["2024-07-25T22:39:54.010000"],["2024-07-25T22:39:55.010000"],["2024-07-25T22:39:56.010000"],["2024-07-25T22:39:57.010000"],["2024-07-25T22:39:58.010000"],["2024-07-25T22:39:59.010000"],["2024-07-25T22:40:00.010000"],["2024-07-25T22:40:01.010000"],["2024-07-25T22:40:02.010000"],["2024-07-25T22:40:03.010000"],["2024-07-25T22:40:04.010000"],["2024-07-25T22:40:05.010000"],["2024-07-25T22:40:06.010000"],["2024-07-25T22:40:07.010000"],["2024-07-25T22:40:08.010000"],["2024-07-25T22:40:09.010000"],["2024-07-25T22:40:10.010000"],["2024-07-25T22:40:11.010000"],["2024-07-25T22:40:12.010000"],["2024-07-25T22:40:13.010000"],["2024-07-25T22:40:14.010000"],["2024-07-25T22:40:15.010000"],["2024-07-25T22:40:16.010000"],["2024-07-25T22:40:17.010000"],["2024-07-25T22:40:18.010000"],["2024-07-25T22:40:19.010000"],["2024-07-25T22:40:20.010000"],["2024-07-25T22:40:21.010000"],["2024-07-25T22:40:22.010000"],["2024-07-25T22:40:23.010000"],["2024-07-25T22:40:24.010000"],["2024-07-25T22:40:25.010000"],["2024-07-25T22:40:26.010000"],["2024-07-25T22:40:27.010000"],["2024-07-25T22:40:28.010000"],["2024-07-25T22:40:29.010000"],["2024-07-25T22:40:30.010000"],["2024-07-25T22:40:31.010000"],["2024-07-25T22:40:32.010000"],["2024-07-25T22:40:33.010000"],["2024-07-25T22:40:34.010000"],["2024-07-25T22:40:35.010000"],["2024-07-25T22:40:36.010000"],["2024-07-25T22:40:37.010000"],["2024-07-25T22:40:38.010000"],["2024-07-25T22:40:39.010000"],["2024-07-25T22:40:40.010000"],["2024-07-25T22:40:41.010000"],["2024-07-25T22:40:42.010000"],["2024-07-25T22:40:43.010000"],["2024-07-25T22:40:44.010000"],["2024-07-25T22:40:45.010000"],["2024-07-25T22:40:46.010000"],["2024-07-25T22:40:47.010000"],["2024-07-25T22:40:48.010000"],["2024-07-25T22:40:49.010000"],["2024-07-25T22:40:50.010000"],["2024-07-25T22:40:51.010000"],["2024-07-25T22:40:52.010000"],["2024-07-25T22:40:53.010000"],["2024-07-25T22:40:54.010000"],["2024-07-25T22:40:55.010000"],["2024-07-25T22:40:56.010000"],["2024-07-25T22:40:57.010000"],["2024-07-25T22:40:58.010000"],["2024-07-25T22:40:59.010000"],["2024-07-25T22:41:00.010000"],["2024-07-25T22:41:01.010000"],["2024-07-25T22:41:02.010000"],["2024-07-25T22:41:03.010000"],["2024-07-25T22:41:04.010000"],["2024-07-25T22:41:05.010000"],["2024-07-25T22:41:06.010000"],["2024-07-25T22:41:07.010000"],["2024-07-25T22:41:08.010000"],["2024-07-25T22:41:09.010000"],["2024-07-25T22:41:10.010000"],["2024-07-25T22:41:11.010000"],["2024-07-25T22:41:12.010000"],["2024-07-25T22:41:13.010000"],["2024-07-25T22:41:14.010000"],["2024-07-25T22:41:15.010000"],["2024-07-25T22:41:16.010000"],["2024-07-25T22:41:17.010000"],["2024-07-25T22:41:18.010000"],["2024-07-25T22:41:19.010000"],["2024-07-25T22:41:20.010000"],["2024-07-25T22:41:21.010000"],["2024-07-25T22:41:22.010000"],["2024-07-25T22:41:23.010000"],["2024-07-25T22:41:24.010000"],["2024-07-25T22:41:25.010000"],["2024-07-25T22:41:26.010000"],["2024-07-25T22:41:27.010000"],["2024-07-25T22:41:28.010000"],["2024-07-25T22:41:29.010000"],["2024-07-25T22:41:30.010000"],["2024-07-25T22:41:31.010000"],["2024-07-25T22:41:32.010000"],["2024-07-25T22:41:33.010000"],["2024-07-25T22:41:34.010000"],["2024-07-25T22:41:35.010000"],["2024-07-25T22:41:36.010000"],["2024-07-25T22:41:37.010000"],["2024-07-25T22:41:38.010000"],["2024-07-25T22:41:39.010000"],["2024-07-25T22:41:40.010000"],["2024-07-25T22:41:41.010000"],["2024-07-25T22:41:42.010000"],["2024-07-25T22:41:43.010000"],["2024-07-25T22:41:44.010000"],["2024-07-25T22:41:45.010000"],["2024-07-25T22:41:46.010000"],["2024-07-25T22:41:47.010000"],["2024-07-25T22:41:48.010000"],["2024-07-25T22:41:49.010000"],["2024-07-25T22:41:50.010000"],["2024-07-25T22:41:51.010000"],["2024-07-25T22:41:52.010000"],["2024-07-25T22:41:53.010000"],["2024-07-25T22:41:54.010000"],["2024-07-25T22:41:55.010000"],["2024-07-25T22:41:56.010000"],["2024-07-25T22:41:57.010000"],["2024-07-25T22:41:58.010000"],["2024-07-25T22:41:59.010000"],["2024-07-25T22:42:00.010000"],["2024-07-25T22:42:01.010000"],["2024-07-25T22:42:02.010000"],["2024-07-25T22:42:03.010000"],["2024-07-25T22:42:04.010000"],["2024-07-25T22:42:05.010000"],["2024-07-25T22:42:06.010000"],["2024-07-25T22:42:07.010000"],["2024-07-25T22:42:08.010000"],["2024-07-25T22:42:09.010000"],["2024-07-25T22:42:10.010000"],["2024-07-25T22:42:11.010000"],["2024-07-25T22:42:12.010000"],["2024-07-25T22:42:13.010000"],["2024-07-25T22:42:14.010000"],["2024-07-25T22:42:15.010000"],["2024-07-25T22:42:16.010000"],["2024-07-25T22:42:17.010000"],["2024-07-25T22:42:18.010000"],["2024-07-25T22:42:19.010000"],["2024-07-25T22:42:20.010000"],["2024-07-25T22:42:21.010000"],["2024-07-25T22:42:22.010000"],["2024-07-25T22:42:23.010000"],["2024-07-25T22:42:24.010000"],["2024-07-25T22:42:25.010000"],["2024-07-25T22:42:26.010000"],["2024-07-25T22:42:27.010000"],["2024-07-25T22:42:28.010000"],["2024-07-25T22:42:29.010000"],["2024-07-25T22:42:30.010000"],["2024-07-25T22:42:31.010000"],["2024-07-25T22:42:32.010000"],["2024-07-25T22:42:33.010000"],["2024-07-25T22:42:34.010000"],["2024-07-25T22:42:35.010000"],["2024-07-25T22:42:36.010000"],["2024-07-25T22:42:37.010000"],["2024-07-25T22:42:38.010000"],["2024-07-25T22:42:39.010000"],["2024-07-25T22:42:40.010000"],["2024-07-25T22:42:41.010000"],["2024-07-25T22:42:42.010000"],["2024-07-25T22:42:43.010000"],["2024-07-25T22:42:44.010000"],["2024-07-25T22:42:45.010000"],["2024-07-25T22:42:46.010000"],["2024-07-25T22:42:47.010000"],["2024-07-25T22:42:48.010000"],["2024-07-25T22:42:49.010000"],["2024-07-25T22:42:50.010000"],["2024-07-25T22:42:51.010000"],["2024-07-25T22:42:52.010000"],["2024-07-25T22:42:53.010000"],["2024-07-25T22:42:54.010000"],["2024-07-25T22:42:55.010000"],["2024-07-25T22:42:56.010000"],["2024-07-25T22:42:57.010000"],["2024-07-25T22:42:58.010000"],["2024-07-25T22:42:59.010000"],["2024-07-25T22:43:00.010000"],["2024-07-25T22:43:01.010000"],["2024-07-25T22:43:02.010000"],["2024-07-25T22:43:03.010000"],["2024-07-25T22:43:04.010000"],["2024-07-25T22:43:05.010000"],["2024-07-25T22:43:06.010000"],["2024-07-25T22:43:07.010000"],["2024-07-25T22:43:08.010000"],["2024-07-25T22:43:09.010000"],["2024-07-25T22:43:10.010000"],["2024-07-25T22:43:11.010000"],["2024-07-25T22:43:12.010000"],["2024-07-25T22:43:13.010000"],["2024-07-25T22:43:14.010000"],["2024-07-25T22:43:15.010000"],["2024-07-25T22:43:16.010000"],["2024-07-25T22:43:17.010000"],["2024-07-25T22:43:18.010000"],["2024-07-25T22:43:19.010000"],["2024-07-25T22:43:20.010000"],["2024-07-25T22:43:21.010000"],["2024-07-25T22:43:22.010000"],["2024-07-25T22:43:23.010000"],["2024-07-25T22:43:24.010000"],["2024-07-25T22:43:25.010000"],["2024-07-25T22:43:26.010000"],["2024-07-25T22:43:27.010000"],["2024-07-25T22:43:28.010000"],["2024-07-25T22:43:29.010000"],["2024-07-25T22:43:30.010000"],["2024-07-25T22:43:31.010000"],["2024-07-25T22:43:32.010000"],["2024-07-25T22:43:33.010000"],["2024-07-25T22:43:34.010000"],["2024-07-25T22:43:35.010000"],["2024-07-25T22:43:36.010000"],["2024-07-25T22:43:37.010000"],["2024-07-25T22:43:38.010000"],["2024-07-25T22:43:39.010000"],["2024-07-25T22:43:40.010000"],["2024-07-25T22:43:41.010000"],["2024-07-25T22:43:42.010000"],["2024-07-25T22:43:43.010000"],["2024-07-25T22:43:44.010000"],["2024-07-25T22:43:45.010000"],["2024-07-25T22:43:46.010000"],["2024-07-25T22:43:47.010000"],["2024-07-25T22:43:48.010000"],["2024-07-25T22:43:49.010000"],["2024-07-25T22:43:50.010000"],["2024-07-25T22:43:51.010000"],["2024-07-25T22:43:52.010000"],["2024-07-25T22:43:53.010000"],["2024-07-25T22:43:54.010000"],["2024-07-25T22:43:55.010000"],["2024-07-25T22:43:56.010000"],["2024-07-25T22:43:57.010000"],["2024-07-25T22:43:58.010000"],["2024-07-25T22:43:59.010000"],["2024-07-25T22:44:00.010000"],["2024-07-25T22:44:01.010000"],["2024-07-25T22:44:02.010000"],["2024-07-25T22:44:03.010000"],["2024-07-25T22:44:04.010000"],["2024-07-25T22:44:05.010000"],["2024-07-25T22:44:06.010000"],["2024-07-25T22:44:07.010000"],["2024-07-25T22:44:08.010000"],["2024-07-25T22:44:09.010000"],["2024-07-25T22:44:10.010000"],["2024-07-25T22:44:11.010000"],["2024-07-25T22:44:12.010000"],["2024-07-25T22:44:13.010000"],["2024-07-25T22:44:14.010000"],["2024-07-25T22:44:15.010000"],["2024-07-25T22:44:16.010000"],["2024-07-25T22:44:17.010000"],["2024-07-25T22:44:18.010000"],["2024-07-25T22:44:19.010000"],["2024-07-25T22:44:20.010000"],["2024-07-25T22:44:21.010000"],["2024-07-25T22:44:22.010000"],["2024-07-25T22:44:23.010000"],["2024-07-25T22:44:24.010000"],["2024-07-25T22:44:25.010000"],["2024-07-25T22:44:26.010000"],["2024-07-25T22:44:27.010000"],["2024-07-25T22:44:28.010000"],["2024-07-25T22:44:29.010000"],["2024-07-25T22:44:30.010000"],["2024-07-25T22:44:31.010000"],["2024-07-25T22:44:32.010000"],["2024-07-25T22:44:33.010000"],["2024-07-25T22:44:34.010000"],["2024-07-25T22:44:35.010000"],["2024-07-25T22:44:36.010000"],["2024-07-25T22:44:37.010000"],["2024-07-25T22:44:38.010000"],["2024-07-25T22:44:39.010000"],["2024-07-25T22:44:40.010000"],["2024-07-25T22:44:41.010000"],["2024-07-25T22:44:42.010000"],["2024-07-25T22:44:43.010000"],["2024-07-25T22:44:44.010000"],["2024-07-25T22:44:45.010000"],["2024-07-25T22:44:46.010000"],["2024-07-25T22:44:47.010000"],["2024-07-25T22:44:48.010000"],["2024-07-25T22:44:49.010000"],["2024-07-25T22:44:50.010000"],["2024-07-25T22:44:51.010000"],["2024-07-25T22:44:52.010000"],["2024-07-25T22:44:53.010000"],["2024-07-25T22:44:54.010000"],["2024-07-25T22:44:55.010000"],["2024-07-25T22:44:56.010000"],["2024-07-25T22:44:57.010000"],["2024-07-25T22:44:58.010000"],["2024-07-25T22:44:59.010000"],["2024-07-25T22:45:00.010000"],["2024-07-25T22:45:01.010000"],["2024-07-25T22:45:02.010000"],["2024-07-25T22:45:03.010000"],["2024-07-25T22:45:04.010000"],["2024-07-25T22:45:05.010000"],["2024-07-25T22:45:06.010000"],["2024-07-25T22:45:07.010000"],["2024-07-25T22:45:08.010000"],["2024-07-25T22:45:09.010000"],["2024-07-25T22:45:10.010000"],["2024-07-25T22:45:11.010000"],["2024-07-25T22:45:12.010000"],["2024-07-25T22:45:13.010000"],["2024-07-25T22:45:14.010000"],["2024-07-25T22:45:15.010000"],["2024-07-25T22:45:16.010000"],["2024-07-25T22:45:17.010000"],["2024-07-25T22:45:18.010000"],["2024-07-25T22:45:19.010000"],["2024-07-25T22:45:20.010000"],["2024-07-25T22:45:21.010000"],["2024-07-25T22:45:22.010000"],["2024-07-25T22:45:23.010000"],["2024-07-25T22:45:24.010000"],["2024-07-25T22:45:25.010000"],["2024-07-25T22:45:26.010000"],["2024-07-25T22:45:27.010000"],["2024-07-25T22:45:28.010000"],["2024-07-25T22:45:29.010000"],["2024-07-25T22:45:30.010000"],["2024-07-25T22:45:31.010000"],["2024-07-25T22:45:32.010000"],["2024-07-25T22:45:33.010000"],["2024-07-25T22:45:34.010000"],["2024-07-25T22:45:35.010000"],["2024-07-25T22:45:36.010000"],["2024-07-25T22:45:37.010000"],["2024-07-25T22:45:38.010000"],["2024-07-25T22:45:39.010000"],["2024-07-25T22:45:40.010000"],["2024-07-25T22:45:41.010000"],["2024-07-25T22:45:42.010000"],["2024-07-25T22:45:43.010000"],["2024-07-25T22:45:44.010000"],["2024-07-25T22:45:45.010000"],["2024-07-25T22:45:46.010000"],["2024-07-25T22:45:47.010000"],["2024-07-25T22:45:48.010000"],["2024-07-25T22:45:49.010000"],["2024-07-25T22:45:50.010000"],["2024-07-25T22:45:51.010000"],["2024-07-25T22:45:52.010000"],["2024-07-25T22:45:53.010000"],["2024-07-25T22:45:54.010000"],["2024-07-25T22:45:55.010000"],["2024-07-25T22:45:56.010000"],["2024-07-25T22:45:57.010000"],["2024-07-25T22:45:58.010000"],["2024-07-25T22:45:59.010000"],["2024-07-25T22:46:00.010000"],["2024-07-25T22:46:01.010000"],["2024-07-25T22:46:02.010000"],["2024-07-25T22:46:03.010000"],["2024-07-25T22:46:04.010000"],["2024-07-25T22:46:05.010000"],["2024-07-25T22:46:06.010000"],["2024-07-25T22:46:07.010000"],["2024-07-25T22:46:08.010000"],["2024-07-25T22:46:09.010000"],["2024-07-25T22:46:10.010000"],["2024-07-25T22:46:11.010000"],["2024-07-25T22:46:12.010000"],["2024-07-25T22:46:13.010000"],["2024-07-25T22:46:14.010000"],["2024-07-25T22:46:15.010000"],["2024-07-25T22:46:16.010000"],["2024-07-25T22:46:17.010000"],["2024-07-25T22:46:18.010000"],["2024-07-25T22:46:19.010000"],["2024-07-25T22:46:20.010000"],["2024-07-25T22:46:21.010000"],["2024-07-25T22:46:22.010000"],["2024-07-25T22:46:23.010000"],["2024-07-25T22:46:24.010000"],["2024-07-25T22:46:25.010000"],["2024-07-25T22:46:26.010000"],["2024-07-25T22:46:27.010000"],["2024-07-25T22:46:28.010000"],["2024-07-25T22:46:29.010000"],["2024-07-25T22:46:30.010000"],["2024-07-25T22:46:31.010000"],["2024-07-25T22:46:32.010000"],["2024-07-25T22:46:33.010000"],["2024-07-25T22:46:34.010000"],["2024-07-25T22:46:35.010000"],["2024-07-25T22:46:36.010000"],["2024-07-25T22:46:37.010000"],["2024-07-25T22:46:38.010000"],["2024-07-25T22:46:39.010000"],["2024-07-25T22:46:40.010000"],["2024-07-25T22:46:41.010000"],["2024-07-25T22:46:42.010000"],["2024-07-25T22:46:43.010000"],["2024-07-25T22:46:44.010000"],["2024-07-25T22:46:45.010000"],["2024-07-25T22:46:46.010000"],["2024-07-25T22:46:47.010000"],["2024-07-25T22:46:48.010000"],["2024-07-25T22:46:49.010000"],["2024-07-25T22:46:50.010000"],["2024-07-25T22:46:51.010000"],["2024-07-25T22:46:52.010000"],["2024-07-25T22:46:53.010000"],["2024-07-25T22:46:54.010000"],["2024-07-25T22:46:55.010000"],["2024-07-25T22:46:56.010000"],["2024-07-25T22:46:57.010000"],["2024-07-25T22:46:58.010000"],["2024-07-25T22:46:59.010000"],["2024-07-25T22:47:00.010000"],["2024-07-25T22:47:01.010000"],["2024-07-25T22:47:02.010000"],["2024-07-25T22:47:03.010000"],["2024-07-25T22:47:04.010000"],["2024-07-25T22:47:05.010000"],["2024-07-25T22:47:06.010000"],["2024-07-25T22:47:07.010000"],["2024-07-25T22:47:08.010000"],["2024-07-25T22:47:09.010000"],["2024-07-25T22:47:10.010000"],["2024-07-25T22:47:11.010000"],["2024-07-25T22:47:12.010000"],["2024-07-25T22:47:13.010000"],["2024-07-25T22:47:14.010000"],["2024-07-25T22:47:15.010000"],["2024-07-25T22:47:16.010000"],["2024-07-25T22:47:17.010000"],["2024-07-25T22:47:18.010000"],["2024-07-25T22:47:19.010000"],["2024-07-25T22:47:20.010000"],["2024-07-25T22:47:21.010000"],["2024-07-25T22:47:22.010000"],["2024-07-25T22:47:23.010000"],["2024-07-25T22:47:24.010000"],["2024-07-25T22:47:25.010000"],["2024-07-25T22:47:26.010000"],["2024-07-25T22:47:27.010000"],["2024-07-25T22:47:28.010000"],["2024-07-25T22:47:29.010000"],["2024-07-25T22:47:30.010000"],["2024-07-25T22:47:31.010000"],["2024-07-25T22:47:32.010000"],["2024-07-25T22:47:33.010000"],["2024-07-25T22:47:34.010000"],["2024-07-25T22:47:35.010000"],["2024-07-25T22:47:36.010000"],["2024-07-25T22:47:37.010000"],["2024-07-25T22:47:38.010000"],["2024-07-25T22:47:39.010000"],["2024-07-25T22:47:40.010000"],["2024-07-25T22:47:41.010000"],["2024-07-25T22:47:42.010000"],["2024-07-25T22:47:43.010000"],["2024-07-25T22:47:44.010000"],["2024-07-25T22:47:45.010000"],["2024-07-25T22:47:46.010000"],["2024-07-25T22:47:47.010000"],["2024-07-25T22:47:48.010000"],["2024-07-25T22:47:49.010000"],["2024-07-25T22:47:50.010000"],["2024-07-25T22:47:51.010000"],["2024-07-25T22:47:52.010000"],["2024-07-25T22:47:53.010000"],["2024-07-25T22:47:54.010000"],["2024-07-25T22:47:55.010000"],["2024-07-25T22:47:56.010000"],["2024-07-25T22:47:57.010000"],["2024-07-25T22:47:58.010000"],["2024-07-25T22:47:59.010000"],["2024-07-25T22:48:00.010000"],["2024-07-25T22:48:01.010000"],["2024-07-25T22:48:02.010000"],["2024-07-25T22:48:03.010000"],["2024-07-25T22:48:04.010000"],["2024-07-25T22:48:05.010000"],["2024-07-25T22:48:06.010000"],["2024-07-25T22:48:07.010000"],["2024-07-25T22:48:08.010000"],["2024-07-25T22:48:09.010000"],["2024-07-25T22:48:10.010000"],["2024-07-25T22:48:11.010000"],["2024-07-25T22:48:12.010000"],["2024-07-25T22:48:13.010000"],["2024-07-25T22:48:14.010000"],["2024-07-25T22:48:15.010000"],["2024-07-25T22:48:16.010000"],["2024-07-25T22:48:17.010000"],["2024-07-25T22:48:18.010000"],["2024-07-25T22:48:19.010000"],["2024-07-25T22:48:20.010000"],["2024-07-25T22:48:21.010000"],["2024-07-25T22:48:22.010000"],["2024-07-25T22:48:23.010000"],["2024-07-25T22:48:24.010000"],["2024-07-25T22:48:25.010000"],["2024-07-25T22:48:26.010000"],["2024-07-25T22:48:27.010000"],["2024-07-25T22:48:28.010000"],["2024-07-25T22:48:29.010000"],["2024-07-25T22:48:30.010000"],["2024-07-25T22:48:31.010000"],["2024-07-25T22:48:32.010000"],["2024-07-25T22:48:33.010000"],["2024-07-25T22:48:34.010000"],["2024-07-25T22:48:35.010000"],["2024-07-25T22:48:36.010000"],["2024-07-25T22:48:37.010000"],["2024-07-25T22:48:38.010000"],["2024-07-25T22:48:39.010000"],["2024-07-25T22:48:40.010000"],["2024-07-25T22:48:41.010000"],["2024-07-25T22:48:42.010000"],["2024-07-25T22:48:43.010000"],["2024-07-25T22:48:44.010000"],["2024-07-25T22:48:45.010000"],["2024-07-25T22:48:46.010000"],["2024-07-25T22:48:47.010000"],["2024-07-25T22:48:48.010000"],["2024-07-25T22:48:49.010000"],["2024-07-25T22:48:50.010000"],["2024-07-25T22:48:51.010000"],["2024-07-25T22:48:52.010000"],["2024-07-25T22:48:53.010000"],["2024-07-25T22:48:54.010000"],["2024-07-25T22:48:55.010000"],["2024-07-25T22:48:56.010000"],["2024-07-25T22:48:57.010000"],["2024-07-25T22:48:58.010000"],["2024-07-25T22:48:59.010000"],["2024-07-25T22:49:00.010000"],["2024-07-25T22:49:01.010000"],["2024-07-25T22:49:02.010000"],["2024-07-25T22:49:03.010000"],["2024-07-25T22:49:04.010000"],["2024-07-25T22:49:05.010000"],["2024-07-25T22:49:06.010000"],["2024-07-25T22:49:07.010000"],["2024-07-25T22:49:08.010000"],["2024-07-25T22:49:09.010000"],["2024-07-25T22:49:10.010000"],["2024-07-25T22:49:11.010000"],["2024-07-25T22:49:12.010000"],["2024-07-25T22:49:13.010000"],["2024-07-25T22:49:14.010000"],["2024-07-25T22:49:15.010000"],["2024-07-25T22:49:16.010000"],["2024-07-25T22:49:17.010000"],["2024-07-25T22:49:18.010000"],["2024-07-25T22:49:19.010000"],["2024-07-25T22:49:20.010000"],["2024-07-25T22:49:21.010000"],["2024-07-25T22:49:22.010000"],["2024-07-25T22:49:23.010000"],["2024-07-25T22:49:24.010000"],["2024-07-25T22:49:25.010000"],["2024-07-25T22:49:26.010000"],["2024-07-25T22:49:27.010000"],["2024-07-25T22:49:28.010000"],["2024-07-25T22:49:29.010000"],["2024-07-25T22:49:30.010000"],["2024-07-25T22:49:31.010000"],["2024-07-25T22:49:32.010000"],["2024-07-25T22:49:33.010000"],["2024-07-25T22:49:34.010000"],["2024-07-25T22:49:35.010000"],["2024-07-25T22:49:36.010000"],["2024-07-25T22:49:37.010000"],["2024-07-25T22:49:38.010000"],["2024-07-25T22:49:39.010000"],["2024-07-25T22:49:40.010000"],["2024-07-25T22:49:41.010000"],["2024-07-25T22:49:42.010000"],["2024-07-25T22:49:43.010000"],["2024-07-25T22:49:44.010000"],["2024-07-25T22:49:45.010000"],["2024-07-25T22:49:46.010000"],["2024-07-25T22:49:47.010000"],["2024-07-25T22:49:48.010000"],["2024-07-25T22:49:49.010000"],["2024-07-25T22:49:50.010000"],["2024-07-25T22:49:51.010000"],["2024-07-25T22:49:52.010000"],["2024-07-25T22:49:53.010000"],["2024-07-25T22:49:54.010000"],["2024-07-25T22:49:55.010000"],["2024-07-25T22:49:56.010000"],["2024-07-25T22:49:57.010000"],["2024-07-25T22:49:58.010000"],["2024-07-25T22:49:59.010000"],["2024-07-25T22:50:00.010000"],["2024-07-25T22:50:01.010000"],["2024-07-25T22:50:02.010000"],["2024-07-25T22:50:03.010000"],["2024-07-25T22:50:04.010000"],["2024-07-25T22:50:05.010000"],["2024-07-25T22:50:06.010000"],["2024-07-25T22:50:07.010000"],["2024-07-25T22:50:08.010000"],["2024-07-25T22:50:09.010000"],["2024-07-25T22:50:10.010000"],["2024-07-25T22:50:11.010000"],["2024-07-25T22:50:12.010000"],["2024-07-25T22:50:13.010000"],["2024-07-25T22:50:14.010000"],["2024-07-25T22:50:15.010000"],["2024-07-25T22:50:16.010000"],["2024-07-25T22:50:17.010000"],["2024-07-25T22:50:18.010000"],["2024-07-25T22:50:19.010000"],["2024-07-25T22:50:20.010000"],["2024-07-25T22:50:21.010000"],["2024-07-25T22:50:22.010000"],["2024-07-25T22:50:23.010000"],["2024-07-25T22:50:24.010000"],["2024-07-25T22:50:25.010000"],["2024-07-25T22:50:26.010000"],["2024-07-25T22:50:27.010000"],["2024-07-25T22:50:28.010000"],["2024-07-25T22:50:29.010000"],["2024-07-25T22:50:30.010000"],["2024-07-25T22:50:31.010000"],["2024-07-25T22:50:32.010000"],["2024-07-25T22:50:33.010000"],["2024-07-25T22:50:34.010000"],["2024-07-25T22:50:35.010000"],["2024-07-25T22:50:36.010000"],["2024-07-25T22:50:37.010000"],["2024-07-25T22:50:38.010000"],["2024-07-25T22:50:39.010000"],["2024-07-25T22:50:40.010000"],["2024-07-25T22:50:41.010000"],["2024-07-25T22:50:42.010000"],["2024-07-25T22:50:43.010000"],["2024-07-25T22:50:44.010000"],["2024-07-25T22:50:45.010000"],["2024-07-25T22:50:46.010000"],["2024-07-25T22:50:47.010000"],["2024-07-25T22:50:48.010000"],["2024-07-25T22:50:49.010000"],["2024-07-25T22:50:50.010000"],["2024-07-25T22:50:51.010000"],["2024-07-25T22:50:52.010000"],["2024-07-25T22:50:53.010000"],["2024-07-25T22:50:54.010000"],["2024-07-25T22:50:55.010000"],["2024-07-25T22:50:56.010000"],["2024-07-25T22:50:57.010000"],["2024-07-25T22:50:58.010000"],["2024-07-25T22:50:59.010000"],["2024-07-25T22:51:00.010000"],["2024-07-25T22:51:01.010000"],["2024-07-25T22:51:02.010000"],["2024-07-25T22:51:03.010000"],["2024-07-25T22:51:04.010000"],["2024-07-25T22:51:05.010000"],["2024-07-25T22:51:06.010000"],["2024-07-25T22:51:07.010000"],["2024-07-25T22:51:08.010000"],["2024-07-25T22:51:09.010000"],["2024-07-25T22:51:10.010000"],["2024-07-25T22:51:11.010000"],["2024-07-25T22:51:12.010000"],["2024-07-25T22:51:13.010000"],["2024-07-25T22:51:14.010000"],["2024-07-25T22:51:15.010000"],["2024-07-25T22:51:16.010000"],["2024-07-25T22:51:17.010000"],["2024-07-25T22:51:18.010000"],["2024-07-25T22:51:19.010000"],["2024-07-25T22:51:20.010000"],["2024-07-25T22:51:21.010000"],["2024-07-25T22:51:22.010000"],["2024-07-25T22:51:23.010000"],["2024-07-25T22:51:24.010000"],["2024-07-25T22:51:25.010000"],["2024-07-25T22:51:26.010000"],["2024-07-25T22:51:27.010000"],["2024-07-25T22:51:28.010000"],["2024-07-25T22:51:29.010000"],["2024-07-25T22:51:30.010000"],["2024-07-25T22:51:31.010000"],["2024-07-25T22:51:32.010000"],["2024-07-25T22:51:33.010000"],["2024-07-25T22:51:34.010000"],["2024-07-25T22:51:35.010000"],["2024-07-25T22:51:36.010000"],["2024-07-25T22:51:37.010000"],["2024-07-25T22:51:38.010000"],["2024-07-25T22:51:39.010000"],["2024-07-25T22:51:40.010000"],["2024-07-25T22:51:41.010000"],["2024-07-25T22:51:42.010000"],["2024-07-25T22:51:43.010000"],["2024-07-25T22:51:44.010000"],["2024-07-25T22:51:45.010000"],["2024-07-25T22:51:46.010000"],["2024-07-25T22:51:47.010000"],["2024-07-25T22:51:48.010000"],["2024-07-25T22:51:49.010000"],["2024-07-25T22:51:50.010000"],["2024-07-25T22:51:51.010000"],["2024-07-25T22:51:52.010000"],["2024-07-25T22:51:53.010000"],["2024-07-25T22:51:54.010000"],["2024-07-25T22:51:55.010000"],["2024-07-25T22:51:56.010000"],["2024-07-25T22:51:57.010000"],["2024-07-25T22:51:58.010000"],["2024-07-25T22:51:59.010000"],["2024-07-25T22:52:00.010000"],["2024-07-25T22:52:01.010000"],["2024-07-25T22:52:02.010000"],["2024-07-25T22:52:03.010000"],["2024-07-25T22:52:04.010000"],["2024-07-25T22:52:05.010000"],["2024-07-25T22:52:06.010000"],["2024-07-25T22:52:07.010000"],["2024-07-25T22:52:08.010000"],["2024-07-25T22:52:09.010000"],["2024-07-25T22:52:10.010000"],["2024-07-25T22:52:11.010000"],["2024-07-25T22:52:12.010000"],["2024-07-25T22:52:13.010000"],["2024-07-25T22:52:14.010000"],["2024-07-25T22:52:15.010000"],["2024-07-25T22:52:16.010000"],["2024-07-25T22:52:17.010000"],["2024-07-25T22:52:18.010000"],["2024-07-25T22:52:19.010000"],["2024-07-25T22:52:20.010000"],["2024-07-25T22:52:21.010000"],["2024-07-25T22:52:22.010000"],["2024-07-25T22:52:23.010000"],["2024-07-25T22:52:24.010000"],["2024-07-25T22:52:25.010000"],["2024-07-25T22:52:26.010000"],["2024-07-25T22:52:27.010000"],["2024-07-25T22:52:28.010000"],["2024-07-25T22:52:29.010000"],["2024-07-25T22:52:30.010000"],["2024-07-25T22:52:31.010000"],["2024-07-25T22:52:32.010000"],["2024-07-25T22:52:33.010000"],["2024-07-25T22:52:34.010000"],["2024-07-25T22:52:35.010000"],["2024-07-25T22:52:36.010000"],["2024-07-25T22:52:37.010000"],["2024-07-25T22:52:38.010000"],["2024-07-25T22:52:39.010000"],["2024-07-25T22:52:40.010000"],["2024-07-25T22:52:41.010000"],["2024-07-25T22:52:42.010000"],["2024-07-25T22:52:43.010000"],["2024-07-25T22:52:44.010000"],["2024-07-25T22:52:45.010000"],["2024-07-25T22:52:46.010000"],["2024-07-25T22:52:47.010000"],["2024-07-25T22:52:48.010000"],["2024-07-25T22:52:49.010000"],["2024-07-25T22:52:50.010000"],["2024-07-25T22:52:51.010000"],["2024-07-25T22:52:52.010000"],["2024-07-25T22:52:53.010000"],["2024-07-25T22:52:54.010000"],["2024-07-25T22:52:55.010000"],["2024-07-25T22:52:56.010000"],["2024-07-25T22:52:57.010000"],["2024-07-25T22:52:58.010000"],["2024-07-25T22:52:59.010000"],["2024-07-25T22:53:00.010000"],["2024-07-25T22:53:01.010000"],["2024-07-25T22:53:02.010000"],["2024-07-25T22:53:03.010000"],["2024-07-25T22:53:04.010000"],["2024-07-25T22:53:05.010000"],["2024-07-25T22:53:06.010000"],["2024-07-25T22:53:07.010000"],["2024-07-25T22:53:08.010000"],["2024-07-25T22:53:09.010000"],["2024-07-25T22:53:10.010000"],["2024-07-25T22:53:11.010000"],["2024-07-25T22:53:12.010000"],["2024-07-25T22:53:13.010000"],["2024-07-25T22:53:14.010000"],["2024-07-25T22:53:15.010000"],["2024-07-25T22:53:16.010000"],["2024-07-25T22:53:17.010000"],["2024-07-25T22:53:18.010000"],["2024-07-25T22:53:19.010000"],["2024-07-25T22:53:20.010000"],["2024-07-25T22:53:21.010000"],["2024-07-25T22:53:22.010000"],["2024-07-25T22:53:23.010000"],["2024-07-25T22:53:24.010000"],["2024-07-25T22:53:25.010000"],["2024-07-25T22:53:26.010000"],["2024-07-25T22:53:27.010000"],["2024-07-25T22:53:28.010000"],["2024-07-25T22:53:29.010000"],["2024-07-25T22:53:30.010000"],["2024-07-25T22:53:31.010000"],["2024-07-25T22:53:32.010000"],["2024-07-25T22:53:33.010000"],["2024-07-25T22:53:34.010000"],["2024-07-25T22:53:35.010000"],["2024-07-25T22:53:36.010000"],["2024-07-25T22:53:37.010000"],["2024-07-25T22:53:38.010000"],["2024-07-25T22:53:39.010000"],["2024-07-25T22:53:40.010000"],["2024-07-25T22:53:41.010000"],["2024-07-25T22:53:42.010000"],["2024-07-25T22:53:43.010000"],["2024-07-25T22:53:44.010000"],["2024-07-25T22:53:45.010000"],["2024-07-25T22:53:46.010000"],["2024-07-25T22:53:47.010000"],["2024-07-25T22:53:48.010000"],["2024-07-25T22:53:49.010000"],["2024-07-25T22:53:50.010000"],["2024-07-25T22:53:51.010000"],["2024-07-25T22:53:52.010000"],["2024-07-25T22:53:53.010000"],["2024-07-25T22:53:54.010000"],["2024-07-25T22:53:55.010000"],["2024-07-25T22:53:56.010000"],["2024-07-25T22:53:57.010000"],["2024-07-25T22:53:58.010000"],["2024-07-25T22:53:59.010000"],["2024-07-25T22:54:00.010000"],["2024-07-25T22:54:01.010000"],["2024-07-25T22:54:02.010000"],["2024-07-25T22:54:03.010000"],["2024-07-25T22:54:04.010000"],["2024-07-25T22:54:05.010000"],["2024-07-25T22:54:06.010000"],["2024-07-25T22:54:07.010000"],["2024-07-25T22:54:08.010000"],["2024-07-25T22:54:09.010000"],["2024-07-25T22:54:10.010000"],["2024-07-25T22:54:11.010000"],["2024-07-25T22:54:12.010000"],["2024-07-25T22:54:13.010000"],["2024-07-25T22:54:14.010000"],["2024-07-25T22:54:15.010000"],["2024-07-25T22:54:16.010000"],["2024-07-25T22:54:17.010000"],["2024-07-25T22:54:18.010000"],["2024-07-25T22:54:19.010000"],["2024-07-25T22:54:20.010000"],["2024-07-25T22:54:21.010000"],["2024-07-25T22:54:22.010000"],["2024-07-25T22:54:23.010000"],["2024-07-25T22:54:24.010000"],["2024-07-25T22:54:25.010000"],["2024-07-25T22:54:26.010000"],["2024-07-25T22:54:27.010000"],["2024-07-25T22:54:28.010000"],["2024-07-25T22:54:29.010000"],["2024-07-25T22:54:30.010000"],["2024-07-25T22:54:31.010000"],["2024-07-25T22:54:32.010000"],["2024-07-25T22:54:33.010000"],["2024-07-25T22:54:34.010000"],["2024-07-25T22:54:35.010000"],["2024-07-25T22:54:36.010000"],["2024-07-25T22:54:37.010000"],["2024-07-25T22:54:38.010000"],["2024-07-25T22:54:39.010000"],["2024-07-25T22:54:40.010000"],["2024-07-25T22:54:41.010000"],["2024-07-25T22:54:42.010000"],["2024-07-25T22:54:43.010000"],["2024-07-25T22:54:44.010000"],["2024-07-25T22:54:45.010000"],["2024-07-25T22:54:46.010000"],["2024-07-25T22:54:47.010000"],["2024-07-25T22:54:48.010000"],["2024-07-25T22:54:49.010000"],["2024-07-25T22:54:50.010000"],["2024-07-25T22:54:51.010000"],["2024-07-25T22:54:52.010000"],["2024-07-25T22:54:53.010000"],["2024-07-25T22:54:54.010000"],["2024-07-25T22:54:55.010000"],["2024-07-25T22:54:56.010000"],["2024-07-25T22:54:57.010000"],["2024-07-25T22:54:58.010000"],["2024-07-25T22:54:59.010000"],["2024-07-25T22:55:00.010000"],["2024-07-25T22:55:01.010000"],["2024-07-25T22:55:02.010000"],["2024-07-25T22:55:03.010000"],["2024-07-25T22:55:04.010000"],["2024-07-25T22:55:05.010000"],["2024-07-25T22:55:06.010000"],["2024-07-25T22:55:07.010000"],["2024-07-25T22:55:08.010000"],["2024-07-25T22:55:09.010000"],["2024-07-25T22:55:10.010000"],["2024-07-25T22:55:11.010000"],["2024-07-25T22:55:12.010000"],["2024-07-25T22:55:13.010000"],["2024-07-25T22:55:14.010000"],["2024-07-25T22:55:15.010000"],["2024-07-25T22:55:16.010000"],["2024-07-25T22:55:17.010000"],["2024-07-25T22:55:18.010000"],["2024-07-25T22:55:19.010000"],["2024-07-25T22:55:20.010000"],["2024-07-25T22:55:21.010000"],["2024-07-25T22:55:22.010000"],["2024-07-25T22:55:23.010000"],["2024-07-25T22:55:24.010000"],["2024-07-25T22:55:25.010000"],["2024-07-25T22:55:26.010000"],["2024-07-25T22:55:27.010000"],["2024-07-25T22:55:28.010000"],["2024-07-25T22:55:29.010000"],["2024-07-25T22:55:30.010000"],["2024-07-25T22:55:31.010000"],["2024-07-25T22:55:32.010000"],["2024-07-25T22:55:33.010000"],["2024-07-25T22:55:34.010000"],["2024-07-25T22:55:35.010000"],["2024-07-25T22:55:36.010000"],["2024-07-25T22:55:37.010000"],["2024-07-25T22:55:38.010000"],["2024-07-25T22:55:39.010000"],["2024-07-25T22:55:40.010000"],["2024-07-25T22:55:41.010000"],["2024-07-25T22:55:42.010000"],["2024-07-25T22:55:43.010000"],["2024-07-25T22:55:44.010000"],["2024-07-25T22:55:45.010000"],["2024-07-25T22:55:46.010000"],["2024-07-25T22:55:47.010000"],["2024-07-25T22:55:48.010000"],["2024-07-25T22:55:49.010000"],["2024-07-25T22:55:50.010000"],["2024-07-25T22:55:51.010000"],["2024-07-25T22:55:52.010000"],["2024-07-25T22:55:53.010000"],["2024-07-25T22:55:54.010000"],["2024-07-25T22:55:55.010000"],["2024-07-25T22:55:56.010000"],["2024-07-25T22:55:57.010000"],["2024-07-25T22:55:58.010000"],["2024-07-25T22:55:59.010000"],["2024-07-25T22:56:00.010000"],["2024-07-25T22:56:01.010000"],["2024-07-25T22:56:02.010000"],["2024-07-25T22:56:03.010000"],["2024-07-25T22:56:04.010000"],["2024-07-25T22:56:05.010000"],["2024-07-25T22:56:06.010000"],["2024-07-25T22:56:07.010000"],["2024-07-25T22:56:08.010000"],["2024-07-25T22:56:09.010000"],["2024-07-25T22:56:10.010000"],["2024-07-25T22:56:11.010000"],["2024-07-25T22:56:12.010000"],["2024-07-25T22:56:13.010000"],["2024-07-25T22:56:14.010000"],["2024-07-25T22:56:15.010000"],["2024-07-25T22:56:16.010000"],["2024-07-25T22:56:17.010000"],["2024-07-25T22:56:18.010000"],["2024-07-25T22:56:19.010000"],["2024-07-25T22:56:20.010000"],["2024-07-25T22:56:21.010000"],["2024-07-25T22:56:22.010000"],["2024-07-25T22:56:23.010000"],["2024-07-25T22:56:24.010000"],["2024-07-25T22:56:25.010000"],["2024-07-25T22:56:26.010000"],["2024-07-25T22:56:27.010000"],["2024-07-25T22:56:28.010000"],["2024-07-25T22:56:29.010000"],["2024-07-25T22:56:30.010000"],["2024-07-25T22:56:31.010000"],["2024-07-25T22:56:32.010000"],["2024-07-25T22:56:33.010000"],["2024-07-25T22:56:34.010000"],["2024-07-25T22:56:35.010000"],["2024-07-25T22:56:36.010000"],["2024-07-25T22:56:37.010000"],["2024-07-25T22:56:38.010000"],["2024-07-25T22:56:39.010000"],["2024-07-25T22:56:40.010000"],["2024-07-25T22:56:41.010000"],["2024-07-25T22:56:42.010000"],["2024-07-25T22:56:43.010000"],["2024-07-25T22:56:44.010000"],["2024-07-25T22:56:45.010000"],["2024-07-25T22:56:46.010000"],["2024-07-25T22:56:47.010000"],["2024-07-25T22:56:48.010000"],["2024-07-25T22:56:49.010000"],["2024-07-25T22:56:50.010000"],["2024-07-25T22:56:51.010000"],["2024-07-25T22:56:52.010000"],["2024-07-25T22:56:53.010000"],["2024-07-25T22:56:54.010000"],["2024-07-25T22:56:55.010000"],["2024-07-25T22:56:56.010000"],["2024-07-25T22:56:57.010000"],["2024-07-25T22:56:58.010000"],["2024-07-25T22:56:59.010000"],["2024-07-25T22:57:00.010000"],["2024-07-25T22:57:01.010000"],["2024-07-25T22:57:02.010000"],["2024-07-25T22:57:03.010000"],["2024-07-25T22:57:04.010000"],["2024-07-25T22:57:05.010000"],["2024-07-25T22:57:06.010000"],["2024-07-25T22:57:07.010000"],["2024-07-25T22:57:08.010000"],["2024-07-25T22:57:09.010000"],["2024-07-25T22:57:10.010000"],["2024-07-25T22:57:11.010000"],["2024-07-25T22:57:12.010000"],["2024-07-25T22:57:13.010000"],["2024-07-25T22:57:14.010000"],["2024-07-25T22:57:15.010000"],["2024-07-25T22:57:16.010000"],["2024-07-25T22:57:17.010000"],["2024-07-25T22:57:18.010000"],["2024-07-25T22:57:19.010000"],["2024-07-25T22:57:20.010000"],["2024-07-25T22:57:21.010000"],["2024-07-25T22:57:22.010000"],["2024-07-25T22:57:23.010000"],["2024-07-25T22:57:24.010000"],["2024-07-25T22:57:25.010000"],["2024-07-25T22:57:26.010000"],["2024-07-25T22:57:27.010000"],["2024-07-25T22:57:28.010000"],["2024-07-25T22:57:29.010000"],["2024-07-25T22:57:30.010000"],["2024-07-25T22:57:31.010000"],["2024-07-25T22:57:32.010000"],["2024-07-25T22:57:33.010000"],["2024-07-25T22:57:34.010000"],["2024-07-25T22:57:35.010000"],["2024-07-25T22:57:36.010000"],["2024-07-25T22:57:37.010000"],["2024-07-25T22:57:38.010000"],["2024-07-25T22:57:39.010000"],["2024-07-25T22:57:40.010000"],["2024-07-25T22:57:41.010000"],["2024-07-25T22:57:42.010000"],["2024-07-25T22:57:43.010000"],["2024-07-25T22:57:44.010000"],["2024-07-25T22:57:45.010000"],["2024-07-25T22:57:46.010000"],["2024-07-25T22:57:47.010000"],["2024-07-25T22:57:48.010000"],["2024-07-25T22:57:49.010000"],["2024-07-25T22:57:50.010000"],["2024-07-25T22:57:51.010000"],["2024-07-25T22:57:52.010000"],["2024-07-25T22:57:53.010000"],["2024-07-25T22:57:54.010000"],["2024-07-25T22:57:55.010000"],["2024-07-25T22:57:56.010000"],["2024-07-25T22:57:57.010000"],["2024-07-25T22:57:58.010000"],["2024-07-25T22:57:59.010000"],["2024-07-25T22:58:00.010000"],["2024-07-25T22:58:01.010000"],["2024-07-25T22:58:02.010000"],["2024-07-25T22:58:03.010000"],["2024-07-25T22:58:04.010000"],["2024-07-25T22:58:05.010000"],["2024-07-25T22:58:06.010000"],["2024-07-25T22:58:07.010000"],["2024-07-25T22:58:08.010000"],["2024-07-25T22:58:09.010000"],["2024-07-25T22:58:10.010000"],["2024-07-25T22:58:11.010000"],["2024-07-25T22:58:12.010000"],["2024-07-25T22:58:13.010000"],["2024-07-25T22:58:14.010000"],["2024-07-25T22:58:15.010000"],["2024-07-25T22:58:16.010000"],["2024-07-25T22:58:17.010000"],["2024-07-25T22:58:18.010000"],["2024-07-25T22:58:19.010000"],["2024-07-25T22:58:20.010000"],["2024-07-25T22:58:21.010000"],["2024-07-25T22:58:22.010000"],["2024-07-25T22:58:23.010000"],["2024-07-25T22:58:24.010000"],["2024-07-25T22:58:25.010000"],["2024-07-25T22:58:26.010000"],["2024-07-25T22:58:27.010000"],["2024-07-25T22:58:28.010000"],["2024-07-25T22:58:29.010000"],["2024-07-25T22:58:30.010000"],["2024-07-25T22:58:31.010000"],["2024-07-25T22:58:32.010000"],["2024-07-25T22:58:33.010000"],["2024-07-25T22:58:34.010000"],["2024-07-25T22:58:35.010000"],["2024-07-25T22:58:36.010000"],["2024-07-25T22:58:37.010000"],["2024-07-25T22:58:38.010000"],["2024-07-25T22:58:39.010000"],["2024-07-25T22:58:40.010000"],["2024-07-25T22:58:41.010000"],["2024-07-25T22:58:42.010000"],["2024-07-25T22:58:43.010000"],["2024-07-25T22:58:44.010000"],["2024-07-25T22:58:45.010000"],["2024-07-25T22:58:46.010000"],["2024-07-25T22:58:47.010000"],["2024-07-25T22:58:48.010000"],["2024-07-25T22:58:49.010000"],["2024-07-25T22:58:50.010000"],["2024-07-25T22:58:51.010000"],["2024-07-25T22:58:52.010000"],["2024-07-25T22:58:53.010000"],["2024-07-25T22:58:54.010000"],["2024-07-25T22:58:55.010000"],["2024-07-25T22:58:56.010000"],["2024-07-25T22:58:57.010000"],["2024-07-25T22:58:58.010000"],["2024-07-25T22:58:59.010000"],["2024-07-25T22:59:00.010000"],["2024-07-25T22:59:01.010000"],["2024-07-25T22:59:02.010000"],["2024-07-25T22:59:03.010000"],["2024-07-25T22:59:04.010000"],["2024-07-25T22:59:05.010000"],["2024-07-25T22:59:06.010000"],["2024-07-25T22:59:07.010000"],["2024-07-25T22:59:08.010000"],["2024-07-25T22:59:09.010000"],["2024-07-25T22:59:10.010000"],["2024-07-25T22:59:11.010000"],["2024-07-25T22:59:12.010000"],["2024-07-25T22:59:13.010000"],["2024-07-25T22:59:14.010000"],["2024-07-25T22:59:15.010000"],["2024-07-25T22:59:16.010000"],["2024-07-25T22:59:17.010000"],["2024-07-25T22:59:18.010000"],["2024-07-25T22:59:19.010000"],["2024-07-25T22:59:20.010000"],["2024-07-25T22:59:21.010000"],["2024-07-25T22:59:22.010000"],["2024-07-25T22:59:23.010000"],["2024-07-25T22:59:24.010000"],["2024-07-25T22:59:25.010000"],["2024-07-25T22:59:26.010000"],["2024-07-25T22:59:27.010000"],["2024-07-25T22:59:28.010000"],["2024-07-25T22:59:29.010000"],["2024-07-25T22:59:30.010000"],["2024-07-25T22:59:31.010000"],["2024-07-25T22:59:32.010000"],["2024-07-25T22:59:33.010000"],["2024-07-25T22:59:34.010000"],["2024-07-25T22:59:35.010000"],["2024-07-25T22:59:36.010000"],["2024-07-25T22:59:37.010000"],["2024-07-25T22:59:38.010000"],["2024-07-25T22:59:39.010000"],["2024-07-25T22:59:40.010000"],["2024-07-25T22:59:41.010000"],["2024-07-25T22:59:42.010000"],["2024-07-25T22:59:43.010000"],["2024-07-25T22:59:44.010000"],["2024-07-25T22:59:45.010000"],["2024-07-25T22:59:46.010000"],["2024-07-25T22:59:47.010000"],["2024-07-25T22:59:48.010000"],["2024-07-25T22:59:49.010000"],["2024-07-25T22:59:50.010000"],["2024-07-25T22:59:51.010000"],["2024-07-25T22:59:52.010000"],["2024-07-25T22:59:53.010000"],["2024-07-25T22:59:54.010000"],["2024-07-25T22:59:55.010000"],["2024-07-25T22:59:56.010000"],["2024-07-25T22:59:57.010000"],["2024-07-25T22:59:58.010000"],["2024-07-25T22:59:59.010000"],["2024-07-25T23:00:00.010000"],["2024-07-25T23:00:01.010000"],["2024-07-25T23:00:02.010000"],["2024-07-25T23:00:03.010000"],["2024-07-25T23:00:04.010000"],["2024-07-25T23:00:05.010000"],["2024-07-25T23:00:06.010000"],["2024-07-25T23:00:07.010000"],["2024-07-25T23:00:08.010000"],["2024-07-25T23:00:09.010000"],["2024-07-25T23:00:10.010000"],["2024-07-25T23:00:11.010000"],["2024-07-25T23:00:12.010000"],["2024-07-25T23:00:13.010000"],["2024-07-25T23:00:14.010000"],["2024-07-25T23:00:15.010000"],["2024-07-25T23:00:16.010000"],["2024-07-25T23:00:17.010000"],["2024-07-25T23:00:18.010000"],["2024-07-25T23:00:19.010000"],["2024-07-25T23:00:20.010000"],["2024-07-25T23:00:21.010000"],["2024-07-25T23:00:22.010000"],["2024-07-25T23:00:23.010000"],["2024-07-25T23:00:24.010000"],["2024-07-25T23:00:25.010000"],["2024-07-25T23:00:26.010000"],["2024-07-25T23:00:27.010000"],["2024-07-25T23:00:28.010000"],["2024-07-25T23:00:29.010000"],["2024-07-25T23:00:30.010000"],["2024-07-25T23:00:31.010000"],["2024-07-25T23:00:32.010000"],["2024-07-25T23:00:33.010000"],["2024-07-25T23:00:34.010000"],["2024-07-25T23:00:35.010000"],["2024-07-25T23:00:36.010000"],["2024-07-25T23:00:37.010000"],["2024-07-25T23:00:38.010000"],["2024-07-25T23:00:39.010000"],["2024-07-25T23:00:40.010000"],["2024-07-25T23:00:41.010000"],["2024-07-25T23:00:42.010000"],["2024-07-25T23:00:43.010000"],["2024-07-25T23:00:44.010000"],["2024-07-25T23:00:45.010000"],["2024-07-25T23:00:46.010000"],["2024-07-25T23:00:47.010000"],["2024-07-25T23:00:48.010000"],["2024-07-25T23:00:49.010000"],["2024-07-25T23:00:50.010000"],["2024-07-25T23:00:51.010000"],["2024-07-25T23:00:52.010000"],["2024-07-25T23:00:53.010000"],["2024-07-25T23:00:54.010000"],["2024-07-25T23:00:55.010000"],["2024-07-25T23:00:56.010000"],["2024-07-25T23:00:57.010000"],["2024-07-25T23:00:58.010000"],["2024-07-25T23:00:59.010000"],["2024-07-25T23:01:00.010000"],["2024-07-25T23:01:01.010000"],["2024-07-25T23:01:02.010000"],["2024-07-25T23:01:03.010000"],["2024-07-25T23:01:04.010000"],["2024-07-25T23:01:05.010000"],["2024-07-25T23:01:06.010000"],["2024-07-25T23:01:07.010000"],["2024-07-25T23:01:08.010000"],["2024-07-25T23:01:09.010000"],["2024-07-25T23:01:10.010000"],["2024-07-25T23:01:11.010000"],["2024-07-25T23:01:12.010000"],["2024-07-25T23:01:13.010000"],["2024-07-25T23:01:14.010000"],["2024-07-25T23:01:15.010000"],["2024-07-25T23:01:16.010000"],["2024-07-25T23:01:17.010000"],["2024-07-25T23:01:18.010000"],["2024-07-25T23:01:19.010000"],["2024-07-25T23:01:20.010000"],["2024-07-25T23:01:21.010000"],["2024-07-25T23:01:22.010000"],["2024-07-25T23:01:23.010000"],["2024-07-25T23:01:24.010000"],["2024-07-25T23:01:25.010000"],["2024-07-25T23:01:26.010000"],["2024-07-25T23:01:27.010000"],["2024-07-25T23:01:28.010000"],["2024-07-25T23:01:29.010000"],["2024-07-25T23:01:30.010000"],["2024-07-25T23:01:31.010000"],["2024-07-25T23:01:32.010000"],["2024-07-25T23:01:33.010000"],["2024-07-25T23:01:34.010000"],["2024-07-25T23:01:35.010000"],["2024-07-25T23:01:36.010000"],["2024-07-25T23:01:37.010000"],["2024-07-25T23:01:38.010000"],["2024-07-25T23:01:39.010000"],["2024-07-25T23:01:40.010000"],["2024-07-25T23:01:41.010000"],["2024-07-25T23:01:42.010000"],["2024-07-25T23:01:43.010000"],["2024-07-25T23:01:44.010000"],["2024-07-25T23:01:45.010000"],["2024-07-25T23:01:46.010000"],["2024-07-25T23:01:47.010000"],["2024-07-25T23:01:48.010000"],["2024-07-25T23:01:49.010000"],["2024-07-25T23:01:50.010000"],["2024-07-25T23:01:51.010000"],["2024-07-25T23:01:52.010000"],["2024-07-25T23:01:53.010000"],["2024-07-25T23:01:54.010000"],["2024-07-25T23:01:55.010000"],["2024-07-25T23:01:56.010000"],["2024-07-25T23:01:57.010000"],["2024-07-25T23:01:58.010000"],["2024-07-25T23:01:59.010000"],["2024-07-25T23:02:00.010000"],["2024-07-25T23:02:01.010000"],["2024-07-25T23:02:02.010000"],["2024-07-25T23:02:03.010000"],["2024-07-25T23:02:04.010000"],["2024-07-25T23:02:05.010000"],["2024-07-25T23:02:06.010000"],["2024-07-25T23:02:07.010000"],["2024-07-25T23:02:08.010000"],["2024-07-25T23:02:09.010000"],["2024-07-25T23:02:10.010000"],["2024-07-25T23:02:11.010000"],["2024-07-25T23:02:12.010000"],["2024-07-25T23:02:13.010000"],["2024-07-25T23:02:14.010000"],["2024-07-25T23:02:15.010000"],["2024-07-25T23:02:16.010000"],["2024-07-25T23:02:17.010000"],["2024-07-25T23:02:18.010000"],["2024-07-25T23:02:19.010000"],["2024-07-25T23:02:20.010000"],["2024-07-25T23:02:21.010000"],["2024-07-25T23:02:22.010000"],["2024-07-25T23:02:23.010000"],["2024-07-25T23:02:24.010000"],["2024-07-25T23:02:25.010000"],["2024-07-25T23:02:26.010000"],["2024-07-25T23:02:27.010000"],["2024-07-25T23:02:28.010000"],["2024-07-25T23:02:29.010000"],["2024-07-25T23:02:30.010000"],["2024-07-25T23:02:31.010000"],["2024-07-25T23:02:32.010000"],["2024-07-25T23:02:33.010000"],["2024-07-25T23:02:34.010000"],["2024-07-25T23:02:35.010000"],["2024-07-25T23:02:36.010000"],["2024-07-25T23:02:37.010000"],["2024-07-25T23:02:38.010000"],["2024-07-25T23:02:39.010000"],["2024-07-25T23:02:40.010000"],["2024-07-25T23:02:41.010000"],["2024-07-25T23:02:42.010000"],["2024-07-25T23:02:43.010000"],["2024-07-25T23:02:44.010000"],["2024-07-25T23:02:45.010000"],["2024-07-25T23:02:46.010000"],["2024-07-25T23:02:47.010000"],["2024-07-25T23:02:48.010000"],["2024-07-25T23:02:49.010000"],["2024-07-25T23:02:50.010000"],["2024-07-25T23:02:51.010000"],["2024-07-25T23:02:52.010000"],["2024-07-25T23:02:53.010000"],["2024-07-25T23:02:54.010000"],["2024-07-25T23:02:55.010000"],["2024-07-25T23:02:56.010000"],["2024-07-25T23:02:57.010000"],["2024-07-25T23:02:58.010000"],["2024-07-25T23:02:59.010000"],["2024-07-25T23:03:00.010000"],["2024-07-25T23:03:01.010000"],["2024-07-25T23:03:02.010000"],["2024-07-25T23:03:03.010000"],["2024-07-25T23:03:04.010000"],["2024-07-25T23:03:05.010000"],["2024-07-25T23:03:06.010000"],["2024-07-25T23:03:07.010000"],["2024-07-25T23:03:08.010000"],["2024-07-25T23:03:09.010000"],["2024-07-25T23:03:10.010000"],["2024-07-25T23:03:11.010000"],["2024-07-25T23:03:12.010000"],["2024-07-25T23:03:13.010000"],["2024-07-25T23:03:14.010000"],["2024-07-25T23:03:15.010000"],["2024-07-25T23:03:16.010000"],["2024-07-25T23:03:17.010000"],["2024-07-25T23:03:18.010000"],["2024-07-25T23:03:19.010000"],["2024-07-25T23:03:20.010000"],["2024-07-25T23:03:21.010000"],["2024-07-25T23:03:22.010000"],["2024-07-25T23:03:23.010000"],["2024-07-25T23:03:24.010000"],["2024-07-25T23:03:25.010000"],["2024-07-25T23:03:26.010000"],["2024-07-25T23:03:27.010000"],["2024-07-25T23:03:28.010000"],["2024-07-25T23:03:29.010000"],["2024-07-25T23:03:30.010000"],["2024-07-25T23:03:31.010000"],["2024-07-25T23:03:32.010000"],["2024-07-25T23:03:33.010000"],["2024-07-25T23:03:34.010000"],["2024-07-25T23:03:35.010000"],["2024-07-25T23:03:36.010000"],["2024-07-25T23:03:37.010000"],["2024-07-25T23:03:38.010000"],["2024-07-25T23:03:39.010000"],["2024-07-25T23:03:40.010000"],["2024-07-25T23:03:41.010000"],["2024-07-25T23:03:42.010000"],["2024-07-25T23:03:43.010000"],["2024-07-25T23:03:44.010000"],["2024-07-25T23:03:45.010000"],["2024-07-25T23:03:46.010000"],["2024-07-25T23:03:47.010000"],["2024-07-25T23:03:48.010000"],["2024-07-25T23:03:49.010000"],["2024-07-25T23:03:50.010000"],["2024-07-25T23:03:51.010000"],["2024-07-25T23:03:52.010000"],["2024-07-25T23:03:53.010000"],["2024-07-25T23:03:54.010000"],["2024-07-25T23:03:55.010000"],["2024-07-25T23:03:56.010000"],["2024-07-25T23:03:57.010000"],["2024-07-25T23:03:58.010000"],["2024-07-25T23:03:59.010000"],["2024-07-25T23:04:00.010000"],["2024-07-25T23:04:01.010000"],["2024-07-25T23:04:02.010000"],["2024-07-25T23:04:03.010000"],["2024-07-25T23:04:04.010000"],["2024-07-25T23:04:05.010000"],["2024-07-25T23:04:06.010000"],["2024-07-25T23:04:07.010000"],["2024-07-25T23:04:08.010000"],["2024-07-25T23:04:09.010000"],["2024-07-25T23:04:10.010000"],["2024-07-25T23:04:11.010000"],["2024-07-25T23:04:12.010000"],["2024-07-25T23:04:13.010000"],["2024-07-25T23:04:14.010000"],["2024-07-25T23:04:15.010000"],["2024-07-25T23:04:16.010000"],["2024-07-25T23:04:17.010000"],["2024-07-25T23:04:18.010000"],["2024-07-25T23:04:19.010000"],["2024-07-25T23:04:20.010000"],["2024-07-25T23:04:21.010000"],["2024-07-25T23:04:22.010000"],["2024-07-25T23:04:23.010000"],["2024-07-25T23:04:24.010000"],["2024-07-25T23:04:25.010000"],["2024-07-25T23:04:26.010000"],["2024-07-25T23:04:27.010000"],["2024-07-25T23:04:28.010000"],["2024-07-25T23:04:29.010000"],["2024-07-25T23:04:30.010000"],["2024-07-25T23:04:31.010000"],["2024-07-25T23:04:32.010000"],["2024-07-25T23:04:33.010000"],["2024-07-25T23:04:34.010000"],["2024-07-25T23:04:35.010000"],["2024-07-25T23:04:36.010000"],["2024-07-25T23:04:37.010000"],["2024-07-25T23:04:38.010000"],["2024-07-25T23:04:39.010000"],["2024-07-25T23:04:40.010000"],["2024-07-25T23:04:41.010000"],["2024-07-25T23:04:42.010000"],["2024-07-25T23:04:43.010000"],["2024-07-25T23:04:44.010000"],["2024-07-25T23:04:45.010000"],["2024-07-25T23:04:46.010000"],["2024-07-25T23:04:47.010000"],["2024-07-25T23:04:48.010000"],["2024-07-25T23:04:49.010000"],["2024-07-25T23:04:50.010000"],["2024-07-25T23:04:51.010000"],["2024-07-25T23:04:52.010000"],["2024-07-25T23:04:53.010000"],["2024-07-25T23:04:54.010000"],["2024-07-25T23:04:55.010000"],["2024-07-25T23:04:56.010000"],["2024-07-25T23:04:57.010000"],["2024-07-25T23:04:58.010000"],["2024-07-25T23:04:59.010000"],["2024-07-25T23:05:00.010000"],["2024-07-25T23:05:01.010000"],["2024-07-25T23:05:02.010000"],["2024-07-25T23:05:03.010000"],["2024-07-25T23:05:04.010000"],["2024-07-25T23:05:05.010000"],["2024-07-25T23:05:06.010000"],["2024-07-25T23:05:07.010000"],["2024-07-25T23:05:08.010000"],["2024-07-25T23:05:09.010000"],["2024-07-25T23:05:10.010000"],["2024-07-25T23:05:11.010000"],["2024-07-25T23:05:12.010000"],["2024-07-25T23:05:13.010000"],["2024-07-25T23:05:14.010000"],["2024-07-25T23:05:15.010000"],["2024-07-25T23:05:16.010000"],["2024-07-25T23:05:17.010000"],["2024-07-25T23:05:18.010000"],["2024-07-25T23:05:19.010000"],["2024-07-25T23:05:20.010000"],["2024-07-25T23:05:21.010000"],["2024-07-25T23:05:22.010000"],["2024-07-25T23:05:23.010000"],["2024-07-25T23:05:24.010000"],["2024-07-25T23:05:25.010000"],["2024-07-25T23:05:26.010000"],["2024-07-25T23:05:27.010000"],["2024-07-25T23:05:28.010000"],["2024-07-25T23:05:29.010000"],["2024-07-25T23:05:30.010000"],["2024-07-25T23:05:31.010000"],["2024-07-25T23:05:32.010000"],["2024-07-25T23:05:33.010000"],["2024-07-25T23:05:34.010000"],["2024-07-25T23:05:35.010000"],["2024-07-25T23:05:36.010000"],["2024-07-25T23:05:37.010000"],["2024-07-25T23:05:38.010000"],["2024-07-25T23:05:39.010000"],["2024-07-25T23:05:40.010000"],["2024-07-25T23:05:41.010000"],["2024-07-25T23:05:42.010000"],["2024-07-25T23:05:43.010000"],["2024-07-25T23:05:44.010000"],["2024-07-25T23:05:45.010000"],["2024-07-25T23:05:46.010000"],["2024-07-25T23:05:47.010000"],["2024-07-25T23:05:48.010000"],["2024-07-25T23:05:49.010000"],["2024-07-25T23:05:50.010000"],["2024-07-25T23:05:51.010000"],["2024-07-25T23:05:52.010000"],["2024-07-25T23:05:53.010000"],["2024-07-25T23:05:54.010000"],["2024-07-25T23:05:55.010000"],["2024-07-25T23:05:56.010000"],["2024-07-25T23:05:57.010000"],["2024-07-25T23:05:58.010000"],["2024-07-25T23:05:59.010000"],["2024-07-25T23:06:00.010000"],["2024-07-25T23:06:01.010000"],["2024-07-25T23:06:02.010000"],["2024-07-25T23:06:03.010000"],["2024-07-25T23:06:04.010000"],["2024-07-25T23:06:05.010000"],["2024-07-25T23:06:06.010000"],["2024-07-25T23:06:07.010000"],["2024-07-25T23:06:08.010000"],["2024-07-25T23:06:09.010000"],["2024-07-25T23:06:10.010000"],["2024-07-25T23:06:11.010000"],["2024-07-25T23:06:12.010000"],["2024-07-25T23:06:13.010000"],["2024-07-25T23:06:14.010000"],["2024-07-25T23:06:15.010000"],["2024-07-25T23:06:16.010000"],["2024-07-25T23:06:17.010000"],["2024-07-25T23:06:18.010000"],["2024-07-25T23:06:19.010000"],["2024-07-25T23:06:20.010000"],["2024-07-25T23:06:21.010000"],["2024-07-25T23:06:22.010000"],["2024-07-25T23:06:23.010000"],["2024-07-25T23:06:24.010000"],["2024-07-25T23:06:25.010000"],["2024-07-25T23:06:26.010000"],["2024-07-25T23:06:27.010000"],["2024-07-25T23:06:28.010000"],["2024-07-25T23:06:29.010000"],["2024-07-25T23:06:30.010000"],["2024-07-25T23:06:31.010000"],["2024-07-25T23:06:32.010000"],["2024-07-25T23:06:33.010000"],["2024-07-25T23:06:34.010000"],["2024-07-25T23:06:35.010000"],["2024-07-25T23:06:36.010000"],["2024-07-25T23:06:37.010000"],["2024-07-25T23:06:38.010000"],["2024-07-25T23:06:39.010000"],["2024-07-25T23:06:40.010000"],["2024-07-25T23:06:41.010000"],["2024-07-25T23:06:42.010000"],["2024-07-25T23:06:43.010000"],["2024-07-25T23:06:44.010000"],["2024-07-25T23:06:45.010000"],["2024-07-25T23:06:46.010000"],["2024-07-25T23:06:47.010000"],["2024-07-25T23:06:48.010000"],["2024-07-25T23:06:49.010000"],["2024-07-25T23:06:50.010000"],["2024-07-25T23:06:51.010000"],["2024-07-25T23:06:52.010000"],["2024-07-25T23:06:53.010000"],["2024-07-25T23:06:54.010000"],["2024-07-25T23:06:55.010000"],["2024-07-25T23:06:56.010000"],["2024-07-25T23:06:57.010000"],["2024-07-25T23:06:58.010000"],["2024-07-25T23:06:59.010000"],["2024-07-25T23:07:00.010000"],["2024-07-25T23:07:01.010000"],["2024-07-25T23:07:02.010000"],["2024-07-25T23:07:03.010000"],["2024-07-25T23:07:04.010000"],["2024-07-25T23:07:05.010000"],["2024-07-25T23:07:06.010000"],["2024-07-25T23:07:07.010000"],["2024-07-25T23:07:08.010000"],["2024-07-25T23:07:09.010000"],["2024-07-25T23:07:10.010000"],["2024-07-25T23:07:11.010000"],["2024-07-25T23:07:12.010000"],["2024-07-25T23:07:13.010000"],["2024-07-25T23:07:14.010000"],["2024-07-25T23:07:15.010000"],["2024-07-25T23:07:16.010000"],["2024-07-25T23:07:17.010000"],["2024-07-25T23:07:18.010000"],["2024-07-25T23:07:19.010000"],["2024-07-25T23:07:20.010000"],["2024-07-25T23:07:21.010000"],["2024-07-25T23:07:22.010000"],["2024-07-25T23:07:23.010000"],["2024-07-25T23:07:24.010000"],["2024-07-25T23:07:25.010000"],["2024-07-25T23:07:26.010000"],["2024-07-25T23:07:27.010000"],["2024-07-25T23:07:28.010000"],["2024-07-25T23:07:29.010000"],["2024-07-25T23:07:30.010000"],["2024-07-25T23:07:31.010000"],["2024-07-25T23:07:32.010000"],["2024-07-25T23:07:33.010000"],["2024-07-25T23:07:34.010000"],["2024-07-25T23:07:35.010000"],["2024-07-25T23:07:36.010000"],["2024-07-25T23:07:37.010000"],["2024-07-25T23:07:38.010000"],["2024-07-25T23:07:39.010000"],["2024-07-25T23:07:40.010000"],["2024-07-25T23:07:41.010000"],["2024-07-25T23:07:42.010000"],["2024-07-25T23:07:43.010000"],["2024-07-25T23:07:44.010000"],["2024-07-25T23:07:45.010000"],["2024-07-25T23:07:46.010000"],["2024-07-25T23:07:47.010000"],["2024-07-25T23:07:48.010000"],["2024-07-25T23:07:49.010000"],["2024-07-25T23:07:50.010000"],["2024-07-25T23:07:51.010000"],["2024-07-25T23:07:52.010000"],["2024-07-25T23:07:53.010000"],["2024-07-25T23:07:54.010000"],["2024-07-25T23:07:55.010000"],["2024-07-25T23:07:56.010000"],["2024-07-25T23:07:57.010000"],["2024-07-25T23:07:58.010000"],["2024-07-25T23:07:59.010000"],["2024-07-25T23:08:00.010000"],["2024-07-25T23:08:01.010000"],["2024-07-25T23:08:02.010000"],["2024-07-25T23:08:03.010000"],["2024-07-25T23:08:04.010000"],["2024-07-25T23:08:05.010000"],["2024-07-25T23:08:06.010000"],["2024-07-25T23:08:07.010000"],["2024-07-25T23:08:08.010000"],["2024-07-25T23:08:09.010000"],["2024-07-25T23:08:10.010000"],["2024-07-25T23:08:11.010000"],["2024-07-25T23:08:12.010000"],["2024-07-25T23:08:13.010000"],["2024-07-25T23:08:14.010000"],["2024-07-25T23:08:15.010000"],["2024-07-25T23:08:16.010000"],["2024-07-25T23:08:17.010000"],["2024-07-25T23:08:18.010000"],["2024-07-25T23:08:19.010000"],["2024-07-25T23:08:20.010000"],["2024-07-25T23:08:21.010000"],["2024-07-25T23:08:22.010000"],["2024-07-25T23:08:23.010000"],["2024-07-25T23:08:24.010000"],["2024-07-25T23:08:25.010000"],["2024-07-25T23:08:26.010000"],["2024-07-25T23:08:27.010000"],["2024-07-25T23:08:28.010000"],["2024-07-25T23:08:29.010000"],["2024-07-25T23:08:30.010000"],["2024-07-25T23:08:31.010000"],["2024-07-25T23:08:32.010000"],["2024-07-25T23:08:33.010000"],["2024-07-25T23:08:34.010000"],["2024-07-25T23:08:35.010000"],["2024-07-25T23:08:36.010000"],["2024-07-25T23:08:37.010000"],["2024-07-25T23:08:38.010000"],["2024-07-25T23:08:39.010000"],["2024-07-25T23:08:40.010000"],["2024-07-25T23:08:41.010000"],["2024-07-25T23:08:42.010000"],["2024-07-25T23:08:43.010000"],["2024-07-25T23:08:44.010000"],["2024-07-25T23:08:45.010000"],["2024-07-25T23:08:46.010000"],["2024-07-25T23:08:47.010000"],["2024-07-25T23:08:48.010000"],["2024-07-25T23:08:49.010000"],["2024-07-25T23:08:50.010000"],["2024-07-25T23:08:51.010000"],["2024-07-25T23:08:52.010000"],["2024-07-25T23:08:53.010000"],["2024-07-25T23:08:54.010000"],["2024-07-25T23:08:55.010000"],["2024-07-25T23:08:56.010000"],["2024-07-25T23:08:57.010000"],["2024-07-25T23:08:58.010000"],["2024-07-25T23:08:59.010000"],["2024-07-25T23:09:00.010000"],["2024-07-25T23:09:01.010000"],["2024-07-25T23:09:02.010000"],["2024-07-25T23:09:03.010000"],["2024-07-25T23:09:04.010000"],["2024-07-25T23:09:05.010000"],["2024-07-25T23:09:06.010000"],["2024-07-25T23:09:07.010000"],["2024-07-25T23:09:08.010000"],["2024-07-25T23:09:09.010000"],["2024-07-25T23:09:10.010000"],["2024-07-25T23:09:11.010000"],["2024-07-25T23:09:12.010000"],["2024-07-25T23:09:13.010000"],["2024-07-25T23:09:14.010000"],["2024-07-25T23:09:15.010000"],["2024-07-25T23:09:16.010000"],["2024-07-25T23:09:17.010000"],["2024-07-25T23:09:18.010000"],["2024-07-25T23:09:19.010000"],["2024-07-25T23:09:20.010000"],["2024-07-25T23:09:21.010000"],["2024-07-25T23:09:22.010000"],["2024-07-25T23:09:23.010000"],["2024-07-25T23:09:24.010000"],["2024-07-25T23:09:25.010000"],["2024-07-25T23:09:26.010000"],["2024-07-25T23:09:27.010000"],["2024-07-25T23:09:28.010000"],["2024-07-25T23:09:29.010000"],["2024-07-25T23:09:30.010000"],["2024-07-25T23:09:31.010000"],["2024-07-25T23:09:32.010000"],["2024-07-25T23:09:33.010000"],["2024-07-25T23:09:34.010000"],["2024-07-25T23:09:35.010000"],["2024-07-25T23:09:36.010000"],["2024-07-25T23:09:37.010000"],["2024-07-25T23:09:38.010000"],["2024-07-25T23:09:39.010000"],["2024-07-25T23:09:40.010000"],["2024-07-25T23:09:41.010000"],["2024-07-25T23:09:42.010000"],["2024-07-25T23:09:43.010000"],["2024-07-25T23:09:44.010000"],["2024-07-25T23:09:45.010000"],["2024-07-25T23:09:46.010000"],["2024-07-25T23:09:47.010000"],["2024-07-25T23:09:48.010000"],["2024-07-25T23:09:49.010000"],["2024-07-25T23:09:50.010000"],["2024-07-25T23:09:51.010000"],["2024-07-25T23:09:52.010000"],["2024-07-25T23:09:53.010000"],["2024-07-25T23:09:54.010000"],["2024-07-25T23:09:55.010000"],["2024-07-25T23:09:56.010000"],["2024-07-25T23:09:57.010000"],["2024-07-25T23:09:58.010000"],["2024-07-25T23:09:59.010000"],["2024-07-25T23:10:00.010000"],["2024-07-25T23:10:01.010000"],["2024-07-25T23:10:02.010000"],["2024-07-25T23:10:03.010000"],["2024-07-25T23:10:04.010000"],["2024-07-25T23:10:05.010000"],["2024-07-25T23:10:06.010000"],["2024-07-25T23:10:07.010000"],["2024-07-25T23:10:08.010000"],["2024-07-25T23:10:09.010000"],["2024-07-25T23:10:10.010000"],["2024-07-25T23:10:11.010000"],["2024-07-25T23:10:12.010000"],["2024-07-25T23:10:13.010000"],["2024-07-25T23:10:14.010000"],["2024-07-25T23:10:15.010000"],["2024-07-25T23:10:16.010000"],["2024-07-25T23:10:17.010000"],["2024-07-25T23:10:18.010000"],["2024-07-25T23:10:19.010000"],["2024-07-25T23:10:20.010000"],["2024-07-25T23:10:21.010000"],["2024-07-25T23:10:22.010000"],["2024-07-25T23:10:23.010000"],["2024-07-25T23:10:24.010000"],["2024-07-25T23:10:25.010000"],["2024-07-25T23:10:26.010000"],["2024-07-25T23:10:27.010000"],["2024-07-25T23:10:28.010000"],["2024-07-25T23:10:29.010000"],["2024-07-25T23:10:30.010000"],["2024-07-25T23:10:31.010000"],["2024-07-25T23:10:32.010000"],["2024-07-25T23:10:33.010000"],["2024-07-25T23:10:34.010000"],["2024-07-25T23:10:35.010000"],["2024-07-25T23:10:36.010000"],["2024-07-25T23:10:37.010000"],["2024-07-25T23:10:38.010000"],["2024-07-25T23:10:39.010000"],["2024-07-25T23:10:40.010000"],["2024-07-25T23:10:41.010000"],["2024-07-25T23:10:42.010000"],["2024-07-25T23:10:43.010000"],["2024-07-25T23:10:44.010000"],["2024-07-25T23:10:45.010000"],["2024-07-25T23:10:46.010000"],["2024-07-25T23:10:47.010000"],["2024-07-25T23:10:48.010000"],["2024-07-25T23:10:49.010000"],["2024-07-25T23:10:50.010000"],["2024-07-25T23:10:51.010000"],["2024-07-25T23:10:52.010000"],["2024-07-25T23:10:53.010000"],["2024-07-25T23:10:54.010000"],["2024-07-25T23:10:55.010000"],["2024-07-25T23:10:56.010000"],["2024-07-25T23:10:57.010000"],["2024-07-25T23:10:58.010000"],["2024-07-25T23:10:59.010000"],["2024-07-25T23:11:00.010000"],["2024-07-25T23:11:01.010000"],["2024-07-25T23:11:02.010000"],["2024-07-25T23:11:03.010000"],["2024-07-25T23:11:04.010000"],["2024-07-25T23:11:05.010000"],["2024-07-25T23:11:06.010000"],["2024-07-25T23:11:07.010000"],["2024-07-25T23:11:08.010000"],["2024-07-25T23:11:09.010000"],["2024-07-25T23:11:10.010000"],["2024-07-25T23:11:11.010000"],["2024-07-25T23:11:12.010000"],["2024-07-25T23:11:13.010000"],["2024-07-25T23:11:14.010000"],["2024-07-25T23:11:15.010000"],["2024-07-25T23:11:16.010000"],["2024-07-25T23:11:17.010000"],["2024-07-25T23:11:18.010000"],["2024-07-25T23:11:19.010000"],["2024-07-25T23:11:20.010000"],["2024-07-25T23:11:21.010000"],["2024-07-25T23:11:22.010000"],["2024-07-25T23:11:23.010000"],["2024-07-25T23:11:24.010000"],["2024-07-25T23:11:25.010000"],["2024-07-25T23:11:26.010000"],["2024-07-25T23:11:27.010000"],["2024-07-25T23:11:28.010000"],["2024-07-25T23:11:29.010000"],["2024-07-25T23:11:30.010000"],["2024-07-25T23:11:31.010000"],["2024-07-25T23:11:32.010000"],["2024-07-25T23:11:33.010000"],["2024-07-25T23:11:34.010000"],["2024-07-25T23:11:35.010000"],["2024-07-25T23:11:36.010000"],["2024-07-25T23:11:37.010000"],["2024-07-25T23:11:38.010000"],["2024-07-25T23:11:39.010000"],["2024-07-25T23:11:40.010000"],["2024-07-25T23:11:41.010000"],["2024-07-25T23:11:42.010000"],["2024-07-25T23:11:43.010000"],["2024-07-25T23:11:44.010000"],["2024-07-25T23:11:45.010000"],["2024-07-25T23:11:46.010000"],["2024-07-25T23:11:47.010000"],["2024-07-25T23:11:48.010000"],["2024-07-25T23:11:49.010000"],["2024-07-25T23:11:50.010000"],["2024-07-25T23:11:51.010000"],["2024-07-25T23:11:52.010000"],["2024-07-25T23:11:53.010000"],["2024-07-25T23:11:54.010000"],["2024-07-25T23:11:55.010000"],["2024-07-25T23:11:56.010000"],["2024-07-25T23:11:57.010000"],["2024-07-25T23:11:58.010000"],["2024-07-25T23:11:59.010000"],["2024-07-25T23:12:00.010000"],["2024-07-25T23:12:01.010000"],["2024-07-25T23:12:02.010000"],["2024-07-25T23:12:03.010000"],["2024-07-25T23:12:04.010000"],["2024-07-25T23:12:05.010000"],["2024-07-25T23:12:06.010000"],["2024-07-25T23:12:07.010000"],["2024-07-25T23:12:08.010000"],["2024-07-25T23:12:09.010000"],["2024-07-25T23:12:10.010000"],["2024-07-25T23:12:11.010000"],["2024-07-25T23:12:12.010000"],["2024-07-25T23:12:13.010000"],["2024-07-25T23:12:14.010000"],["2024-07-25T23:12:15.010000"],["2024-07-25T23:12:16.010000"],["2024-07-25T23:12:17.010000"],["2024-07-25T23:12:18.010000"],["2024-07-25T23:12:19.010000"],["2024-07-25T23:12:20.010000"],["2024-07-25T23:12:21.010000"],["2024-07-25T23:12:22.010000"],["2024-07-25T23:12:23.010000"],["2024-07-25T23:12:24.010000"],["2024-07-25T23:12:25.010000"],["2024-07-25T23:12:26.010000"],["2024-07-25T23:12:27.010000"],["2024-07-25T23:12:28.010000"],["2024-07-25T23:12:29.010000"],["2024-07-25T23:12:30.010000"],["2024-07-25T23:12:31.010000"],["2024-07-25T23:12:32.010000"],["2024-07-25T23:12:33.010000"],["2024-07-25T23:12:34.010000"],["2024-07-25T23:12:35.010000"],["2024-07-25T23:12:36.010000"],["2024-07-25T23:12:37.010000"],["2024-07-25T23:12:38.010000"],["2024-07-25T23:12:39.010000"],["2024-07-25T23:12:40.010000"],["2024-07-25T23:12:41.010000"],["2024-07-25T23:12:42.010000"],["2024-07-25T23:12:43.010000"],["2024-07-25T23:12:44.010000"],["2024-07-25T23:12:45.010000"],["2024-07-25T23:12:46.010000"],["2024-07-25T23:12:47.010000"],["2024-07-25T23:12:48.010000"],["2024-07-25T23:12:49.010000"],["2024-07-25T23:12:50.010000"],["2024-07-25T23:12:51.010000"],["2024-07-25T23:12:52.010000"],["2024-07-25T23:12:53.010000"],["2024-07-25T23:12:54.010000"],["2024-07-25T23:12:55.010000"],["2024-07-25T23:12:56.010000"],["2024-07-25T23:12:57.010000"],["2024-07-25T23:12:58.010000"],["2024-07-25T23:12:59.010000"],["2024-07-25T23:13:00.010000"],["2024-07-25T23:13:01.010000"],["2024-07-25T23:13:02.010000"],["2024-07-25T23:13:03.010000"],["2024-07-25T23:13:04.010000"],["2024-07-25T23:13:05.010000"],["2024-07-25T23:13:06.010000"],["2024-07-25T23:13:07.010000"],["2024-07-25T23:13:08.010000"],["2024-07-25T23:13:09.010000"],["2024-07-25T23:13:10.010000"],["2024-07-25T23:13:11.010000"],["2024-07-25T23:13:12.010000"],["2024-07-25T23:13:13.010000"],["2024-07-25T23:13:14.010000"],["2024-07-25T23:13:15.010000"],["2024-07-25T23:13:16.010000"],["2024-07-25T23:13:17.010000"],["2024-07-25T23:13:18.010000"],["2024-07-25T23:13:19.010000"],["2024-07-25T23:13:20.010000"],["2024-07-25T23:13:21.010000"],["2024-07-25T23:13:22.010000"],["2024-07-25T23:13:23.010000"],["2024-07-25T23:13:24.010000"],["2024-07-25T23:13:25.010000"],["2024-07-25T23:13:26.010000"],["2024-07-25T23:13:27.010000"],["2024-07-25T23:13:28.010000"],["2024-07-25T23:13:29.010000"],["2024-07-25T23:13:30.010000"],["2024-07-25T23:13:31.010000"],["2024-07-25T23:13:32.010000"],["2024-07-25T23:13:33.010000"],["2024-07-25T23:13:34.010000"],["2024-07-25T23:13:35.010000"],["2024-07-25T23:13:36.010000"],["2024-07-25T23:13:37.010000"],["2024-07-25T23:13:38.010000"],["2024-07-25T23:13:39.010000"],["2024-07-25T23:13:40.010000"],["2024-07-25T23:13:41.010000"],["2024-07-25T23:13:42.010000"],["2024-07-25T23:13:43.010000"],["2024-07-25T23:13:44.010000"],["2024-07-25T23:13:45.010000"],["2024-07-25T23:13:46.010000"],["2024-07-25T23:13:47.010000"],["2024-07-25T23:13:48.010000"],["2024-07-25T23:13:49.010000"],["2024-07-25T23:13:50.010000"],["2024-07-25T23:13:51.010000"],["2024-07-25T23:13:52.010000"],["2024-07-25T23:13:53.010000"],["2024-07-25T23:13:54.010000"],["2024-07-25T23:13:55.010000"],["2024-07-25T23:13:56.010000"],["2024-07-25T23:13:57.010000"],["2024-07-25T23:13:58.010000"],["2024-07-25T23:13:59.010000"],["2024-07-25T23:14:00.010000"],["2024-07-25T23:14:01.010000"],["2024-07-25T23:14:02.010000"],["2024-07-25T23:14:03.010000"],["2024-07-25T23:14:04.010000"],["2024-07-25T23:14:05.010000"],["2024-07-25T23:14:06.010000"],["2024-07-25T23:14:07.010000"],["2024-07-25T23:14:08.010000"],["2024-07-25T23:14:09.010000"],["2024-07-25T23:14:10.010000"],["2024-07-25T23:14:11.010000"],["2024-07-25T23:14:12.010000"],["2024-07-25T23:14:13.010000"],["2024-07-25T23:14:14.010000"],["2024-07-25T23:14:15.010000"],["2024-07-25T23:14:16.010000"],["2024-07-25T23:14:17.010000"],["2024-07-25T23:14:18.010000"],["2024-07-25T23:14:19.010000"],["2024-07-25T23:14:20.010000"],["2024-07-25T23:14:21.010000"],["2024-07-25T23:14:22.010000"],["2024-07-25T23:14:23.010000"],["2024-07-25T23:14:24.010000"],["2024-07-25T23:14:25.010000"],["2024-07-25T23:14:26.010000"],["2024-07-25T23:14:27.010000"],["2024-07-25T23:14:28.010000"],["2024-07-25T23:14:29.010000"],["2024-07-25T23:14:30.010000"],["2024-07-25T23:14:31.010000"],["2024-07-25T23:14:32.010000"],["2024-07-25T23:14:33.010000"],["2024-07-25T23:14:34.010000"],["2024-07-25T23:14:35.010000"],["2024-07-25T23:14:36.010000"],["2024-07-25T23:14:37.010000"],["2024-07-25T23:14:38.010000"],["2024-07-25T23:14:39.010000"],["2024-07-25T23:14:40.010000"],["2024-07-25T23:14:41.010000"],["2024-07-25T23:14:42.010000"],["2024-07-25T23:14:43.010000"],["2024-07-25T23:14:44.010000"],["2024-07-25T23:14:45.010000"],["2024-07-25T23:14:46.010000"],["2024-07-25T23:14:47.010000"],["2024-07-25T23:14:48.010000"],["2024-07-25T23:14:49.010000"],["2024-07-25T23:14:50.010000"],["2024-07-25T23:14:51.010000"],["2024-07-25T23:14:52.010000"],["2024-07-25T23:14:53.010000"],["2024-07-25T23:14:54.010000"],["2024-07-25T23:14:55.010000"],["2024-07-25T23:14:56.010000"],["2024-07-25T23:14:57.010000"],["2024-07-25T23:14:58.010000"],["2024-07-25T23:14:59.010000"],["2024-07-25T23:15:00.010000"],["2024-07-25T23:15:01.010000"],["2024-07-25T23:15:02.010000"],["2024-07-25T23:15:03.010000"],["2024-07-25T23:15:04.010000"],["2024-07-25T23:15:05.010000"],["2024-07-25T23:15:06.010000"],["2024-07-25T23:15:07.010000"],["2024-07-25T23:15:08.010000"],["2024-07-25T23:15:09.010000"],["2024-07-25T23:15:10.010000"],["2024-07-25T23:15:11.010000"],["2024-07-25T23:15:12.010000"],["2024-07-25T23:15:13.010000"],["2024-07-25T23:15:14.010000"],["2024-07-25T23:15:15.010000"],["2024-07-25T23:15:16.010000"],["2024-07-25T23:15:17.010000"],["2024-07-25T23:15:18.010000"],["2024-07-25T23:15:19.010000"],["2024-07-25T23:15:20.010000"],["2024-07-25T23:15:21.010000"],["2024-07-25T23:15:22.010000"],["2024-07-25T23:15:23.010000"],["2024-07-25T23:15:24.010000"],["2024-07-25T23:15:25.010000"],["2024-07-25T23:15:26.010000"],["2024-07-25T23:15:27.010000"],["2024-07-25T23:15:28.010000"],["2024-07-25T23:15:29.010000"],["2024-07-25T23:15:30.010000"],["2024-07-25T23:15:31.010000"],["2024-07-25T23:15:32.010000"],["2024-07-25T23:15:33.010000"],["2024-07-25T23:15:34.010000"],["2024-07-25T23:15:35.010000"],["2024-07-25T23:15:36.010000"],["2024-07-25T23:15:37.010000"],["2024-07-25T23:15:38.010000"],["2024-07-25T23:15:39.010000"],["2024-07-25T23:15:40.010000"],["2024-07-25T23:15:41.010000"],["2024-07-25T23:15:42.010000"],["2024-07-25T23:15:43.010000"],["2024-07-25T23:15:44.010000"],["2024-07-25T23:15:45.010000"],["2024-07-25T23:15:46.010000"],["2024-07-25T23:15:47.010000"],["2024-07-25T23:15:48.010000"],["2024-07-25T23:15:49.010000"],["2024-07-25T23:15:50.010000"],["2024-07-25T23:15:51.010000"],["2024-07-25T23:15:52.010000"],["2024-07-25T23:15:53.010000"],["2024-07-25T23:15:54.010000"],["2024-07-25T23:15:55.010000"],["2024-07-25T23:15:56.010000"],["2024-07-25T23:15:57.010000"],["2024-07-25T23:15:58.010000"],["2024-07-25T23:15:59.010000"],["2024-07-25T23:16:00.010000"],["2024-07-25T23:16:01.010000"],["2024-07-25T23:16:02.010000"],["2024-07-25T23:16:03.010000"],["2024-07-25T23:16:04.010000"],["2024-07-25T23:16:05.010000"],["2024-07-25T23:16:06.010000"],["2024-07-25T23:16:07.010000"],["2024-07-25T23:16:08.010000"],["2024-07-25T23:16:09.010000"],["2024-07-25T23:16:10.010000"],["2024-07-25T23:16:11.010000"],["2024-07-25T23:16:12.010000"],["2024-07-25T23:16:13.010000"],["2024-07-25T23:16:14.010000"],["2024-07-25T23:16:15.010000"],["2024-07-25T23:16:16.010000"],["2024-07-25T23:16:17.010000"],["2024-07-25T23:16:18.010000"],["2024-07-25T23:16:19.010000"],["2024-07-25T23:16:20.010000"],["2024-07-25T23:16:21.010000"],["2024-07-25T23:16:22.010000"],["2024-07-25T23:16:23.010000"],["2024-07-25T23:16:24.010000"],["2024-07-25T23:16:25.010000"],["2024-07-25T23:16:26.010000"],["2024-07-25T23:16:27.010000"],["2024-07-25T23:16:28.010000"],["2024-07-25T23:16:29.010000"],["2024-07-25T23:16:30.010000"],["2024-07-25T23:16:31.010000"],["2024-07-25T23:16:32.010000"],["2024-07-25T23:16:33.010000"],["2024-07-25T23:16:34.010000"],["2024-07-25T23:16:35.010000"],["2024-07-25T23:16:36.010000"],["2024-07-25T23:16:37.010000"],["2024-07-25T23:16:38.010000"],["2024-07-25T23:16:39.010000"],["2024-07-25T23:16:40.010000"],["2024-07-25T23:16:41.010000"],["2024-07-25T23:16:42.010000"],["2024-07-25T23:16:43.010000"],["2024-07-25T23:16:44.010000"],["2024-07-25T23:16:45.010000"],["2024-07-25T23:16:46.010000"],["2024-07-25T23:16:47.010000"],["2024-07-25T23:16:48.010000"],["2024-07-25T23:16:49.010000"],["2024-07-25T23:16:50.010000"],["2024-07-25T23:16:51.010000"],["2024-07-25T23:16:52.010000"],["2024-07-25T23:16:53.010000"],["2024-07-25T23:16:54.010000"],["2024-07-25T23:16:55.010000"],["2024-07-25T23:16:56.010000"],["2024-07-25T23:16:57.010000"],["2024-07-25T23:16:58.010000"],["2024-07-25T23:16:59.010000"],["2024-07-25T23:17:00.010000"],["2024-07-25T23:17:01.010000"],["2024-07-25T23:17:02.010000"],["2024-07-25T23:17:03.010000"],["2024-07-25T23:17:04.010000"],["2024-07-25T23:17:05.010000"],["2024-07-25T23:17:06.010000"],["2024-07-25T23:17:07.010000"],["2024-07-25T23:17:08.010000"],["2024-07-25T23:17:09.010000"],["2024-07-25T23:17:10.010000"],["2024-07-25T23:17:11.010000"],["2024-07-25T23:17:12.010000"],["2024-07-25T23:17:13.010000"],["2024-07-25T23:17:14.010000"],["2024-07-25T23:17:15.010000"],["2024-07-25T23:17:16.010000"],["2024-07-25T23:17:17.010000"],["2024-07-25T23:17:18.010000"],["2024-07-25T23:17:19.010000"],["2024-07-25T23:17:20.010000"],["2024-07-25T23:17:21.010000"],["2024-07-25T23:17:22.010000"],["2024-07-25T23:17:23.010000"],["2024-07-25T23:17:24.010000"],["2024-07-25T23:17:25.010000"],["2024-07-25T23:17:26.010000"],["2024-07-25T23:17:27.010000"],["2024-07-25T23:17:28.010000"],["2024-07-25T23:17:29.010000"],["2024-07-25T23:17:30.010000"],["2024-07-25T23:17:31.010000"],["2024-07-25T23:17:32.010000"],["2024-07-25T23:17:33.010000"],["2024-07-25T23:17:34.010000"],["2024-07-25T23:17:35.010000"],["2024-07-25T23:17:36.010000"],["2024-07-25T23:17:37.010000"],["2024-07-25T23:17:38.010000"],["2024-07-25T23:17:39.010000"],["2024-07-25T23:17:40.010000"],["2024-07-25T23:17:41.010000"],["2024-07-25T23:17:42.010000"],["2024-07-25T23:17:43.010000"],["2024-07-25T23:17:44.010000"],["2024-07-25T23:17:45.010000"],["2024-07-25T23:17:46.010000"],["2024-07-25T23:17:47.010000"],["2024-07-25T23:17:48.010000"],["2024-07-25T23:17:49.010000"],["2024-07-25T23:17:50.010000"],["2024-07-25T23:17:51.010000"],["2024-07-25T23:17:52.010000"],["2024-07-25T23:17:53.010000"],["2024-07-25T23:17:54.010000"],["2024-07-25T23:17:55.010000"],["2024-07-25T23:17:56.010000"],["2024-07-25T23:17:57.010000"],["2024-07-25T23:17:58.010000"],["2024-07-25T23:17:59.010000"],["2024-07-25T23:18:00.010000"],["2024-07-25T23:18:01.010000"],["2024-07-25T23:18:02.010000"],["2024-07-25T23:18:03.010000"],["2024-07-25T23:18:04.010000"],["2024-07-25T23:18:05.010000"],["2024-07-25T23:18:06.010000"],["2024-07-25T23:18:07.010000"],["2024-07-25T23:18:08.010000"],["2024-07-25T23:18:09.010000"],["2024-07-25T23:18:10.010000"],["2024-07-25T23:18:11.010000"],["2024-07-25T23:18:12.010000"],["2024-07-25T23:18:13.010000"],["2024-07-25T23:18:14.010000"],["2024-07-25T23:18:15.010000"],["2024-07-25T23:18:16.010000"],["2024-07-25T23:18:17.010000"],["2024-07-25T23:18:18.010000"],["2024-07-25T23:18:19.010000"],["2024-07-25T23:18:20.010000"],["2024-07-25T23:18:21.010000"],["2024-07-25T23:18:22.010000"],["2024-07-25T23:18:23.010000"],["2024-07-25T23:18:24.010000"],["2024-07-25T23:18:25.010000"],["2024-07-25T23:18:26.010000"],["2024-07-25T23:18:27.010000"],["2024-07-25T23:18:28.010000"],["2024-07-25T23:18:29.010000"],["2024-07-25T23:18:30.010000"],["2024-07-25T23:18:31.010000"],["2024-07-25T23:18:32.010000"],["2024-07-25T23:18:33.010000"],["2024-07-25T23:18:34.010000"],["2024-07-25T23:18:35.010000"],["2024-07-25T23:18:36.010000"],["2024-07-25T23:18:37.010000"],["2024-07-25T23:18:38.010000"],["2024-07-25T23:18:39.010000"],["2024-07-25T23:18:40.010000"],["2024-07-25T23:18:41.010000"],["2024-07-25T23:18:42.010000"],["2024-07-25T23:18:43.010000"],["2024-07-25T23:18:44.010000"],["2024-07-25T23:18:45.010000"],["2024-07-25T23:18:46.010000"],["2024-07-25T23:18:47.010000"],["2024-07-25T23:18:48.010000"],["2024-07-25T23:18:49.010000"],["2024-07-25T23:18:50.010000"],["2024-07-25T23:18:51.010000"],["2024-07-25T23:18:52.010000"],["2024-07-25T23:18:53.010000"],["2024-07-25T23:18:54.010000"],["2024-07-25T23:18:55.010000"],["2024-07-25T23:18:56.010000"],["2024-07-25T23:18:57.010000"],["2024-07-25T23:18:58.010000"],["2024-07-25T23:18:59.010000"],["2024-07-25T23:19:00.010000"],["2024-07-25T23:19:01.010000"],["2024-07-25T23:19:02.010000"],["2024-07-25T23:19:03.010000"],["2024-07-25T23:19:04.010000"],["2024-07-25T23:19:05.010000"],["2024-07-25T23:19:06.010000"],["2024-07-25T23:19:07.010000"],["2024-07-25T23:19:08.010000"],["2024-07-25T23:19:09.010000"],["2024-07-25T23:19:10.010000"],["2024-07-25T23:19:11.010000"],["2024-07-25T23:19:12.010000"],["2024-07-25T23:19:13.010000"],["2024-07-25T23:19:14.010000"],["2024-07-25T23:19:15.010000"],["2024-07-25T23:19:16.010000"],["2024-07-25T23:19:17.010000"],["2024-07-25T23:19:18.010000"],["2024-07-25T23:19:19.010000"],["2024-07-25T23:19:20.010000"],["2024-07-25T23:19:21.010000"],["2024-07-25T23:19:22.010000"],["2024-07-25T23:19:23.010000"],["2024-07-25T23:19:24.010000"],["2024-07-25T23:19:25.010000"],["2024-07-25T23:19:26.010000"],["2024-07-25T23:19:27.010000"],["2024-07-25T23:19:28.010000"],["2024-07-25T23:19:29.010000"],["2024-07-25T23:19:30.010000"],["2024-07-25T23:19:31.010000"],["2024-07-25T23:19:32.010000"],["2024-07-25T23:19:33.010000"],["2024-07-25T23:19:34.010000"],["2024-07-25T23:19:35.010000"],["2024-07-25T23:19:36.010000"],["2024-07-25T23:19:37.010000"],["2024-07-25T23:19:38.010000"],["2024-07-25T23:19:39.010000"],["2024-07-25T23:19:40.010000"],["2024-07-25T23:19:41.010000"],["2024-07-25T23:19:42.010000"],["2024-07-25T23:19:43.010000"],["2024-07-25T23:19:44.010000"],["2024-07-25T23:19:45.010000"],["2024-07-25T23:19:46.010000"],["2024-07-25T23:19:47.010000"],["2024-07-25T23:19:48.010000"],["2024-07-25T23:19:49.010000"],["2024-07-25T23:19:50.010000"],["2024-07-25T23:19:51.010000"],["2024-07-25T23:19:52.010000"],["2024-07-25T23:19:53.010000"],["2024-07-25T23:19:54.010000"],["2024-07-25T23:19:55.010000"],["2024-07-25T23:19:56.010000"],["2024-07-25T23:19:57.010000"],["2024-07-25T23:19:58.010000"],["2024-07-25T23:19:59.010000"],["2024-07-25T23:20:00.010000"],["2024-07-25T23:20:01.010000"],["2024-07-25T23:20:02.010000"],["2024-07-25T23:20:03.010000"],["2024-07-25T23:20:04.010000"],["2024-07-25T23:20:05.010000"],["2024-07-25T23:20:06.010000"],["2024-07-25T23:20:07.010000"],["2024-07-25T23:20:08.010000"],["2024-07-25T23:20:09.010000"],["2024-07-25T23:20:10.010000"],["2024-07-25T23:20:11.010000"],["2024-07-25T23:20:12.010000"],["2024-07-25T23:20:13.010000"],["2024-07-25T23:20:14.010000"],["2024-07-25T23:20:15.010000"],["2024-07-25T23:20:16.010000"],["2024-07-25T23:20:17.010000"],["2024-07-25T23:20:18.010000"],["2024-07-25T23:20:19.010000"],["2024-07-25T23:20:20.010000"],["2024-07-25T23:20:21.010000"],["2024-07-25T23:20:22.010000"],["2024-07-25T23:20:23.010000"],["2024-07-25T23:20:24.010000"],["2024-07-25T23:20:25.010000"],["2024-07-25T23:20:26.010000"],["2024-07-25T23:20:27.010000"],["2024-07-25T23:20:28.010000"],["2024-07-25T23:20:29.010000"],["2024-07-25T23:20:30.010000"],["2024-07-25T23:20:31.010000"],["2024-07-25T23:20:32.010000"],["2024-07-25T23:20:33.010000"],["2024-07-25T23:20:34.010000"],["2024-07-25T23:20:35.010000"],["2024-07-25T23:20:36.010000"],["2024-07-25T23:20:37.010000"],["2024-07-25T23:20:38.010000"],["2024-07-25T23:20:39.010000"],["2024-07-25T23:20:40.010000"],["2024-07-25T23:20:41.010000"],["2024-07-25T23:20:42.010000"],["2024-07-25T23:20:43.010000"],["2024-07-25T23:20:44.010000"],["2024-07-25T23:20:45.010000"],["2024-07-25T23:20:46.010000"],["2024-07-25T23:20:47.010000"],["2024-07-25T23:20:48.010000"],["2024-07-25T23:20:49.010000"],["2024-07-25T23:20:50.010000"],["2024-07-25T23:20:51.010000"],["2024-07-25T23:20:52.010000"],["2024-07-25T23:20:53.010000"],["2024-07-25T23:20:54.010000"],["2024-07-25T23:20:55.010000"],["2024-07-25T23:20:56.010000"],["2024-07-25T23:20:57.010000"],["2024-07-25T23:20:58.010000"],["2024-07-25T23:20:59.010000"],["2024-07-25T23:21:00.010000"],["2024-07-25T23:21:01.010000"],["2024-07-25T23:21:02.010000"],["2024-07-25T23:21:03.010000"],["2024-07-25T23:21:04.010000"],["2024-07-25T23:21:05.010000"],["2024-07-25T23:21:06.010000"],["2024-07-25T23:21:07.010000"],["2024-07-25T23:21:08.010000"],["2024-07-25T23:21:09.010000"],["2024-07-25T23:21:10.010000"],["2024-07-25T23:21:11.010000"],["2024-07-25T23:21:12.010000"],["2024-07-25T23:21:13.010000"],["2024-07-25T23:21:14.010000"],["2024-07-25T23:21:15.010000"],["2024-07-25T23:21:16.010000"],["2024-07-25T23:21:17.010000"],["2024-07-25T23:21:18.010000"],["2024-07-25T23:21:19.010000"],["2024-07-25T23:21:20.010000"],["2024-07-25T23:21:21.010000"],["2024-07-25T23:21:22.010000"],["2024-07-25T23:21:23.010000"],["2024-07-25T23:21:24.010000"],["2024-07-25T23:21:25.010000"],["2024-07-25T23:21:26.010000"],["2024-07-25T23:21:27.010000"],["2024-07-25T23:21:28.010000"],["2024-07-25T23:21:29.010000"],["2024-07-25T23:21:30.010000"],["2024-07-25T23:21:31.010000"],["2024-07-25T23:21:32.010000"],["2024-07-25T23:21:33.010000"],["2024-07-25T23:21:34.010000"],["2024-07-25T23:21:35.010000"],["2024-07-25T23:21:36.010000"],["2024-07-25T23:21:37.010000"],["2024-07-25T23:21:38.010000"],["2024-07-25T23:21:39.010000"],["2024-07-25T23:21:40.010000"],["2024-07-25T23:21:41.010000"],["2024-07-25T23:21:42.010000"],["2024-07-25T23:21:43.010000"],["2024-07-25T23:21:44.010000"],["2024-07-25T23:21:45.010000"],["2024-07-25T23:21:46.010000"],["2024-07-25T23:21:47.010000"],["2024-07-25T23:21:48.010000"],["2024-07-25T23:21:49.010000"],["2024-07-25T23:21:50.010000"],["2024-07-25T23:21:51.010000"],["2024-07-25T23:21:52.010000"],["2024-07-25T23:21:53.010000"],["2024-07-25T23:21:54.010000"],["2024-07-25T23:21:55.010000"],["2024-07-25T23:21:56.010000"],["2024-07-25T23:21:57.010000"],["2024-07-25T23:21:58.010000"],["2024-07-25T23:21:59.010000"],["2024-07-25T23:22:00.010000"],["2024-07-25T23:22:01.010000"],["2024-07-25T23:22:02.010000"],["2024-07-25T23:22:03.010000"],["2024-07-25T23:22:04.010000"],["2024-07-25T23:22:05.010000"],["2024-07-25T23:22:06.010000"],["2024-07-25T23:22:07.010000"],["2024-07-25T23:22:08.010000"],["2024-07-25T23:22:09.010000"],["2024-07-25T23:22:10.010000"],["2024-07-25T23:22:11.010000"],["2024-07-25T23:22:12.010000"],["2024-07-25T23:22:13.010000"],["2024-07-25T23:22:14.010000"],["2024-07-25T23:22:15.010000"],["2024-07-25T23:22:16.010000"],["2024-07-25T23:22:17.010000"],["2024-07-25T23:22:18.010000"],["2024-07-25T23:22:19.010000"],["2024-07-25T23:22:20.010000"],["2024-07-25T23:22:21.010000"],["2024-07-25T23:22:22.010000"],["2024-07-25T23:22:23.010000"],["2024-07-25T23:22:24.010000"],["2024-07-25T23:22:25.010000"],["2024-07-25T23:22:26.010000"],["2024-07-25T23:22:27.010000"],["2024-07-25T23:22:28.010000"],["2024-07-25T23:22:29.010000"],["2024-07-25T23:22:30.010000"],["2024-07-25T23:22:31.010000"],["2024-07-25T23:22:32.010000"],["2024-07-25T23:22:33.010000"],["2024-07-25T23:22:34.010000"],["2024-07-25T23:22:35.010000"],["2024-07-25T23:22:36.010000"],["2024-07-25T23:22:37.010000"],["2024-07-25T23:22:38.010000"],["2024-07-25T23:22:39.010000"],["2024-07-25T23:22:40.010000"],["2024-07-25T23:22:41.010000"],["2024-07-25T23:22:42.010000"],["2024-07-25T23:22:43.010000"],["2024-07-25T23:22:44.010000"],["2024-07-25T23:22:45.010000"],["2024-07-25T23:22:46.010000"],["2024-07-25T23:22:47.010000"],["2024-07-25T23:22:48.010000"],["2024-07-25T23:22:49.010000"],["2024-07-25T23:22:50.010000"],["2024-07-25T23:22:51.010000"],["2024-07-25T23:22:52.010000"],["2024-07-25T23:22:53.010000"],["2024-07-25T23:22:54.010000"],["2024-07-25T23:22:55.010000"],["2024-07-25T23:22:56.010000"],["2024-07-25T23:22:57.010000"],["2024-07-25T23:22:58.010000"],["2024-07-25T23:22:59.010000"],["2024-07-25T23:23:00.010000"],["2024-07-25T23:23:01.010000"],["2024-07-25T23:23:02.010000"],["2024-07-25T23:23:03.010000"],["2024-07-25T23:23:04.010000"],["2024-07-25T23:23:05.010000"],["2024-07-25T23:23:06.010000"],["2024-07-25T23:23:07.010000"],["2024-07-25T23:23:08.010000"],["2024-07-25T23:23:09.010000"],["2024-07-25T23:23:10.010000"],["2024-07-25T23:23:11.010000"],["2024-07-25T23:23:12.010000"],["2024-07-25T23:23:13.010000"],["2024-07-25T23:23:14.010000"],["2024-07-25T23:23:15.010000"],["2024-07-25T23:23:16.010000"],["2024-07-25T23:23:17.010000"],["2024-07-25T23:23:18.010000"],["2024-07-25T23:23:19.010000"],["2024-07-25T23:23:20.010000"],["2024-07-25T23:23:21.010000"],["2024-07-25T23:23:22.010000"],["2024-07-25T23:23:23.010000"],["2024-07-25T23:23:24.010000"],["2024-07-25T23:23:25.010000"],["2024-07-25T23:23:26.010000"],["2024-07-25T23:23:27.010000"],["2024-07-25T23:23:28.010000"],["2024-07-25T23:23:29.010000"],["2024-07-25T23:23:30.010000"],["2024-07-25T23:23:31.010000"],["2024-07-25T23:23:32.010000"],["2024-07-25T23:23:33.010000"],["2024-07-25T23:23:34.010000"],["2024-07-25T23:23:35.010000"],["2024-07-25T23:23:36.010000"],["2024-07-25T23:23:37.010000"],["2024-07-25T23:23:38.010000"],["2024-07-25T23:23:39.010000"],["2024-07-25T23:23:40.010000"],["2024-07-25T23:23:41.010000"],["2024-07-25T23:23:42.010000"],["2024-07-25T23:23:43.010000"],["2024-07-25T23:23:44.010000"],["2024-07-25T23:23:45.010000"],["2024-07-25T23:23:46.010000"],["2024-07-25T23:23:47.010000"],["2024-07-25T23:23:48.010000"],["2024-07-25T23:23:49.010000"],["2024-07-25T23:23:50.010000"],["2024-07-25T23:23:51.010000"],["2024-07-25T23:23:52.010000"],["2024-07-25T23:23:53.010000"],["2024-07-25T23:23:54.010000"],["2024-07-25T23:23:55.010000"],["2024-07-25T23:23:56.010000"],["2024-07-25T23:23:57.010000"],["2024-07-25T23:23:58.010000"],["2024-07-25T23:23:59.010000"],["2024-07-25T23:24:00.010000"],["2024-07-25T23:24:01.010000"],["2024-07-25T23:24:02.010000"],["2024-07-25T23:24:03.010000"],["2024-07-25T23:24:04.010000"],["2024-07-25T23:24:05.010000"],["2024-07-25T23:24:06.010000"],["2024-07-25T23:24:07.010000"],["2024-07-25T23:24:08.010000"],["2024-07-25T23:24:09.010000"],["2024-07-25T23:24:10.010000"],["2024-07-25T23:24:11.010000"],["2024-07-25T23:24:12.010000"],["2024-07-25T23:24:13.010000"],["2024-07-25T23:24:14.010000"],["2024-07-25T23:24:15.010000"],["2024-07-25T23:24:16.010000"],["2024-07-25T23:24:17.010000"],["2024-07-25T23:24:18.010000"],["2024-07-25T23:24:19.010000"],["2024-07-25T23:24:20.010000"],["2024-07-25T23:24:21.010000"],["2024-07-25T23:24:22.010000"],["2024-07-25T23:24:23.010000"],["2024-07-25T23:24:24.010000"],["2024-07-25T23:24:25.010000"],["2024-07-25T23:24:26.010000"],["2024-07-25T23:24:27.010000"],["2024-07-25T23:24:28.010000"],["2024-07-25T23:24:29.010000"],["2024-07-25T23:24:30.010000"],["2024-07-25T23:24:31.010000"],["2024-07-25T23:24:32.010000"],["2024-07-25T23:24:33.010000"],["2024-07-25T23:24:34.010000"],["2024-07-25T23:24:35.010000"],["2024-07-25T23:24:36.010000"],["2024-07-25T23:24:37.010000"],["2024-07-25T23:24:38.010000"],["2024-07-25T23:24:39.010000"],["2024-07-25T23:24:40.010000"],["2024-07-25T23:24:41.010000"],["2024-07-25T23:24:42.010000"],["2024-07-25T23:24:43.010000"],["2024-07-25T23:24:44.010000"],["2024-07-25T23:24:45.010000"],["2024-07-25T23:24:46.010000"],["2024-07-25T23:24:47.010000"],["2024-07-25T23:24:48.010000"],["2024-07-25T23:24:49.010000"],["2024-07-25T23:24:50.010000"],["2024-07-25T23:24:51.010000"],["2024-07-25T23:24:52.010000"],["2024-07-25T23:24:53.010000"],["2024-07-25T23:24:54.010000"],["2024-07-25T23:24:55.010000"],["2024-07-25T23:24:56.010000"],["2024-07-25T23:24:57.010000"],["2024-07-25T23:24:58.010000"],["2024-07-25T23:24:59.010000"],["2024-07-25T23:25:00.010000"],["2024-07-25T23:25:01.010000"],["2024-07-25T23:25:02.010000"],["2024-07-25T23:25:03.010000"],["2024-07-25T23:25:04.010000"],["2024-07-25T23:25:05.010000"],["2024-07-25T23:25:06.010000"],["2024-07-25T23:25:07.010000"],["2024-07-25T23:25:08.010000"],["2024-07-25T23:25:09.010000"],["2024-07-25T23:25:10.010000"],["2024-07-25T23:25:11.010000"],["2024-07-25T23:25:12.010000"],["2024-07-25T23:25:13.010000"],["2024-07-25T23:25:14.010000"],["2024-07-25T23:25:15.010000"],["2024-07-25T23:25:16.010000"],["2024-07-25T23:25:17.010000"],["2024-07-25T23:25:18.010000"],["2024-07-25T23:25:19.010000"],["2024-07-25T23:25:20.010000"],["2024-07-25T23:25:21.010000"],["2024-07-25T23:25:22.010000"],["2024-07-25T23:25:23.010000"],["2024-07-25T23:25:24.010000"],["2024-07-25T23:25:25.010000"],["2024-07-25T23:25:26.010000"],["2024-07-25T23:25:27.010000"],["2024-07-25T23:25:28.010000"],["2024-07-25T23:25:29.010000"],["2024-07-25T23:25:30.010000"],["2024-07-25T23:25:31.010000"],["2024-07-25T23:25:32.010000"],["2024-07-25T23:25:33.010000"],["2024-07-25T23:25:34.010000"],["2024-07-25T23:25:35.010000"],["2024-07-25T23:25:36.010000"],["2024-07-25T23:25:37.010000"],["2024-07-25T23:25:38.010000"],["2024-07-25T23:25:39.010000"],["2024-07-25T23:25:40.010000"],["2024-07-25T23:25:41.010000"],["2024-07-25T23:25:42.010000"],["2024-07-25T23:25:43.010000"],["2024-07-25T23:25:44.010000"],["2024-07-25T23:25:45.010000"],["2024-07-25T23:25:46.010000"],["2024-07-25T23:25:47.010000"],["2024-07-25T23:25:48.010000"],["2024-07-25T23:25:49.010000"],["2024-07-25T23:25:50.010000"],["2024-07-25T23:25:51.010000"],["2024-07-25T23:25:52.010000"],["2024-07-25T23:25:53.010000"],["2024-07-25T23:25:54.010000"],["2024-07-25T23:25:55.010000"],["2024-07-25T23:25:56.010000"],["2024-07-25T23:25:57.010000"],["2024-07-25T23:25:58.010000"],["2024-07-25T23:25:59.010000"],["2024-07-25T23:26:00.010000"],["2024-07-25T23:26:01.010000"],["2024-07-25T23:26:02.010000"],["2024-07-25T23:26:03.010000"],["2024-07-25T23:26:04.010000"],["2024-07-25T23:26:05.010000"],["2024-07-25T23:26:06.010000"],["2024-07-25T23:26:07.010000"],["2024-07-25T23:26:08.010000"],["2024-07-25T23:26:09.010000"],["2024-07-25T23:26:10.010000"],["2024-07-25T23:26:11.010000"],["2024-07-25T23:26:12.010000"],["2024-07-25T23:26:13.010000"],["2024-07-25T23:26:14.010000"],["2024-07-25T23:26:15.010000"],["2024-07-25T23:26:16.010000"],["2024-07-25T23:26:17.010000"],["2024-07-25T23:26:18.010000"],["2024-07-25T23:26:19.010000"],["2024-07-25T23:26:20.010000"],["2024-07-25T23:26:21.010000"],["2024-07-25T23:26:22.010000"],["2024-07-25T23:26:23.010000"],["2024-07-25T23:26:24.010000"],["2024-07-25T23:26:25.010000"],["2024-07-25T23:26:26.010000"],["2024-07-25T23:26:27.010000"],["2024-07-25T23:26:28.010000"],["2024-07-25T23:26:29.010000"],["2024-07-25T23:26:30.010000"],["2024-07-25T23:26:31.010000"],["2024-07-25T23:26:32.010000"],["2024-07-25T23:26:33.010000"],["2024-07-25T23:26:34.010000"],["2024-07-25T23:26:35.010000"],["2024-07-25T23:26:36.010000"],["2024-07-25T23:26:37.010000"],["2024-07-25T23:26:38.010000"],["2024-07-25T23:26:39.010000"],["2024-07-25T23:26:40.010000"],["2024-07-25T23:26:41.010000"],["2024-07-25T23:26:42.010000"],["2024-07-25T23:26:43.010000"],["2024-07-25T23:26:44.010000"],["2024-07-25T23:26:45.010000"],["2024-07-25T23:26:46.010000"],["2024-07-25T23:26:47.010000"],["2024-07-25T23:26:48.010000"],["2024-07-25T23:26:49.010000"],["2024-07-25T23:26:50.010000"],["2024-07-25T23:26:51.010000"],["2024-07-25T23:26:52.010000"],["2024-07-25T23:26:53.010000"],["2024-07-25T23:26:54.010000"],["2024-07-25T23:26:55.010000"],["2024-07-25T23:26:56.010000"],["2024-07-25T23:26:57.010000"],["2024-07-25T23:26:58.010000"],["2024-07-25T23:26:59.010000"],["2024-07-25T23:27:00.010000"],["2024-07-25T23:27:01.010000"],["2024-07-25T23:27:02.010000"],["2024-07-25T23:27:03.010000"],["2024-07-25T23:27:04.010000"],["2024-07-25T23:27:05.010000"],["2024-07-25T23:27:06.010000"],["2024-07-25T23:27:07.010000"],["2024-07-25T23:27:08.010000"],["2024-07-25T23:27:09.010000"],["2024-07-25T23:27:10.010000"],["2024-07-25T23:27:11.010000"],["2024-07-25T23:27:12.010000"],["2024-07-25T23:27:13.010000"],["2024-07-25T23:27:14.010000"],["2024-07-25T23:27:15.010000"],["2024-07-25T23:27:16.010000"],["2024-07-25T23:27:17.010000"],["2024-07-25T23:27:18.010000"],["2024-07-25T23:27:19.010000"],["2024-07-25T23:27:20.010000"],["2024-07-25T23:27:21.010000"],["2024-07-25T23:27:22.010000"],["2024-07-25T23:27:23.010000"],["2024-07-25T23:27:24.010000"],["2024-07-25T23:27:25.010000"],["2024-07-25T23:27:26.010000"],["2024-07-25T23:27:27.010000"],["2024-07-25T23:27:28.010000"],["2024-07-25T23:27:29.010000"],["2024-07-25T23:27:30.010000"],["2024-07-25T23:27:31.010000"],["2024-07-25T23:27:32.010000"],["2024-07-25T23:27:33.010000"],["2024-07-25T23:27:34.010000"],["2024-07-25T23:27:35.010000"],["2024-07-25T23:27:36.010000"],["2024-07-25T23:27:37.010000"],["2024-07-25T23:27:38.010000"],["2024-07-25T23:27:39.010000"],["2024-07-25T23:27:40.010000"],["2024-07-25T23:27:41.010000"],["2024-07-25T23:27:42.010000"],["2024-07-25T23:27:43.010000"],["2024-07-25T23:27:44.010000"],["2024-07-25T23:27:45.010000"],["2024-07-25T23:27:46.010000"],["2024-07-25T23:27:47.010000"],["2024-07-25T23:27:48.010000"],["2024-07-25T23:27:49.010000"],["2024-07-25T23:27:50.010000"],["2024-07-25T23:27:51.010000"],["2024-07-25T23:27:52.010000"],["2024-07-25T23:27:53.010000"],["2024-07-25T23:27:54.010000"],["2024-07-25T23:27:55.010000"],["2024-07-25T23:27:56.010000"],["2024-07-25T23:27:57.010000"],["2024-07-25T23:27:58.010000"],["2024-07-25T23:27:59.010000"],["2024-07-25T23:28:00.010000"],["2024-07-25T23:28:01.010000"],["2024-07-25T23:28:02.010000"],["2024-07-25T23:28:03.010000"],["2024-07-25T23:28:04.010000"],["2024-07-25T23:28:05.010000"],["2024-07-25T23:28:06.010000"],["2024-07-25T23:28:07.010000"],["2024-07-25T23:28:08.010000"],["2024-07-25T23:28:09.010000"],["2024-07-25T23:28:10.010000"],["2024-07-25T23:28:11.010000"],["2024-07-25T23:28:12.010000"],["2024-07-25T23:28:13.010000"],["2024-07-25T23:28:14.010000"],["2024-07-25T23:28:15.010000"],["2024-07-25T23:28:16.010000"],["2024-07-25T23:28:17.010000"],["2024-07-25T23:28:18.010000"],["2024-07-25T23:28:19.010000"],["2024-07-25T23:28:20.010000"],["2024-07-25T23:28:21.010000"],["2024-07-25T23:28:22.010000"],["2024-07-25T23:28:23.010000"],["2024-07-25T23:28:24.010000"],["2024-07-25T23:28:25.010000"],["2024-07-25T23:28:26.010000"],["2024-07-25T23:28:27.010000"],["2024-07-25T23:28:28.010000"],["2024-07-25T23:28:29.010000"],["2024-07-25T23:28:30.010000"],["2024-07-25T23:28:31.010000"],["2024-07-25T23:28:32.010000"],["2024-07-25T23:28:33.010000"],["2024-07-25T23:28:34.010000"],["2024-07-25T23:28:35.010000"],["2024-07-25T23:28:36.010000"],["2024-07-25T23:28:37.010000"],["2024-07-25T23:28:38.010000"],["2024-07-25T23:28:39.010000"],["2024-07-25T23:28:40.010000"],["2024-07-25T23:28:41.010000"],["2024-07-25T23:28:42.010000"],["2024-07-25T23:28:43.010000"],["2024-07-25T23:28:44.010000"],["2024-07-25T23:28:45.010000"],["2024-07-25T23:28:46.010000"],["2024-07-25T23:28:47.010000"],["2024-07-25T23:28:48.010000"],["2024-07-25T23:28:49.010000"],["2024-07-25T23:28:50.010000"],["2024-07-25T23:28:51.010000"],["2024-07-25T23:28:52.010000"],["2024-07-25T23:28:53.010000"],["2024-07-25T23:28:54.010000"],["2024-07-25T23:28:55.010000"],["2024-07-25T23:28:56.010000"],["2024-07-25T23:28:57.010000"],["2024-07-25T23:28:58.010000"],["2024-07-25T23:28:59.010000"],["2024-07-25T23:29:00.010000"],["2024-07-25T23:29:01.010000"],["2024-07-25T23:29:02.010000"],["2024-07-25T23:29:03.010000"],["2024-07-25T23:29:04.010000"],["2024-07-25T23:29:05.010000"],["2024-07-25T23:29:06.010000"],["2024-07-25T23:29:07.010000"],["2024-07-25T23:29:08.010000"],["2024-07-25T23:29:09.010000"],["2024-07-25T23:29:10.010000"],["2024-07-25T23:29:11.010000"],["2024-07-25T23:29:12.010000"],["2024-07-25T23:29:13.010000"],["2024-07-25T23:29:14.010000"],["2024-07-25T23:29:15.010000"],["2024-07-25T23:29:16.010000"],["2024-07-25T23:29:17.010000"],["2024-07-25T23:29:18.010000"],["2024-07-25T23:29:19.010000"],["2024-07-25T23:29:20.010000"],["2024-07-25T23:29:21.010000"],["2024-07-25T23:29:22.010000"],["2024-07-25T23:29:23.010000"],["2024-07-25T23:29:24.010000"],["2024-07-25T23:29:25.010000"],["2024-07-25T23:29:26.010000"],["2024-07-25T23:29:27.010000"],["2024-07-25T23:29:28.010000"],["2024-07-25T23:29:29.010000"],["2024-07-25T23:29:30.010000"],["2024-07-25T23:29:31.010000"],["2024-07-25T23:29:32.010000"],["2024-07-25T23:29:33.010000"],["2024-07-25T23:29:34.010000"],["2024-07-25T23:29:35.010000"],["2024-07-25T23:29:36.010000"],["2024-07-25T23:29:37.010000"],["2024-07-25T23:29:38.010000"],["2024-07-25T23:29:39.010000"],["2024-07-25T23:29:40.010000"],["2024-07-25T23:29:41.010000"],["2024-07-25T23:29:42.010000"],["2024-07-25T23:29:43.010000"],["2024-07-25T23:29:44.010000"],["2024-07-25T23:29:45.010000"],["2024-07-25T23:29:46.010000"],["2024-07-25T23:29:47.010000"],["2024-07-25T23:29:48.010000"],["2024-07-25T23:29:49.010000"],["2024-07-25T23:29:50.010000"],["2024-07-25T23:29:51.010000"],["2024-07-25T23:29:52.010000"],["2024-07-25T23:29:53.010000"],["2024-07-25T23:29:54.010000"],["2024-07-25T23:29:55.010000"],["2024-07-25T23:29:56.010000"],["2024-07-25T23:29:57.010000"],["2024-07-25T23:29:58.010000"],["2024-07-25T23:29:59.010000"],["2024-07-25T23:30:00.010000"],["2024-07-25T23:30:01.010000"],["2024-07-25T23:30:02.010000"],["2024-07-25T23:30:03.010000"],["2024-07-25T23:30:04.010000"],["2024-07-25T23:30:05.010000"],["2024-07-25T23:30:06.010000"],["2024-07-25T23:30:07.010000"],["2024-07-25T23:30:08.010000"],["2024-07-25T23:30:09.010000"],["2024-07-25T23:30:10.010000"],["2024-07-25T23:30:11.010000"],["2024-07-25T23:30:12.010000"],["2024-07-25T23:30:13.010000"],["2024-07-25T23:30:14.010000"],["2024-07-25T23:30:15.010000"],["2024-07-25T23:30:16.010000"],["2024-07-25T23:30:17.010000"],["2024-07-25T23:30:18.010000"],["2024-07-25T23:30:19.010000"],["2024-07-25T23:30:20.010000"],["2024-07-25T23:30:21.010000"],["2024-07-25T23:30:22.010000"],["2024-07-25T23:30:23.010000"],["2024-07-25T23:30:24.010000"],["2024-07-25T23:30:25.010000"],["2024-07-25T23:30:26.010000"],["2024-07-25T23:30:27.010000"],["2024-07-25T23:30:28.010000"],["2024-07-25T23:30:29.010000"],["2024-07-25T23:30:30.010000"],["2024-07-25T23:30:31.010000"],["2024-07-25T23:30:32.010000"],["2024-07-25T23:30:33.010000"],["2024-07-25T23:30:34.010000"],["2024-07-25T23:30:35.010000"],["2024-07-25T23:30:36.010000"],["2024-07-25T23:30:37.010000"],["2024-07-25T23:30:38.010000"],["2024-07-25T23:30:39.010000"],["2024-07-25T23:30:40.010000"],["2024-07-25T23:30:41.010000"],["2024-07-25T23:30:42.010000"],["2024-07-25T23:30:43.010000"],["2024-07-25T23:30:44.010000"],["2024-07-25T23:30:45.010000"],["2024-07-25T23:30:46.010000"],["2024-07-25T23:30:47.010000"],["2024-07-25T23:30:48.010000"],["2024-07-25T23:30:49.010000"],["2024-07-25T23:30:50.010000"],["2024-07-25T23:30:51.010000"],["2024-07-25T23:30:52.010000"],["2024-07-25T23:30:53.010000"],["2024-07-25T23:30:54.010000"],["2024-07-25T23:30:55.010000"],["2024-07-25T23:30:56.010000"],["2024-07-25T23:30:57.010000"],["2024-07-25T23:30:58.010000"],["2024-07-25T23:30:59.010000"],["2024-07-25T23:31:00.010000"],["2024-07-25T23:31:01.010000"],["2024-07-25T23:31:02.010000"],["2024-07-25T23:31:03.010000"],["2024-07-25T23:31:04.010000"],["2024-07-25T23:31:05.010000"],["2024-07-25T23:31:06.010000"],["2024-07-25T23:31:07.010000"],["2024-07-25T23:31:08.010000"],["2024-07-25T23:31:09.010000"],["2024-07-25T23:31:10.010000"],["2024-07-25T23:31:11.010000"],["2024-07-25T23:31:12.010000"],["2024-07-25T23:31:13.010000"],["2024-07-25T23:31:14.010000"],["2024-07-25T23:31:15.010000"],["2024-07-25T23:31:16.010000"],["2024-07-25T23:31:17.010000"],["2024-07-25T23:31:18.010000"],["2024-07-25T23:31:19.010000"],["2024-07-25T23:31:20.010000"],["2024-07-25T23:31:21.010000"],["2024-07-25T23:31:22.010000"],["2024-07-25T23:31:23.010000"],["2024-07-25T23:31:24.010000"],["2024-07-25T23:31:25.010000"],["2024-07-25T23:31:26.010000"],["2024-07-25T23:31:27.010000"],["2024-07-25T23:31:28.010000"],["2024-07-25T23:31:29.010000"],["2024-07-25T23:31:30.010000"],["2024-07-25T23:31:31.010000"],["2024-07-25T23:31:32.010000"],["2024-07-25T23:31:33.010000"],["2024-07-25T23:31:34.010000"],["2024-07-25T23:31:35.010000"],["2024-07-25T23:31:36.010000"],["2024-07-25T23:31:37.010000"],["2024-07-25T23:31:38.010000"],["2024-07-25T23:31:39.010000"],["2024-07-25T23:31:40.010000"],["2024-07-25T23:31:41.010000"],["2024-07-25T23:31:42.010000"],["2024-07-25T23:31:43.010000"],["2024-07-25T23:31:44.010000"],["2024-07-25T23:31:45.010000"],["2024-07-25T23:31:46.010000"],["2024-07-25T23:31:47.010000"],["2024-07-25T23:31:48.010000"],["2024-07-25T23:31:49.010000"],["2024-07-25T23:31:50.010000"],["2024-07-25T23:31:51.010000"],["2024-07-25T23:31:52.010000"],["2024-07-25T23:31:53.010000"],["2024-07-25T23:31:54.010000"],["2024-07-25T23:31:55.010000"],["2024-07-25T23:31:56.010000"],["2024-07-25T23:31:57.010000"],["2024-07-25T23:31:58.010000"],["2024-07-25T23:31:59.010000"],["2024-07-25T23:32:00.010000"],["2024-07-25T23:32:01.010000"],["2024-07-25T23:32:02.010000"],["2024-07-25T23:32:03.010000"],["2024-07-25T23:32:04.010000"],["2024-07-25T23:32:05.010000"],["2024-07-25T23:32:06.010000"],["2024-07-25T23:32:07.010000"],["2024-07-25T23:32:08.010000"],["2024-07-25T23:32:09.010000"],["2024-07-25T23:32:10.010000"],["2024-07-25T23:32:11.010000"],["2024-07-25T23:32:12.010000"],["2024-07-25T23:32:13.010000"],["2024-07-25T23:32:14.010000"],["2024-07-25T23:32:15.010000"],["2024-07-25T23:32:16.010000"],["2024-07-25T23:32:17.010000"],["2024-07-25T23:32:18.010000"],["2024-07-25T23:32:19.010000"],["2024-07-25T23:32:20.010000"],["2024-07-25T23:32:21.010000"],["2024-07-25T23:32:22.010000"],["2024-07-25T23:32:23.010000"],["2024-07-25T23:32:24.010000"],["2024-07-25T23:32:25.010000"],["2024-07-25T23:32:26.010000"],["2024-07-25T23:32:27.010000"],["2024-07-25T23:32:28.010000"],["2024-07-25T23:32:29.010000"],["2024-07-25T23:32:30.010000"],["2024-07-25T23:32:31.010000"],["2024-07-25T23:32:32.010000"],["2024-07-25T23:32:33.010000"],["2024-07-25T23:32:34.010000"],["2024-07-25T23:32:35.010000"],["2024-07-25T23:32:36.010000"],["2024-07-25T23:32:37.010000"],["2024-07-25T23:32:38.010000"],["2024-07-25T23:32:39.010000"],["2024-07-25T23:32:40.010000"],["2024-07-25T23:32:41.010000"],["2024-07-25T23:32:42.010000"],["2024-07-25T23:32:43.010000"],["2024-07-25T23:32:44.010000"],["2024-07-25T23:32:45.010000"],["2024-07-25T23:32:46.010000"],["2024-07-25T23:32:47.010000"],["2024-07-25T23:32:48.010000"],["2024-07-25T23:32:49.010000"],["2024-07-25T23:32:50.010000"],["2024-07-25T23:32:51.010000"],["2024-07-25T23:32:52.010000"],["2024-07-25T23:32:53.010000"],["2024-07-25T23:32:54.010000"],["2024-07-25T23:32:55.010000"],["2024-07-25T23:32:56.010000"],["2024-07-25T23:32:57.010000"],["2024-07-25T23:32:58.010000"],["2024-07-25T23:32:59.010000"],["2024-07-25T23:33:00.010000"],["2024-07-25T23:33:01.010000"],["2024-07-25T23:33:02.010000"],["2024-07-25T23:33:03.010000"],["2024-07-25T23:33:04.010000"],["2024-07-25T23:33:05.010000"],["2024-07-25T23:33:06.010000"],["2024-07-25T23:33:07.010000"],["2024-07-25T23:33:08.010000"],["2024-07-25T23:33:09.010000"],["2024-07-25T23:33:10.010000"],["2024-07-25T23:33:11.010000"],["2024-07-25T23:33:12.010000"],["2024-07-25T23:33:13.010000"],["2024-07-25T23:33:14.010000"],["2024-07-25T23:33:15.010000"],["2024-07-25T23:33:16.010000"],["2024-07-25T23:33:17.010000"],["2024-07-25T23:33:18.010000"],["2024-07-25T23:33:19.010000"],["2024-07-25T23:33:20.010000"],["2024-07-25T23:33:21.010000"],["2024-07-25T23:33:22.010000"],["2024-07-25T23:33:23.010000"],["2024-07-25T23:33:24.010000"],["2024-07-25T23:33:25.010000"],["2024-07-25T23:33:26.010000"],["2024-07-25T23:33:27.010000"],["2024-07-25T23:33:28.010000"],["2024-07-25T23:33:29.010000"],["2024-07-25T23:33:30.010000"],["2024-07-25T23:33:31.010000"],["2024-07-25T23:33:32.010000"],["2024-07-25T23:33:33.010000"],["2024-07-25T23:33:34.010000"],["2024-07-25T23:33:35.010000"],["2024-07-25T23:33:36.010000"],["2024-07-25T23:33:37.010000"],["2024-07-25T23:33:38.010000"],["2024-07-25T23:33:39.010000"],["2024-07-25T23:33:40.010000"],["2024-07-25T23:33:41.010000"],["2024-07-25T23:33:42.010000"],["2024-07-25T23:33:43.010000"],["2024-07-25T23:33:44.010000"],["2024-07-25T23:33:45.010000"],["2024-07-25T23:33:46.010000"],["2024-07-25T23:33:47.010000"],["2024-07-25T23:33:48.010000"],["2024-07-25T23:33:49.010000"],["2024-07-25T23:33:50.010000"],["2024-07-25T23:33:51.010000"],["2024-07-25T23:33:52.010000"],["2024-07-25T23:33:53.010000"],["2024-07-25T23:33:54.010000"],["2024-07-25T23:33:55.010000"],["2024-07-25T23:33:56.010000"],["2024-07-25T23:33:57.010000"],["2024-07-25T23:33:58.010000"],["2024-07-25T23:33:59.010000"],["2024-07-25T23:34:00.010000"],["2024-07-25T23:34:01.010000"],["2024-07-25T23:34:02.010000"],["2024-07-25T23:34:03.010000"],["2024-07-25T23:34:04.010000"],["2024-07-25T23:34:05.010000"],["2024-07-25T23:34:06.010000"],["2024-07-25T23:34:07.010000"],["2024-07-25T23:34:08.010000"],["2024-07-25T23:34:09.010000"],["2024-07-25T23:34:10.010000"],["2024-07-25T23:34:11.010000"],["2024-07-25T23:34:12.010000"],["2024-07-25T23:34:13.010000"],["2024-07-25T23:34:14.010000"],["2024-07-25T23:34:15.010000"],["2024-07-25T23:34:16.010000"],["2024-07-25T23:34:17.010000"],["2024-07-25T23:34:18.010000"],["2024-07-25T23:34:19.010000"],["2024-07-25T23:34:20.010000"],["2024-07-25T23:34:21.010000"],["2024-07-25T23:34:22.010000"],["2024-07-25T23:34:23.010000"],["2024-07-25T23:34:24.010000"],["2024-07-25T23:34:25.010000"],["2024-07-25T23:34:26.010000"],["2024-07-25T23:34:27.010000"],["2024-07-25T23:34:28.010000"],["2024-07-25T23:34:29.010000"],["2024-07-25T23:34:30.010000"],["2024-07-25T23:34:31.010000"],["2024-07-25T23:34:32.010000"],["2024-07-25T23:34:33.010000"],["2024-07-25T23:34:34.010000"],["2024-07-25T23:34:35.010000"],["2024-07-25T23:34:36.010000"],["2024-07-25T23:34:37.010000"],["2024-07-25T23:34:38.010000"],["2024-07-25T23:34:39.010000"],["2024-07-25T23:34:40.010000"],["2024-07-25T23:34:41.010000"],["2024-07-25T23:34:42.010000"],["2024-07-25T23:34:43.010000"],["2024-07-25T23:34:44.010000"],["2024-07-25T23:34:45.010000"],["2024-07-25T23:34:46.010000"],["2024-07-25T23:34:47.010000"],["2024-07-25T23:34:48.010000"],["2024-07-25T23:34:49.010000"],["2024-07-25T23:34:50.010000"],["2024-07-25T23:34:51.010000"],["2024-07-25T23:34:52.010000"],["2024-07-25T23:34:53.010000"],["2024-07-25T23:34:54.010000"],["2024-07-25T23:34:55.010000"],["2024-07-25T23:34:56.010000"],["2024-07-25T23:34:57.010000"],["2024-07-25T23:34:58.010000"],["2024-07-25T23:34:59.010000"],["2024-07-25T23:35:00.010000"],["2024-07-25T23:35:01.010000"],["2024-07-25T23:35:02.010000"],["2024-07-25T23:35:03.010000"],["2024-07-25T23:35:04.010000"]],"hovertemplate":"color=7\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"7","line":{"color":"#B6E880","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"7","scene":"scene","showlegend":true,"x":[247.11548370681703,247.7163748019375,247.06649140501395,247.49191708210856,246.98363996995613,247.56674530915916,247.80377887329087,248.62993804225698,248.56829613726586,248.80209422204643,248.4071338190697,247.70248894486576,246.76083261100575,247.09940690500662,247.18570363661274,247.82202846603468,248.10399562167004,248.71594890858978,249.54501467151567,250.46058474341407,251.26660573016852,250.45268810819834,250.21587075153366,250.90544895129278,250.97115132166073,251.77592711523175,252.52190481405705,252.9800025871955,253.8110246877186,254.10169132007286,253.32790027558804,253.92858939804137,253.63319570943713,252.63905187696218,252.55986198363826,253.09834456024691,252.82139334548265,253.23664309550077,252.56823851261288,252.88990113837644,252.81990227662027,253.26273291977122,253.56638739584014,254.47215895354748,253.93395337695256,253.42573116486892,254.10128966346383,253.39916284987703,252.45656321244314,251.8795986021869,251.60054830368608,252.3945743497461,251.41637012315914,252.0877343020402,252.20950231468305,251.48940109368414,251.55781157361344,252.40356037206948,251.5856738742441,251.45637130038813,252.44475916679949,253.08428706554696,252.55735531402752,251.89386837091297,250.9139505061321,251.05141314212233,250.1478333286941,249.40941093536094,248.4483126476407,249.20192191610113,248.66651717899367,248.043474172242,249.0147325657308,248.16283242637292,249.03811021056026,249.15121135441586,249.93929278152063,249.50828340975568,248.99243372725323,248.5138003397733,247.9231759905815,248.25477676698938,248.12768418202177,248.67535827495158,248.72161581367254,249.47775681316853,249.01711330981925,248.27432554215193,247.29573979089037,247.5135177122429,247.5326584451832,247.1809155656956,247.02755830669776,247.7000006539747,248.0027398248203,247.01492949109524,246.61092205904424,245.764559969306,244.87728378921747,243.93054553726688,244.04593297978863,243.93757935753092,244.25987048540264,243.62332466617227,243.7829117346555,243.68252111552283,244.43372685601935,243.58742923522368,243.96174605330452,243.57046134583652,244.49583418527618,243.5106181022711,243.76477327384055,243.26371801365167,244.03291523549706,244.96060629794374,244.94733772659674,244.1034910529852,243.3245831253007,243.1535953776911,243.65789219131693,243.23585079424083,243.99663432268426,243.3664799099788,243.68365696631372,244.3423737557605,244.2793220798485,245.24236371414736,246.12804179731756,246.33141453843564,246.72879939805716,247.18444086890668,247.16679046908394,248.0411605304107,247.66807926027104,247.03816645080224,246.99775679595768,246.6811639610678,247.2216533292085,247.60873404843733,247.78760741557926,247.54149458464235,247.57371774083003,248.07808102387935,247.99196995934471,247.03576650703326,247.9373791120015,247.40400045970455,246.79373210389167,247.27493660105392,246.66508065257221,247.65748087549582,247.51009841123596,246.8336301180534,246.09689290169626,246.43816149700433,246.33708827244118,246.81501366989687,246.00385969271883,245.41589655680582,244.88053827546537,244.42170641897246,244.84376944275573,244.31527227535844,244.5969034722075,245.00631653843448,245.95385858230293,245.184651624877,246.0368196349591,246.42311314400285,246.617473479826,246.19686706271023,246.95144817512482,246.89588766964152,246.37534577399492,247.06558494269848,246.82404328836128,245.88568902853876,246.73235966498032,247.61223549442366,247.39820802072063,248.2259437837638,247.97110149404034,247.01306383684278,246.50890993094072,246.97379361465573,246.36807910446078,245.8070287401788,246.125980919227,245.50784412398934,244.98695738101378,245.98126564873382,246.4498692494817,245.85524122416973,245.53981337603182,245.43671149853617,246.31794881541282,247.26804410293698,247.9973754454404,248.72113885590807,249.28748325724155,249.1938103083521,249.8881948092021,250.27048596274108,249.76868141256273,249.8268683506176,250.56321359844878,251.51426740828902,250.83288544556126,249.84780380968004,250.18067838670686,249.73398563545197,250.0337659502402,249.67087996890768,249.36358770960942,249.04004812426865,248.29044908145443,247.6562746912241,247.41193879349157,246.90599742205814,246.8229282144457,247.31829994544387,246.68729302752763,247.21068136300892,247.94088884070516,247.12677099788561,246.71844679070637,247.42450616462156,248.24425292294472,247.42421849863604,246.6565888361074,245.68100497545674,246.25110468361527,245.65532086789608,245.30272601079196,245.085055350326,245.5673239226453,246.44281074684113,247.28831636998802,247.9947437667288,248.06853431044146,247.55106644611806,247.15999137843028,248.08040394773707,247.6928281444125,247.36214412609115,247.92518120678142,248.7004144466482,248.0202003265731,248.5598300602287,247.81309169577435,248.39277389924973,248.6655383296311,249.64238462876529,249.2294849222526,249.30017368728295,248.79249606048688,248.9440570208244,249.2624305007048,248.8328112573363,249.2043233611621,249.0782897649333,249.57227775920182,249.23421272588894,248.42953700618818,249.23781503504142,249.20661463448778,250.12398700183257,250.88120029959828,251.6403269432485,250.68077610293403,249.76878015464172,250.33968342794105,249.42465012241155,249.67033193446696,248.67168993968517,248.62432702910155,249.03111319197342,249.85849714186043,250.33891939604655,250.1538409232162,250.09923419868574,249.8048134711571,249.7080909931101,249.555388844572,249.15972475055605,249.45189552381635,248.91058613173664,248.15812979266047,247.53871063375846,248.18020755518228,247.30531823961064,248.23563708690926,247.50363361788914,246.88176348991692,246.72503808280453,246.6157884588465,247.19419228704646,246.71934325946495,247.2086193584837,247.99400602467358,248.28058211086318,247.90409214701504,248.36773811187595,247.50833558104932,246.82093432638794,246.04057798162103,245.89492460433394,244.93118828954175,245.13729424914345,244.15480913082138,243.726697309874,244.29968649428338,244.8991314158775,245.13024257682264,245.88173689693213,245.85466290591285,245.02490261942148,244.28275016974658,243.75773846590891,244.3414894915186,244.35212650708854,243.61839912179857,243.82134427223355,243.53780274745077,243.8161547924392,243.82839803490788,244.15053949551657,243.26263979123905,243.6195367705077,243.5392874381505,243.44705065432936,242.54738498991355,243.38494193647057,244.1947834296152,243.55833457689732,243.12527564866468,243.19589662598446,243.93929099151865,243.44931984087452,244.16927590686828,244.7715148869902,244.55818073498085,243.64229883998632,244.5038470090367,245.14533350337297,244.46808619285002,244.0342275989242,244.98553699208423,245.85761578707024,246.60184954758734,247.5652812118642,247.06256756186485,247.13173109153286,247.91080163652077,247.00930147664621,246.49012150755152,246.3892148253508,246.65343621047214,246.5531629100442,247.16996638756245,247.61073333630338,247.11511322902516,247.99917889060453,247.80995542369783,247.13960485020652,247.7725901142694,248.45805137464777,249.0878256703727,249.5708034709096,248.8489055633545,249.1456458591856,249.7049628519453,249.35795946931466,250.3314952668734,250.8467182307504,250.04519628640264,249.1028197701089,249.5207782476209,248.6124701257795,248.98040211666375,248.6941044544801,249.38640554388985,250.3415953903459,251.29883696418256,251.29980591591448,250.67819053540006,250.47050458192825,250.51159788202494,251.1849256916903,252.09066194621846,251.64028036827222,250.96788831427693,251.13756487565115,250.48667444800958,249.52933646040037,248.56277695903555,248.34622563282028,248.20749126095325,248.48642628500238,248.95723847858608,249.6352848992683,249.0057438276708,249.62986715883017,250.04604232031852,250.80069510638714,250.63392756832764,251.2956745903939,250.6620815671049,250.35608046362177,250.51805329928175,250.6362917870283,249.72163207735866,248.9349066973664,249.82691544527188,249.69142919545993,250.1351489862427,249.31155213993043,250.19171097502112,249.20881879143417,248.73462842497975,247.82853983296081,248.68435382051393,248.32161805359647,248.6099551129155,248.2138745347038,248.15372842364013,248.9168972861953,248.0578259387985,248.85586225055158,249.5795917576179,249.1790916826576,250.10023512272164,250.21977271698415,250.88853484764695,251.50997389666736,250.55799166765064,250.0777260675095,249.81069712294266,250.66356884967536,250.33011158462614,250.88350954977795,250.9536520121619,250.70254937000573,251.64946285728365,251.8433640715666,251.10281443130225,251.6305308379233,252.2329192380421,252.16035850532353,251.87536318274215,252.16473414748907,252.0721922609955,251.32119691511616,251.99657580954954,251.76547907060012,251.31622466351837,251.13768909033388,250.4462041775696,250.5696849268861,250.8616669815965,250.11656078370288,250.15464859688655,250.13476662058383,250.61083211190999,250.43781140865758,249.67305965023115,250.18758943816647,251.1502460874617,250.5852527860552,251.30081687821075,251.45406064484268,252.42709149094298,252.97044548252597,253.44337186031044,252.80840283539146,253.27408865187317,253.52610622020438,252.93149087857455,252.56024277256802,252.5658885142766,252.84330739919096,253.53902745014057,252.7599541642703,252.98851269157603,253.84743730630726,254.26850981777534,254.80279168393463,255.19574954919517,255.40126187447459,254.47832490643486,253.80763956019655,254.19372705556452,253.49055802961811,253.72647265112028,254.30434013018385,253.76297538075596,254.76107708364725,255.12797576887533,255.37184146791697,255.61046404205263,255.94622750300914,256.3355081565678,255.36421640589833,255.51862773951143,255.86354921618477,256.27007236517966,257.2057694531977,256.393394483719,256.4177973479964,256.59847910003737,256.57117107044905,257.1802563131787,257.27387378225103,257.4366992148571,256.4518029182218,255.5069192564115,255.82008522422984,255.30745581816882,256.05092104291543,255.25522875180468,254.57026928151026,255.56420683767647,254.76571230823174,254.28445402672514,254.79842343367636,255.06002229591832,255.9487212728709,255.84177993796766,256.08394099771976,255.29069789033383,255.18701543938369,256.07800510618836,255.63516274653375,254.7211626227945,255.65070819761604,254.9188416795805,254.26234167069197,254.02262404328212,254.55203446093947,253.87111065536737,254.73355343239382,255.02700744150206,255.35441871359944,254.3825427382253,254.87335025984794,254.25473949313164,254.96839006477967,254.64093465777114,254.55060382420197,255.18532293383032,255.5879143225029,256.1966352094896,255.23471636604518,254.82050628215075,254.3144171880558,255.16737727448344,255.17583976034075,254.68591805314645,255.45485406834632,254.99185773544014,254.708274373319,255.38468403555453,255.95946307247505,255.94299410562962,256.82717261463404,256.20872437627986,255.918519616127,256.3216805867851,256.2142678843811,256.7909716544673,257.37695951526985,256.98569324053824,256.75310406275094,255.84932172857225,256.24858234776184,256.2085384139791,255.5757875321433,255.4809959656559,255.1568087944761,255.91300312057137,255.7277803774923,256.5773691730574,257.28291084757075,257.7236437727697,258.03236850118265,257.26170603977516,256.62579951481894,257.55617289897054,257.9326621773653,257.5571786039509,257.8426856850274,258.6710219006054,258.09851577691734,258.21998368529603,258.14566871197894,258.2267974396236,258.54199471557513,257.80274652596563,257.12632291344926,257.1756702349521,257.5117629603483,257.62476746179163,257.1883029360324,257.22732429159805,256.31612462643534,256.7883942807093,257.5609436267987,258.5131643000059,259.21914558438584,260.1850258060731,260.96308385627344,261.6821649093181,262.0353948897682,261.8088310281746,261.37940480932593,260.83416975988075,260.55848047183827,259.6521673714742,260.1995716220699,259.62590187741444,259.45924358442426,258.79041984770447,259.338703842368,258.9220563690178,258.9411777621135,259.4065204169601,260.1243714517914,260.2289889957756,259.7119675106369,260.6041884571314,259.7559523410164,259.61845897650346,259.51379879331216,260.34976883465424,260.5088780983351,260.9529814934358,260.6323358118534,260.2580704083666,260.2513444102369,259.6260663452558,260.5346105527133,260.9126847749576,260.16509426757693,260.98406827636063,260.473637284711,260.7281187316403,259.98815078288317,259.3735809070058,258.67007762473077,259.23953837761655,260.18320040404797,260.71551562752575,260.1495387298055,261.01788347633556,261.37990922434255,260.67290864745155,260.46161671960726,260.2509332150221,261.06859064055607,261.3106020409614,262.1179593903944,261.131392988842,260.5349000277929,260.57458450924605,260.15714970836416,260.60833511548117,259.88584718015045,259.4928783075884,258.60835851263255,258.2237549130805,257.332613021601,257.1986062047072,257.5634653796442,257.2232738523744,256.71844136714935,255.77712327660993,255.39783757226542,254.9193272907287,255.00037642475218,255.60301310708746,256.4455909030512,256.5827322266996,255.74178365571424,256.3143527787179,256.90427474025637,257.0762631939724,257.9386819684878,257.27257434884086,257.1808563647792,256.4120594090782,257.1288625425659,256.48874613270164,255.52363092452288,255.6678110966459,254.72783820005134,254.9418466486968,254.45502963243052,254.88398635014892,255.70876303082332,255.96537889027968,256.95591558283195,257.57645187107846,257.36649382766336,256.41763158282265,256.6030796719715,257.34056321857497,257.55227239383385,257.25207285257056,257.8562248814851,258.2963253255002,259.2926381970756,258.5389507962391,257.99404024286196,257.08826315775514,256.7409974588081,256.45249920198694,256.83791528549045,257.2844534725882,256.4694983721711,257.045352531597,256.86582881212234,256.0543162948452,255.23421848472208,254.3555088811554,254.24935409007594,254.8465371034108,254.9407266806811,254.89812008105218,255.88424848672003,255.40836105961353,254.85166220646352,254.09246575878933,253.39812167268246,253.0928546511568,253.4616043153219,252.49360860185698,252.85789862368256,253.01737449411303,252.30730069428682,252.71505380701274,253.06752923689783,252.929615996778,253.79064532462507,254.4690269380808,253.793938416522,253.01236311439425,252.88364927424118,253.80618167622015,254.4698303467594,255.3047977811657,255.3220290672034,256.2081894716248,256.0543316099793,255.96976754628122,255.84178272262216,255.85076526273042,255.4702772111632,256.32531775487587,256.3889126428403,256.29487536940724,255.77437273412943,255.680469811894,255.14617465017363,255.323811638169,256.0215131561272,256.46083161002025,256.4941108818166,257.4453553124331,257.6523217558861,257.9504955220036,257.57107280986384,258.27411299105734,258.87561835953966,258.98862956045195,259.7550965738483,258.9242015504278,258.8582120691426,259.62234975304455,260.07848687143996,260.25400627963245,259.3428664011881,259.2872868706472,260.18942566774786,259.3327069063671,260.1983186742291,259.6286066356115,260.23082285840064,260.955993746873,260.99359002895653,261.1601646710187,260.35087848221883,260.69070503115654,260.36500076716766,260.0328089147806,260.3562247348018,260.02364322170615,259.03464953089133,259.9306475222111,260.3781251637265,260.964016164653,260.3184867594391,259.44933510851115,260.01663301559165,260.7612381349318,260.9185690819286,261.3690828802064,261.17802896816283,261.54253570735455,261.5613861666061,262.44519017543644,262.29720135219395,262.97218827484176,263.69704660214484,263.6215691748075,264.5059385597706,265.42983608460054,265.74089640937746,264.9132577725686,264.0364760039374,264.70651524234563,264.48315844358876,263.8601319300942,263.19830579217523,262.33001932827756,262.6284200134687,263.6118199364282,264.2722127614543,263.8117302460596,262.9759688084014,263.3531650863588,263.45250866934657,262.69084655400366,262.93416880536824,262.73002841696143,263.69017117936164,264.6419808110222,263.8938340838067,264.8237317753956,265.4005203926936,265.8374713519588,266.1130921705626,265.4498091279529,265.701418498531,266.452562879771,266.0586191024631,265.5444147409871,265.94639314292,265.6769843841903,266.21629127813503,266.8145294939168,266.79886144958436,267.19179016072303,267.2012973013334,267.5175422974862,266.65470151230693,266.89055426605046,266.1099241017364,266.3263246822171,265.85561162699014,265.2388931591995,266.11485911812633,267.0029476042837,266.188150879927,266.0369598395191,265.56953436601907,266.0444236472249,265.88136733835563,265.2128382064402,264.2164569199085,264.93913704156876,265.15099591528997,265.26441073417664,265.5062698102556,265.91124480217695,265.26084654871374,264.9993512085639,264.2908235853538,264.9760871324688,264.57967504300177,263.975546985399,263.1829794975929,262.2368774167262,262.1154414229095,261.2012207619846,261.68635685555637,261.05433273967355,260.631903687492,260.17315705586225,260.2310600662604,260.85965725500137,260.8561089686118,261.62052645301446,262.6085743671283,261.9295910145156,261.31282432656735,261.55876631336287,261.3576803910546,260.5140339350328,260.7599126882851,260.9736302951351,261.7916696672328,262.4395426707342,262.4924509273842,261.5986989964731,262.36006103409454,263.27244310313836,262.79846333898604,262.211230577901,261.3198155700229,261.8046264774166,261.80143870878965,262.7089549237862,261.7879654094577,261.66042347904295,261.3472323268652,262.1254283608869,261.2850443725474,260.57921142317355,260.29762062383816,260.3230010699481,261.0547300619073,260.71547681838274,260.99366413615644,261.3882855656557,260.785622832831,259.8423452824354,260.2759639136493,259.82635943824425,260.68172076297924,260.8113515577279,260.6494934139773,260.9747723727487,260.3590805158019,260.1289952173829,260.92583513911813,261.49147972557694,261.14579027472064,261.86355915945023,262.42304260935634,262.2414932944812,262.6505257477984,262.1622255491093,263.064865056891,262.38113834150136,261.54436541209,261.8293188721873,260.89226660784334,260.70701335463673,260.6471640574746,260.0966025562957,260.29499276541173,259.97298414912075,259.6644309232943,260.4232836193405,260.65359976608306,261.0255956929177,261.7632685746066,261.42452028533444,262.09117165161297,261.44709095172584,260.9704442555085,260.97819500463083,261.06249235989526,261.7548472122289,262.64596614055336,261.72280386602506,262.6925996602513,262.802351961378,262.3154627401382,262.92149844253436,262.6538618244231,263.00205567805097,263.46259362204,263.6514504016377,263.154040155001,262.57332881726325,262.6689693261869,262.32493198197335,261.48071159143,261.6256720656529,260.9100428405218,260.18053543008864,260.9483242817223,260.13603498600423,260.2345363320783,261.06267237011343,262.02202139794827,262.45366191118956,263.2792134312913,263.2142259096727,262.579443115741,263.0494857681915,262.26446306705475,261.5582770081237,262.2862834292464,261.5342441648245,262.1351993563585,261.41280320938677,261.82822955725715,261.03302088566124,260.6987612871453,260.16450474457815,260.9006592887454,260.7666323054582,261.23135995073244,260.40027583017945,260.96276824269444,260.45383449969813,260.3850769614801,261.30446199467406,260.6021664175205,260.57899700431153,260.13428216381,260.8710395428352,260.6764806206338,260.2088072486222,260.4782574190758,259.8896274906583,260.50835259910673,261.42191123683006,260.43553411448374,261.04784580599517,260.7778486912139,260.83561747381464,261.68878271756694,261.69639976043254,261.46013879589736,260.97373997047544,260.14159667212516,259.9464027946815,260.6341988798231,261.4196279067546,260.49249686440453,261.0628021839075,261.0393343507312,261.96817286126316,262.60866400785744,262.40460069524124,263.1565663833171,264.0681770564988,264.5141301685944,263.84257328277454,264.8177609331906,264.60419019591063,264.15812525199726,264.61789760226384,264.54159503011033,265.402541925665,264.7966558695771,265.4075254346244,265.2425317033194,265.11301403166726,265.01672788895667,264.155445874203,263.34454406797886,263.3642337238416,264.1155459638685,264.7120075975545,265.5616764384322,265.5476654046215,266.2285297228955,265.5804648906924,265.5745650259778,264.95663014473394,265.72392346616834,266.475121979136,266.7949112900533,266.9817774752155,266.8911186205223,266.9901416692883,266.38232383085415,266.37546532647684,266.91169202979654,265.9529010299593,265.0257288105786,265.15074617415667,265.03848151955754,264.3116476666182,264.03016837034374,263.26220245845616,263.44879544805735,264.3650127197616,264.81201678700745,265.5533021460287,265.0813229139894,264.47854728251696,264.973006980028,265.05752111179754,265.30804193997756,264.39624986052513,263.83825487457216,263.1324643166736,262.7467744778842,263.6594103272073,263.1742430604063,263.6389247351326,262.9785794503987,262.383936249651,261.7594141359441,260.8839190485887,260.2541746739298,260.0592825235799,259.1848071566783,258.23223780980334,258.1476956461556,258.4051032466814,258.8556420565583,259.81881455658004,258.94052931433544,259.3570604911074,259.0963250361383,259.0969653604552,259.89992476813495,260.80475857434794,260.8971860008314,260.98964631790295,261.06260212045163,261.05162455979735,261.8510457542725,262.4702527327463,262.5489271963015,261.9285203926265,261.83299665059894,261.3362416694872,261.70338424295187,262.6497417213395,261.9254755312577,261.4873489923775,262.45665812073275,262.061729603447,262.0385720063932,262.0599984531291,262.7163411010988,263.570165832527,263.34686923306435,263.8628357225098,264.54832488670945,264.33888274850324,265.2422986724414,265.4984362074174,265.3724498958327,266.2464051079005,266.65038652997464,266.45079226000234,265.7703840932809,265.11872472800314,265.6001798049547,265.9107895307243,266.7109090886079,265.99614322464913,265.4728693263605,265.41118244547397,266.0721383802593,265.0745013859123,264.5080694267526,264.09374523861334,263.6019730377011,263.6746100438759,263.52586067840457,263.6209742720239,263.6142708272673,263.26315253740177,263.4225561716594,263.5617561293766,262.9268439770676,262.4214684376493,263.3462588451803,263.1458475328982,262.8707448625937,263.25047505972907,263.0924035022035,262.3776187780313,262.7333059194498,263.2314012874849,263.37832500692457,263.9115723608993,263.7915473394096,262.9102500528097,263.43626526510343,262.5138434479013,263.2507268306799,263.4008689522743,263.70022670924664,264.08237361488864,264.36828855983913,264.84242942975834,265.79183706920594,265.296320523601,265.1909361332655,264.21521350974217,264.4087857073173,263.7571667707525,264.01890606991947,264.07936184853315,263.1495478581637,263.54657826945186,262.6904972968623,262.13969582365826,261.31975968554616,260.41374448826537,260.0903429244645,260.01798365311697,259.0850371811539,259.32227051397786,259.54132181731984,259.382273780182,259.06896698335186,259.7783054364845,258.8090325500816,259.1109106238,259.3669606107287,258.7632925687358,259.71686894632876,258.8620451162569,259.70266236318275,259.26356242923066,258.62798725860193,259.1311748800799,258.14999205991626,258.1342174652964,257.6628588135354,257.9690154506825,257.16855030460283,257.5239197057672,258.2077350076288,258.01735681155697,257.9931242810562,258.6506767948158,257.7210841476917,257.28216840233654,256.3354225042276,256.12804591609165,256.1817513788119,255.8699233531952,256.83507069572806,257.34728600783274,256.8203723812476,256.66544667165726,257.44088539108634,256.4665599251166,255.53968539461493,255.4523574640043,254.6722762733698,255.5700313881971,255.05357755860314,255.52223045006394,256.4566791378893,257.4442820060067,257.5612091063522,257.19220027094707,257.2871111249551,257.7338979966007,257.9829396037385,257.8478846857324,257.41129216365516,257.27866190392524,256.4029753189534,257.237271765247,257.291379197035,256.8026564307511,256.2947535724379,255.98827164433897,256.53944311337546,255.74190848972648,254.92493914440274,253.92616019630805,253.43236150592566,254.01171701587737,253.29634468164295,253.68095118319616,253.99501042393968,254.0973309604451,254.977181377355,254.61730391718447,253.78782297391444,254.3325229678303,255.25812050048262,255.28087929124013,254.99769514985383,255.06128894072026,255.64280207455158,254.8128387941979,255.62724359845743,256.4752454557456,257.217596671544,256.31509263440967,257.1417040657252,256.6309976382181,256.9550621025264,256.058405816555,256.73283610120416,256.6249427688308,255.66327918181196,256.3431727201678,255.9881010367535,256.4373763278127,256.12879169220105,256.35546141769737,255.66565947141498,256.48752461280674,257.3054487234913,257.63061486324295,258.13948393287137,257.8547462625429,258.3630509702489,257.40606193896383,257.7114110714756,257.83518998418003,257.85423361090943,258.6903823497705,258.9855106258765,258.23376730130985,258.734799740836,257.8131090416573,258.79711659345776,257.924584266264,258.44388906518,258.66601261822507,258.8359658755362,259.435349738691,258.53158942237496,258.0471656261943,258.5773897054605,257.81973485508934,256.99392719054595,257.8446517251432,257.23370808782056,257.6292140795849,258.60342111391947,258.67586305877194,258.50499410694465,258.24726379383355,259.089210615959,258.99360425863415,258.34553104871884,257.8920755656436,257.40683652460575,257.497354330495,257.6900620739907,256.80378237878904,257.25944592710584,257.23341889027506,257.5094015165232,258.4961660085246,258.47960704984143,258.7511258237064,259.38095737295225,259.17657935991883,258.9960744990967,258.58390537369996,259.5622248495929,259.9581117713824,260.8773872698657,261.02983221644536,260.86698811501265,260.0498506920412,261.0428684428334,260.5576321971603,261.0818191417493,260.3136792355217,259.569157585036,260.3598638647236,260.0861122915521,259.13491810299456,258.1816540407017,259.1468469630927,259.54328616242856,259.1516011003405,259.05097829317674,259.13352407561615,258.2685175356455,258.41996378917247,259.133758359123,258.3533472116105,257.84261415852234,257.9913883735426,258.4067511721514,257.97394839907065,257.0014162850566,257.83665324002504,257.7127823252231,257.70554945617914,256.91406934754923,256.50392088247463,255.98037765128538,256.91177200805396,256.512685012538,256.4110862100497,257.17040077550337,256.6984210056253,257.54702641349286,258.33514938596636,257.49475946230814,257.92424289276823,257.6426388467662,257.2942523774691,256.79880997538567,256.51820136932656,257.1716229952872,257.610300661996,257.56994733354077,257.7167966370471,256.76551552303135,256.3220586311072,256.9916587532498,257.40424499940127,258.0697528128512,257.8546447586268,257.3608682160266,257.11219207104295,257.61541222035885,258.42956145107746,257.5640297313221,258.48395217582583,258.6319606238976,259.2310898141004,260.19073097081855,259.9137058532797,260.2216741782613,260.7491088202223,261.04450021917,261.1210986231454,261.7184870899655,262.284305467736,261.90609770826995,261.1120420861989,260.25845327274874,260.0670644454658,260.89742605527863,260.41242161998525,260.9807829451747,261.14543914515525,260.67518148524687,260.6052553700283,260.79991915728897,260.26813339442015,260.89312705770135,260.9166288333945,261.2178821968846,262.1334679797292,262.99435284081846,262.31064136652276,262.546347476542,263.4784822128713,263.499591472093,263.123425393831,263.21022607479244,263.1690368456766,263.78660864569247,263.2186478259973,262.4272406739183,262.8896593870595,263.82742937188596,263.39538287976757,263.7361389626749,264.0845340806991,263.127569923643,262.161462740507,261.381706496235,262.1821949793957,262.79997718706727,263.75287513714284,263.5628264504485,263.26154879899696,262.9289037180133,263.10889787459746,262.4300317275338,261.9335281034,260.9419587268494,261.7281966456212,261.7225677696988,261.3775954870507,261.6220480147749,260.8469485300593,261.4006683328189,261.15673867752776,260.54322803067043,260.7866914323531,261.4697014922276,260.5933545483276,261.0459817475639,260.9274726365693,261.13362549385056,260.1528164651245,259.3887550593354,259.48484515491873,259.030650225468,259.6016394174658,260.39653088198975,260.94940405432135,260.2153268828988,260.7808601912111,261.5411148928106,261.8213094235398,261.6325981435366,260.66797469370067,261.1001065336168,260.4688356244005,259.5185879091732,259.4745138012804,258.9439894990064,258.78686953522265,259.76158594572917,260.1675542201847,259.2693414040841,258.8676864076406,259.7144158370793,259.45547055033967,259.1943584247492,259.1143608135171,258.8411069251597,258.9691522726789,259.0180321056396,258.14566355291754,257.168306984473,257.4947451115586,256.8769043092616,256.95522719062865,257.36305951094255,258.0444765188731,258.6180341136642,258.5975026679225,259.09815601678565,259.3276735972613,260.1724923243746,260.07844966836274,260.0866047986783,260.83483824692667,259.8695913278498,260.8188285897486,261.3940054248087,260.5103877475485,261.4862294658087,261.3800269206986,260.7408349108882,259.90291647752747,260.2188467034139,259.897495070938,260.372414866928,260.38604859728366,260.4720805156976,260.32211278611794,260.09520951099694,259.1173888524063,258.7090652990155,258.3215321446769,257.82851904211566,257.4197961781174,258.2638412863016,259.1808659257367,259.75778051046655,259.4095428879373,259.1233846116811,259.1530153681524,259.6750824782066,259.4311844673939,258.5105459759943,257.55885921325535,257.71020618313923,258.3209890113212,257.857490173541,258.4508528006263,257.81530467560515,258.6793277915567,259.0498810792342,258.30458774231374,257.66977287689224,256.6719761993736,256.3615326578729,256.13462999556214,255.8238977245055,255.44927471829578,255.40317363664508,255.94021031726152,255.31814209697768,256.1431670570746,256.1874151881784,256.96969186514616,256.3971325568855,255.47073632432148,255.90666076214984,255.79205836215988,256.20705684041604,257.07356485538185,256.2960926955566,255.90674658026546,254.90967733087018,255.60650217765942,255.16896810149774,255.15967310080305,255.41993771865964,254.9668363626115,254.460447228048,254.0845654513687,254.11858733836561,254.97145861480385,254.06443505501375,254.77176966005936,253.807927866932,253.41945012984797,253.4394795796834,253.3201341717504,253.0283080013469,253.49238015944138,252.58968674344942,253.21737402817234,253.89232157636434,253.9914909293875,254.4619156369008,254.81347492197528,254.0252771805972,253.55696277832612,253.44086408475414,252.60886553535238,252.56651879800484,253.15118849324062,253.4793727044016,254.08681969251484,253.33472332870588,253.9288104912266,253.950575243216,254.71212797798216,254.1197925931774,253.46926702419296,252.63369899988174,251.6652002609335,252.45266022952273,253.05185627238825,253.30336081655696,252.4536134977825,252.969291692134,252.7065780465491,253.5630382783711,253.7328388406895,254.55715041374788,254.7207037168555,254.40662424406037,255.22817049361765,255.18594600167125,254.3445083568804,255.22786865616217,254.98623165255412,254.82859048247337,255.81885852012783,256.29749918775633,256.95890809455886,257.60468712309375,258.6014485214837,258.3086227928288,259.21569980075583,258.9393432694487,259.4261664291844,259.89094775216654,259.6983264265582,259.25033284863457,259.96804544283077,259.48558837082237,258.6398230823688,259.41508670151234,258.68820939864963,259.0333083518781,258.42980217561126,258.4077575285919,258.72280490538105,258.62090035527945,258.9955929843709,258.4521428155713,259.1645673927851,259.7047787797637,259.47939917771146,259.7363241557032,259.2957003037445,259.2424452970736,259.4206306147389,259.43335879035294,260.18176488392055,260.9476804211736,260.38985739974305,260.0706971110776,260.53907304722816,259.75615167431533,260.16914526419714,260.34457167610526,260.8827248434536,261.42319602379575,261.5808820100501,261.3319608932361,260.84568960312754,260.1748332339339,260.26735362317413,261.1014931644313,261.143588793464,261.09593611350283,261.13343226956204,261.82359599368647,261.1493315487169,260.79710129322484,261.6186104058288,260.9112290861085,261.1063250619918,261.2264004452154,262.15704419696704,262.04161315085366,261.8397682933137,262.37505161296576,261.48232926102355,261.737658330705,262.59906095825136,262.04065778665245,263.00324033387005,263.36752532888204,263.0242172139697,263.62782426923513,264.4253770685755,265.4060745188035,264.5257812961936,265.0716638728045,264.33883266244084,263.91224964056164,264.15470203664154,265.0853951931931,264.3557072249241,263.52187598124146,264.37459272751585,263.5623899730854,263.9489667438902,264.4818563051522,263.7154165864922,263.25725602870807,263.05861800396815,262.2817573463544,261.5510743074119,262.5057530887425,261.6589299659245,261.79867041902617,261.56625167792663,261.94586173212156,261.2406050199643,261.4868865623139,260.5432002847083,260.61368419695646,260.7857508598827,260.67961672181264,260.0426476779394,259.24731771228835,258.35363497259095,258.04927639942616,258.64662578096613,258.93832289706916,259.4741342891939,259.5101355025545,259.34499102365226,258.9234808781184,258.1548262103461,257.5514431865886,257.10743650468066,257.08755825506523,257.3410867387429,256.8621849003248,256.66921808570623,256.16362364729866,256.4553019842133,255.9959594355896,256.82929099490866,256.59451391967013,255.77451995946467,256.03861131472513,256.13757082400844,255.38290856592357,256.0228990856558,256.4819137933664,255.77293487638235,255.51679738843814,254.7593579334207,254.0970327281393,253.30285065434873,252.88828633073717,253.51608893088996,254.14498422620818,253.69743314245716,253.63444643793628,252.92712697666138,252.07701663626358,251.868261158932,252.25040922733024,252.48474095249549,253.47947774548084,252.7284083040431,252.17311564879492,251.89771609241143,252.84543262049556,253.26453486923128,253.99572187755257,254.1857972694561,254.1687927506864,255.00027453899384,255.86532854568213,254.99210893316194,255.83058424200863,255.152692057658,254.26867444813251,255.10598225705326,254.45302105788141,255.4284416907467,254.54263501241803,255.419665471185,255.12873388594016,254.73409477993846,255.65206281328574,256.3864358710125,255.56524970009923,256.46982260001823,255.51035529375076,255.8631906514056,256.8401629785076,256.1891660937108,256.6446230178699,256.7498536654748,255.90625844849274,256.1365856966004,255.82482305262238,256.57780424226075,255.99357916088775,255.00894004199654,254.95293010491878,254.01114999316633,253.95153936045244,253.5257823788561,254.46720322640613,254.52145061595365,254.4672263576649,253.82122684363276,254.5449303528294,254.30457523930818,254.17783436505124,253.59604425588623,253.1417352790013,253.8008646783419,254.79201977094635,255.48751839343458,255.4636631733738,256.0187351615168,256.7324784230441,257.62283372785896,258.13586292183027,258.6162708681077,257.84073057817295,256.9811745053157,256.8682185159996,256.33631410682574,256.9138510650955,256.96409449120983,256.1563423019834,256.08722297055647,255.94673575321212,256.0138317211531,256.55650604935363,257.35542515618727,257.6393583258614,257.2143316785805,256.68858571583405,255.97471735067666,255.55961174424738,255.20844150148332,255.64349909406155,255.65426758723333,255.92441439209506,255.5444018007256,254.80046537332237,254.53761302866042,253.68220781022683,254.3351362850517,254.54372109565884,253.85729838488623,254.00166050670668,253.81096003949642,253.49625346204266,252.9969094088301,252.84010663023219,253.64338192669675,254.05790475429967,254.2089488566853,254.22567615378648,253.53116105590016,254.28315749531612,254.22648573387414,254.7293929331936,254.92181833460927,255.30566972168162,254.95758595503867,253.9817616501823,254.21237622899935,254.0041244290769,253.87848911015317,252.97801453666762,253.5305930180475,252.7798780547455,253.540710572619,254.40019236085936,253.69257362466305,252.72590163676068,252.11150855384767,252.90655406657606,253.50502681732178,254.49668576894328,253.6080087888986,252.71035759104416,253.06266049388796,253.34823800902814,252.37535039894283,252.01338416710496,252.5601417091675,252.75818411214277,253.2991441609338,253.70328153064474,252.9519626442343,253.26934082014486,253.3676107674837,253.52128640795127,253.47275162208825,254.23608365654945,253.71817770740017,253.1758190547116,252.4681356451474,251.60403109295294,251.54144473560154,250.5997948050499,250.36681029992178,251.0464529050514,251.28315125126392,251.061046323739,250.45892780460417,251.45528761995956,252.23655404057354,252.75920759607106,253.0008298237808,252.6177070243284,252.26931452658027,253.07130991341546,253.9420815827325,254.81354399677366,254.11735409824178,253.12369985552505,253.33115960704163,253.7241376475431,252.7838377445005,252.8889204529114,253.18010486057028,252.21034222841263,252.56550726806745,253.55346090113744,252.65140898153186,252.44050834188238,251.7115971869789,251.14412662014365,251.82721097115427,251.75959997763857,251.30156794330105,251.3015977954492,250.9923331621103,251.85323092294857,251.09781530220062,251.63631298718974,251.51316338730976,252.29780264059082,252.9155502007343,253.73615327849984,253.8708978034556,254.02380993263796,254.75785555085167,253.79333875468,254.23019685037434,254.9947292325087,255.09936590632424,255.64225544175133,256.17222739057615,255.80026066908613,255.0284236613661,254.17494548205286,253.59611773490906,252.68949545314535,252.6483166697435,252.6081076185219,252.27247762912884,252.8937938506715,253.24445975432172,253.97643987927586,254.91406464856118,255.52320157410577,254.6468128664419,253.88075039023533,254.20382850337774,253.27461393270642,253.17094672471285,252.35482764663175,252.3107623765245,251.3974853050895,252.25439312122762,252.7659687954001,252.42030253866687,252.3669403907843,253.16154570458457,253.93557166913524,253.20785747747868,253.56192604685202,253.82940627727658,253.84594152122736,254.753495529294,254.2006871951744,254.42048210278153,254.25336137926206,253.3143609361723,252.52421947289258,252.95327584678307,253.3817836767994,254.09527061553672,254.21850810851902,254.8854861552827,255.27555974014103,254.31523252278566,253.69596867868677,253.35830596042797,252.80786172486842,252.8046185504645,253.16845405194908,253.09381671296433,254.0359609015286,254.74060272891074,255.6272124038078,254.95824749628082,255.012319507543,254.0801343540661,253.09024530742317,253.39387736842036,252.4503945815377,251.72089877305552,252.26259414851665,253.06069526588544,253.6422554925084,254.26748104998842,254.67628049710765,253.9560882966034,253.77233497379348,254.76255500037223,255.32468592515215,255.80127854505554,254.940428417176,255.33808697666973,254.5470769018866,255.4483088622801,254.96973786363378,255.78666612273082,256.49168360745534,255.84834634047002,255.3734002117999,256.1056102383882,255.96306532807648,256.753220195882,256.17325941938907,256.04188592592254,255.5019536013715,255.16537891048938,255.1470480998978,255.71330672502518,256.2882709004916,256.91527251014486,257.7461304455064,258.467052354943,258.16076559061185,258.2678401218727,257.40570907620713,257.5657311072573,257.6280636936426,257.578376384452,258.57791780354455,258.6182438521646,258.79135910840705,258.35782284801826,257.41751556890085,256.98660375969484,256.1563385389745,255.4561628913507,256.03250106750056,255.89278426626697,255.2624628180638,254.94084209902212,254.5308499992825,254.3217923520133,253.38500136323273,252.76080645620823,252.6036710459739,251.86194363748655,251.8195946160704,252.79203390143812,251.9877379462123,251.34468466090038,250.8786497055553,250.58565079560503,249.86747388076037,248.91161804040894,249.89909527031705,249.7448088368401,249.29439358366653,249.20737324748188,249.0763466018252,250.05064554559067,249.737900682725,249.7972127920948,250.34784455457702,250.80049563664943,251.3056785822846,250.39175690803677,249.94699872191995,250.92604388762265,251.63193245511502,250.96604065131396,250.9487685165368,250.8857158846222,250.15458406880498,250.81509139109403,251.72996050072834,251.2887786491774,250.3061308497563,250.05416243197396,249.3888305928558,249.80534204049036,249.37796126073226,249.42836191598326,248.8802471975796,249.405040695332,248.76652189856395,249.36886757751927,250.10998537763953,249.42212739912793,249.97936478676274,250.25589139945805,249.6361209154129,248.8199311788194,248.59255514573306,248.74549051746726,248.69988688640296,248.2773749930784,249.26800741255283,250.16246936423704,250.75726907374337,250.2258671130985,250.44243397843093,250.42086878046393,249.86383564583957,250.44513733591884,250.75177226169035,250.5170952505432,249.88328576413915,249.80939249880612,249.52846339764073,250.49640777846798,250.2122910451144,250.73992370814085,250.69933867733926,251.4124732594937,251.9883395205252,251.0016029844992,250.7080980297178,250.32698586629704,249.9301925478503,249.97090141801164,250.56422870932147,251.508488049265,251.03126992145553,250.61270733783022,250.8656379529275,251.60645656799898,251.13657272607088,250.29409838886932,249.56833901070058,250.25164380855858,249.34468416916206,248.63877660036087,249.37360153254122,249.38929523015395,249.58141511958092,249.82613465655595,250.20346233434975,251.04094918677583,251.13173615885898,250.96037439024076,250.97737657371908,251.26900886604562,250.81185410916805,250.22400290565565,249.39239413896576,249.16096207825467,248.9670436559245,248.9445941518061,248.14912091428414,247.97248169546947,248.92510387441143,249.59802002692595,248.62586652906612,249.26351660955697,249.59845578949898,250.3153899628669,249.81013829261065,249.56304947240278,249.66526000062004,249.30150933004916,249.06965892063454,248.16612409986556,248.10869893012568,247.3839813536033,247.41552712535486,247.61302346922457,247.10274956049398,247.3076235721819,247.1555786007084,247.0670615970157,247.0166195477359,247.01180448476225,246.51414416637272,246.87205237336457,246.17106902878731,245.41783652827144,245.69788871752098,245.81575476704165,246.73008110979572,247.57460032729432,248.35915177501738,248.1633850359358,248.67675877083093,247.98725822055712,248.28799717500806,248.20883738715202,248.37653020676225,249.24412467563525,249.52686794754118,248.72568657482043,248.39386923238635,248.36169441137463,247.8026065635495,247.85396380489692,247.60681987786666,247.96542670298368,247.98548181261867,248.41905383439735,248.60857392242178,248.95668831607327,249.90061961999163,249.11460905056447,248.85516186617315,249.8516872851178,249.7444906695746,249.26156481076032,249.38682051049545,248.65725318249315,247.76394153479487,247.256266602315,246.9083245000802,247.44536842871457,246.86823465162888,246.5515168728307,246.65482178516686,246.36022977996618,246.42165644932538,246.40317669231445,245.9053767407313,245.06156445946544,245.31758847134188,245.36456811567768,245.6730601741001,246.62027689209208,247.09890036424622,247.66984997689724,247.85349795036018,248.2236140430905,248.91801476152614,248.2889216975309,247.95403789402917,246.97771714022383,246.4935365128331,245.81062276894227,245.4825933612883,245.1105696633458,245.77342032687739,245.94289297424257,246.21510754851624,246.38108488125727,246.44342244649306,247.10112715512514,246.89805667009205,246.07316445745528,246.30480983667076,246.3048045304604,246.74114879732952,246.31974403839558,246.73350696545094,246.7687269533053,246.29106940608472,245.48450373997912,244.58906206442043,245.50210643559694,245.97781394422054,245.76243408815935,245.4258308657445,244.82291671587154,244.02867065323517,244.16801782185212,243.56514396332204,243.57166375219822,244.02713968837634,244.3752569067292,244.1274684984237,243.4683283045888,243.76428529573604,243.05856807297096,242.9717570496723,243.42235938925296,242.9228857513517,242.31648477585986,242.87645642878488,243.25391225283965,244.03410403477028,243.93720463244244,242.98258155910298,242.53635780373588,241.75888948142529,241.8464245465584,242.76702342182398,242.88786445884034,242.45281726727262,242.63130180584267,242.91502720769495,243.51056432677433,242.89547759434208,242.87797982012853,243.1521108862944,243.6877722935751,243.517541131936,242.78298816410825,242.54440849879757,241.5528793167323,242.38086998835206,242.99499451601878,242.2582482462749,241.5279423184693,240.97676815884188,241.24517924664542,240.25941795762628,239.92645914340392,239.96403192402795,239.255345210433,239.77769072633237,239.29624954238534,239.90730255423114,240.710937759839,241.61956135556102,241.57599995238706,240.8503499715589,240.40611076680943,239.5629135714844,238.8540906785056,239.80064379423857,239.11631224490702,238.20385333057493,238.15789988124743,238.8411367177032,239.43876384105533,240.1444281032309,240.60691232373938,240.5846404978074,240.33027593465522,240.5579260084778,240.95980161055923,241.4242467628792,240.91937187267467,241.43765582004562,241.77902312856168,241.7968384749256,242.3813646105118,242.46489608334377,243.28947037411854,243.16560217086226,243.30755290901288,242.8247389877215,242.58914257353172,242.97055228054523,242.34765390492976,243.29889975115657,244.01024824986234,243.25946516683325,243.5063195680268,243.89005468366668,244.5870540398173,245.0873835827224,245.0477298949845,245.36547503527254,245.94467690680176,245.28180557023734,245.1634195423685,244.30049099307507,244.0301729296334,244.84987976308912,244.99449160089716,245.93023384688422,246.46597027406096,246.3088514432311,245.87503241794184,246.61218766262755,247.18946450715885,246.9441515887156,246.50694051664323,246.04719106899574,245.08892556279898,244.21107126912102,244.69525899924338,243.72554820310324,243.63526955572888,244.47301276493818,244.46112695988268,244.50063257524744,244.0602700728923,244.68995508691296,244.41610315302387,245.35392954433337,244.59733394533396,245.2015171055682,245.48077797424048,245.29317262768745,246.12362976325676,246.123724126257,246.91992555418983,245.97507546609268,245.62425740109757,245.94158113654703,245.63817695574835,245.32734015537426,244.95207188185304,244.98079097177833,245.82382898917422,246.31059743603691,246.18433552561328,245.52032377477735,245.80875767255202,245.00821931799874,244.58194462908432,245.08319363137707,245.00681871874258,245.50976907927543,246.05409009428695,246.9316446618177,246.52360150264576,245.83451848151162,246.17115369718522,246.6570193655789,246.09526491723955,246.52160473773256,246.7991704675369,247.36527019552886,246.62552396627143,245.77928468957543,245.89439124520868,246.54687719745561,246.23328441521153,245.87518027052283,244.92661871761084,244.8912354754284,245.8301184955053,245.70477525750175,245.37768928334117,245.84619884891436,246.59232257446274,246.54588614869863,245.64941852772608,244.82266779057682,244.76459061494097,244.96639700233936,244.6850777734071,244.31057346705347,244.39507179055363,244.32047098129988,244.28691311646253,245.1438994826749,244.39938027923927,244.56537937559187,244.1877139559947,244.04138090182096,244.47510016243905,243.90087775560096,244.01111394912004,244.89909112267196,245.22694429708645,244.48183310264722,244.32388547388837,244.9545074882917,245.64813198056072,245.7224437505938,246.16531151207164,245.77883412968367,244.88855666993186,245.05658848164603,244.98996363580227,244.2434529326856,245.03498454764485,245.77678924566135,245.63590601133183,246.10531063424423,245.16247890191153,245.36013087444007,245.7148310788907,246.1059867166914,247.04390926240012,246.75838528899476,246.56039971858263,246.45762741519138,246.41738342307508,245.4808864640072,245.9835216710344,246.86117193242535,246.46271993592381,246.1235054829158,246.32308721076697,245.3942980398424,246.29315728321671,245.51054727612063,245.91228994866833,246.11233486421406,245.82261733105406,245.99376382492483,245.0523515935056,244.3628828707151,245.06304539367557,244.08835094235837,243.49226683098823,243.4310935297981,244.19028401793912,243.33605401823297,244.05715474206954,244.22028506640345,244.48788464674726,244.07856634631753,243.99953589495271,244.246097760275,245.00454096822068,245.2243583924137,245.60169439949095,245.80171100934967,245.62647256534547,244.7565024397336,244.461239783559,244.82250756537542,244.69392782868817,244.73638213099912,243.8278967565857,244.68321254849434,244.8682804503478,245.6201133262366,246.33362384699285,247.3293793075718,247.7421495509334,247.86584447789937,247.30153619265184,246.71199581352994,247.48699142364785,247.3084806902334,246.90444842074066,246.76855798764154,246.99011095101014,246.40328133059666,246.1353243784979,245.54765010811388,245.39106850652024,245.37334326980636,245.13733305688947,245.83810134232044,246.8216458274983,246.10252039507031,246.96436874661595,246.91574943251908,247.23942168429494,247.67224874068052,247.0231258990243,247.40505838068202,247.827184506692,248.05635981308296,247.21719616139308,246.43950635334477,247.2781023667194,247.08993207197636,246.2612379747443,246.21472537890077,247.00428273761645,247.03881002403796,247.34757693717256,247.24775516893715,247.3757457798347,247.5088514778763,246.63482624292374,246.1473603323102,246.8844848824665,246.89037605840713,247.08253039512783,247.48836638312787,247.68262388091534,248.43456590548158,249.12068978510797,248.4303600951098,248.17060091299936,248.2584457998164,247.30030897865072,246.8003115146421,247.3777863876894,248.32977089611813,249.08456362737343,249.4095621793531,249.8115984625183,249.54029992269352,249.62660952331498,249.12078286102042,248.9897314487025,248.56368841137737,248.17613621568307,247.24748748447746,246.5045442627743,246.7676214124076,247.38185624405742,247.99159824475646,247.7955454834737,248.2852287068963,248.84175230236724,247.8986132685095,247.6215649964288,246.92777723958716,247.12683174433187,246.40823740279302,247.31724224751815,247.75853441515937,247.74405418755487,248.7073504012078,248.27364898798987,248.69223845750093,248.00347727071494,248.1618624906987,247.97503152815625,248.68278205720708,249.31956400396302,248.93618846032768,249.64975359942764,249.07175987772644,249.0534359999001,249.71640951698646,249.14176570018753,248.54997406248003,247.81860578386113,247.54263655701652,247.52684015175328,247.85245067998767,247.09664736595005,247.27958131348714,246.70084221521392,246.1967765497975,246.44900700310245,247.3545197332278,246.45172645011917,246.83272218564525,246.40424815937877,247.03744420595467,246.1400814349763,245.87817084044218,246.46827559545636,246.98392066499218,246.6651947768405,247.1228234358132,247.50364787038416,246.51533079287037,245.99568730546162,246.71309297112748,245.8132070149295,245.00040812883526,245.08895644871518,244.0918453587219,244.8206002758816,243.97653559828177,244.96042856108397,245.7771368296817,245.5928826094605,245.20882086502388,246.008088929113,245.14307635091245,244.44371254602447,243.5031993133016,244.1017796387896,244.23169638263062,245.1659214696847,244.3650395628065,243.83961639087647,244.3500788374804,244.72379203839228,244.55190637800843,244.04118314897642,243.168961183168,243.5889085093513,243.0511595485732,243.98144201282412,244.6986962291412,244.89368345588446,244.30103757418692,244.32222225423902,244.134418993257,244.04157957807183,243.47295641619712,242.77175263874233,243.07804639218375,242.86729858675972,243.0943840635009,243.65061635524035,243.21107731666416,244.0855465363711,244.82258921302855,245.27411793312058,245.06062674801797,245.2600075379014,245.13528613792732,245.79656504048035,245.65654879575595,245.91766531998292,246.31782109569758,246.77952009392902,247.07017132360488,246.88651239592582,247.8465601168573,248.73059226665646,249.26955735124648,249.95008413726464,249.03913677856326,249.05131297465414,248.5318760969676,248.03719472093508,247.82703819312155,247.95894753281027,248.12746821856126,248.22980369022116,248.3455939698033,248.844818004407,249.06581098679453,248.1358961071819,247.71704551996663,247.61589475162327,247.96350658359006,248.78168734023347,248.6596892271191,249.243224340491,249.0604427298531,248.32509855786338,248.06991716939956,248.15051101101562,248.06703252438456,248.63304122071713,248.66865045716986,248.75199277931824,249.57433541724458,250.5078529380262,251.36273233499378,251.0632883575745,251.62823244417086,250.7226480427198,250.2724790321663,249.50362933008,249.0323729775846,248.46799749415368,248.9161015721038,249.45790990116075,249.53585542133078,249.90100877778605,249.0645104162395,249.26047925278544,249.59604257438332,248.869131478481,248.8620422971435,249.0706198690459,249.811316750478,250.69810824422166,250.03168368246406,249.4034982584417,250.04343836428598,250.23030670545995,249.36598529713228,249.50671834405512,249.9004799737595,249.03896791907027,248.7611284623854,249.07474948698655,248.71904644416645,248.290152520407,248.50855182111263,247.693037614692,247.98911140160635,247.76123214606196,248.29041000595316,247.65829702699557,247.53550538327545,248.42179829254746,247.96248296275735,247.3888077395968,248.26144898682833,248.99699478922412,249.63442529691383,249.63086599344388,249.09802457597107,248.512757956516,248.37582045886666,248.16405748110265,249.07273526443169,249.97001741547137,250.55218383437023,249.63163321232423,248.82552382955328,247.8710415759124,248.0436589489691,247.27977344579995,247.11691084410995,246.74851588299498,246.37407080316916,246.44497668696567,247.12380579300225,246.3150973599404,246.13414427731186,246.4308364884928,246.33910065423697,245.3580390168354,245.5059701325372,245.72915685921907,244.92466188548133,245.02073111804202,244.7967484695837,244.34339047875255,244.3546894271858,244.649756945204,244.0135822352022,243.8792210505344,244.01981748268008,244.84962574439123,245.59615071490407,245.34918813966215,245.78148001572117,245.41458561457694,245.36083630938083,245.21601356379688,244.57980595342815,245.4555494072847,245.3849361911416,244.75855806749314,243.97435461590067,243.71292326785624,242.80719528114423,242.10111698089167,241.11509690340608,240.58495431626216,240.330585566815,240.92409265507013,241.9125825013034,241.43538734922186,242.24198447540402,242.55721196904778,243.5030018221587,244.31161611061543,243.98526676697657,244.18599451240152,243.8910383488983,243.82410695962608,244.72356194118038,245.34928994532675,245.95301856007427,245.48026996478438,246.3049797671847,245.68993520224467,245.32125580310822,245.53329230239615,244.74311788054183,244.4316277350299,244.57954953657463,243.81007453473285,244.3511310601607,243.62678684201092,242.95047876425087,243.65167823340744,243.91645329399034,244.25743796722963,243.88826312497258,242.95130710676312,243.88537468621507,243.23394854785874,243.2114670877345,243.85356793319806,243.8424026868306,243.54625362483785,243.96973607549444,243.84625607263297,243.64809940801933,243.36819742294028,243.88515800563619,243.50695079285651,244.18197094695643,245.00278848176822,245.66772425407544,246.411119827535,246.4683881998062,246.68456624727696,245.93133844155818,245.3484397768043,245.2693564039655,245.6636454667896,245.46692280843854,245.25790436333045,245.8450128408149,245.34560920018703,244.44497517729178,244.88217734079808,244.86336559755728,245.1176853091456,245.64809238212183,245.15665702568367,244.8080409290269,244.23655790416524,244.9562989640981,245.4276247411035,245.74290211033076,246.73473439132795,247.59615731379017,248.46962066786364,247.64758294075727,246.90735882986337,247.6544032394886,247.48750222614035,246.68783324118704,246.81173498090357,247.1171723427251,246.7061157329008,247.62132978998125,248.1000152574852,248.14204261032864,247.78569397190586,247.83459744229913,247.98203797265887,248.43453755090013,249.03641437459737,249.86681572720408,249.19691752037033,249.40245487820357,250.3175701298751,250.01459774840623,249.96931099006906,249.38246505940333,249.81721339933574,249.90117215365171,250.56913640536368,249.58250472787768,248.750607192982,248.42875640792772,247.50403097411618,247.2650047610514,247.5481134527363,247.74096857570112,248.67861930374056,248.44840378314257,247.8516917815432,247.63786168117076,248.39792987098917,247.77514875214547,248.5951925367117,248.80358126200736,248.7892945157364,248.43663780670613,248.16071312176064,247.21002256684005,246.26857575867325,246.6619334993884,247.55274911178276,246.9012002791278,247.11600003717467,246.47384412540123,246.49007142568007,245.6375144617632,246.4061046242714,245.83904690202326,245.40311897918582,246.01169704599306,245.96973177511245,245.3771701529622,244.83661065623164,243.86277760798112,244.00737058836967,244.12277270806953,243.9598428872414,244.54428687738255,243.86289498163387,244.72024310054258,245.1338957529515,246.02724524075165,245.68944823741913,245.05529219144955,245.41145469760522,246.06154472799972,246.74341704230756,246.64938610745594,246.31377058615908,245.8011416667141,245.3598599266261,245.96005204273388,245.31280956184492,244.98199562262744,245.28558845911175,246.25866548949853,245.3355275192298,246.1420713630505,245.62180120591074,245.1645784652792,245.31699257111177,244.61874574795365,244.8725713356398,244.0918835126795,244.1956373853609,244.72921227291226,244.4073330592364,244.3707284606062,244.4596582450904,245.1111727580428,245.00797261670232,245.46290417388082,244.70320599758998,244.68934967322275,243.75895592430606,244.72843808447942,245.10422465857118,244.89562636101618,245.00897154025733,245.4291240684688,245.9635515580885,245.43581175338477,245.09154730802402,244.76447678590193,244.87320674443617,245.55527730006725,245.29467529198155,244.69579298468307,244.71932164067402,245.13101030373946,245.20692401984707,245.30538734048605,246.06223395559937,246.39368124492466,245.98067349288613,246.49774045031518,245.73341904301196,246.70454634027556,246.35821943357587,246.11623326828703,246.24855000292882,246.51202308759093,245.63303950894624,245.7309570228681,246.3497400409542,246.1510048592463,246.07665308518335,245.36629507830366,244.57388721453026,245.40581678552553,245.86561940191314,246.86475345725194,246.01871248241514,245.50087922159582,244.61713252356276,244.57257849909365,243.79252962209284,244.52132808230817,244.92459749989212,245.78668523719534,245.27972413552925,244.90040906891227,245.40936540765688,245.42179274233058,245.25717530911788,245.95484004123136,246.66798789286986,247.61465080594644,248.41464729094878,248.8539070659317,248.77807741099969,249.0312135494314,249.12897656857967,249.57151583116502,249.35057471459731,248.82087593292817,249.60151896206662,248.83757064305246,248.58915720507503,248.8017390947789,248.68024644022807,247.76655059913173,247.48871106747538,247.53809004090726,247.89693297399208,248.1286523588933,247.79037447692826,248.55720981163904,247.8849704428576,246.89540177490562,247.31005127821118,246.345147987362,246.13742839125916,245.31915326183662,244.50418682862073,244.84290885692462,244.41931858984753,244.68320473376662,244.01612819032744,243.45031687757,243.7462865030393,243.9785950416699,243.08890100661665,243.76379187498242,243.48391391150653,243.7585628516972,243.03316935012117,242.32330760732293,241.88914291234687,241.71926363091916,242.61715512769297,242.67399473953992,242.50970990443602,242.97438925597817,242.16914635477588,241.78147314395756,241.35805296571925,240.4000596581027,241.15538708679378,240.83320216694847,239.94548381771892,239.93618568452075,239.28850053343922,240.11033607227728,240.26167500112206,239.64793279441074,239.77348040090874,238.83833687985316,238.3621394019574,239.01348114851862,238.3699030247517,237.87517045997083,237.4088127752766,237.671567610465,237.08315907698125,237.94227269105613,237.67231169063598,238.15404516085982,237.69350997172296,238.5692783826962,239.09169395407662,239.0290283774957,239.89146103244275,240.5285706226714,240.27093615522608,239.97434266936034,240.77941350406036,240.38844068627805,239.59646683651954,238.65877719735727,237.83110537566245,237.69255564780906,238.57219946291298,238.1813240982592,238.42107638483867,238.64390468923375,237.8307284670882,236.8975732740946,237.05140837049112,236.7798930387944,236.76306379260495,236.18284465232864,235.79641296202317,236.59852469107136,237.35880817752331,238.13000920973718,238.7053805962205,238.903445887845,239.46498145721853,238.90853684861213,238.08176051126793,237.41399406455457,237.92352459393442,238.3732356587425,237.6962637193501,236.89498526090756,236.18657857133076,236.28541886340827,236.0507470224984,236.71191808627918,237.54325653845444,238.20538197178394,237.4667036132887,237.25652378471568,236.2675563916564,236.97231854125857,236.45717788254842,235.47747872769833,234.52128988318145,234.69286542618647,234.71851275023073,234.19234564621001,234.30146206589416,233.63200565474108,234.29959582863376,234.05454623233527,234.41406745417044,234.33946334244683,233.91513531794772,234.50252951635048,234.82863836875185,234.9060174031183,234.8830006485805,234.62882766174152,235.25308266235515,234.59678752394393,234.54115677950904,233.64707635948434,233.9249770976603,233.69379063975066,233.33242867467925,233.83871776005253,233.68410400114954,233.62646642280743,233.24294388433918,233.1457529035397,233.08838559873402,233.65449012164026,234.01684249890968,234.98384661599994,235.10789428045973,235.582669230178,235.65776660945266,234.88236412685364,234.9985961103812,235.9836244727485,235.0045172162354,235.94496827712283,235.03949711099267,235.85655006207526,236.12142164539546,235.27981575066224,234.78894497081637,234.04540339717641,234.80594864673913,233.9963870998472,234.6600554473698,235.45305753638968,236.20169102214277,236.35957761341706,236.90959027362987,237.7341070510447,237.58174515143037,237.60878038592637,238.4724103040062,238.27226893231273,238.82026438927278,237.83999328268692,237.67375749908388,238.57850632909685,238.54480576654896,238.83348274277523,239.7707867580466,240.15598383313045,240.98811482964084,241.6293510622345,242.5043865693733,242.05677656875923,242.91164676425979,242.04452784731984,242.1650502081029,242.94725454691797,242.845649598632,243.76040428690612,243.88840982038528,244.2893246645108,244.28716226667166,243.8568384796381,243.4096350632608,244.40386514598504,245.359161098022,244.86811262508854,245.49418235290796,244.55391305545345,243.9599019708112,244.48523881891742,244.0585746797733,244.39946484798566,243.84723101509735,244.6495376350358,243.9750116611831,243.93069639336318,244.80395549582317,243.90548162302002,244.0073405164294,243.03632333735004,242.73539785062894,242.766651625745,242.57949876785278,241.93331948434934,241.2256321720779,241.4388114004396,240.75094226608053,241.01247408846393,241.03848911589012,240.0892575797625,241.08189423941076,242.03420377522707,241.3420559805818,242.01546801207587,241.06645283289254,241.9347489210777,241.51042065164074,241.98684537457302,242.12956968089566,243.0191472307779,242.0936785750091,242.81559464614838,242.21171645028517,242.7567290784791,243.49575333157554,242.7680116496049,242.1214712304063,243.09443047456443,243.71638882998377,243.17632557731122,244.1558990511112,244.8960763285868,245.3867463544011,246.29982276866212,245.85279260063544,245.74915880523622,244.9192956625484,244.0193075519055,244.8819650299847,244.9067991725169,244.55175500223413,245.5288772629574,245.10705638770014,245.90307484334335,245.9580586636439,246.8468582155183,247.65732591459528,248.37146522803232,248.8762243273668,248.348092332948,247.84840964665636,247.8717812206596,248.36818379489705,247.65734269749373,248.65226465510204,248.61072415905073,248.59030938521028,249.2846042769961,249.95776658598334,249.0423447568901,248.35836670082062,248.03970190510154,248.58538717962801,248.92974199028686,248.17503995262086,247.25902337674052,247.98184733837843,248.77370175113901,248.13769982662052,247.92239007307217,248.25277909776196,249.13410665653646,250.03663700493053,250.65656459936872,249.71820713067427,250.51928733382374,250.20858416287228,250.3968345890753,250.83397252159193,249.99661305639893,249.9722682167776,250.44397005904466,251.130088113714,251.14614383736625,251.16137690888718,251.13336684228852,251.7433571438305,251.96612135646865,251.8554810457863,251.3858892270364,251.41697071213275,250.5348281483166,250.22121432656422,249.5706239626743,249.92511659720913,249.65052587306127,250.36925332434475,250.63079142896459,249.78009069152176,249.76621579239145,249.2585473069921,249.68106685345992,249.33174570836127,250.27532055601478,250.43663562368602,251.06297148624435,251.67696875706315,250.97949199890718,250.4290971760638,250.9512377944775,250.01500638900325,249.07030664104968,248.3940220074728,247.71027389680967,248.04114407580346,247.56870940281078,248.05456857942045,248.14460223633796,248.43049472989514,248.74863838078454,248.55733499117196,247.68877624953166,248.62540051387623,248.21305030304939,248.0483890492469,247.8177871890366,247.07979512726888,246.08949241787195,245.45870158914477,245.78176033264026,244.79638537857682,244.78102495800704,244.34268864663318,245.08458904270083,244.61385515518486,245.04956105351448,244.08489837823436,244.5901134032756,244.3273672577925,244.37780544627458,243.4627284212038,243.92013596184552,244.16953877918422,244.3000307888724,244.46456630527973,245.12314457353204,244.93373820045963,244.2091974024661,243.9824368841946,243.61890730913728,242.6601837174967,241.99931479850784,242.66801487654448,242.44330752454698,241.55597467534244,242.49914900166914,242.54089418100193,241.92359652835876,241.08212311007082,241.84099899511784,241.6996820908971,241.55843108613044,241.95287670381367,242.02220317767933,241.36682515451685,240.84164106706157,240.55798438889906,240.1240406408906,241.05493908468634,240.2713515907526,241.1444363067858,240.76460376940668,240.85621518921107,241.61672016093507,242.36759315105155,242.11084570549428,241.2822193671018,241.08998545492068,242.01113015040755,242.0679358644411,242.10085447924212,241.65396029502153,241.9228871539235,242.24475747952238,242.2833590391092,242.5736586265266,242.35801228927448,242.64243341516703,243.62890003807843,244.1620013625361,243.37343953410164,242.84855150897056,243.03038518689573,242.97589706489816,243.3539835656993,242.88616717327386,243.61853167647496,242.71985707012936,243.2433857708238,242.93081463081762,242.152184672188,243.0074665080756,243.71155879972503,244.47500239033252,245.21430509584025,244.53977772407234,244.6637517195195,244.9111288813874,244.3615055619739,244.82739280769601,245.73400052497163,244.80622845562175,245.45633131777868,245.25975174689665,246.25945677235723,246.11982061946765,245.1759640998207,245.75340069504455,246.19137887796387,246.30042597511783,246.8613074249588,247.09818262560293,248.0867619891651,247.99570040917024,248.66690206248313,249.57284681033343,250.02758593065664,249.4857544992119,250.1731121102348,250.23412395827472,250.2086636070162,250.0895171663724,249.4884169693105,248.826171327848,248.19867549743503,247.40825668163598,248.33418960357085,247.39905323274434,247.82131690299138,247.6163349756971,247.24411976337433,246.27593990322202,246.88933316012844,246.72207156009972,246.38395506003872,245.4138549421914,244.5762230795808,243.8770038736984,243.98278319230303,244.45220463816077,245.0001411200501,244.89272677199915,244.93615983007476,245.5402330737561,245.86714851111174,245.78061440493912,246.72882231138647,246.75896979356185,246.1634940188378,246.17491244943812,245.42258659889922,246.11148597672582,247.09777286695316,246.52109085442498,247.44242688594386,248.4046017313376,249.0462777186185,248.85964868636802,248.49161744862795,248.81512481207028,249.57729190122336,250.33117343997583,249.4235789240338,249.21773978462443,249.25300785852596,250.0384719679132,249.5587109918706,249.79530751984566,249.65644580498338,250.3758605304174,251.26539182430133,250.52893594047055,250.06574382120743,249.85966937383637,250.70155917014927,250.50790009181947,251.10791934886947,251.65336884418502,251.3646594081074,252.04911996843293,251.57296509016305,251.17660105181858,252.07378329802305,252.11621428234503,252.33210035273805,253.00394418137148,253.21960241021588,252.73482826631516,251.97901017637923,251.22997845057398,251.188528127037,251.91670127492398,251.64349834481254,251.4781325426884,250.55912788491696,251.27314450172707,250.77797247329727,251.44916386017576,250.88520211121067,250.41668461589143,251.40902336174622,251.06222028564662,250.41166758025065,249.87581896642223,249.75609455490485,250.6719127157703,250.5186963607557,250.5506164911203,250.7737589236349,250.29752528341487,249.52247031964362,248.80625626351684,248.34153676219285,247.76900397287682,248.10758545110002,247.62442392017692,247.5199274700135,248.3052596966736,248.47520351968706,248.73185161594301,248.42132755555212,248.9605374932289,249.48276266269386,249.36682725092396,250.28430118924007,251.14570157788694,250.32455484895036,249.57277832413092,249.98552782088518,249.06027627456933,248.58195753209293,248.97753351507708,249.8769662603736,250.40303665446118,251.0011473679915,250.62274687504396,249.69769722176716,249.77096355101094,250.66337057435885,249.774918501731,248.9042572225444,249.19804476341233,248.46811030386016,247.94402596028522,248.93808819074184,249.13003533380106,249.3956163371913,248.93623521504924,248.82423955388367,248.4986708057113,247.59926156466827,246.74754849402234,246.3833649419248,245.41596792731434,245.06700004870072,245.39231946971267,244.5633975523524,244.10088291903958,244.37387132132426,244.6632835115306,244.0132144750096,244.20479144342244,244.26599915651605,243.85749654565006,244.08879837952554,244.91092033544555,244.6856841747649,244.31921333586797,243.59383149445057,244.42830861266702,243.44788935268298,243.50096396543086,242.54971454339102,241.64992232387885,242.4427510658279,243.0812016078271,243.71786594949663,243.54052929859608,242.90158911654726,243.64717888925225,243.02800075244159,243.91237577190623,244.66321253031492,243.67693821992725,244.6054829773493,245.07924791704863,244.7360693733208,243.7421933193691,244.058834717609,244.6676972596906,245.48122467612848,245.94636557158083,245.0997575786896,244.86840595444664,245.6236950303428,245.08416280709207,245.80754993250594,245.14486786955968,245.51851029600948,246.20385136501864,246.04122113063931,245.0757814659737,244.53384363418445,244.8880339912139,245.7467344859615,246.50324658770114,246.3087339354679,246.3263373794034,247.23794960649684,246.77157198404893,246.0816086558625,245.912290670909,246.32923262612894,247.31571056181565,248.14170543150976,249.11925848713145,249.94935597665608,250.37868416961282,251.11091267038137,251.58826519362628,250.74601773824543,250.8089729361236,250.76645733974874,250.42756935535,251.09121834672987,251.19659469090402,251.3831914756447,251.2519599609077,252.09109712392092,252.77992981718853,252.04103563446552,251.60373835405335,251.01897836243734,250.6929074935615,250.33063341816887,250.27865331666544,250.03364074835554,250.68130900058895,249.7264298205264,250.54951128503308,250.22627031663433,250.92564754607156,250.04535684082657,249.71603929297999,249.9120699428022,250.05628785816953,250.5448233266361,250.5907081165351,251.0914389733225,251.67129148775712,251.84063263749704,250.93109662085772,251.5056711328216,251.7972204182297,252.25152161391452,252.76543341996148,253.2635209625587,253.17114338930696,252.7958704647608,252.70272376202047,252.81995388492942,252.22822425095364,251.76133341528475,251.3310182574205,251.56721972860396,252.48005649540573,253.4212069567293,252.60110830748454,251.86472841119394,252.26230849372223,253.16392229590565,252.62101126322523,252.824578308966,252.06430790154263,251.84106823289767,251.66535562602803,251.70626297127455,252.35904126428068,252.78943474171683,252.68899526214227,253.37278179451823,253.8995131808333,254.6950400173664,254.67635409068316,255.50868070265278,256.23692046571523,257.2268001320772,257.1616759914905,256.51781036611646,256.9933208208531,256.089232574217,256.48655526991934,257.18203770229593,257.8469311199151,257.26074973959476,256.97543397685513,257.82123830681667,258.8084213989787,259.12693493580446,259.2078189617023,259.44522887608036,259.38019930105656,258.8367181257345,259.642137626186,259.2653442793526,258.8095099469647,258.4542308244854,259.3482653256506,259.36145373620093,260.1891261385754,260.89705728925765,261.2930160611868,260.8740585590713,260.33365047583356,260.46885008504614,259.8222908116877,259.83475077478215,259.48359770560637,259.9713914399035,260.77795548411086,260.25723940180615,261.17097003757954,261.66207486297935,262.39190196152776,262.12429632106796,262.25777331227437,262.29689616849646,262.0750385755673,261.55480590322986,262.2479724790901,262.74067868618295,263.4773923740722,262.61837787972763,262.70841108774766,263.0261242161505,262.849371525459,263.1999285896309,262.94453293504193,263.5258612148464,264.0867008701898,264.9839878445491,265.8961873878725,265.44587996508926,264.9761144602671,264.5412823748775,263.6716655222699,264.624055985827,263.8098424896598,264.57719185808674,264.0137201254256,263.1803805017844,263.5664371685125,264.35541716916487,264.0523495590314,263.3596959281713,262.8299530670047,262.39489446533844,262.66327611217275,263.2507619038224,263.001510403119,262.89495917689055,263.339103247039,263.8983347052708,264.6357076074928,265.58864178555086,265.3091668994166,264.9624925972894,265.2094895038754,265.65148591902107,266.39282923657447,265.89144866075367,265.95948905451223,266.0172785562463,266.64036200987175,267.2468728190288,267.20137896435335,267.0161090870388,267.7324175722897,266.8078227369115,267.43619659682736,267.44214800791815,267.4794565360062,266.4824623106979,266.8408579174429,265.97026688745245,266.21748369699344,265.41878726752475,264.81519916979596,265.2707675267011,265.0580894132145,265.4863027231768,266.1611719536595,265.6636390890926,266.11587354913354,266.5427444423549,266.3313568071462,265.83138701692224,266.19480234431103,266.8358002221212,265.97191098704934,266.482802440878,266.8809461062774,266.50240067765117,265.90346238110214,266.25731312530115,265.56849802006036,264.98887827666476,265.70601175911725,266.52531944029033,266.6959475725889,265.96555615914986,266.1610669749789,265.55679895123467,265.9523304151371,265.26463998667896,264.85011380910873,265.47191999619827,265.96169088501483,266.61290016025305,267.3961661285721,267.0147289307788,266.8784987074323,267.70715553918853,267.5504173762165,268.43018287746236,268.6277483487502,267.8036245065741,267.5375296869315,267.75150306290016,268.17478949856013,268.08410920668393,269.0774551546201,269.95716308197007,270.1653133719228,269.6968422778882,270.40331524657086,269.7988589857705,269.48380658822134,270.34121547313407,269.5037784045562,270.10161490365863,269.8560942397453,270.1758238286711,269.5059123779647,270.07253570109606,269.49629725376144,269.26537757599726,269.94113783352077,270.7181815286167,270.9685892346315,270.05726194847375,271.0231919665821,271.1231717397459,271.5427273553796,271.08260522037745,270.7332423646003,270.39521638164297,269.919747160282,269.3913669749163,268.57025597942993,268.7700499324128,269.55249276105314,269.00733421277255,268.91938460059464,269.42511481046677,268.97128866799176,268.8339043860324,267.99498124979436,268.24610048532486,267.4960616803728,267.5857033091597,267.78171904943883,268.2146112835035,268.5133028323762,268.9686580998823,268.39355573337525,267.9611203568056,268.35531409597024,269.03496003337204,269.4995593894273,269.84174922434613,269.4050149624236,268.4342488371767,267.84113510884345,268.11837259400636,268.47606734139845,268.8036300172098,268.3198309587315,268.9332916010171,268.91533230338246,268.853610180784,268.46086247451603,269.2234980519861,268.2395269512199,267.7883805753663,267.2206024932675,267.9988723085262,267.7167517035268,268.55358361871913,269.48949883366004,269.9973222417757,269.1389482622035,269.9055432486348,270.1471931687556,269.4637689748779,270.4027821072377,269.8751232610084,270.21024585561827,269.3290880434215,269.0815231753513,269.57355885300785,268.7175990343094,268.5409287731163,268.1772085186094,268.48605702491477,268.42732856143266,267.47344165388495,268.10941055603325,267.2921764869243,267.4892797716893,267.22777457581833,267.3806339073926,268.02654534066096,268.3544726334512,267.3868074421771,267.09012826159596,267.034105038736,266.163440305274,266.44922014931217,266.5411258977838,266.17367157014087,266.6498416434042,265.7335852854885,266.5027465117164,267.48378025507554,267.9094200967811,268.25055394647643,267.26517421286553,266.5608026064001,265.6041125501506,264.80260839220136,264.5847930009477,264.9687323458493,263.9731390918605,264.25174312945455,264.4780718800612,263.5558470371179,263.07740596076474,263.2718312344514,263.46077363332734,262.86631896160543,262.0129675422795,261.8203745284118,261.85189442522824,261.6630549156107,262.10712948581204,261.8153386628255,262.18426492391154,261.870258402545,261.2254823311232,260.6669350210577,260.70567931979895,260.96472290344536,261.9420358655043,261.05612850608304,261.8275915184058,261.3714578174986,261.64487407775596,262.63209830923006,262.835141393356,262.55968980910257,263.20518688019365,263.6171809104271,264.19709425326437,263.72760030720383,262.88176706572995,263.6317948261276,262.64912173198536,261.972935508471,262.27401827601716,261.7447260087356,262.3145846631378,261.9220884302631,262.0036348779686,261.6044770795852,260.8607829315588,259.98856538021937,260.479313201271,261.3834046632983,262.3802004819736,263.04536628723145,263.40258638281375,263.2013755803928,262.33615947607905,262.08602673141286,261.16518727783114,261.8944229534827,261.5100488397293,262.04718887852505,263.00082345539704,263.3644212083891,262.90857984498143,263.1955925426446,263.52607923932374,262.6046038852073,263.5247446987778,263.1914537609555,262.80117490235716,263.38042212370783,263.8107993104495,264.18821921478957,264.9570573773235,265.22733667586,266.0843300889246,266.8155106920749,265.92917204787955,265.0856570955366,264.884212072473,264.7686842768453,264.9369736802764,264.76051311194897,264.4851476447657,265.00761663308367,265.07257284549996,264.3735588216223,264.78835269715637,264.2071864255704,264.4992482396774,265.4529107902199,266.2232779287733,266.4410824342631,266.9198745926842,267.3237006799318,267.38876549433917,266.7969159549102,266.3636368671432,266.2955373977311,265.70116313546896,265.6186591954902,266.4156000628136,266.8211133722216,267.49943668814376,267.60441952804103,268.3605346791446,267.4768277523108,267.622699173633,266.91232295008376,267.3328460515477,266.7910330425948,266.702615251299,266.4891131306067,265.9198896372691,266.6063277311623,267.19556783046573,267.55125917401165,268.3540249806829,269.119678477291,270.0082185692154,270.90094312280416,269.9659744268283,270.2089193435386,269.95398044446483,269.2587547795847,270.03746797237545,270.7962400931865,271.0084220599383,271.38030073046684,271.37789631588385,270.57345460774377,270.24086883151904,269.5008954927325,270.1097182575613,270.977046164684,271.75101344520226,271.8049907339737,271.12888478534296,270.6476744962856,269.6903555863537,269.47223433619365,269.43714842246845,269.68038944527507,269.62365478836,269.45764805329964,269.94873892189935,270.4502368015237,270.46868144348264,270.21081752935424,270.5951158357784,270.821980394423,270.9626605459489,271.76064941938967,271.7795617431402,271.74990137293935,271.92448731698096,272.6317422669381,273.273076324258,273.60282357316464,272.9173583337106,273.8188199531287,272.84004991455004,272.39431397616863,271.4251634888351,271.7951301266439,271.92738320864737,271.20023667113855,271.0636028740555,270.70064284000546,271.6748019699007,272.0669334223494,271.9282467919402,272.22459092270583,272.4799299617298,272.85102679161355,272.14491604454815,272.9997378094122,272.63942446699366,272.05018645338714,272.0265082283877,271.6662693521939,271.0841127326712,271.8087437325157,271.7943284823559,272.27359507326037,272.6601925692521,273.6284544598311,273.91749401111156,274.1369683770463,274.63639688445255,274.9516535969451,274.6991595211439,274.53374992962927,275.406856155023,274.6718776165508,275.6223184778355,275.2563399593346,275.12985363043845,275.27366716368124,275.7954034381546,275.1301755621098,274.96858677314594,274.8940552701242,275.38997662905604,274.49485414102674,275.2726190946996,275.7836028672755,275.4205383164808,274.4661241057329,273.77543078316376,274.18405672954395,273.57832781691104,273.94352778140455,274.0278018251993,273.6386818336323,273.97666427260265,274.23330398183316,273.383704891894,273.7484044251032,272.92797645460814,272.390142231714,272.5158236408606,271.8440943863243,272.5316064073704,271.9340983037837,272.7686105403118,272.47682266123593,271.75596783543006,272.469743413385,272.5131800221279,273.06169618899,273.3189762500115,273.0316832573153,273.8059831764549,274.4126242897473,274.1499880841002,273.41721899202093,273.0270319012925,273.18546116305515,273.8301600548439,273.78121518483385,274.7646338636987,274.8282290920615,274.8107613963075,275.52396713383496,275.5837672492489,276.3872823845595,275.8414187426679,276.19054919155315,275.32699068728834,275.7506944644265,275.9311735848896,275.74787680245936,276.26613891962916,275.8575636567548,274.8918329831213,275.2921326318756,275.94653239287436,276.46899088006467,276.7127056187019,276.51563123008236,276.31865348201245,277.1253023571335,276.4090919010341,276.1788087566383,276.45385776273906,276.72707028407604,275.82567924493924,276.3287975382991,276.46089297859,276.7435221360065,277.15035240212455,276.8196300077252,277.22256761649624,277.44464668259025,276.95122422883287,276.2892300747335,276.5467006280087,275.7234074049629,276.7082995008677,277.182569604367,277.53842118242756,277.72985076904297,278.39145362377167,278.05214766738936,277.4006298482418,277.9998208414763,277.6831388184801,278.2526544518769,278.8447831016965,278.9845119500533,278.99507823819295,279.65154598094523,279.31924750097096,279.2711089029908,278.9110773615539,278.40113063156605,279.23646937916055,279.5842485227622,279.71977018984035,279.84614772722125,280.3388959118165,279.70993446931243,279.61780598014593,279.8751866952516,279.20341460825875,279.7501752851531,278.756468065083,279.4383631506935,280.4313296098262,280.1393066588789,279.70516744814813,279.5756236091256,280.01560950651765,279.7055698214099,280.6207981691696,281.51086134277284,281.42771637812257,281.26669287029654,281.0206915331073,281.75643298542127,282.60001974646,281.88448334345594,281.11770285246894,281.8052834942937,282.214386198204,281.854617100209,282.16279308125377,282.704354185611,281.9756848127581,280.99458213709295,281.1793591850437,280.28062639338896,279.58219033200294,279.82635714439675,280.5273629263975,281.10178778972477,281.67282014433295,281.99145559733734,281.5312935486436,281.0270567671396,281.83615425787866,282.55656111147255,283.1721979868598,282.75163837568834,283.281305374112,282.9746365104802,282.54106793459505,283.45816519344226,284.206720049493,284.85497157182544,284.59835851425305,285.09999900404364,284.5428049922921,285.5128625645302,284.64015856944025,284.86773411976174,284.8031628895551,284.9670352973044,284.6441091853194,284.4853999884799,285.1495668999851,285.27786618936807,285.2465742584318,286.24102193536237,285.72579066455364,286.3491234276444,286.1109076552093,285.9969796752557,286.227072017733,286.28137277346104,287.2531847395003,286.2641112077981,286.5977262966335,286.02649808255956,286.5996429519728,286.3431229814887,287.3050790526904,287.5208028354682,287.1702214302495,286.8430940438993,287.0774550731294,287.948789908085,288.72501053102314,288.06018732488155,287.80007806792855,288.4399809865281,287.63269199663773,288.0825610458851,287.91370267327875,287.0817350316793,287.56059170281515,287.8632370973937,288.2154920124449,287.6798379025422,288.52596507268026,288.9565237015486,288.08505888143554,288.779363358859,288.5639892043546,287.89845736604184,287.30506284628063,286.69113147910684,285.69210305809975,286.4523291150108,286.1505720894784,286.8677961328067,286.56756724696606,285.75141301425174,284.84266062360257,283.87037733383477,283.060426780954,282.5592082571238,282.18949085706845,281.30051268450916,282.27881728252396,282.9922766084783,283.07895606104285,283.3676470313221,283.50041178101674,283.6097159855999,283.500922374893,283.7146125254221,282.8267948916182,283.5856410660781,284.4183753291145,284.34752177866176,285.3428714117035,285.45347439544275,285.6345446202904,285.8941634912044,286.77308668848127,287.3428063997999,287.5522599606775,287.4716640622355,286.60049672657624,286.0467531271279,286.4299597302452,285.73239220958203,284.813445428852,283.84864226495847,283.58180498192087,284.0704034832306,283.2696635168977,283.4507464375347,282.9969838713296,283.873780076392,284.5440540825948,285.050785345491,284.9977982006967,285.3557984721847,284.54879751103,284.6199959786609,284.92277306877077,284.3733210763894,284.3343948670663,284.4106429545209,284.685018022079,285.57486958336085,285.10255974298343,284.73433810053393,284.97997599374503,284.4800036898814,284.8535894318484,285.2175623443909,286.10336022498086,286.338407818228,286.54471390647814,286.2286027148366,285.3097069077194,284.9778006435372,285.26731474976987,285.6560549479909,286.4184360327199,286.8431466096081,286.21776943514124,286.1852367403917,286.1544973375276,287.03102649748325,286.0928997369483,286.51864648004994,287.0157342720777,286.0200201338157,285.7155401674099,285.47577023971826,284.69286879198626,284.07307091122493,283.89733706926927,284.01038396172225,283.2996440595016,282.4152184072882,281.5263810311444,281.7024320717901,280.9149170606397,281.725488812197,282.16493099881336,282.2165802353993,282.63656681170687,281.64456047164276,281.13066037744284,282.0329188113101,281.45453037135303,281.9419272313826,282.3193082329817,281.72200221475214,281.19498487748206,280.63651540409774,281.4585507065058,281.1124467505142,280.7663002461195,280.2907475582324,280.4991052802652,280.6168001857586,280.5820867069997,280.0034234272316,280.30322433728725,281.16176475258544,281.3137541702017,281.8011321146041,281.51672737300396,281.03980876365677,281.9198623634875,282.0788813563995,281.30597188929096,280.706602179911,279.8862990341149,280.2606841190718,279.30991529207677,279.6932811611332,279.2057935814373,280.02501358510926,279.4385393061675,279.02143942192197,279.2927512349561,279.6559175909497,279.4284090534784,279.71177620161325,279.1340742427856,279.2621377459727,279.1462332275696,278.52275272877887,278.33491782285273,278.0674696206115,278.1078150239773,277.52153255976737,278.4359926623292,278.4669767152518,279.26179312262684,279.2999092899263,278.7392383799888,278.2804577453062,278.88282419135794,279.7291237888858,280.27887366199866,280.26781833264977,280.887393231038,280.0957631622441,279.6109361993149,279.81954550696537,280.29624198470265,280.1631836304441,280.6589591051452,281.5569029166363,280.5936970403418,280.5317855332978,280.5177659438923,281.3271061950363,282.253478881903,282.8804936478846,282.2134205182083,281.7862219386734,281.6265989439562,281.38378766039386,282.0091937696561,281.5880812839605,282.1534522478469,282.60500362562016,281.8187478305772,281.1408309806138,280.49798113806173,279.97494357824326,279.69770019315183,279.38081060675904,278.8425224740058,278.1482566879131,277.478825582657,276.73113540466875,276.9414612217806,277.13653039978817,276.2112209610641,276.7200118470937,275.8232090654783,275.03575593652204,274.1487065786496,273.4180437545292,272.76978712854907,273.4611534997821,273.8039225200191,273.5428478997201,273.4179663574323,272.91726831672713,273.15612648194656,272.58013425255194,273.4410110441968,273.2177939391695,274.1075857905671,275.0916077075526,276.015071305912,276.69997672876343,276.0361067666672,276.38576932251453,275.96263991622254,276.89022880326957,276.0744897411205,276.6191295282915,275.6361669981852,276.11829065624624,277.02991526573896,277.6661336645484,278.37181103182957,277.3741606166586,277.85359306959435,277.6155293835327,277.28670333186164,276.4156775106676,275.70349487289786,276.39213599590585,275.82089735846967,276.6469521764666,277.2641072687693,276.613670819439,276.8146636481397,277.4547110972926,277.36416035797447,277.91582809528336,276.9276376012713,277.0768238976598,277.58416801551357,276.94944040849805,277.6814266233705,276.9037557230331,277.6940616904758,277.02408145042136,276.39453707123175,275.60616344958544,275.58457491593435,276.22506182221696,275.6068199002184,276.22055080812424,275.94313498493284,275.4108309629373,275.38661545328796,275.68888112856075,276.464155360125,276.058820579201,276.9313444583677,277.49059963272884,276.5175572214648,276.6860747979954,277.5492670023814,277.9880689312704,277.25632209843025,277.3744887369685,277.93095068540424,277.10582454968244,276.64204225922003,275.9378564823419,274.9916639216244,274.979023557622,274.1301444885321,274.29128007683903,273.6014609700069,273.37269788375124,272.52702165255323,273.31739408615977,274.0032956697978,273.3338545951992,274.28281423356384,274.45924525382,274.16533723520115,274.5127240763977,274.42149823717773,274.6008943701163,274.710669004824,275.3793218093924,275.20574543857947,275.67897345963866,276.636002314277,277.08505997247994,276.1262225462124,275.8720339909196,276.169033634942,275.55048168450594,275.08877588249743,275.4435491282493,274.88025964191183,274.8744205716066,275.6704468517564,276.4833219484426,277.2100389315747,276.6860268395394,276.1770350993611,276.1860310724005,275.5520728933625,276.3107355143875,277.24556423584,276.496813705191,275.6387926065363,276.0324176312424,276.02944793039933,276.0672417199239,276.60932252183557,275.80785128613934,276.44906006846577,275.73030482558534,274.8986409828067,275.0085407528095,275.3894108715467,274.75505676539615,274.98989016143605,275.6881239153445,275.8374688765034,276.502037525177,277.01362435519695,276.2181005240418,276.4004002264701,276.2240604516119,277.0024051014334,277.47096704738215,278.0080763017759,277.4471339243464,277.0630932864733,276.1371587687172,276.97450152924284,276.1122738821432,275.1243352848105,275.67038316465914,274.7064659576863,275.30950475577265,274.4239916331135,275.2915430753492,275.591199004557,275.62406568974257,274.7143632238731,273.8574777361937,273.7944447589107,273.88394805649295,274.51540939928964,274.43219492491335,275.3853543139994,274.5458414060995,274.2522888528183,273.83095278125256,273.92194818286225,274.3837228510529,274.97529782308266,275.8438775902614,275.2519036731683,275.54017150308937,274.67668384313583,274.98537284042686,273.9934835047461,273.71468875557184,272.8373933797702,273.28755983896554,272.9093797178939,273.2307515479624,272.80141936661676,272.44834011327475,272.44456777116284,273.0195244126953,272.0338794332929,272.93642964586616,271.9641292989254,271.4350596694276,271.1764789754525,271.1663861265406,270.8269589715637,271.78081556083634,271.6989079345949,270.89262352650985,269.99192441347986,270.40686078136787,270.24578804010525,269.85620041470975,269.07502002781257,268.32555581023917,267.7437064941041,268.01567462226376,268.8219473324716,268.89030453236774,269.0635054865852,268.11904667597264,268.27044729795307,267.66355951083824,267.31084317946807,268.1673095682636,267.8970231246203,267.7665795125067,266.87825342360884,267.28614071710035,267.17246540402994,267.1587935597636,267.95585212111473,268.9283249261789,269.1102147074416,269.1949736997485,269.44204134400934,268.65843793936074,268.11958040157333,268.30554002989084,267.6663780496456,267.42332641687244,267.4816932277754,266.66245327563956,267.0546814738773,266.38706976920366,266.23196417139843,266.98474933812395,266.8312789830379,267.377142152749,267.3935503484681,267.76458187634125,266.98843057407066,266.8669502083212,266.49634500592947,266.69689157092944,266.90757452184334,266.808298710268,266.84318282455206,267.29297205014154,267.80491806333885,267.8916855780408,268.34164024330676,267.3573734932579,267.88807715987787,267.0441877664998,266.42760906368494,266.25018201675266,265.68737271567807,265.8704998297617,265.1134406980127,264.91358794178814,265.85492872446775,266.25130189582705,266.3968089837581,265.90389227773994,265.7826349744573,266.7357737440616,267.16064161108807,267.8669283222407,267.4135133274831,266.45905785402283,266.9416221915744,267.3676112256944,268.1772176194936,269.05053307441995,269.8393504326232,270.56932716444135,270.7242112904787,271.3979345764965,271.2863919022493,272.0370631380938,272.56879404885694,271.7430587601848,271.93487208290026,271.15105183376,271.53168712044135,270.57417985145,270.881506993901,271.6095363595523,271.28654383774847,270.4948661820963,270.30093133915216,271.2172644273378,270.2898271260783,271.174081845209,272.03505870886147,271.2692270693369,271.54613864887506,271.65777334431186,271.1062071174383,271.71291566826403,271.9874258590862,272.46646670950577,273.2031209282577,272.7015424524434,271.95313938707113,271.57804133649915,271.42964501539245,271.1869506579824,271.4521727412939,272.2976285465993,272.4318755660206,273.1135067967698,273.9860943988897,274.6940502822399,274.8400249402039,274.65124230552465,275.344098883681,276.2798670772463,277.1716462629847,276.45977477077395,277.22545199049637,277.84069653088227,277.250961326994,276.399867949076,276.81727989856154,276.0723995943554,276.11782389367,276.8102142396383,276.06177527969703,276.4042620891705,276.6500602555461,277.5107826916501,277.6059665051289,277.0492978268303,277.9505762029439,276.97575141023844,276.72661868156865,276.4423297373578,276.64140049600974,277.3310649394989,278.0318924910389,278.88049359433353,278.3662721440196,277.8446239642799,278.61251312308013,277.65724755171686,278.5120206819847,277.95893260184675,277.6089590820484,277.291692616418,277.5456901756115,277.41260151332244,277.4606360406615,277.1410517739132,277.400808440987,277.69781264849007,276.7681177165359,275.96159269986674,276.18251688964665,275.9963038545102,276.43705512117594,276.56112672388554,276.43107468029484,276.5559054403566,275.70094257127494,276.61138940183446,276.5740419058129,277.1855433927849,277.06637290213257,276.6786241941154,277.215203252621,277.8507058187388,277.18403372867033,277.6329378038645,277.9152248399332,278.29359188023955,277.67102049663663,278.2069810628891,278.49523682612926,279.37361093377694,278.9485282325186,279.53204292198643,280.0601024343632,280.70525676198304,281.22660112567246,280.63723087124527,280.0931146549992,281.02934538014233,280.1832188856788,279.20083968667313,278.5173330740072,278.17969738598913,279.1216255920008,279.28099046694115,279.2607323718257,279.43018158338964,279.3031897470355,278.559768081177,278.19715353567153,278.7077963775955,278.56462416937575,278.56006291275844,278.01634735474363,277.3190686427988,277.25444088084623,276.85351491812617,276.3920957283117,276.56595935253426,276.9604903180152,276.03470999840647,276.9135220227763,276.4272046200931,276.2456116359681,276.2027792437002,275.7551413392648,275.61546212946996,274.724153380841,274.63093366799876,274.44367554597557,273.85143591091037,274.38608601037413,273.8296409952454,274.051322509069,274.87863420369104,274.6658708746545,275.15466451086104,276.0859613502398,277.02442793687806,276.95554585848004,277.8089498039335,278.5830716881901,278.1528360815719,278.90163620514795,278.2941208155826,279.29132454656065,278.5974965868518,278.3648386034183,278.9677861025557,279.9165221606381,280.1936944886111,279.2357489448041,278.54157964652404,277.82039233483374,278.1036058301106,277.8210553578101,277.81625973340124,278.5836759004742,277.774514421355,278.31375875975937,278.1514471215196,277.67796659003943,277.3674598452635,276.6086102654226,276.2739874785766,276.7831016983837,275.87759463861585,275.75123110972345,275.4630669420585,275.2331221993081,274.9472256996669,274.060757052619,273.2966412990354,274.040647723712,273.42644389672205,274.39350353740156,275.2576526971534,274.3705292986706,274.6204507849179,273.9367307117209,273.91424639103934,273.9098058268428,273.78933651698753,272.8639231300913,273.48489687312394,272.5609967922792,272.87170909764245,273.8229332873598,273.57301891595125,273.12462621740997,272.4801901676692,271.66940332530066,270.8471804461442,271.21606942731887,270.3432596316561,270.7292216112837,269.79668685095385,270.2642989656888,270.8261414724402,271.39550042757764,271.10542073100805,271.1141061936505,271.2057930184528,271.1331575252116,271.7949267658405,271.8109254450537,272.0381796322763,271.047727052588,271.44697920326144,270.9211779134348,271.1278112512082,271.6285861842334,272.1110805324279,271.60480826953426,272.03190400172025,272.81345006870106,273.73000798001885,274.54891807213426,275.2535275570117,275.6932814712636,276.16075306385756,276.3358408519998,276.70275654736906,276.7615655246191,276.53398734284565,277.04419115232304,276.63026564661413,277.15748296817765,276.914871158544,277.604122354649,277.7868087803945,276.9390633176081,276.6857899441384,276.6766954897903,277.04484122619033,277.463706813287,278.09989135479555,277.85051669273525,278.1616863408126,277.6804948239587,277.9322208026424,277.93834571680054,277.36797917447984,277.0337578114122,276.5252570020966,277.1547231916338,277.9874721476808,277.4308740561828,277.6909522432834,277.09467672463506,277.17682976601645,277.21432955376804,277.53563369298354,276.6617128206417,276.7906409781426,277.43235217081383,277.98456274485216,278.1314292787574,278.78238147636876,278.78520972281694,279.1919269999489,278.4972318513319,277.82279083598405,278.5615520766005,278.1758707840927,278.67459856020287,278.5263815987855,278.9331159950234,278.19841601746157,277.43437554780394,277.546903623268,278.2659727083519,277.77331671491265,278.1403951039538,277.2026121066883,277.72707699565217,278.01827737502754,277.3571890499443,276.48664156813174,275.7448114203289,275.0087159043178,275.03381360834464,274.8858440667391,274.6579005229287,273.96670916164294,274.48447585850954,274.3138961563818,275.23362644715235,275.62308679288253,275.98699024459347,276.7980134342797,276.55592961702496,277.5105494731106,277.1496659787372,277.0447999252938,277.7177375149913,277.27642146358266,276.7109824800864,275.95314178196713,275.5162430284545,276.0036766654812,275.96680899104103,276.8435101392679,277.7885894156061,278.0683405455202,277.54669529991224,278.0427129245363,278.76547899330035,277.89830232877284,277.79059382295236,277.4097142582759,277.42285214411095,276.7691634031944,276.36327061988413,277.2492003701627,277.7994427718222,277.71984379086643,278.7064290237613,278.981363105122,278.2435987559147,278.903060127981,278.8153561395593,278.9419634123333,278.4567274139263,279.1334183155559,278.6458734818734,278.1401649508625,279.13547650072724,278.65614892262965,278.06023197527975,277.9971591476351,278.00076515600085,278.6066054459661,279.21606207080185,279.20937735168263,279.04745802655816,279.3283023647964,280.1850433042273,280.6326810657047,280.4423596635461,280.21109682135284,279.5490498226136,278.97809974616393,279.7517279488966,279.1204797606915,278.13209068914875,278.34933592099696,277.82356427796185,277.1435695104301,276.203055865597,275.4012105842121,275.0115860677324,275.2925324793905,276.10608173022047,277.0424416488968,278.0383781772107,278.5467768595554,278.7735161650926,278.6804911275394,279.60456072259694,279.92399490764365,280.0794057017192,279.38119920296595,279.68464422691613,278.91419955482706,278.9505804744549,278.16929497243837,278.89569770824164,279.61220374237746,280.12890969216824,279.8841083054431,280.53550212830305,280.2889586952515,280.6804926227778,280.58410111255944,280.0977835729718,279.51033779932186,279.5605633761734,279.2719276919961,279.44275119388476,280.4122871919535,281.004949179478,281.69486686820164,281.5676050777547,280.6787736401893,280.1637137727812,280.40999485598877,280.18018774688244,279.468472761102,280.1903277775273,280.1431561685167,280.16367612592876,280.63493102788925,281.13000888051465,281.3656659037806,281.319345316384,280.52600574307144,279.8496942273341,278.9598338683136,278.75014565559104,279.5980368210003,280.1651334245689,279.96985669620335,280.4525823518634,279.9595492477529,279.5930337575264,279.53302923217416,279.54182567773387,278.702218352817,277.9105718424544,278.16166918864474,278.69892274029553,278.86548137897626,278.01187781523913,278.78169452911243,278.35020491620526,277.4187819347717,278.0383444442414,277.626691182144,278.55140586476773,278.04318141704425,278.0412510163151,277.9256048789248,278.8199632191099,279.73715497227386,279.73084027459845,280.59882308682427,281.42518242029473,281.0809125308879,281.2704029218294,281.68066229019314,282.6754958075471,281.70975123206154,281.2806556089781,280.41418712446466,279.632611438632,280.6105574844405,279.6356073562056,279.222053936217,280.15449082897976,280.6785653089173,280.2956957449205,280.83818719442934,281.61504126293585,281.19891528459266,280.5062938486226,279.7185401460156,280.52005136711523,281.223378745839,281.71141922753304,282.6385725112632,281.82189297955483,282.31825508130714,281.94055201439187,282.3789515225217,282.2288193455897,281.31003659404814,281.6333021703176,281.7694726046175,280.98422172199935,281.802497852128,281.12920843763277,280.1833870848641,280.68480662768707,279.6969243437052,279.830891775433,279.1299167564139,279.6049499809742,279.82831685850397,279.56743349088356,280.56174261681736,280.5943687981926,280.32655326928943,280.08118601329625,279.9866872485727,280.76549708796665,280.5524149700068,281.4895795346238,282.4281363915652,283.21695293625817,283.6802291995846,284.1169284353964,285.0825984943658,284.68102051503956,284.43873058026657,284.6043000309728,284.7289498317987,284.6007635644637,284.21757859317586,284.30153527343646,284.3863630499691,285.36761054908857,284.8077076021582,284.1939347651787,284.10220293700695,283.49488828890026,284.03687283955514,283.817057645414,284.5941133191809,284.33620952349156,283.54093031119555,283.16778325801715,282.29846041323617,283.2609262862243,283.96019683079794,284.60656404402107,284.78587148571387,285.3862931919284,284.81575143057853,284.5658031650819,285.28044810844585,286.24512710934505,286.41825918853283,287.23689966183156,286.98641093680635,287.5425886097364,287.5072138006799,286.9947331957519,286.1762183927931,285.241944395937,285.09180200705305,285.3683631103486,285.52774247387424,285.64552592206746,285.4315909226425,285.19319061003625,284.4534309003502,285.20877176569775,285.68166220746934,285.19576222030446,285.4893937278539,285.84865861805156,285.6039841044694,285.6509428010322,285.0132474452257,285.6455194847658,286.241381874308,286.36989038670436,285.39998548524454,285.6663946653716,285.1474087322131,286.04959616530687,286.28263020003214,287.2580902809277,287.3236160604283,286.8222732609138,286.85253342753276,286.14247007854283,285.1491921870038,285.9702565059997,285.83153440849856,284.9628810416907,285.93060689559206,285.23919266462326,286.07682729978114,286.08680888358504,286.42671466292813,286.4818657031283,286.9348806524649,287.11891157273203,286.27727606566623,286.9190476979129,287.15893356129527,286.865203329362,287.51229644101113,287.2931747986004,286.30134199978784,285.5729611045681,285.14493875252083,285.6525448197499,285.1490511740558,285.31547168735415,285.93590419739485,285.55775255849585,286.107272754889,285.1793242767453,285.7804765962064,285.25376549037173,285.79302359651774,284.9267222294584,284.75346490740776,283.82455465197563,283.95119165442884,283.46079464815557,282.9981162343174,283.28728062147275,282.8486846620217,283.6427371981554,283.7227451936342,283.8851007721387,283.61765183508396,283.5526460548863,283.7181167155504,283.60690713021904,283.1117042177357,283.47041965741664,282.63158594537526,282.59298485610634,282.936643963214,282.5683338781819,283.5674445135519,283.8734641377814,283.23211239511147,283.76545492978767,283.5419111549854,283.67385214054957,283.1400621877983,283.0972275971435,284.0501372567378,283.60167095810175,284.04818506678566,284.07832210324705,284.54504235461354,284.5448604328558,284.1446347455494,284.1921529122628,283.4485724978149,283.71904897037894,283.3003947637044,283.2388033303432,282.47550675971434,282.9946443773806,282.6336996871978,282.55177681101486,283.5493962941691,284.5169470543042,284.9262372129597,285.57860164996237,284.6982010602951,284.02315877750516,283.1624986715615,283.80734051624313,283.866588616278,282.95786911435425,283.5311422930099,283.13946586847305,282.39011056907475,282.0006658611819,282.1781149720773,281.57105974759907,282.3813332254067,282.6366828191094,282.809928372968,282.85363874863833,283.83893846767023,284.7720070993528,283.8052730113268,282.9978931560181,283.0494609270245,283.7114724498242,284.6495360401459,285.4694919618778,286.1050787935965,285.8039307692088,286.2175128865056,285.7049179994501,286.1148159285076,287.00112267397344,286.7324915220961,286.20745107065886,286.4011384160258,285.4676550668664,286.08196941111237,286.41372814029455,285.8608620236628,286.0561143741943,285.390690038912,286.1015229434706,286.2102291435003,286.6130843628198,286.5074319387786,285.7212860863656,285.5136135900393,285.93313959566876,286.2517338199541,287.09414309449494,287.5473977518268,287.2193002514541,286.97812005039304,287.636666811537,287.00215652026236,287.54792424524203,288.3315823879093,289.0136543973349,288.69896443746984,289.69385131495073,288.7497169766575,289.26349692372605,288.32954046409577,287.79914274346083,287.4766866127029,287.9661380145699,288.40835516294464,287.6229743058793,287.91150373220444,287.26002017827705,287.1432494847104,287.18750914232805,287.37927406514063,287.31530810007825,287.9322962681763,286.93691805331036,286.56721908040345,286.3337680012919,286.0702800694853,285.1286390312016,285.34266385948285,285.6342654163018,284.76486848294735,284.9707602118142,285.064111482352,285.1756794815883,285.3950676750392,286.14412037981674,285.50680914195254,285.36047189868987,286.07380721066147,285.19777279533446,284.86628836067393,285.78727992856875,284.9411081271246,285.5522122280672,285.4224505838938,286.22078310791403,286.9566604979336,287.63831020891666,287.9683916391805,287.8164218654856,288.16190787917003,288.22172851720825,288.64595199469477,288.8532916959375,289.3720941604115,289.98908820422366,289.6689524506219,289.3849748522043,290.2906911256723,290.81187255633995,290.0190337738022,289.6208920250647,289.56395203387365,289.7188746975735,289.47977692540735,289.2327851187438,289.0611845734529,288.141823282931,288.61565952189267,287.6433093142696,286.75332721695304,287.67437790473923,287.08501100027934,286.7050510006957,286.2395648881793,286.22120745433494,285.82296253275126,285.89215262560174,285.57512099156156,285.0827664337121,284.26594243291765,283.82132960949093,283.57687059417367,283.93957125162706,283.5277401166968,284.4296782896854,285.2707297815941,285.42013264633715,284.65230438672006,284.02315791416913,284.7077589156106,284.96148132998496,285.2681155973114,285.0257638874464,284.9855419229716,285.61053953738883,286.2766025904566,286.6574927675538,286.0843771924265,286.38647397607565,286.5473969904706,286.869585307315,286.146136673633,286.34422653447837,285.88702358072624,284.89720103656873,284.165055511985,284.1856601764448,283.6516023292206,283.6911001428962,284.15297340089455,284.90881665376946,284.85127808665857,285.18773280316964,285.37021868117154,284.4310835422948,283.5172045407817,283.30122815677896,282.8522693584673,283.1264328821562,283.4390185098164,282.89986349409446,282.02123794006184,282.0993437310681,281.4893020396121,281.104180958122,281.80579110141844,282.03695292724296,281.86930939601734,282.2944844220765,281.40837359195575,281.28340766299516,280.4668876719661,281.05341275036335,281.06612316938117,281.01829629484564,280.42552090389654,280.3136722743511,280.3194121597335,280.9330644290894,281.9136329446919,282.187260301318,282.45094161108136,282.1408679326996,282.1474188119173,282.493434115313,283.0922026759945,282.6437785308808,282.8509053019807,282.507186582312,282.2308876574971,283.13626909675077,284.00138645106927,284.7669363017194,284.8754681884311,284.29975413531065,284.6557047171518,285.0678653046489,285.4462992567569,284.8429353716783,283.8473233706318,283.5268746134825,283.10941925738007,282.7793005844578,282.3514619069174,282.22765555698425,282.3110081725754,282.1457623480819,282.986232674215,283.5640852334909,282.9393605883233,282.5445404550992,283.4594050515443,283.3661123444326,282.4313831431791,281.8833108567633,281.8678465015255,282.321192686446,281.67397359618917,282.2755357110873,281.9206810328178,281.91139005776495,282.02953684329987,281.98265249095857,282.06794797163457,282.65076694404706,282.4096012492664,281.7850673752837,282.18018402857706,281.76957190968096,282.6517878244631,282.9792865132913,283.0672914390452,282.3107832376845,283.0276547446847,283.44409059593454,282.5761078717187,283.27196110831574,283.3034539972432,283.53305029543117,284.43505580257624,284.6958332103677,283.72219075867906,283.91147319367155,284.7035620417446,285.589512294624,285.4154781033285,284.73726665461436,284.1775915687904,283.46831244044006,282.71669856645167,283.1691571874544,283.669910449069,284.4506950452924,284.29175765579566,284.80357922799885,284.49178720638156,285.4655290450901,284.6865887241438,284.84501344617456,284.9801914053969,284.11820009863004,283.7917326753959,283.5272780205123,283.68076880369335,282.847249770537,282.051808336284,281.98981854645535,281.365494905971,280.6358026834205,280.3691059346311,280.19635904114693,281.1937281899154,282.15805754903704,281.1886578607373,281.5953584937379,281.54503827448934,280.9750647190958,281.0503183645196,282.0130901453085,281.6718528023921,281.40588559629396,281.38522525317967,280.66850910754874,279.6759531404823,279.02450123568997,279.0751745332964,279.76192391850054,279.2336839083582,279.4072997327894,278.53211156185716,278.61464723804966,279.02292756410316,278.2943945568986,278.2532729948871,278.23428037855774,278.296224584803,279.06214626831934,278.5967033552006,279.0681451219134,279.66153037454933,279.7357429517433,279.04365475149825,279.87079216493294,280.349567594938,279.7146280379966,279.8183417688124,280.6108031203039,279.8361255014315,280.0013717934489,279.95153649523854,280.4925231304951,279.71437723143026,278.9490947658196,278.13611523108557,278.47246602736413,278.1586177605204,278.4416349930689,279.3168863314204,278.5655111228116,279.5197033835575,278.80849690921605,278.5790095576085,279.31418428756297,278.8654159437865,279.7195205758326,279.9346235753037,279.0134183121845,278.6864587403834,277.84333540452644,278.0443776510656,277.63318253913894,277.7992922035046,278.221919009462,278.09105121996254,278.32291660131887,278.13622645195574,277.1757782641798,276.45600201329216,276.69533893372864,277.05521350586787,277.3250508843921,276.3713766010478,275.49064805172384,276.12956249853596,276.9138209740631,277.67240230180323,277.3474573395215,277.2641379451379,278.00234832800925,278.1642515673302,277.61240087635815,277.61765434779227,276.6694290144369,276.4288412104361,276.73842014046386,275.74786847410724,274.98543146718293,274.35047431336716,274.92819989984855,273.9914602781646,274.262594321277,275.0272870361805,275.9707074249163,275.22972693433985,274.9704201826826,274.2476707068272,274.9668700546026,275.3818321470171,276.10611473210156,275.40362714929506,274.9950584555045,275.6252318173647,275.56037714518607,275.75377678964287,276.1834622491151,275.1959745888598,274.84565445175394,275.46498734271154,275.14098586374894,274.722236732021,274.5088265412487,274.979348633904,275.3928055725992,274.7090622121468,273.80697044171393,273.515728706494,272.9875883171335,273.27745237154886,273.25263980636373,273.7337616831064,273.5850228718482,273.21176169486716,273.97850510291755,274.0694803725928,273.5229142731987,273.4214771082625,273.92583493795246,274.645138584543,275.50200036074966,274.753558753524,274.5990667734295,275.58255019504577,275.8405967783183,275.0730765382759,275.67454994050786,274.7876710901037,274.6233990690671,274.86453568423167,274.7093665795401,275.3120998223312,275.31660756701604,274.65589038841426,275.33014753460884,276.1653984775767,275.6325188744813,275.83642985858023,275.67705714376643,276.3690100153908,276.02525739371777,275.8599489326589,276.7330771740526,277.41023022448644,278.10397305106744,277.3519681850448,276.8177387518808,277.1878151157871,276.918767279014,277.6439223308116,278.0940624624491,278.87276357319206,279.21849959762767,280.11216541565955,279.2628332283348,279.45399165386334,278.54489928204566,278.82847663527355,279.26626727730036,279.47186573175713,280.08147940644994,279.5732021955773,280.10585187887773,279.8262714976445,280.15214189188555,279.73728103609756,279.22032334888354,279.9712774474174,280.4810149506666,279.8411036627367,279.8299990845844,280.3021504525095,280.16119509236887,279.18343040999025,278.6600277638063,279.61049355659634,278.91149363154545,279.59721275558695,279.2084209918976,278.9430083236657,279.67997707705945,279.472211684566,278.4874411970377,277.5433372715488,277.44722630782053,277.57593835517764,277.5799486511387,277.69777771737427,276.7193452678621,276.6518769604154,276.7339947614819,277.6749384533614,277.43577496986836,277.4946776605211,277.8887187903747,278.495993018616,279.27786722267047,279.76534680183977,280.0960634429939,280.9163294727914,281.8403544416651,281.6444665938616,281.96293015405536,281.67895053187385,281.2173402188346,281.13073483575135,280.6069174846634,279.96922600641847,279.3396619600244,279.33774440642446,280.302272265777,279.8802123614587,279.3497215374373,278.93990123737603,278.4080998059362,277.545945991762,277.44553847424686,277.5205781455152,277.1687652664259,276.3435001526959,275.44422570755705,274.7284806976095,275.29592609172687,274.73461163509637,275.7282619709149,274.8606343837455,273.9607553835958,274.5874840221368,274.5516415787861,274.37757545989007,273.6033447892405,274.2199256788008,274.8893156121485,274.9928057035431,274.9240524373017,274.0528163993731,273.07881595008075,272.15014698915184,273.0778946178034,272.79407889582217,271.86807260802016,272.6221519340761,272.54919229028746,272.74340465990826,273.71824149787426,273.06684311805293,272.3663124390878,272.7120869094506,272.22366493428126,272.95680199889466,273.69176004547626,273.14724631467834,272.7428233055398,272.7249953853898,271.85654453234747,271.5493924608454,271.5566995330155,270.6507917214185,270.1029861648567,270.5190989919938,270.3089763377793,270.3551809284836,269.9311007312499,270.618319965899,270.80594848887995,270.63064118102193,271.2494244109839,270.4053813815117,270.06259045843035,270.9576576659456,270.79837380954996,270.50528529752046,270.592701156158,270.71581642562523,270.7404430229217,270.65363517124206,270.374970972538,270.90682311868295,270.6747471084818,270.08737365109846,269.45370417647064,269.6444094735198,269.75602560210973,269.63989622239023,268.81268300209194,268.41624659020454,268.54779097251594,268.32168983016163,268.7386519573629,267.7909642131999,266.87107429187745,267.54171506967396,267.7467148830183,268.71437032939866,269.3941059242934,269.52543478878215,269.81282517593354,269.1183947958052,268.7972885435447,268.41182718845084,267.6482534459792,267.18283904436976,267.21616654796526,267.62569903209805,267.6924524428323,266.8050842494704,267.4904242279008,267.9223723812029,267.0299683739431,266.46810556249693,266.1753622177057,266.2429980058223,266.00920285098255,266.13282981934026,266.9969154475257,267.00931643601507,267.56595176877454,267.25135698216036,266.59015933424234,266.2555135679431,266.16256690444425,265.49351855693385,264.6389943608083,264.77101084124297,264.599884217605,265.27028771769255,265.44579961011186,265.99214256415144,266.8691617087461,267.041480679065,266.3735839589499,266.28174181561917,265.55511740222573,265.1436284366064,264.35058272164315,264.99471668247133,265.92716250615194,266.12678357819095,265.23515274375677,264.83003535913303,265.23427672544494,265.6120966570452,265.9957382492721,265.1228751880117,265.7005266738124,266.0590703561902,266.6444866168313,267.5902809686959,267.7026926628314,268.31511106388643,269.04490550467744,269.38148125400767,269.0069221514277,269.2192336306907,270.03207712899894,270.2712540891953,270.55840756511316,269.83057606592774,269.29718563193455,268.7197083430365,268.8187905154191,268.2530961567536,267.51084888121113,268.1224722270854,268.51206312235445,269.2785599087365,268.92885672301054,269.1440466782078,268.9163150433451,269.65045952098444,269.2820768216625,270.11985068861395,269.6801817766391,270.05567041644827,270.6492794053629,270.6547987065278,269.9689589459449,269.6118855481036,269.82532465830445,268.8455300172791,267.8958699917421,268.48261435795575,268.75826468365267,267.84641306102276,268.7061496246606,268.79289993364364,268.22391062323004,267.853926114738,267.9599342783913,267.5073729925789,268.09557063737884,268.1769578019157,269.1245871242136,268.6464185034856,269.55715372320265,268.71016035880893,269.298956093844,268.8658798709512,269.7210655398667,268.8275658399798,268.4597723763436,267.58484481833875,268.354190624319,268.7212857706472,267.8257099846378,268.7092688707635,269.0331345726736,269.239280262962,269.13707100134343,268.448395349551,269.04478424973786,269.0891109588556,268.919801233802,268.006695327349,268.9054602701217,269.0401415321976,269.129867318552,268.8454225054011,268.6676656412892,268.3895863657817,267.6583535671234,267.8640362797305,267.7040524049662,266.8780334368348,267.31663625407964,267.54220493976027,267.64394215866923,267.96178623102605,268.6265400866978,267.9076945404522,267.2173943896778,268.1070210626349,268.8454453316517,269.6171639431268,270.15197635255754,270.68300829827785,271.35085294861346,270.9579624161124,271.0210364218801,270.7813290753402,270.393621487543,271.20014398824424,271.45897936075926,271.91995902126655,271.191206113901,271.0470571410842,270.2616421733983,270.4219672405161,270.859408529941,269.96915408037603,269.32433414133266,268.8993520680815,269.1732879402116,268.5200687358156,268.3737956197001,268.9959822506644,268.8884382788092,268.3116985009983,268.5581468655728,268.1238005696796,268.7082009050064,268.48248895816505,268.38706852775067,267.5727738374844,267.87080950429663,266.9045508299023,267.43056529806927,267.6236474351026,267.0940127642825,267.02718268474564,266.32643200363964,267.0570845166221,266.0742696458474,265.1816702489741,264.5432066489011,264.82670893054456,264.1656157034449,265.11574614280835,265.55491478648037,264.7782057886943,264.30237461254,263.34815456625074,264.12603064766154,264.791232611984,263.93796675791964,263.6815228094347,264.04367250110954,264.05207740934566,263.4491092627868,263.7298139408231,264.49914724892005,264.2529441360384,265.19001455930993,264.293886967469,263.79954227013513,264.7905495148152,264.24535970622674,264.5879752924666,264.2203406631015,264.2914148969576,264.5432805493474,264.87393762078136,265.618218310643,264.7059652688913,265.4952980331145,266.3704470312223,267.06915490143,267.9954329961911,268.4451139587909,268.8563634129241,268.4690999481827,268.8565907878801,269.1413074838929,270.07048389222473,269.7808763240464,270.74307258427143,271.09660120727494,270.632798967883,270.64914197381586,270.7339868340641,269.88119587348774,269.75372565258294,268.9252873309888,269.37069485662505,268.735068758484,267.866826900281,267.22215479100123,267.9278925219551,267.5462182466872,267.5659711705521,268.34320572111756,269.04810886317864,269.14134704321623,269.0827674199827,269.78954748110846,269.4417112679221,270.1635543615557,269.9899324821308,270.5090482439846,270.6874184124172,271.62095353379846,271.439694840461,271.68074409943074,271.9735810607672,272.81694255396724,272.98339428473264,272.90814159531146,273.27548090880737,272.35277683474123,272.8550948537886,273.5035094213672,273.49663704354316,272.9403248196468,272.16917392099276,272.38560516992584,273.1536575453356,273.26350690890104,273.71518025361,273.9730857978575,273.1119878157042,272.6938884705305,272.25968966493383,272.2858959287405,272.0412866510451,272.19297225866467,271.5321725299582,270.99686904717237,270.0205307886936,270.423928105738,270.3761776466854,270.0854843244888,270.520173357334,271.3731361092068,272.0110392542556,272.73571321181953,273.611703268718,273.5765371439047,273.15318043436855,273.04801377654076,273.3195114643313,273.0831355508417,273.64467809628695,273.8743636771105,274.4303778940812,274.7121955608018,273.90858520613983,274.0424099229276,274.23592654941604,274.0353452428244,273.0692960289307,273.34332331689075,273.8085732245818,274.42686128942296,274.27878860617056,273.84869902580976,273.99994910368696,274.5536817894317,275.2176207564771,275.23017037147656,276.0274149556644,276.3160564918071,275.51751413941383,275.94914735434577,276.35876593133435,275.4710940271616,276.2543567623943,276.0877432744019,275.4901807066053,275.2931503574364,275.76859117951244,275.2264450658113,275.9240041160956,275.9112012460828,275.7712620184757,274.980735831894,274.74690413847566,275.0157456002198,274.7278310926631,275.3687494797632,274.7791887521744,275.7013137410395,275.9130719904788,276.2805503853597,276.65466327918693,276.39813774172217,277.1922406582162,276.33283979306,276.65601046476513,276.0280125788413,276.7853747885674,276.8752703522332,276.36546435859054,276.83492593467236,277.3911894215271,276.9999940325506,276.5300123351626,277.3377533815801,277.2818121043965,277.16630468145013,276.8704563751817,277.6686066808179,278.38886429183185,279.0046384027228,278.33523135539144,278.43980893678963,278.1396951135248,277.75700558302924,278.6161632640287,278.4613968161866,278.6892694523558,279.10028058988973,278.74627061747015,279.29538280144334,279.2620938178152,279.0569728659466,279.7792552211322,278.8360819192603,278.51265292428434,278.3345194705762,277.4984468393959,277.7581122913398,276.90617829561234,277.8153844908811,278.7677039112896,278.66659254208207,278.97197337821126,278.49610245088115,278.43505788082257,279.07576267933473,280.0688255415298,279.0697942515835,279.06531952507794,279.9194785435684,280.028844834771,279.71619146550074,278.99419087544084,278.967672502622,278.68358277902007,279.2484053648077,278.87584090139717,278.0801548473537,277.9459113343619,278.6793458671309,278.94662304688245,278.1263273055665,277.6680553853512,278.6564833605662,278.78036221070215,279.4469110923819,279.9637443711981,279.31205856008455,278.81166956573725,279.7455858029425,280.15346069959924,279.5788422753103,279.0216750218533,278.9447705983184,279.25323740113527,278.55900214845315,278.11697141779587,279.1089675151743,279.73423408996314,278.7967724460177,279.01469616033137,279.4170174584724,280.0440851044841,279.5313642551191,278.9988455227576,278.0539899049327,278.3838230986148,278.48087209044024,278.6690701735206,278.5984937688336,279.58543584449217,279.1990490620956,279.46218206128106,279.3186031342484,279.9779593581334,279.10898634325713,278.1579268742353,279.13639128254727,278.5055045890622,277.7432899149135,277.40948518551886,276.84699346497655,276.71212315699086,276.2460791571066,276.11935890000314,276.86451354809105,276.64911551075056,277.0654195640236,276.103749809321,277.0450879172422,277.9255678858608,277.65840762946755,277.58354525314644,277.1715571763925,276.331852751784,276.0440497905947,275.7024672180414,275.54688331717625,276.13707885099575,276.01273101288825,276.7151040281169,276.3466184325516,275.7739058579318,275.0683668553829,275.6443278165534,274.8850553156808,274.24368893448263,273.69232038455084,274.6237834081985,274.8451522667892,275.1433547474444,275.105183607433,275.1334676523693,275.241792623885,276.1365774855949,276.36977374507114,275.5103254429996,275.9402237557806,275.46949909906834,276.09450934128836,276.6857714280486,276.33871350903064,277.1611592550762,276.99489041091874,277.78353814641014,277.85981228901073,278.6946255238727,278.10976694338024,277.3193352515809,277.99681097920984,277.70842589391395,278.6890892633237,278.597055722028,278.10313402768224,278.15319568663836,278.7174796690233,279.2677707192488,278.49805646482855,277.795425826218,278.55780210951343,278.97054210538045,279.5243706894107,280.0675916839391,279.40135392546654,279.2211302369833,279.2644729646854,279.90535522205755,280.54202580824494,279.90047278488055,280.0878056115471,279.7498751534149,278.7674796706997,279.2851177677512,279.28743109153584,280.0820743464865,279.7714771707542,279.4713511718437,278.8356368718669,278.85916324332356,278.34915682207793,278.28595562744886,277.44410589756444,277.05258020339534,276.78518833080307,277.3574321381748,276.3830470126122,276.30156717728823,276.1803166451864,275.3891951581463,275.69358284259215,275.19881039392203,274.70803801110014,274.26052472088486,274.3359133359045,273.70208120252937,274.4223550176248,275.28706785338,275.11268149875104,275.3032513014041,274.72981477016583,273.9898837711662,274.53740069968626,273.57609999133274,274.4541568355635,273.7236286648549,273.709001253359,273.31638672342524,273.35336978919804,273.52406580839306,273.4931753189303,272.8726293873042,272.7772911004722,273.7066141166724,273.3060147105716,272.5447952179238,271.9709579166956,272.85621934151277,272.8777202256024,273.45367420231923,273.88888933788985,273.36721664341167,273.96572858607396,272.99993037385866,272.2362326104194,271.85621635848656,271.7566556944512,272.23865629918873,272.59010194055736,273.53292701160535,274.08664943045005,274.32120980415493,274.0739390789531,273.7094471002929,273.1311137666926,272.7122543519363,273.6988991131075,273.8876088159159,274.3624643329531,274.68027330515906,274.6591136264615,274.27308433596045,273.395024781581,273.79067899566144,274.13403613865376,274.4845200688578,274.32490338990465,275.3120736419223,274.38199192099273,274.4447074327618,274.2528961477801,273.9213049374521,273.3363793576136,272.4029666148126,272.31617629993707,272.7394858007319,273.6819357383065,272.7746934480965,272.29284786153585,272.753745613154,273.66293686954305,273.108342890162,274.0676191523671,274.2009489168413,274.70270603336394,275.17663726815954,276.0422666971572,276.3350654463284,275.7623967900872,274.8012443599291,273.98376344842836,274.3153201062232,274.2987882825546,274.59022089093924,273.92605170048773,273.15969365881756,273.42474161600694,272.7164049036801,272.5779492231086,271.66517733363435,272.4724364723079,272.8153519090265,271.8510899548419,271.9542159778066,272.9052923875861,272.1334701394662,271.68243846157566,271.08164106542245,271.3297896035947,271.4550940124318,272.2879056544043,272.8000726653263,272.5225276276469,273.12465415801853,272.81495837587863,273.63803879125044,273.3064376069233,273.9728590887971,273.3128967289813,274.22247019130737,273.9769194703549,274.3134426246397,274.4610984083265,274.7458657603711,274.67619487224147,273.95002408651635,274.7100138994865,275.1295616356656,274.3645215691067,274.65557608986273,273.91784339537844,273.79524631705135,272.8666873490438,273.63202019641176,274.3422383791767,274.2978898398578,273.5090590789914,273.79626572551206,273.6789466147311,274.25569879775867,273.5389866316691,272.6364838927984,273.5923777553253,274.307440596167,273.3363969977945,273.51269818190485,273.91027275286615,273.9186875154264,274.5725012808107,274.41472833929583,273.95483353873715,273.9984948448837,274.7768310671672,274.0151978386566,274.37082314817235,274.152988740243,273.3203572561033,274.0246721901931,274.7083345861174,275.6314589958638,274.76863162918016,274.2750596869737,274.62540437374264,273.9203204684891,273.1466732909903,272.2233268539421,273.0135565563105,272.6899863430299,272.479339428246,272.4613974681124,272.4419954526238,271.59193316381425,270.9118444463238,270.30715491902083,269.6118685333058,269.6338744908571,269.3128341170959,268.9202142348513,269.9197808136232,269.44403739552945,269.90293068857864,270.8247988750227,269.88002589531243,269.97613307647407,270.6482405150309,271.0038986536674,270.37014966923743,271.1348470104858,270.1881313305348,269.29722044663504,269.0411464688368,268.7405575918965,268.2745365970768,268.45222074911,269.1123801385984,269.96506285015494,269.27437460096553,268.6393138174899,268.76150499423966,269.287296267692,268.6332346634008,268.69350310368463,268.39046724513173,267.46644025016576,266.7560433484614,266.24260512553155,266.4432543772273,266.18157833302394,265.53318537864834,266.43666274193674,265.937282552477,265.834783221595,266.0234991274774,266.8887796080671,267.00371367577463,267.05832403944805,267.44585213577375,268.2011998924427,267.50538769643754,268.2043663705699,268.9911347804591,269.712826624047,269.93866709060967,269.7525762366131,269.52028099726886,269.4560173698701,269.23167644115165,269.794993866235,269.9940349557437,269.33802140364423,268.7776740430854,268.43048459943384,267.6421012082137,267.99407166521996,267.0101171261631,267.5307334139943,267.90227331221104,267.2286479151808,267.4794439407997,267.57659004069865,267.0150823718868,267.0704806796275,267.9439826994203,267.09876455925405,266.1404012516141,266.2760719405487,265.8700289935805,265.98810586705804,265.2234542281367,265.7718849722296,266.70590726612136,266.34909967985004,266.5064986147918,265.89370057638735,266.0060923411511,266.7915453882888,265.81002423819155,265.32535240845755,264.7472976385616,264.3088471516967,264.4805849166587,264.0001005139202,263.1594491074793,262.243404654786,261.5872363401577,261.39796601748094,261.6107693500817,261.5080936043523,262.06066272361204,262.2637802963145,261.8017775011249,261.74154171627015,261.3331606350839,261.584591885563,260.7596384854987,261.0035490761511,260.4141853908077,260.6147011015564,259.94471405027434,259.50971255032346,259.1466613379307,259.35649782884866,260.325218513608,260.8301532496698,260.9878267608583,261.00647225324064,261.9736536061391,261.2033577123657,261.59900891035795,262.4135136362165,263.2075307476334,263.54997088434175,263.5881569632329,263.31361202755943,262.6516173365526,262.1683163912967,261.4798718513921,262.2575020021759,263.0481863375753,263.69216181570664,263.21974632609636,263.4894505403936,262.6585118304938,262.74589683674276,263.09444488817826,262.52186422096565,261.71372391143814,261.49210256524384,261.62210675608367,261.6738872183487,262.5243909014389,262.45179345132783,262.31301322951913,262.81839677365497,262.46162310475484,263.1377096781507,262.3556760298088,262.32517264876515,262.48023700527847,262.49153940798715,261.99511253647506,261.58147320803255,261.83324402337894,262.40322322770953,262.1049314029515,262.05693498719484,262.8297584899701,262.469893516507,261.76201121369377,261.83196422224864,261.3189539909363,262.1416077921167,261.48983715986833,261.3440149547532,261.41648138547316,261.9959978577681,262.9650336904451,263.439452401828,262.49968304438516,261.9958983371034,262.7888161437586,263.42637000698596,263.6230357410386,264.2127632810734,263.74648818094283,264.0592485400848,264.22893813764676,265.1379047506489,265.01855383301154,265.9283895608969,266.343017839361,266.25738125294447,266.5246563409455,266.49253198923543,266.9419762911275,266.4705847417936,267.0359245208092,266.51880377950147,266.2262643794529,266.30354581959546,266.23151220940053,266.20376717764884,265.4180747438222,266.1212626011111,265.4074282627553,264.4173594014719,263.9695866247639,264.37812143098563,265.0831650351174,265.13509395206347,264.56977404793724,264.05184933403507,264.57337140198797,265.19960036035627,265.2713800314814,265.6153923794627,265.41065273433924,265.5756340390071,266.37060834560543,267.3614745447412,266.9328070227057,266.6756605133414,267.0537722581066,267.81714524375275,268.28305412083864,268.8746634423733,268.9682405120693,268.60675935586914,269.56127231707796,269.25695285433903,269.28544912301004,270.27390567213297,270.3632158944383,270.45339389145374,270.40092490427196,270.68406284740195,269.90767734497786,270.39793183794245,269.5629265476018,269.2885792888701,268.8604583684355,268.07355363247916,267.54728264315054,268.0502526895143,267.2662746864371,267.7633820436895,267.329685671255,267.0204866384156,267.43412029882893,266.5050962003879,266.50170249911025,265.6957010971382,264.96979480516165,264.10280824359506,264.45920798461884,264.2578881662339,265.01215299777687,264.93909716652706,265.84069167636335,266.8192848684266,266.94309998024255,266.05210050428286,266.821639822796,267.78502203384414,267.6241596424952,267.23371007246897,267.21866442635655,268.0465338937938,268.5968462037854,269.39335031993687,268.9741928665899,269.5463569718413,270.4055170449428,270.41792884096503,269.66384545946494,270.31809923797846,270.76555008860305,270.35862832982093,269.74154042778537,270.5643699779175,270.8054323242977,271.67367165070027,272.4281921754591,271.61098887817934,271.2469900636934,271.8243336910382,271.57308628596365,271.1371602709405,271.9797552372329,272.83701040549204,273.55435919901356,273.46887840656564,272.6247708108276,271.82386491447687,270.9417157699354,270.4993613427505,270.2427600999363,269.8239204939455,270.7202872140333,271.6027664230205,270.9021274163388,271.2095533516258,270.5503674899228,270.42526454431936,269.43373596994206,269.7442750730552,270.645634023007,269.9283252572641,269.16205868450925,269.28469534311444,268.8926229500212,268.0757254441269,268.6281078294851,268.63491448108107,269.36663396749645,268.5479613193311,269.2010140242055,268.6518611428328,268.92872993135825,268.2077456670813,267.34567662794143,268.0346456593834,268.8583069057204,269.2062244643457,268.8581789168529,269.3582496205345,269.7918957141228,269.9567129695788,269.2708228356205,268.331560831517,269.0936908745207,268.3021969473921,269.01776784518734,269.97096681641415,270.3128552865237,269.43618266656995,268.76854859199375,268.679535087198,268.80160385835916,268.1902855359949,268.99773365678266,268.31387418229133,267.93914870684966,267.476346810814,268.2743318178691,267.91381422476843,267.65063637075946,266.86657214537263,266.51647161878645,266.74544744659215,267.3497491898015,267.11597096640617,268.07287113321945,267.6718969172798,266.86216415837407,266.6932391724549,266.0198813630268,266.67588300909847,267.3627248615958,266.5634853504598,266.9792386046611,267.0958540099673,266.49492219509557,266.9180042655207,267.04663074202836,266.9275765088387,267.34101980319247,267.1990762152709,266.2355039399117,266.3945910278708,265.5745901479386,265.571870688349,265.9319246020168,266.4215486063622,266.4404830862768,265.7759689674713,264.8980403612368,264.9754826561548,264.2856917344034,264.97811705991626,265.84829233121127,265.36057967459783,264.5501578906551,264.9669075012207,265.20462458906695,265.65885549923405,264.76140912622213,264.6627052393742,264.6822867509909,264.84363185381517,265.2221789811738,265.601275825873,265.68450978398323,265.28055243659765,264.635547704529,264.999494375661,265.5588049525395,266.0088901575655,266.1152384728193,265.4179220991209,264.49715590523556,264.8226472074166,265.03011569939554,265.7953196032904,265.1919064982794,264.67633789777756,264.83094373578206,264.8476202352904,265.8292409097776,266.56417560437694,267.4738526782021,266.71293231472373,265.8335730000399,266.63391967955977,265.77158054243773,265.36597079224885,265.7771870549768,266.17905443068594,265.2661975012161,264.4323866032064,263.5586975370534,262.90510502364486,262.4548496045172,262.44215698959306,262.73299108818173,263.166368348524,263.8215959146619,264.394526951015,263.9093364463188,263.10183657193556,262.7888673734851,262.5634742737748,261.68034480093047,261.41184870665893,260.9856932000257,261.0139746959321,260.4980352069251,261.2661617109552,261.89044251292944,261.75599611969665,262.2751251813024,262.20756033901125,262.47959992242977,262.9299719016999,261.9304807437584,262.53295169817284,261.70318129705265,260.8178866878152,261.5139010986313,262.19245085678995,262.58841377776116,262.15520712640136,262.94821086572483,262.7005502744578,263.0920356628485,262.7885973858647,262.483033595141,262.033868085593,262.3025849144906,262.78702472662553,262.4779832432978,261.57940950477496,262.1095961625688,262.73243623552844,262.3323137718253,262.2463195519522,261.44560601748526,260.4782183547504,259.48091790033504,258.9042431898415,258.9803926520981,259.3782167634927,258.7354703168385,258.0306953936815,258.41088082501665,257.48427189234644,257.76026209956035,257.8933532750234,257.9664644594304,257.7171445921995,258.3448515655473,257.7511824313551,256.91575524024665,257.586258511059,256.5978037538007,257.46008236613125,257.6632052124478,257.5747694247402,257.8161048856564,257.54884540475905,257.0338733252138,256.7549755005166,257.2390148350969,256.534612681251,255.72355620982125,256.35471912054345,257.19745382480323,257.4364571259357,257.2874599485658,256.4230555440299,255.7803638218902,256.026236099191,256.4800850567408,257.3037518989295,258.2599076856859,258.33440673397854,257.98987437365577,258.2831054283306,258.1944728749804,258.94436144968495,259.60575649747625,258.83274265006185,259.14701556926593,259.47118310723454,259.4098047497682,258.5497192721814,258.1270805266686,257.3994775027968,257.0551166832447,256.43917612731457,255.53109466144815,255.6373827154748,255.4932218771428,255.61201404873282,254.79138426110148,254.07212356477976,254.80649015586823,254.30571929644793,255.1176432571374,255.93004174437374,256.9031985052861,257.49703353550285,257.3109182170592,257.3593592545949,258.07182084722444,257.4632941200398,256.6183823454194,257.4365967339836,256.9091413584538,257.609857480973,258.20932070957497,258.6367847728543,258.1919252006337,257.4562053158879,257.72529141418636,257.3456631791778,257.4663967420347,257.2564879078418,256.4645190378651,255.97833265922964,255.9383325036615,256.78129208739847,256.47872371273115,256.49572233343497,256.876427419018,256.9271458773874,256.6686656945385,255.7283791936934,255.94505975861102,255.9454087675549,255.54862265801057,256.2576338094659,257.1600026236847,256.878112884704,256.7964130579494,257.10918128862977,257.2276560924947,257.59543972834945,257.64214579574764,257.6459718947299,257.24517914513126,256.43908480973914,256.6589317121543,256.7853171406314,255.9338043704629,256.04509164206684,255.68036346463487,256.00447307899594,256.32214960083365,256.2298483704217,256.01028388831764,256.6272492930293,257.19450319418684,257.7827862240374,258.5826968071051,259.3624014244415,259.4702327097766,260.26627728994936,260.38921928824857,261.04162248643115,261.44792717089877,261.55953782610595,262.4200503770262,262.3696742905304,263.30950455367565,264.18903666594997,264.901967571117,265.7868407233618,265.36887712264434,265.793752216734,265.86418764758855,266.12162528466433,266.2858059355058,265.937581488397,265.7931839711964,265.32154332241043,265.33116391766816,265.4700676454231,265.31265151128173,264.95802564313635,264.47548988554627,264.7949603279121,265.5892289853655,265.93406073609367,266.75555086834356,265.7993547897786,265.97680109972134,266.035963606555,266.1548742647283,266.6673174840398,267.2537063937634,266.48135662963614,266.8647786169313,267.6529810843058,266.83931242115796,266.77609521429986,266.81027575349435,267.61344920797274,267.0282044643536,267.1662867022678,267.86782405665144,267.7469366840087,268.226353101898,268.11300000501797,268.4948036647402,269.051582895685,269.8449278594926,269.4137352341786,268.7235719235614,269.4764675865881,268.55940017383546,269.04751725820825,269.93751730723307,270.00644595362246,270.20413167309016,269.84939894545823,270.4982989435084,271.05230084992945,271.99764844356105,272.1155840884894,271.92718310281634,272.3531405059621,272.2412034291774,271.87921798275784,272.64336454775184,272.96351994294673,273.6834472026676,273.67884811386466,273.59532007807866,273.017546097748,273.7628982742317,274.45873544504866,274.95542554277927,275.75861519528553,275.21887859655544,275.0214142431505,274.67722309567034,275.48512532608584,275.74904880532995,275.64096282748505,276.20279572345316,277.1055832961574,277.02949711913243,276.7489761780016,277.1538905464113,276.16358952224255,276.4490987951867,275.5727807143703,275.07340278383344,275.5183555870317,274.583957654424,274.54203587723896,273.86879128357396,274.64369678962976,275.31979305669665,275.9695850708522,276.6294818306342,276.8065883195959,276.17506568552926,276.24714965419844,276.4230546071194,276.35876269778237,277.2499638078734,276.9649241720326,276.3901960221119,277.1127737406641,276.8354202574119,275.9660686850548,276.0471026310697,275.6630403222516,275.8855487909168,275.7417023014277,276.2852282281965,275.45912334602326,275.34853671723977,275.0200012223795,275.71948854858056,276.130113475956,276.0829362743534,275.8835743670352,275.56056035868824,276.28353848448023,275.85471301944926,276.1665251334198,276.9597884025425,276.7032213313505,276.3033295138739,275.4927785079926,276.11480458360165,275.4613419752568,275.7231619460508,275.7356608211994,275.33429000061005,274.9963444909081,274.0101633798331,273.7196671748534,274.673598900903,275.2969662770629,274.5185639616102,274.89865949749947,275.3729418977164,275.8524254797958,274.9309092834592,275.2392053999938,274.51502759195864,274.9329003547318,275.3756061755121,275.35031050350517,275.97570592723787,276.21672336151823,276.0609037755057,276.3204793743789,276.91466782521456,276.2611071621068,275.8740178174339,276.7871342119761,277.4556586300023,277.1549967797473,277.76559244142845,278.0967123406008,278.1194565119222,278.25096324365586,278.75933982711285,279.32770439842716,279.05155034549534,278.12569361086935,278.3977550868876,279.1859316355549,279.6119638714008,278.8924434846267,278.2644112785347,279.2249195324257,279.19886592496186,278.2822919972241,278.7578878272325,279.3479293594137,279.2044607969001,279.92912814673036,280.17038742173463,281.00268110912293,281.63287964463234,282.58463659184054,281.85890912031755,281.74616151535884,282.15923155797645,282.36755257193,282.48796903016046,283.033129258547,283.8602785123512,283.0537740555592,282.6662151152268,282.1168837551959,282.6932606152259,281.9533897941001,282.20460213162005,281.6303090509027,280.89700652938336,280.13334891945124,280.92581851314753,281.6848540008068,281.1104008387774,281.82500380510464,281.44288525311276,282.2611147281714,282.1289767054841,281.76795823313296,282.500882148277,282.73967296397313,281.9664298100397,282.4378978284076,282.67759029055014,281.98313799872994,282.92868509935215,282.28674234077334,282.6875215480104,283.45969562465325,284.3891752217896,284.1451627998613,283.569887064863,284.04810861032456,283.79266049480066,283.1172799486667,283.0856334171258,283.3466355614364,282.8203017087653,282.1608892949298,281.9519487824291,280.99048770591617,281.94450984243304,281.20120666828007,282.152228851337,281.71181039791554,280.719650499057,281.7021719487384,281.5586500209756,280.5987899340689,280.1386656211689,279.28375250892714,278.51785263512284,278.37414288381115,278.62554459739476,278.5707230558619,279.48959316592664,279.690418869257,279.160670498386,278.242943553254,278.9157161838375,278.1328437104821,278.3461206010543,278.83798708952963,279.24397556623444,279.7101069507189,280.0347098992206,279.4752597520128,279.20704364590347,278.675675870385,278.469312725123,277.7566552166827,277.0502918390557,277.1830603373237,278.0455395244062,277.55607517808676,277.56362036056817,277.60685361223295,277.1797728985548,276.76931366091594,277.2901930422522,277.5923157343641,278.37917590280995,277.6672823210247,278.24450413370505,278.6724861343391,278.2707236963324,277.6363869085908,277.6432884577662,277.82458229595795,278.3627090905793,277.76794208725914,278.71248572086915,279.59324396261945,279.9282695367001,279.42839428037405,280.29263503756374,280.0933256861754,280.99068653583527,281.49429453350604,280.6827998245135,281.171943240799,282.0590404593386,281.22047840896994,280.2496141297743,280.1967787053436,281.1542910938151,281.7362305219285,282.1064196755178,282.5933941747062,282.4759250492789,282.63200351037085,282.074396005366,281.35544043267146,280.7826572577469,280.6513082026504,281.06788205029443,280.9582211333327,280.45329545950517,281.0953013249673,280.5956818605773,280.8544511529617,281.7972613722086,280.96263107750565,280.1355320010334,279.7776578143239,279.2250370704569,278.33178712707013,279.08852001372725,279.52844995073974,280.2505032699555,280.3150015142746,280.55022347997874,280.5706046060659,280.6800383650698,279.71201890939847,279.77647264814004,280.73388047143817,281.37500367639586,281.65805292269215,280.89135698322207,280.03003851603717,280.73241222137585,280.84944052202627,281.3329925383441,280.7371689048596,281.21140474965796,280.8419374572113,281.6726003959775,281.5900093461387,281.18638820480555,281.8163835420273,282.454225004185,282.4684580103494,282.076915490441,281.4685682929121,281.223610709887,280.5622837841511,279.76562523748726,280.2934166584164,279.4556339895353,280.02370660007,280.7766155395657,281.72057716408744,282.0885892766528,283.0463231145404,283.0354524194263,282.59421243937686,283.2925908169709,282.39268039679155,282.07703725947067,282.93838077550754,282.5118398196064,283.02348883869126,282.9339525443502,282.0190387349576,281.46962674241513,282.4226766778156,281.8466696855612,282.6717975977808,282.7779702139087,282.48734832927585,283.25498967804015,282.31654951302335,281.8889445126988,282.4192855260335,282.5842011636123,282.72173773497343,282.84092415543273,283.49419741425663,282.5336674139835,283.4891385459341,282.81688361475244,282.56013430887833,283.224852852989,283.21369681693614,283.85014226287603,284.26309783617035,284.6176177179441,285.03612381592393,284.76103830803186,283.92014448391274,282.97874082811177,283.4079448697157,283.481134228874,283.47030532872304,283.68859311705455,284.60870164399967,284.1411562715657,284.1984299644828,284.38607036322355,283.61862134048715,283.24655142519623,282.3460957026109,283.136754443869,283.35052592726424,282.45356498332694,281.8854428427294,282.18199377693236,283.02401683758944,282.1696864468977,282.21867362968624,283.14443397242576,284.00114341359586,284.14365566615015,285.10333375120535,285.4285703036003,284.81665250565857,284.93839773582295,284.7492848322727,284.65807858202606,284.0372576271184,285.02187299495563,285.74897829350084,284.9769718204625,284.490725829266,285.28521140059456,285.6701999818906,285.4201329522766,285.07632730249316,284.89547232259065,285.0468416977674,285.93019079603255,285.082583992742,285.62155177490786,285.0047639529221,285.83186423638836,285.30587564827874,284.86487890128046,284.01920448895544,283.7204410354607,284.30212908471003,283.34137118421495,283.98695665830746,283.66942855529487,283.9165307460353,283.07333540264517,283.8019232098013,283.35821881936863,283.9293979606591,284.7726944517344,284.2604780839756,284.6863875836134,284.2590223099105,284.72256843885407,284.8585519385524,285.34963825158775,284.7399075315334,285.53885596897453,284.64482971234247,284.96559939114377,285.75149074057117,285.22694420581684,285.2163537913002,285.9134654882364,285.4664706806652,284.77059505321085,284.1031514094211,284.33930132491514,284.41512962430716,284.5643138997257,283.8393733683042,283.4278114135377,284.2429363243282,283.6751330588013,282.99394571967423,282.3330673770979,282.1315639796667,282.2395948912017,281.99390052771196,282.53364492673427,281.6688873535022,282.59788336325437,281.8452166286297,281.0049622715451,280.74801218602806,281.7046983507462,281.6790373590775,281.6327600576915,281.1669506956823,281.76355869695544,282.06494423979893,281.36151634622365,282.1429110998288,281.8007430280559,282.2557425899431,282.66445164196193,282.31299177045,281.3399724625051,281.0289733582176,281.798904474359,280.8415640499443,279.9177168896422,280.0058865007013,280.42015703301877,279.42890892829746,278.762130250223,279.41188954608515,279.2530840802938,279.5290003470145,280.04029934154823,280.22578019974753,279.35607997886837,279.09041279088706,278.1953691150993,278.71547868847847,278.5972266769968,277.7915056911297,278.2716907435097,278.7138110632077,278.5873549184762,278.5166822494939,277.58151208842173,278.5577127574943,277.80763128679246,276.99939880426973,276.5005276775919,275.61841359362006,276.1501437788829,276.3690564436838,275.9224982461892,275.01573168765754,275.5773529773578,275.9168370477855,275.9613160318695,275.6801189756952,275.5739374062978,274.83094758959487,275.0476683713496,275.9664881033823,276.79115665052086,276.22053312836215,276.03983696037903,275.489148512017,275.35044106515124,275.2241742690094,275.9682834921405,276.3632688075304,276.849169307854,277.1895859213546,277.61225545220077,278.5391124347225,278.6224556444213,278.0785576682538,277.8149999398738,278.5593767957762,278.8236929695122,279.0920394011773,279.03632956789806,279.1909053521231,278.7682549674064,277.77461861865595,276.9746675044298,277.9512882675044,277.02234930871055,277.48579909000546,277.6078999405727,276.64452390931547,276.89557282440364,277.80387520371005,278.3232217039913,278.5722040957771,278.3535187165253,278.5975794121623,278.2084199702367,278.26362378383055,278.4517561038956,278.8179286136292,279.3298480720259,279.8134288522415,279.70251119975,279.24120808346197,279.79666954278946,279.97617127466947,279.1397180878557,279.3458409598097,279.74683028738946,279.10645197564736,279.3867082721554,279.52041144343093,279.9404411856085,279.1676580584608,279.8497735252604,280.2118735462427,280.45869944104925,280.518515097443,281.41059134481475,281.72861829260364,281.67583000753075,281.060244507622,281.7079981388524,281.5040416768752,282.4812427414581,281.8558876151219,281.55931363254786,280.7310947352089,280.908838827163,281.60408161533996,282.01309578632936,281.34308549389243,281.4629897386767,281.47762685548514,281.80390461487696,281.51830360712484,280.6274846214801,281.5924845431,281.8915899298154,282.7592357597314,283.4632822079584,283.73407887713984,283.885301399976,283.4686914929189,282.57867222605273,283.2327356352471,283.5360494204797,282.96192361647263,283.3111949288286,282.6827586265281,283.1933166743256,282.25213217223063,282.3775456394069,282.7821279442869,282.38507937965915,281.68889224529266,281.41902093961835,281.21382159227505,280.65197481401265,281.4196418602951,281.64988929685205,281.3130446183495,280.57000145642087,279.87325740559027,280.411247250624,281.1837099813856,280.8442777222954,280.640830389224,280.4716784558259,281.41528968233615,281.46824193559587,280.5604377244599,281.20219665998593,280.2819592272863,279.2979597132653,278.5170938731171,279.4274562969804,279.34879843425006,279.56801565364003,279.8969773547724,279.9105018940754,280.49467581836507,280.8550693183206,281.37911503901705,281.13554936414585,280.5701637961902,281.3966296627186,280.6475610155612,281.024488883093,281.8311189189553,282.2766398708336,283.15465445816517,282.6564482101239,282.37152515072376,282.4940651790239,283.0001918999478,282.45783138507977,281.8688181187026,282.32522452343255,282.0625363755971,281.2817977727391,281.1492072464898,280.8718555844389,280.8266355479136,281.565888391342,282.1603196216747,282.54887709766626,283.4200358148664,282.4708234607242,281.5752045433037,282.0729933655821,281.8131538606249,282.3105089953169,282.8908716891892,283.47770765284076,284.4684639191255,285.0901541225612,284.6496362108737,284.13404528889805,284.07185451919213,283.8816247326322,283.9903193633072,284.0116631654091,283.4306655237451,283.0516366120428,282.84494646359235,282.80912501877174,282.80914886062965,282.1658369526267,281.7770089581609,281.5747348861769,282.4371290532872,282.43806176027283,283.4332175855525,282.7446574610658,283.25661217886955,283.7881624219008,283.55081821233034,283.2524436931126,283.50941500253975,283.69974752003327,283.4279909157194,283.08193666813895,282.9222335568629,282.8683838634752,282.61000799993053,283.0276414528489,282.7576692616567,281.8039716328494,281.0702004083432,280.7559202411212,281.2120827701874,281.11038507847115,281.6662469347939,280.91793266730383,281.71199862426147,281.49582900851965,281.8958343369886,280.9640677832067,281.82193987676874,282.0277536679059,281.7350589307025,280.9418817004189,281.19323086412624,281.8307355577126,281.9562049647793,282.47640785668045,281.8283544848673,281.65703114680946,281.73727377085015,282.54291100706905,283.04066065186635,282.0413024327718,281.36986448569223,280.5693396506831,281.35211496334523,280.96336725447327,281.1816576658748,280.5682011418976,280.81171628506854,281.75349650811404,282.30340036097914,281.72447927016765,281.28493402479216,281.5017454433255,281.09129602694884,280.6820223289542,281.2038816208951,281.00288641126826,280.5108282393776,280.08144975686446,280.0105858054012,280.04299626033753,279.90360659360886,280.35091387853026,279.802511815913,280.12479423033074,280.66933712316677,280.7402448123321,280.3912188289687,280.1856965031475,281.0632786867209,281.5910251350142,282.1854220861569,282.20628740126267,282.5389792402275,282.51727522769943,283.17891073040664,283.65296762110665,284.12275093235075,285.04831199208274,285.28906884836033,284.97076628077775,285.20291663194075,285.54852933622897,286.3345074970275,286.7908374001272,286.43225145339966,286.4831000305712,285.71964727481827,285.992447652854,286.953685330227,286.16307330084965,286.35188520653173,285.7157340529375,285.73538259835914,286.21788198314607,286.92915899818763,287.40204294538125,286.82259047264233,286.7471643369645,287.2133834240958,286.8673039805144,287.0019336473197,286.4333536559716,286.5163978287019,286.5580734470859,287.3514848118648,287.8240022668615,286.82905406923965,286.59557480691,286.31191571988165,287.1324445679784,287.14566748496145,287.97580343531445,288.0388312241994,288.7283731405623,288.1187298358418,288.1956016877666,287.3749637096189,287.34796255547553,287.28068511746824,286.3109089117497,286.6101469784044,285.9780056104064,286.77959082461894,286.33779933163896,285.92310612276196,285.43381178285927,285.56123119127005,285.142886555288,285.3996443361975,284.5559736713767,285.06890826066956,285.3338948530145,284.75075130490586,285.6426232373342,285.8312340271659,285.25913189491257,286.2013766323216,286.0671040341258,285.3806379600428,285.58574026683345,285.03314448473975,285.02127968193963,284.5338874924928,284.83552358020097,284.8223152193241,284.6762159266509,284.26634947536513,284.7882574717514,283.8221268709749,283.74518405646086,284.1000246340409,283.29375241091475,283.0003780797124,282.5256699481979,283.0434063836001,283.8823770652525,283.3684485559352,284.1439606663771,285.0791715392843,284.71577982371673,284.22347335750237,285.0570520325564,285.2998759476468,285.99833119055256,286.683310508728,287.106085378211,287.62587204156443,287.03658388741314,286.0596465980634,286.52415197668597,286.26233015581965,286.2153590307571,286.6876438870095,286.9170425934717,286.6730549102649,286.73652736330405,286.2819760334678,286.48320455802605,287.15939315548167,288.0132205337286,288.6359297055751,289.33249316737056,290.1621119934134,289.6756505589001,289.1993320179172,288.25509955501184,288.3401769674383,289.1571626132354,289.9570561433211,289.24265668261796,288.8586327973753,287.95654072239995,288.5994309433736,289.3358066617511,289.7741926214658,289.96611658716574,290.30920719215646,290.8167588021606,291.5688905394636,292.1967276898213,291.7215969306417,291.5654082573019,292.52023742115125,292.12809374183416,292.3876849701628,293.26520250644535,293.5831060758792,294.530649474822,294.8411793024279,294.80509984726086,295.31275594141334,295.97670676140115,295.73040384985507,295.0441746744327,295.2843634886667,295.7321441802196,295.2710172114894,294.3232131488621,295.22010628459975,294.5668543423526,293.7549366420135,293.3877503005788,292.9966705655679,292.92254815855995,293.8028015284799,293.00549926934764,292.3425642484799,292.90296876244247,292.57695476245135,292.87476214487106,293.47697280487046,293.0154499015771,292.25993076339364,292.75241922121495,291.8540865643881,291.26414679689333,291.7648831042461,292.6012026290409,293.2314439243637,293.34635076113045,292.5294282399118,293.1398172318004,293.16309003019705,294.125229424797,294.7882959134877,294.49665419664234,294.20485273050144,294.23638797551394,293.9322505472228,294.21360056707636,294.7011363012716,295.6197111932561,295.9367955182679,296.3423998062499,295.84294840460643,296.25682686734945,295.7078854655847,296.2934802910313,295.8003646330908,295.32031398499385,295.48651408357546,296.43865546165034,295.95727388141677,296.57734223175794,295.8868321250193,294.9457905823365,295.6203790535219,296.11114982515574,295.3150353762321,294.4289197223261,293.5065463311039,292.6156524955295,293.3552376590669,293.94932046951726,293.6447345488705,294.01057815831155,294.64390341052786,293.957969375886,293.45735088409856,293.672551325988,292.7009537979029,293.6854139333591,292.79689096380025,292.57978043193,291.6938373129815,290.8985222890042,290.0845879339613,289.86677481839433,290.70178408082575,291.47646168712527,290.5642882268876,291.5147193870507,291.67934820475057,291.12458242755383,291.05185610055923,291.56388490181416,290.6275686873123,290.70570368366316,291.43411336187273,290.8830179781653,290.5928288293071,290.4660422937013,291.15477717714384,291.3198994761333,291.6572513077408,291.8073420417495,291.9214147538878,291.3312886385247,291.2438639807515,291.7226385874674,291.24045870499685,291.7562800296582,292.2038347539492,292.8091843063012,293.5546931028366,293.26334379194304,294.0330535247922,293.9329182659276,294.214120242279,294.72427889565006,295.5929137347266,295.87320257816464,295.46312484610826,294.9985858378932,295.232775402721,294.37962154485285,293.667686374858,294.6290995073505,295.4693235992454,295.7463385281153,296.02820521313697,295.23764465842396,296.05711390497163,296.19337730668485,296.57168304687366,297.2662000847049,296.39155993936583,295.8526119310409,295.4631786644459,294.98318844567984,294.84214284690097,294.85452807787806,295.24556192616,296.0728457341902,295.15216599870473,294.5490483851172,294.0182884861715,294.0847038272768,293.3777401158586,294.0234058252536,293.9880743958056,293.64470062358305,293.4142165565863,292.6821584170684,293.1128978366032,293.5333081469871,293.16592509206384,292.59496122179553,292.135501394514,292.4890875611454,292.71260802680627,293.31992554618046,292.4606815772131,292.23594233347103,292.21964378422126,291.3564957738854,291.776046522893,291.81589308427647,292.4842794314027,292.16466592252254,291.99741638591513,292.3691770932637,292.13776129996404,292.6195882302709,292.31624732306227,291.9739368716255,291.05537420650944,290.83476990880445,291.4342748983763,291.2874371293001,291.78653418505564,292.02106803283095,291.66554878558964,291.0948487292044,290.2598488847725,289.9100109860301,290.57710173306987,290.1409210381098,291.047389020212,290.1719688465819,289.2940915869549,290.19361751759425,289.68878440605476,290.5215535447933,291.20123964501545,290.86028215428814,289.94720963574946,289.2229381361976,290.18640802195296,290.4119499884546,290.6470265123062,290.6178022874519,290.5658611492254,289.8870631461032,290.7444032370113,289.86906609963626,289.427467552945,289.40652402164415,289.31068440014496,289.13331596320495,289.40648200456053,289.2720353300683,288.6141546526924,289.55785741563886,289.83266985649243,289.9600979136303,290.8944367710501,291.21832624077797,290.60733006102964,290.6406144797802,291.00402911612764,291.4425417231396,291.7136753657833,290.7394880121574,291.56171951582655,291.9198363251053,291.6019803802483,291.2011289540678,291.4757490372285,292.3638048968278,292.5897282087244,291.7030851729214,291.7015119642019,292.3606788730249,292.92225784249604,292.1378472032957,291.41899793734774,290.71527097793296,290.8596773627214,290.6524524712004,290.1124239936471,289.78159729996696,288.9329601447098,288.17853707959875,288.4336683219299,289.011883942876,288.913369406946,289.7814630824141,289.6446588872932,289.555640256498,288.572386064101,289.43253737688065,288.51160257169977,287.97784032439813,287.1428738841787,286.20270987739787,285.27490520710126,285.4937323476188,285.79822736186907,285.978019237984,285.98374067945406,285.1848394582048,284.2209202782251,283.26111017214134,283.59924246324226,284.2782275946811,283.65078312531114,283.87869559507817,283.2110279267654,282.3712424952537,282.25822860375047,282.2878613159992,283.03517949488014,283.4884854434058,282.8582609696314,282.5316723729484,282.06404126109555,282.92849178705364,283.30237569473684,282.54520621709526,282.37005737796426,281.53158687846735,281.9056761744432,281.37411792296916,282.23638048628345,282.28743668925017,282.2347641987726,282.47752027213573,281.9054959770292,281.1562460437417,281.9013575441204,281.65045347297564,282.0080674001947,282.5802882295102,283.4304983536713,283.487658015918,283.21106565976515,283.34155870368704,282.40984759060666,282.7524356218055,282.14041322562844,281.3677477994934,280.63182932604104,281.30670682294294,280.7456678985618,280.4376258151606,280.14217053959146,280.49334773235023,280.8743271147832,280.3905882895924,280.7172477762215,280.17254717927426,280.6203983104788,281.1007653917186,281.50454561412334,281.0038014501333,280.5453102090396,280.06588350981474,280.8407435370609,280.1597546348348,280.158730561845,279.19199518160895,278.3634298304096,278.6081558894366,278.0316448980011,278.57276158221066,277.9913754998706,278.82887865649536,279.44111215509474,279.04633084638044,279.2799008223228,278.31060942821205,279.0085904863663,279.92206827923656,279.2747972160578,279.9421691377647,279.64975538291037,278.988071388565,278.8964764550328,278.86887694429606,278.26267868094146,278.33749821968377,278.88979197572917,278.00424742745236,278.98436410864815,279.1202718340792,279.9049105094746,279.2643764419481,279.7675826414488,279.6638965443708,278.84358753822744,279.7984207449481,279.1823335485533,279.213756815996,279.65937138255686,280.2264714986086,279.4099730406888,279.66285477252677,279.0163436359726,279.9214484957047,279.91188394790515,279.99789565242827,280.36675618216395,281.3125219317153,280.77423662226647,281.52026164066046,280.7250089403242,281.2418189533055,281.0879828413017,280.9365553073585,280.9909993070178,281.67581860208884,281.0749567747116,280.645058396738,280.41191487340257,280.95746153080836,280.15000429097563,280.71017743228003,280.0251234518364,280.0649144416675,280.16473179124296,279.90931346127763,279.7737186001614,279.62805254617706,279.67140642460436,279.7464871769771,279.0590954939835,280.0195077555254,279.5725591722876,279.76993565959856,279.2162048658356,279.4792606458068,280.0262045650743,280.9867047742009,281.61960330884904,281.90789727307856,281.39528048131615,282.13761424599215,282.0439003533684,281.2612174707465,281.9344527963549,282.7428582548164,282.82724292529747,282.59480275399983,281.6244612056762,280.7474952894263,280.7511815256439,280.97336165513843,280.8382182074711,280.0725760408677,280.36901896167547,279.826036489103,279.27304866956547,279.46821260405704,279.408639815636,278.60530611360446,277.8068911698647,277.0965402717702,277.84674424352124,278.6453327052295,277.7327747810632,277.30211777659133,277.6003894484602,278.2169356015511,278.0131390974857,278.4174054423347,277.4739669030532,277.7947832532227,278.7518040193245,279.4216074910946,280.20061497809365,280.409344822634,281.0943713141605,281.9234564672224,282.8938351655379,282.3726619631052,281.9531739722006,282.04657331109047,282.9282211516984,282.5892964480445,282.3405228080228,283.03960730088875,284.0163567136042,284.8706996976398,284.66532802581787,285.2631302899681,285.8224596516229,286.25043860217556,286.3880882184021,286.6683106198907,287.3485067258589,286.77954947482795,286.7589601324871,287.50732375495136,288.1238932600245,288.00332988845184,287.88062947802246,288.670566692017,288.30727521842346,289.0454674321227,288.30341311497614,287.5969327893108,288.22889257920906,287.96766610397026,288.70795847894624,288.783553367015,289.10766498045996,288.2496278900653,288.3627001205459,288.54646695638075,288.9599219877273,289.26574540603906,289.78018043516204,290.37902021734044,290.18256869353354,289.3391052149236,289.2296852869913,288.4693697518669,288.16478753928095,287.4593038172461,287.352252622135,287.3388873380609,287.67920379154384,287.4532822058536,287.99740879097953,287.96180400811136,287.5039370106533,286.8150877240114,285.9524846598506,286.1586047257297,285.91701502911747,285.5511161335744,285.94969983771443,286.7651721937582,287.3846137817018,288.0900902659632,288.9932228564285,289.5729206195101,288.91434283042327,289.60978592094034,289.94472793489695,290.52266368595883,290.48032485693693,291.10286045772955,291.1685080421157,290.2960256454535,290.6440477776341,290.5515001276508,290.68553911335766,291.17211621720344,290.3831455842592,290.546573093161,289.7934377952479,289.5189577671699,289.7655603932217,289.7079452103935,289.55460096430033,288.59627098217607,288.82462927140296,289.0853215008974,289.6915559261106,290.6810895083472,291.33104935940355,292.1944172489457,292.82532458147034,292.8456273493357,292.43657194217667,291.47922842996195,291.40933198388666,291.0414004023187,290.78371881041676,290.52193182427436,290.11013819044456,290.048732531257,289.46238741185516,289.35822845902294,289.8860640185885,290.1598477079533,290.17538756644353,290.5769030377269,290.26487843832,289.72513485653326,290.607810952235,290.6564256544225,290.8960545193404,290.7801440837793,291.1988774831407,290.82230761134997,291.64302215585485,292.3230932583101,291.3672173549421,291.42592936754227,290.57249169563875,290.90820572478697,291.88119785906747,292.4935775012709,292.25698150973767,291.61471446510404,292.43361571477726,293.43015955900773,292.58559720031917,292.4461893378757,292.1718695326708,292.55668837809935,293.01639506872743,292.47648241277784,292.19979573134333,292.8771755518392,292.6524964743294,293.3500684648752,293.2975955531001,293.5194593202323,293.01246815826744,292.08138911705464,292.70131362369284,292.2879327745177,291.85889243893325,291.8372991606593,292.16330452729017,292.266246734187,292.3922209655866,293.3582513141446,292.87540050037205,293.79720060760155,293.09362885868177,293.97540340712294,294.97229062067345,295.7113684085198,296.2971035190858,296.26636906480417,296.1717950771563,295.81261491123587,295.50152313290164,295.75687390752137,296.11788469180465,296.94361515156925,296.45884654996917,296.53060351964086,295.82133283792064,296.4115936313756,296.75315638352185,296.21787853259593,296.426397992298,297.17320775194094,296.8910433482379,297.4989984985441,297.17981554660946,297.5416420996189,296.55360311316326,296.834696339909,297.02293342817575,297.78693834505975,298.19837921718135,297.5467835413292,296.6428375910036,295.9650055244565,295.8478978956118,295.1882461239584,295.02946093678474,295.1321801589802,294.22812042199075,294.5351620344445,294.5561525616795,295.28042878909037,294.284504421521,293.7007728340104,292.9386351942085,293.4006607485935,293.4008234492503,292.88124828087166,292.8586562727578,292.57643823930994,293.3551319385879,292.56912771845236,292.1592055084184,292.55224807886407,292.32823432795703,293.1504645845853,292.39708541939035,292.772801309824,293.31493728701025,292.5662254979834,292.2914110738784,292.93441698513925,293.10856284806505,293.6854037162848,294.3925925884396,294.5190095161088,294.2646426805295,294.82923160493374,295.57378318673,296.48592936899513,296.6569013497792,297.20200036559254,297.80107930349186,297.5453646364622,296.64989558421075,296.0401050639339,296.85364307742566,296.18025126634166,296.4032133091241,296.78282371582463,297.47613654937595,297.90011558122933,298.83091638982296,299.6012263628654,300.4027763856575,299.83011945849285,300.4148935931735,299.81671103369445,300.58925716392696,301.1491033313796,300.92332964064553,300.82959210453555,300.7977457055822,300.45114908227697,301.10655039269477,301.9098733616993,302.10696496488526,302.3778525455855,302.61344913206995,303.251244074665,302.4504375853576,302.12359743379056,301.7267769095488,302.1585479080677,301.4506327197887,301.40254489704967,300.9415656514466,300.42031976766884,299.690372758545,300.4070570776239,300.8597134142183,301.8041633940302,301.6660662125796,301.85662215342745,302.33682426949963,302.25302911922336,301.63593835104257,300.7364403367974,301.38950222125277,302.21173393540084,301.4193337527104,300.62649074802175,301.5759753030725,301.4857643651776,301.19308494916186,301.14176016580313,301.4813953512348,301.51091481233016,301.395750945434,301.58916520979255,300.9725368344225,301.6293649324216,302.4985688338056,302.37206825846806,302.23956205602735,302.6921850242652,302.0740913487971,301.5491896215826,302.1114197880961,302.63435790967196,302.48225635895506,302.7925399187952,302.94203656585887,303.1773318978958,303.9615384247154,304.6393766598776,303.93219823017716,304.0599275752902,303.36125645413995,302.71841253573075,303.45278517669067,302.53984265588224,303.3738630381413,303.31358399800956,303.5263583655469,303.4591714721173,304.3970190384425,305.33390242187306,304.81463022576645,305.6696846182458,306.13485982408747,306.5477532087825,307.35439539235085,306.58665578393266,306.9703817856498,307.60420899651945,307.0470064310357,306.897210593801,307.27096023550257,307.9991860506125,308.41858783736825,308.9772602273151,309.9636891046539,309.17346901539713,309.67333835642785,309.46019802149385,308.55048053804785,309.00964364456013,309.0912086167373,309.54055472509935,309.9495160607621,309.4003971298225,309.7964434530586,309.14495077636093,308.79115616949275,308.8833573772572,309.3259576386772,308.5189286014065,309.0135008073412,310.00619640760124,310.62592229852453,310.40561288548633,311.38655094755813,311.3818252813071,311.70397570962086,311.0881285276264,311.01563365524635,311.91611869400367,312.6894710562192,312.8859329451807,313.2957407492213,313.2003153124824,313.29256726801395,313.2383429403417,313.0471299146302,312.77601451799273,313.6830803700723,314.62335816118866,314.1341002797708,313.35675532883033,313.946556490846,313.7076090029441,313.3037403882481,312.8816235801205,312.34882800420746,312.8365577594377,312.3196330713108,312.28716336376965,312.6130957757123,312.3255908298306,313.01744538126513,312.31913026049733,311.7276730746962,311.93536459933966,312.2330454736948,312.2092720349319,312.8107852092944,312.6169723733328,312.00772905908525,311.77489665942267,311.453975090757,311.6001398260705,312.5979569721967,313.0137376426719,313.91154590202495,314.76308362185955,314.2149914796464,315.21298026293516,315.20805265242234,314.81526962062344,314.4976952583529,314.6453184611164,313.6688832012005,313.46989341732115,312.7611642596312,313.49565078131855,313.2209838810377,312.4242474101484,311.4406160940416,311.1625632988289,311.699160088785,312.0437932270579,311.2979263952002,311.73128001671284,311.028982269112,311.0432221922092,312.01620330428705,311.2963894242421,311.5609062034637,311.70464034890756,312.03639440471306,312.4703773749061,312.30241866549477,311.87733924156055,312.5226922193542,313.1832566927187,312.44772452069446,312.90561100747436,312.7117124428041,313.23648231942207,313.9806098304689,314.1471501174383,313.26136820344254,312.2870914367959,312.25164761347696,312.23958796355873,311.5995399458334,311.0137488823384,311.95600988389924,311.8682617004961,311.04056201083586,311.2506342092529,312.2215765141882,312.59944895189255,312.09803634276614,312.4393671429716,312.6340655977838,312.1258299369365,312.3267950383015,311.77622895501554,312.64785595145077,312.1326345917769,311.7418607589789,311.1440436388366,310.2764966841787,310.74077184544876,310.4873947799206,310.74660625634715,310.2853726069443,311.2679448183626,310.95309805264696,310.9994001220912,310.4995913761668,309.55105223925784,308.8144587036222,309.4532684436999,309.59419766487554,309.2625518059358,309.68800369789824,309.4538655420765,308.9885156080127,309.7322087297216,310.5344231701456,310.37176339747384,309.4740334423259,310.16546385362744,310.42712857108563,311.31589261535555,312.28367308015004,312.2603816334158,311.91565261175856,310.9372612722218,310.9534377423115,311.9074394563213,312.81842599855736,311.9579550870694,312.8617140771821,313.6541778864339,314.0143935214728,314.00498701864854,314.98611730802804,314.8789401333779,314.49795847246423,314.70530153112486,314.7208352419548,315.37099035223946,314.589408559259,314.26787200337276,314.54705478530377,314.66443311143667,314.9470694423653,314.3073029653169,314.83695577830076,315.18434684257954,315.0977650200948,314.3480401239358,314.7188600860536,313.75310485763475,313.51823700778186,313.08552457159385,313.66395770339295,312.7438050368801,312.90851242281497,312.8995572482236,313.85041933879256,312.95724555803463,312.81478565,312.3121191300452,312.22803183365613,312.2718704403378,313.17995013762265,312.3312229765579,311.6494998782873,310.94982586381957,311.50868331920356,311.97673892090097,311.8466904498637,311.7074812334031,312.5104271755554,313.02189594646916,312.10972603876144,313.0136621068232,312.3086517639458,311.731957687065,311.2377387601882,311.3246964234859,310.4997930210084,309.59597907820717,309.72690259758383,310.2673418438062,309.36730384407565,309.1143078976311,308.61171619640663,308.0972290132195,308.38129990454763,308.05328447232023,308.3811914306134,307.60481933597475,308.17092663561925,308.6730440123938,309.2571017681621,308.35530854342505,308.67876201169565,308.341186392121,307.4133433699608,306.7021771138534,307.17785831028596,306.6551137389615,305.80159994307905,305.17256797337905,304.7966510676779,304.9258107598871,304.31932123424485,303.8630420570262,303.8167949328199,303.7091515287757,302.79990083537996,303.5837343595922,304.3272840278223,304.9017860018648,305.8362109521404,306.78201191406697,306.1119351866655,306.64292324054986,305.7663653809577,306.5313138384372,306.0724080139771,306.58798671048135,306.0166591806337,305.50209419569,305.23344341572374,305.39046203996986,305.61069962661713,306.3379248571582,306.9712017066777,307.74248629948124,307.28172997850925,306.83104295050725,306.8068158188835,307.50326950196177,307.0115322107449,307.4642872978002,307.4273292152211,307.0786174288951,307.0218840627931,306.3656965843402,307.3042790456675,306.9494100357406,306.6809425819665,306.2682958012447,305.29271917277947,305.5726696080528,305.5479693599045,305.44470303785056,305.6417265520431,304.89546244125813,304.811317358166,304.0782337100245,304.423167001456,305.3891917220317,305.7267645983957,306.52190526993945,307.09636172419414,306.52746786363423,307.39985725237057,307.48617760650814,307.0199605966918,306.2485927250236,307.14735160488635,307.9316980615258,308.25562107749283,307.84998372616246,307.93503323057666,308.43859633104876,308.6765895783901,308.2274670866318,308.42556112539023,308.84213640587404,309.3177315136418,309.6797585939057,309.3216669205576,308.9209675923921,308.52659929264337,308.4882007003762,309.43576872814447,309.3906859718263,309.3181953257881,310.2173479287885,310.46618854720145,310.8365625431761,310.96921437745914,311.85100470809266,311.8139189053327,311.29389105690643,311.92728871433064,312.75961821712554,312.43440349958837,313.32790860999376,313.5222634249367,312.5459597087465,312.99525278946385,312.04833081318066,312.82820438966155,312.1935970908962,312.38981758616865,311.679381408263,311.4768042229116,312.2856386345811,312.6957565350458,312.8271711561829,312.16337705636397,311.9658229993656,312.7875706641935,312.1649927608669,311.19148612441495,311.02333363099024,310.5087254024111,311.4286314905621,310.79799025692046,311.5932628591545,311.57203195244074,311.42045712284744,311.86142337555066,312.0667802654207,311.1815240168944,312.0102289216593,311.5557431471534,311.388654705137,311.32447844184935,311.96445709560066,311.54219367867336,310.6417907127179,310.95781446946785,311.34645349206403,311.00640572048724,311.4907320314087,310.67947922553867,310.4546172837727,309.4572199988179,310.0758528425358,309.260034983512,309.7555039669387,309.99402536964044,309.863924165722,310.6967839980498,310.7704022289254,311.3454025881365,310.79712011292577,311.11004976555705,312.0361776165664,312.728391548153,311.98343837214634,312.4488802314736,313.03262893576175,312.5551029355265,311.6102081434801,312.05131758004427,312.9853161992505,312.94569132337347,312.14080063905567,312.17654054565355,312.7324486402795,312.6596154938452,313.25677204551175,313.98520872555673,314.964890696574,315.56901470106095,316.41138589847833,316.536582775414,315.8749533309601,315.9094373155385,316.36310922913253,317.2116975239478,316.7713404581882,315.78235557535663,315.742457841523,316.6351862391457,316.3138994029723,315.75592739274725,315.0619466663338,315.06599877076223,315.62204782431945,315.96129360608757,314.97462022164837,314.55336957238615,314.2987701231614,313.5007689567283,313.3361679953523,313.6991707859561,314.56784084811807,313.79743147827685,314.14215223351493,313.73119457112625,313.5090354369022,313.2102511827834,312.7875653062947,312.5535318441689,312.9840527623892,312.52730093849823,313.2057816670276,313.11538354028016,312.6230258317664,311.730380023364,312.7254208493978,311.82349846418947,311.6470654476434,311.04584309644997,310.60792840551585,310.5607332130894,309.5702700554393,308.5789932869375,309.37744517764077,308.39177435962483,308.4172699074261,307.97656346391886,307.2596654538065,307.98307402199134,308.10950872302055,307.66645960416645,307.00241680117324,307.38658165792003,307.8742785216309,308.6062022303231,308.9219851042144,308.99923223629594,309.5228932625614,310.2984169595875,311.12406410556287,310.15885694511235,310.1250127889216,309.8607788933441,309.83048226032406,309.8344451668672,310.4994535082951,310.84533523209393,310.43035476794466,310.09819014091045,309.24675952317193,309.6760481065139,309.4547888925299,308.8203277704306,308.28829792747274,307.6206086468883,307.3680611588061,308.0551673625596,308.2398022520356,307.8382228319533,307.3399942377582,308.06907713226974,308.3630080684088,308.1671304712072,308.82582917343825,308.0925568579696,307.8671821150929,307.97554160188884,308.30904790665954,308.786932121031,309.30525051336735,309.87108362372965,310.1596562070772,311.1474395627156,310.86739935632795,311.4014868559316,311.33171446900815,310.56101816520095,310.1018920382485,309.5239049727097,309.6934118173085,309.1466039689258,309.68430339638144,309.23059207666665,308.7128679379821,308.0440416713245,308.4488959372975,308.38479623384774,308.88507502991706,308.10865805717185,308.4258152535185,307.71930167544633,307.8090536198579,308.54240771895275,308.90665156021714,308.4413537182845,309.03362814104185,308.1606265944429,307.82970683369786,306.87330633588135,307.22282463498414,308.2122322921641,308.2201689495705,308.5690871095285,308.1405019299127,307.42505356669426,306.519406598527,307.1243795710616,307.76545962691307,308.4736203062348,308.6899701762013,308.3004898643121,308.9256977797486,309.58957784390077,309.33016831520945,309.1882645050064,309.92695064656436,309.9267105101608,309.2725507747382,309.42738736374304,308.50605332525447,308.6425161547959,308.6431420026347,309.27605590038,309.13537731114775,308.4765363037586,308.7138069733046,308.0158597272821,308.1462436327711,307.7331978492439,308.52325473027304,308.986314304173,309.77886315993965,309.2250693840906,309.9225319833495,310.14336060592905,310.80795160587877,311.5784186613746,311.38511841883883,311.43348098546267,312.37331863539293,311.52770103607327,311.55291239125654,311.30182653991506,311.8019713447429,311.7335409130901,311.7040530210361,312.65991199947894,312.49524256167933,313.3092590156011,313.90421162359416,314.2467546579428,315.0508193857968,315.08655206440017,315.55024727992713,315.3055256521329,314.403272586409,315.1975681739859,315.89472371758893,315.89904979383573,316.50928135216236,315.66080735763535,315.9577385499142,315.16275455756113,314.8167727421969,315.05118702724576,315.60285914642736,314.80432404438034,315.5539654241875,315.0956604578532,314.7269600466825,315.21357380459085,315.73003631364554,314.7449846076779,315.5435051941313,315.529509910848,315.62130638351664,314.9739806028083,315.399966172874,315.57327848766,316.2129442160949,315.3423868631944,315.64993349602446,316.2250428330153,317.0898807598278,318.0565645569004,317.847836392466,318.7325664605014,319.35594408074394,319.7120336154476,319.6919451802969,320.43240528320894,319.49778165249154,318.8670970154926,318.86625693785027,318.98739339923486,318.7825936242007,317.8870148132555,317.6726718507707,317.88273479323834,318.38308555213735,318.00594355678186,317.6571179651655,318.5875331456773,318.00375286629423,318.78844267502427,319.566205969546,319.03306548204273,318.59742402797565,318.13897474855185,319.10056194942445,319.7047944557853,318.86666973819956,318.0579459872097,317.2951497430913,316.67392013175413,316.3725333972834,316.5430731186643,315.68041565362364,315.1929105082527,314.76208436721936,314.41244125459343,314.38683532876894,313.4033448914997,312.47555765369907,313.06170172803104,313.5433018640615,314.4991630478762,314.6789859146811,314.1760174385272,314.0607510381378,313.74090507486835,314.48812190489843,314.24645255319774,314.64833585871384,314.833899081219,313.9682935210876,313.61390151875094,314.23171556089073,315.22147897351533,314.80656907195225,314.0536574302241,314.69277823204175,315.5595991220325,315.14854149566963,315.16308561200276,315.54105714010075,316.4808140480891,317.3813238115981,317.24020459968597,316.38654171070084,316.05627497052774,316.59609009092674,317.40288740908727,317.90442527178675,318.8256292673759,318.9736438738182,319.12407806748524,319.8040279238485,320.02369669638574,319.5763912159018,318.7836475195363,319.16797233140096,318.35660825204104,317.7314744479954,318.4102393970825,317.6033928892575,316.7734554572962,316.9701057448983,316.9757165424526,317.7761580091901,317.1350119477138,317.03138133045286,317.24267921736464,317.1162967979908,317.03472369350493,317.98726401105523,318.3652166761458,317.68047219282016,317.71712003462017,317.55882418341935,318.4960364890285,318.7019789465703,319.61982027255,320.06967402249575,320.43344403104857,319.5652886638418,318.83491848548874,318.34282169677317,317.79590062983334,316.88763371296227,317.08976310584694,316.8021037969738,317.5831758379936,318.537910584826,317.68176789814606,317.6286302008666,317.20265905559063,317.90728763956577,317.8251662803814,317.06801398890093,317.1957438546233,316.96688448730856,317.12877837894484,316.2192832478322,315.3865055940114,314.44115974521264,313.8635697932914,314.8315635859035,315.091076284647,315.857050975319,315.70191459264606,315.7779107936658,315.15615887753665,315.75285523058847,316.19374974863604,315.3246505316347,315.0715542542748,315.4449782301672,314.4825867675245,314.86019365722314,314.60138549888507,314.11101811612025,314.78152512572706,315.0522481841035,314.17869215318933,313.5647988282144,314.455171208363,314.6734540462494,314.96225226530805,314.81138456007466,314.9213725235313,315.3733418798074,315.0494854631834,316.03311787964776,315.8519406002015,315.0914446194656,314.10058866627514,313.11835861066356,313.51401011645794,313.4351320415735,314.14930422836915,313.2363174110651,313.7363457749598,313.2098400434479,313.62372355442494,312.82209534710273,312.8797664786689,313.6494590542279,313.25524807628244,313.9822074496187,314.47303320327774,314.0593614135869,314.804844237864,314.9844347452745,315.5489311865531,316.27375375153497,316.8102483684197,315.9871765258722,315.07816853607073,315.95456574251875,316.6212616111152,317.2531800554134,316.27865552483127,315.5768297770992,315.919712791685,315.04242033930495,314.58550687041134,314.92631573975086,313.9488556627184,313.7228609584272,314.5513210990466,314.38517548749223,314.02436283044517,313.7363779176958,314.2018941072747,314.86223066877574,315.0769095495343,314.36834985250607,313.48549752729014,313.615870967973,313.5190434800461,312.91694076452404,313.29426979413256,313.3066052533686,312.9040406062268,312.1456338474527,311.9970964216627,311.3450588323176,312.1883916091174,312.44936572760344,312.1704928157851,311.6239193244837,312.4681729977019,312.254821753595,311.92195583693683,311.0078110503964,311.9580938918516,311.8530942806974,312.1383786960505,313.1176174869761,313.3270697398111,312.74913191003725,312.5203566942364,311.5637369467877,311.47924965946004,311.0823861565441,311.6826350800693,310.98642072081566,311.8989526210353,312.4488887558691,312.8453540704213,312.4187479810789,312.57338964100927,312.15266816644,313.0665273964405,312.6679141689092,312.94156819488853,312.82556947367266,313.24966182606295,314.24136157054454,314.1205063466914,313.73421915620565,313.88547566719353,312.99368512956426,312.9055181136355,312.5326463319361,313.0272219586186,312.38471655594185,312.07614244986326,312.02703584264964,311.17049070540816,310.3569524423219,309.7065703677945,310.16770337568596,309.2181079084985,310.0285688471049,310.3199304235168,311.19159860303625,311.56165637867525,311.11287865787745,311.624334926717,311.13879995793104,310.6515347547829,310.9602390350774,310.7489735977724,310.536033377517,310.84280460188165,310.60869113821536,310.3213421688415,310.8572056349367,311.1830384815112,311.50245410669595,312.3350555608049,312.37234040908515,311.89431554079056,312.6825193958357,312.40153271052986,313.02773214969784,312.0833036019467,312.70288701495156,311.9046875820495,312.66100662807,312.92437935760245,312.1404398162849,312.16305965650827,312.82274102186784,312.2575024580583,312.78029385302216,313.14919873932377,312.44331930577755,312.0009878091514,312.578540537972,313.493343107868,313.1784963919781,312.58447041967884,313.0640028649941,312.1905645192601,313.0154701122083,312.21638236008584,311.66938501410186,312.22821256844327,312.2782463929616,313.20421635964885,312.61964051565155,312.46658201655373,312.6944127958268,312.5264099747874,312.7655649292283,312.43477937206626,311.74864142993465,310.9563558730297,310.1526318397373,310.26315675955266,311.03335420321673,310.13097799615934,309.43192896666005,309.9101258418523,309.80644010333344,309.5196597445756,309.39875953970477,309.5847738394514,309.03001582296565,309.2935499558225,309.04029599484056,308.8534622499719,308.97817005356774,308.7758438405581,308.67802322190255,308.11149775981903,307.4480279069394,306.5679906918667,306.24082919070497,307.13164958171546,307.4047990781255,307.80784075474367,306.83773410739377,306.8502324782312,307.76707354933023,308.5954039618373,308.001680156216,308.8565904609859,308.3125348915346,309.1555473166518,308.3837364418432,308.8231924646534,308.7683472232893,308.6621298221871,307.6908119888976,307.63822938036174,308.537155454047,308.3382140081376,307.78447219124064,308.28774247923866,307.61906240088865,307.9809378804639,307.113213500008,307.55857810610905,308.2724812394008,308.6007047262974,307.99770145118237,308.2458345410414,307.7328411503695,308.6193947135471,307.7286658221856,307.1419484806247,306.1904508108273,307.179907631129,307.32590776961297,307.66293153120205,307.4073227425106,307.05456284433603,307.6836699456908,308.21521543432027,307.26069614989683,306.2978635132313,306.64592734584585,307.193723842036,307.5058916020207,306.5545498970896,307.12915244325995,306.26585513027385,305.7136932183057,305.23939007427543,305.00215452723205,305.0731485723518,304.9312121719122,304.7963989493437,304.7509286790155,304.0956629277207,303.1617980268784,304.1144979009405,303.62040690658614,302.9692693972029,302.9665497899987,302.54103745752946,301.8158024735749,301.3174006785266,302.03126366855577,301.1289140516892,300.9723789594136,301.03837969945744,300.7374970242381,301.3235285030678,301.6038919920102,301.95239917049184,301.81457701232284,302.7245590770617,302.13552289409563,302.3225930221379,301.80665841698647,302.5206188275479,302.8418491766788,303.65755747817457,302.9776511564851,302.7376149785705,302.41230416251346,302.79351931158453,302.8837871043943,303.58744018292055,302.71168319555,302.9141181502491,302.9804896884598,302.78501447150484,302.7364247632213,303.396886263974,303.11843221168965,303.6993776150048,303.64173382427543,302.6618803483434,301.83663856610656,302.38731675967574,302.5498146908358,302.96296054683626,303.31274518184364,303.5345496945083,303.07253783289343,302.3028705576435,302.3027268620208,302.8232295298949,303.41978808818385,304.04852804588154,304.46500176982954,303.4892451572232,303.0886539397761,303.54721892485395,303.30535825155675,302.32133104884997,301.59676894173026,302.5414028065279,301.81923990976065,301.70755370520055,301.4187193312682,300.7506137327291,300.82779823662713,301.1097204373218,301.17547600902617,301.52807170478627,302.45207949494943,303.2668062793091,304.143428100273,303.8807309232652,303.7292789747007,303.25907365372404,302.89775804337114,303.69946158491075,304.5208208677359,304.47429542662576,304.5421114792116,303.61870958376676,303.41686213295907,304.12870224844664,304.41685617296025,304.9522587689571,304.3002423765138,303.86998512782156,303.0940676946193,302.6964421616867,301.81570575293154,302.0714641683735,302.5288779810071,303.3644493110478,303.84693711902946,303.70320637943223,303.3820840558037,304.0639961003326,304.65968710230663,303.81229004636407,303.9343684995547,304.4708757591434,304.33300437917933,305.31308685755357,304.3939214423299,303.8237967393361,302.8523744982667,302.8343141213991,303.1187339304015,303.35335673065856,303.4740357049741,303.1662702988833,304.1037675887346,303.23077929764986,302.5245887939818,303.0027935169637,303.62470329599455,303.192288858816,303.6459402362816,304.12819157121703,303.3232149351388,303.2943169316277,302.63483211165294,302.1912848800421,302.3694278867915,302.4943185406737,302.4786340300925,301.88195455633104,302.0951438252814,302.30966357700527,303.11155244521797,303.84105741465464,302.91878442419693,302.99146303301677,302.54310441808775,303.1062288004905,303.1354919690639,302.94446305325255,303.54962298320606,303.4166951510124,304.03061199886724,304.2888906165026,303.4134309031069,302.9105486846529,303.2600466501899,303.64573200279847,302.8591556898318,302.3778255111538,302.0469287461601,302.22981674643233,301.64949568733573,301.67972198687494,302.4215562734753,302.7033610451035,302.74902047170326,303.1756039899774,303.1071179425344,302.3727294523269,303.29172263434157,304.1608103150502,303.562876759097,304.09082796098664,303.5384057215415,304.18877095123753,303.96794392494485,304.1286842664704,303.176051792223,303.69353419775143,302.7788053881377,303.0929106171243,302.79857037449256,303.21159127214924,302.53664801223204,303.5116996355355,304.4162888964638,305.2336212480441,306.00651302421466,306.86144406860694,305.9985789200291,305.6007273462601,305.4485031669028,305.5055239731446,306.32619783328846,306.32804030831903,306.89933113381267,307.32057535881177,306.69627345958725,307.2954102852382,307.7353423461318,307.4072662605904,306.88996986532584,307.6797195686959,308.0828888132237,307.3768967837095,307.9009225862101,307.4996662023477,307.6024840339087,307.2757852296345,307.34059157781303,307.9328681700863,308.7897524954751,308.3518501110375,309.2296987143345,309.60460850875825,309.96271141432226,310.8449694858864,309.9501729118638,310.68562192842364,310.973330329638,310.9952828078531,311.4239685158245,311.23911628779024,310.4040841907263,309.42483275709674,310.302339870017,310.56534733762965,309.77064681844786,310.5301010455005,311.50886621139944,311.4933576527983,312.36065416550264,313.03264436870813,313.9807411301881,314.77083441847935,315.51986912311986,316.32427422422916,315.71025696536526,315.36612938996404,316.2853408283554,315.6718496703543,315.3824670300819,314.49211688758805,313.8711217283271,314.55212718993425,314.5417420384474,313.63564865710214,313.39003603020683,312.8981126798317,313.4900901946239,312.68567363591865,313.61577908322215,313.43719471571967,313.7283782637678,312.7411469584331,312.3629417894408,312.15401912806556,312.745963556692,311.7550444123335,310.9465973661281,311.1956752454862,310.8904647938907,311.0616020001471,311.331329325214,311.7976382044144,311.12765782000497,310.9582288987003,311.9130392684601,311.28851089719683,311.3613647953607,312.202846089378,313.1793869440444,312.6359406039119,312.9037967552431,313.8016033596359,314.7628580960445,315.535534679424,316.12389776902273,317.02718459954485,316.2448156629689,317.18748614005744,316.5511335437186,316.6104555828497,317.4697863087058,316.47568212635815,315.99268438946456,315.33863665442914,314.8048237338662,315.13577320985496,315.18635524297133,315.99492895323783,316.1254690447822,316.77786656236276,316.04963570972905,315.8556656818837,315.11675551952794,314.3334073186852,313.93307223077863,312.9776687696576,313.31355411419645,312.4417673898861,312.47553112963215,312.0407767123543,311.6869639432989,310.9506491664797,311.1277551073581,311.9051820705645,312.72236868040636,313.1908863103017,314.1351646143012,313.32855254691094,314.2871881555766,314.68276140326634,313.7832056907937,314.5621682642959,315.2814559126273,316.0056911143474,315.5517028942704,315.68952905898914,315.6768193389289,315.08483143057674,314.9080585860647,314.2672328725457,314.28662877716124,313.8576557226479,313.1214406369254,314.10218888986856,314.8112903297879,315.5179920671508,316.4280160176568,317.29726346069947,317.9512521699071,317.22268120665103,318.17133274674416,318.632621363271,318.6157466098666,318.3940142937936,319.37041805218905,319.5960732563399,319.18951351521537,318.37791527900845,318.59063553251326,318.65547145018354,318.78596712090075,318.82231792155653,319.11910827923566,319.1655690507032,319.15780875785276,319.2567907059565,319.1230724356137,318.5764267477207,317.68817534763366,317.19161105761304,318.1177789149806,317.8860929328948,317.6962242824957,316.88684692047536,316.6104710493237,317.29065340710804,317.52374988934025,318.3741013966501,318.71648645354435,319.3513366631232,320.2293573040515,321.18002848280594,321.20078269718215,321.9262402630411,322.41878725914285,322.25199844688177,321.9466899004765,321.46102859498933,320.92026714561507,320.5049681975506,319.69502025237307,319.28141581779346,318.94961007125676,319.40913622267544,319.9028366673738,320.1447436497547,320.83326065028086,321.23808597773314,320.51840501930565,320.98994358908385,320.7947617834434,319.9477417455055,319.8297509406693,319.0891952239908,318.1889069583267,318.76041318289936,319.7444979981519,319.57324220612645,319.22341884626076,319.2892129616812,318.72659058030695,318.5512037561275,317.91628374159336,318.0691360500641,318.6150389155373,317.7117202291265,317.7765284953639,317.8616911037825,317.35218278085813,316.85232692351565,316.2821452296339,315.33169536152855,315.86004261579365,315.5803049537353,314.9378613955341,315.65749282296747,315.7215326731093,316.6141280448064,316.0442691366188,315.0590279712342,314.4063814301044,315.06481437012553,314.18693701550364,315.15993628976867,314.5455418061465,314.85587639082223,315.40854840772226,315.1038388181478,316.0403921767138,316.48357682302594,315.90818606922403,315.15760508319363,315.10423118202016,315.12669531302527,315.9376977281645,316.2401119293645,315.3872483544983,316.20940988557413,316.22813791781664,315.48384087439626,315.0128563954495,314.60437313560396,313.9414443420246,313.2219152241014,312.893660611473,312.90836653718725,312.76805462827906,312.09031974198297,311.27979762712494,311.94645799556747,311.58153941016644,310.94000158738345,310.025529358536,310.07579615712166,310.4610435832292,309.93532711593434,309.81912226462737,310.6545044942759,310.26926025236025,309.96736202947795,309.423673549667,308.9431559848599,309.6093990695663,310.5330405929126,310.80746305640787,309.86632882710546,310.4964261534624,310.09078471921384,310.1084164837375,309.4085312061943,309.36212816787884,309.0089994799346,309.377650024835,308.47628405177966,307.74932988127694,307.53897186834365,308.5181923774071,308.1202558213845,308.50978107890114,307.6254284302704,307.2954839570448,306.9757833071053,306.14344667783007,307.0321251503192,306.22181567410007,305.5749654513784,306.23617480741814,306.58989062020555,306.1082785590552,305.6951093771495,304.79294862644747,304.65838440554217,304.9304207651876,305.4024216150865,304.78358148783445,304.07176586519927,303.44529998349026,304.1922594117932,303.398335326463,302.933814402204,302.69598150486127,303.38012087438256,302.7882630126551,301.9338363134302,302.8861919990741,303.2162343901582,302.6101798568852,302.62768636038527,303.4230465721339,303.52878956636414,304.48661117069423,305.39125440176576,305.5474557275884,304.73487517843023,304.6120856902562,304.327774473466,304.3333526812494,303.5885756742209,304.52753294212744,304.2298298845999,303.61238897359,302.64589587645605,302.232682405971,301.33220460731536,301.2183038806543,301.07857771683484,302.0267529101111,302.96464491728693,302.8730425219983,302.19267622567713,302.6741684214212,302.7472888077609,303.73501334991306,303.6209277943708,302.66270228661597,303.5239547365345,304.0606618197635,303.6488311137073,303.3581255222671,303.2370627494529,302.9567466187291,303.8294165455736,303.72524285363033,303.4662608639337,302.9911198541522,303.9745503892191,303.1370295789093,303.3533908906393,304.30021478701383,304.12238496216014,304.74657501326874,305.49754238827154,305.61214385647327,306.2802582010627,305.9202582584694,305.78152358019724,305.5253048501909,304.58094129525125,304.08526109717786,304.54899225290865,304.34592838492244,304.1366470162757,304.6101603698917,304.1668212842196,304.0375029966235,303.8402427351102,304.4105437262915,304.1135778464377,303.5855756243691,303.68751908885315,302.8621357632801,303.56210477184504,304.153272183612,303.5085566546768,302.6090808659792,303.17811270803213,303.09316862607375,304.07554908515885,304.88850832311437,305.5750316143967,305.3145497511141,305.64809716073796,305.72546343971044,305.823356250301,306.6290897135623,306.7605495485477,307.4651253782213,308.207992519252,308.18160004820675,309.04402978904545,308.9245673981495,308.144403161481,309.0552852656692,309.5505322809331,308.557715754956,308.2857615877874,308.45970591530204,307.75259743770584,307.81438067601994,308.11880670068786,308.0591146131046,307.4816720876843,308.3895244994201,309.14398706378415,308.2928818920627,307.79234088631347,308.7466375925578,308.35636423155665,309.080395007506,309.8864498329349,309.9782315050252,309.3830269826576,308.5907640857622,308.69476040871814,308.2252381294966,309.0731848250143,309.59902550140396,309.06554481899366,309.12873123493046,309.75676324171945,310.29495456442237,310.34306659316644,309.7010345584713,310.34592659724876,309.4192231516354,308.6247675032355,308.53008217411116,308.15871527418494,308.7224549781531,308.82580738607794,308.13520005485043,308.1336657772772,307.70583921764046,308.2494771317579,308.4242708478123,308.72728980192915,309.3714242852293,308.45018727099523,307.7965606795624,308.2638775482774,308.01290000230074,308.554902581498,307.7865634406917,308.18547823280096,307.7444466110319,306.869388634339,307.0598663883284,306.5606185379438,306.72976181749254,306.11990742059425,306.7674864945002,306.2766469907947,305.99323150794953,306.7972649517469,306.55680838925764,305.63779713073745,304.95285459281877,304.79763325536624,305.77938187727705,305.07367347506806,305.42640843614936,305.6187747907825,304.90528019098565,305.68410774180666,306.4975608452223,307.2477889037691,307.1586742270738,306.91884657368064,306.6974969757721,307.51860337145627,306.95126697281376,306.6952964961529,306.8328683162108,307.59216455137357,307.21332599502057,307.38945362437516,306.529774277471,306.3804425052367,306.2337538530119,305.63027252210304,304.8017920986749,305.01800416829064,305.48034637235105,305.736950580962,306.00155803887174,305.337916593533,305.08292615646496,305.31368875829503,305.7871194658801,305.40595300355926,304.81355797033757,304.2298211120069,304.51324696466327,303.7204516977072,303.89920432819054,302.98001866647974,302.24297397444025,301.915446288418,301.8914199536666,301.1657787798904,301.372205181513,301.56431311694905,300.7100113532506,300.2905574515462,300.2032160558738,300.5196413202211,301.2177546978928,301.8802491775714,301.7461178051308,301.5322059234604,301.223350209184,301.7501122923568,301.4695955440402,300.7316649360582,300.3905520364642,301.1163731380366,300.59870698396116,300.3920838064514,299.73238707566634,299.9764434345998,299.2100411118008,298.32570627797395,297.54090056894347,298.1738762818277,297.74130843253806,298.02678237902,297.8231591838412,298.805850350298,299.6200986886397,298.74952810816467,299.4049795176834,299.40002603130415,298.9972930625081,299.92419986194,299.45448409346864,299.08379955776036,298.4147406597622,298.8513831458986,297.9145336258225,298.14075206639245,298.89758762484416,299.6888764956966,300.4643555972725,299.66798385372385,299.9510212894529,298.9918536632322,298.1913433796726,297.84521678322926,298.3115690955892,298.6579749272205,297.91931736376137,297.93026052974164,297.3353272457607,298.0785704716109,298.20864507881925,297.29642506921664,296.6977378465235,296.0866569438949,296.7424928941764,297.4837007424794,297.7301595741883,297.7328527937643,298.0507067721337,298.2107962402515,297.21834825351834,297.73115409491584,297.15687405783683,296.2390344920568,295.67807750217617,295.45973322400823,294.73044873960316,294.79332142788917,294.5468403720297,293.75612371461466,293.16198419965804,292.8423204096034,292.14310317486525,291.83502251887694,290.9715579939075,290.62875453429297,290.6122563332319,289.9735585921444,290.7077264399268,289.94339231494814,290.31135054444894,289.4000695804134,290.2140929060988,290.82300240080804,291.3106102896854,290.6780753280036,289.81972649507225,289.93515395000577,290.4183855089359,291.35185670107603,291.1779479798861,291.4235605751164,292.008348768577,291.8046472016722,292.55888488003984,293.27826986741275,293.11803612858057,294.09078538324684,293.31851497944444,292.4002783619799,292.2887026076205,293.1545500024222,292.8795421179384,293.3252562745474,292.73073199857026,292.1208929019049,292.1722375852987,292.87937866616994,292.54640340805054,291.80434498144314,292.38094964437187,291.5235991147347,291.6036482225172,291.75043734302744,292.19162445282564,291.8084932551719,292.11913078371435,291.3948301435448,290.7964211339131,289.9689306425862,289.72363453684375,289.1080652894452,289.8391899741255,289.6590387057513,289.37294510100037,289.66297206515446,290.40709203248844,290.1212102249265,290.6249954267405,290.5272118654102,290.22634686809033,289.6920238304883,290.6399833946489,290.814834441524,290.42078785179183,291.41713029146194,291.47013716446236,291.11068016523495,291.39706208370626,291.31385434931144,292.07724318280816,292.2253261166625,291.5771580245346,292.4308026507497,292.08023884287104,291.52321390016004,291.2579080061987,291.6498033259995,290.74829583475366,289.9577756067738,290.01633722055703,290.15012120176107,290.7846949500963,291.12516806460917,291.0047022914514,291.67760150693357,291.5263007823378,290.88978361338377,291.0761655252427,290.9721190268174,289.9905373356305,290.2660228838213,289.72222627839074,290.0002342215739,290.652886279393,290.2549672764726,289.6127522145398,289.8989226282574,289.7523216321133,290.4238938726485,289.6903768731281,290.09000820387155,290.04440153297037,289.1176700280048,288.49448048276827,288.54331780364737,288.53935411712155,287.73808789998293,288.2407311666757,289.0522203803994,289.59855962125584,289.870865162462,288.9088833234273,288.07108040712774,288.229439817369,287.26008960977197,286.2894131154753,287.07812697580084,287.46615423308685,286.76754701370373,287.52666678093374,287.1871175179258,287.29462664201856,287.2009938657284,286.67860783217475,286.349667027127,285.9704463882372,285.9666072661057,285.9212644742802,285.55664300266653,284.7477899659425,284.49363398645073,283.552319238428,283.28601832315326,283.49061942799017,284.02575112553313,283.21345619065687,283.0659359265119,282.1949418662116,283.1047234274447,282.50479728588834,281.5710385972634,281.6344759557396,280.8526697224006,280.39321645209566,280.9920057612471,281.1636172821745,280.97995308740065,281.3213198981248,280.4862690162845,279.7271458590403,280.19407335622236,280.9367474275641,281.302841110155,281.74965390050784,281.70962938154116,282.31526830792427,281.5140096559189,280.9138144981116,280.6212490121834,281.2002175846137,282.02594903763384,281.6786611387506,282.56572726136073,282.7878660284914,282.1214414886199,282.10709365364164,282.55672702006996,281.8765690289438,281.9917582394555,281.9271908849478,281.81659479578957,282.7709853160195,282.557025345508,281.97353021847084,282.310451623518,283.0043822028674,282.10842404235154,281.76506186043844,281.6114652524702,281.01787174027413,280.35407812241465,280.8164128647186,281.59398963674903,280.9472858295776,281.2033445700072,282.12872492242604,282.2171401614323,282.779700696934,282.5503968144767,281.66115827998146,282.0832684482448,282.4165607308969,281.57800594531,281.6319356416352,281.4596485332586,281.35827519744635,281.67938523506746,280.84915582928807,280.27792462613434,280.6032010894269,280.7800723025575,281.4993837890215,280.9951203269884,280.7195274219848,281.3516610241495,281.67239001905546,282.4741376922466,282.54874006379396,283.53558161715046,284.3705420955084,284.41262033768,284.46402810467407,283.69756142795086,284.4738929080777,283.9916515266523,283.69991493877023,283.93605633592233,283.81112737674266,283.8328852970153,284.2185617685318,284.4289998388849,285.21980668837205,286.0355503242463,285.785500286147,286.1325916913338,286.5089788441546,287.0821234374307,286.592379163485,286.7037593894638,286.4134881366044,285.965882292483,285.5261725015007,285.29322511237115,284.33584352908656,284.0311587494798,284.6983696548268,283.75489842286333,283.22984665678814,282.7285025171004,282.7659502271563,283.65162255289033,283.8944381219335,284.36837160540745,283.72426166571677,283.10575543437153,283.42924816627055,284.4048792957328,283.75502230832353,284.63378886086866,285.4396926150657,284.88205363275483,285.68395315203816,286.5776511807926,287.4788073403761,288.2898109611124,287.5551744061522,287.7804007427767,287.2686671069823,287.3753625191748,286.7264554281719,287.5176356183365,288.2521850564517,288.081551771611,288.5963556431234,288.72659301618114,289.0327709466219,290.0147241135128,289.4335572067648,289.99774409178644,290.936916441191,291.3861417849548,291.10767582058907,291.65785663062707,291.721907984931,291.82042314345017,292.1393974055536,292.5464556380175,293.3147669304162,293.6595310480334,293.56618494167924,293.62938574003056,293.3663325207308,292.7072916412726,292.4388394714333,292.2013660329394,292.576512361411,292.3940119012259,292.4925200743601,293.3739722794853,292.7784868613817,291.8448151089251,291.21848017163575,292.01262727659196,292.95975229376927,293.38127641938627,293.0123842363246,292.3496558647603,291.81607637926936,291.91045563854277,292.5185267403722,291.70390991913155,291.62258991319686,291.56671000504866,291.2646224256605,291.80385150248185,292.3283641822636,292.37631633365527,292.48134921630844,291.76044449349865,292.2042379411869,292.26602826919407,291.9667504285462,292.3280840618536,291.7647981951013,292.2289752876386,292.52741536544636,292.5922246337868,291.598918793723,291.37663018656895,291.9893006174825,291.5739634684287,292.00417697429657,291.59957348229364,291.21388723142445,291.4419251997024,290.68419282883406,290.68608945049345,289.7703196750954,289.7510917908512,290.3881164044142,289.8526083738543,289.5304830856621,290.1609800029546,289.311996452976,288.38245844328776,288.200865726918,287.6811208766885,287.36985515477136,286.51327544730157,285.5400922866538,285.7812048397027,285.3270577150397,285.50971638970077,286.2788216727786,286.4178808480501,286.88774330727756,287.0687820883468,287.1041128388606,286.7329655177891,286.1248937686905,286.0405678744428,286.3048235271126,286.6159057961777,286.16619985876605,285.9391746507026,286.07895116275176,286.4448916185647,285.90543042169884,286.4616681812331,285.9695193027146,285.252041536849,284.96336495596915,285.34402038389817,286.2968830373138,285.89745457982644,285.52233856730163,284.99903990887105,284.9006525450386,284.5992567501962,284.35180406132713,285.28043946949765,285.687228650786,284.70207019150257,283.80407413234934,282.88028544932604,281.982576682698,282.0363270281814,282.16994261182845,282.25568162463605,282.77714400552213,282.5934732914902,282.504507553298,283.40317246923223,283.6482923780568,284.1343448711559,283.4415980153717,283.81599319307134,284.20232606772333,283.9131253166124,283.1793112172745,284.0617731618695,283.2941519948654,284.0000605615787,283.30418574344367,283.51271855738014,284.065941052977,283.36595135647804,282.8144590915181,283.5844233678654,282.93950225785375,283.80511983530596,284.35712023079395,284.2112999712117,284.79106880445033,284.59262400958687,284.50718055525795,284.80139746749774,284.81769683165476,283.98659957852215,284.081788636744,284.03831033594906,284.6937748733908,284.2583407056518,284.93943809578195,285.7639855481684,285.2788573652506,284.5514302640222,284.7441362980753,285.62217121524736,285.0416232328862,284.21531010232866,283.42646106891334,283.3417985122651,283.0423048180528,282.8010541968979,282.75665632402524,283.33988019358367,282.53936393372715,282.5863179024309,281.6570789841935,282.59592427685857,283.18461786815897,282.9418830592185,283.52463092049584,284.31717570126057,284.6440810239874,284.24780238000676,283.51669105608016,283.6883896375075,284.0872326409444,283.8462556912564,283.5379980779253,283.43979504471645,283.1752559370361,282.24953622417524,281.66991185350344,281.7166873323731,280.7378281406127,281.55965690361336,282.4608882321045,282.1550687053241,283.080799611751,283.4552990584634,283.40191214950755,282.62761710816994,282.37516257399693,281.99253548216075,282.006893849466,281.108103109058,281.747493037954,281.2928282688372,281.8021175339818,282.5303082270548,282.669672741089,283.4152141348459,283.80002633249387,284.4910044055432,285.3520924570039,284.41054249275476,283.70054536825046,282.9515612903051,283.3131808838807,282.83258950011805,282.5386791881174,281.5615711035207,282.5341161135584,282.45363634452224,282.38671727944165,282.6892824135721,281.9072903683409,282.2206890997477,282.52140161395073,282.25675929384306,281.68011991260573,282.22977035073563,282.0021918271668,281.3687609434128,280.9527133447118,281.36606606980786,280.62576827034354,280.7401247168891,280.9570230427198,280.8824956859462,280.5217208825052,280.7419632333331,281.3216724959202,280.3642164664343,279.4673179243691,280.1395018901676,280.12181483441964,280.0110668106936,280.400783569552,280.18331501539797,280.4879791615531,279.7421241765842,280.7089321115054,280.7968382826075,280.21337294438854,281.0734431906603,281.3372590341605,281.3011877099052,280.4697772068903,280.48297840729356,281.216321551241,280.81425101775676,281.7349984035827,281.9086861470714,282.0552559765056,281.20257053198293,281.55510144820437,282.4752576891333,282.4756253301166,282.6611715233885,283.3559896205552,283.8366288933903,284.3392323148437,284.5906110922806,285.05298415664583,284.75386061519384,283.77349869534373,284.34047397971153,284.9567875266075,284.2822292051278,285.1138082896359,285.70888898614794,285.72425216343254,285.2727663847618,285.36311197513714,286.1919100615196,285.6463347999379,286.27147785481066,286.13136029196903,286.7525645159185,287.1450881464407,287.9443972748704,288.24326053028926,288.7557401424274,288.363200542517,287.6090305740945,287.42177348583937,287.1601499696262,287.7027498180978,287.132980927825,286.59504997357726,287.3492561876774,287.95164039498195,288.3395968764089,288.5092860190198,287.63350361026824,288.08292270451784,288.77359603112563,289.10724624758586,289.7854184610769,289.89035171316937,288.9240542151965,289.8119712169282,289.5513997916132,289.81934570521116,289.37689411873,290.3517585573718,290.6785739501938,290.4497929937206,290.12508594756946,290.6572042554617,290.3571874802001,291.0382495885715,290.11921173054725,290.595027748961,291.5875755427405,292.313057445921,292.0543769784272,291.3422713391483,291.790377240628,292.6393882352859,292.41963112493977,293.12658502487466,294.0991997453384,294.86626080190763,295.17133537167683,295.27302324958146,295.50927536189556,295.968618247658,296.5626244060695,295.6795365768485,296.4367892774753,295.49312738189474,296.0693189050071,295.80692036496475,296.0868952674791,296.91694844374433,296.54759472887963,297.17489598086104,297.1618016823195,296.3224517693743,297.0322332791984,297.21554392715916,297.9281307240017,298.2504515843466,297.71196715859696,298.0163165219128,297.5768903121352,298.3785838414915,299.24033337365836,300.0064191822894,299.63561923708767,299.81229051202536,299.73278019716963,299.6053258678876,298.8845179826021,299.29080788837746,298.99476942326874,298.22641150979325,298.49154233932495,297.5823786454275,296.7009462811984,296.2759808730334,296.30737738870084,297.0639033210464,296.715896202717,296.87087323050946,296.9432759601623,297.92910151882097,298.8394337212667,299.41577347833663,298.7846036958508,299.67207577172667,299.0033702175133,298.04234808450565,298.46247386932373,299.25203165598214,298.7283662944101,299.5734151247889,299.1382929184474,299.91622488060966,299.44609904754907,298.4979860363528,298.5743982717395,298.74510442698374,297.83612842159346,298.44975882954895,299.2323620985262,299.9064946710132,299.93378191813827,299.7551251091063,299.6205638088286,300.2745397062972,301.05117021361366,301.5949139506556,302.0342174475081,302.2849468784407,303.1939671295695,303.70774908876047,304.53261889563873,305.4572259937413,304.7203681990504,304.24853723077103,304.80973397707567,304.73310367390513,304.75835865642875,304.06898848339915,303.7561782086268,302.9611452766694,302.1826429134235,302.8660156694241,302.0852694120258,301.811077774968,302.3276586160064,301.65972197800875,302.1745456191711,301.48152081109583,302.0757677885704,301.1825368376449,301.1310461056419,300.30685638729483,301.0040845829062,300.7827201485634,300.49124429235235,301.2845297669992,300.7747749038972,299.79858852317557,300.09333171742037,300.46060016099364,300.8804520382546,301.0794045301154,300.4953495655209,300.8376086577773,300.6693161036819,300.6182552925311,301.0639830781147,301.2968659643084,302.01697503821924,302.65717476559803,302.46143770078197,302.0858228211291,301.3186389859766,301.758665306028,301.87784616369754,301.5026932093315,301.6625441429205,302.1112201400101,301.70495182834566,301.6933970730752,302.44760260591283,302.7956943572499,303.73548208363354,304.3256688369438,304.97124272724614,304.66642172588035,304.34302155999467,303.6170737221837,303.2645176234655,302.812183951959,302.0783088072203,302.1085321609862,302.9364237827249,302.7640374992043,303.63400953868404,303.13054719148204,303.6509909774177,304.4257206306793,304.92351584974676,305.1498198010959,305.14086727797985,305.56858735671267,305.25867184158415,304.67215235717595,303.86167647736147,304.1278960648924,304.69199566729367,304.4697520537302,304.7697938447818,305.5180758549832,305.8300146474503,305.9190152026713,306.04114101361483,305.5546289207414,305.7061567977071,305.1429886324331,305.96062740450725,305.2611319241114,305.5112103316933,304.65562502807006,305.53620191430673,305.19772820174694,304.57266508368775,303.57472002645954,304.43995316745713,304.68705168413,304.3681474234909,303.9196370379068,304.3601738330908,303.9533540462144,304.34774000849575,304.0868563046679,303.12277415348217,303.31104430695996,303.48214199207723,303.978315457236,303.72480661747977,304.62775307288393,305.54828733345494,306.42272183438763,306.57077252771705,305.6556002679281,305.6520870598033,304.9449746045284,305.4146389416419,304.4294672878459,305.2078911443241,305.1756279980764,304.9788569933735,305.8284169915132,304.9263103483245,305.6119588180445,306.4966514115222,307.26501978514716,308.2032219818793,307.53603160893545,308.0519825229421,307.8883403320797,307.0580749195069,307.532133534085,307.3487898055464,307.5363324759528,308.33475066069514,309.2452339017764,308.250281132292,307.79178047785535,308.12925041886047,307.52324200142175,307.4569152481854,307.3641062169336,306.5019745756872,305.9567286600359,306.64765086676925,307.1960017369129,307.49546566046774,308.17475301539525,308.66525523364544,309.47224428271875,309.8510209284723,310.104089228902,310.1942048529163,310.8751203911379,311.76849655387923,311.5170886758715,311.69098986359313,312.60956664476544,313.5395103469491,314.14537609089166,314.4895026483573,314.0403832658194,315.0155905969441,315.34667470958084,316.3237842870876,316.92475574696437,316.73235229821876,315.89328209823,315.13603537436575,315.71679576067254,315.24546889122576,315.3633677344769,315.71729770256206,315.61248752940446,315.8872181926854,316.49090344877914,316.50607833918184,315.56332956720144,314.8144399244338,315.55151362577453,314.80052424781024,315.76263120630756,314.9933726130985,314.88628093898296,315.0004933862947,314.5935846292414,314.5105924839154,314.0039410414174,314.79771194281057,314.237702567596,314.5737227378413,315.4599162642844,314.47640598239377,314.98141202982515,315.2006592056714,314.9062371416949,315.36466152081266,316.215818809811,315.9944997774437,315.208274920471,314.4902078108862,314.6651026159525,313.74909438891336,312.9587664846331,312.47515249531716,313.3458337946795,313.0667827152647,313.7202288475819,314.0672981822863,314.46864798339084,314.8930936376564,315.26447958592325,315.09904206590727,315.74942647572607,315.6459616483189,314.884965039324,314.95016040140763,315.91984849143773,315.0529693244025,314.3818886023946,313.9064446645789,314.41296643717214,313.4523056228645,313.06666066264734,312.6631463910453,311.7537038298324,311.9283343651332,312.51144079398364,311.5696387346834,311.0140023538843,310.15308828046545,310.02610396780074,310.8952693697065,311.4010246149264,311.87260890286416,311.47316626179963,311.4704914968461,310.6838125749491,311.382347705774,311.3106918861158,311.54615547694266,311.4362773397006,312.07129792356864,311.37736523430794,312.2058322909288,312.1864453339949,312.64605192421004,312.98050831304863,312.57510873442516,312.2947402764112,311.6563949370757,312.38158255210146,312.4441546523012,311.9195250305347,311.2540010823868,312.0176075990312,312.14685158105567,312.28961507230997,313.12403263757005,312.68815370602533,312.7557561416179,313.44638145528734,312.66214980138466,313.5202730372548,312.8508520675823,313.44004386197776,313.5882467171177,313.7903455751948,312.9727940908633,313.2473955289461,312.66321170143783,312.47714490583166,313.07522282376885,312.70777059253305,312.90137213887647,313.1223891689442,313.56529071368277,312.9197672782466,312.6184307956137,312.27200771169737,312.51740360213444,312.1976313283667,311.53055674256757,311.6215622611344,311.4314000834711,311.67206672159955,310.75612354232,310.9237160505727,310.39164103893563,310.37613321933895,311.04621646599844,311.666489160154,312.49796280497685,312.7706094183959,311.79894855758175,311.83618068741634,311.0300847887993,310.39765750057995,309.4601164055057,308.52602579956874,308.4612836102024,309.06349814264104,308.6006567659788,308.6137004857883,308.4561077989638,308.299058413133,308.6363042322919,308.89668233692646,309.09789458150044,308.59511448955163,308.5281313341111,308.1249779346399,308.240915060509,307.3897855388932,306.59567706193775,306.3370126960799,306.1696587242186,307.1054735924117,306.84698076639324,307.14032045565546,307.488388158381,307.154517270159,306.2467698804103,306.0390212154016,305.34042446827516,305.1743403119035,305.6914605097845,305.96305408421904,306.4056016812101,305.6361563014798,305.32986285630614,305.3114994713105,306.1160093699582,306.6556573295966,307.507437647786,307.5610764576122,306.9818999064155,306.61862722830847,307.5035556149669,307.4770452240482,307.28883081814274,307.0463696131483,306.3142863069661,306.1498403106816,307.0822443179786,306.97550592850894,307.0072535369545,306.4011168126017,305.84937533782795,304.8647245489992,303.95592575287446,303.46197447692975,304.32743945671245,304.5864197080955,304.8428874495439,304.0077779260464,304.7359965131618,304.8946454715915,303.9423825307749,304.05204353434965,304.8159410059452,305.2539990786463,304.6539361011237,304.8858975856565,305.07562619727105,305.857408487238,306.36735317343846,305.3957018661313,306.1540537108667,305.4551276480779,304.8606649180874,305.51320819044486,305.30386832682416,305.3380395513959,305.52201844891533,306.19460961967707,305.8214806737378,305.05447265598923,304.6262167384848,303.95622150134295,303.485987693537,303.32838206738234,303.81937465211377,304.3040929683484,304.3685968616046,304.20586581667885,304.61153917806223,305.35954142874107,304.69846095656976,304.7928519132547,304.9842216516845,305.83511325670406,305.8867005929351,305.1612244467251,305.54191657621413,306.43096245639026,306.0068181026727,305.9484131485224,305.59674312593415,305.81674180179834,306.6016317596659,305.71951994486153,305.7198149324395,306.081426394172,306.4856881578453,305.87510893540457,305.66698772087693,305.95421055098996,306.5105865113437,306.82248804345727,306.1167074777186,305.2492229840718,304.67677111923695,304.48724356712773,305.32787755085155,306.09246527124196,306.0907457121648,305.96539534814656,306.3204636806622,305.4268824006431,306.2511195484549,307.12695843167603,307.8769970368594,308.33701290236786,308.8352853846736,308.86144584277645,309.32548035820946,309.9501621918753,310.12271430995315,310.7104269308038,310.0798669522628,309.3764495924115,309.0666991965845,308.21007472928613,307.34402700094506,306.8907783823088,307.84244298469275,307.4333525286056,307.4082162370905,306.4215977615677,306.11798403644934,306.017486193683,305.08710426604375,304.5262901731767,304.99064612807706,304.98866886785254,305.05847372766584,305.878223661799,305.10326895164326,304.8236354305409,304.775830661878,303.83133201673627,303.3995955600403,303.4655741266906,304.3828937569633,303.75980651797727,303.5228216825053,303.14054134953767,302.90387789253145,303.32853607367724,303.55039181699976,303.9316582363099,304.5802613720298,303.7787421462126,304.4969860287383,304.4249205319211,305.1232298845425,304.59179396973923,304.6284769256599,303.7952397344634,303.7625326756388,304.6692703710869,305.38701569475234,304.7176476228051,304.7581526651047,303.8036805917509,303.8532980554737,303.2444325629622,303.169313267339,303.81412499491125,303.21653407718986,303.215999617707,302.89287325693294,303.29772238992155,303.6180051723495,302.71334913093597,302.052204540465,302.52811558078974,302.1018736800179,302.4232390210964,301.88428150163963,301.5706920721568,301.59578430326656,301.7995851985179,302.21670861775056,301.75595563137904,301.21456369338557,301.0732874041423,301.5238875527866,300.6295553059317,299.7888867771253,299.2053704787977,299.435365117155,299.94316876027733,299.7423376562074,298.9868600573391,299.40290459338576,298.7910081236623,298.12256765179336,297.6918666190468,298.0824320167303,297.7410653429106,297.4718201966025,297.96390230208635,298.25764131033793,298.4575365977362,299.4557828209363,299.06318536400795,299.8535930546932,300.39894194249064,299.8902131379582,300.5261834464036,299.67115723062307,299.3124321717769,298.7497056913562,299.2923655179329,299.01346357911825,298.5693393726833,299.5009912401438,299.6621786658652,299.8180049927905,299.73579620104283,300.12867544870824,300.1145550911315,300.55939208576456,300.2557633393444,300.62795283738524,299.90052699204534,299.2106022243388,299.9300641203299,299.71086464170367,299.84688900457695,300.5711974063888,301.0204717135057,301.512282717973,301.5277549959719,301.73344673914835,301.87966226413846,302.6873368229717,302.3345163674094,301.9425176992081,302.78289388353005,303.51778415450826,302.6612856211141,303.2388058472425,302.34136662073433,301.8801793884486,302.04866697918624,302.09581106482074,301.4238002989441,302.4176904144697,301.84094203216955,301.1518861455843,301.68987863557413,300.85859846742824,300.9007685915567,301.59684317186475,302.595882889349,302.65370517876,302.3023891104385,301.71203870652243,301.8963077268563,302.67721402831376,303.4099678886123,303.7366207954474,303.82233512448147,303.3284396524541,302.9795311857015,302.72367494460195,302.04695751098916,301.523358526174,300.8392916256562,301.73175422102213,302.31106304144487,302.4012028831057,302.1603407221846,301.59781591501087,302.0490993610583,302.40115575818345,301.554181819316,301.575918618124,301.01453970419243,301.57988886814564,300.61446827463806,299.93441278720275,300.31602302659303,300.4041192578152,300.799247527495,301.34767656074837,301.69934302102774,301.78458403842524,301.4584064842202,300.75827994197607,300.91936546750367,301.3707323912531,301.40435642469674,301.36807014094666,300.3862424478866,299.73650998203084,300.2506396304816,300.79626133292913,300.7941552749835,301.20688202558085,302.02971296478063,301.4500786806457,302.05458972323686,302.5648546987213,303.38628035597503,302.7581941783428,303.1295726359822,302.3298184708692,301.7267930251546,300.9734498714097,301.53159817587584,302.41479088785127,302.42712887888774,301.7771012005396,302.32632218534127,303.15787824150175,302.1948438906111,301.96608141064644,301.1491037658416,301.8880414958112,301.4226124472916,302.24792981659994,302.1553596169688,303.0430104220286,303.8195416382514,304.68800048995763,304.3032632661052,304.57537660049275,304.47389262123033,303.6759369694628,304.0956951077096,303.5569947375916,302.8642266825773,302.68588520074263,303.31655930681154,303.8220203788951,304.1022857623175,303.8109935489483,303.85265275184065,302.87208918388933,302.160376066342,303.0149382278323,302.13312053354457,301.37228524358943,302.15689591830596,302.74497202178463,302.3670188668184,301.3691677674651,301.0582933188416,300.7355217593722,300.53631170094013,300.0632563759573,300.78243772964925,300.7401781016961,300.9811055320315,300.2214736295864,301.1640311088413,300.53517270227894,300.54147341195494,301.1713753528893,301.0329965711571,301.29475144995376,301.23840177617967,301.389971266035,300.64866112405434,300.71638764766976,300.73157554585487,301.2258533993736,300.5274225915782,301.1933658258058,302.03195756673813,301.3039582427591,301.0080871176906,301.95881342189386,301.2798801236786,302.1704838126898,302.1654279064387,302.6051157540642,302.7885770914145,303.12890012562275,303.70455442834646,302.84501291485503,302.69894247176126,302.23502089455724,302.610653095413,302.667963672895,303.47330177016556,303.75140591850504,304.6807740605436,305.6012447681278,305.0680078198202,304.77743710624054,304.5642457585782,303.6829667962156,304.50571053428575,303.5629629702307,303.13375687459484,303.6003348287195,304.49291565455496,304.30209063971415,303.7292653345503,303.58254240779206,304.4523478047922,304.4720276920125,303.9551517548971,304.20938692241907,304.3875703383237,305.3149487306364,304.90800562594086,305.80283293360844,306.54009898379445,307.5225720545277,306.89926746627316,306.69842561660334,306.5071719898842,306.2888622288592,306.0298805949278,306.2713479590602,306.45707734813914,306.13050177227706,306.6368443365209,305.8989301538095,306.6623578625731,305.9416936025955,306.5492544649169,305.59702422562987,304.8443669225089,304.698674720712,304.8892844263464,303.99567536404356,304.04749593604356,304.98628571955487,305.71801269985735,305.99806583253667,305.9458762113936,305.23331846669316,305.1618015160784,305.63009949959815,305.94191008852795,306.7467333902605,307.0519022741355,307.84411932574585,306.90870348736644,306.86014133831486,306.7503106337972,306.35629375325516,306.4176050876267,306.3341351468116,306.33966409415007,306.75581670505926,306.89410929754376,307.4989342219196,307.54621574282646,308.1571707348339,308.4368260707706,309.34866687469184,308.5188773171976,307.59546761773527,308.2612359179184,309.01596484007314,308.7291699894704,307.94398315483704,307.55404226947576,308.35703579429537,307.41100478265435,307.96219376288354,308.5155712617561,308.7961294283159,307.98735404293984,308.1118222940713,308.4861981505528,307.8092329930514,308.51919793803245,307.80105925211683,308.30210219323635,307.72293310659006,307.2903338111937,307.554385851603,306.8588545653038,307.1989891771227,306.3637817897834,305.875484907534,306.35042445827276,306.2389147798531,306.91552503407,306.74834909057245,305.7717778496444,305.94971362594515,306.81699861958623,307.35100622009486,307.2387535562739,308.05925398040563,307.7471727496013,307.0028689862229,307.7709669354372,306.8146809018217,305.8244477212429,305.991347046569,306.27844456071034,306.9490927103907,307.06202558847144,308.0308983218856,308.9636042797938,308.4648934584111,309.40996407251805,309.80621609278023,309.0209566485137,308.8712931955233,308.3780754012987,307.84688050299883,307.345057124272,307.08099694317207,307.27644772967324,307.0639091921039,306.54773039883,306.77737571904436,307.28939374163747,307.6526329815388,307.04283082438633,306.08259102795273,305.16255376301706,305.9019644786604,305.77089953934774,306.30652315262705,306.7082404214889,306.58752073766664,306.6215719548054,307.2138657658361,307.425640118774,307.15793898515403,307.9418440111913,308.4355304935016,309.3190832491964,309.38417510222644,308.53805840108544,308.49016089271754,309.3444022741169,309.622156560421,310.5891950330697,310.8250240092166,310.92329158680514,311.6095512905158,311.66134487325326,312.4207000415772,313.16874033538625,312.32312755612656,312.7595930979587,312.26319704949856,313.24210661044344,313.29854623926803,312.4862666684203,313.0758627327159,312.59300104761496,311.8900057221763,312.11818641843274,312.3549185595475,311.92387527320534,311.79714246932417,312.53071231674403,312.34574134554714,312.8890002882108,313.2067078878172,313.87919943826273,313.5317149888724,312.98036607913673,313.5488602351397,314.2214681445621,313.73992901854217,312.9337310511619,313.1748981131241,313.2407480808906,313.36922934651375,313.38525017909706,313.8208449212834,314.7409617160447,314.8073755213991,315.38229551399127,316.19090737681836,316.53423061268404,317.1506431894377,316.84538979595527,317.8224341184832,317.8713770257309,316.9798928354867,316.61728347232565,316.63207592023537,315.6900508305989,315.51680085947737,315.37756898161024,316.1080160192214,316.4942278047092,316.6259428462945,316.3206646530889,316.0807272316888,316.58923240285367,317.51416705874726,316.9966790336184,317.1888682320714,316.64798546163365,317.4481319319457,318.23859356623143,317.73264458263293,317.5852741347626,318.53591412724927,318.2533326698467,318.89478859724477,319.6970753739588,319.98016465082765,320.8514290843159,321.39742484036833,322.08283950202167,321.6674053007737,321.3433642918244,320.63316921517253,319.86696759890765,319.86153302900493,320.15089410124347,319.2340964432806,319.40680836094543,319.81369294645265,319.7738657016307,319.43627344165,319.3956382488832,319.649460776709,320.1234669331461,319.1644094460644,318.32361087203026,317.8321970743127,318.15478359535336,318.5678160614334,319.00556915299967,318.1086623892188,318.89451531041414,318.74081990588456,318.37203765194863,319.0480165760964,318.1758586554788,318.6860286979936,319.6057856795378,318.6683966834098,319.16754257306457,319.4297270462848,319.49124251212925,318.9828724307008,319.6128106331453,319.8531657718122,319.9672716627829,319.4697090331465,319.1190729988739,318.9441171386279,319.2488702842966,318.4501375234686,319.20426527550444,318.31686620693654,317.8039070270024,317.20394810987636,316.3296101023443,316.0674968226813,315.13641707599163,316.06499972427264,315.1637358786538,315.9210238638334,315.1188437398523,315.09956198651344,315.6058696717955,316.60346422716975,316.05757870478556,316.07004609471187,315.1853486588225,314.2184929153882,314.5908433380537,313.6043819761835,313.1398295094259,312.6593239423819,311.79921969911084,312.35871519567445,313.1165029332042,313.8779502795078,314.5719220340252,314.9132633842528,314.38474530912936,315.1650719894096,315.52684284048155,316.3130497899838,316.05233965208754,315.99513697531074,316.01847117673606,315.91212657652795,315.94869418954477,316.8529435293749,315.88172661466524,316.7090876279399,316.43900543404743,316.1736024101265,315.36191639490426,315.2390961381607,315.48017626348883,315.39799769455567,316.1502027711831,315.5244465158321,316.35350826429203,316.74742946214974,316.5463874852285,316.33751094248146,315.752425996121,316.0772481895983,317.00925841135904,317.3368615717627,318.24149717902765,318.40794059447944,318.4658493786119,318.9312086883001,319.49117641011253,319.58198693115264,319.5091642457992,319.99557015066966,319.20771955884993,318.5201423051767,318.16541976993904,317.7524586436339,316.90769179724157,315.9253286947496,315.74587300233543,316.47445683926344,316.4173288210295,316.49549394939095,316.5724621252157,316.44820984452963,316.58516148803756,317.3978970516473,317.0503864940256,317.36660447809845,317.81798813771456,317.12766249477863,317.3262763149105,317.7919449293986,318.084299006965,317.207851474639,316.72246303549036,317.68675750587136,318.156901655253,318.13495986396447,317.1557902819477,317.98108775774017,318.12218722095713,317.43985315877944,318.3688805149868,318.8652951535769,318.83493254706264,319.54929157346487,320.34665463725105,320.9981198431924,321.3676023250446,321.3114321939647,321.1166224796325,320.6385790826753,320.43974316166714,320.89442155882716,321.80520904948935,321.07398321153596,320.7405041549355,320.7223733267747,321.25043575512245,320.693319468759,320.5594727974385,319.6672935592942,319.50051665958017,319.17493533622473,319.91645942116156,320.13814952550456,320.6468765474856,321.32903028745204,321.1581444828771,321.5348868253641,321.2979190982878,321.0206002239138,321.38994154613465,321.6283034593798,322.36065759696066,322.0251911729574,322.5022771139629,322.81189676653594,323.7869389941916,323.06718039605767,322.4290001373738,322.689881216269,322.8047474347986,323.07362170889974,322.23057154985145,322.6167727904394,323.1812046240084,324.12651191744953,323.3255255911499,322.3798519014381,323.2069494794123,323.19682502094656,322.76911888923496,323.73064707778394,323.40458965767175,323.96500928513706,323.9588552052155,323.5695372959599,323.354213448707,323.07500054547563,323.1934877387248,323.12320100609213,323.3561414205469,323.4144758316688,323.1806080667302,323.55086370697245,323.8767157588154,323.8757893904112,323.01733952760696,323.08497606310993,323.6799317644909,323.6392234880477,323.62797632068396,324.22492013080046,324.47055725893006,323.9719848348759,324.09643283719197,324.8809073730372,324.0920287305489,323.98521551908925,323.7952716941945,324.37574016163126,323.7691359226592,324.6416202397086,325.4639757229015,325.8509605061263,325.1395136890933,324.90559130581096,325.52095722965896,326.4160802559927,326.8475907444954,326.91723023960367,327.75305658206344,327.7000104980543,327.45083469571546,328.25484531605616,328.3058296847157,327.4785410100594,327.0159322032705,326.4906425178051,325.9126110011712,325.48711919179186,324.8251991420984,325.2974080541171,325.18305486347526,326.0615364732221,325.5401210761629,326.488756085746,325.9208118515089,326.2969516431913,325.67144452547655,325.12861988926306,324.3245170908049,325.27051585540175,325.7031270414591,325.50320176873356,326.40207433421165,325.7291787485592,326.49294160539284,325.6592476051301,325.57882622396573,325.4517007051036,325.50661288853735,326.03639513021335,327.02809372125193,327.32281901314855,327.33601061673835,327.1856908467598,327.67554814368486,327.3594383317977,326.5324989040382,325.7871994562447,325.0333223361522,324.3411020436324,324.54532764619216,325.1515476806089,326.00149898044765,326.0095326085575,326.6732045803219,326.77746052946895,327.70316767459735,327.06232365081087,327.8135949764401,328.4721082900651,328.4338539117016,327.46275854622945,328.1225692857988,327.61340154055506,327.7189988377504,327.83440551534295,327.48230527248234,327.82237217389047,328.73086764337495,329.07026775879785,328.28587509086356,327.71616521338,328.5714132981375,328.9200372202322,328.78963538911194,329.1400449848734,328.40991382068023,327.63143522758037,327.90858968906105,327.1275235712528,327.10180368227884,327.86131726857275,328.60748228942975,328.7169831171632,328.7948657586239,327.8347923778929,327.0068051451817,327.581424490083,327.72145374817774,327.00169934378937,327.8822002722882,327.0773725886829,327.08578578429297,326.9403750603087,327.857758811675,327.54101317282766,326.959649247583,326.8782908585854,325.900334012229,325.8949720915407,326.4915223736316,326.0807590940967,325.8695189305581,325.05600931914523,325.1030813730322,325.40360005153343,325.46906841453165,325.5061211162247,325.2360559524968,325.77132799243554,325.7172776176594,325.4717055214569,325.9013781109825,325.6255143727176,325.18968438450247,325.2105511208065,325.4565243120305,326.28397109685466,326.7156517948024,325.87333450187,325.87238476611674,325.6430719499476,325.34442448755726,325.2290749307722,324.68431022856385,324.64827595325187,325.4395500267856,324.6371442368254,324.0307280528359,323.68633959442377,323.50776645960286,322.6621801103465,323.5597801092081,323.8538744780235,323.5611797096208,323.0521328081377,322.11308715026826,322.59653717279434,322.86230507539585,323.54797936882824,324.5161632425152,323.9101718775928,323.83619168167934,324.53141722781584,324.51156066311523,324.00544156646356,323.8753108670935,323.93793583102524,324.6030612732284,324.71276989998296,323.91458993032575,322.96805118443444,322.2070575254038,321.79628688748926,321.3880502944812,321.3523934544064,320.68664613505825,319.69243380380794,320.0547791365534,320.29857615800574,319.6195845496841,320.22422693436965,320.1598129803315,319.5336738298647,319.7953396216035,319.25219284789637,319.8910096436739,319.5301505122334,319.5558929787949,319.9831708432175,320.094301388599,320.37105301581323,321.3595173349604,321.2910924409516,320.6970265377313,320.9195109317079,320.6895448118448,321.01549264695495,321.88675515027717,322.0353486663662,321.8365657683462,321.9179386580363,321.2730006109923,321.7450018674135,321.37958840467036,321.71113128680736,320.7143062995747,320.12910695932806,320.28655836358666,321.16449368931353,321.5752119249664,321.2744806832634,320.6479494962841,320.9105844758451,321.4488772568293,320.6233502109535,320.55779325263575,320.48123865481466,320.8377555520274,320.57935175299644,319.5795856770128,320.3930837851949,319.64707579044625,319.1314983391203,318.165015574079,317.8387216622941,317.7909254832193,317.37023456720635,317.4549438166432,317.20451606763527,316.756142640952,317.6523477206938,316.9581737164408,317.240442792885,317.9300636611879,317.63205766910687,316.8892793809064,317.8820476946421,317.4294876488857,316.9325222624466,316.4060911415145,316.20808161236346,316.63673302857205,315.81987530505285,315.88357580732554,315.39038703683764,316.3174707368016,316.81447517406195,316.29754107352346,315.699897792656,315.8343311455101,316.77307612542063,317.0678866542876,316.5890232818201,316.8207071805373,317.6300463345833,317.21503359265625,316.6507081873715,317.4899193053134,317.8229315201752,318.1142634549178,317.74927295930684,317.88642379594967,317.43790522264317,317.8473744103685,317.8443340868689,317.5474988860078,317.8306283708662,317.949102780316,317.49889547843486,316.7872458891943,317.2225221404806,316.5335519993678,317.01260476140305,317.4190540187992,317.839135508053,318.0157652022317,318.04412027355283,318.4042345867492,317.5747801652178,317.4237825209275,318.0416500987485,318.1203677370213,318.12091990886256,317.78254491183907,318.7292766519822,319.60892797028646,318.6251298841089,318.4342707679607,317.9102381984703,318.1898560211994,317.61114274477586,317.6358196805231,318.5531171346083,319.0346204414964,319.9051525699906,319.6124296146445,320.2616246044636,319.8250554758124,319.8884844169952,319.6075587719679,318.68317643972114,317.8909934028052,318.2176556987688,318.30301469098777,317.4611850087531,316.676723504439,317.3819400263019,317.0577773367986,316.3372997525148,317.03529307525605,317.919604156632,318.4475817941129,319.3334719208069,320.0874318960123,320.2224128982052,320.42105158092454,319.9919559727423,320.8711359202862,321.609141595196,321.153932929039,321.10270657390356,321.30017254082486,321.7707334458828,320.7932861321606,320.012145397719,320.8833252065815,321.4821656071581,321.7116664838977,321.9637145982124,321.1451792814769,321.22322815237567,321.26730809221044,321.9592303163372,322.4482831219211,322.4123584879562,321.73594016348943,322.6818469269201,321.72073376039043,321.3728051013313,321.35480955289677,320.51216250425205,319.834564300254,320.18844976229593,320.27520498167723,320.9131368128583,321.78225406166166,321.2351904255338,321.50724990619346,322.28164794435725,321.8090517199598,321.00706793460995,321.09418483031914,322.07978656096384,321.3472542273812,321.49838280584663,320.6309146862477,321.2619335646741,321.503256524913,321.06169597571716,321.78694534115493,321.6744995689951,321.1197973988019,320.80930436821654,321.0545357884839,320.81719895172864,320.1971062994562,319.4815480513498,320.0916672241874,320.2582726464607,320.94752712827176,320.0127717158757,319.6219545598142,319.88356940820813,318.9032729258761,319.8135969033465,319.47563985176384,319.0832391236909,318.3199050081894,318.3392036478035,318.7623814791441,318.2656803242862,317.8768822462298,317.8005766738206,317.649908058811,318.4635510575026,318.2413001176901,318.85487490706146,318.8600931884721,319.08995216945186,318.3724253368564,317.95076083485037,317.15291496319696,316.7018347508274,317.43921801587567,317.24982931651175,316.5954127558507,316.7301585711539,317.0444108569063,317.44446664722636,316.5154402125627,317.1513160597533,317.83173316251487,318.613854940515,318.0262244925834,318.390968197491,318.13666492095217,317.6645109639503,317.9982756609097,317.6241135406308,317.827886919491,316.97753398725763,316.52550689922646,316.71427950868383,316.7794523262419,317.44573416374624,316.6221303297207,315.64442401658744,315.77443316811696,315.14497677842155,314.6965134413913,315.3733025500551,315.84229846438393,314.98675904423,315.0533693670295,314.50468779494986,315.02561703976244,316.0168392295018,316.3387913107872,316.68901312723756,317.4793923259713,316.9979078765027,317.97959972172976,318.0786541919224,317.7849853076041,316.8053170652129,316.73997461702675,317.1469822274521,316.6300875567831,315.91944738058373,315.94893425982445,315.9995739920996,315.37285203579813,315.59032775182277,316.5064947907813,316.59670727932826,317.08473084867,317.18397949356586,317.0904570571147,316.7397181731649,317.0836723088287,317.61260894779116,317.3753440249711,317.202396413777,316.33680029632524,316.15261976839975,315.5236218483187,316.5104097449221,316.4751311694272,316.085355354473,316.0878749382682,316.07558573642746,316.10972538171336,315.31293325219303,315.6627622321248,315.49768872978166,315.3394570206292,315.17258151015267,315.0561836087145,315.1145749464631,314.8411586144939,315.45231423247606,315.8637108313851,315.78566572489217,316.13663801411167,315.4801951693371,315.52112178038806,315.66387970000505,314.97289798548445,314.7049850989133,315.1559387771413,314.7557115117088,314.0504488120787,314.4818562846631,314.54888504138216,313.89464373420924,313.77119025914,312.95380004355684,313.9439499042928,313.1142942882143,312.18462098389864,312.76838417863473,311.8001660001464,312.7604322177358,313.2399220908992,312.8660249901004,312.4594083838165,312.30459310347214,312.463007111568,312.5341276344843,311.87745675770566,312.60380109911785,311.9395410842262,312.90988991688937,313.468554565683,314.27055804850534,313.7344927052036,312.7392304725945,313.5051151816733,313.38801282970235,313.96927426801994,313.09340773010626,312.1122328690253,312.5285272775218,312.874692176003,312.41451450577006,312.160705874674,312.4853242477402,311.5153645868413,311.9165105400607,312.2694430616684,313.02858558949083,313.86679465696216,314.8379009072669,315.6349859996699,316.0578974671662,315.9025688790716,315.4823943134397,315.0056263357401,315.523438511882,314.8303413912654,314.1155658760108,314.7480832771398,315.5872827670537,316.35621189745143,316.8828856414184,316.08553935214877,315.8336198651232,315.61412977520376,314.7853599889204,314.00548307364807,313.32158554764464,312.3523575710133,311.8704331382178,311.6970928669907,312.12845046585426,312.5225913110189,312.89740807330236,313.6377310953103,312.9117670953274,312.0017327014357,312.20202769199386,312.5234014829621,312.5630641602911,311.708368208725,312.09168430184945,311.3017223486677,311.70319316117093,311.73691167263314,311.75175497774035,311.4346359781921,311.7182399057783,311.6955003780313,310.72848039725795,310.65425349911675,311.0807318505831,312.0576474778354,312.11874184338376,312.85868375282735,312.6654859385453,312.6017173905857,312.8981367680244,312.5376130277291,312.20533950813115,312.8328376458958,313.5134443533607,313.51709356484935,313.47573741851375,314.33476961310953,315.14663965953514,315.6431146408431,315.8063573311083,315.505942245014,314.5962716732174,315.45106930984184,315.0159923667088,315.9458477143198,315.87752309581265,316.30990471644327,315.71453048475087,315.4414843143895,316.26888360083103,316.5347523749806,316.13209272921085,316.207120988518,316.41273624030873,316.666951100342,317.39255457976833,317.56140862964094,316.85821729991585,317.3800237555988,316.38313435250893,316.6860805535689,317.14905408443883,317.8577664466575,318.58020243933424,318.36800798913464,318.7464837823063,319.69884334597737,319.5522792064585,319.4793433872983,319.79387728637084,320.04510326776654,319.9777872734703,319.9030849947594,319.1541493232362,318.66663884790614,318.25175545876846,318.97784400498495,319.3872637213208,319.1916986601427,319.5806351550855,319.00922304578125,319.5298350970261,320.1671600798145,320.9138063304126,321.3173990235664,321.9607517262921,321.9806600245647,322.10584663785994,321.80581391975284,322.63788445387036,322.72765364078805,321.92754817334935,321.30173067282885,321.075490700081,321.0789306187071,321.69220230169594,322.07886081794277,322.75938417064026,321.81745153618976,321.374595140107,322.04142547911033,322.4808718841523,321.77806402463466,322.5323926350102,322.39089950779453,321.6428191708401,320.8138380898163,320.3008427647874,321.1724237934686,320.24474406428635,321.1670122882351,320.3365168911405,321.2252765055746,321.0093730487861,320.08096015593037,319.1401356700808,318.417644682806,318.6013363869861,317.938809143845,317.5027535408735,317.68339300109074,317.37110927095637,317.31829310487956,317.3363243523054,317.40307614486665,318.01920759957284,318.1270154430531,318.716068552807,318.33299134345725,318.6420354414731,319.18472526967525,319.33021989883855,318.9401951627806,318.17064336687326,317.2536822911352,316.63178495597094,315.88328564027324,316.2891336902976,315.61801300989464,315.8756475993432,315.23449396388605,314.96024545747787,314.28181357774884,314.2404921310954,313.73672472592443,313.98380754189566,313.4136221217923,313.391240994446,314.2292972141877,314.73425978049636,315.38294993387535,315.70411719288677,316.575276712887,315.9729067431763,316.8141510183923,316.8513371483423,316.63241676893085,317.4673876520246,318.03522373363376,317.1706980452873,317.40708568738773,317.08168142521754,316.1305565661751,316.52256844053045,316.38179424451664,316.29361988417804,315.60850517079234,314.69501357525587,314.1779253142886,314.45310544921085,313.6697503933683,313.25491068465635,313.447519431822,313.5080788843334,313.0334600186907,313.0479772086255,313.6302980212495,313.49855626234785,313.98230504384264,314.97504066769034,315.3162300987169,316.02033451991156,316.69848035275936,316.6728134714067,317.4772599474527,318.09566350793466,319.0508902030997,319.02855090238154,319.7560991710052,319.7300919010304,319.7314768061042,320.72254251362756,319.820044205524,320.2710642958991,320.3066847990267,320.2772427550517,319.7818314381875,320.514989587944,320.77601305488497,320.9567898870446,321.75692973844707,320.84453929727897,320.91463742638007,321.6566335740499,321.4353218865581,321.19519212050363,321.2397813410498,321.29378437716514,320.62270671268925,320.4003271679394,320.71101024886593,320.6144702201709,319.7341424180195,318.78001598035917,317.95672188000754,317.4515824574046,317.7849214365706,317.23807139741257,318.10333007434383,317.36941616469994,316.45467203622684,317.1591723966412,317.12709033628926,317.7030336759053,318.3057065419853,317.44230753323063,318.2634994070977,317.8968234458007,317.434774317313,316.92071368172765,317.6764708198607,317.7371041229926,318.291651269421,318.44411724386737,317.6037172260694,316.71681687561795,315.818577431608,316.55171737167984,316.4626601575874,315.7205777144991,315.12013107398525,315.17845373693854,315.7092983345501,316.04476883728057,316.9552718172781,316.83144064666703,316.2280453937128,315.39630655711517,315.89397883880883,316.0603329096921,315.1652588415891,314.5181422396563,314.1797958915122,315.00297700986266,315.53110088035464,316.44866067077965,315.9894547802396,316.6027577109635,317.2201197007671,317.8084539026022,317.87574759172276,318.4824056616053,317.8034622510895,316.9183095176704,317.90160466590896,317.2449304033071,318.23326325044036,318.4639584906399,317.8619358553551,317.69073663512245,317.1882712789811,317.9809544798918,317.41572959627956,317.4498514649458,318.4413540838286,318.5563124534674,317.6678491937928,316.96942248241976,316.77897786255926,316.9598038191907,316.8212478677742,316.6888267598115,316.8082421529107,317.4836015999317,317.2053310838528,317.6256848205812,316.9141282392666,317.4333839705214,317.4014318319969,318.1516804276034,317.76268427073956,318.66170257516205,318.5744196041487,319.5134556158446,320.2468164875172,320.80245459033176,321.44276187894866,320.4727820241824,319.48528230469674,320.2057664068416,320.33782738633454,320.0370786767453,320.5074383416213,319.60830216342583,318.7584683462046,318.90784244891256,319.59721683571115,319.0166845181957,318.36247052438557,318.98605407308787,319.13251946121454,319.76566112414,319.59161968389526,319.2751938975416,320.13527306728065,319.20525852404535,320.00126368924975,320.63177587557584,320.9497665488161,321.62350817164406,322.4289360176772,321.71480797277763,321.713688202668,321.8601797311567,321.27495656441897,320.5539313261397,320.7261298648082,321.6317439698614,322.09151190379634,322.32209980115294,321.92433729115874,322.73205336229876,322.04466404300183,321.80722791235894,321.786864020396,322.620778599754,323.40608006343246,323.0470509622246,322.98992888676,322.422777836211,321.81924886489287,321.8531842920929,322.0461727636866,321.31300396984443,320.793920094613,321.0464541045949,321.2293230006471,320.6583244227804,321.5261846021749,320.92463995236903,320.46323376940563,321.1583854793571,321.84375056577846,320.9560042396188,321.7482086890377,322.7302634520456,322.2472609030083,321.69665776146576,320.77294196235016,321.28887509554625,321.1535142948851,320.6781493392773,320.11353286681697,319.6208628709428,318.8946367544122,318.3631323091686,317.6386507176794,317.6248095538467,317.6814397536218,317.5357597367838,317.41637880867347,317.8947357023135,317.1752671166323,317.81218701414764,317.5543879242614,316.65316567383707,317.46985541656613,317.4702696488239,318.1908456683159,317.21717887651175,316.9831539117731,316.33746372675523,315.9551108595915,314.96847189357504,314.1768745612353,313.6015636450611,313.16733945999295,314.119115002919,314.4694738597609,314.1825998495333,314.17397266300395,313.24160621408373,312.7021534801461,311.81987681938335,312.2849127049558,313.16414549248293,313.1678092456423,312.1787047800608,311.40490933321416,312.2799861347303,313.20319034857675,313.95501194894314,313.3871943708509,313.84608724247664,314.31903649680316,314.6744948485866,314.1331143975258,314.67894804803655,313.7904613292776,313.872664057184,313.3002146538347,313.14483258035034,312.6367314532399,313.54798181029037,313.58621252840385,313.1101441117935,313.50491585442796,312.54491343256086,312.0773364054039,311.19923317199573,312.03424721071497,312.8974393969402,313.56465775799006,313.629915419966,313.7526470287703,313.9731849418022,314.2706498927437,314.6077778832987,314.4018932678737,313.6010997877456,313.5786505206488,313.4879142087884,314.36972012463957,313.8974455874413,313.1697132908739,313.38788089342415,312.9975886926986,312.9762519109063,312.1596550103277,312.8505883794278,312.97485308209434,313.52589916205034,313.35504635516554,314.01136891543865,314.5949879549444,315.0315118962899,314.5206390074454,314.6971971159801,314.45201867679134,315.0091099780984,315.60990077257156,316.4828727156855,316.48318858537823,317.24936709180474,316.6329981270246,315.7797418241389,315.18300633179024,314.6990747824311,314.3670175601728,314.92568419873714,315.2944552092813,315.61280147871,315.8543042088859,315.4894339358434,314.4989372808486,314.29263390181586,314.05394660681486,314.4294437067583,315.0012712259777,315.774724047631,316.40932935103774,317.03710202826187,316.1262200428173,316.86559576401487,317.3134224838577,317.76710101403296,317.6286002290435,318.3979785684496,317.897131272126,318.5248080897145,318.11989351082593,318.49055267032236,318.90068052662537,319.18899956019595,319.0055121020414,318.80168956844136,318.14410857576877,318.7303865766153,317.7835594555363,317.3320481237024,318.02421549521387,317.70739104039967,318.2436287519522,318.0724876546301,317.5763329504989,316.8567603128031,317.39186876127496,317.4054778921418,316.70607692422345,317.535303236451,316.7338312775828,316.784018301405,316.2433601953089,316.2235662015155,316.28403526358306,315.9125067242421,316.47897672699764,316.4585131416097,316.8937507518567,317.5979689708911,316.7062303060666,316.188213809859,316.9742583017796,316.375553810969,317.156015206594,316.5806427341886,317.5020796167664,316.6190246366896,316.4613937633112,317.34229285735637,317.0118325003423,316.2945831636898,316.3165337895043,316.084682978224,315.1830077706836,315.82609908655286,315.42401368170977,315.4678516224958,316.32596123358235,315.72973899310455,315.12057530740276,315.8916519675404,316.83853222290054,317.7481895145029,317.77557940548286,318.7531665698625,319.4275430464186,320.1970799313858,320.53815953060985,321.04716437496245,321.4785042521544,322.25008422415704,322.2572085163556,321.70384220127016,321.6489536673762,321.39876948622987,321.99164249701425,322.7559715025127,323.6277659414336,324.4783106725663,323.821777719073,324.0514156660065,324.065254020039,324.8479698752053,324.9407162768766,325.114313475322,325.4594621742144,326.2667406522669,326.80447603808716,326.2761396751739,326.797625974752,326.3756262715906,326.87808509077877,327.37944941874593,327.341328069102,327.8058815058321,327.45740585401654,326.7968256957829,326.1944825123064,325.57740986160934,324.9623556290753,324.7723679849878,325.548211005982,326.408259192016,327.35626343730837,326.84690686361864,327.112840375863,327.0850013885647,327.3429976827465,326.65852586599067,327.62275179708377,327.0388645622879,326.0599737428129,326.1841378300451,325.87121784547344,325.8671606197022,325.70165552571416,325.10710556805134,325.37802253849804,324.4964785454795,324.43107446376234,324.81473781354725,325.222321419511,324.6946038310416,324.31334237009287,323.7355337655172,324.37101325625554,324.1174867399968,323.51112211635336,323.16093011852354,322.3027027784847,322.37481267238036,322.5244511500932,322.43596807168797,322.5333263021894,322.29048725171015,322.8481007735245,323.4122504959814,322.8400868885219,323.20937123848125,324.1071709548123,324.283301319927,323.71636599721387,324.61194852972403,324.1197158792056,323.78010206855834,324.37371766753495,323.4067739066668,322.5264033344574,323.14094401476905,322.7471515061334,323.4007379175164,323.6548563800752,323.8625645949505,324.46406174916774,325.41229939926416,324.80967240035534,325.4323935783468,326.2454615952447,327.17502014897764,326.5520291021094,325.9177892189473,326.8144256044179,326.7608288791962,326.420472308062,326.6324450527318,325.95697663817555,325.1578100468032,324.33749155141413,324.9799288637005,324.4912219652906,325.4078610124998,325.7400200194679,325.69273099536076,324.9329014993273,325.78539483528584,325.9676766418852,326.1105056582019,325.4187598777935,326.0178717705421,325.46903795329854,324.78362112957984,324.9858329272829,325.44011641154066,324.6984694865532,324.6125725819729,324.2896562204696,324.38487431546673,323.39422184508294,324.17384867276996,323.407882922329,322.4627588358708,323.3767037857324,322.9291558759287,323.74968233658,324.05331144016236,324.9255083152093,324.1757159428671,323.79205609252676,324.4104258553125,324.03616331052035,324.91058583697304,325.7707752743736,325.99447631277144,326.0617207987234,326.85130231035873,326.6133072678931,325.68525396939367,325.77866267971694,325.6787237068638,325.9935454200022,325.7649200698361,325.80733782518655,326.74473788496107,327.58252275781706,328.28716928791255,328.97040837816894,329.50826715957373,330.0543035925366,330.7053561429493,331.6379223521799,331.8560810480267,332.6794070210308,332.9378671855666,333.2788871154189,334.2516756700352,333.8004386140965,334.0258826157078,334.7122238059528,333.8663237974979,333.42292959149927,333.53561564488336,334.41257383767515,333.7038590023294,334.6754515157081,335.5741419158876,335.5418439526111,336.0299300663173,336.277632702142,335.8754764003679,335.0060869753361,335.98764419043437,335.3424345511012,334.8173863743432,335.4373015994206,336.19417555304244,336.5177116477862,337.4955555521883,337.7872225805186,337.31154303997755,336.5163718191907,337.3596310657449,336.7641510190442,337.4220286644995,336.8350952086039,337.7215349045582,337.76915335608646,338.55099147418514,339.17121708439663,338.39682005764917,339.33531267615035,339.05724850995466,339.72270284127444,339.32964009186253,340.24985196767375,340.91709684114903,341.8923512650654,341.26973643153906,341.04684865055606,341.9561252701096,342.0989501532167,341.2526073581539,342.1915415623225,341.4462529201992,341.7519774362445,342.0902876826003,342.38688267581165,342.78381405910477,341.8785031493753,342.8427682821639,343.6670247321017,344.3174028513022,343.65763945830986,344.45151739241555,344.3747458420694,344.25776312779635,344.8664250425063,345.58251455659047,344.93962969398126,344.2536253980361,344.16253389185295,343.6517573231831,342.66883954172954,342.2508572060615,343.0200002673082,342.8748793262057,342.0388397774659,341.42554910853505,341.7961926679127,342.1782658761367,341.31180614233017,341.74331360822544,341.8154432256706,342.4411398265511,342.61588213732466,343.58627367857844,343.4709000326693,343.11249763472006,342.19668118236586,342.8552520768717,342.2692733495496,342.44028538651764,342.8258564416319,343.2493580458686,344.1111247590743,344.0266680959612,344.1178259267472,344.832527723629,345.11131866602227,344.49883189052343,344.0176369519904,343.1421115915291,343.385170457419,343.34403669741005,342.69809859711677,342.02722688158974,341.7526727109216,342.12259111134335,341.899536837358,342.02963041793555,342.4208592879586,341.52081011608243,341.10138818621635,340.6837584869936,340.10275101149455,340.9957666974515,340.7126359581016,340.7136582150124,340.90606106771156,341.64347529923543,341.225621687714,342.17734187142923,341.6640407475643,341.4022149569355,340.56431343685836,340.30692414939404,340.70654095103964,341.37600504187867,340.39799692481756,339.41728237690404,339.41813974035904,339.29865884780884,338.3744542058557,338.7625891128555,339.60635077999905,339.0512782977894,338.7916965279728,339.47891877265647,339.2187959239818,340.173730250448,340.0088962940499,339.2681165705435,339.78175690956414,338.8919112184085,339.0961154811084,339.02779119834304,338.4284895271994,338.5090196323581,337.92423683032393,338.4683244121261,338.0385031821206,338.05258616944775,337.86720280582085,338.24811962945387,338.1400657258928,337.8878808869049,338.33267606189474,338.5373258218169,338.58712914120406,338.26766474964097,338.561272315681,338.34963179333135,338.83856249414384,339.30078010074794,339.5781592912972,338.6439385730773,339.1422256180085,338.83544687367976,338.7493972708471,339.261388648767,339.56030178209767,338.9514269642532,339.88010227587074,339.6210109242238,340.1399036995135,340.5080857090652,341.00027954392135,341.61528739426285,341.19998206105083,342.1481069866568,342.52034630300477,341.6518905987032,340.7093162811361,340.0283749899827,339.0443083178252,338.56452659517527,337.9367874255404,337.4729957282543,336.9586179978214,336.8647229587659,337.0631080516614,336.5331911011599,335.64520095847547,334.7291390663013,334.4223471642472,334.35374902701005,333.54242943786085,332.6475338093005,332.5940108569339,331.9316212674603,331.6077290661633,330.82072715321556,330.56353292940184,331.43462461279705,331.48957038484514,331.1156407040544,330.3152751075104,330.2235240074806,330.2328376066871,329.9863039194606,330.8344575543888,330.36124783102423,330.4831325542182,330.14295002119616,330.116556359455,329.8938988670707,330.6675647068769,329.6957089751959,329.7629193193279,330.090455644764,330.2634069221094,329.4286613599397,328.55938979191706,329.27645409246907,328.6745580229908,329.28198468731716,329.11577947298065,328.3328437851742,328.1204573167488,328.59716002084315,328.6874790098518,329.2977616735734,329.11856749933213,328.5572034153156,328.8733167666942,329.20912486780435,328.6493462151848,327.88190915295854,327.91701015271246,327.2790491520427,327.624141686596,328.41851658094674,329.2932693064213,328.67342884792015,328.5798925869167,329.50588149530813,330.4802895449102,331.4245971739292,332.0498231649399,331.2420392227359,331.62736140191555,332.4500963203609,332.7555051459931,332.70058845262975,332.71610987605527,332.6996117341332,331.759868551977,331.290022270754,331.0492903110571,330.4329937477596,329.4409856586717,329.4981989203952,330.0702581964433,329.57687269337475,328.8419585386291,328.81863851007074,329.5219023297541,328.8481865385547,329.6131116542965,330.56869168393314,330.0001124283299,330.62116862041876,331.2445069150999,330.70956959715113,330.9990239329636,331.7147925440222,332.63916772650555,332.17363612446934,331.54432859364897,331.9472133065574,331.47465970227495,331.45848976587877,330.99408504134044,330.01276221266016,329.7508054934442,330.44174140831456,330.0062588583678,330.97508950764313,330.9600958400406,330.3505859472789,331.0433013360016,331.06407886371017,330.94591059023514,331.6682023606263,331.5986148226075,332.180756888818,332.29915273422375,332.20421501714736,332.7113864123821,333.1817980897613,333.9241436785087,334.7224309714511,334.7790702842176,334.95172942383215,335.2089661071077,334.63727999664843,333.65531950769946,333.4512441046536,334.40073726465926,334.40426171803847,334.46533203544095,333.70745417336,334.4678141735494,335.11672544060275,335.79144836077467,335.295580052305,335.4653305360116,334.7215788937174,333.75183080881834,333.08789833122864,332.1290856525302,332.896133673843,331.9754223176278,332.1145159904845,331.3549642562866,330.52065218100324,331.4918747022748,331.2367342412472,330.70668163197115,331.203648339957,332.07371525792405,331.6666287202388,332.06486455118284,331.99808035837486,332.4446290885098,332.3808614332229,332.2926093097776,331.5624271854758,331.4703964968212,330.8144478420727,331.7633032365702,332.66690708277747,332.659185458906,332.8532670591958,333.32989568961784,333.60075973626226,334.5067940512672,334.609353531152,333.78783058095723,333.1568257538602,332.382034026552,332.58282736036927,332.41876791464165,333.3087356495671,334.22309345472604,335.1327368975617,334.16710258089006,334.74024990340695,333.9253426515497,334.8812790904194,333.9686167165637,334.9377128863707,335.4235062645748,334.42685938067734,334.41957577038556,335.1014719074592,334.19432240724564,334.50211680401117,333.8225134424865,333.896848751232,334.67108901171014,334.6797893005423,334.03889888431877,334.4572333036922,335.13609925378114,335.9407421667129,335.6385339945555,335.518271710258,335.6449976740405,336.2497486635111,336.21732820011675,335.3549087205902,334.63353235134855,335.1361228944734,335.3029148010537,334.88905427465215,334.43789206957445,334.3432572847232,334.7251113830134,333.7458770745434,334.53752460936084,335.03894972847775,335.61597202625126,334.90626419615,334.3779614469968,334.3604233423248,334.4436533236876,335.43150937044993,334.8250801432878,334.29664716357365,335.0442388369702,334.15241296589375,333.67043543141335,332.8155541042797,332.75615624757484,333.3363209175877,332.4399793003686,331.76395231019706,331.348561049439,332.1835936140269,331.93477686401457,331.0677552749403,330.501639558468,331.157694153022,330.98500529211015,331.9587590531446,332.31491177063435,332.139605186414,332.0455136378296,332.2686742139049,331.4561169859953,331.86805765749887,332.0876416559331,332.17828975617886,331.27170122927055,330.4726866669953,331.0588919739239,330.66232473636046,331.0690079368651,330.61520317569375,329.6850290270522,329.2495587626472,330.2034081113525,330.35795612167567,330.62394114769995,329.6970817502588,330.4817461092025,330.94917604047805,331.9350490937941,331.6318811569363,331.63192492350936,331.08496094029397,330.4292335049249,329.92287209257483,329.46317941043526,329.91498152446,330.2028099093586,329.65528635820374,329.7029941417277,329.7592045683414,329.1250574719161,328.8023162265308,329.3738841866143,329.10171564947814,330.03146051010117,330.54955699155107,330.1886958940886,329.79100798489526,329.40089335804805,328.7293966608122,327.80030967714265,326.86209091497585,327.10118611808866,327.922063481994,327.46580882230774,328.3052611872554,327.5901047163643,326.62291572382674,326.5428119339049,327.37796341907233,327.76906443946064,327.1720009027049,326.3527333284728,325.6571790971793,326.3040725607425,326.7775449147448,327.6629590606317,326.8595332177356,327.50798516348004,328.04706119932234,328.5259071132168,329.07085477747023,329.05576383601874,329.6290137008764,328.94648081762716,328.14156987471506,328.1336841592565,328.2220276114531,328.48959790728986,329.30267471447587,329.4216060382314,329.5762714180164,330.3671560497023,331.11749743437394,331.7205263422802,332.69425091380253,333.52537830080837,333.1785818156786,332.2739078239538,332.07063045864925,331.9960188753903,332.8770163524896,333.4038389842026,332.529069097247,333.11539937602356,332.9926551617682,332.10445682005957,332.06842611404136,331.19641597615555,331.82923907088116,332.4582544397563,331.88027388509363,331.26083409646526,331.9251849767752,331.7476033032872,332.2968076947145,332.6310405503027,332.9221579176374,333.0753039177507,332.61783127626404,333.3533386378549,332.465026604943,332.4057932998985,332.923311308492,333.4450572314672,332.9190620207228,332.5317262643948,332.10540318489075,331.52937577292323,332.47785040270537,331.7387298610993,330.83127962518483,330.2568463617936,329.990198621992,329.06210182374343,329.59435822814703,329.85816918266937,329.56362360110506,328.5872713588178,328.1501338528469,328.85521502932534,328.23792609386146,327.3103515552357,327.28158735344186,326.9260935126804,327.3674131203443,326.6761511811055,325.7689700415358,326.7094819229096,325.7432765546255,326.0231841900386,325.67406270559877,326.07724525080994,326.474680095911,326.891378252767,327.2889686245471,326.82148321252316,326.56267915666103,326.12715263012797,325.82904878398404,326.16006068419665,326.34542771289125,327.24070292757824,327.19716370804235,327.9308970924467,328.3006280953996,329.108842481859,329.59563288697973,330.24344695499167,329.7063981704414,330.6762693715282,331.05218132864684,330.57399712409824,331.031201290898,331.6600754139945,331.7151202582754,331.9166350122541,332.05914478423074,331.8114064685069,332.363714103587,332.8110592421144,332.43942859442905,332.2190310587175,333.1400956339203,332.99340926110744,333.4467038959265,333.6027806410566,333.58049662411213,333.98300024773926,334.3756410703063,335.2625590749085,335.9277053568512,336.6685040160082,336.3323769066483,335.592454073485,335.06449655257165,334.49198462674394,335.18978327093646,335.6997612561099,335.014812507201,335.3970904839225,334.43691152660176,333.6547430749051,334.230435251724,333.84919154597446,334.51843225443736,334.45344427227974,334.16555249365047,333.54108728840947,334.25528191495687,333.39410815713927,333.82697496190667,334.82562823360786,335.5502962805331,335.2727723135613,334.3832530681975,334.61851596599445,334.65119434986264,335.50810692925006,334.6872403533198,334.94929637247697,335.27579030720517,335.9489021152258,335.0631862417795,335.30107475817204,334.78206675872207,334.6976589965634,334.31798428017646,333.8531124307774,333.7533886930905,333.34550699358806,332.8367271516472,332.5437011271715,332.0143437455408,332.139195476193,331.81133047118783,331.2809575730935,330.60469532059506,331.4541863570921,330.74499566387385,331.6647187564522,332.1990865296684,332.01591748185456,331.087370169349,330.10066577326506,329.6387880020775,329.14308128412813,329.73737585172057,329.5703382715583,330.4475116604008,329.58233776688576,330.508446843829,330.57106584869325,330.42266488680616,331.08929278468713,332.01423090836033,332.13214380433783,332.74193675257266,332.8155403044075,331.9113075779751,332.02701994078234,332.3152184439823,332.246396004688,332.81697003822774,332.99885096913204,333.4648642325774,332.5026951758191,332.2867446891032,333.2652046289295,333.1957387570292,333.8887694766745,333.2508811065927,334.1975162392482,333.60557987121865,333.67565205832943,333.089555547107,332.7049710638821,332.09273845423013,331.85444225231186,332.5892975325696,332.3806823990308,333.05380932660773,334.04328276915476,334.7355256625451,334.2220189906657,334.48921625316143,334.50016932887957,333.76101585291326,333.72076897136867,333.9814458186738,334.24919918365777,334.4701048829593,334.9204192920588,334.50367904640734,334.7859273622744,335.0884441975504,335.82523874146864,335.44945741118863,335.4980903030373,335.96870978502557,336.691474233754,337.23163956962526,336.5469597517513,337.4658555961214,338.3974542375654,338.2162876469083,339.20802356954664,339.3340884130448,339.7441743956879,339.5647027315572,338.58181333495304,338.50344757316634,338.86769332177937,339.76166939828545,339.2153212069534,338.36841583112255,338.062064406462,337.7325344039127,338.52719797054306,338.0698071694933,338.8769224132411,339.8160770800896,340.5039322040975,340.57021941710263,341.4853419549763,340.5372928082943,339.603034324944,338.67262359522283,339.469924101606,339.87184459669515,339.50259644770995,338.64260054240003,338.87049874523655,338.31357059208676,338.6474796263501,338.04219324328005,337.39387041982263,338.3839425626211,338.3500496777706,338.4954363950528,339.1680169440806,339.29393515363336,339.4033387643285,339.7625595754944,339.4393977462314,338.82451343303546,338.95987518690526,339.0104561508633,339.4046761295758,339.8390275761485,339.50836725113913,339.5170635371469,339.0925767091103,338.6139494329691,338.56845282716677,339.45799272693694,339.032016006764,339.48320552520454,339.57549603655934,339.52261515241116,339.6126730530523,339.0741416811943,339.7068295283243,339.6111570415087,338.6898427424021,338.5448950729333,339.1524710538797,339.6929050348699,339.79666583798826,339.1806894252077,340.10900005465373,340.5057157538831,340.8389323805459,340.3654630975798,340.2749261101708,339.3071776377037,339.7772644236684,339.58049472328275,339.93280179519206,339.138910102658,339.3993499223143,339.2606914485805,338.3232180485502,337.92493569711223,338.7725731008686,339.17068495973945,339.17787393089384,339.61550681618974,339.05521835247055,339.7161253122613,340.35229241102934,341.1815835176967,341.67197235580534,341.7031041220762,342.43328939704224,342.3373122937046,342.0840789992362,342.59717565821484,341.6807874008082,341.08542268164456,340.90070195682347,341.00513063184917,341.13459879532456,340.14204285433516,339.2337977527641,339.1446653488092,338.98238877533004,338.08085541287437,338.28297700174153,337.94241939438507,338.72068041888997,338.55958230327815,337.81560772657394,337.06139219738543,336.7285369397141,337.44459844520316,338.05816455511376,337.43164023570716,336.44805081095546,336.8830480170436,336.38218473643064,335.45891808951274,334.5260783578269,333.9963972326368,334.1081972899847,334.7761848750524,334.70581567753106,334.5041626705788,335.04132347088307,334.68027415452525,334.6102181468159,335.1782149206847,335.4494890794158,334.58885070635006,334.4320803368464,334.42996461875737,333.7689549536444,332.85878372145817,332.6893748785369,332.8010649168864,333.66222458379343,333.93460456933826,333.65547624928877,333.15335872443393,333.5307152871974,332.8374494719319,332.6010401225649,333.5015280279331,334.489225464873,333.98538082279265,333.1074219220318,332.6874411404133,332.31840205425397,332.28651946457103,331.80951189622283,331.6218492430635,331.5061629647389,331.412339518778,331.59006322035566,330.8334306804463,331.3955409512855,331.8729973700829,331.85626912349835,331.2832937389612,332.05449980916455,331.86883326107636,331.47820258466527,330.9342657648958,331.1122436490841,331.65361793572083,332.28036966128275,333.04482603119686,332.4207271961495,332.5714576272294,332.2106666904874,332.69674017326906,333.5320814247243,333.39294472243637,332.4309707186185,332.14308964041993,333.032657741569,332.18334026494995,332.83773829462007,333.58229387830943,333.86066833976656,334.7966386163607,334.9023116552271,334.6176750487648,335.0872095259838,335.3636678364128,335.58025205973536,336.0087643675506,335.1810687687248,334.72784989420325,333.83829261083156,333.5670799417421,334.32328708516434,333.91662400076166,334.8343276567757,334.0989272822626,333.8120820717886,333.287329535,332.92031618533656,333.0608890480362,333.5946224173531,332.65686108730733,332.79866902157664,332.202640005853,332.5453618080355,333.1030300180428,332.4655124330893,333.4561466923915,333.20813853945583,333.51838725060225,332.7690023886971,333.706078783609,334.38464569160715,333.75001408020034,334.1086927354336,333.16677759680897,332.1757634934038,332.4009461114183,332.44250745279714,332.41903173644096,332.8516489653848,332.8867658469826,332.82954774750397,332.6299752201885,332.38155128853396,331.48347977688536,330.6492136148736,330.5687968847342,330.9893673718907,331.65174284158275,331.0819094777107,331.9565662406385,332.67595519544557,332.9585500420071,333.6556075620465,334.53356574103236,334.9191622035578,334.7658594828099,335.287504279986,336.01280564209446,335.4550809999928,334.8890546634793,334.26062819641083,333.8780653150752,334.268658334855,333.5869340384379,333.5693658203818,333.40620300453156,334.14185571391135,334.9561472963542,334.5009949253872,334.58106203749776,335.1418828298338,335.0600648596883,334.1279774243012,334.97084774728864,335.8010566541925,334.88866965146735,334.66914622252807,335.0279291048646,334.9414788442664,335.03901045862585,334.11891897721216,334.35956740612164,334.08612285507843,334.9764420967549,335.2218555700965,335.1222807019949,335.40532090933993,335.3016345417127,335.53077991725877,335.91042687837034,335.85078914510086,336.5091332695447,337.469234272372,338.231675834395,339.06461438303813,338.5557723697275,339.0594603801146,338.6848736880347,338.2205829010345,337.6752488273196,337.265968604479,336.77500543463975,337.408433244098,337.89407639345154,338.18460078164935,338.00307410303503,338.2649446176365,338.35558117507026,339.1716456389986,338.67256348067895,338.24166947230697,338.19849258847535,337.8309787288308,337.25614555412903,338.0995281608775,338.22681427840143,338.98412085697055,338.14133666222915,338.12168668443337,337.3735422194004,337.2175907199271,336.85925028380007,336.7830733326264,336.0704095172696,336.21248371805996,336.021741757635,335.5252519180067,335.2270825020969,334.6112631172873,334.94758714782074,334.28346746088937,334.8635942027904,334.8146228841506,335.37198723247275,335.19488822389394,335.419121124316,335.14447986660525,335.20447248220444,335.8787096873857,336.5026324442588,336.497788539622,336.9027879522182,336.9541530907154,336.1429391372949,335.8014747039415,335.9423292973079,336.4740115189925,335.84649162273854,336.4261327483691,336.51552424486727,336.22751242341474,337.11656226217747,337.12900177715346,337.32722163619474,336.79520048061386,337.31969891581684,336.8261033934541,336.9016209333204,337.12259028526023,337.2018726048991,337.3337952978909,337.58540181582794,336.9276377647184,337.90374697046354,337.856888203416,337.29731266433373,336.50159348221496,336.46231862483546,336.6636708304286,336.4753045383841,336.93123484402895,336.7385940416716,337.26168135600165,336.5826223590411,337.3849884783849,338.1721402993426,338.15473104128614,338.41471592290327,338.7810298046097,339.62175395991653,339.0532356747426,338.5619963868521,338.56531227659434,339.0491327708587,338.7800316880457,338.025229930412,338.48303638072684,338.14364293403924,337.3684873241,338.1052979109809,337.78001530794427,337.9672875329852,337.86315380688757,337.0326853906736,337.46342892199755,336.70208703307435,336.51355070527643,336.12642719363794,336.8814096734859,336.1589336954057,336.4730788161978,336.8997027031146,336.5310295014642,336.5939696985297,336.83598962053657,337.5888887392357,337.2022884921171,338.0059896581806,338.0200306274928,338.0434947768226,337.22981458297,336.7839962732978,337.0990651138127,337.55704216565937,336.9607641468756,337.7502518426627,338.3500966578722,338.9811319457367,338.6872506807558,338.98238396504894,338.1228232658468,337.81629423750564,337.85066074319184,338.5291968965903,337.73864896642044,338.3067474612035,339.0892281141132,338.65020587155595,338.30552937975153,338.01203722227365,337.8858701097779,338.09465283574536,337.4775014454499,337.5996471699327,337.2676767022349,338.2597772004083,338.21223776135594,337.9278946593404,338.6361672664061,338.4932197155431,338.56304705608636,338.3417668999173,338.65939495759085,338.5079777119681,337.6177951330319,336.7930905544199,335.7938002157025,336.12205989519134,335.66939678182825,336.45167556544766,336.8198155439459,336.06540335761383,335.5634156772867,335.3679795577191,334.49339077761397,335.19082278525457,335.7526790066622,336.4795183162205,336.03567631496117,336.53203133912757,336.5692628826946,336.8211490320973,337.6281790728681,338.12918105721474,338.7520124511793,338.7201837534085,338.9256258108653,339.5237502362579,339.74690572870895,340.62089030910283,340.35480516264215,339.78520627180114,340.66853065323085,340.86728361668065,341.4252778463997,342.40174252772704,342.7939758747816,343.75313611188903,343.1213514506817,343.461880301591,344.36014260165393,345.14167201844975,344.99993107188493,344.0554988058284,343.97492866870016,344.8573600319214,344.6982407006435,343.79823765857145,343.48944332124665,342.7555985208601,342.70017095748335,341.85175939882174,340.960146620404,341.1698511331342,341.7225843463093,341.8468572818674,342.0282282317057,342.1323289470747,341.7422924907878,341.01465465594083,341.93042450910434,341.5170918419026,340.979546002578,341.6771770035848,340.7572767729871,340.4203613852151,339.854473429732,340.78831621073186,340.90062481118366,341.32726047281176,342.1053043389693,342.79995010467246,342.63354286458343,342.81098626740277,343.0587178301066,342.2300507966429,341.6671154187061,341.8310531703755,342.62764037633315,342.7552712392062,342.2125840228982,342.87935930350795,343.2000747760758,342.6393997897394,342.5654788147658,343.0977026941255,342.1795672397129,342.84744373708963,343.5247273957357,344.47433432005346,344.34690191503614,344.76720047648996,343.95747480588034,344.8401600383222,345.53551218658686,346.04898898582906,345.28888668492436,344.39756506029516,344.0779555174522,344.0060078771785,344.5912618227303,344.660782688763,344.1098089036532,344.90619547246024,345.48475007060915,346.46728742914274,347.3606877294369,347.6640864587389,348.26379546057433,347.9577284893021,347.623180875089,347.3043732945807,346.9969022516161,347.0612411079928,346.9468465168029,347.06581189483404,347.47754805814475,347.12764363968745,346.934843135532,347.11838765162975,347.53390697203577,347.7532065114938,348.55959331570193,348.62964656576514,349.06997556379065,349.01532507734373,348.4968508365564,348.3100719284266,347.46648991853,348.26042724307626,348.1774980132468,348.1943797436543,348.2605735422112,348.3898911890574,347.539486895781,347.38428390352055,346.53659016173333,346.47003114549443,346.1223890557885,345.32868458749726,344.9176283152774,345.06166823906824,346.02599334158003,346.1981153138913,346.7576426663436,347.4158553224988,347.4853863758035,346.83717222698033,346.3081594761461,347.1877665538341,346.2144147725776,346.4817641535774,346.80264001665637,347.6346614183858,347.77732949284837,347.93156680464745,347.84264045907184,348.1518824561499,348.90063008805737,349.0472699520178,349.28630820382386,348.7691413508728,349.68073504883796,350.1608068449423,350.5598004818894,350.4528331551701,351.09631219226867,351.0828908784315,350.7240534010343,350.1187943648547,349.14054300962016,349.592667855788,349.8964536949061,350.4402256133035,351.34850884834304,351.18932199897245,351.9155953573063,351.9159610369243,351.6393221425824,352.0296715013683,351.24611121136695,351.5932451123372,351.6832786425948,351.34208024153486,351.4207325405441,351.47946141054854,350.4836859786883,351.410198724363,352.17732923990116,352.1692272997461,352.3986116987653,352.38881973875687,352.90889610257,353.5361175239086,353.5387664316222,353.9207448703237,353.069555205293,352.0975237148814,352.892021402251,352.10818352224305,352.9375055837445,353.56028786534443,353.8885314273648,354.2993921376765,353.4070601440035,353.55714829964563,354.3790985974483,354.028551784344,353.8020496866666,353.87106503825635,353.9980811122805,354.8693110900931,353.9321329812519,354.14612855482846,353.86532209347934,353.767137600109,353.7354146344587,353.3650484094396,352.85787336342037,352.9557702229358,353.5837578019127,353.89171984698623,353.4761901535094,352.93588316626847,352.4371138927527,352.0033507263288,351.8941436870955,351.0133269382641,350.6640774826519,351.0577028710395,350.1739513571374,350.19657469540834,349.41939679021016,350.2762489733286,351.2643923899159,350.84514735639095,351.3947185706347,351.3416829109192,350.6862784526311,350.7196862073615,349.96452201437205,349.32236353401095,349.03977115405723,349.39485342707485,349.7890623579733,349.44968237774447,348.78007536614314,348.76375869475305,348.1493745930493,347.85657194489613,348.50451414007694,348.5585848153569,349.06192529713735,349.0196067560464,348.39891588687897,347.93617351260036,348.5925561133772,348.8445533895865,349.0018321117386,349.2688009785488,350.04310867516324,349.70198457781225,349.2038804641925,348.36216508829966,348.65129252523184,348.5082879513502,348.9591854852624,348.9147945693694,348.3535487158224,347.9763845950365,348.6076136031188,347.84269197890535,347.0863098092377,347.689004461281,348.14936243370175,347.5288564148359,347.17548156995326,347.60849577514455,347.1185659850016,348.0016205771826,347.6380312163383,347.8824339788407,348.4235831112601,347.7395438202657,348.33445454528555,348.7943895990029,349.2625748263672,349.11587943695486,349.2214004267007,348.5761452354491,349.5213029854931,349.57358822925016,349.2850835695863,349.3292862563394,348.5811947695911,349.12129006534815,348.95712222438306,349.0408249204047,348.1113410545513,348.3123436337337,349.269569193013,349.2329981443472,349.9273609393276,348.96667213505134,349.87294313451275,350.3641469483264,350.06734490860254,349.6607554377988,349.9944663043134,350.70789498183876,350.4515591468662,351.06248763296753,350.1310423184186,349.48690114496276,349.6208400428295,348.8723045652732,349.1780538964085,348.9431243529543,349.3486423045397,349.2631317526102,349.3741200300865,349.70867838012055,349.5181110696867,349.2891472070478,350.2448808560148,351.1684313886799,350.3917240682058,350.57180267525837,350.6144842002541,351.56682086223736,352.31690996093675,351.896327230148,352.5706657245755,352.93019960215315,352.3978010965511,353.3110657981597,353.2685586512089,353.12679231213406,353.92678094422445,354.16982883634046,354.58510308759287,355.1855511064641,355.5634407089092,355.1722181267105,355.6116188666783,354.7806748789735,353.95242198742926,354.34366040164605,355.24499496864155,355.3324949769303,356.06767636397853,356.9910117983818,357.0808133990504,357.4301043669693,357.6966864191927,356.80979989282787,356.62145042652264,357.4987880149856,357.94506091158837,357.2065317365341,357.1969416216016,356.9060967187397,357.1577001931146,357.0130161745474,356.0427941316739,355.84372479235753,355.42726212274283,354.8598914174363,354.4587071989663,353.85000148182735,353.6952284136787,353.81972978590056,353.23470193659887,353.27272665919736,353.7254521525465,354.5654767216183,354.3090615211986,355.05109611712396,355.08380793360993,355.2067720927298,354.31774550303817,354.0226973374374,354.45481883874163,355.0761046758853,355.57296494953334,355.20643692696467,355.4498730194755,355.0718122343533,355.92256260151044,355.5198093415238,355.5271503222175,355.1321971062571,355.5312318680808,355.24190805712715,355.10534307779744,354.8207646687515,353.86707504466176,353.5879955375567,354.3213532306254,354.0526270302944,353.68046398321167,354.43406544206664,354.62344879610464,354.43477410497144,353.78294116584584,353.73557052994147,353.24550465960056,352.81185535760596,353.62507738824934,352.8132997364737,351.86713799787685,351.89714554231614,351.4366732724011,350.77410936169326,350.67329424014315,350.975450147409,351.7544095697813,352.3454119488597,352.9161607082933,351.942692368757,351.74288662243634,351.5980755821802,350.75984196923673,349.7878728173673,349.95123710436746,350.4982227808796,350.25440518930554,349.9803171348758,350.4534834572114,349.8776998394169,350.31311224401,350.52784957457334,349.7799155074172,350.5292159463279,349.7207753062248,350.37814385071397,350.28370902035385,350.77955636708066,351.1759046926163,350.57598847988993,351.43413268448785,351.19610592350364,351.85490612499416,352.47715067490935,352.34648614982143,352.6380604528822,351.719515458215,351.7818793351762,351.04836669610813,350.307437219657,349.42825680505484,350.306868980173,349.8951848661527,349.25341185508296,349.8479155213572,349.29196491651237,348.9903787574731,348.4820352415554,348.81863789167255,349.58140298724174,350.35668770829216,349.39291706401855,350.2778364014812,351.2029365473427,351.10490014590323,350.9633100917563,351.6218588943593,352.2783864447847,351.7059817686677,351.1129945348948,351.4846291048452,350.93001398816705,350.0400978852995,349.45847432734445,348.89612218365073,348.19212441844866,348.25470206467435,348.10786380432546,347.9154562363401,347.7226496390067,348.54536747559905,347.7923295167275,347.224122680258,346.4103790894151,347.2703470089473,346.5113087138161,346.5365134673193,345.8294668374583,346.70735019398853,347.6215346166864,347.08100230339915,347.6540748323314,347.6724631646648,347.32404469233006,347.14588448638096,347.46598425367847,348.3067875779234,348.0078959958628,348.930019186344,349.57115598442033,349.44287463556975,349.90691822208464,350.6193220480345,350.1812479319051,349.89035223051906,349.25736166955903,348.5086974138394,347.54396948358044,348.0140688517131,347.1756735839881,347.46890640538186,347.02393439691514,346.79430903028697,347.524367951788,348.4896861561574,348.1926221824251,347.3360547060147,347.89244152931497,347.6109463865869,346.71983121940866,346.51204970572144,347.04693488869816,347.40629411209375,347.07498306408525,347.67458305554464,347.18175097880885,346.4753043213859,346.92161017935723,346.4631223832257,346.3362749456428,347.0358147621155,347.577502284199,347.00698614120483,346.88295619981363,346.78750269813463,347.59156274423003,348.22228818247095,349.05153845623136,348.93396202195436,348.34281558403745,348.64580425666645,348.45996836479753,347.9432261134498,347.1699375929311,347.57198977191,348.26790282921866,348.40110235707834,349.24567880062386,348.3466326883063,348.6415352439508,349.4490479840897,349.25144893303514,350.0273787397891,349.0278950324282,348.21348144765943,347.92188682453707,347.94475776841864,348.4668637844734,349.39235699921846,350.0933675779961,349.7176393675618,349.29030374996364,349.20080877281725,349.40397852193564,348.8187585468404,348.83930290304124,347.99936082260683,348.86341421538964,348.890108987689,349.60298104491085,349.9228429561481,349.85841492237523,349.4364075176418,348.44737301114947,348.34774799784645,349.27517443010584,350.02680729469284,350.37725909100845,349.9090670887381,349.02103722374886,349.8836986720562,350.51305715413764,349.94382874527946,350.42243928369135,350.9780307803303,350.56098236562684,350.3660902879201,350.21129502914846,350.134270186536,349.6877666870132,350.60269581200555,350.83418078999966,350.6147597054951,350.5764141282998,350.90367533359677,350.6435833564028,350.0779186151922,350.56206087674946,351.14661911455914,351.88166471850127,351.37595314346254,352.01324096508324,351.9691044385545,352.3311080215499,351.63308973703533,351.6383620016277,352.18702489417046,352.9358961544931,352.2139188325964,351.5112913507037,351.51482373150066,351.03684434015304,350.9423692692071,350.87649865448475,351.39735427033156,351.17356184497476,351.4652077299543,351.3019439801574,352.14586717123166,351.7834370722994,351.70269118761644,352.3225142052397,352.04090090468526,351.59066071221605,350.75802580220625,351.50460056308657,351.3835571384989,352.3047055816278,352.618471453432,352.0945194535889,351.2384038954042,352.0409089499153,351.04934909939766,350.92219691118225,350.7795562762767,350.24902246752754,349.2865030588582,349.0356053407304,349.644326495938,349.78951385291293,348.8607080192305,348.12875030748546,347.69284802582115,347.5961840986274,346.77642868598923,347.53952368255705,347.2405424444005,346.92527340725064,346.7528346646577,345.79073397256434,345.5935208471492,345.26915949443355,346.01897192094475,346.9376592999324,347.1236698916182,347.7403211090714,346.8816541819833,347.0895170895383,347.77663428289816,348.63727980386466,348.33880976587534,347.9936862415634,348.42658938700333,349.2352547063492,349.4605508786626,350.0849748882465,350.7020445507951,350.0748105975799,350.8911219527945,351.82925852248445,351.39376693498343,351.2571933255531,351.1722827218473,350.6299601700157,350.12148952297866,349.53950489591807,349.15725537389517,349.5084981909022,349.92005911748856,349.92130575096235,350.82964526489377,350.198154957965,350.9295661696233,351.21973577234894,350.748142497614,349.8020565607585,349.4186442894861,349.4421739485115,348.7042267299257,349.2640034407377,349.9885956849903,349.6270472104661,349.83934716694057,349.11410771869123,349.7024248279631,349.7380798496306,350.6142694186419,351.463460534811,351.3992585996166,350.7866347967647,350.46063985535875,349.52957748202607,348.62658144067973,349.23803794477135,349.84307395480573,349.8960544751026,349.21758994134143,348.44378442922607,348.15121636819094,347.75567699735984,348.3604322504252,348.8488484984264,348.64488043263555,348.59165744530037,348.3039831039496,349.0410970337689,349.24670589575544,348.37589391926304,347.47037593415007,347.12112647574395,347.7502895905636,347.18020760826766,346.6732886279933,345.92285622656345,346.32581203011796,347.30236869538203,347.60737743321806,348.3730776626617,348.4621917260811,349.03026171727106,348.38077858882025,349.09590574959293,348.42195884138346,348.2744326372631,347.7318707294762,347.05049408087507,346.74352549156174,346.5531832058914,345.9806297351606,345.2344478610903,344.61862316774204,343.97093243571,344.7209900794551,344.8015639251098,345.3340485179797,344.902790451888,344.051667988766,344.44650498591363,344.6166380508803,344.1122676562518,343.7645798716694,343.1919670016505,342.21831451915205,341.5793110029772,341.74939463147894,340.8357008411549,340.83918491657823,340.1607100418769,340.4070560443215,339.9159573148936,339.3343683802523,340.3135229242034,340.58106583263725,341.34979577641934,342.1567338597961,341.7974436311051,341.76320447027683,341.5585880447179,341.2801940557547,341.07281576888636,340.20493437955156,340.5345259346068,341.29297892330214,341.7530148951337,341.01594634214416,340.3893112875521,341.13533657277003,340.64099103724584,340.3676664652303,340.1506057847291,340.0953217120841,340.30553286895156,339.8739104322158,340.25870208162814,340.3163373065181,339.74939527222887,339.5962278977968,339.81760830106214,340.06669482029974,340.04204558581114,339.658787118271,339.2244823211804,338.6781940339133,338.48047317704186,337.9900330924429,337.70796010876074,337.4755554483272,338.1168886004016,338.9521166938357,338.4072767798789,338.5041353031993,338.3864310742356,337.5768715608865,338.1584923802875,339.0899207177572,339.6153218424879,340.29591633658856,339.80808741925284,339.6320526213385,339.7566329119727,340.0677141188644,341.0487915901467,341.439123745542,340.6821429547854,340.631458546035,340.7357574827038,341.53959478251636,342.49628587812185,342.0953997517936,342.98551017185673,342.68886943068355,341.8627494238317,341.6673981361091,342.5945839192718,343.390644476749,343.6653412510641,344.0720561933704,343.48053262522444,342.58141751913354,342.12457269988954,342.8826811485924,343.85321654193103,344.8166757626459,344.58722223201767,344.7460993505083,345.30476923147216,345.8231392703019,345.63785903016105,346.0085710529238,346.1200681854971,346.0710575049743,346.024018955417,346.54713822482154,346.6929421424866,346.4719387916848,346.4376670788042,345.91632088040933,345.844753283076,346.6969656343572,346.0550571340136,346.21715769870207,346.2310157730244,345.5084763118066,345.3437243667431,344.34456716896966,344.463046701625,344.4395292638801,345.1790731330402,345.38572923699394,346.25428463192657,345.3726828522049,345.7670136052184,345.4433094179258,345.18522330280393,345.97804607311264,345.67889321409166,344.8301825108938,344.54186360770836,343.5768362535164,343.2260612389073,342.9255854394287,343.098215543665,342.6482567838393,342.3640404394828,343.09098716825247,342.265076413285,342.70533729018643,342.4518943838775,343.33668247330934,343.379518001806,342.44854584522545,343.0919571532868,343.3037905562669,343.9685396058485,343.31768016237766,343.1266551450826,342.214231479913,342.52447379147634,343.4106439156458,343.31025605276227,343.97595473285764,343.09209961257875,343.3061021240428,342.5843924963847,343.5125404903665,343.7452982584946,342.8371733482927,342.58246821165085,341.7065505683422,342.5631949552335,343.1145439199172,343.36647310946137,342.9508361136541,343.4445806108415,342.4944067094475,341.88268865738064,341.8954763528891,341.68412363901734,342.08151282183826,341.56064478261396,342.04072157433257,341.2907834695652,340.468674948439,339.6320019266568,339.0056700655259,338.6879358137958,337.90645587816834,337.5724406093359,337.360747596249,337.71559732500464,338.0141890537925,338.2274199249223,337.91065124748275,338.07046069111675,337.68641068506986,338.6776438066736,339.60286358138546,339.1869702730328,339.6090195556171,340.0557119990699,339.64987819688395,339.3095897352323,340.0192604018375,340.7617974001914,340.8905405928381,339.9711370104924,339.21778249461204,339.37592865200713,338.5023536500521,338.5228183269501,339.26432025339454,340.2206454141997,340.5639490969479,341.1188391428441,341.45549273956567,341.34357935842127,340.74979142006487,340.35683091683313,341.2902008318342,340.51303166523576,339.98473075032234,340.8370041027665,340.9617343302816,341.7748849336058,342.28199582453817,341.34932570159435,341.16147713316604,340.17225271556526,339.7275088871829,339.76479489775375,340.599942733068,340.813099720981,340.73819685168564,340.73728944035247,341.6057627457194,341.01472150627524,340.9490534425713,341.80626543192193,342.6066732564941,341.6790662254207,342.44287165487185,342.7988961711526,342.401215323247,341.66757334349677,340.839158332441,341.68306211708114,341.9719623993151,341.15719978371635,340.24720613332465,340.9394846414216,340.3523095725104,339.7308865808882,340.40130407502875,340.55319928517565,340.8536833920516,341.7651741784066,341.3086331412196,341.57803658628836,341.59756691288203,340.71484789950773,341.05155431386083,341.6057527861558,341.65108589688316,341.6481756865978,340.8061584830284,341.67925818264484,341.93689185008407,342.4945732955821,341.9057644433342,341.7592957681045,341.68279645964503,341.9768793769181,341.9925366672687,342.5882745105773,342.6113262376748,343.60179757280275,342.9576051845215,341.97141562215984,342.4606707338244,342.00131567334756,341.4268190241419,341.0599757437594,341.7433724408038,341.8149084392935,341.4198219762184,340.7638457105495,340.17125399783254,339.2974924580194,339.0573725979775,339.84620024077594,338.8507810984738,338.6220503235236,339.4603798594326,339.10427917400375,338.43980884132907,338.83338345913216,338.6533944774419,338.4082216853276,338.9660379337147,339.8123512715101,340.0308543550782,340.2099884683266,339.5688024763949,339.37557466421276,339.4120662463829,338.8957939557731,338.58867100672796,339.4675342030823,338.7193941446021,338.9958051997237,339.53577766381204,338.74505852675065,338.25057190516964,337.4057239838876,336.73835464706644,336.8574931025505,336.5196662149392,336.13006916316226,335.3060850566253,335.28936888091266,335.4446737575345,334.9895052574575,334.72371978731826,334.6873154784553,335.60688778571784,335.52487324457616,334.91966012865305,334.40679095545784,333.9177176114172,334.5715614533983,335.3948173020035,334.6298350249417,334.2303120577708,333.66910077724606,333.85536460392177,334.6476136231795,334.71022705361247,334.59411443024874,333.85807546461,334.24309228220955,333.3664474459365,332.5693804533221,333.3396307094954,332.804908009246,332.3175748954527,332.3938108999282,332.61454245401546,331.79631712660193,331.4429318369366,331.21034383028746,331.8482189774513,331.37439136067405,332.19414929440245,332.97648001275957,332.1653393949382,332.02381548285484,331.6506534749642,332.43529474409297,331.5563235897571,331.5746677177958,330.9445428219624,331.36003756709397,331.4959458252415,331.13372939638793,330.1889660442248,330.772070644889,330.87639846419916,330.26946127414703,330.60145938117057,330.1783850947395,330.59144920343533,331.22079693200067,330.3884968040511,329.9636824056506,329.88986478792503,330.18529872689396,330.35991022735834,330.4954603682272,329.64134283037856,329.7504881452769,329.8869505026378,329.65566492592916,329.80510474089533,329.6961909979582,329.09126291796565,329.97318507079035,330.7075754040852,329.79609853448346,329.9011872233823,330.7192774801515,330.5982918734662,330.18531208857894,329.26941812969744,329.9850947698578,329.99077515490353,330.83442336693406,330.5377029972151,331.23694569803774,331.6341336192563,332.24850610550493,333.1482434957288,333.72841901518404,333.9529299889691,334.5457630138844,335.35639319289476,336.33840058743954,335.51943051675335,335.1714378069155,334.74962317897007,335.1307900394313,334.85701640415937,335.32010792242363,335.81035243859515,335.413342256099,334.8487386889756,335.3792220731266,334.7652729637921,335.1607180889696,334.422088497784,335.32136001065373,336.1965248757042,336.34820856619626,336.96444958169013,337.7950331568718,337.80401643179357,337.6261132787913,338.04600585764274,337.92994985636324,338.3478739936836,338.86835679784417,337.98794607724994,337.2797154439613,337.48870261991397,337.3851223727688,337.15558636933565,336.18657790962607,337.0389632289298,337.65602400293574,338.6449210890569,338.1996775586158,338.77817234164104,339.2547032837756,340.1719031785615,339.88541506929323,340.79051033081487,340.2124100686051,340.24314071564004,339.5830562761985,338.7817466962151,339.12529773497954,339.79390443395823,339.6917433855124,339.80511984881014,339.9438572078943,340.7593254786916,341.2794104446657,340.77655559498817,340.8695907853544,340.7420287360437,339.9267358193174,340.71156656742096,341.0702971406281,341.7611582442187,341.88672232907265,341.2865698901005,340.63587640505284,340.90320157492533,341.22167225694284,341.3907916950993,341.4319740291685,340.6986176138744,341.418944593519,341.21576862828806,340.40669632097706,340.81447292119265,341.73088729195297,341.48616615636274,341.78095792932436,342.118498576805,342.57762510702014,343.5565448119305,342.8500403352082,343.3675911165774,343.51954074017704,344.2825439590961,344.5774896335788,345.22110285563394,344.35515993321314,344.59681445965543,343.993635692168,343.5079295053147,343.5046240231022,344.41563462419435,343.7462912197225,343.116712407209,342.69780158717185,342.1246578688733,342.8746903333813,342.94420063868165,343.1497531798668,344.0034657707438,343.4502415121533,343.8919797674753,343.90776240546256,343.26793152745813,344.04424839420244,344.40678489627317,344.139904350508,343.21075106738135,343.14554405165836,343.64646803122014,344.2960323714651,343.5441745459102,344.4204023280181,345.1649746061303,345.5183865185827,344.9193328837864,345.7332679363899,346.3452397529036,346.5469685597345,347.0574784986675,347.4610194466077,347.8130366965197,348.5226113833487,348.07851232681423,347.8107214597985,347.95935266278684,347.4994096485898,346.89387901779264,347.27761082723737,347.4772204523906,347.89563022134826,348.00494480971247,348.24780803499743,348.40698796277866,349.04622781369835,348.41840616008267,347.5674286391586,348.0588086755015,348.7538125808351,349.10843955073506,349.1313376300968,349.99879671726376,349.35777195263654,348.77090062433854,349.3947556805797,349.2747739283368,348.59462694777176,348.9759303419851,349.5602330258116,349.27088410174474,348.7177487122826,348.1335282502696,347.7862650868483,348.5643771979958,349.00488423369825,349.0199887813069,349.68462289636955,348.76976873073727,348.91515665734187,348.26886964403093,347.9844833253883,348.8663646359928,348.24526143446565,347.76296276412904,348.39785133162513,348.6583334039897,349.0491652577184,349.63905301783234,349.5674125440419,348.752661856357,349.66306633036584,349.98056250438094,349.7099591232836,350.4573172512464,351.1324751661159,352.1101303845644,351.7844452620484,351.03476129379123,350.565108592622,349.98694118484855,349.83566131442785,350.7441629371606,349.9605640117079,349.20327265467495,348.5671326001175,348.29999893531203,348.40428511891514,348.00571778183803,347.53088407451287,348.26920435903594,348.4321518507786,347.67559418128803,348.24869023356587,347.7747657932341,347.8230064054951,347.4467293107882,347.2608110825531,347.3261823821813,346.53829738963395,346.48897238075733,346.0205382495187,346.923983823508,347.124325374607,347.33960396936163,347.84541007410735,348.81496798433363,349.60593317542225,349.84359676996246,349.4646211192012,350.3063582680188,350.7688559484668,350.8167591341771,351.73586978949606,352.08154385210946,351.4522430142388,351.65336084831506,351.8302305121906,352.53965108282864,352.81282493658364,352.09216017462313,352.03710256982595,351.2514743176289,350.53378312150016,351.05503718415275,350.3687326917425,351.27589090773836,351.81743890652433,351.84623452369124,351.7540818452835,351.89169923588634,352.0494299256243,351.89717299025506,352.15618001203984,352.88264564424753,353.6932492107153,354.0455887001008,354.4186275661923,354.97138771694154,355.7148374412209,356.62822415400296,357.2873240127228,356.3077569180168,355.93384235771373,356.7004205202684,356.2869179500267,357.09463854832575,356.76300647109747,356.25108688976616,356.6270215786062,356.0011362307705,355.2213479457423,355.0001990883611,355.059071325697,355.96551603404805,356.02381924306974,355.90157985687256,356.87349936179817,357.7495346176438,358.7216265373863,357.8256955174729,357.11499247839674,356.9041140121408,357.85577982943505,357.9564867494628,357.8983421656303,358.41072628088295,358.73570694588125,359.0754235149361,358.8129020561464,359.0027511701919,359.3927568416111,358.94135768013075,359.2761238105595,358.5567204528488,357.6136485543102,357.60527862934396,358.1318034362048,358.26662919670343,359.18059296673164,358.8348001949489,359.1425037425943,359.58066566241905,358.99255505530164,359.4031350254081,359.7625663639046,359.8282157499343,358.8776286235079,358.9442248288542,359.33838059706613,360.23386211367324,359.7676152405329,360.34356267377734,359.3818409712985,358.72718548215926,359.01765249390155,358.1074130819179,357.75506036216393,357.60740629117936,358.0323281069286,357.6500903372653,358.0824893959798,358.46897795284167,358.7597540435381,359.5761871272698,360.12946428963915,360.0308115314692,359.8606157316826,360.53122558351606,361.2022003242746,360.8420934858732,361.6631624153815,361.89380752760917,361.98398941289634,361.3244118215516,362.3023115117103,362.7671974566765,361.7707666391507,362.0731841218658,361.87229691958055,361.49006387451664,360.5767216142267,360.5021795849316,360.0067887175828,360.58312395587564,361.57401896547526,361.7370145060122,362.55021865852177,363.1654767021537,362.5159171819687,363.4177452852018,363.07363519165665,362.45525061385706,361.5607270547189,361.90397419501096,361.7866262970492,362.0851644324139,362.8732325397432,363.3122699945234,364.034349986352,364.5859627905302,363.65787983173504,364.32540783751756,364.5946637750603,364.9018208277412,364.1085055992007,364.36575695918873,363.7020443761721,364.65451308572665,364.4027042808011,364.049928015098,364.11047532223165,363.78761193621904,363.72090854961425,363.5802034768276,363.18557029636577,362.5056464606896,361.5214483020827,362.4041024078615,362.56805920181796,362.88779842387885,362.8539947825484,362.69998796470463,362.7963218912482,362.40832736948505,362.27978370757774,362.65595200052485,362.93488044058904,363.6180530139245,363.76559401024133,363.5120360790752,363.0974627370015,364.06291986396536,363.3865905525163,364.1646110424772,364.2262477381155,363.67510531889275,363.95327777508646,364.10592676512897,364.5404133349657,363.6892417962663,364.12452032463625,363.6900454633869,363.0115373390727,362.0479502854869,361.8332570698112,361.51709289383143,361.58108184533194,360.97718737320974,361.36549267498776,361.928898956161,360.96788604557514,359.98928611632437,359.5661353105679,359.14018509630114,358.35482094762847,359.15119412215427,359.72098876023665,360.1744762826711,360.39688729820773,361.2935768174939,361.5673609673977,361.2011146778241,360.86303349072114,361.41149912262335,362.16743126371875,363.10143709694967,362.3413052568212,362.7624040013179,361.94803279219195,362.02597721340135,361.1555195390247,361.7001263871789,362.3337538475171,361.3597869775258,361.154977879487,360.34413622505963,359.9977685022168,359.2259333021939,359.5209012283012,360.0707472083159,359.83464506082237,359.2974781584926,358.8083636527881,358.6781176235527,358.36759392684326,358.81832587812096,358.69405231112614,358.54661467066035,358.3385616503656,358.73909640451893,358.7944146716036,358.48612452019006,358.16520284395665,358.5759609057568,359.3100257939659,358.5919084055349,358.1214741310105,357.7565092151053,357.80181618919596,356.9154922296293,356.7543804468587,356.75441209832206,357.7250876687467,358.0824065725319,357.7504545962438,357.69039810216054,358.50255656661466,357.56867828965187,357.58222166029736,356.66026986576617,357.18809919571504,356.966607731767,357.8901985953562,356.99290423700586,356.83680047048256,357.76195958210155,357.737416414544,357.13484630035236,356.599469314795,357.43728625634685,358.37660567834973,358.47619847068563,357.5400984357111,357.37571786297485,358.18916953122243,357.3377117351629,357.7294345498085,357.29892988456413,357.3150460361503,357.40808055875823,357.4577922029421,357.86727570043877,357.8241562745534,357.17704554554075,357.2594899353571,357.7133129714057,358.30570194870234,357.6330417599529,357.4857122725807,356.5368013889529,357.1321408385411,357.788759465795,357.0511912861839,357.2723535168916,356.6077907397412,356.57435498246923,355.9473952194676,356.6050442312844,357.58622321859,357.2242711056024,358.20045041665435,357.3402577727102,357.7594531364739,357.95486019412056,357.9943178812973,357.54254629276693,357.1206254530698,356.5346860741265,356.19381981389597,355.2607946242206,354.44198351958767,354.64564015110955,354.09038260253146,354.8511722595431,355.14164307620376,355.20582604035735,355.6705469097942,354.95087906112894,354.9141721278429,355.1289611244574,355.3977363985032,354.5556045528501,355.50922158686444,356.45790215488523,356.989426700864,357.2553063672967,356.59872796665877,355.95061230799183,355.96012609871104,356.29753240104765,356.0595012847334,355.80302077624947,356.5386205180548,357.4920022850856,358.12276485795155,358.1925112362951,358.14038661587983,358.1599066220224,357.6275941799395,357.1005989983678,356.4635728080757,355.565805291757,356.193724937737,356.9306119605899,356.98953955154866,357.23173654451966,357.8664230569266,357.51480376021937,358.495160846971,359.09437541337684,359.6216958332807,360.2018614150584,361.0712534803897,361.74931177310646,361.0984482956119,361.31009111739695,361.5177408508025,361.12033498240635,361.4380378886126,361.3602981627919,361.76779724424705,361.7429020581767,361.6332109984942,360.9706749157049,360.27732648467645,360.5432533011772,360.4311968879774,360.12691901251674,359.5186837958172,358.5568202054128,358.4869393692352,358.0135938934982,357.7243871027604,357.39064869098365,356.44711663993075,355.4888265989721,356.1535178842023,356.86750200297683,357.850128906779,358.097180291079,358.57838671887293,358.4002875010483,358.1519680470228,357.5428743576631,357.77142173144966,356.9052113839425,356.1151667525992,356.58123259525746,356.79946610704064,357.4271104861982,356.4694324089214,357.2305107563734,356.70253284694627,356.786425457336,355.9577817497775,355.4601151137613,354.842464028392,355.07074885535985,355.4674019063823,355.7849645810202,354.9970318991691,354.7775123580359,353.8988756160252,352.9989261548035,353.0443343021907,352.77101649250835,353.28630438493565,353.43804334662855,352.49179973686114,353.4245717120357,352.4300347203389,352.59864432690665,353.07104428997263,353.7316286396235,354.4509865087457,355.31460920069367,355.8859423720278,355.70715380087495,356.1314782355912,356.6118114562705,356.6630710926838,357.29065022757277,357.91891739703715,358.83146058255807,359.4577991934493,358.96454111812636,358.51437503797933,358.03498629294336,358.6974288430065,358.4482866609469,357.4908451582305,357.5359166348353,356.62716909637675,356.750150797423,357.3720105965622,357.10508403694257,357.3706795522012,357.0567881120369,357.8759649582207,357.6302385525778,356.73811737587675,357.46953724650666,357.4614048632793,358.1525037526153,357.8427004539408,358.55026181135327,359.07901899237186,358.3375791781582,357.9018312525004,357.10131818568334,356.5312340464443,356.64965384593233,356.82870273524895,357.4766598022543,357.6585934064351,358.30652579152957,357.8424022109248,357.5464244084433,357.82415142375976,357.3251086194068,356.5478664813563,356.4992311252281,357.0009148810059,356.12789165694267,356.7856670576148,356.6286237668246,355.95805514091626,355.6658863793127,356.2536022858694,355.98897483339533,355.10695079900324,354.8881419626996,355.51498686894774,355.9808066203259,355.89904629904777,356.69258873257786,356.4980376083404,356.51454073609784,356.05056977272034,356.8350253952667,356.0568177886307,355.5604795804247,355.0274853045121,355.6731104333885,355.58587066084146,355.5812469315715,355.53649999480695,355.3126113433391,356.2315021776594,356.1639542123303,356.86107410723343,357.0311448634602,357.7535587679595,357.7069962648675,357.9795704721473,357.89042062172666,357.18947029300034,356.54828025447205,357.2175351283513,356.7145769125782,356.9179720757529,357.72579049738124,357.84882755065337,356.912143452093,356.10995247401297,356.6643922403455,355.9061147244647,355.4957214742899,355.4866375490092,355.0749790123664,355.73778418591246,354.91430996451527,354.5403110701591,354.0155565547757,354.70654415665194,354.6227885214612,355.3345373980701,355.73869385384023,355.5003711958416,355.6488111242652,354.96227274509147,355.0781835010275,355.75122737977654,355.13777331029996,354.8231614739634,354.65906413272023,355.46311443904415,355.0641917763278,355.9529222738929,355.9766250215471,356.85139513155445,356.0286415172741,356.0779535952024,357.0555579951033,356.17130835028365,355.6849928814918,355.76953576831147,355.3361288472079,354.89723267266527,354.17911814013496,353.8398561477661,353.91167097119614,354.46454154513776,353.9271915038116,354.01684495666996,354.67440673941746,355.1816954626702,355.92133969208226,356.6667296900414,355.93960637878627,355.7815352836624,355.49683266179636,354.829679436516,354.06676827929914,355.0155998105183,354.5780699243769,354.0539056370035,353.7263686452061,354.50558208161965,354.68926602229476,354.4226737758145,355.0014535533264,355.71854859543964,356.5279164398089,357.50211582286283,357.5268008788116,357.2419186839834,357.39842691551894,356.89895266201347,357.1395251895301,357.83008521422744,357.72351867798716,357.991447228007,357.28885029256344,357.77576243970543,358.68764942744747,358.5319365928881,358.0991542949341,358.4964989917353,358.1965754185803,357.5905978437513,356.7302456111647,356.57565151527524,355.7440381767228,354.92873920407146,355.2012016386725,354.2433890956454,354.4732103673741,354.62861479306594,353.8479553507641,354.6817620466463,355.4565848284401,356.2979918215424,356.13656023330986,355.4723578491248,355.9452660852112,355.06571439653635,355.61112981988117,355.8115755273029,356.31345461215824,355.62213301705196,354.79236148670316,355.4129042243585,354.4518503281288,354.92956073908135,353.9579834174365,353.23837325908244,353.6941311471164,353.0727376351133,353.9966237815097,354.18670591758564,354.23917540721595,353.345268801786,354.0961420806125,353.6186068817042,352.78514837287366,352.4367618234828,352.1743498099968,351.96275820815936,352.81644764123484,351.849318084307,351.16392344096676,351.6771131004207,351.5328990686685,351.41773048229516,351.37308253347874,350.596966070123,349.6757735204883,349.9128329753876,350.06722954520956,349.8429572037421,349.6781029342674,350.3663313044235,349.7462152056396,350.5519750351086,351.28769190376624,350.46144916303456,351.25000382820144,351.2360247448087,350.7206504433416,349.8721685288474,349.2332520694472,348.3002115287818,348.77787143271416,347.8668984542601,348.34050226025283,347.8276043003425,348.41576770786196,348.52615395979956,348.8727976176888,348.72541818767786,348.34617359237745,348.37189250206575,348.75162712065503,349.1439571902156,348.3636898160912,349.08463759860024,348.267737491522,348.5574598205276,348.8060487974435,349.165386303328,349.7530946363695,348.8065147162415,348.78114502923563,347.8473399342038,348.58084547519684,348.4084534244612,348.36163217714056,349.1138231707737,348.97850045980886,349.64048101194203,349.95835969783366,350.34737504739314,349.7662704992108,349.46853979770094,348.4709011451341,349.0801632083021,349.253198068589,348.683883367572,347.9472248745151,347.6682994137518,348.5382632096298,349.0139238620177,349.1492203120142,349.6969266696833,349.4499051021412,349.7250273190439,350.3241323870607,349.48164639249444,348.4973143171519,348.1582622239366,347.52365533076227,347.61658522393554,347.0835382267833,348.01930765481666,348.64583597285673,349.3829563111067,349.4174031368457,349.94219752168283,349.09882323490456,348.1239696764387,347.74034672556445,347.5771618965082,347.6021100813523,346.65662572719157,345.9782142401673,345.68656844832003,345.17087078792974,344.2068043570034,343.2790447641164,343.4898227644153,343.3413133476861,344.2785977059975,343.37193826260045,343.185984516982,343.5225276793353,342.88602386787534,341.9858377580531,341.8454256900586,341.9923605360091,341.07339611370116,340.2725389711559,341.1701998086646,340.4031298579648,339.84889364941046,339.8155274731107,338.9951707292348,339.67047067545354,338.9568248069845,338.9704280453734,338.6227058121003,338.59623939031735,338.3140282309614,338.41066726250574,338.43602832686156,337.86343883909285,338.1458292589523,338.1607835860923,337.47392177861184,337.1745953322388,337.34710988542065,337.40868742298335,337.05259531829506,337.0662632472813,337.47410870017484,337.2356879771687,336.5890163630247,336.91949046636,336.4612767677754,337.41820478020236,337.92526343790814,338.45517345611006,339.22960517928004,339.627813834697,340.53174436371773,340.8283097310923,341.3910845099017,341.68586969934404,342.5267278049141,341.64659995539114,342.4801105624065,343.2038452401757,342.3239940488711,341.8989271991886,341.9242545911111,341.20128327189013,341.5083431485109,341.58983518043533,341.78825373668224,341.52713810885325,342.41500616120175,342.0681050615385,342.4314612974413,342.12414284888655,341.7765916646458,341.2048637950793,340.39042075071484,340.7929934570566,340.089826351963,340.0306662484072,340.0468171085231,340.31373483641073,340.17901620827615,339.7733688908629,339.79575277725235,339.84093246934935,340.2806401094422,339.6140771182254,339.6177605879493,340.17431400483474,340.5809490275569,341.18036447884515,341.2752134143375,341.22103883046657,340.82781587168574,339.8986433753744,339.6982558001764,339.14659212064,339.9777034665458,339.4662909726612,339.1959125441499,339.3983110114932,340.23860442359,340.35149213066325,339.98233824502677,339.24946561129764,340.1037656152621,340.6384281315841,340.65294787148014,341.35250208247453,340.8223025123589,341.25307782553136,341.3238565889187,341.5920307119377,340.8795471871272,341.00652664666995,340.1461678906344,341.1412912607193,341.05317064281553,341.5970796328038,341.31823972892016,340.954966166988,340.2612709137611,339.693688376341,340.1460674875416,340.5476250597276,339.8401337065734,339.3514803694561,339.6027387054637,339.4820780167356,340.06775745470077,339.689057325013,338.85910003073514,339.7680006530136,339.41540902946144,339.08630135608837,339.70750658446923,339.36807232769206,338.832206540741,338.95586865069345,339.1609639339149,339.75896874116734,340.2681697704829,340.63637378811836,340.9754365729168,341.0235870629549,341.9502346282825,340.98318163631484,340.1790582751855,340.5642203488387,339.8888049060479,339.9362900322303,340.36336653633043,339.75416531041265,339.5163380354643,338.7352968347259,338.20217417320237,338.7086526188068,339.08492203755304,339.68182054534554,340.58558311499655,341.4934564046562,341.1278419322334,341.478822698351,341.53342075133696,342.0321928160265,341.249261953868,342.1934672538191,343.0803851876408,343.25768938474357,343.8005814277567,343.308262584731,343.6668490660377,343.74910107953474,343.5096406028606,342.81473041232675,342.8570193829946,342.94976323703304,342.17807211726904,341.2347277291119,341.2545719430782,342.04545951401815,342.08136517507955,341.34222053410485,342.02352449065074,341.79781978111714,341.5468281037174,341.32001123484224,340.74626027513295,341.6028135935776,341.9026358923875,341.6679131593555,340.7578115002252,341.6922181476839,342.66648490633816,341.9265008145012,342.07221327442676,342.0315473712981,341.41303256340325,340.82617041515186,340.9240767387673,339.94505909318104,340.70229186397046,339.92616687575355,338.94332744693384,339.5853131529875,339.576542340219,339.0591410151683,338.21358487568796,337.5243784254417,336.83242229465395,336.6323000197299,336.25555458152667,337.12959736585617,337.2695806673728,338.2570171421394,338.4401873401366,338.8474133252166,338.40421856334433,337.6831676955335,337.2194679682143,336.36440268391743,335.80910057621077,335.1559115173295,335.0077523281798,334.9120141058229,334.85135809052736,335.16327342856675,334.2103403848596,334.87819834053516,334.12257504928857,333.1563215702772,333.3027071887627,333.5292177721858,334.44292966043577,333.81574100395665,333.1029523201287,332.9632387510501,333.50134490290657,332.79856209503487,332.1774750268087,331.48937227297574,330.5223208107054,329.9951878939755,330.10746850585565,330.4873076477088,331.15806931396946,330.8712646034546,330.54653704259545,330.7477593291551,331.5278859883547,330.6375983771868,330.8330267216079,331.51024138648063,332.33805846748874,332.1761685051024,331.56399375759065,331.35851192241535,331.7257234835997,331.5643506217748,330.8736127698794,330.4597988151945,331.1097260643728,331.40508578391746,330.6489933906123,331.38461370160803,330.75069156475365,331.51562388939783,331.73100565746427,332.20226920582354,332.44492993177846,332.25673560239375,332.17637683963403,333.05500295665115,333.72347332397476,334.31980487983674,333.666036542505,333.7244138577953,333.5779318995774,332.7642749734223,332.611442561727,332.4519233745523,332.7827693922445,332.91877927910537,333.58038802444935,333.75406451988965,333.81673901341856,334.2116822679527,334.0994843095541,334.83156345784664,333.98687489237636,333.1839345972985,332.4894779138267,332.2872012350708,331.7566626756452,332.1700054979883,332.71687847469,331.9145434498787,331.95257112476975,331.18226887704805,331.87942534452304,331.9618846750818,332.24396190419793,332.8191189840436,333.6340673910454,333.6542711574584,332.69454988464713,332.4755507959053,331.67419531941414,331.3959021558985,330.93771272012964,330.70080721657723,331.5682300948538,332.5416876114905,333.0886797280982,332.23642124561593,332.84308832138777,333.7081530219875,334.5416481439024,334.83817722601816,335.65787795279175,336.477610129863,337.23405693937093,338.2335799857974,337.81339020328596,338.43689009640366,337.9519582884386,337.8657188457437,338.38650172017515,337.5194623605348,337.7119131023064,338.23676968645304,337.6677526864223,338.57534686056897,337.8945866418071,338.4732749303803,338.6297708186321,339.14946969086304,339.4270572620444,340.0293195974082,340.5444375677034,339.6488535045646,339.78030352527276,339.9774797973223,339.17814331129193,339.76460985606536,339.91182350739837,340.1275101630017,340.9486313993111,341.24400736158714,341.3445079396479,340.3859426979907,339.8960910439491,339.03459422430024,338.23728438839316,337.661502844654,338.2386736702174,337.2876378791407,336.35023873345926,337.0921273534186,336.87862009741366,336.59204723732546,336.03143129637465,336.0960518736392,335.65255857119337,334.9297651248053,334.9467648952268,334.4773548585363,333.99472263641655,333.7854858147912,333.602769210469,333.80744510516524,333.9393538404256,333.3697483455762,334.05882422765717,334.13799773110077,333.6281123412773,334.0094620073214,333.81325942697003,333.9707313487306,334.6368786552921,334.7878701160662,334.65634449990466,335.48882932495326,334.59766675857827,333.72889000875875,333.76808412605897,332.87832817668095,332.3811748120934,332.5751417442225,333.03739782003686,333.8790478333831,334.22107921447605,333.5884236372076,334.42697610892355,334.90674022911116,334.75238619279116,334.02462006313726,333.12586017884314,332.463332999032,333.14046352682635,333.45137662254274,334.31346036540344,333.80722830211744,334.0952325966209,334.2324306839146,334.62007245840505,334.5571153787896,333.97821349836886,334.5356578435749,334.4152836455032,333.8402533577755,333.09413959644735,333.44634694838896,333.7942781415768,333.6190397441387,334.5479607125744,333.8005014634691,334.475128763821,335.4485614509322,334.7379104751162,334.9725577775389,335.3464886844158,336.0407034913078,335.3996716872789,335.04450484225526,334.56125295581296,334.57797542074695,334.7691578567028,335.20298348600045,334.7190771214664,334.58868555817753,335.22113080881536,334.38822866231203,333.7840151046403,334.08271898748353,333.8905236511491,332.99614087305963,332.01106917345896,331.6285949549638,331.9014919260517,331.2458736328408,331.6967303729616,332.2298460495658,332.4780165827833,332.76036793738604,332.90171674545854,332.24620446329936,332.1144979763776,333.09239917853847,333.5528666987084,333.9683516337536,333.78250261815265,333.21554340142757,332.75659837340936,331.7819155314937,331.2653977503069,331.50531500484794,330.9337985473685,331.249410524033,330.67308759409934,329.99219253705814,329.04984861938283,330.0431431187317,329.07322927750647,329.86114141205326,329.4936732952483,328.70124283852056,329.19155436661094,329.8607584098354,330.5618837065995,331.17930497042835,330.4367201565765,331.41565249394625,332.2166227758862,331.98866291018203,331.5194658851251,330.7224605078809,331.08588461903855,330.2205993756652,330.8396489378065,330.9162150975317,330.1478423457593,330.1212586648762,329.88111565168947,330.7728877174668,330.4847741895355,330.7056406624615,330.45632523391396,331.37799529591575,330.65395111357793,329.7901975107379,329.06711751548573,328.88203839818016,329.1637302781455,328.20927666313946,328.8916666666046,328.09019053867087,327.4018055293709,327.8253205236979,327.1612707278691,327.1688369377516,327.9768396108411,328.1462479014881,328.52659481950104,328.1013313145377,328.57583570247516,328.31338940979913,327.7358353198506,327.18458745256066,327.65525570791215,327.28794767102227,328.101039854344,329.0125634269789,329.1593224131502,329.5582032194361,330.3233224796131,329.36742598423734,329.53464711876586,330.10299339564517,329.3653451250866,328.868939162232,328.8294716407545,328.9142847727053,329.0678287213668,328.20196037599817,328.5035402327776,328.2130001359619,327.90416150540113,327.3901327778585,326.72075727488846,327.04763968195766,327.792412226554,327.144613862969,326.55875591374934,326.64215690409765,325.8138612881303,326.4574504168704,326.9940338693559,326.9039045921527,326.03545868070796,325.16170915961266,326.0483304532245,326.8820411497727,325.95934659801424,326.1222515543923,325.5884403567761,325.7196559822187,325.79586771689355,325.4090069644153,324.85890132468194,325.1317300819792,325.0489193829708,324.84475565189496,325.0285551697016,325.2754296557978,324.65356837119907,325.38486154936254,325.0377476559952,325.1550288386643,324.4250972615555,324.44131663022563,324.35408549336717,325.18608388723806,324.1967562586069,323.5858394103125,322.9487910545431,323.4520030138083,323.044401852414,323.04646851075813,322.8096595844254,322.69075672421604,323.2829612265341,323.54671908309683,323.19455770915374,324.0221199984662,323.4598263935186,322.99836245551705,322.33038539858535,321.79069743910804,321.1082002874464,321.5366621152498,321.71247097477317,322.5916498382576,322.4298599208705,322.6688570268452,321.68021608842537,320.7241681148298,320.8646890851669,319.9358641928993,320.41959615331143,320.630754922051,320.62462406093255,319.80481970962137,318.9848467153497,318.32640448538586,317.8247571596876,317.58576421346515,316.81845620134845,315.94964169198647,315.62442635791376,315.3598671895452,315.9585129651241,315.9359232056886,314.95574757037684,315.3634540406056,314.6359965163283,315.49632294708863,314.96002493752167,314.62249369034544,314.1302984235808,314.2584760328755,314.66239014687017,315.65041833696887,314.9549377411604,315.2262173448689,316.0102252177894,316.7130919555202,317.3932006531395,318.0977455000393,317.36455949256197,318.1001507542096,317.94903227174655,317.72630515275523,317.34680871106684,317.80528570059687,317.3168696016073,318.0385857014917,317.7415538667701,317.33452409366146,316.3427274869755,316.97835411923006,316.08195075113326,316.3652115869336,316.12781295226887,315.15981817338616,315.41471671452746,315.335445614066,316.3218925730325,315.5446204356849,315.3875076342374,315.69728512549773,315.8937928667292,315.3508727438748,315.07915083598346,314.24458465818316,314.04632376367226,314.87370431097224,315.6120364363305,315.64182972582057,315.28514383966103,314.984977144748,315.77264663996175,316.59723936673254,315.8140164874494,315.2525508948602,315.0484720948152,315.8879898460582,316.28365565650165,316.86846444103867,317.7363625410944,316.967466567643,316.3434892538935,315.60223287018016,314.93454100657254,314.86650784965605,314.8691354417242,315.17649692855775,315.55578739289194,316.39128858828917,315.9384673521854,316.48035832028836,315.99378466187045,316.90379383182153,316.70798891503364,316.4808945390396,315.6634653820656,316.2663376489654,317.20854536630213,317.8242512382567,318.0487328530289,318.2689817431383,318.02595783770084,317.19207516498864,316.87352573359385,316.81703689461574,316.7866914081387,316.3231069846079,315.546532260254,315.6895237127319,316.3433078736998,316.02873371960595,316.09758340753615,316.5394689035602,316.64707414992154,316.24154210742563,315.8749912753701,316.5297395484522,315.60755225783214,315.01186741841957,315.3065873342566,315.6182309091091,315.54998437920585,315.5862677558325,316.14404046023265,316.22795034665614,316.40375700453296,317.19559812918305,317.48959208186716,318.38411996420473,318.7212322158739,319.4416658114642,319.3843971225433,319.5570220365189,319.5724548702128,319.95252716355026,319.4830043925904,320.2563180006109,319.9577987557277,320.01685821451247,320.06934905890375,319.32669999683276,320.1425165091641,321.04099629446864,320.05650833435357,320.01916410960257,319.2724901228212,319.1165930153802,318.88063281821087,319.07968023465946,318.92831799248233,319.8414139728993,319.2663145167753,318.5938039938919,318.0053726634942,317.6608142312616,318.1041476232931,318.48019028967246,319.1543760332279,319.74841614207253,318.8540702671744,317.951305788476,317.3882320942357,317.0140024833381,317.96370691712946,318.10602323757485,318.0005928124301,318.10581389348954,317.1910737697035,317.82522772066295,317.2607074258849,318.1091222111136,317.7506196349859,318.4603979564272,317.83195319771767,318.5336907641031,318.4831833941862,319.4297447055578,319.8306289813481,319.70066542411223,319.71209797495976,320.43854140257463,320.0178438448347,319.9742818456143,320.45731845730916,321.0822540470399,321.50251688063145,320.6433705436066,321.60446192277595,320.89258955186233,321.84365773620084,322.6695301826112,323.62796376645565,323.2385945697315,322.31705091381446,322.99900000495836,322.3482732111588,323.2237615091726,322.98916085762903,322.1982342158444,321.35529528185725,321.196747910697,321.2572144931182,320.80315418262035,320.2810314274393,320.42291569756344,319.8704775129445,319.33639261871576,318.80951516283676,317.93488420639187,317.9106893213466,318.22034604894,318.46923868497834,317.56506095128134,317.3728525568731,317.76699402276427,318.49346199817955,319.4369783103466,319.9548188452609,320.5496293879114,319.8497079759836,320.01391550479457,320.02610105555505,320.56549650104716,319.9254624089226,318.94999227579683,318.5422378205694,318.5925613180734,319.33205353608355,320.0095282746479,320.07507466105744,319.4705649917014,319.9526794156991,318.9625590951182,319.4202922503464,319.45468667615205,319.24384867586195,319.1385993734002,319.3381155426614,319.08926111925393,320.04953299602494,320.9986226595938,320.09956433577463,320.41591695463285,321.01714991172776,321.16151278465986,320.69396073091775,321.5341308969073,321.50806970801204,322.40482375817373,321.50323706585914,321.53778430400416,322.41073690447956,322.1185587551445,322.0566912498325,321.1458850149065,322.0792463715188,323.0534765231423,323.1909618983045,322.3428790573962,321.8052280722186,322.574253403116,323.3092625020072,322.626279420685,323.5706505589187,323.5844610789791,323.6435116142966,322.67169936560094,322.0539690097794,322.8357100225985,322.3875266117975,323.06906249700114,322.88208277057856,322.06479029450566,322.07783931074664,322.75838910089806,321.8075876152143,321.5198392602615,322.0639843014069,322.664136686828,321.7723655202426,322.6824417184107,322.02435967558995,322.8675146815367,322.6357902348973,322.89927342068404,322.0800063847564,321.3237434453331,322.1074306629598,321.876395879779,322.420892640017,321.64523249445483,322.13931809179485,322.8488359870389,322.9966105800122,322.3053749334067,322.42828886024654,322.66675168136135,322.0303045664914,321.5488546350971,321.18937903037295,321.84250359330326,322.31756157707423,322.99597373977304,323.63560644118115,323.37031310098246,322.4033907065168,321.70112544531,321.60297602787614,322.1065012011677,322.2560714301653,321.4471585787833,321.8770099640824,322.31429394567385,321.9608409181237,322.5914022088982,322.41520754573867,322.5593370650895,322.91896614525467,322.8835605001077,323.5694353096187,323.4037015326321,323.5303792222403,323.4315896262415,322.5213636038825,322.5645651756786,323.5141739952378,323.3703089458868,323.74560186080635,324.1046875305474,324.0896376715973,324.4583688881248,324.4733559479937,323.8228884902783,323.62643260974437,322.75363970641047,322.6701828194782,323.460847530514,323.2054529711604,323.5027756365016,322.5225902586244,323.1281645204872,323.955465185456,323.0357543360442,323.48274585139006,322.83117835363373,323.2223109556362,322.7552804485895,322.95323947863653,321.98748775338754,322.4154599206522,321.90665660845116,322.49082600232214,322.1244322229177,322.2904897024855,321.5805449420586,320.72437449218705,320.98956556105986,321.48436404392123,320.65263934247196,319.7227797973901,320.4804832288064,321.3424825188704,321.8979226429947,322.69552238238975,323.3511860421859,323.50528802815825,324.4310483504087,323.55199439264834,322.6178560121916,322.0189735046588,322.64285805262625,322.22820921381935,321.79056428931653,321.2519928589463,321.61742480890825,321.56357690226287,321.29518866864964,322.14006576500833,323.0431909444742,323.1995998173952,322.8338406374678,323.6563736568205,323.41552310809493,323.59555126400664,322.9215734624304,323.72126637073234,323.6848985562101,323.9487248165533,324.47585439728573,323.87079116050154,324.3373029110953,325.00215374073014,325.18048552935943,324.2517709117383,324.6537287342362,325.3547913674265,324.4185549104586,324.9313355172053,325.58326160814613,326.409975818824,326.8294797469862,326.9019702267833,326.5307496068999,327.46205151919276,328.12077421089634,327.5856092986651,327.5427663172595,327.9397063795477,328.57639427669346,327.82872354006395,327.5463592945598,327.02476212382317,326.98190659703687,327.45276325941086,327.2930100108497,328.1328598000109,327.2007049615495,326.38081625290215,325.4680879204534,326.1501398975961,327.1230603964068,327.13811200577766,327.5086683854461,327.4637641655281,326.8545507499948,326.0876512355171,326.00531373452395,326.4410271542147,326.5598919894546,326.6343030096032,326.88918142113835,326.94336889125407,327.91122290538624,327.4327940265648,327.392277775798,327.23620868707076,326.26875153323635,325.52103467984125,326.45545263029635,327.1243130280636,327.7307384745218,327.82677436759695,327.3075679121539,327.46503738034517,326.54127113427967,327.4072838691063,328.33619933761656,329.33091973140836,328.34445619862527,327.419223328121,328.2968609146774,327.6476347516291,328.1291260262951,327.7100841635838,327.29542664811015,326.88902910612524,325.93565716734156,326.5593227869831,325.8271132297814,326.7862361385487,326.78952428884804,327.058389167767,327.41144803212956,328.1549231214449,328.8943499866873,329.07343470864,329.50290565006435,329.7916284641251,329.8455826025456,329.62244915543124,329.72260732902214,328.79907123045996,328.36398961301893,329.1317117116414,329.4518685657531,328.7926373141818,328.98094906285405,329.0864165336825,329.44969385815784,329.87430524546653,328.9548826017417,329.8608869430609,329.4063404831104,330.22337248921394,330.8196284323931,330.2869139588438,331.2365781618282,330.404385865666,330.44047409435734,330.5486557818949,330.71094577526674,330.15548669174314,331.0132500133477,330.1385359452106,329.6280900789425,330.01312067266554,329.79324926342815,329.37979624886066,330.00221419800073,330.8443250907585,330.42718565417454,330.78836596617475,330.19699719687924,330.30054489383474,329.99085711687803,330.25437047099695,330.36448650388047,329.42853657435626,330.03341557923704,330.17191412718967,330.135102848988,330.9140668148175,330.829802619759,330.71084538986906,331.39892241265625,330.81394727667794,330.7103234222159,331.01149253407493,331.67888922803104,332.25567465787753,331.93436688371,332.8858608333394,332.247042379342,331.8298448799178,331.65401971293613,332.5292767304927,333.1718402961269,333.5741576049477,333.9888625689782,334.0636712424457,334.40297172917053,334.88508029747754,334.9832543800585,335.5622035069391,336.121757206507,336.94161733519286,335.99728274997324,335.758081107866,335.40297462046146,335.51163539430127,335.5628875293769,335.1254385346547,334.1627529426478,334.41260457085446,334.4780487208627,334.99064628919587,335.31240967987105,336.1469867490232,336.3355009201914,336.0140177188441,336.64218345750123,336.7109710359946,337.1834621410817,337.981871785596,337.2997307786718,336.6959938672371,337.6145141082816,337.13110081944615,337.84018678823486,338.5791511577554,337.865594019182,338.1769205518067,337.23940384341404,336.59902459569275,336.0700134895742,336.3411441524513,336.1446137181483,336.3278362015262,335.8891868330538,335.5577008998953,334.9102135738358,335.170752862934,335.826700752601,336.48976536886767,336.9181541367434,336.5110674193129,336.79228805284947,336.858894999139,337.0391170056537,336.2463370435871,335.39127456070855,335.06701729726046,335.42891568830237,334.79273764276877,334.3144434359856,333.9867671900429,333.1731626992114,332.7311318819411,333.3208951288834,333.23947746725753,332.63976079784334,332.295347136911,332.9290722925216,332.63137651840225,331.70591249875724,332.37285618204623,332.78925372008234,331.9424501978792,332.2192967943847,332.05226880917326,331.60281003359705,330.95578494807705,330.6356193693355,331.2034290791489,332.0530754956417,331.4256927296519,330.64069239003584,330.8776037860662,331.18556731613353,330.68950220011175,331.14019458414987,331.2418424775824,332.0475247083232,331.4570971764624,330.60158024635166,331.23834783025086,330.33730862196535,330.3362508909777,329.8312236163765,329.5540992724709,329.22025718400255,329.6105488818139,329.06847594864666,328.85532837128267,328.7217527804896,328.09665236482397,328.8884105789475,327.96952786901966,328.1625378872268,328.661843277514,328.47975854948163,329.066092712339,328.0753565435298,327.5537035702728,327.42788768559694,328.2460034857504,327.37606115825474,326.75367948180065,326.76295864535496,327.31263609370217,328.2156543498859,327.26905296649784,326.7608219459653,327.09028356475756,327.3376798052341,327.64591836184263,328.62411935115233,329.4534177859314,328.75561162410304,329.30264392355457,329.86595895979553,329.8215635777451,329.28733557322994,330.10036325082183,330.9221031772904,330.0817106748,330.47900681896135,330.9476214302704,330.04266181914136,329.942503540311,329.38577617751434,328.71471813321114,328.87094824947417,328.7378006596118,329.6698049143888,329.9672199799679,329.57670983159915,329.43709839042276,329.2380891107023,328.78167902491987,328.0248045073822,327.7186889513396,327.473264306318,328.03973519289866,327.7283861367032,327.7482188199647,327.44427044922486,326.5821583317593,325.80765252700076,326.51429408509284,327.08251727884635,327.75192101765424,327.79196275305003,326.92101419344544,326.1503576361574,325.492976566311,324.5808663931675,325.4378759893589,325.3581059165299,326.27765803737566,326.11019954131916,326.1051688482985,326.9093067715876,326.05477276491,325.66707898443565,326.0459540132433,325.52547962684184,326.4762456617318,327.17559432797134,327.7044118861668,326.9667967208661,327.6083889310248,327.1198896933347,327.22968063829467,327.160688017495,326.22001335956156,326.3478933982551,325.6136513114907,325.8138863462955,326.4421325852163,325.54509371099994,326.4815614707768,326.0306088584475,326.2844463069923,325.6481186603196,324.69501297036186,324.2869513677433,324.80391722312197,324.4506715228781,325.0195475756191,324.9065894037485,324.06241295393556,324.4206819180399,323.8549679839052,323.1049539297819,323.0303436042741,323.84962760610506,323.4828565027565,323.58052731957287,322.88862006599084,322.1409235387109,322.02377748163417,322.54815889382735,323.3426757226698,322.50785683002323,322.38539428683,321.63428538059816,320.7830838179216,320.4807198285125,319.83272177306935,320.2009311011061,321.1138639370911,321.7647124575451,321.3649690342136,320.5708453422412,319.7311396980658,319.68068750575185,318.82569299358875,318.22411976987496,318.69116321764886,318.23113798256963,318.3013963201083,318.38415030250326,318.76094857556745,319.3448860272765,319.67142500542104,320.4099253276363,320.78033200697973,320.10079055512324,320.3305343990214,319.57210223423317,320.1761252800934,321.0327612240799,320.95708618406206,321.8547564363107,321.0763626541011,320.2647514566779,320.7584688765928,321.145643861033,321.72822864400223,321.78956021927297,322.58079406945035,321.89362597232684,322.12537015834823,321.4402055279352,320.8746694242582,320.23250103602186,320.9601984494366,320.7990356525406,319.9038965511136,320.8972814530134,320.93916274933144,321.2038846719079,320.50356320664287,320.5850536474027,321.3406589711085,321.9112141141668,321.9882722119801,322.650524022989,323.18295403011143,323.58117999788374,323.6274523357861,323.02059208601713,323.94678938528523,323.8929135953076,324.28415712714195,324.6134040541947,324.44895001733676,324.7654747045599,325.3006358621642,324.78091449756175,324.46948113804683,324.55346418963745,324.6518142763525,324.692631279584,325.5471884631552,326.34587317798287,326.89159751683474,326.0983523395844,325.99776510940865,325.03867582185194,324.82825758541003,325.4911369215697,325.82808649586514,325.28493872936815,325.7836417998187,326.66400402551517,327.09190976805985,326.5967025058344,325.75934259034693,324.8517913259566,325.33429698552936,325.18817395111546,325.97617167327553,325.2305650152266,324.236654070206,323.65641291532665,323.8744163317606,323.9068113034591,322.9870412326418,322.7864153110422,322.3668658672832,322.8164777099155,322.7947556572035,322.9076218069531,323.3637191024609,323.55551233980805,322.8412776403129,322.6550726015121,322.1011842000298,322.82819128781557,323.14352119807154,322.32803198043257,321.51915993494913,321.116369465366,321.4379609087482,320.90777962235734,321.03282742062584,321.475437305402,321.77393990568817,321.62312141247094,320.6339885825291,320.03471933165565,320.1858816514723,319.5615114234388,320.4608721793629,321.0191614772193,322.01846280228347,322.0321417511441,321.3914586622268,321.1989071504213,320.89858995517716,319.9946740856394,319.5322982124053,319.42609450174496,319.1082732337527,319.761044352781,319.14861604198813,319.53202858241275,318.77620679792017,318.4388980534859,318.21725701680407,317.75624799495563,317.1701466133818,316.6869871397503,317.16463583055884,317.14991238340735,317.33973262412474,316.6137378825806,316.3525275029242,316.5795396491885,317.40509568853304,317.35688606929034,317.0271816425957,316.6662786579691,317.55981682566926,317.37643996207044,317.43984325928614,317.46968097938225,318.0841248598881,318.56266791466624,317.8921461729333,318.2983002816327,318.41897329268977,319.2833489035256,318.80583651643246,319.70067077549174,319.80115399928764,319.24722188478336,318.5653059910983,318.5821478855796,319.09892084496096,319.9099455983378,319.3561023832299,318.4621456307359,318.7466839370318,319.4462733832188,318.930391614791,318.3697885973379,317.8222867678851,317.9471888956614,318.01848698733374,317.32374952035025,317.22374707786366,316.40867656329647,316.65278031583875,317.51674404507503,318.4989337804727,318.5128304627724,319.12027391884476,319.7912394795567,320.7228306764737,319.7926132599823,319.9364531505853,319.9880448789336,319.91940704733133,320.4639047021046,321.1262179221958,320.8828246453777,320.42657050071284,320.4284327910282,320.8310425351374,320.27328914031386,321.0210091243498,321.5327208400704,321.6000968553126,320.65807199152187,320.77456308947876,320.6100925607607,320.6742013883777,321.27131092734635,320.4412946118973,320.22142731631175,320.9301649532281,320.73450637003407,320.2215164951049,320.6174111790024,320.08798941457644,319.742395714391,318.9540535514243,319.16514676623046,318.43368545081466,318.7049566260539,317.96737465215847,318.3309262720868,319.0755555322394,318.16254080832005,317.9480014955625,317.7561928629875,318.5257359268144,318.5912465900183,318.71792936045676,317.93494724994525,318.0221643880941,318.8054496217519,319.56471726857126,320.2488051489927,319.3780226171948,320.1062636184506,319.9556672233157,320.3167369114235,319.7927137175575,320.5969144362025,320.6798293427564,320.03440051013604,319.99997887108475,319.25243994873017,318.27959066210315,318.7867993330583,319.59228058578447,319.69559447513893,320.6086683613248,321.2868707552552,322.14620570326224,321.2163149761036,320.37020109128207,319.7281799702905,319.7572040418163,319.7617628793232,319.09135579224676,318.84040439501405,319.45825157221407,320.09539016662166,319.49585273722187,318.53275259025395,319.253821445629,319.61794854467735,320.1350349234417,319.2272596680559,318.7433704887517,319.27936132159084,319.14060521451756,319.4284656806849,319.35098440619186,318.88309129839763,318.32106327218935,317.49524355120957,316.5703806024976,316.5489548663609,317.54512971360236,317.18966238899156,317.4485996896401,316.5940842870623,316.6091501796618,315.69460930256173,316.54594624973834,316.41063075652346,315.67836841149256,316.6739656929858,316.42495438316837,316.4023656626232,316.91794357588515,316.447571888566,316.5601762505248,316.56570245092735,316.3359672026709,317.33368358388543,317.9824052937329,317.51901455782354,317.06001483509317,316.84328855620697,317.55819885246456,318.0212388318032,318.63229182362556,319.60846976423636,319.20741117047146,318.57942222151905,317.9263593466021,317.7775906152092,318.37683651875705,318.29130457062274,317.4751831702888,316.54379911068827,316.05483880173415,315.9393165051006,316.87854871945456,316.424000099767,315.49734458187595,315.6874199202284,315.46000305376947,315.2582849529572,315.98557290108874,315.8669347153045,315.64859839808196,314.6487523247488,314.5612502321601,314.9033992518671,314.53066889196634,313.643177755177,313.6735534048639,314.3368508508429,314.41579989669845,315.3624376091175,314.71135756885633,315.0246729818173,314.49748987471685,313.76907465048134,312.88069093972445,312.1249982761219,311.4087154562585,310.41538165463135,310.70890575880185,309.965820397716,310.8640438443981,310.49568895436823,309.9558635451831,310.70318614365533,311.5207753009163,311.1237645987421,311.3666879972443,311.4140930636786,312.06944651622325,311.450385958422,310.78754943516105,311.06233992800117,311.10562560055405,311.58572780154645,310.9865783136338,310.15258670737967,311.11842962913215,310.51584706967697,310.8522260999307,310.3013109532185,309.7823516028002,310.0428147614002,310.44981934595853,310.74498983006924,310.8827150524594,311.2107271440327,312.14067521179095,312.04950363049284,312.6136327367276,312.98466878244653,312.71581463329494,312.8008204200305,313.46567518636584,312.93993245251477,312.00449061533436,311.90782013582066,311.1163327298127,311.912232324481,312.4058488612063,312.1396268187091,312.71305298339576,312.0887999893166,311.40525979781523,311.7931955344975,311.7868015486747,311.1712522110902,312.11825250228867,312.89144895318896,312.29666312085465,311.34048876399174,310.93928731326014,310.7900005369447,310.1416046898812,309.57161581143737,308.94180364580825,308.07788525894284,307.3204241353087,307.11757869599387,306.8015478029847,307.3180180932395,307.16913138050586,306.3525213575922,305.3557137027383,305.43129835044965,306.35595521051437,306.59857399808243,305.9623661926016,306.5548143093474,306.608356051147,306.89469559676945,307.53390689147636,307.5721982945688,306.60503717232496,306.85969611862674,307.0317428810522,307.8536700969562,308.51102766999975,307.71932585630566,308.53496495680884,308.648818039801,308.07342077745125,307.65892927581444,308.5765760508366,307.8468264359981,307.2785407467745,307.0834382432513,306.6619547964074,306.15258410945535,306.1999706104398,305.5743422745727,305.00957851158455,305.02862809970975,304.44194263825193,305.3849015487358,306.21991321025416,307.1973442127928,306.86232466623187,306.3831404023804,306.28033905802295,305.3127118158154,304.8651379016228,305.77301173005253,306.0453546643257,306.3299596742727,306.0129686067812,306.07856370229274,306.5924956598319,306.5368688032031,307.33479827223346,307.51469512144104,308.4234097022563,308.31108332565054,309.25127512356266,310.181704742834,309.74171048076823,310.06915298616514,310.1596376816742,309.65132251847535,309.7254295698367,310.63422371121123,309.8671713382937,309.9351775571704,310.5202833460644,311.0352117274888,310.04084030212834,310.83648572163656,309.92824832955375,309.6728512872942,309.26512236660346,308.4948524525389,309.42142721964046,308.53820685949177,307.66992364497855,307.4035739125684,307.25671040592715,307.6312793097459,307.07275418704376,306.752547936514,306.67123912647367,305.7196327364072,305.05405297735706,304.60662483936176,305.4032825436443,305.2823642324656,304.34177201334387,304.9946242137812,305.2017201827839,305.15334989409894,305.54474171902984,306.3198081096634,306.8073655660264,307.4886138504371,306.7091809576377,306.5244457977824,306.6663151057437,305.862022518646,305.95492633618414,305.0052760313265,304.34104821039364,304.531793251168,305.46867164596915,306.4364377800375,307.3310862686485,307.5618066904135,308.43586252536625,308.8253072784282,307.97331448085606,307.85157411545515,306.91848592367023,307.2611773852259,306.9471261431463,306.4727587602101,307.36579898605123,307.7705634990707,307.9715659348294,308.5809307130985,308.38565257471055,308.73036446608603,308.9907159325667,308.33064295258373,309.05242565786466,308.63719677878544,308.6610876638442,308.5144389029592,308.9956068126485,308.42784724989906,308.9081245227717,309.5906021646224,310.0125284125097,310.80747387278825,310.83612927328795,311.276518357452,310.40345393586904,311.2454968690872,310.27622493496165,310.2874510777183,309.4590573958121,308.5670594992116,308.500710463617,307.85030889417976,308.16309940442443,308.9293106975965,309.58609496662393,309.30187970306724,309.9304567598738,309.8288090955466,309.89732226729393,309.5729111689143,308.620498794131,309.5214972216636,308.575501028914,309.47645272361115,310.46403632266447,309.7297767647542,309.48338600061834,309.7808906524442,309.4001653054729,309.28624384244904,308.4299909248948,307.80082545802,308.63145407894626,309.20790969161317,308.93406311096624,309.44781827554107,309.15903093712404,310.0800666026771,309.24871342722327,308.9948247834109,309.92316921055317,310.0089751384221,310.5560855832882,310.9845601650886,310.93599189724773,311.4243685519323,312.2199960234575,312.55316655151546,311.83441135892645,311.0001914752647,310.2067894828506,310.41425322089344,311.2405407903716,311.6910079084337,311.07838479150087,310.8313328544609,310.82037113048136,310.78206659667194,311.29254770930856,311.8301589409821,311.92870080517605,311.7283397410065,312.2225336735137,311.4913256270811,311.3844542359002,311.39724943460897,311.68663612147793,310.9096624040976,310.89658311055973,311.0968169560656,311.1667871652171,310.8860625214875,310.669445080217,309.7327589029446,308.9593325620517,308.51275274856016,309.4944741311483,309.879242436029,309.7676114682108,310.04774254001677,309.2442979873158,308.53455653134733,309.2757089845836,308.8221291741356,309.0209604538977,309.6316095027141,310.53811727510765,311.0694104945287,311.95271787326783,311.5439096558839,310.8725489056669,311.83512759162113,311.91559155564755,311.97372154844925,311.22483726777136,310.28232775768265,309.6340484889224,308.77824948122725,309.00187987973914,308.24641325185075,308.6289684851654,308.5445417929441,307.96555846976116,307.44384898385033,308.3848680835217,308.52695775032043,307.8846505386755,308.35714123910293,308.6965461820364,308.1367940818891,308.241083310917,307.2805983219296,306.88389440625906,305.89459084300324,305.9445342840627,305.7095292545855,304.8937106137164,304.5608967002481,303.86785038141534,303.6607334781438,303.53397598396987,303.5663705691695,304.5558391669765,304.0924999220297,304.1265707439743,303.2985193692148,302.7100409991108,301.7361969538033,300.8002343205735,299.93615544587374,300.3783377041109,301.37284808512777,300.6457320614718,301.2484391951002,301.08236645534635,301.53065286250785,302.017957592383,301.94491210207343,301.5961016495712,302.5235022814013,301.96557455463335,302.22856985544786,302.1162164104171,301.20073531614617,300.3541333270259,300.29786844784394,300.4386998945847,299.65556291723624,299.55234651453793,299.46303709968925,299.6612995509058,299.66044186241925,299.0694547817111,299.1564424415119,299.72015260066837,300.5917710228823,299.598123089876,299.83757397625595,300.7196884844452,301.36814181273803,302.19085688050836,302.82707603415474,303.4286057711579,303.23843877995387,303.41213813470677,303.8891731072217,304.0629809042439,304.4784561577253,304.8312234166078,305.8104283059947,305.7066779192537,306.289887777064,305.8241192381829,305.70586826838553,306.2775733503513,307.0920536611229,307.9905317472294,307.5871441173367,307.24837939813733,306.9459585971199,306.3598604965955,307.1777139394544,307.27654298441485,307.402218378149,307.3499523336068,307.24473490798846,307.9702810468152,308.77886938350275,307.8430194254033,308.7186483605765,308.15049148583785,308.3082134788856,307.9025831138715,308.1675869282335,309.15896442206576,308.30261141015217,309.0666472404264,309.34005519608036,308.4902720702812,308.92509213835,308.3555680094287,309.28361164825037,310.11975460126996,310.6279281168245,310.5872726486996,310.435768192634,310.17537190485746,309.65347890602425,309.99489600909874,310.92974733840674,311.0345963155851,310.7671604016796,310.55951149296016,309.7672616862692,310.6571411918849,311.0672345981002,310.20708312513307,310.9168151165359,311.0212340527214,311.3336541093886,311.6530925659463,311.3041808446869,310.3907059854828,311.0583569495939,310.46229168586433,309.80096739623696,309.2331052185036,308.85876380326226,308.3267198652029,307.35192818613723,307.2432871791534,307.550368825905,307.4912626701407,308.1047695293091,307.2106241215952,307.52687186654657,306.9354804260656,307.71532018622383,307.6319056279026,307.71491816919297,307.85240115225315,307.64953669765964,308.4471304649487,307.8653797111474,308.47454546252266,307.5303574791178,307.9867677385919,307.2067516762763,307.7457827916369,306.88957133330405,307.4051864845678,306.5528581808321,306.23976213950664,305.8576219016686,304.89968147454783,305.3689829413779,304.7555428161286,304.08506536250934,303.96915162028745,303.76402349444106,303.44396470393986,303.63606486003846,303.95006749173626,303.20907416706905,303.3431543149054,302.9897763878107,303.8399020228535,303.7189312148839,303.4436934432015,304.0339882969856,303.4749036850408,303.16654767561704,303.1430509951897,304.09564980259165,304.5099327727221,305.1724151694216,305.3172889892012,304.59377359459177,305.31563400803134,306.23160679871216,306.1211355412379,306.949862993788,306.0495064477436,306.9068644521758,307.3800955261104,307.61360051110387,308.23731184285134,307.55805906886235,308.2396993287839,307.5001893071458,307.58576573757455,308.18792075524107,307.8308869432658,308.07487966073677,307.9548959187232,307.82192990509793,307.3772477209568,306.5622016848065,306.3937133708969,305.44492553686723,305.01031110296026,305.9764698832296,305.7513132500462,306.5570533410646,306.75321444449946,306.6505054747686,306.7590890787542,306.10273233335465,305.6250958284363,304.7803568104282,304.97225049044937,304.5479086264968,304.4368135454133,304.2425763695501,304.9236216042191,305.5672948290594,305.3440520130098,306.0677402014844,306.412371376995,305.7956518693827,305.1073906295933,304.86644974630326,305.6762434304692,305.9260332174599,305.9449881478213,306.16121290810406,306.58763451641425,306.42492681508884,305.51047463109717,305.75447218539193,305.351229888387,305.055680220481,304.09276931686327,303.77559470012784,302.91574140032753,303.5988497957587,303.5719972536899,302.7814167495817,303.3627440384589,302.674577973783,303.554840399418,302.6616646191105,302.53583479020745,301.7944517848082,302.62496010400355,302.4312850064598,302.41320250649005,302.16753444913775,301.83877029363066,302.44042215961963,301.6479113618843,301.801161814481,301.1832586461678,301.69032829022035,301.41417321003973,301.6357002137229,300.70325373020023,300.9534576609731,300.67689577210695,301.6053234990686,301.1173280440271,302.0818188046105,301.3048944543116,302.0184564124793,301.4549710662104,300.5684129828587,300.8075301675126,299.8664163243957,299.240642874036,299.52807900402695,298.6610828745179,298.1358554349281,297.7382503701374,297.62019145302474,297.8554749339819,297.43643582239747,297.14334869896993,296.8582272315398,295.99164023809135,296.10621104063466,296.16063445899636,297.1556968432851,296.2490482740104,296.09859212627634,295.88774923747405,296.82234370475635,296.6151858777739,295.94049269286916,295.967100197915,296.16167341172695,296.56071593798697,296.8274931241758,296.50746676232666,296.2890486079268,295.695827846881,296.2186883473769,295.6940423576161,295.1922736619599,295.73813437623903,295.4141301349737,294.95711414609104,294.81345935957506,293.8882450819947,292.9811306167394,293.8902721432969,294.68881412642077,294.5294022113085,293.5714070671238,294.0763432122767,293.240770528093,293.77574667474255,293.28081912593916,293.0186150185764,292.6864006174728,293.61708028567955,294.5781479566358,294.2615105090663,295.18106370419264,294.80896032229066,295.21048261318356,295.3431231221184,295.6467451439239,296.59802422020584,296.8472551717423,297.07719101849943,296.2936089085415,296.56618890725076,296.7401380301453,296.96943303383887,297.00382620980963,297.99194639129564,298.690680000931,299.23895047046244,300.03167913714424,300.3639426450245,300.80367804318666,300.1196953561157,300.4844169700518,299.53577614342794,300.24056636262685,299.8652834035456,299.60909817460924,300.10326853906736,300.4215069222264,299.68059177324176,300.2078053453006,299.7351400637999,299.49915417889133,299.8642333378084,300.70903858868405,300.7075372328982,301.62237204751,301.77211462520063,300.79394129570574,301.1467986102216,302.0436066025868,301.933661069721,301.6463647065684,302.27601761650294,301.30030172877014,300.316353159491,300.86393707292154,301.40993723319843,302.3118581934832,302.99448735034093,302.69690532935783,302.3010272490792,302.64886074513197,302.23696665186435,303.2044466906227,303.4322478212416,302.6462715282105,302.4754032320343,302.7349113007076,301.90692886244506,301.1086662551388,301.17301450576633,301.6842113258317,301.1878060535528,301.2364211403765,300.94385492708534,300.9761172081344,300.99054972594604,301.13656139653176,301.494472110644,302.42096886457875,301.4436899968423,301.70430490281433,300.8401206000708,300.1115397210233,300.85447612032294,300.5358770573512,300.4192962660454,299.45844467310235,299.068231087178,298.4602534221485,298.39683127077296,297.7392005403526,296.7718380810693,296.69348873430863,295.94575392641127,296.37254822812974,296.6422305246815,296.11553240194917,295.87935960572213,296.1579191465862,296.8273580893874,296.7439540377818,296.64550673915073,296.7384864417836,296.779156901408,296.836697364226,296.2749883723445,295.386841267813,294.5818681777455,295.37326240492985,294.53065314982086,294.5415438073687,294.441605926957,293.53937331261113,293.60146288992837,294.2076203743927,294.48443208867684,295.4403819348663,296.15422307979316,295.8232964943163,295.722308723256,295.2289247731678,295.04617851180956,295.1306787575595,294.56296157930046,293.5913804471493,294.13479612674564,294.99092033458874,295.8317497950047,295.9429522152059,295.3467956157401,294.57591353170574,295.22395834093913,294.90238772006705,294.30067274114117,294.3654931471683,294.8447610703297,295.77721569733694,295.6788133820519,295.1445530750789,295.6298138112761,295.8893067734316,295.9233041475527,296.35043433588,296.541441175621,296.9481463674456,296.44009461952373,297.24004661664367,296.79678540909663,297.4616174628027,296.7940209666267,296.4469688194804,297.3186556221917,298.06626994442195,297.30649982066825,296.85263709165156,296.6572452704422,296.50239209877327,296.9850096497685,296.89260579645634,297.73231064900756,296.8850668948144,297.5241810679436,298.1603188002482,298.8587685977109,298.022531082388,297.02594035631046,297.28388126939535,297.45396380871534,298.45118433702737,298.4102477780543,298.416232525371,298.51506357314065,299.1770300986245,298.35493986308575,298.86879464564845,299.4758866741322,300.233067474328,300.2124586850405,299.69219032209367,299.2945056031458,298.32960441662,297.4655954069458,296.50409002089873,297.4183021457866,298.2201963174157,298.682576417923,298.6090101678856,298.09937721816823,298.83968446124345,299.7212491701357,300.59070370392874,299.9299841308966,300.76578826643527,300.50589072238654,299.80624982574955,299.98439449397847,300.0244223042391,299.8298908122815,300.52390400040895,301.18025327147916,301.38853454310447,302.04884649673477,302.40644336119294,302.35237763728946,301.94839492766187,302.94513993151486,302.56220146873966,303.01609157491475,302.38927772594616,303.2674974873662,304.22395418491215,304.1061035101302,304.3406629455276,304.1492437887937,303.4468938848004,303.2593621853739,302.8887440143153,302.55137846432626,302.19101223535836,302.80099539551884,302.8291246779263,303.27170668169856,304.16293321643025,305.02543432824314,305.22736504115164,304.3898640945554,304.82450084621087,304.3964119432494,304.61148291127756,305.2276836275123,305.1787602994591,305.9005994601175,305.0908949151635,305.48133370652795,305.9072662424296,305.44482322921976,305.58344498695806,306.0598401767202,305.2291864976287,305.3007420934737,304.8126358068548,305.6352516403422,304.6358559015207,303.76629564212635,304.25053441664204,304.7047624941915,305.44596050772816,305.04979680571705,305.49824298126623,305.1023579291068,305.5753755364567,305.8766314415261,305.6405947711319,306.0462082787417,305.0568454293534,305.4036078955978,306.0130253667012,306.8869199906476,307.42334939492866,306.457727576606,306.5535065056756,306.0453175716102,305.36015866789967,305.7583159748465,304.84943815274164,304.27293347381055,303.82705123210326,303.21512544807047,302.4190760469064,303.1090548764914,302.83748191967607,303.0017942627892,302.3052474153228,301.41339437058195,301.94373022345826,301.3036288563162,301.26886843377724,301.5522191207856,302.3563990490511,302.2762966733426,302.5021574883722,301.8718277211301,302.38756583072245,303.2979418844916,304.28073690319434,304.3787147914991,304.46459780307487,304.79082455299795,304.26654917001724,304.2583044064231,305.17430458171293,304.23012261651456,303.437488200143,302.51736882003024,302.4119981867261,302.5418716077693,302.69853088632226,303.56302158068866,303.9482567817904,303.38040554430336,302.7697477815673,303.48782330565155,303.53819979634136,303.6847005537711,304.3180053066462,304.6960472683422,304.5183375691995,304.87323138676584,304.7661746800877,304.89057549787685,303.8991721374914,304.7148130252026,304.31586075248197,304.3572292570025,304.98419923335314,304.97467660624534,305.25607860507444,304.5470619443804,303.60137258656323,304.28170527517796,303.44809109391645,303.2383054308593,302.8532065949403,301.969810590148,301.8805941492319,300.9017798337154,300.54356486164033,300.0338509315625,300.0123615274206,300.0104559529573,299.25821907259524,299.1592256319709,299.23415378760546,298.7597546223551,299.26707869861275,299.3952074274421,298.43728174315766,297.4483075356111,297.3115631490946,296.3926179963164,295.64809812325984,295.11387915397063,295.2257944899611,294.9428485124372,295.0936993476935,296.078520453535,296.79650574177504,296.05383162014186,296.00599216809496,295.24294876586646,295.39454031642526,294.65487266145647,294.07128526782617,293.4972176104784,293.56245812401175,294.16079131281003,293.6141817262396,294.2667624410242,294.38390494091436,295.34566063806415,295.5025128815323,295.8373895660043,295.47664382727817,296.37842053268105,295.7285040682182,295.417181762401,294.9253067653626,294.9420198267326,294.1629956862889,293.41860633762553,292.830673370976,293.50735896313563,292.9609321653843,293.2330761416815,292.4404046800919,293.24342267401516,293.713991031982,293.36313586868346,292.810363673605,292.87412644643337,293.0115706450306,293.0646774498746,293.71388435922563,293.65463986294344,294.03705429285765,294.3606206863187,293.5644138706848,293.5608131913468,293.95327518321574,294.8246567789465,295.8127855374478,295.62055286811665,295.4437059238553,296.3783294297755,297.29182910267264,297.9242514669895,298.6935839364305,297.950114776846,298.33787760464475,297.608581692446,297.6977727157064,297.3490179874934,296.6691286447458,296.7852139468305,296.0660004406236,296.5941399903968,296.409879068844,295.5812397291884,295.4563090549782,295.20682730618864,295.29650287516415,295.6771602369845,295.9455197886564,296.8693021014333,296.42595386505127,296.4345464534126,296.9488916215487,296.17147728661075,296.1538021834567,296.63988095195964,296.6040526032448,297.0219971006736,296.3732739370316,295.73975107446313,296.45369542902336,296.7825755234808,296.2724220175296,295.4457126362249,294.939008989837,293.9557169927284,292.9594341679476,292.34755668835714,292.75240746326745,293.6863505062647,294.0842131548561,293.5021962239407,293.54077931540087,293.3176261098124,292.54064859310165,292.51633906178176,292.7819740544073,293.1271539386362,292.97829980542883,292.76733266189694,291.8089161887765,292.339866662398,291.8099732603878,290.89836891693994,291.6031497013755,291.22423042776063,290.97355517651886,290.7387184542604,290.4636878031306,290.4259514035657,289.5589033984579,290.0960803576745,290.8550800983794,289.8636256707832,290.6870679692365,290.664446615614,290.3378212531097,289.5209232461639,289.4888504720293,289.5498782885261,289.18928406341,288.21249124826863,288.605089914985,287.752608589828,287.3685181825422,287.0994523316622,287.4439716390334,288.1027570939623,288.56329402467236,288.75308133196086,288.93144378019497,288.399879607372,288.86743217427284,288.549375818111,288.51136690331623,287.7885220516473,287.09711937606335,287.19141012988985,286.86468916153535,286.38304308988154,287.3156289444305,286.62187180435285,286.2631827890873,286.08949987450615,285.59653754998,285.77610914735124,285.46885515283793,286.10837438097224,285.7543021631427,285.69484381750226,285.7331395423971,285.87755739083514,286.0486701647751,286.0303454948589,286.5681645795703,286.0069705643691,285.9796242364682,286.75186777161434,285.972632647492,286.31721900962293,286.0418647406623,285.5987802390009,286.3405148885213,286.2899696137756,285.8882305449806,285.95230298954993,285.5606150738895,285.1067025628872,284.92616519518197,284.6997729120776,283.74150544498116,284.4811875866726,284.109616369009,284.28089463245124,283.4643131219782,283.8292748592794,284.73457103734836,284.22356055444106,284.186073935125,283.7742912629619,284.0533222844824,283.985791658517,284.2124611712061,283.9577923086472,283.5530178649351,283.6329054874368,283.4308790108189,282.9663098715246,283.1605743812397,282.50517029548064,282.185010466259,281.26136891543865,281.1929121892899,281.8083511479199,281.97344951238483,280.980110028293,281.97203354304656,282.21943372068927,282.05727055436,282.895229795482,282.2271368391812,282.1137792118825,282.4272052976303,281.44972622347996,281.0170468534343,280.1707526296377,280.5459606437944,280.22073679603636,280.7975738584064,280.6499065179378,280.8088794024661,280.4134797337465,279.72974371910095,278.94434574991465,279.13146259076893,278.5715995267965,277.7362049757503,278.17729646572843,277.9265967789106,278.65626207133755,278.8486785986461,277.9352688258514,277.848334108945,277.62652376666665,277.9534235391766,278.63114335155115,278.8771112281829,278.3775657173246,277.8892335202545,278.69910782715306,278.3422900317237,277.4770531337708,277.58596126781777,276.9014651426114,277.67686611646786,278.6035972358659,277.74320639669895,277.27429645415395,278.07071900507435,277.66558221774176,278.28677850263193,278.28516033431515,278.07233107229695,277.34875011770055,276.6903925752267,276.9191549345851,277.73233955493197,277.6763680623844,278.35038048634306,279.1431894651614,279.930476046633,280.5068243131973,279.9411889235489,280.3167703868821,279.65076433774084,279.63238372746855,279.05958692450076,279.5023522907868,279.3822026271373,280.35336895613,279.8952259896323,279.27523927856237,278.5124183543958,278.19791454821825,277.6025379821658,278.2687520557083,278.6712914467789,278.9304656656459,278.9819394615479,278.1061892178841,278.32134208409116,278.65385244460776,277.9806603677571,278.6026513595134,279.14313645334914,279.6370400018059,280.1803698982112,279.56316383043304,278.6156486812979,277.62571971304715,278.33824047772214,278.33782136486843,278.1442255778238,277.74340049689636,277.9859354267828,278.9278361648321,279.4501830670051,280.437859358266,279.59785498073325,279.3144119712524,278.85049627674744,279.79255275288597,278.82964299758896,279.4686893350445,279.67130804574117,280.13133901776746,279.6718674423173,279.32165251951665,279.10486777033657,279.2611811342649,279.6462608361617,280.44790354929864,281.4139988417737,281.75618684245273,281.95776680810377,282.65425815433264,282.6533536091447,282.9386978726834,283.0512647447176,282.51176025765017,282.00051821256056,281.47217492200434,280.85298845451325,281.48877023672685,281.40186782181263,280.79082187777385,279.88507005758584,279.385474383831,278.5502244606614,277.55819905828685,278.2708873297088,278.70371566852555,279.4802426882088,279.2578979819082,279.1474187592976,280.07684298977256,280.35941681684926,279.52591848839074,278.785610249266,278.6124099823646,277.9208942060359,277.8862402876839,277.19131467631087,276.5294170421548,277.2209392399527,276.86186509160325,276.80155843589455,276.76025753095746,276.6191002721898,277.52728899009526,278.1857774844393,278.96138050127774,279.62028740439564,280.578063021414,280.54505146015435,281.4955297843553,281.308097676374,282.29934126418084,281.8049165457487,280.84677308192477,281.8252392495051,281.6233363710344,281.1573864785023,280.89808371430263,281.0293718287721,280.9549632924609,280.45809439755976,281.1502289590426,280.19029163196683,280.63525655819103,279.67189159663394,280.4758877446875,280.8854674664326,281.6147318473086,282.2530172378756,283.128857169766,284.06495130294934,284.2709774603136,283.62895941967145,283.8899274407886,284.4237619508058,283.61719533149153,282.6888294238597,282.7367854770273,283.35952178249136,283.7371107409708,284.1517942924984,284.54274382209405,284.517464723438,284.3459583581425,284.14371908362955,284.8376960065216,284.70135626010597,283.88850865745917,284.70002608560026,284.08237060299143,283.503778912127,283.3454084205441,283.6342787318863,284.56741018779576,285.473686249461,286.15254040202126,286.0793299921788,287.0034406729974,287.1922494415194,287.42384825693443,288.3580100564286,289.3070273655467,289.86923368507996,288.87545577809215,289.5931014716625,290.3618897725828,289.86521437671036,289.00605674739927,288.44583726720884,288.0263311434537,288.30175085319206,287.6861465149559,287.5731088332832,287.1648575444706,287.21934665134177,286.330609976314,286.7080580079928,286.97009164327756,287.4644097122364,286.8994868500158,287.2814905298874,286.7515856665559,286.07676255330443,285.2059448310174,286.1507353861816,285.42071618465707,285.91864017536864,285.8053999701515,285.2447943962179,284.28905423684046,284.8179634665139,284.9289434021339,285.84772568708286,286.04989403206855,285.66863201232627,285.9354069959372,285.30047146230936,286.0790958655998,286.2644036435522,286.8158645522781,285.99426882434636,285.2795357401483,285.6458006715402,285.64342990657315,285.6093612345867,285.27842986863106,285.92177442926913,286.0836911168881,285.58835535496473,285.00439557572827,285.065503149759,284.30897119129077,283.52747724810615,283.25497588934377,283.37013700790703,283.17098017875105,283.21729141986,283.3301964243874,282.7738714804873,283.5348108285107,284.21130932541564,284.6695358613506,284.6093625309877,285.1033094241284,285.72624671598896,284.76884326711297,284.32568558491766,283.69229805422947,284.4859986449592,284.64862487418577,284.24663127958775,284.1990381372161,285.044570508413,285.7278220662847,285.703693700023,286.4446652424522,286.8075470821932,286.7345301071182,287.0480540692806,286.1646915511228,286.1521063875407,285.5074687721208,286.17449344694614,285.74664331041276,285.4307221197523,285.2362422919832,285.3582483669743,286.234809176065,286.23089746851474,286.11135217454284,286.60045761521906,286.1299667088315,286.73299089167267,287.003790771123,286.0925891227089,285.4621737538837,284.6421443861909,284.5249999342486,285.11543162819,284.89696847554296,285.33175088558346,285.3290881700814,284.7635379121639,284.3030219981447,284.84459660295397,284.6495273495093,283.885781169869,283.0937160900794,282.3096673870459,281.6910625821911,282.38258424634114,281.8705941098742,282.77885761950165,281.84084988897666,281.42096475092694,280.9420801936649,280.60391459660605,280.36083199316636,280.4999035419896,279.573342428077,280.26714316615835,280.9749823012389,281.53752195555717,280.80224336637184,280.49408171419054,279.50679712742567,278.5284466566518,277.64018983207643,276.75408903788775,277.62311753770337,278.0116841089912,278.96125025767833,278.24091553036124,279.22605849057436,278.8136109816842,278.9876496787183,278.1894321399741,277.6496707480401,278.1883603441529,278.3136727316305,278.95646975794807,278.7438014992513,279.2206003894098,278.8457220159471,278.7059261780232,278.5051716598682,279.2515001646243,279.3880574256182,278.59953554160893,279.4430500213057,279.2245095875114,280.0222570342012,280.7360516837798,279.83399188378826,279.5334092210978,279.8068594317883,279.4550694124773,279.49416679656133,280.2649165643379,280.5306661906652,281.515372721944,280.51984947547317,279.82876940863207,279.18155695917085,280.0354414661415,279.04370282171294,278.26414004247636,279.13557703001425,278.1499562896788,277.98179358989,277.44028096599504,276.67819904955104,277.6589057855308,278.0119864838198,277.9182360130362,278.2722545750439,277.4530658433214,277.25092553254217,277.2759428722784,277.2675250140019,277.4164955136366,276.94791353540495,276.1094795912504,276.04358550766483,275.9879492786713,276.6678212620318,275.6991793178022,274.72887091478333,275.38872018968686,274.7603985792957,274.526857345365,273.701638859231,273.5119737670757,273.97822323348373,273.72183121647686,274.23117397213355,273.80692746210843,274.05848194425926,274.75790133094415,273.87054742267355,274.80807513790205,275.1571422512643,275.18900249386206,274.3001551255584,273.6090534962714,272.8059636959806,272.8848944581114,272.92030455730855,272.42999452073127,272.52961391350254,273.4836635827087,273.4411521218717,273.02204243885353,272.26548805553466,271.4990697526373,271.1117982296273,272.09314602520317,272.02691283402964,272.08410369604826,272.11587026994675,271.6782994470559,271.43600183865055,270.4612205144949,271.0312460223213,271.01278805034235,271.54886086378247,272.4807969639078,272.5323730977252,272.15254095569253,272.28065102593973,273.1525372620672,272.30756264040247,272.7311861189082,273.71911491826177,274.62100660521537,275.58412816608325,276.5079599702731,277.4952300717123,276.79498847341165,277.59286298044026,278.15681128995493,278.5696810204536,278.2329213763587,278.6817975700833,279.12408242886886,279.5200211685151,280.0754201528616,279.1450249631889,279.9195146197453,279.94241923838854,280.75145343132317,280.5432549682446,279.7017201525159,279.5417753881775,280.3712602267042,280.32121226983145,280.0442110048607,279.99944598646834,280.54756856616586,279.80937972385436,280.58765390794724,280.68499679211527,280.2662101332098,280.576673542615,280.45990503253415,280.2139725028537,280.40439789695665,281.1032495191321,281.5651660449803,281.70881923288107,281.22535741887987,281.5638485495001,280.9787558657117,281.2897459776141,280.70115119591355,281.1905127936043,281.47392109874636,280.4748254981823,280.78806729707867,280.1849210318178,280.76987446658313,280.2829933464527,280.16610530763865,279.8583044842817,278.954506308306,279.7895762119442,279.0608245842159,279.1454284377396,278.8880515289493,277.9054103102535,277.79924521548674,278.5340020833537,279.52828278392553,279.6906351814978,280.14859429746866,280.7954687108286,280.43366189626977,281.34176356345415,280.50936888949946,281.08826027438045,281.8603982417844,281.2844139402732,281.92329600453377,281.6098022595979,281.76151291513816,282.4377919747494,283.06750300433487,283.9983456507325,283.63633364858106,283.1566489553079,282.19136816775426,282.5378576805815,282.9113738462329,283.79097882658243,282.90813948214054,282.8910792795941,283.7267206283286,283.7677176431753,283.6172230648808,283.7132047149353,283.2668378474191,283.0118359536864,283.31570994853973,282.8103448138572,282.65344584640115,282.8027344746515,282.7859599101357,283.68788852216676,284.14857229823247,284.2078641951084,284.1476496499963,284.94937540683895,284.1909963218495,284.710953715723,285.1092427331023,284.8713169810362,285.7049478669651,286.3299908670597,285.55812354711816,285.55346151581034,285.2590342881158,286.1086676674895,286.63525978382677,286.0301477536559,285.5722993016243,285.5040744673461,285.5891198804602,284.7577839582227,285.0861133588478,285.7936050030403,285.79669517930597,285.87887680903077,286.0792269348167,286.640793856699,286.4108347967267,285.92002995172516,285.73264611233026,285.0421780506149,284.20242585102096,284.57947470713407,284.19560805056244,283.7002157056704,283.20005997736007,282.9125460591167,281.95107743004337,281.2122048009187,280.3097431799397,279.9291624738835,280.0660568876192,281.0612726556137,280.16536773974076,280.05131337046623,280.0870728730224,280.6713838884607,281.3619324658066,281.5791582749225,281.84728486370295,281.2613847660832,281.53843520302325,282.22327536158264,281.2730639753863,282.26681801117957,281.4745349464938,281.95356608368456,281.4810974053107,281.08967328071594,281.34527633478865,280.65951611148193,280.6619078568183,281.3806527792476,281.47590797394514,280.6629786333069,280.28502697730437,280.6386146135628,280.4597599529661,280.416889000684,281.1407168963924,280.4225011598319,281.0824509174563,280.63186067994684,281.3498305515386,282.29725375724956,281.4559274613857,281.25088113266975,281.01244519930333,281.7736594970338,281.1115203043446,281.84843404078856,281.26116997469217,281.03446372644976,280.4329071100801,279.7393889632076,279.0693787895143,279.00594838662073,279.91422156384215,280.55446594394743,280.01897939667106,279.53305776277557,280.2679249686189,279.8757292400114,278.9629033925012,278.17992133507505,278.1936386185698,277.7676358143799,278.73795838840306,278.4102892940864,278.9220804888755,278.5453792428598,277.5668193693273,278.2188980267383,279.19569577556103,279.09352753777057,278.82360595976934,278.0312435757369,277.35469065373763,276.66267336532474,275.7543316804804,274.88333640107885,274.70448529720306,274.90568963764235,275.7830973905511,275.3433494078927,276.2953295693733,275.367612273898,275.50548992678523,274.9015353997238,274.7205601958558,275.1600495520979,275.2396032414399,275.1714786416851,275.3436541534029,275.43679074849933,274.87914736615494,274.7762248911895,275.2161419726908,274.48228328628466,274.41802729526535,274.51100584538653,273.8333861879073,272.9406561134383,272.13480213237926,272.00664765993133,272.7382603697479,273.55966735119,273.97743237484246,273.2704019257799,273.98875292018056,274.2142485426739,274.9752288167365,274.6922767502256,275.01223832555115,274.17353379167616,274.6979691241868,275.56949040619656,275.67410758463666,275.53927822224796,276.4245558716357,277.1580916545354,276.62780796922743,275.6629120549187,276.24253755109385,276.7517001531087,276.60797648783773,275.9128578212112,275.29682405712083,274.56530571961775,274.77310573495924,275.6547731566243,275.6140459594317,275.9433510005474,276.40103444457054,275.6648325305432,276.3660762216896,276.4657190218568,275.9859337778762,275.3828811473213,274.9297952312045,274.78809276316315,273.8073411169462,274.43047176487744,274.5441172923893,275.0728230285458,275.66700751520693,276.1095316973515,277.1058566062711,277.38558688154444,277.67435900773853,278.5805386453867,279.5792982010171,280.2640188788064,281.1923103714362,280.5279646315612,280.7952501960099,281.268055528868,280.79192006075755,280.1993007012643,280.4545660247095,280.81636291975155,281.13108072290197,280.16237183334306,279.5070455148816,278.57219648966566,277.83762665558606,278.5157561697997,278.11670478014275,277.4014250119217,278.0570483659394,278.7933650673367,279.44914558902383,279.56188183510676,279.6493665180169,279.22913341550156,280.1466339826584,279.1674616676755,278.8282116665505,277.96346735814586,277.75330795301124,277.00488038314506,277.7440757751465,276.74775434983894,276.4015386388637,277.1691780798137,276.4955656444654,277.2775403964333,276.7266784054227,276.13151262467727,276.4672156316228,276.6364672272466,276.1882866653614,276.0859394557774,276.5389265054837,275.95758565934375,276.27959624584764,277.15028406959027,277.25367328478023,276.3812458491884,277.022931993939,276.77464863844216,276.88607582403347,276.69111170526594,277.54587562475353,277.59661872824654,276.97025694930926,277.19861720269546,276.39130428479984,276.7535651982762,277.3227248885669,277.67811579303816,277.7334486367181,277.233670482412,277.9547464628704,277.3048420259729,277.00210653524846,276.358501768671,276.9196652825922,276.56095506995916,277.5067975562997,278.39874443784356,279.1181386420503,278.2515547182411,278.11933489423245,277.4240139555186,276.5983913578093,276.1049621682614,275.81837921589613,275.45531645277515,275.88452712772414,275.01811533467844,274.409835905768,274.37704383023083,274.91452265065163,275.39632956450805,274.429163178429,275.19360435102135,275.52099729608744,275.3474366692826,276.08653647406027,275.4856497431174,275.7209548628889,275.4356206324883,276.41466552438214,277.23613351397216,276.25352770928293,275.65007400652394,275.423110535834,275.1542693306692,276.0352728017606,276.53615662036464,276.6986851631664,276.772503899876,276.87983146542683,277.414785456378,278.2197827901691,278.75375878764316,278.1427682042122,277.16016523819417,277.13897141162306,277.384908631444,277.1084157358855,277.32823081314564,277.5175511352718,277.1361629446037,277.70166019164026,277.574086218141,278.48724119225517,278.84398240968585,278.9115574536845,279.58181676408276,280.1906000385061,280.908761350438,280.95619854098186,280.78460180200636,281.09829142689705,281.17746607307345,281.27235967153683,281.5439416700974,280.621653821785,281.24001804180443,280.8153168237768,281.38416592637077,280.7611727975309,280.2424905882217,280.7155051929876,280.51409443980083,279.73270940221846,280.5949947149493,280.882422064431,280.35217572236434,281.2038675304502,281.1420777500607,280.203156220261,279.96700326306745,279.2842451441102,278.4566522068344,278.6464568017982,278.7412511254661,278.50953382160515,278.9116919785738,278.75413305079564,278.4765841853805,277.8054617261514,277.4164890307002,277.5775300581008,278.1448040260002,278.5586657859385,278.0317800990306,278.0507585401647,277.41454541729763,276.43513446394354,277.33876177761704,278.18077551200986,277.7607577824965,278.3454566667788,277.5892255618237,277.65346170635894,277.6693864101544,276.7197865564376,276.1992454510182,275.6589805157855,275.23682349314913,275.6738859019242,275.631292833481,275.689781752415,275.6034098691307,275.87522515980527,276.0560099533759,276.25078775640577,275.67056957352906,276.01986822346225,275.1407368378714,274.9439774043858,274.1569084636867,273.3265501288697,273.05934054171667,272.86878218408674,272.30606225691736,272.48069800343364,272.34884961601347,273.24788806959987,273.01229258906096,272.01412616996095,271.8969087623991,272.21654154732823,271.2795266928151,271.7892898321152,271.6429011821747,272.15108711924404,272.79420680366457,273.6314903977327,273.05854132957757,273.14057135768235,274.0805526440963,273.50900806626305,272.8516185525805,272.0858040144667,271.7385515803471,272.1355278743431,272.0554003934376,272.6077826670371,273.57472588168457,272.6297748819925,273.3599465531297,272.6114797689952,272.31595642631873,271.7049102243036,271.8818881451152,272.11614566110075,271.74021811410785,271.3165834634565,271.13027059007436,271.8620353634469,271.2387495646253,271.7061772188172,271.6463168086484,271.4916459172964,270.7773629827425,271.10494595440105,271.13557625655085,272.11004903307185,271.3926695799455,271.86582623794675,272.2142626629211,272.57299482403323,272.940282874275,272.4226139970124,271.55232837051153,271.9387935847044,272.39708757959306,271.5916391047649,270.6671151458286,269.9442296992056,270.34301111195236,270.49925199104473,269.9752138131298,269.5388053250499,269.1073604412377,269.04824814014137,268.48651892039925,267.57377835549414,267.17066989513114,266.6115293712355,266.9169076611288,266.752901930362,266.4219789886847,265.4401846784167,265.0513314753771,264.35819307900965,264.80413034697995,264.6277747345157,265.000726765953,265.29728510789573,265.02460950938985,264.7262283968739,264.2766154692508,265.08269225340337,265.52196000749245,265.65855093626305,264.67646520677954,264.9534816350788,265.54426756640896,265.1375969280489,266.05255428981036,266.0192360780202,266.88035894185305,267.53596631251276,267.6265302039683,267.01682688621804,266.420592145063,265.52430170215666,265.74711954407394,265.30185560369864,266.0457882601768,266.38403825554997,267.1238702200353,267.3008250957355,267.602355950512,268.0246767317876,267.9005822301842,268.662334877532,267.95835805358365,267.4308110498823,267.4773213369772,267.77087485650554,268.1925275376998,268.71084628719836,268.6522617316805,267.85149502474815,268.253494807519,267.43407414341345,268.04175588395447,268.5749770058319,268.18120220163837,267.4285412267782,267.45871404744685,267.7651006602682,267.7580948956311,267.5770526728593,266.65432707453147,266.01196617865935,265.9202453023754,266.84732617251575,267.30545461410657,266.38243025448173,266.07714274479076,265.8919121758081,265.20695905201137,265.62865299452096,265.8105412200093,264.94186628377065,265.2685844297521,265.5556988795288,266.1527643473819,265.30682624084875,266.19170972239226,266.4024593331851,267.01542931841686,266.83986354758963,266.99799967883155,266.4914524243213,265.9943724893965,266.55994427530095,267.11447305837646,268.0381936877966,268.7435055007227,267.86479832138866,267.13597898045555,267.431630987674,266.4439836763777,265.9121851022355,266.8537766528316,266.85852092597634,265.877493978478,265.8199647539295,265.28060202719644,264.57214537169784,263.8759880545549,262.98442262783647,262.88561895443127,261.8858272950165,262.2117503625341,263.0833146236837,263.3387159453705,262.55118154594675,262.66286002704874,262.62837856961414,263.57742142723873,264.17036393331364,264.6094718785025,264.13868451910093,264.7306066090241,265.6036313986406,264.9130556797609,264.6548440330662,265.22156515251845,266.0822057109326,265.6862390274182,266.53226926364005,266.2978090569377,265.9527589608915,265.09084227122366,264.6922782305628,265.51242232555524,264.83834445569664,263.85786170046777,264.70723627647385,265.68471902422607,265.07810578588396,264.9771968633868,264.78082866827026,265.73739938857034,266.3736469177529,265.9250089516863,265.365656058304,264.7660623351112,264.9282445460558,264.06348776305094,264.40577994612977,264.9304885491729,264.0998144261539,264.1211446998641,264.4958523148671,265.48994501074776,266.1521873581223,266.8200098914094,267.17621857859194,267.18543324247,267.1704692360945,266.6433251304552,267.40462946053594,266.8966772928834,267.72929339809343,268.4616149645299,268.8658658163622,269.6107019810006,270.31754069123417,270.53737318050116,270.9837615163997,270.6474222294055,271.5067720278166,270.8394881039858,270.6739826267585,270.55479344539344,270.1901509575546,270.01389391580597,269.37087230337784,270.3673382620327,269.37989125959575,268.5480435080826,269.4524428858422,269.03930075559765,268.67559892265126,268.7603348288685,268.80464904243127,268.0402536294423,268.44110024301335,267.6695234240033,266.867078717798,266.7839035252109,267.5387079324573,266.7578929727897,266.53686108253896,266.33601636905223,267.14838666608557,267.0599379008636,267.5489847417921,267.2176851434633,266.7704279953614,267.72201588889584,268.28411296289414,268.91406623087823,269.0581168620847,268.58707041526213,268.1667108437978,267.6996581205167,266.7934083403088,266.49202106846496,266.53122401889414,266.3797362530604,266.5079834056087,267.18597156601027,267.97110089706257,268.20750415790826,268.3862088234164,267.5475450446829,266.93843999132514,266.4569861604832,265.99927093228325,266.00229924870655,265.7941032499075,265.6605536341667,265.640987356659,265.0707738827914,265.8424510168843,266.3351754345931,266.0063081891276,266.4789523105137,267.2782908733934,267.3055874579586,267.4170742747374,266.8406994957477,266.70534422202036,267.56902972748503,267.3928882055916,268.0357801388018,268.6901644417085,268.5746407569386,268.93724593613297,269.53717335453257,269.6889534597285,269.681530861184,268.8978497614153,269.47092714253813,269.19901289232075,269.3769122804515,269.1332949483767,269.83310841582716,270.2399665955454,269.88950873399153,269.9746450241655,269.3965557003394,269.3830362726003,270.24639298487455,270.81179614691064,270.72205346729606,271.48481342894956,272.4078924227506,271.75134441349655,271.374273349531,271.69110765727237,272.55741518735886,273.4159130086191,272.47426890954375,272.95055576507,271.98886834597215,271.7791407480836,272.5376866310835,272.82957740174606,272.27314848452806,272.69986101286486,273.65529198013246,273.58119424059987,273.01328332768753,272.5144820837304,271.94196871109307,271.65058118803427,272.40887924516574,271.7251036805101,271.00410273950547,271.82455861149356,272.29219657788053,272.2657459634356,273.19935425184667,273.289060886018,273.7313456404954,273.43817425053567,273.0281082079746,272.7160120885819,273.4914164757356,272.49147463962436,272.6181148230098,273.46152856759727,273.2249740064144,274.0892751319334,273.55349941924214,272.897654352244,273.2281704749912,272.39563170354813,272.20558157842606,271.99912108294666,271.57575996406376,271.8615606618114,272.1162692136131,271.11672072159126,271.9895191276446,272.19583952380344,271.82932242704555,271.0928216553293,270.39578430727124,271.34826013538986,271.99846925213933,272.9260487090796,272.1596310371533,272.11630867701024,271.2248903186992,271.79587078047916,271.5975397094153,271.9375561927445,272.5773025462404,273.15380452992395,272.47804445028305,271.6057548420504,271.54018102260306,270.8590337270871,270.4434095476754,270.6266801743768,271.12524023652077,271.7823427221738,271.5909948144108,270.8132113669999,271.241452452261,271.33354326710105,270.9514031303115,269.9944939361885,270.28474729834124,269.98413854977116,269.97671006573364,270.6819607503712,270.2383948848583,269.3032859074883,269.21198502834886,269.3092117346823,269.30671784374863,268.67531350580975,268.189500534907,268.66933829616755,269.18159470148385,269.9972071573138,270.1673991200514,271.15610722312704,271.94472183892503,272.3602347136475,271.6784979486838,272.55187248485163,272.9156258618459,271.9763410994783,272.28913012333214,272.291074403096,273.271098527126,272.4477060697973,271.65109258983284,271.9189738435671,272.2059901948087,271.9292899109423,271.77467363514006,272.5474512260407,271.98006301373243,271.75241426425055,272.6669782693498,272.86949493875727,273.44085805444047,272.6971169630997,272.4704193864018,272.3276776173152,271.40451723802835,270.98175248270854,270.3152031372301,269.6003292063251,270.19922953052446,269.3609700538218,269.9614686258137,269.3310086368583,268.9240472605452,268.8178329975344,268.85865238821134,268.5018187779933,267.81484119640663,268.0515016457066,267.7038571727462,267.25931976083666,266.7465063575655,266.7239796295762,267.28104176092893,266.7563209757209,265.8567095110193,266.2485566898249,265.63413246301934,265.96920738508925,266.42382168676704,267.2886743317358,268.03881931863725,268.1832073708065,268.7320904158987,269.15280510950834,270.06646649632603,269.109727664385,269.0581365278922,268.7921503377147,267.93649898841977,267.2976997066289,266.5440642689355,266.8098884318024,265.91330646164715,266.89235547883436,267.0120296133682,267.9798293611966,268.26974939834327,268.2658927603625,268.0231758682057,268.88123982585967,269.1002471363172,268.6454159640707,269.42562436079606,269.02970892144367,269.2039745124057,270.14961576880887,269.42368256207556,268.9426889610477,268.6599542610347,267.9372202800587,268.7525078658946,267.99538952624425,267.40279119974,266.7034029052593,265.95020864438266,265.77268022252247,265.2838031281717,264.404631848447,264.7785123786889,264.4816940021701,264.90742231020704,265.6462272605859,265.61163715226576,265.62222120538354,265.2958455882035,264.4730703579262,265.1389496996999,264.43349838862196,263.85305595351383,263.54543807171285,263.01706048008054,262.2416596147232,262.45537217333913,263.36041208636016,262.5871511865407,261.8615333819762,262.09491858957335,262.1038633878343,262.9502536067739,262.89021796220914,263.12991841044277,263.9258638396859,264.92339679412544,263.9541971399449,263.5593660585582,264.31352874962613,263.88887159107253,263.6465833862312,262.86211495427415,263.7332455678843,264.19207029789686,263.33300084620714,264.08456128509715,263.59936769260094,264.235186109785,264.8804172175005,264.70678274333477,265.3020454002544,264.5787416496314,263.78655162267387,263.1008566361852,264.06862253462896,263.81757358135656,264.80939801596105,264.55616169283167,265.04024813044816,265.1819285163656,264.6320806699805,263.6471122978255,263.82697045011446,263.4078385718167,262.5924100759439,262.48476584255695,262.2924728365615,262.7509324629791,262.2258225651458,261.78384684352204,262.1569697209634,262.896037300583,262.23864541808143,261.55132134864107,261.66237815329805,261.2338463673368,260.491484452039,261.2088044490665,261.38132539298385,262.1080752760172,261.4651954662986,261.44211847148836,260.927484549582,260.48211027495563,259.8830677252263,260.56768730888143,261.13635231461376,261.7609582860023,261.1351388543844,260.981114809867,260.3398275561631,260.31248014606535,260.6596139301546,260.73491208581254,261.39285442605615,261.5511590791866,260.64226444391534,260.6051513054408,260.68585722334683,259.754100819584,258.780618427787,258.8523009647615,258.75239262962714,258.0007746024057,258.14071622584015,258.18607578612864,259.0120868012309,258.21059997938573,257.2234747540206,257.06238134019077,257.70182426227257,258.59450071631,258.52084677899256,259.47608194407076,260.45183227956295,261.0417789267376,260.74245186615735,260.3343830802478,259.5329312654212,258.742534392979,258.1623735781759,257.20461601624265,257.99043443705887,257.1999734113924,258.1027956199832,257.59161168150604,257.6502583422698,258.3976755817421,257.9252113075927,258.18297916837037,257.5814453205094,257.78060058970004,258.1964605306275,258.8003169153817,258.46696536196396,257.51795164635405,257.6717660250142,257.1850033150986,256.27381251752377,256.0655031125061,256.41301950765774,255.59254910424352,255.3058431413956,255.82336500426754,256.6407912084833,256.5854614172131,257.54719288507476,257.36362401908264,256.5191146605648,256.00334727717564,256.1037612897344,255.13463028566912,255.020650240127,254.37722380040213,254.68489331984892,254.0159049909562,254.44023152813315,253.44652213528752,253.61512977117673,253.96343537978828,253.94951310474426,254.4917046627961,255.2546034483239,255.2348075695336,256.1823209570721,255.4908546851948,254.83921335544437,255.114373030141,254.46869617607445,254.53082547476515,253.70761687960476,253.6000134688802,254.5526716983877,253.7336393580772,253.91407375549898,254.32101396424696,254.8597576227039,255.4455737322569,254.93953388463706,254.29239525599405,253.8149512228556,253.5766036072746,253.89516760595143,253.82420755783096,254.03237237874418,253.5662107761018,252.86274584196508,252.02342142583802,252.67502441257238,253.08714087260887,253.86302540032193,254.45568655477837,254.80046495841816,254.7870777263306,254.07126878295094,253.52903432631865,253.92037771036848,253.5613420419395,253.40985920047387,253.6951581435278,253.39029210153967,253.36108440859243,254.2332707378082,253.59278942737728,254.34144485602155,253.48560272995383,253.58417169563472,254.24077440984547,254.05557932471856,253.43167138006538,253.77147728251293,254.15891635324806,254.09318627230823,254.8404823630117,254.04450955800712,253.599508383777,252.77642924617976,252.23115452192724,253.00292404880747,252.79223670903593,252.47194778360426,252.92976436158642,253.18438248476014,253.27209671912715,252.74194118659943,251.78921385481954,252.1020567798987,251.8658029716462,252.5407100650482,253.08920079562813,253.99117538472638,254.18260007398203,254.8641860918142,254.44774567103013,254.5920053590089,255.0594220161438,255.0426510567777,255.70534502761438,255.2442322280258,255.87753817019984,255.05817465344444,255.84717096667737,255.95786952832714,256.9356577163562,256.95760522875935,257.0629897583276,257.3610656694509,258.1176397004165,257.7828417858109,258.7519049234688,258.8128253016621,258.3309317952953,259.0581924682483,258.08153482479975,258.267420980148,258.0325437919237,258.4215335706249,259.24246604461223,258.83517230162397,259.3853987506591,260.12505414895713,259.93447518348694,259.17111127404496,258.2419878686778,258.9553221985698,258.95548959681764,258.5921768289991,258.6761564244516,259.5974243655801,260.2116603516042,259.6176399830729,260.1738567762077,260.2180083771236,260.4986301395111,259.8454926083796,260.7525866366923,261.2451787102036,260.2750703911297,259.451606282033,259.8805957464501,260.0008675348945,259.8843247438781,260.7528854063712,261.0791701041162,260.5249376189895,260.72179623460397,260.36707642953843,260.28168613044545,261.16501385485753,261.158451854717,261.9453821456991,261.45797043386847,261.3824383825995,261.918908870779,262.75551886484027,263.2601037649438,263.8820053981617,264.00179366441444,263.3056763750501,263.0106810601428,263.9909581639804,263.86858434416354,264.4737803195603,264.8360675559379,264.76562157459557,264.15385457500815,264.92393633769825,265.60460873506963,265.6357136024162,264.6892201816663,264.36642789421603,264.9614967019297,265.49762413371354,265.3177497810684,266.2901134346612,266.43049319274724,267.12141427444294,266.6217026626691,266.311509268824,266.5674432720989,267.15329487156123,266.3772980235517,267.3070953809656,266.9339975579642,267.85539602395147,268.0602041021921,267.14344091387466,267.28584383334965,266.6869290182367,266.32774494821206,266.49007789231837,266.4037498701364,265.9800440315157,265.10404875082895,264.9386269492097,265.07708204491064,264.5558447721414,265.00464302441105,264.9432396818884,265.43449002923444,264.49687520461157,263.79575084662065,262.8003296623938,263.7624504799023,263.9176832367666,263.60714305890724,264.5195930134505,263.81216666148975,264.5087919351645,264.4890906489454,263.6458945060149,264.12441623350605,264.4244303815067,263.70522751193494,263.0971858622506,263.7928422773257,264.08517975965515,263.6921630115248,264.0658263107762,263.1922618569806,262.22476878156886,262.89857968874276,262.88829722441733,262.864592585247,261.94782135635614,262.7340052421205,262.242676097434,261.9760181955062,262.139119470492,262.091886092443,262.5931981173344,262.6446794378571,262.6208155252971,263.5072785373777,263.74229108309373,264.47207830194384,265.28457499016076,265.14100572280586,265.24250911735,264.86875536013395,264.5970121747814,264.16370031097904,265.0066316262819,265.7569822012447,266.1925995578058,266.98706968547776,267.0964334155433,267.2474736943841,266.53352916706353,267.05400282423943,267.89775986084715,267.79293775744736,268.50117465946823,269.4736417895183,268.86695380322635,268.289739374537,268.6603258489631,268.52537200646475,267.84939491469413,268.5325102126226,269.06876145256683,269.8227915992029,269.06582688121125,268.9695366229862,269.6812024442479,269.18217827007174,268.6216658358462,268.20583662576973,268.0527828722261,267.7913372586481,267.55563557101414,267.5988130867481,266.92644223663956,265.9350619558245,266.07928556995466,265.6174662052654,265.98613005224615,266.27141364850104,266.5935351960361,267.02409822074696,266.5429279082455,266.9205091348849,266.16468155104667,265.3032008782029,264.74203873286024,264.3831933969632,263.9214211432263,263.8493998674676,263.9120336663909,263.76490778476,264.32084482582286,263.6558471368626,263.8895039940253,263.07663894817233,263.51546673104167,262.6125671234913,262.17818049760535,261.6034592888318,260.79021348105744,259.98231880553067,259.2790647163056,258.9755326388404,258.04274237388745,258.8762349183671,259.4324454241432,258.6619764752686,258.9351899395697,258.2101335665211,258.69146578526124,259.07874705223367,258.5116386837326,257.6768299820833,256.997071584221,256.57141966046765,257.12383584305644,256.85424667038023,256.48388963146135,256.90846497099847,257.81122250808403,257.5103965420276,256.79027173900977,256.2172652366571,256.9394181538373,257.2820591563359,256.63559602946043,256.83317683823407,255.999144022353,256.56720470590517,257.53738069254905,258.3488412844017,257.83564981864765,257.29491108097136,257.88866603467613,258.2866139607504,257.3294913773425,258.11521398928016,258.3663858678192,257.6129319742322,257.27884325711057,257.19968579290435,256.7051731827669,255.87723104748875,255.47994226776063,255.19982095714658,254.31175243668258,253.44161960994825,253.8221396948211,253.14215383585542,253.8398841121234,254.1094980495982,253.49787621432915,253.78948926972225],"y":[185.59004091657698,185.82771696103737,185.58714914228767,186.04571036295965,185.757914184127,185.06001389632002,184.90740030445158,184.25376906059682,184.7088016802445,184.44613554468378,184.2502369931899,183.65342878270894,183.81435013422742,184.2204407285899,183.8135579135269,184.57676099939272,184.20822713617235,184.1851125122048,183.66991678019986,183.38201828068122,183.74627920333296,183.8758039767854,183.14714670553803,184.09547033254057,184.31982342107221,184.67826672410592,183.7391166961752,182.81579740997404,181.8437652522698,182.57462054258212,183.19229627540335,183.10027186851948,183.55731278052554,184.37910035671666,185.02980617713183,184.7824724582024,183.84619843401015,184.17517161834985,183.2634905418381,182.4701554584317,182.99911760818213,183.1835492812097,183.5072578783147,183.14605980971828,182.51232789317146,182.86234416626394,183.2908656578511,183.64018154051155,183.09340498270467,183.49618297675624,183.1705516190268,183.1308644656092,182.4970724862069,181.8115003942512,181.35791898239404,181.388635661453,182.3385084667243,181.92080596275628,182.51051750732586,181.59850322455168,181.7481284076348,180.8999524586834,180.77621033694595,181.02116700448096,181.2212822912261,181.33696889225394,180.75882465112954,180.48307533655316,180.3640139377676,179.94689402449876,180.28306203102693,180.55916470382363,180.9767704452388,181.89098664512858,180.94039189675823,181.5212590075098,182.35058242222294,182.42574666067958,182.04200650332496,181.66865242971107,180.9233550336212,181.37033354723826,180.65448272321373,181.04983377549797,181.0658212872222,180.47702674986795,179.49129861500114,179.69751311978325,180.10607758071274,179.77921787882224,180.06997690536082,179.17567776469514,178.6663441909477,178.13801539642736,178.53675815928727,178.65637533832341,178.02352353418246,178.99989446485415,178.61397684784606,178.68651042226702,178.6211022604257,179.54715759679675,180.3118967777118,181.2295260843821,182.01798722613603,181.06974428193644,181.11542783025652,181.81818548124284,182.35955904005095,183.2760430406779,183.4503396251239,182.49058293318376,182.0698683229275,181.9772871863097,182.3487984240055,182.6129269017838,181.62052302528173,181.6021907743998,180.61119178915396,180.02819777093828,180.65905821463093,180.82770336745307,180.48615081096068,180.04556801030412,179.83540505729616,180.35079350229353,180.74193814164028,181.38350871019065,181.69482223782688,182.31393884215504,181.99851843481883,182.70019939914346,182.61084600305185,182.75644539296627,182.36999975843355,181.7867096508853,181.92896966310218,181.98153316648677,181.65641373815015,182.54777344688773,182.74961952818558,183.04164874507114,183.48349881591275,184.13685999950394,184.45282212737948,184.5115176141262,184.62356719793752,185.2505198647268,185.4732225909829,185.54664932889864,186.29192346846685,185.82033175230026,186.61575620248914,187.3234293437563,186.76192498626187,185.94029130553827,185.91326251253486,185.89713389379904,186.64966129604727,186.22724309004843,185.36291502788663,185.37448657117784,185.3431997508742,186.27749058557674,185.64514168305323,186.40824141399935,187.36909555410966,187.94545590272173,188.66101381741464,189.32454535877332,189.00493794865906,189.54489929927513,189.97915619192645,189.21368656260893,189.0014460082166,188.9645984703675,188.42072346433997,188.96776103135198,188.23214782075956,188.5574409030378,188.00999254500493,188.76496934052557,188.52242713654414,187.74614547984675,187.47326649259776,186.8882600106299,186.03460007486865,186.5708593991585,186.91008666018024,185.995573526714,186.02685653651133,186.07623991230503,185.19262343784794,185.06565794348717,184.26129898894578,184.29420871054754,184.947341945488,184.49292750796303,184.07600120035931,183.3777793608606,182.75830659270287,183.2164655388333,184.0259816814214,184.51427411753684,184.31894794199616,183.9344106647186,184.17478158604354,184.6104680430144,185.33740808814764,185.34490926004946,185.26722438447177,185.2710648109205,185.64776202337816,185.69267077045515,186.47955700056627,185.99958697753027,185.76809241250157,185.58115983754396,185.85472564818338,186.5570166548714,186.04217777727172,185.65766484010965,186.19148903433233,186.1412425255403,186.10534562030807,186.87203805614263,186.11377140134573,185.52257119538262,186.18816578714177,186.8049463732168,185.8947191927582,185.90661272173747,186.1258658641018,186.15436653234065,187.11150646116585,186.83210467267781,186.32286200346425,186.23183218669146,186.07053815061226,186.46567191416398,186.34830910991877,185.68535113427788,186.47720381431282,185.80922596389428,185.69988402025774,186.31695738062263,186.75722050853074,185.84665734507143,186.03463421668857,186.11768280994147,185.54523247061297,185.19878090918064,185.04277563700452,184.09794233366847,183.96302182832733,184.59286484867334,184.56331991264597,183.74068586155772,183.96383420471102,183.82974057644606,183.17692870041355,183.460463069845,183.41054200008512,184.30869523854926,184.84862516913563,185.26992184575647,185.04895683797076,184.12661158898845,185.00595992757007,185.48059657635167,185.4989387113601,185.2781899687834,185.63376311631873,185.54950928036124,185.5660442020744,185.94061716739088,186.74191574007273,187.5816567959264,188.3873412963003,188.4752924060449,187.7865480449982,186.8830100535415,187.27717100037262,188.15934113319963,188.23545210296288,187.74287439789623,188.10167879564688,188.99657508870587,189.4323922181502,189.11434043990448,189.03980098152533,188.23622156959027,188.02405680483207,187.1976782111451,187.37726900540292,186.61525192065164,187.5931236068718,187.01248407457024,187.47236416488886,187.84084067633376,187.351029667072,187.24600953934714,187.70938640646636,188.699065732304,189.31412073317915,188.52356528909877,188.20680303592235,187.95931270672008,188.58821965521201,188.87587270280346,189.60445055598393,189.49792211176828,190.30981593299657,189.60634189471602,188.73027816507965,188.79135704925284,188.58244447875768,188.84873755974695,188.93403847143054,188.41732431435958,188.03102922206745,187.9438476804644,188.35270050680265,188.25085121579468,188.09111516783014,187.8394672065042,188.51809869427234,188.96865099528804,188.87608978850767,188.57705798372626,188.98273479007185,189.42307234741747,189.4993988564238,189.23630961077288,188.45932590123266,188.0767450556159,187.7453130967915,186.87083995807916,185.97004051227123,186.41987367579713,186.784016339574,186.3499808497727,185.4199879686348,185.2896542372182,184.60198267688975,184.23111999360844,184.45951708918437,184.23115070722997,185.05700463009998,184.34503031661734,184.66379385069013,184.40670104371384,185.13929239986464,185.96124133607373,186.76503081899136,185.80762256635353,186.7906881151721,187.658271367196,187.66599750798196,187.6281624622643,188.45966477505863,188.53624900942668,188.6290421136655,189.00977621460333,188.46488310210407,189.44756792951375,188.47108205221593,188.41433654958382,188.37907477654517,187.4400091613643,186.76460356870666,186.03046889044344,185.13978338520974,185.360265661031,185.61310138273984,185.5609634136781,184.79052814748138,185.45229380950332,185.1216407949105,185.0098209916614,184.367486551404,184.5522792385891,183.73843441158533,184.09485895978287,184.18640258954838,184.66980685293674,184.34428565204144,184.75804813858122,185.39750800281763,185.40697062760592,186.395431809593,186.7316426280886,186.24819926498458,186.32422133535147,185.67339314194396,185.9820012920536,186.83697611652315,187.44300784217194,187.59696765430272,187.07311904709786,187.39521177625284,187.1001941896975,187.67548688687384,188.26925205253065,188.2138207280077,188.86987589020282,189.8588707265444,190.7631164812483,191.67140008835122,191.511934525799,192.27846331615,192.87434046156704,191.9551834804006,191.12663129903376,190.53959433734417,190.86285781441256,190.41159085230902,189.69999285042286,188.86392599577084,188.47316926624626,187.98383422754705,188.2298524910584,188.55415977025405,189.55166890379041,190.0558585682884,190.22385225212201,190.38949430221692,189.81074647046626,190.0385476606898,189.46047861361876,188.84999023843557,187.97371544875205,187.0304278288968,187.25547937955707,187.7223433656618,187.747926897835,186.91743823280558,187.46699752425775,187.8882666300051,187.96846227860078,187.29693784657866,186.59294740250334,186.0221784603782,186.61619907571003,186.58714010939002,185.7580249137245,186.08808729052544,186.05422651953995,185.13615162624046,185.4728320990689,185.83124784193933,186.1084480304271,185.19356101937592,184.64451516792178,183.90154900215566,184.4553199596703,183.9418717226945,184.25665414799005,184.11182707548141,184.25127748632804,184.2511943280697,184.38571291975677,184.8593292804435,185.6893500923179,185.6371840708889,185.90602820180357,186.2690223963,186.95377683779225,187.89083502115682,187.08002451155335,186.54534554108977,185.88176153087988,185.03997735353187,184.41061501996592,185.0408486961387,184.5319615569897,185.40337805682793,186.0718154865317,185.78470800444484,186.1618536268361,186.99667964223772,186.23183388309553,185.41273624403402,186.38543197559193,186.40973885077983,186.36327994707972,187.2799521642737,187.99716443149373,187.82798954704776,187.94878844497725,187.10621803766116,186.572826851625,186.35997102083638,186.12307266378775,186.0353958355263,185.44759794324636,185.98063796153292,186.11044842842966,186.43616215791553,185.67666047764942,185.60334038035944,185.2514212061651,185.15588421514258,185.07361590722576,184.25426351604983,183.44041209900752,183.83904222073033,183.77603680314496,183.97046800004318,182.98541084397584,182.29930372629315,182.8137689414434,183.45054666139185,183.74700410710648,183.92379250377417,183.75827176962048,182.94154344918206,183.08730826713145,183.69406278058887,184.4867897410877,184.01125785708427,184.4689186909236,185.18726998614147,185.10733664454892,185.5483267866075,186.3591673169285,186.22305143717676,186.85273544117808,187.62776133790612,186.71563679305837,186.52556002745405,186.9588086437434,187.43114513531327,187.20522653823718,187.1749168606475,186.42899013264105,187.40735503984615,187.16386466287076,187.81210466148332,188.01654742471874,188.50634075514972,187.71060890005901,187.51459496980533,187.6984465182759,188.37660958105698,187.85021543502808,187.28570026019588,187.49297597445548,187.77673122286797,188.6983614177443,189.09109933115542,188.98709503095597,189.5937762921676,189.21916778059676,188.51185191050172,188.02123047504574,188.2572741145268,188.99090981297195,188.68394080596045,188.23422773648053,188.34448580397293,187.42665590438992,186.88432734040543,186.96997701143846,186.5433770045638,185.9792008874938,186.8232909962535,187.78194574359804,186.94569678232074,186.03382089780644,186.29158391291276,186.895597955212,187.0300565971993,187.0311975851655,186.55314293596894,186.9928378635086,187.12012164993212,186.26783150760457,185.85879788780585,185.98939401982352,186.03503256803378,185.70705986069515,185.0969405155629,184.11203265422955,183.68790470948443,184.42587825935334,184.3450815998949,183.82818152057007,184.82556194160134,184.1922593349591,185.00519133312628,184.11925937933847,183.73120759008452,183.59251288184896,183.5134642762132,183.1070118015632,183.55226596444845,184.08928535692394,184.91121448995546,185.38621524907649,184.38699711859226,185.0836535221897,184.15196905424818,184.6479740506038,184.72639235574752,185.28324109036475,185.03650815878063,184.7889312757179,185.05630621081218,185.03180471016094,185.1763822985813,185.44430796336383,186.3829825585708,186.00353372795507,185.16930189495906,185.96588580636308,185.53228890476748,185.95234210742638,186.92454732395709,186.47215259447694,186.04274878138676,185.6671604658477,186.2130685360171,186.51157582364976,187.14410267723724,186.7892419686541,187.26420423109084,187.88475229172036,187.27844343148172,187.62275754613802,187.0118422540836,187.43124582152814,186.5762583585456,185.79808169510216,185.85949643189088,185.0813622130081,184.46504931012169,185.34979800134897,185.3692784155719,186.35594755411148,185.6523111113347,184.8874811953865,184.35670628165826,183.7787603684701,184.30260714469478,185.1038724402897,184.2945757447742,185.09488922310993,185.29567659832537,184.3454407993704,183.7996831475757,183.23322327807546,182.23611774295568,183.11035260139033,183.6250801361166,184.302077466622,184.64639390306547,184.4811291466467,183.6454889778979,183.02308936137706,182.2638763873838,181.52023789659142,180.57792536960915,180.19440814619884,180.28225953970104,180.4354369333014,180.18846136005595,180.3530575223267,180.9964588736184,181.87765014823526,181.23068184265867,182.12143690371886,182.317441763822,183.173291801475,183.10773098794743,182.680647529196,182.97692010179162,183.17298972886056,183.59928212454543,183.84954600594938,184.57428814005107,184.5838496768847,183.83510382240638,184.4931620969437,185.2904440839775,185.9289436689578,186.65612671570852,186.35867369826883,186.47981993993744,187.23757236171514,187.06259050685912,186.509651589673,187.2197256255895,187.94338544784114,188.16428188141435,188.2360356398858,188.8319272538647,188.27354080183432,187.75903213536367,188.0766306053847,187.6837684190832,186.76665805559605,187.56302807480097,187.55734946066514,186.58441701577976,186.55552443256602,185.90487006865442,185.09940472058952,184.71138982940465,185.28989991685376,185.561018794775,184.84313205396757,184.30262940982357,183.63618004368618,184.44985621795058,184.06964209862053,183.9130389727652,184.22928717033938,183.4650355144404,184.06949148187414,184.12556169042364,184.50177383748814,184.99606138141826,185.84634465212002,185.96677390346304,185.63659946480766,185.82016501761973,185.47112008277327,186.13775159139186,186.49655072111636,186.16408253181726,185.9996355404146,186.86790512222797,186.22212776215747,185.77586084837094,185.50458018900827,186.37397220544517,185.8078480665572,186.44038024684414,186.083669366315,186.4023605827242,187.35940509615466,186.70614306721836,186.87995658488944,186.38812613813207,185.41397154377773,186.0636322842911,186.68961815396324,187.00324329733849,186.2688887915574,186.66030748328194,186.84743515960872,186.95471431408077,187.5710834930651,187.32468616496772,188.17376687657088,188.381127235014,187.6829009493813,187.1254972498864,187.61385387042537,187.40792590985075,187.99305567797273,188.51870238641277,188.7554419557564,188.62654168484733,189.02688601287082,188.91737482929602,189.26267041498795,188.2656468283385,188.71277993591502,189.37021667137742,189.71857021329924,190.53422923199832,191.464875433594,191.20403097150847,190.5860042781569,191.0675447359681,191.24435429973528,190.95225101755932,190.22155837342143,189.26870491774753,189.45782410353422,189.9858185108751,190.79766791732982,190.70977885648608,190.40406059892848,190.14160930365324,189.92525801761076,189.4611012400128,188.94155687652528,188.1540881372057,188.11893235659227,187.74380484875292,187.52822399605066,188.1766164987348,188.5675439555198,188.49568705447018,188.4165736362338,189.39124286873266,188.6444205432199,189.08278803899884,188.5331777506508,188.98923096619546,189.3080110414885,189.67696067597717,190.16071947850287,190.38273169798777,191.0623239534907,191.94495101226494,192.002971151378,191.36125677684322,190.5662052319385,189.70786618674174,188.72377977939323,189.0612033959478,189.30843353411183,189.6345456559211,189.261052926071,189.8356412728317,190.00200041150674,190.6266393372789,189.99670472880825,190.62452332582325,190.928201737348,191.02722497098148,190.6911402558908,191.6004524519667,192.23310283012688,192.18753444543108,192.32082513254136,193.09648229181767,192.60051313648,191.74264795565978,191.807381328661,191.32897241041064,191.8529872894287,192.26743388129398,192.25795805593953,191.35172167047858,192.29886781331152,192.99260150361806,193.5178635334596,193.1906213746406,192.70650668349117,193.6032473971136,193.22366000618786,194.03414746979252,194.73988439841196,195.70554409874603,195.34052598150447,195.08158861799166,194.91725217644125,193.9572956217453,194.2860224377364,193.7833834029734,193.9472827813588,193.17292835423723,192.47712374012917,191.60873233899474,192.36648314073682,192.18064034730196,191.5511985309422,190.9278506669216,191.4628636497073,191.3264181013219,191.2972077843733,192.12899193447083,193.1020290143788,192.64622092153877,192.3968910984695,192.02575692813843,192.9751884448342,193.49177436670288,193.33916440373287,194.04717910382897,194.96585224289447,194.14804706070572,195.0440477677621,195.56677715852857,195.21545832278207,196.16710134223104,196.75728969322518,197.67837523808703,197.1945489081554,197.7892396422103,196.9997281404212,197.1373633146286,196.4023014153354,196.32888584816828,196.32929916586727,196.73707721941173,197.30202601384372,197.85471870098263,197.6466678697616,198.14396163308993,198.86112779937685,198.7623682571575,198.63343005161732,198.92930907709524,198.11002045450732,198.93026336282492,199.13751854281873,199.83285350585356,198.96598219498992,198.9077605768107,198.09348038304597,197.47774240328,196.55316832847893,196.24693767400458,196.6012068539858,197.25950069725513,197.33252069121227,197.04391928110272,197.68844527145848,197.54173461254686,196.74248515907675,197.0636624675244,197.83327421173453,197.62597654759884,196.84849427826703,196.1904525300488,196.21892184624448,196.04665714362636,195.8142768428661,195.3322619665414,194.39433421986178,195.13780463626608,195.6867229794152,196.25365552632138,197.0534029873088,196.5060029728338,197.4787885285914,198.1115614953451,198.32954638963565,199.12403882713988,198.96272348240018,198.69549277843907,199.3181798448786,198.7212422946468,198.1500441278331,199.00375440204516,199.37901608273387,198.942851617001,198.68952718237415,199.50250973179936,200.23446545284241,200.32864664727822,201.1026018690318,201.9878762792796,201.50779732502997,201.48779926542193,200.50235889526084,200.41796723147854,199.54064618051052,198.82421959470958,199.49004578590393,199.76597110601142,200.67715269047767,201.47544183162972,201.20109369279817,201.96664930321276,202.65494618425146,203.497746697627,203.0840514996089,203.7192078777589,203.36050705378875,202.90354026900604,202.47778674401343,202.05604850221425,201.78125235019252,201.95551002770662,201.39871860202402,201.58341180579737,202.5651976526715,202.78882698481902,202.27575824176893,202.87958213174716,203.2789823091589,203.31210579676554,203.89551202580333,203.63892759103328,204.62848979514092,205.24586911313236,205.24928460130468,206.21839918149635,205.310350747779,204.69010978145525,205.35479027684778,205.54622803349048,205.75102751422673,205.11390892742202,204.7551268856041,204.52536771679297,205.46408161055297,206.02537039248273,205.37235275190324,204.60740757128224,203.9726518606767,204.8508679973893,205.43400598596781,205.31868317350745,205.7110066912137,206.0425181714818,206.8376869452186,207.36771491682157,207.24194149952382,208.15313177602366,208.4587333407253,209.22619857732207,209.9264368447475,210.79043942922726,210.4125750376843,209.64613624708727,208.71024342766032,208.56098412768915,207.9037065319717,207.85284105455503,207.08330695144832,207.775130758062,206.83793927542865,207.0243279230781,207.77551720896736,207.53841293090954,207.31888636061922,207.5397531897761,207.46713990531862,206.742470653262,207.15340587869287,206.41028759349138,206.26356512354687,207.1409188513644,206.4280705791898,205.70995131786913,206.57235000561923,206.51064903009683,206.14876737538725,205.3220773539506,205.85764301521704,205.63336762832478,204.90381716238335,204.77077639196068,205.44948343466967,206.37333892052993,206.95527416281402,207.61026819981635,208.0196056170389,207.58420348446816,207.80768006946892,208.5346001922153,209.09272227203473,209.7212695213966,209.461189200636,208.58174218097702,209.449912881013,210.11127733672038,210.12904419517145,209.3629562635906,209.76297427667305,210.02367403823882,209.25252363597974,210.2433147621341,210.26733642769977,209.73080544685945,210.2314115948975,210.35022490797564,210.4577321941033,210.03912432212383,209.82075286051258,209.1647435738705,208.4877430163324,207.89499961957335,208.24945566337556,207.98727067094296,207.08495113393292,207.979476980865,207.67219665739685,207.51801390061155,208.07834842894226,207.41537813702598,207.0288630835712,207.63565047085285,207.09619499277323,206.17090540472418,206.87403598800302,206.17031865380704,205.94025498069823,205.90880115516484,205.4654831183143,204.95052775274962,205.2696242085658,206.24136791098863,205.73347076028585,204.80353160202503,205.77808991773054,206.3978021070361,205.4040568554774,204.76524268602952,204.99258234351873,205.11669856356457,205.3205461828038,205.99702988518402,205.33591337269172,206.01616430608556,205.38309034798294,206.33721058024094,207.15861337864771,206.2133904704824,205.26637368602678,206.0811960864812,205.86210000235587,205.19508909387514,205.2396080782637,204.9757189997472,204.78290969785303,204.48969922587276,204.75160317867994,204.04766205791384,203.53861589729786,204.1393883372657,204.80124993715435,205.5686343968846,204.87198416842148,205.70856384653598,205.832625140436,206.68052670918405,207.14909011824057,206.25263161212206,206.04703265568241,206.03777439054102,206.01108575193211,205.72095871483907,205.75213060947135,205.24660878954455,205.56286855461076,205.16632808651775,205.6313782269135,205.00094244489446,205.6118190404959,206.38425620971248,205.540758645162,205.77373938122764,204.88796425936744,204.2262164261192,205.07244256837294,205.38019845448434,205.26956972433254,206.15635396447033,206.68656901596114,207.5511795245111,207.63550223782659,208.49164173705503,207.8518459610641,208.53564697271213,209.52175587741658,208.9271627110429,207.9720586873591,207.47246253257617,207.97894188435748,208.64027211628854,209.0514544597827,209.54602252226323,209.1876242882572,209.90610758122057,209.3574747275561,209.45946737052873,209.906541059725,209.4355024760589,209.2319611934945,208.79591204272583,208.178161194548,207.40919703803957,206.89089773688465,206.65986543288454,206.8876512455754,206.5993356523104,205.8352306052111,205.33781271707267,204.46854381635785,203.91708821756765,204.25301319966093,204.93639645539224,205.59727459168062,205.9688387736678,205.9334397893399,205.39189466135576,204.67248662142083,204.1350757884793,203.67718139570206,203.63397465785965,203.668148774188,202.71255238261074,202.0449135126546,201.882030707784,201.11715374561027,201.32063180301338,200.67868471331894,200.59865437308326,200.65127322496846,199.6730757104233,199.35633469978347,200.2976640886627,201.25885243760422,202.04263638192788,202.4076460301876,202.88822995731607,202.37334196968004,202.02026553452015,202.07550632068887,201.9825508221984,202.97615224542096,202.22914646333084,202.03812064789236,202.3887165049091,202.93384868698195,202.31971115246415,201.78805387718603,202.35514151770622,202.02257770858705,202.04907305212691,202.25267262710258,203.0415882463567,203.2147477841936,202.55653452733532,202.07046260358766,201.45728680538014,201.89198237843812,201.06549032172188,201.17052745446563,200.4133712197654,200.6238759518601,199.89050689386204,200.61442467430606,201.54109485028312,202.40305521339178,202.60417505027726,202.04983539925888,202.68639362649992,201.7774958666414,201.02579479152337,201.94256104016677,202.16105894371867,202.3977754432708,201.57095769699663,201.8748534214683,201.82500900607556,201.94872819678858,202.71207424392924,202.4673743811436,202.14570957561955,201.39930080948398,200.82404185459018,200.30655900994316,200.77704198332503,200.92380438139662,201.0737473089248,201.02099890680984,201.57753609586507,202.17766046291217,202.3117591966875,203.18074811529368,204.1472035041079,204.72709353687242,204.9834678596817,205.6146432776004,205.6423523304984,206.56612854171544,206.10128594655544,205.7084250934422,205.75360384117812,205.80401784786955,205.18827055441216,205.74140454921871,205.35609244788066,205.35608100844547,205.0069940406829,204.48838881915435,203.5257002399303,203.6426476878114,203.68161541130394,203.5214191256091,203.59018929256126,203.8533175108023,203.632063456811,203.88128933636472,204.4047544412315,204.14026186754927,204.27273600595072,204.3237982634455,203.41452411562204,204.2738987421617,204.23548856331035,203.92295522848144,204.19419805333018,204.67571754567325,204.35977471154183,203.933027502615,204.2781281848438,203.76702099991962,203.4089292786084,203.42080397624522,203.3892678632401,203.78878257330507,204.64890797343105,204.33195049362257,203.82459235657007,204.23163042590022,204.59040744509548,205.52885209023952,205.85025109164417,205.4827851424925,204.53663458442315,204.01596418069676,203.15843699779361,203.45086388196796,203.80130945052952,204.17796362563968,204.91672690445557,204.77245030924678,205.6905399276875,205.97724132845178,206.0320048253052,206.88863702118397,206.73591305036098,206.7194184414111,206.5735835749656,207.42678923998028,207.178962060716,206.90261738048866,206.48273780802265,206.52002536365762,205.73346784012392,206.21763978386298,206.0609383159317,206.00863762479275,206.9695858983323,206.93068061117083,207.6209661345929,206.7689795801416,207.60632879287004,207.63998027797788,207.23308556061238,207.11548175569624,207.58325638948008,208.30531585216522,208.7021965654567,207.8762840339914,207.90108702797443,208.28829203359783,207.79277356760576,206.8749574762769,206.20624310988933,206.57971175108105,205.6935463361442,205.9609106858261,205.8975105592981,205.8343353793025,205.73622549511492,205.45629464183003,204.5106465476565,205.36317900568247,205.57943082600832,206.55007571121678,206.41164985485375,205.66185337956995,206.46495475014672,205.9653574358672,206.17174410261214,206.5901528610848,206.80607634596527,206.7509562592022,206.13343967311084,207.01412377273664,207.39616579422727,207.7354653631337,207.2042934373021,207.60872522182763,208.2436542515643,208.64551765145734,208.48148399684578,209.25554319703951,209.10608331253752,209.0625668480061,209.16743794688955,209.50984580861405,209.64428032701835,209.3085813955404,208.81049463665113,208.67802841449156,209.18216033512726,208.30166585743427,209.010127753485,208.7656917949207,207.88154322933406,207.53029565000907,208.4734395989217,209.03262579767033,208.5005516312085,208.04887644574046,207.19394759088755,207.9097641147673,207.83788919681683,208.19687091605738,207.33603350492194,208.20828275987878,207.51709855906665,207.7387373642996,208.23249304946512,208.7113587311469,209.5112883192487,209.83762409817427,209.54380351118743,208.92826550267637,208.3539446988143,207.44317526835948,207.89190689241514,207.1940993112512,207.81427328661084,208.09276171028614,207.44804409658536,207.51960509363562,207.56362246675417,206.6268710019067,205.94884831504896,206.71672839298844,206.77127035474405,205.96856005722657,206.4264794923365,205.54163234494627,205.05727860005572,205.15466475114226,205.13526633381844,204.78572491556406,204.0858079730533,203.26540068769827,203.46876112557948,204.4452355275862,204.9168498259969,204.33214027434587,205.0648149913177,205.79033009987324,205.42798238666728,205.27775652706623,205.6107437266037,206.57643733685836,206.35409389762208,206.65558682801202,206.94652094272897,207.04022705601528,206.62037349957973,207.58549794880673,208.03955422714353,207.4178458196111,207.5082738744095,208.0861457772553,208.34993133321404,208.86992662912235,208.30595970572904,209.03178737359121,208.23802677169442,208.110430510249,208.6109899361618,208.6486938269809,207.99756543291733,207.63049129908904,208.396949024871,207.93142443755642,208.2447316045873,207.69084136467427,207.2105306913145,206.9230733057484,206.53159442637116,207.13078506477177,207.11553299054503,206.28932242188603,206.27490297192708,205.27551307994872,206.0858780206181,206.98552317218855,206.4809086965397,206.5374147486873,207.43906298046932,206.76419706223533,206.57975344825536,206.38544581318274,207.11354347597808,206.91110522672534,206.83121135132387,206.2815980357118,206.13034004997462,206.09059140412137,207.0816553174518,207.9918464841321,208.44043569359928,209.00116478977725,208.03714811755344,207.8926101019606,208.2309674611315,208.48551359632984,208.47192765725777,207.945319397375,207.14023049222305,207.28387821326032,207.27764743939042,207.19172655092552,207.35268705384806,207.34324686741456,208.11285704793409,207.43617738317698,208.41916830511764,207.63191523309797,207.6646271534264,207.90615474060178,207.02052286826074,206.88581454148516,207.69861389370635,208.1130044865422,208.84743011789396,208.07601402001455,207.3899909495376,206.67888134671375,207.3065906567499,207.964462030679,207.61378164682537,207.08063193922862,207.60843182029203,207.6316404673271,208.089450083673,207.29645958729088,207.92141182161868,208.72021432686597,208.7128792386502,207.7421961412765,207.3151760287583,207.71480047143996,206.8595205564052,205.93826047889888,206.36546071758494,205.67543068667874,204.77527603134513,204.1403297027573,203.5468335216865,203.2134839417413,203.21958274580538,203.13298999052495,203.11134757800028,202.68289779452607,202.17765206564218,202.04205371951684,201.2225364567712,201.59857965493575,200.99553785193712,200.33473006868735,201.1621265830472,200.4764708983712,200.3290914427489,199.45647707534954,199.55766691686586,199.71311715152115,200.25903781922534,199.35528766550124,199.1293749269098,199.3218060908839,200.05345180165023,199.9235698254779,199.97793873492628,200.36866944190115,201.22474966011941,200.37498186342418,200.56847360450774,199.84430998237804,200.81206711288542,201.5253676213324,200.9870440820232,200.73891193978488,201.43053496070206,200.51975496672094,200.9074537307024,201.47679114388302,201.76735482690856,201.55555627914146,200.71710240095854,200.45528623601422,200.01845023827627,200.8577730138786,201.58689030073583,201.9289261060767,201.46288330992684,200.5888656321913,201.23857905855402,200.60612365975976,201.54442584654316,200.7548286295496,200.24644403764978,200.6430536438711,201.51990023674443,201.4135184744373,200.95537628093734,201.24278436554596,201.51287933718413,200.62704536132514,200.34977392107248,200.74299088818952,200.9733075844124,201.00440280139446,200.73235876718536,199.81124285096303,200.41003046603873,200.9232521657832,200.35405357321724,200.5944538670592,201.2864378876984,201.08682805253193,200.43628532392904,200.71446494245902,201.24080623313785,200.71769077377394,200.94058727798983,199.94478273531422,200.2183155505918,199.2253535320051,199.0202156836167,198.17997812107205,197.34529086388648,198.31673038378358,198.47738584782928,198.40032847085968,198.23574279155582,198.0989575572312,198.30804277351126,198.68369742296636,198.62242775131017,198.76158900465816,197.9641272360459,198.60638853814453,198.86746028391644,199.36934391129762,198.6065873731859,198.86979392636567,199.69209727551788,200.08029855741188,200.28845234168693,199.53549848683178,198.8112011346966,198.05750141246244,197.23906371882185,198.04066572058946,197.7097665462643,197.39383573969826,197.74749966803938,197.44302558200434,198.29226312693208,197.6112728137523,197.37311703525484,196.703524061013,197.1150845270604,197.58647836372256,197.0562708368525,197.06319259945303,197.90360097866505,198.77159521076828,199.74635737668723,199.13734006648883,199.7710262662731,199.94405195256695,200.6498734424822,201.47329441923648,202.27479178877547,201.5249198107049,200.6567696542479,199.9673754638061,199.81013467907906,199.74228043761104,198.81859144521877,198.4494934375398,199.42952121095732,200.07125019142404,200.29349005408585,200.11800202913582,199.29560297029093,200.23354315757751,199.49246528977528,199.98272763146088,199.04258075682446,200.00638624373823,199.98059845762327,200.69221286755055,199.85330588184297,199.6079271179624,198.96968483366072,199.49491302669048,200.04640787653625,200.3258552197367,199.92237802175805,200.5822203955613,199.7896815771237,199.27768491348252,200.2340695266612,199.7303935047239,199.07869412191212,198.2737048943527,198.32411015126854,198.58434810629115,198.353213747032,198.25638789543882,198.45560043863952,198.5463701300323,197.81371621321887,197.7276812326163,198.14188592974097,198.62867104215547,198.47054646303877,199.09813885949552,198.3486433350481,198.78191151842475,197.79019543156028,197.63506220793352,198.23546411842108,199.16616599680856,199.39588086726144,199.20981940208003,199.82409615209326,199.08798298286274,199.51193586271256,199.37121392646804,198.4902637801133,197.59605261590332,197.69090470578521,197.49928397871554,198.487183380872,198.4446525555104,198.36234393762425,198.4098375448957,197.97887548431754,197.53314738348126,197.69576176442206,197.49622028553858,198.03994468040764,198.4328388911672,199.34197144722566,199.29957157326862,198.39686283422634,198.51719638658687,198.23518406180665,198.56770051969215,197.66324494918808,197.13188222795725,198.07308404613286,197.10103605268523,197.60615696851164,197.44608850125223,197.33114650147036,197.53378180600703,197.3801229922101,197.71099058166146,197.2344704871066,196.36024543410167,197.34255454177037,198.27099020872265,198.03501701820642,198.94121063826606,199.13633601972833,198.27089832769707,198.4443042576313,198.2283566389233,198.71166227711365,197.96460810303688,198.643340700306,198.31020181626081,197.56581316608936,197.47796601662412,198.4207538869232,198.97048441832885,198.37806627713144,198.74235240463167,197.86619674088433,197.06331430748105,196.8786879084073,196.62843099795282,196.9167326851748,197.50052365334705,198.45915759261698,198.53843313734978,198.79357022466138,198.35137261543423,198.46998261846602,198.25861557014287,198.51493548462167,198.3887056009844,199.37240799050778,200.2591955862008,201.20098044537008,200.2090638880618,200.93781016441062,200.33592441258952,200.05199109343812,199.6606719805859,199.76845867419615,200.54950837092474,199.70577175542712,199.30595278833061,199.33836218714714,198.37375724175945,198.46257738722488,198.87294985121116,198.54780165525153,198.5020165895112,198.4467350919731,198.78446674486622,199.48789071803913,200.37865978153422,199.98621274577454,200.2146745081991,201.1352836447768,200.16227134037763,199.4277966627851,198.51199687179178,197.59858523635194,197.93625682778656,197.22703375853598,196.84800602076575,197.2445373046212,196.89682309608907,196.38250619964674,196.84972799755633,197.17631837166846,197.94082054821774,197.198453232646,196.75943817850202,197.32769602676854,196.90694340551272,196.4419398107566,195.48424937948585,195.48763087252155,196.48706740047783,196.7852295958437,197.11508981883526,197.69707099860534,196.86298234574497,197.74264504760504,198.26697591179982,198.5839797775261,198.7899631760083,198.39269363787025,198.92911322088912,198.89518922101706,199.1719702561386,199.53388357022777,198.96623153286055,198.4754440044053,199.02930492255837,199.05696629732847,198.13987845322117,197.72551083471626,198.34225342795253,198.17402047850192,198.29664395237342,198.7474251142703,199.39835633616894,200.0676653282717,200.03646430838853,199.24718439998105,198.27414923207834,198.74289837433025,198.08766935300082,198.36253075907007,198.9288901812397,198.3971471618861,199.25472960993648,199.03533084504306,199.8534624525346,199.8802014957182,199.59561930876225,199.48174922913313,199.3477310803719,200.07224433589727,199.09149148594588,199.06758531415835,198.88191113853827,199.3264290704392,199.9741302318871,199.33978107664734,199.12426613504067,199.51161617506295,198.7796495296061,198.4401548341848,198.55405201483518,197.8707503080368,197.66154211713,197.18567469110712,196.30354494182393,196.95680136512965,196.2610076898709,197.09446953842416,196.8526998674497,196.1969274324365,195.97257887059823,196.3970871558413,195.76050758128986,196.40662062447518,196.41550114843994,196.8420151686296,195.98524943599477,195.58633540058509,196.2434678436257,195.8286618757993,196.35071988170967,195.628953226842,195.22753444733098,195.55262786289677,194.64804920367897,195.06398100033402,194.27244515437633,194.01422353787348,193.89741770364344,194.75692750979215,195.35645562736318,195.48137283325195,195.56595408078283,195.34739885572344,194.6915628411807,195.5354710635729,195.1289291139692,195.84491045121104,196.0108160432428,195.25278541026637,194.75741506461054,194.13748397352174,193.72009349800646,193.22325433185324,193.31848221225664,193.5220687291585,194.28874821355566,194.19700191402808,194.63727028062567,194.70639937743545,194.23566881986335,194.72003213781863,195.44725800585002,194.73376993555576,194.66489217430353,193.95369727676734,194.0099703334272,194.73224556120113,194.18026826856658,194.2222202681005,194.67839464405552,194.7222288288176,195.1139577073045,195.29721787944436,194.92729842150584,195.05220969580114,194.32862082170323,194.47198283905163,193.91249876376241,193.01744483131915,192.21476928750053,191.46747291879728,190.87303087906912,191.7628140063025,191.05438306881115,191.71038530394435,192.50331220496446,191.68503617774695,192.64931620750576,192.23861988075078,192.338650574442,191.38677678024396,190.97115400293842,190.39307095715776,189.86091681057587,189.86267293989658,189.47464891290292,190.46884356532246,190.81364797381684,191.00834964122623,190.58277640212327,191.3304319656454,192.09215977042913,192.13178849592805,192.66120559861884,191.66875027539209,192.54899758053944,193.54824378015473,193.2375339041464,193.79900731518865,193.87127227615565,192.88794328877702,192.511034978088,192.3251158213243,192.51744664972648,193.0792814232409,193.14235470537096,193.28307770425454,194.1507323156111,194.518266109284,195.02855565585196,194.6539678182453,194.08543555764481,194.17043912876397,193.3738617701456,193.50979265477508,193.0203221528791,192.77097840607166,192.31144336331636,192.23356681363657,193.09919913485646,193.35101415589452,193.42958079185337,192.9026192589663,193.71194349462166,194.19354380853474,193.45146006159484,193.14081175345927,193.0401955815032,193.62173089012504,193.88286956306547,194.29818629752845,194.55144526204094,194.07547944691032,194.9985031131655,195.48642155714333,195.61002408433706,195.4982775147073,195.41192940063775,194.56736099999398,194.29908581683412,194.24202868249267,193.483467285987,192.7793043437414,193.52541565848514,194.11347468104213,194.46933500561863,194.10285859601572,194.65529982047155,195.4903219868429,195.3992390697822,195.85886862548068,196.2457258934155,195.35615798691288,196.06890081893653,197.02037955075502,197.77481003897265,197.11244673328474,196.93499675020576,196.91007766826078,196.76463236659765,196.0307382810861,195.12503295438364,194.41858749557287,195.36918469984084,194.799821913708,194.31507315812632,194.9445034447126,194.82173575647175,194.26832960080355,193.7355964249,193.8504236829467,194.8263155655004,194.8005876368843,194.91859226673841,195.14509103121236,195.4328813725151,195.10243887687102,194.45910358661786,195.06730818469077,196.01943769073114,196.8787339827977,197.03826452279463,196.7482589376159,196.1689263698645,195.50016687251627,194.99503384064883,194.81645245384425,194.76326617924497,194.65305461315438,195.42982258740813,195.14979179855436,194.42413027351722,193.7436522175558,194.1745039089583,195.08833881886676,195.0914833410643,194.3412768431008,195.1542567401193,194.92271254165098,194.03983216639608,193.0614669858478,192.79907190892845,192.79269488202408,193.2998351994902,193.09931286005303,192.52850243868306,192.43450825288892,192.30208683013916,193.22132916841656,192.93408362660557,192.32207559933886,192.74489679886028,193.27894450351596,193.2183224996552,192.97068819822744,193.87192936474457,194.85046217171475,194.3626014436595,193.67422120505944,194.45814086589962,194.4362136013806,193.46457594446838,193.15400686953217,193.0375742185861,193.07836274569854,193.02815615059808,192.85497868945822,193.40441300626844,192.4235435393639,192.40344342356548,193.02698653563857,192.34817244438455,192.94697996648028,193.43518418073654,193.99882018892094,194.46747365547344,195.07357182912529,195.78030354483053,194.782482619863,195.0079184579663,195.27222791593522,194.45842215558514,193.9554971079342,194.8263714206405,195.4821350965649,194.99488901440054,194.89395357249305,194.60692345397547,195.27194922976196,195.91914438083768,195.96155836200342,195.49930786993355,196.29650492407382,195.3071768186055,195.97402648068964,195.01769213331863,195.55506363185123,194.92882480006665,195.1488562747836,195.12223544344306,195.99837403325364,196.6796827330254,196.28388834372163,196.77602516673505,196.69943232415244,197.51421944564208,196.7631197599694,197.3999437703751,198.01151086762547,197.04197878669947,196.86185047170147,196.2320680678822,195.56191407889128,196.41524947388098,196.9185741986148,196.0798494988121,196.54503686446697,195.7700103316456,195.98493994027376,196.33240977860987,196.9131419477053,196.3350609461777,195.54405708191916,195.4077074667439,195.09066134272143,195.56891952687874,195.8792086308822,195.19980920059606,195.11103416513652,194.1210997584276,193.28996135341004,193.92331897607073,193.07975015509874,192.23019734118134,191.29993642214686,191.53548551537097,190.6026163129136,190.47409009793773,191.22636307869107,190.5924985157326,190.88036214839667,190.82533613825217,190.27716325456277,190.46239544358104,189.84368251962587,190.4134300230071,190.8018185836263,190.13832053169608,190.81877122772858,190.9883684879169,191.92367711430416,192.65215173456818,193.13880763575435,193.44140868261456,192.70511852297932,193.07116269459948,193.20452968776226,193.17782887350768,194.07701577013358,193.17756292689592,194.1177281839773,194.77813431201503,194.55322144459933,195.0059658586979,194.1909307623282,194.41334175365046,193.57768881926313,194.13723208894953,194.35647844243795,194.2926026256755,194.57147862343118,195.53604231914505,195.13080849545076,195.53067264845595,194.9824386802502,195.39066148502752,196.23187008220702,195.61917319800705,194.97111110854894,194.94191592372954,195.46691548870876,195.64784519420937,194.7518817167729,194.73353813402355,193.79187424946576,193.78465689346194,193.76952166017145,193.68006373662502,194.51030602306128,194.08792366553098,194.0470669749193,193.9654655372724,193.7437117220834,194.04677601344883,194.28795881802216,194.48642143094912,193.73579706111923,193.56153684854507,193.00254507781938,193.75329516874626,192.93694515852258,192.18676428403705,191.5157412062399,191.943205779884,191.94639889569953,191.20592062082142,191.7832926386036,190.81858936790377,190.38975661061704,189.7474185768515,189.73605648288503,189.57849680725485,190.39161109365523,190.87477357778698,190.6729770163074,190.56638363702223,190.50326826050878,189.69359663920477,189.8415646632202,190.23145178658888,190.35765711171553,190.76356258802116,190.56180090317503,190.80345004191622,189.98337870230898,190.3440323593095,190.38624809589237,191.182560141664,190.4929494075477,191.14203144004568,191.98786394437775,192.9078814093955,193.89153526118025,193.61397721618414,193.5914354058914,193.68533226987347,193.49513222044334,194.2431647409685,195.0669269002974,194.37191258277744,195.15030940342695,195.76527990726754,195.69767628842965,196.2937564183958,195.72170694265515,195.62602748489007,195.66861384781078,196.1517357188277,196.54409373225644,196.08507455606014,196.51101510599256,196.39023664128035,196.77256657416,197.7182913189754,197.19240025663748,197.025734083727,196.823093730025,196.50688576931134,196.87457101792097,197.87299377378076,197.7301188581623,196.73136737849563,195.94770011678338,195.71727379318327,195.02012494346127,194.7255801395513,194.62281587393954,194.9091540952213,194.63628970412537,194.74404757888988,194.86093254806474,194.6638387395069,194.91073715267703,194.18532911781222,194.36610529385507,195.0655502062291,195.8083911491558,195.35406892886385,196.08635847596452,195.63520475942641,196.55955039337277,196.96358687896281,196.5500538093038,195.91042868979275,195.74231708142906,195.75447462126613,195.50986841274425,195.97858421131968,195.6728481212631,195.97405452327803,196.62047326937318,197.49640986742452,198.00099717918783,197.1117831435986,197.8325929804705,198.2169029256329,198.27067839168012,198.55075346445665,199.14065254246816,199.0656255465001,198.49040414439514,198.1879279371351,198.64938704436645,199.32821502769366,198.95663119573146,198.54473915556446,199.13982999231666,198.85660879779607,198.54067221144214,198.22101696627215,198.78727378230542,199.63224913133308,199.4626596653834,199.78491863003,200.55120164854452,200.84382833493873,201.2851739693433,200.4479796285741,200.34129585279152,200.0043951123953,199.11657921643928,199.78792681591585,199.97056917427108,200.39001074060798,200.20875516720116,201.20332654146478,202.0560909048654,202.03934787819162,201.4304031492211,201.5717684547417,200.58923245593905,200.73419695859775,200.95855961507186,200.5049228160642,200.88443078938872,199.97477376740426,199.68431019922718,199.13392126886174,198.2264594323933,198.72939567361027,199.59788818936795,200.47945336112753,200.7147465138696,200.6946303374134,200.98732863739133,201.38296729978174,201.05325090000406,201.2075110930018,200.82647132035345,199.86603837553412,199.266092448961,199.22105746297166,199.93952641356736,199.2039615106769,199.33918015519157,199.83561695506796,200.25064967712387,200.41115049552172,199.92724506603554,199.9183049313724,199.66084580495954,198.94773675361648,199.51252235099673,199.6303552351892,199.23137451615185,198.4527076180093,199.41138835810125,198.54842051956803,198.72247205348685,197.73639957373962,197.6518180621788,197.71764084184542,197.65221463283524,197.33259112481028,196.846839630045,197.2904282156378,198.1391433882527,197.28489513881505,197.0897060339339,197.93689666735008,197.97110806731507,197.45532759511843,197.29272077558562,197.37080719089136,196.45964932721108,196.1153023261577,195.70815054047853,195.55807716958225,195.56817916035652,194.93850486399606,194.50536182848737,194.55258011166006,193.95071826409549,194.17013173969463,194.3299058144912,194.97093820106238,195.06695960089564,194.13641984574497,193.84248830750585,194.75735350651667,194.62054322706535,195.5872487621382,195.8916790848598,196.74269401887432,196.280436206609,195.642086237669,195.8398218699731,195.04219940816984,194.76237363787368,195.74623092915863,196.40060065872967,196.77575442334637,196.37673748005182,196.0705264620483,195.320507557597,196.28711378667504,196.76825799513608,196.3644772763364,196.39435557601973,196.8400369263254,197.1859335070476,196.49861758062616,197.0359260737896,197.30099841114134,197.0520914257504,197.22933499794453,196.91250774031505,196.07649677572772,196.66379660367966,197.363962424919,197.39940481865779,197.2302243411541,197.33850488159806,197.13478446751833,196.60622572014108,196.36043835710734,196.39877860154957,197.2476145667024,197.03098785318434,196.14104621950537,196.71765661239624,197.54777525225654,196.58909929078072,196.1786560737528,195.69145106337965,196.40221579140052,196.8008552249521,196.90039235260338,197.77787257451564,198.1166618121788,197.347973883152,198.14861657191068,198.7761152414605,199.15915386471897,198.41251416224986,199.03524156101048,198.79886472132057,199.59259490855038,200.20250409748405,199.93589646881446,199.8061734503135,200.76051129354164,201.14670670079067,201.8361934046261,202.60405796160921,201.75272549502552,202.70160911930725,203.52918445225805,203.21268275845796,202.76879968633875,203.41647261567414,204.37052357476205,204.71801468962803,204.202447835356,204.17635587509722,204.3579555065371,203.63249351643026,203.86772953998297,203.22350888466462,202.69767427397892,202.0558584043756,202.2259269230999,203.02903764834628,202.0825164122507,202.002004256472,201.36172899138182,200.6609216374345,201.57848642254248,202.2334480495192,202.51870372984558,203.19740076828748,203.01649840222672,202.5311195855029,202.26607682788745,202.516168653965,203.00582954846323,203.9291859678924,203.4314581430517,204.2798438090831,203.36750107165426,203.60174141917378,204.08516929438338,203.76300518820062,204.3610713519156,204.92459628358483,204.45953157311305,203.9141197600402,204.49333528615534,204.10305471392348,204.2328787976876,204.7206172500737,203.85853630816564,203.97068379074335,203.37077574804425,203.44631949812174,204.26727418135852,204.33077681716532,204.80936805857345,204.45614192727953,204.0247592688538,204.8704694993794,205.72867864649743,205.27695853821933,204.86206734878942,204.422635642346,203.44990600692108,204.06814364762977,204.2011469383724,205.03816089313477,205.06720320973545,204.68385098176077,205.24410243146122,205.52043397072703,205.08526861201972,204.9133257479407,204.9800317841582,204.2550560720265,205.09542847098783,205.87279419740662,205.1062704352662,205.30563559755683,205.27914352994412,206.27642026217654,207.20915835816413,206.82328788517043,206.3754563271068,206.47343965386972,206.09855680540204,205.6296959016472,205.64271652931347,206.07014425983652,205.66038271784782,205.32732873922214,204.92638497566804,204.20798156177625,204.35425948631018,204.36096352897584,204.22891754005104,204.2363772909157,204.8691771873273,205.28642216371372,205.43810928752646,204.9878479288891,205.36926602432504,204.38664086721838,203.89022731687874,203.17347518261522,203.5816796189174,202.80372283840552,201.84633691376075,201.02643485879526,201.91230247030035,202.42859823070467,201.94769969722256,202.22827876266092,201.5375301647,200.69887901749462,199.85763697791845,198.9631478781812,199.50833683041856,199.3444865499623,200.27352156909183,199.6758785159327,199.5608099331148,199.22888111043721,199.04188414197415,199.17244689306244,199.89781746454537,199.8012987850234,200.3393690092489,200.77881359355524,200.57750989776105,199.80798048432916,200.2345750099048,199.99770174035802,199.24692881759256,199.427217238117,199.95466153603047,200.42474129842594,200.70024824608117,199.95984434569255,200.09618552820757,199.383401456289,198.98748770169914,198.44976304424927,198.2254146928899,197.31224745791405,197.01243253890425,196.15558532159775,195.45871646888554,195.14211673801765,194.73970209481195,195.5307025439106,194.7541641406715,194.7879982246086,194.98061590828001,194.9742872226052,194.2266409448348,193.75463843951002,194.40917761577293,195.18160743871704,195.19788044458255,195.00687601231039,194.09762936178595,193.7278636470437,194.04551743762568,194.44176805065945,195.0523815797642,195.42353163240477,196.2256996757351,196.11678130133078,196.4577492941171,197.0003077192232,197.7618115078658,198.24354123789817,198.71641575731337,198.01437526149675,197.61798208858818,198.08866029139608,198.8396380203776,199.05608948646113,198.1683316938579,199.13541461061686,198.4249317739159,198.07604139018804,197.16353627154604,197.60769078647718,198.27101487619802,197.89681567205116,198.72360133612528,198.94783843774348,198.10076833795756,198.14628477068618,198.93262660875916,199.1728227334097,199.66381699265912,200.1512025585398,199.27605808433145,199.29033564124256,199.8723641652614,199.33120444091037,200.23167593264952,200.97705442132428,200.81279021082446,201.41420151479542,200.7697366741486,200.11770329019055,200.58092072373256,200.18178492505103,200.53081906121224,199.7413718122989,199.60180205013603,199.7179671069607,200.65477394172922,201.0862064450048,200.51751514151692,200.3960283859633,200.28494079923257,199.9465545481071,200.75348632643,200.51536161499098,199.63107053469867,200.52369861258194,200.49023863486946,200.76137920608744,199.87296555936337,200.24050624854863,199.68940490391105,199.9182300399989,200.58541616937146,201.06008156575263,200.3564242986031,200.67039035493508,201.47072869399562,202.25316132465377,201.74787350697443,201.716109264642,200.87743985606357,201.3275855705142,202.09464472159743,202.06960946461186,202.05927113816142,201.17833594186231,201.1275147437118,202.0583755481057,202.62931070057675,203.41790371527895,203.13739806972444,203.07366043142974,202.73108725482598,202.96448056399822,203.773418080993,203.2874646554701,202.88023567572236,203.60991977201775,203.15356088103727,202.28826008969918,202.31984091596678,201.88027262222022,202.03927656868473,201.27021405519918,202.05448027327657,201.4440331426449,201.39485829416662,202.37199734756723,203.27349501289427,204.09706589346752,204.79907569475472,204.90321060502902,204.24153487663716,204.35286442376673,204.72868408774957,204.87063913280144,204.51109576923773,205.0939026447013,205.87611202709377,205.5617237240076,206.35242380667478,206.90978116728365,206.82951419521123,206.8020968688652,206.46905701607466,206.26520744431764,206.3888539983891,206.3835991169326,205.7126239691861,206.0810450236313,206.9197194967419,205.98501357249916,205.84934008307755,205.79143137624487,205.02461966173723,204.53440380143002,204.05213735857978,203.8252292983234,204.01793109858409,204.0455677723512,203.36091804504395,203.40325657092035,204.39491409203038,205.1883431216702,204.51657280512154,204.88375358330086,204.95495308330283,205.94401378091425,206.80554819153622,206.03741029277444,206.17917579738423,205.35740176355466,206.0106345214881,205.9756953367032,206.80642528971657,205.82820408744738,206.21899417508394,207.14176052669063,206.25104181235656,206.42111050151289,206.5479617160745,205.74120333604515,205.4909499725327,205.97623250214383,205.47566211689264,205.0449291546829,206.01994878659025,206.17486557224765,205.88233655272052,206.43474924843758,206.6322013149038,205.76440422749147,205.0639952137135,205.90147273242474,206.0852908724919,206.65864582546055,206.49202533671632,206.2679809825495,206.7343142335303,207.65889545017853,208.6359990951605,208.41235725348815,207.74174654483795,208.1218582978472,207.17282523633912,207.05975598609075,206.82031215075403,206.2263767970726,206.99697722354904,206.51890206616372,206.29267579736188,207.22108970675617,207.53737671207637,207.77712799608707,206.82353645097464,207.47850564261898,207.45558669278398,207.87207872234285,207.22127232793719,207.341465880163,207.24971885513514,206.36599862854928,207.07999770902097,207.38153468305245,207.6302351821214,208.17745613865554,207.65988229820505,207.24248241307214,207.93370004091412,207.1437752447091,206.68627319438383,207.44501922745258,207.80063554923981,207.8114886470139,207.1375038838014,206.26700353436172,205.71827713400126,205.7426641662605,205.0747100841254,204.50746365170926,203.974940397311,204.87696492718533,204.44562207674608,204.4131781742908,205.14636509073898,204.15088654495776,204.6705702622421,203.84293305128813,203.25157437985763,203.44638471398503,202.44664169009775,202.04047973267734,201.95305955968797,202.7448108382523,201.87222881661728,202.2825214806944,202.64584484277293,203.13331659231335,203.32912745606154,203.09252964053303,203.8712699902244,204.49739546189085,204.06086197309196,203.7213382255286,204.64800971606746,205.44382957648486,204.7320531490259,204.28287261072546,203.60470737470314,203.34340601367876,203.59490770241246,202.7952779768966,202.4915532283485,201.82574164355174,202.39593691099435,203.30421678489074,202.49164125928655,201.49784688046202,201.22394835297018,202.17433912632987,201.37384657701477,201.29321299726143,201.44446145789698,202.18541950220242,202.33879419788718,203.00659641670063,202.9271474936977,202.67914077825844,203.2672612494789,203.6255232715048,204.396518249996,203.8213620763272,204.78204340301454,204.13526450749487,204.82117234636098,205.12251636385918,205.1986946403049,206.18692762078717,207.16600951040164,206.95537416497245,207.7106780288741,207.1140712639317,207.4997994946316,206.8954091416672,207.79215534450486,208.3520948830992,207.4383509354666,208.29964087577537,208.7222169819288,208.41832182183862,208.70396551350132,208.2055985755287,207.88250288367271,207.8536371672526,208.81139701092616,209.54660908225924,208.9033327177167,208.02103167260066,208.60660689836368,208.34524296456948,207.7172081093304,207.41069668531418,206.70157802291214,205.79430384002626,205.82443087315187,205.9672828442417,205.7368165976368,205.58071065088734,206.0385561650619,206.97860486293212,207.4487239937298,208.17534916475415,208.9352144235745,209.27984244888648,209.5706077911891,209.60400430392474,210.00211051478982,209.11472847964615,208.8992530661635,208.59749198378995,208.45005575288087,208.81707698246464,209.34586821496487,208.65731677925214,208.9759464226663,208.13394315727055,207.70276999194175,208.31442724261433,207.63066792860627,208.05349322920665,208.17963708518073,208.0685282512568,207.88138924585655,208.33492804318666,207.54865241842344,207.28015058487654,206.8454932877794,207.6667460007593,207.27229062840343,208.2692207917571,208.71600251132622,207.9931052196771,207.36208294332027,206.44692533602938,207.21565241133794,207.1791142532602,207.08368734223768,207.48699608631432,206.68381053814664,205.8585344501771,205.62536576855928,205.48875826317817,206.18628829019144,206.95790906064212,206.833297427278,207.0494138817303,206.57802252657712,206.7043356387876,206.11664820602164,206.8355835629627,206.32747027277946,206.62269518105313,206.58388399053365,205.7138110208325,206.39143846649677,205.78446689574048,205.49224330252036,204.61266807001084,205.1104425531812,205.17447885265574,205.19713594019413,204.42641006596386,205.00914249615744,204.41022903006524,204.7416964159347,205.11244407389313,204.24366395827383,204.72035641316324,205.69583227904513,206.38798955269158,206.13351959036663,205.56086357636377,204.57951472559944,205.36047576647252,205.83049887651578,206.75614914437756,207.0940185901709,206.20737218065187,206.48123106732965,205.9653256763704,205.29781746817753,204.99944599485025,204.11756022647023,204.49270648648962,204.5054482393898,204.8996122055687,204.35738414898515,203.4666909710504,204.16868186183274,203.33391167409718,204.11570971785113,204.86674744356424,204.22824156098068,203.40819816105068,202.4239358222112,203.22655544849113,203.30063192825764,203.60301497764885,204.13002501567826,204.4834997104481,204.59674386121333,204.35844155261293,204.06775105837733,204.63781402539462,204.53580760862678,203.77172543806955,203.52395807765424,203.00650380318984,203.37105523003265,203.65201562317088,203.39595135627314,202.39768804516643,201.48841954953969,202.33157477993518,203.27548676915467,202.8553774068132,202.46372635709122,201.80045466450974,201.91909755347297,202.85365132708102,203.2159442389384,203.77351588569582,203.3093745931983,204.1134185534902,204.3609540690668,204.8624276239425,204.9598539066501,205.34633633075282,205.5852845320478,206.55529778683558,206.42683595372364,205.54501595301554,205.34106351807714,204.65808314364403,204.55553709249943,205.00950824748725,204.54587831674144,204.50576040335,203.84054480213672,203.0078833606094,202.22317253565416,202.63916985690594,201.8934489977546,202.6704723429866,203.34781522117555,202.9737812639214,203.32262580515817,202.93724096706137,203.48651666380465,203.77263384591788,203.01962141040713,203.75218249717727,203.94246688950807,203.23988393507898,203.13878197874874,202.23611029796302,202.72152609284967,201.95036627585068,201.26432875357568,201.16983265290037,200.43052043393254,201.209925185889,201.344820282422,201.51099554728717,200.72394557343796,199.95335330767557,200.38236256409436,199.8382929903455,199.74802873376757,199.33881173608825,199.0025672065094,199.89333359291777,200.46856149332598,200.49951026029885,200.732904732693,201.4129550610669,201.73036423139274,202.51716679753736,203.06854598224163,203.94436927326024,203.31388560077175,202.97495968127623,203.37853699503466,202.88474087882787,202.03403060138226,202.93605215940624,203.49938936857507,203.7084353454411,202.8685805844143,202.51176273683086,201.85328845120966,200.9734862144105,201.87150907795876,201.7572648692876,202.32329092361033,201.71528684254736,201.28297037770972,200.62556662410498,200.66540501452982,200.20252115651965,200.47773963212967,199.9582144250162,200.03629456507042,199.33253654045984,199.00142228743061,198.74589003808796,198.79571564728394,199.69089906383306,199.02697681589052,199.65001636277884,199.35732721537352,200.12193041853607,199.8781866133213,198.91893908986822,199.5825312603265,199.1892072185874,199.14833700843155,198.6544791571796,198.25920426519588,198.6570515683852,199.44653880223632,198.75679061282426,199.50195457506925,199.05931336665526,199.45834763348103,198.97753448644653,199.83748289290816,200.33352045156062,199.7992849056609,199.63179479073733,198.9963873019442,199.2316547962837,199.2334000444971,199.77604260668159,199.39901431230828,199.41789287840948,198.67242217436433,199.1830706759356,198.7360200197436,197.87647788785398,198.4861270110123,198.14018323738128,197.66672586882487,196.80692402925342,196.23672055406496,195.94594219792634,196.46532789152116,196.49341063620523,197.2136864932254,196.7249646866694,197.27731939638034,197.03873070143163,197.96996286790818,197.5445103100501,196.92136643920094,195.97263796860352,195.67764432216063,196.0575341298245,196.97806763043627,197.37002657726407,197.11627545021474,196.2795453676954,195.78927726112306,196.2836829777807,196.3788121100515,195.6274907924235,195.93908454105258,196.88046237640083,197.87966475635767,198.00743401423097,197.44339927798137,196.87526732496917,196.07112677162513,195.9960421123542,196.0562933338806,195.47320616804063,194.57703742291778,195.16010471992195,195.8281514220871,195.3500625230372,195.92344116792083,196.08417390519753,196.19953381782398,196.89576027542353,197.18385496269912,197.31316786725074,197.19729412859306,196.83243793295696,197.56794837024063,197.7172077060677,198.4627537028864,198.59772345330566,197.70395817281678,197.71766411606222,198.27095546294004,197.87225156463683,198.14446832053363,198.57664521737024,198.2067766590044,197.32156854495406,197.81233928259462,197.97337863128632,198.30811391351745,197.82263541361317,197.82640036242083,198.26134869735688,198.8072644751519,199.71575224446133,200.24733286956325,199.43314406834543,198.73720760364085,198.05871621984988,197.86287255166098,198.07687087077647,197.74466714216396,198.4372711875476,198.6006901417859,199.53223847178742,199.34285414312035,199.8511118046008,200.47021698439494,201.14923338824883,201.50717650959268,200.99990158854052,200.53497385093942,200.24608208052814,199.82428151369095,200.25910432543606,199.79197478760034,199.0364736779593,199.8569855694659,199.8390580411069,200.69323453633115,200.96634360356256,201.13106826599687,201.62356804218143,201.718264631927,201.92264834512025,201.61585912434384,201.37074169516563,200.45043603982776,201.33553554303944,200.58355345297605,199.85475861793384,200.14422466931865,199.86885773809627,199.66752098407596,199.96194039843976,199.4219111041166,199.27315792441368,199.80643720226362,199.14829520182684,198.61896589538082,198.67590458970517,199.2663055062294,199.86203033523634,199.05700666783378,199.08551827492192,199.06723373942077,199.37259353138506,198.74280618410558,197.8385201524943,197.29797619767487,197.77960164332762,196.85830402420834,197.69622096931562,196.9209789922461,197.57245950540528,198.5715991742909,198.07964894454926,198.49443963449448,199.42264375369996,200.0927492203191,201.08268814906478,201.3872235622257,201.92540274281055,202.08709304733202,201.4507830394432,202.1411072416231,202.62877192161977,203.08575216680765,203.80666902195662,203.61986326798797,203.35733965877444,202.36956118093804,203.14962757518515,203.34869988961145,203.53258975502104,203.8982356279157,204.37720881495625,203.74016176722944,203.49836261430755,203.8127296702005,203.76877574110404,203.05827441811562,202.25377577962354,202.42400575149804,203.23624763870612,203.6867293799296,204.5869398782961,205.09161417465657,204.8625387251377,203.9990324350074,203.41234900429845,203.3229026789777,203.12974186055362,204.08096833527088,204.70821089297533,205.2227858044207,205.1493825870566,205.01893989089876,204.79095923760906,205.54781501973048,205.79920570738614,206.1106790988706,205.78658994752914,205.8616216252558,206.32378365984187,207.16740726912394,207.0957262716256,207.56192427827045,207.64391963370144,206.7048155660741,206.39550122898072,207.0169386244379,207.0993490256369,207.1601917296648,206.72031250642613,206.641644354444,207.63008196046576,207.7703498089686,208.13762812688947,208.9595614830032,209.27984879910946,209.9078380386345,209.71119859814644,210.56275485735387,210.3690580674447,209.7140035359189,209.5619526929222,209.54077330743894,209.30754474410787,208.73089351691306,208.1398148247972,207.8245384017937,206.9343714597635,207.2104045287706,206.28960671974346,205.3605771008879,204.4198611183092,204.91010290011764,204.4771109339781,205.13040771894157,204.3620543978177,203.56180969346315,202.64480693964288,203.09875429421663,203.38474159361795,203.91893987357616,204.6213717116043,203.81400523893535,202.9326206361875,202.60284320637584,203.47214245283976,203.45818040845916,203.7253378923051,203.01863053021953,203.94028446404263,203.657231899444,204.05983710614964,204.8408327102661,204.64537120936438,203.97727725468576,203.6985478051938,204.30130735924467,203.45789608126506,203.77922703092918,203.03598141670227,202.5548817901872,203.26227537123486,204.23968156334013,204.79875640757382,205.15645965468138,205.82551311468706,206.03669866826385,205.9646449321881,205.04079126100987,204.59620173694566,204.53989022271708,205.11464680964127,204.58015253255144,204.5799519647844,203.80827408330515,204.136336018797,203.3365884697996,203.59027741011232,202.7460692259483,203.3303900603205,202.6914014359936,203.65686831064522,204.52983788959682,204.9703059545718,203.99681977089494,204.8816557326354,203.98209062078968,203.00019207317382,202.99225911032408,203.80255757458508,202.93183144321665,202.44419389776886,203.3053285642527,202.7966017811559,203.0723190200515,202.25804997142404,201.56973717082292,201.9339743112214,202.49824986606836,202.072314244695,202.63658347493038,203.6343950619921,204.2510276963003,203.86079854425043,203.62263833591715,204.4042279040441,204.3058159458451,205.14169328380376,204.38396130828187,204.99943317845464,204.71499808412045,204.9134872984141,205.33920690696687,205.31279573589563,205.71390755288303,205.28593630716205,204.42645658599213,205.42132846498862,205.4586767856963,204.683027993422,205.0968767455779,205.83276676852256,206.28610825072974,205.48823357885703,204.76474489085376,204.16388554917648,204.28736314177513,203.84137277957052,204.0407438655384,203.28410942852497,203.09053186606616,203.01198507333174,202.46203682990745,202.12533873459324,202.5719431550242,202.8243393613957,203.81133104627952,203.01996699534357,203.3472493258305,203.43914216710255,203.31338609196246,203.8420796599239,203.2621632036753,203.61214458895847,203.7517719878815,203.92953064339235,204.43695100862533,204.92482545552775,205.52139428211376,205.64823396969587,205.31591287441552,206.2332907738164,205.57931251591071,205.66581392288208,206.48274918226525,206.57789253769442,206.58005320141092,206.3556505148299,205.65203542541713,206.3046058146283,206.96323687769473,207.4910624041222,207.84481321135536,207.09790559858084,206.3531675664708,207.2987060523592,206.79828309314325,205.95395328197628,206.53960404079407,207.0275916904211,206.17964702984318,205.2247174871154,205.2470760694705,206.1431111083366,205.5396201792173,206.20842566527426,206.54500163160264,207.35952491266653,207.7484734854661,208.5360174817033,208.7299206177704,208.80925064347684,208.93706167908385,208.64924240205437,209.13116056658328,209.5918849511072,209.0687997029163,209.11238468717784,208.30316844815388,207.80526990722865,208.64757400378585,208.7461554678157,207.95470488350838,208.08211569674313,208.68889875663444,208.89958606706932,208.26976345991716,207.48834556760266,208.27001907862723,208.2926129726693,207.5701971356757,207.81019414076582,208.62763024214655,208.8093511555344,209.73708390584216,210.0129442983307,210.4263411401771,210.19874332658947,209.52691556466743,209.05055065639317,209.54842069512233,209.17951981397346,209.62471303669736,210.59708029124886,211.0151158105582,211.7645259448327,211.1002846234478,211.05256436159834,210.61017883382738,210.25877062929794,210.75756686925888,210.73811400169507,211.5027641649358,211.73765573464334,211.817698860541,211.82748715998605,211.0355185973458,211.13294743886217,211.6656049164012,211.88900580303743,212.46062397398055,212.3779043504037,212.67583436658606,212.5049413475208,213.39057717099786,213.47339531127363,213.22472627507523,212.28496661921963,212.15748776076362,211.7112922826782,212.03805137379095,212.941204121802,213.7703271494247,213.04039600491524,213.53767314832658,213.58388311835006,212.67086098575965,211.8839285443537,211.19952472439036,210.91079454263672,210.12386620650068,210.89374324074015,210.78198466124013,210.55566814308986,210.71254471177235,211.69376421626657,212.49365836940706,212.0754335760139,211.61769078066573,211.52232099696994,211.5730551984161,212.10773490509018,212.1992712598294,212.03052790183574,212.34490948030725,211.77954738168046,211.1629995680414,210.19889693241566,210.58192277187482,210.50601973803714,210.45540056750178,211.36002694629133,211.94181275786832,211.00086269015446,211.45279092155397,210.5044242683798,209.55684192012995,209.53327344125137,208.9056469956413,208.22373433969915,208.42097924510017,207.57357530947775,208.14297573501244,208.24754083622247,207.8499675616622,207.11168672936037,206.2166245970875,205.65783805726096,204.65867584338412,204.52065726695582,205.07219893718138,205.3584127370268,204.99215946532786,204.73293518042192,205.21846876526251,205.56323235249147,205.50512730050832,205.0797249842435,204.4535308452323,204.76786099234596,204.29464269662276,203.8746431437321,204.25460928166285,205.1263296250254,205.0809177281335,204.6801641494967,205.13238545972854,204.6401857342571,203.85253883665428,203.12173565011472,202.81332337437198,202.5739587796852,202.10796765470877,202.09791891137138,201.1177578587085,201.8710729475133,201.60491076111794,201.8647163468413,201.69113592710346,201.84428550163284,201.42962999781594,201.72722936375067,201.05742015689611,200.4410885842517,201.43712540436536,200.99637253955007,200.68480642186478,200.51939705898985,201.12467248551548,201.87159407278523,201.819137849845,201.51266274554655,201.63204585760832,201.97077774535865,202.29854537639767,202.07379734516144,201.37522899359465,201.01216816483065,201.86273964261636,202.0425858614035,201.11456268886104,200.7570406110026,199.90314023103565,198.99217016994953,199.17245788872242,198.6871615657583,199.26671499712393,199.3912696703337,199.47120467480272,199.0835576876998,199.45950166881084,200.0824597766623,200.02992568956688,199.98670708574355,200.47394188819453,200.52155746426433,200.3774353051558,200.3329824320972,199.60075887152925,198.69194103311747,197.99970336724073,198.7357052853331,198.47731473576277,197.96660231193528,197.52663308335468,197.63392195897177,197.25874166656286,196.43579458119348,197.20279343053699,197.89733065385371,198.0106029114686,198.46020448673517,197.4809908629395,198.24902743520215,198.99353489791974,199.38902938645333,199.5536070736125,200.34787638531998,201.18936321046203,201.41188602289185,201.70418457733467,200.93452977435663,200.0162327052094,200.4635482225567,200.71072611864656,200.56472047185525,200.54894915502518,200.52601613476872,200.11571843270212,200.3317624363117,200.22007877845317,200.69317592773587,200.30975867714733,199.45853731082752,198.8365450343117,198.8835242097266,197.90105526382104,198.6239178921096,198.76813557790592,198.83007782604545,199.70545292273164,199.80582305509597,199.94089305540547,199.01143401069567,198.85774271655828,198.44993746187538,199.18574023945257,200.09774744091555,199.54808140499517,200.3262787987478,200.22899713972583,200.07864106772467,199.92417324148118,199.79698310606182,199.88988750893623,199.75764014944434,198.89051817543805,199.20655062189326,199.16693772748113,200.06196043919772,199.92308025620878,199.92356209363788,199.16696431860328,198.30292566586286,199.01685412833467,198.27274213451892,198.11735506588593,197.77075706981122,197.50065642036498,197.83301265118644,196.9942572140135,196.04796508979052,195.19071495207027,195.0576020409353,195.53627179004252,194.65205183811486,194.52953488426283,195.09448375273496,195.64346561627463,195.3611523588188,196.17508028727025,195.6579818688333,194.68015634361655,194.6060132565908,194.4049940975383,194.16801093239337,194.11777574243024,195.05811473773792,194.88741661328822,195.67810032423586,196.07366987783462,195.83609087532386,196.23676509177312,195.35803705779836,196.32381544588134,197.00927032809705,197.28618602035567,196.67245742026716,197.01079968269914,196.08653633482754,195.1417063320987,195.37886316888034,195.0718717011623,195.05256781401113,195.52620034990832,194.6247385223396,194.7608397398144,194.4403921221383,195.14882142748684,194.93829403817654,195.65576050197706,195.2969095124863,194.58635348267853,193.77867935458198,194.12686180509627,193.18003251217306,193.6720410468988,194.55865115812048,195.44452700670809,196.04316142341122,195.32788378046826,194.52064318582416,193.7609414360486,194.19509289273992,193.94273152807727,194.80414841277525,195.02462780708447,195.07295828079805,194.15499867498875,194.4242864237167,195.1930439127609,195.91996807744727,194.9282976090908,195.1384955747053,194.78862089850008,194.80123945092782,195.5900077749975,196.4943606397137,196.43529023882002,196.63164910767227,197.33796286862344,197.12116177007556,197.08949363650754,197.98329759947956,197.1044336622581,196.36223279079422,197.09731457568705,197.157741419971,196.44129207497463,197.00860426109284,196.24154245806858,195.75523453997448,195.22563032479957,195.46554363751784,195.91147338505834,196.57357631763443,195.94116690335795,195.75429242709652,195.1468942547217,194.14875815436244,194.8995134215802,194.09001478971913,193.79834773624316,193.99390802066773,192.99808951234445,192.39353833859786,191.72338244086131,190.94510329840705,190.55172711936757,189.59941903874278,188.85588474851102,188.95354543905705,189.10669306106865,188.46426954772323,188.79058485291898,189.09207930509,188.25000653974712,188.87675258377567,189.21668551303446,189.24358654534444,188.84499369794503,189.38489948073402,189.29967447789386,190.27608336368576,191.05520436586812,190.38873012177646,190.94058657437563,190.91548127075657,190.93356552440673,190.05591941718012,189.67235066741705,189.93161747371778,190.51313957897946,190.41880801413208,190.5521062882617,190.02348541887477,189.85222835978493,189.94395954627544,189.69490641681477,189.71998598333448,189.87806961964816,189.2144973524846,189.0512036406435,188.72010466875508,188.96999694267288,188.73489709943533,187.88594528613612,187.50458507053554,187.52047246461734,188.3820882057771,188.32935928320512,187.71983143128455,188.1455531772226,187.75633646454662,188.69233290245757,189.65105699608102,190.2766101253219,191.1061852122657,191.73511296417564,191.11269250977784,190.95375976338983,190.10531459422782,189.58468757756054,189.2887145318091,189.4899152009748,190.3314768387936,189.62945236917585,189.44234647462144,189.41513637639582,189.68178460234776,188.84511338407174,188.39643037784845,189.02024049824104,188.39826339762658,187.47706938814372,188.10226892633364,187.13723299466074,187.2655858900398,186.41098810592666,186.26787742972374,186.15943148871884,185.3039868059568,185.92850880790502,186.8853170638904,187.83846210082993,187.7337807235308,187.99208726966754,188.84914289228618,189.48020188929513,190.31769923493266,191.1154288519174,190.29752678750083,189.83871715236455,190.7451472338289,190.12544792424887,190.81510497350246,190.64301629457623,190.26614624867216,189.99850462004542,189.05044494289905,189.93807733431458,190.79130922444165,191.75961605459452,191.6784872612916,191.8012836528942,191.95907169021666,192.27456810791045,192.00051646353677,191.939232848119,191.88431234331802,192.79929403029382,192.9135699318722,193.70040407031775,193.39859177870676,193.365859832149,192.83088332461193,192.04092876054347,191.76120374444872,191.30268835742027,191.61155330436304,192.13516847137362,192.03795495256782,191.52571205422282,190.97280969051644,191.4212375585921,191.74253501417115,192.5081801158376,192.5941611174494,191.91577592492104,191.16364301741123,191.33332085423172,191.20203623129055,191.39995964802802,191.6554838102311,191.1999394344166,190.60382742108777,191.50515961414203,191.25581892719492,191.52797414641827,190.79097270499915,191.49552928563207,191.37337085744366,191.7360830293037,192.37599546043202,192.97499063238502,192.21744889812544,192.1484384671785,193.02530327858403,192.71860094554722,193.66759599884972,194.28027790877968,193.773635241203,193.99406065419316,194.03636374976486,193.9678338947706,193.25997054949403,193.94368866365403,193.34220589371398,192.48561073094606,192.79363625869155,193.54961554519832,192.8829269860871,193.36008477397263,192.63908187346533,191.92778900125995,191.6440942636691,192.63520152354613,192.35542374337092,193.31216483935714,193.19103190349415,192.33233195729554,193.02695376006886,193.47841813368723,193.3833845029585,192.64745866460726,192.99880745261908,192.20637403754517,192.95689293043688,193.04290902614594,192.21224185544997,192.18213853798807,192.3586622918956,193.3128844439052,192.31625493662432,191.82052365737036,191.4673604699783,192.15460052667186,191.80077101569623,190.87461584014818,190.66019527614117,190.92849630722776,191.66438643448055,191.027474116534,191.17343547102064,190.3321203556843,190.3039961741306,190.10103129036725,190.06286867661402,189.9301972896792,189.70141661539674,189.94009091611952,189.9291726052761,189.6407724590972,190.23538991156965,189.47438394790515,189.20755577506498,189.98893918422982,189.8783338102512,190.1468097055331,189.63361586118117,190.39160190941766,190.91151192691177,191.85068140691146,190.89091744087636,191.54196929745376,191.48269420210272,190.88431349024177,190.83069919841364,190.39429990947247,189.7418722989969,188.78256088867784,187.8057866501622,188.62955296458676,188.5465688565746,188.7967537427321,189.14202182693407,190.03128950763494,190.7654204131104,191.20459639374167,190.48100557504222,191.23093140963465,190.83879813970998,191.43940146127716,191.17007981985807,190.90157454041764,190.89224976254627,190.14031682442874,189.75382862892002,189.65943008335307,190.01738716615364,189.68212318373844,190.6437113652937,191.52521864278242,191.03307153331116,190.33033530367538,189.67114568594843,190.15062450338155,191.08900809055194,190.5623492943123,191.01661228528246,191.37693330738693,191.5439766808413,191.6417357227765,192.0112417167984,192.4929494294338,191.79938347358257,192.67195906769484,193.07428354630247,192.87095168977976,192.7476919493638,193.16939133079723,193.77118576318026,193.3861266123131,192.7765374216251,192.88201664714143,191.88852535793558,192.07594756036997,191.60788774350658,191.8204590221867,192.44700559275225,192.95586857339367,192.4112726561725,192.48202641261742,192.50894361035898,193.15235887188464,193.20057041570544,193.95298074325547,194.85412576096132,194.8707866971381,194.10788335697725,194.48795202048495,195.45120570156723,195.07870769826695,194.76190674118698,193.88674748828635,194.33749366458505,194.1554727833718,194.8914954685606,194.9822961119935,195.29366884054616,196.00967053417116,195.76436632778496,196.43414302589372,196.54719124082476,195.7478057150729,195.40312921255827,195.5456516072154,195.57203937508166,195.12071007164195,194.77045490359887,195.39647868089378,194.46542147593573,195.0610908814706,195.51380953611806,196.32273163832724,196.94594950741157,196.23653600690886,196.52796540781856,197.01870630448684,197.64313623588532,196.9152544150129,197.8815958132036,197.16726587573066,197.6644522692077,198.49857688415796,198.60512305563316,198.76625539269298,198.8187118289061,198.90381336212158,198.38733285991475,197.59374069515616,197.98916214099154,197.409298222512,196.58711488731205,195.85948787303641,194.9737868453376,195.8007962894626,195.8013351401314,195.09665064886212,194.5189373982139,194.10131909372285,195.05624182941392,194.1600299323909,194.93182450393215,194.57042523706332,193.7162085454911,193.16930813435465,193.88549672346562,193.2318934481591,194.11546623660251,194.59143139142543,194.37130687059835,193.87520796479657,194.2854517409578,195.18835256109014,195.82540510362014,196.5094124036841,195.95968558313325,195.7321730288677,195.96971619362012,195.81303601060063,195.17060262616724,195.4010441363789,194.46213285066187,194.4271870078519,194.18750909157097,193.24206442479044,193.9504963173531,193.25749653670937,194.19736358895898,194.17463110247627,195.11670133983716,195.85140006477013,196.17560949223116,196.6132783005014,197.0524080595933,197.04526415560395,196.76098482357338,197.08368640113622,197.286702175159,197.55690058413893,198.12097149528563,197.90622038347647,198.0030866805464,197.65770707838237,197.06341489357874,197.5969712473452,196.86626162659377,197.67239498812705,197.83066583890468,198.13577103894204,198.22176246438175,198.8177664997056,199.4791118092835,199.4305564784445,198.45900703733787,197.59379875240847,198.36441669473425,197.8122136075981,197.81513884617016,198.53929645940661,198.50568864494562,197.7356490464881,198.29987229267135,198.45961787179112,198.37660709675401,197.50896832626313,197.55950737651438,198.2221505776979,198.8829658795148,199.62360279029235,200.3825453184545,201.31913311826065,202.25931368628517,203.25362178310752,202.51544185681269,202.4939263961278,203.3805375955999,203.19125955970958,202.24727548891678,201.66696207039058,201.68744378117844,200.87707130331546,200.8657252965495,201.6801328547299,200.70497870678082,201.19348454242572,201.9324432075955,202.90890392800793,203.26519003044814,202.54605437489226,202.87624812312424,202.1694808048196,201.77334486460313,202.1534337317571,202.9485784000717,203.33193898014724,204.0098066064529,204.52076880075037,203.66948182322085,204.1065696729347,203.90563841024414,202.97002215497196,202.6771568027325,203.07224079454318,203.67559302737936,203.88545973785222,204.29847627831623,203.76315633906052,202.90548638813198,203.13902654871345,204.06642271392047,203.076864304021,204.07422778056934,203.07774894870818,202.59993867157027,203.08713170839474,202.31315028760582,203.19695510808378,202.59859370114282,201.88869559997693,202.6292407992296,203.024732389953,203.05966576980427,203.99411739269271,203.92188434768468,203.75080073438585,204.63126490917057,204.96321027493104,204.0364245660603,204.05031707836315,204.90849481429905,204.54104903060943,204.0888232192956,204.33826469816267,203.3975641708821,203.2929527182132,202.30603995081037,202.9012495856732,202.52415566286072,202.7912438684143,203.38284150650725,203.60199284460396,203.3530177967623,202.7191786179319,201.9475737195462,201.01825731433928,201.26898847380653,200.69005926605314,201.37745323590934,202.37735985172912,202.70247454755008,203.20097560528666,202.85135569609702,202.36696467362344,201.65459940070286,201.15502129634842,200.68561909580603,199.8441173597239,199.15225479006767,198.4703755811788,199.13281157054007,199.9797167670913,199.95913836173713,200.2757123694755,200.913776058238,200.44077574415132,200.4006465631537,199.54415914509445,199.77993481699377,199.7860878300853,200.56167299067602,200.96798610175028,200.5946252886206,200.33652138430625,201.05467202467844,200.83645066106692,200.02189104864374,199.1296825199388,199.20546631561592,198.74472667090595,197.84857024764642,198.0639673518017,198.64128120616078,198.3525744304061,198.11147568095475,197.97736651310697,197.7615006719716,198.50718937814236,198.85026292363182,199.23345712106675,199.62617990607396,199.17962545529008,199.15682740462944,198.84727690322325,198.19294807687402,198.46685654250905,198.2542897616513,198.65250127436593,199.45421992335469,198.85042712744325,198.16428081551567,197.2993057332933,196.3902892493643,196.24261338822544,196.75977275846526,197.6761861764826,197.20621823659167,197.5496498378925,198.34557974757627,197.48484166525304,196.9022172857076,196.18146414868534,196.75065327389166,195.86454297229648,195.68705318076536,196.2828975636512,197.00399970822036,197.97978539112955,198.94877089979127,198.5652659679763,198.81016652751714,199.2756623015739,199.07123944256455,198.82586644450203,198.69922792864963,199.5023056520149,199.89336007740349,199.4911106126383,200.0794981047511,199.4843725808896,200.24567017145455,200.14806456118822,200.2128392206505,201.08797432854772,201.24227085709572,201.81089136144146,201.78899744339287,201.45156461186707,201.95271608419716,202.82997826626524,202.3839241489768,203.34594635199755,203.6292700334452,203.59967965912074,203.62183768395334,202.92175337299705,202.09544638358057,201.39598122099414,202.13758578617126,202.91027742205188,203.8143226597458,203.1654431070201,202.38071382185444,202.49964878801256,202.32875226531178,201.6673806118779,201.19640842499211,201.12938957335427,201.85490736784413,202.00108216516674,201.02287785010412,201.0233348738402,200.45032577309757,200.63188052503392,200.2162072090432,201.10814894130453,200.45638850191608,200.37616149382666,199.3897272059694,199.57953652832657,199.16902315197513,199.47408597078174,199.2696021962911,198.97223655693233,199.95419342350215,199.15868877386674,199.63494212878868,198.91680741636083,199.8540685758926,200.56879256526008,200.535795008298,201.35163421323523,201.36473491042852,201.41635366948321,201.93118440406397,202.63400055048987,202.2197164595127,202.35937389545143,201.77565969713032,202.23560027126223,201.41417573718354,202.15934323659167,203.07894847076386,202.329144410789,203.22894680313766,203.81182563956827,204.1100880135782,204.4185367305763,203.71134494058788,202.97167620947585,203.38208452472463,202.65978181594983,203.40030590398237,202.62585727265105,201.7269102735445,202.33568153204396,201.65899783140048,200.96062935795635,200.2034419910051,200.23128827521577,201.19049764238298,200.58577737910673,199.6833279770799,198.78013589140028,198.74042388796806,198.42742739245296,198.44181372784078,198.92540927045047,198.06337636429816,197.0758064496331,197.69310985831544,198.62195905158296,197.74509161757305,197.71453509945422,197.71911621512845,198.01667068479583,197.10511148907244,196.51034517865628,196.97670604195446,197.67924053035676,198.3446957115084,199.03884266782552,199.0283942897804,198.31335955532268,199.29686265904456,199.2579185301438,200.17181104514748,199.23075964534655,198.49114591628313,197.65616682870314,196.7267691534944,197.1687249415554,198.0879032369703,198.7223237445578,199.61484405957162,199.5059921629727,199.42018211400136,199.94557344540954,199.45403585396707,198.9521363954991,198.93798024393618,198.65865816781297,199.10992185864598,199.73206378193572,199.7592548560351,200.75648547895253,199.960408244282,199.79737805295736,200.44938548794016,200.5735532590188,200.75888618454337,200.11894120974466,200.14216215489432,199.39208458270878,199.68649317277595,200.59594675339758,200.66260296385735,199.84175725840032,200.69834603508934,200.9013824374415,200.20068856421858,199.8152014920488,199.4001964754425,200.01678509358317,199.18676918372512,199.8788791685365,200.7119750995189,201.38194789830595,202.3443905254826,202.7221695431508,202.1550514753908,202.169746927917,202.13533347658813,202.25705753732473,203.13142747385427,202.97829476650804,203.9778950670734,204.23440438183025,203.31508610863239,203.46596898231655,202.9312268528156,202.0470749773085,201.4827591353096,201.5143258268945,202.18628860171884,201.70448644692078,200.73795772064477,201.42937121307477,201.07385390950367,201.41945558367297,201.09558643121272,200.2123890533112,201.0094430805184,201.16075912723318,201.6690223584883,200.68621623935178,200.01524273352697,200.19212993606925,200.2526753717102,200.42870640289038,201.13217484252527,201.3888788986951,202.26444104220718,201.4863233002834,201.76592971850187,201.59216830460355,200.8838731618598,200.06148119503632,200.07443135557696,200.22115076892078,200.56510316673666,199.78199289785698,199.28008981281891,199.8976817689836,200.78393168980256,200.6528724078089,201.6301481919363,201.44536497769877,202.25340262427926,202.36987743806094,203.2736653550528,202.4463748508133,202.33640418061987,203.2227989891544,203.86847728583962,204.34804085176438,203.84033998847008,203.44362787669525,203.25372690707445,203.82223579194397,203.35316012334079,203.19707419071347,203.9601710503921,203.91520368447527,203.54423531284556,204.0682764686644,203.65452175121754,203.5038539422676,203.24079229217023,202.7646349063143,202.293654687237,202.5558340512216,202.16733753494918,201.43274386925623,200.96565493522212,200.05425966810435,200.5119542251341,201.03078061621636,200.65484683215618,201.4832439608872,202.25348099786788,201.7178835500963,200.74256829498336,199.7913549556397,199.22795640304685,200.07730642380193,201.03744534775615,200.19065264612436,200.3732218882069,200.49344321107492,199.53142601437867,199.21135445684195,199.14744824403897,199.36979696992785,199.94894237071276,199.40951818879694,198.6352077163756,199.35616156086326,198.6215129159391,197.79472502414137,197.53252332424745,196.75159530481324,195.936150200665,195.55108877271414,194.93894082587212,194.1791379242204,193.22318499721587,192.2479795180261,192.85910123540089,193.74157958850265,193.08683521859348,193.83683094289154,193.90704432781786,193.90166760375723,193.17750170081854,194.16651822300628,194.75267054513097,194.00556673435494,193.98113580886275,193.68505157297477,193.4791620215401,192.88091474678367,193.48298878967762,192.6365992659703,192.7069461895153,192.69110524561256,192.7002469729632,192.73054804978892,191.81954551115632,192.15105733880773,191.8401785022579,192.22240397706628,191.47502179117873,191.69463312858716,191.47568774176762,190.51599478442222,191.1627399995923,192.0510414945893,192.22394952736795,192.25247952202335,191.55338524561375,191.728638864588,192.10669594816864,192.00634113606066,192.36690698424354,191.69264412205666,192.28326279949397,192.5237065181136,191.94961902406067,192.3170872097835,191.68534788070247,190.78956717904657,190.3431316278875,189.60698623675853,188.82712559541687,188.68000960862264,188.21269663842395,187.75959511147812,186.9439939968288,187.135767753236,186.6279280288145,186.1814766889438,185.18214718997478,184.42238282132894,185.0074925730005,185.87797995004803,185.40576665336266,186.16189277544618,186.285535315983,186.63730241684243,187.09384190384299,187.7405505119823,188.63081339746714,188.41207605879754,187.67264544498175,187.54034588532522,188.28957196092233,187.60639125900343,187.35679788328707,186.90141470823437,186.61600516084582,187.04080466972664,186.69858968583867,187.2052554129623,186.31044331472367,186.42706004623324,186.8575584483333,186.5756337279454,186.10327986255288,185.93993976386264,185.76568524865434,184.91271733678877,185.82846648572013,184.89585637580603,184.24729994079098,183.59994822833687,183.3826504754834,184.28095984319225,183.97969607636333,184.81406989041716,184.8256816715002,184.14909923169762,184.5241420129314,184.76596329919994,185.11300105927512,185.91042643785477,185.98731776094064,185.53931820765138,184.75962519831955,185.74638623232022,185.97527829837054,185.28430343419313,185.10631822049618,184.53343885578215,183.6088513918221,183.1906980718486,182.56697973236442,183.34921210538596,182.48565745120868,183.34397263498977,183.62096354085952,183.9679764811881,183.09009399684146,183.83717272477224,183.47895900905132,182.5505175581202,183.46181671554223,182.5663245562464,183.0825835680589,182.4826339040883,183.31485956488177,184.2667263187468,183.2767545026727,182.38843190902844,182.3033661651425,182.24561164854094,183.20175475394353,182.67410150682554,182.85009287577122,182.0538806882687,182.89990891423076,182.92704012803733,182.99764767847955,183.54032168490812,183.36346295801923,183.00649095047265,182.68701722566038,181.82137866364792,182.37748146429658,181.62255120603368,181.2398110148497,180.93957988684997,181.7555461875163,181.0388692272827,180.6929168123752,181.42096921801567,181.23334475746378,180.4085085457191,179.52057722676545,179.91562096681446,180.4446295988746,179.8104205406271,179.55319963907823,179.02797558624297,179.23603846598417,179.30519358674064,179.1342834001407,178.51699223229662,178.7598493406549,178.8597433473915,179.83927832730114,178.87028915714473,178.46732274955139,177.6224419157952,178.0419340133667,178.41282630711794,178.5539642451331,178.72672764211893,179.23289621574804,178.89877508254722,178.1424987660721,178.1697769430466,177.70073579018936,176.73550021415576,176.57399318600073,177.30623898701742,177.43336617061868,178.18658715113997,178.00960887875408,177.44097166042775,177.9508626004681,178.59973369538784,178.56163428211585,178.54822959378362,179.47347361920401,179.79572156257927,179.8785063768737,180.2895945981145,179.57171057909727,178.57648400124162,177.70390403456986,177.56724543916062,177.56336436839774,177.13293051114306,177.3173798378557,177.45380314579234,177.94566026283428,178.54255722649395,179.08570662140846,179.33063328638673,179.58257028274238,180.544175630901,181.40357561409473,181.26166790351272,180.43862219154835,181.1966843381524,180.6318177827634,181.23767494689673,181.19423073111102,181.15662134857848,180.54921076027676,180.73894585995004,180.23613381525502,179.86321425484493,179.51268249936402,178.86582920327783,178.59365281648934,179.06941215973347,178.5425468417816,179.15960261784494,180.02264747722074,179.3995896819979,178.6608590465039,178.58338071173057,177.96387044526637,178.91803960409015,179.51099619781598,178.84119278751314,178.29289778135717,179.27449169475585,179.9552136613056,179.25897392025217,178.8524782010354,178.87475074548274,178.49286240106449,178.42809012439102,178.88783893315122,179.26230720849708,179.61499404441565,180.20501403836533,180.76219929940999,180.71040624193847,181.61177621176466,181.66324491472915,180.81852543493733,179.82718577655032,179.86640339484438,179.37607281981036,179.69340851483867,178.78778357384726,178.1900561535731,177.45378954801708,178.0691465260461,179.0279434188269,179.54740388225764,179.58080997364596,178.6602505967021,179.12040623929352,180.1160284699872,179.17421290883794,179.21023472817615,180.18385786609724,180.58884964557365,180.2897754716687,180.2360534965992,179.60749986907467,179.6360613545403,178.83968436298892,178.65141769265756,178.4227770655416,178.2471439144574,177.45945614995435,177.80139724211767,178.63685680180788,177.7137536215596,178.22113285399973,177.27469922602177,176.6921743582934,176.28848194610327,175.3967052558437,175.21206143777817,176.18051307601854,175.29022979643196,175.07712056860328,175.9149711835198,176.6199874728918,175.99862896464765,176.82213824195787,175.83506416436285,176.74180183559656,177.33679561829194,178.17217092355713,179.03564243530855,180.01996969012544,180.73022547457367,180.7034203177318,180.59268403984606,180.70348805608228,180.4169195992872,180.0463935737498,180.0882959808223,179.63716439623386,178.95954579859972,178.32968353573233,177.69245092570782,178.27056948887184,177.4987625638023,178.3284721588716,177.879715195857,178.21290899487212,177.72184466058388,178.0536904190667,177.58150168135762,177.52583870710805,176.62931381398812,177.2856990150176,177.40202293312177,178.14290943043306,177.18044079933316,177.36298055620864,177.6025595460087,178.4620942985639,179.02737872861326,179.20280537288636,179.6755648930557,179.96115997852758,180.04399487469345,180.9509734865278,180.92710794508457,181.66100355470553,182.54611829249188,181.8175411117263,181.6015842370689,180.8417906947434,180.99882607068866,180.29205253208056,180.23236788250506,180.67985589802265,180.67218488501385,179.86446083756164,179.41438020858914,179.7434980776161,178.8717403402552,179.15827895561233,178.4181346599944,177.55071500968188,177.0152733558789,176.77633331529796,176.43509204033762,175.79978340910748,176.49819966917858,176.48869669204578,177.15773648396134,176.78994045825675,177.42185781663284,178.35295981680974,177.82520601525903,178.73752219649032,179.54029053635895,179.56002565473318,180.37791932420805,181.03089551487938,180.70806913357228,181.34928117645904,182.14725407073274,182.61792439315468,183.53917408827692,184.2517454251647,183.439774423372,184.27948105847463,184.975810513366,184.48090639524162,183.88870448665693,183.01631002640352,182.5799520383589,182.9991031079553,182.9812583378516,182.1054971376434,181.79813038371503,181.17596409097314,180.7627419726923,179.93166759377345,180.3628970873542,180.17445622384548,179.4873719108291,179.9150958834216,179.34848236571997,179.11992454901338,179.00683311000466,179.71293342346326,179.14241643762216,179.9199764081277,180.3753118426539,180.40568579686806,179.6699065035209,180.51926856022328,180.68361622048542,181.51113710924983,180.8724784529768,181.75339157972485,182.16070973407477,181.44033290958032,180.8024343829602,180.4527885466814,179.54265416460112,180.53438179241493,179.71780095808208,179.11006869049743,178.76904051937163,179.39097773935646,180.0230960366316,179.5917834835127,179.0603437726386,179.6137794754468,179.99789216881618,179.5253262054175,179.61677606403828,179.3176956200041,178.6600627223961,178.6981408004649,179.12014985317364,180.03557285806164,180.76932711806148,180.77559595974162,181.2021580399014,180.38770150812343,179.52616369351745,178.5669376286678,177.9820762751624,177.64776843739673,177.51416846551,176.5753071163781,177.01539969909936,176.39974617538974,175.55232882592827,175.15362516138703,174.361048753839,175.22873436659575,174.62697221757844,175.00073648942634,174.47450918285176,174.02296918444335,174.72431428544223,174.1127159493044,175.10949897533283,174.595837126486,173.62256606435403,173.25616410234943,173.3972012703307,173.22782820416614,173.67280172463506,172.90536611154675,172.2931593763642,171.8815551251173,172.81192025076598,173.5294756940566,174.11688373377547,174.89602507045493,174.08084261231124,173.67908058827743,173.80598253710195,173.67804702278227,173.126002445817,172.4443761217408,172.51577338622883,172.46841103350744,172.1271473360248,172.57142103323713,172.87472246261314,172.57586874440312,173.56585003901273,174.1075976653956,174.79848991986364,175.71997030219063,174.86720096459612,175.35686837602407,176.13909579394385,176.89838799089193,176.7464745491743,176.9376670527272,176.25664643011987,175.92533801775426,175.31877257255837,174.97398338699713,174.38259768858552,174.68113430403173,173.91813378641382,173.71407775534317,174.27755988249555,173.91364895459265,174.21723841130733,174.90483611123636,175.10536348307505,175.89976399485022,176.83817717060447,177.42226885259151,176.73810988711193,176.50312478421256,176.07960664480925,175.50988042075187,175.54886249965057,176.2464115829207,175.6783138285391,175.23475141078234,174.27715550689027,174.67114488687366,174.27045011380687,174.1947675938718,174.8276388682425,175.45330811385065,175.46013405406848,175.4309080778621,175.54120741412044,175.3359290137887,175.15546306502074,174.45047691464424,173.56993132457137,174.38803785201162,174.5371137568727,174.7622043597512,174.01524894870818,174.91756816674024,175.1056950762868,174.19120515370741,173.81235807901248,172.9221247350797,172.01677836850286,172.29095570510253,171.7432150603272,171.86395999835804,172.0231739510782,172.60474377544597,173.58591721905395,174.3837885176763,174.90729780122638,174.3646213640459,174.24054498923942,174.1837721192278,173.23896767152473,173.14918755274266,173.9749035318382,174.85491825500503,173.97417660662904,174.14214174542576,173.51967969257385,174.32857106579468,174.2981681190431,173.92592776101083,173.61959633044899,174.1931612789631,174.77801160048693,174.57242066133767,174.89633636036888,175.0554647296667,174.2269416777417,174.152786036022,174.06116833351552,173.1104583661072,173.059080906678,173.98287724563852,173.54082719562575,174.16459794621915,173.52931267768145,173.94610299216583,174.2868659319356,173.3253749255091,173.75294866925105,174.60904222074896,173.62333471281454,174.0954855652526,174.17332346225157,174.73617654293776,175.45681521622464,176.34633224178106,175.48871145490557,175.26635365653783,175.15471039246768,175.17929334985092,175.84859905950725,175.66251550102606,175.4810631396249,175.3129268558696,175.91113200038671,175.04937721369788,174.1062052268535,174.49136367673054,173.65090306987986,172.72840681532398,171.82070972025394,171.64726816304028,170.78007412469015,170.1028698044829,169.79297014139593,170.27420166227967,169.73691317392513,168.80597733100876,168.1667673480697,167.49631191184744,167.46446749800816,168.13273803470656,167.53234972478822,167.5311999428086,168.52285151043907,167.92622374370694,166.96540679922327,166.42922296142206,166.71575729409233,166.7862124890089,167.17330037383363,166.50101397791877,167.24752488872036,167.66574812680483,168.33928242977709,169.014641223941,168.96833906462416,169.3762694313191,168.4652451146394,169.35880194883794,169.43252775631845,169.21149693802,169.479850247968,168.7679262040183,169.39394752169028,170.3007233259268,169.44710087077692,170.05100631341338,170.93123437045142,171.47657914971933,172.35847139405087,173.10839611757547,173.4362469529733,172.44272666377947,171.47193691367283,171.73808569973335,171.3192010228522,170.64368867781013,169.8497248585336,170.4768164269626,170.74914477858692,170.78173842048272,171.16591076366603,170.85346886096522,169.9026088314131,170.8392559089698,171.2292135125026,171.8387440815568,171.48826527781785,171.72551379026845,171.43897449877113,171.40647330554202,171.33212884049863,170.3775612860918,170.04738890193403,169.3909001457505,170.02706383029,169.9041412253864,170.28542198706418,169.30320027843118,169.71496312506497,169.48481143033132,170.1395922373049,170.62003641063347,171.09908559033647,171.45412806374952,171.19960413640365,170.55156348692253,169.85953750740737,169.03301360784099,168.70561521081254,169.08433030406013,168.63932204945013,168.44101683748886,167.9313792102039,167.81388841196895,168.53579514101148,167.57048579351977,168.398644822184,168.90017001936212,168.79689014237374,168.0627415678464,167.91804627142847,167.95888972375542,168.46001803409308,168.16892186412588,167.63363905949518,167.71623678551987,168.4071519752033,169.35991751635447,169.9369203480892,170.30799733800814,171.06073812302202,171.0197191145271,171.95832923799753,172.45116636808962,173.40363880386576,173.73928399570286,173.6617619274184,172.84940681699663,173.54081897297874,174.28692647069693,175.04599073482677,175.7749518319033,176.7429897156544,176.8458809768781,176.03014941094443,175.44423529785126,175.97955754585564,175.83983633015305,176.7166291368194,175.81956624379382,174.84606576757506,175.50860841432586,174.9431865126826,175.20979023631662,174.49107664031908,175.2272659437731,175.06157189700752,175.16341739566997,174.6635401584208,173.8171925507486,174.67882933467627,175.2077098605223,174.58053893316537,175.05706913070753,174.7268557534553,174.05578144080937,174.83023362234235,174.1061563193798,174.5852172789164,173.96154993912205,174.8324357601814,175.4890313204378,174.7931314771995,174.73459677863866,174.68444744730368,173.84796499926597,174.72098063724115,175.6592968343757,174.95882202591747,174.16978547768667,175.02493774145842,174.9694841504097,174.2149943113327,173.70221918215975,173.98530387319624,173.790664692875,174.132795158308,173.76974192308262,173.98147602798417,174.43461000313982,175.13247954659164,174.52851508976892,175.45111826853827,175.16482633398846,174.5928222462535,175.47844048496336,175.99164952989668,175.31534330686554,174.69696872960776,175.62582930270582,175.50480395089835,174.5200183354318,175.13623746857047,175.73247411474586,176.6048005972989,176.92979194503278,177.78725467901677,177.74883894715458,176.78031200822443,177.0088717066683,177.39152898360044,177.99930646130815,177.1434035296552,177.80174897098914,177.91803425503895,178.69401198765263,179.39595888741314,179.2902723508887,179.6817287816666,179.2107319040224,179.90897735580802,179.10720689641312,179.31181933358312,179.1288881804794,178.69476826069877,178.01100806007162,178.1763790315017,177.71576054068282,176.90822699852288,177.30868294509128,177.6259003705345,178.2056772899814,178.60206367168576,179.16646907944232,179.17249427735806,178.59489891165867,179.07641410734504,178.86299869138747,178.20450137089938,177.75246131746098,178.6151211084798,177.69557556137443,177.61295358696952,177.073014321737,177.0641800579615,176.77450752910227,175.77456328319386,175.6121742897667,175.16283063823357,175.08181296754628,175.0476244110614,174.22412181505933,174.80621550558135,174.3265514220111,175.04146770434454,174.55928639043123,174.56670303316787,174.1554659116082,173.22713282937184,173.5862685753964,173.60499901743606,173.2214902364649,173.4670020956546,173.0280999368988,172.9025264037773,173.55185165721923,172.58571268850937,172.43522111233324,171.54108591983095,171.09222829621285,170.71262809401378,170.6923724943772,169.8369191312231,170.32265444565564,170.17452807025984,169.48431891854852,169.5234453896992,169.64501202758402,169.76967633143067,169.13327833078802,168.67808515997604,169.37140964437276,169.59631529450417,169.34239151515067,170.30920005589724,169.92266315920278,169.37568964948878,168.5492510390468,168.50574914878234,169.10289873275906,168.40794080635533,167.5844899932854,167.7059253938496,167.07302485546097,166.94894174998626,167.34387707617134,167.12168439570814,166.2959000361152,166.3832036103122,165.5719044324942,165.12751597212628,165.70700997160748,166.67318620393053,167.50002790847793,167.1249822410755,166.66463294625282,165.95275976741686,165.55028680013493,165.72185883065686,166.6485839909874,165.77702760417014,165.3380832746625,166.2500154278241,165.87185550527647,164.94561824481934,164.87293805088848,164.11649373406544,164.65041899867356,165.4804105553776,165.80731872003525,166.6467584874481,165.94818611675873,166.45211369125172,166.00438289297745,165.58082582708448,166.4051876924932,167.3431856893003,166.40752788027748,166.9668372767046,166.47063089115545,166.00954883731902,165.5391203565523,166.1121015814133,166.77756022568792,167.6470504612662,167.4554082029499,167.20489997090772,167.30885751033202,168.05759299686179,167.9679420045577,168.58210053900257,168.60389390587807,169.54083844600245,170.42721044784412,170.47803504019976,169.7869036612101,169.03894318966195,168.93550492823124,169.90369020448998,169.0183672569692,169.279489452485,169.94925217982382,170.9155713361688,171.33192597329617,172.12616626592353,171.6218136055395,171.50775163341314,170.93549799965695,170.0107204169035,169.57697287434712,170.05957500869408,170.59273723466322,170.93430650886148,170.55529846111313,170.1192569024861,169.16941842064261,169.01405187230557,169.935852908995,169.07569274492562,169.6125046070665,169.20231497380883,169.41046264301986,169.34000373771414,169.77822885056958,170.65747279953212,171.22288291202858,171.35191602772102,171.84803559118882,172.21476663369685,172.01207032846287,172.22925052978098,172.0522482842207,172.2638987568207,171.9508770313114,171.57205586554483,171.60283633088693,171.96071450738236,171.6590263657272,171.46865408541635,172.22944331681356,172.86189560126513,172.55766819324344,172.24964233208448,172.24299476854503,172.98789682751521,173.83627384761348,174.77567572239786,174.13930243439972,173.33147590002045,174.0356827750802,173.78891079872847,173.8687336128205,173.2581850369461,173.3756446321495,174.1433921311982,174.60664062434807,173.666241846513,174.08612304367125,173.8895183983259,173.6210096529685,172.92489639436826,172.8046126049012,172.261085646227,172.3227094807662,171.66110836341977,172.48916227929294,172.48359278822318,172.65061656245962,172.24887491436675,172.79295333381742,173.3958013295196,173.87571546575055,173.18687285063788,172.63196834130213,173.48397082602605,174.2276981761679,173.26673599146307,172.9288027761504,172.80596999637783,172.97903376771137,172.53084372496232,172.926376149524,172.01672516250983,171.2462924560532,170.2468701042235,169.86279102088884,168.87075773766264,169.48728339839727,168.77022827463225,169.642085716594,169.59074686421081,170.53663420397788,169.9709168993868,169.05254946136847,169.22085634199902,170.08249712223187,169.3897058237344,169.5547629171051,169.07091558072716,168.8987643001601,168.2888886393048,168.55732609611005,169.028217358049,168.83657791744918,169.54585401853547,169.90335798542947,169.44217233499512,170.19864950655028,169.20565168187022,170.0937673947774,170.38706193724647,170.2702184910886,170.2647994509898,169.3832975286059,169.3485766206868,170.09974594879895,170.93018349492922,170.10062892874703,169.15690674539655,168.50586056150496,167.810995652806,168.6471356227994,168.07112136716023,168.0495516746305,168.65103578474373,168.52695714775473,168.23651569942012,168.72601509885862,168.1553931022063,168.86748433718458,169.80959769384935,169.8954113968648,170.60488854767755,170.71401623496786,170.4795279330574,171.18283162731677,172.125527465716,172.3631981983781,172.54264650354162,173.29836696898565,172.77415126748383,172.73173206066713,172.7731459303759,171.82878779573366,171.3970957044512,172.0731722624041,172.80330816330388,171.97657873900607,172.62110782321543,173.15798748098314,173.8718748660758,173.79730409989133,174.37936043413356,175.3035992239602,175.6441182596609,176.33338362071663,176.851015008986,176.7065266170539,177.58963954262435,177.43407068680972,178.1545484997332,178.56220326432958,177.70602788310498,177.81904496485367,177.81726954784244,177.27642011502758,176.83585623465478,176.4317110166885,176.05540731176734,175.36927164997905,175.46190064353868,175.17117446660995,175.35727396374568,176.03264741133898,176.25847978517413,175.33775919489563,176.07328315870836,175.78334731562063,175.70779490517452,176.27611948968843,175.9794121477753,175.02638324070722,175.05690171848983,175.19556850381196,174.85500869434327,174.93067421298474,174.97243396099657,174.50406313268468,174.37110453424975,175.23450381821021,174.8549897922203,173.88827433623374,174.2375192688778,173.65769852232188,172.85300958901644,172.59174928674474,171.88292576232925,171.05273931473494,171.3108899150975,170.5187914785929,171.42418557778,171.63033222220838,171.0524009973742,171.54880004795268,170.7184607977979,170.8919076723978,170.0199650041759,169.27162838121876,169.09449426317587,168.70900181494653,168.6162329018116,167.77929209824651,168.6465651472099,168.74418662115932,169.0060762683861,168.33343334821984,168.70375204086304,169.6729682344012,169.51554573886096,169.6137043647468,168.6634999155067,169.1991600813344,168.4062061822042,169.0345121617429,169.2308574137278,169.21599389938638,168.42782016471028,169.0074847494252,168.87116003222764,169.43579423148185,169.48124076239765,170.3643902502954,170.5342946802266,171.34765392029658,171.43077505007386,170.758690292947,170.91854054527357,170.31909411912784,169.79863454541191,170.3044690140523,171.29634724883363,171.1971758925356,171.90998357348144,172.5685914675705,172.25917368847877,172.19632059894502,172.13400364108384,171.45984771754593,172.35047578206286,172.9296293919906,172.06843008100986,172.95892886817455,173.71419892227277,173.3799675111659,173.70845904247835,173.88592025497928,174.09074749611318,173.34950163820758,172.7311311000958,172.79204546287656,173.15626881225035,172.15629018377513,172.19448330719024,173.13319829339162,173.49806588049978,173.64228163659573,173.27601135103032,172.50924671068788,172.2350727180019,172.64380429359153,172.78979485109448,171.97526230383664,171.82918137917295,172.38967752084136,171.874708450865,172.26501603936777,172.61096009006724,173.3288564356044,173.12068249471486,172.6263255737722,172.2693161861971,171.4670139630325,171.3540828996338,172.31551485368982,172.9068074724637,172.10331508191302,173.03770098555833,173.1678900886327,173.50228940602392,172.94531509280205,172.35492591932416,171.80274306470528,171.42664816323668,172.33042824966833,172.58837037486956,171.71224267687649,171.35188559768721,171.98298627045006,172.57739011198282,171.72408922808245,171.59297440946102,172.57884212583303,173.08693158766255,173.2004277072847,173.25580281484872,172.25593085074797,172.69914074474946,173.43618741910905,173.1450929469429,173.74261396797374,174.37369832769036,174.02420249255374,174.8148265038617,174.45881559606642,174.07385310949758,173.55313837481663,174.07353607192636,174.7168963025324,174.37517277291045,173.74551215954125,173.91942173661664,173.26377963088453,174.0636695921421,173.0817395299673,173.96274887630716,173.19806365296245,172.731399375014,173.00570178078488,173.61409568600357,172.95854038652033,173.0009704902768,173.5259578335099,172.53934945445508,173.44077544054016,173.00174611015245,172.9283308396116,172.81596922921017,173.57794184982777,174.5420123199001,174.45358844520524,175.15200959471986,174.62239510659128,174.76543514756486,174.01222673244774,174.23784729419276,174.4884267160669,173.96774803800508,174.6971648694016,175.29567992454395,175.3248850442469,174.66305652726442,174.2437724196352,175.13236099435017,174.76591481547803,174.1658246126026,174.2967695882544,174.53355268621817,174.36041890783235,174.30502159008756,174.1490942449309,173.50309364497662,173.78836669074371,173.20319503964856,173.2500989921391,174.1885038530454,173.33724864432588,172.74612992350012,172.22540643438697,172.6506073931232,172.39460848039016,172.68332953937352,173.61659620516002,173.62193303136155,174.16301240492612,174.00547191128135,174.26228355802596,174.54625165322796,173.68892479827628,174.50028417399153,174.4752537580207,175.04942689836025,174.71767960162833,174.8802323709242,175.2215426750481,175.09819592069834,174.2987808212638,174.75257445080206,174.10878593334928,174.95920676505193,175.5784373227507,176.14525303710252,175.8147568036802,175.52046555979177,175.886371770408,175.89460829272866,175.92961118277162,175.57060093712062,174.73018828732893,175.10328476689756,175.83905731281266,176.3492397959344,176.36537073366344,176.58958482090384,175.64594427589327,174.87271852698177,175.0423397468403,175.92630942817777,175.67778120329604,175.81699672248214,175.27713208040223,176.14902780018747,175.82033711252734,176.06350976135582,175.17670270008966,175.43627731734887,175.68586984602734,174.98473764630035,174.49419745896012,174.02597282268107,173.56852715136483,174.44704856723547,174.56414615968242,173.60421003960073,173.74622015235946,173.45914505282417,174.175456546247,174.6504381368868,174.64388069370762,175.11181955877692,174.64026381075382,175.17535415571183,174.6888518645428,173.93422210635617,173.48997100675479,173.51070415228605,173.46085755806416,173.3972100620158,173.32980455411598,173.82762964768335,174.63743213471025,174.56632096599787,173.7823767689988,172.96656394889578,172.8477929891087,173.54209371749312,174.0619933400303,174.12814583582804,175.04587863618508,174.53887985879555,174.58226653560996,174.73505732882768,174.5875980295241,174.9689511260949,175.36718139238656,176.24552693823352,175.6378487064503,175.93901843111962,176.65773911448196,176.5601907283999,177.53279270185158,178.42960452660918,177.8184934738092,178.8071440695785,179.53134329337627,180.17758865375072,180.85965802846476,181.59836237179115,181.46433601807803,181.2968785148114,180.76449702959508,179.7846742067486,179.9669440118596,179.41652402374893,179.0193748017773,179.7726984010078,178.97155109560117,177.98047403944656,178.25028070947155,177.7333448654972,177.960278888233,178.01873457059264,178.08472603326663,178.03962845588103,177.34702672809362,178.10706257494166,177.1772579094395,176.6596159846522,176.59956784918904,177.35425612609833,178.02719386201352,177.2820929181762,177.67979965964332,176.7542242370546,175.88675561267883,175.35097561310977,175.8570347451605,174.89138610521331,175.39975353656337,175.55505436239764,175.55193142639473,175.58215831033885,175.58305181842297,174.83568612625822,175.7413312299177,176.52327761985362,175.98095513414592,175.40981514332816,174.41924906661734,173.91202538786456,173.7566487235017,173.31579642556608,174.09163400623947,173.5290373940952,173.4994942122139,173.25090834638104,174.24989788467064,174.05289076501504,173.50410601124167,173.36559315025806,172.3936371295713,171.78554360056296,171.3320340658538,170.6832973579876,170.75121630216017,170.3158259987831,169.68388264253736,170.34360456746072,169.6776969395578,169.0646558329463,169.1736050779,169.9336744332686,169.78052125498652,169.28813361469656,169.19692556513473,169.9258166346699,170.02213488938287,170.39144310820848,169.99635201646015,170.78563668346033,170.90178057271987,171.2251170715317,170.59582264674827,169.9381554517895,169.2379184565507,169.6469461233355,168.7218093695119,168.72211514925584,169.50274002412334,170.17325168382376,170.59200624888763,170.7991873160936,171.14811612525955,171.53710387041792,172.00093834102154,172.91415007179603,172.72218176629394,173.29099267628044,172.37734714290127,173.0114959012717,172.93247786024585,172.61389007652178,172.69679614389315,172.10073082568124,172.06157402694225,171.53402270842344,172.3529277611524,172.12890554312617,171.8457507956773,172.12434504320845,173.00848093861714,173.52500651450828,172.61518826475367,172.22072147903964,172.7891472284682,172.47549189720303,172.21209853095934,172.15698269661516,171.41662811860442,171.26274193171412,171.50305064348504,171.85734516661614,172.65886454144493,172.9128168579191,173.68418764229864,174.42752339085564,173.66678730444983,172.97441562870517,172.8144016545266,172.09481607563794,172.88738937210292,172.39344388153404,172.88866941723973,172.08299674233422,171.87421795539558,171.37108527030796,171.26807389361784,170.65524680307135,170.90860410314053,170.4232769072987,169.80107002193108,170.26826704666018,169.41118732467294,168.64744330290705,168.79587103938684,168.07188784657046,168.46201600506902,168.61322856368497,169.3247344964184,169.77822264796123,170.75718450406566,169.985641553998,169.7713739965111,169.1321632838808,168.37057995796204,169.11021230462939,169.6942253797315,169.02408836502582,168.1444084555842,167.4798906100914,167.66660774452612,167.56456395611167,168.01838211063296,167.61964263999835,167.9277973920107,168.02169099496678,168.1917283697985,167.44406788237393,167.44024577410892,167.3931739507243,168.136436117813,167.58965336997062,167.629500658717,168.29478901298717,168.9173041190952,169.40712420176715,170.06311848573387,169.19426010223106,168.68285237438977,168.0747479274869,168.86821217043325,167.92754382034764,168.90934008173645,169.29372607497498,169.8753337962553,170.76810451690108,170.33045128779486,171.17830359796062,171.45589265832677,170.73116197483614,170.89988859929144,171.3353042905219,170.40184650477022,170.10302328597754,170.26201963843778,169.92580851027742,169.74620692431927,170.0309009309858,170.3823843440041,169.5114915650338,170.39114913064986,169.74995268229395,169.4494780059904,169.93522051814944,169.16666214028373,168.6742887441069,169.15112907299772,169.06783951399848,168.53480932535604,169.45870548533276,170.29699902515858,170.58717876533046,170.36513829790056,170.55351219372824,170.56081151869148,170.67173202661797,170.52238911390305,171.34025680832565,170.88285686960444,171.41278811125085,171.3351881033741,171.29310190631077,172.18053799727932,172.07189012644812,172.66503742104396,172.53586305398494,173.15186282992363,172.5316734048538,172.04977416759357,172.4276579148136,171.8704954413697,170.9390202141367,170.74413875024766,170.08043238939717,170.31217669090256,169.4004810815677,168.47887090127915,169.29068857431412,169.47577024437487,169.48204451007769,169.38811330124736,170.3096277252771,170.1436969744973,170.92491475166753,171.73683102289215,171.02974190749228,170.2185016060248,170.3626660327427,170.84691363805905,171.0736865210347,171.44759568944573,170.7116546970792,171.67320352233946,171.35355629120022,171.50752401165664,172.35230612847954,171.89213918522,171.90988082624972,171.5521133695729,170.66618312476203,169.72661876585335,170.4976108018309,169.69529044255614,169.90663272608072,169.9690382196568,170.02733566146344,170.3747498788871,169.3762474199757,170.21709730289876,169.77516064001247,170.11379049578682,169.92856520880014,169.70352295972407,168.97199466452003,168.63670325139537,169.44913942739367,169.6414283597842,169.9276688140817,169.0971193825826,168.24709167471156,169.1268316656351,168.22348543209955,168.6511090323329,167.70951311755925,167.10741831781343,167.46776626212522,166.93107613176107,165.96790580730885,165.00444630300626,164.5797828938812,164.51610502041876,165.04308678070083,165.5778139573522,166.053760336712,166.54045370733365,165.80302098905668,165.2790118837729,165.37730279471725,164.63018033234403,164.38742009364069,164.46838802099228,163.48547757091,164.38397200172767,165.17203139979392,165.39538483973593,165.677658025641,165.74926513712853,164.91743441205472,163.92825668444857,164.81070122821257,164.45378590375185,165.34181535197422,164.6204535709694,164.25523055996746,164.29089821269736,165.10472184419632,165.44199585868046,164.55851040035486,164.3327283738181,163.5333848996088,164.51547167869285,164.28645932115614,163.54617093969136,163.3402384207584,163.0451643904671,162.8152462663129,163.07249522348866,163.34541546646506,163.44865601649508,162.82949316315353,163.7423527194187,162.8693337435834,162.73588043963537,162.7893682597205,162.3922532540746,162.9770001093857,163.91208448726684,163.16661131149158,163.06896727345884,163.13845890946686,162.19762452645227,161.72717366321012,162.3121452224441,162.7229403150268,162.52671223506331,163.35360751394182,162.93694589519873,163.26140905870125,163.21112750051543,162.40595268411562,161.60719956690446,161.05549804866314,160.24461695598438,159.4114043135196,159.342310664244,159.17125141108409,158.32704000733793,158.98065780662,158.44034291710705,157.66899940324947,158.48081683786586,158.76643469603732,158.73992748139426,159.44153262395412,160.2977806548588,159.54402817226946,159.72550595970824,158.9145672149025,158.45347427483648,157.66199218994007,157.33987198164687,157.88557483255863,157.43209716165438,156.48265384417027,156.16097533004358,156.4076333544217,156.65975884441286,156.2833580886945,155.69304784666747,154.9674597014673,155.61941347038373,155.92866975348443,155.96809518150985,155.82334433915094,155.97007895074785,155.99648097343743,156.3978651133366,156.65968580823392,155.9164497605525,155.36800617119297,155.3000999437645,154.58272502711043,155.07154229003936,154.6362259518355,155.19216953823343,156.03103452036157,155.6472248248756,156.44553140178323,155.99119414715096,156.4980907277204,157.20472487434745,156.70704516628757,155.89292029850185,155.24311219668016,155.7949523627758,155.6413005758077,154.6941600702703,153.73544999631122,154.0331091331318,153.1714104777202,154.14080921933055,154.7751790410839,154.1856076270342,153.8959511211142,154.73761196807027,153.88729588640854,154.51978081697598,154.96994917280972,154.6933646099642,154.34281362080947,155.09527276968583,154.1471964600496,154.88786387024447,154.17371924500912,154.89707928802818,154.71562603116035,153.87011935841292,154.351324188523,153.80803241254762,153.87551363604143,153.70840415498242,152.99825794249773,153.85726664122194,154.55965360300615,154.90791571093723,154.0269670416601,154.49350435147062,154.68402802525088,154.06630911165848,153.5932031115517,154.57578919967636,154.22952612536028,154.15366493118927,155.02007615286857,154.7485764650628,154.1933947117068,154.3851897176355,155.14105462795123,155.47152459155768,155.9081801394932,155.1389466417022,155.2197148972191,154.57786638429388,154.400807519909,154.5052231932059,154.478267993778,154.7839143308811,154.5110783232376,153.70961410971358,154.2267443658784,154.42482105828822,153.96543733170256,153.19956310559064,153.9843588573858,153.16792211309075,153.50124099804088,152.74799920385703,153.37988859508187,152.77333539398387,152.11190253077075,152.99552997015417,153.2370278746821,152.37775555858389,153.16252356907353,152.52165527874604,152.0327877146192,151.63516876101494,151.54789836518466,152.54668646026403,151.88048918405548,151.37795976921916,150.77772504277527,150.65557472314686,149.81354574207217,148.8642517752014,149.03259481163695,148.7133749742061,148.8832513950765,148.00799254747108,148.70164037588984,148.6546334195882,147.67296729888767,147.86923796404153,147.75237364787608,147.74844304425642,148.27681866567582,148.23757136519998,148.58399634249508,149.30749851837754,148.9441422484815,149.94354900205508,149.4258804055862,149.4545100503601,148.99953900137916,148.77370389457792,149.4805881464854,150.42868140153587,150.0100354021415,150.2888727239333,149.43619291391224,149.17605838319287,149.51048901584,149.84585708286613,148.9973279060796,148.2512737638317,147.87423050403595,148.7007496561855,147.99947725469247,148.28839897550642,148.6585187301971,149.0914415740408,149.67223995598033,149.92269885912538,149.77874193899333,148.86045348504558,148.66238763323054,148.2222476163879,147.4917373843491,147.4086024449207,147.31490240665153,147.01191852940246,147.36850639991462,147.13329718308523,147.67217675130814,147.1131552536972,147.16120603261515,147.67336041014642,148.4272343320772,148.20972118433565,148.16497888416052,147.35858484730124,146.43373179761693,146.35256026638672,147.3295525838621,146.5102827665396,145.7725501214154,144.8955972865224,144.53144009318203,143.74265315616503,143.3275269488804,143.0886729201302,143.69389625033364,143.0661544110626,143.58188644051552,144.24978522211313,144.17658114759251,143.388239255175,142.57977510336787,142.31660378398374,142.3099053534679,141.62385949864984,140.72746847197413,140.1839167936705,140.17287954781204,140.92181334551424,141.20793005730957,141.33953811600804,140.8117940411903,140.321873488836,140.9811862455681,141.03101179283112,140.376664057374,140.1658844705671,139.3718462307006,139.24846834735945,139.50443037599325,139.35202430328354,139.37435619859025,140.32961098197848,139.73482812196016,139.09106343332678,139.22438922245055,139.84256216324866,138.92079697875306,137.99605165841058,138.71298917848617,138.67522950842977,137.8368133935146,137.65570977376774,137.23134668869898,137.6994555639103,138.31022111233324,138.94636199856177,139.54956104885787,139.23869359260425,140.12441377760842,140.2449894421734,139.44593599066138,139.52412142418325,139.90631088614464,140.86161198373884,141.11124970391393,140.2716658511199,139.47039584396407,139.95588161237538,139.3083363287151,139.97136250743642,140.96917375875637,140.5808670767583,141.20556748984382,141.08580550039187,141.05236911820248,141.0640096408315,141.80951627716422,140.9121350790374,141.87067791307345,141.04190224176273,140.44823714438826,139.828657170292,140.68400174798444,141.07508827513084,140.1889051096514,139.48884027451277,139.86090072244406,139.91473319008946,140.4270944390446,140.76445611892268,140.41351314960048,139.52080312604085,138.85046160547063,139.180679440964,139.98254323052242,140.80165821360424,140.01040367083624,140.19205045886338,140.31766330217943,139.53933791350573,139.11492521408945,139.70626352215186,140.51035646349192,141.24659312237054,141.7581470841542,141.65623272350058,140.84270917018875,139.87334882235155,139.40748511068523,140.11601182632148,140.28085612365976,140.8980155820027,141.82386701600626,141.34270004136488,140.74481684621423,141.33683234546334,141.92650228366256,142.36645439453423,141.53739407053217,140.93367112148553,140.7117379666306,139.99563379213214,139.26688525965437,139.2256183209829,139.90952485380694,140.09869332704693,140.55176172219217,140.85613507730886,140.3994744028896,139.88198627484962,138.95045018848032,138.66457765502855,137.88460948690772,137.46137009561062,137.75790458591655,137.8760390379466,137.41380249569193,137.20110743120313,136.95076972944662,137.45213229116052,136.5186376646161,135.5366644533351,135.73302598576993,135.4033125853166,135.20468018529937,135.02172631397843,134.4793065264821,135.21935958741233,134.78352000098675,134.38554626656696,133.7868254268542,133.90415646135807,133.912569089327,134.68192229419947,134.36159583413973,133.64079020824283,133.88803647039458,134.26278718095273,134.9419778175652,134.27667094906792,133.44279095344245,133.30453478405252,134.09046243084595,133.736276127398,133.75728036928922,133.6506162621081,134.5361873311922,134.0880140629597,134.16340137459338,134.32141067879274,134.50004872726277,135.25922325719148,135.5152973374352,134.9696133863181,135.14547406882048,134.3751407447271,134.06068366253749,133.39662014646456,134.0413752393797,134.96920131752267,134.51699931779876,134.35720016248524,134.59141524555162,134.93748687487096,135.52259575016797,136.40753956185654,136.8782718977891,137.0947782881558,137.78129956312478,138.5351625951007,138.8022001767531,138.55410844180733,139.29580543749034,138.7641151957214,137.7814451274462,137.9680462735705,138.7612441093661,138.81328193843365,138.52571647102013,139.4691883996129,138.63291091891006,139.21883746189997,139.48156629083678,139.23537074122578,138.50722552090883,137.85968490643427,136.91535959206522,136.6206962945871,136.870645230636,136.87744541279972,136.63870975282043,136.1077399183996,135.98602853855118,135.18808913137764,135.69694870477542,136.66368747269735,136.32415826059878,136.32093815971166,136.88928446080536,136.26204328611493,136.4978181477636,135.7211752878502,134.87601277325302,135.56642865994945,136.38491510599852,136.51396759599447,135.9863873673603,136.5192150780931,136.2855858965777,137.26771953282878,136.36077947635204,135.6313093174249,136.45110095478594,135.97941133007407,135.3742327336222,135.79200548445806,135.42717615654692,135.28510512039065,134.96495629055426,135.58669111225754,135.96448305388913,136.18565543415025,135.32038111891598,135.17387571465224,135.89040847495198,135.18498048651963,135.52522974368185,136.50146080506966,137.12607806781307,136.99248273903504,136.18298250250518,135.7826593243517,135.3691857648082,134.72814481519163,133.89114707661793,134.4411790696904,134.22437279950827,134.690763882827,135.16221080813557,135.43766241893172,135.5842126039788,135.02652063127607,134.34259083727375,134.6164929815568,134.41979970782995,133.50222407607362,134.268800964579,134.2512835324742,135.17391100339592,134.6179326302372,135.4323427141644,136.3253220305778,135.38490493036807,134.4572266326286,134.61046008206904,134.44147965870798,135.09472034918144,134.78327886667103,135.37545414362103,135.6623830953613,135.28299582283944,135.78533239057288,134.7988494397141,135.0669518141076,134.8537918748334,134.38296095421538,133.84006877010688,133.06454466143623,133.99353569373488,134.62525654863566,134.4364148392342,135.3838628665544,135.39841983746737,134.56189880752936,135.35523380991071,135.38690562499687,136.15384034533054,137.14316660305485,136.5203580907546,136.480855432339,136.90222746226937,137.79191985493526,137.95229369821027,137.68394193565473,138.05114161409438,137.1296548442915,137.8109117592685,138.6962288073264,138.76616707304493,139.3376817079261,139.56145436363295,140.2214783350937,140.27557812724262,140.32544808695093,139.79393436666578,139.19312877114862,139.70896789478138,139.99147865502164,139.98610251257196,139.7668878827244,139.26016785064712,139.10197099624202,139.25551073579118,139.4587478544563,139.03713563922793,138.6519363350235,137.69434962887317,138.1722897910513,137.83929595397785,138.53802792541683,138.47199659328908,138.9855052405037,139.01072772499174,138.86025054426864,138.65322670014575,138.51138704828918,138.1431032945402,138.19336359854788,138.35136898886412,137.57248116936535,137.77370570134372,137.67601807555184,138.65438528265804,138.35718108015135,138.91925192484632,138.6615650439635,139.10973268793896,138.61911624483764,139.34737696498632,139.9785159546882,139.68175368756056,139.6814858512953,139.17785666696727,139.47945446381345,139.3783449055627,138.88278968725353,138.9747847225517,139.89389340160415,140.24120121309534,139.84672222379595,140.16126343794167,139.89205976575613,140.22697753738612,141.20571618760005,141.9896604474634,141.98594097886235,141.29208255466074,140.3424822948873,139.37442778982222,138.93131041014567,139.23944810358807,138.66243460774422,139.02349870698527,139.36127319931984,138.5078244227916,138.57845712499693,137.8850155491382,137.0315809380263,137.98904824722558,137.33873638603836,137.6286409040913,137.4812838304788,136.70577099360526,136.38955655833706,136.82255269074813,136.57393732201308,136.38443787861615,136.36661405302584,136.93811676604673,137.50145177962258,137.97458083648235,138.9087991276756,138.73028752347454,139.4469278715551,139.10495038423687,139.63846326246858,140.0752889928408,139.77299563819543,140.38094062404707,141.12101889122277,141.05125122936442,141.3310819240287,141.76987370522693,141.87357691442594,142.44896157458425,142.2899911380373,142.46403101459146,142.63075566664338,142.3530709114857,142.9211810491979,142.98096013395116,142.89418123662472,143.8129735412076,143.27681018272415,142.9669178435579,143.89095831708983,142.9209519336,142.6151146669872,141.6636312333867,140.75786834722385,140.88151797745377,141.67343502677977,140.8176394328475,141.63081761589274,140.99526152433828,140.12877769581974,140.76871459791437,141.27681798720732,141.64753371942788,141.5863361256197,142.17702585738152,142.89538590144366,142.78435212466866,142.61027338262647,143.18762060673907,143.77578590018675,144.439014013391,144.24125336296856,144.35097270039842,143.39620180381462,142.5345221143216,141.92104566656053,141.72224471252412,141.75227765040472,142.72175923315808,143.05824089655653,142.75688175857067,143.35162678686902,142.90334979631007,143.247271460481,143.70915850251913,143.00324153946713,142.69589333469048,143.29030633624643,142.8970541660674,142.85271255113184,143.211428925395,143.85339168831706,144.82124312315136,144.21200571442023,144.19020700268447,144.60846375580877,144.1503309640102,143.169507953804,142.96684967493638,141.97510216431692,142.3933220328763,143.39175981469452,142.63014686340466,142.7244829479605,143.13327581854537,144.0023200456053,143.27696574805304,143.52525538159534,142.61689582979307,143.18768180301413,143.5678835338913,144.5227469136007,143.85208469629288,143.91918783681467,143.49362954916432,142.53590547386557,142.7726003904827,142.42700703488663,143.19685119297355,142.3674525860697,142.37237065145746,141.78729228675365,141.64501185901463,141.15494472766295,142.1131952763535,141.77082501584664,142.38321866933256,143.1110886815004,143.65957784792408,144.10549865942448,143.74060761881992,144.38607392879203,143.76996001042426,144.08094877470285,144.13881356315687,143.9301367807202,143.6297357622534,143.59266178822145,143.32009455142543,142.9144301423803,143.72051314497367,144.36661078035831,144.7047428432852,144.72323579480872,144.72387282410637,145.6619126307778,144.69998836051673,144.3566587837413,145.01979462103918,145.9055274790153,146.02007118286565,146.26111153606325,146.57243459811434,146.70131379226223,146.94257660303265,146.55093196500093,147.49229858629405,148.457500400953,148.2632262534462,148.29085188684985,149.24722920684144,149.76983570400625,149.38271674793214,149.9030667631887,149.9133293009363,149.9381693820469,150.73292278544977,150.34145923471078,149.80533176008612,150.65467990748584,149.69089676253498,149.95078638894483,149.24139937153086,149.45882154302672,149.4282456804067,148.78299217810854,148.75536337541416,149.7314802352339,148.9665521136485,148.03375388123095,148.34594583837315,149.33360436325893,150.1623520096764,149.63711332948878,150.57699485635385,151.22331376420334,151.37433753814548,151.5512491632253,150.8437256505713,151.2637595566921,150.6267041270621,151.3531178496778,151.31383210746571,150.9541899934411,151.77020314428955,151.63791933003813,151.33941873768345,152.13506629504263,153.04303003428504,152.41795584047213,153.38859917689115,152.98337735934183,152.70879549812526,153.043223306071,152.3018373819068,151.68461885675788,151.28797740815207,150.32635470945388,150.97136306995526,151.02736761327833,150.03294059308246,149.69346962869167,149.87420356459916,150.79120362270623,150.4027419006452,149.70099675562233,150.16034596739337,150.81135921180248,150.57836349820718,149.9584374818951,150.62926488975063,150.51404946111143,149.63567990530282,150.12170842848718,151.09266988234594,150.64100298285484,151.3942520674318,151.79616901371628,152.74914120556787,153.5665490613319,153.04232470411807,152.504655609373,151.65481553971767,152.5156943257898,152.067062178161,151.43424998782575,151.77917274879292,152.16971681825817,151.8704223781824,152.7063573691994,152.69236382562667,152.96021171752363,152.82882956322283,152.740294970572,152.6596400900744,152.70870614191517,152.354500815738,152.33167088311166,152.5358393364586,151.9522541463375,151.17326615424827,151.65735175507143,152.13795651728287,151.94632975198328,151.84167818631977,151.06972032319754,151.42419389588758,151.02308602398261,150.51469435170293,151.0745895593427,151.06929412996396,150.9256156925112,151.02988084359095,150.6415857761167,151.12865932565182,151.8064476409927,152.15153482044116,153.15096883056685,154.12700935592875,154.55640750797465,154.32842762675136,154.73947840044275,153.8455613637343,154.0490018329583,153.97712485864758,154.8647732832469,155.02374446485192,155.26842306694016,155.8159478600137,154.82422076864168,154.9833019087091,155.6013647741638,155.66216277889907,154.81139914738014,155.37550395261496,155.6567806317471,154.9438527249731,155.77577090123668,156.55277945753187,157.2878169012256,157.08710178686306,157.935475171078,158.30662139272317,158.8422895441763,159.46517216553912,160.00463028624654,159.24291250761598,160.16247110441327,159.31222566543147,160.12593692354858,159.70651272311807,160.27820996474475,160.20254875253886,160.33900266233832,160.06267390865833,159.81464872602373,159.47146325791255,158.65018827142194,159.37460074014962,158.87298985524103,158.4725314672105,158.59542031027377,159.10496059339494,159.55957993399352,159.76862825034186,159.65206125564873,158.74424037756398,157.87533477786928,156.88039397075772,157.75898353662342,156.77149408543482,157.05411328887567,156.49517339421436,157.03380687022582,156.8910956052132,156.4581473446451,155.8247471600771,156.02420932240784,156.46027746377513,155.61241104407236,156.56015191646293,157.1653375462629,157.4198367195204,158.12295597232878,158.29652738012373,157.41655005374923,157.0623521222733,156.1404788158834,156.9551625866443,156.3519757031463,157.23451531445608,157.74044161103666,157.92108442634344,157.30236581340432,156.84107750281692,156.14738525962457,155.31104905810207,155.1641645198688,155.2545988340862,156.18920624163002,155.7445042715408,156.57030799333006,156.76041797874495,156.83863120526075,156.56365376524627,156.2764796372503,155.37123015429825,155.75914074620232,156.64170015510172,156.9676724136807,156.99498246703297,157.35159232094884,156.66849926114082,156.97167036077008,156.4843366262503,156.66487171594054,156.02210044534877,156.71772454679012,156.00853803940117,155.95706903003156,155.1428680215031,155.87287529697642,155.12717307917774,155.29163980018348,154.60803091851994,154.97697237692773,155.31026791827753,155.1725150551647,156.05572636658326,155.97676114924252,156.82669584499672,156.29389625415206,157.29121463978663,156.57035526260734,156.3634570473805,155.57004284113646,154.84877710416913,154.96615988435224,154.34715011250228,154.68253042921424,153.68440876016393,153.9781970428303,154.7599906148389,154.5846680868417,154.21095374878496,153.69941848004237,154.49209259916097,155.15348193747923,154.18239037366584,153.44959859922528,152.56173880770802,151.95410056598485,151.09363496489823,150.7432627105154,149.90449083410203,149.9479144467041,150.44482657127082,151.14952593296766,151.00956061016768,150.15128971077502,150.46828569984064,149.90176545782015,149.17958727292717,149.42735207965598,149.73682466195896,150.6783897210844,150.63937082421035,151.18674469459802,151.58287874842063,151.89267460582778,151.52229193411767,150.84235626505688,150.2323292675428,149.23749724589288,148.94810635969043,148.04929950181395,147.107953726314,146.20034839352593,146.45829498255625,145.84060392482206,145.1838928423822,144.2521676691249,145.21878203796223,145.21794400690123,145.8677222286351,144.9222428444773,145.03139320015907,145.183931409847,144.83515142137185,143.97079892503098,143.02199675468728,143.4796854937449,144.4298814656213,143.83395985607058,143.35591609077528,143.47745565883815,142.97218621568754,143.65725519927219,143.16273576719686,143.00609914772213,143.4191546086222,143.35884017730132,143.81620053946972,143.61501979874447,142.7102676909417,143.19839864131063,143.46178442332894,142.5206099525094,142.41049674991518,143.1799455084838,142.20554017601535,142.7614957387559,141.8805024428293,142.33152766199782,142.6093162652105,143.12496815947816,142.6088019395247,142.40772673673928,141.54383947746828,141.58378986129537,141.7419727430679,140.96682145819068,140.65094345156103,141.42224675649777,142.13958436530083,141.29984024586156,142.06294857151806,141.8647650689818,142.67123821331188,142.32203478273004,141.9779005004093,141.20309685682878,140.27172569232062,140.38996335398406,139.4560476723127,140.32113843690604,140.23495967732742,139.6106258709915,139.07750266697258,138.98712951457128,138.5827427697368,138.6538975010626,138.04686949867755,137.49395052529871,136.93776990426704,137.08210682775825,136.15058115497231,136.98150171572343,137.3966295560822,137.84987401636317,138.51401116279885,137.81562077905983,137.4631148893386,138.3049050164409,138.58113764226437,139.27163619035855,140.21783022163436,140.34945761412382,140.272982402239,139.32078815158457,138.80120392004028,138.3639757875353,139.13556736335158,138.258691592142,139.02655151020736,138.879065990448,139.19988688314334,138.40614012256265,137.58461309829727,137.97093070438132,137.83645274769515,136.9253286314197,136.01811585668474,136.96157328877598,137.84585551451892,138.01225961884484,138.78977088071406,138.5888481317088,137.87674902239814,137.4088694578968,137.2372013218701,136.3159826504998,135.98852167185396,136.6807192582637,135.87841372285038,136.45927864452824,136.1399790002033,136.83596211439,136.48796791024506,135.72600912768394,136.42889878805727,135.97767771221697,136.7836019047536,137.578880851157,136.91573460260406,137.690689872019,136.84898994956166,136.53323475597426,136.8555422113277,137.5332293305546,137.19525364600122,136.32343884836882,135.3658090545796,135.67242836439982,135.7508505070582,135.3963350839913,134.8039501812309,133.9955502511002,134.57256315927953,133.95376459462568,133.43614242831245,133.1569410013035,133.2339152339846,133.32608999917284,133.35596114536747,133.69412926305085,133.0438216761686,133.83216503076255,132.85610143002123,132.74921120656654,132.29104159167036,132.66713093174621,133.35133234318346,132.54439718089998,132.71263306075707,133.18226541392505,133.41135543957353,132.89356863079593,133.68003505188972,133.64340895228088,133.72799934493378,133.39322599070147,132.87382866581902,133.20299791544676,132.3012910732068,131.80768383247778,131.27454058872536,131.81397151667625,131.4013253240846,130.9359138123691,131.5550607838668,132.13611329020932,131.5216941544786,131.48743184190243,131.87855290109292,131.3036209368147,131.70581677695736,132.24329563975334,132.32200110843405,131.61531771207228,132.48928246228024,131.48991475021467,132.15506391506642,132.2164457216859,132.11932474048808,132.30578130716458,131.64649089053273,130.77928151842207,131.21823514206335,131.35023057553917,132.01034200564027,131.22746509872377,131.7815446560271,130.88747765589505,131.41629656217992,131.713179634884,131.46780646499246,132.34397077653557,132.88483289722353,133.79137276951224,133.70638495869935,133.97065663151443,134.2399891121313,134.92662935517728,134.66030601691455,134.46005419734865,133.6020812834613,132.75114258239046,131.83319179993123,131.70983530394733,132.36370433913544,132.6663669445552,133.38784860586748,132.4231706475839,132.33667700504884,132.49750168900937,131.86564812297001,132.50719229178503,132.00417236890644,132.57239896198735,133.348406502977,133.3969344617799,133.32785507431254,134.13496126327664,133.1429286589846,132.76327376952395,131.99749120464548,132.15980688482523,132.02372700022534,132.62302587879822,133.01521441014484,133.284167798236,133.822165615391,134.02127812290564,134.6794001031667,135.28316871495917,135.51874818559736,135.67815035162494,136.0363727635704,135.9066430274397,136.70849726116285,135.88857734389603,136.38014787249267,136.681785503868,136.65767577523366,136.06102770473808,136.57956450339407,136.7244383674115,137.10822191787884,137.11235476378351,137.19706971850246,137.6973609365523,137.2038516625762,136.31159350275993,137.0180073096417,136.90107225161046,136.861846444197,137.6260001710616,137.4449850092642,137.98537339782342,137.26434439094737,136.3684792900458,136.80261787492782,137.5476238084957,136.89326559798792,136.64728242065758,137.0777934100479,137.25596077600494,137.53468187339604,137.88584105158225,137.02489908784628,137.3753342605196,137.21184841683134,136.56437775632367,135.73208797117695,134.92818942666054,134.1442458825186,134.7804925814271,135.66518111620098,136.29422459146008,136.15412544971332,136.26095587853342,136.43319642310962,136.48644859809428,137.1162228109315,137.06252942141145,137.28758895909414,136.45220521185547,135.91535499831662,135.93425121949986,135.78943001898006,135.2050132486038,135.36785476002842,135.97938284790143,136.17523710336536,136.65340964728966,136.4878831487149,136.95215562358499,137.19684103922918,138.010722624138,137.47899001277983,138.46000557253137,138.6414209837094,139.47043586336076,138.91449415497482,138.07379489578307,138.2877893364057,139.13276864541695,138.6400118842721,138.85565878963098,139.70344604784623,139.98986695660278,140.71801659977064,141.69041372276843,142.2600428527221,142.7868205406703,142.9141978896223,143.47536457376555,143.67936732806265,144.2688280446455,143.90176917612553,143.08735377900302,142.33364843716845,142.8791844462976,141.90940691903234,141.4726041792892,140.9502104735002,141.5082353251055,141.30776203190908,142.04658958734944,141.48789729783311,141.40224323421717,142.26983537804335,141.9901650515385,141.4275752454996,142.1154247187078,142.44949290622026,141.4598032622598,141.16247894149274,140.41770226787776,140.66444136947393,140.06160973198712,140.71791084017605,139.85219748038799,140.31839744513854,140.81453471584246,141.20201726071537,142.10841706721112,143.0268549695611,143.60589644825086,144.23620983259752,143.7590767433867,143.73482533358037,142.80447559943423,143.52932280674577,143.65242058923468,143.6487362952903,144.2006811001338,145.15184508543462,144.7605076227337,144.1515453197062,145.05507951928303,144.94548986433074,145.48836441664025,145.31814226601273,146.2001813738607,146.6461405577138,146.63616934139282,145.69682942843065,145.43959958525375,145.0928839747794,144.37746097752824,143.5621322952211,143.78133093193173,144.40825494704768,144.84655187884346,144.92288362886757,145.1075365333818,145.9683528561145,145.2024541888386,144.89498607814312,145.04896879661828,145.6012861765921,145.13398412242532,144.77888085041195,144.2116048121825,144.68849989399314,145.6557727935724,146.19746502349153,145.95840901089832,145.75307282619178,144.79743415070698,145.54384153848514,146.2118653212674,145.38794720219448,146.19464039243758,145.37933512963355,145.68480935366824,145.08708747290075,145.26339208567515,145.82128637237474,146.7432934162207,146.3176955091767,145.71636349568143,145.6130728740245,146.13175862748176,145.25841555092484,145.47417745925486,144.52771387062967,143.84203680418432,143.0160328890197,142.02356733568013,142.88499649846926,143.07611420750618,143.18888884596527,143.1938576446846,142.22962541226298,141.76449678605422,141.7291974797845,141.4943263665773,141.38595316419378,141.00055700959638,140.21784466411918,139.71725117601454,139.63957099616528,139.79471708415076,138.955503763631,139.20181630179286,139.03953614551574,139.01174106355757,138.64962687715888,139.3108358317986,139.6958341356367,139.54250943055376,139.23041405435652,139.88026453973725,139.4976573381573,140.29433947056532,140.45047329179943,140.2742429994978,140.5661363224499,141.46964403847232,141.05833641858771,140.80027780821547,139.8748206361197,140.10403192415833,140.95186327490956,140.6769357942976,141.64608235191554,140.8640349325724,141.19833075581118,141.70337636582553,141.0978757282719,141.7433933308348,141.84473414858803,140.9758349689655,140.19667681632563,139.4296909980476,140.42256129626185,140.93113469751552,141.55843306472525,141.21020812354982,140.2424835250713,139.57493494683877,139.8924320116639,139.19473686628044,139.41566710546613,138.9722814471461,139.7201062371023,140.22718723583966,139.33271365705878,139.77457348862663,140.5074092503637,141.3007300090976,140.3130276245065,141.2023644396104,140.44327377947047,140.34665226237848,139.93560027331114,140.0497888964601,140.8997642607428,140.6384286847897,139.79423353262246,140.09997222060338,139.8784004864283,139.25759998057038,139.85788906086236,140.42475602123886,140.39428415335715,139.81882056919858,140.21198758576065,139.59012838359922,138.6848101001233,139.5256835827604,138.90486553311348,139.4972005407326,139.45906069036573,138.8180779637769,139.28124270495027,138.49906393652782,137.76837155316025,138.1126426840201,138.51142118964344,137.51701560383663,138.11164412787184,137.1324130129069,137.0602539810352,138.03549836110324,138.41293486673385,138.56691200006753,138.77293335599825,138.10391856636852,138.17993243876845,138.14182314509526,137.7999890507199,138.35386252077296,138.5211982340552,138.54377100337297,138.94640073226765,138.4703702828847,139.2947155283764,140.2703935042955,140.4592212261632,139.99701517215,139.65254016360268,139.36912087537348,139.16551903449,138.58816473418847,138.958680187352,138.690513222944,139.04039241932333,138.32400100072846,138.09232137724757,137.31052082125098,137.6280228071846,137.387974136509,138.0070505416952,138.00298757571727,137.456366722472,137.64413504535332,137.4119990686886,137.82346117356792,138.13267088355497,137.7572446409613,136.7918456485495,137.2709634117782,138.16414953768253,138.41241180803627,137.44202960422263,137.4999363804236,137.07964848494157,136.30841396050528,137.08243483211845,136.44586856057867,136.61222012108192,136.0834199693054,136.04974803701043,136.16622895514593,136.96060847584158,137.69023084733635,137.3613197351806,137.26719244755805,136.89240281563252,136.56915829423815,136.5972063820809,136.51174024306238,137.41346020856872,136.58044640440494,135.79371227230877,135.05528385657817,135.24395472928882,134.319464398548,133.63761889468879,133.2589054722339,132.60037113213912,132.4054893888533,132.8720352789387,133.79958295403048,134.31242688465863,135.27613088442013,135.5111644915305,134.84997703321278,134.98065257258713,134.95229491917416,134.68398632016033,135.15582645265386,134.22250282065943,135.09900458808988,134.68102558609098,134.87589297816157,134.4142880155705,133.8470588666387,133.10361964581534,132.7532157972455,133.7371849832125,133.40926263760775,133.33703363640234,133.55744648864493,134.4773428044282,134.03440969251096,133.99193747900426,134.21845637494698,134.42554843332618,133.45077824685723,132.77722483687103,133.03260601032525,132.48380078328773,131.8003723421134,131.39626515610144,131.09065986145288,132.04492432437837,131.1328629818745,130.6844701883383,131.19251791806892,131.7073143008165,131.08145238133147,131.27058565570042,131.52000450482592,132.21080645220354,132.1443261425011,131.29688679100946,130.42146302293986,130.24529625289142,130.33492830162868,130.67635171720758,131.56487424019724,131.0466902232729,130.09619809454307,131.0949985734187,130.22889597713947,130.83466073917225,130.44391141086817,131.30775919742882,132.01508659031242,132.51583941839635,132.6162191098556,133.51075837668031,133.1164632961154,133.6251822039485,133.13926122663543,133.30935088079423,134.07796721486375,133.28118319343776,132.90166914835572,133.23692362429574,132.49164884118363,132.17075118981302,131.63591742422432,130.77572107873857,130.74026234587654,130.18834834452718,129.66229653079063,128.68324273265898,129.58452598843724,130.02382617397234,129.03233371628448,129.8724684752524,130.2096498068422,130.56932537816465,130.51297817425802,130.6938949166797,130.76554209645838,130.32485212478787,130.1749621606432,130.61475821351632,129.93429843708873,129.67929018009454,129.93129821307957,130.5590052679181,129.99741064896807,130.48847615998238,129.56501244194806,128.61610964685678,129.33515223534778,128.8647255213,128.16932840412483,128.93634298164397,129.20700889918953,130.18388630636036,130.3672176040709,129.45247144065797,129.73529866477475,129.90315389912575,130.7136134854518,131.34846000745893,131.12192438775674,131.93496970599517,132.27112132217735,131.80526158260182,131.16306811245158,130.7709747045301,130.33901068381965,129.93458783440292,130.12741865869612,129.5601866436191,129.00123166944832,129.71954694390297,128.91676853736863,129.64877768186852,129.17223560344428,128.67132293153554,128.6326932478696,129.61818022746593,129.91309761768207,130.88901503942907,130.84972956916317,130.2427922305651,130.8558277147822,130.89849065896124,131.7722120792605,130.9869435885921,130.09864305797964,131.03448964562267,131.68601548392326,132.41632508207113,132.96630763961002,133.05598137434572,133.14960743114352,132.54653726518154,132.3589994981885,132.5252709207125,131.99800730124116,131.44208745704964,131.7762177218683,132.1010896405205,132.3496647318825,131.91053204797208,132.08067954704165,131.6679155291058,131.52280752826482,132.07324259215966,132.50744847673923,131.6744685084559,131.0378148308955,132.02858598530293,133.0046985000372,133.24746047891676,133.75120256189257,134.11049286695197,133.28380386903882,132.31699353968725,132.58048019604757,132.30269143590704,132.6072913664393,131.8807609998621,131.12629229202867,131.17211481183767,131.8247417784296,131.00051901256666,131.64524950506166,131.48440820071846,131.09111679391935,131.44117032317445,132.25380137143657,133.1874529849738,133.8652032436803,133.61752624390647,133.54281057603657,133.66583863878623,134.50705833919346,134.24199795443565,133.63077309541404,133.17853333894163,132.48551651183516,133.1359990411438,133.4423803910613,133.12042857334018,132.70558552769944,131.77216138970107,132.26491625187919,131.98272032802925,132.81946813175455,132.040061684791,132.04173101019114,131.1678781248629,132.16251508286223,132.3941708318889,132.40176277933642,132.71089312573895,132.31300756381825,131.64011261379346,130.78849665261805,131.10696149943396,131.91589876636863,131.22169798519462,130.87861838936806,131.55217044474557,131.30513285985216,131.7169631686993,131.5483822291717,131.88023087009788,130.9756644871086,130.38470058469102,130.5967226563953,130.96647375635803,130.5794637510553,129.77080890908837,130.42873282078654,130.0230633476749,130.09953334880993,129.2698434619233,129.051875367295,129.1329539786093,128.3821845636703,128.35528701497242,128.09631223790348,127.31294096866623,127.65188026381657,127.11923302151263,126.56928143510595,127.02164085302502,126.68279126193374,126.59678820567206,127.52152102161199,127.43793764198199,127.53710206178948,126.9313795696944,127.54491246910766,127.85881479969248,128.83865749370307,129.78353391774,128.87913132831454,128.39224858861417,127.53883659141138,127.53055869461969,127.47161971358582,127.21986697148532,127.99282697215676,127.25523958727717,128.22374166408554,128.44594194507226,127.75372828403488,128.70548361400142,129.31705047935247,129.14409464923665,129.15404973411933,128.36793933110312,129.04962443001568,128.72183973202482,128.9793370179832,128.46661384077743,128.8572271745652,128.60327706160024,129.11139403982088,129.16165745723993,129.36128342570737,129.9817318599671,129.94021263206378,130.22675381880254,129.77485911455005,130.60323261888698,130.07185959583148,130.51303754141554,129.8808603240177,129.2446825443767,128.66526347212493,128.9171989564784,128.90156078478321,129.7040906320326,129.89801081549376,128.95694927498698,129.23540058964863,128.52303562033921,129.21422664960846,130.13115461310372,130.4474344518967,130.10633455077186,130.40459294896573,130.35364923020825,130.71327470429242,131.31199916033074,131.03421097341925,131.07498428737745,130.07524553872645,130.93161045294255,131.90426856279373,131.09825539030135,130.1047189384699,130.51347899017856,129.8028859551996,129.0778115093708,128.22883892524987,127.50371889490634,127.04531028307974,127.28135374374688,127.13216247828677,127.98827242385596,128.62463291548193,127.90578889567405,128.75522656319663,128.46623380854726,127.90033111255616,128.05866782553494,128.06272672628984,128.8682966590859,127.99071745527908,128.88072386430576,128.0242330757901,128.6151312654838,128.75164640927687,127.77658023312688,127.49154990399256,127.06620622379705,126.95703641930595,127.12296342290938,127.52102150814608,127.5079903784208,127.15613365080208,127.00432062428445,127.32396731805056,127.84283028217033,127.10754473274574,126.90451717423275,126.7404152546078,127.26494831265882,127.83785382611677,127.9551842296496,127.52741863392293,127.09085505781695,127.3503545448184,126.4013218972832,126.1677786144428,125.50096622249112,125.34079430764541,125.80058459797874,125.4181809425354,125.78073830483481,125.57677661022171,125.12100883293897,124.16476833866909,123.73255164269358,123.8507318617776,122.91624483698979,123.4946558997035,123.52023159060627,123.02057134825736,123.55557255633175,124.20572104025632,123.21000793110579,122.26969202235341,122.9623034382239,122.99829521868378,123.68405568180606,123.75288660358638,123.30756203690544,123.7576082344167,124.61605286225677,124.56606898130849,124.91598603921011,124.2233478515409,124.90870984084904,124.0293996669352,123.97607242362574,124.02525422442704,124.06239866511896,124.87415230693296,125.71943897427991,126.03842455102131,125.90486605046317,126.82583543285728,126.17653688555583,126.52414947981015,125.73825510125607,125.1834760652855,124.91552775492892,125.66206260537729,125.21099094161764,124.43804244557396,124.84370265388861,124.56123424461111,124.36423860304058,123.65674309059978,124.01086986297742,124.2228261353448,124.60909534431994,123.91119677899405,123.14732061047107,123.49007775448263,123.07880485290661,123.24245356302708,122.6606806232594,122.61208927119151,122.4892122540623,123.13332930253819,122.29085308592767,121.46581070963293,121.26231905212626,120.64767052978277,120.17482893634588,119.85470450902358,119.3581088045612,118.56844040891156,119.2681233594194,119.00987177528441,119.09438295289874,119.63399835163727,120.23730874387547,119.93122028000653,119.03551844554022,118.06057375995442,117.84469900187105,117.34927348420024,116.40961546683684,115.65736958617344,115.74350782809779,114.86269614379853,115.4233911652118,114.56313727144152,114.59419111115858,114.15840248810127,114.96793265035376,115.72214961890131,116.49784187460318,117.34107149252668,117.90116573963314,117.00449607567862,116.96426041424274,117.5346961459145,117.18203363521025,117.69098128797486,117.06894642440602,117.37876409292221,117.02459998195991,117.01656869705766,116.42192184040323,116.19984685163945,117.00228329515085,116.4122075503692,116.01183183630928,116.96041322173551,116.675196565222,116.06454264046624,115.11561658559367,115.2645373865962,115.2892780690454,115.0112912999466,114.47755476552993,115.0764133837074,114.23220430547372,113.75629408983514,113.21178437955678,113.38816411141306,113.91117560118437,113.02142759226263,113.7871841234155,113.76765715843067,114.15376198384911,113.94468946848065,113.52223336836323,114.1561248647049,114.02656412310898,113.08005168614909,112.48971546022221,112.04116542357951,112.89093338279054,112.11901271343231,111.9870116529055,112.2607534150593,113.07997933682054,112.18067600391805,111.25399910891429,111.9369917451404,112.20349300093949,112.14081409620121,112.97493811510503,112.36274879192933,112.60420611687005,113.20189010212198,112.68664607498795,111.8658635225147,111.42209866736084,111.70279511995614,111.85392799042165,110.98636011453345,111.76417748536915,112.06899690860882,113.06451200181618,112.45946523873135,112.37697807094082,112.9587453333661,112.53209019219503,112.43219324899837,111.57338694203645,110.86313748592511,110.375975782983,110.08778386050835,109.95021119620651,110.60283028194681,110.2729039369151,109.89601452508941,109.81286832876503,110.17600941471756,110.40282623236999,110.90991824772209,111.44151736376807,110.6709947148338,109.80919085722417,109.62917301431298,108.79053045157343,108.90060754446313,108.65666710073128,109.25436526257545,108.92730364436284,108.51078915083781,107.74563588993624,106.98461870895699,106.42921103676781,105.77398150321096,104.87154569337144,104.09103776142001,104.60578299267218,104.5506073674187,105.29463358037174,104.67601216724142,104.679905843921,104.91274934029207,104.29803574644029,103.86748626129702,104.36007798369974,104.95240972144529,105.563721309416,104.77666429663077,104.6035476657562,105.29933165805414,104.65094450302422,103.86931718932465,103.98399225855246,104.9650963251479,104.0036563850008,103.8710758057423,104.16766099911183,104.1297546918504,103.4988147392869,103.84765618247911,103.43419552734122,102.66964460583404,102.79772296268493,102.55714291054755,102.50285500334576,103.08322870591655,103.41490188799798,102.75690652197227,101.98432544944808,102.58817177126184,102.44723271857947,102.70347952656448,102.88944787951186,102.9885597624816,103.06227732636034,102.69560767710209,103.13094177655876,102.46039713080972,102.80261943535879,102.43449620716274,102.0694939782843,102.48103150865063,102.75647898670286,103.72957475949079,103.33209709776565,104.27628490980715,103.95885592373088,103.48438541265205,103.01167641859502,102.40531631978229,102.2959029795602,101.71933983685449,102.63660995382816,103.09395504323766,102.57826835662127,101.94490134064108,102.03939871257171,102.74194110697135,101.75314820092171,100.88846450019628,100.21989375539124,99.34585029212758,99.52773602167144,99.86119519826025,100.46642467472702,99.6187699767761,100.56754432385787,100.4278115183115,101.13294563814998,100.71986686764285,101.30368030909449,100.81129104923457,100.93762759445235,100.74510030495003,100.01047426182777,100.83861400932074,100.11917856847867,99.84282341739163,100.66624684911221,101.32475100504234,101.04322039568797,101.00252643646672,101.70161024760455,102.2044131308794,102.32404771866277,103.04233821481466,103.88670548796654,103.15000982629135,103.92000760976225,104.18786270869896,103.50880390033126,104.1527432538569,105.04865365941077,105.30560735333711,105.72796410042793,105.36637052474543,104.4709909139201,103.67862403858453,104.23564930446446,105.04184008389711,105.67522699618712,104.91404664795846,105.2637794567272,104.83294583437964,104.35789489559829,103.67182095022872,103.36653356999159,103.51191680459306,103.74255703901872,103.12144685676321,103.73493949882686,103.36972687626258,104.10141172399744,104.43458305392414,103.75508661335334,104.69490840192884,104.03949250280857,103.6990307290107,104.42613998940215,104.74394305236638,105.01104042911902,104.14216652605683,104.60258072288707,104.87192911468446,105.69437366491184,104.98404275858775,105.55733605613932,105.36773650581017,105.47666074475273,106.02688957983628,106.25865970784798,105.47813220508397,104.91964432643726,104.7027383390814,104.00244877673686,104.57499970216304,105.4379822537303,104.5179833471775,104.19615500792861,104.90453217783943,105.36712774727494,105.84257529396564,105.0330186788924,105.06676941085607,105.92391990451142,105.49458025256172,106.43846055911854,105.63780478620902,104.86729288240895,105.65562848746777,104.99448316637427,105.65843638917431,105.39165774313733,105.60559767950326,104.84958276571706,105.8411489627324,106.48770559998229,105.60145310778171,105.11649857414886,104.63110713474452,105.39620437566191,106.28413741011173,107.28156725689769,107.88341908017173,107.58890384063125,107.56549027282745,107.15133514348418,107.82371083647013,107.06150641804561,106.47027877345681,105.80633291648701,104.9710056046024,105.75471562007442,106.41368619725108,105.4265582067892,105.84700190648437,105.77724963799119,106.63644997728989,106.70608496991917,107.63544774614275,107.74298294819891,108.4404068198055,108.56360580865294,108.3169450070709,107.32048692693934,107.33895149594173,107.43092706007883,106.61889027478173,107.29997534770519,107.94359642174095,107.85700950352475,108.78594249626622,108.60455676168203,107.75717017659917,108.71210463624448,108.993384311907,109.24217926664278,108.98272957326844,108.32820513937622,109.20155877014622,109.66534808604047,109.23116560233757,108.93392114154994,109.03782051382586,108.66805457603186,109.06671187235042,108.7401893264614,107.93448270997033,108.01152027864009,108.02836414938793,107.83850002428517,107.02367497142404,106.64963175496086,107.26268465258181,107.97379905451089,108.0938129471615,107.32229703990743,107.0193712413311,106.18277340102941,107.15814660396427,107.00329298246652,107.96818133816123,108.33846540795639,108.02692636381835,108.18450430082157,107.48664951277897,107.65033500269055,108.29097690666094,108.01780041167513,107.74549614172429,108.25566325290129,107.75334275327623,107.54903586255386,107.76566658727825,107.83476236695424,107.39864790160209,107.50340283568949,107.0317248487845,106.32896858640015,106.85558068798855,107.23504171846434,107.84907172014937,107.73065803945065,107.86448312969878,108.02295365091413,108.90803345944732,108.12668280908838,107.96802337560803,107.11003813194111,108.1021892381832,108.3201424726285,107.98305719951168,108.93079745443538,108.23291202215478,108.08285939553753,108.51719094300643,108.84134330227971,109.46291343774647,108.53743864083663,108.10495378309861,108.72917296597734,108.08529167994857,107.13993572164327,106.15295139979571,106.09053270332515,106.05061958823353,105.30935282586142,105.94258262449875,106.87052215822041,106.09875509841368,105.72184191923589,106.12074793921784,105.69335103733465,105.83652515057474,106.82151033077389,107.76918367063627,107.99006603099406,107.80231974786147,108.2634095326066,108.790672859177,108.80892961192876,109.02643685834482,108.36542376922444,107.42139469226822,107.91630192566663,107.43792704073712,107.10751736210659,107.92218851391226,107.15913193114102,106.93567021004856,106.80030185449868,106.1672474280931,105.32323606777936,104.70666386187077,103.8827234795317,103.22113361116499,102.35960233956575,101.96787333022803,101.61466864449903,101.08589641889557,101.03800860559568,100.41935264831409,101.39942372962832,102.34913609130308,102.94358795601875,103.92640977725387,104.59994578687474,104.02799850003794,104.08513039443642,103.45345497550443,102.52661819150671,103.34456770587713,103.13490921445191,103.51091879792511,103.68054683553055,104.1544994157739,104.55967157892883,105.11815830692649,105.12827273597941,105.1466529709287,105.42583936685696,106.17462811572477,105.90753508359194,106.43717157933861,105.93822679948062,106.2446828270331,105.95613844878972,106.2621993329376,105.3131901039742,105.18034648522735,105.95122056640685,105.99281250545755,106.12624719832093,105.25603262381628,104.88424175232649,103.93363392492756,103.65465887309983,104.5781074538827,104.86456466652453,104.90176720824093,105.45921565406024,104.85835667420179,104.72764754947275,105.28171306615695,105.02764808759093,105.7769346833229,106.37280740309507,106.10663143824786,105.55657779984176,106.13552940404043,106.04090872872621,106.55083024175838,106.31605335464701,105.78522022208199,105.46932404860854,104.48693784698844,104.47116117412224,104.28162389947101,103.75599842099473,103.79709153203294,103.84596059750766,103.24370793206617,104.15693120704964,105.02294934634119,104.53711261320859,103.63201498566195,103.73375594010577,104.40097761945799,104.79805809631944,104.0137985451147,103.58262258488685,103.00362776499242,102.60234759561718,102.59102978371084,102.52544057788327,101.52596592018381,102.41188023611903,103.18130283430219,104.0921042226255,104.37711235508323,103.90503750927746,103.26490639848635,104.1207761107944,104.74956843396649,105.18926947051659,105.22789717884734,104.96752832690254,104.05056262761354,104.29906408814713,105.01302982121706,104.54382422193885,104.32184186577797,105.29430659208447,105.60663098609075,105.43304888810962,106.42090784898028,106.76036690361798,105.95895806606859,106.45285203959793,107.19490857375786,106.57938922988251,106.61333316983655,106.75572272296995,106.98318572947755,107.8798365467228,107.53042159369215,108.36168903065845,109.04194161109626,109.61302334908396,109.64222761709243,110.05691691068932,110.05599715234712,109.40305462665856,109.52430864376947,108.87475800747052,109.48401295067742,109.65734137455001,109.08020772319287,108.81839989731088,109.39599105529487,108.86805423442274,109.23836966883391,109.88167674094439,109.20085524069145,110.05682317586616,110.28311420278624,110.31531565869227,110.98538293596357,111.56172437826172,112.3647940675728,112.07928584935144,112.98134364001453,113.31323498953134,113.52877952251583,113.14099582005292,112.23638046719134,111.50278125470504,111.48888208903372,112.29365039430559,112.48934577452019,113.31574437348172,114.3087435811758,114.78609673352912,114.49473908683285,114.78289594966918,115.40276356367394,116.13302453653887,115.16735572880134,115.75881369365379,114.85999591555446,114.94557237904519,115.08816132042557,116.06747138872743,116.83023391291499,116.55738804163411,116.02949756709859,115.92191924247891,116.41871654847637,116.76972105400637,116.82585229352117,117.10497031360865,117.44603707129136,116.77276442525908,116.41340032918379,117.38258882937953,117.0494904667139,117.91598930722103,117.74512657802552,117.49189814226702,116.67983609531075,117.26160739501938,117.87489233445376,117.51074152626097,118.19032860128209,118.1325839930214,117.59745805896819,117.87280573835596,118.05840618163347,118.07068632915616,117.70552361058071,117.94086854951456,116.98026386834681,116.09860261389986,115.97890125308186,115.36515555810183,114.71983236074448,114.57355236168951,114.16276325890794,115.03094364656135,115.66245318762958,114.83777539106086,113.95563323190436,113.51746569620445,113.65393853234127,113.98613927699625,114.75909806974232,114.36440159799531,114.89798726886511,114.80400230642408,114.49252212047577,114.0757295419462,113.63627276523039,114.37218891223893,114.39583982154727,115.13066264009103,115.51791468728334,114.60830803029239,115.51350257964805,114.83826581342146,114.9969259542413,115.10133827803656,115.50126669090241,115.25825262535363,114.45051431469619,114.32912757853046,114.34128723386675,113.64272827329114,114.18022503517568,113.85856696078554,114.30233434028924,114.264296292793,113.66765344981104,113.24813768779859,113.44155575474724,112.79986236477271,112.51292728865519,113.06376038910821,113.40951886307448,113.71756518399343,113.76715561980382,113.19493736652657,112.24270964320749,111.93855898827314,112.01915486436337,112.91637724172324,112.04501439584419,112.64839222235605,112.79410003405064,112.62401979602873,112.2089206497185,112.55838746484369,111.67115121800452,111.46793067688122,112.1796810189262,112.7214476140216,113.04703039675951,113.07487728726119,113.91120841866359,113.91857918305323,114.02357086865231,114.22485500387847,114.35779167385772,115.20980276726186,114.87445654626936,115.48830355983227,114.89887134404853,115.14545742701739,114.92622422846034,114.99438885925338,115.42124837869778,115.09441881161183,116.08473808085546,117.0593360234052,117.41383244749159,116.78220262238756,117.06816790485755,116.5348511650227,116.06151196779683,116.9998209187761,116.62611111579463,116.36521182861179,116.22375932522118,116.12695837393403,116.05200520856306,115.89345305459574,115.35115548595786,115.33765102457255,114.49990466982126,114.58440893143415,114.13687625294551,113.26973914308473,113.1728582107462,113.59790216013789,112.78940691798925,111.81555408285931,110.91913222661242,111.0501194242388,110.18303402513266,109.60482534999028,108.95077340537682,109.50364122027531,109.73572779260576,109.09267871733755,109.71495197014883,110.18380499444902,110.17058935854584,110.17159998929128,109.79102288512513,109.3446927620098,109.98854298517108,109.7517456044443,109.83856253372505,110.53995040524751,110.1221500071697,109.3412806019187,108.58186697261408,108.02502662222832,108.64783840021119,109.19304307503626,108.48961340123788,108.50745108770207,108.91070555569604,108.54283474897966,109.10589738516137,109.84126897435635,110.64925351040438,110.29461061721668,111.1399108869955,110.42445491114631,109.9529215246439,110.7300103213638,110.28748572571203,110.71625498775393,111.15085159800947,111.44844916742295,111.46594499889761,110.50286204973236,110.94020492304116,111.40268855728209,111.66247932054102,111.77371957618743,110.85362490452826,110.49973506294191,110.80756705114618,111.63635359564796,110.93951539788395,110.18364644190297,110.45291331689805,109.49804362561554,109.66421853285283,109.85105037456378,109.59526551468298,108.81042672600597,109.8014302616939,109.50954777514562,110.05846509989351,110.8931293822825,110.9630739367567,110.39962360495701,109.82587578799576,110.51734684128314,111.34401229489595,111.72422011429444,111.01719182310626,111.08945080079138,112.08487065089867,111.72701865900308,110.94669424882159,111.88298196019605,111.21752736950293,110.32100866781548,110.30839512916282,110.22252845671028,109.84523095330223,110.59846563776955,111.23536514490843,111.44284912617877,112.06107737496495,111.99322499753907,112.95317338593304,113.26824493193999,112.7402698318474,113.20989823248237,112.69162217248231,112.2794458437711,112.95350736845285,113.53839747980237,112.89061410306022,112.04995946399868,111.94876067712903,111.51860235026106,112.16024568956345,111.8625603010878,111.81334633240476,111.88238100148737,111.04275502357632,110.44255472021177,109.63233542675152,109.03424498392269,108.15031462721527,107.29748050263152,106.84417425980791,106.38808631943539,105.74921175604686,105.75551047921181,106.31030158698559,106.72870827047154,106.52018218440935,106.79187133535743,106.29460441414267,106.85708484239876,106.26914522703737,105.74984451942146,106.04686080198735,106.4553733416833,106.61498853098601,107.07874703267589,107.29925891011953,107.45988427847624,106.48161585722119,106.58952286047861,106.8075396521017,106.59854526584968,106.75985165825114,106.98429737053812,106.1540744593367,105.68275742651895,105.93935323087499,106.45964557910338,106.40558888809755,106.16993468161672,105.42115617590025,106.19524453720078,105.47103861393407,105.94340546615422,105.2786100548692,105.84161982126534,106.59822610998526,107.21257591294125,107.7607001378201,108.01568068284541,108.35564259346575,108.10493338759989,107.62112641800195,108.01522385375574,107.6113810846582,108.52010098984465,109.35249736439437,108.99165218230337,109.52395167434588,109.87011893838644,110.40496278740466,109.89925135672092,110.32395369326696,109.37606824748218,109.27150999614969,108.62872025882825,108.54751436179504,107.69846975663677,108.06332325609401,108.10605587391183,107.33198380377144,107.63578877411783,107.05377217382193,108.01655802177265,107.07078949827701,106.86028385255486,106.17786718299612,106.40052447235212,106.59536723606288,106.7125949030742,106.67920262971893,106.50410736910999,107.49484859220684,108.27635155431926,109.2268666443415,110.21143645327538,110.17331671807915,109.78361035417765,109.44983881618828,108.58761338843033,108.8972630361095,109.14378545526415,108.7442063963972,108.44521432835609,108.17842811951414,108.92647654889151,108.37036255514249,108.49529227660969,109.46813627006486,109.15662190178409,108.74893406359479,108.12791459914297,108.7656866312027,109.34551164042205,110.25932175759226,110.25519246282056,111.17222661525011,111.68076976621523,111.24824407463893,110.72740381397307,110.38651878805831,111.09401588654146,111.66313408128917,111.6062448238954,112.220965069253,112.56752597540617,112.65346226189286,111.76333529269323,111.24351744214073,112.00382273178548,112.70636075967923,113.66982382675633,114.14507163176313,114.09611208736897,114.64832291565835,114.99309433903545,115.23553286399692,114.89902763394639,114.36987485783175,114.46252232883126,114.0250822622329,114.31452861381695,115.08861690759659,114.85598962567747,115.61176870251074,115.34532795054838,115.7628545104526,115.71839775098488,116.13298824243248,115.77845437405631,116.10346289770678,117.10178141482174,116.14454284543172,116.1045293728821,116.57421072851866,116.3841587966308,115.42235713126138,114.51436343742535,113.52472088811919,114.28886373480782,113.68185174884275,113.66267506964505,112.96734416484833,112.7114995312877,112.25203493004665,113.11411536764354,112.79114893404767,112.7996272770688,113.19689622055739,113.23144678771496,113.41148382984102,114.00488200131804,114.5317748230882,114.27177894394845,113.69887018855661,113.78096242016181,113.1243686946109,113.23507088935003,113.59501269785687,113.85052259266376,114.42318200878799,113.61354792956263,113.98891413770616,114.66237480286509,114.43954477878287,114.01845054654405,113.67277370160446,114.15144311031327,115.12103974400088,114.66968277143314,115.53070448478684,115.22973992116749,115.54510525194928,115.63882986875251,116.0297557064332,115.1982348524034,114.99945777654648,114.85753932734951,115.01732254074886,114.62031541205943,114.14281656499952,113.95435814326629,114.31783736357465,113.62489933846518,113.40346786519513,113.39877404877916,112.4224588307552,111.82866747956723,112.73479470144957,112.34243279788643,113.29323468962684,113.24253164883703,113.24742927029729,112.4580178395845,112.59242461062968,112.06411610264331,112.28776230849326,111.41748182708398,110.87883915286511,110.7380029913038,111.15770639013499,110.9583916477859,110.02915983553976,109.24535450758412,110.09107032138854,109.64793693600222,109.30397326499224,110.08270605886355,109.46304078679532,109.10701940208673,108.19305938202888,108.82903305767104,109.05027775885537,108.24480689456686,108.86299223685637,108.23624433716759,108.15018778294325,107.4112300220877,107.15518536744639,107.81136039365083,107.63113344134763,107.28590986644849,106.9504853761755,106.87820215243846,106.44052944285795,107.2778882808052,107.45160535024479,108.07341057434678,107.28141790395603,106.77834600955248,106.05203764140606,106.65951449424028,106.56715804059058,106.88904106989503,107.39902735222131,107.97848097793758,108.04223059676588,109.00121275149286,108.43908780440688,107.56341861747205,107.65823048027232,108.60499151004478,107.65593263227493,107.53253251267597,107.5591315603815,108.2223110483028,108.74257628852502,108.86756167700514,109.13218139018863,109.46977246226743,110.15056070871651,109.4236652245745,108.54911156976596,107.82456624926999,107.66339406045154,108.25452062906697,107.44214780349284,107.86960846045986,107.89139539003372,107.42390835424885,107.3105443706736,108.2849601120688,109.01424971735105,108.81599191762507,109.66133598145097,110.0392373134382,110.12981055863202,110.90459236176684,111.32154720835388,111.44322876166552,111.21977061685175,111.50136929517612,111.65332918893546,112.0275222924538,111.9209069358185,111.79984064865857,111.9008637405932,112.42137453798205,112.74801648920402,112.708954712376,112.2966284332797,111.97978295246139,111.24191413028166,111.19446103507653,111.45234791282564,110.89372100541368,111.08350432431325,110.22161551797763,111.07183081563562,110.46411511301994,110.32795388670638,110.37358627701178,109.57455018535256,108.98326929705217,108.90342082642019,109.53224722761661,109.23998694075271,108.41204875009134,107.70365953398868,107.91442483989522,107.46937762154266,108.12393755512312,107.19338682154194,106.68648250447586,106.18571858340874,107.02304411865771,107.80008660024032,107.75494662392884,108.08612262550741,107.81544227013364,107.27938896417618,106.91667402815074,106.90918553853408,107.34898526594043,106.46671681990847,105.94037306960672,106.84833217039704,107.17889771750197,106.30463582510129,107.07740259589627,107.65809976076707,108.46668606530875,109.19952276907861,109.86177550116554,110.32390915229917,110.23605793435127,109.33352919435129,109.18249323172495,109.57829478895292,110.00464661605656,110.6012475239113,109.79311692947522,110.66225961269811,111.1350296670571,110.43893995601684,109.65502019878477,109.23493088129908,109.42346785916016,109.24666448961943,108.26716877892613,107.5501234093681,108.43723040353507,108.88777443673462,108.73412953969091,108.13788970652968,108.75856671947986,108.66447607940063,107.8532736459747,108.08431143779308,107.91864332091063,108.40131827397272,108.30713691795245,108.22024840395898,107.67093881964684,107.98566112900153,107.77068088762462,107.87047542864457,107.41977810719982,106.63863490195945,107.22719162330031,107.67771671153605,108.63470548437908,108.36478665517643,108.47644126415253,108.25698413094506,109.08858247008175,109.8241835446097,109.30400143982843,108.92606483912095,109.30155903939158,109.70998261449859,109.20346043631434,110.02175507741049,110.5853411774151,110.62851069867611,110.79059276171029,111.6081523266621,111.9045836259611,111.0503235347569,110.57038286002353,111.21218485338613,112.0238862154074,112.95525978226215,113.09362362883985,113.06750961532816,112.43842371087521,112.81524850055575,113.15173496026546,113.89813028788194,114.18495900463313,113.36324767582119,113.56906751915812,112.64853096799925,112.13508700719103,111.9968837723136,112.87938463781029,113.68186631891876,114.00688804825768,113.74453346757218,114.19878807803616,114.13081245869398,113.68092146329582,114.06957776518539,114.78322352934629,114.36798140173778,114.94296484906226,115.73210228653625,115.86899797618389,115.59250149782747,115.32150309439749,115.39710171660408,116.14555753115565,115.34376992331818,115.82412793580443,114.96198697760701,114.37862585950643,114.82460856204852,113.83328860253096,114.18322244705632,113.5861276932992,113.51186623191461,113.49329193495214,114.35659765591845,114.89756861003116,115.22101658815518,115.00512755196542,115.27274821326137,115.12782828556374,115.13790114922449,114.55305211432278,114.77477511484176,115.34539265977219,115.79743221029639,114.96676074480638,115.76619208231568,115.306642038282,114.35866135871038,114.60580691602081,113.79944648128003,114.43458331376314,113.80583849642426,114.52383266482502,113.98066146206111,113.46593156503513,114.28163485461846,114.21520274877548,113.75778311444446,113.3567939484492,113.21192213753238,113.3643758338876,112.45509795937687,112.12498314678669,111.47263510385528,110.76879665628076,110.13666916871443,110.91621353896335,111.37789874291047,112.06787451123819,112.68644924787804,113.60893268557265,113.26207565004006,113.47059531789273,113.47326760413125,114.04534556670114,114.13665829505771,113.7438620114699,113.66605061525479,114.10053039807826,113.77108879340813,114.67396476492286,114.69551205914468,114.91377146076411,115.10235823132098,114.68206574721262,115.05581946996972,115.4288001502864,114.82863989798352,115.33236053632572,114.5186081668362,114.60682631423697,114.8796417452395,114.09938025986776,113.39443562366068,113.7129827211611,113.13315283693373,112.2925705765374,111.82790207257494,112.01966513087973,112.6529928795062,111.70555911539122,112.29162915982306,112.38584481179714,111.75994286499918,112.14567378908396,113.13426450639963,114.11999025847763,114.04281330201775,113.50785497808829,113.47918558679521,113.91833446221426,113.13656133646145,112.79215054260567,113.75427001761273,114.17220093403012,114.88404660811648,114.840369138401,114.17859293147922,113.47085961978883,113.26639842614532,112.7759029455483,113.0145854796283,112.28225459437817,112.83438352076337,113.18034393992275,114.1719123115763,114.07714590150863,114.5859004384838,113.89609499648213,113.72191979456693,114.18488343199715,115.14417338510975,114.95546400174499,114.69318264815956,114.54224437242374,113.82375350221992,113.35038978839293,112.91988289961591,112.8743727025576,113.24613031372428,113.86610050452873,114.63584464881569,113.86022130586207,114.68843169603497,113.79820678336546,114.7480061869137,114.54884291859344,115.43228979501873,115.5597334629856,114.64397386834025,113.90656192554161,114.03749355953187,113.7173066996038,113.01636587269604,112.31714352359995,112.50653178896755,112.59762444067746,112.37264897068962,112.57326817885041,111.77299767639488,112.09753244044259,112.65856156591326,112.64756369730458,113.33190822508186,114.20724845584482,114.44101240346208,113.74132569134235,113.75797951593995,113.01809799205512,113.16026025218889,112.59983045980334,112.73368383664638,113.0227197012864,112.84158721892163,113.66209567664191,113.57511497894302,112.93926825420931,113.57706951582804,113.13040982792154,113.7810033513233,113.69751040684059,113.90450508380309,114.16561612347141,114.78192353574559,114.41631379863247,115.30601183930412,114.70176120009273,115.00709607778117,115.64445715583861,115.3828013963066,115.0450480915606,114.18351675849408,113.2849361053668,112.38610140886158,111.73291708063334,111.96430085226893,112.49382838001475,113.05011034710333,113.02876151911914,112.90870961360633,112.8236395213753,112.6385585302487,113.47491034911945,113.17212251201272,112.78282896894962,112.0784483528696,111.52483599772677,111.65718349581584,112.0711331749335,112.41446838062257,112.71425547497347,113.2912437422201,114.06466524582356,113.77295470796525,114.34183477563784,113.41071466030553,114.27522819908336,113.93220000620931,113.68579344497994,114.62814316479489,114.35056310845539,114.18421628093347,114.51351520279422,115.08727638470009,114.58530291356146,113.83487954875454,114.02882798667997,113.65665249992162,113.30697600450367,113.32187965558842,113.19402920501307,112.78094084793702,112.9764952948317,112.28687841072679,113.0413315333426,113.87438582954928,113.27465393347666,112.44059087336063,111.46980226086453,110.8941673161462,110.99752263259143,111.92077985499054,111.43482227483764,111.01906088879332,111.00886768708006,111.7790844659321,112.38485872093588,113.07249193498865,112.82918936712667,112.68517669616267,113.5894115101546,114.43018626933917,114.67246801452711,115.47488416591659,116.34007042367011,116.80195205286145,116.28595406888053,115.98268282972276,115.55165805621073,115.92264672974125,116.90613714279607,117.62815248826519,117.93802428571507,118.92941870633513,119.39186276495457,120.03670417144895,120.39787481212988,120.1623135204427,120.14589079096913,119.43541073938832,120.14265981130302,120.6476228190586,120.87362219858915,120.45512991352007,119.61240422911942,120.42588710645214,119.63937819749117,119.29571965290233,118.40348523529246,118.05568684544414,117.32448254711926,118.1155695351772,118.3782240957953,117.58284805621952,117.79927975684404,117.86453815875575,117.71200043568388,117.09787717461586,117.13547365507111,116.97855037869886,117.19017470767722,117.57165104430169,117.96317930985242,117.71368935192004,118.66049838997424,118.88043779088184,119.78447664668784,120.78093445766717,121.2234443211928,120.57312061171979,119.58954608999193,120.0253171841614,120.95872811088338,120.52421734621748,120.24046075390652,119.77689512912184,119.50966509850696,119.85898232040927,120.4854651093483,120.66775185614824,120.30193957826123,120.7263134624809,121.1672365386039,121.93381444131956,121.8804102325812,120.96087463246658,121.18835111800581,120.57009838055819,120.40100294910371,119.98471043910831,119.24208311131224,120.02872692188248,119.88880628859624,120.47368694003671,120.4772472186014,120.47528071561828,120.07420709403232,120.33765452960506,119.45350333070382,118.72604174353182,118.1507837898098,119.0539552657865,118.75849387841299,118.49871076317504,118.0741148958914,117.15629470394924,116.29965788172558,117.0465489756316,116.19456865498796,116.68102502357215,116.78694404941052,116.83382314397022,117.5335799367167,118.39305577473715,118.99966931762174,119.0033014183864,119.11679741274565,118.48122247774154,119.3464759257622,120.14297951944172,120.35315099032596,120.94460238236934,120.17399506410584,120.7599369478412,120.91026694141328,121.87464310554788,121.89994343044236,121.26360144745559,120.60891108820215,120.25587426451966,119.30458838865161,118.97984300088137,118.01154235517606,117.03774554654956,117.52345819631591,118.46779894316569,118.28213428333402,118.45985926361755,118.52963737305254,117.74765785550699,117.69071727385744,116.85851754294708,117.17621788335964,116.52504688641056,116.23185278754681,115.40048069460317,116.17599366186187,116.83418328175321,116.23299054801464,115.32313449122012,116.30297693330795,116.96230966039002,116.21900296816602,115.36383617902175,116.16837574262172,116.26805209368467,116.39775526104495,116.8998161405325,116.75187877332792,116.3448140276596,117.3358710007742,116.96354280365631,117.95169424824417,118.38151203142479,118.51151117449626,117.9045888739638,117.64718051813543,118.6063154595904,118.51006177254021,118.32005321001634,119.24657957442105,120.06758779753,120.57933524483815,119.69426017906517,119.74823163822293,120.04076044913381,120.8856976274401,121.86704744538292,121.26150060025975,121.00540516525507,121.2349548120983,121.74997764406726,122.15376861998811,122.33678698167205,122.27511780988425,123.09587678918615,122.66617555404082,122.55481668701395,123.13817403605208,123.37185095949098,122.67686583800241,123.49580389866605,122.67741622636095,122.0839336249046,122.11216495698318,123.07698829844594,123.84577457094565,124.39515714393929,125.16541770519689,125.02475715847686,124.95792641956359,124.49280649982393,123.77893967879936,124.6349694407545,124.23389069642872,124.54138331813738,124.32570325862616,124.0219919057563,123.14986045937985,123.85234041791409,123.45373489707708,123.35019575571641,124.21871327236295,123.51090511586517,123.0522367618978,123.85089994920418,123.5605260906741,124.29773776978254,123.86312843486667,124.0301406737417,124.81954817380756,125.28764581400901,126.16912179160863,125.51302551198751,125.43677399819717,124.55514381313697,124.5843841675669,123.92494866950437,123.97180775599554,123.74871166050434,123.48724765283987,123.47906903270632,123.94070227770135,123.18360503809527,123.82591194752604,123.25829407991841,124.23791931057349,124.14852663548663,124.82645580917597,124.35452606575564,124.0826361766085,124.38544325577095,125.15619370294735,124.16824913863093,123.35750374523923,123.35984940780327,123.67069129506126,123.84583731461316,123.46642871527001,123.7231328128837,124.32366907829419,124.04181627044454,124.02088825078681,123.62354891048744,123.90789933642372,123.80081947380677,123.20977494120598,122.88847003877163,121.92458911426365,122.11011225217953,122.13147729681805,121.61910835234448,120.76877936534584,121.71315494785085,121.02441407786682,121.36483198124915,121.50582796987146,121.41981080546975,122.35742710810155,122.92901231721044,123.5602089711465,123.54954308504239,124.2288140761666,123.9148172675632,123.44616327621043,122.98860978661105,123.25536142708734,123.03031793702394,122.1410406390205,122.5205615889281,123.05037518637255,123.77465861989185,124.22549142828211,124.57992203859612,125.39293562155217,126.30995640577748,126.82720285700634,126.33329566568136,126.18880536733195,125.57461379980668,124.8189810407348,124.1011760411784,125.08357702335343,125.42557508870959,124.75350874988362,124.0688422662206,123.50547137809917,123.64146348414943,123.08760344842449,123.58548781182617,123.48957809433341,123.56811770191416,123.34432243276387,123.45307129342109,123.37771276850253,124.37060255091637,123.91778607154265,124.76688338862732,124.90171144995838,124.76937777455896,123.92724575661123,124.57102044345811,124.01126817101613,124.59010103577748,125.46693931007758,124.99555204529315,125.10939711052924,125.07159247249365,125.85378063470125,125.97573601966724,125.59438655618578,125.48117686994374,124.99464493012056,124.13196564884856,124.78081146301702,124.77129788510501,124.62190516991541,123.88060747133568,123.41545723658055,122.82190898247063,122.09408972132951,122.28956516645849,121.31491426751018,122.16770202666521,121.67839364334941,122.01028279820457,122.6837620944716,122.75241900514811,121.86721630580723,122.13574461778626,121.38681137235835,120.51817276794463,121.44596214964986,121.70215936936438,121.30345714557916,121.08482165634632,120.370637093205,120.18128488212824,119.91986347967759,119.16987348068506,118.28407214162871,118.36622038250789,119.33778855577111,119.9248261610046,120.33808383764699,119.74149145465344,119.32783129997551,119.73398104310036,119.44661070872098,120.44035272672772,120.80584698496386,120.7733607525006,120.92577457940206,119.99480219418183,120.1763501977548,120.15492097102106,119.91000221297145,119.13716711569577,119.33225635578856,118.64911903860047,119.26021260162815,119.73128054989502,118.9186417227611,119.47617988474667,119.25646594539285,119.53946469491348,119.43492832779884,119.7975654117763,119.497038890142,118.60050428565592,117.65110579133034,118.46444973535836,118.634673722554,117.98725661449134,117.1973855048418,117.55979916220531,117.16779063735157,117.00715966848657,117.99871352221817,117.92826643632725,118.18784768832847,118.81895841332152,118.0601359019056,117.40373058011755,117.19037351664156,116.8754833266139,116.43117968691513,116.02407728368416,115.6328970589675,116.24082364328206,116.89702883642167,117.33431881293654,117.86726712109521,118.60304898768663,118.86466889409348,118.2955091339536,117.87330310745165,117.9064361769706,118.00886302348226,117.52891128417104,118.17867105454206,117.79952287767082,117.60962381539866,117.98068656073883,117.37567774765193,118.11039279960096,118.4369894945994,118.60488253459334,118.77992528071627,119.38385552633554,118.52515042386949,118.04464068915695,118.3859144244343,117.71299356827512,118.40764257218689,118.72981075011194,119.39627098152414,119.67459019133821,120.22199177881703,119.3187486808747,120.10046894149855,120.291825897526,120.59879564819857,120.47733313031495,119.6593103450723,119.78422274067998,119.8912627804093,119.03882366418839,118.50503699714318,119.39887696458027,120.07440372928977,120.59263081941754,120.93165083508939,120.29428638704121,119.79071770934388,120.55652935802937,120.35523347184062,120.55382928717881,120.84308169456199,121.20488083641976,120.34284001262859,119.52306792791933,120.32255500229076,119.48283367650583,119.95064603025094,119.14033792726696,118.9933504150249,119.51366038667038,119.00442076148465,119.00445383042097,119.49155304580927,119.96932337991893,120.17100732866675,120.32748983660713,120.989945596084,120.12343506142497,119.46854419726878,119.35928307799622,119.46097308211029,119.92956425994635,119.32489728089422,119.72510442789644,120.03395441081375,120.28090546419844,121.19071330409497,120.58891500998288,121.0043493299745,121.51442278549075,121.50773672014475,121.29565258743241,121.70061357645318,121.78356839809567,122.72407030686736,121.84264669241384,122.68034324934706,123.33523575309664,123.71072788955644,122.79783933609724,123.21405433118343,123.20362304663286,123.07015935424715,122.09347056690603,122.35091073717922,123.2906321901828,123.4485602681525,122.98792618559673,122.41823554318398,122.89958393247798,121.92359426757321,121.49109473824501,122.37555477395654,123.27692214539275,122.79963854374364,122.57972726831213,121.64931272156537,122.32041644956917,122.66515045333654,121.82750098127872,120.85548548121005,121.45912316441536,120.70821507833898,120.22296997020021,120.83984870556742,120.1412589745596,119.9121642052196,120.40928239421919,120.12619117414579,119.31386483646929,119.51563650602475,119.89480831334367,119.4752459465526,119.70788556570187,120.095885458868,120.32506034569815,119.43031429499388,120.4254955323413,121.25551080983132,121.28340647928417,120.99616198800504,121.36799827311188,121.41440524766222,121.59423038456589,122.5328585030511,121.7726530758664,122.58153587114066,123.1463312623091,122.240030111745,122.96800691261888,122.51324626151472,122.24478676309809,121.90006779693067,121.69614812824875,121.04699933715165,121.99263331247494,121.23479847190902,120.8432674286887,120.44758339365944,121.14020349085331,121.16189095238224,121.14050992112607,120.57055224850774,121.29202477633953,120.94648381276056,120.53529880009592,121.50458997907117,121.72766746627167,121.2615243489854,121.48748014681041,122.13701223162934,123.08244237024337,122.87729348987341,123.34968558652326,123.97913762181997,123.74810021417215,124.47401281772181,124.55962921027094,124.89745692815632,125.83061048388481,125.32466435572132,125.1371113625355,126.04535114718601,126.41739529371262,125.53060314338654,126.12378363590688,125.16226721508428,124.90439046686515,123.92000291496515,122.95807533664629,123.9262345652096,123.6954480111599,124.48626898042858,124.93736882088706,124.92255975212902,125.67909743823111,125.81086860597134,125.77902703545988,126.57590004941449,125.79083731165156,124.95637838402763,125.48631361871958,125.68397452123463,125.66241529211402,125.07177348714322,124.0897622788325,123.7320573083125,124.45123946713284,124.87747852923349,124.98524722317234,125.1468963753432,124.57865908369422,124.83298325492069,125.22318649012595,124.87872429937124,125.52138490509242,125.62450042041019,126.55743921780959,126.05059533799067,126.22119557950646,125.64886259660125,125.32536773197353,125.89526216080412,125.44348055822775,124.89091143757105,123.90652480209246,124.76980039477348,123.78166077611968,123.87874299800023,123.11526703229174,123.4620167100802,123.8643092745915,123.64573645498604,123.74281465541571,122.91735422704369,123.15979942632839,122.75830219732597,122.79166024178267,122.15381323499605,121.84536866424605,121.56646489305422,122.00763660436496,122.9116766997613,122.72913968050852,123.164881947916,122.1752991057001,121.38609514897689,121.02210532128811,120.58793849265203,121.15161460638046,120.46135378908366,120.21765085263178,121.01724844705313,120.20455648982897,120.58171656541526,120.80507995281368,120.81681398209184,120.58521123183891,121.06301820697263,121.74616971192881,121.03574997466058,121.26957565452904,120.51136951707304,120.24900595284998,121.22480909246951,120.2652309620753,121.01498282980174,120.59956717537716,120.70117978099734,120.21320510283113,120.55947739304975,121.17287476640195,121.66880853753537,120.82813185825944,121.398691624403,121.11079546203837,121.6093853218481,122.18463582731783,121.44694764073938,120.65520747052506,120.36520902812481,119.84831791184843,119.46008050069213,119.47543162619695,119.37154501024634,118.50177563121542,118.41271183593199,117.43752338783816,117.52767039835453,117.40387579193339,116.41665105614811,116.76367271924391,116.05615807976574,116.5771942990832,116.02747907489538,115.78690887615085,115.5485444990918,116.10602118400857,116.73816320905462,116.2099082232453,115.81943245511502,114.85706792864949,115.03770007565618,115.8479032497853,116.15480750054121,116.41020856192335,115.44468721048906,114.50569982081652,114.48891348019242,114.12459783023223,113.99795732693747,114.36624992545694,113.39921050518751,112.56768100289628,112.97842978592962,111.99746362445876,112.70700397947803,112.5438937060535,112.91180483903736,112.68423300422728,112.91553961578757,113.73183194175363,113.9475743654184,114.37045088177547,114.31798464478925,115.31584164733067,115.20234742574394,115.19325788319111,114.55623497860506,115.3042857865803,115.12810649443418,114.9152239668183,114.21739034727216,113.97021263558418,113.13577172206715,113.34082950744778,112.44854502845556,113.2571787647903,113.85735907359049,113.11964133335277,113.48546649236232,114.4086345396936,114.67806097539142,114.90006851684302,114.89624665491283,114.53252684511244,115.28214541403577,115.9434016533196,115.89068023767322,115.70675520738587,114.93657474266365,115.75308869499713,116.45825595641509,116.870619866997,116.96032809559256,117.42115792958066,118.37014190852642,118.37261153943837,117.62443592399359,118.55249767377973,119.27277662418783,118.89079796895385,118.34135534567758,117.7021037437953,116.74135013576597,117.6447883094661,118.36569537734613,119.0851781195961,119.55571191152558,119.83352434774861,119.17485382175073,120.00490913260728,120.54859254183248,121.30647619999945,120.38020859612152,120.35000560246408,120.94971583178267,121.91318540647626,122.43986882129684,121.699375344906,122.68186138244346,122.16957212658599,121.72389605315402,122.20907412935048,122.07043122965842,121.26760259643197,121.50426376843825,121.42629146529362,122.16130116488785,121.99102892307565,122.30847095185891,122.1353795574978,122.41895095165819,123.3197875386104,122.45435018604621,122.62356354948133,123.21788656245917,122.99542715214193,123.7384618925862,123.07495106523857,122.49960606032982,123.46131402160972,122.57236726256087,122.96249346015975,123.92675981577486,124.74253821792081,125.61854384280741,125.36300585512072,125.96747547434643,125.09299114486203,125.40028548473492,124.73610595148057,124.33702704263851,124.81883802823722,124.89997629122809,125.26315048336983,125.58601899025962,125.96751415077597,126.47973964968696,125.68915579514578,125.40380116784945,124.42508047493175,125.3662631707266,126.16682008793578,125.3292160378769,124.98668142268434,125.60028335032985,126.11713557317853,125.38772365776822,124.65161153906956,125.25881884479895,125.93094895873219,124.94478973839432,125.36192664736882,124.95395858259872,124.78999686287716,124.37958537973464,124.60193237476051,125.49772341083735,125.15889798803255,124.56304598320276,124.70137220434844,124.66855583013967,124.14873809134588,123.9932803446427,124.64302121009678,124.66947910701856,124.55494065070525,124.89461436821148,124.26315060956404,123.33324700174853,123.27173768496141,124.04775283345953,124.68099259538576,125.43150848243386,125.61064387019724,126.47188550420105,125.85540045052767,126.28896882385015,126.33219724707305,126.9137398134917,126.01485954876989,125.98890369338915,125.09349503228441,124.5914496993646,124.78510473342612,125.31525668827817,124.85272497637197,124.24576688650995,124.58445820910856,124.95517631061375,125.22089522983879,124.8243551501073,124.90173905948177,125.52996770385653,124.56956402817741,123.9267841707915,124.86303447326645,124.7093186066486,124.41973125142977,124.56301920022815,124.26457164110616,123.91000580601394,123.14188205171376,123.3861171323806,122.5022097909823,121.951040701475,122.31336614256725,123.25348487310112,123.79188576992601,123.35319166863337,122.62890176754445,122.08944567013532,121.14784126449376,121.5131865744479,121.39223080640659,121.2983604487963,120.54045168077573,120.30853217141703,120.80422702012584,121.59734228113666,121.0646749921143,121.7841074760072,121.90589816868305,122.34988287044689,122.12353042885661,121.96975454129279,122.34698393149301,122.77283948613331,122.87748859077692,122.86661714874208,123.47921425104141,123.14984059892595,123.7470428366214,122.88996156584471,122.33616946870461,122.63186733936891,122.28556406870484,122.3504503625445,123.2505313763395,123.50038114888594,124.44244705652818,124.14791573910043,123.7414054395631,123.1340206163004,123.5799842341803,123.00801276601851,122.34686432871968,122.28953044116497,121.47562835039571,121.96008752845228,121.12453783443198,121.173718216829,120.22732406761497,120.92776173306629,121.29474623547867,122.2291224845685,121.7686627395451,121.02990624401718,120.72881347546354,119.8817013273947,119.2239466579631,120.18634016020223,119.89991048444062,119.6507409424521,119.22917792992666,118.85028012050316,118.48835845571011,118.12349871452898,117.42451927158982,116.84842398064211,116.1685112551786,116.15699229575694,115.77236471837386,116.01687822397798,116.06315585738048,115.41583950445056,114.8564771763049,114.73022887669504,115.14051034254953,115.20691546425223,114.68123889481649,114.4389866553247,114.65312883304432,115.30745356110856,114.45363499270752,113.47652968904004,113.11587046040222,114.10473767761141,113.17074010008946,112.59814945468679,113.1657785475254,113.66778630390763,113.13734823279083,113.85202436614782,114.63123895972967,114.9947560261935,114.52796686347574,113.58173717232421,112.86201245849952,113.45198584860191,112.5179249625653,111.70525662600994,111.80759426532313,112.10348350415006,112.96298393793404,112.60718576889485,111.68748132744804,112.6199179678224,112.36342790722847,112.89069846086204,113.18865212844685,112.7656431645155,112.09884011140093,112.86157349683344,113.72123705688864,112.76541130850092,113.70639943843707,113.53397256834432,113.43762964522466,113.02449956024066,113.19256178289652,114.0440867044963,114.12794589111581,114.83974015340209,115.83036155765876,115.02630873210728,115.3696324173361,115.40037632547319,114.46897677564994,115.12993444688618,114.83661016030237,114.69327878160402,115.0667978306301,114.18153822375461,114.18679057713598,113.39529725955799,112.9081662921235,111.92298438353464,112.10726418998092,113.09441417315975,113.00389360589907,112.60964788729325,112.28963308921084,111.43792591104284,111.99005384230986,111.6659629503265,111.12792203109711,110.90402263728902,111.20399344014004,112.12679180409759,111.70963666029274,111.65014848858118,110.87240456975996,110.10863921651617,109.5256965905428,110.1930027808994,109.27248785411939,108.88889289740473,108.19703127723187,108.90323319425806,109.49142620526254,108.78065754054114,108.5951149975881,109.03196608414873,109.93017664551735,110.4343562014401,110.6744070588611,110.15964769059792,111.13064497988671,111.19244065368548,111.15833941334859,110.77432988397777,109.80281429132447,109.16046641115099,108.22037896700203,108.60994002828375,108.56179810641333,108.04641434224322,107.24940103664994,106.39253912679851,107.30930131440982,107.40913108317181,106.72489839466289,107.62272393796593,106.9697623020038,106.04491267027333,106.67587992176414,106.60359782818705,106.7342743491754,106.34495926462114,106.80942211672664,107.75902437465265,107.42713229451329,107.83682553935796,107.47354746237397,106.62449723435566,106.97403125325218,106.91177342133597,106.07572118286043,106.28643730189651,105.65273387171328,105.34871008386835,105.33375096227974,104.82423679251224,105.20009788777679,105.69097742810845,105.16326391510665,106.02516303723678,105.99205785943195,105.43514311267063,106.15340202953666,105.59862789092585,106.27143834438175,106.69437646213919,107.64731463976204,107.77918320382014,108.74225717131048,109.44057135703042,109.9730058806017,109.78195898234844,109.51327049219981,110.48070467403159,109.5301803611219,109.10895055159926,109.79618108365685,110.58132533915341,110.28791563492268,111.25559817487374,112.22911975858733,112.50021180743352,113.00603863736615,112.96119491755962,112.45750347292051,112.28157628932968,112.35079400753602,112.8561911964789,113.61010077735409,114.60782362706959,113.9786370433867,114.3019562959671,115.0181523123756,114.73952917894349,115.27329408703372,115.25136698177084,114.28715070569888,114.53531099110842,113.71531616849825,113.34488506801426,113.47958288574591,112.92313743196428,113.82237500697374,113.26272773416713,112.2675138451159,112.37362662795931,113.3431116878055,114.33475041901693,114.743996235542,115.48947403859347,116.34894567774609,115.38080437434837,114.8989318520762,114.9180488679558,114.30305952345952,113.81304723350331,113.20700927544385,113.59553995728493,113.16006405139342,112.68485532933846,112.02805727021769,111.51855185907334,112.3022480183281,112.80756166391075,113.6257225992158,114.0160815208219,114.07886177068576,113.88500212179497,113.0649158260785,112.81678605126217,113.6434756340459,114.21118356194347,114.48148955544457,114.06418499629945,114.84419379942119,115.80589652294293,116.4234573179856,116.84308920241892,116.43897289317101,116.81679511256516,116.97467032214627,117.89591698441654,117.08108943048865,116.24870560131967,116.38329382659867,117.17739474028349,117.81274620816112,118.118352801539,117.35082347784191,116.98460206668824,117.45090216351673,116.65102408640087,116.47895898250863,116.19757138658315,115.43466896610335,115.48899623006582,115.57639113487676,115.88195587741211,116.55341376317665,116.1299542314373,117.02035543136299,116.31471134489402,116.4133427683264,116.68137658108026,115.69219606555998,115.65242854645476,115.97512621292844,116.3828338328749,115.79860821273178,115.45564342429861,114.90551019925624,115.31819573231041,116.02317933505401,116.54367216490209,117.1761431270279,116.97463691839948,117.01700060022995,116.33422521036118,117.00427459413186,117.86585410265252,117.53222423046827,117.12198472814634,116.64092393079773,116.77263291412964,117.25971374101937,116.27761307032779,116.9399954690598,116.59126893663779,116.09558348730206,116.19732632860541,115.8312444766052,114.88028757320717,114.12315318919718,114.94605053775012,114.21752444794402,114.13910586480051,113.76053951913491,114.52239733655006,114.2258763173595,113.91723395325243,113.41399361100048,113.3769247783348,112.49516907753423,113.42977325432003,113.9020163519308,113.91706084087491,113.62022862629965,112.69912539422512,113.46506439475343,113.35397952329367,114.02183514134958,113.76774658402428,113.03410257585347,113.2007417245768,112.47073407564312,112.19170060567558,111.65890761930496,112.44116354966536,112.6896462594159,111.8731958437711,111.09290362941101,112.02349980734289,111.33193540060893,110.43919001100585,110.24319375865161,110.14655281696469,111.05341543024406,110.77482587983832,111.22107661608607,111.02008696412668,111.30010814638808,111.74380152253434,112.50934043712914,112.25327047752216,111.31805774616078,111.18674796493724,111.7676667147316,112.04567286837846,111.46067412151024,111.11680254386738,111.93403170490637,111.5222591040656,111.62134684156626,111.31554832775146,112.31301333196461,113.01537074428052,112.7989844228141,111.92259712424129,111.33635471528396,110.89658482559025,111.65650611696765,110.97042346931994,111.58283702284098,112.13454157486558,112.26722572278231,112.24340105103329,111.69235734082758,111.46543528418988,111.23314649006352,110.59562763571739,110.78365208534524,110.83974642353132,110.55820210417733,111.24420758942142,111.98118712008,111.73619015980512,111.73305648611858,112.23177661560476,111.62960434705019,112.2634603343904,112.08237213082612,112.77775839529932,111.79871110105887,112.58637650776654,112.57782268058509,112.90966558037326,113.1167583973147,113.4850467061624,114.46770209819078,114.31423213519156,114.56161975348368,115.33751323074102,115.40548684587702,115.95107688056305,115.51816628873348,115.72946074046195,116.0330639788881,115.90806226665154,116.67849652236328,117.43848895095289,116.76186995720491,117.46649263054132,116.72892365511507,116.10777163971215,117.03590726759285,117.52878701966256,118.34628212172538,118.93338805111125,119.29259985126555,119.78089414536953,120.41627291729674,119.58981476631016,119.7813506401144,120.57785901753232,121.27434945991263,121.70603754511103,122.12766636628658,121.60751442331821,120.88575675338507,120.46513214427978,121.3135504159145,122.06425857823342,121.67346865544096,121.19613818032667,121.33343510236591,120.46913988469169,119.62358144717291,119.84329614881426,120.79680819483474,121.19817253295332,120.26225052401423,121.09074992313981,120.25570977665484,120.79419874679297,120.25597631791607,120.67208478413522,120.04437444079667,119.94528044015169,119.71203776216134,119.37521945685148,118.47021907893941,119.07413831213489,118.16352813271806,118.85300901252776,119.10163060296327,119.7072502085939,119.16485780477524,118.46141495322809,118.20497660618275,118.01654947176576,118.53098941221833,119.32539245346561,119.97884913906455,119.52391324890777,119.7564812633209,119.65393386222422,118.78599270619452,117.90132432058454,117.66749894293025,117.82945768581703,117.70420019933954,116.7844360023737,116.728840904776,116.63573108613491,116.39592884713784,115.62282799510285,114.88468910008669,114.05186897935346,115.00840681651607,114.6312169348821,115.16822113795206,114.44434486655518,115.19293922837824,114.24996622465551,113.52816109918058,113.36738288635388,112.45362847438082,113.3022199627012,112.87896862346679,113.40843286272138,112.86641709599644,112.07760458346456,112.16576550761238,112.74341911636293,112.67018612008542,113.5059662964195,113.79405696690083,114.64888902660459,114.26736368285492,114.39094459917396,113.7359184557572,113.04590826109052,112.54479584144428,112.57409505499527,111.73217049241066,111.09435392636806,111.00226167030632,111.43894415721297,112.41225548740476,112.79501951439306,113.17935947375372,112.40852770442143,111.8228263752535,111.96572887990624,112.2483712094836,111.35030283313245,111.89653273439035,111.97187250619754,111.66354158287868,111.09777466021478,110.09925594599918,109.22321005864069,110.02296049427241,110.04413544246927,110.32902538497001,109.3924600048922,110.30391062097624,111.12319759838283,111.44668942689896,111.64835730846971,111.9281281195581,111.86628804914653,112.50735920248553,112.44476215541363,112.39166343444958,113.25457472819835,112.64848218066618,112.55813274346292,113.25431241095066,114.02668303065002,114.18710021581501,114.1089850035496,113.3883394910954,114.0109585034661,114.73996295593679,114.90782153233886,114.92815561359748,115.696331479121,116.40155332442373,116.44311379641294,115.6934425085783,115.84173857746646,116.3118307357654,116.60555315762758,117.02388223866001,117.5111490287818,117.84079180052504,117.2103482093662,116.96246185619384,116.63880484458059,116.47485501039773,116.1443619215861,116.15128279710189,115.53876795666292,115.07516331970692,114.6384784122929,114.61650702031329,114.0898134210147,114.09510211274028,113.31111231120303,113.03039268637076,113.46866409294307,114.15657275728881,113.63881672779098,114.58705917140469,114.22433221619576,114.24647364579141,113.50584210967645,113.83600019197911,113.85874911677092,114.82100177649409,115.60961805097759,114.63045251555741,114.16218213643879,114.7262584879063,115.72094459319487,114.91109125316143,114.21633441792801,113.66410218505189,113.05713372817263,113.44648039713502,112.75763080036268,112.93796561053023,113.4233607724309,112.81154736923054,112.96864297660068,113.05070703616366,113.6239839703776,113.80396436387673,113.75901095289737,113.91002409392968,114.73743017949164,115.2887246645987,114.57650630222633,114.26948090456426,115.19017139216885,115.37498239101842,115.75746983475983,115.27647831244394,115.32501290878281,114.44464784488082,114.76430216478184,115.3147052442655,116.2611632142216,117.08341776160523,116.64618271682411,115.92385667096823,114.93039625370875,114.64003529399633,114.59830634575337,114.1933634574525,114.4816812761128,114.43886692076921,115.08002471504733,115.66202452220023,115.19614917784929,114.6372507698834,114.82720355829224,114.1103482041508,113.99222755385563,114.97205034131184,115.63831784762442,114.6491096187383,115.44390360824764,115.39916934305802,114.722816192545,114.84900873573497,114.41629279684275,114.52148648677394,115.48680326994509,115.84648668859154,116.44395054178312,117.12612190190703,117.27767062513158,117.4136555865407,117.29566916218027,117.94153737323359,117.95602208422497,118.12955236202106,119.07820006785914,118.39246485754848,118.93171731568873,118.25781904300675,118.23522783862427,118.632529059425,119.46876145154238,119.58387565100566,120.17592391651124,120.30632605589926,120.14695968013257,120.09288526466116,120.66869462653995,120.8704348616302,120.9142022463493,120.54175441619009,120.57944880286232,119.6278563332744,119.26553174341097,119.13519654842094,119.06845268746838,119.93770845979452,119.87864569015801,119.73432597564533,119.97578943613917,119.09483302105218,118.71499466104433,119.1020983713679,118.31244774302468,117.64010707801208,117.26780085172504,117.27424158062786,116.4423832395114,116.47311740508303,116.03621049970388,116.75047498149797,115.81683858344331,116.42355837067589,115.823758169543,116.23936867667362,116.65974485035986,116.55118046980351,116.5846055066213,116.2015035119839,116.33527880255133,116.23278414690867,116.51440602913499,116.68819693895057,116.12706212652847,115.41358521580696,114.90854277834296,115.17127343080938,114.28082087961957,114.6647861446254,115.05134810972959,114.69926245836541,115.68731856159866,115.94133340194821,115.03289174335077,115.38626372721046,115.49697399837896,116.15473225340247,115.57084246445447,114.99985073693097,114.8209041855298,115.18382359808311,114.3979513910599,113.847282839939,113.86750109866261,113.7760967691429,114.61855543171987,114.86693281074986,115.83165115769953,116.2071146350354,115.4497841433622,115.18224876513705,115.65859632240608,115.31807283498347,115.6918539875187,116.00978206610307,115.36547151161358,115.69028094783425,116.57884034421295,117.2592326356098,116.59443242102861,117.5041946657002,118.06679225806147,117.8244052324444,118.81726143416017,119.6017990829423,118.83705918164924,119.63626325502992,119.4136034604162,120.21757584204897,121.08449623826891,121.11899280874059,121.64810064947233,121.8820329606533,121.85511178756133,122.06084309983999,121.75166170485318,122.35729518951848,122.07300092000514,122.87388923298568,123.39455858198926,123.93253130186349,124.88549579726532,123.90390867833048,124.15294067794457,124.48711198940873,124.48451514635235,124.28813701076433,124.3904726812616,124.8156953016296,124.04669397836551,123.52566587319598,122.59234775044024,122.24386143218726,122.13149214303121,121.68084721406922,121.5569454994984,120.74631322035566,120.53540605260059,121.42029268760234,120.75579104432836,121.27953670127317,120.95519496686757,121.65307516651228,122.24944960186258,122.77352939266711,122.23351079458371,121.59386152029037,120.79614659724757,121.59133845753968,121.86291056219488,120.94890511920676,121.63768888590857,121.41401231661439,122.21777105377987,123.12881949869916,123.49750330625102,123.84039500495419,124.12827485660091,124.62321912124753,123.64284400641918,122.78073114622384,122.32721310667694,121.677348759491,121.88411256019026,122.38312096055597,122.7741435142234,123.57209742022678,123.97190334182233,124.48147784685716,123.52612553909421,123.83854692429304,123.42333083832636,122.85709997918457,123.67729349061847,124.63991668121889,123.71511901775375,123.26591807696968,122.80873786984012,122.710122062359,123.19349712040275,124.0983882942237,124.75899904407561,124.5208306540735,124.00897508300841,123.13965372601524,122.46034876443446,121.64634463051334,120.65299660246819,120.88930767634884,121.25636233156547,121.40609688777477,120.894018500112,121.71149029023945,120.79902561893687,120.99370497372001,120.45731633761898,119.95927256718278,119.56029647309333,119.48316446365789,119.30119510181248,118.65945164579898,118.29583155550063,117.80591149581596,116.85376762645319,116.21788184577599,117.13523692404851,117.32887249393389,116.47007001005113,116.57658517267555,117.25887499237433,116.63999267527834,116.07216230593622,116.04281079489738,115.10857035079971,114.61232078960165,113.80775927240029,113.01781254215166,112.78708906192333,112.93256359826773,112.52789343008772,111.74824181944132,111.38360435515642,110.44461183203384,109.89623306179419,109.57844977779314,109.18264393089339,108.44472709530964,108.97215215815231,108.18845841055736,109.10798163758591,108.43286811886355,107.69406002061442,108.42055727308616,109.25101934699342,110.04017855040729,109.21084131486714,109.49226622795686,109.6832623789087,110.53648861963302,111.4992172201164,111.16529791988432,111.68733631120995,111.33493399200961,111.85340848891065,112.48553858324885,112.4047407694161,112.01607466628775,111.09192961454391,111.44740824168548,111.29257944319397,111.3272147718817,110.74963250430301,110.360767879989,109.81020822981372,109.5612982744351,110.33749978011474,110.74623027304187,111.11151780420914,112.09795870725065,112.66637236066163,112.24647456407547,112.10071397107095,112.42087920196354,112.36160715296865,112.62265611533076,112.20252738008276,112.65727225923911,111.71851770719513,110.72781006572768,111.3816496822983,112.17651308281347,113.16391616407782,112.20328289689496,112.11445900052786,112.33407982531935,112.34322121413425,112.29908633325249,111.34167364984751,111.35710027441382,111.6190515155904,110.85073862271383,110.34913398697972,109.56674581347033,108.87521264888346,109.64906502421945,110.0233694780618,110.5207501007244,111.15663994662464,110.31708795856684,110.72876078775153,111.39517825329676,111.92860875464976,112.92667683819309,113.87595046218485,114.10742943454534,113.2422106587328,113.6142372903414,114.32099833944812,114.18945600325242,113.88341104937717,113.87537204893306,114.36454530665651,113.99046748364344,114.83116637263447,115.28938619606197,115.72499659378082,115.5967853134498,114.80698358826339,114.15638191625476,114.54919678578153,114.79226504033431,114.07528884476051,113.1223439280875,112.77206064527854,113.68405636306852,113.85350531293079,114.05756336916238,113.74753283336759,113.23643696634099,113.57957481360063,113.59643294429407,114.00067332899198,113.84951623808593,112.8800088702701,112.00869688112289,112.53177263541147,112.88916823919863,113.17418417241424,112.92116225138307,112.8739943918772,112.28175681224093,111.95675695920363,112.71270694257692,112.09157240903005,111.5918312901631,111.04591016797349,111.51562623307109,110.86379190487787,111.36344782589003,111.41283321892843,110.99814265081659,110.14377980679274,109.24230291321874,110.20676113432273,109.86301778210327,109.45087569206953,109.77816404215991,109.95340176252648,110.02173169422895,110.67887172242627,110.39704753737897,110.4626072095707,109.81369221163914,109.47217145143077,109.3287394978106,109.93943004496396,109.53764769807458,110.19331358931959,111.04828052176163,110.49113584216684,110.26857688231394,109.44884171290323,108.5357770533301,107.8757957778871,108.38065889524296,108.09098704950884,107.42459106305614,107.28762207413092,106.75063878064975,107.43570968555287,106.60070522781461,106.29288132721558,106.98316815355793,107.95375217264518,107.5547052253969,107.80282690748572,108.38650460820645,109.02870190842077,109.78221591515467,108.91390700591728,109.26096126809716,108.26729186018929,109.2107806764543,108.89600617671385,108.74133839039132,109.60295367334038,109.45604807930067,109.22949664806947,109.02809548890218,109.59439897956327,108.85045711370185,109.67208752315491,109.16100869188085,108.18314344296232,107.26541981333867,106.5720849907957,106.80879831360653,106.53702266374603,105.72266910644248,106.34546207264066,105.55148148909211,104.62877784622833,105.25948808947578,104.64228849671781,103.70447410270572,103.27589649241418,102.89738695789129,103.20472491160035,103.61431698361412,102.82673775358126,102.06601638905704,102.48836055397987,103.15800101682544,102.93002019729465,102.67918458674103,102.72581577673554,102.03403140464798,102.94160944223404,102.30178074957803,102.2488375864923,102.33029846195132,101.7437670440413,101.84730043960735,102.5223842333071,103.25500831147656,103.94304619729519,103.3351316372864,102.66763278935105,102.78938551433384,103.26995148835704,104.0765337292105,104.66317410347983,104.23056155862287,103.87015278358012,104.67247228138149,104.60002120118588,103.83227470330894,104.2856579925865,103.47566981054842,103.54013126017526,104.16217682184651,103.81415623193607,103.89118725247681,103.4122350695543,103.4694121661596,103.73027420369908,104.20714519452304,103.58582753269002,103.33814637456089,102.84139294270426,103.0369446114637,102.99576986627653,103.93143087485805,104.16634584544227,103.46692574815825,103.25460534123704,102.55411500716582,102.66220695199445,102.2344796541147,101.75971227930859,101.37314582522959,101.03799137519673,100.64604141004384,101.03092004265636,100.52436324348673,99.96355195017532,100.48005632124841,100.00830404693261,100.44023842923343,101.2992882868275,101.17344458727166,102.01512845885009,101.96267197653651,102.49955679709092,101.70059933885932,100.98710568714887,100.34979228768498,99.70705586718395,100.24659642437473,100.55936626717448,101.11739552160725,101.68783356342465,101.46941829891875,100.73133307369426,101.30316914385185,102.00398039352149,102.34666066151112,102.64924425398931,101.67288974812254,100.73365509044379,101.6545356628485,101.24077508179471,101.19150463771075,100.54859129432589,101.45281206769869,101.45367102930322,102.0774005772546,102.87545366678387,103.17493362072855,102.88425949355587,102.99975307285786,102.0797847895883,102.24513451568782,103.10539155220613,102.82888081716374,102.88316963938996,102.80732911499217,102.7487085191533,102.16749263042584,102.94085293682292,102.17378601571545,101.25803545257077,100.68096785107628,99.7370490282774,99.43622341239825,98.48085027607158,98.84223974728957,98.59746789326891,98.96165641909465,99.67169506661594,99.70863779168576,99.3523890026845,100.31636513769627,99.77930500358343,99.33962971437722,99.91197765432298,100.34704269422218,99.9905274156481,99.90189995849505,99.01784591237083,98.5810127723962,99.13831287389621,98.76242874236777,99.45098943263292,98.94778524339199,99.1128618484363,98.6432070331648,98.8837384255603,98.79254304198548,98.82812773855403,99.22617668798193,100.17764463694766,99.60637187585235,100.43980476399884,101.11550521478057,101.82724959636107,101.66707641724497,100.83911141660064,101.3701208177954,102.14286660030484,101.90615895716473,102.04544222401455,102.5625453130342,102.26739558624104,101.28846131917089,101.67588547570631,102.66609131125733,102.97118185739964,102.14034992922097,101.86620452208444,101.77608543261886,101.61452673841268,102.20109595591202,102.89851902145892,102.44682028470561,101.90447085769847,100.95486002415419,101.54358517378569,100.73481101868674,100.19269406516105,101.13426105584949,100.49323221156374,100.15132012963295,100.44743820512667,100.93259542249143,100.69892632914707,100.1361148506403,100.89106418192387,101.33663301868364,100.72914676507935,100.29580822214484,99.38704306492582,98.49596545752138,97.66768719628453,98.6449228557758,98.43824457144365,98.84875691030174,98.86492873588577,98.52640495076776,98.85041418066248,99.06986462697387,99.1916315020062,98.5704769641161,97.63513241987675,96.67083606077358,96.71914044069126,97.30613687308505,98.23567891959101,97.26689657894894,96.8746862495318,97.73039675597101,96.87217222945765,97.31716376449913,97.27920706057921,96.84445495251566,97.2691338006407,97.61360258655623,97.12925101723522,96.69538554223254,95.84093111380935,96.41932153142989,96.01229460909963,96.46616647206247,96.38433109782636,96.58675091294572,96.44153100484982,97.40515713533387,96.83833775948733,96.0518536134623,95.33405339764431,95.47217751899734,96.42808892671019,96.58515448495746,97.09224860649556,97.67057524807751,98.26197651214898,97.3325599655509,97.34722831798717,97.37216801242903,97.94647855637595,97.09982034564018,97.89733722666278,98.712389127817,99.30103620095178,99.18930900096893,98.45946499472484,98.27449239511043,98.61470431601629,99.12037603324279,99.98033245885745,98.9859096929431,99.04638842539862,99.13426579488441,98.70653933519498,97.98014280339703,98.31947245448828,98.99765808135271,99.24532040627673,99.8388997237198,98.91358297970146,99.66582537535578,99.17913961969316,99.29582342132926,99.43821528647095,98.95593432476744,98.42742741014808,98.91199142718688,99.01693366607651,99.29643669491634,98.41109064407647,98.82631027465686,98.88024806044996,98.0798216946423,98.99403326958418,98.09572207508609,98.69998653186485,98.14450062299147,99.03326490148902,98.09792542690411,98.5906320833601,98.0095246117562,98.43532336363569,97.47159744659439,98.23685206007212,99.19838752178475,99.94384682085365,99.14740839926526,98.66655743075535,98.7212285050191,98.58574653696269,98.18218992138281,99.03258917341009,99.94073539087549,100.80306157935411,100.95993486093357,100.46767648728564,99.81890486041084,100.62996273627505,100.69569412898272,100.24304217938334,99.95948237553239,99.71721679950133,99.5152003695257,98.6365396999754,99.34407234517857,99.08160647843033,99.49776679556817,98.79102413030341,99.2551747742109,98.64342790516093,98.63374465610832,98.63753817696124,99.45509785832837,98.6258855140768,99.28516174620017,98.78433420136571,98.56800610385835,98.09579631267115,98.92548814695328,99.80563241057098,99.9693277371116,100.5016197571531,100.69746108585969,100.84311562543735,100.64461340941489,101.05759926978499,101.11271290620789,101.94825668539852,101.39723573159426,102.20149438548833,102.34229499148205,102.24367058509961,102.85211893497035,102.92243603011593,103.10720783192664,103.68073714897037,104.43501580413431,103.77402430865914,104.73728931322694,105.05800854461268,105.55061650555581,105.3143461686559,104.63785236002877,103.71461559832096,103.1072912029922,102.71043203771114,101.97995239216834,102.81430097622797,103.81395944254473,104.60986055340618,104.97478655166924,105.60506813926622,106.08251549256966,106.09886986995116,106.97104133898392,107.72708012908697,108.14296419546008,109.131139901001,108.73263906035572,108.22920768940821,108.0630346192047,107.83723727427423,108.00448613148183,108.88148218905553,108.3199446736835,108.97394272964448,109.66606531571597,109.78533313423395,109.90819479012862,110.14620745787397,109.98752825008705,110.63238547416404,111.44951191032305,111.97715644631535,112.62538570258766,112.40299456194043,112.16038576047868,112.74516889965162,111.96028877655044,112.11974631017074,111.30051124468446,110.73694288451225,111.06393174035475,111.18271073047072,110.59844593983144,110.43075981363654,109.83965288847685,109.57030878774822,110.30985399102792,111.04911822965369,111.5313643058762,111.51767022814602,111.3239404624328,111.63457766640931,111.65804111212492,111.5196570395492,111.10193682461977,111.83830813970417,112.04048425145447,111.76768834283575,112.23364488082007,112.08654882526025,111.81221997505054,111.44935628352687,112.04320781538263,112.08651943784207,112.49705378524959,112.5181188499555,112.1737540778704,111.6909438422881,111.2296241526492,111.6470487434417,110.88963034935296,110.80225653713569,111.68470337474719,112.28609816776589,112.83612335054204,113.77671966282651,113.88844979181886,113.58321085991338,112.83748644217849,111.84604251710698,111.41648610215634,112.12126984912902,112.73361173365265,113.17723981151357,112.78365874523297,113.54782299743965,113.73288060445338,114.62317916285247,115.2176095629111,115.78067602496594,115.20668686274439,115.21710426872596,114.25373457279056,114.47295633377507,115.18482112465426,116.07873350055888,116.59340463066474,115.67675879783928,115.87340852385387,115.84221734385937,115.7335627162829,115.42097390582785,114.6394061986357,115.11359576135874,115.32873392524198,115.09202277427539,114.52126095537096,114.0412453757599,114.31997727882117,113.86399417929351,114.0357676288113,114.02343345852569,113.26514568831772,113.98978161253035,114.55403745966032,114.5148691223003,114.31782206147909,114.70075003104284,114.00911328801885,114.28752819309011,115.27582853101194,115.41384218260646,116.36028036987409,115.85158156789839,115.17815902316943,114.23083697725087,113.34355455078185,114.08770011458546,115.02341374056414,115.3834592467174,116.22641480853781,115.76424944400787,114.94903449434787,114.0490758814849,114.00845555216074,113.16158289788291,112.25467162393034,113.17256626207381,114.07122384989634,114.09638795163482,114.58990612858906,114.1596679566428,114.50702728284523,114.50973327225074,114.75414035888389,115.43496630201116,115.91400591656566,116.50400236342102,117.22243114886805,117.9070541667752,117.99756557913497,117.75265492266044,118.31569519871846,118.78019338101149,119.29837886570022,119.57050438830629,120.41568551911041,119.48161481646821,118.86376332165673,118.48582298494875,118.79667156655341,119.74557307269424,119.61326024727896,118.72477363562211,118.0201436849311,118.54234153963625,119.2480833302252,118.83834151178598,118.48657571803778,118.8914690152742,119.41495713870972,119.43516826350242,119.05606318917125,118.65993978036568,119.508235251531,120.3574777240865,120.70131218899041,120.2123659113422,119.76164551731199,120.66069597797468,120.96766630094498,120.94224997563288,120.2394526428543,119.88650585757568,119.03944342955947,119.81265454227105,120.07838434679434,119.50487441243604,120.09694322897121,119.64327174657956,119.69107427587733,120.33805121714249,120.87340621650219,120.66742509696633,120.03129470627755,120.49418368190527,119.8559216959402,119.58266473328695,120.28604594571516,120.85426500579342,121.5671991398558,121.73626853851601,121.74779755389318,121.19555138843134,121.71138083608821,122.06853665504605,121.61258278321475,122.26600125757977,121.92630158085376,121.71719841239974,122.49263656744733,122.376529103145,121.55677076196298,120.92835765145719,121.62031499063596,121.74576780060306,121.62787460861728,121.5628531286493,121.52747802017257,121.46517447475344,121.42096815723926,122.19144195411354,122.08726424025372,123.03113229619339,123.17923794686794,123.52222657343373,122.83450315333903,123.28831030335277,124.21897933352739,124.74391907872632,125.6749847815372,125.6519677224569,125.16307109594345,125.75661976635456,125.0592330051586,125.91434939252213,125.99585202895105,125.46760027296841,124.60109288850799,123.69832184026018,124.16438582539558,124.4600465898402,125.2739912783727,124.74321301048622,125.65983904339373,124.9802719624713,125.37753846077248,125.69937930256128,125.89216416468844,126.75477213272825,126.89992907876149,127.15556629560888,126.65363686019555,125.75786564545706,125.41796699445695,124.63010291522369,124.14192512398586,124.4696916937828,123.758884052746,123.57606584206223,123.91063048457727,124.04727297835052,123.36345188319683,123.50955726299435,122.9953017658554,123.56157107232139,122.6992399636656,121.97337244590744,121.62194246146828,121.65800873516127,120.6802061861381,121.25810915790498,120.71828366583213,121.67542235646397,122.32553613139316,122.44975820742548,122.78673062520102,122.06138171814382,121.31987868156284,121.71247820788994,121.07255978137255,120.21715262113139,119.88665911415592,119.83860773220658,118.89525891607627,119.2095791050233,119.22761761909351,119.32727386569604,120.2863723388873,121.1539214248769,120.5112277646549,121.44797638244927,120.50322073325515,120.67331611551344,121.03816322796047,121.37892100773752,121.28171786339954,121.2166880001314,121.16425143601373,122.14934659935534,122.09736752836034,121.84110829792917,122.09572597732767,121.19563429476693,121.9986994988285,122.10007387585938,122.52602669969201,121.77144182287157,121.8824160490185,121.71525160549209,120.74952883459628,121.12342279823497,120.48844054527581,121.3506428245455,121.30126846441999,121.48946209438145,120.65411265846342,121.0819548391737,121.65647827181965,122.33821677230299,122.82138165365905,121.85999139491469,122.23958437517285,122.95441064424813,122.20281466282904,122.26447683433071,122.39861974213272,122.7033097804524,123.40717151109129,122.87979472335428,122.87911994522437,122.29932560073212,122.0110919973813,121.58138285344467,120.99641112051904,121.70108162472025,121.44571487465873,120.92062473483384,119.93595414282754,120.57496498525143,121.03870161063969,121.2258372316137,122.07466597668827,122.95770304324105,122.09028717223555,122.40540553955361,122.59336787229404,121.98995589837432,121.01074285758659,121.17964416276664,121.28451480250806,122.25504270987585,121.91623072978109,121.05784445116296,122.0021179835312,121.0913331117481,120.20318624004722,120.59108012728393,120.97719573136419,120.52883325563744,119.66541356733069,119.16273638885468,120.01442050142214,120.486385026481,120.02924484061077,120.11249323328957,120.58405020274222,119.76081728423014,120.43725580349565,120.33422454306856,121.1571420528926,120.69696532655507,120.14804715756327,119.73224901547655,120.05070717353374,119.44152527861297,118.53987114364281,118.89811185188591,119.81795917171985,119.16245902329683,118.41465180832893,118.13075699470937,117.28511122753844,117.52669121744111,116.95964519726112,117.41007024887949,116.97991371527314,116.2695701844059,116.3278934750706,116.6370609998703,116.13596486626193,117.11696160072461,117.22122147725895,117.4724068515934,118.17270416440442,117.28068548021838,116.48999256733805,116.10347703238949,115.53332200553268,115.31121372245252,116.28114898130298,116.85476716887206,117.39231018116698,118.33540547545999,117.4305906035006,117.53724754881114,117.89229032956064,117.97230076370761,117.63914898736402,117.21705082990229,116.31759247370064,115.48475207341835,115.06703609181568,115.06886037578806,116.01895819138736,116.04418561188504,115.46727628726512,115.6259599798359,116.3599742394872,117.17666375730187,116.3908007661812,117.01342938933522,116.23040624475107,116.09757594252005,115.85384752834216,115.072744904086,115.36682714987546,115.70119278691709,115.82043560035527,114.98614489845932,114.91279665008187,115.79942143335938,114.88173845876008,114.73779986007139,114.2025097263977,114.91884660441428,114.51422738330439,114.55398671561852,114.16316293738782,114.67153653036803,115.28548311907798,116.12940610107034,115.35826754570007,115.08049481036142,115.54694760031998,115.5449717771262,116.01173390261829,116.83879376202822,117.71952312625945,117.56495043169707,117.7965904516168,118.41718879761174,117.94193478021771,118.0973606291227,117.54240633221343,118.34122075140476,117.36569177825004,116.39090685825795,116.5713867014274,117.43752342602238,118.04115964937955,117.44949196977541,118.39245167421177,117.75592967867851,117.37334324652329,116.38438908103853,115.60012667113915,115.13424581103027,114.73557781940326,114.3853733590804,114.26509733404964,115.23356812587008,115.64720634697005,116.15642612054944,115.51413534162566,115.8959297905676,115.27379711624235,115.21338363923132,114.45597552834079,115.13150641182438,115.86479509854689,116.3861797908321,117.3011054713279,117.04904004046693,117.74487169040367,116.92002029111609,117.70100921625271,118.0391810988076,118.13541781017557,117.7993207233958,118.17683918215334,118.69842625595629,118.11043231980875,118.91107852756977,118.53306868253276,118.30153791094199,117.44053949275985,117.35101364739239,117.30010157357901,117.69103738851845,117.75390814524144,117.94594930065796,118.23227050947025,118.64500711020082,119.16932978807017,118.8413949161768,118.24227206874639,117.73231081711128,117.52296956861392,117.75238749757409,118.25814129039645,117.65839362423867,118.56865204591304,118.69698468782008,119.57990200957283,118.68864235235378,118.16088980343193,117.72243474423885,118.23550043348223,118.47530062217265,117.4870946300216,117.37810967396945,117.98943761689588,117.35843000002205,117.67068160884082,117.40212739445269,117.62729869736359,117.54186898842454,117.27443272294477,117.65324592823163,117.03301169443876,118.01347235264257,117.7880754135549,118.3688536719419,119.3556082462892,118.98302375897765,119.52377507695928,120.34968029987067,120.55485637439415,119.64242583233863,119.17149431351572,119.3600386469625,120.15523354755715,120.56569794146344,119.65546762663871,120.1561395782046,119.48038947628811,119.23744710208848,119.00925156101584,118.33179550012574,118.90767780970782,117.943143137265,117.66424838360399,117.0295313373208,117.61105701653287,116.61715243756771,116.80438646115363,115.91088931728154,115.91448710346594,116.01681578718126,115.16346083395183,114.97555318428203,115.10904634278268,115.36710052378476,114.45841916231439,114.37972939526662,113.47087398776785,113.58527924492955,113.81870584469289,114.34197765309364,115.11963007645682,114.60709114884958,114.07162916334346,114.25893783662468,114.41853495221585,114.62913730274886,115.44295777799562,114.68738290620968,114.71377740660682,115.03843300789595,115.64034000504762,116.53089147713035,116.65677679516375,117.29726427374408,117.313569215592,118.24631514772773,117.29020482767373,116.82402092404664,115.93373868986964,116.86901371413842,116.20164553495124,115.32340690447018,114.93732797866687,115.12327069602907,114.23234663205221,113.37924575759098,113.8731070109643,114.29355101287365,113.48689128085971,113.35854603676125,113.65986963175237,113.3008025684394,112.59239027556032,112.9621372059919,113.08006658731028,113.41180363763124,112.99236381845549,113.54868006519973,114.24808234954253,114.79752295464277,115.11066282400861,114.69363211048767,115.57115210639313,115.48470966843888,115.0678047761321,115.22440643282607,115.76644205208868,114.92046999745071,115.74009731877595,116.13239432871342,116.61944966111332,117.4378386256285,117.84953217860311,117.4421787885949,117.27897990634665,117.95600130222738,118.51090988703072,117.62263123132288,118.61600486980751,119.15390872070566,118.62244713678956,118.39981773449108,118.33014053758234,118.59587658476084,119.19847802398726,118.20699528604746,119.01750131696463,119.2109404602088,119.72092680353671,120.56769324885681,121.38480960670859,120.8811218906194,121.19745479756966,120.9630152429454,121.57849556813017,120.71049109846354,121.00937070325017,121.51457450259477,122.20309836417437,121.25232286565006,120.92720399005339,120.8498973264359,120.5429802108556,120.00437151780352,119.65271856356412,120.31343414494768,120.82392273610458,121.77319221198559,122.27051284722984,121.9352426645346,122.29704527975991,122.64514848636463,123.50180683704093,123.35684516420588,123.31648507714272,123.28146199928597,123.89592762384564,123.00978035666049,122.52711707679555,122.25897521385923,123.1784469303675,123.72062825225294,124.56128304824233,123.76702057244256,123.43397726630792,123.54596337489784,124.41988283954561,123.7375018298626,123.36338314879686,122.89736884925514,122.39876419631764,122.05975689692423,122.86982916574925,122.23587850900367,122.4810484899208,122.91018681647256,123.39534957427531,123.41929984930903,122.45560830831528,121.80090570775792,121.27894492540509,122.04418569989502,121.40707529522479,121.87095935223624,122.4302930533886,121.69385620998219,122.43744719121605,122.12960869912058,122.04626233689487,121.09611390996724,120.22526063211262,120.51540693826973,120.01227599708363,119.25032907677814,119.38671095389873,118.54406412458047,119.35956067591906,119.04676098423079,119.63679842744023,119.8904995797202,120.2943458352238,120.87938850186765,120.81207239395007,120.95588857773691,120.4311590990983,119.6068163421005,120.47693550912663,120.84114898042753,121.6113954805769,122.27314517227933,121.60708452900872,121.2481106822379,121.29777972167358,122.2283212095499,121.9068905361928,121.94575638277456,121.44820348126814,121.19186434010044,122.13331188820302,122.2327664908953,121.63052051048726,122.26569673931226,122.36831900849938,121.43998390203342,122.24890156975016,122.92155202711001,122.21745785977691,121.25034700985998,120.59758394304663,120.68385047093034,120.85710415104404,121.37508512707427,120.41996184783056,119.67581579275429,119.31465504225343,119.9016152904369,119.44618462445214,119.2783522750251,119.16464920341969,118.38817492313683,118.13809829438105,117.9232454369776,118.13894901797175,118.62825123174116,119.37579421699047,118.42724383203313,117.7059886190109,118.60458677820861,119.10195041960105,118.70521527063102,119.38708571204916,119.4849208346568,119.70538163138554,119.08123844955117,119.05365817062557,119.11959960777313,118.5086529860273,118.08360125496984,117.7320772446692,116.81494762422517,116.03235898260027,115.57196045760065,116.29712680820376,117.00921275140718,117.56463708402589,118.0722110089846,117.83075156481937,117.85874597076327,118.17695775767788,117.63230108981952,117.84072398580611,118.04753265203908,118.63456983910874,118.79044508421794,117.98667906690389,117.88104803441092,118.6930100270547,118.23492108704522,117.5753342807293,117.77633375069126,117.41492516966537,117.48303717840463,117.52303687017411,117.76830064551905,116.7711979211308,116.76645147940144,115.96495647309348,115.05986823514104,115.6431023273617,115.19440299412236,114.94151861732826,115.16004118928686,114.25861950404942,114.87440199917182,115.59936709981412,115.29894016450271,115.98390841996297,115.86579002533108,116.39535030350089,115.7705064737238,115.54421525914222,116.2209214232862,115.46398203354329,115.98692861711606,115.29783449042588,116.014803359285,115.10796191263944,114.13888644147664,113.3151605995372,113.22130098799244,113.08453558571637,112.85591402091086,112.46566016972065,112.97323499247432,113.60675729671493,114.54217973304912,114.46008526347578,114.87465891893953,114.42267352389172,114.95861581340432,114.75868646986783,113.91581333009526,113.59951697662473,113.43105220235884,113.55164584191516,114.21217508567497,114.35891956230626,113.59694038890302,114.18170461989939,114.84944371227175,114.70544546376914,115.66899998672307,115.91987855359912,115.71493478957564,114.88005259772763,113.94885077839717,113.25829138187692,113.67052051471546,113.87007325328887,114.44212319515646,113.91059610247612,113.20309380674735,112.26826368831098,112.8207133016549,112.55401244945824,112.72723610978574,113.68399087479338,114.67547634756193,115.49107173969969,115.87340148957446,116.12609087396413,115.61186157073826,115.7418090426363,114.95151218911633,114.97888313652948,115.82936889398843,116.07340830750763,115.31779446313158,115.49545509880409,115.19310461729765,115.78567211842164,115.80509087909013,116.63079064432532,115.84680096944794,115.80540278647095,115.83387800538912,116.2396115954034,116.82136805448681,117.64382573636249,117.76249463204294,117.16818413184956,117.05540967406705,117.65740262204781,117.52246427256614,117.19779961043969,118.02056554937735,117.76032451819628,118.6250465111807,117.70690647512674,118.62929903436452,119.12138148816302,120.11610793601722,120.46814129920676,120.26313471980393,119.61379080079496,120.45082873804495,120.21554037183523,120.57271299650893,121.41732271015644,121.4806202063337,121.90022166958079,120.98545819334686,120.02868555858731,119.22364250104874,119.0007006325759,118.0916338134557,117.90508594829589,117.63275955058634,118.62287151068449,118.05043764133006,117.79330953489989,118.05761192319915,117.34824877558276,117.4944101977162,116.7940085134469,117.17207756685093,116.24815170746297,116.95860950415954,116.31257879035547,116.28220437373966,116.96069770958275,117.64691132772714,117.05761624872684,116.18273191945627,115.79779480630532,114.81479161698371,114.70032444642857,114.07149172341451,113.10410222969949,113.38609626656398,112.96694276155904,113.93284543184564,113.13023424940184,113.19044260447845,112.89788997080177,112.94163263915107,112.5238148085773,112.98386786784977,113.03280126675963,112.0490073566325,111.44130967138335,110.93625478539616,111.5141852623783,110.54478834569454,109.6054475819692,109.3273048796691,109.03766641626135,109.09118055924773,108.3483740449883,108.78887523245066,107.93606985220686,107.24110066425055,106.91819114098325,107.33738406281918,106.4642734695226,106.08953607967123,106.29603353887796,106.28317906986922,106.24201981537044,105.79084483208135,106.50438834168017,107.43121461663395,108.28075131168589,108.9305155267939,108.3038175450638,107.49703903030604,107.56187396775931,107.52462150342762,108.07473408337682,107.7625183146447,106.8567033498548,106.31205032579601,105.55939482431859,106.47051461879164,105.78709970414639,104.84442047961056,105.44417463010177,105.81055007409304,104.93305882951245,105.28487417055294,104.82602616166696,105.37026067590341,104.952972530853,105.52611734066159,105.84564117481932,105.03740377444774,105.11846003402025,105.1268688798882,105.86459837621078,105.26873735524714,105.06464118370786,105.62128311488777,106.50956802349538,107.50062039727345,107.14812725502998,106.89534200821072,106.46947028487921,105.83484831359237,105.47516292985529,105.8582520680502,105.24175806716084,105.84282790170982,106.09707008674741,106.24403346842155,106.27321175066754,106.96423809137195,107.30493528861552,107.09392328513786,106.55831866944209,107.42941232398152,106.60260468674824,106.88490845961496,106.11615431495011,105.50140637299046,104.80296482797712,104.06492837890983,103.78457598667592,104.4803942986764,103.51808239100501,103.65472826454788,104.11631965404376,104.55739209568128,103.80220637004822,104.1961804041639,103.3512520371005,104.01275027589872,104.44467579713091,104.06864433409646,103.31307118199766,104.15804989868775,103.62529883952811,104.08564916532487,104.62016253219917,104.34466604143381,104.04537501232699,103.54336499702185,104.22863085381687,105.13518479885533,104.80826522829011,104.67231518309563,105.47383786784485,105.28651132667437,106.18339894106612,106.84375412203372,106.27073238743469,105.85174269787967,106.741311208345,106.28968022204936,106.92037770152092,107.6632906976156,106.83251087926328,106.09028840018436,105.10169136803597,104.50245780684054,103.82907097414136,103.80501963896677,104.45211501652375,104.38398686610162,105.04242289206013,105.26177548617125,105.1732393600978,104.70135337812826,104.11628311034292,103.55824497388676,104.07509773643687,104.65814674645662,105.36950010759756,105.74076960189268,105.63384630298242,106.19085881253704,106.38231479376554,107.19757582200691,107.79404259100556,108.69366273935884,108.3782399892807,107.97391373291612,107.58111761929467,107.43316054483876,107.07103727152571,106.79712627083063,106.26351445959881,106.80705315293744,107.70709122018889,107.98515319777653,108.97101504774764,109.16835751757026,109.99034684058279,109.47034052480012,110.43061563326046,111.1365805445239,111.83688442129642,111.9852253915742,112.93356951931491,113.75663971761242,114.27685096580535,114.12139051267877,113.96775497449562,114.73556005908176,115.35936838947237,115.31584963342175,115.09225543634966,115.70232248259708,115.24329678015783,115.88170410739258,116.86153741227463,117.10426495131105,117.03844436723739,116.80740596819669,117.62585099134594,117.24099606880918,117.09538623411208,118.08074093656614,117.53221325669438,116.97175530111417,116.44395860238001,115.61155319446698,116.02004488231614,115.95883495127782,116.52212517289445,116.20777658745646,116.82086735311896,116.83986037550494,116.81659465795383,116.57170696696267,116.6169827580452,116.86140711512417,117.51636450598016,117.24220684915781,116.52705367095768,117.263860180974,117.2630139682442,118.23135675722733,117.80391968879849,118.68958553299308,118.87252206914127,118.83715828415006,119.43358271289617,119.43045636964962,119.3914233064279,119.9621539930813,119.10994282690808,118.38567403843626,118.03881265642121,117.77658670349047,116.999882069882,117.28454414382577,118.18307165801525,119.14846746250987,119.69676764588803,120.16608756128699,120.97493400238454,120.69491211231798,121.29468071227893,121.53761134762317,121.87709238193929,122.64094311278313,123.0520291836001,123.18326184852049,124.00347759202123,124.61353882029653,124.4649357739836,124.15389435691759,123.50958506762981,123.06140417046845,123.58152825431898,122.65497134020552,123.48081587115303,123.13039701711386,123.0493399174884,122.72323994524777,122.4985626237467,122.13644386548549,122.28099814103916,122.47885236563161,122.24180023372173,122.49430311610922,122.12665003305301,122.71926164859906,123.1334259682335,123.48754228046164,123.48851929046214,124.32120929751545,123.57961439806968,122.71671816566959,121.85864221351221,120.99119045538828,121.98488154727966,122.49489622330293,122.84841191209853,122.57322669913992,121.89177744835615,121.85988827981055,122.05987780820578,122.39303857833147,122.71687430841848,121.72603996098042,121.97919876268134,122.32507839798927,122.78109860839322,122.09752308903262,121.40369089320302,121.77600049134344,121.12249863380566,122.0316916462034,121.70254892203957,121.11999689880759,121.92774693807587,121.3879280644469,122.15951943164691,121.18638992961496,121.32810417329893,120.94454048294574,120.55717975832522,121.52637225948274,122.3475503618829,122.98556190682575,122.51670422311872,123.42875213548541,123.53101027850062,123.05818255245686,123.96065499680117,124.85542583093047,125.70424914872274,125.41097019519657,124.51459251763299,123.82092166086659,124.0708009484224,124.16474921256304,125.12493338156492,124.7767082634382,125.50510902516544,125.03588662156835,124.8953702384606,124.77551281731576,124.22958140075207,123.96706018829718,124.68306261021644,125.55650234548375,125.96784145757556,126.03438205644488,126.85554095637053,127.35653203353286,127.47277995757759,127.06205132836476,127.18504266021773,126.95870393514633,126.17719251988456,126.661996263545,126.80331430165097,127.38846423476934,127.37867195392027,126.93288778373972,126.08079047128558,126.2442576806061,125.55123670678586,125.81385110132396,126.52837611688301,126.98595201363787,127.08763897279277,126.29016874916852,126.72521877661347,125.9112456953153,125.76228528330103,126.53331297822297,126.39736344385892,126.93295625783503,127.01358522148803,127.21280925162137,126.30988539708778,126.10916525963694,126.42286479845643,125.71217310288921,126.36983904801309,125.89767228672281,124.92852071067318,124.28898926312104,124.0593103566207,124.02979020075873,123.27338802488521,122.33671170985326,122.23729179846123,122.07859168061987,122.23155000247061,121.4477843279019,121.799060291145,121.91953224455938,122.81058066803962,123.19650889607146,122.61574158445,122.48467297805473,122.71191667113453,123.5651536420919,123.09009361639619,123.87811763817444,124.06650157552212,124.43216648697853,124.60980770178139,125.00501168798655,124.02181632630527,123.56093062879518,123.12050299998373,123.92633298272267,123.1137767219916,122.48993627820164,122.59624046599492,122.10530323861167,121.52025762852281,121.39267087820917,121.65084065776318,121.42467761132866,120.59352443739772,121.41447737207636,121.43667612969875,120.87299005873501,120.53713670372963,120.17319006333128,120.4786077318713,119.58751618023962,118.8913116035983,119.45115316519514,120.34704773267731,120.52969658374786,120.89215580374002,121.80746337166056,122.73379367683083,122.59774892264977,123.37570082396269,122.41929446905851,121.67567549878731,122.29041843349114,122.048359724693,122.85413262806833,122.46663014963269,123.07678530877456,123.70094320643693,123.64170144731179,123.08786862017587,123.57868015533313,123.44873708253726,123.92598640080541,122.99937364505604,122.09056842140853,121.26281870808452,120.79011278180405,121.60637441417202,121.23983114911243,120.78335347818211,121.56413995008916,122.29427838791162,122.71002612821758,122.29244868131354,122.46139552490786,123.12411292036995,124.01255241129547,124.81537375319749,123.93470396287739,123.57856650836766,122.68675075052306,123.17813573777676,123.63922175671905,123.30956583889201,124.29848966840655,124.64776605600491,125.58358749607578,125.53020671056584,125.04724682494998,124.57440695958212,125.28999003674835,124.30628526769578,123.43693374283612,122.79932305496186,122.8557820962742,122.71335795102641,123.46171008748934,123.33173253573477,123.38060206640512,124.3244542949833,124.59440479194745,124.79442126862705,124.32609954057261,124.93726959452033,125.3627924141474,126.2041498622857,126.7799089695327,126.66971593117341,126.81563519593328,126.59910259349272,126.57308533694595,127.52110047917813,128.37999411532655,127.6551438421011,126.66015909891576,127.0756261209026,127.6712331995368,128.09635006356984,129.00446042278782,129.82433842681348,130.01696955319494,129.07332198461518,129.1666836203076,129.1263890727423,129.18753136787564,128.30520846229047,127.56924721878022,128.40679735736921,128.3608103627339,127.79860630026087,127.80596792325377,128.1583606330678,128.44643289921805,128.31027971347794,128.1921257674694,127.78532312298194,127.65112821571529,127.68896672781557,127.61456724675372,127.85531907295808,127.3903135266155,128.3874622201547,128.15716923912987,128.93493418535218,128.92966363346204,129.77203856082633,129.41136959614232,129.0454651582986,128.44281868077815,129.35482888435945,129.45454095397145,129.6764718578197,128.9492674586363,129.43688543932512,128.88569843117148,129.61486102221534,130.1378573938273,130.72850678721443,131.07884010951966,131.69487715372816,131.0541652245447,131.11599870724604,130.6568190874532,131.37423562677577,130.76216579042375,129.94017253629863,130.90780799323693,130.9437946593389,130.88499702559784,130.27827121736482,131.09406821336597,130.26688932767138,129.97374369902536,129.35091023659334,129.40472377790138,130.06600777851418,129.96233627665788,129.41475784871727,130.40391691075638,130.72826873650774,131.2500572525896,130.53753832913935,129.7681603091769,129.54407431045547,129.8087281724438,129.41846716869622,130.21830226154998,129.25718303443864,129.59984578285366,128.65209196228534,129.30367173906416,129.82631363673136,130.5985029223375,131.4190779766068,132.0490871076472,132.7438351805322,133.50450145220384,133.61118576675653,134.30378905823454,133.8163046548143,133.30103793973103,133.39742773585021,133.74920526472852,133.7396113248542,133.62670656852424,133.4897382305935,134.37951395381242,135.0210350882262,134.41202472615987,134.21393973380327,134.57080365670845,135.05847273860127,134.20658728014678,134.85202033771202,134.13278071954846,134.38408059766516,134.60811569308862,134.2378302742727,134.84880768693984,134.98203592840582,134.32945597637445,133.51408739201725,133.3198446505703,133.52569987485185,133.41672902554274,133.87123630475253,133.14241135120392,134.10498217400163,134.27847399143502,134.17739530326799,134.13931266777217,133.90502003021538,133.06055783620104,132.4523521051742,132.90529990335926,133.90470829419792,133.36634154664353,133.49002389749512,133.1621375279501,132.40497918939218,132.41652846615762,131.4253947790712,131.73904711706564,131.98914981633425,131.89796634484082,131.16756244609132,131.01284574903548,130.2116891425103,131.09954729815945,130.30705194873735,130.1261572423391,129.33014064887539,130.08740221709013,129.36800698982552,128.840005107224,129.80049678869545,129.43978443648666,129.1454770914279,128.9895054763183,129.7916731792502,129.52203301619738,129.4373929873109,129.06035724189132,129.60230547422543,130.2819419815205,130.95730003155768,131.69781719520688,131.1819426799193,131.71348756784573,131.55483834818006,131.94897340796888,131.6907905577682,131.87452333094552,130.9935831851326,131.14426934998482,130.99341388698667,130.39094137307256,130.21648935368285,130.78766372334212,130.21325318189338,130.21436855150387,129.41769544174895,129.56118118111044,128.95843080990016,129.25013734353706,129.67133312486112,129.66119078733027,129.90670525003225,129.19527391484007,128.4845822704956,128.9559556627646,129.47760170698166,128.89910231065005,128.68927175179124,129.5114205405116,129.54682994214818,130.21397786168382,130.46590073872358,129.95860937330872,129.58328980207443,129.45088784815744,129.03521825745702,128.8560463055037,129.15356554929167,130.00390174333006,129.0340551258996,129.87512994464487,129.4809237481095,128.87254669563845,128.59592014271766,128.86743514286354,128.626795404125,129.27771672513336,129.46704602940008,129.69633848918602,130.369612661656,129.99082735646516,130.0857830606401,130.12160605750978,129.78676721267402,130.19156824378297,129.21218494977802,128.7451951582916,129.49026782391593,130.44609205471352,130.37703866744414,131.01254553627223,131.15436266642064,130.1568715982139,129.87134104641154,129.14585137320682,128.84265285544097,128.30757893621922,128.0309641836211,128.34882498020306,128.59726668754593,128.23825284233317,127.47100899973884,126.8171421289444,126.97119091777131,126.73911570105702,126.53029630007222,126.94684894708917,126.80787325836718,126.20708124525845,126.79038465209305,126.035964098759,126.05288109974936,126.60667849238962,125.83170588780195,126.47174144303426,126.2433354682289,125.81275244709104,125.69040052313358,126.16975329909474,125.43731509614736,124.82980236317962,124.42830899776891,124.43430068064481,123.76643625367433,124.19907118333504,124.37004914227873,124.26179143134505,123.54536606417969,122.77083265921101,122.58426654804498,123.14694270631298,122.80454341275617,122.832162885461,122.1030409974046,122.02842523856089,121.43277751514688,120.84453803161159,120.23351573897526,121.1967952158302,121.34551723534241,122.3232653727755,121.88467494910583,122.1595718045719,122.25530815357342,122.3873543231748,123.11618561251089,123.13645639456809,123.12982995528728,123.50565249007195,122.9955904474482,122.87317240610719,123.43077967688441,123.70695560611784,123.56536992266774,122.57309960061684,122.88410298293456,122.69812902854756,122.08234315225855,122.64656596723944,122.64005198748782,122.07051784964278,123.00140975462273,123.78138741711155,124.12728268047795,123.5807704818435,122.82507312344387,123.19100399781018,123.94689938612282,123.23351798439398,122.26010339846835,121.38024306856096,120.64252944663167,120.65292766829953,121.0928576537408,120.6370280943811,120.15562651120126,120.39314107364044,120.750514596235,120.77828028798103,119.86824550898746,119.54593606106937,120.00441658310592,119.26074309460819,119.30747979879379,118.9792463472113,119.17892439384013,119.27285766415298,119.56717646960169,118.97028430737555,119.84090284723788,120.61625114129856,120.77412037877366,120.52318015182391,120.05959449429065,120.00848730374128,119.65497514698654,119.8820114666596,120.5520427194424,121.00885356776416,120.76351762190461,120.5911909439601,121.33316609077156,121.67981905164197,122.54204937815666,122.42252486944199,123.22037364635617,122.57798105245456,123.54465837636963,123.0467734420672,123.38388098869473,123.16119989333674,122.37495268741623,123.19657504698262,123.48839782271534,123.07167810341343,123.55206797411665,123.85181303648278,123.64787782356143,124.20099161192775,124.8838946223259,125.45319908345118,125.25873126741499,124.87976324791089,124.44612741004676,124.98432394117117,125.26133067300543,125.92528832191601,125.27106402348727,125.44469490367919,125.9243367514573,126.81342774769291,126.83154037548229,127.75133943511173,127.32071297429502,128.15409785788506,128.3048159251921,127.63835480762646,126.81896457029507,126.94526397297159,127.7260311236605,128.04731192393228,127.76939853606746,127.63802872085944,127.63942638458684,127.81913995929062,126.91897237068042,127.37941740918905,127.580812191125,127.86256887344643,127.25077537912875,127.39918735111132,126.40412907954305,125.44247603509575,125.20790492603555,124.61801110533997,124.79776861937717,124.9221039772965,124.55865569552407,125.1651624115184,125.37520271679386,124.78726356988773,125.15596626186743,125.29630356794223,125.42208225373179,125.3452283567749,124.53503624396399,123.6552505879663,123.33934572851285,123.76571796415374,123.62037632986903,124.52963505499065,124.25661537703127,124.50748376827687,124.70894127339125,125.3936175154522,126.26215485949069,127.03008503559977,127.37761363293976,127.03758424893022,126.55790115660056,125.94731362257153,125.71831706026569,125.59634738741443,125.37287253607064,125.00649515306577,125.28926206566393,125.95665839361027,125.9836580073461,125.83938016695902,125.53308699280024,125.38894301047549,125.42010020790622,124.63741406891495,125.43974216189235,125.45384107157588,125.2781711476855,124.85523275937885,124.66004742728546,125.1692780693993,125.32576187700033,124.39857311034575,124.81578709790483,125.46278159925714,125.73378031747416,125.09389340644702,125.43493743147701,125.31832260452211,124.6363467569463,124.50261829188094,123.81877709785476,124.35756065091118,123.9291925788857,123.01143182162195,123.79373988276348,124.35757885640487,124.51092994911596,125.08514566347003,124.79664388904348,123.88124283822253,124.6825073887594,123.82687943289056,124.60453752847388,124.68906902568415,125.49950114823878,126.18952396837994,127.10051433974877,127.13289927039295,127.78464084165171,126.85868114512414,126.34548833733425,125.46832707012072,125.62327127670869,124.8121998491697,124.76041582599282,124.35501097422093,123.56273006787524,122.94743453525007,123.94648048002273,124.25052359001711,124.78792707063258,124.05396476155147,123.89707113429904,124.2140829875134,124.33257013140246,124.37127805454656,124.99448056332767,124.27588731097057,124.23270177887753,124.54553818050772,123.98097519949079,123.60730969160795,122.72251928923652,123.4275979869999,124.39878417132422,123.58049672096968,124.22362011298537,124.10978325130418,124.15333582647145,123.19273771904409,123.4323758808896,123.66942158527672,123.12322424026206,122.94032984832302,122.25496330158785,121.2999458052218,120.93835166608915,121.1678602239117,121.6476485482417,120.96962257660925,121.78980292985216,121.91278659971431,121.96842994634062,121.7972005456686,121.84414742467925,121.5669626663439,121.93281661113724,122.38699385896325,122.79236685857177,123.41855452954769,123.9865568652749,123.69407488638535,124.21190577745438,125.00569428689778,124.71774477092549,125.53255237359554,124.63240194087848,124.42893043952063,124.94795241393149,125.79988277330995,125.85444612707943,126.58141899388283,126.88460991624743,127.46760115865618,127.2077343808487,126.50119699025527,126.07635429222137,125.56222175713629,126.1496076816693,125.89674138883129,125.78620338719338,126.56826325599104,126.83587868651375,126.47082873806357,125.69702746719122,125.17106479406357,125.45795737579465,125.07627639640123,124.84212455665693,123.87343739811331,124.18397721555084,123.63345080427825,124.50352532742545,124.95897843269631,125.26840428821743,124.59459328278899,124.25585610605776,123.8593004452996,124.21653784485534,124.08844573656097,123.56999835930765,123.68579969229177,122.88347733719274,123.30266112228855,123.26798671949655,122.39523657876998,122.7597771990113,123.11226100241765,123.29028491908684,123.25854836404324,123.2028954103589,123.81436857488006,122.98756685201079,122.98814827855676,122.4326414684765,122.409587896429,121.635230764281,121.56139038922265,121.0200687800534,120.20795470429584,120.25600591441616,121.01600237609819,120.65217700554058,120.13226391328499,120.26443188125268,119.94574653776363,120.41019402444363,120.23062058584765,119.33859281009063,120.09264650940895,120.3833072273992,119.96347943367437,120.96150286868215,120.5314656351693,120.3703636568971,120.23913317266852,120.17120017949492,119.71933648362756,119.2564632575959,119.13630561716855,119.93537856917828,119.88644819473848,120.83025495428592,120.08237698720768,119.5689470958896,119.0152105614543,119.86608757963404,120.75786554068327,121.05280104558915,122.03516254387796,122.37943622097373,122.86234743380919,122.29076022002846,122.74332450283691,123.18121177935973,122.90882624918595,123.65321900043637,123.28546871198341,124.09757271036506,124.46983934007585,125.31752903573215,124.6660634148866,124.59372336184606,123.93434117315337,123.2023998638615,122.24747668160126,123.07110661733896,123.47474231012166,123.68468255735934,123.50781240360811,124.02476625796407,124.42198500223458,123.89616868179291,124.86261598300189,124.63762744702399,124.05289097363129,125.04424220370129,125.30514433560893,126.18929522763938,125.40154101513326,125.61871656915173,126.11585528729483,126.26599381817505,125.80534055596218,125.3603502321057,125.86638706969097,125.72318881424144,125.2235051067546,125.72801739582792,124.94030619319528,124.54049014206976,125.36645442759618,126.12343857623637,126.65731692267582,126.98670028103516,127.77089433884248,128.00883704097942,127.65456775762141,126.87554246652871,125.92186246672645,126.63919605361298,125.78031166642904,125.10826391074806,124.72135634254664,124.23798951506615,123.73318047821522,122.77121275803074,121.82766423933208,122.1802451563999,121.3117921706289,120.58578688371927,121.15146838827059,120.3142944034189,120.11493772407994,120.36877551674843,119.40739252930507,118.97133975708857,119.20351214054972,119.12653504544869,119.92607186594978,120.22053937381133,119.83974483469501,119.02571318019181,119.9798564161174,119.89014056883752,119.18051559245214,119.90649820910767,120.1850013686344,120.82331050047651,120.16233458602801,119.53806301346049,120.44908603653312,120.36341281887144,120.35086113400757,119.96082014683634,119.1086331573315,118.80309549719095,118.553746544756,119.54505104525015,119.90866625867784,119.54778507351875,119.67436226364225,120.09719077963382,120.32063060393557,120.95322227897123,121.21132764173672,121.48183810757473,121.21811394393444,121.69189729681239,122.59088712744415,122.03779382584617,122.76478077238426,121.8875802620314,122.00627807248384,121.7062796652317,121.71592569677159,120.81996575184166,120.53299984196201,120.71309429686517,120.43736750772223,120.18512073950842,119.49148157471791,118.85620478820056,118.69765841402113,118.57507878169417,119.1845796587877,119.44446199387312,119.60635764664039,120.19667455647141,119.68658931367099,118.96588512416929,119.93675495311618,119.89346017548814,120.74826325848699,121.48371517658234,120.9266856033355,121.03304874990135,121.8197126192972,122.09538096468896,122.0209034816362,121.91269989404827,122.74802492186427,123.26041106693447,122.6083211377263,122.5801913049072,122.49773117527366,122.935096595902,122.58205384621397,122.08051735069603,121.90483309468254,122.8567529246211,122.07740335958079,122.81827342510223,122.18427883926779,122.6583254178986,121.86974023748189,121.87604697607458,122.26092254882678,122.88458646321669,122.34633308369666,122.05895266728476,121.2177689136006,121.69335784669966,122.31452484661713,122.00211111269891,121.97531451564282,121.8896657358855,122.01200684066862,121.48061863752082,121.10310314502567,120.2458038222976,119.90853786002845,119.73550768848509,120.26791482931003,120.88729574764147,120.81629380350932,120.36695264000446,119.56005880236626,120.28559143841267,120.2317416779697,121.09969810489565,120.18055819487199,119.9779201974161,119.37520880438387,120.03112764516845,119.58318511769176,119.94574664719403,120.81858456786722,121.53790418803692,121.94765734905377,122.50701398542151,122.817958581727,122.02469273842871,121.99028443964198,122.28159328270704,122.31911047920585,121.88827810995281,121.68438664497808,121.18072314467281,120.89813248673454,121.77281970251352,122.28759251860902,123.12464761547744,122.76546117989346,122.23249100334942,121.9952268851921,121.53097269125283,120.5505287302658,120.01144282566383,119.0892257434316,119.20970676653087,118.26174316741526,118.92758433986455,118.05080050416291,118.66081871883944,118.27445162367076,119.07364997081459,118.83661234891042,119.32403345080093,119.7227843515575,120.59990016324446,120.25596427218989,120.72651877440512,120.14440709538758,119.98517316905782,120.02443031407893,119.31329888803884,120.29903547186404,120.62702819146216,121.55082821985707,121.85731808235869,122.81460898043588,123.81338186142966,124.47337100235745,124.13896218826994,123.75139024294913,123.75477586267516,122.88585723331198,122.10841271281242,123.07182020507753,123.99820508807898,123.38833816722035,124.04735449142754,124.80075745843351,124.9197051487863,125.53683228092268,126.27622118452564,126.98920219670981,126.81795328808948,126.96725773392245,127.58033923991024,127.62878061411902,127.28235505521297,127.41905078710988,126.42733004223555,126.84780512703583,127.25545936170965,127.30190351838246,126.31570328539237,126.29500286653638,126.0544133768417,126.17659841384739,125.79790951590985,126.74253744492307,126.18577011208981,125.70513767469674,125.60922435531393,124.88908398989588,123.9140275772661,123.5861040763557,124.07800743635744,124.15981293376535,124.19560171756893,124.53741054004058,124.16375336609781,124.40500381914899,124.30131306825206,123.60280663194135,123.50177094200626,123.68640165682882,124.654202115722,124.23129450203851,124.99994756421074,125.84877192787826,126.78242351068184,127.46980547485873,126.7480688272044,125.98974379338324,124.99022596376017,125.25922652892768,124.4195756255649,124.63580744713545,125.26313542574644,125.69216506555676,126.58062966633588,127.09674262348562,127.12726550363004,127.14161131903529,126.7238741312176,126.61765113705769,127.06411740602925,127.83662016270682,128.2155703548342,128.01914756465703,128.9625846836716,128.81249236036092,128.18661216646433,129.11523282108828,129.01722449157387,128.5084706004709,128.64984602155164,128.55630560871214,129.18878541188315,129.52731842221692,130.22191511839628,129.6798571581021,130.1179866218008,131.06855133082718,131.2232649633661,131.78610766353086,131.68464530725032,131.02690669056028,130.511553757824,131.39359556231648,132.02797087933868,132.0591414058581,132.9070858224295,132.42951018549502,132.06495848484337,132.62155282730237,131.9099360606633,131.6513648419641,131.89374090638012,131.9093379615806,131.13702980987728,131.3959253327921,130.44880164973438,130.0364119578153,130.48346534743905,130.77598817646503,131.20893504330888,130.22437940910459,130.87631812598556,131.6369994552806,131.2451916411519,130.68964410666376,129.82057367963716,129.83293144404888,129.44711197912693,128.83674728032202,129.1173511533998,129.41021681390703,129.96282754372805,130.39935566624627,129.71617509052157,128.96970031037927,128.557158483658,128.28290139790624,127.69106954848394,128.34315455704927,128.44254022510722,128.4857873688452,128.1824996015057,128.8326679095626,128.28892839048058,127.78635354852304,127.54585854522884,126.73605930106714,127.61314784968272,127.77324361121282,127.0900203329511,127.96467609191313,127.56724070431665,126.57115232525393,126.34125412488356,125.44277508649975,126.38579591875896,126.9278723676689,127.75699859857559,127.35137357842177,127.05566401407123,126.95081346714869,126.91237692302093,126.2863820954226,126.60078890435398,125.73406072659418,124.7812766940333,124.66933770151809,124.48166232416406,124.39647902641445,123.53407650021836,122.94679563771933,121.95513105811551,122.01108144270256,121.51838802034035,120.6800907435827,120.07862894190475,119.4331047302112,120.2034912048839,120.97907116776332,121.07187620876357,120.7238332577981,120.27014533244073,120.09984994539991,120.32869736477733,120.22597416257486,120.19567517377436,120.5726588149555,120.11971259582788,119.35078657604754,119.60239495057613,120.03602663613856,120.99690424092114,121.79668286535889,121.15103420428932,121.17505940468982,121.75067190360278,122.102990149986,121.63350636744872,122.13205361785367,122.70741278771311,123.4955368549563,124.4107862599194,125.3851802740246,125.60149988951162,126.56800001906231,126.90644218539819,127.67748723598197,128.63652028283104,128.97946114931256,129.0955507964827,129.91363753331825,130.25192514015362,130.9494551117532,131.39335199957713,131.00764018157497,130.2428213325329,129.95862761233002,129.09008679213002,128.4310975726694,128.02798232156783,128.991191605106,128.9534692573361,129.82999394414946,130.32913085259497,130.2841060901992,130.44604167621583,130.85870427405462,131.31358076725155,132.22495631081983,131.81706398539245,130.83881901204586,129.89678876055405,129.5851650456898,128.92072288971394,129.48359209438786,129.1901513999328,128.43769332021475,128.98903205199167,129.84014844987541,130.60269096819684,130.80771092372015,130.8572615836747,130.38040630379692,130.3490194710903,129.74030926264822,129.64865438314155,129.5553829339333,129.49520111177117,130.0244238995947,129.54561127489433,130.53793334402144,131.46216969238594,130.50640321196988,130.9957707710564,130.16132063278928,130.51586807053536,130.20713394507766,130.96552166668698,130.99965024460107,130.48544632270932,130.66839490598068,131.02337984601036,131.38655656483024,130.7070648148656,131.48420294001698,132.25089264847338,132.72376369452104,133.10866442183033,133.56964498804882,133.02949517499655,133.93960264790803,132.94154143659398,133.34579937485978,133.76261913822964,133.93392408359796,134.4761927765794,133.95256673684344,132.990803882014,132.29287400655448,132.72373451432213,132.32872335147113,131.731854674872,131.93259905138984,131.2891911957413,131.66138360230252,132.56485329568386,132.80037569021806,132.2884578537196,132.54885226488113,132.8929165797308,132.74465370830148,132.3187434785068,131.43004603497684,131.93894084729254,132.02675245935097,132.0224809893407,131.37086999462917,131.69574092468247,131.7685006018728,131.50608893157914,132.4345267880708,132.4224746399559,131.4987839795649,131.79590122401714,131.17158446274698,131.50285911094397,132.25663050217554,132.45187465753406,132.612357261125,132.56559797609225,132.87309536198154,132.33427885128185,132.12075195088983,131.68342977249995,132.56396832177415,133.2213257504627,132.38719092216343,132.32613256992772,133.03314209915698,133.78451562020928,132.93216144153848,132.88176025543362,132.79197463626042,132.68391387816519,132.57549224607646,132.86727197933942,132.63846599822864,133.24408140731975,132.72225903207436,132.6328707919456,132.0791254900396,132.11196975409985,132.43512962991372,133.13564800098538,132.23725876631215,132.64358510077,132.2137892539613,132.75496500730515,132.07566734356806,132.36791702033952,133.03765743179247,132.88813919527456,132.4012961164117,132.69185790419579,133.01015518046916,133.7255147374235,134.4968304010108,133.52541077136993,133.45007974654436,133.32394961686805,133.78805209510028,133.98207140900195,134.21972440369427,134.1467735641636,134.69159308355302,134.6447250121273,134.77318933047354,135.12394421501085,135.03777166828513,135.00050146970898,135.1340364483185,135.0061023682356,134.9517103866674,135.2070829635486,134.37095098523423,133.79096099268645,132.95123706338927,131.9890795731917,132.5037212674506,132.2999538835138,132.08290064381436,131.16696197120473,131.58286875206977,130.87098836665973,130.7203636970371,131.29261515755206,131.1688207918778,132.05804823571816,131.3428588071838,131.23667091038078,131.1061233682558,131.41851590620354,130.44175552483648,130.0974878515117,130.11035435274243,130.9058431116864,131.10273767123,131.39369280822575,130.63850459083915,130.90970614785329,130.5999705051072,131.07865427155048,130.53160998877138,130.92736696265638,130.0051176934503,130.95771766779944,130.36577282985672,131.3542905105278,131.80000556027517,131.6427562595345,132.0882082148455,131.9447489399463,131.83054043725133,131.11645085178316,131.86742741055787,131.85640721255913,132.1155791822821,132.38755212025717,132.95650109415874,132.40868238452822,132.8747773654759,133.11765432637185,133.8291561617516,133.49814463732764,134.43647692212835,135.14694179128855,136.08021495537832,135.61567691760138,135.78787060035393,135.79271923797205,135.10149854794145,135.8742991760373,135.85022192588076,136.35196574311703,135.681631767191,135.02269184822217,134.9986108201556,135.8815254829824,135.19096629461274,135.65244913939387,134.75856253225356,135.65206501400098,136.58448444260284,136.55751242442057,136.6977917184122,136.7450971142389,135.82153085106984,136.14288003137335,135.60375730739906,136.08246237551793,136.4779380070977,137.4139575078152,137.7998834103346,137.15187927661464,137.3295573615469,138.04569639079273,138.96955806342885,139.54316977411509,139.7637691674754,139.30470286216587,140.0652898098342,140.17127374419942,140.4375693690963,140.58330562664196,140.09500182047486,139.45181901426986,139.8503675488755,140.78787496732548,140.45193275343627,140.95098259439692,140.5277536837384,141.50083660148084,142.14259007107466,141.55374382669106,141.50963083468378,141.5058959480375,142.05339965224266,142.0530824768357,141.40650447178632,141.809608659707,142.34040562948212,141.76413242612034,142.3465816602111,142.13566176686436,141.15167176164687,140.42260091472417,139.97189184557647,140.96419488126412,141.58313025254756,142.4832299342379,142.4753909157589,142.84790184209123,143.72066076053306,142.9387218640186,142.71855433285236,142.5603285334073,142.81478896783665,143.79444368183613,143.57457221439108,144.4665704248473,144.17519584763795,144.65931969927624,144.91741382610053,144.01276169903576,144.12180528324097,143.24737628735602,142.77987173153087,143.17492950195447,143.62870132084936,143.29201693972573,143.26306504243985,143.44909130455926,144.41705545550212,144.04987476067618,144.77605500770733,144.09003775101155,143.3697574865073,142.81232716422528,142.1687465212308,141.94572003930807,142.3842702335678,142.95935422647744,142.0168487019837,141.4082010583952,142.1836492982693,141.5603361572139,141.15858637494966,141.56437411624938,142.51537511730567,142.79767617257312,142.2342039910145,141.9868374564685,142.77010833099484,142.5417314847,142.22322071017697,141.2713575498201,140.87110992195085,140.2851925441064,140.6188687859103,140.76653155079111,141.11694919737056,140.85776984831318,141.47370672412217,140.56449725059792,141.26495193038136,141.5762918475084,141.2211870183237,141.26095284102485,140.62413253914565,139.96081213187426,140.8189386012964,141.0678392900154,141.68146149301901,141.77156000491232,142.45159705588594,142.32456694124267,141.9134354684502,142.46105765737593,143.37801983440295,144.18788558337837,143.7353143938817,144.4399053757079,145.06359638134018,146.03471428947523,146.53056494751945,146.92835220927373,146.84487656597048,146.10458680428565,145.3615561700426,145.99079896509647,146.18789019761607,145.44794866023585,144.76734853815287,143.76773096481338,143.80679605389014,144.25172114325687,144.13747997721657,144.83761615352705,144.26540665095672,143.8883595247753,144.67290554568172,144.5908550065942,145.4924111207947,144.80238437233493,144.40600821236148,144.66713633621112,143.87854824680835,143.81042990321293,143.84763067681342,143.4139231047593,142.72756604570895,143.04731012973934,143.36454861005768,143.49842198845,144.39262540452182,144.266581883654,145.11889131367207,144.8735073846765,144.3962534321472,143.70440344512463,143.5377642167732,144.2844134955667,145.25534325372428,145.39166813902557,146.33643458690494,145.95884601864964,145.19674291741103,144.74033515388146,145.0662563550286,144.83836672222242,144.6713767242618,144.87991983257234,144.8269878923893,145.5178057118319,146.23285970604047,147.22519198386,147.61994608025998,147.35377210425213,147.32396979490295,146.89330963557586,147.7350833970122,148.0598925082013,147.35828991932794,147.9564400925301,148.0524945873767,148.7585965488106,148.71327158343047,149.64279559766874,149.0518010049127,149.30859011411667,149.93351004179567,149.00784647790715,149.77196023939177,150.14573864312842,150.00120410555974,150.33773190528154,150.84695435827598,150.18967523332685,150.69691244419664,151.23945428570732,150.68570131156594,149.99740197416395,149.48710025148466,150.0384541763924,149.3273170394823,149.25962848449126,148.6003505452536,149.20489056687802,149.15658684400842,149.86048300983384,150.5250460836105,149.5992264309898,149.10226330067962,149.61741913622245,149.01041057752445,148.72938636224717,148.46795073803514,148.62252636114135,148.0306349778548,148.1625593882054,147.33783817803487,146.65763782942668,145.85361658828333,146.34466045210138,145.6061964505352,146.02485104789957,145.74265538714826,146.37431629840285,145.88124431297183,145.16544068744406,144.41785769164562,144.14305128902197,143.58602639567107,143.59839346678928,144.3812636360526,145.28103716205806,144.55113411182538,144.93062298139557,143.95616570301354,144.32165437703952,144.2613253928721,144.21237890142947,143.66490186285228,144.27615251066163,144.08929782547057,144.1482050907798,143.1860554823652,143.8804330052808,142.96248511597514,143.5687788221985,143.65978259732947,144.1960854968056,144.6513795852661,144.82507373951375,144.40117772854865,145.33007081691176,145.04064134368673,145.83641093643382,146.55234589707106,146.31223876401782,147.28329599648714,147.4895525011234,147.79906001780182,148.26577024534345,148.8314067227766,148.40087702637538,148.3106921077706,147.38806758867577,146.70021646330133,145.93247863883153,145.96757850749418,145.73273541545495,145.1082215057686,145.4884366746992,145.55777566181496,146.5145373023115,146.13757148664445,146.31733912974596,145.96879878174514,145.586083966773,146.17109320079908,146.44837423507124,146.11759785516188,145.71291584568098,145.06081138411537,145.99234389467165,146.01936869090423,146.0452235750854,145.197511236649,144.24096482712775,143.35381249710917,142.6036922992207,143.52510911691934,144.30359275778756,144.81145186256617,145.10012116236612,144.3290039994754,143.653638062533,144.01389578823,144.40007023094222,144.02917749527842,143.62032373761758,144.22763204574585,144.23503112560138,143.51706269802526,142.8577599041164,142.7581244544126,141.87001399649307,141.02622838970274,141.30261741112918,142.28071389207616,141.72137542488053,141.1319018942304,140.45712154731154,140.66632906487212,139.94695644685999,140.0561628555879,139.05682842619717,139.29318657470867,138.92190978303552,138.134485675022,138.5868016332388,139.11733147967607,138.46110001718625,139.04262714926153,138.98489326192066,138.2144412896596,138.8930169311352,139.45697388565168,140.14195871166885,140.43029873399064,141.3814743780531,141.88844004739076,142.64155248738825,142.8190664285794,143.73410807736218,144.0003044498153,143.15181036153808,144.14063019212335,144.7868014634587,145.4098367197439,144.57193833310157,145.4743401207961,145.13077201787382,145.54011301789433,145.04379606805742,145.43561562523246,145.1603894024156,145.16624366445467,145.71943447599187,146.4850496207364,146.7199346316047,146.77202964015305,147.1047612116672,147.7625757777132,148.0602657594718,148.8903679777868,148.69065590575337,148.3135619480163,147.92146690981463,148.10118850320578,147.67538068350405,147.97021765820682,148.95734178461134,148.89846285060048,149.00518938479945,149.9496223758906,150.64363020751625,150.85711196344346,151.39980949740857,150.51798840938136,150.85260812425986,150.33183309808373,149.9971645195037,150.36457190476358,150.98638445604593,150.23037395160645,151.19636096339673,150.22202097298577,150.92302556196228,149.95504376478493,149.69778100494295,149.13612823095173,149.41626467742026,150.29972663428634,149.53205479122698,148.6089635770768,148.89202194521204,149.60175435151905,148.9573028376326,148.56119748810306,148.10467307688668,149.00490571092814,148.7741302791983,149.656532401219,150.11101750144735,150.12747494131327,151.01368470676243,150.96676627220586,151.33703279867768,151.55616205232218,152.51203821739182,152.15715905744582,151.6881018844433,151.0393365160562,151.46255785319954,152.27782283443958,153.0776182943955,153.61528984224424,152.7963784718886,153.54643587954342,153.13576256064698,152.18536510225385,153.16660209279507,153.39021819271147,153.2551693371497,152.41741471970454,152.525950322859,152.36307374201715,151.408573015593,150.4131662887521,149.94058799091727,149.2776395068504,149.24847864173353,148.7703807875514,149.48579817311838,149.2122159539722,149.32547384686768,149.09216928156093,148.35685076005757,147.7491673398763,147.9666617223993,148.70544249145314,149.59500367799774,149.86010890686885,150.80250185122713,150.04941526800394,149.29760196153075,150.04056514101103,149.8401043447666,149.63480071537197,149.20219071302563,148.6252169283107,149.18411576049402,148.6877316115424,149.61843190481886,149.83835500432178,150.18810222949833,149.83977484842762,148.96920491522178,149.4700174499303,148.8923114882782,149.8248274885118,148.87607944151387,149.25533926067874,149.99752978375182,150.74923378089443,149.78684582794085,149.02449991554022,148.15230736369267,148.85754807014018,148.30829306319356,147.64080283371732,147.16490065027028,146.66610784782097,146.7004040866159,146.0893227700144,146.09709958545864,146.18640605313703,146.8056505843997,147.7007859814912,147.7877780701965,147.1762080276385,146.41433392930776,146.55386893777177,147.38147843908519,147.1520318831317,146.57189542567357,146.66481228079647,146.4646224938333,146.6953446622938,146.9275189093314,147.36262693302706,146.85878995759413,146.77112592477351,147.04207861609757,147.48648114083335,148.38346961699426,147.76014755666256,147.0062881410122,146.92638037074357,146.43573274929076,147.18453422002494,146.2183594694361,145.41035641217604,146.41035019606352,146.08537596883252,145.98227415792644,145.11868837149814,144.86030384059995,144.991453433875,145.4448533821851,146.17353856517002,145.87783174635842,144.8947732183151,144.80474158655852,145.15212621772662,144.24758735997602,145.11619995860383,144.56496712379158,145.2927428088151,144.61501512676477,145.4477495169267,145.3188052624464,145.3694960810244,146.35939086368307,147.10177379194647,146.54118784191087,146.29338593874127,146.4896320416592,147.2885753591545,147.43599120760337,146.63489645440131,147.2195166470483,146.74576560687274,146.6199108674191,146.10641932394356,145.35633770842105,144.9314645389095,145.88263485301286,146.35318298265338,145.48851952608675,145.54636612161994,145.24342306610197,144.25172205409035,144.4394891820848,144.72734837932512,144.36966870445758,144.10699516395107,144.20029887510464,143.92638312280178,143.80088877584785,144.4050222192891,144.1827003667131,144.05849051382393,143.5571464980021,144.3370063630864,144.61901790229604,145.40757211018354,145.54348295601085,144.54442011890933,145.3455237741582,145.77489537978545,145.35342344641685,144.5195929077454,144.435296039097,144.7987527656369,143.90556775126606,143.13727278122678,143.7317933710292,144.303597797174,143.87594873458147,144.0740182735026,143.72455677343532,143.57654804503545,142.83872342994437,142.1654406003654,142.97054393403232,142.01575446827337,142.26279066549614,142.6669911565259,142.80109752481803,142.4656347259879,143.1617357544601,142.45393987325951,141.52184581989422,141.08913767384365,141.1857775915414,140.87792041758075,139.92189663974568,140.47022926760837,141.2009998485446,141.62587489094585,141.58921392727643,141.32081714458764,141.76450465759262,141.3229228667915,140.54985104640946,141.2049261876382,140.3884002910927,139.9470644434914,140.78366778604686,139.83998405747116,140.06444306718186,140.2666095243767,139.83485793415457,140.71558137983084,140.26022082054988,139.37041891226545,138.37955861911178,137.52322267275304,137.66756609966978,136.85384795162827,136.79212297406048,136.6881421878934,136.3034684341401,137.08039979077876,137.94076844863594,138.80288281152025,138.72451648116112,138.62107255402952,138.28677967144176,137.52681125840172,137.6282642511651,138.23212054464966,138.48522647470236,137.9738897276111,138.62311991583556,138.5922000594437,139.06231167446822,138.15278159547597,137.33427813695744,136.7558910152875,137.51054829917848,137.95723765622824,138.2123741679825,137.67893083766103,137.90601800195873,137.68909143842757,137.90191638004035,137.69454140774906,137.28994610114023,136.51919923862442,135.7373250098899,135.8647580416873,136.77499498287216,135.91906726220623,136.44857287034392,137.13419369002804,137.2034841980785,137.1134226070717,137.82672388060018,137.76944077946246,137.71854146942496,137.43653417890891,137.74016681173816,137.83574334392324,137.90649886848405,137.8753300625831,137.09256578655913,137.26444727554917,138.0918324845843,138.87024393025786,138.5242128111422,138.83153097564355,139.5231629437767,139.9913608133793,139.38796497741714,138.60655444674194,138.7701041875407,138.48022126359865,138.83015659078956,139.2276297379285,138.40630887029693,138.88779303245246,139.0238573900424,139.0222316761501,139.53568396158516,138.70201296638697,139.6804662840441,138.6960361939855,138.87514938460663,138.06866297032684,138.91738300211728,138.66483133053407,139.25671962928027,138.67065720120445,138.57792906230316,138.2545942622237,138.8134429557249,138.07193916803226,137.27094770548865,138.05712044797838,137.4083088701591,137.75796238984913,137.0314921028912,136.93087282590568,137.4792748033069,136.74607066484168,135.94539064867422,136.88130461145192,136.60305626597255,136.85818628966808,137.10373894451186,137.05316143808886,137.21685268450528,137.96976383263245,137.05995262553915,136.46204605698586,136.6375069078058,136.06683348398656,136.1972830053419,136.67382646771148,136.065627689939,135.97908738162369,135.36326050106436,134.4501995309256,134.98841437790543,135.06547433370724,134.5745759215206,134.80264846840873,135.66842608898878,135.14634083164856,135.68248007958755,136.40384610556066,135.53511276096106,135.32018514117226,135.9386466126889,135.0873141279444,134.53476218972355,135.1391359088011,135.99872182356194,136.83360354229808,137.23276308644563,138.1741463802755,137.51895009167492,138.17608597083017,138.96657362068072,139.40236885426566,139.59667319618165,140.35807201871648,140.40968283219263,140.96376721793786,141.35186701780185,141.6947197453119,142.03666155040264,142.5429565217346,143.1876714443788,144.1236594207585,144.8620908050798,143.93457874376327,144.3127776631154,143.4516427759081,143.29496873356402,143.19607833819464,142.96478257281706,143.62618616316468,143.32812428101897,143.76126258680597,143.61225854977965,143.31898128520697,143.72463260311633,144.56033943640068,145.13578259386122,144.4863793104887,144.11526967817917,143.14183326810598,143.81581397959962,144.55884487414733,144.73278746102005,144.01178059307858,143.8276108126156,143.69165342953056,143.2809922466986,143.56660360097885,143.96951894182712,143.35887955827639,143.66240805061534,143.08927320921794,142.1995386853814,142.9008080540225,142.9910775879398,143.60031865118071,142.9589475444518,142.31265663867816,142.3833853667602,141.4925460726954,141.43988057551906,141.43893559649587,141.40345354005694,141.2798792477697,141.6478775544092,140.90795655269176,141.5804499797523,141.2866813694127,141.67763617029414,140.75135468365625,140.10092243459076,140.61411732668057,140.48073501279578,140.39281206205487,140.0994652332738,140.02616813126951,140.37230308819562,139.96278976788744,140.32516218582168,140.20868643419817,139.65716062719002,139.79559256928042,139.10217746254057,138.6356571931392,139.61156984884292,139.85449358820915,138.99658590229228,138.0634336574003,138.38782539963722,138.16225083218887,137.23536304198205,138.15688889147714,138.57911980571225,138.11855348479003,138.67230057204142,138.47048200899735,137.53747191419825,137.24983684765175,138.01433394150808,137.8004762493074,136.96700902562588,136.61128689954057,136.18859325535595,136.64628707338125,136.41619991557673,135.72270530322567,136.27895537531003,137.13434979645535,136.6463695950806,136.91168458526954,136.24343246314675,136.21556989755481,136.8491831831634,137.582349750679,137.1144502023235,137.40640240255743,137.78079709550366,136.8001483543776,137.73543475521728,136.77699632802978,136.98172491788864,137.55505788791925,137.38421096885577,136.84768358478323,136.06765384040773,136.73274701461196,135.8523085769266,135.67243896471336,135.2395975086838,135.4225869695656,136.24411914451048,135.91350547317415,136.63316729897633,137.31524394778535,136.8610693323426,137.4546220432967,137.89378040004522,137.68601223034784,136.84132209978998,137.76233490696177,138.55091628991067,138.5855439673178,139.58178984886035,140.1513486490585,139.62199518317357,138.81280439533293,138.20187270035967,137.8770448891446,138.3447888661176,138.07475619157776,137.9028949253261,137.58539973013103,138.1966470805928,139.1092872256413,138.7733045029454,137.81531975232065,137.01310179941356,136.52239674469456,136.62398886494339,135.95079147070646,136.78328911820427,136.68192388070747,135.86883828649297,135.50105045549572,134.9960795477964,135.5422920989804,135.40408991649747,135.656507933978,136.40548749174923,135.47695678798482,135.75624007545412,135.93967502051964,136.51514337118715,137.31423671450466,137.52033519977704,137.10342294117436,137.73023837246,136.83534117089584,137.80006780382246,138.74739295104519,137.96037549851462,138.32137706456706,138.74617306469008,138.66045830678195,138.16913349274546,138.9550785543397,139.6547741019167,140.37178544560447,140.88991989474744,141.11258898722008,141.070424427744,141.76013147458434,142.01291701057926,142.84061483712867,142.69152070116252,141.96608366118744,141.52641975786537,142.40091482969,142.45204626070336,143.14219133742154,143.20712463650852,142.63463893113658,143.12430297816172,142.99550815671682,142.2965723243542,141.95559097034857,141.27509065298364,140.7409782866016,140.73191477404907,141.03324048081413,140.89406259078532,141.2981801633723,140.87111320951954,140.80776938749477,141.09653606638312,141.4158810772933,141.18413493782282,141.59024207293987,142.17345512658358,142.73364813858643,142.11197277111933,141.63006381876767,142.22283624392003,142.22869323706254,141.97994927270338,141.53733768407255,142.4842127347365,141.52125336695462,141.9337536022067,140.93907026015222,140.71022231318057,139.85878366371617,140.25829176418483,139.86453843861818,140.81845683557913,141.60027287900448,141.02918823994696,141.07217373047024,141.4406654764898,142.01158339437097,142.0200967947021,141.06524415453896,140.32718718936667,140.15616289386526,139.83677481021732,140.4915472464636,139.68892084993422,138.99216282786801,139.5778523972258,139.60644632624462,139.0780540476553,138.82950169267133,138.72070179972798,138.79549777600914,138.39387835375965,139.19901648443192,139.47916944418103,138.67542097857222,138.81872010650113,139.1267157131806,138.13149833399802,139.05741594498977,138.24420537939295,138.22936331899837,137.4750425494276,137.33147753356025,136.7298009484075,136.574783496093,135.87488789903,135.0635713832453,135.6009876797907,135.17905119108036,135.68427921226248,134.77380993403494,134.67490126332268,134.11080628912896,134.7821958498098,134.04640728142112,133.32096799556166,134.05152295483276,134.77103244699538,134.57284594653174,133.9765123152174,133.96529022837058,134.2337568681687,134.55313583416864,134.71971726370975,134.1504430207424,134.12232529371977,134.9049163516611,135.69848752673715,136.02828749176115,136.54395485296845,137.07349480316043,137.8487177346833,138.17326285596937,137.67692821193486,138.18012615013868,138.56139604747295,138.13709024060518,138.84389127697796,138.3258281322196,137.3614869234152,137.16236196737736,137.74676762195304,138.52357064839453,138.04904152685776,137.67465659230947,137.90646186377853,136.936300332658,135.9891997729428,136.23190900171176,135.4295424344018,135.5172776831314,136.17710678465664,135.52047855500132,135.86253409273922,135.26505939196795,136.16886405227706,135.54489629296586,134.96047587879002,135.32682660548016,136.11555226473138,135.89893118431792,135.74936073785648,136.1047720015049,135.37016314454377,135.85641595721245,135.54876413708553,136.13089075591415,135.7631397289224,136.1446540467441,136.23883214965463,135.49536494584754,136.23009061673656,135.98944427864626,135.32693942310289,134.4416522681713,133.99027926521376,133.24980577686802,132.25482752965763,132.72192761301994,132.2998393937014,131.90471160970628,131.5943921743892,132.52277132309973,132.46961586829275,132.41458065249026,131.9516437072307,132.79219566984102,132.51065233256668,132.90807530796155,133.1158002964221,133.48931818408892,134.30478685442358,133.73791865445673,134.42802509944886,134.97508293157443,134.42735202936456,134.236396250315,135.1472491095774,134.54523448692635,134.01999494014308,134.44634567713365,134.93344524875283,135.70581980329007,135.26301289116964,136.01225401367992,135.13272808119655,135.08522619539872,135.5106939356774,136.0623231534846,136.01685003889725,136.5163589026779,136.1968995765783,136.26884610764682,136.15617961948738,135.74329748237506,135.48991259979084,135.4919671858661,136.26626351987943,135.68739107437432,136.21759239630774,136.53689515823498,135.63011219352484,136.52248462941498,136.8262480716221,137.3497304012999,136.6624002349563,137.3137735989876,138.2310426235199,137.62683199672028,137.28707397310063,136.90719980141148,136.97034618305042,136.59301929501817,135.74703373992816,135.58914652466774,135.22831033961847,135.36474380875006,135.23742603510618,135.89233091054484,136.8616313636303,137.6118416590616,136.8258877163753,136.17291123140603,136.02603290136904,135.10525316232815,135.9844233165495,136.56805403437465,136.4432138139382,136.39256558893248,136.34635136416182,135.83229818334803,136.7635304806754,137.68686319096014,138.33743649953976,137.77656073542312,137.95699411258101,138.79530333401635,139.40988065022975,138.661490266677,138.87011017743498,139.73062155768275,139.73442210862413,140.1614379119128,139.73570978967473,140.3036471917294,141.15752040361986,140.28433508006856,139.30642983643338,139.61908612586558,139.1487297778949,139.54760204302147,138.8992423871532,138.2206252613105,138.0567651083693,137.57963764015585,137.72513823164627,136.85663265176117,137.4055999624543,137.4370724549517,136.80837383447215,136.04661982133985,136.16452533751726,135.80418860912323,135.90573285520077,135.9972543362528,135.50239046104252,135.3482376318425,135.77100728731602,135.9333750847727,136.56004233984277,137.20495755784214,136.3494588448666,135.5855940580368,135.69511492876336,136.53668693173677,135.79223730508238,135.11909860093147,135.2345711896196,135.73735736403614,135.57395722251385,134.75398896448314,134.82362383790314,133.8331892103888,133.1857635062188,132.3689687321894,131.51741442549974,132.45799221936613,131.94038910325617,132.49552028765902,132.46040357416496,133.22722958540544,132.3750303806737,132.34839514829218,132.66541832406074,132.60212399810553,133.29502310138196,132.9146212413907,133.1421432979405,132.4891927014105,131.95900767855346,131.57223610347137,132.29900994198397,132.31870149914175,131.5614780159667,132.3981119953096,131.80756443645805,131.60223589325324,132.50342173920944,132.03387997020036,131.87066981382668,132.6467545214109,132.96884904662147,132.95634187245741,132.27977889031172,133.01079420605674,133.5260169915855,133.9004946355708,133.37535718735307,133.00779586378485,133.29848265089095,132.6319056181237,131.83171831863,132.04017708823085,131.6812203801237,131.5035030376166,132.44134756317362,133.04662568680942,132.30047736689448,133.147768413648,133.4635519841686,134.4490332934074,134.3061095494777,133.66554564610124,133.36031731311232,133.88389062555507,134.11936162319034,134.1158669772558,133.89394133724272,134.611194468569,134.89601214695722,135.29037885088474,134.38283615047112,134.66066506877542,134.5905926837586,135.52446921914816,135.711123815272,135.55076056392863,135.26471589878201,134.55634312238544,134.5107189938426,133.6861537285149,133.75380160100758,134.72781106084585,134.87392856832594,135.1005715765059,135.73507531313226,135.22223637253046,134.46836227783933,135.1216706885025,135.72016773512587,134.78955001197755,134.76020052470267,135.18966753128916,134.61134218797088,133.74410414276645,133.41075860336423,134.40732272760943,133.77160487137735,133.55197089072317,133.90834893332794,134.86288590123877,133.9776772754267,133.06289520906284,133.67146583646536,133.04218502435833,133.52160714520141,133.83015211112797,134.77934717107564,134.072526560165,134.1556173195131,134.79536918457597,133.85644934885204,133.14087033784017,133.8920039003715,134.62322555901483,134.97506072930992,135.48259586375207,134.96587845077738,135.58137239469215,135.76210827054456,136.67466608108953,137.29457129351795,137.9558155555278,137.10294109769166,136.70392382517457,137.4975547119975,137.79830552777275,137.38349107047543,137.63679659739137,137.05422189785168,136.73908164352179,137.15535423671827,137.91689029941335,137.51321771927178,137.82090657483786,138.28418951388448,138.5625254982151,138.51930048223585,137.5682821329683,136.8456315989606,136.95066821901128,136.6944755995646,136.6274566934444,136.40552014810964,136.75414292979985,136.35669419262558,136.38759062811732,136.6483072382398,137.08473864383996,137.35264930594712,136.94691094662994,136.34472835669294,137.00732678640634,137.55215402320027,138.21481839520857,137.54049186920747,136.60847731446847,135.9819267122075,135.19884472806007,135.19412301620468,134.73150346428156,134.17040082905442,133.89151199907064,134.11481386376545,133.7358586662449,133.81428779987618,133.20765565149486,132.47619546344504,133.4384898287244,133.88382423482835,133.04648369830102,133.5835888166912,133.32822341751307,134.08191927755252,133.57813211996108,132.65353423543274,131.83480500802398,132.35931526310742,133.1988599463366,133.70593269122764,133.02661294024438,132.75101906666532,131.88314677681774,131.09263734472916,130.9130223793909,130.42755928169936,129.5608119876124,130.50376222562045,130.73096664436162,130.18132182955742,130.47167707514018,130.41177807562053,131.31580919446424,130.64090527780354,130.90299024386331,130.04151407117024,129.54211981082335,129.5204478087835,129.06086930120364,129.33077278686687,128.9554400681518,129.6753370827064,129.50875584594905,129.39680613251403,128.94695507967845,129.9316763873212,130.15080339554697,130.96183823700994,130.82864592876285,131.44919681595638,130.77924282988533,130.34500007377937,130.63430743617937,130.90357576543465,131.87176358373836,132.22111091436818,131.30576185975224,130.35882429080084,129.80166987748817,130.08632120955735,129.64911126997322,129.16394277382642,129.92741445358843,129.1684130639769,128.77707477286458,129.57572646671906,129.20527991559356,128.4676870512776,128.85153704276308,127.90918960096315,128.63589826226234,128.75834156759083,128.4389012423344,127.88936035800725,127.84044199809432,128.6136887408793,129.3688354487531,129.31751742959023,128.90618321252987,128.69497556146234,128.22039760416374,127.65778500493616,126.90250071510673,126.72069798549637,127.2447686959058,127.70371257280931,127.56899510789663,127.82451150286943,127.38071847474203,126.72048696270213,127.40023938938975,127.9004340087995,128.18379259016365,127.99711252329871,127.34051841218024,127.76990963378921,127.89137317426503,128.0974486847408,128.70121324947104,127.77345918258652,128.33285766327754,128.20642136689276,128.56213319394737,128.54636366898194,129.16634958051145,130.14601480122656,129.9957861788571,130.1572693507187,130.47916398290545,129.57825620332733,130.35667614033446,129.92526747565717,130.66562941065058,129.80145021667704,129.88364461855963,129.4746566354297,130.1974216955714,131.01142502529547,130.6627421132289,131.22532876161858,130.97561938641593,131.7581380084157,131.54539815196767,131.04261999484152,131.67360180895776,132.57657066360116,131.67533768946305,131.66504836641252,132.1990445861593,131.52058201283216,131.46937148924917,130.95456644287333,131.44552500452846,130.45632615499198,131.12313723983243,130.90438752947375,131.7071831440553,132.256814439781,132.21677258610725,132.85199765255675,132.17561984807253,131.91967703262344,132.56975713279098,131.60588974878192,132.09725414961576,132.66169734066352,132.92523713130504,133.64900105213746,134.17435563914478,134.1439740951173,133.19238442648202,132.78696727985516,133.40889157541096,134.11131304269657,133.23313839361072,134.0412325509824,134.83932480029762,134.08128274511546,134.3606718191877,134.36526186671108,135.29674816317856,135.2539652744308,135.23982818285003,134.95844376878813,135.01899795792997,134.31383074168116,133.96534223016351,133.83892764803022,134.19333332404494,133.3275591256097,133.77365199383348,133.60386116802692,132.64602481015027,131.7026195707731,131.46660143928602,130.55553304264322,130.079249443952,129.44826237019151,130.40044350456446,131.2119189496152,131.0476662442088,130.17193878395483,130.9720039232634,130.6486960062757,130.32943735225126,130.00541860517114,129.11746298894286,129.66859214333817,130.13671044725925,130.13218378461897,131.05623293109238,130.58581247879192,131.10974670387805,130.40503378305584,130.75807239301503,131.41366173001006,131.80662527307868,132.64597579604015,132.2574258260429,132.3343257624656,133.27702483721077,133.93747619260103,133.9351912010461,133.4855264709331,133.27055061142892,133.40963002154604,134.4042077329941,135.2241155221127,135.27650715457276,134.4025000431575,134.63111079391092,134.32990293810144,134.81185598485172,135.7126468163915,136.14658841537312,136.45351323811337,135.89464090531692,136.46100172540173,136.47947319876403,136.87375319143757,137.63463651714846,138.58969653211534,137.70540037145838,136.9363890788518,137.16083343839273,136.88482477003708,136.6075372332707,136.57125640008599,135.87145275669172,136.07893478078768,135.85649878997356,136.2837636838667,136.76959987962618,136.86514921253547,136.49085561838,136.08549805777147,135.7755070910789,135.30663231061772,134.54766001133248,134.06216462375596,133.68617275776342,133.64264350244775,132.8260587695986,132.98651995696127,132.45295408181846,132.7883042115718,132.87999126594514,132.43584200926125,132.58959681773558,133.55016563739628,134.225764492061,134.7980307363905,135.3491759118624,135.25405911868438,134.84560881461948,133.95836324524134,134.9189385920763,134.5408089114353,134.18756245542318,133.69773932592943,133.2306262073107,133.0978244622238,132.8816292108968,133.18181740306318,132.93890665611252,133.7555741602555,133.73475262755528,134.2102207345888,134.8940999531187,134.7634074119851,135.39465825166553,134.5776027883403,134.59620220819488,134.00897909980267,134.58755870955065,134.2747330716811,133.90175627497956,133.21574970474467,133.3190374681726,132.56683822115883,132.53523108642548,133.5002560382709,134.35374309355393,133.98089876631275,133.47823855653405,133.1324147968553,133.55247691646218,134.08214676380157,134.44905494851992,135.21257718326524,134.46669970825315,134.4959902628325,133.568759937305,133.1347660808824,132.8141822591424,132.4915098939091,132.77676466293633,131.87885460350662,131.9081926746294,131.01283185277134,130.14635495375842,130.24247556831688,130.7238139421679,130.29456679848954,130.09183284640312,130.05337355611846,130.74490837892517,130.88040342368186,131.31098677497357,132.22929401602596,133.00446241768077,132.068069123663,132.14126019738615,131.33922023838386,131.61156896594912,131.10705433180556,130.27503450307995,129.4555562697351,128.5673700175248,129.31477680895478,129.5191304446198,129.15375730535015,129.30271619884297,129.79207366378978,129.1461078589782,129.98647770285606,129.92539433343336,129.44659159332514,128.84764179587364,129.13917063176632,128.8777807885781,129.16289264382794,129.32723345374689,129.35858752764761,129.39917189860716,129.70829719305038,128.8208001004532,129.05323184514418,129.53006669925526,128.98799043009058,129.5097918882966,130.3853178070858,130.08125648647547,129.3003868488595,129.1651251972653,128.28467299137264,128.5947710662149,129.3500705882907,129.94210967421532,129.32875864952803,129.23666480230168,128.56470171548426,128.12832653708756,128.9926300039515,129.3198931310326,129.41025676066056,128.72146477084607,128.44512487808242,129.0533993174322,128.79062891937792,129.08494603075087,128.53278057137504,128.23983038961887,127.62181781278923,127.64727019378915,128.1571029680781,127.63512232759967,128.45069289859384,128.1022693105042,128.0231047240086,128.47282214276493,127.53206771891564,128.42252173740417,128.5588592486456,128.5347028351389,127.85489341663197,128.7665521474555,128.13014682289213,127.26940892310813,127.65387116884813,128.10677290381864,127.4031835468486,126.43168244883418,126.94814791716635,126.41363049624488,125.88327613426372,125.55139245186001,124.70233757421374,124.36001444654539,125.26172131951898,125.02598387142643,125.29379220446572,125.67920096265152,125.02493690699339,125.1820342070423,124.77264351444319,124.03400676138699,124.82387410849333,124.13921048305929,125.03454204369336,125.86571064963937,125.78201351175085,126.54207928851247,126.25419817259535,125.83147625159472,126.42118524387479,126.92266026698053,126.40101941209286,125.49615100538358,125.31114911101758,126.20058921165764,126.36996038164943,125.52233963366598,125.02592959580943,125.86125949490815,125.70111888553947,125.10692213103175,125.80872296215966,126.003697081469,126.58366475393996,125.63178660394624,124.95143853547052,124.5341300223954,124.24390811473131,123.97074318956584,124.3228899021633,124.7609502361156,125.42242356948555,125.03664387343451,125.80700629204512,126.42076662369072,126.20995208341628,125.89486964512616,125.18437923444435,125.91490015108138,125.3425954990089,126.3278294140473,126.09570275014266,125.52304596407339,125.65576527127996,125.40872418414801,125.64734845375642,125.99332795338705,126.1797054046765,126.73654484702274,126.73935935692862,127.08623613463715,127.03335345815867,127.02353193098679,126.087670953013,126.30025480175391,127.10543109755963,126.489796359092,125.81533109210432,126.74353685369715,126.01417723856866,125.60962718632072,125.73800172982737,124.95114386780187,125.86277520889416,125.72506349207833,126.40959626017138,126.40868380619213,127.17702689534053,128.17162308562547,127.17756453156471,127.00377629837021,127.79454780044034,127.61203536391258,126.79581377701834,126.2174348612316,126.55421994626522,125.68239389453083,125.66823019925505,125.17375350371003,124.34654412884265,124.477077298332,124.25988086918369,125.10014335205778,124.50114680593833,125.08839246956632,124.87721425713971,124.77920902427286,124.53878600662574,124.95911889662966,124.25790862133726,124.93637462845072,125.16896579042077,125.55261594709009,126.46903419913724,127.28726768447086,128.0141353304498,128.07028032746166,128.65582767035812,128.9803451304324,128.54554820572957,128.54470028635114,127.87722884118557,126.92890028702095,127.54420708306134,127.04547895956784,127.8677107123658,128.43651397526264,128.64199103508145,128.7541980203241,129.22244471358135,129.0408317372203,129.40958513785154,129.46112227905542,129.5086782462895,129.24165974697098,130.0234444127418,130.79206324229017,129.82184352120385,129.7320503196679,128.9137061755173,128.16713490663096,129.1245471215807,129.08166184742004,128.35804338986054,129.06854216894135,129.79644971806556,129.14311322011054,129.99711372656748,130.96167438477278,130.75175178283826,131.07544500986114,130.59233962604776,129.59363121073693,130.34822558844462,130.70063303224742,131.0555546139367,131.20763399731368,131.09688067855313,131.65958214644343,130.99504945147783,130.03329365560785,130.40480635128915,129.7554114810191,129.30911353882402,128.63575838226825,129.45711257541552,128.73185723414645,129.66818635584787,129.767956440337,129.51654178695753,130.5151817444712,129.59061745274812,129.5660859560594,128.94063561223447,129.53766019223258,129.20365325547755,128.7854268392548,129.0524841696024,128.95553814526647,129.43531402479857,130.27482458902523,129.346469336655,128.77408555569127,128.40617842506617,127.89657427417114,128.48191032977775,128.531846081838,127.56027241796255,127.99486094433814,128.5222759884782,129.07073732791469,128.1141490372829,127.44582220679149,126.72682096483186,126.3819613517262,126.81314218137413,126.16290087485686,126.09716170746833,125.66759036015719,124.76695657335222,124.83637758577242,125.4961695978418,125.97219079453498,125.84388289414346,126.2524086702615,125.86931900167838,125.90004526311532,126.78143923683092,127.6486931196414,128.27654552692547,128.8969740504399,129.79665077244863,129.7978617027402,129.45318778324872,128.63784821005538,129.51513589778915,128.7809015372768,129.2789231617935,128.41204993333668,127.85254543833435,127.48831310961396,128.4268811601214,128.43949475185946,128.81480162544176,128.18669580016285,127.49570584716275,127.82987091131508,128.22076733317226,128.21387573052198,128.51010971330106,128.1851616972126,127.3489725976251,126.74311564443633,126.8736656033434,126.04406785219908,126.35235530510545,127.32477578986436,128.1020162096247,128.36547706229612,129.18234550766647,129.804659914691,129.40559251839295,128.70847106771544,128.9933604062535,128.6249163262546,128.77639303542674,128.10302208084613,128.18042448814958,128.5187274054624,127.90157512156293,128.03560296120122,128.8683769176714,129.1368703977205,129.92888720938936,129.46314186835662,129.17237541731447,128.27494108863175,127.37982234824449,127.99674082035199,128.00864760717377,128.25062862038612,127.7146201916039,126.99341038009152,126.60334865469486,126.03129611397162,125.99670167686418,126.41533376183361,127.37068346096203,127.25312458910048,126.41057553933933,126.39268607553095,126.94773091562092,127.80486164148897,128.69641463970765,128.45451981993392,129.25887047173455,128.31914491485804,127.78989787306637,127.28692549373955,127.18644063360989,127.72460049763322,128.53179711243138,127.57478104997426,126.68281167186797,126.40709672635421,126.95216723484918,126.05775459203869,125.33502543717623,125.87262856308371,124.93914681114256,125.45716864708811,125.30253163445741,124.36524082627147,124.74210750544444,124.13492550235242,124.33084049308673,124.22058377275243,124.49440344329923,123.64571008225903,123.63553028041497,123.44628242217004,123.71569525729865,122.88361877715215,122.76470265397802,122.01818213099614,121.8826062772423,121.88752390956506,121.1381143364124,120.32145581627265,120.37551441881806,120.25910059642047,119.49324589548633,119.33671147748828,119.3480435195379,119.96225859876722,119.36772855278105,120.020262834616,119.84311205055565,119.02085918700323,119.60392021201551,120.194192471914,119.9544377811253,120.81378285307437,120.90701059717685,120.67958857584745,120.99048925796524,121.59141818573698,120.71093978499994,121.48320715781301,121.94263425050303,122.48628565855324,121.5716058476828,122.53747560735792,121.6432738895528,120.68608558643609,120.27423332678154,120.9958684402518,121.28572057047859,122.07793277408928,121.97609599446878,122.14432395575568,123.06417354382575,122.17581000598148,121.46188065549359,121.79060978861526,122.42552875867113,123.04547479283065,122.70587202114984,123.59548546839505,124.20349226333201,125.0624485174194,125.87585666310042,125.22908743005246,125.66667999746278,124.87140339519829,124.61868698475882,124.8891285113059,124.31780700618401,124.70218763966113,125.00108145922422,124.48304695729166,124.49631992168725,125.12240603053942,125.41697116428986,125.12428649049252,125.38343945844099,125.4064669511281,124.51491066720337,123.93879710929468,123.8251497768797,123.83252735575661,123.96221202192828,124.01258007669821,124.42826404282823,125.10707814013585,124.4724938585423,123.64621191518381,124.1105906991288,123.42180677363649,122.44327563745901,122.79462906112894,123.28255535941571,123.87800602568313,122.9877042165026,123.80795751186088,122.8739631222561,123.33097363775596,124.32800654461607,124.15157629363239,123.88355106581002,124.17580326646566,124.12232984835282,123.70789146143943,124.31881171511486,124.14860139973462,123.21933182980865,123.18493458069861,123.92075758986175,124.31653987430036,124.61780880531296,124.35157924843952,124.79891994362697,124.32284664316103,124.71233261795714,124.93652650294825,125.44590463908389,124.77047536661848,125.42382166581228,124.58929266454652,123.88238293025643,123.2565229930915,122.82623844360933,121.97435471741483,121.88833226962015,121.05302451504394,120.75327852275223,120.80342376045883,121.48880754830316,120.80355985881761,121.24882084177807,121.05566729046404,120.14862335240468,120.7636857717298,120.93119720323011,121.29822818469256,121.63669970119372,121.59743365412578,121.9977644267492,122.31122760754079,122.77437187870964,123.34556849999353,123.2566445977427,122.40697549656034,122.82450140453875,123.58074291143566,124.21719969762489,124.62014473089948,125.26102307485417,125.50794075895101,126.34449413511902,127.14971519168466,127.57602961920202,127.94141552364454,127.99553853925318,127.9437169819139,128.6871478697285,128.29966803453863,127.64437002921477,127.73924660030752,128.71758404327556,127.75340123986825,128.48710514139384,128.55599952070042,128.66738720051944,129.13698920747265,128.69736375752836,128.3172651519999,127.69722259044647,128.3549030558206,128.28735274774954,129.24297671532258,130.19936483865604,130.13501740666106,129.87112952396274,130.63696611858904,131.61806784151122,132.13860545912758,132.1619266103953,132.42634067125618,132.53210039064288,131.88468840625137,131.8014085064642,132.5465598842129,132.74208386521786,132.4145587924868,132.82428665133193,132.56832016212866,133.228634017054,133.7201377088204,132.87651635473594,133.77267674775794,133.36630707094446,133.28899143077433,133.04494320973754,132.10498516028747,131.8286683531478,132.5632196846418,131.96238937275484,132.15924066212028,132.49247383140028,133.14778494276106,132.6092436905019,131.62286943383515,130.84783907141536,130.4173859138973,129.80509470356628,129.09985124506056,129.24210515245795,129.46830421406776,128.52633699635044,128.76798686664551,128.90143334446475,129.39496751967818,130.1447473540902,130.98527057329193,130.3028650842607,130.92718102317303,130.15939643234015,129.33013604721054,129.29984066821635,128.62006232701242,127.75382204400375,128.20108233904466,127.33443653071299,127.66789671918377,128.02385376626626,128.45332461223006,129.3929934632033,129.63541880669072,130.35323710832745,129.75914198858663,129.85169613314793,129.60044583817944,130.1165049932897,130.98135215695947,130.52131606824696,130.48369082482532,129.81594897480682,130.59642109880224,130.08101845998317,129.2032585842535,129.79130104603246,129.61673733219504,129.85105313872918,128.94391840929165,129.05152951506898,128.3441844363697,128.60563938412815,128.01976802386343,128.09887104807422,128.80310195451602,127.98705664556473,128.7072793492116,128.44721890287474,129.10611694026738,129.55517071019858,130.08086046157405,129.34494070149958,129.08056559693068,128.17108104377985,127.243152694311,127.6915611247532,127.45091179711744,128.37583757052198,128.09803536953405,128.28165207989514,128.63050736440346,128.346928157378,129.26227780617774,129.44995629461482,129.1619051154703,128.56751237390563,129.3417899128981,128.6216710852459,127.8037392240949,127.2932004192844,126.70190954767168,127.28275654278696,127.31386956572533,126.91142652928829,127.59479407873005,127.92927747638896,127.52092944364995,127.33247765013948,128.1518595716916,127.91366139426827,128.26984177017584,128.26329550193623,128.1694693574682,127.45797426858917,126.71392837446183,126.40799922775477,126.48061255645007,127.02375852363184,127.58228345168754,128.19836188899353,128.04160341247916,127.58204090828076,127.43125958461314,126.98372012237087,127.50506190210581,127.71030628308654,128.60969456937164,128.3963687014766,128.95474129542708,128.9297135132365,129.2102359305136,128.63743143668398,128.29389840364456,129.25443352619186,129.2719149920158,129.26214603241533,129.92311975779012,129.9294655029662,130.25530736753717,130.32112344028428,130.7995442408137,129.9613760318607,129.55567772686481,128.64517319528386,128.27522234339267,127.29304780066013,127.39193369448185,128.0991011322476,128.59647747594863,128.93327242927626,129.44598629092798,128.8440691139549,129.03028702177107,129.46072476916015,129.06043806811795,129.7867361009121,130.22422844311222,130.1058913213201,129.21004947042093,128.71281797951087,129.64056927105412,130.02782331593335,130.969059814699,130.25176989939064,130.50366084557027,129.68170008482412,130.556743983645,129.81293192366138,129.5495635899715,129.20296711614355,129.48130778130144,128.63514715014026,128.82503506774083,128.24879555171356,128.67820968991145,128.51349976845086,128.10199218941852,127.18188407924026,127.5588089893572,127.31948790000752,126.56819702452049,127.0971084269695,126.78928881557658,127.59929799707606,127.14885420026258,127.62175384676084,127.86618453962728,128.60988031933084,128.03799849469215,128.35694041056558,128.87466478720307,128.48831537552178,129.0133877475746,128.47593622514978,127.58124027168378,127.97639179648831,128.85865774052218,128.6461519296281,128.16360509535298,128.97967053065076,129.84042191086337,129.53577269427478,129.83722235355526,130.36537778005004,130.7700764867477,130.06489043869078,129.59480515308678,130.336492435541,131.13897668290883,131.41084983805194,131.5667896377854,131.41282551409677,131.63091019215062,131.64456729684025,130.82193201128393,130.78520083846524,131.017609980423,130.78121669590473,130.00862531038,130.19662100356072,130.939138289541,130.38607875164598,130.11566805001348,129.7403722810559,129.03162017976865,129.5111664896831,128.78590140491724,129.7093837405555,129.39953380730003,129.8065777742304,129.3395473738201,129.19781737588346,129.48190104402602,128.8295158171095,128.55828885966912,128.61939482856542,129.27423737337813,129.30623562680557,129.43874734500423,129.7896310738288,129.97831479506567,129.43027650052682,129.31219632411376,128.40464347880334,127.88408264843747,127.74452165840194,128.3753668158315,127.37734362948686,126.80726567143574,126.0128731969744,125.04159048665315,126.00955712934956,125.92562641762197,125.56080513354391,125.11516332719475,124.96589979715645,124.52061141701415,125.40886934148148,124.80706140911207,125.32512035919353,125.57104991748929,125.88817271171138,125.67731318389997,126.67511994065717,127.07788418978453,127.24457935104147,127.9109375658445,128.57449703803286,129.56294467300177,128.69610245293006,129.51256452314556,129.32317424751818,128.61757791321725,127.66891491413116,127.12267825100571,126.78292941534892,126.53070619655773,126.82164959656075,126.3852918422781,127.08228348661214,127.51744932075962,127.35254518548027,127.4898428292945,126.72529903193936,126.61761655239388,126.07340635219589,125.40197397815064,124.94348776666448,124.96463500894606,125.23138624569401,125.04898591013625,125.38404616061598,124.45540663413703,124.98959999065846,125.26920647220686,124.57329948339611,124.92250271234661,125.36300353007391,125.69012701604515,125.47312542330474,126.44471732806414,126.34956905758008,127.29475988727063,128.136207212694,127.16561125451699,128.0661092917435,127.44919780874625,126.86093048145995,127.59519454278052,128.59388508507982,127.82180835213512,128.03016636846587,128.34883922338486,127.52940220478922,126.65224156435579,127.3094862117432,127.450576195959,127.90750982239842,127.31913083652034,126.95584408286959,127.61493451707065,127.02249093586579,126.80757813761011,127.44903342192993,126.64703970728442,126.47153883939609,126.34247110085562,126.35768173681572,127.18603595625609,127.209431076888,126.49012005142868,125.80639438703656,125.0036356463097,125.57322689471766,125.13904491765425,124.89043638156727,125.31746062682942,125.89137540617958,126.7818036894314,126.04829895822331,125.53351526614279,126.11207248922437,125.29568819887936,124.76814782107249,125.11505664000288,125.60365178482607,125.19999075867236,125.46142447879538,124.89525444200262,124.54211203334853,125.51198384677991,124.82622754853219,123.95316088525578,124.6953778238967,123.70535133499652,123.18902342068031,123.04953349335119,123.56731318030506,124.28918634541333,123.38934477930889,123.04309174139053,122.66079354798421,123.031280009076,123.48637845832855,123.67660585185513,124.13445011992007,124.12343610590324,125.0453925030306,125.42616652231663,125.50030362838879,126.16086331475526,126.1897927056998,126.70880512008443,126.97110802354291,126.63575065787882,127.47893584147096,128.00728428922594,128.0250760554336,128.7799449386075,128.30883394088596,128.35524092335254,127.87759388238192,127.24626796739176,126.74927701614797,126.86647985363379,126.70210128137842,127.3768583885394,126.49508495442569,125.68638119054958,125.4360007494688,126.23846945632249,125.91355904564261,125.26774068502709,124.71675467584282,124.48660849500448,124.00258073722944,123.18726768530905,123.32036311458796,123.78483127662912,123.71073605213314,122.77957095345482,123.55560111440718,123.66310812858865,124.13352269353345,123.39364314684644,124.15533539000899,123.50008046394214,124.2529743667692,124.1031447746791,124.3329960857518,123.4060558998026,124.29738101782277,124.36149058770388,124.61996234906837,124.14451535698026,124.64337063860148,125.30761636421084,124.67269979650155,125.13901822362095,126.13847289932892,126.73562720930204,126.54371172515675,127.13594437763095,126.90368182677776,126.74877556692809,127.17961694626138,127.35542726237327,127.3725693509914,126.77455270616338,127.24472085013986,127.8895846856758,128.28588271792978,127.43554244376719,127.15470415866002,126.49591690208763,126.04835946764797,125.47100084740669,124.84112577419728,124.84980685729533,125.48701621079817,125.5704105948098,126.02690830687061,126.74493729602545,125.8391010640189,126.13195175118744,126.41088991425931,126.5424273610115,127.0440616379492,127.70759114203975,127.80214882595465,127.40322127565742,126.95709506236017,126.47414866182953,125.72387278592214,125.91182197630405,126.2506015477702,126.29593896353617,126.89227424422279,125.98941186023876,126.88595756422728,126.70453217392787,127.30485224258155,126.56826504180208,127.5445568417199,128.52398575562984,129.42234170483425,130.346514117904,130.87373136542737,130.1289307884872,130.18263333570212,129.48408064991236,129.21636995580047,128.4305589045398,128.8383040460758,129.66016032081097,129.4313511918299,129.76425591437146,130.43045811355114,131.00857072044164,130.04037392605096,130.65757840592414,130.46174364537,131.20096348552033,130.49396940646693,129.8795774350874,130.2616812218912,129.9807473588735,129.38523991312832,128.5194466235116,129.00222489144653,129.86837119283155,129.53403371106833,129.50540630565956,129.24885325925425,129.04722911212593,128.31471870001405,128.02926462702453,127.67120394622907,128.04385407548398,128.7239393889904,129.65087930951267,129.65947138890624,130.32397975446656,130.59101673727855,131.30074171163142,131.34007669705898,131.78937513846904,132.26202581916004,131.4837578497827,131.3836419545114,132.01909780921414,132.5039173285477,133.46184148965403,132.93954926077276,133.253121889662,133.78181548975408,133.86082754656672,134.83642121823505,134.74904861254618,133.7708195503801,133.9964348282665,133.88264496112242,133.15151931298897,133.86681907251477,133.6393646337092,132.8698329636827,132.48085747938603,133.13606135873124,133.37469742493704,132.8699174434878,133.82503359299153,134.37260256381705,135.34637853503227,135.18811077903956,134.93702072976157,134.7956137000583,135.405386518687,134.615619991906,134.3522620089352,133.79570565884933,133.4507958078757,132.97910629119724,133.1745578078553,132.56973535381258,133.53491450380534,133.34127720352262,134.28422119934112,134.66582686873153,135.53057334711775,136.52356022130698,137.23111909534782,137.97081491770223,137.69790377561003,137.56162183685228,137.84422258567065,137.42860985314474,138.3326084841974,138.04956216318533,138.66771287703887,139.00777829717845,139.10302491439506,139.82169771939516,139.93919533165172,140.91780505143106,141.02868258580565,141.69443486025557,141.4032629383728,141.16396879963577,142.1475055529736,141.53867624793202,142.37658248236403,142.60537547431886,142.49884307058528,142.92982573714107,142.56674942746758,142.1515134391375,142.64504070812836,142.52205411717296,141.74763288581744,141.351707611233,140.78995063574985,141.15909664239734,140.49384850589558,139.80392147041857,139.2793503459543,139.3355445084162,140.27052905550227,140.81472746189684,141.42210794892162,140.5259050168097,140.45160357980058,139.98580858157948,140.63824999099597,140.23679182026535,140.34380903607234,140.6735419803299,140.53218814451247,139.7529285061173,139.7078507244587,139.83632650692016,138.90535919880494,138.91879433346912,139.5473630875349,139.889218125958,139.79416739661247,139.13420755928382,138.99181075394154,139.86801051534712,139.66970558930188,139.44966963957995,138.9579329439439,138.59079946484417,137.71195693453774,137.16126972995698,137.18588823173195,137.68807700974867,138.30188200017437,137.99054945027456,138.11720862379298,139.01676073716953,138.10926361987367,139.068934076,138.61153430724517,139.26354557601735,139.58843946130946,138.81677124742419,139.49899455532432,140.3182224552147,140.58043497381732,139.84185271291062,140.0793962366879,139.53615859011188,139.85630451329052,140.847430288326,140.46494668303058,140.67977885296568,139.68238120665774,139.40334006259218,140.26382922707126,139.66405458701774,139.7299985503778,138.76693714410067,138.284517461434,138.3796926229261,138.5343250730075,139.03637300571427,139.55690590571612,139.46607326017693,139.46347322314978,138.8712871284224,138.09107923414558,138.55385493440554,138.4927739817649,139.1412698389031,138.34218808775768,137.59218715829775,138.30417575733736,138.4171267626807,137.9096875274554,137.0015218066983,136.40996683342382,136.6585650057532,137.01489029917866,136.18145076325163,136.38750125141814,136.44869900587946,136.55882767867297,136.59592098835856,136.53450239123777,136.74981611035764,137.5124095659703,137.01357793342322,137.8152641924098,137.68658847082406,136.96200623130426,136.8001606357284,136.83887216355652,137.51951688248664,137.641492866911,137.97882132045925,137.33484322251752,136.57151572359726,136.72890832368284,136.46999593591318,136.54942113626748,135.85713932244107,135.7324722330086,134.87185290036723,135.411184058059,136.02381620323285,136.9411461255513,136.9709193771705,136.2520183310844,135.3559899451211,135.8979647611268,135.71578615764156,136.01371031207964,136.93521102238446,137.14831344783306,137.080291882623,137.28580346424133,137.65277843130752,137.55936783831567,137.62955546751618,137.30779708828777,137.21664999658242,136.32699235761538,135.75071581685916,135.18073028465733,135.13933788146824,134.76331821503118,134.70370619557798,135.70229020155966,136.09660696750507,136.13221220113337,136.84427491761744,137.38505184091628,137.66329939942807,136.83390061883256,135.93601155560464,136.50477587385103,136.20047355722636,137.10606373054907,138.06469213450328,137.4293622840196,138.27214476652443,138.93905160110444,138.9426298281178,139.19454531511292,139.97629689937457,139.73050951911137,139.096729721874,140.0585783268325,140.2987002050504,139.33419210417196,139.96747259097174,140.1740460395813,139.4195872596465,139.42791110044345,139.9692352823913,139.3758664173074,139.99849983584136,139.8579690088518,140.25710534211248,140.92232983838767,141.44043281115592,140.5312312389724,139.9645948675461,139.77076944615692,140.50059372652322,141.2288922131993,142.19773213239387,142.4807630297728,142.05169954476878,142.0740481512621,142.5836319872178,142.4561613081023,143.09636026015505,143.6486076596193,143.3808701140806,143.39720987528563,143.07016728585586,143.3965394999832,143.36438211472705,143.1615387010388,143.71194433094934,142.71693758340552,143.43319466384128,144.1571788592264,143.8711761967279,143.5048437784426,143.35563025111333,144.14813113817945,144.78143211873248,144.41736865695566,144.67485422082245,144.2107416843064,143.89270812598988,143.50802494352683,143.44752165395766,144.22916547441855,143.77069023204967,143.86289789294824,143.61512070568278,143.76400947291404,144.7156003662385,144.62031722441316,145.36152582708746,145.14767120406032,145.61332494020462,145.24558755476028,145.87293548043817,146.21442327369004,147.0926302233711,147.8614917183295,147.83749880502,147.54683910729364,146.88692459650338,146.08137347735465,145.39322196505964,146.18693298101425,146.6006572227925,147.26034358749166,147.10390692017972,147.14251251192763,148.03198316507041,147.6937672868371,148.09294611075893,148.9764511170797,148.83006860502064,148.91423808597028,149.801435561385,149.8199213258922,150.347256496083,149.8269946379587,150.09304230520502,150.63226835615933,149.82578124012798,149.24776228889823,149.27685884851962,150.0381697085686,149.36512229498476,150.19524774933234,150.6097161648795,151.22634602012113,151.64833603659645,151.8093808335252,152.0127329537645,151.06632687803358,150.68998762825504,150.4717392232269,149.51504442561418,148.87021888419986,147.94882812630385,147.3119869097136,147.25067899934947,146.86752407858148,147.82541752420366,147.63759532105178,147.43604547157884,146.8633350962773,146.60990844620392,146.99793201871216,146.45726510277018,145.5307050230913,146.00491858366877,145.62046035425738,145.90075814770535,145.9007295416668,144.96653885114938,145.8044517193921,146.66288802120835,147.37322874972597,147.2639009761624,148.03930467786267,147.35945026250556,147.4035870404914,148.26127874897793,148.59915324579924,148.0587868145667,147.4777607866563,146.6248958776705,147.2772149918601,147.5754195926711,147.23322706110775,146.67206411017105,145.93334848899394,146.00515232468024,146.73260802729055,147.44720017863438,146.59020604239777,146.3382537458092,145.35422267438844,145.59732550149783,146.38287877943367,146.21718321787193,146.96493807528168,146.2662553070113,146.03345636744052,145.92036983883008,146.37495951354504,146.81732658902183,147.01937702810392,146.63124945107847,147.12540941964835,147.85193234030157,146.97901961393654,146.02554997615516,145.7655176417902,145.40295128384605,145.2584416368045,144.36554526677355,144.1946059842594,143.88662972208112,143.7896124185063,144.2374328011647,144.9820368597284,145.39821076299995,145.2457718285732,145.6275258748792,144.96259650960565,145.36183315282688,145.75365747557953,146.4678713758476,145.47073637600988,146.18480338389054,146.6080832304433,147.19331786455587,147.40191186452284,148.37429825682193,148.60214606765658,149.07919426076114,148.50017154123634,148.47328246198595,148.12918585911393,147.7022131094709,147.68648680485785,147.08186153229326,146.3029232812114,145.7642500270158,146.67260093567893,147.34148851782084,147.31117119872943,146.31227257987484,146.3295503463596,146.20612890925258,146.08224790915847,146.33790328679606,146.3077754485421,146.9514487455599,146.26605588570237,145.7862672652118,145.14123060833663,144.8907019807957,144.02264195727184,143.37191991135478,143.44851270783693,144.38774081412703,144.1580746327527,143.4908910105005,143.2500365334563,143.33003023453057,142.53832368226722,143.32531182980165,143.70693022944033,143.73270822735503,143.1379649238661,143.33260174002498,143.13858403079212,142.4266363941133,143.05707991076633,142.1331470273435,143.10878126276657,142.4250735458918,141.6328797917813,141.43984554195777,141.62179027264938,142.0989734083414,142.9075474254787,142.06201072596014,141.8046885295771,141.48331567412242,141.70059223426506,141.3813104671426,141.24484653957188,142.056865433231,142.07220961805433,142.44563960749656,142.39039902761579,141.49818999972194,140.62721063382924,140.0032149530016,139.4930429281667,138.97356879059225,139.51825496414676,140.41756450757384,141.23116988316178,141.74816903285682,141.98556730756536,141.39615034405142,140.51661661686376,140.53254640335217,140.751381221693,140.706176196225,141.40853220550343,141.82109184004366,142.15236959187314,141.3681366383098,141.0702834664844,141.07303655100986,140.11201517516747,141.01929450128227,141.87830440653488,141.16939073381945,141.20820956490934,140.62347329594195,141.58572027506307,141.65155141893774,141.95543370069936,142.2957618306391,142.5975385364145,143.16874691098928,142.46613391581923,141.8603741293773,142.2206993973814,142.69500773912296,143.68908475153148,142.9520300035365,143.25901666795835,143.58123007742688,142.72293382976204,142.73858352564275,142.12026335438713,142.6756096924655,141.7197648412548,142.2776916557923,143.26529559027404,143.23922746861354,142.79320426657796,142.01361129572615,141.41610258677974,141.4985453528352,142.4486207375303,142.443015483208,142.79978958284482,143.44483116548508,142.9494587336667,142.43584616528824,142.63391284411773,143.02755874674767,143.00000940728933,143.89501053793356,144.8838670765981,144.40152345551178,145.0456716241315,144.87432685261592,144.1190187605098,144.94137590145692,145.43000098364428,144.86673591984436,144.03112326329574,143.85632563522086,144.40373412752524,143.72356476681307,143.7786088627763,143.11739728460088,143.44542518956587,143.30465440964326,142.89857788709924,142.930345534347,143.27689583133906,143.7338134823367,144.11846390739083,144.21338615659624,144.3621562467888,144.11821919493377,143.65577346133068,143.16397092910483,143.61128483340144,143.47687752451748,143.3369664894417,142.81991925183684,142.7171661928296,143.59614611510187,144.09618277847767,143.14342989213765,143.25088200392202,143.000727861654,142.45046216715127,142.56356981769204,142.99579695332795,143.21301352744922,144.09887466207147,143.33537793625146,142.38128688000143,143.07878168439493,142.94080702774227,142.0550375301391,142.75824985094368,141.9228293178603,142.53481225296855,141.59123790590093,142.22654104651883,142.44365977821872,143.36135519528762,144.07966361846775,144.09212966402993,143.4619926852174,144.10161244124174,143.96427423181012,144.16465368447825,143.95780551293865,144.1746057504788,144.26604879135266,144.75848558172584,144.7390743708238,144.30256554670632,144.44853983353823,143.78917197324336,143.08971608942375,142.6448813099414,142.24557852745056,141.8969758641906,142.5202263961546,141.7853795918636,142.069828259293,142.4985547880642,142.27106861909851,141.77792457863688,140.79237728286535,141.06265175249428,140.79638115642592,141.57314903428778,141.64281972777098,141.72747198864818,140.7621162221767,140.74532746896148,141.64538852171972,140.74931083479896,140.18107760697603,140.04994928184897,139.5552770565264,139.88967107096687,140.58998414874077,139.95687033142895,138.9647588096559,138.99780901055783,139.0887429760769,138.09033660870045,137.5345950764604,138.085322660394,137.69945931481197,136.87325541023165,136.55798924528062,136.6034437562339,137.25705502508208,137.597749998793,137.39329616632313,137.5419764709659,138.11399359162897,137.55408074101433,137.1735852761194,136.73835981218144,136.26586825633422,136.41459197131917,135.6249616155401,135.7277751341462,136.45028281584382,137.01813162397593,137.56200328469276,138.18484503915533,138.03486492065713,138.74143514968455,139.66569763747975,139.422447163146,138.54108871193603,139.4384417142719,138.9473228380084,139.55571012431756,139.62936391076073,140.126833521761,139.386597531382,138.92035112343729,138.7528925165534,138.35981875285506,138.38103440077975,137.99659066461027,137.5519611397758,138.46881086565554,139.4350759331137,140.3174392185174,140.6150858453475,140.90565536357462,141.06616924190894,140.6895761890337,140.74185752030462,141.5083333933726,141.17573481751606,141.79069230286404,141.47988812159747,142.24061766220257,141.5151637159288,141.82682950329036,142.77395132370293,142.27681394713,141.39271187456325,140.81530634500086,140.26842011418194,139.54808483738452,139.917490885593,140.20497340941802,139.47962952125818,139.33785868482664,138.90492897015065,138.99277916364372,139.1862790910527,139.30950333876535,140.02505028108135,139.02650441089645,139.5335620250553,140.22665958479047,140.33798890840262,140.81202856870368,140.6638961425051,139.93340005073696,140.3838824289851,141.04614645754918,140.9665066176094,140.2139070397243,140.33019756525755,140.49282625271007,140.47921177372336,141.29227501666173,141.67908909730613,142.110308021307,141.48457456100732,140.7062874441035,141.18657994270325,142.16196047700942,142.74263005517423,142.32800794905052,143.05998061969876,142.90724579943344,142.42391494475305,142.45995422219858,143.20835992507637,143.89113556593657,143.26752906758338,143.15785706974566,142.6016660546884,143.5574260968715,142.63647639891133,142.1278725732118,141.72072030743584,141.77242801385,142.45101395621896,142.75207036919892,142.1402779687196,142.92893694899976,143.64190579019487,144.3155422876589,143.91540399799123,143.7071661730297,143.2800720622763,143.0040873507969,142.58495043590665,141.99069236032665,142.80966355279088,142.26727932086214,141.58122584596276,141.45277465693653,141.91462385375053,141.06789414444938,140.37778690317646,141.3127423413098,142.2282798588276,142.87644291715696,142.54812451591715,143.0320274969563,143.32178832311183,143.57016082340851,143.607422191184,142.8382406560704,142.8850213228725,142.54259218089283,141.73005747189745,141.87599675636739,141.73640847345814,142.64772256696597,141.7771618431434,141.09749634936452,141.89946110872552,142.13987237168476,141.49219471774995,140.53015187662095,141.44042539596558,141.37328666914254,142.0208064718172,142.5123572293669,142.9864790160209,143.83227637642995,143.4210492298007,143.7068124418147,143.80109134828672,143.02995412563905,142.79525060066953,143.47695365501568,142.7470130044967,142.25678186537698,142.5933649437502,142.8278043703176,142.96633617812768,142.3958960887976,143.01004143757746,142.47034895978868,141.99318807478994,141.76620183093473,142.62715332349762,143.34929143916816,143.5245867446065,143.50307267112657,143.50739157851785,142.59766508964822,142.2697964911349,141.5838242401369,141.38476242823526,141.8646944751963,142.2075450140983,142.07318823132664,142.3946479880251,141.9649829333648,141.33475166279823,140.89586051693186,139.99125873390585,139.924849932082,140.21681617060676,140.1625934210606,140.29472805233672,139.30539539083838,139.55609812028706,139.1598808746785,138.62222557514906,139.33815623773262,139.0841042357497,139.9509086641483,140.5158302988857,141.45191135443747,140.97200667159632,140.42749671358615,140.23541788663715,139.29709771135822,138.32781978463754,137.7485905517824,137.9342884174548,137.95768291596323,137.58976300945505,137.80596808576956,138.27323265280575,138.8293910017237,139.31395975779742,139.33148862235248,139.8716027121991,139.08920891676098,138.42748646438122,137.43433445552364,136.5287570701912,136.68155819177628,137.60943434434012,137.8616065881215,137.4641830548644,137.65299760038033,136.70195441134274,136.43042636103928,136.47146943537518,135.87462679157034,135.73019475350156,135.50984570058063,135.1550003970042,134.1745780822821,134.56196989491582,135.0533086117357,135.59837900102139,135.8432612256147,135.69944262690842,136.4209208409302,136.9279148792848,137.01737838145345,136.87817383930087,136.30648363707587,135.58952174149454,135.34945739945397,136.23424139572307,135.87065826449543,136.05874491902068,135.7919754278846,135.00933116022497,134.5682642441243,134.68562971847132,133.68862063949928,133.51216339273378,133.61826715106145,134.00502815796062,134.82945021102205,134.2954429993406,133.93018566351384,134.3499749279581,134.71953028533608,133.93721821950749,133.8891571443528,133.9752940214239,134.2127035195008,134.51861370261759,134.63494081888348,134.4276964426972,133.59204242844135,133.08247438957915,132.6558018978685,132.6083073937334,131.97002924093977,132.9535991800949,133.07604527752846,133.1864352147095,132.2036770232953,131.74717813218012,130.93705390486866,131.9328116653487,131.00594836566597,130.57873042533174,130.35806329688057,130.45926440274343,129.72259733313695,130.06981697818264,130.69490282144397,129.9601997556165,129.03698464343324,128.21385382534936,127.52786029689014,127.15432006493211,127.62171152839437,127.49290931690484,127.24754052935168,127.57896556146443,127.86151350475848,127.53474666690454,127.89461384480819,128.03225391823798,127.70380983548239,128.0338259828277,128.06021077325568,128.29918471723795,128.5111717809923,128.16816776711494,127.53408271074295,127.99371392093599,127.87868333235383,128.76852901978418,128.82764620147645,128.27457758272067,129.26983693381771,128.63122813217342,129.0709184948355,129.6075933095999,129.52088338229805,129.8731768792495,130.834464172367,130.68502597650513,130.18870830722153,129.2326608421281,128.94903918728232,129.52600651280954,129.67945303861052,128.9429939687252,129.41564890835434,128.74455350684002,128.3473557406105,128.0201657707803,128.49630625592545,127.54004311887547,127.97764563933015,128.8256392623298,129.5989469862543,128.86075902031735,129.28695179522038,128.35187512729317,128.72558048553765,129.04546218831092,129.81514299334958,130.27989163110033,129.96962067158893,130.59749237494543,129.78778846096247,129.6502921944484,130.57607472408563,129.9977808194235,130.5476716114208,130.28761400515214,131.08539744839072,131.03131368663162,130.63987401127815,130.9568724683486,131.4305530358106,130.79761431086808,130.64551461674273,131.51252522785217,131.83850709954277,131.17539209593087,130.99712602840737,131.28149216761813,131.01737469434738,131.3765576304868,130.5452776355669,129.97344625042751,129.01467446656898,129.9770011571236,130.52263069711626,130.29262276552618,129.3970368830487,130.36129417596385,129.4290849864483,128.52080353582278,128.894577245228,129.03632341418415,128.15524967666715,128.43484349595383,127.47552419221029,127.69774152105674,126.78464929340407,127.68931536003947,127.29982394864783,127.5976567431353,128.06042557023466,128.26173598645255,128.752621633932,129.1536106900312,128.9991373801604,128.01466912124306,128.32391717517748,128.57765664113685,128.09801373118535,127.93940739519894,128.41644551651552,129.011702996213,128.75022856891155,128.0197392120026,128.5675373915583,129.49555810075253,129.12814833782613,128.65132901165634,129.59111581044272,129.69661161582917,129.64784712623805,129.16816633893177,129.95769956242293,129.2397542912513,129.5861311792396,128.8876305143349,129.12788433209062,129.54163948772475,128.57819096557796,129.2181910877116,128.95316889043897,127.96418988425285,127.6298660049215,127.96354795526713,127.09096307680011,127.1827770289965,128.02332092123106,127.93606298882514,127.54782952740788,126.91664781048894,126.29174693627283,126.38211982185021,125.38597924914211,124.93566564936191,124.18971731653437,124.49684558156878,125.11740294471383,124.86502055125311,124.14581874664873,124.04332485701889,124.19106396613643,123.46193158719689,123.07575118821114,123.30664293887094,123.92218192853034,123.17664768360555,122.92847917042673,123.67211780697107,124.15910284919664,125.0541223930195,124.35444336337969,124.25368997221813,125.25334654701874,125.86205146741122,125.73715564142913,124.93848378863186,124.95300123281777,124.7456373362802,123.94297248637304,124.9191482430324,124.94825517432764,124.5397927169688,124.57169821066782,125.45649793650955,126.38193268561736,126.9584871311672,126.96426579775289,126.3798907417804,126.34657217701897,125.87553151231259,126.76026449911296,126.11645224923268,125.93681838922203,126.93448613770306,126.76320479763672,126.44626487186179,126.49020916223526,126.59753979323432,127.16380082862452,127.14533364772797,126.9118625484407,126.89073316566646,127.50887960987166,128.2087604678236,127.6357992477715,128.24410255718976,128.11714478349313,127.62171631120145,127.58389971358702,126.68694325443357,126.56486581778154,126.53984835231677,125.53992151236162,125.23716686153784,125.3037811210379,124.66742382291704,125.22971058264375,126.16168822580948,126.22413079300895,127.10483457474038,127.74738468648866,128.6356902141124,127.93492196174338,127.06766690686345,126.46002196380869,125.99140284350142,126.13687142170966,126.95407574949786,127.67521122237667,126.73278891015798,127.54286911897361,128.08587263571098,127.82229019422084,127.14006260037422,127.50107791507617,128.35930076707155,127.68392165284604,127.07018211623654,127.5187618760392,128.2403655871749,127.47737303096801,128.09858575463295,127.71228868002072,127.39812632836401,126.60458349296823,126.9203264391981,127.39662114297971,127.79044099058956,128.30273112794384,127.75196507107466,127.32094049220905,127.32797298021615,127.04471276281402,126.96371052181348,127.4806814128533,127.40622574463487,127.1952833305113,127.06351201143116,126.26810776349157,127.20789257902652,127.88423097366467,127.51017234101892,127.40121981874108,127.46426641242579,128.07149361865595,128.39180676732212,127.90000981558114,127.06182994740084,126.97085473127663,126.60902915382758,125.77466574450955,124.84464917751029,124.3897497933358,123.47227613907307,122.89000579062849,123.79830132145435,124.5098071093671,124.48650737479329,124.5093225473538,125.36459557712078,124.54387589590624,124.57892455952242,124.74536473862827,123.98435316700488,123.15215385798365,122.64036716939881,122.8045562361367,123.0607947842218,122.09228935698047,122.28879345860332,121.43988657137379,121.4604414338246,122.39276956906542,121.83416309021413,121.39657857827842,120.50283797085285,120.93567698588595,121.59214206645265,121.20761776762083,120.50285823596641,120.82169002573937,120.64330672472715,119.77661923039705,119.30384052498266,119.07327789627016,118.663513334468,119.34330488275737,118.72895167348906,118.20013962965459,118.74114354047924,119.02422748506069,119.7691035666503,119.26341271586716,118.36020430084318,118.37577826716006,118.38872299157083,118.28030832344666,118.08391792746261,117.1525267418474,117.28287174226716,116.83638968551531,116.80903006205335,117.2002840959467,116.78081168513745,116.23121193423867,116.81981893302873,116.01409295806661,115.7287915861234,115.66855990421027,115.0210764943622,114.77032138267532,114.91426728805527,114.32658029394224,113.79262312501669,113.57589281210676,114.08239442436025,113.75183849595487,113.10500166285783,112.87359664961696,113.58663497120142,113.19484584359452,112.68465214362368,112.17768970970064,112.30922217201442,111.52821524906904,110.73393335239962,111.45904125412926,112.16357568185776,112.89411660190672,112.75097802141681,113.18940266780555,113.47801319137216,114.37656634952873,114.46476689167321,114.52928839437664,114.92610946018249,114.81088370084763,113.9950467380695,113.05030347732827,113.28870285395533,113.4752250071615,113.65777688845992,113.040234034881,112.11889275629073,111.12618642812595,111.95686544338241,111.22355703637004,111.70824995217845,112.36151762586087,112.78887924458832,112.9193189558573,112.99930085567757,112.46675320994109,113.39986833557487,112.83081837557256,113.8153543653898,113.64076987933367,113.06227737106383,113.56274108076468,114.39733777334914,114.22625337401405,115.19189707003534,115.88133282866329,115.48463128414005,114.64847526559606,115.03231835272163,115.9784923014231,115.60773107036948,115.33427002560347,115.0131858503446,114.67058097897097,115.38304856279865,115.86937077110633,116.29635936021805,115.64494708087295,115.5413212464191,114.63279949920252,115.32363495696336,115.357359317597,114.44487402494997,114.27684410195798,114.46207542018965,114.30274910107255,113.49664224404842,113.25938811944798,113.45869069453329,112.98415632965043,113.5687774727121,113.71815473539755,113.31423716759309,112.51288738241419,112.01454096334055,111.50067034969106,111.11382241128013,111.69396322732791,112.38927407329902,112.7782902228646,112.76258470956236,113.55542068555951,112.89295823033899,112.40847878158092,111.4989545699209,110.63795041758567,110.38973104022443,110.46367438323796,110.7335728816688,110.83193382900208,111.52763669379056,111.87621255777776,111.38576408848166,111.49022621707991,111.81869307998568,111.84223631117493,111.51401750603691,112.35454015107825,111.51438239775598,111.7580599449575,111.68228812795132,110.96758888056502,110.19451643666252,109.82792065432295,109.15882182214409,109.96309028333053,109.07325274124742,109.59441839158535,110.56067007081583,110.85016766795889,110.3122744821012,109.75614131381735,108.98899304494262,108.0257384935394,107.50988906249404,106.62819623760879,105.83149563940242,105.60286079160869,106.3453210783191,107.10577887296677,107.61894285865128,107.7104616528377,106.72184734232724,106.00216168724,105.24553181696683,104.27643324993551,103.7747983369045,103.15739950351417,102.31422308692709,102.77439461415634,101.86084417020902,101.97337537445128,102.82031427649781,102.37334600277245,101.578668163158,100.86661400506273,100.80847280006856,101.12953428598121,101.08145107002929,100.91304957028478,100.7976129874587,100.6980711906217,99.77431534975767,99.72815649304539,99.27985574956983,99.51081608468667,98.56135787256062,97.63218539673835,98.24646288435906,97.34006471838802,97.26710147038102,97.14395077247173,97.44867326272652,96.4810343165882,95.73398773279041,95.2658674819395,96.00474138045684,96.64336535474285,96.48321561468765,96.1317596938461,96.85848445026204,96.62044900143519,96.81165128713474,97.67632040427998,96.94856669381261,97.43466949602589,97.08916518138722,96.61790681630373,96.04458319861442,96.50064554577693,96.66431610751897,96.47380652884021,96.77262353198603,97.02167765749618,96.0272946418263,96.71424148464575,96.37931034062058,96.54039931762964,96.71531341504306,95.99194021336734,95.62392069911584,95.8924414771609,96.22836352139711,96.42369910189882,95.68884764518589,96.12968007894233,96.38791003031656,96.10091537749395,95.89816301502287,96.44768164725974,95.51566945342347,94.78686171025038,94.2260787752457,93.6964438133873,93.452557050623,94.04531585518271,93.89783823862672,94.38205746747553,94.12835581321269,93.69506886228919,94.30121638812125,95.06173591595143,95.00644466560334,95.56849655602127,95.86694447183982,95.0815090839751,94.1169207803905,93.34129230678082,93.54144424106926,93.29998820181936,92.60256901290268,93.16471303626895,93.29564791126177,92.45907732052729,92.38440054003149,91.93546857358888,91.3137587448582,92.26978898607194,91.36022462276742,92.21277564484626,91.30424483772367,91.14218383282423,91.55260497750714,90.67078670719638,90.54074337333441,91.06551616219804,91.59271061467007,92.54048888897523,91.63090741727501,92.27201281161979,93.21996589563787,92.8923973031342,92.27136560156941,92.1649486166425,92.01480362704024,91.83584873005748,90.84571580355987,90.1354513047263,91.10894287889823,90.27081161923707,90.51837908942252,90.7815001187846,90.1858483189717,90.65342179732397,90.91956948349252,90.30012894468382,90.07996801706031,89.79439164372161,89.09662381699309,89.89117735717446,89.06997642386705,88.51424497878179,87.5546802948229,87.62551609892398,87.51842947024852,87.9628476286307,88.66283482452855,88.29099654592574,88.14944712258875,88.32251365482807,89.13558646850288,89.35895578563213,88.58813535561785,88.53165367152542,87.93594796396792,86.99673395929858,86.6234106789343,87.03498144913465,87.57164802355692,88.41863404400647,88.63781775766984,88.11481453571469,87.96570178074762,87.69555305037647,87.0174200204201,86.88881598459557,86.76307216100395,86.5438286610879,86.04075056128204,86.38568584574386,87.2270500510931,88.04763899371028,88.4845283147879,88.36836061067879,87.49443867290393,88.14455371536314,87.25277440110222,87.37398053100333,86.38553386600688,85.67133573116735,85.24108626553789,85.50085785146803,86.11766027007252,86.06372905522585,85.4973511742428,86.34190375264734,86.06705069821328,85.60234837373719,84.84627492446452,84.74426998011768,84.81714938674122,85.1601351518184,84.88678643293679,84.16293620038778,83.24735983088613,82.44101638626307,83.22300124913454,83.09566401550546,82.47521413955837,83.44685965962708,83.85562925133854,83.19690416567028,82.47260404983535,82.38931849971414,82.3126954161562,82.84551858017221,82.47689131647348,83.20899991691113,83.18235269980505,83.84113969327882,83.98134324233979,84.89261091407388,85.29915791703388,85.65853848448023,86.56608889391646,86.40966261224821,86.58297142805532,85.997663105838,86.55908533744514,86.52000732440501,86.40172724891454,86.81626699538901,85.92522986559197,85.98201340809464,86.19203175511211,85.55603794427589,85.6238681320101,85.14186653262004,84.34242955269292,83.8011484220624,84.13804977666587,84.64402602147311,84.61885416833684,84.62124575767666,84.5406900094822,84.0994642553851,84.16158862132579,83.23659319989383,83.35830538487062,84.29466814920306,85.02994161378592,84.36979363579303,84.61670057894662,84.44641716312617,83.98283430095762,83.92283480009064,84.44221625383943,84.13803040236235,84.79522195458412,85.48764486750588,84.62766532227397,85.29799242783338,85.7299191695638,85.04475684510544,85.9264838816598,85.58482641261071,86.20382755063474,86.74334735190496,87.08927329070866,86.88230317691341,86.59873064327985,87.42513039335608,86.49223805498332,86.26738382456824,86.60661909962073,85.63458600640297,85.75452027842402,84.75803103903309,84.80003227153793,84.37029898539186,83.83301982097328,83.96236503077671,83.44676683470607,83.92926180968061,84.58951828163117,84.70070512965322,83.74900538939983,82.93604772305116,83.75283280480653,82.79477450344712,83.41876522544771,83.52638560626656,83.9478167053312,83.72916383156553,84.29896744061261,84.68953809933737,85.63921198714525,85.97570490278304,85.6951707964763,85.88561974652112,85.5918462574482,86.29040386201814,85.58346631051973,85.57439586799592,86.21127975918353,86.07941315881908,85.44009227631614,85.87606544187292,84.90799115691334,85.25248481240124,86.0360624208115,86.21611407352611,86.90264838375151,87.82957743201405,87.56260186294094,86.72576535167173,86.747799386736,86.3168490990065,86.51325564133003,85.95758054964244,85.44928444642574,86.11317133111879,86.03310140734538,85.81109730154276,86.42517468659207,86.54475620901212,86.24587008729577,85.98531096568331,85.40937740448862,86.29889603285119,85.34251318778843,85.91891899844632,86.49365946603939,85.97900270111859,85.24258127249777,84.89372604480013,85.30716859921813,85.22732343105599,85.77099564066157,86.4547114172019,86.38055884605274,86.53429999016225,86.88730789907277,87.81364274583757,87.93522445345297,88.09236977202818,87.64174358872697,88.29022498149425,87.4583436450921,86.65305836964399,86.29731269739568,86.2463086983189,87.20388586306944,87.90211087139323,87.18044411763549,86.4276851634495,87.36032115435228,88.22288878355175,89.09470970602706,89.4746005279012,89.65411698166281,89.17126677790657,89.61045362986624,90.18904362479225,89.96303426427767,89.02043703664094,88.9313343949616,88.55021725129336,88.69349276926368,88.15645232144743,89.04990317113698,89.7001108112745,89.95408156421036,90.2305984753184,91.13554512895644,91.58646129444242,92.23097735038027,91.34994849050418,91.25872530974448,92.02398700779304,92.60012559592724,92.42358674714342,91.58307584468275,91.77600733051077,90.841048582457,89.94804114522412,89.86738358717412,89.34712170343846,89.91567195998505,89.93709357595071,89.95639627426863,90.50701568182558,90.57890550140291,91.05461220629513,91.42395023768768,91.81107677519321,92.78758183820173,93.77346955845132,94.18609598232433,94.04183030733839,94.13011588854715,93.62750502349809,94.49711145507172,95.49172843340784,96.21791143435985,97.1757626296021,98.02583356341347,98.17839565593749,98.52632755413651,97.66069542849436,97.51764299022034,96.52529262332246,95.81119964597747,95.85056407982484,95.18914878042415,95.22137755900621,95.79140694765374,95.02529371250421,95.00577520905063,94.84094348596409,94.63829019386321,95.23718129424378,95.5194137073122,96.34930466394871,95.61829794477671,94.84896432422101,95.77296440443024,95.99858336569741,95.0627843705006,95.04994151368737,94.95485857827589,95.6483323504217,96.27152793062851,97.25848689721897,96.3684789002873,95.45383156836033,95.9184325505048,95.5716667030938,95.9105916833505,95.43389397347346,95.40300382627174,95.31074811378494,95.53324124310166,96.44648690940812,95.46625176770613,94.83081306843087,94.92530764406547,93.95075312396511,94.44409719575197,93.6001909817569,93.0049203839153,93.13749315077439,94.0286022964865,93.4179615592584,94.24064896302298,95.00938510196283,94.45572959119454,95.12477911822498,94.73211410455406,94.08273769449443,93.10906919231638,92.26969297416508,92.07610695064068,92.71357364440337,93.01154642319307,92.35523755149916,92.07069468218833,92.07183928322047,92.18030058592558,92.78346368577331,92.83318487880751,92.25232336390764,92.25289513031021,91.99326767027378,91.27595401694998,91.1245889547281,90.60859174840152,90.44648048747331,89.77342853369191,89.244522172492,88.57048943499103,87.80857017450035,87.83726088702679,88.53101874189451,88.14906099857762,87.96339251613244,88.13814852945507,87.64243248756975,87.81461284682155,87.00805430905893,86.26619893312454,86.54969431972131,85.56197544652969,85.22003635996953,84.28897772030905,84.7213059971109,84.3638089010492,84.5855721635744,84.58772309590131,83.8620455074124,84.24020198173821,84.03896363684908,84.61642694985494,85.49915757635608,86.39557145256549,85.96763064526021,86.18589952448383,86.55793906841427,86.18822258152068,87.03547162562609,86.17418178496882,86.56904592411593,86.54366043256596,87.28458668617532,88.15277266455814,87.47210492054,87.51013061124831,87.70013692509383,86.90463072899729,86.59769945498556,86.978677702602,86.72779417596757,85.79683065693825,84.96634141542017,85.02167765563354,85.30707113817334,84.58545143948868,84.48062829952687,84.53602836001664,85.45975198270753,86.16091955220327,86.37641369691119,86.2018551104702,86.80805173097178,85.88192320382223,84.90656465897337,85.40798008907586,85.77874932531267,85.899401626084,85.62482365313917,86.00500919856131,85.54523364966735,85.29001712845638,85.86800019722432,85.2606696584262,86.23556843632832,85.5038114846684,85.09600940858945,84.42991622723639,84.34847685135901,85.13593311188743,85.36924509797245,85.91023013135418,85.39503730088472,84.76168531365693,84.37534650089219,84.78366462187842,84.41400593146682,84.59393371921033,84.27359339641407,83.69132996723056,83.28149429522455,83.19391162600368,84.11582644283772,84.64150413312018,83.7955094948411,83.96564002009109,83.9171016747132,84.1032263035886,83.38671216228977,83.38830671133474,82.47628133092076,81.89013346843421,82.30787247605622,81.9021170255728,81.59073609858751,81.8409487255849,82.46101670432836,82.48148992937058,82.37641910230741,82.99726623669267,82.25926706427708,81.70594157418236,82.12856034236029,81.17398547148332,80.25268603907898,79.35790410963818,79.41144187003374,80.03017739672214,79.62487930804491,79.43315876368433,78.61321259755641,79.42881103977561,78.99553230544552,78.1812793831341,77.64988639438525,78.60447030048817,78.24372141575441,77.98108061915264,78.70331287849694,78.77771432651207,78.99047281919047,78.72242247033864,78.6555497138761,79.0298075042665,78.46173334354535,77.69521911907941,78.29834994580597,77.66638110531494,77.55739300511777,76.83226435165852,76.83911534585059,76.15725137852132,77.12744186259806,76.95897883735597,77.80433634668589,77.27050996897742,77.65691188210621,78.47451476566494,77.66957336850464,76.74939616164193,76.98108112858608,76.84552246285602,76.64754671324044,76.38061558594927,76.5174324195832,77.11058703670278,78.11026992835104,77.23950941069052,76.34735063929111,76.75580525631085,77.21046510338783,77.00221705203876,77.78529966203496,77.97816734807566,77.09901537746191,76.52827291376889,75.60435198899359,74.91382397292182,74.14225210808218,73.55029347492382,73.9096142896451,74.75826297560707,74.16890039900318,74.24515511700884,73.74224691931158,73.45577789843082,72.50320410681888,72.64070476638153,73.20540318544954,72.29740610159934,73.2345294659026,73.57474788883701,72.89243245730177,72.83186121471226,72.60206100903451,73.2651552199386,72.69882314745337,72.61667103879154,72.08422721829265,71.6903925309889,72.35056085325778,71.55189713975415,71.0865325932391,71.4273644075729,70.8690954237245,70.59612284461036,69.66629000985995,70.33419295307249,69.8650196697563,68.93180218199268,69.4402826926671,68.73623009119183,68.7863994431682,67.8707514218986,68.25417198101059,67.33612039219588,67.0204748166725,66.22944338433444,66.39565607672557,66.63229685043916,67.17817394342273,66.49374513141811,67.2480363775976,67.29438008461148,66.70882883481681,65.77940665977076,65.29237533127889,64.8531976500526,63.894357598852366,63.883475839626044,63.00503823207691,63.28416466480121,62.38277344033122,62.947432364337146,63.30849710619077,63.51587262377143,62.60238529648632,62.08812586264685,62.11260910425335,62.77892279205844,62.29176946589723,63.06821187119931,63.75974175520241,63.24844741495326,63.11987538635731,63.43360163830221,64.27572363615036,64.7446955293417,64.12354934960604,64.73002628609538,64.0594940437004,64.34496122645214,65.20665131649002,65.02059269882739,65.312485659495,65.17303722724319,65.83606099290773,66.67475655535236,67.04831762937829,67.96319607133046,68.73812818946317,69.22255079448223,68.70814979216084,68.74299286538735,68.87565891863778,68.25774878682569,67.92168353125453,67.54398953635246,67.38019192544743,66.6566101629287,66.76297797542065,66.61500823963434,67.290694009047,67.1665944266133,67.04317153058946,66.83106757700443,67.29450894333422,67.49545357888564,67.17780719511211,67.81691765738651,66.93152831029147,67.81569103104994,68.72957720700651,68.96676679281518,68.23790063662454,68.41601110668853,69.30675549898297,69.28623398998752,69.94378850981593,70.32345241680741,71.0373219922185,70.64570824569091,70.75718829967082,70.26741986209527,70.3550138194114,70.8641637256369,71.82400193344802,71.74964346829802,72.06201381934807,72.52721267705783,72.45451065385714,72.87552583776414,72.80992469890043,73.0060486565344,72.30674484139308,71.45392575766891,71.49220157042146,72.47734824940562,73.148046921473,73.7016329113394,74.25419582473114,73.82225826289505,74.00584273319691,74.24099736101925,74.45586719829589,73.87328269146383,73.02993396157399,73.94748889515176,73.76570571539924,73.77178205503151,74.48795806057751,75.28709170315415,75.99143785377964,75.37156945187598,74.48378662439063,74.91415397915989,75.74726023525,76.56537947477773,77.5090506686829,77.16873523127288,77.16664817277342,77.20119409263134,76.66385977901518,77.3405510741286,76.90829829638824,77.2448691050522,78.10276825260371,77.86228012293577,78.02519829105586,78.99212807416916,78.47643183264881,78.2495568334125,78.09130671760067,78.38721479661763,77.53352995030582,78.21805795934051,78.92379985563457,79.82023993367329,79.92843039054424,80.76298813382164,81.04817341919988,80.79646785138175,80.62494562193751,81.27094945684075,81.07393287215382,81.96594525920227,82.30657764943317,83.29300284851342,82.79937908612192,81.95348655665293,81.47419108031318,80.61440392863005,81.16099065169692,81.94359266478568,81.83291896153241,82.42550193564966,82.04315953142941,82.70246385456994,81.97132594743744,82.53479206515476,81.71323506860062,82.68744815606624,82.0815944862552,82.66417010687292,82.83521220181137,83.59961236827075,83.84012122405693,82.99022489693016,82.35365680186078,81.96601468417794,82.27523888275027,82.87104821344838,82.75601259339601,82.4184242663905,82.45913647860289,81.55564423045143,80.59304603887722,80.79412084631622,80.56854349421337,80.02314410544932,80.78594953520223,80.47803420713171,81.35162947000936,80.61273699905723,80.2164856903255,80.98046784382313,81.09716067137197,80.23673342494294,80.72799033857882,81.23426916822791,81.66907955426723,80.67331000091508,80.53371425997466,81.22121570492163,82.1931951274164,82.37198900198564,82.35463546356186,82.49779110681266,81.90573646547273,82.60510340286419,82.19624128937721,81.76367078814656,82.4543849946931,81.72992684086785,81.3547017253004,82.19466993538663,83.1838078792207,83.41675749700516,84.26005178783089,84.43925143918023,84.39754965575412,84.1233835411258,84.48899704730138,85.01564518688247,85.10794510226697,85.78648630343378,85.13975268276408,85.59400176769122,85.30937920510769,85.62728674337268,85.73187754908577,85.59172373032197,86.50681981584057,87.31649332074448,87.91043147677556,87.72974975965917,87.7302843593061,87.62737463554367,87.20905009144917,87.6684595970437,86.944101001136,87.84971787873656,87.38875511381775,86.9133427538909,86.89835903188214,86.70730303460732,86.32659707870334,86.29501822497696,86.15105939190835,86.87802957138047,86.61517480295151,86.23957607150078,87.09974684752524,87.8317959853448,86.90370757738128,87.33921289490536,87.28042371710762,86.83498266432434,86.6068154182285,86.5706668808125,86.07677179947495,86.65904334001243,86.33178208535537,85.86017824849114,85.76798657467589,85.90468821115792,85.64196645328775,84.76763805467635,84.67277455981821,84.10542248003185,84.15633542882279,84.4932579989545,84.72400049073622,85.31493587745354,85.8036276763305,86.0715249273926,85.88159632543102,86.85454817954451,87.7438265318051,88.21690714079887,88.14952671714127,87.95265627698973,87.79476456856355,88.10883283615112,87.74332176055759,88.04592196037993,88.06578512536362,88.91591313900426,89.57600475195795,89.1228346079588,89.36762855853885,89.31972326571122,88.35894994204864,87.68405290320516,88.18985931621864,88.13848912902176,87.76525227399543,87.51799813192338,87.48837612196803,87.62392478529364,88.60353954369202,89.5552917108871,90.54759678477421,91.07293678214774,91.27895396854728,91.56622917205095,92.53783123148605,92.91328134993091,93.27441080939025,93.17654940020293,92.79889614507556,92.07037535868585,91.17170659219846,91.0896169631742,90.1535837543197,89.99306152109057,89.1811309135519,89.65763889020309,90.15521504171193,90.3779979343526,90.80786090809852,90.11016241600737,89.59391311043873,89.4058703747578,88.80110039096326,88.89323487691581,89.80705102346838,90.47380528785288,89.53340820968151,90.5281854388304,90.80145094869658,90.4503259351477,90.8784282845445,90.87964226352051,90.2507926239632,90.18701249733567,91.15051597449929,91.10381702892482,91.71712663955986,91.73191461525857,91.08955548377708,91.10761090554297,91.05564176430926,91.09369904920459,90.8294627526775,90.65145894419402,90.47420519264415,91.34572902601212,91.21534719318151,90.60073434747756,90.47228272119537,89.9737895661965,90.30039806151763,89.9436167483218,90.15423820121214,90.38632711675018,89.79318471672013,90.19838879723102,89.83703281078488,90.41948385816067,91.11955729359761,90.58600994991139,90.72497324505821,89.97567839641124,90.3225519019179,89.67940172273666,90.00040661729872,90.57650945987552,90.53886273084208,90.76794679835439,90.92251574248075,90.39885345520452,90.5592751367949,89.99353167647496,90.335871739313,90.19599705887958,90.37058390397578,90.74614792503417,90.37315773917362,91.34340118430555,90.57817173749208,90.56886296859011,90.15436908090487,89.82300923625007,89.92209980357438,90.77764426078647,91.09398025367409,90.7973653478548,90.2119297455065,91.14965026266873,91.39286105148494,91.90976135758683,91.61162659246475,90.75739008747041,90.20131482370198,90.71356902271509,91.48393189860508,91.56513179512694,91.93820679979399,91.99646416585892,91.63733748812228,91.73825971363112,91.2306252089329,90.53749638143927,90.63001123862341,90.78695078426972,90.84317555697635,91.83321252465248,92.19315932365134,91.8760709897615,91.01220737863332,90.06839872151613,90.00472648767754,90.86163705820218,91.14320573303849,91.39826964167878,91.31699148705229,90.79525498580188,91.43631086032838,90.52721859747544,89.92006813921034,89.3911693347618,90.36249221209437,90.09075167495757,90.79479309497401,91.15563410427421,92.04038752662018,92.11904620472342,91.76118980720639,92.53375309193507,91.56958613405004,91.80105920694768,92.34368391474709,91.93483071960509,91.11527401860803,91.6737624919042,92.55204193200916,91.88005274999887,91.0168684143573,91.1233930028975,90.16137549933046,89.20503469835967,89.35653842194006,88.79960516700521,88.91903332667425,87.97711813403293,87.72187538351864,86.95381140569225,86.0790054295212,86.2367795528844,85.94250035099685,86.44532634923235,87.29010053863749,86.57862105034292,87.03240733314306,87.35637828009203,86.94764313660562,87.22238077409565,86.83577211527154,87.02093027206138,86.14732100861147,86.39397607464343,86.03043805528432,85.71267194719985,84.8347036736086,85.59967368515208,85.73085113195702,86.33545422926545,86.81977386213839,87.15869604051113,87.25224693585187,87.98745030583814,87.59056192962453,87.85919000348076,88.22601479897276,88.90211146464571,88.90741986082867,88.25723392469808,87.95156130148098,87.06184094166383,87.10231077065691,87.31302044307813,87.3713708538562,86.69927753414959,87.18330422975123,88.14485490787774,87.40384820196778,87.29631920298561,86.33028777875006,85.5712889325805,85.27617444191128,84.98593570431694,84.10944264708087,84.5990393939428,84.31746484478936,84.0698284227401,83.28800535900518,83.26002480275929,82.33959226449952,83.01579725882038,82.22250889334828,81.29219185886905,82.23635015124455,82.84851872967556,82.3490400169976,81.8269298565574,81.3185534211807,81.81877617584541,82.21434953715652,82.14687552070245,81.93650462478399,82.38493632944301,81.89193506166339,82.78428096417338,82.6885116295889,83.19575841818005,83.02763315988705,82.61884797317907,82.23724255291745,82.51952425111085,83.41699338611215,83.34987180773169,83.85863762814552,83.57582093495876,84.44963272474706,84.21258489694446,83.28180816909298,83.68254613596946,84.11587724927813,84.91478432575241,85.76007409160957,86.14420299697667,85.88069994142279,85.82652192143723,85.77287267288193,85.05552934948355,84.48212068574503,85.30139230098575,84.54967732727528,85.27250939328223,84.97878766804934,85.69939333060756,84.99367307405919,85.5624536066316,85.89045964647084,85.42985557252541,86.04493211535737,86.61299046920612,87.48366223694757,86.4841071604751,86.99419529410079,86.67618247168139,86.15467815473676,86.63845398742706,86.95045713987201,87.8500946299173,88.56601564446464,88.80925094522536,89.28405278734863,90.24893909553066,90.51743071665987,89.81373724108562,89.77840251522139,89.09141342621297,88.41149444039911,88.11406283592805,88.47218235209584,88.63945477129892,87.93436649022624,88.81576800625771,89.7232492333278,89.62075951462612,90.02368210768327,89.46245214622468,88.89653939148411,88.432403950952,89.35302747087553,89.05487991170958,89.05998542299494,89.98521279543638,88.98968967376277,89.70655820565298,89.62225563451648,89.64094729255885,90.52068168111145,91.50727021647617,92.00578015018255,92.58966465014964,92.90100328624249,93.0904362918809,93.09113266365603,93.9278867826797,94.02885362133384,94.89554266445339,94.33313872059807,94.8998035704717,94.96180114522576,94.07095172069967,93.45679438626394,92.91940323123708,92.22821939876303,91.84308013226837,92.74600030947477,92.13266148418188,92.79903616104275,93.22118662297726,93.48343823291361,93.6645931340754,93.0897859102115,92.24564615264535,92.56952639995143,92.98967941990122,92.27510358579457,92.52209048066288,92.01886308379471,92.38552043540403,92.3810338145122,91.94244746072218,91.41455864813179,91.39983720518649,92.14534370228648,91.2356950850226,91.31502541899681,91.78349160030484,90.88329643150792,91.67369374586269,91.63858711579815,91.72869698982686,92.59508288512006,93.06490921229124,93.85295888129622,93.24718033894897,93.12452205782756,93.15752542344853,92.2333127562888,93.22996849287301,92.33709972770885,91.95718728657812,92.57845647260547,92.59330724691972,92.770865582861,93.48697075946257,92.96114600310102,93.10231623193249,93.9486201335676,93.21122714690864,93.3928031004034,92.40680257882923,91.99515780899674,91.32337060431018,90.94643513439223,90.76226780796424,90.82049728557467,90.38803292019293,89.7453961907886,90.33053502161056,90.59573792899027,90.20424658525735,91.07031248090789,90.89556456264108,91.60344800585881,91.08943635039032,90.52063163695857,91.419052075129,90.99921811046079,91.19800368556753,91.47627865569666,91.7235124418512,91.15594876278192,90.47251909971237,90.2350255548954,89.86775792995468,90.76066690823063,90.20766848511994,90.28047716943547,90.37748986808583,89.80678057158366,90.67070830566809,90.4779599448666,90.57011231500655,90.78212492028251,91.30804263753816,91.82798007316887,91.17921431129798,90.81823444087058,91.76546738436446,91.44317369023338,91.31994179170579,92.14021376194432,93.01569161145017,92.1244199234061,91.40534043358639,90.95922761783004,91.81605923827738,92.01699750404805,91.10257544182241,91.08824074687436,91.26761514367536,90.72076178295538,90.74474160326645,91.72760687256232,92.24203851493075,92.41328883497044,92.4289708873257,93.2402011603117,92.25235874159262,91.33796592848375,91.49693163763732,91.5823165429756,91.85916377743706,92.31025069812313,91.76517192553729,91.44230223167688,91.45051637338474,90.66621210519224,91.44241574639454,92.42726603057235,92.16726016020402,91.27878081938252,91.40491334768012,92.10542246559635,92.8894344069995,92.98496462032199,92.74967124126852,93.53689882485196,93.77359940856695,94.4259144528769,95.15826365957037,94.38499580929056,94.89163340022787,94.72295741504058,94.1078274063766,93.75605772994459,92.94827781338245,92.90034685237333,92.77088435925543,93.27674946095794,94.1625315588899,94.69766136491671,95.5924821542576,96.41797997336835,95.7569656171836,95.5697779157199,95.82132714288309,95.44585293717682,95.77407937729731,96.72180078178644,95.88024386530742,95.07076862081885,94.7352963136509,94.74172689765692,95.01613453775644,94.30927831865847,95.14706381456926,94.79598192498088,94.75080144545063,95.28506448864937,95.77833093237132,95.03809734713286,95.14943429408595,95.09345595212653,94.13727583084255,94.39852094184607,94.73387599503621,94.61718590883538,93.68553308350965,93.28557569161057,92.97381424391642,92.3114527813159,91.94126913463697,92.71673280233517,92.0889583164826,92.90744511829689,93.53580839186907,93.93904528953135,93.76632619416341,93.85853240732104,94.26479513943195,93.72771744104102,93.93790131015703,93.61987059051171,92.76518164854497,93.66168184718117,93.91298582032323,94.4098071786575,93.65729945152998,94.21562955249101,93.8442886704579,94.2676083962433,93.28855859534815,92.56810245569795,91.84589953208342,91.18517125584185,91.9956883545965,91.96189173031598,91.49733897158876,92.22570550162345,91.91037283698097,91.36855303216726,92.346463738475,92.80338232917711,91.86596821201965,91.28014679951593,90.52014471124858,90.94567945646122,91.87028317572549,91.41756988829002,90.46692569181323,89.96123221050948,89.53730215365067,89.07898668339476,89.45826918724924,89.56801862781867,89.40581675712019,89.43315690150484,88.6023128000088,88.97107391431928,88.1797993639484,88.9822429032065,89.12250167550519,89.72311602160335,90.20133261848241,90.44923405721784,90.37412059446797,91.12560628075153,92.00289266509935,92.20778480218723,91.61052520480007,92.49322875449434,91.68529379693791,92.03888355055824,91.60395917342976,92.3985941009596,93.05160574056208,92.16587868146598,92.57389997551218,91.7420114595443,90.91431399900466,91.24465136276558,90.80048560909927,91.57116515003145,92.06495072133839,91.24359517591074,90.72316560940817,91.11111576482654,90.89798535313457,91.55926766432822,92.09892277559265,92.7503320146352,92.49273343291134,93.26107519725338,93.15611699875444,93.37081653345376,93.94568843347952,93.39650676352903,94.14500259328634,94.40632400428876,93.90267455298454,94.24329878715798,95.11578979855403,95.60679006297141,95.65011382941157,95.90730724669993,95.93498470028862,96.54181360593066,95.96908393595368,95.01416453020647,95.45377585431561,95.38898164080456,95.73800981137902,96.18388749472797,96.85123860649765,97.38678871048614,96.72832027310506,97.10375706572086,96.55390198389068,96.17405700637028,95.9464085153304,96.26899600401521,97.17867543175817,97.08445895183831,97.71477671246976,98.19708289392292,97.28583628311753,98.25194277567789,98.42331737978384,98.98056011088192,99.41299409093335,100.37416749121621,100.39969635987654,100.36134782154113,100.31629511574283,101.05034477449954,100.8553101150319,100.5718101626262,101.03015862777829,101.23851431393996,101.76513685565442,102.02578234206885,101.52523828158155,100.6550198472105,99.7571728238836,98.83184989262372,98.329773475416,98.96567917009816,98.32135220058262,98.7736339699477,99.51000834163278,100.04539973288774,100.89167532324791,101.65479097701609,101.36271797725931,100.42042933916673,101.39180749095976,101.75346770742908,101.89203231502324,101.05799866421148,101.14322274224833,101.66047687223181,102.37739758566022,101.68501189444214,101.77909109648317,102.55634657060727,102.88901531230658,102.12124562030658,101.78399353660643,102.68334585335106,101.7540163770318,101.44225948676467,100.87499649217352,101.09643029328436,102.02625645324588,101.68671952327713,102.58093485562131,102.1911527714692,103.12442717934027,103.38464114628732,104.16958226915449,104.20522308442742,104.5257265586406,104.19814250105992,103.9180819420144,104.0574988303706,103.07687186589465,103.64083058713004,104.41082502249628,103.48059549741447,103.44112043315545,104.3329621409066,105.26406543981284,106.23609381401911,106.22409645328298,106.47713365126401,106.20973459724337,105.7570390519686,106.75300134858117,106.63907366152853,107.37564921751618,107.74371473724023,108.02907239599153,107.16361048584804,106.51136758783832,105.92307419562712,106.68533651903272,105.7748654470779,106.51155546121299,107.19445648184046,107.77602301398292,107.72515181545168,108.13638254906982,109.10750312777236,108.68275090539828,107.78514309599996,107.50899422494695,106.9846738348715,107.0655568446964,107.32970673078671,107.8884184602648,107.62322012800723,107.66569609055296,107.88890229072422,107.50398671394214,108.36619651596993,107.97042207140476,107.096809851937,107.48859601048753,108.28650969453156,108.72319373488426,109.71170230163261,109.93022477207705,110.39769897144288,110.64110753405839,110.91863403096795,110.45662271929905,109.59110891027376,109.76421199226752,109.02367578120902,108.81026770127937,109.8030903195031,109.93561413092539,109.63906888617203,110.52093327371404,109.95930206542835,110.77410291042179,111.69504728494212,111.8665826707147,111.34902704507113,110.56709714233875,110.00766222225502,109.79894055519253,110.70634356932715,110.49577055685222,110.93297521909699,110.10849221562967,109.11311004357412,108.50563304359093,108.31544004566967,108.38584389584139,107.55998278548941,106.70908290240914,107.16438520234078,107.2461970592849,107.35417665122077,107.84879557602108,107.87703425250947,107.26925151096657,108.12209293851629,107.34728645393625,106.95615842053667,107.92515539424494,107.8617745488882,107.4938735878095,107.96368235209957,108.72476116195321,108.17954547796398,107.44033175287768,106.79827985726297,106.73520866595209,106.47260689176619,106.25531185325235,105.61852084705606,105.34575570840389,105.87049529282376,106.03440270386636,105.12636894732714,104.30597078846768,104.34794458700344,103.58989886706695,103.89972363878042,103.35714787151664,103.84058837359771,104.65001714555547,104.33421545429155,103.91629864834249,103.67665401985869,103.96952812187374,103.86871208250523,102.89261837862432,102.30935998307541,102.93194068456069,103.88009540876374,104.18725765869021,103.55764840776101,102.60637804260477,102.59168625343591,103.13237480027601,103.56517146108672,103.8436789624393,104.74030489800498,105.51943893311545,106.40786958672106,106.5295379338786,105.82173140719533,105.77124144043773,105.32457437226549,105.83786641666666,105.37335154460743,105.66050024563447,105.05150021193549,105.2323451563716,104.57487267907709,104.2341868034564,105.17493772367015,105.99235265376046,106.47202316531911,105.80807239888236,105.95523594738916,105.798941725865,105.04492877377197,105.6536771086976,104.91671593720093,105.63976227864623,106.24303815187886,106.61384376510978,105.69263285817578,106.55055454466492,107.48337289877236,108.41502764448524,109.39563097059727,109.50780607853085,108.56508732493967,108.59617892280221,107.69399224268273,108.4047202304937,108.74157971097156,108.05509275291115,107.85413669189438,108.25682952115312,108.49266660958529,108.36060725338757,108.3700558077544,108.943720002193,109.43611097196117,109.25715873762965,108.28520150622353,108.40529151679948,108.31872871471569,107.61617463687435,106.62960791308433,105.74413224961609,104.79878753004596,105.09614477539435,104.42336661648005,105.32556925434619,104.46324049076065,104.11690281378105,103.94345178687945,103.72103739203885,103.26148834777996,103.13465662999079,103.63599407020956,102.69912715023383,102.56001427071169,102.69551387242973,102.77071133675054,103.74367848178372,104.67735930765048,104.95552155561745,105.41661451011896,104.54099609702826,105.3569741086103,104.91812388505787,104.27401100285351,103.77598769823089,102.90447653876618,103.53599713090807,103.4999947277829,103.8682093275711,102.88643614808097,102.82748930668458,102.70062234532088,102.40369631908834,101.51778498059139,101.97474267845973,102.410831019748,103.00071658892557,102.74220239324495,103.6732112527825,104.07767971092835,103.67309778230265,103.2095409790054,102.99929896881804,102.93859085999429,103.47301495121792,103.71208847267553,103.67650990281254,103.16039110301062,102.61903591826558,102.49472783599049,102.49873201083392,102.67915656929836,101.73666778253391,101.49819119088352,101.98913708236068,102.29236171627417,103.1761224605143,103.24154502665624,103.89552973816171,103.45516030257568,103.698972589802,104.39582440629601,103.67781501915306,103.83067562617362,103.9748980072327,103.39544795267284,102.78428168548271,102.70689377654344,102.46219531586394,102.35518846940249,103.29401373956352,103.60026281699538,103.80949499411508,102.84236619481817,101.9709503017366,102.92154021654278,102.45746481604874,102.42725001461804,101.80151070281863,102.5450293510221,102.3479510168545,101.49519568029791,100.9107512794435,100.43584451638162,100.4875959311612,99.6840587942861,99.45653618685901,100.38488166686147,99.4406112213619,98.52683063177392,99.4966831044294,98.73915543872863,99.41525088064373,100.36045608948916,100.94679268961772,100.53671388421208,99.73839583620429,100.13614569697529,101.07586372783408,100.93415986699983,100.61227597203106,101.2660358757712,101.41329984040931,102.05005773669109,101.86826661741361,101.03528436971828,100.82052584271878,101.77625244576484,101.21397264162078,100.55126638244838,101.14032397978008,102.01910633593798,102.63635850837454,103.11884219385684,103.74676579236984,102.9322820212692,102.67935622436926,101.84873153502122,102.3582529691048,102.05238622287288,102.19498661719263,102.27352781267837,102.68568638013676,102.15223917132244,102.58574547851458,102.96584435552359,102.87889844505116,102.68174126790836,102.30514323152602,102.59955849125981,102.08363806735724,102.49996222509071,101.6639316608198,102.19381268136203,102.25296797556803,102.49765371112153,101.89691720670089,101.89576385030523,102.51447238633409,102.91844334593043,103.51275614509359,104.00757667375728,103.01263488875702,103.08828371297568,103.76526004867628,104.69108262564987,104.07164902845398,104.63527061510831,103.68390471301973,103.39381549879909,103.82111459318548,103.17067999625579,102.98430371284485,102.65056293830276,101.96942458534613,102.40139350155368,101.50517965015024,101.34324895450845,101.14248540857807,101.20715556945652,101.88519667740911,102.88056962098926,102.10490706283599,102.86618260806426,103.39258992113173,103.40982892923057,103.66314409906045,104.65499777067453,103.80209796410054,103.61997261317447,103.1957956571132,102.90004699630663,102.47061338275671,101.81768552027643,102.63355318130925,103.56278954166919,104.41305785765871,105.33705652831122,104.41921808384359,103.86313311289996,104.67135625518858,103.78249742882326,103.01700775744393,102.81900815945119,103.62579920096323,102.74302399205044,103.07919098250568,102.10661938088015,101.87391298031434,101.85914746671915,102.76489888457581,103.31707713007927,103.91104292590171,103.40834898361936,103.98605592176318,103.38941509323195,102.57233879342675,102.51371208205819,103.23373525962234,103.68838495668024,104.37219018023461,105.01999647682533,105.96540628373623,105.30229984596372,106.30179766053334,105.55133773945272,105.21171489730477,104.94391715666279,104.92651834432036,104.01081049023196,104.88856592355296,105.06637887842953,104.53193669160828,104.23230426944792,105.1112824534066,106.03164355549961,106.03066447423771,106.82793463161215,107.80780453141779,107.85950342053548,107.89824081165716,108.32406718237326,108.56175986584276,109.11740042967722,108.91926029929891,109.30963498540223,110.17772288806736,110.89241770794615,110.80117426300421,110.25576100079343,111.24912968697026,110.67761239549145,110.30780614772812,111.27577798487619,111.94931760337204,111.73475202638656,112.39134066225961,112.12056367937475,112.51725809695199,113.04281372204423,112.07973603531718,112.68950548302382,112.96962313866243,112.84600887447596,113.7920503267087,112.89610453741625,113.23140874505043,112.27084052050486,111.57471703272313,112.18301505269483,111.34926217142493,111.98269018949941,111.13721475657076,110.17700541438535,110.67263251170516,110.06406706757843,110.35646220110357,110.56450079195201,111.18138772528619,112.14758629538119,112.43767051491886,113.25599768664688,112.26548308553174,111.67463844129816,112.57050972850993,113.27984335133806,113.39871055819094,113.64584026252851,112.91316476976499,113.37886957172304,112.4822946600616,112.36133091291413,111.4421059852466,111.03342913324013,111.58633601944894,111.52669963706285,112.13050172710791,111.86142529547215,112.25878936285153,111.52169325901195,111.50479497434571,110.54058279842138,110.43468894204125,110.55463614687324,111.3025198476389,110.60706427227706,109.81043287459761,110.70016789576039,110.49904961325228,110.17253817524761,110.6228112000972,111.32880000164732,111.8610906098038,110.89109538774937,110.83507579797879,111.50109537877142,111.77790877688676,112.00242313742638,112.54451611312106,113.01904377294704,113.281402526889,113.44383819215,113.6380986100994,114.29335992923006,114.639612859115,114.32336358167231,114.53149123070762,115.08063113084063,114.55265265377238,113.81072776811197,112.89113176753744,113.30547430925071,112.78679518029094,111.87168059917167,112.08929711626843,111.2362115746364,110.91928507061675,110.19534953776747,109.75743384798989,109.12003371259198,108.30268469825387,109.10968399979174,109.91119617875665,109.61627346975729,109.2556356023997,109.51711236033589,108.90582620026544,108.55189759330824,108.92337957024574,109.67396539123729,108.72738641407341,108.81720654061064,109.67138771805912,109.57738830335438,109.86636740155518,109.32855529012159,109.46381836337969,108.85055937385187,108.92312136013061,109.561640183907,109.96050952328369,109.69673210987821,109.53754871198907,109.37291226536036,110.3235816732049,110.71662936080247,110.27010089019313,111.05199035210535,111.56254392163828,112.52017342345789,112.6139261489734,112.73204104136676,113.423402516637,113.56149398256093,114.19741429295391,113.44317117147148,114.19677910022438,114.50653690006584,114.538272685837,114.97736968565732,115.17134369257838,115.75361351203173,115.23501520743594,114.71637038234621,114.83122450113297,115.08272073464468,114.60907018603757,115.2948674983345,115.67153401160613,115.04561067186296,114.54994908859953,114.99844700004905,114.76334376679733,113.77261746814474,113.63972713565454,114.42070594802499,113.61805670149624,113.57061594491825,114.02657656930387,114.82974025420845,115.73908066749573,115.80296698212624,116.12891204981133,116.38796260254458,116.40727887582034,115.52621579961851,116.17449005646631,117.07669819053262,117.35162688512355,116.73988519934937,116.62124672345817,116.61172456853092,116.83545678155497,116.93230788176879,117.46518564457074,116.62898005079478,116.45460435980931,115.54146821424365,116.10820082714781,116.14012322295457,115.43344114068896,116.24920785427094,115.67671144660562,115.09229833446443,114.7634865748696,115.34295235620812,116.1985724773258,115.96033025719225,116.37144575081766,115.77695957478136,116.37787934718654,117.17241297289729,116.7423877469264,117.5855676876381,118.33994001429528,117.55970168160275,118.10063049383461,117.8358047651127,117.7091664923355,117.6355215292424,116.79981641145423,116.42270380631089,115.9619978684932,115.88671398023143,114.9249656344764,115.74571406794712,116.36062223557383,115.96191957779229,115.21122533315793,114.48641404602677,114.64135890128091,113.91097685322165,113.48763861088082,112.7272821473889,113.19226464815438,112.94834744185209,112.29977886378765,113.05828748829663,112.28536483505741,111.48625585483387,112.20021500810981,112.43569181021303,112.48323242692277,112.50390898901969,113.03248460125178,113.6188588202931,113.15156372310594,113.8450045385398,113.84852028870955,114.82367177726701,114.425041585695,114.99830640014261,115.13578798482195,114.61679987423122,115.06748167425394,114.31773034390062,114.02815868984908,113.10487909475341,113.04569855518639,112.7667461517267,112.3253437303938,112.041425190866,111.33209789032117,110.36737902602181,111.29184203827754,111.27922050980851,111.6146195763722,110.95788712985814,111.26906895032153,111.01377302315086,110.56084340112284,110.70496054925025,110.18314801109955,109.37445263192058,108.54392588557675,107.61807125713676,106.70285423193127,106.80148978624493,106.31827355828136,106.56360202562064,105.83925988059491,106.37186474492773,105.66915646567941,105.26444288389757,105.68549876846373,104.84053281508386,104.97862944705412,104.71069607138634,104.75528174545616,104.36989893531427,104.24664854770526,104.14188713440672,104.15696573350579,104.34143586130813,103.80588233284652,104.09137903526425,104.58303110394627,104.14273717068136,103.51687017595395,102.77326076710597,103.25653878366575,102.60053766705096,103.55899481894448,104.25849821278825,103.87572526093572,104.30326576065272,104.25372289959341,103.50816213572398,103.9538988918066,103.35891584400088,103.4623174900189,103.74887941591442,103.10522555653006,103.5495003447868,102.67677390016615,103.28501494275406,103.65691823605448,103.62096150638536,102.91320913983509,102.50466173188761,102.89834518218413,102.38723613414913,102.24788753315806,102.57159313932061,102.63360347412527,102.45549591910094,101.87156218662858,101.22878463473171,101.9009720152244,102.2008967641741,102.378130689729,102.78520108759403,101.93122099526227,102.4733428680338,102.14724102336913,102.84356976533309,103.24434560723603,102.676670873072,102.30810879962519,102.3046990511939,101.54080510186031,101.26705581508577,101.77737177582458,100.96198810450733,100.89286187849939,101.20369413448498,100.6949055204168,101.53062105225399,100.91729141771793,101.65264166612178,100.78525963844731,101.11809484427795,101.13772106776014,100.46012031240389,99.59437606716529,99.68665032088757,99.49104922544211,99.29083268437535,99.79359900346026,100.5744736851193,99.61359988432378,99.51378829963505,99.97654573014006,100.36006198497489,100.18646574858576,100.11077783396468,99.13946383586153,98.98295734170824,99.33794743707404,99.7381052696146,99.89310161955655,100.04779390851036,99.66733798151836,98.69559222320095,99.53331654518843,99.9295757082291,100.06290260516107,100.87641287455335,100.68601492466405,99.71827392512932,100.54097403306514,100.36781241837889,101.1046417732723,101.05444311304018,101.86756817763671,101.69723919872195,102.48263428313658,103.38804728956893,103.97416858002543,103.63326721033081,103.94871115824208,103.40339746233076,103.21296989219263,103.67290029861033,104.12757053831592,104.5389719447121,104.4526697602123,105.15067800274119,104.36510081775486,103.82285106973723,102.96059917192906,102.31104161357507,101.76350802695379,102.23917985986918,101.3242997918278,101.24498312734067,102.09715900663286,102.83176454110071,102.95612398767844,102.72364092245698,102.30072747264057,103.15506965573877,103.53728082729504,103.53483973024413,104.324544491712,105.1014291672036,104.26568617299199,104.63615589216352,105.25602693064138,105.2347037116997,104.57232071040198,104.31238461239263,105.27351602679119,106.07419577799737,105.9450603579171,106.43459073081613,105.65584401134402,106.40995477465913,106.05914910836145,106.6939556710422,106.7240592027083,106.35305577563122,106.55237913876772,106.03095334023237,105.93532132310793,105.83299495419487,106.50594599405304,106.58692996902391,106.5150750670582,107.32162636891007,107.12835939135402,107.40823561046273,107.40610262285918,107.76042422000319,107.90631685359403,107.62292498862371,107.88309497246519,107.47324344189838,106.78915034094825,106.00497686350718,106.11726812506095,106.27134943939745,106.43642907263711,106.38193760905415,106.96450895257294,107.2156260679476,107.56706706667319,107.56492951512337,107.01557553000748,106.80219305912033,106.30227919016033,105.40524871833622,104.78273488627747,105.25297120213509,105.89524092758074,105.63429283816367,104.79081719415262,105.19156100228429,104.98557633627206,104.55332243116572,103.88541371235624,104.81354236975312,104.3314281613566,103.35205381456763,104.12775232316926,104.54255497641861,105.5026127290912,105.64355001086369,106.25091610383242,106.72473610145971,106.5561918085441,106.8354246285744,106.09550589742139,105.9814736819826,106.75400356482714,107.32289597112685,107.93947975803167,108.81882895203307,107.93626958085224,107.07569252420217,106.20493488339707,105.38095624139532,105.1573918252252,105.6289636339061,104.79424877930433,104.2755507491529,104.1831183633767,103.29553365055472,104.14483807515353,103.90405575465411,103.52751069888473,102.77066281205043,102.75981957325712,102.09390277322382,101.34946025302634,100.89909544726834,99.91177196893841,99.68670963356271,98.71419697953388,99.1451198849827,99.24436976294965,100.00441167782992,100.01397470803931,99.55359967332333,98.99726193863899,98.58709659660235,98.91642747633159,99.25581940915436,99.53207037085667,99.97490512160584,99.96321553736925,100.13296348508447,100.82615702599287,100.36528381379321,100.48041907744482,99.56664142105728,99.16702210018411,99.48817709321156,99.55818133568391,99.10943037550896,98.98627547733486,98.77460849098861,98.91674513183534,99.18696243688464,98.21554696001112,97.90035751927644,97.99134255805984,97.45511656580493,96.7326080929488,96.80819743778557,96.24814925156534,96.40568857640028,96.24220689246431,96.09416732564569,97.03636134462431,96.14600330265239,95.2029206668958,95.41211010050029,95.8229628810659,96.23919858923182,96.08907842822373,95.97198344301432,95.18792205257341,94.67930376389995,94.52429609978572,94.04333232110366,94.73163955193013,95.56474506156519,96.25888859527186,96.24213085090742,97.03431130899116,96.16819504695013,96.79974807146937,97.61045525269583,98.19804788939655,99.00743232946843,98.19563986128196,98.74412308912724,98.97819324908778,98.01419759122655,98.21693304879591,98.35608163708821,97.3929697284475,96.68779019312933,96.43281721742824,95.74515730747953,94.84537813812494,94.85171875171363,95.31167749688029,95.08824124420062,95.69574832683429,95.08252899395302,94.1555812805891,93.58789182268083,93.04166119545698,93.78048899117857,92.9599949750118,92.79959912318736,92.52354843961075,91.98250771453604,92.87813857616857,92.70722535299137,92.46078110300004,91.85460849339142,92.75061909202486,93.0648965346627,93.03042501583695,93.27062961366028,93.21161103155464,92.86809149291366,93.15453430917114,93.60239135380834,93.73675554292277,93.72652162611485,93.18656594026834,92.41988306632265,92.8189431047067,93.27169316355139,92.37937789037824,93.00458221603185,92.22729325527325,91.5616776146926,91.35388409346342,91.06625222694129,91.487897163257,90.52646248182282,90.81100787129253,90.60096633061767,91.38694793730974,92.09990346850827,92.21572000766173,93.09188595833257,92.72894491488114,92.03325081802905,91.67436157306656,91.9164704256691,92.481693983078,92.61030109645799,92.17421809211373,92.59830217249691,92.57371934037656,93.55692731682211,93.83550907066092,93.35752640338615,93.00505373021588,93.24091780139133,93.53069580253214,93.99965170957148,94.90121181076393,94.14463805407286,93.67482707137242,93.29564698599279,93.7314078505151,93.5356715368107,92.88685441529378,92.29286792315543,92.6161485221237,93.03099386999384,92.26429222384468,91.38364644953981,90.48871717927977,91.22135335113853,90.8244244181551,91.04961948655546,91.25804794533178,90.91005642758682,91.20083149941638,90.40007943008095,90.23233206244186,89.96631017699838,89.38742772489786,89.53520493814722,88.9992291838862,89.38431024830788,89.69473199965432,88.92992666829377,89.73444083845243,90.02008237782866,89.13260095566511,88.63828759966418,88.19699229998514,87.85262190224603,88.32114170445129,89.25829333160073,89.03582882555202,89.21650186413899,89.99548250250518,89.82074388302863,89.86518740234897,90.5603647492826,90.89466001372784,90.39446820132434,91.11490369588137,91.54650518391281,91.1573394597508,90.49851883295923,89.83718962781131,90.68090712744743,90.95079303113744,90.52898927824572,90.41998162213713,91.40746849449351,90.72901877714321,90.02806116221473,90.20927128521726,90.24854454444721,90.18779257452115,89.69521072413772,89.95739330491051,89.53580187400803,90.42818276863545,91.16868305020034,90.20054015982896,90.20953908609226,90.081111011561,89.52181964367628,89.06163019221276,90.01903289975598,89.71228519501165,90.26398195140064,90.05958477826789,89.77816354250535,90.09489960549399,90.2636501728557,91.14949017670006,90.32399388588965,91.04904461745173,91.78006235929206,90.86333998292685,90.21751412609592,90.76065159961581,90.61770457029343,90.38410121947527,89.51931790960953,89.71848839474842,90.07617128267884,90.8018206502311,90.74971634335816,89.86187188979238,88.90777561394498,88.91963318828493,89.50848021917045,88.52040713047609,88.34356246795505,88.90433065826073,89.36728226067498,90.28697314625606,89.46754534821957,89.06262094248086,88.9613778423518,88.33445481956005,88.73144829738885,89.49107221886516,88.73838672740385,87.97431346122175,87.73660864681005,87.17995574930683,87.10094790905714,87.99058949295431,88.42554433085024,87.80194718390703,87.77838708413765,88.46063083317131,87.7176414784044,86.89539022184908,87.55568043841049,88.54953202232718,88.99626968055964,89.56208797823638,88.76238318858668,87.95221635652706,87.45445335377008,87.52967466274276,86.57947315787897,87.17405582219362,86.97948475088924,86.89183773426339,86.323123565875,85.98528462043032,86.13473898312077,86.60164090199396,85.79504504101351,84.94348830822855,84.27311140671372,83.41298121167347,83.15664458693936,83.60464203264564,82.90820542210713,82.77943758293986,82.88535017520189,82.81733759306371,83.54748012451455,84.12390355253592,83.31773465126753,84.17840107250959,84.37935576075688,83.67590563511476,84.65200297813863,83.78784417919815,84.26389142777771,84.56220025243238,83.9296996886842,84.59323964593932,84.57087387656793,84.82124584633857,85.20384583156556,85.57115009287372,84.79966065613553,85.18393143732101,85.60200962238014,86.40168091282248,86.19346198113635,87.18880482949317,87.84064285038039,88.38349531730637,88.95045247441158,89.66140669211745,90.2831339398399,90.11665935767815,90.42683089431375,90.8049934017472,91.20872578583658,90.59803901938722,90.09217063197866,91.08211924182251,91.39819280430675,90.81250883778557,91.22817983897403,91.64759151823819,91.14255967363715,92.04765494680032,92.03216348728165,92.49549843743443,91.71056051179767,90.99014731124043,90.88638571184129,91.760346443858,91.96300939610228,92.67076795967296,92.5373675795272,92.75949015421793,92.73609910858795,92.62945048743859,92.3169240639545,91.63178324280307,91.20750021515414,90.72395693138242,89.94224552763626,89.35897312313318,89.77345766639337,88.80341679183766,88.63015649979934,88.82787998905405,89.43379760952666,89.6136480155401,90.3092776988633,90.51908347709104,90.83104624599218,90.11700803088024,89.57771297637373,89.28861096128821,88.4408695390448,87.83548038313165,88.48808765225112,88.77626437367871,87.86737384647131,88.64694634173065,89.55045495461673,89.92682365467772,90.14019158296287,90.71714923065156,89.98735416680574,89.97009170614183,90.1899716691114,89.59115767944604,89.48348434595391,89.515090060886,89.16496771993116,90.13494168315083,90.97166466433555,90.39089103089646,90.93819608353078,90.34818739118055,89.53312134789303,90.15051181614399,90.67615765659139],"z":[-64.57135799434036,-64.29119798261672,-63.99895649636164,-64.2611228954047,-64.20200686203316,-63.53073596954346,-62.94501561531797,-62.236280803103,-61.77116664266214,-62.0479211518541,-61.62162333261222,-61.57917685993016,-62.550367071758956,-63.102865147870034,-63.51901940815151,-63.80565554043278,-64.20247329771519,-63.45258613117039,-62.97109884489328,-63.72474437626079,-63.01080201473087,-62.599554664921016,-61.8390626674518,-61.76283882558346,-62.39461039705202,-61.57645597681403,-61.391172021627426,-60.84211807278916,-60.20686056977138,-59.67505927570164,-59.78192747710273,-59.42727438407019,-59.97775778872892,-60.54800130845979,-59.93671065289527,-60.236457066610456,-60.40321126021445,-60.6573569085449,-60.92993450444192,-61.3085553473793,-60.57963507017121,-60.32194422185421,-59.58061773143709,-60.34479671204463,-60.10386203229427,-60.72292080614716,-60.894933274481446,-61.16105191409588,-61.11071749124676,-60.13063554512337,-60.62955624656752,-59.73914691293612,-59.44384802272543,-59.83171259937808,-60.785442269872874,-59.82893598685041,-60.64641758566722,-60.372555159498006,-60.498987435828894,-60.92671847436577,-59.98809482809156,-60.07865437073633,-59.80467321211472,-60.14917767280713,-60.757767965551466,-60.58855766477063,-60.2618956505321,-60.65752733498812,-61.03415334923193,-60.62990789115429,-60.08478147536516,-59.380524137523025,-59.03300238260999,-58.24602536763996,-59.0803430583328,-58.184588393662125,-58.24466079613194,-57.39890385605395,-56.49529166473076,-57.1954013928771,-57.462076963391155,-56.657411091029644,-57.52358576655388,-56.59196591749787,-57.516721199732274,-57.72564366273582,-57.265379874035716,-56.59663404850289,-57.39455885300413,-56.438948897179216,-56.28870020573959,-56.58986390568316,-56.66101616853848,-56.762959172949195,-57.62497531576082,-57.80035368911922,-58.49650053679943,-59.40660473750904,-59.060534263029695,-59.96528475545347,-58.99953472567722,-59.81712744105607,-59.0817603264004,-59.165082276798785,-60.14330041594803,-60.60129700927064,-60.74942914722487,-60.97118749283254,-61.062125546857715,-60.084692385513335,-60.66317024314776,-60.98903670813888,-61.37195438146591,-60.43953981483355,-59.5900868633762,-59.45258061494678,-60.3762199645862,-60.57613719906658,-59.636278027202934,-59.17118760244921,-59.11745201377198,-59.18578592967242,-59.85908497637138,-59.77858170354739,-59.9113878775388,-60.74092278536409,-61.730805387720466,-62.52500797668472,-62.209692446980625,-61.45206291414797,-60.6070469468832,-60.292778519913554,-59.52559288870543,-60.04514836380258,-59.967165370006114,-59.524767212569714,-59.03252296242863,-59.46467037498951,-58.81394962454215,-59.550390325021,-59.145532737951726,-59.61565550882369,-60.01491689309478,-60.26043126638979,-60.51191960880533,-60.342272594571114,-60.95765478629619,-60.05863140197471,-59.83889195509255,-60.31343431817368,-61.242272078990936,-60.7028717729263,-60.58323362655938,-61.50118539202958,-60.89483866794035,-61.591455089859664,-60.88400414865464,-61.776309789624065,-61.71171942492947,-62.06427506869659,-61.60778890736401,-61.133653700817376,-62.11803381238133,-61.947618186008185,-61.83248541643843,-61.10938198585063,-60.7535834913142,-61.4481417555362,-60.814010532572865,-60.81407229742035,-60.33540156716481,-59.866438512690365,-59.14080394431949,-58.82241610670462,-59.34406202612445,-59.388457355089486,-60.3051444273442,-61.12704114522785,-60.19081301614642,-60.407904009800404,-59.504056027624756,-58.909387656953186,-59.75779425818473,-59.16109127411619,-58.244546932168305,-58.38611507136375,-57.64245661627501,-57.254392814356834,-58.101565526332706,-58.062341457698494,-59.017968009226024,-59.873676244169474,-60.692064858507365,-60.65439202217385,-60.944446076173335,-61.28037031646818,-60.5117902723141,-60.83547928137705,-61.77203311724588,-60.97493166755885,-60.65902720950544,-59.93936563143507,-59.73129017744213,-59.252695926930755,-58.937414148356766,-59.18554790923372,-59.60899203782901,-59.28411494521424,-58.7084071370773,-58.016558134928346,-58.793237290810794,-57.86966163665056,-57.36750871455297,-56.462578255683184,-56.606077425181866,-56.593031730968505,-55.86074860114604,-56.56703219469637,-57.48899224540219,-58.11368591384962,-58.84558828175068,-58.748730461578816,-58.399719511158764,-57.49222275102511,-57.373909750021994,-56.90970462746918,-57.211010456085205,-57.38669164152816,-57.19096845155582,-58.171728692017496,-59.10766155458987,-59.85467003984377,-60.74127316009253,-60.82261521462351,-61.01201266050339,-60.45102581754327,-61.03123738896102,-61.627927880734205,-62.05097670154646,-62.067208788823336,-62.2895363997668,-62.711089573800564,-61.89936565235257,-61.69041485665366,-62.57939841179177,-63.541330442298204,-63.523990952409804,-63.346384179312736,-62.80267823766917,-63.08841550024226,-62.95744858076796,-63.69693273957819,-64.56374755268916,-64.99292238196358,-64.19120185030624,-64.1788629614748,-63.671434125863016,-62.70603287918493,-62.924849088769406,-63.749056523665786,-63.070951918605715,-62.1478334646672,-61.89194889226928,-62.83886273019016,-63.07054084632546,-62.32242069719359,-62.156605168711394,-62.10387973068282,-61.9438399435021,-61.817347838077694,-62.61257556034252,-61.776040545199066,-62.66989450948313,-63.15879586338997,-63.10542887356132,-63.55242276657373,-63.699762783478945,-63.499477637931705,-62.70065577933565,-63.0428948039189,-62.445941001642495,-62.93863925989717,-62.68185147410259,-62.00333139207214,-61.945847761351615,-62.38419726816937,-61.90327392471954,-62.201370862312615,-61.34621129045263,-61.055682465899736,-60.91647967835888,-61.21601015282795,-60.53897729096934,-61.20010966947302,-61.16172102140263,-61.64876303169876,-61.289620062336326,-60.39089629612863,-60.88219003845006,-60.04889830481261,-60.75796597218141,-60.24373025121167,-59.38923071185127,-60.358777321875095,-60.38163142930716,-60.06938699213788,-60.5451455428265,-61.175735760014504,-61.613002829253674,-61.47312330408022,-60.49137465422973,-61.32884661341086,-61.35158761637285,-62.01265299739316,-62.63367924420163,-62.71174982981756,-62.857153510674834,-63.123802677262574,-62.55444417567924,-61.80580163327977,-61.906646746210754,-60.969744271133095,-60.203213720116764,-59.39615914458409,-59.287416407838464,-59.461910928599536,-59.482447835151106,-60.46650689141825,-59.908676359802485,-60.64114446379244,-59.94175959099084,-60.42313706036657,-59.704128050711006,-59.61618731869385,-59.33165265992284,-59.78404282359406,-59.369032909628004,-60.342035070061684,-60.510061455890536,-59.59216020721942,-60.08075712900609,-59.80017793737352,-60.26067987177521,-60.88370515871793,-61.67283938918263,-61.49900758033618,-60.76221289392561,-59.837089399341494,-60.50467854132876,-59.93889590073377,-58.96602606913075,-59.42998370435089,-58.99358215555549,-59.10927851265296,-59.583871432580054,-59.051599447615445,-59.301744842901826,-58.354245179798454,-57.75226060207933,-57.28447257634252,-56.56668590242043,-56.36823591822758,-56.84561784984544,-57.637578127905726,-56.93594804732129,-57.568174961954355,-58.34367342479527,-58.45333975413814,-58.17829551175237,-57.548513596411794,-57.950784725137055,-58.95048416731879,-59.43895491492003,-59.51823883038014,-59.12802923144773,-58.76920809969306,-59.49387001246214,-60.144407803658396,-59.88268278166652,-60.08601848920807,-60.76938976254314,-60.90206850320101,-61.523842215538025,-61.228536726441234,-62.16017462220043,-62.12636221246794,-62.83193350303918,-62.9173678890802,-62.81727949529886,-62.13529448118061,-63.02679891465232,-63.86581229418516,-63.02645774651319,-62.9250179938972,-63.41434317547828,-63.255232921335846,-63.6725786132738,-62.869252593722194,-62.825893744360656,-62.414755129721016,-63.197182996198535,-63.26330321049318,-63.00048383604735,-62.91680949926376,-62.37758750887588,-61.83901668014005,-62.5317582860589,-62.562850571703166,-62.08966631023213,-61.64033368136734,-62.63808849360794,-62.62808909919113,-61.83133713901043,-60.915906223934144,-61.24137324653566,-60.92539103422314,-61.40089684771374,-60.82727197883651,-60.63587799156085,-59.854688798077404,-60.53477208642289,-60.18879564572126,-59.55439143581316,-60.21769661270082,-60.965964851900935,-60.73357729287818,-60.47661622008309,-60.3401186959818,-59.73770098993555,-60.20610571280122,-60.65067942254245,-60.43336852127686,-60.330024471040815,-59.806822810322046,-59.596515289507806,-60.57094515487552,-61.00531003810465,-61.47737152595073,-62.06371295126155,-61.55783171206713,-61.4430530006066,-60.81960454117507,-60.252645012456924,-60.761226766277105,-60.26714682998136,-60.89850546512753,-60.19912543380633,-59.766558590810746,-59.74915826506913,-60.58201140956953,-60.62715797685087,-60.25993047049269,-60.306963104754686,-61.26118746493012,-60.53197629284114,-60.15165533311665,-60.60367254400626,-61.02192632853985,-61.81283797742799,-60.95867984369397,-60.301089476794004,-59.98355896072462,-60.450982372276485,-59.996204004622996,-59.86328058550134,-59.34482759190723,-59.750838064588606,-60.04037100216374,-60.87423619022593,-60.06424661865458,-59.80862818006426,-60.38121293857694,-61.053797074593604,-61.82377051375806,-61.30894951894879,-60.83011307846755,-61.45966367889196,-61.58503837324679,-60.99414740642533,-61.719788484741,-62.050389998592436,-61.822728945408016,-61.43846967397258,-60.60565937217325,-60.65434288466349,-61.618418460246176,-62.19072477333248,-61.997610486578196,-62.16049600671977,-61.38310264982283,-61.55140071362257,-61.555179154500365,-62.32264492660761,-61.65512295952067,-61.46257599303499,-61.75356887700036,-61.42405319260433,-62.1576635222882,-62.852284350432456,-62.43456434318796,-62.74649790721014,-62.1457436545752,-62.31471484573558,-61.48390156729147,-61.97752007236704,-61.72805025195703,-62.12907586293295,-62.53071352560073,-62.88987602153793,-63.83537655277178,-64.3160060159862,-64.3320461534895,-65.14812579052523,-65.53852522978559,-65.83040826860815,-66.29965535318479,-65.8357078563422,-66.61943477159366,-66.61008543055505,-66.40741226542741,-66.39037773478776,-66.74517195485532,-67.10157129820436,-67.45248677581549,-66.85071172378957,-67.7378177489154,-67.50984678184614,-67.72997725661844,-68.3355809468776,-68.76929259859025,-68.65104430820793,-67.89688299689442,-67.8232878674753,-67.29173820558935,-66.30715322960168,-65.76900922413915,-65.82583887502551,-66.43962759245187,-66.3740622443147,-65.94472875026986,-66.89373746979982,-66.38784936163574,-65.39303166931495,-64.72335067810491,-64.81353317992762,-64.59321755869314,-63.6244554342702,-64.61107194051147,-65.1218603393063,-64.9518523523584,-64.89108490757644,-64.1624445123598,-64.02900629444048,-63.08759313914925,-63.60520970867947,-64.54103937977925,-63.88072936888784,-64.50048121763393,-65.00994585081935,-65.07700984599069,-64.32136803306639,-64.2180202412419,-64.6154318251647,-64.69666422950104,-63.89626289671287,-62.97599228704348,-63.15055934805423,-63.20654248679057,-63.602224530186504,-63.16259243525565,-62.734950826037675,-61.83589378418401,-61.64369493722916,-61.493350070901215,-61.932320337276906,-62.01096908841282,-62.91112104291096,-63.515735652297735,-63.67175886593759,-63.533979401923716,-64.29112380649894,-63.602939067874104,-63.73986401548609,-63.06970569724217,-62.286951107904315,-62.65948118688539,-63.60620391415432,-64.10861018113792,-64.02085993112996,-63.25195273011923,-62.81320000020787,-62.080282382667065,-61.73940798593685,-60.82047355733812,-60.20471810596064,-60.7005438641645,-61.27454771660268,-60.804762177634984,-61.114634797442704,-62.005869624670595,-62.411444374825805,-63.299353492911905,-64.109040832147,-64.7647151267156,-64.45947867073119,-65.08863549819216,-64.41170329181477,-63.78233152907342,-64.37243795348331,-64.96363949775696,-65.60955957742408,-64.77111216494814,-65.35395891638473,-65.85272996593267,-65.50263531459495,-65.70503352722153,-65.72868809103966,-65.31345104333013,-64.67272194288671,-64.3378766165115,-65.27871660888195,-64.35220222035423,-63.73790856031701,-63.79062322201207,-63.812808516900986,-64.7378224413842,-64.42545474506915,-64.62146339332685,-65.35519887460396,-64.89599115820602,-64.32670130394399,-63.9205327546224,-63.794122559949756,-62.946617615409195,-63.51781579712406,-63.15486291795969,-64.05423201806843,-64.76703134225681,-65.32555497530848,-65.6593825398013,-64.85134441079572,-65.65847337292507,-64.735844402574,-63.758922525681555,-63.822160749230534,-64.17483501136303,-64.6568384906277,-65.3283392121084,-64.74163980968297,-65.20221709506586,-65.97512521315366,-66.61626799264923,-67.54626913974062,-67.88239689497277,-68.74743336532265,-67.89731338154525,-68.38694682857022,-67.40934833930805,-67.6421495587565,-66.99486436601728,-66.07127194432542,-66.07813118537888,-66.14503041608259,-65.48938438110054,-65.81230028346181,-65.41895107552409,-64.87631238810718,-64.02343058632687,-63.59781836019829,-63.118230355437845,-62.52269748412073,-61.65418505249545,-62.163501519709826,-61.21881026774645,-60.24533005012199,-61.189589822199196,-60.508074812125415,-60.418750836048275,-59.50912263803184,-59.03522510873154,-60.024223445914686,-60.3371178843081,-61.215152830816805,-61.97954247845337,-62.0963846645318,-61.223560554906726,-61.88163948291913,-62.54084849031642,-62.436853318009526,-62.69851030083373,-63.45491135446355,-64.34411096572876,-64.82813597703353,-64.99403968406841,-65.64424825552851,-66.3299401467666,-65.73023733310401,-65.15536807756871,-64.91462264349684,-64.1086145634763,-63.1472162688151,-62.5355883827433,-62.01158534409478,-61.82504462543875,-61.990094643086195,-61.134736593812704,-61.8100137184374,-61.78483008919284,-62.056566796731204,-62.91554588498548,-63.31738265743479,-64.25401760358363,-64.04129214445129,-63.08838030230254,-63.52896605292335,-62.95693430304527,-63.186463881284,-64.0662462185137,-64.28169700317085,-63.28469856036827,-63.415907226037234,-63.00474843848497,-62.15932871727273,-61.25260185170919,-61.47372755082324,-60.74503270117566,-60.46117104636505,-60.34611471649259,-60.84400664828718,-60.241022853180766,-59.429878015071154,-59.12033593887463,-59.11433489108458,-59.484032440464944,-60.38767051883042,-60.505306273233145,-60.26126003405079,-61.1017379052937,-60.50423082942143,-61.44717138027772,-61.670509613119066,-62.42645994247869,-63.293574747629464,-63.12977247918025,-63.25924242148176,-64.20028914231807,-63.267083432525396,-63.18264110619202,-63.08242092002183,-62.211596216540784,-61.6506422017701,-60.84748371876776,-61.05438290350139,-61.43837087741122,-61.06164447730407,-60.236841027624905,-59.56194353988394,-59.95090361032635,-60.17275347746909,-60.2830294421874,-60.57640754478052,-60.45213402342051,-60.71224945783615,-61.615208762232214,-60.96961291274056,-61.16951935412362,-61.63135475246236,-62.09345213137567,-62.1677514561452,-63.04132026666775,-63.41917223343626,-62.917441754136235,-63.82308395393193,-63.08467653114349,-63.52823205431923,-63.31995681906119,-62.68302582856268,-63.608997533563524,-64.26016170810908,-64.01232719887048,-64.74300094274804,-64.10491546522826,-64.08142381208017,-64.89303038781509,-65.50786698656157,-66.05528772156686,-66.6369348494336,-66.43301612697542,-66.33906656131148,-67.33392089419067,-68.00842400407419,-68.29023523861542,-68.49729267833754,-69.40568379312754,-68.95693246368319,-68.59488823171705,-67.61745373159647,-67.46676352247596,-67.8697192245163,-67.22308496385813,-67.66353991394863,-68.16369128227234,-67.72715290961787,-67.98952923994511,-67.65018689399585,-66.74578878516331,-67.34760300489143,-66.40640998026356,-65.67834328627214,-66.34316443838179,-65.4978001494892,-65.81761532556266,-65.1954623493366,-64.65797583526,-63.92647970048711,-63.57951625529677,-63.77995382249355,-64.35955520020798,-63.97214462887496,-63.45632765488699,-62.70540831843391,-61.87308365525678,-62.588669705204666,-63.509490785654634,-63.86750022508204,-64.6273170337081,-63.873827246483415,-62.920826299116015,-62.78695939015597,-62.49934792378917,-61.84551193518564,-60.90006173495203,-60.891197516117245,-60.0269352463074,-59.039767182432115,-58.11220637336373,-57.27480245940387,-57.538034508004785,-58.178834543563426,-58.78309599496424,-58.03235395299271,-57.8994254861027,-57.61274567851797,-57.326799938455224,-58.220823120791465,-57.708181800320745,-58.350909302942455,-58.54015438631177,-58.80201632156968,-58.23968854453415,-58.66381592908874,-58.56261415174231,-58.56353110913187,-57.73989486368373,-57.24047865020111,-57.09974696254358,-57.86844458710402,-58.34797806525603,-58.607087024021894,-59.29909653682262,-59.2960179890506,-59.17827153624967,-58.92236594390124,-59.76968005253002,-60.58573298249394,-60.833809664007276,-60.1612550849095,-61.013581258710474,-61.15828279638663,-60.259752228390425,-60.7175350910984,-59.75546764722094,-60.152040811721236,-59.77189773833379,-59.80600338568911,-59.25267933961004,-60.188992991577834,-60.64607899589464,-61.42559039732441,-61.44580333400518,-61.58040147414431,-60.931532780174166,-61.470103373751044,-60.48236677888781,-61.24657050985843,-60.91794989677146,-61.70161986304447,-62.62164796702564,-63.05912738433108,-62.73151826299727,-63.299974030349404,-63.06064548576251,-63.760252345353365,-64.2131349844858,-63.282034831121564,-63.2917390759103,-62.65754605690017,-63.611454226542264,-62.699267028830945,-63.13289445824921,-63.18553880881518,-63.97132569923997,-64.93291044188663,-65.50528657063842,-65.920567905996,-66.84617358166724,-66.36719716852531,-66.09864120837301,-66.52779720444232,-65.93849020078778,-66.45906942011788,-66.04386095656082,-66.93227565102279,-67.00798378745094,-67.15714256139472,-66.169828010723,-66.88249523704872,-67.69589880853891,-66.91078741336241,-67.73136330069974,-67.84350014152005,-68.18519775569439,-67.51142628630623,-67.63184718042612,-66.95637761475518,-66.67542526638135,-67.05439885193482,-67.67036932893097,-68.10336543014273,-68.64651438966393,-69.00476538715884,-69.03879887936637,-68.8850871399045,-68.11028069909662,-67.24929795833305,-66.78039544215426,-66.1430937689729,-66.363826577086,-65.47287097061053,-65.47587661119178,-65.95794979529455,-65.71626983815804,-66.52179604722187,-66.12420894997194,-65.48749802587554,-65.80644001998007,-66.71036703931168,-66.736515046563,-67.36473615420982,-66.64715542970225,-67.37382240174338,-67.20262646628544,-67.06395381409675,-66.22161487862468,-65.58659955952317,-66.24885858222842,-65.38096134364605,-64.82743867766112,-63.87045335397124,-63.59725526673719,-64.17694384697825,-65.02711657760665,-64.94273368921131,-64.7237276090309,-65.08464858820662,-64.69388621440157,-65.49187347711995,-65.80758522637188,-66.7500699465163,-67.28206007927656,-68.14602177403867,-67.2535424460657,-66.97307850793004,-67.2329913917929,-68.06682875938714,-67.19214834226295,-67.76782839093357,-67.85340178385377,-67.5474161002785,-67.42908197455108,-66.92039638152346,-67.32691176375374,-68.13072853349149,-67.94653181359172,-67.10967341531068,-68.00771556561813,-68.94782464858145,-69.81030907435343,-70.43317499663681,-71.01443615788594,-70.98921416327357,-70.81257171183825,-71.46218523709103,-71.39217053772882,-70.5508164158091,-70.43812214769423,-70.23215720895678,-70.65416199993342,-70.07132906327024,-70.48725406453013,-69.92493283376098,-70.7188978055492,-70.24271927354857,-69.46051358059049,-69.8863342567347,-69.92154685035348,-69.53969139419496,-69.93788722716272,-70.89748550811782,-71.0519321365282,-70.56517388857901,-70.90481527568772,-71.20963403675705,-71.95248516462743,-71.32004206022248,-71.18710035877302,-70.25498546147719,-70.69862470775843,-70.37193311890587,-71.08416757546365,-71.15681085828692,-72.09289177181199,-71.46940334979445,-71.46427689353004,-71.37746665626764,-70.56754505215213,-71.55780327040702,-72.19566841516644,-71.30399930104613,-72.05131227290258,-72.76147111970931,-73.57212390284985,-73.61140241101384,-73.09737141383812,-72.14395858999342,-72.73912188736722,-72.75198554433882,-73.40866298880428,-72.4957025302574,-73.45655994582921,-73.3021997762844,-73.48640177492052,-73.19538681954145,-73.21842425642535,-73.26595373125747,-73.6351530184038,-73.29720334941521,-73.71891807811335,-73.8678039512597,-73.45155969029292,-74.44926529331133,-74.79844990884885,-74.36793452734128,-74.09960764180869,-73.36723859468475,-73.1453893976286,-73.84100227616727,-73.01227258099243,-72.19657239690423,-72.96802054718137,-72.21979892486706,-72.95728584658355,-72.86749122152105,-73.30746871465817,-73.56481256568804,-72.80006725154817,-71.89379735756665,-71.98358411015943,-71.15087935701013,-72.08532513584942,-71.25909160031006,-72.22105802362785,-71.52574197482318,-71.8540214956738,-72.84498162381351,-72.20737745705992,-72.43252966040745,-71.73660342674702,-71.20191643666476,-71.08115010149777,-70.76705227280036,-70.4080845657736,-71.31153648439795,-70.84378111921251,-71.56828651251271,-71.78963341191411,-72.01168889179826,-72.78447262849659,-73.57072959560901,-73.44129452016205,-72.64210535399616,-72.39615864446387,-72.99539903085679,-73.16441225400195,-73.6739864544943,-74.29933190904558,-74.76233219588175,-75.64174540666863,-75.55733227776363,-75.91655584331602,-75.2900618063286,-75.30712210247293,-74.84104262432083,-74.76050158403814,-74.95851245708764,-74.66316881822422,-75.0290631451644,-74.33735198294744,-75.0579787841998,-75.00235891295597,-75.59267682395875,-75.8355500283651,-74.86080252798274,-75.52242522733286,-76.26028180448338,-76.5793380253017,-75.7905638939701,-76.19324591755867,-76.1475834865123,-76.80433982051909,-77.60269858920947,-78.24443279905245,-78.6549714570865,-79.3424655329436,-78.86630896944553,-78.94798423163593,-78.572591655422,-77.90108391549438,-77.8538935254328,-77.77158311055973,-78.42275743978098,-77.52610649168491,-76.92748568020761,-77.57819690322503,-77.3552555819042,-77.83728382177651,-76.99274964537472,-76.1197129348293,-75.45222914172336,-75.38328319275752,-75.04369424749166,-74.27294400101528,-74.32646413799375,-74.87351323664188,-74.10480273980647,-74.5337072503753,-73.76198784913868,-73.88010055338964,-73.69684499129653,-74.07588161202148,-74.08390528568998,-74.48390376521274,-74.42914013424888,-73.58105689845979,-74.23485681694001,-74.99416369432583,-75.23861020198092,-75.13079162500799,-74.73404339747503,-75.40775868063793,-74.89988258760422,-74.97480535041541,-75.15683672297746,-75.69800683157519,-76.44819956179708,-77.13690158817917,-76.62478109402582,-75.85394849767908,-76.82122874446213,-77.00307398056611,-77.30442182673141,-76.77169568417594,-76.32935654511675,-77.09235297515988,-77.45037385821342,-77.33304509008303,-77.4492024416104,-78.2462197248824,-79.19849876919761,-79.51100899279118,-79.53600253444165,-80.13515948643908,-80.95197992539033,-81.49933702731505,-80.97252840641886,-81.95254352595657,-81.5067964894697,-81.30527325207368,-80.64928358234465,-81.52820206806064,-82.11729755345732,-81.49554664315656,-81.66571354772896,-82.165673319716,-82.56934537598863,-83.05229835445061,-83.62672439822927,-84.32320892764255,-84.11483726184815,-84.42053070338443,-84.49260369222611,-84.3238774817437,-84.81531474785879,-84.74359274748713,-84.2036522263661,-83.83690277300775,-84.63128659874201,-85.06212066020817,-85.96298689488322,-85.44628319749609,-84.46833805833012,-85.31434109527618,-84.33403915027156,-84.01059221988544,-84.731404511258,-84.83365460066125,-85.7143080579117,-85.96123084658757,-86.24734632531181,-87.15208206465468,-87.9493945594877,-88.91076232958585,-88.2250700565055,-88.76098674628884,-89.030841329135,-88.57648464106023,-88.61810065153986,-89.2401755261235,-89.28565031848848,-90.03295544581488,-89.41851141303778,-89.39333526976407,-88.99056612001732,-87.99161050422117,-87.08632059022784,-87.07429972337559,-87.43625344987959,-87.12895235745236,-87.80210140068084,-87.38966816989705,-87.83387788943946,-87.4849959006533,-86.86901786131784,-86.31330599775538,-86.5626286691986,-87.06247641798109,-86.86689583817497,-87.1122727850452,-86.28600740106776,-87.07584902178496,-87.08126734523103,-87.942057215143,-88.74702818365768,-88.93687273794785,-89.77349426690489,-90.61631259787828,-90.43958112504333,-89.80768703809008,-89.68843764718622,-89.65716959396377,-89.33636516099796,-90.01465001050383,-90.1334762624465,-89.55525062838569,-90.18744077673182,-90.70314739318565,-91.65228385245427,-90.80754174012691,-90.1369491009973,-90.61071855016053,-89.85062709497288,-90.43847392732278,-91.25947210937738,-91.25677706114948,-91.50975417951122,-91.30921269021928,-90.59928051615134,-89.64078783802688,-88.65856280783191,-88.99955025222152,-88.15514623792842,-87.26020413078368,-86.42750757141039,-87.38703173818067,-86.48830188252032,-85.49233406968415,-85.35437095351517,-85.79196597775444,-84.9194993916899,-85.34040396334603,-85.56334866257384,-86.44360760319978,-85.57524711219594,-85.98920740792528,-86.81295318342745,-86.23976483335719,-86.16384347667918,-86.09988180315122,-85.4400519747287,-85.65577170206234,-86.12819958850741,-85.92326544690877,-85.25454045785591,-84.9422921393998,-85.7511390214786,-85.0166224767454,-84.98620999464765,-84.22642202861607,-83.7548203621991,-84.75390488561243,-84.94116945657879,-85.19424100359902,-84.88467298587784,-84.25224605202675,-83.45805765269324,-84.26718744449317,-83.91787462728098,-83.80865008570254,-84.15359814744443,-84.5829002764076,-85.01340550091118,-85.55513734510168,-85.4748428077437,-84.72317873267457,-84.67561044963077,-84.37778858887032,-83.46357450261712,-83.65113285090774,-84.60387611947954,-84.68418680084869,-85.63604383217171,-84.96132211619988,-84.63760813185945,-84.45235090563074,-84.70491177588701,-85.26376845408231,-84.56028789374977,-84.12702679354697,-84.08359104814008,-83.80406923266128,-83.88704901607707,-83.77694191550836,-83.87977397954091,-83.9094419744797,-84.72556821489707,-84.61256285430863,-84.7796895429492,-84.20675672451034,-83.67799931112677,-84.07484801346436,-84.21810521418229,-85.19369272468612,-86.12120148399845,-86.19907391956076,-85.93228589603677,-86.82149558700621,-87.50256848009303,-87.39983948227018,-88.38567565008998,-89.07661447953433,-88.91961537441239,-89.86163300881162,-90.03221207251772,-89.86466126469895,-89.49914856720716,-89.71749165235087,-90.60992274992168,-90.6976275369525,-90.56521501624957,-91.47591916052625,-91.76302712783217,-91.9464379013516,-92.53279653145,-92.36986716510728,-92.38845800748095,-92.77109055127949,-91.97885678336024,-91.41578809963539,-91.16163954045624,-91.48717419803143,-91.19865238899365,-90.71927287243307,-91.43548120930791,-92.0710912141949,-91.50592135079205,-92.26336664287373,-92.96680205594748,-92.87035075714812,-92.3679278390482,-93.3626542808488,-92.52336556185037,-92.08162961201742,-91.7816518289037,-91.01058145985007,-91.70429448410869,-92.34641138883308,-92.03050278453156,-92.48751201154664,-92.53517996473238,-93.08366492995992,-92.60763191897422,-92.88928906805813,-93.19331427011639,-93.96713523613289,-93.38771275803447,-94.35863925330341,-94.32377659389749,-95.01281556859612,-94.8582520391792,-94.93253772007301,-95.36942786211148,-94.3802825328894,-94.24176763137802,-95.15715806325898,-94.20595609256998,-95.13298104330897,-95.26033577416092,-94.78483599703759,-95.45378808910027,-95.42905153241009,-95.75938281370327,-95.40180638385937,-95.76880641328171,-95.86484975367785,-95.98832121305168,-96.09218592289835,-95.32643004413694,-95.46895883558318,-96.44096869975328,-95.44859617156908,-95.29247279372066,-95.26548910420388,-94.84300771262497,-94.73972216341645,-95.43418256752193,-94.46448859013617,-93.78109397972003,-93.19938013935462,-94.15544288605452,-94.00170347094536,-94.8018101383932,-95.73190847784281,-96.67079330421984,-96.69974625343457,-96.02966064633802,-96.6614353354089,-97.0553480074741,-96.41879437444732,-95.83094757748768,-95.04213754273951,-95.32218570681289,-94.96596811478958,-95.50888265995309,-95.04903476405889,-94.07401524716988,-93.29689549654722,-93.15159206092358,-92.54552145302296,-92.52268348401412,-93.36526582343504,-92.8283434160985,-92.53956919722259,-92.19845670415089,-91.51381200039759,-92.08648670930415,-91.20973074436188,-90.28785950690508,-90.61273327004164,-89.98879589093849,-89.05645155673847,-88.59246543003246,-88.10018075164407,-87.7290596156381,-88.6682446571067,-89.58841727115214,-88.8018122385256,-89.65033150697127,-90.61821901798248,-90.29462919710204,-90.50988988485187,-90.73958942526951,-90.40553494356573,-90.7508598989807,-89.90296838711947,-88.95558639755473,-89.88121764594689,-89.84393430873752,-89.64079169835895,-90.10718942200765,-90.3825541655533,-91.20789971761405,-90.41531786648557,-89.44980490999296,-89.74427739158273,-90.3509834650904,-89.81364016514271,-88.8781864233315,-88.4010475021787,-88.88498653843999,-88.57550865411758,-89.21940435748547,-89.36702422332019,-88.79348181979731,-89.31941785942763,-90.11291025672108,-89.92073108907789,-90.59366493625566,-89.7711457516998,-89.5260284524411,-90.03585008531809,-90.80074434867129,-90.58857557550073,-90.92749022645876,-90.81999439001083,-91.1730471868068,-92.08848835201934,-92.78209214610979,-92.21802401728928,-93.00403794785962,-93.09879927197471,-93.60365834319964,-94.35384075669572,-94.03768874425441,-94.45533668994904,-95.06606217380613,-94.23025007126853,-94.19069891888648,-94.38571757730097,-93.64624509681016,-93.29968422092497,-94.1187958647497,-94.1087881703861,-93.58820523926988,-93.9551688353531,-93.1198144950904,-93.56336318142712,-93.58962178975344,-94.42789165116847,-95.39495303481817,-95.74164314195514,-95.48453981708735,-95.13863273290917,-95.08701107744128,-96.06194353289902,-96.88388834893703,-96.98421891080216,-97.16328610759228,-96.74076726380736,-96.5763065777719,-95.84772989992052,-96.68289192207158,-95.77031098818406,-95.36526756780222,-94.67314296821132,-94.96986221102998,-95.59424184588715,-95.12678548647091,-95.0323724183254,-94.94053864944726,-95.58960115397349,-95.03505274932832,-94.16162496246397,-93.50184552138671,-93.40867641149089,-93.73761737719178,-94.5040143346414,-93.61097729532048,-93.64885499933735,-93.3366587231867,-92.4547612387687,-93.08940237015486,-92.58385262265801,-91.80231020180508,-91.4340738481842,-91.84908777242526,-91.34993583103642,-90.39566552313045,-89.60002135112882,-89.71674047084525,-90.55781400576234,-90.8569021592848,-90.27510269312188,-91.05022460315377,-90.82612150302157,-91.11703662760556,-92.00795271759853,-91.14728023251519,-91.47557212226093,-92.11023801704869,-91.56389909237623,-91.55564919207245,-90.6904957969673,-89.90152759943157,-89.64998208452016,-89.82412111619487,-90.07703561754897,-91.05162653885782,-91.66571626020595,-91.73804173991084,-92.28438972309232,-92.73123320145532,-91.88796946918592,-91.89971207175404,-92.21583208534867,-91.37859564460814,-90.86529382457957,-89.87305143289268,-90.2760119936429,-91.17944072699174,-91.04576517874375,-91.2329171160236,-91.47384570818394,-92.41749076452106,-92.27066797297448,-91.61837749462575,-91.28373988671228,-91.7856639586389,-92.08544766018167,-91.15384148526937,-91.0791053394787,-90.94462557788938,-89.98622034490108,-89.4466092409566,-90.29227741388604,-89.95717052835971,-89.78626896301284,-89.73893634043634,-89.1469679181464,-88.30339546687901,-89.08390348451212,-89.52649452257901,-88.88194179255515,-88.74115689005703,-87.82637027651072,-87.86093659466133,-87.86100379750133,-87.84731240011752,-87.07925829663873,-87.0721318651922,-87.08734868606552,-86.95343546103686,-86.51625667279586,-86.83087890362367,-86.06529998220503,-85.76594572607428,-85.22084087273106,-84.92976013943553,-84.74628040101379,-85.23233141889796,-84.61760811507702,-84.417181330733,-84.14709805557504,-83.6370835728012,-84.4486641692929,-83.55782325612381,-82.93100940668955,-83.59919645497575,-82.68957729870453,-81.90921632573009,-81.81852252455428,-81.38483985327184,-80.7183586936444,-80.54570684861392,-79.58898820495233,-78.71121509931982,-78.45473447907716,-79.15114089893177,-79.31885608192533,-78.77710670698434,-79.75059888046235,-79.110466087237,-78.30758293531835,-77.46334988577291,-77.70513909542933,-77.8155915485695,-76.89588157832623,-77.2373322090134,-77.06269541569054,-76.51854095840827,-77.12191773205996,-77.89170351764187,-77.93795147212222,-78.14715530443937,-77.39578404091299,-78.35799675621092,-78.35793773038313,-78.16121357865632,-77.83032347308472,-77.15610430575907,-76.79103228123859,-77.29695468675345,-78.08063537813723,-78.23800325300545,-77.48465741565451,-77.68649535253644,-76.9542667591013,-77.82472616899759,-78.47051655873656,-78.52937806444243,-78.18478855583817,-77.84463314246386,-77.27711258409545,-78.22395677026361,-77.8221049811691,-78.37021068949252,-77.55749948835,-77.62623485736549,-78.48321057111025,-79.38280715234578,-80.13276726799086,-80.09309853427112,-80.46970013901591,-80.3862113468349,-79.81451981887221,-79.06695465371013,-78.95671135000885,-78.33048535790294,-78.51257227780297,-77.70968519663438,-77.52128281630576,-77.01794370776042,-76.86827807826921,-77.69378386065364,-77.53239479940385,-77.30569159379229,-77.50265320483595,-77.6585007365793,-78.06428969698027,-77.83432058151811,-77.37091403827071,-76.87023898027837,-75.93864216422662,-76.5361848808825,-77.44250164646655,-76.55027335416526,-76.2789050443098,-76.16373566864058,-76.70690684393048,-77.50828996207565,-77.78701072186232,-78.1345042749308,-78.57815523585305,-78.17132001882419,-77.44776721252128,-78.08281501568854,-79.06932070665061,-79.05638075526804,-79.5758262318559,-78.57804197166115,-79.0349219944328,-79.16423235321417,-78.93330166954547,-78.87788281217217,-79.0342955281958,-79.00089772744104,-79.42574422573671,-79.733120393008,-80.1751481667161,-81.06663953512907,-81.47621270315722,-81.2260712380521,-81.92681076470762,-81.33702254574746,-82.10329288151115,-82.70919555611908,-82.5369589496404,-83.2021328038536,-82.94729147059843,-83.24104270897806,-84.01596199534833,-83.585489529185,-83.61656288290396,-82.6926824147813,-83.18137996690348,-84.09589875955135,-83.62971724756062,-83.23478119494393,-82.70582779403776,-82.67385250050575,-81.91682428354397,-81.70757116144523,-81.53553994325921,-81.54254396539181,-80.77927815029398,-81.74464097199962,-82.66554394178092,-83.54369611479342,-83.65203123353422,-84.136051511392,-84.99916915595531,-84.03502468485385,-83.72142115607858,-83.56793972756714,-83.00296902982518,-83.33257839083672,-82.41320719802752,-82.47659840900451,-81.79539398476481,-82.60097770625725,-83.149076028727,-83.8358449023217,-82.95129865920171,-83.0261077163741,-83.46604223316535,-83.56281730532646,-82.99842649372295,-83.49337950721383,-83.6966990432702,-84.46233404334635,-85.20943046128377,-85.88296565879136,-85.36217577429488,-84.81392966676503,-85.78588225319982,-85.96736514568329,-85.71150713181123,-86.06203453009948,-86.09871475305408,-85.78506142273545,-85.92482784995809,-86.03535848855972,-85.22515452839434,-84.3675969443284,-83.40492902044207,-83.98301400057971,-83.40461557311937,-84.31506345653906,-84.55638536904007,-83.55794488452375,-83.48474945314229,-83.73573671746999,-84.05564482277259,-83.80785832135007,-84.61671976791695,-85.3022802057676,-84.85807276889682,-85.13586466480047,-84.7366261985153,-84.27895781910047,-84.99751200713217,-84.68002341128886,-84.92204512702301,-84.88663051091135,-83.94597362726927,-83.74796598730609,-84.09940560394898,-83.27482981374487,-82.5299621252343,-81.89875686401501,-81.92188500938937,-81.67733867932111,-81.17818769719452,-81.84311715699732,-82.31842060061172,-82.52337502222508,-82.32833872223273,-81.34213081235066,-80.40716367587447,-80.34390640910715,-79.41855400567874,-78.77979749487713,-78.04206078359857,-78.18082640552893,-78.07754917023703,-78.49043953372166,-77.85187573265284,-77.54905554000288,-76.92759955208749,-76.89278977504,-76.23314947914332,-75.99632763070986,-75.74019768601283,-76.03586344188079,-75.57892268756405,-75.4756165384315,-75.09482312668115,-74.70607559289783,-75.3088753032498,-74.94002999877557,-74.41719115758315,-73.88135999534279,-74.15490452153608,-74.76694882847369,-75.02903120592237,-75.33043133793399,-75.21655739331618,-75.27289716247469,-75.24296325957403,-75.99795173527673,-75.47042070003226,-74.87151993112639,-74.21717055561021,-73.74140951642767,-74.29793935222551,-75.07700033206493,-74.91058877948672,-74.41941233025864,-73.7651802781038,-74.48057651193812,-75.10356479138136,-75.4285998265259,-74.68067657807842,-75.58032729895785,-75.14522911794484,-74.21731754159555,-74.50628391932696,-73.56073023704812,-73.41527480678633,-73.83486913284287,-74.42450137529522,-73.60525785619393,-72.69105665339157,-71.84927918575704,-71.14085891842842,-71.0931754577905,-70.62388031883165,-70.11466527357697,-70.54236361943185,-70.5160341411829,-70.79556283168495,-70.07266257936135,-69.29641105560586,-68.36479146778584,-68.3798802793026,-68.84775255341083,-69.78466245904565,-68.991876849439,-69.98627312993631,-70.41325194714591,-69.67555056931451,-68.72368901176378,-67.73571312567219,-66.88904867088422,-66.57418271154165,-65.98119807941839,-65.24920986639336,-64.30425999313593,-63.84638055320829,-62.940563410520554,-63.464789434336126,-62.54216864006594,-63.34890384459868,-62.79244270408526,-62.336959364358336,-62.490519819781184,-63.38790413085371,-62.9141886876896,-63.785160461906344,-63.78428057068959,-63.34912321018055,-62.908526989631355,-62.66852638730779,-63.03251549275592,-63.37297603767365,-62.75971441483125,-62.73748494125903,-63.05126058543101,-63.5768423397094,-63.849953898228705,-64.48781115654856,-65.3026732718572,-65.33788964198902,-65.08630103664473,-64.16279717441648,-64.15936262579635,-64.79919563047588,-64.87064157705754,-64.3581372750923,-63.548217221628875,-63.258550183381885,-63.24084837222472,-62.87043970217928,-63.83617100818083,-63.889611661434174,-64.75185722252354,-64.54905888391659,-64.45851467177272,-64.74770145164803,-65.6699687698856,-64.74504996882752,-65.72277218243107,-64.82072325004265,-63.82698459317908,-63.94833558378741,-64.2852946552448,-64.11956103146076,-64.02122695185244,-64.11046188790351,-64.39485092740506,-65.12771796481684,-65.48684907890856,-64.61777323158458,-65.49118089769036,-64.56146925035864,-64.31716594705358,-64.73394949920475,-64.7814735872671,-64.81673266319558,-64.46532482560724,-64.3801123322919,-64.84718888998032,-64.82806631783023,-64.19305719668046,-63.989723465405405,-64.25441664410755,-63.859704033471644,-62.87474372237921,-62.04483952233568,-62.287776317913085,-63.00473084533587,-62.90040827356279,-62.375838642939925,-62.6390831572935,-63.46876405598596,-63.01930408272892,-63.12293993541971,-63.14285259647295,-63.45722260279581,-63.86542782280594,-64.65824268572032,-65.28930132137612,-64.64307097578421,-63.67111191479489,-63.80684556718916,-64.74833922553807,-65.0657934746705,-64.15282532572746,-63.86548354709521,-63.47736785188317,-62.88090626010671,-62.589766200166196,-61.66112199425697,-62.63810793263838,-63.04826822364703,-63.697845230810344,-63.44115606043488,-63.517781992442906,-63.32520248321816,-62.49097197316587,-62.58579664863646,-63.460241712629795,-62.6099912035279,-63.51080332370475,-63.61106471158564,-63.2462546559982,-63.59875733964145,-62.710699387826025,-63.386906133033335,-63.582871635910124,-64.1216307003051,-63.44102436583489,-62.4802204859443,-61.7032824200578,-60.9848124505952,-61.86721527669579,-60.925315155182034,-61.676235761493444,-62.07275491254404,-62.20958274556324,-62.73207919532433,-62.81616048095748,-63.449088239111006,-63.212778579909354,-62.51806945679709,-62.84365925332531,-62.56453433120623,-62.591240256559104,-61.944155185483396,-62.14130252460018,-61.187728913966566,-60.25596504006535,-59.35388697870076,-58.84596823947504,-59.58571183588356,-60.05463135195896,-59.24586074706167,-59.487107765395194,-60.46962162619457,-59.49808463687077,-59.577864539343864,-59.90280384058133,-60.65844589704648,-60.43608973128721,-60.739419620949775,-60.90320498123765,-60.01986992591992,-60.26209128368646,-60.314804694615304,-59.8437723973766,-60.4223829517141,-59.68098601466045,-60.026173644233495,-60.6677329139784,-59.74601147836074,-59.27591321244836,-58.81599942641333,-58.24324505776167,-58.077377965673804,-57.07855012174696,-56.32933634938672,-55.58403330249712,-56.22202551178634,-55.78734383312985,-55.136582186911255,-54.41586101427674,-53.63086349936202,-53.562166321557015,-52.746982677374035,-53.5988113344647,-52.8990438519977,-52.33383280597627,-51.683960740920156,-50.83098748838529,-49.86596210068092,-50.37580812443048,-51.16803989186883,-51.74819552060217,-52.02076235366985,-52.30593827273697,-53.22523540165275,-53.312173820100725,-53.474974524695426,-54.33552369847894,-54.58520319359377,-54.409175985492766,-54.07250057300553,-53.304570752661675,-52.988259407225996,-52.76685476163402,-52.55301568796858,-52.94983424432576,-52.642383319791406,-53.22700011078268,-52.71350638475269,-52.90007345750928,-53.46874641953036,-53.97748662205413,-53.84387967130169,-53.196999521926045,-53.96750422613695,-53.04643294354901,-53.47133982088417,-53.15026991534978,-52.98744771024212,-53.20724405860528,-52.58086999133229,-53.38283429155126,-54.0628866860643,-54.105541625991464,-53.97805627249181,-53.45358472596854,-54.08910700911656,-53.55411375127733,-53.09171957941726,-53.70425788406283,-53.88345531234518,-54.622795808594674,-55.12258691806346,-55.099303998518735,-55.45396493282169,-54.64330806862563,-55.116773086600006,-55.4111003940925,-55.70202797697857,-55.59743439825252,-55.71018142392859,-55.90064159221947,-56.29524373402819,-56.476663421373814,-56.73321627965197,-56.700738991610706,-56.65609073219821,-57.63956247549504,-57.124689902644604,-57.112088256981224,-56.30841288296506,-55.7899030665867,-56.16952868923545,-55.460153720807284,-55.56484039220959,-55.073051096405834,-55.43212728807703,-54.68328488385305,-54.9298373661004,-55.832571926061064,-54.993180009070784,-55.781115126330405,-55.25410078372806,-56.248040401842445,-55.53661566693336,-54.86605488974601,-55.80794317414984,-55.94675409793854,-55.221964753232896,-55.79911746038124,-56.054815902840346,-56.98053015395999,-57.81382345454767,-58.15968744084239,-57.774921575095505,-58.493754339870065,-59.39331608870998,-59.642378482501954,-59.09347986569628,-59.66907090181485,-59.966948776040226,-59.20553977508098,-59.922525664791465,-59.953938075341284,-60.20221168268472,-60.83773491764441,-61.208125739358366,-62.01952392887324,-61.724452731665224,-61.68139253370464,-62.628220623824745,-62.7754585808143,-62.53634208627045,-62.10497073829174,-62.52000305335969,-62.75948596559465,-63.7509370110929,-62.9518609046936,-63.09594527678564,-62.669695519376546,-63.38551261369139,-63.50132053159177,-63.371881169267,-63.77619387302548,-64.3966954019852,-63.629867836833,-62.6351833762601,-63.297522687353194,-62.302300557959825,-61.70670661702752,-61.38705011550337,-61.1742177978158,-61.57821223512292,-62.48701156536117,-61.76340876938775,-61.279315188061446,-61.60236798087135,-62.24292290210724,-62.1760199139826,-61.99535031337291,-61.711662537418306,-62.63665678165853,-63.30679210321978,-63.07396127516404,-63.95866076601669,-63.01995616592467,-62.35667384369299,-62.38685224018991,-62.00114108948037,-62.34629045845941,-62.325655333232135,-62.292099637910724,-61.83119528880343,-61.731010471470654,-62.42448943993077,-62.28108364762738,-61.389492630027235,-60.884936628397554,-60.803052281960845,-61.37623205175623,-60.770051456056535,-61.175791741814464,-61.3223186400719,-60.57991528697312,-60.92081357212737,-60.800926711875945,-60.17270324099809,-60.5204775352031,-60.50998440338299,-60.608335649129,-60.411090164911,-59.983812887221575,-60.2681161579676,-60.51547413272783,-59.59525221725926,-59.731660638935864,-60.61874322267249,-61.217705527786165,-61.25428758142516,-61.84991260711104,-60.927570942789316,-61.12073118193075,-61.215920467861,-61.45716604217887,-61.41940585710108,-60.483620340935886,-60.43195115914568,-61.34567752759904,-61.76337783224881,-60.910094981547445,-60.36558272782713,-60.5073135108687,-60.53854739619419,-59.80059417709708,-59.86971975117922,-60.20330912945792,-59.99948666477576,-60.52539986046031,-60.539461738895625,-60.31969699682668,-60.53013041894883,-59.83571552392095,-60.294133429415524,-59.402071928139776,-58.78157581621781,-58.00166832236573,-57.639291133731604,-56.75954958423972,-57.018585121724755,-56.0872274688445,-55.7308780583553,-55.67472943942994,-56.03422534419224,-55.730038836598396,-54.85707240598276,-54.40406623715535,-53.452244179323316,-54.3949791463092,-54.69877770077437,-54.23434942634776,-54.90657517267391,-54.910339809022844,-54.11626502079889,-54.844193381257355,-54.702399623114616,-55.4058913574554,-55.025106388144195,-54.682864730712026,-53.96914442954585,-53.655704444274306,-54.082522140815854,-54.610139769501984,-55.38758637569845,-55.440939526073635,-54.63828775472939,-55.20110558858141,-55.3646855619736,-55.15411343658343,-55.59431067481637,-56.49759009806439,-55.70010656211525,-55.92617422435433,-55.61017225496471,-55.66247204551473,-56.471230456605554,-57.019577556755394,-57.990035525523126,-57.48706369334832,-56.608803210780025,-56.27707770373672,-56.51067129895091,-55.5752811152488,-56.48243521619588,-56.15126691060141,-55.30964812031016,-55.27909526927397,-55.19750623591244,-54.603630093391985,-55.51077409973368,-54.83182337740436,-54.58858899353072,-54.45468596089631,-53.49077716562897,-52.66590993059799,-52.43688979931176,-51.97506319358945,-51.402840136084706,-51.16562919737771,-51.998178312554955,-52.22658430878073,-52.001707955263555,-51.84895414020866,-50.99187942733988,-51.41368328407407,-50.76324663776904,-49.82223725365475,-49.92947747837752,-49.64070372795686,-49.700996772386134,-49.06306543480605,-49.96255105081946,-50.51687982818112,-50.99858112959191,-50.60464418074116,-49.72668628022075,-48.86776254698634,-49.62058107089251,-49.13797934260219,-48.72980756126344,-48.41430473374203,-47.79259356483817,-47.63316316111013,-47.49920532107353,-46.90662053786218,-47.255018435418606,-47.158176174853,-46.39672180265188,-47.0958885345608,-46.18413886753842,-45.97724199574441,-45.11933919740841,-45.40518827736378,-44.59062447817996,-45.56716691842303,-46.381713258102536,-45.79289660975337,-45.442245069891214,-45.114738550037146,-44.48870617337525,-45.37316108541563,-44.916748663410544,-44.278839035891,-43.95672521740198,-43.407048761844635,-43.305235972162336,-43.83488113619387,-43.31588006392121,-42.71744512580335,-42.384114395361394,-41.43365938169882,-42.18081929208711,-42.63077442906797,-42.834025519900024,-42.75861403206363,-43.61174189625308,-43.697644541971385,-43.69414406269789,-42.72890085307881,-42.12814759789035,-42.10588651988655,-42.76010355912149,-42.946473591029644,-43.604684684891254,-43.86975863436237,-43.61098813591525,-44.58269699057564,-44.166272424627095,-43.247807514388114,-43.6313850376755,-44.54005991388112,-44.965583687182516,-44.21836799988523,-43.726045839488506,-43.696276479866356,-42.8972849608399,-42.77890442125499,-42.25675229402259,-41.439537078142166,-41.524558515287936,-41.36249366635457,-41.99934974312782,-41.617483648937196,-42.192287566140294,-42.728526168037206,-41.99351054849103,-42.604226937983185,-43.473819964099675,-43.06248430395499,-42.73564820829779,-42.593713679816574,-42.534487100318074,-42.97185450140387,-42.1185044744052,-42.325636566616595,-41.974389649461955,-42.68648758158088,-42.80860508745536,-42.784162698313594,-42.24662500759587,-42.969254300463945,-43.1103758122772,-43.27662098640576,-43.368586948141456,-43.35092922206968,-42.71563301188871,-41.7208560667932,-41.20995148550719,-41.55335609149188,-41.450313705950975,-40.590852587949485,-40.51989782322198,-39.79459244757891,-38.99686125293374,-39.57653287658468,-40.366776429116726,-39.381788971833885,-40.33427305147052,-40.1564652803354,-40.35948212025687,-40.484561192337424,-40.609906021505594,-40.49103769939393,-39.731992264743894,-39.442540663294494,-40.19283398753032,-40.826713220216334,-40.29641107842326,-40.37387774512172,-39.90568985790014,-39.71345228981227,-40.18590569868684,-41.01082926429808,-41.46010080445558,-41.0142477680929,-41.04387946380302,-41.255032365210354,-41.1248555299826,-40.62879127310589,-41.4357049590908,-40.5821132324636,-40.663172404747456,-40.588552152737975,-40.86884443927556,-40.33396933507174,-41.14896896947175,-40.172974621877074,-41.07744530169293,-40.498999799601734,-39.645257459022105,-40.51075059780851,-39.591465525794774,-39.83668490126729,-40.01826890418306,-40.81551146414131,-41.81173580791801,-41.4881717110984,-40.72929579159245,-40.44447997678071,-39.619368887040764,-39.09695057105273,-39.28408239921555,-39.45302630122751,-40.20517714181915,-39.78412071429193,-39.53041687933728,-39.351349679753184,-39.64298885408789,-39.1231352686882,-39.48859286075458,-38.755947642959654,-38.077408915385604,-38.71791239408776,-39.0478517585434,-39.11616060975939,-39.383506753947586,-39.75665683904663,-39.07998447166756,-39.90430014766753,-39.49631327576935,-40.15059394435957,-39.384737929329276,-39.3208172605373,-38.449493940453976,-38.87480402411893,-38.755837763193995,-38.791658191010356,-38.247627133503556,-37.38112257421017,-37.75142994662747,-37.190360041335225,-36.547905154526234,-37.21570681920275,-37.45323198148981,-37.52230909932405,-37.29129889141768,-37.50251750694588,-36.52062619710341,-36.90586696797982,-37.04728019004688,-36.733293152879924,-35.98743615858257,-35.1178634413518,-35.75056328391656,-35.396954741794616,-36.00753795448691,-36.314008155837655,-36.16235372237861,-36.240071724168956,-36.77475102012977,-36.23462782986462,-37.02487407671288,-36.27537650195882,-36.72484687762335,-36.96254746988416,-37.6994588598609,-38.36324042221531,-39.122932963538915,-39.23886300250888,-39.98785807704553,-39.7744373655878,-38.94022270012647,-38.610727834515274,-38.074967408087105,-38.08889522217214,-37.77505127899349,-38.70160324219614,-39.207827997393906,-39.59350204793736,-38.936110015492886,-38.76199520751834,-37.96590261999518,-38.66225560801104,-38.295459896326065,-37.586708065122366,-38.46438489668071,-38.80705185094848,-38.98845605459064,-38.08423217758536,-37.162235617637634,-36.393434177618474,-36.625402031466365,-36.12702691741288,-37.12601239653304,-36.884874765295535,-37.12513077631593,-37.16970913670957,-36.38799482118338,-37.29964602738619,-36.44308922998607,-37.34788793558255,-36.90153562184423,-36.80437498399988,-37.218420044053346,-37.19116374431178,-36.620386274531484,-36.288607330061495,-36.06703750649467,-36.552546344231814,-36.791244248859584,-36.8565458660014,-37.56393923051655,-36.86667477386072,-37.70141557184979,-38.30796202784404,-37.382249280344695,-37.97197575028986,-38.2874864586629,-38.918158252723515,-39.38009992847219,-39.128227551002055,-38.48349825665355,-39.19114953186363,-38.43479777127504,-38.49386879615486,-38.71444307407364,-37.87997003784403,-37.161935596726835,-37.70001438492909,-37.24074365198612,-36.583069739397615,-35.88275880785659,-36.84425073675811,-36.08840745035559,-35.82355168275535,-35.94890543399379,-36.642018750775605,-37.34048900613561,-36.356550549156964,-36.81923504685983,-36.14277872629464,-36.82712263148278,-37.50253377575427,-36.757284451741725,-37.221886726561934,-36.43402156885713,-35.59493792196736,-35.779532697517425,-35.04874835489318,-35.51609137188643,-35.09626609599218,-35.490863245911896,-36.394521216861904,-36.34586698375642,-37.1073183901608,-36.97089703241363,-36.71220521396026,-36.90255337720737,-37.49276570556685,-38.110686759930104,-38.70384948886931,-37.907228115946054,-37.96124475868419,-37.39819890586659,-37.748383408878,-36.8841247651726,-37.06041054241359,-36.8607200444676,-36.90520174615085,-36.143490463495255,-36.56594197731465,-36.56123908236623,-37.36600211961195,-36.3670290033333,-37.335618276614696,-38.26635742280632,-37.756091362796724,-38.580678129568696,-37.58923163218424,-37.86517544044182,-37.1451934450306,-36.6069694715552,-36.77178513398394,-37.6747967065312,-36.8621146325022,-36.971794575452805,-36.170336205512285,-37.07652451656759,-38.05158848874271,-38.62885896768421,-38.98960929457098,-38.094859243836254,-38.037352859042585,-37.307069562375546,-38.19095497671515,-38.60433437721804,-38.161088867578655,-38.049281815066934,-38.25312000885606,-38.31518421275541,-37.754870490171015,-38.66687836451456,-39.042374657001346,-38.68383788364008,-39.29974078759551,-38.69443903118372,-38.50915813725442,-38.646173580083996,-39.14440789446235,-38.780367392115295,-39.08163995947689,-39.61114584747702,-39.07136046746746,-39.77854505646974,-40.34211450070143,-40.25246906140819,-40.77798998123035,-40.32629708386958,-40.96647731075063,-40.52762656053528,-41.17727404413745,-41.60668772505596,-42.31391311716288,-42.99790199147537,-42.217340011149645,-42.36143335420638,-43.22297870879993,-43.45181961823255,-43.824844798538834,-43.78007762040943,-43.708434825297445,-43.26735398406163,-42.52430806402117,-41.86003662459552,-41.13034494873136,-40.26574213150889,-39.84887756453827,-40.69984496477991,-39.886802912224084,-39.5598137434572,-38.86537098325789,-39.525375810451806,-40.03644981700927,-39.690309351775795,-39.394008285366,-39.27206602599472,-39.09920075768605,-38.75891555426642,-39.08028064202517,-39.69131214544177,-39.78414921136573,-39.00585503783077,-39.70371995540336,-39.564106869045645,-39.41084955446422,-39.19592846883461,-38.21124123223126,-37.833665853366256,-36.92605160782114,-36.95194833073765,-36.38484144816175,-36.96822590800002,-36.91215998167172,-37.086852418258786,-36.500833643600345,-36.46393690723926,-37.094439323060215,-36.22879133280367,-36.812315211165696,-36.81154310610145,-37.5634078620933,-38.202344932593405,-37.92399090155959,-38.00435121404007,-38.22795423818752,-38.98718948010355,-38.56388677051291,-38.04838979803026,-37.05454389611259,-37.96022865269333,-37.990548382978886,-37.489758166950196,-37.39704517275095,-38.33225808152929,-38.720033087302,-38.66533780191094,-39.6477153734304,-39.592451225966215,-39.22064857464284,-39.36970918579027,-39.83336189202964,-40.46394050028175,-39.60241066431627,-39.497112188022584,-38.73798299534246,-38.943006412126124,-39.474860057700425,-39.94723382499069,-39.78412913065404,-39.94341821828857,-40.76468047127128,-39.790748005732894,-39.6989468424581,-40.350924686994404,-40.47376621188596,-40.421041027177125,-41.29353660484776,-41.082107931841165,-41.82528105471283,-40.92636982630938,-41.74483212642372,-41.236599553376436,-40.77794507611543,-41.43881691014394,-41.85456753335893,-41.90770908817649,-42.516966183669865,-42.509737527463585,-41.60658471379429,-42.033068606164306,-41.75550237065181,-41.285125139635056,-41.5549725019373,-42.192651686724275,-41.924018604215235,-41.51235771505162,-41.50337633211166,-41.08218555897474,-41.70514587266371,-40.99150646198541,-40.0039667529054,-40.85860702255741,-41.470314296893775,-41.04761133575812,-40.56866993289441,-40.30068847956136,-40.02821765374392,-39.46212729625404,-38.64737996319309,-39.394294516183436,-39.88374965824187,-40.266535041853786,-41.02867348911241,-41.25601536175236,-40.876177072990686,-41.0304307397455,-40.64996363269165,-40.564708361402154,-40.58140136767179,-41.51255115168169,-42.15433403197676,-42.577663445845246,-42.15530969714746,-42.885868582408875,-41.95083313295618,-42.76972450688481,-42.908373122569174,-43.66044111875817,-44.35904359444976,-44.43102689227089,-44.48446588823572,-44.3494730303064,-44.15068866126239,-44.717265544924885,-43.81932245846838,-44.53708849614486,-44.23250663327053,-43.76080552255735,-44.478127006441355,-45.298274429515004,-46.25979580543935,-46.761876225005835,-46.307689195498824,-46.93197462987155,-47.51440924918279,-48.046731679234654,-48.59886950487271,-48.090241252910346,-48.45784850139171,-47.72184226708487,-47.56525742635131,-47.2126254523173,-47.66758768027648,-46.73401264986023,-47.19392216578126,-47.955924494192004,-48.470864075701684,-48.703648367896676,-48.969276749528944,-49.24620246840641,-48.69963321182877,-48.32618711236864,-48.21580510446802,-48.48080624267459,-49.09475696226582,-48.316746165044606,-48.62536023836583,-47.6902413344942,-46.69904754823074,-46.87478094827384,-47.68559633148834,-48.30756662553176,-47.92975123832002,-48.630964124109596,-47.96354084601626,-47.55787417804822,-47.17992075905204,-46.33169121528044,-46.35265758307651,-46.52752489596605,-46.45958219235763,-45.95636454643682,-45.97077994560823,-45.89427025569603,-46.38901095278561,-46.59233840601519,-46.54592439951375,-47.53585609141737,-46.94361430360004,-47.138184959534556,-47.58991223340854,-47.107650296296924,-47.51996562676504,-47.37323299376294,-47.383626910392195,-47.321191168855876,-47.10689507657662,-46.92908386699855,-46.397770145908,-46.80451068747789,-47.104716894216835,-47.80666533578187,-47.697132932487875,-47.758776986505836,-47.72899363609031,-48.066259145736694,-47.541842062957585,-47.96736152144149,-47.4201497384347,-47.21029565902427,-46.222617358434945,-45.738863040693104,-46.23329148814082,-45.67528529185802,-44.96507464069873,-45.66264722775668,-45.44252656167373,-45.23879630304873,-45.11832298152149,-44.73356996150687,-44.45859040040523,-44.58054343285039,-44.133024531416595,-43.25165308639407,-43.5450627473183,-43.9189103031531,-43.59939963044599,-43.8557462063618,-43.384987926110625,-43.620604562573135,-44.351584755815566,-43.87025137525052,-43.03503528004512,-44.0343675869517,-43.14312199130654,-43.607876249589026,-42.99730434874073,-42.94993874197826,-42.11788997845724,-41.83184032514691,-40.939734999556094,-40.76479410054162,-41.15209506964311,-40.5307345520705,-40.7121224491857,-41.617450119461864,-41.941956150811166,-42.32432471960783,-43.28707240242511,-43.83693704009056,-44.232048058882356,-44.829346624203026,-44.96940800361335,-45.6801323578693,-44.77287869155407,-45.13163229543716,-44.591230428311974,-44.73777181468904,-45.666121318005025,-46.38338387105614,-46.76793473307043,-46.57902485411614,-46.71532967686653,-46.1431683418341,-46.68586387950927,-46.23085471568629,-46.855474167037755,-47.261799783445895,-47.34187505580485,-46.54941963311285,-47.50331384828314,-48.39624150749296,-48.58092848258093,-48.1745883137919,-47.75327591598034,-48.597586072050035,-47.89741681981832,-47.49446431780234,-47.05789935449138,-48.037191051989794,-48.85911347856745,-48.65896439924836,-48.40673513524234,-48.760893802624196,-48.49959617899731,-48.09786198660731,-47.30132282106206,-47.26163859060034,-47.66098253754899,-48.12365140207112,-48.184425563085824,-48.0000528935343,-47.231771156191826,-47.6333672972396,-48.013339722529054,-48.717258853372186,-49.69825623743236,-49.5450323484838,-49.07471294468269,-49.7847862704657,-49.328234769869596,-49.225111345760524,-50.019832972902805,-50.22527828067541,-51.16161681059748,-52.00726175820455,-51.08530684141442,-50.526816001627594,-50.34727702103555,-49.98571527469903,-49.209340929985046,-48.27135333744809,-48.12483030371368,-47.58714976441115,-48.22853030310944,-48.426582099404186,-49.091837741434574,-48.86046852031723,-48.28346253791824,-47.61179998423904,-47.13248979393393,-47.66705005103722,-47.100214212201536,-46.31482675811276,-46.06838194699958,-47.0529110156931,-46.704183833673596,-46.15365345356986,-46.9537707795389,-47.90604815026745,-48.84670812590048,-48.360856069251895,-48.94127353001386,-49.82542924024165,-49.116269941907376,-48.998618175275624,-49.11724458448589,-48.52047928376123,-49.50165048521012,-50.00484496168792,-50.3338527767919,-49.390361306257546,-49.897275775205344,-49.655378196854144,-49.78103123791516,-50.5348165249452,-50.05109191592783,-49.15777717763558,-49.200900482945144,-49.55054121790454,-49.78575719986111,-49.106060489080846,-49.66309277107939,-48.912953455001116,-48.27778092119843,-49.18562141014263,-50.06868358887732,-51.055533677805215,-51.652155733667314,-51.581981199327856,-51.05604028562084,-50.93831473169848,-50.58383537363261,-51.125714228488505,-51.82431189902127,-50.96943134861067,-49.99470334639773,-49.76524774963036,-49.978231134824455,-50.94924021186307,-51.52580859139562,-51.67398675531149,-52.07120973151177,-52.84482464985922,-53.00612717540935,-52.39828203525394,-52.46651249891147,-51.70521964877844,-50.79396123345941,-50.95068086870015,-51.392215309198946,-50.71192396664992,-51.37962893489748,-51.80588884232566,-51.20108530623838,-50.94903271878138,-50.27999281371012,-50.082286186981946,-50.814079691655934,-51.34730824781582,-51.83071590214968,-52.80960687948391,-53.58104947768152,-52.73305821046233,-53.4066454237327,-53.69998423103243,-54.081488891504705,-55.026343752630055,-55.05226551787928,-54.293698720633984,-53.41347430786118,-54.30641602817923,-53.68815051438287,-53.92414193646982,-54.678808082360774,-55.6354485754855,-55.05796741461381,-55.41265897406265,-54.66116407094523,-54.66149308113381,-54.305169594008476,-54.64549744641408,-55.11830696091056,-54.82367910025641,-55.373057176359,-55.58141595032066,-55.99958055699244,-55.03924485342577,-54.40420852415264,-55.1741575258784,-54.769601561594754,-54.62327241059393,-54.35500747524202,-54.71876600431278,-54.54248081240803,-54.89128760853782,-54.73435279447585,-54.176362176891416,-54.20208265213296,-54.112146796192974,-54.444671879988164,-54.35104572121054,-54.72456644149497,-54.15658238902688,-54.98818878270686,-55.014232200570405,-54.119463726878166,-54.715179743245244,-54.663316503632814,-54.15610555931926,-54.77604973129928,-54.91547237476334,-53.979244055226445,-53.140393959823996,-53.26095219934359,-52.75126151693985,-52.48432819452137,-52.04390140157193,-52.02316629048437,-51.74369281763211,-51.46760597359389,-51.29872408229858,-51.91511918278411,-52.38513221871108,-52.80122159328312,-53.174667921382934,-53.186411244329065,-52.66699535027146,-51.78323799278587,-51.96131752198562,-51.63217968959361,-51.28036854835227,-50.82182182604447,-49.98580818017945,-50.154367472045124,-49.76128560397774,-50.24232010077685,-50.41174297686666,-51.12307507917285,-51.85090694203973,-52.79473174223676,-53.00535250129178,-53.28042870527133,-53.23300815559924,-52.309004766866565,-52.44307153020054,-52.12203652272001,-52.04413102986291,-52.83430883008987,-52.640853385441005,-52.63696790719405,-52.68739090906456,-52.79741438059136,-52.673949469812214,-52.35677979653701,-52.766066807322204,-52.41561888437718,-52.12375635281205,-52.02262737834826,-52.3379255249165,-51.699467243626714,-50.83606060408056,-50.79651701916009,-51.30561610776931,-51.51883300440386,-51.65639385860413,-51.80417819134891,-52.77063675178215,-53.12807368254289,-53.370989992748946,-52.56980958674103,-53.017104303929955,-53.54239416727796,-53.432330483570695,-54.12603176245466,-54.66102056019008,-55.4886946734041,-55.12548914179206,-54.457762234378606,-55.23966971831396,-55.33213749155402,-56.25276233069599,-56.64691661950201,-56.32093086792156,-56.122550189029425,-55.969565231353045,-56.92426727991551,-56.36057181702927,-56.78247686428949,-56.48942953301594,-56.95628050668165,-56.210983662866056,-55.84570813877508,-56.76187118142843,-57.018829486332834,-56.63051514979452,-56.59262923011556,-57.184678682126105,-58.07978363474831,-58.8870680751279,-58.31341227935627,-59.289076309651136,-58.57639350602403,-57.57872119732201,-58.33578512771055,-57.58936391817406,-58.410387828946114,-59.1069662803784,-59.35075744939968,-60.001637246925384,-60.65543107362464,-60.84748072177172,-60.93048514286056,-60.096487895119935,-59.3567985794507,-58.9418056323193,-59.84926622407511,-58.85314950114116,-58.08152286801487,-57.9260222222656,-58.32845686702058,-58.29468938196078,-58.7487599151209,-58.58319728542119,-58.15040019946173,-59.052861283998936,-59.04258455056697,-59.81540712714195,-58.90762829314917,-58.303791182581335,-58.18935956712812,-57.50602330267429,-58.130918976385146,-58.548797781113535,-58.66081627877429,-59.233664826955646,-58.42116448748857,-57.47488401969895,-57.6395483026281,-58.28358056163415,-58.60818931926042,-59.42618649452925,-58.70681639062241,-58.534883234184235,-57.725501095410436,-57.57337089627981,-58.41358614573255,-59.23573566135019,-59.69852936454117,-59.97339934622869,-60.51976609788835,-60.2803027080372,-60.2541932919994,-60.32841867208481,-59.74902575695887,-60.694604536984116,-60.3965507382527,-60.55335144000128,-59.849968863651156,-59.6237683375366,-60.33377598924562,-59.465067183133215,-59.227937632706016,-59.80293248174712,-60.62581281689927,-59.657996033784,-60.20571464765817,-59.23500399198383,-59.90273655205965,-60.60397197166458,-61.5440798709169,-62.16804501740262,-62.382487210445106,-61.73405320709571,-61.851053123828024,-61.80694829067215,-62.216495098080486,-63.02941453829408,-63.305043497588485,-63.78296988690272,-64.41478551598266,-64.79152154410258,-64.5640709833242,-63.98335750773549,-64.49689973238856,-64.41982122184709,-63.754678362980485,-64.09172773361206,-64.77260390343145,-64.79973387764767,-63.87051999522373,-64.84635009430349,-64.43974582804367,-63.64983894163743,-62.96480746706948,-63.48921490414068,-63.14208973478526,-62.57303692633286,-62.91137572331354,-63.83429509308189,-63.20846569724381,-63.45619347272441,-63.710897921118885,-63.43230481399223,-63.50432868488133,-63.4844006402418,-63.57619853224605,-62.671940337866545,-63.491771689616144,-63.236632564570755,-62.48041006177664,-63.318038556259125,-64.20760793518275,-63.381082276813686,-63.22941838996485,-62.4403509828262,-62.97461434220895,-63.03747404832393,-62.786284000612795,-62.03023192146793,-62.45131021551788,-62.90913083869964,-61.996263122186065,-61.19595042755827,-61.87759883189574,-60.95297177741304,-61.05705809406936,-60.703469949774444,-61.00766733055934,-61.07785809831694,-60.596842234022915,-60.0976108298637,-59.362935109529644,-58.91728779533878,-58.7203176477924,-57.80003034416586,-56.91081537306309,-57.25819314736873,-56.54972745338455,-55.71137363417074,-55.83647078415379,-55.796890628989786,-55.40567039838061,-55.767269967123866,-55.95671559777111,-56.75330044189468,-56.46062624966726,-56.48433303972706,-56.1097536822781,-56.751915875356644,-57.19147254200652,-57.57054732367396,-57.70009442931041,-57.52621947880834,-57.90086669800803,-58.23679812112823,-58.027872843667865,-58.806820129510015,-58.102761424612254,-57.74426663806662,-57.91502402536571,-58.774946176446974,-58.33170119673014,-57.81687710667029,-57.70139004383236,-57.642231951933354,-57.79298030817881,-57.41256208624691,-57.24152355827391,-57.852517736610025,-57.68348655896261,-58.07602509111166,-58.606185825075954,-58.77206850796938,-58.480356324929744,-57.737632220145315,-58.53882461693138,-59.330480453558266,-59.12455254374072,-58.13324998272583,-58.07388481730595,-58.93909326009452,-58.52642368897796,-59.47080641333014,-58.57295742072165,-57.63893412332982,-56.739552076440305,-56.42555271135643,-57.25245839217678,-56.46063368488103,-56.67779194191098,-57.57261741301045,-56.912366232834756,-56.035005427431315,-56.060790674295276,-56.58381701540202,-56.31668967055157,-55.39436393743381,-55.586434164084494,-55.40302048064768,-55.41275089094415,-55.747798478696495,-56.22261829301715,-55.863836618606,-54.89807593077421,-54.07081975508481,-54.33160730358213,-53.428527670912445,-54.26249299198389,-55.16497346106917,-54.86240166146308,-55.52479111496359,-56.10574997961521,-55.215938817709684,-55.97778184898198,-56.96834392659366,-56.72258452931419,-57.42843593843281,-57.59128857124597,-58.508290827739984,-58.41760723851621,-58.39209895627573,-58.36912183556706,-58.57404048740864,-58.64255729597062,-58.61622236482799,-58.17773775663227,-58.69564597355202,-58.282373641151935,-58.544992161914706,-58.95149255823344,-59.648810958024114,-60.6449453481473,-60.76946095423773,-61.170474289450794,-60.60650049056858,-60.19283123034984,-59.54545962996781,-59.46737497486174,-59.04260589834303,-59.48853566357866,-60.0272645954974,-59.6248716278933,-59.95453318674117,-59.73884846409783,-60.214946252293885,-61.19785729981959,-61.1997546791099,-61.845536092761904,-62.50848430395126,-61.77820457657799,-61.3361274683848,-61.30930138239637,-61.77831432269886,-62.23836694750935,-61.649977839086205,-61.3340209540911,-60.93550704885274,-60.67262434028089,-61.224304754752666,-62.07396740093827,-63.058743252418935,-63.34817802067846,-62.77157547371462,-63.48647517384961,-62.54804585920647,-61.9300871710293,-62.65247272187844,-62.42723903385922,-61.959969317074865,-61.812773363199085,-61.051096968818456,-61.687914399430156,-62.1513676578179,-62.72851968323812,-63.30676420778036,-63.63593228068203,-64.56969167245552,-64.3183828489855,-63.66637152759358,-64.44715314777568,-64.03175159497187,-63.73742733942345,-63.713930738158524,-63.85407106671482,-64.28298254217952,-65.02585959713906,-65.82863335357979,-65.9978788155131,-65.2011963808909,-64.48852300457656,-65.00004672817886,-64.76183588337153,-65.08285473613068,-64.4488293658942,-64.04987712344155,-64.92734558414668,-65.7029919642955,-64.87012675451115,-65.44238014705479,-65.65107913315296,-66.61370887514204,-67.45141401374713,-67.266833959613,-66.3463711924851,-66.27248653536662,-66.72797664068639,-65.9833587068133,-66.51345678698272,-66.9325773473829,-67.21919235959649,-67.13924877950922,-67.52725840033963,-66.82358785811812,-66.26932943426073,-65.6080421982333,-65.56175603391603,-66.47706029331312,-66.53719425480813,-66.28292366070673,-66.10103137837723,-66.20016334624961,-65.26407239446416,-66.07443231577054,-65.71945054689422,-66.57107625762,-66.9455012474209,-66.6744385221973,-66.75907190982252,-66.26148993289098,-67.18725250847638,-68.12255950737745,-69.0636689462699,-69.71464866958559,-69.40852308506146,-68.47119025606662,-68.93590090004727,-69.9038918162696,-69.6964813619852,-68.96724401740357,-69.09578703995794,-69.27587817236781,-69.8683486962691,-68.96120952442288,-68.24601950729266,-69.05755843454972,-69.69260470755398,-70.15151551133022,-69.21733071980998,-69.81520466506481,-70.23699339199811,-71.21649343241006,-72.1767936157994,-71.30146993556991,-71.21343696722761,-70.47170236799866,-69.76496604410931,-69.4788842764683,-69.35435672430322,-70.16973850829527,-70.20517110731453,-69.26139195403084,-69.47687888378277,-69.79371385509148,-69.59297622693703,-68.82743720943108,-69.62279040552676,-70.60297633428127,-71.44575511105359,-71.32506944425404,-70.39125754823908,-71.26163376355544,-71.32748982077464,-72.19525162409991,-71.26878653420135,-72.26784813543782,-73.04326364537701,-72.1517179934308,-72.69944477733225,-73.37861053599045,-73.39858484035358,-72.43771762773395,-71.82232092600316,-72.25751843163744,-71.52804475557059,-71.71380730578676,-70.95579458214343,-70.94399580685422,-70.33760021440685,-70.76760049490258,-70.02692075772211,-69.17151034390554,-68.39108781190589,-69.28611171944067,-68.9983044094406,-68.5326482062228,-69.41520219482481,-70.30808331258595,-69.81517386436462,-70.2291857060045,-70.54327394394204,-69.92927702562883,-70.11940810782835,-70.81419420707971,-70.60002887388691,-69.8698977008462,-68.9519156315364,-69.73858898459002,-70.4880655365996,-69.62442115135491,-70.61375642195344,-71.11036460613832,-71.7413402767852,-71.63476260378957,-71.4666318949312,-71.34281985694543,-72.20534377871081,-73.13283000141382,-72.46790185524151,-72.28133456548676,-72.83101402875036,-71.87675011623651,-71.53971165977418,-70.97249769838527,-70.52287332573906,-69.5485002817586,-70.38033468229696,-70.51166894799098,-69.58251229347661,-69.05241435626522,-68.80278214951977,-69.2782826051116,-68.29390826169401,-68.28814010182396,-68.5640618018806,-68.15052907029167,-67.97685656929389,-67.48207869520411,-67.60352591518313,-67.95808362821117,-67.3825421682559,-67.03275779215619,-66.34757273225114,-66.07033145567402,-66.64950164500624,-66.68375027785078,-66.25825544120744,-66.19018915155903,-66.92380601819605,-66.44165609171614,-66.16860214574262,-66.29607762768865,-66.0180462487042,-65.11114636110142,-64.1280598170124,-64.95316626271233,-65.17984770284966,-64.43731282884255,-63.69989171018824,-64.66922227153555,-64.83639487996697,-64.53491624305025,-64.01030945777893,-64.55951819149777,-65.55048845242709,-65.55422002123669,-65.40496064303443,-65.2998338509351,-64.55494485795498,-64.62938371673226,-64.44178146542981,-63.52720259455964,-64.26522777369246,-63.4153495891951,-63.64479835983366,-63.28572773048654,-62.513073111884296,-61.518822360783815,-62.18144807033241,-62.657325736247,-62.91741644823924,-63.86483895080164,-63.908943380694836,-63.303742431569844,-62.60428010299802,-63.0362603366375,-63.17707588756457,-62.370805906597525,-63.142608805559576,-62.39979846216738,-61.573437748942524,-62.36727985134348,-62.47496353928,-61.723511322401464,-61.9674354493618,-62.763342559337616,-62.44375561317429,-62.197942602448165,-62.86644377745688,-63.84320464823395,-62.84424572903663,-63.28460989892483,-62.50893473578617,-62.84888802142814,-62.14103168435395,-61.624689143616706,-61.879623535089195,-61.52216218272224,-61.526738004758954,-60.82235286664218,-61.678976371418685,-61.73149012820795,-61.02732274448499,-60.27112771756947,-60.19170160032809,-60.93986636446789,-61.13719988008961,-61.04722184687853,-61.26848649326712,-62.18521919939667,-61.39655804494396,-61.12247517844662,-61.9391833669506,-62.912441230379045,-62.880155726801604,-62.24627746967599,-62.51738723972812,-62.89290457125753,-62.651581070851535,-62.291049886029214,-62.186938483733684,-61.895739863161,-61.35524483257905,-60.77259434154257,-60.34400352835655,-61.212652632500976,-60.644789177924395,-61.429475718177855,-60.79080001078546,-60.17696730187163,-59.280675794929266,-58.57726807612926,-57.974220394622535,-57.66723310947418,-57.64627057639882,-57.41617643786594,-56.58994234446436,-57.34132171981037,-58.15427018236369,-57.42523210961372,-57.52458062488586,-58.459780590143055,-58.74074190063402,-58.26089655701071,-57.41026477329433,-56.50349477445707,-56.20118592027575,-56.451963879633695,-55.98124363273382,-55.40216712793335,-54.41388261085376,-55.33519854769111,-54.66973192244768,-55.6585646411404,-56.101646814029664,-57.05334518942982,-57.8943340620026,-57.04721392830834,-57.27166283503175,-57.018800641875714,-56.21467109257355,-56.45715782279149,-56.40791314840317,-57.39696002192795,-57.362272730097175,-56.69980958243832,-56.47919692564756,-56.01675516599789,-56.05127730732784,-55.56585306767374,-55.96643404616043,-55.60329266358167,-55.463894713670015,-55.489249997306615,-54.72927190596238,-55.218192781321704,-55.66696615004912,-55.284191380720586,-54.34558123582974,-54.73312061466277,-54.195427916012704,-54.40167187526822,-55.21933541027829,-55.70416914252564,-54.782560711726546,-55.15527883917093,-54.800921336282045,-55.16893967194483,-55.87139033107087,-56.00975785171613,-56.96540839178488,-57.0806975713931,-57.98237959854305,-57.22128629358485,-57.04447661759332,-57.91101150074974,-58.86544379591942,-58.476731376722455,-58.14375784993172,-57.92789904540405,-57.88668107893318,-57.10190143622458,-57.48841614974663,-57.369284241925925,-58.138324953615665,-58.50374908838421,-57.83555744076148,-57.54546411242336,-56.565347149036825,-55.660672747995704,-54.70765204774216,-54.24038604833186,-53.90794588346034,-53.653342510107905,-53.851794047281146,-53.79258133145049,-53.03334957873449,-52.05589962657541,-52.80366390896961,-53.78356564324349,-53.69422007864341,-53.50102334422991,-53.409927969332784,-53.502035196870565,-54.2530523953028,-54.09447568235919,-53.133847216609865,-53.847337685059756,-53.088602646719664,-53.621033906470984,-53.07888789847493,-53.660187914036214,-52.749061142560095,-53.424863687716424,-52.878568462561816,-52.80377958249301,-52.491766854655,-51.99510585376993,-52.46899268729612,-52.77433738298714,-52.414110235869884,-52.32297573797405,-52.868700307328254,-53.28561289282516,-52.39066792931408,-53.35766758164391,-52.86007529636845,-53.22405069647357,-52.313152491580695,-52.02957876538858,-52.843950730748475,-52.014940429944545,-52.6651169732213,-53.047715534456074,-52.4268298484385,-51.5179127776064,-51.57684559095651,-52.23600813560188,-52.269974634982646,-52.00760721229017,-52.430890826974064,-53.241172447334975,-54.06369167100638,-54.803592717740685,-55.21697639906779,-54.5086211594753,-53.97155717154965,-53.65394219150767,-53.16432904591784,-53.65451967623085,-52.929282108321786,-53.03747902903706,-52.350158461369574,-51.934369078837335,-52.13328135292977,-53.064721872564405,-52.48174692923203,-52.94768290268257,-52.36738923098892,-52.827533840667456,-51.98817774653435,-52.12985088862479,-51.411247891839594,-51.801663564983755,-51.3195093148388,-51.49214087007567,-52.066207194235176,-51.29071008646861,-52.21521881595254,-51.23191633448005,-51.6598530379124,-50.831307355780154,-50.29594333982095,-50.298928793054074,-49.46035515703261,-49.23386770905927,-49.7033216948621,-49.25820011086762,-48.75806032214314,-48.41434651147574,-49.36204971000552,-49.59212177898735,-50.31521521275863,-50.61630021687597,-51.34996642637998,-51.52167730033398,-51.73595042852685,-51.8097905004397,-51.13455384410918,-51.99265474965796,-52.81580605311319,-52.27198207844049,-52.475379679352045,-51.64259629929438,-52.207961892709136,-52.87260594172403,-52.31263301940635,-52.325075031258166,-53.22215299960226,-52.68485091160983,-52.47371415607631,-51.80698184343055,-51.372965997084975,-51.37988145230338,-50.8779574399814,-50.21463646693155,-50.75088350428268,-51.04937999835238,-51.91241041896865,-52.38651278754696,-51.70121377333999,-51.20701584406197,-51.41156130749732,-51.15151854464784,-51.224942963570356,-51.55818024184555,-50.678747369907796,-49.929397540632635,-50.39758697478101,-50.152004826348275,-50.55804322147742,-50.888380537740886,-50.6345045613125,-50.13335644919425,-50.24041956476867,-50.49932300904766,-50.22799882199615,-50.5878747375682,-50.63389252591878,-49.876045333687216,-49.162165589630604,-49.861676533240825,-50.666665815748274,-51.19167846348137,-51.51377236703411,-51.40609426796436,-51.3489941987209,-51.188766518607736,-50.5346994260326,-50.58590618893504,-51.15326236048713,-50.97816589754075,-50.57497949991375,-50.334459078498185,-51.227599726524204,-50.4005025587976,-50.34583307756111,-50.69702695682645,-50.41077480185777,-49.81754666054621,-50.26061295066029,-49.865552387200296,-50.07485540676862,-49.25328292744234,-49.975015208590776,-50.87745468923822,-51.60777088068426,-51.19115852704272,-50.318657318130136,-50.18893041694537,-50.91638476913795,-51.665925432462245,-52.470800975337625,-52.44281044602394,-52.626642070245,-52.37085944460705,-53.29192578420043,-53.75618076277897,-54.20617377618328,-54.948953666724265,-53.96560945734382,-54.805226172320545,-55.71414098562673,-54.889932773076,-55.48179198615253,-56.37425284925848,-55.55249609006569,-55.89150242507458,-55.97800568025559,-56.086195648647845,-55.339411061257124,-56.237562901806086,-55.29202964901924,-55.582560376729816,-55.93436371535063,-55.573556813411415,-56.01764933299273,-55.157240661326796,-54.27815116988495,-54.566459089983255,-54.214055948890746,-53.58977784682065,-53.36657199077308,-54.04188309144229,-54.50718317460269,-53.983150500338525,-54.17364513454959,-54.014286356046796,-54.20813093613833,-53.91618574317545,-53.12479866994545,-53.74558703461662,-54.41692850366235,-55.25058610923588,-54.85790712805465,-55.60450679343194,-56.49412940023467,-55.59070998523384,-55.26629142696038,-55.29154600109905,-55.73219141503796,-56.02970743784681,-56.123428609687835,-55.54380400199443,-56.448086010757834,-56.65933725470677,-57.30487651005387,-57.97867291048169,-57.96092736907303,-57.231800930574536,-57.48400761606172,-57.8960674488917,-57.38737754523754,-56.49124392680824,-56.84747377317399,-57.44139269925654,-57.20225694403052,-57.321893374901265,-57.96472569555044,-57.28227836638689,-57.77922667749226,-57.57787861255929,-57.70023398846388,-57.321270033717155,-56.84761482011527,-57.61289591807872,-58.17574795661494,-58.00084155192599,-57.98163601150736,-58.253588060848415,-59.246340591460466,-58.25016845436767,-58.36349437944591,-57.92695404216647,-57.540146892890334,-56.67488274956122,-55.91402765875682,-55.703486499376595,-55.85981565108523,-55.41891334671527,-54.80135188577697,-54.629965958185494,-54.61250153463334,-54.49067346053198,-55.32680426398292,-55.04241836769506,-55.842183134518564,-56.19511654600501,-55.402107261586934,-56.00224380940199,-55.37278499407694,-55.489485738333315,-56.05550449248403,-55.844541776925325,-55.41633651778102,-55.0899098967202,-56.018294394016266,-57.00688627688214,-56.91078076278791,-56.57692823279649,-55.8874811748974,-55.22833782620728,-55.44985983148217,-56.13290370022878,-56.174068613909185,-56.889018894638866,-56.66644810512662,-56.32801860431209,-57.213519057258964,-56.555491278879344,-57.10017871437594,-57.46378720831126,-57.305432150140405,-58.15247846907005,-58.00035883393139,-58.639517152216285,-59.392251510638744,-58.54294388787821,-58.990079570095986,-59.858613442629576,-59.27175176329911,-59.55383792985231,-59.5395590425469,-58.90112899616361,-58.38080751756206,-58.47182750888169,-59.34318715892732,-59.78197156591341,-58.79856338445097,-58.4109226972796,-58.28129910584539,-59.109367120079696,-58.28583921678364,-58.266550556756556,-57.484822855796665,-57.923886029049754,-58.61274218838662,-59.44159821048379,-58.891641810536385,-59.61645628279075,-60.35327187133953,-59.95180049119517,-60.33513328526169,-60.32644300162792,-60.402611889876425,-60.096989665180445,-60.475990218576044,-61.27032514149323,-61.299160443712026,-62.019794285297394,-62.11814776714891,-63.077726416289806,-62.904016009531915,-62.08306337054819,-62.56980676902458,-62.35163098759949,-62.29513906035572,-63.01725607877597,-63.648856023326516,-63.738438848406076,-64.4588727010414,-64.08691124850884,-63.86954553285614,-64.78914486803114,-65.32659035734832,-64.6493503623642,-64.99762106034905,-64.03345228545368,-63.7379687782377,-64.47604391630739,-65.04880559630692,-65.72380099771544,-66.43824659800157,-65.68140289653093,-65.3717329185456,-66.2413187623024,-66.46787392953411,-66.32574412412941,-66.08582099247724,-65.22994115017354,-65.297485192772,-65.1416353629902,-65.37595827737823,-64.42175742657855,-64.93719785520807,-64.69544730428606,-64.62338182143867,-65.38036672119051,-64.40298661915585,-63.499660809058696,-63.06365674594417,-63.02865755697712,-63.65331779886037,-62.773326894734055,-62.09534571599215,-62.55675369920209,-62.314506084658206,-63.232135015074164,-64.05427358718589,-63.345372253097594,-62.92784181423485,-63.14536016713828,-63.31521859811619,-63.13256942620501,-63.15732164680958,-62.23341804090887,-62.375689409673214,-61.54323575552553,-60.920575339812785,-60.04102869844064,-59.90435656905174,-59.90536513365805,-60.23579735215753,-59.523520244285464,-58.752668825443834,-58.23621305497363,-57.552398099098355,-57.39256458217278,-57.26284392550588,-58.2422739258036,-58.8993702721782,-57.957080819644034,-58.858142332173884,-59.10227661021054,-59.74526894278824,-59.43539808364585,-58.64114629756659,-58.647666229400784,-58.8325788336806,-58.30992285022512,-58.222252999898046,-58.56049397960305,-58.7290239748545,-58.76036653900519,-57.92278553638607,-57.35862156515941,-58.18801292637363,-58.16896642791107,-57.504665547050536,-57.72533314023167,-57.83371673896909,-56.89071572944522,-55.90794403338805,-55.14826460136101,-54.70022730762139,-55.084220436401665,-54.514920317567885,-54.16509531438351,-53.28959120251238,-53.81203704467043,-54.69758254522458,-53.82227668026462,-54.754056993406266,-53.91421776358038,-53.39859475940466,-52.73003055062145,-53.011956652160734,-52.130011077504605,-51.88434503413737,-51.31824373919517,-50.65564119908959,-50.23779156804085,-49.50950919510797,-49.414929021149874,-50.3090255940333,-50.55084507772699,-49.95991255156696,-49.11440288135782,-49.64648346276954,-50.60392002295703,-50.66524928342551,-50.326771094463766,-50.20967755513266,-49.37475822167471,-49.104029475711286,-49.32981255510822,-48.95277189509943,-48.081365761347115,-47.82640138827264,-48.749155645258725,-48.51348125189543,-47.864716003183275,-47.19800677429885,-48.06514851981774,-47.285963563714176,-46.41313903266564,-46.817320198286325,-46.68464179337025,-46.13572160480544,-46.95878379745409,-46.8766885898076,-46.21406631823629,-45.756674902979285,-46.53922382090241,-45.804194959346205,-45.69051036564633,-45.76081228116527,-44.86480585485697,-43.9943808875978,-43.23490942874923,-44.100396963302046,-43.32219113595784,-42.51117143034935,-43.357038578018546,-43.041199212893844,-43.907772409264,-44.75751818949357,-44.904674500226974,-45.31540870945901,-46.30767079023644,-46.47845910303295,-47.44892650377005,-46.494092526845634,-45.61439286265522,-45.931167046539485,-46.23095650225878,-45.30663477489725,-45.683115486986935,-44.84685815591365,-44.0342734423466,-44.29426393797621,-43.58688637427986,-44.36029401188716,-43.666223160456866,-44.232786235399544,-43.97338711982593,-43.0920372242108,-43.314501957036555,-43.14588006166741,-43.64431000268087,-43.77293135225773,-44.07100249547511,-45.059261383488774,-45.45453469082713,-45.469202807638794,-46.26372993784025,-47.032912981230766,-47.73737212643027,-47.03731285780668,-46.74075298849493,-46.70198458293453,-47.583243128843606,-46.70888112904504,-45.80810225754976,-45.350667285732925,-46.26356251118705,-46.6942251608707,-47.0638904646039,-47.36487818788737,-47.537591262720525,-46.58345716120675,-46.420913259964436,-46.001558606512845,-46.267877887934446,-47.204806808847934,-46.71067039296031,-45.81227444065735,-45.560705702751875,-45.30435980670154,-45.45239478955045,-45.582534274086356,-45.97607914870605,-46.03773489873856,-45.298188662622124,-45.02000215649605,-45.673100780230016,-45.917801284231246,-45.910493256058544,-45.348322639707476,-44.49923354201019,-44.659161978401244,-45.4272885187529,-46.09380177175626,-46.6304309014231,-46.98610339453444,-46.52817232394591,-46.17147426214069,-46.07762914709747,-46.660289904568344,-45.898796659428626,-46.85799837578088,-47.711158462334424,-46.76182333892211,-46.71150673320517,-46.0293659940362,-46.316008111462,-47.0817389478907,-46.51718433620408,-46.117633496411145,-46.14395487494767,-46.78376630693674,-46.40073359152302,-45.43926589982584,-45.82885918067768,-45.01675680000335,-44.72575311595574,-45.28513131989166,-45.49072901532054,-44.73171223234385,-43.9055227516219,-43.4688614574261,-44.3896005875431,-44.596759013365954,-45.20415229490027,-45.48745048046112,-46.349147805478424,-47.22177736600861,-47.89219297422096,-47.61620504595339,-46.648504570592195,-47.134098685812205,-46.76636869413778,-46.16612456785515,-46.778429232072085,-47.387155363336205,-46.583727325778455,-46.36185918562114,-46.463978432584554,-46.68947577662766,-45.78390388842672,-46.46286640223116,-45.78965647658333,-46.69558506505564,-45.83329799165949,-45.98226036503911,-45.66217257687822,-45.44287510495633,-44.71517804870382,-45.46495991386473,-46.31410010019317,-46.59332213271409,-47.32467600470409,-47.53721192618832,-46.823019235394895,-47.167581781279296,-46.4316771319136,-46.929455175530165,-45.97201891569421,-45.134049490559846,-45.80935024516657,-45.98520128009841,-45.45325066987425,-44.57083102175966,-43.98440337087959,-43.72611309355125,-43.2222213819623,-43.1876871380955,-42.85500422446057,-42.1381726199761,-41.57489592162892,-41.5121435332112,-40.76333973603323,-41.16837934497744,-41.34993972396478,-42.259725543204695,-42.0253592832014,-42.49838713230565,-42.304081136360765,-41.66504208184779,-40.97880940232426,-40.626455476507545,-40.83572891866788,-40.81378202466294,-41.35947738215327,-41.65989515604451,-41.643376043997705,-41.443032500334084,-41.9276889115572,-41.59443637728691,-41.95992351323366,-42.882415662519634,-42.77470771735534,-42.60439662821591,-41.740451416466385,-42.50072250235826,-42.81492465781048,-41.92379303416237,-42.42716890480369,-42.60446138540283,-42.37796557229012,-43.29558806680143,-43.82419327972457,-44.27426558639854,-44.31497338460758,-43.782551773358136,-43.25589099340141,-43.584119469393045,-43.509077727328986,-42.87057106010616,-42.486549575813115,-42.27931278338656,-42.411209295038134,-42.81902521010488,-43.19900336768478,-43.345654701348394,-42.44567483570427,-42.6040308997035,-41.9033153578639,-41.3948480328545,-41.99726124526933,-42.28570691682398,-42.784343170933425,-43.78138643084094,-43.85505861742422,-44.205114856828004,-45.15507867280394,-45.500228219199926,-44.51491357572377,-45.371078754775226,-44.63048722408712,-44.97908703889698,-44.88611752772704,-44.01119971182197,-44.993034668732435,-45.148171603213996,-45.330837045330554,-44.44477238878608,-44.653307596221566,-45.390632069669664,-44.68060257798061,-43.82305440166965,-44.80245228949934,-44.61174940690398,-45.4370698784478,-45.952146988362074,-45.883981295861304,-46.602879274170846,-47.383220391348004,-46.46779327141121,-47.06535401055589,-46.68690411141142,-46.65594420954585,-46.48103203531355,-47.451987185981125,-47.51201712805778,-48.3263796553947,-48.755119962617755,-48.10509318113327,-48.938597603701055,-49.02066877391189,-49.98531951382756,-50.8148168339394,-49.98804930411279,-49.00068783899769,-48.42587915668264,-48.24534935923293,-48.060582966543734,-47.26659366302192,-47.458611853886396,-46.53947849571705,-45.75963532552123,-46.69525007158518,-47.256134561263025,-46.60067561501637,-47.059671870432794,-47.77549977460876,-48.19141244934872,-49.153010873124,-48.854805431328714,-48.765621955506504,-48.53937959112227,-47.954203011933714,-48.030288679525256,-47.144205392804,-47.01426406856626,-47.5280396649614,-48.30908262031153,-49.29344733292237,-49.97174366051331,-49.13943195622414,-48.51430475478992,-49.23724836902693,-48.8268781285733,-49.30139270750806,-49.08748488454148,-49.231660491321236,-50.15191960148513,-49.19549445156008,-49.66309286467731,-49.61324530793354,-49.7779330490157,-50.38420941401273,-50.29948564758524,-50.826025208923966,-49.919640502892435,-49.59466885495931,-49.328415538650006,-49.43880535848439,-49.94801877019927,-49.1404305389151,-48.69467534683645,-48.75230903411284,-47.871203045360744,-47.17174557968974,-46.18528540385887,-45.58870798209682,-45.25299881445244,-44.88383969012648,-45.81564033217728,-45.14078125404194,-46.04137019207701,-45.83112594112754,-46.612810937687755,-47.10098063526675,-47.659248350188136,-46.87568401452154,-46.205263576004654,-46.191655170638114,-46.02728812163696,-45.27819013828412,-44.757160264998674,-45.218975827563554,-45.07596657983959,-44.935752232559025,-44.309739430435,-43.68767785187811,-43.48432006780058,-44.219409071374685,-44.23168323980644,-45.0158910676837,-45.177928258664906,-44.78097800957039,-44.921356031671166,-45.9126038714312,-46.37114821886644,-45.38112033717334,-44.91612429730594,-44.7019798476249,-44.90627792198211,-45.53914588177577,-45.76854989444837,-45.14703751169145,-45.10308089479804,-44.673882890027016,-44.64971504174173,-44.981245710514486,-44.07157244114205,-44.73968959087506,-45.003873883746564,-45.28897638199851,-44.71840506885201,-45.48600972816348,-44.638860662002116,-44.542285210918635,-44.81045298697427,-45.328049493953586,-45.78433326911181,-45.36082303663716,-46.03265834460035,-46.24997326685116,-45.872950659599155,-46.80528350453824,-46.01603933935985,-45.79384592641145,-44.86281735915691,-44.036607950460166,-44.8097537914291,-44.02827639179304,-44.97834297968075,-45.11640505678952,-44.25231750961393,-45.09470189502463,-45.31544615747407,-45.63523842347786,-44.69511851249263,-43.907549660652876,-43.03791748965159,-43.28070783475414,-42.33386398013681,-41.42852244107053,-40.736334485933185,-40.76495942752808,-40.37369656842202,-41.23351824097335,-40.60942756058648,-39.62158359820023,-39.0899279252626,-39.31515863351524,-40.220145215746015,-39.35753803793341,-39.92480083880946,-39.09763363096863,-39.09190227044746,-38.52980716526508,-39.1743407282047,-39.669755848590285,-39.14155581826344,-39.80161225842312,-40.35504029178992,-40.22465940704569,-40.55457050958648,-40.96219337778166,-41.63472137413919,-41.862856613937765,-42.29707286367193,-41.53277785005048,-41.26551044732332,-41.376791088841856,-41.363925353158265,-42.115810154005885,-41.79287555068731,-41.88912212336436,-42.54202138772234,-42.09365468332544,-42.84022794198245,-42.746497944928706,-43.56074201827869,-42.80041384510696,-42.08702432177961,-41.37818240560591,-41.787589023355395,-41.988643613643944,-42.7469749879092,-43.378351349849254,-43.52637305809185,-43.07457449473441,-43.09491486707702,-42.62159049930051,-43.511419479269534,-44.2761330450885,-43.47572437254712,-43.88378250878304,-44.27755317790434,-45.22692044172436,-44.25525706866756,-43.931276831775904,-44.42359000444412,-44.99804478697479,-45.18975393008441,-44.46388477552682,-44.78767711902037,-45.700395913328975,-45.85271520540118,-45.93181506590918,-46.811473154928535,-46.817233585286885,-46.197051520459354,-46.42065720772371,-47.20543512003496,-46.591175492387265,-46.356897198129445,-46.41206728667021,-45.841630605980754,-45.14157615415752,-45.666139686480165,-46.23469689814374,-46.003206794615835,-46.826553595717996,-47.39920981414616,-47.29154981253669,-46.680868743918836,-46.68544148048386,-46.88752690143883,-47.606299565173686,-46.690706856083125,-46.60471220314503,-46.44814285635948,-45.78769682580605,-45.95454383501783,-45.805987478233874,-45.44824307411909,-46.29491937113926,-46.194733852520585,-45.21791960764676,-44.58463261835277,-44.05219565611333,-44.05757830431685,-43.87817464116961,-44.6739158318378,-45.31269659334794,-46.04932744381949,-46.00848522596061,-46.12717228522524,-45.918987803161144,-46.05580784520134,-45.67317436542362,-46.3594251004979,-45.97859646938741,-46.15775513788685,-46.90561036672443,-47.345727930311114,-48.09435880044475,-47.48137878300622,-48.11458908719942,-47.265768359880894,-47.91528246644884,-48.06068475591019,-47.31455634534359,-47.15133204637095,-46.37122004991397,-45.6320986202918,-45.142985217273235,-44.19193915743381,-43.75741421477869,-43.96744760638103,-44.0498280110769,-44.44501770334318,-44.27589578181505,-44.787108878139406,-44.18591139558703,-44.77679424546659,-44.80530411330983,-45.577356543857604,-45.46143558854237,-44.46317045111209,-44.378358353395015,-44.55001399619505,-45.2862888998352,-44.6490549785085,-44.39531586365774,-44.31957682594657,-44.71763904532418,-44.52971142530441,-44.483063189312816,-45.43736364459619,-46.031522281467915,-46.74500258034095,-47.596015110146254,-48.540179145522416,-48.0329193030484,-48.88890978321433,-49.86705312738195,-49.9521155115217,-50.34470868203789,-50.21128419227898,-49.310474591795355,-49.135237441863865,-48.9834793144837,-48.03256249194965,-47.05024064145982,-46.95187900401652,-47.799987227190286,-47.46029754681513,-46.668236755765975,-46.42102859495208,-47.1559132989496,-46.29033343587071,-46.41274314234033,-46.03675640653819,-45.392348480876535,-45.352112017571926,-45.217685292474926,-45.29327983409166,-45.36932405922562,-44.825366030447185,-44.46494813449681,-44.72753741918132,-45.493297163862735,-44.70590257178992,-44.15952233271673,-44.84008387941867,-44.477064905222505,-45.44117053830996,-46.40162442158908,-45.82233848050237,-44.93404896231368,-44.98175258282572,-45.927298001013696,-46.2778781587258,-46.85676469281316,-47.623360054101795,-47.11184465652332,-46.470189162995666,-45.87788750277832,-46.6397172389552,-47.31444833893329,-47.96798221161589,-48.19601478241384,-48.01349874492735,-48.8016434260644,-49.46614903351292,-49.19713240908459,-49.693784615024924,-49.09318475238979,-50.03508943505585,-50.1861910787411,-50.971631611697376,-51.057836233172566,-51.141065591946244,-50.97398642497137,-50.143345846328884,-50.07188347307965,-49.23781328974292,-48.58797956770286,-48.301257531158626,-47.99655237933621,-47.33791350899264,-46.99002134939656,-47.51618614513427,-47.56794609874487,-48.061302927322686,-48.05024348851293,-47.67704698489979,-47.24521921528503,-47.694175503216684,-47.178524260409176,-47.666103781200945,-48.31274644937366,-47.39658483117819,-47.08601240813732,-46.63178160972893,-46.42779696453363,-45.726350670680404,-46.359254457987845,-45.525810931343585,-45.52737230574712,-45.89038797514513,-45.611664194148034,-46.34905427088961,-46.37790992716327,-45.62924567097798,-46.26922725094482,-45.36668167728931,-45.771421859040856,-44.988942502997816,-45.32427312619984,-45.548379253130406,-45.87718195235357,-46.62333009019494,-47.43911337479949,-46.57621810398996,-47.331728911492974,-47.496247770730406,-46.55726201739162,-47.1260353224352,-46.52270702365786,-47.23583279363811,-48.004349193070084,-47.82703154115006,-48.083931419067085,-49.05690879188478,-49.592516573145986,-49.04992404114455,-48.38819797895849,-48.55617245612666,-49.108321672305465,-48.45841477252543,-47.640698824543506,-46.680359771475196,-47.4240526300855,-47.99079772969708,-47.814943806733936,-48.09269248927012,-48.96489148866385,-48.38323980430141,-48.84394849976525,-49.817944631911814,-50.37269252818078,-51.2195988628082,-51.65316666709259,-51.170326702762395,-51.146879790816456,-51.15626525459811,-52.04393980419263,-51.95302620250732,-51.454340698197484,-50.586507299914956,-49.75947626493871,-48.962656632997096,-49.077377115841955,-48.30906301597133,-47.634057592600584,-47.421995270531625,-47.60158449457958,-46.913865089416504,-46.05625683395192,-46.220839876681566,-46.29490082943812,-46.91565029649064,-47.31781623000279,-47.08772843750194,-47.04912986001,-46.3850785321556,-47.007084163837135,-46.2193998596631,-46.53791501140222,-45.95987935690209,-46.30830035312101,-46.6464954293333,-46.50331822410226,-45.77183256065473,-46.61247401824221,-45.849208048544824,-46.44416034035385,-45.55161070963368,-45.51190530555323,-46.050006282515824,-45.99399171723053,-46.08888807101175,-46.95092303585261,-47.52837430406362,-47.173137025907636,-46.91859051771462,-46.07162592513487,-45.52092361263931,-44.611012667417526,-45.355190401896834,-44.99151017842814,-45.075784949585795,-45.324672975577414,-44.658487173262984,-44.270679044071585,-43.51822715997696,-42.81913640955463,-43.72902242746204,-43.76121489191428,-43.59973158035427,-44.1581369577907,-44.701937835197896,-44.985741721931845,-44.73259803606197,-44.507386015262455,-45.04985166573897,-44.30163533752784,-44.862420110497624,-44.917158427648246,-44.961917109787464,-44.797770229168236,-45.586656745988876,-44.6548155550845,-43.96606469061226,-43.10796315362677,-43.845010448247194,-44.13177464483306,-43.66172623867169,-43.74143071984872,-42.82166215404868,-42.80171548668295,-43.237791194114834,-43.08150310954079,-42.80253049824387,-41.931515858042985,-41.922463678754866,-42.28040685877204,-41.53390929847956,-41.8349851234816,-42.14494283311069,-41.67369882296771,-42.5634939474985,-43.378929388709366,-43.18509908299893,-42.29331243271008,-41.30126827163622,-40.32601140299812,-39.34715314023197,-38.89016087399796,-38.09820917993784,-38.8298261417076,-38.117225860245526,-37.53612841619179,-37.52098736772314,-37.46709295641631,-37.076504833996296,-37.77095044730231,-37.57166629564017,-36.932348801754415,-36.4940387532115,-36.95903421938419,-36.06541337072849,-36.04501092154533,-36.344617918133736,-35.844512310344726,-34.906423391308635,-35.632605839986354,-35.49828873341903,-36.43454537447542,-36.09598178928718,-35.91009483579546,-36.33637997182086,-36.389547345694155,-36.60614986345172,-37.229334075935185,-36.61684835283086,-36.87558858375996,-36.75223375251517,-37.084113066550344,-37.62731519527733,-38.06445098808035,-38.04695731960237,-38.169890326913446,-38.043834801763296,-38.92442354699597,-39.243059461936355,-38.91501327045262,-39.59594199853018,-39.99197237426415,-39.85984260030091,-40.491513764020056,-39.630704573355615,-40.296322986949235,-40.60598788270727,-40.77565897721797,-40.06172188697383,-39.55205534165725,-39.10902536055073,-38.41021613450721,-38.119858803693205,-38.003437207546085,-38.08548045530915,-37.45120524894446,-36.464052768889815,-36.00000058207661,-35.576463021337986,-36.369422438554466,-35.53375117806718,-35.45967749180272,-35.353980142623186,-36.038103342056274,-36.78092355187982,-37.300852857064456,-37.76116196671501,-38.66092495759949,-38.45558210974559,-39.395225630607456,-40.34977799234912,-40.66268566576764,-40.51328538637608,-39.91633261414245,-39.98478454630822,-40.104875061661005,-40.490015257149935,-41.23968791728839,-42.203647966030985,-42.971843731589615,-43.593831656035036,-43.87378403078765,-44.68017925787717,-45.66375485248864,-45.29341911198571,-44.963379132095724,-45.75046028010547,-46.330791278742254,-46.6790568344295,-47.36598512297496,-48.253579513635486,-48.97194384224713,-48.86335473647341,-47.957083175424486,-48.647473258432,-47.7374755544588,-48.70892049232498,-48.71718558901921,-48.92457519611344,-48.18201306927949,-49.1793711129576,-49.19850264163688,-48.92067529959604,-48.8653874322772,-49.23736573988572,-49.32913988875225,-48.46360455127433,-48.35013897297904,-48.7289829403162,-49.359568847343326,-49.711554943118244,-49.56233842251822,-50.16646893136203,-49.66279186028987,-49.490961705334485,-49.00119519000873,-49.51705397712067,-48.58856768300757,-49.205118590034544,-48.844377068802714,-48.672971604857594,-48.25614413060248,-48.229770007077605,-48.608912364114076,-48.64339120872319,-49.247660785447806,-50.1020158873871,-50.36431630747393,-49.96860108245164,-49.90631938073784,-49.90684107178822,-49.68363715382293,-50.55076184915379,-50.117388075683266,-49.53428769623861,-49.94162404211238,-50.890399034600705,-50.89887569146231,-50.582769031170756,-50.95583378570154,-50.841126401443034,-50.16201965743676,-49.704056191723794,-49.47053997544572,-49.322016783989966,-49.579737924970686,-50.54233955964446,-51.37731487490237,-51.40489440783858,-50.85037630377337,-50.08240860700607,-49.229232695885,-48.70303363678977,-48.46262987004593,-47.92915674299002,-46.99121683975682,-46.46912563126534,-46.38280613766983,-45.83845808263868,-46.56078909477219,-47.35324697336182,-47.97935627447441,-47.35844685649499,-47.270683519076556,-48.26739291055128,-47.88409372698516,-47.49451712612063,-47.52900847652927,-48.18409385392442,-48.38476877240464,-49.37545508891344,-49.416389185003936,-49.22052988409996,-50.035240296274424,-49.84448558697477,-50.26199320424348,-50.98926285980269,-50.8302068146877,-50.7097946703434,-51.57311698468402,-52.36790376203135,-52.63227429660037,-52.78258373728022,-53.44550809636712,-53.779919437132776,-52.79640937875956,-52.17093716561794,-53.075624860823154,-53.02557264920324,-52.486993096303195,-52.04227439779788,-52.26177578326315,-53.17700229072943,-53.06365993572399,-52.19013675674796,-51.26866075396538,-50.61006756639108,-51.353514024522156,-51.358767113648355,-50.91006577340886,-51.578868521377444,-51.38041049055755,-52.14414028683677,-52.81399049796164,-52.72492028446868,-53.3211204581894,-52.89106167526916,-53.75150528084487,-54.33051141304895,-53.89656585128978,-53.77924178680405,-53.978289699647576,-54.96805973723531,-55.734075552318245,-55.52659709751606,-55.03978495206684,-55.01348362164572,-54.152943305671215,-54.95585882244632,-54.555280233267695,-54.113831121474504,-53.53219059249386,-54.13312307232991,-53.70636329241097,-52.77633871464059,-52.19522373005748,-52.84735332801938,-53.40620923321694,-53.13390775164589,-53.88097908440977,-53.60829050699249,-54.03979917941615,-55.03291341336444,-54.730495082680136,-55.691014874726534,-55.03451676573604,-55.21484092483297,-55.61080024251714,-55.65324266627431,-56.36266947258264,-55.598915996961296,-56.00200941367075,-56.52373401680961,-57.45376384444535,-58.3218874684535,-57.688819504808635,-57.494618218392134,-56.57568474160507,-57.570906495675445,-58.079736365005374,-58.662064406555146,-57.78065165877342,-56.897506593726575,-57.64510156493634,-57.936566431540996,-56.98573546623811,-56.33501003542915,-56.55790557526052,-56.775137920863926,-56.84490032913163,-56.05641032056883,-55.983654477167875,-56.226026779506356,-55.268130666110665,-55.357268711552024,-55.2687337952666,-56.025267727673054,-55.63435968011618,-56.043809819966555,-56.27498998492956,-56.690340663306415,-57.68352990783751,-58.58352544112131,-57.74254719633609,-58.12082788115367,-58.08451800281182,-57.38010130217299,-57.91153078107163,-58.142495076637715,-58.37997721647844,-58.86661296058446,-59.53615612303838,-60.12781124841422,-60.693840973544866,-60.58029843121767,-59.66727472329512,-59.95623499201611,-60.45442704949528,-60.75021415762603,-61.53731593629345,-60.577555919997394,-60.45434901723638,-60.895233497489244,-61.87010322697461,-61.138562044128776,-61.30720747215673,-61.58079118654132,-60.986257679294795,-60.44226698949933,-61.16842308593914,-60.92549264803529,-61.03387485072017,-61.65969423158094,-62.49120182963088,-61.684945590328425,-60.75747798848897,-61.322268271353096,-61.02676464198157,-61.68169661844149,-61.99938156409189,-62.73757129581645,-63.15487863868475,-63.71643824502826,-64.5277164708823,-65.45223483676091,-65.73729578219354,-65.93486999114975,-66.4001477798447,-66.08918222784996,-65.16151863662526,-64.68986576376483,-64.13400060124695,-64.69613474467769,-64.28185204276815,-64.11409488273785,-64.99473060900345,-65.42056416114792,-64.8901052637957,-64.5526804649271,-63.723249092232436,-63.92900437489152,-63.693853966891766,-63.08396024769172,-63.09378270013258,-63.76110395928845,-64.04115325538442,-64.24485791474581,-64.95389723079279,-64.94413529615849,-65.31742812227458,-65.88591558020562,-66.53564110863954,-65.54386278288439,-65.33686784747988,-64.80337940482423,-63.80948387412354,-63.79316345322877,-63.00581336719915,-62.53247185656801,-62.467550854198635,-62.2556058592163,-61.50967731093988,-60.943662710953504,-61.42467169370502,-60.70442568929866,-59.91405390249565,-58.965051603037864,-59.50664957566187,-59.94740765821189,-60.403659887146205,-60.01018087938428,-59.78359949449077,-59.08727565733716,-59.9651596355252,-59.58832447929308,-60.502397544682026,-61.061014954932034,-61.363000381272286,-61.7871604883112,-61.04904010798782,-61.26213276805356,-60.4857619041577,-60.00964324595407,-60.03696870524436,-59.88806874630973,-60.159375498536974,-60.31012915400788,-60.335855529643595,-60.47566058905795,-61.264205576851964,-62.07705990690738,-61.19158973963931,-62.09678564965725,-61.64124096464366,-61.404379680752754,-61.450870029162616,-60.93730086646974,-60.56083297031,-61.28064171085134,-62.06678760284558,-62.30722916172817,-62.92962299147621,-62.3567135152407,-61.7807254656218,-61.10849387710914,-61.05561571009457,-60.75626658787951,-60.422353531233966,-59.65215854579583,-58.85489063709974,-58.024741675239056,-58.84986088704318,-59.73670524312183,-58.97548610996455,-59.347576891072094,-59.98557193623856,-59.50276951305568,-60.448508486151695,-60.60727947857231,-60.79517420241609,-59.96922316774726,-59.00126551883295,-59.26600206224248,-59.24398830346763,-58.52062071673572,-58.45078633632511,-57.99381973268464,-58.71974710188806,-58.11849799146876,-58.37625767942518,-57.497531639412045,-57.42090398678556,-56.64834407623857,-56.73660083534196,-56.975003198720515,-56.63790538534522,-56.99338067416102,-56.65355269797146,-56.64887122903019,-55.95952783944085,-56.91602510167286,-56.68289807345718,-55.94891228573397,-56.09922305168584,-56.00210152193904,-56.912666080053896,-57.57780562946573,-57.624886337667704,-57.54283869545907,-56.65292933350429,-56.495762881822884,-56.3973607593216,-55.6198484194465,-55.37195389484987,-56.084431015886366,-56.31369752809405,-56.67710071802139,-56.38453599670902,-55.888361144345254,-55.79853307176381,-56.68509020609781,-56.9695116779767,-57.111420910805464,-57.62365943333134,-56.72846571961418,-56.733576046302915,-57.287635969463736,-56.62406142614782,-56.46867179777473,-56.25628928095102,-56.36285079130903,-55.43287122948095,-54.90055811870843,-54.505380493588746,-54.769035406410694,-54.48143280111253,-55.02114644786343,-54.675745161715895,-54.66686481051147,-53.8480516965501,-53.30877002282068,-52.8094626381062,-53.75193120352924,-54.27028513792902,-54.567912654951215,-54.269728276878595,-54.22431922191754,-54.61610983684659,-53.92031365679577,-54.48769620805979,-54.084871063474566,-53.517217790242285,-53.135818637907505,-53.42279340699315,-52.51348488451913,-52.050446417648345,-52.880850351881236,-53.876253748778254,-53.73784424737096,-54.38815135555342,-55.13084612041712,-55.92151239188388,-54.94112846115604,-54.35089856898412,-53.87116029066965,-54.424936370458454,-54.684707338921726,-54.17139260051772,-53.702087567187846,-53.50927020609379,-53.3437294322066,-52.39889741782099,-53.24670307012275,-53.75911295320839,-53.111796451266855,-52.21256962651387,-52.7259068954736,-52.08445293549448,-52.97315206378698,-53.572153840679675,-52.78477257862687,-52.258274659048766,-51.29726609867066,-50.502570307813585,-50.5477883759886,-50.274652756750584,-49.97737127635628,-49.310099634341896,-49.343558438587934,-48.58917196234688,-48.03996203886345,-47.716889230534434,-46.96853037038818,-46.940091787837446,-46.485670287162066,-45.79395978245884,-45.86360118351877,-46.48720022523776,-46.56749750627205,-46.72269489010796,-45.94414268899709,-46.078101991675794,-45.25087047042325,-45.85644091852009,-45.77403922146186,-45.47879150696099,-45.966308078262955,-46.4405310372822,-47.28318287432194,-46.72642512386665,-45.805010163225234,-46.61109281890094,-45.94212376419455,-45.16460121329874,-45.515038115903735,-46.22350819176063,-47.19237977825105,-46.6829511038959,-47.646572042722255,-47.777681201696396,-48.13461795821786,-48.94382173800841,-48.533622833900154,-48.47442535916343,-48.13271532719955,-47.203732010442764,-46.77791725611314,-46.71316171390936,-47.198406741954386,-47.41417242074385,-47.59030754957348,-47.044201883953065,-47.16715337103233,-46.28050869004801,-45.468871435616165,-44.66643418977037,-44.38279348425567,-44.91723974561319,-45.33679365133867,-44.48293028725311,-44.65874242782593,-45.254975949879736,-45.33897467516363,-45.82353150378913,-45.71146004414186,-46.57254399033263,-45.98059120262042,-46.66129890922457,-45.926179313566536,-45.6346321539022,-44.986298193223774,-45.528773145750165,-46.22671630559489,-45.268229759763926,-45.86247626459226,-45.50554939592257,-45.29881252674386,-45.60801611468196,-45.87337576178834,-44.88458031229675,-44.225269807036966,-43.6668825619854,-44.097847094293684,-44.84806269221008,-45.673466224223375,-45.06596322823316,-45.28060967195779,-45.615672626998276,-46.129072062671185,-46.20423715375364,-46.45028926851228,-46.704422750510275,-47.315216194372624,-47.29295124160126,-48.18784018047154,-47.93731174105778,-48.65672400314361,-48.6365356198512,-48.79860630398616,-48.56651786342263,-49.465063348412514,-48.83211131114513,-48.60816823784262,-47.948626382276416,-46.95494700735435,-47.40087127359584,-46.957345741800964,-46.14411613391712,-46.77839016774669,-47.55735094565898,-47.62545847008005,-47.58973165182397,-48.27809453615919,-47.31351841473952,-47.56054608663544,-47.683661225717515,-48.400161765981466,-48.32897074241191,-48.89932674821466,-48.596289969515055,-49.36044527962804,-49.026693418156356,-48.777755740098655,-48.41991316759959,-48.822514646686614,-47.99965759459883,-47.73312115855515,-48.37731269421056,-48.75455895345658,-48.61461723456159,-49.3714312966913,-49.93681442644447,-49.58224176010117,-49.56513751670718,-48.766546117607504,-48.8657013210468,-49.174424931872636,-48.743316819891334,-48.11962116183713,-47.88328118016943,-48.02305254666135,-48.75672827241942,-49.25975370546803,-48.84469122812152,-48.49142873566598,-48.41581453429535,-47.98608391592279,-47.84537614043802,-47.13907401589677,-47.51349103497341,-48.21444839471951,-47.393378033302724,-46.63836391502991,-46.12518383515999,-46.680076744407415,-46.074395862873644,-46.002460742834955,-45.06498210551217,-44.341791986487806,-44.58345101820305,-45.3197169508785,-44.69466809602454,-45.124144666362554,-45.31637049885467,-46.08265679143369,-46.08870122022927,-45.39504677569494,-45.67314638802782,-45.93399979406968,-46.7775170984678,-46.7089860169217,-46.96792392944917,-47.92089883144945,-47.4934404483065,-47.28295489074662,-47.87547817779705,-48.80124576808885,-48.60009266762063,-48.00565483001992,-48.04370484454557,-47.57032683491707,-48.351144552230835,-48.00938758533448,-49.004889137577266,-48.95672172959894,-48.562608242966235,-49.51199261005968,-50.3326334473677,-50.844724990893155,-51.45221965899691,-52.20127206342295,-52.252803057432175,-51.94624926429242,-52.31912081129849,-53.31888496875763,-52.82019596360624,-52.25375059200451,-51.27004998922348,-51.1532266815193,-51.896618561353534,-51.88423670222983,-52.16066835122183,-51.250255167949945,-50.467108013574034,-51.16147875925526,-52.09628352988511,-51.36539200600237,-51.330803650896996,-51.020947486162186,-51.50727050099522,-51.23311430029571,-51.422099131159484,-51.801438277587295,-52.573290552943945,-53.502225717995316,-53.35073929000646,-54.20881382422522,-53.219937418121845,-52.32506539253518,-52.07512906240299,-51.79267733171582,-51.568475695792586,-51.838853960856795,-51.64436495676637,-52.44188986159861,-52.45104641886428,-52.96899119252339,-53.032751680817455,-53.47009638790041,-52.63534500077367,-53.2605293514207,-52.996060487348586,-53.189260750543326,-52.84158292133361,-53.18054143991321,-53.489823762793094,-52.648639435879886,-52.66593938693404,-52.154499453958124,-52.462392188142985,-52.87247278075665,-52.05124864028767,-51.91520121693611,-52.902230620384216,-52.88059699116275,-52.796004922594875,-52.7282596998848,-52.93398232664913,-53.56080529792234,-53.754486626945436,-53.26743163121864,-52.320854280143976,-52.405390680301934,-51.76385640539229,-50.927255547139794,-51.881296085659415,-51.27845160057768,-51.01839900249615,-50.252926202490926,-50.008074403274804,-50.46670703589916,-49.60547543875873,-50.586350720375776,-50.93084366666153,-51.80117441294715,-51.26945317676291,-50.66514846496284,-50.21836830023676,-50.13215350732207,-49.23624952649698,-49.244900891557336,-49.646321940235794,-49.41213620407507,-49.01055655349046,-48.73366824025288,-49.5299998796545,-48.992439344059676,-48.74500395078212,-47.93614104995504,-48.020946433302015,-47.75455604074523,-48.4198215152137,-47.67712427210063,-46.92194966925308,-46.309109520632774,-45.64497434720397,-46.485799735412,-46.155505140312016,-45.88752642692998,-45.9677830520086,-45.897789685521275,-45.65339595917612,-44.93026534747332,-44.39868493191898,-45.09045735700056,-44.883896281477064,-45.87421281123534,-46.13325104955584,-45.61572251422331,-46.3394790943712,-46.292274351231754,-46.21822340646759,-47.123312692623585,-46.515365725848824,-46.366456837859005,-46.03773288754746,-45.561547650024295,-45.16889752680436,-45.81831109942868,-46.661825619637966,-45.978217884898186,-45.412498069461435,-44.494496220722795,-45.0261797811836,-44.05237743444741,-44.350701288785785,-43.752458934206516,-44.20981087256223,-44.793485862668604,-45.43978790799156,-45.045979586895555,-45.63102536695078,-45.94514629710466,-45.58064746344462,-45.30084553780034,-44.33583045843989,-45.327195305377245,-45.999740524217486,-45.422364165540785,-44.72534271236509,-43.831442072056234,-43.89854706823826,-44.10825421847403,-43.66718950262293,-43.37944256700575,-43.86270270170644,-44.195857246406376,-43.75739958090708,-44.583839882630855,-45.070164838805795,-45.483387348242104,-44.63071890780702,-44.44795005675405,-43.9465612960048,-44.17166870087385,-43.414245118852705,-43.90814074827358,-44.40757479285821,-44.274555273819715,-43.297320811543614,-42.532580092549324,-41.585270654875785,-41.31735459621996,-41.338059657253325,-42.19604495866224,-42.09061693120748,-42.086555514950305,-42.2640614323318,-42.891854223795235,-42.60214857477695,-43.37874253792688,-42.79068948002532,-41.97051732381806,-42.06472606305033,-41.42357119778171,-41.98539351625368,-41.50722523406148,-40.637260576244444,-40.532348565757275,-40.164764483924955,-40.20640812208876,-40.89890707656741,-40.36863948684186,-39.94388869404793,-39.47434473177418,-39.98855395196006,-39.584693086799234,-38.867950012441725,-38.78572818124667,-38.3069710326381,-38.19062354648486,-39.157234486192465,-39.64415741758421,-39.16418933775276,-39.464662715326995,-40.34704133030027,-40.782256196253,-41.08275293838233,-40.6004066998139,-41.38553423900157,-40.41560269286856,-39.48000629711896,-38.73712183441967,-39.43176657659933,-38.56055303057656,-37.99966289894655,-38.23689769767225,-37.28303624596447,-37.19123011548072,-37.52913126209751,-37.56432380247861,-38.03387778159231,-37.73101103072986,-37.795671552885324,-37.334178229328245,-36.49936213856563,-36.28145751263946,-35.570230786688626,-35.1666074548848,-36.06097302073613,-35.39719011867419,-35.540297399740666,-35.17733542993665,-35.215048799756914,-34.83945231651887,-34.64544055657461,-34.31797457812354,-35.17014001356438,-34.213967584539205,-34.82066164491698,-34.17510463390499,-35.06599115813151,-35.093864301685244,-35.5368242431432,-35.72822553105652,-35.47385572642088,-36.12253555376083,-35.17671286454424,-36.069005222059786,-35.60053915018216,-35.01909313770011,-35.27543420344591,-34.71602210775018,-33.827484033536166,-33.002001602668315,-33.72183487517759,-33.17726527247578,-32.76791338855401,-31.81910719908774,-31.19346978701651,-30.85703041497618,-30.141316067893058,-30.084319148678333,-29.119176873471588,-29.870607984252274,-29.640630808193237,-28.837011717725545,-28.866048654075712,-28.02684828126803,-27.96951889479533,-27.916729212738574,-26.962295156903565,-26.895168454851955,-26.993321888148785,-27.255507616791874,-27.982270101550967,-27.167120158672333,-27.30769100598991,-28.005158780142665,-27.69476049952209,-28.649691205006093,-28.903743858914822,-29.460928289219737,-30.29825554136187,-29.49199923314154,-29.20212560798973,-29.053651539143175,-28.65374208241701,-29.197545360773802,-28.42843749653548,-28.213228442240506,-28.23975674714893,-27.75607131840661,-28.157349067740142,-29.029444034677,-29.320455770008266,-30.15813251072541,-30.90022023767233,-31.561462651006877,-32.44707626616582,-33.143972028046846,-32.43790822708979,-32.37989203259349,-33.32652596011758,-34.18852205760777,-33.773926072288305,-34.44964338839054,-34.89995891228318,-34.504901639185846,-35.37570577673614,-36.03077056678012,-36.38549250597134,-35.612300482578576,-35.22945332573727,-34.97820789087564,-35.489148082211614,-34.98910445533693,-35.60969911515713,-36.305211735889316,-35.76004247087985,-35.14528711186722,-34.96125362860039,-34.71437973249704,-35.42836015112698,-35.77815486351028,-35.96374515071511,-35.801843063440174,-36.659515959676355,-37.58154171379283,-38.00819134898484,-38.948043681681156,-39.873760076239705,-39.14890417456627,-40.08818095223978,-40.43894369201735,-40.90564479539171,-41.772034192923456,-42.18126913905144,-43.02056679176167,-42.36927314568311,-42.055641593877226,-42.215289731975645,-42.704612095840275,-42.69240094861016,-41.70954278111458,-41.350850506685674,-40.775963781401515,-41.25888973567635,-41.453648635186255,-42.18267589760944,-42.755729022901505,-43.49506001686677,-43.964006463531405,-44.90876112971455,-45.478590263053775,-45.427230826579034,-45.46573621034622,-45.417522344272584,-45.861514816526324,-45.48279813537374,-45.27579123014584,-45.119161075446755,-44.89905957505107,-44.12843763688579,-43.57160642975941,-44.03446699725464,-43.09006786812097,-43.129622568842024,-43.554347408004105,-43.865857819095254,-44.040127768181264,-43.174527703784406,-42.29963644221425,-41.3633596887812,-41.14007131708786,-40.73359260009602,-40.602968762628734,-40.92299776338041,-41.270989353302866,-40.7202980578877,-40.0248831724748,-40.2366145895794,-40.123337272554636,-39.54277153033763,-40.396127917803824,-40.10397597029805,-39.50830192677677,-40.20420833071694,-40.110627782996744,-39.304312880150974,-39.255102523602545,-39.46025840193033,-38.79468331951648,-37.93660858273506,-38.21014697756618,-37.43432618351653,-37.86480612959713,-37.376706758048385,-38.107891919557005,-38.45372796896845,-37.79489001072943,-37.82663386128843,-38.741872443817556,-38.52223221305758,-38.59514896944165,-39.116706910543144,-39.48332966817543,-38.90593149513006,-39.50542483339086,-39.017158925998956,-38.32514729304239,-37.59205416031182,-37.65448750834912,-37.916723972186446,-36.93932079151273,-37.72958607925102,-37.303285281639546,-37.08344091195613,-36.22256994852796,-35.63758788909763,-36.48805807624012,-37.10774685675278,-37.99304659664631,-38.04558625398204,-38.20525182923302,-37.93725382955745,-38.58233367605135,-38.90480816364288,-39.107194596435875,-38.69214455410838,-38.21026074141264,-38.23239984549582,-38.276143949944526,-37.41906280815601,-38.19548480724916,-38.445591188035905,-38.51298556337133,-37.99677959177643,-38.88241994706914,-39.275473489426076,-39.017448756378144,-38.98270946647972,-39.60669566038996,-39.226507956627756,-39.022576259914786,-38.525422260165215,-38.820916406810284,-38.786281595006585,-37.8153625652194,-37.02620342653245,-36.85382027970627,-36.308881398290396,-35.84410534892231,-36.1454060068354,-35.221514760982245,-35.781439683865756,-36.07050271239132,-36.145553071051836,-36.06274718930945,-35.104002468287945,-34.329883717466146,-33.72743542538956,-34.20577716967091,-34.676193445920944,-33.759222597349435,-34.0336030847393,-34.43932071374729,-33.61774366116151,-34.58719972753897,-35.4515036647208,-35.110764890443534,-35.74271456571296,-36.53501341026276,-36.88612889498472,-37.754857825580984,-38.72528984490782,-38.58906849101186,-38.5783324833028,-37.60138467978686,-37.571441266685724,-36.84529473586008,-35.85178219061345,-35.352873688563704,-35.17429817048833,-35.45878244843334,-34.65534450346604,-34.08741208631545,-33.29548395425081,-33.032208126969635,-32.42440743930638,-32.81252505257726,-33.34948787186295,-34.17055451730266,-33.928091020323336,-33.34894185187295,-33.41654052445665,-33.578473469708115,-33.07683604070917,-32.80500284768641,-33.68708520941436,-33.742750086355954,-33.15388341899961,-32.66692023491487,-31.76247555203736,-32.294312490615994,-32.54841411160305,-32.84853304736316,-33.577195689082146,-33.84602966345847,-33.83320440584794,-34.75093812169507,-35.19522568117827,-34.51857681153342,-34.59837310947478,-35.049060971010476,-34.253761384636164,-34.87963890098035,-35.68601249856874,-36.679413955658674,-37.2779950639233,-37.58087977953255,-38.46285062935203,-39.21307943016291,-38.54471278516576,-38.153018741868436,-37.20622415933758,-37.08955088397488,-36.51729869749397,-36.34435494430363,-36.74990734644234,-36.07559479260817,-35.26159517746419,-35.34108332823962,-35.891904747113585,-36.18795040156692,-36.23434598883614,-35.864056319464,-35.068955053109676,-35.57606126135215,-35.62175207398832,-35.31260232208297,-35.81690441304818,-36.42773872055113,-36.44178674696013,-35.47143206326291,-35.878381793387234,-36.02871491573751,-35.39966744137928,-36.361414591316134,-35.422090366948396,-34.995190541725606,-35.764730661641806,-35.00145911704749,-34.86468027392402,-33.87819083314389,-33.71278974786401,-32.78601478971541,-33.284528283867985,-33.86616546427831,-34.202334738802165,-34.23973741848022,-33.88534513767809,-34.29095801943913,-34.095737078692764,-33.173217351548374,-32.303903963882476,-32.32883786177263,-32.3474154304713,-32.801401101984084,-31.865916238632053,-32.28282194817439,-32.46553363092244,-33.08371046138927,-33.276848391164094,-33.268826556857675,-33.8339829784818,-33.77348633483052,-34.44867553142831,-33.97363295266405,-34.358590533491224,-34.50881788879633,-34.42735727224499,-35.25734144914895,-34.435055253561586,-35.20263545867056,-35.25056366389617,-35.764765795785934,-35.16202516667545,-35.06941798236221,-35.38838612427935,-34.42511675041169,-33.75032278476283,-32.88948400737718,-32.72881902521476,-32.05984819680452,-31.3761020838283,-32.21043349709362,-32.42432381724939,-32.41963765863329,-31.72964238654822,-32.60698417760432,-33.09373831842095,-33.75358221260831,-34.1465599979274,-34.425400770269334,-34.79919969383627,-34.50206100428477,-34.56945161148906,-34.74553375504911,-34.12350906804204,-34.0613715974614,-33.55814085388556,-33.115338016767055,-32.62870654836297,-31.980804997496307,-32.40042731305584,-31.8853671788238,-32.75696945749223,-32.01350784674287,-32.33113738661632,-31.64398266049102,-31.467414188198745,-32.11642914870754,-32.65648269606754,-32.63056621933356,-31.871823355555534,-32.616743891034275,-32.35053583374247,-31.941080149263144,-31.26611319137737,-31.417401331011206,-31.650529318023473,-31.108877580612898,-31.205594409722835,-31.353100419044495,-30.78552501881495,-30.461245694197714,-31.409350321628153,-31.8063910510391,-32.53652926813811,-32.60889213392511,-33.51255844486877,-34.07557442318648,-35.07477035885677,-34.07508796546608,-34.83587546879426,-34.271059236489236,-34.90132933855057,-34.58599471440539,-34.77618204243481,-34.85903186444193,-34.99790030019358,-34.370667001698166,-33.421260518953204,-33.37067741109058,-34.09703099820763,-34.75649834563956,-35.05596389155835,-34.743823947850615,-34.50299765402451,-34.623846353031695,-34.78290142910555,-35.2735892822966,-36.09352823253721,-37.027182368561625,-37.388238621875644,-36.76205971138552,-36.78992297919467,-37.29250709991902,-36.507332431618124,-37.15478409640491,-38.071106132585555,-37.831912701483816,-38.55304572125897,-38.24335786700249,-37.459968847222626,-37.45559080922976,-38.12415470182896,-37.63916890555993,-36.746086856815964,-37.691836992278695,-36.738497564569116,-36.13081420538947,-36.14164257561788,-36.984948272351176,-37.502181213349104,-37.26551206596196,-37.15352255059406,-37.3345093075186,-37.021077463869005,-36.41688934201375,-35.60611034044996,-35.82517451886088,-35.77001714054495,-35.30619629425928,-34.81417554197833,-33.90859291749075,-34.30112112313509,-33.86257170652971,-33.789685883093625,-33.00182403670624,-32.91484610363841,-32.39692318998277,-31.728217514697462,-30.82264913339168,-31.082971720490605,-30.892647249624133,-30.870413458906114,-30.80858021788299,-30.08072369545698,-29.25022925855592,-29.87424376467243,-30.03009265754372,-29.77737728320062,-29.986364820972085,-28.989578111562878,-29.13617075746879,-28.803772560320795,-28.331797105725855,-28.201128023676574,-29.125356671400368,-28.50121379410848,-29.334796755108982,-30.17189291352406,-30.514886567834765,-31.392735491972417,-31.223202449269593,-30.749212174210697,-31.370417083147913,-31.11348116118461,-30.708797995001078,-30.62135136127472,-30.018763994798064,-29.97583183646202,-29.39808613061905,-30.13919772254303,-30.113288067281246,-30.942985137924552,-31.791067825164646,-31.54589203093201,-31.712129724677652,-31.86869067279622,-32.2564636413008,-32.52248746389523,-33.0918337716721,-32.5385629539378,-32.9107319759205,-33.09320780541748,-34.06666415184736,-33.783564873505384,-34.71968131698668,-34.160061091184616,-34.07537459442392,-34.527757643722,-35.160978730767965,-34.31591314729303,-35.12950084917247,-34.99035711726174,-34.549310786649585,-33.74235696345568,-34.39483106974512,-34.233177764341235,-34.47826616931707,-33.68951437342912,-32.84289885079488,-33.08333380194381,-32.822176767047495,-32.345492309425026,-31.644567563664168,-31.74220424052328,-31.02676434163004,-30.94583795685321,-31.333382384851575,-31.37905997177586,-31.673826912418008,-31.648660123813897,-32.612496313173324,-32.6405070098117,-32.97767445910722,-33.363782512489706,-34.048386508598924,-33.30700763594359,-33.20952581940219,-33.32499223202467,-34.21228627394885,-33.8225093819201,-34.30696623632684,-35.05132278101519,-34.545455435756594,-33.948819637298584,-33.754126775078475,-34.45418245764449,-35.27380668511614,-34.968725223559886,-34.652843648102134,-35.02352007618174,-34.235997777897865,-33.568226548377424,-33.17969444161281,-33.822960688732564,-33.81094910064712,-33.11372286360711,-33.78890731418505,-34.02899767505005,-34.57304677506909,-33.6893585016951,-33.27141051739454,-33.996789833530784,-34.96218251157552,-34.46140193240717,-34.30690572177991,-34.61646852688864,-35.361666277982295,-35.48155818320811,-35.82269402220845,-36.10971366614103,-37.07822723221034,-38.0019657141529,-37.23654184769839,-37.06031688535586,-37.33480340568349,-37.35015201801434,-37.898086899891496,-38.43906634300947,-38.6055642683059,-38.03260426456109,-37.87261539790779,-38.46236046170816,-39.336697089951485,-38.668206756934524,-38.62092352332547,-38.6373071311973,-38.318361395504326,-37.454664466902614,-38.27734404662624,-38.234915810637176,-38.551259650848806,-38.66692645661533,-39.25018311245367,-38.433527268469334,-37.71116577181965,-38.03892787266523,-38.463986554183066,-37.77127945795655,-38.174411905929446,-37.68593586841598,-37.85939617129043,-38.27345249056816,-38.34596169507131,-38.12103652395308,-37.836082430090755,-36.9711917177774,-36.7338586486876,-37.21903780521825,-36.99205628177151,-37.88821155577898,-37.26365205971524,-37.126887258607894,-37.47396805882454,-36.93113763211295,-36.12543406942859,-36.50135927973315,-36.194332506973296,-36.64516447996721,-37.123081500642,-36.99777553183958,-37.103679813444614,-37.1330697350204,-37.5139128761366,-38.04016646603122,-38.301079703494906,-38.924002756364644,-38.172623061574996,-37.26793209975585,-37.68921989062801,-38.07142202928662,-37.433222429826856,-36.66088228020817,-36.397890438791364,-36.80791161861271,-37.430948143824935,-37.85199437523261,-38.19230934884399,-39.17107994342223,-39.01620352594182,-38.699063763488084,-38.63694219477475,-38.662466928362846,-38.24415459949523,-37.52133297780529,-38.19517183722928,-37.6021942216903,-38.44788974663243,-39.1156149036251,-39.00940308440477,-38.62459345860407,-38.58628890803084,-39.346232811920345,-40.331821258645505,-39.62309893267229,-39.69356743153185,-40.006242266856134,-39.50342177832499,-39.90933929244056,-39.50825009914115,-39.78749647224322,-39.32360485056415,-38.60580572858453,-38.29895580140874,-38.06375957746059,-38.34542107814923,-39.03646890819073,-39.63521054433659,-40.43876295443624,-39.87898898636922,-40.039279722142965,-40.54766637412831,-39.82987547200173,-40.15948838321492,-39.68865349004045,-40.16759295249358,-39.712070702109486,-40.04401701781899,-40.53426907816902,-40.360117754898965,-39.39203951274976,-39.21006858255714,-38.580017395783216,-39.353269873186946,-39.52031203079969,-38.87950266851112,-39.43837972776964,-39.622618248686194,-40.482081782538444,-39.48908403282985,-38.813521090429276,-38.94131544046104,-38.8725403919816,-39.26858398830518,-38.497796589974314,-38.16343162767589,-37.17847399646416,-36.38780917273834,-37.073621788062155,-37.61624707188457,-37.71151069365442,-37.04182655457407,-36.90660663228482,-36.90846952935681,-37.4000956332311,-37.25381348095834,-37.237999845761806,-36.3475748244673,-36.72307410137728,-36.58520223852247,-36.04648396372795,-36.34518357273191,-35.40491258678958,-34.78711283393204,-35.57342597981915,-35.094561245292425,-35.20286054164171,-35.521950071211904,-35.88146950956434,-35.280524941161275,-35.21025113109499,-35.06761905644089,-35.380189599469304,-35.59123565722257,-35.31681982195005,-34.41079651424661,-33.59712676843628,-34.48115929728374,-33.50951157929376,-32.65535877086222,-31.911060915328562,-31.108932855073363,-31.946743035688996,-30.96708213351667,-30.293791983276606,-30.708185588009655,-31.67410215223208,-32.301878585480154,-32.46655565267429,-33.00147553021088,-32.182226188946515,-32.604798707179725,-33.01863800454885,-33.18349141860381,-33.514610294718295,-34.43732204986736,-33.518179934006184,-32.68797035282478,-31.995219030417502,-32.574411284178495,-32.55168145429343,-32.73568065930158,-33.598668102175,-34.00712319416925,-34.39825875591487,-34.5031558717601,-33.696185109671205,-34.24675828870386,-35.161790404934436,-35.98698709253222,-35.78444045688957,-36.505775769706815,-37.1137910913676,-37.36567662609741,-37.33239539526403,-38.22776977950707,-37.71037525637075,-38.43601328879595,-38.7688283524476,-38.43088332610205,-38.71028745127842,-39.68734141252935,-39.86956112831831,-40.79971286281943,-40.7021321086213,-40.17418569140136,-40.28370463103056,-40.09848948614672,-39.921625142451376,-39.158616984728724,-38.5713745187968,-39.21996346767992,-39.45780649315566,-39.446954384446144,-39.89305338496342,-40.570663375779986,-41.30995702976361,-40.84986649826169,-40.07559902314097,-41.07121057994664,-41.078459173906595,-40.739083516877145,-40.81477348366752,-41.46825688146055,-41.49806468607858,-40.81962069775909,-41.54581762524322,-41.95924746012315,-41.91680767061189,-42.17108586570248,-42.85321951424703,-43.70625053439289,-43.022633839864284,-43.6873144088313,-43.012845545075834,-42.663511611521244,-42.07157362997532,-42.31345901126042,-43.03195403655991,-42.78588752634823,-42.36276487354189,-43.23752019647509,-42.685994629748166,-42.08423722581938,-42.80212837876752,-42.843377721030265,-42.5302361426875,-42.78524088161066,-42.923827378079295,-42.84690580377355,-42.47722539212555,-42.422699846327305,-42.241459988523275,-41.61994099896401,-41.62634054617956,-41.65579274436459,-41.46637527178973,-41.87777336593717,-42.63082923647016,-42.33560785185546,-43.23013066779822,-43.75643429113552,-43.431719108484685,-42.4422970879823,-42.36618464952335,-42.060658629518,-41.29152570525184,-40.50651383912191,-41.34957239218056,-41.45099307456985,-41.12662339536473,-41.68380443146452,-41.22706484468654,-42.01539461920038,-41.54594442481175,-42.2807505694218,-42.179094744846225,-42.93978157592937,-42.17599292937666,-41.19614663626999,-41.400337676517665,-42.12239205557853,-41.88369030645117,-42.46883174357936,-42.09129470959306,-41.96049928991124,-41.6261873356998,-41.2531597125344,-42.17275060340762,-42.21195069514215,-42.42223073076457,-41.431895326822996,-42.30996349873021,-43.21020091045648,-42.32554200710729,-42.48871650546789,-43.047689739149064,-42.75769837433472,-43.5631356080994,-43.00194170838222,-43.17590264277533,-43.37845840631053,-42.8504773741588,-43.076392425689846,-43.57445292780176,-42.97691428801045,-43.30254515027627,-42.65123399859294,-43.42292100843042,-42.86524481512606,-43.51034935982898,-43.02126027038321,-42.95692947413772,-42.696003013290465,-43.20613830210641,-43.92722038784996,-43.77978242235258,-43.42899630824104,-43.57261979114264,-44.2294451482594,-44.47694470640272,-44.805382690858096,-44.16014981083572,-44.82104223500937,-43.83794163540006,-42.865384561009705,-42.595465869642794,-42.19187832670286,-41.52329472778365,-41.0755304787308,-42.01269713323563,-42.83199833566323,-42.598507629241794,-43.21613444713876,-43.42242680257186,-43.73935756878927,-43.08970978343859,-43.11527870548889,-42.58268498303369,-42.66870551276952,-42.35564301908016,-42.56175460945815,-42.60654772538692,-43.01237803604454,-43.06570682954043,-44.04439705237746,-43.56313059525564,-43.06902289530262,-42.132972745690495,-41.304184350185096,-40.47669475711882,-40.58648936776444,-41.30367358168587,-41.446491558570415,-40.90066475281492,-41.811717060394585,-41.476053095422685,-41.25459890579805,-41.467148748692125,-41.29163072956726,-41.629829932935536,-41.05884155770764,-41.55259409872815,-41.85646074358374,-42.7554270895198,-42.92458936711773,-42.488843156956136,-42.57429911661893,-41.829068589024246,-41.083669138140976,-41.919668150134385,-41.549747426994145,-40.58364167064428,-41.311195531859994,-41.547210787422955,-41.848281836137176,-41.760365911293775,-41.271499648690224,-41.328810886479914,-40.34179222583771,-41.063866146840155,-40.40490451967344,-41.149575404357165,-41.404980508144945,-41.61596397217363,-41.37670773174614,-41.01616446394473,-40.20511138672009,-40.90415819780901,-41.35698622651398,-40.88616646453738,-40.80899279611185,-40.85852358909324,-41.462786545976996,-41.51700514461845,-41.092548326123506,-42.06004947330803,-41.56544989487156,-41.87264344422147,-42.57600835105404,-43.35898211738095,-43.05284343985841,-43.70118143502623,-43.16693545458838,-43.73674290580675,-43.24836953589693,-42.61310084396973,-42.39596740854904,-42.17635672958568,-42.88899097312242,-42.53726376965642,-43.047229108866304,-43.428435125388205,-43.40855978988111,-43.810158371925354,-43.499984925147146,-43.103683152701706,-42.13942552451044,-41.15514218248427,-41.90837216377258,-42.57423287862912,-43.28578500263393,-43.11985247861594,-42.347758799325675,-42.336516079027206,-42.19660974247381,-42.24633663147688,-42.98377337772399,-42.23521181428805,-41.70373996393755,-42.36900457274169,-41.57598838303238,-41.24979263637215,-40.27275566617027,-39.874009968247265,-38.98811124777421,-39.730904802214354,-40.255662069655955,-40.886718270368874,-40.80582447955385,-40.375556227751076,-39.524541821330786,-39.35951642412692,-39.2893037321046,-40.16993369953707,-40.42421028856188,-41.17602575616911,-40.71741409646347,-41.55689465580508,-41.95413885265589,-41.03968919208273,-41.61290304502472,-41.493623942602426,-42.305289613548666,-42.04270608257502,-41.290608192794025,-40.31413258938119,-40.13936234731227,-40.11500013433397,-40.238055287860334,-41.16472325101495,-41.513008419424295,-41.72308256011456,-42.099891850259155,-41.90626914706081,-40.92552073346451,-41.0104872090742,-40.060160097666085,-39.371314018033445,-39.68610247178003,-39.46909012179822,-40.154966996982694,-39.85017085401341,-39.27257324475795,-40.09064067853615,-41.02415086468682,-40.623725251760334,-39.983981889206916,-39.784314214251935,-39.680929764639586,-38.97597361262888,-39.57490137917921,-38.95303022721782,-39.72897253371775,-39.83193915756419,-40.4948880742304,-40.20527906436473,-40.32000011205673,-40.256722090765834,-40.525236456189305,-40.72822454292327,-41.669039842206985,-41.27096927165985,-40.62310553668067,-39.98717762902379,-39.53268347075209,-40.243086508940905,-40.13050206005573,-40.83195478795096,-41.305851062294096,-41.798473726958036,-42.13883110322058,-42.76908937841654,-43.04730380978435,-42.823852707166225,-41.86246273946017,-41.83948021521792,-42.05761745804921,-42.16614919807762,-41.189804296474904,-40.37309991708025,-39.71135447965935,-39.23845501989126,-39.69174786051735,-39.46401039464399,-39.387276723980904,-39.52179022040218,-38.566898323595524,-39.38571676239371,-38.84424010384828,-39.28543322626501,-38.593138948082924,-38.0558888008818,-37.672214940190315,-38.05253437580541,-37.08548931963742,-36.089147391263396,-36.3113881489262,-35.882312638219446,-35.8002173458226,-36.61230060597882,-36.39250140637159,-37.25907116290182,-37.14244861993939,-37.15475231874734,-36.28071937896311,-36.972431206610054,-37.17917713010684,-37.77890168456361,-38.317207883577794,-38.430027421563864,-37.57868746807799,-36.74042685702443,-37.4266267567873,-37.94515849510208,-38.51673007523641,-39.499420491978526,-40.381297945044935,-41.05355147877708,-40.617438309360296,-41.36251868214458,-41.984517886303365,-42.75310354307294,-41.76288629230112,-40.88457444217056,-39.914012701716274,-39.66422636806965,-39.86715046456084,-39.688594865612686,-40.449618455953896,-40.18103109113872,-40.11772207217291,-41.00362402945757,-41.64588266285136,-40.822607167996466,-40.887286103796214,-39.92828073911369,-39.603283423464745,-39.16516806324944,-39.031859622336924,-38.56794333923608,-38.61364770401269,-38.53946201596409,-37.82523426460102,-38.342659276444465,-38.10463534668088,-37.385468976572156,-37.83813324011862,-37.34435437945649,-37.58148346748203,-37.13012153143063,-36.96293706493452,-36.8022251049988,-37.674697424285114,-37.02439438458532,-37.95206228084862,-37.8745548883453,-37.73574182530865,-38.45168536854908,-38.358159058727324,-39.26101543242112,-39.45738905761391,-39.40212494600564,-38.441243844572455,-38.62178929382935,-38.85577340004966,-38.33097537513822,-37.4384991209954,-36.95332714030519,-36.05452777305618,-36.62290051020682,-36.17007791996002,-36.36795535730198,-36.10735443653539,-37.10611202614382,-36.35864288918674,-36.366469911299646,-37.01354107493535,-37.563230054453015,-37.06139654526487,-37.36695981910452,-36.659702642820776,-37.51973943505436,-37.42490597674623,-38.333869815804064,-37.63741023791954,-38.230593143962324,-37.28743296628818,-37.16599954199046,-37.515161007177085,-37.40070600807667,-37.55566973052919,-36.990349288098514,-36.383409187197685,-35.65164453396574,-36.50560820475221,-37.40358225349337,-37.80029669916257,-37.45897133555263,-36.49629097059369,-35.88074488984421,-35.58745221653953,-36.32339850720018,-35.875455191358924,-35.95377512834966,-36.934626115020365,-37.68581296456978,-36.897508774418384,-36.92474817065522,-37.47132192272693,-38.3492611926049,-39.32483065221459,-38.34120985167101,-38.44543348206207,-38.62015048786998,-38.771134501788765,-37.82276915432885,-37.560924301855266,-37.03522776905447,-37.30630779545754,-37.566501307766885,-37.07116988254711,-36.728505298960954,-37.27403360977769,-36.4962585917674,-36.05642808461562,-37.00070788571611,-37.94286463595927,-36.9448241237551,-37.22770470473915,-37.2173111056909,-36.71305888099596,-37.14357315842062,-37.92039293423295,-37.076059200335294,-37.41603243350983,-37.848029747605324,-37.04059517523274,-37.69918782589957,-37.59610816836357,-37.40781781869009,-36.533817613497376,-36.48859033919871,-37.28317666705698,-38.27186492970213,-38.29994259169325,-38.452975378837436,-37.65085477940738,-37.16081933025271,-36.77435601782054,-36.72960862983018,-36.679849605541676,-37.6525545832701,-37.62756776763126,-37.884581533726305,-38.06256448989734,-37.96215273393318,-38.85937576368451,-38.87408916186541,-38.40258104261011,-37.740222251974046,-38.34393214294687,-37.46048217639327,-36.483573897741735,-36.799584386404604,-35.90732653206214,-35.612792569212615,-36.471258075907826,-37.04780258703977,-36.41132187331095,-36.65267888875678,-36.58586947247386,-37.306923896074295,-36.52056913357228,-36.62854070030153,-36.51086878590286,-36.46459332481027,-35.51465017022565,-34.67333405930549,-33.82925125118345,-34.288554032333195,-34.17874523065984,-33.610259311273694,-33.216163308825344,-32.631913093384355,-32.388393176719546,-32.14643377251923,-32.19240286434069,-32.578409898560494,-33.04721665894613,-32.960346105508506,-31.987890127580613,-31.881974106188864,-32.520665909629315,-32.60248535266146,-32.06578585738316,-31.715411657933146,-30.90780424652621,-30.316299727652222,-30.648520478513092,-31.227867719717324,-31.632338129915297,-31.357417587656528,-31.13304880866781,-30.23543327394873,-29.75064790248871,-30.27238303888589,-29.439764083363116,-29.757843622006476,-29.71394792245701,-30.1011776230298,-30.76570859644562,-30.82358603551984,-30.2767386585474,-30.94738269969821,-30.39906724402681,-30.841684125829488,-31.185707612428814,-30.640903706196696,-30.709837620146573,-29.865279010962695,-30.724677563644946,-31.6013051928021,-31.690476822666824,-32.244579183869064,-31.913189300335944,-32.30522274877876,-32.3332212488167,-33.172184677794576,-33.95623905584216,-33.427187017165124,-34.31586043909192,-33.526068702340126,-33.03688865015283,-32.3134177820757,-31.441260621417314,-30.809372960589826,-30.125756841152906,-29.4249083166942,-29.623206018470228,-29.79615543037653,-29.629401495680213,-29.394767505582422,-30.213385646697134,-29.757317580282688,-29.17117070639506,-29.832830858882517,-30.507997014094144,-31.358422556426376,-31.12441148608923,-31.76168742449954,-30.764105941634625,-29.97448426205665,-30.95954829128459,-31.922878722660244,-32.0355892595835,-31.206172584090382,-31.690568236634135,-32.51248082332313,-32.520176521036774,-31.705238491296768,-32.69393735611811,-31.810976654291153,-31.45835454715416,-31.97557492274791,-32.86228682566434,-33.06020424095914,-33.311976628843695,-33.04294654401019,-33.10303727956489,-32.20431033708155,-32.57534017320722,-31.68666340224445,-31.55439639138058,-32.22071678703651,-31.557466696947813,-32.1479252805002,-31.46906650578603,-31.598420387133956,-31.62724702525884,-32.29724201094359,-32.118229935877025,-31.786399692762643,-32.0477047720924,-31.15218273131177,-30.493379656691104,-31.277346928603947,-32.19269432825968,-32.154801772907376,-32.50200782949105,-31.89105597976595,-32.655454233754426,-33.16993452096358,-32.69052153173834,-32.32413172489032,-33.204959640745074,-33.85096674738452,-34.66124843340367,-34.946660624817014,-34.58294819109142,-34.09023578464985,-34.73393606534228,-35.239320972468704,-34.27055739797652,-33.912884497549385,-33.68076558597386,-32.92602017801255,-32.91549331136048,-32.10408711479977,-32.51803823886439,-32.404894918203354,-32.119980229996145,-31.659058399498463,-31.244247937574983,-31.82928292406723,-32.52302141627297,-31.685997292399406,-31.7951739160344,-32.578214602544904,-31.66949030570686,-30.770547872874886,-31.070677697192878,-31.939700533170253,-31.501392711419612,-30.677923309616745,-29.851200852077454,-30.72427038382739,-30.537156358361244,-30.034389242064208,-30.75256021041423,-30.078617670573294,-30.539765689522028,-30.924429764039814,-31.08616695413366,-30.309722264762968,-30.32887341827154,-30.312797027640045,-31.085876386146992,-30.813194364774972,-31.588364564813673,-32.385183431208134,-32.16507709166035,-32.09129115333781,-32.29135629441589,-31.956910101231188,-31.326447449158877,-31.500363551545888,-32.29280975041911,-32.075185363180935,-32.17694574780762,-32.02883421210572,-31.86335169756785,-32.17304131900892,-31.79567073425278,-31.067316176835448,-31.369184309616685,-30.58964153798297,-29.66915715392679,-28.842167754191905,-29.257363338489085,-30.037937890272588,-29.75177479768172,-29.426371139939874,-28.895888313651085,-29.750462830532342,-30.07782338326797,-30.763989885803312,-31.617258726153523,-31.77245426690206,-32.43450802145526,-33.01806667866185,-33.40417570946738,-34.23718250216916,-34.44767546048388,-34.74004232836887,-35.4786016382277,-36.43793628318235,-35.45414345897734,-36.3867555661127,-37.149661005008966,-37.41168060619384,-37.71880115987733,-37.02058412786573,-37.34371763607487,-36.6614572359249,-35.79741834895685,-35.042911819182336,-35.8946354938671,-35.966683958657086,-35.38350555906072,-36.309375109151006,-36.217487569432706,-35.48087676335126,-36.303435407113284,-36.15537228807807,-35.29631704604253,-34.32318395609036,-33.58328154217452,-33.96848375024274,-33.07820883765817,-33.830370482988656,-33.8885943624191,-34.35413269000128,-34.598270434420556,-33.792170121800154,-33.45706927264109,-33.55716698197648,-34.10114958090708,-33.98912371089682,-34.00686208624393,-33.88817320531234,-33.7940048314631,-32.95968459872529,-32.77392269205302,-32.23280679481104,-32.343478601425886,-32.00072918552905,-32.90886512026191,-33.440780414268374,-33.57835193770006,-33.21617480972782,-32.85055486951023,-33.032401046250015,-33.07778036640957,-33.797582406550646,-32.82899459917098,-32.679295716341585,-32.21493864944205,-31.87042704084888,-32.41483612032607,-33.100416376721114,-32.19801570754498,-31.385052078403533,-31.214693458750844,-31.303374798502773,-31.98049909248948,-31.230080366134644,-31.154203553684056,-30.92891849996522,-30.37245199503377,-31.09912519901991,-31.67638523178175,-32.19958811532706,-33.03547061095014,-32.843820405658334,-33.19963498786092,-33.65901577612385,-34.08132168557495,-33.46899036411196,-32.663952343165874,-31.790995298419148,-31.782650992739946,-31.20504151005298,-31.107740220148116,-31.495522305369377,-31.82577418908477,-32.30946614407003,-31.779640942811966,-31.489696320611984,-32.127567927818745,-32.89106951793656,-32.95782069256529,-33.86768351914361,-33.11530813248828,-33.50756518635899,-33.87283979449421,-33.776855532079935,-34.49407852720469,-35.214477740228176,-35.2190171177499,-35.43272758135572,-35.21139430999756,-35.253092678729445,-34.400079974904656,-33.995678797364235,-34.13649649033323,-34.45240248553455,-34.861248628702015,-35.282737247645855,-36.02875614492223,-35.77453092718497,-35.28122042538598,-35.15336269326508,-35.81378183281049,-36.29751861048862,-36.93654906749725,-37.713443060871214,-37.925455880817026,-37.700072259642184,-37.38922697911039,-37.228058150969446,-37.81267302390188,-37.03560263477266,-37.113014987204224,-37.56263952003792,-37.206187018658966,-36.34940813342109,-35.88670758670196,-35.224757795687765,-34.98025115439668,-35.86874779080972,-35.12472103210166,-35.98577647795901,-36.27363655436784,-35.81083628023043,-36.464159252122045,-35.546141035854816,-35.515071345027536,-34.99069499457255,-35.87958714924753,-36.22939296299592,-36.57727910578251,-35.92825660388917,-36.036904527805746,-36.94134757341817,-37.080091094598174,-37.051869180519134,-37.329578367993236,-37.46508701983839,-37.06063808547333,-37.868103666231036,-37.037062633316964,-36.07638749945909,-35.84926298819482,-36.212300810962915,-37.088931186590344,-36.713715850841254,-35.96282354649156,-35.84665340138599,-36.06692293519154,-36.396949420217425,-36.73919265763834,-37.28034846344963,-37.35805876972154,-37.57684665825218,-38.03883551247418,-38.50146306445822,-38.64288690965623,-37.73893818957731,-37.056170971598476,-36.69998429622501,-36.806047236546874,-37.702141783665866,-36.86882528895512,-36.00963787548244,-36.22315587988123,-35.373061765450984,-34.464487705379725,-34.388513687066734,-33.77595712244511,-33.83277904894203,-34.62776784831658,-34.28977126535028,-34.06852698745206,-33.988118005916476,-33.13379529537633,-33.084444486070424,-33.48517409712076,-33.906228995881975,-34.13378761801869,-33.807787373196334,-33.99887666478753,-33.16868312098086,-33.61124542867765,-34.33316155243665,-35.297001115977764,-34.65714177303016,-34.328433704096824,-33.87900979956612,-34.590818165335804,-34.534686365164816,-34.708347333129495,-34.40669375890866,-34.14789353311062,-34.29580940539017,-33.41224300535396,-32.88186607975513,-33.850313026458025,-34.06411665910855,-34.993193451315165,-34.69409581227228,-34.18597954278812,-34.126058391761035,-34.33309211861342,-33.90307477442548,-34.52159659797326,-34.21479576639831,-34.960468897596,-34.882268976420164,-34.161308612674475,-33.250280872453004,-32.43008698010817,-33.12277495069429,-34.08856155211106,-33.366031903307885,-33.443451741244644,-33.93379021156579,-33.47691293479875,-34.31801535002887,-34.472157487645745,-34.64594619208947,-34.08482564846054,-33.903075967449695,-33.3642244017683,-33.2045675762929,-34.16714449832216,-35.10671049403027,-36.07459055026993,-36.80782834812999,-36.988417910877615,-37.520104615949094,-37.745552711654454,-38.59383903769776,-39.215812858659774,-38.522387453354895,-38.76172209298238,-38.22986857779324,-38.36575854429975,-39.30223245639354,-40.27990746079013,-39.38602321734652,-38.60900875600055,-38.7052273764275,-39.5976757411845,-39.611113973893225,-40.00986247230321,-40.1192594752647,-40.101866176351905,-39.365197860170156,-39.945627245120704,-40.60628686938435,-40.290248673409224,-40.44205692363903,-39.828931007068604,-40.04728224966675,-40.1334036514163,-40.26629110611975,-39.621922669932246,-40.12815323937684,-39.7201211550273,-39.34587829792872,-40.123173668049276,-40.29912383109331,-41.14341053040698,-41.24292858829722,-41.16843044338748,-41.06562371365726,-40.56302272854373,-41.00223674252629,-41.680301904678345,-41.9676939509809,-42.7988245934248,-43.06751028401777,-42.615645116660744,-43.032798619009554,-43.443234159145504,-44.04435414308682,-43.585361490026116,-44.10753283696249,-43.86042547924444,-43.54749523149803,-42.5611392557621,-42.82979302480817,-42.8394842450507,-43.5348438504152,-44.379507136996835,-44.73223428800702,-45.54128238046542,-44.71557780355215,-44.79316207906231,-45.391434356570244,-44.4778174594976,-44.183882483281195,-44.226706793066114,-43.437322687823325,-44.33294250862673,-45.18763801455498,-44.96591321239248,-44.12267842236906,-44.373153519351035,-45.10630005877465,-44.79516144376248,-44.572310460265726,-45.54671984631568,-45.89860994555056,-45.95957246236503,-45.08252516016364,-44.88768342277035,-43.890264253132045,-42.89237140957266,-42.996808926109225,-42.838655981235206,-42.51446965197101,-42.372143486049026,-41.59744842117652,-41.04384022485465,-41.96510821627453,-41.22751498455182,-41.27818975877017,-41.312782735563815,-41.31522653903812,-40.796251451130956,-39.84899933403358,-40.28163334913552,-39.81069509591907,-39.38020539749414,-38.40933809289709,-38.37517835153267,-38.055311009287834,-37.225301924627274,-37.09526242967695,-37.21377584384754,-36.28843910060823,-35.314129474107176,-34.69025111850351,-35.42335318773985,-36.171297896653414,-36.957474743016064,-36.451348959002644,-35.993796520866454,-36.6645530955866,-37.603163064457476,-37.96451818710193,-38.718312070705,-38.168513413053006,-38.67833157302812,-38.4510142179206,-39.234497571364045,-39.17439139354974,-39.47982789669186,-39.81423587584868,-39.13579960213974,-38.47162840841338,-38.719132001977414,-38.1272303792648,-37.706248740665615,-36.82407170627266,-37.45825462974608,-38.073679828085005,-37.38593293307349,-36.483613627031446,-37.13497850531712,-38.05998981418088,-37.62197419209406,-37.803277294617146,-38.72681733034551,-39.61492010997608,-39.349815231747925,-39.408006962388754,-40.245356793515384,-40.5095182582736,-39.58421370200813,-39.86906555946916,-38.920726785901934,-38.33989338390529,-38.31135694030672,-38.78263447666541,-38.99509298475459,-38.41835254430771,-39.26503892894834,-39.361692984588444,-39.76425159024075,-39.544306887313724,-38.971551484428346,-38.845924699213356,-39.027328233234584,-39.63251396641135,-40.00623511010781,-39.904568939469755,-39.79269356606528,-40.205940164625645,-39.30789247574285,-40.130775491241366,-39.18239690549672,-38.85473502241075,-39.62680801237002,-39.93476951634511,-40.38628901494667,-39.65007681911811,-39.88969892542809,-39.08726487122476,-40.04283805470914,-39.92751415167004,-39.51646520430222,-39.82527753897011,-38.98205086030066,-38.336614755447954,-38.382090978790075,-39.0294268517755,-38.41360627254471,-39.19879359053448,-38.972277604509145,-39.224748925771564,-40.10543207731098,-39.97918236069381,-40.97854881500825,-41.24497629655525,-41.498487669974566,-42.02941199019551,-42.477202030830085,-41.68239708151668,-41.39552897680551,-41.681798946112394,-41.34498285735026,-42.33614567993209,-43.21752153104171,-43.71207043994218,-44.394756629597396,-43.88389181671664,-44.55501288967207,-45.16210842970759,-44.903838019352406,-44.911673767492175,-45.77133994875476,-45.90986379655078,-44.99286838527769,-45.78138361079618,-45.54592282837257,-45.74575229315087,-44.96007465198636,-44.823902043979615,-45.50513815507293,-46.237913308199495,-46.085756469517946,-46.31978917028755,-45.35932407947257,-44.75687331799418,-44.95978680951521,-44.799477107357234,-44.88013675622642,-44.21794109325856,-44.05344461509958,-44.22746204491705,-43.29146020952612,-43.650994958821684,-44.39989912556484,-45.23851875029504,-45.99796722223982,-46.28640529932454,-45.96467287512496,-46.309905043803155,-46.517858831677586,-46.14758525462821,-46.33640870079398,-46.3619048926048,-45.75695761293173,-44.77853435650468,-45.196262932848185,-45.464975194539875,-45.532956214156,-45.766073908656836,-46.29584288643673,-46.130078171845526,-46.296363026835024,-45.8518808032386,-46.273271169979125,-45.6867012064904,-45.248878243844956,-46.20285852719098,-45.94508988317102,-45.43419512314722,-45.22306313784793,-44.278309273999184,-43.8151849671267,-43.16325368266553,-43.97649880126119,-43.05809915577993,-43.78491660859436,-42.83632039837539,-41.85855396697298,-41.628466258756816,-42.16116054542363,-41.49476243881509,-41.070373717695475,-41.93016316089779,-41.97419270919636,-41.41213567415252,-41.28075232403353,-42.18262368766591,-42.99128872901201,-42.92755419248715,-42.23451815918088,-41.58416932402179,-41.21093987580389,-41.526149277575314,-41.81643143109977,-42.38161990651861,-43.37935526622459,-43.370948169380426,-43.08279551612213,-43.821266940329224,-44.217642372939736,-43.75829115929082,-43.40401659486815,-43.45451999967918,-43.5522820581682,-42.5693471590057,-42.82780224410817,-43.37736592348665,-42.95791276032105,-41.97687716037035,-42.57892647758126,-41.74886140599847,-41.8264639172703,-41.235349928960204,-41.65759684005752,-42.088752806186676,-42.15034510707483,-41.447616482619196,-41.20561863016337,-41.469604060053825,-41.273073710501194,-40.58864023629576,-39.89908283716068,-39.82686826493591,-39.700486324727535,-40.4812409998849,-41.13482581777498,-40.65107953036204,-40.86215725261718,-41.13175581814721,-40.13337349658832,-39.44343632599339,-39.43481958610937,-40.26791233941913,-39.93561302497983,-40.177942398935556,-39.69654570473358,-39.50091495644301,-40.0703288866207,-39.39528711605817,-39.57344757951796,-39.17717862781137,-38.561620496213436,-39.50627982104197,-38.68799228826538,-37.90485072787851,-38.18750991206616,-38.83787111239508,-38.97138663381338,-39.15213956683874,-39.10757409222424,-38.124832147266716,-38.11747295502573,-38.582324826624244,-39.18086574552581,-38.76952399034053,-37.8841939130798,-38.76636962546036,-39.462797473650426,-39.367993268184364,-40.108171285130084,-39.775965513661504,-40.113577330484986,-39.70260514924303,-40.396100730169564,-40.33735074708238,-40.70027645397931,-41.13291459484026,-40.98104448104277,-40.91149177076295,-41.63671820051968,-42.259003788698465,-42.57651822362095,-42.955798228271306,-43.90066180424765,-44.127517064101994,-44.31843254715204,-45.19963036477566,-45.86545460252091,-46.38640021439642,-46.638579237274826,-47.192601286340505,-47.122502447571605,-46.2698012846522,-45.402551400940865,-44.694167043082416,-44.03465484268963,-45.00589439366013,-45.009629811160266,-44.46368952374905,-44.15974421938881,-44.19925687974319,-43.21049543656409,-43.74458227492869,-43.35167363844812,-43.2660480835475,-42.307521782815456,-41.630761781241745,-40.896322291344404,-40.759295001626015,-41.26251894980669,-41.877576920669526,-42.38763254368678,-41.954278056975454,-41.236601994372904,-40.57443162892014,-41.48834727611393,-41.669850383885205,-41.909584078006446,-42.0561792855151,-42.71460948139429,-43.64449565578252,-44.0378485112451,-44.11924591194838,-44.25332374451682,-44.166763212997466,-43.706770533230156,-43.009518907405436,-43.26213118014857,-43.899273104500026,-44.233259946573526,-44.41039575077593,-44.184752714820206,-43.22571803117171,-43.17368019418791,-43.645097403321415,-44.188446949701756,-44.24040251271799,-43.76128223538399,-43.611254499293864,-44.05117076355964,-44.754168895538896,-45.64355428609997,-44.931138093583286,-44.39342146506533,-45.36029182234779,-46.29768071277067,-46.339505564421415,-46.93989053694531,-47.198046448174864,-48.153868302702904,-47.56994462851435,-47.97771446732804,-48.08820086764172,-47.138623227365315,-47.54354519722983,-48.2276458744891,-48.603716196957976,-48.17075680103153,-47.933589450549334,-47.622022414114326,-48.17666261270642,-47.427099871914834,-47.74398039607331,-48.41013576555997,-47.721416470594704,-48.1249792445451,-47.63598042214289,-47.161039787344635,-46.85467088781297,-47.41549929231405,-47.181704718619585,-47.11641374276951,-47.15584736503661,-46.822712106164545,-47.532833031378686,-48.45118658943102,-49.02249727398157,-48.22279375232756,-48.63512395648286,-47.95634127641097,-47.01153812604025,-47.546553761232644,-46.78815262624994,-46.66038419911638,-47.58483144082129,-48.00738974753767,-48.20468535553664,-47.73058213619515,-47.249306354206055,-48.09734084736556,-48.08801435306668,-48.25772834662348,-48.61439222795889,-49.50082045327872,-50.421452668495476,-50.23761539161205,-49.75624619005248,-50.02931128581986,-49.45046175876632,-49.504568085540086,-49.34254529699683,-49.84531206637621,-50.2152005424723,-50.24587926827371,-50.54281688621268,-51.08185200812295,-52.08083320176229,-52.67797077773139,-52.59113444713876,-53.01566842617467,-53.67542549269274,-53.669783365447074,-54.172514118254185,-53.219550461508334,-53.706325500737876,-53.496013686060905,-53.337646888103336,-52.663379868958145,-52.19321289006621,-52.82212047278881,-52.91291634272784,-52.355583424679935,-51.657332982867956,-52.17947914544493,-52.50956904795021,-51.95974746020511,-51.78849414829165,-51.41629225155339,-51.487951898016036,-52.24497228860855,-52.41839151410386,-52.889833725523204,-52.96681139199063,-53.192482547834516,-52.27458950690925,-51.97350894100964,-51.96758242091164,-51.747723823878914,-51.0090385065414,-50.59814189840108,-50.122253065463156,-49.64820523606613,-49.07565554790199,-49.33649853384122,-48.60151964100078,-48.35097380634397,-48.97044461872429,-48.96429521171376,-48.83205586625263,-49.13021750329062,-49.73170321108773,-50.396921465639025,-50.10073363734409,-50.59689401462674,-51.22426318842918,-52.01874575437978,-51.291713000275195,-50.46329802228138,-51.056811896152794,-51.224781077355146,-51.95347446016967,-51.45685203745961,-50.630349937826395,-50.7214515004307,-50.05486499844119,-50.98169077793136,-50.12711320677772,-49.70375079847872,-50.63884516712278,-50.39945039153099,-50.180302368011326,-50.048364067450166,-50.48617221368477,-50.463651545811445,-50.16311975475401,-49.83204449992627,-50.14872663281858,-49.75524090323597,-49.975851335562766,-49.13341793837026,-49.714274554979056,-48.827256470918655,-48.67701773438603,-49.58448679698631,-50.06397044984624,-50.48504655715078,-49.8016319507733,-49.05217363266274,-48.081779920030385,-48.06348823104054,-48.273246044293046,-48.175943058449775,-48.93789628241211,-48.294778876937926,-47.79691417329013,-48.760367882903665,-47.87958014663309,-47.9367669634521,-47.45043737348169,-47.22625870909542,-48.1551163373515,-47.672180731315166,-46.714999720454216,-46.05160092795268,-45.68737009773031,-46.04490647185594,-46.41144476737827,-47.06266376655549,-47.20839991979301,-46.416630493011326,-46.0733471987769,-46.33338951691985,-45.846751131583005,-46.6497708754614,-45.79313256405294,-45.409969286527485,-45.14426205866039,-45.197374240960926,-45.26523978635669,-44.84612328745425,-45.74259485676885,-45.34189176093787,-45.5105981673114,-45.62106631649658,-45.38673807075247,-45.15822182409465,-45.138361756224185,-45.09226160496473,-46.034163360949606,-45.49347788374871,-46.07721682544798,-46.66388478362933,-46.8536001262255,-46.3963122619316,-46.20492863841355,-45.38324879715219,-46.28011023718864,-46.369626915548,-46.16094745416194,-47.09654520917684,-46.90455320477486,-46.988909668754786,-46.07073100935668,-46.86626482475549,-47.38886934192851,-48.186082198284566,-48.39293759595603,-47.877906502690166,-48.597464327700436,-48.457547932397574,-48.32654262473807,-47.570772545877844,-47.61544743180275,-47.900454801507294,-48.33976438967511,-49.02941494714469,-48.446762891020626,-49.262085722293705,-49.94891500240192,-50.743936536833644,-50.74347258498892,-50.883713498245925,-50.56791341677308,-50.806105765048414,-51.37586210202426,-50.90125354798511,-51.20720915263519,-51.99230380821973,-51.77065101824701,-52.397707488853484,-52.43415997456759,-52.34145489381626,-52.22374073974788,-52.28212993359193,-51.83703186130151,-51.81764985481277,-51.45725983148441,-51.8449129993096,-51.925816983915865,-52.022058566100895,-52.490949489641935,-52.58745578629896,-53.04695387929678,-53.464944606646895,-53.9621834368445,-54.27104310365394,-53.283746192231774,-52.626257862430066,-52.91768391430378,-53.64527610735968,-53.50922072166577,-52.639925942756236,-51.78902451414615,-51.17767479037866,-51.94125283975154,-50.99984500044957,-50.549460247159004,-51.288039211183786,-50.672506257425994,-51.36031576804817,-52.23952210601419,-53.12929097888991,-53.78026496153325,-53.41704004490748,-52.452491003554314,-53.09412123123184,-52.71655732207,-51.85984100494534,-52.790078934282064,-52.900715893600136,-53.26435321755707,-52.988013736438006,-53.742282519117,-54.63389284675941,-55.097997810225934,-54.79934414662421,-54.215444926638156,-55.08764942782,-54.74963962985203,-54.21363910427317,-54.556201526895165,-54.324487327598035,-54.95793855795637,-55.081530888564885,-54.32954323105514,-53.648874322883785,-54.20140862464905,-53.94067223323509,-53.70156854856759,-53.635053139179945,-53.86808944772929,-53.430618063081056,-52.997994309756905,-53.327969058416784,-53.71961396187544,-54.42813510121778,-53.72104984289035,-53.76981539744884,-53.70483241416514,-53.81668473780155,-54.47132771834731,-55.43544868240133,-55.37300002574921,-56.15971116023138,-55.96708725905046,-55.392625011503696,-54.58035498345271,-55.428616013377905,-56.29140790132806,-55.589430751279,-54.774817049037665,-54.55526118539274,-54.14487383281812,-54.91889212001115,-54.05354626243934,-53.491401521489024,-53.043754033278674,-52.16323030227795,-52.637540694791824,-53.255069667007774,-53.361808985006064,-52.86899551842362,-52.47489887755364,-51.98053026013076,-51.70846935035661,-51.01603311114013,-51.32441169349477,-51.98619651515037,-52.23544017644599,-52.60258829826489,-52.27939672349021,-52.777264670003206,-52.2390440441668,-52.24884428130463,-51.446726171299815,-51.800959810614586,-52.77525830361992,-51.984957402572036,-51.37996781244874,-52.234221445862204,-52.28537920629606,-52.12452765414491,-51.82036137022078,-52.50862225983292,-52.038813904859126,-51.81722426041961,-52.41680981265381,-52.592561677563936,-52.76418415270746,-51.90170610882342,-50.929770106915385,-51.44377265172079,-50.74171413294971,-51.29788483446464,-50.844239089637995,-50.27988523757085,-50.267067595385015,-51.07962897140533,-51.64603390172124,-52.484873205889016,-51.98909489437938,-51.84018983086571,-51.6169526851736,-52.472956182435155,-52.320659949444234,-51.85484003275633,-51.07491398975253,-51.742494851350784,-51.027838168200105,-51.84737558988854,-52.40951825724915,-52.89767460525036,-53.569919363129884,-53.201008427422494,-53.27435224596411,-53.41783963190392,-52.876434969715774,-53.121066140476614,-53.489669050090015,-52.812583030201495,-52.39460398629308,-52.416236127726734,-52.27064107172191,-52.6973252450116,-52.24910134868696,-52.68642784655094,-52.55318542011082,-53.360028163995594,-52.445988989435136,-53.27497867355123,-53.75194825185463,-53.53335354104638,-53.29198463819921,-53.16059199720621,-52.6556315086782,-52.24648636067286,-52.227432678919286,-52.98309608222917,-52.22960109356791,-51.896476299501956,-52.378447846509516,-52.98446459136903,-53.8411441417411,-54.463510871864855,-53.80257788160816,-54.63696480775252,-55.03264595475048,-54.26811135141179,-54.09832661645487,-55.03684299625456,-54.95125419087708,-54.46764608286321,-54.656103333458304,-53.85554242739454,-53.02993950340897,-52.81076874304563,-52.001327249687165,-52.65860148565844,-52.802761911414564,-52.004306444432586,-52.99195139622316,-53.968415956478566,-54.75343936542049,-54.93356536468491,-54.033404406160116,-53.70378277497366,-54.53180431667715,-53.784196991007775,-53.55942257260904,-53.149649035185575,-52.82556359283626,-52.58706734422594,-53.05166876176372,-53.934046438429505,-54.38138198805973,-54.49552754685283,-55.2211963175796,-55.286073566414416,-54.3105033589527,-54.13529525185004,-53.74283097498119,-54.23269220953807,-54.5117337112315,-55.297182818409055,-55.1597445840016,-54.571834535803646,-55.45235796878114,-56.37325233593583,-57.29901838675141,-56.665779375936836,-56.23933221492916,-56.61900106910616,-56.32525283843279,-56.05201709456742,-56.85921055357903,-57.29415920842439,-58.07923726923764,-57.440920480992645,-58.285884380340576,-58.27827436197549,-58.36887342017144,-58.19700341345742,-57.47616437682882,-56.68299042759463,-57.458424284588546,-57.276805884204805,-58.06082124449313,-58.5943148159422,-59.36602319404483,-58.86676340922713,-58.753151290118694,-57.84150914102793,-58.550293607637286,-59.54433932155371,-59.74030730454251,-60.35367506695911,-60.59266893612221,-61.10207455558702,-60.699321425985545,-61.14080508844927,-60.657340068835765,-60.25241897068918,-61.007500785868615,-60.04364397795871,-59.796874469611794,-59.93397924071178,-60.80502922413871,-60.222471753600985,-59.748418369330466,-59.94616705458611,-59.70194999920204,-59.229625328443944,-59.371761626563966,-58.44942537974566,-59.11454256391153,-58.75125408731401,-59.50744687626138,-58.581877959892154,-57.72559171868488,-57.67474363837391,-56.7236067103222,-56.01643781224266,-56.95651236642152,-56.73910235660151,-56.34160470217466,-55.361725606024265,-54.53372489614412,-54.14603774668649,-54.86814163206145,-54.78722445759922,-55.62889602128416,-56.17670745914802,-55.82088363263756,-55.406047746539116,-55.92688638763502,-56.46359174186364,-56.768668490462005,-57.109042598865926,-57.00631210813299,-56.251040102913976,-56.328525735531,-57.09766238555312,-57.586647575721145,-57.49344001431018,-58.051899867132306,-58.449874626938254,-58.30788351641968,-58.34503273712471,-58.36010471172631,-58.47663079528138,-57.58905079541728,-57.42982362722978,-56.65921300556511,-57.1285605924204,-57.78806754248217,-58.787177830934525,-58.25540818460286,-58.401316578965634,-58.827216875739396,-59.75738082593307,-59.62179844081402,-59.02464541606605,-58.49558596173301,-58.47059265291318,-57.58758925367147,-56.842162389773875,-57.60042844247073,-58.45847689267248,-59.44874265277758,-59.33621215308085,-59.99921749299392,-60.61627983348444,-60.38610311970115,-59.77352129947394,-59.73504027770832,-59.826664083171636,-60.42200521938503,-60.18599953548983,-60.55102081457153,-60.887553366366774,-61.51964875496924,-61.719445071183145,-61.311191441491246,-61.99336237646639,-62.26234570937231,-62.39512802474201,-62.70305441878736,-62.7657747650519,-63.01777616236359,-62.97392267268151,-63.95766975404695,-64.34038260299712,-64.2062068595551,-64.55863672122359,-64.85387877188623,-64.66636743256822,-63.84587270068005,-63.81062509585172,-63.168081731535494,-62.58197061344981,-62.42640972742811,-62.834419117774814,-63.52830949006602,-64.4432163182646,-63.63443656032905,-64.00600214675069,-63.818019315134734,-62.98323122179136,-63.8210651348345,-63.93362186290324,-64.15486871497706,-64.83490818738937,-65.42793101584539,-65.86375337839127,-65.95306236576289,-66.38315615896136,-65.49293260788545,-66.3360730339773,-66.92022543819621,-66.28913502255455,-66.62387572042644,-66.15702213579789,-65.16200906550512,-64.50726773170754,-64.86835520761088,-65.61899300152436,-64.8358188928105,-65.22272040788084,-65.60942759970203,-66.1541575579904,-65.7801476768218,-65.34124871017411,-65.80012584617361,-64.99330660467967,-64.20674652792513,-64.74577627005056,-64.4161371840164,-64.74696501158178,-64.18601995054632,-64.05753016285598,-63.852098727133125,-64.34389159223065,-63.54623111570254,-63.787023598793894,-62.921144005376846,-62.940470647998154,-62.819482480641454,-63.42105505615473,-64.4203633358702,-63.92951229726896,-64.59661398502067,-65.25554367294535,-65.8740346650593,-66.21485902834684,-66.445215345826,-65.58758702781051,-65.92217626795173,-65.2851017289795,-64.37267487077042,-64.58829850843176,-65.09488216228783,-65.72612289339304,-65.57528805593029,-65.07447795569897,-64.83473130781204,-64.2269251854159,-64.84100280236453,-64.54790573613718,-64.17538935411721,-65.08628297923133,-64.41072628693655,-64.57380718411878,-65.54693096410483,-66.43012815713882,-67.11924366466701,-67.0487443455495,-66.19056489272043,-66.2168535827659,-66.36051707807928,-67.09824644168839,-67.68817176809534,-68.3140319287777,-68.8787198504433,-67.92516279639676,-68.41386325610802,-69.27360090985894,-70.08999035740271,-70.27872554026544,-70.04208879638463,-70.57134907785803,-71.0911386446096,-71.46372566418722,-71.16215658327565,-71.76856663543731,-72.12194476276636,-71.71925888210535,-71.33977132663131,-71.04441339010373,-71.4040809716098,-71.83599201589823,-71.85560161527246,-71.85483863716945,-71.30445905588567,-70.436091509182,-71.17170373862609,-71.91799797350541,-71.38760355627164,-71.5196766438894,-71.64834823552519,-72.36966917850077,-71.43751091323793,-72.04395693028346,-71.4336207183078,-70.73807321488857,-70.78177748853341,-71.72475842153654,-72.59291301807389,-72.61749326065183,-71.83586886059493,-71.2378474837169,-71.83997082477435,-72.67419019015506,-72.96819094521925,-72.89644457306713,-72.79181317752227,-72.97977273026481,-72.70754808932543,-72.60507215699181,-72.43613243335858,-72.86745507782325,-73.0385903082788,-73.80507520865649,-73.57403485104442,-73.37963417824358,-72.56838951492682,-71.8779087769799,-71.54224294889718,-71.26379106706008,-70.77444061590359,-71.36018875753507,-72.22878708131611,-71.56018189201131,-71.20627360092476,-71.14813147019595,-71.16923066368327,-72.16249903244898,-72.37518450571224,-72.83451388729736,-72.56992128537968,-72.85318460036069,-73.00153136672452,-73.18541147140786,-72.5667714602314,-72.52813692204654,-73.0034594386816,-72.1003787140362,-71.40420436812565,-72.32165837613866,-71.9876235355623,-72.14072890160605,-71.2544102682732,-70.87982558039948,-71.28185261413455,-70.55879990383983,-71.28444152278826,-70.7494276817888,-71.13635906530544,-70.41084462590516,-69.77475812425837,-69.0645367805846,-68.62803716212511,-69.00641910359263,-68.17950462922454,-68.8726840717718,-68.21733173169196,-68.02444750396535,-68.70896211126819,-68.96774087334052,-68.28356169722974,-68.6798660014756,-69.55368993198499,-69.56749032391235,-69.00270750047639,-68.13083202764392,-68.84343315055594,-69.57415947597474,-69.05506198154762,-69.73182925349101,-69.82626218767837,-70.28019439615309,-70.36954570980743,-69.76078919600695,-69.78768987348303,-70.77315806224942,-70.83173424750566,-70.0057687368244,-69.88482715049759,-69.6512183402665,-69.70021196827292,-69.83449209248647,-69.81705880677328,-69.28476983122528,-69.26034091413021,-68.62033926742151,-68.38767768582329,-67.68688500067219,-67.54721615137532,-66.62957578385249,-65.90260352380574,-66.3416233677417,-66.01017250912264,-65.5718809524551,-64.58539418503642,-64.10217589931563,-64.78513444866985,-64.12128566857427,-64.58328547980636,-64.3957794578746,-64.40707648079842,-64.29687089612707,-64.31974017154425,-64.58854255126789,-65.22315409593284,-65.56486072205007,-66.5518382624723,-66.27102729631588,-65.8110063560307,-66.31089050974697,-66.40062812296674,-65.96361225144938,-65.68466383777559,-64.89200447546318,-65.4884216724895,-66.1264404184185,-66.97775917034596,-66.34078425029293,-66.65833079162985,-67.27196538541466,-67.99985799286515,-68.80377358710393,-69.38904157886282,-69.27147890487686,-69.9015862182714,-70.27271561417729,-71.21452985610813,-71.18577154399827,-70.8073118655011,-70.74729268951342,-70.7922181058675,-71.05002794554457,-70.86452263547108,-70.00132804643363,-70.23960518045351,-70.20451191626489,-70.20191511977464,-71.16275926772505,-71.51016584038734,-71.69181410083547,-72.19397410424426,-71.92547261714935,-71.16202596854419,-70.72524020308629,-71.66580184036866,-72.4673941237852,-71.53378710104153,-72.5296400822699,-73.2603113069199,-73.39962523849681,-74.01227915799245,-74.59743591258302,-75.09455662220716,-75.57319328328595,-74.78094513341784,-74.47506378404796,-75.29628702858463,-75.53496053162962,-75.61691663740203,-75.78781026415527,-76.64605552144349,-76.29682875797153,-75.71471147891134,-76.57173169357702,-76.76683630095795,-76.18643925664946,-75.31348368851468,-75.26069158222526,-76.06933212000877,-76.83290925156325,-75.93429494835436,-75.51676034927368,-75.23702129116282,-74.67002969002351,-74.50447724293917,-73.6296866023913,-74.22342284256592,-73.94767255708575,-73.04598619043827,-73.09980627242476,-72.4013657970354,-72.49623810732737,-71.55171759286895,-71.02518343785778,-71.32556966133416,-71.17224927479401,-70.5945033277385,-70.5805825907737,-70.24280391074717,-69.74081716965884,-70.43546842830256,-70.39448625454679,-69.75873777084053,-69.56965544540435,-68.91086636064574,-69.75764485821128,-70.27770035061985,-70.49597666738555,-69.83190592518076,-69.91393772838637,-70.35991465253755,-70.31218631751835,-71.227825100068,-71.9601443852298,-72.84333759173751,-73.33153647137806,-74.30130771454424,-75.03352172626182,-75.3247860390693,-74.53825900657102,-74.18005982181057,-73.19615145586431,-72.65844629192725,-72.148847555276,-71.52978867059574,-71.24400207493454,-71.73307460127398,-71.73018718138337,-71.7875222763978,-72.53736281115562,-73.00225930241868,-73.4563006805256,-72.89616059092805,-73.39235519338399,-73.17787807947025,-72.22538495855406,-73.13349596597254,-72.16209324728698,-71.67912449780852,-72.54535838821903,-73.29247585125268,-73.96295178635046,-74.44590485468507,-73.99252917105332,-73.5471413130872,-73.43053655372933,-73.58398377522826,-73.37040561251342,-73.3792113950476,-73.9066970795393,-73.21285752626136,-73.59816774958745,-73.35580195346847,-74.0115465526469,-73.13788509229198,-72.61067577265203,-73.03600885206833,-73.94405475445092,-73.08737533725798,-72.43010339746252,-72.24331646598876,-72.56536081247032,-72.92488675564528,-73.5860872627236,-73.79855046560988,-74.23707977309823,-74.32996464893222,-73.36800927016884,-72.6000901744701,-71.8065749774687,-71.73777959682047,-71.64797057304531,-70.96916472958401,-71.44018894433975,-70.68257175199687,-71.45692782755941,-72.431252845563,-73.2239085957408,-74.08707314962521,-74.93664466962218,-75.14981027506292,-75.60479184333235,-74.68555555352941,-74.1846399907954,-73.32680012471974,-73.42350677214563,-72.7109601427801,-73.38255991972983,-73.48989899642766,-73.23936067521572,-73.19619806436822,-72.31869797967374,-71.51234807353467,-72.0694074537605,-72.69117874233052,-72.10878797387704,-72.65731889707968,-72.17324923025444,-73.08978831348941,-73.2483196137473,-72.7387503515929,-72.14908709330484,-73.10798454331234,-73.29765204759315,-74.21366444742307,-73.62676495080814,-74.2905048574321,-74.0800146679394,-73.73832472786307,-73.36765599669889,-74.03295692056417,-73.59147469187155,-74.33524237200618,-73.64018008066341,-73.84222464822233,-73.14217509282753,-74.0544513007626,-73.83602773630992,-73.76961555937305,-74.3808737793006,-73.78222310636193,-73.78272601496428,-74.5077776783146,-75.24502325430512,-74.42821483500302,-74.1132676540874,-73.49313955474645,-72.54111248673871,-72.86352113774046,-71.90740339970216,-71.2139762090519,-71.66044858144596,-72.47375176288188,-72.89500911766663,-72.9671200318262,-72.42943678377196,-72.54430589778349,-71.7288297326304,-72.20559073332697,-72.29133221739903,-71.50055981846526,-71.18938846420497,-70.55460261460394,-70.14219654910266,-69.72937302105129,-68.79578102054074,-67.96376993134618,-67.96079370705411,-67.36848727846518,-67.63716495456174,-67.45881123747677,-67.03427849709988,-66.67119625909254,-65.8867163239047,-65.9267874257639,-65.58905148971826,-66.24010927602649,-65.92312186211348,-66.33410451700911,-66.21966650802642,-65.68556620879099,-65.75129827158526,-65.49206894310191,-65.20077315997332,-64.9510511434637,-64.76312993932515,-64.82254304597154,-64.39275181246921,-64.51638380112126,-63.6379707865417,-63.994343277066946,-64.12255343329161,-63.35605039494112,-63.00722700031474,-63.537421364337206,-63.765132368542254,-64.29650521092117,-63.460134150926024,-63.39007213478908,-64.32523163501173,-63.712498324457556,-63.376585548743606,-62.637339163571596,-62.31964914128184,-62.16732215648517,-62.636644281446934,-62.63047002116218,-62.010088314302266,-61.488623436540365,-61.51192199392244,-61.22614674735814,-61.9918508855626,-62.30454450612888,-62.43966741440818,-63.170410248916596,-63.37091756705195,-64.0775524075143,-64.67179414443672,-64.04090817738324,-64.34622011706233,-64.05525118857622,-64.39207123313099,-64.06264683092013,-64.85989705799147,-65.77008410962299,-66.29633777588606,-66.67816869262606,-66.49368206318468,-65.55925172474235,-64.97676034504548,-65.32243095245212,-64.53640201734379,-64.70421503623948,-64.71390376705676,-64.46694024140015,-64.08319254312664,-63.56145766703412,-63.06567955762148,-62.26444874703884,-61.84009626088664,-61.701652827207,-62.41117195226252,-62.703734351787716,-62.13997821556404,-62.02716143382713,-61.38652109634131,-60.63363032368943,-60.49612017534673,-60.42471591755748,-59.765525616239756,-59.33931999793276,-58.868218750692904,-59.64002547506243,-59.60470711346716,-59.771091622300446,-58.7740525896661,-58.00622669607401,-58.79689148021862,-59.173417090438306,-58.496365506667644,-58.168103128671646,-58.523879314772785,-59.083018539473414,-59.370447447523475,-58.77783934865147,-59.77070186659694,-60.012213533278555,-59.90457526920363,-60.62129488401115,-61.25826050294563,-61.70297871902585,-60.909665195737034,-59.93156912224367,-59.405677108094096,-59.15409980993718,-59.580600844696164,-59.127653416246176,-58.1528801638633,-57.82748561585322,-57.38089642254636,-56.75738220708445,-57.20617529284209,-56.654584233183414,-56.81611325358972,-57.57546516600996,-58.185233866330236,-58.369349082000554,-57.37903315201402,-56.54408700438216,-56.13584396755323,-56.003593037836254,-55.90536116762087,-56.65092745469883,-55.99971531378105,-56.9710267521441,-56.22063033701852,-55.684473167639226,-55.33331964304671,-54.745313566643745,-54.518092915881425,-54.182763278484344,-55.10489179380238,-54.89310804847628,-55.48725234391168,-55.790618502534926,-55.79931876901537,-56.792614932172,-56.33238588552922,-56.01431307569146,-56.858547733630985,-57.03146150102839,-56.799216761253774,-56.13764387788251,-56.20683938683942,-56.043656000401825,-55.480280357878655,-55.88251717342064,-55.36977305216715,-54.48768618982285,-55.08861811738461,-55.23398612579331,-55.75063649518415,-55.44020252395421,-55.46202792413533,-55.3924471065402,-54.887362184002995,-54.39834369998425,-54.5926163662225,-54.72905666939914,-54.95698427082971,-54.8196885981597,-55.09425316238776,-54.62407459272072,-55.549774430226535,-56.37022954272106,-56.56950688268989,-56.397565233986825,-56.27054796228185,-56.15619682846591,-55.18184128124267,-55.50595584092662,-55.91370190633461,-55.493632443249226,-55.36764594633132,-55.67891268571839,-55.305644530337304,-55.24878852022812,-55.13835986610502,-54.41794057469815,-53.88202928705141,-54.016056602820754,-53.91360177891329,-54.43480505142361,-53.56985035631806,-53.50827006716281,-52.765405944082886,-53.558935419190675,-52.926890913397074,-53.09378851251677,-52.59720068657771,-52.45443038875237,-52.88934084447101,-53.66226874338463,-53.57364400988445,-54.486572223715484,-54.43405292602256,-54.027074162848294,-54.348371957894415,-55.33334738900885,-55.66826503677294,-55.33964905887842,-54.382705034222454,-54.201085618231446,-54.97150434041396,-54.58809224469587,-55.56501580728218,-54.64378118375316,-54.380192030686885,-53.800564034841955,-53.213698925916106,-53.48461709264666,-52.743094882927835,-51.94866996444762,-52.78374969912693,-52.50020774221048,-51.95300850365311,-51.591301573906094,-52.21781500335783,-51.82510139513761,-51.30087982304394,-51.29138779640198,-50.46182434493676,-50.71474000811577,-51.194720370229334,-51.611441902816296,-52.02053945651278,-52.252626597415656,-51.75824808096513,-52.31017273897305,-52.30423890519887,-52.68297202186659,-51.763067970983684,-50.8037991267629,-49.894352866802365,-50.273374784272164,-49.896538412198424,-49.839506345801055,-50.7265388132073,-51.132813384756446,-51.23489205678925,-52.16935511212796,-52.74316344829276,-53.61232063174248,-53.294738058932126,-54.00086076837033,-53.65303421812132,-54.135404851753265,-53.4840330388397,-53.727904772851616,-52.893422103021294,-53.56826862832531,-52.63981864973903,-52.58302334649488,-52.538837040774524,-52.52339771902189,-52.426362440921366,-51.63022966682911,-51.36319445166737,-51.04690122231841,-51.81240614224225,-52.69222268881276,-53.54957164172083,-54.095105005428195,-53.808547474909574,-53.65296146227047,-54.48297718260437,-54.67122156266123,-53.92554764030501,-54.28893793700263,-53.645405555609614,-53.51764831226319,-54.208439278882,-53.79453809838742,-54.23234370816499,-53.36060890322551,-53.61925837956369,-54.31612483039498,-54.935760769527406,-54.705201195552945,-54.21341052511707,-54.69391159201041,-55.03692880040035,-55.57375796511769,-54.82755313208327,-55.0021367110312,-54.20039248513058,-53.58708950597793,-53.85834904387593,-53.56551471538842,-54.02985696028918,-54.35635939752683,-54.72908081719652,-54.91381399938837,-54.3621038608253,-53.386350095737725,-54.12614590721205,-54.20288736000657,-53.21368244010955,-52.96675326069817,-53.92518781637773,-53.72005610866472,-52.87016296712682,-51.99574803886935,-51.87294709589332,-52.03624149411917,-51.24755616718903,-52.09213731624186,-51.18822082551196,-51.995161899831146,-52.86895463615656,-51.90051649091765,-51.55715140560642,-51.04539036937058,-52.040710389614105,-51.192640277557075,-50.74921941105276,-51.1416313899681,-50.476795811671764,-51.23117307573557,-52.11977124679834,-52.98819199856371,-53.91930719045922,-53.35946165211499,-53.63030292559415,-53.03288832679391,-52.31498223496601,-52.030883323866874,-51.90918813087046,-51.13890352239832,-52.05841379938647,-51.935757691040635,-51.081204754300416,-51.657688825856894,-52.31890446180478,-51.70547794690356,-52.26620134385303,-52.05728592071682,-52.73710244335234,-53.677402042318135,-52.85467536514625,-53.254709041211754,-52.56555324373767,-52.37878280226141,-52.97682745009661,-52.83400894701481,-53.274358726572245,-52.30656132474542,-51.47849314287305,-52.36558174248785,-51.608524105511606,-51.16747077787295,-50.302369261626154,-50.9400283084251,-49.98807199904695,-49.62226651236415,-49.42026110785082,-49.767327620182186,-49.60337708471343,-49.176094681955874,-49.34710315382108,-48.44820627570152,-48.257328921929,-49.239918074570596,-48.80328722903505,-48.26896111853421,-47.502236081752926,-48.130636462941766,-47.54380131792277,-47.39118346804753,-46.82610128307715,-47.03309181518853,-47.869341609533876,-48.31181139824912,-49.18225639965385,-49.554865553975105,-48.74495333293453,-49.082448383793235,-48.67595090018585,-49.65608355309814,-48.79848813870922,-47.999446684494615,-48.817074687220156,-49.551197863183916,-49.203099612146616,-49.39636803139001,-50.25371793145314,-49.83867675438523,-50.524713770486414,-51.340554639697075,-52.191801806911826,-51.965305069461465,-51.09735396085307,-50.20215860521421,-50.148984217550606,-51.006641775835305,-50.09099600370973,-49.20114572625607,-49.15610556863248,-48.411813197657466,-48.8222451726906,-47.954465673305094,-47.91289220843464,-47.35800498723984,-47.947224548552185,-47.172549774404615,-46.4694918980822,-46.229417165741324,-45.28548365039751,-45.35190010163933,-45.711972918361425,-45.49531992804259,-45.516423425171524,-46.285747059155256,-45.3870480931364,-45.456992133986205,-46.256421509198844,-46.34417551010847,-45.90962735423818,-45.10001123137772,-45.78082298161462,-46.77588852541521,-46.264326928183436,-46.89186137355864,-46.21097484184429,-46.52590572135523,-47.26871239254251,-48.014339016284794,-48.25832109572366,-47.81288990471512,-47.758043073583394,-47.88771675946191,-48.72351312311366,-48.61153875943273,-49.13540894957259,-48.96120245475322,-49.6736576477997,-48.90620732028037,-48.603839735500515,-48.77837357111275,-47.92316317697987,-48.21030185138807,-48.81657840684056,-48.092635897453874,-48.8951862687245,-49.341220311354846,-50.202922930475324,-50.13303561368957,-49.21671656565741,-49.8055353295058,-48.82295364886522,-49.22765371855348,-48.543181302025914,-47.966306815389544,-48.75880740163848,-49.18269600113854,-48.239733275957406,-48.350768466480076,-48.04038951359689,-48.25799763808027,-48.069009258877486,-47.31740318145603,-46.66183400619775,-47.3532097870484,-47.141478242352605,-46.92242050310597,-47.77667361078784,-47.0757607081905,-47.63340772502124,-47.38944610627368,-46.58709630696103,-46.974034159909934,-47.39228004263714,-46.86058855988085,-47.00638158945367,-47.77344091143459,-46.83811947051436,-46.975773186422884,-46.62518111662939,-46.972709205467254,-46.2125453655608,-45.626675080507994,-45.49388660863042,-44.543393791653216,-45.34892410412431,-46.2734195063822,-45.81446779007092,-46.353659252636135,-45.54787094471976,-45.270412479527295,-44.45510166045278,-45.28491126187146,-44.65352328680456,-44.215776422061026,-43.90865350002423,-44.10655288863927,-44.63207791745663,-45.260680944193155,-44.40012071141973,-44.15412322245538,-44.63886590721086,-43.687955585774034,-44.24117259448394,-44.433946292381734,-45.20565914781764,-44.8047606498003,-44.212549332063645,-44.65630415221676,-43.92799465218559,-43.69985939282924,-42.90372858196497,-43.38142020069063,-43.46600820077583,-43.230184864252806,-43.11218510568142,-42.342383386101574,-42.04398096399382,-43.01564981183037,-42.436566594056785,-42.08978171879426,-41.988198515959084,-42.137475793715566,-41.75928811309859,-42.35308392718434,-42.02528281044215,-42.226751811336726,-41.95165925845504,-41.827415119390935,-42.493018879089504,-42.85208360152319,-42.491511340718716,-42.6884711207822,-43.490771071985364,-42.65187299344689,-42.79614754207432,-43.47308017266914,-42.77274475246668,-43.50909361150116,-44.32592376228422,-43.50349030457437,-44.41453513596207,-44.5410970300436,-43.97507447935641,-44.19095179857686,-43.65474561555311,-44.257224197499454,-43.5434706103988,-43.48743102233857,-44.261670880019665,-43.34884532773867,-42.8163258144632,-42.98320132959634,-43.03625373216346,-43.19627589127049,-42.92574927536771,-43.82590865716338,-44.58558162394911,-44.250616351142526,-44.743199915625155,-44.38461905578151,-43.79772357130423,-44.22087491955608,-44.55305974651128,-43.86152700567618,-43.408653426449746,-44.12225406942889,-44.44296815013513,-43.83682443527505,-43.917704100720584,-44.41297773970291,-44.93770674942061,-44.31723692640662,-44.112950751092285,-43.52696456341073,-43.351382706314325,-42.62914077332243,-43.38866446586326,-42.84628767473623,-42.464628579095006,-41.60980071965605,-41.12823860486969,-40.236096928827465,-39.35356457717717,-38.65813621180132,-38.3245964339003,-37.330721511505544,-36.4050572142005,-37.169997937977314,-37.87392642721534,-37.89836894115433,-38.14730061450973,-37.84509492246434,-37.068414324428886,-36.38123805588111,-35.5123438090086,-34.60363001190126,-33.705220490228385,-33.38245444139466,-33.66004421887919,-34.53793127415702,-34.09748552786186,-34.6488151694648,-33.80926183843985,-34.03672125423327,-34.34978687344119,-34.431794226169586,-35.154447921551764,-35.18093458050862,-35.07268661726266,-35.5091700819321,-35.129581179935485,-35.38271404849365,-34.41455515148118,-33.65503534115851,-33.599168345332146,-33.17147287307307,-33.11610259395093,-33.65936631523073,-33.84214991563931,-33.12581087183207,-33.037227297667414,-32.942775858100504,-32.84684260515496,-31.881727006752044,-32.0275403521955,-32.66937272390351,-31.941602049395442,-32.32947963429615,-32.00029044691473,-32.5803689500317,-32.50143899070099,-31.685773208271712,-31.49364652018994,-31.413576948922127,-30.715750163421035,-30.79717847518623,-30.95983278658241,-30.40215588081628,-30.342747275251895,-29.742553828284144,-30.56528117833659,-30.560871575027704,-31.074520997237414,-30.177089800592512,-29.800840434618294,-30.353572683408856,-30.774525764863938,-30.26479912456125,-30.53903168765828,-30.98373885732144,-31.759309907909483,-31.789076934568584,-31.57699096435681,-30.85475834319368,-31.269165828358382,-31.751556313131005,-31.71937179332599,-31.07043395936489,-32.06018075393513,-32.2673304551281,-31.630219783633947,-31.18862947449088,-30.30326268589124,-30.413565646857023,-30.197464937809855,-29.482876251917332,-29.057352664414793,-28.988158256281167,-29.38261885335669,-29.00623176433146,-29.250701314769685,-29.85941950744018,-29.13182639889419,-30.10594945354387,-29.845352258067578,-29.39601854234934,-30.247793653514236,-29.477998950053006,-29.03628016728908,-28.19754310278222,-27.51041677687317,-27.85812078556046,-27.490399923641235,-28.263723203446716,-29.036176609806716,-28.609077530913055,-27.955789651721716,-27.490727974567562,-27.87869629729539,-27.321287834551185,-27.23195884982124,-27.6964596551843,-26.95379621628672,-26.0637493734248,-26.648871520068496,-27.340935794170946,-27.589238774497062,-28.39633889356628,-27.578959391918033,-26.96952256327495,-26.728864562232047,-27.69865750707686,-27.078495524823666,-26.992977488785982,-27.035417646169662,-26.896658749785274,-26.301941376645118,-26.98110563494265,-27.22576608415693,-26.49579179706052,-25.6925911270082,-25.531002019532025,-25.78324211202562,-26.71439782716334,-26.662992192432284,-26.860531848389655,-26.677788414992392,-27.015467622317374,-26.458454528823495,-27.208556020166725,-27.80926470644772,-28.105047115124762,-28.919340607710183,-28.497232537250966,-28.710685141850263,-28.13850580342114,-27.641937580425292,-27.99433591356501,-28.83484988939017,-29.254872343037277,-28.969205719418824,-28.059927308000624,-28.710490180645138,-28.600536725949496,-28.4796374021098,-27.69344572443515,-28.665432789362967,-29.480773177929223,-30.125580605119467,-29.356833402067423,-28.859613813925534,-28.118800108786672,-28.77595958765596,-27.931999663822353,-28.666282311547548,-29.389239078387618,-29.833328157663345,-29.368906714953482,-29.02195760514587,-29.5154494442977,-28.960706248879433,-29.646971420850605,-30.49732220545411,-30.762252847198397,-30.05278786132112,-29.654478715732694,-30.52726544905454,-30.286053475458175,-29.3745723743923,-28.97093370044604,-29.361735865473747,-29.998482801020145,-29.137725928332657,-29.61060931487009,-29.982660088688135,-30.630216708406806,-31.328501088079065,-31.73117934446782,-31.475292230490595,-31.337401565164328,-31.25670440122485,-32.00639428431168,-31.552471352741122,-30.89508309448138,-31.12039391277358,-31.056720259599388,-32.02282200893387,-32.13254349445924,-32.43334982031956,-31.478351862169802,-32.19933806126937,-32.49965199967846,-33.43898643180728,-33.18052711524069,-33.53520613349974,-33.721149410586804,-33.0885936380364,-33.01419074181467,-32.69659729953855,-32.73218733351678,-33.46730274008587,-34.32626200374216,-35.005709608551115,-34.866168905980885,-34.02663058228791,-33.199797100387514,-32.53327111992985,-33.04431071225554,-33.38729063374922,-32.47852414427325,-32.29856523685157,-32.459132574964315,-31.497518136631697,-31.14294559881091,-30.63027272373438,-29.720505244098604,-30.22622057888657,-31.163394403178245,-31.543318410869688,-31.886946449056268,-31.125460861250758,-32.103297288995236,-31.751709543634206,-31.632042554672807,-32.152322333306074,-32.84617400774732,-32.245131216943264,-31.600398211274296,-31.55134273553267,-31.687241689302027,-32.446903040632606,-33.042666647583246,-32.67407045932487,-31.76054288679734,-31.56220786832273,-31.084351762663573,-32.04357737535611,-31.722006551455706,-31.47062776843086,-31.524710487108678,-31.917600487358868,-32.32376391394064,-33.284106868784875,-32.53124423744157,-33.25519982539117,-32.33538233535364,-32.044453541748226,-32.07081393757835,-31.782081215642393,-32.361314631067216,-32.67578522814438,-31.77285516867414,-32.2244724240154,-31.958231023978442,-31.226599333342165,-32.004982424434274,-32.72949865134433,-33.178843507077545,-33.36311192717403,-33.56580438045785,-33.50043662916869,-34.032451091334224,-34.44802379980683,-35.357885050587356,-35.645108909811825,-35.96100885653868,-36.58100207708776,-37.02588481269777,-37.375882814172655,-38.35423096874729,-38.96903465408832,-38.20098942797631,-38.04167155735195,-38.9082906274125,-37.96049119904637,-37.680117247626185,-38.326142753474414,-37.435011588037014,-36.799362528603524,-37.38863473711535,-37.367974147200584,-36.388702371157706,-36.145141758956015,-36.72910994896665,-37.33805680880323,-37.050368420314044,-37.70028076786548,-38.57757396856323,-39.19513578200713,-38.7154352562502,-39.3917199568823,-39.675900587812066,-39.40267280349508,-39.33085371879861,-38.613430014345795,-38.567603565752506,-38.670080999843776,-38.19004528131336,-38.674391163978726,-38.48624965036288,-38.51065413560718,-38.68470226461068,-39.19912079162896,-38.69303334178403,-37.7892106086947,-37.84822330297902,-37.89758983859792,-38.58918013982475,-38.994610846508294,-39.13953392626718,-39.92484859889373,-39.84853783715516,-39.73903790768236,-39.87452817801386,-39.611527083441615,-39.55745001323521,-38.7519131754525,-39.154566219076514,-39.59643227560446,-40.033892861101776,-40.278171678539366,-39.87842958373949,-39.18809105409309,-38.62068907730281,-37.683340477757156,-37.8913115337491,-37.762289395555854,-37.20615542167798,-37.84186793677509,-37.58289236808196,-36.820043502841145,-36.70351963490248,-37.61725120525807,-37.71445993985981,-38.467599138151854,-38.690174805000424,-37.936632039025426,-37.11551119340584,-38.057897347491235,-39.03907779790461,-39.36071534920484,-40.292240844573826,-39.90777259413153,-40.028749795630574,-39.80465581919998,-40.304757236968726,-39.73490348784253,-38.94025647547096,-38.38565011229366,-38.18356415210292,-39.07636350532994,-39.487959834747016,-38.64652156131342,-38.620112855453044,-38.07381434785202,-38.76800963142887,-39.011232854332775,-38.890487384051085,-39.07874617073685,-38.418284038081765,-38.74610160663724,-38.747837882488966,-39.21869445592165,-38.519339598249644,-38.273434582632035,-38.10965314414352,-37.3185585080646,-37.48377263126895,-38.36168912379071,-38.64940739236772,-38.11190126510337,-38.141081236768514,-37.24372845515609,-36.46606044145301,-36.71563395159319,-36.695310708135366,-36.622570902109146,-36.810335943475366,-36.37008796958253,-35.90066353417933,-35.3531925114803,-36.15597701957449,-36.77412184746936,-36.5896539199166,-36.32917820382863,-35.49252637801692,-35.97433135751635,-36.082388068083674,-36.83031437871978,-36.38780503021553,-36.743265417870134,-37.34760765219107,-36.62722958391532,-37.36017665453255,-36.48858835035935,-35.852488208096474,-35.55614129733294,-36.1631969246082,-35.18004798842594,-34.46808142727241,-33.650435506831855,-33.367820848245174,-32.47423437517136,-32.587853936478496,-32.700093197636306,-32.7821004842408,-33.258986751548946,-33.60021141823381,-33.048645679838955,-32.83148625865579,-32.829141227994114,-32.792450348846614,-32.278457147069275,-33.096567472908646,-32.18813888495788,-31.765677202492952,-31.261754668317735,-31.084982874337584,-31.948310816194862,-32.64998703915626,-32.48822066420689,-33.31035649962723,-32.92013886757195,-31.981232846155763,-31.664278781972826,-31.991183113772422,-31.41848932299763,-32.298853252548724,-31.86098363995552,-32.79532054532319,-33.64685124717653,-33.02127230586484,-33.2303591365926,-33.571222925093025,-32.69502488709986,-32.591058634687215,-33.217070574872196,-33.45899857673794,-33.19530264334753,-34.02338603558019,-33.30599466804415,-34.2138482099399,-33.299762135371566,-33.314426220953465,-32.32277331640944,-33.24974585790187,-32.93430662760511,-32.03702139155939,-32.133480625227094,-32.29115846240893,-31.433988546021283,-31.062306120060384,-31.80493489978835,-32.01425345148891,-32.437756404746324,-32.97284755576402,-32.639838772360235,-33.19183650333434,-33.23029983881861,-32.269958573859185,-31.714133789297193,-32.27318303892389,-33.22852046228945,-32.83831737516448,-32.69215006893501,-33.61053704004735,-33.061883370857686,-34.03070375090465,-34.23278502654284,-33.589030508417636,-34.33650370175019,-35.13285624468699,-34.3487351462245,-34.52141448948532,-34.90468580275774,-34.863315091468394,-34.96302859671414,-33.99857463221997,-33.203879500739276,-33.58228468708694,-32.68249498587102,-32.33645156305283,-31.72725701192394,-31.676320874132216,-30.969737369101495,-30.95702098403126,-31.5447729784064,-31.15592602174729,-32.11220294190571,-31.66768676182255,-32.58088275277987,-32.05476182838902,-32.528052972629666,-32.2364950273186,-31.965633106883615,-32.07203849358484,-32.14879967365414,-31.9986480162479,-31.966005021240562,-31.610869546420872,-30.834140653721988,-30.985223745927215,-31.29293717816472,-30.50524889724329,-31.296394487377256,-31.6532035744749,-31.051388155668974,-30.885769641492516,-31.29709202889353,-32.136117870453745,-32.77022277843207,-33.64948938647285,-33.68564327200875,-32.831032826099545,-32.32135050976649,-31.377306898590177,-31.247908876277506,-31.266888360958546,-32.1690760711208,-31.191265410743654,-31.04115906311199,-31.172810351476073,-31.57511168718338,-32.52696427470073,-32.87665990414098,-33.630607729777694,-34.16755253914744,-34.959886490833014,-35.239377319812775,-35.508272278122604,-35.95368560729548,-35.54333957051858,-36.521882619243115,-36.097013767808676,-36.074672646354884,-35.47744010342285,-35.893304359167814,-35.23870544973761,-34.929942110553384,-35.21292339684442,-34.76745493290946,-34.151320221833885,-34.74468244146556,-34.77931769192219,-34.28572038328275,-33.54181061452255,-34.15775950299576,-34.846073219552636,-35.42621869314462,-36.221725260373205,-35.600390194915235,-36.07166255032644,-35.19667800096795,-35.133512595202774,-34.89246195042506,-34.09299882827327,-35.05333213927224,-35.29163968935609,-34.57047140551731,-35.03855815483257,-35.918528605718166,-36.652722214814276,-36.99227522406727,-37.36004949826747,-37.51694127172232,-37.30496602226049,-37.0258978754282,-36.89665440795943,-36.48177753761411,-35.80268153408542,-36.22342549171299,-36.810229763854295,-36.47282686829567,-35.994440474547446,-35.242877571843565,-36.040843546856195,-35.70550043787807,-36.43179386481643,-35.81111210491508,-36.1411821548827,-36.583082754164934,-35.63201940106228,-35.12815973069519,-35.499803585000336,-34.53425784828141,-33.69741216022521,-32.88418191904202,-32.01129442034289,-31.85231625009328,-31.417151493486017,-30.515404318459332,-29.759507453534752,-29.339775977190584,-29.76614520745352,-30.0515330969356,-30.142909405287355,-30.601836444810033,-31.271485548466444,-30.908814553637058,-30.73231728700921,-30.555980518460274,-29.562009021639824,-30.197687371168286,-30.70071082469076,-30.08667443692684,-30.038371296133846,-30.273687058594078,-29.512632547412068,-29.420356242917478,-28.84587139217183,-28.10413421317935,-28.772804541513324,-28.967853759415448,-29.28668977227062,-28.852999090217054,-29.166884551290423,-28.527511122170836,-29.45095850341022,-29.352912842296064,-28.605754376854748,-28.42709362739697,-28.354822584427893,-27.623016085475683,-26.646609278395772,-27.34789412142709,-27.662812578026205,-28.291965674143285,-28.93329358799383,-28.17025249125436,-27.48103245301172,-26.582477904856205,-26.96272392710671,-26.67531318217516,-27.385951013304293,-26.67375009553507,-26.847912536002696,-27.65250144712627,-28.06042935838923,-28.91102810157463,-28.879831094760448,-29.772213199641556,-29.334781282115728,-30.233211932703853,-29.46214638883248,-29.613632522523403,-29.258985851425678,-28.563610890880227,-28.612990810070187,-29.473479424137622,-28.516849355772138,-28.759837867692113,-28.87145141279325,-29.792394755408168,-29.741160518024117,-29.612570957746357,-30.609001808334142,-31.057813095394522,-30.90922113787383,-30.15782060055062,-30.381825963035226,-29.51764813857153,-30.27720081852749,-29.622010139282793,-29.439506403170526,-29.471047217492014,-30.21035734610632,-29.873454056680202,-29.613059072289616,-28.712029789574444,-28.16601522313431,-27.762585668824613,-27.216730071697384,-27.487864503171295,-27.795135701540858,-27.44610121799633,-27.173737383447587,-27.58449922548607,-27.34319142997265,-27.443149377126247,-27.991659480147064,-28.20406802278012,-27.28215988492593,-27.233440082054585,-28.11282642511651,-28.279069065116346,-28.816573100630194,-28.77706500934437,-28.007842387538403,-27.019498866517097,-26.35536604281515,-25.678666698746383,-25.77788870036602,-26.094048818573356,-25.781490445602685,-24.820763271301985,-24.32409353973344,-24.053642429877073,-23.679854633752257,-23.539617868606,-23.39478313131258,-23.575616958085448,-23.959290641825646,-22.986728705931455,-22.08349659712985,-22.948292115237564,-23.222475558519363,-22.419455792289227,-21.89836354693398,-21.969280366320163,-21.55743560846895,-22.23628556681797,-21.95663447258994,-21.86323020653799,-22.08199117379263,-21.726602293550968,-22.332277378067374,-23.20315449871123,-22.613186033442616,-21.674568987451494,-21.75056516053155,-22.56091993348673,-22.178096398711205,-21.902097441721708,-22.178858977742493,-21.94961596466601,-21.97398178698495,-21.698999667540193,-22.665573961101472,-22.84403776563704,-23.454307137522846,-22.99332244740799,-23.397678395733237,-23.12187869567424,-22.910779187921435,-22.249955174978822,-22.647287134081125,-22.09873613808304,-21.26111425831914,-20.932310786563903,-19.990777506493032,-19.9806115985848,-19.299861401319504,-20.242154147010297,-19.36902551027015,-18.785932295955718,-19.42111521679908,-19.690445535816252,-19.217460932210088,-18.974753097165376,-18.233491215854883,-17.324817090295255,-18.01710999198258,-17.624325449112803,-17.657971879001707,-17.033947655931115,-17.447155616711825,-17.25161856180057,-17.914640094153583,-18.05001355241984,-18.04215468838811,-18.707927698269486,-18.330084087327123,-18.714255039114505,-18.419231082778424,-17.54074200289324,-18.432373398914933,-17.465929431375116,-17.689604530576617,-16.906217454001307,-16.618153403047472,-16.377049112692475,-16.692275687586516,-15.990077059715986,-15.818431922234595,-15.152086368296295,-14.80403389269486,-14.7472097245045,-14.365104007534683,-14.690739925950766,-14.962552404496819,-14.25596802122891,-14.338515675161034,-14.444174550939351,-15.15528647089377,-15.572618123143911,-16.073808607645333,-16.589927597437054,-17.174449913669378,-17.631476857699454,-17.55468833539635,-16.744858211372048,-16.872170045040548,-17.183025104925036,-16.645858077332377,-16.958748432341963,-16.46039218408987,-15.737497946247458,-16.28959425026551,-16.705744654405862,-17.302572207991034,-16.41907139029354,-16.92746363952756,-17.020732051692903,-17.894015877041966,-17.85138083109632,-17.307030465919524,-17.35358338896185,-17.28459261590615,-16.391013900749385,-16.555928444024175,-17.07978561660275,-16.492232852615416,-15.683915771078318,-15.904450096655637,-15.80710536846891,-15.960444391705096,-15.807037556078285,-15.333435713779181,-14.609684741590172,-13.891534929163754,-14.506713754031807,-13.816497738007456,-13.445394035894424,-12.899321651086211,-12.261018618475646,-11.785980242770165,-12.406248810235411,-13.078964931424707,-12.375812175683677,-11.56375381629914,-11.689462597016245,-10.863481370732188,-10.1015240913257,-10.79256697325036,-11.409337275661528,-10.598268543370068,-9.964471905026585,-10.733528995886445,-10.95180890057236,-10.340937358792871,-10.54913010681048,-10.72164611145854,-10.675877238623798,-11.217369997873902,-10.311287633609027,-10.754856755491346,-10.509503814391792,-11.245313986670226,-10.704009506385773,-10.788854645565152,-10.533798420801759,-9.815480411984026,-9.31314382981509,-8.35184840997681,-8.3404699168168,-9.090431044343859,-9.822159426286817,-9.1970019293949,-9.746503295376897,-10.263549074996263,-10.470830824691802,-10.5687511023134,-10.518019950482994,-9.80156944738701,-9.610134235117584,-9.677992238197476,-10.41289806831628,-9.869970322586596,-10.41951042227447,-11.133847205433995,-11.483211370650679,-10.957513561937958,-10.03208937868476,-9.086803807877004,-8.422481090761721,-7.484206035267562,-6.92855309182778,-6.784361676778644,-7.232572997454554,-8.083067449275404,-8.326042854227126,-7.84677858883515,-7.916132505517453,-8.397654032800347,-7.892135057132691,-7.9673978155478835,-8.254175954964012,-8.49055240303278,-8.828892866615206,-9.143312707543373,-8.957083810120821,-9.693658877164125,-9.06074999179691,-9.276529780589044,-8.938578742556274,-9.24291158374399,-9.911067044362426,-10.481822256930172,-9.701711534522474,-10.618467485532165,-10.062681125476956,-9.506164533086121,-10.361259982921183,-11.115563271567225,-10.37233071308583,-10.843595206271857,-9.953365464694798,-10.617025026585907,-11.066986573394388,-10.849421095103025,-11.025453709065914,-11.202087133191526,-11.415662569925189,-11.62362348800525,-11.836890432983637,-12.815209508873522,-13.62833569291979,-13.712729390710592,-13.578404448460788,-12.58775478368625,-13.050412261858582,-13.85863588610664,-14.85423433734104,-14.35905322432518,-13.610728941857815,-12.63978786719963,-13.011108737904578,-12.272463443689048,-13.05205657100305,-13.841114565264434,-14.394867562688887,-14.471077256370336,-15.198371243663132,-14.75833101477474,-15.395753056742251,-15.978084635455161,-15.971230636816472,-15.345789192710072,-15.811779610347003,-15.668366874568164,-16.631110629998147,-16.23945578932762,-16.30340466927737,-15.7926787850447,-16.189597682561725,-15.200269104912877,-14.516847773920745,-14.750664453022182,-15.107456605881453,-14.49697637790814,-15.394708058331162,-15.987713700626045,-16.787325938697904,-16.729701921343803,-16.376418456435204,-16.853437612764537,-16.451556803658605,-16.157551143784076,-15.284628483466804,-15.543864567298442,-14.616993576288223,-13.980528085492551,-14.734506632667035,-15.291060314048082,-14.85090152779594,-15.404720349237323,-14.904143535066396,-14.533886753488332,-14.584077925886959,-14.176699605770409,-14.682880709413439,-14.058217495214194,-13.248655129689723,-13.392979426775128,-13.166509805247188,-12.649461538065225,-11.92204507580027,-11.532049354631454,-11.74365575099364,-11.830669313669205,-11.749176776502281,-11.589929651934654,-10.71040346706286,-10.078022574540228,-9.864494220819324,-10.709421398118138,-11.18490395648405,-10.820992243476212,-11.230105792637914,-12.11490286514163,-12.38875727308914,-11.964638478122652,-12.020263174548745,-12.422406887635589,-11.954150957521051,-11.973136368207633,-11.05349442269653,-10.836172790266573,-11.090015432331711,-10.497715801000595,-10.424232609570026,-9.662048214580864,-10.266765547450632,-10.239872777834535,-10.902705273590982,-11.004961814265698,-10.88495851168409,-10.588283931836486,-10.243176733609289,-10.179704740643501,-9.34931629570201,-9.544264597352594,-10.476301478222013,-10.87309287674725,-11.122850613668561,-10.177766144275665,-9.305796139407903,-9.32415812369436,-9.168059390969574,-8.541847736109048,-8.424768130294979,-8.963197328150272,-8.72390204994008,-8.600391308777034,-8.646414218470454,-8.086800756398588,-7.241987568791956,-7.1093017579987645,-7.005838988348842,-6.207698428537697,-5.897191248834133,-6.448885786347091,-6.496259216684848,-6.122996354475617,-6.23262705327943,-6.4852433279156685,-5.515428103972226,-6.383994024712592,-7.1096173520199955,-6.983450304251164,-7.781310464255512,-8.53346741432324,-7.903279165737331,-7.300770660862327,-6.958680510520935,-6.13184459367767,-6.767047164961696,-7.667942677624524,-6.922501778695732,-7.702712408266962,-8.012062408030033,-7.463667631614953,-8.127554601058364,-7.422891880385578,-7.44604715006426,-6.963023769669235,-6.67167998990044,-5.836829755920917,-6.517883213702589,-5.826953119598329,-5.262354037258774,-4.794089164119214,-5.099879431538284,-5.304170242976397,-4.984409680124372,-4.66045578289777,-4.62430778099224,-5.252754909452051,-5.233071455266327,-4.76083574956283,-5.279771084431559,-6.180487879086286,-5.868880150839686,-6.138780125882477,-5.90777977462858,-5.409112778026611,-4.47122019669041,-4.88325970293954,-5.476638864725828,-6.090636354871094,-6.027093397919089,-5.348217977210879,-4.570636190008372,-4.844448955729604,-5.338170780800283,-5.903166674543172,-6.895648977253586,-7.0599542572163045,-6.788182351272553,-7.545711884275079,-8.116122764535248,-7.141850666608661,-7.721608206164092,-7.981275566853583,-7.171136547345668,-7.9086520136334,-7.475977038033307,-7.884113385807723,-7.602595035452396,-6.8580050664022565,-7.216294464189559,-8.171015742700547,-7.437159699387848,-7.072629746515304,-6.835609488654882,-7.548257344402373,-7.516821932978928,-8.125810233410448,-8.174440919887275,-8.34736468968913,-8.618591058067977,-8.417177054099739,-9.316430361475796,-8.598504289519042,-9.404149127192795,-9.539560452569276,-9.020801774226129,-8.10476806992665,-7.535754316486418,-8.154223733581603,-8.273609491530806,-7.674780537374318,-8.019797308370471,-7.934926109854132,-7.065652002114803,-7.598074046894908,-7.647249597590417,-7.685589900240302,-7.499962738715112,-6.997707424685359,-6.495256421156228,-5.788327774964273,-6.504771743435413,-5.533997986000031,-5.701235676649958,-6.405264033935964,-7.148744459729642,-6.389689622446895,-5.8956969999708235,-6.455700227525085,-7.042539693880826,-8.015693492256105,-9.013931051362306,-9.674315403681248,-8.80031414842233,-8.906373591627926,-8.458480257540941,-8.232004422694445,-8.780316933523864,-8.476386476308107,-7.719140628818423,-8.70000191219151,-7.964689574670047,-8.39244462735951,-7.543627015314996,-6.89442573254928,-7.009324853308499,-7.484817136079073,-7.836361386347562,-8.333902108017355,-8.186472196131945,-7.643683366011828,-7.585038751363754,-8.211823192425072,-8.338198046199977,-8.848160008899868,-9.37145084515214,-8.949288414325565,-9.383791564498097,-9.383770422078669,-9.826051399577409,-9.04498607525602,-9.43573427060619,-10.242104645818472,-10.60163276316598,-10.182930008508265,-11.067607248201966,-10.102557050064206,-10.511084962636232,-10.630714226979762,-10.688138665165752,-10.325080619659275,-10.888736949767917,-11.415772751439363,-10.848884241189808,-10.13085546856746,-10.926349439658225,-11.413045566529036,-11.349461168516427,-10.668287490028888,-10.796174981165677,-11.770067314151675,-12.057176511734724,-11.573445880785584,-11.045594353228807,-10.747818167321384,-11.215204586274922,-12.188267985824496,-12.579908668994904,-13.529070432297885,-13.046087970025837,-13.366122460458428,-12.423812719527632,-12.206015268340707,-11.750683745834976,-12.598370110616088,-12.651815065182745,-11.880252518225461,-11.01171704987064,-10.124592648819089,-11.117105689365417,-12.113158664200455,-12.872903211973608,-12.0019501876086,-12.856229558587074,-13.660129213239998,-13.095477709081024,-12.123845577705652,-11.3567737005651,-10.411739016883075,-10.31834186706692,-9.887546133249998,-8.92791216634214,-8.506774864625186,-7.994654680136591,-7.941537002101541,-7.090479867998511,-6.237088164314628,-6.510961785912514,-7.1231122692115605,-7.733887956477702,-8.090178977698088,-8.229934122879058,-8.783631925936788,-9.65523478994146,-10.383766820654273,-9.50563699984923,-10.127921474631876,-10.732592436019331,-9.956605096813291,-9.31027280818671,-8.694283095188439,-8.526548149064183,-8.19234101800248,-8.559480148367584,-8.856742591131479,-8.670208979863673,-9.149961374234408,-8.838030439801514,-8.719417116604745,-9.33528291201219,-8.646447833627462,-9.418937599752098,-9.206398223526776,-8.41142857214436,-7.864753205794841,-7.937355200294405,-8.314433289691806,-8.874504771083593,-9.58815682400018,-9.089806619100273,-9.921971202362329,-10.536991555709392,-10.813704516738653,-10.163470332045108,-11.109454539138824,-11.412894434761256,-11.629580911248922,-12.371266697533429,-12.807148319203407,-13.757719790562987,-14.250249553471804,-15.128809245303273,-15.728366694413126,-16.47970212297514,-15.832248569931835,-15.922610416542739,-15.64299109717831,-15.33341723959893,-14.99656955478713,-14.079337052069604,-14.410286275204271,-13.581946905702353,-12.621397182811052,-12.187616351991892,-11.487573973368853,-11.355844755657017,-11.861788051202893,-11.515821613837034,-11.388586067594588,-10.776120696216822,-10.00164189375937,-10.3283667746,-10.782201833557338,-11.271856142673641,-10.280859446153045,-10.385716846678406,-10.988566793501377,-11.930608998518437,-11.100256831385195,-11.125983847305179,-11.266710527706891,-11.635087688453496,-12.022261057980359,-12.019508845172822,-11.579761035740376,-10.81387949641794,-10.747151638381183,-10.795486726332456,-10.250251422636211,-10.459960100241005,-9.867615680210292,-9.88619488850236,-9.625670629087836,-10.377132810186595,-11.041132089216262,-10.927838338073343,-11.247984545305371,-11.701094370801002,-11.913418877869844,-12.31799092143774,-12.246244928333908,-13.15050100022927,-13.584431562572718,-14.313432686496526,-13.977124041877687,-13.761016347911209,-13.460493221413344,-14.053011344745755,-13.511565775144845,-13.857615736313164,-13.2858393676579,-13.892973844893277,-13.834247143939137,-13.062685726210475,-13.748566186521202,-13.072630174458027,-13.471995662432164,-13.097551951184869,-14.087931244634092,-14.930422834586352,-14.570157586596906,-14.507543375249952,-14.454466009046882,-14.094686455093324,-14.000964161939919,-14.562476781662554,-13.800246295984834,-13.275150335393846,-12.69282950880006,-12.803684308193624,-12.292888201773167,-11.672404290176928,-11.993242802098393,-11.52495441166684,-12.188191132154316,-12.227872163522989,-11.845515818800777,-11.721280901227146,-11.02241057343781,-11.216932556591928,-11.226176472380757,-11.980497105512768,-12.54460470424965,-12.440951439552009,-12.678118011914194,-13.317015906330198,-12.525671445764601,-13.519434671849012,-14.110743327066302,-14.269020460546017,-14.715512784663588,-13.72198502952233,-14.011088253930211,-14.168491004034877,-14.349454673472792,-14.332591638434678,-13.58391384407878,-13.595170006621629,-13.99294837238267,-13.034080743789673,-13.1034911503084,-13.992814091034234,-14.369168600998819,-13.557541297748685,-14.335312916431576,-14.224135419819504,-13.554956898558885,-12.952357572037727,-13.342984431888908,-13.405101374723017,-14.037894563749433,-14.783963676076382,-15.037090153899044,-14.81525613507256,-14.59554017521441,-14.603731828276068,-13.997082838322967,-14.454224962275475,-14.243471133057028,-14.151686003431678,-13.232084355782717,-12.64046461135149,-13.378379763569683,-14.04624780640006,-13.265415633562952,-14.215417603962123,-13.55313964933157,-13.365302321035415,-12.568535808473825,-12.35749538661912,-12.40097012463957,-12.900371664669365,-12.624370068311691,-12.650906653609127,-12.494789825752378,-13.427949079778045,-14.232434702571481,-13.537789232097566,-13.035171210765839,-12.602875878568739,-12.049738770350814,-12.998075505252928,-12.842122272122651,-13.01262844633311,-13.64686175249517,-13.514084514696151,-14.17619199724868,-13.2952615856193,-12.409221423789859,-12.408410638105124,-13.291201790329069,-13.872681122738868,-13.863591903820634,-14.66595814935863,-14.176962739787996,-13.663743739482015,-13.169888203032315,-13.55246752826497,-14.451460117008537,-14.375180300790817,-13.543235703371465,-13.356558529660106,-14.095359264872968,-13.38079329347238,-12.698348015546799,-12.745502831414342,-12.498026340268552,-13.012804564088583,-12.256710066925734,-12.058405297342688,-11.882873536087573,-11.006795859895647,-10.676723786164075,-9.995666929055005,-10.533656103536487,-10.4519825540483,-9.911141423974186,-9.998667093925178,-9.851623483467847,-10.27345712389797,-9.473385475575924,-9.388278021942824,-10.243476948235184,-10.893359509296715,-9.896003551781178,-10.30319691170007,-11.083979165647179,-12.051974404603243,-11.609194843098521,-11.425988531205803,-11.996668189298362,-12.231520550791174,-12.850374745670706,-12.040213621687144,-11.760495063383132,-11.11711693322286,-10.956177535932511,-10.703212865628302,-10.15157658001408,-10.233463937882334,-10.822438953444362,-10.728848953265697,-10.758505210280418,-11.188266385346651,-11.450815558433533,-10.596009667031467,-10.697713136672974,-11.246689066756517,-11.289620448835194,-10.866014685947448,-10.667876702267677,-9.77553411014378,-8.856799818109721,-8.233434570021927,-7.358684548176825,-6.460639080964029,-5.489664125721902,-5.320812056772411,-6.15005914401263,-7.072969360277057,-7.951962231192738,-7.9246877445839345,-8.596871660090983,-8.802593882195652,-8.757541653700173,-8.777070908341557,-8.487728227861226,-7.824373071547598,-7.796742396429181,-6.814747976139188,-7.6978395618498325,-7.781404218636453,-7.998723845928907,-7.018101017456502,-7.66913525108248,-8.454405868891627,-8.968441467732191,-9.057854612357914,-8.573995207436383,-9.077194860670716,-9.539507738314569,-9.254621011205018,-9.11086151143536,-8.361444212961942,-8.398610247764736,-8.274975734762847,-9.09338036319241,-8.899768945295364,-8.32755526760593,-7.970783463679254,-8.243788606952876,-7.524800394661725,-6.535570194479078,-6.485557006206363,-6.111713983118534,-6.238773895427585,-5.77016589557752,-5.9433603878133,-6.504707214888185,-5.819165083114058,-6.119832066819072,-6.91819630516693,-7.8990750587545335,-8.827566536143422,-7.951773415785283,-7.266413737088442,-7.131883868947625,-6.5695817014202476,-5.665928754489869,-5.080537233501673,-5.629722570069134,-4.748140949755907,-5.3666396965272725,-4.822453861124814,-4.716669800225645,-5.524877438787371,-6.442820666357875,-6.507776387967169,-7.00783531088382,-7.002172643784434,-7.931336090434343,-7.5756697678007185,-8.341073163319379,-7.867858363315463,-8.482618000358343,-7.62692346284166,-8.193018698133528,-7.714845970273018,-8.219447327777743,-7.484503633342683,-6.849872574675828,-5.889070548117161,-5.430325650144368,-4.629371893592179,-5.0091904872097075,-5.86348198633641,-5.017883788794279,-4.115400507580489,-3.8309542136266828,-3.3336187568493187,-2.510949808638543,-2.4061114843934774,-3.2710607857443392,-3.2569957189261913,-3.0545789538882673,-3.194250125903636,-3.6864737099967897,-3.9640544247813523,-3.791473596356809,-3.2792222667485476,-3.2752882381901145,-3.0568977468647063,-3.1823057518340647,-4.042976713273674,-4.728554288856685,-4.747776759788394,-4.912948818411678,-5.4507229141891,-6.193913841620088,-5.5819896794855595,-5.389220264274627,-5.627109951339662,-4.928523261565715,-4.7958577098324895,-4.081502597779036,-4.807160280179232,-4.179875000845641,-3.4760809652507305,-3.5244771288707852,-3.1426939708180726,-3.490611612331122,-3.874581136740744,-4.37804143037647,-3.625368048902601,-3.788215041626245,-2.9193756468594074,-2.7745625795796514,-2.4084164961241186,-2.517137935385108,-2.5781211177818477,-3.2582222246564925,-4.2424871465191245,-3.276674486231059,-4.106886021792889,-4.840147166047245,-4.784672117326409,-5.438346222043037,-5.782373712398112,-6.293514070566744,-6.29195199906826,-6.721817052923143,-7.649581189732999,-7.9871933395043015,-8.252051484305412,-8.545820483006537,-8.630032787565142,-9.264720724429935,-9.532214405480772,-10.485585634596646,-11.113228484988213,-11.703022835310549,-11.675319212954491,-12.260009592399001,-12.007489681709558,-12.872792355250567,-12.012372441589832,-11.933403985574841,-12.200361520051956,-12.683177354745567,-13.261073468253016,-12.96106637082994,-13.698653819970787,-14.235522656701505,-13.935205060523003,-14.050179176498204,-14.743811037857085,-13.797408270649612,-13.294343225192279,-13.569685185793787,-12.793548203539103,-12.84925456577912,-13.00306812254712,-13.922728928271681,-13.549439560156316,-13.294036757666618,-12.530700876843184,-12.00739908311516,-11.98474934278056,-12.922759670764208,-11.980836561415344,-11.55549066932872,-11.999181400518864,-11.197896009776741,-11.526290148496628,-11.034030311275274,-11.443735607434064,-11.22478334326297,-10.367438919376582,-10.846553341019899,-10.00224109692499,-10.463449134491384,-11.044280330650508,-11.791853819042444,-12.677864284720272,-12.174476513639092,-12.027849360369146,-11.624605900608003,-11.163542174734175,-11.040479484014213,-11.821439907886088,-10.828286715783179,-11.405093118548393,-11.03552164696157,-11.564847633242607,-12.068644068669528,-11.307360320352018,-11.38274821639061,-11.772718590684235,-10.832466081250459,-10.614701630081981,-10.581557077821344,-10.624414478428662,-11.46331709669903,-10.84119313256815,-11.658281573094428,-11.16508160205558,-11.340207748115063,-12.099974928423762,-13.032784691546112,-13.669830120168626,-12.741058997809887,-13.110165544319898,-12.459239629097283,-11.972167442087084,-12.756926119327545,-12.22457151254639,-12.876979726366699,-12.457096533849835,-13.41777669545263,-12.607793562114239,-13.256457275245339,-12.439276923425496,-12.33587074978277,-13.211934349965304,-12.418741398956627,-12.36920605506748,-12.272452177479863,-12.29392745345831,-13.275669375434518,-13.058746149763465,-12.697593200020492,-13.317908278666437,-12.516561492811888,-13.149758477695286,-12.999281489290297,-12.446977078914642,-11.70645671384409,-11.209967174567282,-10.77723369281739,-9.893354235216975,-9.104509661439806,-9.006229126825929,-9.613924500066787,-9.268526101484895,-9.903480396606028,-10.87387242121622,-10.483523961622268,-9.581220593769103,-9.801576764788479,-10.294359066523612,-9.712169204838574,-9.899574360344559,-9.014445571228862,-8.557725459802896,-9.487427315209061,-10.29811808327213,-10.358632267452776,-9.664673605933785,-9.93952882150188,-10.25100406492129,-10.23725356766954,-10.140223946888,-10.85550429718569,-10.258152292110026,-9.594966066535562,-9.6315345056355,-8.631876313127577,-7.847299526445568,-7.056406088639051,-7.748786570969969,-6.790569340344518,-6.717246234882623,-7.099919144529849,-8.028148393146694,-7.865141985937953,-7.409262875560671,-7.642004499677569,-8.355361802969128,-8.969240395352244,-8.612573957070708,-9.264571848791093,-9.598800909239799,-9.721864558756351,-9.451943768188357,-8.94942242698744,-9.531104118563235,-9.287730743177235,-9.086801729630679,-10.0266109444201,-9.093022414017469,-8.95950964326039,-8.77296483470127,-8.8557408740744,-7.992281466722488,-7.142368035390973,-8.0162990167737,-7.506413785740733,-7.984932403080165,-8.617391518317163,-9.401106127072126,-9.216181366704404,-9.751640872564167,-9.315890457015485,-9.763900975696743,-9.798983926419169,-9.381652305368334,-9.46884881844744,-8.812736125662923,-8.239438303280622,-8.23048133822158,-7.980067610275,-8.273662413936108,-8.774748673196882,-9.235928979236633,-10.02628619223833,-9.60672107199207,-9.110319219063967,-9.398290380835533,-9.20829016668722,-8.761281886603683,-8.918962547089905,-7.966682362370193,-7.008716236334294,-7.907447022385895,-7.691642684396356,-6.736916508991271,-6.439063012599945,-5.624582507181913,-6.371299338527024,-6.001723817083985,-5.655258053448051,-6.294638303574175,-5.765997310169041,-6.184274804312736,-5.864168292842805,-5.543515624478459,-5.2973556644283235,-5.316092148888856,-6.125906226225197,-6.107046698220074,-5.255434217862785,-5.20595191558823,-5.619692055042833,-5.172471626661718,-4.6783619611524045,-3.772901663556695,-2.79221673309803,-2.8435785779729486,-3.801850351970643,-2.9975337726064026,-2.845725047402084,-2.3069844590499997,-3.09070225385949,-3.679921602830291,-3.7474824879318476,-3.59462118614465,-4.2143956469371915,-3.2767125563696027,-2.989145651459694,-3.372401234228164,-2.5763128199614584,-2.2467890861444175,-2.4243754209019244,-2.3995379665866494,-2.2519373926334083,-2.6702086902223527,-1.883140668272972,-1.0095548941753805,-0.7317882473580539,-0.8755518621765077,-0.18858240032568574,0.5186427403241396,1.185271579772234,1.0554707837291062,1.7932766787707806,0.9306581420823932,-0.04209493054077029,-0.2707076044753194,-0.6323416735976934,0.27192455576732755,-0.4281337521970272,-0.21598773216828704,0.7495593898929656,0.8671758999116719,0.08336477726697922,-0.46826086938381195,0.12593587953597307,0.3002737117931247,-0.5181297208182514,-0.6708842334337533,-0.005025768186897039,-0.8560913144610822,-0.5985469268634915,-1.2221268005669117,-0.4021322503685951,0.3618247131817043,0.8044513603672385,0.7060210364870727,0.21036348305642605,-0.469432283192873,0.33463804377242923,0.3507200311869383,-0.33164192689582705,0.4054133449681103,0.21285229921340942,0.8967019580304623,0.6530449455603957,0.044823757372796535,1.0156415062956512,0.20798979187384248,0.9203398018144071,1.484570613130927,2.3806121749803424,2.5641030105762184,2.251435775309801,1.849460550583899,2.606731690466404,3.4684270275756717,2.8286394020542502,3.005200324114412,3.195238751824945,3.7641470287926495,4.10882891761139,3.689464024733752,3.938251075334847,3.2061629267409444,2.6848521870560944,3.072475061751902,3.240223741158843,3.1171061042696238,2.141890484839678,1.8396195541135967,2.591570052318275,3.1899564377963543,3.992796615231782,3.2221704688854516,3.2641675514169037,2.6052292231470346,2.9314814968965948,3.157958792988211,2.3864586227573454,2.8802136932499707,2.991632368415594,2.6410797177813947,2.1879166862927377,1.5727673564106226,2.144163601566106,2.413390666246414,1.5988919949159026,0.7150900643318892,-0.10098668886348605,-0.9081076523289084,-0.5822429712861776,-1.5708802491426468,-0.9942106190137565,-1.8655299781821668,-1.769776999950409,-2.1495093973353505,-1.9648223877884448,-2.5380737632513046,-3.4385856334120035,-4.276717241853476,-3.4575646282173693,-4.165753891225904,-3.582831329666078,-4.4138856823556125,-4.590753694996238,-3.937672280240804,-3.483669452369213,-4.27358930464834,-4.670733884442598,-5.26037630578503,-6.1929206983186305,-5.863667142577469,-5.289270447567105,-5.9270747089758515,-5.904072793666273,-6.814721924718469,-7.680737574584782,-7.569286660756916,-7.977802520152181,-8.21390328835696,-8.233193644788116,-8.444501405581832,-9.333554254379123,-8.569880013354123,-8.152648243587464,-7.367861059028655,-6.408028149977326,-6.615753377787769,-7.217552018351853,-7.549118347931653,-8.00928547885269,-7.218117389362305,-6.540122729726136,-6.907320675440133,-6.3894049525260925,-6.323070494923741,-6.662046617362648,-7.045832250267267,-6.18434297805652,-6.653873086441308,-6.556186826433986,-6.5239035012200475,-6.2746332869865,-6.163156948052347,-5.732849291525781,-5.359258645679802,-5.915634704288095,-5.833880801219493,-5.545327738858759,-5.470720211043954,-4.490372528322041,-4.330964668188244,-4.427594931796193,-4.0160464541986585,-4.471902634482831,-4.2722995178774,-4.286411901470274,-3.370028897654265,-2.388465746771544,-3.2817680132575333,-2.4182975837029517,-1.568666004575789,-2.5519039016216993,-1.9303748034872115,-2.605875982902944,-3.15683546802029,-2.4813583656214178,-2.451849399600178,-3.294643069151789,-2.8745856154710054,-3.5415374282747507,-4.426637747790664,-3.6900798152200878,-4.655954996589571,-4.5103556658141315,-4.972625609487295,-4.222679870203137,-5.144555072300136,-5.456190147437155,-4.69109531166032,-4.948340222705156,-5.493161847349256,-5.390006965491921,-4.627991582266986,-4.014866906683892,-3.84415031876415,-4.294710835441947,-4.336036000400782,-3.6852558222599328,-4.577689230442047,-4.712625155691057,-5.615243723150343,-6.17290671588853,-7.164194927085191,-6.798941429704428,-6.274073010776192,-6.131079880986363,-5.240178139414638,-6.1433832217007875,-6.686693119350821,-5.9502330855466425,-5.704954932443798,-5.593824661336839,-6.134605116210878,-6.591494612395763,-6.024040657095611,-5.8778983992524445,-6.058060565032065,-6.719647926278412,-7.092100955080241,-6.614041778724641,-6.407118069939315,-5.552937093190849,-5.694191192276776,-5.810872968751937,-5.911245293915272,-5.064292870461941,-4.706291471607983,-5.44075332256034,-5.882939520757645,-5.781338505912572,-6.277655031532049,-5.665081467013806,-5.515455807559192,-6.120974901132286,-6.437750508543104,-6.00234841927886,-6.269411174580455,-6.661830309312791,-5.751751456875354,-5.90886335959658,-6.680087524000555,-6.667402654886246,-7.592112202662975,-6.769313664641231,-6.468120539560914,-6.43422816041857,-5.629549879115075,-4.798757235519588,-4.348337737843394,-3.993879772722721,-3.8917974256910384,-3.7436288921162486,-4.107975502964109,-4.269150723703206,-4.7129220752976835,-3.7416247171349823,-4.2519258027896285,-5.05717563861981,-4.200005135498941,-4.1783537408337,-4.344752403907478,-5.0500012268312275,-5.022778673097491,-4.041738223284483,-4.227182945236564,-3.6758119496516883,-3.779072391334921,-3.476038918364793,-4.327863662037998,-4.105733736418188,-3.324799593538046,-2.3474006662145257,-2.47346381098032,-3.174009658396244,-2.241417599376291,-1.549692066386342,-1.9408770445734262,-2.9213444744236767,-2.4879601281136274,-2.643240372184664,-1.939013118389994,-1.7752317395061255,-0.7857351345010102,0.04401823319494724,0.12874188600108027,-0.04987108241766691,0.524528524838388,-0.28158010821789503,-0.4159477511420846,0.4500186829827726,1.2507483577355742,1.6382380570285022,1.3306449786759913,0.5227807858027518,1.3965123062953353,1.991679523140192,2.7368059647269547,2.5366076305508614,2.6215680413879454,2.443307461682707,2.362310496158898,1.4529628050513566,2.3263536016456783,1.449580553919077,1.8933160011656582,2.217473631259054,2.74015918886289,3.005484397523105,3.5163564505055547,3.015831465832889,3.260588474571705,3.7243018303997815,3.079922911711037,3.9565174002200365,3.052483451087028,3.5279789958149195,3.703749089036137,4.679160054307431,3.8487261394038796,3.4419448459520936,2.730602156370878,1.8220615703612566,1.912157179787755,2.0003348630852997,1.6845925068482757,1.6587912854738533,1.7135341963730752,2.1469059698283672,2.204318957403302,3.1504083648324013,2.3589924974367023,1.8488563932478428,2.37164677772671,3.2707592686638236,2.4996334458701313,3.232666445430368,2.9277532850392163,3.141661852132529,3.9468204877339303,4.67255760775879,4.198858638759702,4.979320832993835,4.930532842874527,4.034057139419019,3.442840655334294,3.268868685234338,3.715294755063951,2.9038060642778873,3.0485420669429004,3.8493196219205856,3.1365783610381186,2.9149329476058483,2.1300529572181404,1.9898189124651253,2.816144992597401,3.2414937815628946,2.7470639795064926,1.961021271534264,2.831373164895922,2.941422159783542,3.8814348820596933,4.17046101950109,3.452046915423125,2.6873704409226775,2.132049239706248,1.3662922219373286,2.2946236729621887,2.6381516996771097,2.377398196607828,3.3480808716267347,3.1475841156207025,3.5100902440026402,3.997868645004928,4.543361608404666,4.568471449427307,5.118019960355014,4.926402159035206,4.521348495967686,3.8428127230145037,3.5673531955108047,3.3748334627598524,4.372395378071815,5.239699321333319,5.468837054912001,4.517873856239021,4.460103421937674,5.00823867181316,4.436260429676622,5.3457040544599295,5.2035625777207315,5.373275325167924,5.657917087897658,6.230888054706156,5.303958248812705,4.307146317325532,4.655709371436387,4.739238572306931,5.434267624281347,4.860956388525665,5.487083551473916,4.992950874380767,5.658468427602202,6.088212057482451,5.50207456946373,5.013363028410822,5.820810993202031,5.926549642346799,6.259512939024717,6.964572600554675,6.768790205009282,7.133727737702429,6.331629301421344,7.0168730011209846,6.084019597619772,6.914094923529774,7.079671644140035,6.6595614603720605,6.082746161613613,6.908443045336753,6.82026202371344,7.309899656102061,7.0402099234052,7.328346782363951,7.8896556263789535,7.8351814965717494,8.281289807520807,8.411252172198147,8.720331615768373,8.57961966469884,8.683233357965946,9.033735152333975,9.326435790397227,9.13775098323822,8.481905853841454,7.558139086700976,8.204660970252007,7.975218461360782,8.184783588629216,7.840181696228683,7.70862357923761,8.600992805324495,7.715053558349609,7.977888866793364,8.566518744919449,9.193121993448585,10.13141411403194,9.7824571672827,9.467324402648956,10.015546139795333,9.52980648400262,9.904697773046792,10.596702157519758,9.837856183759868,10.563698859885335,11.408416404388845,10.970181937329471,10.488622342702001,10.095482847187668,10.81767681799829,11.003214666154236,11.243995014578104,11.624083301983774,10.805778860580176,11.416170252021402,11.812042352743447,11.221191005315632,12.11924089025706,12.75374992750585,12.369971964042634,11.777651045937091,12.015323728322983,11.69022631784901,12.113869121763855,11.622214859351516,11.50534363090992,11.131940023973584,10.898174791131169,10.801553316880018,10.88831074303016,10.984544469043612,11.978870004881173,12.3426592964679,13.13726503122598,12.472591932862997,12.268432456068695,12.546266663819551,13.043007468804717,13.147345883306116,13.979688986670226,13.582088456023484,13.19874537549913,13.236563467886299,13.68471301952377,14.429154498968273,14.548248024657369,14.764721971005201,14.323450289200991,14.812360093463212,13.92916599707678,13.395858771167696,13.397267530206591,13.472503994591534,13.20412758924067,13.948482863139361,14.662213359493762,15.375053443945944,15.833386512938887,15.401041253935546,14.977598913479596,14.816493321210146,14.654953601770103,15.157618021592498,16.038666030857712,15.463107843417674,16.06678245170042,15.872868452221155,16.75092286709696,16.192571877036244,15.786129373591393,15.787112914491445,15.819432232528925,15.166145808529109,15.200637149158865,14.810698881745338,13.906687365379184,13.965449267998338,14.772141600959003,15.750791233032942,15.413648737594485,15.525864901952446,14.764305192511529,14.426132057327777,15.000791072845459,14.646300088148564,15.620831539388746,15.820541968103498,16.60854152776301,17.216442801058292,17.66099695675075,18.566129254642874,18.69668693933636,18.03616204764694,17.695962509140372,17.976189557928592,18.927129157353193,19.08708066912368,18.464960968587548,18.700208878144622,19.283957957290113,19.582849881611764,19.769034878816456,19.435832038987428,20.20968027692288,19.259770807810128,19.755277637392282,19.901267575565726,19.60958454804495,19.00170792452991,18.47386029129848,17.482198070269078,18.264021975453943,18.901727382093668,19.741324682254344,20.353835864923894,20.023364497814327,20.23102878779173,19.65150622325018,20.610548184253275,19.85890420107171,19.758436747826636,18.771713043563068,17.773510015103966,18.008443024475127,17.800323964562267,18.003948278725147,17.180056276731193,17.044104227330536,16.51632552826777,17.00595393590629,17.387197837233543,18.124465053435415,17.625490916427225,17.338959545828402,18.224273981526494,17.367175952065736,16.616642724256963,17.168686498422176,16.837031022179872,17.292195838410407,16.84582865284756,16.4264209815301,16.366313378792256,16.62783196568489,16.03181104315445,15.93507979111746,15.690747429151088,16.189713748637587,15.87764451187104,16.810882846359164,16.843922031577677,16.93257869873196,16.64979813527316,17.60497020697221,17.090805316343904,17.148075690492988,17.392579743638635,17.169799930416048,16.75784080568701,17.054596789646894,16.84833989245817,16.583133968990296,15.592570079490542,15.452964859548956,15.600093072745949,15.250199961010367,15.40048713143915,16.327286115847528,17.05937395012006,17.73400722630322,18.373180668335408,17.89162490144372,17.682556006126106,17.281399108935148,16.286107695661485,16.710076599381864,17.45092086168006,17.864138464443386,17.62004130333662,17.36812280723825,16.733259533531964,17.614702144637704,17.832642823457718,18.2586161470972,18.63653748622164,18.63730615656823,17.857017759233713,18.29413852887228,17.840590343810618,18.817782626952976,19.126741257496178,18.56493033701554,18.863347227219492,18.953694869298488,18.089612238574773,18.540518731810153,19.2850577137433,19.95238042017445,20.197276909835637,19.352573747280985,19.745351870544255,19.026395242661238,18.789939185138792,19.73070271546021,19.580894021783024,20.041662394069135,20.101366815157235,20.46727278130129,20.905698038171977,21.579133848194033,21.00827051512897,20.826485592871904,20.261906295549124,20.8153949608095,20.683490127325058,20.554379526991397,21.45556943723932,20.527437170036137,21.33006611606106,21.528748276177794,20.602116137742996,21.11676197592169,20.2994709382765,19.902198606636375,19.44059505360201,20.15360224759206,20.85756923025474,21.411313738208264,21.919559041503817,21.031086722388864,21.28679324220866,21.445441160351038,20.658948690630496,21.610550390090793,21.62728302134201,21.99133623484522,22.769466164521873,22.29367968440056,21.31589373666793,21.97891358891502,22.268253652378917,22.775304779410362,23.090517924167216,22.455265515483916,22.961941486690193,22.754677911289036,23.300236783456057,23.57500393455848,24.49106981838122,25.16861587902531,25.984074897132814,26.521592763718218,27.054579466115683,26.696534963790327,26.689433188177645,26.59944110736251,26.059858706779778,25.215638757217675,25.892473774496466,25.32330047385767,24.405301024205983,23.493944490794092,24.14436892280355,23.665671404916793,24.231203034054488,24.364998421631753,24.05122898519039,23.655735516920686,23.313258602283895,23.30369107425213,22.343908510170877,22.222295419313014,21.953409105539322,22.186904607806355,21.79360125726089,21.614534627646208,21.499572720378637,21.77291168598458,21.25215751491487,20.428412538487464,21.14919893303886,20.36694130068645,19.872331010643393,20.22436359617859,20.610209879931062,20.956857222598046,20.39195753633976,20.563186443410814,20.633316707331687,20.052457831334323,19.494857657700777,19.56595666706562,19.407020571641624,18.479426834266633,18.76443940261379,19.098686020821333,19.61119128204882,20.205207233782858,20.398716340307146,21.388781435322016,21.954556070268154,22.203562872018665,22.14376532798633,21.98483042931184,21.445307708345354,21.45006775157526,21.391538105905056,21.658581809606403,22.51591709582135,23.112801626790315,23.45197997801006,23.266166006214917,23.685827598907053,24.56611436372623,24.48340348340571,24.971324276179075,24.252959156874567,24.312181575223804,24.754564970731735,24.78709115786478,25.004644840955734,25.31117905396968,24.358070954680443,23.716162452008575,23.513412484899163,22.946476376615465,23.480635643936694,22.904323467984796,23.110760927200317,23.5894133313559,22.64672724204138,22.939495963044465,23.779226352926344,24.60662185959518,24.048004751559347,24.625594531651586,24.84610459394753,25.012539294548333,25.277342360001057,25.073369152843952,25.62720379885286,26.468417841009796,25.96351474383846,25.99238694505766,25.871223003603518,25.360590896569192,25.692050942219794,25.297163008712232,26.204883938189596,25.298392042983323,24.846301415003836,24.351946021430194,24.27828274993226,23.507149825338274,22.88980009360239,22.852996942121536,23.527296367567033,24.07512777717784,24.626714455895126,24.958686523139477,24.129819934256375,23.817038754932582,24.464387859217823,23.657801781315356,22.819379860535264,23.341418063268065,22.81038333242759,23.46415935503319,23.833310509566218,24.171715212985873,24.719086535740644,25.551419848576188,26.489692778792232,26.142851766664535,27.018722082022578,26.293083992321044,27.222743593156338,28.144593545235693,29.087045658845454,28.413516093976796,27.484959229826927,26.73379786266014,27.6684613651596,27.521515524480492,28.330181151162833,28.239924353547394,27.54803428146988,28.441849967930466,27.6182915950194,27.820291719399393,27.13446828490123,26.503887817263603,25.588475164957345,25.609940920956433,25.55726652778685,24.751666989177465,25.215923614334315,24.904029135592282,25.05902437120676,25.479479109868407,25.458391130436212,25.625201598275453,25.70368987414986,26.49976306129247,27.02790391072631,27.545296500902623,27.29668951733038,27.325202114414424,28.279984117485583,29.002693084068596,29.62677544541657,29.723162316717207,30.48965211585164,31.29261796362698,31.19064421346411,31.204397523775697,30.350185761693865,30.394207031000406,29.551892922259867,28.87167526036501,29.320532181300223,30.05870923353359,30.776736102998257,30.086882898584008,30.22182604391128,30.026215588208288,29.562153922393918,29.533649928867817,29.39289040118456,29.699177234899253,29.74895856017247,30.553092694841325,30.456150107085705,30.306136374827474,30.869702513795346,30.533221459947526,31.530486569274217,30.748063342180103,30.057373966556042,31.0259675742127,30.3506314936094,29.9272319143638,30.312862060498446,29.40189760690555,29.914979583583772,29.736191409174353,30.409581414889544,31.057353036943823,31.25921122217551,32.15700955083594,32.25383420474827,32.43230507709086,31.991327282972634,31.017174928449094,30.843537079636008,30.66299334168434,31.49829628970474,32.31297660432756,31.807543427683413,30.9461383796297,30.606650238856673,30.798070417251438,30.365460004657507,30.97349392110482,30.742686270270497,31.63121265079826,32.095526991877705,32.38887618575245,33.382833251263946,34.26926794741303,34.383885791525245,34.889428353868425,35.59788608690724,35.62279752083123,34.86136947153136,34.113367670215666,33.585788066033274,33.14119736198336,33.176664863713086,32.787244303151965,33.453573430888355,33.65145459957421,33.490525014698505,33.65399118093774,33.30362369026989,32.70954855391756,33.105733499862254,33.39425914781168,32.58364300755784,33.046677691396326,32.79307064181194,33.28079394809902,32.488363875541836,32.10738163907081,32.08003360917792,31.18511511432007,31.667979962192476,31.241979222279042,31.68513971194625,30.915045329835266,31.339747006539255,30.90660260198638,30.894403074868023,31.38533606287092,30.475320948753506,31.426224096212536,32.173019426409155,32.31565596489236,32.020659886766225,32.59700733376667,32.12088960548863,32.16681212047115,31.815616886131465,31.3776942724362,31.291552637238055,30.41622681589797,29.439839605707675,30.36148731643334,31.218198277056217,30.774615094065666,29.912306531332433,29.20277723716572,28.48633235739544,27.55518756713718,27.473073995206505,27.9170989850536,26.93393194116652,27.08860734011978,27.456241201609373,27.431790985632688,27.128353245090693,27.833842873573303,28.785191574599594,28.408169692382216,27.97347375564277,28.229719794355333,28.823716083541512,29.40720990812406,30.33025311352685,29.352836151141673,28.402568308636546,28.348589605186135,27.858269188553095,28.53806812921539,28.144378427881747,28.280598677229136,28.95400329120457,28.419864809606224,28.136214402038604,27.96404091268778,28.75275428313762,29.44233773369342,29.327522105071694,29.296135181561112,30.04178076935932,30.829825525172055,31.31362535431981,31.276212043128908,31.843181189149618,32.81465422268957,33.549723683390766,33.969724180176854,34.02132854331285,33.04784086579457,32.07149128196761,31.216805464122444,30.272012882400304,29.422653717920184,30.221063395496458,30.959554913453758,30.47856988804415,30.213115000166,29.517582059837878,29.812571852933615,30.154579783324152,29.370923445560038,28.74364708038047,28.554065014235675,27.73166334722191,27.341484221164137,27.15632706321776,27.948251966852695,27.18761621322483,27.701511126942933,26.823666020296514,26.02333787130192,26.281301775947213,26.62283688876778,26.156914663966745,25.381445270497352,24.838294925633818,24.49614568753168,23.596662054769695,24.56623491551727,24.738537449855357,24.056918412446976,24.171603788156062,23.874139533843845,23.569619085639715,23.538995312992483,24.032508849166334,24.414029819890857,24.396427104249597,25.349515956826508,25.251093019731343,25.017129976768047,25.695744276512414,25.634244258049875,26.23278167983517,25.25963824428618,26.101771390531212,25.472486572805792,25.44330650754273,26.03679207712412,26.411746435798705,26.67743269680068,27.490823734551668,28.48649388598278,27.75966096436605,27.08839195081964,27.739083859603852,27.874499330762774,27.048374037258327,26.614755854476243,26.90051627252251,25.95617255754769,25.135246329940856,24.726843384560198,24.652882596943527,24.85574496211484,25.366428822278976,25.709987439215183,26.375272058416158,25.45293229399249,26.21859229542315,26.77301471075043,26.86684210738167,27.27095531579107,26.520340625196695,26.97917752014473,26.235185875557363,25.782140280585736,26.222122935112566,26.122845935169607,25.665204845368862,25.46503336681053,24.710136509966105,25.414709398988634,25.246177231892943,25.26914622588083,24.78425637865439,25.553742852061987,26.25997319072485,26.416662603616714,26.406404842156917,26.542348348069936,26.09989489801228,25.740682509262115,25.897646151017398,25.114365520887077,24.86738435085863,24.832518459297717,24.63093383796513,24.83150879247114,23.85752619570121,24.446371446363628,23.537453353405,22.99564717710018,22.043485099915415,21.42416262347251,21.128006902989,20.826031648088247,20.606068504042923,21.19894014764577,22.162001472432166,23.016361519228667,22.783259467687458,22.469531542621553,21.703543041832745,22.42568832822144,21.623339452780783,21.04380964487791,20.636222124565393,19.880603147670627,19.155751164071262,19.347671219613403,19.87828998779878,20.579725270159543,19.667531852144748,20.308391854166985,19.95143614569679,20.20026652654633,20.198356943205,20.222360033076257,19.784690300468355,20.24611456412822,20.661602324340492,20.342956504318863,19.773698940407485,20.229888098780066,20.852336462587118,21.068543831817806,21.565241017844528,22.291366817895323,22.229276794474572,22.430447552353144,22.439821080304682,22.95131448842585,22.761094932444394,22.166537175886333,22.245149101596326,21.85513697238639,21.046798491850495,21.506292791105807,21.64566799113527,21.067614510189742,21.652952496428043,22.19569909432903,21.883376024197787,22.040388668887317,22.737444664817303,22.904356082435697,22.43954832898453,21.88523857295513,22.73509969143197,23.620814393740147,23.674818275496364,24.23059412324801,23.85336422594264,24.508409360889345,24.96669848402962,24.636065429542214,24.514624294359237,25.024321228265762,24.965381561312824,25.28563144057989,25.195253709331155,25.78692850563675,25.19226309284568,24.821200496982783,25.81715419422835,25.004158539697528,24.6304285293445,24.313104154076427,25.10463804844767,25.635788229759783,26.426656952593476,26.08803194621578,26.546069565229118,27.1752332826145,27.310514499899,27.102554861921817,27.278329065535218,28.085791433230042,28.482620022725314,28.32066954765469,27.711468732450157,27.890439244452864,27.738463792949915,27.199732611421496,27.157323910854757,26.963203528430313,26.558556720148772,26.641392157413065,27.562354461289942,27.737948450725526,27.570761975832283,28.288878257386386,27.35752512840554,27.81868247501552,27.61697399802506,27.96056481357664,28.371222315356135,28.463481115177274,28.67647331673652,28.212802044581622,28.82794029219076,27.996883862651885,28.52474501542747,27.57451650267467,26.933694645296782,27.51458604540676,28.001213476993144,27.865943333599716,27.21548393415287,27.784232210367918,26.806105689611286,27.492875166703016,27.090255523566157,28.010719448328018,28.379547968506813,28.293634980916977,29.229589513037354,30.046576844528317,29.85094244312495,30.234897326678038,30.80879405280575,31.08078624261543,30.200079306960106,30.557635043747723,29.728086390532553,30.435421644244343,30.341130521614105,30.630245762877166,29.66319051058963,29.914659972302616,30.1049539539963,29.659742393996567,29.577054623980075,29.860529696103185,29.568995020817965,30.335447304416448,30.650543361436576,31.54848322691396,32.35866992827505,31.60657971119508,31.91230709757656,31.64714209549129,32.32064632372931,32.218195284251124,32.03106034453958,32.142878271173686,32.12645586114377,32.748800220899284,33.26418289821595,33.85891788965091,33.62330252351239,32.849409280344844,32.98884709645063,32.76755826547742,33.37534070992842,33.424737428314984,32.47945474740118,31.999731183517724,32.51323766913265,33.06775386678055,33.56916959537193,32.84958463581279,33.18832810688764,33.8173441644758,33.02251309575513,32.68394816946238,32.168758316431195,32.20408838801086,31.759667839389294,31.311526285950094,31.79991057794541,31.91581796389073,32.44924790970981,31.791473092976958,31.637455210089684,31.293280377984047,30.612551181111485,30.954378086142242,31.430678583215922,31.00206907885149,31.81873391242698,31.37049289094284,30.729134431574494,31.64184386236593,30.68342381110415,31.618776773568243,30.917621594388038,30.378339918795973,29.584916409105062,29.26083764154464,28.600008976645768,27.915582267101854,27.782117780297995,27.110696370713413,26.78457892779261,26.849574489519,26.14534493815154,26.724141288548708,26.353906034026295,26.69293816294521,26.616893582046032,25.633886521682143,26.114991349168122,26.115069201681763,25.944670519791543,25.81537755066529,24.884573513176292,24.10005120653659,23.37769046286121,23.105468548834324,23.517053356859833,23.582694306969643,24.156818272080272,24.406607281416655,25.103506520856172,24.79127097921446,24.265168168582022,23.727454859763384,23.927627701777965,23.307187927886844,23.080058523453772,22.19510559597984,22.260888074990362,22.079396810382605,23.07447467604652,23.637135931756347,22.77602901402861,23.38272368023172,24.04172817012295,24.844010528177023,25.48604461643845,25.008845417760313,24.293953635264188,24.043795271310955,23.374025971163064,22.884079502429813,22.381870416924357,22.195770581718534,21.642755577340722,21.194039111491293,21.239524656906724,21.76022529276088,22.63103883480653,22.565186427440494,22.274898857809603,22.006876483093947,22.867921952158213,22.26249205088243,22.05387057038024,21.7863673530519,21.027832916006446,21.251967960502952,20.655327958986163,20.850048758089542,21.5185205321759,20.89851854229346,21.098946251440793,21.312151854857802,22.09643280133605,22.088251280598342,21.438113358803093,21.07760477438569,21.97982278978452,22.063807713333517,22.81659288564697,23.608205299358815,24.593030077405274,25.16634564800188,25.55939655797556,26.534713498316705,27.022589165717363,27.23553678719327,26.278205522801727,25.54652443761006,25.13069613557309,25.756741234567016,26.751397096086293,26.467728509102017,25.74027741793543,24.762440506368876,24.30542000895366,23.878138134256005,23.76856340514496,24.225135712884367,23.940882224123925,24.724357270170003,24.67537286086008,23.79652559850365,24.511374338530004,23.90012130094692,23.94871874153614,23.37260065227747,24.331686259713024,23.615178515203297,23.48691986175254,22.710877508856356,23.301254124380648,22.558592565357685,22.88733367063105,23.188374567311257,22.370456161443144,22.88949555112049,22.761510965880007,22.953159619588405,23.462865334935486,22.573284330777824,23.09493148094043,22.68773860204965,23.046381917316467,23.500571506563574,24.361817562021315,23.85050165699795,23.346020803786814,22.707091466058046,21.967442351859063,22.44068364193663,22.067208087071776,21.184443488251418,21.08969204965979,21.72604004573077,21.36751921940595,21.161587708629668,21.084039472043514,21.004838788881898,21.2122879489325,21.309871452394873,21.796929431613535,21.84967510867864,21.08137165242806,21.692676475271583,22.69209721684456,23.371001112740487,24.318063187412918,24.833214200567454,24.785459948703647,23.87861420912668,22.888190431520343,22.89485608180985,23.651402961462736,24.143446470610797,25.07985816942528,24.48315748339519,24.920087336562574,24.203145678620785,24.44965311465785,24.429435125086457,23.890986775048077,24.50941620161757,24.581937551964074,24.518797917757183,24.355645815376192,24.68346296576783,23.92279148614034,24.617753642145544,23.878378299064934,23.536952982190996,22.88207361381501,23.47325539495796,24.038181534502655,23.97247327165678,24.715713831130415,24.51927476329729,23.83872512402013,23.07157664047554,23.72941817389801,23.688795350492,24.308036278001964,23.353030387777835,22.512062492314726,21.890502533875406,21.300374794751406,20.45093319984153,20.915344493929297,20.944558625575155,20.750448000617325,21.562302799429744,21.60243828035891,22.436666248831898,22.34602735005319,21.47645545285195,21.712946799118072,22.568056787364185,23.239261099603027,24.094145744107664,24.65433469042182,23.801889365538955,23.194126995280385,23.69272728357464,24.028680668678135,23.68805766198784,23.95420858822763,23.664848186075687,22.704746974632144,21.85073569789529,21.315765958745033,21.451212283223867,21.596129989717156,21.395510082133114,20.450964594259858,19.896460747811943,20.05910155409947,19.21633072057739,19.716249379795045,19.567757968325168,20.014627394732088,20.31960910419002,20.38132770685479,20.61578159313649,20.35921668773517,21.218517415225506,20.677073592320085,21.115110447164625,21.608745517674834,21.958371973130852,22.244177056942135,21.814773651771247,21.56017693504691,22.045123551040888,21.424516325816512,21.90682057151571,21.982574730180204,22.13571767602116,21.692805813625455,21.35064242966473,21.604839398525655,20.913600481580943,21.494818636681885,21.16614506021142,22.017532712314278,22.41091703483835,23.028591223992407,23.23024717066437,22.584287585224956,21.904402574524283,21.49968790030107,20.975575231481344,21.896837763488293,22.142166863195598,22.300875811371952,22.34505241084844,23.294855049345642,22.83571656513959,23.09708982007578,23.008156879339367,23.03825129615143,23.207603534217924,23.611011328641325,23.33606537990272,23.733985523693264,23.994511110708117,23.333283490501344,23.414940166752785,23.96274596825242,23.070244611240923,22.807929061353207,21.996066987514496,21.96793842688203,22.15741302864626,21.57179882004857,22.47940739337355,23.450678820721805,22.617115441709757,22.60035811830312,21.81167482584715,21.881161474622786,22.534469020552933,23.126347979530692,23.23028333298862,23.55757809150964,24.553535528946668,23.72545794257894,23.434293259400874,24.070994517300278,23.33949638577178,23.14245517877862,22.51759077142924,23.491452584974468,23.059957989491522,22.563379501458257,22.927426119800657,23.710964403580874,24.662978406064212,24.659296019468457,24.62520171655342,24.651067084632814,25.297837047372013,24.919942491222173,25.226189442444593,26.004353730473667,25.937196850776672,26.86947078956291,26.257099762558937,26.394907569047064,27.102409588638693,27.812691774684936,28.376797947101295,29.324791457969695,29.566717715468258,29.044315808918327,28.200046037323773,28.981796184554696,28.27011119062081,28.370664412155747,27.529372304677963,27.747334287967533,27.59105566609651,27.618462981190532,27.6618647496216,26.753624943085015,26.216846105176955,26.357337550725788,26.2480981326662,25.386626082006842,25.96673575975001,26.639071883633733,27.185920516960323,28.151575875468552,28.806408122181892,28.922109756153077,29.27680469630286,29.211837640032172,29.09988012444228,28.589437128975987,28.830353640485555,28.265693703200668,28.930713577661663,29.02727601956576,29.952106412965804,30.057144440710545,30.379211593419313,30.046414882410318,30.857356558088213,31.823048654478043,32.70131173823029,33.02409244142473,32.78272833395749,33.030483888462186,32.82230925420299,32.75352173065767,32.673404364380985,33.30193516006693,32.689379333518445,33.223763453774154,32.69176156166941,32.660456352867186,32.35347288893536,32.825879397336394,33.424279594793916,33.9011754100211,34.75454810447991,35.49349474674091,34.737057053949684,35.53993101045489,36.039204142056406,36.34725526859984,35.36091464618221,34.706642617005855,34.15756136039272,33.354360489174724,34.062128498218954,34.344429238233715,33.49998421035707,32.79106365190819,33.40306776994839,33.95568679785356,33.95864988910034,34.024811355397105,33.264624702744186,33.01366984657943,32.75513441255316,32.532512579113245,32.40937436930835,31.564047331456095,31.774919016752392,32.04650255292654,31.613039577845484,32.000660886988044,32.849905986804515,32.66837236331776,33.512776649557054,33.667689197231084,33.20505184493959,33.630114645231515,34.42785231862217,35.38638732768595,34.90093001816422,35.35895644593984,35.69095560302958,34.70878666266799,34.4237325489521,34.59446875657886,35.114111308474094,35.2769125578925,34.3498397693038,34.50179012026638,34.16943174786866,34.10632415814325,34.08810079051182,34.415162693243474,33.98528073960915,33.300034968182445,33.084939991123974,33.74243516474962,34.72762017278001,33.912030648905784,33.27494877204299,33.52057584980503,33.06558738881722,32.404653581324965,31.611094319727272,31.724424167070538,30.838292127475142,30.177492916118354,29.35964446514845,28.72776913177222,29.147575757466257,28.586761703249067,28.750482702627778,29.20310255419463,28.743793310131878,28.21961660310626,29.01197178149596,28.72151075815782,28.69650124013424,28.199591375887394,28.13699878193438,28.23740779934451,28.9160571009852,28.000836417078972,28.55119796190411,28.786704367026687,28.81723423441872,29.150954858399928,28.327281427104026,28.19401273643598,27.984074658248574,27.975904955528677,28.26906160172075,27.924122242257,27.85811518318951,27.11722411075607,26.780124990735203,26.588052276987582,26.331619238480926,27.015440770424902,26.305420314427465,26.08312750561163,26.602129992563277,27.30910874577239,27.64066161448136,28.026147296186537,28.046110457740724,28.65080481208861,29.540001875720918,29.352479641325772,28.98793597565964,28.897835362236947,27.995379384607077,28.549701529555023,28.68860054947436,29.528378509450704,28.88890384323895,29.359099905006588,29.193800402339548,28.25561605906114,27.320394624955952,26.782307090237737,27.301079870201647,26.925302087329328,27.058980725705624,26.509781581815332,27.292814281303436,27.209877124987543,27.62394274631515,28.44645980093628,27.80195530410856,27.848057895433158,28.211209090426564,28.324811205733567,28.54962655995041,28.28153605479747,27.774375690612942,26.803922488819808,26.938798329792917,27.69361022906378,27.518996165599674,26.56880968110636,26.14269094541669,25.243967813439667,25.4382782173343,24.768157093320042,24.179902852512896,24.163541980087757,23.911158750765026,23.569982382003218,22.883899751119316,23.804194517433643,22.88915442302823,22.314033795148134,21.79722692631185,20.857124044094235,20.94732245011255,21.040816167369485,21.157661660574377,20.18775057280436,19.428411123342812,20.186993398703635,20.44998004147783,21.432509475853294,21.55969822453335,22.308737749699503,22.60140138119459,21.792845861054957,20.79772463347763,20.325501285493374,20.140799918211997,20.827238166704774,20.278190549463034,20.962135845329612,20.823961452115327,20.755951973143965,20.95275006024167,19.97544898511842,19.72943287808448,18.858463634736836,19.65667187841609,19.37389947846532,18.86548914387822,19.054869396146387,18.94624141184613,18.737392930313945,17.78960298979655,16.897469002753496,15.949301001150161,14.98799344478175,14.949295029975474,14.860296002589166,13.898095428943634,13.702719505876303,14.345597311854362,14.008661879226565,14.972023793961853,14.80078570311889,14.543295507784933,14.877510414924473,15.448017372284085,15.481906282249838,15.376374336890876,14.858271760400385,15.464402991812676,15.57018237002194,15.282204961869866,14.848681803792715,15.649840325582772,15.244886802043766,15.948043134063482,16.614923676941544,16.28024677745998,15.54850651184097,16.485648820642382,17.14179551322013,16.694696808233857,16.51109823770821,17.249690115451813,16.66126305097714,16.753467640373856,17.24972505820915,17.57646370632574,18.12610240932554,17.340256148483604,17.752083260565996,17.57219748478383,17.468880153261125,17.796042873058468,16.86261055758223,16.069457531441003,15.961401381064206,15.576441712211818,16.250998666509986,17.238763492088765,17.013175233267248,17.90870566247031,17.618346996605396,18.03109389124438,17.877412248402834,18.240392316598445,19.184981879778206,18.747138222213835,17.776162546128035,18.04311455367133,18.9412081358023,18.235028315335512,17.956703229807317,18.176474987529218,18.84090361557901,18.110420478042215,18.83748197508976,18.569828370586038,19.187021510209888,19.04630813188851,18.380973842460662,18.759959807619452,18.247859133407474,17.44699370348826,17.875476317014545,17.184000586159527,16.36769912019372,16.929227467160672,17.783701967913657,17.138639874756336,16.25679150223732,16.14174618385732,17.11924812057987,16.95926718134433,16.600749101489782,16.630693964194506,16.152920166030526,16.6608557687141,17.248683044221252,16.90695547591895,17.28909788094461,16.52632131241262,15.774412679951638,15.241685952525586,14.341715465765446,14.81598478415981,13.934434716589749,14.686078650411218,14.610579456668347,14.035592652857304,14.437071566004306,14.324262051377445,14.999576847068965,14.796288514975458,15.184361597988755,14.646513031795621,14.241433332208544,14.28280310984701,14.345333050005138,14.715710250195116,14.678737040609121,14.819542941171676,15.473307352978736,14.73911406705156,14.584118858445436,14.871611869428307,15.531144388951361,16.375878770835698,15.397950004320592,15.048418203834444,14.869642987381667,13.926504125352949,13.404698567464948,13.905951260123402,14.64377364097163,14.740839831531048,14.888893343508244,14.007333452813327,13.993748566601425,14.492068574298173,13.862094130832702,14.072836000006646,13.1802171706222,14.024120633956045,14.036598620470613,14.058616825845093,13.885734718758613,13.879695194307715,13.116693515796214,13.580125852487981,14.527665213216096,14.64018943766132,13.948168046306819,13.415512298233807,12.87108041299507,13.665302989538759,13.640662980265915,14.014715381897986,14.928511103615165,14.094837516080588,14.2610726011917,15.114035215228796,15.574737702030689,16.011081548407674,15.065061968751252,14.463678427040577,14.233160320669413,14.12245070002973,14.096029540523887,14.536394707392901,15.383149509783834,15.289691155776381,15.639521640725434,15.683385529089719,15.792369112372398,14.909017014317214,14.488194765523076,13.532689737621695,12.676178284920752,12.24117111088708,12.460126739926636,12.433224940672517,12.492776746861637,12.76774303195998,12.576560959685594,12.905642619356513,13.0532342530787,12.287051879335195,11.857022035401314,12.696306684520096,12.779350013006479,13.058745029848069,12.435138617642224,12.55305187497288,12.934069784823805,12.980192326474935,12.10806223936379,12.158174287993461,11.911016951780766,12.408462212886661,11.867248927708715,12.660947902593762,13.111362373456359,14.07971488777548,13.23301234235987,13.70920514408499,13.165761795360595,13.507637115661055,14.150915827602148,13.413105285726488,13.616151979658753,14.49635972129181,14.021112348418683,14.800960467197001,15.099061544518918,15.323942927643657,15.287387748714536,15.903143749106675,15.075036257971078,14.21843100572005,14.618555646389723,14.906118624843657,15.506778433918953,16.27935907803476,16.8435059892945,15.953852684237063,16.597599351312965,16.12367189442739,15.608742002863437,15.954152869991958,15.270739091094583,15.909341080114245,15.330568917561322,14.5106840133667,13.586701216641814,13.71097593801096,14.359526426997036,13.781073430087417,14.01294028153643,14.893024262506515,14.290987549349666,13.350238665472716,14.343225878663361,13.647635054774582,14.156687502749264,14.55455770296976,14.826115877367556,14.865011203102767,14.896018144208938,14.689961079042405,15.090749783441424,14.906502863392234,14.708217254839838,15.413088387344033,15.756024562753737,16.245311226230115,16.03648236161098,15.872361684218049,15.208711253479123,15.278921213932335,14.378063018899411,14.074196578003466,13.622775943018496,13.535664649680257,13.238758562132716,12.324706384912133,12.666489995550364,12.556686676107347,11.71772823203355,10.794349108356982,10.858775373082608,11.719449347816408,11.549910918809474,11.093227012082934,10.117998221889138,9.453777939546853,8.83294020080939,8.011474756523967,7.726706380955875,7.484177255537361,8.396229451522231,7.92009621206671,7.369357846211642,8.32617467502132,8.918554546777159,9.100004818756133,8.387564899399877,8.455187568441033,8.35498855728656,9.154281369876117,8.734548426233232,9.393902827054262,9.195722411386669,8.882382088340819,8.001970726530999,7.233232284430414,6.671928103081882,5.95234332093969,5.411848292686045,5.654899764806032,6.492653681896627,7.246744642499834,6.338334220927209,6.356996595393866,7.291599627584219,8.006517658941448,7.982570657506585,8.62693122914061,8.321505257394165,8.740394088439643,7.819582198746502,7.703566850628704,8.655154321808368,7.8461349522694945,7.236693927552551,6.7665480258874595,7.764772502705455,8.194807535968721,8.091789914295077,7.220947950612754,7.297854738775641,7.018762794788927,6.482765342574567,6.697630661074072,7.159286241047084,6.974330099765211,7.594345066696405,6.649184523615986,7.162657798267901,7.28492852114141,6.673883471172303,6.209601063746959,5.95879318471998,5.435548867564648,4.825729758944362,4.8391929268836975,5.22224408807233,4.324222281575203,3.335771983023733,4.235218003857881,4.511973070912063,5.377924366854131,6.083745656069368,6.031736472155899,5.564505365677178,5.866000507026911,5.916099450085312,5.6317248633131385,6.439286228269339,6.180512004066259,6.397391350474209,5.903182453941554,6.787320806179196,6.759695636574179,7.385832219850272,7.454074843786657,6.950689039658755,7.598602415062487,7.361355318222195,6.859835772309452,6.966720120515674,7.1767377448268235,7.8414280456490815,8.773686298169196,8.82664488768205,8.478684441652149,8.285008056554943,9.148086070548743,8.375816869083792,8.916099798865616,7.965134920552373,7.230968508403748,7.154910407494754,6.537727136164904,7.358424072153866,7.065332763828337,6.969709906261414,7.562176441773772,8.279052587226033,7.906270121224225,7.4872003281489015,7.043760693166405,6.224218943156302,5.546010356862098,6.032237776555121,5.517896072007716,5.254702729173005,5.200782327912748,5.844832473900169,6.220193415880203,6.232976210303605,6.7580727259628475,6.883977181278169,6.213611512444913,6.6504923277534544,5.66613366547972,6.2941246293485165,7.073538972530514,6.834549046587199,7.093667605891824,6.095820848364383,6.763541066087782,7.488085771445185,7.555315686389804,7.299359094817191,8.205294351093471,7.8114999402314425,8.704582652077079,8.97398435138166,9.94040022464469,9.109798572026193,9.120690830983222,9.343756580259651,9.44061310775578,9.158332389313728,9.215635483153164,10.126695400103927,10.943609425798059,10.7841716716066,10.291363026946783,9.404246026650071,10.02833482157439,9.799291618634015,9.710575762204826,9.491518002934754,9.452245006803423,10.155007067136467,10.414314525201917,10.073710444383323,11.050534400623292,11.380595391150564,11.43343870062381,10.840681734029204,11.5680837277323,12.027773472480476,11.473323092330247,10.933984922245145,11.096456945873797,10.916092335246503,11.528373347129673,11.849981739651412,11.537743034772575,12.007012898568064,12.093475307803601,12.411552586127073,12.59666221216321,12.689763341099024,13.392837880179286,14.282255671452731,14.677750922273844,14.635337096638978,15.429591093678027,16.200605000834912,15.24969191942364,15.54031372629106,15.644477638881654,16.382159108296037,17.31428578775376,17.705895942635834,18.196773465257138,18.869152874685824,19.531765120569617,18.978810745291412,19.87865531584248,20.321746492758393,20.049899463541806,20.634371794294566,21.570668114814907,20.78354388102889,21.02376113459468,20.551628382876515,20.399435963481665,19.812263449653983,20.54005084373057,20.05143633391708,20.739282361231744,20.390477288048714,21.2599081043154,20.720816250424832,20.863509397488087,20.076655664481223,20.00858341064304,20.461134203709662,19.93749802792445,20.785386133939028,19.848729515913874,20.383887452073395,20.599122438579798,20.55234497739002,19.95514881517738,19.500562803819776,19.175973263569176,18.68242707941681,19.086157588288188,19.220112062525004,19.422151622828096,19.59557533543557,19.994113967753947,19.712146626785398,20.618814224842936,20.0385644515045,19.889992069453,19.50525945890695,19.19635255774483,18.54969954304397,18.614102070685476,19.202181027270854,18.725133689586073,18.27148305810988,18.663730083499104,19.277613420970738,19.426369039341807,20.333274501375854,19.76335554290563,19.1027408009395,19.68369313282892,19.97214998397976,20.116185422055423,20.46559217106551,20.000937543343753,20.44754413003102,20.02739454852417,19.9085777211003,19.888122206553817,20.197729068342596,21.012115178164095,21.28394157998264,22.056486628949642,21.982983500231057,21.051935310009867,20.46821729745716,20.288071185350418,20.97297746874392,21.323750713840127,20.50053936475888,20.785124476999044,19.850151935592294,19.63148091826588,18.927565054968,18.60977572435513,17.63679281808436,18.31930781994015,17.45154346851632,17.011861849110574,17.451519465539604,18.11454607406631,18.19237150810659,18.867374335881323,19.15064195357263,18.182470919564366,17.919214859139174,18.033632850740105,17.346694331150502,18.072504514828324,17.323961721733212,17.522679491899908,17.200903159100562,16.2176479450427,17.149245058186352,17.00766281876713,16.30131879169494,15.474620271939784,15.079553199000657,15.654064493253827,16.35810104664415,17.026046213693917,17.69377835886553,16.723250780254602,15.857422234490514,15.878146504517645,15.002814843785018,15.760894955135882,14.850128307938576,15.264174217358232,15.147877474315464,14.955091738142073,15.780484521761537,14.811466532293707,14.601460396777838,14.150662964209914,14.00786185497418,14.101557684596628,14.525122586172074,14.869070050306618,14.067886790260673,13.194650937337428,13.099253011867404,12.881906633265316,11.994391456712037,11.165172237437218,10.199905375484377,10.222247223369777,10.780868417583406,11.38160584308207,10.846425307448953,10.576473192311823,11.55398381408304,10.646328950300813,10.470607137307525,10.735976371448487,11.293711376842111,12.02492933999747,12.2646996518597,12.536543224938214,12.755257634446025,12.873245808761567,12.008317710831761,11.965651028323919,11.908782567828894,11.164292662870139,11.732102708425373,12.691464327741414,13.034730785991997,13.283640608657151,12.584506209008396,11.892987234517932,11.636561968829483,11.403339964803308,10.815696259960532,11.03361803619191,10.794314785860479,11.492589295376092,11.976180920843035,12.094020912889391,11.685879670083523,12.320319377351552,12.299010228831321,12.955700939986855,11.986718067899346,12.101028572302312,11.801410359330475,12.586464014835656,13.396112174261361,12.942843342199922,13.794050965923816,14.039203594438732,14.450330183841288,15.298255714122206,14.949193564243615,14.743133382871747,15.466698549687862,14.911800069268793,14.54444191697985,13.700958082918078,14.280120101757348,15.251319440081716,14.266468093264848,14.57985784811899,14.619737451896071,14.532470831181854,14.080769252032042,13.737021536566317,14.387564400676638,15.060949285980314,14.89472272247076,15.875133126508445,16.067067532800138,16.61692808289081,16.588787091430277,16.550672832410783,16.96803023479879,17.905620680190623,18.252432596869767,18.14651975547895,18.85580854350701,18.950178443454206,18.05745519604534,18.565888565964997,19.106190301012248,18.84903838392347,19.07222513947636,20.063097500707954,19.505570514127612,19.05529188271612,19.065601588226855,19.486939473077655,18.895470015704632,19.531551527325064,20.130419513676316,20.875404448248446,20.767169943079352,20.045306517742574,20.648153497371823,21.599457375705242,21.290998285636306,20.335453115869313,19.392984678037465,18.768282766919583,19.13080551661551,18.767922311555594,17.783885711804032,17.17295813560486,16.930185400415212,16.79248897312209,16.026313797105104,16.38828557729721,16.78771988907829,17.73646088456735,16.900454363320023,16.260203373152763,16.944550522603095,17.845627054106444,18.58593041310087,18.41946342634037,19.24285527644679,19.572667746804655,19.706960608717054,19.371377622243017,19.607925788033754,19.065062963869423,18.49761611688882,18.583222596440464,19.538353259209543,18.71981030702591,18.697300110943615,18.789856100920588,17.96849053306505,18.857433509081602,18.138219782151282,17.804346428718418,17.41202060878277,17.560492027085274,16.845712552778423,16.68816274544224,15.943815244361758,16.398671586532146,15.435919447336346,14.563386544585228,14.390907121822238,14.432427334599197,13.43754957895726,13.062099259812385,12.342895805370063,12.069893992505968,11.565795314963907,12.37689932435751,13.23263131082058,13.120202420745045,13.687158897984773,13.706707505974919,14.57540444098413,13.649660262279212,14.610662922728807,14.97804968431592,14.04106313129887,13.254254519473761,13.718862144742161,14.169978079386055,14.904505689628422,15.679279929026961,14.830854917410761,15.163895853795111,14.65045901760459,14.473027334082872,15.295289375353605,14.3884839983657,13.498762358445674,13.123720867559314,13.753897100221366,12.784768171608448,13.280961602926254,13.789859951008111,14.26072717178613,14.112405374180526,13.275742255151272,12.9395264480263,13.724605228286237,14.321492921561003,14.310994636267424,14.348514779936522,13.955238736700267,13.797686498146504,14.583222799468786,15.124241321347654,14.78277727495879,14.821082952432334,15.62311774212867,15.179967367555946,14.732452414929867,14.316833407152444,14.968296465463936,14.313354753889143,15.10052847256884,14.776697722729295,14.349584532435983,13.983412037137896,13.482449614442885,13.307870106771588,13.412881552707404,14.288114725612104,14.729165800381452,15.636283093132079,16.502546331845224,16.03933962760493,16.821612797677517,16.25004390347749,15.399026113562286,16.38384458888322,17.126487069297582,17.50319955032319,17.30786823341623,16.855134036391973,16.455875200219452,15.975317487027496,16.54051328357309,15.96912748599425,15.494347053579986,15.44649580027908,14.627183665055782,15.298763006459922,15.135328548960388,15.768916501197964,16.383136964403093,17.29382709506899,17.105088226497173,17.952349596191198,16.97805820638314,17.142868975177407,17.373399239499122,17.41748885717243,17.816660634241998,18.012518716044724,17.517154625616968,16.900062528438866,16.7980940900743,15.975689061451703,15.089754182379693,15.754149329848588,14.9804726424627,14.631068569608033,13.802679016720504,13.718456798698753,14.200718950480223,13.892593585886061,13.39192457916215,14.123024576809257,13.822468170896173,14.417464164085686,14.984249494969845,14.770697202999145,14.580683851148933,13.704107355792075,12.865270192734897,12.8929591672495,12.49401551252231,11.927853532135487,10.957237055525184,10.069629185367376,10.841063004918396,10.536239479202777,10.844026281498373,11.576366422697902,12.566655514761806,13.25824852194637,14.072133933193982,14.34911103034392,15.21069497615099,14.703120233025402,14.245162933133543,14.267142730299383,14.394997726660222,14.604765251744539,13.78559567593038,13.376506209373474,12.87800649786368,12.446203578729182,13.214214491657913,13.030642086174339,12.860910628456622,12.104430865962058,11.738250051625073,11.845811549574137,11.341136010363698,11.827167543582618,11.583438457921147,11.11372303776443,10.746400314383209,9.956724040675908,9.771398666780442,9.51683000056073,9.494196253363043,8.869663334917277,8.006461934186518,7.363477226346731,6.788056794088334,7.624686494469643,6.806264052167535,6.387181201018393,6.432865579146892,7.092161220498383,7.636355979368091,7.472356508951634,7.235882559791207,7.668359266128391,8.643468928989023,7.714430151507258,7.6415292313322425,7.015606196131557,7.615815547294915,7.629740668926388,7.694663259200752,8.115341834258288,7.976985900197178,8.530389520805329,7.80992863047868,7.110026252921671,6.908168082591146,6.72301693353802,5.9524063230492175,5.22707281075418,5.895337061956525,5.472307639662176,4.9899284658022225,5.821856920141727,6.293198713101447,5.710874600335956,5.1357331476174295,5.755104152485728,5.643349459394813,5.6438041548244655,6.190015714149922,5.641084614675492,6.00525370799005,6.351673977449536,7.111382114235312,8.022950381971896,8.848768877796829,9.826330754905939,9.650371369440109,9.14483662135899,8.912602865602821,9.147775475867093,9.45184104051441,8.566025101579726,8.299711818806827,8.1611895612441,8.92128103133291,9.41079281643033,9.263884734828025,9.157563786488026,9.376370509155095,10.015080528333783,10.877134997863322,11.244829358067364,10.664467303548008,9.761525243055075,9.279164632316679,8.757435264531523,9.167628042399883,9.91262900736183,8.94003828940913,9.895933093503118,10.226747198496014,10.3928391947411,11.23604593379423,11.676505545619875,12.339485084638,13.026724573224783,13.832194614689797,13.755803538486362,13.713356505148113,13.307205489370972,12.507691117934883,12.219328899867833,11.317992430645972,11.46046136599034,10.691278566606343,10.529524811077863,10.913909669965506,10.142723144032061,10.225955341011286,10.502282292582095,10.549766254145652,9.81076318398118,9.46939269034192,9.583840120118111,9.611310546286404,9.765115732792765,8.885897302534431,9.082895373925567,8.676866420079023,8.856476220302284,8.412046723533422,7.533997389022261,6.802012416534126,6.978759842924774,6.697975335177034,7.094486930873245,7.101910383906215,7.648842422757298,6.799894839525223,6.847149346489459,6.310038715135306,6.4816852156072855,6.1877145525068045,6.657854030374438,6.1593674016185105,5.391007396392524,4.435526956804097,5.300724070519209,4.937364702578634,5.055466359946877,5.884404811542481,6.241646096110344,6.451054420787841,5.5760697145015,6.571670821402222,6.148165488149971,6.629352620337158,7.050685883034021,7.498637260403484,7.073221413418651,7.033594078850001,7.5068266610614955,7.433998832944781,7.4753950936719775,6.561727571301162,7.206749668344855,7.9749316717498,7.0346610033884645,7.201303478796035,7.75403894437477,8.702336595393717,8.821175430435687,9.484010245651007,10.255565081723034,10.138472134247422,9.296569226309657,10.041536264587194,10.56158042512834,11.508815899956971,11.659659777302295,12.466158296912909,11.783049694262445,11.744786583818495,11.053683237638324,10.330737311393023,10.516486029140651,9.915711522102356,10.799322505481541,10.026567173656076,9.300503709819168,9.309029312804341,9.29139956459403,8.689862623810768,9.599578107707202,9.626425893977284,8.971947439014912,8.960968519560993,8.366036530584097,8.89174407813698,9.152126162312925,9.244999019429088,9.553996983915567,9.8708870774135,9.38583403127268,10.122834350913763,10.76521189045161,10.674035192001611,11.439015206880867,11.929885816760361,12.092868804000318,11.901618109084666,11.272429625038058,11.72169014904648,12.468792730476707,13.45039839996025,14.110673487652093,14.207859433721751,14.419772892724723,15.209092210046947,14.322862199507654,14.161714361980557,14.079735592473298,14.051013653632253,13.560571723617613,14.190209246706218,15.11342599382624,14.803516236133873,14.54013650584966,13.737134985625744,13.683198458049446,13.366100611630827,14.016788816545159,14.648725931998342,14.355373247526586,14.365769734606147,15.201985232066363,15.417014002799988,15.033488118089736,14.150185463018715,14.571253248956054,14.066355311311781,13.627902945503592,13.063669299706817,13.67094779573381,14.094713173806667,13.987953847274184,13.089489584323019,12.779868146870285,13.324599764309824,14.240703003946692,13.916353032924235,14.234221644233912,13.550007229670882,12.712744478136301,13.494560483377427,13.151725580915809,13.197793890256435,14.106004456523806,13.701026918832213,14.351001681759953,13.679054904263467,14.578616245649755,15.183187629561871,14.475986383855343,13.922423693351448,13.523162061348557,12.954863844905049,13.446692360565066,12.754033672623336,12.759746158495545,12.344135975465178,12.828601961955428,11.97803065693006,11.284858047962189,10.320226616226137,10.922704576514661,11.28597769094631,10.976886281743646,11.659118988085538,10.776901069562882,10.64399031829089,10.770965781994164,11.137483636382967,10.784493622835726,10.550598063506186,11.36930192541331,11.186781894415617,10.767217044718564,10.644346579909325,10.895409718155861,11.39885321399197,10.973879843018949,11.331746328622103,10.931651890743524,10.450456839986145,9.63702535070479,9.493211258668453,9.896434392314404,9.343145234510303,9.283104888629168,8.687743748072535,8.64550090348348,8.181050507351756,7.961438366677612,8.91474326653406,7.975679097697139,8.057855765335262,8.612652441952378,9.381605823058635,9.966923981904984,10.794906277675182,10.440613623708487,10.02848105924204,10.48297844082117,11.085627943277359,10.291151660494506,10.241728141903877,9.710519821383059,10.662615789566189,10.055851644370705,10.343967089895159,9.545821709558368,8.9213662520051,9.037698045372963,8.447383154649287,8.890417877584696,7.892155012115836,8.28039318183437,8.341974065173417,7.629383175633848,7.546830851584673,7.70576438261196,8.411823006812483,7.466722434386611,6.842450161464512,6.448786575347185,7.364885239861906,8.14334390964359,7.235721821896732,7.619768440257758,7.424763344228268,6.556783874519169,6.762718585785478,7.10699938936159,6.265904014930129,5.755695286672562,5.118403709027916,4.644641088787466,4.114545870572329,4.5588917336426675,4.736391864251345,5.7336520459502935,6.468600660562515,7.010369706433266,6.156817032955587,7.126693684142083,7.690040434710681,6.756148583255708,6.551521529443562,7.509347182698548,6.548451568000019,6.278937677852809,6.845725907944143,7.4122985056601465,7.918084473349154,8.90699210157618,9.479679618962109,10.462100720964372,10.059976001270115,10.248108408879489,10.999785169493407,11.51060454454273,11.144468628801405,10.906129281502217,10.783911388367414,11.603277304209769,12.24448708537966,12.933466964401305,12.379936274141073,13.150617926381528,12.178768985439092,12.595920865889639,12.449926164932549,12.862566470634192,13.666571747977287,12.78262452268973,12.455673556774855,11.96467900229618,12.00960300816223,11.261387738864869,10.803796052467078,9.945491081103683,10.840578231029212,11.125322002451867,10.836253511253744,9.987403306178749,10.54305271897465,10.49278545891866,10.141843721736223,9.696466251742095,9.362318258732557,8.914191001560539,9.133921343833208,9.67206267779693,10.460136201698333,10.286743476986885,10.494626339524984,11.160223021171987,11.045236273203045,10.183267233893275,9.441193562932312,8.979073549620807,8.292435702402145,8.967988253571093,8.426016230601817,8.70863042678684,8.696336166001856,8.795652120374143,8.995757887605578,9.855131155345589,10.015119664371014,10.142503511160612,10.32843233179301,11.037105064839125,10.11104141222313,9.92150347540155,10.635117340832949,10.405565177556127,10.875800658017397,11.502260852605104,12.490247453097254,12.120095909573138,11.442383469082415,10.706636460032314,10.183643294032663,9.293719090986997,8.456923738121986,9.260548057034612,8.467078465037048,8.537183268927038,8.068877167068422,7.083368976600468,6.719348708167672,6.114995153155178,6.646937827114016,6.7647348451428115,7.567775157745928,7.835077568888664,7.351520708762109,7.368200823664665,6.664714052341878,6.5218209265731275,6.97318852506578,6.7827640562318265,7.559651382733136,7.571898132096976,6.884884607978165,6.48232263373211,7.134610369801521,6.990042568184435,6.542576156556606,7.234412922989577,6.379156836308539,6.767780041322112,5.997349882032722,6.259527922607958,7.134602240752429,6.289422364905477,6.187481178436428,6.373863651417196,6.963033623062074,7.39569388050586,6.725873739924282,6.420837133657187,5.712187114637345,5.288435380905867,4.654108649119735,4.371956328395754,4.46535225585103,3.6106299655511975,4.534484453499317,5.25464309938252,5.1006513414904475,5.985300448257476,6.319222298450768,6.4812659518793225,6.538813680876046,7.482197592500597,6.847664346452802,7.12138146487996,7.114443755242974,7.8377255368977785,8.72933088010177,8.941900056321174,8.555700940079987,9.535386815201491,10.018425883259624,10.993964187800884,10.948973577003926,11.916913500521332,12.61840949067846,12.566365501377732,12.671976916026324,13.581711301580071,13.458116619382054,13.295173286926001,14.205191464163363,14.739732365589589,14.708659381140023,14.879571068566293,15.848213386721909,14.944130796007812,14.309411713853478,13.640373590867966,14.076232351828367,13.113159413449466,12.93464349815622,12.201741097029299,11.718840169720352,12.137936194427311,12.034552867989987,11.306000316515565,11.772462521214038,12.551272884942591,12.8048832337372,13.772840051911771,13.468380062375218,13.716763492673635,12.743587212171406,12.987129259854555,12.514712877105922,13.442284367512912,13.07662462303415,13.329738968983293,12.839253903366625,12.138929523993284,12.715401221066713,13.45910348277539,12.542982923332602,12.247318878769875,11.530566671863198,11.22152830986306,11.592302800156176,11.169633922167122,11.43319049384445,11.873022124171257,10.977319218218327,10.63580277422443,11.350656317546964,11.951899335253984,12.40414633974433,13.08960150461644,12.59333819616586,13.281514566391706,13.815777134150267,14.30208131019026,15.276490587275475,14.546582269016653,13.935599303338677,14.653077852446586,14.40960215870291,13.491093207150698,13.426725951489061,13.651033230591565,13.858616498298943,13.930424256250262,13.611540415789932,12.949769059196115,12.442095756996423,13.436233200598508,13.763678489252925,14.534650064073503,15.347759564872831,15.891961339861155,16.302400547079742,16.880025076214224,16.166572680696845,16.208562004379928,16.858271395321935,16.213603956159204,15.29495926015079,16.042019739281386,16.103109213057905,15.717084623873234,15.809698916971684,14.868866047356278,15.689461773261428,14.721592551097274,13.900309422053397,13.46525900112465,13.81395801436156,14.695534797850996,13.741484867874533,12.997318856418133,13.029628458898515,13.768144253175706,14.237152710556984,14.619947212282568,15.045815988909453,15.694081855472177,15.44577445089817,15.60478380182758,15.437175509985536,14.743288717232645,13.861208831425756,14.481549856252968,13.662757203914225,12.907498631626368,12.13021844951436,12.925613081548363,13.33524154825136,14.197559563443065,14.825290494598448,14.102954327128828,14.266713472083211,14.400541996117681,14.602256590500474,15.00189685402438,14.228624466340989,13.944292136002332,13.770055340137333,13.72645536577329,13.360066834837198,12.476357803680003,11.559687706176192,10.796965658199042,11.084122118540108,11.499234463088214,11.050187517888844,11.748643564991653,11.797184426803142,12.73621164355427,12.507473152130842,13.404373172670603,12.718096635304391,11.85038579814136,12.178324239794165,12.014604834839702,11.20074644125998,10.700341642834246,10.84532282827422,11.102444473654032,10.374277684371918,10.556681382935494,11.126967933494598,12.019988120067865,11.21713488502428,11.202188733499497,10.483854678459466,9.649619057774544,10.503799546509981,10.739692714065313,10.664636058267206,9.896074654068798,10.052193022798747,9.187576123978943,9.421239311341196,9.598248904570937,10.068328552413732,9.279384657274932,8.401279004756361,7.863063244149089,7.7333177188411355,8.079330524429679,7.353292151354253,7.95114703848958,7.402635276783258,8.1802659467794,8.92080988921225,9.484661472961307,9.332908414304256,9.065938332118094,9.231651483569294,8.530222862027586,8.673898030538112,8.988375713583082,9.61593288416043,9.309229316189885,9.482180432416499,9.112270186189562,9.329027152620256,9.633144493680447,9.048709442373365,9.325996964704245,10.231766541022807,11.122962407767773,10.868720325641334,11.368004790972918,11.873510428704321,12.829142457339913,12.839487712364644,12.879079419188201,12.752322346437722,12.154945423826575,11.7386270808056,11.751318232621998,10.802992813754827,11.185179131105542,11.764482075814158,11.258631300646812,10.654750688001513,10.47949241194874,10.2241962691769,9.606955775991082,9.789575529284775,9.952150152996182,9.814513735938817,9.01270483713597,8.782594851218164,8.329534872435033,8.378429637756199,8.195826117880642,7.58914193417877,7.471868090797216,7.8169438065961,7.387537337373942,7.843754776287824,7.376071484293789,7.027388438116759,6.29773008916527,5.927521511912346,6.007441378198564,5.72585290716961,6.301611208822578,5.577915129717439,4.886113915592432,5.39331931900233,4.665718005504459,4.95396730909124,4.650769979227334,4.8800571244210005,5.756367535330355,6.307892717886716,5.99275323189795,5.238683084957302,4.603849485516548,5.376540060620755,5.356062620412558,4.695016341283917,5.651202276814729,6.41700738389045,5.600835689809173,4.757123947609216,5.41787073854357,5.310162127017975,5.36606639996171,5.929860027041286,6.709116640035063,6.699133312795311,7.331788165960461,6.496334795374423,5.7346300086937845,5.268242040183395,5.7972877118736506,5.2858904781751335,5.65908858878538,5.848969814367592,6.478098999708891,5.495317148976028,6.069230280816555,5.500413235742599,5.981238590087742,5.071575111243874,4.253299851901829,3.669398717582226,3.1957769985310733,3.360648368950933,3.5657202415168285,3.958491471596062,4.360373568721116,4.086151442956179,3.4299770453944802,3.521916580852121,2.9277227157726884,2.7697389791719615,3.3150424882769585,3.0210196152329445,3.2935856534168124,3.4245410026051104,3.9148788545280695,4.646131198853254,3.6852162587456405,4.620416379999369,4.942407296504825,4.852615665178746,4.189097465015948,5.00421580625698,4.666807441972196,3.7353830975480378,3.0377494781278074,2.7036304026842117,3.3775101602077484,3.6109343226999044,3.296207597479224,2.7522146366536617,2.67172712367028,1.920426411088556,1.8239406500943005,2.4053745372220874,2.8294868264347315,3.1103396946564317,3.9732091668993235,4.267096582334489,3.604397229384631,3.9752994403243065,4.3667823961004615,4.213421329390258,5.178848161362112,4.632021553814411,5.415148511528969,6.306763582397252,7.219465613365173,7.620753725990653,8.14553574193269,8.96355397021398,8.253932324238122,7.757866412401199,6.897712427657098,7.488058644346893,8.208325294777751,8.327348518650979,9.085427768994123,9.205010880250484,8.680500815156847,9.490639488212764,9.401345674879849,9.488834483548999,9.06999628385529,9.703255881555378,9.1584039516747,8.64803301775828,7.72615280142054,6.897198189981282,7.286908132024109,6.448974940460175,5.515297957230359,5.012592251878232,4.033212109468877,4.172328018583357,4.308016860857606,4.250370486173779,3.647703864146024,3.615004433784634,4.520402312744409,5.1629614271223545,6.081937114242464,5.724582779686898,5.939625359605998,4.9611675213091075,5.289291507564485,5.0412058788351715,5.416119265370071,6.382849688176066,6.756065779365599,6.077353368513286,7.049810965079814,6.111828783061355,5.543941104318947,6.07668292010203,6.7878826865926385,6.963668087031692,6.769983201287687,6.5647904789075255,6.057242794893682,6.163714875467122,6.116783730685711,6.034236708655953,5.295517153572291,4.5269841202534735,3.868899845518172,3.0324529027566314,3.628879688680172,3.730605950579047,2.9044165373779833,2.577928083948791,2.475763350725174,1.6617815531790257,0.7802743893116713,0.5015232190489769,1.0231523411348462,0.9619054943323135,0.12580876424908638,-0.1427928381599486,0.005917579401284456,-0.5856638867408037,-0.5943815633654594,0.3435995918698609,0.12056183302775025,0.2073830645531416,0.7297217603772879,1.0921947085298598,0.20962516218423843,0.9058265937492251,0.27141826832666993,0.5297183869406581,1.0504493028856814,1.9877727692946792,2.7435088516213,3.1968264766037464,2.4943121164105833,1.5119025530293584,1.3059325725771487,2.2529077329672873,3.2468268973752856,2.255808704532683,2.8946403386071324,3.0036406870931387,2.59124746453017,1.7301019201986492,2.333594813477248,2.4110362180508673,3.3435596213676035,2.4424854586832225,1.6913264133036137,2.009786546230316,2.262221997138113,2.587156798224896,3.1240792167373,2.3972215307876468,2.6245695087127388,2.5467570843175054,1.8100269781425595,1.5915193445980549,0.9416446797549725,1.2365171615965664,0.31223870161920786,1.1603256375528872,1.233949339017272,2.051940185483545,1.4074563016183674,2.0048020579852164,2.3105367799289525,1.8738265400752425,1.6242381678894162,1.493414313532412,2.0325691481120884,2.256793010979891,1.4275275934487581,2.1289081922732294,1.2479408150538802,0.9770760084502399,1.4205519622191787,1.298846167512238,1.8781091999262571,2.4049568735063076,2.8894569976255298,3.147505007684231,2.197848050389439,2.1773554692044854,2.788134922273457,2.5472118444740772,1.8535216846503317,1.4729544664733112,0.9545120890252292,1.04225764144212,1.3219824261032045,0.5305674774572253,1.0857346830889583,0.9625872168689966,0.09367188205942512,0.5090235928073525,0.5719034392386675,1.5505121126770973,0.9580916594713926,0.9046782627701759,0.9173007812350988,1.8758432902395725,1.5260060746222734,1.0166538157500327,1.8781091291457415,0.9732686141505837,0.459379309322685,0.6411750856786966,1.4592489562928677,0.8418635954149067,0.021657126490026712,-0.17413780419155955,0.5216433657333255,0.0031286966986954212,-0.10547633189707994,-0.9199824379757047,-0.0712438547052443,-1.028975361958146,-0.9285929417237639,-1.2604519394226372,-2.1005088333040476,-1.4891115450300276,-1.9783602161332965,-1.0328953051939607,-0.1721345973201096,-1.1656321096234024,-0.6693354714661837,-1.4814776806160808,-1.220032368786633,-0.9029116537421942,-1.1370435669086874,-0.272758268751204,-0.9231358114629984,-0.8284469931386411,-1.754661236423999,-2.2818446727469563,-3.1008162763901055,-2.2665071967057884,-2.510518938768655,-3.325668803881854,-2.467549756169319,-2.9621711084619164,-3.954808773472905,-4.046867862809449,-4.576091204769909,-5.5572922099381685,-4.948822252918035,-5.099824420176446,-4.409280611667782,-5.30825983081013,-5.128367498982698,-6.085838246624917,-5.785440031439066,-5.100469789467752,-4.930335000157356,-5.6645184135995805,-6.626509432680905,-6.355463136918843,-6.078069544862956,-5.088831110391766,-5.51770197879523,-4.71548360818997,-4.51711786724627,-5.231511681806296,-5.935876357834786,-5.878672459628433,-5.608672035858035,-6.0575930322520435,-5.937924040481448,-6.6188989244401455,-7.568351647816598,-6.947015815414488,-6.2852718308568,-5.974224322009832,-5.234739000443369,-5.070264224894345,-5.8263961733318865,-5.037420959677547,-5.859383613802493,-6.541343223769218,-6.822454509790987,-6.055665894877166,-6.211493672337383,-7.198171398136765,-6.47902765776962,-7.001220459584147,-6.832867224235088,-7.167659070342779,-6.410240110009909,-5.417746176477522,-4.617910333443433,-4.659688458777964,-5.087164051365107,-4.119238355662674,-4.9044013153761625,-5.533815526403487,-6.5051997089758515,-6.100321410223842,-6.505941878538579,-5.838032663799822,-5.855485343374312,-6.036194936838001,-6.750919276382774,-7.682025155983865,-6.988110249862075,-7.710512022487819,-8.678311886265874,-8.616494205780327,-7.926297667901963,-8.76691503636539,-9.624926114920527,-10.584033226594329,-10.73961762804538,-10.803739822935313,-9.827294073067605,-9.074926374480128,-9.838489973451942,-9.287873110268265,-8.546739272307605,-8.938576568849385,-8.63305342849344,-8.919734178576618,-9.096816240344197,-8.937718753237277,-9.556018089875579,-10.438260747119784,-10.831462028436363,-11.516764570958912,-10.69112138170749,-11.383528655860573,-10.757423845585436,-10.54218389838934,-9.546826123725623,-8.740359846502542,-8.391882763709873,-7.986773110926151,-7.04038126533851,-6.417593825142831,-6.146887311246246,-6.616392478812486,-5.842892713379115,-5.074451299849898,-4.405947376973927,-4.1242938241921365,-4.714461427181959,-5.173913673032075,-4.6974096284247935,-4.13394835498184,-4.992523729335517,-5.142568844836205,-4.7903812397271395,-5.092972902581096,-4.259161400143057,-4.705230650026351,-3.879696350544691,-3.0935346470214427,-3.6632100003771484,-3.185263449791819,-2.3899774504825473,-3.1651234598830342,-2.9091298831626773,-2.2872572601772845,-1.694563771598041,-2.6572756534442306,-3.2903532083146274,-3.275002295617014,-4.2495688470080495,-5.087779063731432,-4.284569020848721,-3.8392451852560043,-4.045823798980564,-4.505109689664096,-4.365626050624996,-5.229854356497526,-5.968463237397373,-5.607299668248743,-6.558139327913523,-6.286572847981006,-6.987398640718311,-6.060219715349376,-5.898980069439858,-5.761550009716302,-5.571263278834522,-5.393286522477865,-5.309478587470949,-6.0514603652991354,-6.3598909033462405,-6.2411049185320735,-7.0559358964674175,-6.890029322821647,-7.471457984764129,-7.2629418396390975,-8.109292163979262,-7.495181379374117,-6.879378087352961,-5.920809837989509,-5.328206211794168,-4.915620596148074,-4.047201103065163,-3.2886409321799874,-3.229952390771359,-3.6592882736586034,-3.3291746550239623,-2.8504159837029874,-3.7414805218577385,-2.883824520278722,-3.8586081196554005,-3.54183067753911,-3.8493870068341494,-3.010968081653118,-3.1289378851652145,-3.5957774640992284,-3.526865134947002,-3.100416498724371,-3.6515775942243636,-2.935797759331763,-3.669118793681264,-3.7917980877682567,-4.2183700003661215,-3.239759646356106,-3.112399341072887,-3.492764004971832,-4.219971454236656,-4.963424094486982,-5.313976903446019,-5.496349475812167,-4.5469664093106985,-3.661713602952659,-3.852742239367217,-4.507171963341534,-4.111375250853598,-4.352792287711054,-3.855512539856136,-3.9300240436568856,-4.809677847195417,-5.4987699296325445,-5.039615214802325,-4.626132856123149,-4.538667564280331,-3.830788022838533,-3.1244950694963336,-3.3000937942415476,-3.9541077921167016,-3.382578826043755,-3.4828641144558787,-3.2362311696633697,-3.962658836040646,-3.5351944593712687,-3.9883007453754544,-4.418997381813824,-5.080361202824861,-4.259687200188637,-4.079547178931534,-4.118598116096109,-4.488630294334143,-5.116083996370435,-5.368370988871902,-5.258371852803975,-5.221650400198996,-4.2921422510407865,-3.6165800313465297,-4.3817422720603645,-3.542666107416153,-3.1373138395138085,-2.4056594423018396,-3.3880972270853817,-3.646268378943205,-3.8577878940850496,-3.029518253635615,-2.5703780823387206,-3.2206045435741544,-4.177608262281865,-3.1854399512521923,-3.9326069317758083,-3.6259910129010677,-3.1244547329843044,-3.030075539369136,-2.5926993447355926,-2.125671689864248,-2.479449402075261,-1.6715855449438095,-1.3605487160384655,-1.1948059503920376,-1.3053628322668374,-1.2173285246826708,-0.30068452982231975,-0.9822685015387833,-1.918246233370155,-1.66480223974213,-2.142591293901205,-3.058723084628582,-3.752206812147051,-2.9357178839854896,-2.1867741174064577,-3.147594766691327,-2.50391863565892,-3.3330089561641216,-2.954073288012296,-2.772175882011652,-2.9942966024391353,-3.4843787159770727,-2.98750392626971,-2.326808818615973,-1.9946802826598287,-1.5268200575374067,-1.843784810975194,-1.049386969767511,-1.9051455678418279,-1.4515001229010522,-0.5696321250870824,-0.2911794097162783,0.6906032068654895,1.1021522297523916,1.05081541929394,1.4843545714393258,1.1020625531673431,1.0348136448301375,0.35106492694467306,-0.5666513191536069,-0.15298150572925806,0.2539281537756324,0.8616079045459628,1.7684088717214763,2.203279174398631,1.8395248665474355,1.714169530197978,1.4440334001556039,1.6399938804097474,1.7663933373987675,1.3530314229428768,2.0373466457240283,1.7788679879158735,2.035372184589505,2.8653255770914257,3.7768812980502844,3.520007631275803,3.433297507930547,4.214663800783455,3.61847469676286,3.302749747876078,3.5716861714608967,2.8528586351312697,2.480838818475604,2.282891276758164,1.8978521996177733,1.8706299462355673,2.5181531966663897,3.379579470027238,4.09478090936318,4.121936112642288,4.104238179046661,4.548242639284581,5.106792705599219,5.931639027316123,5.65730368392542,6.423603629693389,5.839625467546284,6.399864861276001,6.64990630466491,6.926702988334,7.105337775312364,6.4518894869834185,7.260126873385161,8.181635606568307,8.520682895090431,8.598627398256212,7.880587060935795,7.32993006054312,7.18191609531641,7.35227727657184,7.484686739742756,7.481372850481421,6.521903718821704,6.033995180390775,5.928849961608648,5.2715277979150414,4.581792958080769,3.59368420438841,2.93851605290547,2.453764553181827,3.3554398571141064,4.017418642062694,3.934463023673743,3.040696185082197,2.100441259332001,1.2404813473112881,2.149208511225879,2.3415574617683887,2.493903680704534,2.933792350348085,2.309651339892298,2.620577970985323,3.463559429626912,3.9200950916856527,4.674752269871533,5.615883348509669,4.754747500177473,4.239458819851279,4.787186095491052,5.1134972386062145,5.766901545692235,6.4788171160034835,5.923743444494903,5.419065777212381,4.516191450878978,4.908579797949642,5.505704923532903,6.237075143493712,6.979581851977855,6.260324037633836,6.814317705575377,6.327435537241399,7.307238036766648,8.179089782759547,8.42900511296466,9.015092639718205,9.531226215418428,8.663674734532833,8.573248588014394,9.563602047041059,10.36562996916473,11.22042996995151,10.314796942286193,10.865368235390633,11.591649141628295,11.819594120141119,11.883075037039816,11.076822730246931,10.174603251740336,10.692180840764195,10.798906263429672,10.903562247753143,11.304375167470425,10.934363187290728,9.951454260386527,9.71528022037819,9.118990471586585,9.243524725548923,9.094507320318371,8.895953671075404,8.49716529250145,8.801188113167882,8.063717802986503,8.823983057867736,9.562760698609054,10.247392209246755,10.465055969078094,10.764505914412439,9.886013927403837,8.987497186753899,8.323064559139311,8.900837937369943,8.004250172525644,8.813899930100888,7.820783510338515,6.882541908882558,7.233058512210846,8.122906204778701,7.367274978663772,7.374099899083376,6.8121239873580635,6.740213111974299,6.584444719366729,7.248056032694876,6.779531429987401,7.6430316884070635,8.554134918842465,8.138717404101044,7.4767896393314,8.102986027020961,7.533307985868305,7.681797991041094,8.22787055047229,7.973705434706062,8.094063598662615,8.001345225609839,8.655918473377824,9.199607076123357,9.765376380644739,9.091647745575756,9.138335439842194,8.158466701861471,8.470174516085535,9.142400904092938,9.71908361883834,10.241360863205045,10.576393796596676,11.129981056787074,11.532976819667965,12.46319816308096,12.827362379990518,12.360562960617244,12.81329337414354,13.15387577144429,13.805421220138669,13.862738179508597,14.824278857093304,15.819935972802341,14.828714033588767,15.70366493286565,16.201592290773988,16.59111798601225,15.895715400576591,14.938829606864601,14.917702852748334,15.815587342251092,15.447222469374537,15.90986789483577,16.480382604990155,16.943861541338265,16.56150403385982,16.501975804567337,16.813088146969676,17.36214812239632,16.57625449774787,15.661156214307994,15.320253439247608,15.322703588753939,15.86976032005623,16.856567239854485,17.75626705912873,18.218855339102447,17.226842417847365,17.55632190546021,18.208188840188086,17.521125265862793,16.73684789519757,16.043699571397156,16.54873888520524,17.383865150157362,18.207038504537195,18.366435426753014,18.77596236113459,19.333829782437533,18.680902906693518,17.818220224697143,17.030222033150494,16.36430662497878,17.148485497105867,16.249865343794227,16.16388438595459,16.87207026593387,16.211917602457106,16.3637870317325,15.58039256092161,14.825121337547898,13.886899673379958,14.730140342842788,14.637740663718432,13.905299790203571,13.733914265874773,13.308075312525034,12.55645178258419,12.78482674434781,13.538430609274656,14.386011836118996,14.413230929989368,14.009341461583972,13.788904826622456,13.719732411205769,12.878222711384296,12.29014760395512,13.033528229687363,13.156662367284298,12.780843626242131,13.080030666198581,12.813515483867377,12.193581461906433,12.41781490901485,12.405295976437628,12.19509446900338,13.005604012869298,13.436140250880271,13.661769000813365,13.5819720053114,13.980951814446598,14.048270975705236,14.951956925913692,14.570387565996498,14.037297096569091,13.066350334323943,13.908552274107933,14.160426025278866,13.632410885300487,13.89267522469163,14.737266153562814,15.523968113586307,16.10524548543617,16.98460506927222,17.965983400586993,18.002359326928854,17.6016304618679,16.655851881951094,17.234402707312256,16.50742363417521,16.346181960310787,16.67370744701475,17.07320543145761,16.591342906467617,16.348027942236513,15.641443661414087,14.785468547604978,15.715331675950438,16.492501888424158,16.228735754732043,15.961726373527199,16.243049177341163,16.489501357544214,17.196904372423887,16.44152407720685,16.384417458903044,17.350553021300584,18.223420220892876,17.713890706188977,17.818289011716843,17.477032041177154,18.14266597945243,18.55785498721525,19.222839852795005,18.61371290544048,17.692750277929008,17.26966831460595,17.69983090274036,18.053560074418783,17.519065165892243,18.175510405097157,17.72710672020912,16.887007450219244,17.600944539532065,17.317157014273107,17.991326071787626,18.942903520539403,18.506572898942977,18.45587562583387,19.435623755678535,18.878300683107227,18.582877027336508,19.13626539101824,19.36655026767403,19.922510812059045,19.020704286638647,18.370639211963862,19.342548538465053,18.61176927667111,18.21947753848508,18.361328879836947,18.094992973841727,17.719105023890734,17.339792291633785,18.12254267418757,17.88682906702161,17.24834826029837,17.87337629450485,17.56180893164128,18.2269110661,19.032836080994457,18.42235444113612,18.167118784505874,18.172170110512525,18.502664767205715,18.623990116640925,19.39518062537536,19.453864614944905,19.690327455755323,19.990392049774528,19.249035495333374,18.41541543463245,18.484487432055175,17.509221258573234,18.12590231699869,18.129602120723575,17.175321236718446,16.50356851518154,15.762736080214381,15.764517221134156,14.884521329309791,13.903451381716877,13.245701098814607,13.53574207611382,12.744884041137993,13.318826242350042,13.468686996493489,13.99328402383253,14.627194443251938,13.797678752802312,13.361145143397152,13.705095435958356,14.700925147626549,15.164647656027228,15.018407621886581,14.918352951295674,14.378338356502354,15.093094737734646,14.230594275519252,13.627154878340662,13.009554288350046,12.445701359771192,11.858619611244649,11.180256447289139,12.001492593437433,12.213434192351997,12.196925277356058,11.316540317144245,11.982897561509162,11.346872109919786,11.393342392519116,10.799568871967494,9.905762629117817,10.1602034997195,10.923451545648277,11.405847899615765,11.06099402718246,11.665253383107483,12.28568356577307,11.471604137215763,11.067035318352282,10.635884399991482,10.1596350655891,10.999063168186694,10.179079162888229,10.21375410631299,10.688516557216644,10.6601760587655,9.812618448864669,8.94076774455607,9.61622456414625,8.729749081656337,9.100290420465171,8.105312142986804,7.519295905716717,8.029313339386135,7.413860653992742,7.887860780116171,7.19334926828742,7.637758137658238,7.567057375330478,8.211419303901494,7.741287850309163,8.110971584450454,9.09832337545231,10.074834522325546,10.562005380634218,10.520090584177524,10.282306904438883,9.355036326684058,8.398228829260916,9.091555150225759,8.78411240503192,8.61188526591286,9.03904074197635,9.296297306660563,9.287384683266282,8.860920859966427,8.242900581099093,9.027366051916033,8.896372455637902,8.518141011241823,8.68333727447316,8.239243700169027,7.370887218508869,8.039404797833413,7.61323860893026,7.5434006517753005,8.301575182471424,8.357098534237593,8.859651217702776,9.72495888080448,9.655532238073647,9.310139336623251,9.094605469610542,9.709421110805124,9.71193355647847,10.167348813731223,10.032543759793043,10.521029091440141,10.995049583725631,11.910858525894582,12.695082156453282,11.896339235361665,11.524169946555048,10.895632868167013,11.761480296496302,12.174221439287066,13.042140299454331,13.896417627111077,13.59220548113808,13.70845798542723,14.57725433120504,14.040606900118291,14.534862387925386,15.427171653136611,16.09212598297745,15.76010809885338,16.360574815422297,17.17824486689642,16.597586885560304,16.85993763897568,17.545175476465374,17.621866177767515,17.273746943101287,16.383767446037382,16.543004730716348,15.986182346008718,15.788739641197026,15.747218631207943,15.770731323864311,15.697689566761255,15.65725389169529,16.191160530783236,15.220006099436432,14.530241903383285,14.02342585241422,14.852671348955482,15.257506921887398,14.411370548419654,15.021498913876712,14.099345577415079,13.882787782233208,13.805077430792153,14.546703959815204,14.90213283803314,14.844084095209837,15.141966880299151,15.471351875923574,14.764707485679537,14.709673860110343,15.654223532881588,15.790860320441425,14.833997660782188,14.326270379126072,15.118472480680794,14.31697151530534,13.88747703237459,14.350832848343998,14.111395573243499,14.966925727203488,14.288979093078524,14.346677653957158,14.496113181579858,13.768069800920784,14.002619554288685,13.94278081227094,14.20606067078188,13.639609604142606,13.881228164304048,13.071483890991658,12.811215970665216,11.984586261212826,11.038453254848719,11.195402815006673,10.73545372998342,11.299592088907957,10.648425597231835,10.654196369461715,10.082788207568228,10.171974826138467,9.87520959880203,9.163133021444082,9.879085834138095,10.191117922309786,11.115938312839717,11.466517263557762,10.746092504821718,11.459881810005754,12.238232458475977,12.775093497242779,13.394907447509468,13.253712009638548,13.565968034788966,13.484135211911052,13.952492172364146,13.571973724290729,13.134839832317084,12.83053986961022,13.296809621620923,13.484142847824842,13.414612394291908,13.8777011227794,13.517073187977076,13.9018619148992,13.704514215234667,13.036460554692894,12.397231376264244,12.703610233031213,12.778980404138565,13.66485215863213,14.4113426678814,13.729008389636874,13.377348309848458,14.081156666390598,14.942852978594601,13.991386622656137,13.653753753751516,13.720204818062484,14.578612170182168,15.363614479545504,14.621323762927204,14.486481600441039,14.104201066773385,13.22556295292452,12.596005239058286,11.840363444760442,11.568426250945777,10.58347858581692,11.174892824143171,10.266925799660385,10.431771385483444,11.216582509223372,10.624457014724612,11.579343305900693,11.054688468109816,10.141877595335245,9.513455854728818,9.698979157488793,9.222674145828933,9.99705435987562,9.060678365640342,8.788886962924153,9.387626967392862,10.144880153704435,9.360017257276922,10.308809644076973,10.407658962532878,10.214507010299712,11.074809218756855,11.957858685404062,12.864626077003777,12.568999711424112,12.318114038091153,11.963856464251876,12.010407177731395,11.282138042151928,11.04984924569726,11.152500102296472,11.364033960737288,12.008249968290329,11.687438460532576,12.5409523146227,12.53203884838149,11.672907241154462,11.079248232301325,12.07460943935439,11.157962292432785,12.124537101015449,12.995612706057727,12.27283373568207,12.785380334593356,12.362398808822036,11.396887995302677,11.062803666107357,11.669062686152756,11.511923164129257,11.124836768954992,12.1205665608868,12.530685868579894,11.614917068742216,11.786856794729829,11.058100814465433,11.957530578132719,12.432632733602077,11.433992955833673,11.709759617224336,12.154039673507214,11.482625534757972,11.74992346810177,12.119950867723674,11.16650498798117,11.803652253933251,12.156806389801204,12.842676265630871,13.460975645575672,14.382056650239974,15.08271408174187,15.584949235897511,16.089203097857535,16.33610009867698,17.191764438990504,17.70416201930493,16.97657975833863,16.276472214609385,17.22383343288675,17.52048475248739,18.458789830096066,18.096415270119905,17.992097665090114,17.065991669427603,17.192521362565458,17.58680125605315,17.27489389013499,17.16428671265021,16.558080184739083,16.892065644729882,17.505751859862357,16.97605802025646,16.332404187414795,15.424480426125228,16.30209409352392,15.660945139359683,15.541951560880989,15.290519007481635,15.519742112606764,15.670358570292592,15.556798389647156,15.481246332172304,16.066124400123954,15.85774165019393,15.47739766119048,14.765365321654826,15.069808410014957,15.89317218074575,15.680790573358536,15.718873587436974,15.157895589713007,16.094554032664746,16.76352659938857,15.848367176949978,15.839694628491998,16.722731665708125,15.952963688410819,15.154836720321327,16.05944552225992,16.926645286846906,16.27856912324205,15.349122915416956,16.344852357171476,17.11554843792692,16.323204384651035,16.480467705521733,15.973685953300446,15.07067286176607,15.124457833822817,15.526734771206975,15.809351260773838,15.826625098939985,15.138855640776455,14.564691436011344,15.302679098211229,14.944197288248688,15.36720248311758,15.791702867951244,15.433675786945969,14.98302396852523,14.959922619629651,15.725708162877709,16.523617594502866,17.414897486101836,17.038710573222488,16.850164175964892,16.77151653263718,16.121236741542816,15.47751540178433,16.237549304962158,17.149237921927124,17.711386209819466,16.98135979520157,16.139789511915296,17.05426422227174,16.619352236855775,17.437285201158375,18.086770127527416,17.91394811263308,18.322410425636917,18.985596758313477,19.65590954804793,18.91657734103501,18.059362318366766,17.61714305449277,16.642198104411364,17.22143060620874,17.43735268851742,16.544336835853755,16.008295929525048,15.898871490266174,15.890176036395133,15.256520751863718,14.971239981707186,13.99968114355579,14.985997999552637,15.279007615055889,16.047813687007874,16.50321787316352,16.495859316084534,15.818708533421159,14.843484051059932,14.272599861491472,13.590210037305951,14.13837539870292,14.177752300631255,13.98297252226621,14.272516093216836,14.701042690314353,13.750534060876817,13.763636017683893,12.886450039222836,13.126083062961698,13.488097894471139,13.591071502771229,14.325387852732092,14.306571500375867,14.213432470802218,14.373452944215387,14.999143552966416,15.802786321379244,14.879936040844768,15.13937593717128,15.094346662051976,14.90482715331018,15.300403477624059,14.656342134810984,13.857592785265297,14.25733321486041,14.042324415408075,14.219777453225106,14.585986263118684,15.446401718072593,15.490497773513198,16.046968687791377,16.441229620948434,15.682878068182617,15.25491676107049,14.83813676983118,13.881038076709956,13.265951907727867,12.278942851349711,11.69688536413014,10.797219033818692,11.550595193635672,11.661362284328789,11.008880318142474,11.040885827504098,11.089048282243311,10.663182076532394,11.229441981762648,11.224738148972392,10.360333283431828,9.584795210510492,9.482553374487907,8.75112093333155,8.353614122141153,9.00336863193661,8.888743358198553,9.62712438032031,8.640618048142642,8.116923632565886,8.276288408320397,7.650087468791753,6.806636028923094,7.203096366953105,7.5244529829360545,7.898844488430768,7.2958149164915085,7.174271679017693,7.6436670259572566,7.524722669739276,8.140944961458445,8.50665674265474,8.132067317608744,8.051225722767413,8.537954576313496,8.12015722412616,8.243944380432367,8.538463647477329,8.122698040213436,7.57117504812777,8.506470339838415,9.4835311062634,9.942319470457733,10.128046982455999,10.284425867721438,11.255567260552198,11.546807091217488,11.16117583308369,10.777741385623813,10.27681197412312,10.36349414056167,9.792626486159861,10.313569972291589,10.902950937394053,11.467011636588722,10.962171510327607,10.021697049960494,9.114213943015784,8.827941645402461,8.620816424954683,9.484029728919268,8.552952630445361,8.614343117456883,8.9429612159729,8.556862078607082,7.808321634773165,8.741314542945474,9.121452275197953,9.73937572259456,9.395617795642465,9.118961551226676,8.823539876844734,9.465421463362873,10.41670455550775,10.617416214663535,10.421351021621376,10.2391581046395,10.502132873050869,10.465824802406132,11.166593224741518,11.659083163831383,12.59605862852186,13.528258754871786,13.273556850850582,14.225409868173301,13.32307760277763,12.522745213937014,12.624698545318097,12.82046860922128,12.77832872979343,11.959916782565415,12.778359828982502,12.97349918819964,12.818433588836342,13.424716489389539,14.386289499234408,13.392512348946184,14.337552702054381,13.729859089013189,14.051721415482461,14.146202499978244,14.130232700146735,13.383544101379812,13.877661955077201,13.644822766073048,13.098089466802776,13.418721346650273,13.01553791668266,13.125220014713705,12.845224893651903,11.870320895686746,11.200838674325496,10.585334891453385,9.905817505903542,9.675451355986297,9.051843237597495,8.365571369417012,8.622486506588757,9.054844742175192,9.096235645469278,8.580112685449421,8.893643077928573,8.872996383812279,9.656907403841615,9.367698688060045,9.39457702031359,9.120202842634171,9.70802244078368,10.12243687082082,9.449504892341793,10.168108189478517,9.353594850748777,9.944231776986271,10.889120171312243,11.384233449585736,11.327976775355637,10.918996659573168,9.977970147505403,10.562517025042325,10.257673099637032,10.966183373704553,10.834034177474678,11.323728699237108,11.285492423921824,11.303919996134937,12.111178115475923,12.494658245705068,11.540464198682457,10.958624110091478,10.109459965024143,10.64989244332537,10.334607384167612,9.591082953847945,9.490282400511205,10.343673047143966,10.532552441116422,9.80406147101894,10.553476286586374,9.587445891462266,9.844502170570195,9.59725423855707,10.111264371778816,10.942920412868261,10.64593511307612,10.066370110958815,10.013299711979926,9.301918295677751,10.12777476431802,9.381462125573307,9.886095305439085,9.330370847601444,9.523210981860757,9.803563120774925,10.474066350143403,9.649733669124544,9.094959119800478,8.749655893538147,9.232857370283455,8.629291107412428,9.49157721735537,9.517087082844228,8.694934292230755,8.830016007181257,7.881683326326311,6.933244435116649,6.189080068375915,5.531889554578811,4.809585662558675,3.9995736037380993,4.068076522555202,3.2491367836482823,3.0224587712436914,2.318615358322859,2.709110945928842,2.738782320637256,3.00443337764591,3.706669420003891,3.5597943952307105,3.246563556138426,3.488069886341691,2.7697054352611303,3.2834074408747256,3.62292971694842,3.0938971750438213,2.809617054183036,2.5330545036122203,2.6220089751295745,2.6995931561104953,3.406262641772628,3.126372612081468,3.7307891049422324,3.265383776742965,2.321180216036737,1.706277284771204,0.9587325393222272,1.0941746183671057,0.6568455416709185,0.8296403279528022,1.0097559671849012,0.09550838684663177,0.923801043536514,-0.05476033594459295,0.0904988874681294,0.23469595471397042,0.023531358689069748,-0.17798778042197227,0.6510512731038034,0.4215701441280544,0.24620243441313505,-0.4079805426299572,-0.4831879371777177,-0.05914479959756136,0.10510152066126466,0.14099997933954,-0.7840676559135318,-0.5737572396174073,-0.3285439102910459,0.5234820009209216,0.39747147262096405,-0.37041912600398064,-0.3778931926935911,-0.2801370220258832,-0.5562015362083912,0.2617099587805569,-0.7372652017511427,-0.6814289083704352,-0.6646398287266493,-0.7892520115710795,-0.041317665949463844,0.18307133531197906,1.1124785249121487,0.17766656493768096,-0.5426758523099124,-0.7280184016562998,-0.4005392277613282,-0.6745161614380777,0.29004924139007926,-0.6485123806633055,-0.46195431239902973,-0.9427306051366031,-0.7161850626580417,-1.0183500163257122,-1.9990241122432053,-1.3374936166219413,-0.9267626004293561,-1.2410825747065246,-1.1881838478147984,-1.2897788905538619,-1.818282556720078,-2.660507961176336,-3.2975516715086997,-4.185048259329051,-3.675095546990633,-4.458839489612728,-5.2204851396381855,-5.824562915135175,-6.638033172581345,-7.232181047089398,-7.971626117359847,-8.887947792652994,-8.890465384349227,-9.096871300134808,-9.201503561343998,-9.501945820171386,-8.818225238937885,-8.06544006569311,-8.501585624646395,-8.551028523594141,-7.640235367696732,-7.0643929415382445,-6.084591361694038,-5.56782358372584,-4.928071002010256,-5.606949823908508,-5.543728890363127,-5.841767670586705,-5.055176983587444,-5.649198259226978,-5.155131261795759,-5.6351662511006,-6.089579807128757,-5.3509159833192825,-4.75495365075767,-5.1733534671366215,-5.2840900626033545,-4.338682759553194,-3.5555257946252823,-3.5274011259898543,-2.819268111139536,-2.8208107468672097,-3.437026877887547,-3.3891249038279057,-4.145735803991556,-3.5937902978621423,-3.6861544493585825,-4.135097695980221,-4.975756824947894,-4.120848805177957,-4.201404272112995,-5.089300540741533,-5.677540058270097,-4.99648066284135,-4.122208715416491,-3.400020501576364,-3.414764162618667,-3.6960747968405485,-4.619056630879641,-3.702531332615763,-2.993100309278816,-2.190723286010325,-3.0849196179769933,-2.687268221285194,-2.0558072542771697,-2.474607517942786,-3.1063147033564746,-3.6101645343005657,-4.292667423374951,-4.507477912586182,-4.397667205892503,-4.477935063187033,-3.898122745100409,-4.30873565422371,-5.246655245311558,-4.463152299635112,-4.157390708569437,-3.704967377707362,-3.100522654596716,-2.75225488236174,-2.0783238406293094,-1.1245269835926592,-0.3682767120189965,-1.317216303665191,-1.0648814453743398,-1.9023256497457623,-2.7457340653054416,-2.542768709361553,-2.3357511940412223,-1.8330406472086906,-2.610188629012555,-2.2890971414744854,-2.284866868518293,-3.207918781787157,-3.0865747649222612,-3.223916323389858,-3.1047966610640287,-3.1652745911851525,-2.3759743603877723,-1.7269159071147442,-1.823775818105787,-2.2527581825852394,-1.269414161797613,-2.0933752129785717,-2.926634253002703,-2.5566483233124018,-2.439568253234029,-2.166109741665423,-1.4372362573631108,-0.48658226896077394,-0.21650803880766034,-0.49739061621949077,-0.3790482487529516,-0.31434898963198066,-0.7550875027664006,-1.1499780220910907,-0.6103009753860533,-1.3148411568254232,-1.8183064362965524,-1.9864257615990937,-2.8781918501481414,-2.530105287209153,-3.181596415117383,-2.521996807307005,-2.6214009150862694,-3.4153777989558876,-3.4319783416576684,-4.077001256868243,-3.284527065232396,-3.2353473249822855,-4.113566966727376,-4.156657381448895,-4.7492013750597835,-5.227458346635103,-6.072589879389852,-5.4375438103452325,-6.274639039766043,-6.368862039409578,-5.759514666162431,-6.543303604237735,-7.3127457476221025,-6.325244219042361,-5.670788800809532,-5.2214908096939325,-5.315737140830606,-5.606508519034833,-5.75999014871195,-6.379281081259251,-5.9713266347534955,-6.173059715423733,-6.334360797889531,-6.626359147951007,-6.107688871212304,-6.313282619230449,-6.807985199615359,-6.846942786127329,-7.358085161540657,-7.8181647644378245,-8.567067897412926,-9.451013984624296,-10.078111385460943,-9.769530342426151,-10.575314863119274,-9.629225185606629,-9.863316676113755,-9.299662216100842,-8.535092656034976,-7.957431548740715,-7.056658042129129,-7.5906133889220655,-8.197818563785404,-7.613810306414962,-7.980702337808907,-7.7399136195890605,-8.49850238719955,-8.370267971418798,-8.190151868388057,-8.01231129001826,-7.594904491212219,-7.328640672378242,-7.217595317866653,-6.395031013060361,-6.319867774378508,-5.346690931823105,-4.611160270404071,-4.329146355390549,-3.7669210471212864,-4.303996013477445,-3.5413198326714337,-2.803194615524262,-1.9263147255405784,-1.5016201632097363,-0.8248310266062617,-0.7201632326468825,-1.50983099732548,-0.6595333027653396,-0.7775890924967825,-0.35524313198402524,-0.5148687115870416,-0.7084324611350894,0.09433431830257177,-0.0597098208963871,0.9288861914537847,0.08313648775219917,0.3160190540365875,-0.4812693581916392,-0.684011367149651,-0.3194613065570593,-0.953715450130403,-0.27237887727096677,0.029304697643965483,-0.05775968497619033,0.09485320840030909,0.9056420722045004,0.8153055026195943,0.8644954338669777,1.6344079775735736,2.3106703581288457,2.8915742402896285,1.9687540354207158,2.1427705357782543,1.9151932233944535,1.5898488066159189,1.6251681642606854,2.1797383669763803,3.061683004256338,3.34073927719146,3.820429268758744,4.410494952462614,4.918673339765519,4.005209174007177,4.012716588098556,3.1473371470347047,2.4813737496733665,3.325574554502964,4.11736063612625,5.084024135954678,4.2355285552330315,5.085128053091466,4.266749625559896,3.9687287197448313,4.926667001564056,4.485148483887315,3.616276376415044,3.264123724307865,2.2714226585812867,2.005526235792786,2.9904770543798804,3.4551518275402486,2.5774331716820598,3.296295112464577,4.275925926864147,5.154290865175426,4.3449234729632735,4.968893113546073,4.008300896733999,4.3569688578136265,4.283859628718346,4.84726290544495,5.288802827708423,4.6189353335648775,5.165922884829342,4.846078410744667,5.834414497949183,6.728848455008119,7.380494893994182,7.231566530652344,7.791002792306244,8.629727256018668,9.598664799239486,8.625209377147257,9.368747109547257,9.298306017182767,9.326796597335488,8.951581242494285,9.579299023840576,10.227376422844827,10.617292710579932,9.841115011367947,10.153502928558737,10.108520176261663,9.94018225139007,9.478466075379401,9.502262689173222,10.483728867024183,10.995661686174572,11.519754953682423,11.279938442632556,10.537060176488012,11.291820673737675,10.573560256045312,11.44914026465267,11.21756107127294,11.430614970158786,11.151791347656399,10.24776150751859,9.499284381512552,10.152768560219556,10.516950456425548,11.201205513440073,11.155434881802648,11.711104320827872,11.979124813806266,11.644528881181031,10.91274840803817,11.120027098339051,10.978164822328836,11.467268385458738,12.329357827082276,13.180429714731872,12.594629352912307,11.815111917909235,10.892893988173455,11.671061653178185,11.156452142167836,10.77815033402294,11.4527033646591,11.672165116295218,10.695598685182631,9.89783603977412,9.725753227248788,9.995798370800912,10.714020901825279,10.474322731606662,10.91898109903559,11.523179748561233,10.873621911276132,10.61332269012928,10.236251058988273,9.972965963184834,9.058258288074285,8.50489641726017,8.528381133452058,7.695291366893798,8.207954437006265,7.739184056408703,7.6630578939802945,6.722924084868282,6.717140330933034,6.834148965775967,7.623018900398165,7.180881767068058,6.750506589189172,6.766942858230323,6.977888337802142,6.881834270898253,5.921161362435669,6.8532986105419695,6.298644391819835,6.5083749569021165,6.974312882404774,7.186448159627616,7.665341502521187,7.0007686843164265,7.427168969530612,6.559894465375692,6.580349302385002,6.115761475171894,6.20672426186502,6.38642265368253,6.930478199385107,7.196400310378522,6.391808999236673,5.63575997389853,5.687627379316837,5.346743868198246,5.296699667349458,4.709360231645405,4.850727340206504,5.293930411338806,6.014040131121874,6.789468516595662,6.148999372497201,7.054694474674761,6.475497167557478,5.597819201648235,4.880460585933179,5.024518564809114,5.1143149537965655,5.927913448307663,5.0322360037826,5.4761202349327505,6.267887643538415,5.860655270051211,5.35480285063386,5.603337155655026,6.035126872360706,6.652479796670377,5.991509228944778,6.381521972827613,6.9348100405186415,6.271694965194911,6.903817999176681,6.4580156416632235,6.989206713158637,6.783807914238423,6.7434609634801745,5.887611564714462,5.8763855108991265,5.407921575475484,5.022576774936169,4.198698630556464,4.9200454275123775,4.126720387022942,4.332670208066702,3.5306168305687606,2.551470852922648,2.635750275105238,3.5958125037141144,3.271194434259087,3.7003078456036747,4.136309222318232,3.748878745827824,3.4254501024261117,4.058504082728177,4.706512741278857,5.183243966195732,5.753783361520618,5.8727267240174115,5.647755143232644,4.806379044894129,5.3066419386304915,5.183156041894108,4.408596311695874,4.490880319382995,4.455347929615527,5.167169047519565,5.949837761931121,5.288970013149083,5.233433224726468,5.051394912879914,5.501087608281523,5.758397676050663,5.9842113591730595,6.634445020463318,7.5071984035894275,8.341808787547052,8.048781557474285,7.160204568412155,7.118670715950429,6.287189258728176,5.744116963353008,5.182165995705873,5.421789857558906,4.856026159599423,5.6687001516111195,4.8410612707957625,4.644063882064074,5.260114473290741,4.791734446305782,4.600162100978196,4.313316157087684,4.692564823664725,4.371704677585512,5.350428323727101,5.75441437587142,4.981158360373229,5.434019528795034,4.521347020287067,3.5615094350650907,4.406471289228648,4.958759383764118,4.647309713065624,4.845466513186693,5.363897476345301,4.781006020959467,4.43757036421448,3.5196518884040415,4.074937484692782,3.7299973466433585,4.448541667778045,4.926161585375667,4.888431042432785,4.0620107636787,3.629083041101694,3.543359572067857,2.790890938602388,2.316217628773302,2.7686465331353247,3.0894114510156214,3.7095608874224126,2.757895750924945,2.9035144853405654,3.6975769251585007,4.222563560586423,4.7772007691673934,4.382558486890048,4.866250162012875,5.3032480319961905,4.45294543588534,3.5074904458597302,4.400949127972126,4.064355125185102,3.257732062600553,2.8134460411965847,2.7779160193167627,3.745055708102882,2.801612594630569,2.4034319552592933,3.3660672334954143,3.244312772527337,4.084160577040166,3.3679520525038242,2.397854471113533,1.7743300255388021,1.012790690176189,1.2102918205782771,1.888524056877941,2.5300629138946533,3.431197503115982,2.7239199397154152,3.130020594689995,3.484056073706597,4.366056484170258,3.8082359614782035,3.982839865144342,4.562842578161508,4.005575944669545,3.159972013439983,2.1720813382416964,1.844420359004289,2.706361962016672,1.972318354062736,1.4389367252588272,1.2132380153052509,1.1028864402323961,0.632079656701535,0.9908128483220935,0.5387777001596987,0.9622174357064068,0.09809913486242294,-0.0705999443307519,0.6454702336341143,-0.22964237816631794,-0.49144360795617104,-0.6020586020313203,-1.4790792823769152,-1.293689711485058,-0.30233584297820926,-0.0762140927836299,0.26523505756631494,0.8362242323346436,-0.11222444660961628,-0.7728742095641792,-0.2464034198783338,0.05012715421617031,-0.21056283824145794,-0.28125584963709116,-0.58026570873335,-0.3513837098143995,0.5527479662559927,0.1253947732038796,-0.42343829572200775,-1.1001673196442425,-1.7131645008921623,-1.4793913513422012,-1.9310192479752004,-1.8043907945975661,-2.5634514070115983,-1.8040117495693266,-2.492394211702049,-1.6711927955038846,-1.9805571273900568,-2.3446949259378016,-2.199798427056521,-1.4620138937607408,-0.6307762037031353,-0.8850717507302761,-0.7135636834427714,-0.9971806136891246,-1.0699018011800945,-0.45899587124586105,0.3388746320270002,0.7482266193255782,0.5065350020304322,0.3354096319526434,0.028374410700052977,-0.7818703558295965,-0.01749569270759821,-0.9024511454626918,-1.8729685968719423,-2.665195203386247,-2.1215531206689775,-1.2940306849777699,-1.7698178705759346,-2.5804218649864197,-2.3814611877314746,-1.770875156391412,-1.1139783654361963,-0.49964763736352324,-1.4163755332119763,-1.137254293076694,-1.0641237865202129,-0.7956511778756976,-1.073413547128439,-1.0886280294507742,-0.09579099481925368,0.03664212301373482,-0.5101060168817639,-1.16577168693766,-0.580911610275507,-1.4901369400322437,-1.2861095634289086,-2.241690050344914,-1.4606717615388334,-0.49334854958578944,-0.2688769828528166,-1.0311794877052307,-1.8019034531898797,-1.937410679180175,-1.8340024100616574,-1.8970404700376093,-2.004195338115096,-2.3258063290268183,-2.1218118318356574,-2.3351346305571496,-2.436705458909273,-2.3239568364806473,-3.1731671425513923,-3.742739998269826,-4.363628331571817,-4.849578612018377,-5.557706123683602,-4.799934911541641,-3.807533035520464,-3.639824479352683,-4.250239069573581,-3.800906320102513,-4.6397806238383055,-3.940020710695535,-3.805972778238356,-3.336210855282843,-4.32454456249252,-4.184152687899768,-4.5550920609384775,-3.8469340037554502,-3.1881697131320834,-2.84539776109159,-3.7821866567246616,-4.343010680284351,-4.326098234392703,-3.621691034641117,-4.402435373049229,-4.363610469270498,-4.14945364324376,-4.410409186035395,-4.131940332241356,-3.717617739457637,-4.400385197717696,-4.4638951402157545,-4.452542531304061,-3.853755676653236,-2.905560272280127,-2.316382593009621,-1.8287594872526824,-2.4339646850712597,-2.024282539729029,-1.3998904572799802,-0.4413243397139013,0.10092043969780207,-0.1298482995480299,0.43328398559242487,0.18963492615148425,-0.6440255609340966,-1.595765057951212,-1.0692250826396048,-0.42939569242298603,-0.24956134799867868,-1.2274724333547056,-0.3016218007542193,0.2243359130807221,-0.12788425805047154,-0.30492712231352925,-0.4751852359622717,-0.5136322574689984,-0.47525703301653266,0.3491414492018521,-0.11608940735459328,0.26813384890556335,-0.4398030946031213,-0.24764561792835593,-0.7123975516296923,-1.5634567090310156,-1.3553088423795998,-1.0401975852437317,-1.1913092588074505,-0.7847956018522382,-0.9441033126786351,-1.7590048052370548,-1.9284422155469656,-2.1566291050985456,-2.9991617258638144,-3.140176028944552,-2.2489820034243166,-2.5839270441792905,-2.3913893131539226,-2.7401571664959192,-2.8877649465575814,-2.897383267059922,-2.0443518245592713,-2.995069342199713,-3.3785620178095996,-3.2240926059894264,-2.45377660356462,-2.7093447130173445,-3.2668003803119063,-3.0087346169166267,-3.6763213500380516,-3.989236350171268,-3.1683478616178036,-3.211952537763864,-2.3120776591822505,-3.193834390025586,-2.83056575153023,-2.65080343792215,-2.8398904926143587,-2.7684633443132043,-3.392000291030854,-4.3705296930857,-4.134513461962342,-3.269167934078723,-4.242578020319343,-5.082350301090628,-4.718929141759872,-5.446968030650169,-5.020288894418627,-5.332041040062904,-6.0712431450374424,-6.555548232514411,-7.430418873671442,-6.642363844439387,-6.142688561696559,-6.2656382247805595,-7.241469610016793,-7.3223514668643475,-7.886605577543378,-6.961473722010851,-7.543745326809585,-8.110737617593259,-7.502414238173515,-6.66137807816267,-6.913833576254547,-7.7322648759,-7.854514034930617,-7.997781835030764,-7.950588089413941,-7.333519622217864,-6.985694116912782,-7.551151542458683,-7.8747424101457,-8.170161987189204,-7.630207171663642,-8.567243658006191,-9.081514474004507,-8.649156148079783,-8.793506127316505,-8.540148304309696,-8.58730724034831,-8.13081589806825,-7.540027464274317,-8.34523006156087,-7.505977210123092,-7.490492633543909,-7.834752049762756,-8.158983607310802,-7.920685963705182,-8.28632429940626,-7.876191936898977,-7.909275666344911,-7.416846419218928,-8.316019105259329,-8.006130387075245,-7.769640839658678,-8.168862469028682,-9.062529306393117,-9.445203190669417,-10.20608356129378,-9.870160851627588,-10.720935585908592,-11.387467195745558,-10.9632847327739,-11.821590037550777,-12.322863771114498,-12.130988048855215,-11.159568906761706,-10.908322835806757,-9.937050632201135,-9.873410775326192,-10.747941677924246,-10.843376128003001,-11.400791328400373,-10.96218881988898,-11.957235135603696,-11.6806950410828,-10.994402194861323,-10.792522275820374,-11.777051158249378,-11.678345836233348,-12.068834681995213,-12.099662000779063,-11.939815828111023,-12.782175866421312,-13.771079107187688,-14.585541812237352,-14.73961551208049,-14.061160481534898,-13.322764413431287,-13.452828913927078,-13.797652072738856,-13.629582448862493,-13.948369608260691,-14.816895581781864,-15.564532881136984,-15.579794678837061,-16.090954804793,-17.041402135509998,-16.667825439944863,-17.168800878338516,-17.651780477259308,-16.826133031398058,-17.045937558170408,-17.642344889231026,-17.684325528796762,-16.693245264235884,-16.968475692905486,-17.6691121654585,-18.09694171976298,-18.35827805707231,-19.328685923013836,-20.130401972215623,-21.069046579301357,-21.103593157604337,-20.39487529406324,-21.20228289347142,-21.127012012992054,-21.611801189836115,-22.2376208412461,-22.69427491677925,-22.816150843631476,-23.040244738105685,-22.783061598893255,-23.269398426171392,-23.10521548287943,-22.25077971117571,-22.294950591865927,-22.11569447396323,-21.66464362712577,-21.76651470735669,-22.18399474211037,-21.568115236237645,-20.88389278994873,-19.94607785437256,-20.242849446367472,-21.11474440759048,-21.719597963616252,-20.827842843718827,-20.89624817110598,-20.295691867824644,-19.895524667110294,-19.079682795796543,-19.542904638219625,-19.027940049767494,-19.907331452704966,-20.819864619057626,-20.367608171422035,-20.12910287035629,-19.546265850774944,-20.15019520232454,-19.249901801347733,-18.52554421732202,-18.77265327470377,-18.49523802381009,-17.980815449729562,-17.370746066328138,-17.423334589228034,-17.8453509346582,-17.406650783028454,-16.638418700080365,-16.319848991930485,-17.13229914288968,-17.590711574535817,-17.624207289423794,-16.667808816302568,-15.850097715854645,-15.558502919971943,-15.044191323686391,-15.647113415878266,-16.178165384568274,-16.66815261822194,-16.438452953007072,-16.59907728433609,-16.023212537169456,-15.527122511994094,-16.50575928669423,-17.370957146398723,-18.268448860384524,-18.845924282446504,-18.953357885591686,-19.60831106826663,-19.812686558347195,-19.73688547546044,-19.024266253691167,-18.72860747622326,-18.35385587438941,-19.142664527520537,-20.066706089302897,-19.6110177077353,-20.118575806729496,-19.950420012231916,-19.311691186390817,-19.231237228494138,-20.1542381006293,-19.51523234276101,-20.270940595772117,-20.003603076562285,-19.0937480465509,-19.800611335318536,-19.03651789808646,-19.393068536184728,-20.199930763803422,-19.37480189325288,-19.705244030803442,-20.083111786283553,-20.05491506913677,-19.831180471461266,-19.664621084928513,-19.64421181147918,-20.25302817625925,-20.699803052470088,-20.012456354219466,-19.440853290259838,-18.77623706869781,-18.780633113346994,-18.258283430710435,-17.28087883023545,-16.390429105143994,-15.553022193256766,-15.259904959704727,-15.433483852539212,-14.472337883897126,-14.147510711569339,-14.256465571001172,-14.05451323883608,-13.764877993613482,-13.058499491307884,-12.550819114316255,-13.06134631857276,-13.261265001259744,-12.810660480055958,-13.80743849510327,-14.311850917059928,-14.18186094192788,-13.444625458214432,-12.895283410325646,-12.1588940853253,-11.253129584249109,-11.094711011275649,-11.36958230054006,-11.286513300146908,-11.63777966517955,-12.570528552867472,-13.051861987449229,-13.590599074494094,-13.91676375688985,-14.627050878480077,-14.203519566450268,-14.500619743950665,-14.317082862835377,-13.960634134244174,-13.751276796218008,-13.6912777624093,-14.274748518597335,-15.239471665583551,-15.672299427445978,-15.755012848880142,-15.526289204135537,-15.43104437040165,-15.551256069913507,-16.301178677473217,-17.079927789978683,-16.91597163770348,-17.744664424099028,-18.655065660830587,-17.92736308183521,-18.158018690068275,-17.77230556961149,-16.935359574854374,-17.464361949358135,-17.192870867904276,-16.291336889378726,-16.407260902691633,-16.99810714740306,-16.399745429866016,-15.630303452722728,-15.623238388448954,-15.527154261711985,-14.566637922078371,-15.204523234628141,-14.698845963925123,-15.218305920716375,-15.31374638946727,-14.63053281744942,-14.53431349992752,-14.605750488117337,-14.021472975611687,-13.394955990370363,-12.789286659099162,-13.008876200765371,-12.085879401769489,-11.318960165604949,-10.745927946642041,-11.174354918766767,-11.618453402537853,-11.49126885831356,-12.230423081666231,-13.084406450856477,-12.382975555025041,-11.807797360699624,-11.531193295959383,-11.443274066317827,-10.95812616404146,-11.378558977972716,-11.552752892486751,-11.753588968887925,-10.958231348078698,-10.837398509960622,-10.832281716167927,-9.937615324743092,-10.290927648544312,-10.345097762998194,-11.180631820578128,-11.521162077318877,-11.523781572002918,-12.116546287201345,-12.835969733074307,-12.733873338904232,-11.902328784111887,-11.18912222282961,-10.765003239735961,-10.37247870862484,-9.571917153894901,-9.320720435120165,-9.206555798184127,-9.763959640171379,-10.461628748103976,-10.188961828593165,-9.531119623687118,-9.169673123396933,-8.77279529068619,-8.619437572080642,-8.592384388204664,-8.906467739492655,-9.048301267903298,-8.760868647601455,-8.657121310941875,-7.6943339430727065,-7.6841470915824175,-7.372155539225787,-7.024067532736808,-6.971370229963213,-6.618893792387098,-5.687827967107296,-6.139036478009075,-5.32701798947528,-4.511164757888764,-3.6834426699206233,-3.446097746025771,-3.95335764111951,-3.4586372985504568,-3.6574058760888875,-3.2197169144637883,-3.035819416400045,-3.741289183497429,-4.302590560168028,-4.378253104165196,-5.362194374669343,-6.348401118069887,-6.314122551586479,-6.090523191727698,-6.862770511768758,-6.948484804481268,-7.708667572122067,-8.29238165030256,-8.400059890933335,-8.766655271407217,-7.853543764445931,-7.472061872947961,-6.592930198647082,-6.835411245934665,-6.562085105571896,-6.424417471047491,-7.334833023604006,-6.430212631355971,-6.11450468050316,-6.3096036445349455,-6.582705254666507,-7.334826205857098,-7.450475683435798,-7.336290834937245,-6.765058135613799,-7.570739364251494,-8.528022930957377,-8.369514606893063,-7.880830336827785,-7.657801751047373,-8.410391793586314,-7.597746141720563,-7.2289052829146385,-6.279132577590644,-5.600005995947868,-4.747160416096449,-3.831793696153909,-3.985815904568881,-3.610465121921152,-3.3619197024963796,-4.348823729436845,-4.214755053631961,-4.951281943824142,-4.8122195191681385,-5.752426888793707,-5.684335915371776,-5.067514633759856,-5.704519537743181,-5.112306239549071,-6.072453985456377,-5.564696223009378,-6.157832000870258,-5.989293860737234,-5.733061955776066,-6.721821256913245,-6.345817167311907,-6.561529661994427,-7.188552605453879,-6.2759153842926025,-6.784385579172522,-6.155261372681707,-6.674280903767794,-6.199860343243927,-5.437181279063225,-4.481306246481836,-4.911374228075147,-3.937406129669398,-3.506428620778024,-4.258069337811321,-4.724408650305122,-5.152067188639194,-5.652814152184874,-6.357577982824296,-6.256491085514426,-5.5082390629686415,-5.617362001445144,-6.307901902124286,-5.4376947660930455,-5.470632436219603,-5.022079920396209,-4.799499386921525,-4.450355633627623,-4.378808161243796,-4.274474257603288,-3.896140507888049,-3.497021655086428,-3.9873375934548676,-4.568517604842782,-4.638724584132433,-5.503884865436703,-6.180657291319221,-5.917433040682226,-6.018221745733172,-5.9092110600322485,-5.983398726209998,-6.944812554400414,-7.220828496851027,-7.60292195668444,-6.890196604654193,-7.603214229922742,-6.749111995566636,-7.483129990752786,-7.180343963205814,-7.735338662285358,-7.882438792381436,-7.49045698903501,-6.887859956827015,-6.334447015542537,-7.211260945536196,-8.094376628752798,-8.784638615325093,-9.478780233301222,-9.025121319107711,-8.81684439117089,-8.703457151073962,-8.888807291164994,-9.397035005502403,-9.356520584318787,-10.113565687090158,-9.950853039510548,-10.387201662641019,-10.905679873656482,-11.880328866653144,-11.457773501984775,-11.942363418173045,-12.050668985117227,-11.657416929956526,-12.13339457521215,-12.996338469907641,-13.205899908673018,-14.00555011909455,-14.499769794754684,-15.18447484029457,-15.700266224797815,-14.772166963201016,-14.271863444708288,-14.811959036625922,-14.899540517479181,-15.605889946687967,-16.331103132572025,-16.09425162244588,-16.72824866231531,-16.323115625884384,-15.644115400034934,-15.671969116665423,-15.626794528681785,-15.551334423478693,-16.299882916733623,-16.373315433971584,-16.27009867457673,-15.940297113265842,-15.92478681448847,-15.12133554322645,-14.635226520709693,-15.469977720174938,-16.240982093848288,-15.501771059352905,-14.656571515835822,-14.580804045777768,-14.720519253052771,-14.41237525967881,-14.64653474278748,-14.189971681218594,-14.81599733652547,-13.941326363012195,-14.364356154575944,-14.729728853795677,-15.419834449887276,-16.088168871123344,-16.382868151646107,-17.179089829791337,-17.068215526640415,-16.836894583888352,-16.494909146800637,-16.182617460377514,-15.525496517773718,-14.750988250598311,-15.072808527387679,-15.734607610851526,-14.767908724490553,-14.036265765316784,-14.190463746432215,-13.54110197443515,-12.590553787071258,-11.807481522671878,-12.230412777978927,-11.380862703546882,-10.662805992178619,-9.74133000895381,-9.52529091341421,-9.855848672799766,-10.212695487774909,-10.480485022533685,-10.460225651506335,-10.57565546547994,-9.772938731592149,-9.50835317792371,-9.947604785207659,-9.127314942423254,-9.482468176167458,-8.524712975136936,-8.54416700731963,-8.454208502080292,-8.369437631219625,-8.779325655195862,-8.14972709864378,-8.686974831391126,-7.955377228092402,-7.281742476392537,-6.785963436122984,-5.911085714120418,-5.837857126258314,-5.2688613520003855,-6.018574497662485,-5.453556910157204,-6.252240642439574,-5.79174211807549,-5.047915986273438,-4.8895645015873015,-5.175620080437511,-5.388361969962716,-6.314879585523158,-5.590028470847756,-6.582140721380711,-6.484802135266364,-7.380654220934957,-7.044364499859512,-7.967254337854683,-7.475409957580268,-8.162312168627977,-8.604854658711702,-8.46500098053366,-9.249753667972982,-9.29220364196226,-9.907801226712763,-10.415901934728026,-9.5510438173078,-9.246881994884461,-9.00607384275645,-8.68572593620047,-8.626520291902125,-7.785196840763092,-8.154430943541229,-7.467832731548697,-7.618986281566322,-7.735672540497035,-7.38948235893622,-7.219906731043011,-7.756277632899582,-7.46544494247064,-7.981125321239233,-7.447585147339851,-8.396448593121022,-7.564364278689027,-7.139876235742122,-7.240683857817203,-6.273758768104017,-7.216695015784353,-7.21652344474569,-7.065964199602604,-7.750260001514107,-7.17492466699332,-6.196793867275119,-7.031595446169376,-7.1726098782382905,-6.477588378358632,-7.2580581633374095,-8.19951346423477,-8.545484357513487,-9.526120631024241,-10.072321095038205,-9.810799282975495,-9.173571849707514,-8.490860769990832,-8.968645739369094,-9.425837934482843,-10.124026288278401,-9.173222695011646,-9.366079239640385,-10.207141669932753,-11.139308585319668,-11.795325039885938,-10.929414707701653,-11.532134556677192,-12.138782018329948,-12.881436515133828,-13.88128785835579,-13.986709075514227,-13.12008251203224,-13.052843037992716,-12.169566779397428,-11.835970803629607,-11.552535551134497,-12.391832161229104,-11.921280169859529,-11.698801073711365,-10.895370995625854,-10.912398695480078,-10.741975081153214,-10.725981744471937,-10.45226414501667,-10.798317187000066,-10.914557785261422,-11.805023493245244,-11.051759868394583,-10.817016941029578,-11.48318232409656,-11.768531889189035,-12.186586768832058,-12.830113757401705,-12.219498882535845,-11.71932998066768,-12.683095313608646,-13.510324598290026,-13.856459455564618,-14.771694015245885,-14.407910100650042,-13.700003025587648,-14.684063342399895,-14.808416635263711,-15.187041128519922,-14.497537044342607,-15.338651347439736,-15.559335516765714,-16.240598535630852,-15.655651265289634,-15.717335660941899,-14.829572122078389,-13.852123233955353,-14.624349860008806,-14.784544948488474,-15.463476949371397,-16.353143928106874,-15.580847007222474,-15.083124267403036,-15.467160649131984,-15.16225769650191,-14.48427052050829,-15.25798807758838,-15.3183129071258,-15.261640112381428,-16.174621833954006,-15.751765606924891,-16.520265383645892,-15.85726073058322,-16.629821158014238,-16.4279908509925,-16.204617304727435,-15.368484031409025,-15.680058907717466,-15.687774029560387,-15.059813864063472,-14.929735652171075,-14.20638234121725,-14.01809597434476,-14.990447412710637,-14.622124056331813,-14.583769793622196,-15.207984969485551,-14.2320445808582,-14.30233400547877,-13.943712726701051,-14.061135618947446,-14.324019398074597,-15.23102605715394,-14.782842825632542,-15.56077286740765,-15.491349961608648,-16.046180897392333,-16.395358186680824,-16.561671493574977,-16.27604961534962,-17.230634541250765,-16.538399070501328,-15.757292327005416,-15.812856085598469,-16.541283930186182,-15.59501466108486,-15.889019127003849,-15.64656227082014,-15.835769621655345,-15.007196799386293,-15.106176392175257,-14.169165856204927,-14.038134541828185,-13.78858423884958,-14.471768133342266,-14.410386260133237,-14.132481589913368,-13.567795126698911,-13.878608047496527,-14.385482252575457,-15.08593566995114,-16.046897161751986,-15.654088732320815,-15.700245504733175,-14.713384251110256,-14.528822464402765,-15.397334034088999,-16.13417219882831,-16.550725928042084,-15.568401861004531,-14.956986310891807,-15.860554108396173,-16.07757179159671,-15.763780845794827,-16.30029076198116,-16.67441989062354,-16.18426141096279,-15.269848613068461,-14.31905941478908,-14.815417177043855,-15.29999681795016,-14.712693853769451,-14.581894982606173,-14.946500029880553,-14.181466290261596,-14.420427715405822,-13.926807252690196,-13.781732795760036,-13.253384081181139,-13.497098647523671,-13.343019836116582,-14.041920530144125,-14.249512834940106,-14.698946924414486,-13.781751179601997,-14.212307016830891,-14.318767883814871,-13.427904265467077,-12.862429598812014,-12.278819696977735,-13.228145486675203,-12.539506566245109,-12.409188435412943,-13.022185059264302,-12.528344467747957,-12.996882479637861,-12.03219602489844,-11.732003918848932,-11.953600998502225,-11.754055371042341,-12.297785247676075,-11.494619823992252,-12.430393518414348,-11.578795078210533,-12.160025318618864,-12.286990508902818,-11.498407249804586,-10.808673671912402,-10.32449395256117,-11.152878365013748,-10.87755340570584,-11.834482720587403,-11.939042062498629,-11.314830692019314,-10.556642090901732,-10.73208345239982,-11.674184102099389,-11.765620619989932,-12.322409457527101,-12.98803856689483,-13.111570739652961,-12.124148583970964,-12.643705499824136,-12.27285438356921,-12.199053548276424,-11.956363439094275,-12.208258162252605,-12.345489881001413,-13.055153394583613,-12.17228049179539,-11.69759371317923,-11.453234194777906,-12.384481495711952,-12.714208109304309,-13.358479406218976,-13.780706771183759,-12.894587567076087,-13.15484091732651,-12.314376959577203,-11.407904289197177,-11.145272827707231,-11.306606192141771,-10.84909934969619,-11.710898076184094,-11.108672868460417,-11.4907332547009,-10.847745783627033,-11.155960741452873,-11.201068300753832,-11.44109204178676,-12.363050907850266,-11.62992273690179,-12.293980014510453,-12.15375229390338,-13.062883681617677,-13.330189789179713,-12.842138653155416,-13.3610027609393,-13.6589259612374,-14.340456577483565,-14.521305337082595,-13.924323834478855,-14.359232380054891,-14.909375293646008,-15.409734117332846,-16.22815769398585,-16.066200563218445,-16.00509198056534,-15.162576199974865,-15.171086364425719,-14.77204591827467,-14.483438324183226,-13.846874308772385,-13.764996973332018,-14.483533261343837,-15.209196327254176,-14.470171456225216,-15.201892578043044,-15.22457825904712,-15.829832596238703,-15.90715761249885,-14.926374307833612,-15.768225291743875,-15.36893254565075,-15.256594221107662,-16.192325454205275,-16.137909819372,-15.293527469038963,-14.392835626378655,-14.697301256936044,-14.465505947824568,-14.83138475427404,-15.24094464816153,-15.86785976216197,-16.645773311611265,-17.49159771995619,-16.799274978693575,-17.244126718025655,-18.133768600877374,-18.061427912674844,-18.232342364732176,-19.178017407190055,-19.59960904205218,-19.284525696653873,-19.840775940101594,-19.14926664531231,-18.76838531019166,-18.531212279573083,-19.081010034307837,-18.401451555546373,-18.457796812057495,-18.422072490677238,-17.56771710002795,-16.934170249383897,-17.43354986095801,-16.524217682890594,-15.685996329877526,-15.296723013743758,-16.097864841111004,-16.07463781675324,-15.252990919630975,-14.561659762635827,-15.236460187472403,-14.931567810941488,-14.053913111332804,-13.524004968814552,-14.14598633768037,-13.803123674355447,-14.330748673528433,-15.224558137822896,-14.968743003439158,-14.643403251189739,-14.556036146823317,-15.487707824446261,-15.348076871596277,-14.656275227665901,-14.259834853000939,-14.445611706003547,-14.250777610577643,-14.381159650627524,-14.716697626747191,-15.594188827089965,-15.4919402487576,-14.788515067193657,-15.30477334978059,-16.107098224572837,-15.968036759179085,-15.30082350410521,-15.602633406408131,-15.235407606698573,-15.446583014447242,-15.557782587595284,-15.549417197704315,-16.40485279355198,-16.87667060783133,-16.733101698104292,-17.072922479826957,-17.794033226557076,-17.09156775288284,-16.8909124112688,-17.292307374533266,-17.623569767922163,-17.27646769816056,-17.030596173368394,-16.48542787740007,-15.707762877456844,-16.408284389413893,-16.260955314617604,-15.274709653109312,-15.319099865388125,-14.33953737327829,-13.604240865446627,-14.390657063107938,-14.027301473543048,-14.29410592559725,-15.27363437321037,-14.36450460460037,-14.725192102603614,-15.199232985731214,-14.9278518515639,-15.114176657050848,-15.682312429416925,-16.252943003550172,-17.08422678662464,-17.58733353158459,-17.32128721708432,-18.174132554791868,-18.897602576762438,-19.79191219713539,-18.93898957176134,-19.60433111898601,-19.69694728916511,-19.451204631943256,-20.315078150946647,-20.83461448829621,-20.98325566574931,-21.83131588436663,-21.270418346393853,-20.73511808598414,-20.01714737061411,-19.969916024710983,-19.362777348142117,-20.245015589520335,-20.558831110596657,-20.78231583116576,-20.01688993163407,-20.099265824537724,-20.430115503724664,-19.569103606045246,-19.41446980414912,-18.539309257641435,-18.30452047660947,-17.818423312623054,-17.74645297601819,-17.219890861772,-16.697440892457962,-16.398136126808822,-17.342535675503314,-17.68296723999083,-18.61471894243732,-19.093778903596103,-18.262772993650287,-18.43215457443148,-18.547899264842272,-19.115900586359203,-19.462226134724915,-19.475941533688456,-19.45955804688856,-20.28473519627005,-19.438440831843764,-19.567267060745507,-20.4745968231,-21.321783000603318,-20.527381439693272,-19.79482315154746,-19.585883521009237,-20.321815331000835,-20.402505600824952,-21.15418553398922,-21.21581715485081,-21.68607353651896,-21.69555720128119,-21.197641456034034,-21.940447411499918,-21.590928419027478,-22.308322723023593,-21.473127606790513,-20.529343532864004,-20.430955033749342,-19.582292123697698,-19.173278684727848,-19.06642443826422,-18.747095562517643,-17.888780078850687,-18.40962441219017,-18.43477910477668,-18.622162857092917,-19.597913739737123,-18.818312171846628,-18.42476845579222,-18.77424788568169,-19.585849368944764,-20.428815206047148,-20.723139261826873,-20.542562340386212,-20.044241739436984,-20.617576276883483,-20.35586924944073,-19.575630130711943,-20.474611253477633,-19.68271462712437,-20.07673008646816,-20.42352362954989,-21.416647122241557,-21.238085656426847,-20.48586503462866,-20.042289146222174,-20.995205592829734,-21.78160000219941,-21.669770665932447,-21.668827183544636,-22.302241039462388,-22.172669827006757,-23.14442348992452,-23.730011800304055,-24.248387885279953,-24.27918826416135,-24.952794939745218,-25.756774593610317,-25.78583145001903,-26.64319499908015,-27.579873278737068,-27.42558219609782,-27.304973190184683,-27.67794896569103,-28.611533864866942,-29.18932386022061,-29.110298605635762,-29.379048069473356,-30.21404284145683,-29.257400545291603,-29.27911377279088,-29.251624254044145,-29.363952825777233,-28.90575171727687,-29.553505423944443,-28.5633600554429,-29.307278834749013,-28.78579251561314,-28.201079648453742,-28.262600912712514,-28.24853851273656,-28.17773502599448,-28.5533943278715,-28.097205294761807,-28.313102778978646,-28.552030266728252,-28.773535302374512,-29.044313305523247,-29.689727588556707,-29.55392713472247,-29.75416292157024,-29.122891635634005,-29.92303129984066,-30.560708079487085,-29.79401729023084,-30.548750378657132,-30.833114106673747,-31.493226550985128,-30.664871069137007,-30.331896480172873,-30.676521324086934,-29.979954490903765,-29.1284766276367,-28.400816783774644,-29.159373881760985,-29.038929674308747,-29.733606837689877,-29.94795025838539,-29.0317519470118,-28.71508696069941,-29.255831830203533,-28.575695985928178,-27.934685026295483,-27.72849693475291,-27.43039516545832,-26.749167679809034,-27.675792107358575,-28.63606710359454,-29.35118471039459,-28.806670155376196,-28.1001566471532,-28.60403394838795,-28.7979459669441,-28.326512613799423,-27.379249206278473,-28.288670368958265,-28.041749288793653,-27.44015009701252,-26.71946514863521,-26.841190901119262,-27.175996659323573,-27.996125617530197,-27.74584457743913,-28.280943729449064,-28.142635437194258,-28.077944505494088,-28.935560609214008,-29.895134802907705,-30.786157202441245,-31.552795159630477,-31.802096143830568,-32.422563360538334,-32.67128049628809,-32.66976584447548,-31.706551573239267,-32.33032147586346,-31.932559936773032,-31.356109759770334,-30.97064856532961,-30.52042763121426,-29.74912197748199,-29.293033256661147,-28.98307919735089,-28.647761614993215,-27.71196848154068,-27.04988201148808,-26.717538829892874,-26.481075004674494,-25.567017895169556,-24.929165188688785,-24.571135916747153,-25.321329780388623,-24.721305976156145,-25.554931257851422,-25.483852034434676,-25.386991229839623,-26.08970837201923,-25.27821390144527,-25.612443630583584,-24.7775884186849,-25.214823007583618,-25.288711491972208,-25.33276638481766,-25.24742586305365,-25.313550889492035,-25.401619184296578,-24.833365734200925,-24.166929471772164,-23.237216104753315,-23.646472063846886,-24.09091459866613,-24.61801172560081,-24.351665574125946,-25.34649831894785,-24.565218820236623,-24.417689764406532,-23.716623066924512,-23.77239070646465,-23.355486669111997,-22.837348013184965,-22.828807656653225,-22.961229409091175,-22.120335049461573,-22.144528184551746,-22.05252929031849,-21.554259573109448,-22.25397304818034,-23.080397364217788,-23.219907757360488,-22.86350583517924,-22.198232942260802,-21.2582146236673,-22.08195458399132,-21.814362680073828,-21.948985390830785,-21.604272031690925,-22.14339226623997,-22.23410898121074,-22.278375925961882,-22.89182964200154,-23.53564556222409,-23.038032951764762,-22.14710079692304,-21.673876990098506,-22.272912186570466,-21.70836015511304,-21.465321684721857,-22.162528162822127,-22.17958333948627,-22.170424132607877,-22.91632901178673,-23.703768361825496,-24.371441789902747,-23.893358872272074,-23.676869597751647,-23.786016022786498,-24.61492049181834,-23.98843781510368,-24.4408538043499,-23.83327689860016,-23.7933760471642,-23.680166432633996,-23.766974236350507,-23.962774444837123,-24.15796515205875,-23.86685770843178,-24.686394955497235,-24.406870390288532,-23.968939339276403,-24.198507633525878,-25.15659070154652,-25.178316445555538,-25.929440884385258,-26.32915498362854,-27.320943281520158,-28.091726671438664,-29.0450766752474,-29.09055596124381,-29.014486581087112,-29.956190213561058,-29.24393648141995,-29.1336204521358,-29.651670201215893,-28.893117893021554,-28.67428691405803,-29.23506998969242,-30.121714429929852,-30.50026302272454,-29.667245858348906,-29.264844052493572,-28.611773137468845,-28.416234513744712,-27.4453034135513,-26.749397430568933,-25.912872130516917,-25.23330937838182,-25.844170227646828,-26.81729999789968,-27.751582811120898,-27.33407132420689,-27.99474776070565,-27.28048808220774,-27.227959046605974,-26.298293898347765,-27.01041374495253,-26.772192341275513,-26.67097084224224,-27.555171123240143,-27.26764430757612,-28.252736180555075,-27.950402826070786,-28.582280327100307,-28.03771337121725,-27.622545082122087,-27.568100572563708,-27.051724204793572,-26.676708039361984,-26.102562944870442,-25.212206851225346,-25.52897074818611,-25.1729983901605,-25.84699935792014,-26.713082430884242,-26.348323757294565,-26.311241967603564,-26.038159207440913,-25.33304923865944,-25.645757153164595,-24.937515965662897,-25.920536441728473,-25.915840037632734,-26.35136547870934,-26.30799226462841,-26.25444628484547,-27.151914783287793,-26.171259601134807,-26.34759963490069,-25.883839609101415,-24.95841202698648,-24.629273476079106,-25.25313340499997,-25.699484223965555,-25.672386528458446,-25.10222868481651,-24.919095485005528,-24.44597602263093,-23.921785480342805,-23.35609331447631,-23.04611947759986,-22.981811933685094,-23.77091627707705,-24.56970863044262,-24.02078023646027,-23.263943390455097,-22.747776578180492,-23.589724130462855,-22.634337450843304,-22.827245882246643,-22.303050353657454,-23.123629715293646,-22.32097853301093,-22.354784197639674,-22.796652568504214,-23.025526754558086,-22.206016052979976,-21.37042250763625,-20.601572649553418,-19.953671406023204,-19.88927297340706,-19.73430729750544,-19.931173655670136,-19.842690164223313,-20.1839576815255,-21.11679547233507,-21.46447013132274,-21.575696005485952,-21.57516676420346,-22.42925980594009,-23.253062402363867,-23.08584505878389,-22.786875875666738,-22.40635078586638,-22.620127740316093,-22.525036784354597,-21.781461289152503,-20.88795943837613,-20.896958466153592,-21.002687309402972,-21.81373249879107,-22.03208869183436,-22.52676418609917,-22.16458646254614,-21.204618840944022,-20.248928976710886,-21.093198659364134,-21.375481754075736,-21.596429308876395,-21.98468641983345,-21.6028698743321,-20.947688127402216,-20.924285795073956,-21.017174595501274,-22.010713634546846,-22.007633309345692,-22.900543656665832,-21.979822888970375,-22.428734491113573,-21.63392799673602,-20.934753911104053,-20.50983427884057,-20.377147920429707,-20.485475208144635,-20.701892319135368,-20.15206564264372,-20.22429099259898,-19.442842164076865,-18.733146831393242,-17.745603585615754,-17.47116164676845,-17.357225943822414,-16.558048816397786,-15.886875216383487,-16.09914755821228,-15.99602052476257,-16.035465066786855,-15.873158027883619,-15.146523907314986,-15.590785397682339,-14.640985527541488,-15.585782983805984,-14.691164373420179,-15.161640662234277,-15.095323672518134,-15.669664372690022,-16.01573825906962,-16.5151643557474,-16.15492661157623,-17.043924255296588,-17.015129184816033,-16.793653760571033,-17.59989610593766,-17.92540640756488,-17.426575084682554,-16.75346066104248,-17.364871914498508,-17.491271228995174,-18.310658832546324,-18.798266579397023,-18.109603375196457,-17.704425746109337,-17.847510711289942,-16.98711859760806,-17.68710852926597,-18.01095507433638,-18.277807188220322,-17.562241445761174,-17.19772744877264,-16.524750518612564,-16.376841770019382,-16.574953322764486,-15.86571085639298,-16.796202451456338,-16.716946497559547,-16.016595839057118,-16.144696903415024,-15.851191631983966,-15.023542325943708,-14.354321938473731,-13.78487346880138,-13.206661412026733,-12.83864397648722,-12.463086897972971,-12.085845119319856,-12.467379569076002,-11.890167003963143,-12.406156677752733,-12.414502596948296,-11.96100740134716,-11.635207974817604,-11.608071151189506,-11.036805944051594,-10.527564247138798,-10.135997673030943,-10.746270148083568,-11.175769476220012,-11.943801817018539,-11.719682711176574,-12.489970290567726,-11.978005052544177,-11.907554716337472,-12.600547194015235,-11.685843873303384,-10.905615511350334,-11.532198939938098,-12.064944421872497,-12.328940038569272,-12.261413545813411,-11.896862007677555,-11.491340031847358,-11.451447730883956,-11.639261413831264,-11.68831212632358,-12.114659995306283,-11.359912115614861,-10.372840639203787,-10.038848523050547,-9.308870083186775,-8.460369672626257,-8.88267334876582,-9.62995192175731,-8.704375912435353,-9.159115803893656,-8.744023520499468,-8.07803225517273,-7.197195856831968,-6.585247915238142,-5.820977323688567,-6.619846225716174,-6.866225009784102,-5.924848281778395,-6.147899197880179,-5.4373226198367774,-6.339964361395687,-6.548181978520006,-6.291142992209643,-5.3368640430271626,-6.1528896181844175,-7.082514984533191,-6.886244586668909,-5.982629248406738,-6.933798892889172,-7.632611003238708,-8.1682407008484,-7.520604936871678,-6.65494375443086,-7.483188339974731,-7.183605276979506,-6.38533694203943,-6.016763064078987,-6.324341295752674,-6.813578648027033,-7.606834191363305,-8.232762648258358,-8.34550543827936,-8.61507490510121,-8.024234662763774,-7.576230052858591,-8.507078091148287,-8.64431192772463,-8.826071311254054,-8.600467603188008,-8.49147150432691,-7.773553425446153,-8.588175258599222,-8.005618014372885,-8.810118272900581,-9.408634226769209,-9.178074355702847,-9.157147955149412,-9.277429122012109,-8.926253863144666,-7.969276123680174,-8.331960384268314,-8.53386821364984,-8.5585458423011,-8.425500364042819,-8.870613634586334,-9.20412522321567,-8.559803053736687,-7.82523546833545,-8.47953141760081,-8.180670030415058,-8.10898459656164,-7.686544953845441,-7.795482355635613,-7.1286188452504575,-7.218010569922626,-7.250016211997718,-8.177298120222986,-7.680686175823212,-6.831782084424049,-6.132242186926305,-5.240296994801611,-4.6198560888879,-4.16415801178664,-4.259103586431593,-3.4456833391450346,-4.289142155088484,-3.704837391152978,-2.899488589260727,-2.1339982580393553,-2.2263408158905804,-1.3552966811694205,-1.4787145419977605,-0.8296327441930771,-1.5549869351089,-2.268085064832121,-2.3931616665795445,-2.765975742600858,-3.704142731614411,-2.7461797115392983,-2.0527313500642776,-2.438509461004287,-2.3388447826728225,-1.939580600708723,-1.4071603324264288,-2.3316576024517417,-2.0637151626870036,-2.3626678781583905,-2.065079193096608,-3.0207933080382645,-3.016703845001757,-2.6446305788122118,-2.3153973422013223,-2.4137201975099742,-1.545950269792229,-1.7840880006551743,-1.6826646705158055,-2.387538152281195,-1.440550743136555,-1.7079813070595264,-1.8041790015995502,-2.669117080979049,-2.331239878665656,-2.822836951818317,-1.8284736881032586,-1.931014971807599,-1.8767341151833534,-1.6476159943267703,-1.7076427596621215,-0.8981617824174464,-1.6160168037749827,-1.3301697480492294,-0.5536724082194269,0.24898483930155635,0.6253010681830347,-0.29799972753971815,-0.8565341671928763,-0.762390922755003,-0.3269947529770434,-0.7191069079563022,-0.28054005932062864,-0.43582599516958,-1.407440940849483,-0.9166947677731514,-1.86922013387084,-1.6397771001793444,-1.2761684129945934,-1.7941785310395062,-1.7150204093195498,-2.290140715893358,-2.032911323942244,-2.0139510738663375,-2.4286815617233515,-1.4809808526188135,-1.925683056935668,-1.5839806711301208,-2.103751173708588,-2.2459250236861408,-1.4386893385089934,-1.2743800967000425,-0.5694398717023432,-0.4823106648400426,-0.47520474763587117,-1.244462652131915,-1.5527731371112168,-0.9221706595271826,-1.4363280688412488,-1.2938658250495791,-1.7190323323011398,-2.486403957940638,-3.111247625667602,-4.035606894642115,-3.3383663962595165,-4.322435743641108,-4.777950203511864,-4.48922231560573,-5.119292278774083,-4.184931392315775,-3.846997964195907,-4.177224293816835,-5.170258686877787,-6.089859811589122,-6.752528361976147,-7.727524796966463,-7.8596074199303985,-7.753610431216657,-8.37728193262592,-8.955707762856036,-9.34519919147715,-8.4955288679339,-8.600026193540543,-9.0664221229963,-8.861218583770096,-9.61580871231854,-10.2392076253891,-10.39552953792736,-10.622279382776469,-10.487587128765881,-9.791161630768329,-8.860409677028656,-8.395731159951538,-8.741455013863742,-9.602942030876875,-9.40718576963991,-9.204467258416116,-8.524137739092112,-9.107613710220903,-10.044982414226979,-11.008714515250176,-10.576304296962917,-9.84781168261543,-10.052592466585338,-10.256444972008467,-11.061983712948859,-12.01168619422242,-11.307666498236358,-11.536327361129224,-10.789787338115275,-11.438558481168002,-11.557335681281984,-10.892665733583272,-9.994165518321097,-10.552832809276879,-10.849146497901529,-9.96132975583896,-9.542917848099023,-10.417637880891562,-9.422954102046788,-9.928810466546565,-8.9573575835675,-8.741336658131331,-8.748547407332808,-8.35442154854536,-7.538981082383543,-7.6511381338350475,-8.05505083175376,-7.224190028384328,-7.793923442717642,-8.09566028835252,-8.685528277419508,-8.995179084129632,-8.99330339860171,-9.712258295156062,-10.710725614335388,-10.489091727416962,-10.290893405210227,-10.611019005998969,-10.64365379838273,-10.077272051945329,-9.190122775733471,-9.003490606322885,-8.988917952403426,-8.175875372253358,-7.6961563834920526,-7.435782921966165,-7.825337514746934,-7.248555401805788,-6.791106996592134,-7.511249404400587,-7.661886794958264,-7.919565385673195,-8.450707038864493,-8.337324338499457,-7.430260902270675,-8.39261237392202,-8.153068871702999,-7.2082820176146924,-7.88569744490087,-7.733297630678862,-7.511530711315572,-8.156324604526162,-8.788711696863174,-8.527472843881696,-9.124759712722152,-8.293281042482704,-7.853606780059636,-8.557631764560938,-8.374570148065686,-7.719326806720346,-6.935800832696259,-7.148683976382017,-7.407895865850151,-6.97567249275744,-6.440912809222937,-7.287234694696963,-7.857593066524714,-7.06484778271988,-7.224430530332029,-7.325212430208921,-7.552239483222365,-7.720279410947114,-7.084832971449941,-6.162665648851544,-7.096665463410318,-7.053415321744978,-6.664094829931855,-6.729798731859773,-6.091707074549049,-6.541927047073841,-5.8018319848924875,-5.98998213512823,-6.228884465061128,-6.8128769476898015,-7.258751624729484,-6.269587463699281,-5.510084404144436,-6.487223831471056,-7.317832976114005,-7.70991717511788,-6.934804000891745,-7.535564003977925,-8.452675850596279,-7.999367681797594,-7.450490612536669,-7.5953102027997375,-7.639391406904906,-6.73111250763759,-7.72455550218001,-7.076343800872564,-6.751822028774768,-6.319407416973263,-7.087876577395946,-7.523643918801099,-6.917053650598973,-6.786925107706338,-6.233110196888447,-6.605482469312847,-6.105555021669716,-5.330871125683188,-4.850580973550677,-4.274332110770047,-3.833841613959521,-4.496538562700152,-5.203225373290479,-6.140267513226718,-6.153274845331907,-5.561279864516109,-6.3738999157212675,-7.071764913853258,-7.171486138831824,-7.560593340545893,-8.37609818810597,-7.402971261180937,-7.032196168322116,-6.857471959199756,-7.617444890085608,-7.403745485469699,-7.500295252073556,-7.401398389600217,-7.712834327947348,-7.059547912329435,-7.894392414949834,-7.778793518431485,-7.455214721150696,-7.471555407624692,-7.506950739771128,-8.264181858394295,-7.660942938178778,-8.436914091464132,-8.388153947424144,-8.740221872925758,-8.179642247967422,-8.00706025166437,-8.555897811893374,-8.929877338930964,-9.443995207548141,-10.083101570606232,-10.120109239127487,-10.043360980693251,-9.13673586351797,-9.347831706516445,-9.9093755800277,-9.49497143086046,-9.200097156688571,-8.211935684084892,-8.682214100845158,-9.319425161462277,-9.204421033617109,-9.267031706403941,-8.74131583981216,-9.311866790987551,-9.299067658837885,-10.073925806675106,-10.678243224043399,-11.576787021942437,-11.883658797480166,-12.271662790793926,-11.630675916094333,-12.601281067822129,-13.13286863034591,-13.696854009758681,-14.350477896165103,-14.18581135198474,-14.837059157900512,-14.299151855520904,-14.475573757197708,-13.935393787920475,-13.99168889876455,-13.141337647102773,-12.88409950118512,-11.900315497536212,-12.127121350727975,-11.839989420957863,-11.798912463709712,-11.216954182833433,-11.42551161441952,-11.119623339734972,-11.294098402373493,-12.123096245806664,-11.449251974467188,-10.882016472984105,-10.257769221905619,-10.084046228788793,-10.946767707820982,-10.011205562856048,-9.361573089379817,-9.90753653133288,-10.511214265599847,-11.166888421401381,-10.670051714405417,-10.798944741021842,-10.76772401528433,-10.625748317223042,-10.318370453082025,-9.392947663553059,-9.106657824944705,-9.561151253059506,-8.745286444667727,-9.241761636920273,-8.249446337111294,-7.954833069816232,-7.373522801790386,-8.242641828488559,-7.866171223577112,-7.4522769609466195,-7.016137409955263,-6.6235150983557105,-7.07942983135581,-6.888247325550765,-6.727524556219578,-5.839545554947108,-6.407410107553005,-7.387456565629691,-7.166118145920336,-6.536193246487528,-5.735780792310834,-6.443691797088832,-6.793909742031246,-6.975289314519614,-6.238745297770947,-6.18157856259495,-5.895349471829832,-6.61765221785754,-7.095686594489962,-7.988884669262916,-7.763233720790595,-7.430137955583632,-8.362629350274801,-8.118372648954391,-7.877536372747272,-7.952485464513302,-7.504044697154313,-8.488504558801651,-9.363001868594438,-9.07825460890308,-9.824508813675493,-10.603017841931432,-9.733412058092654,-9.021434617694467,-8.715219638310373,-8.906532383989543,-8.590047786012292,-9.407985859550536,-8.802872582804412,-8.429821035359055,-9.21021579252556,-8.970496707130224,-8.948616052046418,-9.534037624951452,-8.817038068547845,-8.477238821331412,-8.62386739673093,-8.482939667068422,-9.475548446178436,-9.760603240691125,-9.211618531495333,-8.405640220735222,-9.135616843122989,-8.606203276198357,-9.084138649981469,-9.453844220843166,-9.532487826887518,-10.0951371579431,-10.645403497386724,-11.542329361196607,-12.503842816222459,-12.84070494165644,-12.85869293147698,-13.007967471145093,-13.25326225021854,-12.847336932085454,-12.98754621250555,-12.219707234762609,-13.140427133999765,-12.172158309724182,-11.727092787157744,-11.95305996434763,-12.408703966531903,-13.038976702373475,-12.950112460181117,-12.634197095409036,-13.375184265431017,-13.992337331175804,-14.109302532859147,-13.625739778392017,-14.390545788686723,-13.50568265793845,-13.353519215714186,-14.173420686740428,-14.092689592391253,-14.715047383215278,-15.190241379663348,-15.551054974086583,-15.502243868540972,-14.960859548300505,-14.206374463159591,-14.961438576225191,-15.63501720270142,-15.589763231575489,-16.11897549079731,-15.533933756873012,-14.84714296972379,-15.591926093678921,-14.62187147885561,-13.954691352788359,-12.978582149371505,-13.14486143225804,-12.951502171345055,-12.468412023037672,-11.476448585279286,-11.779762228485197,-11.015102898702025,-10.509895445313305,-9.736723374109715,-10.234438553918153,-10.944902719929814,-9.973669232800603,-10.374340659938753,-9.682591617107391,-9.624495692085475,-9.641969879157841,-9.076831392478198,-9.636824374552816,-8.764386205002666,-8.882856547832489,-9.265426515135914,-8.388923808000982,-8.664726958610117,-8.665097331628203,-8.851192438974977,-8.958755845203996,-9.810047226026654,-10.272834394592792,-10.689639773685485,-11.274117612745613,-11.136981952004135,-11.638254121877253,-11.46719015808776,-11.703111046925187,-12.367747088428587,-11.508742713369429,-10.666675905697048,-11.45398447662592,-10.973963216412812,-11.148473602253944,-11.958245752379298,-12.550035231281072,-11.942370027303696,-10.991280977148563,-10.993909045122564,-10.320436178706586,-9.456027330830693,-10.273360032122582,-11.010240680538118,-10.88682886166498,-10.08040963858366,-9.209073216188699,-9.772672078572214,-9.028565855696797,-8.354116946458817,-8.976201482117176,-9.356131870299578,-9.232403140515089,-8.299602437298745,-8.702896460425109,-8.914381315000355,-8.905156339518726,-9.716796681284904,-8.861839379183948,-9.015351832378656,-8.138277566991746,-7.845548810902983,-7.5373253701254725,-8.33883434953168,-8.066265963483602,-7.47808240680024,-6.803456370253116,-6.208974257111549,-6.6680687931366265,-6.313528663944453,-6.361983575858176,-5.744363479781896,-5.691344541031867,-5.1951058018021286,-4.3061468889936805,-3.4646628736518323,-2.5474144755862653,-2.4713746439665556,-1.487447711173445,-1.8864448019303381,-1.5969575112685561,-2.2380795353092253,-2.9705135938711464,-2.1619579191319644,-1.7447735480964184,-1.9183179764077067,-2.087439856491983,-1.3700207127258182,-0.5550490077584982,-0.1347050736658275,-0.32717500580474734,-0.054659574292600155,-0.14978581154718995,-1.1430105580948293,-1.8958258223719895,-2.702423957642168,-1.9002918559126556,-1.5909603801555932,-1.7204907895065844,-2.5649058683775365,-2.995246493257582,-3.139799751341343,-3.663529276382178,-3.850065513048321,-4.696904540993273,-3.883173542097211,-4.237104655243456,-4.2533368626609445,-3.7598949181847274,-4.4988441448658705,-3.866523677483201,-3.7026510103605688,-3.0407915003597736,-3.424832256976515,-3.7643273998983204,-3.7245893217623234,-4.627511073835194,-4.943376310635358,-4.187972923275083,-4.807927960529923,-5.503485130146146,-4.755688223056495,-4.891218085307628,-4.2632220215164125,-3.6244795257225633,-2.896275549195707,-3.006503390148282,-2.5932386722415686,-3.2756677796132863,-2.70025864103809,-2.103755645919591,-2.667181567288935,-3.5847897166386247,-4.567232764791697,-5.380529075860977,-6.15058549772948,-5.436081546358764,-4.697833763901144,-3.906882661394775,-2.9855553824454546,-3.0100141391158104,-2.4924097508192062,-3.1433322583325207,-2.8072128957137465,-3.4526652079075575,-3.1209956975653768,-2.7918227910995483,-3.781476601958275,-4.768356884364039,-3.9532912434078753,-4.608593230135739,-4.138785437680781,-4.0441963309422135,-4.793339860625565,-4.08018244151026,-4.298659353982657,-3.9622842012904584,-4.752838854212314,-4.264823847915977,-5.046095900703222,-4.401670369319618,-3.5607163179665804,-4.095111060887575,-4.25310985557735,-3.4336545672267675,-4.103100574575365,-4.659669825807214,-4.325988662894815,-5.216242164839059,-4.660645184572786,-3.943160922266543,-3.346961503382772,-4.07125832233578,-3.730599889997393,-3.9781987448222935,-4.602727797348052,-4.648921597748995,-3.977632224559784,-4.438746592029929,-4.050712312571704,-4.380087019409984,-4.540594021324068,-4.445354897528887,-5.1736290021799505,-5.096483117900789,-4.526760310400277,-4.363050326239318,-3.44414736982435,-3.3432236835360527,-3.979679854121059,-3.0671241809614003,-3.330522340722382,-3.2796762185171247,-3.511304297950119,-4.413523650728166,-5.056743772700429,-5.2220943928696215,-4.732124473433942,-4.641875383909792,-4.386065736878663,-5.02572527108714,-4.6437569903209805,-4.549140664283186,-3.9716056236065924,-3.470648360904306,-2.669922634959221,-2.387890231795609,-2.99916887935251,-3.7447313531301916,-4.092088792938739,-4.0258357296697795,-3.6097847898490727,-4.359991560224444,-5.343603590968996,-4.40585923474282,-5.3467787192203104,-4.909400401171297,-5.233193280175328,-5.675852350424975,-5.969820122234523,-6.092849111184478,-5.909937979653478,-6.669937831815332,-7.525535591412336,-8.236741960048676,-8.180170999839902,-8.445013099815696,-8.18752079596743,-8.559527497272938,-8.74700714694336,-8.498905161395669,-9.093096080236137,-8.832234709523618,-9.595204309094697,-10.02626095758751,-9.297277783509344,-8.840096443891525,-9.343927931506187,-8.991640008520335,-9.723043544217944,-9.456713165622205,-9.445544155780226,-10.362478922121227,-10.94677174743265,-11.36370226694271,-10.36936054425314,-9.906558407470584,-10.70489214360714,-11.498824667185545,-11.263958965893835,-12.169445825740695,-12.970271987840533,-13.884458438493311,-14.489528397098184,-15.39434399548918,-15.963105593342334,-15.07344627007842,-16.063918337691575,-16.10280701657757,-16.74663143372163,-15.874434851109982,-16.621821286622435,-16.985013670288026,-17.466521573718637,-16.575153938494623,-16.769593773875386,-16.6005008937791,-16.176744165830314,-16.444034148938954,-15.579922495875508,-15.852401472162455,-16.43730883533135,-16.61625748220831,-17.150475698057562,-17.978287674486637,-18.833683585282415,-19.73613479733467,-19.72805158328265,-19.319622654933482,-19.3977788281627,-19.94276036694646,-19.681429603137076,-19.739391705021262,-19.963856131304055,-20.61206075362861,-19.758562767878175,-19.116545759141445,-19.176787598524243,-19.14619464892894,-18.82779503520578,-18.44457220006734,-18.25577895436436,-18.85664284788072,-18.33596161706373,-17.5384766953066,-17.94455314660445,-17.404959170613438,-16.61883952934295,-16.50069524720311,-16.75288117537275,-16.78312900941819,-16.68415289511904,-15.982064238749444,-15.86421762732789,-16.365927569568157,-17.247795837000012,-18.220753639005125,-18.908119210973382,-18.732147443573922,-19.240230979863554,-19.018140117637813,-19.08156991377473,-19.03419350180775,-18.814237712416798,-18.47527808183804,-17.85365750780329,-17.328820175025612,-16.758092952892184,-16.516483381856233,-15.675287142861634,-15.054512300062925,-15.639884043019265,-16.541010002605617,-16.60755794448778,-15.885070163290948,-15.815245307050645,-15.23779366677627,-15.812839879188687,-16.383847176562995,-16.527251351624727,-15.819771526847035,-14.902410632465035,-15.146686186548322,-14.393393411766738,-13.610813830047846,-12.926108586136252,-12.345141722355038,-12.653699774760753,-12.720690642949194,-13.432753222994506,-14.00543692521751,-14.510154572781175,-13.52965515293181,-13.644001400563866,-14.4878134354949,-13.498726808000356,-12.998797432519495,-12.23149863537401,-12.663436430506408,-11.974172516725957,-12.011960718315095,-11.519250467885286,-11.67155959783122,-12.39799846149981,-12.59309976361692,-13.315774916671216,-13.789747931994498,-14.178726559039205,-13.541516138706356,-13.917846295516938,-13.81363056274131,-14.708908431697637,-14.799830223899335,-13.868764341808856,-14.325848817825317,-13.600546542555094,-14.219402460381389,-14.108756816014647,-13.742822312284261,-14.419797516427934,-14.794742904603481,-14.600198769010603,-15.369101948104799,-15.35693139070645,-15.5521443313919,-14.988500570412725,-14.304865004960448,-15.131706108804792,-14.560684198513627,-14.08712638122961,-14.768664658535272,-14.72590724285692,-15.477083381731063,-16.16008318401873,-16.339151785243303,-17.017536188475788,-17.117105243727565,-16.80046052346006,-17.420843752101064,-18.115504808723927,-18.79783352976665,-18.74334783758968,-18.07787969848141,-17.288753502070904,-16.720096986740828,-16.180551803205162,-16.170009046327323,-16.111796278506517,-16.113872832152992,-16.35361090162769,-17.14948253519833,-16.838513585273176,-16.13636957993731,-16.879729615990072,-17.202361127361655,-16.59904531482607,-15.981249934993684,-15.781108371447772,-15.681366885546595,-14.817604968789965,-14.785364544950426,-14.450354327913374,-14.172458093613386,-13.897928318474442,-14.288824912160635,-13.560363634489477,-13.455365688540041,-13.718603801447898,-13.405463710892946,-14.059700878337026,-14.905809811782092,-15.011185896582901,-14.025456577073783,-14.147163030225784,-13.819637971464545,-14.124852654989809,-14.349335053004324,-14.902559789363295,-14.790468901861459,-13.96332493936643,-13.46992856822908,-13.033261759206653,-13.94672733079642,-14.449703607242554,-14.063585209660232,-14.637703561224043,-13.902808332815766,-13.802698087412864,-12.958995927590877,-12.171690214425325,-11.238870467990637,-11.104726450517774,-10.602638800162822,-10.868447472341359,-9.94284248771146,-10.640670817811042,-11.12895939219743,-11.798076672013849,-11.695145189762115,-12.316801415756345,-11.352249772753567,-10.791613211855292,-11.50240720435977,-12.39489536266774,-11.677179689519107,-11.132739588152617,-11.298905060626566,-11.75984536157921,-11.52467439416796,-12.193903126753867,-12.653231338132173,-12.434603638481349,-12.507783067412674,-12.372505883686244,-11.943307759705931,-11.943601740058511,-11.141800474375486,-11.405721445102245,-10.892372554168105,-11.837656858377159,-11.022115365136415,-10.86751952720806,-11.426132840104401,-12.060080119408667,-12.073255992494524,-12.498304659035057,-12.092381078284234,-12.319689964875579,-11.922176255844533,-12.207328408025205,-11.211969444993883,-10.272825386375189,-10.543921210803092,-9.902411248069257,-9.764838593546301,-9.2243458237499,-8.928266517352313,-8.830304154194891,-8.387833441607654,-7.926453074906021,-8.126210098154843,-8.208687527105212,-7.384243478067219,-6.834273665677756,-7.796376991085708,-6.853068416938186,-7.304888099897653,-8.253493886440992,-9.0614944989793,-9.911336086224765,-10.645575153175741,-9.750430137384683,-10.745552795939147,-10.388923381920904,-9.819928240496665,-10.700532889924943,-11.324463400058448,-11.140314609743655,-11.534009554889053,-11.660559719894081,-12.609372166916728,-12.461821569129825,-11.481125968042761,-11.198894859757274,-11.744384175166488,-11.421391074545681,-12.23005897225812,-12.917432074435055,-12.490789192728698,-12.950840649195015,-12.836182175204158,-11.95898345252499,-11.542239801958203,-10.932793795596808,-11.800573839340359,-12.332348509691656,-12.227086882572621,-12.786630519200116,-13.35853332374245,-12.415659490041435,-12.045258633326739,-12.894820536486804,-13.209373296704143,-12.212956027127802,-12.522721480578184,-12.562143623828888,-13.31656744889915,-12.809486590325832,-13.285557960625738,-12.959305980242789,-13.117504947818816,-13.790705704595894,-13.688566205557436,-13.691454376094043,-14.082496847957373,-13.717220894061029,-14.15513923484832,-13.981237920932472,-13.836700229439884,-14.771686749067158,-13.833637515082955,-13.246700955554843,-13.081122699659318,-12.446603528223932,-12.321588921826333,-11.692876603454351,-11.466708530206233,-12.1890389630571,-11.904269715771079,-10.94527327734977,-10.746878825128078,-11.036919416859746,-10.533102737274021,-10.460461690090597,-10.82030921569094,-9.897134219761938,-9.048387425020337,-8.719634780660272,-9.258597789797932,-9.67827313626185,-10.507116607390344,-10.068192010279745,-10.663405807688832,-10.794309177901596,-11.465384457726032,-10.735826211050153,-10.796156181953847,-9.916056987829506,-9.78249728307128,-8.988474068697542,-9.301751150749624,-9.407958887051791,-9.974197486415505,-9.028081578668207,-8.728999828454107,-9.251806396991014,-9.25475453492254,-8.51361114019528,-8.735436280723661,-7.779414631891996,-6.840000605676323,-6.2383746495470405,-6.571234753355384,-7.383403702173382,-6.707141121383756,-6.879405029118061,-6.702463115565479,-6.059415984433144,-6.5155546381138265,-7.459267255384475,-7.610336456913501,-8.2830346878618,-8.083095249719918,-7.55233310488984,-7.16502600396052,-6.356509434059262,-5.6738221645355225,-6.119898351375014,-5.674345014616847,-4.825866776984185,-4.885038311127573,-5.3665759256109595,-5.735378308687359,-6.1948877847753465,-5.981860293075442,-6.836469545960426,-5.922679698094726,-6.456996664404869,-6.483190373983234,-6.5792142059654,-7.29652610886842,-7.544691191986203,-7.457626110408455,-8.432713049463928,-9.058097310364246,-8.267875232733786,-7.471473415382206,-7.995415585581213,-7.732671179808676,-7.513176997192204,-7.3634514240548015,-8.270977238193154,-8.009964297059923,-8.147772468160838,-8.401021766010672,-8.117759042419493,-7.327756184153259,-8.092084446456283,-7.187484066002071,-8.012948775663972,-8.705087330657989,-8.93368258420378,-9.077149601653218,-9.182325422298163,-9.10275156237185,-8.296085296664387,-8.543012376874685,-9.352116886060685,-9.906523067969829,-9.652198361698538,-9.141853102017194,-8.629343604668975,-7.686979161109775,-7.6441851244308054,-7.803900167811662,-8.445694560185075,-8.898035198450089,-9.292306371964514,-9.827918458264321,-9.910944586154073,-10.523842215072364,-11.046482058241963,-10.162766487337649,-10.21522544324398,-10.809645287226886,-10.132843200583011,-10.614455808419734,-10.17781203147024,-10.115805061534047,-10.246222495567054,-9.612969181500375,-9.862114102579653,-10.713789075613022,-10.847698038443923,-10.417463157791644,-11.304328067228198,-11.871717007830739,-10.94125510752201,-10.473980109207332,-10.50032679317519,-10.002658458892256,-10.667867195326835,-10.610489698126912,-11.221029554493725,-10.682550905272365,-11.478969897609204,-11.755514810793102,-12.734096301719546,-12.499495299067348,-12.659882035572082,-13.540419066790491,-13.472959658596665,-13.095511568244547,-12.729142831638455,-12.053776964079589,-12.118074651807547,-11.226727466098964,-11.142835145350546,-12.07666328502819,-12.3323456752114,-11.725395719520748,-11.992789743002504,-12.675102918408811,-12.652094950899482,-12.143679819535464,-12.258390442933887,-11.592129801400006,-10.801322454120964,-11.742787562310696,-11.564247365575284,-11.216207025106996,-11.106895153410733,-11.658172456547618,-12.063747840933502,-11.740603940095752,-11.944049526005983,-11.78771542198956,-11.372449005953968,-11.771486545912921,-11.887762252707034,-11.824604636523873,-11.228824127465487,-11.007374748587608,-11.814067350700498,-10.886571650858968,-11.150790572166443,-10.750055883079767,-11.50269312877208,-11.337239818181843,-10.876670800615102,-10.351567105855793,-10.861617879476398,-11.515590795315802,-12.18160123983398,-12.49612556444481,-12.054404560476542,-11.431026553735137,-11.405586750246584,-11.821950894314796,-11.728242283686996,-12.418459905777127,-11.993991751689464,-11.551626554690301,-12.223325090948492,-12.354738633148372,-11.828350199386477,-11.792197494767606,-10.978944188915193,-11.020900905597955,-11.109263263177127,-11.130164690781385,-11.995221310760826,-11.358120247721672,-11.843934927601367,-12.636778661981225,-12.607008650433272,-12.746354435570538,-12.388786639552563,-13.084463234525174,-12.874753721058369,-12.344472765922546,-11.988136823754758,-11.517605776432902,-11.712865887675434,-10.996910916175693,-11.633599133696407,-11.840402648318559,-12.828495854046196,-12.461406085640192,-12.705579977482557,-11.788992466405034,-11.880890991073102,-12.560779872816056,-13.196773586329073,-13.363608413375914,-13.671183154452592,-14.461548766121268,-14.174420969095081,-14.21433311374858,-14.710370338987559,-14.31272057350725,-15.236393893137574,-15.561843598261476,-15.292851110454649,-16.00553800817579,-15.235919865313917,-15.826485349331051,-14.955847267061472,-13.983000653795898,-14.689271149225533,-13.99225131329149,-13.087826935574412,-12.68277798127383,-12.918534428346902,-13.547569146379828,-14.083146762102842,-14.719914130866528,-15.543839351739734,-16.33373667905107,-16.61000453075394,-16.06189881870523,-16.893697443418205,-16.160752147436142,-16.8403133735992,-16.024569128174335,-15.519967325497419,-16.332547526806593,-15.806034539826214,-15.087189754471183,-15.647081227041781,-15.954475587699562,-16.464940742589533,-16.957363347057253,-17.6849729353562,-16.859029481653124,-16.64269740646705,-17.595017950516194,-17.940447185654193,-18.602359197102487,-19.212421057745814,-20.15069928392768,-20.315172421745956,-20.3008946031332,-19.40677111875266,-19.531469254754484,-20.385147342458367,-19.917576945386827,-19.629385139327496,-20.2256587469019,-20.636262964922935,-19.82118457648903,-20.37519860872999,-20.526586525142193,-20.683414258994162,-21.463182108476758,-21.10545928683132,-20.736108428332955,-20.751919564791024,-21.050165759399533,-20.205460689030588,-20.121557287871838,-20.712215290404856,-21.14662916911766,-20.34489137167111,-19.690374018158764,-18.949276105035096,-19.239751743152738,-19.719456006307155,-19.895975937135518,-19.1086256634444,-19.002411310561,-19.761635651346296,-19.80275914259255,-19.93022384867072,-20.111187109723687,-20.38962493976578,-19.680351755581796,-19.62930198153481,-20.332341824658215,-21.078320764470845,-21.708560597151518,-22.05479994881898,-22.73393934732303,-21.97943428112194,-21.839361857622862,-22.44782900204882,-21.82482773112133,-21.883431929163635,-22.389391819946468,-23.09740724787116,-23.769624585751444,-23.45153859211132,-22.572436415124685,-22.8119064765051,-21.89278643578291,-22.55977660510689,-22.545960356015712,-23.286925689317286,-22.417673620861024,-22.546214802656323,-23.17666183365509,-22.964368882589042,-22.56083008646965,-22.415309220552444,-23.3388052303344,-24.290493381675333,-23.579499460291117,-22.842034947127104,-23.730591802857816,-23.070224466733634,-23.697233711369336,-23.551503140479326,-23.438149339985102,-24.119353853631765,-24.049346221610904,-23.89773428440094,-23.73480024235323,-23.465191459283233,-23.261913924477994,-23.127524956595153,-22.183058477938175,-23.106894352007657,-22.178243573289365,-22.224898368120193,-21.306193895172328,-21.5126333842054,-21.412873995490372,-20.692202494014055,-21.01684451336041,-20.8323713215068,-20.64229815080762,-21.586780306417495,-20.71430213144049,-21.378068424761295,-20.94032268738374,-20.76298012305051,-21.269763722084463,-20.28270670119673,-19.93119751336053,-20.14870097860694,-19.751763199456036,-20.567645653150976,-20.86540986923501,-20.23231236776337,-19.448966873344034,-18.92886456521228,-18.89281009696424,-18.805191959254444,-19.287620979826897,-18.340519218239933,-18.23435118747875,-18.622136021964252,-17.818377820774913,-17.30395849328488,-16.710972992237657,-16.581425012089312,-15.712397910188884,-16.461544957011938,-17.360993429552764,-17.239262335933745,-16.247582022100687,-15.873381276149303,-16.1876730741933,-15.9886117214337,-16.27324019698426,-15.877172665204853,-15.031916886102408,-15.629407827276736,-16.471717748325318,-15.774036890361458,-15.630559843964875,-16.071239265613258,-15.728768215049058,-15.993087963666767,-15.040434135124087,-14.529744978062809,-15.472358680330217,-15.910067184828222,-15.009473166894168,-15.461080741602927,-15.714667262509465,-15.765483378898352,-16.279759315308183,-15.777929096017033,-16.768708042800426,-16.975804721470922,-16.561726842541248,-17.22640919359401,-17.41686552623287,-16.575551845598966,-16.07164773903787,-16.084645422175527,-16.26283712591976,-16.55437928251922,-15.850711474660784,-16.27792282262817,-16.132471307180822,-15.57045792369172,-16.55549567891285,-15.713872347492725,-16.31058655679226,-15.5812853211537,-14.617551913484931,-13.92037541884929,-13.389515173621476,-14.228392848279327,-14.982565669342875,-14.832726215943694,-15.085666501428932,-14.481479819398373,-13.557428125292063,-14.313565275166184,-15.109328671358526,-15.733253783080727,-16.385142721235752,-16.858559482265264,-16.037441732361913,-16.08762501971796,-15.447450989391655,-15.941972036845982,-15.74011692777276,-16.377504454925656,-16.33813484897837,-15.715183374006301,-16.668966825585812,-16.961140843108296,-17.189637247938663,-17.172938239295036,-17.990752950310707,-17.73047359380871,-17.81888438621536,-18.035887436941266,-18.138008730020374,-18.18072618637234,-18.04699989967048,-17.967083542142063,-18.91338514117524,-18.768348135985434,-19.42508360138163,-19.519919126760215,-18.907673478126526,-18.914967282675207,-18.81643193308264,-19.225283393636346,-19.190900249406695,-18.445533212274313,-19.234096754342318,-19.320668990258127,-20.186058051884174,-21.13277159864083,-21.855715222191066,-20.96335662668571,-21.097125377506018,-20.181183277629316,-20.60212346119806,-20.81209865398705,-20.478451068513095,-20.399460117332637,-19.80572385992855,-19.196404474787414,-19.935647416394204,-20.875842270907015,-20.103958810679615,-21.020645772572607,-21.608386154752225,-20.973295061383396,-21.579102404415607,-21.001897869165987,-21.983662721235305,-22.330858390778303,-21.463930140715092,-21.63160469941795,-21.60448374412954,-20.929740677122027,-21.24596428219229,-20.463911595754325,-20.125732867978513,-20.670213737525046,-19.76074733119458,-19.537068214267492,-20.484693127218634,-20.284156557638198,-20.06896782061085,-19.116251378320158,-18.871922131162137,-19.732341405935585,-19.579911580774933,-19.405956140253693,-19.845491266343743,-19.39187072403729,-20.071193446870893,-20.93715729098767,-21.800734863616526,-21.246836970560253,-20.791251488029957,-21.683529919944704,-21.292782697826624,-21.950786078348756,-22.938207944855094,-23.4355951230973,-23.690822505857795,-24.576939386315644,-24.915538273751736,-23.994899939280003,-23.41921311803162,-23.91476581338793,-24.696078264620155,-24.934012313373387,-25.1790416049771,-26.100995776243508,-25.674452447798103,-26.634588341228664,-25.91149379592389,-26.493031363002956,-26.84378560865298,-26.04979461338371,-25.074398190248758,-25.539206789340824,-26.42416250379756,-27.238396735861897,-26.34197011543438,-26.905774600803852,-26.02652543410659,-25.70046139275655,-25.005203898064792,-24.331071080174297,-25.21477693831548,-24.958147422410548,-24.059492549858987,-24.375758400652558,-25.057140222284943,-24.268460432067513,-23.368789442814887,-23.36543619679287,-23.956459529697895,-23.276253174524754,-23.241021095775068,-23.62396342214197,-24.139698070008308,-23.212637143675238,-22.89728919789195,-21.982176986522973,-22.002382130362093,-21.342234232462943,-20.781905848532915,-20.71259100176394,-20.643511351197958,-21.175365197937936,-21.823261664714664,-21.402921251486987,-20.712991036474705,-19.89289389178157,-20.58458571275696,-20.283121759071946,-20.44936906825751,-20.94078829837963,-20.22604069672525,-19.38115869415924,-19.83461010735482,-19.83600756060332,-20.443446417339146,-19.94391406979412,-20.00959361344576,-19.49759819312021,-20.26795737631619,-19.602962849196047,-18.85143057908863,-19.325066849589348,-20.207877977751195,-20.67822959739715,-20.70636910200119,-20.682002962566912,-20.023610753938556,-20.197490023449063,-20.76921577518806,-21.13113601738587,-20.98029974522069,-21.648576599080116,-21.785712431184947,-20.867503002285957,-20.54467012686655,-21.19701656419784,-20.704273416195065,-21.511456734500825,-21.361576159950346,-20.750032503623515,-20.500021793413907,-19.82121049100533,-19.019668905064464,-19.931095373816788,-20.561149798333645,-21.14769813604653,-21.46705943811685,-20.66042980691418,-20.836105783004314,-21.165329480543733,-20.451324542053044,-19.910312034655362,-20.643715294543654,-21.552222485188395,-21.29861107468605,-21.866779213771224,-22.23431801656261,-23.01291200472042,-23.97559353010729,-24.51976536307484,-25.235900353640318,-25.442680488340557,-24.594434838276356,-23.621501095592976,-23.14960813615471,-22.349685670342296,-21.805085070431232,-21.1969251120463,-20.78828200791031,-21.24801047425717,-21.892601860687137,-22.660341224167496,-22.962589409202337,-22.64964828081429,-21.685775485355407,-21.858438157010823,-22.26293893530965,-22.407923662569374,-21.59851576341316,-21.965774060226977,-22.917504829820246,-22.36463248776272,-22.359345994424075,-21.753018354531378,-21.448471752461046,-22.406544792000204,-23.02242920314893,-23.730170498602092,-23.048717439640313,-22.410231069196016,-23.21840031677857,-22.644340195227414,-23.602953629102558,-23.738259971607476,-23.65020686900243,-24.565503082238138,-25.15302365878597,-24.23223149450496,-23.294857531785965,-23.726633850950748,-23.398803220130503,-24.04775509191677,-23.964385270141065,-24.478841316886246,-25.408658808562905,-25.852950690779835,-25.178601277526468,-24.774774397723377,-25.06140953488648,-25.864482599310577,-26.188391947187483,-26.94990012375638,-27.45484301261604,-27.07588304579258,-26.94902454968542,-27.35416313353926,-27.734664876479656,-26.985571780707687,-27.269327003043145,-27.913712021894753,-28.00309164263308,-28.672467336524278,-29.37371899932623,-28.42680932348594,-28.10338238859549,-27.656779712531716,-26.685204322915524,-27.0388715271838,-26.551421962678432,-26.927315579727292,-26.911016270983964,-26.354708143509924,-26.762951980810612,-27.153204759117216,-27.862498400267214,-28.658691274933517,-28.227819370105863,-29.08632277790457,-28.780497608240694,-27.85593657847494,-28.17727919528261,-28.678289321251214,-27.74050776474178,-28.290680347476155,-28.978544734418392,-28.63502029981464,-28.30553632695228,-27.875144641380757,-27.808661392424256,-28.51070328662172,-28.29804036859423,-27.601364027243108,-28.574424056801945,-29.255243849940598,-30.06649839086458,-30.04296866012737,-29.224270360078663,-29.289332039654255,-28.465910695958883,-29.083170998375863,-28.676207022741437,-29.21257591433823,-29.499591149855405,-29.514359765686095,-29.580748865380883,-30.40130821056664,-29.444909563753754,-28.692679184488952,-29.14448443800211,-28.987604797817767,-29.16557862656191,-30.027486921288073,-29.519442939199507,-29.123904641717672,-29.703410170972347,-30.3794626458548,-30.218665583990514,-30.836133981123567,-31.35458435397595,-31.864462670870125,-31.922817698679864,-32.5059364316985,-32.28365309629589,-31.67222031345591,-31.543697948101908,-30.787449936848134,-30.243428031913936,-29.356155856978148,-30.08755544759333,-30.982391835656017,-31.465119570028037,-31.545895537827164,-31.83718742057681,-31.23281029611826,-32.13419843418524,-31.217550265137106,-32.00540338456631,-32.63594554690644,-32.96999204624444,-32.87210439518094,-33.65213464992121,-34.13272700412199,-33.56478257616982,-33.775956525933,-34.68988382583484,-34.538646498229355,-33.893486654385924,-33.167894517537206,-32.66265809489414,-33.34439743543044,-33.61070598941296,-32.86335089895874,-33.70097377570346,-34.68554324330762,-34.05662207165733,-33.19616696611047,-33.16733628092334,-33.39087258465588,-33.76679375721142,-33.400617545004934,-34.17752812709659,-33.79141171230003,-33.62400894379243,-33.61988402809948,-34.17126997560263,-34.89283806923777,-35.46325349668041,-35.77469604089856,-36.62575011467561,-36.12107018940151,-36.87455525808036,-36.10413058847189,-35.87044360395521,-36.745305106043816,-36.330410139635205,-35.49929757369682,-35.40937963174656,-36.26408144412562,-35.991407399997115,-35.6460467427969,-36.57577258674428,-37.54690960608423,-38.33051841473207,-39.027435928117484,-38.06945725530386,-38.52390173031017,-38.81190599827096,-38.64443835662678,-37.93944097915664,-37.00039307307452,-36.50435030274093,-35.52982048736885,-35.33112290594727,-34.86564378067851,-35.390119137242436,-34.439640362747014,-34.12851502932608,-33.51835785526782,-34.26535336347297,-34.891706799156964,-35.12164373137057,-34.749109842814505,-35.63729842985049,-34.74786584824324,-34.68592340964824,-34.234976849053055,-33.751785691361874,-34.15611122362316,-33.401314394082874,-33.044703791849315,-32.07788885803893,-33.04619015753269,-33.8656571819447,-34.33954114001244,-34.441948575899005,-34.55111648282036,-34.926271088887006,-34.993026327341795,-34.2075325017795,-33.408102272544056,-34.28822682937607,-33.520375325810164,-34.28218564717099,-34.16538589308038,-35.002426927443594,-35.690666237380356,-34.96774110244587,-35.44897455116734,-35.80612359754741,-35.26632097363472,-35.57912100479007,-35.5713947894983,-35.30128497444093,-34.76592952758074,-35.47147303214297,-36.3291627522558,-36.46509844902903,-36.562722054775804,-36.41366686997935,-36.37240485660732,-36.1622774223797,-36.63041071780026,-35.927845833823085,-35.90994945866987,-35.96006899001077,-35.87698591314256,-35.278662563767284,-35.1334216077812,-35.03671984327957,-34.21170721296221,-33.32307973410934,-34.03452920401469,-33.72085959278047,-34.63797845784575,-34.400896618142724,-34.732925701886415,-34.72115039359778,-34.001668852288276,-33.65605466859415,-33.928019938990474,-34.83958954690024,-34.24996249889955,-33.36334741069004,-32.7228047340177,-32.6335573499091,-32.98680386412889,-32.40508556831628,-32.07671992480755,-31.3995196451433,-31.15280127665028,-30.523945308290422,-30.206282689701766,-30.255247379187495,-30.397072517313063,-31.028934175614268,-31.86335854837671,-31.508551135659218,-32.070698785129935,-33.063796636182815,-33.07841459847987,-33.54788806755096,-32.718374928925186,-33.53096419526264,-33.831310369074345,-33.145558760967106,-32.192055066116154,-32.7827372783795,-31.953576335217804,-31.931079142726958,-31.21686638519168,-31.852482471615076,-32.371070680208504,-33.33355247275904,-32.728557127993554,-33.018690269906074,-33.5729557229206,-33.405590403825045,-32.978809252846986,-33.70413109380752,-33.60878610936925,-34.595313120633364,-35.312430820893496,-36.01825834624469,-35.77329582488164,-35.512797940988094,-36.34890236053616,-36.325870564207435,-35.58845992991701,-35.33515282254666,-35.74914296204224,-35.65046145301312,-35.69224043330178,-34.990366242360324,-34.66511809127405,-35.18850854318589,-36.183519209269434,-36.5529999146238,-36.14731911057606,-35.9663435597904,-36.204893578309566,-35.35142117040232,-35.16586407599971,-35.85279804142192,-34.86026070592925,-35.22124646604061,-34.86491920705885,-34.87119528418407,-33.922089028637856,-34.704405506141484,-34.89610895747319,-34.09174831956625,-33.55563296377659,-33.83574820449576,-33.17887213174254,-33.27980824094266,-33.104090944863856,-33.3182437508367,-33.569428777787834,-34.41544166672975,-33.53716920316219,-33.30988392792642,-33.1463232585229,-32.727411203086376,-31.915210349485278,-30.960164175834507,-31.008061656262726,-31.257380114402622,-31.963455255609006,-31.555585247464478,-30.818835576530546,-31.309653972275555,-30.59895055787638,-30.348928562831134,-31.08100524591282,-31.416209026239812,-31.485222705174237,-31.880223826505244,-31.252134817186743,-30.538448962848634,-30.824370400048792,-29.986487552523613,-29.210586023516953,-28.332915546372533,-27.608485732227564,-28.066924781072885,-27.986935748253018,-27.787824438419193,-27.030880835838616,-26.704441228415817,-27.004783872049302,-27.505232815630734,-26.72848887136206,-27.504294702783227,-28.23071696702391,-28.844295998103917,-29.465724615380168,-29.13397109415382,-29.436823284253478,-28.766951015684754,-28.67047602450475,-29.614358983468264,-28.87873245496303,-28.483950826805085,-27.556214281823486,-27.214427579194307,-27.39650882128626,-27.44851022120565,-28.261868990026414,-28.140776890330017,-28.145778716541827,-27.373912590555847,-27.550627351738513,-26.743503514677286,-26.448285116814077,-26.79814383527264,-27.684318490792066,-27.36654925579205,-28.006927350070328,-28.758457931224257,-29.290187080856413,-28.4649253138341,-27.494492966216058,-28.078955073375255,-27.413517208304256,-28.271596350707114,-28.705294385552406,-28.06012389762327,-27.2866915226914,-28.174494560807943,-27.453192894812673,-28.023135028779507,-27.062835182528943,-26.930638406891376,-26.814998331014067,-26.669736576732248,-26.29735806910321,-25.589659709017724,-25.18308968981728,-25.218575509265065,-24.96825400693342,-25.934850902296603,-26.333523666486144,-26.837197752669454,-27.44450056552887,-26.657821808476,-25.76076724892482,-25.010035312268883,-25.802379235159606,-26.266579363960773,-26.41538850683719,-25.59547567507252,-24.60639663366601,-24.04972616676241,-23.451287855859846,-23.072000470012426,-23.821496810764074,-24.79297590162605,-24.864939742255956,-25.13683650176972,-25.049017378594726,-24.541393282823265,-23.840662567410618,-23.519819491542876,-23.787729038856924,-22.847862283699214,-23.73701314209029,-22.831201371736825,-23.551136021502316,-22.886230335570872,-23.564782423898578,-23.653104309458286,-22.727214438840747,-21.790030274074525,-22.206685733050108,-21.467706228606403,-20.521389703731984,-20.87481767917052,-20.39304092247039,-20.78356931731105,-20.254128735512495,-19.66165604069829,-18.955720347352326,-18.51410880079493,-18.80466678692028,-19.413990065455437,-20.30947752762586,-21.024323719087988,-21.167884982656687,-21.541292660869658,-20.77308318996802,-20.26974389143288,-20.134560849051923,-19.225631090812385,-19.295369673054665,-19.798492828849703,-19.163160528056324,-18.93464545533061,-19.464166366960853,-19.36536518065259,-18.883958506397903,-18.191155198495835,-19.14491466851905,-19.9463554113172,-19.46291931718588,-20.433075856417418,-20.055063009727746,-19.427292915061116,-19.920349545311183,-20.91511752596125,-20.3253725906834,-19.950192949734628,-20.88653510529548,-20.342660892754793,-19.395933692809194,-19.46157924691215,-19.045479932799935,-19.297227339819074,-19.090671584941447,-18.802537895273417,-18.568697451613843,-17.94319926854223,-18.611328786239028,-19.35002282820642,-19.048683007247746,-19.700322287157178,-20.586044494062662,-19.689812807366252,-19.57999495184049,-19.20473512634635,-19.72239180887118,-20.61389941116795,-19.964157606940717,-20.842132742051035,-21.36666192440316,-21.283944154158235,-20.721306898631155,-20.86770138517022,-21.858603140339255,-22.43815549602732,-23.140531417448074,-22.28956228028983,-22.872957007959485,-22.89786392915994,-22.68856396758929,-22.033541148994118,-21.87939170561731,-21.267017198726535,-21.209716586396098,-22.07379212556407,-21.198857579845935,-20.926660601515323,-20.96796641824767,-20.60606296779588,-20.17259047413245,-20.02914431039244,-20.60351480450481,-20.588040546048433,-21.16532992850989,-21.97816957719624,-21.67517520254478,-22.661466563586146,-23.441796141676605,-22.98399873683229,-22.812098293565214,-23.501198292709887,-23.715908888261765,-23.25278797186911,-23.13043413963169,-22.172797481063753,-21.53932843822986,-22.373541814275086,-22.66062974417582,-23.608173012267798,-23.140459066722542,-24.139097411185503,-25.02364978240803,-25.8742855922319,-25.347444910556078,-25.817065646406263,-24.81820120383054,-25.306754474062473,-25.028330818284303,-25.381185905542225,-25.505523331463337,-26.46700597042218,-25.840605769772083,-26.598028314765543,-26.488642484880984,-26.80822535092011,-26.546062180772424,-25.84532871749252,-25.225324624683708,-25.32895104540512,-25.220143490470946,-25.678476217202842,-24.701308681629598,-25.559908343479037,-25.644198569003493,-25.87254676129669,-26.05551485531032,-25.914592587854713,-26.58574489178136,-27.56349602015689,-27.60634320322424,-27.70185675378889,-28.42128802696243,-27.840389074292034,-26.94550228724256,-27.32284429622814,-27.56637849844992,-26.857468832749873,-27.307311850599945,-28.224278631154448,-27.985158412717283,-27.115945698693395,-26.59080601716414,-26.213757485616952,-26.54258373612538,-27.170883692801,-27.15701660234481,-26.960955885238945,-27.135977430734783,-26.983152293600142,-26.116325296927243,-25.91974078817293,-26.02386002568528,-25.399814516305923,-25.92720967065543,-24.939601176418364,-25.4215605026111,-25.72305487282574,-25.529613361228257,-26.472418406046927,-27.129296340048313,-26.658233558293432,-26.41324738971889,-26.77954735001549,-26.577349442522973,-25.890983319375664,-26.809248414821923,-27.264264399651438,-27.5952235609293,-26.84173003397882,-26.968371039722115,-26.365465712267905,-26.8302527773194,-25.988781090825796,-25.146541236434132,-24.50354869477451,-24.73292917571962,-23.95205110218376,-23.920786274131387,-23.405969992745668,-23.86122000264004,-23.162324932403862,-23.18847360415384,-23.083580260165036,-22.429633024148643,-21.662500745616853,-21.727270323317498,-20.957649766933173,-20.766399155836552,-21.47619956266135,-20.558661366347224,-19.769244237802923,-18.9605222819373,-19.430055800825357,-20.055195963010192,-19.227556234691292,-18.54091016529128,-18.212240102235228,-18.628945701755583,-18.20414545154199,-18.876144162379205,-19.22006935160607,-20.042156499810517,-20.97189698088914,-21.423301755916327,-21.742927671410143,-22.056219008285552,-22.442021561786532,-22.30432800669223,-22.410362310241908,-23.264853990171105,-23.3222001157701,-23.988758804276586,-23.805639652069658,-23.232834666967392,-24.218723957892507,-23.69310144195333,-23.290475372225046,-22.72243719175458,-23.593498842790723,-24.055480962153524,-24.12775495927781,-24.132341754622757,-24.382378049194813,-24.293146789073944,-24.400618844665587,-23.781625614967197,-22.905513828620315,-22.621516008861363,-22.77532985806465,-23.72807983821258,-23.40482097165659,-23.596143945120275,-22.693943321704865,-22.741700418293476,-23.023799068294466,-23.982482408639044,-24.516571148764342,-24.71225667372346,-24.166589156724513,-25.141798246186227,-24.859960780013353,-25.057402928825468,-24.251349598169327,-23.5789381749928,-22.654104645363986,-21.886852263472974,-22.87083841348067,-22.68935295799747,-23.123589071445167,-22.163156495429575,-22.549284813925624,-21.865765226073563,-22.461686950176954,-23.325300075113773,-22.45783485332504,-22.76012424658984,-22.939755003433675,-23.7249820032157,-24.06240195641294,-23.502781466115266,-22.653597672469914,-21.862275259103626,-21.624779458157718,-22.279619324952364,-22.967102939728647,-22.252219549380243,-21.35616369312629,-22.016965603921562,-22.621768282260746,-23.182495986577123,-23.058256624266505,-23.17122979881242,-23.027593936771154,-22.52721870318055,-22.184986574109644,-21.528237546794116,-21.63438149681315,-21.49367147544399,-21.390646499115974,-21.32191207166761,-21.80389040755108,-20.89844633312896,-20.63915298320353,-20.5091447327286,-20.106402054429054,-20.872009380720556,-21.08364386577159,-20.50020938925445,-21.380969473626465,-22.04982395330444,-21.122034311760217,-20.81393837183714,-21.753453238867223,-22.712650127708912,-22.290651715360582,-22.18252873653546,-21.807651392184198,-20.877950558438897,-20.455214575398713,-20.95664812112227,-20.02450466528535,-20.356130921747535,-19.972503311000764,-19.58836587332189,-19.100373324006796,-19.604505471885204,-19.592396804131567,-18.88706564065069,-19.21375235170126,-20.175490099471062,-21.023810646496713,-20.07458379212767,-19.873870936688036,-19.658512575551867,-19.62575860740617,-19.597129000816494,-20.14286659285426,-20.226249936502427,-20.43345451587811,-20.711395802441984,-20.21921658795327,-19.424728247337043,-20.2332770973444,-19.356463732663542,-19.0627778256312,-18.702498297207057,-19.6286760577932,-19.98155990894884,-19.190698442049325,-19.2796305953525,-20.247733627445996,-20.400270387995988,-20.195675743278116,-20.63962241448462,-21.439077163580805,-20.957676192279905,-21.624636217020452,-21.952754586469382,-22.483984204940498,-23.246969951782376,-23.566774517297745,-23.516276438254863,-23.66696650488302,-22.765156385488808,-23.597809821367264,-23.830519466660917,-24.659880299586803,-25.240945308003575,-24.828981306403875,-25.07356516784057,-24.844858325086534,-25.439303093589842,-25.308687048964202,-24.5268912515603,-25.348516007885337,-26.136584607884288,-26.66163022769615,-25.723601766396314,-25.46949935844168,-26.293205677066,-26.207848721183836,-25.287229737266898,-25.119150502141565,-25.83643197733909,-24.87384646711871,-24.29077820526436,-23.9008745290339,-23.356100710574538,-23.18005753448233,-23.983683881815523,-23.338065907359123,-22.379639958031476,-22.109938661567867,-21.196457663550973,-20.380597533658147,-20.053837575484067,-19.90726107545197,-19.861488881055266,-20.29549603862688,-21.091209197882563,-20.61801174795255,-21.39300394197926,-20.9018891165033,-21.67225842969492,-21.23466956289485,-21.76584134856239,-21.535548558458686,-20.949109652545303,-21.17188064614311,-21.669081759173423,-22.467478157486767,-22.64638971351087,-23.59191618580371,-24.402334895450622,-24.904615223873407,-24.09706603270024,-23.293280018027872,-24.1386594241485,-23.46369267720729,-23.04862689692527,-22.80100440233946,-22.97499967040494,-22.448931546416134,-21.468717070762068,-21.75379840983078,-22.021352930925786,-22.79775392776355,-23.46647510677576,-23.397491061128676,-22.492767626419663,-22.024384477175772,-21.391251234337687,-21.11907271295786,-21.936648031696677,-21.61124838097021,-21.327055666130036,-22.16017137421295,-21.774022956378758,-21.527930127456784,-21.037859328556806,-21.08572832029313,-21.76199203496799,-22.75204978697002,-23.318327778950334,-24.316155972890556,-24.593659174628556,-23.808976228814572,-24.483361104968935,-24.851159509737045,-24.70739792753011,-25.319630889222026,-25.337198048830032,-26.078721733763814,-25.355690754950047,-24.99937675939873,-24.29977581417188,-23.768407995812595,-23.51286262460053,-23.827975403517485,-23.981892198789865,-24.86758926603943,-25.72781666740775,-25.38964323885739,-26.313132972456515,-25.63526454474777,-25.602282845880836,-25.36655475758016,-25.52502454025671,-25.194609496276826,-25.636933675967157,-25.949399107135832,-25.66333303321153,-25.309592007193714,-25.272586029954255,-25.05896995216608,-25.86630343552679,-26.774700850248337,-27.61179109616205,-27.241989112924784,-27.989444370847195,-27.997988384217024,-28.297929737251252,-28.46202796511352,-28.90888683591038,-27.96342338901013,-28.526291297748685,-28.259383770637214,-28.231749646831304,-28.733933446463197,-29.19120792672038,-29.00478140451014,-29.85132208839059,-29.059612218290567,-28.57276375312358,-28.083344301674515,-28.615710305515677,-27.98907871497795,-28.957666295580566,-29.51153935911134,-29.06979123223573],"type":"scatter3d"},{"customdata":[["2024-07-25T23:35:05.010000"]],"hovertemplate":"color=8\u003cbr\u003ea=%{x}\u003cbr\u003eb=%{y}\u003cbr\u003ec=%{z}\u003cbr\u003etimestamp=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"8","line":{"color":"#FF97FF","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"8","scene":"scene","showlegend":true,"x":[253.07364957686514],"y":[89.97498598974198],"z":[-28.430676771327853],"type":"scatter3d"}],                        {"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"},"margin":{"b":0,"l":0,"r":0,"t":30}}},"scene":{"domain":{"x":[0.0,1.0],"y":[0.0,1.0]},"xaxis":{"title":{"text":"a"}},"yaxis":{"title":{"text":"b"}},"zaxis":{"title":{"text":"c"}}},"legend":{"title":{"text":"color"},"tracegroupgap":0}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('5ac06596-4687-40d4-98ef-555bbdc08734');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
</section>
<section id="talking" class="level2">
<h2 class="anchored" data-anchor-id="talking">Talking</h2>
<p>We’ve made our random cube and we’ve made it walk, but now we want to make it talk. At this point, you might be questioning the utility of this blog post – what are we doing and why? The purpose is to demonstrate generating synthetic data that can look realistic. We achieve this by building in randomness (e.g.&nbsp;a random walk can be used to simulate stock prices) and also by using that randomness to inform the generation of non-numeric synthetic data (e.g.&nbsp;the ticker symbol of a stock).</p>
<section id="faking-it" class="level3">
<h3 class="anchored" data-anchor-id="faking-it">Faking it</h3>
<p>Let’s demonstrate this concept by pretending we have an application where users can review a location they’re at. The user’s name, comment, location, and device info are stored in our database for their review at a given timestamp.</p>
<p><a href="https://github.com/joke2k/faker">Faker</a> is a commonly used Python library for generating fake data. We’ll use it to generate fake names, comments, locations, and device info for our reviews:</p>
<div id="67d9f452" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> faker <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Faker</span>
<span id="cb5-2"></span>
<span id="cb5-3">fake <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> Faker()</span>
<span id="cb5-4"></span>
<span id="cb5-5">res <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb5-6">    fake.name(),</span>
<span id="cb5-7">    fake.sentence(),</span>
<span id="cb5-8">    fake.location_on_land(),</span>
<span id="cb5-9">    fake.user_agent(),</span>
<span id="cb5-10">    fake.ipv4(),</span>
<span id="cb5-11">)</span>
<span id="cb5-12">res</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="6">
<pre><code>('Robyn Foster',
 'Employee security there meeting.',
 ('41.75338', '-86.11084', 'Granger', 'US', 'America/Indiana/Indianapolis'),
 'Mozilla/5.0 (iPod; U; CPU iPhone OS 3_2 like Mac OS X; unm-US) AppleWebKit/533.16.7 (KHTML, like Gecko) Version/3.0.5 Mobile/8B118 Safari/6533.16.7',
 '119.243.96.150')</code></pre>
</div>
</div>
<p>We can use our random numbers to influence the fake data generation in a Python UDF:</p>
<div id="907d2dc8" class="cell" data-execution_count="9">
<details class="code-fold">
<summary>Show me the code!</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.expr.datatypes <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> dt</span>
<span id="cb7-2"></span>
<span id="cb7-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> datetime <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> datetime, timedelta</span>
<span id="cb7-4"></span>
<span id="cb7-5">ibis.options.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">repr</span>.interactive.max_length <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span></span>
<span id="cb7-6"></span>
<span id="cb7-7">record_schema <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> dt.Struct(</span>
<span id="cb7-8">    {</span>
<span id="cb7-9">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>: datetime,</span>
<span id="cb7-10">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"name"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>,</span>
<span id="cb7-11">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"comment"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>,</span>
<span id="cb7-12">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"location"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>[<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>],</span>
<span id="cb7-13">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"device"</span>: dt.Struct(</span>
<span id="cb7-14">            {</span>
<span id="cb7-15">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"browser"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>,</span>
<span id="cb7-16">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ip"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>,</span>
<span id="cb7-17">            }</span>
<span id="cb7-18">        ),</span>
<span id="cb7-19">    }</span>
<span id="cb7-20">)</span>
<span id="cb7-21"></span>
<span id="cb7-22"></span>
<span id="cb7-23"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@ibis.udf.scalar.python</span></span>
<span id="cb7-24"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> faked_batch(</span>
<span id="cb7-25">    timestamp: datetime,</span>
<span id="cb7-26">    a: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>,</span>
<span id="cb7-27">    b: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>,</span>
<span id="cb7-28">    c: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">float</span>,</span>
<span id="cb7-29">    batch_size: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">8</span>,</span>
<span id="cb7-30">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> dt.Array(record_schema):</span>
<span id="cb7-31">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb7-32"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Generate records of fake data.</span></span>
<span id="cb7-33"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb7-34">    value <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (a <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> b <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> c) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span></span>
<span id="cb7-35"></span>
<span id="cb7-36">    res <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [</span>
<span id="cb7-37">        {</span>
<span id="cb7-38">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>: timestamp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> timedelta(seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.1</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> i),</span>
<span id="cb7-39">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"name"</span>: fake.name() <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> value <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;=</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.5</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">else</span> fake.first_name(),</span>
<span id="cb7-40">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"comment"</span>: fake.sentence(),</span>
<span id="cb7-41">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"location"</span>: fake.location_on_land(),</span>
<span id="cb7-42">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"device"</span>: {</span>
<span id="cb7-43">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"browser"</span>: fake.user_agent(),</span>
<span id="cb7-44">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ip"</span>: fake.ipv4() <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> value <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">else</span> fake.ipv6(),</span>
<span id="cb7-45">            },</span>
<span id="cb7-46">        }</span>
<span id="cb7-47">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> i <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(batch_size)</span>
<span id="cb7-48">    ]</span>
<span id="cb7-49"></span>
<span id="cb7-50">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> res</span>
<span id="cb7-51"></span>
<span id="cb7-52"></span>
<span id="cb7-53"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"faked"</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> con.list_tables():</span>
<span id="cb7-54">    faked <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"faked"</span>)</span>
<span id="cb7-55"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">else</span>:</span>
<span id="cb7-56">    faked <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb7-57">        t.mutate(</span>
<span id="cb7-58">            faked<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>faked_batch(t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c"</span>]),</span>
<span id="cb7-59">        )</span>
<span id="cb7-60">        .select(</span>
<span id="cb7-61">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>,</span>
<span id="cb7-62">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>,</span>
<span id="cb7-63">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c"</span>,</span>
<span id="cb7-64">            ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"faked"</span>].unnest(),</span>
<span id="cb7-65">        )</span>
<span id="cb7-66">        .unpack(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"faked"</span>)</span>
<span id="cb7-67">        .drop(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"a"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"b"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c"</span>)</span>
<span id="cb7-68">    )</span>
<span id="cb7-69"></span>
<span id="cb7-70">    faked <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.create_table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"faked"</span>, faked)</span>
<span id="cb7-71"></span>
<span id="cb7-72">faked</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="8">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> timestamp               </span>┃<span style="font-weight: bold"> name   </span>┃<span style="font-weight: bold"> comment                                 </span>┃<span style="font-weight: bold"> location                                                          </span>┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">timestamp(6)</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">array&lt;string&gt;</span>                                                     │
├─────────────────────────┼────────┼─────────────────────────────────────────┼───────────────────────────────────────────────────────────────────┤
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:06.010</span> │ <span style="color: #008000; text-decoration-color: #008000">Glenda</span> │ <span style="color: #008000; text-decoration-color: #008000">Than available eye.                    </span> │ <span style="font-weight: bold">[</span><span style="color: #008000; text-decoration-color: #008000">'13.65805'</span>, <span style="color: #008000; text-decoration-color: #008000">'102.56365'</span>, <span style="color: #008000; text-decoration-color: #008000">'Paoy Paet'</span>, <span style="color: #008000; text-decoration-color: #008000">'KH'</span>, <span style="color: #008000; text-decoration-color: #008000">'Asia/Phnom_Penh'</span><span style="font-weight: bold">]</span>   │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:06.110</span> │ <span style="color: #008000; text-decoration-color: #008000">Trevor</span> │ <span style="color: #008000; text-decoration-color: #008000">Ability commercial admit adult he.     </span> │ <span style="font-weight: bold">[</span><span style="color: #008000; text-decoration-color: #008000">'56.9083'</span>, <span style="color: #008000; text-decoration-color: #008000">'60.8019'</span>, <span style="color: #008000; text-decoration-color: #008000">'Beryozovsky'</span>, <span style="color: #008000; text-decoration-color: #008000">'RU'</span>, <span style="color: #008000; text-decoration-color: #008000">'Asia/Yekaterinburg'</span><span style="font-weight: bold">]</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:06.210</span> │ <span style="color: #008000; text-decoration-color: #008000">Janet </span> │ <span style="color: #008000; text-decoration-color: #008000">Sign fact time against energy.         </span> │ <span style="font-weight: bold">[</span><span style="color: #008000; text-decoration-color: #008000">'25.66795'</span>, <span style="color: #008000; text-decoration-color: #008000">'85.83636'</span>, <span style="color: #008000; text-decoration-color: #008000">'Dalsingh Sarai'</span>, <span style="color: #008000; text-decoration-color: #008000">'IN'</span>, <span style="color: #008000; text-decoration-color: #008000">'Asia/Kolkata'</span><span style="font-weight: bold">]</span>  │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:06.310</span> │ <span style="color: #008000; text-decoration-color: #008000">Angela</span> │ <span style="color: #008000; text-decoration-color: #008000">Happen Democrat public office whatever.</span> │ <span style="font-weight: bold">[</span><span style="color: #008000; text-decoration-color: #008000">'45.78071'</span>, <span style="color: #008000; text-decoration-color: #008000">'12.84052'</span>, <span style="color: #008000; text-decoration-color: #008000">'Portogruaro'</span>, <span style="color: #008000; text-decoration-color: #008000">'IT'</span>, <span style="color: #008000; text-decoration-color: #008000">'Europe/Rome'</span><span style="font-weight: bold">]</span>      │
│ <span style="color: #800080; text-decoration-color: #800080">2024-07-23 23:35:06.410</span> │ <span style="color: #008000; text-decoration-color: #008000">Donna </span> │ <span style="color: #008000; text-decoration-color: #008000">Travel none coach crime within lawyer. </span> │ <span style="font-weight: bold">[</span><span style="color: #008000; text-decoration-color: #008000">'28.15112'</span>, <span style="color: #008000; text-decoration-color: #008000">'-82.46148'</span>, <span style="color: #008000; text-decoration-color: #008000">'Lutz'</span>, <span style="color: #008000; text-decoration-color: #008000">'US'</span>, <span style="color: #008000; text-decoration-color: #008000">'America/New_York'</span><span style="font-weight: bold">]</span>       │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                                       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                                                                 │
└─────────────────────────┴────────┴─────────────────────────────────────────┴───────────────────────────────────────────────────────────────────┘
</pre>
</div>
</div>
<p>And now we have a “realistic” dataset of fake reviews matching our desired schema. You can adjust this to match the schema and expected distributions of your own data and scale it up as needed.</p>
</section>
<section id="genaillms" class="level3">
<h3 class="anchored" data-anchor-id="genaillms">GenAI/LLMs</h3>
<p>The names and locations from Faker are bland and unrealistic. The comments are nonsensical. <del>And most importantly, we haven’t filled our quota for blogs mentioning AI.</del> You could <a href="../../posts/lms-for-data/index.html">use language models in Ibis UDFs to generate more realistic synthetic data</a>. We could use “open source” language models to do this locally for free, an exercise left to the reader.</p>
</section>
</section>
<section id="next-steps" class="level2">
<h2 class="anchored" data-anchor-id="next-steps">Next steps</h2>
<p>If you’ve followed along, you have a <code>synthetic.ddb</code> file with a couple tables:</p>
<div id="80c2fa0f" class="cell" data-execution_count="10">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1">con.list_tables()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="9">
<pre><code>['faked', 'source']</code></pre>
</div>
</div>
<p>We can estimate the size of data generated:</p>
<div id="eef14b3e" class="cell" data-execution_count="11">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> os</span>
<span id="cb10-2"></span>
<span id="cb10-3">size_in_mbs <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> os.path.getsize(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"synthetic.ddb"</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1024</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1024</span>)</span>
<span id="cb10-4"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"synthetic.ddb: </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>size_in_mbs<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:.2f}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;"> MBs"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-stdout">
<pre><code>synthetic.ddb: 54.51 MBs</code></pre>
</div>
</div>
<p>You can build from here to generate realistic synthetic data at any scale for any use case.</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>duckdb</category>
  <category>udfs</category>
  <guid>https://ibis-project.org/posts/walking-talking-cube/</guid>
  <pubDate>Thu, 26 Sep 2024 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/walking-talking-cube/thumbnail.png" medium="image" type="image/png" height="95" width="144"/>
</item>
<item>
  <title>From query to plot: Exploring GeoParquet Overture Maps with Ibis, DuckDB, and Lonboard</title>
  <dc:creator>Naty Clementi and Kyle Barron</dc:creator>
  <link>https://ibis-project.org/posts/ibis-overturemaps/</link>
  <description><![CDATA[ 






<p>With the release of <code>DuckDB 1.1.1</code>, now we have support for reading GeoParquet files! With this exciting update we can query rich datasets from Overture Maps using python via Ibis with the performance of <code>DuckDB</code>.</p>
<p>But the good news doesn’t stop there, since <code>Ibis 9.2</code>, <code>lonboard</code> can plot data directly from an <code>Ibis</code> table, adding more simplicity and speed to your geospatial analysis.</p>
<p>Let’s dive into how these tools come together.</p>
<section id="installation" class="level2">
<h2 class="anchored" data-anchor-id="installation">Installation</h2>
<p>First make sure you have <code>duckdb&gt;=1.1.1</code>, then install Ibis with the dependencies needed to work with geospatial data using DuckDB.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">$</span> pip install <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'duckdb&gt;=1.1.1'</span></span>
<span id="cb1-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">$</span> pip install <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'ibis-framework[duckdb,geospatial]'</span> lonboard</span></code></pre></div></div>
</section>
<section id="motivation" class="level2">
<h2 class="anchored" data-anchor-id="motivation">Motivation</h2>
<p>Overture Maps is an open-source initiative that provides high-quality, interoperable map data by integrating contributions from leading companies and open data sources to support a wide range of applications.</p>
<p>Overture Maps offers a variety of datasets to query. For example, there is plenty of information about power infrastructure.</p>
<p>Let’s create some plots of the U.S. power infrastructure. We’ll look into power plants and power lines for the lower 48 states (excluding Hawaii and Alaska for simplicity of the bounding box).</p>
</section>
<section id="download-data" class="level2">
<h2 class="anchored" data-anchor-id="download-data">Download data</h2>
<p>First we import Ibis, its <a href="https://ibis-project.org/reference/expression-generic.html#ibis.expr.api.deferred">deferred expression object</a> <code>_</code> , and we use our default backend, DuckDB:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb2-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> _</span>
<span id="cb2-3"></span>
<span id="cb2-4">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.get_backend() <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># default duckdb backend</span></span></code></pre></div></div>
<p>With Ibis and DuckDB we can be more specific about the data we want thanks to the filter push down. For example, if we want to select only a few columns and look only at the power infrastructure when can do this as follow.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># look into type infrastructure</span></span>
<span id="cb3-2">url <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb3-3">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"s3://overturemaps-us-west-2/release/2024-07-22.0/theme=base/type=infrastructure/*"</span></span>
<span id="cb3-4">)</span>
<span id="cb3-5">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.read_parquet(url, table_name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"infra-usa"</span>)</span>
<span id="cb3-6"></span>
<span id="cb3-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># filter for USA bounding box, subtype="power", and selecting only few columns</span></span>
<span id="cb3-8">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(</span>
<span id="cb3-9">    _.bbox.xmin <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">125.0</span>,</span>
<span id="cb3-10">    _.bbox.ymin <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">24.8</span>,</span>
<span id="cb3-11">    _.bbox.xmax <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">65.8</span>,</span>
<span id="cb3-12">    _.bbox.ymax <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">49.2</span>,</span>
<span id="cb3-13">    _.subtype <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"power"</span>,</span>
<span id="cb3-14">).select([<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"names"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"geometry"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"bbox"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"class"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sources"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"source_tags"</span>])</span></code></pre></div></div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>If you inspect expr, you can see that the filters and projections get pushed down, meaning you only download the data that you asked for.</p>
</div>
</div>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1">con.to_parquet(expr, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"power-infra-usa.geoparquet"</span>)</span></code></pre></div></div>
<p>Now that we have the data lets explore it in Ibis interactive mode and make some beautiful maps.</p>
</section>
<section id="data-exploration" class="level2">
<h2 class="anchored" data-anchor-id="data-exploration">Data exploration</h2>
<p>To explore the data interactively we turn on the interactive mode:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1">ibis.options.interactive <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span></code></pre></div></div>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1">usa_power_infra <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.read_parquet(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"power-infra-usa.geoparquet"</span>)</span>
<span id="cb6-2">usa_power_infra</span></code></pre></div></div>
<p>Let’s quickly rename the <code>class</code> column, since this is a reserved word and causes conflicts when using the deferred operator:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1">usa_power_infra <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> usa_power_infra.rename(infra_class<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"class"</span>)</span></code></pre></div></div>
<p>We take a look at the different classes of infrastructure under the subtype power:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1">usa_power_infra.infra_class.value_counts().order_by(</span>
<span id="cb8-2">    ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"infra_class_count"</span>)</span>
<span id="cb8-3">).preview(max_rows<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">15</span>)</span></code></pre></div></div>
<p>Looks like we have <code>plant</code>, <code>power_line</code> and <code>minor_line</code> among others.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1">plants <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> usa_power_infra.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(_.infra_class<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"plant"</span>)</span>
<span id="cb9-2">power_lines <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> usa_power_infra.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(_.infra_class<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"power_line"</span>)</span>
<span id="cb9-3">minor_lines <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> usa_power_infra.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(_.infra_class<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"minor_line"</span>)</span></code></pre></div></div>
</section>
<section id="plotting-with-lonboard" class="level2">
<h2 class="anchored" data-anchor-id="plotting-with-lonboard">Plotting with Lonboard</h2>
<p>Lonboard is a Python plotting library optimized for efficient visualizations of large geospatial data. It integrates well with Ibis and DuckDB, making interactive plotting scalable.</p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>You can try this in your machine, for the purpose the blog file size, we will show screenshots of the visualization</p>
</div>
</div>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> lonboard</span>
<span id="cb10-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> lonboard.basemap <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> CartoBasemap <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># to choose color of basemap</span></span></code></pre></div></div>
<p>Let’s visualize the <code>power plants</code></p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1">lonboard.viz(</span>
<span id="cb11-2">    plants,</span>
<span id="cb11-3">    scatterplot_kwargs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"get_fill_color"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"red"</span>},</span>
<span id="cb11-4">    polygon_kwargs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"get_fill_color"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"red"</span>},</span>
<span id="cb11-5">    map_kwargs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb11-6">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"basemap_style"</span>: CartoBasemap.Positron,</span>
<span id="cb11-7">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"view_state"</span>: {<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"longitude"</span>: <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"latitude"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">36</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zoom"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>},</span>
<span id="cb11-8">    },</span>
<span id="cb11-9">)</span></code></pre></div></div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/ibis-overturemaps/usa-power-plants.png" class="img-fluid figure-img"></p>
<figcaption>Power plants in the USA</figcaption>
</figure>
</div>
<p>If you are visualizing this in your machine, you can zoom in and see some of the geometry where the plants are located. As an example, we can plot in a small area of California:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb12-1">plants_CA <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> plants.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(</span>
<span id="cb12-2">    _.bbox.xmin.between(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">118.6</span>, <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">117.9</span>), _.bbox.ymin.between(<span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">34.5</span>, <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">35.3</span>)</span>
<span id="cb12-3">).select(_.names.primary, _.geometry)</span></code></pre></div></div>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb13-1">lonboard.viz(</span>
<span id="cb13-2">    plants_CA,</span>
<span id="cb13-3">    scatterplot_kwargs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"get_fill_color"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"red"</span>},</span>
<span id="cb13-4">    polygon_kwargs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"get_fill_color"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"red"</span>},</span>
<span id="cb13-5">    map_kwargs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb13-6">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"basemap_style"</span>: CartoBasemap.Positron,</span>
<span id="cb13-7">    },</span>
<span id="cb13-8">)</span></code></pre></div></div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/ibis-overturemaps/ca-power-plants.png" class="img-fluid figure-img"></p>
<figcaption>Power plants near Lancaster, CA</figcaption>
</figure>
</div>
<p>We can also visualize together the <code>power_lines</code> and the <code>minor_lines</code> by doing:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb14-1">lonboard.viz([minor_lines, power_lines])</span></code></pre></div></div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/ibis-overturemaps/usa-power-and-minor-lines.png" class="img-fluid figure-img"></p>
<figcaption>Minor and Power lines of USA</figcaption>
</figure>
</div>
<p>and that’s how you can visualize ~7 million coordinates from the comfort of your laptop.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb15-1"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;&gt;&gt;</span> power_lines.geometry.n_points().<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()</span>
<span id="cb15-2"><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5329836</span></span>
<span id="cb15-3"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;&gt;&gt;</span> minor_lines.geometry.n_points().<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()</span>
<span id="cb15-4"><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1430042</span></span></code></pre></div></div>
<p>With Ibis and DuckDB working with geospatial data has never been easier or faster. We saw how to query a dataset from Overture Maps with the simplicity of Python and the performance of DuckDB. Last but not least, we saw how simple and quick Lonboard got us from query-to-plot. Together, these libraries make exploring and handling geospatial data a breeze.</p>
</section>
<section id="resources" class="level2">
<h2 class="anchored" data-anchor-id="resources">Resources</h2>
<ul>
<li><a href="https://ibis-project.org/">Ibis Docs</a></li>
<li><a href="https://developmentseed.org/lonboard/latest/">Lonboard Docs</a></li>
<li><a href="https://duckdb.org/docs/extensions/spatial.html">DuckDB spatial extension</a></li>
<li><a href="https://github.com/duckdb/duckdb_spatial/blob/main/docs/functions.md">DuckDB spatial functions docs</a></li>
</ul>
<p>Chat with us on Zulip:</p>
<ul>
<li><a href="https://ibis-project.zulipchat.com/">Ibis Zulip Chat</a></li>
</ul>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>duckdb</category>
  <category>overturemaps</category>
  <category>lonboard</category>
  <category>geospatial</category>
  <guid>https://ibis-project.org/posts/ibis-overturemaps/</guid>
  <pubDate>Wed, 25 Sep 2024 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Better PyPI stats with Python</title>
  <dc:creator>Cody Peterson</dc:creator>
  <link>https://ibis-project.org/posts/better-pypi-stats/</link>
  <description><![CDATA[ 






<p><strong><em>Ibis + ClickHouse + Shiny for Python = better PyPI stats.</em></strong></p>
<section id="overview" class="level2">
<h2 class="anchored" data-anchor-id="overview">Overview</h2>
<p><a href="https://pypistats.org/about">PyPI Stats</a> is a great resource for Python package download statistics from PyPI. However, it only contains 180 days of data and lacks more detailed analysis we might be interested in. In this post, we’ll build a dynamic Python application for better PyPI stats using <a href="https://github.com/clickhouse/clickhouse">ClickHouse</a> as our data platform, <a href="https://github.com/ibis-project/ibis">Ibis</a> as our Python data interface, and <a href="https://github.com/posit-dev/py-shiny">Shiny for Python</a> as our dashboarding tool.</p>
<div class="callout callout-style-default callout-note callout-titled" title="What about ClickPy?">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>What about ClickPy?
</div>
</div>
<div class="callout-body-container callout-body">
<p><a href="https://github.com/ClickHouse/clickpy">ClickPy</a> is an existing open source and reproducible project built on the same data with ClickHouse. The primary difference is that ClickPy uses SQL and JavaScript whereas this project is in Python. We also focus on different visualizations and metrics.</p>
</div>
</div>
</section>
<section id="prerequisites" class="level2">
<h2 class="anchored" data-anchor-id="prerequisites">Prerequisites</h2>
<p>Install the required dependencies:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'ibis-framework[clickhouse]'</span> plotly</span></code></pre></div></div>
<p>Then run imports and setup:</p>
<div id="35a43503" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb2-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> plotly.express <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> px</span>
<span id="cb2-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> clickhouse_connect</span>
<span id="cb2-4"></span>
<span id="cb2-5">px.defaults.template <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"plotly_dark"</span></span>
<span id="cb2-6">ibis.options.interactive <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span></code></pre></div></div>
</div>
</section>
<section id="connecting-to-clickhouse" class="level2">
<h2 class="anchored" data-anchor-id="connecting-to-clickhouse">Connecting to ClickHouse</h2>
<p>You can connect to the public ClickHouse playground’s PyPI database:</p>
<div id="5c8d30ee" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1">host <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"clickpy-clickhouse.clickhouse.com"</span></span>
<span id="cb3-2">port <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">443</span></span>
<span id="cb3-3">user <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"play"</span></span>
<span id="cb3-4">database <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pypi"</span></span>
<span id="cb3-5"></span>
<span id="cb3-6">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.clickhouse.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(</span>
<span id="cb3-7">    host<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>host,</span>
<span id="cb3-8">    port<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>port,</span>
<span id="cb3-9">    user<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>user,</span>
<span id="cb3-10">    database<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>database,</span>
<span id="cb3-11">)</span>
<span id="cb3-12">con.list_tables()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="122">
<pre><code>['countries',
 'countries_dict',
 'last_updated_dict',
 'projects',
 'pypi',
 'pypi_downloads',
 'pypi_downloads_by_version',
 'pypi_downloads_by_version_mv',
 'pypi_downloads_max_min',
 'pypi_downloads_max_min_mv',
 'pypi_downloads_mv',
 'pypi_downloads_per_day',
 'pypi_downloads_per_day_by_version',
 'pypi_downloads_per_day_by_version_by_country',
 'pypi_downloads_per_day_by_version_by_country_mv',
 'pypi_downloads_per_day_by_version_by_file_type',
 'pypi_downloads_per_day_by_version_by_file_type_mv',
 'pypi_downloads_per_day_by_version_by_installer_by_type',
 'pypi_downloads_per_day_by_version_by_installer_by_type_by_country',
 'pypi_downloads_per_day_by_version_by_installer_by_type_by_country_mv',
 'pypi_downloads_per_day_by_version_by_installer_by_type_mv',
 'pypi_downloads_per_day_by_version_by_python',
 'pypi_downloads_per_day_by_version_by_python_by_country',
 'pypi_downloads_per_day_by_version_by_python_by_country_mv',
 'pypi_downloads_per_day_by_version_by_python_mv',
 'pypi_downloads_per_day_by_version_by_system',
 'pypi_downloads_per_day_by_version_by_system_by_country',
 'pypi_downloads_per_day_by_version_by_system_by_country_mv',
 'pypi_downloads_per_day_by_version_by_system_mv',
 'pypi_downloads_per_day_by_version_mv',
 'pypi_downloads_per_day_mv',
 'pypi_downloads_per_month',
 'pypi_downloads_per_month_mv']</code></pre>
</div>
</div>
</section>
<section id="top-packages-by-downloads" class="level2">
<h2 class="anchored" data-anchor-id="top-packages-by-downloads">Top packages by downloads</h2>
<p>Let’s start by looking at the most downloaded packages:</p>
<div id="4f28fe0b" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1">overall_t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pypi_downloads"</span>)</span>
<span id="cb5-2"></span>
<span id="cb5-3">top_k <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10_000</span></span>
<span id="cb5-4">overall_t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb5-5">    overall_t.order_by(ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"count"</span>))</span>
<span id="cb5-6">    .limit(top_k)</span>
<span id="cb5-7">    .mutate(rank<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> ibis.row_number().over(order_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"count"</span>)))</span>
<span id="cb5-8">    .rename({<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"downloads"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"count"</span>})</span>
<span id="cb5-9">    .relocate(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"rank"</span>)</span>
<span id="cb5-10">    .order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"rank"</span>)</span>
<span id="cb5-11">)</span>
<span id="cb5-12">overall_t</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="123">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> rank  </span>┃<span style="font-weight: bold"> project         </span>┃<span style="font-weight: bold"> downloads   </span>┃
┡━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!string</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!int64</span>      │
├───────┼─────────────────┼─────────────┤
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">boto3          </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">25779423674</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │ <span style="color: #008000; text-decoration-color: #008000">urllib3        </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16339094961</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │ <span style="color: #008000; text-decoration-color: #008000">botocore       </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">15210036424</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │ <span style="color: #008000; text-decoration-color: #008000">requests       </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13514466781</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │ <span style="color: #008000; text-decoration-color: #008000">setuptools     </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12656259406</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span> │ <span style="color: #008000; text-decoration-color: #008000">idna           </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11843633399</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7</span> │ <span style="color: #008000; text-decoration-color: #008000">certifi        </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11823436764</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8</span> │ <span style="color: #008000; text-decoration-color: #008000">s3transfer     </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11059293057</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span> │ <span style="color: #008000; text-decoration-color: #008000">six            </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10982223268</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10</span> │ <span style="color: #008000; text-decoration-color: #008000">python-dateutil</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10756832919</span> │
│     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>               │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└───────┴─────────────────┴─────────────┘
</pre>
</div>
</div>
</section>
<section id="analyzing-downloads-for-a-package" class="level2">
<h2 class="anchored" data-anchor-id="analyzing-downloads-for-a-package">Analyzing downloads for a package</h2>
<p>Let’s choose a package to analyze:</p>
<div id="25d25e25" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1">project <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"clickhouse-connect"</span></span></code></pre></div></div>
</div>
<p>And see where it ranks in the top downloads:</p>
<div id="d78f47dc" class="cell" data-execution_count="6">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1">overall_t.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(overall_t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"project"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> project)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="125">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃<span style="font-weight: bold"> rank  </span>┃<span style="font-weight: bold"> project            </span>┃<span style="font-weight: bold"> downloads </span>┃
┡━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!int64</span>    │
├───────┼────────────────────┼───────────┤
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2303</span> │ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">23148161</span> │
└───────┴────────────────────┴───────────┘
</pre>
</div>
</div>
<p>Let’s look at downloads per day by various categories for this package:</p>
<div id="08381aa9" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1">downloads_t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.table(</span>
<span id="cb8-2">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pypi_downloads_per_day_by_version_by_installer_by_type_by_country"</span></span>
<span id="cb8-3">).<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"project"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> project)</span>
<span id="cb8-4">downloads_t</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="126">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┓
┃<span style="font-weight: bold"> project            </span>┃<span style="font-weight: bold"> version </span>┃<span style="font-weight: bold"> date       </span>┃<span style="font-weight: bold"> installer    </span>┃<span style="font-weight: bold"> type        </span>┃<span style="font-weight: bold"> country_code </span>┃<span style="font-weight: bold"> count  </span>┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!date</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!string</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!string</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">!int64</span> │
├────────────────────┼─────────┼────────────┼──────────────┼─────────────┼──────────────┼────────┤
│ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │ <span style="color: #008000; text-decoration-color: #008000">0.2.10 </span> │ <span style="color: #800080; text-decoration-color: #800080">2024-08-29</span> │ <span style="color: #008000; text-decoration-color: #008000">bandersnatch</span> │ <span style="color: #008000; text-decoration-color: #008000">bdist_wheel</span> │ <span style="color: #008000; text-decoration-color: #008000">US          </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18</span> │
│ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │ <span style="color: #008000; text-decoration-color: #008000">0.2.10 </span> │ <span style="color: #800080; text-decoration-color: #800080">2024-08-29</span> │ <span style="color: #008000; text-decoration-color: #008000">bandersnatch</span> │ <span style="color: #008000; text-decoration-color: #008000">sdist      </span> │ <span style="color: #008000; text-decoration-color: #008000">US          </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │ <span style="color: #008000; text-decoration-color: #008000">0.2.8  </span> │ <span style="color: #800080; text-decoration-color: #800080">2024-08-29</span> │ <span style="color: #008000; text-decoration-color: #008000">bandersnatch</span> │ <span style="color: #008000; text-decoration-color: #008000">bdist_wheel</span> │ <span style="color: #008000; text-decoration-color: #008000">US          </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span> │
│ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │ <span style="color: #008000; text-decoration-color: #008000">0.2.9  </span> │ <span style="color: #800080; text-decoration-color: #800080">2024-08-29</span> │ <span style="color: #008000; text-decoration-color: #008000">bandersnatch</span> │ <span style="color: #008000; text-decoration-color: #008000">bdist_wheel</span> │ <span style="color: #008000; text-decoration-color: #008000">US          </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │
│ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │ <span style="color: #008000; text-decoration-color: #008000">0.2.9  </span> │ <span style="color: #800080; text-decoration-color: #800080">2024-08-29</span> │ <span style="color: #008000; text-decoration-color: #008000">bandersnatch</span> │ <span style="color: #008000; text-decoration-color: #008000">sdist      </span> │ <span style="color: #008000; text-decoration-color: #008000">US          </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │ <span style="color: #008000; text-decoration-color: #008000">0.3.0  </span> │ <span style="color: #800080; text-decoration-color: #800080">2024-08-29</span> │ <span style="color: #008000; text-decoration-color: #008000">bandersnatch</span> │ <span style="color: #008000; text-decoration-color: #008000">bdist_wheel</span> │ <span style="color: #008000; text-decoration-color: #008000">US          </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19</span> │
│ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │ <span style="color: #008000; text-decoration-color: #008000">0.3.0  </span> │ <span style="color: #800080; text-decoration-color: #800080">2024-08-29</span> │ <span style="color: #008000; text-decoration-color: #008000">bandersnatch</span> │ <span style="color: #008000; text-decoration-color: #008000">sdist      </span> │ <span style="color: #008000; text-decoration-color: #008000">US          </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │ <span style="color: #008000; text-decoration-color: #008000">0.3.1  </span> │ <span style="color: #800080; text-decoration-color: #800080">2024-08-29</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">~</span>            │ <span style="color: #008000; text-decoration-color: #008000">bdist_wheel</span> │ <span style="color: #008000; text-decoration-color: #008000">US          </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">26</span> │
│ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │ <span style="color: #008000; text-decoration-color: #008000">0.3.1  </span> │ <span style="color: #800080; text-decoration-color: #800080">2024-08-29</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">~</span>            │ <span style="color: #008000; text-decoration-color: #008000">sdist      </span> │ <span style="color: #008000; text-decoration-color: #008000">US          </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008000; text-decoration-color: #008000">clickhouse-connect</span> │ <span style="color: #008000; text-decoration-color: #008000">0.3.1  </span> │ <span style="color: #800080; text-decoration-color: #800080">2024-08-29</span> │ <span style="color: #008000; text-decoration-color: #008000">Browser     </span> │ <span style="color: #008000; text-decoration-color: #008000">bdist_wheel</span> │ <span style="color: #008000; text-decoration-color: #008000">US          </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└────────────────────┴─────────┴────────────┴──────────────┴─────────────┴──────────────┴────────┘
</pre>
</div>
</div>
<p>We might be interested in the day-of-week seasonality of downloads:</p>
<div id="c6a458a0" class="cell" data-execution_count="8">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> day_of_week_bar(t):</span>
<span id="cb9-2">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.mutate(day_of_week<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"date"</span>].day_of_week.full_name())</span>
<span id="cb9-3">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"day_of_week"</span>).agg(downloads<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"count"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>())</span>
<span id="cb9-4">    c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb9-5">        t,</span>
<span id="cb9-6">        x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"day_of_week"</span>,</span>
<span id="cb9-7">        y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"downloads"</span>,</span>
<span id="cb9-8">        category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb9-9">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"day_of_week"</span>: [</span>
<span id="cb9-10">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Sunday"</span>,</span>
<span id="cb9-11">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Monday"</span>,</span>
<span id="cb9-12">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Tuesday"</span>,</span>
<span id="cb9-13">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Wednesday"</span>,</span>
<span id="cb9-14">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Thursday"</span>,</span>
<span id="cb9-15">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Friday"</span>,</span>
<span id="cb9-16">                <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Saturday"</span>,</span>
<span id="cb9-17">            ]</span>
<span id="cb9-18">        },</span>
<span id="cb9-19">    )</span>
<span id="cb9-20">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> c</span>
<span id="cb9-21"></span>
<span id="cb9-22"></span>
<span id="cb9-23">day_of_week_bar(downloads_t)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="8d58d128-1d14-46fd-a989-2e0f922635db" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("8d58d128-1d14-46fd-a989-2e0f922635db")) {                    Plotly.newPlot(                        "8d58d128-1d14-46fd-a989-2e0f922635db",                        [{"alignmentgroup":"True","hovertemplate":"day_of_week=%{x}\u003cbr\u003edownloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["Saturday","Thursday","Sunday","Tuesday","Monday","Friday","Wednesday"],"xaxis":"x","y":[2476032,3778896,2425957,3788427,3635458,3467629,3756499],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"day_of_week"},"categoryorder":"array","categoryarray":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"downloads"}},"legend":{"tracegroupgap":0},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('8d58d128-1d14-46fd-a989-2e0f922635db');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>Or the rolling 28-day downloads metric:</p>
<div id="dc30bbc1" class="cell" data-execution_count="9">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> rolling_downloads(t, days<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">28</span>):</span>
<span id="cb10-2">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.mutate(</span>
<span id="cb10-3">        timestamp<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"date"</span>].cast(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>),</span>
<span id="cb10-4">    )</span>
<span id="cb10-5">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>).agg(downloads<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"count"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>())</span>
<span id="cb10-6">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.select(</span>
<span id="cb10-7">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>,</span>
<span id="cb10-8">        rolling_downloads<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"downloads"</span>]</span>
<span id="cb10-9">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()</span>
<span id="cb10-10">        .over(</span>
<span id="cb10-11">            ibis.window(</span>
<span id="cb10-12">                order_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>,</span>
<span id="cb10-13">                preceding<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>days,</span>
<span id="cb10-14">                following<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>,</span>
<span id="cb10-15">            )</span>
<span id="cb10-16">        ),</span>
<span id="cb10-17">    ).order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>)</span>
<span id="cb10-18"></span>
<span id="cb10-19">    c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.line(</span>
<span id="cb10-20">        t,</span>
<span id="cb10-21">        x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>,</span>
<span id="cb10-22">        y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"rolling_downloads"</span>,</span>
<span id="cb10-23">    )</span>
<span id="cb10-24"></span>
<span id="cb10-25">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> c</span>
<span id="cb10-26"></span>
<span id="cb10-27"></span>
<span id="cb10-28">rolling_downloads(downloads_t)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="1acba2c4-61bd-4dad-9cef-37583df85c41" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("1acba2c4-61bd-4dad-9cef-37583df85c41")) {                    Plotly.newPlot(                        "1acba2c4-61bd-4dad-9cef-37583df85c41",                        [{"hovertemplate":"timestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"","orientation":"v","showlegend":false,"x":["2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[329,745,798,1411,2206,2932,3444,4434,4700,4851,4898,5568,5992,6207,6976,7369,7784,8319,8550,8717,11509,13996,15478,16894,17170,17597,17819,18074,18275,18259,18010,18062,18028,17958,17593,17292,16593,16537,16474,16608,16180,16431,16786,16440,16210,15867,15579,15531,15639,12963,10661,9255,8120,7998,7902,7929,7915,8116,7975,7832,7925,7572,6987,6836,6804,6560,6435,6548,6541,6471,6288,6200,5904,6089,6244,6264,6411,6572,6930,6994,7312,7460,7679,7975,8172,8953,9364,9684,10279,10588,10835,11288,11729,11676,11887,12142,12696,13108,13832,14577,15233,16041,16717,17680,18505,19817,20649,21339,22523,23827,24605,25524,25913,26392,25444,24751,25121,24974,27459,28519,28597,29036,32138,34251,34652,37626,39477,40074,39691,39860,40195,40598,40000,40042,38917,38046,37536,38198,38299,37925,38219,38097,40382,41591,42620,43970,47298,49985,54515,56017,55511,53614,52982,54449,54349,55739,58372,58032,59333,59194,62592,67124,72237,74814,76442,79884,82353,82372,83969,86814,89051,87283,93007,97088,95932,94720,92267,87589,89192,89749,96806,103608,109403,113101,110835,108204,110631,113579,119927,119607,116036,111111,109871,115442,115567,114430,116570,116026,113930,113049,114321,110052,108009,109875,109205,108008,109015,107309,108869,103573,96051,89342,85843,84803,85156,83081,79850,76773,73852,75010,75320,79222,74824,71734,73329,70972,72572,70998,70639,73028,76463,77335,78248,82317,84364,87292,92870,95733,96695,102120,104095,102482,107644,113319,116027,117030,116560,119543,120130,125307,126253,131666,138166,140995,151580,157744,168340,174758,175777,178716,187687,199048,204709,218754,228453,234814,243941,252146,257057,262171,268761,274049,277732,286219,292205,295839,299841,309925,318445,326039,335831,343241,348503,345777,350083,352035,354270,360602,363926,364351,360079,361807,358169,359099,361389,360418,362054,365484,370690,376708,380833,382500,389361,392210,396792,406705,412052,416230,420392,420192,420438,420730,430382,430106,439336,455299,470367,481608,491050,506012,512571,513637,516338,514004,515679,511793,513267,514390,518523,520638,524678,522487,529236,538768,541664,548229,549295,554691,553612,553393,555139,556005,563492,560840,552237,537948,536857,535324,532849,533485,544935,552234,553692,550785,566320,575536,581248,583372,593891,593876,597706,603916,609156,612432,611701,617449,611920,612983,617242,628456,639281,644484,650401,658379,663465,667248,677889,688253,701661,711068,703700,704944,718658,725968,739517,747341,757386,752973,756821,771501,780566,784635,790195,793364,790256,794329,803281,813374,817348,813179,816397,813162,810996,824027,830088,829461,830274,830630,824615,829951,849623,862881,866065,861119,860780,856766,852794,865811,865508,867662,868699,876028,878763,880735,899470,908574,913396,912502,915534,908795,912023,916783,914944,915059,918465,910832,894418,887879,891434,886292,885697,891380,886920,872073,862150,865651,865453,856676,848272,841289,820663,810200,816374,812449,809686,806453,801907,793345,787242,788041,786121,782935,778526,764198,748882,744345,738806,734534,725375,713272,690358,676844,673687,678478,682269,670526,669978,661685,649390,645006,647865,643277,631813,632543,633548,630358,632735,641736,643250,648136,660360,661067,659117,663009,679343,694686,705243,712035,723658,724131,725618,742161,747927,750876,756262,756195,754494,758255,777779,792158,800724,815629,819129,816831,823547,844531,865379,886630,909061,905617,904276,906563,933175,939302,941228,945246,955193,938487,944341,962210,971110,985016,992265,999469,997692,999411,1016550,1025210,1023489,1024504,1012580,993080,987233,989766,980124,966518,947147,920944,908971,900055,918146,913838,920891,924687,926970,912848,925046,949550,958361,975547,978513,978158,965059,968653,995886,1004272,1011087,1015879,1014561,1016203,1030943,1064316,1075485,1085135,1096016,1099575,1092103,1090474,1097894,1093556,1088427,1076894,1065131,1046480,1043261,1030889,1014298,1006224,995365,987812,972223,972761,982059,978691,975317,966375,958751,948541,941308,944353,923411,924259,930058,939260,926248,927204,950294,978459,990595,1005609,1020688,1022782,1032248,1050436,1083559,1096736,1106635,1115678,1117101,1130030,1154895,1174660,1194415,1209589,1219573,1219213,1232466,1265374,1293796,1313472,1323497,1322774,1309660,1332144,1367587,1406736,1415934,1438460,1453433,1451251,1464535,1492139,1526657,1533882,1557328,1578179,1573015,1581349,1624479,1653959,1660320,1665629,1670568,1665565,1669638,1690323,1682860,1681809,1690700,1696932,1691134,1693363,1703691,1704198,1686064,1686082,1669732,1638213,1634967,1645828,1644036,1624047,1629263,1611875,1582667,1585696,1593655,1605717,1593090,1590881,1577717,1561771,1568828,1593641,1591923,1615151,1620836,1612309,1591836,1591558,1614264,1635160,1652853,1656950,1648497,1651184,1679682,1716773,1729309,1734741,1736695,1727431,1727657,1731661,1744919,1744824,1714886,1717165,1717069,1700412,1696964,1708459,1708191,1722565,1716775,1708975,1701546,1704883,1732647,1730983,1730720,1748244,1750055,1740575,1726142,1739254,1733386,1742197,1756316,1782131,1771902,1771159,1799065,1816340,1840900,1859082,1868475,1862817,1874602,1922944,1938191,1948870,1951546,1957998,1945881,1945476,1981493,1989498,1999217,2013276,1994035,1975466,1976806,1996768,1947850,1882674,1810725,1766445,1735510,1741422,1767340,1779619,1786639,1788098,1805848,1794669,1794263,1833822,1827745,1825615,1814399,1811435,1787489,1796593,1839126,1847419,1858779,1865958,1855779,1836606,1836052,1867461,1904325,1975337,2061370,2149202,2177942,2179012,2214039,2223172,2226376,2221085,2216934,2171914,2157150,2191584,2186820,2185991,2208702,2232895,2204141,2204363,2222715,2211605,2194049,2178306,2170792,2141005,2128440,2145856,2149941,2133205,2108583,2099220,2056409,2044949,2077386,2064601,2061981,2061733,2057076,2028230,2021826,2048185,2041802,2045757,2056354],"yaxis":"y","type":"scatter"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"timestamp"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"rolling_downloads"}},"legend":{"tracegroupgap":0}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('1acba2c4-61bd-4dad-9cef-37583df85c41');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>Or rolling 28-days downloads by version with a few options for how to group versions:</p>
<div id="f0db4a6b" class="cell" data-execution_count="10">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> rolling_downloads_by_version(t, days<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">28</span>, version_style<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"major.minor"</span>):</span>
<span id="cb11-2">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.mutate(</span>
<span id="cb11-3">        timestamp<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"date"</span>].cast(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>),</span>
<span id="cb11-4">    )</span>
<span id="cb11-5"></span>
<span id="cb11-6">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">match</span> version_style:</span>
<span id="cb11-7">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">case</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"major"</span>:</span>
<span id="cb11-8">            t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.mutate(version<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"version"</span>].split(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"."</span>)[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>])</span>
<span id="cb11-9">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">case</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"major.minor"</span>:</span>
<span id="cb11-10">            t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.mutate(</span>
<span id="cb11-11">                version<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"version"</span>].split(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"."</span>)[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"."</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"version"</span>].split(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"."</span>)[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>]</span>
<span id="cb11-12">            )</span>
<span id="cb11-13">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">case</span> _:</span>
<span id="cb11-14">            <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">pass</span></span>
<span id="cb11-15"></span>
<span id="cb11-16">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"version"</span>).agg(downloads<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"count"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>())</span>
<span id="cb11-17"></span>
<span id="cb11-18">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.select(</span>
<span id="cb11-19">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>,</span>
<span id="cb11-20">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"version"</span>,</span>
<span id="cb11-21">        rolling_downloads<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"downloads"</span>]</span>
<span id="cb11-22">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()</span>
<span id="cb11-23">        .over(</span>
<span id="cb11-24">            ibis.window(</span>
<span id="cb11-25">                order_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>,</span>
<span id="cb11-26">                group_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"version"</span>,</span>
<span id="cb11-27">                preceding<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">28</span>,</span>
<span id="cb11-28">                following<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>,</span>
<span id="cb11-29">            )</span>
<span id="cb11-30">        ),</span>
<span id="cb11-31">    ).order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>)</span>
<span id="cb11-32"></span>
<span id="cb11-33">    c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.line(</span>
<span id="cb11-34">        t,</span>
<span id="cb11-35">        x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>,</span>
<span id="cb11-36">        y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"rolling_downloads"</span>,</span>
<span id="cb11-37">        color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"version"</span>,</span>
<span id="cb11-38">        category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb11-39">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"version"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">reversed</span>(</span>
<span id="cb11-40">                <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sorted</span>(</span>
<span id="cb11-41">                    t.distinct(on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"version"</span>)[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"version"</span>].to_pyarrow().to_pylist(),</span>
<span id="cb11-42">                    key<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> x: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">tuple</span>(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>(y) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> y <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> x.split(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"."</span>) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> y.isdigit()),</span>
<span id="cb11-43">                )</span>
<span id="cb11-44">            )</span>
<span id="cb11-45">        },</span>
<span id="cb11-46">    )</span>
<span id="cb11-47">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> c</span>
<span id="cb11-48"></span>
<span id="cb11-49"></span>
<span id="cb11-50">rolling_downloads_by_version(downloads_t)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="5d27e7cf-d935-4470-9bdf-6533d9efa4c2" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("5d27e7cf-d935-4470-9bdf-6533d9efa4c2")) {                    Plotly.newPlot(                        "5d27e7cf-d935-4470-9bdf-6533d9efa4c2",                        [{"hovertemplate":"version=0.7\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.7","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.7","showlegend":true,"x":["2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[2440,17818,30349,49746,69301,85220,101173,115315,126875,140735,158251,175794,189943,203359,221929,242602,261836,278949,295880,308911,322445,341948,364565,386966,410222,428728,442432,457878,480282,501144,509455,527533,541048,539305,541529,549931,560057,578557,596767,610753,618195,629004,647263,662253,670632,680456,693855,700099,707697,717841,720082,722607,732463,740585,744806,751989,761152,765364,770526,776694,771156,754493,756810,764915,767839,771206,772614,770815,761111,759221,761993,771703,776206,781257,785110,781651,785158,799058,810189,829438,844863,847855,842366,845557,864204,879948,888370,893370,895275,903167,933032,957963,970399,979427,984336,985585,981256,984150,994024,999485,991061,989838,989999,982188,980986,988919,992104,998578,997402,992371,986531,988853,1001640,1000591,1002975,1012171,1016907,1015169,1009731,1004436,1002470,1008086,1018400,1030286,1029974,1038992,1060127,1073714,1087146,1100553,1108561,1108133,1116554,1137970,1150648,1156303,1159363,1163345,1162476,1166879,1183040,1187628,1191864,1195131,1191718,1183655,1184042,1192642,1164381,1125302,1082417,1051805,1039444,1036672,1048778,1046411,1044686,1038962,1032896,1024077,1024069,1042002,1043008,1040642,1033040,1024259,1005182,1000709,1013498,1014364,1011620,1009984,1004673,994050,993776,1007977,1018554,1051429,1093414,1138309,1155703,1155596,1170113,1164462,1165864,1164895,1161650,1148155,1136067,1143479,1134935,1128218,1124382,1129314,1118412,1120601,1130015,1122968,1117359,1119501,1118794,1104593,1099525,1107337,1106320,1098810,1091569,1088300,1068015,1066501,1079386,1077101,1078842,1082599,1078410,1068921,1069475,1087042,1088778,1091757,1091550],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.6\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.6","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.6","showlegend":true,"x":["2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[19464,35292,49847,62895,75091,85094,100889,117801,136257,153649,173080,184752,195750,213813,232459,250716,270526,289271,302086,315132,333151,352419,372439,391230,410231,423580,436742,458768,480120,483221,492916,503554,505855,509244,521985,530179,536108,540846,543437,539121,541823,554874,562624,569936,575732,580156,580892,585128,597568,606393,610455,611923,613168,608878,610582,618458,617586,615794,612059,604842,589113,585043,589216,588523,587286,586882,579469,568134,565833,566031,556394,548030,540834,534585,522916,516211,518228,517767,513303,512064,509436,502016,500526,505439,505153,504935,504752,501357,492410,493198,495998,493473,488805,482820,474894,468597,467919,471766,475156,477397,477706,474226,467208,465089,470136,468520,463675,461705,461388,459915,462278,470505,472477,474947,475679,478803,477810,481632,493430,503274,512086,517547,525377,525746,531348,545517,551886,558150,564110,567105,566660,569344,580475,591308,600151,608160,614079,617124,622828,638352,647128,657748,673495,681215,679092,682108,700138,707388,713404,717212,725133,718438,722686,736201,743592,753610,761152,767694,766859,768946,781256,790814,790719,793055,789843,779829,773920,777351,773971,771789,766074,751488,740520,736835,751505,754005,760050,764201,769837,759939,767100,788760,798268,811915,815321,815070,805237,807167,831969,842282,850252,855440,858237,856708,864152,889248,898902,907206,911928,912671,906695,908069,915244,910282,905937,898881,889750,873986,872679,867138,854316,845120,837457,831658,819331,820136,829415,823333,820946,815666,811244,799643,795652,800957,789572,788776,795450,798487,787873,788612,802769,808871,808868,802573,794403,781155,774329,776726,786132,782283,778675,769499,755000,751554,756287,751895,747450,741912,731741,716255,711378,719019,718673,713399,702735,682544,661072,661285,666291,667043,663954,661623,661536,659268,663350,676043,685386,681127,685049,685184,673810,674093,683448,691239,690985,689030,681961,673296,672998,683104,679234,680506,680063,676762,669308,670045,676654,678159,670443,669609,667483,657527,655896,662278,660242,651080,651063,641075,629085,631507,636410,654153,641166,635858,623591,614905,616741,622846,616546,614917,605084,595074,584944,583926,586863,586962,584316,582151,572109,565365,564276,566618,564666,561457,558885,552598,550653,550110,551954,548984,526361,529201,527827,522963,522724,523964,524140,527140,525160,523212,520625,521565,528709,530668,528523,535279,533707,530663,526891,536652,543925,550166,555784,562463,557502,555381,560236,567786,577546,583588,585638,581636,584618,601036,609846,615194,619951,626419,621419,620597,633049,640886,647824,659280,655480,650674,652939,660745,648728,625572,600632,587292,578908,585140,595457,609650,616601,622213,633744,632600,635705,649177,647961,647438,644641,642613,635739,644239,665674,674985,684368,691602,691573,687696,690473,706545,727153,755109,787383,821779,829332,828089,843688,854706,856897,857742,853599,833169,825140,840472,852062,858853,883743,896261,888663,887399,898085,901047,893488,885836,880056,864520,857640,864881,866429,861929,854174,851116,833443,829351,843789,839739,841740,840865,840237,828438,826036,841174,843353,840291,847879],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.5\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.5","line":{"color":"#00cc96","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.5","showlegend":true,"x":["2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[2098,5297,9032,15328,19651,21076,23131,25112,26399,30586,34829,36916,38906,41501,43525,45567,48179,51388,58149,63547,70038,81102,88399,96800,103177,107825,114097,123070,133696,139924,148878,155237,160243,166876,173984,179118,182600,187548,190904,193354,197653,201145,202655,205473,211920,217870,223990,229776,235105,235922,230791,232123,232533,233596,236820,240125,241094,238205,238760,236452,238575,240347,239390,239878,243116,247641,251389,254278,257234,262974,265667,269882,279068,286301,293585,300222,302349,303743,307209,316037,319500,331909,349506,367045,377533,389407,405637,415418,419904,422519,422268,424716,424785,428026,431393,437626,441876,446645,448452,455676,465957,469898,476437,480199,486172,486916,489251,492891,495920,503803,500262,492206,479394,477598,474730,470416,470327,480917,488744,489137,488309,501972,511589,517800,521147,530658,531198,534732,543648,550988,556534,558070,561467,555947,556912,560928,571031,583021,587910,595015,598429,602257,609439,602259,596897,596691,588271,571375,564127,561692,552926,549349,540017,530209,516907,509886,508086,495887,480318,466526,451070,436307,427588,419675,410732,395708,373188,357158,339835,327518,319612,304063,300529,294647,284750,279031,279923,285358,288680,285878,275766,273028,272306,266188,267216,260150,257151,254232,254752,254455,252809,257570,257839,257347,255265,256001,253325,253598,252405,251854,252245,256220,255791,254011,252413,253000,250293,250752,253128,256959,253606,248760,251804,261657,261136,260806,260222,254015,251636,254372,251543,252163,250327,248533,246576,243761,242166,240648,237612,234314,226854,220894,217195,211931,210226,205731,199581,190056,181711,179356,180066,179306,165325,163416,158724,153584,151522,150570,150239,145764,145994,146519,144210,143907,144565,144116,145755,157448,155736,154770,154956,157941,161338,163156,164561,167322,166441,163665,165730,165051,162958,162351,160433,159152,160293,166169,168290,167847,172125,173582,169903,171812,176339,184435,191261,195359,184139,184486,183980,191013,191195,189157,188149,188988,182964,184388,188517,190147,192801,192636,193446,192378,192207,196616,196647,196455,194018,188085,178720,178085,176729,172273,164243,154271,145863,143434,139314,140855,135180,135638,135021,132647,129549,131806,134086,132541,133600,132870,132533,129020,129424,131221,128982,127597,125613,122537,123455,127241,132636,133603,135264,139089,140615,139322,137623,137739,137305,136381,132275,129855,127179,125206,120898,118460,118804,117559,116404,113152,112808,113955,116543,115628,112985,110942,111097,108956,107986,101958,101994,100457,109115,107913,108021,112464,117537,118013,119817,122135,121467,121714,122845,130700,133766,130941,130371,130497,132118,133528,136949,138658,140436,143475,144553,147063,153349,160230,162927,162311,164989,158829,163655,166625,172957,175260,182991,184500,184910,189708,194602,205323,201661,201242,206754,205765,204441,219844,225047,223064,221770,222177,219537,217638,221141,215486,210186,209700,211272,207592,201964,198655,198257,194954,191324,183073,178478,176147,173593,171341,161778,163327,159720,153702,155154,156481,142462,139679,137438,135148,130853,130980,134279,127937,132238,132398,130929,125920,123416,124872,126916,135191,135377,136312,135749,135424,145558,147080,147246,146664,145224,147671,148151,150550,147590,147376,146554,147311,142838,141672,146031,143749,146362,143533,143145,142346,142444,149764,147445,147212,145840,143526,138349,135542,141651,131424,129933,128334,134651,129585,125488,128394,124682,126247,126191,127206,125592,126520,134937,128971,128818,125827,123549,118377,116510,123227,120275,118847,118026,111582,107392,107077,110502,104508,102009,98431,98849,90371,92335,96068,95549,96844,97736,106228,103699,101786,106960,101697,102256,101279,106687,107257,111135,117659,116574,118855,120724,118397,114699,113105,114028,116087,122159,128911,133585,134241,135391,138197,140448,141187,137887,140904,132670,139853,148966,144073,144764,145082,149231,142053,141879,141570,136293,132152,124742,123920,123197,123250,125831,128513,126619,121240,121693,119059,116057,120893,117779,113377,110364,110680,104009,100762,94209,86678,90742,93162],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.4\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.4","line":{"color":"#ab63fa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.4","showlegend":true,"x":["2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[1533,4799,6355,7603,9393,10945,12236,18262,21265,22046,23366,24350,25054,25875,26764,33380,40307,46067,51225,52299,53194,55039,59359,64966,67858,69226,70437,71514,77604,79444,78731,79515,79883,79656,79568,80118,75829,75093,76638,77126,77854,78836,79928,80731,76784,70707,65919,62511,61920,62797,61768,58620,56489,54461,54237,53692,56798,53767,51443,52380,51260,51685,50754,50918,52274,54380,54837,55240,55274,53834,53027,51698,50481,48894,50119,49875,48468,48701,48613,48461,47885,44966,45175,44542,45691,43316,41175,41060,38059,37196,35980,36643,36009,33432,30792,29787,28952,28464,31107,33023,33738,35122,35816,35578,36200,37393,39030,40178,42127,43550,44896,45875,48219,50180,51247,53617,55195,57820,59453,61861,63314,64499,66798,67515,67906,67798,68799,68432,67725,68325,68827,70022,71149,72383,74798,76227,76413,78232,79457,80637,82183,82247,81526,80949,79709,79578,78328,79031,77206,75711,74856,73420,73654,72558,72325,71029,69498,69681,68773,68155,66061,64802,63320,61159,59064,57689,54935,53576,52678,50903,49677,47341,46185,45198,43354,42138,40748,40405,40444,39829,38949,39067,39459,39841,39999,40252,39832,40290,39370,40203,39907,39577,38812,39016,38573,38532,37374,36006,35234,34195,35269,35286,35273,35536,36390,36029,36234,35903,37956,38472,36974,36225,36386,36118,38374,37031,36133,36200,35853,35241,35024,35156,33993,33847,33381,34598,35361,34944,34887,34310,34070,33632,33407,32676,32229,32154,32192,30735,30210,30133,29996,28465,28126,26731,27276,28016,28740,28582,28667,28489,28837,28267,27760,27012,25819,24710,25665,26541,26114,26882,26848,27354,27053,27537,27573,28122,27324,27083,27781,29076,28932,29209,28695,28024,27115,27142,28623,28078,27941,26592,26832,26571,26612,26186,26014,24677,24017,24753,24311,24687,24530,24423,24692,23604,22468,22314,22326,21930,20337,20126,19347,17966,17919,17942,18005,15518,15973,15847,16028,16501,16525,16999,16911,16830,16685,16158,14867,13921,15106,15593,15793,15837,15959,15916,16282,16158,15760,15814,15715,16509,17512,17512,17452,17731,18302,17674,17947,18042,17492,17486,17030,17041,16956,18246,18903,19015,20225,18371,17451,16988,17422,19207,20862,21969,21988,22149,21923,22713,22074,21078,21554,21984,20190,20098,20287,20145,20645,20557,20435,20332,20176,20458,20001,19351,19839,18510,18398,18722,19114,18509,17090,15585,14254,15008,14620,15743,15317,15690,16009,15708,15365,16729,17265,18127,19956,20250,20460,20734,21544,22124,22306,22543,23394,23081,24230,25978,27519,27632,27801,28870,29478,29363,28770,28884,29071,29233,29132,28983,28853,28923,27850,27274,27379,26046,25730,25775,25853,25399,25467,25636,25313,24804,25356,25420,25144,23614,24917,25022,23998,23560,23666,24954,25798,25717,25860,26655,26739,26815,27276,29401,29496,28969,29574,30299,30904,31010,31006,32481,33282,33289,33696,34622,34022,33539,33362,32110,31201,31468,32440,36714,39167,40030,39611,39450,39964,40888,41648,43371,41918,42749,43092,42881,42150,42132,42690,42766,42184,41345,41622,40940,39600,39341,39507,39482,39387,39952,39772,38637,34522,31284,30433,30153,30070,29172,28777,28785,26695,27534,26455,25892,26237,25900,25382,24952,25003,23749,23914,24181,25122,25019,25712,25651,25628,25839,25887,26217,27725,29285,30106,29557,30693,30740,30821,31221,31093,31311,30230,32225,32749,32556,32947,33551,34268,34662,35141,34733,34002,33279,34371,34585,34492,35500,35442,35835,35601,35561,37136,37373,37670,36379,37492,36937,36033,35657,36083,36200,34367,34032,33913,33720,33132,32220,32229,31701,32659,32384,32195,31176,30200,29606,28347,28516,27728,27664,27515,24749,23918,23153,23232,21764,21342,20859,20269,19114,18857,18901,19294,19740,19921,21694,22297,21485,22946,22698,22879,23036,24081,24766,25219,26190,25912,26900,26603,25411,25022,24252,24441,26096,28200,30676,32675,34305,35041,36241,36979,36322,35176,35146,33673,32592,33751,32327,31475,32073,33241,31661,31178,30444,29421,29140,27754,27586,27825,27293,27150,27456,26040,23971,22283,21197,19863,19994,18270,17127,17073,16904,16616,16044,16255,14973,14956,15290],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.3\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.3","line":{"color":"#FFA15A","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.3","showlegend":true,"x":["2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[2380,3573,4529,5881,8608,13739,19077,20921,21440,22603,23790,25541,28463,32070,35348,35816,37907,38923,43092,47423,53207,56109,57874,60056,60973,61123,61937,63886,64996,62692,62166,62926,61749,59928,56514,51812,52264,51918,52014,51950,51953,50563,47276,44395,44684,43427,43710,40628,36412,30696,28320,27597,26018,25716,26663,26061,24646,24082,24596,24546,23472,23785,22934,21500,21401,19182,19689,18686,17614,16056,15996,15680,15297,14554,14560,13894,13119,13965,14420,14966,13961,13374,13797,12887,13620,13088,12604,13248,14026,13984,13863,14862,14585,14157,14193,13612,14000,15076,14881,13410,13496,14131,14195,13379,12784,13004,12057,12668,12247,12284,12640,11678,11501,11097,11709,11766,10580,9765,10284,11287,11116,12727,13735,13999,14670,14859,14775,15301,15387,15407,15363,16621,17309,17793,17913,18868,19403,19671,20860,21196,22486,23002,23390,23424,23356,23912,23404,22712,21764,21811,21100,20480,20288,20135,20675,20686,20910,21491,22026,21557,22041,21853,21853,21835,20928,19718,18962,18765,18622,17802,18519,17740,17126,17194,17034,18005,17620,17459,16718,15963,16598,16539,16789,15433,15043,14509,14567,14534,15017,13993,14699,14836,15395,16334,16092,16515,15911,15396,14915,14330,14276,14935,15003,14565,15086,15825,16906,17273,17707,17609,18022,17176,17967,17861,17705,17323,17922,17824,18069,16891,16326,15192,14260,15147,15085,15153,15119,15345,14738,14790,14123,15897,16433,14969,14261,14055,13573,15404,14422,13957,14240,13802,13282,13254,13467,12257,12270,11480,12457,12907,12866,12819,12381,12372,11858,11863,11599,11603,11967,12474,11429,11001,11259,11219,10146,10108,9196,9610,10140,10830,11047,11304,11293,11777,11780,11377,11203,10541,10021,11062,12090,11949,12515,12556,13106,13114,13529,13544,14056,13160,13054,13646,15008,15119,15669,15464,15061,14499,14597,16215,15961,15943,14904,14918,14796,14824,14489,14508,13477,12952,13460,13309,13809,13793,13784,14170,13652,12655,12684,12725,12309,10937,10765,10182,8927,8927,8910,8877,6701,7184,7187,7234,7753,7759,8197,8178,8140,8114,7618,6647,5807,6764,7308,7609,7822,7837,7899,8223,8180,7980,7961,7984,8567,9380,9337,9341,9915,10235,9734,9777,9784,9312,9358,8865,8889,8914,9810,10387,10423,11413,9942,9103,8789,9176,10786,12346,13416,13452,13648,13652,14193,13678,12899,13446,14008,12395,12591,12622,12634,13175,13131,13082,13240,13206,13309,12962,12371,12820,11793,11785,12052,12105,11219,9792,8204,6855,7337,6816,7378,6891,7071,7054,6573,5989,7031,7068,7068,7568,7568,7601,7597,7931,7981,7984,7990,8527,8000,8796,10078,11155,11404,11120,12031,12517,12424,11905,11909,12506,12457,12227,12167,12083,12077,11025,10978,11015,10827,10232,10182,10224,9785,9785,9697,9234,9211,9196,8933,7668,6668,6992,6742,5632,5072,5644,6194,6809,5669,6088,6072,6079,6102,7676,7687,7205,7680,8349,8881,8919,8983,10266,11018,11145,11577,12419,12490,12303,12346,11833,11230,11626,12371,12933,19211,19810,19422,19562,20215,21082,21751,23688,22370,23050,23722,23690,23172,23304,24019,24160,23692,22986,22828,22376,21154,21239,21451,21443,21404,21797,21880,21156,20672,14199,13617,13516,13351,12823,12388,12074,10223,11243,10553,9843,10350,9848,9194,8498,8620,7705,7928,8885,9293,9192,9597,9607,9565,9514,9512,9036,10107,11616,11777,11256,11937,11936,11705,11797,11449,11365,10095,11593,12069,11597,11580,12103,12645,12597,12603,12290,11321,10858,11658,11620,11341,11926,11952,12044,12028,11879,12865,13367,13500,12681,13720,13398,12906,13009,13420,13415,12170,11682,11653,11649,11209,10658,10966,10958,11786,11807,11809,11052,10531,10191,9565,9951,9457,9457,9621,7579,7125,6952,6993,6161,6143,6108,6002,5605,6146,5934,6357,6388,6746,8212,8723,8145,9243,8987,9002,9012,10013,10557,11093,11699,11316,12375,12403,11499,11062,10526,10534,12023,13506,15423,16838,17995,18431,19088,19662,19324,18796,18977,17939,17379,18412,17325,16788,17330,18369,17279,17249,16740,16181,16201,15156,15133,15449,15355,15314,15741,14652,13010,11632,10753,9592,9649,8478,7880,7835,7804,7375,6856,6865,5780,5782,6135],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.2\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.2","line":{"color":"#19d3f3","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.2","showlegend":true,"x":["2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-30T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-03T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[319,769,882,1225,1391,1544,1855,2105,2355,2464,2839,3124,3434,3953,4376,5192,5806,6231,6712,7101,7409,7809,8292,8408,8531,8805,9466,9964,10566,11415,12008,12827,13478,14467,15396,16661,17669,18499,19679,20893,21788,22620,23100,23575,22829,22329,22595,22577,25076,26249,26501,26941,30051,32113,32538,35492,37382,38224,37892,38128,38428,38841,38278,38312,37251,36390,35946,36714,36866,36517,36930,36824,36737,36754,36833,36996,37507,35149,34387,34064,33205,30143,28489,28226,25296,23125,22469,21678,20915,19798,19029,19226,18572,18249,18108,17852,16172,14536,14072,13206,12780,12041,12265,12579,11824,11211,11203,10528,10855,10868,11214,11173,11226,11177,11127,10542,10836,10722,11179,11067,10347,9925,9983,10190,10054,9936,10352,10042,9591,9363,9572,9644,9413,9422,9114,8626,8751,8174,8423,8079,7706,7342,7310,7176,7032,6728,6630,6341,6222,6758,7161,7411,7050,6869,7103,6770,7212,7098,7060,7451,8003,8461,9092,10031,10595,11023,11594,11935,12671,13741,14175,14155,14812,15700,16409,16823,17282,17812,17938,18743,19277,20032,20896,21198,21765,22253,23176,23794,23928,24050,24535,25101,25194,26032,26447,26828,27265,27480,27579,28063,28426,28700,28829,29811,30194,30488,30574,30912,30986,31124,31572,31738,32268,32524,32702,32757,32812,33065,32875,32632,32306,32431,32179,32314,32424,32063,31476,30530,29752,29026,28299,27292,26109,25228,24414,23613,22569,21394,20253,19363,18490,17386,16790,15655,14584,13736,12861,12409,11458,10584,9398,8264,7531,6414,6009,5504,5386,5158,5160,5153,5316,5094,5272,5285,5456,5769,5651,5805,5573,5378,5181,4992,4993,5185,5185,5026,5092,5295,5671,5872,6044,6035,6230,5917,6165,6166,6154,6079,6283,6270,6365,5995,5827,5463,5168,5558,5594,5635,5647,5675,5479,5535,5345,6076,6279,5840,5651,5592,5400,6084,5735,5581,5584,5533,5335,5343,5420,5010,5014,4682,5098,5260,5260,5244,5099,5096,4896,4886,4861,4862,4817,5008,4486,4353,4431,4418,4024,4016,3735,3837,4068,4397,4395,4481,4479,4670,4682,4530,4470,4173,3969,4358,4749,4697,4896,4899,5093,5103,5257,5435,5628,5418,5349,5575,6084,6129,6398,6246,6115,5845,5903,6514,6435,6431,6043,6047,6016,6055,5937,5939,5555,5362,5541,5500,5705,5722,5717,5876,5686,5300,5310,5325,5210,4702,4677,4413,3974,3979,3977,3979,3180,3370,3369,3375,3545,3512,3651,3639,3622,3592,3378,2997,2639,2966,2732,2824,2885,2864,2836,2923,2889,2782,2756,2716,2890,3176,3146,3128,3306,3400,3189,3182,3157,2957,2958,2763,2751,3073,3270,3299,3715,3706,3246,3246,3639,3824,4408,4936,4822,5017,5119,5171,5206,5199,5080,5094,5292,4714,4616,4807,4802,4816,4885,4916,5110,5308,4981,4983,4960,4726,4759,4662,4660,4339,3944,3357,2876,2871,2671,2835,2977,2937,2919,2916,2904,2895,2882,3022,3017,3213,3210,3452,3901,4169,4169,4166,4359,4540,4344,4306,4312,4777,4613,4422,4419,4370,4377,4570,4212,4155,4153,3977,3792,3800,3615,3621,3471,3469,3464,3466,3364,3082,2622,2422,2618,2459,2482,2477,2636,2631,2177,2177,2777,2780,2799,2987,3183,3353,3225,3239,3747,4012,4061,4247,4750,4739,4689,4492,4503,4286,4240,4513,4740,7190,7369,7197,7219,7468,7856,8042,8710,8127,8349,8552,8552,8367,8365,8589,8592,8376,8123,8064,7875,7364,7576,7436,7434,7560,7752,7598,7333,7207,4754,4360,4551,4678,4343,3962,4201,3504,3873,3647,3425,3361,3157,3076,3205,3349,3058,3244,3445,3468,3467,3414,3415,3843,4274,4278,4285,4575,4544,4537,4590,4353,4766,4862,5049,4613,4807,4642,4788,4797,4674,4698,4580,4616,4684,4822,4845,4652,4815,4815,5004,5971,5957,5430,5233,5607,5303,5259,5130,5226,5224,4759,4592,4590,4590,4407,4190,4259,4565,4571,4570,4576,4317,4094,3990,4254,4441,4443,4445,4102,3170,2751,2689,2697,2320,2521,2520,2623,2669,2810,3280,3481,3302,3719,3920,3921,3712,3810,4003,4187,4383,4246,4640,4617,4201,4051,3888,3898,4364,4880,5502,5952,6302,6400,6648,6850,6717,6524,6592,6237,6041,6421,6012,5808,6007,6394,5989,5976,5781,5620,5635,5243,5233,5349,5306,5278,5424,5106,4576,4160,3908,3551,3642,3202,2984,2966,3010,2841,2632,2623,2231,2341],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.1\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.1","line":{"color":"#FF6692","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.1","showlegend":true,"x":["2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-31T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-30T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-14T00:00:00","2022-12-16T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-08T00:00:00","2023-01-12T00:00:00","2023-01-14T00:00:00","2023-01-17T00:00:00","2023-01-19T00:00:00","2023-02-01T00:00:00","2023-02-16T00:00:00","2023-02-21T00:00:00","2023-03-24T00:00:00","2023-03-26T00:00:00","2023-04-11T00:00:00","2023-04-13T00:00:00","2023-04-19T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-26T00:00:00","2023-04-28T00:00:00","2023-05-02T00:00:00","2023-05-08T00:00:00","2023-05-11T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-06-01T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-04T00:00:00","2023-07-07T00:00:00","2023-07-10T00:00:00","2023-07-15T00:00:00","2023-07-19T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-29T00:00:00","2023-07-31T00:00:00","2023-08-02T00:00:00","2023-08-04T00:00:00","2023-08-10T00:00:00","2023-08-13T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-25T00:00:00","2023-09-11T00:00:00","2023-09-14T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-21T00:00:00","2023-10-06T00:00:00","2023-10-08T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-12-23T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2024-01-02T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-25T00:00:00","2024-03-04T00:00:00","2024-03-23T00:00:00","2024-03-31T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-16T00:00:00","2024-04-21T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-16T00:00:00","2024-06-23T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-11T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-21T00:00:00","2024-07-23T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-10T00:00:00","2024-08-14T00:00:00","2024-08-17T00:00:00","2024-08-26T00:00:00"],"xaxis":"x","y":[606,962,1344,1878,2109,2272,5056,7536,9009,10424,10700,11127,11349,11604,11805,12118,12285,12390,12969,13694,14055,14266,14557,14766,14854,15035,15277,15952,16522,16339,16144,15833,15546,15497,15607,12939,10643,9243,8109,7987,7891,7917,7902,8103,7961,7817,7910,7555,6970,6819,6784,6540,6416,6529,6522,6452,5949,5411,5002,4844,4832,4699,4536,4446,4553,4506,4446,4309,4218,3995,3770,3736,3533,3428,3541,3460,3400,3452,3410,3243,3331,3312,3203,3117,3239,3134,3197,3184,3210,3184,3079,3125,2950,2810,2817,2913,2796,2882,2791,2795,2593,2399,2502,2374,2361,2248,2075,2074,2066,2113,2089,2111,2072,1826,1777,1710,1747,1738,1723,1715,1668,1698,1672,1530,1452,1426,1296,1282,1261,1356,1369,1206,1199,1099,1068,1070,923,924,801,760,664,617,570,554,531,494,475,458,460,446,409,354,353,324,324,306,304,299,202,185,180,180,177,158,139,120,119,61,61,44,43,51,59,55,55,56,56,56,55,55,54,58,57,57,58,58,58,57,57,57,57,57,57,56,57,57,57,57,58,59,52,44,44,47,47,48,46,45,45,51,49,50,50,52,58,62,62,64,65,76,76,76,76,75,75,75,76,75,74,76,75,75,72,71,70,70,69,69,63,61,60,60,58,52,48,48,46,47,37,37,39,40,40,45,46,45,45,55,67,81,102,102,102,102,102,103,114,114,115,116,116,115,115,115,116,117,116,116,116,118,117,120,115,119,125,134,129,120,108,87,87,87,91,97,101,94,95,94,94,94,94,94],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.0\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.0","line":{"color":"#B6E880","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.0","showlegend":true,"x":["2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-07-02T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-26T00:00:00","2022-07-29T00:00:00","2022-08-04T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-27T00:00:00","2022-08-30T00:00:00","2022-09-02T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-14T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-22T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-30T00:00:00","2022-10-07T00:00:00","2022-10-11T00:00:00","2022-10-25T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-06T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-14T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-25T00:00:00","2022-12-03T00:00:00","2022-12-06T00:00:00","2022-12-09T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-24T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2023-01-02T00:00:00","2023-01-04T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-15T00:00:00","2023-01-25T00:00:00","2023-01-28T00:00:00","2023-02-11T00:00:00","2023-02-14T00:00:00","2023-03-01T00:00:00","2023-03-03T00:00:00","2023-03-20T00:00:00","2023-03-23T00:00:00","2023-03-28T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-14T00:00:00","2023-04-18T00:00:00","2023-04-22T00:00:00","2023-05-05T00:00:00","2023-05-19T00:00:00","2023-05-23T00:00:00","2023-05-30T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-06T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-15T00:00:00","2023-06-17T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-26T00:00:00","2023-07-29T00:00:00","2023-08-14T00:00:00","2023-08-17T00:00:00","2023-08-19T00:00:00","2023-08-26T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-04-16T00:00:00","2024-04-19T00:00:00","2024-04-22T00:00:00","2024-05-13T00:00:00","2024-05-15T00:00:00","2024-06-04T00:00:00","2024-06-22T00:00:00","2024-07-02T00:00:00","2024-07-06T00:00:00","2024-07-22T00:00:00"],"xaxis":"x","y":[329,745,798,1411,2206,2932,3444,4434,4700,4851,4898,5568,5992,6207,6370,6407,6440,6441,6445,6453,6460,6469,6470,6471,6473,6474,6475,6477,6478,6152,5737,5685,5073,4279,3555,3046,2057,1793,1644,1600,931,510,301,139,104,72,72,69,62,57,50,51,51,51,51,51,51,51,49,49,50,50,50,49,50,50,49,48,46,47,45,40,40,40,40,43,44,45,45,44,45,45,44,44,44,44,44,44,44,43,43,43,43,40,41,41,41,41,41,41,41,41,42,42,39,38,37,36,36,34,34,34,34,34,33,33,33,33,34,34,34,34,34,35,35,37,38,39,42,42,42,40,40,41,41,41,41,41,48,48,48,48,48,49,49,50,58,66,81,88,95,96,104,119,128,139,139,136,136,136,136,136,139,139,139,139,139],"yaxis":"y","type":"scattergl"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"timestamp"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"rolling_downloads"}},"legend":{"title":{"text":"version"},"tracegroupgap":0}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('5d27e7cf-d935-4470-9bdf-6533d9efa4c2');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>Or a bar chart of downloads grouped by a category:</p>
<div id="17fed57f" class="cell" data-execution_count="11">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb12-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> group_bar(t, group_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"installer"</span>, log_y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>):</span>
<span id="cb12-2">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.mutate(timestamp<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"date"</span>].cast(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>))</span>
<span id="cb12-3">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.group_by(group_by).agg(downloads<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"count"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>())</span>
<span id="cb12-4">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.order_by(ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"downloads"</span>))</span>
<span id="cb12-5"></span>
<span id="cb12-6">    c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb12-7">        t,</span>
<span id="cb12-8">        x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>group_by,</span>
<span id="cb12-9">        y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"downloads"</span>,</span>
<span id="cb12-10">        log_y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>log_y,</span>
<span id="cb12-11">    )</span>
<span id="cb12-12">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> c</span>
<span id="cb12-13"></span>
<span id="cb12-14"></span>
<span id="cb12-15">group_bar(downloads_t)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="d4db15b9-711a-44a5-bb44-b3e72b3e35a5" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("d4db15b9-711a-44a5-bb44-b3e72b3e35a5")) {                    Plotly.newPlot(                        "d4db15b9-711a-44a5-bb44-b3e72b3e35a5",                        [{"alignmentgroup":"True","hovertemplate":"installer=%{x}\u003cbr\u003edownloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["pip","bandersnatch","requests","uv","poetry","","Browser","Bazel","Nexus","pdm","conda","devpi","Artifactory","setuptools"],"xaxis":"x","y":[17994682,1979460,1003504,902177,593614,489716,204722,72706,71571,12247,1475,1357,1255,412],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"installer"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"downloads"},"type":"log"},"legend":{"tracegroupgap":0},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('d4db15b9-711a-44a5-bb44-b3e72b3e35a5');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div class="callout callout-style-default callout-tip callout-titled" title="More examples">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-2-contents" aria-controls="callout-2" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Tip</span>More examples
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-2" class="callout-2-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>Since we’re just writing Python, we’ve already organized code into functions for reuse. We can rerun our above analytics on a different package by changing the <code>project</code> variable and adjusting our table accordingly. We’ll demonstrate this with a few more packages below.</p>
<p>Notice you could also pass in Ibis tables from different backends, not just ClickHouse, to these functions!</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-1-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-1" aria-controls="tabset-1-1" aria-selected="true" href="">PyArrow</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-2" aria-controls="tabset-1-2" aria-selected="false" href="">chDB</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-3" aria-controls="tabset-1-3" aria-selected="false" href="">Ibis</a></li></ul>
<div class="tab-content">
<div id="tabset-1-1" class="tab-pane active" aria-labelledby="tabset-1-1-tab">
<div id="3229d5fe" class="cell" data-execution_count="12">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb13-1">package <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pyarrow"</span></span>
<span id="cb13-2"></span>
<span id="cb13-3">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.table(</span>
<span id="cb13-4">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pypi_downloads_per_day_by_version_by_installer_by_type_by_country"</span></span>
<span id="cb13-5">).<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"project"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> package)</span></code></pre></div></div>
</div>
<div id="881a1ed1" class="cell" data-execution_count="13">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb14-1">day_of_week_bar(t)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="e2826e73-e772-451a-abfc-e677e63900b5" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("e2826e73-e772-451a-abfc-e677e63900b5")) {                    Plotly.newPlot(                        "e2826e73-e772-451a-abfc-e677e63900b5",                        [{"alignmentgroup":"True","hovertemplate":"day_of_week=%{x}\u003cbr\u003edownloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["Sunday","Tuesday","Monday","Friday","Saturday","Thursday","Wednesday"],"xaxis":"x","y":[328043120,481718106,456867275,461885225,344283882,482273291,489690984],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"day_of_week"},"categoryorder":"array","categoryarray":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"downloads"}},"legend":{"tracegroupgap":0},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('e2826e73-e772-451a-abfc-e677e63900b5');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div id="8ebc02fd" class="cell" data-execution_count="14">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb15-1">rolling_downloads(t)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="5a1d037a-83fa-48a3-bae3-28ad2ab02f65" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("5a1d037a-83fa-48a3-bae3-28ad2ab02f65")) {                    Plotly.newPlot(                        "5a1d037a-83fa-48a3-bae3-28ad2ab02f65",                        [{"hovertemplate":"timestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"","showlegend":false,"x":["2017-03-16T00:00:00","2017-03-17T00:00:00","2017-03-18T00:00:00","2017-03-19T00:00:00","2017-03-20T00:00:00","2017-03-21T00:00:00","2017-03-22T00:00:00","2017-03-23T00:00:00","2017-03-24T00:00:00","2017-03-25T00:00:00","2017-03-26T00:00:00","2017-03-27T00:00:00","2017-03-28T00:00:00","2017-03-29T00:00:00","2017-03-30T00:00:00","2017-03-31T00:00:00","2017-04-01T00:00:00","2017-04-02T00:00:00","2017-04-03T00:00:00","2017-04-04T00:00:00","2017-04-05T00:00:00","2017-04-06T00:00:00","2017-04-07T00:00:00","2017-04-08T00:00:00","2017-04-09T00:00:00","2017-04-10T00:00:00","2017-04-11T00:00:00","2017-04-12T00:00:00","2017-04-13T00:00:00","2017-04-14T00:00:00","2017-04-15T00:00:00","2017-04-16T00:00:00","2017-04-17T00:00:00","2017-04-18T00:00:00","2017-04-19T00:00:00","2017-04-20T00:00:00","2017-04-21T00:00:00","2017-04-22T00:00:00","2017-04-23T00:00:00","2017-04-24T00:00:00","2017-04-25T00:00:00","2017-04-26T00:00:00","2017-04-27T00:00:00","2017-04-28T00:00:00","2017-04-29T00:00:00","2017-04-30T00:00:00","2017-05-01T00:00:00","2017-05-02T00:00:00","2017-05-03T00:00:00","2017-05-04T00:00:00","2017-05-05T00:00:00","2017-05-06T00:00:00","2017-05-07T00:00:00","2017-05-08T00:00:00","2017-05-09T00:00:00","2017-05-10T00:00:00","2017-05-11T00:00:00","2017-05-12T00:00:00","2017-05-13T00:00:00","2017-05-14T00:00:00","2017-05-15T00:00:00","2017-05-16T00:00:00","2017-05-17T00:00:00","2017-05-18T00:00:00","2017-05-19T00:00:00","2017-05-20T00:00:00","2017-05-21T00:00:00","2017-05-22T00:00:00","2017-05-23T00:00:00","2017-05-24T00:00:00","2017-05-25T00:00:00","2017-05-26T00:00:00","2017-05-27T00:00:00","2017-05-28T00:00:00","2017-05-29T00:00:00","2017-05-30T00:00:00","2017-05-31T00:00:00","2017-06-01T00:00:00","2017-06-02T00:00:00","2017-06-03T00:00:00","2017-06-04T00:00:00","2017-06-05T00:00:00","2017-06-06T00:00:00","2017-06-07T00:00:00","2017-06-08T00:00:00","2017-06-09T00:00:00","2017-06-10T00:00:00","2017-06-11T00:00:00","2017-06-12T00:00:00","2017-06-13T00:00:00","2017-06-14T00:00:00","2017-06-15T00:00:00","2017-06-16T00:00:00","2017-06-17T00:00:00","2017-06-18T00:00:00","2017-06-19T00:00:00","2017-06-20T00:00:00","2017-06-21T00:00:00","2017-06-22T00:00:00","2017-06-23T00:00:00","2017-06-24T00:00:00","2017-06-25T00:00:00","2017-06-26T00:00:00","2017-06-27T00:00:00","2017-06-28T00:00:00","2017-06-29T00:00:00","2017-06-30T00:00:00","2017-07-01T00:00:00","2017-07-02T00:00:00","2017-07-03T00:00:00","2017-07-04T00:00:00","2017-07-05T00:00:00","2017-07-06T00:00:00","2017-07-07T00:00:00","2017-07-08T00:00:00","2017-07-09T00:00:00","2017-07-10T00:00:00","2017-07-11T00:00:00","2017-07-12T00:00:00","2017-07-13T00:00:00","2017-07-14T00:00:00","2017-07-15T00:00:00","2017-07-16T00:00:00","2017-07-17T00:00:00","2017-07-18T00:00:00","2017-07-19T00:00:00","2017-07-20T00:00:00","2017-07-21T00:00:00","2017-07-22T00:00:00","2017-07-23T00:00:00","2017-07-24T00:00:00","2017-07-25T00:00:00","2017-07-26T00:00:00","2017-07-27T00:00:00","2017-07-28T00:00:00","2017-07-29T00:00:00","2017-07-30T00:00:00","2017-07-31T00:00:00","2017-08-01T00:00:00","2017-08-02T00:00:00","2017-08-03T00:00:00","2017-08-04T00:00:00","2017-08-05T00:00:00","2017-08-06T00:00:00","2017-08-07T00:00:00","2017-08-08T00:00:00","2017-08-09T00:00:00","2017-08-10T00:00:00","2017-08-11T00:00:00","2017-08-12T00:00:00","2017-08-13T00:00:00","2017-08-14T00:00:00","2017-08-15T00:00:00","2017-08-16T00:00:00","2017-08-17T00:00:00","2017-08-18T00:00:00","2017-08-19T00:00:00","2017-08-20T00:00:00","2017-08-21T00:00:00","2017-08-22T00:00:00","2017-08-23T00:00:00","2017-08-24T00:00:00","2017-08-25T00:00:00","2017-08-26T00:00:00","2017-08-27T00:00:00","2017-08-28T00:00:00","2017-08-29T00:00:00","2017-08-30T00:00:00","2017-08-31T00:00:00","2017-09-01T00:00:00","2017-09-02T00:00:00","2017-09-03T00:00:00","2017-09-04T00:00:00","2017-09-05T00:00:00","2017-09-06T00:00:00","2017-09-07T00:00:00","2017-09-08T00:00:00","2017-09-09T00:00:00","2017-09-10T00:00:00","2017-09-11T00:00:00","2017-09-12T00:00:00","2017-09-13T00:00:00","2017-09-14T00:00:00","2017-09-15T00:00:00","2017-09-16T00:00:00","2017-09-17T00:00:00","2017-09-18T00:00:00","2017-09-19T00:00:00","2017-09-20T00:00:00","2017-09-21T00:00:00","2017-09-22T00:00:00","2017-09-23T00:00:00","2017-09-24T00:00:00","2017-09-25T00:00:00","2017-09-26T00:00:00","2017-09-27T00:00:00","2017-09-28T00:00:00","2017-09-29T00:00:00","2017-09-30T00:00:00","2017-10-01T00:00:00","2017-10-02T00:00:00","2017-10-03T00:00:00","2017-10-04T00:00:00","2017-10-05T00:00:00","2017-10-06T00:00:00","2017-10-07T00:00:00","2017-10-08T00:00:00","2017-10-09T00:00:00","2017-10-10T00:00:00","2017-10-11T00:00:00","2017-10-12T00:00:00","2017-10-13T00:00:00","2017-10-14T00:00:00","2017-10-15T00:00:00","2017-10-16T00:00:00","2017-10-17T00:00:00","2017-10-18T00:00:00","2017-10-19T00:00:00","2017-10-20T00:00:00","2017-10-21T00:00:00","2017-10-22T00:00:00","2017-10-23T00:00:00","2017-10-24T00:00:00","2017-10-25T00:00:00","2017-10-26T00:00:00","2017-10-27T00:00:00","2017-10-28T00:00:00","2017-10-29T00:00:00","2017-10-30T00:00:00","2017-10-31T00:00:00","2017-11-01T00:00:00","2017-11-02T00:00:00","2017-11-03T00:00:00","2017-11-04T00:00:00","2017-11-05T00:00:00","2017-11-06T00:00:00","2017-11-07T00:00:00","2017-11-08T00:00:00","2017-11-09T00:00:00","2017-11-10T00:00:00","2017-11-11T00:00:00","2017-11-12T00:00:00","2017-11-13T00:00:00","2017-11-14T00:00:00","2017-11-15T00:00:00","2017-11-16T00:00:00","2017-11-17T00:00:00","2017-11-18T00:00:00","2017-11-19T00:00:00","2017-11-20T00:00:00","2017-11-21T00:00:00","2017-11-22T00:00:00","2017-11-23T00:00:00","2017-11-24T00:00:00","2017-11-25T00:00:00","2017-11-26T00:00:00","2017-11-27T00:00:00","2017-11-28T00:00:00","2017-11-29T00:00:00","2017-11-30T00:00:00","2017-12-01T00:00:00","2017-12-02T00:00:00","2017-12-03T00:00:00","2017-12-04T00:00:00","2017-12-05T00:00:00","2017-12-06T00:00:00","2017-12-07T00:00:00","2017-12-08T00:00:00","2017-12-09T00:00:00","2017-12-10T00:00:00","2017-12-11T00:00:00","2017-12-12T00:00:00","2017-12-13T00:00:00","2017-12-14T00:00:00","2017-12-15T00:00:00","2017-12-16T00:00:00","2017-12-17T00:00:00","2017-12-18T00:00:00","2017-12-19T00:00:00","2017-12-20T00:00:00","2017-12-21T00:00:00","2017-12-22T00:00:00","2017-12-23T00:00:00","2017-12-24T00:00:00","2017-12-25T00:00:00","2017-12-26T00:00:00","2017-12-27T00:00:00","2017-12-28T00:00:00","2017-12-29T00:00:00","2017-12-30T00:00:00","2017-12-31T00:00:00","2018-01-01T00:00:00","2018-01-02T00:00:00","2018-01-03T00:00:00","2018-01-04T00:00:00","2018-01-05T00:00:00","2018-01-06T00:00:00","2018-01-07T00:00:00","2018-01-08T00:00:00","2018-01-09T00:00:00","2018-01-10T00:00:00","2018-01-11T00:00:00","2018-01-12T00:00:00","2018-01-13T00:00:00","2018-01-14T00:00:00","2018-01-15T00:00:00","2018-01-16T00:00:00","2018-01-17T00:00:00","2018-01-18T00:00:00","2018-01-19T00:00:00","2018-01-20T00:00:00","2018-01-21T00:00:00","2018-01-22T00:00:00","2018-01-23T00:00:00","2018-01-24T00:00:00","2018-01-25T00:00:00","2018-01-26T00:00:00","2018-01-27T00:00:00","2018-01-28T00:00:00","2018-01-29T00:00:00","2018-01-30T00:00:00","2018-01-31T00:00:00","2018-02-01T00:00:00","2018-02-02T00:00:00","2018-02-03T00:00:00","2018-02-04T00:00:00","2018-02-05T00:00:00","2018-02-06T00:00:00","2018-02-07T00:00:00","2018-02-08T00:00:00","2018-02-09T00:00:00","2018-02-10T00:00:00","2018-02-11T00:00:00","2018-02-12T00:00:00","2018-02-13T00:00:00","2018-02-14T00:00:00","2018-02-15T00:00:00","2018-02-16T00:00:00","2018-02-17T00:00:00","2018-02-18T00:00:00","2018-02-19T00:00:00","2018-02-20T00:00:00","2018-02-21T00:00:00","2018-02-22T00:00:00","2018-02-23T00:00:00","2018-02-24T00:00:00","2018-02-25T00:00:00","2018-02-26T00:00:00","2018-02-27T00:00:00","2018-02-28T00:00:00","2018-03-01T00:00:00","2018-03-02T00:00:00","2018-03-03T00:00:00","2018-03-04T00:00:00","2018-03-05T00:00:00","2018-03-06T00:00:00","2018-03-07T00:00:00","2018-03-08T00:00:00","2018-03-09T00:00:00","2018-03-10T00:00:00","2018-03-11T00:00:00","2018-03-12T00:00:00","2018-03-13T00:00:00","2018-03-14T00:00:00","2018-03-15T00:00:00","2018-03-16T00:00:00","2018-03-17T00:00:00","2018-03-18T00:00:00","2018-03-19T00:00:00","2018-03-20T00:00:00","2018-03-21T00:00:00","2018-03-22T00:00:00","2018-03-23T00:00:00","2018-03-24T00:00:00","2018-03-25T00:00:00","2018-03-26T00:00:00","2018-03-27T00:00:00","2018-03-28T00:00:00","2018-03-29T00:00:00","2018-03-30T00:00:00","2018-03-31T00:00:00","2018-04-01T00:00:00","2018-04-02T00:00:00","2018-04-03T00:00:00","2018-04-04T00:00:00","2018-04-05T00:00:00","2018-04-06T00:00:00","2018-04-07T00:00:00","2018-04-08T00:00:00","2018-04-09T00:00:00","2018-04-10T00:00:00","2018-04-11T00:00:00","2018-04-12T00:00:00","2018-04-13T00:00:00","2018-04-14T00:00:00","2018-04-15T00:00:00","2018-04-16T00:00:00","2018-04-17T00:00:00","2018-04-18T00:00:00","2018-04-19T00:00:00","2018-04-20T00:00:00","2018-04-21T00:00:00","2018-04-22T00:00:00","2018-04-23T00:00:00","2018-04-24T00:00:00","2018-04-25T00:00:00","2018-04-26T00:00:00","2018-04-27T00:00:00","2018-04-28T00:00:00","2018-04-29T00:00:00","2018-04-30T00:00:00","2018-05-01T00:00:00","2018-05-02T00:00:00","2018-05-03T00:00:00","2018-05-04T00:00:00","2018-05-05T00:00:00","2018-05-06T00:00:00","2018-05-07T00:00:00","2018-05-08T00:00:00","2018-05-09T00:00:00","2018-05-10T00:00:00","2018-05-11T00:00:00","2018-05-12T00:00:00","2018-05-13T00:00:00","2018-05-14T00:00:00","2018-05-15T00:00:00","2018-05-16T00:00:00","2018-05-17T00:00:00","2018-05-18T00:00:00","2018-05-19T00:00:00","2018-05-20T00:00:00","2018-05-21T00:00:00","2018-05-22T00:00:00","2018-05-23T00:00:00","2018-05-24T00:00:00","2018-05-25T00:00:00","2018-05-26T00:00:00","2018-05-27T00:00:00","2018-05-28T00:00:00","2018-05-29T00:00:00","2018-05-30T00:00:00","2018-05-31T00:00:00","2018-06-01T00:00:00","2018-06-02T00:00:00","2018-06-03T00:00:00","2018-06-04T00:00:00","2018-06-05T00:00:00","2018-06-06T00:00:00","2018-06-07T00:00:00","2018-06-08T00:00:00","2018-06-09T00:00:00","2018-06-10T00:00:00","2018-06-11T00:00:00","2018-06-12T00:00:00","2018-06-13T00:00:00","2018-06-14T00:00:00","2018-06-15T00:00:00","2018-06-16T00:00:00","2018-06-17T00:00:00","2018-06-18T00:00:00","2018-06-19T00:00:00","2018-06-20T00:00:00","2018-06-21T00:00:00","2018-06-22T00:00:00","2018-06-23T00:00:00","2018-06-24T00:00:00","2018-06-25T00:00:00","2018-06-26T00:00:00","2018-06-27T00:00:00","2018-06-28T00:00:00","2018-06-29T00:00:00","2018-06-30T00:00:00","2018-07-01T00:00:00","2018-07-02T00:00:00","2018-07-03T00:00:00","2018-07-04T00:00:00","2018-07-05T00:00:00","2018-07-06T00:00:00","2018-07-07T00:00:00","2018-07-08T00:00:00","2018-07-09T00:00:00","2018-07-10T00:00:00","2018-07-11T00:00:00","2018-07-12T00:00:00","2018-07-13T00:00:00","2018-07-14T00:00:00","2018-07-15T00:00:00","2018-07-16T00:00:00","2018-07-17T00:00:00","2018-07-18T00:00:00","2018-07-19T00:00:00","2018-07-20T00:00:00","2018-07-21T00:00:00","2018-07-22T00:00:00","2018-07-23T00:00:00","2018-07-24T00:00:00","2018-07-25T00:00:00","2018-07-26T00:00:00","2018-07-27T00:00:00","2018-07-28T00:00:00","2018-07-29T00:00:00","2018-07-30T00:00:00","2018-07-31T00:00:00","2018-08-01T00:00:00","2018-08-02T00:00:00","2018-08-03T00:00:00","2018-08-04T00:00:00","2018-08-05T00:00:00","2018-08-06T00:00:00","2018-08-07T00:00:00","2018-08-08T00:00:00","2018-08-09T00:00:00","2018-08-10T00:00:00","2018-08-11T00:00:00","2018-08-12T00:00:00","2018-08-13T00:00:00","2018-08-14T00:00:00","2018-08-15T00:00:00","2018-08-16T00:00:00","2018-08-17T00:00:00","2018-08-18T00:00:00","2018-08-19T00:00:00","2018-08-20T00:00:00","2018-08-21T00:00:00","2018-08-22T00:00:00","2018-08-23T00:00:00","2018-08-24T00:00:00","2018-08-25T00:00:00","2018-08-26T00:00:00","2018-08-27T00:00:00","2018-08-28T00:00:00","2018-08-29T00:00:00","2018-08-30T00:00:00","2018-08-31T00:00:00","2018-09-01T00:00:00","2018-09-02T00:00:00","2018-09-03T00:00:00","2018-09-04T00:00:00","2018-09-05T00:00:00","2018-09-06T00:00:00","2018-09-07T00:00:00","2018-09-08T00:00:00","2018-09-09T00:00:00","2018-09-10T00:00:00","2018-09-11T00:00:00","2018-09-12T00:00:00","2018-09-13T00:00:00","2018-09-14T00:00:00","2018-09-15T00:00:00","2018-09-16T00:00:00","2018-09-17T00:00:00","2018-09-18T00:00:00","2018-09-19T00:00:00","2018-09-20T00:00:00","2018-09-21T00:00:00","2018-09-22T00:00:00","2018-09-23T00:00:00","2018-09-24T00:00:00","2018-09-25T00:00:00","2018-09-26T00:00:00","2018-09-27T00:00:00","2018-09-28T00:00:00","2018-09-29T00:00:00","2018-09-30T00:00:00","2018-10-01T00:00:00","2018-10-02T00:00:00","2018-10-03T00:00:00","2018-10-04T00:00:00","2018-10-05T00:00:00","2018-10-06T00:00:00","2018-10-07T00:00:00","2018-10-08T00:00:00","2018-10-09T00:00:00","2018-10-10T00:00:00","2018-10-11T00:00:00","2018-10-12T00:00:00","2018-10-13T00:00:00","2018-10-14T00:00:00","2018-10-15T00:00:00","2018-10-16T00:00:00","2018-10-17T00:00:00","2018-10-18T00:00:00","2018-10-19T00:00:00","2018-10-20T00:00:00","2018-10-21T00:00:00","2018-10-22T00:00:00","2018-10-23T00:00:00","2018-10-24T00:00:00","2018-10-25T00:00:00","2018-10-26T00:00:00","2018-10-27T00:00:00","2018-10-28T00:00:00","2018-10-29T00:00:00","2018-10-30T00:00:00","2018-10-31T00:00:00","2018-11-01T00:00:00","2018-11-02T00:00:00","2018-11-03T00:00:00","2018-11-04T00:00:00","2018-11-05T00:00:00","2018-11-06T00:00:00","2018-11-07T00:00:00","2018-11-08T00:00:00","2018-11-09T00:00:00","2018-11-10T00:00:00","2018-11-11T00:00:00","2018-11-12T00:00:00","2018-11-13T00:00:00","2018-11-14T00:00:00","2018-11-15T00:00:00","2018-11-16T00:00:00","2018-11-17T00:00:00","2018-11-18T00:00:00","2018-11-19T00:00:00","2018-11-20T00:00:00","2018-11-21T00:00:00","2018-11-22T00:00:00","2018-11-23T00:00:00","2018-11-24T00:00:00","2018-11-25T00:00:00","2018-11-26T00:00:00","2018-11-27T00:00:00","2018-11-28T00:00:00","2018-11-29T00:00:00","2018-11-30T00:00:00","2018-12-01T00:00:00","2018-12-02T00:00:00","2018-12-03T00:00:00","2018-12-04T00:00:00","2018-12-05T00:00:00","2018-12-06T00:00:00","2018-12-07T00:00:00","2018-12-08T00:00:00","2018-12-09T00:00:00","2018-12-10T00:00:00","2018-12-11T00:00:00","2018-12-12T00:00:00","2018-12-13T00:00:00","2018-12-14T00:00:00","2018-12-15T00:00:00","2018-12-16T00:00:00","2018-12-17T00:00:00","2018-12-18T00:00:00","2018-12-19T00:00:00","2018-12-20T00:00:00","2018-12-21T00:00:00","2018-12-22T00:00:00","2018-12-23T00:00:00","2018-12-24T00:00:00","2018-12-25T00:00:00","2018-12-26T00:00:00","2018-12-27T00:00:00","2018-12-28T00:00:00","2018-12-29T00:00:00","2018-12-30T00:00:00","2018-12-31T00:00:00","2019-01-01T00:00:00","2019-01-02T00:00:00","2019-01-03T00:00:00","2019-01-04T00:00:00","2019-01-05T00:00:00","2019-01-06T00:00:00","2019-01-07T00:00:00","2019-01-08T00:00:00","2019-01-09T00:00:00","2019-01-10T00:00:00","2019-01-11T00:00:00","2019-01-12T00:00:00","2019-01-13T00:00:00","2019-01-14T00:00:00","2019-01-15T00:00:00","2019-01-16T00:00:00","2019-01-17T00:00:00","2019-01-18T00:00:00","2019-01-19T00:00:00","2019-01-20T00:00:00","2019-01-21T00:00:00","2019-01-22T00:00:00","2019-01-23T00:00:00","2019-01-24T00:00:00","2019-01-25T00:00:00","2019-01-26T00:00:00","2019-01-27T00:00:00","2019-01-28T00:00:00","2019-01-29T00:00:00","2019-01-30T00:00:00","2019-01-31T00:00:00","2019-02-01T00:00:00","2019-02-02T00:00:00","2019-02-03T00:00:00","2019-02-04T00:00:00","2019-02-05T00:00:00","2019-02-06T00:00:00","2019-02-07T00:00:00","2019-02-08T00:00:00","2019-02-09T00:00:00","2019-02-10T00:00:00","2019-02-11T00:00:00","2019-02-12T00:00:00","2019-02-13T00:00:00","2019-02-14T00:00:00","2019-02-15T00:00:00","2019-02-16T00:00:00","2019-02-17T00:00:00","2019-02-18T00:00:00","2019-02-19T00:00:00","2019-02-20T00:00:00","2019-02-21T00:00:00","2019-02-22T00:00:00","2019-02-23T00:00:00","2019-02-24T00:00:00","2019-02-25T00:00:00","2019-02-26T00:00:00","2019-02-27T00:00:00","2019-02-28T00:00:00","2019-03-01T00:00:00","2019-03-02T00:00:00","2019-03-03T00:00:00","2019-03-04T00:00:00","2019-03-05T00:00:00","2019-03-06T00:00:00","2019-03-07T00:00:00","2019-03-08T00:00:00","2019-03-09T00:00:00","2019-03-10T00:00:00","2019-03-11T00:00:00","2019-03-12T00:00:00","2019-03-13T00:00:00","2019-03-14T00:00:00","2019-03-15T00:00:00","2019-03-16T00:00:00","2019-03-17T00:00:00","2019-03-18T00:00:00","2019-03-19T00:00:00","2019-03-20T00:00:00","2019-03-21T00:00:00","2019-03-22T00:00:00","2019-03-23T00:00:00","2019-03-24T00:00:00","2019-03-25T00:00:00","2019-03-26T00:00:00","2019-03-27T00:00:00","2019-03-28T00:00:00","2019-03-29T00:00:00","2019-03-30T00:00:00","2019-03-31T00:00:00","2019-04-01T00:00:00","2019-04-02T00:00:00","2019-04-03T00:00:00","2019-04-04T00:00:00","2019-04-05T00:00:00","2019-04-06T00:00:00","2019-04-07T00:00:00","2019-04-08T00:00:00","2019-04-09T00:00:00","2019-04-10T00:00:00","2019-04-11T00:00:00","2019-04-12T00:00:00","2019-04-13T00:00:00","2019-04-14T00:00:00","2019-04-15T00:00:00","2019-04-16T00:00:00","2019-04-17T00:00:00","2019-04-18T00:00:00","2019-04-19T00:00:00","2019-04-20T00:00:00","2019-04-21T00:00:00","2019-04-22T00:00:00","2019-04-23T00:00:00","2019-04-24T00:00:00","2019-04-25T00:00:00","2019-04-28T00:00:00","2019-04-29T00:00:00","2019-04-30T00:00:00","2019-05-01T00:00:00","2019-05-02T00:00:00","2019-05-03T00:00:00","2019-05-04T00:00:00","2019-05-05T00:00:00","2019-05-06T00:00:00","2019-05-07T00:00:00","2019-05-08T00:00:00","2019-05-09T00:00:00","2019-05-10T00:00:00","2019-05-11T00:00:00","2019-05-12T00:00:00","2019-05-13T00:00:00","2019-05-14T00:00:00","2019-05-15T00:00:00","2019-05-16T00:00:00","2019-05-17T00:00:00","2019-05-18T00:00:00","2019-05-19T00:00:00","2019-05-20T00:00:00","2019-05-21T00:00:00","2019-05-22T00:00:00","2019-05-23T00:00:00","2019-05-24T00:00:00","2019-05-25T00:00:00","2019-05-26T00:00:00","2019-05-27T00:00:00","2019-05-28T00:00:00","2019-05-29T00:00:00","2019-05-30T00:00:00","2019-05-31T00:00:00","2019-06-01T00:00:00","2019-06-02T00:00:00","2019-06-03T00:00:00","2019-06-04T00:00:00","2019-06-05T00:00:00","2019-06-06T00:00:00","2019-06-07T00:00:00","2019-06-08T00:00:00","2019-06-09T00:00:00","2019-06-10T00:00:00","2019-06-11T00:00:00","2019-06-12T00:00:00","2019-06-13T00:00:00","2019-06-14T00:00:00","2019-06-15T00:00:00","2019-06-16T00:00:00","2019-06-17T00:00:00","2019-06-18T00:00:00","2019-06-19T00:00:00","2019-06-20T00:00:00","2019-06-21T00:00:00","2019-06-22T00:00:00","2019-06-23T00:00:00","2019-06-24T00:00:00","2019-06-25T00:00:00","2019-06-26T00:00:00","2019-06-27T00:00:00","2019-06-28T00:00:00","2019-06-29T00:00:00","2019-06-30T00:00:00","2019-07-01T00:00:00","2019-07-02T00:00:00","2019-07-03T00:00:00","2019-07-04T00:00:00","2019-07-05T00:00:00","2019-07-06T00:00:00","2019-07-07T00:00:00","2019-07-08T00:00:00","2019-07-09T00:00:00","2019-07-10T00:00:00","2019-07-11T00:00:00","2019-07-12T00:00:00","2019-07-13T00:00:00","2019-07-14T00:00:00","2019-07-15T00:00:00","2019-07-16T00:00:00","2019-07-17T00:00:00","2019-07-18T00:00:00","2019-07-19T00:00:00","2019-07-20T00:00:00","2019-07-21T00:00:00","2019-07-22T00:00:00","2019-07-23T00:00:00","2019-07-24T00:00:00","2019-07-25T00:00:00","2019-07-26T00:00:00","2019-07-27T00:00:00","2019-07-28T00:00:00","2019-07-29T00:00:00","2019-07-30T00:00:00","2019-07-31T00:00:00","2019-08-01T00:00:00","2019-08-02T00:00:00","2019-08-03T00:00:00","2019-08-04T00:00:00","2019-08-05T00:00:00","2019-08-06T00:00:00","2019-08-07T00:00:00","2019-08-08T00:00:00","2019-08-09T00:00:00","2019-08-10T00:00:00","2019-08-11T00:00:00","2019-08-12T00:00:00","2019-08-13T00:00:00","2019-08-14T00:00:00","2019-08-15T00:00:00","2019-08-16T00:00:00","2019-08-17T00:00:00","2019-08-18T00:00:00","2019-08-19T00:00:00","2019-08-20T00:00:00","2019-08-21T00:00:00","2019-08-22T00:00:00","2019-08-23T00:00:00","2019-08-24T00:00:00","2019-08-25T00:00:00","2019-08-26T00:00:00","2019-08-27T00:00:00","2019-08-28T00:00:00","2019-08-29T00:00:00","2019-08-30T00:00:00","2019-08-31T00:00:00","2019-09-01T00:00:00","2019-09-02T00:00:00","2019-09-03T00:00:00","2019-09-04T00:00:00","2019-09-05T00:00:00","2019-09-06T00:00:00","2019-09-07T00:00:00","2019-09-08T00:00:00","2019-09-09T00:00:00","2019-09-10T00:00:00","2019-09-11T00:00:00","2019-09-12T00:00:00","2019-09-13T00:00:00","2019-09-14T00:00:00","2019-09-15T00:00:00","2019-09-16T00:00:00","2019-09-17T00:00:00","2019-09-18T00:00:00","2019-09-19T00:00:00","2019-09-20T00:00:00","2019-09-21T00:00:00","2019-09-22T00:00:00","2019-09-23T00:00:00","2019-09-24T00:00:00","2019-09-25T00:00:00","2019-09-26T00:00:00","2019-09-27T00:00:00","2019-09-28T00:00:00","2019-09-29T00:00:00","2019-09-30T00:00:00","2019-10-01T00:00:00","2019-10-02T00:00:00","2019-10-03T00:00:00","2019-10-04T00:00:00","2019-10-05T00:00:00","2019-10-06T00:00:00","2019-10-07T00:00:00","2019-10-08T00:00:00","2019-10-09T00:00:00","2019-10-10T00:00:00","2019-10-11T00:00:00","2019-10-12T00:00:00","2019-10-13T00:00:00","2019-10-14T00:00:00","2019-10-15T00:00:00","2019-10-16T00:00:00","2019-10-17T00:00:00","2019-10-18T00:00:00","2019-10-19T00:00:00","2019-10-20T00:00:00","2019-10-21T00:00:00","2019-10-22T00:00:00","2019-10-23T00:00:00","2019-10-24T00:00:00","2019-10-25T00:00:00","2019-10-26T00:00:00","2019-10-27T00:00:00","2019-10-28T00:00:00","2019-10-29T00:00:00","2019-10-30T00:00:00","2019-10-31T00:00:00","2019-11-01T00:00:00","2019-11-02T00:00:00","2019-11-03T00:00:00","2019-11-04T00:00:00","2019-11-05T00:00:00","2019-11-06T00:00:00","2019-11-07T00:00:00","2019-11-08T00:00:00","2019-11-09T00:00:00","2019-11-10T00:00:00","2019-11-11T00:00:00","2019-11-12T00:00:00","2019-11-13T00:00:00","2019-11-14T00:00:00","2019-11-15T00:00:00","2019-11-16T00:00:00","2019-11-17T00:00:00","2019-11-18T00:00:00","2019-11-19T00:00:00","2019-11-20T00:00:00","2019-11-21T00:00:00","2019-11-22T00:00:00","2019-11-23T00:00:00","2019-11-24T00:00:00","2019-11-25T00:00:00","2019-11-26T00:00:00","2019-11-27T00:00:00","2019-11-28T00:00:00","2019-11-29T00:00:00","2019-11-30T00:00:00","2019-12-01T00:00:00","2019-12-02T00:00:00","2019-12-03T00:00:00","2019-12-04T00:00:00","2019-12-05T00:00:00","2019-12-06T00:00:00","2019-12-07T00:00:00","2019-12-08T00:00:00","2019-12-09T00:00:00","2019-12-10T00:00:00","2019-12-11T00:00:00","2019-12-12T00:00:00","2019-12-13T00:00:00","2019-12-14T00:00:00","2019-12-15T00:00:00","2019-12-16T00:00:00","2019-12-17T00:00:00","2019-12-18T00:00:00","2019-12-19T00:00:00","2019-12-20T00:00:00","2019-12-21T00:00:00","2019-12-22T00:00:00","2019-12-23T00:00:00","2019-12-24T00:00:00","2019-12-25T00:00:00","2019-12-26T00:00:00","2019-12-27T00:00:00","2019-12-28T00:00:00","2019-12-29T00:00:00","2019-12-30T00:00:00","2019-12-31T00:00:00","2020-01-01T00:00:00","2020-01-02T00:00:00","2020-01-03T00:00:00","2020-01-04T00:00:00","2020-01-05T00:00:00","2020-01-06T00:00:00","2020-01-07T00:00:00","2020-01-08T00:00:00","2020-01-09T00:00:00","2020-01-10T00:00:00","2020-01-11T00:00:00","2020-01-12T00:00:00","2020-01-13T00:00:00","2020-01-14T00:00:00","2020-01-15T00:00:00","2020-01-16T00:00:00","2020-01-17T00:00:00","2020-01-18T00:00:00","2020-01-19T00:00:00","2020-01-20T00:00:00","2020-01-21T00:00:00","2020-01-22T00:00:00","2020-01-23T00:00:00","2020-01-24T00:00:00","2020-01-25T00:00:00","2020-01-26T00:00:00","2020-01-27T00:00:00","2020-01-28T00:00:00","2020-01-29T00:00:00","2020-01-30T00:00:00","2020-01-31T00:00:00","2020-02-01T00:00:00","2020-02-02T00:00:00","2020-02-03T00:00:00","2020-02-04T00:00:00","2020-02-05T00:00:00","2020-02-06T00:00:00","2020-02-07T00:00:00","2020-02-08T00:00:00","2020-02-09T00:00:00","2020-02-10T00:00:00","2020-02-11T00:00:00","2020-02-12T00:00:00","2020-02-13T00:00:00","2020-02-14T00:00:00","2020-02-15T00:00:00","2020-02-16T00:00:00","2020-02-17T00:00:00","2020-02-18T00:00:00","2020-02-19T00:00:00","2020-02-20T00:00:00","2020-02-21T00:00:00","2020-02-22T00:00:00","2020-02-23T00:00:00","2020-02-24T00:00:00","2020-02-25T00:00:00","2020-02-26T00:00:00","2020-02-27T00:00:00","2020-02-28T00:00:00","2020-02-29T00:00:00","2020-03-01T00:00:00","2020-03-02T00:00:00","2020-03-03T00:00:00","2020-03-04T00:00:00","2020-03-05T00:00:00","2020-03-06T00:00:00","2020-03-07T00:00:00","2020-03-08T00:00:00","2020-03-09T00:00:00","2020-03-10T00:00:00","2020-03-11T00:00:00","2020-03-12T00:00:00","2020-03-13T00:00:00","2020-03-14T00:00:00","2020-03-15T00:00:00","2020-03-16T00:00:00","2020-03-17T00:00:00","2020-03-18T00:00:00","2020-03-19T00:00:00","2020-03-20T00:00:00","2020-03-21T00:00:00","2020-03-22T00:00:00","2020-03-23T00:00:00","2020-03-24T00:00:00","2020-03-25T00:00:00","2020-03-26T00:00:00","2020-03-27T00:00:00","2020-03-28T00:00:00","2020-03-29T00:00:00","2020-03-30T00:00:00","2020-03-31T00:00:00","2020-04-01T00:00:00","2020-04-02T00:00:00","2020-04-03T00:00:00","2020-04-04T00:00:00","2020-04-05T00:00:00","2020-04-06T00:00:00","2020-04-07T00:00:00","2020-04-08T00:00:00","2020-04-09T00:00:00","2020-04-10T00:00:00","2020-04-11T00:00:00","2020-04-12T00:00:00","2020-04-13T00:00:00","2020-04-14T00:00:00","2020-04-15T00:00:00","2020-04-16T00:00:00","2020-04-17T00:00:00","2020-04-18T00:00:00","2020-04-19T00:00:00","2020-04-20T00:00:00","2020-04-21T00:00:00","2020-04-22T00:00:00","2020-04-23T00:00:00","2020-04-24T00:00:00","2020-04-25T00:00:00","2020-04-26T00:00:00","2020-04-27T00:00:00","2020-04-28T00:00:00","2020-04-29T00:00:00","2020-04-30T00:00:00","2020-05-01T00:00:00","2020-05-02T00:00:00","2020-05-03T00:00:00","2020-05-04T00:00:00","2020-05-05T00:00:00","2020-05-06T00:00:00","2020-05-07T00:00:00","2020-05-08T00:00:00","2020-05-09T00:00:00","2020-05-10T00:00:00","2020-05-11T00:00:00","2020-05-12T00:00:00","2020-05-13T00:00:00","2020-05-14T00:00:00","2020-05-15T00:00:00","2020-05-16T00:00:00","2020-05-17T00:00:00","2020-05-18T00:00:00","2020-05-19T00:00:00","2020-05-20T00:00:00","2020-05-21T00:00:00","2020-05-22T00:00:00","2020-05-23T00:00:00","2020-05-24T00:00:00","2020-05-25T00:00:00","2020-05-26T00:00:00","2020-05-27T00:00:00","2020-05-28T00:00:00","2020-05-29T00:00:00","2020-05-30T00:00:00","2020-05-31T00:00:00","2020-06-01T00:00:00","2020-06-02T00:00:00","2020-06-03T00:00:00","2020-06-04T00:00:00","2020-06-05T00:00:00","2020-06-06T00:00:00","2020-06-07T00:00:00","2020-06-08T00:00:00","2020-06-09T00:00:00","2020-06-10T00:00:00","2020-06-11T00:00:00","2020-06-12T00:00:00","2020-06-13T00:00:00","2020-06-14T00:00:00","2020-06-15T00:00:00","2020-06-16T00:00:00","2020-06-17T00:00:00","2020-06-18T00:00:00","2020-06-19T00:00:00","2020-06-20T00:00:00","2020-06-21T00:00:00","2020-06-22T00:00:00","2020-06-23T00:00:00","2020-06-24T00:00:00","2020-06-25T00:00:00","2020-06-26T00:00:00","2020-06-27T00:00:00","2020-06-28T00:00:00","2020-06-29T00:00:00","2020-06-30T00:00:00","2020-07-01T00:00:00","2020-07-02T00:00:00","2020-07-03T00:00:00","2020-07-04T00:00:00","2020-07-05T00:00:00","2020-07-06T00:00:00","2020-07-07T00:00:00","2020-07-08T00:00:00","2020-07-09T00:00:00","2020-07-10T00:00:00","2020-07-11T00:00:00","2020-07-12T00:00:00","2020-07-13T00:00:00","2020-07-14T00:00:00","2020-07-15T00:00:00","2020-07-16T00:00:00","2020-07-17T00:00:00","2020-07-18T00:00:00","2020-07-19T00:00:00","2020-07-20T00:00:00","2020-07-21T00:00:00","2020-07-22T00:00:00","2020-07-23T00:00:00","2020-07-24T00:00:00","2020-07-25T00:00:00","2020-07-26T00:00:00","2020-07-27T00:00:00","2020-07-28T00:00:00","2020-07-29T00:00:00","2020-07-30T00:00:00","2020-07-31T00:00:00","2020-08-01T00:00:00","2020-08-02T00:00:00","2020-08-03T00:00:00","2020-08-04T00:00:00","2020-08-05T00:00:00","2020-08-06T00:00:00","2020-08-07T00:00:00","2020-08-08T00:00:00","2020-08-09T00:00:00","2020-08-10T00:00:00","2020-08-11T00:00:00","2020-08-12T00:00:00","2020-08-13T00:00:00","2020-08-14T00:00:00","2020-08-15T00:00:00","2020-08-16T00:00:00","2020-08-17T00:00:00","2020-08-18T00:00:00","2020-08-19T00:00:00","2020-08-20T00:00:00","2020-08-21T00:00:00","2020-08-22T00:00:00","2020-08-23T00:00:00","2020-08-24T00:00:00","2020-08-25T00:00:00","2020-08-26T00:00:00","2020-08-27T00:00:00","2020-08-28T00:00:00","2020-08-29T00:00:00","2020-08-30T00:00:00","2020-08-31T00:00:00","2020-09-01T00:00:00","2020-09-02T00:00:00","2020-09-03T00:00:00","2020-09-04T00:00:00","2020-09-05T00:00:00","2020-09-06T00:00:00","2020-09-07T00:00:00","2020-09-08T00:00:00","2020-09-09T00:00:00","2020-09-10T00:00:00","2020-09-11T00:00:00","2020-09-12T00:00:00","2020-09-13T00:00:00","2020-09-14T00:00:00","2020-09-15T00:00:00","2020-09-16T00:00:00","2020-09-17T00:00:00","2020-09-18T00:00:00","2020-09-19T00:00:00","2020-09-20T00:00:00","2020-09-21T00:00:00","2020-09-22T00:00:00","2020-09-23T00:00:00","2020-09-24T00:00:00","2020-09-25T00:00:00","2020-09-26T00:00:00","2020-09-27T00:00:00","2020-09-28T00:00:00","2020-09-29T00:00:00","2020-09-30T00:00:00","2020-10-01T00:00:00","2020-10-02T00:00:00","2020-10-03T00:00:00","2020-10-04T00:00:00","2020-10-05T00:00:00","2020-10-06T00:00:00","2020-10-07T00:00:00","2020-10-08T00:00:00","2020-10-09T00:00:00","2020-10-10T00:00:00","2020-10-11T00:00:00","2020-10-12T00:00:00","2020-10-13T00:00:00","2020-10-14T00:00:00","2020-10-15T00:00:00","2020-10-16T00:00:00","2020-10-17T00:00:00","2020-10-18T00:00:00","2020-10-19T00:00:00","2020-10-20T00:00:00","2020-10-21T00:00:00","2020-10-22T00:00:00","2020-10-23T00:00:00","2020-10-24T00:00:00","2020-10-25T00:00:00","2020-10-26T00:00:00","2020-10-27T00:00:00","2020-10-28T00:00:00","2020-10-29T00:00:00","2020-10-30T00:00:00","2020-10-31T00:00:00","2020-11-01T00:00:00","2020-11-02T00:00:00","2020-11-03T00:00:00","2020-11-04T00:00:00","2020-11-05T00:00:00","2020-11-06T00:00:00","2020-11-07T00:00:00","2020-11-08T00:00:00","2020-11-09T00:00:00","2020-11-10T00:00:00","2020-11-11T00:00:00","2020-11-12T00:00:00","2020-11-13T00:00:00","2020-11-14T00:00:00","2020-11-15T00:00:00","2020-11-16T00:00:00","2020-11-17T00:00:00","2020-11-18T00:00:00","2020-11-19T00:00:00","2020-11-20T00:00:00","2020-11-21T00:00:00","2020-11-22T00:00:00","2020-11-23T00:00:00","2020-11-24T00:00:00","2020-11-25T00:00:00","2020-11-26T00:00:00","2020-11-27T00:00:00","2020-11-28T00:00:00","2020-11-29T00:00:00","2020-11-30T00:00:00","2020-12-01T00:00:00","2020-12-02T00:00:00","2020-12-03T00:00:00","2020-12-04T00:00:00","2020-12-05T00:00:00","2020-12-06T00:00:00","2020-12-07T00:00:00","2020-12-08T00:00:00","2020-12-09T00:00:00","2020-12-10T00:00:00","2020-12-11T00:00:00","2020-12-12T00:00:00","2020-12-13T00:00:00","2020-12-14T00:00:00","2020-12-15T00:00:00","2020-12-16T00:00:00","2020-12-17T00:00:00","2020-12-18T00:00:00","2020-12-19T00:00:00","2020-12-20T00:00:00","2020-12-21T00:00:00","2020-12-22T00:00:00","2020-12-23T00:00:00","2020-12-24T00:00:00","2020-12-25T00:00:00","2020-12-26T00:00:00","2020-12-27T00:00:00","2020-12-28T00:00:00","2020-12-29T00:00:00","2020-12-30T00:00:00","2020-12-31T00:00:00","2021-01-01T00:00:00","2021-01-02T00:00:00","2021-01-03T00:00:00","2021-01-04T00:00:00","2021-01-05T00:00:00","2021-01-06T00:00:00","2021-01-07T00:00:00","2021-01-08T00:00:00","2021-01-09T00:00:00","2021-01-10T00:00:00","2021-01-11T00:00:00","2021-01-12T00:00:00","2021-01-13T00:00:00","2021-01-14T00:00:00","2021-01-15T00:00:00","2021-01-16T00:00:00","2021-01-17T00:00:00","2021-01-18T00:00:00","2021-01-19T00:00:00","2021-01-20T00:00:00","2021-01-21T00:00:00","2021-01-22T00:00:00","2021-01-23T00:00:00","2021-01-24T00:00:00","2021-01-25T00:00:00","2021-01-26T00:00:00","2021-01-27T00:00:00","2021-01-28T00:00:00","2021-01-29T00:00:00","2021-01-30T00:00:00","2021-01-31T00:00:00","2021-02-01T00:00:00","2021-02-02T00:00:00","2021-02-03T00:00:00","2021-02-04T00:00:00","2021-02-05T00:00:00","2021-02-06T00:00:00","2021-02-07T00:00:00","2021-02-08T00:00:00","2021-02-09T00:00:00","2021-02-10T00:00:00","2021-02-11T00:00:00","2021-02-12T00:00:00","2021-02-13T00:00:00","2021-02-14T00:00:00","2021-02-15T00:00:00","2021-02-16T00:00:00","2021-02-17T00:00:00","2021-02-18T00:00:00","2021-02-19T00:00:00","2021-02-20T00:00:00","2021-02-21T00:00:00","2021-02-22T00:00:00","2021-02-23T00:00:00","2021-02-24T00:00:00","2021-02-25T00:00:00","2021-02-26T00:00:00","2021-02-27T00:00:00","2021-02-28T00:00:00","2021-03-01T00:00:00","2021-03-02T00:00:00","2021-03-03T00:00:00","2021-03-04T00:00:00","2021-03-05T00:00:00","2021-03-06T00:00:00","2021-03-07T00:00:00","2021-03-08T00:00:00","2021-03-09T00:00:00","2021-03-10T00:00:00","2021-03-11T00:00:00","2021-03-12T00:00:00","2021-03-13T00:00:00","2021-03-14T00:00:00","2021-03-15T00:00:00","2021-03-16T00:00:00","2021-03-17T00:00:00","2021-03-18T00:00:00","2021-03-19T00:00:00","2021-03-20T00:00:00","2021-03-21T00:00:00","2021-03-22T00:00:00","2021-03-23T00:00:00","2021-03-24T00:00:00","2021-03-25T00:00:00","2021-03-26T00:00:00","2021-03-27T00:00:00","2021-03-28T00:00:00","2021-03-29T00:00:00","2021-03-30T00:00:00","2021-03-31T00:00:00","2021-04-01T00:00:00","2021-04-02T00:00:00","2021-04-03T00:00:00","2021-04-04T00:00:00","2021-04-05T00:00:00","2021-04-06T00:00:00","2021-04-07T00:00:00","2021-04-08T00:00:00","2021-04-09T00:00:00","2021-04-10T00:00:00","2021-04-11T00:00:00","2021-04-12T00:00:00","2021-04-13T00:00:00","2021-04-14T00:00:00","2021-04-15T00:00:00","2021-04-16T00:00:00","2021-04-17T00:00:00","2021-04-18T00:00:00","2021-04-19T00:00:00","2021-04-20T00:00:00","2021-04-21T00:00:00","2021-04-22T00:00:00","2021-04-23T00:00:00","2021-04-24T00:00:00","2021-04-25T00:00:00","2021-04-26T00:00:00","2021-04-27T00:00:00","2021-04-28T00:00:00","2021-04-29T00:00:00","2021-04-30T00:00:00","2021-05-01T00:00:00","2021-05-02T00:00:00","2021-05-03T00:00:00","2021-05-04T00:00:00","2021-05-05T00:00:00","2021-05-06T00:00:00","2021-05-07T00:00:00","2021-05-08T00:00:00","2021-05-09T00:00:00","2021-05-10T00:00:00","2021-05-11T00:00:00","2021-05-12T00:00:00","2021-05-13T00:00:00","2021-05-14T00:00:00","2021-05-15T00:00:00","2021-05-16T00:00:00","2021-05-17T00:00:00","2021-05-18T00:00:00","2021-05-19T00:00:00","2021-05-20T00:00:00","2021-05-21T00:00:00","2021-05-22T00:00:00","2021-05-23T00:00:00","2021-05-24T00:00:00","2021-05-25T00:00:00","2021-05-26T00:00:00","2021-05-27T00:00:00","2021-05-28T00:00:00","2021-05-29T00:00:00","2021-05-30T00:00:00","2021-05-31T00:00:00","2021-06-01T00:00:00","2021-06-02T00:00:00","2021-06-03T00:00:00","2021-06-04T00:00:00","2021-06-05T00:00:00","2021-06-06T00:00:00","2021-06-07T00:00:00","2021-06-08T00:00:00","2021-06-09T00:00:00","2021-06-10T00:00:00","2021-06-11T00:00:00","2021-06-12T00:00:00","2021-06-13T00:00:00","2021-06-14T00:00:00","2021-06-15T00:00:00","2021-06-16T00:00:00","2021-06-17T00:00:00","2021-06-18T00:00:00","2021-06-19T00:00:00","2021-06-20T00:00:00","2021-06-21T00:00:00","2021-06-22T00:00:00","2021-06-23T00:00:00","2021-06-24T00:00:00","2021-06-25T00:00:00","2021-06-26T00:00:00","2021-06-27T00:00:00","2021-06-28T00:00:00","2021-06-29T00:00:00","2021-06-30T00:00:00","2021-07-01T00:00:00","2021-07-02T00:00:00","2021-07-03T00:00:00","2021-07-04T00:00:00","2021-07-05T00:00:00","2021-07-06T00:00:00","2021-07-07T00:00:00","2021-07-08T00:00:00","2021-07-09T00:00:00","2021-07-10T00:00:00","2021-07-11T00:00:00","2021-07-12T00:00:00","2021-07-13T00:00:00","2021-07-14T00:00:00","2021-07-15T00:00:00","2021-07-16T00:00:00","2021-07-17T00:00:00","2021-07-18T00:00:00","2021-07-19T00:00:00","2021-07-20T00:00:00","2021-07-21T00:00:00","2021-07-22T00:00:00","2021-07-23T00:00:00","2021-07-24T00:00:00","2021-07-25T00:00:00","2021-07-26T00:00:00","2021-07-27T00:00:00","2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-30T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-12T00:00:00","2021-08-13T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-17T00:00:00","2021-08-18T00:00:00","2021-08-19T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-22T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-25T00:00:00","2021-08-26T00:00:00","2021-08-27T00:00:00","2021-08-28T00:00:00","2021-08-29T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-06T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-10T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-13T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-18T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-24T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-05T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[429,956,1116,1206,1286,1343,1455,1504,1553,1577,1613,1670,1732,1804,1854,1881,1893,1908,1938,1971,2017,2048,2090,2111,2130,2174,2191,2239,2266,1865,1381,1251,1192,1155,1129,1047,1030,987,986,990,959,939,897,882,876,876,884,897,907,907,925,897,883,1825,2023,2076,2072,2154,2213,2240,2287,2336,2414,2474,2556,2567,2577,2620,3572,4166,4426,4565,4618,4677,4842,5034,5173,5310,5657,5663,5762,5958,5288,5214,5318,5443,5465,5508,5586,6685,7723,7950,8265,8335,8430,8874,9273,8716,8428,8421,8320,8309,8636,8803,8885,9015,9110,8753,8796,9076,9140,9238,9576,9701,9880,9864,10010,10091,9171,8690,8778,8576,8502,8727,8638,8603,8464,8608,8621,8676,8957,9493,9930,10108,10221,10409,10720,10893,11382,13247,14518,15606,15691,15518,16393,16846,18282,19266,19777,19581,19513,20491,20750,21747,23113,23748,23690,23818,24341,24473,24129,24101,24393,24260,23988,24349,24906,24983,23535,22530,21562,21396,21812,21632,21638,20450,19644,18851,18942,19236,18692,18803,18267,17295,17130,17306,18936,20304,21470,22313,23107,23477,24197,25449,26012,26409,26792,27390,27822,28098,29112,31055,32674,33462,34610,35125,35773,37087,38325,38850,39193,39908,40428,40787,41226,40302,39458,39346,39496,38772,38015,38462,38752,38949,39454,39501,38943,38543,39130,39635,38930,37839,38441,37831,38243,38856,38764,38692,39395,40119,39714,39232,39734,40306,40312,40297,39928,39286,39760,40449,39884,39559,39190,38670,38282,38717,39130,38748,38177,37419,37659,37354,38137,38503,38718,39031,39331,39881,40215,41027,42219,42625,43470,44330,45270,45869,47261,48235,50102,51472,52512,53521,53666,54408,54787,55763,56573,57299,57771,57366,56689,55956,56245,56092,56074,56140,56665,56525,56505,56301,56533,55524,55212,54833,54991,54376,53550,52081,51145,50663,50007,50301,49753,50092,49098,48428,47495,47818,48337,48498,48949,48245,48309,48217,47845,46766,46364,45625,45071,43907,44587,45154,45869,46216,46215,46254,46245,46892,46802,47135,47136,47585,47538,48481,50136,51171,51890,52051,52345,52937,52916,52754,53051,53998,53511,53558,53403,53004,53172,52973,52809,51524,50435,49979,50286,50607,50659,51131,51977,52428,52659,52359,52178,53915,58266,57391,57243,57814,58623,60650,63337,65943,66588,67340,67732,69916,73150,76002,77949,78863,80193,81838,84015,86566,89894,93176,93198,91536,91221,91470,91480,92364,91400,87146,86995,86813,86405,85234,84510,82525,79866,78416,77535,77233,76035,74474,73220,70881,69238,69346,68631,67119,65172,62458,59078,58742,58967,58364,58638,60315,60366,58664,58105,57853,58510,58898,59738,59561,59478,59337,59122,59804,59700,60254,61011,60057,60478,61271,60246,61832,63029,63818,63624,63996,63788,64473,65592,65395,64129,63203,62932,63075,63318,63143,63560,63302,62875,62574,62491,62581,64837,65730,66107,66214,68562,69487,69628,71213,75108,80146,81948,80955,79128,77943,76792,75894,75456,74203,73037,71918,70956,69927,69700,69772,67797,65827,63992,62602,71929,73919,76513,84719,96048,104465,115239,121785,123915,120966,123606,132402,143462,154424,163484,167577,170609,190088,199461,218342,228982,239159,244699,248793,257883,273170,284321,295041,304302,299122,298413,304200,304836,302753,302244,301618,298701,298923,302628,302198,298143,297928,296634,291828,291967,298940,289775,291967,284767,285753,281170,280634,288464,289757,288085,289507,290314,286212,285696,291997,294937,298721,299567,300664,294359,294335,300922,305770,309822,314302,316729,315306,318803,332068,341848,348704,350709,350820,346755,352701,364285,365453,367105,374144,383922,386070,389846,401527,407323,418148,411388,421029,424725,427257,458385,466398,478518,484280,490612,488601,491923,504771,504156,504180,502835,503352,499493,500341,503892,505386,513729,521201,519323,506153,501529,508558,510840,514856,514391,527483,511814,504507,516566,501491,505248,506131,503921,494108,491271,500148,502066,508499,510273,513055,507610,508135,519124,526112,533465,533839,535587,531486,532886,546383,576976,608237,610138,604068,593831,597397,598704,588276,581800,574818,571389,564047,563710,566007,555327,552141,548723,544291,535502,538200,573406,579624,582018,583616,582407,570165,568449,581283,585696,567172,543526,541550,535974,537838,548453,563862,590133,605060,620050,613104,615342,634443,652811,686252,718137,739083,742164,746663,763556,757946,767002,775286,779909,776151,786436,808187,838294,859235,872402,891935,894280,919976,942693,959096,978599,982195,1006447,1028321,1060101,1108541,1139350,1163110,1167915,1160007,1146051,1149693,1174221,1193468,1207588,1223176,1241267,1254582,1281087,1309659,1327028,1326049,1331926,1350387,1341798,1352692,1365695,1384222,1401270,1402944,1416321,1399352,1376491,1383561,1383126,1381643,1389677,1391685,1384732,1391267,1423879,1446052,1464900,1473165,1477604,1464933,1454819,1463880,1472691,1482518,1488832,1503097,1460293,1463761,1486101,1501066,1509167,1518213,1515941,1496641,1495958,1509332,1513940,1497872,1444380,1387900,1400789,1424941,1449336,1454627,1454887,1424976,1406003,1418143,1456152,1492722,1519257,1522431,1497084,1479724,1482578,1535385,1564818,1575364,1569464,1553375,1536131,1564195,1608519,1649313,1679646,1685779,1681859,1720305,1773889,1788372,1812408,1835006,1844623,1833738,1844237,1875122,1889315,1907143,1918741,1919852,1912687,1927906,1963268,1975047,1997865,2007361,2023699,2010759,2020368,2056237,2068494,2082151,2085075,2086761,2073649,2085809,2124389,2152017,2158230,2166579,2172103,2146856,2147195,2188741,2206249,2222838,2209880,2205320,2177696,2176850,2222261,2235487,2247625,2251446,2251018,2216155,2217795,2245020,2249217,2265169,2267925,2282946,2260575,2261953,2297950,2310684,2330798,2343856,2342653,2311462,2313718,2349181,2358263,2375860,2376428,2380305,2351325,2348341,2387431,2397520,2410126,2412959,2409172,2374115,2370608,2412557,2433953,2448670,2446657,2437981,2389204,2386594,2423257,2434003,2448728,2449817,2446852,2410871,2410356,2459635,2479084,2489394,2487329,2484511,2451480,2458708,2483439,2487189,2491769,2501467,2515408,2481438,2493562,2557423,2567811,2585621,2615897,2633924,2624073,2654600,2716628,2751222,2787867,2827805,2850772,2841875,2860111,2941207,2976868,3003051,3030859,3055746,3043554,3059536,3129333,3228814,3292834,3342861,3378454,3371586,3403015,3504707,3583076,3653870,3704162,3747231,3738597,3752082,3829391,3898237,3956596,3986945,4174751,4289057,4315653,4440032,4500211,4537305,4568845,4612017,4611859,4635922,4731079,4760706,4760927,4761839,4752237,4727484,4722975,4800909,4828963,4829795,4845629,4838698,4801095,4812942,4890151,4924245,4916874,4894001,4882200,4666278,4516977,4568631,4530913,4485217,4467136,4471845,4424359,4397415,4456092,4559615,4740262,4881809,5016827,5136410,5241880,5428161,5594496,5645661,5702237,5738983,5731888,5745649,5849909,5897884,5958198,6014708,6044838,6043612,6076808,6193884,6238504,6298463,6347776,6419147,6398313,6413102,6486540,6480433,6351374,6173117,6015077,5857374,5731307,5677183,5550800,5349294,5284951,5225896,5136859,5115805,5135299,5101164,5096628,5053808,5062441,5077874,5096874,5160597,5189991,5150278,5114236,5107079,4995253,4949233,4955833,4959404,4967797,5026483,5066679,5057392,5012670,5022287,5020839,5034367,5071952,5068452,4989492,4964583,4987242,5011577,4995230,4971555,4954936,4831091,4736773,4750920,4722236,4684380,4730758,4736494,4652445,4655810,4717467,4765229,4785855,4812010,4813960,4743190,4736881,4825844,4866991,4908688,4966815,5002608,4972554,5001733,5075205,5126986,5135415,5175982,5215086,5170947,5201997,5306067,5329859,5351321,5347873,5338567,5287274,5315025,5395625,5454552,5454928,5452670,5451099,5386592,5380698,5423555,5434183,5432406,5411360,5367091,5286433,5271311,5324916,5355534,5340277,5334561,5340925,5245447,5246501,5324788,5341402,5326365,5320757,5327960,5262177,5282243,5367088,5397486,5400732,5430534,5467225,5413521,5412587,5492398,5518798,5534845,5545907,5574884,5516477,5519348,5597282,5629477,5637881,5642977,5653804,5572526,5577836,5630538,5616612,5604982,5628318,5683755,5647088,5672671,5749887,5763958,5782191,5838936,5876877,5815140,5849709,5971045,6022917,6050353,6084541,6109836,6079029,6120029,6201049,6247786,6284169,6370084,6427278,6378669,6380274,6460628,6519970,6563035,6589319,6626635,6533929,6551670,6627982,6653358,6690722,6730986,6729758,6637122,6620668,6704261,6730341,6759607,6796796,6809052,6749970,6728477,6842180,6912606,6968764,7005766,7003599,6950035,6997336,7134967,7233636,7260200,7297241,7286882,7228210,7267883,7373734,7464911,7519220,7587824,7610979,7520077,7513179,7622452,7790669,7890913,7953909,8055329,7979397,7993621,8086748,8119336,8152731,8172424,8189560,8077976,8058899,8232238,8389744,8424287,8469366,8504360,8500133,8522582,8645023,8700592,8720764,8770146,8798488,8745757,8783435,8974434,9128569,9077267,9077583,9134663,9024521,9054503,9193386,9299375,9439718,9515803,9560750,9497257,9538074,9686973,9700573,9667882,9708633,9746069,9657280,9633791,9788717,9819119,9820933,9822314,9775176,9638565,9587600,9637645,9621977,9566515,9543016,9539277,9382184,9355880,9496971,9540123,9545708,9471433,9456996,9356075,9328436,9465919,9530080,9544294,9536018,9562702,9453322,9447500,9588054,9676091,9713367,9759490,9795493,10261625,10895252,11627095,11763657,11860330,11896143,11940963,11871319,11869914,12015601,12116216,12201086,12272443,12340444,12264854,12271235,12475765,12639982,12756547,12829854,12868249,12762524,12797481,12999104,13155326,13150178,13224780,13261985,13171241,12691667,12261766,11796517,11843616,11868294,11906004,11823888,11796528,12005403,12089948,12096921,12146397,12155424,12018827,12053191,12225034,12297755,12255045,12236771,12229428,12165293,12175359,12339955,12398290,12382300,12335219,12327274,12220431,12219228,12346596,12399322,12404661,12425214,12447631,12376664,12380849,12573612,12623538,12636620,12699515,12720096,12609366,12604184,12702147,12754276,12775388,12824598,13209555,13597164,13926691,14348103,14767901,15107928,15065794,15474264,15547575,15976147,16163034,16499740,16469586,16652442,16764217,16785544,16880256,17211589,17485641,17695224,17899616,18031504,18151967,18336006,18731450,18933002,19265153,19475002,19688537,19332585,18995363,19038824,18896693,18955685,19123883,19788971,19807511,19877156,19920308,20271496,20564547,21208608,21869085,21943636,22107553,22463642,23038277,23070849,23122198,23262129,23177257,23186126,23381047,23533309,23694584,23706350,23757524,23739821,23850952,24044730,24124619,24424796,24344757,24241256,23816752,23598721,23848046,23930292,24209120,24139143,24155946,23748261,24002234,24386179,24654643,24458647,24821418,25223583,25305981,25669842,25966889,26356982,26492749,26904774,27176580,27352368,27477640,27978218,28517797,28585552,28826926,29078516,29104851,28925623,29187997,29191252,29078121,28720321,28498859,28156517,27776777,27631142,27381663,27223975,26975651,26589697,25975899,25759389,25542159,25419552,25079210,25012501,24615524,24100403,23699907,23624015,23438142,22947907,22913896,22538168,22151636,21821886,22305513,22267979,22318348,22389158,22479744,22342685,22196041,22576892,22662245,23452373,24262900,25236938,25506818,26236959,26659716,26860922,26886795,26983050,26942076,26775590,26803176,27046502,27103159,27048356,27112210,27013632,26904131,26759806,27046609,26903962,27087538,27075530,27230546,27035098,27064508,27228476,27219881,27283873,26583050,25692812,24606897,24226661,23694422,23466814,23426914,23533606,23500806,23339836,23368051,23678540,23720303,23900005,23913598,23975461,23928889,23956781,24233796,24250242,24290689,24182647,24155466,23813044,23875469,24082423,24196317,24381965,24365164,24318260,24096906,24026745,24239686,24405974,24474689,24446591,24368960,24170627,24073630,24188083,24148350,24380232,24335847,24278345,24115875,24028936,24257522,24371294,24546928,24764162,25051652,24993402,25100456,25291155,25452255,25487196,25437553,25476907,25368590,25365406,25685525,25722464,25812434,25829756,26168816,26023091,26130417,26542196,27021644,27267863,27351519,27388275,27329294,27542035,27997286,28255008,28517507,28772982,28862844,28566636,28526904,28907132,29076368,29201394,29342526,29435996,29368721,29411539,29839756,30110006,30550796,30679763,30785405,30446618,30607363,30846527,30893153,30762503,30756051,30678849,30430941,30401401,30418330,30386154,30496249,30404299,30204449,29834565,29703026,30035418,30060446,30194661,30216124,30268265,29985860,29970938,30314737,30500359,30542251,30441427,30553855,30490687,30580453,30932647,31216434,31349421,31407810,31468067,31407841,31539211,31867210,32132515,32311387,32717973,33080759,33149598,33471985,34200227,34597309,35100625,35482683,35872900,35891083,36179100,36794301,36873008,36843019,36839290,36834842,36502208,36329857,36507712,36514394,36533967,36613703,36610241,36303362,36194111,36406080,36513767,36633556,36639467,36093611,35475656,35197680,35270575,35058336,34838419,34437550,34040960,33393010,33078055,33063204,32852102,32810266,32790593,32693803,32323638,32247010,32515487,32522941,32404314,32138770,31853891,31477970,31358895,31492977,31546857,31553699,31375528,31352497,31094812,31045616,31253458,31084060,31089020,31020116,30942215,30662572,30607305,30925544,31105096,31173066,31237461,31212784,30999599,31037620,31348688,31406980,31446315,31366869,31278351,31084542,31077998,31248957,31222368,31138600,30935973,30710324,30409166,30391592,30585373,30611594,30928409,30945442,31037433,30977116,31151403,31619392,31787980,32250490,32791268,33437735,33623340,33974413,34607116,35045405,35656200,36213286,37126950,37777091,38275641,39105520,39970342,40820530,41503308,42372681,42979036,43446814,44133799,44955278,45783987,46201343,46745583,47145282,47418307,48091747,48637912,49311451,49406237,49374460,49447299,49512067,49939272,50339517,50799942,50865152,51170763,50785787,50707901,51101195,51306289,51502657,51703458,52062747,51775193,51716335,52087839,52966439,53512146,53504451,53267531,52511287,51862762,51844652,51552873,51131259,50681597,50350994,49577947,48697030,48799137,48690338,48289402,47801603,47542757,46811974,46442500,46567236,46460975,46201892,45716851,45103799,44118776,43703790,43726715,43558733,42696678,41860351,41446909,41126992,41174809,41666296,41988643,42118652,42319095,42376023,42066310,42186346,42708119,42839074,42853022,42900500,42847329,42427135,42347483,42717437,42770630,42813181,42783603,42821008,42625868,42629480,43024631,43204775,43283355,43373843,43560737,43287215,43357195,43840654,44077682,44121545,44232551,44508758,44297822,44577861,45509352,46072030,46599287,46998884,47344667,47273994,47566603,48201765,48599099,48853097,49084826,49353368,49171931,49275042,50009351,50425143,50689348,50902553,51074524,50758859,50863475,51295854,51532291,51766859,51940462,52040147,51557275,51574034,51969739,51899994,51930348,51974269,52111332,51552512,51442962,51713905,51669705,51452864,51261902,51134505,50704167,50642064,50934185,50857463,50802919,50748138,50736430,50284659,50180989,50692292,50957088,51485725,51798528,52112276,52031601,52267257,52787054,53100064,53343042,53414095,53528580,53267807,53686650,54626734,55187038,55773182,56301843,56685111,56626987,56938843,57815404,58572704,59216747,59774079,60397576,60478750,60905188,61955055,62611605,63126855,63342147,63604476,63254378,63351231,64085884,64555321,64766319,64975332,65178524,64773777,64755160,65329304,65500496,65652722,65746242,65837571,65499541,65549483,66048957,66289954,66346229,66265497,66248944,65507538,65285463,65793522,65692372,65438193,65572888,65518333,65190875,65031648,65540504,65563620,66003602,66563252,67019962,67414707,68010798,68995930,69578620,70253219,70102907,69724055,68926148,68626867,68997174,68999374,68850771,68596497,68496160,67640940,67330202,67704514,67688590,67774658,67712328,67285125,66397526,65728703,66151513,66097636,66007580,65546035,64821560,63507730,62208561,61994559,61511751,60919977,60334096,60345113,59949719,60010859,60733142,60957255,61095297,61138447,61187485,60604822,60606385,61659279,62096444,62389302,62785620,63179801,62972271,63050318,63836910,64043884,64208326,64361722,64299035,63832021,63900404,64856647,64852284,64828859,64913516,64817393,64349950,64392170,65111371,65331624,65442117,65653742,65640196,65150857,65193270,66003165,66136419,66221185,66189431,65798691,64987058,64737828,65359500,65434317,65525674,65259626,64820716,64225246,64175785,64798491,64778142,65011342,65182649,65110581,64556836,64437613,65117558,65321232,65507171,65655841,65515111,65006670,64994483,65789284,66024351,65968826,65744481,65415880,64709672,64438946,64835363,64671216,64518709,64345628,64150362,63646769,63407211,63347207,62817199,62223968,61511028,60931689,60118778,59760971,59753771,59329933,58923030,58648749,58264806,57476438,57277732,57916957,57818774,57628899,57293990,57156347,56618872,56659583,57167151,57362719,57569199,57605369,57519939,57204162,57194810,57951088,58624016,59192462,59481992,59974416,59836961,59879348,60543214,61531186,62062958,62323479,62197755,61644367,61576381,62236381,62108732,62202450,62073520,61989003,61357272,61277767,61851955,62157786,62086895,62039957,61953841,61396974,61384197,61941180,62081284,62249158,62419866,62681745,62098862,61955082,62789646,63103775,62913298,62881989,62884672,62434838,62417023,63167886,63454653,63609776,63559813,63582801,63105475,63189920,64013234,64225052,64488924,64730646,64724464,64158019,64252705,65047389,65511012,65642807,65728858,65600840,64909891,64809283,65547818,65640614,65609889,65630547,65562033,64958334,64813523,65484509,65709128,65728309,65639191,65186935,64472833,64379843,64845692,64818747,64846802,64683452,64485730,63867662,63802072,64421456,64395221,64333909,64336581,64015385,63301962,63229497,64053533,64144244,64175809,64134261,63950216,63258692,63043495,63574473,63764857,63728960,63573883,63588109,63399713,63420178,64098463,64326047,64291106,64105833,63840106,63196491,63026576,63772255,64062173,64427156,64460147,64426932,63875321,63817097,64621530,64800560,64936840,64966544,65005716,64465982,64517716,65048891,65367055,65547501,65654940,65793397,65311705,65298385,66314016,66670517,67029296,67266982,67571462,67199681,67325784,68407835,68835867,69062389,68943780,68888140,68321558,68404770,69021647,69089348,69013965,68952460,68846015,68260395,68276471,69031508,69522148,69888655,69792003,69677737,68970125,68893999,69416212,68959269,68800934,68814213,68670538,67811774,67728313,68426658,68356653,68231521,68021177,67801226,67270324,67295380,68146158,68678880,68991821,69114694,69150643,68637350,68590670,69416650,69610997,69835160,69845984,69922468,69384800,69419794,70383946,70961913,71733006,72102367,71947661,71390538,71431509,72418292,72796306,73068293,73202330,73206377,72757236,72640512,73358623,73370228,73345274,73282059,73174426,72396363,72178816,72968408,73151345,73264421,73311260,73203438,72393176,72239605,73124899,73212693,73178631,72961889,72847755,72153243,72043052,72587459,72529324,72591762,72671871,72655125,71910380,71722297,72557049,72703993,72984846,72996516,72807908,72160695,72104964,72990766,73160775,73284245,73383558,73320902,72557051,72529209,73448093,73593659,73822216,73833533,73836108,73082859,73066077,73952490,74490681,74783132,74878747,74848665,74153571,74325123,75258714,75646195,75931491,76039837,76306343,76310842,76820035,78300920,78939153,79320009,79523589,79609057,78914234,78923614,79991403,80336662,80503697,80582161,80587646,79951995,80155852,81671042,82136820,82367976,82641999,82541661,81833631,82007029,83050795,83480396,83647962,83813011,83721840,82801506,82139305,82735446,82977963,83228675,83312718,83247140,82451265,82360999,83444770,83836205,83990322,83823429,83392786,82843731,83034387,83935942,83868835,84158132,84526712,84544039,84091601,84079614,85202404,85581296,85913808,86056855,86104579,85420831,85540666,86954712,87431394,87584908,87488575,87563579,86857258,86949658,88271954,88715541,88901070,88908543,88863240,88371623,88159301,88092867,87427048,86969814,86239778,85523005,84419172,83966249,84029570,83569139,83230250,82917690,82701906,81679452,81598364,82628478,82637517,82585091,82336367,82237520,81283725,81146867,81721996,81657940,81590912,81651753,81867843,81504800,81607920,82883329,84284531,85434724,86083751,86655949,86341748,86584552,88066368,89579150,90302778,90947893,91216937,90588878,90578969,92171275,92542528,92784393,93221471,93240185,92415427,92394523,93543940,94324752,94616808,94736031,94675774,93791426,93799290,94779808,95121760,95288227,95575475,95768262,95187063,95280773,96706294,97206981,97599971,98028588,98488513,97968563,98134183,99848153,100247639,100787716,101475971,101660644,101096847,101285122,102919533,103080466,103586436,104259163,104691879,104035776,104227125,105768255,106838904,107297176,107632646,107689175,106842489,106951376,108439920,108916688,109169331,109208826,108945769,107564062,107423694,108621329,108977195,109267616,109474175,109063457,107842978,107787240,109160637,109333891,109913866,109984845,109903331,108905960,109097668,110706032,111161341,111320006,111716876,112251807,111394376,111493643,113186336,113752773,113968914,114296097,114495805,113852856,114017585,115708966,116516664,116541729,116704235,116758683,116003323,116162617,117830926,118444661,118789833,119168068,119247505,118201710,118141903,119608901,119911466,120226627,120220694,120014661,118440742,118507733,119934171,120142120,120271654,120518638,120441219,119289630,119291199,120306677,120495497,120573052,120909460,120706365,119514674,119443443,121043849,121478846,121593527,121813680,121789128,120583732,120379471,121858743,122181363,122427438,122428336,122355066,121191032,121100181,121834304,119005043,114771281,110216796,107479271,106094560,105831361,107242534,107877864,107909347,107683542,107427636,106198601,106033465,107661481,107847637,107566832,106918776,106114376,104586080,104378881,106234436,106532630,106623947,106505499,106335252,105272575,105335415,107033069,108186165,111781195,116386051,120860217,122172692,122294630,124712937,126165818,127406787,128444809,129295443,128386761,128410542,130491653,131154785,132113713,132993869,134296665,133805768,134138341,136381371,137313646,138272174,139460125,140386247,139363150,139372039,141523666,142165942,142293912,141936360,141966588,140676654,140675121,142422220,142324197,141557918,140889230,140068570,138157210,138013122,140003405,140496538,140529258,140211373],"yaxis":"y","type":"scattergl"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"timestamp"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"rolling_downloads"}},"legend":{"tracegroupgap":0}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('5a1d037a-83fa-48a3-bae3-28ad2ab02f65');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div id="d6ecba65" class="cell" data-execution_count="15">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb16-1">rolling_downloads_by_version(t, version_style<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"major"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="5358e6a9-d563-4413-892c-b3cc4965393b" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("5358e6a9-d563-4413-892c-b3cc4965393b")) {                    Plotly.newPlot(                        "5358e6a9-d563-4413-892c-b3cc4965393b",                        [{"hovertemplate":"version=17\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"17","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"17","showlegend":true,"x":["2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[426684,1535358,2825884,3998676,4790156,5595692,7040092,8812087,10524657,12185044,13760850,14692676,15543599,17009030,18551332,20155353,21699715,23311894,24237989,25086035,26541486,28216441,29879850,31518124,33023660,33944480,34821920,36350903,37769913,38798317,39036621,39142325,38800531,38826729,39365738,39411040,39087536,38865568,38556710,37862511,37805569,38372331,38394929,38322548,38160064],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=16\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"16","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"16","showlegend":true,"x":["2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[52796,633771,1592634,2576620,3623256,4691850,5689620,6302837,6936737,7989394,9114917,10106004,11214625,12266445,12921362,13604279,14656939,15758267,16785569,17849723,18785623,19401618,19942698,20970327,22063672,23229260,24304930,25325644,25948006,26510399,26963201,27142348,27296792,27373010,27326374,26925320,26907271,27146973,27203250,27269363,27432959,27389745,27019314,26980945,27422315,27627515,27685198,27800321,27831590,27539808,27542113,28095604,28242775,28360453,28444552,28525518,28232924,28281179,28674050,28039159,27033178,25949949,25473673,25184449,25263017,25924191,26434391,26724611,26892011,27059710,26860332,27022233,27774358,27980589,28079809,28079458,28063073,27781154,27937774,28771458,29155784,29524326,29837952,29968139,29729357,29902452,30679533,30852167,31026135,31220108,31444159,30964993,30381640,30025973,29096413,28027342,26941056,25861023,24687434,23964508,23424725,22373123,21363596,20340046,19454897,18475055,17809127,17301123,16143275,14963581,13720329,12461957,11234495,10453931,9837635,8674388,7765115,7453235,7389066,7255348,7225841,7335795,7282256,7238933,7205089,7147988,7020159,7008353,7124969,7105179,7076116,7034749],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=15\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"15","line":{"color":"#00cc96","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"15","showlegend":true,"x":["2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[205077,1003353,1931181,2769666,3574866,4401862,4964434,5534381,6484951,7489912,8459662,9477122,10364762,10971812,11523804,12452066,13411469,14345593,15288486,16145863,16729402,17278970,18219942,19269712,20245260,21222617,22116914,22716231,23296160,23937298,24140572,24236184,24436846,24562668,24310765,24279665,24699040,24761163,24841227,24877244,25021805,24819499,24808799,25277727,25404963,25524506,25735361,25896429,25642708,25627693,26083725,26110099,26186687,26361960,26357701,26063482,26055416,26532798,26863565,26948489,27019178,26992334,26722527,26789213,27339250,27612411,27761146,27818831,27774251,27276386,27228549,27604345,27757564,27909314,28016957,27921043,27471314,27525059,28039332,28183410,28327451,28363787,28311616,27996604,28048799,28598506,28778812,28846036,29071645,29303913,28952080,28447737,28154173,27432086,26518060,25691845,24857827,24049085,23523820,23201756,22557127,21662706,20773915,19878790,18964978,18442923,18076706,17318684,16478003,15639354,14743938,13780050,13255587,12892957,12051013,11101226,10150321,9097912,7906670,7379988,7476153,7418849,7356551,7300235,7257285,7090667,7069141,7168259,7143159,7113451,7118813,7067157,6928734,6924904,7091086,7127650,7123725,7152393,7148105,7014009,7011528,7156310,7164480,7166206,7190429,7178119,7059335,7063338,7180853,7023602,6761616,6476837,6302311,6166107,6164856,6321516,6398407,6418247,6428012,6428387,6306086,6294065,6463494,6476699,6456719,6391213,6302123,6188698,6209770,6401393,6429632,6455559,6462191,6454953,6328425,6341753,6499432,6568075,6778749,7044736,7312116,7347211,7337573,7546295,7716497,7838436,7990206,8087762,7984065,8004561,8241178,8315289,8450120,8564485,8732858,8671251,8686587,8893976,8986859,9114949,9195937,9252372,9145327,9169562,9375682,9405407,9394352,9363937,9354949,9241920,9235993,9367018,9321178,9173090,9057092,8883253,8662842,8639251,8773548,8713803,8634760,8482391],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=14\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"14","line":{"color":"#ab63fa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"14","showlegend":true,"x":["2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[248622,883915,1424116,1770435,2139879,2771275,3464480,4135015,4904558,5589246,6041999,6406156,7069841,7818550,8601332,9439974,10176324,10659954,11076081,11861199,12713023,13521925,14188166,14809292,15253227,15687771,16481705,17347626,18354801,18985406,19170488,19113345,19201609,19690420,20062859,20317990,20546238,20600420,20402872,20456872,21111024,21452838,21679305,21824076,21863150,21675999,21740049,22326510,22621913,22780074,22946142,23078653,23014464,23093284,23260437,23126952,22979733,22715593,22586907,22287001,22301819,22431585,22382570,22303834,22312403,22328504,22086062,22176352,22684935,22712115,22843081,22869933,22965620,22704870,22735992,23076598,23114365,23118445,23211135,23299281,23192501,23092448,22910693,22691411,22390691,22008700,21507887,20859378,20452156,20219429,19928881,19389867,18739401,18029405,17212592,16736394,16397749,15650524,14891640,14009727,13249741,12331525,11824236,11469462,10839528,10038548,9195004,8314931,7387862,6801812,6553603,6498212,6393757,6297447,6220436,6081591,6068403,6211965,6219881,6234906,6243548,6236552,6095033,6106481,6249356,6297147,6298282,6284400,6261567,6134211,6138290,6293108,6307608,6331825,6368147,6407098,6304094,6285124,6457179,6562196,6567048,6566386,6555209,6415727,6432930,6642911,6701916,6790921,6803875,6784434,6640381,6659294,6823929,6890041,7010142,7059677,7056247,6982814,7037037,7240743,7307866,7392099,7425412,7457406,7352473,7403968,7597601,7653760,7694260,7762600,7812192,7737799,7793060,8001063,8038699,8079966,8059206,8077978,7995888,8045142,8255211,8316083,8360919,8315669,8318100,8244154,8277245,8445515,8510022,8574392,8593814,8619420,8516816,8537466,8718527,8789686,8850677,8872000,8876112,8764454,8799741,8967374,9037489,9070147,9094490,9105084,9002097,9040216,9173263,9232769,9306204,9348694,9371189,9332259,9368414,9567150,9647170,9675908,9686531,9731195,9620947,9611230,9758068,9780583,9789044,9784579,9752345,9570940,9529103,9593942,9368940,9008406,8653129,8399552,8249716,8212205,8331823,8386777,8359117,8293902,8213501,8031595,7951450,8059007,8039717,7957825,7826805,7693743,7485663,7428754,7578030,7603743,7600506,7578780,7567147,7458010,7506040,7715380,7857415,8191746,8642543,9011355,9138308,9181784,9457381,9663809,9846188,10040376,10217647,10227493,10311325,10584843,10736736,11027744,11221378,11477686,11527911,11654414,11972232,12213413,12419998,12575765,12803622,12745947,12803322,13350267,13641406,13716651,13686215,13626070,13537546,13574863,13774622,13779123,13704411,13632989,13521054,13320434,13298804,13477615,13489921,13459585,13241548],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=13\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"13","line":{"color":"#FFA15A","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"13","showlegend":true,"x":["2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[264524,874571,1418273,1703166,1984091,2579644,3123738,3732370,4262776,4853654,5167781,5442180,5845108,6331834,6908042,7463125,8013434,8303095,8587554,9075405,9615388,10269654,10867016,11405940,11752820,12102068,12684508,13319164,14041565,14490558,14528998,14365020,14441887,14762359,14839124,14995643,15037195,15110116,14897342,14945948,15298711,15572877,15781293,15900945,15977812,15885260,15975510,16288732,16540758,16704422,16767915,16811022,16643724,16650703,16969768,17240952,17327645,17320074,17314733,17035617,17022244,17312072,17455871,17499673,17549877,17570318,17369135,17370431,17770890,17901367,17759230,17231357,16679229,16129925,15749564,15532223,15108953,14539086,14014467,13455248,12890438,12583425,12370019,11856707,11151730,10532410,9916247,9243011,8902026,8617748,8067936,7407486,6764457,6079969,5438771,5067442,4778688,4123441,3461028,3018957,2931427,2817000,2760369,2753539,2675138,2587086,2497593,2377194,2250153,2199536,2203060,2138929,2049648,1963852,1945793,1888348,1882185,1909622,1890596,1857908,1828964,1801756,1760964,1757462,1753842,1697868,1630903,1575079,1519284,1462272,1457972,1460694,1441072,1412287,1381342,1353889,1321650,1316958,1355166,1349806,1342139,1347112,1338182,1281868,1267302,1284125,1292650,1298713,1290149,1290891,1273577,1275602,1303404,1335735,1359839,1377436,1386823,1375056,1377412,1406944,1438118,1443395,1441791,1432346,1405025,1407477,1434729,1427538,1422348,1409847,1392244,1365263,1364582,1391262,1400507,1388008,1371859,1363465,1339306,1342457,1365144,1364367,1354054,1340992,1325354,1299199,1296988,1317526,1312339,1300650,1298111,1298233,1280475,1290466,1317908,1326598,1336762,1343035,1346930,1336502,1348832,1365087,1353772,1345004,1341536,1334309,1305246,1295050,1306841,1301445,1293912,1292163,1291656,1273965,1288260,1327158,1334337,1338387,1334898,1319186,1295545,1291867,1296761,1291314,1285405,1268376,1249999,1215148,1199117,1206141,1210667,1212980,1211899,1212073,1197281,1203647,1226934,1232206,1238195,1247740,1256454,1241364,1243799,1261327,1251775,1253130,1253997,1259671,1249719,1249828,1274531,1290687,1291016,1283186,1277653,1258363,1257681,1277372,1285644,1292793,1298389,1309928,1292739,1292767,1311216,1318116,1316303,1314778,1309535,1283190,1282416,1299986,1297168,1303301,1300913,1294822,1275501,1278054,1290158,1291912,1286432,1287954,1286215,1268614,1266425,1287878,1296452,1296636,1298903,1298564,1270928,1268335,1286184,1300315,1300241,1303753,1312781,1294549,1294727,1307871,1278630,1232365,1175458,1145774,1131225,1131718,1149951,1163694,1166065,1166959,1165274,1154019,1160198,1189487,1206547,1229729,1223026,1212178,1197291,1198596,1224444,1227916,1217282,1215092,1210578,1184246,1182854,1211100,1225933,1260740,1309982,1369941,1379335,1375094,1530044,1720831,1870962,1882192,1881309,1860756,1852172,1884222,1884651,1874677,1842035,1849430,1829257,1824608,1936270,2020120,2049007,2118397,2143618,2131793,2131672,2152616,2190863,2259192,2262215,2261649,2234481,2236017,2261111,2130624,1944579,1793191,1779068,1764683,1769735,1792333,1783067,1784720,1785071],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=12\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"12","line":{"color":"#19d3f3","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"12","showlegend":true,"x":["2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[402208,1059794,1697656,2305585,2819893,3252807,3866362,4487297,5099425,5685082,6168911,6550920,6873965,7438518,8196362,9021928,9714890,10292040,10669174,11024006,11648244,12320556,13036978,13734108,14369025,14771158,15265047,15836933,16480731,16834412,16856421,16823216,16594686,16410669,16570363,16536086,16611911,16579272,16623057,16504108,16494031,16787132,16917111,16927249,16775870,16676049,16530811,16630593,16803313,16810746,16769974,16700611,16667315,16529442,16590670,16758293,16869297,17110213,17082172,17107340,16956297,17028515,17348440,17299081,17342439,17269677,17316971,17081743,17144902,17432186,17480296,17475028,17435444,17372193,17285742,17401823,17742653,18099184,18401664,18555421,18718866,18521973,18540881,18854007,19005559,19249593,19252697,19361231,19190357,19257831,19728593,20062492,20507734,20839481,21010870,20925823,21007765,21503713,21814671,22091720,22270593,22396736,22325617,22325415,22665318,22774290,22818728,22845287,22897880,22542467,22528264,22828125,22998244,22878211,22372021,21872238,21251913,20949015,20837099,20362414,19795274,19183435,18604669,18055753,17728422,17553457,17013479,16474426,15946833,15457080,14824345,14493424,14367945,13892125,13365279,12774836,12127310,11511165,11214912,11071854,10550045,9922727,9550663,9438818,9232144,9185491,9266451,9193374,9191590,9114080,9057883,8869835,8800676,8872945,8921164,8892978,8861077,8794817,8613657,8593997,8679006,8617131,8527894,8449262,8497750,8551682,8603683,8804340,8864574,8977288,9023995,9021072,8936191,8953841,9080811,9102347,9127384,9032239,9001513,8873785,8872069,9215366,9284197,9287581,9293297,9175513,9012180,8982302,9074120,9103317,9108782,9125436,9082219,8869097,8680576,8696063,8655394,8618648,8527346,8458516,8333452,8284347,8371975,8380287,8364197,8275907,8157145,8016254,8003252,8107984,7900428,7861493,7821219,7738301,7663804,7664863,7780369,7802094,7797204,7789767,7739167,7641040,7646128,7738897,7760600,7767588,7750415,7717712,7595479,7574860,7682014,7692601,7707101,7672971,7621719,7548155,7542756,7532117,7450086,7352569,7262611,7161358,7043991,6987347,6968805,6953385,6916470,6875563,6817652,6696967,6679404,6775890,6802448,6778050,6734224,6682395,6581404,6579256,6636428,6628642,6630085,6610162,6592773,6553521,6565636,6680746,6815080,6889204,6960317,6967854,6929328,6933258,7034731,7152028,7160301,7182973,7178805,7100201,7100897,7197942,7221142,7208012,7196275,7173153,7070435,7047794,7117560,7159524,7153613,7140822,7101020,7006494,6995669,7078012,7089237,7077583,7080388,7068677,7019128,7032572,7150135,7201070,7226014,7257824,7270395,7209028,7213476,7336978,7389764,7380931,7401395,7411854,7355034,7384707,7519798,7546033,7598746,7656644,7682592,7620525,7657604,7790698,7834003,7862000,7874665,7873059,7805129,7823141,7918339,7931703,7931696,7919489,7883909,7757400,7728970,7816669,7846959,7843804,7870969,7851486,7750274,7721967,7803985,7797129,7831278,7844583,7790557,7678019,7695474,7784536,7794001,7861921,7868492,7866854,7783742,7772631,7865025,7881270,7903290,7923313,7910916,7844195,7849096,7959089,8002879,7970844,7976264,7961079,7893507,7926544,8053191,8100670,8140258,8138877,8088758,8027567,8016897,8091775,8113824,8125197,8067912,8032321,7931038,7940451,8033905,8077759,8107898,8104980,8088529,8020107,8044948,8156421,8199401,8191634,8198129,8238797,8183191,8188106,8287340,8325146,8383730,8397056,8416574,8388917,8411160,8536739,8574197,8606842,8588581,8589327,8512388,8514685,8564879,8389241,8087673,7772071,7587422,7497369,7483023,7581873,7588815,7597665,7611150,7643723,7550833,7556505,7688094,7765705,7752224,7668498,7599446,7485906,7443719,7532879,7543717,7587097,7542474,7552914,7492176,7524041,7653295,7736556,7951622,8261680,8569231,8663131,8655990,8798177,8872037,8965622,9011987,9027640,8934927,8905349,9010406,9024400,9024199,9097600,9207547,9174480,9198901,9322452,9383387,9421827,9950318,10325769,10249678,10249452,10380645,10409018,10407877,10423021,10394411,10304566,10329148,10450257,10436577,10406536,10367639,10311407,10216300,10212437,10317938,10324070,10314424,10259402],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=11\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"11","line":{"color":"#FF6692","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"11","showlegend":true,"x":["2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[219944,567963,847508,1216044,1912696,2518106,2999771,3381724,3655416,3928227,4348974,4743229,5325914,5738535,6142842,6402036,6662310,7102828,7573222,8042533,8539264,9009689,9306577,9681778,10129667,10669340,11225820,11852578,12472397,12591968,12536978,12867596,13042325,12899066,12863153,12944415,12922853,12961818,13169953,13329818,13526469,13528049,13679489,13629723,13746967,14092992,14270657,14507515,14734798,14840577,14708294,14861895,15170762,15426427,15543642,15665915,15645104,15372277,15351468,15635772,15627474,15704305,15800108,15894393,15766210,15740917,15961441,16130816,16248138,16235318,16088426,15839557,15788139,15971505,16024630,16144771,16170802,16128354,15985827,16052058,16305071,16311901,16413391,16468633,16469805,16302680,16401356,16774372,17007578,17254937,17394599,17476009,17333108,17348416,17663183,17531596,17008427,16428181,15968235,15589899,15338817,15151294,14716975,14188453,13580383,12985673,12462858,12132419,11910753,11447644,10980888,10405316,9913062,9387468,9107086,8911848,8465863,7901747,7280931,6746853,6195674,5851087,5605874,5209067,5075706,5224276,5356782,5411801,5541602,5739333,5871008,5989152,6100463,6192525,6205616,6241183,6368031,6431001,6417514,6415422,6391275,6325741,6350369,6391771,6350308,6349319,6303088,6260773,6161907,6129036,6179425,6242684,6247518,6182125,6100453,5986175,5959933,5972630,5892199,5864961,5840765,5801045,5708042,5704973,5765804,5761916,5745306,5728491,5698024,5643566,5644437,5694204,5716804,5745037,5745728,5767769,5876770,5932515,6060297,6135050,6112680,6127631,6146705,6119779,6146985,6229416,6268036,6335286,6338658,6324481,6267155,6291711,6374000,6376668,6355212,6354710,6378324,6363833,6368157,6440130,6414288,6422557,6412740,6366525,6289960,6156783,6221821,6217963,6202413,6219455,6183736,6108555,6101260,6166699,6166222,6151051,6141022,6133777,6064998,6067348,6120034,6116792,6118928,6140355,6163745,6085511,6075548,6163659,6179913,6202428,6198352,6184630,6139427,6146545,6231209,6222020,6206044,6151494,6110702,6037741,6049308,6129558,6143059,6152166,6152606,6141140,6076483,6116546,6189392,6219998,6232796,6236757,6220424,6128841,6153016,6237807,6279426,6323251,6357275,6382461,6338798,6376602,6501232,6531504,6547445,6553246,6568414,6517213,6537500,6632495,6641683,6657254,6685674,6698032,6647836,6685259,6795604,6862330,6931820,6979736,7108035,7102036,7122508,7203762,7214866,7175405,7147833,7127530,7045596,7062430,7121227,7088926,7072881,7068909,7058037,6985883,7003704,7089537,7144125,7234077,7316088,7269006,7226414,7280741,7356859,7334233,7320947,7314382,7280749,7102185,7076275,7179085,7186358,7211927,7239764,7247430,7193607,7224172,7311897,7329131,7336077,7325968,7371783,7284193,7300091,7358578,7326968,7252720,7144825,7002795,6940603,6918352,6858092,6755951,6677009,6585410,6456843,6357739,6337117,6306099,6227324,6176159,6121926,6087794,6000796,6005400,6060202,6015022,5976321,5970531,5966938,5822115,5840010,5869151,5859659,5855272,5862096,5891917,5876332,5910719,5994753,6095240,6180058,6230341,6275754,6280842,6325714,6425146,6500511,6534955,6584521,6612569,6553871,6556206,6611703,6605675,6610147,6620326,6570473,6475240,6486694,6536797,6583401,6574421,6556081,6529392,6432540,6462521,6529668,6564344,6572561,6658221,6748275,6765473,6820785,6931150,6983985,7071723,7153779,7241814,7248603,7319128,7500007,7617592,7735338,7909715,8047803,8062745,8131980,8290094,8347648,8400602,8505302,8591179,8590220,8643734,8734369,8863994,8883460,8917963,8859687,8744428,8718825,8808960,8777576,8761781,8737420,8760792,8640327,8649933,8711975,8727739,8738855,8715777,8613504,8510417,8600926,8741878,8763010,8830082,8854774,8907698,8885309,8993067,9150146,9256158,9275328,9412859,9650062,9673373,9789959,10016976,10174016,10240653,10287312,10359067,10409280,10533351,10628951,10748984,10755230,10821580,10972147,10929902,10920428,11024841,11099893,11157858,11258816,11370054,11320314,11338391,11400764,11395443,11472747,11459165,11411161,11167136,11237906,11391040,11395547,11380082,11585250,11779713,11833365,11880204,11994290,12103708,12145406,12284437,12237369,12005632,12028101,12198544,12176813,12110914,12099638,11979459,11765539,11687269,11776135,11779342,11837142,11834365,11821911,11785415,11816930,11785774,11429599,11013926,10570518,10171305,9905783,9778100,9801968,9761095,9661432,9571843,9449136,9400715,9451875,9540065,9531612,9566993,9535623,9462502,9373572,9406031,9526163,9519211,9526214,9482160,9395994,9372168,9365200,9426439,9490177,9861575,10253894,10620029,10767927,10811661,10936046,10929499,10982886,11044617,11127651,11033082,10954557,11016187,11088198,11160047,11124082,11225579,11172749,11220861,11320255,11333313,11342531,11336432,11434684,11451591,11430585,11420857,11414131,11362932,11230210,11336466,11264030,11305287,11442446,11486217,11475148,11397336,11329561,11158369,11171328,11459470,11802190,11825878,11905255],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=10\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"10","line":{"color":"#B6E880","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"10","showlegend":true,"x":["2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[79716,330854,475127,634372,902759,1162355,1455163,1810777,2169611,2383897,2606502,2971474,3315663,3657453,4029232,4312662,4534260,4747669,5079188,5479663,5876124,6274375,6587872,6804540,7003870,7324636,7629633,7919845,8200201,8443811,8464691,8629028,8838487,9077771,9317356,9505104,9641449,9696470,9885482,10243682,10548342,10834750,11204617,11469440,11580942,11795475,12293547,12764519,13068184,13333909,13523809,13604695,13739356,14076432,14275155,14568193,14817829,14956895,14949709,14990573,15022377,15020011,14892675,14749199,14653739,14459223,14356042,14316565,14160486,13987515,13912040,13721982,13416513,13365854,13563472,13479678,13286447,13130489,13043427,12857012,12858241,12996949,13029075,13100559,13019052,12995314,12964371,13001885,13225083,13432219,13605907,13732148,13801971,13514157,13301454,13146064,12961661,12698979,12366643,11960160,11531190,11290790,11106350,10639353,10194521,9755209,9368203,8905450,8612139,8390375,8091962,7712691,7320776,7000822,6616747,6352391,6179530,5852024,5531449,5212183,4932426,4641392,4667260,4773697,4820450,4847299,4877158,4871161,4815416,4804491,4880101,4899205,4907411,4902557,4879672,4814247,4805504,4870099,4865734,4863042,4845550,4802711,4700476,4663922,4707752,4690853,4649422,4594384,4535447,4408225,4367811,4401040,4391179,4353722,4308661,4268233,4199818,4200713,4279539,4323087,4331711,4319445,4272155,4224106,4219454,4258975,4262219,4273750,4240275,4178177,4082314,4051594,4075457,4029132,3987264,3945334,3889546,3794919,3762662,3787462,3751800,3687864,3641329,3592300,3501443,3470688,3468848,3425892,3335957,3265244,3218648,3146872,3106919,3137415,3126140,3076992,3032443,3012483,2978437,2990962,3061909,3089573,3112223,3126029,3130720,3091299,3101816,3167531,3195272,3216161,3236298,3248339,3215771,3235180,3285599,3326675,3349545,3374794,3388882,3353888,3371370,3450298,3467375,3478922,3489847,3482905,3423878,3423693,3486936,3495474,3492190,3497355,3497356,3441598,3438794,3485428,3490334,3492227,3495758,3494494,3441790,3440867,3499222,3533751,3552785,3561583,3552474,3503825,3504662,3560271,3549226,3553026,3560518,3558847,3511237,3514095,3583098,3597467,3609691,3621234,3613377,3569565,3589614,3665024,3701490,3721666,3732320,3730460,3686694,3702791,3778686,3798821,3811936,3814439,3809927,3767498,3775866,3858730,3891244,3930716,3958949,3966121,3930162,3949610,4045942,4067492,4094013,4110840,4115594,4097690,4132020,4214453,4211013,4208462,4221769,4226044,4193771,4202230,4271942,4286693,4299027,4327182,4334705,4286135,4293192,4374906,4392583,4403330,4416715,4412276,4360261,4364540,4423326,4440122,4504846,4581590,4631340,4603405,4610218,4687560,4711648,4776356,4827178,4846123,4788269,4770539,4858467,4905851,4954606,5015227,5036516,4999456,5022009,5139540,5192181,5235987,5278045,5320090,5283863,5304046,5409547,5477188,5516498,5521876,5494537,5400459,5407144,5493562,5520306,5556670,5581367,5589351,5533278,5561003,5693745,5730706,5763217,5823695,5842569,5775885,5782306,5901682,5940471,5969774,6021942,6053534,5990653,6012932,6148191,6209454,6233695,6252597,6253309,6180666,6207506,6323155,6381642,6418501,6440905,6435115,6378706,6393215,6511741,6529253,6543966,6540460,6494865,6384766,6381835,6463068,6461827,6422437,6356335,6255986,6136136,6107778,6171607,6146029,6123110,6115568,6096246,6088261,6083129,6164186,6166199,6113351,6078750,6038357,5946704,5919364,5992277,5986061,5989769,6000138,5983754,5892840,5892100,5975896,6002929,6006453,6034813,6079014,6061027,6072324,6080425,6016535,5966235,5895640,5852665,5747520,5648182,5637915,5595709,5582007,5585816,5617847,5538665,5555706,5666486,5710585,5736389,5759505,5788955,5742801,5773678,5860359,5916488,5976860,6036707,6126111,6096768,6097825,6230942,6423751,6572290,6676077,6797091,6796885,6847523,7007646,7215474,7335186,7414918,7490090,7433571,7495656,7633857,7699330,7755395,7787534,7816129,7743612,7746720,7870056,7954822,7982657,7994710,8024879,7897318,7885271,7996311,8086534,8130123,8193677,8258725,8238355,8311181,8498884,8605434,8640378,8767097,8879125,8851471,8874916,9014969,9156966,9291290,9394012,9493316,9471066,9520975,9751284,9819936,9913288,10038729,10168525,10113663,10183975,10409041,10585022,10709538,10795704,10873881,10841676,10873823,11030016,11127722,11209696,11324748,11319273,11218540,11253620,11468751,11608241,11663152,11736189,11706804,11602318,11602760,11728840,11719248,11716200,11761796,11843255,11760743,11846004,12071697,12139121,12132722,12090415,12097172,11976314,11922333,11998955,11962251,11885889,11835386,11751205,11614086,11559935,11649523,11635678,11546144,11459014,11341334,11261968,11253662,11395263,11441748,11428981,11502202,11476587,11294625,11250846,11336408,11269827,11224400,11215566,11203055,11058948,11055631,11205521,11260706,11336600,11390240,11377893,11297641,11328097,11414769,11451603,11488190,11544786,11603313,11544597,11582052,11727108,11763882,11814949,11863406,11881229,11813905,11802982,11904423,11937971,12056052,12111809,12118793,12017059,12003694,12069073,11815162,11416850,10962974,10694454,10557154,10494160,10517249,10507456,10410160,10283084,10173774,9977018,9880591,9863298,9778784,9660337,9492580,9369303,9181669,9086640,9123217,9049834,8915101,8714347,8560070,8382840,8308088,8325979,8265130,8411682,8687277,8989071,9058687,9015187,9077727,9055910,9030760,9006169,8944772,8840900,8796504,8843317,8802509,8746073,8711632,8678091,8592723,8549685,8580351,8526264,8509642,8478505,8414989,8306238,8277931,8315900,8312622,8304052,8293544,8299341,8219417,8226348,8319257,8355148,8359662,8328678,8286650,8227817,8218345,8284202,8306667,8342451,8436590],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=9\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"9","line":{"color":"#FF97FF","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"9","showlegend":true,"x":["2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[150702,456317,756991,927877,1089027,1365117,1656673,1950196,2200837,2459602,2637687,2805969,3070629,3428889,3793684,4150338,4509411,4757072,4986934,5324928,5674466,6015263,6403261,6729716,6926003,7133008,7450753,7816894,8196987,8404378,8426023,8344817,8394483,8519895,8590491,8701687,8758350,8849193,8813368,8865328,9081263,9177421,9201697,9217881,9245550,9107270,9079492,9183187,9225047,9251674,9285176,9264920,9186402,9233124,9406115,9466487,9477683,9486060,9492661,9425947,9453736,9639510,9775510,9848861,9911417,9964601,9898368,9969455,10153359,10242129,10349123,10466668,10587018,10515332,10626225,10946017,11108183,11222803,11327703,11392990,11324155,11339892,11491500,11583230,11686687,11776177,11599376,11379457,11259437,11235363,11048479,10842072,10638169,10373339,10078447,9909547,9786969,9564454,9303651,9052955,8741697,8386051,8213690,8079900,7760032,7490457,7225341,6974839,6705784,6574804,6543036,6385067,6146417,5863503,5580911,5514344,5520626,5604458,5530072,5463398,5401493,5328863,5224238,5199245,5235095,5205439,5147044,5063506,4968336,4867495,4806636,4802201,4733991,4646211,4542478,4428840,4279946,4185714,4132823,4026325,3928335,3831573,3747765,3648250,3580411,3523228,3401148,3350168,3287376,3220858,3150836,3127774,3130286,3101054,3077295,3070267,3072878,3030576,3020868,3056036,3040065,3034149,3015387,3002154,2957779,2958084,2985730,2993319,2997829,2982806,2960414,2916660,2894727,2955618,3019655,3073551,3126581,3188746,3215567,3242952,3332101,3419881,3480178,3523610,3549939,3525949,3549073,3634137,3675498,3719948,3759715,3800933,3793309,3823239,3903396,3962781,4004217,4034450,4055379,4038422,4068626,4157373,4174718,4181510,4180810,4178083,4127200,4111902,4165558,4162858,4145650,4134497,4124938,4076868,4071196,4133873,4141475,4151958,4162060,4154686,4106962,4111214,4183107,4200227,4203962,4204422,4199193,4163756,4175374,4246209,4276015,4296203,4310141,4319464,4281165,4281885,4350162,4378227,4385787,4390990,4370316,4331825,4340799,4423536,4449228,4468062,4481074,4466663,4427625,4442174,4497544,4493270,4485006,4482873,4463706,4423895,4432720,4507569,4522316,4514626,4518762,4498867,4451128,4464584,4537382,4548050,4548455,4556690,4553686,4525933,4532258,4590139,4581979,4562820,4540748,4508030,4465222,4460625,4516243,4527489,4526653,4515608,4500233,4456337,4444378,4489497,4475374,4455279,4441561,4515540,4466252,4454932,4514475,4537944,4521629,4491948,4454957,4396538,4384914,4398064,4393978,4377447,4365729,4344487,4297898,4285701,4347232,4341384,4333239,4329063,4314542,4264607,4266766,4329735,4339817,4346705,4330739,4294238,4128830,4094840,4094965,4030650,3950965,3902347,3852832,3793018,3770774,3788674,3774042,3719711,3678716,3633046,3563030,3526776,3521886,3446504,3381957,3329310,3275248,3208334,3181727,3189002,3139956,3083955,3030379,2993141,2960625,2961670,3011582,3036289,3045533,3045681,3046771,3025473,3022849,3066183,3070625,3077720,3097448,3109195,3084121,3098096,3163184,3208895,3252098,3289483,3306829,3284733,3284349,3331363,3364434,3375698,3382047,3369571,3334660,3319121,3338672,3330360,3320952,3323815,3326423,3299693,3297716,3341711,3345819,3343737,3342300,3329531,3281021,3267193,3298623,3293562,3278919,3262649,3232752,3188035,3183623,3206088,3206672,3196811,3201416,3207049,3181694,3176235,3215332,3223199,3246202,3252585,3238175,3194586,3180081,3221178,3227924,3231001,3244352,3284338,3252874,3247938,3297705,3306839,3314994,3309328,3305751,3282168,3270011,3292071,3314274,3327772,3331657,3331209,3294064,3292731,3333990,3338352,3345790,3326272,3325909,3288278,3288330,3339777,3352523,3379051,3389801,3379372,3310249,3311142,3355308,3363899,3371256,3379570,3383430,3345012,3330205,3374553,3394480,3389135,3392175,3368388,3319398,3311143,3363092,3403225,3426950,3467980,3475473,3438115,3445129,3489795,3497269,3496972,3475858,3452926,3414030,3401667,3437831,3441047,3421560,3398361,3365126,3318943,3314840,3350601,3372104,3361695,3376934,3359020,3322083,3313723,3355787,3361836,3355553,3347562,3296808,3239492,3222154,3253519,3241323,3213041,3177238,3150074,3093112,3061952,3073870,3050207,3027798,3012428,2974245,2919653,2900596,2880684,2842671,2778417,2739165,2673460,2611501,2585872,2567929,2516120,2453085,2387256,2325613,2267028,2249642,2258314,2240832,2216201,2205623,2187660,2141983,2142415,2160077,2158233,2159266,2140730,2130632,2112559,2106892,2120696,2148891,2164477,2169278,2170270,2162089,2168793,2202578,2248696,2268651,2290218,2293108,2287808,2296988,2332381,2341504,2334822,2342611,2333381,2322505,2339994,2370756,2390629,2392860,2383322,2388945,2367743,2376195,2408615,2421115,2436489,2461155,2490338,2500889,2526033,2584200,2626354,2646824,2683125,2690467,2690205,2708749,2758409,2799324,2836391,2879363,2906374,2922920,2951389,3002085,3021984,3067510,3111214,3148935,3159446,3192509,3257139,3297721,3335766,3356159,3363316,3348194,3358437,3396972,3399355,3390894,3385426,3368943,3348706,3355658,3390557,3399234,3393094,3399635,3384305,3360734,3354509,3381660,3382696,3396780,3388907,3373957,3337502,3335786,3369475,3363037,3372141,3375072,3379400,3358598,3363881,3397925,3403553,3404657,3419565,3427977,3413076,3422024,3453845,3461794,3455829,3452279,3436712,3414865,3416699,3451068,3455611,3456927,3462452,3472115,3448280,3451586,3488503,3483701,3481135,3468276,3457359,3425953,3421918,3452142,3452067,3453002,3455591,3439185,3407957,3407999,3426334,3425350,3427236,3435300,3432829,3408200,3402561,3430983,3428604,3419385,3419704,3408307,3356131,3332696,3337899,3310595,3285790,3269290,3261977,3232633,3228567,3235273,3143929,3024503,2899308,2823303,2803163,2805995,2827988,2838368,2841271,2830222,2817977,2787121,2778863,2802996,2799109,2792303,2784198,2764517,2730048,2726859,2768814,2786502,2807615,2831928,2860027,2847273,2855018,2891392,2920498,3018367,3139237,3257574,3304818,3306384,3339263,3358538,3371145,3384866,3394369,3385465,3400547,3451400,3474594,3487683,3502679,3524058,3517158,3532865,3583512,3601644,3611559,3609650,3603918,3572482,3570528,3607932,3612349,3611184,3600252,3589264,3563121,3557773,3583067,3578582,3561102,3547648,3534668,3506894,3507154,3535139,3534198,3526422,3530595],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=8\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"8","line":{"color":"#FECB52","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"8","showlegend":true,"x":["2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[17755,190686,393832,752848,1094267,1452577,1833044,2141833,2362341,2598089,2847293,3079379,3309742,3555922,3777993,3930836,4097848,4360410,4625623,4905916,5145224,5376756,5523122,5668309,5886458,6147958,6428220,6673482,6915492,7056713,7037941,7079309,7015694,6963014,6886770,6787243,6647064,6612364,6661318,6721628,6773360,6815366,6854409,6820915,6856858,6940296,6957282,7007724,7034803,7069244,7030740,7062629,7199050,7269932,7336793,7376534,7432307,7405933,7432271,7509064,7550195,7597796,7663950,7732587,7667276,7672609,7787590,7873221,7913674,7967088,8014753,7926344,7922820,8039922,8153827,8254511,8310166,8355882,8297252,8314966,8498857,8661533,8747587,8802410,8854153,8769129,8753440,8947546,9073738,9002979,8774596,8534504,8248873,8098544,8038700,7829274,7539211,7264652,6994624,6715939,6558081,6437389,6211270,5924234,5616101,5310808,4996273,4826541,4698218,4407428,4033692,3740121,3429869,3096241,2926977,2801119,2504028,2228869,2098108,2057670,1988584,1966507,1961704,1919529,1906323,1898542,1888732,1855203,1848485,1874215,1881135,1874507,1868899,1859045,1828381,1825347,1842080,1831440,1904118,2011985,2134536,2219808,2334440,2413831,2457558,2527634,2584337,2623685,2626202,2646180,2741189,2861721,2995962,3180635,3294603,3314813,3350279,3455236,3620752,3774062,3920852,4024851,4076088,4171169,4410909,4567365,4782987,5120751,5373614,5459484,5578375,5750547,5933978,6103706,6216168,6289984,6349684,6466313,6692147,6809388,6879322,6994555,7090556,7136963,7310082,7550590,7727695,7891391,8078128,8179430,8250229,8382573,8607845,8710307,8825712,8850751,8667248,8497758,8506233,8578103,8608356,8576935,8542255,8499134,8472099,8498669,8587577,8568916,8602220,8655832,8563219,8339720,8235697,8161148,8046491,7953888,7783982,7601999,7459566,7391238,7390238,7263405,7105514,6904488,6706840,6498132,6330816,6193221,6002853,5814127,5701963,5590007,5481582,5413725,5347169,5210308,5087118,4962206,4813782,4710676,4709229,4745239,4752623,4757184,4761731,4746206,4677931,4662602,4714976,4715647,4725979,4739659,4811841,4847802,4920951,5035272,5114139,5190246,5248958,5290219,5299947,5323920,5387088,5401744,5427392,5441297,5440814,5424577,5431865,5442113,5439052,5419311,5399864,5332710,5245026,5203215,5201339,5147895,5085264,5023116,4960153,4889442,4870025,4885289,4860633,4802429,4755991,4729973,4665192,4652109,4693305,4695685,4734838,4759859,4785465,4771870,4784186,4841224,4900554,4950733,4998888,5041816,5058808,5120144,5219621,5278086,5303969,5341069,5378981,5393176,5450266,5539886,5560174,5583226,5617928,5649539,5643788,5675835,5758040,5808814,5861380,5924131,5960841,5969872,6004293,6081559,6136599,6177369,6208508,6220640,6205852,6224457,6278540,6295489,6312399,6340288,6322678,6303082,6324162,6362853,6392052,6428796,6446855,6462957,6438394,6434016,6480033,6499628,6499517,6506076,6471960,6438455,6433303,6468363,6458372,6450958,6434349,6419862,6383788,6352360,6358713,6329413,6309611,6296242,6293162,6289745,6275182,6271913,6254987,6189042,6148164,6106504,6023482,5973950,5966817,5939725,5904963,5879243,5837699,5785521,5748494,5745420,5738618,5739263,5712458,5659197,5586667,5528715,5503999,5479886,5466480,5441827,5399706,5318293,5252740,5240660,5212192,5179936,5167190,5154679,5121916,5107019,5134557,5133133,5120651,5102935,5080929,5040456,5014473,5024657,5019335,4999493,4978602,4961555,4942792,4927928,4959046,4982718,4978512,4964031,4948451,4910752,4898110,4923981,4912289,4913076,4920557,4929899,4894636,4879209,4911382,4911577,4912790,4909189,4898303,4867667,4851645,4878034,4888413,4888008,4890017,4889363,4854223,4843761,4883887,4900661,4920982,4942697,4956566,4949382,4955544,5000308,5030738,5063150,5084608,5095613,5035289,5037231,5078215,5097332,5115293,5147715,5160817,5146121,5143146,5171570,5178268,5186691,5199418,5192468,5154279,5148877,5185090,5195114,5212822,5210943,5203166,5169814,5147009,5169381,5179332,5185380,5197244,5194994,5162352,5185084,5198431,5201326,5205263,5207540,5184235,5149759,5123378,5137368,5130151,5125012,5121071,5112746,5083858,5051768,5054870,5041511,5031473,5023924,5012721,4974386,4947127,4965616,4969060,4964798,4957676,4956595,4925927,4902775,4934986,4961516,4975302,4988952,4991473,4966436,4958211,4997287,5019021,5049099,5077816,5089927,5062714,5045803,5089510,5114657,5138443,5161186,5178156,5172886,5173741,5224559,5247959,5282504,5315047,5351428,5346889,5363195,5440177,5471599,5505223,5546793,5564704,5547216,5545444,5591165,5616377,5645167,5658336,5668970,5653277,5651803,5705330,5732210,5759756,5792776,5824051,5805196,5797913,5852903,5882718,5911781,5895898,5884945,5838918,5801252,5810293,5783809,5781745,5775734,5759409,5722542,5706387,5743408,5753626,5771103,5767774,5790600,5764784,5746272,5786173,5810978,5830241,5851958,5853058,5813201,5787348,5823348,5833109,5838281,5841472,5879911,5868055,5859047,5873679,5872085,5882111,5887081,5890923,5869096,5856217,5877508,5885375,5899691,5908589,5948038,5911604,5891268,5928503,5926426,5924971,5919780,5929445,5911199,5896254,5922694,5925130,5935302,5951598,5972844,5955179,5949737,5992021,6047653,6108943,6146424,6183449,6184339,6172195,6211028,6249608,6276130,6305974,6334505,6299976,6290706,6339232,6367099,6418029,6472054,6528220,6508917,6500070,6535222,6579886,6618479,6623669,6637415,6589897,6549979,6591709,6612234,6615793,6614086,6651580,6634775,6614167,6692365,6748696,6806310,6843058,6877873,6848327,6840086,6908723,6949205,6986655,7006273,6996591,6951892,6927954,6973245,6966683,6979464,6988528,7031294,7056634,7111389,7229756,7319211,7399553,7475361,7531037,7498927,7494158,7540351,7529422,7484949,7437117,7387008,7306679,7267378,7274670,7247074,7220259,7159866,7087357,6943654,6843141,6833864,6747249,6699978,6604265,6515879,6368718,6234557,6172003,6068010,5927132,5792308,5656756,5481960,5358404,5314759,5258361,5198568,5175684,5135567,5050859,4974798,4973913,4941937,4884460,4846977,4813666,4812233,4829186,4884706,4883512,4904890,4924668,4947301,4912255,4914385,4961372,4963560,4961201,4978773,4979979,4925296,4917101,4956196,4948407,4933363,4907928,4871461,4798530,4777399,4801552,4778738,4752462,4729519,4678578,4616215,4551606,4568418,4549328,4541497,4535943,4523756,4467608,4454268,4487605,4470224,4463081,4438892,4389692,4317882,4307394,4315005,4199478,4041331,3871496,3770694,3714226,3704130,3732771,3730412,3723433,3706184,3693996,3650102,3635503,3644551,3641465,3640959,3604813,3578195,3509815,3483581,3522161,3496278,3467370,3419072,3385362,3333905,3321772,3346151,3357957,3442434,3561631,3675296,3698835,3679263,3698142,3679879,3660405,3630410,3616426,3567425,3551989,3579403,3566178,3545082,3515640,3501644,3437375,3419621,3445071,3418091,3430142,3406832,3399230,3346244,3327903,3354495,3342419,3322080,3304897,3284570,3245756,3237463,3272352,3273202,3279748,3272795,3266541,3219733,3211467,3244486,3249003,3253790,3256148],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=7\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"7","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"7","showlegend":true,"x":["2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[12323,182909,317165,427491,630390,839885,1046502,1266743,1449355,1563657,1673781,1839457,2041342,2230330,2417049,2613943,2748625,2870153,3050853,3250716,3561125,3831588,4072341,4283903,4425394,4637258,4892495,5153698,5370555,5578721,5548096,5551095,5646901,5653804,5634724,5636700,5607277,5559199,5568869,5669745,5783870,5841453,5902779,5995724,6036927,6085000,6251885,6299554,6374261,6270423,6196789,6094917,6026964,6109705,6172686,6206778,6292914,6399350,6423349,6499775,6675933,6855720,6978199,7123135,7257213,7299889,7394095,7577391,7671334,7684842,7755820,7774283,7652782,7610648,7703137,7716803,7836728,7897233,7987372,7968304,8053357,8188945,8276788,8334571,8373488,8381847,8264679,8225638,8307468,8342958,8327715,8336945,8325229,8071882,7945437,7852346,7691982,7563667,7448374,7248122,7039220,6950968,6893109,6794696,6656565,6459673,6310121,6082383,5998370,5946779,5854919,5713770,5562280,5375448,5133729,5036591,4983985,4834203,4634634,4397363,4169251,3921172,3909011,3934353,3969948,4013273,4061700,4077341,4051966,4086177,4145551,4162184,4165241,4162848,4184635,4185394,4264716,4338213,4348713,4360186,4393121,4397289,4362386,4385755,4484267,4533915,4571669,4602009,4619147,4599238,4632288,4697442,4749101,4779689,4761213,4718704,4672504,4712437,4788027,4861025,4934415,4967982,4981177,4906667,4858206,4901480,4935876,4964260,4967876,4947322,4883048,4899882,4964348,4962644,4990751,5069811,5156657,5143334,5233088,5382747,5437932,5465121,5489244,5511799,5464843,5461210,5539873,5605470,5643545,5628173,5602258,5538399,5592204,5697007,5731591,5720487,5682201,5635088,5563103,5536094,5588218,5569831,5560870,5520951,5428500,5297945,5266073,5242263,5169777,5237129,5250364,5243091,5214354,5243801,5311197,5329285,5351022,5325871,5306053,5228294,5222693,5225051,5173001,5159663,5163923,5205208,5188796,5202952,5290857,5314650,5247465,5153329,5060366,4952420,4878113,4889962,4843664,4771819,4639929,4530660,4373416,4266100,4209953,4101081,3958774,3822622,3707939,3576494,3528899,3516045,3457063,3367382,3260557,3158538,3005618,2927045,2908348,2841384,2749478,2760307,2752859,2720070,2719695,2778142,2774777,2797061,2859612,2863945,2859885,2895938,2964946,2991350,3009946,3028181,3018075,2992352,2998539,3046192,3077148,3098813,3121719,3154899,3125626,3126492,3185799,3205632,3211591,3222082,3204106,3175937,3177930,3234781,3227349,3220436,3166494,3063882,2982509,2928656,2926577,2908988,2889991,2878364,2839265,2773857,2746058,2788489,2761217,2727460,2687474,2634292,2535673,2511660,2523353,2489499,2444242,2399316,2352200,2284137,2261666,2268302,2223759,2180033,2139465,2106929,2066279,2046230,2028545,1979246,1921743,1853722,1787559,1743055,1731471,1728666,1675710,1663502,1643262,1627700,1595381,1592714,1618417,1616318,1599792,1586800,1570775,1539514,1537953,1555009,1552458,1553427,1554527,1553375,1541485,1543496,1577662,1618236,1681026,1718409,1747759,1751119,1759093,1800615,1839174,1863472,1863871,1875700,1851645,1850923,1887161,1898771,1927988,1938133,1937413,1916695,1930478,1967660,1982729,1988053,1986844,1986006,1959403,1961301,1989676,1991855,1983471,1956577,1934414,1898553,1897906,1935082,1937529,1934426,1926370,1924698,1887042,1894391,1933248,1937887,1931482,1903361,1890537,1860365,1859388,1874088,1867451,1863434,1850062,1833535,1801313,1799506,1827152,1838196,1836106,1840010,1818553,1786385,1780506,1804402,1796566,1786471,1780275,1778162,1749417,1741474,1763473,1765030,1768127,1783886,1780336,1752613,1752077,1779088,1788139,1794819,1798941,1804954,1780521,1777251,1814801,1838917,1852538,1865959,1865820,1853113,1864638,1904237,1912536,1918442,1926409,1931833,1903354,1911980,1937924,1944054,1941920,1940575,1940515,1927284,1933022,1975014,2004755,2010227,2016108,2011055,1981683,1984084,2026870,2037725,2028409,2013683,2006187,1968287,1959603,2002680,2007439,2010158,2006158,1999043,1961010,1959657,1967072,1984289,1997905,2014955,2010830,1972926,1960934,2012373,2029527,2022887,2026428,2037782,2013918,2025364,2087023,2113388,2149329,2179068,2188019,2170901,2190952,2281994,2316601,2363121,2398810,2416594,2400802,2414740,2467578,2505336,2534641,2545325,2540666,2529907,2541061,2578505,2552029,2536956,2541746,2542734,2503233,2506926,2537957,2531106,2580232,2591567,2564543,2528210,2519832,2546118,2511216,2475544,2432703,2387675,2345250,2338759,2360232,2348451,2341876,2332140,2310095,2270646,2273664,2306009,2312616,2323734,2321229,2303354,2266912,2266209,2296508,2301800,2340427,2329681,2320707,2343316,2362921,2390969,2389315,2380399,2370753,2359526,2341180,2338333,2380870,2406913,2417657,2418500,2413144,2388873,2386374,2398832,2395738,2395616,2413931,2429262,2421593,2432712,2453738,2462155,2466702,2433726,2376184,2308272,2246963,2273813,2314571,2332230,2341304,2355213,2363889,2376504,2416188,2418034,2420366,2424413,2415023,2380918,2385669,2428029,2452330,2459430,2468440,2455906,2433472,2428560,2460762,2488033,2501482,2521049,2578119,2582568,2694805,2791636,2883557,3000272,3115975,3274707,3718005,4132268,4479052,4607317,4698636,4748298,4838399,4912073,4942647,5037732,5097926,5108906,5179454,5224286,5333629,5591188,5858811,5974394,6034550,6178957,6222345,6258469,6542693,6645968,6655341,6744817,6653390,6574697,6418124,5976897,5700027,5798955,6058892,6105530,6165278,6166431,6185470,6311311,6377987,6445523,6544535,6621754,6877495,7099405,7026835,6982510,7020588,7267316,7394704,7599273,7672880,7742719,7762728,7941595,7975097,8247342,8381261,8550722,8761178,8882655,8873249,8781386,8906821,9029725,9206680,9411865,9567464,9718352,9751731,9772407,9742143,9552023,9350831,9313160,9503856,9544836,9510698,9348269,9198369,9151795,8996298,8954086,8861217,8782944,8574276,8512261,8491136,8449672,8349971,8099105,7963225,7827264,7705035,7575504,7440070,7314490,7270761,7258379,7241807,7244194,7277361,7198094,7204259,7022294,6967379,6811928,6812560,6838150,6871370,6821090,6816006,6805775,6785689,6666632,7042979,7059406,7043609,7336050,7312635,7281856,7272659,7284462,7292306,7320571,7334466,7253806,7243815,7303329,7335929,7347852,7483717,7509087,7460342,7451191,7449087,7492965,7517549,7521331,7539520,7542590,7541659,7547652,7747601,7418878,7423225,7436773,7157524,7165804,7178617,7186263,7176444,7199361,7188964,7129849,7067320,7003623,6916181,6847281,6779054,6692021,6628146,6553890,6489823,6451710,6381737,6314376,6241235,6158663,6076446,6006840,5970720,5868661,5798075,5715147,5629979,5538232,5459734,5410895,5376918,5354001,5270720,5198080,5169387,5148876,5171988,5176316,5197416,5210019,5216159,5200223,5192101,5220362,5234429,5241326,5238911,5246291,5249595,5250534,5286108,5302801,5307518,5319704,5340891,5338120,5341451,5375811,5395092,5403321,5402431,5413938,5402263,5396265,5424022,5431704,5437453,5434395,5428011,5412124,5407821,5430079,5441377,5445558,5456703,5463346,5462250,5461399,5497068,5512494,5518618,5525378,5522380,5505543,5506675,5538539,5558388,5566677,5578062,5588642,5576643,5576944,5614770,5633451,5677612,5671442,5675161,5673473,5678335,5694518,5575157,5399098,5209524,5075816,5051494,5022610,5044281,5003519,4949908,4902572,4852361,4775689,4703388,4677078,4616892,4552563,4503565,4445331,4378588,4329646,4325805,4278768,4218594,4122782,4061708,3981016,3897785,3851496,3818607,3903517,4032808,4169218,4227338,4173900,4167289,4122677,4104685,4100798,4094114,4074014,4072357,4110723,4119622,4139350,4147638,4131326,4105003,4083308,4088338,4065430,4070643,4076839,4086913,4083668,4080810,4125791,4142237,4146017,4137058,4135869,4114597,4100054,4123880,4116980,4109887,4117010,4114214,4089794,4079564,4111374,4125972,4135558,4124193],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=6\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"6","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"6","showlegend":true,"x":["2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[73722,250834,434879,603969,717655,827212,994008,1172522,1391529,1588987,1748878,1842804,1948188,2152976,2370532,2582115,2761553,2917277,3034419,3145725,3319423,3502581,3717173,3928497,4113948,4231021,4335420,4498914,4694236,4839182,4831908,4816665,4760309,4760617,4850418,4878834,4899181,4869945,4860067,4846542,4895899,5014477,4992179,5016252,5022187,5037086,5024465,5041218,5153001,5235499,5311028,5328906,5314499,5259118,5277630,5378611,5417318,5450650,5437183,5423671,5381517,5397849,5456532,5467858,5503494,5505763,5509631,5526830,5585444,5651503,5691494,5894292,6004355,6094956,6152873,6250330,6411718,6482298,6529224,6567414,6622210,6606720,6657546,6756175,6819839,6918163,7025701,7152040,7234764,7307014,7542931,7771848,7941933,8056659,8181758,8210000,8243224,8346902,8482377,8567746,8564028,8447849,8311750,8191887,8131247,8028551,7939614,7830988,7707939,7549224,7478203,7471466,7434587,7366176,7257270,7101351,6886862,6762498,6734344,6584300,6418322,6238728,6118242,5934743,5859552,5796505,5717603,5638156,5511787,5304156,5173962,5126077,5171232,5181668,5206927,5288648,5364208,5312064,5311148,5421823,5459379,5476708,5495919,5516991,5469984,5480456,5551136,5575939,5572891,5567256,5587352,5512257,5519774,5557168,5528025,5451307,5325791,5241983,5152107,5132983,5152145,5116926,5082988,5027270,4890685,4717119,4697257,4728872,4677885,4635925,4583120,4492963,4378163,4343787,4360136,4341807,4313909,4264528,4193779,4081159,4043414,4065577,4066696,4103668,4128512,4154393,4123819,4147438,4217178,4236925,4264664,4272258,4275426,4229250,4233377,4297467,4326937,4338766,4355140,4382153,4396488,4443909,4551401,4612017,4639561,4669868,4705222,4671941,4692775,4771519,4798721,4813086,4816812,4815646,4768699,4774998,4825572,4850908,4903226,4973132,5044521,5049524,5107670,5250900,5345152,5415456,5481767,5544607,5529733,5551143,5654714,5714081,5773850,5824549,5876864,5860871,5906538,6013604,6079212,6151793,6213496,6292147,6294064,6369156,6527714,6655363,6764415,6829592,6858970,6819008,6838292,6922128,6972643,7007367,7017739,7032733,6975563,6998290,7147576,7166835,7182436,7207848,7230698,7168321,7165752,7251874,7306225,7325977,7321057,7325394,7251210,7255448,7343434,7399074,7450133,7479856,7491396,7428201,7431409,7557630,7652064,7696341,7743297,7799917,7755938,7779943,7928371,7947186,8016335,8074505,8088686,8061782,8102397,8241507,8327853,8380422,8444664,8512329,8487532,8525946,8705459,8791832,8810924,8827026,8845171,8790570,8808544,8970076,8999213,9020923,9031898,9014454,8925221,8936170,9041567,9045060,9070525,9104790,9093014,9025124,9009271,9154535,9212799,9257099,9266458,9267427,9180872,9179797,9332828,9377037,9404956,9409148,9410452,9328880,9337030,9495200,9528190,9597059,9657906,9735999,9660750,9678141,9837447,9899677,9929631,9972236,9964631,9916107,9944175,10101764,10059172,10042921,10013514,9999789,9909347,9885554,9974910,10019333,10012094,10062521,10103973,10077267,10111313,10266939,10283313,10341650,10363836,10439109,10398580,10482759,10769629,10749597,10747945,10739094,10684813,10601050,10581990,10664540,10656711,10675737,10680088,10688699,10601687,10593017,10708976,10739796,10697239,10660405,10544061,10406649,10326315,10381606,10340722,10292130,10169797,10043885,9787549,9639596,9640480,9449845,9428253,9370424,9321518,9232619,9185633,9279797,9260460,9233166,9209995,9153793,9023354,8996139,9057584,9029862,9001280,8937984,8866932,8767344,8735321,8779220,8722241,8658159,8605630,8573803,8491848,8472566,8487592,8418137,8336486,8251628,8190991,8082654,8017222,7979220,7856129,7777577,7705695,7615981,7499347,7454950,7473173,7418706,7383907,7307029,7247754,7140946,7105244,7110643,7085571,7082449,7075911,7036408,6930485,6893469,6946111,6975258,7017202,7019685,7023343,6964285,6927066,7002357,7097661,7165364,7223584,7246993,7223814,7230789,7357111,7411308,7468527,7503592,7532984,7472280,7498294,7587240,7656539,7682051,7681489,7677679,7632910,7635068,7704902,7728721,7767182,7771728,7784779,7730193,7729387,7857395,7949934,7998477,8039331,8059272,7976441,7959920,8067704,8060361,8077814,8083123,8084029,8016295,8021793,8112494,8141812,8159712,8179224,8176353,8104484,8099250,8198439,8262075,8285085,8315014,8316543,8256998,8249362,8347849,8358382,8305622,8314510,8319036,8206498,8195196,8296597,8294525,8310009,8295237,8242054,8155621,8148133,8215614,8209336,8189503,8166872,8154697,8077959,8061542,8130984,8128167,8099802,8098864,8024242,7931714,7924718,8085595,8089346,8084187,8081115,8031866,7887939,7865227,7907314,7906161,7877086,7829035,7805019,7749165,7718101,7772034,7777360,7765815,7761057,7752120,7656498,7641442,7726587,7740324,7824760,7831707,7798013,7726141,7698580,7769729,7721134,7733832,7781609,7843446,7788940,7787668,7844363,7877447,7878444,7902178,8011099,8027875,8098579,8295826,8427678,8544379,8645378,8746265,8739799,8812083,8986838,9098169,9212492,9238350,9327493,9328120,9403559,9575434,9693915,9772644,9856693,9884012,9816821,9866240,10057208,10209250,10344409,10441048,10520368,10420774,10406985,10476973,10440302,10438363,10443693,10440976,10351964,10352611,10484685,10530394,10551571,10557775,10561649,10463432,10458872,10556857,10587893,10573106,10559466,10515309,10380734,10341588,10413764,10393190,10368054,10346795,10307393,10195965,10163439,10243811,10261139,10304094,10280419,10221013,10107146,10066318,10129262,10095620,10062685,10018519,9946195,9799998,9760405,9821050,9808559,9795405,9775218,9739200,9633548,9628381,9713218,9710754,9709842,9707182,9678410,9596601,9594834,9696629,9711553,9727445,9704426,9686880,9620653,9635112,9709571,9725759,9732237,9716536,9703409,9641894,9642000,9728267,9720337,9724501,9687826,9646900,9556697,9541540,9613065,9618560,9607112,9596042,9575636,9474395,9456704,9527091,9528732,9521620,9509799,9480969,9410488,9392873,9448857,9468306,9471459,9448819,9438436,9345811,9323849,9395128,9402411,9414938,9402232,9396559,9332505,9344409,9451530,9473809,9479848,9496934,9492580,9408199,9390512,9465711,9481983,9470318,9397423,9304024,9154492,9066745,9069352,9001189,8920047,8827360,8710914,8547253,8469450,8470113,8412944,8330808,8251977,8142433,7995442,7910724,7896903,7821800,7774458,7705921,7620838,7474622,7401439,7416686,7376334,7296998,7199102,7140671,7065803,7062587,7140254,7170327,7193347,7215059,7219026,7197612,7219804,7305938,7356003,7377449,7407679,7413617,7379298,7402297,7490989,7533904,7559453,7554557,7547846,7482109,7483412,7562946,7595343,7591130,7594131,7603573,7578522,7582211,7591920,7530689,7471303,7397719,7322374,7247570,7219929,7228601,7217265,7217732,7226212,7226749,7177883,7179255,7247563,7271973,7267684,7277355,7273852,7214438,7195460,7232334,7241839,7240340,7252508,7274140,7238655,7232155,7312240,7427151,7533855,7615753,7687028,7695908,7716201,7806430,7902006,7958533,7970474,7964516,7904674,7895265,7963852,7983326,7994159,8000495,7996317,7940632,7922128,8010938,8070946,8101868,8120230,8158689,8109592,8109507,8190395,8221380,8229424,8242530,8260684,8226383,8251332,8354779,8419450,8462160,8492521,8516323,8498336,8523315,8646849,8714202,8769808,8804872,8838896,8807051,8832871,8979051,8989282,9042607,9092744,9144757,9092933,9114745,9253551,9375378,9444780,9509115,9557279,9524621,9553731,9665009,9712117,9741037,9777232,9772339,9711897,9703922,9790141,9825638,9874143,9916368,9938976,9913025,9915735,10044538,10113420,10226039,10293480,10338779,10288236,10289493,10430948,10476359,10504745,10553572,10581449,10494019,10467057,10585962,10665021,10714829,10779614,10804572,10763001,10748904,10879552,10950316,10966565,10966127,10965459,10916606,10904359,11030090,11051239,11033776,11016986,10991339,10899696,10886129,11004456,11025393,11031127,11002059,10970166,10853259,10855015,10956224,10953542,10930463,10914820,10858069,10736342,10709812,10766966,10743935,10718400,10735062,10717031,10613985,10573018,10667556,10681663,10660818,10664525,10652076,10529271,10451806,10496919,10454650,10404559,10363533,10306993,10176841,10130718,10134866,9883653,9517272,9112469,8857631,8750159,8706556,8767072,8804449,8793314,8760123,8681319,8541329,8478109,8535541,8506505,8455210,8383305,8273701,8122988,8079651,8185160,8219039,8230106,8247158,8291458,8251239,8252815,8364903,8471956,8771565,9172068,9563099,9706321,9703516,9860104,9941517,10010320,10102540,10163008,10123289,10139552,10307554,10409146,10501487,10606435,10707067,10682063,10691543,10836684,10928156,11013008,11074102,11095305,10959046,10918132,11013068,11109759,11160792,11208015,11224692,11098725,11051182,11198410,11245063,11325795,11434092,11436711,11309370,11278727,11464103,11592390,11714881,11815929],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=5\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"5","line":{"color":"#00cc96","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"5","showlegend":true,"x":["2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-30T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-12T00:00:00","2021-08-13T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-17T00:00:00","2021-08-18T00:00:00","2021-08-19T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-22T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-25T00:00:00","2021-08-26T00:00:00","2021-08-27T00:00:00","2021-08-28T00:00:00","2021-08-29T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-06T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-10T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-13T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-18T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-24T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-05T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[33649,152392,267424,356997,441803,566131,709174,838163,979051,1094130,1175912,1255508,1375242,1495865,1640163,1780413,1923379,2019893,2096671,2221328,2349538,2495110,2639080,2762264,2851243,2937464,3065577,3212687,3357022,3473964,3519083,3515939,3535836,3583877,3607259,3612799,3638598,3647763,3625388,3648700,3706865,3738886,3807489,3846037,3858308,3820702,3833057,3940266,3984955,4046283,4132502,4161235,4147323,4170288,4254295,4331346,4389402,4435939,4466319,4426313,4435967,4512206,4566568,4629666,4682499,4708435,4671622,4698989,4788677,4864506,4933111,4950675,4964551,4922814,4929305,5005740,5037685,5079193,5087398,5042031,5004611,5016465,5093178,5177970,5206116,5242349,5302152,5286115,5288643,5394892,5413647,5309017,5170680,5034925,4896827,4819714,4762009,4638426,4488599,4336281,4193066,4035896,3961742,3914325,3801297,3659844,3519498,3389044,3244412,3148661,3101110,2985579,2813235,2657410,2488688,2296886,2197635,2169004,2037861,1917896,1903135,1891586,1867240,1867913,1902293,1916313,1923781,1934905,1937282,1917707,1921474,1947255,1944961,1945823,1945239,1948159,1930397,1933588,1970734,1984297,2009879,2012064,2007134,1980840,1966239,1967028,1943676,1911968,1896425,1886947,1868879,1869074,1876553,1860488,1840838,1812518,1779986,1746406,1742367,1752022,1755107,1796011,1791945,1782535,1756695,1748558,1775756,1771794,1754061,1740615,1729271,1708412,1708591,1730536,1743172,1769083,1782930,1787710,1781736,1789578,1819726,1850974,1877351,1909582,1938038,1954983,1974978,2016988,2056570,2080510,2064989,2079921,2074129,2083435,2122706,2137972,2153754,2184175,2196815,2201916,2229350,2285980,2334423,2365500,2367685,2394405,2408327,2443305,2494688,2530613,2571057,2605434,2633368,2640634,2668253,2722681,2753443,2776401,2796323,2811340,2805541,2826178,2888043,2930175,2983466,3051544,3093209,3093265,3109065,3178455,3221886,3258945,3305564,3364408,3372310,3391074,3456096,3537118,3600972,3643965,3695293,3687058,3712539,3777779,3841938,3897546,3942420,3986406,4001117,4032260,4112092,4149121,4180274,4223747,4236760,4229285,4263188,4341067,4363568,4389530,4391327,4398858,4369719,4386463,4445616,4461966,4428906,4401730,4373482,4328310,4341109,4402777,4426701,4425440,4443216,4474541,4476555,4515061,4590586,4624410,4658526,4690350,4687118,4653804,4653559,4686836,4680588,4672667,4654520,4667602,4633033,4643441,4682118,4688394,4698248,4728384,4756998,4771741,4801291,4860824,4889360,4929023,4946993,4986959,4986923,5024467,5076729,5115390,5156471,5185418,5217852,5219757,5268972,5339817,5384435,5631418,5981205,6336059,6312836,6324500,6353750,6350310,6348753,6349069,6339951,6292408,6274637,6283638,6298695,6291793,6262758,6243850,6177847,6144052,6145606,6140555,6122562,6089208,6092371,6021621,5983702,5949596,5916347,5875638,5644395,5310372,4937500,4931200,4984099,4998595,5040280,5061126,5077936,5064289,5076833,5130541,5172232,5178650,5200661,5220709,5196729,5182683,5213090,5222491,5220126,5218486,5217174,5146225,5144740,5215480,5270780,5305845,5365094,5389831,5355771,5360860,5418717,5425543,5453338,5521059,5589362,5586936,5626075,5723152,5787677,5843230,5857525,5833692,5793621,5804495,5851707,5851111,5844549,5849990,5840817,5794750,5804545,5854130,5844994,5896280,6007068,6003619,5976749,6006763,6064605,6165645,6418524,6440519,6379937,6293890,6274061,6284540,6260111,6252724,6245452,6268592,6258316,6277214,6347563,6396412,6438454,6482806,6510109,6500108,6550810,6620858,6669204,6724582,6721003,6662648,6646004,6670196,6764034,6837569,6796053,6595221,6570742,6530431,6554063,6607732,6650033,6703082,6696271,6702248,6648791,6642355,6716324,6739732,6744920,6754631,6725954,6593324,6513805,6460874,6381531,6272384,6142491,5998902,5832027,5717742,5634789,5494013,5348872,5229248,5123031,5063400,5039716,4979977,4884028,4764791,4641671,4534985,4382127,4295977,4258139,4146526,4028573,3915365,3829599,3736239,3751348,3782481,3784710,3785237,3780844,3769027,3759680,3779343,3836972,3885156,3924319,3956334,3976954,3943689,3905167,3918177,3976814,4054124,4084334,4083249,4063213,4073708,4120504,4146141,4152810,4163481,4174071,4125252,4099177,4120283,4133740,4130102,4136269,4133589,4104564,4101137,4085173,4053377,4008818,3956390,3920569,3871083,3859610,3841548,3806243,3760475,3698395,3694342,3662603,3664792,3691034,3694286,3667263,3651031,3634111,3596147,3607382,3642965,3685011,3685794,3700309,3666713,3628000,3630986,3650895,3689678,3690630,3671535,3675063,3655979,3647353,3677364,3727202,3725397,3693247,3650614,3579769,3553656,3562278,3606210,3623971,3667036,3653463,3602446,3587766,3584563,3593000,3532205,3530837,3479528,3432840,3427607,3425121,3419204,3409014,3414627,3426066,3394887,3377102,3385915,3387154,3374239,3370086,3356144,3336949,3341099,3368194,3384259,3325013,3278592,3201466,3161717,3172232,3186350,3202077,3179776,3177554,3127975,3094326,3091217,3106882,3124290,3112054,3095977,3066488,3026767,3011912,3027218,3029803,3000066,2963237,2931847,2898760,2879651,2877221,2872026,2829589,2797520,2760391,2727536,2710536,2708591,2706773,2679667,2668017,2649738,2627336,2624971,2643776,2656386,2655105,2664675,2661845,2653026,2665559,2700834,2710977,2711619,2719430,2723316,2715630,2721678,2755450,2783141,2793855,2809317,2819457,2830905,2841553,2868581,2887944,2886743,2885364,2882291,2874230,2882094,2913177,2930853,2933471,2932034,2920387,2898896,2897772,2916648,2925285,2926172,2929944,2920688,2913878,2922398,2941303,2954915,2959440,2961382,2959578,2950137,2949264,2988459,3016437,3038086,3060327,3073161,3061816,3058924,3087209,3107097,3117915,3122187,3115307,3099165,3094856,3103739,3105367,3111156,3121482,3131821,3132739,3136060,3166984,3188471,3207433,3213597,3223648,3227313,3248201,3276188,3272679,3276053,3275490,3260055,3233638,3230414,3251254,3242287,3225442,3206855,3192753,3178959,3186605,3214024,3231679,3229418,3212105,3187981,3144068,3118797,3125052,3113126,3109338,3079500,3061132,3024387,2995530,2980732,2965361,2958659,2951075,2937205,2924048,2933603,2959106,2968720,2981690,2986820,2996974,2990003,3000864,3031373,3037221,3053218,3068340,3086282,3089488,3115082,3157260,3170833,3175816,3170088,3179965,3168821,3171461,3194211,3217015,3230501,3237498,3229985,3209448,3204254,3217825,3215747,3217358,3213666,3209553,3190070,3184781,3198698,3195554,3197981,3184530,3174077,3145097,3134378,3132825,3125939,3136417,3150312,3176640,3173925,3172266,3185697,3191233,3195102,3183600,3174052,3147311,3142411,3153937,3151586,3158366,3151113,3142766,3120823,3118498,3126960,3125142,3114699,3104291,3089682,3068466,3066769,3083682,3101001,3100240,3085039,3063692,3023788,3008161,3025691,3034516,3038971,3033072,3041441,3027685,3034989,3062101,3078517,3088410,3089371,3086582,3073320,3073497,3093674,3102319,3105029,3108252,3106710,3091923,3085558,3101398,3101772,3094649,3089644,3085068,3068882,3060996,3070256,3067252,3065267,3056279,3044941,3016206,3012387,3026586,3018922,3008652,2991311,2973399,2948793,2945639,2968606,2966871,2967352,2972646,2966832,2959227,2960584,2992051,3004958,3018217,3012977,3018795,3008488,3008313,3037917,3054181,3067610,3070364,3066746,3048321,3051202,3049446,3038986,3031043,3019965,3020510,3016536,3018264,3012782,3008106,3003785,3000469,2991183,2975635,2962661,2974496,2972907,2970921,2968763,2961843,2935281,2925548,2928277,2921300,2901665,2879024,2861516,2840090,2834547,2842859,2862179,2867953,2866301,2860181,2839749,2821213,2868310,2909431,2913445,2906384,2889786,2857500,2846752,2858847,2861050,2841576,2820301,2790461,2764963,2754544,2759886,2763854,2746230,2734590,2723299,2702133,2692125,2695615,2688956,2675099,2667060,2658494,2640199,2642108,2667425,2644042,2632218,2638139,2655979,2674579,2704881,2752757,2782296,2801526,2835231,2858670,2877484,2906654,2948826,2964082,2990728,3015134,3059649,3075053,3112027,3160110,3212967,3243085,3271791,3296844,3311838,3346791,3383795,3416449,3433522,3442901,3460639,3470354,3487134,3515263,3543614,3574021,3608787,3611834,3601089,3597450,3616052,3629987,3662152,3667792,3676345,3647610,3660050,3701066,3723995,3727165,3741925,3763641,3788467,3813643,3846883,3872356,3877758,3886550,3890654,3866808,3862312,3865372,3869067,3851736,3839727,3806107,3773765,3773588,3786020,3788270,3785861,3778493,3776041,3760598,3763751,3764197,3727198,3698304,3662857,3639911,3608125,3569630,3558025,3535230,3508287,3483849,3464721,3441549,3437132,3420131,3408544,3388667,3369609,3344273,3331135,3339570,3336109,3338837,3332940,3334724,3325922,3301725,3303096,3310409,3309134,3323969,3338586,3354435,3348984,3346162,3339423,3260878,3154204,3042310,2975154,2962205,2966534,2966618,2983651,2980369,2972860,2965813,2952121,2950299,2954158,2962830,2954288,2939407,2915800,2892868,2889938,2899389,2900378,2899124,2879539,2857528,2832998,2825215,2825822,2845521,2921513,3025905,3128393,3184985,3186064,3196158,3205882,3201870,3203445,3210278,3205721,3202798,3205295,3207352,3206651,3210887,3218160,3212457,3217027,3232226,3246337,3244952,3264597,3269403,3266422,3270284,3282422,3286858,3285656,3280287,3285865,3281919,3279130,3294452,3320223,3341574,3350713,3358917,3353056,3353072,3370293,3378710,3375777,3375266],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=4\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"4","line":{"color":"#ab63fa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"4","showlegend":true,"x":["2021-04-26T00:00:00","2021-04-27T00:00:00","2021-04-28T00:00:00","2021-04-29T00:00:00","2021-04-30T00:00:00","2021-05-01T00:00:00","2021-05-02T00:00:00","2021-05-03T00:00:00","2021-05-04T00:00:00","2021-05-05T00:00:00","2021-05-06T00:00:00","2021-05-07T00:00:00","2021-05-08T00:00:00","2021-05-09T00:00:00","2021-05-10T00:00:00","2021-05-11T00:00:00","2021-05-12T00:00:00","2021-05-13T00:00:00","2021-05-14T00:00:00","2021-05-15T00:00:00","2021-05-16T00:00:00","2021-05-17T00:00:00","2021-05-18T00:00:00","2021-05-19T00:00:00","2021-05-20T00:00:00","2021-05-21T00:00:00","2021-05-22T00:00:00","2021-05-23T00:00:00","2021-05-24T00:00:00","2021-05-25T00:00:00","2021-05-26T00:00:00","2021-05-27T00:00:00","2021-05-28T00:00:00","2021-05-29T00:00:00","2021-05-30T00:00:00","2021-05-31T00:00:00","2021-06-01T00:00:00","2021-06-02T00:00:00","2021-06-03T00:00:00","2021-06-04T00:00:00","2021-06-05T00:00:00","2021-06-06T00:00:00","2021-06-07T00:00:00","2021-06-08T00:00:00","2021-06-09T00:00:00","2021-06-10T00:00:00","2021-06-11T00:00:00","2021-06-12T00:00:00","2021-06-13T00:00:00","2021-06-14T00:00:00","2021-06-15T00:00:00","2021-06-16T00:00:00","2021-06-17T00:00:00","2021-06-18T00:00:00","2021-06-19T00:00:00","2021-06-20T00:00:00","2021-06-21T00:00:00","2021-06-22T00:00:00","2021-06-23T00:00:00","2021-06-24T00:00:00","2021-06-25T00:00:00","2021-06-26T00:00:00","2021-06-27T00:00:00","2021-06-28T00:00:00","2021-06-29T00:00:00","2021-06-30T00:00:00","2021-07-01T00:00:00","2021-07-02T00:00:00","2021-07-03T00:00:00","2021-07-04T00:00:00","2021-07-05T00:00:00","2021-07-06T00:00:00","2021-07-07T00:00:00","2021-07-08T00:00:00","2021-07-09T00:00:00","2021-07-10T00:00:00","2021-07-11T00:00:00","2021-07-12T00:00:00","2021-07-13T00:00:00","2021-07-14T00:00:00","2021-07-15T00:00:00","2021-07-16T00:00:00","2021-07-17T00:00:00","2021-07-18T00:00:00","2021-07-19T00:00:00","2021-07-20T00:00:00","2021-07-21T00:00:00","2021-07-22T00:00:00","2021-07-23T00:00:00","2021-07-24T00:00:00","2021-07-25T00:00:00","2021-07-26T00:00:00","2021-07-27T00:00:00","2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-30T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-12T00:00:00","2021-08-13T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-17T00:00:00","2021-08-18T00:00:00","2021-08-19T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-22T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-25T00:00:00","2021-08-26T00:00:00","2021-08-27T00:00:00","2021-08-28T00:00:00","2021-08-29T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-06T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-10T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-13T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-18T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-24T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-05T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[10516,107454,192973,290948,368880,423136,471133,547352,637318,719716,859277,992902,1062723,1121356,1213574,1304338,1404779,1503292,1597276,1656192,1715874,1808906,1912029,2022899,2165027,2267559,2333651,2394596,2493333,2598983,2621124,2649350,2652637,2649581,2668824,2718121,2767286,2811841,2858515,2847699,2796182,2792231,2847080,2895961,2943299,2962247,2973802,2949950,2961215,3010782,3027020,3048691,3081383,3058784,3027205,3034281,3090430,3114891,3133251,3164795,3182647,3153992,3148024,3208756,3263335,3263196,3252480,3237000,3183236,3175638,3218768,3251700,3414760,3444303,3469356,3468535,3490409,3570114,3632721,3716473,3763172,3771998,3772255,3821961,3906936,3970430,4024964,4082324,4090604,4062025,4093433,4182476,4219675,4223195,4155378,4082061,4002098,3955898,3940234,3891321,3799599,3560815,3445893,3343345,3264231,3236004,3142254,3046604,2923131,2829679,2729126,2645623,2590825,2492364,2376372,2262408,2143467,2052251,2008560,1984564,1923980,1853534,1795236,1825585,1857360,1903153,1945107,1964293,1961152,1987126,1985272,1976335,1975769,2010861,2017386,2051147,2051747,2050686,2003870,1982624,2008632,2006646,2018182,2044641,2055760,2021487,1981465,1982469,1968800,1934037,1884473,1837417,1795219,1745377,1715059,1696644,1672952,1672490,1642649,1611745,1596250,1611167,1596526,1579809,1547333,1549824,1519926,1528645,1558645,1561261,1550588,1533400,1492060,1454028,1455409,1482493,1499297,1510914,1526230,1538821,1541594,1542207,1571758,1606774,1632746,1667461,1686568,1679340,1689390,1716263,1731696,1825499,1880293,1876263,1836026,1849405,1887594,1882354,1891612,1893561,1894613,1889603,1889205,1908696,1914891,1886025,1874838,1845094,1810322,1783569,1777305,1756190,1715058,1677424,1622838,1573135,1553986,1550502,1539023,1514604,1414291,1345782,1323053,1313358,1307818,1279286,1293968,1283470,1273354,1248616,1233075,1241061,1234977,1222673,1221323,1197714,1180817,1182506,1199711,1203151,1222806,1221329,1215135,1211595,1214734,1227749,1228815,1223846,1214204,1203995,1193392,1190365,1201408,1203591,1210202,1185893,1167172,1155842,1158378,1179245,1195858,1196645,1201633,1205214,1201862,1201692,1217531,1233099,1240894,1239183,1262182,1272070,1280649,1304940,1319122,1327453,1345179,1359483,1370425,1379500,1408647,1424785,1429518,1423336,1423514,1411939,1412504,1439178,1459254,1456123,1452167,1449299,1436722,1432686,1457498,1471430,1465538,1472326,1465058,1435824,1426017,1440110,1439771,1439477,1438989,1430089,1411609,1405065,1431175,1441749,1461660,1470144,1486965,1486228,1496037,1519224,1531233,1523549,1530014,1536765,1528595,1532449,1555091,1562402,1566288,1575434,1572164,1567234,1577321,1604043,1616890,1628474,1642242,1670878,1700232,1734893,1788221,1811806,1840996,1851351,1888146,1883985,1894935,1931128,2014574,2029826,2056570,2073751,2092047,2115280,2155618,2176172,2186433,2195887,2197078,2199325,2207847,2230257,2235340,2240769,2243612,2249490,2230419,2206145,2213424,2195370,2178306,2148712,2130252,2088622,2080894,2089224,2077494,2008283,2015140,2026676,2072836,2160678,2334204,2449287,2571940,2591122,2593870,2586303,2578440,2591377,2600109,2614617,2630682,2635927,2624808,2620769,2640142,2645554,2647844,2650126,2654904,2647937,2642532,2655399,2660821,2669673,2676855,2660412,2625399,2551535,2456302,2289034,2165766,2037481,2016563,1996093,1995428,2018721,2026079,2035522,2029499,2013409,2001846,2001042,2038766,2044069,2053515,2057826,2056680,2048749,2045915,2081802,2093938,2109416,2118655,2124096,2112310,2116165,2144671,2164050,2174315,2191481,2194357,2189375,2193964,2221954,2228158,2247024,2247097,2250997,2242177,2242591,2262547,2252511,2260041,2255529,2262982,2261259,2263531,2289222,2293850,2297474,2300660,2299272,2280276,2287012,2306853,2314137,2317766,2339576,2337125,2345949,2351386,2389275,2399458,2413161,2415091,2420523,2424219,2434120,2462918,2505673,2586194,2638309,2681453,2677440,2685786,2715091,2737490,2777124,2792732,2816461,2813893,2818959,2848012,2864733,2880259,2928947,2942591,2977297,2970392,3000293,3007158,3041764,3124750,3124031,3116458,3105939,3134957,3138238,3132114,3085311,3062154,3025008,3010576,3022655,3045396,3050930,3022954,3019049,2988706,2975460,3004014,3015055,3024622,3016479,2969295,2932289,2882565,2918536,2919934,2918627,2912366,2864633,2846669,2835318,2855114,2871882,2878485,2876921,2862315,2831035,2817709,2853093,2876769,2928395,2932628,3011253,3137904,3184339,3306998,3318955,3335655,3366212,3366343,3355254,3343346,3363549,3360676,3358796,3360813,3335734,3279496,3269164,3305578,3312599,3283384,3277148,3250535,3226085,3217181,3224414,3252975,3248107,3230427,3225486,3115772,2963314,2919770,2815426,2853277,2827321,2769104,2742528,2730180,2751894,2763725,2802304,2835846,2815818,2808504,2812658,2836906,2834398,2861685,2887063,2902288,2899742,2907853,2929823,2935650,2925450,2908445,2857510,2824527,2826962,2851043,2883014,2896634,2869657,2875878,2860928,2861404,2867262,2851929,2829271,2766148,2728635,2727650,2733715,2759627,2746917,2737881,2743773,2744207,2714568,2702406,2785515,2815729,2817363,2778718,2775618,2758911,2755557,2784545,2782475,2772947,2793597,2756356,2720162,2723896,2738051,2755355,2822649,2836927,2835178,2812700,2798004,2787256,2771953,2779229,2774089,2727334,2682057,2671552,2678957,2592534,2549297,2541986,2536204,2516868,2502402,2524995,2509815,2499049,2470220,2426064,2407620,2396793,2393994,2391472,2395547,2335968,2317649,2300309,2291013,2300841,2298154,2296564,2294006,2283557,2270592,2266953,2285407,2290409,2287619,2286391,2278458,2265359,2259411,2270202,2256767,2250089,2248511,2266409,2257354,2253226,2272872,2284073,2297415,2285418,2279395,2265181,2258870,2267981,2262782,2253432,2242383,2250614,2241348,2232462,2264168,2266098,2266183,2266416,2274211,2262227,2269181,2282333,2290696,2292019,2289201,2303250,2279134,2278303,2295498,2292512,2287870,2273679,2282768,2271688,2274718,2297340,2303405,2311909,2320093,2345197,2323023,2316860,2332019,2336543,2324565,2322524,2341404,2321786,2323223,2336003,2340409,2346485,2345712,2373159,2346617,2342210,2362616,2367060,2383239,2393712,2410173,2382789,2383626,2394473,2389453,2387133,2378107,2388138,2353832,2350334,2354285,2355921,2343248,2347535,2381124,2347774,2348587,2360524,2353798,2366976,2368275,2379064,2336393,2336787,2361459,2375579,2377720,2370371,2375270,2345217,2343746,2356087,2355635,2351851,2351821,2370925,2343738,2344643,2353504,2361741,2362314,2351799,2364525,2315434,2350729,2367938,2385701,2390818,2380032,2381415,2350092,2349642,2362107,2355787,2338022,2334854,2341511,2343629,2354602,2375765,2378927,2411402,2420826,2416880,2395666,2395922,2411899,2418037,2428173,2424120,2429949,2401455,2398915,2374104,2366909,2396335,2392142,2389364,2356464,2359177,2370589,2370345,2363090,2355814,2353644,2322178,2288990,2287760,2288016,2281637,2247812,2234685,2221250,2210912,2221800,2217749,2211802,2199349,2197141,2174535,2172931,2184412,2186744,2183173,2135108,2134368,2116594,2115447,2124974,2128094,2128643,2129305,2129414,2113517,2116218,2130793,2129694,2121758,2120711,2114285,2104342,2104709,2116429,2123199,2122474,2123275,2121670,2111052,2113836,2124571,2128558,2136027,2154853,2151194,2136942,2143403,2153769,2151200,2154205,2150628,2145725,2132812,2132403,2140533,2136685,2134633,2132169,2137824,2129161,2129687,2145207,2145494,2140946,2139330,2137485,2124420,2125386,2132369,2129650,2120640,2109641,2086946,2071909,2073458,2082721,2082118,2081131,2072329,2067947,2054173,2051286,2064619,2067722,2067968,2069006,2068188,2046542,2045475,2063664,2061820,2064303,2062710,2060137,2046183,2047958,2060470,2062289,2063489,2063173,2064033,2052046,2054763,2066682,2064473,2071236,2075978,2081210,2070858,2072363,2088240,2086491,2084766,2086167,2084215,2068705,2071073,2086101,2085368,2089370,2088850,2085923,2073052,2072422,2088069,2088741,2089359,2091646,2092031,2079872,2080911,2085279,2078610,2073326,2067025,2059415,2040257,2034489,2038990,2032404,2026790,2025275,2020243,2002017,2000768,2014316,2012444,2007212,2000883,1999048,1983719,1980733,1990828,1981146,1979678,1975288,1998125,1989052,1986617,1999644,2005511,2008682,2005008,1998599,1982365,1981715,1997312,2004284,2011162,2017276,2015369,2000723,2003800,2031532,2036467,2039525,2039446,2044094,2025048,2023273,2038452,2042203,2051526,2043164,2042146,1997314,1990181,1996061,1990226,1987492,1985759,1980285,1963100,1962168,1973804,1978976,1986250,1985118,1988791,1973146,1974495,2000422,1990784,1988644,1986151,1988583,1969745,1974798,2010202,2008272,2020921,2030988,2052252,2049039,2061652,2091369,2109675,2124609,2136992,2141275,2140028,2150539,2175402,2186563,2192221,2191343,2190345,2172373,2179818,2203285,2202464,2217707,2236368,2256648,2256461,2277927,2324920,2338635,2373518,2388603,2396052,2386568,2400281,2434311,2450452,2470829,2488922,2508842,2506091,2516105,2555945,2574968,2592506,2611241,2631261,2631768,2646784,2678143,2694413,2707184,2709676,2704962,2687403,2688176,2708222,2693922,2682987,2670714,2666540,2647816,2644822,2665321,2663410,2661444,2645171,2637101,2611625,2614173,2640017,2638561,2640924,2654021,2669236,2660244,2678316,2713828,2731845,2723490,2707945,2697673,2676250,2669481,2705450,2724524,2762851,2788072,2810311,2807042,2824544,2864446,2986023,3006464,3017436,3036370,3028565,3041441,3060525,3058481,2972888,2878116,2850996,2827879,2821483,2832416,2824230,2825086,2835091,2855525,2852658,2864237,3016616,3120149,3105436,3202728,3183376,3141732,3110481,3127664,3127936,3017527,3000412,2988715,2961524,2946176,2949712,2958956,2973660,3061320,3152777,3147178,3124477,3110106,3106560,3104769,3090232,3090200,3068302,3082342,3104028,2975762,2858864,2845945,2711153,2689917,2696114,2732139,2714802,2693228,2679148,2672252,2648701,2645820,2679888,2691017,2683353,2664874,2669622,2650822,2648125,2673498,2702911,2701820,2696039,2751701,2731894,2730976,2798502,2794840,2799417,2798829],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=3\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"3","line":{"color":"#FFA15A","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"3","showlegend":true,"x":["2021-01-26T00:00:00","2021-01-27T00:00:00","2021-01-28T00:00:00","2021-01-29T00:00:00","2021-01-30T00:00:00","2021-01-31T00:00:00","2021-02-01T00:00:00","2021-02-02T00:00:00","2021-02-03T00:00:00","2021-02-04T00:00:00","2021-02-05T00:00:00","2021-02-06T00:00:00","2021-02-07T00:00:00","2021-02-08T00:00:00","2021-02-09T00:00:00","2021-02-10T00:00:00","2021-02-11T00:00:00","2021-02-12T00:00:00","2021-02-13T00:00:00","2021-02-14T00:00:00","2021-02-15T00:00:00","2021-02-16T00:00:00","2021-02-17T00:00:00","2021-02-18T00:00:00","2021-02-19T00:00:00","2021-02-20T00:00:00","2021-02-21T00:00:00","2021-02-22T00:00:00","2021-02-23T00:00:00","2021-02-24T00:00:00","2021-02-25T00:00:00","2021-02-26T00:00:00","2021-02-27T00:00:00","2021-02-28T00:00:00","2021-03-01T00:00:00","2021-03-02T00:00:00","2021-03-03T00:00:00","2021-03-04T00:00:00","2021-03-05T00:00:00","2021-03-06T00:00:00","2021-03-07T00:00:00","2021-03-08T00:00:00","2021-03-09T00:00:00","2021-03-10T00:00:00","2021-03-11T00:00:00","2021-03-12T00:00:00","2021-03-13T00:00:00","2021-03-14T00:00:00","2021-03-15T00:00:00","2021-03-16T00:00:00","2021-03-17T00:00:00","2021-03-18T00:00:00","2021-03-19T00:00:00","2021-03-20T00:00:00","2021-03-21T00:00:00","2021-03-22T00:00:00","2021-03-23T00:00:00","2021-03-24T00:00:00","2021-03-25T00:00:00","2021-03-26T00:00:00","2021-03-27T00:00:00","2021-03-28T00:00:00","2021-03-29T00:00:00","2021-03-30T00:00:00","2021-03-31T00:00:00","2021-04-01T00:00:00","2021-04-02T00:00:00","2021-04-03T00:00:00","2021-04-04T00:00:00","2021-04-05T00:00:00","2021-04-06T00:00:00","2021-04-07T00:00:00","2021-04-08T00:00:00","2021-04-09T00:00:00","2021-04-10T00:00:00","2021-04-11T00:00:00","2021-04-12T00:00:00","2021-04-13T00:00:00","2021-04-14T00:00:00","2021-04-15T00:00:00","2021-04-16T00:00:00","2021-04-17T00:00:00","2021-04-18T00:00:00","2021-04-19T00:00:00","2021-04-20T00:00:00","2021-04-21T00:00:00","2021-04-22T00:00:00","2021-04-23T00:00:00","2021-04-24T00:00:00","2021-04-25T00:00:00","2021-04-26T00:00:00","2021-04-27T00:00:00","2021-04-28T00:00:00","2021-04-29T00:00:00","2021-04-30T00:00:00","2021-05-01T00:00:00","2021-05-02T00:00:00","2021-05-03T00:00:00","2021-05-04T00:00:00","2021-05-05T00:00:00","2021-05-06T00:00:00","2021-05-07T00:00:00","2021-05-08T00:00:00","2021-05-09T00:00:00","2021-05-10T00:00:00","2021-05-11T00:00:00","2021-05-12T00:00:00","2021-05-13T00:00:00","2021-05-14T00:00:00","2021-05-15T00:00:00","2021-05-16T00:00:00","2021-05-17T00:00:00","2021-05-18T00:00:00","2021-05-19T00:00:00","2021-05-20T00:00:00","2021-05-21T00:00:00","2021-05-22T00:00:00","2021-05-23T00:00:00","2021-05-24T00:00:00","2021-05-25T00:00:00","2021-05-26T00:00:00","2021-05-27T00:00:00","2021-05-28T00:00:00","2021-05-29T00:00:00","2021-05-30T00:00:00","2021-05-31T00:00:00","2021-06-01T00:00:00","2021-06-02T00:00:00","2021-06-03T00:00:00","2021-06-04T00:00:00","2021-06-05T00:00:00","2021-06-06T00:00:00","2021-06-07T00:00:00","2021-06-08T00:00:00","2021-06-09T00:00:00","2021-06-10T00:00:00","2021-06-11T00:00:00","2021-06-12T00:00:00","2021-06-13T00:00:00","2021-06-14T00:00:00","2021-06-15T00:00:00","2021-06-16T00:00:00","2021-06-17T00:00:00","2021-06-18T00:00:00","2021-06-19T00:00:00","2021-06-20T00:00:00","2021-06-21T00:00:00","2021-06-22T00:00:00","2021-06-23T00:00:00","2021-06-24T00:00:00","2021-06-25T00:00:00","2021-06-26T00:00:00","2021-06-27T00:00:00","2021-06-28T00:00:00","2021-06-29T00:00:00","2021-06-30T00:00:00","2021-07-01T00:00:00","2021-07-02T00:00:00","2021-07-03T00:00:00","2021-07-04T00:00:00","2021-07-05T00:00:00","2021-07-06T00:00:00","2021-07-07T00:00:00","2021-07-08T00:00:00","2021-07-09T00:00:00","2021-07-10T00:00:00","2021-07-11T00:00:00","2021-07-12T00:00:00","2021-07-13T00:00:00","2021-07-14T00:00:00","2021-07-15T00:00:00","2021-07-16T00:00:00","2021-07-17T00:00:00","2021-07-18T00:00:00","2021-07-19T00:00:00","2021-07-20T00:00:00","2021-07-21T00:00:00","2021-07-22T00:00:00","2021-07-23T00:00:00","2021-07-24T00:00:00","2021-07-25T00:00:00","2021-07-26T00:00:00","2021-07-27T00:00:00","2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-30T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-12T00:00:00","2021-08-13T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-17T00:00:00","2021-08-18T00:00:00","2021-08-19T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-22T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-25T00:00:00","2021-08-26T00:00:00","2021-08-27T00:00:00","2021-08-28T00:00:00","2021-08-29T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-06T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-10T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-13T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-18T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-24T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-05T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[99400,289249,757258,1350073,1488195,1540330,1693013,2192212,2288105,2393008,2487820,2550758,2621118,2724202,2828629,2926320,3025988,3112214,3171565,3226874,3308909,3401148,3499731,3597883,3692144,3750478,3803368,3890008,3987680,3988772,3901723,3521192,2982246,2901850,2942407,2891624,2493190,2505288,2502471,2465183,2455557,2476487,2475458,2488004,2521435,2542280,2544462,2553470,2615192,2652680,2681713,2710326,2733134,2718043,2724771,2780627,2806903,2819870,2834591,2839400,2817666,2822884,2884857,2922697,2941824,2962438,2952546,2917531,2921527,2981215,3020124,3042262,3048287,3031952,2983801,2961975,3008948,3018053,3023314,3027757,3024776,2978900,2970090,3026398,3054457,3071543,3100415,3120436,3087628,3105001,3167458,3113553,3054119,2994008,2931120,2869706,2830522,2830120,2784248,2722025,2659096,2591949,2507055,2461526,2457150,2419393,2365317,2303282,2241122,2159429,2119395,2116277,2066927,1996813,1924892,1847918,1743848,1695680,1669727,1614163,1612135,1620551,1626952,1602575,1595155,1620149,1627141,1633200,1636747,1635602,1613943,1614855,1648134,1654523,1650391,1654113,1659876,1631243,1617725,1651974,1668155,1681119,1695451,1720803,1698926,1701271,1755981,1791812,1824284,1848918,1853939,1835150,1842204,1897934,1936267,1955589,1966218,1971857,1979468,1990784,2028477,2045330,2069107,2110864,2116607,2095990,2103546,2163790,2212743,2244390,2274403,2295252,2254625,2249603,2289419,2296299,2295215,2289246,2302196,2298431,2327690,2391699,2394288,2378309,2368452,2434886,2401111,2371650,2407207,2448504,2496518,2537090,2502643,2472223,2465128,2498731,2496429,2470317,2448692,2430798,2455306,2477632,2520438,2538051,2551714,2545737,2545067,2500061,2470464,2484506,2505846,2581822,2608316,2614222,2521693,2526336,2567314,2574383,2635652,2649482,2592535,2558494,2558935,2588707,2603938,2647800,2660473,2656690,2619687,2550824,2612769,2660763,2700959,2692613,2732375,2739550,2765182,2864039,2930098,2957791,2952719,3000765,3047675,3044549,3135545,3216232,3212109,3125202,3066892,3089879,3160057,3198380,3219130,3213051,3173145,3148676,3108532,3094236,3124313,3110806,3148563,3139931,3128214,3059366,3043091,3118634,3068813,3027723,3004692,2954297,2899895,2880905,2932676,2892350,2833122,2837543,2839674,2860871,2862750,2838989,2849319,2847038,2839915,2828806,2838666,2886769,2939889,2944159,2926952,2861717,2855237,2898028,2910565,2923123,2880659,2881563,2858729,2813861,2793089,2797151,2798196,2793045,2798016,2784140,2773142,2753501,2714080,2719095,2744910,2775791,2803556,2831882,2842004,2838522,2854693,2870627,2894866,2894477,2872983,2825114,2777967,2814538,2845615,2851339,2858346,2846497,2848711,2851652,2867183,2874106,2879203,2850816,2815643,2794274,2808035,2838527,2835703,2826509,2771521,2702493,2644149,2598331,2576114,2537397,2503163,2475006,2465760,2447745,2431900,2470008,2485002,2482136,2487938,2485765,2491005,2486888,2500817,2505941,2517278,2527973,2579161,2639782,2707015,2793153,2872018,2950980,2975256,3022071,3126800,3215055,3328207,3385631,3442581,3475696,3520468,3578033,3642908,3767464,3803237,3838030,3867981,3905277,3951456,3990953,4077892,4124812,4186618,4180382,4207064,4222572,4288976,4351363,4361352,4337321,4298150,4309440,4334223,4328898,4394931,4431007,4463237,4486333,4522319,4545200,4531065,4595198,4598485,4605238,4612444,4613659,4599142,4577255,4646673,4679816,4687681,4663781,4687292,4697219,4702099,4728952,4759110,4757637,4757132,4768275,4726992,4713443,4769372,4781235,4789755,4809651,4811917,4819282,4809791,4883090,4910873,4945029,5003331,5039220,5050887,5067789,5199807,5279693,5345842,5411653,5475175,5504087,5505217,5601826,5662384,5669623,5683682,5747891,5770181,5796144,5850794,5863682,5842532,5852562,5857944,5860225,5847780,5890757,5907965,5911725,5933744,5952398,5948237,5981076,6092412,6124414,6125404,6131730,6188517,6172945,6201367,6365398,6471346,6521260,6606766,6699072,6713869,6750407,6947500,7101253,7188136,7306697,7385711,7430038,7480576,7620853,7734420,7854283,7952332,7984636,7963048,7968770,8089168,8127367,8127782,8076117,7957873,7809919,7715204,7668891,7554531,7385986,7267592,7129869,6989801,6890395,6832871,6692217,6553184,6434718,6278115,6122753,6018774,5979545,5871465,5768582,5595338,5456134,5338745,5262229,5222205,5086847,4965637,4862064,4824509,4824707,4837453,4920268,4932004,4904048,4899285,4870722,4840093,4811093,4847656,4877638,4857741,4828832,4814347,4811649,4813794,4874781,4885545,4874339,4849564,4848101,4800705,4755534,4777495,4796155,4775523,4733087,4701883,4639818,4601239,4598546,4564484,4561312,4539332,4516373,4468441,4433087,4459559,4467134,4457921,4481193,4480236,4460857,4436061,4459819,4435304,4396980,4373913,4345789,4312454,4292749,4344809,4357509,4379104,4441121,4457028,4454429,4434965,4432830,4466986,4478143,4468685,4460457,4430864,4407147,4439742,4488348,4474743,4466827,4424066,4380319,4337450,4349829,4339425,4344092,4346411,4344366,4335141,4316360,4361380,4358128,4350418,4313041,4253563,4220899,4174681,4253318,4322420,4334516,4335670,4348024,4352537,4349536,4426753,4430356,4382183,4357735,4316205,4299522,4270363,4320163,4305179,4283074,4259559,4256347,4238313,4200796,4219649,4187348,4170128,4149821,4105072,4062021,4020546,4046741,4014869,3971182,3917149,3864631,3817267,3759536,3770454,3727021,3722745,3724739,3732708,3731292,3714017,3762898,3745611,3760053,3770025,3753241,3728255,3697384,3718850,3718265,3752854,3782987,3763381,3767303,3741239,3797682,3815489,3797442,3803549,3812278,3834844,3824321,3873654,3880543,3883276,3876192,3857119,3840786,3808115,3834012,3843145,3844363,3840088,3816994,3798810,3763442,3778861,3767904,3758904,3733152,3688869,3681890,3644918,3656263,3608371,3568303,3540514,3516279,3485679,3437232,3434486,3425297,3405577,3399546,3393305,3392949,3365367,3424314,3436709,3494889,3502712,3525047,3544705,3549870,3584704,3593421,3614356,3614380,3621765,3635832,3629087,3716354,3774932,3833889,3869902,3899570,3924618,3924291,3988434,4035844,4085426,4148212,4199880,4220486,4216730,4295899,4294879,4318234,4262019,4269740,4260386,4259974,4316080,4362258,4388672,4405333,4404125,4379316,4340307,4371394,4333909,4319784,4301606,4286933,4276716,4246231,4293032,4267611,4254699,4225968,4212658,4172031,4135995,4157675,4185158,4172228,4149918,4144116,4104641,4058596,4100347,4096456,4121322,4111473,4102001,4096508,4070237,4113195,4117668,4127866,4112070,4101258,4094184,4086924,4106905,4098516,4121173,4143525,4129453,4098585,4059391,4104637,4101421,4029117,4017433,3977852,3944942,3937152,3955170,3895709,3890674,3838255,3831745,3816189,3797391,3841400,3826246,3819693,3820161,3794259,3767847,3720872,3710942,3679970,3640835,3589289,3522739,3486318,3423642,3442702,3385580,3351282,3311469,3277831,3261430,3212094,3198558,3178976,3161472,3104428,3057254,3027398,2974970,2986782,2949563,2916947,2873386,2819192,2807545,2773496,2782775,2768889,2753688,2743090,2748791,2760480,2740205,2762242,2737834,2729159,2722194,2733251,2747359,2726294,2746889,2750210,2736539,2727655,2728549,2740604,2720629,2756993,2755918,2761501,2767111,2768903,2770956,2742423,2753367,2753872,2749435,2749319,2741257,2724128,2686596,2717731,2729080,2735571,2740387,2737020,2729454,2691935,2704232,2700571,2706399,2743425,2755495,2749579,2716017,2732816,2724470,2722997,2713266,2707223,2704500,2678436,2713603,2722706,2721571,2723083,2713668,2709530,2679415,2714496,2684775,2669311,2677019,2685766,2699001,2687915,2722812,2749462,2769829,2767033,2748566,2766161,2746015,2780087,2804881,2793271,2780697,2756197,2735541,2682883,2686326,2650621,2631720,2612916,2590734,2580299,2539432,2560961,2521738,2505849,2476676,2431574,2397461,2337292,2319674,2285303,2242394,2202644,2171926,2133252,2057783,2056609,2022538,1987088,1973408,1944401,1948936,1925732,1955862,1959171,1974335,1972042,1964290,1958144,1926151,1952355,1954941,1948338,1949150,1956568,1970524,1950065,1976771,1982479,1983216,1982904,1993470,2001911,1988304,2023724,2025876,2025116,2013044,2014448,2026445,2005699,2035322,2047680,2050591,2038142,2047188,2064997,2054295,2095692,2104067,2093704,2118255,2124050,2133539,2113433,2155590,2164834,2173079,2179119,2180322,2181928,2158728,2191176,2188756,2200566,2213515,2215693,2222932,2201412,2232529,2231574,2225569,2219635,2228280,2227122,2194609,2223681,2210149,2192619,2185855,2167280,2176990,2143700,2152888,2134452,2131108,2118794,2104205,2105478,2072975,2094318,2096138,2090729,2070594,2055232,2054916,2018472,2035243,2033945,2043203,2026873,2015816,2003595,1974411,2003229,1992761,1999850,2009115,2000508,1998605,1958879,1976287,1980146,1986534,1966907,1955748,1958662,1928543,1945468,1917488,1891806,1876487,1863143,1868265,1840133,1849230,1836559,1832643,1809334,1809540,1814329,1785032,1817043,1813562,1815111,1807438,1803998,1821507,1804820,1824201,1831174,1835242,1828699,1833851,1849914,1836298,1880933,1890572,1915587,1920518,1927077,1946550,1930706,1953765,1981145,2000134,1999020,2006484,2012611,1998630,2041485,2037408,2027790,2030727,2022670,2020780,1999718,2009243,2019310,2017923,2005720,1994501,1992810,1961074,1979115,1949651,1942457,1932325,1935425,1935109,1910943,1921536,1930912,1935935,1929890,1935137,1932466,1916754,1943899,1932703,1925978,1937281,1941214,1951079,1932378,1984669,1989412,2013625,2029811,2040564,2044884,2034548,2090405,2092505,2105145,2105139,2096371,2085375,2069432,2112041,2138022,2168548,2173608,2188139,2179949,2161347,2213532,2222049,2228123,2256031,2272056,2269229,2244639,2305837,2298086,2338655,2329726,2333096,2349416,2358475,2423506,2430353,2452428,2474858,2531153,2572371,2605965,2671074,2678960,2680018,2671389,2690752,2699947,2716192,2802841,2807236,2819482,2829482,2808959,2798979,2776577,2815609,2794248,2790537,2782878,2781831,2773312,2757571,2802323,2830108,2856119,2874059,2902549,2912888,2931457,2933501,2918164,2939122,2958865,2961864,2958292,2931347,2952998,2938895,2954028,2965648,2983574,3012938,3010066,3059886,3078750,3085906,3082637,3082097,3099282,3095876,3135648,3134467,3085066,3045984,3029048,3003458,2939935,2900768,2834334,2746179,2631488,2557903,2547104,2512465,2564426,2541936,2532804,2498557,2495048,2480519,2445807,2470441,2445259,2426470,2384759,2379437,2342736,2285129,2343309,2308688,2311168,2293893,2300285,2277768,2244335,2276561,2291530,2356982,2419250,2509060,2535975,2496685,2530720,2484066,2473417,2431991,2425416,2380326,2337493,2341180,2310908,2299483,2281726,2293242,2261829,2251245,2275230,2208833,2202748,2156014,2154729,2125749,2109228,2109518,2074272,2051851,2027152,2033558,2001726,1993504,2018304,1991059,1979225,1970887,1960207,1930262,1915778,1928327,1935454,1936914,1936700],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=2\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"2","line":{"color":"#19d3f3","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"2","showlegend":true,"x":["2020-10-19T00:00:00","2020-10-20T00:00:00","2020-10-21T00:00:00","2020-10-22T00:00:00","2020-10-23T00:00:00","2020-10-24T00:00:00","2020-10-25T00:00:00","2020-10-26T00:00:00","2020-10-27T00:00:00","2020-10-28T00:00:00","2020-10-29T00:00:00","2020-10-30T00:00:00","2020-10-31T00:00:00","2020-11-01T00:00:00","2020-11-02T00:00:00","2020-11-03T00:00:00","2020-11-04T00:00:00","2020-11-05T00:00:00","2020-11-06T00:00:00","2020-11-07T00:00:00","2020-11-08T00:00:00","2020-11-09T00:00:00","2020-11-10T00:00:00","2020-11-11T00:00:00","2020-11-12T00:00:00","2020-11-13T00:00:00","2020-11-14T00:00:00","2020-11-15T00:00:00","2020-11-16T00:00:00","2020-11-17T00:00:00","2020-11-18T00:00:00","2020-11-19T00:00:00","2020-11-20T00:00:00","2020-11-21T00:00:00","2020-11-22T00:00:00","2020-11-23T00:00:00","2020-11-24T00:00:00","2020-11-25T00:00:00","2020-11-26T00:00:00","2020-11-27T00:00:00","2020-11-28T00:00:00","2020-11-29T00:00:00","2020-11-30T00:00:00","2020-12-01T00:00:00","2020-12-02T00:00:00","2020-12-03T00:00:00","2020-12-04T00:00:00","2020-12-05T00:00:00","2020-12-06T00:00:00","2020-12-07T00:00:00","2020-12-08T00:00:00","2020-12-09T00:00:00","2020-12-10T00:00:00","2020-12-11T00:00:00","2020-12-12T00:00:00","2020-12-13T00:00:00","2020-12-14T00:00:00","2020-12-15T00:00:00","2020-12-16T00:00:00","2020-12-17T00:00:00","2020-12-18T00:00:00","2020-12-19T00:00:00","2020-12-20T00:00:00","2020-12-21T00:00:00","2020-12-22T00:00:00","2020-12-23T00:00:00","2020-12-24T00:00:00","2020-12-25T00:00:00","2020-12-26T00:00:00","2020-12-27T00:00:00","2020-12-28T00:00:00","2020-12-29T00:00:00","2020-12-30T00:00:00","2020-12-31T00:00:00","2021-01-01T00:00:00","2021-01-02T00:00:00","2021-01-03T00:00:00","2021-01-04T00:00:00","2021-01-05T00:00:00","2021-01-06T00:00:00","2021-01-07T00:00:00","2021-01-08T00:00:00","2021-01-09T00:00:00","2021-01-10T00:00:00","2021-01-11T00:00:00","2021-01-12T00:00:00","2021-01-13T00:00:00","2021-01-14T00:00:00","2021-01-15T00:00:00","2021-01-16T00:00:00","2021-01-17T00:00:00","2021-01-18T00:00:00","2021-01-19T00:00:00","2021-01-20T00:00:00","2021-01-21T00:00:00","2021-01-22T00:00:00","2021-01-23T00:00:00","2021-01-24T00:00:00","2021-01-25T00:00:00","2021-01-26T00:00:00","2021-01-27T00:00:00","2021-01-28T00:00:00","2021-01-29T00:00:00","2021-01-30T00:00:00","2021-01-31T00:00:00","2021-02-01T00:00:00","2021-02-02T00:00:00","2021-02-03T00:00:00","2021-02-04T00:00:00","2021-02-05T00:00:00","2021-02-06T00:00:00","2021-02-07T00:00:00","2021-02-08T00:00:00","2021-02-09T00:00:00","2021-02-10T00:00:00","2021-02-11T00:00:00","2021-02-12T00:00:00","2021-02-13T00:00:00","2021-02-14T00:00:00","2021-02-15T00:00:00","2021-02-16T00:00:00","2021-02-17T00:00:00","2021-02-18T00:00:00","2021-02-19T00:00:00","2021-02-20T00:00:00","2021-02-21T00:00:00","2021-02-22T00:00:00","2021-02-23T00:00:00","2021-02-24T00:00:00","2021-02-25T00:00:00","2021-02-26T00:00:00","2021-02-27T00:00:00","2021-02-28T00:00:00","2021-03-01T00:00:00","2021-03-02T00:00:00","2021-03-03T00:00:00","2021-03-04T00:00:00","2021-03-05T00:00:00","2021-03-06T00:00:00","2021-03-07T00:00:00","2021-03-08T00:00:00","2021-03-09T00:00:00","2021-03-10T00:00:00","2021-03-11T00:00:00","2021-03-12T00:00:00","2021-03-13T00:00:00","2021-03-14T00:00:00","2021-03-15T00:00:00","2021-03-16T00:00:00","2021-03-17T00:00:00","2021-03-18T00:00:00","2021-03-19T00:00:00","2021-03-20T00:00:00","2021-03-21T00:00:00","2021-03-22T00:00:00","2021-03-23T00:00:00","2021-03-24T00:00:00","2021-03-25T00:00:00","2021-03-26T00:00:00","2021-03-27T00:00:00","2021-03-28T00:00:00","2021-03-29T00:00:00","2021-03-30T00:00:00","2021-03-31T00:00:00","2021-04-01T00:00:00","2021-04-02T00:00:00","2021-04-03T00:00:00","2021-04-04T00:00:00","2021-04-05T00:00:00","2021-04-06T00:00:00","2021-04-07T00:00:00","2021-04-08T00:00:00","2021-04-09T00:00:00","2021-04-10T00:00:00","2021-04-11T00:00:00","2021-04-12T00:00:00","2021-04-13T00:00:00","2021-04-14T00:00:00","2021-04-15T00:00:00","2021-04-16T00:00:00","2021-04-17T00:00:00","2021-04-18T00:00:00","2021-04-19T00:00:00","2021-04-20T00:00:00","2021-04-21T00:00:00","2021-04-22T00:00:00","2021-04-23T00:00:00","2021-04-24T00:00:00","2021-04-25T00:00:00","2021-04-26T00:00:00","2021-04-27T00:00:00","2021-04-28T00:00:00","2021-04-29T00:00:00","2021-04-30T00:00:00","2021-05-01T00:00:00","2021-05-02T00:00:00","2021-05-03T00:00:00","2021-05-04T00:00:00","2021-05-05T00:00:00","2021-05-06T00:00:00","2021-05-07T00:00:00","2021-05-08T00:00:00","2021-05-09T00:00:00","2021-05-10T00:00:00","2021-05-11T00:00:00","2021-05-12T00:00:00","2021-05-13T00:00:00","2021-05-14T00:00:00","2021-05-15T00:00:00","2021-05-16T00:00:00","2021-05-17T00:00:00","2021-05-18T00:00:00","2021-05-19T00:00:00","2021-05-20T00:00:00","2021-05-21T00:00:00","2021-05-22T00:00:00","2021-05-23T00:00:00","2021-05-24T00:00:00","2021-05-25T00:00:00","2021-05-26T00:00:00","2021-05-27T00:00:00","2021-05-28T00:00:00","2021-05-29T00:00:00","2021-05-30T00:00:00","2021-05-31T00:00:00","2021-06-01T00:00:00","2021-06-02T00:00:00","2021-06-03T00:00:00","2021-06-04T00:00:00","2021-06-05T00:00:00","2021-06-06T00:00:00","2021-06-07T00:00:00","2021-06-08T00:00:00","2021-06-09T00:00:00","2021-06-10T00:00:00","2021-06-11T00:00:00","2021-06-12T00:00:00","2021-06-13T00:00:00","2021-06-14T00:00:00","2021-06-15T00:00:00","2021-06-16T00:00:00","2021-06-17T00:00:00","2021-06-18T00:00:00","2021-06-19T00:00:00","2021-06-20T00:00:00","2021-06-21T00:00:00","2021-06-22T00:00:00","2021-06-23T00:00:00","2021-06-24T00:00:00","2021-06-25T00:00:00","2021-06-26T00:00:00","2021-06-27T00:00:00","2021-06-28T00:00:00","2021-06-29T00:00:00","2021-06-30T00:00:00","2021-07-01T00:00:00","2021-07-02T00:00:00","2021-07-03T00:00:00","2021-07-04T00:00:00","2021-07-05T00:00:00","2021-07-06T00:00:00","2021-07-07T00:00:00","2021-07-08T00:00:00","2021-07-09T00:00:00","2021-07-10T00:00:00","2021-07-11T00:00:00","2021-07-12T00:00:00","2021-07-13T00:00:00","2021-07-14T00:00:00","2021-07-15T00:00:00","2021-07-16T00:00:00","2021-07-17T00:00:00","2021-07-18T00:00:00","2021-07-19T00:00:00","2021-07-20T00:00:00","2021-07-21T00:00:00","2021-07-22T00:00:00","2021-07-23T00:00:00","2021-07-24T00:00:00","2021-07-25T00:00:00","2021-07-26T00:00:00","2021-07-27T00:00:00","2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-30T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-12T00:00:00","2021-08-13T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-17T00:00:00","2021-08-18T00:00:00","2021-08-19T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-22T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-25T00:00:00","2021-08-26T00:00:00","2021-08-27T00:00:00","2021-08-28T00:00:00","2021-08-29T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-06T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-10T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-13T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-18T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-24T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-05T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[12425,103581,191322,276989,359134,414890,468434,557990,659569,753099,849282,939753,992947,1056222,1156681,1259002,1362113,1459475,1551633,1621734,1680325,1782885,1892316,1999607,2109116,2200149,2261743,2321229,2413586,2515017,2543301,2568993,2582857,2567300,2577460,2632131,2659272,2666126,2669877,2674298,2677280,2710564,2774228,2801988,2827256,2859817,2901620,2918343,2942154,3025682,3070666,3108240,3141693,3174848,3182597,3209490,3273928,3318984,3341194,3347691,3358852,3345491,3358675,3411642,3425337,3425440,3417945,3402462,3379846,3363927,3384005,3364497,3340028,3310603,3256597,3192545,3160135,3189719,3184992,3170880,3157938,3154220,3103366,3101135,3151493,3174720,3195091,3236349,3266982,3253719,3278383,3347371,3389407,3438381,3494294,3560137,3603578,3644480,3749114,3745416,3744068,3769831,3788838,3796626,3810339,3869217,3853538,3824864,3773338,3709639,3634781,3605017,3593368,3530871,3462160,3400889,3324863,3265084,3250123,3243296,3216457,3197072,3161254,3121001,3068285,3055371,3069138,3023453,3055553,3085128,3078819,3058852,3072892,3107010,3119648,3156679,3207959,3265627,3306372,3369004,3443813,3508610,3589326,3655518,3710319,3725957,3747133,3799908,3847064,3896208,3911185,3931079,3914578,3927184,3982867,4010406,4034930,4091527,4145001,4176944,4225436,4308919,4378416,4420497,4457060,4456223,4462843,4496792,4524552,4568127,4596399,4638757,4659998,4638248,4656444,4716980,4727088,4729312,4710917,4714755,4680253,4690343,4719644,4722710,4736614,4755206,4748264,4710487,4705100,4744950,4773040,5111047,5551964,5940295,6119551,6431465,6637775,6667385,6673865,6670509,6633347,6607359,6614722,6654953,6642464,6654127,6657739,6652622,6622862,6628433,6649631,6648346,6633353,6624810,6620268,6576150,6564198,6586597,6576850,6553137,6207875,5751997,5345500,5169496,4898661,4746072,4743141,4753257,4771133,4779472,4804668,4866349,4897659,4944369,4985513,5028913,5044169,5087030,5165830,5223873,5240825,5261068,5258053,5211960,5228502,5253512,5247624,5273502,5231746,5196640,5136792,5091502,5085535,5102848,5131033,5145201,5133754,5085786,5046738,5052823,5033079,5030213,5013468,4994430,4960431,4944146,4969409,4999983,5071185,5296451,5605115,5793654,5928940,6054467,6159872,6227580,6271915,6348026,6365937,6388429,6491514,6558054,6577161,6581926,6610440,6573267,6575997,6654740,6702105,6744061,6768371,6796417,6770565,6774307,6851976,6897314,6925414,6899720,6724144,6388373,6185593,6129440,6077773,6026148,6017610,6004158,5928741,5917072,5995715,6008716,6019097,5994255,5936127,5861374,5853164,5876877,5835126,5800505,5737239,5665844,5558950,5524354,5498809,5441772,5377795,5295241,5222709,5127693,5097620,5117288,5093220,5037609,4994812,4943202,4830868,4836764,4859108,4819944,4757071,4700676,4683434,4647397,4645513,4699091,4720814,4751444,4781235,4818195,4788063,4801413,4838468,4880507,4938943,4941054,4948635,4916741,4952702,5023229,5044576,5071160,5085004,5085660,5067911,5100386,5133959,5149554,5172928,5192262,5188531,5132138,5126203,5153027,5150801,5154913,5173474,5162368,5116608,5145800,5203365,5240604,5255858,5223529,5229657,5177506,5179543,5200795,5217099,5224115,5209974,5217194,5213076,5223309,5272995,5305744,5325408,5336967,5351599,5343815,5385063,5472965,5509714,5520955,5527160,5484855,5437855,5453240,5489566,5528416,5543499,5570496,5597904,5587359,5619822,5695839,5720057,5761568,5805599,5866141,5856327,5873299,5951764,5986124,6002485,5999720,6005520,6004129,6061719,6174503,6208485,6203640,6199518,6170108,6168054,6177097,6190346,6184955,6146309,6102991,6032878,5976919,5959937,5989900,5978059,5984543,5973433,5964252,5928630,5947171,5981463,5999765,5987089,5995507,6006409,5962791,5933263,5916216,5858521,6464483,7051413,7848501,8533407,9005004,9484090,10075314,10731500,11333960,12101079,12747016,13234934,13692551,14370897,15169427,15759448,16361150,17003613,17451497,17971006,18532985,19189724,19737693,20288977,21226070,21741942,22235099,22869772,23610473,23581056,23766332,23559413,23402800,23447961,23542337,23538821,23623421,23819134,23553672,23398526,23370221,23936987,24178026,23978372,23620652,23056208,22422538,22014767,21567095,21092233,20470310,20008479,19423599,18504595,18115554,17734103,17202957,16587572,16091902,15428598,14938473,14577823,14206373,13751211,13276260,12605727,11857439,11407217,11016541,10654834,9740526,8881484,8329067,8110272,8074030,8090619,8081966,8072529,8050890,8018395,7920257,7911854,7915875,7878811,7839499,7772327,7705961,7623804,7604036,7632650,7602084,7589754,7573843,7576277,7622601,7596611,7665700,7733921,7781743,7799975,7854068,7825721,7858441,7934144,8000608,8041060,8069904,8279723,8241892,8282696,8437339,8549225,8638476,8683982,8755332,8717033,8728985,8720320,8685967,8683780,8665032,8665902,8625264,8549306,8586623,8559855,8504667,8459680,8427432,8322653,8307900,8290167,8223795,8182998,8148482,8106043,7840230,7834712,7839243,7745016,7658461,7576213,7546796,7443493,7413183,7401489,7382119,7345864,7294041,7264040,7199582,7159189,7174874,7174856,7175246,7167473,7150585,7104578,7102357,7193052,7325949,7820197,8258039,8590611,8878017,9183585,9546985,9928896,10301728,10635512,11032906,11384997,11794082,12189074,12586842,13012476,13394693,13726347,14061221,14502097,14951737,15442562,15986493,16523103,17061524,17524805,17971343,18490734,18899664,19292977,19388560,19474909,19556944,19662194,19763539,19831607,19870274,19903448,19992239,20044763,20108442,20093726,20110421,20098750,20138199,20155987,20044757,19940072,19802889,19623975,19413910,19124110,18964850,18613862,18338002,18201722,17887332,17668317,17687210,17632597,17789457,17600951,17514910,17466124,17522420,17656302,17979294,18588787,19023266,19496965,19826273,20019090,19635650,19140370,18680212,18398478,18154126,17896000,17679926,17384686,17124641,16675101,16420604,16224424,15961004,15825311,15585435,15042309,14457466,13685155,13441388,13135331,12799806,12343936,11770331,10984690,9879811,8971112,8072237,7404148,6843094,6834353,6800082,6799390,6832955,6832960,6850532,6832074,6840496,6792129,6789264,6861126,6871029,6878888,6863663,6851026,6798575,6781553,6821893,6811893,6802240,6780525,6742856,6680803,6645789,6691626,6674433,6651373,6611724,6593540,6577064,6585627,6645888,6668589,6667301,6647158,6629344,6583539,6571906,6615701,6621729,6645696,6634738,6625226,6570483,6562272,6626851,6642517,6666993,6644043,6615966,6583531,6585027,6651336,6649293,6669498,6680607,6682903,6643377,6592753,6629066,6621327,6626885,6641835,6631355,6599591,6599460,6667533,6677120,6679898,6660572,6663255,6625393,6635919,6708510,6710991,6716885,6716465,6708689,6694139,6685570,6720010,6697765,6696943,6656737,6658537,6621264,6610055,6641960,6621241,6622293,6593751,6557595,6506756,6484683,6525020,6502563,6496473,6448330,6422438,6347199,6320768,6340348,6309344,6296716,6279339,6249421,6215859,6199739,6270238,6299981,6307906,6288974,6308115,6251999,6248342,6295237,6320716,6321927,6303419,6306927,6289490,6282180,6340340,6343788,6340386,6338854,6341383,6299425,6303072,6360587,6384201,6381088,6387303,6385674,6347739,6349005,6397378,6396118,6387356,6397802,6401819,6358884,6355206,6401840,6404104,6400032,6395431,6395209,6351216,6329230,6377573,6365481,6348905,6346064,6316869,6261059,6245363,6279201,6268863,6256789,6262984,6229739,6178759,6157973,6192383,6190523,6155176,6142261,6112456,6060357,6045869,6087440,6067886,6044626,6016344,5984875,5923882,5895045,5913606,5906001,5887013,5859292,5817304,5758511,5733943,5745719,5706293,5655200,5619241,5581459,5533876,5502303,5537155,5517502,5505507,5507702,5481241,5434756,5415475,5440319,5414050,5399270,5385096,5374338,5346620,5328840,5364842,5364679,5377876,5377000,5382870,5359532,5363614,5420824,5457730,5514812,5530064,5526800,5489847,5478629,5523191,5515995,5508039,5487076,5462802,5427313,5412194,5451996,5451880,5443963,5435918,5421538,5380592,5364139,5379160,5363407,5362087,5325282,5303228,5259974,5245127,5282006,5264080,5240791,5201180,5202576,5166546,5165742,5213008,5211241,5208737,5230337,5263522,5279071,5268930,5309241,5340727,5339524,5358837,5354905,5334745,5337117,5420955,5460081,5474440,5460688,5449069,5421233,5413242,5451326,5444320,5468846,5680827,5698598,5667956,5672731,5722265,5724882,5730932,5738282,5740688,5700464,5672905,5725373,5734110,5695295,5688401,5664690,5632172,5616388,5657372,5623897,5615558,5615401,5623833,5588722,5581547,5622949,5643418,5659666,5641591,5426090,5358441,5333995,5366668,5357992,5337880,5323295,5304152,5242750,5213130,5233899,5220802,5214434,5209538,5211270,5173215,5160444,5201815,5199566,5199305,5188918,5182337,5137581,5126885,5165910,5168760,5149465,5124302,5106744,5055639,5044005,5076342,5059914,5052243,5073854,5071236,5040463,5045189,5101010,5113090,5130440,5140646,5156366,5124742,5126248,5170832,5178316,5192213,5195915,5209951,5183430,5182383,5240696,5261082,5272105,5284236,5291291,5260635,5271933,5324834,5341465,5357218,5361954,5355212,5326418,5344128,5380052,5365932,5352651,5343537,5337237,5284532,5274735,5323166,5332950,5338615,5325898,5322677,5274415,5272081,5324117,5316010,5300413,5289856,5277318,5242297,5243581,5281579,5283027,5267042,5253132,5254881,5219135,5214252,5247426,5248355,5233890,5222607,5214380,5172107,5175966,5215610,5201859,5187094,5169378,5154194,5109751,5102291,5135125,5117466,5102492,5070357,5040421,4999584,4983462,5004606,4990504,4973463,4966841,4952645,4898310,4875022,4894716,4864408,4842948,4828000,4809270,4759448,4743127,4766352,4751900,4740380,4729554,4703520,4659068,4636431,4665222,4638785,4619729,4606185,4601503,4574760,4562356,4569265,4541560,4526515,4506293,4484387,4454684,4445361,4456155,4445853,4437122,4434923,4432720,4402726,4395900,4437325,4433057,4443301,4455088,4454771,4435265,4429816,4467999,4456145,4453920,4455116,4455577,4441348,4438519,4480418,4515068,4543308,4555711,4560447,4552423,4554834,4604319,4631375,4640613,4655710,4658677,4646211,4654057,4708152,4713321,4728915,4724653,4724539,4710234,4715957,4770919,4789667,4811819,4836395,4844290,4843171,4845452,4892521,4899317,4903944,4907872,4921281,4916802,4923688,4971963,4979709,4993926,5012691,5036951,5016954,5012928,5059336,5075950,5075173,5086383,5090418,5058472,5052808,5098038,5078829,5081656,5092757,5092792,5082363,5084240,5143306,5168437,5187478,5209573,5228056,5193935,5192360,5240674,5256672,5261489,5266293,5262721,5222202,5223275,5284953,5285718,5278156,5303888,5297973,5275361,5278985,5337187,5337268,5382660,5398195,5396155,5381909,5380282,5444719,5460083,5456779,5458303,5459696,5432182,5439949,5536447,5564096,5575300,5596690,5602636,5586453,5587953,5670069,5672038,5695162,5719830,5712098,5686061,5682753,5756383,5774398,5806181,5813654,5821910,5794591,5783514,5862226,5872436,5903289,5933516,5945942,5904194,5897508,5986805,5958106,5939661,5935251,5918292,5879220,5866505,5916460,5891819,5895681,5885455,5863048,5832651,5829725,5909203,5901239,5886629,5875419,5878211,5829174,5819582,5898957,5884303,5854449,5815635,5802026,5765898,5758779,5804425,5623235,5424903,5229710,5110341,5093645,5103801,5191799,5194949,5200907,5201904,5206699,5179642,5176458,5261073,5233889,5221895,5199948,5188325,5135234,5135831,5235638,5209434,5194685,5237463,5272289,5260947,5288604,5410595,5446212,5625771,5848845,6081828,6212271,6248638,6369364,6380206,6415850,6456214,6485847,6463564,6459133,6534464,6500992,6489145,6485702,6494243,6470419,6471143,6547660,6528048,6533980,6534302,6490141,6422459,6387460,6425458,6360921,6326176,6276335,6250840,6199388,6168119,6222683,6169796,6140353,6113166,6082904,6036898,6043142,6131080,6113408,6141730,6183268],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=1\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"1","line":{"color":"#FF6692","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"1","showlegend":true,"x":["2020-07-24T00:00:00","2020-07-25T00:00:00","2020-07-26T00:00:00","2020-07-27T00:00:00","2020-07-28T00:00:00","2020-07-29T00:00:00","2020-07-30T00:00:00","2020-07-31T00:00:00","2020-08-01T00:00:00","2020-08-02T00:00:00","2020-08-03T00:00:00","2020-08-04T00:00:00","2020-08-05T00:00:00","2020-08-06T00:00:00","2020-08-07T00:00:00","2020-08-08T00:00:00","2020-08-09T00:00:00","2020-08-10T00:00:00","2020-08-11T00:00:00","2020-08-12T00:00:00","2020-08-13T00:00:00","2020-08-14T00:00:00","2020-08-15T00:00:00","2020-08-16T00:00:00","2020-08-17T00:00:00","2020-08-18T00:00:00","2020-08-19T00:00:00","2020-08-20T00:00:00","2020-08-21T00:00:00","2020-08-22T00:00:00","2020-08-23T00:00:00","2020-08-24T00:00:00","2020-08-25T00:00:00","2020-08-26T00:00:00","2020-08-27T00:00:00","2020-08-28T00:00:00","2020-08-29T00:00:00","2020-08-30T00:00:00","2020-08-31T00:00:00","2020-09-01T00:00:00","2020-09-02T00:00:00","2020-09-03T00:00:00","2020-09-04T00:00:00","2020-09-05T00:00:00","2020-09-06T00:00:00","2020-09-07T00:00:00","2020-09-08T00:00:00","2020-09-09T00:00:00","2020-09-10T00:00:00","2020-09-11T00:00:00","2020-09-12T00:00:00","2020-09-13T00:00:00","2020-09-14T00:00:00","2020-09-15T00:00:00","2020-09-16T00:00:00","2020-09-17T00:00:00","2020-09-18T00:00:00","2020-09-19T00:00:00","2020-09-20T00:00:00","2020-09-21T00:00:00","2020-09-22T00:00:00","2020-09-23T00:00:00","2020-09-24T00:00:00","2020-09-25T00:00:00","2020-09-26T00:00:00","2020-09-27T00:00:00","2020-09-28T00:00:00","2020-09-29T00:00:00","2020-09-30T00:00:00","2020-10-01T00:00:00","2020-10-02T00:00:00","2020-10-03T00:00:00","2020-10-04T00:00:00","2020-10-05T00:00:00","2020-10-06T00:00:00","2020-10-07T00:00:00","2020-10-08T00:00:00","2020-10-09T00:00:00","2020-10-10T00:00:00","2020-10-11T00:00:00","2020-10-12T00:00:00","2020-10-13T00:00:00","2020-10-14T00:00:00","2020-10-15T00:00:00","2020-10-16T00:00:00","2020-10-17T00:00:00","2020-10-18T00:00:00","2020-10-19T00:00:00","2020-10-20T00:00:00","2020-10-21T00:00:00","2020-10-22T00:00:00","2020-10-23T00:00:00","2020-10-24T00:00:00","2020-10-25T00:00:00","2020-10-26T00:00:00","2020-10-27T00:00:00","2020-10-28T00:00:00","2020-10-29T00:00:00","2020-10-30T00:00:00","2020-10-31T00:00:00","2020-11-01T00:00:00","2020-11-02T00:00:00","2020-11-03T00:00:00","2020-11-04T00:00:00","2020-11-05T00:00:00","2020-11-06T00:00:00","2020-11-07T00:00:00","2020-11-08T00:00:00","2020-11-09T00:00:00","2020-11-10T00:00:00","2020-11-11T00:00:00","2020-11-12T00:00:00","2020-11-13T00:00:00","2020-11-14T00:00:00","2020-11-15T00:00:00","2020-11-16T00:00:00","2020-11-17T00:00:00","2020-11-18T00:00:00","2020-11-19T00:00:00","2020-11-20T00:00:00","2020-11-21T00:00:00","2020-11-22T00:00:00","2020-11-23T00:00:00","2020-11-24T00:00:00","2020-11-25T00:00:00","2020-11-26T00:00:00","2020-11-27T00:00:00","2020-11-28T00:00:00","2020-11-29T00:00:00","2020-11-30T00:00:00","2020-12-01T00:00:00","2020-12-02T00:00:00","2020-12-03T00:00:00","2020-12-04T00:00:00","2020-12-05T00:00:00","2020-12-06T00:00:00","2020-12-07T00:00:00","2020-12-08T00:00:00","2020-12-09T00:00:00","2020-12-10T00:00:00","2020-12-11T00:00:00","2020-12-12T00:00:00","2020-12-13T00:00:00","2020-12-14T00:00:00","2020-12-15T00:00:00","2020-12-16T00:00:00","2020-12-17T00:00:00","2020-12-18T00:00:00","2020-12-19T00:00:00","2020-12-20T00:00:00","2020-12-21T00:00:00","2020-12-22T00:00:00","2020-12-23T00:00:00","2020-12-24T00:00:00","2020-12-25T00:00:00","2020-12-26T00:00:00","2020-12-27T00:00:00","2020-12-28T00:00:00","2020-12-29T00:00:00","2020-12-30T00:00:00","2020-12-31T00:00:00","2021-01-01T00:00:00","2021-01-02T00:00:00","2021-01-03T00:00:00","2021-01-04T00:00:00","2021-01-05T00:00:00","2021-01-06T00:00:00","2021-01-07T00:00:00","2021-01-08T00:00:00","2021-01-09T00:00:00","2021-01-10T00:00:00","2021-01-11T00:00:00","2021-01-12T00:00:00","2021-01-13T00:00:00","2021-01-14T00:00:00","2021-01-15T00:00:00","2021-01-16T00:00:00","2021-01-17T00:00:00","2021-01-18T00:00:00","2021-01-19T00:00:00","2021-01-20T00:00:00","2021-01-21T00:00:00","2021-01-22T00:00:00","2021-01-23T00:00:00","2021-01-24T00:00:00","2021-01-25T00:00:00","2021-01-26T00:00:00","2021-01-27T00:00:00","2021-01-28T00:00:00","2021-01-29T00:00:00","2021-01-30T00:00:00","2021-01-31T00:00:00","2021-02-01T00:00:00","2021-02-02T00:00:00","2021-02-03T00:00:00","2021-02-04T00:00:00","2021-02-05T00:00:00","2021-02-06T00:00:00","2021-02-07T00:00:00","2021-02-08T00:00:00","2021-02-09T00:00:00","2021-02-10T00:00:00","2021-02-11T00:00:00","2021-02-12T00:00:00","2021-02-13T00:00:00","2021-02-14T00:00:00","2021-02-15T00:00:00","2021-02-16T00:00:00","2021-02-17T00:00:00","2021-02-18T00:00:00","2021-02-19T00:00:00","2021-02-20T00:00:00","2021-02-21T00:00:00","2021-02-22T00:00:00","2021-02-23T00:00:00","2021-02-24T00:00:00","2021-02-25T00:00:00","2021-02-26T00:00:00","2021-02-27T00:00:00","2021-02-28T00:00:00","2021-03-01T00:00:00","2021-03-02T00:00:00","2021-03-03T00:00:00","2021-03-04T00:00:00","2021-03-05T00:00:00","2021-03-06T00:00:00","2021-03-07T00:00:00","2021-03-08T00:00:00","2021-03-09T00:00:00","2021-03-10T00:00:00","2021-03-11T00:00:00","2021-03-12T00:00:00","2021-03-13T00:00:00","2021-03-14T00:00:00","2021-03-15T00:00:00","2021-03-16T00:00:00","2021-03-17T00:00:00","2021-03-18T00:00:00","2021-03-19T00:00:00","2021-03-20T00:00:00","2021-03-21T00:00:00","2021-03-22T00:00:00","2021-03-23T00:00:00","2021-03-24T00:00:00","2021-03-25T00:00:00","2021-03-26T00:00:00","2021-03-27T00:00:00","2021-03-28T00:00:00","2021-03-29T00:00:00","2021-03-30T00:00:00","2021-03-31T00:00:00","2021-04-01T00:00:00","2021-04-02T00:00:00","2021-04-03T00:00:00","2021-04-04T00:00:00","2021-04-05T00:00:00","2021-04-06T00:00:00","2021-04-07T00:00:00","2021-04-08T00:00:00","2021-04-09T00:00:00","2021-04-10T00:00:00","2021-04-11T00:00:00","2021-04-12T00:00:00","2021-04-13T00:00:00","2021-04-14T00:00:00","2021-04-15T00:00:00","2021-04-16T00:00:00","2021-04-17T00:00:00","2021-04-18T00:00:00","2021-04-19T00:00:00","2021-04-20T00:00:00","2021-04-21T00:00:00","2021-04-22T00:00:00","2021-04-23T00:00:00","2021-04-24T00:00:00","2021-04-25T00:00:00","2021-04-26T00:00:00","2021-04-27T00:00:00","2021-04-28T00:00:00","2021-04-29T00:00:00","2021-04-30T00:00:00","2021-05-01T00:00:00","2021-05-02T00:00:00","2021-05-03T00:00:00","2021-05-04T00:00:00","2021-05-05T00:00:00","2021-05-06T00:00:00","2021-05-07T00:00:00","2021-05-08T00:00:00","2021-05-09T00:00:00","2021-05-10T00:00:00","2021-05-11T00:00:00","2021-05-12T00:00:00","2021-05-13T00:00:00","2021-05-14T00:00:00","2021-05-15T00:00:00","2021-05-16T00:00:00","2021-05-17T00:00:00","2021-05-18T00:00:00","2021-05-19T00:00:00","2021-05-20T00:00:00","2021-05-21T00:00:00","2021-05-22T00:00:00","2021-05-23T00:00:00","2021-05-24T00:00:00","2021-05-25T00:00:00","2021-05-26T00:00:00","2021-05-27T00:00:00","2021-05-28T00:00:00","2021-05-29T00:00:00","2021-05-30T00:00:00","2021-05-31T00:00:00","2021-06-01T00:00:00","2021-06-02T00:00:00","2021-06-03T00:00:00","2021-06-04T00:00:00","2021-06-05T00:00:00","2021-06-06T00:00:00","2021-06-07T00:00:00","2021-06-08T00:00:00","2021-06-09T00:00:00","2021-06-10T00:00:00","2021-06-11T00:00:00","2021-06-12T00:00:00","2021-06-13T00:00:00","2021-06-14T00:00:00","2021-06-15T00:00:00","2021-06-16T00:00:00","2021-06-17T00:00:00","2021-06-18T00:00:00","2021-06-19T00:00:00","2021-06-20T00:00:00","2021-06-21T00:00:00","2021-06-22T00:00:00","2021-06-23T00:00:00","2021-06-24T00:00:00","2021-06-25T00:00:00","2021-06-26T00:00:00","2021-06-27T00:00:00","2021-06-28T00:00:00","2021-06-29T00:00:00","2021-06-30T00:00:00","2021-07-01T00:00:00","2021-07-02T00:00:00","2021-07-03T00:00:00","2021-07-04T00:00:00","2021-07-05T00:00:00","2021-07-06T00:00:00","2021-07-07T00:00:00","2021-07-08T00:00:00","2021-07-09T00:00:00","2021-07-10T00:00:00","2021-07-11T00:00:00","2021-07-12T00:00:00","2021-07-13T00:00:00","2021-07-14T00:00:00","2021-07-15T00:00:00","2021-07-16T00:00:00","2021-07-17T00:00:00","2021-07-18T00:00:00","2021-07-19T00:00:00","2021-07-20T00:00:00","2021-07-21T00:00:00","2021-07-22T00:00:00","2021-07-23T00:00:00","2021-07-24T00:00:00","2021-07-25T00:00:00","2021-07-26T00:00:00","2021-07-27T00:00:00","2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-30T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-12T00:00:00","2021-08-13T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-17T00:00:00","2021-08-18T00:00:00","2021-08-19T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-22T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-25T00:00:00","2021-08-26T00:00:00","2021-08-27T00:00:00","2021-08-28T00:00:00","2021-08-29T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-06T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-10T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-13T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-18T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-24T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-05T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[39170,94488,142482,228981,322704,415013,501139,578938,630856,678921,759784,841387,924613,1010145,1096982,1150196,1202163,1285104,1373443,1462601,1564334,1659192,1713718,1764700,1854991,1964403,2085418,2197810,2304690,2334885,2340395,2403249,2440900,2463220,2487119,2512585,2507324,2517615,2600842,2654267,2693988,2734154,2764860,2752389,2771077,2817808,2851498,2884755,2924781,2956705,2952128,2992969,3085289,3138331,3171570,3191963,3216561,3193756,3202434,3277390,3314985,3349266,3392019,3430638,3414144,3424407,3494526,3565930,3584195,3612944,3629756,3607400,3623296,3723624,3790003,3865079,3896365,3911121,3899597,3911192,3966815,3999098,4039585,4076651,4121458,4106147,4138278,4226670,4190776,4143081,4089995,4030421,3949673,3925967,3948023,3914966,3798665,3742607,3682579,3607966,3565711,3552281,3462057,3381217,3273633,3202683,3118099,3049162,3025004,2956582,2859970,2758829,2655509,2523436,2450411,2412075,2318039,2292617,2267365,2229961,2178289,2148942,2141841,2108002,2079160,2056255,2021061,1981623,1962084,1979459,1975273,1971075,1960665,1944781,1910503,1895584,1907840,1898006,1886775,1877206,1858359,1827113,1818546,1833269,1828909,1825290,1819504,1812300,1790606,1784793,1804742,1810627,1799665,1778236,1760079,1739142,1733786,1742909,1727620,1707389,1682809,1656304,1637960,1636526,1658232,1662560,1666701,1666948,1666373,1653059,1656014,1680624,1694700,1693431,1694368,1694531,1673308,1672735,1691549,1694564,1694385,1708394,1735903,1742473,1753633,1780943,1801646,1825082,1848289,1867682,1869187,1867395,1894249,1900991,1906197,1906432,1902331,1880906,1879230,1896500,1898507,1890514,1889032,1889540,1868749,1868188,1886746,1895723,1904323,1910998,1911612,1890342,1892878,1920619,1927766,1927997,1926433,1924556,1907039,1909953,1937761,1944208,1947864,1948656,1951426,1937865,1942432,1964952,1974580,1976372,1981794,1987082,1974193,1979024,2008269,2021101,2032136,2033091,2028524,2008611,2005405,2024223,2021812,2021314,2025529,2026484,2006092,2001031,2021256,2024654,2020731,2021267,2013174,1991037,1989984,2007108,2010116,2013282,2017304,2014360,1989796,1981747,2001271,2003159,2003403,2007095,2011561,1994336,1987351,2007178,2009101,2016540,2013828,2008923,1990828,2001048,2045526,2066893,2426424,2882191,3284380,3485148,3800167,3992430,4019552,4038001,4037330,4036139,4025498,4030282,4058649,4059659,4052448,4041801,4019430,3997658,4004228,4029851,4026760,4021750,4011959,4005515,3983058,3976768,3985114,3961615,3941797,3582989,3113778,2681157,2458802,2153230,1978507,1951676,1923120,1908253,1880545,1869017,1878439,1867725,1858969,1851892,1846094,1832996,1819490,1822312,1818258,1816189,1812640,1803001,1782585,1777615,1792640,1795592,1795059,1789042,1772317,1762612,1764852,1784323,1795918,1794660,1790209,1789380,1776654,1775189,1785351,1782818,1779914,1779642,1778831,1768469,1768292,1787513,1789000,1782549,1780119,1780093,1766804,1766349,1784639,1787388,1783440,1778807,1780660,1767667,1765707,1783097,1788047,1783536,1785316,1787156,1778083,1781511,1800512,1808337,1811247,1816096,1818389,1805598,1804534,1824169,1828374,1843223,1863455,1869234,1855831,1857009,1880049,1892924,1904098,1914363,1933342,1930752,1944404,1977325,2004831,2038881,2055307,2067231,2066115,2072271,2095785,2119797,2135098,2160593,2178531,2172690,2182132,2202111,2214205,2229009,2235827,2231364,2222215,2226206,2254725,2265025,2272083,2289381,2296718,2276222,2273830,2300424,2312986,2310497,2314987,2344518,2352632,2350804,2369889,2389913,2378872,2386772,2379401,2348174,2344645,2368704,2439283,2460633,2463863,2450100,2433150,2430306,2454606,2447425,2442251,2437464,2410844,2377650,2366748,2377244,2362428,2360299,2361611,2335999,2285798,2257472,2288944,2307223,2293217,2303866,2301749,2284471,2296409,2326328,2344826,2297484,2272006,2260090,2242259,2236833,2255682,2278148,2280027,2283643,2280323,2267941,2270076,2294463,2305502,2313414,2300520,2284285,2262413,2255931,2292416,2286453,2271469,2261124,2248191,2222781,2218120,2232888,2235000,2232428,2231598,2253270,2241695,2250977,2278529,2297376,2300304,2339768,2347616,2337316,2353513,2403903,2457546,2507813,2529673,2553047,2551980,2559751,2588671,2584286,2590115,2600984,2606563,2597659,2600895,2620241,2622731,2621933,2605694,2588175,2563060,2570861,2600584,2603450,2596577,2585528,2561168,2541366,2543121,2555554,2534831,2486952,2438691,2417772,2381368,2374045,2383303,2384114,2370239,2357816,2347363,2342008,2345649,2369870,2370022,2366108,2362012,2360638,2357754,2357687,2376368,2369668,2366168,2358060,2341016,2320098,2320017,2331170,2332039,2342302,2350343,2359814,2355165,2365627,2389048,2402518,2404064,2420431,2434147,2432479,2442564,2474144,2486277,2512022,2535257,2544680,2531408,2536488,2559093,2566312,2575901,2596599,2611353,2612284,2625260,2651633,2676474,2685963,2689873,2704824,2695639,2703469,2729897,2748142,2751704,2760688,2762413,2751939,2757121,2776190,2775690,2775455,2778220,2786709,2778593,2794163,2824430,2837061,2841994,2849081,2853674,2846981,2850554,2875809,2892039,2895737,2901237,2904019,2878555,2872801,2886332,2888161,2879493,2882400,2877391,2859693,2849360,2863231,2866038,2863567,2858066,2848248,2817085,2812554,2831077,2832394,2827950,2840831,2893527,2924878,2973740,3046652,3101294,3155556,3185164,3219602,3239523,3287160,3366836,3453713,3525011,3592571,3658035,3713037,3786424,3871909,3924564,3975540,4023426,4083920,4114057,4167328,4242197,4296162,4349541,4405943,4455106,4436275,4440560,4457817,4468515,4469823,4463994,4474497,4469074,4492204,4518102,4505299,4447459,4398467,4359391,4318463,4290131,4270503,4235777,4198184,4163301,4138028,4082478,4048768,4028411,3999379,3972721,3940778,3906157,3843240,3807673,3804124,3787856,3743806,3701994,3668057,3630422,3610270,3585043,3555053,3530521,3541339,3540810,3522362,3512123,3531227,3526476,3525798,3503828,3478175,3431757,3412145,3413181,3394801,3363815,3339578,3307377,3263697,3244251,3243292,3211434,3184819,3170372,3137509,3093097,3067121,3060354,3051106,3029219,3001956,2956243,2901973,2868760,2852929,2811692,2774889,2738355,2745158,2746719,2754477,2763410,2773395,2764243,2766473,2751892,2736828,2737471,2763960,2795081,2794129,2792593,2807161,2833561,2861466,2901587,2910730,2936804,2987668,3061948,3124525,3185392,3258628,3322641,3378293,3446140,3534990,3586096,3621507,3684438,3764091,3822872,3908317,3998392,4065727,4099313,4177900,4247119,4305285,4382970,4462513,4493720,4514354,4562275,4610467,4688215,4764417,4798065,4774222,4732627,4771559,4801184,4809936,4841252,4848590,4834130,4816598,4848520,4873682,4857159,4845076,4843073,4774513,4724023,4776856,4789410,4793628,4775096,4754706,4694121,4666546,4697833,4693776,4694774,4668838,4616859,4554749,4529924,4584445,4571584,4554860,4552932,4552201,4533352,4515190,4557310,4578416,4576817,4598476,4610684,4600585,4636893,4728969,4774631,4833978,4861163,4871537,4868750,4885145,4936850,4970267,5021617,5028066,5042714,5044741,5073493,5120154,5124746,5144311,5157441,5167847,5149437,5146871,5155174,5163342,5155972,5155645,5153987,5142738,5119206,5123652,5093583,5057593,5001746,4965242,4932807,4915109,4930627,4926651,4903169,4875701,4871563,4842165,4809926,4807356,4822516,4834976,4838815,4849423,4826852,4792682,4796721,4846052,4848493,4873469,4886073,4862704,4861897,4906580,4943717,4990423,5013187,5035607,5026031,5034244,5059651,5100850,5127761,5156351,5167568,5148127,5137097,5179472,5243855,5259746,5258597,5264709,5224738,5209193,5246433,5288174,5276180,5276623,5250867,5213242,5193697,5198293,5179787,5126994,5058883,4999713,4929165,4884302,4870701,4840231,4795862,4755782,4693518,4629329,4581071,4562193,4540593,4489117,4452310,4423702,4374180,4352613,4351064,4336183,4314729,4277556,4240201,4206742,4193618,4211090,4211453,4205210,4219298,4226423,4215773,4205158,4218600,4217858,4247151,4231613,4207551,4172007,4163562,4176356,4197260,4180326,4153871,4136547,4101642,4076101,4074808,4084304,4079244,4046191,4028056,3987953,3951208,3942140,3924088,3917094,3892311,3862844,3817190,3795188,3790868,3786830,3764220,3719811,3697009,3659415,3651926,3643734,3642666,3626504,3625665,3610602,3567925,3540960,3545237,3545715,3527780,3506532,3480197,3448324,3438713,3448411,3445630,3438588,3401120,3377039,3333159,3317200,3311676,3313199,3311382,3304957,3303856,3290325,3290852,3303201,3321352,3326888,3321690,3305682,3282857,3280392,3300264,3299053,3288997,3279938,3271500,3262444,3263322,3282810,3289723,3294566,3286753,3295585,3284347,3297623,3316023,3336653,3343572,3331642,3328419,3285951,3260961,3255447,3260155,3276924,3293142,3319674,3329086,3316700,3316576,3316818,3316516,3308102,3298679,3270778,3257436,3253602,3245601,3225287,3206095,3193777,3163612,3148248,3148724,3141228,3124674,3108191,3096600,3073267,3080641,3095516,3116131,3101907,3061686,3013880,2951432,2906631,2916525,2933380,2933877,2933034,2926196,2900660,2888390,2888894,2893665,2896208,2899499,2897676,2883811,2872626,2891334,2901494,2905879,2905957,2904252,2889341,2881165,2889753,2893765,2884615,2885798,2882273,2877749,2873949,2885840,2888223,2872282,2860170,2843115,2826319,2816529,2828354,2838967,2834614,2823206,2817566,2798067,2786869,2796455,2796304,2788733,2789381,2782588,2765837,2761675,2778222,2788335,2803366,2805531,2798235,2787070,2777129,2783715,2779837,2777530,2772042,2761238,2747515,2745121,2759871,2773467,2778010,2785804,2782809,2766810,2756934,2769497,2774035,2773594,2775683,2770904,2757338,2756304,2772476,2774495,2758769,2744708,2723224,2714057,2712199,2724215,2731415,2726081,2721758,2715548,2697712,2685865,2690341,2694827,2684297,2675368,2653847,2633041,2630188,2648278,2642039,2652194,2657969,2652109,2627615,2611049,2610195,2602543,2598938,2605173,2599629,2601496,2592996,2596563,2601671,2607371,2614909,2613432,2605114,2601786,2611945,2625586,2623985,2622976,2618482,2615718,2616520,2623933,2624545,2633039,2622288,2619309,2609680,2608313,2624835,2639951,2648619,2655670,2657271,2648851,2638509,2651499,2659642,2664666,2664489,2672339,2677564,2679907,2699838,2711634,2702051,2690973,2695605,2684765,2679334,2692072,2695009,2695513,2697275,2696109,2677217,2663717,2662295,2665621,2656770,2647074,2631060,2611011,2595554,2599796,2595884,2588514,2578176,2566908,2548907,2525599,2527355,2533930,2531011,2539360,2552996,2539758,2537720,2540201,2543393,2545859,2542390,2536733,2515866,2505868,2509437,2534648,2539168,2544079,2545064,2545081,2544050,2562269,2579516,2592175,2609999,2616278,2612220,2604623,2615162,2628081,2629826,2633511,2631041,2619929,2616832,2626455,2640114,2641581,2649213,2660778,2655160,2665311,2687944,2706920,2703273,2704804,2701909,2699669,2691852,2713185,2727686,2732768,2745850,2750010,2737965,2730312,2741705,2753441,2756876,2752185,2740146,2715060,2693626,2686088,2660928,2644993,2625704,2607694,2575228,2551592,2541061,2527454,2509417,2494757,2477387,2455254,2428015,2422845,2401809,2377605,2353677,2313755,2272176,2246228,2243495,2235360,2223107,2205177,2193004,2179027,2172567,2185565,2195752,2217513,2227198,2230066,2217410,2211225,2225964,2235453,2238286,2240783,2240155,2230310,2223048,2235857,2244142,2249669,2250944,2247343,2232348,2220701,2231052,2235966,2237732,2226726,2199318,2162485,2137397,2127517,2104451,2075090,2043939,2003070,1965955,1937123,1923777,1901200,1870278,1836632,1801979,1757959,1725992,1706350,1682558,1657036,1629701,1603653,1565871,1545867,1535114,1512706,1480155,1445387,1421794,1409338,1406171,1412157,1415951,1419590,1415516,1412317,1404930,1400412,1404449,1410141,1406282,1411998,1411179,1404321,1405961,1405798,1375883,1328384,1273357,1237894,1226624,1227479,1235869,1239578,1246814,1256457,1257822,1252054,1248063,1255286,1253474,1245518,1248099,1248447,1239631,1241007,1253576,1257789,1251575,1255015,1243345,1236848,1240658,1247823,1265447,1304507,1352732,1402125,1425482,1427148,1438613,1442912,1443642,1436910,1427411,1419954,1418191,1426607,1422983,1426477,1433955,1427106,1421882,1422804,1429079,1426894,1426496,1425676,1425081,1422365,1423144,1428007,1425986,1420196,1420806,1419003,1410812,1409765,1412890,1407632,1405795,1400881,1398713,1392409,1391512,1395976,1395185,1399879,1396517],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0","line":{"color":"#B6E880","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0","showlegend":true,"x":["2017-03-16T00:00:00","2017-03-17T00:00:00","2017-03-18T00:00:00","2017-03-19T00:00:00","2017-03-20T00:00:00","2017-03-21T00:00:00","2017-03-22T00:00:00","2017-03-23T00:00:00","2017-03-24T00:00:00","2017-03-25T00:00:00","2017-03-26T00:00:00","2017-03-27T00:00:00","2017-03-28T00:00:00","2017-03-29T00:00:00","2017-03-30T00:00:00","2017-03-31T00:00:00","2017-04-01T00:00:00","2017-04-02T00:00:00","2017-04-03T00:00:00","2017-04-04T00:00:00","2017-04-05T00:00:00","2017-04-06T00:00:00","2017-04-07T00:00:00","2017-04-08T00:00:00","2017-04-09T00:00:00","2017-04-10T00:00:00","2017-04-11T00:00:00","2017-04-12T00:00:00","2017-04-13T00:00:00","2017-04-14T00:00:00","2017-04-15T00:00:00","2017-04-16T00:00:00","2017-04-17T00:00:00","2017-04-18T00:00:00","2017-04-19T00:00:00","2017-04-20T00:00:00","2017-04-21T00:00:00","2017-04-22T00:00:00","2017-04-23T00:00:00","2017-04-24T00:00:00","2017-04-25T00:00:00","2017-04-26T00:00:00","2017-04-27T00:00:00","2017-04-28T00:00:00","2017-04-29T00:00:00","2017-04-30T00:00:00","2017-05-01T00:00:00","2017-05-02T00:00:00","2017-05-03T00:00:00","2017-05-04T00:00:00","2017-05-05T00:00:00","2017-05-06T00:00:00","2017-05-07T00:00:00","2017-05-08T00:00:00","2017-05-09T00:00:00","2017-05-10T00:00:00","2017-05-11T00:00:00","2017-05-12T00:00:00","2017-05-13T00:00:00","2017-05-14T00:00:00","2017-05-15T00:00:00","2017-05-16T00:00:00","2017-05-17T00:00:00","2017-05-18T00:00:00","2017-05-19T00:00:00","2017-05-20T00:00:00","2017-05-21T00:00:00","2017-05-22T00:00:00","2017-05-23T00:00:00","2017-05-24T00:00:00","2017-05-25T00:00:00","2017-05-26T00:00:00","2017-05-27T00:00:00","2017-05-28T00:00:00","2017-05-29T00:00:00","2017-05-30T00:00:00","2017-05-31T00:00:00","2017-06-01T00:00:00","2017-06-02T00:00:00","2017-06-03T00:00:00","2017-06-04T00:00:00","2017-06-05T00:00:00","2017-06-06T00:00:00","2017-06-07T00:00:00","2017-06-08T00:00:00","2017-06-09T00:00:00","2017-06-10T00:00:00","2017-06-11T00:00:00","2017-06-12T00:00:00","2017-06-13T00:00:00","2017-06-14T00:00:00","2017-06-15T00:00:00","2017-06-16T00:00:00","2017-06-17T00:00:00","2017-06-18T00:00:00","2017-06-19T00:00:00","2017-06-20T00:00:00","2017-06-21T00:00:00","2017-06-22T00:00:00","2017-06-23T00:00:00","2017-06-24T00:00:00","2017-06-25T00:00:00","2017-06-26T00:00:00","2017-06-27T00:00:00","2017-06-28T00:00:00","2017-06-29T00:00:00","2017-06-30T00:00:00","2017-07-01T00:00:00","2017-07-02T00:00:00","2017-07-03T00:00:00","2017-07-04T00:00:00","2017-07-05T00:00:00","2017-07-06T00:00:00","2017-07-07T00:00:00","2017-07-08T00:00:00","2017-07-09T00:00:00","2017-07-10T00:00:00","2017-07-11T00:00:00","2017-07-12T00:00:00","2017-07-13T00:00:00","2017-07-14T00:00:00","2017-07-15T00:00:00","2017-07-16T00:00:00","2017-07-17T00:00:00","2017-07-18T00:00:00","2017-07-19T00:00:00","2017-07-20T00:00:00","2017-07-21T00:00:00","2017-07-22T00:00:00","2017-07-23T00:00:00","2017-07-24T00:00:00","2017-07-25T00:00:00","2017-07-26T00:00:00","2017-07-27T00:00:00","2017-07-28T00:00:00","2017-07-29T00:00:00","2017-07-30T00:00:00","2017-07-31T00:00:00","2017-08-01T00:00:00","2017-08-02T00:00:00","2017-08-03T00:00:00","2017-08-04T00:00:00","2017-08-05T00:00:00","2017-08-06T00:00:00","2017-08-07T00:00:00","2017-08-08T00:00:00","2017-08-09T00:00:00","2017-08-10T00:00:00","2017-08-11T00:00:00","2017-08-12T00:00:00","2017-08-13T00:00:00","2017-08-14T00:00:00","2017-08-15T00:00:00","2017-08-16T00:00:00","2017-08-17T00:00:00","2017-08-18T00:00:00","2017-08-19T00:00:00","2017-08-20T00:00:00","2017-08-21T00:00:00","2017-08-22T00:00:00","2017-08-23T00:00:00","2017-08-24T00:00:00","2017-08-25T00:00:00","2017-08-26T00:00:00","2017-08-27T00:00:00","2017-08-28T00:00:00","2017-08-29T00:00:00","2017-08-30T00:00:00","2017-08-31T00:00:00","2017-09-01T00:00:00","2017-09-02T00:00:00","2017-09-03T00:00:00","2017-09-04T00:00:00","2017-09-05T00:00:00","2017-09-06T00:00:00","2017-09-07T00:00:00","2017-09-08T00:00:00","2017-09-09T00:00:00","2017-09-10T00:00:00","2017-09-11T00:00:00","2017-09-12T00:00:00","2017-09-13T00:00:00","2017-09-14T00:00:00","2017-09-15T00:00:00","2017-09-16T00:00:00","2017-09-17T00:00:00","2017-09-18T00:00:00","2017-09-19T00:00:00","2017-09-20T00:00:00","2017-09-21T00:00:00","2017-09-22T00:00:00","2017-09-23T00:00:00","2017-09-24T00:00:00","2017-09-25T00:00:00","2017-09-26T00:00:00","2017-09-27T00:00:00","2017-09-28T00:00:00","2017-09-29T00:00:00","2017-09-30T00:00:00","2017-10-01T00:00:00","2017-10-02T00:00:00","2017-10-03T00:00:00","2017-10-04T00:00:00","2017-10-05T00:00:00","2017-10-06T00:00:00","2017-10-07T00:00:00","2017-10-08T00:00:00","2017-10-09T00:00:00","2017-10-10T00:00:00","2017-10-11T00:00:00","2017-10-12T00:00:00","2017-10-13T00:00:00","2017-10-14T00:00:00","2017-10-15T00:00:00","2017-10-16T00:00:00","2017-10-17T00:00:00","2017-10-18T00:00:00","2017-10-19T00:00:00","2017-10-20T00:00:00","2017-10-21T00:00:00","2017-10-22T00:00:00","2017-10-23T00:00:00","2017-10-24T00:00:00","2017-10-25T00:00:00","2017-10-26T00:00:00","2017-10-27T00:00:00","2017-10-28T00:00:00","2017-10-29T00:00:00","2017-10-30T00:00:00","2017-10-31T00:00:00","2017-11-01T00:00:00","2017-11-02T00:00:00","2017-11-03T00:00:00","2017-11-04T00:00:00","2017-11-05T00:00:00","2017-11-06T00:00:00","2017-11-07T00:00:00","2017-11-08T00:00:00","2017-11-09T00:00:00","2017-11-10T00:00:00","2017-11-11T00:00:00","2017-11-12T00:00:00","2017-11-13T00:00:00","2017-11-14T00:00:00","2017-11-15T00:00:00","2017-11-16T00:00:00","2017-11-17T00:00:00","2017-11-18T00:00:00","2017-11-19T00:00:00","2017-11-20T00:00:00","2017-11-21T00:00:00","2017-11-22T00:00:00","2017-11-23T00:00:00","2017-11-24T00:00:00","2017-11-25T00:00:00","2017-11-26T00:00:00","2017-11-27T00:00:00","2017-11-28T00:00:00","2017-11-29T00:00:00","2017-11-30T00:00:00","2017-12-01T00:00:00","2017-12-02T00:00:00","2017-12-03T00:00:00","2017-12-04T00:00:00","2017-12-05T00:00:00","2017-12-06T00:00:00","2017-12-07T00:00:00","2017-12-08T00:00:00","2017-12-09T00:00:00","2017-12-10T00:00:00","2017-12-11T00:00:00","2017-12-12T00:00:00","2017-12-13T00:00:00","2017-12-14T00:00:00","2017-12-15T00:00:00","2017-12-16T00:00:00","2017-12-17T00:00:00","2017-12-18T00:00:00","2017-12-19T00:00:00","2017-12-20T00:00:00","2017-12-21T00:00:00","2017-12-22T00:00:00","2017-12-23T00:00:00","2017-12-24T00:00:00","2017-12-25T00:00:00","2017-12-26T00:00:00","2017-12-27T00:00:00","2017-12-28T00:00:00","2017-12-29T00:00:00","2017-12-30T00:00:00","2017-12-31T00:00:00","2018-01-01T00:00:00","2018-01-02T00:00:00","2018-01-03T00:00:00","2018-01-04T00:00:00","2018-01-05T00:00:00","2018-01-06T00:00:00","2018-01-07T00:00:00","2018-01-08T00:00:00","2018-01-09T00:00:00","2018-01-10T00:00:00","2018-01-11T00:00:00","2018-01-12T00:00:00","2018-01-13T00:00:00","2018-01-14T00:00:00","2018-01-15T00:00:00","2018-01-16T00:00:00","2018-01-17T00:00:00","2018-01-18T00:00:00","2018-01-19T00:00:00","2018-01-20T00:00:00","2018-01-21T00:00:00","2018-01-22T00:00:00","2018-01-23T00:00:00","2018-01-24T00:00:00","2018-01-25T00:00:00","2018-01-26T00:00:00","2018-01-27T00:00:00","2018-01-28T00:00:00","2018-01-29T00:00:00","2018-01-30T00:00:00","2018-01-31T00:00:00","2018-02-01T00:00:00","2018-02-02T00:00:00","2018-02-03T00:00:00","2018-02-04T00:00:00","2018-02-05T00:00:00","2018-02-06T00:00:00","2018-02-07T00:00:00","2018-02-08T00:00:00","2018-02-09T00:00:00","2018-02-10T00:00:00","2018-02-11T00:00:00","2018-02-12T00:00:00","2018-02-13T00:00:00","2018-02-14T00:00:00","2018-02-15T00:00:00","2018-02-16T00:00:00","2018-02-17T00:00:00","2018-02-18T00:00:00","2018-02-19T00:00:00","2018-02-20T00:00:00","2018-02-21T00:00:00","2018-02-22T00:00:00","2018-02-23T00:00:00","2018-02-24T00:00:00","2018-02-25T00:00:00","2018-02-26T00:00:00","2018-02-27T00:00:00","2018-02-28T00:00:00","2018-03-01T00:00:00","2018-03-02T00:00:00","2018-03-03T00:00:00","2018-03-04T00:00:00","2018-03-05T00:00:00","2018-03-06T00:00:00","2018-03-07T00:00:00","2018-03-08T00:00:00","2018-03-09T00:00:00","2018-03-10T00:00:00","2018-03-11T00:00:00","2018-03-12T00:00:00","2018-03-13T00:00:00","2018-03-14T00:00:00","2018-03-15T00:00:00","2018-03-16T00:00:00","2018-03-17T00:00:00","2018-03-18T00:00:00","2018-03-19T00:00:00","2018-03-20T00:00:00","2018-03-21T00:00:00","2018-03-22T00:00:00","2018-03-23T00:00:00","2018-03-24T00:00:00","2018-03-25T00:00:00","2018-03-26T00:00:00","2018-03-27T00:00:00","2018-03-28T00:00:00","2018-03-29T00:00:00","2018-03-30T00:00:00","2018-03-31T00:00:00","2018-04-01T00:00:00","2018-04-02T00:00:00","2018-04-03T00:00:00","2018-04-04T00:00:00","2018-04-05T00:00:00","2018-04-06T00:00:00","2018-04-07T00:00:00","2018-04-08T00:00:00","2018-04-09T00:00:00","2018-04-10T00:00:00","2018-04-11T00:00:00","2018-04-12T00:00:00","2018-04-13T00:00:00","2018-04-14T00:00:00","2018-04-15T00:00:00","2018-04-16T00:00:00","2018-04-17T00:00:00","2018-04-18T00:00:00","2018-04-19T00:00:00","2018-04-20T00:00:00","2018-04-21T00:00:00","2018-04-22T00:00:00","2018-04-23T00:00:00","2018-04-24T00:00:00","2018-04-25T00:00:00","2018-04-26T00:00:00","2018-04-27T00:00:00","2018-04-28T00:00:00","2018-04-29T00:00:00","2018-04-30T00:00:00","2018-05-01T00:00:00","2018-05-02T00:00:00","2018-05-03T00:00:00","2018-05-04T00:00:00","2018-05-05T00:00:00","2018-05-06T00:00:00","2018-05-07T00:00:00","2018-05-08T00:00:00","2018-05-09T00:00:00","2018-05-10T00:00:00","2018-05-11T00:00:00","2018-05-12T00:00:00","2018-05-13T00:00:00","2018-05-14T00:00:00","2018-05-15T00:00:00","2018-05-16T00:00:00","2018-05-17T00:00:00","2018-05-18T00:00:00","2018-05-19T00:00:00","2018-05-20T00:00:00","2018-05-21T00:00:00","2018-05-22T00:00:00","2018-05-23T00:00:00","2018-05-24T00:00:00","2018-05-25T00:00:00","2018-05-26T00:00:00","2018-05-27T00:00:00","2018-05-28T00:00:00","2018-05-29T00:00:00","2018-05-30T00:00:00","2018-05-31T00:00:00","2018-06-01T00:00:00","2018-06-02T00:00:00","2018-06-03T00:00:00","2018-06-04T00:00:00","2018-06-05T00:00:00","2018-06-06T00:00:00","2018-06-07T00:00:00","2018-06-08T00:00:00","2018-06-09T00:00:00","2018-06-10T00:00:00","2018-06-11T00:00:00","2018-06-12T00:00:00","2018-06-13T00:00:00","2018-06-14T00:00:00","2018-06-15T00:00:00","2018-06-16T00:00:00","2018-06-17T00:00:00","2018-06-18T00:00:00","2018-06-19T00:00:00","2018-06-20T00:00:00","2018-06-21T00:00:00","2018-06-22T00:00:00","2018-06-23T00:00:00","2018-06-24T00:00:00","2018-06-25T00:00:00","2018-06-26T00:00:00","2018-06-27T00:00:00","2018-06-28T00:00:00","2018-06-29T00:00:00","2018-06-30T00:00:00","2018-07-01T00:00:00","2018-07-02T00:00:00","2018-07-03T00:00:00","2018-07-04T00:00:00","2018-07-05T00:00:00","2018-07-06T00:00:00","2018-07-07T00:00:00","2018-07-08T00:00:00","2018-07-09T00:00:00","2018-07-10T00:00:00","2018-07-11T00:00:00","2018-07-12T00:00:00","2018-07-13T00:00:00","2018-07-14T00:00:00","2018-07-15T00:00:00","2018-07-16T00:00:00","2018-07-17T00:00:00","2018-07-18T00:00:00","2018-07-19T00:00:00","2018-07-20T00:00:00","2018-07-21T00:00:00","2018-07-22T00:00:00","2018-07-23T00:00:00","2018-07-24T00:00:00","2018-07-25T00:00:00","2018-07-26T00:00:00","2018-07-27T00:00:00","2018-07-28T00:00:00","2018-07-29T00:00:00","2018-07-30T00:00:00","2018-07-31T00:00:00","2018-08-01T00:00:00","2018-08-02T00:00:00","2018-08-03T00:00:00","2018-08-04T00:00:00","2018-08-05T00:00:00","2018-08-06T00:00:00","2018-08-07T00:00:00","2018-08-08T00:00:00","2018-08-09T00:00:00","2018-08-10T00:00:00","2018-08-11T00:00:00","2018-08-12T00:00:00","2018-08-13T00:00:00","2018-08-14T00:00:00","2018-08-15T00:00:00","2018-08-16T00:00:00","2018-08-17T00:00:00","2018-08-18T00:00:00","2018-08-19T00:00:00","2018-08-20T00:00:00","2018-08-21T00:00:00","2018-08-22T00:00:00","2018-08-23T00:00:00","2018-08-24T00:00:00","2018-08-25T00:00:00","2018-08-26T00:00:00","2018-08-27T00:00:00","2018-08-28T00:00:00","2018-08-29T00:00:00","2018-08-30T00:00:00","2018-08-31T00:00:00","2018-09-01T00:00:00","2018-09-02T00:00:00","2018-09-03T00:00:00","2018-09-04T00:00:00","2018-09-05T00:00:00","2018-09-06T00:00:00","2018-09-07T00:00:00","2018-09-08T00:00:00","2018-09-09T00:00:00","2018-09-10T00:00:00","2018-09-11T00:00:00","2018-09-12T00:00:00","2018-09-13T00:00:00","2018-09-14T00:00:00","2018-09-15T00:00:00","2018-09-16T00:00:00","2018-09-17T00:00:00","2018-09-18T00:00:00","2018-09-19T00:00:00","2018-09-20T00:00:00","2018-09-21T00:00:00","2018-09-22T00:00:00","2018-09-23T00:00:00","2018-09-24T00:00:00","2018-09-25T00:00:00","2018-09-26T00:00:00","2018-09-27T00:00:00","2018-09-28T00:00:00","2018-09-29T00:00:00","2018-09-30T00:00:00","2018-10-01T00:00:00","2018-10-02T00:00:00","2018-10-03T00:00:00","2018-10-04T00:00:00","2018-10-05T00:00:00","2018-10-06T00:00:00","2018-10-07T00:00:00","2018-10-08T00:00:00","2018-10-09T00:00:00","2018-10-10T00:00:00","2018-10-11T00:00:00","2018-10-12T00:00:00","2018-10-13T00:00:00","2018-10-14T00:00:00","2018-10-15T00:00:00","2018-10-16T00:00:00","2018-10-17T00:00:00","2018-10-18T00:00:00","2018-10-19T00:00:00","2018-10-20T00:00:00","2018-10-21T00:00:00","2018-10-22T00:00:00","2018-10-23T00:00:00","2018-10-24T00:00:00","2018-10-25T00:00:00","2018-10-26T00:00:00","2018-10-27T00:00:00","2018-10-28T00:00:00","2018-10-29T00:00:00","2018-10-30T00:00:00","2018-10-31T00:00:00","2018-11-01T00:00:00","2018-11-02T00:00:00","2018-11-03T00:00:00","2018-11-04T00:00:00","2018-11-05T00:00:00","2018-11-06T00:00:00","2018-11-07T00:00:00","2018-11-08T00:00:00","2018-11-09T00:00:00","2018-11-10T00:00:00","2018-11-11T00:00:00","2018-11-12T00:00:00","2018-11-13T00:00:00","2018-11-14T00:00:00","2018-11-15T00:00:00","2018-11-16T00:00:00","2018-11-17T00:00:00","2018-11-18T00:00:00","2018-11-19T00:00:00","2018-11-20T00:00:00","2018-11-21T00:00:00","2018-11-22T00:00:00","2018-11-23T00:00:00","2018-11-24T00:00:00","2018-11-25T00:00:00","2018-11-26T00:00:00","2018-11-27T00:00:00","2018-11-28T00:00:00","2018-11-29T00:00:00","2018-11-30T00:00:00","2018-12-01T00:00:00","2018-12-02T00:00:00","2018-12-03T00:00:00","2018-12-04T00:00:00","2018-12-05T00:00:00","2018-12-06T00:00:00","2018-12-07T00:00:00","2018-12-08T00:00:00","2018-12-09T00:00:00","2018-12-10T00:00:00","2018-12-11T00:00:00","2018-12-12T00:00:00","2018-12-13T00:00:00","2018-12-14T00:00:00","2018-12-15T00:00:00","2018-12-16T00:00:00","2018-12-17T00:00:00","2018-12-18T00:00:00","2018-12-19T00:00:00","2018-12-20T00:00:00","2018-12-21T00:00:00","2018-12-22T00:00:00","2018-12-23T00:00:00","2018-12-24T00:00:00","2018-12-25T00:00:00","2018-12-26T00:00:00","2018-12-27T00:00:00","2018-12-28T00:00:00","2018-12-29T00:00:00","2018-12-30T00:00:00","2018-12-31T00:00:00","2019-01-01T00:00:00","2019-01-02T00:00:00","2019-01-03T00:00:00","2019-01-04T00:00:00","2019-01-05T00:00:00","2019-01-06T00:00:00","2019-01-07T00:00:00","2019-01-08T00:00:00","2019-01-09T00:00:00","2019-01-10T00:00:00","2019-01-11T00:00:00","2019-01-12T00:00:00","2019-01-13T00:00:00","2019-01-14T00:00:00","2019-01-15T00:00:00","2019-01-16T00:00:00","2019-01-17T00:00:00","2019-01-18T00:00:00","2019-01-19T00:00:00","2019-01-20T00:00:00","2019-01-21T00:00:00","2019-01-22T00:00:00","2019-01-23T00:00:00","2019-01-24T00:00:00","2019-01-25T00:00:00","2019-01-26T00:00:00","2019-01-27T00:00:00","2019-01-28T00:00:00","2019-01-29T00:00:00","2019-01-30T00:00:00","2019-01-31T00:00:00","2019-02-01T00:00:00","2019-02-02T00:00:00","2019-02-03T00:00:00","2019-02-04T00:00:00","2019-02-05T00:00:00","2019-02-06T00:00:00","2019-02-07T00:00:00","2019-02-08T00:00:00","2019-02-09T00:00:00","2019-02-10T00:00:00","2019-02-11T00:00:00","2019-02-12T00:00:00","2019-02-13T00:00:00","2019-02-14T00:00:00","2019-02-15T00:00:00","2019-02-16T00:00:00","2019-02-17T00:00:00","2019-02-18T00:00:00","2019-02-19T00:00:00","2019-02-20T00:00:00","2019-02-21T00:00:00","2019-02-22T00:00:00","2019-02-23T00:00:00","2019-02-24T00:00:00","2019-02-25T00:00:00","2019-02-26T00:00:00","2019-02-27T00:00:00","2019-02-28T00:00:00","2019-03-01T00:00:00","2019-03-02T00:00:00","2019-03-03T00:00:00","2019-03-04T00:00:00","2019-03-05T00:00:00","2019-03-06T00:00:00","2019-03-07T00:00:00","2019-03-08T00:00:00","2019-03-09T00:00:00","2019-03-10T00:00:00","2019-03-11T00:00:00","2019-03-12T00:00:00","2019-03-13T00:00:00","2019-03-14T00:00:00","2019-03-15T00:00:00","2019-03-16T00:00:00","2019-03-17T00:00:00","2019-03-18T00:00:00","2019-03-19T00:00:00","2019-03-20T00:00:00","2019-03-21T00:00:00","2019-03-22T00:00:00","2019-03-23T00:00:00","2019-03-24T00:00:00","2019-03-25T00:00:00","2019-03-26T00:00:00","2019-03-27T00:00:00","2019-03-28T00:00:00","2019-03-29T00:00:00","2019-03-30T00:00:00","2019-03-31T00:00:00","2019-04-01T00:00:00","2019-04-02T00:00:00","2019-04-03T00:00:00","2019-04-04T00:00:00","2019-04-05T00:00:00","2019-04-06T00:00:00","2019-04-07T00:00:00","2019-04-08T00:00:00","2019-04-09T00:00:00","2019-04-10T00:00:00","2019-04-11T00:00:00","2019-04-12T00:00:00","2019-04-13T00:00:00","2019-04-14T00:00:00","2019-04-15T00:00:00","2019-04-16T00:00:00","2019-04-17T00:00:00","2019-04-18T00:00:00","2019-04-19T00:00:00","2019-04-20T00:00:00","2019-04-21T00:00:00","2019-04-22T00:00:00","2019-04-23T00:00:00","2019-04-24T00:00:00","2019-04-25T00:00:00","2019-04-28T00:00:00","2019-04-29T00:00:00","2019-04-30T00:00:00","2019-05-01T00:00:00","2019-05-02T00:00:00","2019-05-03T00:00:00","2019-05-04T00:00:00","2019-05-05T00:00:00","2019-05-06T00:00:00","2019-05-07T00:00:00","2019-05-08T00:00:00","2019-05-09T00:00:00","2019-05-10T00:00:00","2019-05-11T00:00:00","2019-05-12T00:00:00","2019-05-13T00:00:00","2019-05-14T00:00:00","2019-05-15T00:00:00","2019-05-16T00:00:00","2019-05-17T00:00:00","2019-05-18T00:00:00","2019-05-19T00:00:00","2019-05-20T00:00:00","2019-05-21T00:00:00","2019-05-22T00:00:00","2019-05-23T00:00:00","2019-05-24T00:00:00","2019-05-25T00:00:00","2019-05-26T00:00:00","2019-05-27T00:00:00","2019-05-28T00:00:00","2019-05-29T00:00:00","2019-05-30T00:00:00","2019-05-31T00:00:00","2019-06-01T00:00:00","2019-06-02T00:00:00","2019-06-03T00:00:00","2019-06-04T00:00:00","2019-06-05T00:00:00","2019-06-06T00:00:00","2019-06-07T00:00:00","2019-06-08T00:00:00","2019-06-09T00:00:00","2019-06-10T00:00:00","2019-06-11T00:00:00","2019-06-12T00:00:00","2019-06-13T00:00:00","2019-06-14T00:00:00","2019-06-15T00:00:00","2019-06-16T00:00:00","2019-06-17T00:00:00","2019-06-18T00:00:00","2019-06-19T00:00:00","2019-06-20T00:00:00","2019-06-21T00:00:00","2019-06-22T00:00:00","2019-06-23T00:00:00","2019-06-24T00:00:00","2019-06-25T00:00:00","2019-06-26T00:00:00","2019-06-27T00:00:00","2019-06-28T00:00:00","2019-06-29T00:00:00","2019-06-30T00:00:00","2019-07-01T00:00:00","2019-07-02T00:00:00","2019-07-03T00:00:00","2019-07-04T00:00:00","2019-07-05T00:00:00","2019-07-06T00:00:00","2019-07-07T00:00:00","2019-07-08T00:00:00","2019-07-09T00:00:00","2019-07-10T00:00:00","2019-07-11T00:00:00","2019-07-12T00:00:00","2019-07-13T00:00:00","2019-07-14T00:00:00","2019-07-15T00:00:00","2019-07-16T00:00:00","2019-07-17T00:00:00","2019-07-18T00:00:00","2019-07-19T00:00:00","2019-07-20T00:00:00","2019-07-21T00:00:00","2019-07-22T00:00:00","2019-07-23T00:00:00","2019-07-24T00:00:00","2019-07-25T00:00:00","2019-07-26T00:00:00","2019-07-27T00:00:00","2019-07-28T00:00:00","2019-07-29T00:00:00","2019-07-30T00:00:00","2019-07-31T00:00:00","2019-08-01T00:00:00","2019-08-02T00:00:00","2019-08-03T00:00:00","2019-08-04T00:00:00","2019-08-05T00:00:00","2019-08-06T00:00:00","2019-08-07T00:00:00","2019-08-08T00:00:00","2019-08-09T00:00:00","2019-08-10T00:00:00","2019-08-11T00:00:00","2019-08-12T00:00:00","2019-08-13T00:00:00","2019-08-14T00:00:00","2019-08-15T00:00:00","2019-08-16T00:00:00","2019-08-17T00:00:00","2019-08-18T00:00:00","2019-08-19T00:00:00","2019-08-20T00:00:00","2019-08-21T00:00:00","2019-08-22T00:00:00","2019-08-23T00:00:00","2019-08-24T00:00:00","2019-08-25T00:00:00","2019-08-26T00:00:00","2019-08-27T00:00:00","2019-08-28T00:00:00","2019-08-29T00:00:00","2019-08-30T00:00:00","2019-08-31T00:00:00","2019-09-01T00:00:00","2019-09-02T00:00:00","2019-09-03T00:00:00","2019-09-04T00:00:00","2019-09-05T00:00:00","2019-09-06T00:00:00","2019-09-07T00:00:00","2019-09-08T00:00:00","2019-09-09T00:00:00","2019-09-10T00:00:00","2019-09-11T00:00:00","2019-09-12T00:00:00","2019-09-13T00:00:00","2019-09-14T00:00:00","2019-09-15T00:00:00","2019-09-16T00:00:00","2019-09-17T00:00:00","2019-09-18T00:00:00","2019-09-19T00:00:00","2019-09-20T00:00:00","2019-09-21T00:00:00","2019-09-22T00:00:00","2019-09-23T00:00:00","2019-09-24T00:00:00","2019-09-25T00:00:00","2019-09-26T00:00:00","2019-09-27T00:00:00","2019-09-28T00:00:00","2019-09-29T00:00:00","2019-09-30T00:00:00","2019-10-01T00:00:00","2019-10-02T00:00:00","2019-10-03T00:00:00","2019-10-04T00:00:00","2019-10-05T00:00:00","2019-10-06T00:00:00","2019-10-07T00:00:00","2019-10-08T00:00:00","2019-10-09T00:00:00","2019-10-10T00:00:00","2019-10-11T00:00:00","2019-10-12T00:00:00","2019-10-13T00:00:00","2019-10-14T00:00:00","2019-10-15T00:00:00","2019-10-16T00:00:00","2019-10-17T00:00:00","2019-10-18T00:00:00","2019-10-19T00:00:00","2019-10-20T00:00:00","2019-10-21T00:00:00","2019-10-22T00:00:00","2019-10-23T00:00:00","2019-10-24T00:00:00","2019-10-25T00:00:00","2019-10-26T00:00:00","2019-10-27T00:00:00","2019-10-28T00:00:00","2019-10-29T00:00:00","2019-10-30T00:00:00","2019-10-31T00:00:00","2019-11-01T00:00:00","2019-11-02T00:00:00","2019-11-03T00:00:00","2019-11-04T00:00:00","2019-11-05T00:00:00","2019-11-06T00:00:00","2019-11-07T00:00:00","2019-11-08T00:00:00","2019-11-09T00:00:00","2019-11-10T00:00:00","2019-11-11T00:00:00","2019-11-12T00:00:00","2019-11-13T00:00:00","2019-11-14T00:00:00","2019-11-15T00:00:00","2019-11-16T00:00:00","2019-11-17T00:00:00","2019-11-18T00:00:00","2019-11-19T00:00:00","2019-11-20T00:00:00","2019-11-21T00:00:00","2019-11-22T00:00:00","2019-11-23T00:00:00","2019-11-24T00:00:00","2019-11-25T00:00:00","2019-11-26T00:00:00","2019-11-27T00:00:00","2019-11-28T00:00:00","2019-11-29T00:00:00","2019-11-30T00:00:00","2019-12-01T00:00:00","2019-12-02T00:00:00","2019-12-03T00:00:00","2019-12-04T00:00:00","2019-12-05T00:00:00","2019-12-06T00:00:00","2019-12-07T00:00:00","2019-12-08T00:00:00","2019-12-09T00:00:00","2019-12-10T00:00:00","2019-12-11T00:00:00","2019-12-12T00:00:00","2019-12-13T00:00:00","2019-12-14T00:00:00","2019-12-15T00:00:00","2019-12-16T00:00:00","2019-12-17T00:00:00","2019-12-18T00:00:00","2019-12-19T00:00:00","2019-12-20T00:00:00","2019-12-21T00:00:00","2019-12-22T00:00:00","2019-12-23T00:00:00","2019-12-24T00:00:00","2019-12-25T00:00:00","2019-12-26T00:00:00","2019-12-27T00:00:00","2019-12-28T00:00:00","2019-12-29T00:00:00","2019-12-30T00:00:00","2019-12-31T00:00:00","2020-01-01T00:00:00","2020-01-02T00:00:00","2020-01-03T00:00:00","2020-01-04T00:00:00","2020-01-05T00:00:00","2020-01-06T00:00:00","2020-01-07T00:00:00","2020-01-08T00:00:00","2020-01-09T00:00:00","2020-01-10T00:00:00","2020-01-11T00:00:00","2020-01-12T00:00:00","2020-01-13T00:00:00","2020-01-14T00:00:00","2020-01-15T00:00:00","2020-01-16T00:00:00","2020-01-17T00:00:00","2020-01-18T00:00:00","2020-01-19T00:00:00","2020-01-20T00:00:00","2020-01-21T00:00:00","2020-01-22T00:00:00","2020-01-23T00:00:00","2020-01-24T00:00:00","2020-01-25T00:00:00","2020-01-26T00:00:00","2020-01-27T00:00:00","2020-01-28T00:00:00","2020-01-29T00:00:00","2020-01-30T00:00:00","2020-01-31T00:00:00","2020-02-01T00:00:00","2020-02-02T00:00:00","2020-02-03T00:00:00","2020-02-04T00:00:00","2020-02-05T00:00:00","2020-02-06T00:00:00","2020-02-07T00:00:00","2020-02-08T00:00:00","2020-02-09T00:00:00","2020-02-10T00:00:00","2020-02-11T00:00:00","2020-02-12T00:00:00","2020-02-13T00:00:00","2020-02-14T00:00:00","2020-02-15T00:00:00","2020-02-16T00:00:00","2020-02-17T00:00:00","2020-02-18T00:00:00","2020-02-19T00:00:00","2020-02-20T00:00:00","2020-02-21T00:00:00","2020-02-22T00:00:00","2020-02-23T00:00:00","2020-02-24T00:00:00","2020-02-25T00:00:00","2020-02-26T00:00:00","2020-02-27T00:00:00","2020-02-28T00:00:00","2020-02-29T00:00:00","2020-03-01T00:00:00","2020-03-02T00:00:00","2020-03-03T00:00:00","2020-03-04T00:00:00","2020-03-05T00:00:00","2020-03-06T00:00:00","2020-03-07T00:00:00","2020-03-08T00:00:00","2020-03-09T00:00:00","2020-03-10T00:00:00","2020-03-11T00:00:00","2020-03-12T00:00:00","2020-03-13T00:00:00","2020-03-14T00:00:00","2020-03-15T00:00:00","2020-03-16T00:00:00","2020-03-17T00:00:00","2020-03-18T00:00:00","2020-03-19T00:00:00","2020-03-20T00:00:00","2020-03-21T00:00:00","2020-03-22T00:00:00","2020-03-23T00:00:00","2020-03-24T00:00:00","2020-03-25T00:00:00","2020-03-26T00:00:00","2020-03-27T00:00:00","2020-03-28T00:00:00","2020-03-29T00:00:00","2020-03-30T00:00:00","2020-03-31T00:00:00","2020-04-01T00:00:00","2020-04-02T00:00:00","2020-04-03T00:00:00","2020-04-04T00:00:00","2020-04-05T00:00:00","2020-04-06T00:00:00","2020-04-07T00:00:00","2020-04-08T00:00:00","2020-04-09T00:00:00","2020-04-10T00:00:00","2020-04-11T00:00:00","2020-04-12T00:00:00","2020-04-13T00:00:00","2020-04-14T00:00:00","2020-04-15T00:00:00","2020-04-16T00:00:00","2020-04-17T00:00:00","2020-04-18T00:00:00","2020-04-19T00:00:00","2020-04-20T00:00:00","2020-04-21T00:00:00","2020-04-22T00:00:00","2020-04-23T00:00:00","2020-04-24T00:00:00","2020-04-25T00:00:00","2020-04-26T00:00:00","2020-04-27T00:00:00","2020-04-28T00:00:00","2020-04-29T00:00:00","2020-04-30T00:00:00","2020-05-01T00:00:00","2020-05-02T00:00:00","2020-05-03T00:00:00","2020-05-04T00:00:00","2020-05-05T00:00:00","2020-05-06T00:00:00","2020-05-07T00:00:00","2020-05-08T00:00:00","2020-05-09T00:00:00","2020-05-10T00:00:00","2020-05-11T00:00:00","2020-05-12T00:00:00","2020-05-13T00:00:00","2020-05-14T00:00:00","2020-05-15T00:00:00","2020-05-16T00:00:00","2020-05-17T00:00:00","2020-05-18T00:00:00","2020-05-19T00:00:00","2020-05-20T00:00:00","2020-05-21T00:00:00","2020-05-22T00:00:00","2020-05-23T00:00:00","2020-05-24T00:00:00","2020-05-25T00:00:00","2020-05-26T00:00:00","2020-05-27T00:00:00","2020-05-28T00:00:00","2020-05-29T00:00:00","2020-05-30T00:00:00","2020-05-31T00:00:00","2020-06-01T00:00:00","2020-06-02T00:00:00","2020-06-03T00:00:00","2020-06-04T00:00:00","2020-06-05T00:00:00","2020-06-06T00:00:00","2020-06-07T00:00:00","2020-06-08T00:00:00","2020-06-09T00:00:00","2020-06-10T00:00:00","2020-06-11T00:00:00","2020-06-12T00:00:00","2020-06-13T00:00:00","2020-06-14T00:00:00","2020-06-15T00:00:00","2020-06-16T00:00:00","2020-06-17T00:00:00","2020-06-18T00:00:00","2020-06-19T00:00:00","2020-06-20T00:00:00","2020-06-21T00:00:00","2020-06-22T00:00:00","2020-06-23T00:00:00","2020-06-24T00:00:00","2020-06-25T00:00:00","2020-06-26T00:00:00","2020-06-27T00:00:00","2020-06-28T00:00:00","2020-06-29T00:00:00","2020-06-30T00:00:00","2020-07-01T00:00:00","2020-07-02T00:00:00","2020-07-03T00:00:00","2020-07-04T00:00:00","2020-07-05T00:00:00","2020-07-06T00:00:00","2020-07-07T00:00:00","2020-07-08T00:00:00","2020-07-09T00:00:00","2020-07-10T00:00:00","2020-07-11T00:00:00","2020-07-12T00:00:00","2020-07-13T00:00:00","2020-07-14T00:00:00","2020-07-15T00:00:00","2020-07-16T00:00:00","2020-07-17T00:00:00","2020-07-18T00:00:00","2020-07-19T00:00:00","2020-07-20T00:00:00","2020-07-21T00:00:00","2020-07-22T00:00:00","2020-07-23T00:00:00","2020-07-24T00:00:00","2020-07-25T00:00:00","2020-07-26T00:00:00","2020-07-27T00:00:00","2020-07-28T00:00:00","2020-07-29T00:00:00","2020-07-30T00:00:00","2020-07-31T00:00:00","2020-08-01T00:00:00","2020-08-02T00:00:00","2020-08-03T00:00:00","2020-08-04T00:00:00","2020-08-05T00:00:00","2020-08-06T00:00:00","2020-08-07T00:00:00","2020-08-08T00:00:00","2020-08-09T00:00:00","2020-08-10T00:00:00","2020-08-11T00:00:00","2020-08-12T00:00:00","2020-08-13T00:00:00","2020-08-14T00:00:00","2020-08-15T00:00:00","2020-08-16T00:00:00","2020-08-17T00:00:00","2020-08-18T00:00:00","2020-08-19T00:00:00","2020-08-20T00:00:00","2020-08-21T00:00:00","2020-08-22T00:00:00","2020-08-23T00:00:00","2020-08-24T00:00:00","2020-08-25T00:00:00","2020-08-26T00:00:00","2020-08-27T00:00:00","2020-08-28T00:00:00","2020-08-29T00:00:00","2020-08-30T00:00:00","2020-08-31T00:00:00","2020-09-01T00:00:00","2020-09-02T00:00:00","2020-09-03T00:00:00","2020-09-04T00:00:00","2020-09-05T00:00:00","2020-09-06T00:00:00","2020-09-07T00:00:00","2020-09-08T00:00:00","2020-09-09T00:00:00","2020-09-10T00:00:00","2020-09-11T00:00:00","2020-09-12T00:00:00","2020-09-13T00:00:00","2020-09-14T00:00:00","2020-09-15T00:00:00","2020-09-16T00:00:00","2020-09-17T00:00:00","2020-09-18T00:00:00","2020-09-19T00:00:00","2020-09-20T00:00:00","2020-09-21T00:00:00","2020-09-22T00:00:00","2020-09-23T00:00:00","2020-09-24T00:00:00","2020-09-25T00:00:00","2020-09-26T00:00:00","2020-09-27T00:00:00","2020-09-28T00:00:00","2020-09-29T00:00:00","2020-09-30T00:00:00","2020-10-01T00:00:00","2020-10-02T00:00:00","2020-10-03T00:00:00","2020-10-04T00:00:00","2020-10-05T00:00:00","2020-10-06T00:00:00","2020-10-07T00:00:00","2020-10-08T00:00:00","2020-10-09T00:00:00","2020-10-10T00:00:00","2020-10-11T00:00:00","2020-10-12T00:00:00","2020-10-13T00:00:00","2020-10-14T00:00:00","2020-10-15T00:00:00","2020-10-16T00:00:00","2020-10-17T00:00:00","2020-10-18T00:00:00","2020-10-19T00:00:00","2020-10-20T00:00:00","2020-10-21T00:00:00","2020-10-22T00:00:00","2020-10-23T00:00:00","2020-10-24T00:00:00","2020-10-25T00:00:00","2020-10-26T00:00:00","2020-10-27T00:00:00","2020-10-28T00:00:00","2020-10-29T00:00:00","2020-10-30T00:00:00","2020-10-31T00:00:00","2020-11-01T00:00:00","2020-11-02T00:00:00","2020-11-03T00:00:00","2020-11-04T00:00:00","2020-11-05T00:00:00","2020-11-06T00:00:00","2020-11-07T00:00:00","2020-11-08T00:00:00","2020-11-09T00:00:00","2020-11-10T00:00:00","2020-11-11T00:00:00","2020-11-12T00:00:00","2020-11-13T00:00:00","2020-11-14T00:00:00","2020-11-15T00:00:00","2020-11-16T00:00:00","2020-11-17T00:00:00","2020-11-18T00:00:00","2020-11-19T00:00:00","2020-11-20T00:00:00","2020-11-21T00:00:00","2020-11-22T00:00:00","2020-11-23T00:00:00","2020-11-24T00:00:00","2020-11-25T00:00:00","2020-11-26T00:00:00","2020-11-27T00:00:00","2020-11-28T00:00:00","2020-11-29T00:00:00","2020-11-30T00:00:00","2020-12-01T00:00:00","2020-12-02T00:00:00","2020-12-03T00:00:00","2020-12-04T00:00:00","2020-12-05T00:00:00","2020-12-06T00:00:00","2020-12-07T00:00:00","2020-12-08T00:00:00","2020-12-09T00:00:00","2020-12-10T00:00:00","2020-12-11T00:00:00","2020-12-12T00:00:00","2020-12-13T00:00:00","2020-12-14T00:00:00","2020-12-15T00:00:00","2020-12-16T00:00:00","2020-12-17T00:00:00","2020-12-18T00:00:00","2020-12-19T00:00:00","2020-12-20T00:00:00","2020-12-21T00:00:00","2020-12-22T00:00:00","2020-12-23T00:00:00","2020-12-24T00:00:00","2020-12-25T00:00:00","2020-12-26T00:00:00","2020-12-27T00:00:00","2020-12-28T00:00:00","2020-12-29T00:00:00","2020-12-30T00:00:00","2020-12-31T00:00:00","2021-01-01T00:00:00","2021-01-02T00:00:00","2021-01-03T00:00:00","2021-01-04T00:00:00","2021-01-05T00:00:00","2021-01-06T00:00:00","2021-01-07T00:00:00","2021-01-08T00:00:00","2021-01-09T00:00:00","2021-01-10T00:00:00","2021-01-11T00:00:00","2021-01-12T00:00:00","2021-01-13T00:00:00","2021-01-14T00:00:00","2021-01-15T00:00:00","2021-01-16T00:00:00","2021-01-17T00:00:00","2021-01-18T00:00:00","2021-01-19T00:00:00","2021-01-20T00:00:00","2021-01-21T00:00:00","2021-01-22T00:00:00","2021-01-23T00:00:00","2021-01-24T00:00:00","2021-01-25T00:00:00","2021-01-26T00:00:00","2021-01-27T00:00:00","2021-01-28T00:00:00","2021-01-29T00:00:00","2021-01-30T00:00:00","2021-01-31T00:00:00","2021-02-01T00:00:00","2021-02-02T00:00:00","2021-02-03T00:00:00","2021-02-04T00:00:00","2021-02-05T00:00:00","2021-02-06T00:00:00","2021-02-07T00:00:00","2021-02-08T00:00:00","2021-02-09T00:00:00","2021-02-10T00:00:00","2021-02-11T00:00:00","2021-02-12T00:00:00","2021-02-13T00:00:00","2021-02-14T00:00:00","2021-02-15T00:00:00","2021-02-16T00:00:00","2021-02-17T00:00:00","2021-02-18T00:00:00","2021-02-19T00:00:00","2021-02-20T00:00:00","2021-02-21T00:00:00","2021-02-22T00:00:00","2021-02-23T00:00:00","2021-02-24T00:00:00","2021-02-25T00:00:00","2021-02-26T00:00:00","2021-02-27T00:00:00","2021-02-28T00:00:00","2021-03-01T00:00:00","2021-03-02T00:00:00","2021-03-03T00:00:00","2021-03-04T00:00:00","2021-03-05T00:00:00","2021-03-06T00:00:00","2021-03-07T00:00:00","2021-03-08T00:00:00","2021-03-09T00:00:00","2021-03-10T00:00:00","2021-03-11T00:00:00","2021-03-12T00:00:00","2021-03-13T00:00:00","2021-03-14T00:00:00","2021-03-15T00:00:00","2021-03-16T00:00:00","2021-03-17T00:00:00","2021-03-18T00:00:00","2021-03-19T00:00:00","2021-03-20T00:00:00","2021-03-21T00:00:00","2021-03-22T00:00:00","2021-03-23T00:00:00","2021-03-24T00:00:00","2021-03-25T00:00:00","2021-03-26T00:00:00","2021-03-27T00:00:00","2021-03-28T00:00:00","2021-03-29T00:00:00","2021-03-30T00:00:00","2021-03-31T00:00:00","2021-04-01T00:00:00","2021-04-02T00:00:00","2021-04-03T00:00:00","2021-04-04T00:00:00","2021-04-05T00:00:00","2021-04-06T00:00:00","2021-04-07T00:00:00","2021-04-08T00:00:00","2021-04-09T00:00:00","2021-04-10T00:00:00","2021-04-11T00:00:00","2021-04-12T00:00:00","2021-04-13T00:00:00","2021-04-14T00:00:00","2021-04-15T00:00:00","2021-04-16T00:00:00","2021-04-17T00:00:00","2021-04-18T00:00:00","2021-04-19T00:00:00","2021-04-20T00:00:00","2021-04-21T00:00:00","2021-04-22T00:00:00","2021-04-23T00:00:00","2021-04-24T00:00:00","2021-04-25T00:00:00","2021-04-26T00:00:00","2021-04-27T00:00:00","2021-04-28T00:00:00","2021-04-29T00:00:00","2021-04-30T00:00:00","2021-05-01T00:00:00","2021-05-02T00:00:00","2021-05-03T00:00:00","2021-05-04T00:00:00","2021-05-05T00:00:00","2021-05-06T00:00:00","2021-05-07T00:00:00","2021-05-08T00:00:00","2021-05-09T00:00:00","2021-05-10T00:00:00","2021-05-11T00:00:00","2021-05-12T00:00:00","2021-05-13T00:00:00","2021-05-14T00:00:00","2021-05-15T00:00:00","2021-05-16T00:00:00","2021-05-17T00:00:00","2021-05-18T00:00:00","2021-05-19T00:00:00","2021-05-20T00:00:00","2021-05-21T00:00:00","2021-05-22T00:00:00","2021-05-23T00:00:00","2021-05-24T00:00:00","2021-05-25T00:00:00","2021-05-26T00:00:00","2021-05-27T00:00:00","2021-05-28T00:00:00","2021-05-29T00:00:00","2021-05-30T00:00:00","2021-05-31T00:00:00","2021-06-01T00:00:00","2021-06-02T00:00:00","2021-06-03T00:00:00","2021-06-04T00:00:00","2021-06-05T00:00:00","2021-06-06T00:00:00","2021-06-07T00:00:00","2021-06-08T00:00:00","2021-06-09T00:00:00","2021-06-10T00:00:00","2021-06-11T00:00:00","2021-06-12T00:00:00","2021-06-13T00:00:00","2021-06-14T00:00:00","2021-06-15T00:00:00","2021-06-16T00:00:00","2021-06-17T00:00:00","2021-06-18T00:00:00","2021-06-19T00:00:00","2021-06-20T00:00:00","2021-06-21T00:00:00","2021-06-22T00:00:00","2021-06-23T00:00:00","2021-06-24T00:00:00","2021-06-25T00:00:00","2021-06-26T00:00:00","2021-06-27T00:00:00","2021-06-28T00:00:00","2021-06-29T00:00:00","2021-06-30T00:00:00","2021-07-01T00:00:00","2021-07-02T00:00:00","2021-07-03T00:00:00","2021-07-04T00:00:00","2021-07-05T00:00:00","2021-07-06T00:00:00","2021-07-07T00:00:00","2021-07-08T00:00:00","2021-07-09T00:00:00","2021-07-10T00:00:00","2021-07-11T00:00:00","2021-07-12T00:00:00","2021-07-13T00:00:00","2021-07-14T00:00:00","2021-07-15T00:00:00","2021-07-16T00:00:00","2021-07-17T00:00:00","2021-07-18T00:00:00","2021-07-19T00:00:00","2021-07-20T00:00:00","2021-07-21T00:00:00","2021-07-22T00:00:00","2021-07-23T00:00:00","2021-07-24T00:00:00","2021-07-25T00:00:00","2021-07-26T00:00:00","2021-07-27T00:00:00","2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-30T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-12T00:00:00","2021-08-13T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-17T00:00:00","2021-08-18T00:00:00","2021-08-19T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-22T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-25T00:00:00","2021-08-26T00:00:00","2021-08-27T00:00:00","2021-08-28T00:00:00","2021-08-29T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-06T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-10T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-13T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-18T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-24T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-05T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[429,956,1116,1206,1286,1343,1455,1504,1553,1577,1613,1670,1732,1804,1854,1881,1893,1908,1938,1971,2017,2048,2090,2111,2130,2174,2191,2239,2266,1865,1381,1251,1192,1155,1129,1047,1030,987,986,990,959,939,897,882,876,876,884,897,907,907,925,897,883,1825,2023,2076,2072,2154,2213,2240,2287,2336,2414,2474,2556,2567,2577,2620,3572,4166,4426,4565,4618,4677,4842,5034,5173,5310,5657,5663,5762,5958,5288,5214,5318,5443,5465,5508,5586,6685,7723,7950,8265,8335,8430,8874,9273,8716,8428,8421,8320,8309,8636,8803,8885,9015,9110,8753,8796,9076,9140,9238,9576,9701,9880,9864,10010,10091,9171,8690,8778,8576,8502,8727,8638,8603,8464,8608,8621,8676,8957,9493,9930,10108,10221,10409,10720,10893,11382,13247,14518,15606,15691,15518,16393,16846,18282,19266,19777,19581,19513,20491,20750,21747,23113,23748,23690,23818,24341,24473,24129,24101,24393,24260,23988,24349,24906,24983,23535,22530,21562,21396,21812,21632,21638,20450,19644,18851,18942,19236,18692,18803,18267,17295,17130,17306,18936,20304,21470,22313,23107,23477,24197,25449,26012,26409,26792,27390,27822,28098,29112,31055,32674,33462,34610,35125,35773,37087,38325,38850,39193,39908,40428,40787,41226,40302,39458,39346,39496,38772,38015,38462,38752,38949,39454,39501,38943,38543,39130,39635,38930,37839,38441,37831,38243,38856,38764,38692,39395,40119,39714,39232,39734,40306,40312,40297,39928,39286,39760,40449,39884,39559,39190,38670,38282,38717,39130,38748,38177,37419,37659,37354,38137,38503,38718,39031,39331,39881,40215,41027,42219,42625,43470,44330,45270,45869,47261,48235,50102,51472,52512,53521,53666,54408,54787,55763,56573,57299,57771,57366,56689,55956,56245,56092,56074,56140,56665,56525,56505,56301,56533,55524,55212,54833,54991,54376,53550,52081,51145,50663,50007,50301,49753,50092,49098,48428,47495,47818,48337,48498,48949,48245,48309,48217,47845,46766,46364,45625,45071,43907,44587,45154,45869,46216,46215,46254,46245,46892,46802,47135,47136,47585,47538,48481,50136,51171,51890,52051,52345,52937,52916,52754,53051,53998,53511,53558,53403,53004,53172,52973,52809,51524,50435,49979,50286,50607,50659,51131,51977,52428,52659,52359,52178,53915,58266,57391,57243,57814,58623,60650,63337,65943,66588,67340,67732,69916,73150,76002,77949,78863,80193,81838,84015,86566,89894,93176,93198,91536,91221,91470,91480,92364,91400,87146,86995,86813,86405,85234,84510,82525,79866,78416,77535,77233,76035,74474,73220,70881,69238,69346,68631,67119,65172,62458,59078,58742,58967,58364,58638,60315,60366,58664,58105,57853,58510,58898,59738,59561,59478,59337,59122,59804,59700,60254,61011,60057,60478,61271,60246,61832,63029,63818,63624,63996,63788,64473,65592,65395,64129,63203,62932,63075,63318,63143,63560,63302,62875,62574,62491,62581,64837,65730,66107,66214,68562,69487,69628,71213,75108,80146,81948,80955,79128,77943,76792,75894,75456,74203,73037,71918,70956,69927,69700,69772,67797,65827,63992,62602,71929,73919,76513,84719,96048,104465,115239,121785,123915,120966,123606,132402,143462,154424,163484,167577,170609,190088,199461,218342,228982,239159,244699,248793,257883,273170,284321,295041,304302,299122,298413,304200,304836,302753,302244,301618,298701,298923,302628,302198,298143,297928,296634,291828,291967,298940,289775,291967,284767,285753,281170,280634,288464,289757,288085,289507,290314,286212,285696,291997,294937,298721,299567,300664,294359,294335,300922,305770,309822,314302,316729,315306,318803,332068,341848,348704,350709,350820,346755,352701,364285,365453,367105,374144,383922,386070,389846,401527,407323,418148,411388,421029,424725,427257,458385,466398,478518,484280,490612,488601,491923,504771,504156,504180,502835,503352,499493,500341,503892,505386,513729,521201,519323,506153,501529,508558,510840,514856,514391,527483,511814,504507,516566,501491,505248,506131,503921,494108,491271,500148,502066,508499,510273,513055,507610,508135,519124,526112,533465,533839,535587,531486,532886,546383,576976,608237,610138,604068,593831,597397,598704,588276,581800,574818,571389,564047,563710,566007,555327,552141,548723,544291,535502,538200,573406,579624,582018,583616,582407,570165,568449,581283,585696,567172,543526,541550,535974,537838,548453,563862,590133,605060,620050,613104,615342,634443,652811,686252,718137,739083,742164,746663,763556,757946,767002,775286,779909,776151,786436,808187,838294,859235,872402,891935,894280,919976,942693,959096,978599,982195,1006447,1028321,1060101,1108541,1139350,1163110,1167915,1160007,1146051,1149693,1174221,1193468,1207588,1223176,1241267,1254582,1281087,1309659,1327028,1326049,1331926,1350387,1341798,1352692,1365695,1384222,1401270,1402944,1416321,1399352,1376491,1383561,1383126,1381643,1389677,1391685,1384732,1391267,1423879,1446052,1464900,1473165,1477604,1464933,1454819,1463880,1472691,1482518,1488832,1503097,1460293,1463761,1486101,1501066,1509167,1518213,1515941,1496641,1495958,1509332,1513940,1497872,1444380,1387900,1400789,1424941,1449336,1454627,1454887,1424976,1406003,1418143,1456152,1492722,1519257,1522431,1497084,1479724,1482578,1535385,1564818,1575364,1569464,1553375,1536131,1564195,1608519,1649313,1679646,1685779,1681859,1720305,1773889,1788372,1812408,1835006,1844623,1833738,1844237,1875122,1889315,1907143,1918741,1919852,1912687,1927906,1963268,1975047,1997865,2007361,2023699,2010759,2020368,2056237,2068494,2082151,2085075,2086761,2073649,2085809,2124389,2152017,2158230,2166579,2172103,2146856,2147195,2188741,2206249,2222838,2209880,2205320,2177696,2176850,2222261,2235487,2247625,2251446,2251018,2216155,2217795,2245020,2249217,2265169,2267925,2282946,2260575,2261953,2297950,2310684,2330798,2343856,2342653,2311462,2313718,2349181,2358263,2375860,2376428,2380305,2351325,2348341,2387431,2397520,2410126,2412959,2409172,2374115,2370608,2412557,2433953,2448670,2446657,2437981,2389204,2386594,2423257,2434003,2448728,2449817,2446852,2410871,2410356,2459635,2479084,2489394,2487329,2484511,2451480,2458708,2483439,2487189,2491769,2501467,2515408,2481438,2493562,2557423,2567811,2585621,2615897,2633924,2624073,2654600,2716628,2751222,2787867,2827805,2850772,2841875,2860111,2941207,2976868,3003051,3030859,3055746,3043554,3059536,3129333,3228814,3292834,3342861,3378454,3371586,3403015,3504707,3583076,3653870,3704162,3747231,3738597,3752082,3829391,3898237,3956596,3986945,4174751,4289057,4315653,4440032,4500211,4537305,4568845,4612017,4611859,4635922,4731079,4760706,4760927,4761839,4752237,4727484,4722975,4800909,4828963,4829795,4845629,4838698,4801095,4812942,4890151,4924245,4916874,4894001,4882200,4666278,4516977,4568631,4530913,4485217,4467136,4471845,4424359,4397415,4456092,4559615,4740262,4881809,5016827,5136410,5241880,5428161,5594496,5645661,5702237,5738983,5731888,5745649,5849909,5897884,5958198,6014708,6044838,6043612,6076808,6193884,6238504,6298463,6347776,6419147,6398313,6413102,6486540,6480433,6351374,6173117,6015077,5857374,5731307,5677183,5550800,5349294,5284951,5225896,5136859,5115805,5135299,5101164,5096628,5053808,5062441,5077874,5096874,5160597,5189991,5150278,5114236,5107079,4995253,4949233,4955833,4959404,4967797,5026483,5066679,5057392,5012670,5022287,5020839,5034367,5071952,5068452,4989492,4964583,4987242,5011577,4995230,4971555,4954936,4831091,4736773,4750920,4722236,4684380,4730758,4736494,4652445,4655810,4717467,4765229,4785855,4812010,4813960,4743190,4736881,4825844,4866991,4908688,4966815,5002608,4972554,5001733,5075205,5126986,5135415,5175982,5215086,5170947,5201997,5306067,5329859,5351321,5347873,5338567,5287274,5315025,5395625,5454552,5454928,5452670,5451099,5386592,5380698,5423555,5434183,5432406,5411360,5367091,5286433,5271311,5324916,5355534,5340277,5334561,5340925,5245447,5246501,5324788,5341402,5326365,5320757,5327960,5262177,5282243,5367088,5397486,5400732,5430534,5467225,5413521,5412587,5492398,5518798,5534845,5545907,5574884,5516477,5519348,5597282,5629477,5637881,5642977,5653804,5572526,5577836,5630538,5616612,5604982,5628318,5683755,5647088,5672671,5749887,5763958,5782191,5838936,5876877,5815140,5849709,5971045,6022917,6050353,6084541,6109836,6079029,6120029,6201049,6247786,6284169,6370084,6427278,6378669,6380274,6460628,6519970,6563035,6589319,6626635,6533929,6551670,6627982,6653358,6690722,6730986,6729758,6637122,6620668,6704261,6730341,6759607,6796796,6809052,6749970,6728477,6842180,6912606,6968764,7005766,7003599,6950035,6997336,7134967,7233636,7260200,7297241,7286882,7228210,7267883,7373734,7464911,7519220,7587824,7610979,7520077,7513179,7622452,7790669,7890913,7953909,8055329,7979397,7993621,8086748,8119336,8152731,8172424,8150390,7983488,7916417,8003257,8067040,8009274,7968227,7925422,7869277,7843661,7885239,7859205,7796151,7760001,7701506,7595561,7581272,7689330,7755126,7614666,7513249,7475471,7310803,7289803,7338395,7334972,7354300,7317993,7256060,7162372,7197679,7283724,7259673,7204662,7221514,7233484,7149956,7116176,7187875,7164852,7126945,7088160,7010316,6886176,6816523,6819837,6770479,6681760,6618235,6582572,6430056,6362911,6411682,6401792,6374138,6279470,6240435,6162319,6126002,6188529,6215095,6195028,6143999,6132064,6039178,6023093,6093528,6110161,6129172,6146546,6165737,6654225,7271956,7903471,7973654,7995251,7999778,8029842,7971722,7958722,8048786,8117118,8161501,8195792,8218986,8158707,8132957,8236670,8345625,8422144,8462870,8478694,8397961,8403080,8493091,8580791,8598414,8632891,8639653,8570328,8069734,7552804,7075458,7100286,7135186,7151688,7084055,7067041,7197514,7241050,7237344,7278452,7299766,7233648,7281551,7399373,7464699,7419127,7400413,7416610,7419704,7448957,7565983,7631016,7637014,7609087,7631915,7561528,7546580,7592909,7622061,7606330,7604732,7601230,7547818,7543111,7640090,7654866,7641605,7680616,7686889,7599656,7576148,7594950,7606383,7608904,7657403,8038403,8461067,8783223,9131719,9531937,9882823,9869613,10311723,10428587,10878434,11036120,11407623,11422169,11659030,11851316,11955039,12083595,12363638,12638089,12857643,13074730,13210911,13395542,13578857,13899333,14063582,14376631,14544285,14727024,14405558,14044245,13999904,13812722,13822919,13921195,14492931,14461460,14479043,14390251,14625034,14706148,14833230,14862492,14789628,14889489,15007163,15091536,15051683,15049420,15162339,15110812,15080761,15166977,15275302,15415590,15390441,15430907,15434423,15505767,15605779,15611291,15823670,15674622,15516499,15107647,14847104,14968281,14991393,15236798,15225859,15631379,15800124,16117539,16399001,16699163,16860914,17159515,17504059,17596561,17902849,18081637,18398334,18439047,18746027,18936899,19107756,19198013,19554849,19996952,19975495,20172324,20385779,20463619,20268263,20400280,20352131,20202007,19768674,19487974,19155815,18727426,18416110,18055896,17840923,17534886,17167754,16604488,16351086,16029284,15821185,15427267,15308153,14909214,14488558,14099741,13896816,13689842,13191878,13168127,12787076,12498147,12174102,12552293,12481711,12493651,12519709,12602121,12553742,12384892,12608442,12601305,12667810,12543789,12712263,12609277,12703672,12652039,12752419,12733188,12756838,12687739,12572955,12575290,12662176,12677305,12571685,12606096,12503182,12467990,12291876,12441944,12249900,12412723,12348842,12489286,12398391,12433266,12493705,12468270,12555680,12522285,12547448,12328084,12334384,12304261,12347808,12287056,12361967,12338119,12269694,12287280,12438538,12404435,12502977,12459833,12466776,12470531,12471321,12582898,12512936,12503865,12332105,12314825,12092368,12133800,12189860,12246398,12355869,12330663,12312717,12208360,12180163,12263138,12307606,12330211,12292483,12236969,12145483,12085281,12102664,12035423,12086238,11987570,11919121,11822450,11722543,11766696,11736847,11732331,11650017,11599194,11406064,11333603,11255694,11238266,11155997,11015261,10955421,10874530,10790147,10836739,10762400,10816584,10786292,10986849,10911535,11003558,11173372,11462203,11578275,11690096,11730803,11761651,11978327,12211164,12394772,12591786,12857571,13085610,13118107,13264376,13565052,13725718,13847952,13963328,14047698,14105673,14133575,14332069,14453946,14700440,14752685,14823157,14624137,14716603,14777567,14792295,14617297,14583013,14608904,14539084,14511511,14410977,14369967,14383009,14314974,14184692,14040398,14012695,14101738,14049837,14119545,14062175,14078975,13970410,13943409,14054402,14137185,14193453,14152633,14221402,14221451,14358243,14500857,14626263,14704378,14759612,14852495,14898358,14937857,15061814,15132563,15185840,15641903,16018973,16248435,16536791,17033694,17395556,17808870,18199486,18714091,18927517,19197001,19588793,19614946,19565039,19512146,19515042,19356668,19234427,19166415,19069877,19060118,19025800,18980988,18747590,18552836,18565118,18536374,18527549,18498456,17956851,17502499,17135200,16919314,16564747,16273754,15907604,15487272,14845531,14490514,14243394,13957146,13873448,13833632,13796328,13586092,13492241,13506687,13445442,13341738,13153879,13016614,12863149,12790939,12748215,12704361,12664415,12550737,12526310,12336452,12205564,12154847,11979574,11876239,11729376,11596876,11440337,11394645,11390543,11361038,11267849,11287429,11288373,11174004,11138123,11172981,11175958,11187933,11160614,11160284,11062564,11010314,11039009,11021818,10975671,10923282,10893166,10758410,10744287,10813842,10842496,10943621,10929282,11001590,10993965,11071945,11245648,11318432,11814383,12359470,12971094,13271182,13612388,14102538,14500719,14376060,14228270,14149993,13973324,13840732,13790810,13711044,13625205,13520660,13409614,13212058,13041436,12964136,12865350,12728037,12543463,12388756,12128555,11888568,11698586,11503989,11345402,10716147,10016984,9163089,8599525,8182832,7660633,7171243,7168953,7188463,7091685,7071588,7107732,7110923,7124512,7131891,7135453,7085001,7094159,7175975,7226843,7265067,7294338,7332025,7283768,7284512,7357654,7413939,7399159,7402064,7422573,7366444,7390180,7481899,7500740,7503666,7509866,7551863,7487763,7510956,7621111,7690301,7740991,7781353,7792776,7761288,7794797,7883499,7931148,7927776,7907659,7936366,7889899,7880481,7945480,7967424,7934070,7932915,7955980,7878271,7864082,7903157,7903450,7891458,7907966,7925620,7839562,7840125,7880584,7884208,7869925,7860909,7844469,7807809,7780146,7806337,7809223,7789145,7786547,7814165,7722716,7708203,7764645,7786028,7754016,7729046,7724831,7649712,7640046,7689064,7701617,7710779,7708401,7709203,7653594,7634980,7678840,7742627,7753784,7745073,7718213,7637032,7596948,7653357,7653696,7637365,7608798,7596562,7509483,7487542,7498874,7496281,7467531,7469404,7467443,7412358,7403219,7462545,7518049,7507719,7474549,7485459,7442945,7454832,7538968,7522996,7426104,7355637,7333300,7270872,7239921,7283512,7263040,7236757,7243165,7342363,7300302,7244678,7277132,7278115,7248285,7227159,7270583,7226307,7208455,7209920,7176932,7110351,7096402,7141602,7093523,7034492,7056919,7013882,7013031,7052896,7054306,6986118,6947306,7016466,7037032,7025259,7027277,7102039,6989101,6959290,7037297,7075370,7068649,7062428,7125305,7036467,7016693,7074240,7127802,7152549,7168717,7197992,7087972,7035749,7104050,7150295,7201985,7226039,7264998,7274662,7303001,7390497,7432497,7461904,7504583,7569185,7420950,7408133,7484400,7542497,7536345,7585091,7642252,7536001,7518376,7612845,7629618,7704827,7757398,7834244,7819944,7849059,7908246,7905552,7887848,7899610,7947278,7896639,7873958,7964307,8008230,7995426,7988743,8041085,7931150,7897457,7933191,7951060,8002373,8032114,8036505,7934875,7903857,7956490,8013552,8045742,8018927,7984653,7863311,7824524,7887901,7920418,7923469,7919583,7946997,7880088,7863146,7935664,7919226,7890368,7868779,7852952,7752447,7752678,7891533,7978060,7993035,7928761,7957079,7929058,7954004,8042535,8075083,8004041,7958326,7945735,7884434,7904238,7970653,7975540,8009328,8030874,8011862,7886662,7816277,7832399,7819300,7800034,7802428,7804553,7729376,7693855,7751336,7699517,7603655,7544759,7515476,7376891,7289213,7312536,7312005,7289933,7254115,7228901,7106271,7049928,7042874,7004141,6972250,6937655,6960467,6910081,6903728,6996370,7022859,7028921,7061198,7059253,6993570,6984993,7046837,7047436,7043281,7051974,7060187,6968629,6945464,6996041,6998583,6964168,6917924,6896375,6825415,6800751,6802232,6754391,6697467,6648293,6591317,6439806,6385939,6379453,6338181,6285238,6246820,6204537,6117110,6101599,6158420,6155356,6132214,6120648,6087575,6002826,6011289,6071335,6117056,6147115,6180139,6222386,6203234,6216508,6304516,6413103,6472564,6517937,6569204,6529259,6542227,6609196,6717172,6729389,6750546,6714907,6626283,6605549,6625542,6575480,6521406,6486442,6445972,6369770,6343766,6358241,6340415,6258045,6171668,6105384,5980879,5938141,5936647,5887645,5824070,5783818,5738012,5632710,5605298,5616402,5596919,5497384,5479545,5430603,5359880,5338168,5363447,5371061,5371698,5359331,5348075,5276158,5254028,5285868,5276976,5252906,5266527,5288881,5236954,5240708,5277347,5294818,5298132,5289666,5308744,5286838,5294282,5362682,5408896,5398072,5415815,5386408,5348186,5352210,5379611,5381319,5360867,5350971,5322021,5259823,5259704,5277432,5262800,5248377,5242309,5229684,5162802,5137997,5145978,5129848,5072092,5041071,4964430,4834711,4760652,4801450,4722445,4639553,4579330,4498873,4403212,4332833,4304928,4327981,4347179,4354772,4350314,4304821,4277021,4272546,4252786,4213605,4196463,4159767,4057859,4016621,4062337,4050623,4030122,4039820,4015435,3981779,3975100,4015447,3979174,3977119,3956037,3934201,3878998,3865050,3887187,3913182,3879062,3831614,3785629,3744747,3809895,3964030,4064089,4142906,4240262,4307938,4334529,4412602,4553467,4597784,4653462,4620893,4590105,4531606,4514535,4525075,4505040,4447740,4426990,4410853,4367695,4374364,4409286,4420096,4395821,4364437,4306900,4242319,4175602,4085118,3923140,3803366,3719982,3612655,3478053,3394425,3358586,3240384,3153648,3092155,3103941,3072533,3068308,3106396,3136789,3149700,3175909,3185015,3164137,3168614,3201881,3225140,3233731,3236598,3223000,3209676,3211836,3261964,3300109,3325826,3331742,3313903,3278863,3274361,3293086,3282586,3272699,3255801,3225193,3177780,3169511,3191263,3179252,3158789,3134283,3100274,3050894,3035833,3055441,3040992,3008802,2980869,2961652,2930633,2921199,2942424,2933425,2914980,2890758,2873880,2831047,2820867,2823734,2816557,2795809,2784986,2765810,2732349,2717928,2737622,2739315,2741140,2736377,2720615,2690144,2684400,2707115,2701804,2691899,2682429,2670512,2634376,2617592,2634512,2631573,2625944,2625088,2626747,2599144,2602287,2616479,2622703,2629878,2646168,2640463,2615920,2612933,2634484,2638379,2630500,2621826,2611178,2596990,2605883,2633878,2644772,2650634,2662470,2672011,2656718,2660432,2694988,2717474,2731331,2751278,2762945,2739130,2742023,2770326,2802849,2821986,2822292,2810376,2794997,2803097,2841111,2867610,2883604,2913720,2939919,2927904,2925556,2958202,2977713,2987390,2992971,2994897,2966396,2955052,2979840,2984917,2968943,2953689,2935983,2888776,2877419,2894089,2898340,2886679,2875743,2874912,2843768,2830570,2848649,2843098,2837615,2828456,2805172,2753081,2744047,2758127,2748354,2736669,2727518,2719237,2678274,2665602,2687738,2677549,2662508,2648689,2637030,2599205,2594517,2599087,2578786,2548218,2519800,2489978,2453460,2439624,2441686,2435215,2426045,2409189,2392282,2360907,2362158,2389748,2392738,2382728,2381667,2368592,2340253,2332828,2353220,2347706,2345775,2345390,2345073,2327631,2325786,2343829,2362366,2386744,2410648,2419184,2415393,2411841,2443360,2476795,2497479,2536106,2524462,2504394,2501082,2509607,2499188,2493007,2509428,2509224,2505086,2500352,2532528,2528343,2531444,2524169,2521304,2510040,2522247,2541868,2540843,2546277,2543226,2523789,2504435,2499801,2525372,2549735,2567351,2561073,2546468,2550817,2561745,2591507,2637826,2656331,2683541,2684329,2675074,2681550,2747970,2739454,2769419,2811001,2842689,2835646,2839897,2854451,2878050,2903842,2915679,2923638,2926975,2941898,2984487,3008877,3011063,3000733,3001372,2974701,2979861,3012283,3025525,3010259,3004963,2992242,2973881,2955687,2959200,2932550,2952480,2953708,2922317,2888775,2887684,2902632,2923225,2924623,2927363,2927909,2912687,2910200,2930969,2940170,2930039,2922600,2912468,2893911,2889474,2909616,2914741,2923198,2949454,2954963,2938572,2929669,2965673,2988990,2992409,2990678,2979112,2963215,2972105,2990730,3011175,3006467,3000284,2995924,2969877,2960586,2977652,2984242,2972867,2972791,2961692,2934677,2927492,2932093,2925369,2913635,2894385,2851400,2826078,2815623,2834127,2836934,2826174,2820830,2820773,2797873,2785630,2794178,2808712,2804186,2797472,2789391,2766367,2759233,2767261,2705682,2608505,2508082,2445048,2426258,2433229,2450723,2476137,2478144,2472611,2467571,2446768,2435821,2465938,2488412,2468554,2450751,2434879,2398487,2385474,2415336,2417981,2400098,2385241,2364740,2341835,2332609,2357456,2387344,2445272,2526151,2606269,2619741,2593934,2591443,2576498,2533831,2505756,2479720,2437368,2413565,2417091,2391010,2357682,2362289,2350684,2326250,2322453,2343287,2352339,2344033,2339158,2328604,2306465,2300355,2312582,2302376,2278119,2267686,2269028,2251949,2269780,2306440,2316586,2322724,2338417,2348303,2353785,2377908,2421719,2457552,2484408,2488858],"yaxis":"y","type":"scattergl"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"timestamp"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"rolling_downloads"}},"legend":{"title":{"text":"version"},"tracegroupgap":0}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('5358e6a9-d563-4413-892c-b3cc4965393b');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div id="501d8216" class="cell" data-execution_count="16">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb17-1">group_bar(t, group_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"installer"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="c08dda6f-a086-4085-b805-520cbb4f221e" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("c08dda6f-a086-4085-b805-520cbb4f221e")) {                    Plotly.newPlot(                        "c08dda6f-a086-4085-b805-520cbb4f221e",                        [{"alignmentgroup":"True","hovertemplate":"installer=%{x}\u003cbr\u003edownloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["pip","setuptools","requests","","uv","poetry","Nexus","Artifactory","bandersnatch","Bazel","pdm","Browser","pex","devpi","Homebrew","OS","z3c.pypimirror","pep381client","conda","chaquopy","distribute"],"xaxis":"x","y":[2890144243,43276371,42904896,25699870,20765344,15475274,2027268,1480222,964959,664918,618623,517439,189275,30300,1855,364,358,112,108,81,3],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"installer"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"downloads"},"type":"log"},"legend":{"tracegroupgap":0},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('c08dda6f-a086-4085-b805-520cbb4f221e');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
</div>
<div id="tabset-1-2" class="tab-pane" aria-labelledby="tabset-1-2-tab">
<div id="f884b7f3" class="cell" data-execution_count="17">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb18-1">package <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"chdb"</span></span>
<span id="cb18-2"></span>
<span id="cb18-3">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.table(</span>
<span id="cb18-4">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pypi_downloads_per_day_by_version_by_installer_by_type_by_country"</span></span>
<span id="cb18-5">).<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"project"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> package)</span></code></pre></div></div>
</div>
<div id="89831471" class="cell" data-execution_count="18">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb19" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb19-1">day_of_week_bar(t)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="6067af96-0189-407a-9a62-d693f7279b63" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("6067af96-0189-407a-9a62-d693f7279b63")) {                    Plotly.newPlot(                        "6067af96-0189-407a-9a62-d693f7279b63",                        [{"alignmentgroup":"True","hovertemplate":"day_of_week=%{x}\u003cbr\u003edownloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["Saturday","Thursday","Sunday","Tuesday","Monday","Friday","Wednesday"],"xaxis":"x","y":[33700,70300,27608,66577,63708,59362,73798],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"day_of_week"},"categoryorder":"array","categoryarray":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"downloads"}},"legend":{"tracegroupgap":0},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('6067af96-0189-407a-9a62-d693f7279b63');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div id="ac857a76" class="cell" data-execution_count="19">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb20" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb20-1">rolling_downloads(t)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="8cb45e69-38d6-4141-94a1-f89dac1ce7a6" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("8cb45e69-38d6-4141-94a1-f89dac1ce7a6")) {                    Plotly.newPlot(                        "8cb45e69-38d6-4141-94a1-f89dac1ce7a6",                        [{"hovertemplate":"timestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"","orientation":"v","showlegend":false,"x":["2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[351,1356,2186,2624,2853,3012,3177,3609,4035,4189,4368,4531,4802,4904,5238,5310,5458,5928,6844,7883,8396,8716,8807,8997,9109,9216,9431,9444,9721,10089,9465,8795,8598,8571,9750,10034,9882,10059,10023,9958,9871,9646,9590,9267,9300,9407,9582,9228,8491,8146,8127,8273,8643,8906,9009,8865,9001,8908,8324,8020,8230,8186,8243,6911,6482,6264,5712,5675,6242,6443,6472,6578,6636,6607,6452,6073,5648,5965,5987,5859,5975,5954,5764,5643,5649,5649,5585,5834,5977,5979,6046,5933,6117,6368,6600,6564,6540,5941,5857,6294,6392,6367,6443,6604,6437,6456,5927,5847,5783,5465,5391,5691,5692,5825,5791,5801,5442,5540,5653,5805,5936,5845,5632,5478,6199,6789,7386,7528,7245,7036,7078,7118,6972,6902,6841,7015,7195,7157,7252,7286,7052,7000,7174,8157,8214,8340,8064,7607,7221,6964,7559,7899,7809,7239,6890,6284,6254,6283,6380,6462,6274,6164,6203,6134,6031,5826,6001,5912,5698,5838,6757,6811,5828,6123,6020,6039,6229,6283,6494,5895,5583,5557,5437,5160,5250,5411,5649,5741,5797,5822,5841,6089,6174,6032,6034,5835,5966,5829,5678,4876,4864,4844,4408,4434,4414,4302,4281,4081,4038,3957,3975,4037,4039,4162,3829,3352,3525,3593,3789,4396,4323,4221,4622,4542,4655,4542,4715,5085,5290,5039,5128,5140,5204,5406,5513,5519,5849,6026,6156,6440,6813,7062,7500,7714,7961,8072,8358,8409,7886,7954,8382,7994,8429,8415,9109,9205,9035,9579,10043,11283,11661,11891,12014,12169,12484,12667,12936,14287,15086,15151,15082,14960,15233,15782,15795,15682,16149,16702,16615,16369,16574,16517,16521,15898,15746,15405,14673,14203,13031,12989,12806,12691,12474,12366,11961,11990,11493,11014,10776,11337,11005,10813,10454,10490,10871,10703,10235,10321,10929,11658,12315,13012,13691,13833,13999,14532,15572,16051,16702,18266,19089,19595,20067,21621,22312,22228,22403,22633,22677,23147,24171,25046,25681,25914,25892,26309,26487,26670,27158,27249,27802,27730,27998,28784,29499,29454,29745,30130,29096,28306,29120,29655,28948,28472,28595,28277,28051,28306,28446,28327,28194,28337,27576,27385,28353,28975,29821,29499,29710,28787,28595,29277,29654,29382,29589,29379,28219,27917,28472,28282,28283,28562,28719,28065,28260,29178,28913,29071,28875,28786,27874,27823,28451,28164,28555,28748,29642,29066,29102,30335,31390,33026,34147,34475,34548,34648,36611,38107,39351,40495,41453,41090,41265,42892,43925,45724,47270,48178,47713,47709,49956,50951,52009,52735,52559,50905,50520,51765,51740,51433,50030,49421,48153,47548,47576,46657,45795,44558,43486,41694,41324,42348,41590,41156,41569,40700,39006,38786,39913,39138,38910,39156,38534,37244,37039,37951,36814,35163,33166,31692,30466,30433,31978,33529,34613,35938,36100,35478,35528,37718,37915,38847,37748,35434,34325,34930,36826,37510,37717,37733,37434,36442,36408,38976,42238,47489,52333,56549,59849,62638,65176,65129,64930,63874,62354,61865,61418,64202,64168,65448,65426,66780,66437,66520,67972,67477,67311,67317,67007,65214,64948,66072,65270,62468,58249,54976,51450,48406,46974,45995,46185,47700,48840,48084,47435,49333,48383,48621,48121],"yaxis":"y","type":"scatter"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"timestamp"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"rolling_downloads"}},"legend":{"tracegroupgap":0}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('8cb45e69-38d6-4141-94a1-f89dac1ce7a6');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div id="435b1425" class="cell" data-execution_count="20">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb21" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb21-1">rolling_downloads_by_version(t, version_style<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"major.minor"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="47de66c2-1130-4be2-b3e5-d02311b89004" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("47de66c2-1130-4be2-b3e5-d02311b89004")) {                    Plotly.newPlot(                        "47de66c2-1130-4be2-b3e5-d02311b89004",                        [{"hovertemplate":"version=2.0\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"2.0","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"2.0","showlegend":true,"x":["2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[379,665,1495,1920,2135,2255,2421,2573,2636,2693,2798,2855,2978,2985,3058,3105,3163,3270,3283,3407,3537,3625,3685,3724,3760,3783,3825,3826,3906,3640,3428,2728,2473,2285,2200,2107,2046,2063,2083,2028,2012,1898,1924,1960,1951,1910,1862,1938,1853,1773,1703,1663,2655,3445,3577,3671,3792,4046,4142,4249],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=1.4\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"1.4","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"1.4","showlegend":true,"x":["2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[440,1311,1494,1564,1701,1854,2037,2174,2339,2415,2502,2509,2536,2555,2564,2569,2602,2651,2682,2749,2786,2869,2962,3007,3118,3173,3280,3326,3406,3053,2224,2143,2197,2162,2074,1943,1911,1947,2138,2270,2594,5474,9172,12213,14995,17753,20373,21240,21190,21222,21259,21230,21235,21134,21171,21181,21241,21236,21255,21227,21190,21167,21160,21181,21220,21159,21021,20824,20655,20423,17589,13917,10931,8199,5463,2850,1980,2003,2042,1949,1894,1877,1931,1987,2109],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=1.3\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"1.3","line":{"color":"#00cc96","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"1.3","showlegend":true,"x":["2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[653,992,1252,1388,1517,1714,1811,1978,2093,2232,2256,2295,2379,2468,2574,2671,2759,2812,2895,3049,3131,3271,3478,3647,3709,3721,3864,3935,4108,3549,3328,3124,3029,3000,2967,3003,2985,2910,2824,2812,2847,2869,2903,2918,2908,2823,2819,2818,2795,2806,2752,2576,2437,2383,2420,2319,2315,2281,2260,2150,2103,2132,2122,2043,2050,2004,1993,1959,1973,1977,1915,1826,1763,1699,1715,1747,1720,1674,1722,1750,1740,1739,1877,1928,1995,2066,2054,2002,2008,2089,2073,1990,1909,1792,1780,1781,1855,1945,1991,2178,2339,2357,2343,2540,2594,2632,2589,2508,2431,2468,2518,2434,2457,2441,2426,2331,2329,2434,2451,2459,2569,2669,2704,2640,2722,2767,2779,2747,2605,2481,2423,2547,2445,2416,2419,2450,2402,2427,2429,2423,2443,2360,2326,2212,2192,2240,2272,2247,2294,2246,2175,2142,2222,2154,2096,2048,2079,1996,1926,1974,1928,1896,1890],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=1.2\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"1.2","line":{"color":"#ab63fa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"1.2","showlegend":true,"x":["2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[636,931,1024,1287,1406,1476,1563,1823,2314,2668,2721,2802,3119,3595,4097,4500,4791,4921,5038,5592,6214,6759,7377,8248,9151,9401,9999,11374,12099,12130,12460,12576,12487,12983,14026,14971,15543,15861,15774,15857,15947,16342,16848,17169,17673,17635,17680,18267,18824,19192,19472,19929,19291,18503,19329,19613,19053,18895,18903,18432,18371,19058,19166,18888,18836,19015,18357,18244,19458,20189,20455,20041,20001,19233,19078,19761,19981,19632,19388,19068,18068,17884,18364,18167,18148,18242,18306,17705,17703,18126,17777,17586,17317,17004,16121,16043,16492,15766,15690,16222,17076,16654,16667,18052,18936,19787,20825,21541,21368,21462,23551,25016,26188,27381,28413,28118,28380,30221,31472,33134,34659,35789,35303,35328,37456,38558,39957,40714,40608,39310,39076,40065,39975,39531,39024,38602,37310,37067,37059,35958,35130,34151,32968,31146,30847,31728,31112,30530,30113,29337,27825,27802,28824,27977,27709,27375,27128,25954,25909,26892,26175,24847,23637,22465,21288,21233,22743,24302,25429,26125,26198,25612,25838,27188,27170,27195,26070,24464,23306,23274,25014,25598,25874,25833,25831,24616,24550,26600,26905,28392,29899,31099,31242,31211,32537,32393,32105,31097,30176,29298,29185,31394,31852,33173,33710,35066,35135,35255,37195,36791,36768,36632,36473,35079,35107,36352,35549,35600,35080,34738,33673,33607,34762,35097,35358,35707,36100,35326,35161,36853,35921,36067,35335],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=1.1\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"1.1","line":{"color":"#FFA15A","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"1.1","showlegend":true,"x":["2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[350,737,865,918,991,1044,1080,1090,1144,1153,1163,1215,1261,1317,1355,1425,1464,1648,1690,1805,1924,2034,2116,2281,2341,2416,2523,2591,2668,2387,2052,1990,1991,1999,2036,2100,2236,2252,2296,2335,2419,2444,2457,2554,2537,2570,2440,2477,2453,2414,2371,2375,2313,2301,2324,2313,2362,2401,2443,2489,2530,2578,2617,2624,2651,2649,2733,2796,2859,2819,2844,2890,2889,2932,2978,3051,3068,3075,3112,3160,3170,3164,3196,3206,3229,3257,3237,3224,3241,3272,3270,3249,3276,3266,3237,3205,3290,3307,3354,3354,3335,3326,3326,3329,3337,3357,3359,3348,3397,3449,3458,3519,3532,3513,3476,3495,3506,3563,3575,3635,3689,3704,3710,3698,3734,3657,3644,3604,3657,3662,3635,3639,3640,3620,3600,3597,3587,3536,3497,3501,3475,3492,3517,3505,3489,3485,3419,3417,3373,3316,3273,3292,3312,3258,3239,3227,3225,3174,3171,3213,3217,3199,3188,3215,3214,3235,3217,3159,3127,3113,3030,2969,2934,2902,2859,2880,2776,2731,2686,2635,2532,2415,2315,2238,2205,2174,2129,2089,2009,2018,1961,1944,1876,1873,1814,1776,1775,1772,1744,1790,1788,1821,1810,1799,1766,1774,1747,1753,1763,1782,1836,1894,1955,1951,1968,1989,1992,1992,1947,1981,1960,2015,2021,2043,2063,2113,2096,2117,2074,2066,2038,2065,2064,2024,2032,2054,2084,2097,2109,2132,2165,2149,2171,2152,2163,2196,2200,2196,2169,2165,2161,2152,2193],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=1.0\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"1.0","line":{"color":"#19d3f3","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"1.0","showlegend":true,"x":["2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-20T00:00:00","2024-05-23T00:00:00","2024-05-25T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-20T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-29T00:00:00","2024-07-01T00:00:00","2024-07-03T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-17T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-24T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-04T00:00:00","2024-08-08T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-13T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-27T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[533,688,752,1139,1470,1637,1698,1769,1989,2007,2063,2112,2624,2759,3091,3687,3926,4358,4553,4839,4964,5086,5205,5647,5918,6768,7397,7606,7716,7474,7557,7752,7480,7347,7324,7315,7260,7061,7080,7066,7021,6516,6425,6095,5517,5293,4895,4746,4462,4350,4243,4126,3774,3599,2857,2235,2126,2018,1763,1601,1381,1310,1142,1022,1066,1152,1275,1308,1436,1470,1464,1424,1506,1512,1609,1767,1740,1764,1761,1771,1815,1737,1650,1569,1605,1515,1530,1509,1443,1434,1428,1423,1438,1380,1325,1221,1181,1027,999,1001,998,929,935,824,647,656,645,661,658,613,833,848,868,826,831,815,808,800,788,767,758,744,721,681,681,658,657,662,684,703,699,679,737,760,748,748,730,710,717,532,538,532,650,670,733,730,813,852,893,890,896,885,884,862,868,858,846,824,805,804,809,756,739,724,714,745,758,780,741,716,676,587,562,499,513,459,404,352,361,351,355,367,358,365,415,427,439,445,436,427,423,409,423,419,390,420,408,420,429,443,429,456,456,455,432,436,444,427,421,443,440,581,563,607,622,622,630,644,653,681,689,677,680,690,659,672,667,668,675,660,629,629,626,656],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.16\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.16","line":{"color":"#FF6692","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.16","showlegend":true,"x":["2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2024-01-03T00:00:00","2024-01-05T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-20T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-26T00:00:00","2024-06-03T00:00:00","2024-06-17T00:00:00","2024-07-27T00:00:00"],"xaxis":"x","y":[201,358,418,513,578,620,683,732,744,776,820,826,839,879,921,924,945,959,990,993,996,998,1000,1001,1002,1028,1029,1041,1043,852,707,658,566,502,467,408,363,356,352,309,309,302,263,227,226,224,228,199,198,196,206],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.15\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.15","line":{"color":"#B6E880","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.15","showlegend":true,"x":["2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[302,696,844,972,1018,1056,1100,1158,1227,1236,1310,1329,1352,1382,1505,1545,1571,1609,1625,1639,1684,1725,1752,1805,1839,1845,1900,1935,2032,1820,1504,1467,1462,1556,1632,1666,1711,1748,1844,1844,1924,2063,2174,2159,2212,2292,2368,2481,2598,2669,2727,2796,2821,2884,2978,3053,3124,3137,3153,3162,3139,3112,3066,3104,3142,3156,3147,3134,3154,3213,3186,3177,3188,3209,3192,3202,3183,3147,3126,3139,3123,3127,3141,3139,3110,3125,3103,3092,3085,3079,3099,3092,3045,3084,3050,3059,3050,3059,3014,2971,2928,2910,2914,2902,2866,2843,2864,2847,2841,2888,2882,2847,2849,2822,2841,2873,2875,2901,2945,2898,2897,2905,2848,2835,2864,2913,2885,2849,2841,2835,2801,2751,2741,2776,2758,2726,2715,2672,2640,2632,2629,2599,2600,2524,2481,2465,2437,2376,2403,2378,2328,2306,2298,2250,2205,2202,2192,2179,2180,2201,2201,2214,2191,2291,2279,2276,2286,2301,2336,2355,2376,2401,2428,2417,2446,3287,3289,3263,3297,3302,3292,3293,3289,3274,3271,3268,3262,3290,3355,3411,3492,3536,3504,3575,3654,3704,3737,3817,3864,3915,3958,4017,4096,4585,3747,3754,3764,3741,3745,3780,3800,3792,4021,3976,3924,3884,3796,3650,3549,3399,3266,3144,3008,2878,2764,2694,2518,2401,2266,2130,1995,1856,1259,1185,1119,1062,998,935,849,819,752,473,459,471,457,440,442,441,452,482,474,492,495,494,448,456,492,507,522,542,560,576,616,644,656,680,690,693,661,688,684,722,717,743,770,801,797,823,803,814,807,830,843,839,844,805,817,816,802,819,849,822,826,812,800,814,830,833,816,818,804,803,793],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.14\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.14","line":{"color":"#FF97FF","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.14","showlegend":true,"x":["2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-29T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-05T00:00:00","2024-01-09T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-30T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-04T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-11T00:00:00","2024-03-13T00:00:00","2024-03-15T00:00:00","2024-03-20T00:00:00","2024-03-22T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-31T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-23T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-20T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-25T00:00:00","2024-05-28T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-13T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-15T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-08T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-19T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-24T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[279,487,1229,1482,1567,1761,1800,1844,1922,1951,2028,2065,2109,2127,2147,2149,2230,2357,2483,2569,2640,2643,2656,2732,2781,2786,2808,2838,2882,2672,2575,1901,1735,1672,1503,1476,1439,1389,1398,1338,1333,1292,1296,1333,1336,1309,1234,1120,1108,1101,1168,1300,1278,1238,1337,1321,1335,1303,1247,1177,1156,1085,1086,1136,1186,1265,1273,1275,1308,1316,1380,1425,1421,1446,1445,1446,1449,1407,1356,1317,1195,1143,1215,1134,1175,1187,1205,1268,1297,1438,1461,1461,1409,1370,1293,1284,1342,1362,1368,1341,1320,1337,1345,1316,1278,1278,1261,1276,1270,1249,1267,1201,1183,1175,1120,1105,1044,989,808,784,769,748,766,795,785,703,641,611,601,572,556,549,541,563,559,548,535,568,574,569,555,558,549,554,543,545,552,575,590,597,603,563,540,554,553,560,559,559,544,498,475,462,441,446,452,452,395,419,419,433,440,418,413,417,424,433,433,418,433,427,430,432,443,458,459,459,448,451,467,475,473,487,490,488,480,487,456,458,458,465,491,495,490,467,475,475,490,475,480,481,479,440,427,426,425,422,419,396,433,447,419,408,405,399,392,406,398,428,407,388,405,414,428,405,411,399,385,379,392,378,376,366,366,367,366,381,382,330,339,367,376,386,400,400,400,393,364,365,355,350,339,339,353,332,315,329,332,329,343,343,345],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.13\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.13","line":{"color":"#FECB52","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.13","showlegend":true,"x":["2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-26T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-11T00:00:00","2024-03-13T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-13T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-20T00:00:00","2024-05-23T00:00:00","2024-05-25T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-06T00:00:00","2024-06-09T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-15T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-17T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-19T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-24T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[475,823,864,914,1007,1028,1105,1190,1223,1247,1249,1252,1268,1286,1332,1370,1418,1438,1443,1505,1583,1648,1669,1730,1732,1744,1757,1783,1815,1357,1029,993,967,891,929,906,889,894,900,922,929,990,1013,979,950,910,917,942,933,862,846,847,794,809,829,839,819,797,795,788,807,815,834,819,801,765,807,811,840,847,812,775,794,829,829,821,811,776,814,781,781,777,762,742,748,777,799,815,821,816,824,825,795,794,777,744,733,699,705,680,720,811,790,797,793,795,785,767,820,847,877,898,916,952,961,960,964,960,943,919,911,899,875,916,873,857,865,852,839,820,699,682,682,682,695,702,702,635,592,594,605,632,652,662,653,637,629,638,652,642,695,686,659,670,698,681,675,686,714,721,727,733,726,721,708,696,731,740,731,727,685,610,559,546,542,565,571,556,552,512,511,490,483,449,441,438,437,388,395,401,399,407,409,411,398,376,377,365,343,337,351,386,392,392,369,357,376,391,391,405,416,413,435,448,448,435,462,465,455,438,427,396,397,407,412,400,404,400,406,409,372,387,383,382,384,360,332,334,320,309,320,299,285,337,351,330,314,307,306,321,321,318,341,370,367,377,376,376,363,366,351,355,394,398,404,403,405,405,398,383,396,410,375,362,367,395,409,423,418,418,431,397,364,364,340,341,327,329,341,357,357,314,318,306,320,307,315],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.12\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.12","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.12","showlegend":true,"x":["2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-18T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-30T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-11T00:00:00","2023-10-14T00:00:00","2023-10-17T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-30T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-26T00:00:00","2023-12-29T00:00:00","2024-01-03T00:00:00","2024-01-05T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-30T00:00:00","2024-02-11T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-27T00:00:00","2024-03-11T00:00:00","2024-03-18T00:00:00","2024-07-27T00:00:00"],"xaxis":"x","y":[205,254,259,272,290,294,317,341,350,358,362,366,378,386,398,403,419,427,435,437,449,450,451,456,460,468,469,474,475,281,248,255,254,244,241,230,210,205,201,201,214,203,207,199,198,186,182,182,188,187,194,201,220,220,228,231,234,241,234,222,217,210,210,216,208,208,208,208,208,195,195,188,188,196,193,195,191,187,187,211,211,192,192,182,182,189,193,197,201,202,209,208,205,206,206,206,205,205,203,211,207,207,199,201,199,196,193,183,152,145,141,138,133,133],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.11\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.11","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.11","showlegend":true,"x":["2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-17T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-30T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-11T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-27T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-26T00:00:00","2023-12-29T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-05T00:00:00","2024-01-09T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-30T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-04T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-15T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-17T00:00:00","2024-03-20T00:00:00","2024-03-22T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-28T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-23T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-20T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-27T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-03T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-13T00:00:00","2024-06-15T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-23T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-12T00:00:00","2024-07-14T00:00:00","2024-07-17T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-04T00:00:00","2024-08-08T00:00:00","2024-08-10T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-19T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-24T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[464,772,1035,1121,1168,1224,1762,2285,2804,3013,3100,3133,3176,3294,3329,3355,3420,3464,3520,3554,3602,3749,3920,3957,4176,4957,5123,5209,5248,4811,4533,4289,4213,4167,4113,3596,3105,2599,2440,2415,2400,2382,2265,2260,2260,2226,2212,2167,2184,2162,2033,1866,1878,1661,882,726,656,638,625,611,598,634,691,715,724,730,732,683,629,627,611,659,674,657,638,650,659,625,614,626,639,634,662,690,756,755,787,788,795,819,781,738,719,704,674,674,710,717,712,719,687,656,661,659,620,615,614,646,635,638,613,625,715,662,662,624,632,616,604,664,694,717,725,747,778,771,771,775,774,772,763,750,755,756,767,766,734,730,717,713,673,583,576,580,573,558,566,549,511,486,509,513,498,485,462,457,457,495,488,499,506,521,542,530,548,554,577,599,615,628,608,594,590,612,606,620,634,619,614,562,536,522,497,491,489,476,425,428,427,429,414,421,408,390,384,361,340,318,327,347,360,360,331,336,308,307,328,343,357,371,389,385,407,415,414,443,448,441,436,426,395,403,401,411,415,413,409,388,359,359,371,400,395,400,387,356,341,327,315,313,326,318,303,303,273,310,317,315,315,316,308,310,287,276,316,326,324,338,338,326,330,330,341,354,351,339,353,365,365,350,406,435,449,464,426,426,439,438,452,453,456,485,492,447,448,451,451,443,437],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.10\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.10","line":{"color":"#00cc96","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.10","showlegend":true,"x":["2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-29T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-13T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-11T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-27T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-29T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-05T00:00:00","2024-01-09T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-15T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-11T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-20T00:00:00","2024-03-22T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-28T00:00:00","2024-03-31T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-13T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-11T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-20T00:00:00","2024-05-23T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-06T00:00:00","2024-06-13T00:00:00","2024-06-15T00:00:00","2024-06-18T00:00:00","2024-06-23T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-09T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-17T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-04T00:00:00","2024-08-08T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-19T00:00:00","2024-08-22T00:00:00","2024-08-24T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[368,441,495,835,1031,1192,1240,1298,1350,1411,1718,1915,2159,2254,2371,2434,2560,2672,2685,2712,2753,2857,3279,3390,3403,3476,3582,3639,3715,3383,3380,3430,3111,3060,3061,3075,3073,3065,3061,2777,2686,2463,2404,2299,2245,2129,2030,2040,2030,2008,1930,1527,1418,1411,1347,1250,1210,1166,1160,1114,1021,1049,912,777,764,716,680,625,603,507,502,470,474,473,472,471,464,455,444,435,418,444,442,441,456,440,421,400,388,381,333,326,300,254,271,287,298,313,304,300,297,286,286,281,277,269,286,282,266,272,245,243,236,214,216,227,238,233,253,268,283,314,319,322,299,295,291,306,298,305,301,297,301,297,297,282,286,293,293,300,306,308,314,319,319,309,312,296,298,322,302,302,282,291,290,310,318,330,334,349,369,380,384,384,382,377,377,372,365,365,364,367,367,351,349,343,343,333,302,300,301,299,293,293,262,254,246,258,243,233,222,231,227,221,226,246,247,254,250,264,269,275,278,283,298,301,309,308,302,301,311,315,315,322,314,307,284,284,274,267,254,258,261,261,250,254,254,258,246,235,233,242,237,226,216,201,211,223,223,215,215,212,216,216,216,216,232,236,239,236,233,233,238,231,225,218,212,217,226,230,214,210,203,210,211,202,187,187,188,204,207,200,200,203,226,210,211,223,223,226,229,233,231,230,239,239,231,218,210,214,219,219,251,265,264,271,271,270,254,248,245,245,242,228,243,242,234,235,235,231,218],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.9\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.9","line":{"color":"#ab63fa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.9","showlegend":true,"x":["2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-16T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-09T00:00:00","2023-09-12T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-15T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-16T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-28T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-03T00:00:00","2024-06-06T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-15T00:00:00","2024-06-18T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-04T00:00:00","2024-08-08T00:00:00","2024-08-10T00:00:00","2024-08-13T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-26T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[484,607,671,747,807,836,877,923,964,1036,1071,1112,1122,1191,1196,1216,1231,1258,1312,1326,1337,1387,1428,1454,1485,1557,1622,1637,1654,1198,1102,1065,991,945,954,919,899,874,817,784,793,838,774,797,791,791,765,750,750,741,693,666,680,675,629,604,614,598,575,561,548,559,582,601,608,595,610,611,610,586,580,588,571,558,557,582,549,561,572,583,587,548,535,535,497,482,499,507,520,524,531,495,441,464,491,478,475,492,468,425,419,425,431,419,407,441,421,409,397,392,392,382,357,358,352,348,361,374,382,375,423,446,454,428,411,416,411,414,421,423,420,418,417,421,405,413,413,426,414,430,430,430,453,452,480,455,418,407,408,388,430,405,404,420,416,416,465,492,510,514,535,574,584,573,573,585,572,574,571,569,573,548,558,517,518,517,516,503,475,420,414,402,393,394,382,329,302,289,285,274,253,238,227,214,228,229,241,267,269,286,299,314,318,319,331,347,351,363,361,375,376,382,368,380,397,410,409,402,388,370,371,395,408,394,405,404,366,365,347,336,314,310,308,297,268,265,261,272,258,262,261,288,276,271,247,247,254,259,259,251,239,247,255,257,244,251,253,277,301,314,328,329,333,342,372,376,355,369,370,375,352,352,344,344,336,326,329,347,349,351,335,316,303,315,311,337,311,286,276,266,265,272,264,234,237,248,234,228,211,207,245,253,256,254,263,257,240,240,264,273,273,284,272,268,239,250,262,286,283,313,311,310,310,297,290,278,291,303,315,292,281,290,313,313,323,334,339,312,298,306,307,333,345,346,335,335,303,304,274,268],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.8\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.8","line":{"color":"#FFA15A","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.8","showlegend":true,"x":["2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-15T00:00:00","2023-07-17T00:00:00","2023-07-19T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-28T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-12T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-27T00:00:00","2023-09-30T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-09T00:00:00","2023-10-11T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-30T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-05T00:00:00","2023-11-08T00:00:00","2023-11-11T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-19T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-27T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-26T00:00:00","2023-12-29T00:00:00","2024-01-03T00:00:00","2024-01-05T00:00:00","2024-01-09T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-15T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-21T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-11T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-17T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-28T00:00:00","2024-03-31T00:00:00","2024-04-02T00:00:00","2024-04-04T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-13T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-04T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-20T00:00:00","2024-05-23T00:00:00","2024-05-25T00:00:00","2024-05-28T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-03T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-15T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-23T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-29T00:00:00","2024-07-01T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-14T00:00:00","2024-07-17T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-04T00:00:00","2024-08-08T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-22T00:00:00","2024-08-24T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[529,729,786,812,850,891,919,938,983,1004,1030,1031,1037,1038,1058,1092,1113,1126,1129,1139,1149,1185,1205,1238,1254,1267,1270,1310,1315,797,599,563,548,512,498,493,495,461,472,449,453,458,468,468,447,448,442,460,462,454,420,403,401,425,414,422,392,397,417,426,406,405,433,426,424,423,431,407,414,419,428,452,442,464,452,465,484,480,479,487,504,478,458,466,465,470,461,431,430,450,441,412,398,394,401,403,396,401,406,387,382,402,382,382,363,338,338,347,342,332,357,343,334,334,322,323,323,333,342,361,370,411,414,422,411,425,420,415,419,394,374,374,374,375,370,372,366,368,371,351,347,357,358,370,419,428,418,398,386,394,368,358,338,348,364,374,374,380,385,386,375,375,375,375,375,381,384,381,381,389,389,390,391,360,351,351,371,366,369,358,369,359,341,320,324,409,408,403,412,411,421,429,434,444,444,439,430,430,440,439,437,431,421,421,412,387,394,374,374,357,362,366,366,363,278,278,277,263,274,269,277,272,260,255,278,297,298,289,284,279,279,270,270,290,291,295,298,293,292,284,290,291,275,277,268,265,260,247,242,244,239,236,241,214,205,206,206,202,198,218,227,227,212,216,208,234,241,248,256,245,247,252,263,263,273,273,276,270,251,248,253,253,263,262,270,269,278,287,267,267,268,264,264,259,239,248,248,248,258,247,238,220],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.7\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.7","line":{"color":"#19d3f3","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.7","showlegend":true,"x":["2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-30T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-09T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-15T00:00:00","2023-07-17T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-12T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-31T00:00:00","2023-09-02T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-09T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-27T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-19T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-08T00:00:00","2023-11-11T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-19T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-27T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-29T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-09T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-21T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-11T00:00:00","2024-03-15T00:00:00","2024-03-17T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-28T00:00:00","2024-03-31T00:00:00","2024-04-02T00:00:00","2024-04-04T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-13T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-23T00:00:00","2024-05-25T00:00:00","2024-05-28T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-03T00:00:00","2024-06-06T00:00:00","2024-06-13T00:00:00","2024-06-15T00:00:00","2024-06-18T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-08T00:00:00","2024-08-11T00:00:00","2024-08-13T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-24T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[244,787,964,1032,1103,1175,1238,1255,1290,1339,1350,1381,1426,1452,1461,1516,1542,1583,1585,1586,1599,1626,1652,1662,1675,1685,1729,1755,1794,1555,1025,897,843,773,715,656,662,657,609,624,607,603,579,574,534,522,507,515,528,542,521,518,521,515,507,465,488,489,486,486,451,451,492,491,500,516,512,538,538,545,509,520,529,551,568,555,589,588,587,630,618,618,637,640,664,628,601,617,617,629,637,608,621,609,588,575,549,559,577,578,578,583,554,524,524,485,486,499,455,470,496,496,504,527,540,568,563,551,543,534,522,509,521,508,508,539,516,481,488,488,473,478,490,490,487,487,461,471,510,484,471,471,430,432,418,418,435,443,469,495,495,495,503,493,463,468,468,456,456,454,446,446,446,457,456,456,454,403,404,407,412,430,403,390,416,422,398,372,373,364,353,353,390,393,479,488,492,505,530,538,544,557,557,549,549,562,561,560,557,552,527,531,530,492,482,484,484,462,471,496,496,469,468,370,372,397,388,377,370,356,365,378,390,396,377,367,359,360,348,374,372,374,379,370,370,359,355,348,335,330,332,329,337,324,323,314,304,311,307,286,265,264,284,290,301,297,296,300,312,313,312,307,315,312,323,334,367,355,369,355,358,345,344,316,309,317,317,329,330,338,348,322,322,321,322,323,331,294,300,298,324,324,336,324,325,288,291],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.6\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.6","line":{"color":"#FF6692","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.6","showlegend":true,"x":["2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-15T00:00:00","2023-07-17T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-12T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-02T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-12T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-27T00:00:00","2023-09-30T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-19T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-30T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-08T00:00:00","2023-11-11T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-27T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-26T00:00:00","2023-12-29T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-09T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-28T00:00:00","2024-01-30T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-11T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-28T00:00:00","2024-03-01T00:00:00","2024-03-04T00:00:00","2024-03-11T00:00:00","2024-04-06T00:00:00","2024-04-27T00:00:00","2024-05-07T00:00:00","2024-06-28T00:00:00","2024-07-27T00:00:00","2024-08-01T00:00:00","2024-08-04T00:00:00"],"xaxis":"x","y":[594,873,938,984,1020,2164,2521,2672,3118,3221,3259,3321,3346,3380,3381,3464,3474,3502,3602,3648,3679,3724,3783,3793,3832,3867,3889,3914,3947,3371,3093,3084,3064,3054,1913,1560,1410,966,876,865,834,812,790,790,721,722,726,640,634,608,576,566,557,531,498,491,468,460,470,489,446,444,421,423,432,445,469,465,451,447,449,447,459,455,447,476,515,485,501,501,465,503,503,514,525,536,538,523,524,516,505,516,512,536,553,540,589,589,588,633,634,635,651,653,618,583,586,583,571,559,533,546,553,540,555,529,534,526,523,546,571,576,552,540,533,488,480,467,456,450,462,475,496,483,514,527,535,547,564,564,539,532,532,509,521,538,543,544,509,485,492,482,464,471,471,479,468,443,451,438,465,441,429,393,380,366,354,343,356,381,381,386,407,433,431,426,436,448,446,434,432,444,432,424,424,435,434,434,434,392,405,418,419,414,403,428,436,453,429,429,420,403,376,349,346,334,322,310,310,310,298,298,294,307,295,283],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.5\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.5","line":{"color":"#B6E880","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.5","showlegend":true,"x":["2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-03T00:00:00","2023-05-05T00:00:00","2023-05-10T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-15T00:00:00","2023-08-06T00:00:00","2023-09-15T00:00:00","2023-11-15T00:00:00","2023-11-17T00:00:00","2023-12-06T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-07-27T00:00:00"],"xaxis":"x","y":[167,202,220,226,235,241,256,259,262,268,270,274,277,283,284,285,286,288,289,290,293,296,299,300,303,304,305,306,307,142,108,91,86,80],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.4\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.4","line":{"color":"#FF97FF","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.4","showlegend":true,"x":["2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-03T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-19T00:00:00","2023-05-25T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-30T00:00:00","2023-06-07T00:00:00","2023-06-13T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-13T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-09-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-23T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-03-02T00:00:00","2024-07-27T00:00:00"],"xaxis":"x","y":[501,832,965,1000,1038,1061,1088,1141,1153,1180,1200,1213,1228,1267,1289,1319,1333,1366,1393,1399,1407,1410,1418,1419,1433,1435,1436,1437,1438,941,611,481,447,410,390,364,313,302,276,257,246,233,195,174,148,152,121,105,100,94,102,95,96,85,86,86,86,86,84,86,91,92,95,94,95,94,106],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.3\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.3","line":{"color":"#FECB52","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.3","showlegend":true,"x":["2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-23T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-07-02T00:00:00","2023-07-05T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-11T00:00:00","2023-08-06T00:00:00","2023-08-21T00:00:00","2023-08-27T00:00:00","2023-09-15T00:00:00","2023-09-17T00:00:00","2023-09-19T00:00:00","2023-09-27T00:00:00","2023-10-10T00:00:00","2023-11-16T00:00:00","2024-01-04T00:00:00","2024-02-05T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-07-10T00:00:00","2024-07-27T00:00:00"],"xaxis":"x","y":[228,418,459,500,534,580,590,650,664,696,775,973,1148,1206,1245,1258,1285,1309,1323,1350,1374,1386,1398,1410,1436,1457,1483,1496,1517,1306,1119,1085,1045,1012,969,962,904,902,934,893,707,565,525,516,515,489,471,469,455,470,482,494,489,466,458,456,468,459,443,442,444,480,492,513,532,545,580,521,485,475,444,428,399,391,392,387,377,365,336,326,314,319,317,306,284,260,249,249,248,240,204,192,174,154,146,104,102,101,111],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.2\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.2","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.2","showlegend":true,"x":["2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-05T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-15T00:00:00","2023-07-17T00:00:00","2023-07-19T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-12T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-02T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-12T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-27T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-09T00:00:00","2023-10-12T00:00:00","2023-10-19T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-05T00:00:00","2023-11-08T00:00:00","2023-11-11T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-27T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-26T00:00:00","2023-12-29T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-09T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-11T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-31T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-13T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-23T00:00:00","2024-05-25T00:00:00","2024-05-28T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-03T00:00:00","2024-06-06T00:00:00","2024-06-13T00:00:00","2024-06-15T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-29T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-17T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-25T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-04T00:00:00","2024-08-08T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-22T00:00:00","2024-08-24T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[342,618,730,775,835,1007,1105,1157,1211,1257,1341,1362,1468,1488,1528,1664,1940,2095,2154,2205,2225,2271,2294,2317,2368,2388,2408,2428,2449,2149,1920,1851,1828,1794,1662,1566,1532,1479,1439,1358,1338,1233,1229,1256,1165,906,797,763,745,740,698,687,679,643,679,689,704,685,656,611,584,590,588,552,562,545,546,550,583,592,613,614,558,555,540,496,472,449,445,443,433,442,441,397,377,344,346,343,352,356,333,321,337,334,337,337,371,377,370,368,361,360,348,357,356,366,376,376,394,408,387,378,376,376,375,401,416,415,440,445,453,472,471,468,477,453,416,434,429,429,434,405,404,423,429,419,410,410,409,416,414,434,454,458,438,428,424,380,380,365,336,358,363,353,334,349,358,363,363,388,407,407,398,384,376,389,379,374,374,376,356,339,344,336,331,326,335,327,332,332,312,308,318,327,317,337,327,327,297,297,307,306,318,336,351,361,361,362,367,367,355,369,377,369,373,364,372,373,365,366,377,367,358,369,329,330,332,328,309,291,303,298,308,280,276,276,286,281,273,282,292,287,295,320,324,334,328,328,339,328,341,354,353,353,347,346,360,369,377,365,365,336,339,325,325,306,311,314,314,286,291,282,273,278,259,258,261,253,275,271,267,255,269,284,286,281,276,271,264,259,269,265,283,283,285,280,276,270,268,267,279,263,265,266,264,261,257,234,244,239,237,223,205,203,200,206,228,235,240,236,236,226,219,220,246,255,261,258,259,257,276,265,278,277,281,272,272,254,259,263,263,272,262,270,279,262,262,262,266,276,267,267,272,242,242,252,261,261,261,239,243],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0.1\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0.1","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0.1","showlegend":true,"x":["2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-15T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-17T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-12T00:00:00","2023-08-17T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-29T00:00:00","2023-08-31T00:00:00","2023-09-02T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-27T00:00:00","2023-09-30T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-19T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-30T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-05T00:00:00","2023-11-08T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-22T00:00:00","2023-11-24T00:00:00","2023-11-27T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-29T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-09T00:00:00","2024-01-13T00:00:00","2024-01-15T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-11T00:00:00","2024-03-15T00:00:00","2024-03-17T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-28T00:00:00","2024-03-31T00:00:00","2024-04-04T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-13T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-11T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-18T00:00:00","2024-05-20T00:00:00","2024-05-23T00:00:00","2024-05-25T00:00:00","2024-05-27T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-03T00:00:00","2024-06-06T00:00:00","2024-06-11T00:00:00","2024-06-13T00:00:00","2024-06-15T00:00:00","2024-06-18T00:00:00","2024-06-23T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-09T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-17T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-04T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-11T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-22T00:00:00","2024-08-24T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[351,1356,1844,2006,2123,2237,2342,2374,2512,2573,2657,2740,2881,2952,3120,3158,3234,3489,3931,4139,4204,4301,4324,4403,4445,4488,4572,4573,4612,4299,3333,2886,2803,2756,2722,2657,2671,2600,2543,2500,2422,2284,2218,2056,2061,2138,1988,1583,1479,1484,1423,1437,1364,1358,1350,1301,1348,1427,1459,1526,1490,1453,1424,1350,1366,1346,1283,1295,1257,1258,1264,1294,1301,1279,1143,1049,1059,961,897,862,835,839,804,792,759,725,626,566,464,465,435,407,421,370,357,374,365,364,426,475,441,466,455,448,438,421,425,420,429,439,440,459,437,456,444,434,430,436,431,446,458,448,507,504,503,537,543,479,422,431,413,408,418,427,407,412,412,412,412,411,396,405,385,404,396,391,396,405,388,393,413,354,354,349,313,315,316,325,345,331,346,355,365,365,390,399,399,389,396,399,399,408,389,393,402,404,404,397,377,357,355,355,351,348,349,356,356,376,380,370,356,338,335,315,325,325,330,333,356,361,361,369,374,368,361,353,374,374,377,379,372,371,379,381,379,376,336,336,337,327,327,323,304,305,308,321,304,292,287,300,293,285,297,320,323,309,329,321,336,346,347,363,356,360,368,378,378,373,369,377,394,403,392,389,371,370,356,356,334,341,343,337,311,316,327,307,307,292,294,304,288,292,279,267,269,279,283,292,287,272,267,262,258,249,267,272,266,268,263,272,275,270,262,244,244,240,255,244,228,228,221,231,239,228,209,229,229,228,233,233,259,255,268,264,259,256,267,273,286,285,284,289,290,290,299,290,325,340,341,348,347,346,337,346,317,312,318,309,312,302,310,306,302,299,301,292],"yaxis":"y","type":"scattergl"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"timestamp"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"rolling_downloads"}},"legend":{"title":{"text":"version"},"tracegroupgap":0}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('47de66c2-1130-4be2-b3e5-d02311b89004');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div id="20612d3e" class="cell" data-execution_count="21">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb22" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb22-1">group_bar(t, group_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"installer"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="bc957b35-867e-48f6-941a-595f513ff59a" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("bc957b35-867e-48f6-941a-595f513ff59a")) {                    Plotly.newPlot(                        "bc957b35-867e-48f6-941a-595f513ff59a",                        [{"alignmentgroup":"True","hovertemplate":"installer=%{x}\u003cbr\u003edownloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["poetry","bandersnatch","pip","Browser","requests","","Nexus","uv","devpi","pdm","Artifactory"],"xaxis":"x","y":[186636,83600,76415,16513,16218,12346,2325,726,256,15,3],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"installer"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"downloads"},"type":"log"},"legend":{"tracegroupgap":0},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('bc957b35-867e-48f6-941a-595f513ff59a');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
</div>
<div id="tabset-1-3" class="tab-pane" aria-labelledby="tabset-1-3-tab">
<div id="f761c3eb" class="cell" data-execution_count="22">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb23" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb23-1">package <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-framework"</span></span>
<span id="cb23-2"></span>
<span id="cb23-3">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> con.table(</span>
<span id="cb23-4">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pypi_downloads_per_day_by_version_by_installer_by_type_by_country"</span></span>
<span id="cb23-5">).<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"project"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> package)</span></code></pre></div></div>
</div>
<div id="e562b720" class="cell" data-execution_count="23">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb24" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb24-1">day_of_week_bar(t)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="2e303b16-d1e2-4f49-bf17-3377a1027a34" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("2e303b16-d1e2-4f49-bf17-3377a1027a34")) {                    Plotly.newPlot(                        "2e303b16-d1e2-4f49-bf17-3377a1027a34",                        [{"alignmentgroup":"True","hovertemplate":"day_of_week=%{x}\u003cbr\u003edownloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["Saturday","Thursday","Sunday","Tuesday","Monday","Friday","Wednesday"],"xaxis":"x","y":[1443194,1557156,1310140,2108544,1962634,1478289,2048639],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"day_of_week"},"categoryorder":"array","categoryarray":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"downloads"}},"legend":{"tracegroupgap":0},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('2e303b16-d1e2-4f49-bf17-3377a1027a34');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div id="80af6f19" class="cell" data-execution_count="24">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb25" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb25-1">rolling_downloads(t)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="03999260-03da-4ef5-b625-21e08ee7c09d" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("03999260-03da-4ef5-b625-21e08ee7c09d")) {                    Plotly.newPlot(                        "03999260-03da-4ef5-b625-21e08ee7c09d",                        [{"hovertemplate":"timestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"","showlegend":false,"x":["2016-01-22T00:00:00","2016-01-23T00:00:00","2016-01-24T00:00:00","2016-01-25T00:00:00","2016-01-26T00:00:00","2016-01-27T00:00:00","2016-01-28T00:00:00","2016-01-29T00:00:00","2016-01-30T00:00:00","2016-01-31T00:00:00","2016-02-01T00:00:00","2016-02-02T00:00:00","2016-02-03T00:00:00","2016-02-04T00:00:00","2016-02-05T00:00:00","2016-02-06T00:00:00","2016-02-07T00:00:00","2016-02-08T00:00:00","2016-02-09T00:00:00","2016-02-10T00:00:00","2016-02-11T00:00:00","2016-02-12T00:00:00","2016-02-13T00:00:00","2016-02-14T00:00:00","2016-02-15T00:00:00","2016-02-16T00:00:00","2016-02-17T00:00:00","2016-02-18T00:00:00","2016-02-19T00:00:00","2016-02-20T00:00:00","2016-02-21T00:00:00","2016-02-22T00:00:00","2016-02-23T00:00:00","2016-02-24T00:00:00","2016-02-25T00:00:00","2016-02-26T00:00:00","2016-02-27T00:00:00","2016-02-28T00:00:00","2016-02-29T00:00:00","2016-03-01T00:00:00","2016-03-02T00:00:00","2016-03-03T00:00:00","2016-03-04T00:00:00","2016-03-05T00:00:00","2016-05-22T00:00:00","2016-05-23T00:00:00","2016-05-24T00:00:00","2016-05-25T00:00:00","2016-05-26T00:00:00","2016-05-27T00:00:00","2016-05-28T00:00:00","2016-05-29T00:00:00","2016-05-30T00:00:00","2016-05-31T00:00:00","2016-06-01T00:00:00","2016-06-02T00:00:00","2016-06-03T00:00:00","2016-06-04T00:00:00","2016-06-05T00:00:00","2016-06-06T00:00:00","2016-06-07T00:00:00","2016-06-08T00:00:00","2016-06-09T00:00:00","2016-06-10T00:00:00","2016-06-11T00:00:00","2016-06-12T00:00:00","2016-06-13T00:00:00","2016-06-14T00:00:00","2016-06-15T00:00:00","2016-06-16T00:00:00","2016-06-17T00:00:00","2016-06-18T00:00:00","2016-06-19T00:00:00","2016-06-20T00:00:00","2016-06-21T00:00:00","2016-06-22T00:00:00","2016-06-23T00:00:00","2016-06-24T00:00:00","2016-06-25T00:00:00","2016-06-26T00:00:00","2016-06-27T00:00:00","2016-06-28T00:00:00","2016-06-29T00:00:00","2016-06-30T00:00:00","2016-07-01T00:00:00","2016-07-02T00:00:00","2016-07-03T00:00:00","2016-07-04T00:00:00","2016-07-05T00:00:00","2016-07-06T00:00:00","2016-07-07T00:00:00","2016-07-08T00:00:00","2016-07-09T00:00:00","2016-07-10T00:00:00","2016-07-11T00:00:00","2016-07-12T00:00:00","2016-07-13T00:00:00","2016-07-14T00:00:00","2016-07-15T00:00:00","2016-07-16T00:00:00","2016-07-17T00:00:00","2016-07-18T00:00:00","2016-07-19T00:00:00","2016-07-20T00:00:00","2016-07-21T00:00:00","2016-07-22T00:00:00","2016-07-23T00:00:00","2016-07-24T00:00:00","2016-07-25T00:00:00","2016-07-26T00:00:00","2016-07-27T00:00:00","2016-07-28T00:00:00","2016-07-29T00:00:00","2016-07-30T00:00:00","2016-07-31T00:00:00","2016-08-01T00:00:00","2016-08-02T00:00:00","2016-08-03T00:00:00","2016-08-04T00:00:00","2016-08-05T00:00:00","2016-08-06T00:00:00","2016-08-07T00:00:00","2016-08-08T00:00:00","2016-08-09T00:00:00","2016-08-10T00:00:00","2016-08-11T00:00:00","2016-08-12T00:00:00","2016-08-13T00:00:00","2016-08-14T00:00:00","2016-08-15T00:00:00","2016-08-16T00:00:00","2016-08-17T00:00:00","2016-08-18T00:00:00","2016-08-19T00:00:00","2016-08-20T00:00:00","2016-08-21T00:00:00","2016-08-22T00:00:00","2016-08-23T00:00:00","2016-08-24T00:00:00","2016-08-25T00:00:00","2016-08-26T00:00:00","2016-08-27T00:00:00","2016-08-28T00:00:00","2016-08-29T00:00:00","2016-08-30T00:00:00","2016-08-31T00:00:00","2016-09-01T00:00:00","2016-09-02T00:00:00","2016-09-03T00:00:00","2016-09-04T00:00:00","2016-09-05T00:00:00","2016-09-06T00:00:00","2016-09-07T00:00:00","2016-09-08T00:00:00","2016-09-09T00:00:00","2016-09-10T00:00:00","2016-09-11T00:00:00","2016-09-12T00:00:00","2016-09-13T00:00:00","2016-09-14T00:00:00","2016-09-15T00:00:00","2016-09-16T00:00:00","2016-09-17T00:00:00","2016-09-18T00:00:00","2016-09-19T00:00:00","2016-09-20T00:00:00","2016-09-21T00:00:00","2016-09-22T00:00:00","2016-09-23T00:00:00","2016-09-24T00:00:00","2016-09-25T00:00:00","2016-09-26T00:00:00","2016-09-27T00:00:00","2016-09-28T00:00:00","2016-09-29T00:00:00","2016-09-30T00:00:00","2016-10-01T00:00:00","2016-10-02T00:00:00","2016-10-03T00:00:00","2016-10-04T00:00:00","2016-10-05T00:00:00","2016-10-06T00:00:00","2016-10-07T00:00:00","2016-10-08T00:00:00","2016-10-09T00:00:00","2016-10-10T00:00:00","2016-10-11T00:00:00","2016-10-12T00:00:00","2016-10-13T00:00:00","2016-10-14T00:00:00","2016-10-15T00:00:00","2016-10-16T00:00:00","2016-10-17T00:00:00","2016-10-18T00:00:00","2016-10-19T00:00:00","2016-10-20T00:00:00","2016-10-21T00:00:00","2016-10-22T00:00:00","2016-10-23T00:00:00","2016-10-24T00:00:00","2016-10-25T00:00:00","2016-10-26T00:00:00","2016-10-27T00:00:00","2016-10-28T00:00:00","2016-10-29T00:00:00","2016-10-30T00:00:00","2016-10-31T00:00:00","2016-11-01T00:00:00","2016-11-02T00:00:00","2016-11-03T00:00:00","2016-11-04T00:00:00","2016-11-05T00:00:00","2016-11-06T00:00:00","2016-11-07T00:00:00","2016-11-08T00:00:00","2016-11-09T00:00:00","2016-11-10T00:00:00","2016-11-11T00:00:00","2016-11-12T00:00:00","2016-11-13T00:00:00","2016-11-14T00:00:00","2016-11-15T00:00:00","2016-11-16T00:00:00","2016-11-17T00:00:00","2016-11-18T00:00:00","2016-11-19T00:00:00","2016-11-20T00:00:00","2016-11-21T00:00:00","2016-11-22T00:00:00","2016-11-23T00:00:00","2016-11-24T00:00:00","2016-11-25T00:00:00","2016-11-26T00:00:00","2016-11-27T00:00:00","2016-11-28T00:00:00","2016-11-29T00:00:00","2016-11-30T00:00:00","2016-12-01T00:00:00","2016-12-02T00:00:00","2016-12-03T00:00:00","2016-12-04T00:00:00","2016-12-05T00:00:00","2016-12-06T00:00:00","2016-12-07T00:00:00","2016-12-08T00:00:00","2016-12-09T00:00:00","2016-12-10T00:00:00","2016-12-11T00:00:00","2016-12-12T00:00:00","2016-12-13T00:00:00","2016-12-14T00:00:00","2016-12-15T00:00:00","2016-12-16T00:00:00","2016-12-17T00:00:00","2016-12-18T00:00:00","2016-12-19T00:00:00","2016-12-20T00:00:00","2016-12-21T00:00:00","2016-12-22T00:00:00","2016-12-23T00:00:00","2016-12-24T00:00:00","2016-12-25T00:00:00","2016-12-26T00:00:00","2016-12-27T00:00:00","2016-12-28T00:00:00","2016-12-29T00:00:00","2016-12-30T00:00:00","2016-12-31T00:00:00","2017-01-01T00:00:00","2017-01-02T00:00:00","2017-01-03T00:00:00","2017-01-04T00:00:00","2017-01-05T00:00:00","2017-01-06T00:00:00","2017-01-07T00:00:00","2017-01-08T00:00:00","2017-01-09T00:00:00","2017-01-10T00:00:00","2017-01-11T00:00:00","2017-01-12T00:00:00","2017-01-13T00:00:00","2017-01-14T00:00:00","2017-01-15T00:00:00","2017-01-16T00:00:00","2017-01-17T00:00:00","2017-01-18T00:00:00","2017-01-19T00:00:00","2017-01-20T00:00:00","2017-01-21T00:00:00","2017-01-22T00:00:00","2017-01-23T00:00:00","2017-01-24T00:00:00","2017-01-25T00:00:00","2017-01-26T00:00:00","2017-01-27T00:00:00","2017-01-28T00:00:00","2017-01-29T00:00:00","2017-01-30T00:00:00","2017-01-31T00:00:00","2017-02-01T00:00:00","2017-02-02T00:00:00","2017-02-03T00:00:00","2017-02-04T00:00:00","2017-02-05T00:00:00","2017-02-06T00:00:00","2017-02-07T00:00:00","2017-02-08T00:00:00","2017-02-09T00:00:00","2017-02-10T00:00:00","2017-02-11T00:00:00","2017-02-12T00:00:00","2017-02-13T00:00:00","2017-02-14T00:00:00","2017-02-15T00:00:00","2017-02-16T00:00:00","2017-02-17T00:00:00","2017-02-18T00:00:00","2017-02-19T00:00:00","2017-02-20T00:00:00","2017-02-21T00:00:00","2017-02-22T00:00:00","2017-02-23T00:00:00","2017-02-24T00:00:00","2017-02-25T00:00:00","2017-02-26T00:00:00","2017-02-27T00:00:00","2017-02-28T00:00:00","2017-03-01T00:00:00","2017-03-02T00:00:00","2017-03-03T00:00:00","2017-03-04T00:00:00","2017-03-05T00:00:00","2017-03-06T00:00:00","2017-03-07T00:00:00","2017-03-08T00:00:00","2017-03-09T00:00:00","2017-03-10T00:00:00","2017-03-11T00:00:00","2017-03-12T00:00:00","2017-03-13T00:00:00","2017-03-14T00:00:00","2017-03-15T00:00:00","2017-03-16T00:00:00","2017-03-17T00:00:00","2017-03-18T00:00:00","2017-03-19T00:00:00","2017-03-20T00:00:00","2017-03-21T00:00:00","2017-03-22T00:00:00","2017-03-23T00:00:00","2017-03-24T00:00:00","2017-03-25T00:00:00","2017-03-26T00:00:00","2017-03-27T00:00:00","2017-03-28T00:00:00","2017-03-29T00:00:00","2017-03-30T00:00:00","2017-03-31T00:00:00","2017-04-01T00:00:00","2017-04-02T00:00:00","2017-04-03T00:00:00","2017-04-04T00:00:00","2017-04-05T00:00:00","2017-04-06T00:00:00","2017-04-07T00:00:00","2017-04-08T00:00:00","2017-04-09T00:00:00","2017-04-10T00:00:00","2017-04-11T00:00:00","2017-04-12T00:00:00","2017-04-13T00:00:00","2017-04-14T00:00:00","2017-04-15T00:00:00","2017-04-16T00:00:00","2017-04-17T00:00:00","2017-04-18T00:00:00","2017-04-19T00:00:00","2017-04-20T00:00:00","2017-04-21T00:00:00","2017-04-22T00:00:00","2017-04-23T00:00:00","2017-04-24T00:00:00","2017-04-25T00:00:00","2017-04-26T00:00:00","2017-04-27T00:00:00","2017-04-28T00:00:00","2017-04-29T00:00:00","2017-04-30T00:00:00","2017-05-01T00:00:00","2017-05-02T00:00:00","2017-05-03T00:00:00","2017-05-04T00:00:00","2017-05-05T00:00:00","2017-05-06T00:00:00","2017-05-07T00:00:00","2017-05-08T00:00:00","2017-05-09T00:00:00","2017-05-10T00:00:00","2017-05-11T00:00:00","2017-05-12T00:00:00","2017-05-13T00:00:00","2017-05-14T00:00:00","2017-05-15T00:00:00","2017-05-16T00:00:00","2017-05-17T00:00:00","2017-05-18T00:00:00","2017-05-19T00:00:00","2017-05-20T00:00:00","2017-05-21T00:00:00","2017-05-22T00:00:00","2017-05-23T00:00:00","2017-05-24T00:00:00","2017-05-25T00:00:00","2017-05-26T00:00:00","2017-05-28T00:00:00","2017-05-29T00:00:00","2017-05-30T00:00:00","2017-05-31T00:00:00","2017-06-01T00:00:00","2017-06-02T00:00:00","2017-06-03T00:00:00","2017-06-04T00:00:00","2017-06-05T00:00:00","2017-06-06T00:00:00","2017-06-07T00:00:00","2017-06-08T00:00:00","2017-06-09T00:00:00","2017-06-10T00:00:00","2017-06-11T00:00:00","2017-06-12T00:00:00","2017-06-13T00:00:00","2017-06-14T00:00:00","2017-06-15T00:00:00","2017-06-16T00:00:00","2017-06-17T00:00:00","2017-06-18T00:00:00","2017-06-19T00:00:00","2017-06-20T00:00:00","2017-06-21T00:00:00","2017-06-22T00:00:00","2017-06-23T00:00:00","2017-06-24T00:00:00","2017-06-25T00:00:00","2017-06-26T00:00:00","2017-06-27T00:00:00","2017-06-28T00:00:00","2017-06-29T00:00:00","2017-06-30T00:00:00","2017-07-01T00:00:00","2017-07-02T00:00:00","2017-07-03T00:00:00","2017-07-04T00:00:00","2017-07-05T00:00:00","2017-07-06T00:00:00","2017-07-07T00:00:00","2017-07-08T00:00:00","2017-07-09T00:00:00","2017-07-10T00:00:00","2017-07-11T00:00:00","2017-07-12T00:00:00","2017-07-13T00:00:00","2017-07-14T00:00:00","2017-07-15T00:00:00","2017-07-16T00:00:00","2017-07-17T00:00:00","2017-07-18T00:00:00","2017-07-19T00:00:00","2017-07-20T00:00:00","2017-07-21T00:00:00","2017-07-22T00:00:00","2017-07-23T00:00:00","2017-07-24T00:00:00","2017-07-25T00:00:00","2017-07-26T00:00:00","2017-07-27T00:00:00","2017-07-28T00:00:00","2017-07-29T00:00:00","2017-07-30T00:00:00","2017-07-31T00:00:00","2017-08-01T00:00:00","2017-08-02T00:00:00","2017-08-03T00:00:00","2017-08-04T00:00:00","2017-08-05T00:00:00","2017-08-06T00:00:00","2017-08-07T00:00:00","2017-08-08T00:00:00","2017-08-09T00:00:00","2017-08-10T00:00:00","2017-08-11T00:00:00","2017-08-12T00:00:00","2017-08-13T00:00:00","2017-08-14T00:00:00","2017-08-15T00:00:00","2017-08-16T00:00:00","2017-08-17T00:00:00","2017-08-18T00:00:00","2017-08-19T00:00:00","2017-08-20T00:00:00","2017-08-21T00:00:00","2017-08-22T00:00:00","2017-08-23T00:00:00","2017-08-24T00:00:00","2017-08-25T00:00:00","2017-08-26T00:00:00","2017-08-27T00:00:00","2017-08-28T00:00:00","2017-08-29T00:00:00","2017-08-30T00:00:00","2017-08-31T00:00:00","2017-09-01T00:00:00","2017-09-02T00:00:00","2017-09-03T00:00:00","2017-09-04T00:00:00","2017-09-05T00:00:00","2017-09-06T00:00:00","2017-09-07T00:00:00","2017-09-08T00:00:00","2017-09-09T00:00:00","2017-09-10T00:00:00","2017-09-11T00:00:00","2017-09-12T00:00:00","2017-09-13T00:00:00","2017-09-14T00:00:00","2017-09-15T00:00:00","2017-09-16T00:00:00","2017-09-17T00:00:00","2017-09-18T00:00:00","2017-09-19T00:00:00","2017-09-20T00:00:00","2017-09-21T00:00:00","2017-09-22T00:00:00","2017-09-23T00:00:00","2017-09-24T00:00:00","2017-09-25T00:00:00","2017-09-26T00:00:00","2017-09-27T00:00:00","2017-09-28T00:00:00","2017-09-29T00:00:00","2017-09-30T00:00:00","2017-10-01T00:00:00","2017-10-02T00:00:00","2017-10-03T00:00:00","2017-10-04T00:00:00","2017-10-05T00:00:00","2017-10-06T00:00:00","2017-10-07T00:00:00","2017-10-08T00:00:00","2017-10-09T00:00:00","2017-10-10T00:00:00","2017-10-11T00:00:00","2017-10-12T00:00:00","2017-10-13T00:00:00","2017-10-14T00:00:00","2017-10-15T00:00:00","2017-10-16T00:00:00","2017-10-17T00:00:00","2017-10-18T00:00:00","2017-10-19T00:00:00","2017-10-20T00:00:00","2017-10-21T00:00:00","2017-10-22T00:00:00","2017-10-23T00:00:00","2017-10-24T00:00:00","2017-10-25T00:00:00","2017-10-26T00:00:00","2017-10-27T00:00:00","2017-10-28T00:00:00","2017-10-29T00:00:00","2017-10-30T00:00:00","2017-10-31T00:00:00","2017-11-01T00:00:00","2017-11-02T00:00:00","2017-11-03T00:00:00","2017-11-04T00:00:00","2017-11-05T00:00:00","2017-11-06T00:00:00","2017-11-07T00:00:00","2017-11-08T00:00:00","2017-11-09T00:00:00","2017-11-10T00:00:00","2017-11-11T00:00:00","2017-11-12T00:00:00","2017-11-13T00:00:00","2017-11-14T00:00:00","2017-11-15T00:00:00","2017-11-16T00:00:00","2017-11-17T00:00:00","2017-11-18T00:00:00","2017-11-19T00:00:00","2017-11-20T00:00:00","2017-11-21T00:00:00","2017-11-22T00:00:00","2017-11-23T00:00:00","2017-11-24T00:00:00","2017-11-25T00:00:00","2017-11-26T00:00:00","2017-11-27T00:00:00","2017-11-28T00:00:00","2017-11-29T00:00:00","2017-11-30T00:00:00","2017-12-01T00:00:00","2017-12-02T00:00:00","2017-12-03T00:00:00","2017-12-04T00:00:00","2017-12-05T00:00:00","2017-12-06T00:00:00","2017-12-07T00:00:00","2017-12-08T00:00:00","2017-12-09T00:00:00","2017-12-10T00:00:00","2017-12-11T00:00:00","2017-12-12T00:00:00","2017-12-13T00:00:00","2017-12-14T00:00:00","2017-12-15T00:00:00","2017-12-16T00:00:00","2017-12-17T00:00:00","2017-12-18T00:00:00","2017-12-19T00:00:00","2017-12-20T00:00:00","2017-12-21T00:00:00","2017-12-22T00:00:00","2017-12-23T00:00:00","2017-12-24T00:00:00","2017-12-25T00:00:00","2017-12-26T00:00:00","2017-12-27T00:00:00","2017-12-28T00:00:00","2017-12-29T00:00:00","2017-12-30T00:00:00","2017-12-31T00:00:00","2018-01-01T00:00:00","2018-01-02T00:00:00","2018-01-03T00:00:00","2018-01-04T00:00:00","2018-01-05T00:00:00","2018-01-06T00:00:00","2018-01-07T00:00:00","2018-01-08T00:00:00","2018-01-09T00:00:00","2018-01-10T00:00:00","2018-01-11T00:00:00","2018-01-12T00:00:00","2018-01-13T00:00:00","2018-01-14T00:00:00","2018-01-15T00:00:00","2018-01-16T00:00:00","2018-01-17T00:00:00","2018-01-18T00:00:00","2018-01-19T00:00:00","2018-01-20T00:00:00","2018-01-21T00:00:00","2018-01-22T00:00:00","2018-01-23T00:00:00","2018-01-24T00:00:00","2018-01-25T00:00:00","2018-01-26T00:00:00","2018-01-27T00:00:00","2018-01-28T00:00:00","2018-01-29T00:00:00","2018-01-30T00:00:00","2018-01-31T00:00:00","2018-02-01T00:00:00","2018-02-02T00:00:00","2018-02-03T00:00:00","2018-02-04T00:00:00","2018-02-05T00:00:00","2018-02-06T00:00:00","2018-02-07T00:00:00","2018-02-08T00:00:00","2018-02-09T00:00:00","2018-02-10T00:00:00","2018-02-11T00:00:00","2018-02-12T00:00:00","2018-02-13T00:00:00","2018-02-14T00:00:00","2018-02-15T00:00:00","2018-02-16T00:00:00","2018-02-17T00:00:00","2018-02-18T00:00:00","2018-02-19T00:00:00","2018-02-20T00:00:00","2018-02-21T00:00:00","2018-02-22T00:00:00","2018-02-23T00:00:00","2018-02-24T00:00:00","2018-02-25T00:00:00","2018-02-26T00:00:00","2018-02-27T00:00:00","2018-02-28T00:00:00","2018-03-01T00:00:00","2018-03-02T00:00:00","2018-03-03T00:00:00","2018-03-04T00:00:00","2018-03-05T00:00:00","2018-03-06T00:00:00","2018-03-07T00:00:00","2018-03-08T00:00:00","2018-03-09T00:00:00","2018-03-10T00:00:00","2018-03-11T00:00:00","2018-03-12T00:00:00","2018-03-13T00:00:00","2018-03-14T00:00:00","2018-03-15T00:00:00","2018-03-16T00:00:00","2018-03-17T00:00:00","2018-03-18T00:00:00","2018-03-19T00:00:00","2018-03-20T00:00:00","2018-03-21T00:00:00","2018-03-22T00:00:00","2018-03-23T00:00:00","2018-03-24T00:00:00","2018-03-25T00:00:00","2018-03-26T00:00:00","2018-03-27T00:00:00","2018-03-28T00:00:00","2018-03-29T00:00:00","2018-03-30T00:00:00","2018-03-31T00:00:00","2018-04-01T00:00:00","2018-04-02T00:00:00","2018-04-03T00:00:00","2018-04-04T00:00:00","2018-04-05T00:00:00","2018-04-06T00:00:00","2018-04-07T00:00:00","2018-04-08T00:00:00","2018-04-09T00:00:00","2018-04-10T00:00:00","2018-04-11T00:00:00","2018-04-12T00:00:00","2018-04-13T00:00:00","2018-04-14T00:00:00","2018-04-15T00:00:00","2018-04-16T00:00:00","2018-04-17T00:00:00","2018-04-18T00:00:00","2018-04-19T00:00:00","2018-04-20T00:00:00","2018-04-21T00:00:00","2018-04-22T00:00:00","2018-04-23T00:00:00","2018-04-24T00:00:00","2018-04-25T00:00:00","2018-04-26T00:00:00","2018-04-27T00:00:00","2018-04-28T00:00:00","2018-04-29T00:00:00","2018-04-30T00:00:00","2018-05-01T00:00:00","2018-05-02T00:00:00","2018-05-03T00:00:00","2018-05-04T00:00:00","2018-05-05T00:00:00","2018-05-06T00:00:00","2018-05-07T00:00:00","2018-05-08T00:00:00","2018-05-09T00:00:00","2018-05-10T00:00:00","2018-05-11T00:00:00","2018-05-12T00:00:00","2018-05-13T00:00:00","2018-05-14T00:00:00","2018-05-15T00:00:00","2018-05-16T00:00:00","2018-05-17T00:00:00","2018-05-18T00:00:00","2018-05-19T00:00:00","2018-05-20T00:00:00","2018-05-21T00:00:00","2018-05-23T00:00:00","2018-05-24T00:00:00","2018-05-25T00:00:00","2018-05-26T00:00:00","2018-05-27T00:00:00","2018-05-28T00:00:00","2018-05-29T00:00:00","2018-05-30T00:00:00","2018-05-31T00:00:00","2018-06-01T00:00:00","2018-06-02T00:00:00","2018-06-03T00:00:00","2018-06-04T00:00:00","2018-06-05T00:00:00","2018-06-06T00:00:00","2018-06-07T00:00:00","2018-06-08T00:00:00","2018-06-09T00:00:00","2018-06-10T00:00:00","2018-06-11T00:00:00","2018-06-12T00:00:00","2018-06-13T00:00:00","2018-06-14T00:00:00","2018-06-15T00:00:00","2018-06-16T00:00:00","2018-06-17T00:00:00","2018-06-18T00:00:00","2018-06-19T00:00:00","2018-06-20T00:00:00","2018-06-21T00:00:00","2018-06-22T00:00:00","2018-06-23T00:00:00","2018-06-24T00:00:00","2018-06-25T00:00:00","2018-06-26T00:00:00","2018-06-27T00:00:00","2018-06-28T00:00:00","2018-06-29T00:00:00","2018-06-30T00:00:00","2018-07-01T00:00:00","2018-07-02T00:00:00","2018-07-03T00:00:00","2018-07-04T00:00:00","2018-07-05T00:00:00","2018-07-06T00:00:00","2018-07-07T00:00:00","2018-07-08T00:00:00","2018-07-09T00:00:00","2018-07-10T00:00:00","2018-07-11T00:00:00","2018-07-12T00:00:00","2018-07-13T00:00:00","2018-07-14T00:00:00","2018-07-15T00:00:00","2018-07-16T00:00:00","2018-07-17T00:00:00","2018-07-18T00:00:00","2018-07-19T00:00:00","2018-07-20T00:00:00","2018-07-21T00:00:00","2018-07-22T00:00:00","2018-07-26T00:00:00","2018-07-27T00:00:00","2018-07-28T00:00:00","2018-07-29T00:00:00","2018-07-30T00:00:00","2018-07-31T00:00:00","2018-08-01T00:00:00","2018-08-02T00:00:00","2018-08-03T00:00:00","2018-08-04T00:00:00","2018-08-05T00:00:00","2018-08-06T00:00:00","2018-08-07T00:00:00","2018-08-08T00:00:00","2018-08-09T00:00:00","2018-08-10T00:00:00","2018-08-11T00:00:00","2018-08-12T00:00:00","2018-08-13T00:00:00","2018-08-14T00:00:00","2018-08-15T00:00:00","2018-08-16T00:00:00","2018-08-17T00:00:00","2018-08-18T00:00:00","2018-08-19T00:00:00","2018-08-20T00:00:00","2018-08-21T00:00:00","2018-08-22T00:00:00","2018-08-23T00:00:00","2018-08-24T00:00:00","2018-08-25T00:00:00","2018-08-26T00:00:00","2018-08-27T00:00:00","2018-08-28T00:00:00","2018-08-29T00:00:00","2018-08-30T00:00:00","2018-08-31T00:00:00","2018-09-01T00:00:00","2018-09-02T00:00:00","2018-09-03T00:00:00","2018-09-04T00:00:00","2018-09-05T00:00:00","2018-09-06T00:00:00","2018-09-07T00:00:00","2018-09-08T00:00:00","2018-09-09T00:00:00","2018-09-10T00:00:00","2018-09-11T00:00:00","2018-09-12T00:00:00","2018-09-13T00:00:00","2018-09-14T00:00:00","2018-09-15T00:00:00","2018-09-16T00:00:00","2018-09-17T00:00:00","2018-09-18T00:00:00","2018-09-19T00:00:00","2018-09-20T00:00:00","2018-09-21T00:00:00","2018-09-22T00:00:00","2018-09-23T00:00:00","2018-09-24T00:00:00","2018-09-25T00:00:00","2018-09-26T00:00:00","2018-09-27T00:00:00","2018-09-28T00:00:00","2018-09-29T00:00:00","2018-09-30T00:00:00","2018-10-01T00:00:00","2018-10-02T00:00:00","2018-10-03T00:00:00","2018-10-04T00:00:00","2018-10-05T00:00:00","2018-10-06T00:00:00","2018-10-07T00:00:00","2018-10-08T00:00:00","2018-10-09T00:00:00","2018-10-10T00:00:00","2018-10-11T00:00:00","2018-10-12T00:00:00","2018-10-13T00:00:00","2018-10-14T00:00:00","2018-10-15T00:00:00","2018-10-16T00:00:00","2018-10-17T00:00:00","2018-10-18T00:00:00","2018-10-19T00:00:00","2018-10-20T00:00:00","2018-10-21T00:00:00","2018-10-22T00:00:00","2018-10-23T00:00:00","2018-10-24T00:00:00","2018-10-25T00:00:00","2018-10-26T00:00:00","2018-10-27T00:00:00","2018-10-28T00:00:00","2018-10-29T00:00:00","2018-10-30T00:00:00","2018-10-31T00:00:00","2018-11-01T00:00:00","2018-11-02T00:00:00","2018-11-03T00:00:00","2018-11-04T00:00:00","2018-11-05T00:00:00","2018-11-06T00:00:00","2018-11-07T00:00:00","2018-11-08T00:00:00","2018-11-09T00:00:00","2018-11-10T00:00:00","2018-11-11T00:00:00","2018-11-12T00:00:00","2018-11-13T00:00:00","2018-11-14T00:00:00","2018-11-15T00:00:00","2018-11-16T00:00:00","2018-11-17T00:00:00","2018-11-18T00:00:00","2018-11-19T00:00:00","2018-11-20T00:00:00","2018-11-21T00:00:00","2018-11-22T00:00:00","2018-11-23T00:00:00","2018-11-24T00:00:00","2018-11-25T00:00:00","2018-11-26T00:00:00","2018-11-27T00:00:00","2018-11-28T00:00:00","2018-11-29T00:00:00","2018-11-30T00:00:00","2018-12-01T00:00:00","2018-12-02T00:00:00","2018-12-03T00:00:00","2018-12-04T00:00:00","2018-12-05T00:00:00","2018-12-06T00:00:00","2018-12-07T00:00:00","2018-12-08T00:00:00","2018-12-09T00:00:00","2018-12-10T00:00:00","2018-12-11T00:00:00","2018-12-12T00:00:00","2018-12-13T00:00:00","2018-12-14T00:00:00","2018-12-15T00:00:00","2018-12-16T00:00:00","2018-12-17T00:00:00","2018-12-18T00:00:00","2018-12-19T00:00:00","2018-12-20T00:00:00","2018-12-21T00:00:00","2018-12-22T00:00:00","2018-12-23T00:00:00","2018-12-24T00:00:00","2018-12-25T00:00:00","2018-12-26T00:00:00","2018-12-27T00:00:00","2018-12-28T00:00:00","2018-12-29T00:00:00","2018-12-30T00:00:00","2018-12-31T00:00:00","2019-01-01T00:00:00","2019-01-02T00:00:00","2019-01-03T00:00:00","2019-01-04T00:00:00","2019-01-05T00:00:00","2019-01-06T00:00:00","2019-01-07T00:00:00","2019-01-08T00:00:00","2019-01-09T00:00:00","2019-01-10T00:00:00","2019-01-11T00:00:00","2019-01-12T00:00:00","2019-01-13T00:00:00","2019-01-14T00:00:00","2019-01-15T00:00:00","2019-01-16T00:00:00","2019-01-17T00:00:00","2019-01-18T00:00:00","2019-01-19T00:00:00","2019-01-20T00:00:00","2019-01-21T00:00:00","2019-01-22T00:00:00","2019-01-23T00:00:00","2019-01-24T00:00:00","2019-01-25T00:00:00","2019-01-26T00:00:00","2019-01-27T00:00:00","2019-01-28T00:00:00","2019-01-29T00:00:00","2019-01-30T00:00:00","2019-01-31T00:00:00","2019-02-01T00:00:00","2019-02-02T00:00:00","2019-02-03T00:00:00","2019-02-04T00:00:00","2019-02-05T00:00:00","2019-02-06T00:00:00","2019-02-07T00:00:00","2019-02-08T00:00:00","2019-02-09T00:00:00","2019-02-10T00:00:00","2019-02-11T00:00:00","2019-02-12T00:00:00","2019-02-13T00:00:00","2019-02-14T00:00:00","2019-02-15T00:00:00","2019-02-16T00:00:00","2019-02-17T00:00:00","2019-02-18T00:00:00","2019-02-19T00:00:00","2019-02-20T00:00:00","2019-02-21T00:00:00","2019-02-22T00:00:00","2019-02-23T00:00:00","2019-02-24T00:00:00","2019-02-25T00:00:00","2019-02-26T00:00:00","2019-02-27T00:00:00","2019-02-28T00:00:00","2019-03-01T00:00:00","2019-03-02T00:00:00","2019-03-03T00:00:00","2019-03-04T00:00:00","2019-03-05T00:00:00","2019-03-06T00:00:00","2019-03-07T00:00:00","2019-03-08T00:00:00","2019-03-09T00:00:00","2019-03-10T00:00:00","2019-03-11T00:00:00","2019-03-12T00:00:00","2019-03-13T00:00:00","2019-03-14T00:00:00","2019-03-15T00:00:00","2019-03-16T00:00:00","2019-03-17T00:00:00","2019-03-18T00:00:00","2019-03-19T00:00:00","2019-03-20T00:00:00","2019-03-21T00:00:00","2019-03-22T00:00:00","2019-03-23T00:00:00","2019-03-24T00:00:00","2019-03-25T00:00:00","2019-03-26T00:00:00","2019-03-27T00:00:00","2019-03-28T00:00:00","2019-03-29T00:00:00","2019-03-30T00:00:00","2019-03-31T00:00:00","2019-04-01T00:00:00","2019-04-02T00:00:00","2019-04-03T00:00:00","2019-04-04T00:00:00","2019-04-05T00:00:00","2019-04-06T00:00:00","2019-04-07T00:00:00","2019-04-08T00:00:00","2019-04-09T00:00:00","2019-04-10T00:00:00","2019-04-11T00:00:00","2019-04-12T00:00:00","2019-04-13T00:00:00","2019-04-14T00:00:00","2019-04-15T00:00:00","2019-04-16T00:00:00","2019-04-17T00:00:00","2019-04-18T00:00:00","2019-04-19T00:00:00","2019-04-20T00:00:00","2019-04-21T00:00:00","2019-04-22T00:00:00","2019-04-23T00:00:00","2019-04-24T00:00:00","2019-04-25T00:00:00","2019-04-29T00:00:00","2019-04-30T00:00:00","2019-05-01T00:00:00","2019-05-02T00:00:00","2019-05-03T00:00:00","2019-05-04T00:00:00","2019-05-05T00:00:00","2019-05-06T00:00:00","2019-05-07T00:00:00","2019-05-08T00:00:00","2019-05-09T00:00:00","2019-05-10T00:00:00","2019-05-11T00:00:00","2019-05-12T00:00:00","2019-05-13T00:00:00","2019-05-14T00:00:00","2019-05-15T00:00:00","2019-05-16T00:00:00","2019-05-17T00:00:00","2019-05-18T00:00:00","2019-05-19T00:00:00","2019-05-20T00:00:00","2019-05-21T00:00:00","2019-05-22T00:00:00","2019-05-23T00:00:00","2019-05-24T00:00:00","2019-05-25T00:00:00","2019-05-26T00:00:00","2019-05-27T00:00:00","2019-05-28T00:00:00","2019-05-29T00:00:00","2019-05-30T00:00:00","2019-05-31T00:00:00","2019-06-01T00:00:00","2019-06-02T00:00:00","2019-06-03T00:00:00","2019-06-04T00:00:00","2019-06-05T00:00:00","2019-06-06T00:00:00","2019-06-07T00:00:00","2019-06-08T00:00:00","2019-06-09T00:00:00","2019-06-10T00:00:00","2019-06-11T00:00:00","2019-06-12T00:00:00","2019-06-13T00:00:00","2019-06-14T00:00:00","2019-06-15T00:00:00","2019-06-16T00:00:00","2019-06-17T00:00:00","2019-06-18T00:00:00","2019-06-19T00:00:00","2019-06-20T00:00:00","2019-06-21T00:00:00","2019-06-22T00:00:00","2019-06-23T00:00:00","2019-06-24T00:00:00","2019-06-25T00:00:00","2019-06-26T00:00:00","2019-06-27T00:00:00","2019-06-28T00:00:00","2019-06-29T00:00:00","2019-06-30T00:00:00","2019-07-01T00:00:00","2019-07-02T00:00:00","2019-07-03T00:00:00","2019-07-04T00:00:00","2019-07-05T00:00:00","2019-07-06T00:00:00","2019-07-07T00:00:00","2019-07-08T00:00:00","2019-07-09T00:00:00","2019-07-10T00:00:00","2019-07-11T00:00:00","2019-07-12T00:00:00","2019-07-13T00:00:00","2019-07-14T00:00:00","2019-07-15T00:00:00","2019-07-16T00:00:00","2019-07-17T00:00:00","2019-07-18T00:00:00","2019-07-19T00:00:00","2019-07-20T00:00:00","2019-07-21T00:00:00","2019-07-22T00:00:00","2019-07-23T00:00:00","2019-07-24T00:00:00","2019-07-25T00:00:00","2019-07-26T00:00:00","2019-07-27T00:00:00","2019-07-28T00:00:00","2019-07-29T00:00:00","2019-07-30T00:00:00","2019-07-31T00:00:00","2019-08-01T00:00:00","2019-08-02T00:00:00","2019-08-03T00:00:00","2019-08-04T00:00:00","2019-08-05T00:00:00","2019-08-06T00:00:00","2019-08-07T00:00:00","2019-08-08T00:00:00","2019-08-09T00:00:00","2019-08-10T00:00:00","2019-08-11T00:00:00","2019-08-12T00:00:00","2019-08-13T00:00:00","2019-08-14T00:00:00","2019-08-15T00:00:00","2019-08-16T00:00:00","2019-08-17T00:00:00","2019-08-18T00:00:00","2019-08-19T00:00:00","2019-08-20T00:00:00","2019-08-21T00:00:00","2019-08-22T00:00:00","2019-08-23T00:00:00","2019-08-24T00:00:00","2019-08-25T00:00:00","2019-08-26T00:00:00","2019-08-27T00:00:00","2019-08-28T00:00:00","2019-08-29T00:00:00","2019-08-30T00:00:00","2019-08-31T00:00:00","2019-09-01T00:00:00","2019-09-02T00:00:00","2019-09-03T00:00:00","2019-09-04T00:00:00","2019-09-05T00:00:00","2019-09-06T00:00:00","2019-09-07T00:00:00","2019-09-08T00:00:00","2019-09-09T00:00:00","2019-09-10T00:00:00","2019-09-11T00:00:00","2019-09-12T00:00:00","2019-09-13T00:00:00","2019-09-14T00:00:00","2019-09-15T00:00:00","2019-09-16T00:00:00","2019-09-17T00:00:00","2019-09-18T00:00:00","2019-09-19T00:00:00","2019-09-20T00:00:00","2019-09-21T00:00:00","2019-09-22T00:00:00","2019-09-23T00:00:00","2019-09-24T00:00:00","2019-09-25T00:00:00","2019-09-26T00:00:00","2019-09-27T00:00:00","2019-09-28T00:00:00","2019-09-29T00:00:00","2019-09-30T00:00:00","2019-10-01T00:00:00","2019-10-02T00:00:00","2019-10-03T00:00:00","2019-10-04T00:00:00","2019-10-05T00:00:00","2019-10-06T00:00:00","2019-10-07T00:00:00","2019-10-08T00:00:00","2019-10-09T00:00:00","2019-10-10T00:00:00","2019-10-11T00:00:00","2019-10-12T00:00:00","2019-10-13T00:00:00","2019-10-14T00:00:00","2019-10-15T00:00:00","2019-10-16T00:00:00","2019-10-17T00:00:00","2019-10-18T00:00:00","2019-10-19T00:00:00","2019-10-20T00:00:00","2019-10-21T00:00:00","2019-10-22T00:00:00","2019-10-23T00:00:00","2019-10-24T00:00:00","2019-10-25T00:00:00","2019-10-26T00:00:00","2019-10-27T00:00:00","2019-10-28T00:00:00","2019-10-29T00:00:00","2019-10-30T00:00:00","2019-10-31T00:00:00","2019-11-01T00:00:00","2019-11-02T00:00:00","2019-11-03T00:00:00","2019-11-04T00:00:00","2019-11-05T00:00:00","2019-11-06T00:00:00","2019-11-07T00:00:00","2019-11-08T00:00:00","2019-11-09T00:00:00","2019-11-10T00:00:00","2019-11-11T00:00:00","2019-11-12T00:00:00","2019-11-13T00:00:00","2019-11-14T00:00:00","2019-11-15T00:00:00","2019-11-16T00:00:00","2019-11-17T00:00:00","2019-11-18T00:00:00","2019-11-19T00:00:00","2019-11-20T00:00:00","2019-11-21T00:00:00","2019-11-22T00:00:00","2019-11-23T00:00:00","2019-11-24T00:00:00","2019-11-25T00:00:00","2019-11-26T00:00:00","2019-11-27T00:00:00","2019-11-28T00:00:00","2019-11-29T00:00:00","2019-11-30T00:00:00","2019-12-01T00:00:00","2019-12-02T00:00:00","2019-12-03T00:00:00","2019-12-04T00:00:00","2019-12-05T00:00:00","2019-12-06T00:00:00","2019-12-07T00:00:00","2019-12-08T00:00:00","2019-12-09T00:00:00","2019-12-10T00:00:00","2019-12-11T00:00:00","2019-12-12T00:00:00","2019-12-13T00:00:00","2019-12-14T00:00:00","2019-12-15T00:00:00","2019-12-16T00:00:00","2019-12-17T00:00:00","2019-12-18T00:00:00","2019-12-19T00:00:00","2019-12-20T00:00:00","2019-12-21T00:00:00","2019-12-22T00:00:00","2019-12-23T00:00:00","2019-12-24T00:00:00","2019-12-25T00:00:00","2019-12-26T00:00:00","2019-12-27T00:00:00","2019-12-28T00:00:00","2019-12-29T00:00:00","2019-12-30T00:00:00","2019-12-31T00:00:00","2020-01-01T00:00:00","2020-01-02T00:00:00","2020-01-03T00:00:00","2020-01-04T00:00:00","2020-01-05T00:00:00","2020-01-06T00:00:00","2020-01-07T00:00:00","2020-01-08T00:00:00","2020-01-09T00:00:00","2020-01-10T00:00:00","2020-01-11T00:00:00","2020-01-12T00:00:00","2020-01-13T00:00:00","2020-01-14T00:00:00","2020-01-15T00:00:00","2020-01-16T00:00:00","2020-01-17T00:00:00","2020-01-18T00:00:00","2020-01-19T00:00:00","2020-01-20T00:00:00","2020-01-21T00:00:00","2020-01-22T00:00:00","2020-01-23T00:00:00","2020-01-24T00:00:00","2020-01-25T00:00:00","2020-01-26T00:00:00","2020-01-27T00:00:00","2020-01-28T00:00:00","2020-01-29T00:00:00","2020-01-30T00:00:00","2020-01-31T00:00:00","2020-02-01T00:00:00","2020-02-02T00:00:00","2020-02-03T00:00:00","2020-02-04T00:00:00","2020-02-05T00:00:00","2020-02-06T00:00:00","2020-02-07T00:00:00","2020-02-08T00:00:00","2020-02-09T00:00:00","2020-02-10T00:00:00","2020-02-11T00:00:00","2020-02-12T00:00:00","2020-02-13T00:00:00","2020-02-14T00:00:00","2020-02-15T00:00:00","2020-02-16T00:00:00","2020-02-17T00:00:00","2020-02-18T00:00:00","2020-02-19T00:00:00","2020-02-20T00:00:00","2020-02-21T00:00:00","2020-02-22T00:00:00","2020-02-23T00:00:00","2020-02-24T00:00:00","2020-02-25T00:00:00","2020-02-26T00:00:00","2020-02-27T00:00:00","2020-02-28T00:00:00","2020-02-29T00:00:00","2020-03-01T00:00:00","2020-03-02T00:00:00","2020-03-03T00:00:00","2020-03-04T00:00:00","2020-03-05T00:00:00","2020-03-06T00:00:00","2020-03-07T00:00:00","2020-03-08T00:00:00","2020-03-09T00:00:00","2020-03-10T00:00:00","2020-03-11T00:00:00","2020-03-12T00:00:00","2020-03-13T00:00:00","2020-03-14T00:00:00","2020-03-15T00:00:00","2020-03-16T00:00:00","2020-03-17T00:00:00","2020-03-18T00:00:00","2020-03-19T00:00:00","2020-03-20T00:00:00","2020-03-21T00:00:00","2020-03-22T00:00:00","2020-03-23T00:00:00","2020-03-24T00:00:00","2020-03-25T00:00:00","2020-03-26T00:00:00","2020-03-27T00:00:00","2020-03-28T00:00:00","2020-03-29T00:00:00","2020-03-30T00:00:00","2020-03-31T00:00:00","2020-04-01T00:00:00","2020-04-02T00:00:00","2020-04-03T00:00:00","2020-04-04T00:00:00","2020-04-05T00:00:00","2020-04-06T00:00:00","2020-04-07T00:00:00","2020-04-08T00:00:00","2020-04-09T00:00:00","2020-04-10T00:00:00","2020-04-11T00:00:00","2020-04-12T00:00:00","2020-04-13T00:00:00","2020-04-14T00:00:00","2020-04-15T00:00:00","2020-04-16T00:00:00","2020-04-17T00:00:00","2020-04-18T00:00:00","2020-04-19T00:00:00","2020-04-20T00:00:00","2020-04-21T00:00:00","2020-04-22T00:00:00","2020-04-23T00:00:00","2020-04-24T00:00:00","2020-04-25T00:00:00","2020-04-26T00:00:00","2020-04-27T00:00:00","2020-04-28T00:00:00","2020-04-29T00:00:00","2020-04-30T00:00:00","2020-05-01T00:00:00","2020-05-02T00:00:00","2020-05-03T00:00:00","2020-05-04T00:00:00","2020-05-05T00:00:00","2020-05-06T00:00:00","2020-05-07T00:00:00","2020-05-08T00:00:00","2020-05-09T00:00:00","2020-05-10T00:00:00","2020-05-11T00:00:00","2020-05-12T00:00:00","2020-05-13T00:00:00","2020-05-14T00:00:00","2020-05-15T00:00:00","2020-05-16T00:00:00","2020-05-17T00:00:00","2020-05-18T00:00:00","2020-05-19T00:00:00","2020-05-20T00:00:00","2020-05-21T00:00:00","2020-05-22T00:00:00","2020-05-23T00:00:00","2020-05-24T00:00:00","2020-05-25T00:00:00","2020-05-26T00:00:00","2020-05-27T00:00:00","2020-05-28T00:00:00","2020-05-29T00:00:00","2020-05-30T00:00:00","2020-05-31T00:00:00","2020-06-01T00:00:00","2020-06-02T00:00:00","2020-06-03T00:00:00","2020-06-04T00:00:00","2020-06-05T00:00:00","2020-06-06T00:00:00","2020-06-07T00:00:00","2020-06-08T00:00:00","2020-06-09T00:00:00","2020-06-10T00:00:00","2020-06-11T00:00:00","2020-06-12T00:00:00","2020-06-13T00:00:00","2020-06-14T00:00:00","2020-06-15T00:00:00","2020-06-16T00:00:00","2020-06-17T00:00:00","2020-06-18T00:00:00","2020-06-19T00:00:00","2020-06-20T00:00:00","2020-06-21T00:00:00","2020-06-22T00:00:00","2020-06-23T00:00:00","2020-06-24T00:00:00","2020-06-25T00:00:00","2020-06-26T00:00:00","2020-06-27T00:00:00","2020-06-28T00:00:00","2020-06-29T00:00:00","2020-06-30T00:00:00","2020-07-01T00:00:00","2020-07-02T00:00:00","2020-07-03T00:00:00","2020-07-04T00:00:00","2020-07-05T00:00:00","2020-07-06T00:00:00","2020-07-07T00:00:00","2020-07-08T00:00:00","2020-07-09T00:00:00","2020-07-10T00:00:00","2020-07-11T00:00:00","2020-07-12T00:00:00","2020-07-13T00:00:00","2020-07-14T00:00:00","2020-07-15T00:00:00","2020-07-16T00:00:00","2020-07-17T00:00:00","2020-07-18T00:00:00","2020-07-19T00:00:00","2020-07-20T00:00:00","2020-07-21T00:00:00","2020-07-22T00:00:00","2020-07-23T00:00:00","2020-07-24T00:00:00","2020-07-25T00:00:00","2020-07-26T00:00:00","2020-07-27T00:00:00","2020-07-28T00:00:00","2020-07-29T00:00:00","2020-07-30T00:00:00","2020-07-31T00:00:00","2020-08-01T00:00:00","2020-08-02T00:00:00","2020-08-03T00:00:00","2020-08-04T00:00:00","2020-08-05T00:00:00","2020-08-06T00:00:00","2020-08-07T00:00:00","2020-08-08T00:00:00","2020-08-09T00:00:00","2020-08-10T00:00:00","2020-08-11T00:00:00","2020-08-12T00:00:00","2020-08-13T00:00:00","2020-08-14T00:00:00","2020-08-15T00:00:00","2020-08-16T00:00:00","2020-08-17T00:00:00","2020-08-18T00:00:00","2020-08-19T00:00:00","2020-08-20T00:00:00","2020-08-21T00:00:00","2020-08-22T00:00:00","2020-08-23T00:00:00","2020-08-24T00:00:00","2020-08-25T00:00:00","2020-08-26T00:00:00","2020-08-27T00:00:00","2020-08-28T00:00:00","2020-08-29T00:00:00","2020-08-30T00:00:00","2020-08-31T00:00:00","2020-09-01T00:00:00","2020-09-02T00:00:00","2020-09-03T00:00:00","2020-09-04T00:00:00","2020-09-05T00:00:00","2020-09-06T00:00:00","2020-09-07T00:00:00","2020-09-08T00:00:00","2020-09-09T00:00:00","2020-09-10T00:00:00","2020-09-11T00:00:00","2020-09-12T00:00:00","2020-09-13T00:00:00","2020-09-14T00:00:00","2020-09-15T00:00:00","2020-09-16T00:00:00","2020-09-17T00:00:00","2020-09-18T00:00:00","2020-09-19T00:00:00","2020-09-20T00:00:00","2020-09-21T00:00:00","2020-09-22T00:00:00","2020-09-23T00:00:00","2020-09-24T00:00:00","2020-09-25T00:00:00","2020-09-26T00:00:00","2020-09-27T00:00:00","2020-09-28T00:00:00","2020-09-29T00:00:00","2020-09-30T00:00:00","2020-10-01T00:00:00","2020-10-02T00:00:00","2020-10-03T00:00:00","2020-10-04T00:00:00","2020-10-05T00:00:00","2020-10-06T00:00:00","2020-10-07T00:00:00","2020-10-08T00:00:00","2020-10-09T00:00:00","2020-10-10T00:00:00","2020-10-11T00:00:00","2020-10-12T00:00:00","2020-10-13T00:00:00","2020-10-14T00:00:00","2020-10-15T00:00:00","2020-10-16T00:00:00","2020-10-17T00:00:00","2020-10-18T00:00:00","2020-10-19T00:00:00","2020-10-20T00:00:00","2020-10-21T00:00:00","2020-10-22T00:00:00","2020-10-23T00:00:00","2020-10-24T00:00:00","2020-10-25T00:00:00","2020-10-26T00:00:00","2020-10-27T00:00:00","2020-10-28T00:00:00","2020-10-29T00:00:00","2020-10-30T00:00:00","2020-10-31T00:00:00","2020-11-01T00:00:00","2020-11-02T00:00:00","2020-11-03T00:00:00","2020-11-04T00:00:00","2020-11-05T00:00:00","2020-11-06T00:00:00","2020-11-07T00:00:00","2020-11-08T00:00:00","2020-11-09T00:00:00","2020-11-10T00:00:00","2020-11-11T00:00:00","2020-11-12T00:00:00","2020-11-13T00:00:00","2020-11-14T00:00:00","2020-11-15T00:00:00","2020-11-16T00:00:00","2020-11-17T00:00:00","2020-11-18T00:00:00","2020-11-19T00:00:00","2020-11-20T00:00:00","2020-11-21T00:00:00","2020-11-22T00:00:00","2020-11-23T00:00:00","2020-11-24T00:00:00","2020-11-25T00:00:00","2020-11-26T00:00:00","2020-11-27T00:00:00","2020-11-28T00:00:00","2020-11-29T00:00:00","2020-11-30T00:00:00","2020-12-01T00:00:00","2020-12-02T00:00:00","2020-12-03T00:00:00","2020-12-04T00:00:00","2020-12-05T00:00:00","2020-12-06T00:00:00","2020-12-07T00:00:00","2020-12-08T00:00:00","2020-12-09T00:00:00","2020-12-10T00:00:00","2020-12-11T00:00:00","2020-12-12T00:00:00","2020-12-13T00:00:00","2020-12-14T00:00:00","2020-12-15T00:00:00","2020-12-16T00:00:00","2020-12-17T00:00:00","2020-12-18T00:00:00","2020-12-19T00:00:00","2020-12-20T00:00:00","2020-12-21T00:00:00","2020-12-22T00:00:00","2020-12-23T00:00:00","2020-12-24T00:00:00","2020-12-25T00:00:00","2020-12-26T00:00:00","2020-12-27T00:00:00","2020-12-28T00:00:00","2020-12-29T00:00:00","2020-12-30T00:00:00","2020-12-31T00:00:00","2021-01-01T00:00:00","2021-01-02T00:00:00","2021-01-03T00:00:00","2021-01-04T00:00:00","2021-01-05T00:00:00","2021-01-06T00:00:00","2021-01-07T00:00:00","2021-01-08T00:00:00","2021-01-09T00:00:00","2021-01-10T00:00:00","2021-01-11T00:00:00","2021-01-12T00:00:00","2021-01-13T00:00:00","2021-01-14T00:00:00","2021-01-15T00:00:00","2021-01-16T00:00:00","2021-01-17T00:00:00","2021-01-18T00:00:00","2021-01-19T00:00:00","2021-01-20T00:00:00","2021-01-21T00:00:00","2021-01-22T00:00:00","2021-01-23T00:00:00","2021-01-24T00:00:00","2021-01-25T00:00:00","2021-01-26T00:00:00","2021-01-27T00:00:00","2021-01-28T00:00:00","2021-01-29T00:00:00","2021-01-30T00:00:00","2021-01-31T00:00:00","2021-02-01T00:00:00","2021-02-02T00:00:00","2021-02-03T00:00:00","2021-02-04T00:00:00","2021-02-05T00:00:00","2021-02-06T00:00:00","2021-02-07T00:00:00","2021-02-08T00:00:00","2021-02-09T00:00:00","2021-02-10T00:00:00","2021-02-11T00:00:00","2021-02-12T00:00:00","2021-02-13T00:00:00","2021-02-14T00:00:00","2021-02-15T00:00:00","2021-02-16T00:00:00","2021-02-17T00:00:00","2021-02-18T00:00:00","2021-02-19T00:00:00","2021-02-20T00:00:00","2021-02-21T00:00:00","2021-02-22T00:00:00","2021-02-23T00:00:00","2021-02-24T00:00:00","2021-02-25T00:00:00","2021-02-26T00:00:00","2021-02-27T00:00:00","2021-02-28T00:00:00","2021-03-01T00:00:00","2021-03-02T00:00:00","2021-03-03T00:00:00","2021-03-04T00:00:00","2021-03-05T00:00:00","2021-03-06T00:00:00","2021-03-07T00:00:00","2021-03-08T00:00:00","2021-03-09T00:00:00","2021-03-10T00:00:00","2021-03-11T00:00:00","2021-03-12T00:00:00","2021-03-13T00:00:00","2021-03-14T00:00:00","2021-03-15T00:00:00","2021-03-16T00:00:00","2021-03-17T00:00:00","2021-03-18T00:00:00","2021-03-19T00:00:00","2021-03-20T00:00:00","2021-03-21T00:00:00","2021-03-22T00:00:00","2021-03-23T00:00:00","2021-03-24T00:00:00","2021-03-25T00:00:00","2021-03-26T00:00:00","2021-03-27T00:00:00","2021-03-28T00:00:00","2021-03-29T00:00:00","2021-03-30T00:00:00","2021-03-31T00:00:00","2021-04-01T00:00:00","2021-04-02T00:00:00","2021-04-03T00:00:00","2021-04-04T00:00:00","2021-04-05T00:00:00","2021-04-06T00:00:00","2021-04-07T00:00:00","2021-04-08T00:00:00","2021-04-09T00:00:00","2021-04-10T00:00:00","2021-04-11T00:00:00","2021-04-12T00:00:00","2021-04-13T00:00:00","2021-04-14T00:00:00","2021-04-15T00:00:00","2021-04-16T00:00:00","2021-04-17T00:00:00","2021-04-18T00:00:00","2021-04-19T00:00:00","2021-04-20T00:00:00","2021-04-21T00:00:00","2021-04-22T00:00:00","2021-04-23T00:00:00","2021-04-24T00:00:00","2021-04-25T00:00:00","2021-04-26T00:00:00","2021-04-27T00:00:00","2021-04-28T00:00:00","2021-04-29T00:00:00","2021-04-30T00:00:00","2021-05-01T00:00:00","2021-05-02T00:00:00","2021-05-03T00:00:00","2021-05-04T00:00:00","2021-05-05T00:00:00","2021-05-06T00:00:00","2021-05-07T00:00:00","2021-05-08T00:00:00","2021-05-09T00:00:00","2021-05-10T00:00:00","2021-05-11T00:00:00","2021-05-12T00:00:00","2021-05-13T00:00:00","2021-05-14T00:00:00","2021-05-15T00:00:00","2021-05-16T00:00:00","2021-05-17T00:00:00","2021-05-18T00:00:00","2021-05-19T00:00:00","2021-05-20T00:00:00","2021-05-21T00:00:00","2021-05-22T00:00:00","2021-05-23T00:00:00","2021-05-24T00:00:00","2021-05-25T00:00:00","2021-05-26T00:00:00","2021-05-27T00:00:00","2021-05-28T00:00:00","2021-05-29T00:00:00","2021-05-30T00:00:00","2021-05-31T00:00:00","2021-06-01T00:00:00","2021-06-02T00:00:00","2021-06-03T00:00:00","2021-06-04T00:00:00","2021-06-05T00:00:00","2021-06-06T00:00:00","2021-06-07T00:00:00","2021-06-08T00:00:00","2021-06-09T00:00:00","2021-06-10T00:00:00","2021-06-11T00:00:00","2021-06-12T00:00:00","2021-06-13T00:00:00","2021-06-14T00:00:00","2021-06-15T00:00:00","2021-06-16T00:00:00","2021-06-17T00:00:00","2021-06-18T00:00:00","2021-06-19T00:00:00","2021-06-20T00:00:00","2021-06-21T00:00:00","2021-06-22T00:00:00","2021-06-23T00:00:00","2021-06-24T00:00:00","2021-06-25T00:00:00","2021-06-26T00:00:00","2021-06-27T00:00:00","2021-06-28T00:00:00","2021-06-29T00:00:00","2021-06-30T00:00:00","2021-07-01T00:00:00","2021-07-02T00:00:00","2021-07-03T00:00:00","2021-07-04T00:00:00","2021-07-05T00:00:00","2021-07-06T00:00:00","2021-07-07T00:00:00","2021-07-08T00:00:00","2021-07-09T00:00:00","2021-07-10T00:00:00","2021-07-11T00:00:00","2021-07-12T00:00:00","2021-07-13T00:00:00","2021-07-14T00:00:00","2021-07-15T00:00:00","2021-07-16T00:00:00","2021-07-17T00:00:00","2021-07-18T00:00:00","2021-07-19T00:00:00","2021-07-20T00:00:00","2021-07-21T00:00:00","2021-07-22T00:00:00","2021-07-23T00:00:00","2021-07-24T00:00:00","2021-07-25T00:00:00","2021-07-26T00:00:00","2021-07-27T00:00:00","2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-30T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-12T00:00:00","2021-08-13T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-17T00:00:00","2021-08-18T00:00:00","2021-08-19T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-22T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-25T00:00:00","2021-08-26T00:00:00","2021-08-27T00:00:00","2021-08-28T00:00:00","2021-08-29T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-06T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-10T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-13T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-18T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-24T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-05T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[29,44,48,71,111,154,165,187,195,200,224,241,255,290,309,318,330,341,368,391,399,408,417,419,456,476,493,519,546,522,517,531,529,525,523,532,531,530,546,554,572,572,557,568,613,683,751,807,843,914,920,968,994,992,1049,1084,1157,1179,1187,1235,1316,1327,1317,1307,1315,1332,1412,1447,1433,1446,1497,1491,1475,1423,1390,1374,1387,1347,1273,1272,1227,1236,1244,1246,1212,1161,1125,1143,1137,1091,1077,1113,1118,1128,1142,1094,1112,1146,1135,1112,1115,1160,1267,1261,1273,1230,1226,1255,1274,1319,1343,1386,1400,1405,1426,1485,1522,1505,1533,1608,1594,1603,1628,1633,1673,1627,1657,1654,1637,1647,1670,1641,1645,1624,1642,1641,1669,1683,1641,1636,1588,1522,1548,1514,1506,1554,1544,1506,1471,1490,1493,1458,1486,1455,1496,1448,1426,1441,1449,1402,1384,1430,1422,1399,1470,1478,1475,1522,1541,1570,1593,1599,1674,1709,1675,1678,1704,1670,1643,1653,1688,1652,1671,1648,1651,1710,1741,1775,1781,1731,1640,1604,1574,1519,1539,1536,1551,1560,1565,1596,1644,1650,1648,1661,1727,1731,1792,1891,1930,1950,2009,2024,2073,2143,2190,2214,2254,2309,2380,2444,2510,2601,2696,2697,2735,2761,2781,2823,2851,2823,2784,2768,2747,2717,3014,3083,3063,3098,3109,3122,3129,3104,3094,3135,3131,3148,3140,3146,3184,3202,3190,3180,3177,3208,3184,3170,3150,3146,3161,3175,3184,3188,3189,2882,2844,2801,2745,2740,2685,2671,2668,2635,2581,2532,2433,2350,2351,2324,2257,2195,2137,2076,1998,1951,1935,1848,1789,1752,1663,1577,1544,1519,1487,1444,1419,1383,1313,1291,1246,1292,1285,1227,1212,1189,1256,1191,1173,1245,1263,1267,1262,1246,1249,1230,1274,1322,1300,1333,1350,1350,1359,1342,1310,1274,1279,1287,1271,1295,1242,1221,1212,1203,1217,1173,1171,1305,1374,1356,1309,1328,1461,1513,1500,1538,1466,1480,1467,1571,1579,1557,1624,1616,1636,1637,1677,1707,1711,1691,1669,1662,1650,1674,1704,1709,1552,1401,1425,1451,1426,1352,1279,1299,1264,1294,1297,1306,1207,1171,1147,1081,1073,1051,1009,991,954,923,900,905,906,921,930,919,896,875,863,823,837,859,831,836,843,810,800,774,792,775,773,785,799,792,802,832,788,768,759,771,768,756,768,727,694,700,701,738,737,706,677,711,710,663,680,684,691,675,693,710,711,723,786,802,797,807,824,841,866,1295,1455,1464,1460,1460,1650,1808,1822,1858,1925,1981,1915,1906,1934,1994,2020,2027,1995,1997,2017,2067,2072,2034,2041,2032,2027,2025,2024,2023,1599,1430,1390,1402,1394,1197,1038,1034,983,927,870,866,875,832,763,720,733,739,715,699,663,658,686,701,733,763,774,771,744,786,792,809,832,857,916,966,962,1029,1021,1060,1059,1048,1075,1080,1099,1071,1076,1072,1099,1115,1167,1146,1141,1134,1162,1173,1195,1233,1171,1194,1227,1262,1305,1328,1428,1423,1359,1406,1466,1589,1628,1669,1682,1652,1642,1636,1658,1617,1603,1557,1528,1531,1535,1500,1529,1558,1550,1596,1586,1573,1534,1494,1453,1416,1579,1698,1670,1615,1512,1527,1519,1499,1500,1520,1554,1598,1584,1602,1595,1617,1587,1586,1630,1581,1537,1554,1518,1563,1564,1582,1630,1655,1548,1348,1265,1265,1263,1256,1436,1389,1405,1414,1429,1520,1564,1595,1616,1604,1633,1657,1666,1736,1766,1788,1845,1961,1976,2027,2089,2076,2108,2156,2187,2201,2213,2249,2243,2037,2023,1999,2032,2034,1947,1886,1885,1845,1864,1838,1791,1761,1654,1632,1613,1565,1493,1462,1429,1394,1396,1313,1271,1315,1304,1377,1323,1383,1409,1432,1470,1493,1480,1472,1479,1543,1557,1617,1619,1732,1774,1839,1910,1953,1939,1950,2013,1972,1923,1873,1884,1914,1886,1906,1811,1800,1804,1794,1853,1868,1817,1784,1753,1727,1645,1635,1598,1563,1499,1467,1370,1278,1207,1146,1130,1015,1050,1021,1035,1026,995,955,909,899,895,823,793,759,703,858,886,898,887,887,892,834,842,845,818,843,848,859,894,877,871,839,839,818,827,806,852,859,838,828,844,838,792,807,691,677,672,654,637,598,639,640,588,604,579,597,631,664,674,691,716,720,741,730,794,743,736,734,746,758,805,857,842,771,757,811,858,880,1042,1006,1008,1012,998,1005,1023,967,935,907,898,878,883,895,894,831,844,836,848,845,814,772,733,719,722,724,688,671,648,496,489,480,482,484,498,468,470,436,427,422,419,407,379,362,371,352,350,337,339,353,334,357,390,422,466,491,491,539,629,657,677,747,785,803,915,960,1039,1068,1102,1179,1274,1310,1395,1425,1484,1545,1578,1595,1713,1843,1827,1816,1833,1841,1892,1904,1954,1887,1871,1903,1858,1902,1872,1783,1811,1782,1792,1812,1801,1782,1780,1742,1724,1848,1918,1948,2020,1917,1806,1816,1893,2058,2073,2113,2136,2073,2085,2099,2168,2228,2171,2294,2319,2313,2293,2296,2295,2286,2269,2286,2280,2371,2265,2219,2202,2166,2159,2182,2227,2180,2117,2104,2067,2065,2084,2058,2073,2057,2127,2136,2057,2019,2020,2026,2070,2070,2060,2082,2071,2079,2043,2016,1981,1985,1955,1977,1983,1947,1939,1849,1815,1728,1710,1737,1772,1821,1774,1671,1733,1739,1765,1788,1815,1825,1811,1789,1772,1839,1871,1958,1975,1971,1953,1948,1939,1963,2017,2040,2065,2115,2098,2098,2042,2024,1943,1886,1864,1775,1761,1743,1690,1641,1625,1650,1684,1672,1589,1597,1476,1426,1394,1386,1406,1423,1453,1374,1380,1351,1287,1339,1371,1422,1416,1426,1487,1476,1510,1518,1573,1625,1725,1712,1673,1648,1729,1766,1714,1731,1792,1798,1837,1908,1887,1869,1988,1966,1930,2038,2026,2038,1991,2044,2039,1975,2049,2091,2221,2251,2221,2134,2112,2139,2203,2141,2157,2235,2238,2189,2252,2242,2173,2210,2224,2125,2114,2133,2063,2082,2074,2123,2104,2131,2218,2418,2545,2463,2409,2406,2431,2484,2517,2539,2613,2583,2525,2499,2534,2608,2696,2767,2771,2719,2808,2849,2933,2923,2929,2906,2878,2843,2824,2815,2764,2541,2500,2544,2606,2621,2568,2590,2484,2407,2439,2492,2509,2572,2462,2331,2312,2288,2319,2288,2372,2274,2281,2333,2387,2423,2478,2530,2469,2287,2344,2394,2414,2445,2553,2607,2521,2587,2580,2540,2529,2536,2419,2374,2761,2820,2947,3134,3202,3095,3107,3207,3242,3270,3299,3312,3267,3301,3442,3593,3551,3555,3494,3358,3299,3413,3408,3472,3606,3583,3573,3574,3649,3371,3336,3273,3155,3031,3006,3062,3052,3023,2982,2982,2954,2976,2972,2896,2760,2746,2696,2630,2612,2675,2605,2718,2771,2637,2695,2646,2675,2699,2654,2622,2620,2586,2612,2825,2800,2742,2746,2725,2617,2553,2557,2541,2485,2571,2578,2543,2557,2605,2613,2709,2585,2524,2522,2404,2507,2554,2522,2566,2609,2600,2545,2544,2399,2415,2426,2446,2449,2469,2522,2546,2615,2700,2652,2616,2582,2587,2645,2576,2516,2488,2427,2409,2500,2496,2497,2599,2558,2563,2492,2556,2614,2636,2724,2785,2647,2581,2635,2665,2745,2802,2781,2716,2698,2749,2815,2825,2833,2880,2933,2929,3018,3109,3195,3206,3124,3133,3019,3095,3045,2967,3006,2972,2891,2945,3029,3034,3053,3075,2984,2926,2909,3036,3109,3091,3133,3240,3140,3082,3140,3106,3045,3012,3058,3048,3061,3174,3192,3236,3304,3314,3218,3212,3292,3345,3384,3517,3420,3408,3375,3516,3497,3537,3537,3550,3496,3523,3538,3597,3523,3475,3444,3378,3340,3308,3236,3143,3088,3088,2965,2995,3067,3043,3111,3223,3219,3210,3222,3313,3344,3429,3382,3430,3316,3259,3299,3356,3416,3528,3541,3521,3606,3645,3710,3723,3853,3967,3896,3944,3953,3938,4005,3934,3798,3681,3678,3744,3749,3649,3554,3575,3575,3567,3654,3724,3783,3647,3628,3620,3566,3514,3559,3559,3645,3757,3899,4031,4099,4207,4264,4217,4252,4271,4252,4389,4455,4405,4421,4394,4370,4281,4292,4305,4308,4309,4336,4303,4289,4373,4456,4459,4564,4568,4405,4112,4077,4168,4360,4595,4914,4963,4943,4997,4921,4892,5443,5835,5993,6076,6370,6973,7525,7794,8151,8529,8989,10128,11021,11363,12413,14223,14459,14553,16864,17748,18496,19381,20080,21095,21771,22483,23386,24336,25075,26158,26965,29950,33087,35624,38336,41498,42265,45394,50055,54212,56020,57925,58400,58775,58212,58775,62327,63174,62681,62239,61632,61050,59779,59458,59790,59660,59790,59408,58287,57508,54883,53595,51943,49519,46870,46759,43670,39205,35923,38014,40834,40606,39668,38337,37825,34479,32651,33230,33567,33848,34646,36313,36638,37925,38044,37289,37363,37146,37175,36886,35205,34309,33913,32938,32201,31986,31800,31572,26957,21547,21850,22888,23932,24161,24600,23686,23088,22315,22411,22504,22489,22992,21920,21763,21574,21222,21827,22037,22407,23129,25381,27400,28362,29112,29975,30809,30798,31628,32530,32056,30965,31752,32601,32748,33717,35505,37096,39300,41087,41658,43140,46361,48821,50994,53315,54797,56083,56824,57964,60767,61285,62169,64461,67825,70056,70922,71388,72833,74080,75514,75746,76060,81408,83403,85046,87263,96892,100022,104527,105506,104387,104393,106082,107390,108800,110277,109448,107502,102200,100130,98754,96522,92598,90158,88331,86670,84221,82703,81219,84965,83414,77316,73981,76323,104826,105368,102489,96547,92930,89708,86678,82924,79810,77199,75425,75196,75310,76977,78503,79304,80217,82065,81131,81091,82598,83388,84575,84769,79334,80115,80364,81207,75608,43687,33282,30166,29476,32714,32723,34439,40547,40316,39392,37953,37865,38700,39146,56033,63053,61346,59034,59172,60085,61325,68396,79790,83307,86724,89138,92750,94885,96769,102456,101402,101565,103134,105809,111847,111611,105571,105474,105604,105922,105819,106566,106261,87557,79391,79476,79737,79991,82114,85554,87719,81557,85322,89640,93892,91107,89471,88813,84889,84874,84505,83117,77424,72783,74486,75960,76029,78539,81549,102190,122683,128808,212319,778997,1354504,1836855,2181692,2513445,2543437,2543493,2539646,2533653,2531543,2539725,2540296,2549326,2548351,2546844,2545272,2548495,2551236,2555099,2555054,2553352,2565661,2583516,2594293,2606838,2591389,2569899,2563184,2485887,1919686,1348366,869041,525995,192697,183111,173260,171475,179363,174309,160797,162945,153590,154190,154169,155229,152550,150431,147111,148440,147335,133658,117735,106418,91367,86833,88220,87895,81080,81914,78921,76128,75296,74934,49388,49524,49366,41580,44100,42334,40328,39727,39018,40080,41188,43672,45371,46527,44427,44973,45482,44807,43682,45354,45981,45338,45898,52274,55499,57477,58315,58149,58138,58604,59362,60725,60639,58767,59134,58021,58513,58706,58094,57467,59535,61597,60664,61179,62989,63025,63932,65679,68745,83488,99511,118545,134786,155671,153736,154026,153011,152432,151270,150706,152112,154015,159389,161428,161661,165713,169959,172968,178647,182990,179987,180152,183232,207347,273213,281843,283510,280728,267489,256179,240009,225091,208944,222434,251245,279838,416647,587836,602454,604193,607067,601863,602266,605003,608268,610019,615556,613348,607763,609345,622768,625152,609638,554001,555337,554910,554603,555554,554904,563126,574950,570867,558153,529480,503076,372383,207085,203176,205529,204892,204723,209742,219352,222214,217579,211425,207939,206019,213346,204403,207747,210389,208187,199419,199079,202052,212209,216605,212143,213667,211955,212331,221919,222301,221970,225330,231508,240512,237036,238182,242217,235287,230077,239325,240619,240317,240078,232859,234563,230262,220862,214472,213135,214056,212500,203134,196673,191502,173216,171669,175096,167797,179649,185279,184225,169620,155136,159173,165476,164441,165308,165623,155146,152124,162086,169076,171785,167142,165712,162153,162240,165770,166571,169590,169606,171936,172396,172764,175075,178046,183106,174944,168648,163435,163866,166016,165291,163595,159481,158589,155201,157304,164166,161396,159849,157892,161395,159353,160215,165019,165802,165926,166161,164258,160710,159788,159502,163919,163044,161351,162940,161128,159878,160318,159846,161277,155260,149436,144727,143873,146119,144998,141879,139339,138835,134748,135134,137382,134853,135226,136855,134535,134350,133990,142138,146557,145678,139938,141313,135850,133834,137011,137254,136895,132960,134221,135200,135354,135589,133751,128941,125236,122441,120950,120587,120009,120248,118873,115009,110830,109330,110033,111828,107299,107852,107540,111888,106064,108229,109585,107816,107471,109736,116195,118407,121733,126044,130476,131792,134159,137318,139171,141571,143987,146752,146275,148609,150388,151903,152123,154909,159487,160233,160735,159403,158032,159806,159923,162864,173814,175356,174376,169964,169613,171921,172833,174861,180777,187699,187835,188321,191293,193450,195800,208986,217058,217866,217285,220429,220582,221163,221001,218302,219138,218259,221304,224988,226590,218375,217754,217745,217349,219791,218827,221095,221365,220232,213263,211178,214577,211692,210784,208635,198757,191096,189452,191359,195542,199365,197359,196246,196953,195017,195949,195356,192735,196263,199939,204271,205355,213904,214883,215480,213848,218835,216571,217449,221840,228037,231437,233862,238261,238322,238390,242884,242795,237582,236348,242707,249885,247220,249006,253901,259184,261097,262418,257017,253533,251774,242551,242310,239827,238712,229722,226509,225853,222564,222523,223620,228670,224705,222036,220294,231173,240563,245992,246331,238225,262888,284994,324653,400616,436066,474354,509058,511987,539761,550693,561591,572718,576127,577894,579818,585082,589577,595559,590986,592309,588783,591284,600154,631592,628385,626211,633653,631644,632581,602096,585387,548803,472914,433258,396000,356139,370819,357615,363343,390593,397241,396273,392550,412673,427938,451541,485148,483181,481664,480559,480788,478650,458104,457303,455897,445290,445120,450481,460132,461073,468540,482205,485784,488002,495443,487939,485544,485028,454781,446277,447076,452454,461003,471890,456730,422826,423719,423063,427445,434927,435325,432329,432790,426310,422415,423017,423489,421587,418481,408353,389951,385391,379209,379689,380326,376673,366327,360598,350431,355780,361182,331889,302688,291466,285413,281210,278568,273576,263214,259247,258626,245753,244351,251393,249707,248371,239290,237492,234168,232474,230336,239163,230479,220353,213187,208021,205346,208256,203108,202209,203726,204603,201973,202105,207443,212365,217512,228859,228742,221650,222239,224903,218881,219504,218876,218756,220226,226274,232034,238347,239583,246153,262462,269950,268810,282593,304965,326600,336736,349525,373144,371834,376346,382687,377772,371137,383183,401791,425348,459701,467173,472117,469983,464427,462917,460515,459855,461743,458776,450345,445806,427550,416377,417933,409248,386340,362054,343217,327281,300729,303825,305612,302255,303509,301987,277120,253723,229058,195908,186381,180808,181223,180527,179404,178518,172204,164617,160110,157092,152194,152816,153315,154961,156896,153295,151504,149322,147981,149321,148403,144494,136375,133747,132393,131941,132529,133962,133653,133105,130402,127100,124746,124046,124148,123311,121323,119087,117012,114502,113114,112758,110044,102693,98840,96041,93517,92194,88092,86189,83586,85633,84885,82244,81079,79119,75610,72868,71004,69889,68987,70522,70362,70632,72437,72689,72309,72357,74614,76605,76471,77983,80456,79659,78918,82304,85021,86426,87172,87787,82638,79955,85859,88195,91452,93971,94545,95292,95629,101849,101285,102113,101265,99326,98237,98083,99103,98856,97083,96700,96077,92180,92967,96223,97093,96558,97769,95519,92119,92535,94565,91570,89451,90487,88284,86795,85350,87984,85150,87275,91273,91869,91096,91311,93898,97516,97331,100822,102780,100023,99738,101077,100060,98224,98020,96356,95586,95875,99044,99384,99105,101139,98403,97443,97947,99298,99518,99333,97477,92755,92894,93142,94635,93612,90048,88874,84449,80819,79699,79566,78560,78907,77716,75559,74171,74511,76664,76070,77146,77662,76545,74420,74684,78434,77799,76953,75078,74110,73408,71127,70762,70052,69988,69798,70828,70448,70920,74944,75949,79277,78767,78752,78669,78888,79409,78195,77045,76581,76092,74232,74860,75873,74702,76812,76911,77922,77735,77965,81318,84327,86852,87323,92023,92007,92293,96008,95138,96369,94211,93883,92874,93028,95078,97802,99391,99841,99126,97066,97478,98595,100256,100723,99593,99590,97919,98451,102765,102743,102842,101505,103635,97980,96783,100241,99497,100396,98829,99609,98915,99134,103153,103337,101719,101227,102918,101273,101728,102768,102861,102258,101067,101129,99540,100345,101610,100758,100773,101858,101975,97918,98056,99598,98629,97078,94949,96233,93981,94243,95545,94649,95694,97833,98911,96669,96888,98554,99328,100743,102087,101906,100768,101349,101875,101570,99664,98116,95513,93479,94027,97147,96777,95999,96097,95886,93992,93845,97142,99210,99207,100411,98341,96596,95876,100178,101782,102490,101017,99166,97458,97964,99139,100750,101818,102362,102511,101390,102037,105428,106872,107650,109621,109885,109126,109486,111565,110862,110242,108926,106533,106216,105906,110314,112135,113001,115166,118310,117254,118130,120116,121487,121104,120959,122006,120525,120566,124350,123600,122766,122892,121202,120397,120145,122140,125728,130197,130367,129293,128538,127466,126751,122055,116568,113052,110306,105650,105584,105021,103619,102255,101893,102444,99176,99130,100532,97549,98112,97269,96358,95536,94244,94351,92770,88487,83031,82144,83229,82149,84665,88725,92551,95833,99364,97823,98414,101563,104477,105674,106690,107471,104174,104015,107224,108549,109939,113834,113572,112368,110968,113359,118809,120146,123349,127770,126424,124288,126541,126432,125458,125637,125158,120475,119984,122384,122298,121620,122533,124687,122534,123089,128452,129825,131589,135163,135712,134642,135988,141561,142749,142252,151377,153232,147737,147205,153692,157966,164473,168078,171760,169196,169650,174855,178078,180803,183706,183826,179305,178824,184786,185781,186214,186655,184418,176726,175037,177651,176763,182695,183970,178431,173971,173082,179413,178196,177534,176070,177438,169950,171024,179812,180928,181938,183015,184015,180828,180656,185919,185759,185656,186087,186305,182721,184412,189632,192866,194227,191391,190194,186810,185425,191256,190645,191690,192670,192012,186082,186570,189309,186617,186516,189333,187905,182125,182382,183459,183717,187094,186879,186837,182222,182256,186872,189697,191978,193217,192781,188919,187219,192828,194699,198213,198984,198429,192460,191099,194044,190132,182973,175267,167050,163295,163675,169257,178053,188699,187637,188623,184975,185287,191625,193866,193485,187887,185428,180233,179750,186440,188221,188270,186412,187217,182380,183454,191975,200776,215729,230355,243374,247713,248537,261687,265683,265520,259605,262870,258386,257430,268330,270611,271169,283380,288589,285463,286289,293766,297355,301832,307721,312738,306300,307039,316248,319868,318253,314148,312506,303988,299479,309093,307526,311911,316018,318130,308587,308263,319640,323534,328966,334489],"yaxis":"y","type":"scattergl"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"timestamp"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"rolling_downloads"}},"legend":{"tracegroupgap":0}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('03999260-03da-4ef5-b625-21e08ee7c09d');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div id="92a68ee6" class="cell" data-execution_count="25">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb26" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb26-1">rolling_downloads_by_version(t, version_style<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"major"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="b21cae4a-8ceb-4d8c-a956-92a9e27206cc" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("b21cae4a-8ceb-4d8c-a956-92a9e27206cc")) {                    Plotly.newPlot(                        "b21cae4a-8ceb-4d8c-a956-92a9e27206cc",                        [{"hovertemplate":"version=10\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"10","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"10","showlegend":true,"x":["2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[139,170,177,188,196,204,214,356,412,481,494,558,613,646,778,803,866,928,962,1012,1043,1203,1277,1333,1363,1389,1436,1464,1620,1570,1601,1635,1689,1723,1732,1739,1629,1617,1600,1629,1613,1563,1683,1713,1745,1699,1639,1650,1648,1766,1645,1632,1627,1643,1665,1669,1804,1766,1743,1699,1692,1667,1653,1825,1856,1837,1917,1956,1961,1952,2098,2140,2031,2009,2202,2322,2301,2405,2548,2742,2803,2839,2935,2956,3077,2952,2856,2849,2853,2872,2885,2893,2756,2726,2729,2610,2566,2538,2506,2412,2378,2383,2414,2221,2151,2155,2039,1799,1571,1495,1558,1489,1606,1463,1432,1422,1418],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=9\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"9","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"9","showlegend":true,"x":["2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[108,119,130,136,157,264,323,335,354,414,464,499,512,514,730,784,889,913,953,1012,1057,1201,1250,1277,1337,1373,1425,1477,1649,1568,1572,1584,1627,1664,1610,1705,1729,1790,1772,1747,1732,1798,1979,1817,1817,1735,1745,1823,1824,1952,1908,1953,2053,2073,2068,2044,2025,1924,1938,2018,2031,1997,1946,2034,1960,1963,1998,2041,2060,2070,2192,2087,2060,2109,2160,2196,2172,2278,2253,2531,3060,3762,4247,4591,4795,5362,6109,6659,7299,7641,7860,8091,9164,9921,10948,12735,14294,14527,14986,15719,17292,19624,22137,23466,23719,23943,24539,26060,27356,28964,29719,29626,29656,31137,32122,33434,34820,35677,35942,36204,38278,39672,40581,41191,40702,39486,39563,40294,39772,38275,35981,34373,33476,33727,35291,36864,38036,38842,38919,37810,37914,39396,40459,40609,40098,39693,38623,38537,40445,40552,39960,40282,40669,39996,40918,43484,45350,47527,49731,52095,53174,54534,57416,59223,59824,59137,58970,57762,57989,59753,60474,60862,65454,67859,67398,68143,70245,71421,73723,78811,82811,82149,83406,87081,90379,92910,96229,99753,98716,97879,101673,104496,107981,111616,114422,113402,113747,118914,123730,127838,130560],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=8\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"8","line":{"color":"#00cc96","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"8","showlegend":true,"x":["2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[187,205,210,218,226,240,246,371,400,417,432,441,451,472,619,661,668,671,697,708,729,882,910,928,956,984,1016,1033,1179,1057,1072,1086,1085,1083,1080,1201,1127,1137,1136,1144,1158,1176,1267,1140,1121,1155,1160,1179,1183,1289,1212,1209,1242,1279,1257,1246,1331,1217,1185,1252,1290,1304,1321,1431,1325,1284,1338,1359,1384,1398,1503,1421,1413,1462,1472,1513,1473,1625,1551,1484,1473,1467,1422,1439,1558,1496,1517,1523,1455,1415,1448,1553,1458,1512,1542,1520,1529,1581,1687,1587,1566,1568,1535,1507,1503,1647,1533,1530,1552,1560,1542,1564,1732,1646,1613,1570,1564,1553,1572,1674,1897,2695,3309,4053,4570,5023,5210,5695,7055,7958,9372,10129,10846,11168,11635,12728,14153,15344,16871,17184,17566,18824,20555,22010,24007,25829,26258,26627,28475,30460,32021,34337,38162,39207,40314,42327,43239,43904,46606,49333,49919,49673,53232,58083,63467,68172,72748,72503,72877,77336,81331,84665,87466,88953,87799,87826,91161,94180,94538,95236,94383,90295,89127,89710,89678,90915,91497,90340,86979,86074,88398,87314,85224,81820,78661,73658,73147,75637,74390,71708,69931,68225,65528,65485,67516,66126,63641,63392,62508,60944,60845,62258,62703,63021,62845,62670,61104,60953,62855,62738,62348,61228,60335,58011,57820,58735,57319,55442,54276,52893,50914,50630,50749,49919,49974,49448,48767,47170,47072,48659,49206,49352,49639,49665,47961,47563,49130,49520,49653,50020,49632,48024,47928,49061,48061,46491,44895,44171,42951,42836,44283,45911,47718,48049,48334,47084,47131,49129,49507,49674,48568,47021,44938,44755,46890,47284,47196,46788,46455,45307,45172,46775,47932,50584,53328,55148,55063,54900,56923,57561,58102,57543,57132,55428,55403,57396,57714,57898,58725,59395,58563,58412,59561,59534,58821,58241,57830,55684,55298,56801,56746,55931,54201,53039,51396,50991,52082,51704,51320,50665,50140,48492,48373,49914,50011,49809,49933],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=7\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"7","line":{"color":"#ab63fa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"7","showlegend":true,"x":["2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[145,157,175,191,197,204,206,355,379,383,393,403,415,421,559,579,596,606,613,671,683,854,884,899,913,929,958,965,1096,1343,1719,2208,2775,3193,3521,3819,4006,4581,5074,5517,6039,6229,6533,6989,7580,8343,8815,9421,9668,9857,10555,11195,12022,12766,13475,13962,14160,15078,15360,16339,16504,16585,16447,16483,17019,17644,18101,18348,18472,18297,18355,18624,19072,19296,19514,20128,19956,19984,20472,20261,20472,20230,20151,19766,19627,20296,20361,21087,20654,20854,20656,20638,21319,21468,21491,21522,21836,21683,21658,22572,23170,23987,24225,24510,23827,23809,25271,26669,27661,28044,28563,28317,28374,28418,28155,27986,27715,27672,27175,27142,27375,27713,28152,28565,29060,28420,28544,29974,30343,30745,30631,31609,31066,31152,31726,31265,30798,31469,32149,32173,32406,34136,36730,39477,41882,43377,43592,43766,45965,48650,50204,51704,53190,52185,52265,54531,55268,56098,56362,56799,55395,55011,56087,56726,56976,57113,55907,54507,53814,53918,53214,51576,49237,46962,44705,43985,44776,43608,41464,39832,37969,35492,35254,35614,33801,32113,30765,29557,27682,27277,27584,26652,25838,25060,23923,23236,23063,23366,23238,22657,21991,21624,20944,20758,21041,20371,19775,19893,19149,18447,18250,18731,18584,18267,18133,17812,17588,17600,17934,17813,17772,17517,17184,16986,16832,17145,17023,17018,16656,16516,16246,16107,16549,16588,16752,16682,16245,16056,16055,16526,16375,16374,16447,16285,15872,15750,15947,15962,16171,16147,16199,16262,16177,16335,16158,16146,16104,16150,15977,15873,16157,16070,15887,15843,15727,15533,15555,15537,15327,15242,15035,14884,14745,14812,15147,15241,15252,14974,14992,14857,14762,15022,15258,15425,15450,15553,15600,15633,15762,15505,15050,14562,14151,14077,13950,14325,14838,16186,16325,16466,16341,16552,16941,17325,17476,17600,17758,17630,17662,18188,18375,18505,18596,18581,18527,18484,18789,19676,20972,21900,22579,23318,23286,24309,24321,24327,23390,23529,23395,23447,23642,23642,23400,24713,25218,25137,25323,25529,25296,25299,25135,24918,24713,24567,24974,25015,24508,23523,23512,23238,22655,23005,22499,23281,23677,23491,23238,23205,23372,23807,23905,24020],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=6\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"6","line":{"color":"#FFA15A","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"6","showlegend":true,"x":["2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[390,1120,1783,2105,2417,2756,3300,4317,5135,5875,6266,6560,7224,7900,8710,9705,10912,11925,12279,12817,13695,14513,15397,16010,16279,16638,17397,18445,19576,20768,21657,21464,21767,22635,23811,24744,24896,25662,25325,25566,26928,27689,28799,29669,30859,30277,29741,31405,32456,32773,32738,33250,33208,33379,34266,34659,35047,35670,35672,34699,34799,34825,35104,35230,35508,36130,35152,35313,35590,35202,35250,34591,34053,32285,32224,33043,32334,32104,32294,32482,31615,31590,32286,32653,32578,32325,31410,30273,30026,30344,31088,30649,29824,28724,27330,27071,27032,26905,26418,25952,25829,24994,24762,24785,24256,23619,22844,22291,21663,21264,21332,21139,20343,21211,20932,20431,20387,21856,22414,21708,21334,21261,20956,20786,21049,21904,22553,23010,22940,22256,22222,23082,24113,24530,25151,25383,24923,24825,25623,26229,26126,25912,25203,24572,24430,25730,26482,26477,27261,27666,27091,26987,27621,28232,27775,27570,27635,27085,26991,27958,28765,28837,29005,28718,28041,27868,28436,29475,29470,29386,29027,27900,27752,27738,26212,23861,22632,21303,20342,20351,20368,19986,19506,19267,18763,17735,17525,17876,17335,16189,15162,14113,13211,13139,13140,12806,11366,10717,10665,10536,10523,10928,11612,12007,12401,12702,12730,12743,13111,13536,13567,13419,13294,12705,12561,13034,13050,12903,13031,13111,12972,13014,13261,13777,13881,14222,14099,13719,13771,14108,14193,14022,14224,14049,13664,13620,13883,13656,13204,13086,13504,13171,13208,15381,16473,17642,19345,20363,20015,20197,22541,23622,25606,26777,26232,25884,25722,25741,25539,25117,24699,24098,23719,23688,23757,23608,23612,23591,23342,22412,22284,22381,20686,20897,20712,20171,18647,18376,19449,19266,20277,21286,22728,22915,22985,24857,26656,28549,30741,32423,32358,32351,34662,37415,39569,42476,44230,44273,44296,46709,49596,51798,51674,52724,51383,51306,53699,56034,56017,56573,55468,52418,52196,54302,54546,55121,55407,55986,54333,54499,56439,56664,56015,55857,54690,52897,53017,53154,52815,51719,50483,50609,48281,48106,50162,49833,48711,48483,47054,45036,45202,46289,46110,46473,46182,46384,43740,43633,44459,43022,40603,38460,36797,35651,35802,37770,40951,43228,43920,44335,42574,42491,44569,45321,46214,44086,43845,42519,42087,43647,44745,45274,45240,46144,43816,43587,46319,48824,53227,56935,59839,60068,59311,63004,63701,63581,63091,63176,61929,61835,65955,67106,67286,67328,68791,67209,67197,70760,73102,74024,75137,75639,72663,72643,74979,75749,74823,73432,72314,69560,68947,71727,70540,70532,70866,69695,67180,66652,70113,69968,70858,70636],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=5\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"5","line":{"color":"#19d3f3","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"5","showlegend":true,"x":["2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[94,438,665,838,979,1288,1567,1835,2045,2192,2337,2471,2754,3325,3953,4687,4974,5193,5813,6988,8141,8480,8705,8947,9066,9694,10389,10858,11351,12291,12344,12324,12817,13815,14348,14927,15608,15682,15819,16257,17028,17141,16919,17023,16759,16692,16786,16905,16622,16518,16986,17133,17136,17612,17667,18049,18814,19320,18739,18554,19173,19685,19713,19983,20233,19728,19729,20335,20697,20609,21464,21739,21435,21212,21595,22164,22293,22410,22300,21929,21831,22334,22696,22847,22808,22380,21863,21712,22023,22105,21781,21223,20579,19964,19884,20136,19797,19712,19586,19251,19182,19079,19657,19938,20202,20763,20919,20761,20731,21069,21152,21216,21179,20953,20593,20443,20861,20957,21299,22239,22786,23191,23143,23255,23611,23991,24235,24745,25061,25609,25939,26116,26284,26192,25980,25456,25079,25387,25321,25290,24955,24798,24386,24171,24351,24446,24835,24517,23475,22766,22120,22438,22777,22484,22362,22070,21223,20246,19741,19789,19574,19222,18853,18174,17942,18023,18029,18228,18044,17981,17700,17546,17885,18006,17858,17572,17443,17251,17181,17585,17707,17676,17897,17706,17557,17461,17468,17514,17607,17392,17333,17179,16954,16888,16805,16798,17013,17213,17112,17045,17246,17326,17317,17345,17469,17086,16814,16757,16702,16487,16361,16149,16054,15692,15902,16104,16087,16109,16337,16038,15808,15967,16026,16342,16404,16257,15866,15597,15721,16121,16078,16173,16057,15733,15508,15714,16093,16304,16235,16180,16011,15741,16007,16105,16193,16111,16069,15753,15834,16069,16244,16499,16541,16394,16201,16094,16405,16603,16511,16725,17058,17350,17220,17587,17850,17931,17872,17884,17846,17639,17786,17882,17763,17879,17895,17489,17189,17075,17118,16964,16711,16398,16116,15645,15713,15468,15236,14902,14407,13659,12958,12849,12538,12177,11836,11454,11173,10866,11059,11040,10786,10867,10674,10379,10176,10314,10461,10250,10058,9895,9711,9548,9549,9547,9540,9477,9315,9238,9108,9099,9088,9058,8909,8748,8663,8506,8444,8432,8360,8270,8005,7728,7601,7622,7488,7256,7121,7120,7167,7106,7103,7235,7187,7292,7391,7550,7477,7526,7655,7764,7805,7845,7779,7654,7617,7690,7567,7526,7765,7807,7747,7811,8063,8348,8423,8480,8439,8260,8099,8367,8561,8491,8318,8074,7708,7601,7684,7584,7440,7396,7205,7103,7048,7012,6980,7136,7188,7043,6874,6780,6979,6745,6500,6512,6614,6471,6478,6790,6655,6445,6461,6428,6356,6442,6546,6346,6381,6509,6616,6660,6602,6685,6930,6872,6699,6622,6284,6267,6479,6350,6423,6426,6242,5951,5892,5915,5757,5730,5682,5605,5423,5456,5571,5792,5916,5942,5791,5504,5417,5432,5474,5319,5304,5392,5226,5213,5411,5297,5255,5231,5263,5278,5259,5549,5644,5734,5670,5657,5517,5544,5505,5304,4928,4705,4494,4355,4348,4462,4577,5625,5794,5898,5584,5578,5664,5567,5690,5605,5487,5273,5214,5374,5361,5346,5327,5303,5154,5490,6200,7438,8941,9989,10615,11623,12032,13477,13996,14093,13330,13601,13510,13515,13807,13892,13958,14872,15038,15049,15148,15328,15537,15564,15875,15971,15848,16006,16121,15732,14759,13660,13453,12918,11989,12158,11223,11149,11192,11099,10536,10472,10850,11111,11244,11279],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=4\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"4","line":{"color":"#FF6692","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"4","showlegend":true,"x":["2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[107,334,955,1253,1502,1644,1712,1887,2085,2339,2437,2636,2770,2902,3091,3238,3773,3959,4125,4322,4483,4662,4894,5193,5380,5631,5803,5922,6096,6215,6527,6082,5943,5754,5692,5887,5924,5973,6177,6271,6139,6056,6083,6108,6202,5891,5915,5923,5870,5983,6164,6361,6494,6501,6331,6229,6319,6330,6409,6047,6187,6292,6442,6802,7076,7376,7314,7087,7255,7427,7556,7599,7722,7787,7781,7923,8005,8201,8104,7927,7673,7492,7465,7495,7590,7573,7620,7453,7478,7315,7189,7105,6808,6465,6094,6075,5996,5777,6166,6363,7059,6893,6733,6811,6738,6638,6697,6726,6676,6655,6563,6533,6548,6533,6502,6415,6402,6352,6313,6296,6306,6337,6291,6291,6255,6225,6536,6130,6411,5692,5738,5869,5760,5663,5693,5549,5487,5512,5618,5558,5537,5538,5663,5709,5818,6053,6043,6189,6297,6484,6503,6525,6666,6684,6739,6522,6574,6103,6196,6297,6199,6158,6190,6281,6152,6258,6477,6448,6850,7047,7240,7109,7327,7560,7392,7390,7284,7476,7405,7509,7632,7518,7488,7422,7473,7305,7392,7271,7073,7051,7064,6971,6821,6979,6883,6609,6515,6143,5972,5790,5880,5563,5200,5142,5174,5332,5084,5023,4841,4672,4642,4670,4714,4576,4614,4443,4395,4423,4387,4351,4385,4420,4242,4194,4287,4286,4301,4302,4342,4261,4281,4290,4315,4329,4153,4123,4042,4041,4027,4043,4067,4052,4050,4046,4053,4099,4076,4105,4119,4174,4122,4120,4145,4074,4116,4110,4145,4106,4067,4102,4097,4092,4026,4059,4025,4014,4038,4056,4089,4132,4179,4183,4171,4184,4161,4170,4135,4130,4024,3988,3926,3813,3721,3572,3493,3349,3240,3154,3005,2907,2841,2775,2637,2553,2489,2364,2262,2094,1935,1778,1662,1562,1470,1401,1289,1226,1104,1032,1016,1004,1039,1040,1055,1042,1021,1007,1010,1039,1024,999,975,988,986,978,1009,993,1040,1002,974,946,939,917,885,902,864,856,844,807,796,755,776,763,721,722,727,715,682,715,686,661,619,599,586,601,601,543,534,562,568,560,597,590,566,578,584,575,568,578,573,525,501,514,512,505,517,516,481,464,472,482,485,498,449,454,507,520,498,510,521,489,479,601,612,667,691,733,736,749,747,747,752,799,833,830,877,886,887,919,911,946,957,974,987,983,993,1026,1063,1094,1101,1132,1058,1138,1166,1204,1200,1192,1216,1256,1302,1288,1281,1284,1295,1279,1267,1324,1292,1341,1321,1292,1285,1290,1335,1346,1353,1320,1288,1332,1316,1298,1248,1222,1173,1137,1158,1136,1142,1127,1163,1135,1096,1081,1066,1095,1046,1106,1070,1081,1115,1108,1105,1080,1103,1087,1072,1091,1077,1090,1079,1068,1027,1021,1045,1028,1044,1008,1024,1005,985,988,998,1012,1002,1001,952,947,922,917,975,968,963,922,914,927,943,939,927,956,931,931,942,928,972,985,1025,1005,998,1013,1019,1053,1063,1106,1089,1079,1083,1081,1047,978,962,922,909,913,948,1734,1730,1745,1688,1716,1731,1728,1751,1712,1667,1629,1656,1709,1731,1755,1710,1673,1612,1650,1994,2805,3270,3301,3706,3701,4089,4103,4113,4133,3451,3445,3410,3426,3390,3367,4198,4205,4183,4179,4210,4220,4197,4187,4162,4140,4286,4327,4306,4023,3363,2903,2897,2758,2873,2696,2831,2849,2798,2654,2672,2852,2921,2958],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=3\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"3","line":{"color":"#B6E880","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"3","showlegend":true,"x":["2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[182,382,481,855,1140,1261,1330,1462,1512,1591,1646,1761,1838,1908,1982,2074,2321,2635,2919,3056,3120,3237,3423,3502,3610,3762,3931,3967,4075,3942,3856,3859,3622,3371,3297,3276,3251,3320,3313,3345,3263,3236,3309,3384,3489,3548,3570,3427,3453,3564,3924,4147,4411,4667,4814,4750,5343,5818,6042,6205,6506,6642,6773,7242,7615,7881,8186,8389,8402,8573,8820,9193,9532,9705,9930,9836,10065,10447,10610,10609,10467,10446,10289,10125,10331,10065,9892,9994,10088,9867,9839,9967,9953,10047,9945,9993,9898,9992,10604,10895,11146,11197,11394,11100,11080,11493,11807,12037,11896,12248,12187,12229,12864,13291,13520,13517,13489,13270,13346,13709,13933,14074,13860,13788,13449,13429,13462,12779,12390,11767,11336,10823,10681,10584,9959,9295,8875,8664,8087,7935,7824,7220,6681,6381,6338,6183,6130,6087,5684,5384,4928,5002,4893,4915,4956,4912,5002,5004,5096,5062,5141,5306,5435,5462,5452,5509,5470,5530,5577,5607,5920,6907,6784,6554,6472,6593,6721,6865,6884,6856,6551,6540,6628,6667,6716,6675,6628,6557,6634,6787,6737,6878,6897,6855,6745,6874,7005,7133,7245,6955,5993,5924,6003,6164,6259,6197,6125,6161,6106,6206,6331,6313,6345,6247,6220,6121,6127,6192,6159,6145,5902,5875,5765,5830,5857,5946,5850,5777,5809,5704,5767,5763,5660,5511,5521,5402,5238,5358,5394,5373,5334,5241,5265,5158,5247,5174,5089,4929,4879,4831,4725,4784,4808,4791,4854,4986,4998,4893,4920,4956,4945,5511,5661,5565,5520,5518,5415,5374,5435,5403,5379,5315,5339,5443,5506,5669,5752,5766,5785,5767,5770,5757,5672,5410,5260,5138,5070,5133,5159,5279,4709,4562,4434,4359,4405,4482,4536,4594,4667,4538,4477,4547,4412,4465,4273,4245,4172,4094,4195,4251,4285,4374,4375,4285,4288,4325,4429,4584,4547,4683,4617,4651,4796,4929,5036,5005,4882,4837,4924,5106,5122,5239,5287,5381,5427,5496,5776,5838,5907,5843,5802,5790,5778,5894,6062,5996,5889,5789,5577,5551,5679,5719,5681,5505,5528,5444,5341,5606,5617,5859,5763,5634,5620,5556,5559,5474,5387,5273,5268,5194,5155,5180,5083,4931,4803,4618,4522,4490,4543,4403,4285,4129,4094,3954,3942,4041,3805,3897,3636,3673,3689,3600,3583,3596,3565,3604,3630,3607,3557,3584,3645,3674,3693,3741,3796,3788,3921,3966,4031,4056,4137,4148,4179,4300,4261,4237,4040,4046,4003,3931,3937,3989,4002,3929,3898,3911,3897,4052,4110,4139,4116,4162,4155,4095,4117,4005,3972,3927,3967,3892,3869,3877,3782,3803,3785,3793,3722,3693,3698,3699,3619,3502,3483,3411,3322,3348,3239,3162,3085,3059,2950,2854,2907,2940,2965,2932,2889,2783,2777,2769,2767,2787,2734,2788,2718,2707,2776,2833,2823,2830,2851,2804,2808,2850,2871,2867,2874,2888,2861,2870,2910,2910,2913,2942,2933,2941,2937,2919,2962,2967,2936,2913,2818,2830,2870,2780,2729,2726,2728,2705,2693,2714,2707,2654,2634,2639,2597,2596,2634,2617,2550,2496,2463,2417,2396,2449,2516,2600,2646,2700,2694,2730,2740,2752,2778,2783,2786,2749,2735,2775,2772,2824,2914,2973,2959,2936,2983,3005,3038,3061,3025,2954,2922,2977,2991,2957,2852,2884,2813,2808,2861,2920,2895,2880,2871,2842,2852,2905,2952,3034,3103,3044,2999,2975,3065,3084,3131,3086,3110,3136,3165,3279,3249,3318,3454,3448,3323,3305,3348,3311,3281,3297,3304,3308,3327,3406,3449,3455,3418,3329,3267,3235,3264,3200,3170,3091,3115,3093,3084,3099,3030,3014,2913,2761,2735,2731,2736,2748,2760,2816,2819,2803,2863,2928,2846,2814,2815,2764,2703,2699,2706,2704,2828,2796,3117,3413,3651,4260,5125,5807,6677,7378,7925,8639,9362,9501,9464,9449,9379,9346,9338,9264,9212,9251,9286,9296,9268,9272,9294,9288,9288,9175,9175,8815,8481,8246,7673,6920,6369,5599,4910,4399,3763,3141,3080,3153,3227,3266,3321,3433,3507,3535,3566,3541,3527,3675,3746,3860,4057,4132,4165,4206,4256,4342,4675,4794,4796,4725,4673,4675,4691,4686,4648,4655,4665,4606,4576,4620,4691,4737,4751,4745,4732,4706,4653,4672,4677,4587,4603,4617,4601,4696,4709,4534,4531,4472,4468,4483,4499,4503,4587,4627,4608,4541,4531,4574,4568,4479,4550,4698,4682,4681,4756,4868,4951,5001,5024,5011,4974,5055,5052,5104,5079,5016,5021,4999,5039,5075,5140,5076,5076,5042,5038,5075,5103,5090,5038,4948,4779,4773,4872,4905,4852,4955,4954,4858,4815,4850,4861,4926,4863,4811,4770,4744,4760,4635,4496,4297,4189,4139,4147,4182,4196,5077,5046,5052,4976,4960,4968,4889,4773,4718,4520,4383,4395,4407,4433,4431,4354,4362,4314,4327,4368,4764,5795,6371,6526,7063,7053,7544,7571,7586,6745,6947,6993,7024,7093,7157,7175,8396,8408,8379,8369,8432,8475,8483,8465,8425,8372,8346,8568,8617,8238,7348,7095,7051,6581,6985,6681,6986,7139,7092,6920,6899,7008,7224,7282,7346],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=2\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"2","line":{"color":"#FF97FF","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"2","showlegend":true,"x":["2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-20T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[162,399,552,631,702,834,936,1101,1309,1444,1520,1599,1794,2000,2194,2392,2560,2629,2722,2970,3182,3434,3754,3971,4088,4171,4395,4580,4788,4867,4827,4775,4775,4932,5241,5412,5430,5324,5276,5254,5383,5490,5671,5726,5841,5808,5815,6068,6216,6301,6196,5983,5813,5784,5905,5885,5911,5970,6156,6070,6097,6375,6405,6246,6128,6137,6093,6082,6402,6788,6958,6959,6967,6800,6739,6876,6808,6696,6750,6696,6645,6699,6957,7733,8146,8065,7886,7525,7551,7590,7671,7894,7954,8016,7956,7997,8354,8404,8421,8654,8890,9006,9182,9436,9706,9981,10212,10769,11255,11459,11869,11916,11366,11193,11619,11744,11776,12099,12317,12470,12433,12498,12555,12643,13026,12945,13277,13097,12773,12332,12154,12370,12788,20472,20715,20769,20029,19551,19874,19975,20251,24695,26614,26280,26245,26671,27368,29351,38897,46168,46060,45978,46139,46259,46328,46328,46362,46203,46176,46473,46452,46118,38411,37928,37512,37552,39981,41275,45754,48524,45924,43677,43607,46846,48825,50365,50972,42908,37519,38401,39495,43501,45397,47607,48962,50639,52504,54840,57521,59418,61900,63504,65503,67580,70275,70487,71639,70744,77093,77560,79848,83331,90898,92145,92813,94412,95254,96946,102320,104548,101840,101374,104336,104506,103798,104607,105100,104265,106258,111495,110908,110055,109723,109010,111362,111300,110859,102788,101527,100862,99357,97631,98722,105416,102490,101577,99798,105230,111428,118428,124211,120070,152151,172494,213006,286442,328679,365495,401445,404911,434129,443094,447314,448656,449693,450569,453234,458375,462119,466573,463708,465318,461003,464823,470836,499278,500762,496644,501327,497022,499256,469339,452815,414964,343268,304562,268405,229070,242412,229084,227962,257307,270712,270894,267939,284272,296433,317230,350742,347713,346018,345266,345384,344238,325056,317180,319837,310648,311721,313954,320161,320311,322100,330015,330854,333682,335502,325213,315201,313256,284443,270969,273383,278855,282619,288797,269989,238178,241692,243955,245931,250912,249592,240985,244650,238925,238249,238149,239371,235022,234535,231873,223596,220875,217278,220421,217648,219214,216877,213838,211279,213076,211912,191816,170558,166532,160569,156114,152135,148498,141268,139408,146432,139508,139386,144380,142999,141583,138756,137072,134971,133181,132251,135422,129615,127572,123271,121384,119959,122467,119218,117241,116795,117347,116889,117294,119519,123164,129816,138601,138260,131097,131323,133151,128274,128853,130274,130680,132682,138727,144150,150213,154082,158783,175570,183885,182456,195135,218004,232525,246267,260578,285693,284312,287297,296456,293688,288706,303373,324974,349002,382387,388512,392555,391418,387104,385785,383122,382192,383066,377439,371478,370125,352210,340974,341143,331587,306631,290300,275815,260051,233118,236610,236854,227254,227380,225869,201124,178146,154173,121239,113925,110143,110959,110822,110443,110064,104634,98408,97662,95269,90667,91199,92016,95665,99389,98398,97942,97178,97215,97970,95406,91774,90089,88852,87690,88054,88610,88888,88968,88538,85122,82035,79629,77962,76475,74809,72757,70481,67760,65383,63337,61346,55888,46951,44302,41629,39308,37260,34456,32406,30636,28566,26000,23934,22074,20040,17512,15017,13006,12798,12787,12874,12847,12610,12574,12534,12320,12298,12578,12554,12557,13171,13974,13877,13893,14405,15608,15735,15933,16113,16036,16068,17233,17766,18281,18751,19042,18928,19042,19865,20513,21104,21828,22104,21952,21938,22728,23239,23778,24170,23866,23042,22839,23274,23347,22638,23036,22953,22547,22412,22838,22130,22084,23351,23229,22653,22394,22813,22439,22325,22021,21674,21170,21062,21532,21416,21214,20872,21307,21035,20907,21704,22284,22830,23345,23879,23561,23406,24610,24942,24877,24599,22818,22270,22183,22459,22181,22187,22198,22182,21621,21519,22142,22746,22448,22378,22280,21179,20860,20960,20383,19773,19018,18055,16834,16740,17103,16337,15911,15721,15376,15101,15010,15331,15361,15439,15516,15143,14644,14604,14706,14524,13911,14299,14180,13872,13880,14320,14659,14993,15243,15224,14979,15004,15290,15107,15127,15303,16149,15969,15995,16415,16679,16736,16825,16484,16203,16186,16546,16739,16528,16364,15881,15496,15435,15517,15347,15237,14897,14434,14177,14155,14314,14710,14936,14669,14525,13445,13481,13682,13465,13142,12992,12793,12594,12564,12745,12631,12560,12499,14338,14047,14042,14261,14813,14750,14637,14516,14361,14322,14472,14468,13989,13775,15756,15347,15363,15342,15244,15161,15026,14929,14669,14658,14869,14808,14779,14705,14524,12348,12361,12454,12483,12045,12206,12181,12081,12188,12350,12316,12459,12428,12473,10282,10355,10591,10916,10997,11129,11226,11157,11242,11406,11288,11271,11327,11331,11314,11416,11809,11854,11828,12013,11896,11704,11695,11826,11839,11917,11702,11637,11458,11552,11725,11591,11596,11541,11318,11124,11170,11326,11333,11362,11384,11577,11700,11774,11934,12012,12094,13087,12934,12725,12782,13279,13320,13351,13340,13353,13311,13377,13579,13514,13610,13506,13498,13521,13626,13715,13630,13616,13709,13788,13368,13203,13456,13499,13226,13124,12012,11786,11863,11982,11594,11375,11274,11077,10965,11005,10960,10660,10512,10312,10075,9949,9889,9793,9661,9601,9515,9387,9315,9371,9476,9235,9058,8964,8839,8702,8747,8679,8559,8493,8527,8430,8400,8463,8519,8707,9003,9223,9439,9410,9385,9636,9764,9984,10126,10207,10111,9988,10104,9971,10021,10069,10041,10103,10179,10466,10764,10962,11167,11236,11391,11431,11814,11825,11750,11765,11793,11577,11737,12295,12347,12799,13190,13455,13676,13943,14648,14935,15510,16050,16175,16409,16460,17069,17099,17287,17651,17824,17742,17781,18271,18410,18813,19133,19306,19392,19621,20059,20013,20234,20165,19949,19870,19718,20016,19797,19712,19746,19448,19308,19177,19638,19332,19557,19572,19513,19326,19418,19743,19780,19656,19644,19588,19281,19107,19283,19081,18926,18776,18618,18372,18221,18369,18084,17829,17899,17523,17303,17455,17723,17479,17572,17367,17150,16851,16797,17155,17053,16847,16845,16709,16515,16572,16952,16931,16913,17077,17095,16890,17014,17148,17177,17277,17511,17397,17281,17385,17735,17657,17723,17700,17669,17552,17515,17855,17821,18037,18203,18321,18140,18201,18272,17682,17096,16522,16132,15939,16026,16184,16407,17036,17078,16927,16734,16762,16945,16786,16801,16812,16682,16549,16615,16904,16868,16763,16547,16407,16062,16090,16421,16634,17313,17833,18520,18689,18644,19367,19479,19513,19123,19126,19015,19023,19229,19301,19343,20455,20449,20329,20314,20519,20514,20409,20711,20572,20408,20402,21168,21088,21191,21093,21328,21005,20912,21557,21089,21178,21365,21193,20959,20976,21431,21757,21976,22268],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=1\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"1","line":{"color":"#FECB52","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"1","showlegend":true,"x":["2019-03-26T00:00:00","2019-03-27T00:00:00","2019-03-28T00:00:00","2019-03-29T00:00:00","2019-03-30T00:00:00","2019-03-31T00:00:00","2019-04-01T00:00:00","2019-04-02T00:00:00","2019-04-03T00:00:00","2019-04-04T00:00:00","2019-04-05T00:00:00","2019-04-06T00:00:00","2019-04-07T00:00:00","2019-04-08T00:00:00","2019-04-09T00:00:00","2019-04-10T00:00:00","2019-04-11T00:00:00","2019-04-12T00:00:00","2019-04-13T00:00:00","2019-04-14T00:00:00","2019-04-15T00:00:00","2019-04-16T00:00:00","2019-04-17T00:00:00","2019-04-18T00:00:00","2019-04-19T00:00:00","2019-04-20T00:00:00","2019-04-21T00:00:00","2019-04-22T00:00:00","2019-04-23T00:00:00","2019-04-24T00:00:00","2019-04-29T00:00:00","2019-04-30T00:00:00","2019-05-01T00:00:00","2019-05-02T00:00:00","2019-05-03T00:00:00","2019-05-04T00:00:00","2019-05-05T00:00:00","2019-05-06T00:00:00","2019-05-07T00:00:00","2019-05-08T00:00:00","2019-05-09T00:00:00","2019-05-10T00:00:00","2019-05-11T00:00:00","2019-05-12T00:00:00","2019-05-13T00:00:00","2019-05-14T00:00:00","2019-05-15T00:00:00","2019-05-16T00:00:00","2019-05-17T00:00:00","2019-05-18T00:00:00","2019-05-19T00:00:00","2019-05-20T00:00:00","2019-05-21T00:00:00","2019-05-22T00:00:00","2019-05-23T00:00:00","2019-05-24T00:00:00","2019-05-25T00:00:00","2019-05-26T00:00:00","2019-05-27T00:00:00","2019-05-28T00:00:00","2019-05-29T00:00:00","2019-05-30T00:00:00","2019-05-31T00:00:00","2019-06-01T00:00:00","2019-06-02T00:00:00","2019-06-03T00:00:00","2019-06-04T00:00:00","2019-06-05T00:00:00","2019-06-06T00:00:00","2019-06-07T00:00:00","2019-06-08T00:00:00","2019-06-09T00:00:00","2019-06-10T00:00:00","2019-06-11T00:00:00","2019-06-12T00:00:00","2019-06-13T00:00:00","2019-06-14T00:00:00","2019-06-15T00:00:00","2019-06-16T00:00:00","2019-06-17T00:00:00","2019-06-18T00:00:00","2019-06-19T00:00:00","2019-06-20T00:00:00","2019-06-21T00:00:00","2019-06-22T00:00:00","2019-06-23T00:00:00","2019-06-24T00:00:00","2019-06-25T00:00:00","2019-06-26T00:00:00","2019-06-27T00:00:00","2019-06-28T00:00:00","2019-06-29T00:00:00","2019-06-30T00:00:00","2019-07-01T00:00:00","2019-07-02T00:00:00","2019-07-03T00:00:00","2019-07-04T00:00:00","2019-07-05T00:00:00","2019-07-06T00:00:00","2019-07-07T00:00:00","2019-07-08T00:00:00","2019-07-09T00:00:00","2019-07-10T00:00:00","2019-07-11T00:00:00","2019-07-12T00:00:00","2019-07-13T00:00:00","2019-07-14T00:00:00","2019-07-15T00:00:00","2019-07-16T00:00:00","2019-07-17T00:00:00","2019-07-18T00:00:00","2019-07-19T00:00:00","2019-07-20T00:00:00","2019-07-21T00:00:00","2019-07-22T00:00:00","2019-07-23T00:00:00","2019-07-24T00:00:00","2019-07-25T00:00:00","2019-07-26T00:00:00","2019-07-27T00:00:00","2019-07-28T00:00:00","2019-07-29T00:00:00","2019-07-30T00:00:00","2019-07-31T00:00:00","2019-08-01T00:00:00","2019-08-02T00:00:00","2019-08-03T00:00:00","2019-08-04T00:00:00","2019-08-05T00:00:00","2019-08-06T00:00:00","2019-08-07T00:00:00","2019-08-08T00:00:00","2019-08-09T00:00:00","2019-08-10T00:00:00","2019-08-11T00:00:00","2019-08-12T00:00:00","2019-08-13T00:00:00","2019-08-14T00:00:00","2019-08-15T00:00:00","2019-08-16T00:00:00","2019-08-17T00:00:00","2019-08-18T00:00:00","2019-08-19T00:00:00","2019-08-20T00:00:00","2019-08-21T00:00:00","2019-08-22T00:00:00","2019-08-23T00:00:00","2019-08-24T00:00:00","2019-08-25T00:00:00","2019-08-26T00:00:00","2019-08-27T00:00:00","2019-08-28T00:00:00","2019-08-29T00:00:00","2019-08-30T00:00:00","2019-08-31T00:00:00","2019-09-01T00:00:00","2019-09-02T00:00:00","2019-09-03T00:00:00","2019-09-04T00:00:00","2019-09-05T00:00:00","2019-09-06T00:00:00","2019-09-07T00:00:00","2019-09-08T00:00:00","2019-09-09T00:00:00","2019-09-10T00:00:00","2019-09-11T00:00:00","2019-09-12T00:00:00","2019-09-13T00:00:00","2019-09-14T00:00:00","2019-09-15T00:00:00","2019-09-16T00:00:00","2019-09-17T00:00:00","2019-09-18T00:00:00","2019-09-19T00:00:00","2019-09-20T00:00:00","2019-09-21T00:00:00","2019-09-22T00:00:00","2019-09-23T00:00:00","2019-09-24T00:00:00","2019-09-25T00:00:00","2019-09-26T00:00:00","2019-09-27T00:00:00","2019-09-28T00:00:00","2019-09-29T00:00:00","2019-09-30T00:00:00","2019-10-01T00:00:00","2019-10-02T00:00:00","2019-10-03T00:00:00","2019-10-04T00:00:00","2019-10-05T00:00:00","2019-10-06T00:00:00","2019-10-07T00:00:00","2019-10-08T00:00:00","2019-10-09T00:00:00","2019-10-10T00:00:00","2019-10-11T00:00:00","2019-10-12T00:00:00","2019-10-13T00:00:00","2019-10-14T00:00:00","2019-10-15T00:00:00","2019-10-16T00:00:00","2019-10-17T00:00:00","2019-10-18T00:00:00","2019-10-19T00:00:00","2019-10-20T00:00:00","2019-10-21T00:00:00","2019-10-22T00:00:00","2019-10-23T00:00:00","2019-10-24T00:00:00","2019-10-25T00:00:00","2019-10-26T00:00:00","2019-10-27T00:00:00","2019-10-28T00:00:00","2019-10-29T00:00:00","2019-10-30T00:00:00","2019-10-31T00:00:00","2019-11-01T00:00:00","2019-11-02T00:00:00","2019-11-03T00:00:00","2019-11-04T00:00:00","2019-11-05T00:00:00","2019-11-06T00:00:00","2019-11-07T00:00:00","2019-11-08T00:00:00","2019-11-09T00:00:00","2019-11-10T00:00:00","2019-11-11T00:00:00","2019-11-12T00:00:00","2019-11-13T00:00:00","2019-11-14T00:00:00","2019-11-15T00:00:00","2019-11-16T00:00:00","2019-11-17T00:00:00","2019-11-18T00:00:00","2019-11-19T00:00:00","2019-11-20T00:00:00","2019-11-21T00:00:00","2019-11-22T00:00:00","2019-11-23T00:00:00","2019-11-24T00:00:00","2019-11-25T00:00:00","2019-11-26T00:00:00","2019-11-27T00:00:00","2019-11-28T00:00:00","2019-11-29T00:00:00","2019-11-30T00:00:00","2019-12-01T00:00:00","2019-12-02T00:00:00","2019-12-03T00:00:00","2019-12-04T00:00:00","2019-12-05T00:00:00","2019-12-06T00:00:00","2019-12-07T00:00:00","2019-12-08T00:00:00","2019-12-09T00:00:00","2019-12-10T00:00:00","2019-12-11T00:00:00","2019-12-12T00:00:00","2019-12-13T00:00:00","2019-12-14T00:00:00","2019-12-15T00:00:00","2019-12-16T00:00:00","2019-12-17T00:00:00","2019-12-18T00:00:00","2019-12-19T00:00:00","2019-12-20T00:00:00","2019-12-21T00:00:00","2019-12-22T00:00:00","2019-12-23T00:00:00","2019-12-24T00:00:00","2019-12-25T00:00:00","2019-12-26T00:00:00","2019-12-27T00:00:00","2019-12-28T00:00:00","2019-12-29T00:00:00","2019-12-30T00:00:00","2019-12-31T00:00:00","2020-01-01T00:00:00","2020-01-02T00:00:00","2020-01-03T00:00:00","2020-01-04T00:00:00","2020-01-05T00:00:00","2020-01-06T00:00:00","2020-01-07T00:00:00","2020-01-08T00:00:00","2020-01-09T00:00:00","2020-01-10T00:00:00","2020-01-11T00:00:00","2020-01-12T00:00:00","2020-01-13T00:00:00","2020-01-14T00:00:00","2020-01-15T00:00:00","2020-01-16T00:00:00","2020-01-17T00:00:00","2020-01-18T00:00:00","2020-01-19T00:00:00","2020-01-20T00:00:00","2020-01-21T00:00:00","2020-01-22T00:00:00","2020-01-23T00:00:00","2020-01-24T00:00:00","2020-01-25T00:00:00","2020-01-26T00:00:00","2020-01-27T00:00:00","2020-01-28T00:00:00","2020-01-29T00:00:00","2020-01-30T00:00:00","2020-01-31T00:00:00","2020-02-01T00:00:00","2020-02-02T00:00:00","2020-02-03T00:00:00","2020-02-04T00:00:00","2020-02-05T00:00:00","2020-02-06T00:00:00","2020-02-07T00:00:00","2020-02-08T00:00:00","2020-02-09T00:00:00","2020-02-10T00:00:00","2020-02-11T00:00:00","2020-02-12T00:00:00","2020-02-13T00:00:00","2020-02-14T00:00:00","2020-02-15T00:00:00","2020-02-16T00:00:00","2020-02-17T00:00:00","2020-02-18T00:00:00","2020-02-19T00:00:00","2020-02-20T00:00:00","2020-02-21T00:00:00","2020-02-22T00:00:00","2020-02-23T00:00:00","2020-02-24T00:00:00","2020-02-25T00:00:00","2020-02-26T00:00:00","2020-02-27T00:00:00","2020-02-28T00:00:00","2020-02-29T00:00:00","2020-03-01T00:00:00","2020-03-02T00:00:00","2020-03-03T00:00:00","2020-03-04T00:00:00","2020-03-05T00:00:00","2020-03-06T00:00:00","2020-03-07T00:00:00","2020-03-08T00:00:00","2020-03-09T00:00:00","2020-03-10T00:00:00","2020-03-11T00:00:00","2020-03-12T00:00:00","2020-03-13T00:00:00","2020-03-14T00:00:00","2020-03-15T00:00:00","2020-03-16T00:00:00","2020-03-17T00:00:00","2020-03-18T00:00:00","2020-03-19T00:00:00","2020-03-20T00:00:00","2020-03-21T00:00:00","2020-03-22T00:00:00","2020-03-23T00:00:00","2020-03-24T00:00:00","2020-03-25T00:00:00","2020-03-26T00:00:00","2020-03-27T00:00:00","2020-03-28T00:00:00","2020-03-29T00:00:00","2020-03-30T00:00:00","2020-03-31T00:00:00","2020-04-01T00:00:00","2020-04-02T00:00:00","2020-04-03T00:00:00","2020-04-04T00:00:00","2020-04-05T00:00:00","2020-04-06T00:00:00","2020-04-07T00:00:00","2020-04-08T00:00:00","2020-04-09T00:00:00","2020-04-10T00:00:00","2020-04-11T00:00:00","2020-04-12T00:00:00","2020-04-13T00:00:00","2020-04-14T00:00:00","2020-04-15T00:00:00","2020-04-16T00:00:00","2020-04-17T00:00:00","2020-04-18T00:00:00","2020-04-19T00:00:00","2020-04-20T00:00:00","2020-04-21T00:00:00","2020-04-22T00:00:00","2020-04-23T00:00:00","2020-04-24T00:00:00","2020-04-25T00:00:00","2020-04-26T00:00:00","2020-04-27T00:00:00","2020-04-28T00:00:00","2020-04-29T00:00:00","2020-04-30T00:00:00","2020-05-01T00:00:00","2020-05-02T00:00:00","2020-05-03T00:00:00","2020-05-04T00:00:00","2020-05-05T00:00:00","2020-05-06T00:00:00","2020-05-07T00:00:00","2020-05-08T00:00:00","2020-05-09T00:00:00","2020-05-10T00:00:00","2020-05-11T00:00:00","2020-05-12T00:00:00","2020-05-13T00:00:00","2020-05-14T00:00:00","2020-05-15T00:00:00","2020-05-16T00:00:00","2020-05-17T00:00:00","2020-05-18T00:00:00","2020-05-19T00:00:00","2020-05-20T00:00:00","2020-05-21T00:00:00","2020-05-22T00:00:00","2020-05-23T00:00:00","2020-05-24T00:00:00","2020-05-25T00:00:00","2020-05-26T00:00:00","2020-05-27T00:00:00","2020-05-28T00:00:00","2020-05-29T00:00:00","2020-05-30T00:00:00","2020-05-31T00:00:00","2020-06-01T00:00:00","2020-06-02T00:00:00","2020-06-03T00:00:00","2020-06-04T00:00:00","2020-06-05T00:00:00","2020-06-06T00:00:00","2020-06-07T00:00:00","2020-06-08T00:00:00","2020-06-09T00:00:00","2020-06-10T00:00:00","2020-06-11T00:00:00","2020-06-12T00:00:00","2020-06-13T00:00:00","2020-06-14T00:00:00","2020-06-15T00:00:00","2020-06-16T00:00:00","2020-06-17T00:00:00","2020-06-18T00:00:00","2020-06-19T00:00:00","2020-06-20T00:00:00","2020-06-21T00:00:00","2020-06-22T00:00:00","2020-06-23T00:00:00","2020-06-24T00:00:00","2020-06-25T00:00:00","2020-06-26T00:00:00","2020-06-27T00:00:00","2020-06-28T00:00:00","2020-06-29T00:00:00","2020-06-30T00:00:00","2020-07-01T00:00:00","2020-07-02T00:00:00","2020-07-03T00:00:00","2020-07-04T00:00:00","2020-07-05T00:00:00","2020-07-06T00:00:00","2020-07-07T00:00:00","2020-07-08T00:00:00","2020-07-09T00:00:00","2020-07-10T00:00:00","2020-07-11T00:00:00","2020-07-12T00:00:00","2020-07-13T00:00:00","2020-07-14T00:00:00","2020-07-15T00:00:00","2020-07-16T00:00:00","2020-07-17T00:00:00","2020-07-18T00:00:00","2020-07-19T00:00:00","2020-07-20T00:00:00","2020-07-21T00:00:00","2020-07-22T00:00:00","2020-07-23T00:00:00","2020-07-24T00:00:00","2020-07-25T00:00:00","2020-07-26T00:00:00","2020-07-27T00:00:00","2020-07-28T00:00:00","2020-07-29T00:00:00","2020-07-30T00:00:00","2020-07-31T00:00:00","2020-08-01T00:00:00","2020-08-02T00:00:00","2020-08-03T00:00:00","2020-08-04T00:00:00","2020-08-05T00:00:00","2020-08-06T00:00:00","2020-08-07T00:00:00","2020-08-08T00:00:00","2020-08-09T00:00:00","2020-08-10T00:00:00","2020-08-11T00:00:00","2020-08-12T00:00:00","2020-08-13T00:00:00","2020-08-14T00:00:00","2020-08-15T00:00:00","2020-08-16T00:00:00","2020-08-17T00:00:00","2020-08-18T00:00:00","2020-08-19T00:00:00","2020-08-20T00:00:00","2020-08-21T00:00:00","2020-08-22T00:00:00","2020-08-23T00:00:00","2020-08-24T00:00:00","2020-08-25T00:00:00","2020-08-26T00:00:00","2020-08-27T00:00:00","2020-08-28T00:00:00","2020-08-29T00:00:00","2020-08-30T00:00:00","2020-08-31T00:00:00","2020-09-01T00:00:00","2020-09-02T00:00:00","2020-09-03T00:00:00","2020-09-04T00:00:00","2020-09-05T00:00:00","2020-09-06T00:00:00","2020-09-07T00:00:00","2020-09-08T00:00:00","2020-09-09T00:00:00","2020-09-10T00:00:00","2020-09-11T00:00:00","2020-09-12T00:00:00","2020-09-13T00:00:00","2020-09-14T00:00:00","2020-09-15T00:00:00","2020-09-16T00:00:00","2020-09-17T00:00:00","2020-09-18T00:00:00","2020-09-19T00:00:00","2020-09-20T00:00:00","2020-09-21T00:00:00","2020-09-22T00:00:00","2020-09-23T00:00:00","2020-09-24T00:00:00","2020-09-25T00:00:00","2020-09-26T00:00:00","2020-09-27T00:00:00","2020-09-28T00:00:00","2020-09-29T00:00:00","2020-09-30T00:00:00","2020-10-01T00:00:00","2020-10-02T00:00:00","2020-10-03T00:00:00","2020-10-04T00:00:00","2020-10-05T00:00:00","2020-10-06T00:00:00","2020-10-07T00:00:00","2020-10-08T00:00:00","2020-10-09T00:00:00","2020-10-10T00:00:00","2020-10-11T00:00:00","2020-10-12T00:00:00","2020-10-13T00:00:00","2020-10-14T00:00:00","2020-10-15T00:00:00","2020-10-16T00:00:00","2020-10-17T00:00:00","2020-10-18T00:00:00","2020-10-19T00:00:00","2020-10-20T00:00:00","2020-10-21T00:00:00","2020-10-22T00:00:00","2020-10-23T00:00:00","2020-10-24T00:00:00","2020-10-25T00:00:00","2020-10-26T00:00:00","2020-10-27T00:00:00","2020-10-28T00:00:00","2020-10-29T00:00:00","2020-10-30T00:00:00","2020-10-31T00:00:00","2020-11-01T00:00:00","2020-11-02T00:00:00","2020-11-03T00:00:00","2020-11-04T00:00:00","2020-11-05T00:00:00","2020-11-06T00:00:00","2020-11-07T00:00:00","2020-11-08T00:00:00","2020-11-09T00:00:00","2020-11-10T00:00:00","2020-11-11T00:00:00","2020-11-12T00:00:00","2020-11-13T00:00:00","2020-11-14T00:00:00","2020-11-15T00:00:00","2020-11-16T00:00:00","2020-11-17T00:00:00","2020-11-18T00:00:00","2020-11-19T00:00:00","2020-11-20T00:00:00","2020-11-21T00:00:00","2020-11-22T00:00:00","2020-11-23T00:00:00","2020-11-24T00:00:00","2020-11-25T00:00:00","2020-11-26T00:00:00","2020-11-27T00:00:00","2020-11-28T00:00:00","2020-11-29T00:00:00","2020-11-30T00:00:00","2020-12-01T00:00:00","2020-12-02T00:00:00","2020-12-03T00:00:00","2020-12-04T00:00:00","2020-12-05T00:00:00","2020-12-06T00:00:00","2020-12-07T00:00:00","2020-12-08T00:00:00","2020-12-09T00:00:00","2020-12-10T00:00:00","2020-12-11T00:00:00","2020-12-12T00:00:00","2020-12-13T00:00:00","2020-12-14T00:00:00","2020-12-15T00:00:00","2020-12-16T00:00:00","2020-12-17T00:00:00","2020-12-18T00:00:00","2020-12-19T00:00:00","2020-12-20T00:00:00","2020-12-21T00:00:00","2020-12-22T00:00:00","2020-12-23T00:00:00","2020-12-24T00:00:00","2020-12-25T00:00:00","2020-12-26T00:00:00","2020-12-27T00:00:00","2020-12-28T00:00:00","2020-12-29T00:00:00","2020-12-30T00:00:00","2020-12-31T00:00:00","2021-01-01T00:00:00","2021-01-02T00:00:00","2021-01-03T00:00:00","2021-01-04T00:00:00","2021-01-05T00:00:00","2021-01-06T00:00:00","2021-01-07T00:00:00","2021-01-08T00:00:00","2021-01-09T00:00:00","2021-01-10T00:00:00","2021-01-11T00:00:00","2021-01-12T00:00:00","2021-01-13T00:00:00","2021-01-14T00:00:00","2021-01-15T00:00:00","2021-01-16T00:00:00","2021-01-17T00:00:00","2021-01-18T00:00:00","2021-01-19T00:00:00","2021-01-20T00:00:00","2021-01-21T00:00:00","2021-01-22T00:00:00","2021-01-23T00:00:00","2021-01-24T00:00:00","2021-01-25T00:00:00","2021-01-26T00:00:00","2021-01-27T00:00:00","2021-01-28T00:00:00","2021-01-29T00:00:00","2021-01-30T00:00:00","2021-01-31T00:00:00","2021-02-01T00:00:00","2021-02-02T00:00:00","2021-02-03T00:00:00","2021-02-04T00:00:00","2021-02-05T00:00:00","2021-02-06T00:00:00","2021-02-07T00:00:00","2021-02-08T00:00:00","2021-02-09T00:00:00","2021-02-10T00:00:00","2021-02-11T00:00:00","2021-02-12T00:00:00","2021-02-13T00:00:00","2021-02-14T00:00:00","2021-02-15T00:00:00","2021-02-16T00:00:00","2021-02-17T00:00:00","2021-02-18T00:00:00","2021-02-19T00:00:00","2021-02-20T00:00:00","2021-02-21T00:00:00","2021-02-22T00:00:00","2021-02-23T00:00:00","2021-02-24T00:00:00","2021-02-25T00:00:00","2021-02-26T00:00:00","2021-02-27T00:00:00","2021-02-28T00:00:00","2021-03-01T00:00:00","2021-03-02T00:00:00","2021-03-03T00:00:00","2021-03-04T00:00:00","2021-03-05T00:00:00","2021-03-06T00:00:00","2021-03-07T00:00:00","2021-03-08T00:00:00","2021-03-09T00:00:00","2021-03-10T00:00:00","2021-03-11T00:00:00","2021-03-12T00:00:00","2021-03-13T00:00:00","2021-03-14T00:00:00","2021-03-15T00:00:00","2021-03-16T00:00:00","2021-03-17T00:00:00","2021-03-18T00:00:00","2021-03-19T00:00:00","2021-03-20T00:00:00","2021-03-21T00:00:00","2021-03-22T00:00:00","2021-03-23T00:00:00","2021-03-24T00:00:00","2021-03-25T00:00:00","2021-03-26T00:00:00","2021-03-27T00:00:00","2021-03-28T00:00:00","2021-03-29T00:00:00","2021-03-30T00:00:00","2021-03-31T00:00:00","2021-04-01T00:00:00","2021-04-02T00:00:00","2021-04-03T00:00:00","2021-04-04T00:00:00","2021-04-05T00:00:00","2021-04-06T00:00:00","2021-04-07T00:00:00","2021-04-08T00:00:00","2021-04-09T00:00:00","2021-04-10T00:00:00","2021-04-11T00:00:00","2021-04-12T00:00:00","2021-04-13T00:00:00","2021-04-14T00:00:00","2021-04-15T00:00:00","2021-04-16T00:00:00","2021-04-17T00:00:00","2021-04-18T00:00:00","2021-04-19T00:00:00","2021-04-20T00:00:00","2021-04-21T00:00:00","2021-04-22T00:00:00","2021-04-23T00:00:00","2021-04-24T00:00:00","2021-04-25T00:00:00","2021-04-26T00:00:00","2021-04-27T00:00:00","2021-04-28T00:00:00","2021-04-29T00:00:00","2021-04-30T00:00:00","2021-05-01T00:00:00","2021-05-02T00:00:00","2021-05-03T00:00:00","2021-05-04T00:00:00","2021-05-05T00:00:00","2021-05-06T00:00:00","2021-05-07T00:00:00","2021-05-08T00:00:00","2021-05-09T00:00:00","2021-05-10T00:00:00","2021-05-11T00:00:00","2021-05-12T00:00:00","2021-05-13T00:00:00","2021-05-14T00:00:00","2021-05-15T00:00:00","2021-05-16T00:00:00","2021-05-17T00:00:00","2021-05-18T00:00:00","2021-05-19T00:00:00","2021-05-20T00:00:00","2021-05-21T00:00:00","2021-05-22T00:00:00","2021-05-23T00:00:00","2021-05-24T00:00:00","2021-05-25T00:00:00","2021-05-26T00:00:00","2021-05-27T00:00:00","2021-05-28T00:00:00","2021-05-29T00:00:00","2021-05-30T00:00:00","2021-05-31T00:00:00","2021-06-01T00:00:00","2021-06-02T00:00:00","2021-06-03T00:00:00","2021-06-04T00:00:00","2021-06-05T00:00:00","2021-06-06T00:00:00","2021-06-07T00:00:00","2021-06-08T00:00:00","2021-06-09T00:00:00","2021-06-10T00:00:00","2021-06-11T00:00:00","2021-06-12T00:00:00","2021-06-13T00:00:00","2021-06-14T00:00:00","2021-06-15T00:00:00","2021-06-16T00:00:00","2021-06-17T00:00:00","2021-06-18T00:00:00","2021-06-19T00:00:00","2021-06-20T00:00:00","2021-06-21T00:00:00","2021-06-22T00:00:00","2021-06-23T00:00:00","2021-06-24T00:00:00","2021-06-25T00:00:00","2021-06-26T00:00:00","2021-06-27T00:00:00","2021-06-28T00:00:00","2021-06-29T00:00:00","2021-06-30T00:00:00","2021-07-01T00:00:00","2021-07-02T00:00:00","2021-07-03T00:00:00","2021-07-04T00:00:00","2021-07-05T00:00:00","2021-07-06T00:00:00","2021-07-07T00:00:00","2021-07-08T00:00:00","2021-07-09T00:00:00","2021-07-10T00:00:00","2021-07-11T00:00:00","2021-07-12T00:00:00","2021-07-13T00:00:00","2021-07-14T00:00:00","2021-07-15T00:00:00","2021-07-16T00:00:00","2021-07-17T00:00:00","2021-07-18T00:00:00","2021-07-19T00:00:00","2021-07-20T00:00:00","2021-07-21T00:00:00","2021-07-22T00:00:00","2021-07-23T00:00:00","2021-07-24T00:00:00","2021-07-25T00:00:00","2021-07-26T00:00:00","2021-07-27T00:00:00","2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-30T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-12T00:00:00","2021-08-13T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-17T00:00:00","2021-08-18T00:00:00","2021-08-19T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-22T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-25T00:00:00","2021-08-26T00:00:00","2021-08-27T00:00:00","2021-08-28T00:00:00","2021-08-29T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-06T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-10T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-13T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-18T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-24T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-05T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-17T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-04-30T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-08T00:00:00","2022-05-09T00:00:00","2022-05-10T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-13T00:00:00","2022-05-14T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-21T00:00:00","2022-05-22T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-03T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-07T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-03T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-12T00:00:00","2022-07-13T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-24T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-29T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-02T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-24T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-08T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-21T00:00:00","2022-10-22T00:00:00","2022-10-23T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-06T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-20T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-12T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-24T00:00:00","2022-12-25T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-04T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-28T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-14T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-22T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-30T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-02T00:00:00","2023-06-03T00:00:00","2023-06-04T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-09T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-28T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-15T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-06T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-21T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-25T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-04T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-10T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-21T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-30T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-12T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-06T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-18T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-05T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-27T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-25T00:00:00","2024-05-26T00:00:00","2024-05-27T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-18T00:00:00","2024-06-19T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[231,328,366,398,418,440,475,503,533,565,589,603,622,650,675,698,747,777,783,807,834,867,889,913,935,946,954,965,991,811,737,723,724,737,738,721,706,699,701,698,715,745,730,710,771,764,767,815,845,826,800,812,828,854,892,929,925,914,887,920,946,949,972,965,951,971,987,989,994,1021,981,979,1241,1281,1327,1417,1444,1420,1434,1508,1547,1581,1585,1593,1562,1579,1752,1898,1910,1927,1951,1924,1932,2003,2059,2093,2149,2180,2139,2138,2195,2019,1979,1963,1925,1859,1844,1886,1869,1867,1850,1854,1825,1832,1841,1701,1579,1556,1544,1509,1496,1546,1533,1533,1554,1496,1477,1466,1481,1468,1418,1390,1382,1334,1350,1423,1400,1381,1377,1355,1305,1280,1313,1316,1336,1355,1354,1324,1317,1345,1337,1354,1326,1278,1259,1230,1285,1315,1303,1319,1332,1297,1276,1287,1273,1292,1291,1268,1256,1260,1284,1273,1305,1326,1330,1297,1286,1307,1350,1323,1307,1285,1268,1270,1305,1316,1343,1399,1400,1398,1382,1450,1488,1470,1548,1595,1561,1550,1589,1632,1695,1734,1708,1659,1659,1696,1706,1682,1680,1719,1711,1710,1746,1795,1806,1786,1728,1695,1640,1672,1636,1584,1586,1518,1453,1468,1504,1503,1482,1502,1436,1384,1387,1489,1534,1547,1586,1643,1588,1605,1673,1707,1720,1750,1771,1776,1819,1920,1973,2027,2084,2137,2087,2081,2176,2275,2327,2436,2392,2372,2407,2519,2498,2512,2533,2548,2523,2532,2544,2565,2493,2451,2419,2391,2393,2389,2314,2250,2187,2181,2119,2154,2260,2249,2258,2337,2330,2309,2348,2422,2411,2449,2448,2452,2400,2382,2399,2442,2482,2544,2556,2544,2570,2605,2629,2662,2750,2807,2767,2795,2804,2758,2782,2741,2656,2555,2550,2586,2566,2528,2479,2477,2465,2449,2495,2525,2531,2430,2433,2431,2410,2395,2395,2362,2369,2412,2585,2659,2679,2748,2792,2759,2754,2707,2731,2800,2838,2831,2835,2828,2785,2726,2760,2780,2804,2813,2831,2797,2762,2797,2857,2848,2939,2977,2884,2633,2630,2623,2601,2546,2535,2499,2523,2488,2477,2439,2473,2546,2533,2534,2603,2612,2643,2644,2646,2580,2578,2653,2702,2665,2679,2663,2588,2534,2608,2597,2615,2599,2591,2551,2535,2555,2613,2588,2627,2591,2473,2470,2518,2513,2544,2454,2478,2458,2593,2704,2791,2847,2900,2948,2934,3018,3136,3205,3254,3345,3432,3484,3520,3585,3665,3753,3829,3842,3853,3913,4000,4088,4179,4167,4267,4209,4217,4179,4185,4215,4206,4165,4132,4066,4079,4101,4120,4094,4038,3930,3886,3948,4004,3985,3940,3875,3760,3711,3688,3618,3532,3465,3396,3299,3260,3267,3298,3215,3115,3061,3044,3000,3046,3013,3014,2924,2886,2786,2769,2826,2885,2882,3027,3065,3053,3093,3328,3721,4057,4510,5747,7771,8758,9758,10762,11781,12427,13389,14313,14705,14894,15957,16086,16206,16772,18490,19994,22389,24912,26350,27762,30026,32547,33878,35623,36942,38085,38703,39744,42934,43407,43933,45501,48186,48716,49592,50046,50526,51672,53038,53607,54959,60327,62947,64386,66297,76447,79787,84715,86842,87556,88083,90035,91592,93323,95120,94547,93117,88612,86412,85150,82871,79425,78195,76706,75235,73880,72504,71194,75314,73948,68450,65212,68194,97080,97835,95059,89210,85697,82628,79678,76513,73325,70990,69088,68899,68882,70298,72310,72823,74356,76274,75937,75981,77463,78252,79407,79732,74258,75027,75344,76173,70450,38439,27932,25025,24466,27728,27747,29433,35491,35783,35054,33827,33765,34442,34921,51989,59546,57867,55683,55810,56701,57978,64874,76272,79773,83256,85736,89246,91345,93356,99179,98220,98374,99934,102532,108576,108382,102532,102489,102612,102959,102883,104000,103944,85252,77205,77472,77818,78142,80260,83714,86039,79944,83732,88077,92330,89633,87949,87313,83394,83361,83008,81736,76095,71234,72779,74252,74269,76808,79734,100151,120330,126120,209435,775956,1351384,1833663,2178271,2509727,2539639,2539518,2535286,2529141,2526649,2534626,2535219,2544349,2543366,2541880,2540384,2543584,2546304,2550191,2550345,2548728,2560721,2578593,2589249,2601817,2586629,2565432,2558918,2481825,1915788,1344382,864801,521445,188376,178456,168825,167441,175442,170763,157275,156531,147071,147691,147688,148740,146043,143899,140585,141942,140916,127572,111674,100500,85500,80919,82274,82020,75226,76045,73204,70716,70355,70078,44942,45097,44959,37210,39764,38201,39084,38610,37879,38922,40032,42502,44261,45398,43266,43840,44303,43598,42458,44094,44703,44101,44750,51091,54319,56312,57178,57095,57090,57574,58331,59626,59615,57730,58062,56971,57445,57683,57027,56392,58512,60575,59642,60177,61960,62058,62970,64763,67868,82642,98704,117716,133943,154858,152910,153157,152143,151579,150412,149862,151332,153236,158612,160665,160861,164929,169170,172237,177930,182261,179263,179452,182545,206638,272441,281104,282754,279940,266722,255411,239220,224348,208197,221670,250520,279098,415905,587112,601716,603433,606284,601118,601547,604262,607469,609215,614711,612507,606933,608502,621923,624311,608819,553242,554561,554118,553812,554744,554046,562290,574083,569947,557272,528598,502179,371491,206159,202247,204642,204005,203821,208803,218399,221279,216630,210497,206970,205074,212413,203467,206771,209436,207234,198472,198146,201119,211313,215763,211322,212814,211142,211518,221067,221419,221085,224479,230674,239662,236195,237335,241356,234482,229273,238538,239830,239544,239305,232073,233758,229474,220072,213689,212333,213273,211733,202327,195801,190606,172384,170837,174184,166887,178746,184319,183265,168646,154161,158205,164453,163446,164310,164635,154143,151129,161072,168063,170607,165752,164189,160552,160570,163986,164666,167519,167370,169592,169988,170221,172338,175184,180089,171783,165359,160080,160436,162315,161375,159480,155044,153932,150419,152460,159113,156176,154418,152368,155917,153929,154791,159410,159899,159874,160089,158276,154807,153900,153536,157804,156702,154929,156378,154581,153325,153475,152892,154222,148328,142733,138183,137394,139459,138340,135177,132554,131894,127905,128267,130145,127587,128081,129770,127376,127227,126885,134721,138747,137735,131975,133348,128019,126085,129098,129438,129164,125160,126428,127470,127603,127570,124990,119746,116162,113565,112421,111989,111309,111516,109888,105966,101750,100350,101035,102449,97840,98326,97798,101941,96024,98046,99162,97144,96466,98510,104416,106134,109233,113077,117453,119308,121882,124584,126295,128662,130792,133397,132772,135158,136829,138314,138458,140854,145530,145950,146632,145591,144653,146582,146486,148992,152241,153604,152569,148889,149019,150957,151783,153531,154996,159962,160441,160891,163452,164888,165212,168850,169619,170480,169941,172899,172887,173359,173156,170403,171393,170559,173319,177014,178961,178431,178267,178671,178238,178280,176022,173820,171293,172742,168024,166009,166241,161334,158857,156112,154283,152050,149650,150505,150749,152706,148500,146072,145167,141396,139981,136680,132143,133164,135262,137604,136644,142525,143303,142818,142101,140795,138094,136718,137452,135892,137973,139399,141955,141117,139434,138436,136074,133475,132677,135919,142871,140868,141787,146136,152048,151706,147545,142619,139929,138381,129643,126994,124447,123604,122520,120570,120477,118846,120615,120644,119259,118453,116752,116836,122292,125364,123817,118342,114534,107144,108774,107849,110251,103420,104855,103711,103147,101609,103173,109656,119127,121256,122018,121312,120841,121102,122389,120500,119896,120531,119081,121480,124082,119123,120800,123322,125604,124141,123327,122788,123715,119348,118118,117111,116378,117334,117299,124197,122112,115222,114234,113524,117116,120416,123231,123122,124036,124434,124128,124087,123097,121641,128772,124673,123386,122031,124527,127670,128212,133836,139390,142482,141883,147085,149533,156900,158414,156483,161661,159987,158986,162834,166868,170610,168638,166312,163298,165319,167599,169177,174987,171838,171393,168165,168853,168771,171591,169578,162547,152904,151208,148707,146683,150752,145929,138129,136294,128895,132547,140052,131888,124711,117633,117713,118000,119397,118462,115669,114000,106282,100528,99242,101239,100939,100950,94734,94569,93343,93392,91996,97564,94612,86563,83665,80483,79187,79524,77624,78409,79357,79834,77868,77689,80716,81869,80183,82697,82986,83362,83736,84501,83337,83352,81314,80839,80374,80318,80519,80801,78005,79892,79442,78726,78886,79822,79195,86198,82925,82411,80968,81003,82368,79452,77366,75805,73151,70184,69648,70469,71800,72669,71714,70524,70416,70670,70888,71918,74606,72380,69204,68972,68970,70308,71140,73301,65350,60964,60897,61234,60843,62489,68883,70013,70133,70197,69639,68891,68713,66567,64866,64507,64074,63258,62843,62031,60827,57121,56563,56393,56426,56101,54136,52290,49527,48231,46888,45453,45864,47222,45745,38837,37281,36993,36100,36096,37104,36392,36180,36728,36430,36303,36969,38317,38454,38235,38115,38548,38286,38766,40149,42635,44283,42971,42804,42572,43100,41700,41478,41589,45990,48115,47638,48078,48007,46850,46317,46257,45613,44886,46240,46223,46575,48926,49198,49091,49284,51031,52796,52407,53091,54765,54336,53687,56424,57788,58801,59736,59978,54878,52006,56287,57693,59953,61794,62236,62857,62690,67430,65879,65590,63712,61243,60012,59538,58996,57721,54897,53761,53393,50104,50476,51890,51356,51232,52128,49792,47055,47148,48012,45510,43344,42741,40642,39906,38547,39092,35924,36659,40523,41702,41197,41238,42715,46330,46590,50501,52294,50043,49875,50193,48958,46900,45929,43769,43463,43502,45356,45077,44188,46176,45820,45749,45732,45901,46989,46141,44993,40712,41146,41103,41727,40131,36200,34881,30803,28410,27333,26525,25970,26705,26270,25311,24969,24938,26067,25916,27238,28305,27927,26093,26044,29250,29166,28809,28177,28110,27927,25721,25654,25104,25678,25673,26778,26580,26532,29281,29450,31622,30846,30796,30702,30778,30867,29991,28348,27265,25424,23562,23534,23767,21599,21594,20428,20551,20491,20519,22492,24251,26128,25557,29067,28057,28079,31063,29815,30669,28457,28456,28236,28248,29400,30594,30997,30957,30070,29840,29839,29869,30148,30161,30238,30246,29994,30041,32415,32035,31257,29321,29214,25627,25526,26922,24771,25758,24707,25708,25535,25495,28435,28062,26788,26079,26038,25982,25870,26875,26857,26453,25395,25199,25057,25125,25672,25436,25221,27200,28156,28201,28273,28805,28477,27811,25409,26568,25558,25659,26084,24852,25672,28008,30047,31343,31395,32102,31336,32476,33751,34438,34686,34912,35159,34766,32964,31620,28717,27842,27939,29972,29611,28714,28734,28897,27912,27862,30214,31625,31531,31465,29511,28379,27234,28596,29620,30011,29158,27898,27263,27614,27681,27589,27654,27650,27794,27832,28052,30086,29810,29837,29968,29897,29919,30061,30231,28851,27939,27288,25864,26705,26188,28191,29417,29067,30546,32708,32726,33210,33661,34347,34480,34399,34991,34856,34914,36506,34466,32865,32717,32572,33716,33661,33513,35220,39130,39540,38674,39983,38757,38406,36207,33757,32617,32396,30160,30184,29752,28814,27907,27847,28831,27580,27189,26729,24460,25879,26503,26118,27144,25575,25134,24702,22522,17281,15713,16836,15115,14918,14620,14355,13915,14815,12615,12137,11779,11448,11108,10707,10200,8758,8763,8847,8867,8907,11804,10731,10705,9232,9639,12503,12509,13622,18341,18283,16729,17683,17662,17692,19227,20174,18800,18797,18805,18753,18742,18790,20220,20206,20196,20242,20189,20211,20221,16917,16855,16872,16908,16542,13695,19174,19826,15048,15056,16811,15914,17569,17496,17674,16705,16728,16771,16962,16945,17021,16964,15513,15502,17178,17151,17133,17115,17093,15615,15643,15720,15715,19388,19387,13862,13168,13155,14325,12592,12573,12630,15677,13915,15573,18890,18889,20234,20215,21610,21613,21626,21661,19999,19984,20024,20029,20010,21544,21575,21530,21523,17852,17858,19380,18248,18300,17168,17183,17232,15544,13927,13916,12282,9002,8983,10515,10513,9009,8988,8982,8968,12212,12227,12201,12158,12145,10678,12369,14302,14281,14288,14267,12752,12794,12770,14299,14279,14253,14151,12718,12746,12943,12909,12878,9788,9778,9812,11323,11917,11937,8725,9972,9937,9983,10033,9977,8291,6349,6349,6311,6344,6366,6400,6412,4886,4891,4840,4929,5184,5661,7629,11179,11407,11413,11697,11703,10265,9774,12611,12585,11301,13649,13676,13673,14740,14772,14762,14758,14839,14914,16907,16908,18233,18189,18178,18303,18356,18116,17653,15539,13719,13530,13657,13522,13669,13677,15201,12328,12316,12455,10183,10265,12595],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=0\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"0","line":{"color":"#636efa","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"0","showlegend":true,"x":["2016-01-22T00:00:00","2016-01-23T00:00:00","2016-01-25T00:00:00","2016-01-26T00:00:00","2016-01-27T00:00:00","2016-01-28T00:00:00","2016-01-29T00:00:00","2016-01-30T00:00:00","2016-01-31T00:00:00","2016-02-01T00:00:00","2016-02-02T00:00:00","2016-02-03T00:00:00","2016-02-04T00:00:00","2016-02-05T00:00:00","2016-02-06T00:00:00","2016-02-07T00:00:00","2016-02-08T00:00:00","2016-02-09T00:00:00","2016-02-10T00:00:00","2016-02-11T00:00:00","2016-02-12T00:00:00","2016-02-13T00:00:00","2016-02-15T00:00:00","2016-02-16T00:00:00","2016-02-17T00:00:00","2016-02-18T00:00:00","2016-02-19T00:00:00","2016-02-21T00:00:00","2016-02-22T00:00:00","2016-02-23T00:00:00","2016-02-24T00:00:00","2016-02-25T00:00:00","2016-02-26T00:00:00","2016-02-27T00:00:00","2016-02-28T00:00:00","2016-02-29T00:00:00","2016-03-01T00:00:00","2016-03-02T00:00:00","2016-03-03T00:00:00","2016-03-04T00:00:00","2016-03-05T00:00:00","2016-05-22T00:00:00","2016-05-23T00:00:00","2016-05-24T00:00:00","2016-05-25T00:00:00","2016-05-26T00:00:00","2016-05-27T00:00:00","2016-05-28T00:00:00","2016-05-29T00:00:00","2016-05-30T00:00:00","2016-05-31T00:00:00","2016-06-01T00:00:00","2016-06-02T00:00:00","2016-06-03T00:00:00","2016-06-04T00:00:00","2016-06-05T00:00:00","2016-06-06T00:00:00","2016-06-07T00:00:00","2016-06-08T00:00:00","2016-06-09T00:00:00","2016-06-10T00:00:00","2016-06-11T00:00:00","2016-06-12T00:00:00","2016-06-13T00:00:00","2016-06-14T00:00:00","2016-06-15T00:00:00","2016-06-16T00:00:00","2016-06-17T00:00:00","2016-06-18T00:00:00","2016-06-19T00:00:00","2016-06-20T00:00:00","2016-06-21T00:00:00","2016-06-22T00:00:00","2016-06-23T00:00:00","2016-06-24T00:00:00","2016-06-25T00:00:00","2016-06-26T00:00:00","2016-06-27T00:00:00","2016-06-28T00:00:00","2016-06-29T00:00:00","2016-06-30T00:00:00","2016-07-01T00:00:00","2016-07-02T00:00:00","2016-07-03T00:00:00","2016-07-04T00:00:00","2016-07-05T00:00:00","2016-07-06T00:00:00","2016-07-07T00:00:00","2016-07-08T00:00:00","2016-07-09T00:00:00","2016-07-10T00:00:00","2016-07-11T00:00:00","2016-07-12T00:00:00","2016-07-13T00:00:00","2016-07-14T00:00:00","2016-07-15T00:00:00","2016-07-16T00:00:00","2016-07-17T00:00:00","2016-07-18T00:00:00","2016-07-19T00:00:00","2016-07-20T00:00:00","2016-07-21T00:00:00","2016-07-22T00:00:00","2016-07-23T00:00:00","2016-07-24T00:00:00","2016-07-25T00:00:00","2016-07-26T00:00:00","2016-07-27T00:00:00","2016-07-28T00:00:00","2016-07-29T00:00:00","2016-07-30T00:00:00","2016-07-31T00:00:00","2016-08-01T00:00:00","2016-08-02T00:00:00","2016-08-03T00:00:00","2016-08-04T00:00:00","2016-08-05T00:00:00","2016-08-06T00:00:00","2016-08-07T00:00:00","2016-08-08T00:00:00","2016-08-09T00:00:00","2016-08-10T00:00:00","2016-08-11T00:00:00","2016-08-12T00:00:00","2016-08-13T00:00:00","2016-08-14T00:00:00","2016-08-15T00:00:00","2016-08-16T00:00:00","2016-08-17T00:00:00","2016-08-18T00:00:00","2016-08-19T00:00:00","2016-08-20T00:00:00","2016-08-21T00:00:00","2016-08-22T00:00:00","2016-08-23T00:00:00","2016-08-24T00:00:00","2016-08-25T00:00:00","2016-08-26T00:00:00","2016-08-27T00:00:00","2016-08-28T00:00:00","2016-08-29T00:00:00","2016-08-30T00:00:00","2016-08-31T00:00:00","2016-09-01T00:00:00","2016-09-02T00:00:00","2016-09-03T00:00:00","2016-09-04T00:00:00","2016-09-05T00:00:00","2016-09-06T00:00:00","2016-09-07T00:00:00","2016-09-08T00:00:00","2016-09-09T00:00:00","2016-09-10T00:00:00","2016-09-11T00:00:00","2016-09-12T00:00:00","2016-09-13T00:00:00","2016-09-14T00:00:00","2016-09-15T00:00:00","2016-09-16T00:00:00","2016-09-17T00:00:00","2016-09-18T00:00:00","2016-09-19T00:00:00","2016-09-20T00:00:00","2016-09-21T00:00:00","2016-09-22T00:00:00","2016-09-23T00:00:00","2016-09-24T00:00:00","2016-09-25T00:00:00","2016-09-26T00:00:00","2016-09-27T00:00:00","2016-09-28T00:00:00","2016-09-29T00:00:00","2016-09-30T00:00:00","2016-10-01T00:00:00","2016-10-02T00:00:00","2016-10-03T00:00:00","2016-10-04T00:00:00","2016-10-05T00:00:00","2016-10-06T00:00:00","2016-10-07T00:00:00","2016-10-08T00:00:00","2016-10-09T00:00:00","2016-10-10T00:00:00","2016-10-11T00:00:00","2016-10-12T00:00:00","2016-10-13T00:00:00","2016-10-14T00:00:00","2016-10-15T00:00:00","2016-10-16T00:00:00","2016-10-17T00:00:00","2016-10-18T00:00:00","2016-10-19T00:00:00","2016-10-20T00:00:00","2016-10-21T00:00:00","2016-10-22T00:00:00","2016-10-23T00:00:00","2016-10-24T00:00:00","2016-10-25T00:00:00","2016-10-26T00:00:00","2016-10-27T00:00:00","2016-10-28T00:00:00","2016-10-29T00:00:00","2016-10-30T00:00:00","2016-10-31T00:00:00","2016-11-01T00:00:00","2016-11-02T00:00:00","2016-11-03T00:00:00","2016-11-04T00:00:00","2016-11-05T00:00:00","2016-11-06T00:00:00","2016-11-07T00:00:00","2016-11-08T00:00:00","2016-11-09T00:00:00","2016-11-10T00:00:00","2016-11-11T00:00:00","2016-11-12T00:00:00","2016-11-13T00:00:00","2016-11-14T00:00:00","2016-11-15T00:00:00","2016-11-16T00:00:00","2016-11-17T00:00:00","2016-11-18T00:00:00","2016-11-19T00:00:00","2016-11-20T00:00:00","2016-11-21T00:00:00","2016-11-22T00:00:00","2016-11-23T00:00:00","2016-11-24T00:00:00","2016-11-25T00:00:00","2016-11-26T00:00:00","2016-11-27T00:00:00","2016-11-28T00:00:00","2016-11-29T00:00:00","2016-11-30T00:00:00","2016-12-01T00:00:00","2016-12-02T00:00:00","2016-12-03T00:00:00","2016-12-04T00:00:00","2016-12-05T00:00:00","2016-12-06T00:00:00","2016-12-07T00:00:00","2016-12-08T00:00:00","2016-12-09T00:00:00","2016-12-10T00:00:00","2016-12-11T00:00:00","2016-12-12T00:00:00","2016-12-13T00:00:00","2016-12-14T00:00:00","2016-12-15T00:00:00","2016-12-16T00:00:00","2016-12-17T00:00:00","2016-12-18T00:00:00","2016-12-19T00:00:00","2016-12-20T00:00:00","2016-12-21T00:00:00","2016-12-22T00:00:00","2016-12-23T00:00:00","2016-12-24T00:00:00","2016-12-25T00:00:00","2016-12-26T00:00:00","2016-12-27T00:00:00","2016-12-28T00:00:00","2016-12-29T00:00:00","2016-12-30T00:00:00","2016-12-31T00:00:00","2017-01-01T00:00:00","2017-01-02T00:00:00","2017-01-03T00:00:00","2017-01-04T00:00:00","2017-01-05T00:00:00","2017-01-06T00:00:00","2017-01-07T00:00:00","2017-01-08T00:00:00","2017-01-09T00:00:00","2017-01-10T00:00:00","2017-01-11T00:00:00","2017-01-12T00:00:00","2017-01-13T00:00:00","2017-01-14T00:00:00","2017-01-15T00:00:00","2017-01-16T00:00:00","2017-01-17T00:00:00","2017-01-18T00:00:00","2017-01-19T00:00:00","2017-01-20T00:00:00","2017-01-21T00:00:00","2017-01-22T00:00:00","2017-01-23T00:00:00","2017-01-24T00:00:00","2017-01-25T00:00:00","2017-01-26T00:00:00","2017-01-27T00:00:00","2017-01-28T00:00:00","2017-01-29T00:00:00","2017-01-30T00:00:00","2017-01-31T00:00:00","2017-02-01T00:00:00","2017-02-02T00:00:00","2017-02-03T00:00:00","2017-02-04T00:00:00","2017-02-05T00:00:00","2017-02-06T00:00:00","2017-02-07T00:00:00","2017-02-08T00:00:00","2017-02-09T00:00:00","2017-02-10T00:00:00","2017-02-11T00:00:00","2017-02-12T00:00:00","2017-02-13T00:00:00","2017-02-14T00:00:00","2017-02-15T00:00:00","2017-02-16T00:00:00","2017-02-17T00:00:00","2017-02-18T00:00:00","2017-02-19T00:00:00","2017-02-20T00:00:00","2017-02-21T00:00:00","2017-02-22T00:00:00","2017-02-23T00:00:00","2017-02-24T00:00:00","2017-02-25T00:00:00","2017-02-26T00:00:00","2017-02-27T00:00:00","2017-02-28T00:00:00","2017-03-01T00:00:00","2017-03-02T00:00:00","2017-03-03T00:00:00","2017-03-04T00:00:00","2017-03-05T00:00:00","2017-03-06T00:00:00","2017-03-07T00:00:00","2017-03-08T00:00:00","2017-03-09T00:00:00","2017-03-10T00:00:00","2017-03-11T00:00:00","2017-03-12T00:00:00","2017-03-13T00:00:00","2017-03-14T00:00:00","2017-03-15T00:00:00","2017-03-16T00:00:00","2017-03-17T00:00:00","2017-03-18T00:00:00","2017-03-19T00:00:00","2017-03-20T00:00:00","2017-03-21T00:00:00","2017-03-22T00:00:00","2017-03-23T00:00:00","2017-03-24T00:00:00","2017-03-25T00:00:00","2017-03-26T00:00:00","2017-03-27T00:00:00","2017-03-28T00:00:00","2017-03-29T00:00:00","2017-03-30T00:00:00","2017-03-31T00:00:00","2017-04-01T00:00:00","2017-04-02T00:00:00","2017-04-03T00:00:00","2017-04-04T00:00:00","2017-04-05T00:00:00","2017-04-06T00:00:00","2017-04-07T00:00:00","2017-04-08T00:00:00","2017-04-09T00:00:00","2017-04-10T00:00:00","2017-04-11T00:00:00","2017-04-12T00:00:00","2017-04-13T00:00:00","2017-04-14T00:00:00","2017-04-15T00:00:00","2017-04-16T00:00:00","2017-04-17T00:00:00","2017-04-18T00:00:00","2017-04-19T00:00:00","2017-04-20T00:00:00","2017-04-21T00:00:00","2017-04-22T00:00:00","2017-04-23T00:00:00","2017-04-24T00:00:00","2017-04-25T00:00:00","2017-04-26T00:00:00","2017-04-27T00:00:00","2017-04-28T00:00:00","2017-04-29T00:00:00","2017-04-30T00:00:00","2017-05-01T00:00:00","2017-05-02T00:00:00","2017-05-03T00:00:00","2017-05-04T00:00:00","2017-05-05T00:00:00","2017-05-06T00:00:00","2017-05-07T00:00:00","2017-05-08T00:00:00","2017-05-09T00:00:00","2017-05-10T00:00:00","2017-05-11T00:00:00","2017-05-12T00:00:00","2017-05-13T00:00:00","2017-05-14T00:00:00","2017-05-15T00:00:00","2017-05-16T00:00:00","2017-05-17T00:00:00","2017-05-18T00:00:00","2017-05-19T00:00:00","2017-05-20T00:00:00","2017-05-21T00:00:00","2017-05-22T00:00:00","2017-05-23T00:00:00","2017-05-24T00:00:00","2017-05-25T00:00:00","2017-05-26T00:00:00","2017-05-28T00:00:00","2017-05-29T00:00:00","2017-05-30T00:00:00","2017-05-31T00:00:00","2017-06-01T00:00:00","2017-06-02T00:00:00","2017-06-03T00:00:00","2017-06-04T00:00:00","2017-06-05T00:00:00","2017-06-06T00:00:00","2017-06-07T00:00:00","2017-06-08T00:00:00","2017-06-09T00:00:00","2017-06-10T00:00:00","2017-06-11T00:00:00","2017-06-12T00:00:00","2017-06-13T00:00:00","2017-06-14T00:00:00","2017-06-15T00:00:00","2017-06-16T00:00:00","2017-06-17T00:00:00","2017-06-18T00:00:00","2017-06-19T00:00:00","2017-06-20T00:00:00","2017-06-21T00:00:00","2017-06-22T00:00:00","2017-06-23T00:00:00","2017-06-24T00:00:00","2017-06-25T00:00:00","2017-06-26T00:00:00","2017-06-27T00:00:00","2017-06-28T00:00:00","2017-06-29T00:00:00","2017-06-30T00:00:00","2017-07-01T00:00:00","2017-07-02T00:00:00","2017-07-03T00:00:00","2017-07-04T00:00:00","2017-07-05T00:00:00","2017-07-06T00:00:00","2017-07-07T00:00:00","2017-07-08T00:00:00","2017-07-09T00:00:00","2017-07-10T00:00:00","2017-07-11T00:00:00","2017-07-12T00:00:00","2017-07-13T00:00:00","2017-07-14T00:00:00","2017-07-15T00:00:00","2017-07-16T00:00:00","2017-07-17T00:00:00","2017-07-18T00:00:00","2017-07-19T00:00:00","2017-07-20T00:00:00","2017-07-21T00:00:00","2017-07-22T00:00:00","2017-07-23T00:00:00","2017-07-24T00:00:00","2017-07-25T00:00:00","2017-07-26T00:00:00","2017-07-27T00:00:00","2017-07-28T00:00:00","2017-07-29T00:00:00","2017-07-30T00:00:00","2017-07-31T00:00:00","2017-08-01T00:00:00","2017-08-02T00:00:00","2017-08-03T00:00:00","2017-08-04T00:00:00","2017-08-05T00:00:00","2017-08-06T00:00:00","2017-08-07T00:00:00","2017-08-08T00:00:00","2017-08-09T00:00:00","2017-08-10T00:00:00","2017-08-11T00:00:00","2017-08-12T00:00:00","2017-08-13T00:00:00","2017-08-14T00:00:00","2017-08-15T00:00:00","2017-08-16T00:00:00","2017-08-17T00:00:00","2017-08-18T00:00:00","2017-08-19T00:00:00","2017-08-20T00:00:00","2017-08-21T00:00:00","2017-08-22T00:00:00","2017-08-23T00:00:00","2017-08-24T00:00:00","2017-08-25T00:00:00","2017-08-26T00:00:00","2017-08-27T00:00:00","2017-08-28T00:00:00","2017-08-29T00:00:00","2017-08-30T00:00:00","2017-08-31T00:00:00","2017-09-01T00:00:00","2017-09-02T00:00:00","2017-09-03T00:00:00","2017-09-04T00:00:00","2017-09-05T00:00:00","2017-09-06T00:00:00","2017-09-07T00:00:00","2017-09-08T00:00:00","2017-09-09T00:00:00","2017-09-10T00:00:00","2017-09-11T00:00:00","2017-09-12T00:00:00","2017-09-13T00:00:00","2017-09-14T00:00:00","2017-09-15T00:00:00","2017-09-16T00:00:00","2017-09-17T00:00:00","2017-09-18T00:00:00","2017-09-19T00:00:00","2017-09-20T00:00:00","2017-09-21T00:00:00","2017-09-22T00:00:00","2017-09-23T00:00:00","2017-09-24T00:00:00","2017-09-25T00:00:00","2017-09-26T00:00:00","2017-09-27T00:00:00","2017-09-28T00:00:00","2017-09-29T00:00:00","2017-09-30T00:00:00","2017-10-01T00:00:00","2017-10-02T00:00:00","2017-10-03T00:00:00","2017-10-04T00:00:00","2017-10-05T00:00:00","2017-10-06T00:00:00","2017-10-07T00:00:00","2017-10-08T00:00:00","2017-10-09T00:00:00","2017-10-10T00:00:00","2017-10-11T00:00:00","2017-10-12T00:00:00","2017-10-13T00:00:00","2017-10-14T00:00:00","2017-10-15T00:00:00","2017-10-16T00:00:00","2017-10-17T00:00:00","2017-10-18T00:00:00","2017-10-19T00:00:00","2017-10-20T00:00:00","2017-10-21T00:00:00","2017-10-22T00:00:00","2017-10-23T00:00:00","2017-10-24T00:00:00","2017-10-25T00:00:00","2017-10-26T00:00:00","2017-10-27T00:00:00","2017-10-28T00:00:00","2017-10-29T00:00:00","2017-10-30T00:00:00","2017-10-31T00:00:00","2017-11-01T00:00:00","2017-11-02T00:00:00","2017-11-03T00:00:00","2017-11-04T00:00:00","2017-11-05T00:00:00","2017-11-06T00:00:00","2017-11-07T00:00:00","2017-11-08T00:00:00","2017-11-09T00:00:00","2017-11-10T00:00:00","2017-11-11T00:00:00","2017-11-12T00:00:00","2017-11-13T00:00:00","2017-11-14T00:00:00","2017-11-15T00:00:00","2017-11-16T00:00:00","2017-11-17T00:00:00","2017-11-18T00:00:00","2017-11-19T00:00:00","2017-11-20T00:00:00","2017-11-21T00:00:00","2017-11-22T00:00:00","2017-11-23T00:00:00","2017-11-24T00:00:00","2017-11-25T00:00:00","2017-11-26T00:00:00","2017-11-27T00:00:00","2017-11-28T00:00:00","2017-11-29T00:00:00","2017-11-30T00:00:00","2017-12-01T00:00:00","2017-12-02T00:00:00","2017-12-03T00:00:00","2017-12-04T00:00:00","2017-12-05T00:00:00","2017-12-06T00:00:00","2017-12-07T00:00:00","2017-12-08T00:00:00","2017-12-09T00:00:00","2017-12-10T00:00:00","2017-12-11T00:00:00","2017-12-12T00:00:00","2017-12-13T00:00:00","2017-12-14T00:00:00","2017-12-15T00:00:00","2017-12-16T00:00:00","2017-12-17T00:00:00","2017-12-18T00:00:00","2017-12-19T00:00:00","2017-12-20T00:00:00","2017-12-21T00:00:00","2017-12-22T00:00:00","2017-12-23T00:00:00","2017-12-24T00:00:00","2017-12-25T00:00:00","2017-12-26T00:00:00","2017-12-27T00:00:00","2017-12-28T00:00:00","2017-12-29T00:00:00","2017-12-30T00:00:00","2017-12-31T00:00:00","2018-01-01T00:00:00","2018-01-02T00:00:00","2018-01-03T00:00:00","2018-01-04T00:00:00","2018-01-05T00:00:00","2018-01-06T00:00:00","2018-01-07T00:00:00","2018-01-08T00:00:00","2018-01-09T00:00:00","2018-01-10T00:00:00","2018-01-11T00:00:00","2018-01-12T00:00:00","2018-01-13T00:00:00","2018-01-14T00:00:00","2018-01-15T00:00:00","2018-01-16T00:00:00","2018-01-17T00:00:00","2018-01-18T00:00:00","2018-01-19T00:00:00","2018-01-20T00:00:00","2018-01-21T00:00:00","2018-01-22T00:00:00","2018-01-23T00:00:00","2018-01-24T00:00:00","2018-01-25T00:00:00","2018-01-26T00:00:00","2018-01-27T00:00:00","2018-01-28T00:00:00","2018-01-29T00:00:00","2018-01-30T00:00:00","2018-01-31T00:00:00","2018-02-01T00:00:00","2018-02-02T00:00:00","2018-02-03T00:00:00","2018-02-04T00:00:00","2018-02-05T00:00:00","2018-02-06T00:00:00","2018-02-07T00:00:00","2018-02-08T00:00:00","2018-02-09T00:00:00","2018-02-10T00:00:00","2018-02-11T00:00:00","2018-02-12T00:00:00","2018-02-13T00:00:00","2018-02-14T00:00:00","2018-02-15T00:00:00","2018-02-16T00:00:00","2018-02-17T00:00:00","2018-02-18T00:00:00","2018-02-19T00:00:00","2018-02-20T00:00:00","2018-02-21T00:00:00","2018-02-22T00:00:00","2018-02-23T00:00:00","2018-02-24T00:00:00","2018-02-25T00:00:00","2018-02-26T00:00:00","2018-02-27T00:00:00","2018-02-28T00:00:00","2018-03-01T00:00:00","2018-03-02T00:00:00","2018-03-03T00:00:00","2018-03-04T00:00:00","2018-03-05T00:00:00","2018-03-06T00:00:00","2018-03-07T00:00:00","2018-03-08T00:00:00","2018-03-09T00:00:00","2018-03-10T00:00:00","2018-03-11T00:00:00","2018-03-12T00:00:00","2018-03-13T00:00:00","2018-03-14T00:00:00","2018-03-15T00:00:00","2018-03-16T00:00:00","2018-03-17T00:00:00","2018-03-18T00:00:00","2018-03-19T00:00:00","2018-03-20T00:00:00","2018-03-21T00:00:00","2018-03-22T00:00:00","2018-03-23T00:00:00","2018-03-24T00:00:00","2018-03-25T00:00:00","2018-03-26T00:00:00","2018-03-27T00:00:00","2018-03-28T00:00:00","2018-03-29T00:00:00","2018-03-30T00:00:00","2018-03-31T00:00:00","2018-04-01T00:00:00","2018-04-02T00:00:00","2018-04-03T00:00:00","2018-04-04T00:00:00","2018-04-05T00:00:00","2018-04-06T00:00:00","2018-04-07T00:00:00","2018-04-08T00:00:00","2018-04-09T00:00:00","2018-04-10T00:00:00","2018-04-11T00:00:00","2018-04-12T00:00:00","2018-04-13T00:00:00","2018-04-14T00:00:00","2018-04-15T00:00:00","2018-04-16T00:00:00","2018-04-17T00:00:00","2018-04-18T00:00:00","2018-04-19T00:00:00","2018-04-20T00:00:00","2018-04-21T00:00:00","2018-04-22T00:00:00","2018-04-23T00:00:00","2018-04-24T00:00:00","2018-04-25T00:00:00","2018-04-26T00:00:00","2018-04-27T00:00:00","2018-04-28T00:00:00","2018-04-29T00:00:00","2018-04-30T00:00:00","2018-05-01T00:00:00","2018-05-02T00:00:00","2018-05-03T00:00:00","2018-05-04T00:00:00","2018-05-05T00:00:00","2018-05-06T00:00:00","2018-05-07T00:00:00","2018-05-08T00:00:00","2018-05-09T00:00:00","2018-05-10T00:00:00","2018-05-11T00:00:00","2018-05-12T00:00:00","2018-05-13T00:00:00","2018-05-14T00:00:00","2018-05-15T00:00:00","2018-05-16T00:00:00","2018-05-17T00:00:00","2018-05-18T00:00:00","2018-05-19T00:00:00","2018-05-20T00:00:00","2018-05-21T00:00:00","2018-05-23T00:00:00","2018-05-24T00:00:00","2018-05-25T00:00:00","2018-05-26T00:00:00","2018-05-27T00:00:00","2018-05-28T00:00:00","2018-05-29T00:00:00","2018-05-30T00:00:00","2018-05-31T00:00:00","2018-06-01T00:00:00","2018-06-02T00:00:00","2018-06-03T00:00:00","2018-06-04T00:00:00","2018-06-05T00:00:00","2018-06-06T00:00:00","2018-06-07T00:00:00","2018-06-08T00:00:00","2018-06-09T00:00:00","2018-06-10T00:00:00","2018-06-11T00:00:00","2018-06-12T00:00:00","2018-06-13T00:00:00","2018-06-14T00:00:00","2018-06-15T00:00:00","2018-06-16T00:00:00","2018-06-17T00:00:00","2018-06-18T00:00:00","2018-06-19T00:00:00","2018-06-20T00:00:00","2018-06-21T00:00:00","2018-06-22T00:00:00","2018-06-23T00:00:00","2018-06-24T00:00:00","2018-06-25T00:00:00","2018-06-26T00:00:00","2018-06-27T00:00:00","2018-06-28T00:00:00","2018-06-29T00:00:00","2018-06-30T00:00:00","2018-07-01T00:00:00","2018-07-02T00:00:00","2018-07-03T00:00:00","2018-07-04T00:00:00","2018-07-05T00:00:00","2018-07-06T00:00:00","2018-07-07T00:00:00","2018-07-08T00:00:00","2018-07-09T00:00:00","2018-07-10T00:00:00","2018-07-11T00:00:00","2018-07-12T00:00:00","2018-07-13T00:00:00","2018-07-14T00:00:00","2018-07-15T00:00:00","2018-07-16T00:00:00","2018-07-17T00:00:00","2018-07-18T00:00:00","2018-07-19T00:00:00","2018-07-20T00:00:00","2018-07-21T00:00:00","2018-07-22T00:00:00","2018-07-26T00:00:00","2018-07-27T00:00:00","2018-07-28T00:00:00","2018-07-29T00:00:00","2018-07-30T00:00:00","2018-07-31T00:00:00","2018-08-01T00:00:00","2018-08-02T00:00:00","2018-08-03T00:00:00","2018-08-04T00:00:00","2018-08-05T00:00:00","2018-08-06T00:00:00","2018-08-07T00:00:00","2018-08-08T00:00:00","2018-08-09T00:00:00","2018-08-10T00:00:00","2018-08-11T00:00:00","2018-08-12T00:00:00","2018-08-13T00:00:00","2018-08-14T00:00:00","2018-08-15T00:00:00","2018-08-16T00:00:00","2018-08-17T00:00:00","2018-08-18T00:00:00","2018-08-19T00:00:00","2018-08-20T00:00:00","2018-08-21T00:00:00","2018-08-22T00:00:00","2018-08-23T00:00:00","2018-08-24T00:00:00","2018-08-25T00:00:00","2018-08-26T00:00:00","2018-08-27T00:00:00","2018-08-28T00:00:00","2018-08-29T00:00:00","2018-08-30T00:00:00","2018-08-31T00:00:00","2018-09-01T00:00:00","2018-09-02T00:00:00","2018-09-03T00:00:00","2018-09-04T00:00:00","2018-09-05T00:00:00","2018-09-06T00:00:00","2018-09-07T00:00:00","2018-09-08T00:00:00","2018-09-09T00:00:00","2018-09-10T00:00:00","2018-09-11T00:00:00","2018-09-12T00:00:00","2018-09-13T00:00:00","2018-09-14T00:00:00","2018-09-15T00:00:00","2018-09-16T00:00:00","2018-09-17T00:00:00","2018-09-18T00:00:00","2018-09-19T00:00:00","2018-09-20T00:00:00","2018-09-21T00:00:00","2018-09-22T00:00:00","2018-09-23T00:00:00","2018-09-24T00:00:00","2018-09-25T00:00:00","2018-09-26T00:00:00","2018-09-27T00:00:00","2018-09-28T00:00:00","2018-09-29T00:00:00","2018-09-30T00:00:00","2018-10-01T00:00:00","2018-10-02T00:00:00","2018-10-03T00:00:00","2018-10-04T00:00:00","2018-10-05T00:00:00","2018-10-06T00:00:00","2018-10-07T00:00:00","2018-10-08T00:00:00","2018-10-09T00:00:00","2018-10-10T00:00:00","2018-10-11T00:00:00","2018-10-12T00:00:00","2018-10-13T00:00:00","2018-10-14T00:00:00","2018-10-15T00:00:00","2018-10-16T00:00:00","2018-10-17T00:00:00","2018-10-18T00:00:00","2018-10-19T00:00:00","2018-10-20T00:00:00","2018-10-21T00:00:00","2018-10-22T00:00:00","2018-10-23T00:00:00","2018-10-24T00:00:00","2018-10-25T00:00:00","2018-10-26T00:00:00","2018-10-27T00:00:00","2018-10-28T00:00:00","2018-10-29T00:00:00","2018-10-30T00:00:00","2018-10-31T00:00:00","2018-11-01T00:00:00","2018-11-02T00:00:00","2018-11-03T00:00:00","2018-11-04T00:00:00","2018-11-05T00:00:00","2018-11-06T00:00:00","2018-11-07T00:00:00","2018-11-08T00:00:00","2018-11-09T00:00:00","2018-11-10T00:00:00","2018-11-11T00:00:00","2018-11-12T00:00:00","2018-11-13T00:00:00","2018-11-14T00:00:00","2018-11-15T00:00:00","2018-11-16T00:00:00","2018-11-17T00:00:00","2018-11-18T00:00:00","2018-11-19T00:00:00","2018-11-20T00:00:00","2018-11-21T00:00:00","2018-11-22T00:00:00","2018-11-23T00:00:00","2018-11-24T00:00:00","2018-11-25T00:00:00","2018-11-26T00:00:00","2018-11-27T00:00:00","2018-11-28T00:00:00","2018-11-29T00:00:00","2018-11-30T00:00:00","2018-12-01T00:00:00","2018-12-02T00:00:00","2018-12-03T00:00:00","2018-12-04T00:00:00","2018-12-05T00:00:00","2018-12-06T00:00:00","2018-12-07T00:00:00","2018-12-08T00:00:00","2018-12-09T00:00:00","2018-12-10T00:00:00","2018-12-11T00:00:00","2018-12-12T00:00:00","2018-12-13T00:00:00","2018-12-14T00:00:00","2018-12-15T00:00:00","2018-12-16T00:00:00","2018-12-17T00:00:00","2018-12-18T00:00:00","2018-12-19T00:00:00","2018-12-20T00:00:00","2018-12-21T00:00:00","2018-12-22T00:00:00","2018-12-23T00:00:00","2018-12-24T00:00:00","2018-12-25T00:00:00","2018-12-26T00:00:00","2018-12-27T00:00:00","2018-12-28T00:00:00","2018-12-29T00:00:00","2018-12-30T00:00:00","2018-12-31T00:00:00","2019-01-01T00:00:00","2019-01-02T00:00:00","2019-01-03T00:00:00","2019-01-04T00:00:00","2019-01-05T00:00:00","2019-01-06T00:00:00","2019-01-07T00:00:00","2019-01-08T00:00:00","2019-01-09T00:00:00","2019-01-10T00:00:00","2019-01-11T00:00:00","2019-01-12T00:00:00","2019-01-13T00:00:00","2019-01-14T00:00:00","2019-01-15T00:00:00","2019-01-16T00:00:00","2019-01-17T00:00:00","2019-01-18T00:00:00","2019-01-19T00:00:00","2019-01-20T00:00:00","2019-01-21T00:00:00","2019-01-22T00:00:00","2019-01-23T00:00:00","2019-01-24T00:00:00","2019-01-25T00:00:00","2019-01-26T00:00:00","2019-01-27T00:00:00","2019-01-28T00:00:00","2019-01-29T00:00:00","2019-01-30T00:00:00","2019-01-31T00:00:00","2019-02-01T00:00:00","2019-02-02T00:00:00","2019-02-03T00:00:00","2019-02-04T00:00:00","2019-02-05T00:00:00","2019-02-06T00:00:00","2019-02-07T00:00:00","2019-02-08T00:00:00","2019-02-09T00:00:00","2019-02-10T00:00:00","2019-02-11T00:00:00","2019-02-12T00:00:00","2019-02-13T00:00:00","2019-02-14T00:00:00","2019-02-15T00:00:00","2019-02-16T00:00:00","2019-02-17T00:00:00","2019-02-18T00:00:00","2019-02-19T00:00:00","2019-02-20T00:00:00","2019-02-21T00:00:00","2019-02-22T00:00:00","2019-02-23T00:00:00","2019-02-24T00:00:00","2019-02-25T00:00:00","2019-02-26T00:00:00","2019-02-27T00:00:00","2019-02-28T00:00:00","2019-03-01T00:00:00","2019-03-02T00:00:00","2019-03-03T00:00:00","2019-03-04T00:00:00","2019-03-05T00:00:00","2019-03-06T00:00:00","2019-03-07T00:00:00","2019-03-08T00:00:00","2019-03-09T00:00:00","2019-03-10T00:00:00","2019-03-11T00:00:00","2019-03-12T00:00:00","2019-03-13T00:00:00","2019-03-14T00:00:00","2019-03-15T00:00:00","2019-03-16T00:00:00","2019-03-17T00:00:00","2019-03-18T00:00:00","2019-03-19T00:00:00","2019-03-20T00:00:00","2019-03-21T00:00:00","2019-03-22T00:00:00","2019-03-23T00:00:00","2019-03-24T00:00:00","2019-03-25T00:00:00","2019-03-26T00:00:00","2019-03-27T00:00:00","2019-03-28T00:00:00","2019-03-29T00:00:00","2019-03-30T00:00:00","2019-03-31T00:00:00","2019-04-01T00:00:00","2019-04-02T00:00:00","2019-04-03T00:00:00","2019-04-04T00:00:00","2019-04-05T00:00:00","2019-04-06T00:00:00","2019-04-07T00:00:00","2019-04-08T00:00:00","2019-04-09T00:00:00","2019-04-10T00:00:00","2019-04-11T00:00:00","2019-04-12T00:00:00","2019-04-13T00:00:00","2019-04-14T00:00:00","2019-04-15T00:00:00","2019-04-16T00:00:00","2019-04-17T00:00:00","2019-04-18T00:00:00","2019-04-19T00:00:00","2019-04-20T00:00:00","2019-04-21T00:00:00","2019-04-22T00:00:00","2019-04-23T00:00:00","2019-04-24T00:00:00","2019-04-25T00:00:00","2019-04-29T00:00:00","2019-04-30T00:00:00","2019-05-01T00:00:00","2019-05-02T00:00:00","2019-05-03T00:00:00","2019-05-04T00:00:00","2019-05-05T00:00:00","2019-05-06T00:00:00","2019-05-07T00:00:00","2019-05-08T00:00:00","2019-05-09T00:00:00","2019-05-10T00:00:00","2019-05-11T00:00:00","2019-05-12T00:00:00","2019-05-13T00:00:00","2019-05-14T00:00:00","2019-05-15T00:00:00","2019-05-16T00:00:00","2019-05-17T00:00:00","2019-05-18T00:00:00","2019-05-19T00:00:00","2019-05-20T00:00:00","2019-05-21T00:00:00","2019-05-22T00:00:00","2019-05-23T00:00:00","2019-05-24T00:00:00","2019-05-25T00:00:00","2019-05-26T00:00:00","2019-05-27T00:00:00","2019-05-28T00:00:00","2019-05-29T00:00:00","2019-05-30T00:00:00","2019-05-31T00:00:00","2019-06-01T00:00:00","2019-06-02T00:00:00","2019-06-03T00:00:00","2019-06-04T00:00:00","2019-06-05T00:00:00","2019-06-06T00:00:00","2019-06-07T00:00:00","2019-06-08T00:00:00","2019-06-10T00:00:00","2019-06-11T00:00:00","2019-06-12T00:00:00","2019-06-13T00:00:00","2019-06-14T00:00:00","2019-06-15T00:00:00","2019-06-16T00:00:00","2019-06-17T00:00:00","2019-06-18T00:00:00","2019-06-19T00:00:00","2019-06-20T00:00:00","2019-06-21T00:00:00","2019-06-22T00:00:00","2019-06-23T00:00:00","2019-06-24T00:00:00","2019-06-25T00:00:00","2019-06-26T00:00:00","2019-06-27T00:00:00","2019-06-28T00:00:00","2019-06-29T00:00:00","2019-06-30T00:00:00","2019-07-01T00:00:00","2019-07-02T00:00:00","2019-07-03T00:00:00","2019-07-04T00:00:00","2019-07-05T00:00:00","2019-07-06T00:00:00","2019-07-07T00:00:00","2019-07-08T00:00:00","2019-07-09T00:00:00","2019-07-10T00:00:00","2019-07-11T00:00:00","2019-07-12T00:00:00","2019-07-13T00:00:00","2019-07-14T00:00:00","2019-07-15T00:00:00","2019-07-16T00:00:00","2019-07-17T00:00:00","2019-07-18T00:00:00","2019-07-19T00:00:00","2019-07-20T00:00:00","2019-07-21T00:00:00","2019-07-22T00:00:00","2019-07-23T00:00:00","2019-07-24T00:00:00","2019-07-25T00:00:00","2019-07-26T00:00:00","2019-07-27T00:00:00","2019-07-28T00:00:00","2019-07-29T00:00:00","2019-07-30T00:00:00","2019-07-31T00:00:00","2019-08-01T00:00:00","2019-08-02T00:00:00","2019-08-03T00:00:00","2019-08-04T00:00:00","2019-08-05T00:00:00","2019-08-06T00:00:00","2019-08-07T00:00:00","2019-08-08T00:00:00","2019-08-09T00:00:00","2019-08-10T00:00:00","2019-08-11T00:00:00","2019-08-12T00:00:00","2019-08-13T00:00:00","2019-08-14T00:00:00","2019-08-15T00:00:00","2019-08-16T00:00:00","2019-08-17T00:00:00","2019-08-18T00:00:00","2019-08-19T00:00:00","2019-08-20T00:00:00","2019-08-21T00:00:00","2019-08-22T00:00:00","2019-08-23T00:00:00","2019-08-24T00:00:00","2019-08-25T00:00:00","2019-08-26T00:00:00","2019-08-27T00:00:00","2019-08-28T00:00:00","2019-08-29T00:00:00","2019-08-30T00:00:00","2019-08-31T00:00:00","2019-09-01T00:00:00","2019-09-02T00:00:00","2019-09-03T00:00:00","2019-09-04T00:00:00","2019-09-05T00:00:00","2019-09-06T00:00:00","2019-09-07T00:00:00","2019-09-08T00:00:00","2019-09-09T00:00:00","2019-09-10T00:00:00","2019-09-11T00:00:00","2019-09-12T00:00:00","2019-09-13T00:00:00","2019-09-14T00:00:00","2019-09-15T00:00:00","2019-09-16T00:00:00","2019-09-17T00:00:00","2019-09-18T00:00:00","2019-09-19T00:00:00","2019-09-20T00:00:00","2019-09-21T00:00:00","2019-09-23T00:00:00","2019-09-24T00:00:00","2019-09-25T00:00:00","2019-09-26T00:00:00","2019-09-27T00:00:00","2019-09-28T00:00:00","2019-09-29T00:00:00","2019-09-30T00:00:00","2019-10-01T00:00:00","2019-10-02T00:00:00","2019-10-03T00:00:00","2019-10-04T00:00:00","2019-10-05T00:00:00","2019-10-06T00:00:00","2019-10-07T00:00:00","2019-10-08T00:00:00","2019-10-09T00:00:00","2019-10-10T00:00:00","2019-10-11T00:00:00","2019-10-12T00:00:00","2019-10-13T00:00:00","2019-10-14T00:00:00","2019-10-15T00:00:00","2019-10-16T00:00:00","2019-10-17T00:00:00","2019-10-18T00:00:00","2019-10-19T00:00:00","2019-10-20T00:00:00","2019-10-21T00:00:00","2019-10-22T00:00:00","2019-10-23T00:00:00","2019-10-24T00:00:00","2019-10-25T00:00:00","2019-10-26T00:00:00","2019-10-27T00:00:00","2019-10-28T00:00:00","2019-10-29T00:00:00","2019-10-30T00:00:00","2019-10-31T00:00:00","2019-11-01T00:00:00","2019-11-02T00:00:00","2019-11-03T00:00:00","2019-11-04T00:00:00","2019-11-05T00:00:00","2019-11-06T00:00:00","2019-11-07T00:00:00","2019-11-08T00:00:00","2019-11-09T00:00:00","2019-11-10T00:00:00","2019-11-11T00:00:00","2019-11-12T00:00:00","2019-11-13T00:00:00","2019-11-14T00:00:00","2019-11-15T00:00:00","2019-11-16T00:00:00","2019-11-17T00:00:00","2019-11-18T00:00:00","2019-11-19T00:00:00","2019-11-20T00:00:00","2019-11-21T00:00:00","2019-11-22T00:00:00","2019-11-23T00:00:00","2019-11-24T00:00:00","2019-11-25T00:00:00","2019-11-26T00:00:00","2019-11-27T00:00:00","2019-11-28T00:00:00","2019-11-29T00:00:00","2019-11-30T00:00:00","2019-12-01T00:00:00","2019-12-02T00:00:00","2019-12-03T00:00:00","2019-12-04T00:00:00","2019-12-05T00:00:00","2019-12-06T00:00:00","2019-12-07T00:00:00","2019-12-08T00:00:00","2019-12-09T00:00:00","2019-12-10T00:00:00","2019-12-11T00:00:00","2019-12-12T00:00:00","2019-12-13T00:00:00","2019-12-14T00:00:00","2019-12-15T00:00:00","2019-12-16T00:00:00","2019-12-17T00:00:00","2019-12-18T00:00:00","2019-12-19T00:00:00","2019-12-20T00:00:00","2019-12-21T00:00:00","2019-12-22T00:00:00","2019-12-23T00:00:00","2019-12-24T00:00:00","2019-12-25T00:00:00","2019-12-26T00:00:00","2019-12-27T00:00:00","2019-12-28T00:00:00","2019-12-29T00:00:00","2019-12-30T00:00:00","2019-12-31T00:00:00","2020-01-01T00:00:00","2020-01-02T00:00:00","2020-01-03T00:00:00","2020-01-04T00:00:00","2020-01-05T00:00:00","2020-01-06T00:00:00","2020-01-07T00:00:00","2020-01-08T00:00:00","2020-01-09T00:00:00","2020-01-10T00:00:00","2020-01-11T00:00:00","2020-01-12T00:00:00","2020-01-13T00:00:00","2020-01-14T00:00:00","2020-01-15T00:00:00","2020-01-16T00:00:00","2020-01-17T00:00:00","2020-01-18T00:00:00","2020-01-19T00:00:00","2020-01-20T00:00:00","2020-01-21T00:00:00","2020-01-22T00:00:00","2020-01-23T00:00:00","2020-01-24T00:00:00","2020-01-25T00:00:00","2020-01-26T00:00:00","2020-01-27T00:00:00","2020-01-28T00:00:00","2020-01-29T00:00:00","2020-01-30T00:00:00","2020-01-31T00:00:00","2020-02-01T00:00:00","2020-02-02T00:00:00","2020-02-03T00:00:00","2020-02-04T00:00:00","2020-02-05T00:00:00","2020-02-06T00:00:00","2020-02-07T00:00:00","2020-02-08T00:00:00","2020-02-09T00:00:00","2020-02-10T00:00:00","2020-02-11T00:00:00","2020-02-12T00:00:00","2020-02-13T00:00:00","2020-02-14T00:00:00","2020-02-15T00:00:00","2020-02-16T00:00:00","2020-02-17T00:00:00","2020-02-18T00:00:00","2020-02-19T00:00:00","2020-02-20T00:00:00","2020-02-21T00:00:00","2020-02-22T00:00:00","2020-02-23T00:00:00","2020-02-24T00:00:00","2020-02-25T00:00:00","2020-02-26T00:00:00","2020-02-27T00:00:00","2020-02-28T00:00:00","2020-02-29T00:00:00","2020-03-01T00:00:00","2020-03-02T00:00:00","2020-03-03T00:00:00","2020-03-04T00:00:00","2020-03-05T00:00:00","2020-03-06T00:00:00","2020-03-07T00:00:00","2020-03-08T00:00:00","2020-03-09T00:00:00","2020-03-10T00:00:00","2020-03-11T00:00:00","2020-03-12T00:00:00","2020-03-13T00:00:00","2020-03-14T00:00:00","2020-03-15T00:00:00","2020-03-16T00:00:00","2020-03-17T00:00:00","2020-03-18T00:00:00","2020-03-19T00:00:00","2020-03-20T00:00:00","2020-03-21T00:00:00","2020-03-22T00:00:00","2020-03-23T00:00:00","2020-03-24T00:00:00","2020-03-25T00:00:00","2020-03-26T00:00:00","2020-03-27T00:00:00","2020-03-28T00:00:00","2020-03-29T00:00:00","2020-03-30T00:00:00","2020-03-31T00:00:00","2020-04-01T00:00:00","2020-04-02T00:00:00","2020-04-03T00:00:00","2020-04-04T00:00:00","2020-04-05T00:00:00","2020-04-06T00:00:00","2020-04-07T00:00:00","2020-04-08T00:00:00","2020-04-09T00:00:00","2020-04-10T00:00:00","2020-04-11T00:00:00","2020-04-12T00:00:00","2020-04-13T00:00:00","2020-04-14T00:00:00","2020-04-15T00:00:00","2020-04-16T00:00:00","2020-04-17T00:00:00","2020-04-18T00:00:00","2020-04-19T00:00:00","2020-04-20T00:00:00","2020-04-21T00:00:00","2020-04-22T00:00:00","2020-04-23T00:00:00","2020-04-24T00:00:00","2020-04-25T00:00:00","2020-04-26T00:00:00","2020-04-27T00:00:00","2020-04-28T00:00:00","2020-04-29T00:00:00","2020-04-30T00:00:00","2020-05-01T00:00:00","2020-05-02T00:00:00","2020-05-03T00:00:00","2020-05-04T00:00:00","2020-05-05T00:00:00","2020-05-06T00:00:00","2020-05-07T00:00:00","2020-05-08T00:00:00","2020-05-09T00:00:00","2020-05-10T00:00:00","2020-05-11T00:00:00","2020-05-12T00:00:00","2020-05-13T00:00:00","2020-05-14T00:00:00","2020-05-15T00:00:00","2020-05-16T00:00:00","2020-05-17T00:00:00","2020-05-18T00:00:00","2020-05-19T00:00:00","2020-05-20T00:00:00","2020-05-21T00:00:00","2020-05-22T00:00:00","2020-05-23T00:00:00","2020-05-24T00:00:00","2020-05-25T00:00:00","2020-05-26T00:00:00","2020-05-27T00:00:00","2020-05-28T00:00:00","2020-05-29T00:00:00","2020-05-30T00:00:00","2020-05-31T00:00:00","2020-06-01T00:00:00","2020-06-02T00:00:00","2020-06-03T00:00:00","2020-06-04T00:00:00","2020-06-05T00:00:00","2020-06-06T00:00:00","2020-06-07T00:00:00","2020-06-08T00:00:00","2020-06-09T00:00:00","2020-06-10T00:00:00","2020-06-11T00:00:00","2020-06-12T00:00:00","2020-06-13T00:00:00","2020-06-14T00:00:00","2020-06-15T00:00:00","2020-06-16T00:00:00","2020-06-17T00:00:00","2020-06-18T00:00:00","2020-06-19T00:00:00","2020-06-20T00:00:00","2020-06-21T00:00:00","2020-06-22T00:00:00","2020-06-23T00:00:00","2020-06-24T00:00:00","2020-06-25T00:00:00","2020-06-26T00:00:00","2020-06-27T00:00:00","2020-06-28T00:00:00","2020-06-29T00:00:00","2020-06-30T00:00:00","2020-07-01T00:00:00","2020-07-02T00:00:00","2020-07-03T00:00:00","2020-07-04T00:00:00","2020-07-05T00:00:00","2020-07-06T00:00:00","2020-07-07T00:00:00","2020-07-08T00:00:00","2020-07-09T00:00:00","2020-07-10T00:00:00","2020-07-11T00:00:00","2020-07-12T00:00:00","2020-07-13T00:00:00","2020-07-14T00:00:00","2020-07-15T00:00:00","2020-07-16T00:00:00","2020-07-17T00:00:00","2020-07-18T00:00:00","2020-07-19T00:00:00","2020-07-20T00:00:00","2020-07-21T00:00:00","2020-07-22T00:00:00","2020-07-23T00:00:00","2020-07-24T00:00:00","2020-07-25T00:00:00","2020-07-26T00:00:00","2020-07-27T00:00:00","2020-07-28T00:00:00","2020-07-29T00:00:00","2020-07-30T00:00:00","2020-07-31T00:00:00","2020-08-01T00:00:00","2020-08-02T00:00:00","2020-08-03T00:00:00","2020-08-04T00:00:00","2020-08-05T00:00:00","2020-08-06T00:00:00","2020-08-07T00:00:00","2020-08-08T00:00:00","2020-08-09T00:00:00","2020-08-10T00:00:00","2020-08-11T00:00:00","2020-08-12T00:00:00","2020-08-13T00:00:00","2020-08-14T00:00:00","2020-08-15T00:00:00","2020-08-16T00:00:00","2020-08-17T00:00:00","2020-08-18T00:00:00","2020-08-19T00:00:00","2020-08-20T00:00:00","2020-08-21T00:00:00","2020-08-22T00:00:00","2020-08-23T00:00:00","2020-08-24T00:00:00","2020-08-25T00:00:00","2020-08-26T00:00:00","2020-08-27T00:00:00","2020-08-28T00:00:00","2020-08-29T00:00:00","2020-08-30T00:00:00","2020-08-31T00:00:00","2020-09-01T00:00:00","2020-09-02T00:00:00","2020-09-03T00:00:00","2020-09-04T00:00:00","2020-09-05T00:00:00","2020-09-06T00:00:00","2020-09-07T00:00:00","2020-09-08T00:00:00","2020-09-09T00:00:00","2020-09-10T00:00:00","2020-09-11T00:00:00","2020-09-12T00:00:00","2020-09-13T00:00:00","2020-09-14T00:00:00","2020-09-15T00:00:00","2020-09-16T00:00:00","2020-09-17T00:00:00","2020-09-18T00:00:00","2020-09-19T00:00:00","2020-09-20T00:00:00","2020-09-21T00:00:00","2020-09-22T00:00:00","2020-09-23T00:00:00","2020-09-24T00:00:00","2020-09-25T00:00:00","2020-09-26T00:00:00","2020-09-27T00:00:00","2020-09-28T00:00:00","2020-09-29T00:00:00","2020-09-30T00:00:00","2020-10-01T00:00:00","2020-10-02T00:00:00","2020-10-03T00:00:00","2020-10-04T00:00:00","2020-10-05T00:00:00","2020-10-06T00:00:00","2020-10-07T00:00:00","2020-10-08T00:00:00","2020-10-09T00:00:00","2020-10-10T00:00:00","2020-10-11T00:00:00","2020-10-12T00:00:00","2020-10-13T00:00:00","2020-10-14T00:00:00","2020-10-15T00:00:00","2020-10-16T00:00:00","2020-10-17T00:00:00","2020-10-18T00:00:00","2020-10-19T00:00:00","2020-10-20T00:00:00","2020-10-21T00:00:00","2020-10-22T00:00:00","2020-10-23T00:00:00","2020-10-24T00:00:00","2020-10-25T00:00:00","2020-10-26T00:00:00","2020-10-27T00:00:00","2020-10-28T00:00:00","2020-10-29T00:00:00","2020-10-30T00:00:00","2020-10-31T00:00:00","2020-11-01T00:00:00","2020-11-02T00:00:00","2020-11-03T00:00:00","2020-11-04T00:00:00","2020-11-05T00:00:00","2020-11-06T00:00:00","2020-11-07T00:00:00","2020-11-08T00:00:00","2020-11-09T00:00:00","2020-11-10T00:00:00","2020-11-11T00:00:00","2020-11-12T00:00:00","2020-11-13T00:00:00","2020-11-14T00:00:00","2020-11-15T00:00:00","2020-11-16T00:00:00","2020-11-17T00:00:00","2020-11-18T00:00:00","2020-11-19T00:00:00","2020-11-20T00:00:00","2020-11-21T00:00:00","2020-11-22T00:00:00","2020-11-23T00:00:00","2020-11-24T00:00:00","2020-11-25T00:00:00","2020-11-26T00:00:00","2020-11-27T00:00:00","2020-11-28T00:00:00","2020-11-29T00:00:00","2020-11-30T00:00:00","2020-12-01T00:00:00","2020-12-02T00:00:00","2020-12-03T00:00:00","2020-12-04T00:00:00","2020-12-05T00:00:00","2020-12-06T00:00:00","2020-12-07T00:00:00","2020-12-08T00:00:00","2020-12-09T00:00:00","2020-12-10T00:00:00","2020-12-11T00:00:00","2020-12-12T00:00:00","2020-12-13T00:00:00","2020-12-14T00:00:00","2020-12-15T00:00:00","2020-12-16T00:00:00","2020-12-17T00:00:00","2020-12-18T00:00:00","2020-12-19T00:00:00","2020-12-20T00:00:00","2020-12-21T00:00:00","2020-12-22T00:00:00","2020-12-23T00:00:00","2020-12-24T00:00:00","2020-12-25T00:00:00","2020-12-26T00:00:00","2020-12-27T00:00:00","2020-12-28T00:00:00","2020-12-29T00:00:00","2020-12-30T00:00:00","2020-12-31T00:00:00","2021-01-01T00:00:00","2021-01-02T00:00:00","2021-01-03T00:00:00","2021-01-04T00:00:00","2021-01-05T00:00:00","2021-01-06T00:00:00","2021-01-07T00:00:00","2021-01-08T00:00:00","2021-01-09T00:00:00","2021-01-10T00:00:00","2021-01-11T00:00:00","2021-01-12T00:00:00","2021-01-13T00:00:00","2021-01-14T00:00:00","2021-01-15T00:00:00","2021-01-16T00:00:00","2021-01-17T00:00:00","2021-01-18T00:00:00","2021-01-19T00:00:00","2021-01-20T00:00:00","2021-01-21T00:00:00","2021-01-22T00:00:00","2021-01-23T00:00:00","2021-01-24T00:00:00","2021-01-25T00:00:00","2021-01-26T00:00:00","2021-01-27T00:00:00","2021-01-28T00:00:00","2021-01-29T00:00:00","2021-01-30T00:00:00","2021-01-31T00:00:00","2021-02-01T00:00:00","2021-02-02T00:00:00","2021-02-03T00:00:00","2021-02-04T00:00:00","2021-02-05T00:00:00","2021-02-06T00:00:00","2021-02-07T00:00:00","2021-02-08T00:00:00","2021-02-09T00:00:00","2021-02-10T00:00:00","2021-02-11T00:00:00","2021-02-12T00:00:00","2021-02-13T00:00:00","2021-02-14T00:00:00","2021-02-15T00:00:00","2021-02-16T00:00:00","2021-02-17T00:00:00","2021-02-18T00:00:00","2021-02-19T00:00:00","2021-02-20T00:00:00","2021-02-21T00:00:00","2021-02-22T00:00:00","2021-02-23T00:00:00","2021-02-24T00:00:00","2021-02-25T00:00:00","2021-02-26T00:00:00","2021-02-27T00:00:00","2021-02-28T00:00:00","2021-03-01T00:00:00","2021-03-02T00:00:00","2021-03-03T00:00:00","2021-03-04T00:00:00","2021-03-05T00:00:00","2021-03-06T00:00:00","2021-03-07T00:00:00","2021-03-08T00:00:00","2021-03-09T00:00:00","2021-03-10T00:00:00","2021-03-11T00:00:00","2021-03-12T00:00:00","2021-03-13T00:00:00","2021-03-14T00:00:00","2021-03-15T00:00:00","2021-03-16T00:00:00","2021-03-17T00:00:00","2021-03-18T00:00:00","2021-03-19T00:00:00","2021-03-20T00:00:00","2021-03-21T00:00:00","2021-03-22T00:00:00","2021-03-23T00:00:00","2021-03-24T00:00:00","2021-03-25T00:00:00","2021-03-26T00:00:00","2021-03-27T00:00:00","2021-03-28T00:00:00","2021-03-29T00:00:00","2021-03-30T00:00:00","2021-03-31T00:00:00","2021-04-01T00:00:00","2021-04-02T00:00:00","2021-04-03T00:00:00","2021-04-04T00:00:00","2021-04-05T00:00:00","2021-04-06T00:00:00","2021-04-07T00:00:00","2021-04-08T00:00:00","2021-04-09T00:00:00","2021-04-10T00:00:00","2021-04-11T00:00:00","2021-04-12T00:00:00","2021-04-13T00:00:00","2021-04-14T00:00:00","2021-04-15T00:00:00","2021-04-16T00:00:00","2021-04-17T00:00:00","2021-04-18T00:00:00","2021-04-19T00:00:00","2021-04-20T00:00:00","2021-04-21T00:00:00","2021-04-22T00:00:00","2021-04-23T00:00:00","2021-04-24T00:00:00","2021-04-25T00:00:00","2021-04-26T00:00:00","2021-04-27T00:00:00","2021-04-28T00:00:00","2021-04-29T00:00:00","2021-04-30T00:00:00","2021-05-01T00:00:00","2021-05-02T00:00:00","2021-05-03T00:00:00","2021-05-04T00:00:00","2021-05-05T00:00:00","2021-05-06T00:00:00","2021-05-07T00:00:00","2021-05-08T00:00:00","2021-05-09T00:00:00","2021-05-10T00:00:00","2021-05-11T00:00:00","2021-05-12T00:00:00","2021-05-13T00:00:00","2021-05-14T00:00:00","2021-05-15T00:00:00","2021-05-16T00:00:00","2021-05-17T00:00:00","2021-05-18T00:00:00","2021-05-19T00:00:00","2021-05-20T00:00:00","2021-05-21T00:00:00","2021-05-22T00:00:00","2021-05-23T00:00:00","2021-05-24T00:00:00","2021-05-25T00:00:00","2021-05-26T00:00:00","2021-05-27T00:00:00","2021-05-28T00:00:00","2021-05-29T00:00:00","2021-05-30T00:00:00","2021-05-31T00:00:00","2021-06-01T00:00:00","2021-06-02T00:00:00","2021-06-03T00:00:00","2021-06-04T00:00:00","2021-06-05T00:00:00","2021-06-06T00:00:00","2021-06-07T00:00:00","2021-06-08T00:00:00","2021-06-09T00:00:00","2021-06-10T00:00:00","2021-06-11T00:00:00","2021-06-12T00:00:00","2021-06-13T00:00:00","2021-06-14T00:00:00","2021-06-15T00:00:00","2021-06-16T00:00:00","2021-06-17T00:00:00","2021-06-18T00:00:00","2021-06-19T00:00:00","2021-06-20T00:00:00","2021-06-21T00:00:00","2021-06-22T00:00:00","2021-06-23T00:00:00","2021-06-24T00:00:00","2021-06-25T00:00:00","2021-06-26T00:00:00","2021-06-27T00:00:00","2021-06-28T00:00:00","2021-06-29T00:00:00","2021-06-30T00:00:00","2021-07-01T00:00:00","2021-07-02T00:00:00","2021-07-03T00:00:00","2021-07-04T00:00:00","2021-07-05T00:00:00","2021-07-06T00:00:00","2021-07-07T00:00:00","2021-07-08T00:00:00","2021-07-09T00:00:00","2021-07-10T00:00:00","2021-07-11T00:00:00","2021-07-12T00:00:00","2021-07-13T00:00:00","2021-07-14T00:00:00","2021-07-15T00:00:00","2021-07-16T00:00:00","2021-07-17T00:00:00","2021-07-18T00:00:00","2021-07-19T00:00:00","2021-07-20T00:00:00","2021-07-21T00:00:00","2021-07-22T00:00:00","2021-07-23T00:00:00","2021-07-24T00:00:00","2021-07-25T00:00:00","2021-07-26T00:00:00","2021-07-27T00:00:00","2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-30T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-12T00:00:00","2021-08-13T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-17T00:00:00","2021-08-18T00:00:00","2021-08-19T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-22T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-25T00:00:00","2021-08-26T00:00:00","2021-08-27T00:00:00","2021-08-28T00:00:00","2021-08-29T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-06T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-10T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-13T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-18T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-24T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-05T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-08T00:00:00","2021-10-09T00:00:00","2021-10-10T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-14T00:00:00","2021-10-15T00:00:00","2021-10-16T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-19T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-24T00:00:00","2021-10-25T00:00:00","2021-10-26T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-10-31T00:00:00","2021-11-01T00:00:00","2021-11-02T00:00:00","2021-11-03T00:00:00","2021-11-04T00:00:00","2021-11-05T00:00:00","2021-11-06T00:00:00","2021-11-07T00:00:00","2021-11-08T00:00:00","2021-11-09T00:00:00","2021-11-10T00:00:00","2021-11-11T00:00:00","2021-11-12T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-15T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-21T00:00:00","2021-11-22T00:00:00","2021-11-23T00:00:00","2021-11-24T00:00:00","2021-11-25T00:00:00","2021-11-26T00:00:00","2021-11-27T00:00:00","2021-11-28T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-03T00:00:00","2021-12-04T00:00:00","2021-12-05T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-12T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-21T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-25T00:00:00","2021-12-26T00:00:00","2021-12-27T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2021-12-30T00:00:00","2021-12-31T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-09T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-13T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-17T00:00:00","2022-01-18T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-01-31T00:00:00","2022-02-01T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-05T00:00:00","2022-02-06T00:00:00","2022-02-07T00:00:00","2022-02-08T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-17T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-02-28T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-13T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-16T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-23T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-04T00:00:00","2022-04-05T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-20T00:00:00","2022-04-21T00:00:00","2022-04-22T00:00:00","2022-04-23T00:00:00","2022-04-24T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-04-29T00:00:00","2022-05-01T00:00:00","2022-05-02T00:00:00","2022-05-03T00:00:00","2022-05-04T00:00:00","2022-05-05T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-09T00:00:00","2022-05-11T00:00:00","2022-05-12T00:00:00","2022-05-15T00:00:00","2022-05-16T00:00:00","2022-05-17T00:00:00","2022-05-18T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-23T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-26T00:00:00","2022-05-27T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-30T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-04T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-08T00:00:00","2022-06-09T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-12T00:00:00","2022-06-13T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-17T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-20T00:00:00","2022-06-21T00:00:00","2022-06-22T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-27T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-02T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-06T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-11T00:00:00","2022-07-14T00:00:00","2022-07-15T00:00:00","2022-07-16T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-22T00:00:00","2022-07-23T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-28T00:00:00","2022-07-29T00:00:00","2022-07-30T00:00:00","2022-07-31T00:00:00","2022-08-01T00:00:00","2022-08-02T00:00:00","2022-08-03T00:00:00","2022-08-04T00:00:00","2022-08-05T00:00:00","2022-08-06T00:00:00","2022-08-07T00:00:00","2022-08-08T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-11T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-03T00:00:00","2022-09-04T00:00:00","2022-09-05T00:00:00","2022-09-06T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-10T00:00:00","2022-09-11T00:00:00","2022-09-12T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-20T00:00:00","2022-09-21T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-09-29T00:00:00","2022-09-30T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-04T00:00:00","2022-10-05T00:00:00","2022-10-06T00:00:00","2022-10-07T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-11T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-16T00:00:00","2022-10-17T00:00:00","2022-10-18T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-22T00:00:00","2022-10-24T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-28T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-10-31T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-09T00:00:00","2022-11-10T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-13T00:00:00","2022-11-14T00:00:00","2022-11-15T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-06T00:00:00","2022-12-07T00:00:00","2022-12-08T00:00:00","2022-12-09T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-13T00:00:00","2022-12-14T00:00:00","2022-12-15T00:00:00","2022-12-16T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-21T00:00:00","2022-12-22T00:00:00","2022-12-23T00:00:00","2022-12-26T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-30T00:00:00","2022-12-31T00:00:00","2023-01-01T00:00:00","2023-01-02T00:00:00","2023-01-03T00:00:00","2023-01-05T00:00:00","2023-01-06T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-11T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-14T00:00:00","2023-01-15T00:00:00","2023-01-16T00:00:00","2023-01-17T00:00:00","2023-01-18T00:00:00","2023-01-19T00:00:00","2023-01-20T00:00:00","2023-01-21T00:00:00","2023-01-22T00:00:00","2023-01-23T00:00:00","2023-01-24T00:00:00","2023-01-25T00:00:00","2023-01-26T00:00:00","2023-01-27T00:00:00","2023-01-29T00:00:00","2023-01-30T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-02T00:00:00","2023-02-03T00:00:00","2023-02-04T00:00:00","2023-02-05T00:00:00","2023-02-06T00:00:00","2023-02-07T00:00:00","2023-02-08T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-18T00:00:00","2023-02-19T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-23T00:00:00","2023-02-24T00:00:00","2023-02-25T00:00:00","2023-02-26T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-03T00:00:00","2023-03-04T00:00:00","2023-03-05T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-10T00:00:00","2023-03-11T00:00:00","2023-03-12T00:00:00","2023-03-13T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-17T00:00:00","2023-03-18T00:00:00","2023-03-19T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-28T00:00:00","2023-03-29T00:00:00","2023-03-30T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-02T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-06T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-09T00:00:00","2023-04-10T00:00:00","2023-04-11T00:00:00","2023-04-12T00:00:00","2023-04-13T00:00:00","2023-04-15T00:00:00","2023-04-16T00:00:00","2023-04-17T00:00:00","2023-04-18T00:00:00","2023-04-19T00:00:00","2023-04-20T00:00:00","2023-04-21T00:00:00","2023-04-22T00:00:00","2023-04-23T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-27T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-01T00:00:00","2023-05-02T00:00:00","2023-05-03T00:00:00","2023-05-04T00:00:00","2023-05-05T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-10T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-15T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-19T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-25T00:00:00","2023-05-26T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-29T00:00:00","2023-05-31T00:00:00","2023-06-01T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-07T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-10T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-14T00:00:00","2023-06-15T00:00:00","2023-06-16T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-22T00:00:00","2023-06-23T00:00:00","2023-06-24T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-27T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-01T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-08T00:00:00","2023-07-09T00:00:00","2023-07-10T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-13T00:00:00","2023-07-14T00:00:00","2023-07-15T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-18T00:00:00","2023-07-19T00:00:00","2023-07-20T00:00:00","2023-07-21T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-24T00:00:00","2023-07-25T00:00:00","2023-07-26T00:00:00","2023-07-27T00:00:00","2023-07-28T00:00:00","2023-07-29T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-04T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-07T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-12T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-15T00:00:00","2023-08-16T00:00:00","2023-08-17T00:00:00","2023-08-18T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-21T00:00:00","2023-08-22T00:00:00","2023-08-23T00:00:00","2023-08-24T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-28T00:00:00","2023-08-29T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-01T00:00:00","2023-09-02T00:00:00","2023-09-03T00:00:00","2023-09-04T00:00:00","2023-09-05T00:00:00","2023-09-06T00:00:00","2023-09-07T00:00:00","2023-09-08T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-12T00:00:00","2023-09-13T00:00:00","2023-09-14T00:00:00","2023-09-15T00:00:00","2023-09-16T00:00:00","2023-09-17T00:00:00","2023-09-18T00:00:00","2023-09-19T00:00:00","2023-09-20T00:00:00","2023-09-21T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-09-27T00:00:00","2023-09-29T00:00:00","2023-09-30T00:00:00","2023-10-01T00:00:00","2023-10-02T00:00:00","2023-10-03T00:00:00","2023-10-04T00:00:00","2023-10-05T00:00:00","2023-10-06T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-09T00:00:00","2023-10-10T00:00:00","2023-10-11T00:00:00","2023-10-12T00:00:00","2023-10-13T00:00:00","2023-10-14T00:00:00","2023-10-15T00:00:00","2023-10-16T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-19T00:00:00","2023-10-20T00:00:00","2023-10-21T00:00:00","2023-10-22T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-25T00:00:00","2023-10-26T00:00:00","2023-10-27T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-02T00:00:00","2023-11-03T00:00:00","2023-11-04T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-09T00:00:00","2023-11-10T00:00:00","2023-11-11T00:00:00","2023-11-12T00:00:00","2023-11-13T00:00:00","2023-11-14T00:00:00","2023-11-16T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-19T00:00:00","2023-11-20T00:00:00","2023-11-21T00:00:00","2023-11-22T00:00:00","2023-11-23T00:00:00","2023-11-24T00:00:00","2023-11-25T00:00:00","2023-11-26T00:00:00","2023-11-27T00:00:00","2023-11-28T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-01T00:00:00","2023-12-02T00:00:00","2023-12-03T00:00:00","2023-12-04T00:00:00","2023-12-05T00:00:00","2023-12-07T00:00:00","2023-12-08T00:00:00","2023-12-09T00:00:00","2023-12-10T00:00:00","2023-12-11T00:00:00","2023-12-12T00:00:00","2023-12-13T00:00:00","2023-12-14T00:00:00","2023-12-15T00:00:00","2023-12-16T00:00:00","2023-12-17T00:00:00","2023-12-18T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-22T00:00:00","2023-12-23T00:00:00","2023-12-24T00:00:00","2023-12-26T00:00:00","2023-12-27T00:00:00","2023-12-28T00:00:00","2023-12-29T00:00:00","2023-12-30T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-03T00:00:00","2024-01-05T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-08T00:00:00","2024-01-09T00:00:00","2024-01-11T00:00:00","2024-01-12T00:00:00","2024-01-13T00:00:00","2024-01-14T00:00:00","2024-01-15T00:00:00","2024-01-16T00:00:00","2024-01-17T00:00:00","2024-01-18T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-24T00:00:00","2024-01-25T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-01-31T00:00:00","2024-02-01T00:00:00","2024-02-02T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-05T00:00:00","2024-02-06T00:00:00","2024-02-07T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-10T00:00:00","2024-02-11T00:00:00","2024-02-13T00:00:00","2024-02-14T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-17T00:00:00","2024-02-18T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-22T00:00:00","2024-02-23T00:00:00","2024-02-24T00:00:00","2024-02-25T00:00:00","2024-02-26T00:00:00","2024-02-27T00:00:00","2024-02-28T00:00:00","2024-02-29T00:00:00","2024-03-01T00:00:00","2024-03-02T00:00:00","2024-03-03T00:00:00","2024-03-04T00:00:00","2024-03-05T00:00:00","2024-03-07T00:00:00","2024-03-08T00:00:00","2024-03-09T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-13T00:00:00","2024-03-14T00:00:00","2024-03-15T00:00:00","2024-03-16T00:00:00","2024-03-17T00:00:00","2024-03-19T00:00:00","2024-03-20T00:00:00","2024-03-21T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-24T00:00:00","2024-03-25T00:00:00","2024-03-26T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-03-31T00:00:00","2024-04-01T00:00:00","2024-04-02T00:00:00","2024-04-03T00:00:00","2024-04-04T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-09T00:00:00","2024-04-10T00:00:00","2024-04-11T00:00:00","2024-04-12T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-22T00:00:00","2024-04-23T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-01T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-14T00:00:00","2024-05-15T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-18T00:00:00","2024-05-19T00:00:00","2024-05-20T00:00:00","2024-05-21T00:00:00","2024-05-22T00:00:00","2024-05-23T00:00:00","2024-05-24T00:00:00","2024-05-26T00:00:00","2024-05-28T00:00:00","2024-05-29T00:00:00","2024-05-30T00:00:00","2024-05-31T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-04T00:00:00","2024-06-05T00:00:00","2024-06-06T00:00:00","2024-06-07T00:00:00","2024-06-08T00:00:00","2024-06-09T00:00:00","2024-06-10T00:00:00","2024-06-11T00:00:00","2024-06-12T00:00:00","2024-06-13T00:00:00","2024-06-14T00:00:00","2024-06-15T00:00:00","2024-06-16T00:00:00","2024-06-17T00:00:00","2024-06-19T00:00:00","2024-06-21T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-26T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-06-29T00:00:00","2024-06-30T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-03T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-08T00:00:00","2024-07-09T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-18T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-21T00:00:00","2024-07-22T00:00:00","2024-07-23T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-28T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-07-31T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-04T00:00:00","2024-08-05T00:00:00","2024-08-06T00:00:00","2024-08-07T00:00:00","2024-08-08T00:00:00","2024-08-09T00:00:00","2024-08-10T00:00:00","2024-08-11T00:00:00","2024-08-12T00:00:00","2024-08-13T00:00:00","2024-08-14T00:00:00","2024-08-15T00:00:00","2024-08-16T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-23T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-27T00:00:00","2024-08-28T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[14,24,35,60,85,90,105,110,113,128,136,143,168,179,184,193,194,215,227,228,234,240,265,271,282,298,313,318,327,328,339,355,344,334,334,332,350,372,362,364,378,403,468,537,605,659,712,714,765,785,812,858,900,981,1010,1007,1052,1129,1144,1147,1149,1161,1181,1257,1296,1290,1309,1364,1367,1359,1311,1281,1265,1276,1239,1170,1169,1128,1136,1140,1138,1107,1059,1026,1044,1044,1008,996,1030,1035,1045,1059,1015,1032,1064,1055,1035,1039,1082,1181,1176,1188,1150,1147,1175,1194,1236,1259,1302,1319,1324,1344,1400,1433,1416,1441,1509,1496,1504,1526,1530,1567,1525,1552,1549,1533,1542,1563,1535,1538,1519,1535,1534,1559,1571,1533,1528,1484,1424,1448,1418,1413,1457,1448,1414,1382,1399,1402,1371,1397,1368,1405,1361,1341,1355,1363,1319,1304,1347,1340,1320,1386,1394,1392,1436,1455,1482,1505,1512,1582,1612,1582,1586,1610,1580,1557,1568,1601,1569,1588,1568,1572,1627,1658,1689,1694,1647,1562,1528,1499,1447,1464,1461,1478,1489,1498,1529,1575,1582,1584,1599,1662,1669,1728,1821,1858,1879,1936,1952,2000,2067,2114,2137,2176,2231,2301,2365,2429,2517,2609,2615,2654,2677,2695,2733,2758,2733,2698,2683,2664,2637,2929,2995,2979,3013,3025,3039,3046,3024,3016,3054,3046,3063,3056,3062,3097,3115,3105,3096,3094,3122,3101,3090,3072,3069,3083,3096,3104,3108,3109,2808,2771,2730,2678,2672,2620,2607,2604,2573,2523,2478,2382,2301,2301,2272,2205,2142,2084,2022,1946,1898,1878,1793,1734,1695,1608,1524,1489,1463,1430,1385,1358,1320,1251,1226,1180,1218,1209,1151,1137,1116,1178,1115,1098,1167,1186,1190,1186,1171,1174,1156,1197,1242,1222,1253,1269,1269,1276,1259,1230,1196,1200,1208,1193,1216,1167,1145,1136,1128,1141,1100,1098,1227,1299,1283,1240,1259,1385,1434,1423,1458,1390,1402,1390,1487,1495,1475,1539,1532,1551,1554,1590,1617,1620,1601,1581,1575,1564,1586,1614,1618,1468,1318,1338,1362,1337,1267,1199,1216,1183,1212,1216,1225,1132,1098,1075,1012,1005,985,945,928,895,866,845,850,851,865,874,864,843,823,812,775,787,807,780,784,791,761,752,729,746,731,729,740,755,748,756,784,744,725,717,728,725,714,724,686,655,660,661,695,694,666,639,670,669,625,640,643,648,631,647,663,664,674,732,748,743,752,768,784,807,1227,1383,1394,1390,1391,1579,1734,1750,1785,1847,1900,1839,1831,1859,1919,1944,1951,1922,1924,1944,1992,1997,1964,1972,1964,1960,1959,1960,1960,1545,1381,1342,1354,1346,1152,997,993,944,892,839,836,844,803,736,695,707,713,691,675,640,635,659,671,701,730,741,736,711,752,757,773,793,816,871,918,912,974,967,1003,1002,992,1017,1021,1039,1013,1018,1014,1040,1055,1107,1088,1084,1079,1104,1114,1136,1172,1112,1134,1168,1206,1248,1275,1376,1371,1312,1359,1422,1543,1581,1623,1635,1607,1598,1592,1614,1575,1563,1516,1489,1494,1496,1463,1492,1520,1512,1555,1545,1529,1488,1449,1406,1367,1530,1647,1617,1560,1458,1470,1459,1441,1442,1461,1493,1533,1520,1536,1530,1551,1521,1522,1566,1518,1475,1492,1459,1503,1505,1522,1569,1592,1488,1291,1208,1211,1209,1203,1385,1341,1356,1366,1380,1470,1515,1544,1564,1554,1582,1604,1613,1683,1710,1731,1789,1903,1917,1966,2029,2015,2045,2090,2118,2131,2142,2175,2168,1962,1949,1926,1957,1960,1875,1814,1813,1776,1793,1767,1723,1693,1586,1566,1549,1499,1427,1399,1368,1332,1335,1258,1219,1261,1253,1324,1275,1334,1362,1384,1422,1445,1433,1424,1433,1497,1511,1571,1574,1685,1726,1788,1859,1902,1889,1902,1963,1923,1875,1828,1839,1870,1847,1867,1773,1762,1766,1755,1813,1829,1779,1746,1717,1692,1612,1602,1566,1533,1469,1437,1345,1254,1184,1126,1107,995,1028,1001,1013,1002,970,929,882,873,868,798,767,732,676,828,856,868,857,856,860,803,810,812,787,810,815,826,859,843,837,807,807,786,795,775,818,825,805,796,810,805,762,776,660,645,639,621,605,568,606,607,558,572,549,565,597,628,638,654,678,682,703,693,753,706,699,697,707,720,764,813,798,731,718,769,815,836,990,956,958,962,950,956,973,919,888,861,852,832,837,849,848,789,801,794,806,804,774,735,698,685,688,690,656,640,618,474,468,460,461,462,476,448,450,419,411,407,405,393,366,350,359,341,338,325,327,340,322,344,376,406,448,473,472,518,603,629,647,714,751,768,876,919,993,1020,1053,1127,1220,1256,1338,1366,1422,1482,1514,1531,1650,1775,1760,1749,1766,1774,1822,1834,1881,1818,1803,1834,1792,1834,1806,1721,1747,1720,1731,1750,1739,1719,1716,1679,1662,1780,1847,1877,1946,1843,1736,1745,1822,1986,2003,2042,2064,2005,2016,2030,2096,2154,2101,2218,2241,2236,2218,2221,2220,2212,2196,2212,2207,2294,2194,2151,2134,2099,2091,2113,2157,2110,2043,2028,1993,1990,2008,1984,1999,1985,2051,2059,1983,1947,1949,1955,1996,1996,1986,2006,1995,2002,1969,1943,1909,1913,1884,1905,1912,1878,1870,1784,1752,1668,1651,1678,1712,1758,1713,1616,1674,1679,1705,1727,1754,1764,1751,1730,1714,1779,1811,1894,1911,1907,1889,1885,1878,1902,1954,1976,2001,2048,2032,2032,1977,1959,1882,1827,1804,1719,1707,1689,1638,1590,1575,1598,1630,1619,1540,1547,1431,1383,1351,1343,1363,1379,1407,1331,1336,1307,1246,1296,1328,1377,1372,1382,1439,1429,1463,1472,1525,1574,1669,1656,1619,1598,1676,1713,1664,1680,1737,1743,1782,1851,1831,1814,1927,1906,1872,1978,1968,1980,1936,1986,1980,1920,1991,2032,2155,2184,2157,2074,2053,2080,2139,2080,2094,2168,2170,2124,2186,2176,2109,2144,2159,2064,2053,2073,2004,2021,2014,2061,2042,2068,2151,2122,2149,2034,1951,1927,1929,1946,1950,1942,1982,1929,1859,1816,1823,1871,1935,1956,1931,1872,1934,1948,1995,1964,1946,1901,1862,1821,1793,1760,1878,1757,1733,1783,1831,1836,1797,1827,1742,1676,1698,1742,1747,1786,1689,1578,1525,1489,1494,1436,1490,1420,1441,1482,1518,1518,1532,1549,1508,1372,1404,1420,1413,1439,1520,1578,1509,1553,1532,1492,1477,1458,1385,1469,1506,1570,1695,1735,1720,1631,1671,1714,1693,1682,1683,1672,1672,1675,1659,1634,1637,1594,1499,1396,1372,1360,1345,1417,1415,1381,1378,1393,1296,1301,1257,1180,1123,1113,1127,1135,1110,1088,1084,1083,1097,1085,1145,1131,1140,1104,1074,1069,1083,1029,1137,1167,1095,1167,1131,1144,1179,1183,1179,1184,1197,1207,1343,1341,1303,1310,1311,1256,1220,1193,1175,1103,1167,1174,1169,1189,1209,1224,1300,1208,1196,1212,1128,1174,1191,1172,1201,1232,1256,1224,1213,1087,1084,1095,1138,1152,1167,1195,1228,1263,1324,1274,1271,1256,1281,1257,1248,1184,1187,1138,1161,1186,1149,1191,1177,1196,1143,1106,1111,1152,1161,1189,1151,1051,1027,1028,1057,1073,1108,1057,1023,1016,1070,1102,1112,1120,1177,1174,1226,1266,1337,1367,1345,1384,1326,1369,1356,1332,1369,1401,1385,1422,1468,1474,1512,1515,1492,1489,1470,1494,1521,1491,1494,1541,1498,1427,1418,1352,1281,1221,1244,1229,1201,1214,1180,1170,1180,1136,1092,1092,1078,1034,1021,1043,992,999,932,960,962,986,966,964,936,953,956,992,990,984,985,949,911,884,886,858,865,870,812,807,775,763,819,850,853,864,838,854,894,938,894,936,877,840,862,875,894,942,943,936,993,997,1036,1018,1059,1114,1085,1104,1105,1136,1177,1149,1101,1086,1088,1117,1141,1082,1039,1062,1073,1081,1121,1160,1211,1178,1157,1151,1119,1083,1128,1161,1238,1306,1277,1333,1382,1420,1432,1420,1458,1520,1479,1545,1572,1531,1543,1524,1541,1514,1492,1485,1465,1458,1467,1468,1488,1536,1559,1570,1583,1549,1479,1438,1408,1504,1717,2006,2336,2422,2381,2469,2406,2418,2933,3249,3420,3504,3728,4320,4838,5106,5462,5907,6370,7434,8278,8658,9694,11518,11831,11980,14214,15108,15838,16739,17446,18501,19195,19886,20733,21709,22409,23528,24456,27442,30531,33074,35754,39008,39752,42901,47423,51468,53188,55035,55453,55777,55230,55707,59139,59919,59377,58845,58150,57515,56208,55821,56072,55853,55905,55508,54377,53537,50825,49449,47706,45296,42548,42494,39396,34973,31686,33750,36581,36398,35495,34233,33710,30345,28497,29102,29493,29883,30728,32333,32601,33910,34074,33384,33571,33404,33457,33240,31644,30813,30487,29610,28913,28692,28472,28326,23809,18454,18773,19857,20854,21115,21552,20730,20169,19499,19613,19649,19569,20074,18856,18660,18484,18091,18459,18274,18308,18579,19592,19584,19558,19309,19166,18982,18324,18190,18166,17301,16019,15743,16463,16491,16893,16965,17047,16853,16116,15253,15325,16280,16220,17062,17640,17801,17944,18067,18165,17781,17825,18182,18906,19588,21290,21280,21292,22257,22357,22427,22089,21052,21030,20406,20607,20917,20398,20188,19767,18620,16789,16268,16005,15758,15440,15121,14863,14346,13550,13684,13572,13617,13138,11928,11591,11405,10313,10173,9995,9623,9437,8834,8737,8098,7715,7503,7399,7306,7201,7048,6968,6380,6455,6177,6304,6266,6396,6642,6156,6441,5823,5753,5155,5072,5096,5096,5123,4995,5031,5041,4977,4990,5116,5206,5307,5100,4967,4943,4933,4962,5010,4486,4292,4082,4056,4217,4188,4007,3472,3443,3316,3328,3350,3314,3489,3490,3507,3443,3379,3480,3516,3388,3252,3157,3165,3174,3250,3245,3204,3015,2962,2968,2939,2910,2539,2290,2277,2158,1977,1891,1822,1826,1811,1652,1583,1557,1528,1528,1441,1490,1468,1463,1480,1464,1349,1296,1513,1671,1673,1724,1697,1780,2005,2320,2636,2833,2988,3067,3140,3368,3664,3741,3916,4302,4456,4839,5042,5020,4919,4928,4907,4834,4856,4876,4854,4657,4569,4885,4868,4989,4966,4706,4411,4229,4024,3862,3947,4199,4507,4279,4617,4397,3995,3881,3506,3484,6377,6482,6461,6444,6452,6471,6497,6492,6465,6389,6055,6031,5888,5838,5884,5914,5840,5820,5836,5684,5381,4910,4825,4413,4395,4376,4339,4306,4103,1213,1087,1108,1126,1124,1136,1077,1094,1124,1097,1141,1169,1183,1217,1234,1195,1109,1143,1139,1125,1098,1018,1012,995,996,1062,989,1000,1033,1012,1029,986,1029,1037,987,986,986,967,993,934,929,885,848,817,780,802,815,786,798,838,837,823,828,815,753,752,751,738,773,758,763,707,693,704,699,676,664,684,744,713,729,759,739,740,760,716,720,736,699,713,715,698,711,732,754,718,693,714,769,774,813,809,799,811,813,809,789,732,748,763,762,780,826,805,835,885,848,850,865,860,892,895,855,854,868,904,918,901,914,893,932,908,896,899,937,915,915,909,896,896,861,809,789,819,781,781,819,847,850,818,802,817,810,816,829,775,774,757,760,744,745,758,776,760,762,754,772,754,739,777,839,862,801,801,877,875,868,922,922,935,936,928,981,954,957,948,963,955,974,973,976,952,933,932,931,914,932,933,892,866,855,908,907,830,792,740,702,698,681,702,706,655,657,660,667,647,633,615,618,632,627,625,625,652,638,617,619,635,605,611,563,603,647,670,695,712,712,747,713,727,710,695,705,671,730,747,765,788,759,747,744,833,832,867,924,986,993,987,979,985,950,968,963,994,974,1000,973,999,1014,1058,1046,1014,1024,990,1011,973,955,968,1009,1069,1021,1049,1048,1022,983,961,984,1013,1061,1045,1016,994,963,950,930,985,975,972,980,1002,1057,1065,1075,1041,1070,1086,1087,1052,997,992,978,1019,994,983,990,974,969,968,999,1006,1028,1025,1040,1056,995,996,1003,1000,1046,1032,1036,1043,1079,1071,1138,1124,1147,1188,1190,1221,1274,1312,1335,1378,1416,1455,1476,1481,1465,1454,1464,1455,1476,1501,1504,1501,1474,1474,1467,1493,1510,1506,1506,1438,1479,1506,1495,1511,1473,1352,1312,1249,1220,1210,1171,1108,1079,1088,1113,1130,1153,1128,1117,1104,1082,1051,1001,963,941,889,865,856,854,822,760,748,690,659,660,651,722,717,682,661,643,645,612,613,560,543,556,540,522,521,521,501,515,497,486,485,519,493,476,494,523,537,537,537,575,500,484,526,540,584,572,588,557,557,558,540,572,589,585,600,607,610,614,629,645,592,608,642,624,587,625,639,638,600,764,965,923,1016,987,1048,1213,1305,1399,1397,1419,1399,1401,1452,1440,1433,1430,1428,1440,1441,1444,1445,1408,1436,1441,1405,1405,1443,1750,1640,1454,1849,2251,2747,2772,2614,2512,2454,2456,2453,2452,2467,2479,2507,2535,2551,2575,2600,2611,2608,2629,2638,2637,2654,2689,2703,2648,2371,2378,2395,2047,1538,1034,975,969,956,920,934,930,930,933,889,868,844,825,817,781,756,756,772,766,757,733,695,664,705,736,695,701,652,635,641,646,654,683,684,667,651,675,638,619,624,621,646,632,635,630,647,643,657,639,622,622,656,615,554,538,514,533,557,566,545,551,535,604,604,602,579,583,583,591,609,606,603,600,602,590,542,590,592,609,609,574,576,582,587,573,599,590,567,556,543,534,464,464,469,472,470,470,462,443,407,412,413,425,466,509,511,523,533,533,541,554,558,558,567,556,552,570,584,570,593,605,622,604,587,598,613,639,651,681,667,659,636,596,558,571,586,586,614,634,659,727,753,812,788,777,774,753,783,757,802,776,781,796,808,830,821,809,798,789,798,831,860,871,792,781,755,710,700,682,641,606,553,543,578,579,597,581,599,561,607,619,601,593,539,524,559,540,560,586,565,533,535,533,516,517,519,501,481,450,470,470,475,446,464,447,482,460,463,459,476,475,477,495,497,527,580,570,544,540,555,534,553,587,585,602,620,637,666,651,672,685,695,693,808,794,828,841,792,760,783,785,789,773,762,729,757,742,748,766,768,810,776,779,765,757,744,743,739,717,720,735,701,622,581,546,528,527,559,554,534,571,572,557,556,518,572,629,595,629,579,587,616,613,603,606,644,661,649,628,598,609,596,597,600,585,594,577,561,564,519,568,621,602,605,549,497,560,524,531,624,646,683,687,701,665,649,655,694,693,699,693,692,691,689,682,694,709,725,713,660,575,593,663,682,655,590,591,590,489,435,414,431,419,387,404,394,363,364,351,341,340,339,358,405,405,407,405,405,403,399,444,372,369,369,369,368,373,444,444,427,406,396,392,376,375,375,377,401,412,412,459,440,408,397,379,398,396,431,446,406,415,467,472,513,513,524,469,490,506,512,512,513,517,524,552,550,527,526,527,481,482,486,471,489,453,453,437,419,455,464,473,490,452,454,444,427,409,395,389,396,398,414,417,400,403,415,401,452,485,501,483,497,479,494,512,493,502,461,522,460,438,437,470,465,466,463,469,469,475,478,458,449,430,425,425,445,428,415,401,398,397,449,469,479,480,563,545,503,522,552,551,516,516,554,556,566,569,556,587,600,603,603,681,686,704,672,680,681,698,680,645,616,628,698,636,637,603,568,556,560,563,564,542,558,539,562,563,545,540,553,557,488,471,453,452,423,421,420,440,457,506,466,462,432,432,437,457,457,490,487,468,456,438,440,414,431,430,439,480,490,507,537,518,521,540,546,555,556,564,513,569,534,581,602,598,604,632,624,642,682,716,720,737,755,739,780,782,731,718,698,666,669,672,657,658,637,627,589,592,617,589,563,548,543,518,501,473,473,447,416,453,439,444,447,388,383,377,383,397,413,425,442,558,555,608,599,594,663,635,639,716,753,773,792,764,771,801,832,843,844,857,919,1000,1131,1176,1212,1267,1250,1284,1273,1332,1298,1386,1360,1359,1380,1353,1311,1598,1538,1526,1511,1544,1573,1633,1600,1572,1559,1523,1531,1495,1416,1367,1327,1335,1318,1419,1479,1530,1495,1437,1376,1369,1420,1450,1441,1463],"yaxis":"y","type":"scattergl"},{"hovertemplate":"version=v0\u003cbr\u003etimestamp=%{x}\u003cbr\u003erolling_downloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"v0","line":{"color":"#EF553B","dash":"solid"},"marker":{"symbol":"circle"},"mode":"lines","name":"v0","showlegend":true,"x":["2016-01-22T00:00:00","2016-01-23T00:00:00","2016-01-24T00:00:00","2016-01-25T00:00:00","2016-01-26T00:00:00","2016-01-27T00:00:00","2016-01-28T00:00:00","2016-01-29T00:00:00","2016-01-30T00:00:00","2016-01-31T00:00:00","2016-02-01T00:00:00","2016-02-02T00:00:00","2016-02-03T00:00:00","2016-02-04T00:00:00","2016-02-05T00:00:00","2016-02-06T00:00:00","2016-02-07T00:00:00","2016-02-08T00:00:00","2016-02-09T00:00:00","2016-02-10T00:00:00","2016-02-11T00:00:00","2016-02-12T00:00:00","2016-02-13T00:00:00","2016-02-14T00:00:00","2016-02-15T00:00:00","2016-02-16T00:00:00","2016-02-17T00:00:00","2016-02-18T00:00:00","2016-02-19T00:00:00","2016-02-20T00:00:00","2016-02-21T00:00:00","2016-02-22T00:00:00","2016-02-23T00:00:00","2016-02-24T00:00:00","2016-02-25T00:00:00","2016-02-26T00:00:00","2016-02-27T00:00:00","2016-02-28T00:00:00","2016-02-29T00:00:00","2016-03-01T00:00:00","2016-03-02T00:00:00","2016-03-03T00:00:00","2016-03-04T00:00:00","2016-03-05T00:00:00","2016-05-22T00:00:00","2016-05-23T00:00:00","2016-05-24T00:00:00","2016-05-25T00:00:00","2016-05-26T00:00:00","2016-05-27T00:00:00","2016-05-28T00:00:00","2016-05-29T00:00:00","2016-05-30T00:00:00","2016-05-31T00:00:00","2016-06-01T00:00:00","2016-06-02T00:00:00","2016-06-03T00:00:00","2016-06-04T00:00:00","2016-06-05T00:00:00","2016-06-06T00:00:00","2016-06-07T00:00:00","2016-06-08T00:00:00","2016-06-09T00:00:00","2016-06-10T00:00:00","2016-06-11T00:00:00","2016-06-12T00:00:00","2016-06-13T00:00:00","2016-06-14T00:00:00","2016-06-15T00:00:00","2016-06-16T00:00:00","2016-06-17T00:00:00","2016-06-18T00:00:00","2016-06-19T00:00:00","2016-06-21T00:00:00","2016-06-22T00:00:00","2016-06-23T00:00:00","2016-06-24T00:00:00","2016-06-26T00:00:00","2016-06-27T00:00:00","2016-06-28T00:00:00","2016-06-29T00:00:00","2016-06-30T00:00:00","2016-07-01T00:00:00","2016-07-02T00:00:00","2016-07-03T00:00:00","2016-07-04T00:00:00","2016-07-05T00:00:00","2016-07-06T00:00:00","2016-07-08T00:00:00","2016-07-09T00:00:00","2016-07-10T00:00:00","2016-07-11T00:00:00","2016-07-12T00:00:00","2016-07-13T00:00:00","2016-07-14T00:00:00","2016-07-15T00:00:00","2016-07-16T00:00:00","2016-07-18T00:00:00","2016-07-19T00:00:00","2016-07-20T00:00:00","2016-07-21T00:00:00","2016-07-22T00:00:00","2016-07-24T00:00:00","2016-07-25T00:00:00","2016-07-26T00:00:00","2016-07-27T00:00:00","2016-07-28T00:00:00","2016-07-29T00:00:00","2016-07-30T00:00:00","2016-07-31T00:00:00","2016-08-01T00:00:00","2016-08-02T00:00:00","2016-08-03T00:00:00","2016-08-04T00:00:00","2016-08-05T00:00:00","2016-08-06T00:00:00","2016-08-07T00:00:00","2016-08-08T00:00:00","2016-08-09T00:00:00","2016-08-10T00:00:00","2016-08-11T00:00:00","2016-08-12T00:00:00","2016-08-13T00:00:00","2016-08-14T00:00:00","2016-08-15T00:00:00","2016-08-16T00:00:00","2016-08-17T00:00:00","2016-08-18T00:00:00","2016-08-19T00:00:00","2016-08-20T00:00:00","2016-08-22T00:00:00","2016-08-23T00:00:00","2016-08-25T00:00:00","2016-08-26T00:00:00","2016-08-27T00:00:00","2016-08-28T00:00:00","2016-08-29T00:00:00","2016-08-30T00:00:00","2016-08-31T00:00:00","2016-09-01T00:00:00","2016-09-02T00:00:00","2016-09-03T00:00:00","2016-09-04T00:00:00","2016-09-05T00:00:00","2016-09-06T00:00:00","2016-09-07T00:00:00","2016-09-08T00:00:00","2016-09-09T00:00:00","2016-09-10T00:00:00","2016-09-12T00:00:00","2016-09-13T00:00:00","2016-09-14T00:00:00","2016-09-15T00:00:00","2016-09-16T00:00:00","2016-09-17T00:00:00","2016-09-18T00:00:00","2016-09-19T00:00:00","2016-09-20T00:00:00","2016-09-21T00:00:00","2016-09-22T00:00:00","2016-09-23T00:00:00","2016-09-24T00:00:00","2016-09-25T00:00:00","2016-09-26T00:00:00","2016-09-27T00:00:00","2016-09-28T00:00:00","2016-09-29T00:00:00","2016-10-01T00:00:00","2016-10-03T00:00:00","2016-10-04T00:00:00","2016-10-05T00:00:00","2016-10-06T00:00:00","2016-10-07T00:00:00","2016-10-08T00:00:00","2016-10-09T00:00:00","2016-10-10T00:00:00","2016-10-11T00:00:00","2016-10-12T00:00:00","2016-10-13T00:00:00","2016-10-14T00:00:00","2016-10-17T00:00:00","2016-10-18T00:00:00","2016-10-19T00:00:00","2016-10-20T00:00:00","2016-10-21T00:00:00","2016-10-22T00:00:00","2016-10-24T00:00:00","2016-10-25T00:00:00","2016-10-26T00:00:00","2016-10-27T00:00:00","2016-10-28T00:00:00","2016-10-29T00:00:00","2016-10-30T00:00:00","2016-10-31T00:00:00","2016-11-01T00:00:00","2016-11-02T00:00:00","2016-11-03T00:00:00","2016-11-04T00:00:00","2016-11-05T00:00:00","2016-11-06T00:00:00","2016-11-07T00:00:00","2016-11-08T00:00:00","2016-11-09T00:00:00","2016-11-10T00:00:00","2016-11-11T00:00:00","2016-11-12T00:00:00","2016-11-14T00:00:00","2016-11-15T00:00:00","2016-11-16T00:00:00","2016-11-17T00:00:00","2016-11-18T00:00:00","2016-11-19T00:00:00","2016-11-20T00:00:00","2016-11-21T00:00:00","2016-11-22T00:00:00","2016-11-23T00:00:00","2016-11-24T00:00:00","2016-11-25T00:00:00","2016-11-26T00:00:00","2016-11-28T00:00:00","2016-11-29T00:00:00","2016-11-30T00:00:00","2016-12-01T00:00:00","2016-12-02T00:00:00","2016-12-03T00:00:00","2016-12-04T00:00:00","2016-12-06T00:00:00","2016-12-07T00:00:00","2016-12-08T00:00:00","2016-12-09T00:00:00","2016-12-10T00:00:00","2016-12-11T00:00:00","2016-12-12T00:00:00","2016-12-13T00:00:00","2016-12-14T00:00:00","2016-12-15T00:00:00","2016-12-16T00:00:00","2016-12-17T00:00:00","2016-12-18T00:00:00","2016-12-19T00:00:00","2016-12-20T00:00:00","2016-12-21T00:00:00","2016-12-22T00:00:00","2016-12-23T00:00:00","2016-12-24T00:00:00","2016-12-25T00:00:00","2016-12-28T00:00:00","2016-12-29T00:00:00","2016-12-30T00:00:00","2016-12-31T00:00:00","2017-01-02T00:00:00","2017-01-05T00:00:00","2017-01-06T00:00:00","2017-01-07T00:00:00","2017-01-09T00:00:00","2017-01-10T00:00:00","2017-01-11T00:00:00","2017-01-12T00:00:00","2017-01-13T00:00:00","2017-01-14T00:00:00","2017-01-15T00:00:00","2017-01-16T00:00:00","2017-01-17T00:00:00","2017-01-19T00:00:00","2017-01-20T00:00:00","2017-01-23T00:00:00","2017-01-24T00:00:00","2017-01-25T00:00:00","2017-01-26T00:00:00","2017-01-27T00:00:00","2017-01-28T00:00:00","2017-01-29T00:00:00","2017-01-30T00:00:00","2017-01-31T00:00:00","2017-02-01T00:00:00","2017-02-02T00:00:00","2017-02-03T00:00:00","2017-02-04T00:00:00","2017-02-06T00:00:00","2017-02-07T00:00:00","2017-02-08T00:00:00","2017-02-09T00:00:00","2017-02-10T00:00:00","2017-02-11T00:00:00","2017-02-12T00:00:00","2017-02-13T00:00:00","2017-02-14T00:00:00","2017-02-15T00:00:00","2017-02-16T00:00:00","2017-02-17T00:00:00","2017-02-18T00:00:00","2017-02-19T00:00:00","2017-02-20T00:00:00","2017-02-21T00:00:00","2017-02-22T00:00:00","2017-02-23T00:00:00","2017-02-24T00:00:00","2017-02-25T00:00:00","2017-02-26T00:00:00","2017-02-27T00:00:00","2017-02-28T00:00:00","2017-03-01T00:00:00","2017-03-02T00:00:00","2017-03-03T00:00:00","2017-03-04T00:00:00","2017-03-05T00:00:00","2017-03-06T00:00:00","2017-03-07T00:00:00","2017-03-08T00:00:00","2017-03-09T00:00:00","2017-03-10T00:00:00","2017-03-13T00:00:00","2017-03-14T00:00:00","2017-03-15T00:00:00","2017-03-16T00:00:00","2017-03-17T00:00:00","2017-03-18T00:00:00","2017-03-19T00:00:00","2017-03-20T00:00:00","2017-03-21T00:00:00","2017-03-22T00:00:00","2017-03-23T00:00:00","2017-03-24T00:00:00","2017-03-25T00:00:00","2017-03-26T00:00:00","2017-03-27T00:00:00","2017-03-28T00:00:00","2017-03-29T00:00:00","2017-03-30T00:00:00","2017-03-31T00:00:00","2017-04-01T00:00:00","2017-04-02T00:00:00","2017-04-04T00:00:00","2017-04-05T00:00:00","2017-04-06T00:00:00","2017-04-07T00:00:00","2017-04-08T00:00:00","2017-04-09T00:00:00","2017-04-10T00:00:00","2017-04-11T00:00:00","2017-04-12T00:00:00","2017-04-14T00:00:00","2017-04-15T00:00:00","2017-04-16T00:00:00","2017-04-17T00:00:00","2017-04-18T00:00:00","2017-04-19T00:00:00","2017-04-20T00:00:00","2017-04-22T00:00:00","2017-04-23T00:00:00","2017-04-26T00:00:00","2017-04-27T00:00:00","2017-04-28T00:00:00","2017-04-29T00:00:00","2017-04-30T00:00:00","2017-05-01T00:00:00","2017-05-02T00:00:00","2017-05-03T00:00:00","2017-05-04T00:00:00","2017-05-06T00:00:00","2017-05-08T00:00:00","2017-05-09T00:00:00","2017-05-10T00:00:00","2017-05-11T00:00:00","2017-05-12T00:00:00","2017-05-13T00:00:00","2017-05-14T00:00:00","2017-05-15T00:00:00","2017-05-17T00:00:00","2017-05-19T00:00:00","2017-05-20T00:00:00","2017-05-22T00:00:00","2017-05-23T00:00:00","2017-05-24T00:00:00","2017-05-28T00:00:00","2017-05-29T00:00:00","2017-05-30T00:00:00","2017-05-31T00:00:00","2017-06-01T00:00:00","2017-06-03T00:00:00","2017-06-04T00:00:00","2017-06-05T00:00:00","2017-06-06T00:00:00","2017-06-07T00:00:00","2017-06-08T00:00:00","2017-06-09T00:00:00","2017-06-10T00:00:00","2017-06-11T00:00:00","2017-06-12T00:00:00","2017-06-13T00:00:00","2017-06-14T00:00:00","2017-06-15T00:00:00","2017-06-16T00:00:00","2017-06-17T00:00:00","2017-06-18T00:00:00","2017-06-19T00:00:00","2017-06-20T00:00:00","2017-06-21T00:00:00","2017-06-22T00:00:00","2017-06-23T00:00:00","2017-06-24T00:00:00","2017-06-25T00:00:00","2017-06-26T00:00:00","2017-06-27T00:00:00","2017-06-28T00:00:00","2017-06-29T00:00:00","2017-06-30T00:00:00","2017-07-03T00:00:00","2017-07-04T00:00:00","2017-07-05T00:00:00","2017-07-06T00:00:00","2017-07-07T00:00:00","2017-07-08T00:00:00","2017-07-09T00:00:00","2017-07-11T00:00:00","2017-07-12T00:00:00","2017-07-13T00:00:00","2017-07-14T00:00:00","2017-07-16T00:00:00","2017-07-17T00:00:00","2017-07-18T00:00:00","2017-07-19T00:00:00","2017-07-20T00:00:00","2017-07-21T00:00:00","2017-07-22T00:00:00","2017-07-26T00:00:00","2017-07-27T00:00:00","2017-08-03T00:00:00","2017-08-05T00:00:00","2017-08-08T00:00:00","2017-08-10T00:00:00","2017-08-11T00:00:00","2017-08-12T00:00:00","2017-08-15T00:00:00","2017-08-16T00:00:00","2017-08-17T00:00:00","2017-08-18T00:00:00","2017-08-19T00:00:00","2017-08-20T00:00:00","2017-08-21T00:00:00","2017-08-23T00:00:00","2017-08-24T00:00:00","2017-08-25T00:00:00","2017-08-26T00:00:00","2017-08-27T00:00:00","2017-08-28T00:00:00","2017-08-29T00:00:00","2017-08-30T00:00:00","2017-08-31T00:00:00","2017-09-01T00:00:00","2017-09-02T00:00:00","2017-09-03T00:00:00","2017-09-04T00:00:00","2017-09-07T00:00:00","2017-09-08T00:00:00","2017-09-09T00:00:00","2017-09-10T00:00:00","2017-09-13T00:00:00","2017-09-14T00:00:00","2017-09-15T00:00:00","2017-09-16T00:00:00","2017-09-17T00:00:00","2017-09-18T00:00:00","2017-09-19T00:00:00","2017-09-20T00:00:00","2017-09-21T00:00:00","2017-09-22T00:00:00","2017-09-24T00:00:00","2017-09-27T00:00:00","2017-09-29T00:00:00","2017-09-30T00:00:00","2017-10-02T00:00:00","2017-10-04T00:00:00","2017-10-05T00:00:00","2017-10-06T00:00:00","2017-10-07T00:00:00","2017-10-08T00:00:00","2017-10-12T00:00:00","2017-10-13T00:00:00","2017-10-14T00:00:00","2017-10-15T00:00:00","2017-10-16T00:00:00","2017-10-17T00:00:00","2017-10-18T00:00:00","2017-10-19T00:00:00","2017-10-20T00:00:00","2017-10-21T00:00:00","2017-10-22T00:00:00","2017-10-23T00:00:00","2017-10-24T00:00:00","2017-10-25T00:00:00","2017-10-26T00:00:00","2017-10-27T00:00:00","2017-10-28T00:00:00","2017-10-29T00:00:00","2017-10-30T00:00:00","2017-10-31T00:00:00","2017-11-01T00:00:00","2017-11-02T00:00:00","2017-11-03T00:00:00","2017-11-04T00:00:00","2017-11-05T00:00:00","2017-11-06T00:00:00","2017-11-07T00:00:00","2017-11-08T00:00:00","2017-11-09T00:00:00","2017-11-11T00:00:00","2017-11-12T00:00:00","2017-11-13T00:00:00","2017-11-14T00:00:00","2017-11-15T00:00:00","2017-11-16T00:00:00","2017-11-18T00:00:00","2017-11-19T00:00:00","2017-11-21T00:00:00","2017-11-22T00:00:00","2017-11-23T00:00:00","2017-11-24T00:00:00","2017-11-25T00:00:00","2017-11-26T00:00:00","2017-11-28T00:00:00","2017-11-30T00:00:00","2017-12-02T00:00:00","2017-12-03T00:00:00","2017-12-04T00:00:00","2017-12-06T00:00:00","2017-12-07T00:00:00","2017-12-08T00:00:00","2017-12-09T00:00:00","2017-12-10T00:00:00","2017-12-12T00:00:00","2017-12-13T00:00:00","2017-12-14T00:00:00","2017-12-15T00:00:00","2017-12-16T00:00:00","2017-12-17T00:00:00","2017-12-18T00:00:00","2017-12-19T00:00:00","2017-12-20T00:00:00","2017-12-21T00:00:00","2017-12-22T00:00:00","2017-12-23T00:00:00","2017-12-24T00:00:00","2017-12-25T00:00:00","2017-12-26T00:00:00","2017-12-27T00:00:00","2017-12-28T00:00:00","2017-12-29T00:00:00","2017-12-30T00:00:00","2017-12-31T00:00:00","2018-01-02T00:00:00","2018-01-03T00:00:00","2018-01-04T00:00:00","2018-01-05T00:00:00","2018-01-06T00:00:00","2018-01-07T00:00:00","2018-01-08T00:00:00","2018-01-09T00:00:00","2018-01-10T00:00:00","2018-01-12T00:00:00","2018-01-13T00:00:00","2018-01-14T00:00:00","2018-01-15T00:00:00","2018-01-16T00:00:00","2018-01-17T00:00:00","2018-01-18T00:00:00","2018-01-19T00:00:00","2018-01-20T00:00:00","2018-01-21T00:00:00","2018-01-23T00:00:00","2018-01-24T00:00:00","2018-01-26T00:00:00","2018-01-28T00:00:00","2018-01-30T00:00:00","2018-01-31T00:00:00","2018-02-01T00:00:00","2018-02-03T00:00:00","2018-02-04T00:00:00","2018-02-05T00:00:00","2018-02-06T00:00:00","2018-02-07T00:00:00","2018-02-08T00:00:00","2018-02-09T00:00:00","2018-02-10T00:00:00","2018-02-11T00:00:00","2018-02-12T00:00:00","2018-02-13T00:00:00","2018-02-14T00:00:00","2018-02-16T00:00:00","2018-02-17T00:00:00","2018-02-18T00:00:00","2018-02-24T00:00:00","2018-02-26T00:00:00","2018-02-27T00:00:00","2018-02-28T00:00:00","2018-03-02T00:00:00","2018-03-07T00:00:00","2018-03-08T00:00:00","2018-03-10T00:00:00","2018-03-11T00:00:00","2018-03-16T00:00:00","2018-03-18T00:00:00","2018-03-20T00:00:00","2018-03-21T00:00:00","2018-03-22T00:00:00","2018-03-23T00:00:00","2018-03-24T00:00:00","2018-03-25T00:00:00","2018-03-26T00:00:00","2018-03-28T00:00:00","2018-03-29T00:00:00","2018-03-31T00:00:00","2018-04-04T00:00:00","2018-04-05T00:00:00","2018-04-07T00:00:00","2018-04-08T00:00:00","2018-04-10T00:00:00","2018-04-13T00:00:00","2018-04-14T00:00:00","2018-04-16T00:00:00","2018-04-18T00:00:00","2018-04-19T00:00:00","2018-04-21T00:00:00","2018-04-22T00:00:00","2018-04-25T00:00:00","2018-04-26T00:00:00","2018-04-28T00:00:00","2018-04-29T00:00:00","2018-04-30T00:00:00","2018-05-01T00:00:00","2018-05-05T00:00:00","2018-05-06T00:00:00","2018-05-08T00:00:00","2018-05-10T00:00:00","2018-05-11T00:00:00","2018-05-12T00:00:00","2018-05-13T00:00:00","2018-05-14T00:00:00","2018-05-15T00:00:00","2018-05-17T00:00:00","2018-05-18T00:00:00","2018-05-19T00:00:00","2018-05-21T00:00:00","2018-05-24T00:00:00","2018-05-25T00:00:00","2018-05-26T00:00:00","2018-05-27T00:00:00","2018-05-28T00:00:00","2018-05-31T00:00:00","2018-06-01T00:00:00","2018-06-02T00:00:00","2018-06-03T00:00:00","2018-06-04T00:00:00","2018-06-05T00:00:00","2018-06-08T00:00:00","2018-06-09T00:00:00","2018-06-11T00:00:00","2018-06-12T00:00:00","2018-06-13T00:00:00","2018-06-14T00:00:00","2018-06-16T00:00:00","2018-06-17T00:00:00","2018-06-19T00:00:00","2018-06-22T00:00:00","2018-06-24T00:00:00","2018-06-25T00:00:00","2018-06-29T00:00:00","2018-07-05T00:00:00","2018-07-06T00:00:00","2018-07-07T00:00:00","2018-07-08T00:00:00","2018-07-13T00:00:00","2018-07-15T00:00:00","2018-07-19T00:00:00","2018-07-21T00:00:00","2018-07-22T00:00:00","2018-07-27T00:00:00","2018-07-28T00:00:00","2018-07-29T00:00:00","2018-07-30T00:00:00","2018-07-31T00:00:00","2018-08-01T00:00:00","2018-08-02T00:00:00","2018-08-03T00:00:00","2018-08-04T00:00:00","2018-08-05T00:00:00","2018-08-06T00:00:00","2018-08-07T00:00:00","2018-08-08T00:00:00","2018-08-09T00:00:00","2018-08-10T00:00:00","2018-08-11T00:00:00","2018-08-12T00:00:00","2018-08-13T00:00:00","2018-08-14T00:00:00","2018-08-15T00:00:00","2018-08-16T00:00:00","2018-08-17T00:00:00","2018-08-18T00:00:00","2018-08-19T00:00:00","2018-08-20T00:00:00","2018-08-21T00:00:00","2018-08-22T00:00:00","2018-08-24T00:00:00","2018-08-25T00:00:00","2018-08-26T00:00:00","2018-08-27T00:00:00","2018-08-28T00:00:00","2018-08-29T00:00:00","2018-08-30T00:00:00","2018-08-31T00:00:00","2018-09-01T00:00:00","2018-09-02T00:00:00","2018-09-03T00:00:00","2018-09-04T00:00:00","2018-09-05T00:00:00","2018-09-07T00:00:00","2018-09-08T00:00:00","2018-09-09T00:00:00","2018-09-10T00:00:00","2018-09-11T00:00:00","2018-09-12T00:00:00","2018-09-13T00:00:00","2018-09-14T00:00:00","2018-09-15T00:00:00","2018-09-16T00:00:00","2018-09-17T00:00:00","2018-09-18T00:00:00","2018-09-19T00:00:00","2018-09-20T00:00:00","2018-09-22T00:00:00","2018-09-23T00:00:00","2018-09-24T00:00:00","2018-09-25T00:00:00","2018-09-27T00:00:00","2018-09-28T00:00:00","2018-09-29T00:00:00","2018-09-30T00:00:00","2018-10-01T00:00:00","2018-10-02T00:00:00","2018-10-03T00:00:00","2018-10-05T00:00:00","2018-10-06T00:00:00","2018-10-07T00:00:00","2018-10-08T00:00:00","2018-10-09T00:00:00","2018-10-10T00:00:00","2018-10-11T00:00:00","2018-10-12T00:00:00","2018-10-13T00:00:00","2018-10-14T00:00:00","2018-10-15T00:00:00","2018-10-16T00:00:00","2018-10-17T00:00:00","2018-10-18T00:00:00","2018-10-19T00:00:00","2018-10-20T00:00:00","2018-10-21T00:00:00","2018-10-22T00:00:00","2018-10-23T00:00:00","2018-10-24T00:00:00","2018-10-25T00:00:00","2018-10-26T00:00:00","2018-10-27T00:00:00","2018-10-28T00:00:00","2018-10-30T00:00:00","2018-10-31T00:00:00","2018-11-01T00:00:00","2018-11-02T00:00:00","2018-11-03T00:00:00","2018-11-04T00:00:00","2018-11-05T00:00:00","2018-11-06T00:00:00","2018-11-07T00:00:00","2018-11-08T00:00:00","2018-11-09T00:00:00","2018-11-10T00:00:00","2018-11-11T00:00:00","2018-11-12T00:00:00","2018-11-13T00:00:00","2018-11-14T00:00:00","2018-11-15T00:00:00","2018-11-16T00:00:00","2018-11-17T00:00:00","2018-11-18T00:00:00","2018-11-19T00:00:00","2018-11-20T00:00:00","2018-11-21T00:00:00","2018-11-22T00:00:00","2018-11-24T00:00:00","2018-11-25T00:00:00","2018-11-26T00:00:00","2018-11-27T00:00:00","2018-11-28T00:00:00","2018-11-29T00:00:00","2018-11-30T00:00:00","2018-12-01T00:00:00","2018-12-02T00:00:00","2018-12-03T00:00:00","2018-12-04T00:00:00","2018-12-05T00:00:00","2018-12-06T00:00:00","2018-12-07T00:00:00","2018-12-08T00:00:00","2018-12-09T00:00:00","2018-12-10T00:00:00","2018-12-11T00:00:00","2018-12-12T00:00:00","2018-12-13T00:00:00","2018-12-14T00:00:00","2018-12-15T00:00:00","2018-12-16T00:00:00","2018-12-18T00:00:00","2018-12-19T00:00:00","2018-12-20T00:00:00","2018-12-21T00:00:00","2018-12-22T00:00:00","2018-12-24T00:00:00","2018-12-25T00:00:00","2018-12-26T00:00:00","2018-12-29T00:00:00","2018-12-30T00:00:00","2018-12-31T00:00:00","2019-01-01T00:00:00","2019-01-02T00:00:00","2019-01-04T00:00:00","2019-01-05T00:00:00","2019-01-06T00:00:00","2019-01-07T00:00:00","2019-01-08T00:00:00","2019-01-09T00:00:00","2019-01-10T00:00:00","2019-01-12T00:00:00","2019-01-13T00:00:00","2019-01-14T00:00:00","2019-01-15T00:00:00","2019-01-16T00:00:00","2019-01-18T00:00:00","2019-01-19T00:00:00","2019-01-21T00:00:00","2019-01-22T00:00:00","2019-01-23T00:00:00","2019-01-26T00:00:00","2019-01-27T00:00:00","2019-01-28T00:00:00","2019-01-29T00:00:00","2019-01-30T00:00:00","2019-01-31T00:00:00","2019-02-01T00:00:00","2019-02-02T00:00:00","2019-02-03T00:00:00","2019-02-05T00:00:00","2019-02-06T00:00:00","2019-02-08T00:00:00","2019-02-09T00:00:00","2019-02-10T00:00:00","2019-02-11T00:00:00","2019-02-12T00:00:00","2019-02-14T00:00:00","2019-02-15T00:00:00","2019-02-16T00:00:00","2019-02-17T00:00:00","2019-02-18T00:00:00","2019-02-20T00:00:00","2019-02-22T00:00:00","2019-02-23T00:00:00","2019-02-25T00:00:00","2019-02-26T00:00:00","2019-02-27T00:00:00","2019-02-28T00:00:00","2019-03-01T00:00:00","2019-03-02T00:00:00","2019-03-03T00:00:00","2019-03-04T00:00:00","2019-03-05T00:00:00","2019-03-06T00:00:00","2019-03-07T00:00:00","2019-03-08T00:00:00","2019-03-09T00:00:00","2019-03-10T00:00:00","2019-03-11T00:00:00","2019-03-12T00:00:00","2019-03-13T00:00:00","2019-03-14T00:00:00","2019-03-15T00:00:00","2019-03-16T00:00:00","2019-03-17T00:00:00","2019-03-19T00:00:00","2019-03-20T00:00:00","2019-03-21T00:00:00","2019-03-22T00:00:00","2019-03-23T00:00:00","2019-03-24T00:00:00","2019-03-25T00:00:00","2019-03-26T00:00:00","2019-03-27T00:00:00","2019-03-28T00:00:00","2019-03-29T00:00:00","2019-03-30T00:00:00","2019-03-31T00:00:00","2019-04-01T00:00:00","2019-04-02T00:00:00","2019-04-03T00:00:00","2019-04-04T00:00:00","2019-04-05T00:00:00","2019-04-06T00:00:00","2019-04-07T00:00:00","2019-04-08T00:00:00","2019-04-09T00:00:00","2019-04-10T00:00:00","2019-04-11T00:00:00","2019-04-12T00:00:00","2019-04-13T00:00:00","2019-04-14T00:00:00","2019-04-15T00:00:00","2019-04-16T00:00:00","2019-04-18T00:00:00","2019-04-19T00:00:00","2019-04-20T00:00:00","2019-04-21T00:00:00","2019-04-23T00:00:00","2019-04-24T00:00:00","2019-04-29T00:00:00","2019-04-30T00:00:00","2019-05-01T00:00:00","2019-05-02T00:00:00","2019-05-03T00:00:00","2019-05-04T00:00:00","2019-05-05T00:00:00","2019-05-06T00:00:00","2019-05-07T00:00:00","2019-05-08T00:00:00","2019-05-09T00:00:00","2019-05-10T00:00:00","2019-05-11T00:00:00","2019-05-13T00:00:00","2019-05-14T00:00:00","2019-05-15T00:00:00","2019-05-16T00:00:00","2019-05-17T00:00:00","2019-05-18T00:00:00","2019-05-19T00:00:00","2019-05-20T00:00:00","2019-05-21T00:00:00","2019-05-22T00:00:00","2019-05-23T00:00:00","2019-05-24T00:00:00","2019-05-25T00:00:00","2019-05-26T00:00:00","2019-05-27T00:00:00","2019-05-28T00:00:00","2019-05-29T00:00:00","2019-05-30T00:00:00","2019-05-31T00:00:00","2019-06-01T00:00:00","2019-06-02T00:00:00","2019-06-03T00:00:00","2019-06-06T00:00:00","2019-06-10T00:00:00","2019-06-11T00:00:00","2019-06-12T00:00:00","2019-06-13T00:00:00","2019-06-14T00:00:00","2019-06-15T00:00:00","2019-06-16T00:00:00","2019-06-17T00:00:00","2019-06-18T00:00:00","2019-06-19T00:00:00","2019-06-20T00:00:00","2019-06-21T00:00:00","2019-06-22T00:00:00","2019-06-23T00:00:00","2019-06-25T00:00:00","2019-06-27T00:00:00","2019-06-28T00:00:00","2019-06-29T00:00:00","2019-06-30T00:00:00","2019-07-01T00:00:00","2019-07-03T00:00:00","2019-07-04T00:00:00","2019-07-06T00:00:00","2019-07-09T00:00:00","2019-07-10T00:00:00","2019-07-11T00:00:00","2019-07-12T00:00:00","2019-07-13T00:00:00","2019-07-14T00:00:00","2019-07-15T00:00:00","2019-07-16T00:00:00","2019-07-17T00:00:00","2019-07-18T00:00:00","2019-07-19T00:00:00","2019-07-20T00:00:00","2019-07-21T00:00:00","2019-07-22T00:00:00","2019-07-23T00:00:00","2019-07-24T00:00:00","2019-07-26T00:00:00","2019-07-28T00:00:00","2019-07-29T00:00:00","2019-07-31T00:00:00","2019-08-01T00:00:00","2019-08-02T00:00:00","2019-08-03T00:00:00","2019-08-05T00:00:00","2019-08-06T00:00:00","2019-08-07T00:00:00","2019-08-08T00:00:00","2019-08-09T00:00:00","2019-08-10T00:00:00","2019-08-11T00:00:00","2019-08-12T00:00:00","2019-08-13T00:00:00","2019-08-14T00:00:00","2019-08-15T00:00:00","2019-08-16T00:00:00","2019-08-22T00:00:00","2019-08-23T00:00:00","2019-08-24T00:00:00","2019-08-25T00:00:00","2019-08-26T00:00:00","2019-08-27T00:00:00","2019-08-28T00:00:00","2019-08-29T00:00:00","2019-08-30T00:00:00","2019-08-31T00:00:00","2019-09-02T00:00:00","2019-09-03T00:00:00","2019-09-04T00:00:00","2019-09-05T00:00:00","2019-09-06T00:00:00","2019-09-07T00:00:00","2019-09-08T00:00:00","2019-09-09T00:00:00","2019-09-11T00:00:00","2019-09-12T00:00:00","2019-09-13T00:00:00","2019-09-14T00:00:00","2019-09-15T00:00:00","2019-09-16T00:00:00","2019-09-17T00:00:00","2019-09-18T00:00:00","2019-09-19T00:00:00","2019-09-20T00:00:00","2019-09-21T00:00:00","2019-09-24T00:00:00","2019-09-26T00:00:00","2019-09-28T00:00:00","2019-09-29T00:00:00","2019-09-30T00:00:00","2019-10-01T00:00:00","2019-10-03T00:00:00","2019-10-05T00:00:00","2019-10-06T00:00:00","2019-10-07T00:00:00","2019-10-08T00:00:00","2019-10-09T00:00:00","2019-10-10T00:00:00","2019-10-11T00:00:00","2019-10-14T00:00:00","2019-10-16T00:00:00","2019-10-17T00:00:00","2019-10-18T00:00:00","2019-10-19T00:00:00","2019-10-22T00:00:00","2019-10-23T00:00:00","2019-10-25T00:00:00","2019-10-26T00:00:00","2019-10-27T00:00:00","2019-10-28T00:00:00","2019-10-29T00:00:00","2019-10-30T00:00:00","2019-10-31T00:00:00","2019-11-01T00:00:00","2019-11-02T00:00:00","2019-11-03T00:00:00","2019-11-04T00:00:00","2019-11-07T00:00:00","2019-11-08T00:00:00","2019-11-09T00:00:00","2019-11-10T00:00:00","2019-11-11T00:00:00","2019-11-12T00:00:00","2019-11-13T00:00:00","2019-11-14T00:00:00","2019-11-15T00:00:00","2019-11-16T00:00:00","2019-11-18T00:00:00","2019-11-19T00:00:00","2019-11-20T00:00:00","2019-11-21T00:00:00","2019-11-22T00:00:00","2019-11-27T00:00:00","2019-11-28T00:00:00","2019-11-29T00:00:00","2019-11-30T00:00:00","2019-12-01T00:00:00","2019-12-02T00:00:00","2019-12-03T00:00:00","2019-12-05T00:00:00","2019-12-06T00:00:00","2019-12-07T00:00:00","2019-12-08T00:00:00","2019-12-09T00:00:00","2019-12-11T00:00:00","2019-12-12T00:00:00","2019-12-14T00:00:00","2019-12-16T00:00:00","2019-12-17T00:00:00","2019-12-18T00:00:00","2019-12-20T00:00:00","2019-12-21T00:00:00","2019-12-22T00:00:00","2019-12-24T00:00:00","2019-12-26T00:00:00","2019-12-27T00:00:00","2019-12-28T00:00:00","2019-12-31T00:00:00","2020-01-02T00:00:00","2020-01-03T00:00:00","2020-01-05T00:00:00","2020-01-08T00:00:00","2020-01-09T00:00:00","2020-01-10T00:00:00","2020-01-11T00:00:00","2020-01-12T00:00:00","2020-01-13T00:00:00","2020-01-14T00:00:00","2020-01-15T00:00:00","2020-01-16T00:00:00","2020-01-17T00:00:00","2020-01-18T00:00:00","2020-01-20T00:00:00","2020-01-21T00:00:00","2020-01-22T00:00:00","2020-01-23T00:00:00","2020-01-24T00:00:00","2020-01-25T00:00:00","2020-01-26T00:00:00","2020-01-28T00:00:00","2020-01-30T00:00:00","2020-01-31T00:00:00","2020-02-02T00:00:00","2020-02-05T00:00:00","2020-02-06T00:00:00","2020-02-08T00:00:00","2020-02-09T00:00:00","2020-02-10T00:00:00","2020-02-11T00:00:00","2020-02-13T00:00:00","2020-02-14T00:00:00","2020-02-15T00:00:00","2020-02-16T00:00:00","2020-02-17T00:00:00","2020-02-18T00:00:00","2020-02-19T00:00:00","2020-02-20T00:00:00","2020-02-21T00:00:00","2020-02-22T00:00:00","2020-02-24T00:00:00","2020-02-26T00:00:00","2020-02-27T00:00:00","2020-02-28T00:00:00","2020-02-29T00:00:00","2020-03-01T00:00:00","2020-03-03T00:00:00","2020-03-04T00:00:00","2020-03-06T00:00:00","2020-03-07T00:00:00","2020-03-08T00:00:00","2020-03-09T00:00:00","2020-03-10T00:00:00","2020-03-14T00:00:00","2020-03-17T00:00:00","2020-03-18T00:00:00","2020-03-19T00:00:00","2020-03-20T00:00:00","2020-03-21T00:00:00","2020-03-22T00:00:00","2020-03-23T00:00:00","2020-03-24T00:00:00","2020-03-25T00:00:00","2020-03-26T00:00:00","2020-03-27T00:00:00","2020-03-28T00:00:00","2020-03-31T00:00:00","2020-04-01T00:00:00","2020-04-02T00:00:00","2020-04-04T00:00:00","2020-04-05T00:00:00","2020-04-06T00:00:00","2020-04-07T00:00:00","2020-04-09T00:00:00","2020-04-10T00:00:00","2020-04-12T00:00:00","2020-04-13T00:00:00","2020-04-14T00:00:00","2020-04-15T00:00:00","2020-04-16T00:00:00","2020-04-17T00:00:00","2020-04-20T00:00:00","2020-04-21T00:00:00","2020-04-22T00:00:00","2020-04-23T00:00:00","2020-04-24T00:00:00","2020-04-26T00:00:00","2020-04-27T00:00:00","2020-04-28T00:00:00","2020-04-29T00:00:00","2020-04-30T00:00:00","2020-05-01T00:00:00","2020-05-04T00:00:00","2020-05-08T00:00:00","2020-05-10T00:00:00","2020-05-11T00:00:00","2020-05-13T00:00:00","2020-05-14T00:00:00","2020-05-15T00:00:00","2020-05-16T00:00:00","2020-05-17T00:00:00","2020-05-18T00:00:00","2020-05-19T00:00:00","2020-05-20T00:00:00","2020-05-21T00:00:00","2020-05-22T00:00:00","2020-05-23T00:00:00","2020-05-24T00:00:00","2020-05-25T00:00:00","2020-05-26T00:00:00","2020-05-27T00:00:00","2020-05-28T00:00:00","2020-05-29T00:00:00","2020-05-30T00:00:00","2020-06-01T00:00:00","2020-06-02T00:00:00","2020-06-03T00:00:00","2020-06-04T00:00:00","2020-06-05T00:00:00","2020-06-06T00:00:00","2020-06-07T00:00:00","2020-06-08T00:00:00","2020-06-09T00:00:00","2020-06-11T00:00:00","2020-06-12T00:00:00","2020-06-13T00:00:00","2020-06-14T00:00:00","2020-06-18T00:00:00","2020-06-19T00:00:00","2020-06-20T00:00:00","2020-06-24T00:00:00","2020-06-25T00:00:00","2020-06-26T00:00:00","2020-06-27T00:00:00","2020-06-30T00:00:00","2020-07-02T00:00:00","2020-07-03T00:00:00","2020-07-04T00:00:00","2020-07-08T00:00:00","2020-07-09T00:00:00","2020-07-12T00:00:00","2020-07-13T00:00:00","2020-07-14T00:00:00","2020-07-15T00:00:00","2020-07-16T00:00:00","2020-07-18T00:00:00","2020-07-20T00:00:00","2020-07-21T00:00:00","2020-07-22T00:00:00","2020-07-24T00:00:00","2020-07-26T00:00:00","2020-07-28T00:00:00","2020-07-29T00:00:00","2020-07-30T00:00:00","2020-07-31T00:00:00","2020-08-01T00:00:00","2020-08-02T00:00:00","2020-08-03T00:00:00","2020-08-04T00:00:00","2020-08-07T00:00:00","2020-08-08T00:00:00","2020-08-09T00:00:00","2020-08-11T00:00:00","2020-08-12T00:00:00","2020-08-13T00:00:00","2020-08-14T00:00:00","2020-08-15T00:00:00","2020-08-16T00:00:00","2020-08-17T00:00:00","2020-08-18T00:00:00","2020-08-19T00:00:00","2020-08-21T00:00:00","2020-08-23T00:00:00","2020-08-24T00:00:00","2020-08-25T00:00:00","2020-08-26T00:00:00","2020-08-27T00:00:00","2020-08-28T00:00:00","2020-08-29T00:00:00","2020-08-30T00:00:00","2020-08-31T00:00:00","2020-09-01T00:00:00","2020-09-02T00:00:00","2020-09-04T00:00:00","2020-09-05T00:00:00","2020-09-06T00:00:00","2020-09-07T00:00:00","2020-09-10T00:00:00","2020-09-11T00:00:00","2020-09-12T00:00:00","2020-09-13T00:00:00","2020-09-14T00:00:00","2020-09-16T00:00:00","2020-09-18T00:00:00","2020-09-20T00:00:00","2020-09-21T00:00:00","2020-09-22T00:00:00","2020-09-23T00:00:00","2020-09-26T00:00:00","2020-09-27T00:00:00","2020-09-28T00:00:00","2020-09-29T00:00:00","2020-09-30T00:00:00","2020-10-01T00:00:00","2020-10-02T00:00:00","2020-10-03T00:00:00","2020-10-07T00:00:00","2020-10-08T00:00:00","2020-10-09T00:00:00","2020-10-10T00:00:00","2020-10-14T00:00:00","2020-10-16T00:00:00","2020-10-17T00:00:00","2020-10-19T00:00:00","2020-10-20T00:00:00","2020-10-21T00:00:00","2020-10-22T00:00:00","2020-10-24T00:00:00","2020-10-25T00:00:00","2020-10-26T00:00:00","2020-10-29T00:00:00","2020-10-30T00:00:00","2020-11-01T00:00:00","2020-11-02T00:00:00","2020-11-04T00:00:00","2020-11-06T00:00:00","2020-11-07T00:00:00","2020-11-09T00:00:00","2020-11-10T00:00:00","2020-11-11T00:00:00","2020-11-12T00:00:00","2020-11-13T00:00:00","2020-11-14T00:00:00","2020-11-15T00:00:00","2020-11-16T00:00:00","2020-11-18T00:00:00","2020-11-19T00:00:00","2020-11-21T00:00:00","2020-11-22T00:00:00","2020-11-23T00:00:00","2020-11-24T00:00:00","2020-11-25T00:00:00","2020-11-26T00:00:00","2020-11-27T00:00:00","2020-12-01T00:00:00","2020-12-03T00:00:00","2020-12-04T00:00:00","2020-12-06T00:00:00","2020-12-09T00:00:00","2020-12-12T00:00:00","2020-12-13T00:00:00","2020-12-14T00:00:00","2020-12-15T00:00:00","2020-12-16T00:00:00","2020-12-17T00:00:00","2020-12-18T00:00:00","2020-12-19T00:00:00","2020-12-20T00:00:00","2020-12-21T00:00:00","2020-12-23T00:00:00","2020-12-24T00:00:00","2020-12-26T00:00:00","2020-12-28T00:00:00","2020-12-29T00:00:00","2020-12-30T00:00:00","2020-12-31T00:00:00","2021-01-01T00:00:00","2021-01-03T00:00:00","2021-01-05T00:00:00","2021-01-06T00:00:00","2021-01-08T00:00:00","2021-01-09T00:00:00","2021-01-10T00:00:00","2021-01-12T00:00:00","2021-01-14T00:00:00","2021-01-15T00:00:00","2021-01-16T00:00:00","2021-01-17T00:00:00","2021-01-18T00:00:00","2021-01-19T00:00:00","2021-01-20T00:00:00","2021-01-21T00:00:00","2021-01-23T00:00:00","2021-01-24T00:00:00","2021-01-25T00:00:00","2021-01-26T00:00:00","2021-01-28T00:00:00","2021-01-30T00:00:00","2021-02-02T00:00:00","2021-02-03T00:00:00","2021-02-04T00:00:00","2021-02-05T00:00:00","2021-02-06T00:00:00","2021-02-07T00:00:00","2021-02-08T00:00:00","2021-02-09T00:00:00","2021-02-10T00:00:00","2021-02-11T00:00:00","2021-02-13T00:00:00","2021-02-15T00:00:00","2021-02-16T00:00:00","2021-02-17T00:00:00","2021-02-18T00:00:00","2021-02-19T00:00:00","2021-02-21T00:00:00","2021-02-22T00:00:00","2021-02-23T00:00:00","2021-02-25T00:00:00","2021-02-26T00:00:00","2021-02-27T00:00:00","2021-02-28T00:00:00","2021-03-01T00:00:00","2021-03-02T00:00:00","2021-03-03T00:00:00","2021-03-04T00:00:00","2021-03-06T00:00:00","2021-03-07T00:00:00","2021-03-08T00:00:00","2021-03-09T00:00:00","2021-03-12T00:00:00","2021-03-13T00:00:00","2021-03-16T00:00:00","2021-03-17T00:00:00","2021-03-20T00:00:00","2021-03-21T00:00:00","2021-03-23T00:00:00","2021-03-25T00:00:00","2021-03-26T00:00:00","2021-03-27T00:00:00","2021-03-30T00:00:00","2021-03-31T00:00:00","2021-04-01T00:00:00","2021-04-02T00:00:00","2021-04-03T00:00:00","2021-04-04T00:00:00","2021-04-05T00:00:00","2021-04-06T00:00:00","2021-04-07T00:00:00","2021-04-09T00:00:00","2021-04-11T00:00:00","2021-04-12T00:00:00","2021-04-14T00:00:00","2021-04-16T00:00:00","2021-04-17T00:00:00","2021-04-19T00:00:00","2021-04-20T00:00:00","2021-04-21T00:00:00","2021-04-22T00:00:00","2021-04-23T00:00:00","2021-04-24T00:00:00","2021-04-25T00:00:00","2021-04-26T00:00:00","2021-04-27T00:00:00","2021-04-29T00:00:00","2021-05-01T00:00:00","2021-05-02T00:00:00","2021-05-03T00:00:00","2021-05-04T00:00:00","2021-05-06T00:00:00","2021-05-07T00:00:00","2021-05-09T00:00:00","2021-05-11T00:00:00","2021-05-13T00:00:00","2021-05-15T00:00:00","2021-05-16T00:00:00","2021-05-17T00:00:00","2021-05-19T00:00:00","2021-05-22T00:00:00","2021-05-24T00:00:00","2021-05-25T00:00:00","2021-05-27T00:00:00","2021-05-28T00:00:00","2021-05-31T00:00:00","2021-06-02T00:00:00","2021-06-04T00:00:00","2021-06-05T00:00:00","2021-06-06T00:00:00","2021-06-11T00:00:00","2021-06-13T00:00:00","2021-06-15T00:00:00","2021-06-16T00:00:00","2021-06-18T00:00:00","2021-06-19T00:00:00","2021-06-20T00:00:00","2021-06-22T00:00:00","2021-06-25T00:00:00","2021-06-26T00:00:00","2021-06-27T00:00:00","2021-06-30T00:00:00","2021-07-01T00:00:00","2021-07-02T00:00:00","2021-07-05T00:00:00","2021-07-06T00:00:00","2021-07-08T00:00:00","2021-07-10T00:00:00","2021-07-11T00:00:00","2021-07-12T00:00:00","2021-07-14T00:00:00","2021-07-16T00:00:00","2021-07-17T00:00:00","2021-07-18T00:00:00","2021-07-19T00:00:00","2021-07-20T00:00:00","2021-07-21T00:00:00","2021-07-22T00:00:00","2021-07-23T00:00:00","2021-07-25T00:00:00","2021-07-26T00:00:00","2021-07-28T00:00:00","2021-07-29T00:00:00","2021-07-31T00:00:00","2021-08-01T00:00:00","2021-08-02T00:00:00","2021-08-03T00:00:00","2021-08-04T00:00:00","2021-08-05T00:00:00","2021-08-06T00:00:00","2021-08-07T00:00:00","2021-08-08T00:00:00","2021-08-09T00:00:00","2021-08-10T00:00:00","2021-08-11T00:00:00","2021-08-14T00:00:00","2021-08-15T00:00:00","2021-08-16T00:00:00","2021-08-20T00:00:00","2021-08-21T00:00:00","2021-08-23T00:00:00","2021-08-24T00:00:00","2021-08-28T00:00:00","2021-08-30T00:00:00","2021-08-31T00:00:00","2021-09-01T00:00:00","2021-09-02T00:00:00","2021-09-03T00:00:00","2021-09-04T00:00:00","2021-09-05T00:00:00","2021-09-07T00:00:00","2021-09-08T00:00:00","2021-09-09T00:00:00","2021-09-11T00:00:00","2021-09-12T00:00:00","2021-09-14T00:00:00","2021-09-15T00:00:00","2021-09-16T00:00:00","2021-09-17T00:00:00","2021-09-19T00:00:00","2021-09-20T00:00:00","2021-09-21T00:00:00","2021-09-22T00:00:00","2021-09-23T00:00:00","2021-09-25T00:00:00","2021-09-26T00:00:00","2021-09-27T00:00:00","2021-09-28T00:00:00","2021-09-29T00:00:00","2021-09-30T00:00:00","2021-10-01T00:00:00","2021-10-02T00:00:00","2021-10-03T00:00:00","2021-10-04T00:00:00","2021-10-06T00:00:00","2021-10-07T00:00:00","2021-10-11T00:00:00","2021-10-12T00:00:00","2021-10-13T00:00:00","2021-10-15T00:00:00","2021-10-17T00:00:00","2021-10-18T00:00:00","2021-10-20T00:00:00","2021-10-21T00:00:00","2021-10-22T00:00:00","2021-10-23T00:00:00","2021-10-25T00:00:00","2021-10-27T00:00:00","2021-10-28T00:00:00","2021-10-29T00:00:00","2021-10-30T00:00:00","2021-11-02T00:00:00","2021-11-04T00:00:00","2021-11-08T00:00:00","2021-11-11T00:00:00","2021-11-13T00:00:00","2021-11-14T00:00:00","2021-11-16T00:00:00","2021-11-17T00:00:00","2021-11-18T00:00:00","2021-11-19T00:00:00","2021-11-20T00:00:00","2021-11-22T00:00:00","2021-11-24T00:00:00","2021-11-27T00:00:00","2021-11-29T00:00:00","2021-11-30T00:00:00","2021-12-01T00:00:00","2021-12-02T00:00:00","2021-12-06T00:00:00","2021-12-07T00:00:00","2021-12-08T00:00:00","2021-12-09T00:00:00","2021-12-10T00:00:00","2021-12-11T00:00:00","2021-12-13T00:00:00","2021-12-14T00:00:00","2021-12-15T00:00:00","2021-12-16T00:00:00","2021-12-17T00:00:00","2021-12-18T00:00:00","2021-12-19T00:00:00","2021-12-20T00:00:00","2021-12-22T00:00:00","2021-12-23T00:00:00","2021-12-24T00:00:00","2021-12-26T00:00:00","2021-12-28T00:00:00","2021-12-29T00:00:00","2022-01-01T00:00:00","2022-01-02T00:00:00","2022-01-03T00:00:00","2022-01-04T00:00:00","2022-01-05T00:00:00","2022-01-06T00:00:00","2022-01-07T00:00:00","2022-01-08T00:00:00","2022-01-10T00:00:00","2022-01-11T00:00:00","2022-01-12T00:00:00","2022-01-14T00:00:00","2022-01-15T00:00:00","2022-01-16T00:00:00","2022-01-19T00:00:00","2022-01-20T00:00:00","2022-01-21T00:00:00","2022-01-22T00:00:00","2022-01-23T00:00:00","2022-01-24T00:00:00","2022-01-25T00:00:00","2022-01-26T00:00:00","2022-01-27T00:00:00","2022-01-28T00:00:00","2022-01-29T00:00:00","2022-01-30T00:00:00","2022-02-02T00:00:00","2022-02-03T00:00:00","2022-02-04T00:00:00","2022-02-06T00:00:00","2022-02-09T00:00:00","2022-02-10T00:00:00","2022-02-11T00:00:00","2022-02-12T00:00:00","2022-02-13T00:00:00","2022-02-14T00:00:00","2022-02-15T00:00:00","2022-02-16T00:00:00","2022-02-18T00:00:00","2022-02-19T00:00:00","2022-02-20T00:00:00","2022-02-21T00:00:00","2022-02-22T00:00:00","2022-02-23T00:00:00","2022-02-24T00:00:00","2022-02-25T00:00:00","2022-02-26T00:00:00","2022-02-27T00:00:00","2022-03-01T00:00:00","2022-03-02T00:00:00","2022-03-03T00:00:00","2022-03-04T00:00:00","2022-03-05T00:00:00","2022-03-06T00:00:00","2022-03-07T00:00:00","2022-03-08T00:00:00","2022-03-09T00:00:00","2022-03-10T00:00:00","2022-03-11T00:00:00","2022-03-12T00:00:00","2022-03-14T00:00:00","2022-03-15T00:00:00","2022-03-17T00:00:00","2022-03-18T00:00:00","2022-03-19T00:00:00","2022-03-20T00:00:00","2022-03-21T00:00:00","2022-03-22T00:00:00","2022-03-24T00:00:00","2022-03-25T00:00:00","2022-03-26T00:00:00","2022-03-27T00:00:00","2022-03-28T00:00:00","2022-03-29T00:00:00","2022-03-30T00:00:00","2022-03-31T00:00:00","2022-04-01T00:00:00","2022-04-02T00:00:00","2022-04-03T00:00:00","2022-04-06T00:00:00","2022-04-07T00:00:00","2022-04-08T00:00:00","2022-04-09T00:00:00","2022-04-10T00:00:00","2022-04-11T00:00:00","2022-04-12T00:00:00","2022-04-13T00:00:00","2022-04-14T00:00:00","2022-04-15T00:00:00","2022-04-16T00:00:00","2022-04-18T00:00:00","2022-04-19T00:00:00","2022-04-21T00:00:00","2022-04-23T00:00:00","2022-04-25T00:00:00","2022-04-26T00:00:00","2022-04-27T00:00:00","2022-04-28T00:00:00","2022-05-04T00:00:00","2022-05-06T00:00:00","2022-05-07T00:00:00","2022-05-11T00:00:00","2022-05-15T00:00:00","2022-05-17T00:00:00","2022-05-19T00:00:00","2022-05-20T00:00:00","2022-05-24T00:00:00","2022-05-25T00:00:00","2022-05-28T00:00:00","2022-05-29T00:00:00","2022-05-31T00:00:00","2022-06-01T00:00:00","2022-06-02T00:00:00","2022-06-05T00:00:00","2022-06-06T00:00:00","2022-06-08T00:00:00","2022-06-10T00:00:00","2022-06-11T00:00:00","2022-06-14T00:00:00","2022-06-15T00:00:00","2022-06-16T00:00:00","2022-06-18T00:00:00","2022-06-19T00:00:00","2022-06-21T00:00:00","2022-06-23T00:00:00","2022-06-24T00:00:00","2022-06-25T00:00:00","2022-06-26T00:00:00","2022-06-28T00:00:00","2022-06-29T00:00:00","2022-06-30T00:00:00","2022-07-01T00:00:00","2022-07-04T00:00:00","2022-07-05T00:00:00","2022-07-07T00:00:00","2022-07-08T00:00:00","2022-07-09T00:00:00","2022-07-10T00:00:00","2022-07-14T00:00:00","2022-07-17T00:00:00","2022-07-18T00:00:00","2022-07-19T00:00:00","2022-07-20T00:00:00","2022-07-21T00:00:00","2022-07-23T00:00:00","2022-07-25T00:00:00","2022-07-26T00:00:00","2022-07-27T00:00:00","2022-07-31T00:00:00","2022-08-03T00:00:00","2022-08-05T00:00:00","2022-08-09T00:00:00","2022-08-10T00:00:00","2022-08-12T00:00:00","2022-08-13T00:00:00","2022-08-14T00:00:00","2022-08-15T00:00:00","2022-08-16T00:00:00","2022-08-17T00:00:00","2022-08-18T00:00:00","2022-08-19T00:00:00","2022-08-20T00:00:00","2022-08-21T00:00:00","2022-08-22T00:00:00","2022-08-23T00:00:00","2022-08-24T00:00:00","2022-08-25T00:00:00","2022-08-26T00:00:00","2022-08-27T00:00:00","2022-08-28T00:00:00","2022-08-30T00:00:00","2022-08-31T00:00:00","2022-09-01T00:00:00","2022-09-03T00:00:00","2022-09-05T00:00:00","2022-09-07T00:00:00","2022-09-08T00:00:00","2022-09-09T00:00:00","2022-09-13T00:00:00","2022-09-14T00:00:00","2022-09-15T00:00:00","2022-09-16T00:00:00","2022-09-17T00:00:00","2022-09-18T00:00:00","2022-09-19T00:00:00","2022-09-22T00:00:00","2022-09-23T00:00:00","2022-09-25T00:00:00","2022-09-26T00:00:00","2022-09-27T00:00:00","2022-09-28T00:00:00","2022-10-01T00:00:00","2022-10-02T00:00:00","2022-10-03T00:00:00","2022-10-05T00:00:00","2022-10-07T00:00:00","2022-10-09T00:00:00","2022-10-10T00:00:00","2022-10-12T00:00:00","2022-10-13T00:00:00","2022-10-14T00:00:00","2022-10-15T00:00:00","2022-10-19T00:00:00","2022-10-20T00:00:00","2022-10-22T00:00:00","2022-10-25T00:00:00","2022-10-26T00:00:00","2022-10-27T00:00:00","2022-10-29T00:00:00","2022-10-30T00:00:00","2022-11-01T00:00:00","2022-11-02T00:00:00","2022-11-03T00:00:00","2022-11-04T00:00:00","2022-11-05T00:00:00","2022-11-07T00:00:00","2022-11-08T00:00:00","2022-11-11T00:00:00","2022-11-12T00:00:00","2022-11-14T00:00:00","2022-11-16T00:00:00","2022-11-17T00:00:00","2022-11-18T00:00:00","2022-11-19T00:00:00","2022-11-21T00:00:00","2022-11-22T00:00:00","2022-11-23T00:00:00","2022-11-24T00:00:00","2022-11-25T00:00:00","2022-11-26T00:00:00","2022-11-27T00:00:00","2022-11-28T00:00:00","2022-11-29T00:00:00","2022-11-30T00:00:00","2022-12-01T00:00:00","2022-12-02T00:00:00","2022-12-03T00:00:00","2022-12-04T00:00:00","2022-12-05T00:00:00","2022-12-08T00:00:00","2022-12-10T00:00:00","2022-12-11T00:00:00","2022-12-13T00:00:00","2022-12-17T00:00:00","2022-12-18T00:00:00","2022-12-19T00:00:00","2022-12-20T00:00:00","2022-12-22T00:00:00","2022-12-27T00:00:00","2022-12-28T00:00:00","2022-12-29T00:00:00","2022-12-31T00:00:00","2023-01-02T00:00:00","2023-01-05T00:00:00","2023-01-07T00:00:00","2023-01-08T00:00:00","2023-01-09T00:00:00","2023-01-10T00:00:00","2023-01-12T00:00:00","2023-01-13T00:00:00","2023-01-16T00:00:00","2023-01-19T00:00:00","2023-01-22T00:00:00","2023-01-26T00:00:00","2023-01-31T00:00:00","2023-02-01T00:00:00","2023-02-03T00:00:00","2023-02-09T00:00:00","2023-02-10T00:00:00","2023-02-11T00:00:00","2023-02-12T00:00:00","2023-02-13T00:00:00","2023-02-14T00:00:00","2023-02-15T00:00:00","2023-02-16T00:00:00","2023-02-17T00:00:00","2023-02-20T00:00:00","2023-02-21T00:00:00","2023-02-22T00:00:00","2023-02-24T00:00:00","2023-02-27T00:00:00","2023-02-28T00:00:00","2023-03-01T00:00:00","2023-03-02T00:00:00","2023-03-04T00:00:00","2023-03-06T00:00:00","2023-03-07T00:00:00","2023-03-08T00:00:00","2023-03-09T00:00:00","2023-03-11T00:00:00","2023-03-14T00:00:00","2023-03-15T00:00:00","2023-03-16T00:00:00","2023-03-18T00:00:00","2023-03-20T00:00:00","2023-03-21T00:00:00","2023-03-22T00:00:00","2023-03-23T00:00:00","2023-03-24T00:00:00","2023-03-25T00:00:00","2023-03-26T00:00:00","2023-03-27T00:00:00","2023-03-29T00:00:00","2023-03-31T00:00:00","2023-04-01T00:00:00","2023-04-03T00:00:00","2023-04-04T00:00:00","2023-04-05T00:00:00","2023-04-07T00:00:00","2023-04-08T00:00:00","2023-04-11T00:00:00","2023-04-14T00:00:00","2023-04-16T00:00:00","2023-04-20T00:00:00","2023-04-22T00:00:00","2023-04-24T00:00:00","2023-04-25T00:00:00","2023-04-26T00:00:00","2023-04-28T00:00:00","2023-04-29T00:00:00","2023-04-30T00:00:00","2023-05-02T00:00:00","2023-05-04T00:00:00","2023-05-06T00:00:00","2023-05-07T00:00:00","2023-05-08T00:00:00","2023-05-09T00:00:00","2023-05-11T00:00:00","2023-05-12T00:00:00","2023-05-13T00:00:00","2023-05-14T00:00:00","2023-05-16T00:00:00","2023-05-17T00:00:00","2023-05-18T00:00:00","2023-05-20T00:00:00","2023-05-21T00:00:00","2023-05-23T00:00:00","2023-05-24T00:00:00","2023-05-27T00:00:00","2023-05-28T00:00:00","2023-05-30T00:00:00","2023-06-05T00:00:00","2023-06-06T00:00:00","2023-06-08T00:00:00","2023-06-09T00:00:00","2023-06-11T00:00:00","2023-06-12T00:00:00","2023-06-13T00:00:00","2023-06-15T00:00:00","2023-06-17T00:00:00","2023-06-18T00:00:00","2023-06-19T00:00:00","2023-06-20T00:00:00","2023-06-21T00:00:00","2023-06-23T00:00:00","2023-06-25T00:00:00","2023-06-26T00:00:00","2023-06-28T00:00:00","2023-06-29T00:00:00","2023-06-30T00:00:00","2023-07-02T00:00:00","2023-07-03T00:00:00","2023-07-04T00:00:00","2023-07-05T00:00:00","2023-07-06T00:00:00","2023-07-07T00:00:00","2023-07-09T00:00:00","2023-07-11T00:00:00","2023-07-12T00:00:00","2023-07-16T00:00:00","2023-07-17T00:00:00","2023-07-22T00:00:00","2023-07-23T00:00:00","2023-07-27T00:00:00","2023-07-30T00:00:00","2023-07-31T00:00:00","2023-08-01T00:00:00","2023-08-02T00:00:00","2023-08-03T00:00:00","2023-08-05T00:00:00","2023-08-06T00:00:00","2023-08-08T00:00:00","2023-08-09T00:00:00","2023-08-10T00:00:00","2023-08-11T00:00:00","2023-08-13T00:00:00","2023-08-14T00:00:00","2023-08-17T00:00:00","2023-08-19T00:00:00","2023-08-20T00:00:00","2023-08-23T00:00:00","2023-08-25T00:00:00","2023-08-26T00:00:00","2023-08-27T00:00:00","2023-08-30T00:00:00","2023-08-31T00:00:00","2023-09-02T00:00:00","2023-09-06T00:00:00","2023-09-10T00:00:00","2023-09-11T00:00:00","2023-09-14T00:00:00","2023-09-20T00:00:00","2023-09-22T00:00:00","2023-09-23T00:00:00","2023-09-24T00:00:00","2023-09-25T00:00:00","2023-09-26T00:00:00","2023-10-03T00:00:00","2023-10-07T00:00:00","2023-10-08T00:00:00","2023-10-11T00:00:00","2023-10-17T00:00:00","2023-10-18T00:00:00","2023-10-21T00:00:00","2023-10-23T00:00:00","2023-10-24T00:00:00","2023-10-26T00:00:00","2023-10-28T00:00:00","2023-10-29T00:00:00","2023-10-30T00:00:00","2023-10-31T00:00:00","2023-11-01T00:00:00","2023-11-03T00:00:00","2023-11-05T00:00:00","2023-11-06T00:00:00","2023-11-07T00:00:00","2023-11-08T00:00:00","2023-11-10T00:00:00","2023-11-14T00:00:00","2023-11-17T00:00:00","2023-11-18T00:00:00","2023-11-22T00:00:00","2023-11-24T00:00:00","2023-11-27T00:00:00","2023-11-29T00:00:00","2023-11-30T00:00:00","2023-12-02T00:00:00","2023-12-05T00:00:00","2023-12-07T00:00:00","2023-12-13T00:00:00","2023-12-15T00:00:00","2023-12-17T00:00:00","2023-12-19T00:00:00","2023-12-20T00:00:00","2023-12-22T00:00:00","2023-12-24T00:00:00","2023-12-28T00:00:00","2023-12-31T00:00:00","2024-01-01T00:00:00","2024-01-02T00:00:00","2024-01-06T00:00:00","2024-01-07T00:00:00","2024-01-09T00:00:00","2024-01-11T00:00:00","2024-01-14T00:00:00","2024-01-19T00:00:00","2024-01-20T00:00:00","2024-01-22T00:00:00","2024-01-23T00:00:00","2024-01-26T00:00:00","2024-01-27T00:00:00","2024-01-28T00:00:00","2024-01-29T00:00:00","2024-02-01T00:00:00","2024-02-03T00:00:00","2024-02-04T00:00:00","2024-02-08T00:00:00","2024-02-09T00:00:00","2024-02-11T00:00:00","2024-02-15T00:00:00","2024-02-16T00:00:00","2024-02-19T00:00:00","2024-02-20T00:00:00","2024-02-21T00:00:00","2024-02-23T00:00:00","2024-02-25T00:00:00","2024-02-27T00:00:00","2024-02-29T00:00:00","2024-03-02T00:00:00","2024-03-07T00:00:00","2024-03-10T00:00:00","2024-03-11T00:00:00","2024-03-12T00:00:00","2024-03-14T00:00:00","2024-03-16T00:00:00","2024-03-22T00:00:00","2024-03-23T00:00:00","2024-03-27T00:00:00","2024-03-28T00:00:00","2024-03-29T00:00:00","2024-03-30T00:00:00","2024-04-01T00:00:00","2024-04-06T00:00:00","2024-04-07T00:00:00","2024-04-08T00:00:00","2024-04-13T00:00:00","2024-04-14T00:00:00","2024-04-15T00:00:00","2024-04-16T00:00:00","2024-04-17T00:00:00","2024-04-18T00:00:00","2024-04-19T00:00:00","2024-04-20T00:00:00","2024-04-21T00:00:00","2024-04-24T00:00:00","2024-04-25T00:00:00","2024-04-26T00:00:00","2024-04-28T00:00:00","2024-04-29T00:00:00","2024-04-30T00:00:00","2024-05-02T00:00:00","2024-05-03T00:00:00","2024-05-04T00:00:00","2024-05-05T00:00:00","2024-05-06T00:00:00","2024-05-07T00:00:00","2024-05-08T00:00:00","2024-05-09T00:00:00","2024-05-10T00:00:00","2024-05-11T00:00:00","2024-05-12T00:00:00","2024-05-13T00:00:00","2024-05-16T00:00:00","2024-05-17T00:00:00","2024-05-19T00:00:00","2024-05-22T00:00:00","2024-05-24T00:00:00","2024-05-26T00:00:00","2024-05-30T00:00:00","2024-06-01T00:00:00","2024-06-02T00:00:00","2024-06-03T00:00:00","2024-06-07T00:00:00","2024-06-09T00:00:00","2024-06-12T00:00:00","2024-06-14T00:00:00","2024-06-17T00:00:00","2024-06-22T00:00:00","2024-06-23T00:00:00","2024-06-24T00:00:00","2024-06-25T00:00:00","2024-06-27T00:00:00","2024-06-28T00:00:00","2024-07-01T00:00:00","2024-07-02T00:00:00","2024-07-04T00:00:00","2024-07-05T00:00:00","2024-07-06T00:00:00","2024-07-07T00:00:00","2024-07-10T00:00:00","2024-07-11T00:00:00","2024-07-12T00:00:00","2024-07-13T00:00:00","2024-07-14T00:00:00","2024-07-15T00:00:00","2024-07-16T00:00:00","2024-07-17T00:00:00","2024-07-19T00:00:00","2024-07-20T00:00:00","2024-07-24T00:00:00","2024-07-25T00:00:00","2024-07-26T00:00:00","2024-07-27T00:00:00","2024-07-29T00:00:00","2024-07-30T00:00:00","2024-08-01T00:00:00","2024-08-02T00:00:00","2024-08-03T00:00:00","2024-08-05T00:00:00","2024-08-13T00:00:00","2024-08-15T00:00:00","2024-08-17T00:00:00","2024-08-18T00:00:00","2024-08-19T00:00:00","2024-08-20T00:00:00","2024-08-21T00:00:00","2024-08-22T00:00:00","2024-08-24T00:00:00","2024-08-25T00:00:00","2024-08-26T00:00:00","2024-08-29T00:00:00"],"xaxis":"x","y":[15,20,24,36,51,69,75,82,85,87,96,105,112,122,130,134,137,147,153,164,171,174,177,179,191,205,211,221,233,223,223,228,222,222,218,218,217,216,222,222,223,225,225,226,226,229,224,224,217,215,213,215,215,205,197,195,192,184,180,183,187,183,170,158,154,151,155,151,143,137,133,124,116,115,114,117,112,109,105,107,108,116,115,113,110,104,102,104,100,89,89,90,90,93,93,89,87,89,93,90,94,96,94,90,86,89,94,100,98,97,91,95,93,98,104,105,105,106,108,111,109,113,110,108,107,110,114,109,110,110,111,113,116,114,111,108,102,102,106,103,100,102,101,97,95,98,96,97,94,95,90,90,93,98,95,90,92,93,90,89,90,90,89,90,93,98,102,97,97,97,96,93,93,94,89,90,87,89,90,90,89,87,88,88,87,84,81,83,85,83,82,84,83,79,80,79,77,80,80,80,82,83,84,88,87,87,85,86,90,91,90,87,89,92,94,94,91,87,86,89,91,93,96,90,89,89,87,92,96,97,95,94,92,91,91,93,90,89,88,88,86,85,83,81,82,82,85,85,80,77,75,73,75,74,75,78,73,69,68,68,68,67,70,71,71,73,70,70,75,76,76,75,76,76,83,81,83,84,87,87,88,90,90,91,87,86,85,85,86,90,90,87,85,84,84,84,86,81,82,80,81,81,83,78,79,77,76,73,73,78,75,74,78,82,83,87,85,86,81,87,88,88,89,88,89,88,92,93,96,97,95,93,93,94,95,96,95,98,91,90,93,90,89,90,87,86,84,84,77,75,78,75,75,74,73,70,66,65,65,65,64,65,64,65,64,68,65,65,66,63,59,56,55,54,54,54,54,54,56,53,53,52,54,54,53,53,56,54,55,57,56,55,55,56,53,53,53,57,58,59,59,58,58,61,69,73,73,73,76,76,77,80,83,83,84,81,84,84,83,82,83,82,81,80,80,81,76,75,75,75,75,75,74,66,63,64,66,66,68,67,63,60,61,60,58,57,57,59,60,60,63,63,65,66,65,67,67,68,70,71,72,72,71,73,72,69,68,67,69,69,71,70,71,71,69,70,67,65,63,61,61,59,60,60,58,60,60,60,60,60,59,60,58,61,62,61,62,61,60,61,64,63,63,63,62,65,67,68,67,67,67,66,66,68,68,67,67,68,69,68,68,68,66,64,64,63,64,66,64,64,66,68,68,68,67,67,67,67,70,73,73,75,78,79,80,80,78,79,79,79,78,78,78,77,78,77,75,75,74,72,71,71,70,71,70,69,69,68,67,66,67,64,62,60,58,59,56,56,56,56,56,57,58,57,60,60,59,59,61,60,61,62,60,59,60,59,57,55,56,53,53,54,55,56,55,54,54,53,53,53,54,56,55,52,52,54,53,52,53,52,52,52,55,54,55,55,55,57,56,54,54,53,53,54,55,58,59,59,59,58,55,58,57,58,56,58,59,58,61,60,59,63,63,62,62,64,63,63,63,62,63,62,61,60,57,56,57,56,55,55,52,52,51,51,48,46,47,44,45,46,40,40,41,45,44,43,46,47,47,50,51,55,56,56,59,59,59,61,62,64,65,65,65,69,69,68,69,69,72,71,75,74,70,71,70,70,69,71,69,68,65,67,69,67,67,67,73,76,74,76,76,77,73,75,80,80,79,76,76,77,79,84,84,86,83,83,81,81,82,83,80,82,83,83,83,77,73,74,73,73,78,79,80,77,77,77,79,85,80,80,75,74,72,75,76,77,78,79,78,79,76,74,73,74,73,73,72,70,72,66,66,64,62,64,65,62,60,63,61,63,62,65,62,62,62,63,62,66,66,65,65,65,64,65,66,68,70,69,69,68,68,68,66,65,65,63,62,65,64,64,63,63,62,60,56,55,52,53,55,56,57,59,60,59,57,55,56,59,63,64,64,67,67,68,69,67,64,65,66,69,70,70,71,72,74,72,73,72,78,80,78,75,76,76,80,79,78,77,77,77,74,74,73,71,71,72,71,70,66,65,66,67,67,68,69,70,71,64,62,63,65,65,69,68,68,67,64,62,64,64,65,65,65,69,69,71,72,71,72,71,70,81,78,79,77,75,75,77,76,75,75,74,71,73,73,73,73,71,71,74,74,73,71,70,67,66,66,65,67,66,55,58,60,62,65,65,64,66,70,70,70,75,74,73,73,75,78,80,78,78,78,77,77,79,79,79,80,80,81,84,82,78,75,72,74,73,71,66,66,64,60,60,62,63,61,61,58,56,56,56,59,62,60,64,64,64,63,63,60,62,63,66,66,64,65,66,69,68,67,66,64,63,64,64,63,64,65,65,65,61,58,61,58,58,57,57,58,59,56,55,52,53,55,54,53,51,52,52,52,53,52,53,55,53,52,52,53,53,54,54,53,54,57,57,57,58,57,60,60,60,62,64,63,64,65,65,66,67,68,69,67,66,66,67,67,66,66,65,65,63,64,63,63,63,62,62,59,59,58,55,53,53,53,51,50,52,52,50,49,50,52,53,52,52,52,53,53,54,54,52,50,52,53,54,53,53,53,55,58,56,57,56,57,57,56,56,56,56,56,54,53,55,54,55,54,56,55,56,56,56,54,54,51,51,53,55,53,50,50,50,51,51,52,50,50,50,50,50,52,52,52,54,55,55,54,55,54,53,54,54,53,53,55,54,53,54,55,56,56,55,55,54,55,56,56,56,55,55,56,54,53,51,51,50,53,53,55,54,55,55,56,55,55,55,54,55,55,54,54,56,56,57,57,61,64,65,63,64,64,63,63,65,67,63,65,63,64,64,63,62,62,61,60,60,59,59,59,59,57,58,56,56,53,51,49,49,50,51,52,52,50,50,50,49,50,49,48,48,49,48,53,55,55,55,54,58,59,59,61,63,61,62,62,63,65,63,62,62,62,62,60,64,66,65,66,66,68,67,67,64,65,66,65,65,64,64,63,61,62,63,62,62,62,61,60,61,60,60,60,60,56,53,53,53,54,53,53,53,51,51,50,54,55,52,51,52,51,48,47,48,48,49,51,53,52,53,53,53,57,57,59,61,60,59,58,59,60,60,57,58,55,54,55,55,54,54,54,54,52,51,50,46,44,44,44,44,45,42,42,40,40,41,41,41,40,39,39,39,38,38,40,41,41,41,41,43,43,43,45,46,46,46,46,45,45,63,64,64,65,66,66,66,66,67,68,68,68,68,68,67,65,65,68,68,66,66,67,65,63,63,63,66,68,68,50,49,50,50,47,46,46,46,45,44,44,44,47,49,48,49,51,48,49,49,49,49,49,49,50,50,49,48,49,50,50,50,50,51,52,52,52,52,52,52,52,49,48,50,50,48,49,48,49,49,48,49,50,49,50,48,50,49,47,47,46,46,46,45,47,49,49,50,50,51,52,51,49,48,49,48,50,51,52,52,51,50,50,49,50,48,49,50,49,49,50,49,49,48,46,47,46,46,47,47,46,47,48,47,47,45,44,43,43,44,46,46,47,48,47,46,46,46,47,45,45,46,45,46,45,45,46,44,44,46,45,44,47,48,50,51,51,51,50,50,50,49,47,47,47,47,47,46,46,46,45,46,47,47,47,46,46,45,45,45,45,42,42,41,39,39,39,39,37,39,40,42,42,43,43,44,45,45,45,46,45,45,45,47,47,50,50,48,48,48,50,50,51,51,51,51,52,54,52,51,49,49,49,50,50,51,52,53,54,54,53,55,53,53,50,52,52,52,54,52,53,51,52,52,53,52,50,51,52,55,56,55,56,56,55,55,54,53,53,52,51,53,54,55,53,54,55,53,57,55,56,56,58,62,63,66,66,66,65,66,67,64,63,63,62,62,62,62,63,63,63,63,62,62,62,63,64,60,61,60,59,58,54,53,50,50,51,51,50,49,51,51,50,50,51,50,50,49,48,46,48,48,48,47,47,46,47,46,46,46,45,44,45,45,44,44,42,41,42,41,41,42,42,41,41,42,42,42,42,40,40,40,40,38,39,38,40,40,40,40,40,39,40,40,38,38,39,38,37,37,37,37,39,39,40,42,42,42,43,43,43,43,43,43,43,42,42,42,46,46,46,45,45,46,48,48,48,49,50,50,50,48,48,46,45,45,46,44,44,45,46,46,45,45,44,46,46,42,42,43,45,45,45,44,43,43,43,42,42,42,42,43,43,42,42,41,44,45,44,44,44,44,45,45,44,46,46,47,49,47,47,46,45,45,46,46,47,46,46,47,48,48,48,48,48,46,47,47,46,46,46,45,45,44,42,42,42,41,43,43,43,43,43,42,41,41,41,41,43,41,41,42,42,43,45,43,46,46,46,47,48,48,48,48,49,48,46,45,46,46,46,46,46,47,46,47,47,44,44,44,43,45,44,41,41,38,38,39,38,37,37,37,37,36,36,38,37,37,38,38,38,38,37,37,36,36,37,38,38,38,36,37,39,39,39,41,41,42,43,43,43,43,43,44,42,45,46,45,45,45,47,47,47,47,48,48,47,48,50,50,49,47,49,49,47,46,47,48,48,48,52,52,51,53,50,48,50,51,51,49,49,54,54,58,59,60,59,58,59,59,59,57,58,58,58,56,54,54,54,50,50,50,48,48,50,48,47,47,47,47,45,45,40,38,39,39,38,38,39,39,39,38,38,39,40,41,42,42,42,43,43,43,43,41,41,44,44,44,44,41,41,41,41,41,43,43,42,41,41,41,41,42,41,40,40,39,39,39,39,39,39,40,41,41,38,39,40,40,41,41,42,42,43,41,42,43,43,43,44,44,43,43,43,42,42,42,42,43,43,43,43,44,44,44,43,43,43,42,42,41,41,41,42,42,44,44,44,43,44,45,45,45,46,46,46,46,45,46,46,46,44,44,44,46,45,45,45,47,47,47,44,43,42,39,39,40,41,40,39,39,39,38,38,40,40,41,44,45,44,44,45,46,44,45,45,48,47,48,50,50,54,57,60,60,59,60,60,60,60,61,61,64,63,64,64,65,64,64,64,63,62,62],"yaxis":"y","type":"scattergl"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"timestamp"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"rolling_downloads"}},"legend":{"title":{"text":"version"},"tracegroupgap":0}},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('b21cae4a-8ceb-4d8c-a956-92a9e27206cc');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div id="50d9fbd2" class="cell" data-execution_count="26">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb27" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb27-1">group_bar(t, group_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"installer"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="042f71f2-8822-4b2f-862b-b839bf1dd98a" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("042f71f2-8822-4b2f-862b-b839bf1dd98a")) {                    Plotly.newPlot(                        "042f71f2-8822-4b2f-862b-b839bf1dd98a",                        [{"alignmentgroup":"True","hovertemplate":"installer=%{x}\u003cbr\u003edownloads=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["pip","requests","poetry","bandersnatch","uv","","Browser","Nexus","pdm","setuptools","Artifactory","conda","devpi","z3c.pypimirror","pep381client","OS","pex","distribute"],"xaxis":"x","y":[10670386,641449,281837,129016,114011,40926,14086,8881,4913,811,800,785,425,184,81,3,1,1],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"installer"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"downloads"},"type":"log"},"legend":{"tracegroupgap":0},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('042f71f2-8822-4b2f-862b-b839bf1dd98a');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="shiny-for-python-application" class="level2">
<h2 class="anchored" data-anchor-id="shiny-for-python-application">Shiny for Python application</h2>
<p>We can create an interactive Shiny with Python application using the code above to serve as a dashboard for better PyPI stats:</p>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Tip
</div>
</div>
<div class="callout-body-container callout-body">
<p>See <a href="https://github.com/ibis-project/better-pypi-stats">the GitHub repository</a> for the most up-to-date code.</p>
</div>
</div>
<div class="quarto-video ratio ratio-16x9"><iframe data-external="1" src="https://www.youtube.com/embed/jkdWaL8CbK4" title="" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen=""></iframe></div>
</section>
<section id="reproducing-and-contributing" class="level2">
<h2 class="anchored" data-anchor-id="reproducing-and-contributing">Reproducing and contributing</h2>
<p>The code is <a href="https://github.com/ibis-project/better-pypi-stats">available on GitHub</a>. Feel free to open an issue or pull request if you have any suggested improvements.</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>clickhouse</category>
  <category>shiny</category>
  <guid>https://ibis-project.org/posts/better-pypi-stats/</guid>
  <pubDate>Tue, 03 Sep 2024 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/better-pypi-stats/thumbnail.png" medium="image" type="image/png" height="77" width="144"/>
</item>
<item>
  <title>Farewell pandas, and thanks for all the fish.</title>
  <dc:creator>Gil Forsyth</dc:creator>
  <link>https://ibis-project.org/posts/farewell-pandas/</link>
  <description><![CDATA[ 






<p><strong>TL; DR</strong>: we are deprecating the <code>pandas</code> and <code>dask</code> backends and will be removing them in version 10.0.</p>
<p>There is no feature gap between the <code>pandas</code> backend and our default DuckDB backend, and DuckDB is <em>much</em> more performant. <code>pandas</code> DataFrames will still be available as <em>format</em> for getting data to and from Ibis, we just won’t support using <code>pandas</code> to execute queries.</p>
<p>Most of the rationale below applies to the Dask backend since it has so much in common with pandas. Dask is a great project and people should continue to use it outside the Ibis context.</p>
<section id="why-pandas-and-a-bit-of-ibis-history" class="level2">
<h2 class="anchored" data-anchor-id="why-pandas-and-a-bit-of-ibis-history">Why <code>pandas</code>? And a bit of Ibis history</h2>
<p>Way back in the early days of Ibis, there was only one backend: Impala. Not everyone used Impala (mindblowing, we know), and so it wasn’t too long until the Postgres backend was added (by the inimitable Phillip Cloud).</p>
<p>These two backends were both featureful, but there was a big problem with adoption: Want to try out Ibis? You need to install Impala or Postgres first.</p>
<p>Not an insurmountable problem, but a LOT more work than “just <code>pip install &lt;newthing&gt;</code>” – which prompted the question, how can a prospective Ibis user take the API for a spin without requiring a DBA or extra infrastructure beyond a laptop?</p>
<p>The obvious answer (at the time) was to use the only in-memory DataFrame engine around and wire up a <code>pandas</code> backend.</p>
</section>
<section id="the-agony-and-the-agony" class="level2">
<h2 class="anchored" data-anchor-id="the-agony-and-the-agony">The agony and the agony</h2>
<p><code>pandas</code> was the best option at the time, and it allowed new users to try out Ibis. But, it never fit well into the model of data analysis that Ibis strives for. The <code>pandas</code> backend has more specialized code than any other backend, because it is so fundamentally different than all the other systems Ibis works with.</p>
<section id="deferred-vs-eager" class="level3">
<h3 class="anchored" data-anchor-id="deferred-vs-eager">Deferred vs Eager</h3>
<p><code>pandas</code> is inherently an eager engine – every time you hit Enter you are computing an intermediate result. Ibis uses a deferred execution model, similar to what nearly all SQL backends use, that enables query planning and optimization passes.</p>
<p>Trying to make a <code>pandas</code> interface that behaves in a deferred way is hard.</p>
<p>One of the unfortunate effects of this mismatch is that, unlike our other backends, the <code>pandas</code> backend is often <em>much</em> slower than just using <code>pandas</code> directly.</p>
<p>And to provide this suboptimal experience, we have a few thousand lines of code that are only used in the <code>pandas</code> backend.</p>
</section>
<section id="nan-vs-null" class="level3">
<h3 class="anchored" data-anchor-id="nan-vs-null"><code>NaN</code> vs <code>NULL</code></h3>
<p>The choice was made a long time ago to accept using <code>NaN</code> as the marker for missing values in <code>pandas</code>. This is because NumPy has a notion of <code>NaN</code>, but a Python <code>None</code> would lead to an <code>object</code>-dtype and poor performance.</p>
<p>Practicality beats purity, but this is a horrible decision to have to make. Ibis <em>doesn’t</em> have to make it with any other backend, because NULL indicates a missing value, and NaN is Not a Number.</p>
<p>Those are fundamentally different ideas and it is an ongoing headache for Ibis to try to pretend that they aren’t.</p>
</section>
<section id="data-types" class="level3">
<h3 class="anchored" data-anchor-id="data-types">Data types</h3>
<p>The new Arrow-backed types in <code>pandas</code> are a great improvement and we’ll leave it at that.</p>
</section>
</section>
<section id="misleading-new-users" class="level2">
<h2 class="anchored" data-anchor-id="misleading-new-users">Misleading new users</h2>
<p>People reach for what is familiar. When you try Ibis for the first time, we’re asking you to both a) try Ibis and b) pick a backend. We have defaults to try to help with this, but it can be confusing at first.</p>
<p>We have many reports from new users that “Ibis is slow”. What this almost always means is that they tried the <code>pandas</code> backend (because they know <code>pandas</code>) and they are having a less-than-great time.</p>
<p>If they tried DuckDB or Polars, instead, they would have a much easier time getting things going.</p>
</section>
<section id="feature-parity" class="level2">
<h2 class="anchored" data-anchor-id="feature-parity">Feature parity</h2>
<p>This is the one of the strongest reasons to drop the <code>pandas</code> backend – it is redundant. The DuckDB backend can seamlessly query pandas DataFrames, supports several flavors of UDF, and can read and write parquet, CSV, JSON, and other formats.</p>
<p>There is a reason DuckDB is our default backend: it’s easy to install, it runs locally, it’s blazing fast, and it interacts well with the Python ecosystem. Those are all the reasons we added <code>pandas</code> as a backend in the first place, but with the added benefit of blazing-fast results, and no type-system headaches.</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>pandas</category>
  <category>community</category>
  <guid>https://ibis-project.org/posts/farewell-pandas/</guid>
  <pubDate>Mon, 26 Aug 2024 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Using IbisML and DuckDB for a Kaggle competition: credit risk model stability</title>
  <dc:creator>Jiting Xu</dc:creator>
  <link>https://ibis-project.org/posts/ibisml/</link>
  <description><![CDATA[ 






<section id="introduction" class="level2">
<h2 class="anchored" data-anchor-id="introduction">Introduction</h2>
<p>In this post, we’ll demonstrate how to use Ibis and <a href="https://github.com/ibis-project/ibis-ml">IbisML</a> end-to-end for the <a href="https://www.kaggle.com/competitions/home-credit-credit-risk-model-stability">credit risk model stability Kaggle competition</a>.</p>
<ol type="1">
<li>Load data and perform feature engineering on DuckDB backend using IbisML</li>
<li>Perform last-mile ML data preprocessing on DuckDB backend using IbisML</li>
<li>Train two models using different frameworks:
<ul>
<li>An XGBoost model within a scikit-learn pipeline.</li>
<li>A neural network with PyTorch and PyTorch Lightning.</li>
</ul></li>
</ol>
<p>The aim of this competition is to predict which clients are more likely to default on their loans by using both internal and external data sources.</p>
<p>To get started with Ibis and IbisML, please refer to the websites:</p>
<ul>
<li><a href="https://ibis-project.org/">Ibis</a>: An open-source dataframe library that works with any data system.</li>
<li><a href="https://ibis-project.github.io/ibis-ml/">IbisML</a>: A library for building scalable ML pipelines.</li>
</ul>
</section>
<section id="prerequisites" class="level2">
<h2 class="anchored" data-anchor-id="prerequisites">Prerequisites</h2>
<p>To run this example, you’ll need to download the data from Kaggle website with a Kaggle user account and install Ibis, IbisML, and the necessary modeling library.</p>
<section id="download-data" class="level3">
<h3 class="anchored" data-anchor-id="download-data">Download data</h3>
<p>You need a Kaggle account to download the data. If you do not have one, feel free to register one.</p>
<ol type="1">
<li>Option 1: Manual download
<ul>
<li>Log into your Kaggle account and download all data from this <a href="https://www.kaggle.com/competitions/home-credit-credit-risk-model-stability/data">link</a>, unzip the files, and save them to your local disk.</li>
</ul></li>
<li>Option 2: Kaggle API
<ul>
<li><p>Go to your <code>Kaggle Account Settings</code>.</p></li>
<li><p>Under the <code>API</code> section, click on <code>Create New API Token</code>. This will download the <code>kaggle.json</code> file to your computer.</p></li>
<li><p>Place the <code>kaggle.json</code> file in the correct directory, normally it is under your home directory <code>~/.kaggle</code>:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mkdir</span> ~/.kaggle</span>
<span id="cb1-2"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">mv</span> ~/Downloads/kaggle.json ~/.kaggle</span></code></pre></div></div></li>
<li><p>Install Kaggle CLI and download the data:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb2-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install kaggle</span>
<span id="cb2-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">kaggle</span> competitions download <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-c</span> home-credit-credit-risk-model-stability</span>
<span id="cb2-3"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">unzip</span> home-credit-credit-risk-model-stability.zip</span></code></pre></div></div></li>
</ul></li>
</ol>
</section>
<section id="install-libraries" class="level3">
<h3 class="anchored" data-anchor-id="install-libraries">Install libraries</h3>
<p>To use Ibis and IbisML with the DuckDB backend for building models, you’ll need to install the necessary packages. Depending on your preferred machine learning framework, you can choose one of the following installation commands:</p>
<p>For PyTorch-based models:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb3-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'ibis-framework[duckdb]'</span> ibis-ml torch pytorch-lightning</span></code></pre></div></div>
<p>For XGBoost and scikit-learn-based models:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb4-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'ibis-framework[duckdb]'</span> ibis-ml xgboost<span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">[</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">scikit</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">-</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">learn</span><span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">]</span></span></code></pre></div></div>
<p>Import libraries:</p>
<div id="dba3e08c" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb5-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.expr.datatypes <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> dt</span>
<span id="cb5-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> _</span>
<span id="cb5-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis_ml <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> ml</span>
<span id="cb5-5"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pathlib <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Path</span>
<span id="cb5-6"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> glob <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> glob</span>
<span id="cb5-7"></span>
<span id="cb5-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># enable interactive mode for ibis</span></span>
<span id="cb5-9">ibis.options.interactive <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span></code></pre></div></div>
</div>
<p>Set the backend for computing:</p>
<div id="d4b26ac9" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.duckdb.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>()</span>
<span id="cb6-2"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># remove the black bars from duckdb's progress bar</span></span>
<span id="cb6-3">con.raw_sql(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"set enable_progress_bar = false"</span>)</span>
<span id="cb6-4"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># DuckDB is the default backend for Ibis</span></span>
<span id="cb6-5">ibis.set_backend(con)</span></code></pre></div></div>
</div>
<p>Set data path:</p>
<div id="9930c4ad" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># change the root path to yours</span></span>
<span id="cb7-2">ROOT <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> Path(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"/Users/claypot/Downloads/home-credit-credit-risk-model-stability"</span>)</span>
<span id="cb7-3">TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ROOT <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"parquet_files"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train"</span></span>
<span id="cb7-4">TEST_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ROOT <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"parquet_files"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"test"</span></span></code></pre></div></div>
</div>
</section>
</section>
<section id="data-loading-and-processing" class="level2">
<h2 class="anchored" data-anchor-id="data-loading-and-processing">Data loading and processing</h2>
<p>We’ll use Ibis to read the Parquet files and perform the necessary processing for the next step.</p>
<section id="directory-structure-and-tables" class="level3">
<h3 class="anchored" data-anchor-id="directory-structure-and-tables">Directory structure and tables</h3>
<p>Since there are many data files, let’s start by examining the directory structure and tables within the train directory:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb8-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># change this to your directory</span></span>
<span id="cb8-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tree</span> <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-L</span> 2 ~/Downloads/home-credit-credit-risk-model-stability/parquet_files/train</span></code></pre></div></div>
<div class="callout callout-style-default callout-note callout-titled" title="Click to show data files">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-1-contents" aria-controls="callout-1" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>Click to show data files
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-1" class="callout-1-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb9-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">~/Downloads/home-credit-credit-risk-model-stability/parquet_files/train</span></span>
<span id="cb9-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_applprev_1_0.parquet</span>
<span id="cb9-3"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_applprev_1_1.parquet</span>
<span id="cb9-4"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_applprev_2.parquet</span>
<span id="cb9-5"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_base.parquet</span>
<span id="cb9-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_1_0.parquet</span>
<span id="cb9-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_1_1.parquet</span>
<span id="cb9-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_1_3.parquet</span>
<span id="cb9-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_0.parquet</span>
<span id="cb9-10"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_1.parquet</span>
<span id="cb9-11"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_10.parquet</span>
<span id="cb9-12"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_2.parquet</span>
<span id="cb9-13"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_3.parquet</span>
<span id="cb9-14"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_4.parquet</span>
<span id="cb9-15"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_5.parquet</span>
<span id="cb9-16"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_6.parquet</span>
<span id="cb9-17"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_7.parquet</span>
<span id="cb9-18"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_8.parquet</span>
<span id="cb9-19"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_a_2_9.parquet</span>
<span id="cb9-20"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_b_1.parquet</span>
<span id="cb9-21"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_credit_bureau_b_2.parquet</span>
<span id="cb9-22"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_debitcard_1.parquet</span>
<span id="cb9-23"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_deposit_1.parquet</span>
<span id="cb9-24"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_other_1.parquet</span>
<span id="cb9-25"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_person_1.parquet</span>
<span id="cb9-26"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_person_2.parquet</span>
<span id="cb9-27"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_static_0_0.parquet</span>
<span id="cb9-28"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_static_0_1.parquet</span>
<span id="cb9-29"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_static_cb_0.parquet</span>
<span id="cb9-30"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_tax_registry_a_1.parquet</span>
<span id="cb9-31"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> train_tax_registry_b_1.parquet</span>
<span id="cb9-32"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> train_tax_registry_c_1.parquet</span></code></pre></div></div>
</div>
</div>
</div>
<p>The <code>train_base.parquet</code> file is the base table, while the others are feature tables. Let’s take a quick look at these tables.</p>
<section id="base-table" class="level4">
<h4 class="anchored" data-anchor-id="base-table">Base table</h4>
<p>The base table (<code>train_base.parquet</code>) contains the unique ID, a binary target flag and other information for the training samples. This unique ID will serve as the linking key for joining with other feature tables.</p>
<ul>
<li><code>case_id</code> - This is the unique ID for each loan. You’ll need this ID to join feature tables to the base table. There are about 1.5m unique loans.</li>
<li><code>date_decision</code> - This refers to the date when a decision was made regarding the approval of the loan.</li>
<li><code>WEEK_NUM</code> - This is the week number used for aggregation. In the test sample, <code>WEEK_NUM</code> continues sequentially from the last training value of <code>WEEK_NUM</code>.</li>
<li><code>MONTH</code> - This column represents the month when the approval decision was made.</li>
<li><code>target</code> - This is the binary target flag, determined after a certain period based on whether or not the client defaulted on the specific loan.</li>
</ul>
<p>Here is several examples from the base table:</p>
<div id="54d40a5b" class="cell" data-execution_count="5">
<details class="code-fold">
<summary>Show code to get the top 5 rows of base table</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1">ibis.read_parquet(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_base.parquet"</span>).head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="36">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━┓
┃<span style="font-weight: bold"> case_id </span>┃<span style="font-weight: bold"> date_decision </span>┃<span style="font-weight: bold"> MONTH  </span>┃<span style="font-weight: bold"> WEEK_NUM </span>┃<span style="font-weight: bold"> target </span>┃
┡━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>  │
├─────────┼───────────────┼────────┼──────────┼────────┤
│       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-03   </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">201901</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │
│       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-03   </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">201901</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │
│       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-04   </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">201901</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │
│       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-03   </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">201901</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │
│       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-04   </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">201901</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
└─────────┴───────────────┴────────┴──────────┴────────┘
</pre>
</div>
</div>
</section>
<section id="feature-tables" class="level4">
<h4 class="anchored" data-anchor-id="feature-tables">Feature tables</h4>
<p>The remaining files contain features, consisting of approximately 370 features from previous loan applications and external data sources. Their definitions can be found in the feature definition <a href="https://www.kaggle.com/competitions/home-credit-credit-risk-model-stability/data">file</a> from the competition website.</p>
<p>There are several things we want to mention for the feature tables:</p>
<ul>
<li><strong>Union datasets</strong>: One dataset could be saved into multiple parquet files, such as <code>train_applprev_1_0.parquet</code> and <code>train_applprev_1_1.parquet</code>, We need to union this data.</li>
<li><strong>Dataset levels</strong>: Datasets may have different levels, which we will explain as follows:
<ul>
<li><strong>Depth = 0</strong>: Each row in the table is identified by a unique <code>case_id</code>. In this case, you can directly join the features with the base table and use them as features for further analysis or processing.</li>
<li><strong>Depth &gt; 0</strong>: You will group the data based on the <code>case_id</code> and perform calculations or aggregations within each group.</li>
</ul></li>
</ul>
<p>Here are two examples of tables with different levels.</p>
<p>Example of table with depth = 0, <code>case_id</code> is the row identifier, features can be directly joined with the base table.</p>
<div id="fdaf873c" class="cell" data-execution_count="6">
<details class="code-fold">
<summary>Show code to get the top 5 rows of user static data</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1">ibis.read_parquet(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_static_cb_0.parquet"</span>).head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="37">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> case_id </span>┃<span style="font-weight: bold"> assignmentdate_238D </span>┃<span style="font-weight: bold"> assignmentdate_4527235D </span>┃<span style="font-weight: bold"> assignmentdate_4955616D </span>┃<span style="font-weight: bold"> birthdate_574D </span>┃<span style="font-weight: bold"> contractssum_5085716L </span>┃<span style="font-weight: bold"> dateofbirth_337D </span>┃<span style="font-weight: bold"> dateofbirth_342D </span>┃<span style="font-weight: bold"> days120_123L </span>┃<span style="font-weight: bold"> days180_256L </span>┃<span style="font-weight: bold"> days30_165L </span>┃<span style="font-weight: bold"> days360_512L </span>┃<span style="font-weight: bold"> days90_310L </span>┃<span style="font-weight: bold"> description_5085714M </span>┃<span style="font-weight: bold"> education_1103M </span>┃<span style="font-weight: bold"> education_88M </span>┃<span style="font-weight: bold"> firstquarter_103L </span>┃<span style="font-weight: bold"> for3years_128L </span>┃<span style="font-weight: bold"> for3years_504L </span>┃<span style="font-weight: bold"> for3years_584L </span>┃<span style="font-weight: bold"> formonth_118L </span>┃<span style="font-weight: bold"> formonth_206L </span>┃<span style="font-weight: bold"> formonth_535L </span>┃<span style="font-weight: bold"> forquarter_1017L </span>┃<span style="font-weight: bold"> forquarter_462L </span>┃<span style="font-weight: bold"> forquarter_634L </span>┃<span style="font-weight: bold"> fortoday_1092L </span>┃<span style="font-weight: bold"> forweek_1077L </span>┃<span style="font-weight: bold"> forweek_528L </span>┃<span style="font-weight: bold"> forweek_601L </span>┃<span style="font-weight: bold"> foryear_618L </span>┃<span style="font-weight: bold"> foryear_818L </span>┃<span style="font-weight: bold"> foryear_850L </span>┃<span style="font-weight: bold"> fourthquarter_440L </span>┃<span style="font-weight: bold"> maritalst_385M </span>┃<span style="font-weight: bold"> maritalst_893M </span>┃<span style="font-weight: bold"> numberofqueries_373L </span>┃<span style="font-weight: bold"> pmtaverage_3A </span>┃<span style="font-weight: bold"> pmtaverage_4527227A </span>┃<span style="font-weight: bold"> pmtaverage_4955615A </span>┃<span style="font-weight: bold"> pmtcount_4527229L </span>┃<span style="font-weight: bold"> pmtcount_4955617L </span>┃<span style="font-weight: bold"> pmtcount_693L </span>┃<span style="font-weight: bold"> pmtscount_423L </span>┃<span style="font-weight: bold"> pmtssum_45A </span>┃<span style="font-weight: bold"> requesttype_4525192L </span>┃<span style="font-weight: bold"> responsedate_1012D </span>┃<span style="font-weight: bold"> responsedate_4527233D </span>┃<span style="font-weight: bold"> responsedate_4917613D </span>┃<span style="font-weight: bold"> riskassesment_302T </span>┃<span style="font-weight: bold"> riskassesment_940T </span>┃<span style="font-weight: bold"> secondquarter_766L </span>┃<span style="font-weight: bold"> thirdquarter_1082L </span>┃
┡━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>            │
├─────────┼─────────────────────┼─────────────────────────┼─────────────────────────┼────────────────┼───────────────────────┼──────────────────┼──────────────────┼──────────────┼──────────────┼─────────────┼──────────────┼─────────────┼──────────────────────┼─────────────────┼───────────────┼───────────────────┼────────────────┼────────────────┼────────────────┼───────────────┼───────────────┼───────────────┼──────────────────┼─────────────────┼─────────────────┼────────────────┼───────────────┼──────────────┼──────────────┼──────────────┼──────────────┼──────────────┼────────────────────┼────────────────┼────────────────┼──────────────────────┼───────────────┼─────────────────────┼─────────────────────┼───────────────────┼───────────────────┼───────────────┼────────────────┼─────────────┼──────────────────────┼────────────────────┼───────────────────────┼───────────────────────┼────────────────────┼────────────────────┼────────────────────┼────────────────────┤
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">357</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                    │ <span style="color: #008000; text-decoration-color: #008000">1988-04-01    </span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>             │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1            </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1       </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1     </span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6301.4000</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │ <span style="color: #008000; text-decoration-color: #008000">2019-01-25        </span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>               │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">381</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                    │ <span style="color: #008000; text-decoration-color: #008000">1973-11-01    </span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>             │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1            </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1       </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1     </span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4019.6000</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │ <span style="color: #008000; text-decoration-color: #008000">2019-01-25        </span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>               │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">388</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                    │ <span style="color: #008000; text-decoration-color: #008000">1989-04-01    </span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">1989-04-01      </span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>             │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1            </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1       </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1     </span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10.0</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14548.0000</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │ <span style="color: #008000; text-decoration-color: #008000">2019-01-28        </span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>               │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.0</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">405</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                    │ <span style="color: #008000; text-decoration-color: #008000">1974-03-01    </span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">1974-03-01      </span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>             │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1            </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1       </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1     </span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10498.2400</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │ <span style="color: #008000; text-decoration-color: #008000">2019-01-21        </span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>               │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │
│     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">409</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                    │ <span style="color: #008000; text-decoration-color: #008000">1993-06-01    </span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">1993-06-01      </span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>             │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1            </span> │ <span style="color: #008000; text-decoration-color: #008000">717ddd49       </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1     </span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.0</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a7fcb6e5      </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.0</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7.0</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6344.8804</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │ <span style="color: #008000; text-decoration-color: #008000">2019-01-21        </span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>               │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.0</span> │
└─────────┴─────────────────────┴─────────────────────────┴─────────────────────────┴────────────────┴───────────────────────┴──────────────────┴──────────────────┴──────────────┴──────────────┴─────────────┴──────────────┴─────────────┴──────────────────────┴─────────────────┴───────────────┴───────────────────┴────────────────┴────────────────┴────────────────┴───────────────┴───────────────┴───────────────┴──────────────────┴─────────────────┴─────────────────┴────────────────┴───────────────┴──────────────┴──────────────┴──────────────┴──────────────┴──────────────┴────────────────────┴────────────────┴────────────────┴──────────────────────┴───────────────┴─────────────────────┴─────────────────────┴───────────────────┴───────────────────┴───────────────┴────────────────┴─────────────┴──────────────────────┴────────────────────┴───────────────────────┴───────────────────────┴────────────────────┴────────────────────┴────────────────────┴────────────────────┘
</pre>
</div>
</div>
<p>Example of a table with depth = 1, we need to aggregate the features and collect statistics based on <code>case_id</code> then join with the base table.</p>
<div id="4765269b" class="cell" data-execution_count="7">
<details class="code-fold">
<summary>Show code to get the top 5 rows of credit bureau data</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb12-1">ibis.read_parquet(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_credit_bureau_b_1.parquet"</span>).relocate(</span>
<span id="cb12-2">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"num_group1"</span></span>
<span id="cb12-3">).order_by([<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"case_id"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"num_group1"</span>]).head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="38">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> num_group1 </span>┃<span style="font-weight: bold"> case_id </span>┃<span style="font-weight: bold"> amount_1115A </span>┃<span style="font-weight: bold"> classificationofcontr_1114M </span>┃<span style="font-weight: bold"> contractdate_551D </span>┃<span style="font-weight: bold"> contractmaturitydate_151D </span>┃<span style="font-weight: bold"> contractst_516M </span>┃<span style="font-weight: bold"> contracttype_653M </span>┃<span style="font-weight: bold"> credlmt_1052A </span>┃<span style="font-weight: bold"> credlmt_228A </span>┃<span style="font-weight: bold"> credlmt_3940954A </span>┃<span style="font-weight: bold"> credor_3940957M </span>┃<span style="font-weight: bold"> credquantity_1099L </span>┃<span style="font-weight: bold"> credquantity_984L </span>┃<span style="font-weight: bold"> debtpastduevalue_732A </span>┃<span style="font-weight: bold"> debtvalue_227A </span>┃<span style="font-weight: bold"> dpd_550P </span>┃<span style="font-weight: bold"> dpd_733P </span>┃<span style="font-weight: bold"> dpdmax_851P </span>┃<span style="font-weight: bold"> dpdmaxdatemonth_804T </span>┃<span style="font-weight: bold"> dpdmaxdateyear_742T </span>┃<span style="font-weight: bold"> installmentamount_644A </span>┃<span style="font-weight: bold"> installmentamount_833A </span>┃<span style="font-weight: bold"> instlamount_892A </span>┃<span style="font-weight: bold"> interesteffectiverate_369L </span>┃<span style="font-weight: bold"> interestrateyearly_538L </span>┃<span style="font-weight: bold"> lastupdate_260D </span>┃<span style="font-weight: bold"> maxdebtpduevalodued_3940955A </span>┃<span style="font-weight: bold"> numberofinstls_810L </span>┃<span style="font-weight: bold"> overdueamountmax_950A </span>┃<span style="font-weight: bold"> overdueamountmaxdatemonth_494T </span>┃<span style="font-weight: bold"> overdueamountmaxdateyear_432T </span>┃<span style="font-weight: bold"> periodicityofpmts_997L </span>┃<span style="font-weight: bold"> periodicityofpmts_997M </span>┃<span style="font-weight: bold"> pmtdaysoverdue_1135P </span>┃<span style="font-weight: bold"> pmtmethod_731M </span>┃<span style="font-weight: bold"> pmtnumpending_403L </span>┃<span style="font-weight: bold"> purposeofcred_722M </span>┃<span style="font-weight: bold"> residualamount_1093A </span>┃<span style="font-weight: bold"> residualamount_127A </span>┃<span style="font-weight: bold"> residualamount_3940956A </span>┃<span style="font-weight: bold"> subjectrole_326M </span>┃<span style="font-weight: bold"> subjectrole_43M </span>┃<span style="font-weight: bold"> totalamount_503A </span>┃<span style="font-weight: bold"> totalamount_881A </span>┃
┡━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>          │
├────────────┼─────────┼──────────────┼─────────────────────────────┼───────────────────┼───────────────────────────┼─────────────────┼───────────────────┼───────────────┼──────────────┼──────────────────┼─────────────────┼────────────────────┼───────────────────┼───────────────────────┼────────────────┼──────────┼──────────┼─────────────┼──────────────────────┼─────────────────────┼────────────────────────┼────────────────────────┼──────────────────┼────────────────────────────┼─────────────────────────┼─────────────────┼──────────────────────────────┼─────────────────────┼───────────────────────┼────────────────────────────────┼───────────────────────────────┼────────────────────────┼────────────────────────┼──────────────────────┼────────────────┼────────────────────┼────────────────────┼──────────────────────┼─────────────────────┼─────────────────────────┼──────────────────┼─────────────────┼──────────────────┼──────────────────┤
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">467</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">ea6782cc                   </span> │ <span style="color: #008000; text-decoration-color: #008000">2011-06-15       </span> │ <span style="color: #008000; text-decoration-color: #008000">2031-06-13               </span> │ <span style="color: #008000; text-decoration-color: #008000">7241344e       </span> │ <span style="color: #008000; text-decoration-color: #008000">724be82a         </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.000000e+06</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10000.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.000000e+06</span> │ <span style="color: #008000; text-decoration-color: #008000">P164_34_168    </span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.000</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-20     </span> │                         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │ <span style="color: #008000; text-decoration-color: #008000">a55475b1              </span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">96a8fdfe          </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">fa4f56f1        </span> │ <span style="color: #008000; text-decoration-color: #008000">ab3c25cf       </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.000000e+06</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10000.0</span> │
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">467</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">ea6782cc                   </span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-04       </span> │ <span style="color: #008000; text-decoration-color: #008000">2021-08-04               </span> │ <span style="color: #008000; text-decoration-color: #008000">7241344e       </span> │ <span style="color: #008000; text-decoration-color: #008000">724be82a         </span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.303650e+05</span> │ <span style="color: #008000; text-decoration-color: #008000">P164_34_168    </span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │              <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">26571.969</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-20     </span> │                         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │ <span style="color: #008000; text-decoration-color: #008000">a55475b1              </span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">96a8fdfe          </span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">ab3c25cf        </span> │ <span style="color: #008000; text-decoration-color: #008000">ab3c25cf       </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7.800000e+04</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">960000.0</span> │
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">467</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">78000.0</span> │ <span style="color: #008000; text-decoration-color: #008000">ea6782cc                   </span> │ <span style="color: #008000; text-decoration-color: #008000">2016-10-25       </span> │ <span style="color: #008000; text-decoration-color: #008000">2019-10-25               </span> │ <span style="color: #008000; text-decoration-color: #008000">7241344e       </span> │ <span style="color: #008000; text-decoration-color: #008000">4257cbed         </span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">c5a72b57       </span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">26571.969</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11.0</span> │              <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2016.0</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2898.76</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-10     </span> │                          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">36.0</span> │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11.0</span> │                        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2016.0</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │ <span style="color: #008000; text-decoration-color: #008000">a0b598e4              </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │ <span style="color: #008000; text-decoration-color: #008000">e914c86c      </span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10.0</span> │ <span style="color: #008000; text-decoration-color: #008000">96a8fdfe          </span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1        </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1       </span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1445</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">ea6782cc                   </span> │ <span style="color: #008000; text-decoration-color: #008000">2015-01-30       </span> │ <span style="color: #008000; text-decoration-color: #008000">2021-01-30               </span> │ <span style="color: #008000; text-decoration-color: #008000">7241344e       </span> │ <span style="color: #008000; text-decoration-color: #008000">1c9c5356         </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.000000e+05</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">100000.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7.400000e+04</span> │ <span style="color: #008000; text-decoration-color: #008000">b619fa46       </span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.0</span> │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">200418.0</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │              <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2018.0</span> │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.000</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-19     </span> │                          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.4</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.4</span> │                            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │                        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2018.0</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │ <span style="color: #008000; text-decoration-color: #008000">a55475b1              </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">60c73645          </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">73044.18</span> │ <span style="color: #008000; text-decoration-color: #008000">daf49a8a        </span> │ <span style="color: #008000; text-decoration-color: #008000">ab3c25cf       </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.000000e+05</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">100000.0</span> │
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1445</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">01f63ac8                   </span> │ <span style="color: #008000; text-decoration-color: #008000">2014-09-12       </span> │ <span style="color: #008000; text-decoration-color: #008000">2021-09-12               </span> │ <span style="color: #008000; text-decoration-color: #008000">7241344e       </span> │ <span style="color: #008000; text-decoration-color: #008000">724be82a         </span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.000000e+05</span> │ <span style="color: #008000; text-decoration-color: #008000">74bd67a8       </span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.0</span> │              <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.0</span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">209617.770</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">2019-01-13     </span> │                         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │ <span style="color: #008000; text-decoration-color: #008000">a55475b1              </span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">96a8fdfe          </span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">ab3c25cf        </span> │ <span style="color: #008000; text-decoration-color: #008000">ab3c25cf       </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.968006e+05</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">184587.8</span> │
└────────────┴─────────┴──────────────┴─────────────────────────────┴───────────────────┴───────────────────────────┴─────────────────┴───────────────────┴───────────────┴──────────────┴──────────────────┴─────────────────┴────────────────────┴───────────────────┴───────────────────────┴────────────────┴──────────┴──────────┴─────────────┴──────────────────────┴─────────────────────┴────────────────────────┴────────────────────────┴──────────────────┴────────────────────────────┴─────────────────────────┴─────────────────┴──────────────────────────────┴─────────────────────┴───────────────────────┴────────────────────────────────┴───────────────────────────────┴────────────────────────┴────────────────────────┴──────────────────────┴────────────────┴────────────────────┴────────────────────┴──────────────────────┴─────────────────────┴─────────────────────────┴──────────────────┴─────────────────┴──────────────────┴──────────────────┘
</pre>
</div>
</div>
<p>For more details on features and its exploratory data analysis (EDA), you can refer to feature definition and these Kaggle notebooks:</p>
<ul>
<li><a href="https://www.kaggle.com/competitions/home-credit-credit-risk-model-stability/data#:~:text=calendar_view_week-,feature_definitions,-.csv">Feature definition</a></li>
<li><a href="https://www.kaggle.com/code/loki97/home-credit-risk-prediction-eda">Home credit risk prediction EDA</a></li>
<li><a href="https://www.kaggle.com/code/sergiosaharovskiy/home-credit-crms-2024-eda-and-submission">Home credit CRMS 2024 EDA</a></li>
</ul>
</section>
</section>
<section id="data-loading-and-processing-1" class="level3">
<h3 class="anchored" data-anchor-id="data-loading-and-processing-1">Data loading and processing</h3>
<p>We will perform the following data processing steps using Ibis and IbisML:</p>
<ul>
<li><strong>Convert data types</strong>: Ensure consistency by converting data types, as the same column in different sub-files may have different types.</li>
<li><strong>Aggregate features</strong>: For tables with depth greater than 0, aggregate features based on <code>case_id</code>, including statistics calculation. You can collect statistics such as mean, median, mode, minimum, standard deviation, and others.</li>
<li><strong>Union and join datasets</strong>: Combine multiple sub-files of the same dataset into one table, as some datasets are split into multiple sub-files with a common prefix. Afterward, join these tables with the base table.</li>
</ul>
<section id="convert-data-types" class="level4">
<h4 class="anchored" data-anchor-id="convert-data-types">Convert data types</h4>
<p>We’ll use IbisML to create a chain of <code>Cast</code> steps, forming a recipe for data type conversion across the dataset. This conversion is based on the provided information extracted from column names. Columns that have similar transformations are indicated by a capital letter at the end of their names:</p>
<ul>
<li>P - Transform DPD (Days past due)</li>
<li>M - Masking categories</li>
<li>A - Transform amount</li>
<li>D - Transform date</li>
<li>T - Unspecified Transform</li>
<li>L - Unspecified Transform</li>
</ul>
<p>For example, we’ll define a IbisML transformation step to convert columns ends with <code>P</code> to floating number:</p>
<div id="92f70762" class="cell" data-execution_count="8">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb13-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># convert columns ends with P to floating number</span></span>
<span id="cb13-2">step_cast_P_to_float <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.Cast(ml.endswith(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"P"</span>), dt.float64)</span></code></pre></div></div>
</div>
<p>Next, let’s define additional type conversion transformations based on the postfix of column names:</p>
<div id="3e3be631" class="cell" data-execution_count="9">
<details class="code-fold">
<summary>Show code to define more steps</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb14-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># convert columns ends with A to floating number</span></span>
<span id="cb14-2">step_cast_A_to_float <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.Cast(ml.endswith(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"A"</span>), dt.float64)</span>
<span id="cb14-3"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># convert columns ends with D to date</span></span>
<span id="cb14-4">step_cast_D_to_date <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.Cast(ml.endswith(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"D"</span>), dt.date)</span>
<span id="cb14-5"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># convert columns ends with M to str</span></span>
<span id="cb14-6">step_cast_M_to_str <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.Cast(ml.endswith(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"M"</span>), dt.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>)</span></code></pre></div></div>
</details>
</div>
<p>We’ll construct the <a href="https://ibis-project.github.io/ibis-ml/reference/core.html#ibis_ml.Recipe">IbisML Recipe</a> which chains together all the transformation steps.</p>
<div id="a275dbfd" class="cell" data-execution_count="10">
<details class="code-fold">
<summary>Show code to construct the recipe</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb15-1">data_type_recipes <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.Recipe(</span>
<span id="cb15-2">    step_cast_P_to_float,</span>
<span id="cb15-3">    step_cast_D_to_date,</span>
<span id="cb15-4">    step_cast_M_to_str,</span>
<span id="cb15-5">    step_cast_A_to_float,</span>
<span id="cb15-6">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># cast some special columns</span></span>
<span id="cb15-7">    ml.Cast([<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"date_decision"</span>], <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"date"</span>),</span>
<span id="cb15-8">    ml.Cast([<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"case_id"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"WEEK_NUM"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"num_group1"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"num_group2"</span>], dt.int64),</span>
<span id="cb15-9">    ml.Cast(</span>
<span id="cb15-10">        [</span>
<span id="cb15-11">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cardtype_51L"</span>,</span>
<span id="cb15-12">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"credacc_status_367L"</span>,</span>
<span id="cb15-13">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"requesttype_4525192L"</span>,</span>
<span id="cb15-14">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"riskassesment_302T"</span>,</span>
<span id="cb15-15">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_periodicityofpmts_997L"</span>,</span>
<span id="cb15-16">        ],</span>
<span id="cb15-17">        dt.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>,</span>
<span id="cb15-18">    ),</span>
<span id="cb15-19">    ml.Cast(</span>
<span id="cb15-20">        [</span>
<span id="cb15-21">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"isbidproductrequest_292L"</span>,</span>
<span id="cb15-22">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"isdebitcard_527L"</span>,</span>
<span id="cb15-23">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"equalityempfrom_62L"</span>,</span>
<span id="cb15-24">        ],</span>
<span id="cb15-25">        dt.int64,</span>
<span id="cb15-26">    ),</span>
<span id="cb15-27">)</span>
<span id="cb15-28"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"Data format conversion recipe:</span><span class="ch" style="color: #20794D;
background-color: null;
font-style: inherit;">\n</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>data_type_recipes<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-stdout">
<pre><code>Data format conversion recipe:
Recipe(Cast(endswith('P'), 'float64'),
       Cast(endswith('D'), 'date'),
       Cast(endswith('M'), 'string'),
       Cast(endswith('A'), 'float64'),
       Cast(cols(('date_decision',)), 'date'),
       Cast(cols(('case_id', 'WEEK_NUM', 'num_group1', 'num_group2')), 'int64'),
       Cast(cols(('cardtype_51L', 'credacc_status_367L', 'requesttype_4525192L', 'riskassesment_302T', 'max_periodicityofpmts_997L')),
            'string'),
       Cast(cols(('isbidproductrequest_292L', 'isdebitcard_527L', 'equalityempfrom_62L')),
            'int64'))</code></pre>
</div>
</div>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Tip
</div>
</div>
<div class="callout-body-container callout-body">
<p>IbisML offers a powerful set of column selectors, allowing you to select columns based on names, types, and patterns. For more information, you can refer to the IbisML column selectors <a href="https://ibis-project.github.io/ibis-ml/reference/selectors.html">documentation</a>.</p>
</div>
</div>
</section>
<section id="aggregate-features" class="level4">
<h4 class="anchored" data-anchor-id="aggregate-features">Aggregate features</h4>
<p>For tables with a depth greater than 0 that can’t be directly joined with the base table, we need to aggregate the features by the <code>case_id</code>. You could compute the different statistics for numeric columns and non-numeric columns.</p>
<p>Here, we use the <code>maximum</code> as an example.</p>
<div id="4f274968" class="cell" data-execution_count="11">
<details class="code-fold">
<summary>Show code to aggregate features by case_id using max</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb17-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> agg_by_id(table):</span>
<span id="cb17-2">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> table.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"case_id"</span>).agg(</span>
<span id="cb17-3">        [</span>
<span id="cb17-4">            table[col_name].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">max</span>().name(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"max_</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>col_name<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)</span>
<span id="cb17-5">            <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> col_name <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> table.columns</span>
<span id="cb17-6">            <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> col_name[<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>] <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"T"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"L"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"P"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"A"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"D"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"M"</span>)</span>
<span id="cb17-7">        ]</span>
<span id="cb17-8">    )</span></code></pre></div></div>
</details>
</div>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Tip
</div>
</div>
<div class="callout-body-container callout-body">
<p>For better predicting power, you need to collect different statistics based on the meaning of features. For simplicity, we’ll only collect the maximum value of the features here.</p>
</div>
</div>
</section>
<section id="put-them-together" class="level4">
<h4 class="anchored" data-anchor-id="put-them-together">Put them together</h4>
<p>We’ll put them together in a function reads parquet files, optionally handles regex patterns for multiple sub-files, applies data type transformations defined by <code>data_type_recipes</code>, and performs aggregation based on <code>case_id</code> if specified by the depth parameter.</p>
<div id="4116845d" class="cell" data-execution_count="12">
<details class="code-fold">
<summary>Show code to read and process data files</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb18-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> read_and_process_files(file_path, depth<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>, is_regex<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>):</span>
<span id="cb18-2">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb18-3"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Read and process Parquet files.</span></span>
<span id="cb18-4"></span>
<span id="cb18-5"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Args:</span></span>
<span id="cb18-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        file_path (str): Path to the file or regex pattern to match files.</span></span>
<span id="cb18-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        depth (int, optional): Depth of processing. If 1 or 2, additional aggregation is performed.</span></span>
<span id="cb18-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        is_regex (bool, optional): Whether the file_path is a regex pattern.</span></span>
<span id="cb18-9"></span>
<span id="cb18-10"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Returns:</span></span>
<span id="cb18-11"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">        ibis.Table: The processed Ibis table.</span></span>
<span id="cb18-12"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb18-13">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> is_regex:</span>
<span id="cb18-14">        <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># read and union multiple files</span></span>
<span id="cb18-15">        chunks <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> []</span>
<span id="cb18-16">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> path <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> glob(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>(file_path)):</span>
<span id="cb18-17">            chunk <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_parquet(path)</span>
<span id="cb18-18">            <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># transform table using IbisML Recipe</span></span>
<span id="cb18-19">            chunk <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> data_type_recipes.fit(chunk).to_ibis(chunk)</span>
<span id="cb18-20">            chunks.append(chunk)</span>
<span id="cb18-21">        table <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.union(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span>chunks)</span>
<span id="cb18-22">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">else</span>:</span>
<span id="cb18-23">        <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># read a single file</span></span>
<span id="cb18-24">        table <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_parquet(file_path)</span>
<span id="cb18-25">        <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># transform table using IbisML</span></span>
<span id="cb18-26">        table <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> data_type_recipes.fit(table).to_ibis(table)</span>
<span id="cb18-27"></span>
<span id="cb18-28">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># perform aggregation if depth is 1 or 2</span></span>
<span id="cb18-29">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> depth <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> [<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>]:</span>
<span id="cb18-30">        table <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> agg_by_id(table)</span>
<span id="cb18-31"></span>
<span id="cb18-32">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> table</span></code></pre></div></div>
</details>
</div>
<p>Let’s define two dictionaries, <code>train_data_store</code> and <code>test_data_store</code>, that organize and store processed datasets for training and testing datasets.</p>
<div id="513c202e" class="cell" data-execution_count="13">
<details class="code-fold">
<summary>Show code to load all data into a dict</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb19" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb19-1">train_data_store <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> {</span>
<span id="cb19-2">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"df_base"</span>: read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_base.parquet"</span>),</span>
<span id="cb19-3">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"depth_0"</span>: [</span>
<span id="cb19-4">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_static_cb_0.parquet"</span>),</span>
<span id="cb19-5">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_static_0_*.parquet"</span>, is_regex<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>),</span>
<span id="cb19-6">    ],</span>
<span id="cb19-7">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"depth_1"</span>: [</span>
<span id="cb19-8">        read_and_process_files(</span>
<span id="cb19-9">            TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_applprev_1_*.parquet"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, is_regex<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span>
<span id="cb19-10">        ),</span>
<span id="cb19-11">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_tax_registry_a_1.parquet"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb19-12">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_tax_registry_b_1.parquet"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb19-13">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_tax_registry_c_1.parquet"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb19-14">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_credit_bureau_b_1.parquet"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb19-15">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_other_1.parquet"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb19-16">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_person_1.parquet"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb19-17">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_deposit_1.parquet"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb19-18">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_debitcard_1.parquet"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>),</span>
<span id="cb19-19">    ],</span>
<span id="cb19-20">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"depth_2"</span>: [</span>
<span id="cb19-21">        read_and_process_files(TRAIN_DIR <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_credit_bureau_b_2.parquet"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>),</span>
<span id="cb19-22">    ],</span>
<span id="cb19-23">}</span>
<span id="cb19-24"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># we won't be submitting the predictions, so let's comment out the test data.</span></span>
<span id="cb19-25"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># test_data_store = {</span></span>
<span id="cb19-26"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#     "df_base": read_and_process_files(TEST_DIR / "test_base.parquet"),</span></span>
<span id="cb19-27"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#     "depth_0": [</span></span>
<span id="cb19-28"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_static_cb_0.parquet"),</span></span>
<span id="cb19-29"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_static_0_*.parquet", is_regex=True),</span></span>
<span id="cb19-30"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#     ],</span></span>
<span id="cb19-31"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#     "depth_1": [</span></span>
<span id="cb19-32"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_applprev_1_*.parquet", 1, is_regex=True),</span></span>
<span id="cb19-33"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_tax_registry_a_1.parquet", 1),</span></span>
<span id="cb19-34"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_tax_registry_b_1.parquet", 1),</span></span>
<span id="cb19-35"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_tax_registry_c_1.parquet", 1),</span></span>
<span id="cb19-36"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_credit_bureau_b_1.parquet", 1),</span></span>
<span id="cb19-37"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_other_1.parquet", 1),</span></span>
<span id="cb19-38"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_person_1.parquet", 1),</span></span>
<span id="cb19-39"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_deposit_1.parquet", 1),</span></span>
<span id="cb19-40"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_debitcard_1.parquet", 1),</span></span>
<span id="cb19-41"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#     ],</span></span>
<span id="cb19-42"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#     "depth_2": [</span></span>
<span id="cb19-43"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#         read_and_process_files(TEST_DIR / "test_credit_bureau_b_2.parquet", 2),</span></span>
<span id="cb19-44"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">#     ]</span></span>
<span id="cb19-45"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># }</span></span></code></pre></div></div>
</details>
</div>
<p>Join all features data to base table:</p>
<div id="93211f82" class="cell" data-execution_count="14">
<details class="code-fold">
<summary>Define function to join feature tables to base table</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb20" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb20-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> join_data(df_base, depth_0, depth_1, depth_2):</span>
<span id="cb20-2">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> i, df <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">enumerate</span>(depth_0 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> depth_1 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> depth_2):</span>
<span id="cb20-3">        df_base <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> df_base.join(</span>
<span id="cb20-4">            df, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"case_id"</span>, how<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"left"</span>, rname<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{name}</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">_right"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"_</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>i<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span></span>
<span id="cb20-5">        )</span>
<span id="cb20-6">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> df_base</span></code></pre></div></div>
</details>
</div>
<p>Generate train and test datasets:</p>
<div id="3b26eaf7" class="cell" data-execution_count="15">
<details class="code-fold">
<summary>Show code to generate train and test datasets</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb21" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb21-1">df_train <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> join_data(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>train_data_store)</span>
<span id="cb21-2"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># df_test = join_data(**test_data_store)</span></span>
<span id="cb21-3">total_rows <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> df_train.count().execute()</span>
<span id="cb21-4"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"There is </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>total_rows<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;"> rows and </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">len</span>(df_train.columns)<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;"> columns"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-stdout">
<pre><code>There is 1526659 rows and 377 columns</code></pre>
</div>
</div>
</section>
</section>
<section id="select-features" class="level3">
<h3 class="anchored" data-anchor-id="select-features">Select features</h3>
<p>Given the large number of features (~370), we’ll focus on selecting just a few of the most informative ones by name for demonstration purposes in this post:</p>
<div id="36e0ec8e" class="cell" data-execution_count="16">
<details class="code-fold">
<summary>Show code to select important features for the train dataset</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb23" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb23-1">df_train <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> df_train.select(</span>
<span id="cb23-2">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"case_id"</span>,</span>
<span id="cb23-3">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"date_decision"</span>,</span>
<span id="cb23-4">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"target"</span>,</span>
<span id="cb23-5">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># number of credit bureau queries for the last X days.</span></span>
<span id="cb23-6">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"days30_165L"</span>,</span>
<span id="cb23-7">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"days360_512L"</span>,</span>
<span id="cb23-8">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"days90_310L"</span>,</span>
<span id="cb23-9">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># number of tax deduction payments</span></span>
<span id="cb23-10">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pmtscount_423L"</span>,</span>
<span id="cb23-11">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># sum of tax deductions for the client</span></span>
<span id="cb23-12">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pmtssum_45A"</span>,</span>
<span id="cb23-13">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"dateofbirth_337D"</span>,</span>
<span id="cb23-14">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"education_1103M"</span>,</span>
<span id="cb23-15">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"firstquarter_103L"</span>,</span>
<span id="cb23-16">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"secondquarter_766L"</span>,</span>
<span id="cb23-17">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"thirdquarter_1082L"</span>,</span>
<span id="cb23-18">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"fourthquarter_440L"</span>,</span>
<span id="cb23-19">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"maritalst_893M"</span>,</span>
<span id="cb23-20">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"numberofqueries_373L"</span>,</span>
<span id="cb23-21">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"requesttype_4525192L"</span>,</span>
<span id="cb23-22">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"responsedate_4527233D"</span>,</span>
<span id="cb23-23">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"actualdpdtolerance_344P"</span>,</span>
<span id="cb23-24">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"amtinstpaidbefduel24m_4187115A"</span>,</span>
<span id="cb23-25">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"annuity_780A"</span>,</span>
<span id="cb23-26">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"annuitynextmonth_57A"</span>,</span>
<span id="cb23-27">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"applicationcnt_361L"</span>,</span>
<span id="cb23-28">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"applications30d_658L"</span>,</span>
<span id="cb23-29">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"applicationscnt_1086L"</span>,</span>
<span id="cb23-30">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># average days past or before due of payment during the last 24 months.</span></span>
<span id="cb23-31">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"avgdbddpdlast24m_3658932P"</span>,</span>
<span id="cb23-32">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># average days past or before due of payment during the last 3 months.</span></span>
<span id="cb23-33">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"avgdbddpdlast3m_4187120P"</span>,</span>
<span id="cb23-34">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># end date of active contract.</span></span>
<span id="cb23-35">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_contractmaturitydate_151D"</span>,</span>
<span id="cb23-36">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># credit limit of an active loan.</span></span>
<span id="cb23-37">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_credlmt_1052A"</span>,</span>
<span id="cb23-38">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># number of credits in credit bureau</span></span>
<span id="cb23-39">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_credquantity_1099L"</span>,</span>
<span id="cb23-40">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_dpdmaxdatemonth_804T"</span>,</span>
<span id="cb23-41">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_dpdmaxdateyear_742T"</span>,</span>
<span id="cb23-42">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_maxdebtpduevalodued_3940955A"</span>,</span>
<span id="cb23-43">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_overdueamountmax_950A"</span>,</span>
<span id="cb23-44">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_purposeofcred_722M"</span>,</span>
<span id="cb23-45">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_residualamount_3940956A"</span>,</span>
<span id="cb23-46">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_totalamount_503A"</span>,</span>
<span id="cb23-47">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_cancelreason_3545846M"</span>,</span>
<span id="cb23-48">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_childnum_21L"</span>,</span>
<span id="cb23-49">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_currdebt_94A"</span>,</span>
<span id="cb23-50">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_employedfrom_700D"</span>,</span>
<span id="cb23-51">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># client's main income amount in their previous application</span></span>
<span id="cb23-52">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_mainoccupationinc_437A"</span>,</span>
<span id="cb23-53">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_profession_152M"</span>,</span>
<span id="cb23-54">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_rejectreason_755M"</span>,</span>
<span id="cb23-55">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_status_219L"</span>,</span>
<span id="cb23-56">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># credit amount of the active contract provided by the credit bureau</span></span>
<span id="cb23-57">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_amount_1115A"</span>,</span>
<span id="cb23-58">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># amount of unpaid debt for existing contracts</span></span>
<span id="cb23-59">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_debtpastduevalue_732A"</span>,</span>
<span id="cb23-60">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_debtvalue_227A"</span>,</span>
<span id="cb23-61">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_installmentamount_833A"</span>,</span>
<span id="cb23-62">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_instlamount_892A"</span>,</span>
<span id="cb23-63">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_numberofinstls_810L"</span>,</span>
<span id="cb23-64">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_pmtnumpending_403L"</span>,</span>
<span id="cb23-65">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_last180dayaveragebalance_704A"</span>,</span>
<span id="cb23-66">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_last30dayturnover_651A"</span>,</span>
<span id="cb23-67">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_openingdate_857D"</span>,</span>
<span id="cb23-68">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_amount_416A"</span>,</span>
<span id="cb23-69">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_amtdebitincoming_4809443A"</span>,</span>
<span id="cb23-70">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_amtdebitoutgoing_4809440A"</span>,</span>
<span id="cb23-71">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_amtdepositbalance_4809441A"</span>,</span>
<span id="cb23-72">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_amtdepositincoming_4809444A"</span>,</span>
<span id="cb23-73">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_amtdepositoutgoing_4809442A"</span>,</span>
<span id="cb23-74">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_empl_industry_691L"</span>,</span>
<span id="cb23-75">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_gender_992L"</span>,</span>
<span id="cb23-76">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_housingtype_772L"</span>,</span>
<span id="cb23-77">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_mainoccupationinc_384A"</span>,</span>
<span id="cb23-78">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_incometype_1044T"</span>,</span>
<span id="cb23-79">)</span>
<span id="cb23-80"></span>
<span id="cb23-81">df_train.head()</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="47">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> case_id </span>┃<span style="font-weight: bold"> date_decision </span>┃<span style="font-weight: bold"> target </span>┃<span style="font-weight: bold"> days30_165L </span>┃<span style="font-weight: bold"> days360_512L </span>┃<span style="font-weight: bold"> days90_310L </span>┃<span style="font-weight: bold"> pmtscount_423L </span>┃<span style="font-weight: bold"> pmtssum_45A </span>┃<span style="font-weight: bold"> dateofbirth_337D </span>┃<span style="font-weight: bold"> education_1103M </span>┃<span style="font-weight: bold"> firstquarter_103L </span>┃<span style="font-weight: bold"> secondquarter_766L </span>┃<span style="font-weight: bold"> thirdquarter_1082L </span>┃<span style="font-weight: bold"> fourthquarter_440L </span>┃<span style="font-weight: bold"> maritalst_893M </span>┃<span style="font-weight: bold"> numberofqueries_373L </span>┃<span style="font-weight: bold"> requesttype_4525192L </span>┃<span style="font-weight: bold"> responsedate_4527233D </span>┃<span style="font-weight: bold"> actualdpdtolerance_344P </span>┃<span style="font-weight: bold"> amtinstpaidbefduel24m_4187115A </span>┃<span style="font-weight: bold"> annuity_780A </span>┃<span style="font-weight: bold"> annuitynextmonth_57A </span>┃<span style="font-weight: bold"> applicationcnt_361L </span>┃<span style="font-weight: bold"> applications30d_658L </span>┃<span style="font-weight: bold"> applicationscnt_1086L </span>┃<span style="font-weight: bold"> avgdbddpdlast24m_3658932P </span>┃<span style="font-weight: bold"> avgdbddpdlast3m_4187120P </span>┃<span style="font-weight: bold"> max_contractmaturitydate_151D </span>┃<span style="font-weight: bold"> max_credlmt_1052A </span>┃<span style="font-weight: bold"> max_credquantity_1099L </span>┃<span style="font-weight: bold"> max_dpdmaxdatemonth_804T </span>┃<span style="font-weight: bold"> max_dpdmaxdateyear_742T </span>┃<span style="font-weight: bold"> max_maxdebtpduevalodued_3940955A </span>┃<span style="font-weight: bold"> max_overdueamountmax_950A </span>┃<span style="font-weight: bold"> max_purposeofcred_722M </span>┃<span style="font-weight: bold"> max_residualamount_3940956A </span>┃<span style="font-weight: bold"> max_totalamount_503A </span>┃<span style="font-weight: bold"> max_cancelreason_3545846M </span>┃<span style="font-weight: bold"> max_childnum_21L </span>┃<span style="font-weight: bold"> max_currdebt_94A </span>┃<span style="font-weight: bold"> max_employedfrom_700D </span>┃<span style="font-weight: bold"> max_mainoccupationinc_437A </span>┃<span style="font-weight: bold"> max_profession_152M </span>┃<span style="font-weight: bold"> max_rejectreason_755M </span>┃<span style="font-weight: bold"> max_status_219L </span>┃<span style="font-weight: bold"> max_amount_1115A </span>┃<span style="font-weight: bold"> max_debtpastduevalue_732A </span>┃<span style="font-weight: bold"> max_debtvalue_227A </span>┃<span style="font-weight: bold"> max_installmentamount_833A </span>┃<span style="font-weight: bold"> max_instlamount_892A </span>┃<span style="font-weight: bold"> max_numberofinstls_810L </span>┃<span style="font-weight: bold"> max_pmtnumpending_403L </span>┃<span style="font-weight: bold"> max_last180dayaveragebalance_704A </span>┃<span style="font-weight: bold"> max_last30dayturnover_651A </span>┃<span style="font-weight: bold"> max_openingdate_857D </span>┃<span style="font-weight: bold"> max_amount_416A </span>┃<span style="font-weight: bold"> max_amtdebitincoming_4809443A </span>┃<span style="font-weight: bold"> max_amtdebitoutgoing_4809440A </span>┃<span style="font-weight: bold"> max_amtdepositbalance_4809441A </span>┃<span style="font-weight: bold"> max_amtdepositincoming_4809444A </span>┃<span style="font-weight: bold"> max_amtdepositoutgoing_4809442A </span>┃<span style="font-weight: bold"> max_empl_industry_691L </span>┃<span style="font-weight: bold"> max_gender_992L </span>┃<span style="font-weight: bold"> max_housingtype_772L </span>┃<span style="font-weight: bold"> max_mainoccupationinc_384A </span>┃<span style="font-weight: bold"> max_incometype_1044T    </span>┃
┡━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>                          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>                  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                  │
├─────────┼───────────────┼────────┼─────────────┼──────────────┼─────────────┼────────────────┼─────────────┼──────────────────┼─────────────────┼───────────────────┼────────────────────┼────────────────────┼────────────────────┼────────────────┼──────────────────────┼──────────────────────┼───────────────────────┼─────────────────────────┼────────────────────────────────┼──────────────┼──────────────────────┼─────────────────────┼──────────────────────┼───────────────────────┼───────────────────────────┼──────────────────────────┼───────────────────────────────┼───────────────────┼────────────────────────┼──────────────────────────┼─────────────────────────┼──────────────────────────────────┼───────────────────────────┼────────────────────────┼─────────────────────────────┼──────────────────────┼───────────────────────────┼──────────────────┼──────────────────┼───────────────────────┼────────────────────────────┼─────────────────────┼───────────────────────┼─────────────────┼──────────────────┼───────────────────────────┼────────────────────┼────────────────────────────┼──────────────────────┼─────────────────────────┼────────────────────────┼───────────────────────────────────┼────────────────────────────┼──────────────────────┼─────────────────┼───────────────────────────────┼───────────────────────────────┼────────────────────────────────┼─────────────────────────────────┼─────────────────────────────────┼────────────────────────┼─────────────────┼──────────────────────┼────────────────────────────┼─────────────────────────┤
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1915559</span> │ <span style="color: #800080; text-decoration-color: #800080">2020-09-02</span>    │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #800080; text-decoration-color: #800080">1963-12-01</span>       │ <span style="color: #008000; text-decoration-color: #008000">717ddd49       </span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.0</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9490.187</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1366.6000</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-4.0</span> │                     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                          │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │                        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1                 </span> │              <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.000</span> │ <span style="color: #800080; text-decoration-color: #800080">2012-11-15</span>            │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">72000.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1           </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1             </span> │ <span style="color: #008000; text-decoration-color: #008000">T              </span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">50000.0</span> │ <span style="color: #008000; text-decoration-color: #008000">PRIVATE_SECTOR_EMPLOYEE</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1915592</span> │ <span style="color: #800080; text-decoration-color: #800080">2020-09-02</span>    │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #800080; text-decoration-color: #800080">1983-01-01</span>       │ <span style="color: #008000; text-decoration-color: #008000">6b2ae0fa       </span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">61296.600</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1268.4000</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-6.0</span> │                     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                          │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │                        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1                 </span> │              <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.000</span> │ <span style="color: #800080; text-decoration-color: #800080">2013-09-15</span>            │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">199600.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1           </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1             </span> │ <span style="color: #008000; text-decoration-color: #008000">K              </span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70000.0</span> │ <span style="color: #008000; text-decoration-color: #008000">SALARIED_GOVT          </span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1915605</span> │ <span style="color: #800080; text-decoration-color: #800080">2020-09-02</span>    │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #800080; text-decoration-color: #800080">1977-01-01</span>       │ <span style="color: #008000; text-decoration-color: #008000">a55475b1       </span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">359920.470</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8483.2000</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6434.4</span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-15.0</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-6.0</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                          │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │                        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1                 </span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">43596.227</span> │ <span style="color: #800080; text-decoration-color: #800080">2014-01-15</span>            │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">199600.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1           </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1             </span> │ <span style="color: #008000; text-decoration-color: #008000">T              </span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">200000.0</span> │ <span style="color: #008000; text-decoration-color: #008000">SELFEMPLOYED           </span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1915620</span> │ <span style="color: #800080; text-decoration-color: #800080">2020-09-02</span>    │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-04-01</span>       │ <span style="color: #008000; text-decoration-color: #008000">a55475b1       </span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">129430.370</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2368.2000</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-24.0</span> │                     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                          │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │                        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1                 </span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.000</span> │ <span style="color: #800080; text-decoration-color: #800080">2018-06-15</span>            │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">30000.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1           </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1             </span> │ <span style="color: #008000; text-decoration-color: #008000">K              </span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">24000.0</span> │ <span style="color: #008000; text-decoration-color: #008000">SALARIED_GOVT          </span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1915695</span> │ <span style="color: #800080; text-decoration-color: #800080">2020-09-02</span>    │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #800080; text-decoration-color: #800080">1981-07-01</span>       │ <span style="color: #008000; text-decoration-color: #008000">a55475b1       </span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1      </span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                  │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">15998.000</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6839.8003</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-10.0</span> │                     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                          │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │                        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1                 </span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.000</span> │ <span style="color: #800080; text-decoration-color: #800080">2016-01-15</span>            │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40000.0</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1           </span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1             </span> │ <span style="color: #008000; text-decoration-color: #008000">K              </span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                      <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                   <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │                            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>                 │                    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">30000.0</span> │ <span style="color: #008000; text-decoration-color: #008000">SALARIED_GOVT          </span> │
└─────────┴───────────────┴────────┴─────────────┴──────────────┴─────────────┴────────────────┴─────────────┴──────────────────┴─────────────────┴───────────────────┴────────────────────┴────────────────────┴────────────────────┴────────────────┴──────────────────────┴──────────────────────┴───────────────────────┴─────────────────────────┴────────────────────────────────┴──────────────┴──────────────────────┴─────────────────────┴──────────────────────┴───────────────────────┴───────────────────────────┴──────────────────────────┴───────────────────────────────┴───────────────────┴────────────────────────┴──────────────────────────┴─────────────────────────┴──────────────────────────────────┴───────────────────────────┴────────────────────────┴─────────────────────────────┴──────────────────────┴───────────────────────────┴──────────────────┴──────────────────┴───────────────────────┴────────────────────────────┴─────────────────────┴───────────────────────┴─────────────────┴──────────────────┴───────────────────────────┴────────────────────┴────────────────────────────┴──────────────────────┴─────────────────────────┴────────────────────────┴───────────────────────────────────┴────────────────────────────┴──────────────────────┴─────────────────┴───────────────────────────────┴───────────────────────────────┴────────────────────────────────┴─────────────────────────────────┴─────────────────────────────────┴────────────────────────┴─────────────────┴──────────────────────┴────────────────────────────┴─────────────────────────┘
</pre>
</div>
</div>
<p>Univariate analysis:</p>
<div id="2b1a9226" class="cell" data-execution_count="17">
<details class="code-fold">
<summary>Show code to describe the train dataset</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb24" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb24-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># take the first 10 columns</span></span>
<span id="cb24-2">df_train[df_train.columns[:<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>]].describe()</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="48">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> name            </span>┃<span style="font-weight: bold"> pos   </span>┃<span style="font-weight: bold"> type    </span>┃<span style="font-weight: bold"> count   </span>┃<span style="font-weight: bold"> nulls  </span>┃<span style="font-weight: bold"> unique  </span>┃<span style="font-weight: bold"> mode     </span>┃<span style="font-weight: bold"> mean         </span>┃<span style="font-weight: bold"> std           </span>┃<span style="font-weight: bold"> min     </span>┃<span style="font-weight: bold"> p25         </span>┃<span style="font-weight: bold"> p50          </span>┃<span style="font-weight: bold"> p75          </span>┃<span style="font-weight: bold"> max          </span>┃
┡━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int16</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>      │
├─────────────────┼───────┼─────────┼─────────┼────────┼─────────┼──────────┼──────────────┼───────────────┼─────────┼─────────────┼──────────────┼──────────────┼──────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">case_id        </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008000; text-decoration-color: #008000">int64  </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1526659</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1526659</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>     │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.286077e+06</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">718946.592285</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">766197.5000</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.357358e+06</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.739022e+06</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.703454e+06</span> │
│ <span style="color: #008000; text-decoration-color: #008000">target         </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │ <span style="color: #008000; text-decoration-color: #008000">int64  </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1526659</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>     │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.143728e-02</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.174496</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0000</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.000000e+00</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.000000e+00</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.000000e+00</span> │
│ <span style="color: #008000; text-decoration-color: #008000">days30_165L    </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │ <span style="color: #008000; text-decoration-color: #008000">float64</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1526659</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">140968</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>     │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.177078e-01</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.899238</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0000</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.000000e+00</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.000000e+00</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.200000e+01</span> │
│ <span style="color: #008000; text-decoration-color: #008000">days360_512L   </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │ <span style="color: #008000; text-decoration-color: #008000">float64</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1526659</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">140968</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">92</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>     │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.777066e+00</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.168856</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0000</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.000000e+00</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.500000e+00</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.150000e+02</span> │
│ <span style="color: #008000; text-decoration-color: #008000">days90_310L    </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │ <span style="color: #008000; text-decoration-color: #008000">float64</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1526659</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">140968</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">37</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>     │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.211420e+00</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.655931</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0000</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.000000e+00</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.000000e+00</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.100000e+01</span> │
│ <span style="color: #008000; text-decoration-color: #008000">pmtscount_423L </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span> │ <span style="color: #008000; text-decoration-color: #008000">float64</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1526659</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">954021</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">66</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>     │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.839291e+00</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.148264</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.0000</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.000000e+00</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7.000000e+00</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.210000e+02</span> │
│ <span style="color: #008000; text-decoration-color: #008000">pmtssum_45A    </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7</span> │ <span style="color: #008000; text-decoration-color: #008000">float64</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1526659</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">954021</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">265229</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>     │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.319994e+04</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18117.218312</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3156.4001</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8.391900e+03</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.699200e+04</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4.768434e+05</span> │
│ <span style="color: #008000; text-decoration-color: #008000">education_1103M</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span> │ <span style="color: #008000; text-decoration-color: #008000">string </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1526659</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">26183</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │ <span style="color: #008000; text-decoration-color: #008000">a55475b1</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │
└─────────────────┴───────┴─────────┴─────────┴────────┴─────────┴──────────┴──────────────┴───────────────┴─────────┴─────────────┴──────────────┴──────────────┴──────────────┘
</pre>
</div>
</div>
</section>
</section>
<section id="last-mile-data-preprocessing" class="level2">
<h2 class="anchored" data-anchor-id="last-mile-data-preprocessing">Last-mile data preprocessing</h2>
<p>We will perform the following transformation before feeding the data to models:</p>
<ul>
<li>Missing value imputation</li>
<li>Encoding categorical variables</li>
<li>Handling date variables</li>
<li>Handling outliers</li>
<li>Scaling and normalization</li>
</ul>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>IbisML provides a set of transformations. You can find the <a href="https://github.com/ibis-project/ibis-ml/issues/32">roadmap</a>. The <a href="https://ibis-project.github.io/ibis-ml/">IbisML website</a> also includes tutorials and API documentation.</p>
</div>
</div>
<section id="impute-features" class="level3">
<h3 class="anchored" data-anchor-id="impute-features">Impute features</h3>
<p>Impute all numeric columns using the median. In real-life scenarios, it’s important to understand the meaning of each feature and apply the appropriate imputation method for different features. For more imputations, please refer to this <a href="https://ibis-project.github.io/ibis-ml/reference/steps-imputation.html">documentation</a>.</p>
<div id="99303c5a" class="cell" data-execution_count="18">
<details class="code-fold">
<summary>Show code to impute all numeric columns with median</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb25" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb25-1">step_impute_median <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.ImputeMedian(ml.numeric())</span></code></pre></div></div>
</details>
</div>
</section>
<section id="encode-categorical-features" class="level3">
<h3 class="anchored" data-anchor-id="encode-categorical-features">Encode categorical features</h3>
<p>Encode all categorical features using one-hot-encode. For more encoding steps, please refer to this <a href="https://ibis-project.github.io/ibis-ml/reference/steps-encoding.html">doc</a>.</p>
<div id="3e1df3b1" class="cell" data-execution_count="19">
<details class="code-fold">
<summary>Show code to one-hot encode selected columns</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb26" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb26-1">ohe_step <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.OneHotEncode(</span>
<span id="cb26-2">    [</span>
<span id="cb26-3">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"maritalst_893M"</span>,</span>
<span id="cb26-4">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"requesttype_4525192L"</span>,</span>
<span id="cb26-5">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_profession_152M"</span>,</span>
<span id="cb26-6">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_gender_992L"</span>,</span>
<span id="cb26-7">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_empl_industry_691L"</span>,</span>
<span id="cb26-8">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_housingtype_772L"</span>,</span>
<span id="cb26-9">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_incometype_1044T"</span>,</span>
<span id="cb26-10">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_cancelreason_3545846M"</span>,</span>
<span id="cb26-11">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_rejectreason_755M"</span>,</span>
<span id="cb26-12">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"education_1103M"</span>,</span>
<span id="cb26-13">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_status_219L"</span>,</span>
<span id="cb26-14">    ]</span>
<span id="cb26-15">)</span></code></pre></div></div>
</details>
</div>
</section>
<section id="handle-date-variables" class="level3">
<h3 class="anchored" data-anchor-id="handle-date-variables">Handle date variables</h3>
<p>Calculate all the days difference between any date columns and the column <code>date_decision</code>:</p>
<div id="cb197a80" class="cell" data-execution_count="20">
<details class="code-fold">
<summary>Show code to calculate days difference between date columns and date_decision</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb27" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb27-1">date_cols <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [col_name <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> col_name <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> df_train.columns <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> col_name[<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"D"</span>]</span>
<span id="cb27-2">days_to_decision_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> {</span>
<span id="cb27-3">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># difference in days</span></span>
<span id="cb27-4">    <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>col<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">_date_decision_diff"</span>: (</span>
<span id="cb27-5">        _.date_decision.epoch_seconds() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">getattr</span>(_, col).epoch_seconds()</span>
<span id="cb27-6">    )</span>
<span id="cb27-7">    <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">60</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">60</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">24</span>)</span>
<span id="cb27-8">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> col <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> date_cols</span>
<span id="cb27-9">}</span>
<span id="cb27-10">days_to_decision_step <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.Mutate(days_to_decision_expr)</span></code></pre></div></div>
</details>
</div>
<p>Extract information from the date columns:</p>
<div id="63129062" class="cell" data-execution_count="21">
<details class="code-fold">
<summary>Show code to extract day and week info from date columns</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb28" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb28-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># dow and month is set to catagoery</span></span>
<span id="cb28-2">expand_date_step <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.ExpandDate(ml.date(), [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"week"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"day"</span>])</span></code></pre></div></div>
</details>
</div>
</section>
<section id="handle-outliers" class="level3">
<h3 class="anchored" data-anchor-id="handle-outliers">Handle outliers</h3>
<p>Capping outliers using <code>z-score</code> method:</p>
<div id="fe15771d" class="cell" data-execution_count="22">
<details class="code-fold">
<summary>Show code to cap outliers for selected columns</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb29" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb29-1">step_handle_outliers <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.HandleUnivariateOutliers(</span>
<span id="cb29-2">    [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_amount_1115A"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"max_overdueamountmax_950A"</span>],</span>
<span id="cb29-3">    method<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"z-score"</span>,</span>
<span id="cb29-4">    treatment<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"capping"</span>,</span>
<span id="cb29-5">    deviation_factor<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>,</span>
<span id="cb29-6">)</span></code></pre></div></div>
</details>
</div>
</section>
<section id="construct-recipe" class="level3">
<h3 class="anchored" data-anchor-id="construct-recipe">Construct recipe</h3>
<p>We’ll construct the last mile preprocessing <a href="https://ibis-project.github.io/ibis-ml/reference/core.html#ibis_ml.Recipe">recipe</a> by chaining all transformation steps, which will be fitted to the training dataset and later applied test datasets.</p>
<div id="fd8a067a" class="cell" data-execution_count="23">
<details class="code-fold">
<summary>Show code to construct the recipe</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb30" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb30-1">last_mile_preprocessing <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ml.Recipe(</span>
<span id="cb30-2">    expand_date_step,</span>
<span id="cb30-3">    ml.Drop(ml.date()),</span>
<span id="cb30-4">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># handle string columns</span></span>
<span id="cb30-5">    ohe_step,</span>
<span id="cb30-6">    ml.Drop(ml.string()),</span>
<span id="cb30-7">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># handle numeric cols</span></span>
<span id="cb30-8">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># capping outliers</span></span>
<span id="cb30-9">    step_handle_outliers,</span>
<span id="cb30-10">    step_impute_median,</span>
<span id="cb30-11">    ml.ScaleMinMax(ml.numeric()),</span>
<span id="cb30-12">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># fill missing value</span></span>
<span id="cb30-13">    ml.FillNA(ml.numeric(), <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>),</span>
<span id="cb30-14">    ml.Cast(ml.numeric(), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"float32"</span>),</span>
<span id="cb30-15">)</span>
<span id="cb30-16"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"Last-mile preprocessing recipe: </span><span class="ch" style="color: #20794D;
background-color: null;
font-style: inherit;">\n</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>last_mile_preprocessing<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-stdout">
<pre><code>Last-mile preprocessing recipe: 
Recipe(ExpandDate(date(), components=['week', 'day']),
       Drop(date()),
       OneHotEncode(cols(('maritalst_893M', 'requesttype_4525192L', 'max_profession_152M', 'max_gender_992L', 'max_empl_industry_691L', 'max_housingtype_772L', 'max_incometype_1044T', 'max_cancelreason_3545846M', 'max_rejectreason_755M', 'education_1103M', 'max_status_219L'))),
       Drop(string()),
       HandleUnivariateOutliers(cols(('max_amount_1115A', 'max_overdueamountmax_950A')),
                                method='z-score',
                                deviation_factor=3,
                                treatment='capping'),
       ImputeMedian(numeric()),
       ScaleMinMax(numeric()),
       FillNA(numeric(), 0),
       Cast(numeric(), 'float32'))</code></pre>
</div>
</div>
</section>
</section>
<section id="modeling" class="level2">
<h2 class="anchored" data-anchor-id="modeling">Modeling</h2>
<p>After completing data preprocessing with Ibis and IbisML, we proceed to the modeling phase. Here are two approaches:</p>
<ul>
<li>Use IbisML as a independent data preprocessing component and hand off the data to downstream modeling frameworks with various output formats:
<ul>
<li>pandas Dataframe</li>
<li>NumPy Array</li>
<li>Polars Dataframe</li>
<li>Dask Dataframe</li>
<li>xgboost.DMatrix</li>
<li>Pyarrow Table</li>
</ul></li>
<li>Use IbisML recipes as components within an sklearn Pipeline and train models similarly to how you would do with sklearn pipeline.</li>
</ul>
<p>We will build an XGBoost model within a scikit-learn pipeline, and a neural network classifier using the output transformed by IbisML recipes.</p>
<section id="train-and-test-data-splitting" class="level3">
<h3 class="anchored" data-anchor-id="train-and-test-data-splitting">Train and test data splitting</h3>
<p>We’ll use hashing on the unique key to consistently split rows to different groups. Hashing is robust to underlying changes in the data, such as adding, deleting, or reordering rows. This deterministic process ensures that each data point is always assigned to the same split, thereby enhancing reproducibility.</p>
<div id="07531183" class="cell" data-execution_count="24">
<details class="code-fold">
<summary>Show code to split data into train and test</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb32" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb32-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> random</span>
<span id="cb32-2"></span>
<span id="cb32-3"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># this enables the analysis to be reproducible when random numbers are used</span></span>
<span id="cb32-4">random.seed(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">222</span>)</span>
<span id="cb32-5">random_key <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>(random.getrandbits(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">256</span>))</span>
<span id="cb32-6"></span>
<span id="cb32-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># put 3/4 of the data into the training set</span></span>
<span id="cb32-8">df_train <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> df_train.mutate(</span>
<span id="cb32-9">    train_flag<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>(df_train.case_id.cast(dt.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> random_key).<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">hash</span>().<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">abs</span>() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">%</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span></span>
<span id="cb32-10">)</span>
<span id="cb32-11"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># split the dataset by train_flag</span></span>
<span id="cb32-12"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># todo: use ml.train_test_split() after next release</span></span>
<span id="cb32-13">train_data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> df_train[df_train.train_flag].drop(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_flag"</span>)</span>
<span id="cb32-14">test_data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> df_train[<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span>df_train.train_flag].drop(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_flag"</span>)</span>
<span id="cb32-15"></span>
<span id="cb32-16">X_train <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> train_data.drop(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"target"</span>)</span>
<span id="cb32-17">y_train <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> train_data.target.cast(dt.float32).name(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"target"</span>)</span>
<span id="cb32-18"></span>
<span id="cb32-19">X_test <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> test_data.drop(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"target"</span>)</span>
<span id="cb32-20">y_test <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> test_data.target.cast(dt.float32).name(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"target"</span>)</span>
<span id="cb32-21"></span>
<span id="cb32-22">train_cnt <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> X_train.count().execute()</span>
<span id="cb32-23">test_cnt <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> X_test.count().execute()</span>
<span id="cb32-24"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"train dataset size = </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>train_cnt<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;"> </span><span class="ch" style="color: #20794D;
background-color: null;
font-style: inherit;">\n</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">test data size = </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>test_cnt<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-stdout">
<pre><code>train dataset size = 1144339 
test data size = 382320</code></pre>
</div>
</div>
<div class="callout callout-style-default callout-warning callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Warning
</div>
</div>
<div class="callout-body-container callout-body">
<p>Hashing provides a consistent but pseudo-random distribution of data, which may not precisely align with the specified train/test ratio. While hash codes ensure reproducibility, they don’t guarantee an exact split. Due to statistical variance, you might find a slight imbalance in the distribution, resulting in marginally more or fewer samples in either the training or test dataset than the target percentage. This minor deviation from the intended ratio is a normal consequence of hash-based partitioning.</p>
</div>
</div>
</section>
<section id="xgboost" class="level3">
<h3 class="anchored" data-anchor-id="xgboost">XGBoost</h3>
<p>In this section, we integrate XGBoost into a scikit-learn pipeline to create a streamlined workflow for training and evaluating our model.</p>
<p>We’ll set up a pipeline that includes two components:</p>
<ul>
<li><strong>Preprocessing</strong>: This step applies the <code>last_mile_preprocessing</code> for final data preprocessing.</li>
<li><strong>Modeling</strong>: This step applies the <code>xgb.XGBClassifier()</code> to train the XGBoost model.</li>
</ul>
<div id="7a5ff114" class="cell" data-execution_count="25">
<details class="code-fold">
<summary>Show code to built and fit the pipeline</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb34" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb34-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> sklearn.pipeline <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Pipeline</span>
<span id="cb34-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> sklearn.metrics <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> roc_auc_score</span>
<span id="cb34-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> xgboost <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> xgb</span>
<span id="cb34-4"></span>
<span id="cb34-5">model <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> xgb.XGBClassifier(</span>
<span id="cb34-6">    n_estimators<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span>,</span>
<span id="cb34-7">    max_depth<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>,</span>
<span id="cb34-8">    learning_rate<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.05</span>,</span>
<span id="cb34-9">    subsample<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.8</span>,</span>
<span id="cb34-10">    colsample_bytree<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.8</span>,</span>
<span id="cb34-11">    random_state<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">42</span>,</span>
<span id="cb34-12">)</span>
<span id="cb34-13"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># create the pipeline with the last mile ML recipes and the model</span></span>
<span id="cb34-14">pipe <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> Pipeline([(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"last_mile_recipes"</span>, last_mile_preprocessing), (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"model"</span>, model)])</span>
<span id="cb34-15"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># fit the pipeline on the training data</span></span>
<span id="cb34-16">pipe.fit(X_train, y_train)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="56">
<style>#sk-container-id-2 {
  /* Definition of color scheme common for light and dark mode */
  --sklearn-color-text: black;
  --sklearn-color-line: gray;
  /* Definition of color scheme for unfitted estimators */
  --sklearn-color-unfitted-level-0: #fff5e6;
  --sklearn-color-unfitted-level-1: #f6e4d2;
  --sklearn-color-unfitted-level-2: #ffe0b3;
  --sklearn-color-unfitted-level-3: chocolate;
  /* Definition of color scheme for fitted estimators */
  --sklearn-color-fitted-level-0: #f0f8ff;
  --sklearn-color-fitted-level-1: #d4ebff;
  --sklearn-color-fitted-level-2: #b3dbfd;
  --sklearn-color-fitted-level-3: cornflowerblue;

  /* Specific color for light theme */
  --sklearn-color-text-on-default-background: var(--sg-text-color, var(--theme-code-foreground, var(--jp-content-font-color1, black)));
  --sklearn-color-background: var(--sg-background-color, var(--theme-background, var(--jp-layout-color0, white)));
  --sklearn-color-border-box: var(--sg-text-color, var(--theme-code-foreground, var(--jp-content-font-color1, black)));
  --sklearn-color-icon: #696969;

  @media (prefers-color-scheme: dark) {
    /* Redefinition of color scheme for dark theme */
    --sklearn-color-text-on-default-background: var(--sg-text-color, var(--theme-code-foreground, var(--jp-content-font-color1, white)));
    --sklearn-color-background: var(--sg-background-color, var(--theme-background, var(--jp-layout-color0, #111)));
    --sklearn-color-border-box: var(--sg-text-color, var(--theme-code-foreground, var(--jp-content-font-color1, white)));
    --sklearn-color-icon: #878787;
  }
}

#sk-container-id-2 {
  color: var(--sklearn-color-text);
}

#sk-container-id-2 pre {
  padding: 0;
}

#sk-container-id-2 input.sk-hidden--visually {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

#sk-container-id-2 div.sk-dashed-wrapped {
  border: 1px dashed var(--sklearn-color-line);
  margin: 0 0.4em 0.5em 0.4em;
  box-sizing: border-box;
  padding-bottom: 0.4em;
  background-color: var(--sklearn-color-background);
}

#sk-container-id-2 div.sk-container {
  /* jupyter's `normalize.less` sets `[hidden] { display: none; }`
     but bootstrap.min.css set `[hidden] { display: none !important; }`
     so we also need the `!important` here to be able to override the
     default hidden behavior on the sphinx rendered scikit-learn.org.
     See: https://github.com/scikit-learn/scikit-learn/issues/21755 */
  display: inline-block !important;
  position: relative;
}

#sk-container-id-2 div.sk-text-repr-fallback {
  display: none;
}

div.sk-parallel-item,
div.sk-serial,
div.sk-item {
  /* draw centered vertical line to link estimators */
  background-image: linear-gradient(var(--sklearn-color-text-on-default-background), var(--sklearn-color-text-on-default-background));
  background-size: 2px 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Parallel-specific style estimator block */

#sk-container-id-2 div.sk-parallel-item::after {
  content: "";
  width: 100%;
  border-bottom: 2px solid var(--sklearn-color-text-on-default-background);
  flex-grow: 1;
}

#sk-container-id-2 div.sk-parallel {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: var(--sklearn-color-background);
  position: relative;
}

#sk-container-id-2 div.sk-parallel-item {
  display: flex;
  flex-direction: column;
}

#sk-container-id-2 div.sk-parallel-item:first-child::after {
  align-self: flex-end;
  width: 50%;
}

#sk-container-id-2 div.sk-parallel-item:last-child::after {
  align-self: flex-start;
  width: 50%;
}

#sk-container-id-2 div.sk-parallel-item:only-child::after {
  width: 0;
}

/* Serial-specific style estimator block */

#sk-container-id-2 div.sk-serial {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--sklearn-color-background);
  padding-right: 1em;
  padding-left: 1em;
}


/* Toggleable style: style used for estimator/Pipeline/ColumnTransformer box that is
clickable and can be expanded/collapsed.
- Pipeline and ColumnTransformer use this feature and define the default style
- Estimators will overwrite some part of the style using the `sk-estimator` class
*/

/* Pipeline and ColumnTransformer style (default) */

#sk-container-id-2 div.sk-toggleable {
  /* Default theme specific background. It is overwritten whether we have a
  specific estimator or a Pipeline/ColumnTransformer */
  background-color: var(--sklearn-color-background);
}

/* Toggleable label */
#sk-container-id-2 label.sk-toggleable__label {
  cursor: pointer;
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding: 0.5em;
  box-sizing: border-box;
  text-align: center;
}

#sk-container-id-2 label.sk-toggleable__label-arrow:before {
  /* Arrow on the left of the label */
  content: "▸";
  float: left;
  margin-right: 0.25em;
  color: var(--sklearn-color-icon);
}

#sk-container-id-2 label.sk-toggleable__label-arrow:hover:before {
  color: var(--sklearn-color-text);
}

/* Toggleable content - dropdown */

#sk-container-id-2 div.sk-toggleable__content {
  max-height: 0;
  max-width: 0;
  overflow: hidden;
  text-align: left;
  /* unfitted */
  background-color: var(--sklearn-color-unfitted-level-0);
}

#sk-container-id-2 div.sk-toggleable__content.fitted {
  /* fitted */
  background-color: var(--sklearn-color-fitted-level-0);
}

#sk-container-id-2 div.sk-toggleable__content pre {
  margin: 0.2em;
  border-radius: 0.25em;
  color: var(--sklearn-color-text);
  /* unfitted */
  background-color: var(--sklearn-color-unfitted-level-0);
}

#sk-container-id-2 div.sk-toggleable__content.fitted pre {
  /* unfitted */
  background-color: var(--sklearn-color-fitted-level-0);
}

#sk-container-id-2 input.sk-toggleable__control:checked~div.sk-toggleable__content {
  /* Expand drop-down */
  max-height: 200px;
  max-width: 100%;
  overflow: auto;
}

#sk-container-id-2 input.sk-toggleable__control:checked~label.sk-toggleable__label-arrow:before {
  content: "▾";
}

/* Pipeline/ColumnTransformer-specific style */

#sk-container-id-2 div.sk-label input.sk-toggleable__control:checked~label.sk-toggleable__label {
  color: var(--sklearn-color-text);
  background-color: var(--sklearn-color-unfitted-level-2);
}

#sk-container-id-2 div.sk-label.fitted input.sk-toggleable__control:checked~label.sk-toggleable__label {
  background-color: var(--sklearn-color-fitted-level-2);
}

/* Estimator-specific style */

/* Colorize estimator box */
#sk-container-id-2 div.sk-estimator input.sk-toggleable__control:checked~label.sk-toggleable__label {
  /* unfitted */
  background-color: var(--sklearn-color-unfitted-level-2);
}

#sk-container-id-2 div.sk-estimator.fitted input.sk-toggleable__control:checked~label.sk-toggleable__label {
  /* fitted */
  background-color: var(--sklearn-color-fitted-level-2);
}

#sk-container-id-2 div.sk-label label.sk-toggleable__label,
#sk-container-id-2 div.sk-label label {
  /* The background is the default theme color */
  color: var(--sklearn-color-text-on-default-background);
}

/* On hover, darken the color of the background */
#sk-container-id-2 div.sk-label:hover label.sk-toggleable__label {
  color: var(--sklearn-color-text);
  background-color: var(--sklearn-color-unfitted-level-2);
}

/* Label box, darken color on hover, fitted */
#sk-container-id-2 div.sk-label.fitted:hover label.sk-toggleable__label.fitted {
  color: var(--sklearn-color-text);
  background-color: var(--sklearn-color-fitted-level-2);
}

/* Estimator label */

#sk-container-id-2 div.sk-label label {
  font-family: monospace;
  font-weight: bold;
  display: inline-block;
  line-height: 1.2em;
}

#sk-container-id-2 div.sk-label-container {
  text-align: center;
}

/* Estimator-specific */
#sk-container-id-2 div.sk-estimator {
  font-family: monospace;
  border: 1px dotted var(--sklearn-color-border-box);
  border-radius: 0.25em;
  box-sizing: border-box;
  margin-bottom: 0.5em;
  /* unfitted */
  background-color: var(--sklearn-color-unfitted-level-0);
}

#sk-container-id-2 div.sk-estimator.fitted {
  /* fitted */
  background-color: var(--sklearn-color-fitted-level-0);
}

/* on hover */
#sk-container-id-2 div.sk-estimator:hover {
  /* unfitted */
  background-color: var(--sklearn-color-unfitted-level-2);
}

#sk-container-id-2 div.sk-estimator.fitted:hover {
  /* fitted */
  background-color: var(--sklearn-color-fitted-level-2);
}

/* Specification for estimator info (e.g. "i" and "?") */

/* Common style for "i" and "?" */

.sk-estimator-doc-link,
a:link.sk-estimator-doc-link,
a:visited.sk-estimator-doc-link {
  float: right;
  font-size: smaller;
  line-height: 1em;
  font-family: monospace;
  background-color: var(--sklearn-color-background);
  border-radius: 1em;
  height: 1em;
  width: 1em;
  text-decoration: none !important;
  margin-left: 1ex;
  /* unfitted */
  border: var(--sklearn-color-unfitted-level-1) 1pt solid;
  color: var(--sklearn-color-unfitted-level-1);
}

.sk-estimator-doc-link.fitted,
a:link.sk-estimator-doc-link.fitted,
a:visited.sk-estimator-doc-link.fitted {
  /* fitted */
  border: var(--sklearn-color-fitted-level-1) 1pt solid;
  color: var(--sklearn-color-fitted-level-1);
}

/* On hover */
div.sk-estimator:hover .sk-estimator-doc-link:hover,
.sk-estimator-doc-link:hover,
div.sk-label-container:hover .sk-estimator-doc-link:hover,
.sk-estimator-doc-link:hover {
  /* unfitted */
  background-color: var(--sklearn-color-unfitted-level-3);
  color: var(--sklearn-color-background);
  text-decoration: none;
}

div.sk-estimator.fitted:hover .sk-estimator-doc-link.fitted:hover,
.sk-estimator-doc-link.fitted:hover,
div.sk-label-container:hover .sk-estimator-doc-link.fitted:hover,
.sk-estimator-doc-link.fitted:hover {
  /* fitted */
  background-color: var(--sklearn-color-fitted-level-3);
  color: var(--sklearn-color-background);
  text-decoration: none;
}

/* Span, style for the box shown on hovering the info icon */
.sk-estimator-doc-link span {
  display: none;
  z-index: 9999;
  position: relative;
  font-weight: normal;
  right: .2ex;
  padding: .5ex;
  margin: .5ex;
  width: min-content;
  min-width: 20ex;
  max-width: 50ex;
  color: var(--sklearn-color-text);
  box-shadow: 2pt 2pt 4pt #999;
  /* unfitted */
  background: var(--sklearn-color-unfitted-level-0);
  border: .5pt solid var(--sklearn-color-unfitted-level-3);
}

.sk-estimator-doc-link.fitted span {
  /* fitted */
  background: var(--sklearn-color-fitted-level-0);
  border: var(--sklearn-color-fitted-level-3);
}

.sk-estimator-doc-link:hover span {
  display: block;
}

/* "?"-specific style due to the `<a>` HTML tag */

#sk-container-id-2 a.estimator_doc_link {
  float: right;
  font-size: 1rem;
  line-height: 1em;
  font-family: monospace;
  background-color: var(--sklearn-color-background);
  border-radius: 1rem;
  height: 1rem;
  width: 1rem;
  text-decoration: none;
  /* unfitted */
  color: var(--sklearn-color-unfitted-level-1);
  border: var(--sklearn-color-unfitted-level-1) 1pt solid;
}

#sk-container-id-2 a.estimator_doc_link.fitted {
  /* fitted */
  border: var(--sklearn-color-fitted-level-1) 1pt solid;
  color: var(--sklearn-color-fitted-level-1);
}

/* On hover */
#sk-container-id-2 a.estimator_doc_link:hover {
  /* unfitted */
  background-color: var(--sklearn-color-unfitted-level-3);
  color: var(--sklearn-color-background);
  text-decoration: none;
}

#sk-container-id-2 a.estimator_doc_link.fitted:hover {
  /* fitted */
  background-color: var(--sklearn-color-fitted-level-3);
}
</style><div id="sk-container-id-2" class="sk-top-container"><div class="sk-text-repr-fallback"><pre>Pipeline(steps=[('last_mile_recipes',
                 Recipe(ExpandDate(date(), components=['week', 'day']),
                        Drop(date()),
                        OneHotEncode(cols(('maritalst_893M', 'requesttype_4525192L', 'max_profession_152M', 'max_gender_992L', 'max_empl_industry_691L', 'max_housingtype_772L', 'max_incometype_1044T', 'max_cancelreason_3545846M', 'max_rejectreason_755M', 'education_1103M', 'max_sta...
                               feature_types=None, gamma=None, grow_policy=None,
                               importance_type=None,
                               interaction_constraints=None, learning_rate=0.05,
                               max_bin=None, max_cat_threshold=None,
                               max_cat_to_onehot=None, max_delta_step=None,
                               max_depth=5, max_leaves=None,
                               min_child_weight=None, missing=nan,
                               monotone_constraints=None, multi_strategy=None,
                               n_estimators=100, n_jobs=None,
                               num_parallel_tree=None, random_state=42, ...))])</pre><b>In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. <br>On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.</b></div><div class="sk-container" hidden=""><div class="sk-item sk-dashed-wrapped"><div class="sk-label-container"><div class="sk-label fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-13" type="checkbox"><label for="sk-estimator-id-13" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">&nbsp;&nbsp;Pipeline<a class="sk-estimator-doc-link fitted" rel="noreferrer" target="_blank" href="https://scikit-learn.org/1.4/modules/generated/sklearn.pipeline.Pipeline.html">?<span>Documentation for Pipeline</span></a><span class="sk-estimator-doc-link fitted">i<span>Fitted</span></span></label><div class="sk-toggleable__content fitted"><pre>Pipeline(steps=[('last_mile_recipes',
                 Recipe(ExpandDate(date(), components=['week', 'day']),
                        Drop(date()),
                        OneHotEncode(cols(('maritalst_893M', 'requesttype_4525192L', 'max_profession_152M', 'max_gender_992L', 'max_empl_industry_691L', 'max_housingtype_772L', 'max_incometype_1044T', 'max_cancelreason_3545846M', 'max_rejectreason_755M', 'education_1103M', 'max_sta...
                               feature_types=None, gamma=None, grow_policy=None,
                               importance_type=None,
                               interaction_constraints=None, learning_rate=0.05,
                               max_bin=None, max_cat_threshold=None,
                               max_cat_to_onehot=None, max_delta_step=None,
                               max_depth=5, max_leaves=None,
                               min_child_weight=None, missing=nan,
                               monotone_constraints=None, multi_strategy=None,
                               n_estimators=100, n_jobs=None,
                               num_parallel_tree=None, random_state=42, ...))])</pre></div> </div></div><div class="sk-serial"><div class="sk-item"><div class="sk-label-container"><div class="sk-label fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-14" type="checkbox"><label for="sk-estimator-id-14" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">last_mile_recipes: Recipe</label><div class="sk-toggleable__content fitted"><pre>Recipe(ExpandDate(date(), components=['week', 'day']),
       Drop(date()),
       OneHotEncode(cols(('maritalst_893M', 'requesttype_4525192L', 'max_profession_152M', 'max_gender_992L', 'max_empl_industry_691L', 'max_housingtype_772L', 'max_incometype_1044T', 'max_cancelreason_3545846M', 'max_rejectreason_755M', 'education_1103M', 'max_status_219L'))),
       Drop(string()),
       HandleUnivariateOutliers(cols(('max_amount_1115A', 'max_overdueamountmax_950A')),
                                method='z-score',
                                deviation_factor=3,
                                treatment='capping'),
       ImputeMedian(numeric()),
       ScaleMinMax(numeric()),
       FillNA(numeric(), 0),
       Cast(numeric(), 'float32'))</pre></div> </div></div><div class="sk-serial"><div class="sk-item"><div class="sk-estimator fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-15" type="checkbox"><label for="sk-estimator-id-15" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">&nbsp;ExpandDate<a class="sk-estimator-doc-link fitted" rel="noreferrer" target="_blank" href="https://ibis-project.github.io/ibis-ml/reference/steps-temporal-feature-extraction.html#ibis_ml.ExpandDate">?<span>Documentation for ExpandDate</span></a></label><div class="sk-toggleable__content fitted"><pre>ExpandDate(date(), components=['week', 'day'])</pre></div> </div></div><div class="sk-item"><div class="sk-estimator fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-16" type="checkbox"><label for="sk-estimator-id-16" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">&nbsp;Drop<a class="sk-estimator-doc-link fitted" rel="noreferrer" target="_blank" href="https://ibis-project.github.io/ibis-ml/reference/steps-other.html#ibis_ml.Drop">?<span>Documentation for Drop</span></a></label><div class="sk-toggleable__content fitted"><pre>Drop(date())</pre></div> </div></div><div class="sk-item"><div class="sk-estimator fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-17" type="checkbox"><label for="sk-estimator-id-17" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">&nbsp;OneHotEncode<a class="sk-estimator-doc-link fitted" rel="noreferrer" target="_blank" href="https://ibis-project.github.io/ibis-ml/reference/steps-encoding.html#ibis_ml.OneHotEncode">?<span>Documentation for OneHotEncode</span></a></label><div class="sk-toggleable__content fitted"><pre>OneHotEncode(cols(('maritalst_893M', 'requesttype_4525192L', 'max_profession_152M', 'max_gender_992L', 'max_empl_industry_691L', 'max_housingtype_772L', 'max_incometype_1044T', 'max_cancelreason_3545846M', 'max_rejectreason_755M', 'education_1103M', 'max_status_219L')))</pre></div> </div></div><div class="sk-item"><div class="sk-estimator fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-18" type="checkbox"><label for="sk-estimator-id-18" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">&nbsp;Drop<a class="sk-estimator-doc-link fitted" rel="noreferrer" target="_blank" href="https://ibis-project.github.io/ibis-ml/reference/steps-other.html#ibis_ml.Drop">?<span>Documentation for Drop</span></a></label><div class="sk-toggleable__content fitted"><pre>Drop(string())</pre></div> </div></div><div class="sk-item"><div class="sk-estimator fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-19" type="checkbox"><label for="sk-estimator-id-19" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">&nbsp;HandleUnivariateOutliers<a class="sk-estimator-doc-link fitted" rel="noreferrer" target="_blank" href="https://ibis-project.github.io/ibis-ml/reference/steps-outlier-handling.html#ibis_ml.HandleUnivariateOutliers">?<span>Documentation for HandleUnivariateOutliers</span></a></label><div class="sk-toggleable__content fitted"><pre>HandleUnivariateOutliers(cols(('max_amount_1115A', 'max_overdueamountmax_950A')),
                         method='z-score',
                         deviation_factor=3,
                         treatment='capping')</pre></div> </div></div><div class="sk-item"><div class="sk-estimator fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-20" type="checkbox"><label for="sk-estimator-id-20" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">&nbsp;ImputeMedian<a class="sk-estimator-doc-link fitted" rel="noreferrer" target="_blank" href="https://ibis-project.github.io/ibis-ml/reference/steps-imputation.html#ibis_ml.ImputeMedian">?<span>Documentation for ImputeMedian</span></a></label><div class="sk-toggleable__content fitted"><pre>ImputeMedian(numeric())</pre></div> </div></div><div class="sk-item"><div class="sk-estimator fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-21" type="checkbox"><label for="sk-estimator-id-21" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">&nbsp;ScaleMinMax<a class="sk-estimator-doc-link fitted" rel="noreferrer" target="_blank" href="https://ibis-project.github.io/ibis-ml/reference/steps-standardization.html#ibis_ml.ScaleMinMax">?<span>Documentation for ScaleMinMax</span></a></label><div class="sk-toggleable__content fitted"><pre>ScaleMinMax(numeric())</pre></div> </div></div><div class="sk-item"><div class="sk-estimator fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-22" type="checkbox"><label for="sk-estimator-id-22" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">&nbsp;FillNA<a class="sk-estimator-doc-link fitted" rel="noreferrer" target="_blank" href="https://ibis-project.github.io/ibis-ml/reference/steps-imputation.html#ibis_ml.FillNA">?<span>Documentation for FillNA</span></a></label><div class="sk-toggleable__content fitted"><pre>FillNA(numeric(), 0)</pre></div> </div></div><div class="sk-item"><div class="sk-estimator fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-23" type="checkbox"><label for="sk-estimator-id-23" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">&nbsp;Cast<a class="sk-estimator-doc-link fitted" rel="noreferrer" target="_blank" href="https://ibis-project.github.io/ibis-ml/reference/steps-other.html#ibis_ml.Cast">?<span>Documentation for Cast</span></a></label><div class="sk-toggleable__content fitted"><pre>Cast(numeric(), 'float32')</pre></div> </div></div></div></div><div class="sk-item"><div class="sk-estimator fitted sk-toggleable"><input class="sk-toggleable__control sk-hidden--visually" id="sk-estimator-id-24" type="checkbox"><label for="sk-estimator-id-24" class="sk-toggleable__label fitted sk-toggleable__label-arrow fitted">XGBClassifier</label><div class="sk-toggleable__content fitted"><pre>XGBClassifier(base_score=None, booster=None, callbacks=None,
              colsample_bylevel=None, colsample_bynode=None,
              colsample_bytree=0.8, device=None, early_stopping_rounds=None,
              enable_categorical=False, eval_metric=None, feature_types=None,
              gamma=None, grow_policy=None, importance_type=None,
              interaction_constraints=None, learning_rate=0.05, max_bin=None,
              max_cat_threshold=None, max_cat_to_onehot=None,
              max_delta_step=None, max_depth=5, max_leaves=None,
              min_child_weight=None, missing=nan, monotone_constraints=None,
              multi_strategy=None, n_estimators=100, n_jobs=None,
              num_parallel_tree=None, random_state=42, ...)</pre></div> </div></div></div></div></div></div>
</div>
</div>
<p>Let’s evaluate the model on the test data using Gini index:</p>
<div id="123379e8" class="cell" data-execution_count="26">
<details class="code-fold">
<summary>Show code to calculate the Gini score for the test dataset</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb35" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb35-1">y_pred_proba <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pipe.predict_proba(X_test)[:, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>]</span>
<span id="cb35-2"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># calculate the AUC score</span></span>
<span id="cb35-3">auc <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> roc_auc_score(y_test, y_pred_proba)</span>
<span id="cb35-4"></span>
<span id="cb35-5"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># calculate the Gini score</span></span>
<span id="cb35-6">gini_score <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> auc <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span></span>
<span id="cb35-7"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"gini_score for test dataset: </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>gini_score<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:,}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-stdout">
<pre><code>gini_score for test dataset: 0.07954028892065734</code></pre>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>The competition is evaluated using a Gini stability metric. For more information, see the <a href="https://www.kaggle.com/competitions/home-credit-credit-risk-model-stability/overview/evaluation">evaluation guidelines</a></p>
</div>
</div>
</section>
<section id="neural-network-classifier" class="level3">
<h3 class="anchored" data-anchor-id="neural-network-classifier">Neural network classifier</h3>
<p>Build a neural network classifier using PyTorch and PyTorch Lightning.</p>
<div class="callout callout-style-default callout-warning callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Warning
</div>
</div>
<div class="callout-body-container callout-body">
<p>It is not recommended to build a neural network classifier for this competition, we are building it solely for demonstration purposes.</p>
</div>
</div>
<p>We’ll demonstrate how to build a model by directly passing the data to it. IbisML recipes can output data in various formats, making it compatible with different modeling frameworks. Let’s first train the recipe:</p>
<div id="6e7a02ad" class="cell" data-execution_count="27">
<details class="code-fold">
<summary>Show code to train the IbisML recipe</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb37" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb37-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># train preprocessing recipe using training dataset</span></span>
<span id="cb37-2">last_mile_preprocessing.fit(X_train, y_train)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="58">
<pre><code>Recipe(ExpandDate(date(), components=['week', 'day']),
       Drop(date()),
       OneHotEncode(cols(('maritalst_893M', 'requesttype_4525192L', 'max_profession_152M', 'max_gender_992L', 'max_empl_industry_691L', 'max_housingtype_772L', 'max_incometype_1044T', 'max_cancelreason_3545846M', 'max_rejectreason_755M', 'education_1103M', 'max_status_219L'))),
       Drop(string()),
       HandleUnivariateOutliers(cols(('max_amount_1115A', 'max_overdueamountmax_950A')),
                                method='z-score',
                                deviation_factor=3,
                                treatment='capping'),
       ImputeMedian(numeric()),
       ScaleMinMax(numeric()),
       FillNA(numeric(), 0),
       Cast(numeric(), 'float32'))</code></pre>
</div>
</div>
<p>In the previous cell, we trained the recipe using the training dataset. Now, we will transform both the train and test datasets using the same recipe. The default output format is a <code>NumPy array</code></p>
<div id="ac5aaa87" class="cell" data-execution_count="28">
<details class="code-fold">
<summary>Show code to transform the datasets using fitted recipe</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb39" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb39-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># transform train and test dataset using IbisML recipe</span></span>
<span id="cb39-2">X_train_transformed <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> last_mile_preprocessing.transform(X_train)</span>
<span id="cb39-3">X_test_transformed <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> last_mile_preprocessing.transform(X_test)</span>
<span id="cb39-4"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"train data shape = </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>X_train_transformed<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>shape<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)</span>
<span id="cb39-5"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"test data shape = </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>X_test_transformed<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>shape<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-stdout">
<pre><code>train data shape = (1144339, 977)
test data shape = (382320, 977)</code></pre>
</div>
</div>
<p>Let’s define a neural network classifier using PyTorch and PyTorch Lighting:</p>
<div id="92200558" class="cell" data-execution_count="29">
<details class="code-fold">
<summary>Show code to define a torch classifier</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb41" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb41-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> numpy <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> np</span>
<span id="cb41-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> torch</span>
<span id="cb41-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> torch.nn <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> nn</span>
<span id="cb41-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> torch.optim <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> optim</span>
<span id="cb41-5"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> torch.utils.data <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> DataLoader, TensorDataset</span>
<span id="cb41-6"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pytorch_lightning <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pl</span>
<span id="cb41-7"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pytorch_lightning <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Trainer</span>
<span id="cb41-8"></span>
<span id="cb41-9"></span>
<span id="cb41-10"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">class</span> NeuralNetClassifier(pl.LightningModule):</span>
<span id="cb41-11">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">__init__</span>(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>, input_dim, hidden_dim<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">8</span>, output_dim<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>):</span>
<span id="cb41-12">        <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">super</span>().<span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">__init__</span>()</span>
<span id="cb41-13">        <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.model <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> nn.Sequential(</span>
<span id="cb41-14">            nn.Linear(input_dim, hidden_dim),</span>
<span id="cb41-15">            nn.ReLU(),</span>
<span id="cb41-16">            nn.Linear(hidden_dim, output_dim),</span>
<span id="cb41-17">        )</span>
<span id="cb41-18">        <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.loss <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> nn.BCEWithLogitsLoss()</span>
<span id="cb41-19">        <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.sigmoid <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> nn.Sigmoid()</span>
<span id="cb41-20"></span>
<span id="cb41-21">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> forward(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>, x):</span>
<span id="cb41-22">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.model(x)</span>
<span id="cb41-23"></span>
<span id="cb41-24">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> training_step(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>, batch, batch_idx):</span>
<span id="cb41-25">        x, y <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> batch</span>
<span id="cb41-26">        y_hat <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>(x)</span>
<span id="cb41-27">        loss <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.loss(y_hat.view(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>), y)</span>
<span id="cb41-28">        <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.log(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"train_loss"</span>, loss)</span>
<span id="cb41-29">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> loss</span>
<span id="cb41-30"></span>
<span id="cb41-31">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> validation_step(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>, batch, batch_idx):</span>
<span id="cb41-32">        x, y <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> batch</span>
<span id="cb41-33">        y_hat <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>(x)</span>
<span id="cb41-34">        loss <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.loss(y_hat.view(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>), y)</span>
<span id="cb41-35">        <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.log(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"val_loss"</span>, loss)</span>
<span id="cb41-36">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> loss</span>
<span id="cb41-37"></span>
<span id="cb41-38">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> configure_optimizers(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>):</span>
<span id="cb41-39">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> optim.Adam(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.parameters(), lr<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.001</span>)</span>
<span id="cb41-40"></span>
<span id="cb41-41">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> predict_proba(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>, x):</span>
<span id="cb41-42">        <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">eval</span>()</span>
<span id="cb41-43">        <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">with</span> torch.no_grad():</span>
<span id="cb41-44">            x <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> x.to(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.device)</span>
<span id="cb41-45">            <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>.sigmoid(<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">self</span>(x))</span>
<span id="cb41-46"></span>
<span id="cb41-47"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># initialize your Lightning Module</span></span>
<span id="cb41-48">nn_classifier <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> NeuralNetClassifier(input_dim<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>X_train_transformed.shape[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>])</span></code></pre></div></div>
</details>
</div>
<p>Now, we’ll create the PyTorch DataLoader using the output from IbisML:</p>
<div id="76fda8db" class="cell" data-execution_count="30">
<details class="code-fold">
<summary>Show code to convert IbisML output to tensor</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb42" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb42-1">y_train_array <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> y_train.to_pandas().to_numpy().astype(np.float32)</span>
<span id="cb42-2">x_train_tensor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> torch.from_numpy(X_train_transformed)</span>
<span id="cb42-3">y_train_tensor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> torch.from_numpy(y_train_array)</span>
<span id="cb42-4">train_dataset <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> TensorDataset(x_train_tensor, y_train_tensor)</span>
<span id="cb42-5"></span>
<span id="cb42-6">y_test_array <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> y_test.to_pandas().to_numpy().astype(np.float32)</span>
<span id="cb42-7">X_test_tensor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> torch.from_numpy(X_test_transformed)</span>
<span id="cb42-8">y_test_tensor <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> torch.from_numpy(y_test_array)</span>
<span id="cb42-9">val_dataset <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> TensorDataset(X_test_tensor, y_test_tensor)</span>
<span id="cb42-10"></span>
<span id="cb42-11">train_loader <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> DataLoader(train_dataset, batch_size<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">32</span>, shuffle<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>)</span>
<span id="cb42-12">val_loader <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> DataLoader(val_dataset, batch_size<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">32</span>, shuffle<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>)</span></code></pre></div></div>
</details>
</div>
<p>Initialize the PyTorch Lightning Trainer:</p>
<div id="4331ae3c" class="cell" data-execution_count="31">
<details class="code-fold">
<summary>Show code to construct PyTorch Lightning Trainer</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb43" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb43-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># initialize a Trainer</span></span>
<span id="cb43-2">trainer <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> Trainer(max_epochs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>)</span>
<span id="cb43-3"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(nn_classifier)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-stdout">
<pre><code>NeuralNetClassifier(
  (model): Sequential(
    (0): Linear(in_features=977, out_features=8, bias=True)
    (1): ReLU()
    (2): Linear(in_features=8, out_features=1, bias=True)
  )
  (loss): BCEWithLogitsLoss()
  (sigmoid): Sigmoid()
)</code></pre>
</div>
</div>
<p>Let’s train the classifier:</p>
<div id="fbfc82b9" class="cell" data-execution_count="32">
<details class="code-fold">
<summary>Show code to train the pytorch classifier</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb45" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb45-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># train the model</span></span>
<span id="cb45-2">trainer.fit(nn_classifier, train_loader, val_loader)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<script type="application/vnd.jupyter.widget-view+json">
{"model_id":"a8835524dc5744d083f8bc99d0d1ee21","version_major":2,"version_minor":0,"quarto_mimetype":"application/vnd.jupyter.widget-view+json"}
</script>
</div>
<div class="cell-output cell-output-display">
<script type="application/vnd.jupyter.widget-view+json">
{"model_id":"95c1d4d51e35415aacad0b0c48391169","version_major":2,"version_minor":0,"quarto_mimetype":"application/vnd.jupyter.widget-view+json"}
</script>
</div>
<div class="cell-output cell-output-display">
<script type="application/vnd.jupyter.widget-view+json">
{"model_id":"80f23800f5224bb6b0bafa9b3f11c09f","version_major":2,"version_minor":0,"quarto_mimetype":"application/vnd.jupyter.widget-view+json"}
</script>
</div>
<div class="cell-output cell-output-display">
<script type="application/vnd.jupyter.widget-view+json">
{"model_id":"8efd0507f1144c1e9a76770adc9c1dbd","version_major":2,"version_minor":0,"quarto_mimetype":"application/vnd.jupyter.widget-view+json"}
</script>
</div>
</div>
<p>Let’s use the trained model to make a prediction:</p>
<div id="004ce1cf" class="cell" data-execution_count="33">
<details class="code-fold">
<summary>Show code to predict using the trained pytorch classifier</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb46" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb46-1">y_pred <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> nn_classifier.predict_proba(X_test_tensor[:<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>])</span>
<span id="cb46-2">y_pred</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="64">
<pre><code>tensor([[0.0238],
        [0.0253],
        [0.0210],
        [0.0254],
        [0.0236],
        [0.0239],
        [0.0242],
        [0.0240],
        [0.0169],
        [0.0236]])</code></pre>
</div>
</div>
</section>
</section>
<section id="takeaways" class="level2">
<h2 class="anchored" data-anchor-id="takeaways">Takeaways</h2>
<p>IbisML provides a powerful suite of last-mile preprocessing transformations, including an advanced column selector that streamlines the selection and transformation of specific columns in your dataset.</p>
<p>It integrates seamlessly with scikit-learn pipelines, allowing you to incorporate preprocessing recipes directly into your workflow. Additionally, IbisML supports a variety of data output formats such as Dask, NumPy, and Arrow, ensuring compatibility with different machine learning frameworks.</p>
<p>Another key advantage of IbisML is its flexibility in performing data preprocessing across multiple backends, including DuckDB, Polars, Spark, BigQuery, and other Ibis backends. This enables you to preprocess your training data using the backend that best suits your needs, whether for large or small datasets, on local machines or compute backends, and in both development and production environments. Stay tuned for a future post where we will explore this capability in more detail.</p>
</section>
<section id="reference" class="level2">
<h2 class="anchored" data-anchor-id="reference">Reference</h2>
<ul>
<li><a href="https://www.kaggle.com/code/yuuniekiri/fork-of-home-credit-risk-lightgbm">1st Place Solution</a></li>
<li><a href="https://www.kaggle.com/code/jetakow/home-credit-2024-starter-notebook">home-credit-2024-starter-notebook</a></li>
<li><a href="https://www.kaggle.com/competitions/home-credit-credit-risk-model-stability/discussion/508337">EDA and Submission</a></li>
<li><a href="https://www.kaggle.com/code/greysky/home-credit-baseline">Home Credit Baseline</a></li>
</ul>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>duckdb</category>
  <category>machine learning</category>
  <category>feature engineering</category>
  <guid>https://ibis-project.org/posts/ibisml/</guid>
  <pubDate>Thu, 22 Aug 2024 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Querying 1TB on a laptop with Python dataframes</title>
  <dc:creator>Cody Peterson</dc:creator>
  <link>https://ibis-project.org/posts/1tbc/</link>
  <description><![CDATA[ 






<p><strong><em>TPC-H benchmark at <code>sf=1024</code> via DuckDB, DataFusion, and Polars on a MacBook Pro with 96GiB of RAM.</em></strong></p>
<hr>
<p>pandas requires your dataframe to fit in memory. Out-of-memory (OOM) errors are common when working on larger datasets, though the corresponding size of data on disk can be surprising. The creator of pandas and Ibis noted in <a href="https://wesmckinney.com/blog/apache-arrow-pandas-internals">“Apache Arrow and the ‘10 Things I Hate About pandas’”</a>:</p>
<blockquote class="blockquote">
<p>To put it simply, <strong>we weren’t thinking about analyzing 100 GB or 1 TB datasets in 2011</strong>. [In 2017], my rule of thumb for pandas is that <strong>you should have 5 to 10 times as much RAM as the size of your dataset</strong>. So if you have a 10 GB dataset, you should really have about 64, preferably 128 GB of RAM if you want to avoid memory management problems. This comes as a shock to users who expect to be able to analyze datasets that are within a factor of 2 or 3 the size of their computer’s RAM.</p>
</blockquote>
<p>Today with Ibis you can reliably and efficiently process a 1TB dataset on a laptop with &lt;1/10th the RAM.</p>
<div class="callout callout-style-default callout-important callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Important
</div>
</div>
<div class="callout-body-container callout-body">
<p>This represents <strong>a 50-100X improvement</strong> in RAM requirements for Python dataframes in just 7 years thanks to <a href="https://wesmckinney.com/blog/looking-back-15-years">composable data systems</a> and <a href="https://duckdb.org/2024/06/26/benchmarks-over-time">hard work by the DuckDB team</a>.</p>
</div>
</div>
<section id="exploring-the-data-with-python-dataframes" class="level2">
<h2 class="anchored" data-anchor-id="exploring-the-data-with-python-dataframes">Exploring the data with Python dataframes</h2>
<p>I’ve generated ~1TB (<code>sf=1024</code>) of <a href="https://www.tpc.org/tpch">TPC-H data</a> on my MacBook Pro with 96 GiB of RAM. We’ll start exploring it with pandas, Polars, and Ibis and discuss where and why they start to struggle.</p>
<div class="callout callout-style-default callout-tip callout-titled" title="Generating the data">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-2-contents" aria-controls="callout-2" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Tip</span>Generating the data
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-2" class="callout-2-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>See <a href="../../posts/ibis-bench/index.html#reproducing-the-benchmark">the previous post</a> for instructions on generating the data. I used <code>bench gen-data -s 1024 -n 128</code>, partitioning the data to avoid OOM errors while it generated.</p>
<p>I’d recommend instead generating a smaller scale factor and copying it as many times as needed, as generating the data at <code>sf=1024</code> can take a long time.</p>
</div>
</div>
</div>
<p>To follow along, install the required packages:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install pandas <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'ibis-framework[duckdb,datafusion]'</span> polars-u64-idx plotly</span></code></pre></div></div>
<div class="callout callout-style-default callout-note callout-titled" title="Why polars-u64-idx?">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-3-contents" aria-controls="callout-3" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>Why polars-u64-idx?
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-3" class="callout-3-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>We need to use <code>polars-u64-idx</code> instead of <code>polars</code> <a href="https://docs.pola.rs/user-guide/installation/#big-index">to work with &gt;4.2 billion rows</a>.</p>
</div>
</div>
</div>
<p>Imports and setup:</p>
<div id="10f98bb4" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> os</span>
<span id="cb2-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> glob</span>
<span id="cb2-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb2-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pandas <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pd</span>
<span id="cb2-5"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> polars <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pl</span>
<span id="cb2-6"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> plotly.express <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> px</span>
<span id="cb2-7"></span>
<span id="cb2-8">px.defaults.template <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"plotly_dark"</span></span>
<span id="cb2-9">ibis.options.interactive <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span></code></pre></div></div>
</div>
<p>Let’s check the number of rows across all tables in the TPC-H data:</p>
<div id="4582c6e3" class="cell" data-execution_count="4">
<details class="code-fold">
<summary>Show code to get number of rows in TPC-H data</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1">sf <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1024</span></span>
<span id="cb3-2">n <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">128</span></span>
<span id="cb3-3">data_dir <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"tpch_data/parquet/sf=</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>sf<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">/n=</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>n<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span></span>
<span id="cb3-4">tables <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> glob.glob(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>data_dir<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">/*"</span>)</span>
<span id="cb3-5"></span>
<span id="cb3-6">total_rows <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span></span>
<span id="cb3-7"></span>
<span id="cb3-8"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> table <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> tables:</span>
<span id="cb3-9">    t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_parquet(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>table<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">/*.parquet"</span>)</span>
<span id="cb3-10">    total_rows <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+=</span> t.count().to_pyarrow().as_py()</span>
<span id="cb3-11"></span>
<span id="cb3-12"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"total rows: </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>total_rows<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:,}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-stdout">
<pre><code>total rows: 8,867,848,906</code></pre>
</div>
</div>
<p>Over 8.8 billion rows!</p>
<p>We can compute and visualize the sizes of the tables in the TPC-H data (as compressed Parquet files on disk):</p>
<div id="93ee34d9" class="cell" data-execution_count="5">
<details class="code-fold">
<summary>Show code to get sizes of tables in TPC-H data</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> get_dir_size(path):</span>
<span id="cb5-2">    <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pathlib <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Path</span>
<span id="cb5-3"></span>
<span id="cb5-4">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>(p.stat().st_size <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> p <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> Path(path).rglob(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"*"</span>) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> p.is_file())</span>
<span id="cb5-5"></span>
<span id="cb5-6"></span>
<span id="cb5-7">sizes <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [get_dir_size(table) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> table <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> tables]</span>
<span id="cb5-8">names <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [os.path.basename(table) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> table <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> tables]</span>
<span id="cb5-9"></span>
<span id="cb5-10">tmp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.memtable({<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"name"</span>: names, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"size"</span>: sizes})</span>
<span id="cb5-11">tmp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> tmp.mutate(size_gb<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>tmp[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"size"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> (<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1024</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>))</span>
<span id="cb5-12">tmp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> tmp.mutate(size_gb_mem<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>tmp[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"size_gb"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">11</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>)</span>
<span id="cb5-13">tmp <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> tmp.order_by(ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"size_gb"</span>))</span>
<span id="cb5-14"></span>
<span id="cb5-15">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb5-16">    tmp,</span>
<span id="cb5-17">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"name"</span>,</span>
<span id="cb5-18">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"size_gb"</span>,</span>
<span id="cb5-19">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"table sizes in TPC-H data"</span>,</span>
<span id="cb5-20">    hover_data<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"size_gb_mem"</span>],</span>
<span id="cb5-21">    labels<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb5-22">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"name"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"table name"</span>,</span>
<span id="cb5-23">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"size_gb"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"size (GB on-disk in compressed Parquet files)"</span>,</span>
<span id="cb5-24">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"size_gb_mem"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"size (approximate GB in memory)"</span>,</span>
<span id="cb5-25">    },</span>
<span id="cb5-26">)</span>
<span id="cb5-27"></span>
<span id="cb5-28"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(</span>
<span id="cb5-29">    <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"total size: </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>tmp[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'size_gb'</span>]<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>to_pyarrow()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>as_py()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:,.2f}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">GBs (compressed Parquet files)"</span></span>
<span id="cb5-30">)</span>
<span id="cb5-31">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-stdout">
<pre><code>total size: 407.40GBs (compressed Parquet files)</code></pre>
</div>
<div class="cell-output cell-output-display">
<div>                            <div id="3453571d-830f-4df8-9f8a-07890ab3ad2c" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("3453571d-830f-4df8-9f8a-07890ab3ad2c")) {                    Plotly.newPlot(                        "3453571d-830f-4df8-9f8a-07890ab3ad2c",                        [{"alignmentgroup":"True","customdata":[[610.57368901968],[148.12477697525173],[94.80156523771583],[26.504523511976004],[14.584088899753988],[1.6873541740700602],[7.024072110652923e-05],[3.30120325088501e-05]],"hovertemplate":"table name=%{x}\u003cbr\u003esize (GB on-disk in compressed Parquet files)=%{y}\u003cbr\u003esize (approximate GB in memory)=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["lineitem","orders","partsupp","customer","part","supplier","nation","region"],"xaxis":"x","y":[277.53349500894547,67.32944407965988,43.09162056259811,12.04751068726182,6.6291313180699944,0.7669791700318456,3.1927600502967834e-05,1.500546932220459e-05],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"table name"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"size (GB on-disk in compressed Parquet files)"}},"legend":{"tracegroupgap":0},"title":{"text":"table sizes in TPC-H data"},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('3453571d-830f-4df8-9f8a-07890ab3ad2c');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>In-memory this would be about 1TB. Uncompressed CSV files would be &gt;1TB on disk.</p>
<p>Let’s explore the largest table, <code>lineitem</code>. This table in memory is ~6X larger than RAM.</p>
<div id="def68271" class="cell" data-execution_count="6">
<details class="code-fold">
<summary>Show code to explore the lineitem table</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1">table_name <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"lineitem"</span></span>
<span id="cb7-2">data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>data_dir<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">/</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>table_name<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">/*.parquet"</span></span>
<span id="cb7-3"></span>
<span id="cb7-4">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_parquet(data)</span>
<span id="cb7-5"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"rows: </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>t<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>count()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>to_pyarrow()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">.</span>as_py()<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:,}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;"> | columns: </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">len</span>(t.columns)<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>)</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-stdout">
<pre><code>rows: 6,144,008,876 | columns: 18</code></pre>
</div>
</div>
<p>Over 6 billion rows!</p>
<p>Let’s try to display the first few rows with Ibis, pandas, and Polars:</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-1-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-1" aria-controls="tabset-1-1" aria-selected="true" href="">Ibis</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-2" aria-controls="tabset-1-2" aria-selected="false" href="">pandas</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-3" aria-controls="tabset-1-3" aria-selected="false" href="">Polars (eager)</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-4-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-4" aria-controls="tabset-1-4" aria-selected="false" href="">Polars (lazy)</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-5-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-5" aria-controls="tabset-1-5" aria-selected="false" href="">Polars (lazy, streaming)</a></li></ul>
<div class="tab-content">
<div id="tabset-1-1" class="tab-pane active" aria-labelledby="tabset-1-1-tab">
<div id="01bda6fa" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_parquet(data)</span>
<span id="cb9-2">t.head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="6">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> l_orderkey </span>┃<span style="font-weight: bold"> l_partkey </span>┃<span style="font-weight: bold"> l_suppkey </span>┃<span style="font-weight: bold"> l_linenumber </span>┃<span style="font-weight: bold"> l_quantity     </span>┃<span style="font-weight: bold"> l_extendedprice </span>┃<span style="font-weight: bold"> l_discount     </span>┃<span style="font-weight: bold"> l_tax          </span>┃<span style="font-weight: bold"> l_returnflag </span>┃<span style="font-weight: bold"> l_linestatus </span>┃<span style="font-weight: bold"> l_shipdate </span>┃<span style="font-weight: bold"> l_commitdate </span>┃<span style="font-weight: bold"> l_receiptdate </span>┃<span style="font-weight: bold"> l_shipinstruct    </span>┃<span style="font-weight: bold"> l_shipmode </span>┃<span style="font-weight: bold"> l_comment                          </span>┃<span style="font-weight: bold"> n     </span>┃<span style="font-weight: bold"> sf    </span>┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├────────────┼───────────┼───────────┼──────────────┼────────────────┼─────────────────┼────────────────┼────────────────┼──────────────┼──────────────┼────────────┼──────────────┼───────────────┼───────────────────┼────────────┼────────────────────────────────────┼───────┼───────┤
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">158913889</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7873905</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32213.98</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.02</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-03-13</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-02-12</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-03-22</span>    │ <span style="color: #008000; text-decoration-color: #008000">DELIVER IN PERSON</span> │ <span style="color: #008000; text-decoration-color: #008000">TRUCK     </span> │ <span style="color: #008000; text-decoration-color: #008000">to beans x-ray carefull           </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1024</span> │
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">68924498</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7484499</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">36.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">54685.80</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.09</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.06</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-04-12</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-02-28</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-04-20</span>    │ <span style="color: #008000; text-decoration-color: #008000">TAKE BACK RETURN </span> │ <span style="color: #008000; text-decoration-color: #008000">MAIL      </span> │ <span style="color: #008000; text-decoration-color: #008000"> according to the final foxes. qui</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1024</span> │
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">65228571</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3788572</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11970.48</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.10</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.02</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-01-29</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-03-05</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-01-31</span>    │ <span style="color: #008000; text-decoration-color: #008000">TAKE BACK RETURN </span> │ <span style="color: #008000; text-decoration-color: #008000">REG AIR   </span> │ <span style="color: #008000; text-decoration-color: #008000">ourts cajole above the furiou     </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1024</span> │
└────────────┴───────────┴───────────┴──────────────┴────────────────┴─────────────────┴────────────────┴────────────────┴──────────────┴──────────────┴────────────┴──────────────┴───────────────┴───────────────────┴────────────┴────────────────────────────────────┴───────┴───────┘
</pre>
</div>
</div>
</div>
<div id="tabset-1-2" class="tab-pane" aria-labelledby="tabset-1-2-tab">
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="annotated-cell-15" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><button class="code-annotation-anchor" data-target-cell="annotated-cell-15" data-target-annotation="1">1</button><span id="annotated-cell-15-1" class="code-annotation-target">df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pd.concat([pd.read_parquet(f) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> f <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> glob.glob(data)], ignore_index<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>)</span>
<span id="annotated-cell-15-2">df.head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-15" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-15" data-code-lines="1" data-code-annotation="1">Work around lack of reading multiple parquet files in pandas</span>
</dd>
</dl>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode html code-with-copy"><code class="sourceCode html"><span id="cb10-1">The Kernel crashed while executing code in the current cell or a previous cell.</span>
<span id="cb10-2">Please review the code in the cell(s) to identify a possible cause of the failure.</span>
<span id="cb10-3">Click here for more info.</span>
<span id="cb10-4">View Jupyter log for further details.</span></code></pre></div></div>
</div>
<div id="tabset-1-3" class="tab-pane" aria-labelledby="tabset-1-3-tab">
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1">df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pl.read_parquet(data)</span>
<span id="cb11-2">df.head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span></code></pre></div></div>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode html code-with-copy"><code class="sourceCode html"><span id="cb12-1">The Kernel crashed while executing code in the current cell or a previous cell.</span>
<span id="cb12-2">Please review the code in the cell(s) to identify a possible cause of the failure.</span>
<span id="cb12-3">Click here for more info.</span>
<span id="cb12-4">View Jupyter log for further details.</span></code></pre></div></div>
</div>
<div id="tabset-1-4" class="tab-pane" aria-labelledby="tabset-1-4-tab">
<div id="37880636" class="cell" data-execution_count="8">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb13-1">df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pl.scan_parquet(data)</span>
<span id="cb13-2">df.head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>).collect()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="7">
<div><style>
.dataframe > thead > tr,
.dataframe > tbody > tr {
  text-align: right;
  white-space: pre-wrap;
}
</style>
<small>shape: (3, 16)</small>
<table class="dataframe caption-top table table-sm table-striped small" data-border="1">
<thead>
<tr class="header">
<th data-quarto-table-cell-role="th">l_orderkey</th>
<th data-quarto-table-cell-role="th">l_partkey</th>
<th data-quarto-table-cell-role="th">l_suppkey</th>
<th data-quarto-table-cell-role="th">l_linenumber</th>
<th data-quarto-table-cell-role="th">l_quantity</th>
<th data-quarto-table-cell-role="th">l_extendedprice</th>
<th data-quarto-table-cell-role="th">l_discount</th>
<th data-quarto-table-cell-role="th">l_tax</th>
<th data-quarto-table-cell-role="th">l_returnflag</th>
<th data-quarto-table-cell-role="th">l_linestatus</th>
<th data-quarto-table-cell-role="th">l_shipdate</th>
<th data-quarto-table-cell-role="th">l_commitdate</th>
<th data-quarto-table-cell-role="th">l_receiptdate</th>
<th data-quarto-table-cell-role="th">l_shipinstruct</th>
<th data-quarto-table-cell-role="th">l_shipmode</th>
<th data-quarto-table-cell-role="th">l_comment</th>
</tr>
<tr class="even">
<td>i64</td>
<td>i64</td>
<td>i64</td>
<td>i64</td>
<td>decimal[15,2]</td>
<td>decimal[15,2]</td>
<td>decimal[15,2]</td>
<td>decimal[15,2]</td>
<td>str</td>
<td>str</td>
<td>date</td>
<td>date</td>
<td>date</td>
<td>str</td>
<td>str</td>
<td>str</td>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>1</td>
<td>158913889</td>
<td>7873905</td>
<td>1</td>
<td>17.00</td>
<td>32213.98</td>
<td>0.04</td>
<td>0.02</td>
<td>"N"</td>
<td>"O"</td>
<td>1996-03-13</td>
<td>1996-02-12</td>
<td>1996-03-22</td>
<td>"DELIVER IN PERSON"</td>
<td>"TRUCK"</td>
<td>"to beans x-ray carefull"</td>
</tr>
<tr class="even">
<td>1</td>
<td>68924498</td>
<td>7484499</td>
<td>2</td>
<td>36.00</td>
<td>54685.80</td>
<td>0.09</td>
<td>0.06</td>
<td>"N"</td>
<td>"O"</td>
<td>1996-04-12</td>
<td>1996-02-28</td>
<td>1996-04-20</td>
<td>"TAKE BACK RETURN"</td>
<td>"MAIL"</td>
<td>" according to the final foxes.…</td>
</tr>
<tr class="odd">
<td>1</td>
<td>65228571</td>
<td>3788572</td>
<td>3</td>
<td>8.00</td>
<td>11970.48</td>
<td>0.10</td>
<td>0.02</td>
<td>"N"</td>
<td>"O"</td>
<td>1996-01-29</td>
<td>1996-03-05</td>
<td>1996-01-31</td>
<td>"TAKE BACK RETURN"</td>
<td>"REG AIR"</td>
<td>"ourts cajole above the furiou"</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div id="tabset-1-5" class="tab-pane" aria-labelledby="tabset-1-5-tab">
<div id="e85a3292" class="cell" data-execution_count="9">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb14-1">df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pl.scan_parquet(data)</span>
<span id="cb14-2">df.head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>).collect(streaming<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="8">
<div><style>
.dataframe > thead > tr,
.dataframe > tbody > tr {
  text-align: right;
  white-space: pre-wrap;
}
</style>
<small>shape: (3, 16)</small>
<table class="dataframe caption-top table table-sm table-striped small" data-border="1">
<thead>
<tr class="header">
<th data-quarto-table-cell-role="th">l_orderkey</th>
<th data-quarto-table-cell-role="th">l_partkey</th>
<th data-quarto-table-cell-role="th">l_suppkey</th>
<th data-quarto-table-cell-role="th">l_linenumber</th>
<th data-quarto-table-cell-role="th">l_quantity</th>
<th data-quarto-table-cell-role="th">l_extendedprice</th>
<th data-quarto-table-cell-role="th">l_discount</th>
<th data-quarto-table-cell-role="th">l_tax</th>
<th data-quarto-table-cell-role="th">l_returnflag</th>
<th data-quarto-table-cell-role="th">l_linestatus</th>
<th data-quarto-table-cell-role="th">l_shipdate</th>
<th data-quarto-table-cell-role="th">l_commitdate</th>
<th data-quarto-table-cell-role="th">l_receiptdate</th>
<th data-quarto-table-cell-role="th">l_shipinstruct</th>
<th data-quarto-table-cell-role="th">l_shipmode</th>
<th data-quarto-table-cell-role="th">l_comment</th>
</tr>
<tr class="even">
<td>i64</td>
<td>i64</td>
<td>i64</td>
<td>i64</td>
<td>decimal[15,2]</td>
<td>decimal[15,2]</td>
<td>decimal[15,2]</td>
<td>decimal[15,2]</td>
<td>str</td>
<td>str</td>
<td>date</td>
<td>date</td>
<td>date</td>
<td>str</td>
<td>str</td>
<td>str</td>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>1</td>
<td>158913889</td>
<td>7873905</td>
<td>1</td>
<td>17.00</td>
<td>32213.98</td>
<td>0.04</td>
<td>0.02</td>
<td>"N"</td>
<td>"O"</td>
<td>1996-03-13</td>
<td>1996-02-12</td>
<td>1996-03-22</td>
<td>"DELIVER IN PERSON"</td>
<td>"TRUCK"</td>
<td>"to beans x-ray carefull"</td>
</tr>
<tr class="even">
<td>1</td>
<td>68924498</td>
<td>7484499</td>
<td>2</td>
<td>36.00</td>
<td>54685.80</td>
<td>0.09</td>
<td>0.06</td>
<td>"N"</td>
<td>"O"</td>
<td>1996-04-12</td>
<td>1996-02-28</td>
<td>1996-04-20</td>
<td>"TAKE BACK RETURN"</td>
<td>"MAIL"</td>
<td>" according to the final foxes.…</td>
</tr>
<tr class="odd">
<td>1</td>
<td>65228571</td>
<td>3788572</td>
<td>3</td>
<td>8.00</td>
<td>11970.48</td>
<td>0.10</td>
<td>0.02</td>
<td>"N"</td>
<td>"O"</td>
<td>1996-01-29</td>
<td>1996-03-05</td>
<td>1996-01-31</td>
<td>"TAKE BACK RETURN"</td>
<td>"REG AIR"</td>
<td>"ourts cajole above the furiou"</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<p>Ibis, with the default backend of DuckDB, can display the first few rows. Polars (lazy) can too in regular and streaming mode. For lazily computation, an underlying query engine has the opportunity to determine a subset of data to be read into memory that satisfies a given query. For example, to display any three rows from the <code>lineitem</code> table it can just read the first three rows from the first Parquet file in the dataset.</p>
<p>Both pandas and Polars (eager) crash Python as they must load all the data into memory to construct their dataframes. This is expected because the table in memory ~6X larger than our 96GiB of RAM.</p>
<div class="callout callout-style-default callout-tip callout-titled" title="Visualize the Ibis expression tree">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-4-contents" aria-controls="callout-4" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Tip</span>Visualize the Ibis expression tree
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-4" class="callout-4-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<div id="84082a56" class="cell" data-execution_count="10">
<details class="code-fold">
<summary>Show code to visualize the Ibis expression tree</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb15-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.expr.visualize <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> to_graph</span>
<span id="cb15-2"></span>
<span id="cb15-3">to_graph(t.head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>))</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="9">
<div>
<figure class="figure">
<p><img src="https://ibis-project.org/posts/1tbc/index_files/figure-html/cell-10-output-1.svg" class="img-fluid figure-img"></p>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<p>Let’s try something more challenging: <a href="https://en.wikipedia.org/wiki/Partial_sorting">partially sorting</a> the <code>lineitem</code> table. This forces at least some columns from all rows of data to pass through the query engine to determine the top 3 rows per the specified ordering. Since the data is larger than RAM, only “streaming” engines can handle this. We’ll try with the methods that worked on the previous query and add in the DataFusion backend for Ibis.</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-2-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-1" aria-controls="tabset-2-1" aria-selected="true" href="">Ibis (DuckDB)</a></li><li class="nav-item"><a class="nav-link" id="tabset-2-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-2" aria-controls="tabset-2-2" aria-selected="false" href="">Ibis (DataFusion)</a></li><li class="nav-item"><a class="nav-link" id="tabset-2-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-3" aria-controls="tabset-2-3" aria-selected="false" href="">Polars (lazy)</a></li><li class="nav-item"><a class="nav-link" id="tabset-2-4-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-4" aria-controls="tabset-2-4" aria-selected="false" href="">Polars (lazy, streaming)</a></li></ul>
<div class="tab-content">
<div id="tabset-2-1" class="tab-pane active" aria-labelledby="tabset-2-1-tab">
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb16-1">ibis.set_backend(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"duckdb"</span>)</span>
<span id="cb16-2">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_parquet(data)</span>
<span id="cb16-3">t.order_by(t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_partkey"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_suppkey"</span>]).head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span></code></pre></div></div>
<div id="2370b7da" class="cell" data-execution_count="11">
<div class="cell-output cell-output-display" data-execution_count="10">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> l_orderkey </span>┃<span style="font-weight: bold"> l_partkey </span>┃<span style="font-weight: bold"> l_suppkey </span>┃<span style="font-weight: bold"> l_linenumber </span>┃<span style="font-weight: bold"> l_quantity     </span>┃<span style="font-weight: bold"> l_extendedprice </span>┃<span style="font-weight: bold"> l_discount     </span>┃<span style="font-weight: bold"> l_tax          </span>┃<span style="font-weight: bold"> l_returnflag </span>┃<span style="font-weight: bold"> l_linestatus </span>┃<span style="font-weight: bold"> l_shipdate </span>┃<span style="font-weight: bold"> l_commitdate </span>┃<span style="font-weight: bold"> l_receiptdate </span>┃<span style="font-weight: bold"> l_shipinstruct    </span>┃<span style="font-weight: bold"> l_shipmode </span>┃<span style="font-weight: bold"> l_comment                </span>┃<span style="font-weight: bold"> n     </span>┃<span style="font-weight: bold"> sf    </span>┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├────────────┼───────────┼───────────┼──────────────┼────────────────┼─────────────────┼────────────────┼────────────────┼──────────────┼──────────────┼────────────┼──────────────┼───────────────┼───────────────────┼────────────┼──────────────────────────┼───────┼───────┤
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2182651</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4742652</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">28.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">48539.40</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.09</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.06</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-04-21</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-03-30</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-05-16</span>    │ <span style="color: #008000; text-decoration-color: #008000">NONE             </span> │ <span style="color: #008000; text-decoration-color: #008000">AIR       </span> │ <span style="color: #008000; text-decoration-color: #008000">s cajole busily above t </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1024</span> │
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16009676</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">649679</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">50715.84</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.07</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.02</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-01-30</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-02-07</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-02-03</span>    │ <span style="color: #008000; text-decoration-color: #008000">DELIVER IN PERSON</span> │ <span style="color: #008000; text-decoration-color: #008000">MAIL      </span> │ <span style="color: #008000; text-decoration-color: #008000">rouches. special        </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1024</span> │
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">24603274</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1563281</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">24.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">28224.96</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.10</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-03-30</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-03-14</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-04-01</span>    │ <span style="color: #008000; text-decoration-color: #008000">NONE             </span> │ <span style="color: #008000; text-decoration-color: #008000">FOB       </span> │ <span style="color: #008000; text-decoration-color: #008000"> the regular, regular pa</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1024</span> │
└────────────┴───────────┴───────────┴──────────────┴────────────────┴─────────────────┴────────────────┴────────────────┴──────────────┴──────────────┴────────────┴──────────────┴───────────────┴───────────────────┴────────────┴──────────────────────────┴───────┴───────┘
</pre>
</div>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/1tbc/ibis-duckdb-sort.gif" class="img-fluid figure-img"></p>
<figcaption>CPU/RAM while Ibis with the DuckDB backend sorting</figcaption>
</figure>
</div>
</div>
<div id="tabset-2-2" class="tab-pane" aria-labelledby="tabset-2-2-tab">
<div id="b07e6926" class="cell" data-execution_count="12">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb17-1">ibis.set_backend(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"datafusion"</span>)</span>
<span id="cb17-2">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_parquet(data)</span>
<span id="cb17-3">t.order_by(t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_partkey"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_suppkey"</span>]).head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="11">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> l_orderkey </span>┃<span style="font-weight: bold"> l_partkey </span>┃<span style="font-weight: bold"> l_suppkey </span>┃<span style="font-weight: bold"> l_linenumber </span>┃<span style="font-weight: bold"> l_quantity     </span>┃<span style="font-weight: bold"> l_extendedprice </span>┃<span style="font-weight: bold"> l_discount     </span>┃<span style="font-weight: bold"> l_tax          </span>┃<span style="font-weight: bold"> l_returnflag </span>┃<span style="font-weight: bold"> l_linestatus </span>┃<span style="font-weight: bold"> l_shipdate </span>┃<span style="font-weight: bold"> l_commitdate </span>┃<span style="font-weight: bold"> l_receiptdate </span>┃<span style="font-weight: bold"> l_shipinstruct    </span>┃<span style="font-weight: bold"> l_shipmode </span>┃<span style="font-weight: bold"> l_comment                </span>┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                   │
├────────────┼───────────┼───────────┼──────────────┼────────────────┼─────────────────┼────────────────┼────────────────┼──────────────┼──────────────┼────────────┼──────────────┼───────────────┼───────────────────┼────────────┼──────────────────────────┤
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2182651</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4742652</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">28.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">48539.40</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.09</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.06</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-04-21</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-03-30</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-05-16</span>    │ <span style="color: #008000; text-decoration-color: #008000">NONE             </span> │ <span style="color: #008000; text-decoration-color: #008000">AIR       </span> │ <span style="color: #008000; text-decoration-color: #008000">s cajole busily above t </span> │
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16009676</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">649679</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">50715.84</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.07</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.02</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-01-30</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-02-07</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-02-03</span>    │ <span style="color: #008000; text-decoration-color: #008000">DELIVER IN PERSON</span> │ <span style="color: #008000; text-decoration-color: #008000">MAIL      </span> │ <span style="color: #008000; text-decoration-color: #008000">rouches. special        </span> │
│          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">24603274</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1563281</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">24.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">28224.96</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.10</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-03-30</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-03-14</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-04-01</span>    │ <span style="color: #008000; text-decoration-color: #008000">NONE             </span> │ <span style="color: #008000; text-decoration-color: #008000">FOB       </span> │ <span style="color: #008000; text-decoration-color: #008000"> the regular, regular pa</span> │
└────────────┴───────────┴───────────┴──────────────┴────────────────┴─────────────────┴────────────────┴────────────────┴──────────────┴──────────────┴────────────┴──────────────┴───────────────┴───────────────────┴────────────┴──────────────────────────┘
</pre>
</div>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/1tbc/ibis-datafusion-sort.gif" class="img-fluid figure-img"></p>
<figcaption>CPU/RAM while Ibis with the DataFusion backend sorting</figcaption>
</figure>
</div>
</div>
<div id="tabset-2-3" class="tab-pane" aria-labelledby="tabset-2-3-tab">
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb18-1">df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pl.scan_parquet(data)</span>
<span id="cb18-2">(</span>
<span id="cb18-3">    df.sort(pl.col(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>), pl.col(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_partkey"</span>), pl.col(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_suppkey"</span>))</span>
<span id="cb18-4">    .head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span>
<span id="cb18-5">    .collect()</span>
<span id="cb18-6">)</span></code></pre></div></div>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb19" style="background: #f1f3f5;"><pre class="sourceCode html code-with-copy"><code class="sourceCode html"><span id="cb19-1">The Kernel crashed while executing code in the current cell or a previous cell.</span>
<span id="cb19-2">Please review the code in the cell(s) to identify a possible cause of the failure.</span>
<span id="cb19-3">Click here for more info.</span>
<span id="cb19-4">View Jupyter log for further details.</span></code></pre></div></div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/1tbc/polars-lazy-sort.gif" class="img-fluid figure-img"></p>
<figcaption>CPU/RAM while Polars with the lazy API sorting</figcaption>
</figure>
</div>
</div>
<div id="tabset-2-4" class="tab-pane" aria-labelledby="tabset-2-4-tab">
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb20" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb20-1">df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pl.scan_parquet(data)</span>
<span id="cb20-2">(</span>
<span id="cb20-3">    df.sort(pl.col(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>), pl.col(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_partkey"</span>), pl.col(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_suppkey"</span>))</span>
<span id="cb20-4">    .head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span>
<span id="cb20-5">    .collect(streaming<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>)</span>
<span id="cb20-6">)</span></code></pre></div></div>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb21" style="background: #f1f3f5;"><pre class="sourceCode html code-with-copy"><code class="sourceCode html"><span id="cb21-1">PanicException: called `Result::unwrap()` on an `Err` value: "SendError(..)"</span></code></pre></div></div>
<p>See <a href="https://github.com/pola-rs/polars/issues/17289#issuecomment-2200469528">GitHub issue</a>.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/1tbc/polars-lazy-streaming-sort.gif" class="img-fluid figure-img"></p>
<figcaption>CPU/RAM while Polars with the lazy API, streaming engine sorting</figcaption>
</figure>
</div>
</div>
</div>
</div>
<div class="callout callout-style-default callout-tip callout-titled" title="Visualize the Ibis expression tree">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-5-contents" aria-controls="callout-5" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Tip</span>Visualize the Ibis expression tree
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-5" class="callout-5-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<div id="83b9f9ff" class="cell" data-execution_count="13">
<details class="code-fold">
<summary>Show code to visualize the Ibis expression tree</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb22" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb22-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.expr.visualize <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> to_graph</span>
<span id="cb22-2"></span>
<span id="cb22-3">to_graph(t.order_by(t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_partkey"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_suppkey"</span>]).head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>))</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="12">
<div>
<figure class="figure">
<p><img src="https://ibis-project.org/posts/1tbc/index_files/figure-html/cell-13-output-1.svg" class="img-fluid figure-img"></p>
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<p>Ibis with the DuckDB and DataFusion backends complete this in about 2 minutes each. Polars (lazy) crashes the kernel after about 2 minutes with its default mode and panics in streaming mode.</p>
<p><strong>Streaming is an overloaded term here</strong>. In the context of Ibis, a streaming backend refers to a near real-time data processing engine like <a href="https://ibis-project.org/backends/flink">Apache Flink</a> or <a href="https://ibis-project.org/backends/risingwave">RisingWave</a>. In the context of Polars, streaming is a separate engine from the default that can handle larger-than-memory data. This general paradigm is already used by DuckDB and DataFusion, hence their ability to complete the above query. <a href="https://github.com/pola-rs/polars/issues/16694#issuecomment-2146668559">The Polars team does not recommend using their current streaming engine for benchmarking</a> and has <a href="https://pola.rs/posts/announcing-polars-1/#new-engine-design">announced a new version of their streaming engine</a>.</p>
<p>As we’ll see in the benchmark result, some queries will fail to complete with Polars and DataFusion. These queries are killed by the operating system due to a lack of memory.</p>
<div class="callout callout-style-default callout-tip callout-titled" title="Sampling large datasets with Ibis">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-6-contents" aria-controls="callout-6" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Tip</span>Sampling large datasets with Ibis
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-6" class="callout-6-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>If we want to work with pandas or Polars dataframes at larger scales, we can use Ibis to sample or filter the data (and perform any other operations) with computation pushed to a more scalable backend. Then just output the Ibis dataframe to pandas or Polars for downstream use:</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-3-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-1" aria-controls="tabset-3-1" aria-selected="true" href="">pandas</a></li><li class="nav-item"><a class="nav-link" id="tabset-3-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-3-2" aria-controls="tabset-3-2" aria-selected="false" href="">Polars</a></li></ul>
<div class="tab-content">
<div id="tabset-3-1" class="tab-pane active" aria-labelledby="tabset-3-1-tab">
<div id="66fb5bcd" class="cell" data-execution_count="15">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb23" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb23-1">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_parquet(data)</span>
<span id="cb23-2"></span>
<span id="cb23-3">df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb23-4">    t.sample(fraction<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.0001</span>)</span>
<span id="cb23-5">    .order_by(t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_partkey"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_suppkey"</span>])</span>
<span id="cb23-6">    .to_pandas()</span>
<span id="cb23-7">)</span>
<span id="cb23-8">df.head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="14">
<div>


<table class="dataframe caption-top table table-sm table-striped small" data-border="1">
<thead>
<tr class="header">
<th data-quarto-table-cell-role="th"></th>
<th data-quarto-table-cell-role="th">l_orderkey</th>
<th data-quarto-table-cell-role="th">l_partkey</th>
<th data-quarto-table-cell-role="th">l_suppkey</th>
<th data-quarto-table-cell-role="th">l_linenumber</th>
<th data-quarto-table-cell-role="th">l_quantity</th>
<th data-quarto-table-cell-role="th">l_extendedprice</th>
<th data-quarto-table-cell-role="th">l_discount</th>
<th data-quarto-table-cell-role="th">l_tax</th>
<th data-quarto-table-cell-role="th">l_returnflag</th>
<th data-quarto-table-cell-role="th">l_linestatus</th>
<th data-quarto-table-cell-role="th">l_shipdate</th>
<th data-quarto-table-cell-role="th">l_commitdate</th>
<th data-quarto-table-cell-role="th">l_receiptdate</th>
<th data-quarto-table-cell-role="th">l_shipinstruct</th>
<th data-quarto-table-cell-role="th">l_shipmode</th>
<th data-quarto-table-cell-role="th">l_comment</th>
<th data-quarto-table-cell-role="th">n</th>
<th data-quarto-table-cell-role="th">sf</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<th data-quarto-table-cell-role="th">0</th>
<td>3298</td>
<td>29573398</td>
<td>6533405</td>
<td>3</td>
<td>25.00</td>
<td>36748.00</td>
<td>0.10</td>
<td>0.08</td>
<td>N</td>
<td>O</td>
<td>1996-06-30</td>
<td>1996-05-31</td>
<td>1996-07-23</td>
<td>COLLECT COD</td>
<td>SHIP</td>
<td>s! final pin</td>
<td>128</td>
<td>1024</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">1</th>
<td>17921</td>
<td>67164080</td>
<td>604093</td>
<td>5</td>
<td>21.00</td>
<td>23955.33</td>
<td>0.07</td>
<td>0.00</td>
<td>N</td>
<td>O</td>
<td>1998-09-21</td>
<td>1998-10-08</td>
<td>1998-10-19</td>
<td>TAKE BACK RETURN</td>
<td>TRUCK</td>
<td>ress requests nag against the slyl</td>
<td>128</td>
<td>1024</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">2</th>
<td>19270</td>
<td>58990671</td>
<td>7790672</td>
<td>2</td>
<td>7.00</td>
<td>12311.11</td>
<td>0.08</td>
<td>0.01</td>
<td>N</td>
<td>O</td>
<td>1998-03-17</td>
<td>1997-12-20</td>
<td>1998-03-18</td>
<td>TAKE BACK RETURN</td>
<td>TRUCK</td>
<td>boost closely. furiously</td>
<td>128</td>
<td>1024</td>
</tr>
</tbody>
</table>

</div>
</div>
</div>
</div>
<div id="tabset-3-2" class="tab-pane" aria-labelledby="tabset-3-2-tab">
<div id="74b1e54c" class="cell" data-execution_count="16">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb24" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb24-1">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_parquet(data)</span>
<span id="cb24-2"></span>
<span id="cb24-3">df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb24-4">    t.sample(fraction<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">0.0001</span>)</span>
<span id="cb24-5">    .order_by(t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_partkey"</span>], t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_suppkey"</span>])</span>
<span id="cb24-6">    .to_polars()</span>
<span id="cb24-7">)</span>
<span id="cb24-8">df.head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="15">
<div><style>
.dataframe > thead > tr,
.dataframe > tbody > tr {
  text-align: right;
  white-space: pre-wrap;
}
</style>
<small>shape: (3, 18)</small>
<table class="dataframe caption-top table table-sm table-striped small" data-border="1">
<thead>
<tr class="header">
<th data-quarto-table-cell-role="th">l_orderkey</th>
<th data-quarto-table-cell-role="th">l_partkey</th>
<th data-quarto-table-cell-role="th">l_suppkey</th>
<th data-quarto-table-cell-role="th">l_linenumber</th>
<th data-quarto-table-cell-role="th">l_quantity</th>
<th data-quarto-table-cell-role="th">l_extendedprice</th>
<th data-quarto-table-cell-role="th">l_discount</th>
<th data-quarto-table-cell-role="th">l_tax</th>
<th data-quarto-table-cell-role="th">l_returnflag</th>
<th data-quarto-table-cell-role="th">l_linestatus</th>
<th data-quarto-table-cell-role="th">l_shipdate</th>
<th data-quarto-table-cell-role="th">l_commitdate</th>
<th data-quarto-table-cell-role="th">l_receiptdate</th>
<th data-quarto-table-cell-role="th">l_shipinstruct</th>
<th data-quarto-table-cell-role="th">l_shipmode</th>
<th data-quarto-table-cell-role="th">l_comment</th>
<th data-quarto-table-cell-role="th">n</th>
<th data-quarto-table-cell-role="th">sf</th>
</tr>
<tr class="even">
<td>i64</td>
<td>i64</td>
<td>i64</td>
<td>i64</td>
<td>decimal[15,2]</td>
<td>decimal[15,2]</td>
<td>decimal[15,2]</td>
<td>decimal[15,2]</td>
<td>str</td>
<td>str</td>
<td>date</td>
<td>date</td>
<td>date</td>
<td>str</td>
<td>str</td>
<td>str</td>
<td>i64</td>
<td>i64</td>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>9639</td>
<td>23541025</td>
<td>501032</td>
<td>2</td>
<td>42.00</td>
<td>44723.70</td>
<td>0.09</td>
<td>0.08</td>
<td>"A"</td>
<td>"F"</td>
<td>1993-09-24</td>
<td>1993-11-16</td>
<td>1993-09-27</td>
<td>"NONE"</td>
<td>"MAIL"</td>
<td>"ses through th"</td>
<td>128</td>
<td>1024</td>
</tr>
<tr class="even">
<td>33153</td>
<td>182687032</td>
<td>8607033</td>
<td>4</td>
<td>15.00</td>
<td>15148.50</td>
<td>0.08</td>
<td>0.04</td>
<td>"N"</td>
<td>"O"</td>
<td>1997-08-20</td>
<td>1997-07-11</td>
<td>1997-08-30</td>
<td>"COLLECT COD"</td>
<td>"REG AIR"</td>
<td>"iously furio"</td>
<td>128</td>
<td>1024</td>
</tr>
<tr class="odd">
<td>37284</td>
<td>33051969</td>
<td>4891973</td>
<td>2</td>
<td>16.00</td>
<td>30708.96</td>
<td>0.04</td>
<td>0.00</td>
<td>"N"</td>
<td>"O"</td>
<td>1995-07-10</td>
<td>1995-05-16</td>
<td>1995-07-22</td>
<td>"DELIVER IN PERSON"</td>
<td>"AIR"</td>
<td>"ts. even deposits cajole after…</td>
<td>128</td>
<td>1024</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<p>We can also use this to iterate more quickly on a subset of data with Ibis to construct our queries. Once we’re happy with them, we can change one line of code to run them on the full data.</p>
</div>
</div>
</div>
</section>
<section id="tb-tpc-h-benchmark-results" class="level2">
<h2 class="anchored" data-anchor-id="tb-tpc-h-benchmark-results">1TB TPC-H benchmark results</h2>
<p>Let’s delve into the results of benchmarking ~1TB (<code>sf=1024</code>) TPC-H queries on a laptop.</p>
<div class="callout callout-style-default callout-important callout-titled" title="Not an official TPC-H benchmark">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Important</span>Not an official TPC-H benchmark
</div>
</div>
<div class="callout-body-container callout-body">
<p>This is not an <a href="https://www.tpc.org/tpch">official TPC-H benchmark</a>. We ran a derivate of the TPC-H benchmark.</p>
</div>
</div>
<div class="callout callout-style-default callout-warning callout-titled" title="Key differences from previous benchmarking">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Warning</span>Key differences from previous benchmarking
</div>
</div>
<div class="callout-body-container callout-body">
<p>See <a href="../../posts/ibis-bench/index.html">the prior benchmark post</a> for more details and key considerations. Key differences in this iteration include:</p>
<ol type="1">
<li><code>polars-u64-idx</code> was used instead of <code>polars</code></li>
<li><a href="https://github.com/lostmygithubaccount/ibis-bench/pull/5">Some Polars queries were updated</a></li>
<li>Parquet files were generated with <code>n=128</code> partitions
<ul>
<li>this was done to avoid OOM errors when generating the data</li>
<li>this should have little impact on the query execution time</li>
</ul></li>
<li>Queries 18 and 21 for Polars, 9 and 18 for DataFusion were skipped
<ul>
<li>they ran for a very long time without completing or failing</li>
<li>the prior benchmark indicates these queries would likely eventually fail</li>
</ul></li>
</ol>
<p>The Python package versions used were:</p>
<ul>
<li><code>ibis-framework==9.1.0</code></li>
<li><code>datafusion==38.0.1</code></li>
<li><code>duckdb==1.0.0</code></li>
<li><code>polars-u64-idx==1.0.0</code></li>
</ul>
<p>The three systems tested were:</p>
<ul>
<li><code>ibis-duckdb</code>: Ibis dataframe code on the DuckDB backend</li>
<li><code>ibis-datafusion</code>: Ibis dataframe code on the DataFusion backend</li>
<li><code>polars-lazy</code>: Polars (lazy API) dataframe code</li>
</ul>
</div>
</div>
<p>To follow along, install the required packages:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb25" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb25-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'ibis-framework[duckdb]'</span> gcsfs plotly great-tables</span></code></pre></div></div>
<p>The code for reading and analyzing the data is collapsed below.</p>
<div id="5cf05c32" class="cell" data-execution_count="17">
<details class="code-fold">
<summary>Show code to read and analyze the benchmark data</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb26" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb26-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb26-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> gcsfs</span>
<span id="cb26-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> plotly.express <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> px</span>
<span id="cb26-4"></span>
<span id="cb26-5"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> great_tables <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> GT, md</span>
<span id="cb26-6"></span>
<span id="cb26-7">px.defaults.template <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"plotly_dark"</span></span>
<span id="cb26-8"></span>
<span id="cb26-9">ibis.set_backend(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"duckdb"</span>)</span>
<span id="cb26-10">ibis.options.interactive <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span>
<span id="cb26-11">ibis.options.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">repr</span>.interactive.max_rows <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span></span>
<span id="cb26-12"></span>
<span id="cb26-13">fs <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> gcsfs.GCSFileSystem()</span>
<span id="cb26-14">ibis.get_backend().register_filesystem(fs)</span>
<span id="cb26-15"></span>
<span id="cb26-16">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb26-17">    ibis.read_parquet(</span>
<span id="cb26-18">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"gs://ibis-bench/1tbc/cache/file_id=*.parquet"</span>,</span>
<span id="cb26-19">    )</span>
<span id="cb26-20">    .select(</span>
<span id="cb26-21">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb26-22">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>,</span>
<span id="cb26-23">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n_partitions"</span>,</span>
<span id="cb26-24">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>,</span>
<span id="cb26-25">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>,</span>
<span id="cb26-26">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>,</span>
<span id="cb26-27">    )</span>
<span id="cb26-28">    .mutate(timestamp<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>].cast(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>))</span>
<span id="cb26-29">    .order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>)</span>
<span id="cb26-30">    .cache()</span>
<span id="cb26-31">)</span>
<span id="cb26-32"></span>
<span id="cb26-33">systems <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sorted</span>(t.distinct(on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>)[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>].collect().to_pyarrow().as_py())</span>
<span id="cb26-34"></span>
<span id="cb26-35">agg <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb26-36">    t.mutate(</span>
<span id="cb26-37">        run_num<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis.row_number().over(</span>
<span id="cb26-38">            group_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n_partitions"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>],</span>
<span id="cb26-39">            order_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>],</span>
<span id="cb26-40">        )</span>
<span id="cb26-41">    )</span>
<span id="cb26-42">    .relocate(t.columns[:<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>], <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"run_num"</span>)</span>
<span id="cb26-43">    .group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"run_num"</span>)</span>
<span id="cb26-44">    .agg(execution_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>].mean())</span>
<span id="cb26-45">    .order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"run_num"</span>)</span>
<span id="cb26-46">)</span>
<span id="cb26-47">agg2 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb26-48">    agg.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>)</span>
<span id="cb26-49">    .agg(avg_execution_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>agg.execution_seconds.mean().<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">round</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>))</span>
<span id="cb26-50">    .order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>)</span>
<span id="cb26-51">)</span>
<span id="cb26-52">piv <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> agg2.pivot_wider(</span>
<span id="cb26-53">    names_from<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, values_from<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"avg_execution_seconds"</span>]</span>
<span id="cb26-54">).order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>)</span>
<span id="cb26-55"></span>
<span id="cb26-56"></span>
<span id="cb26-57"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> x_vs_y(piv, x, y):</span>
<span id="cb26-58">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> ibis.ifelse(</span>
<span id="cb26-59">        piv[x] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> piv[y],</span>
<span id="cb26-60">        <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>,</span>
<span id="cb26-61">        <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>,</span>
<span id="cb26-62">    ) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> (</span>
<span id="cb26-63">        (</span>
<span id="cb26-64">            (piv[x] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span> piv[y])</span>
<span id="cb26-65">            <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> ibis.ifelse(</span>
<span id="cb26-66">                piv[y] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> piv[x],</span>
<span id="cb26-67">                piv[x],</span>
<span id="cb26-68">                piv[y],</span>
<span id="cb26-69">            )</span>
<span id="cb26-70">        ).<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">abs</span>()</span>
<span id="cb26-71">    ).<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">round</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>)</span>
<span id="cb26-72"></span>
<span id="cb26-73"></span>
<span id="cb26-74">comparisons <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [</span>
<span id="cb26-75">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-datafusion"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-duckdb"</span>),</span>
<span id="cb26-76">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"polars-lazy"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-datafusion"</span>),</span>
<span id="cb26-77">    (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"polars-lazy"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-duckdb"</span>),</span>
<span id="cb26-78">]</span>
<span id="cb26-79"></span>
<span id="cb26-80">comparisons <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> {<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>x<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">_v_</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>y<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>: x_vs_y(piv, x, y) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> x, y <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> comparisons}</span>
<span id="cb26-81"></span>
<span id="cb26-82">piv2 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> piv.mutate(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>comparisons)</span>
<span id="cb26-83">piv2 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> piv2.order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>).relocate(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>, systems)</span>
<span id="cb26-84"></span>
<span id="cb26-85">agg3 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb26-86">    agg2.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>)</span>
<span id="cb26-87">    .agg(</span>
<span id="cb26-88">        queries_completed<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>agg2[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"avg_execution_seconds"</span>].count(),</span>
<span id="cb26-89">        execution_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>agg2[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"avg_execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>().<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">round</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>),</span>
<span id="cb26-90">        seconds_per_query<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>agg2[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"avg_execution_seconds"</span>].mean().<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">round</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>),</span>
<span id="cb26-91">    )</span>
<span id="cb26-92">    .order_by(ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"queries_completed"</span>))</span>
<span id="cb26-93">)</span>
<span id="cb26-94">agg3</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="16">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> system          </span>┃<span style="font-weight: bold"> queries_completed </span>┃<span style="font-weight: bold"> execution_seconds </span>┃<span style="font-weight: bold"> seconds_per_query </span>┃
┡━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │
├─────────────────┼───────────────────┼───────────────────┼───────────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb    </span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1448.42</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">65.84</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion</span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1182.23</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">69.54</span> │
│ <span style="color: #008000; text-decoration-color: #008000">polars-lazy    </span> │                <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1995.16</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">153.47</span> │
└─────────────────┴───────────────────┴───────────────────┴───────────────────┘
</pre>
</div>
</div>
<p><code>ibis-duckdb</code> completed all 22/22 queries <strong>in under 30 minutes</strong>. If you need to run batch data jobs on a similar amount of data, a laptop might be all you need!</p>
<p><code>ibis-datafusion</code> only completed 17/22 queries, though recall <a href="../../posts/ibis-bench/index.html#failing-datafusion-queries">3 are failing due to a bug that’s already been fixed</a>. A new Python release for DataFusion hasn’t been made yet, so we ran with the old version. Assuming those queries would complete, only 2 queries would be failing due to lack of memory. More investigation would be needed to determine the work needed for all 22 queries to pass under these conditions.</p>
<p><code>polars-lazy</code> only completed 13/22 queries, with 8 failing due lack of memory. The <a href="https://pola.rs/posts/announcing-polars-1/#new-engine-design">new streaming engine</a> will likely help with this.</p>
<p>Let’s plot execution time for each query and system:</p>
<div class="callout callout-style-default callout-tip callout-titled" title="You can de-select systems in the legend">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Tip</span>You can de-select systems in the legend
</div>
</div>
<div class="callout-body-container callout-body">
<p>It might be easier to look at 2 systems at a time. You can click on a system in the legend of the plot to de-select it.</p>
</div>
</div>
<div id="f03b08fb" class="cell" data-execution_count="18">
<details class="code-fold">
<summary>Show code to plot execution time by query and system</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb27" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb27-1">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb27-2">    agg2,</span>
<span id="cb27-3">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>,</span>
<span id="cb27-4">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"avg_execution_seconds"</span>,</span>
<span id="cb27-5">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Average execution time by query"</span>,</span>
<span id="cb27-6">    color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb27-7">    barmode<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"group"</span>,</span>
<span id="cb27-8">    log_y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="cb27-9">)</span>
<span id="cb27-10">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="078f867f-086b-4abc-a75f-9b85bd8fbd6d" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("078f867f-086b-4abc-a75f-9b85bd8fbd6d")) {                    Plotly.newPlot(                        "078f867f-086b-4abc-a75f-9b85bd8fbd6d",                        [{"alignmentgroup":"True","hovertemplate":"system=ibis-datafusion\u003cbr\u003equery_number=%{x}\u003cbr\u003eavg_execution_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"ibis-datafusion","offsetgroup":"ibis-datafusion","orientation":"v","showlegend":true,"textposition":"auto","x":[1,2,3,4,5,6,7,8,10,11,12,13,14,15,17,19,20],"xaxis":"x","y":[87.67,8.68,50.43,34.81,61.43,33.05,90.75,72.98,75.63,22.25,54.09,60.72,40.06,73.67,252.67,79.78,83.56],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=ibis-duckdb\u003cbr\u003equery_number=%{x}\u003cbr\u003eavg_execution_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"ibis-duckdb","offsetgroup":"ibis-duckdb","orientation":"v","showlegend":true,"textposition":"auto","x":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22],"xaxis":"x","y":[77.45,7.38,48.72,33.29,51.99,33.8,102.99,62.05,116.41,58.34,10.22,46.86,48.57,38.79,69.39,9.48,54.44,350.98,64.85,41.18,110.43,10.81],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=polars-lazy\u003cbr\u003equery_number=%{x}\u003cbr\u003eavg_execution_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"polars-lazy","offsetgroup":"polars-lazy","orientation":"v","showlegend":true,"textposition":"auto","x":[2,4,6,7,10,11,12,14,15,16,19,20,22],"xaxis":"x","y":[9.44,73.72,79.69,305.02,262.09,25.31,126.77,101.46,63.32,10.93,422.94,498.25,16.22],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"avg_execution_seconds"},"type":"log"},"legend":{"title":{"text":"system"},"tracegroupgap":0},"title":{"text":"Average execution time by query"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('078f867f-086b-4abc-a75f-9b85bd8fbd6d');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>Let’s show a <a href="https://github.com/posit-dev/great-tables">Great Tables</a> table of pivoted data including relative speed differences between the systems:</p>
<div id="5ce12f7f" class="cell" data-execution_count="19">
<details class="code-fold">
<summary>Show code to create Great Table table from pivoted aggregated benchmark data</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb28" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb28-1">color_palette <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"plasma"</span></span>
<span id="cb28-2">na_color <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"black"</span></span>
<span id="cb28-3">style_color <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cyan"</span></span>
<span id="cb28-4"></span>
<span id="cb28-5">tbl <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb28-6">    GT(</span>
<span id="cb28-7">        piv2.mutate(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" "</span>: ibis.literal(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">""</span>)})</span>
<span id="cb28-8">        .select(</span>
<span id="cb28-9">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>,</span>
<span id="cb28-10">            <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span>systems,</span>
<span id="cb28-11">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" "</span>,</span>
<span id="cb28-12">            <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>(comparisons.keys()),</span>
<span id="cb28-13">        )</span>
<span id="cb28-14">        .to_polars()</span>
<span id="cb28-15">    )</span>
<span id="cb28-16">    .opt_stylize(</span>
<span id="cb28-17">        style<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>,</span>
<span id="cb28-18">        color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>style_color,</span>
<span id="cb28-19">    )</span>
<span id="cb28-20">    .tab_header(</span>
<span id="cb28-21">        title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>md(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"1TB (`sf=1024`) TPC-H queries"</span>),</span>
<span id="cb28-22">        subtitle<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>md(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"*on a laptop* (MacBook Pro | Apple M2 Max | 96GiB RAM)"</span>),</span>
<span id="cb28-23">    )</span>
<span id="cb28-24">    .tab_spanner(label<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution time (seconds)"</span>, columns<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>systems)</span>
<span id="cb28-25">    .tab_spanner(label<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"   "</span>, columns<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" "</span>)</span>
<span id="cb28-26">    .tab_spanner(label<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"relative speed difference†"</span>, columns<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>(comparisons))</span>
<span id="cb28-27">    .tab_source_note(</span>
<span id="cb28-28">        source_note<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>md(</span>
<span id="cb28-29">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"†[Relative speed difference formula](https://docs.coiled.io/blog/tpch#measurements), with negative values indicating A was faster than B for A_v_B"</span></span>
<span id="cb28-30">        )</span>
<span id="cb28-31">    )</span>
<span id="cb28-32">    .tab_source_note(</span>
<span id="cb28-33">        source_note<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>md(</span>
<span id="cb28-34">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Benchmark results source data (public bucket): `gs://ibis-bench/1tbc/cache/file_id=*.parquet`"</span></span>
<span id="cb28-35">        )</span>
<span id="cb28-36">    )</span>
<span id="cb28-37">    .fmt_percent(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>(comparisons), decimals<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, scale_values<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>)</span>
<span id="cb28-38">    .data_color(</span>
<span id="cb28-39">        columns<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>systems,</span>
<span id="cb28-40">        domain<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, agg2[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"avg_execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">max</span>().to_pyarrow().as_py()],</span>
<span id="cb28-41">        palette<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>color_palette,</span>
<span id="cb28-42">        na_color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>na_color,</span>
<span id="cb28-43">    )</span>
<span id="cb28-44">    .data_color(</span>
<span id="cb28-45">        columns<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">" "</span>,</span>
<span id="cb28-46">        palette<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#333333"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"#333333"</span>],</span>
<span id="cb28-47">    )</span>
<span id="cb28-48">    .data_color(</span>
<span id="cb28-49">        columns<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>(comparisons),</span>
<span id="cb28-50">        domain<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[</span>
<span id="cb28-51">            <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">min</span>(</span>
<span id="cb28-52">                [piv2[c].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">min</span>().to_pyarrow().as_py() <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> c <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>(comparisons)],</span>
<span id="cb28-53">            ),</span>
<span id="cb28-54">            <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">max</span>(</span>
<span id="cb28-55">                [piv2[c].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">max</span>().to_pyarrow().as_py() <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> c <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>(comparisons)],</span>
<span id="cb28-56">            ),</span>
<span id="cb28-57">        ],</span>
<span id="cb28-58">        palette<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>color_palette,</span>
<span id="cb28-59">        na_color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>na_color,</span>
<span id="cb28-60">    )</span>
<span id="cb28-61">)</span>
<span id="cb28-62">tbl</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="18">
<div id="sejpgylidw" style="padding-left:0px;padding-right:0px;padding-top:10px;padding-bottom:10px;overflow-x:auto;overflow-y:auto;width:auto;height:auto;">
<style>
#sejpgylidw table {
          font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', 'Fira Sans', 'Droid Sans', Arial, sans-serif;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
        }

#sejpgylidw thead, tbody, tfoot, tr, td, th { border-style: none; }
 tr { background-color: transparent; }
#sejpgylidw p { margin: 0; padding: 0; }
 #sejpgylidw .gt_table { display: table; border-collapse: collapse; line-height: normal; margin-left: auto; margin-right: auto; color: #333333; font-size: 16px; font-weight: normal; font-style: normal; background-color: #FFFFFF; width: auto; border-top-style: solid; border-top-width: 2px; border-top-color: #016763; border-right-style: none; border-right-width: 2px; border-right-color: #D3D3D3; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #016763; border-left-style: none; border-left-width: 2px; border-left-color: #D3D3D3; }
 #sejpgylidw .gt_caption { padding-top: 4px; padding-bottom: 4px; }
 #sejpgylidw .gt_title { color: #333333; font-size: 125%; font-weight: initial; padding-top: 4px; padding-bottom: 4px; padding-left: 5px; padding-right: 5px; border-bottom-color: #FFFFFF; border-bottom-width: 0; }
 #sejpgylidw .gt_subtitle { color: #333333; font-size: 85%; font-weight: initial; padding-top: 3px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; border-top-color: #FFFFFF; border-top-width: 0; }
 #sejpgylidw .gt_heading { background-color: #FFFFFF; text-align: center; border-bottom-color: #FFFFFF; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; }
 #sejpgylidw .gt_bottom_border { border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #01837B; }
 #sejpgylidw .gt_col_headings { border-top-style: solid; border-top-width: 2px; border-top-color: #01837B; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #01837B; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; }
 #sejpgylidw .gt_col_heading { color: #333333; background-color: #FFFFFF; font-size: 100%; font-weight: normal; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; overflow-x: hidden; }
 #sejpgylidw .gt_column_spanner_outer { color: #333333; background-color: #FFFFFF; font-size: 100%; font-weight: normal; text-transform: inherit; padding-top: 0; padding-bottom: 0; padding-left: 4px; padding-right: 4px; }
 #sejpgylidw .gt_column_spanner_outer:first-child { padding-left: 0; }
 #sejpgylidw .gt_column_spanner_outer:last-child { padding-right: 0; }
 #sejpgylidw .gt_column_spanner { border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #01837B; vertical-align: bottom; padding-top: 5px; padding-bottom: 5px; overflow-x: hidden; display: inline-block; width: 100%; }
 #sejpgylidw .gt_spanner_row { border-bottom-style: hidden; }
 #sejpgylidw .gt_group_heading { padding-top: 8px; padding-bottom: 8px; padding-left: 5px; padding-right: 5px; color: #333333; background-color: #FFFFFF; font-size: 100%; font-weight: initial; text-transform: inherit; border-top-style: solid; border-top-width: 2px; border-top-color: #01837B; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #01837B; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; text-align: left; }
 #sejpgylidw .gt_empty_group_heading { padding: 0.5px; color: #333333; background-color: #FFFFFF; font-size: 100%; font-weight: initial; border-top-style: solid; border-top-width: 2px; border-top-color: #01837B; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #01837B; vertical-align: middle; }
 #sejpgylidw .gt_from_md> :first-child { margin-top: 0; }
 #sejpgylidw .gt_from_md> :last-child { margin-bottom: 0; }
 #sejpgylidw .gt_row { padding-top: 8px; padding-bottom: 8px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: none; border-top-width: 1px; border-top-color: #A5FEF2; border-left-style: none; border-left-width: 1px; border-left-color: #A5FEF2; border-right-style: none; border-right-width: 1px; border-right-color: #A5FEF2; vertical-align: middle; overflow-x: hidden; }
 #sejpgylidw .gt_stub { color: #FFFFFF; background-color: #01837B; font-size: 100%; font-weight: initial; text-transform: inherit; border-right-style: solid; border-right-width: 2px; border-right-color: #01837B; padding-left: 5px; padding-right: 5px; }
 #sejpgylidw .gt_stub_row_group { color: #333333; background-color: #FFFFFF; font-size: 100%; font-weight: initial; text-transform: inherit; border-right-style: solid; border-right-width: 2px; border-right-color: #D3D3D3; padding-left: 5px; padding-right: 5px; vertical-align: top; }
 #sejpgylidw .gt_row_group_first td { border-top-width: 2px; }
 #sejpgylidw .gt_row_group_first th { border-top-width: 2px; }
 #sejpgylidw .gt_table_body { border-top-style: solid; border-top-width: 2px; border-top-color: #01837B; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #01837B; }
 #sejpgylidw .gt_sourcenotes { color: #333333; background-color: #FFFFFF; border-bottom-style: none; border-bottom-width: 2px; border-bottom-color: #D3D3D3; border-left-style: none; border-left-width: 2px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 2px; border-right-color: #D3D3D3; }
 #sejpgylidw .gt_sourcenote { font-size: 90%; padding-top: 4px; padding-bottom: 4px; padding-left: 5px; padding-right: 5px; text-align: left; }
 #sejpgylidw .gt_left { text-align: left; }
 #sejpgylidw .gt_center { text-align: center; }
 #sejpgylidw .gt_right { text-align: right; font-variant-numeric: tabular-nums; }
 #sejpgylidw .gt_font_normal { font-weight: normal; }
 #sejpgylidw .gt_font_bold { font-weight: bold; }
 #sejpgylidw .gt_font_italic { font-style: italic; }
 #sejpgylidw .gt_super { font-size: 65%; }
 #sejpgylidw .gt_footnote_marks { font-size: 75%; vertical-align: 0.4em; position: initial; }
 #sejpgylidw .gt_asterisk { font-size: 100%; vertical-align: 0; }
 
</style>

<table class="gt_table caption-top table table-sm table-striped small" data-quarto-bootstrap="false">
<thead class="gt_header">
<tr class="header">
<th colspan="8" class="gt_heading gt_title gt_font_normal" data-quarto-table-cell-role="th">1TB (<code>sf=1024</code>) TPC-H queries</th>
</tr>
<tr class="even">
<th colspan="8" class="gt_heading gt_subtitle gt_font_normal gt_bottom_border" data-quarto-table-cell-role="th"><em>on a laptop</em> (MacBook Pro | Apple M2 Max | 96GiB RAM)</th>
</tr>
</thead>
<tbody>
<tr class="gt_col_headings gt_spanner_row odd">
<th rowspan="2" id="query_number" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col">query_number</th>
<th colspan="3" id="execution time (seconds)" class="gt_center gt_columns_top_border gt_column_spanner_outer" data-quarto-table-cell-role="th" scope="colgroup"><span class="gt_column_spanner">execution time (seconds)</span></th>
<th id="   " class="gt_center gt_columns_top_border gt_column_spanner_outer" data-quarto-table-cell-role="th" scope="col"><span class="gt_column_spanner"> </span></th>
<th colspan="3" id="relative speed difference†" class="gt_center gt_columns_top_border gt_column_spanner_outer" data-quarto-table-cell-role="th" scope="colgroup"><span class="gt_column_spanner">relative speed difference†</span></th>
</tr>
<tr class="gt_col_headings even">
<th id="ibis-datafusion" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col">ibis-datafusion</th>
<th id="ibis-duckdb" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col">ibis-duckdb</th>
<th id="polars-lazy" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col">polars-lazy</th>
<th id=" " class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col"></th>
<th id="ibis-datafusion_v_ibis-duckdb" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col">ibis-datafusion_v_ibis-duckdb</th>
<th id="polars-lazy_v_ibis-datafusion" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col">polars-lazy_v_ibis-datafusion</th>
<th id="polars-lazy_v_ibis-duckdb" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col">polars-lazy_v_ibis-duckdb</th>
</tr>
</tbody>
<tbody class="gt_table_body">
<tr class="odd">
<td class="gt_row gt_right">1</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #6002a4">87.67</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5802a3">77.45</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #1a078d">13.20%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">2</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #16078b">8.68</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #15078a">7.38</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #17078b">9.44</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #1c078e">17.62%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #18078c">8.76%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #21068f">27.91%</td>
</tr>
<tr class="odd">
<td class="gt_row gt_right">3</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #41039d">50.43</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #3f049c">48.72</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #16078b">3.51%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">4</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #310596">34.81</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #2f0595">33.29</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5502a2">73.72</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #17078b">4.57%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #47039f">111.78%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #4a03a0">121.45%</td>
</tr>
<tr class="odd">
<td class="gt_row gt_right">5</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #4b03a0">61.43</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #43039e">51.99</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #1d078e">18.16%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">6</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #2f0595">33.05</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #300596">33.8</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5902a3">79.69</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #13078a">−2.27%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5102a1">141.12%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #4f03a1">135.77%</td>
</tr>
<tr class="odd">
<td class="gt_row gt_right">7</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #6202a5">90.75</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #6c01a7">102.99</td>
<td class="gt_row gt_right" style="color: #000000; background-color: #e3685f">305.02</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #0e0888">−13.49%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #7301a8">236.11%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #6502a5">196.16%</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">8</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5402a2">72.98</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #4b03a0">62.05</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #1c078e">17.61%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
</tr>
<tr class="odd">
<td class="gt_row gt_right">9</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #7603a7">116.41</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">10</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5602a2">75.63</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #48039f">58.34</td>
<td class="gt_row gt_right" style="color: #000000; background-color: #d14e72">262.09</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #220690">29.64%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #7603a7">246.54%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #99159f">349.25%</td>
</tr>
<tr class="odd">
<td class="gt_row gt_right">11</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #240691">22.25</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #18078b">10.22</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #270692">25.31</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #4903a0">117.71%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #1b078d">13.75%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5402a2">147.65%</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">12</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #45039e">54.09</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #3d049b">46.86</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #7e07a5">126.77</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #1b078d">15.43%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #4f03a1">134.37%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5c02a3">170.53%</td>
</tr>
<tr class="odd">
<td class="gt_row gt_right">13</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #4a03a0">60.72</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #3f049c">48.57</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #20068f">25.02%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">14</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #360498">40.06</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #350498">38.79</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #6b01a6">101.46</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #16078b">3.27%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5602a2">153.27%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5902a3">161.56%</td>
</tr>
<tr class="odd">
<td class="gt_row gt_right">15</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5502a2">73.67</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5102a1">69.39</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #4c03a0">63.32</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #17078b">6.17%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #0d0887">−16.35%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #100888">−9.59%</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">16</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #17078b">9.48</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #18078c">10.93</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #1b078d">15.30%</td>
</tr>
<tr class="odd">
<td class="gt_row gt_right">17</td>
<td class="gt_row gt_right" style="color: #000000; background-color: #cc4977">252.67</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #45039f">54.44</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #9d189d">364.13%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">18</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #000000; background-color: #f2864b">350.98</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
</tr>
<tr class="odd">
<td class="gt_row gt_right">19</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5902a3">79.78</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #4e03a1">64.85</td>
<td class="gt_row gt_right" style="color: #000000; background-color: #fcbb2d">422.94</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #1f068f">23.02%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #af2990">430.13%</td>
<td class="gt_row gt_right" style="color: #000000; background-color: #cc4877">552.18%</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">20</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #5c02a4">83.56</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #370499">41.18</td>
<td class="gt_row gt_right" style="color: #000000; background-color: #f0f921">498.25</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #43039e">102.91%</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #c03a83">496.28%</td>
<td class="gt_row gt_right" style="color: #000000; background-color: #f0f921">1,109.93%</td>
</tr>
<tr class="odd">
<td class="gt_row gt_right">21</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #7201a8">110.43</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
</tr>
<tr class="even">
<td class="gt_row gt_right">22</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #18078c">10.81</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #1e078e">16.22</td>
<td class="gt_row gt_left" style="color: #FFFFFF; background-color: #333333"></td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #000000">None</td>
<td class="gt_row gt_right" style="color: #FFFFFF; background-color: #2b0594">50.05%</td>
</tr>
</tbody><tfoot class="gt_sourcenotes">
<tr class="odd">
<td colspan="8" class="gt_sourcenote">†<a href="https://docs.coiled.io/blog/tpch#measurements">Relative speed difference formula</a>, with negative values indicating A was faster than B for A_v_B</td>
</tr>
<tr class="even">
<td colspan="8" class="gt_sourcenote">Benchmark results source data (public bucket): <code>gs://ibis-bench/1tbc/cache/file_id=*.parquet</code></td>
</tr>
</tfoot>

</table>


</div>
</div>
</div>
<p>You can use the code above to further explore and visualize the results.</p>
</section>
<section id="why-does-this-matter" class="level2">
<h2 class="anchored" data-anchor-id="why-does-this-matter">Why does this matter?</h2>
<p>The ability to run all 1TB TPC-H queries on a relatively standard laptop with minimal setup represents a significant shift in the Python data ecosystem that benefits individual data practitioners and organizations.</p>
<section id="scale-up-then-scale-out" class="level3">
<h3 class="anchored" data-anchor-id="scale-up-then-scale-out">Scale up, then scale out</h3>
<p>Distributed systems are hard and introduce complexity for data workloads. While distributed OLAP query engines have their place, the threshold for considering them against a single-node OLAP query engine has been raised drastically over the last few years. You can <a href="https://duckdb.org/2024/06/26/benchmarks-over-time">see how much DuckDB has improved over the years</a> and it shows in this benchmark.</p>
<p>It’s a good idea to start with a single node and see how far you can get. You’ll need to consider the tradeoffs for your own situation to make a decision. With Ibis, you can write your queries once and try them on different engines to see which is best for your workload.</p>
</section>
<section id="composable-data-systems-are-here" class="level3">
<h3 class="anchored" data-anchor-id="composable-data-systems-are-here">Composable data systems are here</h3>
<p>Ibis separates the query from the engine. It translates dataframe code into an intermediate representation (IR) in the backend’s native language – often SQL, sometimes other Python dataframe code. This separation allows you <strong>to use a single dataframe API for the best engine(s) across your workload(s)</strong>.</p>
<p>If you need to analyze data in <a href="https://ibis-project.org/backends/postgres">Postgres</a>, you can use Ibis. If you need to <a href="https://duckdb.org/2022/09/30/postgres-scanner.html">speed that up with DuckDB</a>, you can <a href="https://ibis-project.org/backends/duckdb#ibis.backends.duckdb.Backend.read_postgres">use Ibis</a>. If you need to scale out with <a href="https://ibis-project.org/backends/dask">Dask</a> or <a href="https://ibis-project.org/backends/pyspark">PySpark</a> or <a href="https://ibis-project.org/backends/trino">Trino</a>, you can use Ibis. If you need to <a href="../../posts/why-voda-supports-ibis/index.html">scale out on distributed GPUs you can use Ibis</a>. If another query engine comes along and is best for your workload, you can probably use Ibis. New backends are fairly easy to add!</p>
</section>
<section id="its-efficient" class="level3">
<h3 class="anchored" data-anchor-id="its-efficient">It’s efficient</h3>
<p>How much money does your organization spend on data transformation per terabyte? Using <a href="https://cloud.google.com/products/calculator">the GCP pricing calculator</a> we’ll sample the monthly cost of some cloud instances including a few TBs of solid-state hard drive space. Hover over to see the vCPUs and RAM for each instance.</p>
<div id="30e1f6dc" class="cell" data-execution_count="20">
<details class="code-fold">
<summary>Show code to plot monthly cost of various GCP instances</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb29" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb29-1">data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> {</span>
<span id="cb29-2">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"m1-megamem-40"</span>: {<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"vCPUs"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">40</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"RAM"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">961</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cost"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6200</span>},</span>
<span id="cb29-3">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"m1-ultramem-80"</span>: {<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"vCPUs"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">80</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"RAM"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1922</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cost"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10900</span>},</span>
<span id="cb29-4">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"m1-ultramem-160"</span>: {<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"vCPUs"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">160</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"RAM"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3844</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cost"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">20100</span>},</span>
<span id="cb29-5">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"h3-standard-88"</span>: {<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"vCPUs"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">88</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"RAM"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">352</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cost"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4600</span>},</span>
<span id="cb29-6">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c2-standard-30"</span>: {<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"vCPUs"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">30</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"RAM"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">120</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cost"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1600</span>},</span>
<span id="cb29-7">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c2-standard-60"</span>: {<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"vCPUs"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">60</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"RAM"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">240</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cost"</span>: <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2700</span>},</span>
<span id="cb29-8">}</span>
<span id="cb29-9"></span>
<span id="cb29-10">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.memtable(</span>
<span id="cb29-11">    {</span>
<span id="cb29-12">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"name"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>(data.keys()),</span>
<span id="cb29-13">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"vCPUs"</span>: [v[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"vCPUs"</span>] <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> v <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> data.values()],</span>
<span id="cb29-14">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"RAM (GBs)"</span>: [v[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"RAM"</span>] <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> v <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> data.values()],</span>
<span id="cb29-15">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cost"</span>: [v[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cost"</span>] <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> v <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> data.values()],</span>
<span id="cb29-16">    }</span>
<span id="cb29-17">).order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cost"</span>)</span>
<span id="cb29-18"></span>
<span id="cb29-19">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb29-20">    t,</span>
<span id="cb29-21">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"name"</span>,</span>
<span id="cb29-22">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cost"</span>,</span>
<span id="cb29-23">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Monthly cost (USD) of various GCP instances"</span>,</span>
<span id="cb29-24">    hover_data<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"vCPUs"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"RAM (GBs)"</span>],</span>
<span id="cb29-25">)</span>
<span id="cb29-26">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="694f35d7-fde4-4d61-9c66-230debf93bad" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("694f35d7-fde4-4d61-9c66-230debf93bad")) {                    Plotly.newPlot(                        "694f35d7-fde4-4d61-9c66-230debf93bad",                        [{"alignmentgroup":"True","customdata":[[30,120],[60,240],[88,352],[40,961],[80,1922],[160,3844]],"hovertemplate":"name=%{x}\u003cbr\u003ecost=%{y}\u003cbr\u003evCPUs=%{customdata[0]}\u003cbr\u003eRAM (GBs)=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":["c2-standard-30","c2-standard-60","h3-standard-88","m1-megamem-40","m1-ultramem-80","m1-ultramem-160"],"xaxis":"x","y":[1600,2700,4600,6200,10900,20100],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"name"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"cost"}},"legend":{"tracegroupgap":0},"title":{"text":"Monthly cost (USD) of various GCP instances"},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('694f35d7-fde4-4d61-9c66-230debf93bad');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>For ~$1,600/month we can get a machine with more CPU cores and RAM than the laptop benchmarked in this post. This cost assumes you’re running the machine 24/7 – if you only needed to run a workload similar to the benchmark here, you’d only need to run the machine &lt;1 hour per day using Ibis with the default DuckDB backend. This can serve as a good anchor when evaluating your cost of compute for data.</p>
<p>A composable data system with Python dataframe and SQL user experiences can scale vertically to handle workloads into 10TB+ range with modern single-node OLAP query engines. If you need a distributed query engine or a better single-node query engine for your workload materializes, you can swap them out without changing your queries. However, note that with vertical scaling you’re likely to hit storage or network bottlenecks before compute bottlenecks on real workloads.</p>
</section>
</section>
<section id="next-steps" class="level2">
<h2 class="anchored" data-anchor-id="next-steps">Next steps</h2>
<p>We’ll follow up on this post once new versions that fix issues or improve performance significantly are released. If you’re interested in getting started with Ibis, see <a href="../../tutorials/getting_started.qmd">our tutorial</a>.</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>benchmark</category>
  <category>duckdb</category>
  <category>datafusion</category>
  <category>polars</category>
  <guid>https://ibis-project.org/posts/1tbc/</guid>
  <pubDate>Mon, 08 Jul 2024 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/1tbc/ibis-duckdb-sort.gif" medium="image" type="image/gif"/>
</item>
<item>
  <title>Ibis benchmarking: DuckDB, DataFusion, Polars</title>
  <dc:creator>Cody Peterson</dc:creator>
  <link>https://ibis-project.org/posts/ibis-bench/</link>
  <description><![CDATA[ 






<p><em>The best benchmark is your own workload on your own data</em>.</p>
<section id="key-considerations" class="level2">
<h2 class="anchored" data-anchor-id="key-considerations">Key considerations</h2>
<p>The purpose of this post is to explore some benchmarking data with Ibis. We’ll compare three modern single-node query engines, explore the Ibis API as a great choice for each of them, and discuss the results.</p>
<section id="the-benchmark" class="level3">
<h3 class="anchored" data-anchor-id="the-benchmark">The benchmark</h3>
<div class="callout callout-style-default callout-important callout-titled" title="Not an official TPC-H benchmark">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Important</span>Not an official TPC-H benchmark
</div>
</div>
<div class="callout-body-container callout-body">
<p>This is not an <a href="https://www.tpc.org/tpch">official TPC-H benchmark</a>. We ran a derivate of the TPC-H benchmark.</p>
</div>
</div>
<p><a href="https://www.tpc.org/tpch">The TPC-H benchmark</a> is a benchmark for databases and, <a href="https://docs.coiled.io/blog/tpch">increasingly</a>, <a href="https://pola.rs/posts/benchmarks">dataframes</a>! It consists of 22 queries across 8 tables. The SQL (or dataframe) code representing the queries is designed to test the performance of a query engine on a variety of tasks including filtering, aggregation, and joins. SQL queries are defined by the TPC-H benchmark. We run the SQL queries and equivalent dataframe code via Ibis and Polars APIs.</p>
<p>The data for the benchmark can be generated at any scale factor, which roughly corresponds to the size of the data in memory in gigabytes. For instance, a scale factor of 10 would be about 10GB of data in memory.</p>
</section>
<section id="the-engines-the-api-the-code" class="level3">
<h3 class="anchored" data-anchor-id="the-engines-the-api-the-code">The engines, the API, the code</h3>
<p>We’ll use three modern single-node OLAP engines (<a href="https://github.com/duckdb/duckdb">DuckDB</a>, <a href="https://github.com/apache/datafusion">DataFusion</a>, <a href="https://github.com/pola-rs/polars">Polars</a>) with the Ibis API via two coding paradigms (dataframe and SQL). Ibis provides a consistent API across 20+ backends, including these three. We run <a href="https://github.com/lostmygithubaccount/ibis-bench/blob/v2.0.0/src/ibis_bench/queries/sql.py">SQL code</a> through Ibis in addition to <a href="https://github.com/lostmygithubaccount/ibis-bench/blob/v2.0.0/src/ibis_bench/queries/ibis.py">dataframe code</a> to get a sense of any overhead in Ibis dataframe code.</p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>Ibis dataframe code generates SQL for the DuckDB and DataFusion backends and generates Polars API dataframe code for the Polars backend.</p>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled" title="Honorable mention: chDB">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-3-contents" aria-controls="callout-3" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>Honorable mention: chDB
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-3" class="callout-3-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p><a href="https://github.com/chdb-io/chdb">chDB</a> would be another great single-node OLAP engine to benchmark. We don’t because it’s not currently a backend for Ibis, though <a href="https://github.com/ibis-project/ibis/pull/8497">there has been work done to make it one</a>.</p>
<p>If you’re interested in contributing to Ibis, a new backend like chDB could be a great project for you!</p>
</div>
</div>
</div>
<p>9/22 queries for Ibis with the Polars backend fail from lack of scalar subquery support. Due to this and relatively experimental SQL support in Polars, we’ve opted to run on <a href="https://github.com/lostmygithubaccount/ibis-bench/blob/v2.0.0/src/ibis_bench/queries/polars.py">the Polars API directly</a> in this iteration of the benchmark. This is done with the LazyFrames API <strong>and no streaming engine</strong> (<a href="https://github.com/pola-rs/polars/issues/16694#issuecomment-2146668559">per the Polars team’s recommendation</a>). This also allows us to compare the performance of the Polars backend through Ibis with the Polars API directly for the queries that do succeed.</p>
<section id="failing-queries" class="level4">
<h4 class="anchored" data-anchor-id="failing-queries">Failing queries</h4>
<p>Queries fail for one of two reasons:</p>
<ol type="1">
<li>The query doesn’t work in the given system</li>
<li>The query otherwise failed on a given run</li>
</ol>
<p>We’ll note the cases of the first below. The second is usually due to memory pressure and will be seen at higher scale factors throughout the data.</p>
</section>
<section id="failing-datafusion-queries" class="level4">
<h4 class="anchored" data-anchor-id="failing-datafusion-queries">Failing DataFusion queries</h4>
<p>Queries 16, 21, and 22 fail for the DataFusion backend via Ibis dataframe code, and query 16 fails through SQL. Note that <a href="https://github.com/apache/datafusion-benchmarks">all TPC-H SQL queries successfully run through DataFusion directly</a> – Ibis generates SQL that <a href="https://github.com/apache/datafusion/issues/10830">hits a bug with DataFusion that has already been fixed</a>. We expect these queries to work in the next iteration of this benchmark coming soon.</p>
</section>
<section id="failing-polars-queries" class="level4">
<h4 class="anchored" data-anchor-id="failing-polars-queries">Failing Polars queries</h4>
<p>Queries 11, 13-17, and 20-22 fail for the Polars backend via Ibis dataframe code. These all fail due to lack of scalar subquery support in the backend. I’ve <a href="https://github.com/ibis-project/ibis/issues/9422">opened an issue</a> for tracking and discussion.</p>
<div class="callout callout-style-default callout-tip callout-titled" title="Interested in contributing?">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Tip</span>Interested in contributing?
</div>
</div>
<div class="callout-body-container callout-body">
<p>Increasing coverage of operations for a backend is a great place to start!</p>
</div>
</div>
</section>
</section>
<section id="how-queries-are-written" class="level3">
<h3 class="anchored" data-anchor-id="how-queries-are-written">How queries are written</h3>
<p>See <a href="https://github.com/lostmygithubaccount/ibis-bench/tree/v2.0.0/src/ibis_bench/queries">the source code</a> for the exact queries used in this iteration of the benchmark. Polars recently updated their TPC-H queries, so the next iteration of this benchmark would use those.</p>
<p>Queries were adapted from <a href="https://github.com/ibis-project/ibis/tree/main/ibis/backends/tests/tpch">Ibis TPC-H queries</a> and <a href="https://github.com/pola-rs/tpch">Polars TPC-H queries</a>. The first 10 Ibis dataframe queries were translated from the Polars dataframe queries, while the rest were directly adapted from the Ibis repository. The SQL strings were adapted from the Ibis repository.</p>
</section>
<section id="how-queries-are-run" class="level3">
<h3 class="anchored" data-anchor-id="how-queries-are-run">How queries are run</h3>
<p>See <a href="https://github.com/lostmygithubaccount/ibis-bench/tree/v2.0.0">the source code</a> and <a href="https://ibis-bench.streamlit.app/methodology">methodology</a> for more details. In short:</p>
<ul>
<li>data is generated as a Parquet file per table
<ul>
<li>standard DuckDB Parquet writer is used</li>
<li>data is always downloaded onto a compute instance (no cloud storage reads)</li>
</ul></li>
<li>decimal types are converted to floats after reading
<ul>
<li>works around several issues</li>
<li>in the next iteration of this benchmark, we’ll use the <code>decimal</code> type</li>
</ul></li>
<li>each query is run three times per configuration (system, scale factor, instance type)</li>
<li>we measure the time to write the results of the query to a Parquet file
<ul>
<li>this includes reading the Parquet file(s) and executing the query</li>
</ul></li>
</ul>
</section>
<section id="biases" class="level3">
<h3 class="anchored" data-anchor-id="biases">Biases</h3>
<p>My name is Cody and I’m a Senior Technical Product Manager at <a href="https://voltrondata.com">Voltron Data</a>. I am a contributor to the Ibis project and employed to work on it – I’m biased in favor of Ibis and the composable data ecosystem.</p>
<p>Ibis is <a href="https://github.com/ibis-project/governance">an independently governed open source project</a> that <strong>is not owned by Voltron Data</strong>, though several steering committee members are employed by Voltron Data. You can <a href="../../posts/why-voda-supports-ibis/index.html">read more about why Voltron Data supports Ibis</a>, in addition to open source projects like <a href="https://github.com/apache/arrow">Apache Arrow</a> and <a href="https://github.com/substrait-io/substrait">Substrait</a>.</p>
<p>Voltron Data is a <a href="https://duckdb.org/foundation">Gold Supporter of the DuckDB Foundation</a> and <a href="https://duckdblabs.com">has a commercial relationship with DuckDB Labs</a> with regular syncs I tend to attend. I also use <a href="https://motherduck.com">MotherDuck</a> to host our <a href="https://ibis-analytics.streamlit.app">Ibis analytics dashboard data</a>.</p>
</section>
</section>
<section id="results-and-analysis" class="level2">
<h2 class="anchored" data-anchor-id="results-and-analysis">Results and analysis</h2>
<p>We’ll use Ibis to analyze some of the benchmarking data.</p>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Tip
</div>
</div>
<div class="callout-body-container callout-body">
<p>We’ll only look at a small subset of the data in this post.</p>
<p>All the data is public, so you can follow along with the code and explore the data yourself. You can also see the <a href="https://ibis-bench.streamlit.app">Ibis benchmarking Streamlit app</a> for further analysis.</p>
</div>
</div>
<section id="reading-the-data" class="level3">
<h3 class="anchored" data-anchor-id="reading-the-data">Reading the data</h3>
<p>To follow along, install the required Python packages:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install gcsfs <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'ibis-framework[duckdb]'</span> plotly</span></code></pre></div></div>
<p>The data is stored in a public Google Cloud Storage (GCS) bucket:</p>
<div id="c340210d" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-2" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="1">1</button><span id="annotated-cell-2-1" class="code-annotation-target"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> os</span>
<span id="annotated-cell-2-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> gcsfs</span>
<span id="annotated-cell-2-3"></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="2">2</button><span id="annotated-cell-2-4" class="code-annotation-target">BUCKET <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-bench"</span></span>
<span id="annotated-cell-2-5"></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="3">3</button><span id="annotated-cell-2-6" class="code-annotation-target">dir_name <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> os.path.join(BUCKET, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"bench_logs_v2"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cache"</span>)</span>
<span id="annotated-cell-2-7"></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="4">4</button><span id="annotated-cell-2-8" class="code-annotation-target">fs <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> gcsfs.GCSFileSystem()</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="5">5</button><span id="annotated-cell-2-9" class="code-annotation-target">fs.ls(dir_name)[<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>:]</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-2" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="1,2" data-code-annotation="1">Imports</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="4" data-code-annotation="2">The public GCS bucket name</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="3">3</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="6" data-code-annotation="3">The directory in the bucket where the data is stored</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="4">4</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="8" data-code-annotation="4">Create a GCS filesystem object</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="5">5</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="9" data-code-annotation="5">List the last 5 files in the directory</span>
</dd>
</dl>
</div>
<div class="cell-output cell-output-display" data-execution_count="2">
<pre><code>['ibis-bench/bench_logs_v2/cache/file_id=b6236086-7fff-4569-8731-b97a635243bd.parquet',
 'ibis-bench/bench_logs_v2/cache/file_id=cbc0c7b1-e659-4adb-8c80-4077cd4d39ab.parquet',
 'ibis-bench/bench_logs_v2/cache/file_id=d91454ad-2ddd-408a-bbfd-6b159dd2132b.parquet',
 'ibis-bench/bench_logs_v2/cache/file_id=debc7203-f366-44d2-94f1-2518e6f7425f.parquet',
 'ibis-bench/bench_logs_v2/cache/file_id=e875d852-f7e7-473c-9440-92b8f2445f3a.parquet']</code></pre>
</div>
</div>
<p>To start exploring the data, let’s import Ibis and Plotly, set some options, and register the GCS filesystem with the default (DuckDB) backend:</p>
<div id="d19e0ac4" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-3" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="1">1</button><span id="annotated-cell-3-1" class="code-annotation-target"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="2">2</button><span id="annotated-cell-3-2" class="code-annotation-target"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> plotly.express <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> px</span>
<span id="annotated-cell-3-3"></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="3">3</button><span id="annotated-cell-3-4" class="code-annotation-target">px.defaults.template <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"plotly_dark"</span></span>
<span id="annotated-cell-3-5"></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="4">4</button><span id="annotated-cell-3-6" class="code-annotation-target">ibis.options.interactive <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="5">5</button><span id="annotated-cell-3-7" class="code-annotation-target">ibis.options.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">repr</span>.interactive.max_rows <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">22</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="6">6</button><span id="annotated-cell-3-8" class="code-annotation-target">ibis.options.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">repr</span>.interactive.max_length <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">22</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="7">7</button><span id="annotated-cell-3-9" class="code-annotation-target">ibis.options.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">repr</span>.interactive.max_columns <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span></span>
<span id="annotated-cell-3-10"></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="8">8</button><span id="annotated-cell-3-11" class="code-annotation-target">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.get_backend()</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="9">9</button><span id="annotated-cell-3-12" class="code-annotation-target">con.register_filesystem(fs)</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-3" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="1" data-code-annotation="1">Import Ibis</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="2" data-code-annotation="2">Import Plotly</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="3">3</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="4" data-code-annotation="3">Set the Plotly template to dark</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="4">4</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="6" data-code-annotation="4">Enable interactive mode for Ibis</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="5">5</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="7" data-code-annotation="5">Set the maximum number of rows to display in interactive mode</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="6">6</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="8" data-code-annotation="6">Set the maximum length of nested types to display in interactive mode</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="7">7</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="9" data-code-annotation="7">Set the maximum number of columns to display in interactive mode</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="8">8</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="11" data-code-annotation="8">Get the default (DuckDB) backend</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="9">9</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="12" data-code-annotation="9">Register the GCS filesystem with the default backend</span>
</dd>
</dl>
</div>
</div>
<p>Now read the data and take a look at the first few rows:</p>
<div id="a7724589" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-4" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="1">1</button><span id="annotated-cell-4-1" class="code-annotation-target">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="2">2</button><span id="annotated-cell-4-2" class="code-annotation-target">    ibis.read_parquet(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"gs://</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>dir_name<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">/file_id=*.parquet"</span>)</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="3">3</button><span id="annotated-cell-4-3" class="code-annotation-target">    .mutate(</span>
<span id="annotated-cell-4-4">        timestamp<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>].cast(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>),</span>
<span id="annotated-cell-4-5">    )</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="4">4</button><span id="annotated-cell-4-6" class="code-annotation-target">    .relocate(</span>
<span id="annotated-cell-4-7">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>,</span>
<span id="annotated-cell-4-8">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="annotated-cell-4-9">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>,</span>
<span id="annotated-cell-4-10">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>,</span>
<span id="annotated-cell-4-11">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>,</span>
<span id="annotated-cell-4-12">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>,</span>
<span id="annotated-cell-4-13">    )</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="5">5</button><span id="annotated-cell-4-14" class="code-annotation-target">    .cache()</span>
<span id="annotated-cell-4-15">)</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="6">6</button><span id="annotated-cell-4-16" class="code-annotation-target">t.head()</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-4" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="1" data-code-annotation="1">Assign the table to a variable</span>
</dd>
<dt data-target-cell="annotated-cell-4" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="2" data-code-annotation="2">Read the Parquet files from GCS</span>
</dd>
<dt data-target-cell="annotated-cell-4" data-target-annotation="3">3</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="3,5" data-code-annotation="3">Cast the <code>timestamp</code> column to a timestamp type</span>
</dd>
<dt data-target-cell="annotated-cell-4" data-target-annotation="4">4</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="6,13" data-code-annotation="4">Reorder the columns</span>
</dd>
<dt data-target-cell="annotated-cell-4" data-target-annotation="5">5</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="14" data-code-annotation="5">Cache the table to avoid re-reading cloud data</span>
</dd>
<dt data-target-cell="annotated-cell-4" data-target-annotation="6">6</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="16" data-code-annotation="6">Display the first few rows</span>
</dd>
</dl>
</div>
<div class="cell-output cell-output-display" data-execution_count="5">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> instance_type </span>┃<span style="font-weight: bold"> system          </span>┃<span style="font-weight: bold"> sf    </span>┃<span style="font-weight: bold"> query_number </span>┃<span style="font-weight: bold"> execution_seconds </span>┃<span style="font-weight: bold"> timestamp                  </span>┃<span style="font-weight: bold"> session_id                           </span>┃<span style="font-weight: bold"> n_partitions </span>┃<span style="font-weight: bold"> file_type </span>┃<span style="font-weight: bold"> file_id                                      </span>┃
┡━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">timestamp(6)</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">uuid</span>                                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                                       │
├───────────────┼─────────────────┼───────┼──────────────┼───────────────────┼────────────────────────────┼──────────────────────────────────────┼──────────────┼───────────┼──────────────────────────────────────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-4</span> │ <span style="color: #008000; text-decoration-color: #008000">polars-lazy    </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9.503613</span> │ <span style="color: #800080; text-decoration-color: #800080">2024-06-10 08:04:31.233704</span> │ 6708e5d3-2b8c-4ce0-adf8-65ce94e0bff1 │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">0949deaf-5f8f-4c29-b2ca-934e07173223.parquet</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-4</span> │ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">64</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">35.826295</span> │ <span style="color: #800080; text-decoration-color: #800080">2024-06-10 21:05:18.423375</span> │ 9a00385f-22b4-42df-ab3d-c63ed1a33a2e │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">0949deaf-5f8f-4c29-b2ca-934e07173223.parquet</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-4</span> │ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb    </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7.376196</span> │ <span style="color: #800080; text-decoration-color: #800080">2024-06-11 03:44:22.901852</span> │ acb56c6b-b0d5-4bbc-8791-3542b62bd193 │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">0949deaf-5f8f-4c29-b2ca-934e07173223.parquet</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-4</span> │ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8.655290</span> │ <span style="color: #800080; text-decoration-color: #800080">2024-06-09 20:29:31.833510</span> │ a07fe07d-7a08-4802-b8ae-918e66e2d868 │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">0949deaf-5f8f-4c29-b2ca-934e07173223.parquet</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-4</span> │ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb-sql</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.447325</span> │ <span style="color: #800080; text-decoration-color: #800080">2024-06-10 08:11:31.244609</span> │ d523eec6-d2de-491d-b541-348c6b5bfc65 │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">0949deaf-5f8f-4c29-b2ca-934e07173223.parquet</span> │
└───────────────┴─────────────────┴───────┴──────────────┴───────────────────┴────────────────────────────┴──────────────────────────────────────┴──────────────┴───────────┴──────────────────────────────────────────────┘
</pre>
</div>
</div>
<p>We’ll also create a table with details on each instance type including the CPU type, number of cores, and memory in gigabytes:</p>
<div id="0ac835d9" class="cell" data-execution_count="6">
<details class="code-fold">
<summary>Show code to get instance details</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1">cpu_type_cases <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb3-2">    ibis.case()</span>
<span id="cb3-3">    .when(</span>
<span id="cb3-4">        ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].startswith(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n2d"</span>),</span>
<span id="cb3-5">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"AMD EPYC"</span>,</span>
<span id="cb3-6">    )</span>
<span id="cb3-7">    .when(</span>
<span id="cb3-8">        ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].startswith(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n2"</span>),</span>
<span id="cb3-9">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Intel Cascade and Ice Lake"</span>,</span>
<span id="cb3-10">    )</span>
<span id="cb3-11">    .when(</span>
<span id="cb3-12">        ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].startswith(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"c3"</span>),</span>
<span id="cb3-13">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Intel Sapphire Rapids"</span>,</span>
<span id="cb3-14">    )</span>
<span id="cb3-15">    .when(</span>
<span id="cb3-16">        ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"work laptop"</span>,</span>
<span id="cb3-17">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Apple M1 Max"</span>,</span>
<span id="cb3-18">    )</span>
<span id="cb3-19">    .when(</span>
<span id="cb3-20">        ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"personal laptop"</span>,</span>
<span id="cb3-21">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Apple M2 Max"</span>,</span>
<span id="cb3-22">    )</span>
<span id="cb3-23">    .else_(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"unknown"</span>)</span>
<span id="cb3-24">    .end()</span>
<span id="cb3-25">)</span>
<span id="cb3-26">cpu_num_cases <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb3-27">    ibis.case()</span>
<span id="cb3-28">    .when(</span>
<span id="cb3-29">        ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].contains(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-"</span>),</span>
<span id="cb3-30">        ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].split(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-"</span>)[<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>].cast(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"int"</span>),</span>
<span id="cb3-31">    )</span>
<span id="cb3-32">    .when(ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].contains(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"laptop"</span>), <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">12</span>)</span>
<span id="cb3-33">    .else_(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>)</span>
<span id="cb3-34">    .end()</span>
<span id="cb3-35">)</span>
<span id="cb3-36">memory_gb_cases <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb3-37">    ibis.case()</span>
<span id="cb3-38">    .when(</span>
<span id="cb3-39">        ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].contains(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-"</span>),</span>
<span id="cb3-40">        ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].split(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-"</span>)[<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>].cast(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"int"</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">4</span>,</span>
<span id="cb3-41">    )</span>
<span id="cb3-42">    .when(ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"work laptop"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">32</span>)</span>
<span id="cb3-43">    .when(ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"personal laptop"</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">96</span>)</span>
<span id="cb3-44">    .else_(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>)</span>
<span id="cb3-45">    .end()</span>
<span id="cb3-46">)</span>
<span id="cb3-47"></span>
<span id="cb3-48">instance_details <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb3-49">    t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>)</span>
<span id="cb3-50">    .agg()</span>
<span id="cb3-51">    .mutate(</span>
<span id="cb3-52">        cpu_type<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>cpu_type_cases, cpu_cores<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>cpu_num_cases, memory_gbs<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>memory_gb_cases</span>
<span id="cb3-53">    )</span>
<span id="cb3-54">).order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"memory_gbs"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_cores"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>)</span>
<span id="cb3-55"></span>
<span id="cb3-56">cpu_types <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sorted</span>(</span>
<span id="cb3-57">    instance_details.distinct(on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_type"</span>)[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_type"</span>].to_pyarrow().to_pylist()</span>
<span id="cb3-58">)</span>
<span id="cb3-59"></span>
<span id="cb3-60">instance_details</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display" data-execution_count="6">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> instance_type   </span>┃<span style="font-weight: bold"> cpu_type                   </span>┃<span style="font-weight: bold"> cpu_cores </span>┃<span style="font-weight: bold"> memory_gbs </span>┃
┡━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │
├─────────────────┼────────────────────────────┼───────────┼────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-2  </span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Cascade and Ice Lake</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2d-standard-2 </span> │ <span style="color: #008000; text-decoration-color: #008000">AMD EPYC                  </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8</span> │
│ <span style="color: #008000; text-decoration-color: #008000">c3-standard-4  </span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Sapphire Rapids     </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-4  </span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Cascade and Ice Lake</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2d-standard-4 </span> │ <span style="color: #008000; text-decoration-color: #008000">AMD EPYC                  </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │
│ <span style="color: #008000; text-decoration-color: #008000">c3-standard-8  </span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Sapphire Rapids     </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-8  </span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Cascade and Ice Lake</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2d-standard-8 </span> │ <span style="color: #008000; text-decoration-color: #008000">AMD EPYC                  </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32</span> │
│ <span style="color: #008000; text-decoration-color: #008000">work laptop    </span> │ <span style="color: #008000; text-decoration-color: #008000">Apple M1 Max              </span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-16 </span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Cascade and Ice Lake</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">64</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2d-standard-16</span> │ <span style="color: #008000; text-decoration-color: #008000">AMD EPYC                  </span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">64</span> │
│ <span style="color: #008000; text-decoration-color: #008000">c3-standard-22 </span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Sapphire Rapids     </span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">88</span> │
│ <span style="color: #008000; text-decoration-color: #008000">personal laptop</span> │ <span style="color: #008000; text-decoration-color: #008000">Apple M2 Max              </span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">96</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-32 </span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Cascade and Ice Lake</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2d-standard-32</span> │ <span style="color: #008000; text-decoration-color: #008000">AMD EPYC                  </span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │
│ <span style="color: #008000; text-decoration-color: #008000">c3-standard-44 </span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Sapphire Rapids     </span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">44</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">176</span> │
└─────────────────┴────────────────────────────┴───────────┴────────────┘
</pre>
</div>
</div>
</section>
<section id="whats-in-the-data" class="level3">
<h3 class="anchored" data-anchor-id="whats-in-the-data">What’s in the data?</h3>
<p>With the data, we can see we ran the benchmark on scale factors:</p>
<div id="08b389fe" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1">sfs <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sorted</span>(t.distinct(on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>)[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>].to_pyarrow().to_pylist())</span>
<span id="cb4-2">sfs</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="7">
<pre><code>[1, 8, 16, 32, 64, 128]</code></pre>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled" title="What is a scale factor?">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-6-contents" aria-controls="callout-6" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>What is a scale factor?
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-6" class="callout-6-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>A scale factor is roughly the size of the data in memory in gigabytes. For example, a scale factor of 1 means the data is roughly 1GB in memory.</p>
<p>Stored on disk in (compressed) Parquet format, the data is smaller – about 0.38GB for scale factor 1 with the compression settings used in this benchmark.</p>
</div>
</div>
</div>
<p>We can look at the total execution time by scale factor:</p>
<div id="f6efea9d" class="cell" data-execution_count="8">
<details class="code-fold">
<summary>Show bar plot code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb6-2">    t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>).agg(total_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()),</span>
<span id="cb6-3">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>,</span>
<span id="cb6-4">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_seconds"</span>,</span>
<span id="cb6-5">    category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>: sfs},</span>
<span id="cb6-6">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total execution time by scale factor"</span>,</span>
<span id="cb6-7">)</span>
<span id="cb6-8">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="288d4514-11ea-4463-b6e6-b5a381a37841" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("288d4514-11ea-4463-b6e6-b5a381a37841")) {                    Plotly.newPlot(                        "288d4514-11ea-4463-b6e6-b5a381a37841",                        [{"alignmentgroup":"True","hovertemplate":"sf=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":[1,8,16,32,64,128],"xaxis":"x","y":[1600.579779624939,10426.681049823761,19846.17095041275,38021.40961122513,74784.94995188713,164025.98512744904],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"sf"},"categoryorder":"array","categoryarray":[1,8,16,32,64,128]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"total_seconds"}},"legend":{"tracegroupgap":0},"title":{"text":"total execution time by scale factor"},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('288d4514-11ea-4463-b6e6-b5a381a37841');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>You can see this is roughly linear as expected.</p>
<p>We ran on the following queries:</p>
<div id="030280cb" class="cell" data-execution_count="9">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1">query_numbers <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sorted</span>(</span>
<span id="cb7-2">    t.distinct(on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>)[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>].to_pyarrow().to_pylist()</span>
<span id="cb7-3">)</span>
<span id="cb7-4">query_numbers</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="9">
<pre><code>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22]</code></pre>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled" title="What is a query number?">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-7-contents" aria-controls="callout-7" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>What is a query number?
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-7" class="callout-7-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>The TPC-H benchmark defines 22 queries. See the <a href="https://www.tpc.org/TPC_Documents_Current_Versions/pdf/TPC-H_v3.0.1.pdf">TPC-H benchmark specification</a> for more information.</p>
</div>
</div>
</div>
<p>We can look at the total execution time by query number:</p>
<div id="4d9d3cb4" class="cell" data-execution_count="10">
<details class="code-fold">
<summary>Show bar plot code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb9-2">    t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>).agg(total_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()),</span>
<span id="cb9-3">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>,</span>
<span id="cb9-4">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_seconds"</span>,</span>
<span id="cb9-5">    category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>: query_numbers},</span>
<span id="cb9-6">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total execution time by query number"</span>,</span>
<span id="cb9-7">)</span>
<span id="cb9-8">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="f349a1b0-78b1-4527-aed6-d30e3c80003d" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("f349a1b0-78b1-4527-aed6-d30e3c80003d")) {                    Plotly.newPlot(                        "f349a1b0-78b1-4527-aed6-d30e3c80003d",                        [{"alignmentgroup":"True","hovertemplate":"query_number=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"","offsetgroup":"","orientation":"v","showlegend":false,"textposition":"auto","x":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22],"xaxis":"x","y":[21056.510046720505,3685.074945449829,12819.760807991028,8480.374274730682,11834.102046251297,10688.606204509735,18887.29731631279,14052.494454860687,22051.161331176758,15887.331687450409,2990.691949367523,12739.110704421997,11047.851179599762,10706.916375398636,15876.686168670654,1247.1440830230713,18959.44294857979,37246.088896751404,18845.170838832855,12007.838083028793,25422.41154885292,2173.71057844162],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"},"categoryorder":"array","categoryarray":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"total_seconds"}},"legend":{"tracegroupgap":0},"title":{"text":"total execution time by query number"},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('f349a1b0-78b1-4527-aed6-d30e3c80003d');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>This gives us a sense of the relative complexity of the queries.</p>
<p>We ran on the following instance types:</p>
<div id="9329b1d8" class="cell" data-execution_count="11">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-10" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><span id="annotated-cell-10-1">instance_types <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sorted</span>(</span>
<span id="annotated-cell-10-2">    t.distinct(on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>)[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].to_pyarrow().to_pylist(),</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-10" data-target-annotation="1">1</button><span id="annotated-cell-10-3" class="code-annotation-target">    key<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> x: (x.split(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-"</span>)[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>], <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">int</span>(x.split(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-"</span>)[<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>]))</span>
<span id="annotated-cell-10-4">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"-"</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> x</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-10" data-target-annotation="2">2</button><span id="annotated-cell-10-5" class="code-annotation-target">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">else</span> (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"z"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> x[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>], <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>),</span>
<span id="annotated-cell-10-6">)</span>
<span id="annotated-cell-10-7">instance_types</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-10" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-10" data-code-lines="3,4" data-code-annotation="1">This is to sort the instance types by CPU architecture and number of cores</span>
</dd>
<dt data-target-cell="annotated-cell-10" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-10" data-code-lines="5" data-code-annotation="2">This is to sort “personal laptop” after “work laptop”</span>
</dd>
</dl>
</div>
<div class="cell-output cell-output-display" data-execution_count="11">
<pre><code>['c3-standard-4',
 'c3-standard-8',
 'c3-standard-22',
 'c3-standard-44',
 'n2-standard-2',
 'n2-standard-4',
 'n2-standard-8',
 'n2-standard-16',
 'n2-standard-32',
 'n2d-standard-2',
 'n2d-standard-4',
 'n2d-standard-8',
 'n2d-standard-16',
 'n2d-standard-32',
 'work laptop',
 'personal laptop']</code></pre>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled" title="What is an instance type?">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-8-contents" aria-controls="callout-8" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>What is an instance type?
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-8" class="callout-8-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>An instance type is the compute the benchmark was run on. This consists of two MacBook Pro laptops (one work and one personal) and a number of Google Cloud Compute Engine instances.</p>
<p>For cloud VMs, the instance type is in the form of <code>&lt;family&gt;-&lt;type&gt;-&lt;cores&gt;</code>, where:</p>
<ul>
<li><code>&lt;family&gt;</code> specifies the CPU architecture (Intel X, AMD Y)</li>
<li><code>&lt;type&gt;</code> modifies the CPU to memory ratio (only <code>standard</code> is used with a 1:4)</li>
<li><code>&lt;cores&gt;</code> is the number of vCPUs</li>
</ul>
<p>For example, <code>n2d-standard-2</code> is a Google Cloud Compute Engine instance with an AMD EPYC processor, 2 vCPUs, and 8GB of memory.</p>
</div>
</div>
</div>
<p>We can look at the total execution time by instance type:</p>
<div id="6e4b3589" class="cell" data-execution_count="12">
<details class="code-fold">
<summary>Show bar plot code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb11-2">    t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>)</span>
<span id="cb11-3">    .agg(total_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>())</span>
<span id="cb11-4">    .join(instance_details, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>),</span>
<span id="cb11-5">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>,</span>
<span id="cb11-6">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_seconds"</span>,</span>
<span id="cb11-7">    color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_type"</span>,</span>
<span id="cb11-8">    hover_data<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_cores"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"memory_gbs"</span>],</span>
<span id="cb11-9">    category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb11-10">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>: instance_types,</span>
<span id="cb11-11">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_type"</span>: cpu_types,</span>
<span id="cb11-12">    },</span>
<span id="cb11-13">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total execution time by instance type"</span>,</span>
<span id="cb11-14">)</span>
<span id="cb11-15">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="d244475b-f426-4489-bcd5-5f7039a9a060" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("d244475b-f426-4489-bcd5-5f7039a9a060")) {                    Plotly.newPlot(                        "d244475b-f426-4489-bcd5-5f7039a9a060",                        [{"alignmentgroup":"True","customdata":[[8,32],[16,64],[32,128],[2,8],[4,16]],"hovertemplate":"cpu_type=AMD EPYC\u003cbr\u003einstance_type=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cbr\u003ememory_gbs=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"AMD EPYC","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"AMD EPYC","offsetgroup":"AMD EPYC","orientation":"v","showlegend":true,"textposition":"auto","x":["n2d-standard-8","n2d-standard-16","n2d-standard-32","n2d-standard-2","n2d-standard-4"],"xaxis":"x","y":[12713.746816158295,8826.589931488037,7692.161742925644,44865.29464507103,27287.013442993164],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[12,32]],"hovertemplate":"cpu_type=Apple M1 Max\u003cbr\u003einstance_type=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cbr\u003ememory_gbs=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"Apple M1 Max","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"Apple M1 Max","offsetgroup":"Apple M1 Max","orientation":"v","showlegend":true,"textposition":"auto","x":["work laptop"],"xaxis":"x","y":[18826.837838172913],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[12,96]],"hovertemplate":"cpu_type=Apple M2 Max\u003cbr\u003einstance_type=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cbr\u003ememory_gbs=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"Apple M2 Max","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"Apple M2 Max","offsetgroup":"Apple M2 Max","orientation":"v","showlegend":true,"textposition":"auto","x":["personal laptop"],"xaxis":"x","y":[7762.792654275894],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[8,32],[16,64],[32,128],[2,8],[4,16]],"hovertemplate":"cpu_type=Intel Cascade and Ice Lake\u003cbr\u003einstance_type=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cbr\u003ememory_gbs=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"Intel Cascade and Ice Lake","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"Intel Cascade and Ice Lake","offsetgroup":"Intel Cascade and Ice Lake","orientation":"v","showlegend":true,"textposition":"auto","x":["n2-standard-8","n2-standard-16","n2-standard-32","n2-standard-2","n2-standard-4"],"xaxis":"x","y":[16631.65527653694,11164.923608541489,9977.536410570145,54309.10380792618,32758.409986257553],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[22,88],[44,176],[4,16],[8,32]],"hovertemplate":"cpu_type=Intel Sapphire Rapids\u003cbr\u003einstance_type=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cbr\u003ememory_gbs=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"Intel Sapphire Rapids","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"Intel Sapphire Rapids","offsetgroup":"Intel Sapphire Rapids","orientation":"v","showlegend":true,"textposition":"auto","x":["c3-standard-22","c3-standard-44","c3-standard-4","c3-standard-8"],"xaxis":"x","y":[7200.489403009415,6403.986677646637,26386.615517616272,15898.618711233139],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"instance_type"},"categoryorder":"array","categoryarray":["c3-standard-4","c3-standard-8","c3-standard-22","c3-standard-44","n2-standard-2","n2-standard-4","n2-standard-8","n2-standard-16","n2-standard-32","n2d-standard-2","n2d-standard-4","n2d-standard-8","n2d-standard-16","n2d-standard-32","work laptop","personal laptop"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"total_seconds"}},"legend":{"title":{"text":"cpu_type"},"tracegroupgap":0},"title":{"text":"total execution time by instance type"},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('d244475b-f426-4489-bcd5-5f7039a9a060');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>Unsurprisingly, this is inversely correlated with the number of CPU cores and (crucially) memory:</p>
<div id="3ce1f8a5" class="cell" data-execution_count="13">
<details class="code-fold">
<summary>Show bar plot code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb12-1">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb12-2">    instance_details,</span>
<span id="cb12-3">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>,</span>
<span id="cb12-4">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"memory_gbs"</span>,</span>
<span id="cb12-5">    color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_type"</span>,</span>
<span id="cb12-6">    hover_data<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_cores"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"memory_gbs"</span>],</span>
<span id="cb12-7">    category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb12-8">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>: instance_types,</span>
<span id="cb12-9">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_type"</span>: cpu_types,</span>
<span id="cb12-10">    },</span>
<span id="cb12-11">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"memory by instance type"</span>,</span>
<span id="cb12-12">)</span>
<span id="cb12-13">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="24f0519b-1c8a-44ff-9ecb-a14d0d0869fe" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("24f0519b-1c8a-44ff-9ecb-a14d0d0869fe")) {                    Plotly.newPlot(                        "24f0519b-1c8a-44ff-9ecb-a14d0d0869fe",                        [{"alignmentgroup":"True","customdata":[[2],[4],[8],[16],[32]],"hovertemplate":"cpu_type=AMD EPYC\u003cbr\u003einstance_type=%{x}\u003cbr\u003ememory_gbs=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"AMD EPYC","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"AMD EPYC","offsetgroup":"AMD EPYC","orientation":"v","showlegend":true,"textposition":"auto","x":["n2d-standard-2","n2d-standard-4","n2d-standard-8","n2d-standard-16","n2d-standard-32"],"xaxis":"x","y":[8,16,32,64,128],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[12]],"hovertemplate":"cpu_type=Apple M1 Max\u003cbr\u003einstance_type=%{x}\u003cbr\u003ememory_gbs=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"Apple M1 Max","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"Apple M1 Max","offsetgroup":"Apple M1 Max","orientation":"v","showlegend":true,"textposition":"auto","x":["work laptop"],"xaxis":"x","y":[32],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[12]],"hovertemplate":"cpu_type=Apple M2 Max\u003cbr\u003einstance_type=%{x}\u003cbr\u003ememory_gbs=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"Apple M2 Max","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"Apple M2 Max","offsetgroup":"Apple M2 Max","orientation":"v","showlegend":true,"textposition":"auto","x":["personal laptop"],"xaxis":"x","y":[96],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[2],[4],[8],[16],[32]],"hovertemplate":"cpu_type=Intel Cascade and Ice Lake\u003cbr\u003einstance_type=%{x}\u003cbr\u003ememory_gbs=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"Intel Cascade and Ice Lake","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"Intel Cascade and Ice Lake","offsetgroup":"Intel Cascade and Ice Lake","orientation":"v","showlegend":true,"textposition":"auto","x":["n2-standard-2","n2-standard-4","n2-standard-8","n2-standard-16","n2-standard-32"],"xaxis":"x","y":[8,16,32,64,128],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[4],[8],[22],[44]],"hovertemplate":"cpu_type=Intel Sapphire Rapids\u003cbr\u003einstance_type=%{x}\u003cbr\u003ememory_gbs=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"Intel Sapphire Rapids","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"Intel Sapphire Rapids","offsetgroup":"Intel Sapphire Rapids","orientation":"v","showlegend":true,"textposition":"auto","x":["c3-standard-4","c3-standard-8","c3-standard-22","c3-standard-44"],"xaxis":"x","y":[16,32,88,176],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"instance_type"},"categoryorder":"array","categoryarray":["c3-standard-4","c3-standard-8","c3-standard-22","c3-standard-44","n2-standard-2","n2-standard-4","n2-standard-8","n2-standard-16","n2-standard-32","n2d-standard-2","n2d-standard-4","n2d-standard-8","n2d-standard-16","n2d-standard-32","work laptop","personal laptop"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"memory_gbs"}},"legend":{"title":{"text":"cpu_type"},"tracegroupgap":0},"title":{"text":"memory by instance type"},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('24f0519b-1c8a-44ff-9ecb-a14d0d0869fe');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>We ran on the following systems:</p>
<div id="44a6d0d4" class="cell" data-execution_count="14">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb13-1">systems <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sorted</span>(t.distinct(on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>)[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>].to_pyarrow().to_pylist())</span>
<span id="cb13-2">systems</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="14">
<pre><code>['ibis-datafusion',
 'ibis-datafusion-sql',
 'ibis-duckdb',
 'ibis-duckdb-sql',
 'ibis-polars',
 'polars-lazy']</code></pre>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled" title="What is a system?">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-9-contents" aria-controls="callout-9" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>What is a system?
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-9" class="callout-9-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>For convenience in this benchmark, a ‘system’ is defined as a hyphen-separated naming convention where:</p>
<ul>
<li><code>ibis-*</code>: Ibis API was used
<ul>
<li><code>ibis-&lt;backend&gt;</code>: Ibis dataframe code was used with the given backend</li>
<li><code>ibis-&lt;backend&gt;-sql</code>: SQL code was used via Ibis on the given backend</li>
</ul></li>
<li><code>polars-*</code>: Polars API was used
<ul>
<li><code>polars-lazy</code>: Polars was used with the LazyFrames API</li>
</ul></li>
</ul>
</div>
</div>
</div>
<p>We can look at the total execution time by system:</p>
<div id="bc71358f" class="cell" data-execution_count="15">
<details class="code-fold">
<summary>Show bar plot code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb15-1">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb15-2">    t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>).agg(</span>
<span id="cb15-3">        total_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>(),</span>
<span id="cb15-4">        seconds_per_query<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>].mean(),</span>
<span id="cb15-5">    ),</span>
<span id="cb15-6">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb15-7">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_seconds"</span>,</span>
<span id="cb15-8">    color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb15-9">    category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>: systems},</span>
<span id="cb15-10">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total execution time by system"</span>,</span>
<span id="cb15-11">)</span>
<span id="cb15-12">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="e780956d-98e3-4574-bb8a-8a7984ac620d" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("e780956d-98e3-4574-bb8a-8a7984ac620d")) {                    Plotly.newPlot(                        "e780956d-98e3-4574-bb8a-8a7984ac620d",                        [{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"ibis-datafusion","offsetgroup":"ibis-datafusion","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-datafusion"],"xaxis":"x","y":[58838.82606935501],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"ibis-datafusion-sql","offsetgroup":"ibis-datafusion-sql","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-datafusion-sql"],"xaxis":"x","y":[60297.199028253555],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"ibis-duckdb","offsetgroup":"ibis-duckdb","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-duckdb"],"xaxis":"x","y":[57484.52195310593],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"ibis-duckdb-sql","offsetgroup":"ibis-duckdb-sql","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-duckdb-sql"],"xaxis":"x","y":[57534.97966146469],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"ibis-polars","offsetgroup":"ibis-polars","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-polars"],"xaxis":"x","y":[30922.509821414948],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003etotal_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"polars-lazy","offsetgroup":"polars-lazy","orientation":"v","showlegend":true,"textposition":"auto","x":["polars-lazy"],"xaxis":"x","y":[43627.73993682861],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"system"},"categoryorder":"array","categoryarray":["ibis-datafusion","ibis-datafusion-sql","ibis-duckdb","ibis-duckdb-sql","ibis-polars","polars-lazy"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"total_seconds"}},"legend":{"title":{"text":"system"},"tracegroupgap":0},"title":{"text":"total execution time by system"},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('e780956d-98e3-4574-bb8a-8a7984ac620d');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div class="callout callout-style-default callout-warning callout-titled" title="This can be misleading!">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Warning</span>This can be misleading!
</div>
</div>
<div class="callout-body-container callout-body">
<p>At this point, we have to dig deeper into the data to understand the takeaways. You might look at the above and think <code>ibis-polars</code> is the fastest all-around, but it’s not! Recall 9/22 queries for the Polars backend are failing, and at larger scale factors we start to see several systems fail queries due to memory pressure.</p>
</div>
</div>
</section>
<section id="execution-time-by-system-scale-factor-instance-type-and-query" class="level3">
<h3 class="anchored" data-anchor-id="execution-time-by-system-scale-factor-instance-type-and-query">Execution time by system, scale factor, instance type, and query</h3>
<p>We’ll aggregate the data over the dimensions we care about:</p>
<div id="fd4c21d3" class="cell" data-execution_count="16">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb16-1">agg <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb16-2">    t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n_partitions"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>)</span>
<span id="cb16-3">    .agg(</span>
<span id="cb16-4">        mean_execution_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>].mean(),</span>
<span id="cb16-5">    )</span>
<span id="cb16-6">    .join(instance_details, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>)</span>
<span id="cb16-7">)</span>
<span id="cb16-8">agg.head(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="16">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> instance_type </span>┃<span style="font-weight: bold"> system              </span>┃<span style="font-weight: bold"> sf    </span>┃<span style="font-weight: bold"> n_partitions </span>┃<span style="font-weight: bold"> query_number </span>┃<span style="font-weight: bold"> mean_execution_seconds </span>┃<span style="font-weight: bold"> cpu_type                   </span>┃<span style="font-weight: bold"> cpu_cores </span>┃<span style="font-weight: bold"> memory_gbs </span>┃
┡━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │
├───────────────┼─────────────────────┼───────┼──────────────┼──────────────┼────────────────────────┼────────────────────────────┼───────────┼────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-4</span> │ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb-sql    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7.730084</span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Cascade and Ice Lake</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-4</span> │ <span style="color: #008000; text-decoration-color: #008000">polars-lazy        </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.062605</span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Cascade and Ice Lake</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │
│ <span style="color: #008000; text-decoration-color: #008000">n2-standard-4</span> │ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion-sql</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">128</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13</span> │              <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">53.188349</span> │ <span style="color: #008000; text-decoration-color: #008000">Intel Cascade and Ice Lake</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │
└───────────────┴─────────────────────┴───────┴──────────────┴──────────────┴────────────────────────┴────────────────────────────┴───────────┴────────────┘
</pre>
</div>
</div>
<p>There’s a lot of data and it’s difficult to visualize all at once. We’ll build up our understanding with a few plots.</p>
<div id="3ac6b5b0" class="cell" data-execution_count="17">
<details class="code-fold">
<summary>Show code for timings_plot</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb17" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb17-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> timings_plot(</span>
<span id="cb17-2">    agg,</span>
<span id="cb17-3">    sf_filter<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">128</span>,</span>
<span id="cb17-4">    systems_filter<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>systems,</span>
<span id="cb17-5">    instances_filter<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[instance <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> instance <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> instance_types <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"laptop"</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> instance],</span>
<span id="cb17-6">    queries_filter<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>query_numbers,</span>
<span id="cb17-7">    log_y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="cb17-8">):</span>
<span id="cb17-9">    data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb17-10">        agg.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> sf_filter)</span>
<span id="cb17-11">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>].isin(systems_filter))</span>
<span id="cb17-12">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].isin(instances_filter))</span>
<span id="cb17-13">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>].isin(queries_filter))</span>
<span id="cb17-14">    )</span>
<span id="cb17-15"></span>
<span id="cb17-16">    c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb17-17">        data,</span>
<span id="cb17-18">        x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>,</span>
<span id="cb17-19">        y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mean_execution_seconds"</span>,</span>
<span id="cb17-20">        log_y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>log_y,</span>
<span id="cb17-21">        color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb17-22">        barmode<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"group"</span>,</span>
<span id="cb17-23">        pattern_shape<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>,</span>
<span id="cb17-24">        category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb17-25">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>: systems,</span>
<span id="cb17-26">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>: instance_types,</span>
<span id="cb17-27">        },</span>
<span id="cb17-28">        hover_data<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_type"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_cores"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"memory_gbs"</span>],</span>
<span id="cb17-29">        title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"sf: </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>sf_filter<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>,</span>
<span id="cb17-30">    )</span>
<span id="cb17-31"></span>
<span id="cb17-32">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> c</span></code></pre></div></div>
</details>
</div>
<p>First, let’s visualize execution time for a given scale factor, system, query, and family of instance types:</p>
<div id="500bfedc" class="cell" data-execution_count="18">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb18-1">sf_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">128</span></span>
<span id="cb18-2">systems_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-duckdb"</span>]</span>
<span id="cb18-3">instances_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [</span>
<span id="cb18-4">    instance <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> instance <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> instance_types <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> instance.startswith(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n2d"</span>)</span>
<span id="cb18-5">]</span>
<span id="cb18-6">queries_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>]</span>
<span id="cb18-7">log_y <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span></span>
<span id="cb18-8"></span>
<span id="cb18-9">timings_plot(agg, sf_filter, systems_filter, instances_filter, queries_filter, log_y)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="5540e1a0-bf17-47f8-8632-3b60d79cdf8a" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("5540e1a0-bf17-47f8-8632-3b60d79cdf8a")) {                    Plotly.newPlot(                        "5540e1a0-bf17-47f8-8632-3b60d79cdf8a",                        [{"alignmentgroup":"True","customdata":[["AMD EPYC",2,8]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-2\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-2","marker":{"color":"#00cc96","pattern":{"shape":"x"}},"name":"ibis-duckdb, n2d-standard-2","offsetgroup":"ibis-duckdb, n2d-standard-2","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[111.81634593009949],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",4,16]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-4\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-4","marker":{"color":"#00cc96","pattern":{"shape":"+"}},"name":"ibis-duckdb, n2d-standard-4","offsetgroup":"ibis-duckdb, n2d-standard-4","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[52.48048988978068],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",8,32]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-8\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-8","marker":{"color":"#00cc96","pattern":{"shape":"."}},"name":"ibis-duckdb, n2d-standard-8","offsetgroup":"ibis-duckdb, n2d-standard-8","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[23.785067558288574],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",16,64]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-16\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-16","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"ibis-duckdb, n2d-standard-16","offsetgroup":"ibis-duckdb, n2d-standard-16","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[11.582529067993164],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-32","marker":{"color":"#00cc96","pattern":{"shape":"\u002f"}},"name":"ibis-duckdb, n2d-standard-32","offsetgroup":"ibis-duckdb, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[5.938729286193848],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"mean_execution_seconds"}},"legend":{"title":{"text":"system, instance_type"},"tracegroupgap":0},"title":{"text":"sf: 128"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('5540e1a0-bf17-47f8-8632-3b60d79cdf8a');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>From left to right, we have increasing instance resources (CPU cores and memory – you can hover over the data to see the details). You can also zoom and select specific labels to focus on. We notice that, as expected, queries execute faster when given more resources.</p>
<p>Now let’s add a second system:</p>
<div id="ada0fc97" class="cell" data-execution_count="19">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb19" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb19-1">systems_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-duckdb"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-duckdb-sql"</span>]</span>
<span id="cb19-2"></span>
<span id="cb19-3">timings_plot(agg, sf_filter, systems_filter, instances_filter, queries_filter, log_y)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="7e977938-be45-48df-add5-308d949629a6" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("7e977938-be45-48df-add5-308d949629a6")) {                    Plotly.newPlot(                        "7e977938-be45-48df-add5-308d949629a6",                        [{"alignmentgroup":"True","customdata":[["AMD EPYC",2,8]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-2\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-2","marker":{"color":"#00cc96","pattern":{"shape":"x"}},"name":"ibis-duckdb, n2d-standard-2","offsetgroup":"ibis-duckdb, n2d-standard-2","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[111.81634593009949],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",4,16]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-4\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-4","marker":{"color":"#00cc96","pattern":{"shape":"+"}},"name":"ibis-duckdb, n2d-standard-4","offsetgroup":"ibis-duckdb, n2d-standard-4","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[52.48048988978068],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",8,32]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-8\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-8","marker":{"color":"#00cc96","pattern":{"shape":"."}},"name":"ibis-duckdb, n2d-standard-8","offsetgroup":"ibis-duckdb, n2d-standard-8","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[23.785067558288574],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",16,64]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-16\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-16","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"ibis-duckdb, n2d-standard-16","offsetgroup":"ibis-duckdb, n2d-standard-16","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[11.582529067993164],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-32","marker":{"color":"#00cc96","pattern":{"shape":"\u002f"}},"name":"ibis-duckdb, n2d-standard-32","offsetgroup":"ibis-duckdb, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[5.938729286193848],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",2,8]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-2\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-2","marker":{"color":"#ab63fa","pattern":{"shape":"x"}},"name":"ibis-duckdb-sql, n2d-standard-2","offsetgroup":"ibis-duckdb-sql, n2d-standard-2","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[93.9455053806305],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",4,16]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-4\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-4","marker":{"color":"#ab63fa","pattern":{"shape":"+"}},"name":"ibis-duckdb-sql, n2d-standard-4","offsetgroup":"ibis-duckdb-sql, n2d-standard-4","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[50.23033595085144],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",8,32]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-8\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-8","marker":{"color":"#ab63fa","pattern":{"shape":"."}},"name":"ibis-duckdb-sql, n2d-standard-8","offsetgroup":"ibis-duckdb-sql, n2d-standard-8","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[20.659324566523235],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",16,64]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-16\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-16","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"ibis-duckdb-sql, n2d-standard-16","offsetgroup":"ibis-duckdb-sql, n2d-standard-16","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[9.83419426282247],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-32","marker":{"color":"#ab63fa","pattern":{"shape":"\u002f"}},"name":"ibis-duckdb-sql, n2d-standard-32","offsetgroup":"ibis-duckdb-sql, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[5.2171577612559],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"mean_execution_seconds"}},"legend":{"title":{"text":"system, instance_type"},"tracegroupgap":0},"title":{"text":"sf: 128"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('7e977938-be45-48df-add5-308d949629a6');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled" title="Ibis dataframe code vs Ibis SQL code">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-11-contents" aria-controls="callout-11" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>Ibis dataframe code vs Ibis SQL code
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-11" class="callout-11-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p><code>ibis-duckdb</code> is running the TPC-H queries written as Ibis dataframe code. The <code>ibis-duckdb-sql</code> system is running the same queries but written as SQL code passed into <code>.sql()</code> in Ibis as strings. The intent is to see if Ibis dataframe code is introducing any significant overhead. While ideally we’d run on the backend’s Python client without Ibis in the mix, this keeps the benchmarking process simple and should serve as a decent proxy.</p>
</div>
</div>
</div>
<p>In this case, we do see that Ibis dataframe code is adding some overhead. But, this is a single data point – let’s expand to the first 7 queries:</p>
<div class="callout callout-style-default callout-note callout-titled" title="Logging the y-axis">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>Logging the y-axis
</div>
</div>
<div class="callout-body-container callout-body">
<p>From here, we’ll set <code>log_y=True</code> due to the wide range of execution times.</p>
<p>We also look at the first 7 queries due to limited horizontal space on this website. Analyze and visualize the data yourself for all 22 queries! Or <a href="https://ibis-bench.streamlit.app">see the Ibis benchmarking Streamlit app</a>.</p>
</div>
</div>
<div id="e6a2c602" class="cell" data-execution_count="20">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb20" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb20-1">log_y <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span>
<span id="cb20-2">queries_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">7</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb20-3"></span>
<span id="cb20-4">timings_plot(agg, sf_filter, systems_filter, instances_filter, queries_filter, log_y)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="d9a828c8-e422-4272-b41f-75bb6dd64c2f" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("d9a828c8-e422-4272-b41f-75bb6dd64c2f")) {                    Plotly.newPlot(                        "d9a828c8-e422-4272-b41f-75bb6dd64c2f",                        [{"alignmentgroup":"True","customdata":[["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-2\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-2","marker":{"color":"#00cc96","pattern":{"shape":"x"}},"name":"ibis-duckdb, n2d-standard-2","offsetgroup":"ibis-duckdb, n2d-standard-2","orientation":"v","showlegend":true,"textposition":"auto","x":[6,1,5,7,4,3,2],"xaxis":"x","y":[49.7428944905599,111.81634593009949,79.99639010429382,167.6698002020518,53.14470879236857,76.22619962692261,9.01880407333374],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-4\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-4","marker":{"color":"#00cc96","pattern":{"shape":"+"}},"name":"ibis-duckdb, n2d-standard-4","offsetgroup":"ibis-duckdb, n2d-standard-4","orientation":"v","showlegend":true,"textposition":"auto","x":[3,1,6,7,4,5,2],"xaxis":"x","y":[57.629031817118324,52.48048988978068,45.321753899256386,82.24646361668904,29.308464288711548,53.63263535499573,6.6205854415893555],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-8\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-8","marker":{"color":"#00cc96","pattern":{"shape":"."}},"name":"ibis-duckdb, n2d-standard-8","offsetgroup":"ibis-duckdb, n2d-standard-8","orientation":"v","showlegend":true,"textposition":"auto","x":[7,4,5,1,6,2,3],"xaxis":"x","y":[26.38829843203227,9.234363794326782,13.609139839808146,23.785067558288574,8.34712823232015,1.9450260798136394,13.816275278727213],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-16\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-16","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"ibis-duckdb, n2d-standard-16","offsetgroup":"ibis-duckdb, n2d-standard-16","orientation":"v","showlegend":true,"textposition":"auto","x":[5,2,3,1,7,4,6],"xaxis":"x","y":[7.192176500956218,1.038861910502116,6.893320242563884,11.582529067993164,13.814172585805258,4.962450901667277,4.339909315109253],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-32","marker":{"color":"#00cc96","pattern":{"shape":"\u002f"}},"name":"ibis-duckdb, n2d-standard-32","offsetgroup":"ibis-duckdb, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[5,2,3,1,4,7,6],"xaxis":"x","y":[3.9903443654378257,0.6979877154032389,3.935547669728597,5.938729286193848,2.8200621604919434,7.479643742243449,2.341557025909424],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-2\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-2","marker":{"color":"#ab63fa","pattern":{"shape":"x"}},"name":"ibis-duckdb-sql, n2d-standard-2","offsetgroup":"ibis-duckdb-sql, n2d-standard-2","orientation":"v","showlegend":true,"textposition":"auto","x":[1,3,2,5,6,7,4],"xaxis":"x","y":[93.9455053806305,73.71186025937398,15.153176069259644,74.46631360054016,55.65792457262675,269.1292410691579,55.44052871068319],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-4\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-4","marker":{"color":"#ab63fa","pattern":{"shape":"+"}},"name":"ibis-duckdb-sql, n2d-standard-4","offsetgroup":"ibis-duckdb-sql, n2d-standard-4","orientation":"v","showlegend":true,"textposition":"auto","x":[4,7,2,3,6,5,1],"xaxis":"x","y":[31.415818214416504,121.47943234443665,11.380781571070353,54.54566089312235,39.74296442667643,52.16614373524984,50.23033595085144],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-8\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-8","marker":{"color":"#ab63fa","pattern":{"shape":"."}},"name":"ibis-duckdb-sql, n2d-standard-8","offsetgroup":"ibis-duckdb-sql, n2d-standard-8","orientation":"v","showlegend":true,"textposition":"auto","x":[6,1,5,7,4,3,2],"xaxis":"x","y":[9.49041755994161,20.659324566523235,11.995146989822388,34.449400901794434,9.439269463221232,13.072817166646322,3.2307483355204263],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-16\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-16","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"ibis-duckdb-sql, n2d-standard-16","offsetgroup":"ibis-duckdb-sql, n2d-standard-16","orientation":"v","showlegend":true,"textposition":"auto","x":[4,7,5,1,6,2,3],"xaxis":"x","y":[5.0534547964731855,15.544215122858683,6.304445346196492,9.83419426282247,4.930152336756389,1.6244436105092366,6.493680874506633],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-32","marker":{"color":"#ab63fa","pattern":{"shape":"\u002f"}},"name":"ibis-duckdb-sql, n2d-standard-32","offsetgroup":"ibis-duckdb-sql, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[5,2,3,1,7,4,6],"xaxis":"x","y":[3.694347699483236,1.0186904271443684,3.7939114570617676,5.2171577612559,10.273284514745077,3.0171448389689126,2.716411034266154],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"mean_execution_seconds"},"type":"log"},"legend":{"title":{"text":"system, instance_type"},"tracegroupgap":0},"title":{"text":"sf: 128"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('d9a828c8-e422-4272-b41f-75bb6dd64c2f');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>This tells a different story. Sometimes Ibis dataframe code is a bit faster, sometimes a bit slower. Let’s compute the totals:</p>
<div id="22489703" class="cell" data-execution_count="21">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb21" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb21-1">(</span>
<span id="cb21-2">    agg.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> sf_filter)</span>
<span id="cb21-3">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>].isin(systems_filter))</span>
<span id="cb21-4">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].isin(instances_filter))</span>
<span id="cb21-5">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>].isin(queries_filter))</span>
<span id="cb21-6">    .group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>)</span>
<span id="cb21-7">    .agg(</span>
<span id="cb21-8">        total_execution_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mean_execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>(),</span>
<span id="cb21-9">        total_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._.count(),</span>
<span id="cb21-10">    )</span>
<span id="cb21-11">    .mutate(</span>
<span id="cb21-12">        seconds_per_query<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_execution_seconds"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_queries"</span>]</span>
<span id="cb21-13">    )</span>
<span id="cb21-14">)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="21">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> system          </span>┃<span style="font-weight: bold"> total_execution_seconds </span>┃<span style="font-weight: bold"> total_queries </span>┃<span style="font-weight: bold"> seconds_per_query </span>┃
┡━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │
├─────────────────┼─────────────────────────┼───────────────┼───────────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb    </span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1049.007159</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">35</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">29.971633</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb-sql</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1180.318346</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">35</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">33.723381</span> │
└─────────────────┴─────────────────────────┴───────────────┴───────────────────┘
</pre>
</div>
</div>
<p>Ibis dataframe code is a little faster overall, but this is on a subset of queries and scale factors and instance types. More analysis and profiling would be needed to make a definitive statement, but in general we can be happy that DuckDB does a great job optimizing the SQL Ibis generates and that Ibis dataframe code isn’t adding significant overhead.</p>
<p>Let’s repeat this for DataFusion:</p>
<div id="e50a97ce" class="cell" data-execution_count="22">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb22" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb22-1">systems_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-datafusion"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-datafusion-sql"</span>]</span>
<span id="cb22-2"></span>
<span id="cb22-3">timings_plot(agg, sf_filter, systems_filter, instances_filter, queries_filter, log_y)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="72b6748e-95f5-4ec6-877c-aeaedb0206fe" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("72b6748e-95f5-4ec6-877c-aeaedb0206fe")) {                    Plotly.newPlot(                        "72b6748e-95f5-4ec6-877c-aeaedb0206fe",                        [{"alignmentgroup":"True","customdata":[["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8]],"hovertemplate":"system=ibis-datafusion\u003cbr\u003einstance_type=n2d-standard-2\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion, n2d-standard-2","marker":{"color":"#636efa","pattern":{"shape":"x"}},"name":"ibis-datafusion, n2d-standard-2","offsetgroup":"ibis-datafusion, n2d-standard-2","orientation":"v","showlegend":true,"textposition":"auto","x":[2,7,4,1,5,3,6],"xaxis":"x","y":[11.363901694615683,146.63673464457193,60.15771754582723,141.34012492497763,103.98395832379659,93.7709014415741,73.55492202440898],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16]],"hovertemplate":"system=ibis-datafusion\u003cbr\u003einstance_type=n2d-standard-4\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion, n2d-standard-4","marker":{"color":"#636efa","pattern":{"shape":"+"}},"name":"ibis-datafusion, n2d-standard-4","offsetgroup":"ibis-datafusion, n2d-standard-4","orientation":"v","showlegend":true,"textposition":"auto","x":[7,4,2,1,5,6,3],"xaxis":"x","y":[64.4235285917918,25.11102867126465,7.114913145701091,66.99990622202556,54.826802810033165,29.97126046816508,63.446453332901],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32]],"hovertemplate":"system=ibis-datafusion\u003cbr\u003einstance_type=n2d-standard-8\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion, n2d-standard-8","marker":{"color":"#636efa","pattern":{"shape":"."}},"name":"ibis-datafusion, n2d-standard-8","offsetgroup":"ibis-datafusion, n2d-standard-8","orientation":"v","showlegend":true,"textposition":"auto","x":[6,3,5,1,7,4,2],"xaxis":"x","y":[15.808083295822144,17.678866863250732,19.327382644017536,33.89225927988688,28.73931161562602,10.578797340393066,3.1191936333974204],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64]],"hovertemplate":"system=ibis-datafusion\u003cbr\u003einstance_type=n2d-standard-16\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion, n2d-standard-16","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"ibis-datafusion, n2d-standard-16","offsetgroup":"ibis-datafusion, n2d-standard-16","orientation":"v","showlegend":true,"textposition":"auto","x":[5,3,2,6,7,4,1],"xaxis":"x","y":[10.493077993392944,11.601869583129883,2.4326950709025064,6.173372507095337,15.978981018066406,7.893036524454753,17.721132198969524],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=ibis-datafusion\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion, n2d-standard-32","marker":{"color":"#636efa","pattern":{"shape":"\u002f"}},"name":"ibis-datafusion, n2d-standard-32","offsetgroup":"ibis-datafusion, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[7,4,2,1,5,6,3],"xaxis":"x","y":[11.63159171740214,7.482565720876058,2.2544215520222983,16.529266754786175,7.471903959910075,3.4388548533121743,9.200567960739136],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8],["AMD EPYC",2,8]],"hovertemplate":"system=ibis-datafusion-sql\u003cbr\u003einstance_type=n2d-standard-2\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql, n2d-standard-2","marker":{"color":"#EF553B","pattern":{"shape":"x"}},"name":"ibis-datafusion-sql, n2d-standard-2","offsetgroup":"ibis-datafusion-sql, n2d-standard-2","orientation":"v","showlegend":true,"textposition":"auto","x":[1,4,6,2,3,5],"xaxis":"x","y":[150.74161338806152,55.97467875480652,57.67109179496765,29.713732481002808,88.4080200990041,111.47976183891296],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16],["AMD EPYC",4,16]],"hovertemplate":"system=ibis-datafusion-sql\u003cbr\u003einstance_type=n2d-standard-4\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql, n2d-standard-4","marker":{"color":"#EF553B","pattern":{"shape":"+"}},"name":"ibis-datafusion-sql, n2d-standard-4","offsetgroup":"ibis-datafusion-sql, n2d-standard-4","orientation":"v","showlegend":true,"textposition":"auto","x":[5,6,4,3,2,1],"xaxis":"x","y":[55.346779664357506,37.8270780245463,26.76049606005351,61.042712370554604,17.599053780237835,69.05837146441142],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32]],"hovertemplate":"system=ibis-datafusion-sql\u003cbr\u003einstance_type=n2d-standard-8\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql, n2d-standard-8","marker":{"color":"#EF553B","pattern":{"shape":"."}},"name":"ibis-datafusion-sql, n2d-standard-8","offsetgroup":"ibis-datafusion-sql, n2d-standard-8","orientation":"v","showlegend":true,"textposition":"auto","x":[3,6,5,1,2,4,7],"xaxis":"x","y":[16.597763617833454,8.179972171783447,21.060061931610107,33.04584511121114,8.765077829360962,9.519487619400024,40.027138233184814],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64]],"hovertemplate":"system=ibis-datafusion-sql\u003cbr\u003einstance_type=n2d-standard-16\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql, n2d-standard-16","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"ibis-datafusion-sql, n2d-standard-16","offsetgroup":"ibis-datafusion-sql, n2d-standard-16","orientation":"v","showlegend":true,"textposition":"auto","x":[5,3,2,6,7,4,1],"xaxis":"x","y":[12.02802308400472,11.203579425811768,6.750166734059651,4.181100845336914,24.014207124710083,5.670323610305786,16.38461971282959],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=ibis-datafusion-sql\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql, n2d-standard-32","marker":{"color":"#EF553B","pattern":{"shape":"\u002f"}},"name":"ibis-datafusion-sql, n2d-standard-32","offsetgroup":"ibis-datafusion-sql, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[1,2,3,4,7,6,5],"xaxis":"x","y":[12.949114084243774,6.693936745325725,9.455447912216187,3.730076869328817,17.029499053955078,2.7630774974823,9.587421178817749],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"mean_execution_seconds"},"type":"log"},"legend":{"title":{"text":"system, instance_type"},"tracegroupgap":0},"title":{"text":"sf: 128"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('72b6748e-95f5-4ec6-877c-aeaedb0206fe');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>We see a similar story. Let’s confirm with a table:</p>
<div id="206c8807" class="cell" data-execution_count="23">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb23" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb23-1">(</span>
<span id="cb23-2">    agg.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> sf_filter)</span>
<span id="cb23-3">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>].isin(systems_filter))</span>
<span id="cb23-4">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].isin(instances_filter))</span>
<span id="cb23-5">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>].isin(queries_filter))</span>
<span id="cb23-6">    .group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>)</span>
<span id="cb23-7">    .agg(</span>
<span id="cb23-8">        total_execution_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mean_execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>(),</span>
<span id="cb23-9">        total_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._.count(),</span>
<span id="cb23-10">    )</span>
<span id="cb23-11">    .mutate(</span>
<span id="cb23-12">        seconds_per_query<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_execution_seconds"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_queries"</span>]</span>
<span id="cb23-13">    )</span>
<span id="cb23-14">)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="23">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> system              </span>┃<span style="font-weight: bold"> total_execution_seconds </span>┃<span style="font-weight: bold"> total_queries </span>┃<span style="font-weight: bold"> seconds_per_query </span>┃
┡━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │
├─────────────────────┼─────────────────────────┼───────────────┼───────────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion-sql</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1041.259330</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">33</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">31.553313</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion    </span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1202.149386</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">35</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">34.347125</span> │
└─────────────────────┴─────────────────────────┴───────────────┴───────────────────┘
</pre>
</div>
</div>
<p>This time Ibis dataframe code is a bit slower overall. <strong>However, also notice two queries are missing from <code>ibis-datafusion-sql</code></strong>. These are query 7 on <code>n2d-standard-2</code> and <code>n2d-standard-4</code> (the two instances with the least memory). We’ll investigate failing queries more thoroughly in the next section.</p>
<p>First, let’s look at Polars:</p>
<div id="3540c1c6" class="cell" data-execution_count="24">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb24" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb24-1">systems_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis-polars"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"polars-lazy"</span>]</span>
<span id="cb24-2"></span>
<span id="cb24-3">timings_plot(agg, sf_filter, systems_filter, instances_filter, queries_filter, log_y)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="a1de20d0-c0b7-4571-8d23-d360d1ac8ff4" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("a1de20d0-c0b7-4571-8d23-d360d1ac8ff4")) {                    Plotly.newPlot(                        "a1de20d0-c0b7-4571-8d23-d360d1ac8ff4",                        [{"alignmentgroup":"True","customdata":[["AMD EPYC",2,8],["AMD EPYC",2,8]],"hovertemplate":"system=ibis-polars\u003cbr\u003einstance_type=n2d-standard-2\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars, n2d-standard-2","marker":{"color":"#FFA15A","pattern":{"shape":"x"}},"name":"ibis-polars, n2d-standard-2","offsetgroup":"ibis-polars, n2d-standard-2","orientation":"v","showlegend":true,"textposition":"auto","x":[6,2],"xaxis":"x","y":[61.469714879989624,13.319883108139038],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",4,16],["AMD EPYC",4,16]],"hovertemplate":"system=ibis-polars\u003cbr\u003einstance_type=n2d-standard-4\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars, n2d-standard-4","marker":{"color":"#FFA15A","pattern":{"shape":"+"}},"name":"ibis-polars, n2d-standard-4","offsetgroup":"ibis-polars, n2d-standard-4","orientation":"v","showlegend":true,"textposition":"auto","x":[6,2],"xaxis":"x","y":[52.33062720298767,9.546661615371704],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",8,32],["AMD EPYC",8,32]],"hovertemplate":"system=ibis-polars\u003cbr\u003einstance_type=n2d-standard-8\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars, n2d-standard-8","marker":{"color":"#FFA15A","pattern":{"shape":"."}},"name":"ibis-polars, n2d-standard-8","offsetgroup":"ibis-polars, n2d-standard-8","orientation":"v","showlegend":true,"textposition":"auto","x":[2,6],"xaxis":"x","y":[6.598418553670247,18.069969574610393],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64]],"hovertemplate":"system=ibis-polars\u003cbr\u003einstance_type=n2d-standard-16\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars, n2d-standard-16","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"ibis-polars, n2d-standard-16","offsetgroup":"ibis-polars, n2d-standard-16","orientation":"v","showlegend":true,"textposition":"auto","x":[2,3,4,7,6],"xaxis":"x","y":[10.44108772277832,27.571980555852253,13.035804430643717,22.919936974843342,17.985748132069904],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=ibis-polars\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars, n2d-standard-32","marker":{"color":"#FFA15A","pattern":{"shape":"\u002f"}},"name":"ibis-polars, n2d-standard-32","offsetgroup":"ibis-polars, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[3,5,1,2,6,4,7],"xaxis":"x","y":[27.108211437861126,13.99797248840332,62.19382929801941,5.905109326044719,4.244828224182129,11.461715777715048,12.255585193634033],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",4,16],["AMD EPYC",4,16]],"hovertemplate":"system=polars-lazy\u003cbr\u003einstance_type=n2d-standard-4\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy, n2d-standard-4","marker":{"color":"#19d3f3","pattern":{"shape":"+"}},"name":"polars-lazy, n2d-standard-4","offsetgroup":"polars-lazy, n2d-standard-4","orientation":"v","showlegend":true,"textposition":"auto","x":[6,2],"xaxis":"x","y":[54.12349343299866,8.95040512084961],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32],["AMD EPYC",8,32]],"hovertemplate":"system=polars-lazy\u003cbr\u003einstance_type=n2d-standard-8\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy, n2d-standard-8","marker":{"color":"#19d3f3","pattern":{"shape":"."}},"name":"polars-lazy, n2d-standard-8","offsetgroup":"polars-lazy, n2d-standard-8","orientation":"v","showlegend":true,"textposition":"auto","x":[7,4,2,6],"xaxis":"x","y":[32.36805748939514,21.888363758722942,3.828543742497762,18.953997373580933],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64],["AMD EPYC",16,64]],"hovertemplate":"system=polars-lazy\u003cbr\u003einstance_type=n2d-standard-16\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy, n2d-standard-16","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"polars-lazy, n2d-standard-16","offsetgroup":"polars-lazy, n2d-standard-16","orientation":"v","showlegend":true,"textposition":"auto","x":[4,7,6,2,3],"xaxis":"x","y":[11.27583646774292,19.500889619191486,18.51408116022746,3.3814821243286133,28.86030451456706],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=polars-lazy\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy, n2d-standard-32","marker":{"color":"#19d3f3","pattern":{"shape":"\u002f"}},"name":"polars-lazy, n2d-standard-32","offsetgroup":"polars-lazy, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[7,4,5,6,1,2,3],"xaxis":"x","y":[10.39676809310913,10.389480113983154,13.94202979405721,3.6897570292154946,33.80695390701294,3.2517149448394775,13.268091122309366],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"mean_execution_seconds"},"type":"log"},"legend":{"title":{"text":"system, instance_type"},"tracegroupgap":0},"title":{"text":"sf: 128"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('a1de20d0-c0b7-4571-8d23-d360d1ac8ff4');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>A lot of queries are missing from <code>ibis-polars</code> and <code>polars-lazy</code>. These are failing due to the high scale factor and limited memory on the instances.</p>
<p>Let’s look at a lower scale factor and my MacBooks (Polars tended to perform better on these):</p>
<div id="b8fd41a0" class="cell" data-execution_count="25">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb25" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb25-1">sf_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">64</span></span>
<span id="cb25-2">instances_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [</span>
<span id="cb25-3">    instance <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> instance <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> instance_types <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"laptop"</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> instance</span>
<span id="cb25-4">]</span>
<span id="cb25-5"></span>
<span id="cb25-6">timings_plot(agg, sf_filter, systems_filter, instances_filter, queries_filter, log_y)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="550f718b-ff8e-41e0-8484-21a26c47642b" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("550f718b-ff8e-41e0-8484-21a26c47642b")) {                    Plotly.newPlot(                        "550f718b-ff8e-41e0-8484-21a26c47642b",                        [{"alignmentgroup":"True","customdata":[["Apple M1 Max",12,32],["Apple M1 Max",12,32],["Apple M1 Max",12,32],["Apple M1 Max",12,32],["Apple M1 Max",12,32],["Apple M1 Max",12,32],["Apple M1 Max",12,32]],"hovertemplate":"system=ibis-polars\u003cbr\u003einstance_type=work laptop\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars, work laptop","marker":{"color":"#FFA15A","pattern":{"shape":"\\"}},"name":"ibis-polars, work laptop","offsetgroup":"ibis-polars, work laptop","orientation":"v","showlegend":true,"textposition":"auto","x":[5,6,7,4,1,2,3],"xaxis":"x","y":[13.21927841504415,4.801118771235148,9.317765474319458,5.086873133977254,110.36613933245341,1.3930803140004475,6.99468731880188],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["Apple M2 Max",12,96],["Apple M2 Max",12,96],["Apple M2 Max",12,96],["Apple M2 Max",12,96],["Apple M2 Max",12,96],["Apple M2 Max",12,96],["Apple M2 Max",12,96]],"hovertemplate":"system=ibis-polars\u003cbr\u003einstance_type=personal laptop\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars, personal laptop","marker":{"color":"#FFA15A","pattern":{"shape":"x"}},"name":"ibis-polars, personal laptop","offsetgroup":"ibis-polars, personal laptop","orientation":"v","showlegend":true,"textposition":"auto","x":[5,3,2,1,7,4,6],"xaxis":"x","y":[3.8612585067749023,3.482304255167643,1.8289570808410645,16.727041323979694,4.213795344034831,2.521452267964681,1.7339130242665608],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["Apple M1 Max",12,32],["Apple M1 Max",12,32],["Apple M1 Max",12,32],["Apple M1 Max",12,32],["Apple M1 Max",12,32],["Apple M1 Max",12,32],["Apple M1 Max",12,32]],"hovertemplate":"system=polars-lazy\u003cbr\u003einstance_type=work laptop\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy, work laptop","marker":{"color":"#19d3f3","pattern":{"shape":"\\"}},"name":"polars-lazy, work laptop","offsetgroup":"polars-lazy, work laptop","orientation":"v","showlegend":true,"textposition":"auto","x":[6,3,2,7,4,1,5],"xaxis":"x","y":[5.319633324940999,8.647685130437216,0.707722028096517,6.241333723068237,4.381483236948649,45.943869272867836,18.01548933982849],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["Apple M2 Max",12,96],["Apple M2 Max",12,96],["Apple M2 Max",12,96],["Apple M2 Max",12,96],["Apple M2 Max",12,96],["Apple M2 Max",12,96],["Apple M2 Max",12,96]],"hovertemplate":"system=polars-lazy\u003cbr\u003einstance_type=personal laptop\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy, personal laptop","marker":{"color":"#19d3f3","pattern":{"shape":"x"}},"name":"polars-lazy, personal laptop","offsetgroup":"polars-lazy, personal laptop","orientation":"v","showlegend":true,"textposition":"auto","x":[1,7,4,6,5,3,2],"xaxis":"x","y":[9.250827312469482,3.789229154586792,2.843586047490438,1.7952766418457031,4.006711959838867,3.5790963172912598,0.6358058452606201],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"mean_execution_seconds"},"type":"log"},"legend":{"title":{"text":"system, instance_type"},"tracegroupgap":0},"title":{"text":"sf: 64"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('550f718b-ff8e-41e0-8484-21a26c47642b');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>We see a similar pattern as above – some queries are a little faster on <code>ibis-polars</code>, though some are <strong>much</strong> slower. In particular queries 1 and 2 tend to have a lot of overhead.</p>
<div id="7661cf77" class="cell" data-execution_count="26">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb26" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb26-1">(</span>
<span id="cb26-2">    agg.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> sf_filter)</span>
<span id="cb26-3">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>].isin(systems_filter))</span>
<span id="cb26-4">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].isin(instances_filter))</span>
<span id="cb26-5">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>].isin(queries_filter))</span>
<span id="cb26-6">    .group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>)</span>
<span id="cb26-7">    .agg(</span>
<span id="cb26-8">        total_execution_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>agg[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mean_execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>(),</span>
<span id="cb26-9">        total_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._.count(),</span>
<span id="cb26-10">    )</span>
<span id="cb26-11">    .mutate(</span>
<span id="cb26-12">        seconds_per_query<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_execution_seconds"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span> ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_queries"</span>]</span>
<span id="cb26-13">    )</span>
<span id="cb26-14">)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="26">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> system      </span>┃<span style="font-weight: bold"> total_execution_seconds </span>┃<span style="font-weight: bold"> total_queries </span>┃<span style="font-weight: bold"> seconds_per_query </span>┃
┡━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │
├─────────────┼─────────────────────────┼───────────────┼───────────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">ibis-polars</span> │              <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">185.547665</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13.253405</span> │
│ <span style="color: #008000; text-decoration-color: #008000">polars-lazy</span> │              <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">115.157749</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8.225554</span> │
└─────────────┴─────────────────────────┴───────────────┴───────────────────┘
</pre>
</div>
</div>
<p>Let’s now compare all systems across a single instance type and query:</p>
<div id="782928a6" class="cell" data-execution_count="27">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb27" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb27-1">sf_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">128</span></span>
<span id="cb27-2">instances_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n2d-standard-32"</span>]</span>
<span id="cb27-3">systems_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> systems</span>
<span id="cb27-4">queries_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>]</span>
<span id="cb27-5"></span>
<span id="cb27-6">timings_plot(agg, sf_filter, systems_filter, instances_filter, queries_filter, log_y)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="3df91817-773e-4036-9857-6b7d743e9563" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("3df91817-773e-4036-9857-6b7d743e9563")) {                    Plotly.newPlot(                        "3df91817-773e-4036-9857-6b7d743e9563",                        [{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128]],"hovertemplate":"system=ibis-datafusion\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion, n2d-standard-32","marker":{"color":"#636efa","pattern":{"shape":"\u002f"}},"name":"ibis-datafusion, n2d-standard-32","offsetgroup":"ibis-datafusion, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[16.529266754786175],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128]],"hovertemplate":"system=ibis-datafusion-sql\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql, n2d-standard-32","marker":{"color":"#EF553B","pattern":{"shape":"\u002f"}},"name":"ibis-datafusion-sql, n2d-standard-32","offsetgroup":"ibis-datafusion-sql, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[12.949114084243774],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-32","marker":{"color":"#00cc96","pattern":{"shape":"\u002f"}},"name":"ibis-duckdb, n2d-standard-32","offsetgroup":"ibis-duckdb, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[5.938729286193848],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-32","marker":{"color":"#ab63fa","pattern":{"shape":"\u002f"}},"name":"ibis-duckdb-sql, n2d-standard-32","offsetgroup":"ibis-duckdb-sql, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[5.2171577612559],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128]],"hovertemplate":"system=ibis-polars\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars, n2d-standard-32","marker":{"color":"#FFA15A","pattern":{"shape":"\u002f"}},"name":"ibis-polars, n2d-standard-32","offsetgroup":"ibis-polars, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[62.19382929801941],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128]],"hovertemplate":"system=polars-lazy\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy, n2d-standard-32","marker":{"color":"#19d3f3","pattern":{"shape":"\u002f"}},"name":"polars-lazy, n2d-standard-32","offsetgroup":"polars-lazy, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[1],"xaxis":"x","y":[33.80695390701294],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"mean_execution_seconds"},"type":"log"},"legend":{"title":{"text":"system, instance_type"},"tracegroupgap":0},"title":{"text":"sf: 128"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('3df91817-773e-4036-9857-6b7d743e9563');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>And then the first 7 queries:</p>
<div id="0d936a1c" class="cell" data-execution_count="28">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb28" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb28-1">queries_filter <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">7</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb28-2"></span>
<span id="cb28-3">timings_plot(agg, sf_filter, systems_filter, instances_filter, queries_filter, log_y)</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="e09b85a5-ca55-41b9-8cc1-77d0f5785239" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("e09b85a5-ca55-41b9-8cc1-77d0f5785239")) {                    Plotly.newPlot(                        "e09b85a5-ca55-41b9-8cc1-77d0f5785239",                        [{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=ibis-datafusion\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion, n2d-standard-32","marker":{"color":"#636efa","pattern":{"shape":"\u002f"}},"name":"ibis-datafusion, n2d-standard-32","offsetgroup":"ibis-datafusion, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[5,2,1,7,4,3,6],"xaxis":"x","y":[7.471903959910075,2.2544215520222983,16.529266754786175,11.63159171740214,7.482565720876058,9.200567960739136,3.4388548533121743],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=ibis-datafusion-sql\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql, n2d-standard-32","marker":{"color":"#EF553B","pattern":{"shape":"\u002f"}},"name":"ibis-datafusion-sql, n2d-standard-32","offsetgroup":"ibis-datafusion-sql, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[6,4,7,1,3,2,5],"xaxis":"x","y":[2.7630774974823,3.730076869328817,17.029499053955078,12.949114084243774,9.455447912216187,6.693936745325725,9.587421178817749],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=ibis-duckdb\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb, n2d-standard-32","marker":{"color":"#00cc96","pattern":{"shape":"\u002f"}},"name":"ibis-duckdb, n2d-standard-32","offsetgroup":"ibis-duckdb, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[4,7,2,5,6,1,3],"xaxis":"x","y":[2.8200621604919434,7.479643742243449,0.6979877154032389,3.9903443654378257,2.341557025909424,5.938729286193848,3.935547669728597],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql, n2d-standard-32","marker":{"color":"#ab63fa","pattern":{"shape":"\u002f"}},"name":"ibis-duckdb-sql, n2d-standard-32","offsetgroup":"ibis-duckdb-sql, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[7,4,2,5,6,1,3],"xaxis":"x","y":[10.273284514745077,3.0171448389689126,1.0186904271443684,3.694347699483236,2.716411034266154,5.2171577612559,3.7939114570617676],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=ibis-polars\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars, n2d-standard-32","marker":{"color":"#FFA15A","pattern":{"shape":"\u002f"}},"name":"ibis-polars, n2d-standard-32","offsetgroup":"ibis-polars, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[6,4,7,1,3,2,5],"xaxis":"x","y":[4.244828224182129,11.461715777715048,12.255585193634033,62.19382929801941,27.108211437861126,5.905109326044719,13.99797248840332],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128],["AMD EPYC",32,128]],"hovertemplate":"system=polars-lazy\u003cbr\u003einstance_type=n2d-standard-32\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cbr\u003ecpu_type=%{customdata[0]}\u003cbr\u003ecpu_cores=%{customdata[1]}\u003cbr\u003ememory_gbs=%{customdata[2]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy, n2d-standard-32","marker":{"color":"#19d3f3","pattern":{"shape":"\u002f"}},"name":"polars-lazy, n2d-standard-32","offsetgroup":"polars-lazy, n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":[2,5,3,7,4,1,6],"xaxis":"x","y":[3.2517149448394775,13.94202979405721,13.268091122309366,10.39676809310913,10.389480113983154,33.80695390701294,3.6897570292154946],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"mean_execution_seconds"},"type":"log"},"legend":{"title":{"text":"system, instance_type"},"tracegroupgap":0},"title":{"text":"sf: 128"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('e09b85a5-ca55-41b9-8cc1-77d0f5785239');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<div class="callout callout-style-default callout-warning callout-titled" title="Lots of data, lots of takeaways">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Warning</span>Lots of data, lots of takeaways
</div>
</div>
<div class="callout-body-container callout-body">
<p>There is a lot of data and it’s easy to summarize and visualize it in a way that favors a given system. There’s a lot of missing data that needs to be accounted for, as it often indicates a query that failed due to memory pressure.</p>
<p>Each system has strengths and weaknesses. See the discussion section below.</p>
<p>See the <a href="https://ibis-bench.streamlit.app">Ibis benchmarking Streamlit app</a> for further analysis, or query the data yourself!</p>
</div>
</div>
</section>
<section id="failing-queries-due-to-memory-pressure" class="level3">
<h3 class="anchored" data-anchor-id="failing-queries-due-to-memory-pressure">Failing queries due to memory pressure</h3>
<p>Many queries fail due to memory pressure at higher scale factors with insufficient resources. Impressively, the exception here is DuckDB.</p>
<div id="2da2acc0" class="cell" data-execution_count="29">
<details class="code-fold">
<summary>Show code to get table of failing queries</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb29" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb29-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> failing_queries(agg, sf, instance_type):</span>
<span id="cb29-2">    failing <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb29-3">        t.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> sf)</span>
<span id="cb29-4">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> instance_type)</span>
<span id="cb29-5">        .group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>)</span>
<span id="cb29-6">        .agg(present_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>].collect().unique().sort())</span>
<span id="cb29-7">    )</span>
<span id="cb29-8">    failing <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb29-9">        failing.mutate(</span>
<span id="cb29-10">            failing_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t.distinct(on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>)[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>]</span>
<span id="cb29-11">            .collect()</span>
<span id="cb29-12">            .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> x: <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span>failing[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"present_queries"</span>].contains(x))</span>
<span id="cb29-13">        )</span>
<span id="cb29-14">        .mutate(</span>
<span id="cb29-15">            num_failing_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"failing_queries"</span>].length(),</span>
<span id="cb29-16">            num_successful_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"present_queries"</span>].length(),</span>
<span id="cb29-17">        )</span>
<span id="cb29-18">        .drop(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"present_queries"</span>)</span>
<span id="cb29-19">        .order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"num_failing_queries"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>)</span>
<span id="cb29-20">    )</span>
<span id="cb29-21"></span>
<span id="cb29-22">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> failing</span></code></pre></div></div>
</details>
</div>
<p>Let’s look at the failing queries on the largest <code>n2d</code> instance::</p>
<div id="e2d0bd3f" class="cell" data-execution_count="30">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb30" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb30-1">sf <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">128</span></span>
<span id="cb30-2">instance_type <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n2d-standard-32"</span></span>
<span id="cb30-3"></span>
<span id="cb30-4">failing <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> failing_queries(agg, sf, instance_type)</span>
<span id="cb30-5">failing</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="30">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> system              </span>┃<span style="font-weight: bold"> failing_queries                             </span>┃<span style="font-weight: bold"> num_failing_queries </span>┃<span style="font-weight: bold"> num_successful_queries </span>┃
┡━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">array&lt;int64&gt;</span>                                │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>                  │
├─────────────────────┼─────────────────────────────────────────────┼─────────────────────┼────────────────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb        </span> │ <span style="font-weight: bold">[]</span>                                          │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb-sql    </span> │ <span style="font-weight: bold">[]</span>                                          │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion-sql</span> │ <span style="font-weight: bold">[</span><span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span><span style="font-weight: bold">]</span>                                        │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21</span> │
│ <span style="color: #008000; text-decoration-color: #008000">polars-lazy        </span> │ <span style="font-weight: bold">[</span><span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span><span style="font-weight: bold">]</span>                                         │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion    </span> │ <span style="font-weight: bold">[</span><span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span><span style="font-weight: bold">]</span>                                │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-polars        </span> │ <span style="font-weight: bold">[</span><span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">15</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span><span style="font-weight: bold">]</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span> │
└─────────────────────┴─────────────────────────────────────────────┴─────────────────────┴────────────────────────┘
</pre>
</div>
</div>
<div id="dda4267f" class="cell" data-execution_count="31">
<details class="code-fold">
<summary>Show code to create a bar plot of the number of successful queries by system</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb31" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb31-1">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb31-2">    failing,</span>
<span id="cb31-3">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb31-4">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"num_successful_queries"</span>,</span>
<span id="cb31-5">    category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb31-6">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>: systems,</span>
<span id="cb31-7">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>: query_numbers,</span>
<span id="cb31-8">    },</span>
<span id="cb31-9">    color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb31-10">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"completed queries"</span>,</span>
<span id="cb31-11">)</span>
<span id="cb31-12">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="77fc68e0-065b-431f-b1e2-1e3b63632056" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("77fc68e0-065b-431f-b1e2-1e3b63632056")) {                    Plotly.newPlot(                        "77fc68e0-065b-431f-b1e2-1e3b63632056",                        [{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"ibis-datafusion","offsetgroup":"ibis-datafusion","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-datafusion"],"xaxis":"x","y":[19],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"ibis-datafusion-sql","offsetgroup":"ibis-datafusion-sql","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-datafusion-sql"],"xaxis":"x","y":[21],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"ibis-duckdb","offsetgroup":"ibis-duckdb","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-duckdb"],"xaxis":"x","y":[22],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"ibis-duckdb-sql","offsetgroup":"ibis-duckdb-sql","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-duckdb-sql"],"xaxis":"x","y":[22],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"ibis-polars","offsetgroup":"ibis-polars","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-polars"],"xaxis":"x","y":[11],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"polars-lazy","offsetgroup":"polars-lazy","orientation":"v","showlegend":true,"textposition":"auto","x":["polars-lazy"],"xaxis":"x","y":[21],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"system"},"categoryorder":"array","categoryarray":["ibis-datafusion","ibis-datafusion-sql","ibis-duckdb","ibis-duckdb-sql","ibis-polars","polars-lazy"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"num_successful_queries"}},"legend":{"title":{"text":"system"},"tracegroupgap":0},"title":{"text":"completed queries"},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('77fc68e0-065b-431f-b1e2-1e3b63632056');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>And the smallest:</p>
<div id="46ef36c2" class="cell" data-execution_count="32">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb32" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb32-1">instance_type <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n2d-standard-2"</span></span>
<span id="cb32-2"></span>
<span id="cb32-3">failing <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> failing_queries(agg, sf, instance_type)</span>
<span id="cb32-4">failing</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="32">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> system              </span>┃<span style="font-weight: bold"> failing_queries                                                           </span>┃<span style="font-weight: bold"> num_failing_queries </span>┃<span style="font-weight: bold"> num_successful_queries </span>┃
┡━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">array&lt;int64&gt;</span>                                                              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>                  │
├─────────────────────┼───────────────────────────────────────────────────────────────────────────┼─────────────────────┼────────────────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb        </span> │ <span style="font-weight: bold">[]</span>                                                                        │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb-sql    </span> │ <span style="font-weight: bold">[]</span>                                                                        │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion-sql</span> │ <span style="font-weight: bold">[</span><span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20</span><span style="font-weight: bold">]</span>                                                        │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion    </span> │ <span style="font-weight: bold">[</span><span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span><span style="font-weight: bold">]</span>                                                   │                   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span> │                     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span> │
│ <span style="color: #008000; text-decoration-color: #008000">polars-lazy        </span> │ <span style="font-weight: bold">[</span><span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21</span><span style="font-weight: bold">]</span>           │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18</span> │                      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-polars        </span> │ <span style="font-weight: bold">[</span><span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">15</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21</span>, <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span><span style="font-weight: bold">]</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20</span> │                      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │
└─────────────────────┴───────────────────────────────────────────────────────────────────────────┴─────────────────────┴────────────────────────┘
</pre>
</div>
</div>
<div id="ca4f11e4" class="cell" data-execution_count="33">
<details class="code-fold">
<summary>Show code to create a bar plot of the number of successful queries by system</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb33" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb33-1">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb33-2">    failing,</span>
<span id="cb33-3">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb33-4">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"num_successful_queries"</span>,</span>
<span id="cb33-5">    category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb33-6">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>: systems,</span>
<span id="cb33-7">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>: query_numbers,</span>
<span id="cb33-8">    },</span>
<span id="cb33-9">    color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb33-10">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"completed queries"</span>,</span>
<span id="cb33-11">)</span>
<span id="cb33-12">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="e6b603e8-b0ba-4967-921d-e5f9bbc13247" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("e6b603e8-b0ba-4967-921d-e5f9bbc13247")) {                    Plotly.newPlot(                        "e6b603e8-b0ba-4967-921d-e5f9bbc13247",                        [{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"ibis-datafusion","offsetgroup":"ibis-datafusion","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-datafusion"],"xaxis":"x","y":[16],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"ibis-datafusion-sql","offsetgroup":"ibis-datafusion-sql","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-datafusion-sql"],"xaxis":"x","y":[17],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"ibis-duckdb","offsetgroup":"ibis-duckdb","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-duckdb"],"xaxis":"x","y":[22],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"ibis-duckdb-sql","offsetgroup":"ibis-duckdb-sql","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-duckdb-sql"],"xaxis":"x","y":[22],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"ibis-polars","offsetgroup":"ibis-polars","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-polars"],"xaxis":"x","y":[2],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"polars-lazy","offsetgroup":"polars-lazy","orientation":"v","showlegend":true,"textposition":"auto","x":["polars-lazy"],"xaxis":"x","y":[4],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"system"},"categoryorder":"array","categoryarray":["ibis-datafusion","ibis-datafusion-sql","ibis-duckdb","ibis-duckdb-sql","ibis-polars","polars-lazy"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"num_successful_queries"}},"legend":{"title":{"text":"system"},"tracegroupgap":0},"title":{"text":"completed queries"},"barmode":"relative"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('e6b603e8-b0ba-4967-921d-e5f9bbc13247');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>A lot of queries are failing on the smallest instance due to memory pressure.</p>
<p>We can create a single visualization across the <code>n2d</code> instances:</p>
<div id="2a2f3a58" class="cell" data-execution_count="34">
<details class="code-fold">
<summary>Show code to create a bar plot of the number of successful queries by system and instance type</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb34" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb34-1">failing <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>).agg(</span>
<span id="cb34-2">    total_time<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>(),</span>
<span id="cb34-3">    present_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>].collect().unique().sort(),</span>
<span id="cb34-4">)</span>
<span id="cb34-5">failing <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb34-6">    failing.mutate(</span>
<span id="cb34-7">        failing_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t.distinct(on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>)[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>]</span>
<span id="cb34-8">        .collect()</span>
<span id="cb34-9">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> x: <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">~</span>failing[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"present_queries"</span>].contains(x)),</span>
<span id="cb34-10">    )</span>
<span id="cb34-11">    .mutate(</span>
<span id="cb34-12">        num_failing_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"failing_queries"</span>].length(),</span>
<span id="cb34-13">        num_successful_queries<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"present_queries"</span>].length(),</span>
<span id="cb34-14">    )</span>
<span id="cb34-15">    .drop(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"present_queries"</span>)</span>
<span id="cb34-16">    .relocate(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"failing_queries"</span>)</span>
<span id="cb34-17">    .order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"num_failing_queries"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>)</span>
<span id="cb34-18">)</span>
<span id="cb34-19">failing <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> failing.join(instance_details, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>)</span>
<span id="cb34-20">failing <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb34-21">    failing.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(</span>
<span id="cb34-22">        (failing[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">128</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> (failing[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>].startswith(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n2d-"</span>))</span>
<span id="cb34-23">    )</span>
<span id="cb34-24">).order_by(ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"memory_gbs"</span>))</span>
<span id="cb34-25"></span>
<span id="cb34-26">c <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb34-27">    failing,</span>
<span id="cb34-28">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb34-29">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"num_successful_queries"</span>,</span>
<span id="cb34-30">    color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>,</span>
<span id="cb34-31">    barmode<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"group"</span>,</span>
<span id="cb34-32">    hover_data<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"cpu_cores"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"memory_gbs"</span>],</span>
<span id="cb34-33">    category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb34-34">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>: systems,</span>
<span id="cb34-35">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"instance_type"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">reversed</span>(</span>
<span id="cb34-36">            [instance <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> instance <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> instance_types <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">if</span> instance.startswith(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n2d"</span>)]</span>
<span id="cb34-37">        ),</span>
<span id="cb34-38">    },</span>
<span id="cb34-39">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"completed queries"</span>,</span>
<span id="cb34-40">)</span>
<span id="cb34-41">c</span></code></pre></div></div>
</details>
<div class="cell-output cell-output-display">
<div>                            <div id="c9948a0d-c7cf-4ac9-90f9-69eb1595d232" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("c9948a0d-c7cf-4ac9-90f9-69eb1595d232")) {                    Plotly.newPlot(                        "c9948a0d-c7cf-4ac9-90f9-69eb1595d232",                        [{"alignmentgroup":"True","customdata":[[32,128],[32,128],[32,128],[32,128],[32,128],[32,128]],"hovertemplate":"instance_type=n2d-standard-32\u003cbr\u003esystem=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cbr\u003ememory_gbs=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"n2d-standard-32","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"n2d-standard-32","offsetgroup":"n2d-standard-32","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-polars","ibis-duckdb-sql","ibis-duckdb","ibis-datafusion","polars-lazy","ibis-datafusion-sql"],"xaxis":"x","y":[11,22,22,19,21,21],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[16,64],[16,64],[16,64],[16,64],[16,64],[16,64]],"hovertemplate":"instance_type=n2d-standard-16\u003cbr\u003esystem=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cbr\u003ememory_gbs=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"n2d-standard-16","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"n2d-standard-16","offsetgroup":"n2d-standard-16","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-polars","polars-lazy","ibis-duckdb-sql","ibis-duckdb","ibis-datafusion","ibis-datafusion-sql"],"xaxis":"x","y":[7,17,22,22,18,21],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[8,32],[8,32],[8,32],[8,32],[8,32],[8,32]],"hovertemplate":"instance_type=n2d-standard-8\u003cbr\u003esystem=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cbr\u003ememory_gbs=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"n2d-standard-8","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"n2d-standard-8","offsetgroup":"n2d-standard-8","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-polars","polars-lazy","ibis-datafusion","ibis-datafusion-sql","ibis-duckdb-sql","ibis-duckdb"],"xaxis":"x","y":[3,13,18,21,22,22],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[4,16],[4,16],[4,16],[4,16],[4,16],[4,16]],"hovertemplate":"instance_type=n2d-standard-4\u003cbr\u003esystem=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cbr\u003ememory_gbs=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"n2d-standard-4","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"n2d-standard-4","offsetgroup":"n2d-standard-4","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-polars","polars-lazy","ibis-datafusion","ibis-datafusion-sql","ibis-duckdb-sql","ibis-duckdb"],"xaxis":"x","y":[2,8,17,18,22,22],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","customdata":[[2,8],[2,8],[2,8],[2,8],[2,8],[2,8]],"hovertemplate":"instance_type=n2d-standard-2\u003cbr\u003esystem=%{x}\u003cbr\u003enum_successful_queries=%{y}\u003cbr\u003ecpu_cores=%{customdata[0]}\u003cbr\u003ememory_gbs=%{customdata[1]}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"n2d-standard-2","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"n2d-standard-2","offsetgroup":"n2d-standard-2","orientation":"v","showlegend":true,"textposition":"auto","x":["ibis-polars","polars-lazy","ibis-datafusion","ibis-datafusion-sql","ibis-duckdb-sql","ibis-duckdb"],"xaxis":"x","y":[2,4,16,17,22,22],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"system"},"categoryorder":"array","categoryarray":["ibis-datafusion","ibis-datafusion-sql","ibis-duckdb","ibis-duckdb-sql","ibis-polars","polars-lazy"]},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"num_successful_queries"}},"legend":{"title":{"text":"instance_type"},"tracegroupgap":0},"title":{"text":"completed queries"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('c9948a0d-c7cf-4ac9-90f9-69eb1595d232');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
<p>Within each system, from left to right, we have decreasing resources (vCPUs and memory). We can see how each system performs on the same queries with different resources.</p>
<div class="callout callout-style-default callout-warning callout-titled" title="Data is aggregated">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Warning</span>Data is aggregated
</div>
</div>
<div class="callout-body-container callout-body">
<p>Keep in mind data is aggregated over three runs of each query. For DuckDB, there was actually a single failure on the smallest instance for query 9, out of six runs across the two systems, but this does not appear above because we are checking for the success of the query in any of the three runs per configuration.</p>
</div>
</div>
</section>
</section>
<section id="discussion-and-reproducibility" class="level2">
<h2 class="anchored" data-anchor-id="discussion-and-reproducibility">Discussion and reproducibility</h2>
<p>Benchmarking is fraught: it’s easy to get wrong and ship your bias in the results. We don’t want to end up as <a href="https://hannes.muehleisen.org/publications/DBTEST2018-performance-testing.pdf">Figure 1 in “Fair Benchmarking Considered Difficult: Common Pitfalls In Database Performance Testing”</a>:</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/ibis-bench/figure1.png" class="img-fluid figure-img"></p>
<figcaption>Figure 1</figcaption>
</figure>
</div>
<p>If you have any questions or concerns, feel free to <a href="https://github.com/lostmygithubaccount/ibis-bench/issues/new">open an issue</a> or comment on this post below.</p>
<section id="which-system-is-best" class="level3">
<h3 class="anchored" data-anchor-id="which-system-is-best">Which system is best?</h3>
<p>Trick question! It depends on your use case. DuckDB is a simple, performant in-process database with an on-disk file format (SQLite for OLAP). DataFusion is an extensible query engine and is often used for building databases or query engines. Polars is an OLAP query engine with a Python dataframe API that can be used as a more performant alternative to pandas.</p>
<p>All three make great Ibis backends and you can switch between them in a single line of code. This lets you write your code once and run it on the engine that’s best for your use case. If a better engine comes along you’ll likely be able to use that too. And you can scale up and out across the 20+ backends Ibis supports as needed.</p>
<p>TPC-H is a decent benchmark <em>for what it benchmarks, which is limited</em>. We’re not running window functions, doing timeseries analysis, or feature engineering for machine learning. We’re not using nested data types. We’re not performing regexes or using LLMs in UDFs…</p>
<p>It’s easy to summarize and visualize benchmarking data in a way that favors a given system. You should favor the system that works best for your use case.</p>
</section>
<section id="performance-converges-over-time" class="level3">
<h3 class="anchored" data-anchor-id="performance-converges-over-time">Performance converges over time</h3>
<p>Let’s look at some quotes from <a href="https://motherduck.com/blog/perf-is-not-enough">“Perf is not enough”</a> by Jordan Tigani of MotherDuck:</p>
<blockquote class="blockquote">
<p>If you take a bunch of databases, all actively maintained, and iterate them out a few years, <strong>performance is going to converge</strong>. If Clickhouse is applying a technique that gives it an advantage for scan speed today, Snowflake will likely have that within a year or two. If Snowflake adds incrementally materialized views, BigQuery will soon follow. It is unlikely that important performance differences will persist over time.</p>
<p>As clever as the engineers working for any of these companies are, none of them possess any magic incantations or things that cannot be replicated elsewhere. Each database uses a different bag of tricks in order to get good performance. One might compile queries to machine code, another might cache data on local SSDs, and a third might use specialized network hardware to do shuffles. <strong>Given time, all of these techniques can be implemented by anyone. If they work well, they likely will show up everywhere.</strong></p>
</blockquote>
<p>This is extra true for open source databases (or query engines). If DuckDB adds a feature that improves performance, it’s likely that DataFusion and Polars will follow suit – they can go read the source code and specific commits to see how it was done.</p>
</section>
<section id="reproducing-the-benchmark" class="level3">
<h3 class="anchored" data-anchor-id="reproducing-the-benchmark">Reproducing the benchmark</h3>
<p>The source code for <a href="https://github.com/lostmygithubaccount/ibis-bench/tree/v2.0.0">is available on GitHub</a>.</p>
<section id="a-tpc-h-benchmark-on-6-systems-in-3-commands" class="level4">
<h4 class="anchored" data-anchor-id="a-tpc-h-benchmark-on-6-systems-in-3-commands">A TPC-H benchmark on 6 systems in 3 commands</h4>
<p>First install <code>ibis-bench</code>:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb35" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb35-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install ibis-bench</span></code></pre></div></div>
<p>Then generate the TPC-H data:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb36" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb36-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">bench</span> gen-data <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-s</span> 1</span></code></pre></div></div>
<p>Finally run the benchmark:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb37" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb37-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">bench</span> run <span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">-s</span> 1 ibis-duckdb ibis-duckdb-sql ibis-datafusion ibis-datafusion-sql ibis-polars polars-lazy</span></code></pre></div></div>
<p>Congratulations! You’ve run a TPC-H benchmark on DuckDB (Ibis dataframe code and SQL), DataFusion (Ibis dataframe code and SQL), and Polars (dataframe code via Ibis and native Polars).</p>
</section>
<section id="what-just-happened" class="level4">
<h4 class="anchored" data-anchor-id="what-just-happened">What just happened?</h4>
<p>This will generate TPC-H data at scale factor 1 as Parquet files in the <code>tpch_data</code> directory:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb38" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb38-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">tpch_data</span></span>
<span id="cb38-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> parquet</span>
<span id="cb38-3">    <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> sf=1</span>
<span id="cb38-4">        <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> n=1</span>
<span id="cb38-5">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> customer</span>
<span id="cb38-6">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>   └── 0000.parquet</span>
<span id="cb38-7">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> lineitem</span>
<span id="cb38-8">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>   └── 0000.parquet</span>
<span id="cb38-9">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> nation</span>
<span id="cb38-10">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>   └── 0000.parquet</span>
<span id="cb38-11">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> orders</span>
<span id="cb38-12">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>   └── 0000.parquet</span>
<span id="cb38-13">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> part</span>
<span id="cb38-14">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>   └── 0000.parquet</span>
<span id="cb38-15">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> partsupp</span>
<span id="cb38-16">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>   └── 0000.parquet</span>
<span id="cb38-17">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">├──</span> region</span>
<span id="cb38-18">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">│</span>   └── 0000.parquet</span>
<span id="cb38-19">            <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> supplier</span>
<span id="cb38-20">                <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">└──</span> 0000.parquet</span></code></pre></div></div>
<p>The scale factor is roughly the size of data <strong>in memory</strong> in gigabytes (GBs). The size of data on disk, however, is smaller because Parquet is compressed. We can take a look at the size of the data:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb39" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb39-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">384M</span>    tpch_data/parquet/sf=1/n=1</span>
<span id="cb39-2"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">262M</span>    tpch_data/parquet/sf=1/n=1/lineitem</span>
<span id="cb39-3"> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">59M</span>    tpch_data/parquet/sf=1/n=1/orders</span>
<span id="cb39-4"> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">12M</span>    tpch_data/parquet/sf=1/n=1/customer</span>
<span id="cb39-5"> <span class="ex" style="color: null;
background-color: null;
font-style: inherit;">43M</span>    tpch_data/parquet/sf=1/n=1/partsupp</span>
<span id="cb39-6"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">6.6M</span>    tpch_data/parquet/sf=1/n=1/part</span>
<span id="cb39-7"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">788K</span>    tpch_data/parquet/sf=1/n=1/supplier</span>
<span id="cb39-8"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">4.0K</span>    tpch_data/parquet/sf=1/n=1/nation</span>
<span id="cb39-9"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">4.0K</span>    tpch_data/parquet/sf=1/n=1/region</span></code></pre></div></div>
<p>We can see the total size is 0.38 GB and the size of the tables – <code>lineitem</code> is by far the largest.</p>
<p>Using <code>bench run</code> results in a <code>results_data</code> directory with the results of the queries and a <code>bench_logs_v2</code> directory with the logs of the benchmark run.</p>
</section>
<section id="analyzing-the-results" class="level4">
<h4 class="anchored" data-anchor-id="analyzing-the-results">Analyzing the results</h4>
<p>We can use Ibis to load and analyze the log data:</p>
<div id="b71f6e75" class="cell" data-execution_count="35">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb40" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb40-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb40-2"></span>
<span id="cb40-3">ibis.options.interactive <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span>
<span id="cb40-4">ibis.options.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">repr</span>.interactive.max_rows <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span></span>
<span id="cb40-5">ibis.options.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">repr</span>.interactive.max_columns <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span></span>
<span id="cb40-6"></span>
<span id="cb40-7">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_json(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"bench_logs_v*/raw_json/file_id=*.json"</span>).relocate(</span>
<span id="cb40-8">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sf"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span></span>
<span id="cb40-9">)</span>
<span id="cb40-10">t</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="35">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> system              </span>┃<span style="font-weight: bold"> sf    </span>┃<span style="font-weight: bold"> query_number </span>┃<span style="font-weight: bold"> execution_seconds </span>┃<span style="font-weight: bold"> session_id                           </span>┃<span style="font-weight: bold"> instance_type </span>┃<span style="font-weight: bold"> timestamp                  </span>┃<span style="font-weight: bold"> n_partitions </span>┃<span style="font-weight: bold"> file_type </span>┃<span style="font-weight: bold"> file_id                                   </span>┃
┡━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">uuid</span>                                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">json</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                                    │
├─────────────────────┼───────┼──────────────┼───────────────────┼──────────────────────────────────────┼───────────────┼────────────────────────────┼──────────────┼───────────┼───────────────────────────────────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion-sql</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.076600</span> │ 0b931439-5670-4a77-89b0-d8b7c45e6eb7 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>          │ <span style="color: #008000; text-decoration-color: #008000">2024-06-13T16:09:34.476397</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">00218347-a4cd-4590-a502-8cf79f4e87c9.json</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion-sql</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.165074</span> │ 0b931439-5670-4a77-89b0-d8b7c45e6eb7 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>          │ <span style="color: #008000; text-decoration-color: #008000">2024-06-13T16:09:35.376753</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">01089668-608c-4551-ae65-6d98d69f959b.json</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-polars        </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.075944</span> │ 0b931439-5670-4a77-89b0-d8b7c45e6eb7 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>          │ <span style="color: #008000; text-decoration-color: #008000">2024-06-13T16:09:36.956001</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">02a991bd-797a-4c08-83de-c1b537f713fe.json</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion    </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.144007</span> │ 0b931439-5670-4a77-89b0-d8b7c45e6eb7 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>          │ <span style="color: #008000; text-decoration-color: #008000">2024-06-13T16:09:32.297647</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">02bd900a-3c0a-4871-b651-1690f11a81ab.json</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion-sql</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.067048</span> │ 0b931439-5670-4a77-89b0-d8b7c45e6eb7 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>          │ <span style="color: #008000; text-decoration-color: #008000">2024-06-13T16:09:33.699368</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">08490a6b-e1ab-482c-83bc-85469c6b96a3.json</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb        </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.160302</span> │ 0b931439-5670-4a77-89b0-d8b7c45e6eb7 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>          │ <span style="color: #008000; text-decoration-color: #008000">2024-06-13T16:09:27.316339</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">parquet  </span> │ <span style="color: #008000; text-decoration-color: #008000">08b92577-8150-4040-bceb-9316da7bfaf4.json</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                   │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                          │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                                         │
└─────────────────────┴───────┴──────────────┴───────────────────┴──────────────────────────────────────┴───────────────┴────────────────────────────┴──────────────┴───────────┴───────────────────────────────────────────┘
</pre>
</div>
</div>
<p>We can check the total execution time for each system:</p>
<div id="a00b0895" class="cell" data-execution_count="36">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb41" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb41-1">t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>).agg(total_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()).order_by(</span>
<span id="cb41-2">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"total_seconds"</span></span>
<span id="cb41-3">)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="36">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> system              </span>┃<span style="font-weight: bold"> total_seconds </span>┃
┡━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>              │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │
├─────────────────────┼───────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion-sql</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.006620</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb-sql    </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.067606</span> │
│ <span style="color: #008000; text-decoration-color: #008000">polars-lazy        </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.086350</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-polars        </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.168417</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-duckdb        </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.495270</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ibis-datafusion    </span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.529014</span> │
└─────────────────────┴───────────────┘
</pre>
</div>
</div>
<p>We can visualize the results:</p>
<div id="2fa3f9cb" class="cell" data-execution_count="37">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb42" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb42-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> plotly.express <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> px</span>
<span id="cb42-2"></span>
<span id="cb42-3">px.defaults.template <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"plotly_dark"</span></span>
<span id="cb42-4"></span>
<span id="cb42-5">agg <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>).agg(</span>
<span id="cb42-6">    mean_execution_seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"execution_seconds"</span>].mean(),</span>
<span id="cb42-7">)</span>
<span id="cb42-8"></span>
<span id="cb42-9">chart <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> px.bar(</span>
<span id="cb42-10">    agg,</span>
<span id="cb42-11">    x<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"query_number"</span>,</span>
<span id="cb42-12">    y<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"mean_execution_seconds"</span>,</span>
<span id="cb42-13">    color<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>,</span>
<span id="cb42-14">    barmode<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"group"</span>,</span>
<span id="cb42-15">    title<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Mean execution time by query"</span>,</span>
<span id="cb42-16">    category_orders<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{</span>
<span id="cb42-17">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sorted</span>(t.select(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>).distinct().to_pandas()[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"system"</span>].tolist())</span>
<span id="cb42-18">    },</span>
<span id="cb42-19">)</span>
<span id="cb42-20">chart</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<div>                            <div id="a420bdb4-635f-4cce-8c67-be1f489fed54" class="plotly-graph-div" style="height:525px; width:100%;"></div>            <script type="text/javascript">                require(["plotly"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById("a420bdb4-635f-4cce-8c67-be1f489fed54")) {                    Plotly.newPlot(                        "a420bdb4-635f-4cce-8c67-be1f489fed54",                        [{"alignmentgroup":"True","hovertemplate":"system=ibis-datafusion\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion","marker":{"color":"#636efa","pattern":{"shape":""}},"name":"ibis-datafusion","offsetgroup":"ibis-datafusion","orientation":"v","showlegend":true,"textposition":"auto","x":[4,1,20,12,3,6,2,18,10,9,5,17,14,11,15,8,7,19,13],"xaxis":"x","y":[0.08527374267578125,0.1856980323791504,0.09459996223449707,0.09185004234313965,0.11346817016601562,0.060302019119262695,0.11647200584411621,0.21512389183044434,0.14400672912597656,0.25276899337768555,0.16351318359375,0.1508030891418457,0.05874824523925781,0.05636405944824219,0.09078383445739746,0.17679595947265625,0.21130585670471191,0.18033623695373535,0.08080005645751953],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=ibis-datafusion-sql\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-datafusion-sql","marker":{"color":"#EF553B","pattern":{"shape":""}},"name":"ibis-datafusion-sql","offsetgroup":"ibis-datafusion-sql","orientation":"v","showlegend":true,"textposition":"auto","x":[1,21,4,8,7,13,19,11,22,15,5,17,14,9,10,18,2,12,20,6,3],"xaxis":"x","y":[0.16572284698486328,0.16507411003112793,0.05468416213989258,0.10038995742797852,0.11693096160888672,0.08853602409362793,0.10790419578552246,0.04051613807678223,0.04712080955505371,0.08836483955383301,0.09019279479980469,0.1384258270263672,0.05418872833251953,0.14054203033447266,0.11253213882446289,0.16417670249938965,0.06422877311706543,0.0766000747680664,0.08157896995544434,0.04186129570007324,0.06704831123352051],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=ibis-duckdb\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb","marker":{"color":"#00cc96","pattern":{"shape":""}},"name":"ibis-duckdb","offsetgroup":"ibis-duckdb","orientation":"v","showlegend":true,"textposition":"auto","x":[17,14,9,5,22,16,11,15,8,13,19,7,1,21,4,3,6,20,12,10,18,2],"xaxis":"x","y":[0.0946509838104248,0.07600784301757812,0.15702605247497559,0.13889694213867188,0.05627894401550293,0.050956010818481445,0.046521902084350586,0.10355687141418457,0.17993402481079102,0.08141613006591797,0.10899090766906738,0.22138595581054688,0.11120414733886719,0.18820619583129883,0.10530900955200195,0.11275124549865723,0.05837392807006836,0.09756278991699219,0.08757591247558594,0.16030216217041016,0.19187211990356445,0.06649017333984375],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=ibis-duckdb-sql\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-duckdb-sql","marker":{"color":"#ab63fa","pattern":{"shape":""}},"name":"ibis-duckdb-sql","offsetgroup":"ibis-duckdb-sql","orientation":"v","showlegend":true,"textposition":"auto","x":[7,19,8,13,20,6,12,3,1,21,14,5,17,9,11,16,15,22,2,18,10,4],"xaxis":"x","y":[0.1173713207244873,0.10991191864013672,0.10016512870788574,0.11796116828918457,0.0834193229675293,0.0639650821685791,0.1077890396118164,0.08614110946655273,0.0995640754699707,0.18464303016662598,0.07589483261108398,0.08590102195739746,0.0904390811920166,0.1208350658416748,0.03215789794921875,0.040780067443847656,0.11138105392456055,0.052903175354003906,0.04390978813171387,0.14215707778930664,0.13234424591064453,0.06797170639038086],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=ibis-polars\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"ibis-polars","marker":{"color":"#FFA15A","pattern":{"shape":""}},"name":"ibis-polars","offsetgroup":"ibis-polars","orientation":"v","showlegend":true,"textposition":"auto","x":[12,3,6,8,7,19,4,18,2,10,9,5,1],"xaxis":"x","y":[0.0759439468383789,0.08300375938415527,0.04763507843017578,0.13718080520629883,0.14421916007995605,0.24024128913879395,0.061795949935913086,0.4647057056427002,0.062339067459106445,0.09395790100097656,0.375777006149292,0.0971367359161377,0.2844810485839844],"yaxis":"y","type":"bar"},{"alignmentgroup":"True","hovertemplate":"system=polars-lazy\u003cbr\u003equery_number=%{x}\u003cbr\u003emean_execution_seconds=%{y}\u003cextra\u003e\u003c\u002fextra\u003e","legendgroup":"polars-lazy","marker":{"color":"#19d3f3","pattern":{"shape":""}},"name":"polars-lazy","offsetgroup":"polars-lazy","orientation":"v","showlegend":true,"textposition":"auto","x":[1,21,4,13,8,19,7,11,15,16,22,14,9,17,5,10,18,2,6,12,3,20],"xaxis":"x","y":[0.14653277397155762,0.4784820079803467,0.04979085922241211,0.07697010040283203,0.08124113082885742,0.09669184684753418,0.07666802406311035,0.060350894927978516,0.0383148193359375,0.027947187423706055,0.034562110900878906,0.04080796241760254,0.2673678398132324,0.07406091690063477,0.06595110893249512,0.08218693733215332,0.10887598991394043,0.02666497230529785,0.04187202453613281,0.09165000915527344,0.05814409255981445,0.06121683120727539],"yaxis":"y","type":"bar"}],                        {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"margin":{"b":0,"l":0,"r":0,"t":30},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"xaxis":{"anchor":"y","domain":[0.0,1.0],"title":{"text":"query_number"}},"yaxis":{"anchor":"x","domain":[0.0,1.0],"title":{"text":"mean_execution_seconds"}},"legend":{"title":{"text":"system"},"tracegroupgap":0},"title":{"text":"Mean execution time by query"},"barmode":"group"},                        {"responsive": true}                    ).then(function(){
                            
var gd = document.getElementById('a420bdb4-635f-4cce-8c67-be1f489fed54');
var x = new MutationObserver(function (mutations, observer) {{
        var display = window.getComputedStyle(gd).display;
        if (!display || display === 'none') {{
            console.log([gd, 'removed!']);
            Plotly.purge(gd);
            observer.disconnect();
        }}
}});

// Listen for the removal of the full notebook cells
var notebookContainer = gd.closest('#notebook-container');
if (notebookContainer) {{
    x.observe(notebookContainer, {childList: true});
}}

// Listen for the clearing of the current output cell
var outputEl = gd.closest('.output');
if (outputEl) {{
    x.observe(outputEl, {childList: true});
}}

                        })                };                });            </script>        </div>
</div>
</div>
</section>
<section id="what-did-we-run-and-measure-exactly" class="level4">
<h4 class="anchored" data-anchor-id="what-did-we-run-and-measure-exactly">What did we run and measure, exactly?</h4>
<p>We can import <code>ibis_bench</code> as a library and read in the TPC-H tables:</p>
<div id="1a13c9ac" class="cell" data-execution_count="38">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb43" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb43-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb43-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> polars <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pl</span>
<span id="cb43-3"></span>
<span id="cb43-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> datetime <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> date</span>
<span id="cb43-5"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis_bench.utils.read_data <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> get_ibis_tables, get_polars_tables</span>
<span id="cb43-6"></span>
<span id="cb43-7">sf <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span></span></code></pre></div></div>
</div>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-1-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-1" aria-controls="tabset-1-1" aria-selected="true" href="">Ibis (DuckDB)</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-2" aria-controls="tabset-1-2" aria-selected="false" href="">Ibis (DataFusion)</a></li><li class="nav-item"><a class="nav-link" id="tabset-1-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-3" aria-controls="tabset-1-3" aria-selected="false" href="">Ibis (Polars)</a></li></ul>
<div class="tab-content">
<div id="tabset-1-1" class="tab-pane active" aria-labelledby="tabset-1-1-tab">
<div id="433ef1b7" class="cell" data-execution_count="39">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb44" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb44-1">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"duckdb://"</span>)</span>
<span id="cb44-2"></span>
<span id="cb44-3">(customer, lineitem, nation, orders, part, partsupp, region, supplier) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb44-4">    get_ibis_tables(sf<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>sf, con<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>con)</span>
<span id="cb44-5">)</span></code></pre></div></div>
</div>
<div id="158ed122" class="cell" data-execution_count="41">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb45" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb45-1">lineitem.order_by(ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>), ibis.asc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_partkey"</span>))</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="41">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> l_orderkey </span>┃<span style="font-weight: bold"> l_partkey </span>┃<span style="font-weight: bold"> l_suppkey </span>┃<span style="font-weight: bold"> l_linenumber </span>┃<span style="font-weight: bold"> l_quantity     </span>┃<span style="font-weight: bold"> l_extendedprice </span>┃<span style="font-weight: bold"> l_discount     </span>┃<span style="font-weight: bold"> l_tax          </span>┃<span style="font-weight: bold"> l_returnflag </span>┃<span style="font-weight: bold"> l_linestatus </span>┃<span style="font-weight: bold"> l_shipdate </span>┃<span style="font-weight: bold"> l_commitdate </span>┃<span style="font-weight: bold"> l_receiptdate </span>┃<span style="font-weight: bold"> l_shipinstruct    </span>┃<span style="font-weight: bold"> l_shipmode </span>┃<span style="font-weight: bold"> l_comment                                </span>┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                                   │
├────────────┼───────────┼───────────┼──────────────┼────────────────┼─────────────────┼────────────────┼────────────────┼──────────────┼──────────────┼────────────┼──────────────┼───────────────┼───────────────────┼────────────┼──────────────────────────────────────────┤
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6000000</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32255</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2256</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.00</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5936.25</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.03</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-11-02</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-11-19</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-12-01</span>    │ <span style="color: #008000; text-decoration-color: #008000">TAKE BACK RETURN </span> │ <span style="color: #008000; text-decoration-color: #008000">MAIL      </span> │ <span style="color: #008000; text-decoration-color: #008000">riously pe                              </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6000000</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">96127</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6128</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">28.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">31447.36</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.01</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.02</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-09-22</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-10-01</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-10-21</span>    │ <span style="color: #008000; text-decoration-color: #008000">NONE             </span> │ <span style="color: #008000; text-decoration-color: #008000">AIR       </span> │ <span style="color: #008000; text-decoration-color: #008000">pecial excuses nag evenly f             </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999975</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6452</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1453</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7.00</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9509.15</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.00</span> │ <span style="color: #008000; text-decoration-color: #008000">A           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-11-02</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-23</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-11-19</span>    │ <span style="color: #008000; text-decoration-color: #008000">DELIVER IN PERSON</span> │ <span style="color: #008000; text-decoration-color: #008000">SHIP      </span> │ <span style="color: #008000; text-decoration-color: #008000">ffily along the sly                     </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999975</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7272</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2273</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">37736.64</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.07</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.01</span> │ <span style="color: #008000; text-decoration-color: #008000">R           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-10-07</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-30</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-10-21</span>    │ <span style="color: #008000; text-decoration-color: #008000">COLLECT COD      </span> │ <span style="color: #008000; text-decoration-color: #008000">REG AIR   </span> │ <span style="color: #008000; text-decoration-color: #008000">ld deposits aga                         </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999975</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">37131</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2138</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19226.34</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.01</span> │ <span style="color: #008000; text-decoration-color: #008000">A           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-11-17</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-08-28</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-12-08</span>    │ <span style="color: #008000; text-decoration-color: #008000">DELIVER IN PERSON</span> │ <span style="color: #008000; text-decoration-color: #008000">FOB       </span> │ <span style="color: #008000; text-decoration-color: #008000">counts cajole evenly? sly orbits boost f</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999974</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10463</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5466</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">46.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">63179.16</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.08</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.06</span> │ <span style="color: #008000; text-decoration-color: #008000">R           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-16</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-21</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-10-02</span>    │ <span style="color: #008000; text-decoration-color: #008000">COLLECT COD      </span> │ <span style="color: #008000; text-decoration-color: #008000">RAIL      </span> │ <span style="color: #008000; text-decoration-color: #008000">se slyly alo                            </span> │
│          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                                        │
└────────────┴───────────┴───────────┴──────────────┴────────────────┴─────────────────┴────────────────┴────────────────┴──────────────┴──────────────┴────────────┴──────────────┴───────────────┴───────────────────┴────────────┴──────────────────────────────────────────┘
</pre>
</div>
</div>
<div id="fa046a2f" class="cell" data-execution_count="42">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb46" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb46-1">lineitem.count()</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
<div class="cell-output cell-output-display" data-execution_count="42">
<div class="ansi-escaped-output">
<pre>┌─────────┐
│ <span class="ansi-cyan-fg ansi-bold">6001215</span> │
└─────────┘</pre>
</div>
</div>
</div>
</div>
<div id="tabset-1-2" class="tab-pane" aria-labelledby="tabset-1-2-tab">
<div id="f55bfce4" class="cell" data-execution_count="43">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb47" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb47-1">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"datafusion://"</span>)</span>
<span id="cb47-2"></span>
<span id="cb47-3">(customer, lineitem, nation, orders, part, partsupp, region, supplier) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb47-4">    get_ibis_tables(sf<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>sf, con<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>con)</span>
<span id="cb47-5">)</span></code></pre></div></div>
</div>
<div id="a44a2da2" class="cell" data-execution_count="44">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb48" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb48-1">lineitem.order_by(ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>), ibis.asc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_partkey"</span>))</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="44">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> l_orderkey </span>┃<span style="font-weight: bold"> l_partkey </span>┃<span style="font-weight: bold"> l_suppkey </span>┃<span style="font-weight: bold"> l_linenumber </span>┃<span style="font-weight: bold"> l_quantity     </span>┃<span style="font-weight: bold"> l_extendedprice </span>┃<span style="font-weight: bold"> l_discount     </span>┃<span style="font-weight: bold"> l_tax          </span>┃<span style="font-weight: bold"> l_returnflag </span>┃<span style="font-weight: bold"> l_linestatus </span>┃<span style="font-weight: bold"> l_shipdate </span>┃<span style="font-weight: bold"> l_commitdate </span>┃<span style="font-weight: bold"> l_receiptdate </span>┃<span style="font-weight: bold"> l_shipinstruct    </span>┃<span style="font-weight: bold"> l_shipmode </span>┃<span style="font-weight: bold"> l_comment                                </span>┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                                   │
├────────────┼───────────┼───────────┼──────────────┼────────────────┼─────────────────┼────────────────┼────────────────┼──────────────┼──────────────┼────────────┼──────────────┼───────────────┼───────────────────┼────────────┼──────────────────────────────────────────┤
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6000000</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32255</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2256</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.00</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5936.25</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.03</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-11-02</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-11-19</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-12-01</span>    │ <span style="color: #008000; text-decoration-color: #008000">TAKE BACK RETURN </span> │ <span style="color: #008000; text-decoration-color: #008000">MAIL      </span> │ <span style="color: #008000; text-decoration-color: #008000">riously pe                              </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6000000</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">96127</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6128</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">28.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">31447.36</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.01</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.02</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-09-22</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-10-01</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-10-21</span>    │ <span style="color: #008000; text-decoration-color: #008000">NONE             </span> │ <span style="color: #008000; text-decoration-color: #008000">AIR       </span> │ <span style="color: #008000; text-decoration-color: #008000">pecial excuses nag evenly f             </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999975</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6452</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1453</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7.00</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9509.15</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.00</span> │ <span style="color: #008000; text-decoration-color: #008000">A           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-11-02</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-23</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-11-19</span>    │ <span style="color: #008000; text-decoration-color: #008000">DELIVER IN PERSON</span> │ <span style="color: #008000; text-decoration-color: #008000">SHIP      </span> │ <span style="color: #008000; text-decoration-color: #008000">ffily along the sly                     </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999975</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7272</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2273</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">37736.64</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.07</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.01</span> │ <span style="color: #008000; text-decoration-color: #008000">R           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-10-07</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-30</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-10-21</span>    │ <span style="color: #008000; text-decoration-color: #008000">COLLECT COD      </span> │ <span style="color: #008000; text-decoration-color: #008000">REG AIR   </span> │ <span style="color: #008000; text-decoration-color: #008000">ld deposits aga                         </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999975</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">37131</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2138</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19226.34</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.01</span> │ <span style="color: #008000; text-decoration-color: #008000">A           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-11-17</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-08-28</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-12-08</span>    │ <span style="color: #008000; text-decoration-color: #008000">DELIVER IN PERSON</span> │ <span style="color: #008000; text-decoration-color: #008000">FOB       </span> │ <span style="color: #008000; text-decoration-color: #008000">counts cajole evenly? sly orbits boost f</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999974</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10463</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5466</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">46.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">63179.16</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.08</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.06</span> │ <span style="color: #008000; text-decoration-color: #008000">R           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-16</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-21</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-10-02</span>    │ <span style="color: #008000; text-decoration-color: #008000">COLLECT COD      </span> │ <span style="color: #008000; text-decoration-color: #008000">RAIL      </span> │ <span style="color: #008000; text-decoration-color: #008000">se slyly alo                            </span> │
│          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                                        │
└────────────┴───────────┴───────────┴──────────────┴────────────────┴─────────────────┴────────────────┴────────────────┴──────────────┴──────────────┴────────────┴──────────────┴───────────────┴───────────────────┴────────────┴──────────────────────────────────────────┘
</pre>
</div>
</div>
<div id="dede606b" class="cell" data-execution_count="45">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb49" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb49-1">lineitem.count()</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
<div class="cell-output cell-output-display" data-execution_count="45">
<div class="ansi-escaped-output">
<pre>┌─────────┐
│ <span class="ansi-cyan-fg ansi-bold">6001215</span> │
└─────────┘</pre>
</div>
</div>
</div>
</div>
<div id="tabset-1-3" class="tab-pane" aria-labelledby="tabset-1-3-tab">
<div id="f5311d71" class="cell" data-execution_count="46">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb50" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb50-1">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"polars://"</span>)</span>
<span id="cb50-2"></span>
<span id="cb50-3">(customer, lineitem, nation, orders, part, partsupp, region, supplier) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb50-4">    get_ibis_tables(sf<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>sf, con<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>con)</span>
<span id="cb50-5">)</span></code></pre></div></div>
</div>
<div id="22d64fa7" class="cell" data-execution_count="47">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb51" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb51-1">lineitem.order_by(ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>), ibis.asc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_partkey"</span>))</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="47">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> l_orderkey </span>┃<span style="font-weight: bold"> l_partkey </span>┃<span style="font-weight: bold"> l_suppkey </span>┃<span style="font-weight: bold"> l_linenumber </span>┃<span style="font-weight: bold"> l_quantity     </span>┃<span style="font-weight: bold"> l_extendedprice </span>┃<span style="font-weight: bold"> l_discount     </span>┃<span style="font-weight: bold"> l_tax          </span>┃<span style="font-weight: bold"> l_returnflag </span>┃<span style="font-weight: bold"> l_linestatus </span>┃<span style="font-weight: bold"> l_shipdate </span>┃<span style="font-weight: bold"> l_commitdate </span>┃<span style="font-weight: bold"> l_receiptdate </span>┃<span style="font-weight: bold"> l_shipinstruct    </span>┃<span style="font-weight: bold"> l_shipmode </span>┃<span style="font-weight: bold"> l_comment                                </span>┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">decimal(15, 2)</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                                   │
├────────────┼───────────┼───────────┼──────────────┼────────────────┼─────────────────┼────────────────┼────────────────┼──────────────┼──────────────┼────────────┼──────────────┼───────────────┼───────────────────┼────────────┼──────────────────────────────────────────┤
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6000000</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32255</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2256</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.00</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5936.25</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.03</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-11-02</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-11-19</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-12-01</span>    │ <span style="color: #008000; text-decoration-color: #008000">TAKE BACK RETURN </span> │ <span style="color: #008000; text-decoration-color: #008000">MAIL      </span> │ <span style="color: #008000; text-decoration-color: #008000">riously pe                              </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6000000</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">96127</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6128</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">28.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">31447.36</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.01</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.02</span> │ <span style="color: #008000; text-decoration-color: #008000">N           </span> │ <span style="color: #008000; text-decoration-color: #008000">O           </span> │ <span style="color: #800080; text-decoration-color: #800080">1996-09-22</span> │ <span style="color: #800080; text-decoration-color: #800080">1996-10-01</span>   │ <span style="color: #800080; text-decoration-color: #800080">1996-10-21</span>    │ <span style="color: #008000; text-decoration-color: #008000">NONE             </span> │ <span style="color: #008000; text-decoration-color: #008000">AIR       </span> │ <span style="color: #008000; text-decoration-color: #008000">pecial excuses nag evenly f             </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999975</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6452</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1453</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7.00</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9509.15</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.00</span> │ <span style="color: #008000; text-decoration-color: #008000">A           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-11-02</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-23</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-11-19</span>    │ <span style="color: #008000; text-decoration-color: #008000">DELIVER IN PERSON</span> │ <span style="color: #008000; text-decoration-color: #008000">SHIP      </span> │ <span style="color: #008000; text-decoration-color: #008000">ffily along the sly                     </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999975</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">7272</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2273</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">37736.64</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.07</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.01</span> │ <span style="color: #008000; text-decoration-color: #008000">R           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-10-07</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-30</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-10-21</span>    │ <span style="color: #008000; text-decoration-color: #008000">COLLECT COD      </span> │ <span style="color: #008000; text-decoration-color: #008000">REG AIR   </span> │ <span style="color: #008000; text-decoration-color: #008000">ld deposits aga                         </span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999975</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">37131</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2138</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19226.34</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.04</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.01</span> │ <span style="color: #008000; text-decoration-color: #008000">A           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-11-17</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-08-28</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-12-08</span>    │ <span style="color: #008000; text-decoration-color: #008000">DELIVER IN PERSON</span> │ <span style="color: #008000; text-decoration-color: #008000">FOB       </span> │ <span style="color: #008000; text-decoration-color: #008000">counts cajole evenly? sly orbits boost f</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5999974</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10463</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5466</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">46.00</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">63179.16</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.08</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.06</span> │ <span style="color: #008000; text-decoration-color: #008000">R           </span> │ <span style="color: #008000; text-decoration-color: #008000">F           </span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-16</span> │ <span style="color: #800080; text-decoration-color: #800080">1993-09-21</span>   │ <span style="color: #800080; text-decoration-color: #800080">1993-10-02</span>    │ <span style="color: #008000; text-decoration-color: #008000">COLLECT COD      </span> │ <span style="color: #008000; text-decoration-color: #008000">RAIL      </span> │ <span style="color: #008000; text-decoration-color: #008000">se slyly alo                            </span> │
│          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │               <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                                        │
└────────────┴───────────┴───────────┴──────────────┴────────────────┴─────────────────┴────────────────┴────────────────┴──────────────┴──────────────┴────────────┴──────────────┴───────────────┴───────────────────┴────────────┴──────────────────────────────────────────┘
</pre>
</div>
</div>
<div id="748af914" class="cell" data-execution_count="48">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb52" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb52-1">lineitem.count()</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
<div class="cell-output cell-output-display" data-execution_count="48">
<div class="ansi-escaped-output">
<pre>┌─────────┐
│ <span class="ansi-cyan-fg ansi-bold">6001215</span> │
└─────────┘</pre>
</div>
</div>
</div>
</div>
</div>
</div>
<p>The queries are also defined in <code>ibis_bench.queries</code>. Let’s look at query 4 as an example for Ibis dataframe code, Polars dataframe code, and SQL code via Ibis:</p>
<div class="tabset-margin-container"></div><div class="panel-tabset">
<ul class="nav nav-tabs"><li class="nav-item"><a class="nav-link active" id="tabset-2-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-1" aria-controls="tabset-2-1" aria-selected="true" href="">Ibis (dataframe)</a></li><li class="nav-item"><a class="nav-link" id="tabset-2-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-2" aria-controls="tabset-2-2" aria-selected="false" href="">Polars (dataframe)</a></li><li class="nav-item"><a class="nav-link" id="tabset-2-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-3" aria-controls="tabset-2-3" aria-selected="false" href="">Ibis (SQL)</a></li></ul>
<div class="tab-content">
<div id="tabset-2-1" class="tab-pane active" aria-labelledby="tabset-2-1-tab">
<p>Define query 4:</p>
<div id="7453444c" class="cell" data-execution_count="50">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb53" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb53-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> q4(lineitem, orders, <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>kwargs):</span>
<span id="cb53-2">    var1 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> date(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1993</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">7</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb53-3">    var2 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> date(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1993</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb53-4"></span>
<span id="cb53-5">    q_final <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb53-6">        lineitem.join(orders, lineitem[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> orders[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderkey"</span>])</span>
<span id="cb53-7">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>((orders[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderdate"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;=</span> var1) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&amp;</span> (orders[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderdate"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> var2))</span>
<span id="cb53-8">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(lineitem[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_commitdate"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> lineitem[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_receiptdate"</span>])</span>
<span id="cb53-9">        .distinct(on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderpriority"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>])</span>
<span id="cb53-10">        .group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderpriority"</span>)</span>
<span id="cb53-11">        .agg(order_count<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._.count())</span>
<span id="cb53-12">        .order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderpriority"</span>)</span>
<span id="cb53-13">    )</span>
<span id="cb53-14"></span>
<span id="cb53-15">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> q_final</span></code></pre></div></div>
</div>
<p>Run query 4:</p>
<div id="f0eccdcd" class="cell" data-execution_count="51">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb54" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb54-1">res <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> q4(lineitem, orders)</span>
<span id="cb54-2">res</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="51">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> o_orderpriority </span>┃<span style="font-weight: bold"> order_count </span>┃
┡━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>       │
├─────────────────┼─────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">1-URGENT       </span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10594</span> │
│ <span style="color: #008000; text-decoration-color: #008000">2-HIGH         </span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10476</span> │
│ <span style="color: #008000; text-decoration-color: #008000">3-MEDIUM       </span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10410</span> │
│ <span style="color: #008000; text-decoration-color: #008000">4-NOT SPECIFIED</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10556</span> │
│ <span style="color: #008000; text-decoration-color: #008000">5-LOW          </span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10487</span> │
└─────────────────┴─────────────┘
</pre>
</div>
</div>
</div>
<div id="tabset-2-2" class="tab-pane" aria-labelledby="tabset-2-2-tab">
<p>Define query 4:</p>
<div id="29462da9" class="cell" data-execution_count="52">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb55" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb55-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> q4(lineitem, orders, <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>kwargs):</span>
<span id="cb55-2">    var1 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> date(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1993</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">7</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb55-3">    var2 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> date(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1993</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>)</span>
<span id="cb55-4"></span>
<span id="cb55-5">    q_final <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb55-6">        lineitem.join(orders, left_on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>, right_on<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderkey"</span>)</span>
<span id="cb55-7">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(pl.col(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderdate"</span>).is_between(var1, var2, closed<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"left"</span>))</span>
<span id="cb55-8">        .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(pl.col(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_commitdate"</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&lt;</span> pl.col(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_receiptdate"</span>))</span>
<span id="cb55-9">        .unique(subset<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderpriority"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"l_orderkey"</span>])</span>
<span id="cb55-10">        .group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderpriority"</span>)</span>
<span id="cb55-11">        .agg(pl.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">len</span>().alias(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"order_count"</span>))</span>
<span id="cb55-12">        .sort(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"o_orderpriority"</span>)</span>
<span id="cb55-13">    )</span>
<span id="cb55-14"></span>
<span id="cb55-15">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> q_final</span></code></pre></div></div>
</div>
<p>Run query 4:</p>
<div id="413c54da" class="cell" data-execution_count="53">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb56" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb56-1">res <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> q4(lineitem.to_polars().lazy(), orders.to_polars().lazy()).collect()</span>
<span id="cb56-2">res</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="53">
<div><style>
.dataframe > thead > tr,
.dataframe > tbody > tr {
  text-align: right;
  white-space: pre-wrap;
}
</style>
<small>shape: (5, 2)</small>
<table class="dataframe caption-top table table-sm table-striped small" data-border="1">
<thead>
<tr class="header">
<th data-quarto-table-cell-role="th">o_orderpriority</th>
<th data-quarto-table-cell-role="th">order_count</th>
</tr>
<tr class="even">
<td>str</td>
<td>u32</td>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>"1-URGENT"</td>
<td>10594</td>
</tr>
<tr class="even">
<td>"2-HIGH"</td>
<td>10476</td>
</tr>
<tr class="odd">
<td>"3-MEDIUM"</td>
<td>10410</td>
</tr>
<tr class="even">
<td>"4-NOT SPECIFIED"</td>
<td>10556</td>
</tr>
<tr class="odd">
<td>"5-LOW"</td>
<td>10487</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div id="tabset-2-3" class="tab-pane" aria-labelledby="tabset-2-3-tab">
<p>Define query 4:</p>
<div id="e5b9eefb" class="cell" data-execution_count="54">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb57" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb57-1">q4_sql <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb57-2"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">SELECT</span></span>
<span id="cb57-3"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    o_orderpriority,</span></span>
<span id="cb57-4"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    count(*) AS order_count</span></span>
<span id="cb57-5"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">FROM</span></span>
<span id="cb57-6"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    orders</span></span>
<span id="cb57-7"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">WHERE</span></span>
<span id="cb57-8"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    o_orderdate &gt;= CAST('1993-07-01' AS date)</span></span>
<span id="cb57-9"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    AND o_orderdate &lt; CAST('1993-10-01' AS date)</span></span>
<span id="cb57-10"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    AND EXISTS (</span></span>
<span id="cb57-11"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        SELECT</span></span>
<span id="cb57-12"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">            *</span></span>
<span id="cb57-13"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        FROM</span></span>
<span id="cb57-14"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">            lineitem</span></span>
<span id="cb57-15"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">        WHERE</span></span>
<span id="cb57-16"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">            l_orderkey = o_orderkey</span></span>
<span id="cb57-17"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">            AND l_commitdate &lt; l_receiptdate)</span></span>
<span id="cb57-18"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">GROUP BY</span></span>
<span id="cb57-19"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    o_orderpriority</span></span>
<span id="cb57-20"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">ORDER BY</span></span>
<span id="cb57-21"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    o_orderpriority;</span></span>
<span id="cb57-22"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"""</span></span>
<span id="cb57-23">q4_sql <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> q4_sql.strip().strip(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">";"</span>)</span>
<span id="cb57-24"></span>
<span id="cb57-25"></span>
<span id="cb57-26"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> q4(lineitem, orders, dialect<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"duckdb"</span>, <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">**</span>kwargs):</span>
<span id="cb57-27">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> orders.sql(q4_sql, dialect<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>dialect)</span></code></pre></div></div>
</div>
<p>Run query 4:</p>
<div id="b9d83a87" class="cell" data-execution_count="55">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb58" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb58-1">res <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> q4(lineitem, orders)</span>
<span id="cb58-2">res</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="55">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> o_orderpriority </span>┃<span style="font-weight: bold"> order_count </span>┃
┡━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>       │
├─────────────────┼─────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">1-URGENT       </span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10594</span> │
│ <span style="color: #008000; text-decoration-color: #008000">2-HIGH         </span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10476</span> │
│ <span style="color: #008000; text-decoration-color: #008000">3-MEDIUM       </span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10410</span> │
│ <span style="color: #008000; text-decoration-color: #008000">4-NOT SPECIFIED</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10556</span> │
│ <span style="color: #008000; text-decoration-color: #008000">5-LOW          </span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10487</span> │
└─────────────────┴─────────────┘
</pre>
</div>
</div>
</div>
</div>
</div>
<p>Finally, we write the result to a Parquet file. We are measuring the execution time in seconds of calling the query and writing the results to disk.</p>
</section>
</section>
</section>
<section id="next-steps" class="level2">
<h2 class="anchored" data-anchor-id="next-steps">Next steps</h2>
<p>We’ll publish the next iteration of this benchmark soon with updated Polars TPC-H queries and using newer versions of all libraries. Polars v1.0.0 should release soon. A new DataFusion version that fixes the remaining failing queries is also expected soon.</p>
<p>If you spot anything wrong, have any questions, or want to share your own analysis, feel free to share below!</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>benchmark</category>
  <category>duckdb</category>
  <category>datafusion</category>
  <category>polars</category>
  <guid>https://ibis-project.org/posts/ibis-bench/</guid>
  <pubDate>Mon, 24 Jun 2024 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/ibis-bench/figure1.png" medium="image" type="image/png" height="112" width="144"/>
</item>
<item>
  <title>Ibis - Now flying on Snowflake</title>
  <dc:creator>Phillip Cloud</dc:creator>
  <dc:creator>Tyler White</dc:creator>
  <link>https://ibis-project.org/posts/run-on-snowflake/</link>
  <description><![CDATA[ 






<p>Ibis allows you to push down compute operations on your data where it lives, with the performance being as powerful as the backend you’re connected to. But what happens if Ibis is running <em>inside</em> the backend you’re connected to?</p>
<p>In this post, we will discuss how we got Ibis running on a Snowflake virtual warehouse.</p>
<section id="why-would-we-want-to-do-this" class="level2">
<h2 class="anchored" data-anchor-id="why-would-we-want-to-do-this">Why would we want to do&nbsp;this?</h2>
<p>Snowflake has released several features to enable users to execute native Python code on the platform. These features include a new notebook development interface, Streamlit in Snowflake, the Native App framework, and Python within functions and stored procedures.</p>
<p>If users could use Ibis directly within the platform, developers could more easily switch between a local execution engine during development and efficiently deploy and operationalize that same code on Snowflake.</p>
<p>But this isn’t without its challenges; there were a few things we needed to figure out, and these are the questions we will answer throughout the post.</p>
<ul>
<li>How can we get an Ibis connection to Snowflake - from within Snowflake?</li>
<li>How can we use third-party packages in Snowflake?</li>
<li>How are we going to test this to ensure it works?</li>
</ul>
</section>
<section id="getting-the-ibis-connection" class="level2">
<h2 class="anchored" data-anchor-id="getting-the-ibis-connection">Getting the Ibis connection</h2>
<p>The release of Ibis 9.2 includes the introduction of a new method, <a href="../../backends/snowflake.html#ibis.backends.snowflake.Backend.from_connection"><code>from_connection</code></a> to provide users with a convenient mechanism to take an existing Snowpark session and create an Ibis Snowflake backend instance with it.</p>
<p>Here’s what this looks like:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb1-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> snowflake.snowpark <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> sp</span>
<span id="cb1-3"></span>
<span id="cb1-4">session <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> sp.Session.builder.create()</span>
<span id="cb1-5">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.snowflake.from_connection(session)</span></code></pre></div></div>
<p>This connection uses the same session within Snowflake, so temporary objects can be accessed using Snowpark or Ibis in the same process!&nbsp;The contexts of stored procedures already have a session available, meaning we can use this new method and start writing Ibis expressions.</p>
<p>The way this works is that Ibis plucks out an attribute on the Snowpark session, which gives us the <a href="https://github.com/snowflakedb/snowflake-connector-python"><code>snowflake-connector-python</code></a> <a href="https://github.com/snowflakedb/snowflake-connector-python/blob/42fa6ebe9404e0e17afdacfcaceb311dda5cde3e/src/snowflake/connector/connection.py#L313"><code>SnowflakeConnection</code></a> instance used by Snowpark.</p>
<p>Since Ibis uses <code>snowflake-connector-python</code> for all Snowflake-related connection we just reuse that existing instance.</p>
</section>
<section id="uploading-third-party-packages" class="level2">
<h2 class="anchored" data-anchor-id="uploading-third-party-packages">Uploading third-party packages</h2>
<p>Snowflake has many packages already made available out of the box through the Snowflake Anaconda channel, but unfortunately, Ibis and a few of its dependencies aren’t available.&nbsp;Packages containing pure Python code can be uploaded to stages for use within the platform, so we devised a clever solution to upload and reference these to get them working.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> os</span>
<span id="cb2-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> shutil</span>
<span id="cb2-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> tempfile</span>
<span id="cb2-4"></span>
<span id="cb2-5"></span>
<span id="cb2-6"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> add_packages(d, session):</span>
<span id="cb2-7">    <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> parsy</span>
<span id="cb2-8">    <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pyarrow_hotfix</span>
<span id="cb2-9">    <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> rich</span>
<span id="cb2-10">    <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> sqlglot</span>
<span id="cb2-11">    <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb2-12"></span>
<span id="cb2-13">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> module <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> (ibis, parsy, pyarrow_hotfix, rich, sqlglot):</span>
<span id="cb2-14">        pkgname <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> module.<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">__name__</span></span>
<span id="cb2-15">        pkgpath <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> os.path.join(d, pkgname)</span>
<span id="cb2-16">        shutil.copytree(os.path.dirname(module.<span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">__file__</span>), pkgpath)</span>
<span id="cb2-17">        session.add_import(pkgname, import_path<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>pkgname)</span>
<span id="cb2-18"></span>
<span id="cb2-19"></span>
<span id="cb2-20">d <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> tempfile.TemporaryDirectory()</span>
<span id="cb2-21">os.chdir(d.name)</span>
<span id="cb2-22">add_packages(d.name, session)</span></code></pre></div></div>
<p>We can now register a stored procedure that imports these modules and is able to reference some of the additional dependencies that are already available.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1">session.sproc.register(</span>
<span id="cb3-2">        ibis_sproc,</span>
<span id="cb3-3">        return_type<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>sp.types.StructType(),</span>
<span id="cb3-4">        name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"THE_IBIS_SPROC"</span>,</span>
<span id="cb3-5">        imports<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ibis"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"parsy"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pyarrow_hotfix"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sqlglot"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"rich"</span>],</span>
<span id="cb3-6">        packages<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>[</span>
<span id="cb3-7">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"snowflake-snowpark-python"</span>,</span>
<span id="cb3-8">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"toolz"</span>,</span>
<span id="cb3-9">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"atpublic"</span>,</span>
<span id="cb3-10">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pyarrow"</span>,</span>
<span id="cb3-11">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pandas"</span>,</span>
<span id="cb3-12">            <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"numpy"</span>,</span>
<span id="cb3-13">        ],</span>
<span id="cb3-14">)</span></code></pre></div></div>
</section>
<section id="more-permanent-solutions-to-packaging" class="level2 callout-info">
<h2 class="anchored" data-anchor-id="more-permanent-solutions-to-packaging">More permanent solutions to packaging</h2>
<p>It’s possible that a more permanent solution could be achieved with a <code>put</code> or <code>put_stream</code> method rather than using the <code>add_import</code> method. This would allow for the packages to be referenced across multiple stored procedures or other places within the Snowflake platform.</p>
</section>
<section id="testing" class="level2">
<h2 class="anchored" data-anchor-id="testing">Testing!</h2>
<p>While this is a clever solution, we must ensure it works consistently. A special unit test has been written for this exact case! The test creates a stored procedure by adding the necessary imports to the Snowpark session. Within the stored procedure, we define an Ibis expression, and we use the Ibis <code>to_sql</code> method to extract the generated SQL to pass to Snowpark to return a Snowpark DataFrame!</p>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>While it’s usually pretty easy to add new backends with Ibis, this was the first instance of supporting an additional interface to an existing backend.</p>
<p>We hope you take this for a spin! If you run into any challenges or want additional support, open an <a href="https://github.com/ibis-project/ibis/issues">issue</a> or join us on <a href="https://ibis-project.zulipchat.com/">Zulip</a> and let us know!</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>new feature</category>
  <category>snowflake</category>
  <guid>https://ibis-project.org/posts/run-on-snowflake/</guid>
  <pubDate>Wed, 19 Jun 2024 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Unlocking data insights with Ibis and SQLMesh</title>
  <dc:creator>Chloe He</dc:creator>
  <link>https://ibis-project.org/posts/sqlmesh-ibis/</link>
  <description><![CDATA[ 






<section id="overview" class="level1">
<h1>Overview</h1>
<p>Have you ever needed to learn new dialects of database languages as a data scientist or struggled with the differences between database languages? Does your company manage different production pipelines with multiple databases or engines? Have you needed to rewrite data pipelines from experimentation to deployment?</p>
<p>These are challenges that SQLMesh and Ibis together can solve.</p>
<p><a href="https://sqlmesh.com/">SQLMesh</a> is a next-generation data transformation and modeling framework. It aims to be easy to use, correct, and efficient and is maintained by the <a href="https://tobikodata.com/">Tobiko Data</a> team. It helps you scalably, reliably and safely modify your data pipelines because it understands SQL and can make intelligent updates instead of stringing scripts together. SQLMesh boasts several future-proof features such as automatic data contracts, virtual data environments and snapshots, extensive change summaries (before updates are applied!) and column-level lineage out of the box.</p>
<p>We walk through an example together to show you how to harness the full potential of your data analytics workflow and how SQLMesh and Ibis can work together hand-in-hand. Read the full article on <a href="https://tobikodata.com/ibis-sqlmesh-unlocking-data-insights.html">SQLMesh blog</a>!</p>
<p>In today’s data-driven world, the ability to efficiently analyze and derive insights from vast amounts of data is paramount. Leveraging powerful open-source tools like SQLMesh and Ibis can streamline this process, enabling you to easily manipulate and query data.</p>
<p>Let us know how you’re using SQLMesh and Ibis together in your use case!</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>sqlmesh</category>
  <category>data engineering</category>
  <guid>https://ibis-project.org/posts/sqlmesh-ibis/</guid>
  <pubDate>Tue, 21 May 2024 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/sqlmesh-ibis/thumbnail.png" medium="image" type="image/png" height="81" width="144"/>
</item>
<item>
  <title>Ibis 9.0: SQLGlot-ification</title>
  <dc:creator>Ibis team</dc:creator>
  <link>https://ibis-project.org/posts/ibis-version-9.0.0-release/</link>
  <description><![CDATA[ 






<section id="overview" class="level2">
<h2 class="anchored" data-anchor-id="overview">Overview</h2>
<p>Ibis 9.0 wraps up <a href="../../posts/roadmap-2024-H1/index.html#the-big-refactor">“the big refactor”</a>, completing the transition from SQLAlchemy to <a href="https://github.com/tobymao/sqlglot">SQLGlot</a> and drastically simplifying the codebase. This is a big step toward stabilized internals and allows us to more easily add new features and backends going forward. Look out for a dedicated blog post on the refactor soon.</p>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Tip
</div>
</div>
<div class="callout-body-container callout-body">
<p>One long-standing issue with Ibis has been chained joins, which now work as a user would expect. This was a major motivation for the refactor.</p>
</div>
</div>
<p>Ibis 9.0 also adds new functionality, fixes many bugs, and welcomes two new committers to the project!</p>
<section id="meet-the-ibis-team" class="level3">
<h3 class="anchored" data-anchor-id="meet-the-ibis-team">Meet the Ibis team!</h3>
<p>Members of the core Ibis team will be at <a href="https://us.pycon.org/2024/">PyCon 2024 in Pittsburg, PA, USA in May</a> and <a href="https://www.scipy2024.scipy.org/">SciPy 2024 in Tacoma, WA, USA in July</a>! Stop by at one of the talks or tutorials to say hi in English and/or Español:</p>
<ul>
<li><a href="https://us.pycon.org/2024/schedule/presentation/55/">Tutorials: Introduction to Ibis: blazing fast analytics with DuckDB, Polars, Snowflake, and more, from the comfort of your Python repl.</a></li>
<li><a href="https://us.pycon.org/2024/schedule/presentation/117/">Charlas: Porque SQL está en todas partes.</a></li>
</ul>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>The schedule for SciPy 2024 is not available yet, keep an eye out for Ibis sessions.</p>
</div>
</div>
<p>You can also listen to a <a href="https://realpython.com/podcasts/rpp/201">recent podcast episode with Real Python</a> or <a href="https://www.youtube.com/watch?v=V1_xdQYlWAc">another with :probabl.</a> where Phillip Cloud, lead maintainer of Ibis, talks about the project.</p>
<p>More podcasts and talks are in the works, so stay tuned!</p>
</section>
<section id="new-committers" class="level3">
<h3 class="anchored" data-anchor-id="new-committers">New committers</h3>
<p>We’re excited to welcome <a href="https://github.com/NickCrews">Nick Crews</a> and <a href="https://github.com/ncclementi">Naty Clementi</a> as the <a href="https://github.com/ibis-project/governance/blob/main/governance.md#committers">newest committers to the Ibis project</a>!</p>
<p>Nick has been a long-time contributor to Ibis, one of the most active people on the issue tracker, and increasingly involved in the community. We’re excited to have him on board!</p>
<p>Naty has been contributing to Ibis for a while now, leading the effort to add geospatial support to the DuckDB backend in addition to various other contributions. We’re excited to have her on board!</p>
<section id="contributors" class="level4">
<h4 class="anchored" data-anchor-id="contributors">9.0 contributors</h4>
<p>Ibis 9.0 had contributions from many people, including commits from:</p>
<ul>
<li>Phillip Cloud</li>
<li>Krisztián Szűcs</li>
<li>Gil Forsyth</li>
<li>Jim Crist-Harif</li>
<li>Cody Peterson</li>
<li>Nick Crews</li>
<li>Naty Clementi</li>
<li>Chloe He</li>
<li>Nicola Coretti</li>
<li>Deepyaman Datta</li>
<li>Péter Gyarmati</li>
<li>Jiting Xu</li>
<li>Mehmet Fatih Aktas</li>
<li>Tyler White</li>
<li>Bryce Mecum</li>
<li>Riezebos</li>
<li>Chelsea Lin</li>
<li>Chip Huyen</li>
<li>Dan Lovell</li>
<li>Daniel Mesejo</li>
<li>Kexiang Wang</li>
<li>Mark Needham</li>
<li>Ray Bell</li>
<li>Thierry Jean</li>
<li>pieter-factful</li>
<li>saschahofmann</li>
</ul>
<p>Thank you to everyone who contributed to this release! And a special thanks to Krisztián Szűcs for his work on the internal representation and SQLGlot refactor work, it has drastically improved the Ibis codebase.</p>
<p>With this refactor, it’s never been easier to contribute to Ibis! Get on touch via <a href="https://github.com/ibis-project/ibis">GitHub</a> or <a href="https://ibis-project.zulipchat.com/">Zulip</a> if you’re interested.</p>
</section>
</section>
</section>
<section id="backends" class="level2">
<h2 class="anchored" data-anchor-id="backends">Backends</h2>
<p>No new backends were added in this release, <a href="../../posts/unix-backend/index.html">unless you count the April Fools’ Day Unix backend</a>! As always, there have been backend-specific improvements and bug fixes. Some highlights are below.</p>
<p>Check the <a href="../../release_notes.html#9.0.0">full changelog</a> for more details.</p>
<p>If you’re new to Ibis, see <a href="../../../install.qmd">how to install</a> and <a href="../../../tutorials/getting_started.qmd">the getting started tutorial</a>.</p>
<p>To follow along with this blog, ensure you’re on <code>'ibis-framework&gt;=9,&lt;10'</code>. First, we’ll setup Ibis for interactive use:</p>
<div id="1cc6b96c" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb1-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.selectors <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> s</span>
<span id="cb1-3"></span>
<span id="cb1-4">ibis.options.interactive <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span>
<span id="cb1-5">ibis.options.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">repr</span>.interactive.max_rows <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span></span></code></pre></div></div>
</div>
<p>And fetch the penguins dataset:</p>
<div id="83d9406a" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.examples.penguins.fetch()</span>
<span id="cb2-2">t</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="2">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> species </span>┃<span style="font-weight: bold"> island    </span>┃<span style="font-weight: bold"> bill_length_mm </span>┃<span style="font-weight: bold"> bill_depth_mm </span>┃<span style="font-weight: bold"> flipper_length_mm </span>┃<span style="font-weight: bold"> body_mass_g </span>┃<span style="font-weight: bold"> sex    </span>┃<span style="font-weight: bold"> year  </span>┃
┡━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├─────────┼───────────┼────────────────┼───────────────┼───────────────────┼─────────────┼────────┼───────┤
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.7</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">181</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3750</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.5</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.4</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">186</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3800</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40.3</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.0</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">195</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3250</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────┴───────────┴────────────────┴───────────────┴───────────────────┴─────────────┴────────┴───────┘
</pre>
</div>
</div>
<section id="snowflake" class="level3">
<h3 class="anchored" data-anchor-id="snowflake">Snowflake</h3>
<p>You can now run Ibis inside of a Snowflake stored procedure! Look for a blog on this coming soon.</p>
</section>
<section id="duckdb" class="level3">
<h3 class="anchored" data-anchor-id="duckdb">DuckDB</h3>
<p>In this release, <code>asof</code> joins are also now supported with a <code>tolerance</code> parameter.</p>
<p>With <a href="https://duckdb.org/2024/01/26/multi-database-support-in-duckdb.html">DuckDB’s addition of MySQL as a database it can attach to</a>, we’ve added a <code>read_mysql</code> function to Ibis inline with <code>read_postgres</code> and <code>read_sqlite</code>.</p>
<p>You can now cast binary data to geometry in the DuckDB backend, enabling use of regular Parquet files:</p>
<div id="7a341c5f" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-3" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="1">1</button><span id="annotated-cell-3-1" class="code-annotation-target">zones <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.examples.zones.fetch().relocate(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"geom"</span>)</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="2">2</button><span id="annotated-cell-3-2" class="code-annotation-target">zones.to_parquet(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zones.parquet"</span>)</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-3" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="1" data-code-annotation="1">Fetch the zones example data with the geometry column.</span>
</dd>
<dt data-target-cell="annotated-cell-3" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="2" data-code-annotation="2">Write to a Parquet file, converting the geometry column to binary.</span>
</dd>
</dl>
</div>
</div>
<div id="e8a919ba" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-4" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="1">1</button><span id="annotated-cell-4-1" class="code-annotation-target">zones <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.read_parquet(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zones.parquet"</span>)</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-4" data-target-annotation="2">2</button><span id="annotated-cell-4-2" class="code-annotation-target">zones.schema()</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-4" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="1" data-code-annotation="1">Load in the zones Paruqet file.</span>
</dd>
<dt data-target-cell="annotated-cell-4" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-4" data-code-lines="2" data-code-annotation="2">Notice the geometry column is binary.</span>
</dd>
</dl>
</div>
<div class="cell-output cell-output-display" data-execution_count="4">
<pre><code>ibis.Schema {
  geom        binary
  OBJECTID    int32
  Shape_Leng  float64
  Shape_Area  float64
  zone        string
  LocationID  int32
  borough     string
  x_cent      float64
  y_cent      float64
}</code></pre>
</div>
</div>
<div id="e16b1b82" class="cell" data-execution_count="6">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-5" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><button class="code-annotation-anchor" data-target-cell="annotated-cell-5" data-target-annotation="1">1</button><span id="annotated-cell-5-1" class="code-annotation-target">zones <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> zones.mutate(geom<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>zones[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"geom"</span>].cast(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"geometry"</span>))</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-5" data-target-annotation="2">2</button><span id="annotated-cell-5-2" class="code-annotation-target">zones.schema()</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-5" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-5" data-code-lines="1" data-code-annotation="1">Cast the binary geometry column to a geometry column.</span>
</dd>
<dt data-target-cell="annotated-cell-5" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-5" data-code-lines="2" data-code-annotation="2">Notice the geometry column is now a geometry type.</span>
</dd>
</dl>
</div>
<div class="cell-output cell-output-display" data-execution_count="5">
<pre><code>ibis.Schema {
  geom        geospatial:geometry
  OBJECTID    int32
  Shape_Leng  float64
  Shape_Area  float64
  zone        string
  LocationID  int32
  borough     string
  x_cent      float64
  y_cent      float64
}</code></pre>
</div>
</div>
</section>
<section id="pyspark" class="level3">
<h3 class="anchored" data-anchor-id="pyspark">PySpark</h3>
<p>PySpark 3.5 is now supported.</p>
</section>
<section id="exasol" class="level3">
<h3 class="anchored" data-anchor-id="exasol">Exasol</h3>
<p>Numerous improvements have been made to the Exasol backend by Nicola including bitwise operations, time operations, and hexdigest.</p>
</section>
<section id="apache-flink" class="level3">
<h3 class="anchored" data-anchor-id="apache-flink">Apache Flink</h3>
<p>Scalar user-defined functions (UDFs) are now supported in the Flink backend.</p>
</section>
<section id="risingwave" class="level3">
<h3 class="anchored" data-anchor-id="risingwave">RisingWave</h3>
<p>Streaming data definition language (DDL) support has been added to the RisingWave backend.</p>
</section>
</section>
<section id="breaking-changes" class="level2">
<h2 class="anchored" data-anchor-id="breaking-changes">Breaking changes</h2>
<p>You can view the <a href="../../release_notes.html#9.0.0">full changelog</a> for additional breaking changes. There is one we expect to affect many users.</p>
<section id="what-does-schema-mean" class="level3">
<h3 class="anchored" data-anchor-id="what-does-schema-mean">What does “schema” mean?</h3>
<p>In building a standard Python dataframe interface, we must standardize naming conventions and terminology across data systems. Many systems use the words “schema”, “database”, “catalog”, and “namespace” to mean different things.</p>
<p>In Ibis, a “schema” is a mapping of column names to their types:</p>
<div id="e2ed91aa" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1">t.schema()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="6">
<pre><code>ibis.Schema {
  species            string
  island             string
  bill_length_mm     float64
  bill_depth_mm      float64
  flipper_length_mm  int64
  body_mass_g        int64
  sex                string
  year               int64
}</code></pre>
</div>
</div>
<p>And as of Ibis 9.0, that is all “schema” means! We have standardizes on <code>table</code> as the container of data which has a <code>schema</code>. A <code>database</code> is a collection of tables, and a <code>catalog</code> is a collection of databases. Not all backends will support all levels of hierarchy.</p>
<p>Existing methods using the hierarchical meaning of “schema” will now raise a deprecation warning, and the arguments throughout the API have been updated to reflect the standardization.</p>
<p>For example, <code>list_schemas()</code> will give a deprecation warning:</p>
<div id="1776394b" class="cell" data-execution_count="8">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"duckdb://"</span>)</span>
<span id="cb7-2">con.list_schemas()</span></code></pre></div></div>
<div class="cell-output cell-output-stderr">
<pre><code>/var/folders/hm/f6m13d5d4xg6v606d3mfndnh0000gn/T/ipykernel_6573/2769547408.py:2: FutureWarning:

`CanListSchema.list_schemas` is deprecated as of v9.0, removed in v10.0; Use `list_databases` instead`
</code></pre>
</div>
<div class="cell-output cell-output-display" data-execution_count="7">
<pre><code>['information_schema', 'main', 'pg_catalog']</code></pre>
</div>
</div>
<p>Use <code>list_databases()</code> instead:</p>
<div id="8543239d" class="cell" data-execution_count="9">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1">con.list_databases()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="8">
<pre><code>['information_schema', 'main', 'pg_catalog']</code></pre>
</div>
</div>
<p>You can also <code>list_catalogs()</code>:</p>
<div id="297b3961" class="cell" data-execution_count="10">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb12-1">con.list_catalogs()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="9">
<pre><code>['memory', 'system', 'temp']</code></pre>
</div>
</div>
<p>And get the current database:</p>
<div id="eb16adb8" class="cell" data-execution_count="11">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb14-1">con.current_database</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="10">
<pre><code>'main'</code></pre>
</div>
</div>
<p>And the current catalog:</p>
<div id="c3dc2c8e" class="cell" data-execution_count="12">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb16" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb16-1">con.current_catalog</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="11">
<pre><code>'memory'</code></pre>
</div>
</div>
</section>
<section id="other-breaking-changes" class="level3">
<h3 class="anchored" data-anchor-id="other-breaking-changes">Other breaking changes</h3>
<p>There were a few more minor breaking changes, see <a href="../../release_notes.html#9.0.0">the full changelog</a> for more details.</p>
</section>
</section>
<section id="functionality" class="level2">
<h2 class="anchored" data-anchor-id="functionality">Functionality</h2>
<p>A lot of new functionality has been added in Ibis 9.0.</p>
<section id="python-3.12" class="level3">
<h3 class="anchored" data-anchor-id="python-3.12">Python 3.12</h3>
<p><a href="https://github.com/ibis-project/ibis/pull/8529">Ibis now supports Python 3.12</a>!</p>
</section>
<section id="describe" class="level3">
<h3 class="anchored" data-anchor-id="describe">Describe</h3>
<p>Ibis now has a <code>describe</code> method to get a summary of a table:</p>
<div id="c47c95dc" class="cell" data-execution_count="14">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb18" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb18-1">t.describe()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="13">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┓
┃<span style="font-weight: bold"> name              </span>┃<span style="font-weight: bold"> type    </span>┃<span style="font-weight: bold"> count </span>┃<span style="font-weight: bold"> nulls </span>┃<span style="font-weight: bold"> unique </span>┃<span style="font-weight: bold"> mode   </span>┃<span style="font-weight: bold"> mean        </span>┃<span style="font-weight: bold"> std        </span>┃<span style="font-weight: bold"> min     </span>┃<span style="font-weight: bold"> p25      </span>┃<span style="font-weight: bold"> p50     </span>┃<span style="font-weight: bold"> p75     </span>┃<span style="font-weight: bold"> max     </span>┃
┡━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │
├───────────────────┼─────────┼───────┼───────┼────────┼────────┼─────────────┼────────────┼─────────┼──────────┼─────────┼─────────┼─────────┤
│ <span style="color: #008000; text-decoration-color: #008000">species          </span> │ <span style="color: #008000; text-decoration-color: #008000">string </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">344</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │ <span style="color: #008000; text-decoration-color: #008000">Adelie</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │
│ <span style="color: #008000; text-decoration-color: #008000">island           </span> │ <span style="color: #008000; text-decoration-color: #008000">string </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">344</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │
│ <span style="color: #008000; text-decoration-color: #008000">bill_length_mm   </span> │ <span style="color: #008000; text-decoration-color: #008000">float64</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">344</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">164</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">43.921930</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.459584</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32.1</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.225</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">44.45</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">48.5</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">59.6</span> │
│ <span style="color: #008000; text-decoration-color: #008000">bill_depth_mm    </span> │ <span style="color: #008000; text-decoration-color: #008000">float64</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">344</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">80</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.151170</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.974793</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13.1</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">15.600</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.30</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.7</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21.5</span> │
│ <span style="color: #008000; text-decoration-color: #008000">flipper_length_mm</span> │ <span style="color: #008000; text-decoration-color: #008000">int64  </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">344</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">55</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">200.915205</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14.061714</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">172.0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">190.000</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">197.00</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">213.0</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">231.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">body_mass_g      </span> │ <span style="color: #008000; text-decoration-color: #008000">int64  </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">344</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">94</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4201.754386</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">801.954536</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2700.0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3550.000</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4050.00</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4750.0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6300.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">sex              </span> │ <span style="color: #008000; text-decoration-color: #008000">string </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">344</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │    <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │
│ <span style="color: #008000; text-decoration-color: #008000">year             </span> │ <span style="color: #008000; text-decoration-color: #008000">int64  </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">344</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2008.029070</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.818356</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007.0</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007.000</span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2008.00</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009.0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009.0</span> │
└───────────────────┴─────────┴───────┴───────┴────────┴────────┴─────────────┴────────────┴─────────┴──────────┴─────────┴─────────┴─────────┘
</pre>
</div>
</div>
</section>
<section id="graphviz-custom-attributes" class="level3">
<h3 class="anchored" data-anchor-id="graphviz-custom-attributes">GraphViz custom attributes</h3>
<p>Thanks to <a href="https://github.com/ibis-project/ibis/pull/8510">a couple</a> <a href="https://github.com/ibis-project/ibis/pull/8527">community contributions</a>, you can now pass custom attributes to the GraphViz visualization of an expression.</p>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Tip
</div>
</div>
<div class="callout-body-container callout-body">
<p>You can also call <code>expr.visualize()</code> and pass the same arguments.</p>
</div>
</div>
<div id="b6f7cc00" class="cell" data-execution_count="16">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb19" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb19-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.expr.visualize <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> to_graph</span>
<span id="cb19-2"></span>
<span id="cb19-3">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb19-4">    t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"species"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"island"</span>)</span>
<span id="cb19-5">    .agg(count<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t.count())</span>
<span id="cb19-6">    .order_by(ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"count"</span>].desc())</span>
<span id="cb19-7">)</span>
<span id="cb19-8"></span>
<span id="cb19-9">to_graph(</span>
<span id="cb19-10">    expr,</span>
<span id="cb19-11">    label_edges<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="cb19-12">    node_attr<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"shape"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"hexagon"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"color"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"green"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"fontname"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Roboto Mono"</span>},</span>
<span id="cb19-13">    edge_attr<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>{<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"fontsize"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"12"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"fontname"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Comic Sans MS"</span>},</span>
<span id="cb19-14">)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="15">
<div>
<figure class="figure">
<p><img src="https://ibis-project.org/posts/ibis-version-9.0.0-release/index_files/figure-html/cell-16-output-1.svg" class="img-fluid figure-img"></p>
</figure>
</div>
</div>
</div>
</section>
<section id="polars-input-and-output" class="level3">
<h3 class="anchored" data-anchor-id="polars-input-and-output">Polars input and output</h3>
<p>You can now directly output a Polars dataframe from an Ibis table (instead of going through Apache Arrow as previously possible):</p>
<div id="6dc5906a" class="cell" data-execution_count="17">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb20" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb20-1">t.to_polars()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="16">
<div><style>
.dataframe > thead > tr,
.dataframe > tbody > tr {
  text-align: right;
  white-space: pre-wrap;
}
</style>
<small>shape: (344, 8)</small>
<table class="dataframe caption-top table table-sm table-striped small" data-border="1">
<thead>
<tr class="header">
<th data-quarto-table-cell-role="th">species</th>
<th data-quarto-table-cell-role="th">island</th>
<th data-quarto-table-cell-role="th">bill_length_mm</th>
<th data-quarto-table-cell-role="th">bill_depth_mm</th>
<th data-quarto-table-cell-role="th">flipper_length_mm</th>
<th data-quarto-table-cell-role="th">body_mass_g</th>
<th data-quarto-table-cell-role="th">sex</th>
<th data-quarto-table-cell-role="th">year</th>
</tr>
<tr class="even">
<td>str</td>
<td>str</td>
<td>f64</td>
<td>f64</td>
<td>i64</td>
<td>i64</td>
<td>str</td>
<td>i64</td>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>"Adelie"</td>
<td>"Torgersen"</td>
<td>39.1</td>
<td>18.7</td>
<td>181</td>
<td>3750</td>
<td>"male"</td>
<td>2007</td>
</tr>
<tr class="even">
<td>"Adelie"</td>
<td>"Torgersen"</td>
<td>39.5</td>
<td>17.4</td>
<td>186</td>
<td>3800</td>
<td>"female"</td>
<td>2007</td>
</tr>
<tr class="odd">
<td>"Adelie"</td>
<td>"Torgersen"</td>
<td>40.3</td>
<td>18.0</td>
<td>195</td>
<td>3250</td>
<td>"female"</td>
<td>2007</td>
</tr>
<tr class="even">
<td>"Adelie"</td>
<td>"Torgersen"</td>
<td>null</td>
<td>null</td>
<td>null</td>
<td>null</td>
<td>null</td>
<td>2007</td>
</tr>
<tr class="odd">
<td>"Adelie"</td>
<td>"Torgersen"</td>
<td>36.7</td>
<td>19.3</td>
<td>193</td>
<td>3450</td>
<td>"female"</td>
<td>2007</td>
</tr>
<tr class="even">
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
<td>…</td>
</tr>
<tr class="odd">
<td>"Chinstrap"</td>
<td>"Dream"</td>
<td>55.8</td>
<td>19.8</td>
<td>207</td>
<td>4000</td>
<td>"male"</td>
<td>2009</td>
</tr>
<tr class="even">
<td>"Chinstrap"</td>
<td>"Dream"</td>
<td>43.5</td>
<td>18.1</td>
<td>202</td>
<td>3400</td>
<td>"female"</td>
<td>2009</td>
</tr>
<tr class="odd">
<td>"Chinstrap"</td>
<td>"Dream"</td>
<td>49.6</td>
<td>18.2</td>
<td>193</td>
<td>3775</td>
<td>"male"</td>
<td>2009</td>
</tr>
<tr class="even">
<td>"Chinstrap"</td>
<td>"Dream"</td>
<td>50.8</td>
<td>19.0</td>
<td>210</td>
<td>4100</td>
<td>"male"</td>
<td>2009</td>
</tr>
<tr class="odd">
<td>"Chinstrap"</td>
<td>"Dream"</td>
<td>50.2</td>
<td>18.7</td>
<td>198</td>
<td>3775</td>
<td>"female"</td>
<td>2009</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>And you can directly construct an Ibis memtable from a Polars dataframe:</p>
<div id="724326c4" class="cell" data-execution_count="18">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb21" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb21-1">ibis.memtable(t.to_polars())</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="17">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> species </span>┃<span style="font-weight: bold"> island    </span>┃<span style="font-weight: bold"> bill_length_mm </span>┃<span style="font-weight: bold"> bill_depth_mm </span>┃<span style="font-weight: bold"> flipper_length_mm </span>┃<span style="font-weight: bold"> body_mass_g </span>┃<span style="font-weight: bold"> sex    </span>┃<span style="font-weight: bold"> year  </span>┃
┡━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├─────────┼───────────┼────────────────┼───────────────┼───────────────────┼─────────────┼────────┼───────┤
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.7</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">181</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3750</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.5</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.4</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">186</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3800</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40.3</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.0</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">195</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3250</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────┴───────────┴────────────────┴───────────────┴───────────────────┴─────────────┴────────┴───────┘
</pre>
</div>
</div>
<p>These conversions are efficient and improve usability of Ibis and Polars together.</p>
</section>
<section id="scalar-subqueries-from-expressions" class="level3">
<h3 class="anchored" data-anchor-id="scalar-subqueries-from-expressions">Scalar subqueries from expressions</h3>
<p>You can now create scalar subqueries from expressions:</p>
<div id="eb473635" class="cell" data-execution_count="19">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb22" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb22-1">t.select(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"species"</span>).limit(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>).as_scalar()</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
<div class="cell-output cell-output-display" data-execution_count="18">
<div class="ansi-escaped-output">
<pre><span class="ansi-green-fg">'Adelie'</span></pre>
</div>
</div>
</div>
</section>
<section id="disconnect" class="level3">
<h3 class="anchored" data-anchor-id="disconnect">Disconnect</h3>
<p>You can now explicitly disconnect from a backend. First, connect to a backend:</p>
<div id="c6c4bedf" class="cell" data-execution_count="20">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb23" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb23-1">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"duckdb://"</span>)</span>
<span id="cb23-2">con.list_tables()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="19">
<pre><code>[]</code></pre>
</div>
</div>
<p>Then you can disconnect. Trying to use the connection after will raise an error:</p>
<div id="9956f9dc" class="cell" data-execution_count="21">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb25" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb25-1">con.disconnect()</span>
<span id="cb25-2">con.list_tables()</span></code></pre></div></div>
<div class="cell-output cell-output-error">
<pre><code>ConnectionException: Connection Error: Connection has already been closed</code></pre>
</div>
</div>
</section>
<section id="today" class="level3">
<h3 class="anchored" data-anchor-id="today">Today</h3>
<p>You can now get the current date more easily:</p>
<div id="2645bb05" class="cell" data-execution_count="22">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb27" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb27-1">ibis.today()</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
<div class="cell-output cell-output-display" data-execution_count="21">
<div class="ansi-escaped-output">
<pre><span class="ansi-magenta-fg ansi-bold">datetime.date</span><span class="ansi-bold">(</span><span class="ansi-cyan-fg ansi-bold">2024</span>, <span class="ansi-cyan-fg ansi-bold">5</span>, <span class="ansi-cyan-fg ansi-bold">2</span><span class="ansi-bold">)</span></pre>
</div>
</div>
</div>
<p>And use it in expressions:</p>
<div id="08a6ed43" class="cell" data-execution_count="23">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb28" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb28-1">t.mutate(ingested_at<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis.today()).relocate(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ingested_at"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="22">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> ingested_at </span>┃<span style="font-weight: bold"> species </span>┃<span style="font-weight: bold"> island    </span>┃<span style="font-weight: bold"> bill_length_mm </span>┃<span style="font-weight: bold"> bill_depth_mm </span>┃<span style="font-weight: bold"> flipper_length_mm </span>┃<span style="font-weight: bold"> body_mass_g </span>┃<span style="font-weight: bold"> sex    </span>┃<span style="font-weight: bold"> year  </span>┃
┡━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">date</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├─────────────┼─────────┼───────────┼────────────────┼───────────────┼───────────────────┼─────────────┼────────┼───────┤
│ <span style="color: #800080; text-decoration-color: #800080">2024-05-02</span>  │ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.7</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">181</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3750</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-05-02</span>  │ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.5</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.4</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">186</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3800</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #800080; text-decoration-color: #800080">2024-05-02</span>  │ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40.3</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.0</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">195</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3250</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────────┴─────────┴───────────┴────────────────┴───────────────┴───────────────────┴─────────────┴────────┴───────┘
</pre>
</div>
</div>
</section>
<section id="uuids" class="level3">
<h3 class="anchored" data-anchor-id="uuids">UUIDs</h3>
<p>You can now generate universally unique identifiers (UUIDs) in Ibis more easily:</p>
<div id="04f4f73e" class="cell" data-execution_count="24">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb29" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb29-1">ibis.uuid()</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
<div class="cell-output cell-output-display" data-execution_count="23">
<div class="ansi-escaped-output">
<pre><span class="ansi-magenta-fg ansi-bold">UUID</span><span class="ansi-bold">(</span><span class="ansi-green-fg">'541ab072-9f28-46dd-b402-8ebf3b697fc8'</span><span class="ansi-bold">)</span></pre>
</div>
</div>
</div>
<p>And use them in expressions:</p>
<div id="e50b7abf" class="cell" data-execution_count="25">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb30" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb30-1">t.mutate(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">id</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis.uuid()).relocate(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"id"</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="24">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> id                                   </span>┃<span style="font-weight: bold"> species </span>┃<span style="font-weight: bold"> island    </span>┃<span style="font-weight: bold"> bill_length_mm </span>┃<span style="font-weight: bold"> bill_depth_mm </span>┃<span style="font-weight: bold"> flipper_length_mm </span>┃<span style="font-weight: bold"> body_mass_g </span>┃<span style="font-weight: bold"> sex    </span>┃<span style="font-weight: bold"> year  </span>┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">uuid</span>                                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├──────────────────────────────────────┼─────────┼───────────┼────────────────┼───────────────┼───────────────────┼─────────────┼────────┼───────┤
│ 17b11546-2573-4ed6-84b8-0c3ee6f89060 │ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.7</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">181</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3750</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ 0acdb8bf-dc1b-4cfe-bdba-8c5be4a5f84a │ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.5</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.4</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">186</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3800</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ ac8830ac-74d1-44fc-a4dc-b5b7a0343111 │ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40.3</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.0</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">195</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3250</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└──────────────────────────────────────┴─────────┴───────────┴────────────────┴───────────────┴───────────────────┴─────────────┴────────┴───────┘
</pre>
</div>
</div>
</section>
<section id="topk-includes-nulls" class="level3">
<h3 class="anchored" data-anchor-id="topk-includes-nulls">TopK includes NULLs</h3>
<p>This could technically be considered a breaking change or bug fix. Regardless, <code>topk</code> now includes NULLs by default:</p>
<div id="878b64e2" class="cell" data-execution_count="26">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb31" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb31-1">t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sex"</span>].topk(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="25">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> sex    </span>┃<span style="font-weight: bold"> CountStar(penguins) </span>┃
┡━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>               │
├────────┼─────────────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">male  </span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">168</span> │
│ <span style="color: #008000; text-decoration-color: #008000">female</span> │                 <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">165</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span> │
└────────┴─────────────────────┘
</pre>
</div>
</div>
</section>
<section id="order-and-group-by-variadic-arguments" class="level3">
<h3 class="anchored" data-anchor-id="order-and-group-by-variadic-arguments">Order and group by variadic arguments</h3>
<p>For consistency with other methods, <code>order_by</code> and <code>group_by</code> now accept variadic arguments:</p>
<div id="463db3d3" class="cell" data-execution_count="27">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb32" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb32-1">t.order_by(t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"body_mass_g"</span>].desc(), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"island"</span>, t[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"species"</span>])</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="26">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> species </span>┃<span style="font-weight: bold"> island </span>┃<span style="font-weight: bold"> bill_length_mm </span>┃<span style="font-weight: bold"> bill_depth_mm </span>┃<span style="font-weight: bold"> flipper_length_mm </span>┃<span style="font-weight: bold"> body_mass_g </span>┃<span style="font-weight: bold"> sex    </span>┃<span style="font-weight: bold"> year  </span>┃
┡━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├─────────┼────────┼────────────────┼───────────────┼───────────────────┼─────────────┼────────┼───────┤
│ <span style="color: #008000; text-decoration-color: #008000">Gentoo </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">49.2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">15.2</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">221</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6300</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Gentoo </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">59.6</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.0</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">230</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6050</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Gentoo </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">51.1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16.3</span> │               <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">220</span> │        <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6000</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2008</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────┴────────┴────────────────┴───────────────┴───────────────────┴─────────────┴────────┴───────┘
</pre>
</div>
</div>
<div id="e4efcc3e" class="cell" data-execution_count="28">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb33" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb33-1">grouped <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb33-2">    t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"species"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"island"</span>)</span>
<span id="cb33-3">    .agg(count<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t.count())</span>
<span id="cb33-4">    .order_by(ibis._[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"count"</span>].desc())</span>
<span id="cb33-5">)</span>
<span id="cb33-6">grouped</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="27">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> species   </span>┃<span style="font-weight: bold"> island </span>┃<span style="font-weight: bold"> count </span>┃
┡━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├───────────┼────────┼───────┤
│ <span style="color: #008000; text-decoration-color: #008000">Gentoo   </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">124</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Chinstrap</span> │ <span style="color: #008000; text-decoration-color: #008000">Dream </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">68</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie   </span> │ <span style="color: #008000; text-decoration-color: #008000">Dream </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">56</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└───────────┴────────┴───────┘
</pre>
</div>
</div>
<p>You can still pass in a list or tuple if you prefer.</p>
</section>
<section id="unwrap-json-values" class="level3">
<h3 class="anchored" data-anchor-id="unwrap-json-values">Unwrap JSON values</h3>
<p>You can now unwrap JSON values into backend-native values:</p>
<div id="3f816114" class="cell" data-execution_count="29">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb34" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb34-1">data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> {</span>
<span id="cb34-2">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"jstring"</span>: [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'"a"'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'""'</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"null"</span>],</span>
<span id="cb34-3">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"jbool"</span>: [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"true"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"false"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"null"</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>],</span>
<span id="cb34-4">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"jint"</span>: [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"1"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"null"</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2"</span>],</span>
<span id="cb34-5">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"jfloat"</span>: [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"42.42"</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"null"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"37.37"</span>],</span>
<span id="cb34-6">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"jmap"</span>: [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'{"a": 1}'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"null"</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{}</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span>],</span>
<span id="cb34-7">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"jarray"</span>: [<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"[]"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"null"</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'[</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{}</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">,"1",2]'</span>],</span>
<span id="cb34-8">}</span>
<span id="cb34-9"></span>
<span id="cb34-10">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.memtable(data, schema<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">dict</span>.fromkeys(data.keys(), <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"json"</span>))</span>
<span id="cb34-11">t</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="28">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━┳━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━┓
┃<span style="font-weight: bold"> jstring </span>┃<span style="font-weight: bold"> jbool </span>┃<span style="font-weight: bold"> jint </span>┃<span style="font-weight: bold"> jfloat </span>┃<span style="font-weight: bold"> jmap     </span>┃<span style="font-weight: bold"> jarray </span>┃
┡━━━━━━━━━╇━━━━━━━╇━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">json</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">json</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">json</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">json</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">json</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">json</span>   │
├─────────┼───────┼──────┼────────┼──────────┼────────┤
│ <span style="color: #008000; text-decoration-color: #008000">'a'</span>     │ <span style="color: #00ff00; text-decoration-color: #00ff00; font-style: italic">True</span>  │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span>    │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">42.42</span>  │ <span style="font-weight: bold">{</span><span style="color: #008000; text-decoration-color: #008000">'a'</span>: <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span><span style="font-weight: bold">}</span> │ <span style="font-weight: bold">[]</span>     │
│ <span style="color: #008000; text-decoration-color: #008000">''</span>      │ <span style="color: #ff0000; text-decoration-color: #ff0000; font-style: italic">False</span> │ <span style="color: #800080; text-decoration-color: #800080; font-style: italic">None</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │ <span style="color: #800080; text-decoration-color: #800080; font-style: italic">None</span>     │ <span style="color: #800080; text-decoration-color: #800080; font-style: italic">None</span>   │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>    │ <span style="color: #800080; text-decoration-color: #800080; font-style: italic">None</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #800080; text-decoration-color: #800080; font-style: italic">None</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │
└─────────┴───────┴──────┴────────┴──────────┴────────┘
</pre>
</div>
</div>
<div id="01424d74" class="cell" data-execution_count="30">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb35" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb35-1">t.select(unwrapped<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t.jstring.unwrap_as(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>), original<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t.jstring)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="29">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━┳━━━━━━━━━━┓
┃<span style="font-weight: bold"> unwrapped </span>┃<span style="font-weight: bold"> original </span>┃
┡━━━━━━━━━━━╇━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">json</span>     │
├───────────┼──────────┤
│ <span style="color: #008000; text-decoration-color: #008000">a        </span> │ <span style="color: #008000; text-decoration-color: #008000">'a'</span>      │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">~</span>         │ <span style="color: #008000; text-decoration-color: #008000">''</span>       │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>     │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>        │
└───────────┴──────────┘
</pre>
</div>
</div>
<div id="0d4a79ef" class="cell" data-execution_count="31">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb36" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb36-1">t.select(unwrapped<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t.jbool.unwrap_as(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"bool"</span>), original<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>t.jbool)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="30">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━┳━━━━━━━━━━┓
┃<span style="font-weight: bold"> unwrapped </span>┃<span style="font-weight: bold"> original </span>┃
┡━━━━━━━━━━━╇━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">boolean</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">json</span>     │
├───────────┼──────────┤
│ True      │ <span style="color: #00ff00; text-decoration-color: #00ff00; font-style: italic">True</span>     │
│ False     │ <span style="color: #ff0000; text-decoration-color: #ff0000; font-style: italic">False</span>    │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>      │ <span style="color: #800080; text-decoration-color: #800080; font-style: italic">None</span>     │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>        │
└───────────┴──────────┘
</pre>
</div>
</div>
</section>
<section id="create-more-backends-with-empty-urls" class="level3">
<h3 class="anchored" data-anchor-id="create-more-backends-with-empty-urls">Create more backends with empty URLs</h3>
<p>For convenience, you can now create backends with an empty URL for Dask, pandas, Polars, and DataFusion:</p>
<div id="04aee545" class="cell" data-execution_count="32">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb37" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb37-1">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"dask://"</span>)</span>
<span id="cb37-2">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pandas://"</span>)</span>
<span id="cb37-3">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"polars://"</span>)</span>
<span id="cb37-4">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"datafusion://"</span>)</span></code></pre></div></div>
</div>
<p>This is in addition to the existing backend-specific connection methods:</p>
<div id="665d7f34" class="cell" data-execution_count="33">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb38" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb38-1">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.dask.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>()</span>
<span id="cb38-2">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.pandas.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>()</span>
<span id="cb38-3">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.polars.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>()</span>
<span id="cb38-4">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.datafusion.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>()</span></code></pre></div></div>
</div>
<p>Note that URL parameters are not meaningful with these backends. The main use case is more convenient connection swapping programmatically:</p>
<div id="594a73ab" class="cell" data-execution_count="34">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb39" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb39-1"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> backend <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> [</span>
<span id="cb39-2">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"duckdb"</span>,</span>
<span id="cb39-3">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sqlite"</span>,</span>
<span id="cb39-4">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pyspark"</span>,</span>
<span id="cb39-5">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"dask"</span>,</span>
<span id="cb39-6">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pandas"</span>,</span>
<span id="cb39-7">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"polars"</span>,</span>
<span id="cb39-8">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"datafusion"</span>,</span>
<span id="cb39-9">]:</span>
<span id="cb39-10">    con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>backend<span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">://"</span>)</span>
<span id="cb39-11">    <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(con)</span></code></pre></div></div>
<div class="cell-output cell-output-stdout">
<pre><code>&lt;ibis.backends.duckdb.Backend object at 0x31cd15750&gt;
&lt;ibis.backends.sqlite.Backend object at 0x31f5b8d50&gt;
&lt;ibis.backends.pyspark.Backend object at 0x31f7c46d0&gt;
&lt;ibis.backends.dask.Backend object at 0x31ce68c10&gt;
&lt;ibis.backends.pandas.Backend object at 0x340c84250&gt;
&lt;ibis.backends.polars.Backend object at 0x341418490&gt;
&lt;ibis.backends.datafusion.Backend object at 0x3414188d0&gt;</code></pre>
</div>
</div>
</section>
</section>
<section id="wrapping-up" class="level2">
<h2 class="anchored" data-anchor-id="wrapping-up">Wrapping up</h2>
<p>Ibis 9.0 is an exciting release that completes the transition to SQLGlot, adds a lot of new functionality, and welcomes a new committer to the project!</p>
<p>As always, try Ibis by <a href="../../install.html">installing</a> and <a href="../../tutorials/getting_started.qmd">getting started</a>.</p>
<p>If you run into any issues or find support is lacking for your backend, <a href="https://github.com/ibis-project/issues/new/choose">open an issue</a> or <a href="https://github.com/ibis-project/discussions/new/choose">discussion</a> and let us know!</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>release</category>
  <category>blog</category>
  <guid>https://ibis-project.org/posts/ibis-version-9.0.0-release/</guid>
  <pubDate>Wed, 01 May 2024 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Varchar in a haystack</title>
  <dc:creator>Tyler White</dc:creator>
  <link>https://ibis-project.org/posts/varchar-in-a-haystack/</link>
  <description><![CDATA[ 






<section id="the-scenario" class="level2">
<h2 class="anchored" data-anchor-id="the-scenario">The scenario</h2>
<p>You’re a data analyst, and a new ticket landed in your queue.</p>
<blockquote class="blockquote">
<p>Subject: Urgent: Data Discovery Needed for Critical Analysis</p>
<p>Hi Data Team,</p>
<p>I hope this message finds you well. I’m reaching out with an urgent request that directly impacts the company’s most critical project. We need to locate a specific value within our database but do not know which column it’s in. Unfortunately, we don’t have documentation for this particular table. We are looking for the value “NEEDLE” in the table.</p>
<p>We think it is in the X database, Y schema, and Z table. We appreciate your help with this urgent matter!</p>
</blockquote>
<p>Whelp, let’s give this a try.</p>
</section>
<section id="the-table" class="level2">
<h2 class="anchored" data-anchor-id="the-table">The table</h2>
<p>To set up this particular problem, we can use pandas to create a table with 5 columns and 100 rows. We can use the <code>at</code> method to update a row with the value “NEEDLE” to simulate what we need to find.</p>
<div id="a55889fb" class="cell" data-execution_count="1">
<details class="code-fold">
<summary>Code</summary>
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pandas <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pd</span>
<span id="cb1-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> random</span>
<span id="cb1-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> string</span>
<span id="cb1-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.interactive <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb1-5"></span>
<span id="cb1-6"></span>
<span id="cb1-7"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> random_string(length<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>):</span>
<span id="cb1-8">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">""</span>.join(</span>
<span id="cb1-9">        random.choice(string.ascii_letters <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span> string.digits) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> _ <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(length)</span>
<span id="cb1-10">    )</span>
<span id="cb1-11"></span>
<span id="cb1-12"></span>
<span id="cb1-13">data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [[random_string() <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> _ <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>)] <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> _ <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span>)]</span>
<span id="cb1-14">column_names <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> [<span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">f"col</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{</span>i<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">+</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">}</span><span class="ss" style="color: #20794D;
background-color: null;
font-style: inherit;">"</span> <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> i <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>)]</span>
<span id="cb1-15">df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pd.DataFrame(data, columns<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>column_names)</span>
<span id="cb1-16">df.at[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">42</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'col4'</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"NEEDLE"</span></span>
<span id="cb1-17">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.memtable(df, name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Z"</span>)</span></code></pre></div></div>
</details>
</div>
<div id="9070badd" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1">t</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="2">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> col1       </span>┃<span style="font-weight: bold"> col2       </span>┃<span style="font-weight: bold"> col3       </span>┃<span style="font-weight: bold"> col4       </span>┃<span style="font-weight: bold"> col5       </span>┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │
├────────────┼────────────┼────────────┼────────────┼────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">BYjQTOia1f</span> │ <span style="color: #008000; text-decoration-color: #008000">pik8UBUQ06</span> │ <span style="color: #008000; text-decoration-color: #008000">JUhXgdJGCn</span> │ <span style="color: #008000; text-decoration-color: #008000">46O1svpUSW</span> │ <span style="color: #008000; text-decoration-color: #008000">hr0dmVIOkU</span> │
│ <span style="color: #008000; text-decoration-color: #008000">e973mLNHa1</span> │ <span style="color: #008000; text-decoration-color: #008000">eYWTWYGQiK</span> │ <span style="color: #008000; text-decoration-color: #008000">qfiMKFjwIu</span> │ <span style="color: #008000; text-decoration-color: #008000">KvtiH1nDL3</span> │ <span style="color: #008000; text-decoration-color: #008000">0MXkme4lzG</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ZeyJBlraO8</span> │ <span style="color: #008000; text-decoration-color: #008000">9mk8NSwZBH</span> │ <span style="color: #008000; text-decoration-color: #008000">cHndFLt80M</span> │ <span style="color: #008000; text-decoration-color: #008000">urHnrgqtfA</span> │ <span style="color: #008000; text-decoration-color: #008000">kbVxhOiSD0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">hRodaFvAES</span> │ <span style="color: #008000; text-decoration-color: #008000">EdTEcamHEV</span> │ <span style="color: #008000; text-decoration-color: #008000">EUZp5YpgNS</span> │ <span style="color: #008000; text-decoration-color: #008000">46R7bYiiqa</span> │ <span style="color: #008000; text-decoration-color: #008000">DIV8BWncTc</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Rm8IdoOhlh</span> │ <span style="color: #008000; text-decoration-color: #008000">Lrrnf46MJd</span> │ <span style="color: #008000; text-decoration-color: #008000">lNVB18l0C7</span> │ <span style="color: #008000; text-decoration-color: #008000">fLTaFvH1We</span> │ <span style="color: #008000; text-decoration-color: #008000">ORIdNoFqbB</span> │
│ <span style="color: #008000; text-decoration-color: #008000">wUZRdFYUMo</span> │ <span style="color: #008000; text-decoration-color: #008000">oWovrqqovm</span> │ <span style="color: #008000; text-decoration-color: #008000">loW7UhXQVE</span> │ <span style="color: #008000; text-decoration-color: #008000">Q5dXxPfaDA</span> │ <span style="color: #008000; text-decoration-color: #008000">d11VR54kbJ</span> │
│ <span style="color: #008000; text-decoration-color: #008000">jKNEfRoDXK</span> │ <span style="color: #008000; text-decoration-color: #008000">vOlfswJ9Hk</span> │ <span style="color: #008000; text-decoration-color: #008000">pFDTRA6tEf</span> │ <span style="color: #008000; text-decoration-color: #008000">AqmI3RyjJW</span> │ <span style="color: #008000; text-decoration-color: #008000">UawVq7XqaB</span> │
│ <span style="color: #008000; text-decoration-color: #008000">h1RqXsGL5c</span> │ <span style="color: #008000; text-decoration-color: #008000">vypyFxZWoP</span> │ <span style="color: #008000; text-decoration-color: #008000">zzMYrytrb6</span> │ <span style="color: #008000; text-decoration-color: #008000">0bbc0pDxQi</span> │ <span style="color: #008000; text-decoration-color: #008000">ncRR7A10sT</span> │
│ <span style="color: #008000; text-decoration-color: #008000">CHCKfLzLV0</span> │ <span style="color: #008000; text-decoration-color: #008000">eVv8jtfcV0</span> │ <span style="color: #008000; text-decoration-color: #008000">kKrVpaLs8i</span> │ <span style="color: #008000; text-decoration-color: #008000">HeUfW0VABs</span> │ <span style="color: #008000; text-decoration-color: #008000">5XyaKrpYk5</span> │
│ <span style="color: #008000; text-decoration-color: #008000">1FVJbxQUQt</span> │ <span style="color: #008000; text-decoration-color: #008000">s9p2LiMYf9</span> │ <span style="color: #008000; text-decoration-color: #008000">two9V1WZpa</span> │ <span style="color: #008000; text-decoration-color: #008000">Y70W0uPLdk</span> │ <span style="color: #008000; text-decoration-color: #008000">gflm7xvysr</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>          │
└────────────┴────────────┴────────────┴────────────┴────────────┘
</pre>
</div>
</div>
</section>
<section id="the-solutions" class="level2">
<h2 class="anchored" data-anchor-id="the-solutions">The solution(s)</h2>
<p>There are a few ways we could solve this.</p>
<section id="option-1-write-sql" class="level4">
<h4 class="anchored" data-anchor-id="option-1-write-sql">Option 1: write SQL</h4>
<p>We could always spell it out with SQL, including each column that we want to check in the <code>WHERE</code> clause. In this scenario, we know each column is a varchar, so we can check each one for the value “NEEDLE”.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode sql code-with-copy"><code class="sourceCode sql"><span id="cb3-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">SELECT</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb3-2"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">FROM</span> Z</span>
<span id="cb3-3"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">WHERE</span> col1 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'NEEDLE'</span></span>
<span id="cb3-4">   <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">OR</span> col2 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'NEEDLE'</span></span>
<span id="cb3-5">   <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">OR</span> col3 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'NEEDLE'</span></span>
<span id="cb3-6">   <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">OR</span> col4 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'NEEDLE'</span></span>
<span id="cb3-7">   <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">OR</span> col5 <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'NEEDLE'</span>;</span></code></pre></div></div>
<p>This can be time-consuming. You might want something a little more dynamic.</p>
</section>
<section id="option-2-write-dynamic-sql" class="level4">
<h4 class="anchored" data-anchor-id="option-2-write-dynamic-sql">Option 2: write dynamic SQL</h4>
<p>Dynamically constructing the SQL query at runtime can be more complex, but it offers more flexibility, especially if we have more than five columns.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode sql code-with-copy"><code class="sourceCode sql"><span id="cb4-1">DO $$</span>
<span id="cb4-2"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">DECLARE</span></span>
<span id="cb4-3">    sql text;</span>
<span id="cb4-4">    where_clause text <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">''</span>;</span>
<span id="cb4-5"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">BEGIN</span></span>
<span id="cb4-6">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">SELECT</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">INTO</span> where_clause</span>
<span id="cb4-7">           string_agg(quote_ident(column_name) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">||</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">' = </span><span class="ch" style="color: #20794D;
background-color: null;
font-style: inherit;">''</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">NEEDLE</span><span class="ch" style="color: #20794D;
background-color: null;
font-style: inherit;">''</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">' OR '</span>)</span>
<span id="cb4-8">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">FROM</span> information_schema.<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">columns</span></span>
<span id="cb4-9">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">WHERE</span> table_name <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'Z'</span></span>
<span id="cb4-10">        <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">AND</span> table_schema <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'public'</span></span>
<span id="cb4-11">        <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">AND</span> data_type <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">IN</span> (<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'character varying'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'varchar'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'text'</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'char'</span>);</span>
<span id="cb4-12"></span>
<span id="cb4-13">    sql <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">:=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'SELECT *</span></span>
<span id="cb4-14"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">            FROM Z</span></span>
<span id="cb4-15"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">            WHERE '</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">||</span> where_clause;</span>
<span id="cb4-16"></span>
<span id="cb4-17">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">EXECUTE</span> sql;</span>
<span id="cb4-18"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">END</span> $$;</span></code></pre></div></div>
<p>This can be difficult to troubleshoot, and it is easy to get lost in the quote characters.</p>
</section>
<section id="option-3-use-ibis" class="level4">
<h4 class="anchored" data-anchor-id="option-3-use-ibis">Option 3: use Ibis</h4>
<p>We can make use of <a href="../../reference/selectors.html"><code>selectors</code></a>!</p>
<div id="b8d80623" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(s.if_any(s.of_type(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"string"</span>), _ <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"NEEDLE"</span>))</span>
<span id="cb5-2"></span>
<span id="cb5-3">expr</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="3">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> col1       </span>┃<span style="font-weight: bold"> col2       </span>┃<span style="font-weight: bold"> col3       </span>┃<span style="font-weight: bold"> col4   </span>┃<span style="font-weight: bold"> col5       </span>┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>     │
├────────────┼────────────┼────────────┼────────┼────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">oB66pvwIS3</span> │ <span style="color: #008000; text-decoration-color: #008000">evpFlTLzgM</span> │ <span style="color: #008000; text-decoration-color: #008000">OqiRxZW7Ex</span> │ <span style="color: #008000; text-decoration-color: #008000">NEEDLE</span> │ <span style="color: #008000; text-decoration-color: #008000">VBxPEgTB8j</span> │
└────────────┴────────────┴────────────┴────────┴────────────┘
</pre>
</div>
</div>
<p>We can see the <strong>NEEDLE</strong> value hiding in <code>col4</code>.</p>
</section>
</section>
<section id="the-explanation" class="level2">
<h2 class="anchored" data-anchor-id="the-explanation">The explanation</h2>
<p><code>s.of_type("string")</code> was used to select string columns, then <code>s.if_any()</code> builds up the ORs. The <code>_ == "NEEDLE"</code> part is the condition itself, checking each column for the value.</p>
<p>Here’s the SQL that was generated to help us find it, which is quite similar to what we would have had to write if we had gone with Option 1.</p>
<div id="c7df06d6" class="cell" data-execution_count="4">
<div class="cell-output cell-output-display cell-output-markdown" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode sql code-with-copy"><code class="sourceCode sql"><span id="cb6-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">SELECT</span></span>
<span id="cb6-2">  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"col1"</span>,</span>
<span id="cb6-3">  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"col2"</span>,</span>
<span id="cb6-4">  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"col3"</span>,</span>
<span id="cb6-5">  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"col4"</span>,</span>
<span id="cb6-6">  <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"col5"</span></span>
<span id="cb6-7"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">FROM</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"Z"</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">AS</span> <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span></span>
<span id="cb6-8"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">WHERE</span></span>
<span id="cb6-9">  (</span>
<span id="cb6-10">    (</span>
<span id="cb6-11">      (</span>
<span id="cb6-12">        (</span>
<span id="cb6-13">          <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"col1"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'NEEDLE'</span></span>
<span id="cb6-14">        ) <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">OR</span> (</span>
<span id="cb6-15">          <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"col2"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'NEEDLE'</span></span>
<span id="cb6-16">        )</span>
<span id="cb6-17">      )</span>
<span id="cb6-18">      <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">OR</span> (</span>
<span id="cb6-19">        <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"col3"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'NEEDLE'</span></span>
<span id="cb6-20">      )</span>
<span id="cb6-21">    )</span>
<span id="cb6-22">    <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">OR</span> (</span>
<span id="cb6-23">      <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"col4"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'NEEDLE'</span></span>
<span id="cb6-24">    )</span>
<span id="cb6-25">  )</span>
<span id="cb6-26">  <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">OR</span> (</span>
<span id="cb6-27">    <span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"t0"</span>.<span class="ot" style="color: #003B4F;
background-color: null;
font-style: inherit;">"col5"</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'NEEDLE'</span></span>
<span id="cb6-28">  )</span></code></pre></div></div>
</div>
</div>
</section>
<section id="the-conclusion" class="level2">
<h2 class="anchored" data-anchor-id="the-conclusion">The conclusion</h2>
<p>Now that we’ve found the <code>"NEEDLE"</code> value, we can provide the information to the requester. Urgent requests like this require quick and precise responses.</p>
<p>Our use of Ibis demonstrates how easy it is to simplify navigating large datasets, and in this case, undocumented ones.</p>
<p>Please get in touch with us on <a href="https://github.com/ibis-project">GitHub</a> or <a href="https://ibis-project.zulipchat.com/">Zulip</a>. We’d love to hear from you!</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>data analysis</category>
  <category>puzzle</category>
  <guid>https://ibis-project.org/posts/varchar-in-a-haystack/</guid>
  <pubDate>Fri, 12 Apr 2024 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/varchar-in-a-haystack/thumbnail.png" medium="image" type="image/png" height="144" width="144"/>
</item>
<item>
  <title>Portable dataflows with Ibis and Hamilton</title>
  <dc:creator>Thierry Jean</dc:creator>
  <link>https://ibis-project.org/posts/hamilton-ibis/</link>
  <description><![CDATA[ 






<section id="introduction" class="level2">
<h2 class="anchored" data-anchor-id="introduction">Introduction</h2>
<p>This post showcases how Ibis and <a href="https://hamilton.dagworks.io/en/latest/">Hamilton</a> enable dataflows that span execution over SQL and Python. Ibis is a portable dataframe library to write procedural data transformations in Python and be able to execute them directly on various SQL backends (DuckDB, Snowflake, Postgres, Flink, see <a href="https://ibis-project.org/support_matrix">full list</a>). Hamilton provides a declarative way to define testable, modular, self-documenting dataflows, that encode lineage and metadata.</p>
<p>Let’s introduce Ibis before exploring how it pairs with Hamilton.</p>
</section>
<section id="standalone-ibis" class="level2">
<h2 class="anchored" data-anchor-id="standalone-ibis">Standalone Ibis</h2>
<p>Here’s an Ibis code snippet to load data from a parquet file, compute features, select columns, and filter rows, illustrating typical feature engineering operations.</p>
<p>Reading the code, you’ll notice that:</p>
<ul>
<li>We use “expression chaining”, meaning there’s a series of <code>.method()</code> attached one after another.</li>
<li>The variable <code>ibis._</code> is a special character referring to the current expression e.g., <code>ibis._.pet</code> accesses the column “pet” of the current table.</li>
<li>The table method <code>.mutate(col1=, col2=, ...)</code> assigns new columns or overwrites existing ones.</li>
</ul>
<div id="525da212" class="cell" data-execution_count="1">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb1-2"></span>
<span id="cb1-3">url <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"https://storage.googleapis.com/ibis-blog-data-public/hamilton-ibis/absenteeism.parquet"</span></span>
<span id="cb1-4">feature_set <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb1-5">  ibis.read_parquet(sources<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>url, table_name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"absenteeism"</span>)</span>
<span id="cb1-6">  .rename(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"snake_case"</span>)</span>
<span id="cb1-7">  .mutate(  <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># allows us to define new columns</span></span>
<span id="cb1-8">    has_children<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis.ifelse(ibis._.son <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>),</span>
<span id="cb1-9">    has_pet<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis.ifelse(ibis._.pet <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>),</span>
<span id="cb1-10">    is_summer_brazil<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._.month_of_absence.isin([<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">12</span>]),</span>
<span id="cb1-11">  ).select(</span>
<span id="cb1-12">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"id"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"has_children"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"has_pet"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"is_summer_brazil"</span>,</span>
<span id="cb1-13">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"service_time"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"seasons"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"disciplinary_failure"</span>,</span>
<span id="cb1-14">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"absenteeism_time_in_hours"</span></span>
<span id="cb1-15">  )</span>
<span id="cb1-16">)</span></code></pre></div></div>
</div>
<section id="challenge-1-maintain-and-test-complex-data-transformations" class="level3">
<h3 class="anchored" data-anchor-id="challenge-1-maintain-and-test-complex-data-transformations">Challenge 1 – Maintain and test complex data transformations</h3>
<p>Ibis has an SQL-like syntax and supports chaining operations, allowing for powerful queries in a few lines of code. Conversely, there’s a risk of sprawling complexity as expressions are appended, making them harder to test and debug. Preventing this issue requires a lot of upfront discipline and refactoring.</p>
</section>
<section id="challenge-2-orchestrate-ibis-code-in-production" class="level3">
<h3 class="anchored" data-anchor-id="challenge-2-orchestrate-ibis-code-in-production">Challenge 2 – Orchestrate Ibis code in production</h3>
<p>Ibis alleviates a major pain point by enabling data transformations to work across backends. However, moving from dev to prod still requires some code changes such as changing backend connectors, swapping unsupported operators, adding some orchestration and logging execution, wanting to reuse prior code, etc. This is outside the scope of the Ibis project and is expected to be enabled by other means, which usually means bespoke constructs that turn into technical debt.</p>
</section>
</section>
<section id="what-is-hamilton" class="level2">
<h2 class="anchored" data-anchor-id="what-is-hamilton">What is Hamilton?</h2>
<p>Hamilton is a general-purpose framework to write dataflows using regular Python functions. At the core, each function defines a transformation and its parameters indicates its dependencies. Hamilton automatically connects individual functions into a <a href="https://en.wikipedia.org/wiki/Directed_acyclic_graph">directed acyclic graph</a> (DAG) that can be executed, visualized, optimized, and reported on.</p>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/hamilton-ibis/hamilton_abc.png" class="img-fluid figure-img"></p>
<figcaption>The ABC of Hamilton</figcaption>
</figure>
</div>
</section>
<section id="how-hamilton-complements-ibis" class="level2">
<h2 class="anchored" data-anchor-id="how-hamilton-complements-ibis">How Hamilton complements Ibis</h2>
<p>Hamilton was initially developed to <a href="https://blog.dagworks.io/p/tidy-production-pandas-with-hamilton-3b759a2bf562">structure pandas code for a large catalog of features</a>, and has since been adopted by multiple organizations since, and expanded to cover any python object type (Polars, PySpark, ML Models, Numpy, you custom type, etc). Its syntax encourages users to chunk code into meaningful and reusable components, which facilitates documentation, unit testing, code reviews, and improves iteration speed, and the dev to production process. These benefits directly translate to organizing Ibis code.</p>
<section id="solution-1-structure-your-ibis-code-with-hamilton" class="level3">
<h3 class="anchored" data-anchor-id="solution-1-structure-your-ibis-code-with-hamilton">Solution 1 – Structure your Ibis code with Hamilton</h3>
<p>Now, we’ll refactor the above Ibis code to use Hamilton. Users have the flexibility to chunk code (i.e., what the contents of a function is), at the table or the column-level depending on the needed granularity. This modularity is particularly beneficial to Ibis because:</p>
<ul>
<li><p>Well-scoped functions with type annotations and docstring are easier to understand for new Ibis users and facilitate onboarding.</p></li>
<li><p>Unit testing and data validation becomes easier with smaller expressions. These checks become more important when working across backends since the <a href="https://ibis-project.org/support_matrix">operation coverage varies</a> and bugs may arise.</p></li>
</ul>
<section id="table-level-dataflow" class="level4">
<h4 class="anchored" data-anchor-id="table-level-dataflow">Table-level dataflow</h4>
<p>Table-level operations might feel most familiar to SQL and Spark users. Also, Ibis + Hamilton is reminiscent of <a href="https://www.getdbt.com/">dbt</a> for the Python ecosystem.</p>
<p>Working with tables is very efficient when your number of columns/features is limited, and you don’t need full column level lineage. As you want to reuse components, you can progressively breakdown “table-level code” in to “column-level code”.</p>
<p>The initial Ibis code is now 3 functions with type annotations and docstrings. We have a clear sense of the expected external outputs and we could implement schema checks between functions.</p>
<div id="9185b4b0" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> typing <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Optional</span>
<span id="cb2-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb2-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.expr.types <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> ir</span>
<span id="cb2-4"></span>
<span id="cb2-5"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> raw_table(raw_data_path: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.Table:</span>
<span id="cb2-6">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Load parquet from `raw_data_path` into a Table expression</span></span>
<span id="cb2-7"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    and format column names to snakecase</span></span>
<span id="cb2-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb2-9">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> (</span>
<span id="cb2-10">        ibis.read_parquet(sources<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>raw_data_path, table_name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"absenteism"</span>)</span>
<span id="cb2-11">        .rename(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"snake_case"</span>)</span>
<span id="cb2-12">    )</span>
<span id="cb2-13"></span>
<span id="cb2-14"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> feature_table(raw_table: ir.Table) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.Table:</span>
<span id="cb2-15">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Add to `raw_table` the feature columns `has_children`</span></span>
<span id="cb2-16"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    `has_pet`, and `is_summer_brazil`</span></span>
<span id="cb2-17"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb2-18">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> raw_table.mutate(</span>
<span id="cb2-19">        has_children<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>(ibis.ifelse(ibis._.son <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>)),</span>
<span id="cb2-20">        has_pet<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis.ifelse(ibis._.pet <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>),</span>
<span id="cb2-21">        is_summer_brazil<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis._.month_of_absence.isin([<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">12</span>]),</span>
<span id="cb2-22">    )</span>
<span id="cb2-23"></span>
<span id="cb2-24"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> feature_set(</span>
<span id="cb2-25">    feature_table: ir.Table,</span>
<span id="cb2-26">    feature_selection: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>[<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>],</span>
<span id="cb2-27">    condition: Optional[ibis.common.deferred.Deferred] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>,</span>
<span id="cb2-28">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.Table:</span>
<span id="cb2-29">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Select feature columns and filter rows"""</span></span>
<span id="cb2-30">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> feature_table[feature_selection].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(condition)</span></code></pre></div></div>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/hamilton-ibis/table_lineage.png" class="img-fluid figure-img"></p>
<figcaption>Table-level lineage with Hamilton</figcaption>
</figure>
</div>
</section>
<section id="column-level-dataflow" class="level4">
<h4 class="anchored" data-anchor-id="column-level-dataflow">Column-level dataflow</h4>
<p>Hamilton was initially built to expose and manage column-level operations, which is most common in dataframe libraries (pandas, Dask, polars).</p>
<p>Column-level code leads to fully-reusable feature definitions and a highly granular level of lineage. Notably, this allows one to <a href="https://hamilton.dagworks.io/en/latest/how-tos/use-hamilton-for-lineage/">trace sensitive data and evaluate downstream impacts of code changes</a>. However, it is more verbose to get started with, but remember that code is read more often than written.</p>
<p>Now, the raw_table is loaded and the columns <code>son</code>, <code>pet</code>, and <code>month_of_absence</code> are extracted to engineer new features. After transformations, features are joined with <code>raw_table</code> to create <code>feature_table</code>.</p>
<div id="1e8b429c" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb3-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.expr.types <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> ir</span>
<span id="cb3-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> hamilton.function_modifiers <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> extract_columns</span>
<span id="cb3-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> hamilton.plugins <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis_extensions</span>
<span id="cb3-5"></span>
<span id="cb3-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># extract specific columns from the table</span></span>
<span id="cb3-7"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@extract_columns</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"son"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pet"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"month_of_absence"</span>)</span>
<span id="cb3-8"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> raw_table(raw_data_path: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.Table:</span>
<span id="cb3-9">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Load the parquet found at `raw_data_path` into a Table expression</span></span>
<span id="cb3-10"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    and format columns to snakecase</span></span>
<span id="cb3-11"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb3-12">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> (</span>
<span id="cb3-13">        ibis.read_parquet(sources<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>raw_data_path, table_name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"absenteism"</span>)</span>
<span id="cb3-14">        .rename(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"snake_case"</span>)</span>
<span id="cb3-15">    )</span>
<span id="cb3-16"></span>
<span id="cb3-17"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># accesses a single column from `raw_table`</span></span>
<span id="cb3-18"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> has_children(son: ir.Column) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.BooleanColumn:</span>
<span id="cb3-19">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""True if someone has any children"""</span></span>
<span id="cb3-20">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> ibis.ifelse(son <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>)</span>
<span id="cb3-21"></span>
<span id="cb3-22"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># narrows the return type from `ir.Column` to `ir.BooleanColumn`</span></span>
<span id="cb3-23"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> has_pet(pet: ir.Column) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.BooleanColumn:</span>
<span id="cb3-24">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""True if someone has any pets"""</span></span>
<span id="cb3-25">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> ibis.ifelse(pet <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>, <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">False</span>).cast(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">bool</span>)</span>
<span id="cb3-26"></span>
<span id="cb3-27"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># typing and docstring provides business context to features</span></span>
<span id="cb3-28"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> is_summer_brazil(month_of_absence: ir.Column) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.BooleanColumn:</span>
<span id="cb3-29">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""True if it is summer in Brazil during this month</span></span>
<span id="cb3-30"></span>
<span id="cb3-31"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    People in the northern hemisphere are likely to take vacations</span></span>
<span id="cb3-32"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    to warm places when it's cold locally</span></span>
<span id="cb3-33"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb3-34">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> month_of_absence.isin([<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">12</span>])</span>
<span id="cb3-35"></span>
<span id="cb3-36"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> feature_table(</span>
<span id="cb3-37">    raw_table: ir.Table,</span>
<span id="cb3-38">    has_children: ir.BooleanColumn,</span>
<span id="cb3-39">    has_pet: ir.BooleanColumn,</span>
<span id="cb3-40">    is_summer_brazil: ir.BooleanColumn,</span>
<span id="cb3-41">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.Table:</span>
<span id="cb3-42">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Join computed features to the `raw_data` table"""</span></span>
<span id="cb3-43">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> raw_table.mutate(</span>
<span id="cb3-44">        has_children<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>has_children,</span>
<span id="cb3-45">        has_pet<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>has_pet,</span>
<span id="cb3-46">        is_summer_brazil<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>is_summer_brazil,</span>
<span id="cb3-47">    )</span>
<span id="cb3-48"></span>
<span id="cb3-49"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> feature_set(</span>
<span id="cb3-50">    feature_table: ir.Table,</span>
<span id="cb3-51">    feature_selection: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">list</span>[<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>],</span>
<span id="cb3-52">    condition: Optional[ibis.common.deferred.Deferred] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>,</span>
<span id="cb3-53">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.Table:</span>
<span id="cb3-54">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Select feature columns and filter rows"""</span></span>
<span id="cb3-55">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> feature_table[feature_selection].<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(condition)</span></code></pre></div></div>
</div>
<div class="quarto-figure quarto-figure-center">
<figure class="figure">
<p><img src="https://ibis-project.org/posts/hamilton-ibis/column_lineage.png" class="img-fluid figure-img"></p>
<figcaption>Column-level lineage with Hamilton</figcaption>
</figure>
</div>
</section>
</section>
<section id="solution-2-orchestrate-ibis-anywhere" class="level3">
<h3 class="anchored" data-anchor-id="solution-2-orchestrate-ibis-anywhere">Solution 2 – Orchestrate Ibis anywhere</h3>
<p>Hamilton is an ideal way to orchestrate Ibis code because it has a very small dependency footprint and will run anywhere Python does (script, notebook, <a href="https://hamilton.dagworks.io/en/latest/integrations/fastapi/">FastAPI</a>, <a href="https://hamilton.dagworks.io/en/latest/integrations/streamlit/">Streamlit</a>, pyodide, etc.) In fact, the Hamilton library only has four dependencies. You don’t need “framework code” to get started, just plain Python functions. When moving to production, Hamilton has all the necessary features to complement Ibis such as swapping components, configurations, and lifecycle hooks for logging, alerting, and telemetry.</p>
<p>A simple usage pattern of Hamilton + Ibis is to use the <code>@config.when</code> <a href="https://hamilton.dagworks.io/en/latest/concepts/function-modifiers/#select-functions-to-include">function modifier</a>. In the following example, we have alternative implementations for the backend connection, which will be used for computing and storing results. When running your code, specify in your config <code>backend="duckdb"</code> or <code>backend="bigquery"</code> to swap between the two.</p>
<div id="b6a17d31" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># ibis_dataflow.py</span></span>
<span id="cb4-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb4-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.expr.types <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> ir</span>
<span id="cb4-4"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> hamilton.function_modifiers <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> config</span>
<span id="cb4-5"></span>
<span id="cb4-6"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># ... entire dataflow definition</span></span>
<span id="cb4-7"></span>
<span id="cb4-8"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@config.when</span>(backend<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"duckdb"</span>)</span>
<span id="cb4-9"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> backend_connection__duckdb(</span>
<span id="cb4-10">    connection_string: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span></span>
<span id="cb4-11">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ibis.backends.BaseBackend:</span>
<span id="cb4-12">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Connect to DuckDB backend"""</span></span>
<span id="cb4-13">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> ibis.duckdb.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(connection_string)</span>
<span id="cb4-14"></span>
<span id="cb4-15"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@config.when</span>(backend<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"bigquery"</span>)</span>
<span id="cb4-16"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> backend_connection__bigquery(</span>
<span id="cb4-17">    project_id: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>,</span>
<span id="cb4-18">    dataset_id: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>,</span>
<span id="cb4-19">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ibis.backends.BaseBackend:</span>
<span id="cb4-20">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Connect to BigQuery backend</span></span>
<span id="cb4-21"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    Install dependencies via `pip install ibis-framework[bigquery]`</span></span>
<span id="cb4-22"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb4-23">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> ibis.bigquery.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(</span>
<span id="cb4-24">        project_id<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>project_id,</span>
<span id="cb4-25">        dataset_id<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>dataset_id,</span>
<span id="cb4-26">    )</span>
<span id="cb4-27"></span>
<span id="cb4-28"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> insert_results(</span>
<span id="cb4-29">    backend_connection: ibis.backends.BaseBackend,</span>
<span id="cb4-30">    result_table: ir.Table,</span>
<span id="cb4-31">    table_name: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span></span>
<span id="cb4-32">) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">None</span>:</span>
<span id="cb4-33">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Execute expression and insert results"""</span></span>
<span id="cb4-34">    backend_connection.insert(</span>
<span id="cb4-35">        table_name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>table_name,</span>
<span id="cb4-36">        obj<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>result_table</span>
<span id="cb4-37">    )</span></code></pre></div></div>
</div>
</section>
</section>
<section id="how-ibis-complements-hamilton" class="level1">
<h1>How Ibis complements Hamilton</h1>
<section id="performance-boost" class="level2">
<h2 class="anchored" data-anchor-id="performance-boost">Performance boost</h2>
<p>Leveraging DuckDB as the default backend, Hamilton users migrating to Ibis should immediately find performance improvements both for local dev and production. In addition, the portability of Ibis has the potential to greatly reduce development time.</p>
</section>
<section id="atomic-data-transformation-documentation" class="level2">
<h2 class="anchored" data-anchor-id="atomic-data-transformation-documentation">Atomic data transformation documentation</h2>
<p>Hamilton can directly produce a dataflow visualization from code, helping with project documentation. Ibis pushes this one step further by providing a detailed view of the query plan and schemas. See this Ibis visualization for the column-level Hamilton dataflow defined above. It includes all renaming, type casting, and transformations steps (Please open the image in a new tab and zoom in 🔎).</p>
<p><img src="https://ibis-project.org/posts/hamilton-ibis/ibis_lineage.png" class="img-fluid"></p>
</section>
<section id="working-across-rows-with-user-defined-functions-udfs" class="level2">
<h2 class="anchored" data-anchor-id="working-across-rows-with-user-defined-functions-udfs">Working across rows with user-defined functions (UDFs)</h2>
<p>Hamilton and most backends are designed to work primarily on tables and columns, but sometimes you’d like to operate over a row (think of <code>pd.DataFrame.apply()</code>). However, pivoting tables is costly and manually iterating over rows to collect values and create a new column is quickly inconvenient. By using scalar user-defined functions (UDFs), Ibis makes it possible to execute arbitrary Python code on rows directly on the backend.</p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>Using <code>@ibis.udf.scalar.python</code> creates a non-vectorized function that iterates row-by-row. See <a href="https://ibis-project.org/reference/scalar-udfs">the docs</a> to use backend-specific UDFs with <code>@ibis.udf.scalar.builtin</code> and create vectorized scalar UDFs.</p>
</div>
</div>
<p>For instance, you could <a href="https://ibis-project.org/posts/duckdb-for-rag/">embed rows of a text column using an LLM API</a> using your existing data warehouse infrastructure.</p>
<div id="261a7d55" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb5-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.expr.types <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> ir</span>
<span id="cb5-3"></span>
<span id="cb5-4"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> documents(path: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.Table:</span>
<span id="cb5-5">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""load text documents from file"""</span></span>
<span id="cb5-6">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> ibis.read_parquet(sources<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>path, table_name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"documents"</span>)</span>
<span id="cb5-7"></span>
<span id="cb5-8"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># function name starts with `_` to prevent being added as a node</span></span>
<span id="cb5-9"><span class="at" style="color: #657422;
background-color: null;
font-style: inherit;">@ibis.udf.scalar.python</span></span>
<span id="cb5-10"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> _generate_summary(author: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>, text: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>, prompt_template: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>:</span>
<span id="cb5-11">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""UDF Function to call the OpenAI API line by line"""</span></span>
<span id="cb5-12">    prompt <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> prompt_template.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">format</span>(author<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>author, text<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>text)</span>
<span id="cb5-13">    client <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> openai.OpenAI(...)</span>
<span id="cb5-14">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">try</span>:</span>
<span id="cb5-15">        response <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> client.chat.completions.create(...)</span>
<span id="cb5-16">        return_value <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> response.choices[<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>].message.content</span>
<span id="cb5-17">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">except</span> <span class="pp" style="color: #AD0000;
background-color: null;
font-style: inherit;">Exception</span>:</span>
<span id="cb5-18">        return_value <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">""</span></span>
<span id="cb5-19">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> return_value</span>
<span id="cb5-20"></span>
<span id="cb5-21"></span>
<span id="cb5-22"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> prompt_template() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>:</span>
<span id="cb5-23">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"""summarize the following text from </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{author}</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;"> and add</span></span>
<span id="cb5-24"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    contextual notes based on it biography and other written work</span></span>
<span id="cb5-25"></span>
<span id="cb5-26"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    TEXT</span></span>
<span id="cb5-27"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    </span><span class="sc" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">{text}</span></span>
<span id="cb5-28"><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">    """</span></span>
<span id="cb5-29"></span>
<span id="cb5-30"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">def</span> summaries(documents: ir.Table, prompt_template: <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">str</span>) <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-&gt;</span> ir.Table:</span>
<span id="cb5-31">    <span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">"""Compute the UDF against the family"""</span></span>
<span id="cb5-32">    <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">return</span> documents.mutate(</span>
<span id="cb5-33">        summary<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_generated_summary(</span>
<span id="cb5-34">            _.author,</span>
<span id="cb5-35">            _.text,</span>
<span id="cb5-36">            prompt_template<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>prompt_template</span>
<span id="cb5-37">        )</span>
<span id="cb5-38">    )</span></code></pre></div></div>
</div>
<p><img src="https://ibis-project.org/posts/hamilton-ibis/udf.png" class="img-fluid"></p>
</section>
</section>
<section id="ibis-hamilton-a-natural-pairing" class="level1">
<h1>Ibis + Hamilton – a natural pairing</h1>
<ul>
<li><p><strong>What works in dev works in prod</strong>: Ibis and Hamilton allows you to write and structure code data transformations that are portable across backends for small and big data alike. The two being lightweight libraries, installing dependencies on remote workers is fast and you’re unlikely to ever encounter dependency conflicts.</p></li>
<li><p><strong>Maintainable and testable code</strong>: Modular functions facilitates writing high quality code and promotes reusability, compounding your engineering efforts. It becomes easier for new users to contribute to a dataflow and pull requests are merged faster.</p></li>
<li><p><strong>Greater visibility</strong>: With Hamilton and Ibis, you have incredible visualizations directly derived from your code. This is a superpower for documentation, allowing users to make sense of a dataflow, and also reason about changes.</p></li>
</ul>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>hamilton</category>
  <category>data engineering</category>
  <category>feature engineering</category>
  <guid>https://ibis-project.org/posts/hamilton-ibis/</guid>
  <pubDate>Tue, 02 Apr 2024 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/hamilton-ibis/thumbnail.png" medium="image" type="image/png" height="104" width="144"/>
</item>
<item>
  <title>Scaling to infinity and beyond: the Unix backend</title>
  <dc:creator>Phillip Cloud</dc:creator>
  <link>https://ibis-project.org/posts/unix-backend/</link>
  <description><![CDATA[ 






<section id="the-unix-backend-for-ibis" class="level2">
<h2 class="anchored" data-anchor-id="the-unix-backend-for-ibis">The Unix backend for Ibis</h2>
<p>We’re happy to announce a new Ibis backend built on the world’s best known web scale technology: Unix pipes.</p>
</section>
<section id="why" class="level2">
<h2 class="anchored" data-anchor-id="why">Why?</h2>
<p>Why not? Pipes rock and they automatically stream data between operators and scale to your hard drive.</p>
<p>What’s not to love?</p>
</section>
<section id="demo" class="level2">
<h2 class="anchored" data-anchor-id="demo">Demo</h2>
<p>All production ready backends ship with amazing demos.</p>
<p>The Unix backend is no different. Let’s see it in action.</p>
<p>First we’ll install the Unix backend.</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode bash code-with-copy"><code class="sourceCode bash"><span id="cb1-1"><span class="ex" style="color: null;
background-color: null;
font-style: inherit;">pip</span> install ibish</span></code></pre></div></div>
<p>Like all production-ready libraries <code>ibish</code> depends on the latest commit of <code>ibis-framework</code>.</p>
<p>Next we’ll download some data.</p>
<div id="3d238b30" class="cell" data-execution_count="1">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!</span>curl <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>LsS <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">'https://storage.googleapis.com/ibis-examples/penguins/20240322T125036Z-9aae2/penguins.csv.gz'</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">|</span> zcat <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> penguins.csv</span></code></pre></div></div>
</div>
<div id="4cabee38" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb3-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibish</span>
<span id="cb3-3"></span>
<span id="cb3-4"></span>
<span id="cb3-5">ibis.options.interactive <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span></span>
<span id="cb3-6"></span>
<span id="cb3-7">unix <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibish.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>({<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"p"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"penguins.csv"</span>})</span>
<span id="cb3-8"></span>
<span id="cb3-9">t <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> unix.table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"p"</span>)</span>
<span id="cb3-10">t</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="2">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> species </span>┃<span style="font-weight: bold"> island    </span>┃<span style="font-weight: bold"> bill_length_mm </span>┃<span style="font-weight: bold"> bill_depth_mm </span>┃<span style="font-weight: bold"> flipper_length_mm </span>┃<span style="font-weight: bold"> body_mass_g </span>┃<span style="font-weight: bold"> sex    </span>┃<span style="font-weight: bold"> year  </span>┃
┡━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├─────────┼───────────┼────────────────┼───────────────┼───────────────────┼─────────────┼────────┼───────┤
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.7</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">181.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3750.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.5</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.4</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">186.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3800.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40.3</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">195.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3250.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">36.7</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19.3</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">193.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3450.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.3</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20.6</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">190.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3650.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">38.9</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.8</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">181.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3625.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19.6</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">195.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4675.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">34.1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.1</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">193.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3475.0</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">42.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20.2</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">190.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4250.0</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span>   │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────┴───────────┴────────────────┴───────────────┴───────────────────┴─────────────┴────────┴───────┘
</pre>
</div>
</div>
<p>Sweet, huh?</p>
<p>Let’s filter the data and look at only the year 2009.</p>
<div id="321eac96" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> t.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(t.year <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2009</span>)</span>
<span id="cb4-2">expr</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="3">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> species </span>┃<span style="font-weight: bold"> island </span>┃<span style="font-weight: bold"> bill_length_mm </span>┃<span style="font-weight: bold"> bill_depth_mm </span>┃<span style="font-weight: bold"> flipper_length_mm </span>┃<span style="font-weight: bold"> body_mass_g </span>┃<span style="font-weight: bold"> sex    </span>┃<span style="font-weight: bold"> year  </span>┃
┡━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├─────────┼────────┼────────────────┼───────────────┼───────────────────┼─────────────┼────────┼───────┤
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">35.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.9</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">192.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3725.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">41.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">203.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4725.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">37.7</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">183.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3075.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">37.8</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">190.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4250.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">37.9</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.6</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">193.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2925.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.7</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.9</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">184.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3550.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">38.6</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.2</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">199.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3750.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">38.2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">190.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3900.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">38.1</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">181.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3175.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">43.2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">197.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4775.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────┴────────┴────────────────┴───────────────┴───────────────────┴─────────────┴────────┴───────┘
</pre>
</div>
</div>
<p>We can sort the result of that too, and filter again.</p>
<div id="efe8d4ef" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb5-2">    expr.order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"species"</span>, ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"bill_length_mm"</span>))</span>
<span id="cb5-3">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> t: t.island <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"Biscoe"</span>)</span>
<span id="cb5-4">)</span>
<span id="cb5-5">expr</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="4">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> species </span>┃<span style="font-weight: bold"> island </span>┃<span style="font-weight: bold"> bill_length_mm </span>┃<span style="font-weight: bold"> bill_depth_mm </span>┃<span style="font-weight: bold"> flipper_length_mm </span>┃<span style="font-weight: bold"> body_mass_g </span>┃<span style="font-weight: bold"> sex    </span>┃<span style="font-weight: bold"> year  </span>┃
┡━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>           │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├─────────┼────────┼────────────────┼───────────────┼───────────────────┼─────────────┼────────┼───────┤
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">45.6</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20.3</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">191.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4600.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">43.2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">197.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4775.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">42.7</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.3</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">196.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4075.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">42.2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19.5</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">197.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4275.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">41.0</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">203.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4725.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.7</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.7</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">193.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3200.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.7</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18.9</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">184.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3550.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39.6</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20.7</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">191.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3900.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">38.6</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.2</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">199.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3750.0</span> │ <span style="color: #008000; text-decoration-color: #008000">female</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Adelie </span> │ <span style="color: #008000; text-decoration-color: #008000">Biscoe</span> │           <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">38.2</span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">20.0</span> │             <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">190.0</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3900.0</span> │ <span style="color: #008000; text-decoration-color: #008000">male  </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2009</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │              <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │             <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │                 <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │           <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────┴────────┴────────────────┴───────────────┴───────────────────┴─────────────┴────────┴───────┘
</pre>
</div>
</div>
<p>There’s even support for joins and aggregations!</p>
<p>Let’s count the number of island, species pairs and sort descending by the count.</p>
<div id="b67fd46d" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb6-2">    t.group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"island"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"species"</span>)</span>
<span id="cb6-3">    .agg(n<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> t: t.count())</span>
<span id="cb6-4">    .order_by(ibis.desc(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n"</span>))</span>
<span id="cb6-5">)</span>
<span id="cb6-6">expr</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="5">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> island    </span>┃<span style="font-weight: bold"> species   </span>┃<span style="font-weight: bold"> n     </span>┃
┡━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├───────────┼───────────┼───────┤
│ <span style="color: #008000; text-decoration-color: #008000">Biscoe   </span> │ <span style="color: #008000; text-decoration-color: #008000">Gentoo   </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">124</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Dream    </span> │ <span style="color: #008000; text-decoration-color: #008000">Chinstrap</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">68</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Dream    </span> │ <span style="color: #008000; text-decoration-color: #008000">Adelie   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">56</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │ <span style="color: #008000; text-decoration-color: #008000">Adelie   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">52</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Biscoe   </span> │ <span style="color: #008000; text-decoration-color: #008000">Adelie   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">44</span> │
└───────────┴───────────┴───────┘
</pre>
</div>
</div>
<p>For kicks, let’s compare that to the DuckDB backend to make sure we’re able to count stuff.</p>
<p>To be extra awesome, we’ll <em>reuse the same expression to do the computation</em>.</p>
<div id="1412a8fa" class="cell" data-execution_count="6">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-7" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><span id="annotated-cell-7-1">ddb <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.duckdb.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>()</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-7" data-target-annotation="1">1</button><span id="annotated-cell-7-2" class="code-annotation-target">ddb.read_csv(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"penguins.csv"</span>, table_name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"p"</span>)</span>
<span id="annotated-cell-7-3">ibis.memtable(ddb.to_pyarrow(expr.unbind()))</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-7" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-7" data-code-lines="2" data-code-annotation="1">The <code>read_csv</code> is necessary so that the expression’s table name–<code>p</code>–matches one inside the DuckDB database.</span>
</dd>
</dl>
</div>
<div class="cell-output cell-output-display" data-execution_count="6">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> island    </span>┃<span style="font-weight: bold"> species   </span>┃<span style="font-weight: bold"> n     </span>┃
┡━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├───────────┼───────────┼───────┤
│ <span style="color: #008000; text-decoration-color: #008000">Biscoe   </span> │ <span style="color: #008000; text-decoration-color: #008000">Gentoo   </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">124</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Dream    </span> │ <span style="color: #008000; text-decoration-color: #008000">Chinstrap</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">68</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Dream    </span> │ <span style="color: #008000; text-decoration-color: #008000">Adelie   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">56</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Torgersen</span> │ <span style="color: #008000; text-decoration-color: #008000">Adelie   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">52</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Biscoe   </span> │ <span style="color: #008000; text-decoration-color: #008000">Adelie   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">44</span> │
└───────────┴───────────┴───────┘
</pre>
</div>
</div>
</section>
<section id="how-does-it-work" class="level2">
<h2 class="anchored" data-anchor-id="how-does-it-work">How does it work?</h2>
<p>Glad you asked!</p>
<p>The Unix backend for Ibis was built over the course of a few hours, which is about the time it takes to make a production ready Ibis backend.</p>
<p>Broadly speaking, the Unix backend:</p>
<ol type="1">
<li>Produces a shell command for each Ibis <em>table</em> operation.</li>
<li>Produces a nominal output location for the output of that command, in the form of a <a href="https://en.wikipedia.org/wiki/Named_pipe">named pipe</a> opened in write mode.</li>
<li>Reads output from the named pipe output location of the root of the expression tree.</li>
<li>Calls <code>pandas.read_csv</code> on that output.</li>
</ol>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center collapsed" data-bs-toggle="collapse" data-bs-target=".callout-1-contents" aria-controls="callout-1" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
<span class="screen-reader-only">Note</span>Why named pipes?
</div>
<div class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></div>
</div>
<div id="callout-1" class="callout-1-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>Shell commands only allow a single input from <code>stdin</code>.</p>
<p>However, joins accept &gt; 1 input so we need a way to stream more than one input to a join operation.</p>
<p>Named pipes support the semantics of “unnamed” pipes (FIFO queue behavior) but can be used in pipelines with nodes that have more a single input since they exist as paths on the file system.</p>
</div>
</div>
</div>
<section id="expressions" class="level3">
<h3 class="anchored" data-anchor-id="expressions">Expressions</h3>
<p>Ibis expressions are an abstract representation of an analytics computation over tabular data.</p>
<p>Ibis ships a public API, whose instances we call <em>expressions</em>.</p>
<p>Expressions have an associated type–accessible via their <a href="../../reference/expression-generic.html#ibis.expr.types.generic.Value.type"><code>type()</code></a> method–that determines what methods are available on them.</p>
<p>Expressions are ignorant of their underlying implementation: their composability is determined solely by their type.</p>
<p>This type is determined by the expression’s underlying <em>operation</em>.</p>
<p>The two-layer model makes it easy to describe operations in terms of the data types produced by an expression, rather than as instances of a specific class in a hierarchy.</p>
<p>This allows Ibis maintainers to alter expression API implementations without changing those APIs making it easier to maintain and easier to keep stable than if we had a complex (but not necessarily deep!) class hierarchy.</p>
<p>Operations, though, are really where the nitty gritty implementation details start.</p>
</section>
<section id="operations" class="level3">
<h3 class="anchored" data-anchor-id="operations">Operations</h3>
<p>Ibis <em>operations</em> are lightweight classes that model the tree structure of a computation.</p>
<p>They have zero or more inputs, whose types and values are constrained by Ibis’s <em>type system</em>.</p>
<p>Notably operations are <em>not</em> part of Ibis’s public API.</p>
<p>When we talk about “compilation” in Ibis, we’re talking about the process of converting an <em>operation</em> into something that the backend knows how to execute.</p>
<p>In the case of this 1̵0̸0̵%̵ p̶̺̑r̴̛ͅo̵̒ͅḍ̴̌u̷͇͒c̵̠̈t̷͍̿i̶̪͐o̸̳̾n̷͓̄-r̵̡̫̞͓͆̂̏ẽ̸̪̱̽ͅā̸̤̹̘̅̓͝d̵͇̞̏̂̔̽y̴̝͎̫̬͋̇̒̅ Unix backend, each operation is compiled into a list of strings that represent the shell command to run to execute the operation.</p>
<p>In other backends, like DuckDB, these compilation rules produce a sqlglot object.</p>
<p>The <code>compile</code> method is also the place where the backend has a chance to invoke custom rewrite rules over operations.</p>
<p>Rewrites are a very useful tool for the Unix backend. For example, the <code>join</code> command (yep, it’s in coreutils!) that we use to execute inner joins with this backend requires that the inputs be sorted, otherwise the results won’t be correct. So, I added a rewrite rule that replaces the left and right relations in a join operation with equivalent relations sorted on the join keys.</p>
<p>Once you obtain the output of compile, it’s up to the backend what to do next.</p>
</section>
<section id="backend-implementation" class="level3">
<h3 class="anchored" data-anchor-id="backend-implementation">Backend implementation</h3>
<p>At this point we’ve got our shell commands and some output locations created as named pipes.</p>
<p>What next?</p>
<p>Well, we need to execute the commands and write their output to the corresponding named pipe.</p>
<p>You might think</p>
<blockquote class="blockquote">
<p>I’ll just loop over the operations, open the pipe in write mode and call <code>subprocess.Popen(cmd, stdout=named_pipe)</code>.</p>
</blockquote>
<p>Not a bad thought, but the semantics of named pipes do not abide such thoughts :)</p>
<p>Named pipes, when opened in write mode, will block until a corresponding handle is opened in <em>read</em> mode.</p>
<p>Futures using a scoped thread pool are a decent way to handle this.</p>
<p>The idea is to launch every node concurrently and then read from the last node’s output. This initial read of the root node’s output pipe kicks off the cascade of other reads necessary to move data through the pipeline.</p>
<p>The Unix backend thus constructs a scoped <code>ThreadPoolExecutor()</code> using a context manager and submits a task for each operation to the executor. Importantly, opening the named pipe in write mode happens <strong>inside</strong> the task, to avoid blocking the main thread while waiting for a reader to be opened.</p>
<p>The final output task’s path is then passed directly to <code>read_csv</code>, and we’ve now got the result of our computation.</p>
<section id="show-me-the-commands-already" class="level4">
<h4 class="anchored" data-anchor-id="show-me-the-commands-already">Show me the commands already!</h4>
<p>Roger that.</p>
<div id="9cba0561" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-8" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><span id="annotated-cell-8-1">expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="annotated-cell-8-2">    t.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>([t.year <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">2009</span>])</span>
<span id="annotated-cell-8-3">    .select(</span>
<span id="annotated-cell-8-4">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"year"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"species"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"flipper_length_mm"</span>, island<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> t: t.island.lower()</span>
<span id="annotated-cell-8-5">    )</span>
<span id="annotated-cell-8-6">    .group_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"island"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"species"</span>)</span>
<span id="annotated-cell-8-7">    .agg(n<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> t: t.count(), avg<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> t: t.island.upper().length().mean())</span>
<span id="annotated-cell-8-8">    .order_by(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"n"</span>)</span>
<span id="annotated-cell-8-9">    .mutate(ilength<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">lambda</span> t: t.island.length())</span>
<span id="annotated-cell-8-10">    .limit(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">5</span>)</span>
<span id="annotated-cell-8-11">)</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-8" data-target-annotation="1">1</button><span id="annotated-cell-8-12" class="code-annotation-target"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(unix.explain(expr))</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-8" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-8" data-code-lines="12" data-code-annotation="1"><code>explain</code> isn’t a public method and not likely to become one any time soon.</span>
</dd>
</dl>
</div>
<div class="cell-output cell-output-stdout">
<pre><code>tail --lines +2 /home/cloud/src/ibis/docs/posts/unix-backend/penguins.csv &gt; t0
awk -F , '{ if (($8 == 2009)) { print }}' t0 &gt; t1
awk -F , '{ print $8 "," $1 "," $5 "," tolower($2) }' t1 &gt; t2
awk -F , '{
  agg0[$4","$2]++
  agg1[$4","$2] += length(toupper($4))
}
END { for (key in agg0) print key "," agg0[key] "," agg1[key]/NR }' t2 &gt; t3
sort -t , -k 3,3n t3 &gt; t4
awk -F , '{ print $1 "," $2 "," $3 "," $4 "," length($1) }' t4 &gt; t5
head --lines 5 t5 &gt; t6</code></pre>
</div>
</div>
</section>
</section>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>If you’ve gotten this far hopefully you’ve had a good laugh.</p>
<p>Let’s wrap up with some final thoughts.</p>
<section id="things-to-do" class="level3">
<h3 class="anchored" data-anchor-id="things-to-do">Things to do</h3>
<ul>
<li>Join our <a href="https://ibis-project.zulipchat.com/">Zulip</a>!</li>
<li>Open a GitHub <a href="https://github.com/ibis-project/ibis/issues/new/choose">issue</a> or <a href="https://github.com/ibis-project/ibis/discussions/new/choose">discussion</a>!</li>
</ul>
</section>
<section id="things-to-avoid-doing" class="level3">
<h3 class="anchored" data-anchor-id="things-to-avoid-doing">Things to avoid doing</h3>
<ul>
<li>Putting this into production</li>
</ul>


</section>
</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>serious</category>
  <category>web-scale</category>
  <category>unix</category>
  <guid>https://ibis-project.org/posts/unix-backend/</guid>
  <pubDate>Mon, 01 Apr 2024 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Snow IO: loading data from other DBs into Snowflake</title>
  <dc:creator>Phillip Cloud</dc:creator>
  <link>https://ibis-project.org/posts/into-snowflake/</link>
  <description><![CDATA[ 






<section id="recap" class="level2">
<h2 class="anchored" data-anchor-id="recap">Recap</h2>
<p>We’ve <a href="../../posts/snowflake-io/index.html">blogged about Snowflake IO before</a>, in the context of getting local files into Snowflake as fast as possible.</p>
<p>In this post, we’ll show how to insert query results from another system into Snowflake, using Ibis.</p>
</section>
<section id="setup" class="level2">
<h2 class="anchored" data-anchor-id="setup">Setup</h2>
<section id="connect-to-your-non-snowflake-system" class="level3">
<h3 class="anchored" data-anchor-id="connect-to-your-non-snowflake-system">Connect to your non-Snowflake system</h3>
<p>We’ll connect to a postgres database running locally in a container. You should be able to swap in your own connection details as needed.</p>
<div id="52dc2246" class="cell" data-execution_count="1">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-1" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><button class="code-annotation-anchor" data-target-cell="annotated-cell-1" data-target-annotation="1">1</button><span id="annotated-cell-1-1" class="code-annotation-target"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.interactive <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span></span>
<span id="annotated-cell-1-2"></span>
<span id="annotated-cell-1-3">pg_con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"postgres://postgres:postgres@localhost/postgres"</span>)</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-1" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-1" data-code-lines="1" data-code-annotation="1">Import Ibis for maximum productivity in interactive analysis.</span>
</dd>
</dl>
</div>
</div>
<p>We’ll use a test dataset that contains some baseball batting statistics.</p>
<p>Ibis provides that example data, so we can dump that into postgres.</p>
<div id="c9ed5f4c" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-2" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><span id="annotated-cell-2-1">pg_batting <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pg_con.create_table(</span>
<span id="annotated-cell-2-2">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"batting"</span>,</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="1">1</button><span id="annotated-cell-2-3" class="code-annotation-target">    ibis.examples.Batting.fetch().to_pandas(),</span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-2" data-target-annotation="2">2</button><span id="annotated-cell-2-4" class="code-annotation-target">    temp<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>,</span>
<span id="annotated-cell-2-5">)</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-2" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="3" data-code-annotation="1">Yep, I’m using pandas here!</span>
</dd>
<dt data-target-cell="annotated-cell-2" data-target-annotation="2">2</dt>
<dd>
<span data-code-cell="annotated-cell-2" data-code-lines="4" data-code-annotation="2">Use a temporary table to avoid cluttering up the database.</span>
</dd>
</dl>
</div>
</div>
</section>
<section id="connect-to-snowflake" class="level3">
<h3 class="anchored" data-anchor-id="connect-to-snowflake">Connect to Snowflake</h3>
<div id="5f332c9a" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-3" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><span id="annotated-cell-3-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> os</span>
<span id="annotated-cell-3-2"></span>
<span id="annotated-cell-3-3"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># snowflake://user:pass@account/database/schema?warehouse=my_warehouse</span></span>
<button class="code-annotation-anchor" data-target-cell="annotated-cell-3" data-target-annotation="1">1</button><span id="annotated-cell-3-4" class="code-annotation-target">snow_con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(os.environ[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"SNOWFLAKE_URL"</span>])</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-3" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-3" data-code-lines="4" data-code-annotation="1">Set the <code>SNOWFLAKE_URL</code> environment variable to your Snowflake connection string.</span>
</dd>
</dl>
</div>
</div>
</section>
</section>
<section id="profit" class="level2">
<h2 class="anchored" data-anchor-id="profit">Profit</h2>
<section id="construct-an-ibis-expression-from-the-postgres-data" class="level3">
<h3 class="anchored" data-anchor-id="construct-an-ibis-expression-from-the-postgres-data">Construct an Ibis expression from the postgres data</h3>
<p>Let’s build an Ibis expression based on the <code>batting</code> table in our postgres database.</p>
<div id="842f6246" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1">pg_batting</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="5">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━┳━━━━━━━━━┳━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┓
┃<span style="font-weight: bold"> player_id </span>┃<span style="font-weight: bold"> year_id </span>┃<span style="font-weight: bold"> stint </span>┃<span style="font-weight: bold"> team_id </span>┃<span style="font-weight: bold"> lg_id  </span>┃<span style="font-weight: bold"> g     </span>┃<span style="font-weight: bold"> ab    </span>┃<span style="font-weight: bold"> r     </span>┃<span style="font-weight: bold"> h     </span>┃<span style="font-weight: bold"> x2b   </span>┃<span style="font-weight: bold"> x3b   </span>┃<span style="font-weight: bold"> hr    </span>┃<span style="font-weight: bold"> rbi     </span>┃<span style="font-weight: bold"> sb      </span>┃<span style="font-weight: bold"> cs      </span>┃<span style="font-weight: bold"> bb    </span>┃<span style="font-weight: bold"> so      </span>┃<span style="font-weight: bold"> ibb     </span>┃<span style="font-weight: bold"> hbp     </span>┃<span style="font-weight: bold"> sh      </span>┃<span style="font-weight: bold"> sf      </span>┃<span style="font-weight: bold"> gidp    </span>┃
┡━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━╇━━━━━━━━━╇━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━╇━━━━━━━╇━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │
├───────────┼─────────┼───────┼─────────┼────────┼───────┼───────┼───────┼───────┼───────┼───────┼───────┼─────────┼─────────┼─────────┼───────┼─────────┼─────────┼─────────┼─────────┼─────────┼─────────┤
│ <span style="color: #008000; text-decoration-color: #008000">abercda01</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1871</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">TRO    </span> │ <span style="color: #008000; text-decoration-color: #008000">NA    </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">addybo01 </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1871</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">RC1    </span> │ <span style="color: #008000; text-decoration-color: #008000">NA    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">25</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">118</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">30</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">32</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">8.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">allisar01</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1871</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">CL1    </span> │ <span style="color: #008000; text-decoration-color: #008000">NA    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">29</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">137</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">28</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">allisdo01</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1871</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">WS3    </span> │ <span style="color: #008000; text-decoration-color: #008000">NA    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">27</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">133</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">28</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">44</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">27.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">ansonca01</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1871</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">RC1    </span> │ <span style="color: #008000; text-decoration-color: #008000">NA    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">25</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">120</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">29</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">39</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">armstbo01</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1871</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">FW1    </span> │ <span style="color: #008000; text-decoration-color: #008000">NA    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">49</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">barkeal01</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1871</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">RC1    </span> │ <span style="color: #008000; text-decoration-color: #008000">NA    </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">barnero01</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1871</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">BS1    </span> │ <span style="color: #008000; text-decoration-color: #008000">NA    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">31</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">157</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">66</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">63</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">34.0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6.0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">barrebi01</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1871</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">FW1    </span> │ <span style="color: #008000; text-decoration-color: #008000">NA    </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">barrofr01</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1871</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">BS1    </span> │ <span style="color: #008000; text-decoration-color: #008000">NA    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">86</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">nan</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└───────────┴─────────┴───────┴─────────┴────────┴───────┴───────┴───────┴───────┴───────┴───────┴───────┴─────────┴─────────┴─────────┴───────┴─────────┴─────────┴─────────┴─────────┴─────────┴─────────┘
</pre>
</div>
</div>
<p>We can compute the average <a href="https://en.wikipedia.org/wiki/Run_batted_in">RBI</a> per year per team.</p>
<div id="0fe95f00" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1">pg_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pg_batting.group_by((<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"year_id"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"team_id"</span>)).agg(avg_rbi<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.rbi.mean())</span>
<span id="cb2-2">pg_expr</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="6">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┓
┃<span style="font-weight: bold"> year_id </span>┃<span style="font-weight: bold"> team_id </span>┃<span style="font-weight: bold"> avg_rbi   </span>┃
┡━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │
├─────────┼─────────┼───────────┤
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1891</span> │ <span style="color: #008000; text-decoration-color: #008000">PIT    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22.782609</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1895</span> │ <span style="color: #008000; text-decoration-color: #008000">BSN    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">34.363636</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1940</span> │ <span style="color: #008000; text-decoration-color: #008000">SLA    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22.343750</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1981</span> │ <span style="color: #008000; text-decoration-color: #008000">HOU    </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9.972973</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1913</span> │ <span style="color: #008000; text-decoration-color: #008000">CLE    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13.512821</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1971</span> │ <span style="color: #008000; text-decoration-color: #008000">MON    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.181818</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2008</span> │ <span style="color: #008000; text-decoration-color: #008000">PIT    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">15.000000</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1895</span> │ <span style="color: #008000; text-decoration-color: #008000">WAS    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">23.096774</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2011</span> │ <span style="color: #008000; text-decoration-color: #008000">KCA    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16.785714</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │ <span style="color: #008000; text-decoration-color: #008000">MIL    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19.350000</span> │
│       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────┴─────────┴───────────┘
</pre>
</div>
</div>
<p>We can also rename columns to be more consistent with typical Snowflake usage.</p>
<div id="c75c8ff3" class="cell" data-execution_count="6">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1">pg_expr <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pg_expr.rename(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ALL_CAPS"</span>)</span>
<span id="cb3-2">pg_expr</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="7">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┓
┃<span style="font-weight: bold"> YEAR_ID </span>┃<span style="font-weight: bold"> TEAM_ID </span>┃<span style="font-weight: bold"> AVG_RBI   </span>┃
┡━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │
├─────────┼─────────┼───────────┤
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1891</span> │ <span style="color: #008000; text-decoration-color: #008000">PIT    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22.782609</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1895</span> │ <span style="color: #008000; text-decoration-color: #008000">BSN    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">34.363636</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1940</span> │ <span style="color: #008000; text-decoration-color: #008000">SLA    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22.343750</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1981</span> │ <span style="color: #008000; text-decoration-color: #008000">HOU    </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9.972973</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1913</span> │ <span style="color: #008000; text-decoration-color: #008000">CLE    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13.512821</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1971</span> │ <span style="color: #008000; text-decoration-color: #008000">MON    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.181818</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2008</span> │ <span style="color: #008000; text-decoration-color: #008000">PIT    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">15.000000</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1895</span> │ <span style="color: #008000; text-decoration-color: #008000">WAS    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">23.096774</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2011</span> │ <span style="color: #008000; text-decoration-color: #008000">KCA    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16.785714</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │ <span style="color: #008000; text-decoration-color: #008000">MIL    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19.350000</span> │
│       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────┴─────────┴───────────┘
</pre>
</div>
</div>
<p>Let’s show how many rows we have in the result.</p>
<div id="ac4befe6" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1">pg_expr.count()</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
<div class="cell-output cell-output-display" data-execution_count="8">
<div class="ansi-escaped-output">
<pre><span class="ansi-cyan-fg ansi-bold">3015</span></pre>
</div>
</div>
</div>
</section>
<section id="insert-the-computed-results-into-snowflake" class="level3">
<h3 class="anchored" data-anchor-id="insert-the-computed-results-into-snowflake">Insert the computed results into Snowflake</h3>
<p>Because all Ibis backends implement the <code>to_pyarrow()</code> method, we can get data out of another system and into Snowflake with a few lines of code.</p>
<p>First we’ll create a table in Snowflake to hold the data.</p>
<p>Ibis helps here by providing an API to access the schema from the <strong>postgres</strong>-based expression, and automatically translates postgres types into Snowflake types.</p>
<div id="22568a53" class="cell" data-execution_count="8">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="annotated-cell-8" style="background: #f1f3f5;"><pre class="sourceCode python code-annotation-code code-with-copy code-annotated"><code class="sourceCode python"><button class="code-annotation-anchor" data-target-cell="annotated-cell-8" data-target-annotation="1">1</button><span id="annotated-cell-8-1" class="code-annotation-target">snow_table <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> snow_con.create_table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pg_batting"</span>, schema<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>pg_expr.schema(), temp<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="va" style="color: #111111;
background-color: null;
font-style: inherit;">True</span>)</span><div class="code-annotation-gutter-bg"></div><div class="code-annotation-gutter"></div></code></pre></div></div>
<div class="cell-annotation">
<dl class="code-annotation-container-hidden code-annotation-container-grid">
<dt data-target-cell="annotated-cell-8" data-target-annotation="1">1</dt>
<dd>
<span data-code-cell="annotated-cell-8" data-code-lines="1" data-code-annotation="1">By default the table will be created in the database and schema of the current connection.</span>
</dd>
</dl>
</div>
</div>
<p>We’ll show that the table is empty to sanity check ourselves.</p>
<div id="dc8f71fa" class="cell" data-execution_count="9">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1">snow_table</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="10">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━┓
┃<span style="font-weight: bold"> YEAR_ID </span>┃<span style="font-weight: bold"> TEAM_ID </span>┃<span style="font-weight: bold"> AVG_RBI </span>┃
┡━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span> │
└─────────┴─────────┴─────────┘
</pre>
</div>
</div>
<p>Insert the expression’s result table into Snowflake.</p>
<div id="01bcdc29" class="cell" data-execution_count="10">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1">snow_con.insert(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pg_batting"</span>, pg_expr.to_pyarrow())</span></code></pre></div></div>
</div>
<p>To sanity check what we’ve done let’s peek at the table.</p>
<div id="e7a29528" class="cell" data-execution_count="11">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1">snow_table</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="12">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━┓
┃<span style="font-weight: bold"> YEAR_ID </span>┃<span style="font-weight: bold"> TEAM_ID </span>┃<span style="font-weight: bold"> AVG_RBI   </span>┃
┡━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │
├─────────┼─────────┼───────────┤
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1891</span> │ <span style="color: #008000; text-decoration-color: #008000">PIT    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22.782609</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1895</span> │ <span style="color: #008000; text-decoration-color: #008000">BSN    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">34.363636</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1940</span> │ <span style="color: #008000; text-decoration-color: #008000">SLA    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22.343750</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1981</span> │ <span style="color: #008000; text-decoration-color: #008000">HOU    </span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9.972973</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1913</span> │ <span style="color: #008000; text-decoration-color: #008000">CLE    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13.512821</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1971</span> │ <span style="color: #008000; text-decoration-color: #008000">MON    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17.181818</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2008</span> │ <span style="color: #008000; text-decoration-color: #008000">PIT    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">15.000000</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1895</span> │ <span style="color: #008000; text-decoration-color: #008000">WAS    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">23.096774</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2011</span> │ <span style="color: #008000; text-decoration-color: #008000">KCA    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16.785714</span> │
│    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2007</span> │ <span style="color: #008000; text-decoration-color: #008000">MIL    </span> │ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19.350000</span> │
│       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>       │         <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└─────────┴─────────┴───────────┘
</pre>
</div>
</div>
<p>We’ll count them too, to be extra sure.</p>
<div id="0b854a6c" class="cell" data-execution_count="12">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1">snow_table.count()</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
<div class="cell-output cell-output-display" data-execution_count="13">
<div class="ansi-escaped-output">
<pre><span class="ansi-cyan-fg ansi-bold">3015</span></pre>
</div>
</div>
</div>
</section>
</section>
<section id="conclusion" class="level2">
<h2 class="anchored" data-anchor-id="conclusion">Conclusion</h2>
<p>In this post we show how easy it is to move data from one backend into Snowflake using Ibis.</p>
<p>Please try it out and get in touch on <a href="https://ibis-project.zulipchat.com/">Zulip</a> or <a href="https://github.com/ibis-project/ibis">GitHub</a>, we’d love to hear from you!</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>snowflake</category>
  <category>io</category>
  <category>productivity</category>
  <guid>https://ibis-project.org/posts/into-snowflake/</guid>
  <pubDate>Wed, 06 Mar 2024 00:00:00 GMT</pubDate>
</item>
<item>
  <title>Analysis of World of Warcraft data</title>
  <dc:creator>Tyler White</dc:creator>
  <link>https://ibis-project.org/posts/wow-analysis/</link>
  <description><![CDATA[ 






<section id="introduction" class="level2">
<h2 class="anchored" data-anchor-id="introduction">Introduction</h2>
<p>I grew up playing games, and with the recent re-release of World of Warcraft Classic, it seems like a perfect time to analyze some in-game data!</p>
<p>This dataset is the product of a Horde player’s diligent recording throughout 2008, capturing the transitional phase between the Burning Crusade and Wrath of the Lich King expansions. Notably, starting November 13, 2008, the data showcases numerous characters venturing into new territories and advancing beyond the former level cap of 70.</p>
</section>
<section id="analysis" class="level2">
<h2 class="anchored" data-anchor-id="analysis">Analysis</h2>
<p>We’ll determine who logged in the most, who leveled from 70 to 80 the fastest, and what activities these players engaged with based on zones. Let’s get to work.</p>
<section id="getting-started" class="level3">
<h3 class="anchored" data-anchor-id="getting-started">Getting started</h3>
<p>Ibis ships with an <code>examples</code> module, which includes this specific data. We’ll use DuckDB here, but this is possible with other backends, and we encourage you to experiment. DuckDB is the default Ibis backend, so it’ll be easy to use with this example.</p>
<p>You can execute <code>pip install ibis-framework[duckdb,examples]</code> to work with Ibis and the example data.</p>
<div id="cfdc9973" class="cell" data-execution_count="1">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb1-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis.interactive <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">*</span></span>
<span id="cb1-2"></span>
<span id="cb1-3">wowah_data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ex.wowah_data_raw.fetch()</span>
<span id="cb1-4"></span>
<span id="cb1-5">wowah_data</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="1">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> char  </span>┃<span style="font-weight: bold"> level </span>┃<span style="font-weight: bold"> race   </span>┃<span style="font-weight: bold"> charclass </span>┃<span style="font-weight: bold"> zone                   </span>┃<span style="font-weight: bold"> guild </span>┃<span style="font-weight: bold"> timestamp           </span>┃
┡━━━━━━━╇━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>                 │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">timestamp(6)</span>        │
├───────┼───────┼────────┼───────────┼────────────────────────┼───────┼─────────────────────┤
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">59425</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc   </span> │ <span style="color: #008000; text-decoration-color: #008000">Rogue    </span> │ <span style="color: #008000; text-decoration-color: #008000">Orgrimmar             </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">165</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-01 00:02:04</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">65494</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc   </span> │ <span style="color: #008000; text-decoration-color: #008000">Hunter   </span> │ <span style="color: #008000; text-decoration-color: #008000">Durotar               </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-1</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-01 00:02:04</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">65325</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc   </span> │ <span style="color: #008000; text-decoration-color: #008000">Warrior  </span> │ <span style="color: #008000; text-decoration-color: #008000">Ghostlands            </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-1</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-01 00:02:04</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">65490</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc   </span> │ <span style="color: #008000; text-decoration-color: #008000">Hunter   </span> │ <span style="color: #008000; text-decoration-color: #008000">Ghostlands            </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-1</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-01 00:02:04</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2288</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">60</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc   </span> │ <span style="color: #008000; text-decoration-color: #008000">Hunter   </span> │ <span style="color: #008000; text-decoration-color: #008000">Hellfire Peninsula    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-1</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-01 00:02:09</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2289</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">60</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc   </span> │ <span style="color: #008000; text-decoration-color: #008000">Hunter   </span> │ <span style="color: #008000; text-decoration-color: #008000">Hellfire Peninsula    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-1</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-01 00:02:09</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">61239</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">68</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc   </span> │ <span style="color: #008000; text-decoration-color: #008000">Hunter   </span> │ <span style="color: #008000; text-decoration-color: #008000">Blade's Edge Mountains</span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">243</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-01 00:02:14</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">59772</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">69</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc   </span> │ <span style="color: #008000; text-decoration-color: #008000">Warrior  </span> │ <span style="color: #008000; text-decoration-color: #008000">Shadowmoon Valley     </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">35</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-01 00:02:14</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22937</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">69</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc   </span> │ <span style="color: #008000; text-decoration-color: #008000">Rogue    </span> │ <span style="color: #008000; text-decoration-color: #008000">Warsong Gulch         </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">243</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-01 00:02:14</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">23062</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">69</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc   </span> │ <span style="color: #008000; text-decoration-color: #008000">Shaman   </span> │ <span style="color: #008000; text-decoration-color: #008000">Shattrath City        </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">103</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-01 00:02:14</span> │
│     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>      │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                      │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                   │
└───────┴───────┴────────┴───────────┴────────────────────────┴───────┴─────────────────────┘
</pre>
</div>
</div>
</section>
<section id="getting-table-info" class="level3">
<h3 class="anchored" data-anchor-id="getting-table-info">Getting table info</h3>
<p>Let’s learn more about these fields. Are there any nulls we should consider? We can use the <a href="../../reference/expression-tables.html#ibis.expr.types.relations.Table.info"><code>info</code></a> method on our Ibis expression.</p>
<div id="42d533ca" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1">wowah_data.info()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="2">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━┓
┃<span style="font-weight: bold"> name      </span>┃<span style="font-weight: bold"> type         </span>┃<span style="font-weight: bold"> nullable </span>┃<span style="font-weight: bold"> nulls </span>┃<span style="font-weight: bold"> non_nulls </span>┃<span style="font-weight: bold"> null_frac </span>┃<span style="font-weight: bold"> pos  </span>┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>       │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">boolean</span>  │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>     │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">float64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int8</span> │
├───────────┼──────────────┼──────────┼───────┼───────────┼───────────┼──────┤
│ <span style="color: #008000; text-decoration-color: #008000">char     </span> │ <span style="color: #008000; text-decoration-color: #008000">int32       </span> │ True     │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10826734</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │
│ <span style="color: #008000; text-decoration-color: #008000">level    </span> │ <span style="color: #008000; text-decoration-color: #008000">int32       </span> │ True     │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10826734</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008000; text-decoration-color: #008000">race     </span> │ <span style="color: #008000; text-decoration-color: #008000">string      </span> │ True     │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10826734</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │
│ <span style="color: #008000; text-decoration-color: #008000">charclass</span> │ <span style="color: #008000; text-decoration-color: #008000">string      </span> │ True     │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10826734</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │
│ <span style="color: #008000; text-decoration-color: #008000">zone     </span> │ <span style="color: #008000; text-decoration-color: #008000">string      </span> │ True     │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10826734</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│ <span style="color: #008000; text-decoration-color: #008000">guild    </span> │ <span style="color: #008000; text-decoration-color: #008000">int32       </span> │ True     │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10826734</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5</span> │
│ <span style="color: #008000; text-decoration-color: #008000">timestamp</span> │ <span style="color: #008000; text-decoration-color: #008000">timestamp(6)</span> │ True     │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0</span> │  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">10826734</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">0.0</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span> │
└───────────┴──────────────┴──────────┴───────┴───────────┴───────────┴──────┘
</pre>
</div>
</div>
<p>We can also use <a href="../../reference/expression-generic.html#ibis.expr.types.generic.Column.value_counts"><code>value_counts</code></a> on specific columns if we want to learn more.</p>
<div id="f6925052" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1">wowah_data.race.value_counts()</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="3">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> race      </span>┃<span style="font-weight: bold"> race_count </span>┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │
├───────────┼────────────┤
│ <span style="color: #008000; text-decoration-color: #008000">Undead   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2530156</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Orc      </span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">933056</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Troll    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1102409</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Blood Elf</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3929995</span> │
│ <span style="color: #008000; text-decoration-color: #008000">Tauren   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2331118</span> │
└───────────┴────────────┘
</pre>
</div>
</div>
<p>We don’t have any missing values, and the data <code>value_counts</code> results match what I would expect.</p>
<p>How about duplicates? We can check the count of unique rows against the total count.</p>
<div id="28d750b9" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(wowah_data.count())</span>
<span id="cb4-2"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(wowah_data.nunique())</span>
<span id="cb4-3"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(wowah_data.count() <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> wowah_data.nunique())</span></code></pre></div></div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
<div class="cell-output cell-output-stdout">
<pre><code>10826734
10823177
False</code></pre>
</div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
<div class="cell-output cell-output-display">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace"></pre>
</div>
</div>
<p>So we have some duplicates. What could the duplicate rows be?</p>
<p>We can find them like this.</p>
<div id="47370405" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1">wowah_duplicates <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> wowah_data.mutate(</span>
<span id="cb6-2">    row_num<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis.row_number().over(</span>
<span id="cb6-3">        ibis.window(group_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>wowah_data.columns, order_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.timestamp)</span>
<span id="cb6-4">    )</span>
<span id="cb6-5">).<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(_.row_num <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">&gt;</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>)</span>
<span id="cb6-6"></span>
<span id="cb6-7">wowah_duplicates</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="5">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┓
┃<span style="font-weight: bold"> char  </span>┃<span style="font-weight: bold"> level </span>┃<span style="font-weight: bold"> race      </span>┃<span style="font-weight: bold"> charclass </span>┃<span style="font-weight: bold"> zone               </span>┃<span style="font-weight: bold"> guild </span>┃<span style="font-weight: bold"> timestamp           </span>┃<span style="font-weight: bold"> row_num </span>┃
┡━━━━━━━╇━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>             │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">timestamp(6)</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │
├───────┼───────┼───────────┼───────────┼────────────────────┼───────┼─────────────────────┼─────────┤
│   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">341</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #008000; text-decoration-color: #008000">Undead   </span> │ <span style="color: #008000; text-decoration-color: #008000">Rogue    </span> │ <span style="color: #008000; text-decoration-color: #008000">Terokkar Forest   </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">204</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-06-05 01:57:37</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">980</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #008000; text-decoration-color: #008000">Orc      </span> │ <span style="color: #008000; text-decoration-color: #008000">Hunter   </span> │ <span style="color: #008000; text-decoration-color: #008000">Isle of Quel'Danas</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">79</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-10-25 05:05:03</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1321</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #008000; text-decoration-color: #008000">Tauren   </span> │ <span style="color: #008000; text-decoration-color: #008000">Druid    </span> │ <span style="color: #008000; text-decoration-color: #008000">Isle of Quel'Danas</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-04-17 15:38:46</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2866</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #008000; text-decoration-color: #008000">Undead   </span> │ <span style="color: #008000; text-decoration-color: #008000">Priest   </span> │ <span style="color: #008000; text-decoration-color: #008000">Nagrand           </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">103</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-10-23 21:01:32</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4318</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #008000; text-decoration-color: #008000">Undead   </span> │ <span style="color: #008000; text-decoration-color: #008000">Warrior  </span> │ <span style="color: #008000; text-decoration-color: #008000">Karazhan          </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-07-12 18:05:06</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11316</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #008000; text-decoration-color: #008000">Undead   </span> │ <span style="color: #008000; text-decoration-color: #008000">Mage     </span> │ <span style="color: #008000; text-decoration-color: #008000">Alterac Valley    </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">104</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-03-22 00:30:48</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17774</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #008000; text-decoration-color: #008000">Blood Elf</span> │ <span style="color: #008000; text-decoration-color: #008000">Hunter   </span> │ <span style="color: #008000; text-decoration-color: #008000">Shattrath City    </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">271</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-07-12 18:06:12</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19598</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #008000; text-decoration-color: #008000">Tauren   </span> │ <span style="color: #008000; text-decoration-color: #008000">Shaman   </span> │ <span style="color: #008000; text-decoration-color: #008000">The Mechanar      </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">101</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-06-05 11:10:57</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21828</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #008000; text-decoration-color: #008000">Tauren   </span> │ <span style="color: #008000; text-decoration-color: #008000">Shaman   </span> │ <span style="color: #008000; text-decoration-color: #008000">Durotar           </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">-1</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-10-23 19:10:31</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22484</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #008000; text-decoration-color: #008000">Tauren   </span> │ <span style="color: #008000; text-decoration-color: #008000">Hunter   </span> │ <span style="color: #008000; text-decoration-color: #008000">Warsong Gulch     </span> │   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">315</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-07-12 18:03:23</span> │       <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                  │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                   │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└───────┴───────┴───────────┴───────────┴────────────────────┴───────┴─────────────────────┴─────────┘
</pre>
</div>
</div>
<p>I suspect this data was captured by a single player spamming “/who” in the game, most likely using an AddOn, about every ten minutes. Some players could have been captured twice, depending on how the command was being filtered.</p>
<p>We can go ahead and remove these duplicates.</p>
<div id="705c75eb" class="cell" data-execution_count="6">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1">wowah_data <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> wowah_data.distinct()</span></code></pre></div></div>
</div>
</section>
<section id="which-player-logged-in-the-most" class="level3">
<h3 class="anchored" data-anchor-id="which-player-logged-in-the-most">Which player logged in the most?</h3>
<p>We mentioned that there was a single player likely capturing these results. Let’s find out who that is.</p>
<div id="07bc46cc" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1">(</span>
<span id="cb8-2">    wowah_data</span>
<span id="cb8-3">    .group_by([_.char, _.race, _.charclass])</span>
<span id="cb8-4">    .agg(sessions<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.count())</span>
<span id="cb8-5">    .order_by(_.sessions.desc())</span>
<span id="cb8-6">)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="7">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┓
┃<span style="font-weight: bold"> char  </span>┃<span style="font-weight: bold"> race      </span>┃<span style="font-weight: bold"> charclass </span>┃<span style="font-weight: bold"> sessions </span>┃
┡━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>    │
├───────┼───────────┼───────────┼──────────┤
│   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">182</span> │ <span style="color: #008000; text-decoration-color: #008000">Troll    </span> │ <span style="color: #008000; text-decoration-color: #008000">Hunter   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">42770</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">57741</span> │ <span style="color: #008000; text-decoration-color: #008000">Undead   </span> │ <span style="color: #008000; text-decoration-color: #008000">Warlock  </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">16237</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1384</span> │ <span style="color: #008000; text-decoration-color: #008000">Undead   </span> │ <span style="color: #008000; text-decoration-color: #008000">Warlock  </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">15878</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">59489</span> │ <span style="color: #008000; text-decoration-color: #008000">Blood Elf</span> │ <span style="color: #008000; text-decoration-color: #008000">Priest   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13977</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">62239</span> │ <span style="color: #008000; text-decoration-color: #008000">Undead   </span> │ <span style="color: #008000; text-decoration-color: #008000">Mage     </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13776</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">62446</span> │ <span style="color: #008000; text-decoration-color: #008000">Blood Elf</span> │ <span style="color: #008000; text-decoration-color: #008000">Mage     </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13011</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">31184</span> │ <span style="color: #008000; text-decoration-color: #008000">Undead   </span> │ <span style="color: #008000; text-decoration-color: #008000">Rogue    </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12019</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">24126</span> │ <span style="color: #008000; text-decoration-color: #008000">Blood Elf</span> │ <span style="color: #008000; text-decoration-color: #008000">Warlock  </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11791</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">61105</span> │ <span style="color: #008000; text-decoration-color: #008000">Blood Elf</span> │ <span style="color: #008000; text-decoration-color: #008000">Priest   </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11731</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">35072</span> │ <span style="color: #008000; text-decoration-color: #008000">Blood Elf</span> │ <span style="color: #008000; text-decoration-color: #008000">Paladin  </span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11399</span> │
│     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │        <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└───────┴───────────┴───────────┴──────────┘
</pre>
</div>
</div>
<p>That Troll Hunter that never exceeded level 1 is likely our person with 42,770 sessions.</p>
</section>
<section id="who-leveled-the-fastest-from-7080" class="level3">
<h3 class="anchored" data-anchor-id="who-leveled-the-fastest-from-7080">Who leveled the fastest from 70–80?</h3>
<p>At the end of the year, there were 884 level 80s. Who leveled the fastest?</p>
<p>Finding this answer will involve filtering, grouping, and aggregating to compute each character’s time taken to level from 70 to 80.</p>
<p>Let’s start by creating an expression to filter to only the level 80 characters, then join it to filter and identify only where they were level 70 or 80. We’re only concerned with three columns so that we will select only those.</p>
<div id="c458d06e" class="cell" data-execution_count="8">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1">max_level_chars <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> wowah_data.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(_.level <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">80</span>).select(_.char).distinct()</span>
<span id="cb9-2">wowah_data_filtered <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb9-3">    wowah_data</span>
<span id="cb9-4">    .join(max_level_chars, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"char"</span>, how<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"inner"</span>)</span>
<span id="cb9-5">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(_.level.isin([<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">70</span>, <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">80</span>]))</span>
<span id="cb9-6">    .select(_.char, _.level, _.timestamp)</span>
<span id="cb9-7">)</span>
<span id="cb9-8">wowah_data_filtered</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="8">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> char  </span>┃<span style="font-weight: bold"> level </span>┃<span style="font-weight: bold"> timestamp           </span>┃
┡━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">timestamp(6)</span>        │
├───────┼───────┼─────────────────────┤
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">62226</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-09 22:00:20</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">21828</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-09 22:00:30</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">62763</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-09 22:01:06</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">27547</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-09 22:01:51</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">5730</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-09 22:02:07</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">34216</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-09 22:09:27</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40951</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-09 22:09:32</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">45552</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-09 22:10:08</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19481</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-09 22:10:23</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">19085</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-01-09 22:10:23</span> │
│     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                   │
└───────┴───────┴─────────────────────┘
</pre>
</div>
</div>
<p>Let’s use the <code>where</code> option to help with the aggregation.</p>
<div id="20281bee" class="cell" data-execution_count="9">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1">level_calc <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb10-2">    wowah_data_filtered.group_by([<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"char"</span>])</span>
<span id="cb10-3">    .mutate(</span>
<span id="cb10-4">        ts_70<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.timestamp.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">max</span>(where<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.level <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">70</span>),</span>
<span id="cb10-5">        ts_80<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.timestamp.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">min</span>(where<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.level <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">==</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">80</span>),</span>
<span id="cb10-6">    )</span>
<span id="cb10-7">    .drop([<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"level"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"timestamp"</span>])</span>
<span id="cb10-8">    .distinct()</span>
<span id="cb10-9">    .mutate(days_from_70_to_80<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>(_.ts_80.delta(_.ts_70, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"day"</span>)))</span>
<span id="cb10-10">    .order_by(_.days_from_70_to_80)</span>
<span id="cb10-11">)</span></code></pre></div></div>
</div>
<p>The data is filtered and grouped by character, and two new columns are created to represent timestamps for levels 70 and 80. Then we drop what we no longer need, get the distinct values, and calculate the time taken to level from 70 to 80. Then we sort it!</p>
<div id="d4eec6ef" class="cell" data-execution_count="10">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1">level_calc</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="10">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> char  </span>┃<span style="font-weight: bold"> ts_70               </span>┃<span style="font-weight: bold"> ts_80               </span>┃<span style="font-weight: bold"> days_from_70_to_80 </span>┃
┡━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">timestamp(6)</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">timestamp(6)</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>              │
├───────┼─────────────────────┼─────────────────────┼────────────────────┤
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">68544</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-27 01:58:13</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-30 16:19:04</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1450</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-18 02:46:37</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-21 11:45:35</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │
│   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">399</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-18 00:02:40</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-22 20:23:57</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">86264</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-20 23:09:17</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-24 16:35:46</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">51738</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-12-03 20:10:00</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-12-07 11:26:08</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1003</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-18 00:29:25</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-22 23:47:06</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40483</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-17 22:35:42</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-21 15:31:59</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">88331</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-12-12 01:47:57</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-12-16 10:19:23</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">86396</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-12-03 05:04:42</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-12-07 17:04:43</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">86265</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-20 23:28:40</span> │ <span style="color: #800080; text-decoration-color: #800080">2008-11-24 07:47:08</span> │                  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                   │                  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└───────┴─────────────────────┴─────────────────────┴────────────────────┘
</pre>
</div>
</div>
<p>This isn’t perfect, as I found a case where there was a player who seemed to have quit in March and then returned for the new expansion. They hit 71 before it looks like their login at 70 was captured later. If you’re curious, take a look at <strong>char=21951</strong> for yourself.</p>
</section>
<section id="how-did-they-level" class="level3">
<h3 class="anchored" data-anchor-id="how-did-they-level">How did they level?</h3>
<p>Let’s grab all the details from the previous result and join it back to get the timestamp and zone data.</p>
<div id="1bcde122" class="cell" data-execution_count="11">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb12-1">leveler_zones <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb12-2">    level_calc.join(wowah_data, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"char"</span>, how<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"inner"</span>)</span>
<span id="cb12-3">    .<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">filter</span>(_.timestamp.between(_.ts_70, _.ts_80))</span>
<span id="cb12-4">    .group_by([_.char, _.zone])</span>
<span id="cb12-5">    .agg(zone_count<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.zone.count())</span>
<span id="cb12-6">)</span>
<span id="cb12-7">leveler_zones</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="11">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃<span style="font-weight: bold"> char  </span>┃<span style="font-weight: bold"> zone              </span>┃<span style="font-weight: bold"> zone_count </span>┃
┡━━━━━━━╇━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>            │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>      │
├───────┼───────────────────┼────────────┤
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40309</span> │ <span style="color: #008000; text-decoration-color: #008000">Borean Tundra    </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">70</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">75845</span> │ <span style="color: #008000; text-decoration-color: #008000">Dragonblight     </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">57</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4175</span> │ <span style="color: #008000; text-decoration-color: #008000">Halls of Stone   </span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">40309</span> │ <span style="color: #008000; text-decoration-color: #008000">Undercity        </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">28</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">78122</span> │ <span style="color: #008000; text-decoration-color: #008000">Dalaran          </span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">6</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">75845</span> │ <span style="color: #008000; text-decoration-color: #008000">Howling Fjord    </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">33</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">35625</span> │ <span style="color: #008000; text-decoration-color: #008000">Borean Tundra    </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">63</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">67626</span> │ <span style="color: #008000; text-decoration-color: #008000">Shadowmoon Valley</span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">54676</span> │ <span style="color: #008000; text-decoration-color: #008000">Icecrown         </span> │         <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">22</span> │
│  <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2877</span> │ <span style="color: #008000; text-decoration-color: #008000">Orgrimmar        </span> │          <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">9</span> │
│     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                 │          <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└───────┴───────────────────┴────────────┘
</pre>
</div>
</div>
<p>This code summarizes how often those characters appear in different zones while leveling up from level 70 to 80. It combines two sets of data based on character names, selects records within the leveling timeframe, groups data by character and zone, and counts the number of times each character was found in each zone.</p>
<p>There is another example table we can join to figure out the Zone information. I’m only interested in two columns, so I’ll filter this further and rename the columns.</p>
<div id="5af91920" class="cell" data-execution_count="12">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb13" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb13-1">zones <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ex.wowah_zones_raw.fetch()</span>
<span id="cb13-2">zones <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> zones.select(zone<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.Zone, zone_type<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.Type)</span>
<span id="cb13-3">zones</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="12">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃<span style="font-weight: bold"> zone                 </span>┃<span style="font-weight: bold"> zone_type </span>┃
┡━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>               │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">string</span>    │
├──────────────────────┼───────────┤
│ <span style="color: #008000; text-decoration-color: #008000">Durotar             </span> │ <span style="color: #008000; text-decoration-color: #008000">Zone     </span> │
│ <span style="color: #008000; text-decoration-color: #008000">The Barrens         </span> │ <span style="color: #008000; text-decoration-color: #008000">Zone     </span> │
│ <span style="color: #008000; text-decoration-color: #008000">Silverpine Forest   </span> │ <span style="color: #008000; text-decoration-color: #008000">Zone     </span> │
│ <span style="color: #008000; text-decoration-color: #008000">Stonetalon Mountains</span> │ <span style="color: #008000; text-decoration-color: #008000">Zone     </span> │
│ <span style="color: #008000; text-decoration-color: #008000">Thunder Bluff       </span> │ <span style="color: #008000; text-decoration-color: #008000">City     </span> │
│ <span style="color: #008000; text-decoration-color: #008000">Dustwallow Marsh    </span> │ <span style="color: #008000; text-decoration-color: #008000">Zone     </span> │
│ <span style="color: #008000; text-decoration-color: #008000">Durotar             </span> │ <span style="color: #008000; text-decoration-color: #008000">City     </span> │
│ <span style="color: #008000; text-decoration-color: #008000">Tirisfal Glades     </span> │ <span style="color: #008000; text-decoration-color: #008000">City     </span> │
│ <span style="color: #008000; text-decoration-color: #008000">Ashenvale           </span> │ <span style="color: #008000; text-decoration-color: #008000">Zone     </span> │
│ <span style="color: #008000; text-decoration-color: #008000">Stranglethorn Vale  </span> │ <span style="color: #008000; text-decoration-color: #008000">Zone     </span> │
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>                    │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span>         │
└──────────────────────┴───────────┘
</pre>
</div>
</div>
<p>Making use of <code>pivot_wider</code> and joining back to our <code>leveler_zones</code> expression will make this a breeze!</p>
<div id="56f73390" class="cell" data-execution_count="13">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb14-1">zones_pivot <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> (</span>
<span id="cb14-2">    leveler_zones.join(zones, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zone"</span>)</span>
<span id="cb14-3">    .group_by([_.char, _.zone_type])</span>
<span id="cb14-4">    .agg(zone_type_count<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.zone.count())</span>
<span id="cb14-5">    .pivot_wider(names_from<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zone_type"</span>, values_from<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"zone_type_count"</span>)</span>
<span id="cb14-6">)</span>
<span id="cb14-7">zones_pivot</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="13">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">┏━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━┳━━━━━━━┓
┃<span style="font-weight: bold"> char  </span>┃<span style="font-weight: bold"> Zone  </span>┃<span style="font-weight: bold"> City  </span>┃<span style="font-weight: bold"> Sea   </span>┃<span style="font-weight: bold"> Battleground </span>┃<span style="font-weight: bold"> Dungeon </span>┃<span style="font-weight: bold"> Arena </span>┃
┡━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━╇━━━━━━━┩
│ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int32</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>        │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span>   │ <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">int64</span> │
├───────┼───────┼───────┼───────┼──────────────┼─────────┼───────┤
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">30491</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">54357</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">24239</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">12</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">59778</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">13</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">71918</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">17</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">73557</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">18</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">87205</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">3</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">31900</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">30</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">36</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">4</span> │
│   <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">925</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">11</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │
│ <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">86261</span> │    <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span> │  <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">NULL</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │            <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">1</span> │      <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">14</span> │     <span style="color: #008080; text-decoration-color: #008080; font-weight: bold">2</span> │
│     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │            <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │       <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │     <span style="color: #7f7f7f; text-decoration-color: #7f7f7f">…</span> │
└───────┴───────┴───────┴───────┴──────────────┴─────────┴───────┘
</pre>
</div>
</div>
<p>If they have a high value in the “Zone” column, they were likely questing. Other players opted to venture into dungeons.</p>
</section>
</section>
<section id="next-steps" class="level2">
<h2 class="anchored" data-anchor-id="next-steps">Next steps</h2>
<p>It’s pretty easy to do complex analysis with Ibis. We churned through over 10 million rows in no time.</p>
<p>Get in touch with us on <a href="https://github.com/ibis-project">GitHub</a> or <a href="https://ibis-project.zulipchat.com/">Zulip</a>, we’d love to see more analyses of this data set.</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>data engineering</category>
  <category>duckdb</category>
  <guid>https://ibis-project.org/posts/wow-analysis/</guid>
  <pubDate>Thu, 29 Feb 2024 00:00:00 GMT</pubDate>
  <media:content url="https://ibis-project.org/posts/wow-analysis/thumbnail.png" medium="image" type="image/png" height="82" width="144"/>
</item>
<item>
  <title>Stream-batch unification through Ibis</title>
  <dc:creator>Chloe He</dc:creator>
  <link>https://ibis-project.org/posts/unified-stream-batch/</link>
  <description><![CDATA[ 






<p>One of my focuses in the past 10 months has been to implement the Flink backend for Ibis. I was working with Apache Flink and building a feature engineering tool, and we stumbled upon Ibis as we attempted to build our own translation layer that could turn user declarations into relation trees, then optimize and deploy the query plan, all while maintaining the underlying infrastructure for the user. We considered and prototyped with a number of tools and eventually chose Ibis. It had already established a position in the batch world and had support for 10+ of the most popular batch engines (at the time). We loved the idea of decoupling the user-facing interface from the execution engine, so that users can swap out the execution engine depending on their needs, without having to rewrite code. And, of course, it was open-source. It was everything we dreamed of.</p>
<p>A few months later, <a href="https://github.com/ibis-project/ibis/pull/6408">we started introducing Apache Flink as the first streaming backend into Ibis</a>. We saw so much more that Ibis can do when it steps outside of batch.</p>
<p>Ibis 8.0 marks the official launch of the first streaming backends in Ibis (<a href="https://ibis-project.org/backends/flink">Apache Flink</a> and <a href="https://ibis-project.org/backends/risingwave">RisingWave</a>). This is a very significant milestone in Ibis development.</p>
<p>You may be wondering: what does this mean? Why is this such a big deal? I will be answering these questions in this blog post.</p>
<section id="ibis-combines-stream-and-batch-into-a-single-framework-beyond-version-8.0" class="level2">
<h2 class="anchored" data-anchor-id="ibis-combines-stream-and-batch-into-a-single-framework-beyond-version-8.0">Ibis combines stream and batch into a single framework beyond version 8.0</h2>
<p>Today, Ibis provides support for 20+ backends including Dask, DuckDB, PostgreSQL, PySpark, Snowflake, and others. However - before the introduction of Flink and RisingWave backends - all of the supported backends derive from a batch paradigm (aside from Spark, which does offer support for stream processing, albeit using micro-batches underneath the hood).</p>
<p>This means that Ibis is an extremely valuable tool, but it was limited to batch workloads. In the case of streaming workloads, where systems are <a href="https://www.oreilly.com/radar/the-world-beyond-batch-streaming-101/">designed with unbounded data in mind</a>, the batch-oriented Ibis fell short. To deal with an infinite data stream, streaming data systems operate with unique concepts such as “event time”, “processing time”, “watermark”, etc. All of these were missing from Ibis.</p>
<p>At the same time, streaming systems (Spark Streaming, Apache Flink, RisingWave, etc) have been gaining popularity. It drove the development of more mature technologies as well as new approaches to close the gap between batch and streaming worlds. <a href="https://www.ververica.com/blog/apache-flink-sql-past-present-and-future">Flink SQL, for example, was born as a part of such effort and, through allowing users to write streaming engines in a SQL-like manner, have been vastly successful in that regard.</a> The success of Flink SQL both validates the potential of stream and batch unification and inspires the community to push for better standards, a vision that Ibis is at a unique and valuable position to help build.</p>
</section>
<section id="why-is-batch-stream-unification-significant" class="level2">
<h2 class="anchored" data-anchor-id="why-is-batch-stream-unification-significant">Why is batch-stream unification significant?</h2>
<p>Firstly, large companies that have both batch and streaming workloads often deploy <a href="https://en.wikipedia.org/wiki/Lambda_architecture">Lambda architecture</a>. In a Lambda infrastructure, batch and streaming pipelines are separate, which requires two codebases to be set up and maintained. If you’re a platform engineer, you have probably found yourself trying to duplicate batch workloads “in streaming code” and vice versa. If you have backfilled a streaming pipeline due to a bug and needed to reimplement the logic on a batch pipeline, you know how painful that all is :(</p>
<p><a href="https://www.linkedin.com/blog/engineering/data-streaming-processing/unified-streaming-and-batch-pipelines-at-linkedin-reducing-proc">LinkedIn successfully reduced processing time by 94% and resource utilization by 50% after switching from a Lambda architecture to unified batch and streaming pipelines.</a> A unified system also massively increased engineer productivity because they no longer needed to develop and maintain separate codebases for different environments. <a href="https://www.uber.com/blog/kappa-architecture-data-stream-processing/">Uber</a>, <a href="https://www.ververica.com/blog/apache-flinks-stream-batch-unification-powers-alibabas-11.11-in-2020">Alibaba</a>, and <a href="https://beam.apache.org/case-studies/lyft/">Lyft</a> have also adopted similar solutions.</p>
<p>Secondly, in the world of machine learning, it’s common for data scientists to develop locally and experiment with a sampled, batch dataset in Python. If the results look promising, the features and models would then be deployed into production. Oftentimes, there is a code handover in this process, and a dedicated team of developers would be responsible for rewriting the logic for production, as a streaming workload.</p>
<p>In both cases, there is a huge amount of technical overhead. If there is a streamlined architecture, using a unified API, much of this overhead can be avoided. As a platform engineer, you no longer need to worry about maintaining two separate architectures and codebases. As a data scientist or a machine learning engineer, you can write one single workload that can execute both on batch and streaming backends. Wouldn’t that be amazing?</p>
</section>
<section id="ibis-unifies-batch-and-streaming" class="level2">
<h2 class="anchored" data-anchor-id="ibis-unifies-batch-and-streaming">Ibis unifies batch and streaming</h2>
<p>Enter Ibis. Ibis unifies batch and streaming with a single API. It decouples the dataframe API from backend execution, so that the logic for defining data transformations is unaffected by implementation discrepancies across backend engines. There is also an ongoing effort to further increase interoperability across different languages and systems via a standard query plan intermediate representation (IR), using a library called <a href="https://substrait.io/"><code>Substrait</code></a>.</p>
<p>What does this actually look like? For example, Ibis allows users to define window aggregations using the <a href="../../reference/expression-tables.html#ibis.expr.types.groupby.GroupedTable.over"><code>over()</code> method</a>. When executed on the Flink backend, this translates into <a href="https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/table/sql/queries/over-agg/">Flink’s over aggregation query</a> and outputs an aggregated value for every input row over a range of ordered rows. On streaming data, aggregation results are continuously computed and written into data sinks (e.g., Kafka, Redis) as records are received at and consumed from the upstream data source (e.g., Kafka, Change Data Capture). In pandas, the conceptual analog is <a href="https://pandas.pydata.org/docs/user_guide/window.html">windowing operation</a>. Results are computed by looking back the length of the window from the current observation, but can be computed all at once because batch data is static.</p>
<p>Another great example is deduplication. In Flink SQL, this looks something like this:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb1" style="background: #f1f3f5;"><pre class="sourceCode sql code-with-copy"><code class="sourceCode sql"><span id="cb1-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">SELECT</span> [column_list]</span>
<span id="cb1-2"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">FROM</span> (</span>
<span id="cb1-3">   <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">SELECT</span> [column_list],</span>
<span id="cb1-4">     <span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">ROW_NUMBER</span>() <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">OVER</span> ([<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">PARTITION</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">BY</span> col1[, col2<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">..</span>.]]</span>
<span id="cb1-5">       <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">ORDER</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">BY</span> time_attr [<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">asc</span>|<span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">desc</span>]) <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">AS</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">rownum</span></span>
<span id="cb1-6">   <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">FROM</span> table_name)</span>
<span id="cb1-7"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">WHERE</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">rownum</span> <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1</span></span></code></pre></div></div>
<p>In a database like Postgres, this could be as simple as</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb2" style="background: #f1f3f5;"><pre class="sourceCode sql code-with-copy"><code class="sourceCode sql"><span id="cb2-1"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">SELECT</span> <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">DISTINCT</span> t0.`string_col`, t0.`int_col`</span>
<span id="cb2-2"><span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">FROM</span> functional_alltypes t0</span></code></pre></div></div>
<p>And in <code>pandas</code>, you would use the method <code>drop_duplicates()</code>:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb3" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb3-1">df.drop_duplicates()</span></code></pre></div></div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>We’re working on supporting deduplication via <code>distinct()</code> in Flink backend and this feature should be available soon!</p>
</div>
</div>
<p>These underlying discrepancies are abstracted in such a way that you, as an Ibis user, will no longer find yourself struggling with bugs that are the result of subtleties across different engines and dialects. Need to rewrite your batch workload as a streaming one or vice versa? Rest assured, Ibis has you covered!</p>
</section>
<section id="see-it-in-action" class="level2">
<h2 class="anchored" data-anchor-id="see-it-in-action">See it in action</h2>
<p>Now, let’s walk through a code example together to see how simple this experience is!</p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>Prerequisites for running this example:</p>
<ul>
<li>Docker Compose: This tutorial uses Docker Compose to manage an Apache Kafka environment (including sample data generation) and a Flink cluster (for remote execution). You can <a href="https://docs.docker.com/compose/install/">download and install Docker Compose from the official website</a>.</li>
<li>JDK 11 release: Flink requires Java 11.</li>
<li>Python 3.9 or 3.10.</li>
<li>Follow <a href="../../tutorials/open-source-software/apache-flink/0_setup.qmd">the setup tutorial</a> to install the Flink backend for Ibis.</li>
<li>Clone the <a href="https://github.com/ibis-project/realtime-fraud-detection">example repository</a>.</li>
</ul>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>This example is a hypothetical scenario and we will be using simulated data.</p>
</div>
</div>
<p>First, spin up the Docker containers by running <code>docker compose up kafka init-kafka data-generator</code>. This will set up a mocked Kafka source that contains records that look like the following:</p>
<div class="code-copy-outer-scaffold"><div class="sourceCode" id="cb4" style="background: #f1f3f5;"><pre class="sourceCode json code-with-copy"><code class="sourceCode json"><span id="cb4-1"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">{</span></span>
<span id="cb4-2">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"createTime"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"2023-09-20 22:19:02.224"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-3">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"orderId"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">1695248388</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-4">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"payAmount"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">88694.71922270155</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-5">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"payPlatform"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-6">    <span class="dt" style="color: #AD0000;
background-color: null;
font-style: inherit;">"provinceId"</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">:</span> <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">6</span><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">,</span></span>
<span id="cb4-7"><span class="fu" style="color: #4758AB;
background-color: null;
font-style: inherit;">}</span></span></code></pre></div></div>
<p>This is a streaming data source. Commonly, to experiment with the data, we would extract a chunk of the data and load it in batch:</p>
<div id="ec406332" class="cell" data-execution_count="2">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb5" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb5-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> kafka <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> KafkaConsumer</span>
<span id="cb5-2"></span>
<span id="cb5-3">consumer <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> KafkaConsumer(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"payment_msg"</span>, auto_offset_reset<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"earliest"</span>)</span>
<span id="cb5-4">rows <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> []</span>
<span id="cb5-5"><span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> _, msg <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> <span class="bu" style="color: null;
background-color: null;
font-style: inherit;">zip</span>(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span>(<span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">100</span>), consumer):</span>
<span id="cb5-6">    rows.append(msg)</span></code></pre></div></div>
</div>
<p>This is a tabular dataset and we can convert it into a <code>pandas</code> DataFrame:</p>
<div id="af03d88e" class="cell" data-execution_count="3">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb6" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> json</span>
<span id="cb6-2"></span>
<span id="cb6-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> pandas <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> pd</span>
<span id="cb6-4"></span>
<span id="cb6-5">df <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pd.DataFrame([json.loads(row.value) <span class="cf" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">for</span> row <span class="kw" style="color: #003B4F;
background-color: null;
font-weight: bold;
font-style: inherit;">in</span> rows])</span>
<span id="cb6-6">df[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"createTime"</span>] <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> pd.to_datetime(df[<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"createTime"</span>])</span>
<span id="cb6-7">df</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="3">
<div>


<table class="dataframe caption-top table table-sm table-striped small" data-border="1">
<thead>
<tr class="header">
<th data-quarto-table-cell-role="th"></th>
<th data-quarto-table-cell-role="th">createTime</th>
<th data-quarto-table-cell-role="th">orderId</th>
<th data-quarto-table-cell-role="th">payAmount</th>
<th data-quarto-table-cell-role="th">payPlatform</th>
<th data-quarto-table-cell-role="th">provinceId</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<th data-quarto-table-cell-role="th">0</th>
<td>2024-07-11 18:55:59.385</td>
<td>1720724160</td>
<td>16364.037210</td>
<td>0</td>
<td>2</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">1</th>
<td>2024-07-11 18:55:59.889</td>
<td>1720724161</td>
<td>85325.378255</td>
<td>0</td>
<td>2</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">2</th>
<td>2024-07-11 18:56:00.392</td>
<td>1720724162</td>
<td>32552.151228</td>
<td>0</td>
<td>5</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">3</th>
<td>2024-07-11 18:56:00.897</td>
<td>1720724163</td>
<td>31583.771681</td>
<td>0</td>
<td>5</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">4</th>
<td>2024-07-11 18:56:01.401</td>
<td>1720724164</td>
<td>34294.354640</td>
<td>0</td>
<td>3</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">...</th>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">95</th>
<td>2024-07-11 18:56:47.230</td>
<td>1720724255</td>
<td>37487.568775</td>
<td>0</td>
<td>5</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">96</th>
<td>2024-07-11 18:56:47.732</td>
<td>1720724256</td>
<td>37477.569665</td>
<td>0</td>
<td>2</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">97</th>
<td>2024-07-11 18:56:48.234</td>
<td>1720724257</td>
<td>32410.841238</td>
<td>1</td>
<td>2</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">98</th>
<td>2024-07-11 18:56:48.737</td>
<td>1720724258</td>
<td>58236.337548</td>
<td>0</td>
<td>0</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">99</th>
<td>2024-07-11 18:56:49.239</td>
<td>1720724259</td>
<td>78873.701022</td>
<td>0</td>
<td>2</td>
</tr>
</tbody>
</table>

<p>100 rows × 5 columns</p>
</div>
</div>
</div>
<p>We can connect to this DataFrame in Ibis in a local execution backend:</p>
<div id="4bc51a21" class="cell" data-execution_count="4">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb7" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb7-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis</span>
<span id="cb7-2"></span>
<span id="cb7-3">con <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.get_backend()</span>
<span id="cb7-4">con.create_table(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"payments"</span>, df)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="4">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">DatabaseTable: memory.main.payments
  createTime  timestamp(6)
  orderId     int64
  payAmount   float64
  payPlatform int64
  provinceId  int64
</pre>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>The default execution engine for Ibis is DuckDB.</p>
</div>
</div>
<p>This is a series of records of order transactions. At Company Potclay, we have just deployed a new ad campaign, which is A/B tested by province, and we’re interested in the effectiveness of this ad campaign by monitoring data distribution shift over time. A crucial feature is the total transaction amount over the past minute, stratified by province. We would like to first experiment writing this feature on a smaller set of batch data. After we make sure that the logic looks correct and handles all edge cases appropriately, we want to deploy this as a streaming workload.</p>
<p>Ibis allows us to write transformations on top of so-called abstract or unbound tables (i.e., tables that are not bound to an actual data source). This separation between transformation logic and the underlying data and execution is one of the things that makes Ibis so powerful. It’s similar to dependency injection, but in this case the data is the dependency and is injected at runtime.</p>
<p>To write transformations on top of an unbound table, we need to first define an <code>ibis.table()</code> with a schema. Here is how we would write all of this in Ibis code:</p>
<div id="462a51d3" class="cell" data-execution_count="5">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb8" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.expr.schema <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> sch</span>
<span id="cb8-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> ibis.expr.datatypes <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">as</span> dt</span>
<span id="cb8-3"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> ibis <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> _</span>
<span id="cb8-4"></span>
<span id="cb8-5">schema <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> sch.Schema(</span>
<span id="cb8-6">    {</span>
<span id="cb8-7">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"createTime"</span>: dt.timestamp(scale<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>),</span>
<span id="cb8-8">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"orderId"</span>: dt.int64,</span>
<span id="cb8-9">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"payAmount"</span>: dt.float64,</span>
<span id="cb8-10">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"payPlatform"</span>: dt.int32,</span>
<span id="cb8-11">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"provinceId"</span>: dt.int32,</span>
<span id="cb8-12">    }</span>
<span id="cb8-13">)</span>
<span id="cb8-14">unbound_table <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.table(schema, name<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"payments"</span>)</span>
<span id="cb8-15">unbound_agged <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> unbound_table[</span>
<span id="cb8-16">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"provinceId"</span>,</span>
<span id="cb8-17">    _.payAmount.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">sum</span>()</span>
<span id="cb8-18">    .over(<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">range</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>(<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>ibis.interval(seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">10</span>), <span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">0</span>), order_by<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>_.createTime)</span>
<span id="cb8-19">    .name(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pay_amount"</span>),</span>
<span id="cb8-20">]</span>
<span id="cb8-21">unbound_agged</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="5">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">r0 := UnboundTable: payments
  createTime  timestamp(3)
  orderId     int64
  payAmount   float64
  payPlatform int32
  provinceId  int32

Project[r0]
  provinceId: r0.provinceId
  pay_amount: WindowFunction(func=Sum(r0.payAmount), how='range', start=WindowBoundary(value=10 s, preceding=True), end=WindowBoundary(Cast(0, to=interval('s'))), order_by=[asc r0.createTime])
</pre>
</div>
</div>
<p>Carrying out the computations using the local execution backend that we connected to above is as simple as:</p>
<div id="f3cd6db6" class="cell" data-execution_count="6">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb9" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb9-1">con.to_pandas(unbound_agged)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="6">
<div>


<table class="dataframe caption-top table table-sm table-striped small" data-border="1">
<thead>
<tr class="header">
<th data-quarto-table-cell-role="th"></th>
<th data-quarto-table-cell-role="th">provinceId</th>
<th data-quarto-table-cell-role="th">pay_amount</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<th data-quarto-table-cell-role="th">0</th>
<td>2</td>
<td>1.636404e+04</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">1</th>
<td>2</td>
<td>1.016894e+05</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">2</th>
<td>5</td>
<td>1.342416e+05</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">3</th>
<td>5</td>
<td>1.658253e+05</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">4</th>
<td>3</td>
<td>2.001197e+05</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">...</th>
<td>...</td>
<td>...</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">95</th>
<td>5</td>
<td>1.127313e+06</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">96</th>
<td>2</td>
<td>1.111165e+06</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">97</th>
<td>2</td>
<td>1.122423e+06</td>
</tr>
<tr class="even">
<th data-quarto-table-cell-role="th">98</th>
<td>0</td>
<td>1.088848e+06</td>
</tr>
<tr class="odd">
<th data-quarto-table-cell-role="th">99</th>
<td>2</td>
<td>1.082766e+06</td>
</tr>
</tbody>
</table>

<p>100 rows × 2 columns</p>
</div>
</div>
</div>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>DuckDB is much faster than <code>pandas</code>, and using Ibis you don’t need to write SQL for it!</p>
</div>
</div>
<p>For local experimentation purposes, this DataFrame only consists of 100 rows, so doing this in memory is easy.</p>
<p>The outputs look correct and we didn’t run into any errors. We are now ready to deploy this as a streaming job in Flink!</p>
<p>First, let’s set up the Flink environment and connect to this Kafka source:</p>
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Note
</div>
</div>
<div class="callout-body-container callout-body">
<p>Kafka connector is not part of the binary distribution, so we need to download and link it for cluster execution explicitly:</p>
<div id="07b088d9" class="cell" data-execution_count="7">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb10" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1"><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">!</span>wget <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>N https:<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">//</span>repo.maven.apache.org<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>maven2<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>org<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>apache<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>flink<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>flink<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>sql<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>connector<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>kafka<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">1.17.1</span><span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">/</span>flink<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>sql<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>connector<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span>kafka<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">-</span><span class="fl" style="color: #AD0000;
background-color: null;
font-style: inherit;">1.17.1</span>.jar</span></code></pre></div></div>
</div>
</div>
</div>
<div id="e92fdc1e" class="cell" data-execution_count="8">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb11" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb11-1"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pyflink.table <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> EnvironmentSettings, TableEnvironment</span>
<span id="cb11-2"><span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">from</span> pyflink.common <span class="im" style="color: #00769E;
background-color: null;
font-style: inherit;">import</span> Configuration</span>
<span id="cb11-3"></span>
<span id="cb11-4">source_schema <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> sch.Schema(</span>
<span id="cb11-5">    {</span>
<span id="cb11-6">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"createTime"</span>: dt.timestamp(scale<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">3</span>),</span>
<span id="cb11-7">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"orderId"</span>: dt.int64,</span>
<span id="cb11-8">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"payAmount"</span>: dt.float64,</span>
<span id="cb11-9">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"payPlatform"</span>: dt.int32,</span>
<span id="cb11-10">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"provinceId"</span>: dt.int32,</span>
<span id="cb11-11">    }</span>
<span id="cb11-12">)</span>
<span id="cb11-13"></span>
<span id="cb11-14">env_settings <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> EnvironmentSettings.in_streaming_mode()</span>
<span id="cb11-15">table_env <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> TableEnvironment.create(env_settings)</span>
<span id="cb11-16"></span>
<span id="cb11-17">table_config <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> table_env.get_config()</span>
<span id="cb11-18">config <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> Configuration()</span>
<span id="cb11-19">config.set_string(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"parallelism.default"</span>, <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"1"</span>)</span>
<span id="cb11-20">table_config.add_configuration(config)</span>
<span id="cb11-21"></span>
<span id="cb11-22">connection <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> ibis.flink.<span class="ex" style="color: null;
background-color: null;
font-style: inherit;">connect</span>(table_env)</span>
<span id="cb11-23"></span>
<span id="cb11-24"><span class="co" style="color: #5E5E5E;
background-color: null;
font-style: inherit;"># add the JAR downloaded above</span></span>
<span id="cb11-25">connection.raw_sql(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"ADD JAR 'flink-sql-connector-kafka-1.17.1.jar'"</span>)</span>
<span id="cb11-26"></span>
<span id="cb11-27">source_configs <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> {</span>
<span id="cb11-28">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"connector"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"kafka"</span>,</span>
<span id="cb11-29">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"topic"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"payment_msg"</span>,</span>
<span id="cb11-30">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"properties.bootstrap.servers"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"localhost:9092"</span>,</span>
<span id="cb11-31">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"properties.group.id"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"test_3"</span>,</span>
<span id="cb11-32">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"scan.startup.mode"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"earliest-offset"</span>,</span>
<span id="cb11-33">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"format"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"json"</span>,</span>
<span id="cb11-34">}</span>
<span id="cb11-35"></span>
<span id="cb11-36">connection.create_table(</span>
<span id="cb11-37">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"payments"</span>,</span>
<span id="cb11-38">    schema<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>source_schema,</span>
<span id="cb11-39">    tbl_properties<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>source_configs,</span>
<span id="cb11-40">    watermark<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis.watermark(</span>
<span id="cb11-41">        time_col<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"createTime"</span>, allowed_delay<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>ibis.interval(seconds<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span><span class="dv" style="color: #AD0000;
background-color: null;
font-style: inherit;">15</span>)</span>
<span id="cb11-42">    ),</span>
<span id="cb11-43">)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="8">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">DatabaseTable: payments
  createTime  timestamp(3)
  orderId     int64
  payAmount   float64
  payPlatform int32
  provinceId  int32
</pre>
</div>
</div>
<p>How would we write this in Flink SQL? Ibis makes this extremely easy by exposing a <code>compile()</code> API:</p>
<div id="87e9bfd5" class="cell" data-execution_count="9">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb12" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb12-1">sql <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> connection.<span class="bu" style="color: null;
background-color: null;
font-style: inherit;">compile</span>(unbound_agged)</span>
<span id="cb12-2"><span class="bu" style="color: null;
background-color: null;
font-style: inherit;">print</span>(sql)</span></code></pre></div></div>
<div class="cell-output cell-output-stdout">
<pre><code>SELECT `t0`.`provinceId`, SUM(`t0`.`payAmount`) OVER (ORDER BY `t0`.`createTime` ASC NULLS LAST RANGE BETWEEN INTERVAL '10' SECOND(2) preceding AND CURRENT ROW) AS `pay_amount` FROM `payments` AS `t0`</code></pre>
</div>
</div>
<p>Before we can execute this query, we need to first define a data sink where the results can be written:</p>
<div id="9edeed42" class="cell" data-execution_count="10">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb14" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb14-1">sink_schema <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> sch.Schema(</span>
<span id="cb14-2">    {</span>
<span id="cb14-3">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"province_id"</span>: dt.int32,</span>
<span id="cb14-4">        <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"pay_amount"</span>: dt.float64,</span>
<span id="cb14-5">    }</span>
<span id="cb14-6">)</span>
<span id="cb14-7"></span>
<span id="cb14-8">kafka_sink_configs <span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span> {</span>
<span id="cb14-9">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"connector"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"kafka"</span>,</span>
<span id="cb14-10">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"topic"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"sink"</span>,</span>
<span id="cb14-11">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"properties.bootstrap.servers"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"localhost:9092"</span>,</span>
<span id="cb14-12">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"format"</span>: <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"json"</span>,</span>
<span id="cb14-13">}</span>
<span id="cb14-14"></span>
<span id="cb14-15">connection.create_table(</span>
<span id="cb14-16">    <span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"kafka_sink"</span>, schema<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>sink_schema, tbl_properties<span class="op" style="color: #5E5E5E;
background-color: null;
font-style: inherit;">=</span>kafka_sink_configs</span>
<span id="cb14-17">)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="10">
<pre style="white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace">DatabaseTable: kafka_sink
  province_id int32
  pay_amount  float64
</pre>
</div>
</div>
<p>Now, let’s write the results into this sink. Note that we can directly reuse the transformation logic that we wrote above for the local execution backend!!</p>
<div id="65df8e0e" class="cell" data-execution_count="11">
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb15" style="background: #f1f3f5;"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb15-1">connection.insert(<span class="st" style="color: #20794D;
background-color: null;
font-style: inherit;">"kafka_sink"</span>, unbound_agged)</span></code></pre></div></div>
<div class="cell-output cell-output-display" data-execution_count="11">
<pre><code>&lt;pyflink.table.table_result.TableResult at 0x30e7dbac0&gt;</code></pre>
</div>
</div>
<div class="callout callout-style-default callout-tip callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class="callout-icon"></i>
</div>
<div class="callout-title-container flex-fill">
Tip
</div>
</div>
<div class="callout-body-container callout-body">
<p>You can examine the results either using the Kafka console consumer CLI or the <code>kafka-python</code> library.</p>
</div>
</div>
<p>How easy was it to define both batch and streaming workloads using Ibis? Without Ibis, you would have needed to write a <code>pandas</code>/DuckDB workload and then convert it into Flink SQL manually.</p>
</section>
<section id="concluding-thoughts" class="level2">
<h2 class="anchored" data-anchor-id="concluding-thoughts">Concluding thoughts</h2>
<p>With the introduction of the first streaming backends, Ibis is now both a batch and a streaming Python DataFrame API and we’re excited about what’s to come next. We hope that Ibis can close the gap between batch and streaming in such a way that we no longer talk about the two separately, but, rather, as two parts of the same paradigm. Streaming naturally lends itself to batch: batch is technically just a special case of streaming, where the unbounded data flow stops at some point.</p>
<p>Of course, this is only the beginning. There are still technical challenges to be solved (e.g., backfill, window computations over large windows, GPU acceleration), and we’ll definitely have more exciting updates to share with the community soon!</p>
<p>Check out the new <a href="https://ibis-project.org/backends/flink">Apache Flink</a> and <a href="https://ibis-project.org/backends/risingwave">RisingWave</a> backends and let us know what you think!</p>


</section>

<a onclick="window.scrollTo(0, 0); return false;" id="quarto-back-to-top"><i class="bi bi-arrow-up"></i> Back to top</a> ]]></description>
  <category>blog</category>
  <category>flink</category>
  <category>risingwave</category>
  <category>streaming</category>
  <guid>https://ibis-project.org/posts/unified-stream-batch/</guid>
  <pubDate>Mon, 26 Feb 2024 00:00:00 GMT</pubDate>
</item>
</channel>
</rss>
